diff --git a/CMakeLists.txt b/CMakeLists.txt index 9a53310bc..db2921b02 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -93,11 +93,22 @@ else() endif() endif() +# until ready +set(WITH_LOCALE_DEFAULT ON) + +if (APPLE OR MSVC OR ANDROID) + set(USE_MOMO_DEFAULT ON) +else() + set(USE_MOMO_DEFAULT OFF) +endif() + option(BUILD_GUI "Build the tracker (disable to build only a headless player)" ${BUILD_GUI_DEFAULT}) +option(WITH_LOCALE "Use libintl for language support" ${WITH_LOCALE_DEFAULT}) option(USE_RTMIDI "Build with MIDI support using RtMidi." ${USE_RTMIDI_DEFAULT}) option(USE_SDL2 "Build with SDL2. Required to build with GUI." ${USE_SDL2_DEFAULT}) option(USE_SNDFILE "Build with libsndfile. Required in order to work with audio files." ${USE_SNDFILE_DEFAULT}) option(USE_BACKWARD "Use backward-cpp to print a backtrace on crash/abort." ${USE_BACKWARD_DEFAULT}) +option(USE_MOMO "Build a libintl implementation instead of using the system one." ${USE_MOMO_DEFAULT}) option(WITH_JACK "Whether to build with JACK support. Auto-detects if JACK is available" ${WITH_JACK_DEFAULT}) option(WITH_PORTAUDIO "Whether to build with PortAudio for audio output." ${WITH_PORTAUDIO_DEFAULT}) option(WITH_RENDER_SDL "Whether to build with the SDL_Renderer render backend." ${WITH_RENDER_SDL_DEFAULT}) @@ -815,6 +826,8 @@ src/gui/font_liberationSans.cpp src/gui/font_mononoki.cpp src/gui/font_plexMono.cpp src/gui/font_plexSans.cpp +src/gui/font_plexSansJP.cpp +src/gui/font_plexSansKR.cpp src/gui/font_proggyClean.cpp src/gui/font_ptMono.cpp src/gui/font_unifont.cpp @@ -1027,6 +1040,40 @@ if (NOT WIN32) endif() endif() +if (WITH_LOCALE) + try_compile(HAVE_SETLOCALE ${CMAKE_BINARY_DIR}/check SOURCES ${CMAKE_SOURCE_DIR}/src/check/check_setlocale.c) + if (HAVE_SETLOCALE) + list(APPEND DEPENDENCIES_DEFINES HAVE_SETLOCALE) + message(STATUS "setlocale() found") + else() + if (NOT USE_MOMO) + message(FATAL_ERROR "setlocale() is not defined! This means the C library in your system does not support locale at all. Try enabling USE_MOMO.") + else() + message(STATUS "setlocale() is not defined") + endif() + endif() + if (USE_MOMO) + list(APPEND ENGINE_SOURCES src/momo/momo.c) + list(APPEND DEPENDENCIES_DEFINES HAVE_LOCALE) + list(APPEND DEPENDENCIES_DEFINES HAVE_MOMO) + list(APPEND DEPENDENCIES_INCLUDE_DIRS src/momo) + message(STATUS "Using libintl (Momo)") + else() + if ("${CMAKE_VERSION}" VERSION_LESS "3.2") + message(FATAL_ERROR "CMake 3.2 or later required for locale support.") + else() + include(FindIntl) + if (NOT Intl_FOUND) + message(FATAL_ERROR "Could not find libintl! Try enabling USE_MOMO.") + endif() + list(APPEND DEPENDENCIES_DEFINES HAVE_LOCALE) + list(APPEND DEPENDENCIES_INCLUDE_DIRS ${Intl_INCLUDE_DIRS}) + list(APPEND DEPENDENCIES_LIBRARIES ${Intl_LIBRARIES}) + message(STATUS "Using libintl (system)") + endif() + endif() +endif() + set(USED_SOURCES ${ENGINE_SOURCES} ${AUDIO_SOURCES} ${CLI_SOURCES} src/main.cpp) if (USE_BACKWARD) diff --git a/android/app/build.gradle b/android/app/build.gradle index 646701c5a..7ff21893a 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -19,7 +19,7 @@ android { versionName "0.6.3" externalNativeBuild { cmake { - arguments "-DANDROID_APP_PLATFORM=android-21", "-DANDROID_STL=c++_static", "-DWARNINGS_ARE_ERRORS=ON" + arguments "-DANDROID_APP_PLATFORM=android-21", "-DANDROID_STL=c++_static", "-DWARNINGS_ARE_ERRORS=ON", "-DWITH_LOCALE=ON", "-DUSE_MOMO=ON" // abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64' abiFilters 'arm64-v8a' } diff --git a/android/app/src/main/assets/locale b/android/app/src/main/assets/locale new file mode 120000 index 000000000..c8da044c2 --- /dev/null +++ b/android/app/src/main/assets/locale @@ -0,0 +1 @@ +../../../../../po/locale \ No newline at end of file diff --git a/demos/ay8930/Obscure_Temptation.fur b/demos/ay8930/Obscure_Temptation.fur new file mode 100644 index 000000000..4ec70ef8c Binary files /dev/null and b/demos/ay8930/Obscure_Temptation.fur differ diff --git a/demos/misc/Slam_the_Door_TIA.fur b/demos/misc/Slam_the_Door_TIA.fur new file mode 100644 index 000000000..7837a4ccf Binary files /dev/null and b/demos/misc/Slam_the_Door_TIA.fur differ diff --git a/demos/snes/wonders_of_synthia.fur b/demos/snes/wonders_of_synthia.fur new file mode 100644 index 000000000..5e4361c4b Binary files /dev/null and b/demos/snes/wonders_of_synthia.fur differ diff --git a/extern/igfd/ImGuiFileDialog.cpp b/extern/igfd/ImGuiFileDialog.cpp index 5628f0401..e58de184b 100644 --- a/extern/igfd/ImGuiFileDialog.cpp +++ b/extern/igfd/ImGuiFileDialog.cpp @@ -113,12 +113,6 @@ namespace IGFD #ifndef createDirButtonString #define createDirButtonString ICON_FA_PLUS #endif // createDirButtonString -#ifndef okButtonString -#define okButtonString "OK" -#endif // okButtonString -#ifndef cancelButtonString -#define cancelButtonString "Cancel" -#endif // cancelButtonString #ifndef resetButtonString #define resetButtonString ICON_FA_REPEAT #endif // resetButtonString @@ -134,76 +128,6 @@ namespace IGFD #ifndef editPathButtonString #define editPathButtonString ICON_FA_PENCIL #endif // editPathButtonString -#ifndef searchString -#define searchString "Search" -#endif // searchString -#ifndef dirEntryString -#define dirEntryString "[Dir]" -#endif // dirEntryString -#ifndef linkEntryString -#define linkEntryString "[Link]" -#endif // linkEntryString -#ifndef fileEntryString -#define fileEntryString "[File]" -#endif // fileEntryString -#ifndef fileNameString -#define fileNameString "Name:" -#endif // fileNameString -#ifndef dirNameString -#define dirNameString "Path:" -#endif // dirNameString -#ifndef buttonResetSearchString -#define buttonResetSearchString "Reset search" -#endif // buttonResetSearchString -#ifndef buttonDriveString -#define buttonDriveString "Drives" -#endif // buttonDriveString -#ifndef buttonEditPathString -#define buttonEditPathString "Edit path\nYou can also right click on path buttons" -#endif // buttonEditPathString -#ifndef buttonResetPathString -#define buttonResetPathString "Go to home directory" -#endif // buttonResetPathString -#ifndef buttonParentDirString -#define buttonParentDirString "Go to parent directory" -#endif -#ifndef buttonCreateDirString -#define buttonCreateDirString "Create Directory" -#endif // buttonCreateDirString -#ifndef tableHeaderAscendingIcon -#define tableHeaderAscendingIcon "A|" -#endif // tableHeaderAscendingIcon -#ifndef tableHeaderDescendingIcon -#define tableHeaderDescendingIcon "D|" -#endif // tableHeaderDescendingIcon -#ifndef tableHeaderFileNameString -#define tableHeaderFileNameString "File name" -#endif // tableHeaderFileNameString -#ifndef tableHeaderFileTypeString -#define tableHeaderFileTypeString "Type" -#endif // tableHeaderFileTypeString -#ifndef tableHeaderFileSizeString -#define tableHeaderFileSizeString "Size" -#endif // tableHeaderFileSizeString -#ifndef tableHeaderFileDateString -#define tableHeaderFileDateString "Date" -#endif // tableHeaderFileDateString -#ifndef OverWriteDialogTitleString -#define OverWriteDialogTitleString "Warning" -#endif // OverWriteDialogTitleString -#ifndef OverWriteDialogMessageString -#define OverWriteDialogMessageString "The file you selected already exists! Would you like to overwrite it?" -#endif // OverWriteDialogMessageString -#ifndef OverWriteDialogConfirmButtonString -#define OverWriteDialogConfirmButtonString "Yes" -#endif // OverWriteDialogConfirmButtonString -#ifndef OverWriteDialogCancelButtonString -#define OverWriteDialogCancelButtonString "No" -#endif // OverWriteDialogCancelButtonString -// see strftime functionin for customize -#ifndef DateTimeFormat -#define DateTimeFormat "%Y/%m/%d %H:%M" -#endif // DateTimeFormat #ifdef USE_THUMBNAILS #ifndef tableHeaderFileThumbnailsString #define tableHeaderFileThumbnailsString "Thumbnails" @@ -649,10 +573,10 @@ namespace IGFD vFileDialogInternal.puFileManager.ApplyFilteringOnFileList(vFileDialogInternal); } if (ImGui::IsItemHovered()) - ImGui::SetTooltip(buttonResetSearchString); + ImGui::SetTooltip("%s",FileDialog::Instance()->buttonResetSearchString); ImGui::SameLine(); ImGui::PushItemWidth(ImGui::GetContentRegionAvail().x); - bool edited = ImGui::InputTextWithHint("##InputImGuiFileDialogSearchField", searchString, puSearchBuffer, MAX_FILE_DIALOG_NAME_BUFFER); + bool edited = ImGui::InputTextWithHint("##InputImGuiFileDialogSearchField", FileDialog::Instance()->searchString, puSearchBuffer, MAX_FILE_DIALOG_NAME_BUFFER); if (ImGui::GetItemID() == ImGui::GetActiveID()) puSearchInputIsActive = true; ImGui::PopItemWidth(); @@ -1164,10 +1088,10 @@ namespace IGFD logV("IGFD: SortFields()"); if (vSortingField != SortingFieldEnum::FIELD_NONE) { - puHeaderFileName = tableHeaderFileNameString; - puHeaderFileType = tableHeaderFileTypeString; - puHeaderFileSize = tableHeaderFileSizeString; - puHeaderFileDate = tableHeaderFileDateString; + puHeaderFileName = FileDialog::Instance()->tableHeaderFileNameString; + puHeaderFileType = FileDialog::Instance()->tableHeaderFileTypeString; + puHeaderFileSize = FileDialog::Instance()->tableHeaderFileSizeString; + puHeaderFileDate = FileDialog::Instance()->tableHeaderFileDateString; #ifdef USE_THUMBNAILS puHeaderFileThumbnails = tableHeaderFileThumbnailsString; #endif // #ifdef USE_THUMBNAILS @@ -1756,10 +1680,10 @@ namespace IGFD #ifdef MSVC struct tm _tm; errno_t err = localtime_s(&_tm, &statInfos.st_mtime); - if (!err) len = strftime(timebuf, 99, DateTimeFormat, &_tm); + if (!err) len = strftime(timebuf, 99, FileDialog::Instance()->DateTimeFormat, &_tm); #else // MSVC struct tm* _tm = localtime(&statInfos.st_mtime); - if (_tm) len = strftime(timebuf, 99, DateTimeFormat, _tm); + if (_tm) len = strftime(timebuf, 99, FileDialog::Instance()->DateTimeFormat, _tm); #endif // MSVC if (len) { @@ -2120,7 +2044,7 @@ namespace IGFD } } if (ImGui::IsItemHovered()) - ImGui::SetTooltip(buttonCreateDirString); + ImGui::SetTooltip("%s",FileDialog::Instance()->buttonCreateDirString); if (prCreateDirectoryMode) { @@ -2132,7 +2056,7 @@ namespace IGFD ImGui::SameLine(); - if (IMGUI_BUTTON(okButtonString)) + if (IMGUI_BUTTON(FileDialog::Instance()->okButtonString)) { std::string newDir = std::string(puDirectoryNameBuffer); if (CreateDir(newDir)) @@ -2146,7 +2070,7 @@ namespace IGFD ImGui::SameLine(); - if (IMGUI_BUTTON(cancelButtonString)) + if (IMGUI_BUTTON(FileDialog::Instance()->cancelButtonString)) { prCreateDirectoryMode = false; } @@ -2161,7 +2085,7 @@ namespace IGFD OpenCurrentPath(vFileDialogInternal); } if (ImGui::IsItemHovered()) - ImGui::SetTooltip(buttonResetPathString); + ImGui::SetTooltip("%s",FileDialog::Instance()->buttonResetPathString); ImGui::SameLine(); if (IMGUI_BUTTON(parentDirString)) @@ -2171,7 +2095,7 @@ namespace IGFD } } if (ImGui::IsItemHovered()) - ImGui::SetTooltip(buttonParentDirString); + ImGui::SetTooltip("%s",FileDialog::Instance()->buttonParentDirString); #ifdef WIN32 ImGui::SameLine(); @@ -2181,7 +2105,7 @@ namespace IGFD puDrivesClicked = true; } if (ImGui::IsItemHovered()) - ImGui::SetTooltip(buttonDriveString); + ImGui::SetTooltip("%s",FileDialog::Instance()->buttonDriveString); #endif // WIN32 ImGui::SameLine(); @@ -2191,7 +2115,7 @@ namespace IGFD puInputPathActivated = true; } if (ImGui::IsItemHovered()) - ImGui::SetTooltip(buttonEditPathString); + ImGui::SetTooltip("%s",FileDialog::Instance()->buttonEditPathString); ImGui::SameLine(); @@ -3892,9 +3816,9 @@ namespace IGFD ImGui::AlignTextToFramePadding(); if (!fdFile.puDLGDirectoryMode) - ImGui::Text(fileNameString); + ImGui::Text("%s",FileDialog::Instance()->fileNameString); else // directory chooser - ImGui::Text(dirNameString); + ImGui::Text("%s",FileDialog::Instance()->dirNameString); ImGui::SameLine(); @@ -3919,7 +3843,8 @@ namespace IGFD int fileValid=isFileNameValid(fdFile.puFileNameBuffer); if (!(prFileDialogInternal.puDLGflags&ImGuiFileDialogFlags_ConfirmOverwrite)) fileValid=0; ImGui::BeginDisabled(!(prFileDialogInternal.puCanWeContinue && notEmpty && fileValid==0)); - if (IMGUI_BUTTON(okButtonString "##validationdialog")) + std::string okbs=std::string(FileDialog::Instance()->okButtonString)+"##validationdialog"; + if (IMGUI_BUTTON(okbs.c_str())) { prFileDialogInternal.puIsOk = true; res = true; @@ -3959,7 +3884,8 @@ namespace IGFD ImGui::SameLine(); // Cancel Button - if (IMGUI_BUTTON(cancelButtonString "##validationdialog") || + std::string cbs=std::string(cancelButtonString)+"##validationdialog"; + if (IMGUI_BUTTON(cbs.c_str()) || prFileDialogInternal.puNeedToExitDialog) // dialog exit asked { prFileDialogInternal.puIsOk = false; @@ -4585,7 +4511,7 @@ namespace IGFD } } - std::string name = OverWriteDialogTitleString "##" + prFileDialogInternal.puDLGtitle + prFileDialogInternal.puDLGkey + "OverWriteDialog"; + std::string name = std::string(OverWriteDialogTitleString) + "##" + prFileDialogInternal.puDLGtitle + prFileDialogInternal.puDLGkey + "OverWriteDialog"; bool res = false; diff --git a/extern/igfd/ImGuiFileDialog.h b/extern/igfd/ImGuiFileDialog.h index 6336c1979..ad8a820f6 100644 --- a/extern/igfd/ImGuiFileDialog.h +++ b/extern/igfd/ImGuiFileDialog.h @@ -1140,6 +1140,29 @@ namespace IGFD bool singleClickSel; bool mobileMode; std::string homePath; + const char* okButtonString="OK"; + const char* cancelButtonString="Cancel"; + const char* searchString="Search"; + const char* dirEntryString="[Dir]"; + const char* linkEntryString="[Link]"; + const char* fileEntryString="[File]"; + const char* fileNameString="Name:"; + const char* dirNameString="Path:"; + const char* buttonResetSearchString="Reset search"; + const char* buttonDriveString="Drives"; + const char* buttonEditPathString="Edit path\nYou can also right click on path buttons"; + const char* buttonResetPathString="Go to home directory"; + const char* buttonParentDirString="Go to parent directory"; + const char* buttonCreateDirString="Create Directory"; + const char* tableHeaderFileNameString="File name"; + const char* tableHeaderFileTypeString="Type"; + const char* tableHeaderFileSizeString="Size"; + const char* tableHeaderFileDateString="Date"; + const char* OverWriteDialogTitleString="Warning"; + const char* OverWriteDialogMessageString="The file you selected already exists! Would you like to overwrite it?"; + const char* OverWriteDialogConfirmButtonString="Yes"; + const char* OverWriteDialogCancelButtonString="No"; + const char* DateTimeFormat="%Y/%m/%d %H:%M"; public: static FileDialog* Instance() // Singleton for easier accces form anywhere but only one dialog at a time diff --git a/extern/imgui_patched/imgui.cpp b/extern/imgui_patched/imgui.cpp index de063df0d..14ad6e2dc 100644 --- a/extern/imgui_patched/imgui.cpp +++ b/extern/imgui_patched/imgui.cpp @@ -1046,7 +1046,7 @@ static const float DOCKING_TRANSPARENT_PAYLOAD_ALPHA = 0.50f; // For u static void SetCurrentWindow(ImGuiWindow* window); static void FindHoveredWindow(); -static ImGuiWindow* CreateNewWindow(const char* name, ImGuiWindowFlags flags); +static ImGuiWindow* CreateNewWindow(const char* name, ImGuiWindowFlags flags, const char* displayedName = NULL); static ImVec2 CalcNextScrollFromScrollTargetAndClamp(ImGuiWindow* window); static void AddWindowToSortBuffer(ImVector* out_sorted_windows, ImGuiWindow* window); @@ -1219,6 +1219,8 @@ ImGuiStyle::ImGuiStyle() CurveTessellationTol = 1.25f; // Tessellation tolerance when using PathBezierCurveTo() without a specific number of segments. Decrease for highly tessellated curves (higher quality, more polygons), increase to reduce quality. CircleTessellationMaxError = 0.30f; // Maximum error (in pixels) allowed when using AddCircle()/AddCircleFilled() or drawing rounded corner rectangles with no explicit segment count specified. Decrease for higher quality but more geometry. + DoFrameShadingForMultilineText = false; + // Behaviors HoverStationaryDelay = 0.15f; // Delay for IsItemHovered(ImGuiHoveredFlags_Stationary). Time required to consider mouse stationary. HoverDelayShort = 0.15f; // Delay for IsItemHovered(ImGuiHoveredFlags_DelayShort). Usually used along with HoverStationaryDelay. @@ -3341,6 +3343,17 @@ const char* ImGui::FindRenderedTextEnd(const char* text, const char* text_end) return text_display_end; } +const char* FindRenderedTextEndNoHashHide(const char* text, const char* text_end) +{ + const char* text_display_end = text; + if (!text_end) + text_end = (const char*)-1; + + while (text_display_end < text_end && *text_display_end != '\0') + text_display_end++; + return text_display_end; +} + // Internal ImGui functions to render text // RenderText***() functions calls ImDrawList::AddText() calls ImBitmapFont::RenderText() void ImGui::RenderText(ImVec2 pos, const char* text, const char* text_end, bool hide_text_after_hash) @@ -3363,7 +3376,14 @@ void ImGui::RenderText(ImVec2 pos, const char* text, const char* text_end, bool if (text != text_display_end) { - window->DrawList->AddText(g.Font, g.FontSize, pos, GetColorU32(ImGuiCol_Text), text, text_display_end); + if (hide_text_after_hash) + { + window->DrawList->AddText(g.Font, g.FontSize, pos, GetColorU32(ImGuiCol_Text), text, text_display_end); + } + else + { + window->DrawList->AddTextNoHashHide(g.Font, g.FontSize, pos, GetColorU32(ImGuiCol_Text), text, text_display_end); + } if (g.LogEnabled) LogRenderedText(&pos, text, text_display_end); } @@ -3385,6 +3405,22 @@ void ImGui::RenderTextWrapped(ImVec2 pos, const char* text, const char* text_end } } +void ImGui::RenderTextWrappedNoHashHide(ImVec2 pos, const char* text, const char* text_end, float wrap_width) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + + if (!text_end) + text_end = text + strlen(text); // FIXME-OPT + + if (text != text_end) + { + window->DrawList->AddTextNoHashHide(g.Font, g.FontSize, pos, GetColorU32(ImGuiCol_Text), text, text_end, wrap_width); + if (g.LogEnabled) + LogRenderedText(&pos, text, text_end); + } +} + // Default clip_rect uses (pos_min,pos_max) // Handle clipping on CPU immediately (vs typically let the GPU clip the triangles that are overlapping the clipping rectangle edges) // FIXME-OPT: Since we have or calculate text_size we could coarse clip whole block immediately, especally for text above draw_list->DrawList. @@ -3433,6 +3469,21 @@ void ImGui::RenderTextClipped(const ImVec2& pos_min, const ImVec2& pos_max, cons LogRenderedText(&pos_min, text, text_display_end); } +void ImGui::RenderTextClippedNoHashHide(const ImVec2& pos_min, const ImVec2& pos_max, const char* text, const char* text_end, const ImVec2* text_size_if_known, const ImVec2& align, const ImRect* clip_rect) +{ + // Do not hide anything after a '##' string + const char* text_display_end = text_end; + const int text_len = (int)(text_display_end - text); + if (text_len == 0) + return; + + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + RenderTextClippedEx(window->DrawList, pos_min, pos_max, text, text_display_end, text_size_if_known, align, clip_rect); + if (g.LogEnabled) + LogRenderedText(&pos_min, text, text_display_end); +} + // Another overly complex function until we reorganize everything into a nice all-in-one helper. // This is made more complex because we have dissociated the layout rectangle (pos_min..pos_max) which define _where_ the ellipsis is, from actual clipping of text and limit of the ellipsis display. // This is because in the context of tabs we selectively hide part of the text when the Close Button appears, but we don't want the ellipsis to move. @@ -3843,12 +3894,23 @@ void ImGui::CallContextHooks(ImGuiContext* ctx, ImGuiContextHookType hook_type) //----------------------------------------------------------------------------- // ImGuiWindow is mostly a dumb struct. It merely has a constructor and a few helper methods -ImGuiWindow::ImGuiWindow(ImGuiContext* ctx, const char* name) : DrawListInst(NULL) +ImGuiWindow::ImGuiWindow(ImGuiContext* ctx, const char* name, const char* displayedName) : DrawListInst(NULL) { memset(this, 0, sizeof(*this)); Ctx = ctx; Name = ImStrdup(name); NameBufLen = (int)strlen(name) + 1; + + if(displayedName != NULL) + { + DisplayedName = ImStrdup(displayedName); + } + + else + { + DisplayedName = NULL; + } + ID = ImHashStr(name); IDStack.push_back(ID); ViewportAllowPlatformMonitorExtend = -1; @@ -3879,6 +3941,7 @@ ImGuiWindow::~ImGuiWindow() { IM_ASSERT(DrawList == &DrawListInst); IM_DELETE(Name); + IM_DELETE(DisplayedName); ColumnsStorage.clear_destruct(); } @@ -5731,6 +5794,7 @@ bool ImGui::BeginChildEx(const char* name, ImGuiID id, const ImVec2& size_arg, b if (!border) g.Style.ChildBorderSize = 0.0f; bool ret = Begin(temp_window_name, NULL, flags); + g.Style.ChildBorderSize = backup_border_size; ImGuiWindow* child_window = g.CurrentWindow; @@ -5930,12 +5994,12 @@ static void InitOrLoadWindowSettings(ImGuiWindow* window, ImGuiWindowSettings* s } } -static ImGuiWindow* CreateNewWindow(const char* name, ImGuiWindowFlags flags) +static ImGuiWindow* CreateNewWindow(const char* name, ImGuiWindowFlags flags, const char* displayedName) { // Create window the first time //IMGUI_DEBUG_LOG("CreateNewWindow '%s', flags = 0x%08X\n", name, flags); ImGuiContext& g = *GImGui; - ImGuiWindow* window = IM_NEW(ImGuiWindow)(&g, name); + ImGuiWindow* window = IM_NEW(ImGuiWindow)(&g, name, displayedName); window->Flags = flags; g.WindowsById.SetVoidPtr(window->ID, window); @@ -6651,7 +6715,7 @@ ImGuiWindow* ImGui::FindBlockingModal(ImGuiWindow* window) // You can use the "##" or "###" markers to use the same label with different id, or same id with different label. See documentation at the top of this file. // - Return false when window is collapsed, so you can early out in your code. You always need to call ImGui::End() even if false is returned. // - Passing 'bool* p_open' displays a Close button on the upper-right corner of the window, the pointed value will be set to false when the button is pressed. -bool ImGui::Begin(const char* name, bool* p_open, ImGuiWindowFlags flags) +bool ImGui::Begin(const char* name, bool* p_open, ImGuiWindowFlags flags, const char* displayedName) { ImGuiContext& g = *GImGui; const ImGuiStyle& style = g.Style; @@ -6663,7 +6727,7 @@ bool ImGui::Begin(const char* name, bool* p_open, ImGuiWindowFlags flags) ImGuiWindow* window = FindWindowByName(name); const bool window_just_created = (window == NULL); if (window_just_created) - window = CreateNewWindow(name, flags); + window = CreateNewWindow(name, flags, displayedName); // Automatically disable manual moving/resizing when NoInputs is set if ((flags & ImGuiWindowFlags_NoInputs) == ImGuiWindowFlags_NoInputs) @@ -6869,6 +6933,22 @@ bool ImGui::Begin(const char* name, bool* p_open, ImGuiWindowFlags flags) window->NameBufLen = (int)buf_len; } + if(window->DisplayedName) + { + if(strcmp(displayedName, window->DisplayedName) != 0) + { + // WAHAHAHAHA + // you wrote free() instead of IM_DELETE() and broke portability HAHAHA + IM_DELETE(window->DisplayedName); + window->DisplayedName = ImStrdup(displayedName); + } + } + + if(window->DisplayedName == NULL && displayedName != NULL) + { + window->DisplayedName = ImStrdup(displayedName); + } + // UPDATE CONTENTS SIZE, UPDATE HIDDEN STATUS // Update contents size from last frame for auto-fitting (or use explicit size) @@ -7420,7 +7500,7 @@ bool ImGui::Begin(const char* name, bool* p_open, ImGuiWindowFlags flags) // Title bar if (!(flags & ImGuiWindowFlags_NoTitleBar) && !window->DockIsActive) - RenderWindowTitleBarContents(window, ImRect(title_bar_rect.Min.x + window->WindowBorderSize, title_bar_rect.Min.y, title_bar_rect.Max.x - window->WindowBorderSize, title_bar_rect.Max.y), name, p_open); + RenderWindowTitleBarContents(window, ImRect(title_bar_rect.Min.x + window->WindowBorderSize, title_bar_rect.Min.y, title_bar_rect.Max.x - window->WindowBorderSize, title_bar_rect.Max.y), displayedName == NULL ? name : displayedName, p_open); // Clear hit test shape every frame window->HitTestHoleSize.x = window->HitTestHoleSize.y = 0; @@ -14183,8 +14263,14 @@ static void WindowSettingsHandler_WriteAll(ImGuiContext* ctx, ImGuiSettingsHandl void ImGui::LocalizeRegisterEntries(const ImGuiLocEntry* entries, int count) { ImGuiContext& g = *GImGui; - for (int n = 0; n < count; n++) - g.LocalizationTable[entries[n].Key] = entries[n].Text; + + if (GImGui != NULL) + { + for (int n = 0; n < count; n++) + { + g.LocalizationTable[entries[n].Key] = entries[n].Text; + } + } } @@ -16891,7 +16977,7 @@ bool ImGui::DockNodeBeginAmendTabBar(ImGuiDockNode* node) return false; if (node->MergedFlags & ImGuiDockNodeFlags_KeepAliveOnly) return false; - Begin(node->HostWindow->Name); + Begin(node->HostWindow->Name); //this is to be edited PushOverrideID(node->ID); bool ret = BeginTabBarEx(node->TabBar, node->TabBar->BarRect, node->TabBar->Flags, node); IM_UNUSED(ret); @@ -17094,7 +17180,7 @@ static void ImGui::DockNodeUpdateTabBar(ImGuiDockNode* node, ImGuiWindow* host_w // Note that TabItemEx() calls TabBarCalcTabID() so our tab item ID will ignore the current ID stack (rightly so) bool tab_open = true; - TabItemEx(tab_bar, window->Name, window->HasCloseButton ? &tab_open : NULL, tab_item_flags, window); + TabItemEx(tab_bar, window->DisplayedName == NULL ? window->Name : window->DisplayedName, window->HasCloseButton ? &tab_open : NULL, tab_item_flags, window); if (!tab_open) node->WantCloseTabId = window->TabId; if (tab_bar->VisibleTabId == window->TabId) @@ -17551,7 +17637,7 @@ static void ImGui::DockNodePreviewDockRender(ImGuiWindow* host_window, ImGuiDock if (!tab_bar_rect.Contains(tab_bb)) overlay_draw_lists[overlay_n]->PushClipRect(tab_bar_rect.Min, tab_bar_rect.Max); TabItemBackground(overlay_draw_lists[overlay_n], tab_bb, tab_flags, overlay_col_tabs); - TabItemLabelAndCloseButton(overlay_draw_lists[overlay_n], tab_bb, tab_flags, g.Style.FramePadding, payload_window->Name, 0, 0, false, NULL, NULL); + TabItemLabelAndCloseButton(overlay_draw_lists[overlay_n], tab_bb, tab_flags, g.Style.FramePadding, payload_window->DisplayedName == NULL ? payload_window->Name : payload_window->DisplayedName, 0, 0, false, NULL, NULL); if (!tab_bar_rect.Contains(tab_bb)) overlay_draw_lists[overlay_n]->PopClipRect(); } diff --git a/extern/imgui_patched/imgui.h b/extern/imgui_patched/imgui.h index 97a458696..b86c20b17 100644 --- a/extern/imgui_patched/imgui.h +++ b/extern/imgui_patched/imgui.h @@ -338,7 +338,7 @@ namespace ImGui // BeginPopup/EndPopup, etc. where the EndXXX call should only be called if the corresponding BeginXXX function // returned true. Begin and BeginChild are the only odd ones out. Will be fixed in a future update.] // - Note that the bottom of window stack always contains a window called "Debug". - IMGUI_API bool Begin(const char* name, bool* p_open = NULL, ImGuiWindowFlags flags = 0); + IMGUI_API bool Begin(const char* name, bool* p_open = NULL, ImGuiWindowFlags flags = 0, const char* displayedName = NULL); IMGUI_API void End(); // Child Windows @@ -496,6 +496,7 @@ namespace ImGui // Widgets: Text IMGUI_API void TextUnformatted(const char* text, const char* text_end = NULL); // raw text without formatting. Roughly equivalent to Text("%s", text) but: A) doesn't require null terminated string if 'text_end' is specified, B) it's faster, no memory copy is done, no buffer size limits, recommended for long chunks of text. IMGUI_API void Text(const char* fmt, ...) IM_FMTARGS(1); // formatted text + IMGUI_API void TextNoHashHide(const char* fmt, ...) IM_FMTARGS(1); // formatted text IMGUI_API void TextV(const char* fmt, va_list args) IM_FMTLIST(1); IMGUI_API void TextColored(const ImVec4& col, const char* fmt, ...) IM_FMTARGS(2); // shortcut for PushStyleColor(ImGuiCol_Text, col); Text(fmt, ...); PopStyleColor(); IMGUI_API void TextColoredV(const ImVec4& col, const char* fmt, va_list args) IM_FMTLIST(2); @@ -1080,6 +1081,8 @@ enum ImGuiInputTextFlags_ ImGuiInputTextFlags_CallbackEdit = 1 << 19, // Callback on any edit (note that InputText() already returns true on edit, the callback is useful mainly to manipulate the underlying buffer while focus is active) ImGuiInputTextFlags_EscapeClearsAll = 1 << 20, // Escape key clears content if not empty, and deactivate otherwise (contrast to default behavior of Escape to revert) + ImGuiInputTextFlags_WordWrapping = 1 << 21, //https://github.com/MladoniSzabi/QuestSystem/commit/2c1f8bba6ecaa53a642ea469d49f19e94adc0029 + // Obsolete names //ImGuiInputTextFlags_AlwaysInsertMode = ImGuiInputTextFlags_AlwaysOverwrite // [renamed in 1.82] name was not matching behavior }; @@ -1143,6 +1146,8 @@ enum ImGuiSelectableFlags_ ImGuiSelectableFlags_Disabled = 1 << 3, // Cannot be selected, display grayed out text ImGuiSelectableFlags_AllowOverlap = 1 << 4, // (WIP) Hit testing to allow subsequent widgets to overlap this one + ImGuiSelectableFlags_NoHashTextHide = 1 << 5, // do not hide text after `##` + #ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS ImGuiSelectableFlags_AllowItemOverlap = ImGuiSelectableFlags_AllowOverlap, // Renamed in 1.89.7 #endif @@ -2020,6 +2025,8 @@ struct ImGuiStyle float CircleTessellationMaxError; // Maximum error (in pixels) allowed when using AddCircle()/AddCircleFilled() or drawing rounded corner rectangles with no explicit segment count specified. Decrease for higher quality but more geometry. ImVec4 Colors[ImGuiCol_COUNT]; + bool DoFrameShadingForMultilineText; // Toggle FrameShading for multiline text input field + // Behaviors // (It is possible to modify those fields mid-frame if specific behavior need it, unlike e.g. configuration fields in ImGuiIO) float HoverStationaryDelay; // Delay for IsItemHovered(ImGuiHoveredFlags_Stationary). Time required to consider mouse stationary. @@ -2808,6 +2815,8 @@ struct ImDrawList IMGUI_API void AddNgonFilled(const ImVec2& center, float radius, ImU32 col, int num_segments); IMGUI_API void AddText(const ImVec2& pos, ImU32 col, const char* text_begin, const char* text_end = NULL); IMGUI_API void AddText(const ImFont* font, float font_size, const ImVec2& pos, ImU32 col, const char* text_begin, const char* text_end = NULL, float wrap_width = 0.0f, const ImVec4* cpu_fine_clip_rect = NULL); + IMGUI_API void AddTextNoHashHide(const ImVec2& pos, ImU32 col, const char* text_begin, const char* text_end = NULL); + IMGUI_API void AddTextNoHashHide(const ImFont* font, float font_size, const ImVec2& pos, ImU32 col, const char* text_begin, const char* text_end = NULL, float wrap_width = 0.0f, const ImVec4* cpu_fine_clip_rect = NULL); IMGUI_API void AddPolyline(const ImVec2* points, int num_points, ImU32 col, ImDrawFlags flags, float thickness); IMGUI_API void AddConvexPolyFilled(const ImVec2* points, int num_points, ImU32 col); IMGUI_API void AddBezierCubic(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, const ImVec2& p4, ImU32 col, float thickness, int num_segments = 0); // Cubic Bezier (4 control points) diff --git a/extern/imgui_patched/imgui_draw.cpp b/extern/imgui_patched/imgui_draw.cpp index 16d89bc8b..85e62beed 100644 --- a/extern/imgui_patched/imgui_draw.cpp +++ b/extern/imgui_patched/imgui_draw.cpp @@ -1620,6 +1620,17 @@ void ImDrawList::AddBezierQuadratic(const ImVec2& p1, const ImVec2& p2, const Im PathStroke(col, 0, thickness); } +const char* FindTextEnd(const char* text, const char* text_end) +{ + const char* text_display_end = text; + if (!text_end) + text_end = (const char*)-1; + + while (text_display_end < text_end && *text_display_end != '\0' && (text_display_end[0] != '#' || text_display_end[1] != '#')) + text_display_end++; + return text_display_end; +} + void ImDrawList::AddText(const ImFont* font, float font_size, const ImVec2& pos, ImU32 col, const char* text_begin, const char* text_end, float wrap_width, const ImVec4* cpu_fine_clip_rect) { if ((col & IM_COL32_A_MASK) == 0) @@ -1630,6 +1641,8 @@ void ImDrawList::AddText(const ImFont* font, float font_size, const ImVec2& pos, if (text_begin == text_end) return; + text_end = FindTextEnd(text_begin, text_end); //hides everything after ## + // Pull default font/size from the shared ImDrawListSharedData instance if (font == NULL) font = _Data->Font; @@ -1654,6 +1667,42 @@ void ImDrawList::AddText(const ImVec2& pos, ImU32 col, const char* text_begin, c AddText(NULL, 0.0f, pos, col, text_begin, text_end); } +void ImDrawList::AddTextNoHashHide(const ImFont* font, float font_size, const ImVec2& pos, ImU32 col, const char* text_begin, const char* text_end, float wrap_width, const ImVec4* cpu_fine_clip_rect) +{ + if ((col & IM_COL32_A_MASK) == 0) + return; + + if (text_end == NULL) + text_end = text_begin + strlen(text_begin); + if (text_begin == text_end) + return; + + //text_end = FindTextEnd(text_begin, text_end); //hides everything after ## + + // Pull default font/size from the shared ImDrawListSharedData instance + if (font == NULL) + font = _Data->Font; + if (font_size == 0.0f) + font_size = _Data->FontSize; + + IM_ASSERT(font->ContainerAtlas->TexID == _CmdHeader.TextureId); // Use high-level ImGui::PushFont() or low-level ImDrawList::PushTextureId() to change font. + + ImVec4 clip_rect = _CmdHeader.ClipRect; + if (cpu_fine_clip_rect) + { + clip_rect.x = ImMax(clip_rect.x, cpu_fine_clip_rect->x); + clip_rect.y = ImMax(clip_rect.y, cpu_fine_clip_rect->y); + clip_rect.z = ImMin(clip_rect.z, cpu_fine_clip_rect->z); + clip_rect.w = ImMin(clip_rect.w, cpu_fine_clip_rect->w); + } + font->RenderText(this, font_size, pos, col, clip_rect, text_begin, text_end, wrap_width, cpu_fine_clip_rect != NULL); +} + +void ImDrawList::AddTextNoHashHide(const ImVec2& pos, ImU32 col, const char* text_begin, const char* text_end) +{ + AddTextNoHashHide(NULL, 0.0f, pos, col, text_begin, text_end); +} + void ImDrawList::AddImage(ImTextureID user_texture_id, const ImVec2& p_min, const ImVec2& p_max, const ImVec2& uv_min, const ImVec2& uv_max, ImU32 col) { if ((col & IM_COL32_A_MASK) == 0) diff --git a/extern/imgui_patched/imgui_internal.h b/extern/imgui_patched/imgui_internal.h index a9272ab33..94e1a6cdb 100644 --- a/extern/imgui_patched/imgui_internal.h +++ b/extern/imgui_patched/imgui_internal.h @@ -941,6 +941,8 @@ enum ImGuiTextFlags_ { ImGuiTextFlags_None = 0, ImGuiTextFlags_NoWidthForLargeClippedText = 1 << 0, + + ImGuiTextFlags_HideID = 1 << 1, //hide things after ## }; enum ImGuiTooltipFlags_ @@ -1109,6 +1111,7 @@ struct IMGUI_API ImGuiInputTextState bool SelectedAllMouseLock; // after a double-click to select all, we ignore further mouse drags to update selection bool Edited; // edited this frame ImGuiInputTextFlags Flags; // copy of InputText() flags. may be used to check if e.g. ImGuiInputTextFlags_Password is set. + float WordWrapWidth; ImGuiInputTextState() { memset(this, 0, sizeof(*this)); } void ClearText() { CurLenW = CurLenA = 0; TextW[0] = 0; TextA[0] = 0; CursorClamp(); } @@ -1117,6 +1120,8 @@ struct IMGUI_API ImGuiInputTextState int GetRedoAvailCount() const { return STB_TEXTEDIT_UNDOSTATECOUNT - Stb.undostate.redo_point; } void OnKeyPressed(int key); // Cannot be inline because we call in code in stb_textedit.h implementation + bool HasWordWrap() const { return WordWrapWidth > 0.0; } + // Cursor & Selection void CursorAnimReset() { CursorAnim = -0.30f; } // After a user-input the cursor stays on for a while without blinking void CursorClamp() { Stb.cursor = ImMin(Stb.cursor, CurLenW); Stb.select_start = ImMin(Stb.select_start, CurLenW); Stb.select_end = ImMin(Stb.select_end, CurLenW); } @@ -2513,6 +2518,9 @@ struct IMGUI_API ImGuiWindow { ImGuiContext* Ctx; // Parent UI context (needs to be set explicitly by parent). char* Name; // Window name, owned by the window. + + char* DisplayedName; // Window name, displayed in docked mode. + ImGuiID ID; // == ImHashStr(Name) ImGuiWindowFlags Flags, FlagsPreviousFrame; // See enum ImGuiWindowFlags_ ImGuiWindowClass WindowClass; // Advanced users only. Set with SetNextWindowClass() @@ -2638,7 +2646,7 @@ struct IMGUI_API ImGuiWindow ImRect DockTabItemRect; public: - ImGuiWindow(ImGuiContext* context, const char* name); + ImGuiWindow(ImGuiContext* context, const char* name, const char* displayedName = NULL); ~ImGuiWindow(); ImGuiID GetID(const char* str, const char* str_end = NULL); @@ -3445,7 +3453,9 @@ namespace ImGui // NB: All position are in absolute pixels coordinates (we are never using window coordinates internally) IMGUI_API void RenderText(ImVec2 pos, const char* text, const char* text_end = NULL, bool hide_text_after_hash = true); IMGUI_API void RenderTextWrapped(ImVec2 pos, const char* text, const char* text_end, float wrap_width); + IMGUI_API void RenderTextWrappedNoHashHide(ImVec2 pos, const char* text, const char* text_end, float wrap_width); IMGUI_API void RenderTextClipped(const ImVec2& pos_min, const ImVec2& pos_max, const char* text, const char* text_end, const ImVec2* text_size_if_known, const ImVec2& align = ImVec2(0, 0), const ImRect* clip_rect = NULL); + IMGUI_API void RenderTextClippedNoHashHide(const ImVec2& pos_min, const ImVec2& pos_max, const char* text, const char* text_end, const ImVec2* text_size_if_known, const ImVec2& align = ImVec2(0, 0), const ImRect* clip_rect = NULL); IMGUI_API void RenderTextClippedEx(ImDrawList* draw_list, const ImVec2& pos_min, const ImVec2& pos_max, const char* text, const char* text_end, const ImVec2* text_size_if_known, const ImVec2& align = ImVec2(0, 0), const ImRect* clip_rect = NULL); IMGUI_API void RenderTextEllipsis(ImDrawList* draw_list, const ImVec2& pos_min, const ImVec2& pos_max, float clip_max_x, float ellipsis_max_x, const char* text, const char* text_end, const ImVec2* text_size_if_known); IMGUI_API void RenderFrame(ImVec2 p_min, ImVec2 p_max, ImU32 fill_col, bool border = true, float rounding = 0.0f); @@ -3468,6 +3478,7 @@ namespace ImGui // Widgets IMGUI_API void TextEx(const char* text, const char* text_end = NULL, ImGuiTextFlags flags = 0); + IMGUI_API void TextExNoHashHide(const char* text, const char* text_end = NULL, ImGuiTextFlags flags = 0); IMGUI_API bool ButtonEx(const char* label, const ImVec2& size_arg = ImVec2(0, 0), ImGuiButtonFlags flags = 0); IMGUI_API bool ArrowButtonEx(const char* str_id, ImGuiDir dir, ImVec2 size_arg, ImGuiButtonFlags flags = 0); IMGUI_API bool ImageButtonEx(ImGuiID id, ImTextureID texture_id, const ImVec2& size, const ImVec2& uv0, const ImVec2& uv1, const ImVec4& bg_col, const ImVec4& tint_col, ImGuiButtonFlags flags = 0); diff --git a/extern/imgui_patched/imgui_widgets.cpp b/extern/imgui_patched/imgui_widgets.cpp index ff90e35ad..ec3412a96 100644 --- a/extern/imgui_patched/imgui_widgets.cpp +++ b/extern/imgui_patched/imgui_widgets.cpp @@ -122,7 +122,9 @@ static const ImU64 IM_U64_MAX = (2ULL * 9223372036854775807LL + 1); // For InputTextEx() static bool InputTextFilterCharacter(unsigned int* p_char, ImGuiInputTextFlags flags, ImGuiInputTextCallback callback, void* user_data, ImGuiInputSource input_source); static int InputTextCalcTextLenAndLineCount(const char* text_begin, const char** out_text_end); -static ImVec2 InputTextCalcTextSizeW(ImGuiContext* ctx, const ImWchar* text_begin, const ImWchar* text_end, const ImWchar** remaining = NULL, ImVec2* out_offset = NULL, bool stop_on_new_line = false); +static ImVec2 InputTextCalcTextSizeW(ImGuiContext* ctx, const ImWchar* text_begin, const ImWchar* text_end, const ImWchar** remaining = NULL, ImVec2* out_offset = NULL, const bool stop_on_new_line = false, const float wrap_width = 0.0f, const bool keep_trailing_blanks = false); +static ImVec2 FindCharPosition(const ImWchar* text_begin, const ImWchar* char_position, const ImWchar* text_end, const float wrap_width); +static const ImWchar* CalcWordWrapPositionW(const ImFont* font, float scale, const ImWchar* text, const ImWchar* text_end, float wrap_width); //------------------------------------------------------------------------- // [SECTION] Widgets: Text, etc. @@ -159,6 +161,8 @@ void ImGui::TextEx(const char* text, const char* text_end, ImGuiTextFlags flags) if (text_end == NULL) text_end = text + strlen(text); // FIXME-OPT + text_end = FindRenderedTextEnd(text, text_end); //hides everything after ## + const ImVec2 text_pos(window->DC.CursorPos.x, window->DC.CursorPos.y + window->DC.CurrLineTextBaseOffset); const float wrap_pos_x = window->DC.TextWrapPos; const bool wrap_enabled = (wrap_pos_x >= 0.0f); @@ -251,6 +255,116 @@ void ImGui::TextEx(const char* text, const char* text_end, ImGuiTextFlags flags) } } +void ImGui::TextExNoHashHide(const char* text, const char* text_end, ImGuiTextFlags flags) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return; + ImGuiContext& g = *GImGui; + + // Accept null ranges + if (text == text_end) + text = text_end = ""; + + // Calculate length + const char* text_begin = text; + if (text_end == NULL) + text_end = text + strlen(text); // FIXME-OPT + + //text_end = FindRenderedTextEnd(text, text_end); //hides everything after ## + + const ImVec2 text_pos(window->DC.CursorPos.x, window->DC.CursorPos.y + window->DC.CurrLineTextBaseOffset); + const float wrap_pos_x = window->DC.TextWrapPos; + const bool wrap_enabled = (wrap_pos_x >= 0.0f); + if (text_end - text <= 2000 || wrap_enabled) + { + // Common case + const float wrap_width = wrap_enabled ? CalcWrapWidthForPos(window->DC.CursorPos, wrap_pos_x) : 0.0f; + const ImVec2 text_size = CalcTextSize(text_begin, text_end, false, wrap_width); + + ImRect bb(text_pos, text_pos + text_size); + ItemSize(text_size, 0.0f); + if (!ItemAdd(bb, 0)) + return; + + // Render (we don't hide text after ## in this end-user function) + RenderTextWrappedNoHashHide(bb.Min, text_begin, text_end, wrap_width); + } + else + { + // Long text! + // Perform manual coarse clipping to optimize for long multi-line text + // - From this point we will only compute the width of lines that are visible. Optimization only available when word-wrapping is disabled. + // - We also don't vertically center the text within the line full height, which is unlikely to matter because we are likely the biggest and only item on the line. + // - We use memchr(), pay attention that well optimized versions of those str/mem functions are much faster than a casually written loop. + const char* line = text; + const float line_height = GetTextLineHeight(); + ImVec2 text_size(0, 0); + + // Lines to skip (can't skip when logging text) + ImVec2 pos = text_pos; + if (!g.LogEnabled) + { + int lines_skippable = (int)((window->ClipRect.Min.y - text_pos.y) / line_height); + if (lines_skippable > 0) + { + int lines_skipped = 0; + while (line < text_end && lines_skipped < lines_skippable) + { + const char* line_end = (const char*)memchr(line, '\n', text_end - line); + if (!line_end) + line_end = text_end; + if ((flags & ImGuiTextFlags_NoWidthForLargeClippedText) == 0) + text_size.x = ImMax(text_size.x, CalcTextSize(line, line_end, false).x); + line = line_end + 1; + lines_skipped++; + } + pos.y += lines_skipped * line_height; + } + } + + // Lines to render + if (line < text_end) + { + ImRect line_rect(pos, pos + ImVec2(FLT_MAX, line_height)); + while (line < text_end) + { + if (IsClippedEx(line_rect, 0)) + break; + + const char* line_end = (const char*)memchr(line, '\n', text_end - line); + if (!line_end) + line_end = text_end; + text_size.x = ImMax(text_size.x, CalcTextSize(line, line_end, false).x); + RenderText(pos, line, line_end, false); + line = line_end + 1; + line_rect.Min.y += line_height; + line_rect.Max.y += line_height; + pos.y += line_height; + } + + // Count remaining lines + int lines_skipped = 0; + while (line < text_end) + { + const char* line_end = (const char*)memchr(line, '\n', text_end - line); + if (!line_end) + line_end = text_end; + if ((flags & ImGuiTextFlags_NoWidthForLargeClippedText) == 0) + text_size.x = ImMax(text_size.x, CalcTextSize(line, line_end, false).x); + line = line_end + 1; + lines_skipped++; + } + pos.y += lines_skipped * line_height; + } + text_size.y = (pos - text_pos).y; + + ImRect bb(text_pos, text_pos + text_size); + ItemSize(text_size, 0.0f); + ItemAdd(bb, 0); + } +} + void ImGui::TextUnformatted(const char* text, const char* text_end) { TextEx(text, text_end, ImGuiTextFlags_NoWidthForLargeClippedText); @@ -264,6 +378,22 @@ void ImGui::Text(const char* fmt, ...) va_end(args); } +void ImGui::TextNoHashHide(const char* fmt, ...) +{ + va_list args; + va_start(args, fmt); + + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return; + + const char* text, *text_end; + ImFormatStringToTempBufferV(&text, &text_end, fmt, args); + TextExNoHashHide(text, text_end, ImGuiTextFlags_NoWidthForLargeClippedText); + + va_end(args); +} + void ImGui::TextV(const char* fmt, va_list args) { ImGuiWindow* window = GetCurrentWindow(); @@ -3668,7 +3798,188 @@ static int InputTextCalcTextLenAndLineCount(const char* text_begin, const char** return line_count; } -static ImVec2 InputTextCalcTextSizeW(ImGuiContext* ctx, const ImWchar* text_begin, const ImWchar* text_end, const ImWchar** remaining, ImVec2* out_offset, bool stop_on_new_line) +static const ImWchar* CalcWordWrapPositionW(const ImFont* font, float scale, const ImWchar* text, const ImWchar* text_end, float wrap_width) +{ + + // Simple word-wrapping for English, not full-featured. Please submit failing cases! + // FIXME: Much possible improvements (don't cut things like "word !", "word!!!" but cut within "word,,,,", more sensible support for punctuations, support for Unicode punctuations, etc.) + + // For references, possible wrap point marked with ^ + // "aaa bbb, ccc,ddd. eee fff. ggg!" + // ^ ^ ^ ^ ^__ ^ ^ + + // List of hardcoded separators: .,;!?'" + + // Skip extra blanks after a line returns (that includes not counting them in width computation) + // e.g. "Hello world" --> "Hello" "World" + + // Cut words that cannot possibly fit within one line. + // e.g.: "The tropical fish" with ~5 characters worth of width --> "The tr" "opical" "fish" + + float line_width = 0.0f; + float word_width = 0.0f; + float blank_width = 0.0f; + wrap_width /= scale; // We work with unscaled widths to avoid scaling every characters + + const ImWchar* word_end = text; + const ImWchar* prev_word_end = NULL; + bool inside_word = true; + + const ImWchar* s = text; + while (s < text_end) + { + ImWchar c = (unsigned int)*s++; + if (c == 0) + break; + + if (c < 32) + { + if (c == '\n') + { + line_width = word_width = blank_width = 0.0f; + inside_word = true; + continue; + } + if (c == '\r') + { + continue; + } + } + + const float char_width = font->GetCharAdvance(c) * scale; + if (ImCharIsBlankW(c)) + { + if (inside_word) + { + line_width += blank_width; + blank_width = 0.0f; + word_end = s - 1; + } + blank_width += char_width; + inside_word = false; + } + else + { + word_width += char_width; + if (inside_word) + { + word_end = s; + } + else + { + prev_word_end = word_end; + line_width += word_width + blank_width; + word_width = blank_width = 0.0f; + } + + // Allow wrapping after punctuation. + inside_word = (c != '.' && c != ',' && c != ';' && c != '!' && c != '?' && c != '\"'); + } + + // We ignore blank width at the end of the line (they can be skipped) + if (line_width + word_width > wrap_width) + { + // Words that cannot possibly fit within an entire line will be cut anywhere. + if (word_width < wrap_width) + s = prev_word_end ? prev_word_end : word_end; + break; + } + } + + return s; +} + + +static ImVec2 FindCharPosition(const ImWchar* text_begin, const ImWchar* char_position, const ImWchar* text_end, const float wrap_width) +{ + ImGuiContext& g = *GImGui; + ImFont* font = g.Font; + const float line_height = g.FontSize; + const float scale = line_height / font->FontSize; + + ImVec2 text_size = ImVec2(0, 0); + float line_width = 0.0f; + + const bool word_wrap_enabled = (wrap_width > 0.0f); + const ImWchar* word_wrap_eol = NULL; + + bool stop_on_new_line = false; + + const ImWchar* s = text_begin; + while (s < text_end) + { + if (word_wrap_enabled) + { + if (!word_wrap_eol) + { + word_wrap_eol = CalcWordWrapPositionW(font, scale, s, text_end, wrap_width - line_width); + if (word_wrap_eol == s) + { + word_wrap_eol++; + } + } + + if (s >= word_wrap_eol) + { + text_size.x = ImMax(text_size.x, line_width); + text_size.y += line_height; + line_width = 0.0f; + word_wrap_eol = NULL; + + + while (s < text_end) + { + unsigned int c = (unsigned int)(*s); + + if(ImCharIsBlankW(c)) { + s++; + } else if(c == '\n'){ + s++; + break; + } else { break; } + } + + if(s >= char_position) + { + stop_on_new_line = true; + } + + if (stop_on_new_line) + break; + continue; + } + } + + if(s == char_position) + { + break; + } + + unsigned int c = (unsigned int)(*s++); + + if (c == '\n') + { + text_size.x = ImMax(text_size.x, line_width); + text_size.y += line_height; + line_width = 0.0f; + if (stop_on_new_line) + break; + continue; + } + if (c == '\r') + continue; + + const float char_width = font->GetCharAdvance((ImWchar)c) * scale; + line_width += char_width; + } + + if (text_size.x < line_width) + text_size.x = line_width; + + return ImVec2(line_width, text_size.y + line_height); +} + +static ImVec2 InputTextCalcTextSizeW(ImGuiContext* ctx, const ImWchar* text_begin, const ImWchar* text_end, const ImWchar** remaining, ImVec2* out_offset,const bool stop_on_new_line, const float word_wrap_width, const bool keep_trailing_blanks) { ImGuiContext& g = *ctx; ImFont* font = g.Font; @@ -3678,9 +3989,52 @@ static ImVec2 InputTextCalcTextSizeW(ImGuiContext* ctx, const ImWchar* text_begi ImVec2 text_size = ImVec2(0, 0); float line_width = 0.0f; + const float wrap_width = word_wrap_width; + const bool word_wrap_enabled = (wrap_width > 0.0f); + const ImWchar* word_wrap_eol = NULL; + const ImWchar* s = text_begin; while (s < text_end) { + if (word_wrap_enabled) + { + if (!word_wrap_eol) + { + word_wrap_eol = CalcWordWrapPositionW(font, scale, s, text_end, wrap_width - line_width); + if (word_wrap_eol == s) + { + word_wrap_eol++; + } + } + + if (s >= word_wrap_eol) + { + text_size.x = ImMax(text_size.x, line_width); + text_size.y += line_height; + line_width = 0.0f; + word_wrap_eol = NULL; + + + if(!keep_trailing_blanks) + { + while (s < text_end) + { + unsigned int c = (unsigned int)(*s); + if(ImCharIsBlankW(c)) { + s++; + } else if(c == '\n'){ + s++; + break; + } else { break; } + } + } + + if (stop_on_new_line) + break; + continue; + } + } + unsigned int c = (unsigned int)(*s++); if (c == '\n') { @@ -3726,7 +4080,7 @@ static void STB_TEXTEDIT_LAYOUTROW(StbTexteditRow* r, ImGuiInputTextState* ob { const ImWchar* text = obj->TextW.Data; const ImWchar* text_remaining = NULL; - const ImVec2 size = InputTextCalcTextSizeW(obj->Ctx, text + line_start_idx, text + obj->CurLenW, &text_remaining, NULL, true); + const ImVec2 size = InputTextCalcTextSizeW(obj->Ctx, text + line_start_idx, text + obj->CurLenW, &text_remaining, NULL, true, obj->WordWrapWidth); r->x0 = 0.0f; r->x1 = size.x; r->baseline_y_delta = size.y; @@ -4136,6 +4490,9 @@ bool ImGui::InputTextEx(const char* label, const char* hint, char* buf, int buf_ const ImRect frame_bb(window->DC.CursorPos, window->DC.CursorPos + frame_size); const ImRect total_bb(frame_bb.Min, frame_bb.Min + total_size); + const bool has_word_wrap = is_multiline && (flags & ImGuiInputTextFlags_WordWrapping) != 0; + const float word_wrap_width = has_word_wrap ? frame_size.x - style.FramePadding.x * 2.0f : 0.0f; + ImGuiWindow* draw_window = window; ImVec2 inner_size = frame_size; ImGuiItemStatusFlags item_status_flags = 0; @@ -4155,13 +4512,22 @@ bool ImGui::InputTextEx(const char* label, const char* hint, char* buf, int buf_ // We reproduce the contents of BeginChildFrame() in order to provide 'label' so our window internal data are easier to read/debug. // FIXME-NAV: Pressing NavActivate will trigger general child activation right before triggering our own below. Harmless but bizarre. - PushStyleColor(ImGuiCol_ChildBg, style.Colors[ImGuiCol_FrameBg]); + if(!style.DoFrameShadingForMultilineText) + { + PushStyleColor(ImGuiCol_ChildBg, style.Colors[ImGuiCol_FrameBg]); + } + PushStyleVar(ImGuiStyleVar_ChildRounding, style.FrameRounding); PushStyleVar(ImGuiStyleVar_ChildBorderSize, style.FrameBorderSize); PushStyleVar(ImGuiStyleVar_WindowPadding, ImVec2(0, 0)); // Ensure no clip rect so mouse hover can reach FramePadding edges bool child_visible = BeginChildEx(label, id, frame_bb.GetSize(), true, ImGuiWindowFlags_NoMove); PopStyleVar(3); - PopStyleColor(); + + if(!style.DoFrameShadingForMultilineText) + { + PopStyleColor(); + } + if (!child_visible) { EndChild(); @@ -4259,6 +4625,11 @@ bool ImGui::InputTextEx(const char* label, const char* hint, char* buf, int buf_ state->Stb.insert_mode = 1; // stb field name is indeed incorrect (see #2863) } + if(state) + { + state->WordWrapWidth = word_wrap_width; + } + const bool is_osx = io.ConfigMacOSXBehaviors; if (g.ActiveId != id && init_make_active) { @@ -4822,7 +5193,7 @@ bool ImGui::InputTextEx(const char* label, const char* hint, char* buf, int buf_ g.WantTextInputNextFrame = 1; // Render frame - if (!is_multiline) + if (!is_multiline || (is_multiline && style.DoFrameShadingForMultilineText)) { RenderNavHighlight(frame_bb, id); RenderFrame(frame_bb.Min, frame_bb.Max, GetColorU32(ImGuiCol_FrameBg), true, style.FrameRounding); @@ -4860,63 +5231,35 @@ bool ImGui::InputTextEx(const char* label, const char* hint, char* buf, int buf_ // We are attempting to do most of that in **one main pass** to minimize the computation cost (non-negligible for large amount of text) + 2nd pass for selection rendering (we could merge them by an extra refactoring effort) // FIXME: This should occur on buf_display but we'd need to maintain cursor/select_start/select_end for UTF-8. const ImWchar* text_begin = state->TextW.Data; + const ImWchar* text_end = state->TextW.Data + ImStrlenW(state->TextW.Data); ImVec2 cursor_offset, select_start_offset; { - // Find lines numbers straddling 'cursor' (slot 0) and 'select_start' (slot 1) positions. - const ImWchar* searches_input_ptr[2] = { NULL, NULL }; - int searches_result_line_no[2] = { -1000, -1000 }; - int searches_remaining = 0; - if (render_cursor) - { - searches_input_ptr[0] = text_begin + state->Stb.cursor; - searches_result_line_no[0] = -1; - searches_remaining++; + // Find input local positions of 'cursor' (slot 0) and 'select_start' (slot 1) positions. + if(render_cursor) { + const ImWchar* cursor_ptr = text_begin + state->Stb.cursor; + ImVec2 cursor_pos = FindCharPosition(text_begin, cursor_ptr, text_end, word_wrap_width); + cursor_offset.x = cursor_pos.x; + cursor_offset.y = cursor_pos.y; } if (render_selection) { - searches_input_ptr[1] = text_begin + ImMin(state->Stb.select_start, state->Stb.select_end); - searches_result_line_no[1] = -1; - searches_remaining++; - } - - // Iterate all lines to find our line numbers - // In multi-line mode, we never exit the loop until all lines are counted, so add one extra to the searches_remaining counter. - searches_remaining += is_multiline ? 1 : 0; - int line_count = 0; - //for (const ImWchar* s = text_begin; (s = (const ImWchar*)wcschr((const wchar_t*)s, (wchar_t)'\n')) != NULL; s++) // FIXME-OPT: Could use this when wchar_t are 16-bit - for (const ImWchar* s = text_begin; *s != 0; s++) - if (*s == '\n') - { - line_count++; - if (searches_result_line_no[0] == -1 && s >= searches_input_ptr[0]) { searches_result_line_no[0] = line_count; if (--searches_remaining <= 0) break; } - if (searches_result_line_no[1] == -1 && s >= searches_input_ptr[1]) { searches_result_line_no[1] = line_count; if (--searches_remaining <= 0) break; } - } - line_count++; - if (searches_result_line_no[0] == -1) - searches_result_line_no[0] = line_count; - if (searches_result_line_no[1] == -1) - searches_result_line_no[1] = line_count; - - // Calculate 2d position by finding the beginning of the line and measuring distance - cursor_offset.x = InputTextCalcTextSizeW(&g, ImStrbolW(searches_input_ptr[0], text_begin), searches_input_ptr[0]).x; - cursor_offset.y = searches_result_line_no[0] * g.FontSize; - if (searches_result_line_no[1] >= 0) - { - select_start_offset.x = InputTextCalcTextSizeW(&g, ImStrbolW(searches_input_ptr[1], text_begin), searches_input_ptr[1]).x; - select_start_offset.y = searches_result_line_no[1] * g.FontSize; + const ImWchar* selection_ptr = text_begin + ImMin(state->Stb.select_start, state->Stb.select_end); + ImVec2 selection_pos = FindCharPosition(text_begin, selection_ptr, text_end, word_wrap_width); + select_start_offset.x = selection_pos.x; + select_start_offset.y = selection_pos.y; } // Store text height (note that we haven't calculated text width at all, see GitHub issues #383, #1224) if (is_multiline) - text_size = ImVec2(inner_size.x, line_count * g.FontSize); + text_size = InputTextCalcTextSizeW(GImGui, text_begin, text_end, NULL, NULL, false, word_wrap_width); } // Scroll if (render_cursor && state->CursorFollow) { // Horizontal scroll in chunks of quarter width - if (!(flags & ImGuiInputTextFlags_NoHorizontalScroll)) + if (!(flags & ImGuiInputTextFlags_NoHorizontalScroll) && !has_word_wrap) { const float scroll_increment_x = inner_size.x * 0.25f; const float visible_width = inner_size.x - style.FramePadding.x; @@ -4962,7 +5305,7 @@ bool ImGui::InputTextEx(const char* label, const char* hint, char* buf, int buf_ { if (rect_pos.y > clip_rect.w + g.FontSize) break; - if (rect_pos.y < clip_rect.y) + if (!has_word_wrap && rect_pos.y < clip_rect.y) { //p = (const ImWchar*)wmemchr((const wchar_t*)p, '\n', text_selected_end - p); // FIXME-OPT: Could use this when wchar_t are 16-bit //p = p ? p + 1 : text_selected_end; @@ -4972,7 +5315,8 @@ bool ImGui::InputTextEx(const char* label, const char* hint, char* buf, int buf_ } else { - ImVec2 rect_size = InputTextCalcTextSizeW(&g, p, text_selected_end, &p, NULL, true); + float selection_word_wrap = has_word_wrap ? (word_wrap_width - ImMax(0.0f, rect_pos.x - draw_pos.x)) : 0.0f; + ImVec2 rect_size = InputTextCalcTextSizeW(&g, p, text_selected_end, &p, NULL, true, selection_word_wrap, false); if (rect_size.x <= 0.0f) rect_size.x = IM_FLOOR(g.Font->GetCharAdvance((ImWchar)' ') * 0.50f); // So we can see selected empty lines ImRect rect(rect_pos + ImVec2(0.0f, bg_offy_up - g.FontSize), rect_pos + ImVec2(rect_size.x, bg_offy_dn)); rect.ClipWith(clip_rect); @@ -4988,7 +5332,7 @@ bool ImGui::InputTextEx(const char* label, const char* hint, char* buf, int buf_ if (is_multiline || (buf_display_end - buf_display) < buf_display_max_length) { ImU32 col = GetColorU32(is_displaying_hint ? ImGuiCol_TextDisabled : ImGuiCol_Text); - draw_window->DrawList->AddText(g.Font, g.FontSize, draw_pos - draw_scroll, col, buf_display, buf_display_end, 0.0f, is_multiline ? NULL : &clip_rect); + draw_window->DrawList->AddTextNoHashHide(g.Font, g.FontSize, draw_pos - draw_scroll, col, buf_display, buf_display_end, word_wrap_width, is_multiline ? NULL : &clip_rect); } // Draw blinking cursor @@ -5024,7 +5368,7 @@ bool ImGui::InputTextEx(const char* label, const char* hint, char* buf, int buf_ if (is_multiline || (buf_display_end - buf_display) < buf_display_max_length) { ImU32 col = GetColorU32(is_displaying_hint ? ImGuiCol_TextDisabled : ImGuiCol_Text); - draw_window->DrawList->AddText(g.Font, g.FontSize, draw_pos, col, buf_display, buf_display_end, 0.0f, is_multiline ? NULL : &clip_rect); + draw_window->DrawList->AddTextNoHashHide(g.Font, g.FontSize, draw_pos, col, buf_display, buf_display_end, word_wrap_width, is_multiline ? NULL : &clip_rect); } } @@ -6495,7 +6839,17 @@ bool ImGui::Selectable(const char* label, bool selected, ImGuiSelectableFlags fl // Submit label or explicit size to ItemSize(), whereas ItemAdd() will submit a larger/spanning rectangle. ImGuiID id = window->GetID(label); - ImVec2 label_size = CalcTextSize(label, NULL, true); + ImVec2 label_size; + + if(flags & ImGuiSelectableFlags_NoHashTextHide) + { + label_size = CalcTextSize(label, NULL, false); + } + else + { + label_size = CalcTextSize(label, NULL, true); + } + ImVec2 size(size_arg.x != 0.0f ? size_arg.x : label_size.x, size_arg.y != 0.0f ? size_arg.y : label_size.y); ImVec2 pos = window->DC.CursorPos; pos.y += window->DC.CurrLineTextBaseOffset; @@ -6612,7 +6966,14 @@ bool ImGui::Selectable(const char* label, bool selected, ImGuiSelectableFlags fl else if (span_all_columns && g.CurrentTable) TablePopBackgroundChannel(); - RenderTextClipped(text_min, text_max, label, NULL, &label_size, style.SelectableTextAlign, &bb); + if(flags & ImGuiSelectableFlags_NoHashTextHide) + { + RenderTextClippedNoHashHide(text_min, text_max, label, NULL, &label_size, style.SelectableTextAlign, &bb); + } + else + { + RenderTextClipped(text_min, text_max, label, NULL, &label_size, style.SelectableTextAlign, &bb); + } // Automatically close popups if (pressed && (window->Flags & ImGuiWindowFlags_Popup) && !(flags & ImGuiSelectableFlags_DontClosePopups) && !(g.LastItemData.InFlags & ImGuiItemFlags_SelectableDontClosePopup)) @@ -8023,7 +8384,7 @@ ImGuiTabItem* ImGui::TabBarGetCurrentTab(ImGuiTabBar* tab_bar) const char* ImGui::TabBarGetTabName(ImGuiTabBar* tab_bar, ImGuiTabItem* tab) { if (tab->Window) - return tab->Window->Name; + return (tab->Window->DisplayedName ? tab->Window->DisplayedName : tab->Window->Name); if (tab->NameOffset == -1) return "N/A"; IM_ASSERT(tab->NameOffset < tab_bar->TabsNames.Buf.Size); @@ -8702,7 +9063,7 @@ ImVec2 ImGui::TabItemCalcSize(const char* label, bool has_close_button_or_unsave ImVec2 ImGui::TabItemCalcSize(ImGuiWindow* window) { - return TabItemCalcSize(window->Name, window->HasCloseButton || (window->Flags & ImGuiWindowFlags_UnsavedDocument)); + return TabItemCalcSize((window->DisplayedName == NULL ? window->Name : window->DisplayedName), window->HasCloseButton || (window->Flags & ImGuiWindowFlags_UnsavedDocument)); } void ImGui::TabItemBackground(ImDrawList* draw_list, const ImRect& bb, ImGuiTabItemFlags flags, ImU32 col) diff --git a/extern/imgui_patched/imstb_textedit.h b/extern/imgui_patched/imstb_textedit.h index 360395cee..d1d6b0d21 100644 --- a/extern/imgui_patched/imstb_textedit.h +++ b/extern/imgui_patched/imstb_textedit.h @@ -889,7 +889,7 @@ retry: // [DEAR IMGUI] // going down while being on the last line shouldn't bring us to that line end - if (STB_TEXTEDIT_GETCHAR(str, find.first_char + find.length - 1) != STB_TEXTEDIT_NEWLINE) + if (!str->HasWordWrap() && STB_TEXTEDIT_GETCHAR(str, find.first_char + find.length - 1) != STB_TEXTEDIT_NEWLINE) break; // now find character position down a row diff --git a/po/README.md b/po/README.md new file mode 100644 index 000000000..d269e96d6 --- /dev/null +++ b/po/README.md @@ -0,0 +1,116 @@ +# po + +these are language translation files for Furnace. + +if you want to help translating Furnace to your language, read below. + +# getting started + +Furnace uses GNU gettext for language support. +it was chosen over other solutions due to notable advantages such as ease of use. + +text strings in the source code are marked for translation with special delimiters. +afterwards, xgettext is used to extract these and generate a "template" file (furnace.pot) which contains all translatable strings. +some other tools are then used to generate new translation files (e.g. es.po for Spanish) or update them. +during build time, these translation files are converted into binary translation data which is then distributed in releases. + +Furnace ships a script to help with the string extraction and translation file updating process. + +# preparing + +read the following instructions before you start working with translation files. + +## preparing the environment + +while you may edit translation files regardless of the employed method, setting them up (adding new languages, updating translation files or compiling these) is best done on a Linux environment with the GNU gettext tools installed. + +if you use Windows, you may be able to perform setup through the Unix-like MSYS2 environment. see https://www.msys2.org/ for more information. + +if you cannot/aren't willing to go through the process of preparing the environment, you may contact me so I can perform setup on my side and provide you with ready-to-edit translation files. + +for the testing stage, Linux or Windows with MinGW (installed through the MSYS2 environment) is necessary. Visual Studio/MSVC is not supported yet. + +## adding a new language + +in order to add a new language, edit the setup script located in `scripts/update-po.sh`. +add a language code to the `EXPORT_LANGS` list (see `https://en.wikipedia.org/wiki/IETF_language_tag` for a list of common language codes). +then run the script in your environment: + +``` +cd path/to/Furnace/repo +./scripts/update-po.sh +``` + +if successful, a new file will be created in the `po` directory that you can edit using a text editor. + +be sure to edit CMakeLists.txt as well, to make sure the translation file is compiled. add the language code to `FURNACE_LANGUAGES`. + +## editing an existing translation + +just open the translation file in your text editor. + +# translating + +once you've opened the translation file, you'll see a bunch of strings that may be translated. + +"msgid" is the original string in English, whereas "msgstr" is the translation. fill this in with a translated version of the English string. + +the `#:` line at the top points to the source code file(s) where the string appears. you may use this if you need to understand which context is the string being used in. + +if a string is marked with "c-format", it means the string contains C format codes. these codes consist of a percent sign (`%`) and a type (but don't worry too much about it). +make sure to place these format codes in the translated string appropriately, as if they were objects or subjects in a sentence. + +sometimes you will see a string marked as "fuzzy" after running the setup script. if this appears, it means that it is a new string that looks like another. the translation is filled in automatically, but don't trust it as it's almost guaranteed to be wrong. + +a `\n` means a line break. + +# testing + +you may skip this step if you don't feel like building Furnace, or are unable to. + +compile Furnace (see the project's README.md file (the developer info section) for information), but in the CMake stage, be sure to pass the CMake flag `-DWITH_LOCALE=ON` before the two dots (`..`) to enable language support in Furnace and therefore compile translation files. + +if you did this correctly, you will see a directory called `locale` in the build directory, containing compiled translation files (with `.mo` extension). + +run Furnace from the build directory like so: + +``` +LANG=language-code ./furnace +``` + +replace `language-code` with the language code to use. + +you should see Furnace start up in the language you specified. if it doesn't, check out the logs. + +# submitting + +after doing some work, be sure to submit it so you see it in the next version. + +you can contact me via email or Discord (be sure to send the translation file), or alternatively send a pull request on GitHub. the latter is preferred if you're going to work frequently. + +if sending a pull request, be sure to target the `locale` branch until I merge it into master. + +that's all for now. thank you for helping translate Furnace, and good luck! + +- tildearrow + +# footnotes + +## note 1 + +three languages are "special": + +- Polish (`pl`) +- Portuguese (Brazil) (`pt_BR`) +- Russian (`ru`) + +LTVA and some other people have done translation work on a fork of Furnace to these three languages, but instead of using gettext, they have deployed a custom gettext-like solution. + +I will be porting these translations from the fork to upstream Furnace, but if you want to help, here are the translation files for these languages: `https://github.com/LTVA1/furnace/tree/master/src/locale` + +thanks LTVA and everyone else for pioneering language support in Furnace! + +## note 2 + +I also speak Spanish, which means I will be working on the Spanish translation. +however, you can work on it too in order to get it done faster. let me know though. diff --git a/po/de.po b/po/de.po new file mode 100644 index 000000000..9420b7ada --- /dev/null +++ b/po/de.po @@ -0,0 +1,16025 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: furnace 0.6.3\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/engine/sysDef.cpp:428 src/engine/sysDef.cpp:441 +msgid "20xx: Set channel mode (bit 0: square; bit 1: noise; bit 2: envelope)" +msgstr "" + +#: src/engine/sysDef.cpp:429 +msgid "21xx: Set noise frequency (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:430 src/engine/sysDef.cpp:443 +msgid "22xy: Set envelope mode (x: shape, y: enable for this channel)" +msgstr "" + +#: src/engine/sysDef.cpp:431 src/engine/sysDef.cpp:444 +msgid "23xx: Set envelope period low byte" +msgstr "" + +#: src/engine/sysDef.cpp:432 src/engine/sysDef.cpp:445 +msgid "24xx: Set envelope period high byte" +msgstr "" + +#: src/engine/sysDef.cpp:433 src/engine/sysDef.cpp:446 +#: src/engine/sysDef.cpp:1599 +msgid "25xx: Envelope slide up" +msgstr "" + +#: src/engine/sysDef.cpp:434 src/engine/sysDef.cpp:447 +#: src/engine/sysDef.cpp:1600 +msgid "26xx: Envelope slide down" +msgstr "" + +#: src/engine/sysDef.cpp:435 src/engine/sysDef.cpp:448 +#: src/engine/sysDef.cpp:1601 +msgid "29xy: Set auto-envelope (x: numerator; y: denominator)" +msgstr "" + +#: src/engine/sysDef.cpp:436 src/engine/sysDef.cpp:449 +msgid "2Exx: Write to I/O port A" +msgstr "" + +#: src/engine/sysDef.cpp:437 src/engine/sysDef.cpp:450 +msgid "2Fxx: Write to I/O port B" +msgstr "" + +#: src/engine/sysDef.cpp:442 +msgid "21xx: Set noise frequency (0 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:451 +msgid "12xx: Set duty cycle (0 to 8)" +msgstr "" + +#: src/engine/sysDef.cpp:453 +msgid "27xx: Set noise AND mask" +msgstr "" + +#: src/engine/sysDef.cpp:454 +msgid "28xx: Set noise OR mask" +msgstr "" + +#: src/engine/sysDef.cpp:455 +msgid "" +"2Cxy: Automatic noise frequency (x: mode (0: disable, 1: freq, 2: freq + OR " +"mask); y: offset)" +msgstr "" + +#: src/engine/sysDef.cpp:456 +msgid "2Dxx: NOT TO BE EMPLOYED BY THE COMPOSER" +msgstr "" + +#: src/engine/sysDef.cpp:460 +msgid "30xx: Toggle hard envelope reset on new notes" +msgstr "" + +#: src/engine/sysDef.cpp:465 +msgid "18xx: Toggle extended channel 3 mode" +msgstr "" + +#: src/engine/sysDef.cpp:470 src/engine/sysDef.cpp:766 +#: src/engine/sysDef.cpp:1025 src/engine/sysDef.cpp:1272 +#: src/engine/sysDef.cpp:1593 +msgid "17xx: Toggle PCM mode (LEGACY)" +msgstr "" + +#: src/engine/sysDef.cpp:471 src/engine/sysDef.cpp:1653 +#: src/engine/sysDef.cpp:1963 +msgid "DFxx: Set sample playback direction (0: normal; 1: reverse)" +msgstr "" + +#: src/engine/sysDef.cpp:476 +msgid "18xx: Toggle drums mode (1: enabled; 0: disabled)" +msgstr "" + +#: src/engine/sysDef.cpp:480 src/engine/sysDef.cpp:554 +#: src/engine/sysDef.cpp:575 +msgid "11xx: Set feedback (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:481 +msgid "12xx: Set level of operator 1 (0 highest, 7F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:482 +msgid "13xx: Set level of operator 2 (0 highest, 7F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:483 +msgid "14xx: Set level of operator 3 (0 highest, 7F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:484 +msgid "15xx: Set level of operator 4 (0 highest, 7F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:485 src/engine/sysDef.cpp:580 +#: src/engine/sysDef.cpp:635 +msgid "16xy: Set operator multiplier (x: operator from 1 to 4; y: multiplier)" +msgstr "" + +#: src/engine/sysDef.cpp:486 +msgid "19xx: Set attack of all operators (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:487 +msgid "1Axx: Set attack of operator 1 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:488 +msgid "1Bxx: Set attack of operator 2 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:489 +msgid "1Cxx: Set attack of operator 3 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:490 +msgid "1Dxx: Set attack of operator 4 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:491 src/engine/sysDef.cpp:588 +#: src/engine/sysDef.cpp:656 +msgid "50xy: Set AM (x: operator from 1 to 4 (0 for all ops); y: AM)" +msgstr "" + +#: src/engine/sysDef.cpp:492 src/engine/sysDef.cpp:589 +#: src/engine/sysDef.cpp:657 +msgid "" +"51xy: Set sustain level (x: operator from 1 to 4 (0 for all ops); y: sustain)" +msgstr "" + +#: src/engine/sysDef.cpp:493 src/engine/sysDef.cpp:590 +#: src/engine/sysDef.cpp:658 +msgid "52xy: Set release (x: operator from 1 to 4 (0 for all ops); y: release)" +msgstr "" + +#: src/engine/sysDef.cpp:494 +msgid "" +"53xy: Set detune (x: operator from 1 to 4 (0 for all ops); y: detune where 3 " +"is center)" +msgstr "" + +#: src/engine/sysDef.cpp:495 src/engine/sysDef.cpp:592 +#: src/engine/sysDef.cpp:660 +msgid "" +"54xy: Set envelope scale (x: operator from 1 to 4 (0 for all ops); y: scale " +"from 0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:496 +msgid "56xx: Set decay of all operators (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:497 +msgid "57xx: Set decay of operator 1 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:498 +msgid "58xx: Set decay of operator 2 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:499 +msgid "59xx: Set decay of operator 3 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:500 +msgid "5Axx: Set decay of operator 4 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:501 +msgid "5Bxx: Set decay 2 of all operators (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:502 +msgid "5Cxx: Set decay 2 of operator 1 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:503 +msgid "5Dxx: Set decay 2 of operator 2 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:504 +msgid "5Exx: Set decay 2 of operator 3 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:505 +msgid "5Fxx: Set decay 2 of operator 4 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:510 +msgid "10xx: Set noise frequency (xx: value; 0 disables noise)" +msgstr "" + +#: src/engine/sysDef.cpp:511 +msgid "17xx: Set LFO speed" +msgstr "" + +#: src/engine/sysDef.cpp:512 +msgid "18xx: Set LFO waveform (0 saw, 1 square, 2 triangle, 3 noise)" +msgstr "" + +#: src/engine/sysDef.cpp:513 +msgid "1Exx: Set AM depth (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:514 +msgid "1Fxx: Set PM depth (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:515 +msgid "" +"55xy: Set detune 2 (x: operator from 1 to 4 (0 for all ops); y: detune from " +"0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:520 +msgid "24xx: Set LFO 2 speed" +msgstr "" + +#: src/engine/sysDef.cpp:521 +msgid "25xx: Set LFO 2 waveform (0 saw, 1 square, 2 triangle, 3 noise)" +msgstr "" + +#: src/engine/sysDef.cpp:522 +msgid "26xx: Set AM 2 depth (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:523 +msgid "27xx: Set PM 2 depth (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:524 +msgid "" +"28xy: Set reverb (x: operator from 1 to 4 (0 for all ops); y: reverb from 0 " +"to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:525 src/engine/sysDef.cpp:650 +msgid "" +"2Axy: Set waveform (x: operator from 1 to 4 (0 for all ops); y: waveform " +"from 0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:526 +msgid "" +"2Bxy: Set envelope generator shift (x: operator from 1 to 4 (0 for all ops); " +"y: shift from 0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:527 +msgid "" +"2Cxy: Set fine multiplier (x: operator from 1 to 4 (0 for all ops); y: fine)" +msgstr "" + +#: src/engine/sysDef.cpp:530 +msgid "" +"3xyy: Set fixed frequency of operator 1 (x: octave from 0 to 7; y: frequency)" +msgstr "" + +#: src/engine/sysDef.cpp:531 +msgid "" +"3xyy: Set fixed frequency of operator 2 (x: octave from 8 to F; y: frequency)" +msgstr "" + +#: src/engine/sysDef.cpp:532 +msgid "" +"4xyy: Set fixed frequency of operator 3 (x: octave from 0 to 7; y: frequency)" +msgstr "" + +#: src/engine/sysDef.cpp:533 +msgid "" +"4xyy: Set fixed frequency of operator 4 (x: octave from 8 to F; y: frequency)" +msgstr "" + +#: src/engine/sysDef.cpp:540 +msgid "10xy: Setup LFO (x: enable; y: speed)" +msgstr "" + +#: src/engine/sysDef.cpp:541 +msgid "" +"55xy: Set SSG envelope (x: operator from 1 to 4 (0 for all ops); y: 0-7 on, " +"8 off)" +msgstr "" + +#: src/engine/sysDef.cpp:549 +msgid "1Fxx: Set ADPCM-A global volume (0 to 3F)" +msgstr "" + +#: src/engine/sysDef.cpp:553 +msgid "10xx: Set patch (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:555 src/engine/sysDef.cpp:576 +#: src/engine/sysDef.cpp:631 +msgid "12xx: Set level of operator 1 (0 highest, 3F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:556 src/engine/sysDef.cpp:577 +#: src/engine/sysDef.cpp:632 +msgid "13xx: Set level of operator 2 (0 highest, 3F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:557 +msgid "16xy: Set operator multiplier (x: operator from 1 to 2; y: multiplier)" +msgstr "" + +#: src/engine/sysDef.cpp:558 src/engine/sysDef.cpp:582 +#: src/engine/sysDef.cpp:637 +msgid "19xx: Set attack of all operators (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:559 src/engine/sysDef.cpp:583 +#: src/engine/sysDef.cpp:638 +msgid "1Axx: Set attack of operator 1 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:560 src/engine/sysDef.cpp:584 +#: src/engine/sysDef.cpp:639 +msgid "1Bxx: Set attack of operator 2 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:561 +msgid "50xy: Set AM (x: operator from 1 to 2 (0 for all ops); y: AM)" +msgstr "" + +#: src/engine/sysDef.cpp:562 +msgid "" +"51xy: Set sustain level (x: operator from 1 to 2 (0 for all ops); y: sustain)" +msgstr "" + +#: src/engine/sysDef.cpp:563 +msgid "52xy: Set release (x: operator from 1 to 2 (0 for all ops); y: release)" +msgstr "" + +#: src/engine/sysDef.cpp:564 +msgid "53xy: Set vibrato (x: operator from 1 to 2 (0 for all ops); y: enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:565 +msgid "" +"54xy: Set envelope scale (x: operator from 1 to 2 (0 for all ops); y: scale " +"from 0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:566 +msgid "" +"55xy: Set envelope sustain (x: operator from 1 to 2 (0 for all ops); y: " +"enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:567 src/engine/sysDef.cpp:594 +#: src/engine/sysDef.cpp:662 +msgid "56xx: Set decay of all operators (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:568 src/engine/sysDef.cpp:595 +#: src/engine/sysDef.cpp:663 +msgid "57xx: Set decay of operator 1 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:569 src/engine/sysDef.cpp:596 +#: src/engine/sysDef.cpp:664 +msgid "58xx: Set decay of operator 2 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:570 +msgid "" +"5Bxy: Set whether key will scale envelope (x: operator from 1 to 2 (0 for " +"all ops); y: enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:574 +msgid "10xx: Set global AM depth (0: 1dB, 1: 4.8dB)" +msgstr "" + +#: src/engine/sysDef.cpp:578 src/engine/sysDef.cpp:633 +msgid "14xx: Set level of operator 3 (0 highest, 3F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:579 src/engine/sysDef.cpp:634 +msgid "15xx: Set level of operator 4 (0 highest, 3F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:581 +msgid "17xx: Set global vibrato depth (0: normal, 1: double)" +msgstr "" + +#: src/engine/sysDef.cpp:585 src/engine/sysDef.cpp:640 +msgid "1Cxx: Set attack of operator 3 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:586 src/engine/sysDef.cpp:641 +msgid "1Dxx: Set attack of operator 4 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:587 +msgid "" +"2Axy: Set waveform (x: operator from 1 to 4 (0 for all ops); y: waveform " +"from 0 to 3 in OPL2 and 0 to 7 in OPL3)" +msgstr "" + +#: src/engine/sysDef.cpp:591 src/engine/sysDef.cpp:659 +msgid "53xy: Set vibrato (x: operator from 1 to 4 (0 for all ops); y: enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:593 src/engine/sysDef.cpp:661 +msgid "" +"55xy: Set envelope sustain (x: operator from 1 to 4 (0 for all ops); y: " +"enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:597 src/engine/sysDef.cpp:665 +msgid "59xx: Set decay of operator 3 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:598 src/engine/sysDef.cpp:666 +msgid "5Axx: Set decay of operator 4 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:599 src/engine/sysDef.cpp:667 +msgid "" +"5Bxy: Set whether key will scale envelope (x: operator from 1 to 4 (0 for " +"all ops); y: enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:603 src/engine/sysDef.cpp:680 +msgid "" +"10xx: Set waveform (bit 0: triangle; bit 1: saw; bit 2: pulse; bit 3: noise)" +msgstr "" + +#: src/engine/sysDef.cpp:604 +msgid "11xx: Set coarse cutoff (not recommended; use 4xxx instead)" +msgstr "" + +#: src/engine/sysDef.cpp:605 +msgid "12xx: Set coarse pulse width (not recommended; use 3xxx instead)" +msgstr "" + +#: src/engine/sysDef.cpp:606 +msgid "13xx: Set resonance (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:607 +msgid "" +"14xx: Set filter mode (bit 0: low pass; bit 1: band pass; bit 2: high pass)" +msgstr "" + +#: src/engine/sysDef.cpp:608 +msgid "15xx: Set envelope reset time" +msgstr "" + +#: src/engine/sysDef.cpp:609 +msgid "1Axx: Disable envelope reset for this channel (1 disables; 0 enables)" +msgstr "" + +#: src/engine/sysDef.cpp:610 +msgid "1Bxy: Reset cutoff (x: on new note; y: now)" +msgstr "" + +#: src/engine/sysDef.cpp:611 +msgid "1Cxy: Reset pulse width (x: on new note; y: now)" +msgstr "" + +#: src/engine/sysDef.cpp:612 +msgid "1Exy: Change other parameters (LEGACY)" +msgstr "" + +#: src/engine/sysDef.cpp:613 +msgid "20xy: Set attack/decay (x: attack; y: decay)" +msgstr "" + +#: src/engine/sysDef.cpp:614 +msgid "21xy: Set sustain/release (x: sustain; y: release)" +msgstr "" + +#: src/engine/sysDef.cpp:616 src/engine/sysDef.cpp:688 +msgid "3xxx: Set pulse width (0 to FFF)" +msgstr "" + +#: src/engine/sysDef.cpp:617 +msgid "4xxx: Set cutoff (0 to 7FF)" +msgstr "" + +#: src/engine/sysDef.cpp:622 src/engine/sysDef.cpp:745 +#: src/engine/sysDef.cpp:762 src/engine/sysDef.cpp:1000 +#: src/engine/sysDef.cpp:1050 src/engine/sysDef.cpp:1268 +#: src/engine/sysDef.cpp:1320 src/engine/sysDef.cpp:1590 +#: src/engine/sysDef.cpp:1788 src/engine/sysDef.cpp:1792 +#: src/engine/sysDef.cpp:1893 src/engine/sysDef.cpp:2063 +#: src/engine/sysDef.cpp:2077 +msgid "10xx: Set waveform" +msgstr "" + +#: src/engine/sysDef.cpp:626 +msgid "20xx: Set PCM frequency" +msgstr "" + +#: src/engine/sysDef.cpp:630 +msgid "" +"10xy: Set AM depth (x: operator from 1 to 4 (0 for all ops); y: depth (0: " +"1dB, 1: 4.8dB))" +msgstr "" + +#: src/engine/sysDef.cpp:636 +msgid "" +"17xy: Set vibrato depth (x: operator from 1 to 4 (0 for all ops); y: depth " +"(0: normal, 1: double))" +msgstr "" + +#: src/engine/sysDef.cpp:642 +msgid "20xy: Set panning of operator 1 (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:643 +msgid "21xy: Set panning of operator 2 (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:644 +msgid "22xy: Set panning of operator 3 (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:645 +msgid "23xy: Set panning of operator 4 (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:646 +msgid "" +"24xy: Set output level register (x: operator from 1 to 4 (0 for all ops); y: " +"level from 0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:647 +msgid "" +"25xy: Set modulation input level (x: operator from 1 to 4 (0 for all ops); " +"y: level from 0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:648 +msgid "" +"26xy: Set envelope delay (x: operator from 1 to 4 (0 for all ops); y: delay " +"from 0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:649 +msgid "27xx: Set noise mode for operator 4 (x: mode from 0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:651 +msgid "" +"2Fxy: Set fixed frequency block (x: operator from 1 to 4; y: octave from 0 " +"to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:652 +msgid "40xx: Set detune of operator 1 (80: center)" +msgstr "" + +#: src/engine/sysDef.cpp:653 +msgid "41xx: Set detune of operator 2 (80: center)" +msgstr "" + +#: src/engine/sysDef.cpp:654 +msgid "42xx: Set detune of operator 3 (80: center)" +msgstr "" + +#: src/engine/sysDef.cpp:655 +msgid "43xx: Set detune of operator 4 (80: center)" +msgstr "" + +#: src/engine/sysDef.cpp:670 +msgid "" +"3xyy: Set fixed frequency F-num of operator 1 (x: high 2 bits from 0 to 3; " +"y: low 8 bits of F-num)" +msgstr "" + +#: src/engine/sysDef.cpp:671 +msgid "" +"3xyy: Set fixed frequency F-num of operator 2 (x: high 2 bits from 4 to 7; " +"y: low 8 bits of F-num)" +msgstr "" + +#: src/engine/sysDef.cpp:672 +msgid "" +"3xyy: Set fixed frequency F-num of operator 3 (x: high 2 bits from 8 to B; " +"y: low 8 bits of F-num)" +msgstr "" + +#: src/engine/sysDef.cpp:673 +msgid "" +"3xyy: Set fixed frequency F-num of operator 4 (x: high 2 bits from C to F; " +"y: low 8 bits of F-num)" +msgstr "" + +#: src/engine/sysDef.cpp:681 +msgid "11xx: Set resonance (0 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:682 +msgid "" +"12xx: Set filter mode (bit 0: low pass; bit 1: band pass; bit 2: high pass)" +msgstr "" + +#: src/engine/sysDef.cpp:683 +msgid "13xx: Disable envelope reset for this channel (1 disables; 0 enables)" +msgstr "" + +#: src/engine/sysDef.cpp:684 +msgid "14xy: Reset cutoff (x: on new note; y: now)" +msgstr "" + +#: src/engine/sysDef.cpp:685 +msgid "15xy: Reset pulse width (x: on new note; y: now)" +msgstr "" + +#: src/engine/sysDef.cpp:686 +msgid "16xy: Change other parameters" +msgstr "" + +#: src/engine/sysDef.cpp:689 src/engine/sysDef.cpp:1733 +msgid "4xxx: Set cutoff (0 to FFF)" +msgstr "" + +#: src/engine/sysDef.cpp:697 +msgid "Yamaha YMU759 (MA-2)" +msgstr "" + +#: src/engine/sysDef.cpp:698 +msgid "" +"a chip which found its way inside mobile phones in the 2000's.\n" +"as proprietary as it is, it passed away after losing to MP3 in the mobile " +"hardware battle." +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:807 src/engine/sysDef.cpp:819 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:915 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1237 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1314 src/engine/sysDef.cpp:1356 +#: src/engine/sysDef.cpp:1396 src/engine/sysDef.cpp:1499 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1572 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1608 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1799 src/engine/sysDef.cpp:1810 +#: src/engine/sysDef.cpp:1821 src/engine/sysDef.cpp:1832 +#: src/engine/sysDef.cpp:1900 src/engine/sysDef.cpp:1910 +#: src/engine/sysDef.cpp:1920 src/engine/sysDef.cpp:1944 +#: src/engine/sysDef.cpp:1957 src/engine/sysDef.cpp:1970 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2037 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2122 +#: src/engine/sysDef.cpp:2138 src/engine/sysDef.cpp:2150 +msgid "Channel 1" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:807 src/engine/sysDef.cpp:819 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:915 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1237 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1314 src/engine/sysDef.cpp:1356 +#: src/engine/sysDef.cpp:1396 src/engine/sysDef.cpp:1499 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1572 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1608 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1799 src/engine/sysDef.cpp:1810 +#: src/engine/sysDef.cpp:1821 src/engine/sysDef.cpp:1832 +#: src/engine/sysDef.cpp:1900 src/engine/sysDef.cpp:1910 +#: src/engine/sysDef.cpp:1920 src/engine/sysDef.cpp:1944 +#: src/engine/sysDef.cpp:1957 src/engine/sysDef.cpp:1970 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2037 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2122 +#: src/engine/sysDef.cpp:2138 src/engine/sysDef.cpp:2150 +msgid "Channel 2" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:807 src/engine/sysDef.cpp:819 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1237 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1314 +#: src/engine/sysDef.cpp:1356 src/engine/sysDef.cpp:1396 +#: src/engine/sysDef.cpp:1499 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1572 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1799 src/engine/sysDef.cpp:1810 +#: src/engine/sysDef.cpp:1821 src/engine/sysDef.cpp:1832 +#: src/engine/sysDef.cpp:1910 src/engine/sysDef.cpp:1944 +#: src/engine/sysDef.cpp:1957 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2037 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +#: src/engine/sysDef.cpp:2122 src/engine/sysDef.cpp:2138 +#: src/engine/sysDef.cpp:2150 +msgid "Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1237 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1314 +#: src/engine/sysDef.cpp:1356 src/engine/sysDef.cpp:1396 +#: src/engine/sysDef.cpp:1499 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1572 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1910 +#: src/engine/sysDef.cpp:1944 src/engine/sysDef.cpp:1957 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +#: src/engine/sysDef.cpp:2122 src/engine/sysDef.cpp:2150 +msgid "Channel 4" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1314 +#: src/engine/sysDef.cpp:1356 src/engine/sysDef.cpp:1396 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1572 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1705 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 5" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1356 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 6" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 7" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 8" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 9" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 10" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 11" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 12" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 13" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 14" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 15" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 16" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:700 +#: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1767 src/engine/sysDef.cpp:1888 +#: src/engine/sysDef.cpp:1944 src/engine/sysDef.cpp:1945 +#: src/gui/settings.cpp:4094 +msgid "PCM" +msgstr "" + +#: src/engine/sysDef.cpp:706 +msgid "Sega Genesis/Mega Drive" +msgstr "" + +#: src/engine/sysDef.cpp:712 +msgid "Sega Genesis Extended Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:718 src/gui/sysConf.cpp:158 +msgid "TI SN76489" +msgstr "" + +#: src/engine/sysDef.cpp:719 +msgid "" +"a square/noise sound chip found on the Sega Master System, ColecoVision, " +"Tandy, TI's own 99/4A and a few other places." +msgstr "" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 +msgid "Square 1" +msgstr "" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 +msgid "Square 2" +msgstr "" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 +msgid "Square 3" +msgstr "" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:739 +#: src/engine/sysDef.cpp:773 src/engine/sysDef.cpp:955 +#: src/engine/sysDef.cpp:1314 src/engine/sysDef.cpp:1874 +#: src/engine/sysDef.cpp:1920 src/engine/sysDef.cpp:2037 +#: src/engine/sysDef.cpp:2100 src/gui/settings.cpp:4093 +#: src/gui/insEdit.cpp:6978 src/gui/insEdit.cpp:7129 src/gui/insEdit.cpp:7223 +#: src/gui/insEdit.cpp:7315 +msgid "Noise" +msgstr "" + +#: src/engine/sysDef.cpp:726 +msgid "20xy: Set noise mode (x: preset freq/ch3 freq; y: thin pulse/noise)" +msgstr "" + +#: src/engine/sysDef.cpp:731 +msgid "Sega Master System + FM Expansion" +msgstr "" + +#: src/engine/sysDef.cpp:737 src/gui/settings.cpp:4025 +msgid "Game Boy" +msgstr "" + +#: src/engine/sysDef.cpp:738 +msgid "the most popular portable game console of the era." +msgstr "" + +#: src/engine/sysDef.cpp:739 src/engine/sysDef.cpp:773 +#: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:2100 +msgid "Pulse 1" +msgstr "" + +#: src/engine/sysDef.cpp:739 src/engine/sysDef.cpp:773 +#: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:2100 +msgid "Pulse 2" +msgstr "" + +#: src/engine/sysDef.cpp:739 src/gui/settings.cpp:3930 +#: src/gui/guiConst.cpp:1395 src/gui/insEdit.cpp:6652 +msgid "Wavetable" +msgstr "" + +#: src/engine/sysDef.cpp:746 +msgid "11xx: Set noise length (0: long; 1: short)" +msgstr "" + +#: src/engine/sysDef.cpp:747 +msgid "12xx: Set duty cycle (0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:748 +msgid "13xy: Setup sweep (x: time; y: shift)" +msgstr "" + +#: src/engine/sysDef.cpp:749 +msgid "14xx: Set sweep direction (0: up; 1: down)" +msgstr "" + +#: src/engine/sysDef.cpp:754 +msgid "PC Engine/TurboGrafx-16" +msgstr "" + +#: src/engine/sysDef.cpp:755 +msgid "an '80s game console with a wavetable sound chip, popular in Japan." +msgstr "" + +#: src/engine/sysDef.cpp:763 src/engine/sysDef.cpp:1001 +#: src/engine/sysDef.cpp:1793 +msgid "11xx: Toggle noise mode" +msgstr "" + +#: src/engine/sysDef.cpp:764 +msgid "12xx: Setup LFO (0: disabled; 1: 1x depth; 2: 16x depth; 3: 256x depth)" +msgstr "" + +#: src/engine/sysDef.cpp:765 +msgid "13xx: Set LFO speed" +msgstr "" + +#: src/engine/sysDef.cpp:771 +msgid "NES (Ricoh 2A03)" +msgstr "" + +#: src/engine/sysDef.cpp:772 +msgid "" +"also known as Famicom in Japan, it's the most well-known game console of the " +"'80s." +msgstr "" + +#: src/engine/sysDef.cpp:773 src/gui/waveEdit.cpp:31 src/gui/waveEdit.cpp:217 +#: src/gui/insEdit.cpp:200 src/gui/insEdit.cpp:324 src/gui/insEdit.cpp:658 +msgid "Triangle" +msgstr "" + +#: src/engine/sysDef.cpp:773 src/engine/sysDef.cpp:2100 +#: src/gui/insEdit.cpp:2629 +msgid "DPCM" +msgstr "" + +#: src/engine/sysDef.cpp:779 src/engine/sysDef.cpp:2106 +msgid "11xx: Write to delta modulation counter (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:780 src/engine/sysDef.cpp:1068 +msgid "12xx: Set duty cycle/noise mode (pulse: 0 to 3; noise: 0 or 1)" +msgstr "" + +#: src/engine/sysDef.cpp:781 src/engine/sysDef.cpp:2108 +msgid "13xy: Sweep up (x: time; y: shift)" +msgstr "" + +#: src/engine/sysDef.cpp:782 src/engine/sysDef.cpp:2109 +msgid "14xy: Sweep down (x: time; y: shift)" +msgstr "" + +#: src/engine/sysDef.cpp:783 src/engine/sysDef.cpp:2110 +msgid "" +"15xx: Set envelope mode (0: envelope, 1: length, 2: looping, 3: constant)" +msgstr "" + +#: src/engine/sysDef.cpp:784 src/engine/sysDef.cpp:2111 +msgid "16xx: Set length counter (refer to manual for a list of values)" +msgstr "" + +#: src/engine/sysDef.cpp:785 src/engine/sysDef.cpp:2112 +msgid "17xx: Set frame counter mode (0: 4-step, 1: 5-step)" +msgstr "" + +#: src/engine/sysDef.cpp:786 src/engine/sysDef.cpp:2113 +msgid "18xx: Select PCM/DPCM mode (0: PCM; 1: DPCM)" +msgstr "" + +#: src/engine/sysDef.cpp:787 src/engine/sysDef.cpp:2114 +msgid "19xx: Set triangle linear counter (0 to 7F; 80 and higher halt)" +msgstr "" + +#: src/engine/sysDef.cpp:788 src/engine/sysDef.cpp:2115 +msgid "20xx: Set DPCM frequency (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:793 +msgid "NES + Konami VRC7" +msgstr "" + +#: src/engine/sysDef.cpp:799 +msgid "Famicom Disk System" +msgstr "" + +#: src/engine/sysDef.cpp:805 +msgid "Commodore 64 (SID 6581)" +msgstr "" + +#: src/engine/sysDef.cpp:806 +msgid "" +"this computer is powered by the SID chip, which had synthesizer features " +"like a filter and ADSR." +msgstr "" + +#: src/engine/sysDef.cpp:817 +msgid "Commodore 64 (SID 8580)" +msgstr "" + +#: src/engine/sysDef.cpp:818 +msgid "" +"this computer is powered by the SID chip, which had synthesizer features " +"like a filter and ADSR.\n" +"this is the newer revision of the chip." +msgstr "" + +#: src/engine/sysDef.cpp:829 +msgid "DefleCade" +msgstr "" + +#: src/engine/sysDef.cpp:835 +msgid "Neo Geo CD" +msgstr "" + +#: src/engine/sysDef.cpp:836 +msgid "" +"like Neo Geo, but lacking the ADPCM-B channel since they couldn't connect " +"the pins." +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1173 +#: src/engine/sysDef.cpp:1185 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1443 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +#: src/engine/sysDef.cpp:2006 +msgid "FM 1" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:891 +#: src/engine/sysDef.cpp:903 src/engine/sysDef.cpp:1032 +#: src/engine/sysDef.cpp:1097 src/engine/sysDef.cpp:1109 +#: src/engine/sysDef.cpp:1122 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1546 +#: src/engine/sysDef.cpp:1559 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:1693 src/engine/sysDef.cpp:1849 +#: src/engine/sysDef.cpp:1861 src/engine/sysDef.cpp:2006 +msgid "FM 2" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1173 +#: src/engine/sysDef.cpp:1185 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1443 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:2006 +msgid "FM 3" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1546 +#: src/engine/sysDef.cpp:1559 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:1693 src/engine/sysDef.cpp:1849 +#: src/engine/sysDef.cpp:1861 src/engine/sysDef.cpp:2006 +msgid "FM 4" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:862 src/engine/sysDef.cpp:927 +#: src/engine/sysDef.cpp:943 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "PSG 1" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:862 src/engine/sysDef.cpp:927 +#: src/engine/sysDef.cpp:943 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "PSG 2" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:862 src/engine/sysDef.cpp:927 +#: src/engine/sysDef.cpp:943 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "PSG 3" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 1" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 2" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 3" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 4" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 5" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 6" +msgstr "" + +#: src/engine/sysDef.cpp:847 +msgid "Neo Geo CD Extended Channel 2" +msgstr "" + +#: src/engine/sysDef.cpp:848 +msgid "" +"like Neo Geo, but lacking the ADPCM-B channel since they couldn't connect " +"the pins.\n" +"this one is in Extended Channel mode, which turns the second FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP1" +msgstr "" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP2" +msgstr "" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP3" +msgstr "" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP4" +msgstr "" + +#: src/engine/sysDef.cpp:860 src/gui/sysConf.cpp:913 +msgid "AY-3-8910" +msgstr "" + +#: src/engine/sysDef.cpp:861 +msgid "" +"this chip is everywhere! ZX Spectrum, MSX, Amstrad CPC, Intellivision, " +"Vectrex...\n" +"the discovery of envelope bass helped it beat the SN76489 with ease." +msgstr "" + +#: src/engine/sysDef.cpp:872 +msgid "Amiga" +msgstr "" + +#: src/engine/sysDef.cpp:873 +msgid "" +"a computer from the '80s with full sampling capabilities, giving it a sound " +"ahead of its time." +msgstr "" + +#: src/engine/sysDef.cpp:881 +msgid "10xx: Toggle filter (0 disables; 1 enables)" +msgstr "" + +#: src/engine/sysDef.cpp:882 +msgid "11xx: Toggle AM with next channel" +msgstr "" + +#: src/engine/sysDef.cpp:883 +msgid "12xx: Toggle period modulation with next channel" +msgstr "" + +#: src/engine/sysDef.cpp:884 +msgid "13xx: Set waveform" +msgstr "" + +#: src/engine/sysDef.cpp:889 +msgid "Yamaha YM2151 (OPM)" +msgstr "" + +#: src/engine/sysDef.cpp:890 +msgid "" +"this was Yamaha's first integrated FM chip.\n" +"it was used in several synthesizers, computers and arcade boards." +msgstr "" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1279 src/engine/sysDef.cpp:1332 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1370 +#: src/engine/sysDef.cpp:1383 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +#: src/engine/sysDef.cpp:2006 +msgid "FM 5" +msgstr "" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:2006 +msgid "FM 6" +msgstr "" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:1032 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1279 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:2006 +msgid "FM 7" +msgstr "" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:1032 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:2006 +msgid "FM 8" +msgstr "" + +#: src/engine/sysDef.cpp:901 +msgid "Yamaha YM2612 (OPN2)" +msgstr "" + +#: src/engine/sysDef.cpp:902 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer)." +msgstr "" + +#: src/engine/sysDef.cpp:913 +msgid "Atari TIA" +msgstr "" + +#: src/engine/sysDef.cpp:914 +msgid "" +"it's a challenge to make music on this chip which barely has musical " +"capabilities..." +msgstr "" + +#: src/engine/sysDef.cpp:925 +msgid "Philips SAA1099" +msgstr "" + +#: src/engine/sysDef.cpp:926 +msgid "" +"supposedly an upgrade from the AY-3-8910, this was present on the Creative " +"Music System (Game Blaster) and SAM Coupé." +msgstr "" + +#: src/engine/sysDef.cpp:927 +msgid "PSG 4" +msgstr "" + +#: src/engine/sysDef.cpp:927 +msgid "PSG 5" +msgstr "" + +#: src/engine/sysDef.cpp:927 +msgid "PSG 6" +msgstr "" + +#: src/engine/sysDef.cpp:934 +msgid "10xy: Set channel mode (x: noise; y: tone)" +msgstr "" + +#: src/engine/sysDef.cpp:935 +msgid "11xx: Set noise frequency" +msgstr "" + +#: src/engine/sysDef.cpp:936 +msgid "12xx: Setup envelope (refer to docs for more information)" +msgstr "" + +#: src/engine/sysDef.cpp:941 +msgid "Microchip AY8930" +msgstr "" + +#: src/engine/sysDef.cpp:942 +msgid "" +"an improved version of the AY-3-8910 with a bigger frequency range, duty " +"cycles, configurable noise and per-channel envelopes!" +msgstr "" + +#: src/engine/sysDef.cpp:953 +msgid "Commodore VIC-20" +msgstr "" + +#: src/engine/sysDef.cpp:954 +msgid "" +"Commodore's successor to the PET.\n" +"its square wave channels are more than just square..." +msgstr "" + +#: src/engine/sysDef.cpp:955 src/gui/settings.cpp:136 src/gui/settings.cpp:206 +#: src/gui/settings.cpp:3970 +msgid "Low" +msgstr "" + +#: src/engine/sysDef.cpp:955 +msgid "Mid" +msgstr "" + +#: src/engine/sysDef.cpp:955 src/gui/settings.cpp:135 src/gui/settings.cpp:208 +#: src/gui/settings.cpp:3971 +msgid "High" +msgstr "" + +#: src/engine/sysDef.cpp:964 +msgid "Commodore PET" +msgstr "" + +#: src/engine/sysDef.cpp:965 +msgid "" +"one channel of 1-bit wavetable which is better (and worse) than the PC " +"Speaker." +msgstr "" + +#: src/engine/sysDef.cpp:966 src/engine/sysDef.cpp:1262 +#: src/engine/sysDef.cpp:2100 src/gui/editControls.cpp:433 +#: src/gui/settings.cpp:4017 src/gui/settings.cpp:4095 +msgid "Wave" +msgstr "" + +#: src/engine/sysDef.cpp:975 src/gui/settings.cpp:4052 +msgid "SNES" +msgstr "" + +#: src/engine/sysDef.cpp:976 +msgid "FM? nah... samples! Nintendo's answer to Sega." +msgstr "" + +#: src/engine/sysDef.cpp:983 +msgid "18xx: Enable echo buffer" +msgstr "" + +#: src/engine/sysDef.cpp:984 +msgid "19xx: Set echo delay (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:985 +msgid "1Axx: Set left echo volume" +msgstr "" + +#: src/engine/sysDef.cpp:986 +msgid "1Bxx: Set right echo volume" +msgstr "" + +#: src/engine/sysDef.cpp:987 +msgid "1Cxx: Set echo feedback" +msgstr "" + +#: src/engine/sysDef.cpp:988 +msgid "1Exx: Set dry output volume (left)" +msgstr "" + +#: src/engine/sysDef.cpp:989 +msgid "1Fxx: Set dry output volume (right)" +msgstr "" + +#: src/engine/sysDef.cpp:990 +msgid "30xx: Set echo filter coefficient 0" +msgstr "" + +#: src/engine/sysDef.cpp:991 +msgid "31xx: Set echo filter coefficient 1" +msgstr "" + +#: src/engine/sysDef.cpp:992 +msgid "32xx: Set echo filter coefficient 2" +msgstr "" + +#: src/engine/sysDef.cpp:993 +msgid "33xx: Set echo filter coefficient 3" +msgstr "" + +#: src/engine/sysDef.cpp:994 +msgid "34xx: Set echo filter coefficient 4" +msgstr "" + +#: src/engine/sysDef.cpp:995 +msgid "35xx: Set echo filter coefficient 5" +msgstr "" + +#: src/engine/sysDef.cpp:996 +msgid "36xx: Set echo filter coefficient 6" +msgstr "" + +#: src/engine/sysDef.cpp:997 +msgid "37xx: Set echo filter coefficient 7" +msgstr "" + +#: src/engine/sysDef.cpp:1002 +msgid "12xx: Toggle echo on this channel" +msgstr "" + +#: src/engine/sysDef.cpp:1003 +msgid "13xx: Toggle pitch modulation" +msgstr "" + +#: src/engine/sysDef.cpp:1004 +msgid "14xy: Toggle invert (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:1005 +msgid "" +"15xx: Set envelope mode (0: ADSR, 1: gain/direct, 2: dec, 3: exp, 4: inc, 5: " +"bent)" +msgstr "" + +#: src/engine/sysDef.cpp:1006 +msgid "16xx: Set gain (00 to 7F if direct; 00 to 1F otherwise)" +msgstr "" + +#: src/engine/sysDef.cpp:1007 +msgid "1Dxx: Set noise frequency (00 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:1008 +msgid "20xx: Set attack (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:1009 +msgid "21xx: Set decay (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1010 +msgid "22xx: Set sustain (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1011 +msgid "23xx: Set release (00 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:1016 +msgid "Konami VRC6" +msgstr "" + +#: src/engine/sysDef.cpp:1017 +msgid "an expansion chip for the Famicom, featuring a quirky sawtooth channel." +msgstr "" + +#: src/engine/sysDef.cpp:1018 +msgid "VRC6 1" +msgstr "" + +#: src/engine/sysDef.cpp:1018 +msgid "VRC6 2" +msgstr "" + +#: src/engine/sysDef.cpp:1018 +msgid "VRC6 Saw" +msgstr "" + +#: src/engine/sysDef.cpp:1024 src/engine/sysDef.cpp:2092 +msgid "12xx: Set duty cycle (pulse: 0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1030 +msgid "Yamaha YM2413 (OPLL)" +msgstr "" + +#: src/engine/sysDef.cpp:1031 +msgid "" +"cost-reduced version of the OPL with 16 patches and only one of them is user-" +"configurable." +msgstr "" + +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1173 +#: src/engine/sysDef.cpp:1185 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:2006 +msgid "FM 9" +msgstr "" + +#: src/engine/sysDef.cpp:1042 +msgid "Famicom Disk System (chip)" +msgstr "" + +#: src/engine/sysDef.cpp:1043 +msgid "a disk drive for the Famicom which also contains one wavetable channel." +msgstr "" + +#: src/engine/sysDef.cpp:1044 src/gui/settings.cpp:4039 +msgid "FDS" +msgstr "" + +#: src/engine/sysDef.cpp:1051 +msgid "11xx: Set modulation depth" +msgstr "" + +#: src/engine/sysDef.cpp:1052 +msgid "12xy: Set modulation speed high byte (x: enable; y: value)" +msgstr "" + +#: src/engine/sysDef.cpp:1053 +msgid "13xx: Set modulation speed low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1054 +msgid "14xx: Set modulator position" +msgstr "" + +#: src/engine/sysDef.cpp:1055 +msgid "15xx: Set modulator table to waveform" +msgstr "" + +#: src/engine/sysDef.cpp:1060 +msgid "MMC5" +msgstr "" + +#: src/engine/sysDef.cpp:1061 +msgid "" +"an expansion chip for the Famicom, featuring a little-known PCM channel." +msgstr "" + +#: src/engine/sysDef.cpp:1073 src/gui/settings.cpp:4041 +msgid "Namco 163" +msgstr "" + +#: src/engine/sysDef.cpp:1074 +msgid "an expansion chip for the Famicom, with full wavetable." +msgstr "" + +#: src/engine/sysDef.cpp:1081 +msgid "18xx: Change channel limits (0 to 7, x + 1)" +msgstr "" + +#: src/engine/sysDef.cpp:1082 +msgid "20xx: Load a waveform into memory" +msgstr "" + +#: src/engine/sysDef.cpp:1083 +msgid "21xx: Set position for wave load" +msgstr "" + +#: src/engine/sysDef.cpp:1086 +msgid "10xx: Select waveform" +msgstr "" + +#: src/engine/sysDef.cpp:1087 +msgid "11xx: Set waveform position in RAM" +msgstr "" + +#: src/engine/sysDef.cpp:1088 +msgid "12xx: Set waveform length in RAM (04 to FC in steps of 4)" +msgstr "" + +#: src/engine/sysDef.cpp:1089 +msgid "15xx: Set waveform load position" +msgstr "" + +#: src/engine/sysDef.cpp:1090 +msgid "16xx: Set waveform load length (04 to FC in steps of 4)" +msgstr "" + +#: src/engine/sysDef.cpp:1095 +msgid "Yamaha YM2203 (OPN)" +msgstr "" + +#: src/engine/sysDef.cpp:1096 +msgid "" +"cost-reduced version of the OPM with a different register layout and no " +"stereo...\n" +"...but it has a built-in AY-3-8910! (actually an YM2149)" +msgstr "" + +#: src/engine/sysDef.cpp:1107 +msgid "Yamaha YM2203 (OPN) Extended Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:1108 +msgid "" +"cost-reduced version of the OPM with a different register layout and no " +"stereo...\n" +"...but it has a built-in AY-3-8910! (actually an YM2149)\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies" +msgstr "" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP1" +msgstr "" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP2" +msgstr "" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP3" +msgstr "" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP4" +msgstr "" + +#: src/engine/sysDef.cpp:1120 +msgid "Yamaha YM2203 (OPN) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1121 +msgid "" +"cost-reduced version of the OPM with a different register layout and no " +"stereo...\n" +"...but it has a built-in AY-3-8910! (actually an YM2149)\n" +"CSM blah blah" +msgstr "" + +#: src/engine/sysDef.cpp:1122 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1383 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1559 src/engine/sysDef.cpp:1861 +msgid "CSM Timer" +msgstr "" + +#: src/engine/sysDef.cpp:1133 +msgid "Yamaha YM2608 (OPNA)" +msgstr "" + +#: src/engine/sysDef.cpp:1134 +msgid "" +"OPN but twice the FM channels, stereo makes a come-back and has rhythm and " +"ADPCM channels." +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1481 +#: src/gui/insEdit.cpp:3302 src/gui/insEdit.cpp:3624 +msgid "Kick" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:210 src/gui/insEdit.cpp:218 +msgid "Snare" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:212 src/gui/insEdit.cpp:220 +#: src/gui/insEdit.cpp:1909 src/gui/insEdit.cpp:2014 +msgid "Top" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:213 src/gui/insEdit.cpp:219 +msgid "HiHat" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:211 +msgid "Tom" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 +msgid "Rim" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:1693 +msgid "ADPCM" +msgstr "" + +#: src/engine/sysDef.cpp:1145 +msgid "Yamaha YM2608 (OPNA) Extended Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:1146 +msgid "" +"OPN but twice the FM channels, stereo makes a come-back and has rhythm and " +"ADPCM channels.\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies" +msgstr "" + +#: src/engine/sysDef.cpp:1158 +msgid "Yamaha YM2608 (OPNA) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1159 +msgid "" +"OPN but twice the FM channels, stereo makes a come-back and has rhythm and " +"ADPCM channels.\n" +"CSM blah blah" +msgstr "" + +#: src/engine/sysDef.cpp:1171 +msgid "Yamaha YM3526 (OPL)" +msgstr "" + +#: src/engine/sysDef.cpp:1172 +msgid "" +"OPN, but what if you only had two operators, no stereo, no detune and a " +"lower ADSR parameter range?" +msgstr "" + +#: src/engine/sysDef.cpp:1183 +msgid "Yamaha YM3812 (OPL2)" +msgstr "" + +#: src/engine/sysDef.cpp:1184 +msgid "OPL, but what if you had more waveforms to choose than the normal sine?" +msgstr "" + +#: src/engine/sysDef.cpp:1195 +msgid "Yamaha YMF262 (OPL3)" +msgstr "" + +#: src/engine/sysDef.cpp:1196 +msgid "" +"OPL2, but what if you had twice the channels, 4-op mode, stereo and even " +"more waveforms?" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 1" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 3" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 5" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 7" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 9" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 10" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 11" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 12" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 13" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 14" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 15" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:2006 +msgid "FM 16" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:2006 +msgid "FM 17" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:2006 +msgid "FM 18" +msgstr "" + +#: src/engine/sysDef.cpp:1208 src/gui/settings.cpp:4051 +msgid "MultiPCM" +msgstr "" + +#: src/engine/sysDef.cpp:1209 +msgid "" +"how many channels of PCM do you want?\n" +"MultiPCM: yes" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 17" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 18" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 19" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 20" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 21" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 22" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 23" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 24" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 25" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 26" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 27" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 28" +msgstr "" + +#: src/engine/sysDef.cpp:1217 +msgid "PC Speaker" +msgstr "" + +#: src/engine/sysDef.cpp:1218 +msgid "good luck! you get one square and no volume control." +msgstr "" + +#: src/engine/sysDef.cpp:1219 src/engine/sysDef.cpp:1228 +#: src/gui/guiConst.cpp:1394 src/gui/waveEdit.cpp:199 src/gui/insEdit.cpp:183 +#: src/gui/insEdit.cpp:194 src/gui/insEdit.cpp:326 src/gui/insEdit.cpp:656 +msgid "Square" +msgstr "" + +#: src/engine/sysDef.cpp:1226 +msgid "Pong" +msgstr "" + +#: src/engine/sysDef.cpp:1227 +msgid "please don't use this chip. it was added as a joke." +msgstr "" + +#: src/engine/sysDef.cpp:1235 src/gui/settings.cpp:4044 +msgid "POKEY" +msgstr "" + +#: src/engine/sysDef.cpp:1236 +msgid "" +"TIA, but better and more flexible.\n" +"used in the Atari 8-bit family of computers (400/800/XL/XE)." +msgstr "" + +#: src/engine/sysDef.cpp:1243 src/engine/sysDef.cpp:1714 +msgid "10xx: Set waveform (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1244 +msgid "11xx: Set AUDCTL" +msgstr "" + +#: src/engine/sysDef.cpp:1245 +msgid "12xx: Toggle two-tone mode" +msgstr "" + +#: src/engine/sysDef.cpp:1250 +msgid "Ricoh RF5C68" +msgstr "" + +#: src/engine/sysDef.cpp:1251 +msgid "" +"this is like SNES' sound chip but without interpolation and the rest of nice " +"bits." +msgstr "" + +#: src/engine/sysDef.cpp:1260 src/gui/settings.cpp:4046 +msgid "WonderSwan" +msgstr "" + +#: src/engine/sysDef.cpp:1261 +msgid "developed by the makers of the Game Boy and the Virtual Boy..." +msgstr "" + +#: src/engine/sysDef.cpp:1262 +msgid "Wave/PCM" +msgstr "" + +#: src/engine/sysDef.cpp:1262 +msgid "Wave/Sweep" +msgstr "" + +#: src/engine/sysDef.cpp:1262 +msgid "Wave/Noise" +msgstr "" + +#: src/engine/sysDef.cpp:1269 +msgid "11xx: Setup noise mode (0: disabled; 1-8: enabled/tap)" +msgstr "" + +#: src/engine/sysDef.cpp:1270 +msgid "12xx: Setup sweep period (0: disabled; 1-20: enabled/period)" +msgstr "" + +#: src/engine/sysDef.cpp:1271 +msgid "13xx: Set sweep amount" +msgstr "" + +#: src/engine/sysDef.cpp:1277 +msgid "Yamaha YM2414 (OPZ)" +msgstr "" + +#: src/engine/sysDef.cpp:1278 +msgid "" +"like OPM, but with more waveforms, fixed frequency mode and totally... " +"undocumented.\n" +"used in the Yamaha TX81Z and some other synthesizers." +msgstr "" + +#: src/engine/sysDef.cpp:1285 +msgid "2Fxx: Toggle hard envelope reset on new notes" +msgstr "" + +#: src/engine/sysDef.cpp:1291 src/gui/settings.cpp:4069 +msgid "Pokémon Mini" +msgstr "" + +#: src/engine/sysDef.cpp:1292 +msgid "this one is like PC Speaker but has duty cycles." +msgstr "" + +#: src/engine/sysDef.cpp:1293 src/gui/settings.cpp:4092 src/gui/waveEdit.cpp:33 +msgid "Pulse" +msgstr "" + +#: src/engine/sysDef.cpp:1300 +msgid "SegaPCM" +msgstr "" + +#: src/engine/sysDef.cpp:1301 +msgid "" +"used in some Sega arcade boards (like OutRun), and usually paired with a " +"YM2151." +msgstr "" + +#: src/engine/sysDef.cpp:1312 src/gui/settings.cpp:4040 +msgid "Virtual Boy" +msgstr "" + +#: src/engine/sysDef.cpp:1313 +msgid "" +"a console which failed to sell well due to its headache-inducing features." +msgstr "" + +#: src/engine/sysDef.cpp:1321 +msgid "11xx: Set noise length (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1322 +msgid "" +"12xy: Setup envelope (x: enabled/loop (1: enable, 3: enable+loop); y: speed/" +"direction (0-7: down, 8-F: up))" +msgstr "" + +#: src/engine/sysDef.cpp:1323 +msgid "13xy: Setup sweep (x: speed; y: shift; channel 5 only)" +msgstr "" + +#: src/engine/sysDef.cpp:1324 +msgid "" +"14xy: Setup modulation (x: enabled/loop (1: enable, 3: enable+loop); y: " +"speed; channel 5 only)" +msgstr "" + +#: src/engine/sysDef.cpp:1325 +msgid "15xx: Set modulation waveform (x: wavetable; channel 5 only)" +msgstr "" + +#: src/engine/sysDef.cpp:1330 +msgid "Konami VRC7" +msgstr "" + +#: src/engine/sysDef.cpp:1331 +msgid "" +"like OPLL, but even more cost reductions applied. three FM channels went " +"missing, and drums mode did as well..." +msgstr "" + +#: src/engine/sysDef.cpp:1342 +msgid "Yamaha YM2610B (OPNB2)" +msgstr "" + +#: src/engine/sysDef.cpp:1343 +msgid "" +"so Taito asked Yamaha if they could get the two missing FM channels back, " +"and Yamaha gladly provided them with this chip." +msgstr "" + +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/gui/settings.cpp:4061 +msgid "ADPCM-B" +msgstr "" + +#: src/engine/sysDef.cpp:1354 +msgid "ZX Spectrum Beeper" +msgstr "" + +#: src/engine/sysDef.cpp:1355 +msgid "" +"the ZX Spectrum only had a basic beeper capable of...\n" +"...a bunch of thin pulses and tons of other interesting stuff!\n" +"Furnace provides a thin pulse system." +msgstr "" + +#: src/engine/sysDef.cpp:1362 src/engine/sysDef.cpp:1950 +msgid "12xx: Set pulse width" +msgstr "" + +#: src/engine/sysDef.cpp:1363 +msgid "17xx: Trigger overlay drum" +msgstr "" + +#: src/engine/sysDef.cpp:1368 +msgid "Yamaha YM2612 (OPN2) Extended Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:1369 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:1381 +msgid "Yamaha YM2612 (OPN2) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1382 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this one includes CSM mode control for special effects on Channel 3." +msgstr "" + +#: src/engine/sysDef.cpp:1394 src/gui/settings.cpp:4042 +msgid "Konami SCC" +msgstr "" + +#: src/engine/sysDef.cpp:1395 +msgid "" +"a wavetable chip made by Konami for use with the MSX.\n" +"the last channel shares its wavetable with the previous one though." +msgstr "" + +#: src/engine/sysDef.cpp:1405 +msgid "Yamaha YM3526 (OPL) with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1406 +msgid "the OPL chip but with drums mode enabled." +msgstr "" + +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1693 +msgid "Kick/FM 7" +msgstr "" + +#: src/engine/sysDef.cpp:1417 +msgid "Yamaha YM3812 (OPL2) with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1418 +msgid "the OPL2 chip but with drums mode enabled." +msgstr "" + +#: src/engine/sysDef.cpp:1429 +msgid "Yamaha YMF262 (OPL3) with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1430 +msgid "the OPL3 chip but with drums mode enabled." +msgstr "" + +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1631 +msgid "Kick/FM 16" +msgstr "" + +#: src/engine/sysDef.cpp:1441 +msgid "Yamaha YM2610 (OPNB)" +msgstr "" + +#: src/engine/sysDef.cpp:1442 +msgid "" +"this chip was used in SNK's Neo Geo arcade board and video game console.\n" +"it's like OPNA but the rhythm channels are ADPCM channels and two FM " +"channels went missing." +msgstr "" + +#: src/engine/sysDef.cpp:1453 +msgid "Yamaha YM2610 (OPNB) Extended Channel 2" +msgstr "" + +#: src/engine/sysDef.cpp:1454 +msgid "" +"this chip was used in SNK's Neo Geo arcade board and video game console.\n" +"it's like OPNA but the rhythm channels are ADPCM channels and two FM " +"channels went missing.\n" +"this one is in Extended Channel mode, which turns the second FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:1466 +msgid "Yamaha YM2610 (OPNB) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1467 +msgid "" +"this chip was used in SNK's Neo Geo arcade board and video game console.\n" +"it's like OPNA but the rhythm channels are ADPCM channels and two FM " +"channels went missing.\n" +"this one includes CSM mode control for special effects on Channel 2." +msgstr "" + +#: src/engine/sysDef.cpp:1479 +msgid "Yamaha YM2413 (OPLL) with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1480 +msgid "the OPLL chips but with drums mode turned on." +msgstr "" + +#: src/engine/sysDef.cpp:1491 +msgid "3xxx: Load LFSR (0 to FFF)" +msgstr "" + +#: src/engine/sysDef.cpp:1497 +msgid "Atari Lynx" +msgstr "" + +#: src/engine/sysDef.cpp:1498 +msgid "" +"a portable console made by Atari. it has all of Atari's trademark waveforms." +msgstr "" + +#: src/engine/sysDef.cpp:1509 +msgid "10xx: Set echo feedback level (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1510 +msgid "11xx: Set channel echo level (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1511 +msgid "12xx: Toggle QSound algorithm (0: disabled; 1: enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:1513 +msgid "3xxx: Set echo delay buffer length (000 to AA5)" +msgstr "" + +#: src/engine/sysDef.cpp:1519 +msgid "Capcom QSound" +msgstr "" + +#: src/engine/sysDef.cpp:1520 +msgid "" +"used in some of Capcom's arcade boards. surround-like sampled sound with " +"echo." +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +#: src/engine/sysDef.cpp:2056 +msgid "PCM 1" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +#: src/engine/sysDef.cpp:2056 +msgid "PCM 2" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 3" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 4" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 5" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 6" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 7" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 8" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 9" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 10" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 11" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 12" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 13" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 14" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 15" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 16" +msgstr "" + +#: src/engine/sysDef.cpp:1521 +msgid "ADPCM 1" +msgstr "" + +#: src/engine/sysDef.cpp:1521 +msgid "ADPCM 2" +msgstr "" + +#: src/engine/sysDef.cpp:1521 +msgid "ADPCM 3" +msgstr "" + +#: src/engine/sysDef.cpp:1530 src/gui/settings.cpp:4048 +msgid "VERA" +msgstr "" + +#: src/engine/sysDef.cpp:1531 +msgid "the chip used in a computer design created by The 8-Bit Guy." +msgstr "" + +#: src/engine/sysDef.cpp:1538 +msgid "20xx: Set waveform" +msgstr "" + +#: src/engine/sysDef.cpp:1539 +msgid "22xx: Set duty cycle (0 to 3F)" +msgstr "" + +#: src/engine/sysDef.cpp:1544 +msgid "Yamaha YM2610B (OPNB2) Extended Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:1545 +msgid "" +"so Taito asked Yamaha if they could get the two missing FM channels back, " +"and Yamaha gladly provided them with this chip.\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:1557 +msgid "Yamaha YM2610B (OPNB2) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1558 +msgid "" +"so Taito asked Yamaha if they could get the two missing FM channels back, " +"and Yamaha gladly provided them with this chip.\n" +"CSM blah blah" +msgstr "" + +#: src/engine/sysDef.cpp:1570 +msgid "SegaPCM (compatible 5-channel mode)" +msgstr "" + +#: src/engine/sysDef.cpp:1571 +msgid "" +"this is the same thing as SegaPCM, but only exposes 5 of the channels for " +"compatibility with DefleMask." +msgstr "" + +#: src/engine/sysDef.cpp:1582 +msgid "Seta/Allumer X1-010" +msgstr "" + +#: src/engine/sysDef.cpp:1583 +msgid "" +"a sound chip used in several Seta/Allumer-manufactured arcade boards with " +"too many channels of wavetable sound, which also are capable of sampled " +"sound." +msgstr "" + +#: src/engine/sysDef.cpp:1591 +msgid "11xx: Set envelope shape" +msgstr "" + +#: src/engine/sysDef.cpp:1592 +msgid "12xx: Set sample bank slot (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1596 +msgid "20xx: Set PCM frequency (1 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1597 +msgid "" +"22xx: Set envelope mode (bit 0: enable; bit 1: one-shot; bit 2: split shape " +"to L/R; bit 3/5: H.invert right/left; bit 4/6: V.invert right/left)" +msgstr "" + +#: src/engine/sysDef.cpp:1598 +msgid "23xx: Set envelope period" +msgstr "" + +#: src/engine/sysDef.cpp:1606 +msgid "Konami Bubble System WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1607 +msgid "" +"this is the wavetable part of the Bubble System, which also had two " +"AY-3-8910s." +msgstr "" + +#: src/engine/sysDef.cpp:1619 +msgid "Yamaha YMF278B (OPL4)" +msgstr "" + +#: src/engine/sysDef.cpp:1620 +msgid "like OPL3, but this time it also has a 24-channel version of MultiPCM." +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 17" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 18" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 19" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 20" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 21" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 22" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 23" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 24" +msgstr "" + +#: src/engine/sysDef.cpp:1629 +msgid "Yamaha YMF278B (OPL4) with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1630 +msgid "the OPL4 but with drums mode turned on." +msgstr "" + +#: src/engine/sysDef.cpp:1638 +msgid "11xx: Set filter mode (00 to 03)" +msgstr "" + +#: src/engine/sysDef.cpp:1639 +msgid "14xx: Set filter coefficient K1 low byte (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1640 +msgid "15xx: Set filter coefficient K1 high byte (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1641 +msgid "16xx: Set filter coefficient K2 low byte (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1642 +msgid "17xx: Set filter coefficient K2 high byte (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1643 +msgid "18xx: Set filter coefficient K1 slide up (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1644 +msgid "19xx: Set filter coefficient K1 slide down (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1645 +msgid "1Axx: Set filter coefficient K2 slide up (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1646 +msgid "1Bxx: Set filter coefficient K2 slide down (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1647 +msgid "22xx: Set envelope left volume ramp (signed) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1648 +msgid "23xx: Set envelope right volume ramp (signed) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1649 +msgid "24xx: Set envelope filter coefficient k1 ramp (signed) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1650 +msgid "" +"25xx: Set envelope filter coefficient k1 ramp (signed, slower) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1651 +msgid "26xx: Set envelope filter coefficient k2 ramp (signed) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1652 +msgid "" +"27xx: Set envelope filter coefficient k2 ramp (signed, slower) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1656 +msgid "120x: Set pause (bit 0)" +msgstr "" + +#: src/engine/sysDef.cpp:1658 +msgid "2xxx: Set envelope count (000 to 1FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1659 +msgid "3xxx: Set filter coefficient K1 (000 to FFF)" +msgstr "" + +#: src/engine/sysDef.cpp:1660 +msgid "4xxx: Set filter coefficient K2 (000 to FFF)" +msgstr "" + +#: src/engine/sysDef.cpp:1667 +msgid "Ensoniq ES5506" +msgstr "" + +#: src/engine/sysDef.cpp:1668 +msgid "" +"a sample chip made by Ensoniq, which is the basis for the GF1 chip found in " +"Gravis' Ultrasound cards." +msgstr "" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 29" +msgstr "" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 30" +msgstr "" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 31" +msgstr "" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 32" +msgstr "" + +#: src/engine/sysDef.cpp:1679 +msgid "Yamaha Y8950" +msgstr "" + +#: src/engine/sysDef.cpp:1680 +msgid "like OPL but with an ADPCM channel." +msgstr "" + +#: src/engine/sysDef.cpp:1691 +msgid "Yamaha Y8950 with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1692 +msgid "the Y8950 chip, in drums mode." +msgstr "" + +#: src/engine/sysDef.cpp:1703 +msgid "Konami SCC+" +msgstr "" + +#: src/engine/sysDef.cpp:1704 +msgid "" +"this is a variant of Konami's SCC chip with the last channel's wavetable " +"being independent." +msgstr "" + +#: src/engine/sysDef.cpp:1715 +msgid "12xx: Set pulse width (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:1716 +msgid "13xx: Set resonance (0 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1717 +msgid "" +"14xx: Set filter mode (bit 0: ring mod; bit 1: low pass; bit 2: high pass; " +"bit 3: band pass)" +msgstr "" + +#: src/engine/sysDef.cpp:1718 +msgid "15xx: Set frequency sweep period low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1719 +msgid "16xx: Set frequency sweep period high byte" +msgstr "" + +#: src/engine/sysDef.cpp:1720 +msgid "17xx: Set volume sweep period low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1721 +msgid "18xx: Set volume sweep period high byte" +msgstr "" + +#: src/engine/sysDef.cpp:1722 +msgid "19xx: Set cutoff sweep period low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1723 +msgid "1Axx: Set cutoff sweep period high byte" +msgstr "" + +#: src/engine/sysDef.cpp:1724 +msgid "1Bxx: Set frequency sweep boundary" +msgstr "" + +#: src/engine/sysDef.cpp:1725 +msgid "1Cxx: Set volume sweep boundary" +msgstr "" + +#: src/engine/sysDef.cpp:1726 +msgid "1Dxx: Set cutoff sweep boundary" +msgstr "" + +#: src/engine/sysDef.cpp:1727 +msgid "1Exx: Set phase reset period low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1728 +msgid "1Fxx: Set phase reset period high byte" +msgstr "" + +#: src/engine/sysDef.cpp:1729 +msgid "20xx: Toggle frequency sweep (bit 0-6: speed; bit 7: direction is up)" +msgstr "" + +#: src/engine/sysDef.cpp:1730 +msgid "" +"21xx: Toggle volume sweep (bit 0-4: speed; bit 5: direction is up; bit 6: " +"loop; bit 7: alternate)" +msgstr "" + +#: src/engine/sysDef.cpp:1731 +msgid "22xx: Toggle cutoff sweep (bit 0-6: speed; bit 7: direction is up)" +msgstr "" + +#: src/engine/sysDef.cpp:1739 +msgid "tildearrow Sound Unit" +msgstr "" + +#: src/engine/sysDef.cpp:1740 +msgid "" +"tildearrow's fantasy sound chip. put SID, AY and VERA in a blender, and you " +"get this!" +msgstr "" + +#: src/engine/sysDef.cpp:1751 +msgid "OKI MSM6295" +msgstr "" + +#: src/engine/sysDef.cpp:1752 +msgid "an ADPCM sound chip manufactured by OKI and used in many arcade boards." +msgstr "" + +#: src/engine/sysDef.cpp:1759 +msgid "20xx: Set chip output rate (0: clock/132; 1: clock/165)" +msgstr "" + +#: src/engine/sysDef.cpp:1764 +msgid "OKI MSM6258" +msgstr "" + +#: src/engine/sysDef.cpp:1765 +msgid "an ADPCM sound chip manufactured by OKI and used in the Sharp X68000." +msgstr "" + +#: src/engine/sysDef.cpp:1766 src/engine/sysDef.cpp:1887 +#: src/gui/editControls.cpp:437 src/gui/settings.cpp:4223 +#: src/gui/guiConst.cpp:1397 src/gui/insEdit.cpp:2628 src/gui/insEdit.cpp:2666 +msgid "Sample" +msgstr "" + +#: src/engine/sysDef.cpp:1772 +msgid "20xx: Set frequency divider (0-2)" +msgstr "" + +#: src/engine/sysDef.cpp:1773 +msgid "21xx: Select clock rate (0: full; 1: half)" +msgstr "" + +#: src/engine/sysDef.cpp:1778 +msgid "Yamaha YMZ280B (PCMD8)" +msgstr "" + +#: src/engine/sysDef.cpp:1779 +msgid "" +"used in some arcade boards. Can play back either 4-bit ADPCM, 8-bit PCM or " +"16-bit PCM." +msgstr "" + +#: src/engine/sysDef.cpp:1797 src/gui/settings.cpp:4054 +msgid "Namco WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1798 +msgid "" +"a wavetable sound chip used in Pac-Man, among other early Namco arcade games." +msgstr "" + +#: src/engine/sysDef.cpp:1808 +msgid "Namco C15 WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1809 +msgid "" +"successor of the original Namco WSG chip, used in later Namco arcade games." +msgstr "" + +#: src/engine/sysDef.cpp:1819 +msgid "Namco C30 WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1820 +msgid "like Namco C15 but with stereo sound." +msgstr "" + +#: src/engine/sysDef.cpp:1830 +msgid "OKI MSM5232" +msgstr "" + +#: src/engine/sysDef.cpp:1831 +msgid "" +"a square wave additive synthesis chip made by OKI. used in some arcade " +"machines and instruments." +msgstr "" + +#: src/engine/sysDef.cpp:1839 +msgid "10xy: Set group control (x: sustain; y: part toggle bitmask)" +msgstr "" + +#: src/engine/sysDef.cpp:1840 src/engine/sysDef.cpp:1998 +msgid "11xx: Set noise mode" +msgstr "" + +#: src/engine/sysDef.cpp:1841 +msgid "12xx: Set group attack (0 to 5)" +msgstr "" + +#: src/engine/sysDef.cpp:1842 +msgid "13xx: Set group decay (0 to 11)" +msgstr "" + +#: src/engine/sysDef.cpp:1847 +msgid "Yamaha YM2612 (OPN2) with DualPCM" +msgstr "" + +#: src/engine/sysDef.cpp:1848 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this system uses software mixing to provide two sample channels." +msgstr "" + +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +msgid "FM 6/PCM 1" +msgstr "" + +#: src/engine/sysDef.cpp:1859 +msgid "Yamaha YM2612 (OPN2) Extended Channel 3 with DualPCM and CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1860 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this system uses software mixing to provide two sample channels.\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:1872 src/gui/settings.cpp:4024 +msgid "T6W28" +msgstr "" + +#: src/engine/sysDef.cpp:1873 +msgid "" +"an SN76489 derivative used in Neo Geo Pocket, has independent stereo volume " +"and noise channel frequency." +msgstr "" + +#: src/engine/sysDef.cpp:1880 +msgid "20xx: Set noise length (0: short, 1: long)" +msgstr "" + +#: src/engine/sysDef.cpp:1885 +msgid "Generic PCM DAC" +msgstr "" + +#: src/engine/sysDef.cpp:1886 +msgid "as generic sample playback as it gets." +msgstr "" + +#: src/engine/sysDef.cpp:1898 +msgid "Konami K007232" +msgstr "" + +#: src/engine/sysDef.cpp:1899 +msgid "this PCM chip was widely used at Konami arcade boards in 1986-1990." +msgstr "" + +#: src/engine/sysDef.cpp:1908 +msgid "Irem GA20" +msgstr "" + +#: src/engine/sysDef.cpp:1909 +msgid "" +"yet another PCM chip from Irem. like Amiga, but less pitch resolution and no " +"sample loop." +msgstr "" + +#: src/engine/sysDef.cpp:1918 +msgid "Sharp SM8521" +msgstr "" + +#: src/engine/sysDef.cpp:1919 +msgid "a SoC with wavetable sound hardware." +msgstr "" + +#: src/engine/sysDef.cpp:1929 +msgid "Casio PV-1000" +msgstr "" + +#: src/engine/sysDef.cpp:1930 +msgid "" +"a game console with 3 channels of square wave. it's what happens after " +"fusing TIA and VIC together." +msgstr "" + +#: src/engine/sysDef.cpp:1937 +msgid "10xx: Set ring modulation (0: disable, 1: enable)" +msgstr "" + +#: src/engine/sysDef.cpp:1942 +msgid "ZX Spectrum Beeper (QuadTone Engine)" +msgstr "" + +#: src/engine/sysDef.cpp:1943 +msgid "" +"another ZX Spectrum beeper system with full PWM pulses and 3-level volume " +"per channel. it also has a pitchable overlay sample channel." +msgstr "" + +#: src/engine/sysDef.cpp:1955 +msgid "Konami K053260" +msgstr "" + +#: src/engine/sysDef.cpp:1956 +msgid "this PCM chip was widely used at Konami arcade boards in 1990-1992." +msgstr "" + +#: src/engine/sysDef.cpp:1968 +msgid "MOS Technology TED" +msgstr "" + +#: src/engine/sysDef.cpp:1969 +msgid "" +"two square waves (one may be turned into noise). used in the Commodore " +"Plus/4, 16 and 116." +msgstr "" + +#: src/engine/sysDef.cpp:1978 +msgid "Namco C140" +msgstr "" + +#: src/engine/sysDef.cpp:1979 +msgid "Namco's first PCM chip from 1987. it's pretty good for being so." +msgstr "" + +#: src/engine/sysDef.cpp:1989 +msgid "Namco C219" +msgstr "" + +#: src/engine/sysDef.cpp:1990 +msgid "" +"Namco's PCM chip used in their NA-1/2 hardware.\n" +"very similar to C140, but has noise generator." +msgstr "" + +#: src/engine/sysDef.cpp:1999 +msgid "12xy: Set invert mode (x: surround; y: invert)" +msgstr "" + +#: src/engine/sysDef.cpp:2004 +msgid "ESS ES1xxx series (ESFM)" +msgstr "" + +#: src/engine/sysDef.cpp:2005 +msgid "" +"a unique FM synth featured in PC sound cards.\n" +"based on the OPL3 design, but with lots of its features extended." +msgstr "" + +#: src/engine/sysDef.cpp:2006 +msgid "FM 11" +msgstr "" + +#: src/engine/sysDef.cpp:2012 +msgid "2Exx: Toggle hard envelope reset on new notes" +msgstr "" + +#: src/engine/sysDef.cpp:2018 +msgid "PowerNoise" +msgstr "" + +#: src/engine/sysDef.cpp:2019 +msgid "" +"a fantasy sound chip designed by jvsTSX and The Beesh-Spweesh!\n" +"used in the Hexheld fantasy console." +msgstr "" + +#: src/engine/sysDef.cpp:2020 +msgid "Noise 1" +msgstr "" + +#: src/engine/sysDef.cpp:2020 +msgid "Noise 2" +msgstr "" + +#: src/engine/sysDef.cpp:2020 +msgid "Noise 3" +msgstr "" + +#: src/engine/sysDef.cpp:2020 +msgid "Slope" +msgstr "" + +#: src/engine/sysDef.cpp:2026 +msgid "" +"20xx: Load low byte of noise channel LFSR (00 to FF) or slope channel " +"accumulator (00 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:2027 +msgid "21xx: Load high byte of noise channel LFSR (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:2028 +msgid "22xx: Write to I/O port A" +msgstr "" + +#: src/engine/sysDef.cpp:2029 +msgid "23xx: Write to I/O port B" +msgstr "" + +#: src/engine/sysDef.cpp:2035 src/gui/settings.cpp:4079 +msgid "Dave" +msgstr "" + +#: src/engine/sysDef.cpp:2036 +msgid "" +"this chip was featured in the Enterprise 128 computer. it is similar to " +"POKEY, but with stereo output." +msgstr "" + +#: src/engine/sysDef.cpp:2037 +msgid "DAC Left" +msgstr "" + +#: src/engine/sysDef.cpp:2037 +msgid "DAC Right" +msgstr "" + +#: src/engine/sysDef.cpp:2043 +msgid "10xx: Set waveform (0 to 4; 0 to 3 on noise)" +msgstr "" + +#: src/engine/sysDef.cpp:2044 +msgid "11xx: Set noise frequency source (0: fixed; 1-3: channels 1 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:2045 +msgid "12xx: Toggle high-pass with next channel" +msgstr "" + +#: src/engine/sysDef.cpp:2046 +msgid "13xx: Toggle ring modulation with channel+2" +msgstr "" + +#: src/engine/sysDef.cpp:2047 +msgid "14xx: Toggle swap counters (noise only)" +msgstr "" + +#: src/engine/sysDef.cpp:2048 +msgid "15xx: Toggle low pass (noise only)" +msgstr "" + +#: src/engine/sysDef.cpp:2049 +msgid "16xx: Set clock divider (0: /2; 1: /3)" +msgstr "" + +#: src/engine/sysDef.cpp:2054 +msgid "Game Boy Advance DMA Sound" +msgstr "" + +#: src/engine/sysDef.cpp:2055 +msgid "" +"additional PCM FIFO channels in Game Boy Advance driven directly by its DMA " +"hardware." +msgstr "" + +#: src/engine/sysDef.cpp:2068 +msgid "Game Boy Advance MinMod" +msgstr "" + +#: src/engine/sysDef.cpp:2069 +msgid "" +"additional PCM FIFO channels in Game Boy Advance driven by software mixing " +"to provide up to sixteen sample channels" +msgstr "" + +#: src/engine/sysDef.cpp:2078 +msgid "11xy: Set echo channel (x: left/right source; y: delay (0 disables))" +msgstr "" + +#: src/engine/sysDef.cpp:2079 +msgid "12xy: Toggle invert (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:2084 src/gui/settings.cpp:4080 +msgid "Nintendo DS" +msgstr "" + +#: src/engine/sysDef.cpp:2085 +msgid "a handheld video game console with two screens. it uses a stylus." +msgstr "" + +#: src/engine/sysDef.cpp:2093 +msgid "1Fxx: Set global volume (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:2098 +msgid "5E01" +msgstr "" + +#: src/engine/sysDef.cpp:2099 +msgid "" +"a fantasy sound chip created by Euly. it is based on Ricoh 2A03, adding a " +"couple features such as 32 noise pitches, an extra duty cycle, and three " +"waveforms (besides triangle)." +msgstr "" + +#: src/engine/sysDef.cpp:2107 +msgid "" +"12xx: Set duty cycle/noise mode/waveform (pulse/wave: 0 to 3; noise: 0 or 1)" +msgstr "" + +#: src/engine/sysDef.cpp:2120 src/gui/settings.cpp:4083 +msgid "Bifurcator" +msgstr "" + +#: src/engine/sysDef.cpp:2121 +msgid "a fantasy sound chip using logistic map iterations to generate sound." +msgstr "" + +#: src/engine/sysDef.cpp:2128 +msgid "10xx: Load low byte of channel sample state" +msgstr "" + +#: src/engine/sysDef.cpp:2129 +msgid "11xx: Load high byte of channel sample state" +msgstr "" + +#: src/engine/sysDef.cpp:2130 +msgid "12xx: Set low byte of channel parameter" +msgstr "" + +#: src/engine/sysDef.cpp:2131 +msgid "13xx: Set high byte of channel parameter" +msgstr "" + +#: src/engine/sysDef.cpp:2136 src/gui/settings.cpp:4084 +msgid "SID2" +msgstr "" + +#: src/engine/sysDef.cpp:2137 +msgid "" +"a fantasy sound chip created by LTVA. it is similar to the SID chip, but " +"with many of its problems fixed." +msgstr "" + +#: src/engine/sysDef.cpp:2148 +msgid "Dummy System" +msgstr "" + +#: src/engine/sysDef.cpp:2149 +msgid "this is a system designed for testing purposes." +msgstr "" + +#: src/engine/engine.cpp:51 +msgid "00xy: Arpeggio" +msgstr "" + +#: src/engine/engine.cpp:53 +msgid "01xx: Pitch slide up" +msgstr "" + +#: src/engine/engine.cpp:55 +msgid "02xx: Pitch slide down" +msgstr "" + +#: src/engine/engine.cpp:57 +msgid "03xx: Portamento" +msgstr "" + +#: src/engine/engine.cpp:59 +msgid "04xy: Vibrato (x: speed; y: depth)" +msgstr "" + +#: src/engine/engine.cpp:61 +msgid "05xy: Volume slide + vibrato (compatibility only!)" +msgstr "" + +#: src/engine/engine.cpp:63 +msgid "06xy: Volume slide + portamento (compatibility only!)" +msgstr "" + +#: src/engine/engine.cpp:65 +msgid "07xy: Tremolo (x: speed; y: depth)" +msgstr "" + +#: src/engine/engine.cpp:67 +msgid "08xy: Set panning (x: left; y: right)" +msgstr "" + +#: src/engine/engine.cpp:69 +msgid "09xx: Set groove pattern (speed 1 if no grooves exist)" +msgstr "" + +#: src/engine/engine.cpp:71 +msgid "0Axy: Volume slide (0y: down; x0: up)" +msgstr "" + +#: src/engine/engine.cpp:73 +msgid "0Bxx: Jump to pattern" +msgstr "" + +#: src/engine/engine.cpp:75 +msgid "0Cxx: Retrigger" +msgstr "" + +#: src/engine/engine.cpp:77 +msgid "0Dxx: Jump to next pattern" +msgstr "" + +#: src/engine/engine.cpp:79 +msgid "0Fxx: Set speed (speed 2 if no grooves exist)" +msgstr "" + +#: src/engine/engine.cpp:81 +msgid "80xx: Set panning (00: left; 80: center; FF: right)" +msgstr "" + +#: src/engine/engine.cpp:83 +msgid "81xx: Set panning (left channel)" +msgstr "" + +#: src/engine/engine.cpp:85 +msgid "82xx: Set panning (right channel)" +msgstr "" + +#: src/engine/engine.cpp:87 +msgid "88xy: Set panning (rear channels; x: left; y: right)" +msgstr "" + +#: src/engine/engine.cpp:90 +msgid "89xx: Set panning (rear left channel)" +msgstr "" + +#: src/engine/engine.cpp:93 +msgid "8Axx: Set panning (rear right channel)" +msgstr "" + +#: src/engine/engine.cpp:96 +msgid "Cxxx: Set tick rate (hz)" +msgstr "" + +#: src/engine/engine.cpp:98 +msgid "E0xx: Set arp speed" +msgstr "" + +#: src/engine/engine.cpp:100 +msgid "E1xy: Note slide up (x: speed; y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:102 +msgid "E2xy: Note slide down (x: speed; y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:104 +msgid "E3xx: Set vibrato shape (0: up/down; 1: up only; 2: down only)" +msgstr "" + +#: src/engine/engine.cpp:106 +msgid "E4xx: Set vibrato range" +msgstr "" + +#: src/engine/engine.cpp:108 +msgid "E5xx: Set pitch (80: center)" +msgstr "" + +#: src/engine/engine.cpp:110 +msgid "E6xy: Quick legato (x: time (0-7 up; 8-F down); y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:112 +msgid "E7xx: Macro release" +msgstr "" + +#: src/engine/engine.cpp:114 +msgid "E8xy: Quick legato up (x: time; y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:116 +msgid "E9xy: Quick legato down (x: time; y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:118 +msgid "EAxx: Legato" +msgstr "" + +#: src/engine/engine.cpp:120 +msgid "EBxx: Set LEGACY sample mode bank" +msgstr "" + +#: src/engine/engine.cpp:122 +msgid "ECxx: Note cut" +msgstr "" + +#: src/engine/engine.cpp:124 +msgid "EDxx: Note delay" +msgstr "" + +#: src/engine/engine.cpp:126 +msgid "EExx: Send external command" +msgstr "" + +#: src/engine/engine.cpp:128 +msgid "F0xx: Set tick rate (bpm)" +msgstr "" + +#: src/engine/engine.cpp:130 +msgid "F1xx: Single tick note slide up" +msgstr "" + +#: src/engine/engine.cpp:132 +msgid "F2xx: Single tick note slide down" +msgstr "" + +#: src/engine/engine.cpp:134 +msgid "F3xx: Fine volume slide up" +msgstr "" + +#: src/engine/engine.cpp:136 +msgid "F4xx: Fine volume slide down" +msgstr "" + +#: src/engine/engine.cpp:138 +msgid "F5xx: Disable macro (see manual)" +msgstr "" + +#: src/engine/engine.cpp:140 +msgid "F6xx: Enable macro (see manual)" +msgstr "" + +#: src/engine/engine.cpp:142 +msgid "F7xx: Restart macro (see manual)" +msgstr "" + +#: src/engine/engine.cpp:144 +msgid "F8xx: Single tick volume slide up" +msgstr "" + +#: src/engine/engine.cpp:146 +msgid "F9xx: Single tick volume slide down" +msgstr "" + +#: src/engine/engine.cpp:148 +msgid "FAxx: Fast volume slide (0y: down; x0: up)" +msgstr "" + +#: src/engine/engine.cpp:150 +msgid "FCxx: Note release" +msgstr "" + +#: src/engine/engine.cpp:152 +msgid "FDxx: Set virtual tempo numerator" +msgstr "" + +#: src/engine/engine.cpp:154 +msgid "FExx: Set virtual tempo denominator" +msgstr "" + +#: src/engine/engine.cpp:156 +msgid "FFxx: Stop song" +msgstr "" + +#: src/engine/engine.cpp:160 +msgid "9xxx: Set sample offset*256" +msgstr "" + +#: src/engine/engine.cpp:164 +msgid "90xx: Set sample offset (first byte)" +msgstr "" + +#: src/engine/engine.cpp:166 +msgid "91xx: Set sample offset (second byte, ×256)" +msgstr "" + +#: src/engine/engine.cpp:168 +msgid "92xx: Set sample offset (third byte, ×65536)" +msgstr "" + +#: src/engine/engine.cpp:187 src/gui/settings.cpp:4127 +msgid "Invalid effect" +msgstr "" + +#: src/engine/engine.cpp:354 src/gui/gui.cpp:2259 src/gui/gui.cpp:2422 +#, c-format +msgid "on seek: %s" +msgstr "" + +#: src/engine/engine.cpp:361 src/gui/gui.cpp:2266 src/gui/gui.cpp:2429 +#, c-format +msgid "on pre tell: %s" +msgstr "" + +#: src/engine/engine.cpp:368 src/engine/engine.cpp:2768 +#: src/gui/settings.cpp:5811 src/gui/gui.cpp:2273 src/gui/gui.cpp:2436 +msgid "file is empty" +msgstr "" + +#: src/engine/engine.cpp:371 src/gui/gui.cpp:2276 src/gui/gui.cpp:2439 +#, c-format +msgid "on tell: %s" +msgstr "" + +#: src/engine/engine.cpp:378 +#, c-format +msgid "ROM size mismatch, expected: %d bytes, was: %d" +msgstr "" + +#: src/engine/engine.cpp:383 src/gui/settings.cpp:5820 src/gui/gui.cpp:2283 +#: src/gui/gui.cpp:2446 +#, c-format +msgid "on get size: %s" +msgstr "" + +#: src/engine/engine.cpp:390 src/gui/settings.cpp:5827 src/gui/gui.cpp:2290 +#: src/gui/gui.cpp:2453 +#, c-format +msgid "on read: %s" +msgstr "" + +#: src/engine/engine.cpp:1076 src/engine/engine.cpp:1181 +#: src/engine/engine.cpp:1290 +msgid "invalid index" +msgstr "" + +#: src/engine/engine.cpp:1080 src/engine/engine.cpp:1135 +#: src/engine/engine.cpp:1189 +#, c-format +msgid "max number of total channels is %d" +msgstr "" + +#: src/engine/engine.cpp:1131 src/engine/engine.cpp:1185 +#, c-format +msgid "max number of systems is %d" +msgstr "" + +#: src/engine/engine.cpp:1286 +msgid "cannot remove the last one" +msgstr "" + +#: src/engine/engine.cpp:1460 +msgid "source and destination are equal" +msgstr "" + +#: src/engine/engine.cpp:1464 +msgid "invalid source index" +msgstr "" + +#: src/engine/engine.cpp:1468 +msgid "invalid destination index" +msgstr "" + +#: src/engine/engine.cpp:2636 +#, c-format +msgid "Instrument %d" +msgstr "" + +#: src/engine/engine.cpp:2710 src/engine/engine.cpp:2727 +#: src/gui/doAction.cpp:825 src/gui/doAction.cpp:843 src/gui/doAction.cpp:1634 +#: src/gui/gui.cpp:6159 src/gui/insEdit.cpp:6860 +msgid "too many wavetables!" +msgstr "" + +#: src/engine/engine.cpp:2752 +#, c-format +msgid "could not seek to end: %s" +msgstr "" + +#: src/engine/engine.cpp:2758 +#, c-format +msgid "could not determine file size: %s" +msgstr "" + +#: src/engine/engine.cpp:2763 +msgid "file size is invalid!" +msgstr "" + +#: src/engine/engine.cpp:2773 +#, c-format +msgid "could not seek to beginning: %s" +msgstr "" + +#: src/engine/engine.cpp:2780 +#, c-format +msgid "could not read entire file: %s" +msgstr "" + +#: src/engine/engine.cpp:2806 +msgid "invalid wavetable header/data!" +msgstr "" + +#: src/engine/engine.cpp:2877 +msgid "premature end of file" +msgstr "" + +#: src/engine/engine.cpp:2904 src/engine/engine.cpp:2926 +#: src/gui/doAction.cpp:909 src/gui/doAction.cpp:921 +msgid "too many samples!" +msgstr "" + +#: src/engine/engine.cpp:2911 +#, c-format +msgid "Sample %d" +msgstr "" + +#: src/engine/engine.cpp:3056 +#, c-format +msgid "no free patterns in channel %d!" +msgstr "" + +#: src/gui/mixer.cpp:28 src/gui/insEdit.cpp:484 +msgid "left" +msgstr "" + +#: src/gui/mixer.cpp:29 src/gui/insEdit.cpp:483 +msgid "right" +msgstr "" + +#: src/gui/mixer.cpp:128 +msgid "input" +msgstr "" + +#: src/gui/mixer.cpp:168 +msgid "output" +msgstr "" + +#: src/gui/mixer.cpp:226 src/gui/mixer.cpp:228 src/gui/editControls.cpp:454 +#: src/gui/guiConst.cpp:593 +msgid "Mixer" +msgstr "" + +#: src/gui/mixer.cpp:229 +msgid "Master Volume" +msgstr "" + +#: src/gui/mixer.cpp:250 src/gui/exportOptions.cpp:90 +#: src/gui/userPresets.cpp:393 src/gui/userPresets.cpp:405 +#: src/gui/settings.cpp:1080 src/gui/settings.cpp:1094 +#: src/gui/waveEdit.cpp:1096 src/gui/sampleEdit.cpp:1128 +#: src/gui/insEdit.cpp:519 +msgid "Invert" +msgstr "" + +#: src/gui/mixer.cpp:268 src/gui/chanOsc.cpp:37 src/gui/userPresets.cpp:417 +#: src/gui/settings.cpp:263 src/gui/settings.cpp:1109 src/gui/settings.cpp:1492 +#: src/gui/settings.cpp:1504 src/gui/settings.cpp:3369 +#: src/gui/settings.cpp:4015 src/gui/findReplace.cpp:687 +#: src/gui/findReplace.cpp:943 src/gui/guiConst.cpp:228 +#: src/gui/sampleEdit.cpp:1003 src/gui/insEdit.cpp:5575 +#: src/gui/insEdit.cpp:5660 src/gui/insEdit.cpp:6920 src/gui/insEdit.cpp:6928 +#: src/gui/insEdit.cpp:6936 src/gui/insEdit.cpp:6946 src/gui/insEdit.cpp:6961 +#: src/gui/insEdit.cpp:6975 src/gui/insEdit.cpp:6987 src/gui/insEdit.cpp:7000 +#: src/gui/insEdit.cpp:7016 src/gui/insEdit.cpp:7022 src/gui/insEdit.cpp:7032 +#: src/gui/insEdit.cpp:7039 src/gui/insEdit.cpp:7045 src/gui/insEdit.cpp:7058 +#: src/gui/insEdit.cpp:7065 src/gui/insEdit.cpp:7072 src/gui/insEdit.cpp:7081 +#: src/gui/insEdit.cpp:7091 src/gui/insEdit.cpp:7099 src/gui/insEdit.cpp:7105 +#: src/gui/insEdit.cpp:7113 src/gui/insEdit.cpp:7120 src/gui/insEdit.cpp:7126 +#: src/gui/insEdit.cpp:7136 src/gui/insEdit.cpp:7148 src/gui/insEdit.cpp:7156 +#: src/gui/insEdit.cpp:7172 src/gui/insEdit.cpp:7177 src/gui/insEdit.cpp:7190 +#: src/gui/insEdit.cpp:7197 src/gui/insEdit.cpp:7208 src/gui/insEdit.cpp:7221 +#: src/gui/insEdit.cpp:7230 src/gui/insEdit.cpp:7237 src/gui/insEdit.cpp:7245 +#: src/gui/insEdit.cpp:7258 src/gui/insEdit.cpp:7263 src/gui/insEdit.cpp:7269 +#: src/gui/insEdit.cpp:7276 src/gui/insEdit.cpp:7284 src/gui/insEdit.cpp:7295 +#: src/gui/insEdit.cpp:7302 src/gui/insEdit.cpp:7310 src/gui/insEdit.cpp:7318 +#: src/gui/insEdit.cpp:7327 src/gui/insEdit.cpp:7335 src/gui/insEdit.cpp:7341 +#: src/gui/insEdit.cpp:7347 src/gui/insEdit.cpp:7353 src/gui/insEdit.cpp:7358 +#: src/gui/insEdit.cpp:7365 src/gui/insEdit.cpp:7372 src/gui/insEdit.cpp:7380 +#: src/gui/insEdit.cpp:7389 src/gui/insEdit.cpp:7397 src/gui/insEdit.cpp:7409 +#: src/gui/insEdit.cpp:7422 src/gui/insEdit.cpp:7433 src/gui/insEdit.cpp:7443 +#: src/gui/insEdit.cpp:7451 src/gui/insEdit.cpp:7461 src/gui/insEdit.cpp:7470 +msgid "Volume" +msgstr "" + +#: src/gui/mixer.cpp:279 src/gui/userPresets.cpp:427 src/gui/settings.cpp:1120 +#: src/gui/guiConst.cpp:229 src/gui/insEdit.cpp:6923 src/gui/insEdit.cpp:6930 +#: src/gui/insEdit.cpp:6941 src/gui/insEdit.cpp:6965 src/gui/insEdit.cpp:7067 +#: src/gui/insEdit.cpp:7108 src/gui/insEdit.cpp:7152 src/gui/insEdit.cpp:7192 +#: src/gui/insEdit.cpp:7212 src/gui/insEdit.cpp:7232 src/gui/insEdit.cpp:7240 +#: src/gui/insEdit.cpp:7253 src/gui/insEdit.cpp:7265 src/gui/insEdit.cpp:7271 +#: src/gui/insEdit.cpp:7287 src/gui/insEdit.cpp:7297 src/gui/insEdit.cpp:7360 +#: src/gui/insEdit.cpp:7392 src/gui/insEdit.cpp:7438 src/gui/insEdit.cpp:7446 +msgid "Panning" +msgstr "" + +#: src/gui/mixer.cpp:290 src/gui/userPresets.cpp:433 src/gui/settings.cpp:1127 +msgid "Front/Rear" +msgstr "" + +#: src/gui/mixer.cpp:299 src/gui/settings.cpp:4208 +msgid "Patchbay" +msgstr "" + +#: src/gui/mixer.cpp:305 +msgid "Automatic patchbay" +msgstr "" + +#: src/gui/mixer.cpp:310 +msgid "Display hidden ports" +msgstr "" + +#: src/gui/mixer.cpp:312 +msgid "Display internal" +msgstr "" + +#: src/gui/mixer.cpp:322 src/gui/mixer.cpp:383 src/gui/settings.cpp:1901 +#: src/gui/settings.cpp:2089 src/gui/songInfo.cpp:69 +msgid "System" +msgstr "" + +#: src/gui/mixer.cpp:354 +msgid "Sample Preview" +msgstr "" + +#: src/gui/mixer.cpp:367 src/gui/editControls.cpp:745 +#: src/gui/editControls.cpp:837 src/gui/editControls.cpp:953 +#: src/gui/editControls.cpp:1093 src/gui/settings.cpp:1490 +#: src/gui/guiConst.cpp:558 +msgid "Metronome" +msgstr "" + +#: src/gui/mixer.cpp:446 +msgid "disconnect all" +msgstr "" + +#: src/gui/editing.cpp:200 +#, c-format +msgid "no data in oldPatMap for channel %d!" +msgstr "" + +#: src/gui/editing.cpp:664 src/gui/editing.cpp:1203 +#, c-format +msgid "invalid clipboard data! failed at line %d char %d" +msgstr "" + +#: src/gui/editing.cpp:1565 src/gui/editing.cpp:1669 +msgid "can't collapse any further!" +msgstr "" + +#: src/gui/editing.cpp:1749 +msgid "can't expand any further!" +msgstr "" + +#: src/gui/editing.cpp:1836 src/gui/editing.cpp:1851 +#, c-format +msgid "copy: %s" +msgstr "" + +#: src/gui/memory.cpp:35 src/gui/settings.cpp:3696 src/gui/settings.cpp:4217 +#: src/gui/guiConst.cpp:613 +msgid "Memory Composition" +msgstr "" + +#: src/gui/memory.cpp:146 +#, c-format +msgid "bank %d" +msgstr "" + +#: src/gui/memory.cpp:175 src/gui/memory.cpp:176 +msgid "no chips with memory" +msgstr "" + +#: src/gui/intro.cpp:89 src/gui/gui.cpp:2345 src/gui/gui.cpp:3746 +#: src/gui/gui.cpp:5019 src/gui/gui.cpp:5041 src/gui/gui.cpp:5479 +#: src/gui/gui.cpp:5781 src/gui/gui.cpp:5791 +#, c-format +msgid "Error while loading file! (%s)" +msgstr "" + +#: src/gui/intro.cpp:122 +msgid "IntroMon X" +msgstr "" + +#: src/gui/intro.cpp:122 +msgid "Intro" +msgstr "" + +#: src/gui/intro.cpp:124 +msgid "Preview" +msgstr "" + +#: src/gui/intro.cpp:176 src/gui/intro.cpp:177 src/gui/intro.cpp:178 +msgid "SORRY NOTHING" +msgstr "" + +#: src/gui/intro.cpp:310 +msgid "hold to skip" +msgstr "" + +#: src/gui/dataList.cpp:76 +msgid "Bug!" +msgstr "" + +#: src/gui/dataList.cpp:79 src/gui/util.cpp:107 src/gui/util.cpp:109 +#: src/gui/settings.cpp:4220 src/gui/insEdit.cpp:5334 +msgid "Unknown" +msgstr "" + +#: src/gui/dataList.cpp:136 src/gui/dataList.cpp:260 +msgid "duplicate" +msgstr "" + +#: src/gui/dataList.cpp:139 src/gui/dataList.cpp:263 src/gui/dataList.cpp:388 +#: src/gui/dataList.cpp:731 src/gui/dataList.cpp:867 +msgid "replace..." +msgstr "" + +#: src/gui/dataList.cpp:142 src/gui/dataList.cpp:266 src/gui/gui.cpp:4232 +msgid "save" +msgstr "" + +#: src/gui/dataList.cpp:145 +msgid "save (.dmp)" +msgstr "" + +#: src/gui/dataList.cpp:148 src/gui/dataList.cpp:269 src/gui/dataList.cpp:617 +#: src/gui/dataList.cpp:994 src/gui/dataList.cpp:1040 +#: src/gui/editControls.cpp:50 src/gui/gui.cpp:2767 src/gui/gui.cpp:2776 +msgid "delete" +msgstr "" + +#: src/gui/dataList.cpp:243 +msgid "out of memory for this sample!" +msgstr "" + +#: src/gui/dataList.cpp:254 +msgid "make instrument" +msgstr "" + +#: src/gui/dataList.cpp:257 +msgid "make me a drum kit" +msgstr "" + +#: src/gui/dataList.cpp:290 src/gui/dataList.cpp:593 src/gui/gui.cpp:5914 +msgid "Instruments" +msgstr "" + +#: src/gui/dataList.cpp:312 src/gui/dataList.cpp:714 src/gui/dataList.cpp:846 +#: src/gui/subSongs.cpp:88 src/gui/insEdit.cpp:520 +msgid "Add" +msgstr "" + +#: src/gui/dataList.cpp:338 src/gui/dataList.cpp:721 src/gui/dataList.cpp:853 +#: src/gui/subSongs.cpp:108 +msgid "Duplicate" +msgstr "" + +#: src/gui/dataList.cpp:359 src/gui/dataList.cpp:728 src/gui/dataList.cpp:860 +#: src/gui/editControls.cpp:497 src/gui/waveEdit.cpp:435 +#: src/gui/waveEdit.cpp:467 src/gui/sampleEdit.cpp:122 +#: src/gui/sampleEdit.cpp:171 src/gui/insEdit.cpp:5239 src/gui/insEdit.cpp:5304 +msgid "Open" +msgstr "" + +#: src/gui/dataList.cpp:363 +msgid "replace instrument..." +msgstr "" + +#: src/gui/dataList.cpp:366 +msgid "load instrument from TX81Z" +msgstr "" + +#: src/gui/dataList.cpp:372 +msgid "replace wavetable..." +msgstr "" + +#: src/gui/dataList.cpp:378 +msgid "replace sample..." +msgstr "" + +#: src/gui/dataList.cpp:381 +msgid "import raw sample..." +msgstr "" + +#: src/gui/dataList.cpp:384 +msgid "import raw sample (replace)..." +msgstr "" + +#: src/gui/dataList.cpp:392 +msgid "load from TX81Z" +msgstr "" + +#: src/gui/dataList.cpp:399 +msgid "Open (insert; right-click to replace)" +msgstr "" + +#: src/gui/dataList.cpp:420 src/gui/dataList.cpp:741 src/gui/dataList.cpp:884 +#: src/gui/editControls.cpp:502 src/gui/waveEdit.cpp:474 +#: src/gui/sampleEdit.cpp:184 src/gui/insEdit.cpp:5311 +msgid "Save" +msgstr "" + +#: src/gui/dataList.cpp:424 +msgid "save instrument as .dmp..." +msgstr "" + +#: src/gui/dataList.cpp:430 +msgid "save wavetable as .dmw..." +msgstr "" + +#: src/gui/dataList.cpp:433 +msgid "save raw wavetable..." +msgstr "" + +#: src/gui/dataList.cpp:439 +msgid "save raw sample..." +msgstr "" + +#: src/gui/dataList.cpp:443 src/gui/insEdit.cpp:5314 +msgid "save as .dmp..." +msgstr "" + +#: src/gui/dataList.cpp:456 src/gui/dataList.cpp:761 src/gui/dataList.cpp:903 +msgid "Toggle folders/standard view" +msgstr "" + +#: src/gui/dataList.cpp:478 src/gui/dataList.cpp:769 src/gui/dataList.cpp:911 +#: src/gui/subSongs.cpp:55 +msgid "Move up" +msgstr "" + +#: src/gui/dataList.cpp:499 src/gui/dataList.cpp:776 src/gui/dataList.cpp:918 +#: src/gui/subSongs.cpp:62 +msgid "Move down" +msgstr "" + +#: src/gui/dataList.cpp:510 src/gui/dataList.cpp:787 src/gui/dataList.cpp:929 +msgid "Create" +msgstr "" + +#: src/gui/dataList.cpp:540 src/gui/dataList.cpp:797 src/gui/dataList.cpp:939 +msgid "New folder" +msgstr "" + +#: src/gui/dataList.cpp:549 src/gui/dataList.cpp:947 +msgid "Preview (right click to stop)" +msgstr "" + +#: src/gui/dataList.cpp:576 src/gui/dataList.cpp:807 src/gui/dataList.cpp:959 +#: src/gui/guiConst.cpp:666 src/gui/sampleEdit.cpp:1105 +msgid "Delete" +msgstr "" + +#: src/gui/dataList.cpp:608 src/gui/dataList.cpp:985 src/gui/dataList.cpp:1031 +msgid "" +msgstr "" + +#: src/gui/dataList.cpp:614 src/gui/dataList.cpp:991 src/gui/dataList.cpp:1037 +msgid "rename..." +msgstr "" + +#: src/gui/dataList.cpp:663 src/gui/dataList.cpp:707 src/gui/gui.cpp:5923 +msgid "Wavetables" +msgstr "" + +#: src/gui/dataList.cpp:674 src/gui/dataList.cpp:839 src/gui/xyOsc.cpp:68 +#: src/gui/sampleEdit.cpp:898 src/gui/sampleEdit.cpp:1072 src/gui/gui.cpp:5932 +msgid "Samples" +msgstr "" + +#: src/gui/dataList.cpp:745 src/gui/waveEdit.cpp:477 +msgid "save as .dmw..." +msgstr "" + +#: src/gui/dataList.cpp:748 src/gui/dataList.cpp:891 src/gui/waveEdit.cpp:480 +#: src/gui/sampleEdit.cpp:187 +msgid "save raw..." +msgstr "" + +#: src/gui/dataList.cpp:871 src/gui/sampleEdit.cpp:174 +msgid "import raw..." +msgstr "" + +#: src/gui/dataList.cpp:874 +msgid "import raw (replace)..." +msgstr "" + +#: src/gui/exportOptions.cpp:29 +msgid "Export type:" +msgstr "" + +#: src/gui/exportOptions.cpp:32 +msgid "one file" +msgstr "" + +#: src/gui/exportOptions.cpp:35 +msgid "multiple files (one per chip)" +msgstr "" + +#: src/gui/exportOptions.cpp:38 +msgid "multiple files (one per channel)" +msgstr "" + +#: src/gui/exportOptions.cpp:44 +msgid "Bit depth:" +msgstr "" + +#: src/gui/exportOptions.cpp:46 +msgid "16-bit integer" +msgstr "" + +#: src/gui/exportOptions.cpp:49 +msgid "32-bit float" +msgstr "" + +#: src/gui/exportOptions.cpp:55 src/gui/settings.cpp:1352 src/gui/gui.cpp:6270 +msgid "Sample rate" +msgstr "" + +#: src/gui/exportOptions.cpp:61 +msgid "Channels in file" +msgstr "" + +#: src/gui/exportOptions.cpp:67 src/gui/settings.cpp:930 +msgid "Loops" +msgstr "" + +#: src/gui/exportOptions.cpp:70 src/gui/settings.cpp:935 +msgid "Fade out (seconds)" +msgstr "" + +#: src/gui/exportOptions.cpp:76 +msgid "Channels to export:" +msgstr "" + +#: src/gui/exportOptions.cpp:78 src/gui/effectList.cpp:32 src/gui/gui.cpp:6186 +msgid "All" +msgstr "" + +#: src/gui/exportOptions.cpp:84 src/gui/sysConf.cpp:1870 +#: src/gui/effectList.cpp:34 src/gui/compatFlags.cpp:219 +#: src/gui/waveEdit.cpp:37 src/gui/gui.cpp:6192 src/gui/insEdit.cpp:518 +msgid "None" +msgstr "" + +#: src/gui/exportOptions.cpp:110 src/gui/exportOptions.cpp:214 +#: src/gui/exportOptions.cpp:225 src/gui/exportOptions.cpp:243 +#: src/gui/exportOptions.cpp:266 src/gui/exportOptions.cpp:297 +#: src/gui/exportOptions.cpp:318 src/gui/exportOptions.cpp:341 +#: src/gui/commandPalette.cpp:199 src/gui/settings.cpp:6673 +#: src/gui/newSong.cpp:273 src/gui/gui.cpp:5669 src/gui/gui.cpp:5693 +#: src/gui/gui.cpp:5717 src/gui/gui.cpp:5741 src/gui/gui.cpp:5765 +#: src/gui/gui.cpp:5796 src/gui/gui.cpp:5855 src/gui/gui.cpp:6229 +#: src/gui/gui.cpp:6353 +msgid "Cancel" +msgstr "" + +#: src/gui/exportOptions.cpp:115 src/gui/exportOptions.cpp:217 +#: src/gui/exportOptions.cpp:246 src/gui/exportOptions.cpp:300 +#: src/gui/exportOptions.cpp:321 src/gui/exportOptions.cpp:344 +#: src/gui/editControls.cpp:512 src/gui/userPresets.cpp:523 +#: src/gui/settings.cpp:1242 src/gui/settings.cpp:2165 +#: src/gui/settings.cpp:2557 src/gui/settings.cpp:3800 src/gui/guiConst.cpp:536 +#: src/gui/gui.cpp:5578 src/gui/gui.cpp:5630 +msgid "Export" +msgstr "" + +#: src/gui/exportOptions.cpp:130 +msgid "select at least one channel" +msgstr "" + +#: src/gui/exportOptions.cpp:137 +msgid "settings:" +msgstr "" + +#: src/gui/exportOptions.cpp:138 +msgid "format version" +msgstr "" + +#: src/gui/exportOptions.cpp:146 src/gui/exportOptions.cpp:238 +#: src/gui/insEdit.cpp:362 +msgid "loop" +msgstr "" + +#: src/gui/exportOptions.cpp:148 +msgid "loop trail:" +msgstr "" + +#: src/gui/exportOptions.cpp:150 +msgid "auto-detect" +msgstr "" + +#: src/gui/exportOptions.cpp:153 +msgid "add one loop" +msgstr "" + +#: src/gui/exportOptions.cpp:156 +msgid "custom" +msgstr "" + +#: src/gui/exportOptions.cpp:167 +msgid "add pattern change hints" +msgstr "" + +#: src/gui/exportOptions.cpp:170 +msgid "" +"inserts data blocks on pattern changes.\n" +"useful if you are writing a playback routine.\n" +"\n" +"the format of a pattern change data block is:\n" +"67 66 FE ll ll ll ll 01 oo rr pp pp pp ...\n" +"- ll: length, a 32-bit little-endian number\n" +"- oo: order\n" +"- rr: initial row (a 0Dxx effect is able to select a different row)\n" +"- pp: pattern index (one per channel)\n" +"\n" +"pattern indexes are ordered as they appear in the song." +msgstr "" + +#: src/gui/exportOptions.cpp:183 +msgid "direct stream mode" +msgstr "" + +#: src/gui/exportOptions.cpp:186 +msgid "" +"required for DualPCM and MSM6258 export.\n" +"\n" +"allows for volume/direction changes when playing samples,\n" +"at the cost of a massive increase in file size." +msgstr "" + +#: src/gui/exportOptions.cpp:191 +msgid "chips to export:" +msgstr "" + +#: src/gui/exportOptions.cpp:200 +#, c-format +msgid "this chip is only available in VGM %d.%.2x and higher!" +msgstr "" + +#: src/gui/exportOptions.cpp:204 +msgid "this chip is not supported by the VGM format!" +msgstr "" + +#: src/gui/exportOptions.cpp:210 +#, c-format +msgid "select the chip you wish to export, but only up to %d of each type." +msgstr "" + +#: src/gui/exportOptions.cpp:222 +msgid "nothing to export" +msgstr "" + +#: src/gui/exportOptions.cpp:233 +msgid "Commander X16 Zsound Music File" +msgstr "" + +#: src/gui/exportOptions.cpp:234 +msgid "Tick Rate (Hz)" +msgstr "" + +#: src/gui/exportOptions.cpp:240 +msgid "optimize size" +msgstr "" + +#: src/gui/exportOptions.cpp:256 src/gui/editControls.cpp:630 +msgid "" +"this is NOT ROM export! only use for making sure the\n" +"Furnace Amiga emulator is working properly by\n" +"comparing it with real Amiga output." +msgstr "" + +#: src/gui/exportOptions.cpp:261 src/gui/editControls.cpp:635 +#: src/gui/settings.cpp:3925 +msgid "Directory" +msgstr "" + +#: src/gui/exportOptions.cpp:269 src/gui/editControls.cpp:638 +msgid "Bake Data" +msgstr "" + +#: src/gui/exportOptions.cpp:284 src/gui/editControls.cpp:653 +#, c-format +msgid "Done! Baked %d files." +msgstr "" + +#: src/gui/exportOptions.cpp:293 +msgid "this option exports the song to a text file.\n" +msgstr "" + +#: src/gui/exportOptions.cpp:310 +msgid "" +"this option exports a text or binary file which\n" +"contains a dump of the internal command stream\n" +"produced when playing the song.\n" +"\n" +"technical/development use only!" +msgstr "" + +#: src/gui/exportOptions.cpp:331 +msgid "" +"export in DefleMask module format.\n" +"only do it if you really, really need to, or are downgrading an existing ." +"dmf." +msgstr "" + +#: src/gui/exportOptions.cpp:335 +msgid "format version:" +msgstr "" + +#: src/gui/exportOptions.cpp:336 +msgid "1.1.3 and higher" +msgstr "" + +#: src/gui/exportOptions.cpp:337 +msgid "1.0/legacy (0.12)" +msgstr "" + +#: src/gui/exportOptions.cpp:357 src/gui/settings.cpp:1253 +#: src/gui/settings.cpp:3929 +msgid "Audio" +msgstr "" + +#: src/gui/exportOptions.cpp:361 src/gui/settings.cpp:3931 +msgid "VGM" +msgstr "" + +#: src/gui/exportOptions.cpp:370 src/gui/settings.cpp:3932 +msgid "ZSM" +msgstr "" + +#: src/gui/exportOptions.cpp:380 +msgid "Amiga Validation" +msgstr "" + +#: src/gui/exportOptions.cpp:385 src/gui/settings.cpp:2959 +#: src/gui/settings.cpp:3891 +msgid "Text" +msgstr "" + +#: src/gui/exportOptions.cpp:389 +msgid "Command Stream" +msgstr "" + +#: src/gui/exportOptions.cpp:393 +msgid "DMF" +msgstr "" + +#: src/gui/exportOptions.cpp:422 +msgid "congratulations! you've unlocked a secret panel." +msgstr "" + +#: src/gui/exportOptions.cpp:423 +msgid "Toggle hidden systems" +msgstr "" + +#: src/gui/exportOptions.cpp:427 +msgid "Toggle all instrument types" +msgstr "" + +#: src/gui/exportOptions.cpp:431 +msgid "Set pitch linearity to Partial" +msgstr "" + +#: src/gui/exportOptions.cpp:435 +msgid "Enable multi-threading settings" +msgstr "" + +#: src/gui/exportOptions.cpp:439 +msgid "Set fat to max" +msgstr "" + +#: src/gui/exportOptions.cpp:446 +msgid "Set muscle and fat to zero" +msgstr "" + +#: src/gui/exportOptions.cpp:453 +msgid "Tell tildearrow this must be a mistake" +msgstr "" + +#: src/gui/exportOptions.cpp:454 +msgid "" +"yeah, it's a bug. write a bug report in the GitHub page and tell me how did " +"you get here." +msgstr "" + +#: src/gui/speed.cpp:32 src/gui/speed.cpp:102 src/gui/editControls.cpp:532 +#: src/gui/sysConf.cpp:2148 src/gui/guiConst.cpp:232 src/gui/guiConst.cpp:581 +#: src/gui/insEdit.cpp:2028 src/gui/insEdit.cpp:5693 src/gui/insEdit.cpp:6885 +msgid "Speed" +msgstr "" + +#: src/gui/speed.cpp:41 +msgid "Base Tempo##TempoOrHz" +msgstr "" + +#: src/gui/speed.cpp:41 +msgid "Tick Rate##TempoOrHz" +msgstr "" + +#: src/gui/speed.cpp:46 +msgid "click to display tick rate" +msgstr "" + +#: src/gui/speed.cpp:48 +msgid "click to display base tempo" +msgstr "" + +#: src/gui/speed.cpp:80 +msgid "Groove" +msgstr "" + +#: src/gui/speed.cpp:87 +msgid "click for one speed" +msgstr "" + +#: src/gui/speed.cpp:90 +msgid "Speeds" +msgstr "" + +#: src/gui/speed.cpp:99 +msgid "click for groove pattern" +msgstr "" + +#: src/gui/speed.cpp:110 +msgid "click for two (alternating) speeds" +msgstr "" + +#: src/gui/speed.cpp:168 +msgid "Virtual Tempo" +msgstr "" + +#: src/gui/speed.cpp:177 +msgid "Numerator" +msgstr "" + +#: src/gui/speed.cpp:187 +msgid "Denominator (set to base tempo)" +msgstr "" + +#: src/gui/speed.cpp:193 +msgid "Divider" +msgstr "" + +#: src/gui/speed.cpp:208 +msgid "Highlight" +msgstr "" + +#: src/gui/speed.cpp:231 +msgid "Pattern Length" +msgstr "" + +#: src/gui/speed.cpp:245 +msgid "Song Length" +msgstr "" + +#: src/gui/channels.cpp:40 src/gui/editControls.cpp:446 +#: src/gui/guiConst.cpp:601 src/gui/gui.cpp:6280 +msgid "Channels" +msgstr "" + +#: src/gui/channels.cpp:49 +msgid "Pat" +msgstr "" + +#: src/gui/channels.cpp:51 src/gui/editControls.cpp:550 +msgid "Osc" +msgstr "" + +#: src/gui/channels.cpp:53 +msgid "Swap" +msgstr "" + +#: src/gui/channels.cpp:55 src/gui/userPresets.cpp:368 +#: src/gui/effectList.cpp:45 src/gui/subSongs.cpp:125 src/gui/settings.cpp:1060 +#: src/gui/settings.cpp:4383 src/gui/sampleEdit.cpp:195 src/gui/songInfo.cpp:40 +#: src/gui/sysManager.cpp:54 src/gui/insEdit.cpp:5288 +msgid "Name" +msgstr "" + +#: src/gui/channels.cpp:64 +msgid "Show in pattern" +msgstr "" + +#: src/gui/channels.cpp:71 +msgid "Show in per-channel oscilloscope" +msgstr "" + +#: src/gui/channels.cpp:82 +#, c-format +msgid "" +"%s #%d\n" +"(drag to swap channels)" +msgstr "" + +#: src/gui/commandPalette.cpp:51 src/gui/sysPicker.cpp:35 +#: src/gui/newSong.cpp:133 +msgid "Search..." +msgstr "" + +#: src/gui/commandPalette.cpp:54 +msgid "Search recent files..." +msgstr "" + +#: src/gui/commandPalette.cpp:57 +msgid "Search instruments..." +msgstr "" + +#: src/gui/commandPalette.cpp:60 +msgid "Search samples..." +msgstr "" + +#: src/gui/commandPalette.cpp:63 +msgid "Search instruments (to change to)..." +msgstr "" + +#: src/gui/commandPalette.cpp:66 +msgid "Search chip (to add)..." +msgstr "" + +#: src/gui/commandPalette.cpp:93 src/gui/commandPalette.cpp:167 +msgid "- None -" +msgstr "" + +#: src/gui/commandPalette.cpp:123 src/gui/commandPalette.cpp:179 +#: src/gui/commandPalette.cpp:241 +msgid "invalid command palette type" +msgstr "" + +#: src/gui/regView.cpp:30 src/gui/guiConst.cpp:604 +msgid "Register View" +msgstr "" + +#: src/gui/regView.cpp:38 +msgid "- no register pool available" +msgstr "" + +#: src/gui/log.cpp:25 src/gui/effectList.cpp:84 +msgid "ERROR" +msgstr "" + +#: src/gui/log.cpp:26 +msgid "warning" +msgstr "" + +#: src/gui/log.cpp:27 +msgid "info" +msgstr "" + +#: src/gui/log.cpp:28 src/gui/gui.cpp:4513 +msgid "debug" +msgstr "" + +#: src/gui/log.cpp:29 +msgid "trace" +msgstr "" + +#: src/gui/log.cpp:47 src/gui/settings.cpp:4243 src/gui/guiConst.cpp:605 +msgid "Log Viewer" +msgstr "" + +#: src/gui/log.cpp:48 src/gui/editControls.cpp:750 src/gui/editControls.cpp:883 +#: src/gui/editControls.cpp:1000 +msgid "Follow" +msgstr "" + +#: src/gui/log.cpp:50 src/gui/waveEdit.cpp:681 src/gui/insEdit.cpp:50 +msgid "Level" +msgstr "" + +#: src/gui/log.cpp:68 +msgid "time" +msgstr "" + +#: src/gui/log.cpp:70 +msgid "level" +msgstr "" + +#: src/gui/log.cpp:72 +msgid "message" +msgstr "" + +#: src/gui/pattern.cpp:433 src/gui/editControls.cpp:421 +#: src/gui/editControls.cpp:754 src/gui/editControls.cpp:887 +#: src/gui/editControls.cpp:1015 src/gui/settings.cpp:2344 +#: src/gui/settings.cpp:3297 src/gui/settings.cpp:4100 +#: src/gui/findReplace.cpp:794 src/gui/guiConst.cpp:582 src/gui/gui.cpp:5899 +msgid "Pattern" +msgstr "" + +#: src/gui/pattern.cpp:468 +msgid "there aren't any channels to show." +msgstr "" + +#: src/gui/pattern.cpp:492 +msgid "click for pattern options (effect columns/pattern names/visualizer)" +msgstr "" + +#: src/gui/pattern.cpp:504 +msgid "Options:" +msgstr "" + +#: src/gui/pattern.cpp:506 +msgid "Effect columns/collapse" +msgstr "" + +#: src/gui/pattern.cpp:507 +msgid "Pattern names" +msgstr "" + +#: src/gui/pattern.cpp:508 +msgid "Channel group hints" +msgstr "" + +#: src/gui/pattern.cpp:509 +msgid "Visualizer" +msgstr "" + +#: src/gui/pattern.cpp:517 +msgid "Channel status:" +msgstr "" + +#: src/gui/pattern.cpp:519 +msgid "No##_PCS0" +msgstr "" + +#: src/gui/pattern.cpp:522 +msgid "Yes##_PCS1" +msgstr "" + +#: src/gui/pattern.cpp:1420 src/gui/pattern.cpp:1452 +msgid "WARNING!!" +msgstr "" + +#: src/gui/pattern.cpp:1422 src/gui/pattern.cpp:1459 +msgid "this instrument cannot be previewed because" +msgstr "" + +#: src/gui/pattern.cpp:1423 src/gui/pattern.cpp:1466 +msgid "none of the chips can play it" +msgstr "" + +#: src/gui/pattern.cpp:1424 src/gui/pattern.cpp:1473 +msgid "your instrument is in peril!! be careful..." +msgstr "" + +#: src/gui/osc.cpp:169 src/gui/settings.cpp:3710 src/gui/settings.cpp:3937 +msgid "Oscilloscope" +msgstr "" + +#: src/gui/osc.cpp:176 +#, c-format +msgid "zoom: %.2fx (%.1fdB)" +msgstr "" + +#: src/gui/osc.cpp:187 +#, c-format +msgid "window size: %.1fms" +msgstr "" + +#: src/gui/osc.cpp:385 +msgid "(-Infinity)dB" +msgstr "" + +#: src/gui/debugWindow.cpp:66 src/gui/editControls.cpp:610 +msgid "Debug" +msgstr "" + +#: src/gui/debugWindow.cpp:663 +msgid "This is a language test." +msgstr "" + +#: src/gui/debugWindow.cpp:664 +msgid "This is another language test." +msgstr "" + +#: src/gui/debugWindow.cpp:720 +#, c-format +msgid "%d apple" +msgid_plural "%d apples" +msgstr[0] "" +msgstr[1] "" + +#: src/gui/chanOsc.cpp:32 +msgid "None (0%)" +msgstr "" + +#: src/gui/chanOsc.cpp:33 +msgid "None (50%)" +msgstr "" + +#: src/gui/chanOsc.cpp:34 +msgid "None (100%)" +msgstr "" + +#: src/gui/chanOsc.cpp:36 +msgid "Frequency" +msgstr "" + +#: src/gui/chanOsc.cpp:38 src/gui/settings.cpp:1667 src/gui/settings.cpp:3406 +#: src/gui/settings.cpp:4088 +msgid "Channel" +msgstr "" + +#: src/gui/chanOsc.cpp:39 +msgid "Brightness" +msgstr "" + +#: src/gui/chanOsc.cpp:41 +msgid "Note Trigger" +msgstr "" + +#: src/gui/chanOsc.cpp:45 +msgid "Off" +msgstr "" + +#: src/gui/chanOsc.cpp:46 +msgid "Mode 1" +msgstr "" + +#: src/gui/chanOsc.cpp:47 +msgid "Mode 2" +msgstr "" + +#: src/gui/chanOsc.cpp:48 +msgid "Mode 3" +msgstr "" + +#: src/gui/chanOsc.cpp:135 src/gui/guiConst.cpp:607 +msgid "Oscilloscope (per-channel)" +msgstr "" + +#: src/gui/chanOsc.cpp:143 +msgid "Columns" +msgstr "" + +#: src/gui/chanOsc.cpp:152 +msgid "Size (ms)" +msgstr "" + +#: src/gui/chanOsc.cpp:163 +msgid "Automatic columns" +msgstr "" + +#: src/gui/chanOsc.cpp:177 +msgid "Center waveform" +msgstr "" + +#: src/gui/chanOsc.cpp:183 +msgid "Randomize phase on note" +msgstr "" + +#: src/gui/chanOsc.cpp:189 +msgid "Amplitude" +msgstr "" + +#: src/gui/chanOsc.cpp:199 src/gui/settings.cpp:3747 +msgid "Line size" +msgstr "" + +#: src/gui/chanOsc.cpp:211 +msgid "Gradient" +msgstr "" + +#: src/gui/chanOsc.cpp:218 +msgid "error while creating gradient texture!" +msgstr "" + +#: src/gui/chanOsc.cpp:236 +msgid "error while updating gradient texture!" +msgstr "" + +#: src/gui/chanOsc.cpp:292 src/gui/chanOsc.cpp:348 src/gui/settings.cpp:3793 +msgid "Color" +msgstr "" + +#: src/gui/chanOsc.cpp:296 +msgid "Distance" +msgstr "" + +#: src/gui/chanOsc.cpp:305 +msgid "Spread" +msgstr "" + +#: src/gui/chanOsc.cpp:314 src/gui/userPresets.cpp:370 src/gui/subSongs.cpp:121 +#: src/gui/settings.cpp:2281 src/gui/sysManager.cpp:124 +msgid "Remove" +msgstr "" + +#: src/gui/chanOsc.cpp:338 src/gui/settings.cpp:3885 src/gui/settings.cpp:4165 +#: src/gui/settings.cpp:4192 src/gui/settings.cpp:4218 +msgid "Background" +msgstr "" + +#: src/gui/chanOsc.cpp:341 +msgid "X Axis##AxisX" +msgstr "" + +#: src/gui/chanOsc.cpp:342 +msgid "Y Axis##AxisY" +msgstr "" + +#: src/gui/chanOsc.cpp:352 +msgid "Text format:" +msgstr "" + +#: src/gui/chanOsc.cpp:358 +msgid "" +"format guide:\n" +"- %c: channel name\n" +"- %C: channel short name\n" +"- %d: channel number (starting from 0)\n" +"- %D: channel number (starting from 1)\n" +"- %n: channel note\n" +"- %i: instrument name\n" +"- %I: instrument number (decimal)\n" +"- %x: instrument number (hex)\n" +"- %s: chip name\n" +"- %p: chip part number\n" +"- %S: chip ID\n" +"- %v: volume (decimal)\n" +"- %V: volume (percentage)\n" +"- %b: volume (hex)\n" +"- %l: new line\n" +"- %%: percent sign" +msgstr "" + +#: src/gui/chanOsc.cpp:380 +msgid "Text color" +msgstr "" + +#: src/gui/chanOsc.cpp:382 src/gui/xyOsc.cpp:80 src/gui/settings.cpp:6672 +#: src/gui/tutorial.cpp:689 src/gui/gui.cpp:5639 src/gui/gui.cpp:6055 +#: src/gui/gui.cpp:6223 src/gui/gui.cpp:6322 src/gui/gui.cpp:6371 +msgid "OK" +msgstr "" + +#: src/gui/chanOsc.cpp:400 +msgid "creating chan osc work pool" +msgstr "" + +#: src/gui/chanOsc.cpp:429 +#, c-format +msgid "creating FFT plan for channel %d" +msgstr "" + +#: src/gui/chanOsc.cpp:436 +msgid "failed to create plan!" +msgstr "" + +#: src/gui/chanOsc.cpp:438 +msgid "failed to create inverse plan!" +msgstr "" + +#: src/gui/chanOsc.cpp:440 +msgid "failed to create FFT buffers" +msgstr "" + +#: src/gui/chanOsc.cpp:585 +msgid "Error!" +msgstr "" + +#: src/gui/editControls.cpp:47 src/gui/sampleEdit.cpp:1736 src/gui/gui.cpp:2733 +#: src/gui/insEdit.cpp:363 +msgid "cut" +msgstr "" + +#: src/gui/editControls.cpp:48 src/gui/sampleEdit.cpp:1740 src/gui/gui.cpp:2734 +#: src/gui/insEdit.cpp:7538 +msgid "copy" +msgstr "" + +#: src/gui/editControls.cpp:49 src/gui/sampleEdit.cpp:1744 src/gui/gui.cpp:2735 +#: src/gui/gui.cpp:2788 src/gui/insEdit.cpp:7543 +msgid "paste" +msgstr "" + +#: src/gui/editControls.cpp:51 +msgid "" +"select\n" +"all" +msgstr "" + +#: src/gui/editControls.cpp:52 +msgid "piano" +msgstr "" + +#: src/gui/editControls.cpp:53 src/gui/gui.cpp:4429 +msgid "undo" +msgstr "" + +#: src/gui/editControls.cpp:54 src/gui/gui.cpp:4430 +msgid "redo" +msgstr "" + +#: src/gui/editControls.cpp:57 +msgid "" +"paste\n" +"mix" +msgstr "" + +#: src/gui/editControls.cpp:58 +msgid "" +"paste\n" +"mix bg" +msgstr "" + +#: src/gui/editControls.cpp:59 +msgid "" +"paste\n" +"ins" +msgstr "" + +#: src/gui/editControls.cpp:60 +msgid "" +"paste\n" +"ins bg" +msgstr "" + +#: src/gui/editControls.cpp:61 +msgid "" +"paste\n" +"flood" +msgstr "" + +#: src/gui/editControls.cpp:62 +msgid "" +"paste\n" +"overflow" +msgstr "" + +#: src/gui/editControls.cpp:63 +msgid "" +"transpose\n" +"notes" +msgstr "" + +#: src/gui/editControls.cpp:64 +msgid "" +"transpose\n" +"values" +msgstr "" + +#: src/gui/editControls.cpp:67 +msgid "" +"change\n" +"ins" +msgstr "" + +#: src/gui/editControls.cpp:68 +msgid "" +"find/\n" +"replace" +msgstr "" + +#: src/gui/editControls.cpp:69 src/gui/gui.cpp:3063 +msgid "collapse" +msgstr "" + +#: src/gui/editControls.cpp:70 src/gui/gui.cpp:3064 +msgid "expand" +msgstr "" + +#: src/gui/editControls.cpp:71 src/gui/gui.cpp:2820 +msgid "flip" +msgstr "" + +#: src/gui/editControls.cpp:72 src/gui/insEdit.cpp:430 +msgid "invert" +msgstr "" + +#: src/gui/editControls.cpp:73 src/gui/gui.cpp:2800 src/gui/gui.cpp:2960 +msgid "interpolate" +msgstr "" + +#: src/gui/editControls.cpp:74 src/gui/gui.cpp:2812 src/gui/insEdit.cpp:7610 +msgid "scale" +msgstr "" + +#: src/gui/editControls.cpp:77 src/gui/gui.cpp:2804 +msgid "fade" +msgstr "" + +#: src/gui/editControls.cpp:78 src/gui/gui.cpp:2816 src/gui/insEdit.cpp:7639 +msgid "randomize" +msgstr "" + +#: src/gui/editControls.cpp:79 +msgid "opmask" +msgstr "" + +#: src/gui/editControls.cpp:80 +msgid "" +"scroll\n" +"mode" +msgstr "" + +#: src/gui/editControls.cpp:81 +msgid "" +"input\n" +"latch" +msgstr "" + +#: src/gui/editControls.cpp:82 +msgid "" +"set\n" +"latch" +msgstr "" + +#: src/gui/editControls.cpp:83 +msgid "" +"clear\n" +"latch" +msgstr "" + +#: src/gui/editControls.cpp:84 src/gui/findReplace.cpp:43 +#: src/gui/insEdit.cpp:7557 +msgid "clear" +msgstr "" + +#: src/gui/editControls.cpp:333 +msgid "Mobile Controls" +msgstr "" + +#: src/gui/editControls.cpp:408 +msgid "Mobile Menu" +msgstr "" + +#: src/gui/editControls.cpp:425 src/gui/editControls.cpp:752 +#: src/gui/editControls.cpp:885 src/gui/editControls.cpp:1007 +#: src/gui/settings.cpp:2485 src/gui/settings.cpp:3271 +#: src/gui/settings.cpp:3975 src/gui/orders.cpp:232 src/gui/guiConst.cpp:577 +#: src/gui/gui.cpp:5888 +msgid "Orders" +msgstr "" + +#: src/gui/editControls.cpp:429 src/gui/findReplace.cpp:669 +#: src/gui/findReplace.cpp:914 +msgid "Ins" +msgstr "" + +#: src/gui/editControls.cpp:442 src/gui/findReplace.cpp:788 +#: src/gui/guiConst.cpp:230 +msgid "Song" +msgstr "" + +#: src/gui/editControls.cpp:450 src/gui/sampleEdit.cpp:494 +msgid "Chips" +msgstr "" + +#: src/gui/editControls.cpp:458 src/gui/settings.cpp:2117 +#: src/gui/settings.cpp:3934 src/gui/settings.cpp:4018 +#: src/gui/compatFlags.cpp:319 +msgid "Other" +msgstr "" + +#: src/gui/editControls.cpp:487 src/gui/guiConst.cpp:531 +msgid "New" +msgstr "" + +#: src/gui/editControls.cpp:491 src/gui/doAction.cpp:38 src/gui/gui.cpp:4194 +msgid "Unsaved changes! Save changes before creating a new song?" +msgstr "" + +#: src/gui/editControls.cpp:507 +msgid "Save as..." +msgstr "" + +#: src/gui/editControls.cpp:516 src/gui/gui.cpp:1680 +msgid "Restore Backup" +msgstr "" + +#: src/gui/editControls.cpp:524 +msgid "Song Info" +msgstr "" + +#: src/gui/editControls.cpp:528 src/gui/subSongs.cpp:17 +#: src/gui/guiConst.cpp:608 +msgid "Subsongs" +msgstr "" + +#: src/gui/editControls.cpp:541 +msgid "Channels here..." +msgstr "" + +#: src/gui/editControls.cpp:544 +msgid "Chips here..." +msgstr "" + +#: src/gui/editControls.cpp:547 +msgid "What the hell..." +msgstr "" + +#: src/gui/editControls.cpp:554 +msgid "ChanOsc" +msgstr "" + +#: src/gui/editControls.cpp:558 +msgid "RegView" +msgstr "" + +#: src/gui/editControls.cpp:562 +msgid "Stats" +msgstr "" + +#: src/gui/editControls.cpp:566 src/gui/guiConst.cpp:611 src/gui/grooves.cpp:35 +msgid "Grooves" +msgstr "" + +#: src/gui/editControls.cpp:569 +msgid "Compat Flags" +msgstr "" + +#: src/gui/editControls.cpp:573 +msgid "XYOsc" +msgstr "" + +#: src/gui/editControls.cpp:577 +msgid "Meter" +msgstr "" + +#: src/gui/editControls.cpp:581 +msgid "Memory" +msgstr "" + +#: src/gui/editControls.cpp:585 +msgid "CV" +msgstr "" + +#: src/gui/editControls.cpp:589 +msgid "Presets" +msgstr "" + +#: src/gui/editControls.cpp:593 +msgid "PatManager" +msgstr "" + +#: src/gui/editControls.cpp:599 src/gui/guiConst.cpp:564 +msgid "Panic" +msgstr "" + +#: src/gui/editControls.cpp:601 src/gui/settings.cpp:560 +#: src/gui/guiConst.cpp:589 src/gui/guiConst.cpp:591 src/gui/gui.cpp:4439 +msgid "Settings" +msgstr "" + +#: src/gui/editControls.cpp:606 +msgid "Log" +msgstr "" + +#: src/gui/editControls.cpp:614 src/gui/guiConst.cpp:587 +msgid "About" +msgstr "" + +#: src/gui/editControls.cpp:619 +msgid "Switch to Desktop Mode" +msgstr "" + +#: src/gui/editControls.cpp:673 src/gui/editControls.cpp:784 +#: src/gui/editControls.cpp:904 +msgid "Play/Edit Controls" +msgstr "" + +#: src/gui/editControls.cpp:681 src/gui/editControls.cpp:842 +#: src/gui/editControls.cpp:959 src/gui/editControls.cpp:1125 +msgid "Octave" +msgstr "" + +#: src/gui/editControls.cpp:698 src/gui/editControls.cpp:857 +msgid "Coarse Step" +msgstr "" + +#: src/gui/editControls.cpp:698 src/gui/editControls.cpp:857 +msgid "Edit Step" +msgstr "" + +#: src/gui/editControls.cpp:731 src/gui/editControls.cpp:797 +#: src/gui/editControls.cpp:911 src/gui/editControls.cpp:1048 +#: src/gui/guiConst.cpp:545 +msgid "Play" +msgstr "" + +#: src/gui/editControls.cpp:739 src/gui/editControls.cpp:789 +#: src/gui/editControls.cpp:918 src/gui/editControls.cpp:1040 +#: src/gui/guiConst.cpp:546 +msgid "Stop" +msgstr "" + +#: src/gui/editControls.cpp:742 src/gui/editControls.cpp:826 +#: src/gui/editControls.cpp:943 src/gui/editControls.cpp:1082 +#: src/gui/gui.cpp:4426 +msgid "Edit" +msgstr "" + +#: src/gui/editControls.cpp:757 src/gui/editControls.cpp:816 +#: src/gui/editControls.cpp:934 src/gui/editControls.cpp:1104 +msgid "Repeat pattern" +msgstr "" + +#: src/gui/editControls.cpp:766 src/gui/editControls.cpp:806 +#: src/gui/editControls.cpp:925 src/gui/editControls.cpp:1073 +msgid "Step one row" +msgstr "" + +#: src/gui/editControls.cpp:771 src/gui/editControls.cpp:891 +#: src/gui/editControls.cpp:1020 src/gui/editControls.cpp:1110 +msgid "Poly##PolyInput" +msgstr "" + +#: src/gui/editControls.cpp:771 src/gui/editControls.cpp:891 +#: src/gui/editControls.cpp:1020 src/gui/editControls.cpp:1110 +msgid "Mono##PolyInput" +msgstr "" + +#: src/gui/editControls.cpp:776 src/gui/editControls.cpp:896 +#: src/gui/editControls.cpp:1025 src/gui/editControls.cpp:1115 +msgid "Polyphony" +msgstr "" + +#: src/gui/editControls.cpp:957 +msgid "Oct." +msgstr "" + +#: src/gui/editControls.cpp:974 src/gui/editControls.cpp:1142 +msgid "Coarse" +msgstr "" + +#: src/gui/editControls.cpp:974 src/gui/editControls.cpp:1142 +msgid "Step" +msgstr "" + +#: src/gui/editControls.cpp:998 +msgid "Foll." +msgstr "" + +#: src/gui/editControls.cpp:1003 +msgid "Ord##FollowOrders" +msgstr "" + +#: src/gui/editControls.cpp:1011 +msgid "Pat##FollowPattern" +msgstr "" + +#: src/gui/editControls.cpp:1033 +msgid "Play Controls" +msgstr "" + +#: src/gui/editControls.cpp:1057 +msgid "Play from the beginning of this pattern" +msgstr "" + +#: src/gui/editControls.cpp:1065 +msgid "Repeat from the beginning of this pattern" +msgstr "" + +#: src/gui/editControls.cpp:1122 src/gui/guiConst.cpp:576 +msgid "Edit Controls" +msgstr "" + +#: src/gui/editControls.cpp:1169 src/gui/guiConst.cpp:560 +msgid "Follow orders" +msgstr "" + +#: src/gui/editControls.cpp:1170 src/gui/guiConst.cpp:561 +msgid "Follow pattern" +msgstr "" + +#: src/gui/songNotes.cpp:32 src/gui/guiConst.cpp:600 +msgid "Song Comments" +msgstr "" + +#: src/gui/util.cpp:93 +msgid "" +msgstr "" + +#: src/gui/util.cpp:97 +msgid "Ctrl-" +msgstr "" + +#: src/gui/util.cpp:99 +msgid "Alt-" +msgstr "" + +#: src/gui/util.cpp:100 +msgid "Shift-" +msgstr "" + +#: src/gui/stats.cpp:31 src/gui/guiConst.cpp:597 +msgid "Statistics" +msgstr "" + +#: src/gui/stats.cpp:36 +msgid "Audio load" +msgstr "" + +#: src/gui/xyOsc.cpp:40 src/gui/guiConst.cpp:612 +msgid "Oscilloscope (X-Y)" +msgstr "" + +#: src/gui/xyOsc.cpp:45 +msgid "X Channel" +msgstr "" + +#: src/gui/xyOsc.cpp:51 +msgid "Invert##X" +msgstr "" + +#: src/gui/xyOsc.cpp:52 +msgid "Y Channel" +msgstr "" + +#: src/gui/xyOsc.cpp:58 +msgid "Invert##Y" +msgstr "" + +#: src/gui/xyOsc.cpp:59 src/gui/sampleEdit.cpp:1353 +msgid "Zoom" +msgstr "" + +#: src/gui/xyOsc.cpp:71 +msgid "Decay Time (ms)" +msgstr "" + +#: src/gui/xyOsc.cpp:74 +msgid "Intensity" +msgstr "" + +#: src/gui/xyOsc.cpp:77 +msgid "Line Thickness" +msgstr "" + +#: src/gui/xyOsc.cpp:213 +msgid "(-Infinity)dB,(-Infinity)dB" +msgstr "" + +#: src/gui/xyOsc.cpp:215 +#, c-format +msgid "(-Infinity)dB,%.1fdB" +msgstr "" + +#: src/gui/xyOsc.cpp:217 +#, c-format +msgid "%.1fdB,(-Infinity)dB" +msgstr "" + +#: src/gui/xyOsc.cpp:219 +#, c-format +msgid "%.1fdB,%.1fdB" +msgstr "" + +#: src/gui/sysConf.cpp:49 src/gui/sysConf.cpp:121 src/gui/sysConf.cpp:486 +#: src/gui/sysConf.cpp:604 src/gui/sysConf.cpp:647 src/gui/sysConf.cpp:684 +#: src/gui/sysConf.cpp:843 src/gui/sysConf.cpp:1098 src/gui/sysConf.cpp:1181 +#: src/gui/sysConf.cpp:1220 src/gui/sysConf.cpp:1294 src/gui/sysConf.cpp:1380 +#: src/gui/sysConf.cpp:1444 src/gui/sysConf.cpp:1482 src/gui/sysConf.cpp:1572 +#: src/gui/sysConf.cpp:1668 src/gui/sysConf.cpp:1716 src/gui/sysConf.cpp:1757 +#: src/gui/sysConf.cpp:1810 src/gui/sysConf.cpp:2284 src/gui/sysConf.cpp:2307 +msgid "Clock rate:" +msgstr "" + +#: src/gui/sysConf.cpp:73 src/gui/sysConf.cpp:152 src/gui/sysConf.cpp:911 +#: src/gui/sysConf.cpp:1459 src/gui/sysConf.cpp:1783 +msgid "Chip type:" +msgstr "" + +#: src/gui/sysConf.cpp:75 +msgid "YM3438 (9-bit DAC)" +msgstr "" + +#: src/gui/sysConf.cpp:79 +msgid "YM2612 (9-bit DAC with distortion)" +msgstr "" + +#: src/gui/sysConf.cpp:83 +msgid "YMF276 (external DAC)" +msgstr "" + +#: src/gui/sysConf.cpp:90 src/gui/sysConf.cpp:804 src/gui/sysConf.cpp:1350 +#: src/gui/sysConf.cpp:1420 +msgid "Disable ExtCh FM macros (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:93 src/gui/sysConf.cpp:807 src/gui/sysConf.cpp:1353 +#: src/gui/sysConf.cpp:1423 +msgid "Ins change in ExtCh operator 2-4 affects FB (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:99 +msgid "Modified sine wave (joke)" +msgstr "" + +#: src/gui/sysConf.cpp:123 src/gui/sysConf.cpp:1296 src/gui/sysConf.cpp:1718 +#: src/gui/sysConf.cpp:2286 +msgid "3.58MHz (NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:127 +msgid "3.55MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:131 +msgid "4MHz (BBC Micro)" +msgstr "" + +#: src/gui/sysConf.cpp:135 +msgid "1.79MHz (Half NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:139 +msgid "3MHz (Exed Exes)" +msgstr "" + +#: src/gui/sysConf.cpp:143 +msgid "2MHz (Sega System 1)" +msgstr "" + +#: src/gui/sysConf.cpp:147 +msgid "447KHz (TI-99/4A)" +msgstr "" + +#: src/gui/sysConf.cpp:154 +msgid "Sega VDP/Master System" +msgstr "" + +#: src/gui/sysConf.cpp:162 +msgid "TI SN76489 with Atari-like short noise" +msgstr "" + +#: src/gui/sysConf.cpp:166 +msgid "Game Gear" +msgstr "" + +#: src/gui/sysConf.cpp:170 +msgid "TI SN76489A" +msgstr "" + +#: src/gui/sysConf.cpp:174 +msgid "TI SN76496" +msgstr "" + +#: src/gui/sysConf.cpp:178 +msgid "NCR 8496" +msgstr "" + +#: src/gui/sysConf.cpp:182 +msgid "Tandy PSSJ 3-voice sound" +msgstr "" + +#: src/gui/sysConf.cpp:186 +msgid "TI SN94624" +msgstr "" + +#: src/gui/sysConf.cpp:190 +msgid "TI SN76494" +msgstr "" + +#: src/gui/sysConf.cpp:196 +msgid "Disable noise period change phase reset" +msgstr "" + +#: src/gui/sysConf.cpp:200 src/gui/sysConf.cpp:2190 +msgid "Disable easy period to note mapping on upper octaves" +msgstr "" + +#: src/gui/sysConf.cpp:219 src/gui/sysConf.cpp:583 +msgid "Pseudo-PAL" +msgstr "" + +#: src/gui/sysConf.cpp:222 src/gui/sysConf.cpp:342 +msgid "Disable anti-click" +msgstr "" + +#: src/gui/sysConf.cpp:225 src/gui/sysConf.cpp:345 +msgid "Chip revision:" +msgstr "" + +#: src/gui/sysConf.cpp:227 +msgid "HuC6280 (original)" +msgstr "" + +#: src/gui/sysConf.cpp:231 +msgid "HuC6280A (SuperGrafx)" +msgstr "" + +#: src/gui/sysConf.cpp:257 +msgid "CPU rate:" +msgstr "" + +#: src/gui/sysConf.cpp:259 +msgid "6.18MHz (NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:263 +msgid "5.95MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:268 +msgid "Sample memory:" +msgstr "" + +#: src/gui/sysConf.cpp:270 +msgid "8K (rev A/B/E)" +msgstr "" + +#: src/gui/sysConf.cpp:274 +msgid "64K (rev D/F)" +msgstr "" + +#: src/gui/sysConf.cpp:279 +msgid "DAC resolution:" +msgstr "" + +#: src/gui/sysConf.cpp:281 +msgid "16-bit (rev A/B/D/F)" +msgstr "" + +#: src/gui/sysConf.cpp:285 +msgid "8-bit + TDM (rev C/E)" +msgstr "" + +#: src/gui/sysConf.cpp:290 src/gui/sysConf.cpp:1931 +msgid "Enable echo" +msgstr "" + +#: src/gui/sysConf.cpp:293 +msgid "Swap echo channels" +msgstr "" + +#: src/gui/sysConf.cpp:296 src/gui/sysConf.cpp:1151 +msgid "Echo delay:" +msgstr "" + +#: src/gui/sysConf.cpp:302 +msgid "Echo resolution:" +msgstr "" + +#: src/gui/sysConf.cpp:308 src/gui/sysConf.cpp:1159 +msgid "Echo feedback:" +msgstr "" + +#: src/gui/sysConf.cpp:314 src/gui/sysConf.cpp:1967 +msgid "Echo volume:" +msgstr "" + +#: src/gui/sysConf.cpp:347 +msgid "Original (DMG)" +msgstr "" + +#: src/gui/sysConf.cpp:351 +msgid "Game Boy Color (rev C)" +msgstr "" + +#: src/gui/sysConf.cpp:355 +msgid "Game Boy Color (rev E)" +msgstr "" + +#: src/gui/sysConf.cpp:359 +msgid "Game Boy Advance" +msgstr "" + +#: src/gui/sysConf.cpp:364 +msgid "Wave channel orientation:" +msgstr "" + +#: src/gui/sysConf.cpp:367 src/gui/compatFlags.cpp:298 src/gui/gui.cpp:6067 +#: src/gui/insEdit.cpp:217 src/gui/insEdit.cpp:231 +msgid "Normal" +msgstr "" + +#: src/gui/sysConf.cpp:371 +msgid "Inverted" +msgstr "" + +#: src/gui/sysConf.cpp:378 +msgid "Exact data (inverted)" +msgstr "" + +#: src/gui/sysConf.cpp:382 +msgid "Exact output (normal)" +msgstr "" + +#: src/gui/sysConf.cpp:388 +msgid "" +"Pretty please one more compat flag when I use arpeggio and my sound length" +msgstr "" + +#: src/gui/sysConf.cpp:405 src/gui/sysConf.cpp:438 +msgid "DAC bit depth (reduces output rate):" +msgstr "" + +#: src/gui/sysConf.cpp:426 src/gui/sysConf.cpp:1268 src/gui/sysConf.cpp:1919 +msgid "Volume scale:" +msgstr "" + +#: src/gui/sysConf.cpp:432 +msgid "Mix buffers (allows longer echo delay):" +msgstr "" + +#: src/gui/sysConf.cpp:444 +msgid "Channel limit:" +msgstr "" + +#: src/gui/sysConf.cpp:450 +msgid "Sample rate:" +msgstr "" + +#: src/gui/sysConf.cpp:460 +#, c-format +msgid "Actual sample rate: %d Hz" +msgstr "" + +#: src/gui/sysConf.cpp:462 +#, c-format +msgid "Max mixer CPU usage: %.0f%%" +msgstr "" + +#: src/gui/sysConf.cpp:488 +msgid "NTSC (3.58MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:492 src/gui/sysConf.cpp:557 +msgid "PAL (3.55MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:496 +msgid "Arcade (4MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:500 +msgid "Half NTSC (1.79MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:506 +msgid "Patch set:" +msgstr "" + +#: src/gui/sysConf.cpp:528 +msgid "Ignore top/hi-hat frequency changes" +msgstr "" + +#: src/gui/sysConf.cpp:531 +msgid "Apply fixed frequency to all drums at once" +msgstr "" + +#: src/gui/sysConf.cpp:553 +msgid "NTSC/X16 (3.58MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:561 +msgid "X1/X68000 (4MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:567 src/gui/sysConf.cpp:587 +msgid "Broken pitch macro/slides (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:607 src/gui/sysConf.cpp:650 src/gui/sysConf.cpp:1222 +#: src/gui/sysConf.cpp:2310 +msgid "NTSC (1.79MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:611 src/gui/sysConf.cpp:654 src/gui/sysConf.cpp:1226 +msgid "PAL (1.67MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:615 src/gui/sysConf.cpp:658 src/gui/sysConf.cpp:1230 +msgid "Dendy (1.77MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:621 +msgid "DPCM channel mode:" +msgstr "" + +#: src/gui/sysConf.cpp:624 +msgid "DPCM (muffled samples; low CPU usage)" +msgstr "" + +#: src/gui/sysConf.cpp:628 +msgid "PCM (crisp samples; high CPU usage)" +msgstr "" + +#: src/gui/sysConf.cpp:687 +msgid "NTSC (1.02MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:691 +msgid "PAL (0.99MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:695 +msgid "SSI 2001 (0.89MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:701 src/gui/sysConf.cpp:2320 +msgid "Global parameter priority:" +msgstr "" + +#: src/gui/sysConf.cpp:704 src/gui/sysConf.cpp:2323 +msgid "Left to right" +msgstr "" + +#: src/gui/sysConf.cpp:708 src/gui/sysConf.cpp:2327 +msgid "Last used channel" +msgstr "" + +#: src/gui/sysConf.cpp:714 +msgid "Hard reset envelope:" +msgstr "" + +#: src/gui/sysConf.cpp:716 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:1920 +#: src/gui/insEdit.cpp:6955 src/gui/insEdit.cpp:7481 +msgid "Attack" +msgstr "" + +#: src/gui/sysConf.cpp:721 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:1960 +#: src/gui/insEdit.cpp:6956 src/gui/insEdit.cpp:7482 +msgid "Decay" +msgstr "" + +#: src/gui/sysConf.cpp:726 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:1929 +#: src/gui/insEdit.cpp:6957 src/gui/insEdit.cpp:7483 +msgid "Sustain" +msgstr "" + +#: src/gui/sysConf.cpp:731 src/gui/settings.cpp:3987 src/gui/insEdit.cpp:50 +#: src/gui/insEdit.cpp:604 src/gui/insEdit.cpp:1983 src/gui/insEdit.cpp:6958 +#: src/gui/insEdit.cpp:7484 +msgid "Release" +msgstr "" + +#: src/gui/sysConf.cpp:737 +msgid "Envelope reset time:" +msgstr "" + +#: src/gui/sysConf.cpp:747 +msgid "" +"- 0 disables envelope reset. not recommended!\n" +"- 1 may trigger SID envelope bugs.\n" +"- values that are too high may result in notes being skipped." +msgstr "" + +#: src/gui/sysConf.cpp:749 +msgid "Disable 1Exy env update (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:753 +msgid "Relative duty and cutoff macros are coarse (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:757 +msgid "Cutoff macro race conditions (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:793 +msgid "8MHz (Neo Geo MVS)" +msgstr "" + +#: src/gui/sysConf.cpp:797 +msgid "8.06MHz (Neo Geo AES)" +msgstr "" + +#: src/gui/sysConf.cpp:812 src/gui/sysConf.cpp:1337 src/gui/sysConf.cpp:1407 +msgid "SSG Volume" +msgstr "" + +#: src/gui/sysConf.cpp:818 src/gui/sysConf.cpp:1413 +msgid "FM/ADPCM Volume" +msgstr "" + +#: src/gui/sysConf.cpp:845 +msgid "1.79MHz (ZX Spectrum NTSC/MSX)" +msgstr "" + +#: src/gui/sysConf.cpp:849 +msgid "1.77MHz (ZX Spectrum PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:853 +msgid "0.83MHz (Pre-divided Sunsoft 5B on PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:857 +msgid "0.89MHz (Pre-divided Sunsoft 5B)" +msgstr "" + +#: src/gui/sysConf.cpp:861 +msgid "1MHz (Amstrad CPC)" +msgstr "" + +#: src/gui/sysConf.cpp:865 +msgid "1.10MHz (Gamate/VIC-20 PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:869 +msgid "1.25MHz (Mag Max)" +msgstr "" + +#: src/gui/sysConf.cpp:873 +msgid "1.5MHz (Vectrex)" +msgstr "" + +#: src/gui/sysConf.cpp:877 +msgid "1.536MHz (Kyugo)" +msgstr "" + +#: src/gui/sysConf.cpp:881 +msgid "1.67MHz (?)" +msgstr "" + +#: src/gui/sysConf.cpp:885 +msgid "1.75MHz (ZX Spectrum 48K)" +msgstr "" + +#: src/gui/sysConf.cpp:889 +msgid "1.99MHz (PC-88)" +msgstr "" + +#: src/gui/sysConf.cpp:893 +msgid "2MHz (Atari ST/Sharp X1)" +msgstr "" + +#: src/gui/sysConf.cpp:897 +msgid "2^21Hz (Game Boy)" +msgstr "" + +#: src/gui/sysConf.cpp:901 +msgid "3.58MHz (Darky)" +msgstr "" + +#: src/gui/sysConf.cpp:905 +msgid "3.6MHz (Darky)" +msgstr "" + +#: src/gui/sysConf.cpp:917 +msgid "YM2149(F)" +msgstr "" + +#: src/gui/sysConf.cpp:921 +msgid "Sunsoft 5B" +msgstr "" + +#: src/gui/sysConf.cpp:925 +msgid "AY-3-8914" +msgstr "" + +#: src/gui/sysConf.cpp:931 +msgid "note: AY-3-8914 is not supported by the VGM format!" +msgstr "" + +#: src/gui/sysConf.cpp:935 +msgid "Stereo##_AY_STEREO" +msgstr "" + +#: src/gui/sysConf.cpp:940 +msgid "Separation" +msgstr "" + +#: src/gui/sysConf.cpp:949 +msgid "Half Clock divider##_AY_CLKSEL" +msgstr "" + +#: src/gui/sysConf.cpp:971 +msgid "SAM Coupé (8MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:975 +msgid "NTSC (7.15MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:979 +msgid "PAL (7.09MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:999 +msgid "Stereo separation:" +msgstr "" + +#: src/gui/sysConf.cpp:1006 src/gui/sysConf.cpp:2412 +msgid "Model:" +msgstr "" + +#: src/gui/sysConf.cpp:1008 +msgid "Amiga 500 (OCS)" +msgstr "" + +#: src/gui/sysConf.cpp:1012 +msgid "Amiga 1200 (AGA)" +msgstr "" + +#: src/gui/sysConf.cpp:1018 +msgid "Chip memory:" +msgstr "" + +#: src/gui/sysConf.cpp:1020 +msgid "2MB (ECS/AGA max)" +msgstr "" + +#: src/gui/sysConf.cpp:1030 +msgid "512KB (OCS max)" +msgstr "" + +#: src/gui/sysConf.cpp:1043 src/gui/sysConf.cpp:1081 src/gui/sysConf.cpp:2395 +#: src/gui/sysConf.cpp:2449 +msgid "PAL" +msgstr "" + +#: src/gui/sysConf.cpp:1046 +msgid "Bypass frequency limits" +msgstr "" + +#: src/gui/sysConf.cpp:1065 +msgid "Mixing mode:" +msgstr "" + +#: src/gui/sysConf.cpp:1067 src/gui/settings.cpp:3724 +msgid "Mono" +msgstr "" + +#: src/gui/sysConf.cpp:1071 +msgid "Mono (no distortion)" +msgstr "" + +#: src/gui/sysConf.cpp:1075 src/gui/sysConf.cpp:1197 src/gui/sysConf.cpp:1864 +#: src/gui/sysConf.cpp:2204 +msgid "Stereo" +msgstr "" + +#: src/gui/sysConf.cpp:1100 +msgid "1.19MHz (PC)" +msgstr "" + +#: src/gui/sysConf.cpp:1104 +msgid "1.99MHz (PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1108 +msgid "2.46MHz (PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1114 +msgid "Speaker type:" +msgstr "" + +#: src/gui/sysConf.cpp:1116 +msgid "Unfiltered" +msgstr "" + +#: src/gui/sysConf.cpp:1120 +msgid "Cone" +msgstr "" + +#: src/gui/sysConf.cpp:1124 +msgid "Piezo" +msgstr "" + +#: src/gui/sysConf.cpp:1128 +msgid "Use system beeper (Linux only!)" +msgstr "" + +#: src/gui/sysConf.cpp:1134 +msgid "Reset phase on frequency change" +msgstr "" + +#: src/gui/sysConf.cpp:1183 +msgid "16MHz (Seta 1)" +msgstr "" + +#: src/gui/sysConf.cpp:1187 +msgid "16.67MHz (Seta 2)" +msgstr "" + +#: src/gui/sysConf.cpp:1191 src/gui/sysConf.cpp:1759 +msgid "14.32MHz (NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:1201 +msgid "Bankswitched (Seta 2)" +msgstr "" + +#: src/gui/sysConf.cpp:1235 src/gui/sysConf.cpp:1261 +msgid "Initial channel limit:" +msgstr "" + +#: src/gui/sysConf.cpp:1241 src/gui/sysConf.cpp:2398 +msgid "Disable hissing" +msgstr "" + +#: src/gui/sysConf.cpp:1244 +msgid "Scale frequency to wave length" +msgstr "" + +#: src/gui/sysConf.cpp:1300 src/gui/sysConf.cpp:1722 +msgid "3.54MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:1304 src/gui/sysConf.cpp:1726 src/gui/sysConf.cpp:2290 +msgid "4MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1308 src/gui/sysConf.cpp:1730 +msgid "3MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1312 src/gui/sysConf.cpp:1734 +msgid "3.9936MHz (PC-88/PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1316 +msgid "1.5MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1321 src/gui/sysConf.cpp:1391 src/gui/sysConf.cpp:1639 +#: src/gui/sysConf.cpp:1852 +msgid "Output rate:" +msgstr "" + +#: src/gui/sysConf.cpp:1323 src/gui/sysConf.cpp:1397 +msgid "FM: clock / 72, SSG: clock / 16" +msgstr "" + +#: src/gui/sysConf.cpp:1327 +msgid "FM: clock / 36, SSG: clock / 8" +msgstr "" + +#: src/gui/sysConf.cpp:1331 +msgid "FM: clock / 24, SSG: clock / 4" +msgstr "" + +#: src/gui/sysConf.cpp:1343 +msgid "FM Volume" +msgstr "" + +#: src/gui/sysConf.cpp:1382 +msgid "8MHz (Arcade)" +msgstr "" + +#: src/gui/sysConf.cpp:1386 +msgid "7.987MHz (PC-88/PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1393 +msgid "FM: clock / 144, SSG: clock / 32" +msgstr "" + +#: src/gui/sysConf.cpp:1401 +msgid "FM: clock / 48, SSG: clock / 8" +msgstr "" + +#: src/gui/sysConf.cpp:1446 +msgid "8MHz (FM Towns)" +msgstr "" + +#: src/gui/sysConf.cpp:1450 +msgid "10MHz (Sega System 18)" +msgstr "" + +#: src/gui/sysConf.cpp:1454 +msgid "12.5MHz (Sega CD/System 32)" +msgstr "" + +#: src/gui/sysConf.cpp:1461 +msgid "RF5C68 (10-bit output)" +msgstr "" + +#: src/gui/sysConf.cpp:1465 +msgid "RF5C164 (16-bit output)" +msgstr "" + +#: src/gui/sysConf.cpp:1520 +msgid "Sample rate table:" +msgstr "" + +#: src/gui/sysConf.cpp:1524 +msgid "divider \\ clock" +msgstr "" + +#: src/gui/sysConf.cpp:1526 +msgid "full" +msgstr "" + +#: src/gui/sysConf.cpp:1528 +msgid "half" +msgstr "" + +#: src/gui/sysConf.cpp:1641 +msgid "clock / 132" +msgstr "" + +#: src/gui/sysConf.cpp:1645 +msgid "clock / 165" +msgstr "" + +#: src/gui/sysConf.cpp:1651 +msgid "Bankswitched (NMK112)" +msgstr "" + +#: src/gui/sysConf.cpp:1670 +msgid "1.79MHz (NTSC/MSX)" +msgstr "" + +#: src/gui/sysConf.cpp:1674 +msgid "1.77MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:1678 +msgid "1.5MHz (Arcade)" +msgstr "" + +#: src/gui/sysConf.cpp:1682 +msgid "2MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1697 +msgid "Consistent frequency across all duties" +msgstr "" + +#: src/gui/sysConf.cpp:1704 +msgid "note: only works for an initial LFSR value of 0!" +msgstr "" + +#: src/gui/sysConf.cpp:1738 +msgid "3.5MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1763 +msgid "14.19MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:1767 +msgid "14MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1771 +msgid "16MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1775 +msgid "15MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1779 +msgid "33.8688MHz (OPL3-L)" +msgstr "" + +#: src/gui/sysConf.cpp:1784 +msgid "OPL3 (YMF262)" +msgstr "" + +#: src/gui/sysConf.cpp:1788 +msgid "OPL3-L (YMF289B)" +msgstr "" + +#: src/gui/sysConf.cpp:1794 +msgid "Compatible panning (0800)" +msgstr "" + +#: src/gui/sysConf.cpp:1858 +msgid "Output bit depth:" +msgstr "" + +#: src/gui/sysConf.cpp:1868 +msgid "Interpolation:" +msgstr "" + +#: src/gui/sysConf.cpp:1874 src/gui/waveEdit.cpp:38 +msgid "Linear" +msgstr "" + +#: src/gui/sysConf.cpp:1878 src/gui/waveEdit.cpp:40 +msgid "Cubic" +msgstr "" + +#: src/gui/sysConf.cpp:1882 +msgid "Sinc" +msgstr "" + +#: src/gui/sysConf.cpp:1920 +msgid "Left##VolScaleL" +msgstr "" + +#: src/gui/sysConf.cpp:1925 +msgid "Right##VolScaleL" +msgstr "" + +#: src/gui/sysConf.cpp:1935 +msgid "Initial echo state:" +msgstr "" + +#: src/gui/sysConf.cpp:1955 +msgid "Delay##EchoDelay" +msgstr "" + +#: src/gui/sysConf.cpp:1961 +msgid "Feedback##EchoFeedback" +msgstr "" + +#: src/gui/sysConf.cpp:1968 +msgid "Left##EchoVolL" +msgstr "" + +#: src/gui/sysConf.cpp:1973 +msgid "Right##EchoVolL" +msgstr "" + +#: src/gui/sysConf.cpp:1979 +msgid "Echo filter:" +msgstr "" + +#: src/gui/sysConf.cpp:1989 +msgid "Hex##SNESFHex" +msgstr "" + +#: src/gui/sysConf.cpp:1989 +msgid "Dec##SNESFHex" +msgstr "" + +#: src/gui/sysConf.cpp:2031 +#, c-format +msgid "sum: %d" +msgstr "" + +#: src/gui/sysConf.cpp:2086 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:63 +#: src/gui/insEdit.cpp:75 +msgid "Detune" +msgstr "" + +#: src/gui/sysConf.cpp:2092 +msgid "Capacitor values (nF):" +msgstr "" + +#: src/gui/sysConf.cpp:2102 +msgid "Initial part volume (channel 1-4):" +msgstr "" + +#: src/gui/sysConf.cpp:2112 +msgid "Initial part volume (channel 5-8):" +msgstr "" + +#: src/gui/sysConf.cpp:2122 +msgid "Envelope mode (channel 1-4):" +msgstr "" + +#: src/gui/sysConf.cpp:2124 +msgid "Capacitor (attack/decay)##EM00" +msgstr "" + +#: src/gui/sysConf.cpp:2128 +msgid "External (volume macro)##EM01" +msgstr "" + +#: src/gui/sysConf.cpp:2134 +msgid "Envelope mode (channel 5-8):" +msgstr "" + +#: src/gui/sysConf.cpp:2136 +msgid "Capacitor (attack/decay)##EM10" +msgstr "" + +#: src/gui/sysConf.cpp:2140 +msgid "External (volume macro)##EM11" +msgstr "" + +#: src/gui/sysConf.cpp:2146 +msgid "Global vibrato:" +msgstr "" + +#: src/gui/sysConf.cpp:2153 +msgid "Depth" +msgstr "" + +#: src/gui/sysConf.cpp:2219 src/gui/sysConf.cpp:2373 +msgid "Waveform storage mode:" +msgstr "" + +#: src/gui/sysConf.cpp:2221 +msgid "RAM" +msgstr "" + +#: src/gui/sysConf.cpp:2225 +msgid "ROM (up to 8 waves)" +msgstr "" + +#: src/gui/sysConf.cpp:2241 +msgid "Compatible noise frequencies" +msgstr "" + +#: src/gui/sysConf.cpp:2256 +msgid "Legacy slides and pitch (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:2314 +msgid "PAL (1.77MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:2344 +msgid "Banking style:" +msgstr "" + +#: src/gui/sysConf.cpp:2346 +msgid "Namco System 2 (2MB)" +msgstr "" + +#: src/gui/sysConf.cpp:2351 +msgid "Namco System 21 (4MB)" +msgstr "" + +#: src/gui/sysConf.cpp:2356 +msgid "Raw (16MB; no VGM export!)" +msgstr "" + +#: src/gui/sysConf.cpp:2375 +msgid "Dynamic (unconfirmed)" +msgstr "" + +#: src/gui/sysConf.cpp:2379 +msgid "Static (up to 5 waves)" +msgstr "" + +#: src/gui/sysConf.cpp:2414 +msgid "DS (4MB RAM)" +msgstr "" + +#: src/gui/sysConf.cpp:2418 +msgid "DSi (16MB RAM)" +msgstr "" + +#: src/gui/sysConf.cpp:2444 src/gui/settings.cpp:727 +msgid "nothing to configure" +msgstr "" + +#: src/gui/sysConf.cpp:2467 +msgid "Custom clock rate" +msgstr "" + +#: src/gui/volMeter.cpp:36 src/gui/settings.cpp:3969 src/gui/guiConst.cpp:596 +msgid "Volume Meter" +msgstr "" + +#: src/gui/userPresets.cpp:325 +msgid "User Systems" +msgstr "" + +#: src/gui/userPresets.cpp:337 +msgid "Error! User category does not exist!" +msgstr "" + +#: src/gui/userPresets.cpp:346 src/gui/newSong.cpp:181 +msgid "Systems" +msgstr "" + +#: src/gui/userPresets.cpp:349 +msgid "New Preset" +msgstr "" + +#: src/gui/userPresets.cpp:361 +msgid "select a preset" +msgstr "" + +#: src/gui/userPresets.cpp:374 +msgid "Remove##UPresetRemove" +msgstr "" + +#: src/gui/userPresets.cpp:439 src/gui/settings.cpp:1135 +msgid "Configure" +msgstr "" + +#: src/gui/userPresets.cpp:470 +msgid "Advanced" +msgstr "" + +#: src/gui/userPresets.cpp:476 +msgid "" +"insert additional settings in `option=value` format.\n" +"available options:\n" +"- tickRate" +msgstr "" + +#: src/gui/userPresets.cpp:509 +msgid "Save and Close" +msgstr "" + +#: src/gui/userPresets.cpp:515 src/gui/settings.cpp:1238 +#: src/gui/settings.cpp:2161 src/gui/settings.cpp:2553 +#: src/gui/settings.cpp:3796 +msgid "Import" +msgstr "" + +#: src/gui/userPresets.cpp:519 +msgid "Import (replace)" +msgstr "" + +#: src/gui/effectList.cpp:14 src/gui/guiConst.cpp:606 +msgid "Effect List" +msgstr "" + +#: src/gui/effectList.cpp:18 +#, c-format +msgid "Chip at cursor: %s" +msgstr "" + +#: src/gui/effectList.cpp:21 src/gui/settings.cpp:6674 +msgid "Search" +msgstr "" + +#: src/gui/effectList.cpp:25 +msgid "Effect types to show:" +msgstr "" + +#: src/gui/effectList.cpp:47 +msgid "Description" +msgstr "" + +#: src/gui/subSongs.cpp:22 src/gui/subSongs.cpp:32 +#, c-format +msgid "%d. " +msgstr "" + +#: src/gui/subSongs.cpp:73 src/gui/subSongs.cpp:93 +msgid "too many subsongs!" +msgstr "" + +#: src/gui/subSongs.cpp:114 +msgid "this is the only subsong!" +msgstr "" + +#: src/gui/subSongs.cpp:116 +msgid "are you sure you want to remove this subsong?" +msgstr "" + +#: src/gui/spoiler.cpp:30 +msgid "Spoiler" +msgstr "" + +#: src/gui/spoiler.cpp:32 +msgid "SPOILER" +msgstr "" + +#: src/gui/settings.cpp:104 src/gui/settings.cpp:114 src/gui/settings.cpp:124 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:105 src/gui/settings.cpp:115 src/gui/settings.cpp:125 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:168 +msgid "ASAP (C++ port)" +msgstr "" + +#: src/gui/settings.cpp:191 +msgid "ESFMu (fast)" +msgstr "" + +#: src/gui/settings.cpp:205 +msgid "Lower" +msgstr "" + +#: src/gui/settings.cpp:207 +msgid "Medium" +msgstr "" + +#: src/gui/settings.cpp:209 +msgid "Ultra" +msgstr "" + +#: src/gui/settings.cpp:210 +msgid "Ultimate" +msgstr "" + +#: src/gui/settings.cpp:214 +msgid "evdev SND_TONE" +msgstr "" + +#: src/gui/settings.cpp:215 +msgid "KIOCSOUND on /dev/tty1" +msgstr "" + +#: src/gui/settings.cpp:216 +msgid "/dev/port" +msgstr "" + +#: src/gui/settings.cpp:217 +msgid "KIOCSOUND on standard output" +msgstr "" + +#: src/gui/settings.cpp:218 +msgid "outb()" +msgstr "" + +#: src/gui/settings.cpp:222 src/gui/settings.cpp:232 +msgid "Disabled/custom" +msgstr "" + +#: src/gui/settings.cpp:223 +msgid "Two octaves (0 is C-4, F is D#5)" +msgstr "" + +#: src/gui/settings.cpp:224 +msgid "Raw (note number is value)" +msgstr "" + +#: src/gui/settings.cpp:225 +msgid "Two octaves alternate (lower keys are 0-9, upper keys are A-F)" +msgstr "" + +#: src/gui/settings.cpp:226 src/gui/settings.cpp:233 +msgid "Use dual control change (one for each nibble)" +msgstr "" + +#: src/gui/settings.cpp:227 src/gui/settings.cpp:234 +msgid "Use 14-bit control change" +msgstr "" + +#: src/gui/settings.cpp:228 src/gui/settings.cpp:235 +msgid "Use single control change (imprecise)" +msgstr "" + +#: src/gui/settings.cpp:239 +msgid "--select--" +msgstr "" + +#: src/gui/settings.cpp:240 src/gui/settings.cpp:241 src/gui/settings.cpp:242 +#: src/gui/settings.cpp:243 src/gui/settings.cpp:244 src/gui/settings.cpp:245 +#: src/gui/settings.cpp:246 +msgid "???" +msgstr "" + +#: src/gui/settings.cpp:247 +msgid "Note Off" +msgstr "" + +#: src/gui/settings.cpp:248 +msgid "Note On" +msgstr "" + +#: src/gui/settings.cpp:249 +msgid "Aftertouch" +msgstr "" + +#: src/gui/settings.cpp:250 src/gui/insEdit.cpp:7187 src/gui/insEdit.cpp:7217 +#: src/gui/insEdit.cpp:7382 src/gui/insEdit.cpp:7403 src/gui/insEdit.cpp:7415 +#: src/gui/insEdit.cpp:7430 +msgid "Control" +msgstr "" + +#: src/gui/settings.cpp:251 src/gui/settings.cpp:573 src/gui/settings.cpp:3177 +msgid "Program" +msgstr "" + +#: src/gui/settings.cpp:252 +msgid "ChanPressure" +msgstr "" + +#: src/gui/settings.cpp:253 +msgid "Pitch Bend" +msgstr "" + +#: src/gui/settings.cpp:254 +msgid "SysEx" +msgstr "" + +#: src/gui/settings.cpp:258 src/gui/settings.cpp:1713 src/gui/settings.cpp:1723 +#: src/gui/settings.cpp:1743 src/gui/settings.cpp:1749 +#, c-format +msgid "Any" +msgstr "" + +#: src/gui/settings.cpp:262 src/gui/settings.cpp:3363 src/gui/settings.cpp:3928 +#: src/gui/settings.cpp:4121 +msgid "Instrument" +msgstr "" + +#: src/gui/settings.cpp:264 +msgid "Effect 1 type" +msgstr "" + +#: src/gui/settings.cpp:265 +msgid "Effect 1 value" +msgstr "" + +#: src/gui/settings.cpp:266 +msgid "Effect 2 type" +msgstr "" + +#: src/gui/settings.cpp:267 +msgid "Effect 2 value" +msgstr "" + +#: src/gui/settings.cpp:268 +msgid "Effect 3 type" +msgstr "" + +#: src/gui/settings.cpp:269 +msgid "Effect 3 value" +msgstr "" + +#: src/gui/settings.cpp:270 +msgid "Effect 4 type" +msgstr "" + +#: src/gui/settings.cpp:271 +msgid "Effect 4 value" +msgstr "" + +#: src/gui/settings.cpp:272 +msgid "Effect 5 type" +msgstr "" + +#: src/gui/settings.cpp:273 +msgid "Effect 5 value" +msgstr "" + +#: src/gui/settings.cpp:274 +msgid "Effect 6 type" +msgstr "" + +#: src/gui/settings.cpp:275 +msgid "Effect 6 value" +msgstr "" + +#: src/gui/settings.cpp:276 +msgid "Effect 7 type" +msgstr "" + +#: src/gui/settings.cpp:277 +msgid "Effect 7 value" +msgstr "" + +#: src/gui/settings.cpp:278 +msgid "Effect 8 type" +msgstr "" + +#: src/gui/settings.cpp:279 +msgid "Effect 8 value" +msgstr "" + +#: src/gui/settings.cpp:315 +msgid "Press key..." +msgstr "" + +#: src/gui/settings.cpp:564 +msgid "Do you want to save your settings?" +msgstr "" + +#: src/gui/settings.cpp:571 +msgid "General" +msgstr "" + +#: src/gui/settings.cpp:588 +msgid "Language" +msgstr "" + +#: src/gui/settings.cpp:606 +msgid "Render backend" +msgstr "" + +#: src/gui/settings.cpp:661 src/gui/settings.cpp:680 src/gui/settings.cpp:1312 +msgid "you may need to restart Furnace for this setting to take effect." +msgstr "" + +#: src/gui/settings.cpp:664 +msgid "Advanced render backend settings" +msgstr "" + +#: src/gui/settings.cpp:666 +msgid "Render driver" +msgstr "" + +#: src/gui/settings.cpp:666 src/gui/settings.cpp:667 src/gui/settings.cpp:1298 +#: src/gui/settings.cpp:1299 src/gui/piano.cpp:108 +msgid "Automatic" +msgstr "" + +#: src/gui/settings.cpp:683 +msgid "" +"beware: changing these settings may render Furnace unusable! do so at your " +"own risk.\n" +"start Furnace with -safemode if you mess something up." +msgstr "" + +#: src/gui/settings.cpp:684 +msgid "Red bits" +msgstr "" + +#: src/gui/settings.cpp:689 +msgid "Green bits" +msgstr "" + +#: src/gui/settings.cpp:694 +msgid "Blue bits" +msgstr "" + +#: src/gui/settings.cpp:699 +msgid "Alpha bits" +msgstr "" + +#: src/gui/settings.cpp:704 +msgid "Color depth" +msgstr "" + +#: src/gui/settings.cpp:709 +msgid "Stencil buffer size" +msgstr "" + +#: src/gui/settings.cpp:714 src/gui/settings.cpp:1385 +msgid "Buffer size" +msgstr "" + +#: src/gui/settings.cpp:720 +msgid "Double buffer" +msgstr "" + +#: src/gui/settings.cpp:725 +msgid "" +"the following values are common (in red, green, blue, alpha order):\n" +"- 24 bits: 8, 8, 8, 0\n" +"- 16 bits: 5, 6, 5, 0\n" +"- 32 bits (with alpha): 8, 8, 8, 8\n" +"- 30 bits (deep): 10, 10, 10, 0" +msgstr "" + +#: src/gui/settings.cpp:732 +#, c-format +msgid "" +"current backend: %s\n" +"%s\n" +"%s\n" +"%s" +msgstr "" + +#: src/gui/settings.cpp:735 +msgid "VSync" +msgstr "" + +#: src/gui/settings.cpp:743 +msgid "Frame rate limit" +msgstr "" + +#: src/gui/settings.cpp:743 +msgid "Unlimited" +msgstr "" + +#: src/gui/settings.cpp:749 +msgid "only applies when VSync is disabled." +msgstr "" + +#: src/gui/settings.cpp:753 +msgid "Display render time" +msgstr "" + +#: src/gui/settings.cpp:760 +msgid "Late render clear" +msgstr "" + +#: src/gui/settings.cpp:765 +msgid "" +"calls rend->clear() after rend->present(). might reduce UI latency by one " +"frame in some drivers." +msgstr "" + +#: src/gui/settings.cpp:770 +msgid "Power-saving mode" +msgstr "" + +#: src/gui/settings.cpp:775 +msgid "" +"saves power by lowering the frame rate to 2fps when idle.\n" +"may cause issues under Mesa drivers!" +msgstr "" + +#: src/gui/settings.cpp:780 +msgid "Disable threaded input (restart after changing!)" +msgstr "" + +#: src/gui/settings.cpp:785 +msgid "" +"threaded input processes key presses for note preview on a separate thread " +"(on supported platforms), which reduces latency.\n" +"however, crashes have been reported when threaded input is on. enable this " +"option if that is the case." +msgstr "" + +#: src/gui/settings.cpp:790 +msgid "Enable event delay" +msgstr "" + +#: src/gui/settings.cpp:796 +msgid "may cause issues with high-polling-rate mice when previewing notes." +msgstr "" + +#: src/gui/settings.cpp:800 +msgid "Per-channel oscilloscope threads" +msgstr "" + +#: src/gui/settings.cpp:808 +msgid "you're being silly, aren't you? that's enough." +msgstr "" + +#: src/gui/settings.cpp:812 +msgid "what are you doing? stop!" +msgstr "" + +#: src/gui/settings.cpp:816 +#, c-format +msgid "" +"it is a bad idea to set this number higher than your CPU core count (%d)!" +msgstr "" + +#: src/gui/settings.cpp:821 +msgid "Oscilloscope rendering engine:" +msgstr "" + +#: src/gui/settings.cpp:823 +msgid "ImGui line plot" +msgstr "" + +#: src/gui/settings.cpp:827 +msgid "render using Dear ImGui's built-in line drawing functions." +msgstr "" + +#: src/gui/settings.cpp:829 +msgid "GLSL (if available)" +msgstr "" + +#: src/gui/settings.cpp:834 +msgid "" +"render using shaders that run on the graphics card.\n" +"only available in OpenGL ES 2.0 render backend." +msgstr "" + +#: src/gui/settings.cpp:836 +msgid "" +"render using shaders that run on the graphics card.\n" +"only available in OpenGL 3.0 render backend." +msgstr "" + +#: src/gui/settings.cpp:843 +msgid "Vibration" +msgstr "" + +#: src/gui/settings.cpp:845 +msgid "Strength" +msgstr "" + +#: src/gui/settings.cpp:851 src/gui/insEdit.cpp:2284 src/gui/insEdit.cpp:2382 +#: src/gui/insEdit.cpp:5582 src/gui/insEdit.cpp:6241 +msgid "Length" +msgstr "" + +#: src/gui/settings.cpp:859 src/gui/gui.cpp:4191 +msgid "File" +msgstr "" + +#: src/gui/settings.cpp:862 +msgid "Use system file picker" +msgstr "" + +#: src/gui/settings.cpp:867 +msgid "Number of recent files" +msgstr "" + +#: src/gui/settings.cpp:874 +msgid "Compress when saving" +msgstr "" + +#: src/gui/settings.cpp:879 +msgid "use zlib to compress saved songs." +msgstr "" + +#: src/gui/settings.cpp:883 +msgid "Save unused patterns" +msgstr "" + +#: src/gui/settings.cpp:889 +msgid "Use new pattern format when saving" +msgstr "" + +#: src/gui/settings.cpp:894 +msgid "" +"use a packed format which saves space when saving songs.\n" +"disable if you need compatibility with older Furnace and/or tools\n" +"which do not support this format." +msgstr "" + +#: src/gui/settings.cpp:898 +msgid "Don't apply compatibility flags when loading .dmf" +msgstr "" + +#: src/gui/settings.cpp:903 +msgid "do not report any issues arising from the use of this option!" +msgstr "" + +#: src/gui/settings.cpp:906 +msgid "Play after opening song:" +msgstr "" + +#: src/gui/settings.cpp:908 +msgid "No##pol0" +msgstr "" + +#: src/gui/settings.cpp:912 +msgid "Only if already playing##pol1" +msgstr "" + +#: src/gui/settings.cpp:916 +msgid "Yes##pol0" +msgstr "" + +#: src/gui/settings.cpp:922 +msgid "Audio export loop/fade out time:" +msgstr "" + +#: src/gui/settings.cpp:924 +msgid "Set to these values on start-up:##fot0" +msgstr "" + +#: src/gui/settings.cpp:942 +msgid "Remember last values##fot1" +msgstr "" + +#: src/gui/settings.cpp:949 +msgid "Store instrument name in .fui" +msgstr "" + +#: src/gui/settings.cpp:954 +msgid "" +"when enabled, saving an instrument will store its name.\n" +"this may increase file size." +msgstr "" + +#: src/gui/settings.cpp:958 +msgid "Load instrument name from .fui" +msgstr "" + +#: src/gui/settings.cpp:963 +msgid "" +"when enabled, loading an instrument will use the stored name (if present).\n" +"otherwise, it will use the file name." +msgstr "" + +#: src/gui/settings.cpp:967 +msgid "Auto-fill file name when saving" +msgstr "" + +#: src/gui/settings.cpp:972 +msgid "" +"fill the file name field with an appropriate file name when saving or " +"exporting." +msgstr "" + +#: src/gui/settings.cpp:976 src/gui/gui.cpp:5563 src/gui/gui.cpp:5613 +msgid "New Song" +msgstr "" + +#: src/gui/settings.cpp:978 +msgid "Initial system:" +msgstr "" + +#: src/gui/settings.cpp:980 +msgid "Current system" +msgstr "" + +#: src/gui/settings.cpp:993 src/gui/waveEdit.cpp:1149 src/gui/gui.cpp:3046 +msgid "Randomize" +msgstr "" + +#: src/gui/settings.cpp:1043 +msgid "Reset to defaults" +msgstr "" + +#: src/gui/settings.cpp:1178 +msgid "When creating new song:" +msgstr "" + +#: src/gui/settings.cpp:1180 +msgid "Display system preset selector##NSB0" +msgstr "" + +#: src/gui/settings.cpp:1184 +msgid "Start with initial system##NSB1" +msgstr "" + +#: src/gui/settings.cpp:1188 +msgid "Default author name" +msgstr "" + +#: src/gui/settings.cpp:1192 +msgid "Start-up" +msgstr "" + +#: src/gui/settings.cpp:1193 +msgid "Play intro on start-up:" +msgstr "" + +#: src/gui/settings.cpp:1195 +msgid "No##pis0" +msgstr "" + +#: src/gui/settings.cpp:1199 +msgid "Short##pis1" +msgstr "" + +#: src/gui/settings.cpp:1203 +msgid "Full (short when loading song)##pis2" +msgstr "" + +#: src/gui/settings.cpp:1207 +msgid "Full (always)##pis3" +msgstr "" + +#: src/gui/settings.cpp:1214 +msgid "Disable fade-in during start-up" +msgstr "" + +#: src/gui/settings.cpp:1220 +msgid "About screen party time" +msgstr "" + +#: src/gui/settings.cpp:1225 +msgid "Warning: may cause epileptic seizures." +msgstr "" + +#: src/gui/settings.cpp:1229 +msgid "Behavior" +msgstr "" + +#: src/gui/settings.cpp:1231 +msgid "New instruments are blank" +msgstr "" + +#: src/gui/settings.cpp:1237 src/gui/settings.cpp:4255 +msgid "Configuration" +msgstr "" + +#: src/gui/settings.cpp:1246 +msgid "Factory Reset" +msgstr "" + +#: src/gui/settings.cpp:1247 +msgid "" +"Are you sure you want to reset all Furnace settings?\n" +"You must restart Furnace after doing so." +msgstr "" + +#: src/gui/settings.cpp:1255 +msgid "Output" +msgstr "" + +#: src/gui/settings.cpp:1263 +msgid "Backend" +msgstr "" + +#: src/gui/settings.cpp:1296 +msgid "Driver" +msgstr "" + +#: src/gui/settings.cpp:1319 +msgid "Device" +msgstr "" + +#: src/gui/settings.cpp:1323 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:1324 +msgid "ALERT - TRESPASSER DETECTED" +msgstr "" + +#: src/gui/settings.cpp:1326 +msgid "you have been arrested for trying to engage with a disabled combo box." +msgstr "" + +#: src/gui/settings.cpp:1333 src/gui/settings.cpp:1335 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:1371 src/gui/insEdit.cpp:7186 +msgid "Outputs" +msgstr "" + +#: src/gui/settings.cpp:1379 +msgid "" +"common values:\n" +"- 1 for mono\n" +"- 2 for stereo\n" +"- 4 for quadraphonic\n" +"- 6 for 5.1 surround\n" +"- 8 for 7.1 surround" +msgstr "" + +#: src/gui/settings.cpp:1387 +#, c-format +msgid "%d (latency: ~%.1fms)" +msgstr "" + +#: src/gui/settings.cpp:1402 +msgid "Multi-threaded (EXPERIMENTAL)" +msgstr "" + +#: src/gui/settings.cpp:1411 +msgid "" +"runs chip emulation on separate threads.\n" +"may increase performance when using heavy emulation cores.\n" +"\n" +"warnings:\n" +"- experimental!\n" +"- only useful on multi-chip songs." +msgstr "" + +#: src/gui/settings.cpp:1416 +msgid "Number of threads" +msgstr "" + +#: src/gui/settings.cpp:1423 +msgid "that's the limit!" +msgstr "" + +#: src/gui/settings.cpp:1427 +#, c-format +msgid "" +"it is a VERY bad idea to set this number higher than your CPU core count " +"(%d)!" +msgstr "" + +#: src/gui/settings.cpp:1435 +msgid "Low-latency mode" +msgstr "" + +#: src/gui/settings.cpp:1440 +msgid "" +"reduces latency by running the engine faster than the tick rate.\n" +"useful for live playback/jam mode.\n" +"\n" +"warning: only enable if your buffer size is small (10ms or less)." +msgstr "" + +#: src/gui/settings.cpp:1444 +msgid "Force mono audio" +msgstr "" + +#: src/gui/settings.cpp:1452 +msgid "Exclusive mode" +msgstr "" + +#: src/gui/settings.cpp:1463 +#, c-format +msgid "want: %d samples @ %.0fHz (%d channel)" +msgid_plural "want: %d samples @ %.0fHz (%d channels)" +msgstr[0] "" +msgstr[1] "" + +#: src/gui/settings.cpp:1464 +#, c-format +msgid "got: %d samples @ %.0fHz (%d channel)" +msgid_plural "got: %d samples @ %.0fHz (%d channels)" +msgstr[0] "" +msgstr[1] "" + +#: src/gui/settings.cpp:1471 +msgid "Mixing" +msgstr "" + +#: src/gui/settings.cpp:1473 src/gui/settings.cpp:2082 +msgid "Quality" +msgstr "" + +#: src/gui/settings.cpp:1478 +msgid "Software clipping" +msgstr "" + +#: src/gui/settings.cpp:1484 +msgid "DC offset correction" +msgstr "" + +#: src/gui/settings.cpp:1502 src/gui/guiConst.cpp:740 +msgid "Sample preview" +msgstr "" + +#: src/gui/settings.cpp:1515 +msgid "MIDI" +msgstr "" + +#: src/gui/settings.cpp:1517 src/gui/settings.cpp:1519 +msgid "MIDI input" +msgstr "" + +#: src/gui/settings.cpp:1521 src/gui/settings.cpp:1524 +#: src/gui/settings.cpp:1815 src/gui/settings.cpp:1817 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:1540 +msgid "Re-scan MIDI devices" +msgstr "" + +#: src/gui/settings.cpp:1551 src/gui/settings.cpp:2258 +msgid "Note input" +msgstr "" + +#: src/gui/settings.cpp:1552 +msgid "Velocity input" +msgstr "" + +#: src/gui/settings.cpp:1556 +msgid "Map MIDI channels to direct channels" +msgstr "" + +#: src/gui/settings.cpp:1562 +msgid "Program change pass-through" +msgstr "" + +#: src/gui/settings.cpp:1567 +msgid "Map Yamaha FM voice data to instruments" +msgstr "" + +#: src/gui/settings.cpp:1569 +msgid "Program change is instrument selection" +msgstr "" + +#: src/gui/settings.cpp:1573 +msgid "Value input style" +msgstr "" + +#: src/gui/settings.cpp:1576 src/gui/settings.cpp:1601 +msgid "Control##valueCCS" +msgstr "" + +#: src/gui/settings.cpp:1582 src/gui/settings.cpp:1607 +msgid "CC of upper nibble##valueCC1" +msgstr "" + +#: src/gui/settings.cpp:1582 src/gui/settings.cpp:1607 +msgid "MSB CC##valueCC1" +msgstr "" + +#: src/gui/settings.cpp:1587 src/gui/settings.cpp:1612 +msgid "CC of lower nibble##valueCC2" +msgstr "" + +#: src/gui/settings.cpp:1587 src/gui/settings.cpp:1612 +msgid "LSB CC##valueCC2" +msgstr "" + +#: src/gui/settings.cpp:1594 +msgid "Per-column control change" +msgstr "" + +#: src/gui/settings.cpp:1624 src/gui/settings.cpp:1634 +msgid "Volume curve" +msgstr "" + +#: src/gui/settings.cpp:1637 +msgid "Actions:" +msgstr "" + +#: src/gui/settings.cpp:1651 +msgid "" +"(learning! press a button or move a slider/knob/something on your device.)" +msgstr "" + +#: src/gui/settings.cpp:1665 src/gui/settings.cpp:2277 +#: src/gui/settings.cpp:6687 src/gui/sampleEdit.cpp:501 +#: src/gui/insEdit.cpp:5321 +msgid "Type" +msgstr "" + +#: src/gui/settings.cpp:1669 +msgid "Note/Control" +msgstr "" + +#: src/gui/settings.cpp:1671 +msgid "Velocity/Value" +msgstr "" + +#: src/gui/settings.cpp:1673 +msgid "Action" +msgstr "" + +#: src/gui/settings.cpp:1765 src/gui/settings.cpp:1766 +msgid "--none--" +msgstr "" + +#: src/gui/settings.cpp:1787 +msgid "waiting...##BLearn" +msgstr "" + +#: src/gui/settings.cpp:1787 +msgid "Learn##BLearn" +msgstr "" + +#: src/gui/settings.cpp:1811 src/gui/settings.cpp:1813 +msgid "MIDI output" +msgstr "" + +#: src/gui/settings.cpp:1830 +msgid "Output mode:" +msgstr "" + +#: src/gui/settings.cpp:1832 +msgid "Off (use for TX81Z)" +msgstr "" + +#: src/gui/settings.cpp:1836 +msgid "Melodic" +msgstr "" + +#: src/gui/settings.cpp:1847 +msgid "Send Program Change" +msgstr "" + +#: src/gui/settings.cpp:1853 +msgid "Send MIDI clock" +msgstr "" + +#: src/gui/settings.cpp:1859 +msgid "Send MIDI timecode" +msgstr "" + +#: src/gui/settings.cpp:1865 +msgid "Timecode frame rate:" +msgstr "" + +#: src/gui/settings.cpp:1867 +msgid "Closest to Tick Rate" +msgstr "" + +#: src/gui/settings.cpp:1871 +msgid "Film (24fps)" +msgstr "" + +#: src/gui/settings.cpp:1875 +msgid "PAL (25fps)" +msgstr "" + +#: src/gui/settings.cpp:1879 +msgid "NTSC drop (29.97fps)" +msgstr "" + +#: src/gui/settings.cpp:1883 +msgid "NTSC non-drop (30fps)" +msgstr "" + +#: src/gui/settings.cpp:1892 +msgid "Emulation" +msgstr "" + +#: src/gui/settings.cpp:1894 +msgid "Cores" +msgstr "" + +#: src/gui/settings.cpp:1903 +msgid "Playback Core(s)" +msgstr "" + +#: src/gui/settings.cpp:1905 src/gui/settings.cpp:2093 +msgid "used for playback" +msgstr "" + +#: src/gui/settings.cpp:1908 +msgid "Render Core(s)" +msgstr "" + +#: src/gui/settings.cpp:1910 src/gui/settings.cpp:2098 +msgid "used in audio export" +msgstr "" + +#: src/gui/settings.cpp:2091 +msgid "Playback" +msgstr "" + +#: src/gui/settings.cpp:2096 +msgid "Render" +msgstr "" + +#: src/gui/settings.cpp:2120 +msgid "PC Speaker strategy" +msgstr "" + +#: src/gui/settings.cpp:2158 src/gui/settings.cpp:2160 +msgid "Keyboard" +msgstr "" + +#: src/gui/settings.cpp:2169 src/gui/settings.cpp:3804 +msgid "Reset defaults" +msgstr "" + +#: src/gui/settings.cpp:2170 +msgid "Are you sure you want to reset the keyboard settings?" +msgstr "" + +#: src/gui/settings.cpp:2172 +msgid "Global hotkeys" +msgstr "" + +#: src/gui/settings.cpp:2209 +msgid "Window activation" +msgstr "" + +#: src/gui/settings.cpp:2275 +msgid "Key" +msgstr "" + +#: src/gui/settings.cpp:2279 src/gui/findReplace.cpp:725 +#: src/gui/findReplace.cpp:1003 +msgid "Value" +msgstr "" + +#: src/gui/settings.cpp:2289 +#, c-format +msgid "Macro release##SNType_%d" +msgstr "" + +#: src/gui/settings.cpp:2294 +#, c-format +msgid "Note release##SNType_%d" +msgstr "" + +#: src/gui/settings.cpp:2299 +#, c-format +msgid "Note off##SNType_%d" +msgstr "" + +#: src/gui/settings.cpp:2304 +#, c-format +msgid "Note##SNType_%d" +msgstr "" + +#: src/gui/settings.cpp:2328 +msgid "Add..." +msgstr "" + +#: src/gui/settings.cpp:2418 +msgid "Instrument list" +msgstr "" + +#: src/gui/settings.cpp:2438 +msgid "Wavetable list" +msgstr "" + +#: src/gui/settings.cpp:2459 +msgid "Sample list" +msgstr "" + +#: src/gui/settings.cpp:2509 +msgid "Sample editor" +msgstr "" + +#: src/gui/settings.cpp:2547 src/gui/settings.cpp:3814 +#: src/gui/settings.cpp:3844 +msgid "Interface" +msgstr "" + +#: src/gui/settings.cpp:2549 +msgid "Layout" +msgstr "" + +#: src/gui/settings.cpp:2551 +msgid "Workspace layout:" +msgstr "" + +#: src/gui/settings.cpp:2561 src/gui/gui.cpp:2920 +msgid "Reset" +msgstr "" + +#: src/gui/settings.cpp:2562 src/gui/gui.cpp:4455 +msgid "Are you sure you want to reset the workspace layout?" +msgstr "" + +#: src/gui/settings.cpp:2566 +msgid "Allow docking editors" +msgstr "" + +#: src/gui/settings.cpp:2573 +msgid "Remember window position" +msgstr "" + +#: src/gui/settings.cpp:2578 +msgid "remembers the window's last position on start-up." +msgstr "" + +#: src/gui/settings.cpp:2583 +msgid "Only allow window movement when clicking on title bar" +msgstr "" + +#: src/gui/settings.cpp:2590 +msgid "Center pop-up windows" +msgstr "" + +#: src/gui/settings.cpp:2595 +msgid "Play/edit controls layout:" +msgstr "" + +#: src/gui/settings.cpp:2597 +msgid "Classic##ecl0" +msgstr "" + +#: src/gui/settings.cpp:2601 +msgid "Compact##ecl1" +msgstr "" + +#: src/gui/settings.cpp:2605 +msgid "Compact (vertical)##ecl2" +msgstr "" + +#: src/gui/settings.cpp:2609 +msgid "Split##ecl3" +msgstr "" + +#: src/gui/settings.cpp:2615 +msgid "Position of buttons in Orders:" +msgstr "" + +#: src/gui/settings.cpp:2617 +msgid "Top##obp0" +msgstr "" + +#: src/gui/settings.cpp:2621 +msgid "Left##obp1" +msgstr "" + +#: src/gui/settings.cpp:2625 +msgid "Right##obp2" +msgstr "" + +#: src/gui/settings.cpp:2632 +msgid "Mouse" +msgstr "" + +#: src/gui/settings.cpp:2634 +msgid "Double-click time (seconds)" +msgstr "" + +#: src/gui/settings.cpp:2643 +msgid "Don't raise pattern editor on click" +msgstr "" + +#: src/gui/settings.cpp:2649 +msgid "Focus pattern editor when selecting instrument" +msgstr "" + +#: src/gui/settings.cpp:2654 +msgid "Note preview behavior:" +msgstr "" + +#: src/gui/settings.cpp:2656 +msgid "Never##npb0" +msgstr "" + +#: src/gui/settings.cpp:2660 +msgid "When cursor is in Note column##npb1" +msgstr "" + +#: src/gui/settings.cpp:2664 +msgid "When cursor is in Note column or not in edit mode##npb2" +msgstr "" + +#: src/gui/settings.cpp:2668 +msgid "Always##npb3" +msgstr "" + +#: src/gui/settings.cpp:2674 +msgid "Allow dragging selection:" +msgstr "" + +#: src/gui/settings.cpp:2676 +msgid "No##dms0" +msgstr "" + +#: src/gui/settings.cpp:2680 +msgid "Yes##dms1" +msgstr "" + +#: src/gui/settings.cpp:2684 +msgid "Yes (while holding Ctrl only)##dms2" +msgstr "" + +#: src/gui/settings.cpp:2690 +msgid "Toggle channel solo on:" +msgstr "" + +#: src/gui/settings.cpp:2692 +msgid "Right-click or double-click##soloA" +msgstr "" + +#: src/gui/settings.cpp:2696 +msgid "Right-click##soloR" +msgstr "" + +#: src/gui/settings.cpp:2700 +msgid "Double-click##soloD" +msgstr "" + +#: src/gui/settings.cpp:2707 +msgid "Double click selects entire column" +msgstr "" + +#: src/gui/settings.cpp:2713 +msgid "Cursor behavior" +msgstr "" + +#: src/gui/settings.cpp:2715 +msgid "Insert pushes entire channel row" +msgstr "" + +#: src/gui/settings.cpp:2721 +msgid "Pull delete affects entire channel row" +msgstr "" + +#: src/gui/settings.cpp:2727 +msgid "Push value when overwriting instead of clearing it" +msgstr "" + +#: src/gui/settings.cpp:2733 +msgid "Keyboard note/value input repeat (hold key to input continuously)" +msgstr "" + +#: src/gui/settings.cpp:2738 +msgid "Effect input behavior:" +msgstr "" + +#: src/gui/settings.cpp:2740 +msgid "Move down##eicb0" +msgstr "" + +#: src/gui/settings.cpp:2744 +msgid "Move to effect value (otherwise move down)##eicb1" +msgstr "" + +#: src/gui/settings.cpp:2748 +msgid "Move to effect value/next effect and wrap around##eicb2" +msgstr "" + +#: src/gui/settings.cpp:2755 +msgid "Delete effect value when deleting effect" +msgstr "" + +#: src/gui/settings.cpp:2761 +msgid "Change current instrument when changing instrument column (absorb)" +msgstr "" + +#: src/gui/settings.cpp:2767 +msgid "Remove instrument value when inserting note off/release" +msgstr "" + +#: src/gui/settings.cpp:2773 +msgid "Remove volume value when inserting note off/release" +msgstr "" + +#: src/gui/settings.cpp:2779 +msgid "Cursor movement" +msgstr "" + +#: src/gui/settings.cpp:2781 +msgid "Wrap horizontally:" +msgstr "" + +#: src/gui/settings.cpp:2783 +msgid "No##wrapH0" +msgstr "" + +#: src/gui/settings.cpp:2787 +msgid "Yes##wrapH1" +msgstr "" + +#: src/gui/settings.cpp:2791 +msgid "Yes, and move to next/prev row##wrapH2" +msgstr "" + +#: src/gui/settings.cpp:2797 +msgid "Wrap vertically:" +msgstr "" + +#: src/gui/settings.cpp:2799 +msgid "No##wrapV0" +msgstr "" + +#: src/gui/settings.cpp:2803 +msgid "Yes##wrapV1" +msgstr "" + +#: src/gui/settings.cpp:2807 +msgid "Yes, and move to next/prev pattern##wrapV2" +msgstr "" + +#: src/gui/settings.cpp:2811 +msgid "Yes, and move to next/prev pattern (wrap around)##wrapV2" +msgstr "" + +#: src/gui/settings.cpp:2817 +msgid "Cursor movement keys behavior:" +msgstr "" + +#: src/gui/settings.cpp:2819 +msgid "Move by one##cmk0" +msgstr "" + +#: src/gui/settings.cpp:2823 +msgid "Move by Edit Step##cmk1" +msgstr "" + +#: src/gui/settings.cpp:2830 +msgid "Move cursor by edit step on delete" +msgstr "" + +#: src/gui/settings.cpp:2836 +msgid "Move cursor by edit step on insert (push)" +msgstr "" + +#: src/gui/settings.cpp:2842 +msgid "Move cursor up on backspace-delete" +msgstr "" + +#: src/gui/settings.cpp:2848 +msgid "Move cursor to end of clipboard content when pasting" +msgstr "" + +#: src/gui/settings.cpp:2854 +msgid "Scrolling" +msgstr "" + +#: src/gui/settings.cpp:2856 +msgid "Change order when scrolling outside of pattern bounds:" +msgstr "" + +#: src/gui/settings.cpp:2858 +msgid "No##pscroll0" +msgstr "" + +#: src/gui/settings.cpp:2862 +msgid "Yes##pscroll1" +msgstr "" + +#: src/gui/settings.cpp:2866 +msgid "Yes, and wrap around song##pscroll2" +msgstr "" + +#: src/gui/settings.cpp:2873 +msgid "Cursor follows current order when moving it" +msgstr "" + +#: src/gui/settings.cpp:2878 +msgid "applies when playback is stopped." +msgstr "" + +#: src/gui/settings.cpp:2882 +msgid "Don't scroll when moving cursor" +msgstr "" + +#: src/gui/settings.cpp:2887 +msgid "Move cursor with scroll wheel:" +msgstr "" + +#: src/gui/settings.cpp:2889 +msgid "No##csw0" +msgstr "" + +#: src/gui/settings.cpp:2893 +msgid "Yes##csw1" +msgstr "" + +#: src/gui/settings.cpp:2897 +msgid "Inverted##csw2" +msgstr "" + +#: src/gui/settings.cpp:2904 +msgid "How many steps to move with each scroll wheel step?" +msgstr "" + +#: src/gui/settings.cpp:2905 +msgid "One##cws0" +msgstr "" + +#: src/gui/settings.cpp:2909 +msgid "Edit Step##cws1" +msgstr "" + +#: src/gui/settings.cpp:2916 src/gui/settings.cpp:3531 +msgid "Assets" +msgstr "" + +#: src/gui/settings.cpp:2919 +msgid "Display instrument type menu when adding instrument" +msgstr "" + +#: src/gui/settings.cpp:2925 +msgid "Select asset after opening one" +msgstr "" + +#: src/gui/settings.cpp:2932 +msgid "Appearance" +msgstr "" + +#: src/gui/settings.cpp:2934 +msgid "Scaling" +msgstr "" + +#: src/gui/settings.cpp:2936 +msgid "Automatic UI scaling factor" +msgstr "" + +#: src/gui/settings.cpp:2945 +msgid "UI scaling factor" +msgstr "" + +#: src/gui/settings.cpp:2952 +msgid "Icon size" +msgstr "" + +#: src/gui/settings.cpp:2967 +msgid "Font renderer" +msgstr "" + +#: src/gui/settings.cpp:2977 +msgid "Main font" +msgstr "" + +#: src/gui/settings.cpp:2988 +msgid "Size##MainFontSize" +msgstr "" + +#: src/gui/settings.cpp:2996 +msgid "Header font" +msgstr "" + +#: src/gui/settings.cpp:3007 +msgid "Size##HeadFontSize" +msgstr "" + +#: src/gui/settings.cpp:3015 +msgid "Pattern font" +msgstr "" + +#: src/gui/settings.cpp:3026 +msgid "Size##PatFontSize" +msgstr "" + +#: src/gui/settings.cpp:3036 +msgid "Anti-aliased fonts" +msgstr "" + +#: src/gui/settings.cpp:3042 +msgid "Support bitmap fonts" +msgstr "" + +#: src/gui/settings.cpp:3047 +msgid "Hinting:" +msgstr "" + +#: src/gui/settings.cpp:3049 +msgid "Off (soft)##fh0" +msgstr "" + +#: src/gui/settings.cpp:3053 +msgid "Slight##fh1" +msgstr "" + +#: src/gui/settings.cpp:3057 +msgid "Normal##fh2" +msgstr "" + +#: src/gui/settings.cpp:3061 +msgid "Full (hard)##fh3" +msgstr "" + +#: src/gui/settings.cpp:3067 +msgid "Auto-hinter:" +msgstr "" + +#: src/gui/settings.cpp:3069 +msgid "Disable##fah0" +msgstr "" + +#: src/gui/settings.cpp:3073 +msgid "Enable##fah1" +msgstr "" + +#: src/gui/settings.cpp:3077 +msgid "Force##fah2" +msgstr "" + +#: src/gui/settings.cpp:3084 +msgid "Oversample" +msgstr "" + +#: src/gui/settings.cpp:3087 +msgid "1×##fos1" +msgstr "" + +#: src/gui/settings.cpp:3092 +msgid "" +"saves video memory. reduces font rendering quality.\n" +"use for pixel/bitmap fonts." +msgstr "" + +#: src/gui/settings.cpp:3095 +msgid "2×##fos2" +msgstr "" + +#: src/gui/settings.cpp:3100 +msgid "default." +msgstr "" + +#: src/gui/settings.cpp:3103 +msgid "3×##fos3" +msgstr "" + +#: src/gui/settings.cpp:3108 +msgid "" +"slightly better font rendering quality.\n" +"uses more video memory." +msgstr "" + +#: src/gui/settings.cpp:3112 +msgid "Load fallback font" +msgstr "" + +#: src/gui/settings.cpp:3117 +msgid "disable to save video memory." +msgstr "" + +#: src/gui/settings.cpp:3121 +msgid "Display Japanese characters" +msgstr "" + +#: src/gui/settings.cpp:3127 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"このオプションは、十分なグラフィックメモリがある場合にのみ切り替えてくださ" +"い。\n" +"これは、Dear ImGuiにダイナミックフォントアトラスが実装されるまでの一時的な解" +"決策です。" +msgstr "" + +#: src/gui/settings.cpp:3135 +msgid "Display Chinese (Simplified) characters" +msgstr "" + +#: src/gui/settings.cpp:3141 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"请在确保你有足够的显存后再启动此设定\n" +"这是一个在ImGui实现动态字体加载之前的临时解决方案" +msgstr "" + +#: src/gui/settings.cpp:3149 +msgid "Display Chinese (Traditional) characters" +msgstr "" + +#: src/gui/settings.cpp:3155 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"請在確保你有足夠的顯存后再啟動此設定\n" +"這是一個在ImGui實現動態字體加載之前的臨時解決方案" +msgstr "" + +#: src/gui/settings.cpp:3163 +msgid "Display Korean characters" +msgstr "" + +#: src/gui/settings.cpp:3169 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"그래픽 메모리가 충분한 경우에만 이 옵션을 선택하십시오.\n" +"이 옵션은 Dear ImGui에 동적 글꼴 아틀라스가 구현될 때까지 임시 솔루션입니다." +msgstr "" + +#: src/gui/settings.cpp:3178 +msgid "Title bar:" +msgstr "" + +#: src/gui/settings.cpp:3180 +msgid "Furnace##tbar0" +msgstr "" + +#: src/gui/settings.cpp:3185 +msgid "Song Name - Furnace##tbar1" +msgstr "" + +#: src/gui/settings.cpp:3190 +msgid "file_name.fur - Furnace##tbar2" +msgstr "" + +#: src/gui/settings.cpp:3195 +msgid "/path/to/file.fur - Furnace##tbar3" +msgstr "" + +#: src/gui/settings.cpp:3203 +msgid "Display system name on title bar" +msgstr "" + +#: src/gui/settings.cpp:3210 +msgid "Display chip names instead of \"multi-system\" in title bar" +msgstr "" + +#: src/gui/settings.cpp:3216 +msgid "Status bar:" +msgstr "" + +#: src/gui/settings.cpp:3218 +msgid "Cursor details##sbar0" +msgstr "" + +#: src/gui/settings.cpp:3222 +msgid "File path##sbar1" +msgstr "" + +#: src/gui/settings.cpp:3226 +msgid "Cursor details or file path##sbar2" +msgstr "" + +#: src/gui/settings.cpp:3230 +msgid "Nothing##sbar3" +msgstr "" + +#: src/gui/settings.cpp:3237 +msgid "Display playback status when playing" +msgstr "" + +#: src/gui/settings.cpp:3242 +msgid "Export options layout:" +msgstr "" + +#: src/gui/settings.cpp:3244 +msgid "Sub-menus in File menu##eol0" +msgstr "" + +#: src/gui/settings.cpp:3248 +msgid "Modal window with tabs##eol1" +msgstr "" + +#: src/gui/settings.cpp:3252 +msgid "Modal windows with options in File menu##eol2" +msgstr "" + +#: src/gui/settings.cpp:3259 +msgid "Capitalize menu bar" +msgstr "" + +#: src/gui/settings.cpp:3265 +msgid "Display add/configure/change/remove chip menus in File menu" +msgstr "" + +#: src/gui/settings.cpp:3279 +msgid "Highlight channel at cursor in Orders" +msgstr "" + +#: src/gui/settings.cpp:3284 +msgid "Orders row number format:" +msgstr "" + +#: src/gui/settings.cpp:3286 +msgid "Decimal##orbD" +msgstr "" + +#: src/gui/settings.cpp:3290 +msgid "Hexadecimal##orbH" +msgstr "" + +#: src/gui/settings.cpp:3299 +msgid "Center pattern view" +msgstr "" + +#: src/gui/settings.cpp:3305 +msgid "Overflow pattern highlights" +msgstr "" + +#: src/gui/settings.cpp:3311 +msgid "Display previous/next pattern" +msgstr "" + +#: src/gui/settings.cpp:3316 +msgid "Pattern row number format:" +msgstr "" + +#: src/gui/settings.cpp:3318 +msgid "Decimal##prbD" +msgstr "" + +#: src/gui/settings.cpp:3322 +msgid "Hexadecimal##prbH" +msgstr "" + +#: src/gui/settings.cpp:3328 +msgid "Pattern view labels:" +msgstr "" + +#: src/gui/settings.cpp:3333 +msgid "Note off (3-char)" +msgstr "" + +#: src/gui/settings.cpp:3338 +msgid "Note release (3-char)" +msgstr "" + +#: src/gui/settings.cpp:3343 +msgid "Macro release (3-char)" +msgstr "" + +#: src/gui/settings.cpp:3348 +msgid "Empty field (3-char)" +msgstr "" + +#: src/gui/settings.cpp:3353 +msgid "Empty field (2-char)" +msgstr "" + +#: src/gui/settings.cpp:3355 +msgid "Pattern view spacing after:" +msgstr "" + +#: src/gui/settings.cpp:3357 src/gui/settings.cpp:4115 +#: src/gui/findReplace.cpp:601 src/gui/findReplace.cpp:864 +#: src/gui/sampleEdit.cpp:590 +msgid "Note" +msgstr "" + +#: src/gui/settings.cpp:3375 src/gui/findReplace.cpp:707 +#: src/gui/findReplace.cpp:974 +msgid "Effect" +msgstr "" + +#: src/gui/settings.cpp:3381 +msgid "Effect value" +msgstr "" + +#: src/gui/settings.cpp:3388 +msgid "Single-digit effects for 00-0F" +msgstr "" + +#: src/gui/settings.cpp:3394 +msgid "Use flats instead of sharps" +msgstr "" + +#: src/gui/settings.cpp:3400 +msgid "Use German notation" +msgstr "" + +#: src/gui/settings.cpp:3408 +msgid "Channel style:" +msgstr "" + +#: src/gui/settings.cpp:3410 +msgid "Classic##CHS0" +msgstr "" + +#: src/gui/settings.cpp:3414 +msgid "Line##CHS1" +msgstr "" + +#: src/gui/settings.cpp:3418 +msgid "Round##CHS2" +msgstr "" + +#: src/gui/settings.cpp:3422 +msgid "Split button##CHS3" +msgstr "" + +#: src/gui/settings.cpp:3426 +msgid "Square border##CH42" +msgstr "" + +#: src/gui/settings.cpp:3430 +msgid "Round border##CHS5" +msgstr "" + +#: src/gui/settings.cpp:3436 +msgid "Channel volume bar:" +msgstr "" + +#: src/gui/settings.cpp:3438 +msgid "None##CHV0" +msgstr "" + +#: src/gui/settings.cpp:3442 +msgid "Simple##CHV1" +msgstr "" + +#: src/gui/settings.cpp:3446 +msgid "Stereo##CHV2" +msgstr "" + +#: src/gui/settings.cpp:3450 +msgid "Real##CHV3" +msgstr "" + +#: src/gui/settings.cpp:3454 +msgid "Real (stereo)##CHV4" +msgstr "" + +#: src/gui/settings.cpp:3460 +msgid "Channel feedback style:" +msgstr "" + +#: src/gui/settings.cpp:3462 +msgid "Off##CHF0" +msgstr "" + +#: src/gui/settings.cpp:3466 +msgid "Note##CHF1" +msgstr "" + +#: src/gui/settings.cpp:3470 +msgid "Volume##CHF2" +msgstr "" + +#: src/gui/settings.cpp:3474 +msgid "Active##CHF3" +msgstr "" + +#: src/gui/settings.cpp:3480 +msgid "Channel font:" +msgstr "" + +#: src/gui/settings.cpp:3482 +msgid "Regular##CHFont0" +msgstr "" + +#: src/gui/settings.cpp:3486 +msgid "Monospace##CHFont1" +msgstr "" + +#: src/gui/settings.cpp:3493 +msgid "Center channel name" +msgstr "" + +#: src/gui/settings.cpp:3498 +msgid "Channel colors:" +msgstr "" + +#: src/gui/settings.cpp:3500 +msgid "Single##CHC0" +msgstr "" + +#: src/gui/settings.cpp:3504 +msgid "Channel type##CHC1" +msgstr "" + +#: src/gui/settings.cpp:3508 +msgid "Instrument type##CHC2" +msgstr "" + +#: src/gui/settings.cpp:3514 +msgid "Channel name colors:" +msgstr "" + +#: src/gui/settings.cpp:3516 +msgid "Single##CTC0" +msgstr "" + +#: src/gui/settings.cpp:3520 +msgid "Channel type##CTC1" +msgstr "" + +#: src/gui/settings.cpp:3524 +msgid "Instrument type##CTC2" +msgstr "" + +#: src/gui/settings.cpp:3533 +msgid "Unified instrument/wavetable/sample list" +msgstr "" + +#: src/gui/settings.cpp:3543 +msgid "Horizontal instrument list" +msgstr "" + +#: src/gui/settings.cpp:3549 +msgid "Instrument list icon style:" +msgstr "" + +#: src/gui/settings.cpp:3551 +msgid "None##iis0" +msgstr "" + +#: src/gui/settings.cpp:3555 +msgid "Graphical icons##iis1" +msgstr "" + +#: src/gui/settings.cpp:3559 +msgid "Letter icons##iis2" +msgstr "" + +#: src/gui/settings.cpp:3566 +msgid "Colorize instrument editor using instrument type" +msgstr "" + +#: src/gui/settings.cpp:3572 src/gui/settings.cpp:4014 +msgid "Macro Editor" +msgstr "" + +#: src/gui/settings.cpp:3573 +msgid "Macro editor layout:" +msgstr "" + +#: src/gui/settings.cpp:3575 +msgid "Unified##mel0" +msgstr "" + +#: src/gui/settings.cpp:3585 +msgid "Grid##mel2" +msgstr "" + +#: src/gui/settings.cpp:3589 +msgid "Single (with list)##mel3" +msgstr "" + +#: src/gui/settings.cpp:3602 +msgid "Use classic macro editor vertical slider" +msgstr "" + +#: src/gui/settings.cpp:3608 +msgid "Wave Editor" +msgstr "" + +#: src/gui/settings.cpp:3610 +msgid "Use compact wave editor" +msgstr "" + +#: src/gui/settings.cpp:3616 src/gui/settings.cpp:3991 +msgid "FM Editor" +msgstr "" + +#: src/gui/settings.cpp:3617 +msgid "FM parameter names:" +msgstr "" + +#: src/gui/settings.cpp:3619 +msgid "Friendly##fmn0" +msgstr "" + +#: src/gui/settings.cpp:3623 +msgid "Technical##fmn1" +msgstr "" + +#: src/gui/settings.cpp:3627 +msgid "Technical (alternate)##fmn2" +msgstr "" + +#: src/gui/settings.cpp:3634 +msgid "Use standard OPL waveform names" +msgstr "" + +#: src/gui/settings.cpp:3639 +msgid "FM parameter editor layout:" +msgstr "" + +#: src/gui/settings.cpp:3641 +msgid "Modern##fml0" +msgstr "" + +#: src/gui/settings.cpp:3645 +msgid "Compact (2x2, classic)##fml1" +msgstr "" + +#: src/gui/settings.cpp:3649 +msgid "Compact (1x4)##fml2" +msgstr "" + +#: src/gui/settings.cpp:3653 +msgid "Compact (4x1)##fml3" +msgstr "" + +#: src/gui/settings.cpp:3657 +msgid "Alternate (2x2)##fml4" +msgstr "" + +#: src/gui/settings.cpp:3661 +msgid "Alternate (1x4)##fml5" +msgstr "" + +#: src/gui/settings.cpp:3665 +msgid "Alternate (4x1)##fml5" +msgstr "" + +#: src/gui/settings.cpp:3671 +msgid "Position of Sustain in FM editor:" +msgstr "" + +#: src/gui/settings.cpp:3673 +msgid "Between Decay and Sustain Rate##susp0" +msgstr "" + +#: src/gui/settings.cpp:3677 +msgid "After Release Rate##susp1" +msgstr "" + +#: src/gui/settings.cpp:3684 +msgid "Use separate colors for carriers/modulators in FM editor" +msgstr "" + +#: src/gui/settings.cpp:3690 +msgid "Unsigned FM detune values" +msgstr "" + +#: src/gui/settings.cpp:3697 +msgid "Chip memory usage unit:" +msgstr "" + +#: src/gui/settings.cpp:3699 +msgid "Bytes##MUU0" +msgstr "" + +#: src/gui/settings.cpp:3703 +msgid "Kilobytes##MUU1" +msgstr "" + +#: src/gui/settings.cpp:3712 +msgid "Rounded corners" +msgstr "" + +#: src/gui/settings.cpp:3718 src/gui/settings.cpp:3896 +#: src/gui/settings.cpp:3938 +msgid "Border" +msgstr "" + +#: src/gui/settings.cpp:3730 +msgid "Anti-aliased" +msgstr "" + +#: src/gui/settings.cpp:3736 +msgid "Fill entire window" +msgstr "" + +#: src/gui/settings.cpp:3742 +msgid "Waveform goes out of bounds" +msgstr "" + +#: src/gui/settings.cpp:3754 +msgid "Windows" +msgstr "" + +#: src/gui/settings.cpp:3756 +msgid "Rounded window corners" +msgstr "" + +#: src/gui/settings.cpp:3762 +msgid "Rounded buttons" +msgstr "" + +#: src/gui/settings.cpp:3768 +msgid "Rounded menu corners" +msgstr "" + +#: src/gui/settings.cpp:3774 +msgid "Rounded tabs" +msgstr "" + +#: src/gui/settings.cpp:3780 +msgid "Rounded scrollbars" +msgstr "" + +#: src/gui/settings.cpp:3786 +msgid "Borders around widgets" +msgstr "" + +#: src/gui/settings.cpp:3795 +msgid "Color scheme" +msgstr "" + +#: src/gui/settings.cpp:3805 +msgid "Are you sure you want to reset the color scheme?" +msgstr "" + +#: src/gui/settings.cpp:3808 +msgid "Guru mode" +msgstr "" + +#: src/gui/settings.cpp:3815 src/gui/settings.cpp:3845 +msgid "Frame shading" +msgstr "" + +#: src/gui/settings.cpp:3821 +msgid "Color scheme type:" +msgstr "" + +#: src/gui/settings.cpp:3823 +msgid "Dark##gcb0" +msgstr "" + +#: src/gui/settings.cpp:3828 +msgid "Light##gcb1" +msgstr "" + +#: src/gui/settings.cpp:3835 +msgid "Accent colors:" +msgstr "" + +#: src/gui/settings.cpp:3837 +msgid "Primary" +msgstr "" + +#: src/gui/settings.cpp:3838 +msgid "Secondary" +msgstr "" + +#: src/gui/settings.cpp:3852 +msgid "Button" +msgstr "" + +#: src/gui/settings.cpp:3853 +msgid "Button (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3854 +msgid "Button (active)" +msgstr "" + +#: src/gui/settings.cpp:3855 +msgid "Tab" +msgstr "" + +#: src/gui/settings.cpp:3856 +msgid "Tab (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3857 +msgid "Tab (active)" +msgstr "" + +#: src/gui/settings.cpp:3858 +msgid "Tab (unfocused)" +msgstr "" + +#: src/gui/settings.cpp:3859 +msgid "Tab (unfocused and active)" +msgstr "" + +#: src/gui/settings.cpp:3860 +msgid "ImGui header" +msgstr "" + +#: src/gui/settings.cpp:3861 +msgid "ImGui header (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3862 +msgid "ImGui header (active)" +msgstr "" + +#: src/gui/settings.cpp:3863 +msgid "Resize grip" +msgstr "" + +#: src/gui/settings.cpp:3864 +msgid "Resize grip (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3865 +msgid "Resize grip (active)" +msgstr "" + +#: src/gui/settings.cpp:3866 +msgid "Widget background" +msgstr "" + +#: src/gui/settings.cpp:3867 +msgid "Widget background (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3868 +msgid "Widget background (active)" +msgstr "" + +#: src/gui/settings.cpp:3869 +msgid "Slider grab" +msgstr "" + +#: src/gui/settings.cpp:3870 +msgid "Slider grab (active)" +msgstr "" + +#: src/gui/settings.cpp:3871 +msgid "Title background (active)" +msgstr "" + +#: src/gui/settings.cpp:3872 +msgid "Checkbox/radio button mark" +msgstr "" + +#: src/gui/settings.cpp:3873 +msgid "Text selection" +msgstr "" + +#: src/gui/settings.cpp:3874 +msgid "Line plot" +msgstr "" + +#: src/gui/settings.cpp:3875 +msgid "Line plot (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3876 +msgid "Histogram plot" +msgstr "" + +#: src/gui/settings.cpp:3877 +msgid "Histogram plot (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3878 +msgid "Table row (even)" +msgstr "" + +#: src/gui/settings.cpp:3879 +msgid "Table row (odd)" +msgstr "" + +#: src/gui/settings.cpp:3884 +msgid "Interface (other)" +msgstr "" + +#: src/gui/settings.cpp:3886 +msgid "Window background" +msgstr "" + +#: src/gui/settings.cpp:3887 +msgid "Sub-window background" +msgstr "" + +#: src/gui/settings.cpp:3888 +msgid "Pop-up background" +msgstr "" + +#: src/gui/settings.cpp:3889 +msgid "Modal backdrop" +msgstr "" + +#: src/gui/settings.cpp:3890 +msgid "Header" +msgstr "" + +#: src/gui/settings.cpp:3892 +msgid "Text (disabled)" +msgstr "" + +#: src/gui/settings.cpp:3893 +msgid "Title bar (inactive)" +msgstr "" + +#: src/gui/settings.cpp:3894 +msgid "Title bar (collapsed)" +msgstr "" + +#: src/gui/settings.cpp:3895 +msgid "Menu bar" +msgstr "" + +#: src/gui/settings.cpp:3897 +msgid "Border shadow" +msgstr "" + +#: src/gui/settings.cpp:3898 +msgid "Scroll bar" +msgstr "" + +#: src/gui/settings.cpp:3899 +msgid "Scroll bar (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3900 +msgid "Scroll bar (clicked)" +msgstr "" + +#: src/gui/settings.cpp:3901 +msgid "Scroll bar background" +msgstr "" + +#: src/gui/settings.cpp:3902 +msgid "Separator" +msgstr "" + +#: src/gui/settings.cpp:3903 +msgid "Separator (hover)" +msgstr "" + +#: src/gui/settings.cpp:3904 +msgid "Separator (active)" +msgstr "" + +#: src/gui/settings.cpp:3905 +msgid "Docking preview" +msgstr "" + +#: src/gui/settings.cpp:3906 +msgid "Docking empty" +msgstr "" + +#: src/gui/settings.cpp:3907 +msgid "Table header" +msgstr "" + +#: src/gui/settings.cpp:3908 +msgid "Table border (hard)" +msgstr "" + +#: src/gui/settings.cpp:3909 +msgid "Table border (soft)" +msgstr "" + +#: src/gui/settings.cpp:3910 +msgid "Drag and drop target" +msgstr "" + +#: src/gui/settings.cpp:3911 +msgid "Window switcher (highlight)" +msgstr "" + +#: src/gui/settings.cpp:3912 +msgid "Window switcher backdrop" +msgstr "" + +#: src/gui/settings.cpp:3915 src/gui/settings.cpp:4136 src/gui/guiConst.cpp:235 +msgid "Miscellaneous" +msgstr "" + +#: src/gui/settings.cpp:3916 +msgid "Toggle on" +msgstr "" + +#: src/gui/settings.cpp:3917 +msgid "Toggle off" +msgstr "" + +#: src/gui/settings.cpp:3918 +msgid "Playback status" +msgstr "" + +#: src/gui/settings.cpp:3919 +msgid "Destructive hint" +msgstr "" + +#: src/gui/settings.cpp:3920 +msgid "Warning hint" +msgstr "" + +#: src/gui/settings.cpp:3921 +msgid "Error hint" +msgstr "" + +#: src/gui/settings.cpp:3924 +msgid "File Picker (built-in)" +msgstr "" + +#: src/gui/settings.cpp:3926 +msgid "Song (native)" +msgstr "" + +#: src/gui/settings.cpp:3927 +msgid "Song (import)" +msgstr "" + +#: src/gui/settings.cpp:3933 +msgid "Font" +msgstr "" + +#: src/gui/settings.cpp:3939 +msgid "Background (top-left)" +msgstr "" + +#: src/gui/settings.cpp:3940 +msgid "Background (top-right)" +msgstr "" + +#: src/gui/settings.cpp:3941 +msgid "Background (bottom-left)" +msgstr "" + +#: src/gui/settings.cpp:3942 +msgid "Background (bottom-right)" +msgstr "" + +#: src/gui/settings.cpp:3943 src/gui/settings.cpp:3998 +#: src/gui/settings.cpp:4166 src/gui/waveEdit.cpp:730 src/gui/insEdit.cpp:50 +#: src/gui/insEdit.cpp:4148 src/gui/insEdit.cpp:5812 src/gui/insEdit.cpp:6940 +#: src/gui/insEdit.cpp:6949 src/gui/insEdit.cpp:6963 src/gui/insEdit.cpp:6980 +#: src/gui/insEdit.cpp:6991 src/gui/insEdit.cpp:7004 src/gui/insEdit.cpp:7018 +#: src/gui/insEdit.cpp:7025 src/gui/insEdit.cpp:7035 src/gui/insEdit.cpp:7041 +#: src/gui/insEdit.cpp:7050 src/gui/insEdit.cpp:7074 src/gui/insEdit.cpp:7084 +#: src/gui/insEdit.cpp:7094 src/gui/insEdit.cpp:7101 src/gui/insEdit.cpp:7116 +#: src/gui/insEdit.cpp:7131 src/gui/insEdit.cpp:7151 src/gui/insEdit.cpp:7158 +#: src/gui/insEdit.cpp:7200 src/gui/insEdit.cpp:7211 src/gui/insEdit.cpp:7224 +#: src/gui/insEdit.cpp:7349 src/gui/insEdit.cpp:7425 src/gui/insEdit.cpp:7445 +#: src/gui/insEdit.cpp:7453 src/gui/insEdit.cpp:7473 +msgid "Waveform" +msgstr "" + +#: src/gui/settings.cpp:3944 +msgid "Waveform (clip)" +msgstr "" + +#: src/gui/settings.cpp:3945 +msgid "Reference" +msgstr "" + +#: src/gui/settings.cpp:3946 +msgid "Guide" +msgstr "" + +#: src/gui/settings.cpp:3948 +msgid "Wave (non-mono)" +msgstr "" + +#: src/gui/settings.cpp:3949 +msgid "Waveform (1)" +msgstr "" + +#: src/gui/settings.cpp:3950 +msgid "Waveform (2)" +msgstr "" + +#: src/gui/settings.cpp:3951 +msgid "Waveform (3)" +msgstr "" + +#: src/gui/settings.cpp:3952 +msgid "Waveform (4)" +msgstr "" + +#: src/gui/settings.cpp:3953 +msgid "Waveform (5)" +msgstr "" + +#: src/gui/settings.cpp:3954 +msgid "Waveform (6)" +msgstr "" + +#: src/gui/settings.cpp:3955 +msgid "Waveform (7)" +msgstr "" + +#: src/gui/settings.cpp:3956 +msgid "Waveform (8)" +msgstr "" + +#: src/gui/settings.cpp:3957 +msgid "Waveform (9)" +msgstr "" + +#: src/gui/settings.cpp:3958 +msgid "Waveform (10)" +msgstr "" + +#: src/gui/settings.cpp:3959 +msgid "Waveform (11)" +msgstr "" + +#: src/gui/settings.cpp:3960 +msgid "Waveform (12)" +msgstr "" + +#: src/gui/settings.cpp:3961 +msgid "Waveform (13)" +msgstr "" + +#: src/gui/settings.cpp:3962 +msgid "Waveform (14)" +msgstr "" + +#: src/gui/settings.cpp:3963 +msgid "Waveform (15)" +msgstr "" + +#: src/gui/settings.cpp:3964 +msgid "Waveform (16)" +msgstr "" + +#: src/gui/settings.cpp:3972 +msgid "Clip" +msgstr "" + +#: src/gui/settings.cpp:3976 +msgid "Order number" +msgstr "" + +#: src/gui/settings.cpp:3977 +msgid "Playing order background" +msgstr "" + +#: src/gui/settings.cpp:3978 +msgid "Song loop" +msgstr "" + +#: src/gui/settings.cpp:3979 +msgid "Selected order" +msgstr "" + +#: src/gui/settings.cpp:3980 +msgid "Similar patterns" +msgstr "" + +#: src/gui/settings.cpp:3981 +msgid "Inactive patterns" +msgstr "" + +#: src/gui/settings.cpp:3984 +msgid "Envelope View" +msgstr "" + +#: src/gui/settings.cpp:3985 src/gui/insEdit.cpp:540 src/gui/insEdit.cpp:3547 +#: src/gui/insEdit.cpp:3548 src/gui/insEdit.cpp:4081 src/gui/insEdit.cpp:4151 +#: src/gui/insEdit.cpp:4790 src/gui/insEdit.cpp:5861 src/gui/insEdit.cpp:5862 +#: src/gui/insEdit.cpp:6487 src/gui/insEdit.cpp:6488 src/gui/insEdit.cpp:6555 +#: src/gui/insEdit.cpp:6556 src/gui/insEdit.cpp:6995 src/gui/insEdit.cpp:7009 +#: src/gui/insEdit.cpp:7029 src/gui/insEdit.cpp:7166 +#, c-format +msgid "Envelope" +msgstr "" + +#: src/gui/settings.cpp:3986 +msgid "Sustain guide" +msgstr "" + +#: src/gui/settings.cpp:3992 +msgid "Algorithm background" +msgstr "" + +#: src/gui/settings.cpp:3993 +msgid "Algorithm lines" +msgstr "" + +#: src/gui/settings.cpp:3994 +msgid "Modulator" +msgstr "" + +#: src/gui/settings.cpp:3995 +msgid "Carrier" +msgstr "" + +#: src/gui/settings.cpp:3997 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:4146 +msgid "SSG-EG" +msgstr "" + +#: src/gui/settings.cpp:4000 +msgid "" +"(the following colors only apply when \"Use separate colors for carriers/" +"modulators in FM editor\" is on!)" +msgstr "" + +#: src/gui/settings.cpp:4002 +msgid "Mod. accent (primary)" +msgstr "" + +#: src/gui/settings.cpp:4003 +msgid "Mod. accent (secondary)" +msgstr "" + +#: src/gui/settings.cpp:4004 +msgid "Mod. border" +msgstr "" + +#: src/gui/settings.cpp:4005 +msgid "Mod. border shadow" +msgstr "" + +#: src/gui/settings.cpp:4007 +msgid "Car. accent (primary)" +msgstr "" + +#: src/gui/settings.cpp:4008 +msgid "Car. accent (secondary)" +msgstr "" + +#: src/gui/settings.cpp:4009 +msgid "Car. border" +msgstr "" + +#: src/gui/settings.cpp:4010 +msgid "Car. border shadow" +msgstr "" + +#: src/gui/settings.cpp:4016 src/gui/guiConst.cpp:227 src/gui/insEdit.cpp:6924 +#: src/gui/insEdit.cpp:6931 src/gui/insEdit.cpp:6942 src/gui/insEdit.cpp:6950 +#: src/gui/insEdit.cpp:6971 src/gui/insEdit.cpp:6983 src/gui/insEdit.cpp:6993 +#: src/gui/insEdit.cpp:7006 src/gui/insEdit.cpp:7019 src/gui/insEdit.cpp:7028 +#: src/gui/insEdit.cpp:7036 src/gui/insEdit.cpp:7042 src/gui/insEdit.cpp:7052 +#: src/gui/insEdit.cpp:7061 src/gui/insEdit.cpp:7068 src/gui/insEdit.cpp:7075 +#: src/gui/insEdit.cpp:7087 src/gui/insEdit.cpp:7095 src/gui/insEdit.cpp:7102 +#: src/gui/insEdit.cpp:7109 src/gui/insEdit.cpp:7117 src/gui/insEdit.cpp:7123 +#: src/gui/insEdit.cpp:7132 src/gui/insEdit.cpp:7143 src/gui/insEdit.cpp:7153 +#: src/gui/insEdit.cpp:7161 src/gui/insEdit.cpp:7174 src/gui/insEdit.cpp:7182 +#: src/gui/insEdit.cpp:7193 src/gui/insEdit.cpp:7203 src/gui/insEdit.cpp:7213 +#: src/gui/insEdit.cpp:7227 src/gui/insEdit.cpp:7233 src/gui/insEdit.cpp:7241 +#: src/gui/insEdit.cpp:7248 src/gui/insEdit.cpp:7272 src/gui/insEdit.cpp:7280 +#: src/gui/insEdit.cpp:7289 src/gui/insEdit.cpp:7298 src/gui/insEdit.cpp:7306 +#: src/gui/insEdit.cpp:7323 src/gui/insEdit.cpp:7331 src/gui/insEdit.cpp:7337 +#: src/gui/insEdit.cpp:7344 src/gui/insEdit.cpp:7350 src/gui/insEdit.cpp:7355 +#: src/gui/insEdit.cpp:7361 src/gui/insEdit.cpp:7368 src/gui/insEdit.cpp:7376 +#: src/gui/insEdit.cpp:7385 src/gui/insEdit.cpp:7393 src/gui/insEdit.cpp:7401 +#: src/gui/insEdit.cpp:7413 src/gui/insEdit.cpp:7428 src/gui/insEdit.cpp:7439 +#: src/gui/insEdit.cpp:7447 src/gui/insEdit.cpp:7456 src/gui/insEdit.cpp:7466 +#: src/gui/insEdit.cpp:7474 +msgid "Pitch" +msgstr "" + +#: src/gui/settings.cpp:4021 +msgid "Instrument Types" +msgstr "" + +#: src/gui/settings.cpp:4022 +msgid "FM (OPN)" +msgstr "" + +#: src/gui/settings.cpp:4023 +msgid "SN76489/Sega PSG" +msgstr "" + +#: src/gui/settings.cpp:4026 +msgid "C64" +msgstr "" + +#: src/gui/settings.cpp:4027 +msgid "Amiga/Generic Sample" +msgstr "" + +#: src/gui/settings.cpp:4028 +msgid "PC Engine" +msgstr "" + +#: src/gui/settings.cpp:4029 +msgid "AY-3-8910/SSG" +msgstr "" + +#: src/gui/settings.cpp:4030 +msgid "AY8930" +msgstr "" + +#: src/gui/settings.cpp:4031 +msgid "TIA" +msgstr "" + +#: src/gui/settings.cpp:4032 +msgid "SAA1099" +msgstr "" + +#: src/gui/settings.cpp:4033 +msgid "VIC" +msgstr "" + +#: src/gui/settings.cpp:4034 +msgid "PET" +msgstr "" + +#: src/gui/settings.cpp:4035 +msgid "VRC6" +msgstr "" + +#: src/gui/settings.cpp:4036 src/gui/guiConst.cpp:149 +msgid "VRC6 (saw)" +msgstr "" + +#: src/gui/settings.cpp:4037 +msgid "FM (OPLL)" +msgstr "" + +#: src/gui/settings.cpp:4038 +msgid "FM (OPL)" +msgstr "" + +#: src/gui/settings.cpp:4043 +msgid "FM (OPZ)" +msgstr "" + +#: src/gui/settings.cpp:4045 +msgid "PC Beeper" +msgstr "" + +#: src/gui/settings.cpp:4047 +msgid "Lynx" +msgstr "" + +#: src/gui/settings.cpp:4049 +msgid "X1-010" +msgstr "" + +#: src/gui/settings.cpp:4050 +msgid "ES5506" +msgstr "" + +#: src/gui/settings.cpp:4053 +msgid "Sound Unit" +msgstr "" + +#: src/gui/settings.cpp:4055 +msgid "FM (OPL Drums)" +msgstr "" + +#: src/gui/settings.cpp:4056 +msgid "FM (OPM)" +msgstr "" + +#: src/gui/settings.cpp:4057 +msgid "NES" +msgstr "" + +#: src/gui/settings.cpp:4058 +msgid "MSM6258" +msgstr "" + +#: src/gui/settings.cpp:4059 +msgid "MSM6295" +msgstr "" + +#: src/gui/settings.cpp:4060 +msgid "ADPCM-A" +msgstr "" + +#: src/gui/settings.cpp:4062 +msgid "Sega PCM" +msgstr "" + +#: src/gui/settings.cpp:4063 +msgid "QSound" +msgstr "" + +#: src/gui/settings.cpp:4064 +msgid "YMZ280B" +msgstr "" + +#: src/gui/settings.cpp:4065 +msgid "RF5C68" +msgstr "" + +#: src/gui/settings.cpp:4066 +msgid "MSM5232" +msgstr "" + +#: src/gui/settings.cpp:4067 +msgid "K007232" +msgstr "" + +#: src/gui/settings.cpp:4068 +msgid "GA20" +msgstr "" + +#: src/gui/settings.cpp:4070 +msgid "SM8521" +msgstr "" + +#: src/gui/settings.cpp:4071 +msgid "PV-1000" +msgstr "" + +#: src/gui/settings.cpp:4072 +msgid "K053260" +msgstr "" + +#: src/gui/settings.cpp:4073 +msgid "TED" +msgstr "" + +#: src/gui/settings.cpp:4074 +msgid "C140" +msgstr "" + +#: src/gui/settings.cpp:4075 +msgid "C219" +msgstr "" + +#: src/gui/settings.cpp:4076 +msgid "ESFM" +msgstr "" + +#: src/gui/settings.cpp:4077 src/gui/guiConst.cpp:179 +msgid "PowerNoise (noise)" +msgstr "" + +#: src/gui/settings.cpp:4078 src/gui/guiConst.cpp:180 +msgid "PowerNoise (slope)" +msgstr "" + +#: src/gui/settings.cpp:4081 +msgid "GBA DMA" +msgstr "" + +#: src/gui/settings.cpp:4082 +msgid "GBA MinMod" +msgstr "" + +#: src/gui/settings.cpp:4085 +msgid "Other/Unknown" +msgstr "" + +#: src/gui/settings.cpp:4089 +msgid "Single color (background)" +msgstr "" + +#: src/gui/settings.cpp:4090 +msgid "Single color (text)" +msgstr "" + +#: src/gui/settings.cpp:4091 src/gui/guiConst.cpp:1393 src/gui/waveEdit.cpp:668 +msgid "FM" +msgstr "" + +#: src/gui/settings.cpp:4096 +msgid "FM operator" +msgstr "" + +#: src/gui/settings.cpp:4097 +msgid "Muted" +msgstr "" + +#: src/gui/settings.cpp:4101 +msgid "Playhead" +msgstr "" + +#: src/gui/settings.cpp:4102 +msgid "Editing" +msgstr "" + +#: src/gui/settings.cpp:4103 +msgid "Editing (will clone)" +msgstr "" + +#: src/gui/settings.cpp:4104 +msgid "Cursor" +msgstr "" + +#: src/gui/settings.cpp:4105 +msgid "Cursor (hovered)" +msgstr "" + +#: src/gui/settings.cpp:4106 +msgid "Cursor (clicked)" +msgstr "" + +#: src/gui/settings.cpp:4107 src/gui/settings.cpp:4172 +#: src/gui/findReplace.cpp:791 +msgid "Selection" +msgstr "" + +#: src/gui/settings.cpp:4108 +msgid "Selection (hovered)" +msgstr "" + +#: src/gui/settings.cpp:4109 +msgid "Selection (clicked)" +msgstr "" + +#: src/gui/settings.cpp:4110 +msgid "Highlight 1" +msgstr "" + +#: src/gui/settings.cpp:4111 +msgid "Highlight 2" +msgstr "" + +#: src/gui/settings.cpp:4112 +msgid "Row number" +msgstr "" + +#: src/gui/settings.cpp:4113 +msgid "Row number (highlight 1)" +msgstr "" + +#: src/gui/settings.cpp:4114 +msgid "Row number (highlight 2)" +msgstr "" + +#: src/gui/settings.cpp:4116 +msgid "Note (highlight 1)" +msgstr "" + +#: src/gui/settings.cpp:4117 +msgid "Note (highlight 2)" +msgstr "" + +#: src/gui/settings.cpp:4118 +msgid "Blank" +msgstr "" + +#: src/gui/settings.cpp:4119 +msgid "Blank (highlight 1)" +msgstr "" + +#: src/gui/settings.cpp:4120 +msgid "Blank (highlight 2)" +msgstr "" + +#: src/gui/settings.cpp:4122 +msgid "Instrument (invalid type)" +msgstr "" + +#: src/gui/settings.cpp:4123 +msgid "Instrument (out of range)" +msgstr "" + +#: src/gui/settings.cpp:4124 +msgid "Volume (0%)" +msgstr "" + +#: src/gui/settings.cpp:4125 +msgid "Volume (50%)" +msgstr "" + +#: src/gui/settings.cpp:4126 +msgid "Volume (100%)" +msgstr "" + +#: src/gui/settings.cpp:4128 +msgid "Pitch effect" +msgstr "" + +#: src/gui/settings.cpp:4129 +msgid "Volume effect" +msgstr "" + +#: src/gui/settings.cpp:4130 +msgid "Panning effect" +msgstr "" + +#: src/gui/settings.cpp:4131 +msgid "Song effect" +msgstr "" + +#: src/gui/settings.cpp:4132 +msgid "Time effect" +msgstr "" + +#: src/gui/settings.cpp:4133 +msgid "Speed effect" +msgstr "" + +#: src/gui/settings.cpp:4134 +msgid "Primary specific effect" +msgstr "" + +#: src/gui/settings.cpp:4135 +msgid "Secondary specific effect" +msgstr "" + +#: src/gui/settings.cpp:4137 +msgid "External command output" +msgstr "" + +#: src/gui/settings.cpp:4138 +msgid "Status: off/disabled" +msgstr "" + +#: src/gui/settings.cpp:4139 +msgid "Status: off + macro rel" +msgstr "" + +#: src/gui/settings.cpp:4140 +msgid "Status: on + macro rel" +msgstr "" + +#: src/gui/settings.cpp:4141 +msgid "Status: on" +msgstr "" + +#: src/gui/settings.cpp:4142 +msgid "Status: volume" +msgstr "" + +#: src/gui/settings.cpp:4143 +msgid "Status: pitch" +msgstr "" + +#: src/gui/settings.cpp:4144 +msgid "Status: panning" +msgstr "" + +#: src/gui/settings.cpp:4145 +msgid "Status: chip (primary)" +msgstr "" + +#: src/gui/settings.cpp:4146 +msgid "Status: chip (secondary)" +msgstr "" + +#: src/gui/settings.cpp:4147 +msgid "Status: mixing" +msgstr "" + +#: src/gui/settings.cpp:4148 +msgid "Status: DSP effect" +msgstr "" + +#: src/gui/settings.cpp:4149 +msgid "Status: note altering" +msgstr "" + +#: src/gui/settings.cpp:4150 +msgid "Status: misc color 1" +msgstr "" + +#: src/gui/settings.cpp:4151 +msgid "Status: misc color 2" +msgstr "" + +#: src/gui/settings.cpp:4152 +msgid "Status: misc color 3" +msgstr "" + +#: src/gui/settings.cpp:4153 +msgid "Status: attack" +msgstr "" + +#: src/gui/settings.cpp:4154 +msgid "Status: decay" +msgstr "" + +#: src/gui/settings.cpp:4155 +msgid "Status: sustain" +msgstr "" + +#: src/gui/settings.cpp:4156 +msgid "Status: release" +msgstr "" + +#: src/gui/settings.cpp:4157 +msgid "Status: decrease linear" +msgstr "" + +#: src/gui/settings.cpp:4158 +msgid "Status: decrease exp" +msgstr "" + +#: src/gui/settings.cpp:4159 +msgid "Status: increase" +msgstr "" + +#: src/gui/settings.cpp:4160 +msgid "Status: bent" +msgstr "" + +#: src/gui/settings.cpp:4161 +msgid "Status: direct" +msgstr "" + +#: src/gui/settings.cpp:4164 src/gui/guiConst.cpp:586 src/gui/sampleEdit.cpp:96 +msgid "Sample Editor" +msgstr "" + +#: src/gui/settings.cpp:4167 +msgid "Time background" +msgstr "" + +#: src/gui/settings.cpp:4168 +msgid "Time text" +msgstr "" + +#: src/gui/settings.cpp:4169 +msgid "Loop region" +msgstr "" + +#: src/gui/settings.cpp:4170 +msgid "Center guide" +msgstr "" + +#: src/gui/settings.cpp:4171 +msgid "Grid" +msgstr "" + +#: src/gui/settings.cpp:4173 +msgid "Selection points" +msgstr "" + +#: src/gui/settings.cpp:4174 +msgid "Preview needle" +msgstr "" + +#: src/gui/settings.cpp:4175 +msgid "Playing needles" +msgstr "" + +#: src/gui/settings.cpp:4176 +msgid "Loop markers" +msgstr "" + +#: src/gui/settings.cpp:4177 +msgid "Chip select: disabled" +msgstr "" + +#: src/gui/settings.cpp:4178 +msgid "Chip select: enabled" +msgstr "" + +#: src/gui/settings.cpp:4179 +msgid "Chip select: enabled (failure)" +msgstr "" + +#: src/gui/settings.cpp:4182 src/gui/guiConst.cpp:602 src/gui/patManager.cpp:35 +msgid "Pattern Manager" +msgstr "" + +#: src/gui/settings.cpp:4183 +msgid "Unallocated" +msgstr "" + +#: src/gui/settings.cpp:4184 +msgid "Unused" +msgstr "" + +#: src/gui/settings.cpp:4185 +msgid "Used" +msgstr "" + +#: src/gui/settings.cpp:4186 +msgid "Overused" +msgstr "" + +#: src/gui/settings.cpp:4187 +msgid "Really overused" +msgstr "" + +#: src/gui/settings.cpp:4188 +msgid "Combo Breaker" +msgstr "" + +#: src/gui/settings.cpp:4191 src/gui/guiConst.cpp:599 src/gui/piano.cpp:63 +msgid "Piano" +msgstr "" + +#: src/gui/settings.cpp:4193 +msgid "Upper key" +msgstr "" + +#: src/gui/settings.cpp:4194 +msgid "Upper key (feedback)" +msgstr "" + +#: src/gui/settings.cpp:4195 +msgid "Upper key (pressed)" +msgstr "" + +#: src/gui/settings.cpp:4196 +msgid "Lower key" +msgstr "" + +#: src/gui/settings.cpp:4197 +msgid "Lower key (feedback)" +msgstr "" + +#: src/gui/settings.cpp:4198 +msgid "Lower key (pressed)" +msgstr "" + +#: src/gui/settings.cpp:4201 src/gui/clock.cpp:31 src/gui/guiConst.cpp:610 +msgid "Clock" +msgstr "" + +#: src/gui/settings.cpp:4202 +msgid "Clock text" +msgstr "" + +#: src/gui/settings.cpp:4203 +msgid "Beat (off)" +msgstr "" + +#: src/gui/settings.cpp:4204 +msgid "Beat (on)" +msgstr "" + +#: src/gui/settings.cpp:4209 +msgid "PortSet" +msgstr "" + +#: src/gui/settings.cpp:4210 +msgid "Port" +msgstr "" + +#: src/gui/settings.cpp:4211 +msgid "Port (hidden/unavailable)" +msgstr "" + +#: src/gui/settings.cpp:4212 +msgid "Connection (selected)" +msgstr "" + +#: src/gui/settings.cpp:4213 +msgid "Connection (other)" +msgstr "" + +#: src/gui/settings.cpp:4219 +msgid "Waveform data" +msgstr "" + +#: src/gui/settings.cpp:4222 +msgid "Reserved" +msgstr "" + +#: src/gui/settings.cpp:4224 +msgid "Sample (alternate 1)" +msgstr "" + +#: src/gui/settings.cpp:4225 +msgid "Sample (alternate 2)" +msgstr "" + +#: src/gui/settings.cpp:4226 +msgid "Sample (alternate 3)" +msgstr "" + +#: src/gui/settings.cpp:4227 +msgid "Wave RAM" +msgstr "" + +#: src/gui/settings.cpp:4228 +msgid "Wavetable (static)" +msgstr "" + +#: src/gui/settings.cpp:4229 +msgid "Echo buffer" +msgstr "" + +#: src/gui/settings.cpp:4230 +msgid "Namco 163 load pos" +msgstr "" + +#: src/gui/settings.cpp:4231 +msgid "Namco 163 play pos" +msgstr "" + +#: src/gui/settings.cpp:4232 +msgid "Sample (bank 0)" +msgstr "" + +#: src/gui/settings.cpp:4233 +msgid "Sample (bank 1)" +msgstr "" + +#: src/gui/settings.cpp:4234 +msgid "Sample (bank 2)" +msgstr "" + +#: src/gui/settings.cpp:4235 +msgid "Sample (bank 3)" +msgstr "" + +#: src/gui/settings.cpp:4236 +msgid "Sample (bank 4)" +msgstr "" + +#: src/gui/settings.cpp:4237 +msgid "Sample (bank 5)" +msgstr "" + +#: src/gui/settings.cpp:4238 +msgid "Sample (bank 6)" +msgstr "" + +#: src/gui/settings.cpp:4239 +msgid "Sample (bank 7)" +msgstr "" + +#: src/gui/settings.cpp:4244 +msgid "Log level: Error" +msgstr "" + +#: src/gui/settings.cpp:4245 +msgid "Log level: Warning" +msgstr "" + +#: src/gui/settings.cpp:4246 +msgid "Log level: Info" +msgstr "" + +#: src/gui/settings.cpp:4247 +msgid "Log level: Debug" +msgstr "" + +#: src/gui/settings.cpp:4248 +msgid "Log level: Trace/Verbose" +msgstr "" + +#: src/gui/settings.cpp:4253 +msgid "Backup" +msgstr "" + +#: src/gui/settings.cpp:4258 +msgid "Enable backup system" +msgstr "" + +#: src/gui/settings.cpp:4263 +msgid "Interval (in seconds)" +msgstr "" + +#: src/gui/settings.cpp:4268 +msgid "Backups per file" +msgstr "" + +#: src/gui/settings.cpp:4274 +msgid "Backup Management" +msgstr "" + +#: src/gui/settings.cpp:4278 +msgid "Purge before:" +msgstr "" + +#: src/gui/settings.cpp:4352 +msgid "Go##PDate" +msgstr "" + +#: src/gui/settings.cpp:4359 +#, c-format +msgid "%PB used" +msgstr "" + +#: src/gui/settings.cpp:4361 +#, c-format +msgid "%TB used" +msgstr "" + +#: src/gui/settings.cpp:4363 +#, c-format +msgid "%GB used" +msgstr "" + +#: src/gui/settings.cpp:4365 +#, c-format +msgid "%MB used" +msgstr "" + +#: src/gui/settings.cpp:4367 +#, c-format +msgid "%KB used" +msgstr "" + +#: src/gui/settings.cpp:4369 +#, c-format +msgid "% bytes used" +msgstr "" + +#: src/gui/settings.cpp:4374 +msgid "Refresh" +msgstr "" + +#: src/gui/settings.cpp:4378 +msgid "Delete all" +msgstr "" + +#: src/gui/settings.cpp:4384 src/gui/settings.cpp:6688 +msgid "Size" +msgstr "" + +#: src/gui/settings.cpp:4385 +msgid "Latest" +msgstr "" + +#: src/gui/settings.cpp:4395 +#, c-format +msgid "%P" +msgstr "" + +#: src/gui/settings.cpp:4397 +#, c-format +msgid "%T" +msgstr "" + +#: src/gui/settings.cpp:4399 +#, c-format +msgid "%G" +msgstr "" + +#: src/gui/settings.cpp:4401 +#, c-format +msgid "%M" +msgstr "" + +#: src/gui/settings.cpp:4403 +#, c-format +msgid "%K" +msgstr "" + +#: src/gui/settings.cpp:4405 +#, c-format +msgid "%" +msgstr "" + +#: src/gui/settings.cpp:4529 +msgid "Cheat Codes" +msgstr "" + +#: src/gui/settings.cpp:4531 +msgid "Enter code:" +msgstr "" + +#: src/gui/settings.cpp:4533 +msgid "Submit" +msgstr "" + +#: src/gui/settings.cpp:4537 +msgid "invalid code" +msgstr "" + +#: src/gui/settings.cpp:4547 +msgid "toggled alternate UI" +msgstr "" + +#: src/gui/settings.cpp:4551 +msgid ":smile: :star_struck: :sunglasses: :ok_hand:" +msgstr "" + +#: src/gui/settings.cpp:4555 +msgid "enabled all instrument types" +msgstr "" + +#: src/gui/settings.cpp:4559 +msgid "OK, if I bring your Partial pitch linearity will you stop bothering me?" +msgstr "" + +#: src/gui/settings.cpp:4563 +msgid "unlocked audio multi-threading options!" +msgstr "" + +#: src/gui/settings.cpp:4567 +msgid "enabled \"comfortable\" mode" +msgstr "" + +#: src/gui/settings.cpp:4585 +msgid "OK##SettingsOK" +msgstr "" + +#: src/gui/settings.cpp:4591 +msgid "Cancel##SettingsCancel" +msgstr "" + +#: src/gui/settings.cpp:4599 +msgid "Apply##SettingsApply" +msgstr "" + +#: src/gui/settings.cpp:5673 +msgid "could not initialize audio!" +msgstr "" + +#: src/gui/settings.cpp:5683 src/gui/gui.cpp:4067 src/gui/gui.cpp:6662 +#: src/gui/gui.cpp:7088 +msgid "error while loading fonts! please check your settings." +msgstr "" + +#: src/gui/settings.cpp:5862 +#, c-format +msgid "error while loading config! (%s)" +msgstr "" + +#: src/gui/settings.cpp:6675 +msgid "[Dir]" +msgstr "" + +#: src/gui/settings.cpp:6676 +msgid "[Link]" +msgstr "" + +#: src/gui/settings.cpp:6677 +msgid "[File]" +msgstr "" + +#: src/gui/settings.cpp:6678 +msgid "Name:" +msgstr "" + +#: src/gui/settings.cpp:6679 +msgid "Path:" +msgstr "" + +#: src/gui/settings.cpp:6680 +msgid "Reset search" +msgstr "" + +#: src/gui/settings.cpp:6681 +msgid "Drives" +msgstr "" + +#: src/gui/settings.cpp:6682 +msgid "" +"Edit path\n" +"You can also right click on path buttons" +msgstr "" + +#: src/gui/settings.cpp:6683 +msgid "Go to home directory" +msgstr "" + +#: src/gui/settings.cpp:6684 +msgid "Go to parent directory" +msgstr "" + +#: src/gui/settings.cpp:6685 +msgid "Create Directory" +msgstr "" + +#: src/gui/settings.cpp:6686 +msgid "File name" +msgstr "" + +#: src/gui/settings.cpp:6689 +msgid "Date" +msgstr "" + +#: src/gui/settings.cpp:6690 src/gui/gui.cpp:5510 src/gui/gui.cpp:5645 +#: src/gui/gui.cpp:5646 +msgid "Warning" +msgstr "" + +#: src/gui/settings.cpp:6691 +msgid "The file you selected already exists! Would you like to overwrite it?" +msgstr "" + +#: src/gui/settings.cpp:6692 src/gui/gui.cpp:5650 src/gui/gui.cpp:5674 +#: src/gui/gui.cpp:5698 src/gui/gui.cpp:5722 src/gui/gui.cpp:5746 +#: src/gui/gui.cpp:5770 src/gui/gui.cpp:5802 src/gui/gui.cpp:5818 +#: src/gui/gui.cpp:5829 src/gui/gui.cpp:5841 src/gui/gui.cpp:5995 +#: src/gui/gui.cpp:6017 src/gui/gui.cpp:6032 src/gui/gui.cpp:6043 +msgid "Yes" +msgstr "" + +#: src/gui/settings.cpp:6693 src/gui/findReplace.cpp:828 src/gui/gui.cpp:5664 +#: src/gui/gui.cpp:5688 src/gui/gui.cpp:5712 src/gui/gui.cpp:5736 +#: src/gui/gui.cpp:5760 src/gui/gui.cpp:5788 src/gui/gui.cpp:5813 +#: src/gui/gui.cpp:5824 src/gui/gui.cpp:5836 src/gui/gui.cpp:5848 +#: src/gui/gui.cpp:6012 src/gui/gui.cpp:6027 src/gui/gui.cpp:6037 +#: src/gui/gui.cpp:6050 +msgid "No" +msgstr "" + +#: src/gui/settings.cpp:6694 +msgid "%Y/%m/%d %H:%M" +msgstr "" + +#: src/gui/orders.cpp:114 +msgid "Add new order" +msgstr "" + +#: src/gui/orders.cpp:125 src/gui/guiConst.cpp:794 +msgid "Remove order" +msgstr "" + +#: src/gui/orders.cpp:137 +msgid "Duplicate order (right-click to deep clone)" +msgstr "" + +#: src/gui/orders.cpp:146 src/gui/guiConst.cpp:795 +msgid "Move order up" +msgstr "" + +#: src/gui/orders.cpp:155 src/gui/guiConst.cpp:796 +msgid "Move order down" +msgstr "" + +#: src/gui/orders.cpp:167 +msgid "Place copy of current order at end of song (right-click to deep clone)" +msgstr "" + +#: src/gui/orders.cpp:177 +msgid "Order change mode: entire row" +msgstr "" + +#: src/gui/orders.cpp:179 +msgid "Order change mode: one" +msgstr "" + +#: src/gui/orders.cpp:205 +msgid "Order edit mode: Select and type (scroll vertically)" +msgstr "" + +#: src/gui/orders.cpp:207 +msgid "Order edit mode: Select and type (scroll horizontally)" +msgstr "" + +#: src/gui/orders.cpp:209 +msgid "Order edit mode: Select and type (don't scroll)" +msgstr "" + +#: src/gui/orders.cpp:211 +msgid "Order edit mode: Click to change" +msgstr "" + +#: src/gui/findReplace.cpp:29 +msgid "ignore" +msgstr "" + +#: src/gui/findReplace.cpp:30 +msgid "equals" +msgstr "" + +#: src/gui/findReplace.cpp:31 +msgid "not equal" +msgstr "" + +#: src/gui/findReplace.cpp:32 +msgid "between" +msgstr "" + +#: src/gui/findReplace.cpp:33 +msgid "not between" +msgstr "" + +#: src/gui/findReplace.cpp:34 +msgid "any" +msgstr "" + +#: src/gui/findReplace.cpp:35 src/gui/guiConst.cpp:217 +msgid "none" +msgstr "" + +#: src/gui/findReplace.cpp:39 +msgid "set" +msgstr "" + +#: src/gui/findReplace.cpp:40 +msgid "add" +msgstr "" + +#: src/gui/findReplace.cpp:41 +msgid "add (overflow)" +msgstr "" + +#: src/gui/findReplace.cpp:42 +msgid "scale %" +msgstr "" + +#: src/gui/findReplace.cpp:512 src/gui/guiConst.cpp:609 +msgid "Find/Replace" +msgstr "" + +#: src/gui/findReplace.cpp:520 src/gui/findReplace.cpp:850 +msgid "Find" +msgstr "" + +#: src/gui/findReplace.cpp:526 src/gui/findReplace.cpp:535 +msgid "order" +msgstr "" + +#: src/gui/findReplace.cpp:527 src/gui/findReplace.cpp:537 +msgid "row" +msgstr "" + +#: src/gui/findReplace.cpp:539 src/gui/csPlayer.cpp:146 +msgid "channel" +msgstr "" + +#: src/gui/findReplace.cpp:541 +msgid "go" +msgstr "" + +#: src/gui/findReplace.cpp:585 +msgid "no matches found!" +msgstr "" + +#: src/gui/findReplace.cpp:587 +msgid "Back" +msgstr "" + +#: src/gui/findReplace.cpp:750 +msgid "Delete query" +msgstr "" + +#: src/gui/findReplace.cpp:754 src/gui/findReplace.cpp:1037 +msgid "Add effect" +msgstr "" + +#: src/gui/findReplace.cpp:761 src/gui/findReplace.cpp:1044 +msgid "Remove effect" +msgstr "" + +#: src/gui/findReplace.cpp:786 +msgid "Search range:" +msgstr "" + +#: src/gui/findReplace.cpp:799 +msgid "Confine to channels" +msgstr "" + +#: src/gui/findReplace.cpp:803 src/gui/sampleEdit.cpp:1152 +msgid "From" +msgstr "" + +#: src/gui/findReplace.cpp:814 src/gui/sampleEdit.cpp:1156 +msgid "To" +msgstr "" + +#: src/gui/findReplace.cpp:826 +msgid "Match effect position:" +msgstr "" + +#: src/gui/findReplace.cpp:832 +msgid "match effects regardless of position." +msgstr "" + +#: src/gui/findReplace.cpp:834 src/gui/compatFlags.cpp:288 +msgid "Lax" +msgstr "" + +#: src/gui/findReplace.cpp:838 +msgid "match effects only if they appear in-order." +msgstr "" + +#: src/gui/findReplace.cpp:840 src/gui/compatFlags.cpp:276 +msgid "Strict" +msgstr "" + +#: src/gui/findReplace.cpp:844 +msgid "match effects only if they appear exactly as specified." +msgstr "" + +#: src/gui/findReplace.cpp:856 +msgid "Replace" +msgstr "" + +#: src/gui/findReplace.cpp:908 +msgid "INVALID" +msgstr "" + +#: src/gui/findReplace.cpp:1052 +msgid "Effect replace mode:" +msgstr "" + +#: src/gui/findReplace.cpp:1053 +msgid "Replace matches only" +msgstr "" + +#: src/gui/findReplace.cpp:1056 +msgid "Replace matches, then free spaces" +msgstr "" + +#: src/gui/findReplace.cpp:1059 +msgid "Clear effects" +msgstr "" + +#: src/gui/findReplace.cpp:1062 +msgid "Insert in free spaces" +msgstr "" + +#: src/gui/findReplace.cpp:1065 +msgid "Replace##QueryReplace" +msgstr "" + +#: src/gui/about.cpp:26 +msgid "is proud to present" +msgstr "" + +#: src/gui/about.cpp:30 +msgid "the biggest multi-system chiptune tracker!" +msgstr "" + +#: src/gui/about.cpp:31 +msgid "featuring DefleMask song compatibility." +msgstr "" + +#: src/gui/about.cpp:33 +msgid "> CREDITS <" +msgstr "" + +#: src/gui/about.cpp:35 +msgid "-- program --" +msgstr "" + +#: src/gui/about.cpp:37 +msgid "A M 4 N (intro tune)" +msgstr "" + +#: src/gui/about.cpp:52 +msgid "-- graphics/UI design --" +msgstr "" + +#: src/gui/about.cpp:59 +msgid "-- documentation --" +msgstr "" + +#: src/gui/about.cpp:69 +msgid "-- localization/translation team --" +msgstr "" + +#: src/gui/about.cpp:81 +msgid "-- demo songs --" +msgstr "" + +#: src/gui/about.cpp:207 +msgid "-- additional feedback/fixes --" +msgstr "" + +#: src/gui/about.cpp:218 +msgid "-- Metal backend test team --" +msgstr "" + +#: src/gui/about.cpp:224 +msgid "-- DirectX 9 backend test team --" +msgstr "" + +#: src/gui/about.cpp:231 +msgid "powered by:" +msgstr "" + +#: src/gui/about.cpp:232 +msgid "Dear ImGui by Omar Cornut" +msgstr "" + +#: src/gui/about.cpp:233 +msgid "SDL2 by Sam Lantinga" +msgstr "" + +#: src/gui/about.cpp:237 +msgid "zlib by Jean-loup Gailly" +msgstr "" + +#: src/gui/about.cpp:238 +msgid "and Mark Adler" +msgstr "" + +#: src/gui/about.cpp:239 +msgid "libsndfile by Erik de Castro Lopo" +msgstr "" + +#: src/gui/about.cpp:240 +msgid "Portable File Dialogs by Sam Hocevar" +msgstr "" + +#: src/gui/about.cpp:241 +msgid "Native File Dialog by Frogtoss Games" +msgstr "" + +#: src/gui/about.cpp:243 +msgid "Weak-JACK by x42" +msgstr "" + +#: src/gui/about.cpp:244 +msgid "RtMidi by Gary P. Scavone" +msgstr "" + +#: src/gui/about.cpp:245 +msgid "FFTW by Matteo Frigo and Steven G. Johnson" +msgstr "" + +#: src/gui/about.cpp:246 +msgid "backward-cpp by Google" +msgstr "" + +#: src/gui/about.cpp:247 +msgid "adpcm by superctr" +msgstr "" + +#: src/gui/about.cpp:248 +msgid "adpcm-xq by David Bryant" +msgstr "" + +#: src/gui/about.cpp:249 +msgid "Nuked-OPL3/OPLL/OPM/OPN2/PSG by nukeykt" +msgstr "" + +#: src/gui/about.cpp:250 +msgid "YM3812-LLE, YMF262-LLE, YMF276-LLE and YM2608-LLE by nukeykt" +msgstr "" + +#: src/gui/about.cpp:251 +msgid "ESFMu (modified version) by Kagamiin~" +msgstr "" + +#: src/gui/about.cpp:252 +msgid "ymfm by Aaron Giles" +msgstr "" + +#: src/gui/about.cpp:253 +msgid "emu2413 by Digital Sound Antiques" +msgstr "" + +#: src/gui/about.cpp:254 +msgid "MAME SN76496 by Nicola Salmoria" +msgstr "" + +#: src/gui/about.cpp:255 +msgid "MAME AY-3-8910 by Couriersud" +msgstr "" + +#: src/gui/about.cpp:256 +msgid "with AY8930 fixes by Eulous, cam900 and Grauw" +msgstr "" + +#: src/gui/about.cpp:257 +msgid "MAME SAA1099 by Juergen Buchmueller and Manuel Abadia" +msgstr "" + +#: src/gui/about.cpp:258 +msgid "MAME Namco WSG by Nicola Salmoria and Aaron Giles" +msgstr "" + +#: src/gui/about.cpp:259 +msgid "MAME RF5C68 core by Olivier Galibert and Aaron Giles" +msgstr "" + +#: src/gui/about.cpp:260 +msgid "MAME MSM5232 core by Jarek Burczynski and Hiromitsu Shioya" +msgstr "" + +#: src/gui/about.cpp:261 +msgid "MAME MSM6258 core by Barry Rodewald" +msgstr "" + +#: src/gui/about.cpp:262 +msgid "MAME YMZ280B core by Aaron Giles" +msgstr "" + +#: src/gui/about.cpp:263 +msgid "MAME GA20 core by Acho A. Tang and R. Belmont" +msgstr "" + +#: src/gui/about.cpp:264 +msgid "MAME SegaPCM core by Hiromitsu Shioya and Olivier Galibert" +msgstr "" + +#: src/gui/about.cpp:265 +msgid "SAASound by Dave Hooper and Simon Owen" +msgstr "" + +#: src/gui/about.cpp:266 +msgid "SameBoy by Lior Halphon" +msgstr "" + +#: src/gui/about.cpp:267 +msgid "Mednafen PCE, WonderSwan, T6W28 and Virtual Boy audio cores" +msgstr "" + +#: src/gui/about.cpp:268 +msgid "SNES DSP core by Blargg" +msgstr "" + +#: src/gui/about.cpp:269 +msgid "puNES (NES, MMC5 and FDS) by FHorse" +msgstr "" + +#: src/gui/about.cpp:270 +msgid "NSFPlay (NES and FDS) by Brad Smith and Brezza" +msgstr "" + +#: src/gui/about.cpp:271 +msgid "reSID by Dag Lem" +msgstr "" + +#: src/gui/about.cpp:272 +msgid "reSIDfp by Dag Lem, Antti Lankila" +msgstr "" + +#: src/gui/about.cpp:273 +msgid "and Leandro Nini" +msgstr "" + +#: src/gui/about.cpp:274 +msgid "dSID by DefleMask Team based on jsSID" +msgstr "" + +#: src/gui/about.cpp:275 +msgid "Stella by Stella Team" +msgstr "" + +#: src/gui/about.cpp:276 +msgid "QSound emulator by superctr and Valley Bell" +msgstr "" + +#: src/gui/about.cpp:277 +msgid "VICE VIC-20 sound core by Rami Rasanen and viznut" +msgstr "" + +#: src/gui/about.cpp:278 +msgid "VICE TED sound core by Andreas Boose, Tibor Biczo" +msgstr "" + +#: src/gui/about.cpp:279 +msgid "and Marco van den Heuvel" +msgstr "" + +#: src/gui/about.cpp:280 +msgid "VERA sound core by Frank van den Hoef" +msgstr "" + +#: src/gui/about.cpp:281 +msgid "mzpokeysnd POKEY emulator by Michael Borisov" +msgstr "" + +#: src/gui/about.cpp:282 +msgid "ASAP POKEY emulator by Piotr Fusik" +msgstr "" + +#: src/gui/about.cpp:283 +msgid "ported by laoo to C++" +msgstr "" + +#: src/gui/about.cpp:284 +msgid "vgsound_emu (second version, modified version) by cam900" +msgstr "" + +#: src/gui/about.cpp:285 +msgid "SM8521 emulator (modified version) by cam900" +msgstr "" + +#: src/gui/about.cpp:286 +msgid "D65010G031 emulator (modified version) by cam900" +msgstr "" + +#: src/gui/about.cpp:287 +msgid "Namco C140/C219 emulator (modified version) by cam900" +msgstr "" + +#: src/gui/about.cpp:288 +msgid "PowerNoise emulator by scratchminer" +msgstr "" + +#: src/gui/about.cpp:289 +msgid "ep128emu by Istvan Varga" +msgstr "" + +#: src/gui/about.cpp:290 +msgid "NDS sound emulator by cam900" +msgstr "" + +#: src/gui/about.cpp:292 +msgid "greetings to:" +msgstr "" + +#: src/gui/about.cpp:295 +msgid "all members of Deflers of Noice!" +msgstr "" + +#: src/gui/about.cpp:301 +msgid "copyright © 2021-2024 tildearrow" +msgstr "" + +#: src/gui/about.cpp:302 +msgid "(and contributors)." +msgstr "" + +#: src/gui/about.cpp:303 +msgid "licensed under GPLv2+! see" +msgstr "" + +#: src/gui/about.cpp:304 +msgid "LICENSE for more information." +msgstr "" + +#: src/gui/about.cpp:306 +msgid "help Furnace grow:" +msgstr "" + +#: src/gui/about.cpp:309 +msgid "contact tildearrow at:" +msgstr "" + +#: src/gui/about.cpp:312 +msgid "disclaimer:" +msgstr "" + +#: src/gui/about.cpp:313 +msgid "despite the fact this program works" +msgstr "" + +#: src/gui/about.cpp:314 +msgid "with the .dmf file format, it is NOT" +msgstr "" + +#: src/gui/about.cpp:315 +msgid "affiliated with Delek or DefleMask in" +msgstr "" + +#: src/gui/about.cpp:316 +msgid "any way, nor it is a replacement for" +msgstr "" + +#: src/gui/about.cpp:317 +msgid "the original program." +msgstr "" + +#: src/gui/about.cpp:319 +msgid "it also comes with ABSOLUTELY NO WARRANTY." +msgstr "" + +#: src/gui/about.cpp:321 +msgid "thanks to all contributors/bug reporters!" +msgstr "" + +#: src/gui/about.cpp:328 +msgid "About Furnace" +msgstr "" + +#: src/gui/about.cpp:418 +msgid "Unsaved changes! Save changes before playing?" +msgstr "" + +#: src/gui/compatFlags.cpp:31 src/gui/guiConst.cpp:598 +msgid "Compatibility Flags" +msgstr "" + +#: src/gui/compatFlags.cpp:32 +msgid "" +"these flags are designed to provide better DefleMask/older Furnace " +"compatibility.\n" +"it is recommended to disable most of these unless you rely on specific " +"quirks." +msgstr "" + +#: src/gui/compatFlags.cpp:34 src/gui/compatFlags.cpp:310 +msgid "DefleMask" +msgstr "" + +#: src/gui/compatFlags.cpp:35 +msgid "Limit slide range" +msgstr "" + +#: src/gui/compatFlags.cpp:37 +msgid "" +"when enabled, slides are limited to a compatible range.\n" +"may cause problems with slides in negative octaves." +msgstr "" + +#: src/gui/compatFlags.cpp:39 +msgid "Compatible noise layout on NES and PC Engine" +msgstr "" + +#: src/gui/compatFlags.cpp:41 +msgid "" +"use a rather unusual compatible noise frequency layout.\n" +"removes some noise frequencies on PC Engine." +msgstr "" + +#: src/gui/compatFlags.cpp:43 +msgid "Game Boy instrument duty is wave volume" +msgstr "" + +#: src/gui/compatFlags.cpp:45 +msgid "" +"if enabled, an instrument with duty macro in the wave channel will be mapped " +"to wavetable volume." +msgstr "" + +#: src/gui/compatFlags.cpp:48 +msgid "Restart macro on portamento" +msgstr "" + +#: src/gui/compatFlags.cpp:50 +msgid "" +"when enabled, a portamento effect will reset the channel's macro if used in " +"combination with a note." +msgstr "" + +#: src/gui/compatFlags.cpp:52 +msgid "Legacy volume slides" +msgstr "" + +#: src/gui/compatFlags.cpp:54 +msgid "" +"simulate glitchy volume slide behavior by silently overflowing the volume " +"when the slide goes below 0." +msgstr "" + +#: src/gui/compatFlags.cpp:56 +msgid "Compatible arpeggio" +msgstr "" + +#: src/gui/compatFlags.cpp:58 +msgid "delay arpeggio by one tick on every new note." +msgstr "" + +#: src/gui/compatFlags.cpp:60 +msgid "Disable DAC when sample ends" +msgstr "" + +#: src/gui/compatFlags.cpp:62 +msgid "" +"when enabled, the DAC in YM2612 will be disabled if there isn't any sample " +"playing." +msgstr "" + +#: src/gui/compatFlags.cpp:64 +msgid "Broken speed alternation" +msgstr "" + +#: src/gui/compatFlags.cpp:66 +msgid "" +"determines next speed based on whether the row is odd/even instead of " +"alternating between speeds." +msgstr "" + +#: src/gui/compatFlags.cpp:68 +msgid "Ignore duplicate slide effects" +msgstr "" + +#: src/gui/compatFlags.cpp:70 +msgid "" +"if this is on, only the first slide of a row in a channel will be considered." +msgstr "" + +#: src/gui/compatFlags.cpp:72 +msgid "Ignore 0Dxx on the last order" +msgstr "" + +#: src/gui/compatFlags.cpp:74 +msgid "" +"if this is on, a jump to next row effect will not take place when it is on " +"the last order of a song." +msgstr "" + +#: src/gui/compatFlags.cpp:76 +msgid "Buggy portamento after pitch slide" +msgstr "" + +#: src/gui/compatFlags.cpp:78 +msgid "simulates a bug in where portamento does not work after sliding." +msgstr "" + +#: src/gui/compatFlags.cpp:80 +msgid "FM pitch slide octave boundary odd behavior" +msgstr "" + +#: src/gui/compatFlags.cpp:82 +msgid "" +"if this is on, a pitch slide that crosses the octave boundary will stop for " +"one tick and then continue from the nearest octave boundary.\n" +"for .dmf compatibility." +msgstr "" + +#: src/gui/compatFlags.cpp:84 +msgid "Don't apply Game Boy envelope on note-less instrument change" +msgstr "" + +#: src/gui/compatFlags.cpp:86 +msgid "if this is on, an instrument change will not affect the envelope." +msgstr "" + +#: src/gui/compatFlags.cpp:88 +msgid "Ignore DAC mode change outside of intended channel in ExtCh mode" +msgstr "" + +#: src/gui/compatFlags.cpp:90 +msgid "if this is on, 17xx has no effect on the operator channels in YM2612." +msgstr "" + +#: src/gui/compatFlags.cpp:92 +msgid "E1xy/E2xy also take priority over slide stops" +msgstr "" + +#: src/gui/compatFlags.cpp:94 +msgid "does this make any sense by now?" +msgstr "" + +#: src/gui/compatFlags.cpp:96 +msgid "E1xy/E2xy stop when repeating the same note" +msgstr "" + +#: src/gui/compatFlags.cpp:98 +msgid "ugh, if only this wasn't a thing..." +msgstr "" + +#: src/gui/compatFlags.cpp:100 +msgid "SN76489 duty macro always resets phase" +msgstr "" + +#: src/gui/compatFlags.cpp:102 +msgid "" +"when enabled, duty macro will always reset phase, even if its value hasn't " +"changed." +msgstr "" + +#: src/gui/compatFlags.cpp:104 +msgid "Broken volume scaling strategy" +msgstr "" + +#: src/gui/compatFlags.cpp:106 +msgid "" +"when enabled:\n" +"- log scaling: multiply\n" +"- linear scaling: subtract\n" +"when disabled:\n" +"- log scaling: subtract\n" +"- linear scaling: multiply" +msgstr "" + +#: src/gui/compatFlags.cpp:108 +msgid "Don't persist volume macro after it finishes" +msgstr "" + +#: src/gui/compatFlags.cpp:110 +msgid "" +"when enabled, a value in the volume column that happens after the volume " +"macro is done will disregard the macro." +msgstr "" + +#: src/gui/compatFlags.cpp:112 +msgid "Broken output volume on instrument change" +msgstr "" + +#: src/gui/compatFlags.cpp:114 +msgid "" +"if enabled, no checks for the presence of a volume macro will be made.\n" +"this will cause the last macro value to linger unless a value in the volume " +"column is present." +msgstr "" + +#: src/gui/compatFlags.cpp:116 +msgid "Broken output volume - Episode 2 (PLEASE KEEP ME DISABLED)" +msgstr "" + +#: src/gui/compatFlags.cpp:118 +msgid "" +"these compatibility flags are getting SO damn ridiculous and out of " +"control.\n" +"as you may have guessed, this one exists due to yet ANOTHER DefleMask-" +"specific behavior.\n" +"please keep this off at all costs, because I will not support it when ROM " +"export comes.\n" +"oh, and don't start an argument out of it. Furnace isn't a DefleMask " +"replacement, and no,\n" +"I am not trying to make it look like one with all these flags.\n" +"\n" +"oh, and what about the other flags that don't have to do with DefleMask?\n" +"those are for .mod import, future FamiTracker import and personal taste!\n" +"\n" +"end of rant" +msgstr "" + +#: src/gui/compatFlags.cpp:120 +msgid "Treat SN76489 periods under 8 as 1" +msgstr "" + +#: src/gui/compatFlags.cpp:122 +msgid "" +"when enabled, any SN period under 8 will be written as 1 instead.\n" +"this replicates DefleMask behavior, but reduces available period range." +msgstr "" + +#: src/gui/compatFlags.cpp:126 src/gui/compatFlags.cpp:304 +msgid "Old Furnace" +msgstr "" + +#: src/gui/compatFlags.cpp:127 +msgid "Arpeggio inhibits non-porta slides" +msgstr "" + +#: src/gui/compatFlags.cpp:129 src/gui/compatFlags.cpp:133 +msgid "behavior changed in 0.5.5" +msgstr "" + +#: src/gui/compatFlags.cpp:131 +msgid "Wack FM algorithm macro" +msgstr "" + +#: src/gui/compatFlags.cpp:135 +msgid "Broken shortcut slides (E1xy/E2xy)" +msgstr "" + +#: src/gui/compatFlags.cpp:137 +msgid "behavior changed in 0.5.7" +msgstr "" + +#: src/gui/compatFlags.cpp:139 +msgid "Stop portamento on note off" +msgstr "" + +#: src/gui/compatFlags.cpp:141 src/gui/compatFlags.cpp:145 +#: src/gui/compatFlags.cpp:149 src/gui/compatFlags.cpp:153 +#: src/gui/compatFlags.cpp:157 src/gui/compatFlags.cpp:161 +#: src/gui/compatFlags.cpp:165 +msgid "behavior changed in 0.6pre1" +msgstr "" + +#: src/gui/compatFlags.cpp:143 +msgid "Don't allow instrument change during slides" +msgstr "" + +#: src/gui/compatFlags.cpp:147 +msgid "Don't reset note to base on arpeggio stop" +msgstr "" + +#: src/gui/compatFlags.cpp:151 +msgid "ExtCh channel status is not shared among operators" +msgstr "" + +#: src/gui/compatFlags.cpp:155 +msgid "Disable new SegaPCM features (macros and better panning)" +msgstr "" + +#: src/gui/compatFlags.cpp:159 +msgid "Old FM octave boundary behavior" +msgstr "" + +#: src/gui/compatFlags.cpp:163 +msgid "Disable OPN2 DAC volume control" +msgstr "" + +#: src/gui/compatFlags.cpp:167 +msgid "Broken initial position of portamento after arpeggio" +msgstr "" + +#: src/gui/compatFlags.cpp:169 +msgid "behavior changed in 0.6pre1.5" +msgstr "" + +#: src/gui/compatFlags.cpp:171 +msgid "Disable new sample features" +msgstr "" + +#: src/gui/compatFlags.cpp:173 src/gui/compatFlags.cpp:177 +msgid "behavior changed in 0.6pre2" +msgstr "" + +#: src/gui/compatFlags.cpp:175 +msgid "Old arpeggio macro + pitch slide strategy" +msgstr "" + +#: src/gui/compatFlags.cpp:179 +msgid "Broken portamento during legato" +msgstr "" + +#: src/gui/compatFlags.cpp:181 +msgid "behavior changed in 0.6pre4" +msgstr "" + +#: src/gui/compatFlags.cpp:183 +msgid "Broken macros in some FM chips after note off" +msgstr "" + +#: src/gui/compatFlags.cpp:185 +msgid "behavior changed in 0.6pre5" +msgstr "" + +#: src/gui/compatFlags.cpp:187 +msgid "Pre-note does not take effects into consideration" +msgstr "" + +#: src/gui/compatFlags.cpp:189 +msgid "behavior changed in 0.6pre9" +msgstr "" + +#: src/gui/compatFlags.cpp:191 +msgid "Disable new NES DPCM features" +msgstr "" + +#: src/gui/compatFlags.cpp:193 +msgid "behavior changed in 0.6.1" +msgstr "" + +#: src/gui/compatFlags.cpp:195 +msgid "Legacy technical ALWAYS_SET_VOLUME behavior" +msgstr "" + +#: src/gui/compatFlags.cpp:197 +msgid "" +"behavior changed in 0.6.1\n" +"this flag will be removed if I find out that none of the songs break after " +"disabling it." +msgstr "" + +#: src/gui/compatFlags.cpp:199 +msgid "Old sample offset effect" +msgstr "" + +#: src/gui/compatFlags.cpp:201 +msgid "behavior changed in 0.6.3" +msgstr "" + +#: src/gui/compatFlags.cpp:205 +msgid ".mod import" +msgstr "" + +#: src/gui/compatFlags.cpp:206 +msgid "Don't slide on the first tick of a row" +msgstr "" + +#: src/gui/compatFlags.cpp:208 +msgid "" +"simulates ProTracker's behavior of not applying volume/pitch slides on the " +"first tick of a row." +msgstr "" + +#: src/gui/compatFlags.cpp:210 +msgid "Reset arpeggio position on row change" +msgstr "" + +#: src/gui/compatFlags.cpp:212 +msgid "" +"simulates ProTracker's behavior of arpeggio being bound to the current tick " +"of a row." +msgstr "" + +#: src/gui/compatFlags.cpp:216 +msgid "Pitch/Playback" +msgstr "" + +#: src/gui/compatFlags.cpp:217 +msgid "Pitch linearity:" +msgstr "" + +#: src/gui/compatFlags.cpp:223 +msgid "like ProTracker/FamiTracker" +msgstr "" + +#: src/gui/compatFlags.cpp:227 +msgid "Partial (only 04xy/E5xx)" +msgstr "" + +#: src/gui/compatFlags.cpp:231 +msgid "" +"like DefleMask\n" +"\n" +"this pitch linearity mode is deprecated due to:\n" +"- excessive complexity\n" +"- lack of possible optimization\n" +"\n" +"it is recommended to change it now because I will remove this option in the " +"future!" +msgstr "" + +#: src/gui/compatFlags.cpp:235 +msgid "Full" +msgstr "" + +#: src/gui/compatFlags.cpp:239 +msgid "like Impulse Tracker" +msgstr "" + +#: src/gui/compatFlags.cpp:246 +msgid "Pitch slide speed multiplier" +msgstr "" + +#: src/gui/compatFlags.cpp:252 +msgid "Loop modality:" +msgstr "" + +#: src/gui/compatFlags.cpp:254 +msgid "Reset channels" +msgstr "" + +#: src/gui/compatFlags.cpp:258 +msgid "" +"select to reset channels on loop. may trigger a voltage click on every loop!" +msgstr "" + +#: src/gui/compatFlags.cpp:260 +msgid "Soft reset channels" +msgstr "" + +#: src/gui/compatFlags.cpp:264 +msgid "select to turn channels off on loop." +msgstr "" + +#: src/gui/compatFlags.cpp:266 +msgid "Do nothing" +msgstr "" + +#: src/gui/compatFlags.cpp:270 +msgid "select to not reset channels on loop." +msgstr "" + +#: src/gui/compatFlags.cpp:274 +msgid "Cut/delay effect policy:" +msgstr "" + +#: src/gui/compatFlags.cpp:280 +msgid "only when time is less than speed (like DefleMask/ProTracker)" +msgstr "" + +#: src/gui/compatFlags.cpp:282 +msgid "Strict (old)" +msgstr "" + +#: src/gui/compatFlags.cpp:286 +msgid "only when time is less than or equal to speed (original buggy behavior)" +msgstr "" + +#: src/gui/compatFlags.cpp:292 +msgid "no checks" +msgstr "" + +#: src/gui/compatFlags.cpp:296 +msgid "Simultaneous jump (0B+0D) treatment:" +msgstr "" + +#: src/gui/compatFlags.cpp:302 +msgid "accept 0B+0D to jump to a specific row of an order" +msgstr "" + +#: src/gui/compatFlags.cpp:308 +msgid "only accept the first jump effect" +msgstr "" + +#: src/gui/compatFlags.cpp:314 +msgid "only accept 0Dxx" +msgstr "" + +#: src/gui/compatFlags.cpp:320 +msgid "Auto-insert one tick gap between notes" +msgstr "" + +#: src/gui/compatFlags.cpp:322 +msgid "" +"when enabled, a one-tick note cut will be inserted between non-legato/non-" +"portamento notes.\n" +"this simulates the behavior of some Amiga/SNES music engines.\n" +"\n" +"ineffective on C64." +msgstr "" + +#: src/gui/compatFlags.cpp:327 +msgid "Don't reset slides after note off" +msgstr "" + +#: src/gui/compatFlags.cpp:329 +msgid "when enabled, note off will not reset the channel's slide effect." +msgstr "" + +#: src/gui/compatFlags.cpp:331 +msgid "Don't reset portamento after reaching target" +msgstr "" + +#: src/gui/compatFlags.cpp:333 +msgid "" +"when enabled, the slide effect will not be disabled after it reaches its " +"target." +msgstr "" + +#: src/gui/compatFlags.cpp:335 +msgid "Continuous vibrato" +msgstr "" + +#: src/gui/compatFlags.cpp:337 +msgid "when enabled, vibrato phase/position will not be reset on a new note." +msgstr "" + +#: src/gui/compatFlags.cpp:339 +msgid "Pitch macro is not linear" +msgstr "" + +#: src/gui/compatFlags.cpp:341 +msgid "" +"when enabled, the pitch macro of an instrument is in frequency/period space." +msgstr "" + +#: src/gui/compatFlags.cpp:343 +msgid "Reset arpeggio effect position on new note" +msgstr "" + +#: src/gui/compatFlags.cpp:345 +msgid "when enabled, arpeggio effect (00xy) position is reset on a new note." +msgstr "" + +#: src/gui/compatFlags.cpp:347 +msgid "Volume scaling rounds up" +msgstr "" + +#: src/gui/compatFlags.cpp:349 +msgid "" +"when enabled, volume macros round up when applied\n" +"this prevents volume scaling from causing vol=0, which is silent on some " +"chips\n" +"\n" +"ineffective on logarithmic channels" +msgstr "" + +#: src/gui/guiConst.cpp:127 +msgid "Generic Sample" +msgstr "" + +#: src/gui/guiConst.cpp:155 +msgid "OPL (drums)" +msgstr "" + +#: src/gui/guiConst.cpp:191 +msgid "Forward" +msgstr "" + +#: src/gui/guiConst.cpp:192 +msgid "Backward" +msgstr "" + +#: src/gui/guiConst.cpp:193 +msgid "Ping pong" +msgstr "" + +#: src/gui/guiConst.cpp:218 +msgid "linear" +msgstr "" + +#: src/gui/guiConst.cpp:219 +msgid "cubic spline" +msgstr "" + +#: src/gui/guiConst.cpp:220 +msgid "blep synthesis" +msgstr "" + +#: src/gui/guiConst.cpp:221 +msgid "sinc" +msgstr "" + +#: src/gui/guiConst.cpp:222 +msgid "best possible" +msgstr "" + +#: src/gui/guiConst.cpp:226 src/gui/sampleEdit.cpp:137 +#: src/gui/sampleEdit.cpp:143 +msgid "Invalid" +msgstr "" + +#: src/gui/guiConst.cpp:231 +msgid "Time" +msgstr "" + +#: src/gui/guiConst.cpp:233 +msgid "System (Primary)" +msgstr "" + +#: src/gui/guiConst.cpp:234 +msgid "System (Secondary)" +msgstr "" + +#: src/gui/guiConst.cpp:530 +msgid "---Global" +msgstr "" + +#: src/gui/guiConst.cpp:532 +msgid "Open file" +msgstr "" + +#: src/gui/guiConst.cpp:533 +msgid "Restore backup" +msgstr "" + +#: src/gui/guiConst.cpp:534 +msgid "Save file" +msgstr "" + +#: src/gui/guiConst.cpp:535 +msgid "Save as" +msgstr "" + +#: src/gui/guiConst.cpp:537 src/gui/sampleEdit.cpp:982 +msgid "Undo" +msgstr "" + +#: src/gui/guiConst.cpp:539 src/gui/guiConst.cpp:541 src/gui/sampleEdit.cpp:989 +msgid "Redo" +msgstr "" + +#: src/gui/guiConst.cpp:543 +msgid "Exit" +msgstr "" + +#: src/gui/guiConst.cpp:544 +msgid "Play/Stop (toggle)" +msgstr "" + +#: src/gui/guiConst.cpp:547 +msgid "Play (from beginning)" +msgstr "" + +#: src/gui/guiConst.cpp:548 +msgid "Play (repeat pattern)" +msgstr "" + +#: src/gui/guiConst.cpp:549 +msgid "Play from cursor" +msgstr "" + +#: src/gui/guiConst.cpp:550 +msgid "Step row" +msgstr "" + +#: src/gui/guiConst.cpp:551 +msgid "Octave up" +msgstr "" + +#: src/gui/guiConst.cpp:552 +msgid "Octave down" +msgstr "" + +#: src/gui/guiConst.cpp:553 +msgid "Previous instrument" +msgstr "" + +#: src/gui/guiConst.cpp:554 +msgid "Next instrument" +msgstr "" + +#: src/gui/guiConst.cpp:555 +msgid "Increase edit step" +msgstr "" + +#: src/gui/guiConst.cpp:556 +msgid "Decrease edit step" +msgstr "" + +#: src/gui/guiConst.cpp:557 +msgid "Toggle edit mode" +msgstr "" + +#: src/gui/guiConst.cpp:559 +msgid "Toggle repeat pattern" +msgstr "" + +#: src/gui/guiConst.cpp:562 +msgid "Toggle full-screen" +msgstr "" + +#: src/gui/guiConst.cpp:563 +msgid "Request voice from TX81Z" +msgstr "" + +#: src/gui/guiConst.cpp:565 +msgid "Clear song data" +msgstr "" + +#: src/gui/guiConst.cpp:567 src/gui/gui.cpp:5573 src/gui/gui.cpp:5625 +msgid "Command Palette" +msgstr "" + +#: src/gui/guiConst.cpp:569 +msgid "Recent files (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:570 +msgid "Instruments (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:571 +msgid "Samples (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:572 +msgid "Change instrument (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:573 +msgid "Add chip (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:578 +msgid "Instrument List" +msgstr "" + +#: src/gui/guiConst.cpp:579 src/gui/insEdit.cpp:5203 +msgid "Instrument Editor" +msgstr "" + +#: src/gui/guiConst.cpp:580 +msgid "Song Information" +msgstr "" + +#: src/gui/guiConst.cpp:583 +msgid "Wavetable List" +msgstr "" + +#: src/gui/guiConst.cpp:584 src/gui/waveEdit.cpp:409 +msgid "Wavetable Editor" +msgstr "" + +#: src/gui/guiConst.cpp:585 +msgid "Sample List" +msgstr "" + +#: src/gui/guiConst.cpp:594 +msgid "Debug Menu" +msgstr "" + +#: src/gui/guiConst.cpp:595 +msgid "Oscilloscope (master)" +msgstr "" + +#: src/gui/guiConst.cpp:603 src/gui/sysManager.cpp:41 +msgid "Chip Manager" +msgstr "" + +#: src/gui/guiConst.cpp:614 src/gui/csPlayer.cpp:112 +msgid "Command Stream Player" +msgstr "" + +#: src/gui/guiConst.cpp:615 +msgid "User Presets" +msgstr "" + +#: src/gui/guiConst.cpp:617 +msgid "Collapse/expand current window" +msgstr "" + +#: src/gui/guiConst.cpp:618 +msgid "Close current window" +msgstr "" + +#: src/gui/guiConst.cpp:621 +msgid "---Pattern" +msgstr "" + +#: src/gui/guiConst.cpp:622 +msgid "Transpose (+1)" +msgstr "" + +#: src/gui/guiConst.cpp:623 +msgid "Transpose (-1)" +msgstr "" + +#: src/gui/guiConst.cpp:624 +msgid "Transpose (+1 octave)" +msgstr "" + +#: src/gui/guiConst.cpp:625 +msgid "Transpose (-1 octave)" +msgstr "" + +#: src/gui/guiConst.cpp:626 +msgid "Increase values (+1)" +msgstr "" + +#: src/gui/guiConst.cpp:627 +msgid "Increase values (-1)" +msgstr "" + +#: src/gui/guiConst.cpp:628 +msgid "Increase values (+16)" +msgstr "" + +#: src/gui/guiConst.cpp:629 +msgid "Increase values (-16)" +msgstr "" + +#: src/gui/guiConst.cpp:630 +msgid "Select all" +msgstr "" + +#: src/gui/guiConst.cpp:631 +msgid "Cut" +msgstr "" + +#: src/gui/guiConst.cpp:632 +msgid "Copy" +msgstr "" + +#: src/gui/guiConst.cpp:633 +msgid "Paste" +msgstr "" + +#: src/gui/guiConst.cpp:634 +msgid "Paste Mix (foreground)" +msgstr "" + +#: src/gui/guiConst.cpp:635 +msgid "Paste Mix (background)" +msgstr "" + +#: src/gui/guiConst.cpp:636 +msgid "Paste Flood" +msgstr "" + +#: src/gui/guiConst.cpp:637 +msgid "Paste Overflow" +msgstr "" + +#: src/gui/guiConst.cpp:638 +msgid "Move cursor up" +msgstr "" + +#: src/gui/guiConst.cpp:639 +msgid "Move cursor down" +msgstr "" + +#: src/gui/guiConst.cpp:640 +msgid "Move cursor left" +msgstr "" + +#: src/gui/guiConst.cpp:641 +msgid "Move cursor right" +msgstr "" + +#: src/gui/guiConst.cpp:642 +msgid "Move cursor up by one (override Edit Step)" +msgstr "" + +#: src/gui/guiConst.cpp:643 +msgid "Move cursor down by one (override Edit Step)" +msgstr "" + +#: src/gui/guiConst.cpp:644 +msgid "Move cursor to previous channel" +msgstr "" + +#: src/gui/guiConst.cpp:645 +msgid "Move cursor to next channel" +msgstr "" + +#: src/gui/guiConst.cpp:646 +msgid "Move cursor to next channel (overflow)" +msgstr "" + +#: src/gui/guiConst.cpp:647 +msgid "Move cursor to previous channel (overflow)" +msgstr "" + +#: src/gui/guiConst.cpp:648 +msgid "Move cursor to beginning of pattern" +msgstr "" + +#: src/gui/guiConst.cpp:649 +msgid "Move cursor to end of pattern" +msgstr "" + +#: src/gui/guiConst.cpp:650 +msgid "Move cursor up (coarse)" +msgstr "" + +#: src/gui/guiConst.cpp:651 +msgid "Move cursor down (coarse)" +msgstr "" + +#: src/gui/guiConst.cpp:652 +msgid "Expand selection upwards" +msgstr "" + +#: src/gui/guiConst.cpp:653 +msgid "Expand selection downwards" +msgstr "" + +#: src/gui/guiConst.cpp:654 +msgid "Expand selection to the left" +msgstr "" + +#: src/gui/guiConst.cpp:655 +msgid "Expand selection to the right" +msgstr "" + +#: src/gui/guiConst.cpp:656 +msgid "Expand selection upwards by one (override Edit Step)" +msgstr "" + +#: src/gui/guiConst.cpp:657 +msgid "Expand selection downwards by one (override Edit Step)" +msgstr "" + +#: src/gui/guiConst.cpp:658 +msgid "Expand selection to beginning of pattern" +msgstr "" + +#: src/gui/guiConst.cpp:659 +msgid "Expand selection to end of pattern" +msgstr "" + +#: src/gui/guiConst.cpp:660 +msgid "Expand selection upwards (coarse)" +msgstr "" + +#: src/gui/guiConst.cpp:661 +msgid "Expand selection downwards (coarse)" +msgstr "" + +#: src/gui/guiConst.cpp:662 +msgid "Move selection up" +msgstr "" + +#: src/gui/guiConst.cpp:663 +msgid "Move selection down" +msgstr "" + +#: src/gui/guiConst.cpp:664 +msgid "Move selection to previous channel" +msgstr "" + +#: src/gui/guiConst.cpp:665 +msgid "Move selection to next channel" +msgstr "" + +#: src/gui/guiConst.cpp:667 +msgid "Pull delete" +msgstr "" + +#: src/gui/guiConst.cpp:668 +msgid "Insert" +msgstr "" + +#: src/gui/guiConst.cpp:669 +msgid "Mute channel at cursor" +msgstr "" + +#: src/gui/guiConst.cpp:670 +msgid "Solo channel at cursor" +msgstr "" + +#: src/gui/guiConst.cpp:671 +msgid "Unmute all channels" +msgstr "" + +#: src/gui/guiConst.cpp:672 +msgid "Go to next order" +msgstr "" + +#: src/gui/guiConst.cpp:673 +msgid "Go to previous order" +msgstr "" + +#: src/gui/guiConst.cpp:674 +msgid "Collapse channel at cursor" +msgstr "" + +#: src/gui/guiConst.cpp:675 +msgid "Increase effect columns" +msgstr "" + +#: src/gui/guiConst.cpp:676 +msgid "Decrease effect columns" +msgstr "" + +#: src/gui/guiConst.cpp:677 +msgid "Interpolate" +msgstr "" + +#: src/gui/guiConst.cpp:678 src/gui/insEdit.cpp:530 +msgid "Fade" +msgstr "" + +#: src/gui/guiConst.cpp:679 +msgid "Invert values" +msgstr "" + +#: src/gui/guiConst.cpp:680 +msgid "Flip selection" +msgstr "" + +#: src/gui/guiConst.cpp:681 +msgid "Collapse rows" +msgstr "" + +#: src/gui/guiConst.cpp:682 +msgid "Expand rows" +msgstr "" + +#: src/gui/guiConst.cpp:683 +msgid "Collapse pattern" +msgstr "" + +#: src/gui/guiConst.cpp:684 +msgid "Expand pattern" +msgstr "" + +#: src/gui/guiConst.cpp:685 +msgid "Collapse song" +msgstr "" + +#: src/gui/guiConst.cpp:686 +msgid "Expand song" +msgstr "" + +#: src/gui/guiConst.cpp:687 +msgid "Set note input latch" +msgstr "" + +#: src/gui/guiConst.cpp:688 +msgid "Change mobile scroll mode" +msgstr "" + +#: src/gui/guiConst.cpp:689 +msgid "Clear note input latch" +msgstr "" + +#: src/gui/guiConst.cpp:692 +msgid "---Instrument list" +msgstr "" + +#: src/gui/guiConst.cpp:693 +msgid "Add instrument" +msgstr "" + +#: src/gui/guiConst.cpp:694 +msgid "Duplicate instrument" +msgstr "" + +#: src/gui/guiConst.cpp:695 +msgid "Open instrument" +msgstr "" + +#: src/gui/guiConst.cpp:696 +msgid "Open instrument (replace current)" +msgstr "" + +#: src/gui/guiConst.cpp:697 +msgid "Save instrument" +msgstr "" + +#: src/gui/guiConst.cpp:698 +msgid "Save instrument (.dmp)" +msgstr "" + +#: src/gui/guiConst.cpp:699 +msgid "Move instrument up in list" +msgstr "" + +#: src/gui/guiConst.cpp:700 +msgid "Move instrument down in list" +msgstr "" + +#: src/gui/guiConst.cpp:701 +msgid "Delete instrument" +msgstr "" + +#: src/gui/guiConst.cpp:702 +msgid "Edit instrument" +msgstr "" + +#: src/gui/guiConst.cpp:703 +msgid "Instrument cursor up" +msgstr "" + +#: src/gui/guiConst.cpp:704 +msgid "Instrument cursor down" +msgstr "" + +#: src/gui/guiConst.cpp:705 +msgid "Instruments: toggle folders/standard view" +msgstr "" + +#: src/gui/guiConst.cpp:708 +msgid "---Wavetable list" +msgstr "" + +#: src/gui/guiConst.cpp:709 +msgid "Add wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:710 +msgid "Duplicate wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:711 +msgid "Open wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:712 +msgid "Open wavetable (replace current)" +msgstr "" + +#: src/gui/guiConst.cpp:713 +msgid "Save wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:714 +msgid "Save wavetable (.dmw)" +msgstr "" + +#: src/gui/guiConst.cpp:715 +msgid "Save wavetable (raw)" +msgstr "" + +#: src/gui/guiConst.cpp:716 +msgid "Move wavetable up in list" +msgstr "" + +#: src/gui/guiConst.cpp:717 +msgid "Move wavetable down in list" +msgstr "" + +#: src/gui/guiConst.cpp:718 +msgid "Delete wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:719 +msgid "Edit wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:720 +msgid "Wavetable cursor up" +msgstr "" + +#: src/gui/guiConst.cpp:721 +msgid "Wavetable cursor down" +msgstr "" + +#: src/gui/guiConst.cpp:722 +msgid "Wavetables: toggle folders/standard view" +msgstr "" + +#: src/gui/guiConst.cpp:725 +msgid "---Sample list" +msgstr "" + +#: src/gui/guiConst.cpp:726 +msgid "Add sample" +msgstr "" + +#: src/gui/guiConst.cpp:727 +msgid "Duplicate sample" +msgstr "" + +#: src/gui/guiConst.cpp:728 +msgid "Open sample" +msgstr "" + +#: src/gui/guiConst.cpp:729 +msgid "Open sample (replace current)" +msgstr "" + +#: src/gui/guiConst.cpp:730 +msgid "Import raw sample data" +msgstr "" + +#: src/gui/guiConst.cpp:731 +msgid "Import raw sample data (replace current)" +msgstr "" + +#: src/gui/guiConst.cpp:732 +msgid "Save sample" +msgstr "" + +#: src/gui/guiConst.cpp:733 +msgid "Save sample (raw)" +msgstr "" + +#: src/gui/guiConst.cpp:734 +msgid "Move sample up in list" +msgstr "" + +#: src/gui/guiConst.cpp:735 +msgid "Move sample down in list" +msgstr "" + +#: src/gui/guiConst.cpp:736 +msgid "Delete sample" +msgstr "" + +#: src/gui/guiConst.cpp:737 +msgid "Edit sample" +msgstr "" + +#: src/gui/guiConst.cpp:738 +msgid "Sample cursor up" +msgstr "" + +#: src/gui/guiConst.cpp:739 +msgid "Sample cursor down" +msgstr "" + +#: src/gui/guiConst.cpp:741 src/gui/sampleEdit.cpp:1339 +msgid "Stop sample preview" +msgstr "" + +#: src/gui/guiConst.cpp:742 +msgid "Samples: Toggle folders/standard view" +msgstr "" + +#: src/gui/guiConst.cpp:743 +msgid "Samples: Make me a drum kit" +msgstr "" + +#: src/gui/guiConst.cpp:746 +msgid "---Sample editor" +msgstr "" + +#: src/gui/guiConst.cpp:747 +msgid "Sample editor mode: Select" +msgstr "" + +#: src/gui/guiConst.cpp:748 +msgid "Sample editor mode: Draw" +msgstr "" + +#: src/gui/guiConst.cpp:749 +msgid "Sample editor: Cut" +msgstr "" + +#: src/gui/guiConst.cpp:750 +msgid "Sample editor: Copy" +msgstr "" + +#: src/gui/guiConst.cpp:751 +msgid "Sample editor: Paste" +msgstr "" + +#: src/gui/guiConst.cpp:752 +msgid "Sample editor: Paste replace" +msgstr "" + +#: src/gui/guiConst.cpp:753 +msgid "Sample editor: Paste mix" +msgstr "" + +#: src/gui/guiConst.cpp:754 +msgid "Sample editor: Select all" +msgstr "" + +#: src/gui/guiConst.cpp:755 +msgid "Sample editor: Resize" +msgstr "" + +#: src/gui/guiConst.cpp:756 +msgid "Sample editor: Resample" +msgstr "" + +#: src/gui/guiConst.cpp:757 +msgid "Sample editor: Amplify" +msgstr "" + +#: src/gui/guiConst.cpp:758 +msgid "Sample editor: Normalize" +msgstr "" + +#: src/gui/guiConst.cpp:759 +msgid "Sample editor: Fade in" +msgstr "" + +#: src/gui/guiConst.cpp:760 +msgid "Sample editor: Fade out" +msgstr "" + +#: src/gui/guiConst.cpp:761 +msgid "Sample editor: Apply silence" +msgstr "" + +#: src/gui/guiConst.cpp:762 +msgid "Sample editor: Insert silence" +msgstr "" + +#: src/gui/guiConst.cpp:763 +msgid "Sample editor: Delete" +msgstr "" + +#: src/gui/guiConst.cpp:764 +msgid "Sample editor: Trim" +msgstr "" + +#: src/gui/guiConst.cpp:765 +msgid "Sample editor: Reverse" +msgstr "" + +#: src/gui/guiConst.cpp:766 +msgid "Sample editor: Invert" +msgstr "" + +#: src/gui/guiConst.cpp:767 +msgid "Sample editor: Signed/unsigned exchange" +msgstr "" + +#: src/gui/guiConst.cpp:768 +msgid "Sample editor: Apply filter" +msgstr "" + +#: src/gui/guiConst.cpp:769 +msgid "Sample editor: Crossfade loop points" +msgstr "" + +#: src/gui/guiConst.cpp:770 +msgid "Sample editor: Preview sample" +msgstr "" + +#: src/gui/guiConst.cpp:771 +msgid "Sample editor: Stop sample preview" +msgstr "" + +#: src/gui/guiConst.cpp:772 +msgid "Sample editor: Zoom in" +msgstr "" + +#: src/gui/guiConst.cpp:773 +msgid "Sample editor: Zoom out" +msgstr "" + +#: src/gui/guiConst.cpp:774 +msgid "Sample editor: Toggle auto-zoom" +msgstr "" + +#: src/gui/guiConst.cpp:775 +msgid "Sample editor: Create instrument from sample" +msgstr "" + +#: src/gui/guiConst.cpp:776 +msgid "Sample editor: Set loop to selection" +msgstr "" + +#: src/gui/guiConst.cpp:777 +msgid "Sample editor: Create wavetable from selection" +msgstr "" + +#: src/gui/guiConst.cpp:780 +msgid "---Orders" +msgstr "" + +#: src/gui/guiConst.cpp:781 +msgid "Previous order" +msgstr "" + +#: src/gui/guiConst.cpp:782 +msgid "Next order" +msgstr "" + +#: src/gui/guiConst.cpp:783 +msgid "Order cursor left" +msgstr "" + +#: src/gui/guiConst.cpp:784 +msgid "Order cursor right" +msgstr "" + +#: src/gui/guiConst.cpp:785 +msgid "Increase order value" +msgstr "" + +#: src/gui/guiConst.cpp:786 +msgid "Decrease order value" +msgstr "" + +#: src/gui/guiConst.cpp:787 +msgid "Switch order edit mode" +msgstr "" + +#: src/gui/guiConst.cpp:788 +msgid "Order: toggle alter entire row" +msgstr "" + +#: src/gui/guiConst.cpp:789 +msgid "Add order" +msgstr "" + +#: src/gui/guiConst.cpp:790 +msgid "Duplicate order" +msgstr "" + +#: src/gui/guiConst.cpp:791 +msgid "Deep clone order" +msgstr "" + +#: src/gui/guiConst.cpp:792 +msgid "Copy current order to end of song" +msgstr "" + +#: src/gui/guiConst.cpp:793 +msgid "Deep clone current order to end of song" +msgstr "" + +#: src/gui/guiConst.cpp:797 +msgid "Replay order" +msgstr "" + +#: src/gui/guiConst.cpp:1392 +msgid "All chips" +msgstr "" + +#: src/gui/guiConst.cpp:1396 src/gui/insEdit.cpp:6954 src/gui/insEdit.cpp:7204 +#: src/gui/insEdit.cpp:7458 src/gui/insEdit.cpp:7480 +msgid "Special" +msgstr "" + +#: src/gui/piano.cpp:103 +msgid "Options" +msgstr "" + +#: src/gui/piano.cpp:106 +msgid "Key layout:" +msgstr "" + +#: src/gui/piano.cpp:111 +msgid "Standard" +msgstr "" + +#: src/gui/piano.cpp:114 +msgid "Continuous" +msgstr "" + +#: src/gui/piano.cpp:118 +msgid "Value input pad:" +msgstr "" + +#: src/gui/piano.cpp:120 +msgid "Disabled" +msgstr "" + +#: src/gui/piano.cpp:123 +msgid "Replace piano" +msgstr "" + +#: src/gui/piano.cpp:126 +msgid "Split (automatic)" +msgstr "" + +#: src/gui/piano.cpp:129 +msgid "Split (always visible)" +msgstr "" + +#: src/gui/piano.cpp:133 +msgid "Share play/edit offset/range" +msgstr "" + +#: src/gui/piano.cpp:134 +msgid "Read-only (can't input notes)" +msgstr "" + +#: src/gui/waveEdit.cpp:30 src/gui/waveEdit.cpp:192 src/gui/insEdit.cpp:177 +#: src/gui/insEdit.cpp:188 src/gui/insEdit.cpp:199 +msgid "Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:32 src/gui/waveEdit.cpp:202 src/gui/insEdit.cpp:325 +#: src/gui/insEdit.cpp:654 +msgid "Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:39 +msgid "Cosine" +msgstr "" + +#: src/gui/waveEdit.cpp:193 +msgid "Rect. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:194 +msgid "Abs. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:195 +msgid "Quart. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:196 +msgid "Squish. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:197 +msgid "Abs. Squish. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:200 +msgid "rectSquare" +msgstr "" + +#: src/gui/waveEdit.cpp:203 +msgid "Rect. Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:204 +msgid "Abs. Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:206 +msgid "Cubed Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:207 +msgid "Rect. Cubed Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:208 +msgid "Abs. Cubed Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:210 +msgid "Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:211 +msgid "Rect. Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:212 +msgid "Abs. Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:213 +msgid "Quart. Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:214 +msgid "Squish. Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:215 +msgid "Squish. Abs. Cub. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:218 +msgid "Rect. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:219 +msgid "Abs. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:220 +msgid "Quart. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:221 +msgid "Squish. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:222 +msgid "Abs. Squish. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:224 +msgid "Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:225 +msgid "Rect. Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:226 +msgid "Abs. Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:227 +msgid "Quart. Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:228 +msgid "Squish. Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:229 +msgid "Squish. Abs. Cub. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:412 src/gui/waveEdit.cpp:413 +msgid "no wavetable selected" +msgstr "" + +#: src/gui/waveEdit.cpp:424 src/gui/sampleEdit.cpp:111 src/gui/insEdit.cpp:5223 +msgid "select one..." +msgstr "" + +#: src/gui/waveEdit.cpp:432 src/gui/waveEdit.cpp:439 src/gui/sampleEdit.cpp:119 +#: src/gui/sampleEdit.cpp:126 src/gui/insEdit.cpp:5236 src/gui/insEdit.cpp:5243 +msgid "or" +msgstr "" + +#: src/gui/waveEdit.cpp:441 src/gui/sampleEdit.cpp:128 src/gui/insEdit.cpp:5245 +msgid "Create New" +msgstr "" + +#: src/gui/waveEdit.cpp:487 +msgid "Steps" +msgstr "" + +#: src/gui/waveEdit.cpp:491 +msgid "Lines" +msgstr "" + +#: src/gui/waveEdit.cpp:496 src/gui/insEdit.cpp:2687 +msgid "Width" +msgstr "" + +#: src/gui/waveEdit.cpp:498 +msgid "" +"use a width of:\n" +"- any on Amiga/N163\n" +"- 32 on Game Boy, PC Engine, SCC, Konami Bubble System, Namco WSG, Virtual " +"Boy and WonderSwan\n" +"- 64 on FDS\n" +"- 128 on X1-010\n" +"any other widths will be scaled during playback." +msgstr "" + +#: src/gui/waveEdit.cpp:510 +msgid "Height" +msgstr "" + +#: src/gui/waveEdit.cpp:512 +msgid "" +"use a height of:\n" +"- 16 for Game Boy, WonderSwan, Namco WSG, Konami Bubble System, X1-010 " +"Envelope shape and N163\n" +"- 32 for PC Engine\n" +"- 64 for FDS and Virtual Boy\n" +"- 256 for X1-010 and SCC\n" +"any other heights will be scaled during playback." +msgstr "" + +#: src/gui/waveEdit.cpp:578 +msgid "Shapes" +msgstr "" + +#: src/gui/waveEdit.cpp:597 src/gui/insEdit.cpp:5879 src/gui/insEdit.cpp:6922 +#: src/gui/insEdit.cpp:6948 src/gui/insEdit.cpp:7008 src/gui/insEdit.cpp:7048 +#: src/gui/insEdit.cpp:7150 src/gui/insEdit.cpp:7436 src/gui/insEdit.cpp:7472 +msgid "Duty" +msgstr "" + +#: src/gui/waveEdit.cpp:607 +msgid "Exponent" +msgstr "" + +#: src/gui/waveEdit.cpp:617 +msgid "XOR Point" +msgstr "" + +#: src/gui/waveEdit.cpp:627 +msgid "Amplitude/Phase" +msgstr "" + +#: src/gui/waveEdit.cpp:679 src/gui/waveEdit.cpp:723 src/gui/waveEdit.cpp:728 +msgid "Op" +msgstr "" + +#: src/gui/waveEdit.cpp:683 +msgid "Mult" +msgstr "" + +#: src/gui/waveEdit.cpp:685 +msgid "FB" +msgstr "" + +#: src/gui/waveEdit.cpp:749 src/gui/waveEdit.cpp:750 +msgid "Connection Diagram" +msgstr "" + +#: src/gui/waveEdit.cpp:765 +msgid "Out" +msgstr "" + +#: src/gui/waveEdit.cpp:872 +msgid "WaveTools" +msgstr "" + +#: src/gui/waveEdit.cpp:890 +msgid "Scale X" +msgstr "" + +#: src/gui/waveEdit.cpp:896 +msgid "wavetable longer than 256 samples!" +msgstr "" + +#: src/gui/waveEdit.cpp:960 +msgid "Scale Y" +msgstr "" + +#: src/gui/waveEdit.cpp:978 +msgid "Offset X" +msgstr "" + +#: src/gui/waveEdit.cpp:1000 +msgid "Offset Y" +msgstr "" + +#: src/gui/waveEdit.cpp:1017 +msgid "Smooth" +msgstr "" + +#: src/gui/waveEdit.cpp:1045 src/gui/sampleEdit.cpp:996 +msgid "Amplify" +msgstr "" + +#: src/gui/waveEdit.cpp:1063 src/gui/sampleEdit.cpp:1046 +msgid "Normalize" +msgstr "" + +#: src/gui/waveEdit.cpp:1105 src/gui/sampleEdit.cpp:1121 +msgid "Reverse" +msgstr "" + +#: src/gui/waveEdit.cpp:1117 +msgid "Half" +msgstr "" + +#: src/gui/waveEdit.cpp:1127 +msgid "Double" +msgstr "" + +#: src/gui/waveEdit.cpp:1137 +msgid "Convert Signed/Unsigned" +msgstr "" + +#: src/gui/waveEdit.cpp:1167 +msgid "Dec" +msgstr "" + +#: src/gui/waveEdit.cpp:1171 src/gui/csPlayer.cpp:247 +msgid "Hex" +msgstr "" + +#: src/gui/waveEdit.cpp:1179 +msgid "Signed/Unsigned" +msgstr "" + +#: src/gui/sampleEdit.cpp:65 +#, c-format +msgid "%s: maximum sample rate is %d" +msgstr "" + +#: src/gui/sampleEdit.cpp:72 +#, c-format +msgid "%s: minimum sample rate is %d" +msgstr "" + +#: src/gui/sampleEdit.cpp:79 +#, c-format +msgid "%s: sample rate must be %d" +msgstr "" + +#: src/gui/sampleEdit.cpp:99 src/gui/sampleEdit.cpp:100 +msgid "no sample selected" +msgstr "" + +#: src/gui/sampleEdit.cpp:229 +#, c-format +msgid "SNES: loop start must be a multiple of 16 (try with %d)" +msgstr "" + +#: src/gui/sampleEdit.cpp:235 +#, c-format +msgid "SNES: loop end must be a multiple of 16 (try with %d)" +msgstr "" + +#: src/gui/sampleEdit.cpp:240 +msgid "SNES: sample length will be padded to multiple of 16" +msgstr "" + +#: src/gui/sampleEdit.cpp:249 +msgid "QSound: loop cannot be longer than 32767 samples" +msgstr "" + +#: src/gui/sampleEdit.cpp:259 +msgid "NES: loop point ignored on DPCM (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:263 +msgid "NES: maximum DPCM sample length is 32648" +msgstr "" + +#: src/gui/sampleEdit.cpp:268 +msgid "X1-010: samples can't loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:271 +msgid "X1-010: maximum sample length is 131072" +msgstr "" + +#: src/gui/sampleEdit.cpp:276 +msgid "GA20: samples can't loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:287 +msgid "YM2608: loop point ignored on ADPCM (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:290 +msgid "YM2608: sample length will be padded to multiple of 512" +msgstr "" + +#: src/gui/sampleEdit.cpp:300 +msgid "YM2610: ADPCM-A samples can't loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:302 +msgid "YM2610: loop point ignored on ADPCM-B (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:305 +msgid "YM2610: sample length will be padded to multiple of 512" +msgstr "" + +#: src/gui/sampleEdit.cpp:309 +msgid "YM2610: maximum ADPCM-A sample length is 2097152" +msgstr "" + +#: src/gui/sampleEdit.cpp:318 +msgid "Y8950: loop point ignored on ADPCM (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:321 +msgid "Y8950: sample length will be padded to multiple of 512" +msgstr "" + +#: src/gui/sampleEdit.cpp:328 +msgid "Amiga: loop start must be a multiple of 2" +msgstr "" + +#: src/gui/sampleEdit.cpp:331 +msgid "Amiga: loop end must be a multiple of 2" +msgstr "" + +#: src/gui/sampleEdit.cpp:335 +msgid "Amiga: maximum sample length is 131070" +msgstr "" + +#: src/gui/sampleEdit.cpp:344 +msgid "SegaPCM: maximum sample length is 65280" +msgstr "" + +#: src/gui/sampleEdit.cpp:353 +msgid "K053260: loop point ignored (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:357 +msgid "K053260: maximum sample length is 65535" +msgstr "" + +#: src/gui/sampleEdit.cpp:362 +msgid "C140: maximum sample length is 65535" +msgstr "" + +#: src/gui/sampleEdit.cpp:371 +msgid "C219: loop start must be a multiple of 2" +msgstr "" + +#: src/gui/sampleEdit.cpp:374 +msgid "C219: loop end must be a multiple of 2" +msgstr "" + +#: src/gui/sampleEdit.cpp:378 +msgid "C219: maximum sample length is 131072" +msgstr "" + +#: src/gui/sampleEdit.cpp:386 +msgid "MSM6295: samples can't loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:389 +msgid "MSM6295: maximum bankswitched sample length is 129024" +msgstr "" + +#: src/gui/sampleEdit.cpp:395 +msgid "GBA DMA: loop start must be a multiple of 4" +msgstr "" + +#: src/gui/sampleEdit.cpp:398 +msgid "GBA DMA: loop length must be a multiple of 16" +msgstr "" + +#: src/gui/sampleEdit.cpp:402 +msgid "GBA DMA: sample length will be padded to multiple of 16" +msgstr "" + +#: src/gui/sampleEdit.cpp:411 +msgid "ES5506: backward loop mode isn't supported" +msgstr "" + +#: src/gui/sampleEdit.cpp:414 +msgid "" +"backward/ping-pong only supported in Generic PCM DAC\n" +"ping-pong also on ES5506" +msgstr "" + +#: src/gui/sampleEdit.cpp:444 +msgid "Info" +msgstr "" + +#: src/gui/sampleEdit.cpp:447 src/gui/sampleEdit.cpp:933 +msgid "Rate" +msgstr "" + +#: src/gui/sampleEdit.cpp:453 +msgid "Compat Rate" +msgstr "" + +#: src/gui/sampleEdit.cpp:457 +msgid "" +"used in DefleMask-compatible sample mode (17xx), in where samples are mapped " +"to an octave." +msgstr "" + +#: src/gui/sampleEdit.cpp:463 +#, c-format +msgid "Loop (length: %d)##Loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:463 src/gui/insEdit.cpp:544 src/gui/insEdit.cpp:554 +#: src/gui/insEdit.cpp:605 src/gui/insEdit.cpp:6017 +msgid "Loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:487 src/gui/sampleEdit.cpp:716 +#: src/gui/sampleEdit.cpp:752 +msgid "changing the loop in a BRR sample may result in glitches!" +msgstr "" + +#: src/gui/sampleEdit.cpp:529 +msgid "BRR emphasis" +msgstr "" + +#: src/gui/sampleEdit.cpp:538 +msgid "" +"this is a BRR sample.\n" +"enabling this option will muffle it (only affects non-SNES chips)." +msgstr "" + +#: src/gui/sampleEdit.cpp:540 +msgid "" +"enable this option to slightly boost high frequencies\n" +"to compensate for the SNES' Gaussian filter's muffle." +msgstr "" + +#: src/gui/sampleEdit.cpp:546 +msgid "8-bit dither" +msgstr "" + +#: src/gui/sampleEdit.cpp:554 +msgid "dither the sample when used on a chip that only supports 8-bit samples." +msgstr "" + +#: src/gui/sampleEdit.cpp:695 src/gui/gui.cpp:2975 +msgid "Start" +msgstr "" + +#: src/gui/sampleEdit.cpp:731 src/gui/gui.cpp:2983 +msgid "End" +msgstr "" + +#: src/gui/sampleEdit.cpp:841 +#, c-format +msgid "" +"%s\n" +"%d bytes free" +msgstr "" + +#: src/gui/sampleEdit.cpp:843 +#, c-format +msgid "" +"%s (%s)\n" +"%d bytes free" +msgstr "" + +#: src/gui/sampleEdit.cpp:847 +msgid "" +"\n" +"\n" +"not enough memory for this sample!" +msgstr "" + +#: src/gui/sampleEdit.cpp:871 +msgid "Edit mode: Select" +msgstr "" + +#: src/gui/sampleEdit.cpp:880 +msgid "Edit mode: Draw" +msgstr "" + +#: src/gui/sampleEdit.cpp:891 src/gui/sampleEdit.cpp:902 +msgid "Resize" +msgstr "" + +#: src/gui/sampleEdit.cpp:906 +msgid "couldn't resize! make sure your sample is 8 or 16-bit." +msgstr "" + +#: src/gui/sampleEdit.cpp:926 src/gui/sampleEdit.cpp:957 +msgid "Resample" +msgstr "" + +#: src/gui/sampleEdit.cpp:951 +msgid "Factor" +msgstr "" + +#: src/gui/sampleEdit.cpp:956 +msgid "Filter" +msgstr "" + +#: src/gui/sampleEdit.cpp:961 +msgid "couldn't resample! make sure your sample is 8 or 16-bit." +msgstr "" + +#: src/gui/sampleEdit.cpp:1010 src/gui/sampleEdit.cpp:1197 +#: src/gui/sampleEdit.cpp:1281 +msgid "Apply" +msgstr "" + +#: src/gui/sampleEdit.cpp:1053 +msgid "Fade in" +msgstr "" + +#: src/gui/sampleEdit.cpp:1060 +msgid "Fade out" +msgstr "" + +#: src/gui/sampleEdit.cpp:1065 +msgid "Insert silence" +msgstr "" + +#: src/gui/sampleEdit.cpp:1076 +msgid "Go" +msgstr "" + +#: src/gui/sampleEdit.cpp:1081 +msgid "couldn't insert! make sure your sample is 8 or 16-bit." +msgstr "" + +#: src/gui/sampleEdit.cpp:1098 +msgid "Apply silence" +msgstr "" + +#: src/gui/sampleEdit.cpp:1112 +msgid "Trim" +msgstr "" + +#: src/gui/sampleEdit.cpp:1135 +msgid "Signed/unsigned exchange" +msgstr "" + +#: src/gui/sampleEdit.cpp:1140 +msgid "Apply filter" +msgstr "" + +#: src/gui/sampleEdit.cpp:1151 +msgid "Cutoff:" +msgstr "" + +#: src/gui/sampleEdit.cpp:1161 src/gui/insEdit.cpp:5895 +#: src/gui/insEdit.cpp:5898 src/gui/insEdit.cpp:6953 src/gui/insEdit.cpp:7216 +#: src/gui/insEdit.cpp:7478 +msgid "Resonance" +msgstr "" + +#: src/gui/sampleEdit.cpp:1167 src/gui/insEdit.cpp:6897 +msgid "Power" +msgstr "" + +#: src/gui/sampleEdit.cpp:1181 +msgid "Low-pass" +msgstr "" + +#: src/gui/sampleEdit.cpp:1186 +msgid "Band-pass" +msgstr "" + +#: src/gui/sampleEdit.cpp:1191 +msgid "High-pass" +msgstr "" + +#: src/gui/sampleEdit.cpp:1262 +msgid "Crossfade loop points" +msgstr "" + +#: src/gui/sampleEdit.cpp:1271 +msgid "Number of samples" +msgstr "" + +#: src/gui/sampleEdit.cpp:1277 +msgid "Linear <-> Equal power" +msgstr "" + +#: src/gui/sampleEdit.cpp:1283 +msgid "Crossfade: length would go out of bounds. Aborted..." +msgstr "" + +#: src/gui/sampleEdit.cpp:1286 +msgid "Crossfade: length would overflow loopStart. Try a smaller random value." +msgstr "" + +#: src/gui/sampleEdit.cpp:1332 +msgid "Preview sample" +msgstr "" + +#: src/gui/sampleEdit.cpp:1346 +msgid "Create instrument from sample" +msgstr "" + +#: src/gui/sampleEdit.cpp:1747 +msgid "paste (replace)" +msgstr "" + +#: src/gui/sampleEdit.cpp:1750 +msgid "paste (mix)" +msgstr "" + +#: src/gui/sampleEdit.cpp:1754 src/gui/gui.cpp:2769 +msgid "select all" +msgstr "" + +#: src/gui/sampleEdit.cpp:1758 +msgid "set loop to selection" +msgstr "" + +#: src/gui/sampleEdit.cpp:1761 +msgid "create wavetable from selection" +msgstr "" + +#: src/gui/sampleEdit.cpp:1767 +msgid "Draw" +msgstr "" + +#: src/gui/sampleEdit.cpp:1767 +msgid "Select" +msgstr "" + +#: src/gui/sampleEdit.cpp:1769 +#, c-format +msgid "%d samples, %d bytes" +msgstr "" + +#: src/gui/sampleEdit.cpp:1784 +#, c-format +msgid " (%d-%d: %d samples)" +msgstr "" + +#: src/gui/sampleEdit.cpp:1976 +msgid "Non-8/16-bit samples cannot be edited without prior conversion." +msgstr "" + +#: src/gui/newSong.cpp:122 src/gui/newSong.cpp:123 +msgid "Choose a System!" +msgstr "" + +#: src/gui/newSong.cpp:179 +msgid "Categories" +msgstr "" + +#: src/gui/newSong.cpp:210 +msgid "no systems here yet!" +msgstr "" + +#: src/gui/newSong.cpp:212 +msgid "no results" +msgstr "" + +#: src/gui/newSong.cpp:228 +msgid "I'm feeling lucky" +msgstr "" + +#: src/gui/newSong.cpp:230 +msgid "no categories available! what in the world." +msgstr "" + +#: src/gui/newSong.cpp:265 +msgid "it appears you're extremely lucky today!" +msgstr "" + +#: src/gui/cursor.cpp:205 +#, c-format +msgid "finish selection: %d.%d,%d - %d.%d,%d" +msgstr "" + +#: src/gui/tutorial.cpp:487 +msgid "" +"Play demo songs?\n" +"- Down: Play current song\n" +"- Up: Play demo songs" +msgstr "" + +#: src/gui/tutorial.cpp:491 +msgid "" +"Welcome to Combat Vehicle!\n" +"\n" +"Controls:\n" +"X - Shoot Arrow Key - Move\n" +"Z - Special Esc - Quit" +msgstr "" + +#: src/gui/tutorial.cpp:496 +msgid "GAME OVER" +msgstr "" + +#: src/gui/tutorial.cpp:498 +msgid "High Score!" +msgstr "" + +#: src/gui/tutorial.cpp:658 +msgid "Welcome!" +msgstr "" + +#: src/gui/tutorial.cpp:661 +msgid "welcome to Furnace, the biggest open-source chiptune tracker!" +msgstr "" + +#: src/gui/tutorial.cpp:665 +msgid "here are some tips to get you started:" +msgstr "" + +#: src/gui/tutorial.cpp:668 +msgid "" +"- add an instrument by clicking on + in Instruments\n" +"- click on the pattern view to focus it\n" +"- channel columns have the following, in this order: note, instrument, " +"volume and effects\n" +"- hit space bar while on the pattern to toggle Edit Mode\n" +"- click on the pattern or use arrow keys to move the cursor\n" +"- values (instrument, volume, effects and effect values) are in hexadecimal\n" +"- hit enter to play/stop the song\n" +"- extend the song by adding more orders in the Orders window\n" +"- click on the Orders matrix to change the patterns of a channel (left click " +"increases; right click decreases)" +msgstr "" + +#: src/gui/tutorial.cpp:680 +msgid "" +"if you need help, you may:\n" +"- read the manual (a file called manual.pdf)\n" +"- ask for help in Discussions (https://github.com/tildearrow/furnace/" +"discussions), the Furnace Discord (https://discord.gg/EfrwT2wq7z) or Furnace " +"in Revolt (official: https://rvlt.gg/GRPS6tmc)" +msgstr "" + +#: src/gui/tutorial.cpp:687 +msgid "" +"if you find any issues, be sure to report them! the issue tracker is here: " +"https://github.com/tildearrow/furnace/issues" +msgstr "" + +#: src/gui/tutorial.cpp:1428 +#, c-format +msgid "STAGE %d" +msgstr "" + +#: src/gui/songInfo.cpp:32 +msgid "Song Info##Song Information" +msgstr "" + +#: src/gui/songInfo.cpp:50 +msgid "Author" +msgstr "" + +#: src/gui/songInfo.cpp:60 +msgid "Album" +msgstr "" + +#: src/gui/songInfo.cpp:79 +msgid "Auto" +msgstr "" + +#: src/gui/songInfo.cpp:100 +msgid "Tuning (A-4)" +msgstr "" + +#: src/gui/grooves.cpp:38 +msgid "use effect 09xx to select a groove pattern." +msgstr "" + +#: src/gui/grooves.cpp:48 src/gui/gui.cpp:4480 +msgid "pattern" +msgstr "" + +#: src/gui/grooves.cpp:132 +msgid "remove" +msgstr "" + +#: src/gui/doAction.cpp:45 src/gui/gui.cpp:4201 +msgid "Unsaved changes! Save changes before opening another file?" +msgstr "" + +#: src/gui/doAction.cpp:52 +msgid "Unsaved changes! Save changes before opening backup?" +msgstr "" + +#: src/gui/doAction.cpp:62 src/gui/gui.cpp:4237 src/gui/gui.cpp:5025 +#: src/gui/gui.cpp:5063 src/gui/gui.cpp:5069 src/gui/gui.cpp:5657 +#: src/gui/gui.cpp:5681 src/gui/gui.cpp:5705 src/gui/gui.cpp:5729 +#: src/gui/gui.cpp:5753 src/gui/gui.cpp:5777 +#, c-format +msgid "Error while saving file! (%s)" +msgstr "" + +#: src/gui/doAction.cpp:189 +msgid "Error while sending request (MIDI output not configured?)" +msgstr "" + +#: src/gui/doAction.cpp:197 +msgid "Select an option: (cannot be undone!)" +msgstr "" + +#: src/gui/doAction.cpp:691 src/gui/doAction.cpp:720 src/gui/doAction.cpp:1593 +#: src/gui/gui.cpp:6091 +msgid "too many instruments!" +msgstr "" + +#: src/gui/doAction.cpp:1124 +msgid "couldn't paste! make sure your sample is 8 or 16-bit." +msgstr "" + +#: src/gui/doAction.cpp:1628 +msgid "select at least one sample!" +msgstr "" + +#: src/gui/doAction.cpp:1630 +msgid "maximum size is 256 samples!" +msgstr "" + +#: src/gui/csPlayer.cpp:113 +msgid "Load" +msgstr "" + +#: src/gui/csPlayer.cpp:117 +msgid "Kill" +msgstr "" + +#: src/gui/csPlayer.cpp:119 +msgid "Kikai wa mou shindeiru!" +msgstr "" + +#: src/gui/csPlayer.cpp:123 +msgid "Burn Current Song" +msgstr "" + +#: src/gui/csPlayer.cpp:141 +msgid "Status" +msgstr "" + +#: src/gui/csPlayer.cpp:148 +msgid "start" +msgstr "" + +#: src/gui/csPlayer.cpp:150 +msgid "PC" +msgstr "" + +#: src/gui/csPlayer.cpp:152 +msgid "wait" +msgstr "" + +#: src/gui/csPlayer.cpp:154 +msgid "SP" +msgstr "" + +#: src/gui/csPlayer.cpp:156 src/gui/insEdit.cpp:2733 +msgid "note" +msgstr "" + +#: src/gui/csPlayer.cpp:158 src/gui/insEdit.cpp:2728 +msgid "pitch" +msgstr "" + +#: src/gui/csPlayer.cpp:160 +msgid "vol" +msgstr "" + +#: src/gui/csPlayer.cpp:162 +msgid "vols" +msgstr "" + +#: src/gui/csPlayer.cpp:164 +msgid "vib" +msgstr "" + +#: src/gui/csPlayer.cpp:166 +msgid "porta" +msgstr "" + +#: src/gui/csPlayer.cpp:168 +msgid "arp" +msgstr "" + +#: src/gui/csPlayer.cpp:203 +msgid "Trace" +msgstr "" + +#: src/gui/csPlayer.cpp:244 +msgid "Disassemble" +msgstr "" + +#: src/gui/gui.cpp:1136 src/gui/gui.cpp:1140 +msgid "the song is over!" +msgstr "" + +#: src/gui/gui.cpp:1667 +msgid "Open File" +msgstr "" + +#: src/gui/gui.cpp:1668 src/gui/gui.cpp:1798 src/gui/gui.cpp:1838 +#: src/gui/gui.cpp:1953 src/gui/gui.cpp:1962 src/gui/gui.cpp:1971 +#: src/gui/gui.cpp:2073 src/gui/gui.cpp:2093 src/gui/gui.cpp:2111 +msgid "compatible files" +msgstr "" + +#: src/gui/gui.cpp:1669 src/gui/gui.cpp:1743 src/gui/gui.cpp:1799 +#: src/gui/gui.cpp:1839 src/gui/gui.cpp:1851 src/gui/gui.cpp:1870 +#: src/gui/gui.cpp:2074 src/gui/gui.cpp:2084 src/gui/gui.cpp:2095 +#: src/gui/gui.cpp:2113 +msgid "all files" +msgstr "" + +#: src/gui/gui.cpp:1676 +msgid "no backups made yet!" +msgstr "" + +#: src/gui/gui.cpp:1681 src/gui/gui.cpp:1690 src/gui/gui.cpp:2130 +msgid "Furnace song" +msgstr "" + +#: src/gui/gui.cpp:1689 +msgid "Save File" +msgstr "" + +#: src/gui/gui.cpp:1698 src/gui/gui.cpp:1708 +msgid "Export DMF" +msgstr "" + +#: src/gui/gui.cpp:1699 +msgid "DefleMask 1.1.3 module" +msgstr "" + +#: src/gui/gui.cpp:1709 +msgid "DefleMask 1.0/legacy module" +msgstr "" + +#: src/gui/gui.cpp:1726 +msgid "Load Instrument" +msgstr "" + +#: src/gui/gui.cpp:1727 +msgid "all compatible files" +msgstr "" + +#: src/gui/gui.cpp:1728 src/gui/gui.cpp:1777 +msgid "Furnace instrument" +msgstr "" + +#: src/gui/gui.cpp:1729 src/gui/gui.cpp:1787 +msgid "DefleMask preset" +msgstr "" + +#: src/gui/gui.cpp:1730 +msgid "TFM Music Maker instrument" +msgstr "" + +#: src/gui/gui.cpp:1731 +msgid "VGM Music Maker instrument" +msgstr "" + +#: src/gui/gui.cpp:1732 +msgid "Scream Tracker 3 instrument" +msgstr "" + +#: src/gui/gui.cpp:1733 +msgid "SoundBlaster instrument" +msgstr "" + +#: src/gui/gui.cpp:1734 +msgid "Wohlstand OPL instrument" +msgstr "" + +#: src/gui/gui.cpp:1735 +msgid "Wohlstand OPN instrument" +msgstr "" + +#: src/gui/gui.cpp:1736 +msgid "Gens KMod patch dump" +msgstr "" + +#: src/gui/gui.cpp:1737 +msgid "BNK file (AdLib)" +msgstr "" + +#: src/gui/gui.cpp:1738 +msgid "FF preset bank" +msgstr "" + +#: src/gui/gui.cpp:1739 +msgid "2612edit GYB preset bank" +msgstr "" + +#: src/gui/gui.cpp:1740 +msgid "VOPM preset bank" +msgstr "" + +#: src/gui/gui.cpp:1741 +msgid "Wohlstand WOPL bank" +msgstr "" + +#: src/gui/gui.cpp:1742 +msgid "Wohlstand WOPN bank" +msgstr "" + +#: src/gui/gui.cpp:1776 src/gui/gui.cpp:1786 +msgid "Save Instrument" +msgstr "" + +#: src/gui/gui.cpp:1797 +msgid "Load Wavetable" +msgstr "" + +#: src/gui/gui.cpp:1809 src/gui/gui.cpp:1818 src/gui/gui.cpp:1827 +msgid "Save Wavetable" +msgstr "" + +#: src/gui/gui.cpp:1810 +msgid "Furnace wavetable" +msgstr "" + +#: src/gui/gui.cpp:1819 +msgid "DefleMask wavetable" +msgstr "" + +#: src/gui/gui.cpp:1828 +msgid "raw data" +msgstr "" + +#: src/gui/gui.cpp:1837 +msgid "Load Sample" +msgstr "" + +#: src/gui/gui.cpp:1850 +msgid "Load Raw Sample" +msgstr "" + +#: src/gui/gui.cpp:1859 +msgid "Save Sample" +msgstr "" + +#: src/gui/gui.cpp:1860 src/gui/gui.cpp:1880 src/gui/gui.cpp:1890 +#: src/gui/gui.cpp:1900 +msgid "Wave file" +msgstr "" + +#: src/gui/gui.cpp:1869 +msgid "Save Raw Sample" +msgstr "" + +#: src/gui/gui.cpp:1879 src/gui/gui.cpp:1889 src/gui/gui.cpp:1899 +msgid "Export Audio" +msgstr "" + +#: src/gui/gui.cpp:1909 +msgid "Export VGM" +msgstr "" + +#: src/gui/gui.cpp:1910 +msgid "VGM file" +msgstr "" + +#: src/gui/gui.cpp:1919 +msgid "Export ZSM" +msgstr "" + +#: src/gui/gui.cpp:1920 +msgid "ZSM file" +msgstr "" + +#: src/gui/gui.cpp:1929 src/gui/gui.cpp:1939 +msgid "Export Command Stream" +msgstr "" + +#: src/gui/gui.cpp:1930 +msgid "text file" +msgstr "" + +#: src/gui/gui.cpp:1940 +msgid "binary file" +msgstr "" + +#: src/gui/gui.cpp:1947 src/gui/gui.cpp:5376 +msgid "Coming soon!" +msgstr "" + +#: src/gui/gui.cpp:1952 src/gui/gui.cpp:1961 src/gui/gui.cpp:1970 +msgid "Select Font" +msgstr "" + +#: src/gui/gui.cpp:1979 +msgid "Select Color File" +msgstr "" + +#: src/gui/gui.cpp:1980 src/gui/gui.cpp:1989 src/gui/gui.cpp:2008 +#: src/gui/gui.cpp:2017 src/gui/gui.cpp:2026 src/gui/gui.cpp:2035 +#: src/gui/gui.cpp:2053 src/gui/gui.cpp:2062 +msgid "configuration files" +msgstr "" + +#: src/gui/gui.cpp:1988 +msgid "Select Keybind File" +msgstr "" + +#: src/gui/gui.cpp:1997 +msgid "Select Layout File" +msgstr "" + +#: src/gui/gui.cpp:1998 src/gui/gui.cpp:2044 +msgid ".ini files" +msgstr "" + +#: src/gui/gui.cpp:2007 +msgid "Select User Presets File" +msgstr "" + +#: src/gui/gui.cpp:2016 +msgid "Select Settings File" +msgstr "" + +#: src/gui/gui.cpp:2025 +msgid "Export Colors" +msgstr "" + +#: src/gui/gui.cpp:2034 +msgid "Export Keybinds" +msgstr "" + +#: src/gui/gui.cpp:2043 +msgid "Export Layout" +msgstr "" + +#: src/gui/gui.cpp:2052 +msgid "Export User Presets" +msgstr "" + +#: src/gui/gui.cpp:2061 +msgid "Export Settings" +msgstr "" + +#: src/gui/gui.cpp:2072 +msgid "Load ROM" +msgstr "" + +#: src/gui/gui.cpp:2082 +msgid "Play Command Stream" +msgstr "" + +#: src/gui/gui.cpp:2083 +msgid "command stream" +msgstr "" + +#: src/gui/gui.cpp:2092 +msgid "Open Test" +msgstr "" + +#: src/gui/gui.cpp:2094 src/gui/gui.cpp:2112 +msgid "another option" +msgstr "" + +#: src/gui/gui.cpp:2110 +msgid "Open Test (Multi)" +msgstr "" + +#: src/gui/gui.cpp:2129 +msgid "Save Test" +msgstr "" + +#: src/gui/gui.cpp:2131 +msgid "DefleMask module" +msgstr "" + +#: src/gui/gui.cpp:2171 +msgid "compression error" +msgstr "" + +#: src/gui/gui.cpp:2183 +msgid "zlib stream error" +msgstr "" + +#: src/gui/gui.cpp:2205 +msgid "zlib finish stream error" +msgstr "" + +#: src/gui/gui.cpp:2316 +msgid "everything OK" +msgstr "" + +#: src/gui/gui.cpp:2334 +msgid "" +"you have loaded a backup!\n" +"if you need to, please save it somewhere.\n" +"\n" +"DO NOT RELY ON THE BACKUP SYSTEM FOR AUTO-SAVE!\n" +"Furnace will not save backups of backups." +msgstr "" + +#: src/gui/gui.cpp:2342 src/gui/gui.cpp:3743 src/gui/gui.cpp:4213 +msgid "Unsaved changes! Save changes before opening file?" +msgstr "" + +#: src/gui/gui.cpp:2736 +msgid "paste special..." +msgstr "" + +#: src/gui/gui.cpp:2737 +msgid "paste mix" +msgstr "" + +#: src/gui/gui.cpp:2738 +msgid "paste mix (background)" +msgstr "" + +#: src/gui/gui.cpp:2739 +msgid "paste with ins (foreground)" +msgstr "" + +#: src/gui/gui.cpp:2741 src/gui/gui.cpp:2753 src/gui/gui.cpp:2963 +msgid "no instruments available" +msgstr "" + +#: src/gui/gui.cpp:2751 +msgid "paste with ins (background)" +msgstr "" + +#: src/gui/gui.cpp:2763 +msgid "paste flood" +msgstr "" + +#: src/gui/gui.cpp:2764 +msgid "paste overflow" +msgstr "" + +#: src/gui/gui.cpp:2773 +msgid "operation mask..." +msgstr "" + +#: src/gui/gui.cpp:2780 +msgid "pull delete" +msgstr "" + +#: src/gui/gui.cpp:2784 +msgid "insert" +msgstr "" + +#: src/gui/gui.cpp:2792 +msgid "transpose (note)" +msgstr "" + +#: src/gui/gui.cpp:2796 +msgid "transpose (value)" +msgstr "" + +#: src/gui/gui.cpp:2808 src/gui/gui.cpp:3052 +msgid "invert values" +msgstr "" + +#: src/gui/gui.cpp:2824 +msgid "collapse/expand" +msgstr "" + +#: src/gui/gui.cpp:2829 +msgid "input latch" +msgstr "" + +#: src/gui/gui.cpp:2856 +msgid "" +"&&: selected instrument\n" +"..: no instrument" +msgstr "" + +#: src/gui/gui.cpp:2910 +msgid "Set" +msgstr "" + +#: src/gui/gui.cpp:2930 +msgid "note up" +msgstr "" + +#: src/gui/gui.cpp:2931 +msgid "note down" +msgstr "" + +#: src/gui/gui.cpp:2932 +msgid "octave up" +msgstr "" + +#: src/gui/gui.cpp:2933 +msgid "octave down" +msgstr "" + +#: src/gui/gui.cpp:2935 +msgid "values up" +msgstr "" + +#: src/gui/gui.cpp:2936 +msgid "values down" +msgstr "" + +#: src/gui/gui.cpp:2937 +msgid "values up (+16)" +msgstr "" + +#: src/gui/gui.cpp:2938 +msgid "values down (-16)" +msgstr "" + +#: src/gui/gui.cpp:2941 +msgid "transpose" +msgstr "" + +#: src/gui/gui.cpp:2949 +msgid "Notes" +msgstr "" + +#: src/gui/gui.cpp:2954 +msgid "Values" +msgstr "" + +#: src/gui/gui.cpp:2961 +msgid "change instrument..." +msgstr "" + +#: src/gui/gui.cpp:2974 +msgid "gradient/fade..." +msgstr "" + +#: src/gui/gui.cpp:2991 src/gui/gui.cpp:3036 +msgid "Nibble mode" +msgstr "" + +#: src/gui/gui.cpp:3000 +msgid "Go ahead" +msgstr "" + +#: src/gui/gui.cpp:3006 src/gui/insEdit.cpp:7604 +msgid "scale..." +msgstr "" + +#: src/gui/gui.cpp:3011 +msgid "Scale" +msgstr "" + +#: src/gui/gui.cpp:3017 src/gui/insEdit.cpp:7632 +msgid "randomize..." +msgstr "" + +#: src/gui/gui.cpp:3018 +msgid "Minimum" +msgstr "" + +#: src/gui/gui.cpp:3027 +msgid "Maximum" +msgstr "" + +#: src/gui/gui.cpp:3056 +msgid "flip selection" +msgstr "" + +#: src/gui/gui.cpp:3059 +msgid "collapse/expand amount##CollapseAmount" +msgstr "" + +#: src/gui/gui.cpp:3068 +msgid "collapse pattern" +msgstr "" + +#: src/gui/gui.cpp:3069 +msgid "expand pattern" +msgstr "" + +#: src/gui/gui.cpp:3074 +msgid "collapse song" +msgstr "" + +#: src/gui/gui.cpp:3075 +msgid "expand song" +msgstr "" + +#: src/gui/gui.cpp:3080 +msgid "find/replace" +msgstr "" + +#: src/gui/gui.cpp:3094 src/gui/gui.cpp:5807 src/gui/gui.cpp:7362 +#, c-format +msgid "could NOT save layout! %s" +msgstr "" + +#: src/gui/gui.cpp:3106 +#, c-format +msgid "could NOT load layout! %s" +msgstr "" + +#: src/gui/gui.cpp:3568 +msgid "" +"Furnace has been started in Safe Mode.\n" +"this means that:\n" +"\n" +"- software rendering is being used\n" +"- audio output may not work\n" +"- font loading is disabled\n" +"\n" +"check any settings which may have made Furnace start up in this mode.\n" +"font loading is one of these." +msgstr "" + +#: src/gui/gui.cpp:4053 +msgid "can't keep going without graphics! Furnace will quit now." +msgstr "" + +#: src/gui/gui.cpp:4191 +msgid "file" +msgstr "" + +#: src/gui/gui.cpp:4192 +msgid "new..." +msgstr "" + +#: src/gui/gui.cpp:4199 +msgid "open..." +msgstr "" + +#: src/gui/gui.cpp:4206 +msgid "open recent" +msgstr "" + +#: src/gui/gui.cpp:4222 +msgid "nothing here yet" +msgstr "" + +#: src/gui/gui.cpp:4225 +msgid "clear history" +msgstr "" + +#: src/gui/gui.cpp:4226 +msgid "Are you sure you want to clear the recent file list?" +msgstr "" + +#: src/gui/gui.cpp:4241 +msgid "save as..." +msgstr "" + +#: src/gui/gui.cpp:4246 src/gui/gui.cpp:4287 +msgid "export audio..." +msgstr "" + +#: src/gui/gui.cpp:4250 src/gui/gui.cpp:4291 +msgid "export VGM..." +msgstr "" + +#: src/gui/gui.cpp:4259 src/gui/gui.cpp:4300 +msgid "export ZSM..." +msgstr "" + +#: src/gui/gui.cpp:4269 src/gui/gui.cpp:4310 +msgid "export Amiga validation data..." +msgstr "" + +#: src/gui/gui.cpp:4274 src/gui/gui.cpp:4315 +msgid "export text..." +msgstr "" + +#: src/gui/gui.cpp:4278 src/gui/gui.cpp:4319 +msgid "export command stream..." +msgstr "" + +#: src/gui/gui.cpp:4282 src/gui/gui.cpp:4323 +msgid "export .dmf..." +msgstr "" + +#: src/gui/gui.cpp:4328 +msgid "export..." +msgstr "" + +#: src/gui/gui.cpp:4334 +msgid "manage chips" +msgstr "" + +#: src/gui/gui.cpp:4338 +msgid "add chip..." +msgstr "" + +#: src/gui/gui.cpp:4343 src/gui/sysManager.cpp:138 +#, c-format +msgid "cannot add chip! (%s)" +msgstr "" + +#: src/gui/gui.cpp:4355 +msgid "configure chip..." +msgstr "" + +#: src/gui/gui.cpp:4365 +msgid "change chip..." +msgstr "" + +#: src/gui/gui.cpp:4367 src/gui/gui.cpp:4390 +msgid "Preserve channel positions" +msgstr "" + +#: src/gui/gui.cpp:4379 src/gui/sysManager.cpp:109 +#, c-format +msgid "cannot change chip! (%s)" +msgstr "" + +#: src/gui/gui.cpp:4388 +msgid "remove chip..." +msgstr "" + +#: src/gui/gui.cpp:4394 +#, c-format +msgid "cannot remove chip! (%s)" +msgstr "" + +#: src/gui/gui.cpp:4408 +msgid "open built-in assets directory" +msgstr "" + +#: src/gui/gui.cpp:4414 +msgid "restore backup" +msgstr "" + +#: src/gui/gui.cpp:4418 +msgid "exit..." +msgstr "" + +#: src/gui/gui.cpp:4426 +msgid "edit" +msgstr "" + +#: src/gui/gui.cpp:4434 +msgid "clear..." +msgstr "" + +#: src/gui/gui.cpp:4439 +msgid "settings" +msgstr "" + +#: src/gui/gui.cpp:4441 +msgid "full screen" +msgstr "" + +#: src/gui/gui.cpp:4445 +msgid "lock layout" +msgstr "" + +#: src/gui/gui.cpp:4448 +msgid "pattern visualizer" +msgstr "" + +#: src/gui/gui.cpp:4454 +msgid "reset layout" +msgstr "" + +#: src/gui/gui.cpp:4458 +msgid "switch to mobile view" +msgstr "" + +#: src/gui/gui.cpp:4462 +msgid "user systems..." +msgstr "" + +#: src/gui/gui.cpp:4465 +msgid "settings..." +msgstr "" + +#: src/gui/gui.cpp:4471 +msgid "Window" +msgstr "" + +#: src/gui/gui.cpp:4471 +msgid "window" +msgstr "" + +#: src/gui/gui.cpp:4472 +msgid "song" +msgstr "" + +#: src/gui/gui.cpp:4473 +msgid "song comments" +msgstr "" + +#: src/gui/gui.cpp:4474 +msgid "song information" +msgstr "" + +#: src/gui/gui.cpp:4475 +msgid "subsongs" +msgstr "" + +#: src/gui/gui.cpp:4477 +msgid "channels" +msgstr "" + +#: src/gui/gui.cpp:4478 +msgid "chip manager" +msgstr "" + +#: src/gui/gui.cpp:4479 +msgid "orders" +msgstr "" + +#: src/gui/gui.cpp:4481 +msgid "pattern manager" +msgstr "" + +#: src/gui/gui.cpp:4482 +msgid "mixer" +msgstr "" + +#: src/gui/gui.cpp:4483 +msgid "compatibility flags" +msgstr "" + +#: src/gui/gui.cpp:4486 src/gui/gui.cpp:4488 +msgid "assets" +msgstr "" + +#: src/gui/gui.cpp:4490 +msgid "instruments" +msgstr "" + +#: src/gui/gui.cpp:4491 +msgid "samples" +msgstr "" + +#: src/gui/gui.cpp:4492 +msgid "wavetables" +msgstr "" + +#: src/gui/gui.cpp:4495 +msgid "instrument editor" +msgstr "" + +#: src/gui/gui.cpp:4496 +msgid "sample editor" +msgstr "" + +#: src/gui/gui.cpp:4497 +msgid "wavetable editor" +msgstr "" + +#: src/gui/gui.cpp:4500 +msgid "visualizers" +msgstr "" + +#: src/gui/gui.cpp:4501 +msgid "oscilloscope (master)" +msgstr "" + +#: src/gui/gui.cpp:4502 +msgid "oscilloscope (per-channel)" +msgstr "" + +#: src/gui/gui.cpp:4503 +msgid "oscilloscope (X-Y)" +msgstr "" + +#: src/gui/gui.cpp:4504 +msgid "volume meter" +msgstr "" + +#: src/gui/gui.cpp:4507 +msgid "tempo" +msgstr "" + +#: src/gui/gui.cpp:4508 +msgid "clock" +msgstr "" + +#: src/gui/gui.cpp:4509 +msgid "grooves" +msgstr "" + +#: src/gui/gui.cpp:4510 +msgid "speed" +msgstr "" + +#: src/gui/gui.cpp:4514 +msgid "log viewer" +msgstr "" + +#: src/gui/gui.cpp:4515 +msgid "register view" +msgstr "" + +#: src/gui/gui.cpp:4516 +msgid "statistics" +msgstr "" + +#: src/gui/gui.cpp:4517 +msgid "memory composition" +msgstr "" + +#: src/gui/gui.cpp:4521 src/gui/gui.cpp:4529 +msgid "effect list" +msgstr "" + +#: src/gui/gui.cpp:4522 +msgid "play/edit controls" +msgstr "" + +#: src/gui/gui.cpp:4523 +msgid "piano/input pad" +msgstr "" + +#: src/gui/gui.cpp:4524 +msgid "spoiler" +msgstr "" + +#: src/gui/gui.cpp:4528 +msgid "Help" +msgstr "" + +#: src/gui/gui.cpp:4528 +msgid "help" +msgstr "" + +#: src/gui/gui.cpp:4530 +msgid "debug menu" +msgstr "" + +#: src/gui/gui.cpp:4531 +msgid "inspector" +msgstr "" + +#: src/gui/gui.cpp:4532 +msgid "panic" +msgstr "" + +#: src/gui/gui.cpp:4533 +msgid "about..." +msgstr "" + +#: src/gui/gui.cpp:4548 +#, c-format +msgid "| Speed %d:%d" +msgstr "" + +#: src/gui/gui.cpp:4550 +#, c-format +msgid "| Speed %d" +msgstr "" + +#: src/gui/gui.cpp:4552 +msgid "| Groove" +msgstr "" + +#: src/gui/gui.cpp:4555 +#, c-format +msgid " @ %gHz (%g BPM) " +msgstr "" + +#: src/gui/gui.cpp:4558 +#, c-format +msgid "| Order %.2X/%.2X " +msgstr "" + +#: src/gui/gui.cpp:4560 +#, c-format +msgid "| Order %d/%d " +msgstr "" + +#: src/gui/gui.cpp:4564 +#, c-format +msgid "| Row %.2X/%.2X " +msgstr "" + +#: src/gui/gui.cpp:4566 +#, c-format +msgid "| Row %d/%d " +msgstr "" + +#: src/gui/gui.cpp:4569 +msgid "| " +msgstr "" + +#: src/gui/gui.cpp:4572 +msgid "Don't you have anything better to do?" +msgstr "" + +#: src/gui/gui.cpp:4582 +#, c-format +msgid "%d year " +msgid_plural "%d years " +msgstr[0] "" +msgstr[1] "" + +#: src/gui/gui.cpp:4583 +#, c-format +msgid "%d month " +msgid_plural "%d months " +msgstr[0] "" +msgstr[1] "" + +#: src/gui/gui.cpp:4584 +#, c-format +msgid "%d day " +msgid_plural "%d days " +msgstr[0] "" +msgstr[1] "" + +#: src/gui/gui.cpp:4609 +msgid "Note off (cut)" +msgstr "" + +#: src/gui/gui.cpp:4611 +msgid "Note off (release)" +msgstr "" + +#: src/gui/gui.cpp:4613 +msgid "Macro release only" +msgstr "" + +#: src/gui/gui.cpp:4615 +#, c-format +msgid "Note on: %s" +msgstr "" + +#: src/gui/gui.cpp:4623 +#, c-format +msgid "Ins %d: " +msgstr "" + +#: src/gui/gui.cpp:4626 +#, c-format +msgid "Ins %d: %s" +msgstr "" + +#: src/gui/gui.cpp:4635 +#, c-format +msgid "Set volume: %d (%.2X, INVALID!)" +msgstr "" + +#: src/gui/gui.cpp:4638 +#, c-format +msgid "Set volume: %d (%.2X, %d%%)" +msgstr "" + +#: src/gui/gui.cpp:4660 +msgid "| modified" +msgstr "" + +#: src/gui/gui.cpp:4825 src/gui/gui.cpp:4828 +msgid "System File Dialog Pending" +msgstr "" + +#: src/gui/gui.cpp:4941 +msgid "" +"there was an error in the file dialog! you may want to report this issue " +"to:\n" +"https://github.com/tildearrow/furnace/issues\n" +"check the Log Viewer (window > log viewer) for more information.\n" +"\n" +"for now please disable the system file picker in Settings > General." +msgstr "" + +#: src/gui/gui.cpp:4944 +msgid "can't do anything without Storage permissions!" +msgstr "" + +#: src/gui/gui.cpp:4946 +msgid "" +"Zenity/KDialog not available!\n" +"please install one of these, or disable the system file picker in Settings > " +"General." +msgstr "" + +#: src/gui/gui.cpp:5082 +msgid "" +"error while saving instrument! only the following instrument types are " +"supported:\n" +"- FM (OPN)\n" +"- SN76489/Sega PSG\n" +"- Game Boy\n" +"- PC Engine\n" +"- NES\n" +"- C64\n" +"- FM (OPLL)\n" +"- FDS" +msgstr "" + +#: src/gui/gui.cpp:5110 +msgid "there were some errors while loading samples:\n" +msgstr "" + +#: src/gui/gui.cpp:5155 src/gui/gui.cpp:6339 +msgid "...but you haven't selected a sample!" +msgstr "" + +#: src/gui/gui.cpp:5170 src/gui/gui.cpp:5179 +msgid "could not save sample! open Log Viewer for more information." +msgstr "" + +#: src/gui/gui.cpp:5198 +msgid "there were some warnings/errors while loading instruments:\n" +msgstr "" + +#: src/gui/gui.cpp:5204 +#, c-format +msgid "> %s: cannot load instrument! (%s)\n" +msgstr "" + +#: src/gui/gui.cpp:5222 src/gui/gui.cpp:5276 +#, c-format +msgid "cannot load instrument! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5228 +msgid "" +"congratulations! you managed to load nothing.\n" +"you are entitled to a bug report." +msgstr "" + +#: src/gui/gui.cpp:5269 src/gui/gui.cpp:6243 +msgid "...but you haven't selected an instrument!" +msgstr "" + +#: src/gui/gui.cpp:5281 +msgid "there were some errors while loading wavetables:\n" +msgstr "" + +#: src/gui/gui.cpp:5290 src/gui/gui.cpp:5300 src/gui/gui.cpp:5319 +#, c-format +msgid "cannot load wavetable! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5327 +msgid "...but you haven't selected a wavetable!" +msgstr "" + +#: src/gui/gui.cpp:5342 src/gui/gui.cpp:5363 src/gui/gui.cpp:5387 +#: src/gui/gui.cpp:5408 +msgid "could not open file!" +msgstr "" + +#: src/gui/gui.cpp:5350 +#, c-format +msgid "could not write VGM! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5371 +#, c-format +msgid "Could not write ZSM! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5395 +#, c-format +msgid "could not write text! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5416 +#, c-format +msgid "could not write command stream! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5440 +msgid "could not import user presets!" +msgstr "" + +#: src/gui/gui.cpp:5445 src/gui/gui.cpp:5462 +#, c-format +msgid "could not import user presets! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5483 +#, c-format +msgid "You opened: %s" +msgstr "" + +#: src/gui/gui.cpp:5486 +msgid "You opened:" +msgstr "" + +#: src/gui/gui.cpp:5494 +#, c-format +msgid "You saved: %s" +msgstr "" + +#: src/gui/gui.cpp:5515 src/gui/gui.cpp:5636 src/gui/gui.cpp:5637 +#: src/gui/insEdit.cpp:7520 +msgid "Error" +msgstr "" + +#: src/gui/gui.cpp:5520 src/gui/gui.cpp:6177 src/gui/gui.cpp:6178 +msgid "Select Instrument" +msgstr "" + +#: src/gui/gui.cpp:5525 src/gui/gui.cpp:6256 src/gui/gui.cpp:6257 +msgid "Import Raw Sample" +msgstr "" + +#: src/gui/gui.cpp:5540 src/gui/gui.cpp:5593 src/gui/gui.cpp:5594 +msgid "Rendering..." +msgstr "" + +#: src/gui/gui.cpp:5595 +msgid "Please wait..." +msgstr "" + +#: src/gui/gui.cpp:5596 +msgid "Abort" +msgstr "" + +#: src/gui/gui.cpp:5638 +#, c-format +msgid "%s" +msgstr "" + +#: src/gui/gui.cpp:5868 +msgid "Erasing" +msgstr "" + +#: src/gui/gui.cpp:5871 +msgid "All subsongs" +msgstr "" + +#: src/gui/gui.cpp:5878 +msgid "Current subsong" +msgstr "" + +#: src/gui/gui.cpp:5945 +msgid "Optimization" +msgstr "" + +#: src/gui/gui.cpp:5948 src/gui/patManager.cpp:36 +msgid "De-duplicate patterns" +msgstr "" + +#: src/gui/gui.cpp:5957 +msgid "Remove unused instruments" +msgstr "" + +#: src/gui/gui.cpp:5970 +msgid "Remove unused samples" +msgstr "" + +#: src/gui/gui.cpp:5987 +msgid "Never mind! Cancel" +msgstr "" + +#: src/gui/gui.cpp:6066 +msgid "Drum kit mode:" +msgstr "" + +#: src/gui/gui.cpp:6070 +msgid "12 samples per octave" +msgstr "" + +#: src/gui/gui.cpp:6075 +msgid "Starting octave" +msgstr "" + +#: src/gui/gui.cpp:6095 +msgid "Drum Kit" +msgstr "" + +#: src/gui/gui.cpp:6181 +msgid "this is an instrument bank! select which one to use:" +msgstr "" + +#: src/gui/gui.cpp:6184 +msgid "this is an instrument bank! select which ones to load:" +msgstr "" + +#: src/gui/gui.cpp:6258 +msgid "Data type:" +msgstr "" + +#: src/gui/gui.cpp:6285 +msgid "(will be mixed down to mono)" +msgstr "" + +#: src/gui/gui.cpp:6286 +msgid "Unsigned" +msgstr "" + +#: src/gui/gui.cpp:6290 +msgid "Big endian" +msgstr "" + +#: src/gui/gui.cpp:6298 +msgid "Swap nibbles" +msgstr "" + +#: src/gui/gui.cpp:6302 +msgid "Swap words" +msgstr "" + +#: src/gui/gui.cpp:6306 +msgid "Encoding:" +msgstr "" + +#: src/gui/gui.cpp:6319 +msgid "Reverse bit order" +msgstr "" + +#: src/gui/gui.cpp:6361 +msgid "Error! No string provided!" +msgstr "" + +#: src/gui/gui.cpp:6683 +msgid "it appears I couldn't load these fonts. any setting you can check?" +msgstr "" + +#: src/gui/gui.cpp:6863 src/gui/gui.cpp:6971 +msgid "" +"could not init renderer!\n" +"falling back to software renderer. please restart Furnace." +msgstr "" + +#: src/gui/gui.cpp:6865 src/gui/gui.cpp:6973 +#, c-format +msgid "" +"could not init renderer! %s\n" +"falling back to software renderer. please restart Furnace." +msgstr "" + +#: src/gui/gui.cpp:6870 src/gui/gui.cpp:6978 +msgid "could not init renderer!" +msgstr "" + +#: src/gui/gui.cpp:6881 +#, c-format +msgid "could not open window! %s" +msgstr "" + +#: src/gui/gui.cpp:6886 +msgid "" +"\n" +"falling back to software renderer. please restart Furnace." +msgstr "" + +#: src/gui/gui.cpp:7034 +msgid "Size column to fit###SizeOne" +msgstr "" + +#: src/gui/gui.cpp:7036 +msgid "Size all columns to fit###SizeAll" +msgstr "" + +#: src/gui/gui.cpp:7038 +msgid "Size all columns to default###SizeAll" +msgstr "" + +#: src/gui/gui.cpp:7040 +msgid "Reset order###ResetOrder" +msgstr "" + +#: src/gui/gui.cpp:7042 +msgid "(Main menu bar)" +msgstr "" + +#: src/gui/gui.cpp:7044 +msgid "(Popup)" +msgstr "" + +#: src/gui/gui.cpp:7046 +msgid "(Untitled)" +msgstr "" + +#: src/gui/gui.cpp:7048 +msgid "Hide tab bar###HideTabBar" +msgstr "" + +#: src/gui/gui.cpp:7052 +msgid "LocaleSettings: ccjk" +msgstr "" + +#: src/gui/gui.cpp:7564 +msgid "Unsaved changes! Save changes before quitting?" +msgstr "" + +#: src/gui/sysManager.cpp:42 +msgid "Preserve channel order" +msgstr "" + +#: src/gui/sysManager.cpp:44 +msgid "Clone channel data" +msgstr "" + +#: src/gui/sysManager.cpp:46 +msgid "Clone at end" +msgstr "" + +#: src/gui/sysManager.cpp:56 +msgid "Actions" +msgstr "" + +#: src/gui/sysManager.cpp:69 +msgid "(drag to swap chips)" +msgstr "" + +#: src/gui/sysManager.cpp:90 +msgid "Clone##SysDup" +msgstr "" + +#: src/gui/sysManager.cpp:92 +#, c-format +msgid "cannot clone chip! (%s)" +msgstr "" + +#: src/gui/sysManager.cpp:98 +msgid "Change##SysChange" +msgstr "" + +#: src/gui/sysManager.cpp:120 +msgid "Are you sure you want to remove this chip?" +msgstr "" + +#: src/gui/patManager.cpp:43 +msgid "Re-arrange patterns" +msgstr "" + +#: src/gui/patManager.cpp:50 +msgid "Sort orders" +msgstr "" + +#: src/gui/patManager.cpp:57 +msgid "Make patterns unique" +msgstr "" + +#: src/gui/patManager.cpp:103 +#, c-format +msgid "" +"Pattern %.2X\n" +"- not allocated" +msgstr "" + +#: src/gui/patManager.cpp:105 +#, c-format +msgid "" +"Pattern %.2X\n" +"- use count: %d (%.0f%%)\n" +"\n" +"right-click to erase" +msgstr "" + +#: src/gui/insEdit.cpp:39 +msgid "Down Down Down" +msgstr "" + +#: src/gui/insEdit.cpp:40 +msgid "Down." +msgstr "" + +#: src/gui/insEdit.cpp:41 +msgid "Down Up Down Up" +msgstr "" + +#: src/gui/insEdit.cpp:42 +msgid "Down UP" +msgstr "" + +#: src/gui/insEdit.cpp:43 +msgid "Up Up Up" +msgstr "" + +#: src/gui/insEdit.cpp:44 +msgid "Up." +msgstr "" + +#: src/gui/insEdit.cpp:45 +msgid "Up Down Up Down" +msgstr "" + +#: src/gui/insEdit.cpp:46 +msgid "Up DOWN" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Algorithm" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Feedback" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "LFO > Freq" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "LFO > Amp" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Decay 2" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "EnvScale" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Multiplier" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Detune 2" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "AM" +msgstr "" + +#: src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:5438 src/gui/insEdit.cpp:6516 +msgid "AM Depth" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Vibrato Depth" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Sustained" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Level Scaling" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Vibrato" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Scale Rate" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "OP2 Half Sine" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "OP1 Half Sine" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "EnvShift" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Reverb" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Fine" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "LFO2 > Freq" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "LFO2 > Amp" +msgstr "" + +#: src/gui/insEdit.cpp:56 src/gui/insEdit.cpp:68 src/gui/insEdit.cpp:7391 +msgid "OP4 Noise Mode" +msgstr "" + +#: src/gui/insEdit.cpp:57 +msgid "Envelope Delay" +msgstr "" + +#: src/gui/insEdit.cpp:58 src/gui/insEdit.cpp:70 +msgid "Output Level" +msgstr "" + +#: src/gui/insEdit.cpp:59 +msgid "Modulation Input Level" +msgstr "" + +#: src/gui/insEdit.cpp:60 +msgid "Left Output" +msgstr "" + +#: src/gui/insEdit.cpp:61 +msgid "Right Output" +msgstr "" + +#: src/gui/insEdit.cpp:62 +msgid "Coarse Tune (semitones)" +msgstr "" + +#: src/gui/insEdit.cpp:64 +msgid "Fixed Frequency Mode" +msgstr "" + +#: src/gui/insEdit.cpp:69 +msgid "Env. Delay" +msgstr "" + +#: src/gui/insEdit.cpp:71 +msgid "ModInput" +msgstr "" + +#: src/gui/insEdit.cpp:72 +msgid "Left" +msgstr "" + +#: src/gui/insEdit.cpp:73 +msgid "Right" +msgstr "" + +#: src/gui/insEdit.cpp:74 +msgid "Tune" +msgstr "" + +#: src/gui/insEdit.cpp:76 src/gui/insEdit.cpp:610 src/gui/insEdit.cpp:3792 +#: src/gui/insEdit.cpp:4554 src/gui/insEdit.cpp:4848 +msgid "Fixed" +msgstr "" + +#: src/gui/insEdit.cpp:98 src/gui/insEdit.cpp:117 src/gui/insEdit.cpp:136 +#: src/gui/insEdit.cpp:156 +msgid "User" +msgstr "" + +#: src/gui/insEdit.cpp:99 +msgid "1. Violin" +msgstr "" + +#: src/gui/insEdit.cpp:100 src/gui/insEdit.cpp:138 src/gui/insEdit.cpp:158 +msgid "2. Guitar" +msgstr "" + +#: src/gui/insEdit.cpp:101 src/gui/insEdit.cpp:159 +msgid "3. Piano" +msgstr "" + +#: src/gui/insEdit.cpp:102 src/gui/insEdit.cpp:160 +msgid "4. Flute" +msgstr "" + +#: src/gui/insEdit.cpp:103 src/gui/insEdit.cpp:122 src/gui/insEdit.cpp:161 +msgid "5. Clarinet" +msgstr "" + +#: src/gui/insEdit.cpp:104 +msgid "6. Oboe" +msgstr "" + +#: src/gui/insEdit.cpp:105 src/gui/insEdit.cpp:124 src/gui/insEdit.cpp:143 +#: src/gui/insEdit.cpp:163 +msgid "7. Trumpet" +msgstr "" + +#: src/gui/insEdit.cpp:106 +msgid "8. Organ" +msgstr "" + +#: src/gui/insEdit.cpp:107 +msgid "9. Horn" +msgstr "" + +#: src/gui/insEdit.cpp:108 +msgid "10. Synth" +msgstr "" + +#: src/gui/insEdit.cpp:109 +msgid "11. Harpsichord" +msgstr "" + +#: src/gui/insEdit.cpp:110 src/gui/insEdit.cpp:129 src/gui/insEdit.cpp:148 +msgid "12. Vibraphone" +msgstr "" + +#: src/gui/insEdit.cpp:111 +msgid "13. Synth Bass" +msgstr "" + +#: src/gui/insEdit.cpp:112 +msgid "14. Acoustic Bass" +msgstr "" + +#: src/gui/insEdit.cpp:113 +msgid "15. Electric Guitar" +msgstr "" + +#: src/gui/insEdit.cpp:114 src/gui/insEdit.cpp:133 src/gui/insEdit.cpp:152 +#: src/gui/insEdit.cpp:172 src/gui/insEdit.cpp:3176 +msgid "Drums" +msgstr "" + +#: src/gui/insEdit.cpp:118 +msgid "1. Electric String" +msgstr "" + +#: src/gui/insEdit.cpp:119 +msgid "2. Bow wow" +msgstr "" + +#: src/gui/insEdit.cpp:120 src/gui/insEdit.cpp:139 +msgid "3. Electric Guitar" +msgstr "" + +#: src/gui/insEdit.cpp:121 +msgid "4. Organ" +msgstr "" + +#: src/gui/insEdit.cpp:123 +msgid "6. Saxophone" +msgstr "" + +#: src/gui/insEdit.cpp:125 +msgid "8. Street Organ" +msgstr "" + +#: src/gui/insEdit.cpp:126 +msgid "9. Synth Brass" +msgstr "" + +#: src/gui/insEdit.cpp:127 +msgid "10. Electric Piano" +msgstr "" + +#: src/gui/insEdit.cpp:128 +msgid "11. Bass" +msgstr "" + +#: src/gui/insEdit.cpp:130 +msgid "13. Chime" +msgstr "" + +#: src/gui/insEdit.cpp:131 +msgid "14. Tom Tom II" +msgstr "" + +#: src/gui/insEdit.cpp:132 +msgid "15. Noise" +msgstr "" + +#: src/gui/insEdit.cpp:137 +msgid "1. Strings" +msgstr "" + +#: src/gui/insEdit.cpp:140 +msgid "4. Electric Piano" +msgstr "" + +#: src/gui/insEdit.cpp:141 +msgid "5. Flute" +msgstr "" + +#: src/gui/insEdit.cpp:142 +msgid "6. Marimba" +msgstr "" + +#: src/gui/insEdit.cpp:144 +msgid "8. Harmonica" +msgstr "" + +#: src/gui/insEdit.cpp:145 +msgid "9. Tuba" +msgstr "" + +#: src/gui/insEdit.cpp:146 +msgid "10. Synth Brass" +msgstr "" + +#: src/gui/insEdit.cpp:147 +msgid "11. Short Saw" +msgstr "" + +#: src/gui/insEdit.cpp:149 +msgid "13. Electric Guitar 2" +msgstr "" + +#: src/gui/insEdit.cpp:150 +msgid "14. Synth Bass" +msgstr "" + +#: src/gui/insEdit.cpp:151 +msgid "15. Sitar" +msgstr "" + +#: src/gui/insEdit.cpp:157 +msgid "1. Bell" +msgstr "" + +#: src/gui/insEdit.cpp:162 +msgid "6. Rattling Bell" +msgstr "" + +#: src/gui/insEdit.cpp:164 +msgid "8. Reed Organ" +msgstr "" + +#: src/gui/insEdit.cpp:165 +msgid "9. Soft Bell" +msgstr "" + +#: src/gui/insEdit.cpp:166 +msgid "10. Xylophone" +msgstr "" + +#: src/gui/insEdit.cpp:167 +msgid "11. Vibraphone" +msgstr "" + +#: src/gui/insEdit.cpp:168 +msgid "12. Brass" +msgstr "" + +#: src/gui/insEdit.cpp:169 +msgid "13. Bass Guitar" +msgstr "" + +#: src/gui/insEdit.cpp:170 +msgid "14. Synth" +msgstr "" + +#: src/gui/insEdit.cpp:171 +msgid "15. Chorus" +msgstr "" + +#: src/gui/insEdit.cpp:178 src/gui/insEdit.cpp:189 +msgid "Half Sine" +msgstr "" + +#: src/gui/insEdit.cpp:179 src/gui/insEdit.cpp:190 +msgid "Absolute Sine" +msgstr "" + +#: src/gui/insEdit.cpp:180 +msgid "Quarter Sine" +msgstr "" + +#: src/gui/insEdit.cpp:181 src/gui/insEdit.cpp:203 +msgid "Squished Sine" +msgstr "" + +#: src/gui/insEdit.cpp:182 src/gui/insEdit.cpp:205 +msgid "Squished AbsSine" +msgstr "" + +#: src/gui/insEdit.cpp:184 src/gui/insEdit.cpp:195 +msgid "Derived Square" +msgstr "" + +#: src/gui/insEdit.cpp:191 +msgid "Pulse Sine" +msgstr "" + +#: src/gui/insEdit.cpp:192 +msgid "Sine (Even Periods)" +msgstr "" + +#: src/gui/insEdit.cpp:193 +msgid "AbsSine (Even Periods)" +msgstr "" + +#: src/gui/insEdit.cpp:201 +msgid "Cut Sine" +msgstr "" + +#: src/gui/insEdit.cpp:202 +msgid "Cut Triangle" +msgstr "" + +#: src/gui/insEdit.cpp:204 +msgid "Squished Triangle" +msgstr "" + +#: src/gui/insEdit.cpp:206 +msgid "Squished AbsTriangle" +msgstr "" + +#: src/gui/insEdit.cpp:224 +msgid "Noise disabled" +msgstr "" + +#: src/gui/insEdit.cpp:225 +msgid "Square + noise" +msgstr "" + +#: src/gui/insEdit.cpp:226 +msgid "Ringmod from OP3 + noise" +msgstr "" + +#: src/gui/insEdit.cpp:227 +msgid "" +"Ringmod from OP3 + double pitch ModInput\n" +"WARNING - has emulation issues; subject to change" +msgstr "" + +#: src/gui/insEdit.cpp:232 +msgid "Bitwise AND" +msgstr "" + +#: src/gui/insEdit.cpp:233 +msgid "Bitwise OR" +msgstr "" + +#: src/gui/insEdit.cpp:234 +msgid "Bitwise XOR" +msgstr "" + +#: src/gui/insEdit.cpp:239 src/gui/insEdit.cpp:390 +msgid "gate" +msgstr "" + +#: src/gui/insEdit.cpp:240 src/gui/insEdit.cpp:391 +msgid "sync" +msgstr "" + +#: src/gui/insEdit.cpp:241 src/gui/insEdit.cpp:392 +msgid "ring" +msgstr "" + +#: src/gui/insEdit.cpp:327 +msgid "How did you even" +msgstr "" + +#: src/gui/insEdit.cpp:335 +msgid "triangle" +msgstr "" + +#: src/gui/insEdit.cpp:336 src/gui/insEdit.cpp:5821 +msgid "saw" +msgstr "" + +#: src/gui/insEdit.cpp:337 src/gui/insEdit.cpp:5827 +msgid "pulse" +msgstr "" + +#: src/gui/insEdit.cpp:338 src/gui/insEdit.cpp:344 src/gui/insEdit.cpp:373 +#: src/gui/insEdit.cpp:424 src/gui/insEdit.cpp:429 src/gui/insEdit.cpp:5833 +msgid "noise" +msgstr "" + +#: src/gui/insEdit.cpp:343 +msgid "tone" +msgstr "" + +#: src/gui/insEdit.cpp:345 +msgid "envelope" +msgstr "" + +#: src/gui/insEdit.cpp:350 +msgid "hold" +msgstr "" + +#: src/gui/insEdit.cpp:351 +msgid "alternate" +msgstr "" + +#: src/gui/insEdit.cpp:352 src/gui/insEdit.cpp:364 +msgid "direction" +msgstr "" + +#: src/gui/insEdit.cpp:353 src/gui/insEdit.cpp:436 +msgid "enable" +msgstr "" + +#: src/gui/insEdit.cpp:357 src/gui/insEdit.cpp:368 +msgid "enabled" +msgstr "" + +#: src/gui/insEdit.cpp:361 +msgid "mirror" +msgstr "" + +#: src/gui/insEdit.cpp:365 +msgid "resolution" +msgstr "" + +#: src/gui/insEdit.cpp:366 +msgid "fixed" +msgstr "" + +#: src/gui/insEdit.cpp:367 +msgid "N/A" +msgstr "" + +#: src/gui/insEdit.cpp:374 +msgid "echo" +msgstr "" + +#: src/gui/insEdit.cpp:375 +msgid "pitch mod" +msgstr "" + +#: src/gui/insEdit.cpp:376 src/gui/insEdit.cpp:508 +msgid "invert right" +msgstr "" + +#: src/gui/insEdit.cpp:377 src/gui/insEdit.cpp:509 +msgid "invert left" +msgstr "" + +#: src/gui/insEdit.cpp:382 src/gui/insEdit.cpp:5905 +msgid "low" +msgstr "" + +#: src/gui/insEdit.cpp:383 src/gui/insEdit.cpp:5911 +msgid "band" +msgstr "" + +#: src/gui/insEdit.cpp:384 src/gui/insEdit.cpp:5917 +msgid "high" +msgstr "" + +#: src/gui/insEdit.cpp:385 src/gui/insEdit.cpp:5924 +msgid "ch3off" +msgstr "" + +#: src/gui/insEdit.cpp:393 +msgid "test" +msgstr "" + +#: src/gui/insEdit.cpp:398 +msgid "15KHz" +msgstr "" + +#: src/gui/insEdit.cpp:399 +msgid "filter 2+4" +msgstr "" + +#: src/gui/insEdit.cpp:400 +msgid "filter 1+3" +msgstr "" + +#: src/gui/insEdit.cpp:401 +msgid "16-bit 3+4" +msgstr "" + +#: src/gui/insEdit.cpp:402 +msgid "16-bit 1+2" +msgstr "" + +#: src/gui/insEdit.cpp:403 +msgid "high3" +msgstr "" + +#: src/gui/insEdit.cpp:404 +msgid "high1" +msgstr "" + +#: src/gui/insEdit.cpp:405 +msgid "poly9" +msgstr "" + +#: src/gui/insEdit.cpp:414 +msgid "16'" +msgstr "" + +#: src/gui/insEdit.cpp:415 +msgid "8'" +msgstr "" + +#: src/gui/insEdit.cpp:416 +msgid "4'" +msgstr "" + +#: src/gui/insEdit.cpp:417 +msgid "2'" +msgstr "" + +#: src/gui/insEdit.cpp:418 +msgid "sustain" +msgstr "" + +#: src/gui/insEdit.cpp:423 +msgid "square" +msgstr "" + +#: src/gui/insEdit.cpp:431 +msgid "surround" +msgstr "" + +#: src/gui/insEdit.cpp:437 +msgid "oneshot" +msgstr "" + +#: src/gui/insEdit.cpp:438 +msgid "split L/R" +msgstr "" + +#: src/gui/insEdit.cpp:439 +msgid "HinvR" +msgstr "" + +#: src/gui/insEdit.cpp:440 +msgid "VinvR" +msgstr "" + +#: src/gui/insEdit.cpp:441 +msgid "HinvL" +msgstr "" + +#: src/gui/insEdit.cpp:442 +msgid "VinvL" +msgstr "" + +#: src/gui/insEdit.cpp:447 src/gui/insEdit.cpp:476 +msgid "ring mod" +msgstr "" + +#: src/gui/insEdit.cpp:448 +msgid "low pass" +msgstr "" + +#: src/gui/insEdit.cpp:449 src/gui/insEdit.cpp:475 +msgid "high pass" +msgstr "" + +#: src/gui/insEdit.cpp:450 +msgid "band pass" +msgstr "" + +#: src/gui/insEdit.cpp:459 +msgid "enable tap B" +msgstr "" + +#: src/gui/insEdit.cpp:460 +msgid "AM with slope" +msgstr "" + +#: src/gui/insEdit.cpp:465 +msgid "invert B" +msgstr "" + +#: src/gui/insEdit.cpp:466 +msgid "invert A" +msgstr "" + +#: src/gui/insEdit.cpp:467 +msgid "reset B" +msgstr "" + +#: src/gui/insEdit.cpp:468 +msgid "reset A" +msgstr "" + +#: src/gui/insEdit.cpp:469 +msgid "clip B" +msgstr "" + +#: src/gui/insEdit.cpp:470 +msgid "clip A" +msgstr "" + +#: src/gui/insEdit.cpp:477 +msgid "swap counters (noise)" +msgstr "" + +#: src/gui/insEdit.cpp:478 +msgid "low pass (noise)" +msgstr "" + +#: src/gui/insEdit.cpp:485 +msgid "rear right" +msgstr "" + +#: src/gui/insEdit.cpp:486 +msgid "rear left" +msgstr "" + +#: src/gui/insEdit.cpp:491 +msgid "on" +msgstr "" + +#: src/gui/insEdit.cpp:496 +msgid "k1 slowdown" +msgstr "" + +#: src/gui/insEdit.cpp:497 +msgid "k2 slowdown" +msgstr "" + +#: src/gui/insEdit.cpp:502 +msgid "pause" +msgstr "" + +#: src/gui/insEdit.cpp:503 +msgid "reverse" +msgstr "" + +#: src/gui/insEdit.cpp:521 +msgid "Subtract" +msgstr "" + +#: src/gui/insEdit.cpp:522 +msgid "Average" +msgstr "" + +#: src/gui/insEdit.cpp:523 src/gui/insEdit.cpp:2037 +msgid "Phase" +msgstr "" + +#: src/gui/insEdit.cpp:524 +msgid "Chorus" +msgstr "" + +#: src/gui/insEdit.cpp:528 +msgid "None (dual)" +msgstr "" + +#: src/gui/insEdit.cpp:529 +msgid "Wipe" +msgstr "" + +#: src/gui/insEdit.cpp:531 +msgid "Fade (ping-pong)" +msgstr "" + +#: src/gui/insEdit.cpp:532 +msgid "Overlay" +msgstr "" + +#: src/gui/insEdit.cpp:533 +msgid "Negative Overlay" +msgstr "" + +#: src/gui/insEdit.cpp:534 +msgid "Slide" +msgstr "" + +#: src/gui/insEdit.cpp:535 +msgid "Mix Chorus" +msgstr "" + +#: src/gui/insEdit.cpp:536 +msgid "Phase Modulation" +msgstr "" + +#: src/gui/insEdit.cpp:541 +msgid "Sweep" +msgstr "" + +#: src/gui/insEdit.cpp:542 src/gui/insEdit.cpp:552 +msgid "Wait" +msgstr "" + +#: src/gui/insEdit.cpp:543 src/gui/insEdit.cpp:553 +msgid "Wait for Release" +msgstr "" + +#: src/gui/insEdit.cpp:545 src/gui/insEdit.cpp:555 +msgid "Loop until Release" +msgstr "" + +#: src/gui/insEdit.cpp:549 +msgid "Volume Sweep" +msgstr "" + +#: src/gui/insEdit.cpp:550 +msgid "Frequency Sweep" +msgstr "" + +#: src/gui/insEdit.cpp:551 +msgid "Cutoff Sweep" +msgstr "" + +#: src/gui/insEdit.cpp:559 src/gui/insEdit.cpp:6604 +msgid "Direct" +msgstr "" + +#: src/gui/insEdit.cpp:560 src/gui/insEdit.cpp:6608 +msgid "Decrease (linear)" +msgstr "" + +#: src/gui/insEdit.cpp:561 src/gui/insEdit.cpp:6612 +msgid "Decrease (logarithmic)" +msgstr "" + +#: src/gui/insEdit.cpp:562 src/gui/insEdit.cpp:6616 +msgid "Increase (linear)" +msgstr "" + +#: src/gui/insEdit.cpp:563 src/gui/insEdit.cpp:6620 +msgid "Increase (bent line)" +msgstr "" + +#: src/gui/insEdit.cpp:611 +msgid "Relative" +msgstr "" + +#: src/gui/insEdit.cpp:616 +#, c-format +msgid "%d: +%d (exponential)" +msgstr "" + +#: src/gui/insEdit.cpp:619 +#, c-format +msgid "%d: +%d (linear)" +msgstr "" + +#: src/gui/insEdit.cpp:622 +#, c-format +msgid "%d: -%d (exponential)" +msgstr "" + +#: src/gui/insEdit.cpp:625 +#, c-format +msgid "%d: -%d (linear)" +msgstr "" + +#: src/gui/insEdit.cpp:627 +#, c-format +msgid "%d: %d (direct)" +msgstr "" + +#: src/gui/insEdit.cpp:660 +msgid "Random" +msgstr "" + +#: src/gui/insEdit.cpp:1610 +msgid "" +"left click to restart\n" +"middle click to pause\n" +"right click to see algorithm" +msgstr "" + +#: src/gui/insEdit.cpp:1620 +msgid "" +"left click to configure TL scaling\n" +"right click to see FM preview" +msgstr "" + +#: src/gui/insEdit.cpp:1624 +msgid "right click to see FM preview" +msgstr "" + +#: src/gui/insEdit.cpp:1639 +msgid "operator level changes with volume?" +msgstr "" + +#: src/gui/insEdit.cpp:1648 +msgid "AUTO##OPKVS" +msgstr "" + +#: src/gui/insEdit.cpp:1650 +msgid "NO##OPKVS" +msgstr "" + +#: src/gui/insEdit.cpp:1652 +msgid "YES##OPKVS" +msgstr "" + +#: src/gui/insEdit.cpp:1900 src/gui/insEdit.cpp:2005 +msgid "Bottom" +msgstr "" + +#: src/gui/insEdit.cpp:1940 +msgid "Hold" +msgstr "" + +#: src/gui/insEdit.cpp:1949 +msgid "SusTime" +msgstr "" + +#: src/gui/insEdit.cpp:1969 +msgid "SusDecay" +msgstr "" + +#: src/gui/insEdit.cpp:2047 +msgid "Shape" +msgstr "" + +#: src/gui/insEdit.cpp:2100 +msgid "Macro type: Sequence" +msgstr "" + +#: src/gui/insEdit.cpp:2103 +msgid "Macro type: ADSR" +msgstr "" + +#: src/gui/insEdit.cpp:2106 +msgid "Macro type: LFO" +msgstr "" + +#: src/gui/insEdit.cpp:2109 +msgid "Macro type: What's going on here?" +msgstr "" + +#: src/gui/insEdit.cpp:2122 +msgid "Delay/Step Length" +msgstr "" + +#: src/gui/insEdit.cpp:2125 +msgid "Step Length (ticks)##IMacroSpeed" +msgstr "" + +#: src/gui/insEdit.cpp:2129 +msgid "Delay##IMacroDelay" +msgstr "" + +#: src/gui/insEdit.cpp:2142 +msgid "Release mode: Active (jump to release pos)" +msgstr "" + +#: src/gui/insEdit.cpp:2144 +msgid "Release mode: Passive (delayed release)" +msgstr "" + +#: src/gui/insEdit.cpp:2393 +msgid "StepLen" +msgstr "" + +#: src/gui/insEdit.cpp:2401 +msgid "Delay" +msgstr "" + +#: src/gui/insEdit.cpp:2425 +msgid "The heck? No, this isn't even working correctly..." +msgstr "" + +#: src/gui/insEdit.cpp:2428 +msgid "The only problem with that selectedMacro is that it's a bug..." +msgstr "" + +#: src/gui/insEdit.cpp:2589 +msgid "(copying)" +msgstr "" + +#: src/gui/insEdit.cpp:2591 +msgid "(swapping)" +msgstr "" + +#: src/gui/insEdit.cpp:2595 +msgid "" +"- drag to swap operator\n" +"- shift-drag to copy operator" +msgstr "" + +#: src/gui/insEdit.cpp:2632 +msgid "new DPCM features disabled (compatibility)!" +msgstr "" + +#: src/gui/insEdit.cpp:2633 +msgid "click here to enable them." +msgstr "" + +#: src/gui/insEdit.cpp:2644 +msgid "none selected" +msgstr "" + +#: src/gui/insEdit.cpp:2657 +msgid "Use sample" +msgstr "" + +#: src/gui/insEdit.cpp:2659 +msgid "Sample bank slot##BANKSLOT" +msgstr "" + +#: src/gui/insEdit.cpp:2681 +msgid "Use wavetable (Amiga/Generic DAC only)" +msgstr "" + +#: src/gui/insEdit.cpp:2681 +msgid "Use wavetable" +msgstr "" + +#: src/gui/insEdit.cpp:2708 +msgid "Use sample map" +msgstr "" + +#: src/gui/insEdit.cpp:2730 +msgid "delta" +msgstr "" + +#: src/gui/insEdit.cpp:2736 +msgid "sample name" +msgstr "" + +#: src/gui/insEdit.cpp:3001 +msgid "set entire map to this pitch" +msgstr "" + +#: src/gui/insEdit.cpp:3009 +msgid "set entire map to this delta counter value" +msgstr "" + +#: src/gui/insEdit.cpp:3018 +msgid "set entire map to this note" +msgstr "" + +#: src/gui/insEdit.cpp:3027 +msgid "set entire map to this sample" +msgstr "" + +#: src/gui/insEdit.cpp:3037 +msgid "reset pitches" +msgstr "" + +#: src/gui/insEdit.cpp:3042 +msgid "clear delta counter values" +msgstr "" + +#: src/gui/insEdit.cpp:3048 +msgid "reset notes" +msgstr "" + +#: src/gui/insEdit.cpp:3054 +msgid "clear map samples" +msgstr "" + +#: src/gui/insEdit.cpp:3148 +msgid "Request from TX81Z" +msgstr "" + +#: src/gui/insEdit.cpp:3234 +#, c-format +msgid "%s name" +msgstr "" + +#: src/gui/insEdit.cpp:3286 +msgid "Fixed frequency mode" +msgstr "" + +#: src/gui/insEdit.cpp:3288 +msgid "" +"when enabled, drums will be set to the specified frequencies, ignoring the " +"note." +msgstr "" + +#: src/gui/insEdit.cpp:3296 +msgid "Drum" +msgstr "" + +#: src/gui/insEdit.cpp:3298 src/gui/insEdit.cpp:3798 src/gui/insEdit.cpp:3904 +#: src/gui/insEdit.cpp:4404 src/gui/insEdit.cpp:4468 src/gui/insEdit.cpp:5068 +#: src/gui/insEdit.cpp:5518 +msgid "Block" +msgstr "" + +#: src/gui/insEdit.cpp:3300 src/gui/insEdit.cpp:3803 src/gui/insEdit.cpp:3909 +#: src/gui/insEdit.cpp:4993 src/gui/insEdit.cpp:5079 src/gui/insEdit.cpp:5519 +msgid "FreqNum" +msgstr "" + +#: src/gui/insEdit.cpp:3303 +msgid "Snare/Hi-hat" +msgstr "" + +#: src/gui/insEdit.cpp:3304 +msgid "Tom/Top" +msgstr "" + +#: src/gui/insEdit.cpp:3314 +msgid "Volume##TL" +msgstr "" + +#: src/gui/insEdit.cpp:3316 +msgid "this volume slider only works in compatibility (non-drums) system." +msgstr "" + +#: src/gui/insEdit.cpp:3626 +msgid "Env" +msgstr "" + +#: src/gui/insEdit.cpp:3980 src/gui/insEdit.cpp:4346 src/gui/insEdit.cpp:4396 +#: src/gui/insEdit.cpp:5104 +msgid "OPL2/3 only (last 4 waveforms are OPL3 only)" +msgstr "" + +#: src/gui/insEdit.cpp:4079 src/gui/insEdit.cpp:4788 +#, c-format +msgid "Envelope 2 (kick only)" +msgstr "" + +#: src/gui/insEdit.cpp:4084 +#, c-format +msgid "Operator %d" +msgstr "" + +#: src/gui/insEdit.cpp:4414 +msgid "Freq" +msgstr "" + +#: src/gui/insEdit.cpp:4443 +msgid "Only on YM2151 (OPM)" +msgstr "" + +#: src/gui/insEdit.cpp:4466 +msgid "Blk" +msgstr "" + +#: src/gui/insEdit.cpp:4479 +msgid "F" +msgstr "" + +#: src/gui/insEdit.cpp:4481 +msgid "Frequency (F-Num)" +msgstr "" + +#: src/gui/insEdit.cpp:4833 +msgid "SSG On" +msgstr "" + +#: src/gui/insEdit.cpp:5206 src/gui/insEdit.cpp:5207 +msgid "waiting..." +msgstr "" + +#: src/gui/insEdit.cpp:5210 src/gui/insEdit.cpp:5211 +msgid "no instrument selected" +msgstr "" + +#: src/gui/insEdit.cpp:5393 +msgid "" +"none of the currently present chips are able to play this instrument type!" +msgstr "" + +#: src/gui/insEdit.cpp:5413 +msgid "FM Macros" +msgstr "" + +#: src/gui/insEdit.cpp:5435 src/gui/insEdit.cpp:5440 +msgid "LFO Speed" +msgstr "" + +#: src/gui/insEdit.cpp:5439 src/gui/insEdit.cpp:6514 +msgid "PM Depth" +msgstr "" + +#: src/gui/insEdit.cpp:5441 +msgid "LFO Shape" +msgstr "" + +#: src/gui/insEdit.cpp:5444 +msgid "OpMask" +msgstr "" + +#: src/gui/insEdit.cpp:5446 +msgid "AM Depth 2" +msgstr "" + +#: src/gui/insEdit.cpp:5447 +msgid "PM Depth 2" +msgstr "" + +#: src/gui/insEdit.cpp:5448 +msgid "LFO2 Speed" +msgstr "" + +#: src/gui/insEdit.cpp:5449 +msgid "LFO2 Shape" +msgstr "" + +#: src/gui/insEdit.cpp:5458 +#, c-format +msgid "Operator Macros" +msgstr "" + +#: src/gui/insEdit.cpp:5460 +#, c-format +msgid "OP%d Macros" +msgstr "" + +#: src/gui/insEdit.cpp:5521 +msgid "Op. Arpeggio" +msgstr "" + +#: src/gui/insEdit.cpp:5522 +msgid "Op. Pitch" +msgstr "" + +#: src/gui/insEdit.cpp:5531 +msgid "Op. Panning" +msgstr "" + +#: src/gui/insEdit.cpp:5558 +msgid "Use software envelope" +msgstr "" + +#: src/gui/insEdit.cpp:5559 +msgid "Initialize envelope on every note" +msgstr "" + +#: src/gui/insEdit.cpp:5560 +msgid "Double wave length (GBA only)" +msgstr "" + +#: src/gui/insEdit.cpp:5589 src/gui/insEdit.cpp:5666 +msgid "Sound Length" +msgstr "" + +#: src/gui/insEdit.cpp:5592 src/gui/insEdit.cpp:5666 +msgid "Infinity" +msgstr "" + +#: src/gui/insEdit.cpp:5596 +msgid "Direction" +msgstr "" + +#: src/gui/insEdit.cpp:5599 src/gui/insEdit.cpp:5669 src/gui/insEdit.cpp:5697 +#: src/gui/insEdit.cpp:6008 src/gui/insEdit.cpp:6051 +msgid "Up" +msgstr "" + +#: src/gui/insEdit.cpp:5604 src/gui/insEdit.cpp:5674 src/gui/insEdit.cpp:5702 +#: src/gui/insEdit.cpp:6013 src/gui/insEdit.cpp:6056 +msgid "Down" +msgstr "" + +#: src/gui/insEdit.cpp:5620 src/gui/insEdit.cpp:5953 +msgid "Hardware Sequence" +msgstr "" + +#: src/gui/insEdit.cpp:5630 src/gui/insEdit.cpp:5963 +msgid "Tick" +msgstr "" + +#: src/gui/insEdit.cpp:5632 src/gui/insEdit.cpp:5965 +msgid "Command" +msgstr "" + +#: src/gui/insEdit.cpp:5634 src/gui/insEdit.cpp:5967 +msgid "Move/Remove" +msgstr "" + +#: src/gui/insEdit.cpp:5663 +msgid "Env Length" +msgstr "" + +#: src/gui/insEdit.cpp:5690 +msgid "Shift" +msgstr "" + +#: src/gui/insEdit.cpp:5717 src/gui/insEdit.cpp:6073 +msgid "Ticks" +msgstr "" + +#: src/gui/insEdit.cpp:5736 src/gui/insEdit.cpp:6092 src/gui/insEdit.cpp:6239 +msgid "Position" +msgstr "" + +#: src/gui/insEdit.cpp:5815 +msgid "tri" +msgstr "" + +#: src/gui/insEdit.cpp:5882 +msgid "Ring Modulation" +msgstr "" + +#: src/gui/insEdit.cpp:5886 +msgid "Oscillator Sync" +msgstr "" + +#: src/gui/insEdit.cpp:5890 +msgid "Enable filter" +msgstr "" + +#: src/gui/insEdit.cpp:5891 +msgid "Initialize filter" +msgstr "" + +#: src/gui/insEdit.cpp:5894 src/gui/insEdit.cpp:5897 src/gui/insEdit.cpp:6951 +#: src/gui/insEdit.cpp:7215 src/gui/insEdit.cpp:7476 +msgid "Cutoff" +msgstr "" + +#: src/gui/insEdit.cpp:5902 src/gui/insEdit.cpp:6408 src/gui/insEdit.cpp:6952 +#: src/gui/insEdit.cpp:7179 src/gui/insEdit.cpp:7477 +msgid "Filter Mode" +msgstr "" + +#: src/gui/insEdit.cpp:5931 src/gui/insEdit.cpp:7485 +msgid "Noise Mode" +msgstr "" + +#: src/gui/insEdit.cpp:5932 +msgid "Wave Mix Mode" +msgstr "" + +#: src/gui/insEdit.cpp:5935 +msgid "Absolute Cutoff Macro" +msgstr "" + +#: src/gui/insEdit.cpp:5939 +msgid "Absolute Duty Macro" +msgstr "" + +#: src/gui/insEdit.cpp:5945 +msgid "Don't test before new note" +msgstr "" + +#: src/gui/insEdit.cpp:5950 +msgid "Switch roles of frequency and phase reset timer" +msgstr "" + +#: src/gui/insEdit.cpp:5997 src/gui/insEdit.cpp:6040 +msgid "Period" +msgstr "" + +#: src/gui/insEdit.cpp:6002 src/gui/insEdit.cpp:6045 src/gui/insEdit.cpp:6892 +msgid "Amount" +msgstr "" + +#: src/gui/insEdit.cpp:6005 src/gui/insEdit.cpp:6048 +msgid "Bound" +msgstr "" + +#: src/gui/insEdit.cpp:6021 +msgid "Flip" +msgstr "" + +#: src/gui/insEdit.cpp:6210 +msgid "Load waveform" +msgstr "" + +#: src/gui/insEdit.cpp:6215 +msgid "" +"when enabled, a waveform will be loaded into RAM.\n" +"when disabled, only the offset and length change." +msgstr "" + +#: src/gui/insEdit.cpp:6219 +msgid "Waveform##WAVE" +msgstr "" + +#: src/gui/insEdit.cpp:6227 +msgid "Per-channel wave position/length" +msgstr "" + +#: src/gui/insEdit.cpp:6237 +msgid "Ch" +msgstr "" + +#: src/gui/insEdit.cpp:6286 +msgid "Compatibility mode" +msgstr "" + +#: src/gui/insEdit.cpp:6288 +msgid "" +"only use for compatibility with .dmf modules!\n" +"- initializes modulation table with first wavetable\n" +"- does not alter modulation parameters on instrument change" +msgstr "" + +#: src/gui/insEdit.cpp:6290 +msgid "Modulation depth" +msgstr "" + +#: src/gui/insEdit.cpp:6294 +msgid "Modulation speed" +msgstr "" + +#: src/gui/insEdit.cpp:6298 +msgid "Modulation table" +msgstr "" + +#: src/gui/insEdit.cpp:6347 +msgid "Set modulation table (channel 5 only)" +msgstr "" + +#: src/gui/insEdit.cpp:6411 src/gui/insEdit.cpp:7184 +msgid "Filter K1" +msgstr "" + +#: src/gui/insEdit.cpp:6413 src/gui/insEdit.cpp:7185 +msgid "Filter K2" +msgstr "" + +#: src/gui/insEdit.cpp:6417 +msgid "Envelope length" +msgstr "" + +#: src/gui/insEdit.cpp:6420 +msgid "Left Volume Ramp" +msgstr "" + +#: src/gui/insEdit.cpp:6422 +msgid "Right Volume Ramp" +msgstr "" + +#: src/gui/insEdit.cpp:6425 +msgid "Filter K1 Ramp" +msgstr "" + +#: src/gui/insEdit.cpp:6427 +msgid "Filter K2 Ramp" +msgstr "" + +#: src/gui/insEdit.cpp:6430 +msgid "K1 Ramp Slowdown" +msgstr "" + +#: src/gui/insEdit.cpp:6432 +msgid "K2 Ramp Slowdown" +msgstr "" + +#: src/gui/insEdit.cpp:6454 +msgid "Attack Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6460 +msgid "Decay 1 Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6466 +msgid "Decay Level" +msgstr "" + +#: src/gui/insEdit.cpp:6472 +msgid "Decay 2 Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6478 +msgid "Release Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6484 +msgid "Rate Correction" +msgstr "" + +#: src/gui/insEdit.cpp:6512 +msgid "LFO Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6523 +msgid "Use envelope" +msgstr "" + +#: src/gui/insEdit.cpp:6576 +msgid "Sustain/release mode:" +msgstr "" + +#: src/gui/insEdit.cpp:6577 +msgid "Direct (cut on release)" +msgstr "" + +#: src/gui/insEdit.cpp:6580 +msgid "Effective (linear decrease)" +msgstr "" + +#: src/gui/insEdit.cpp:6583 +msgid "Effective (exponential decrease)" +msgstr "" + +#: src/gui/insEdit.cpp:6586 +msgid "Delayed (write R on release)" +msgstr "" + +#: src/gui/insEdit.cpp:6596 src/gui/insEdit.cpp:6597 +msgid "Gain Mode" +msgstr "" + +#: src/gui/insEdit.cpp:6599 src/gui/insEdit.cpp:6600 src/gui/insEdit.cpp:7205 +msgid "Gain" +msgstr "" + +#: src/gui/insEdit.cpp:6633 +msgid "" +"using decrease modes will not produce any sound at all, unless you know what " +"you are doing.\n" +"it is recommended to use the Gain macro for decrease instead." +msgstr "" + +#: src/gui/insEdit.cpp:6703 +msgid "Enable synthesizer" +msgstr "" + +#: src/gui/insEdit.cpp:6721 +msgid "Single-waveform" +msgstr "" + +#: src/gui/insEdit.cpp:6730 +msgid "Dual-waveform" +msgstr "" + +#: src/gui/insEdit.cpp:6803 src/gui/insEdit.cpp:6812 +msgid "Wave 1" +msgstr "" + +#: src/gui/insEdit.cpp:6808 src/gui/insEdit.cpp:6823 +msgid "" +"waveform macro is controlling wave 1!\n" +"this value will be ineffective." +msgstr "" + +#: src/gui/insEdit.cpp:6829 +msgid "Wave 2" +msgstr "" + +#: src/gui/insEdit.cpp:6844 +msgid "Resume preview" +msgstr "" + +#: src/gui/insEdit.cpp:6846 +msgid "Pause preview" +msgstr "" + +#: src/gui/insEdit.cpp:6854 +msgid "Restart preview" +msgstr "" + +#: src/gui/insEdit.cpp:6874 +msgid "Copy to new wavetable" +msgstr "" + +#: src/gui/insEdit.cpp:6881 +msgid "Update Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6902 +msgid "Global" +msgstr "" + +#: src/gui/insEdit.cpp:6906 +msgid "" +"wavetable synthesizer disabled.\n" +"use the Waveform macro to set the wave for this instrument." +msgstr "" + +#: src/gui/insEdit.cpp:6912 +msgid "Macros" +msgstr "" + +#: src/gui/insEdit.cpp:6921 src/gui/insEdit.cpp:6929 src/gui/insEdit.cpp:6938 +#: src/gui/insEdit.cpp:6947 src/gui/insEdit.cpp:6962 src/gui/insEdit.cpp:6976 +#: src/gui/insEdit.cpp:6988 src/gui/insEdit.cpp:7001 src/gui/insEdit.cpp:7017 +#: src/gui/insEdit.cpp:7023 src/gui/insEdit.cpp:7033 src/gui/insEdit.cpp:7040 +#: src/gui/insEdit.cpp:7046 src/gui/insEdit.cpp:7059 src/gui/insEdit.cpp:7066 +#: src/gui/insEdit.cpp:7073 src/gui/insEdit.cpp:7082 src/gui/insEdit.cpp:7092 +#: src/gui/insEdit.cpp:7100 src/gui/insEdit.cpp:7106 src/gui/insEdit.cpp:7114 +#: src/gui/insEdit.cpp:7121 src/gui/insEdit.cpp:7127 src/gui/insEdit.cpp:7137 +#: src/gui/insEdit.cpp:7149 src/gui/insEdit.cpp:7157 src/gui/insEdit.cpp:7173 +#: src/gui/insEdit.cpp:7178 src/gui/insEdit.cpp:7191 src/gui/insEdit.cpp:7198 +#: src/gui/insEdit.cpp:7209 src/gui/insEdit.cpp:7222 src/gui/insEdit.cpp:7231 +#: src/gui/insEdit.cpp:7238 src/gui/insEdit.cpp:7246 src/gui/insEdit.cpp:7270 +#: src/gui/insEdit.cpp:7277 src/gui/insEdit.cpp:7285 src/gui/insEdit.cpp:7296 +#: src/gui/insEdit.cpp:7303 src/gui/insEdit.cpp:7311 src/gui/insEdit.cpp:7319 +#: src/gui/insEdit.cpp:7328 src/gui/insEdit.cpp:7336 src/gui/insEdit.cpp:7342 +#: src/gui/insEdit.cpp:7348 src/gui/insEdit.cpp:7354 src/gui/insEdit.cpp:7359 +#: src/gui/insEdit.cpp:7366 src/gui/insEdit.cpp:7373 src/gui/insEdit.cpp:7381 +#: src/gui/insEdit.cpp:7390 src/gui/insEdit.cpp:7398 src/gui/insEdit.cpp:7410 +#: src/gui/insEdit.cpp:7423 src/gui/insEdit.cpp:7434 src/gui/insEdit.cpp:7444 +#: src/gui/insEdit.cpp:7452 src/gui/insEdit.cpp:7462 src/gui/insEdit.cpp:7471 +msgid "Arpeggio" +msgstr "" + +#: src/gui/insEdit.cpp:6925 src/gui/insEdit.cpp:6932 src/gui/insEdit.cpp:6943 +#: src/gui/insEdit.cpp:6972 src/gui/insEdit.cpp:6984 src/gui/insEdit.cpp:6994 +#: src/gui/insEdit.cpp:7007 src/gui/insEdit.cpp:7054 src/gui/insEdit.cpp:7062 +#: src/gui/insEdit.cpp:7069 src/gui/insEdit.cpp:7088 src/gui/insEdit.cpp:7110 +#: src/gui/insEdit.cpp:7133 src/gui/insEdit.cpp:7144 src/gui/insEdit.cpp:7163 +#: src/gui/insEdit.cpp:7183 src/gui/insEdit.cpp:7194 src/gui/insEdit.cpp:7214 +#: src/gui/insEdit.cpp:7234 src/gui/insEdit.cpp:7242 src/gui/insEdit.cpp:7249 +#: src/gui/insEdit.cpp:7254 src/gui/insEdit.cpp:7260 src/gui/insEdit.cpp:7266 +#: src/gui/insEdit.cpp:7273 src/gui/insEdit.cpp:7281 src/gui/insEdit.cpp:7290 +#: src/gui/insEdit.cpp:7299 src/gui/insEdit.cpp:7307 src/gui/insEdit.cpp:7324 +#: src/gui/insEdit.cpp:7332 src/gui/insEdit.cpp:7338 src/gui/insEdit.cpp:7362 +#: src/gui/insEdit.cpp:7369 src/gui/insEdit.cpp:7377 src/gui/insEdit.cpp:7386 +#: src/gui/insEdit.cpp:7394 src/gui/insEdit.cpp:7402 src/gui/insEdit.cpp:7414 +#: src/gui/insEdit.cpp:7429 src/gui/insEdit.cpp:7440 src/gui/insEdit.cpp:7448 +#: src/gui/insEdit.cpp:7457 src/gui/insEdit.cpp:7475 +msgid "Phase Reset" +msgstr "" + +#: src/gui/insEdit.cpp:6939 src/gui/insEdit.cpp:7024 src/gui/insEdit.cpp:7210 +#: src/gui/insEdit.cpp:7247 +msgid "Duty/Noise" +msgstr "" + +#: src/gui/insEdit.cpp:6966 src/gui/insEdit.cpp:7288 +msgid "Surround" +msgstr "" + +#: src/gui/insEdit.cpp:6968 src/gui/insEdit.cpp:6981 src/gui/insEdit.cpp:7026 +#: src/gui/insEdit.cpp:7085 src/gui/insEdit.cpp:7141 src/gui/insEdit.cpp:7159 +#: src/gui/insEdit.cpp:7180 src/gui/insEdit.cpp:7201 src/gui/insEdit.cpp:7225 +#: src/gui/insEdit.cpp:7278 src/gui/insEdit.cpp:7304 src/gui/insEdit.cpp:7321 +#: src/gui/insEdit.cpp:7329 src/gui/insEdit.cpp:7374 src/gui/insEdit.cpp:7383 +#: src/gui/insEdit.cpp:7399 src/gui/insEdit.cpp:7411 src/gui/insEdit.cpp:7426 +#: src/gui/insEdit.cpp:7454 src/gui/insEdit.cpp:7464 +msgid "Panning (left)" +msgstr "" + +#: src/gui/insEdit.cpp:6969 src/gui/insEdit.cpp:6982 src/gui/insEdit.cpp:7027 +#: src/gui/insEdit.cpp:7086 src/gui/insEdit.cpp:7142 src/gui/insEdit.cpp:7160 +#: src/gui/insEdit.cpp:7181 src/gui/insEdit.cpp:7202 src/gui/insEdit.cpp:7226 +#: src/gui/insEdit.cpp:7279 src/gui/insEdit.cpp:7305 src/gui/insEdit.cpp:7322 +#: src/gui/insEdit.cpp:7330 src/gui/insEdit.cpp:7375 src/gui/insEdit.cpp:7384 +#: src/gui/insEdit.cpp:7400 src/gui/insEdit.cpp:7412 src/gui/insEdit.cpp:7427 +#: src/gui/insEdit.cpp:7455 src/gui/insEdit.cpp:7465 +msgid "Panning (right)" +msgstr "" + +#: src/gui/insEdit.cpp:6990 src/gui/insEdit.cpp:7003 src/gui/insEdit.cpp:7107 +#: src/gui/insEdit.cpp:7199 src/gui/insEdit.cpp:7239 src/gui/insEdit.cpp:7424 +msgid "Noise Freq" +msgstr "" + +#: src/gui/insEdit.cpp:6996 src/gui/insEdit.cpp:7010 src/gui/insEdit.cpp:7167 +msgid "AutoEnv Num" +msgstr "" + +#: src/gui/insEdit.cpp:6997 src/gui/insEdit.cpp:7011 src/gui/insEdit.cpp:7168 +msgid "AutoEnv Den" +msgstr "" + +#: src/gui/insEdit.cpp:7012 +msgid "Noise AND Mask" +msgstr "" + +#: src/gui/insEdit.cpp:7013 +msgid "Noise OR Mask" +msgstr "" + +#: src/gui/insEdit.cpp:7034 +msgid "On/Off" +msgstr "" + +#: src/gui/insEdit.cpp:7060 +msgid "Patch" +msgstr "" + +#: src/gui/insEdit.cpp:7076 +msgid "Mod Depth" +msgstr "" + +#: src/gui/insEdit.cpp:7077 +msgid "Mod Speed" +msgstr "" + +#: src/gui/insEdit.cpp:7078 +msgid "Mod Position" +msgstr "" + +#: src/gui/insEdit.cpp:7083 +msgid "Noise Length" +msgstr "" + +#: src/gui/insEdit.cpp:7093 +msgid "Wave Pos" +msgstr "" + +#: src/gui/insEdit.cpp:7096 +msgid "Wave Length" +msgstr "" + +#: src/gui/insEdit.cpp:7115 +msgid "AUDCTL" +msgstr "" + +#: src/gui/insEdit.cpp:7122 src/gui/insEdit.cpp:7343 +msgid "Pulse Width" +msgstr "" + +#: src/gui/insEdit.cpp:7139 +msgid "Duty/Int" +msgstr "" + +#: src/gui/insEdit.cpp:7145 src/gui/insEdit.cpp:7406 +msgid "Load LFSR" +msgstr "" + +#: src/gui/insEdit.cpp:7165 +msgid "Envelope Mode" +msgstr "" + +#: src/gui/insEdit.cpp:7218 +msgid "Phase Reset Timer" +msgstr "" + +#: src/gui/insEdit.cpp:7252 src/gui/insEdit.cpp:7259 +msgid "Freq Divider" +msgstr "" + +#: src/gui/insEdit.cpp:7255 +msgid "Clock Divider" +msgstr "" + +#: src/gui/insEdit.cpp:7264 +msgid "Global Volume" +msgstr "" + +#: src/gui/insEdit.cpp:7286 +msgid "Echo Level" +msgstr "" + +#: src/gui/insEdit.cpp:7291 +msgid "Echo Feedback" +msgstr "" + +#: src/gui/insEdit.cpp:7292 +msgid "Echo Length" +msgstr "" + +#: src/gui/insEdit.cpp:7312 +msgid "Group Ctrl" +msgstr "" + +#: src/gui/insEdit.cpp:7313 +msgid "Group Attack" +msgstr "" + +#: src/gui/insEdit.cpp:7314 +msgid "Group Decay" +msgstr "" + +#: src/gui/insEdit.cpp:7320 +msgid "Noise Type" +msgstr "" + +#: src/gui/insEdit.cpp:7367 +msgid "Square/Noise" +msgstr "" + +#: src/gui/insEdit.cpp:7404 +msgid "Tap A Location" +msgstr "" + +#: src/gui/insEdit.cpp:7405 +msgid "Tap B Location" +msgstr "" + +#: src/gui/insEdit.cpp:7416 +msgid "Portion A Length" +msgstr "" + +#: src/gui/insEdit.cpp:7417 +msgid "Portion B Length" +msgstr "" + +#: src/gui/insEdit.cpp:7418 +msgid "Portion A Offset" +msgstr "" + +#: src/gui/insEdit.cpp:7419 +msgid "Portion B Offset" +msgstr "" + +#: src/gui/insEdit.cpp:7463 +msgid "Parameter" +msgstr "" + +#: src/gui/insEdit.cpp:7467 +msgid "Load Value" +msgstr "" + +#: src/gui/insEdit.cpp:7479 +msgid "Filter Toggle" +msgstr "" + +#: src/gui/insEdit.cpp:7486 +msgid "Wave Mix" +msgstr "" + +#: src/gui/insEdit.cpp:7500 +msgid "Octave offset" +msgstr "" + +#: src/gui/insEdit.cpp:7505 +msgid "go to Macros for other parameters." +msgstr "" + +#: src/gui/insEdit.cpp:7521 +msgid "invalid instrument type! change it first." +msgstr "" + +#: src/gui/insEdit.cpp:7565 +msgid "clear contents" +msgstr "" + +#: src/gui/insEdit.cpp:7571 +msgid "offset..." +msgstr "" + +#: src/gui/insEdit.cpp:7572 src/gui/insEdit.cpp:7605 +msgid "X" +msgstr "" + +#: src/gui/insEdit.cpp:7573 src/gui/insEdit.cpp:7609 +msgid "Y" +msgstr "" + +#: src/gui/insEdit.cpp:7574 +msgid "offset" +msgstr "" + +#: src/gui/insEdit.cpp:7637 +msgid "Min" +msgstr "" + +#: src/gui/insEdit.cpp:7638 +msgid "Max" +msgstr "" diff --git a/po/es.po b/po/es.po new file mode 100644 index 000000000..ac3eb0d19 --- /dev/null +++ b/po/es.po @@ -0,0 +1,16704 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: furnace 0.6.3\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/engine/sysDef.cpp:428 src/engine/sysDef.cpp:441 +msgid "20xx: Set channel mode (bit 0: square; bit 1: noise; bit 2: envelope)" +msgstr "" +"20xx: Cambiar modo del canal (bit 0: cuadrado; bit 1: ruido; bit 2: envelope)" + +#: src/engine/sysDef.cpp:429 +msgid "21xx: Set noise frequency (0 to 1F)" +msgstr "21xx: Ajustar frecuencia del ruido (0 a 1F)" + +#: src/engine/sysDef.cpp:430 src/engine/sysDef.cpp:443 +msgid "22xy: Set envelope mode (x: shape, y: enable for this channel)" +msgstr "22xy: Cambiar modo del envelope (x: forma, y: activar en este canal)" + +#: src/engine/sysDef.cpp:431 src/engine/sysDef.cpp:444 +msgid "23xx: Set envelope period low byte" +msgstr "23xx: Cambiar byte inferior del periodo del envelope" + +#: src/engine/sysDef.cpp:432 src/engine/sysDef.cpp:445 +msgid "24xx: Set envelope period high byte" +msgstr "24xx: Cambiar byte superior del periodo del envelope" + +#: src/engine/sysDef.cpp:433 src/engine/sysDef.cpp:446 +#: src/engine/sysDef.cpp:1599 +msgid "25xx: Envelope slide up" +msgstr "25xx: Deslizar el envelope hacia arriba" + +#: src/engine/sysDef.cpp:434 src/engine/sysDef.cpp:447 +#: src/engine/sysDef.cpp:1600 +msgid "26xx: Envelope slide down" +msgstr "26xx: Deslizar el envelope hacia abajo" + +#: src/engine/sysDef.cpp:435 src/engine/sysDef.cpp:448 +#: src/engine/sysDef.cpp:1601 +msgid "29xy: Set auto-envelope (x: numerator; y: denominator)" +msgstr "29xy: Activar auto-envelope (x: numerador; y: denominador)" + +#: src/engine/sysDef.cpp:436 src/engine/sysDef.cpp:449 +msgid "2Exx: Write to I/O port A" +msgstr "2Exx: Escribir al puerto E/S A" + +#: src/engine/sysDef.cpp:437 src/engine/sysDef.cpp:450 +msgid "2Fxx: Write to I/O port B" +msgstr "2Fxx: Escribir al puerto E/S B" + +#: src/engine/sysDef.cpp:442 +msgid "21xx: Set noise frequency (0 to FF)" +msgstr "21xx: Ajustar frecuencia del ruido (0 a FF)" + +#: src/engine/sysDef.cpp:451 +msgid "12xx: Set duty cycle (0 to 8)" +msgstr "12xx: Cambiar ancho de pulso (0 a 8)" + +#: src/engine/sysDef.cpp:453 +msgid "27xx: Set noise AND mask" +msgstr "27xx: Cambiar máscara Y del ruido" + +#: src/engine/sysDef.cpp:454 +msgid "28xx: Set noise OR mask" +msgstr "28xx: Cambiar máscara O del ruido" + +#: src/engine/sysDef.cpp:455 +msgid "" +"2Cxy: Automatic noise frequency (x: mode (0: disable, 1: freq, 2: freq + OR " +"mask); y: offset)" +msgstr "" +"2Cxy: Frecuencia de ruido automática (x: modo (0: desactivar, 1: frec, 2: " +"frec + máscara O); y: tono)" + +#: src/engine/sysDef.cpp:456 +msgid "2Dxx: NOT TO BE EMPLOYED BY THE COMPOSER" +msgstr "2Dxx: NO USABLE POR EL COMPOSITOR" + +#: src/engine/sysDef.cpp:460 +msgid "30xx: Toggle hard envelope reset on new notes" +msgstr "30xx: Activar reinicio duro del envelope en nuevas notas" + +#: src/engine/sysDef.cpp:465 +msgid "18xx: Toggle extended channel 3 mode" +msgstr "18xx: Ajustar modo de canal 3 extendido" + +#: src/engine/sysDef.cpp:470 src/engine/sysDef.cpp:766 +#: src/engine/sysDef.cpp:1025 src/engine/sysDef.cpp:1272 +#: src/engine/sysDef.cpp:1593 +msgid "17xx: Toggle PCM mode (LEGACY)" +msgstr "17xx: Activar modo de samples (DEPRECADO)" + +#: src/engine/sysDef.cpp:471 src/engine/sysDef.cpp:1653 +#: src/engine/sysDef.cpp:1963 +msgid "DFxx: Set sample playback direction (0: normal; 1: reverse)" +msgstr "" +"DFxx: Cambiar dirección de reproducción de samples (0: normal; 1: al revés)" + +#: src/engine/sysDef.cpp:476 +msgid "18xx: Toggle drums mode (1: enabled; 0: disabled)" +msgstr "18xx: Ajustar modo de percusión (1: activado; 0: desactivado)" + +#: src/engine/sysDef.cpp:480 src/engine/sysDef.cpp:554 +#: src/engine/sysDef.cpp:575 +msgid "11xx: Set feedback (0 to 7)" +msgstr "11xx: Cambiar retroalimentación (0 a 7)" + +#: src/engine/sysDef.cpp:481 +msgid "12xx: Set level of operator 1 (0 highest, 7F lowest)" +msgstr "12xx: Cambiar nivel del operador 1 (0 más alto, 7F más bajo)" + +#: src/engine/sysDef.cpp:482 +msgid "13xx: Set level of operator 2 (0 highest, 7F lowest)" +msgstr "13xx: Cambiar nivel del operador 2 (0 más alto, 7F más bajo)" + +#: src/engine/sysDef.cpp:483 +msgid "14xx: Set level of operator 3 (0 highest, 7F lowest)" +msgstr "14xx: Cambiar nivel del operador 3 (0 más alto, 7F más bajo)" + +#: src/engine/sysDef.cpp:484 +msgid "15xx: Set level of operator 4 (0 highest, 7F lowest)" +msgstr "15xx: Cambiar nivel del operador 4 (0 más alto, 7F más bajo)" + +#: src/engine/sysDef.cpp:485 src/engine/sysDef.cpp:580 +#: src/engine/sysDef.cpp:635 +msgid "16xy: Set operator multiplier (x: operator from 1 to 4; y: multiplier)" +msgstr "" +"16xy: Cambiar multiplicador del operador (x: operador del 1 al 4; y: " +"multiplicador)" + +#: src/engine/sysDef.cpp:486 +msgid "19xx: Set attack of all operators (0 to 1F)" +msgstr "19xx: Cambiar ataque de todos los operadores (0 a 1F)" + +#: src/engine/sysDef.cpp:487 +msgid "1Axx: Set attack of operator 1 (0 to 1F)" +msgstr "1Axx: Cambiar ataque del operador 1 (0 a 1F)" + +#: src/engine/sysDef.cpp:488 +msgid "1Bxx: Set attack of operator 2 (0 to 1F)" +msgstr "1Bxx: Cambiar ataque del operador 2 (0 a 1F)" + +#: src/engine/sysDef.cpp:489 +msgid "1Cxx: Set attack of operator 3 (0 to 1F)" +msgstr "1Cxx: Cambiar ataque del operador 3 (0 a 1F)" + +#: src/engine/sysDef.cpp:490 +msgid "1Dxx: Set attack of operator 4 (0 to 1F)" +msgstr "1Dxx: Cambiar ataque del operador 4 (0 a 1F)" + +#: src/engine/sysDef.cpp:491 src/engine/sysDef.cpp:588 +#: src/engine/sysDef.cpp:656 +msgid "50xy: Set AM (x: operator from 1 to 4 (0 for all ops); y: AM)" +msgstr "" +"50xy: Cambiar AM (x: operador del 1 al 4 (0 para todos los ops); y: AM)" + +#: src/engine/sysDef.cpp:492 src/engine/sysDef.cpp:589 +#: src/engine/sysDef.cpp:657 +msgid "" +"51xy: Set sustain level (x: operator from 1 to 4 (0 for all ops); y: sustain)" +msgstr "" +"51xy: Cambiar nivel de sostenido (x: operador del 1 al 4 (0 para todos los " +"ops); y: sostenido)" + +#: src/engine/sysDef.cpp:493 src/engine/sysDef.cpp:590 +#: src/engine/sysDef.cpp:658 +msgid "52xy: Set release (x: operator from 1 to 4 (0 for all ops); y: release)" +msgstr "" +"52xy: Ajustar lanzamiento (x: operador del 1 al 4 (0 para todos los ops); y: " +"lanzamiento)" + +#: src/engine/sysDef.cpp:494 +msgid "" +"53xy: Set detune (x: operator from 1 to 4 (0 for all ops); y: detune where 3 " +"is center)" +msgstr "" +"53xy: Ajustar tonalidad (x: operador del 1 al 4 (0 para todos los ops); y: " +"tonalidad donde 3 es centro)" + +#: src/engine/sysDef.cpp:495 src/engine/sysDef.cpp:592 +#: src/engine/sysDef.cpp:660 +msgid "" +"54xy: Set envelope scale (x: operator from 1 to 4 (0 for all ops); y: scale " +"from 0 to 3)" +msgstr "" +"54xy: Ajustar escala del envelope (x: operador del 1 al 4 (0 para todos los " +"ops); y: escala del 0 al 3)" + +#: src/engine/sysDef.cpp:496 +msgid "56xx: Set decay of all operators (0 to 1F)" +msgstr "56xx: Cambiar caída de todos los operadores (0 a 1F)" + +#: src/engine/sysDef.cpp:497 +msgid "57xx: Set decay of operator 1 (0 to 1F)" +msgstr "57xx: Cambiar caída del operador 1 (0 a 1F)" + +#: src/engine/sysDef.cpp:498 +msgid "58xx: Set decay of operator 2 (0 to 1F)" +msgstr "58xx: Cambiar caída del operador 2 (0 a 1F)" + +#: src/engine/sysDef.cpp:499 +msgid "59xx: Set decay of operator 3 (0 to 1F)" +msgstr "59xx: Cambiar caída del operador 3 (0 a 1F)" + +#: src/engine/sysDef.cpp:500 +msgid "5Axx: Set decay of operator 4 (0 to 1F)" +msgstr "5Axx: Cambiar caída del operador 4 (0 a 1F)" + +#: src/engine/sysDef.cpp:501 +msgid "5Bxx: Set decay 2 of all operators (0 to 1F)" +msgstr "5Bxx: Cambiar caída 2 de todos los operadores (0 a 1F)" + +#: src/engine/sysDef.cpp:502 +msgid "5Cxx: Set decay 2 of operator 1 (0 to 1F)" +msgstr "5Cxx: Cambiar caída 2 del operador 1 (0 a 1F)" + +#: src/engine/sysDef.cpp:503 +msgid "5Dxx: Set decay 2 of operator 2 (0 to 1F)" +msgstr "5Dxx: Cambiar caída 2 del operador 2 (0 a 1F)" + +#: src/engine/sysDef.cpp:504 +msgid "5Exx: Set decay 2 of operator 3 (0 to 1F)" +msgstr "5Exx: Cambiar caída 2 del operador 3 (0 a 1F)" + +#: src/engine/sysDef.cpp:505 +msgid "5Fxx: Set decay 2 of operator 4 (0 to 1F)" +msgstr "5Fxx: Cambiar caída 2 del operador 4 (0 a 1F)" + +#: src/engine/sysDef.cpp:510 +msgid "10xx: Set noise frequency (xx: value; 0 disables noise)" +msgstr "10xx: Ajustar frecuencia del ruido (xx: valor; 0 desactiva el ruido)" + +#: src/engine/sysDef.cpp:511 +msgid "17xx: Set LFO speed" +msgstr "17xx: Cambiar velocidad del LFO" + +#: src/engine/sysDef.cpp:512 +msgid "18xx: Set LFO waveform (0 saw, 1 square, 2 triangle, 3 noise)" +msgstr "" +"18xx: Cambiar forma del LFO (0 sierra, 1 cuadrada, 2 triangular, 3 ruido)" + +#: src/engine/sysDef.cpp:513 +msgid "1Exx: Set AM depth (0 to 7F)" +msgstr "1Exx: Cambiar profundidad de AM (0 a 7F)" + +#: src/engine/sysDef.cpp:514 +msgid "1Fxx: Set PM depth (0 to 7F)" +msgstr "1Fxx: Cambiar profundidad de PM (0 a 7F)" + +#: src/engine/sysDef.cpp:515 +msgid "" +"55xy: Set detune 2 (x: operator from 1 to 4 (0 for all ops); y: detune from " +"0 to 3)" +msgstr "" +"55xy: Ajustar tono 2 (x: operador del 1 al 4 (0 para todos los ops); y: tono " +"del 0 al 3)" + +#: src/engine/sysDef.cpp:520 +msgid "24xx: Set LFO 2 speed" +msgstr "24xx: Cambiar velocidad del LFO 2" + +#: src/engine/sysDef.cpp:521 +msgid "25xx: Set LFO 2 waveform (0 saw, 1 square, 2 triangle, 3 noise)" +msgstr "" +"25xx: Cambiar forma del LFO 2 (0 sierra, 1 cuadrada, 2 triangular, 3 ruido)" + +#: src/engine/sysDef.cpp:522 +msgid "26xx: Set AM 2 depth (0 to 7F)" +msgstr "26xx: Cambiar profundidad del AM 2 (0 a 7F)" + +#: src/engine/sysDef.cpp:523 +msgid "27xx: Set PM 2 depth (0 to 7F)" +msgstr "27xx: Cambiar profundidad del PM 2 (0 a 7F)" + +#: src/engine/sysDef.cpp:524 +msgid "" +"28xy: Set reverb (x: operator from 1 to 4 (0 for all ops); y: reverb from 0 " +"to 7)" +msgstr "" +"28xy: Ajustar reverb (x: operador del 1 al 4 (0 para todos los ops); y: " +"reverb del 0 al 7)" + +#: src/engine/sysDef.cpp:525 src/engine/sysDef.cpp:650 +msgid "" +"2Axy: Set waveform (x: operator from 1 to 4 (0 for all ops); y: waveform " +"from 0 to 7)" +msgstr "" +"2Axy: Cambiar onda (x: operador del 1 al 4 (0 para todos los ops); y: onda " +"del 0 al 7)" + +#: src/engine/sysDef.cpp:526 +msgid "" +"2Bxy: Set envelope generator shift (x: operator from 1 to 4 (0 for all ops); " +"y: shift from 0 to 3)" +msgstr "" +"2Bxy: Ajustar giro del generador de envelope (x: operador del 1 al 4 (0 para " +"todos los ops); y: giro del 0 al 3)" + +#: src/engine/sysDef.cpp:527 +msgid "" +"2Cxy: Set fine multiplier (x: operator from 1 to 4 (0 for all ops); y: fine)" +msgstr "" +"2Cxy: Ajustar multiplicador fino (x: operador del 1 al 4 (0 para todos los " +"ops); y: fino)" + +#: src/engine/sysDef.cpp:530 +msgid "" +"3xyy: Set fixed frequency of operator 1 (x: octave from 0 to 7; y: frequency)" +msgstr "" +"3xyy: Ajustar frecuencia fija del operador 1 (x: octava del 0 al 7; y: " +"frecuencia)" + +#: src/engine/sysDef.cpp:531 +msgid "" +"3xyy: Set fixed frequency of operator 2 (x: octave from 8 to F; y: frequency)" +msgstr "" +"3xyy: Ajustar frecuencia fija del operador 2 (x: octava del 8 al F; y: " +"frecuencia)" + +#: src/engine/sysDef.cpp:532 +msgid "" +"4xyy: Set fixed frequency of operator 3 (x: octave from 0 to 7; y: frequency)" +msgstr "" +"4xyy: Ajustar frecuencia fija del operador 3 (x: octava del 0 al 7; y: " +"frecuencia)" + +#: src/engine/sysDef.cpp:533 +msgid "" +"4xyy: Set fixed frequency of operator 4 (x: octave from 8 to F; y: frequency)" +msgstr "" +"4xyy: Ajustar frecuencia fija del operador 4 (x: octava del 8 al F; y: " +"frecuencia)" + +#: src/engine/sysDef.cpp:540 +msgid "10xy: Setup LFO (x: enable; y: speed)" +msgstr "10xy: Ajustar LFO (x: activar; y: velocidad)" + +#: src/engine/sysDef.cpp:541 +msgid "" +"55xy: Set SSG envelope (x: operator from 1 to 4 (0 for all ops); y: 0-7 on, " +"8 off)" +msgstr "" +"55xy: Cambiar envelope SSG (x: operador del 1 al 4 (0 para todos los ops); " +"y: 0-7 activado, 8 desactivado)" + +#: src/engine/sysDef.cpp:549 +msgid "1Fxx: Set ADPCM-A global volume (0 to 3F)" +msgstr "1Fxx: Ajustar volumen global del ADPCM-A (0 a 3F)" + +#: src/engine/sysDef.cpp:553 +msgid "10xx: Set patch (0 to F)" +msgstr "10xx: Cambiar sonido (0 a F)" + +#: src/engine/sysDef.cpp:555 src/engine/sysDef.cpp:576 +#: src/engine/sysDef.cpp:631 +msgid "12xx: Set level of operator 1 (0 highest, 3F lowest)" +msgstr "12xx: Cambiar nivel del operador 1 (0 más alto, 3F más bajo)" + +#: src/engine/sysDef.cpp:556 src/engine/sysDef.cpp:577 +#: src/engine/sysDef.cpp:632 +msgid "13xx: Set level of operator 2 (0 highest, 3F lowest)" +msgstr "13xx: Cambiar nivel del operador 2 (0 más alto, 3F más bajo)" + +#: src/engine/sysDef.cpp:557 +msgid "16xy: Set operator multiplier (x: operator from 1 to 2; y: multiplier)" +msgstr "" +"16xy: Cambiar multiplicador del operador (x: operador del 1 al 2; y: " +"multiplicador)" + +#: src/engine/sysDef.cpp:558 src/engine/sysDef.cpp:582 +#: src/engine/sysDef.cpp:637 +msgid "19xx: Set attack of all operators (0 to F)" +msgstr "19xx: Cambiar ataque de todos los operadores (0 a F)" + +#: src/engine/sysDef.cpp:559 src/engine/sysDef.cpp:583 +#: src/engine/sysDef.cpp:638 +msgid "1Axx: Set attack of operator 1 (0 to F)" +msgstr "1Axx: Cambiar ataque del operador 1 (0 a F)" + +#: src/engine/sysDef.cpp:560 src/engine/sysDef.cpp:584 +#: src/engine/sysDef.cpp:639 +msgid "1Bxx: Set attack of operator 2 (0 to F)" +msgstr "1Bxx: Cambiar ataque del operador 2 (0 a F)" + +#: src/engine/sysDef.cpp:561 +msgid "50xy: Set AM (x: operator from 1 to 2 (0 for all ops); y: AM)" +msgstr "" +"50xy: Cambiar AM (x: operador del 1 al 2 (0 para todos los ops); y: AM)" + +#: src/engine/sysDef.cpp:562 +msgid "" +"51xy: Set sustain level (x: operator from 1 to 2 (0 for all ops); y: sustain)" +msgstr "" +"51xy: Cambiar nivel de sostenido (x: operador del 1 al 2 (0 para todos los " +"ops); y: sostenido)" + +#: src/engine/sysDef.cpp:563 +msgid "52xy: Set release (x: operator from 1 to 2 (0 for all ops); y: release)" +msgstr "" +"52xy: Ajustar lanzamiento (x: operador del 1 al 2 (0 para todos los ops); y: " +"lanzamiento)" + +#: src/engine/sysDef.cpp:564 +msgid "53xy: Set vibrato (x: operator from 1 to 2 (0 for all ops); y: enabled)" +msgstr "" +"53xy: Ajustar vibrato (x: operador del 1 al 2 (0 para todos los ops); y: " +"activado)" + +#: src/engine/sysDef.cpp:565 +msgid "" +"54xy: Set envelope scale (x: operator from 1 to 2 (0 for all ops); y: scale " +"from 0 to 3)" +msgstr "" +"54xy: Ajustar escala del envelope (x: operador del 1 al 2 (0 para todos los " +"ops); y: escala del 0 al 3)" + +#: src/engine/sysDef.cpp:566 +msgid "" +"55xy: Set envelope sustain (x: operator from 1 to 2 (0 for all ops); y: " +"enabled)" +msgstr "" +"55xy: Ajustar sostenido del envelope (x: operador del 1 al 2 (0 para todos " +"los ops); y: activado)" + +#: src/engine/sysDef.cpp:567 src/engine/sysDef.cpp:594 +#: src/engine/sysDef.cpp:662 +msgid "56xx: Set decay of all operators (0 to F)" +msgstr "56xx: Cambiar caída de todos los operadores (0 a F)" + +#: src/engine/sysDef.cpp:568 src/engine/sysDef.cpp:595 +#: src/engine/sysDef.cpp:663 +msgid "57xx: Set decay of operator 1 (0 to F)" +msgstr "57xx: Cambiar caída del operador 1 (0 a F)" + +#: src/engine/sysDef.cpp:569 src/engine/sysDef.cpp:596 +#: src/engine/sysDef.cpp:664 +msgid "58xx: Set decay of operator 2 (0 to F)" +msgstr "58xx: Cambiar caída del operador 2 (0 a F)" + +#: src/engine/sysDef.cpp:570 +msgid "" +"5Bxy: Set whether key will scale envelope (x: operator from 1 to 2 (0 for " +"all ops); y: enabled)" +msgstr "" +"5Bxy: Ajustar si la tecla escalará el envelope (x: operador del 1 al 2 (0 " +"para todos los ops); y: activado)" + +#: src/engine/sysDef.cpp:574 +msgid "10xx: Set global AM depth (0: 1dB, 1: 4.8dB)" +msgstr "10xx: Cambiar profundidad del AM global (0: 1dB, 1: 4.8dB)" + +#: src/engine/sysDef.cpp:578 src/engine/sysDef.cpp:633 +msgid "14xx: Set level of operator 3 (0 highest, 3F lowest)" +msgstr "14xx: Cambiar nivel del operador 3 (0 más alto, 3F más bajo)" + +#: src/engine/sysDef.cpp:579 src/engine/sysDef.cpp:634 +msgid "15xx: Set level of operator 4 (0 highest, 3F lowest)" +msgstr "15xx: Cambiar nivel del operador 4 (0 más alto, 3F más bajo)" + +#: src/engine/sysDef.cpp:581 +msgid "17xx: Set global vibrato depth (0: normal, 1: double)" +msgstr "17xx: Cambiar profundidad del vibrato global (0: normal, 1: doble)" + +#: src/engine/sysDef.cpp:585 src/engine/sysDef.cpp:640 +msgid "1Cxx: Set attack of operator 3 (0 to F)" +msgstr "1Cxx: Cambiar ataque del operador 3 (0 a F)" + +#: src/engine/sysDef.cpp:586 src/engine/sysDef.cpp:641 +msgid "1Dxx: Set attack of operator 4 (0 to F)" +msgstr "1Dxx: Cambiar ataque del operador 4 (0 a F)" + +#: src/engine/sysDef.cpp:587 +msgid "" +"2Axy: Set waveform (x: operator from 1 to 4 (0 for all ops); y: waveform " +"from 0 to 3 in OPL2 and 0 to 7 in OPL3)" +msgstr "" +"2Axy: Cambiar onda (x: operador del 1 al 4 (0 para todos los ops); y: onda " +"del 0 al 3 en OPL2 y del 0 al 7 en OPL3)" + +#: src/engine/sysDef.cpp:591 src/engine/sysDef.cpp:659 +msgid "53xy: Set vibrato (x: operator from 1 to 4 (0 for all ops); y: enabled)" +msgstr "" +"53xy: Ajustar vibrato (x: operador del 1 al 4 (0 para todos los ops); y: " +"activado)" + +#: src/engine/sysDef.cpp:593 src/engine/sysDef.cpp:661 +msgid "" +"55xy: Set envelope sustain (x: operator from 1 to 4 (0 for all ops); y: " +"enabled)" +msgstr "" +"55xy: Ajustar sostenido del envelope (x: operador del 1 al 4 (0 para todos " +"los ops); y: activado)" + +#: src/engine/sysDef.cpp:597 src/engine/sysDef.cpp:665 +msgid "59xx: Set decay of operator 3 (0 to F)" +msgstr "59xx: Cambiar caída del operador 3 (0 a F)" + +#: src/engine/sysDef.cpp:598 src/engine/sysDef.cpp:666 +msgid "5Axx: Set decay of operator 4 (0 to F)" +msgstr "5Axx: Cambiar caída del operador 4 (0 a F)" + +#: src/engine/sysDef.cpp:599 src/engine/sysDef.cpp:667 +msgid "" +"5Bxy: Set whether key will scale envelope (x: operator from 1 to 4 (0 for " +"all ops); y: enabled)" +msgstr "" +"5Bxy: Ajustar si la tecla escalará el envelope (x: operador del 1 al 4 (0 " +"para todos los ops); y: activado)" + +#: src/engine/sysDef.cpp:603 src/engine/sysDef.cpp:680 +msgid "" +"10xx: Set waveform (bit 0: triangle; bit 1: saw; bit 2: pulse; bit 3: noise)" +msgstr "" +"10xx: Cambiar onda (bit 0: triángulo; bit 1: sierra; bit 2: pulso; bit 3: " +"ruido)" + +#: src/engine/sysDef.cpp:604 +msgid "11xx: Set coarse cutoff (not recommended; use 4xxx instead)" +msgstr "11xx: Ajustar límite duro (no recomendado; prefiere usar 4xxx)" + +#: src/engine/sysDef.cpp:605 +msgid "12xx: Set coarse pulse width (not recommended; use 3xxx instead)" +msgstr "12xx: Ajustar ancho de pulso duro (no recomendado; prefiere usar 3xxx)" + +#: src/engine/sysDef.cpp:606 +msgid "13xx: Set resonance (0 to F)" +msgstr "13xx: Ajustar resonancia (0 a F)" + +#: src/engine/sysDef.cpp:607 +msgid "" +"14xx: Set filter mode (bit 0: low pass; bit 1: band pass; bit 2: high pass)" +msgstr "" +"14xx: Cambiar modo de filtro (bit 0: paso bajo; bit 1: paso de banda; bit 2: " +"paso alto)" + +#: src/engine/sysDef.cpp:608 +msgid "15xx: Set envelope reset time" +msgstr "15xx: Cambiar tiempo de reinicio del envelope" + +#: src/engine/sysDef.cpp:609 +msgid "1Axx: Disable envelope reset for this channel (1 disables; 0 enables)" +msgstr "" +"1Axx: Desactivar reinicio del envelope en este canal (1 desactiva; 0 activa)" + +#: src/engine/sysDef.cpp:610 +msgid "1Bxy: Reset cutoff (x: on new note; y: now)" +msgstr "1Bxy: Reiniciar límite (x: en notas nuevas; y: ahora)" + +#: src/engine/sysDef.cpp:611 +msgid "1Cxy: Reset pulse width (x: on new note; y: now)" +msgstr "1Cxy: Reiniciar ancho de pulso (x: en notas nuevas; y: ahora)" + +#: src/engine/sysDef.cpp:612 +msgid "1Exy: Change other parameters (LEGACY)" +msgstr "1Exy: Cambiar otros parámetros (DEPRECADO)" + +#: src/engine/sysDef.cpp:613 +msgid "20xy: Set attack/decay (x: attack; y: decay)" +msgstr "20xy: Ajustar ataque/caída (x: ataque; y: caída)" + +#: src/engine/sysDef.cpp:614 +msgid "21xy: Set sustain/release (x: sustain; y: release)" +msgstr "21xy: Ajustar sostenido/lanzamiento (x: sostenido; y: lanzamiento)" + +#: src/engine/sysDef.cpp:616 src/engine/sysDef.cpp:688 +msgid "3xxx: Set pulse width (0 to FFF)" +msgstr "3xxx: Ajustar ancho de pulso (0 a FFF)" + +#: src/engine/sysDef.cpp:617 +msgid "4xxx: Set cutoff (0 to 7FF)" +msgstr "4xxx: Ajustar límite (0 a 7FF)" + +#: src/engine/sysDef.cpp:622 src/engine/sysDef.cpp:745 +#: src/engine/sysDef.cpp:762 src/engine/sysDef.cpp:1000 +#: src/engine/sysDef.cpp:1050 src/engine/sysDef.cpp:1268 +#: src/engine/sysDef.cpp:1320 src/engine/sysDef.cpp:1590 +#: src/engine/sysDef.cpp:1788 src/engine/sysDef.cpp:1792 +#: src/engine/sysDef.cpp:1893 src/engine/sysDef.cpp:2063 +#: src/engine/sysDef.cpp:2077 +msgid "10xx: Set waveform" +msgstr "10xx: Cambiar onda" + +#: src/engine/sysDef.cpp:626 +msgid "20xx: Set PCM frequency" +msgstr "20xx: Ajustar frecuencia PCM" + +#: src/engine/sysDef.cpp:630 +msgid "" +"10xy: Set AM depth (x: operator from 1 to 4 (0 for all ops); y: depth (0: " +"1dB, 1: 4.8dB))" +msgstr "" +"10xy: Ajustar profundidad de AM (x: operador del 1 al 4 (0 para todos los " +"ops); y: profundidad (0: 1dB, 1: 4.8dB))" + +#: src/engine/sysDef.cpp:636 +msgid "" +"17xy: Set vibrato depth (x: operator from 1 to 4 (0 for all ops); y: depth " +"(0: normal, 1: double))" +msgstr "" +"17xy: Ajustar profundidad de vibrato (x: operador del 1 al 4 (0 para todos " +"los ops); y: profundidad (0: normal, 1: doble))" + +#: src/engine/sysDef.cpp:642 +msgid "20xy: Set panning of operator 1 (x: left; y: right)" +msgstr "20xy: Ajustar balance del operador 1 (x: izquierda; y: derecha)" + +#: src/engine/sysDef.cpp:643 +msgid "21xy: Set panning of operator 2 (x: left; y: right)" +msgstr "21xy: Ajustar balance del operador 2 (x: izquierda; y: derecha)" + +#: src/engine/sysDef.cpp:644 +msgid "22xy: Set panning of operator 3 (x: left; y: right)" +msgstr "22xy: Ajustar balance del operador 3 (x: izquierda; y: derecha)" + +#: src/engine/sysDef.cpp:645 +msgid "23xy: Set panning of operator 4 (x: left; y: right)" +msgstr "23xy: Ajustar balance del operador 4 (x: izquierda; y: derecha)" + +#: src/engine/sysDef.cpp:646 +msgid "" +"24xy: Set output level register (x: operator from 1 to 4 (0 for all ops); y: " +"level from 0 to 7)" +msgstr "" +"24xy: Ajustar nivel de salida (x: operador del 1 al 4 (0 para todos los " +"ops); y: nivel del 0 al 7)" + +#: src/engine/sysDef.cpp:647 +msgid "" +"25xy: Set modulation input level (x: operator from 1 to 4 (0 for all ops); " +"y: level from 0 to 7)" +msgstr "" +"25xy: Ajustar nivel de entrada de modulación (x: operador del 1 al 4 (0 para " +"todos los ops); y: nivel del 0 al 7)" + +#: src/engine/sysDef.cpp:648 +msgid "" +"26xy: Set envelope delay (x: operator from 1 to 4 (0 for all ops); y: delay " +"from 0 to 7)" +msgstr "" +"26xy: Ajustar retraso de envelope (x: operador del 1 al 4 (0 para todos los " +"ops); y: retraso del 0 al 7)" + +#: src/engine/sysDef.cpp:649 +msgid "27xx: Set noise mode for operator 4 (x: mode from 0 to 3)" +msgstr "27xx: Cambiar modo del ruido del canal 4 (x: modo del 0 al 3)" + +#: src/engine/sysDef.cpp:651 +msgid "" +"2Fxy: Set fixed frequency block (x: operator from 1 to 4; y: octave from 0 " +"to 7)" +msgstr "" +"2Fxy: Cambiar bloque de frecuencia fija (c: operador del 1 al 4; y: octava " +"del 0 al 7)" + +#: src/engine/sysDef.cpp:652 +msgid "40xx: Set detune of operator 1 (80: center)" +msgstr "40xx: Cambiar afinamiento del operador 1 (80: centro)" + +#: src/engine/sysDef.cpp:653 +msgid "41xx: Set detune of operator 2 (80: center)" +msgstr "41xx: Cambiar afinamiento del operador 2 (80: centro)" + +#: src/engine/sysDef.cpp:654 +msgid "42xx: Set detune of operator 3 (80: center)" +msgstr "42xx: Cambiar afinamiento del operador 3 (80: centro)" + +#: src/engine/sysDef.cpp:655 +msgid "43xx: Set detune of operator 4 (80: center)" +msgstr "43xx: Cambiar afinamiento del operador 4 (80: centro)" + +#: src/engine/sysDef.cpp:670 +msgid "" +"3xyy: Set fixed frequency F-num of operator 1 (x: high 2 bits from 0 to 3; " +"y: low 8 bits of F-num)" +msgstr "" +"3xyy: Cambiar frecuencia fija op 1 (x: alto 2 bits de 0 a 3; y: bajo 8 bits " +"de F-núm)" + +#: src/engine/sysDef.cpp:671 +msgid "" +"3xyy: Set fixed frequency F-num of operator 2 (x: high 2 bits from 4 to 7; " +"y: low 8 bits of F-num)" +msgstr "" +"3xyy: Cambiar frecuencia fija op 1 (x: alto 2 bits de 0 a 3; y: bajo 8 bits " +"de F-núm)" + +#: src/engine/sysDef.cpp:672 +msgid "" +"3xyy: Set fixed frequency F-num of operator 3 (x: high 2 bits from 8 to B; " +"y: low 8 bits of F-num)" +msgstr "" +"3xyy: Cambiar frecuencia fija op 1 (x: alto 2 bits de 0 a 3; y: bajo 8 bits " +"de F-núm)" + +#: src/engine/sysDef.cpp:673 +msgid "" +"3xyy: Set fixed frequency F-num of operator 4 (x: high 2 bits from C to F; " +"y: low 8 bits of F-num)" +msgstr "No me da ganas de traducir esta porquería" + +#: src/engine/sysDef.cpp:681 +msgid "11xx: Set resonance (0 to FF)" +msgstr "11xx: Cambiar resonancia (0 a FF)" + +#: src/engine/sysDef.cpp:682 +msgid "" +"12xx: Set filter mode (bit 0: low pass; bit 1: band pass; bit 2: high pass)" +msgstr "" +"12xx: Cambiar modo de filtro (bit 0: paso bajo; bit 1: paso de banda; bit 2: " +"paso alto)" + +#: src/engine/sysDef.cpp:683 +msgid "13xx: Disable envelope reset for this channel (1 disables; 0 enables)" +msgstr "" +"13xx: Desactivar reinicio de envelope para este canal (1 desactiva; 0 activa)" + +#: src/engine/sysDef.cpp:684 +msgid "14xy: Reset cutoff (x: on new note; y: now)" +msgstr "14xy: Reiniciar corte (x: en nueva nota; y: ahora)" + +#: src/engine/sysDef.cpp:685 +msgid "15xy: Reset pulse width (x: on new note; y: now)" +msgstr "15xy: Reinicial ancho de pulso (x: en nueva nota; y: ahora)" + +#: src/engine/sysDef.cpp:686 +msgid "16xy: Change other parameters" +msgstr "16xy: Cambiar otros parámetros" + +#: src/engine/sysDef.cpp:689 src/engine/sysDef.cpp:1733 +msgid "4xxx: Set cutoff (0 to FFF)" +msgstr "4xxx: Cambiar límite (0 a FFF)" + +#: src/engine/sysDef.cpp:697 +msgid "Yamaha YMU759 (MA-2)" +msgstr "" + +#: src/engine/sysDef.cpp:698 +msgid "" +"a chip which found its way inside mobile phones in the 2000's.\n" +"as proprietary as it is, it passed away after losing to MP3 in the mobile " +"hardware battle." +msgstr "" +"un chip que estuvo presente en varios celulares de los años 2000.\n" +"fue tan cerrado y terminó falleciendo después de que el MP3 ganara la " +"batalla." + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:807 src/engine/sysDef.cpp:819 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:915 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1237 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1314 src/engine/sysDef.cpp:1356 +#: src/engine/sysDef.cpp:1396 src/engine/sysDef.cpp:1499 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1572 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1608 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1799 src/engine/sysDef.cpp:1810 +#: src/engine/sysDef.cpp:1821 src/engine/sysDef.cpp:1832 +#: src/engine/sysDef.cpp:1900 src/engine/sysDef.cpp:1910 +#: src/engine/sysDef.cpp:1920 src/engine/sysDef.cpp:1944 +#: src/engine/sysDef.cpp:1957 src/engine/sysDef.cpp:1970 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2037 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2122 +#: src/engine/sysDef.cpp:2138 src/engine/sysDef.cpp:2150 +msgid "Channel 1" +msgstr "Canal 1" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:807 src/engine/sysDef.cpp:819 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:915 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1237 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1314 src/engine/sysDef.cpp:1356 +#: src/engine/sysDef.cpp:1396 src/engine/sysDef.cpp:1499 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1572 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1608 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1799 src/engine/sysDef.cpp:1810 +#: src/engine/sysDef.cpp:1821 src/engine/sysDef.cpp:1832 +#: src/engine/sysDef.cpp:1900 src/engine/sysDef.cpp:1910 +#: src/engine/sysDef.cpp:1920 src/engine/sysDef.cpp:1944 +#: src/engine/sysDef.cpp:1957 src/engine/sysDef.cpp:1970 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2037 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2122 +#: src/engine/sysDef.cpp:2138 src/engine/sysDef.cpp:2150 +msgid "Channel 2" +msgstr "Canal 2" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:807 src/engine/sysDef.cpp:819 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1237 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1314 +#: src/engine/sysDef.cpp:1356 src/engine/sysDef.cpp:1396 +#: src/engine/sysDef.cpp:1499 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1572 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1799 src/engine/sysDef.cpp:1810 +#: src/engine/sysDef.cpp:1821 src/engine/sysDef.cpp:1832 +#: src/engine/sysDef.cpp:1910 src/engine/sysDef.cpp:1944 +#: src/engine/sysDef.cpp:1957 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2037 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +#: src/engine/sysDef.cpp:2122 src/engine/sysDef.cpp:2138 +#: src/engine/sysDef.cpp:2150 +msgid "Channel 3" +msgstr "Canal 3" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1237 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1314 +#: src/engine/sysDef.cpp:1356 src/engine/sysDef.cpp:1396 +#: src/engine/sysDef.cpp:1499 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1572 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1910 +#: src/engine/sysDef.cpp:1944 src/engine/sysDef.cpp:1957 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +#: src/engine/sysDef.cpp:2122 src/engine/sysDef.cpp:2150 +msgid "Channel 4" +msgstr "Canal 4" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1314 +#: src/engine/sysDef.cpp:1356 src/engine/sysDef.cpp:1396 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1572 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1705 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 5" +msgstr "Canal 5" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1356 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 6" +msgstr "Canal 6" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 7" +msgstr "Canal 7" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 8" +msgstr "Canal 8" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 9" +msgstr "Canal 9" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 10" +msgstr "Canal 10" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 11" +msgstr "Canal 11" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 12" +msgstr "Canal 12" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 13" +msgstr "Canal 13" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 14" +msgstr "Canal 14" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 15" +msgstr "Canal 15" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 16" +msgstr "Canal 16" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:700 +#: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1767 src/engine/sysDef.cpp:1888 +#: src/engine/sysDef.cpp:1944 src/engine/sysDef.cpp:1945 +#: src/gui/settings.cpp:4094 +msgid "PCM" +msgstr "" + +#: src/engine/sysDef.cpp:706 +msgid "Sega Genesis/Mega Drive" +msgstr "" + +#: src/engine/sysDef.cpp:712 +msgid "Sega Genesis Extended Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:718 src/gui/sysConf.cpp:158 +msgid "TI SN76489" +msgstr "" + +#: src/engine/sysDef.cpp:719 +msgid "" +"a square/noise sound chip found on the Sega Master System, ColecoVision, " +"Tandy, TI's own 99/4A and a few other places." +msgstr "" +"un chip de pulso/ruido encontrado en la Sega Master System, la ColecoVision, " +"la Tandy, el 99/4A del propio TI y otros lugares." + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 +msgid "Square 1" +msgstr "Pulso 1" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 +msgid "Square 2" +msgstr "Pulso 2" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 +msgid "Square 3" +msgstr "Pulso 3" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:739 +#: src/engine/sysDef.cpp:773 src/engine/sysDef.cpp:955 +#: src/engine/sysDef.cpp:1314 src/engine/sysDef.cpp:1874 +#: src/engine/sysDef.cpp:1920 src/engine/sysDef.cpp:2037 +#: src/engine/sysDef.cpp:2100 src/gui/settings.cpp:4093 +#: src/gui/insEdit.cpp:6978 src/gui/insEdit.cpp:7129 src/gui/insEdit.cpp:7223 +#: src/gui/insEdit.cpp:7315 +msgid "Noise" +msgstr "Ruido" + +#: src/engine/sysDef.cpp:726 +msgid "20xy: Set noise mode (x: preset freq/ch3 freq; y: thin pulse/noise)" +msgstr "" +"20xy: Cambiar modo de ruido (x: frecuencia preestablecida/canal 3; y: pulso " +"delgado/ruido)" + +#: src/engine/sysDef.cpp:731 +msgid "Sega Master System + FM Expansion" +msgstr "Sega Master System + Expansión FM" + +#: src/engine/sysDef.cpp:737 src/gui/settings.cpp:4025 +msgid "Game Boy" +msgstr "" + +#: src/engine/sysDef.cpp:738 +msgid "the most popular portable game console of the era." +msgstr "la consola portátil más popular de su era." + +#: src/engine/sysDef.cpp:739 src/engine/sysDef.cpp:773 +#: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:2100 +msgid "Pulse 1" +msgstr "Pulso 1" + +#: src/engine/sysDef.cpp:739 src/engine/sysDef.cpp:773 +#: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:2100 +msgid "Pulse 2" +msgstr "Pulso 2" + +#: src/engine/sysDef.cpp:739 src/gui/settings.cpp:3930 +#: src/gui/guiConst.cpp:1395 src/gui/insEdit.cpp:6652 +msgid "Wavetable" +msgstr "Onda" + +#: src/engine/sysDef.cpp:746 +msgid "11xx: Set noise length (0: long; 1: short)" +msgstr "11xx: Ajustar longitud de ruido (0: largo; 1: corto)" + +#: src/engine/sysDef.cpp:747 +msgid "12xx: Set duty cycle (0 to 3)" +msgstr "12xx: Cambiar ancho de pulso (0 a 3)" + +#: src/engine/sysDef.cpp:748 +msgid "13xy: Setup sweep (x: time; y: shift)" +msgstr "13xy: Ajustar barredura (x: tiempo; y; cambio de turno)" + +#: src/engine/sysDef.cpp:749 +msgid "14xx: Set sweep direction (0: up; 1: down)" +msgstr "14xx: Cambiar en qué dirección se barre (0: arriba; 1: abajo)" + +#: src/engine/sysDef.cpp:754 +msgid "PC Engine/TurboGrafx-16" +msgstr "" + +#: src/engine/sysDef.cpp:755 +msgid "an '80s game console with a wavetable sound chip, popular in Japan." +msgstr "una consola de los 80 con un chip de ondas, popular en Japón." + +#: src/engine/sysDef.cpp:763 src/engine/sysDef.cpp:1001 +#: src/engine/sysDef.cpp:1793 +msgid "11xx: Toggle noise mode" +msgstr "11xx: Activar modo de ruido" + +#: src/engine/sysDef.cpp:764 +msgid "12xx: Setup LFO (0: disabled; 1: 1x depth; 2: 16x depth; 3: 256x depth)" +msgstr "" +"12xx: Ajustar LFO (0: desactivado; 1: profundidad 1; 2: profundidad 16; 3: " +"profundidad 256)" + +#: src/engine/sysDef.cpp:765 +msgid "13xx: Set LFO speed" +msgstr "13xx: Cambiar velocidad del LFO" + +#: src/engine/sysDef.cpp:771 +msgid "NES (Ricoh 2A03)" +msgstr "" + +#: src/engine/sysDef.cpp:772 +msgid "" +"also known as Famicom in Japan, it's the most well-known game console of the " +"'80s." +msgstr "" +"tambien conocida como la 'Famicom' en Japón, es la consola de videojuegos " +"más conocida de los 80s." + +#: src/engine/sysDef.cpp:773 src/gui/waveEdit.cpp:31 src/gui/waveEdit.cpp:217 +#: src/gui/insEdit.cpp:200 src/gui/insEdit.cpp:324 src/gui/insEdit.cpp:658 +msgid "Triangle" +msgstr "Triángulo" + +#: src/engine/sysDef.cpp:773 src/engine/sysDef.cpp:2100 +#: src/gui/insEdit.cpp:2629 +msgid "DPCM" +msgstr "" + +#: src/engine/sysDef.cpp:779 src/engine/sysDef.cpp:2106 +msgid "11xx: Write to delta modulation counter (0 to 7F)" +msgstr "11xx: Escribir al contador de modulación delta (de 0 a 7F)" + +#: src/engine/sysDef.cpp:780 src/engine/sysDef.cpp:1068 +msgid "12xx: Set duty cycle/noise mode (pulse: 0 to 3; noise: 0 or 1)" +msgstr "" +"12xx: Cambiar modo de ruido/ancho de pulso (pulso: 0 a 3; ruido: 0 o 1)" + +#: src/engine/sysDef.cpp:781 src/engine/sysDef.cpp:2108 +msgid "13xy: Sweep up (x: time; y: shift)" +msgstr "13xy: Barrido hacia arriba (x: tiempo; y: cambio)" + +#: src/engine/sysDef.cpp:782 src/engine/sysDef.cpp:2109 +msgid "14xy: Sweep down (x: time; y: shift)" +msgstr "13xy: Barrido hacia abajo (x: tiempo; y: cambio)" + +#: src/engine/sysDef.cpp:783 src/engine/sysDef.cpp:2110 +msgid "" +"15xx: Set envelope mode (0: envelope, 1: length, 2: looping, 3: constant)" +msgstr "" +"15xx: Ajustar modo de envelope (0: normal, 1: longitud, 2: en bucle, 3: " +"constante)" + +#: src/engine/sysDef.cpp:784 src/engine/sysDef.cpp:2111 +msgid "16xx: Set length counter (refer to manual for a list of values)" +msgstr "" +"16xx: Sobreescribir contador de longitud (refiérase al manual para una lista " +"de valores)" + +#: src/engine/sysDef.cpp:785 src/engine/sysDef.cpp:2112 +msgid "17xx: Set frame counter mode (0: 4-step, 1: 5-step)" +msgstr "17xx: Cambiar modo de contador de frames (0: 4 pasos, 1: 5 pasos)" + +#: src/engine/sysDef.cpp:786 src/engine/sysDef.cpp:2113 +msgid "18xx: Select PCM/DPCM mode (0: PCM; 1: DPCM)" +msgstr "18xx: Cambiar entre PCM y DPCM (0: PCM; 1: DPCM)" + +#: src/engine/sysDef.cpp:787 src/engine/sysDef.cpp:2114 +msgid "19xx: Set triangle linear counter (0 to 7F; 80 and higher halt)" +msgstr "" +"19xx: Sobreescribir contador lineal del triángulo (va de 0 a 7F; 80 y " +"mayores lo detienen)" + +#: src/engine/sysDef.cpp:788 src/engine/sysDef.cpp:2115 +msgid "20xx: Set DPCM frequency (0 to F)" +msgstr "20xx: Cambiar frecuencia del DPCM (de 0 a F)" + +#: src/engine/sysDef.cpp:793 +msgid "NES + Konami VRC7" +msgstr "" + +#: src/engine/sysDef.cpp:799 +msgid "Famicom Disk System" +msgstr "" + +#: src/engine/sysDef.cpp:805 +msgid "Commodore 64 (SID 6581)" +msgstr "" + +#: src/engine/sysDef.cpp:806 +msgid "" +"this computer is powered by the SID chip, which had synthesizer features " +"like a filter and ADSR." +msgstr "" +"esta computadora es potenciada por el chip SID, que tiene cosas de " +"sintetizador como filtro y ADSR." + +#: src/engine/sysDef.cpp:817 +msgid "Commodore 64 (SID 8580)" +msgstr "" + +#: src/engine/sysDef.cpp:818 +msgid "" +"this computer is powered by the SID chip, which had synthesizer features " +"like a filter and ADSR.\n" +"this is the newer revision of the chip." +msgstr "la misma cosa pero es una revisión nueva del chip." + +#: src/engine/sysDef.cpp:829 +msgid "DefleCade" +msgstr "" + +#: src/engine/sysDef.cpp:835 +msgid "Neo Geo CD" +msgstr "" + +#: src/engine/sysDef.cpp:836 +msgid "" +"like Neo Geo, but lacking the ADPCM-B channel since they couldn't connect " +"the pins." +msgstr "" +"similar a Neo Geo pero sin el canal ADPCM-B ya que no pudieron conectar los " +"pines." + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1173 +#: src/engine/sysDef.cpp:1185 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1443 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +#: src/engine/sysDef.cpp:2006 +msgid "FM 1" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:891 +#: src/engine/sysDef.cpp:903 src/engine/sysDef.cpp:1032 +#: src/engine/sysDef.cpp:1097 src/engine/sysDef.cpp:1109 +#: src/engine/sysDef.cpp:1122 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1546 +#: src/engine/sysDef.cpp:1559 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:1693 src/engine/sysDef.cpp:1849 +#: src/engine/sysDef.cpp:1861 src/engine/sysDef.cpp:2006 +msgid "FM 2" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1173 +#: src/engine/sysDef.cpp:1185 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1443 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:2006 +msgid "FM 3" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1546 +#: src/engine/sysDef.cpp:1559 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:1693 src/engine/sysDef.cpp:1849 +#: src/engine/sysDef.cpp:1861 src/engine/sysDef.cpp:2006 +msgid "FM 4" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:862 src/engine/sysDef.cpp:927 +#: src/engine/sysDef.cpp:943 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "PSG 1" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:862 src/engine/sysDef.cpp:927 +#: src/engine/sysDef.cpp:943 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "PSG 2" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:862 src/engine/sysDef.cpp:927 +#: src/engine/sysDef.cpp:943 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "PSG 3" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 1" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 2" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 3" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 4" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 5" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 6" +msgstr "" + +#: src/engine/sysDef.cpp:847 +msgid "Neo Geo CD Extended Channel 2" +msgstr "Neo Geo CD Canal 2 Extendido" + +#: src/engine/sysDef.cpp:848 +msgid "" +"like Neo Geo, but lacking the ADPCM-B channel since they couldn't connect " +"the pins.\n" +"this one is in Extended Channel mode, which turns the second FM channel into " +"four operators with independent notes/frequencies." +msgstr "" +"similar a Neo Geo pero sin el canal ADPCM-B ya que no pudieron conectar los " +"pines.\n" +"este está en modo de Canal Extendido, que transforma al segundo canal FM en " +"cuatro operadores con frecuencias/notas independientes." + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP1" +msgstr "" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP2" +msgstr "" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP3" +msgstr "" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP4" +msgstr "" + +#: src/engine/sysDef.cpp:860 src/gui/sysConf.cpp:913 +msgid "AY-3-8910" +msgstr "" + +#: src/engine/sysDef.cpp:861 +msgid "" +"this chip is everywhere! ZX Spectrum, MSX, Amstrad CPC, Intellivision, " +"Vectrex...\n" +"the discovery of envelope bass helped it beat the SN76489 with ease." +msgstr "" +"este chip está por todas partes. ZX Spectrum, MSX, Amstrad CPC, " +"Intellivision, Vectrex...\n" +"el descubrimiento del bajo envelope lo ayudó a ganarle al SN76489." + +#: src/engine/sysDef.cpp:872 +msgid "Amiga" +msgstr "" + +#: src/engine/sysDef.cpp:873 +msgid "" +"a computer from the '80s with full sampling capabilities, giving it a sound " +"ahead of its time." +msgstr "" +"computador de los 80 con abilidades de sampleo que permitieron darle un " +"sonido más allá de su época." + +#: src/engine/sysDef.cpp:881 +msgid "10xx: Toggle filter (0 disables; 1 enables)" +msgstr "10xx: Togglear el filtro (0 desactiva; 1 activa)" + +#: src/engine/sysDef.cpp:882 +msgid "11xx: Toggle AM with next channel" +msgstr "11xx: Togglear AM con siguiente canal" + +#: src/engine/sysDef.cpp:883 +msgid "12xx: Toggle period modulation with next channel" +msgstr "12xx: Togglear modulación de periodo con siguiente canal" + +#: src/engine/sysDef.cpp:884 +msgid "13xx: Set waveform" +msgstr "13xx: Cambiar onda" + +#: src/engine/sysDef.cpp:889 +msgid "Yamaha YM2151 (OPM)" +msgstr "" + +#: src/engine/sysDef.cpp:890 +msgid "" +"this was Yamaha's first integrated FM chip.\n" +"it was used in several synthesizers, computers and arcade boards." +msgstr "" +"este era el primer chip integrado FM de Yamaha.\n" +"tuvo uso en varios sintetizadores, computadores y placas de arcade." + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1279 src/engine/sysDef.cpp:1332 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1370 +#: src/engine/sysDef.cpp:1383 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +#: src/engine/sysDef.cpp:2006 +msgid "FM 5" +msgstr "" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:2006 +msgid "FM 6" +msgstr "" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:1032 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1279 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:2006 +msgid "FM 7" +msgstr "" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:1032 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:2006 +msgid "FM 8" +msgstr "" + +#: src/engine/sysDef.cpp:901 +msgid "Yamaha YM2612 (OPN2)" +msgstr "" + +#: src/engine/sysDef.cpp:902 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer)." +msgstr "" +"este chip es conocido principalmente por ser usado en la Sega Genesis (pero " +"también fue usado en la computadora FM Towns)." + +#: src/engine/sysDef.cpp:913 +msgid "Atari TIA" +msgstr "" + +#: src/engine/sysDef.cpp:914 +msgid "" +"it's a challenge to make music on this chip which barely has musical " +"capabilities..." +msgstr "es un reto hacer música en este chip sin capacidad musical..." + +#: src/engine/sysDef.cpp:925 +msgid "Philips SAA1099" +msgstr "" + +#: src/engine/sysDef.cpp:926 +msgid "" +"supposedly an upgrade from the AY-3-8910, this was present on the Creative " +"Music System (Game Blaster) and SAM Coupé." +msgstr "" +"supuestamente una mejora sobre el AY-3-8910, estuvo presente en la Creative " +"Music System (la Game Blaster) y la SAM Coupé." + +#: src/engine/sysDef.cpp:927 +msgid "PSG 4" +msgstr "" + +#: src/engine/sysDef.cpp:927 +msgid "PSG 5" +msgstr "" + +#: src/engine/sysDef.cpp:927 +msgid "PSG 6" +msgstr "" + +#: src/engine/sysDef.cpp:934 +msgid "10xy: Set channel mode (x: noise; y: tone)" +msgstr "10xy: Cambiar modo del canal (x: ruido; y: tono)" + +#: src/engine/sysDef.cpp:935 +msgid "11xx: Set noise frequency" +msgstr "11xx: Cambiar frecuencia de ruido" + +#: src/engine/sysDef.cpp:936 +msgid "12xx: Setup envelope (refer to docs for more information)" +msgstr "12xx: Preparar envelope (lee el manual para más información)" + +#: src/engine/sysDef.cpp:941 +msgid "Microchip AY8930" +msgstr "" + +#: src/engine/sysDef.cpp:942 +msgid "" +"an improved version of the AY-3-8910 with a bigger frequency range, duty " +"cycles, configurable noise and per-channel envelopes!" +msgstr "" +"una versión mejorada de la AY-3-8910 con un rango de frecuencia mayor, ancho " +"de pulso, ruido configurable y un envelope por canal." + +#: src/engine/sysDef.cpp:953 +msgid "Commodore VIC-20" +msgstr "" + +#: src/engine/sysDef.cpp:954 +msgid "" +"Commodore's successor to the PET.\n" +"its square wave channels are more than just square..." +msgstr "" +"el sucesor de Commodore a la PET.\n" +"sus canales de pulso son mucho más que pulso..." + +#: src/engine/sysDef.cpp:955 src/gui/settings.cpp:136 src/gui/settings.cpp:206 +#: src/gui/settings.cpp:3970 +msgid "Low" +msgstr "Bajo" + +#: src/engine/sysDef.cpp:955 +msgid "Mid" +msgstr "Medio" + +#: src/engine/sysDef.cpp:955 src/gui/settings.cpp:135 src/gui/settings.cpp:208 +#: src/gui/settings.cpp:3971 +msgid "High" +msgstr "Alto" + +#: src/engine/sysDef.cpp:964 +msgid "Commodore PET" +msgstr "" + +#: src/engine/sysDef.cpp:965 +msgid "" +"one channel of 1-bit wavetable which is better (and worse) than the PC " +"Speaker." +msgstr "" +"un canal de wavetable de 1 bit que es mejor (y peor) que la PC Speaker." + +#: src/engine/sysDef.cpp:966 src/engine/sysDef.cpp:1262 +#: src/engine/sysDef.cpp:2100 src/gui/editControls.cpp:433 +#: src/gui/settings.cpp:4017 src/gui/settings.cpp:4095 +msgid "Wave" +msgstr "Onda" + +#: src/engine/sysDef.cpp:975 src/gui/settings.cpp:4052 +msgid "SNES" +msgstr "" + +#: src/engine/sysDef.cpp:976 +msgid "FM? nah... samples! Nintendo's answer to Sega." +msgstr "FM? nah... samples! la respuesta de Nintendo a Sega." + +#: src/engine/sysDef.cpp:983 +msgid "18xx: Enable echo buffer" +msgstr "18xx: Activar búfer de eco" + +#: src/engine/sysDef.cpp:984 +msgid "19xx: Set echo delay (0 to F)" +msgstr "19xx: Ajustar tiempo del eco (0 a F)" + +#: src/engine/sysDef.cpp:985 +msgid "1Axx: Set left echo volume" +msgstr "1Axx: Ajustar volumen del eco en la izquierda" + +#: src/engine/sysDef.cpp:986 +msgid "1Bxx: Set right echo volume" +msgstr "1Bxx: Ajustar volumen del eco en la derecha" + +#: src/engine/sysDef.cpp:987 +msgid "1Cxx: Set echo feedback" +msgstr "1Cxx: Ajustar retroalimentación del eco" + +#: src/engine/sysDef.cpp:988 +msgid "1Exx: Set dry output volume (left)" +msgstr "1Exx: Ajustar volumen de salida seca en la izquierda" + +#: src/engine/sysDef.cpp:989 +msgid "1Fxx: Set dry output volume (right)" +msgstr "1Fxx: Ajustar volumen de salida seca en la derecha" + +#: src/engine/sysDef.cpp:990 +msgid "30xx: Set echo filter coefficient 0" +msgstr "30xx: Ajustar coeficiente 0 del filtro del eco" + +#: src/engine/sysDef.cpp:991 +msgid "31xx: Set echo filter coefficient 1" +msgstr "31xx: Ajustar coeficiente 1 del filtro del eco" + +#: src/engine/sysDef.cpp:992 +msgid "32xx: Set echo filter coefficient 2" +msgstr "32xx: Ajustar coeficiente 2 del filtro del eco" + +#: src/engine/sysDef.cpp:993 +msgid "33xx: Set echo filter coefficient 3" +msgstr "33xx: Ajustar coeficiente 3 del filtro del eco" + +#: src/engine/sysDef.cpp:994 +msgid "34xx: Set echo filter coefficient 4" +msgstr "34xx: Ajustar coeficiente 4 del filtro del eco" + +#: src/engine/sysDef.cpp:995 +msgid "35xx: Set echo filter coefficient 5" +msgstr "35xx: Ajustar coeficiente 5 del filtro del eco" + +#: src/engine/sysDef.cpp:996 +msgid "36xx: Set echo filter coefficient 6" +msgstr "36xx: Ajustar coeficiente 6 del filtro del eco" + +#: src/engine/sysDef.cpp:997 +msgid "37xx: Set echo filter coefficient 7" +msgstr "37xx: Ajustar coeficiente 7 del filtro del eco" + +#: src/engine/sysDef.cpp:1002 +msgid "12xx: Toggle echo on this channel" +msgstr "12xx: Togglear eco en este canal" + +#: src/engine/sysDef.cpp:1003 +msgid "13xx: Toggle pitch modulation" +msgstr "13xx: Togglear modulación de lanzar el balón" + +#: src/engine/sysDef.cpp:1004 +msgid "14xy: Toggle invert (x: left; y: right)" +msgstr "14xy: Togglear invertir (x: izquierda; y: derecha)" + +#: src/engine/sysDef.cpp:1005 +msgid "" +"15xx: Set envelope mode (0: ADSR, 1: gain/direct, 2: dec, 3: exp, 4: inc, 5: " +"bent)" +msgstr "" +"14xx: Cambiar modo de envelope (0: ADSR; 1: ganancia/directo, 2: bajar, 3: " +"exponencial, 4: aumentar, 5: doblada)" + +#: src/engine/sysDef.cpp:1006 +msgid "16xx: Set gain (00 to 7F if direct; 00 to 1F otherwise)" +msgstr "16xx: Ajustar ganancia (00 a 7F si directo; si no 00 a 1F)" + +#: src/engine/sysDef.cpp:1007 +msgid "1Dxx: Set noise frequency (00 to 1F)" +msgstr "1Dxx: Ajustar frecuencia del ruido (00 a 1F)" + +#: src/engine/sysDef.cpp:1008 +msgid "20xx: Set attack (0 to F)" +msgstr "20xx: Cambiar ataque (0 a F)" + +#: src/engine/sysDef.cpp:1009 +msgid "21xx: Set decay (0 to 7)" +msgstr "21xx: Cambiar caída (0 a 7)" + +#: src/engine/sysDef.cpp:1010 +msgid "22xx: Set sustain (0 to 7)" +msgstr "22xx: Cambiar sostenido (0 a 7)" + +#: src/engine/sysDef.cpp:1011 +msgid "23xx: Set release (00 to 1F)" +msgstr "23xx: Cambiar lanzamiento (00 a 1F)" + +#: src/engine/sysDef.cpp:1016 +msgid "Konami VRC6" +msgstr "" + +#: src/engine/sysDef.cpp:1017 +msgid "an expansion chip for the Famicom, featuring a quirky sawtooth channel." +msgstr "" +"un chip de expansión para la Famicom, con un canal de sierra algo rarito." + +#: src/engine/sysDef.cpp:1018 +msgid "VRC6 1" +msgstr "" + +#: src/engine/sysDef.cpp:1018 +msgid "VRC6 2" +msgstr "" + +#: src/engine/sysDef.cpp:1018 +msgid "VRC6 Saw" +msgstr "Sierra VRC6" + +#: src/engine/sysDef.cpp:1024 src/engine/sysDef.cpp:2092 +msgid "12xx: Set duty cycle (pulse: 0 to 7)" +msgstr "12xx: Cambiar ancho de pulso (pulso: de 0 a 7)" + +#: src/engine/sysDef.cpp:1030 +msgid "Yamaha YM2413 (OPLL)" +msgstr "" + +#: src/engine/sysDef.cpp:1031 +msgid "" +"cost-reduced version of the OPL with 16 patches and only one of them is user-" +"configurable." +msgstr "" +"versión reducida en costo del OPL con 16 sonidos. uno de ellos es ajustable " +"por el usuario." + +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1173 +#: src/engine/sysDef.cpp:1185 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:2006 +msgid "FM 9" +msgstr "" + +#: src/engine/sysDef.cpp:1042 +msgid "Famicom Disk System (chip)" +msgstr "" + +#: src/engine/sysDef.cpp:1043 +msgid "a disk drive for the Famicom which also contains one wavetable channel." +msgstr "" +"una unidad de disco para la Famicom que también tiene un canal de ondas." + +#: src/engine/sysDef.cpp:1044 src/gui/settings.cpp:4039 +msgid "FDS" +msgstr "" + +#: src/engine/sysDef.cpp:1051 +msgid "11xx: Set modulation depth" +msgstr "11xx: Ajustar profundidad de modulación" + +#: src/engine/sysDef.cpp:1052 +msgid "12xy: Set modulation speed high byte (x: enable; y: value)" +msgstr "" +"12xy: Ajustar byte superior de velocidad de modulación (x: activar; y: valor)" + +#: src/engine/sysDef.cpp:1053 +msgid "13xx: Set modulation speed low byte" +msgstr "13xx: Ajustar byte inferior de velocidad de modulación" + +#: src/engine/sysDef.cpp:1054 +msgid "14xx: Set modulator position" +msgstr "14xx: Ajustar posición del modulador" + +#: src/engine/sysDef.cpp:1055 +msgid "15xx: Set modulator table to waveform" +msgstr "15xx: Cargar una onda en la tabla de modulación" + +#: src/engine/sysDef.cpp:1060 +msgid "MMC5" +msgstr "" + +#: src/engine/sysDef.cpp:1061 +msgid "" +"an expansion chip for the Famicom, featuring a little-known PCM channel." +msgstr "" +"un chip de expansión para la Famicom, con un canal de PCM poco conocido." + +#: src/engine/sysDef.cpp:1073 src/gui/settings.cpp:4041 +msgid "Namco 163" +msgstr "" + +#: src/engine/sysDef.cpp:1074 +msgid "an expansion chip for the Famicom, with full wavetable." +msgstr "un chip de expansión para la Famicom, con ondas." + +#: src/engine/sysDef.cpp:1081 +msgid "18xx: Change channel limits (0 to 7, x + 1)" +msgstr "18xx: Cambiar número de canales activos (0 a 7, x + 1)" + +#: src/engine/sysDef.cpp:1082 +msgid "20xx: Load a waveform into memory" +msgstr "20xx: Cargar onda en memoria" + +#: src/engine/sysDef.cpp:1083 +msgid "21xx: Set position for wave load" +msgstr "21xx: Ajustar posición para la carga de onda" + +#: src/engine/sysDef.cpp:1086 +msgid "10xx: Select waveform" +msgstr "10xx: Cambiar onda" + +#: src/engine/sysDef.cpp:1087 +msgid "11xx: Set waveform position in RAM" +msgstr "11xx: Cambiar posición de onda en RAM" + +#: src/engine/sysDef.cpp:1088 +msgid "12xx: Set waveform length in RAM (04 to FC in steps of 4)" +msgstr "12xx: Cambiar longitud de onda en RAM (04 a FC de 4 en 4)" + +#: src/engine/sysDef.cpp:1089 +msgid "15xx: Set waveform load position" +msgstr "15xx: Cambiar posición en la que vamos a cargar la onda" + +#: src/engine/sysDef.cpp:1090 +msgid "16xx: Set waveform load length (04 to FC in steps of 4)" +msgstr "16xx: Cambiar longitud de onda a cargar (04 a FC de 4 en 4)" + +#: src/engine/sysDef.cpp:1095 +msgid "Yamaha YM2203 (OPN)" +msgstr "" + +#: src/engine/sysDef.cpp:1096 +msgid "" +"cost-reduced version of the OPM with a different register layout and no " +"stereo...\n" +"...but it has a built-in AY-3-8910! (actually an YM2149)" +msgstr "" +"versión reducida en costo del OPM con registros en otras posiciones y sin " +"estéreo...\n" +"...pero tiene un AY-3-8910 integrado (que actualmente es un YM2149)" + +#: src/engine/sysDef.cpp:1107 +msgid "Yamaha YM2203 (OPN) Extended Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:1108 +msgid "" +"cost-reduced version of the OPM with a different register layout and no " +"stereo...\n" +"...but it has a built-in AY-3-8910! (actually an YM2149)\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies" +msgstr "" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP1" +msgstr "" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP2" +msgstr "" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP3" +msgstr "" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP4" +msgstr "" + +#: src/engine/sysDef.cpp:1120 +msgid "Yamaha YM2203 (OPN) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1121 +msgid "" +"cost-reduced version of the OPM with a different register layout and no " +"stereo...\n" +"...but it has a built-in AY-3-8910! (actually an YM2149)\n" +"CSM blah blah" +msgstr "" + +#: src/engine/sysDef.cpp:1122 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1383 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1559 src/engine/sysDef.cpp:1861 +msgid "CSM Timer" +msgstr "Contador CSM" + +#: src/engine/sysDef.cpp:1133 +msgid "Yamaha YM2608 (OPNA)" +msgstr "" + +#: src/engine/sysDef.cpp:1134 +msgid "" +"OPN but twice the FM channels, stereo makes a come-back and has rhythm and " +"ADPCM channels." +msgstr "" +"OPN con dos veces los canales FM, modo estéreo, canal ADPCM y canales de " +"percusión." + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1481 +#: src/gui/insEdit.cpp:3302 src/gui/insEdit.cpp:3624 +msgid "Kick" +msgstr "Patear" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:210 src/gui/insEdit.cpp:218 +msgid "Snare" +msgstr "Lazo" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:212 src/gui/insEdit.cpp:220 +#: src/gui/insEdit.cpp:1909 src/gui/insEdit.cpp:2014 +msgid "Top" +msgstr "Superior" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:213 src/gui/insEdit.cpp:219 +msgid "HiHat" +msgstr "Sombrero" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:211 +msgid "Tom" +msgstr "Tom" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 +msgid "Rim" +msgstr "Aro" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:1693 +msgid "ADPCM" +msgstr "" + +#: src/engine/sysDef.cpp:1145 +msgid "Yamaha YM2608 (OPNA) Extended Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:1146 +msgid "" +"OPN but twice the FM channels, stereo makes a come-back and has rhythm and " +"ADPCM channels.\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies" +msgstr "" + +#: src/engine/sysDef.cpp:1158 +msgid "Yamaha YM2608 (OPNA) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1159 +msgid "" +"OPN but twice the FM channels, stereo makes a come-back and has rhythm and " +"ADPCM channels.\n" +"CSM blah blah" +msgstr "" + +#: src/engine/sysDef.cpp:1171 +msgid "Yamaha YM3526 (OPL)" +msgstr "" + +#: src/engine/sysDef.cpp:1172 +msgid "" +"OPN, but what if you only had two operators, no stereo, no detune and a " +"lower ADSR parameter range?" +msgstr "" +"OPN pero qué tal si sólo hay dos operadores, sin estéreo, sin afinamiento y " +"con menos rango de parámetros ADSR" + +#: src/engine/sysDef.cpp:1183 +msgid "Yamaha YM3812 (OPL2)" +msgstr "" + +#: src/engine/sysDef.cpp:1184 +msgid "OPL, but what if you had more waveforms to choose than the normal sine?" +msgstr "OPL pero con más ondas." + +#: src/engine/sysDef.cpp:1195 +msgid "Yamaha YMF262 (OPL3)" +msgstr "" + +#: src/engine/sysDef.cpp:1196 +msgid "" +"OPL2, but what if you had twice the channels, 4-op mode, stereo and even " +"more waveforms?" +msgstr "OPL2 pero con más ondas, dos veces los canales, modo 4-op y estéreo" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 1" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 3" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 5" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 7" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 9" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 10" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 11" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 12" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 13" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 14" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 15" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:2006 +msgid "FM 16" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:2006 +msgid "FM 17" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:2006 +msgid "FM 18" +msgstr "" + +#: src/engine/sysDef.cpp:1208 src/gui/settings.cpp:4051 +msgid "MultiPCM" +msgstr "" + +#: src/engine/sysDef.cpp:1209 +msgid "" +"how many channels of PCM do you want?\n" +"MultiPCM: yes" +msgstr "un chip de samples" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 17" +msgstr "Canal 17" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 18" +msgstr "Canal 18" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 19" +msgstr "Canal 19" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 20" +msgstr "Canal 20" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 21" +msgstr "Canal 21" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 22" +msgstr "Canal 22" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 23" +msgstr "Canal 23" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 24" +msgstr "Canal 24" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 25" +msgstr "Canal 25" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 26" +msgstr "Canal 26" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 27" +msgstr "Canal 27" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 28" +msgstr "Canal 28" + +#: src/engine/sysDef.cpp:1217 +msgid "PC Speaker" +msgstr "" + +#: src/engine/sysDef.cpp:1218 +msgid "good luck! you get one square and no volume control." +msgstr "buena suerte. tienes un canal de onda cuadrada sin control de volumen." + +#: src/engine/sysDef.cpp:1219 src/engine/sysDef.cpp:1228 +#: src/gui/guiConst.cpp:1394 src/gui/waveEdit.cpp:199 src/gui/insEdit.cpp:183 +#: src/gui/insEdit.cpp:194 src/gui/insEdit.cpp:326 src/gui/insEdit.cpp:656 +msgid "Square" +msgstr "Cuadrado" + +#: src/engine/sysDef.cpp:1226 +msgid "Pong" +msgstr "" + +#: src/engine/sysDef.cpp:1227 +msgid "please don't use this chip. it was added as a joke." +msgstr "por favor no utilices este chip. se agregó como broma." + +#: src/engine/sysDef.cpp:1235 src/gui/settings.cpp:4044 +msgid "POKEY" +msgstr "" + +#: src/engine/sysDef.cpp:1236 +msgid "" +"TIA, but better and more flexible.\n" +"used in the Atari 8-bit family of computers (400/800/XL/XE)." +msgstr "" +"TIA pero si fuera mejor y más flexible.\n" +"se usó en las computadoras Atari 8-bit (400/800/XL/XE)." + +#: src/engine/sysDef.cpp:1243 src/engine/sysDef.cpp:1714 +msgid "10xx: Set waveform (0 to 7)" +msgstr "10xx: Cambiar onda (0 a 7)" + +#: src/engine/sysDef.cpp:1244 +msgid "11xx: Set AUDCTL" +msgstr "11xx: Cambiar AUDCTL" + +#: src/engine/sysDef.cpp:1245 +msgid "12xx: Toggle two-tone mode" +msgstr "12xx: Togglear modo de dos tonos" + +#: src/engine/sysDef.cpp:1250 +msgid "Ricoh RF5C68" +msgstr "" + +#: src/engine/sysDef.cpp:1251 +msgid "" +"this is like SNES' sound chip but without interpolation and the rest of nice " +"bits." +msgstr "imagina SNES pero sin interpolación ni el resto de las cosas buenas." + +#: src/engine/sysDef.cpp:1260 src/gui/settings.cpp:4046 +msgid "WonderSwan" +msgstr "" + +#: src/engine/sysDef.cpp:1261 +msgid "developed by the makers of the Game Boy and the Virtual Boy..." +msgstr "desarrollado por los creadores del Game Boy y el Virtual Boy..." + +#: src/engine/sysDef.cpp:1262 +msgid "Wave/PCM" +msgstr "Onda/PCM" + +#: src/engine/sysDef.cpp:1262 +msgid "Wave/Sweep" +msgstr "Onda/Barrer" + +#: src/engine/sysDef.cpp:1262 +msgid "Wave/Noise" +msgstr "Onda/Ruido" + +#: src/engine/sysDef.cpp:1269 +msgid "11xx: Setup noise mode (0: disabled; 1-8: enabled/tap)" +msgstr "11xx: Configurar modo de ruido (0: desactivado; 1-8: activado/tapear)" + +#: src/engine/sysDef.cpp:1270 +msgid "12xx: Setup sweep period (0: disabled; 1-20: enabled/period)" +msgstr "" +"12xx: Ajustar periodo de barrer (0: desactivado; 1-20: activado/periodo)" + +#: src/engine/sysDef.cpp:1271 +msgid "13xx: Set sweep amount" +msgstr "13xx: Cuánto barrer" + +#: src/engine/sysDef.cpp:1277 +msgid "Yamaha YM2414 (OPZ)" +msgstr "" + +#: src/engine/sysDef.cpp:1278 +msgid "" +"like OPM, but with more waveforms, fixed frequency mode and totally... " +"undocumented.\n" +"used in the Yamaha TX81Z and some other synthesizers." +msgstr "" +"similar a OPM, pero con más formas de onda, frecuencia fija y totalmente... " +"sin documentación.\n" +"se usó en el Yamaha TX81Z y otros sintetizadores." + +#: src/engine/sysDef.cpp:1285 +msgid "2Fxx: Toggle hard envelope reset on new notes" +msgstr "2Fxx: Activar reinicio duro del envelope en nuevas notas" + +#: src/engine/sysDef.cpp:1291 src/gui/settings.cpp:4069 +msgid "Pokémon Mini" +msgstr "" + +#: src/engine/sysDef.cpp:1292 +msgid "this one is like PC Speaker but has duty cycles." +msgstr "se parece al PC Speaker pero tiene ancho de pulso." + +#: src/engine/sysDef.cpp:1293 src/gui/settings.cpp:4092 src/gui/waveEdit.cpp:33 +msgid "Pulse" +msgstr "Pulso" + +#: src/engine/sysDef.cpp:1300 +msgid "SegaPCM" +msgstr "" + +#: src/engine/sysDef.cpp:1301 +msgid "" +"used in some Sega arcade boards (like OutRun), and usually paired with a " +"YM2151." +msgstr "" +"usado en algunas placas de arcade Sega (como OutRun), y usualmente parejado " +"con YM2151." + +#: src/engine/sysDef.cpp:1312 src/gui/settings.cpp:4040 +msgid "Virtual Boy" +msgstr "" + +#: src/engine/sysDef.cpp:1313 +msgid "" +"a console which failed to sell well due to its headache-inducing features." +msgstr "la consola que falló por dar dolores de cabeza." + +#: src/engine/sysDef.cpp:1321 +msgid "11xx: Set noise length (0 to 7)" +msgstr "11xx: Ajustar longitud de ruido (0 a 7)" + +#: src/engine/sysDef.cpp:1322 +msgid "" +"12xy: Setup envelope (x: enabled/loop (1: enable, 3: enable+loop); y: speed/" +"direction (0-7: down, 8-F: up))" +msgstr "" +"12xy: Preparar envelope (x: activado/bucle (1: activar, 3: activar con " +"bucle); y: velocidas/dirección (0-7: abajo, 8-F: arriba))" + +#: src/engine/sysDef.cpp:1323 +msgid "13xy: Setup sweep (x: speed; y: shift; channel 5 only)" +msgstr "" +"13xy: Configurar barrer (x: velocidad; y: cambio de turno; sólo en el canal " +"5)" + +#: src/engine/sysDef.cpp:1324 +msgid "" +"14xy: Setup modulation (x: enabled/loop (1: enable, 3: enable+loop); y: " +"speed; channel 5 only)" +msgstr "" +"14xy: Configurar modulación (x: activado/bucle (1: activar, 3: activar con " +"bucle); y: velocidad; sólo en el canal 5)" + +#: src/engine/sysDef.cpp:1325 +msgid "15xx: Set modulation waveform (x: wavetable; channel 5 only)" +msgstr "15xx: Cambiar onda de modulación (x: onda; sólo en el canal 5)" + +#: src/engine/sysDef.cpp:1330 +msgid "Konami VRC7" +msgstr "" + +#: src/engine/sysDef.cpp:1331 +msgid "" +"like OPLL, but even more cost reductions applied. three FM channels went " +"missing, and drums mode did as well..." +msgstr "" +"como OPLL, pero con más reducciones de costo aplicadas. tres canales de FM " +"se perdieron, y el modo de batería también lo hizo..." + +#: src/engine/sysDef.cpp:1342 +msgid "Yamaha YM2610B (OPNB2)" +msgstr "" + +#: src/engine/sysDef.cpp:1343 +msgid "" +"so Taito asked Yamaha if they could get the two missing FM channels back, " +"and Yamaha gladly provided them with this chip." +msgstr "" +"Taito le preguntó a Yamaha por un chip con los dos canales perdidos de " +"vuelta, y Yamaha lo hizo." + +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/gui/settings.cpp:4061 +msgid "ADPCM-B" +msgstr "" + +#: src/engine/sysDef.cpp:1354 +msgid "ZX Spectrum Beeper" +msgstr "" + +#: src/engine/sysDef.cpp:1355 +msgid "" +"the ZX Spectrum only had a basic beeper capable of...\n" +"...a bunch of thin pulses and tons of other interesting stuff!\n" +"Furnace provides a thin pulse system." +msgstr "" +"el ZX Spectrum sólo tuvo un parlante capaz de un montón de pulsos delgados y " +"otras cosas interesantes.\n" +"Furnace ofrece un sistema de pulsos delgados." + +#: src/engine/sysDef.cpp:1362 src/engine/sysDef.cpp:1950 +msgid "12xx: Set pulse width" +msgstr "12xx: Cambiar ancho de pulso" + +#: src/engine/sysDef.cpp:1363 +msgid "17xx: Trigger overlay drum" +msgstr "17xx: Tocar la batería" + +#: src/engine/sysDef.cpp:1368 +msgid "Yamaha YM2612 (OPN2) Extended Channel 3" +msgstr "Yamaha YM2612 (OPN2) Canal 3 Extendido" + +#: src/engine/sysDef.cpp:1369 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:1381 +msgid "Yamaha YM2612 (OPN2) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1382 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this one includes CSM mode control for special effects on Channel 3." +msgstr "" + +#: src/engine/sysDef.cpp:1394 src/gui/settings.cpp:4042 +msgid "Konami SCC" +msgstr "" + +#: src/engine/sysDef.cpp:1395 +msgid "" +"a wavetable chip made by Konami for use with the MSX.\n" +"the last channel shares its wavetable with the previous one though." +msgstr "" +"un chip de ondas hecho por Konami para ser usado con la MSX.\n" +"sin embargo, el último canal comparte la onda con el canal anterior." + +#: src/engine/sysDef.cpp:1405 +msgid "Yamaha YM3526 (OPL) with drums" +msgstr "Yamaha YM3526 (OPL) con percusión" + +#: src/engine/sysDef.cpp:1406 +msgid "the OPL chip but with drums mode enabled." +msgstr "el chip OPL con el modo de percusión activado." + +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1693 +msgid "Kick/FM 7" +msgstr "Patear/FM 7" + +#: src/engine/sysDef.cpp:1417 +msgid "Yamaha YM3812 (OPL2) with drums" +msgstr "Yamaha YM3812 (OPL2) con percusión" + +#: src/engine/sysDef.cpp:1418 +msgid "the OPL2 chip but with drums mode enabled." +msgstr "el chip OPL2 con el modo de percusión activado." + +#: src/engine/sysDef.cpp:1429 +msgid "Yamaha YMF262 (OPL3) with drums" +msgstr "Yamaha YMF262 (OPL3 con percusión" + +#: src/engine/sysDef.cpp:1430 +msgid "the OPL3 chip but with drums mode enabled." +msgstr "el chip OPL3 con el modo de percusión activado." + +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1631 +msgid "Kick/FM 16" +msgstr "Patear/FM 16" + +#: src/engine/sysDef.cpp:1441 +msgid "Yamaha YM2610 (OPNB)" +msgstr "" + +#: src/engine/sysDef.cpp:1442 +msgid "" +"this chip was used in SNK's Neo Geo arcade board and video game console.\n" +"it's like OPNA but the rhythm channels are ADPCM channels and two FM " +"channels went missing." +msgstr "" +"este chip fue usado en la Neo Geo de SNK.\n" +"se parece al OPNA pero los canales de percusión ahora pueden reproducir " +"samples y dos canales FM desaparecieron." + +#: src/engine/sysDef.cpp:1453 +msgid "Yamaha YM2610 (OPNB) Extended Channel 2" +msgstr "Yamaha YM2610 (OPNB) Canal 2 Extendido" + +#: src/engine/sysDef.cpp:1454 +msgid "" +"this chip was used in SNK's Neo Geo arcade board and video game console.\n" +"it's like OPNA but the rhythm channels are ADPCM channels and two FM " +"channels went missing.\n" +"this one is in Extended Channel mode, which turns the second FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:1466 +msgid "Yamaha YM2610 (OPNB) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1467 +msgid "" +"this chip was used in SNK's Neo Geo arcade board and video game console.\n" +"it's like OPNA but the rhythm channels are ADPCM channels and two FM " +"channels went missing.\n" +"this one includes CSM mode control for special effects on Channel 2." +msgstr "" + +#: src/engine/sysDef.cpp:1479 +msgid "Yamaha YM2413 (OPLL) with drums" +msgstr "Yamaha YM2413 (OPLL) con percusión" + +#: src/engine/sysDef.cpp:1480 +msgid "the OPLL chips but with drums mode turned on." +msgstr "el chip OPLL con el modo de percusión activado." + +#: src/engine/sysDef.cpp:1491 +msgid "3xxx: Load LFSR (0 to FFF)" +msgstr "3xxx: Cargar LFSR (0 a FFF)" + +#: src/engine/sysDef.cpp:1497 +msgid "Atari Lynx" +msgstr "" + +#: src/engine/sysDef.cpp:1498 +msgid "" +"a portable console made by Atari. it has all of Atari's trademark waveforms." +msgstr "una consola portátil de Atari. tiene todos los sonidos de Atari." + +#: src/engine/sysDef.cpp:1509 +msgid "10xx: Set echo feedback level (00 to FF)" +msgstr "10xx: Ajustar nivel de retroalimentación del eco (00 a FF)" + +#: src/engine/sysDef.cpp:1510 +msgid "11xx: Set channel echo level (00 to FF)" +msgstr "11xx: Ajustar nivel el eco de este canal (00 a FF)" + +#: src/engine/sysDef.cpp:1511 +msgid "12xx: Toggle QSound algorithm (0: disabled; 1: enabled)" +msgstr "12xx: Activar algoritmo QSound (0: desactivado; 1: activado)" + +#: src/engine/sysDef.cpp:1513 +msgid "3xxx: Set echo delay buffer length (000 to AA5)" +msgstr "3xxx: Ajustar longitud del echo (000 a AA5)" + +#: src/engine/sysDef.cpp:1519 +msgid "Capcom QSound" +msgstr "" + +#: src/engine/sysDef.cpp:1520 +msgid "" +"used in some of Capcom's arcade boards. surround-like sampled sound with " +"echo." +msgstr "" +"presente en algunas placas de arcade de Capcom. sonido envolvente con eco." + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +#: src/engine/sysDef.cpp:2056 +msgid "PCM 1" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +#: src/engine/sysDef.cpp:2056 +msgid "PCM 2" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 3" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 4" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 5" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 6" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 7" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 8" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 9" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 10" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 11" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 12" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 13" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 14" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 15" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 16" +msgstr "" + +#: src/engine/sysDef.cpp:1521 +msgid "ADPCM 1" +msgstr "" + +#: src/engine/sysDef.cpp:1521 +msgid "ADPCM 2" +msgstr "" + +#: src/engine/sysDef.cpp:1521 +msgid "ADPCM 3" +msgstr "" + +#: src/engine/sysDef.cpp:1530 src/gui/settings.cpp:4048 +msgid "VERA" +msgstr "" + +#: src/engine/sysDef.cpp:1531 +msgid "the chip used in a computer design created by The 8-Bit Guy." +msgstr "el chip usado en un diseño de computador creado por The 8-Bit Guy." + +#: src/engine/sysDef.cpp:1538 +msgid "20xx: Set waveform" +msgstr "20xx: Cambiar onda" + +#: src/engine/sysDef.cpp:1539 +msgid "22xx: Set duty cycle (0 to 3F)" +msgstr "22xx: Cambiar ancho de pulso (0 a 3F)" + +#: src/engine/sysDef.cpp:1544 +msgid "Yamaha YM2610B (OPNB2) Extended Channel 3" +msgstr "Yamaha YM2610B (OPNB2) Canal 3 Extendido" + +#: src/engine/sysDef.cpp:1545 +msgid "" +"so Taito asked Yamaha if they could get the two missing FM channels back, " +"and Yamaha gladly provided them with this chip.\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:1557 +msgid "Yamaha YM2610B (OPNB2) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1558 +msgid "" +"so Taito asked Yamaha if they could get the two missing FM channels back, " +"and Yamaha gladly provided them with this chip.\n" +"CSM blah blah" +msgstr "" + +#: src/engine/sysDef.cpp:1570 +msgid "SegaPCM (compatible 5-channel mode)" +msgstr "SegaPCM (modo de 5 canales por compatibilidad)" + +#: src/engine/sysDef.cpp:1571 +msgid "" +"this is the same thing as SegaPCM, but only exposes 5 of the channels for " +"compatibility with DefleMask." +msgstr "" +"es lo mismo que SegaPCM, pero sólo hay 5 canales para que sea compatible con " +"DefleMask." + +#: src/engine/sysDef.cpp:1582 +msgid "Seta/Allumer X1-010" +msgstr "" + +#: src/engine/sysDef.cpp:1583 +msgid "" +"a sound chip used in several Seta/Allumer-manufactured arcade boards with " +"too many channels of wavetable sound, which also are capable of sampled " +"sound." +msgstr "" +"un chip de sonido usado en varias placas manufacturadas por Seta/Allumer. " +"tiene demasiados canales de onda, los cuales también pueden reproducir " +"samples." + +#: src/engine/sysDef.cpp:1591 +msgid "11xx: Set envelope shape" +msgstr "11xx: Cambiar forma del envelope" + +#: src/engine/sysDef.cpp:1592 +msgid "12xx: Set sample bank slot (0 to 7)" +msgstr "12xx: Cambiar ranura de bancos de sample (0 a 7)" + +#: src/engine/sysDef.cpp:1596 +msgid "20xx: Set PCM frequency (1 to FF)" +msgstr "20xx: Cambiar frecuencia PCM (1 a FF)" + +#: src/engine/sysDef.cpp:1597 +msgid "" +"22xx: Set envelope mode (bit 0: enable; bit 1: one-shot; bit 2: split shape " +"to L/R; bit 3/5: H.invert right/left; bit 4/6: V.invert right/left)" +msgstr "" +"22xx: Configurar el envelope (bit 0: activar; bit 1: un disparo; bit 2: " +"separar forma al I/D; bit 3/5: volteo H derecha/izquierda; bit 4/6: volteo V " +"derecha/izquierda)" + +#: src/engine/sysDef.cpp:1598 +msgid "23xx: Set envelope period" +msgstr "23xx: Ajustar periodo del envelope" + +#: src/engine/sysDef.cpp:1606 +msgid "Konami Bubble System WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1607 +msgid "" +"this is the wavetable part of the Bubble System, which also had two " +"AY-3-8910s." +msgstr "" +"esta es la parte de onda del Bubble System, que también tuvo dos AY-3-8910." + +#: src/engine/sysDef.cpp:1619 +msgid "Yamaha YMF278B (OPL4)" +msgstr "" + +#: src/engine/sysDef.cpp:1620 +msgid "like OPL3, but this time it also has a 24-channel version of MultiPCM." +msgstr "similar al OPL3 pero CON 24 CANALES DEL MultiPCM." + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 17" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 18" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 19" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 20" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 21" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 22" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 23" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 24" +msgstr "" + +#: src/engine/sysDef.cpp:1629 +msgid "Yamaha YMF278B (OPL4) with drums" +msgstr "Yamaha YMF278B (OPL4) con percusión" + +#: src/engine/sysDef.cpp:1630 +msgid "the OPL4 but with drums mode turned on." +msgstr "por qué" + +#: src/engine/sysDef.cpp:1638 +msgid "11xx: Set filter mode (00 to 03)" +msgstr "11xx: Cambiar modo de filtro (0 a 3)" + +#: src/engine/sysDef.cpp:1639 +msgid "14xx: Set filter coefficient K1 low byte (00 to FF)" +msgstr "14xx: Cambiar coeficiente 1 byte bajo" + +#: src/engine/sysDef.cpp:1640 +msgid "15xx: Set filter coefficient K1 high byte (00 to FF)" +msgstr "15xx: Cambiar coeficiente 1 byte alto" + +#: src/engine/sysDef.cpp:1641 +msgid "16xx: Set filter coefficient K2 low byte (00 to FF)" +msgstr "16xx: Cambiar coeficiente 2 byte bajo" + +#: src/engine/sysDef.cpp:1642 +msgid "17xx: Set filter coefficient K2 high byte (00 to FF)" +msgstr "17xx: Cambiar coeficiente 2 byte alto" + +#: src/engine/sysDef.cpp:1643 +msgid "18xx: Set filter coefficient K1 slide up (00 to FF)" +msgstr "18xx: Cambiar coeficiente 1 deslizar arriba" + +#: src/engine/sysDef.cpp:1644 +msgid "19xx: Set filter coefficient K1 slide down (00 to FF)" +msgstr "19xx: Cambiar coeficiente 1 deslizar abajo" + +#: src/engine/sysDef.cpp:1645 +msgid "1Axx: Set filter coefficient K2 slide up (00 to FF)" +msgstr "1Axx: Cambiar coeficiente 2 deslizar arriba" + +#: src/engine/sysDef.cpp:1646 +msgid "1Bxx: Set filter coefficient K2 slide down (00 to FF)" +msgstr "1Bxx: Cambiar coeficiente 2 deslizar abajo" + +#: src/engine/sysDef.cpp:1647 +msgid "22xx: Set envelope left volume ramp (signed) (00 to FF)" +msgstr "22xx: Cambiar envelope izquierdo volumen rampa (signado)" + +#: src/engine/sysDef.cpp:1648 +msgid "23xx: Set envelope right volume ramp (signed) (00 to FF)" +msgstr "23xx: Cambiar envelope derecho volumen rampa (signado)" + +#: src/engine/sysDef.cpp:1649 +msgid "24xx: Set envelope filter coefficient k1 ramp (signed) (00 to FF)" +msgstr "24xx: Envelope filtro coeficiente 1 rampa (signado)" + +#: src/engine/sysDef.cpp:1650 +msgid "" +"25xx: Set envelope filter coefficient k1 ramp (signed, slower) (00 to FF)" +msgstr "25xx: 24 pero lento" + +#: src/engine/sysDef.cpp:1651 +msgid "26xx: Set envelope filter coefficient k2 ramp (signed) (00 to FF)" +msgstr "26xx: 24 pero coef 2" + +#: src/engine/sysDef.cpp:1652 +msgid "" +"27xx: Set envelope filter coefficient k2 ramp (signed, slower) (00 to FF)" +msgstr "27xx: Estoy cansado" + +#: src/engine/sysDef.cpp:1656 +msgid "120x: Set pause (bit 0)" +msgstr "120x: Pausar (bit 0)" + +#: src/engine/sysDef.cpp:1658 +msgid "2xxx: Set envelope count (000 to 1FF)" +msgstr "2xxx: Ajustar cuenta del envelope (000 a 1FF)" + +#: src/engine/sysDef.cpp:1659 +msgid "3xxx: Set filter coefficient K1 (000 to FFF)" +msgstr "3xxx: Qué es esto" + +#: src/engine/sysDef.cpp:1660 +msgid "4xxx: Set filter coefficient K2 (000 to FFF)" +msgstr "4xxx: DGJLjgdaljgdalhfsfah" + +#: src/engine/sysDef.cpp:1667 +msgid "Ensoniq ES5506" +msgstr "" + +#: src/engine/sysDef.cpp:1668 +msgid "" +"a sample chip made by Ensoniq, which is the basis for the GF1 chip found in " +"Gravis' Ultrasound cards." +msgstr "" +"un chip sample hecho por Ensoniq, que es la basis para el GF1 chip " +"encontrado en Gravis' Ultrasound tarjetas." + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 29" +msgstr "Canal 29" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 30" +msgstr "Canal 30" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 31" +msgstr "Canal 31" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 32" +msgstr "Canal 32" + +#: src/engine/sysDef.cpp:1679 +msgid "Yamaha Y8950" +msgstr "" + +#: src/engine/sysDef.cpp:1680 +msgid "like OPL but with an ADPCM channel." +msgstr "el OPL pero con canal ADPCM." + +#: src/engine/sysDef.cpp:1691 +msgid "Yamaha Y8950 with drums" +msgstr "Yamaha Y8950 con percusiôn" + +#: src/engine/sysDef.cpp:1692 +msgid "the Y8950 chip, in drums mode." +msgstr "el chip Y8950, en modo de percusión." + +#: src/engine/sysDef.cpp:1703 +msgid "Konami SCC+" +msgstr "" + +#: src/engine/sysDef.cpp:1704 +msgid "" +"this is a variant of Konami's SCC chip with the last channel's wavetable " +"being independent." +msgstr "" +"esta es una variante del chip SCC de Konami. el último canal tiene onda " +"independiente." + +#: src/engine/sysDef.cpp:1715 +msgid "12xx: Set pulse width (0 to 7F)" +msgstr "12xx: Cambiar ancho de pulso (0 a 7F)" + +#: src/engine/sysDef.cpp:1716 +msgid "13xx: Set resonance (0 to FF)" +msgstr "13xx: Cambiar resonancia (0 a FF)" + +#: src/engine/sysDef.cpp:1717 +msgid "" +"14xx: Set filter mode (bit 0: ring mod; bit 1: low pass; bit 2: high pass; " +"bit 3: band pass)" +msgstr "" +"14xx: Cambiar modo de filtro (bit 0: modulación de aro; bit 1: paso bajo; " +"bit 2: paso alto; bit 3: paso de banda)" + +#: src/engine/sysDef.cpp:1718 +msgid "15xx: Set frequency sweep period low byte" +msgstr "15xx: Cambiar byte inferior del periodo de barrer frecuencia" + +#: src/engine/sysDef.cpp:1719 +msgid "16xx: Set frequency sweep period high byte" +msgstr "16xx: Cambiar byte suferior del periodo de barrer frecuencia" + +#: src/engine/sysDef.cpp:1720 +msgid "17xx: Set volume sweep period low byte" +msgstr "17xx: Cambiar byte inferior del periodo de barrer volumen" + +#: src/engine/sysDef.cpp:1721 +msgid "18xx: Set volume sweep period high byte" +msgstr "18xx: Cambiar byte suferior del periodo de barrer volumen" + +#: src/engine/sysDef.cpp:1722 +msgid "19xx: Set cutoff sweep period low byte" +msgstr "19xx: Cambiar byte inferior del periodo de barrer límite" + +#: src/engine/sysDef.cpp:1723 +msgid "1Axx: Set cutoff sweep period high byte" +msgstr "1Axx: Cambiar byte suferior del periodo de barrer límite" + +#: src/engine/sysDef.cpp:1724 +msgid "1Bxx: Set frequency sweep boundary" +msgstr "1Bxx: Cambiar límite de barrer frecuencia" + +#: src/engine/sysDef.cpp:1725 +msgid "1Cxx: Set volume sweep boundary" +msgstr "1Cxx: Cambiar límite de barrer volumen" + +#: src/engine/sysDef.cpp:1726 +msgid "1Dxx: Set cutoff sweep boundary" +msgstr "1Dxx: Cambiar límite de barrer límite" + +#: src/engine/sysDef.cpp:1727 +msgid "1Exx: Set phase reset period low byte" +msgstr "1Exx: Cambiar byte inferior del periodo de reinicio de fase" + +#: src/engine/sysDef.cpp:1728 +msgid "1Fxx: Set phase reset period high byte" +msgstr "1Fxx: Cambiar byte superior del periodo de reinicio de fase" + +#: src/engine/sysDef.cpp:1729 +msgid "20xx: Toggle frequency sweep (bit 0-6: speed; bit 7: direction is up)" +msgstr "20xx: Barrer frecuencia (bit 0-6: velocidad; bit 7: hacia arriba)" + +#: src/engine/sysDef.cpp:1730 +msgid "" +"21xx: Toggle volume sweep (bit 0-4: speed; bit 5: direction is up; bit 6: " +"loop; bit 7: alternate)" +msgstr "" +"20xx: Barrer volumen (bit 0-4: velocidad; bit 5: hacia arriba; bit 6: bucle; " +"bit 7: alternar)" + +#: src/engine/sysDef.cpp:1731 +msgid "22xx: Toggle cutoff sweep (bit 0-6: speed; bit 7: direction is up)" +msgstr "22xx: Barrer límite (bit 0-6: velocidad; bit 7: hacia arriba)" + +#: src/engine/sysDef.cpp:1739 +msgid "tildearrow Sound Unit" +msgstr "" + +#: src/engine/sysDef.cpp:1740 +msgid "" +"tildearrow's fantasy sound chip. put SID, AY and VERA in a blender, and you " +"get this!" +msgstr "" +"el chip de fantasia de tildearrow. pon al SID, al AY y al VERA en una " +"batidora, y te queda esto!" + +#: src/engine/sysDef.cpp:1751 +msgid "OKI MSM6295" +msgstr "" + +#: src/engine/sysDef.cpp:1752 +msgid "an ADPCM sound chip manufactured by OKI and used in many arcade boards." +msgstr "" +"un chip de sonido ADPCM manufacturado por OKI y usado en varias placas " +"arcade." + +#: src/engine/sysDef.cpp:1759 +msgid "20xx: Set chip output rate (0: clock/132; 1: clock/165)" +msgstr "" +"20xx: Cambiar velocidad de salida del chip (0: reloj/132; 1: reloj/165)" + +#: src/engine/sysDef.cpp:1764 +msgid "OKI MSM6258" +msgstr "" + +#: src/engine/sysDef.cpp:1765 +msgid "an ADPCM sound chip manufactured by OKI and used in the Sharp X68000." +msgstr "un chip usado en la Sharp X68000." + +#: src/engine/sysDef.cpp:1766 src/engine/sysDef.cpp:1887 +#: src/gui/editControls.cpp:437 src/gui/settings.cpp:4223 +#: src/gui/guiConst.cpp:1397 src/gui/insEdit.cpp:2628 src/gui/insEdit.cpp:2666 +msgid "Sample" +msgstr "" + +#: src/engine/sysDef.cpp:1772 +msgid "20xx: Set frequency divider (0-2)" +msgstr "20xx: Cambiar divisor de frecuencia (0-2)" + +#: src/engine/sysDef.cpp:1773 +msgid "21xx: Select clock rate (0: full; 1: half)" +msgstr "21xx: Seleccionar velocidad del reloj (0: completa; 1: mitad)" + +#: src/engine/sysDef.cpp:1778 +msgid "Yamaha YMZ280B (PCMD8)" +msgstr "" + +#: src/engine/sysDef.cpp:1779 +msgid "" +"used in some arcade boards. Can play back either 4-bit ADPCM, 8-bit PCM or " +"16-bit PCM." +msgstr "" +"se usó en algunas placas arcade. puede reproducir 4-bit ADPCM, 8-bit PCM o " +"16-bit PCM." + +#: src/engine/sysDef.cpp:1797 src/gui/settings.cpp:4054 +msgid "Namco WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1798 +msgid "" +"a wavetable sound chip used in Pac-Man, among other early Namco arcade games." +msgstr "un chip de ondas usado en Pac-Man y otros juegos de arcade Namco." + +#: src/engine/sysDef.cpp:1808 +msgid "Namco C15 WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1809 +msgid "" +"successor of the original Namco WSG chip, used in later Namco arcade games." +msgstr "el chip que salió después del original Namco WSG." + +#: src/engine/sysDef.cpp:1819 +msgid "Namco C30 WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1820 +msgid "like Namco C15 but with stereo sound." +msgstr "similar al Namco C15 pero con estéreo." + +#: src/engine/sysDef.cpp:1830 +msgid "OKI MSM5232" +msgstr "" + +#: src/engine/sysDef.cpp:1831 +msgid "" +"a square wave additive synthesis chip made by OKI. used in some arcade " +"machines and instruments." +msgstr "" +"un chip de síntesis aditiva de ondas cuadradas hecho por OKI. se usó en " +"algunas máquinas de arcade e instrumentos." + +#: src/engine/sysDef.cpp:1839 +msgid "10xy: Set group control (x: sustain; y: part toggle bitmask)" +msgstr "" +"10xy: Ajustar control de grupo (x: sostener; y: máscara de bits para " +"togglear las partes)" + +#: src/engine/sysDef.cpp:1840 src/engine/sysDef.cpp:1998 +msgid "11xx: Set noise mode" +msgstr "11xx: Ajustar modo de ruido" + +#: src/engine/sysDef.cpp:1841 +msgid "12xx: Set group attack (0 to 5)" +msgstr "12xx: Cambiar ataque del grupo (0 a 5)" + +#: src/engine/sysDef.cpp:1842 +msgid "13xx: Set group decay (0 to 11)" +msgstr "13xx: Cambiar caída del grupo (0 a 11)" + +#: src/engine/sysDef.cpp:1847 +msgid "Yamaha YM2612 (OPN2) with DualPCM" +msgstr "Yamaha YM2612 (OPN2) con DualPCM" + +#: src/engine/sysDef.cpp:1848 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this system uses software mixing to provide two sample channels." +msgstr "" + +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +msgid "FM 6/PCM 1" +msgstr "" + +#: src/engine/sysDef.cpp:1859 +msgid "Yamaha YM2612 (OPN2) Extended Channel 3 with DualPCM and CSM" +msgstr "Yamaha YM2612 (OPN2) Canal 3 Extendido con DualPCM y CSM" + +#: src/engine/sysDef.cpp:1860 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this system uses software mixing to provide two sample channels.\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:1872 src/gui/settings.cpp:4024 +msgid "T6W28" +msgstr "" + +#: src/engine/sysDef.cpp:1873 +msgid "" +"an SN76489 derivative used in Neo Geo Pocket, has independent stereo volume " +"and noise channel frequency." +msgstr "" +"una derivada del SN76489. se usó en Neo Geo Pocket. tiene estéreo y ruido " +"independiente." + +#: src/engine/sysDef.cpp:1880 +msgid "20xx: Set noise length (0: short, 1: long)" +msgstr "20xx: Ajustar longitud de ruido (0: corto; 1: largo)" + +#: src/engine/sysDef.cpp:1885 +msgid "Generic PCM DAC" +msgstr "DAC PCM Genérico" + +#: src/engine/sysDef.cpp:1886 +msgid "as generic sample playback as it gets." +msgstr "como genérico reproducción sample como se obtiene." + +#: src/engine/sysDef.cpp:1898 +msgid "Konami K007232" +msgstr "" + +#: src/engine/sysDef.cpp:1899 +msgid "this PCM chip was widely used at Konami arcade boards in 1986-1990." +msgstr "este chip PCM se usó en placas arcade de Konami durante 1986 a 1990." + +#: src/engine/sysDef.cpp:1908 +msgid "Irem GA20" +msgstr "" + +#: src/engine/sysDef.cpp:1909 +msgid "" +"yet another PCM chip from Irem. like Amiga, but less pitch resolution and no " +"sample loop." +msgstr "" +"otro chip PCM de Irem. se parece al Amiga pero tiene menos resolución de " +"tono y sin bucle de samples." + +#: src/engine/sysDef.cpp:1918 +msgid "Sharp SM8521" +msgstr "" + +#: src/engine/sysDef.cpp:1919 +msgid "a SoC with wavetable sound hardware." +msgstr "un procesador integrado con generador de sonido de onda." + +#: src/engine/sysDef.cpp:1929 +msgid "Casio PV-1000" +msgstr "" + +#: src/engine/sysDef.cpp:1930 +msgid "" +"a game console with 3 channels of square wave. it's what happens after " +"fusing TIA and VIC together." +msgstr "" +"una consola de juego con 3 canales de onda cuadrada. es lo que pasa al " +"mezclar TIA y VIC." + +#: src/engine/sysDef.cpp:1937 +msgid "10xx: Set ring modulation (0: disable, 1: enable)" +msgstr "10xx: Ajustar modulación de aro (0: desactivar, 1: activar)" + +#: src/engine/sysDef.cpp:1942 +msgid "ZX Spectrum Beeper (QuadTone Engine)" +msgstr "ZX Spectrum Beeper (Motor QuadTone)" + +#: src/engine/sysDef.cpp:1943 +msgid "" +"another ZX Spectrum beeper system with full PWM pulses and 3-level volume " +"per channel. it also has a pitchable overlay sample channel." +msgstr "" +"otro sistema de beeper de ZX Spectrum con pulsos completos PWM y tres " +"niveles de volumen por canal. también tiene un canal superpuesto de samples." + +#: src/engine/sysDef.cpp:1955 +msgid "Konami K053260" +msgstr "" + +#: src/engine/sysDef.cpp:1956 +msgid "this PCM chip was widely used at Konami arcade boards in 1990-1992." +msgstr "chip PCM usado en placas Konami del 1990 al 1992." + +#: src/engine/sysDef.cpp:1968 +msgid "MOS Technology TED" +msgstr "" + +#: src/engine/sysDef.cpp:1969 +msgid "" +"two square waves (one may be turned into noise). used in the Commodore " +"Plus/4, 16 and 116." +msgstr "" +"dos ondas cuadradas (una se puede convertir en ruido). usado en el Commodore " +"Plus/4, 16 y 116." + +#: src/engine/sysDef.cpp:1978 +msgid "Namco C140" +msgstr "" + +#: src/engine/sysDef.cpp:1979 +msgid "Namco's first PCM chip from 1987. it's pretty good for being so." +msgstr "el primer chip PCM de Namco del 1987." + +#: src/engine/sysDef.cpp:1989 +msgid "Namco C219" +msgstr "" + +#: src/engine/sysDef.cpp:1990 +msgid "" +"Namco's PCM chip used in their NA-1/2 hardware.\n" +"very similar to C140, but has noise generator." +msgstr "" +"usado en placas Namco NA-1/2.\n" +"similar al C140, pero tiene ruido." + +#: src/engine/sysDef.cpp:1999 +msgid "12xy: Set invert mode (x: surround; y: invert)" +msgstr "12xy: Activar inversión (x: envolvente; y: invertir)" + +#: src/engine/sysDef.cpp:2004 +msgid "ESS ES1xxx series (ESFM)" +msgstr "" + +#: src/engine/sysDef.cpp:2005 +msgid "" +"a unique FM synth featured in PC sound cards.\n" +"based on the OPL3 design, but with lots of its features extended." +msgstr "" +"un chip FM único que se encuentra en algunas tarjetas de sonido para PC.\n" +"basado en el diseño OPL3, pero tiene un montón de cosas adicionales." + +#: src/engine/sysDef.cpp:2006 +msgid "FM 11" +msgstr "" + +#: src/engine/sysDef.cpp:2012 +msgid "2Exx: Toggle hard envelope reset on new notes" +msgstr "2Exx: Activar reinicio duro del envelope en nuevas notas" + +#: src/engine/sysDef.cpp:2018 +msgid "PowerNoise" +msgstr "" + +#: src/engine/sysDef.cpp:2019 +msgid "" +"a fantasy sound chip designed by jvsTSX and The Beesh-Spweesh!\n" +"used in the Hexheld fantasy console." +msgstr "" +"un chip de sonido diseñado por jvsTSX y The Beesh-Spweesh!\n" +"es usado en la consola de fantasía Hexheld." + +#: src/engine/sysDef.cpp:2020 +msgid "Noise 1" +msgstr "Ruido 1" + +#: src/engine/sysDef.cpp:2020 +msgid "Noise 2" +msgstr "Ruido 2" + +#: src/engine/sysDef.cpp:2020 +msgid "Noise 3" +msgstr "Ruido 3" + +#: src/engine/sysDef.cpp:2020 +msgid "Slope" +msgstr "Pendiente" + +#: src/engine/sysDef.cpp:2026 +msgid "" +"20xx: Load low byte of noise channel LFSR (00 to FF) or slope channel " +"accumulator (00 to 7F)" +msgstr "" +"20xx: Cargar el byte bajo del canal del LFSR de los canales de ruido (de 00 " +"a FF) o el acumulador del canal Slope (de 00 a 7F)" + +#: src/engine/sysDef.cpp:2027 +msgid "21xx: Load high byte of noise channel LFSR (00 to FF)" +msgstr "21xx: Cargar el byte alto del LFSR del canal de ruido (de 00 a FF)" + +#: src/engine/sysDef.cpp:2028 +msgid "22xx: Write to I/O port A" +msgstr "22xx: Escribir al puerto de entrada/salida A" + +#: src/engine/sysDef.cpp:2029 +msgid "23xx: Write to I/O port B" +msgstr "23xx: Escribir al puerto de entrada/salida B" + +#: src/engine/sysDef.cpp:2035 src/gui/settings.cpp:4079 +msgid "Dave" +msgstr "" + +#: src/engine/sysDef.cpp:2036 +msgid "" +"this chip was featured in the Enterprise 128 computer. it is similar to " +"POKEY, but with stereo output." +msgstr "" +"este chip se encuentra en la computadora Enterprise 128. similar al POKEY " +"pero tiene estéreo." + +#: src/engine/sysDef.cpp:2037 +msgid "DAC Left" +msgstr "DAC Izquierdo" + +#: src/engine/sysDef.cpp:2037 +msgid "DAC Right" +msgstr "DAC Derecho" + +#: src/engine/sysDef.cpp:2043 +msgid "10xx: Set waveform (0 to 4; 0 to 3 on noise)" +msgstr "10xx: Cambiar onda (0 a 4; 0 a 3 en ruido)" + +#: src/engine/sysDef.cpp:2044 +msgid "11xx: Set noise frequency source (0: fixed; 1-3: channels 1 to 3)" +msgstr "" +"11xx: Cambiar origen de frecuencia de ruido (0: fijo; 1-3: canales 1 a 3)" + +#: src/engine/sysDef.cpp:2045 +msgid "12xx: Toggle high-pass with next channel" +msgstr "12xx: Togglear paso alto con siguiente canal" + +#: src/engine/sysDef.cpp:2046 +msgid "13xx: Toggle ring modulation with channel+2" +msgstr "13xx: Togglear modulación de aro con canal+2" + +#: src/engine/sysDef.cpp:2047 +msgid "14xx: Toggle swap counters (noise only)" +msgstr "14xx: Togglear intercambio de contadores (sólo ruido)" + +#: src/engine/sysDef.cpp:2048 +msgid "15xx: Toggle low pass (noise only)" +msgstr "15xx: Togglear paso bajo (sólo ruido)" + +#: src/engine/sysDef.cpp:2049 +msgid "16xx: Set clock divider (0: /2; 1: /3)" +msgstr "16xx: Configurar divisor de reloj (0: /2; 1: /3)" + +#: src/engine/sysDef.cpp:2054 +msgid "Game Boy Advance DMA Sound" +msgstr "Game Boy Advance Sonido DMA" + +#: src/engine/sysDef.cpp:2055 +msgid "" +"additional PCM FIFO channels in Game Boy Advance driven directly by its DMA " +"hardware." +msgstr "" +"canales PCM FIFO adicionales en el Game Boy Advance conducidos directamente " +"por su hardware DMA." + +#: src/engine/sysDef.cpp:2068 +msgid "Game Boy Advance MinMod" +msgstr "" + +#: src/engine/sysDef.cpp:2069 +msgid "" +"additional PCM FIFO channels in Game Boy Advance driven by software mixing " +"to provide up to sixteen sample channels" +msgstr "" +"canales PCM FIFO adicionales en el Game Boy Advance conducidos por mezcla en " +"software para ofrecer hasta dieciséis canales de sample." + +#: src/engine/sysDef.cpp:2078 +msgid "11xy: Set echo channel (x: left/right source; y: delay (0 disables))" +msgstr "" +"11xy: Cambiar canal de eco (x: izquierda/derecha origen; y: retraso (0 " +"desactiva))" + +#: src/engine/sysDef.cpp:2079 +msgid "12xy: Toggle invert (x: left; y: right)" +msgstr "12xy: Togglear invertir (x: izquierda; y: derecha)" + +#: src/engine/sysDef.cpp:2084 src/gui/settings.cpp:4080 +msgid "Nintendo DS" +msgstr "" + +#: src/engine/sysDef.cpp:2085 +msgid "a handheld video game console with two screens. it uses a stylus." +msgstr "una consola portátil con dos pantallas. usa un lapicero." + +#: src/engine/sysDef.cpp:2093 +msgid "1Fxx: Set global volume (0 to 7F)" +msgstr "1Fxx: Ajustar volumen global (0 a 7F)" + +#: src/engine/sysDef.cpp:2098 +msgid "5E01" +msgstr "" + +#: src/engine/sysDef.cpp:2099 +msgid "" +"a fantasy sound chip created by Euly. it is based on Ricoh 2A03, adding a " +"couple features such as 32 noise pitches, an extra duty cycle, and three " +"waveforms (besides triangle)." +msgstr "" +"chip de sonido fantasía creado por Euly. es basado en Ricoh 2A03, añadiendo " +"características como 32 tonos de ruido, un ciclo de trabajo extra y tres " +"formas de onda (aparte de triángulo)." + +#: src/engine/sysDef.cpp:2107 +msgid "" +"12xx: Set duty cycle/noise mode/waveform (pulse/wave: 0 to 3; noise: 0 or 1)" +msgstr "" +"12xx: Cambiar ancho de pulso/modo de ruido/onda (pulso/onda: 0 a 3; ruido: 0 " +"a 1)" + +#: src/engine/sysDef.cpp:2120 src/gui/settings.cpp:4083 +msgid "Bifurcator" +msgstr "" + +#: src/engine/sysDef.cpp:2121 +msgid "a fantasy sound chip using logistic map iterations to generate sound." +msgstr "" +"un chip de fantasía usando iteraciones de mapa logístico para generar sonido." + +#: src/engine/sysDef.cpp:2128 +msgid "10xx: Load low byte of channel sample state" +msgstr "10xx: Cargar byte inferior del estado de muestra del canal" + +#: src/engine/sysDef.cpp:2129 +msgid "11xx: Load high byte of channel sample state" +msgstr "11xx: Cargar byte superior del estado de muestra del canal" + +#: src/engine/sysDef.cpp:2130 +msgid "12xx: Set low byte of channel parameter" +msgstr "12xx: Cambiar byte inferior del parámetro" + +#: src/engine/sysDef.cpp:2131 +msgid "13xx: Set high byte of channel parameter" +msgstr "13xx: Cambiar byte superior del parámetro" + +#: src/engine/sysDef.cpp:2136 src/gui/settings.cpp:4084 +msgid "SID2" +msgstr "" + +#: src/engine/sysDef.cpp:2137 +msgid "" +"a fantasy sound chip created by LTVA. it is similar to the SID chip, but " +"with many of its problems fixed." +msgstr "" +"chip de sonido fantasía creado por LTVA. similar al chip SID pero con sus " +"problemas corregidos." + +#: src/engine/sysDef.cpp:2148 +msgid "Dummy System" +msgstr "Sistema Simulacro" + +#: src/engine/sysDef.cpp:2149 +msgid "this is a system designed for testing purposes." +msgstr "un sistema diseñado para propósitos de prueba." + +#: src/engine/engine.cpp:51 +msgid "00xy: Arpeggio" +msgstr "00xy: Arpegio" + +#: src/engine/engine.cpp:53 +msgid "01xx: Pitch slide up" +msgstr "01xx: Deslizamiento de tono hacia arriba" + +#: src/engine/engine.cpp:55 +msgid "02xx: Pitch slide down" +msgstr "02xx: Deslizamiento de tono hacia abajo" + +#: src/engine/engine.cpp:57 +msgid "03xx: Portamento" +msgstr "03xx: Portamento" + +#: src/engine/engine.cpp:59 +msgid "04xy: Vibrato (x: speed; y: depth)" +msgstr "04xy: Vibrato (x: velocidad; y: profundidad)" + +#: src/engine/engine.cpp:61 +msgid "05xy: Volume slide + vibrato (compatibility only!)" +msgstr "05xy: Deslizamiento de volumen y vibrato (solo para compatibilidad!)" + +#: src/engine/engine.cpp:63 +msgid "06xy: Volume slide + portamento (compatibility only!)" +msgstr "" +"06xy: Deslizamiento de volumen y portamento (solo para compatibilidad!)" + +#: src/engine/engine.cpp:65 +msgid "07xy: Tremolo (x: speed; y: depth)" +msgstr "07xy: Tremolo (x: velocidad; y: profundidad)" + +#: src/engine/engine.cpp:67 +msgid "08xy: Set panning (x: left; y: right)" +msgstr "08xy: Ajustar paneo (x: izquierdo; y: derecho)" + +#: src/engine/engine.cpp:69 +msgid "09xx: Set groove pattern (speed 1 if no grooves exist)" +msgstr "" +"09xx: Cambiar patrón de groove (cambia la velocidad 1 si no hay grooves)" + +#: src/engine/engine.cpp:71 +msgid "0Axy: Volume slide (0y: down; x0: up)" +msgstr "0Axy: Deslizamiento de volumen (0y: hacia abajo; x0: hacia arriba)" + +#: src/engine/engine.cpp:73 +msgid "0Bxx: Jump to pattern" +msgstr "0Bxx: Saltar a un patrón" + +#: src/engine/engine.cpp:75 +msgid "0Cxx: Retrigger" +msgstr "0Cxx: Reactivar" + +#: src/engine/engine.cpp:77 +msgid "0Dxx: Jump to next pattern" +msgstr "0Dxx: Saltar al patrón siguiente" + +#: src/engine/engine.cpp:79 +msgid "0Fxx: Set speed (speed 2 if no grooves exist)" +msgstr "0Fxx: Cambiar velocidad 1 (ajusta la 2 si no hay grooves)" + +#: src/engine/engine.cpp:81 +msgid "80xx: Set panning (00: left; 80: center; FF: right)" +msgstr "" +"80xx: Ajustar paneo (00: izquierda total; 80: centro; FF: derecha total )" + +#: src/engine/engine.cpp:83 +msgid "81xx: Set panning (left channel)" +msgstr "81xx: Ajustar el paneo del canal izquierdo" + +#: src/engine/engine.cpp:85 +msgid "82xx: Set panning (right channel)" +msgstr "82xx: Ajustar el paneo del canal derecho" + +#: src/engine/engine.cpp:87 +msgid "88xy: Set panning (rear channels; x: left; y: right)" +msgstr "" +"88xy: Ajustar el paneo de los canales traseros (x: izquierdo; y: derecho)" + +#: src/engine/engine.cpp:90 +msgid "89xx: Set panning (rear left channel)" +msgstr "89xx: Ajustar el paneo del canal izquierdo trasero" + +#: src/engine/engine.cpp:93 +msgid "8Axx: Set panning (rear right channel)" +msgstr "8Axx: Ajustar el paneo del canal izquierdo trasero" + +#: src/engine/engine.cpp:96 +msgid "Cxxx: Set tick rate (hz)" +msgstr "Cxxx: Cambiar la frecuencia de ticks (en hz)" + +#: src/engine/engine.cpp:98 +msgid "E0xx: Set arp speed" +msgstr "E0xx: Cambiar velocidad del arpegio" + +#: src/engine/engine.cpp:100 +msgid "E1xy: Note slide up (x: speed; y: semitones)" +msgstr "E1xy: Deslizamiento de nota hacia arriba (x: velocidad; y: semitonos)" + +#: src/engine/engine.cpp:102 +msgid "E2xy: Note slide down (x: speed; y: semitones)" +msgstr "E2xy: Deslizamiento de nota hacia abajo (x: velocidad; y: semitonos)" + +#: src/engine/engine.cpp:104 +msgid "E3xx: Set vibrato shape (0: up/down; 1: up only; 2: down only)" +msgstr "" +"E3xx: Ajustar forma del vibrato (0: arriba y abajo; 1: solo arriba; 2: solo " +"abajo)" + +#: src/engine/engine.cpp:106 +msgid "E4xx: Set vibrato range" +msgstr "E4xx: Ajustar rango del vibrato" + +#: src/engine/engine.cpp:108 +msgid "E5xx: Set pitch (80: center)" +msgstr "E5xx: Cambiar tono (80: centro, nota original)" + +#: src/engine/engine.cpp:110 +msgid "E6xy: Quick legato (x: time (0-7 up; 8-F down); y: semitones)" +msgstr "" +"E6xy: Legato rápido (x: tiempo (0-7 mueven hacia arriba; 8-F hacia abajo); " +"y: semitonos)" + +#: src/engine/engine.cpp:112 +msgid "E7xx: Macro release" +msgstr "E7xx: Ajustar relajación (release) del macro" + +#: src/engine/engine.cpp:114 +msgid "E8xy: Quick legato up (x: time; y: semitones)" +msgstr "E8xy: Legato rápido hacia arriba (x: tiempo; y: semitonos)" + +#: src/engine/engine.cpp:116 +msgid "E9xy: Quick legato down (x: time; y: semitones)" +msgstr "E9xy: Legato rápido hacia abajo (x: tiempo; y: semitonos)" + +#: src/engine/engine.cpp:118 +msgid "EAxx: Legato" +msgstr "EAxx: Legato" + +#: src/engine/engine.cpp:120 +msgid "EBxx: Set LEGACY sample mode bank" +msgstr "EBxx: Establecer modo del banco de samples DE COMPATIBILIDAD" + +#: src/engine/engine.cpp:122 +msgid "ECxx: Note cut" +msgstr "ECxx: Corte de nota" + +#: src/engine/engine.cpp:124 +msgid "EDxx: Note delay" +msgstr "EDxx: Retraso de nota" + +#: src/engine/engine.cpp:126 +msgid "EExx: Send external command" +msgstr "EExx: Enviar comando externo" + +#: src/engine/engine.cpp:128 +msgid "F0xx: Set tick rate (bpm)" +msgstr "F0xx: Ajustar velocidad de ticks (en ppm)" + +#: src/engine/engine.cpp:130 +msgid "F1xx: Single tick note slide up" +msgstr "F1xx: Deslizamiento de nota hacia arriba de un solo tick" + +#: src/engine/engine.cpp:132 +msgid "F2xx: Single tick note slide down" +msgstr "F2xx: Deslizamiento de nota hacia abajo de un solo tick" + +#: src/engine/engine.cpp:134 +msgid "F3xx: Fine volume slide up" +msgstr "F3xx: Deslizamiento de volumen hacia arriba (fino)" + +#: src/engine/engine.cpp:136 +msgid "F4xx: Fine volume slide down" +msgstr "F4xx: Deslizamiento de volumen hacia arriba (fino)" + +#: src/engine/engine.cpp:138 +msgid "F5xx: Disable macro (see manual)" +msgstr "F5xx: Desactivar macro (revisa el manual)" + +#: src/engine/engine.cpp:140 +msgid "F6xx: Enable macro (see manual)" +msgstr "F6xx: Activar macro (revisa el manual)" + +#: src/engine/engine.cpp:142 +msgid "F7xx: Restart macro (see manual)" +msgstr "F7xx: Reiniciar macro (que revises el manual)" + +#: src/engine/engine.cpp:144 +msgid "F8xx: Single tick volume slide up" +msgstr "F8xx: Deslizamiento de volumen hacia arriba de un solo tick" + +#: src/engine/engine.cpp:146 +msgid "F9xx: Single tick volume slide down" +msgstr "F9xx: Deslizamiento de volumen hacia abajo de un solo tick" + +#: src/engine/engine.cpp:148 +msgid "FAxx: Fast volume slide (0y: down; x0: up)" +msgstr "FAxx: Deslizamiento de volumen rápido (0y: abajo; x0: arriba)" + +#: src/engine/engine.cpp:150 +msgid "FCxx: Note release" +msgstr "FCxx: Ajustar relajación (release) de nota" + +#: src/engine/engine.cpp:152 +msgid "FDxx: Set virtual tempo numerator" +msgstr "FDxx: Ajustar numerador virtual del tempo" + +#: src/engine/engine.cpp:154 +msgid "FExx: Set virtual tempo denominator" +msgstr "FExx: Ajustar denominador virtual del tempo" + +#: src/engine/engine.cpp:156 +msgid "FFxx: Stop song" +msgstr "FFxx: Parar la canción" + +#: src/engine/engine.cpp:160 +msgid "9xxx: Set sample offset*256" +msgstr "9xxx: Ajustar punto de comienzo del sample * 256" + +#: src/engine/engine.cpp:164 +msgid "90xx: Set sample offset (first byte)" +msgstr "90xx: Ajustar el primer byte del punto de comienzo del sample" + +#: src/engine/engine.cpp:166 +msgid "91xx: Set sample offset (second byte, ×256)" +msgstr "91xx: Ajustar el segundo byte del punto de comienzo del sample" + +#: src/engine/engine.cpp:168 +msgid "92xx: Set sample offset (third byte, ×65536)" +msgstr "92xx: Ajustar el tercer byte del punto de comienzo del sample" + +#: src/engine/engine.cpp:187 src/gui/settings.cpp:4127 +msgid "Invalid effect" +msgstr "Efecto inválido" + +#: src/engine/engine.cpp:354 src/gui/gui.cpp:2259 src/gui/gui.cpp:2422 +#, c-format +msgid "on seek: %s" +msgstr "al irse: %s" + +#: src/engine/engine.cpp:361 src/gui/gui.cpp:2266 src/gui/gui.cpp:2429 +#, c-format +msgid "on pre tell: %s" +msgstr "antes de decir: %s" + +#: src/engine/engine.cpp:368 src/engine/engine.cpp:2768 +#: src/gui/settings.cpp:5811 src/gui/gui.cpp:2273 src/gui/gui.cpp:2436 +msgid "file is empty" +msgstr "archivo vacío" + +#: src/engine/engine.cpp:371 src/gui/gui.cpp:2276 src/gui/gui.cpp:2439 +#, c-format +msgid "on tell: %s" +msgstr "al decir: %s" + +#: src/engine/engine.cpp:378 +#, c-format +msgid "ROM size mismatch, expected: %d bytes, was: %d" +msgstr "tamaño de ROM incorrecto, se espera: %d bytes, tuve: %d" + +#: src/engine/engine.cpp:383 src/gui/settings.cpp:5820 src/gui/gui.cpp:2283 +#: src/gui/gui.cpp:2446 +#, c-format +msgid "on get size: %s" +msgstr "al conseguir tamaño: %s" + +#: src/engine/engine.cpp:390 src/gui/settings.cpp:5827 src/gui/gui.cpp:2290 +#: src/gui/gui.cpp:2453 +#, c-format +msgid "on read: %s" +msgstr "al leer: %s" + +#: src/engine/engine.cpp:1076 src/engine/engine.cpp:1181 +#: src/engine/engine.cpp:1290 +msgid "invalid index" +msgstr "índice inválido" + +#: src/engine/engine.cpp:1080 src/engine/engine.cpp:1135 +#: src/engine/engine.cpp:1189 +#, c-format +msgid "max number of total channels is %d" +msgstr "número máximo de canales es %d" + +#: src/engine/engine.cpp:1131 src/engine/engine.cpp:1185 +#, c-format +msgid "max number of systems is %d" +msgstr "número máximo de sistemas es %d" + +#: src/engine/engine.cpp:1286 +msgid "cannot remove the last one" +msgstr "no se puede remover el último" + +#: src/engine/engine.cpp:1460 +msgid "source and destination are equal" +msgstr "origen y destino son iguales" + +#: src/engine/engine.cpp:1464 +msgid "invalid source index" +msgstr "índice de origen inválido" + +#: src/engine/engine.cpp:1468 +msgid "invalid destination index" +msgstr "índixe de destino inválido" + +#: src/engine/engine.cpp:2636 +#, c-format +msgid "Instrument %d" +msgstr "Instrumento %d" + +#: src/engine/engine.cpp:2710 src/engine/engine.cpp:2727 +#: src/gui/doAction.cpp:825 src/gui/doAction.cpp:843 src/gui/doAction.cpp:1634 +#: src/gui/gui.cpp:6159 src/gui/insEdit.cpp:6860 +msgid "too many wavetables!" +msgstr "¡demasiadas ondas!" + +#: src/engine/engine.cpp:2752 +#, c-format +msgid "could not seek to end: %s" +msgstr "no se puede ir al final: %s" + +#: src/engine/engine.cpp:2758 +#, c-format +msgid "could not determine file size: %s" +msgstr "no se puede determinar tamaño de archivo: %s" + +#: src/engine/engine.cpp:2763 +msgid "file size is invalid!" +msgstr "¡tamaño de archivo inválido!" + +#: src/engine/engine.cpp:2773 +#, c-format +msgid "could not seek to beginning: %s" +msgstr "no se puede ir al inicio: %s" + +#: src/engine/engine.cpp:2780 +#, c-format +msgid "could not read entire file: %s" +msgstr "no se puede leer el archivo: %s" + +#: src/engine/engine.cpp:2806 +msgid "invalid wavetable header/data!" +msgstr "¡cabecera/datos de onda inválid(o/a)!" + +#: src/engine/engine.cpp:2877 +msgid "premature end of file" +msgstr "fin de archivo prematuro" + +#: src/engine/engine.cpp:2904 src/engine/engine.cpp:2926 +#: src/gui/doAction.cpp:909 src/gui/doAction.cpp:921 +msgid "too many samples!" +msgstr "¡demasiados samples!" + +#: src/engine/engine.cpp:2911 +#, c-format +msgid "Sample %d" +msgstr "" + +#: src/engine/engine.cpp:3056 +#, c-format +msgid "no free patterns in channel %d!" +msgstr "¡no hay patrones libres en canal %d!" + +#: src/gui/mixer.cpp:28 src/gui/insEdit.cpp:484 +msgid "left" +msgstr "izquierda" + +#: src/gui/mixer.cpp:29 src/gui/insEdit.cpp:483 +msgid "right" +msgstr "derecha" + +#: src/gui/mixer.cpp:128 +msgid "input" +msgstr "entrada" + +#: src/gui/mixer.cpp:168 +msgid "output" +msgstr "salida" + +#: src/gui/mixer.cpp:226 src/gui/mixer.cpp:228 src/gui/editControls.cpp:454 +#: src/gui/guiConst.cpp:593 +msgid "Mixer" +msgstr "Mezcladora" + +#: src/gui/mixer.cpp:229 +msgid "Master Volume" +msgstr "Volumen Maestro" + +#: src/gui/mixer.cpp:250 src/gui/exportOptions.cpp:90 +#: src/gui/userPresets.cpp:393 src/gui/userPresets.cpp:405 +#: src/gui/settings.cpp:1080 src/gui/settings.cpp:1094 +#: src/gui/waveEdit.cpp:1096 src/gui/sampleEdit.cpp:1128 +#: src/gui/insEdit.cpp:519 +msgid "Invert" +msgstr "Invertir" + +#: src/gui/mixer.cpp:268 src/gui/chanOsc.cpp:37 src/gui/userPresets.cpp:417 +#: src/gui/settings.cpp:263 src/gui/settings.cpp:1109 src/gui/settings.cpp:1492 +#: src/gui/settings.cpp:1504 src/gui/settings.cpp:3369 +#: src/gui/settings.cpp:4015 src/gui/findReplace.cpp:687 +#: src/gui/findReplace.cpp:943 src/gui/guiConst.cpp:228 +#: src/gui/sampleEdit.cpp:1003 src/gui/insEdit.cpp:5575 +#: src/gui/insEdit.cpp:5660 src/gui/insEdit.cpp:6920 src/gui/insEdit.cpp:6928 +#: src/gui/insEdit.cpp:6936 src/gui/insEdit.cpp:6946 src/gui/insEdit.cpp:6961 +#: src/gui/insEdit.cpp:6975 src/gui/insEdit.cpp:6987 src/gui/insEdit.cpp:7000 +#: src/gui/insEdit.cpp:7016 src/gui/insEdit.cpp:7022 src/gui/insEdit.cpp:7032 +#: src/gui/insEdit.cpp:7039 src/gui/insEdit.cpp:7045 src/gui/insEdit.cpp:7058 +#: src/gui/insEdit.cpp:7065 src/gui/insEdit.cpp:7072 src/gui/insEdit.cpp:7081 +#: src/gui/insEdit.cpp:7091 src/gui/insEdit.cpp:7099 src/gui/insEdit.cpp:7105 +#: src/gui/insEdit.cpp:7113 src/gui/insEdit.cpp:7120 src/gui/insEdit.cpp:7126 +#: src/gui/insEdit.cpp:7136 src/gui/insEdit.cpp:7148 src/gui/insEdit.cpp:7156 +#: src/gui/insEdit.cpp:7172 src/gui/insEdit.cpp:7177 src/gui/insEdit.cpp:7190 +#: src/gui/insEdit.cpp:7197 src/gui/insEdit.cpp:7208 src/gui/insEdit.cpp:7221 +#: src/gui/insEdit.cpp:7230 src/gui/insEdit.cpp:7237 src/gui/insEdit.cpp:7245 +#: src/gui/insEdit.cpp:7258 src/gui/insEdit.cpp:7263 src/gui/insEdit.cpp:7269 +#: src/gui/insEdit.cpp:7276 src/gui/insEdit.cpp:7284 src/gui/insEdit.cpp:7295 +#: src/gui/insEdit.cpp:7302 src/gui/insEdit.cpp:7310 src/gui/insEdit.cpp:7318 +#: src/gui/insEdit.cpp:7327 src/gui/insEdit.cpp:7335 src/gui/insEdit.cpp:7341 +#: src/gui/insEdit.cpp:7347 src/gui/insEdit.cpp:7353 src/gui/insEdit.cpp:7358 +#: src/gui/insEdit.cpp:7365 src/gui/insEdit.cpp:7372 src/gui/insEdit.cpp:7380 +#: src/gui/insEdit.cpp:7389 src/gui/insEdit.cpp:7397 src/gui/insEdit.cpp:7409 +#: src/gui/insEdit.cpp:7422 src/gui/insEdit.cpp:7433 src/gui/insEdit.cpp:7443 +#: src/gui/insEdit.cpp:7451 src/gui/insEdit.cpp:7461 src/gui/insEdit.cpp:7470 +msgid "Volume" +msgstr "Volumen" + +#: src/gui/mixer.cpp:279 src/gui/userPresets.cpp:427 src/gui/settings.cpp:1120 +#: src/gui/guiConst.cpp:229 src/gui/insEdit.cpp:6923 src/gui/insEdit.cpp:6930 +#: src/gui/insEdit.cpp:6941 src/gui/insEdit.cpp:6965 src/gui/insEdit.cpp:7067 +#: src/gui/insEdit.cpp:7108 src/gui/insEdit.cpp:7152 src/gui/insEdit.cpp:7192 +#: src/gui/insEdit.cpp:7212 src/gui/insEdit.cpp:7232 src/gui/insEdit.cpp:7240 +#: src/gui/insEdit.cpp:7253 src/gui/insEdit.cpp:7265 src/gui/insEdit.cpp:7271 +#: src/gui/insEdit.cpp:7287 src/gui/insEdit.cpp:7297 src/gui/insEdit.cpp:7360 +#: src/gui/insEdit.cpp:7392 src/gui/insEdit.cpp:7438 src/gui/insEdit.cpp:7446 +msgid "Panning" +msgstr "Balance" + +#: src/gui/mixer.cpp:290 src/gui/userPresets.cpp:433 src/gui/settings.cpp:1127 +msgid "Front/Rear" +msgstr "Frente/Trasero" + +#: src/gui/mixer.cpp:299 src/gui/settings.cpp:4208 +msgid "Patchbay" +msgstr "Conexiones" + +#: src/gui/mixer.cpp:305 +msgid "Automatic patchbay" +msgstr "Conexiones automáticas" + +#: src/gui/mixer.cpp:310 +msgid "Display hidden ports" +msgstr "Mostrar puertos ocultos" + +#: src/gui/mixer.cpp:312 +msgid "Display internal" +msgstr "Mostrar interno" + +#: src/gui/mixer.cpp:322 src/gui/mixer.cpp:383 src/gui/settings.cpp:1901 +#: src/gui/settings.cpp:2089 src/gui/songInfo.cpp:69 +msgid "System" +msgstr "Sistema" + +#: src/gui/mixer.cpp:354 +msgid "Sample Preview" +msgstr "Muestra de Samples" + +#: src/gui/mixer.cpp:367 src/gui/editControls.cpp:745 +#: src/gui/editControls.cpp:837 src/gui/editControls.cpp:953 +#: src/gui/editControls.cpp:1093 src/gui/settings.cpp:1490 +#: src/gui/guiConst.cpp:558 +msgid "Metronome" +msgstr "Metrónomo" + +#: src/gui/mixer.cpp:446 +msgid "disconnect all" +msgstr "desconectar todo" + +#: src/gui/editing.cpp:200 +#, c-format +msgid "no data in oldPatMap for channel %d!" +msgstr "¡no hay datos en oldPatMap para el canal %d!" + +#: src/gui/editing.cpp:664 src/gui/editing.cpp:1203 +#, c-format +msgid "invalid clipboard data! failed at line %d char %d" +msgstr "¡datos de portapapeles inválidos! falló en la línea %d, columna %d!" + +#: src/gui/editing.cpp:1565 src/gui/editing.cpp:1669 +msgid "can't collapse any further!" +msgstr "¡no se puede colapsar más!" + +#: src/gui/editing.cpp:1749 +msgid "can't expand any further!" +msgstr "¡no se puede expandir más!" + +#: src/gui/editing.cpp:1836 src/gui/editing.cpp:1851 +#, c-format +msgid "copy: %s" +msgstr "copiar: %s" + +#: src/gui/memory.cpp:35 src/gui/settings.cpp:3696 src/gui/settings.cpp:4217 +#: src/gui/guiConst.cpp:613 +msgid "Memory Composition" +msgstr "Composición de Memoria" + +#: src/gui/memory.cpp:146 +#, c-format +msgid "bank %d" +msgstr "banco %d" + +#: src/gui/memory.cpp:175 src/gui/memory.cpp:176 +msgid "no chips with memory" +msgstr "no hay chips con memoria" + +#: src/gui/intro.cpp:89 src/gui/gui.cpp:2345 src/gui/gui.cpp:3746 +#: src/gui/gui.cpp:5019 src/gui/gui.cpp:5041 src/gui/gui.cpp:5479 +#: src/gui/gui.cpp:5781 src/gui/gui.cpp:5791 +#, c-format +msgid "Error while loading file! (%s)" +msgstr "¡Error al cargar el archivo! (%s)" + +#: src/gui/intro.cpp:122 +msgid "IntroMon X" +msgstr "" + +#: src/gui/intro.cpp:122 +msgid "Intro" +msgstr "" + +#: src/gui/intro.cpp:124 +msgid "Preview" +msgstr "Vista previa" + +#: src/gui/intro.cpp:176 src/gui/intro.cpp:177 src/gui/intro.cpp:178 +msgid "SORRY NOTHING" +msgstr "DISCULPA NADA" + +#: src/gui/intro.cpp:310 +msgid "hold to skip" +msgstr "sostener para saltar" + +#: src/gui/dataList.cpp:76 +msgid "Bug!" +msgstr "¡Insecto!" + +#: src/gui/dataList.cpp:79 src/gui/util.cpp:107 src/gui/util.cpp:109 +#: src/gui/settings.cpp:4220 src/gui/insEdit.cpp:5334 +msgid "Unknown" +msgstr "Desconocido" + +#: src/gui/dataList.cpp:136 src/gui/dataList.cpp:260 +msgid "duplicate" +msgstr "duplicar" + +#: src/gui/dataList.cpp:139 src/gui/dataList.cpp:263 src/gui/dataList.cpp:388 +#: src/gui/dataList.cpp:731 src/gui/dataList.cpp:867 +msgid "replace..." +msgstr "reemplazar" + +#: src/gui/dataList.cpp:142 src/gui/dataList.cpp:266 src/gui/gui.cpp:4232 +msgid "save" +msgstr "guardar" + +#: src/gui/dataList.cpp:145 +msgid "save (.dmp)" +msgstr "guardar (.dmp)" + +#: src/gui/dataList.cpp:148 src/gui/dataList.cpp:269 src/gui/dataList.cpp:617 +#: src/gui/dataList.cpp:994 src/gui/dataList.cpp:1040 +#: src/gui/editControls.cpp:50 src/gui/gui.cpp:2767 src/gui/gui.cpp:2776 +msgid "delete" +msgstr "borrar" + +#: src/gui/dataList.cpp:243 +msgid "out of memory for this sample!" +msgstr "¡no queda memoria para este sample!" + +#: src/gui/dataList.cpp:254 +msgid "make instrument" +msgstr "crear instrumento" + +#: src/gui/dataList.cpp:257 +msgid "make me a drum kit" +msgstr "hacer un kit de batería" + +#: src/gui/dataList.cpp:290 src/gui/dataList.cpp:593 src/gui/gui.cpp:5914 +msgid "Instruments" +msgstr "Instrumentos" + +#: src/gui/dataList.cpp:312 src/gui/dataList.cpp:714 src/gui/dataList.cpp:846 +#: src/gui/subSongs.cpp:88 src/gui/insEdit.cpp:520 +msgid "Add" +msgstr "Añadir" + +#: src/gui/dataList.cpp:338 src/gui/dataList.cpp:721 src/gui/dataList.cpp:853 +#: src/gui/subSongs.cpp:108 +msgid "Duplicate" +msgstr "Duplicar" + +#: src/gui/dataList.cpp:359 src/gui/dataList.cpp:728 src/gui/dataList.cpp:860 +#: src/gui/editControls.cpp:497 src/gui/waveEdit.cpp:435 +#: src/gui/waveEdit.cpp:467 src/gui/sampleEdit.cpp:122 +#: src/gui/sampleEdit.cpp:171 src/gui/insEdit.cpp:5239 src/gui/insEdit.cpp:5304 +msgid "Open" +msgstr "Abrir" + +#: src/gui/dataList.cpp:363 +msgid "replace instrument..." +msgstr "reemplazar instrumento..." + +#: src/gui/dataList.cpp:366 +msgid "load instrument from TX81Z" +msgstr "cargar un instrumento del TX81Z" + +#: src/gui/dataList.cpp:372 +msgid "replace wavetable..." +msgstr "reemplazar wavetable..." + +#: src/gui/dataList.cpp:378 +msgid "replace sample..." +msgstr "reemplazar sample..." + +#: src/gui/dataList.cpp:381 +msgid "import raw sample..." +msgstr "importar sample en bruto..." + +#: src/gui/dataList.cpp:384 +msgid "import raw sample (replace)..." +msgstr "importar sample en bruto (reemplazar)..." + +#: src/gui/dataList.cpp:392 +msgid "load from TX81Z" +msgstr "cargar desde un TX81Z" + +#: src/gui/dataList.cpp:399 +msgid "Open (insert; right-click to replace)" +msgstr "Abrir (insertar; click derecho para reemplazar)" + +#: src/gui/dataList.cpp:420 src/gui/dataList.cpp:741 src/gui/dataList.cpp:884 +#: src/gui/editControls.cpp:502 src/gui/waveEdit.cpp:474 +#: src/gui/sampleEdit.cpp:184 src/gui/insEdit.cpp:5311 +msgid "Save" +msgstr "Guardar" + +#: src/gui/dataList.cpp:424 +msgid "save instrument as .dmp..." +msgstr "guardar instrumento como .dmp..." + +#: src/gui/dataList.cpp:430 +msgid "save wavetable as .dmw..." +msgstr "guardar onda como .dmw..." + +#: src/gui/dataList.cpp:433 +msgid "save raw wavetable..." +msgstr "guardar onda en bruto..." + +#: src/gui/dataList.cpp:439 +msgid "save raw sample..." +msgstr "guardar sample en bruto" + +#: src/gui/dataList.cpp:443 src/gui/insEdit.cpp:5314 +msgid "save as .dmp..." +msgstr "guardar como .dmp..." + +#: src/gui/dataList.cpp:456 src/gui/dataList.cpp:761 src/gui/dataList.cpp:903 +msgid "Toggle folders/standard view" +msgstr "Cambiar entre vista de carpeta y vista estándar" + +#: src/gui/dataList.cpp:478 src/gui/dataList.cpp:769 src/gui/dataList.cpp:911 +#: src/gui/subSongs.cpp:55 +msgid "Move up" +msgstr "Mover hacia arriba" + +#: src/gui/dataList.cpp:499 src/gui/dataList.cpp:776 src/gui/dataList.cpp:918 +#: src/gui/subSongs.cpp:62 +msgid "Move down" +msgstr "Mover hacia abajo" + +#: src/gui/dataList.cpp:510 src/gui/dataList.cpp:787 src/gui/dataList.cpp:929 +msgid "Create" +msgstr "Crear" + +#: src/gui/dataList.cpp:540 src/gui/dataList.cpp:797 src/gui/dataList.cpp:939 +msgid "New folder" +msgstr "Nueva carpeta" + +#: src/gui/dataList.cpp:549 src/gui/dataList.cpp:947 +msgid "Preview (right click to stop)" +msgstr "Previsualizar (click derecho para detener)" + +#: src/gui/dataList.cpp:576 src/gui/dataList.cpp:807 src/gui/dataList.cpp:959 +#: src/gui/guiConst.cpp:666 src/gui/sampleEdit.cpp:1105 +msgid "Delete" +msgstr "Borrar" + +#: src/gui/dataList.cpp:608 src/gui/dataList.cpp:985 src/gui/dataList.cpp:1031 +msgid "" +msgstr "" + +#: src/gui/dataList.cpp:614 src/gui/dataList.cpp:991 src/gui/dataList.cpp:1037 +msgid "rename..." +msgstr "renombrar..." + +#: src/gui/dataList.cpp:663 src/gui/dataList.cpp:707 src/gui/gui.cpp:5923 +msgid "Wavetables" +msgstr "Ondas" + +#: src/gui/dataList.cpp:674 src/gui/dataList.cpp:839 src/gui/xyOsc.cpp:68 +#: src/gui/sampleEdit.cpp:898 src/gui/sampleEdit.cpp:1072 src/gui/gui.cpp:5932 +msgid "Samples" +msgstr "" + +#: src/gui/dataList.cpp:745 src/gui/waveEdit.cpp:477 +msgid "save as .dmw..." +msgstr "guardar como .dmw..." + +#: src/gui/dataList.cpp:748 src/gui/dataList.cpp:891 src/gui/waveEdit.cpp:480 +#: src/gui/sampleEdit.cpp:187 +msgid "save raw..." +msgstr "guardar en bruto..." + +#: src/gui/dataList.cpp:871 src/gui/sampleEdit.cpp:174 +msgid "import raw..." +msgstr "importar desde archivo en bruto..." + +#: src/gui/dataList.cpp:874 +msgid "import raw (replace)..." +msgstr "importar desde archivo en bruto (reemplazar)..." + +#: src/gui/exportOptions.cpp:29 +msgid "Export type:" +msgstr "Tipo de exportación" + +#: src/gui/exportOptions.cpp:32 +msgid "one file" +msgstr "un archivo" + +#: src/gui/exportOptions.cpp:35 +msgid "multiple files (one per chip)" +msgstr "múltiples archivos (uno por chip)" + +#: src/gui/exportOptions.cpp:38 +msgid "multiple files (one per channel)" +msgstr "multiples archivos (uno por canal)" + +#: src/gui/exportOptions.cpp:44 +msgid "Bit depth:" +msgstr "Profundidad de bits" + +#: src/gui/exportOptions.cpp:46 +msgid "16-bit integer" +msgstr "entero de 16 bits" + +#: src/gui/exportOptions.cpp:49 +msgid "32-bit float" +msgstr "flotante de 32-bits" + +#: src/gui/exportOptions.cpp:55 src/gui/settings.cpp:1352 src/gui/gui.cpp:6270 +msgid "Sample rate" +msgstr "Tasa de samples" + +#: src/gui/exportOptions.cpp:61 +msgid "Channels in file" +msgstr "Canales en el archivo" + +#: src/gui/exportOptions.cpp:67 src/gui/settings.cpp:930 +msgid "Loops" +msgstr "Bucles" + +#: src/gui/exportOptions.cpp:70 src/gui/settings.cpp:935 +msgid "Fade out (seconds)" +msgstr "Tiempo de caída (en segundos)" + +#: src/gui/exportOptions.cpp:76 +msgid "Channels to export:" +msgstr "Canales para exportar:" + +#: src/gui/exportOptions.cpp:78 src/gui/effectList.cpp:32 src/gui/gui.cpp:6186 +msgid "All" +msgstr "Todos" + +#: src/gui/exportOptions.cpp:84 src/gui/sysConf.cpp:1870 +#: src/gui/effectList.cpp:34 src/gui/compatFlags.cpp:219 +#: src/gui/waveEdit.cpp:37 src/gui/gui.cpp:6192 src/gui/insEdit.cpp:518 +msgid "None" +msgstr "Ninguno" + +#: src/gui/exportOptions.cpp:110 src/gui/exportOptions.cpp:214 +#: src/gui/exportOptions.cpp:225 src/gui/exportOptions.cpp:243 +#: src/gui/exportOptions.cpp:266 src/gui/exportOptions.cpp:297 +#: src/gui/exportOptions.cpp:318 src/gui/exportOptions.cpp:341 +#: src/gui/commandPalette.cpp:199 src/gui/settings.cpp:6673 +#: src/gui/newSong.cpp:273 src/gui/gui.cpp:5669 src/gui/gui.cpp:5693 +#: src/gui/gui.cpp:5717 src/gui/gui.cpp:5741 src/gui/gui.cpp:5765 +#: src/gui/gui.cpp:5796 src/gui/gui.cpp:5855 src/gui/gui.cpp:6229 +#: src/gui/gui.cpp:6353 +msgid "Cancel" +msgstr "Cancelar" + +#: src/gui/exportOptions.cpp:115 src/gui/exportOptions.cpp:217 +#: src/gui/exportOptions.cpp:246 src/gui/exportOptions.cpp:300 +#: src/gui/exportOptions.cpp:321 src/gui/exportOptions.cpp:344 +#: src/gui/editControls.cpp:512 src/gui/userPresets.cpp:523 +#: src/gui/settings.cpp:1242 src/gui/settings.cpp:2165 +#: src/gui/settings.cpp:2557 src/gui/settings.cpp:3800 src/gui/guiConst.cpp:536 +#: src/gui/gui.cpp:5578 src/gui/gui.cpp:5630 +msgid "Export" +msgstr "Exportar" + +#: src/gui/exportOptions.cpp:130 +msgid "select at least one channel" +msgstr "selecciona al menos un canal" + +#: src/gui/exportOptions.cpp:137 +msgid "settings:" +msgstr "ajustes:" + +#: src/gui/exportOptions.cpp:138 +msgid "format version" +msgstr "version del formato" + +#: src/gui/exportOptions.cpp:146 src/gui/exportOptions.cpp:238 +#: src/gui/insEdit.cpp:362 +msgid "loop" +msgstr "en bucle" + +#: src/gui/exportOptions.cpp:148 +msgid "loop trail:" +msgstr "cola del bucle:" + +#: src/gui/exportOptions.cpp:150 +msgid "auto-detect" +msgstr "auto-detectar" + +#: src/gui/exportOptions.cpp:153 +msgid "add one loop" +msgstr "añadir una" + +#: src/gui/exportOptions.cpp:156 +msgid "custom" +msgstr "personalizada" + +#: src/gui/exportOptions.cpp:167 +msgid "add pattern change hints" +msgstr "añadir pistas de cambio de patrón" + +#: src/gui/exportOptions.cpp:170 +msgid "" +"inserts data blocks on pattern changes.\n" +"useful if you are writing a playback routine.\n" +"\n" +"the format of a pattern change data block is:\n" +"67 66 FE ll ll ll ll 01 oo rr pp pp pp ...\n" +"- ll: length, a 32-bit little-endian number\n" +"- oo: order\n" +"- rr: initial row (a 0Dxx effect is able to select a different row)\n" +"- pp: pattern index (one per channel)\n" +"\n" +"pattern indexes are ordered as they appear in the song." +msgstr "" +"inserta bloques de datos en cada cambio de patrón.\n" +"es util si estás escribiendo una rutina de playback.\n" +"\n" +"el formato de un bloque de datos de cambio de patrón es:\n" +"67 66 FE ll ll ll ll 01 oo rr pp pp pp ...\n" +"- ll: la longitud, un número little-endian de 32 bits\n" +"- oo: el orden\n" +"- rr: la fila inicial (un efecto 0Dxx puede selecionar una fila distinta)\n" +"- pp: el índice del patrón (uno por canal)\n" +"\n" +"los índices de patrón están ordenados tal y como aparecen en la canción." + +#: src/gui/exportOptions.cpp:183 +msgid "direct stream mode" +msgstr "modo de corriente directa" + +#: src/gui/exportOptions.cpp:186 +msgid "" +"required for DualPCM and MSM6258 export.\n" +"\n" +"allows for volume/direction changes when playing samples,\n" +"at the cost of a massive increase in file size." +msgstr "" +"requerido para la exportación de DualPCM y MSM6258.\n" +"\n" +"permite cambios de volumen o dirección al reproducir samples,\n" +"a cambio de un increible aumento en el tamaño del archivo." + +#: src/gui/exportOptions.cpp:191 +msgid "chips to export:" +msgstr "chips para exportar:" + +#: src/gui/exportOptions.cpp:200 +#, c-format +msgid "this chip is only available in VGM %d.%.2x and higher!" +msgstr "¡este chip solo está disponible a partir de VGM %d.%.2x!" + +#: src/gui/exportOptions.cpp:204 +msgid "this chip is not supported by the VGM format!" +msgstr "¡este chip no está soportado por el formato VGM!" + +#: src/gui/exportOptions.cpp:210 +#, c-format +msgid "select the chip you wish to export, but only up to %d of each type." +msgstr "" +"selecciona el chip que quieras exportar, pero solo hasta %d de cada tipo." + +#: src/gui/exportOptions.cpp:222 +msgid "nothing to export" +msgstr "no hay nada que exportar" + +#: src/gui/exportOptions.cpp:233 +msgid "Commander X16 Zsound Music File" +msgstr "Archivo de música Commander X16 Zsound" + +#: src/gui/exportOptions.cpp:234 +msgid "Tick Rate (Hz)" +msgstr "Velocidad de ticks (en Hz)" + +#: src/gui/exportOptions.cpp:240 +msgid "optimize size" +msgstr "optimizar tamaño" + +#: src/gui/exportOptions.cpp:256 src/gui/editControls.cpp:630 +msgid "" +"this is NOT ROM export! only use for making sure the\n" +"Furnace Amiga emulator is working properly by\n" +"comparing it with real Amiga output." +msgstr "" +"esto NO EXPORTA ROMS! solo úsalo para asegurar que\n" +"el emulador de Amiga de Furnace está funcionando correctamente\n" +"comparandolo con la salida de una Amiga real." + +#: src/gui/exportOptions.cpp:261 src/gui/editControls.cpp:635 +#: src/gui/settings.cpp:3925 +msgid "Directory" +msgstr "Directorio" + +#: src/gui/exportOptions.cpp:269 src/gui/editControls.cpp:638 +msgid "Bake Data" +msgstr "Hornear datos" + +#: src/gui/exportOptions.cpp:284 src/gui/editControls.cpp:653 +#, c-format +msgid "Done! Baked %d files." +msgstr "Hecho! Se hornearon %d archivos." + +#: src/gui/exportOptions.cpp:293 +msgid "this option exports the song to a text file.\n" +msgstr "esta opción exporta la canción a un archivo de texto.\n" + +#: src/gui/exportOptions.cpp:310 +msgid "" +"this option exports a text or binary file which\n" +"contains a dump of the internal command stream\n" +"produced when playing the song.\n" +"\n" +"technical/development use only!" +msgstr "" +"esta opción exporta a un archivo binario o de texto, el cual\n" +"contiene un volcado de la corriente de comandos interna\n" +"producida al reproducir la canción.\n" +"\n" +"solo para uso técnico o de desarrollo!" + +#: src/gui/exportOptions.cpp:331 +msgid "" +"export in DefleMask module format.\n" +"only do it if you really, really need to, or are downgrading an existing ." +"dmf." +msgstr "" +"exporta al formato de módulos de DefleMask.\n" +"solo hazlo si de verdad tienes que, o si estas degradando un .dmf existente." + +#: src/gui/exportOptions.cpp:335 +msgid "format version:" +msgstr "version del formato:" + +#: src/gui/exportOptions.cpp:336 +msgid "1.1.3 and higher" +msgstr "de 1.1.3 en adelante" + +#: src/gui/exportOptions.cpp:337 +msgid "1.0/legacy (0.12)" +msgstr "1.0 o legacy (0.12)" + +#: src/gui/exportOptions.cpp:357 src/gui/settings.cpp:1253 +#: src/gui/settings.cpp:3929 +msgid "Audio" +msgstr "" + +#: src/gui/exportOptions.cpp:361 src/gui/settings.cpp:3931 +msgid "VGM" +msgstr "" + +#: src/gui/exportOptions.cpp:370 src/gui/settings.cpp:3932 +msgid "ZSM" +msgstr "" + +#: src/gui/exportOptions.cpp:380 +msgid "Amiga Validation" +msgstr "Validación de Amiga" + +#: src/gui/exportOptions.cpp:385 src/gui/settings.cpp:2959 +#: src/gui/settings.cpp:3891 +msgid "Text" +msgstr "Texto" + +#: src/gui/exportOptions.cpp:389 +msgid "Command Stream" +msgstr "Corriente de comandos" + +#: src/gui/exportOptions.cpp:393 +msgid "DMF" +msgstr "" + +#: src/gui/exportOptions.cpp:422 +msgid "congratulations! you've unlocked a secret panel." +msgstr "felicitaciones! has desbloqueado un panel secreto." + +#: src/gui/exportOptions.cpp:423 +msgid "Toggle hidden systems" +msgstr "Activar sistemas escondidos" + +#: src/gui/exportOptions.cpp:427 +msgid "Toggle all instrument types" +msgstr "Activar todos los tipos de instrumento" + +#: src/gui/exportOptions.cpp:431 +msgid "Set pitch linearity to Partial" +msgstr "Cambiar la linealidad del tono a Parcial" + +#: src/gui/exportOptions.cpp:435 +msgid "Enable multi-threading settings" +msgstr "Activar ajustes de multi-threading" + +#: src/gui/exportOptions.cpp:439 +msgid "Set fat to max" +msgstr "Cambiar gordura al máximo" + +#: src/gui/exportOptions.cpp:446 +msgid "Set muscle and fat to zero" +msgstr "Reduce la musculatura al zero" + +#: src/gui/exportOptions.cpp:453 +msgid "Tell tildearrow this must be a mistake" +msgstr "Dile a tildearrow que esto tiene que ser un error" + +#: src/gui/exportOptions.cpp:454 +msgid "" +"yeah, it's a bug. write a bug report in the GitHub page and tell me how did " +"you get here." +msgstr "" +"sip, es un bug. escribe un reporte de bug en GitHub que diga como rayos " +"llegaste aquí." + +#: src/gui/speed.cpp:32 src/gui/speed.cpp:102 src/gui/editControls.cpp:532 +#: src/gui/sysConf.cpp:2148 src/gui/guiConst.cpp:232 src/gui/guiConst.cpp:581 +#: src/gui/insEdit.cpp:2028 src/gui/insEdit.cpp:5693 src/gui/insEdit.cpp:6885 +msgid "Speed" +msgstr "Velocidad" + +#: src/gui/speed.cpp:41 +msgid "Base Tempo##TempoOrHz" +msgstr "Tempo base##TempoOrHz" + +#: src/gui/speed.cpp:41 +msgid "Tick Rate##TempoOrHz" +msgstr "Velocidad de ticks##TempoOrHz" + +#: src/gui/speed.cpp:46 +msgid "click to display tick rate" +msgstr "haz clic para mostrar la velocidad de los ticks" + +#: src/gui/speed.cpp:48 +msgid "click to display base tempo" +msgstr "haz clic para mostrar el tempo base" + +#: src/gui/speed.cpp:80 +msgid "Groove" +msgstr "" + +#: src/gui/speed.cpp:87 +msgid "click for one speed" +msgstr "haz clic para una velocidad" + +#: src/gui/speed.cpp:90 +msgid "Speeds" +msgstr "Velocidades" + +#: src/gui/speed.cpp:99 +msgid "click for groove pattern" +msgstr "haz clic para un patrón de groove" + +#: src/gui/speed.cpp:110 +msgid "click for two (alternating) speeds" +msgstr "haz clic para dos velocidades (alternantes)" + +#: src/gui/speed.cpp:168 +msgid "Virtual Tempo" +msgstr "Tempo virtual" + +#: src/gui/speed.cpp:177 +msgid "Numerator" +msgstr "Numerador" + +#: src/gui/speed.cpp:187 +msgid "Denominator (set to base tempo)" +msgstr "Denominador (asignado al tempo base)" + +#: src/gui/speed.cpp:193 +msgid "Divider" +msgstr "Divisor" + +#: src/gui/speed.cpp:208 +msgid "Highlight" +msgstr "Resaltado" + +#: src/gui/speed.cpp:231 +msgid "Pattern Length" +msgstr "Longitud de patrón" + +#: src/gui/speed.cpp:245 +msgid "Song Length" +msgstr "Longitud de canción" + +#: src/gui/channels.cpp:40 src/gui/editControls.cpp:446 +#: src/gui/guiConst.cpp:601 src/gui/gui.cpp:6280 +msgid "Channels" +msgstr "Canales" + +#: src/gui/channels.cpp:49 +msgid "Pat" +msgstr "" + +#: src/gui/channels.cpp:51 src/gui/editControls.cpp:550 +msgid "Osc" +msgstr "" + +#: src/gui/channels.cpp:53 +msgid "Swap" +msgstr "Intercambiar" + +#: src/gui/channels.cpp:55 src/gui/userPresets.cpp:368 +#: src/gui/effectList.cpp:45 src/gui/subSongs.cpp:125 src/gui/settings.cpp:1060 +#: src/gui/settings.cpp:4383 src/gui/sampleEdit.cpp:195 src/gui/songInfo.cpp:40 +#: src/gui/sysManager.cpp:54 src/gui/insEdit.cpp:5288 +msgid "Name" +msgstr "Nombre" + +#: src/gui/channels.cpp:64 +msgid "Show in pattern" +msgstr "Mostrar en el patrón" + +#: src/gui/channels.cpp:71 +msgid "Show in per-channel oscilloscope" +msgstr "Mostrar en el osciloscopio por canal" + +#: src/gui/channels.cpp:82 +#, c-format +msgid "" +"%s #%d\n" +"(drag to swap channels)" +msgstr "" +"%s #%d\n" +"(arrastra para intercambiar canales)" + +#: src/gui/commandPalette.cpp:51 src/gui/sysPicker.cpp:35 +#: src/gui/newSong.cpp:133 +msgid "Search..." +msgstr "Buscar..." + +#: src/gui/commandPalette.cpp:54 +msgid "Search recent files..." +msgstr "Buscar archivos recientes..." + +#: src/gui/commandPalette.cpp:57 +msgid "Search instruments..." +msgstr "Buscar instrumentos..." + +#: src/gui/commandPalette.cpp:60 +msgid "Search samples..." +msgstr "Buscar samples..." + +#: src/gui/commandPalette.cpp:63 +msgid "Search instruments (to change to)..." +msgstr "Buscar instrumentos a los que cambiar..." + +#: src/gui/commandPalette.cpp:66 +msgid "Search chip (to add)..." +msgstr "Buscar chip para agregar..." + +#: src/gui/commandPalette.cpp:93 src/gui/commandPalette.cpp:167 +msgid "- None -" +msgstr "- Ninguno -" + +#: src/gui/commandPalette.cpp:123 src/gui/commandPalette.cpp:179 +#: src/gui/commandPalette.cpp:241 +msgid "invalid command palette type" +msgstr "tipo de paleta de comandos inválida" + +#: src/gui/regView.cpp:30 src/gui/guiConst.cpp:604 +msgid "Register View" +msgstr "Vista de registros" + +#: src/gui/regView.cpp:38 +msgid "- no register pool available" +msgstr "- no hay lista de registros disponible" + +#: src/gui/log.cpp:25 src/gui/effectList.cpp:84 +msgid "ERROR" +msgstr "ERROR" + +#: src/gui/log.cpp:26 +msgid "warning" +msgstr "atención" + +#: src/gui/log.cpp:27 +msgid "info" +msgstr "información" + +#: src/gui/log.cpp:28 src/gui/gui.cpp:4513 +msgid "debug" +msgstr "depuración" + +#: src/gui/log.cpp:29 +msgid "trace" +msgstr "seguimiento" + +#: src/gui/log.cpp:47 src/gui/settings.cpp:4243 src/gui/guiConst.cpp:605 +msgid "Log Viewer" +msgstr "Visor del registro" + +#: src/gui/log.cpp:48 src/gui/editControls.cpp:750 src/gui/editControls.cpp:883 +#: src/gui/editControls.cpp:1000 +msgid "Follow" +msgstr "Seguir" + +#: src/gui/log.cpp:50 src/gui/waveEdit.cpp:681 src/gui/insEdit.cpp:50 +msgid "Level" +msgstr "Nivel" + +#: src/gui/log.cpp:68 +msgid "time" +msgstr "tiempo" + +#: src/gui/log.cpp:70 +msgid "level" +msgstr "nivel" + +#: src/gui/log.cpp:72 +msgid "message" +msgstr "mensaje" + +#: src/gui/pattern.cpp:433 src/gui/editControls.cpp:421 +#: src/gui/editControls.cpp:754 src/gui/editControls.cpp:887 +#: src/gui/editControls.cpp:1015 src/gui/settings.cpp:2344 +#: src/gui/settings.cpp:3297 src/gui/settings.cpp:4100 +#: src/gui/findReplace.cpp:794 src/gui/guiConst.cpp:582 src/gui/gui.cpp:5899 +msgid "Pattern" +msgstr "Patrón" + +#: src/gui/pattern.cpp:468 +msgid "there aren't any channels to show." +msgstr "no hay canales que mostrar." + +#: src/gui/pattern.cpp:492 +msgid "click for pattern options (effect columns/pattern names/visualizer)" +msgstr "" +"haz clic para opciones de patrón (columnas de efecto/nombres de patrón/" +"visualizador)" + +#: src/gui/pattern.cpp:504 +msgid "Options:" +msgstr "Opciones:" + +#: src/gui/pattern.cpp:506 +msgid "Effect columns/collapse" +msgstr "Mostrar/esconder columnas de efecto" + +#: src/gui/pattern.cpp:507 +msgid "Pattern names" +msgstr "Mostrar nombres de patrón" + +#: src/gui/pattern.cpp:508 +msgid "Channel group hints" +msgstr "Pistas de agrupado de canales" + +#: src/gui/pattern.cpp:509 +msgid "Visualizer" +msgstr "Visualizador" + +#: src/gui/pattern.cpp:517 +msgid "Channel status:" +msgstr "Mostrar estado del canal:" + +#: src/gui/pattern.cpp:519 +msgid "No##_PCS0" +msgstr "No##_PCS0" + +#: src/gui/pattern.cpp:522 +msgid "Yes##_PCS1" +msgstr "Si##_PCS1" + +#: src/gui/pattern.cpp:1420 src/gui/pattern.cpp:1452 +msgid "WARNING!!" +msgstr "CUIDADO!!" + +#: src/gui/pattern.cpp:1422 src/gui/pattern.cpp:1459 +msgid "this instrument cannot be previewed because" +msgstr "este instrumento no puede ser previsualizado porque" + +#: src/gui/pattern.cpp:1423 src/gui/pattern.cpp:1466 +msgid "none of the chips can play it" +msgstr "ninguno de los chips puede reproducirlo" + +#: src/gui/pattern.cpp:1424 src/gui/pattern.cpp:1473 +msgid "your instrument is in peril!! be careful..." +msgstr "tu instrumento esta en apuros!! se cuidadoso..." + +#: src/gui/osc.cpp:169 src/gui/settings.cpp:3710 src/gui/settings.cpp:3937 +msgid "Oscilloscope" +msgstr "Osciloscopio" + +#: src/gui/osc.cpp:176 +#, c-format +msgid "zoom: %.2fx (%.1fdB)" +msgstr "zoom: %.2fx (%.1fdB)" + +#: src/gui/osc.cpp:187 +#, c-format +msgid "window size: %.1fms" +msgstr "tamaño de la ventana: %.1fms" + +#: src/gui/osc.cpp:385 +msgid "(-Infinity)dB" +msgstr "(-infinito)dB" + +#: src/gui/debugWindow.cpp:66 src/gui/editControls.cpp:610 +msgid "Debug" +msgstr "Debug" + +#: src/gui/debugWindow.cpp:663 +msgid "This is a language test." +msgstr "Este es una prueba de idioma." + +#: src/gui/debugWindow.cpp:664 +msgid "This is another language test." +msgstr "Este es otra prueba de idioma." + +#: src/gui/debugWindow.cpp:720 +#, c-format +msgid "%d apple" +msgid_plural "%d apples" +msgstr[0] "%d manzana" +msgstr[1] "%d manzanas" + +#: src/gui/chanOsc.cpp:32 +msgid "None (0%)" +msgstr "Ninguno (0%)" + +#: src/gui/chanOsc.cpp:33 +msgid "None (50%)" +msgstr "Ninguno (50%)" + +#: src/gui/chanOsc.cpp:34 +msgid "None (100%)" +msgstr "Ninguno (100%)" + +#: src/gui/chanOsc.cpp:36 +msgid "Frequency" +msgstr "Frecuencia" + +#: src/gui/chanOsc.cpp:38 src/gui/settings.cpp:1667 src/gui/settings.cpp:3406 +#: src/gui/settings.cpp:4088 +msgid "Channel" +msgstr "Canal" + +#: src/gui/chanOsc.cpp:39 +msgid "Brightness" +msgstr "Brillo" + +#: src/gui/chanOsc.cpp:41 +msgid "Note Trigger" +msgstr "Tocar Nota" + +#: src/gui/chanOsc.cpp:45 +msgid "Off" +msgstr "Apagado" + +#: src/gui/chanOsc.cpp:46 +msgid "Mode 1" +msgstr "Modo 1" + +#: src/gui/chanOsc.cpp:47 +msgid "Mode 2" +msgstr "Modo 2" + +#: src/gui/chanOsc.cpp:48 +msgid "Mode 3" +msgstr "Modo 3" + +#: src/gui/chanOsc.cpp:135 src/gui/guiConst.cpp:607 +msgid "Oscilloscope (per-channel)" +msgstr "Osciloscopio (uno por canal)" + +#: src/gui/chanOsc.cpp:143 +msgid "Columns" +msgstr "Columnas" + +#: src/gui/chanOsc.cpp:152 +msgid "Size (ms)" +msgstr "Tamaño (ms)" + +#: src/gui/chanOsc.cpp:163 +msgid "Automatic columns" +msgstr "Columnas automáticas" + +#: src/gui/chanOsc.cpp:177 +msgid "Center waveform" +msgstr "Centrar onda" + +#: src/gui/chanOsc.cpp:183 +msgid "Randomize phase on note" +msgstr "Aleatorizar fase en nota" + +#: src/gui/chanOsc.cpp:189 +msgid "Amplitude" +msgstr "Amplitud" + +#: src/gui/chanOsc.cpp:199 src/gui/settings.cpp:3747 +msgid "Line size" +msgstr "Tamaño de línea" + +#: src/gui/chanOsc.cpp:211 +msgid "Gradient" +msgstr "Gradiente" + +#: src/gui/chanOsc.cpp:218 +msgid "error while creating gradient texture!" +msgstr "¡error al cargar textura de gradiente!" + +#: src/gui/chanOsc.cpp:236 +msgid "error while updating gradient texture!" +msgstr "¡error al actualizar textura de gradiente!" + +#: src/gui/chanOsc.cpp:292 src/gui/chanOsc.cpp:348 src/gui/settings.cpp:3793 +msgid "Color" +msgstr "" + +#: src/gui/chanOsc.cpp:296 +msgid "Distance" +msgstr "Distancia" + +#: src/gui/chanOsc.cpp:305 +msgid "Spread" +msgstr "Esparcir" + +#: src/gui/chanOsc.cpp:314 src/gui/userPresets.cpp:370 src/gui/subSongs.cpp:121 +#: src/gui/settings.cpp:2281 src/gui/sysManager.cpp:124 +msgid "Remove" +msgstr "Remover" + +#: src/gui/chanOsc.cpp:338 src/gui/settings.cpp:3885 src/gui/settings.cpp:4165 +#: src/gui/settings.cpp:4192 src/gui/settings.cpp:4218 +msgid "Background" +msgstr "Fondo" + +#: src/gui/chanOsc.cpp:341 +msgid "X Axis##AxisX" +msgstr "Eje X##AxisX" + +#: src/gui/chanOsc.cpp:342 +msgid "Y Axis##AxisY" +msgstr "Eje Y##AxisY" + +#: src/gui/chanOsc.cpp:352 +msgid "Text format:" +msgstr "Formato de texto:" + +#: src/gui/chanOsc.cpp:358 +msgid "" +"format guide:\n" +"- %c: channel name\n" +"- %C: channel short name\n" +"- %d: channel number (starting from 0)\n" +"- %D: channel number (starting from 1)\n" +"- %n: channel note\n" +"- %i: instrument name\n" +"- %I: instrument number (decimal)\n" +"- %x: instrument number (hex)\n" +"- %s: chip name\n" +"- %p: chip part number\n" +"- %S: chip ID\n" +"- %v: volume (decimal)\n" +"- %V: volume (percentage)\n" +"- %b: volume (hex)\n" +"- %l: new line\n" +"- %%: percent sign" +msgstr "" +"guía de formato:\n" +"- %c: nombre del canal\n" +"- %C: nombre corto del canal\n" +"- %d: número del canal (empezando por 0)\n" +"- %D: número del canal (empezando por 1)\n" +"- %n: nota del canal\n" +"- %i: nombre del instrumento\n" +"- %I: número del instrumento (en decimal)\n" +"- %x: número del instrumento (en hexadecimal)\n" +"- %s: nombre del chip\n" +"- %p: número de parte del chip\n" +"- %S: ID del chip\n" +"- %v: volumen (decimal)\n" +"- %V: volumen (percentage)\n" +"- %b: volumen (hex)\n" +"- %l: nueva línea\n" +"- %%: signo de porcentaje" + +#: src/gui/chanOsc.cpp:380 +msgid "Text color" +msgstr "Color del texto" + +#: src/gui/chanOsc.cpp:382 src/gui/xyOsc.cpp:80 src/gui/settings.cpp:6672 +#: src/gui/tutorial.cpp:689 src/gui/gui.cpp:5639 src/gui/gui.cpp:6055 +#: src/gui/gui.cpp:6223 src/gui/gui.cpp:6322 src/gui/gui.cpp:6371 +msgid "OK" +msgstr "Aceptar" + +#: src/gui/chanOsc.cpp:400 +msgid "creating chan osc work pool" +msgstr "creando piscina de trabajo para chan osc" + +#: src/gui/chanOsc.cpp:429 +#, c-format +msgid "creating FFT plan for channel %d" +msgstr "creando plan FFT para el canal %d" + +#: src/gui/chanOsc.cpp:436 +msgid "failed to create plan!" +msgstr "¡no se pudo crear el plan!" + +#: src/gui/chanOsc.cpp:438 +msgid "failed to create inverse plan!" +msgstr "¡no se pudo crear plan inverso!" + +#: src/gui/chanOsc.cpp:440 +msgid "failed to create FFT buffers" +msgstr "no se pudo crear búferes FFT" + +#: src/gui/chanOsc.cpp:585 +msgid "Error!" +msgstr "¡Error!" + +#: src/gui/editControls.cpp:47 src/gui/sampleEdit.cpp:1736 src/gui/gui.cpp:2733 +#: src/gui/insEdit.cpp:363 +msgid "cut" +msgstr "cortar" + +#: src/gui/editControls.cpp:48 src/gui/sampleEdit.cpp:1740 src/gui/gui.cpp:2734 +#: src/gui/insEdit.cpp:7538 +msgid "copy" +msgstr "copiar" + +#: src/gui/editControls.cpp:49 src/gui/sampleEdit.cpp:1744 src/gui/gui.cpp:2735 +#: src/gui/gui.cpp:2788 src/gui/insEdit.cpp:7543 +msgid "paste" +msgstr "pegar" + +#: src/gui/editControls.cpp:51 +msgid "" +"select\n" +"all" +msgstr "" +"seleccionar\n" +"todo" + +#: src/gui/editControls.cpp:52 +msgid "piano" +msgstr "piano" + +#: src/gui/editControls.cpp:53 src/gui/gui.cpp:4429 +msgid "undo" +msgstr "deshacer" + +#: src/gui/editControls.cpp:54 src/gui/gui.cpp:4430 +msgid "redo" +msgstr "rehacer" + +#: src/gui/editControls.cpp:57 +msgid "" +"paste\n" +"mix" +msgstr "" +"pegar\n" +"mezcla" + +#: src/gui/editControls.cpp:58 +msgid "" +"paste\n" +"mix bg" +msgstr "" +"pegar\n" +"mez fon" + +#: src/gui/editControls.cpp:59 +msgid "" +"paste\n" +"ins" +msgstr "" +"pegar\n" +"ins" + +#: src/gui/editControls.cpp:60 +msgid "" +"paste\n" +"ins bg" +msgstr "" +"pegar\n" +"ins fon" + +#: src/gui/editControls.cpp:61 +msgid "" +"paste\n" +"flood" +msgstr "" +"pegar\n" +"inund" + +#: src/gui/editControls.cpp:62 +msgid "" +"paste\n" +"overflow" +msgstr "" + +#: src/gui/editControls.cpp:63 +msgid "" +"transpose\n" +"notes" +msgstr "" + +#: src/gui/editControls.cpp:64 +msgid "" +"transpose\n" +"values" +msgstr "" + +#: src/gui/editControls.cpp:67 +msgid "" +"change\n" +"ins" +msgstr "" + +#: src/gui/editControls.cpp:68 +msgid "" +"find/\n" +"replace" +msgstr "" + +#: src/gui/editControls.cpp:69 src/gui/gui.cpp:3063 +msgid "collapse" +msgstr "colapsar" + +#: src/gui/editControls.cpp:70 src/gui/gui.cpp:3064 +msgid "expand" +msgstr "expandir" + +#: src/gui/editControls.cpp:71 src/gui/gui.cpp:2820 +msgid "flip" +msgstr "voltear" + +#: src/gui/editControls.cpp:72 src/gui/insEdit.cpp:430 +msgid "invert" +msgstr "invertir" + +#: src/gui/editControls.cpp:73 src/gui/gui.cpp:2800 src/gui/gui.cpp:2960 +msgid "interpolate" +msgstr "interpolar" + +#: src/gui/editControls.cpp:74 src/gui/gui.cpp:2812 src/gui/insEdit.cpp:7610 +msgid "scale" +msgstr "escalar" + +#: src/gui/editControls.cpp:77 src/gui/gui.cpp:2804 +msgid "fade" +msgstr "desvanecer" + +#: src/gui/editControls.cpp:78 src/gui/gui.cpp:2816 src/gui/insEdit.cpp:7639 +msgid "randomize" +msgstr "aleatorizar" + +#: src/gui/editControls.cpp:79 +msgid "opmask" +msgstr "máscara de operadores" + +#: src/gui/editControls.cpp:80 +msgid "" +"scroll\n" +"mode" +msgstr "" +"modo\n" +"desplaz" + +#: src/gui/editControls.cpp:81 +msgid "" +"input\n" +"latch" +msgstr "" + +#: src/gui/editControls.cpp:82 +msgid "" +"set\n" +"latch" +msgstr "" + +#: src/gui/editControls.cpp:83 +msgid "" +"clear\n" +"latch" +msgstr "" + +#: src/gui/editControls.cpp:84 src/gui/findReplace.cpp:43 +#: src/gui/insEdit.cpp:7557 +msgid "clear" +msgstr "limpiar" + +#: src/gui/editControls.cpp:333 +msgid "Mobile Controls" +msgstr "Controles Móvil" + +#: src/gui/editControls.cpp:408 +msgid "Mobile Menu" +msgstr "Menú Móvil" + +#: src/gui/editControls.cpp:425 src/gui/editControls.cpp:752 +#: src/gui/editControls.cpp:885 src/gui/editControls.cpp:1007 +#: src/gui/settings.cpp:2485 src/gui/settings.cpp:3271 +#: src/gui/settings.cpp:3975 src/gui/orders.cpp:232 src/gui/guiConst.cpp:577 +#: src/gui/gui.cpp:5888 +msgid "Orders" +msgstr "Órdenes" + +#: src/gui/editControls.cpp:429 src/gui/findReplace.cpp:669 +#: src/gui/findReplace.cpp:914 +msgid "Ins" +msgstr "Ins" + +#: src/gui/editControls.cpp:442 src/gui/findReplace.cpp:788 +#: src/gui/guiConst.cpp:230 +msgid "Song" +msgstr "Canción" + +#: src/gui/editControls.cpp:450 src/gui/sampleEdit.cpp:494 +msgid "Chips" +msgstr "Chips" + +#: src/gui/editControls.cpp:458 src/gui/settings.cpp:2117 +#: src/gui/settings.cpp:3934 src/gui/settings.cpp:4018 +#: src/gui/compatFlags.cpp:319 +msgid "Other" +msgstr "Otros" + +#: src/gui/editControls.cpp:487 src/gui/guiConst.cpp:531 +msgid "New" +msgstr "Nuevo" + +#: src/gui/editControls.cpp:491 src/gui/doAction.cpp:38 src/gui/gui.cpp:4194 +msgid "Unsaved changes! Save changes before creating a new song?" +msgstr "¡Cambios no guardados! ¿Guardar antes de crear una nueva canción?" + +#: src/gui/editControls.cpp:507 +msgid "Save as..." +msgstr "Guardar como..." + +#: src/gui/editControls.cpp:516 src/gui/gui.cpp:1680 +msgid "Restore Backup" +msgstr "Restaurar Copia" + +#: src/gui/editControls.cpp:524 +msgid "Song Info" +msgstr "Info. de canción" + +#: src/gui/editControls.cpp:528 src/gui/subSongs.cpp:17 +#: src/gui/guiConst.cpp:608 +msgid "Subsongs" +msgstr "Subcanciones" + +#: src/gui/editControls.cpp:541 +msgid "Channels here..." +msgstr "Los canales van aqui..." + +#: src/gui/editControls.cpp:544 +msgid "Chips here..." +msgstr "Los chips aquí..." + +#: src/gui/editControls.cpp:547 +msgid "What the hell..." +msgstr "Qué demonios" + +#: src/gui/editControls.cpp:554 +msgid "ChanOsc" +msgstr "OscCanal" + +#: src/gui/editControls.cpp:558 +msgid "RegView" +msgstr "VistaReg" + +#: src/gui/editControls.cpp:562 +msgid "Stats" +msgstr "Estadísticas" + +#: src/gui/editControls.cpp:566 src/gui/guiConst.cpp:611 src/gui/grooves.cpp:35 +msgid "Grooves" +msgstr "" + +#: src/gui/editControls.cpp:569 +msgid "Compat Flags" +msgstr "Opciones de compat." + +#: src/gui/editControls.cpp:573 +msgid "XYOsc" +msgstr "" + +#: src/gui/editControls.cpp:577 +msgid "Meter" +msgstr "Metro" + +#: src/gui/editControls.cpp:581 +msgid "Memory" +msgstr "Memoria" + +#: src/gui/editControls.cpp:585 +msgid "CV" +msgstr "" + +#: src/gui/editControls.cpp:589 +msgid "Presets" +msgstr "" + +#: src/gui/editControls.cpp:593 +msgid "PatManager" +msgstr "" + +#: src/gui/editControls.cpp:599 src/gui/guiConst.cpp:564 +msgid "Panic" +msgstr "Pánico" + +#: src/gui/editControls.cpp:601 src/gui/settings.cpp:560 +#: src/gui/guiConst.cpp:589 src/gui/guiConst.cpp:591 src/gui/gui.cpp:4439 +msgid "Settings" +msgstr "Opciones" + +#: src/gui/editControls.cpp:606 +msgid "Log" +msgstr "" + +#: src/gui/editControls.cpp:614 src/gui/guiConst.cpp:587 +msgid "About" +msgstr "" + +#: src/gui/editControls.cpp:619 +msgid "Switch to Desktop Mode" +msgstr "Ir al Modo Escritorio" + +#: src/gui/editControls.cpp:673 src/gui/editControls.cpp:784 +#: src/gui/editControls.cpp:904 +msgid "Play/Edit Controls" +msgstr "Controles de edición" + +#: src/gui/editControls.cpp:681 src/gui/editControls.cpp:842 +#: src/gui/editControls.cpp:959 src/gui/editControls.cpp:1125 +msgid "Octave" +msgstr "Octava" + +#: src/gui/editControls.cpp:698 src/gui/editControls.cpp:857 +msgid "Coarse Step" +msgstr "Paso grueso" + +#: src/gui/editControls.cpp:698 src/gui/editControls.cpp:857 +msgid "Edit Step" +msgstr "Pasos de edición" + +#: src/gui/editControls.cpp:731 src/gui/editControls.cpp:797 +#: src/gui/editControls.cpp:911 src/gui/editControls.cpp:1048 +#: src/gui/guiConst.cpp:545 +msgid "Play" +msgstr "Reproducir" + +#: src/gui/editControls.cpp:739 src/gui/editControls.cpp:789 +#: src/gui/editControls.cpp:918 src/gui/editControls.cpp:1040 +#: src/gui/guiConst.cpp:546 +msgid "Stop" +msgstr "Parar" + +#: src/gui/editControls.cpp:742 src/gui/editControls.cpp:826 +#: src/gui/editControls.cpp:943 src/gui/editControls.cpp:1082 +#: src/gui/gui.cpp:4426 +msgid "Edit" +msgstr "Editar" + +#: src/gui/editControls.cpp:757 src/gui/editControls.cpp:816 +#: src/gui/editControls.cpp:934 src/gui/editControls.cpp:1104 +msgid "Repeat pattern" +msgstr "Repetir patrón" + +#: src/gui/editControls.cpp:766 src/gui/editControls.cpp:806 +#: src/gui/editControls.cpp:925 src/gui/editControls.cpp:1073 +msgid "Step one row" +msgstr "Reproducir una fila" + +#: src/gui/editControls.cpp:771 src/gui/editControls.cpp:891 +#: src/gui/editControls.cpp:1020 src/gui/editControls.cpp:1110 +msgid "Poly##PolyInput" +msgstr "Poli##PolyInput" + +#: src/gui/editControls.cpp:771 src/gui/editControls.cpp:891 +#: src/gui/editControls.cpp:1020 src/gui/editControls.cpp:1110 +msgid "Mono##PolyInput" +msgstr "" + +# doesn't need translation +#: src/gui/editControls.cpp:776 src/gui/editControls.cpp:896 +#: src/gui/editControls.cpp:1025 src/gui/editControls.cpp:1115 +msgid "Polyphony" +msgstr "Polifonía" + +#: src/gui/editControls.cpp:957 +msgid "Oct." +msgstr "" + +# doesn't need translation +#: src/gui/editControls.cpp:974 src/gui/editControls.cpp:1142 +msgid "Coarse" +msgstr "Gruesos" + +#: src/gui/editControls.cpp:974 src/gui/editControls.cpp:1142 +msgid "Step" +msgstr "Pasos" + +#: src/gui/editControls.cpp:998 +msgid "Foll." +msgstr "Seguir" + +#: src/gui/editControls.cpp:1003 +msgid "Ord##FollowOrders" +msgstr "" + +# doesn't need translation +#: src/gui/editControls.cpp:1011 +msgid "Pat##FollowPattern" +msgstr "" + +# doesn't need translation +#: src/gui/editControls.cpp:1033 +msgid "Play Controls" +msgstr "Controles de Reproducción" + +#: src/gui/editControls.cpp:1057 +msgid "Play from the beginning of this pattern" +msgstr "Reproducir desde el principio del patrón" + +#: src/gui/editControls.cpp:1065 +msgid "Repeat from the beginning of this pattern" +msgstr "Repetir desde el principio del patrón" + +#: src/gui/editControls.cpp:1122 src/gui/guiConst.cpp:576 +msgid "Edit Controls" +msgstr "Controles de Edición" + +#: src/gui/editControls.cpp:1169 src/gui/guiConst.cpp:560 +msgid "Follow orders" +msgstr "Seguir órdenes" + +#: src/gui/editControls.cpp:1170 src/gui/guiConst.cpp:561 +msgid "Follow pattern" +msgstr "Seguir patrón" + +#: src/gui/songNotes.cpp:32 src/gui/guiConst.cpp:600 +msgid "Song Comments" +msgstr "Comentarios de la canción" + +#: src/gui/util.cpp:93 +msgid "" +msgstr "" + +#: src/gui/util.cpp:97 +msgid "Ctrl-" +msgstr "" + +#: src/gui/util.cpp:99 +msgid "Alt-" +msgstr "" + +#: src/gui/util.cpp:100 +msgid "Shift-" +msgstr "" + +#: src/gui/stats.cpp:31 src/gui/guiConst.cpp:597 +msgid "Statistics" +msgstr "Estadísticas" + +#: src/gui/stats.cpp:36 +msgid "Audio load" +msgstr "Carga de audio" + +#: src/gui/xyOsc.cpp:40 src/gui/guiConst.cpp:612 +msgid "Oscilloscope (X-Y)" +msgstr "Osciloscopio (X-Y)" + +#: src/gui/xyOsc.cpp:45 +msgid "X Channel" +msgstr "Canal X" + +#: src/gui/xyOsc.cpp:51 +msgid "Invert##X" +msgstr "Invertir##X" + +#: src/gui/xyOsc.cpp:52 +msgid "Y Channel" +msgstr "Canal Y" + +#: src/gui/xyOsc.cpp:58 +msgid "Invert##Y" +msgstr "Invertir##Y" + +#: src/gui/xyOsc.cpp:59 src/gui/sampleEdit.cpp:1353 +msgid "Zoom" +msgstr "Zoom" + +#: src/gui/xyOsc.cpp:71 +msgid "Decay Time (ms)" +msgstr "Tiempo de Caída (ms)" + +#: src/gui/xyOsc.cpp:74 +msgid "Intensity" +msgstr "Intensidad" + +#: src/gui/xyOsc.cpp:77 +msgid "Line Thickness" +msgstr "Ancho de línea" + +#: src/gui/xyOsc.cpp:213 +msgid "(-Infinity)dB,(-Infinity)dB" +msgstr "(-infinito)dB,(-infinito)dB" + +#: src/gui/xyOsc.cpp:215 +#, c-format +msgid "(-Infinity)dB,%.1fdB" +msgstr "(-infinito)dB,%.1fdB" + +#: src/gui/xyOsc.cpp:217 +#, c-format +msgid "%.1fdB,(-Infinity)dB" +msgstr "%.1fdB,(-infinito)dB" + +#: src/gui/xyOsc.cpp:219 +#, c-format +msgid "%.1fdB,%.1fdB" +msgstr "" + +# doesn't need translation +#: src/gui/sysConf.cpp:49 src/gui/sysConf.cpp:121 src/gui/sysConf.cpp:486 +#: src/gui/sysConf.cpp:604 src/gui/sysConf.cpp:647 src/gui/sysConf.cpp:684 +#: src/gui/sysConf.cpp:843 src/gui/sysConf.cpp:1098 src/gui/sysConf.cpp:1181 +#: src/gui/sysConf.cpp:1220 src/gui/sysConf.cpp:1294 src/gui/sysConf.cpp:1380 +#: src/gui/sysConf.cpp:1444 src/gui/sysConf.cpp:1482 src/gui/sysConf.cpp:1572 +#: src/gui/sysConf.cpp:1668 src/gui/sysConf.cpp:1716 src/gui/sysConf.cpp:1757 +#: src/gui/sysConf.cpp:1810 src/gui/sysConf.cpp:2284 src/gui/sysConf.cpp:2307 +msgid "Clock rate:" +msgstr "Velocidad del reloj:" + +#: src/gui/sysConf.cpp:73 src/gui/sysConf.cpp:152 src/gui/sysConf.cpp:911 +#: src/gui/sysConf.cpp:1459 src/gui/sysConf.cpp:1783 +msgid "Chip type:" +msgstr "Tipo de chip:" + +#: src/gui/sysConf.cpp:75 +msgid "YM3438 (9-bit DAC)" +msgstr "YM3438 (DAC 9-bit)" + +#: src/gui/sysConf.cpp:79 +msgid "YM2612 (9-bit DAC with distortion)" +msgstr "YM2612 (DAC 9-bit con distorsión)" + +#: src/gui/sysConf.cpp:83 +msgid "YMF276 (external DAC)" +msgstr "YMF276 (DAC externo)" + +#: src/gui/sysConf.cpp:90 src/gui/sysConf.cpp:804 src/gui/sysConf.cpp:1350 +#: src/gui/sysConf.cpp:1420 +msgid "Disable ExtCh FM macros (compatibility)" +msgstr "Desactivar macros FM en canal extendido (compatibilidad)" + +#: src/gui/sysConf.cpp:93 src/gui/sysConf.cpp:807 src/gui/sysConf.cpp:1353 +#: src/gui/sysConf.cpp:1423 +msgid "Ins change in ExtCh operator 2-4 affects FB (compatibility)" +msgstr "" +"Cambio de instrumento en operador 2-4 de canal extendido afecta " +"retroalimentación (compatibilidad)" + +#: src/gui/sysConf.cpp:99 +msgid "Modified sine wave (joke)" +msgstr "Onda sinusoidal modificada (broma)" + +#: src/gui/sysConf.cpp:123 src/gui/sysConf.cpp:1296 src/gui/sysConf.cpp:1718 +#: src/gui/sysConf.cpp:2286 +msgid "3.58MHz (NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:127 +msgid "3.55MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:131 +msgid "4MHz (BBC Micro)" +msgstr "" + +#: src/gui/sysConf.cpp:135 +msgid "1.79MHz (Half NTSC)" +msgstr "1.79MHz (Mitad NTSC)" + +#: src/gui/sysConf.cpp:139 +msgid "3MHz (Exed Exes)" +msgstr "" + +#: src/gui/sysConf.cpp:143 +msgid "2MHz (Sega System 1)" +msgstr "" + +#: src/gui/sysConf.cpp:147 +msgid "447KHz (TI-99/4A)" +msgstr "" + +#: src/gui/sysConf.cpp:154 +msgid "Sega VDP/Master System" +msgstr "" + +#: src/gui/sysConf.cpp:162 +msgid "TI SN76489 with Atari-like short noise" +msgstr "TI SN76489 con sonido corto estilo Atari" + +#: src/gui/sysConf.cpp:166 +msgid "Game Gear" +msgstr "" + +#: src/gui/sysConf.cpp:170 +msgid "TI SN76489A" +msgstr "" + +#: src/gui/sysConf.cpp:174 +msgid "TI SN76496" +msgstr "" + +#: src/gui/sysConf.cpp:178 +msgid "NCR 8496" +msgstr "" + +#: src/gui/sysConf.cpp:182 +msgid "Tandy PSSJ 3-voice sound" +msgstr "sonido Tandy PSSJ de 3 voces" + +#: src/gui/sysConf.cpp:186 +msgid "TI SN94624" +msgstr "" + +#: src/gui/sysConf.cpp:190 +msgid "TI SN76494" +msgstr "" + +#: src/gui/sysConf.cpp:196 +msgid "Disable noise period change phase reset" +msgstr "Desactivar reinicio de fase al cambiar periodo de ruido" + +#: src/gui/sysConf.cpp:200 src/gui/sysConf.cpp:2190 +msgid "Disable easy period to note mapping on upper octaves" +msgstr "Desactivar mapeo de periodos a notas en octavas superiores" + +#: src/gui/sysConf.cpp:219 src/gui/sysConf.cpp:583 +msgid "Pseudo-PAL" +msgstr "Seudo-PAL" + +#: src/gui/sysConf.cpp:222 src/gui/sysConf.cpp:342 +msgid "Disable anti-click" +msgstr "Desactivar anti-click" + +#: src/gui/sysConf.cpp:225 src/gui/sysConf.cpp:345 +msgid "Chip revision:" +msgstr "Revisión del chip:" + +#: src/gui/sysConf.cpp:227 +msgid "HuC6280 (original)" +msgstr "" + +#: src/gui/sysConf.cpp:231 +msgid "HuC6280A (SuperGrafx)" +msgstr "" + +#: src/gui/sysConf.cpp:257 +msgid "CPU rate:" +msgstr "Velocidad del CPU:" + +#: src/gui/sysConf.cpp:259 +msgid "6.18MHz (NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:263 +msgid "5.95MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:268 +msgid "Sample memory:" +msgstr "Memoria de samples:" + +#: src/gui/sysConf.cpp:270 +msgid "8K (rev A/B/E)" +msgstr "" + +#: src/gui/sysConf.cpp:274 +msgid "64K (rev D/F)" +msgstr "" + +#: src/gui/sysConf.cpp:279 +msgid "DAC resolution:" +msgstr "Resolución del DAC:" + +#: src/gui/sysConf.cpp:281 +msgid "16-bit (rev A/B/D/F)" +msgstr "" + +#: src/gui/sysConf.cpp:285 +msgid "8-bit + TDM (rev C/E)" +msgstr "" + +#: src/gui/sysConf.cpp:290 src/gui/sysConf.cpp:1931 +msgid "Enable echo" +msgstr "Activar eco" + +#: src/gui/sysConf.cpp:293 +msgid "Swap echo channels" +msgstr "Intercambiar canales de eco" + +#: src/gui/sysConf.cpp:296 src/gui/sysConf.cpp:1151 +msgid "Echo delay:" +msgstr "Retardo del eco:" + +#: src/gui/sysConf.cpp:302 +msgid "Echo resolution:" +msgstr "Resolución del eco:" + +#: src/gui/sysConf.cpp:308 src/gui/sysConf.cpp:1159 +msgid "Echo feedback:" +msgstr "Retroalimentación del eco:" + +#: src/gui/sysConf.cpp:314 src/gui/sysConf.cpp:1967 +msgid "Echo volume:" +msgstr "Volumen del eco:" + +#: src/gui/sysConf.cpp:347 +msgid "Original (DMG)" +msgstr "" + +#: src/gui/sysConf.cpp:351 +msgid "Game Boy Color (rev C)" +msgstr "" + +#: src/gui/sysConf.cpp:355 +msgid "Game Boy Color (rev E)" +msgstr "" + +#: src/gui/sysConf.cpp:359 +msgid "Game Boy Advance" +msgstr "" + +#: src/gui/sysConf.cpp:364 +msgid "Wave channel orientation:" +msgstr "Orientación de la onda del canal:" + +#: src/gui/sysConf.cpp:367 src/gui/compatFlags.cpp:298 src/gui/gui.cpp:6067 +#: src/gui/insEdit.cpp:217 src/gui/insEdit.cpp:231 +msgid "Normal" +msgstr "" + +#: src/gui/sysConf.cpp:371 +msgid "Inverted" +msgstr "Invertida" + +#: src/gui/sysConf.cpp:378 +msgid "Exact data (inverted)" +msgstr "Datos exactos (invertidos)" + +#: src/gui/sysConf.cpp:382 +msgid "Exact output (normal)" +msgstr "Salida exacta (normal)" + +#: src/gui/sysConf.cpp:388 +msgid "" +"Pretty please one more compat flag when I use arpeggio and my sound length" +msgstr "" +"Una opción de compatibilidad más para cuando use arpegio y mi longitud de " +"sonido porfiiiiiiiis" + +#: src/gui/sysConf.cpp:405 src/gui/sysConf.cpp:438 +msgid "DAC bit depth (reduces output rate):" +msgstr "Profundidad de bits del DAC:" + +#: src/gui/sysConf.cpp:426 src/gui/sysConf.cpp:1268 src/gui/sysConf.cpp:1919 +msgid "Volume scale:" +msgstr "Escala de volumen:" + +#: src/gui/sysConf.cpp:432 +msgid "Mix buffers (allows longer echo delay):" +msgstr "Mezclar búferes (permite un eco más largo):" + +#: src/gui/sysConf.cpp:444 +msgid "Channel limit:" +msgstr "Límite de canales:" + +#: src/gui/sysConf.cpp:450 +msgid "Sample rate:" +msgstr "Frecuencia de muestreo:" + +#: src/gui/sysConf.cpp:460 +#, c-format +msgid "Actual sample rate: %d Hz" +msgstr "Frecuencia de muestreo actual: %d Hz" + +#: src/gui/sysConf.cpp:462 +#, c-format +msgid "Max mixer CPU usage: %.0f%%" +msgstr "Uso de CPU máximo del mezclador: %.0f%%" + +#: src/gui/sysConf.cpp:488 +msgid "NTSC (3.58MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:492 src/gui/sysConf.cpp:557 +msgid "PAL (3.55MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:496 +msgid "Arcade (4MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:500 +msgid "Half NTSC (1.79MHz)" +msgstr "Mitad NTSC (1.79MHz)" + +#: src/gui/sysConf.cpp:506 +msgid "Patch set:" +msgstr "Set de sonidos:" + +#: src/gui/sysConf.cpp:528 +msgid "Ignore top/hi-hat frequency changes" +msgstr "Ignorar cambio de frecuencia en top/hi-hat" + +#: src/gui/sysConf.cpp:531 +msgid "Apply fixed frequency to all drums at once" +msgstr "Aplicar frecuencia fija a todos los canales inmediatamente" + +#: src/gui/sysConf.cpp:553 +msgid "NTSC/X16 (3.58MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:561 +msgid "X1/X68000 (4MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:567 src/gui/sysConf.cpp:587 +msgid "Broken pitch macro/slides (compatibility)" +msgstr "Macro de tono y deslizamientos quebrados (compatibilidad)" + +#: src/gui/sysConf.cpp:607 src/gui/sysConf.cpp:650 src/gui/sysConf.cpp:1222 +#: src/gui/sysConf.cpp:2310 +msgid "NTSC (1.79MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:611 src/gui/sysConf.cpp:654 src/gui/sysConf.cpp:1226 +msgid "PAL (1.67MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:615 src/gui/sysConf.cpp:658 src/gui/sysConf.cpp:1230 +msgid "Dendy (1.77MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:621 +msgid "DPCM channel mode:" +msgstr "Modo del canal DPCM:" + +#: src/gui/sysConf.cpp:624 +msgid "DPCM (muffled samples; low CPU usage)" +msgstr "DPCM (samples mufleados; bajo uso de CPU)" + +#: src/gui/sysConf.cpp:628 +msgid "PCM (crisp samples; high CPU usage)" +msgstr "PCM (samples crocantes; alto uso de CPU)" + +#: src/gui/sysConf.cpp:687 +msgid "NTSC (1.02MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:691 +msgid "PAL (0.99MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:695 +msgid "SSI 2001 (0.89MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:701 src/gui/sysConf.cpp:2320 +msgid "Global parameter priority:" +msgstr "Prioridad de parámetros globales:" + +#: src/gui/sysConf.cpp:704 src/gui/sysConf.cpp:2323 +msgid "Left to right" +msgstr "Izquierda a derecha" + +#: src/gui/sysConf.cpp:708 src/gui/sysConf.cpp:2327 +msgid "Last used channel" +msgstr "Último canal usado" + +#: src/gui/sysConf.cpp:714 +msgid "Hard reset envelope:" +msgstr "Envelope del reinicio duro:" + +#: src/gui/sysConf.cpp:716 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:1920 +#: src/gui/insEdit.cpp:6955 src/gui/insEdit.cpp:7481 +msgid "Attack" +msgstr "Ataque" + +#: src/gui/sysConf.cpp:721 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:1960 +#: src/gui/insEdit.cpp:6956 src/gui/insEdit.cpp:7482 +msgid "Decay" +msgstr "Caída" + +#: src/gui/sysConf.cpp:726 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:1929 +#: src/gui/insEdit.cpp:6957 src/gui/insEdit.cpp:7483 +msgid "Sustain" +msgstr "Sostenido" + +#: src/gui/sysConf.cpp:731 src/gui/settings.cpp:3987 src/gui/insEdit.cpp:50 +#: src/gui/insEdit.cpp:604 src/gui/insEdit.cpp:1983 src/gui/insEdit.cpp:6958 +#: src/gui/insEdit.cpp:7484 +msgid "Release" +msgstr "Lanzamiento" + +#: src/gui/sysConf.cpp:737 +msgid "Envelope reset time:" +msgstr "Tiempo de reinicio del envelope;" + +#: src/gui/sysConf.cpp:747 +msgid "" +"- 0 disables envelope reset. not recommended!\n" +"- 1 may trigger SID envelope bugs.\n" +"- values that are too high may result in notes being skipped." +msgstr "" +"- 0 desactiva el reinicio. ¡no recomendado!\n" +"- 1 podría resultar en problemas con el envelope del SID.\n" +"- valores muy altos podrían hacer que las notas se vayan." + +#: src/gui/sysConf.cpp:749 +msgid "Disable 1Exy env update (compatibility)" +msgstr "Desactivar cambio de env con 1Exy (compatibilidad)" + +#: src/gui/sysConf.cpp:753 +msgid "Relative duty and cutoff macros are coarse (compatibility)" +msgstr "Macros de ancho de pulso y límite relativas gruesas (compatibilidad)" + +#: src/gui/sysConf.cpp:757 +msgid "Cutoff macro race conditions (compatibility)" +msgstr "Condiciones de carrera en macro de límite (compatibilidad)" + +#: src/gui/sysConf.cpp:793 +msgid "8MHz (Neo Geo MVS)" +msgstr "" + +#: src/gui/sysConf.cpp:797 +msgid "8.06MHz (Neo Geo AES)" +msgstr "" + +#: src/gui/sysConf.cpp:812 src/gui/sysConf.cpp:1337 src/gui/sysConf.cpp:1407 +msgid "SSG Volume" +msgstr "Volumen SSG" + +#: src/gui/sysConf.cpp:818 src/gui/sysConf.cpp:1413 +msgid "FM/ADPCM Volume" +msgstr "Volumen FM/ADPCM" + +#: src/gui/sysConf.cpp:845 +msgid "1.79MHz (ZX Spectrum NTSC/MSX)" +msgstr "" + +#: src/gui/sysConf.cpp:849 +msgid "1.77MHz (ZX Spectrum PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:853 +msgid "0.83MHz (Pre-divided Sunsoft 5B on PAL)" +msgstr "0.83MHz (Sunsoft 5B pre-dividido en PAL)" + +#: src/gui/sysConf.cpp:857 +msgid "0.89MHz (Pre-divided Sunsoft 5B)" +msgstr "0.89MHz (Sunsoft 5B pre-dividido)" + +#: src/gui/sysConf.cpp:861 +msgid "1MHz (Amstrad CPC)" +msgstr "" + +#: src/gui/sysConf.cpp:865 +msgid "1.10MHz (Gamate/VIC-20 PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:869 +msgid "1.25MHz (Mag Max)" +msgstr "" + +#: src/gui/sysConf.cpp:873 +msgid "1.5MHz (Vectrex)" +msgstr "" + +#: src/gui/sysConf.cpp:877 +msgid "1.536MHz (Kyugo)" +msgstr "" + +#: src/gui/sysConf.cpp:881 +msgid "1.67MHz (?)" +msgstr "" + +#: src/gui/sysConf.cpp:885 +msgid "1.75MHz (ZX Spectrum 48K)" +msgstr "" + +#: src/gui/sysConf.cpp:889 +msgid "1.99MHz (PC-88)" +msgstr "" + +#: src/gui/sysConf.cpp:893 +msgid "2MHz (Atari ST/Sharp X1)" +msgstr "" + +#: src/gui/sysConf.cpp:897 +msgid "2^21Hz (Game Boy)" +msgstr "" + +#: src/gui/sysConf.cpp:901 +msgid "3.58MHz (Darky)" +msgstr "" + +#: src/gui/sysConf.cpp:905 +msgid "3.6MHz (Darky)" +msgstr "" + +#: src/gui/sysConf.cpp:917 +msgid "YM2149(F)" +msgstr "" + +#: src/gui/sysConf.cpp:921 +msgid "Sunsoft 5B" +msgstr "" + +#: src/gui/sysConf.cpp:925 +msgid "AY-3-8914" +msgstr "" + +#: src/gui/sysConf.cpp:931 +msgid "note: AY-3-8914 is not supported by the VGM format!" +msgstr "nota: el formato VGM no soporta AY-3-8914." + +#: src/gui/sysConf.cpp:935 +msgid "Stereo##_AY_STEREO" +msgstr "Estéreo##_AY_STEREO" + +#: src/gui/sysConf.cpp:940 +msgid "Separation" +msgstr "Separación" + +#: src/gui/sysConf.cpp:949 +msgid "Half Clock divider##_AY_CLKSEL" +msgstr "Divisor del reloj en mitad##_AY_CLKSEL" + +#: src/gui/sysConf.cpp:971 +msgid "SAM Coupé (8MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:975 +msgid "NTSC (7.15MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:979 +msgid "PAL (7.09MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:999 +msgid "Stereo separation:" +msgstr "Separación estéreo:" + +#: src/gui/sysConf.cpp:1006 src/gui/sysConf.cpp:2412 +msgid "Model:" +msgstr "Modelo:" + +#: src/gui/sysConf.cpp:1008 +msgid "Amiga 500 (OCS)" +msgstr "" + +#: src/gui/sysConf.cpp:1012 +msgid "Amiga 1200 (AGA)" +msgstr "" + +#: src/gui/sysConf.cpp:1018 +msgid "Chip memory:" +msgstr "Memoria del chip:" + +#: src/gui/sysConf.cpp:1020 +msgid "2MB (ECS/AGA max)" +msgstr "2MB (máximo en ECS/AGA)" + +#: src/gui/sysConf.cpp:1030 +msgid "512KB (OCS max)" +msgstr "512KB (máximo en OCS)" + +#: src/gui/sysConf.cpp:1043 src/gui/sysConf.cpp:1081 src/gui/sysConf.cpp:2395 +#: src/gui/sysConf.cpp:2449 +msgid "PAL" +msgstr "" + +#: src/gui/sysConf.cpp:1046 +msgid "Bypass frequency limits" +msgstr "Desactivar límites de frecuencia" + +#: src/gui/sysConf.cpp:1065 +msgid "Mixing mode:" +msgstr "Modo de mezcla:" + +#: src/gui/sysConf.cpp:1067 src/gui/settings.cpp:3724 +msgid "Mono" +msgstr "" + +#: src/gui/sysConf.cpp:1071 +msgid "Mono (no distortion)" +msgstr "Mono (sin distorsión)" + +#: src/gui/sysConf.cpp:1075 src/gui/sysConf.cpp:1197 src/gui/sysConf.cpp:1864 +#: src/gui/sysConf.cpp:2204 +msgid "Stereo" +msgstr "Estéreo" + +#: src/gui/sysConf.cpp:1100 +msgid "1.19MHz (PC)" +msgstr "" + +#: src/gui/sysConf.cpp:1104 +msgid "1.99MHz (PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1108 +msgid "2.46MHz (PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1114 +msgid "Speaker type:" +msgstr "Tipo de parlante:" + +#: src/gui/sysConf.cpp:1116 +msgid "Unfiltered" +msgstr "Sin filtro" + +#: src/gui/sysConf.cpp:1120 +msgid "Cone" +msgstr "Cono" + +#: src/gui/sysConf.cpp:1124 +msgid "Piezo" +msgstr "" + +#: src/gui/sysConf.cpp:1128 +msgid "Use system beeper (Linux only!)" +msgstr "Usar parlante del sistema (sólo para Linux)" + +#: src/gui/sysConf.cpp:1134 +msgid "Reset phase on frequency change" +msgstr "Reiniciar fase al cambiar la frecuencia" + +#: src/gui/sysConf.cpp:1183 +msgid "16MHz (Seta 1)" +msgstr "" + +#: src/gui/sysConf.cpp:1187 +msgid "16.67MHz (Seta 2)" +msgstr "" + +#: src/gui/sysConf.cpp:1191 src/gui/sysConf.cpp:1759 +msgid "14.32MHz (NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:1201 +msgid "Bankswitched (Seta 2)" +msgstr "Intercambio de bancos (Seta 2)" + +#: src/gui/sysConf.cpp:1235 src/gui/sysConf.cpp:1261 +msgid "Initial channel limit:" +msgstr "Límite de canales inicial:" + +#: src/gui/sysConf.cpp:1241 src/gui/sysConf.cpp:2398 +msgid "Disable hissing" +msgstr "Desactivar ruido molesto" + +#: src/gui/sysConf.cpp:1244 +msgid "Scale frequency to wave length" +msgstr "Escalar frecuencia a longitud de onda" + +#: src/gui/sysConf.cpp:1300 src/gui/sysConf.cpp:1722 +msgid "3.54MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:1304 src/gui/sysConf.cpp:1726 src/gui/sysConf.cpp:2290 +msgid "4MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1308 src/gui/sysConf.cpp:1730 +msgid "3MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1312 src/gui/sysConf.cpp:1734 +msgid "3.9936MHz (PC-88/PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1316 +msgid "1.5MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1321 src/gui/sysConf.cpp:1391 src/gui/sysConf.cpp:1639 +#: src/gui/sysConf.cpp:1852 +msgid "Output rate:" +msgstr "Tasa de salida:" + +#: src/gui/sysConf.cpp:1323 src/gui/sysConf.cpp:1397 +msgid "FM: clock / 72, SSG: clock / 16" +msgstr "FM: reloj / 72, SSG: reloj / 16" + +#: src/gui/sysConf.cpp:1327 +msgid "FM: clock / 36, SSG: clock / 8" +msgstr "FM: reloj / 36, SSG: reloj / 8" + +#: src/gui/sysConf.cpp:1331 +msgid "FM: clock / 24, SSG: clock / 4" +msgstr "FM: reloj / 24, SSG: reloj / 4" + +#: src/gui/sysConf.cpp:1343 +msgid "FM Volume" +msgstr "Volumen FM" + +#: src/gui/sysConf.cpp:1382 +msgid "8MHz (Arcade)" +msgstr "" + +#: src/gui/sysConf.cpp:1386 +msgid "7.987MHz (PC-88/PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1393 +msgid "FM: clock / 144, SSG: clock / 32" +msgstr "FM: reloj / 144, SSG: reloj / 32" + +#: src/gui/sysConf.cpp:1401 +msgid "FM: clock / 48, SSG: clock / 8" +msgstr "FM: reloj / 48, SSG: reloj / 8" + +#: src/gui/sysConf.cpp:1446 +msgid "8MHz (FM Towns)" +msgstr "" + +#: src/gui/sysConf.cpp:1450 +msgid "10MHz (Sega System 18)" +msgstr "" + +#: src/gui/sysConf.cpp:1454 +msgid "12.5MHz (Sega CD/System 32)" +msgstr "" + +#: src/gui/sysConf.cpp:1461 +msgid "RF5C68 (10-bit output)" +msgstr "RF5C68 (salida 10-bit)" + +#: src/gui/sysConf.cpp:1465 +msgid "RF5C164 (16-bit output)" +msgstr "RF5C164 (salida 16-bit)" + +#: src/gui/sysConf.cpp:1520 +msgid "Sample rate table:" +msgstr "Tabla de velocidad de samples:" + +#: src/gui/sysConf.cpp:1524 +msgid "divider \\ clock" +msgstr "divisor \\ reloj" + +#: src/gui/sysConf.cpp:1526 +msgid "full" +msgstr "completo" + +#: src/gui/sysConf.cpp:1528 +msgid "half" +msgstr "mitad" + +#: src/gui/sysConf.cpp:1641 +msgid "clock / 132" +msgstr "reloj / 132" + +#: src/gui/sysConf.cpp:1645 +msgid "clock / 165" +msgstr "reloj / 165" + +#: src/gui/sysConf.cpp:1651 +msgid "Bankswitched (NMK112)" +msgstr "Cambio de bancos (NMK112)" + +#: src/gui/sysConf.cpp:1670 +msgid "1.79MHz (NTSC/MSX)" +msgstr "" + +#: src/gui/sysConf.cpp:1674 +msgid "1.77MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:1678 +msgid "1.5MHz (Arcade)" +msgstr "" + +#: src/gui/sysConf.cpp:1682 +msgid "2MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1697 +msgid "Consistent frequency across all duties" +msgstr "Frecuencia consistente" + +#: src/gui/sysConf.cpp:1704 +msgid "note: only works for an initial LFSR value of 0!" +msgstr "nota: ¡sólo funciona si el valor inicial del LFSR es 0!" + +#: src/gui/sysConf.cpp:1738 +msgid "3.5MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1763 +msgid "14.19MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:1767 +msgid "14MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1771 +msgid "16MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1775 +msgid "15MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1779 +msgid "33.8688MHz (OPL3-L)" +msgstr "" + +#: src/gui/sysConf.cpp:1784 +msgid "OPL3 (YMF262)" +msgstr "" + +#: src/gui/sysConf.cpp:1788 +msgid "OPL3-L (YMF289B)" +msgstr "" + +#: src/gui/sysConf.cpp:1794 +msgid "Compatible panning (0800)" +msgstr "Balance compatible (0800)" + +#: src/gui/sysConf.cpp:1858 +msgid "Output bit depth:" +msgstr "Profundidad de bits de salida:" + +#: src/gui/sysConf.cpp:1868 +msgid "Interpolation:" +msgstr "Interpolación:" + +#: src/gui/sysConf.cpp:1874 src/gui/waveEdit.cpp:38 +msgid "Linear" +msgstr "Lineal" + +#: src/gui/sysConf.cpp:1878 src/gui/waveEdit.cpp:40 +msgid "Cubic" +msgstr "Cúbica" + +#: src/gui/sysConf.cpp:1882 +msgid "Sinc" +msgstr "" + +#: src/gui/sysConf.cpp:1920 +msgid "Left##VolScaleL" +msgstr "Izquierda##VolScaleL" + +#: src/gui/sysConf.cpp:1925 +msgid "Right##VolScaleL" +msgstr "Derecha##VolScaleL" + +#: src/gui/sysConf.cpp:1935 +msgid "Initial echo state:" +msgstr "Estado del eco inicial:" + +#: src/gui/sysConf.cpp:1955 +msgid "Delay##EchoDelay" +msgstr "Longitud##EchoDelay" + +#: src/gui/sysConf.cpp:1961 +msgid "Feedback##EchoFeedback" +msgstr "Retroalimentación##EchoFeedback" + +#: src/gui/sysConf.cpp:1968 +msgid "Left##EchoVolL" +msgstr "Izquierda##EchoVolL" + +#: src/gui/sysConf.cpp:1973 +msgid "Right##EchoVolL" +msgstr "Derecha##EchoVolL" + +#: src/gui/sysConf.cpp:1979 +msgid "Echo filter:" +msgstr "Filtro del eco:" + +#: src/gui/sysConf.cpp:1989 +msgid "Hex##SNESFHex" +msgstr "" + +#: src/gui/sysConf.cpp:1989 +msgid "Dec##SNESFHex" +msgstr "" + +#: src/gui/sysConf.cpp:2031 +#, c-format +msgid "sum: %d" +msgstr "suma: %d" + +#: src/gui/sysConf.cpp:2086 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:63 +#: src/gui/insEdit.cpp:75 +msgid "Detune" +msgstr "Desafinación" + +#: src/gui/sysConf.cpp:2092 +msgid "Capacitor values (nF):" +msgstr "Valores de los condensadores (nF):" + +#: src/gui/sysConf.cpp:2102 +msgid "Initial part volume (channel 1-4):" +msgstr "Volumen inicial de parte (canales 1-4):" + +#: src/gui/sysConf.cpp:2112 +msgid "Initial part volume (channel 5-8):" +msgstr "Volumen inicial de parte (canales 5-8):" + +#: src/gui/sysConf.cpp:2122 +msgid "Envelope mode (channel 1-4):" +msgstr "Modo de envelope (canales 1-4):" + +#: src/gui/sysConf.cpp:2124 +msgid "Capacitor (attack/decay)##EM00" +msgstr "Condensador (ataque/caída)##EM00" + +#: src/gui/sysConf.cpp:2128 +msgid "External (volume macro)##EM01" +msgstr "Externo (macro de volumen)##EM01" + +#: src/gui/sysConf.cpp:2134 +msgid "Envelope mode (channel 5-8):" +msgstr "Modo de envelope (canales 5-8):" + +#: src/gui/sysConf.cpp:2136 +msgid "Capacitor (attack/decay)##EM10" +msgstr "Condensador (ataque/caída)##EM10" + +#: src/gui/sysConf.cpp:2140 +msgid "External (volume macro)##EM11" +msgstr "Externo (macro de volumen)##EM11" + +#: src/gui/sysConf.cpp:2146 +msgid "Global vibrato:" +msgstr "Vibrato global:" + +#: src/gui/sysConf.cpp:2153 +msgid "Depth" +msgstr "Profundidad" + +#: src/gui/sysConf.cpp:2219 src/gui/sysConf.cpp:2373 +msgid "Waveform storage mode:" +msgstr "Modo de almacenamiento de ondas:" + +#: src/gui/sysConf.cpp:2221 +msgid "RAM" +msgstr "" + +#: src/gui/sysConf.cpp:2225 +msgid "ROM (up to 8 waves)" +msgstr "ROM (hasta 8 ondas)" + +#: src/gui/sysConf.cpp:2241 +msgid "Compatible noise frequencies" +msgstr "Frecuencias de ruido compatibles" + +#: src/gui/sysConf.cpp:2256 +msgid "Legacy slides and pitch (compatibility)" +msgstr "Deslizamientos y tono antiguos (compatibilidad)" + +#: src/gui/sysConf.cpp:2314 +msgid "PAL (1.77MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:2344 +msgid "Banking style:" +msgstr "Estilo de banco:" + +#: src/gui/sysConf.cpp:2346 +msgid "Namco System 2 (2MB)" +msgstr "" + +#: src/gui/sysConf.cpp:2351 +msgid "Namco System 21 (4MB)" +msgstr "" + +#: src/gui/sysConf.cpp:2356 +msgid "Raw (16MB; no VGM export!)" +msgstr "Bruto (16MB; ¡sin exporte VGM!)" + +#: src/gui/sysConf.cpp:2375 +msgid "Dynamic (unconfirmed)" +msgstr "Dinámico (sin confirmar)" + +#: src/gui/sysConf.cpp:2379 +msgid "Static (up to 5 waves)" +msgstr "Estático (hasta 5 ondas)" + +#: src/gui/sysConf.cpp:2414 +msgid "DS (4MB RAM)" +msgstr "" + +#: src/gui/sysConf.cpp:2418 +msgid "DSi (16MB RAM)" +msgstr "" + +#: src/gui/sysConf.cpp:2444 src/gui/settings.cpp:727 +msgid "nothing to configure" +msgstr "no hay nada para configurar" + +#: src/gui/sysConf.cpp:2467 +msgid "Custom clock rate" +msgstr "Tasa del reloj personalizada" + +#: src/gui/volMeter.cpp:36 src/gui/settings.cpp:3969 src/gui/guiConst.cpp:596 +msgid "Volume Meter" +msgstr "Medidor de Volumen" + +#: src/gui/userPresets.cpp:325 +msgid "User Systems" +msgstr "Sistemas del Usuario" + +#: src/gui/userPresets.cpp:337 +msgid "Error! User category does not exist!" +msgstr "¡Error! La categoría de usuario no existe." + +#: src/gui/userPresets.cpp:346 src/gui/newSong.cpp:181 +msgid "Systems" +msgstr "Sistemas" + +#: src/gui/userPresets.cpp:349 +msgid "New Preset" +msgstr "Nueva Configuración" + +#: src/gui/userPresets.cpp:361 +msgid "select a preset" +msgstr "selecciona una configuración" + +#: src/gui/userPresets.cpp:374 +msgid "Remove##UPresetRemove" +msgstr "Quitar##UPresetRemove" + +#: src/gui/userPresets.cpp:439 src/gui/settings.cpp:1135 +msgid "Configure" +msgstr "Configurar" + +#: src/gui/userPresets.cpp:470 +msgid "Advanced" +msgstr "Avanzado" + +#: src/gui/userPresets.cpp:476 +msgid "" +"insert additional settings in `option=value` format.\n" +"available options:\n" +"- tickRate" +msgstr "" +"inserta opciones adicionales en formato `opción=valor`.\n" +"opciones disponibles:\n" +"- tickRate" + +#: src/gui/userPresets.cpp:509 +msgid "Save and Close" +msgstr "Guardar y Cerrar" + +#: src/gui/userPresets.cpp:515 src/gui/settings.cpp:1238 +#: src/gui/settings.cpp:2161 src/gui/settings.cpp:2553 +#: src/gui/settings.cpp:3796 +msgid "Import" +msgstr "Importar" + +#: src/gui/userPresets.cpp:519 +msgid "Import (replace)" +msgstr "Importar (reemplazar)" + +#: src/gui/effectList.cpp:14 src/gui/guiConst.cpp:606 +msgid "Effect List" +msgstr "Lista de efectos" + +#: src/gui/effectList.cpp:18 +#, c-format +msgid "Chip at cursor: %s" +msgstr "Chip en el cursor: %s" + +#: src/gui/effectList.cpp:21 src/gui/settings.cpp:6674 +msgid "Search" +msgstr "Buscar" + +#: src/gui/effectList.cpp:25 +msgid "Effect types to show:" +msgstr "Tipos de efectos a mostrar:" + +#: src/gui/effectList.cpp:47 +msgid "Description" +msgstr "Descripción" + +#: src/gui/subSongs.cpp:22 src/gui/subSongs.cpp:32 +#, c-format +msgid "%d. " +msgstr "%d. " + +#: src/gui/subSongs.cpp:73 src/gui/subSongs.cpp:93 +msgid "too many subsongs!" +msgstr "¡demasiadas subcanciones!" + +#: src/gui/subSongs.cpp:114 +msgid "this is the only subsong!" +msgstr "¡esta es la única subcanción!" + +#: src/gui/subSongs.cpp:116 +msgid "are you sure you want to remove this subsong?" +msgstr "¿seguro que quieres remover esta subcanción?" + +#: src/gui/spoiler.cpp:30 +msgid "Spoiler" +msgstr "Spoiler" + +#: src/gui/spoiler.cpp:32 +msgid "SPOILER" +msgstr "SPOILER" + +#: src/gui/settings.cpp:104 src/gui/settings.cpp:114 src/gui/settings.cpp:124 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:105 src/gui/settings.cpp:115 src/gui/settings.cpp:125 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:168 +msgid "ASAP (C++ port)" +msgstr "ASAP (port al C++)" + +#: src/gui/settings.cpp:191 +msgid "ESFMu (fast)" +msgstr "ESFMu (rápido)" + +#: src/gui/settings.cpp:205 +msgid "Lower" +msgstr "Más bajo" + +#: src/gui/settings.cpp:207 +msgid "Medium" +msgstr "Medio" + +#: src/gui/settings.cpp:209 +msgid "Ultra" +msgstr "" + +#: src/gui/settings.cpp:210 +msgid "Ultimate" +msgstr "Máxima" + +#: src/gui/settings.cpp:214 +msgid "evdev SND_TONE" +msgstr "" + +#: src/gui/settings.cpp:215 +msgid "KIOCSOUND on /dev/tty1" +msgstr "KIOCSOUND en /dev/tty1" + +#: src/gui/settings.cpp:216 +msgid "/dev/port" +msgstr "" + +#: src/gui/settings.cpp:217 +msgid "KIOCSOUND on standard output" +msgstr "KIOCSOUND en salida estándar" + +#: src/gui/settings.cpp:218 +msgid "outb()" +msgstr "" + +#: src/gui/settings.cpp:222 src/gui/settings.cpp:232 +msgid "Disabled/custom" +msgstr "Desactivado/personalizado" + +#: src/gui/settings.cpp:223 +msgid "Two octaves (0 is C-4, F is D#5)" +msgstr "Dos octavas (0 es C-4, F es D#5)" + +#: src/gui/settings.cpp:224 +msgid "Raw (note number is value)" +msgstr "Bruto (número de nota es el valor)" + +#: src/gui/settings.cpp:225 +msgid "Two octaves alternate (lower keys are 0-9, upper keys are A-F)" +msgstr "Dos octavas alterno (teclas bajas son 0-9, teclas altas son A-F)" + +#: src/gui/settings.cpp:226 src/gui/settings.cpp:233 +msgid "Use dual control change (one for each nibble)" +msgstr "Usar cambio de control dual (uno para cada nibble)" + +#: src/gui/settings.cpp:227 src/gui/settings.cpp:234 +msgid "Use 14-bit control change" +msgstr "Usar cambio de control 14-bit" + +#: src/gui/settings.cpp:228 src/gui/settings.cpp:235 +msgid "Use single control change (imprecise)" +msgstr "Usar un solo cambio de control (impreciso)" + +#: src/gui/settings.cpp:239 +msgid "--select--" +msgstr "--seleccionar--" + +#: src/gui/settings.cpp:240 src/gui/settings.cpp:241 src/gui/settings.cpp:242 +#: src/gui/settings.cpp:243 src/gui/settings.cpp:244 src/gui/settings.cpp:245 +#: src/gui/settings.cpp:246 +msgid "???" +msgstr "" + +#: src/gui/settings.cpp:247 +msgid "Note Off" +msgstr "Apagar Nota" + +#: src/gui/settings.cpp:248 +msgid "Note On" +msgstr "Encender Nota" + +#: src/gui/settings.cpp:249 +msgid "Aftertouch" +msgstr "Después del toque" + +#: src/gui/settings.cpp:250 src/gui/insEdit.cpp:7187 src/gui/insEdit.cpp:7217 +#: src/gui/insEdit.cpp:7382 src/gui/insEdit.cpp:7403 src/gui/insEdit.cpp:7415 +#: src/gui/insEdit.cpp:7430 +msgid "Control" +msgstr "Control" + +#: src/gui/settings.cpp:251 src/gui/settings.cpp:573 src/gui/settings.cpp:3177 +msgid "Program" +msgstr "Programa" + +#: src/gui/settings.cpp:252 +msgid "ChanPressure" +msgstr "Presión del canal" + +#: src/gui/settings.cpp:253 +msgid "Pitch Bend" +msgstr "Deslizamiento de tono" + +#: src/gui/settings.cpp:254 +msgid "SysEx" +msgstr "" + +#: src/gui/settings.cpp:258 src/gui/settings.cpp:1713 src/gui/settings.cpp:1723 +#: src/gui/settings.cpp:1743 src/gui/settings.cpp:1749 +#, c-format +msgid "Any" +msgstr "Cualquier" + +#: src/gui/settings.cpp:262 src/gui/settings.cpp:3363 src/gui/settings.cpp:3928 +#: src/gui/settings.cpp:4121 +msgid "Instrument" +msgstr "Instrumento" + +#: src/gui/settings.cpp:264 +msgid "Effect 1 type" +msgstr "Tipo del efecto 1" + +#: src/gui/settings.cpp:265 +msgid "Effect 1 value" +msgstr "Valor del efecto 1" + +#: src/gui/settings.cpp:266 +msgid "Effect 2 type" +msgstr "Tipo del efecto 2" + +#: src/gui/settings.cpp:267 +msgid "Effect 2 value" +msgstr "Valor del efecto 2" + +#: src/gui/settings.cpp:268 +msgid "Effect 3 type" +msgstr "Tipo del efecto 3" + +#: src/gui/settings.cpp:269 +msgid "Effect 3 value" +msgstr "Valor del efecto 3" + +#: src/gui/settings.cpp:270 +msgid "Effect 4 type" +msgstr "Tipo del efecto 4" + +#: src/gui/settings.cpp:271 +msgid "Effect 4 value" +msgstr "Valor del efecto 4" + +#: src/gui/settings.cpp:272 +msgid "Effect 5 type" +msgstr "Tipo del efecto 5" + +#: src/gui/settings.cpp:273 +msgid "Effect 5 value" +msgstr "Valor del efecto 5" + +#: src/gui/settings.cpp:274 +msgid "Effect 6 type" +msgstr "Tipo del efecto 6" + +#: src/gui/settings.cpp:275 +msgid "Effect 6 value" +msgstr "Valor del efecto 6" + +#: src/gui/settings.cpp:276 +msgid "Effect 7 type" +msgstr "Tipo del efecto 7" + +#: src/gui/settings.cpp:277 +msgid "Effect 7 value" +msgstr "Valor del efecto 7" + +#: src/gui/settings.cpp:278 +msgid "Effect 8 type" +msgstr "Tipo del efecto 8" + +#: src/gui/settings.cpp:279 +msgid "Effect 8 value" +msgstr "Valor del efecto 8" + +#: src/gui/settings.cpp:315 +msgid "Press key..." +msgstr "Presiona una tecla..." + +#: src/gui/settings.cpp:564 +msgid "Do you want to save your settings?" +msgstr "¿Deseas guardar tus ajustes?" + +#: src/gui/settings.cpp:571 +msgid "General" +msgstr "" + +#: src/gui/settings.cpp:588 +msgid "Language" +msgstr "Idioma" + +#: src/gui/settings.cpp:606 +msgid "Render backend" +msgstr "Backend de renderizado" + +#: src/gui/settings.cpp:661 src/gui/settings.cpp:680 src/gui/settings.cpp:1312 +msgid "you may need to restart Furnace for this setting to take effect." +msgstr "quizá tengas que reiniciar Furnace para que este ajuste tenga efecto." + +#: src/gui/settings.cpp:664 +msgid "Advanced render backend settings" +msgstr "Ajustes del backend de renderizado" + +#: src/gui/settings.cpp:666 +msgid "Render driver" +msgstr "Driver de renderizado" + +#: src/gui/settings.cpp:666 src/gui/settings.cpp:667 src/gui/settings.cpp:1298 +#: src/gui/settings.cpp:1299 src/gui/piano.cpp:108 +msgid "Automatic" +msgstr "Automático" + +#: src/gui/settings.cpp:683 +msgid "" +"beware: changing these settings may render Furnace unusable! do so at your " +"own risk.\n" +"start Furnace with -safemode if you mess something up." +msgstr "" +"cuidado: ¡cambiar estos ajustes puede hacer a Furnace inutilizable! hazlo a " +"tu propio riesgo\n" +"abre Furnace con -safemode si haces un lío." + +#: src/gui/settings.cpp:684 +msgid "Red bits" +msgstr "Bits rojos" + +#: src/gui/settings.cpp:689 +msgid "Green bits" +msgstr "Bits verdes" + +#: src/gui/settings.cpp:694 +msgid "Blue bits" +msgstr "Bits azules" + +#: src/gui/settings.cpp:699 +msgid "Alpha bits" +msgstr "Bits de alfa" + +#: src/gui/settings.cpp:704 +msgid "Color depth" +msgstr "Profundidad del color" + +#: src/gui/settings.cpp:709 +msgid "Stencil buffer size" +msgstr "Tamaño del búfer máscara" + +#: src/gui/settings.cpp:714 src/gui/settings.cpp:1385 +msgid "Buffer size" +msgstr "Tamaño del búfer" + +#: src/gui/settings.cpp:720 +msgid "Double buffer" +msgstr "Doble búfer" + +#: src/gui/settings.cpp:725 +msgid "" +"the following values are common (in red, green, blue, alpha order):\n" +"- 24 bits: 8, 8, 8, 0\n" +"- 16 bits: 5, 6, 5, 0\n" +"- 32 bits (with alpha): 8, 8, 8, 8\n" +"- 30 bits (deep): 10, 10, 10, 0" +msgstr "" +"los valores siguientes son comúnes (en orden de rojo, verde, azul y alfa):\n" +"- 24 bits: 8, 8, 8, 0\n" +"- 16 bits: 5, 6, 5, 0\n" +"- 32 bits (con alfa): 8, 8, 8, 8\n" +"- 30 bits (profundo): 10, 10, 10, 0" + +#: src/gui/settings.cpp:732 +#, c-format +msgid "" +"current backend: %s\n" +"%s\n" +"%s\n" +"%s" +msgstr "" +"backend actual:\n" +"%s\n" +"%s\n" +"%s\n" +"%s" + +#: src/gui/settings.cpp:735 +msgid "VSync" +msgstr "Sincronización vertical" + +#: src/gui/settings.cpp:743 +msgid "Frame rate limit" +msgstr "Límite de tasa de fotogramas (framerate, FPS)" + +#: src/gui/settings.cpp:743 +msgid "Unlimited" +msgstr "Ilimitado" + +#: src/gui/settings.cpp:749 +msgid "only applies when VSync is disabled." +msgstr "solo aplica cuando la sincronización vertical está desactivada." + +#: src/gui/settings.cpp:753 +msgid "Display render time" +msgstr "Mostrar tiempo de renderizado" + +#: src/gui/settings.cpp:760 +msgid "Late render clear" +msgstr "Limpiado de pantalla tardío" + +#: src/gui/settings.cpp:765 +msgid "" +"calls rend->clear() after rend->present(). might reduce UI latency by one " +"frame in some drivers." +msgstr "" +"llama a rend->clear() luego de rend->present(). puede que reduzca la " +"latencia de la interfaz en algunos drivers." + +#: src/gui/settings.cpp:770 +msgid "Power-saving mode" +msgstr "Ahorro de energía" + +#: src/gui/settings.cpp:775 +msgid "" +"saves power by lowering the frame rate to 2fps when idle.\n" +"may cause issues under Mesa drivers!" +msgstr "" +"ahorra energía disminuyendo la tasa de fotogramas a 2fps al no hacer nada\n" +"puede causar problemas en drivers de Mesa!" + +#: src/gui/settings.cpp:780 +msgid "Disable threaded input (restart after changing!)" +msgstr "Desactivar entrada basada en hilos (reiniciar programa al cambiar)" + +#: src/gui/settings.cpp:785 +msgid "" +"threaded input processes key presses for note preview on a separate thread " +"(on supported platforms), which reduces latency.\n" +"however, crashes have been reported when threaded input is on. enable this " +"option if that is the case." +msgstr "" +"la entrada basada en hilos procesa las teclas presionadas para previsualizar " +"notas en hilos separados (en plataformas soportadas), lo que reduce la " +"latencia.\n" +"aún así, se han reportado crashes cuandoestá encendido. activa esta opción " +"si es el caso." + +#: src/gui/settings.cpp:790 +msgid "Enable event delay" +msgstr "Activar retraso de eventos" + +#: src/gui/settings.cpp:796 +msgid "may cause issues with high-polling-rate mice when previewing notes." +msgstr "" +"puede causar problemas en ratones con una tasa de entrada alta al " +"previsualizar notas." + +#: src/gui/settings.cpp:800 +msgid "Per-channel oscilloscope threads" +msgstr "Hilos para cada canal en el osciloscopio" + +#: src/gui/settings.cpp:808 +msgid "you're being silly, aren't you? that's enough." +msgstr "¿estás siendo tonto, no? ya es suficiente." + +#: src/gui/settings.cpp:812 +msgid "what are you doing? stop!" +msgstr "¿qué estás haciendo? ¡para!" + +#: src/gui/settings.cpp:816 +#, c-format +msgid "" +"it is a bad idea to set this number higher than your CPU core count (%d)!" +msgstr "" +"¡es mala idea asignar un valor más alto que la cantidad de cores en tu CPU! " +"(%d)" + +#: src/gui/settings.cpp:821 +msgid "Oscilloscope rendering engine:" +msgstr "Motor de renderizado de los osciloscopios" + +#: src/gui/settings.cpp:823 +msgid "ImGui line plot" +msgstr "Dibujo de lineas con ImGui" + +#: src/gui/settings.cpp:827 +msgid "render using Dear ImGui's built-in line drawing functions." +msgstr "" +"renderizar usando las funciones de dibujo de línea integrados en Dear ImGui." + +#: src/gui/settings.cpp:829 +msgid "GLSL (if available)" +msgstr "GLSL (si está disponible)" + +#: src/gui/settings.cpp:834 +msgid "" +"render using shaders that run on the graphics card.\n" +"only available in OpenGL ES 2.0 render backend." +msgstr "" +"renderizar usando shaders que corren en la tarjeta gráfica.\n" +"solo disponible en el backend de renderizado OpenGL ES 2.0." + +#: src/gui/settings.cpp:836 +msgid "" +"render using shaders that run on the graphics card.\n" +"only available in OpenGL 3.0 render backend." +msgstr "" +"renderizar usando shaders que corren en la tarjeta gráfica.\n" +"solo disponible en el backend de renderizado OpenGL 3.0." + +#: src/gui/settings.cpp:843 +msgid "Vibration" +msgstr "Vibración" + +#: src/gui/settings.cpp:845 +msgid "Strength" +msgstr "Fuerza" + +#: src/gui/settings.cpp:851 src/gui/insEdit.cpp:2284 src/gui/insEdit.cpp:2382 +#: src/gui/insEdit.cpp:5582 src/gui/insEdit.cpp:6241 +msgid "Length" +msgstr "Longitud" + +#: src/gui/settings.cpp:859 src/gui/gui.cpp:4191 +msgid "File" +msgstr "Archivo" + +#: src/gui/settings.cpp:862 +msgid "Use system file picker" +msgstr "Usar selector de archivos del sistema" + +#: src/gui/settings.cpp:867 +msgid "Number of recent files" +msgstr "Número de archivos recientes" + +#: src/gui/settings.cpp:874 +msgid "Compress when saving" +msgstr "Comprimir al guardar" + +#: src/gui/settings.cpp:879 +msgid "use zlib to compress saved songs." +msgstr "usar zlib para comprimir canciones guardadas." + +#: src/gui/settings.cpp:883 +msgid "Save unused patterns" +msgstr "Guardar patrones sin usar" + +#: src/gui/settings.cpp:889 +msgid "Use new pattern format when saving" +msgstr "Usar el nuevo formato de patrón al guardar" + +#: src/gui/settings.cpp:894 +msgid "" +"use a packed format which saves space when saving songs.\n" +"disable if you need compatibility with older Furnace and/or tools\n" +"which do not support this format." +msgstr "" +"usa un formato empaquetado que ahorra espacio al guardar canciones.\n" +"desactívalo si necesitas compatibilidad con versiones antiguas y/o " +"herramientas\n" +"que no soporten este formato." + +#: src/gui/settings.cpp:898 +msgid "Don't apply compatibility flags when loading .dmf" +msgstr "No aplicar opciones de compatibilidad al abrir .dmf" + +#: src/gui/settings.cpp:903 +msgid "do not report any issues arising from the use of this option!" +msgstr "¡no reportes ningún problema que ocurra del uso de esta opción!" + +#: src/gui/settings.cpp:906 +msgid "Play after opening song:" +msgstr "Reproducir al abrir canción:" + +#: src/gui/settings.cpp:908 +msgid "No##pol0" +msgstr "" + +#: src/gui/settings.cpp:912 +msgid "Only if already playing##pol1" +msgstr "Solo si ya se estaba reproduciendo otra##pol1" + +#: src/gui/settings.cpp:916 +msgid "Yes##pol0" +msgstr "Sí##pol0" + +#: src/gui/settings.cpp:922 +msgid "Audio export loop/fade out time:" +msgstr "Tiempo de exportado de bucle/fundido en audio:" + +#: src/gui/settings.cpp:924 +msgid "Set to these values on start-up:##fot0" +msgstr "Establecer estos valores en el arranque:##fot0" + +#: src/gui/settings.cpp:942 +msgid "Remember last values##fot1" +msgstr "Recordar los últimos valores##fot1" + +#: src/gui/settings.cpp:949 +msgid "Store instrument name in .fui" +msgstr "Guardar nombre del instrumento en .fui" + +#: src/gui/settings.cpp:954 +msgid "" +"when enabled, saving an instrument will store its name.\n" +"this may increase file size." +msgstr "" +"cuando está activado, guardar un instrumento guarda su nombre.\n" +"podría aumentar el tamaño del archivo." + +#: src/gui/settings.cpp:958 +msgid "Load instrument name from .fui" +msgstr "Cargar nombre del instrumento del .fui" + +#: src/gui/settings.cpp:963 +msgid "" +"when enabled, loading an instrument will use the stored name (if present).\n" +"otherwise, it will use the file name." +msgstr "" +"cuando está activado, cargar un instrumento usará el nombre guardado (si " +"está presente).\n" +"si no es el caso, usará el nombre del archivo." + +#: src/gui/settings.cpp:967 +msgid "Auto-fill file name when saving" +msgstr "Auto-rellenar nombre de archivo al guardar" + +#: src/gui/settings.cpp:972 +msgid "" +"fill the file name field with an appropriate file name when saving or " +"exporting." +msgstr "" +"rellena el campo del nombre de archivo con un nombre apropiado al guardar o " +"exportar." + +#: src/gui/settings.cpp:976 src/gui/gui.cpp:5563 src/gui/gui.cpp:5613 +msgid "New Song" +msgstr "Nueva Canción" + +#: src/gui/settings.cpp:978 +msgid "Initial system:" +msgstr "Sistema inicial:" + +#: src/gui/settings.cpp:980 +msgid "Current system" +msgstr "Sistema actual" + +#: src/gui/settings.cpp:993 src/gui/waveEdit.cpp:1149 src/gui/gui.cpp:3046 +msgid "Randomize" +msgstr "Aleatorio" + +#: src/gui/settings.cpp:1043 +msgid "Reset to defaults" +msgstr "Reiniciar a predeterminado" + +#: src/gui/settings.cpp:1178 +msgid "When creating new song:" +msgstr "Al crear nueva canción" + +#: src/gui/settings.cpp:1180 +msgid "Display system preset selector##NSB0" +msgstr "Mostrar selector de sistema##NSB0" + +#: src/gui/settings.cpp:1184 +msgid "Start with initial system##NSB1" +msgstr "Empezar con sistema inicial##NSB1" + +#: src/gui/settings.cpp:1188 +msgid "Default author name" +msgstr "Nombre de autor predeterminado" + +#: src/gui/settings.cpp:1192 +msgid "Start-up" +msgstr "Arranque" + +#: src/gui/settings.cpp:1193 +msgid "Play intro on start-up:" +msgstr "Reproducir intro en el arranque:" + +#: src/gui/settings.cpp:1195 +msgid "No##pis0" +msgstr "No##pis0" + +#: src/gui/settings.cpp:1199 +msgid "Short##pis1" +msgstr "Corto##pis1" + +#: src/gui/settings.cpp:1203 +msgid "Full (short when loading song)##pis2" +msgstr "Completo (corto al cargar canción)##pis2" + +#: src/gui/settings.cpp:1207 +msgid "Full (always)##pis3" +msgstr "Completo (siempre)##pis3" + +#: src/gui/settings.cpp:1214 +msgid "Disable fade-in during start-up" +msgstr "Desactivar desvanecimiento al arrancar" + +#: src/gui/settings.cpp:1220 +msgid "About screen party time" +msgstr "Hora de fiesta en la pantalla Acerca de" + +#: src/gui/settings.cpp:1225 +msgid "Warning: may cause epileptic seizures." +msgstr "Alerta: podría causar ataques epilépticos." + +#: src/gui/settings.cpp:1229 +msgid "Behavior" +msgstr "Comportamiento" + +#: src/gui/settings.cpp:1231 +msgid "New instruments are blank" +msgstr "Los nuevos instrumentos están en blanco" + +#: src/gui/settings.cpp:1237 src/gui/settings.cpp:4255 +msgid "Configuration" +msgstr "Configuración" + +#: src/gui/settings.cpp:1246 +msgid "Factory Reset" +msgstr "Reinicio de fábrica" + +#: src/gui/settings.cpp:1247 +msgid "" +"Are you sure you want to reset all Furnace settings?\n" +"You must restart Furnace after doing so." +msgstr "" +"¿Seguro que quieres reiniciar todos los ajustes de Furnace?\n" +"Debes de reiniciar la aplicación una vez hecho esto." + +#: src/gui/settings.cpp:1255 +msgid "Output" +msgstr "Salida" + +#: src/gui/settings.cpp:1263 +msgid "Backend" +msgstr "" + +#: src/gui/settings.cpp:1296 +msgid "Driver" +msgstr "Controlador" + +#: src/gui/settings.cpp:1319 +msgid "Device" +msgstr "Dispositivo" + +#: src/gui/settings.cpp:1323 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:1324 +msgid "ALERT - TRESPASSER DETECTED" +msgstr "ALERTA - INTRUSO DETECTADO" + +#: src/gui/settings.cpp:1326 +msgid "you have been arrested for trying to engage with a disabled combo box." +msgstr "" +"has sido arrestado por tratar de interactuar con una lista de opciones " +"desactivada." + +#: src/gui/settings.cpp:1333 src/gui/settings.cpp:1335 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:1371 src/gui/insEdit.cpp:7186 +msgid "Outputs" +msgstr "Cantidad de salidas" + +#: src/gui/settings.cpp:1379 +msgid "" +"common values:\n" +"- 1 for mono\n" +"- 2 for stereo\n" +"- 4 for quadraphonic\n" +"- 6 for 5.1 surround\n" +"- 8 for 7.1 surround" +msgstr "" +"valores comunes:\n" +"- 1 para mono\n" +"- 2 para estéreo\n" +"- 4 para cuadrafónico\n" +"- 6 para envolvente 5.1\n" +"- 8 para envolvente 7.1" + +#: src/gui/settings.cpp:1387 +#, c-format +msgid "%d (latency: ~%.1fms)" +msgstr "%d (latencia: ~%.1fms)" + +#: src/gui/settings.cpp:1402 +msgid "Multi-threaded (EXPERIMENTAL)" +msgstr "Múltiples hilos (EXPERIMENTAL)" + +#: src/gui/settings.cpp:1411 +msgid "" +"runs chip emulation on separate threads.\n" +"may increase performance when using heavy emulation cores.\n" +"\n" +"warnings:\n" +"- experimental!\n" +"- only useful on multi-chip songs." +msgstr "" +"emula los chips en hilos separados.\n" +"podría mejorar la potencia al usar núcleos de emulación pesados.\n" +"\n" +"advertencias:\n" +"- ¡experimental!\n" +"- solamente sirve en canciones multi-chip." + +#: src/gui/settings.cpp:1416 +msgid "Number of threads" +msgstr "Número de hilos" + +#: src/gui/settings.cpp:1423 +msgid "that's the limit!" +msgstr "¡ese es el límite!" + +#: src/gui/settings.cpp:1427 +#, c-format +msgid "" +"it is a VERY bad idea to set this number higher than your CPU core count " +"(%d)!" +msgstr "" +"¡es MUY mala idea asignar un valor más alto que la cantidad de cores en tu " +"CPU! (%d)" + +#: src/gui/settings.cpp:1435 +msgid "Low-latency mode" +msgstr "Modo de baja latencia" + +#: src/gui/settings.cpp:1440 +msgid "" +"reduces latency by running the engine faster than the tick rate.\n" +"useful for live playback/jam mode.\n" +"\n" +"warning: only enable if your buffer size is small (10ms or less)." +msgstr "" +"reduce latencia al correr el motor más rápido que la tasa de ticks.\n" +"puede mejorar la experiencia al tocar en vivo.\n" +"\n" +"advertencia: no activar si el tamaño del búfer es largo (más de 10ms)." + +#: src/gui/settings.cpp:1444 +msgid "Force mono audio" +msgstr "Forzar audio mono" + +#: src/gui/settings.cpp:1452 +msgid "Exclusive mode" +msgstr "Modo exclusivo" + +#: src/gui/settings.cpp:1463 +#, c-format +msgid "want: %d samples @ %.0fHz (%d channel)" +msgid_plural "want: %d samples @ %.0fHz (%d channels)" +msgstr[0] "querer: %d samples @ %.0fHz (%d canal)" +msgstr[1] "querer: %d samples @ %.0fHz (%d canales)" + +#: src/gui/settings.cpp:1464 +#, c-format +msgid "got: %d samples @ %.0fHz (%d channel)" +msgid_plural "got: %d samples @ %.0fHz (%d channels)" +msgstr[0] "obtuvo: %d samples @ %.0fHz (%d canal)" +msgstr[1] "obtuvo: %d samples @ %.0fHz (%d canales)" + +#: src/gui/settings.cpp:1471 +msgid "Mixing" +msgstr "Mezcla" + +#: src/gui/settings.cpp:1473 src/gui/settings.cpp:2082 +msgid "Quality" +msgstr "Calidad" + +#: src/gui/settings.cpp:1478 +msgid "Software clipping" +msgstr "Límite de picos en software" + +#: src/gui/settings.cpp:1484 +msgid "DC offset correction" +msgstr "Corrección de descentro DC" + +#: src/gui/settings.cpp:1502 src/gui/guiConst.cpp:740 +msgid "Sample preview" +msgstr "Vista previa de samples" + +#: src/gui/settings.cpp:1515 +msgid "MIDI" +msgstr "MIDI" + +#: src/gui/settings.cpp:1517 src/gui/settings.cpp:1519 +msgid "MIDI input" +msgstr "Entrada MIDI" + +#: src/gui/settings.cpp:1521 src/gui/settings.cpp:1524 +#: src/gui/settings.cpp:1815 src/gui/settings.cpp:1817 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:1540 +msgid "Re-scan MIDI devices" +msgstr "Re-escanear dispositivos MIDI" + +#: src/gui/settings.cpp:1551 src/gui/settings.cpp:2258 +msgid "Note input" +msgstr "Entrada de nota" + +#: src/gui/settings.cpp:1552 +msgid "Velocity input" +msgstr "Entrada de velocidad" + +#: src/gui/settings.cpp:1556 +msgid "Map MIDI channels to direct channels" +msgstr "Mapear canales MIDI a canales directos" + +#: src/gui/settings.cpp:1562 +msgid "Program change pass-through" +msgstr "Pasar los cambios de programa" + +#: src/gui/settings.cpp:1567 +msgid "Map Yamaha FM voice data to instruments" +msgstr "Mapear datos de voz Yamaha FM a instrumentos" + +#: src/gui/settings.cpp:1569 +msgid "Program change is instrument selection" +msgstr "Cambio de programa selecciona instrumento" + +#: src/gui/settings.cpp:1573 +msgid "Value input style" +msgstr "Estilo de entrada de valor" + +#: src/gui/settings.cpp:1576 src/gui/settings.cpp:1601 +msgid "Control##valueCCS" +msgstr "" + +#: src/gui/settings.cpp:1582 src/gui/settings.cpp:1607 +msgid "CC of upper nibble##valueCC1" +msgstr "CC del nibble superior##valueCC1" + +#: src/gui/settings.cpp:1582 src/gui/settings.cpp:1607 +msgid "MSB CC##valueCC1" +msgstr "" + +#: src/gui/settings.cpp:1587 src/gui/settings.cpp:1612 +msgid "CC of lower nibble##valueCC2" +msgstr "CC del nibble inferior##valueCC2" + +#: src/gui/settings.cpp:1587 src/gui/settings.cpp:1612 +msgid "LSB CC##valueCC2" +msgstr "" + +#: src/gui/settings.cpp:1594 +msgid "Per-column control change" +msgstr "Cambio de control por cada columna" + +#: src/gui/settings.cpp:1624 src/gui/settings.cpp:1634 +msgid "Volume curve" +msgstr "Curva de volumen" + +#: src/gui/settings.cpp:1637 +msgid "Actions:" +msgstr "Acciones:" + +#: src/gui/settings.cpp:1651 +msgid "" +"(learning! press a button or move a slider/knob/something on your device.)" +msgstr "" +"(¡aprendiendo! presiona un botón o mueve un control en tu dispositivo.)" + +#: src/gui/settings.cpp:1665 src/gui/settings.cpp:2277 +#: src/gui/settings.cpp:6687 src/gui/sampleEdit.cpp:501 +#: src/gui/insEdit.cpp:5321 +msgid "Type" +msgstr "Tipo" + +#: src/gui/settings.cpp:1669 +msgid "Note/Control" +msgstr "Nota/Control" + +#: src/gui/settings.cpp:1671 +msgid "Velocity/Value" +msgstr "Velocidad/Valor" + +#: src/gui/settings.cpp:1673 +msgid "Action" +msgstr "Acción" + +#: src/gui/settings.cpp:1765 src/gui/settings.cpp:1766 +msgid "--none--" +msgstr "--ninguna--" + +#: src/gui/settings.cpp:1787 +msgid "waiting...##BLearn" +msgstr "esperando...##BLearn" + +#: src/gui/settings.cpp:1787 +msgid "Learn##BLearn" +msgstr "Aprender##BLearn" + +#: src/gui/settings.cpp:1811 src/gui/settings.cpp:1813 +msgid "MIDI output" +msgstr "Salida MIDI" + +#: src/gui/settings.cpp:1830 +msgid "Output mode:" +msgstr "Modo de salida:" + +#: src/gui/settings.cpp:1832 +msgid "Off (use for TX81Z)" +msgstr "Apagado (usar para TX81Z)" + +#: src/gui/settings.cpp:1836 +msgid "Melodic" +msgstr "Melódico" + +#: src/gui/settings.cpp:1847 +msgid "Send Program Change" +msgstr "Enviar Cambio de Programa" + +#: src/gui/settings.cpp:1853 +msgid "Send MIDI clock" +msgstr "Enviar Reloj MIDI" + +#: src/gui/settings.cpp:1859 +msgid "Send MIDI timecode" +msgstr "Enviar código de tiempo MIDI" + +#: src/gui/settings.cpp:1865 +msgid "Timecode frame rate:" +msgstr "Velocidad de fotogramas del código de tiempo:" + +#: src/gui/settings.cpp:1867 +msgid "Closest to Tick Rate" +msgstr "Cercana a la tasa de ticks" + +#: src/gui/settings.cpp:1871 +msgid "Film (24fps)" +msgstr "Película (24fps)" + +#: src/gui/settings.cpp:1875 +msgid "PAL (25fps)" +msgstr "" + +#: src/gui/settings.cpp:1879 +msgid "NTSC drop (29.97fps)" +msgstr "NTSC caída (29.97fps)" + +#: src/gui/settings.cpp:1883 +msgid "NTSC non-drop (30fps)" +msgstr "NTSC sin caída (30fps)" + +#: src/gui/settings.cpp:1892 +msgid "Emulation" +msgstr "Emulación" + +#: src/gui/settings.cpp:1894 +msgid "Cores" +msgstr "Motores" + +#: src/gui/settings.cpp:1903 +msgid "Playback Core(s)" +msgstr "Motor(es) de reproducción" + +#: src/gui/settings.cpp:1905 src/gui/settings.cpp:2093 +msgid "used for playback" +msgstr "usado para reproducir" + +#: src/gui/settings.cpp:1908 +msgid "Render Core(s)" +msgstr "Motor(es) de renderizado" + +#: src/gui/settings.cpp:1910 src/gui/settings.cpp:2098 +msgid "used in audio export" +msgstr "usados en la exportación de audio" + +#: src/gui/settings.cpp:2091 +msgid "Playback" +msgstr "Reproducción" + +#: src/gui/settings.cpp:2096 +msgid "Render" +msgstr "Renderizado" + +#: src/gui/settings.cpp:2120 +msgid "PC Speaker strategy" +msgstr "Estrategia del PC Speaker" + +#: src/gui/settings.cpp:2158 src/gui/settings.cpp:2160 +msgid "Keyboard" +msgstr "Teclado" + +#: src/gui/settings.cpp:2169 src/gui/settings.cpp:3804 +msgid "Reset defaults" +msgstr "Reiniciar a la conf. por defecto" + +#: src/gui/settings.cpp:2170 +msgid "Are you sure you want to reset the keyboard settings?" +msgstr "¿Seguro que quieres reiniciar tus atajos de teclado?" + +#: src/gui/settings.cpp:2172 +msgid "Global hotkeys" +msgstr "Atajos globales" + +#: src/gui/settings.cpp:2209 +msgid "Window activation" +msgstr "Activación de ventanas" + +#: src/gui/settings.cpp:2275 +msgid "Key" +msgstr "Tecla" + +#: src/gui/settings.cpp:2279 src/gui/findReplace.cpp:725 +#: src/gui/findReplace.cpp:1003 +msgid "Value" +msgstr "Valor" + +#: src/gui/settings.cpp:2289 +#, c-format +msgid "Macro release##SNType_%d" +msgstr "Lanzar macro##SNType_%d" + +#: src/gui/settings.cpp:2294 +#, c-format +msgid "Note release##SNType_%d" +msgstr "Lanzar nota##SNType_%d" + +#: src/gui/settings.cpp:2299 +#, c-format +msgid "Note off##SNType_%d" +msgstr "Apagar nota##SNType_%d" + +#: src/gui/settings.cpp:2304 +#, c-format +msgid "Note##SNType_%d" +msgstr "Nota##SNType_%d" + +#: src/gui/settings.cpp:2328 +msgid "Add..." +msgstr "Agregar..." + +#: src/gui/settings.cpp:2418 +msgid "Instrument list" +msgstr "Lista de instrumentos" + +#: src/gui/settings.cpp:2438 +msgid "Wavetable list" +msgstr "Lista de wavetables" + +#: src/gui/settings.cpp:2459 +msgid "Sample list" +msgstr "Lista de samples" + +#: src/gui/settings.cpp:2509 +msgid "Sample editor" +msgstr "Editor de samples" + +#: src/gui/settings.cpp:2547 src/gui/settings.cpp:3814 +#: src/gui/settings.cpp:3844 +msgid "Interface" +msgstr "Interfaz" + +#: src/gui/settings.cpp:2549 +msgid "Layout" +msgstr "Diseño" + +#: src/gui/settings.cpp:2551 +msgid "Workspace layout:" +msgstr "Diseño del area de trabajo:" + +#: src/gui/settings.cpp:2561 src/gui/gui.cpp:2920 +msgid "Reset" +msgstr "Reiniciar" + +#: src/gui/settings.cpp:2562 src/gui/gui.cpp:4455 +msgid "Are you sure you want to reset the workspace layout?" +msgstr "¿Seguro que quieres reiniciar el diseño del area de trabajo?" + +#: src/gui/settings.cpp:2566 +msgid "Allow docking editors" +msgstr "Permitir la acoplación de editores" + +#: src/gui/settings.cpp:2573 +msgid "Remember window position" +msgstr "Recordar la posición de todas las ventanas" + +#: src/gui/settings.cpp:2578 +msgid "remembers the window's last position on start-up." +msgstr "recuerda la última posición de todas las ventanas al abrir." + +#: src/gui/settings.cpp:2583 +msgid "Only allow window movement when clicking on title bar" +msgstr "" +"Solo permitir movimiento de ventana al hacer clic en la barra de título" + +#: src/gui/settings.cpp:2590 +msgid "Center pop-up windows" +msgstr "Centrar ventanas emergentes" + +#: src/gui/settings.cpp:2595 +msgid "Play/edit controls layout:" +msgstr "Diseño de los controles de reproducción/edición:" + +#: src/gui/settings.cpp:2597 +msgid "Classic##ecl0" +msgstr "Clásico##ecl0" + +#: src/gui/settings.cpp:2601 +msgid "Compact##ecl1" +msgstr "Compacto##ecl1" + +#: src/gui/settings.cpp:2605 +msgid "Compact (vertical)##ecl2" +msgstr "Compacto (vertical)##ecl2" + +#: src/gui/settings.cpp:2609 +msgid "Split##ecl3" +msgstr "Separado##ecl3" + +#: src/gui/settings.cpp:2615 +msgid "Position of buttons in Orders:" +msgstr "Posición de los botones en Órdenes:" + +#: src/gui/settings.cpp:2617 +msgid "Top##obp0" +msgstr "Encima##obp0" + +#: src/gui/settings.cpp:2621 +msgid "Left##obp1" +msgstr "A la izquierda##obp1" + +#: src/gui/settings.cpp:2625 +msgid "Right##obp2" +msgstr "A la derecha##obp2" + +#: src/gui/settings.cpp:2632 +msgid "Mouse" +msgstr "Ratón" + +#: src/gui/settings.cpp:2634 +msgid "Double-click time (seconds)" +msgstr "Tiempo de doble click (en segundos)" + +#: src/gui/settings.cpp:2643 +msgid "Don't raise pattern editor on click" +msgstr "No levantar el editor de patrones al hacer clic en este" + +#: src/gui/settings.cpp:2649 +msgid "Focus pattern editor when selecting instrument" +msgstr "Enfocar editor de patrones al seleccionar instrumento" + +#: src/gui/settings.cpp:2654 +msgid "Note preview behavior:" +msgstr "Comportamiento de previsualización de notas:" + +#: src/gui/settings.cpp:2656 +msgid "Never##npb0" +msgstr "Nunca reproducir nota##npb0" + +#: src/gui/settings.cpp:2660 +msgid "When cursor is in Note column##npb1" +msgstr "Cuando el cursor se encuentre en la columna de notas##npb1" + +#: src/gui/settings.cpp:2664 +msgid "When cursor is in Note column or not in edit mode##npb2" +msgstr "" +"Reproducir cuando el cursor esté en la columna de notas o el modo de edición " +"esté desactivado##npb2" + +#: src/gui/settings.cpp:2668 +msgid "Always##npb3" +msgstr "Siempre reproducir nota##npb3" + +#: src/gui/settings.cpp:2674 +msgid "Allow dragging selection:" +msgstr "Permitir arrastrar la selección:" + +#: src/gui/settings.cpp:2676 +msgid "No##dms0" +msgstr "No##dms0" + +#: src/gui/settings.cpp:2680 +msgid "Yes##dms1" +msgstr "Sí##dms1" + +#: src/gui/settings.cpp:2684 +msgid "Yes (while holding Ctrl only)##dms2" +msgstr "Sí (solo si mantienes presionado Ctrl)##dms2" + +#: src/gui/settings.cpp:2690 +msgid "Toggle channel solo on:" +msgstr "Activar/desactivar canal con:" + +#: src/gui/settings.cpp:2692 +msgid "Right-click or double-click##soloA" +msgstr "Clic derecho o doble clic##soloA" + +#: src/gui/settings.cpp:2696 +msgid "Right-click##soloR" +msgstr "Clic derecho##soloR" + +#: src/gui/settings.cpp:2700 +msgid "Double-click##soloD" +msgstr "Doble clic##soloD" + +#: src/gui/settings.cpp:2707 +msgid "Double click selects entire column" +msgstr "El doble clic selecciona la columna entera" + +#: src/gui/settings.cpp:2713 +msgid "Cursor behavior" +msgstr "Comportamiento del cursor" + +#: src/gui/settings.cpp:2715 +msgid "Insert pushes entire channel row" +msgstr "Insertar empuja la fila completa del canal" + +#: src/gui/settings.cpp:2721 +msgid "Pull delete affects entire channel row" +msgstr "Borrar y halar afecta la fila completa del canal" + +#: src/gui/settings.cpp:2727 +msgid "Push value when overwriting instead of clearing it" +msgstr "Empujar valor al sobreescribir en vez de borrarlo" + +#: src/gui/settings.cpp:2733 +msgid "Keyboard note/value input repeat (hold key to input continuously)" +msgstr "" +"Repetición de entrada de notas/valores a través del teclado (mantén para " +"repetir entrada)" + +#: src/gui/settings.cpp:2738 +msgid "Effect input behavior:" +msgstr "Comportamiento de entrada en la columa de efecto:" + +#: src/gui/settings.cpp:2740 +msgid "Move down##eicb0" +msgstr "Mover el cursor hacia abajo##eicb0" + +#: src/gui/settings.cpp:2744 +msgid "Move to effect value (otherwise move down)##eicb1" +msgstr "Mover el cursor al valor del efecto, o hacia abajo##eicb1" + +#: src/gui/settings.cpp:2748 +msgid "Move to effect value/next effect and wrap around##eicb2" +msgstr "" +"Mover el cursor al valor del efecto/al siguiente efecto (envolvente)##eicb2" + +#: src/gui/settings.cpp:2755 +msgid "Delete effect value when deleting effect" +msgstr "Borrar valor de efecto al borrar efecto" + +#: src/gui/settings.cpp:2761 +msgid "Change current instrument when changing instrument column (absorb)" +msgstr "" +"Cambiar instrumento actual al modificar la columna de instrumento (absorber)" + +#: src/gui/settings.cpp:2767 +msgid "Remove instrument value when inserting note off/release" +msgstr "Remover valor de instrumento al insertar corte/relajación de nota" + +#: src/gui/settings.cpp:2773 +msgid "Remove volume value when inserting note off/release" +msgstr "Remover valor de volumen al insertar corte/relajación de nota" + +#: src/gui/settings.cpp:2779 +msgid "Cursor movement" +msgstr "Movimiento del cursor" + +#: src/gui/settings.cpp:2781 +msgid "Wrap horizontally:" +msgstr "Envolver horizontalmente" + +#: src/gui/settings.cpp:2783 +msgid "No##wrapH0" +msgstr "No##wrapH0" + +#: src/gui/settings.cpp:2787 +msgid "Yes##wrapH1" +msgstr "Sí##wrapH1" + +#: src/gui/settings.cpp:2791 +msgid "Yes, and move to next/prev row##wrapH2" +msgstr "Sí, y mueve el cursor a la fila posterior/anterior##wrapH2" + +#: src/gui/settings.cpp:2797 +msgid "Wrap vertically:" +msgstr "Envolver verticalmente:" + +#: src/gui/settings.cpp:2799 +msgid "No##wrapV0" +msgstr "No##wrapV0" + +#: src/gui/settings.cpp:2803 +msgid "Yes##wrapV1" +msgstr "Sí##wrapV1" + +#: src/gui/settings.cpp:2807 +msgid "Yes, and move to next/prev pattern##wrapV2" +msgstr "Sí, y mueve el cursor al patrón posterior/anterior##wrapV2" + +#: src/gui/settings.cpp:2811 +msgid "Yes, and move to next/prev pattern (wrap around)##wrapV2" +msgstr "" +"Sí, y mueve el cursor al patrón posterior/anterior (con envoltura)##wrapV2" + +#: src/gui/settings.cpp:2817 +msgid "Cursor movement keys behavior:" +msgstr "Comportamiento de las teclas de movimiento:" + +#: src/gui/settings.cpp:2819 +msgid "Move by one##cmk0" +msgstr "Mueven de a un paso##cmk0" + +#: src/gui/settings.cpp:2823 +msgid "Move by Edit Step##cmk1" +msgstr "Mueven usando pasos de edición##cmk1" + +#: src/gui/settings.cpp:2830 +msgid "Move cursor by edit step on delete" +msgstr "Mueve el cursor usando pasos de edición al borrar" + +#: src/gui/settings.cpp:2836 +msgid "Move cursor by edit step on insert (push)" +msgstr "Mueve el cursor usando pasos de edición al insertar (con empuje)" + +#: src/gui/settings.cpp:2842 +msgid "Move cursor up on backspace-delete" +msgstr "Mover cursor hacia arriba al borrar usando Backspace" + +#: src/gui/settings.cpp:2848 +msgid "Move cursor to end of clipboard content when pasting" +msgstr "Mover cursor al final del contenido del portapapeles al pegar" + +#: src/gui/settings.cpp:2854 +msgid "Scrolling" +msgstr "Desplazamiento" + +#: src/gui/settings.cpp:2856 +msgid "Change order when scrolling outside of pattern bounds:" +msgstr "Cambiar orden al moverse fuera de los límites del patrón:" + +#: src/gui/settings.cpp:2858 +msgid "No##pscroll0" +msgstr "No##pscroll0" + +#: src/gui/settings.cpp:2862 +msgid "Yes##pscroll1" +msgstr "Sí##pscroll1" + +#: src/gui/settings.cpp:2866 +msgid "Yes, and wrap around song##pscroll2" +msgstr "Sí, y envuelve alrededor de la canción##pscroll2" + +#: src/gui/settings.cpp:2873 +msgid "Cursor follows current order when moving it" +msgstr "El cursor sigue el orden actual al moverlo" + +#: src/gui/settings.cpp:2878 +msgid "applies when playback is stopped." +msgstr "aplica cuando la canción está detenida." + +#: src/gui/settings.cpp:2882 +msgid "Don't scroll when moving cursor" +msgstr "No desplazar al mover el cursor" + +#: src/gui/settings.cpp:2887 +msgid "Move cursor with scroll wheel:" +msgstr "Mover cursor con la rueda del mouse:" + +#: src/gui/settings.cpp:2889 +msgid "No##csw0" +msgstr "No##csw0" + +#: src/gui/settings.cpp:2893 +msgid "Yes##csw1" +msgstr "Sí##csw1" + +#: src/gui/settings.cpp:2897 +msgid "Inverted##csw2" +msgstr "Sí, pero invertido##csw2" + +#: src/gui/settings.cpp:2904 +msgid "How many steps to move with each scroll wheel step?" +msgstr "¿Cuántos pasos se moverá el cursor con cada giro de la rueda?" + +#: src/gui/settings.cpp:2905 +msgid "One##cws0" +msgstr "Uno##cws0" + +#: src/gui/settings.cpp:2909 +msgid "Edit Step##cws1" +msgstr "La cantidad de pasos de edición##cws1" + +#: src/gui/settings.cpp:2916 src/gui/settings.cpp:3531 +msgid "Assets" +msgstr "Bienes" + +#: src/gui/settings.cpp:2919 +msgid "Display instrument type menu when adding instrument" +msgstr "Mostrar menú del tipo de instrumento al añadir instrumento" + +#: src/gui/settings.cpp:2925 +msgid "Select asset after opening one" +msgstr "Seleccionar bien al abrirlo" + +#: src/gui/settings.cpp:2932 +msgid "Appearance" +msgstr "Apariencia" + +#: src/gui/settings.cpp:2934 +msgid "Scaling" +msgstr "Escala" + +#: src/gui/settings.cpp:2936 +msgid "Automatic UI scaling factor" +msgstr "Escalar interfaz automáticamente" + +#: src/gui/settings.cpp:2945 +msgid "UI scaling factor" +msgstr "Escala de la interfaz" + +#: src/gui/settings.cpp:2952 +msgid "Icon size" +msgstr "Tamaño de íconos" + +#: src/gui/settings.cpp:2967 +msgid "Font renderer" +msgstr "Renderizador de fuentes" + +#: src/gui/settings.cpp:2977 +msgid "Main font" +msgstr "Fuente principal" + +#: src/gui/settings.cpp:2988 +msgid "Size##MainFontSize" +msgstr "Tamaño##MainFontSize" + +#: src/gui/settings.cpp:2996 +msgid "Header font" +msgstr "Fuente de cabecera" + +#: src/gui/settings.cpp:3007 +msgid "Size##HeadFontSize" +msgstr "Tamaño##HeadFontSize" + +#: src/gui/settings.cpp:3015 +msgid "Pattern font" +msgstr "Fuente del patrón" + +#: src/gui/settings.cpp:3026 +msgid "Size##PatFontSize" +msgstr "Tamaño##PatFontSize" + +#: src/gui/settings.cpp:3036 +msgid "Anti-aliased fonts" +msgstr "Suavizar fuentes" + +#: src/gui/settings.cpp:3042 +msgid "Support bitmap fonts" +msgstr "Permitir fuentes de mapa de bits" + +#: src/gui/settings.cpp:3047 +msgid "Hinting:" +msgstr "Pistado:" + +#: src/gui/settings.cpp:3049 +msgid "Off (soft)##fh0" +msgstr "Apagado (suave)##fh0" + +#: src/gui/settings.cpp:3053 +msgid "Slight##fh1" +msgstr "Ligero##fh1" + +#: src/gui/settings.cpp:3057 +msgid "Normal##fh2" +msgstr "Normal##fh2" + +#: src/gui/settings.cpp:3061 +msgid "Full (hard)##fh3" +msgstr "Completo (duro)##fh3" + +#: src/gui/settings.cpp:3067 +msgid "Auto-hinter:" +msgstr "Auto-pistado:" + +#: src/gui/settings.cpp:3069 +msgid "Disable##fah0" +msgstr "Desactivar##fah0" + +#: src/gui/settings.cpp:3073 +msgid "Enable##fah1" +msgstr "Activar##fah1" + +#: src/gui/settings.cpp:3077 +msgid "Force##fah2" +msgstr "Forzar activación##fah2" + +#: src/gui/settings.cpp:3084 +msgid "Oversample" +msgstr "Sobremuestreo" + +#: src/gui/settings.cpp:3087 +msgid "1×##fos1" +msgstr "" + +#: src/gui/settings.cpp:3092 +msgid "" +"saves video memory. reduces font rendering quality.\n" +"use for pixel/bitmap fonts." +msgstr "" +"ahorra memoria gráfica. reduce la calidad de renderizado de fuentes.\n" +"usa para fuentes pixeladas/de mapa de bits." + +#: src/gui/settings.cpp:3095 +msgid "2×##fos2" +msgstr "" + +#: src/gui/settings.cpp:3100 +msgid "default." +msgstr "la opción por defecto." + +#: src/gui/settings.cpp:3103 +msgid "3×##fos3" +msgstr "" + +#: src/gui/settings.cpp:3108 +msgid "" +"slightly better font rendering quality.\n" +"uses more video memory." +msgstr "" +"suministra una calidad de renderizado de fuentes ligeramente mejor.\n" +"usa más memoria gráfica." + +#: src/gui/settings.cpp:3112 +msgid "Load fallback font" +msgstr "Cargar fuente de reserva" + +#: src/gui/settings.cpp:3117 +msgid "disable to save video memory." +msgstr "desactiva para ahorrar memoria gráfica." + +#: src/gui/settings.cpp:3121 +msgid "Display Japanese characters" +msgstr "Mostrar caracteres japoneses" + +#: src/gui/settings.cpp:3127 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"このオプションは、十分なグラフィックメモリがある場合にのみ切り替えてくださ" +"い。\n" +"これは、Dear ImGuiにダイナミックフォントアトラスが実装されるまでの一時的な解" +"決策です。" +msgstr "" +"Solo activa esta opción si tienes suficiente memoria gráfica.\n" +"Esta es una solución temporal hasta que Dear ImGui implemente atlas de " +"fuente dinámicas.\n" +"\n" +"このオプションは、十分なグラフィックメモリがある場合にのみ切り替えてくださ" +"い。\n" +"これは、Dear ImGuiにダイナミックフォントアトラスが実装されるまでの一時的な解" +"決策です。" + +#: src/gui/settings.cpp:3135 +msgid "Display Chinese (Simplified) characters" +msgstr "Mostrar caracteres chinos (chino simplificado)" + +#: src/gui/settings.cpp:3141 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"请在确保你有足够的显存后再启动此设定\n" +"这是一个在ImGui实现动态字体加载之前的临时解决方案" +msgstr "" +"Solo activa esta opción si tienes suficiente memoria gráfica.\n" +"Esta es una solución temporal hasta que Dear ImGui implemente atlas de " +"fuente dinámicas.\n" +"\n" +"请在确保你有足够的显存后再启动此设定\n" +"这是一个在ImGui实现动态字体加载之前的临时解决方案" + +#: src/gui/settings.cpp:3149 +msgid "Display Chinese (Traditional) characters" +msgstr "Mostrar caracteres chinos (chino tradicional)" + +#: src/gui/settings.cpp:3155 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"請在確保你有足夠的顯存后再啟動此設定\n" +"這是一個在ImGui實現動態字體加載之前的臨時解決方案" +msgstr "" +"Solo activa esta opción si tienes suficiente memoria gráfica.\n" +"Esta es una solución temporal hasta que Dear ImGui implemente atlas de " +"fuente dinámicas.\n" +"\n" +"請在確保你有足夠的顯存后再啟動此設定\n" +"這是一個在ImGui實現動態字體加載之前的臨時解決方案" + +#: src/gui/settings.cpp:3163 +msgid "Display Korean characters" +msgstr "Mostrar caracteres coreanos" + +#: src/gui/settings.cpp:3169 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"그래픽 메모리가 충분한 경우에만 이 옵션을 선택하십시오.\n" +"이 옵션은 Dear ImGui에 동적 글꼴 아틀라스가 구현될 때까지 임시 솔루션입니다." +msgstr "" +"Solo activa esta opción si tienes suficiente memoria gráfica.\n" +"Esta es una solución temporal hasta que Dear ImGui implemente atlas de " +"fuente dinámicas.\n" +"\n" +"그래픽 메모리가 충분한 경우에만 이 옵션을 선택하십시오.\n" +"이 옵션은 Dear ImGui에 동적 글꼴 아틀라스가 구현될 때까지 임시 솔루션입니다." + +#: src/gui/settings.cpp:3178 +msgid "Title bar:" +msgstr "Barra de título" + +#: src/gui/settings.cpp:3180 +msgid "Furnace##tbar0" +msgstr "" + +#: src/gui/settings.cpp:3185 +msgid "Song Name - Furnace##tbar1" +msgstr "Nombre de Canción - Furnace##tbar1" + +#: src/gui/settings.cpp:3190 +msgid "file_name.fur - Furnace##tbar2" +msgstr "nombre_archivo.fur - Furnace##tbar2" + +#: src/gui/settings.cpp:3195 +msgid "/path/to/file.fur - Furnace##tbar3" +msgstr "/ruta/al/archivo.fur - Furnace##tbar3" + +#: src/gui/settings.cpp:3203 +msgid "Display system name on title bar" +msgstr "Mostrar nombre de sistema en la barra de título" + +#: src/gui/settings.cpp:3210 +msgid "Display chip names instead of \"multi-system\" in title bar" +msgstr "" +"Mostrar nombre de chips en vez de \"multi-system\" en la barra de título" + +#: src/gui/settings.cpp:3216 +msgid "Status bar:" +msgstr "Barra de estado:" + +#: src/gui/settings.cpp:3218 +msgid "Cursor details##sbar0" +msgstr "Detalle del cursor##sbar0" + +#: src/gui/settings.cpp:3222 +msgid "File path##sbar1" +msgstr "Ruta del archivo##sbar1" + +#: src/gui/settings.cpp:3226 +msgid "Cursor details or file path##sbar2" +msgstr "Detalle del cursor o ruta del archivo##sbar2" + +#: src/gui/settings.cpp:3230 +msgid "Nothing##sbar3" +msgstr "Nada##sbar3" + +#: src/gui/settings.cpp:3237 +msgid "Display playback status when playing" +msgstr "Mostrar estado de reproducción al reproducir" + +#: src/gui/settings.cpp:3242 +msgid "Export options layout:" +msgstr "Diseño de opciones de exportación:" + +#: src/gui/settings.cpp:3244 +msgid "Sub-menus in File menu##eol0" +msgstr "Sub-menús en el menú Archivo##eol0" + +#: src/gui/settings.cpp:3248 +msgid "Modal window with tabs##eol1" +msgstr "Ventanas modales con tabulaciones##eol1" + +#: src/gui/settings.cpp:3252 +msgid "Modal windows with options in File menu##eol2" +msgstr "Ventanas modales con opciones en el menú Archivo##eol2" + +#: src/gui/settings.cpp:3259 +msgid "Capitalize menu bar" +msgstr "Barra de menú con mayúsculas" + +#: src/gui/settings.cpp:3265 +msgid "Display add/configure/change/remove chip menus in File menu" +msgstr "Mostrar opciones para manipular chips en el menú de Archivo" + +#: src/gui/settings.cpp:3279 +msgid "Highlight channel at cursor in Orders" +msgstr "Resaltar canal del cursor en Órdenes" + +#: src/gui/settings.cpp:3284 +msgid "Orders row number format:" +msgstr "Formato de número en la fila de órdenes:" + +#: src/gui/settings.cpp:3286 +msgid "Decimal##orbD" +msgstr "" + +#: src/gui/settings.cpp:3290 +msgid "Hexadecimal##orbH" +msgstr "" + +#: src/gui/settings.cpp:3299 +msgid "Center pattern view" +msgstr "Centrar vista del patrón" + +#: src/gui/settings.cpp:3305 +msgid "Overflow pattern highlights" +msgstr "Resaltados de patrón se salen" + +#: src/gui/settings.cpp:3311 +msgid "Display previous/next pattern" +msgstr "Mostrar patrones adyacentes" + +#: src/gui/settings.cpp:3316 +msgid "Pattern row number format:" +msgstr "Formato de número en la fila de patrones:" + +#: src/gui/settings.cpp:3318 +msgid "Decimal##prbD" +msgstr "" + +#: src/gui/settings.cpp:3322 +msgid "Hexadecimal##prbH" +msgstr "" + +#: src/gui/settings.cpp:3328 +msgid "Pattern view labels:" +msgstr "Etiquetas de la vista del patrón:" + +#: src/gui/settings.cpp:3333 +msgid "Note off (3-char)" +msgstr "Apagar nota (3 caracteres)" + +#: src/gui/settings.cpp:3338 +msgid "Note release (3-char)" +msgstr "Lanzar nota (3 caracteres)" + +#: src/gui/settings.cpp:3343 +msgid "Macro release (3-char)" +msgstr "Lanzar macro (3 caracteres)" + +#: src/gui/settings.cpp:3348 +msgid "Empty field (3-char)" +msgstr "Campo vacío (3 caracteres)" + +#: src/gui/settings.cpp:3353 +msgid "Empty field (2-char)" +msgstr "Campo vacío (2 caracteres)" + +#: src/gui/settings.cpp:3355 +msgid "Pattern view spacing after:" +msgstr "Espacio en la vista de patrón:" + +#: src/gui/settings.cpp:3357 src/gui/settings.cpp:4115 +#: src/gui/findReplace.cpp:601 src/gui/findReplace.cpp:864 +#: src/gui/sampleEdit.cpp:590 +msgid "Note" +msgstr "Nota" + +#: src/gui/settings.cpp:3375 src/gui/findReplace.cpp:707 +#: src/gui/findReplace.cpp:974 +msgid "Effect" +msgstr "Efecto" + +#: src/gui/settings.cpp:3381 +msgid "Effect value" +msgstr "Valor de efecto" + +#: src/gui/settings.cpp:3388 +msgid "Single-digit effects for 00-0F" +msgstr "Un solo dígito para los efectos 00-0F" + +#: src/gui/settings.cpp:3394 +msgid "Use flats instead of sharps" +msgstr "Usar bemol en vez de sostenido" + +#: src/gui/settings.cpp:3400 +msgid "Use German notation" +msgstr "Usar notación alemana" + +#: src/gui/settings.cpp:3408 +msgid "Channel style:" +msgstr "Estilo de canal:" + +#: src/gui/settings.cpp:3410 +msgid "Classic##CHS0" +msgstr "Clásico##CHS0" + +#: src/gui/settings.cpp:3414 +msgid "Line##CHS1" +msgstr "Línea##CHS1" + +#: src/gui/settings.cpp:3418 +msgid "Round##CHS2" +msgstr "Redondo##CHS2" + +#: src/gui/settings.cpp:3422 +msgid "Split button##CHS3" +msgstr "Botón separado##CHS3" + +#: src/gui/settings.cpp:3426 +msgid "Square border##CH42" +msgstr "Borde cuadrado##CH42" + +#: src/gui/settings.cpp:3430 +msgid "Round border##CHS5" +msgstr "Borde redondo##CHS5" + +#: src/gui/settings.cpp:3436 +msgid "Channel volume bar:" +msgstr "Barra de volumen de los canales:" + +#: src/gui/settings.cpp:3438 +msgid "None##CHV0" +msgstr "Ninguna##CHV0" + +#: src/gui/settings.cpp:3442 +msgid "Simple##CHV1" +msgstr "" + +#: src/gui/settings.cpp:3446 +msgid "Stereo##CHV2" +msgstr "Estéreo##CHV2" + +#: src/gui/settings.cpp:3450 +msgid "Real##CHV3" +msgstr "" + +#: src/gui/settings.cpp:3454 +msgid "Real (stereo)##CHV4" +msgstr "Real (estéreo)##CHV4" + +#: src/gui/settings.cpp:3460 +msgid "Channel feedback style:" +msgstr "Estilo de alumbrado del canal;" + +#: src/gui/settings.cpp:3462 +msgid "Off##CHF0" +msgstr "Apagado##CHF0" + +#: src/gui/settings.cpp:3466 +msgid "Note##CHF1" +msgstr "Nota##CHF1" + +#: src/gui/settings.cpp:3470 +msgid "Volume##CHF2" +msgstr "Volumen##CHF2" + +#: src/gui/settings.cpp:3474 +msgid "Active##CHF3" +msgstr "Activo##CHF3" + +#: src/gui/settings.cpp:3480 +msgid "Channel font:" +msgstr "Fuente del canal:" + +#: src/gui/settings.cpp:3482 +msgid "Regular##CHFont0" +msgstr "" + +#: src/gui/settings.cpp:3486 +msgid "Monospace##CHFont1" +msgstr "Mono-espacio##CHFont1" + +#: src/gui/settings.cpp:3493 +msgid "Center channel name" +msgstr "Centrar nombre del canal" + +#: src/gui/settings.cpp:3498 +msgid "Channel colors:" +msgstr "Colores de los canales:" + +#: src/gui/settings.cpp:3500 +msgid "Single##CHC0" +msgstr "Un solo color##CHC0" + +#: src/gui/settings.cpp:3504 +msgid "Channel type##CHC1" +msgstr "Tipo de canal##CHC1" + +#: src/gui/settings.cpp:3508 +msgid "Instrument type##CHC2" +msgstr "Tipo de instrumento##CHC2" + +#: src/gui/settings.cpp:3514 +msgid "Channel name colors:" +msgstr "Colores del nombre de los canales:" + +#: src/gui/settings.cpp:3516 +msgid "Single##CTC0" +msgstr "Un solo color##CTC0" + +#: src/gui/settings.cpp:3520 +msgid "Channel type##CTC1" +msgstr "Tipo de canal##CTC1" + +#: src/gui/settings.cpp:3524 +msgid "Instrument type##CTC2" +msgstr "Tipo de instrumento##CTC2" + +#: src/gui/settings.cpp:3533 +msgid "Unified instrument/wavetable/sample list" +msgstr "Lista unificada de instrumentos, ondas y samples" + +#: src/gui/settings.cpp:3543 +msgid "Horizontal instrument list" +msgstr "Lista de instrumentos horizontal" + +#: src/gui/settings.cpp:3549 +msgid "Instrument list icon style:" +msgstr "Estilo de íconos en la lista de instrumentos:" + +#: src/gui/settings.cpp:3551 +msgid "None##iis0" +msgstr "Ninguno##iis0" + +#: src/gui/settings.cpp:3555 +msgid "Graphical icons##iis1" +msgstr "Gráficos##iis1" + +#: src/gui/settings.cpp:3559 +msgid "Letter icons##iis2" +msgstr "Letras##iis2" + +#: src/gui/settings.cpp:3566 +msgid "Colorize instrument editor using instrument type" +msgstr "Colorear editor de instrumento usando tipo de instrumento" + +#: src/gui/settings.cpp:3572 src/gui/settings.cpp:4014 +msgid "Macro Editor" +msgstr "Editor de Macro" + +#: src/gui/settings.cpp:3573 +msgid "Macro editor layout:" +msgstr "Diseño de editor de macro:" + +#: src/gui/settings.cpp:3575 +msgid "Unified##mel0" +msgstr "Unificado##mel0" + +#: src/gui/settings.cpp:3585 +msgid "Grid##mel2" +msgstr "Parrilla##mel2" + +#: src/gui/settings.cpp:3589 +msgid "Single (with list)##mel3" +msgstr "Único (con lista)##mel3" + +#: src/gui/settings.cpp:3602 +msgid "Use classic macro editor vertical slider" +msgstr "Usar deslizador vertical clásico" + +#: src/gui/settings.cpp:3608 +msgid "Wave Editor" +msgstr "Editor de Onda" + +#: src/gui/settings.cpp:3610 +msgid "Use compact wave editor" +msgstr "Usar editor de onda compacto" + +#: src/gui/settings.cpp:3616 src/gui/settings.cpp:3991 +msgid "FM Editor" +msgstr "Editor FM" + +#: src/gui/settings.cpp:3617 +msgid "FM parameter names:" +msgstr "Nombres de parámetros FM:" + +#: src/gui/settings.cpp:3619 +msgid "Friendly##fmn0" +msgstr "Familiares##fmn0" + +#: src/gui/settings.cpp:3623 +msgid "Technical##fmn1" +msgstr "Técnicos##fmn1" + +#: src/gui/settings.cpp:3627 +msgid "Technical (alternate)##fmn2" +msgstr "Técnicos (alterno)##fmn2" + +#: src/gui/settings.cpp:3634 +msgid "Use standard OPL waveform names" +msgstr "Usar nombres de ondas OPL estándar" + +#: src/gui/settings.cpp:3639 +msgid "FM parameter editor layout:" +msgstr "Diseño de editor de parámetros FM:" + +#: src/gui/settings.cpp:3641 +msgid "Modern##fml0" +msgstr "Moderno##fml0" + +#: src/gui/settings.cpp:3645 +msgid "Compact (2x2, classic)##fml1" +msgstr "Compacto (2x2, clásico)##fml1" + +#: src/gui/settings.cpp:3649 +msgid "Compact (1x4)##fml2" +msgstr "Compacto (1x4)##fml2" + +#: src/gui/settings.cpp:3653 +msgid "Compact (4x1)##fml3" +msgstr "Compacto (4x1)##fml3" + +#: src/gui/settings.cpp:3657 +msgid "Alternate (2x2)##fml4" +msgstr "Alterno (2x2)##fml4" + +#: src/gui/settings.cpp:3661 +msgid "Alternate (1x4)##fml5" +msgstr "Alterno (1x4)##fml5" + +#: src/gui/settings.cpp:3665 +msgid "Alternate (4x1)##fml5" +msgstr "Alterno (4x1)##fml5" + +#: src/gui/settings.cpp:3671 +msgid "Position of Sustain in FM editor:" +msgstr "Posición de Sostenido en el editor FM:" + +#: src/gui/settings.cpp:3673 +msgid "Between Decay and Sustain Rate##susp0" +msgstr "Entre Caída y Velocidad de Sostenido##susp0" + +#: src/gui/settings.cpp:3677 +msgid "After Release Rate##susp1" +msgstr "Después de Velocidad de Lanzamiento##susp1" + +#: src/gui/settings.cpp:3684 +msgid "Use separate colors for carriers/modulators in FM editor" +msgstr "Usar colores separados para los moduladores y carriers en editor FM" + +#: src/gui/settings.cpp:3690 +msgid "Unsigned FM detune values" +msgstr "Valores de afinación FM sin signo" + +#: src/gui/settings.cpp:3697 +msgid "Chip memory usage unit:" +msgstr "Unidad de uso de memoria de chips;" + +#: src/gui/settings.cpp:3699 +msgid "Bytes##MUU0" +msgstr "" + +#: src/gui/settings.cpp:3703 +msgid "Kilobytes##MUU1" +msgstr "" + +#: src/gui/settings.cpp:3712 +msgid "Rounded corners" +msgstr "Esquinas redondas" + +#: src/gui/settings.cpp:3718 src/gui/settings.cpp:3896 +#: src/gui/settings.cpp:3938 +msgid "Border" +msgstr "Borde" + +#: src/gui/settings.cpp:3730 +msgid "Anti-aliased" +msgstr "Suavizar onda" + +#: src/gui/settings.cpp:3736 +msgid "Fill entire window" +msgstr "Llenar la ventana" + +#: src/gui/settings.cpp:3742 +msgid "Waveform goes out of bounds" +msgstr "La onda se sale del margen" + +#: src/gui/settings.cpp:3754 +msgid "Windows" +msgstr "Ventanas" + +#: src/gui/settings.cpp:3756 +msgid "Rounded window corners" +msgstr "Esquinas de la ventana redondas" + +#: src/gui/settings.cpp:3762 +msgid "Rounded buttons" +msgstr "Botones redondos" + +#: src/gui/settings.cpp:3768 +msgid "Rounded menu corners" +msgstr "Esquinas del menú redondas" + +#: src/gui/settings.cpp:3774 +msgid "Rounded tabs" +msgstr "Tabulaciones redondas" + +#: src/gui/settings.cpp:3780 +msgid "Rounded scrollbars" +msgstr "Barras de desplazamiento redondas" + +#: src/gui/settings.cpp:3786 +msgid "Borders around widgets" +msgstr "Bordes en los elementos" + +#: src/gui/settings.cpp:3795 +msgid "Color scheme" +msgstr "Esquema de color" + +#: src/gui/settings.cpp:3805 +msgid "Are you sure you want to reset the color scheme?" +msgstr "¿Estás seguro de reiniciar el esquema de color?" + +#: src/gui/settings.cpp:3808 +msgid "Guru mode" +msgstr "Modo guru" + +#: src/gui/settings.cpp:3815 src/gui/settings.cpp:3845 +msgid "Frame shading" +msgstr "Sombra del marco" + +#: src/gui/settings.cpp:3821 +msgid "Color scheme type:" +msgstr "Tipo de esquema de color:" + +#: src/gui/settings.cpp:3823 +msgid "Dark##gcb0" +msgstr "Oscuro##gcb0" + +#: src/gui/settings.cpp:3828 +msgid "Light##gcb1" +msgstr "Claro##gcb1" + +#: src/gui/settings.cpp:3835 +msgid "Accent colors:" +msgstr "Colores de acento:" + +#: src/gui/settings.cpp:3837 +msgid "Primary" +msgstr "Primario" + +#: src/gui/settings.cpp:3838 +msgid "Secondary" +msgstr "Secundario" + +#: src/gui/settings.cpp:3852 +msgid "Button" +msgstr "Botón" + +#: src/gui/settings.cpp:3853 +msgid "Button (hovered)" +msgstr "Botón (sombreado)" + +#: src/gui/settings.cpp:3854 +msgid "Button (active)" +msgstr "Botón (activo)" + +#: src/gui/settings.cpp:3855 +msgid "Tab" +msgstr "Tabulación" + +#: src/gui/settings.cpp:3856 +msgid "Tab (hovered)" +msgstr "Tabulación (sombreada)" + +#: src/gui/settings.cpp:3857 +msgid "Tab (active)" +msgstr "Tabulación (activa)" + +#: src/gui/settings.cpp:3858 +msgid "Tab (unfocused)" +msgstr "Tabulación (sin foco)" + +#: src/gui/settings.cpp:3859 +msgid "Tab (unfocused and active)" +msgstr "Tabulación (sin foco pero activa)" + +#: src/gui/settings.cpp:3860 +msgid "ImGui header" +msgstr "Cabecera ImGui" + +#: src/gui/settings.cpp:3861 +msgid "ImGui header (hovered)" +msgstr "Cabecera ImGui (sombreada)" + +#: src/gui/settings.cpp:3862 +msgid "ImGui header (active)" +msgstr "Cabecera ImGui (activa)" + +#: src/gui/settings.cpp:3863 +msgid "Resize grip" +msgstr "Mango de tamaño" + +#: src/gui/settings.cpp:3864 +msgid "Resize grip (hovered)" +msgstr "Mango de tamaño (sombreado)" + +#: src/gui/settings.cpp:3865 +msgid "Resize grip (active)" +msgstr "Mango de tamaño (activo)" + +#: src/gui/settings.cpp:3866 +msgid "Widget background" +msgstr "Fondo del widget" + +#: src/gui/settings.cpp:3867 +msgid "Widget background (hovered)" +msgstr "Fondo del widget (sombreado)" + +#: src/gui/settings.cpp:3868 +msgid "Widget background (active)" +msgstr "Fondo del widget (activo)" + +#: src/gui/settings.cpp:3869 +msgid "Slider grab" +msgstr "Deslizador" + +#: src/gui/settings.cpp:3870 +msgid "Slider grab (active)" +msgstr "Deslizador (activo)" + +#: src/gui/settings.cpp:3871 +msgid "Title background (active)" +msgstr "Fondo de título (activo)" + +#: src/gui/settings.cpp:3872 +msgid "Checkbox/radio button mark" +msgstr "Marca de casilla/botón radial" + +#: src/gui/settings.cpp:3873 +msgid "Text selection" +msgstr "Selección de texto" + +#: src/gui/settings.cpp:3874 +msgid "Line plot" +msgstr "Trazo de línea" + +#: src/gui/settings.cpp:3875 +msgid "Line plot (hovered)" +msgstr "Trazo de línea (sombreado)" + +#: src/gui/settings.cpp:3876 +msgid "Histogram plot" +msgstr "Trazo de histograma" + +#: src/gui/settings.cpp:3877 +msgid "Histogram plot (hovered)" +msgstr "Trazo de histograma (sombreado)" + +#: src/gui/settings.cpp:3878 +msgid "Table row (even)" +msgstr "Fila de tabla (par)" + +#: src/gui/settings.cpp:3879 +msgid "Table row (odd)" +msgstr "Fila de table (impar)" + +#: src/gui/settings.cpp:3884 +msgid "Interface (other)" +msgstr "Interfaz (otros)" + +#: src/gui/settings.cpp:3886 +msgid "Window background" +msgstr "Fondo de ventana" + +#: src/gui/settings.cpp:3887 +msgid "Sub-window background" +msgstr "Fondo de sub-ventana" + +#: src/gui/settings.cpp:3888 +msgid "Pop-up background" +msgstr "Fondo de ventana emergente" + +#: src/gui/settings.cpp:3889 +msgid "Modal backdrop" +msgstr "Fondo detrás de una ventana emergente" + +#: src/gui/settings.cpp:3890 +msgid "Header" +msgstr "Cabecera" + +#: src/gui/settings.cpp:3892 +msgid "Text (disabled)" +msgstr "Texto (desactivado)" + +#: src/gui/settings.cpp:3893 +msgid "Title bar (inactive)" +msgstr "Barra de título (inactiva)" + +#: src/gui/settings.cpp:3894 +msgid "Title bar (collapsed)" +msgstr "Barra de título (colapsada)" + +#: src/gui/settings.cpp:3895 +msgid "Menu bar" +msgstr "Barra de menú" + +#: src/gui/settings.cpp:3897 +msgid "Border shadow" +msgstr "Sombra de borde" + +#: src/gui/settings.cpp:3898 +msgid "Scroll bar" +msgstr "Barra de deslizamiento" + +#: src/gui/settings.cpp:3899 +msgid "Scroll bar (hovered)" +msgstr "Barra de deslizamiento (sombreada)" + +#: src/gui/settings.cpp:3900 +msgid "Scroll bar (clicked)" +msgstr "Barra de deslizamiento (activa)" + +#: src/gui/settings.cpp:3901 +msgid "Scroll bar background" +msgstr "Fondo de barra de deslizamiento" + +#: src/gui/settings.cpp:3902 +msgid "Separator" +msgstr "Separador" + +#: src/gui/settings.cpp:3903 +msgid "Separator (hover)" +msgstr "Separador (sombreado)" + +#: src/gui/settings.cpp:3904 +msgid "Separator (active)" +msgstr "Separador (activo)" + +#: src/gui/settings.cpp:3905 +msgid "Docking preview" +msgstr "Vista previa de acoplación" + +#: src/gui/settings.cpp:3906 +msgid "Docking empty" +msgstr "Espacio vacío en acoplación" + +#: src/gui/settings.cpp:3907 +msgid "Table header" +msgstr "Cabecera de tabla" + +#: src/gui/settings.cpp:3908 +msgid "Table border (hard)" +msgstr "Borde de tabla (fuerte)" + +#: src/gui/settings.cpp:3909 +msgid "Table border (soft)" +msgstr "Borde de tabla (suave)" + +#: src/gui/settings.cpp:3910 +msgid "Drag and drop target" +msgstr "Destino al jalar" + +#: src/gui/settings.cpp:3911 +msgid "Window switcher (highlight)" +msgstr "Resaltado del cambiador de ventanas" + +#: src/gui/settings.cpp:3912 +msgid "Window switcher backdrop" +msgstr "Fondo detrás del cambiador de ventanas" + +#: src/gui/settings.cpp:3915 src/gui/settings.cpp:4136 src/gui/guiConst.cpp:235 +msgid "Miscellaneous" +msgstr "Miscelánea" + +#: src/gui/settings.cpp:3916 +msgid "Toggle on" +msgstr "Interruptor encendido" + +#: src/gui/settings.cpp:3917 +msgid "Toggle off" +msgstr "Interruptor apagado" + +#: src/gui/settings.cpp:3918 +msgid "Playback status" +msgstr "Estado de reproducción" + +#: src/gui/settings.cpp:3919 +msgid "Destructive hint" +msgstr "Pista de destructivo" + +#: src/gui/settings.cpp:3920 +msgid "Warning hint" +msgstr "Pista de advertencia" + +#: src/gui/settings.cpp:3921 +msgid "Error hint" +msgstr "Pista de error" + +#: src/gui/settings.cpp:3924 +msgid "File Picker (built-in)" +msgstr "Selector de Archivo (integrado)" + +#: src/gui/settings.cpp:3926 +msgid "Song (native)" +msgstr "Canción (nativa)" + +#: src/gui/settings.cpp:3927 +msgid "Song (import)" +msgstr "Canción (importar)" + +#: src/gui/settings.cpp:3933 +msgid "Font" +msgstr "Fuente" + +#: src/gui/settings.cpp:3939 +msgid "Background (top-left)" +msgstr "Fondo (esquina superior izquierda)" + +#: src/gui/settings.cpp:3940 +msgid "Background (top-right)" +msgstr "Fondo (esquina superior derecha)" + +#: src/gui/settings.cpp:3941 +msgid "Background (bottom-left)" +msgstr "Fondo (esquina inferior izquierda)" + +#: src/gui/settings.cpp:3942 +msgid "Background (bottom-right)" +msgstr "Fondo (esquina inferior derecha)" + +#: src/gui/settings.cpp:3943 src/gui/settings.cpp:3998 +#: src/gui/settings.cpp:4166 src/gui/waveEdit.cpp:730 src/gui/insEdit.cpp:50 +#: src/gui/insEdit.cpp:4148 src/gui/insEdit.cpp:5812 src/gui/insEdit.cpp:6940 +#: src/gui/insEdit.cpp:6949 src/gui/insEdit.cpp:6963 src/gui/insEdit.cpp:6980 +#: src/gui/insEdit.cpp:6991 src/gui/insEdit.cpp:7004 src/gui/insEdit.cpp:7018 +#: src/gui/insEdit.cpp:7025 src/gui/insEdit.cpp:7035 src/gui/insEdit.cpp:7041 +#: src/gui/insEdit.cpp:7050 src/gui/insEdit.cpp:7074 src/gui/insEdit.cpp:7084 +#: src/gui/insEdit.cpp:7094 src/gui/insEdit.cpp:7101 src/gui/insEdit.cpp:7116 +#: src/gui/insEdit.cpp:7131 src/gui/insEdit.cpp:7151 src/gui/insEdit.cpp:7158 +#: src/gui/insEdit.cpp:7200 src/gui/insEdit.cpp:7211 src/gui/insEdit.cpp:7224 +#: src/gui/insEdit.cpp:7349 src/gui/insEdit.cpp:7425 src/gui/insEdit.cpp:7445 +#: src/gui/insEdit.cpp:7453 src/gui/insEdit.cpp:7473 +msgid "Waveform" +msgstr "Onda" + +#: src/gui/settings.cpp:3944 +msgid "Waveform (clip)" +msgstr "Onda (fuera del límite)" + +#: src/gui/settings.cpp:3945 +msgid "Reference" +msgstr "Referencia" + +#: src/gui/settings.cpp:3946 +msgid "Guide" +msgstr "Guía" + +#: src/gui/settings.cpp:3948 +msgid "Wave (non-mono)" +msgstr "Onda (no mono)" + +#: src/gui/settings.cpp:3949 +msgid "Waveform (1)" +msgstr "Onda (1)" + +#: src/gui/settings.cpp:3950 +msgid "Waveform (2)" +msgstr "Onda (2)" + +#: src/gui/settings.cpp:3951 +msgid "Waveform (3)" +msgstr "Onda (3)" + +#: src/gui/settings.cpp:3952 +msgid "Waveform (4)" +msgstr "Onda (4)" + +#: src/gui/settings.cpp:3953 +msgid "Waveform (5)" +msgstr "Onda (5)" + +#: src/gui/settings.cpp:3954 +msgid "Waveform (6)" +msgstr "Onda (6)" + +#: src/gui/settings.cpp:3955 +msgid "Waveform (7)" +msgstr "Onda (7)" + +#: src/gui/settings.cpp:3956 +msgid "Waveform (8)" +msgstr "Onda (8)" + +#: src/gui/settings.cpp:3957 +msgid "Waveform (9)" +msgstr "Onda (9)" + +#: src/gui/settings.cpp:3958 +msgid "Waveform (10)" +msgstr "Onda (10)" + +#: src/gui/settings.cpp:3959 +msgid "Waveform (11)" +msgstr "Onda (11)" + +#: src/gui/settings.cpp:3960 +msgid "Waveform (12)" +msgstr "Onda (12)" + +#: src/gui/settings.cpp:3961 +msgid "Waveform (13)" +msgstr "Onda (13)" + +#: src/gui/settings.cpp:3962 +msgid "Waveform (14)" +msgstr "Onda (14)" + +#: src/gui/settings.cpp:3963 +msgid "Waveform (15)" +msgstr "Onda (15)" + +#: src/gui/settings.cpp:3964 +msgid "Waveform (16)" +msgstr "Onda (16)" + +#: src/gui/settings.cpp:3972 +msgid "Clip" +msgstr "Por encima del límite" + +#: src/gui/settings.cpp:3976 +msgid "Order number" +msgstr "Número de orden" + +#: src/gui/settings.cpp:3977 +msgid "Playing order background" +msgstr "Fondo de la orden en reproducción" + +#: src/gui/settings.cpp:3978 +msgid "Song loop" +msgstr "Bucle de canción" + +#: src/gui/settings.cpp:3979 +msgid "Selected order" +msgstr "Orden seleccionada" + +#: src/gui/settings.cpp:3980 +msgid "Similar patterns" +msgstr "Patrones similares" + +#: src/gui/settings.cpp:3981 +msgid "Inactive patterns" +msgstr "Patrones inactivos" + +#: src/gui/settings.cpp:3984 +msgid "Envelope View" +msgstr "Vista de Envelope" + +#: src/gui/settings.cpp:3985 src/gui/insEdit.cpp:540 src/gui/insEdit.cpp:3547 +#: src/gui/insEdit.cpp:3548 src/gui/insEdit.cpp:4081 src/gui/insEdit.cpp:4151 +#: src/gui/insEdit.cpp:4790 src/gui/insEdit.cpp:5861 src/gui/insEdit.cpp:5862 +#: src/gui/insEdit.cpp:6487 src/gui/insEdit.cpp:6488 src/gui/insEdit.cpp:6555 +#: src/gui/insEdit.cpp:6556 src/gui/insEdit.cpp:6995 src/gui/insEdit.cpp:7009 +#: src/gui/insEdit.cpp:7029 src/gui/insEdit.cpp:7166 +#, c-format +msgid "Envelope" +msgstr "Envelope" + +#: src/gui/settings.cpp:3986 +msgid "Sustain guide" +msgstr "Guía de sostenido" + +#: src/gui/settings.cpp:3992 +msgid "Algorithm background" +msgstr "Fondo de algoritmo" + +#: src/gui/settings.cpp:3993 +msgid "Algorithm lines" +msgstr "Líneas de algoritmo" + +#: src/gui/settings.cpp:3994 +msgid "Modulator" +msgstr "Modulador" + +#: src/gui/settings.cpp:3995 +msgid "Carrier" +msgstr "Carrier" + +#: src/gui/settings.cpp:3997 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:4146 +msgid "SSG-EG" +msgstr "SSG-EG" + +#: src/gui/settings.cpp:4000 +msgid "" +"(the following colors only apply when \"Use separate colors for carriers/" +"modulators in FM editor\" is on!)" +msgstr "" +"(los siguientes colores solamente aplican si la opción \"Usar colores " +"separados para los moduladores y carriers en editor FM\" está encendida)" + +#: src/gui/settings.cpp:4002 +msgid "Mod. accent (primary)" +msgstr "Acento del modulador (primario)" + +#: src/gui/settings.cpp:4003 +msgid "Mod. accent (secondary)" +msgstr "Acento del modulador (secundario)" + +#: src/gui/settings.cpp:4004 +msgid "Mod. border" +msgstr "Borde del modulador" + +#: src/gui/settings.cpp:4005 +msgid "Mod. border shadow" +msgstr "Sombra de borde del modulador" + +#: src/gui/settings.cpp:4007 +msgid "Car. accent (primary)" +msgstr "Acento del carrier (primario)" + +#: src/gui/settings.cpp:4008 +msgid "Car. accent (secondary)" +msgstr "Acento del carrier (secundario)" + +#: src/gui/settings.cpp:4009 +msgid "Car. border" +msgstr "Borde del carrier" + +#: src/gui/settings.cpp:4010 +msgid "Car. border shadow" +msgstr "Sombra de borde del carrier" + +#: src/gui/settings.cpp:4016 src/gui/guiConst.cpp:227 src/gui/insEdit.cpp:6924 +#: src/gui/insEdit.cpp:6931 src/gui/insEdit.cpp:6942 src/gui/insEdit.cpp:6950 +#: src/gui/insEdit.cpp:6971 src/gui/insEdit.cpp:6983 src/gui/insEdit.cpp:6993 +#: src/gui/insEdit.cpp:7006 src/gui/insEdit.cpp:7019 src/gui/insEdit.cpp:7028 +#: src/gui/insEdit.cpp:7036 src/gui/insEdit.cpp:7042 src/gui/insEdit.cpp:7052 +#: src/gui/insEdit.cpp:7061 src/gui/insEdit.cpp:7068 src/gui/insEdit.cpp:7075 +#: src/gui/insEdit.cpp:7087 src/gui/insEdit.cpp:7095 src/gui/insEdit.cpp:7102 +#: src/gui/insEdit.cpp:7109 src/gui/insEdit.cpp:7117 src/gui/insEdit.cpp:7123 +#: src/gui/insEdit.cpp:7132 src/gui/insEdit.cpp:7143 src/gui/insEdit.cpp:7153 +#: src/gui/insEdit.cpp:7161 src/gui/insEdit.cpp:7174 src/gui/insEdit.cpp:7182 +#: src/gui/insEdit.cpp:7193 src/gui/insEdit.cpp:7203 src/gui/insEdit.cpp:7213 +#: src/gui/insEdit.cpp:7227 src/gui/insEdit.cpp:7233 src/gui/insEdit.cpp:7241 +#: src/gui/insEdit.cpp:7248 src/gui/insEdit.cpp:7272 src/gui/insEdit.cpp:7280 +#: src/gui/insEdit.cpp:7289 src/gui/insEdit.cpp:7298 src/gui/insEdit.cpp:7306 +#: src/gui/insEdit.cpp:7323 src/gui/insEdit.cpp:7331 src/gui/insEdit.cpp:7337 +#: src/gui/insEdit.cpp:7344 src/gui/insEdit.cpp:7350 src/gui/insEdit.cpp:7355 +#: src/gui/insEdit.cpp:7361 src/gui/insEdit.cpp:7368 src/gui/insEdit.cpp:7376 +#: src/gui/insEdit.cpp:7385 src/gui/insEdit.cpp:7393 src/gui/insEdit.cpp:7401 +#: src/gui/insEdit.cpp:7413 src/gui/insEdit.cpp:7428 src/gui/insEdit.cpp:7439 +#: src/gui/insEdit.cpp:7447 src/gui/insEdit.cpp:7456 src/gui/insEdit.cpp:7466 +#: src/gui/insEdit.cpp:7474 +msgid "Pitch" +msgstr "Tono" + +#: src/gui/settings.cpp:4021 +msgid "Instrument Types" +msgstr "Tipos de Instrumento" + +#: src/gui/settings.cpp:4022 +msgid "FM (OPN)" +msgstr "" + +#: src/gui/settings.cpp:4023 +msgid "SN76489/Sega PSG" +msgstr "" + +#: src/gui/settings.cpp:4026 +msgid "C64" +msgstr "" + +#: src/gui/settings.cpp:4027 +msgid "Amiga/Generic Sample" +msgstr "Amiga/Sample genérico" + +#: src/gui/settings.cpp:4028 +msgid "PC Engine" +msgstr "" + +#: src/gui/settings.cpp:4029 +msgid "AY-3-8910/SSG" +msgstr "" + +#: src/gui/settings.cpp:4030 +msgid "AY8930" +msgstr "" + +#: src/gui/settings.cpp:4031 +msgid "TIA" +msgstr "" + +#: src/gui/settings.cpp:4032 +msgid "SAA1099" +msgstr "" + +#: src/gui/settings.cpp:4033 +msgid "VIC" +msgstr "" + +#: src/gui/settings.cpp:4034 +msgid "PET" +msgstr "" + +#: src/gui/settings.cpp:4035 +msgid "VRC6" +msgstr "" + +#: src/gui/settings.cpp:4036 src/gui/guiConst.cpp:149 +msgid "VRC6 (saw)" +msgstr "VRC6 (sierra)" + +#: src/gui/settings.cpp:4037 +msgid "FM (OPLL)" +msgstr "" + +#: src/gui/settings.cpp:4038 +msgid "FM (OPL)" +msgstr "" + +#: src/gui/settings.cpp:4043 +msgid "FM (OPZ)" +msgstr "" + +#: src/gui/settings.cpp:4045 +msgid "PC Beeper" +msgstr "" + +#: src/gui/settings.cpp:4047 +msgid "Lynx" +msgstr "" + +#: src/gui/settings.cpp:4049 +msgid "X1-010" +msgstr "" + +#: src/gui/settings.cpp:4050 +msgid "ES5506" +msgstr "" + +#: src/gui/settings.cpp:4053 +msgid "Sound Unit" +msgstr "" + +#: src/gui/settings.cpp:4055 +msgid "FM (OPL Drums)" +msgstr "FM (Percusión OPL)" + +#: src/gui/settings.cpp:4056 +msgid "FM (OPM)" +msgstr "" + +#: src/gui/settings.cpp:4057 +msgid "NES" +msgstr "" + +#: src/gui/settings.cpp:4058 +msgid "MSM6258" +msgstr "" + +#: src/gui/settings.cpp:4059 +msgid "MSM6295" +msgstr "" + +#: src/gui/settings.cpp:4060 +msgid "ADPCM-A" +msgstr "" + +#: src/gui/settings.cpp:4062 +msgid "Sega PCM" +msgstr "" + +#: src/gui/settings.cpp:4063 +msgid "QSound" +msgstr "" + +#: src/gui/settings.cpp:4064 +msgid "YMZ280B" +msgstr "" + +#: src/gui/settings.cpp:4065 +msgid "RF5C68" +msgstr "" + +#: src/gui/settings.cpp:4066 +msgid "MSM5232" +msgstr "" + +#: src/gui/settings.cpp:4067 +msgid "K007232" +msgstr "" + +#: src/gui/settings.cpp:4068 +msgid "GA20" +msgstr "" + +#: src/gui/settings.cpp:4070 +msgid "SM8521" +msgstr "" + +#: src/gui/settings.cpp:4071 +msgid "PV-1000" +msgstr "" + +#: src/gui/settings.cpp:4072 +msgid "K053260" +msgstr "" + +#: src/gui/settings.cpp:4073 +msgid "TED" +msgstr "" + +#: src/gui/settings.cpp:4074 +msgid "C140" +msgstr "" + +#: src/gui/settings.cpp:4075 +msgid "C219" +msgstr "" + +#: src/gui/settings.cpp:4076 +msgid "ESFM" +msgstr "" + +#: src/gui/settings.cpp:4077 src/gui/guiConst.cpp:179 +msgid "PowerNoise (noise)" +msgstr "PowerNoise (ruido)" + +#: src/gui/settings.cpp:4078 src/gui/guiConst.cpp:180 +msgid "PowerNoise (slope)" +msgstr "PowerNoise (pendiente)" + +#: src/gui/settings.cpp:4081 +msgid "GBA DMA" +msgstr "" + +#: src/gui/settings.cpp:4082 +msgid "GBA MinMod" +msgstr "" + +#: src/gui/settings.cpp:4085 +msgid "Other/Unknown" +msgstr "Otro/Desconocido" + +#: src/gui/settings.cpp:4089 +msgid "Single color (background)" +msgstr "Un solo color (fondo)" + +#: src/gui/settings.cpp:4090 +msgid "Single color (text)" +msgstr "Un solo color (texto)" + +#: src/gui/settings.cpp:4091 src/gui/guiConst.cpp:1393 src/gui/waveEdit.cpp:668 +msgid "FM" +msgstr "" + +#: src/gui/settings.cpp:4096 +msgid "FM operator" +msgstr "Operador FM" + +#: src/gui/settings.cpp:4097 +msgid "Muted" +msgstr "Mudo" + +#: src/gui/settings.cpp:4101 +msgid "Playhead" +msgstr "Cabecilla de reproducción" + +#: src/gui/settings.cpp:4102 +msgid "Editing" +msgstr "Editando" + +#: src/gui/settings.cpp:4103 +msgid "Editing (will clone)" +msgstr "Editando (se va a clonar)" + +#: src/gui/settings.cpp:4104 +msgid "Cursor" +msgstr "Cursor" + +#: src/gui/settings.cpp:4105 +msgid "Cursor (hovered)" +msgstr "Cursor (sombreado)" + +#: src/gui/settings.cpp:4106 +msgid "Cursor (clicked)" +msgstr "Cursor (clic)" + +#: src/gui/settings.cpp:4107 src/gui/settings.cpp:4172 +#: src/gui/findReplace.cpp:791 +msgid "Selection" +msgstr "Selección" + +#: src/gui/settings.cpp:4108 +msgid "Selection (hovered)" +msgstr "Selección (sombreada)" + +#: src/gui/settings.cpp:4109 +msgid "Selection (clicked)" +msgstr "Selección (clic)" + +#: src/gui/settings.cpp:4110 +msgid "Highlight 1" +msgstr "Resaltado 1" + +#: src/gui/settings.cpp:4111 +msgid "Highlight 2" +msgstr "Resaltado 2" + +#: src/gui/settings.cpp:4112 +msgid "Row number" +msgstr "Número de fila" + +#: src/gui/settings.cpp:4113 +msgid "Row number (highlight 1)" +msgstr "Número de fila (resaltado 1)" + +#: src/gui/settings.cpp:4114 +msgid "Row number (highlight 2)" +msgstr "Número de fila (resaltado 2)" + +#: src/gui/settings.cpp:4116 +msgid "Note (highlight 1)" +msgstr "Nota (resaltado 1)" + +#: src/gui/settings.cpp:4117 +msgid "Note (highlight 2)" +msgstr "Nota (resaltado 2)" + +#: src/gui/settings.cpp:4118 +msgid "Blank" +msgstr "Blanco" + +#: src/gui/settings.cpp:4119 +msgid "Blank (highlight 1)" +msgstr "Blanco (resaltado 1)" + +#: src/gui/settings.cpp:4120 +msgid "Blank (highlight 2)" +msgstr "Blanco (resaltado 2)" + +#: src/gui/settings.cpp:4122 +msgid "Instrument (invalid type)" +msgstr "Instrumento (tipo inválido)" + +#: src/gui/settings.cpp:4123 +msgid "Instrument (out of range)" +msgstr "Instrumento (fuera de rango)" + +#: src/gui/settings.cpp:4124 +msgid "Volume (0%)" +msgstr "Volumen (0%)" + +#: src/gui/settings.cpp:4125 +msgid "Volume (50%)" +msgstr "Volumen (50%)" + +#: src/gui/settings.cpp:4126 +msgid "Volume (100%)" +msgstr "Volumen (100%)" + +#: src/gui/settings.cpp:4128 +msgid "Pitch effect" +msgstr "Efecto de tono" + +#: src/gui/settings.cpp:4129 +msgid "Volume effect" +msgstr "Efecto de volumen" + +#: src/gui/settings.cpp:4130 +msgid "Panning effect" +msgstr "Efecto de balance" + +#: src/gui/settings.cpp:4131 +msgid "Song effect" +msgstr "Efecto de canción" + +#: src/gui/settings.cpp:4132 +msgid "Time effect" +msgstr "Efecto de tiempo" + +#: src/gui/settings.cpp:4133 +msgid "Speed effect" +msgstr "Efecto de Speed" + +#: src/gui/settings.cpp:4134 +msgid "Primary specific effect" +msgstr "Efecto específico primario" + +#: src/gui/settings.cpp:4135 +msgid "Secondary specific effect" +msgstr "Efecto específico secundario" + +#: src/gui/settings.cpp:4137 +msgid "External command output" +msgstr "Salida de comando externo" + +#: src/gui/settings.cpp:4138 +msgid "Status: off/disabled" +msgstr "Estado: apagado/desactivado" + +#: src/gui/settings.cpp:4139 +msgid "Status: off + macro rel" +msgstr "Estado: apagado + macro lanzada" + +#: src/gui/settings.cpp:4140 +msgid "Status: on + macro rel" +msgstr "Estado: encendido + macro lanzada" + +#: src/gui/settings.cpp:4141 +msgid "Status: on" +msgstr "Estado: encendido" + +#: src/gui/settings.cpp:4142 +msgid "Status: volume" +msgstr "Estado: volumen" + +#: src/gui/settings.cpp:4143 +msgid "Status: pitch" +msgstr "Estado: tono" + +#: src/gui/settings.cpp:4144 +msgid "Status: panning" +msgstr "Estado: balance" + +#: src/gui/settings.cpp:4145 +msgid "Status: chip (primary)" +msgstr "Estado: chip (primario)" + +#: src/gui/settings.cpp:4146 +msgid "Status: chip (secondary)" +msgstr "Estado: chip (secundario)" + +#: src/gui/settings.cpp:4147 +msgid "Status: mixing" +msgstr "Estado: mezcla" + +#: src/gui/settings.cpp:4148 +msgid "Status: DSP effect" +msgstr "Estado: efecto DSP" + +#: src/gui/settings.cpp:4149 +msgid "Status: note altering" +msgstr "Estado: alteración de nota" + +#: src/gui/settings.cpp:4150 +msgid "Status: misc color 1" +msgstr "Estado: color misceláneo 1" + +#: src/gui/settings.cpp:4151 +msgid "Status: misc color 2" +msgstr "Estado: color misceláneo 2" + +#: src/gui/settings.cpp:4152 +msgid "Status: misc color 3" +msgstr "Estado: color misceláneo 3" + +#: src/gui/settings.cpp:4153 +msgid "Status: attack" +msgstr "Estado: ataque" + +#: src/gui/settings.cpp:4154 +msgid "Status: decay" +msgstr "Estado: caída" + +#: src/gui/settings.cpp:4155 +msgid "Status: sustain" +msgstr "Estado: sostenido" + +#: src/gui/settings.cpp:4156 +msgid "Status: release" +msgstr "Estado: lanzamiento" + +#: src/gui/settings.cpp:4157 +msgid "Status: decrease linear" +msgstr "Estado: decremento lineal" + +#: src/gui/settings.cpp:4158 +msgid "Status: decrease exp" +msgstr "Estado: decremento exponencial" + +#: src/gui/settings.cpp:4159 +msgid "Status: increase" +msgstr "Estado: aumento" + +#: src/gui/settings.cpp:4160 +msgid "Status: bent" +msgstr "Estado: doblada" + +#: src/gui/settings.cpp:4161 +msgid "Status: direct" +msgstr "Estado: directo" + +#: src/gui/settings.cpp:4164 src/gui/guiConst.cpp:586 src/gui/sampleEdit.cpp:96 +msgid "Sample Editor" +msgstr "Editor de Samples" + +#: src/gui/settings.cpp:4167 +msgid "Time background" +msgstr "Fondo del tiempo" + +#: src/gui/settings.cpp:4168 +msgid "Time text" +msgstr "Texto del tiempo" + +#: src/gui/settings.cpp:4169 +msgid "Loop region" +msgstr "Región de bucle" + +#: src/gui/settings.cpp:4170 +msgid "Center guide" +msgstr "Guía del centro" + +#: src/gui/settings.cpp:4171 +msgid "Grid" +msgstr "Parrilla" + +#: src/gui/settings.cpp:4173 +msgid "Selection points" +msgstr "Puntos de selección" + +#: src/gui/settings.cpp:4174 +msgid "Preview needle" +msgstr "Aguja de vista previa" + +#: src/gui/settings.cpp:4175 +msgid "Playing needles" +msgstr "Agujas de reproducción" + +#: src/gui/settings.cpp:4176 +msgid "Loop markers" +msgstr "Marcadores de bucle" + +#: src/gui/settings.cpp:4177 +msgid "Chip select: disabled" +msgstr "Selección de chips: desactivado" + +#: src/gui/settings.cpp:4178 +msgid "Chip select: enabled" +msgstr "Selección de chips: activado" + +#: src/gui/settings.cpp:4179 +msgid "Chip select: enabled (failure)" +msgstr "Selección de chips: activado (falla)" + +#: src/gui/settings.cpp:4182 src/gui/guiConst.cpp:602 src/gui/patManager.cpp:35 +msgid "Pattern Manager" +msgstr "Administrador de Patrones" + +#: src/gui/settings.cpp:4183 +msgid "Unallocated" +msgstr "No reservado" + +#: src/gui/settings.cpp:4184 +msgid "Unused" +msgstr "Sin uso" + +#: src/gui/settings.cpp:4185 +msgid "Used" +msgstr "Usado" + +#: src/gui/settings.cpp:4186 +msgid "Overused" +msgstr "Muy usado" + +#: src/gui/settings.cpp:4187 +msgid "Really overused" +msgstr "Demasiado usado" + +#: src/gui/settings.cpp:4188 +msgid "Combo Breaker" +msgstr "Combo Breaker" + +#: src/gui/settings.cpp:4191 src/gui/guiConst.cpp:599 src/gui/piano.cpp:63 +msgid "Piano" +msgstr "Piano" + +#: src/gui/settings.cpp:4193 +msgid "Upper key" +msgstr "Tecla superior" + +#: src/gui/settings.cpp:4194 +msgid "Upper key (feedback)" +msgstr "Tecla superior (respuesta)" + +#: src/gui/settings.cpp:4195 +msgid "Upper key (pressed)" +msgstr "Tecla superior (apretada)" + +#: src/gui/settings.cpp:4196 +msgid "Lower key" +msgstr "Tecla inferior" + +#: src/gui/settings.cpp:4197 +msgid "Lower key (feedback)" +msgstr "Tecla inferior (respuesta)" + +#: src/gui/settings.cpp:4198 +msgid "Lower key (pressed)" +msgstr "Tecla inferior (apretada)" + +#: src/gui/settings.cpp:4201 src/gui/clock.cpp:31 src/gui/guiConst.cpp:610 +msgid "Clock" +msgstr "Reloj" + +#: src/gui/settings.cpp:4202 +msgid "Clock text" +msgstr "Texto del reloj" + +#: src/gui/settings.cpp:4203 +msgid "Beat (off)" +msgstr "Compás (apagado)" + +#: src/gui/settings.cpp:4204 +msgid "Beat (on)" +msgstr "Compás (encendido)" + +#: src/gui/settings.cpp:4209 +msgid "PortSet" +msgstr "Set de Puertos" + +#: src/gui/settings.cpp:4210 +msgid "Port" +msgstr "Puerto" + +#: src/gui/settings.cpp:4211 +msgid "Port (hidden/unavailable)" +msgstr "Puerto (escondido/no disponible)" + +#: src/gui/settings.cpp:4212 +msgid "Connection (selected)" +msgstr "Conexión (seleccionada)" + +#: src/gui/settings.cpp:4213 +msgid "Connection (other)" +msgstr "Conexión (otra)" + +#: src/gui/settings.cpp:4219 +msgid "Waveform data" +msgstr "Datos de onda" + +#: src/gui/settings.cpp:4222 +msgid "Reserved" +msgstr "Reservado" + +#: src/gui/settings.cpp:4224 +msgid "Sample (alternate 1)" +msgstr "Sample (alterno 1)" + +#: src/gui/settings.cpp:4225 +msgid "Sample (alternate 2)" +msgstr "Sample (alterno 2)" + +#: src/gui/settings.cpp:4226 +msgid "Sample (alternate 3)" +msgstr "Sample (alterno 3)" + +#: src/gui/settings.cpp:4227 +msgid "Wave RAM" +msgstr "RAM de ondas" + +#: src/gui/settings.cpp:4228 +msgid "Wavetable (static)" +msgstr "Onda (estática)" + +#: src/gui/settings.cpp:4229 +msgid "Echo buffer" +msgstr "Búfer de eco" + +#: src/gui/settings.cpp:4230 +msgid "Namco 163 load pos" +msgstr "Posición de carga de Namco 163" + +#: src/gui/settings.cpp:4231 +msgid "Namco 163 play pos" +msgstr "Posición de reproducción de Namco 163" + +#: src/gui/settings.cpp:4232 +msgid "Sample (bank 0)" +msgstr "Sample (banco 0)" + +#: src/gui/settings.cpp:4233 +msgid "Sample (bank 1)" +msgstr "Sample (banco 1)" + +#: src/gui/settings.cpp:4234 +msgid "Sample (bank 2)" +msgstr "Sample (banco 2)" + +#: src/gui/settings.cpp:4235 +msgid "Sample (bank 3)" +msgstr "Sample (banco 3)" + +#: src/gui/settings.cpp:4236 +msgid "Sample (bank 4)" +msgstr "Sample (banco 4)" + +#: src/gui/settings.cpp:4237 +msgid "Sample (bank 5)" +msgstr "Sample (banco 5)" + +#: src/gui/settings.cpp:4238 +msgid "Sample (bank 6)" +msgstr "Sample (banco 6)" + +#: src/gui/settings.cpp:4239 +msgid "Sample (bank 7)" +msgstr "Sample (banco 7)" + +#: src/gui/settings.cpp:4244 +msgid "Log level: Error" +msgstr "Nivel de registro: Error" + +#: src/gui/settings.cpp:4245 +msgid "Log level: Warning" +msgstr "Nivel de registro: Alerta" + +#: src/gui/settings.cpp:4246 +msgid "Log level: Info" +msgstr "Nivel de registro: Información" + +#: src/gui/settings.cpp:4247 +msgid "Log level: Debug" +msgstr "Nivel de registro: Depuración" + +#: src/gui/settings.cpp:4248 +msgid "Log level: Trace/Verbose" +msgstr "Nivel de registro: Traza/Verboso" + +#: src/gui/settings.cpp:4253 +msgid "Backup" +msgstr "Copia de seguridad" + +#: src/gui/settings.cpp:4258 +msgid "Enable backup system" +msgstr "Activar el sistema de respaldo" + +#: src/gui/settings.cpp:4263 +msgid "Interval (in seconds)" +msgstr "Intervalo (en segundos)" + +#: src/gui/settings.cpp:4268 +msgid "Backups per file" +msgstr "Copias por archivo" + +#: src/gui/settings.cpp:4274 +msgid "Backup Management" +msgstr "Administración de Copias" + +#: src/gui/settings.cpp:4278 +msgid "Purge before:" +msgstr "Purgar antes de:" + +#: src/gui/settings.cpp:4352 +msgid "Go##PDate" +msgstr "Ejecutar##PDate" + +#: src/gui/settings.cpp:4359 +#, c-format +msgid "%PB used" +msgstr "%PB usados" + +#: src/gui/settings.cpp:4361 +#, c-format +msgid "%TB used" +msgstr "%TB usados" + +#: src/gui/settings.cpp:4363 +#, c-format +msgid "%GB used" +msgstr "%GB usados" + +#: src/gui/settings.cpp:4365 +#, c-format +msgid "%MB used" +msgstr "%MB usados" + +#: src/gui/settings.cpp:4367 +#, c-format +msgid "%KB used" +msgstr "%KB usados" + +#: src/gui/settings.cpp:4369 +#, c-format +msgid "% bytes used" +msgstr "% bytes usados" + +#: src/gui/settings.cpp:4374 +msgid "Refresh" +msgstr "Actualizar" + +#: src/gui/settings.cpp:4378 +msgid "Delete all" +msgstr "Borrar todo" + +#: src/gui/settings.cpp:4384 src/gui/settings.cpp:6688 +msgid "Size" +msgstr "Tamaño" + +#: src/gui/settings.cpp:4385 +msgid "Latest" +msgstr "Última" + +#: src/gui/settings.cpp:4395 +#, c-format +msgid "%P" +msgstr "" + +#: src/gui/settings.cpp:4397 +#, c-format +msgid "%T" +msgstr "" + +#: src/gui/settings.cpp:4399 +#, c-format +msgid "%G" +msgstr "" + +#: src/gui/settings.cpp:4401 +#, c-format +msgid "%M" +msgstr "" + +#: src/gui/settings.cpp:4403 +#, c-format +msgid "%K" +msgstr "" + +#: src/gui/settings.cpp:4405 +#, c-format +msgid "%" +msgstr "" + +#: src/gui/settings.cpp:4529 +msgid "Cheat Codes" +msgstr "Códigos de Trampa" + +#: src/gui/settings.cpp:4531 +msgid "Enter code:" +msgstr "Introduce un código:" + +#: src/gui/settings.cpp:4533 +msgid "Submit" +msgstr "Subir" + +#: src/gui/settings.cpp:4537 +msgid "invalid code" +msgstr "código inválido" + +#: src/gui/settings.cpp:4547 +msgid "toggled alternate UI" +msgstr "interfaz alterna activada" + +#: src/gui/settings.cpp:4551 +msgid ":smile: :star_struck: :sunglasses: :ok_hand:" +msgstr "" + +#: src/gui/settings.cpp:4555 +msgid "enabled all instrument types" +msgstr "todos los tipos de instrumentos activados" + +#: src/gui/settings.cpp:4559 +msgid "OK, if I bring your Partial pitch linearity will you stop bothering me?" +msgstr "" +"OK, si te doy tu linealidad de tono Parcial ¿vas a dejar de molestarme?" + +#: src/gui/settings.cpp:4563 +msgid "unlocked audio multi-threading options!" +msgstr "¡opciones de audio en subprocesos múltiples desbloqueados!" + +#: src/gui/settings.cpp:4567 +msgid "enabled \"comfortable\" mode" +msgstr "se activó el modo \"cómodo\"" + +#: src/gui/settings.cpp:4585 +msgid "OK##SettingsOK" +msgstr "Aceptar##SettingsOK" + +#: src/gui/settings.cpp:4591 +msgid "Cancel##SettingsCancel" +msgstr "Cancelar##SettingsCancel" + +#: src/gui/settings.cpp:4599 +msgid "Apply##SettingsApply" +msgstr "Aplicar##SettingsApply" + +#: src/gui/settings.cpp:5673 +msgid "could not initialize audio!" +msgstr "¡no se pudo inicializar el audio!" + +#: src/gui/settings.cpp:5683 src/gui/gui.cpp:4067 src/gui/gui.cpp:6662 +#: src/gui/gui.cpp:7088 +msgid "error while loading fonts! please check your settings." +msgstr "¡error al cargar fuentes! por favor revisa tus ajustes." + +#: src/gui/settings.cpp:5862 +#, c-format +msgid "error while loading config! (%s)" +msgstr "¡error al cargar la configuración! (%s)" + +#: src/gui/settings.cpp:6675 +msgid "[Dir]" +msgstr "[Dir?" + +#: src/gui/settings.cpp:6676 +msgid "[Link]" +msgstr "[Vínculo]" + +#: src/gui/settings.cpp:6677 +msgid "[File]" +msgstr "]Archivo]" + +#: src/gui/settings.cpp:6678 +msgid "Name:" +msgstr "Nombre:" + +#: src/gui/settings.cpp:6679 +msgid "Path:" +msgstr "Ruta:" + +#: src/gui/settings.cpp:6680 +msgid "Reset search" +msgstr "Reiniciar búsqueda" + +#: src/gui/settings.cpp:6681 +msgid "Drives" +msgstr "Discos" + +#: src/gui/settings.cpp:6682 +msgid "" +"Edit path\n" +"You can also right click on path buttons" +msgstr "" +"Editar ruta\n" +"También puedes hacer clic derecho en botones de ruta" + +#: src/gui/settings.cpp:6683 +msgid "Go to home directory" +msgstr "Ir al directorio de casa" + +#: src/gui/settings.cpp:6684 +msgid "Go to parent directory" +msgstr "Ir al directorio superior" + +#: src/gui/settings.cpp:6685 +msgid "Create Directory" +msgstr "Crear Directorio" + +#: src/gui/settings.cpp:6686 +msgid "File name" +msgstr "Nombre del archivo" + +#: src/gui/settings.cpp:6689 +msgid "Date" +msgstr "Fecha" + +#: src/gui/settings.cpp:6690 src/gui/gui.cpp:5510 src/gui/gui.cpp:5645 +#: src/gui/gui.cpp:5646 +msgid "Warning" +msgstr "Advertencia" + +#: src/gui/settings.cpp:6691 +msgid "The file you selected already exists! Would you like to overwrite it?" +msgstr "El archivo que has seleccionado ya existe. ¿Deseas reemplazarlo?" + +#: src/gui/settings.cpp:6692 src/gui/gui.cpp:5650 src/gui/gui.cpp:5674 +#: src/gui/gui.cpp:5698 src/gui/gui.cpp:5722 src/gui/gui.cpp:5746 +#: src/gui/gui.cpp:5770 src/gui/gui.cpp:5802 src/gui/gui.cpp:5818 +#: src/gui/gui.cpp:5829 src/gui/gui.cpp:5841 src/gui/gui.cpp:5995 +#: src/gui/gui.cpp:6017 src/gui/gui.cpp:6032 src/gui/gui.cpp:6043 +msgid "Yes" +msgstr "Sí" + +#: src/gui/settings.cpp:6693 src/gui/findReplace.cpp:828 src/gui/gui.cpp:5664 +#: src/gui/gui.cpp:5688 src/gui/gui.cpp:5712 src/gui/gui.cpp:5736 +#: src/gui/gui.cpp:5760 src/gui/gui.cpp:5788 src/gui/gui.cpp:5813 +#: src/gui/gui.cpp:5824 src/gui/gui.cpp:5836 src/gui/gui.cpp:5848 +#: src/gui/gui.cpp:6012 src/gui/gui.cpp:6027 src/gui/gui.cpp:6037 +#: src/gui/gui.cpp:6050 +msgid "No" +msgstr "No" + +#: src/gui/settings.cpp:6694 +msgid "%Y/%m/%d %H:%M" +msgstr "%d/%m/%Y %H:%M" + +#: src/gui/orders.cpp:114 +msgid "Add new order" +msgstr "Agregar nuevo orden" + +#: src/gui/orders.cpp:125 src/gui/guiConst.cpp:794 +msgid "Remove order" +msgstr "Remover orden" + +#: src/gui/orders.cpp:137 +msgid "Duplicate order (right-click to deep clone)" +msgstr "Duplicar orden (click derecho para clonar)" + +#: src/gui/orders.cpp:146 src/gui/guiConst.cpp:795 +msgid "Move order up" +msgstr "Mover orden hacia arriba" + +#: src/gui/orders.cpp:155 src/gui/guiConst.cpp:796 +msgid "Move order down" +msgstr "Mover orden hacia abajo" + +#: src/gui/orders.cpp:167 +msgid "Place copy of current order at end of song (right-click to deep clone)" +msgstr "Copiar orden actual al final de la canción (click derecho para clonar)" + +#: src/gui/orders.cpp:177 +msgid "Order change mode: entire row" +msgstr "Modo de cambio de orden: fila completa" + +#: src/gui/orders.cpp:179 +msgid "Order change mode: one" +msgstr "Modo de cambio de orden: uno a la vez" + +#: src/gui/orders.cpp:205 +msgid "Order edit mode: Select and type (scroll vertically)" +msgstr "" +"Modo de edición de orden: Seleccionar y escribir (desplazar verticalmente)" + +#: src/gui/orders.cpp:207 +msgid "Order edit mode: Select and type (scroll horizontally)" +msgstr "" +"Modo de edición de orden: Seleccionar y escribir (desplazar horizontalmente)" + +#: src/gui/orders.cpp:209 +msgid "Order edit mode: Select and type (don't scroll)" +msgstr "Modo de edición de orden: Seleccionar y escribir (no desplazar)" + +#: src/gui/orders.cpp:211 +msgid "Order edit mode: Click to change" +msgstr "Modo de edición de orden: haz clic para cambiar" + +#: src/gui/findReplace.cpp:29 +msgid "ignore" +msgstr "ignorar" + +#: src/gui/findReplace.cpp:30 +msgid "equals" +msgstr "es igual a" + +#: src/gui/findReplace.cpp:31 +msgid "not equal" +msgstr "no es igual a" + +#: src/gui/findReplace.cpp:32 +msgid "between" +msgstr "está entre" + +#: src/gui/findReplace.cpp:33 +msgid "not between" +msgstr "no está entre" + +#: src/gui/findReplace.cpp:34 +msgid "any" +msgstr "cualquier" + +#: src/gui/findReplace.cpp:35 src/gui/guiConst.cpp:217 +msgid "none" +msgstr "ninguno" + +#: src/gui/findReplace.cpp:39 +msgid "set" +msgstr "establecer a" + +#: src/gui/findReplace.cpp:40 +msgid "add" +msgstr "agregar" + +#: src/gui/findReplace.cpp:41 +msgid "add (overflow)" +msgstr "agregar con desborde" + +#: src/gui/findReplace.cpp:42 +msgid "scale %" +msgstr "escalar por %" + +#: src/gui/findReplace.cpp:512 src/gui/guiConst.cpp:609 +msgid "Find/Replace" +msgstr "Buscar/Reemplazar" + +#: src/gui/findReplace.cpp:520 src/gui/findReplace.cpp:850 +msgid "Find" +msgstr "Buscar" + +#: src/gui/findReplace.cpp:526 src/gui/findReplace.cpp:535 +msgid "order" +msgstr "orden" + +#: src/gui/findReplace.cpp:527 src/gui/findReplace.cpp:537 +msgid "row" +msgstr "fila" + +#: src/gui/findReplace.cpp:539 src/gui/csPlayer.cpp:146 +msgid "channel" +msgstr "canal" + +#: src/gui/findReplace.cpp:541 +msgid "go" +msgstr "ir" + +#: src/gui/findReplace.cpp:585 +msgid "no matches found!" +msgstr "no se han encontrado coincidencias" + +#: src/gui/findReplace.cpp:587 +msgid "Back" +msgstr "Atrás" + +#: src/gui/findReplace.cpp:750 +msgid "Delete query" +msgstr "Borrar busqueda" + +#: src/gui/findReplace.cpp:754 src/gui/findReplace.cpp:1037 +msgid "Add effect" +msgstr "Añadir efecto" + +#: src/gui/findReplace.cpp:761 src/gui/findReplace.cpp:1044 +msgid "Remove effect" +msgstr "Remover efecto" + +#: src/gui/findReplace.cpp:786 +msgid "Search range:" +msgstr "Rango de búsqueda" + +#: src/gui/findReplace.cpp:799 +msgid "Confine to channels" +msgstr "Limitar a los canales" + +#: src/gui/findReplace.cpp:803 src/gui/sampleEdit.cpp:1152 +msgid "From" +msgstr "Desde" + +#: src/gui/findReplace.cpp:814 src/gui/sampleEdit.cpp:1156 +msgid "To" +msgstr "Hasta" + +#: src/gui/findReplace.cpp:826 +msgid "Match effect position:" +msgstr "Hacer coincidir posición de efecto:" + +#: src/gui/findReplace.cpp:832 +msgid "match effects regardless of position." +msgstr "hacer coincidir efectos sin importar su posición." + +#: src/gui/findReplace.cpp:834 src/gui/compatFlags.cpp:288 +msgid "Lax" +msgstr "Flojamente" + +#: src/gui/findReplace.cpp:838 +msgid "match effects only if they appear in-order." +msgstr "hacer coincidir efectos solo si aparecen en orden." + +#: src/gui/findReplace.cpp:840 src/gui/compatFlags.cpp:276 +msgid "Strict" +msgstr "Estrictamente" + +#: src/gui/findReplace.cpp:844 +msgid "match effects only if they appear exactly as specified." +msgstr "" +"hacer coincidir efectos solo si aparecen exactamente como se especifíca." + +#: src/gui/findReplace.cpp:856 +msgid "Replace" +msgstr "Reemplazar" + +#: src/gui/findReplace.cpp:908 +msgid "INVALID" +msgstr "INVÁLIDO" + +#: src/gui/findReplace.cpp:1052 +msgid "Effect replace mode:" +msgstr "Modo de reemplazo de efectos:" + +#: src/gui/findReplace.cpp:1053 +msgid "Replace matches only" +msgstr "Solo reemplazar coincidencias" + +#: src/gui/findReplace.cpp:1056 +msgid "Replace matches, then free spaces" +msgstr "Reemplazar coincidencias y librar los espacios" + +#: src/gui/findReplace.cpp:1059 +msgid "Clear effects" +msgstr "Limpiar efectos" + +#: src/gui/findReplace.cpp:1062 +msgid "Insert in free spaces" +msgstr "Insertar en espacios libres" + +#: src/gui/findReplace.cpp:1065 +msgid "Replace##QueryReplace" +msgstr "Reemplazar##QueryReplace" + +#: src/gui/about.cpp:26 +msgid "is proud to present" +msgstr "tiene el orgullo de presentar" + +#: src/gui/about.cpp:30 +msgid "the biggest multi-system chiptune tracker!" +msgstr "" +"¡bienvenido a Furnace, el tracker de chiptune de codigo abierto más grande " +"de todos!" + +#: src/gui/about.cpp:31 +msgid "featuring DefleMask song compatibility." +msgstr "con compatibilidad de canciones DefleMask." + +#: src/gui/about.cpp:33 +msgid "> CREDITS <" +msgstr "> CRÉDITOS <" + +#: src/gui/about.cpp:35 +msgid "-- program --" +msgstr "-- programa --" + +#: src/gui/about.cpp:37 +msgid "A M 4 N (intro tune)" +msgstr "A M 4 N (canción de intro)" + +#: src/gui/about.cpp:52 +msgid "-- graphics/UI design --" +msgstr "-- gráficos/diseño de interfaz --" + +#: src/gui/about.cpp:59 +msgid "-- documentation --" +msgstr "-- documentación --" + +#: src/gui/about.cpp:69 +msgid "-- localization/translation team --" +msgstr "" + +#: src/gui/about.cpp:81 +msgid "-- demo songs --" +msgstr "-- canciones demo --" + +#: src/gui/about.cpp:207 +msgid "-- additional feedback/fixes --" +msgstr "-- arreglos/información adicional --" + +#: src/gui/about.cpp:218 +msgid "-- Metal backend test team --" +msgstr "-- equipo de prueba del backend Metal --" + +#: src/gui/about.cpp:224 +msgid "-- DirectX 9 backend test team --" +msgstr "-- equipo de prueba del backend DirectX 9 --" + +#: src/gui/about.cpp:231 +msgid "powered by:" +msgstr "potenciado por:" + +#: src/gui/about.cpp:232 +msgid "Dear ImGui by Omar Cornut" +msgstr "Dear ImGui por Omar Cornut" + +#: src/gui/about.cpp:233 +msgid "SDL2 by Sam Lantinga" +msgstr "SDL2 por Sam Lantinga" + +#: src/gui/about.cpp:237 +msgid "zlib by Jean-loup Gailly" +msgstr "zlib por Jean-loup Gailly" + +#: src/gui/about.cpp:238 +msgid "and Mark Adler" +msgstr "y Mark Adler" + +#: src/gui/about.cpp:239 +msgid "libsndfile by Erik de Castro Lopo" +msgstr "libsndfile por Erik de Castro Lopo" + +#: src/gui/about.cpp:240 +msgid "Portable File Dialogs by Sam Hocevar" +msgstr "Portable File Dialogs por Sam Hocevar" + +#: src/gui/about.cpp:241 +msgid "Native File Dialog by Frogtoss Games" +msgstr "Native File Dialog por Frogtoss Games" + +#: src/gui/about.cpp:243 +msgid "Weak-JACK by x42" +msgstr "Weak-JACK por x42" + +#: src/gui/about.cpp:244 +msgid "RtMidi by Gary P. Scavone" +msgstr "RtMidi por Gary P. Scavone" + +#: src/gui/about.cpp:245 +msgid "FFTW by Matteo Frigo and Steven G. Johnson" +msgstr "FFTW por Matteo Frigo y Steven G. Johnson" + +#: src/gui/about.cpp:246 +msgid "backward-cpp by Google" +msgstr "backward-cpp por Google" + +#: src/gui/about.cpp:247 +msgid "adpcm by superctr" +msgstr "adpcm por superctr" + +#: src/gui/about.cpp:248 +msgid "adpcm-xq by David Bryant" +msgstr "adpcm-xq por David Bryant" + +#: src/gui/about.cpp:249 +msgid "Nuked-OPL3/OPLL/OPM/OPN2/PSG by nukeykt" +msgstr "Nuked-OPL3/OPLL/OPM/OPN2/PSG por nukeykt" + +#: src/gui/about.cpp:250 +msgid "YM3812-LLE, YMF262-LLE, YMF276-LLE and YM2608-LLE by nukeykt" +msgstr "YM3812-LLE, YMF262-LLE, YMF276-LLE y YM2608-LLE por nukeykt" + +#: src/gui/about.cpp:251 +msgid "ESFMu (modified version) by Kagamiin~" +msgstr "ESFMu (versión modificada) por Kagamiin~" + +#: src/gui/about.cpp:252 +msgid "ymfm by Aaron Giles" +msgstr "ymfm por Aaron Giles" + +#: src/gui/about.cpp:253 +msgid "emu2413 by Digital Sound Antiques" +msgstr "emu2413 por Digital Sound Antiques" + +#: src/gui/about.cpp:254 +msgid "MAME SN76496 by Nicola Salmoria" +msgstr "MAME SN76496 por Nicola Salmoria" + +#: src/gui/about.cpp:255 +msgid "MAME AY-3-8910 by Couriersud" +msgstr "MAME AY-3-8910 por Couriersud" + +#: src/gui/about.cpp:256 +msgid "with AY8930 fixes by Eulous, cam900 and Grauw" +msgstr "con arreglos AY8930 por Eulous, cam900 and Grauw" + +#: src/gui/about.cpp:257 +msgid "MAME SAA1099 by Juergen Buchmueller and Manuel Abadia" +msgstr "MAME SAA1099 por Juergen Buchmueller y Manuel Abadia" + +#: src/gui/about.cpp:258 +msgid "MAME Namco WSG by Nicola Salmoria and Aaron Giles" +msgstr "MAME Namco WSG por Nicola Salmoria y Aaron Giles" + +#: src/gui/about.cpp:259 +msgid "MAME RF5C68 core by Olivier Galibert and Aaron Giles" +msgstr "MAME RF5C68 core por Olivier Galibert y Aaron Giles" + +#: src/gui/about.cpp:260 +msgid "MAME MSM5232 core by Jarek Burczynski and Hiromitsu Shioya" +msgstr "MAME MSM5232 core por Jarek Burczynski y Hiromitsu Shioya" + +#: src/gui/about.cpp:261 +msgid "MAME MSM6258 core by Barry Rodewald" +msgstr "MAME MSM6258 core por Barry Rodewald" + +#: src/gui/about.cpp:262 +msgid "MAME YMZ280B core by Aaron Giles" +msgstr "MAME YMZ280B core por Aaron Giles" + +#: src/gui/about.cpp:263 +msgid "MAME GA20 core by Acho A. Tang and R. Belmont" +msgstr "MAME GA20 core por Acho A. Tang y R. Belmont" + +#: src/gui/about.cpp:264 +msgid "MAME SegaPCM core by Hiromitsu Shioya and Olivier Galibert" +msgstr "MAME SegaPCM core por Hiromitsu Shioya y Olivier Galibert" + +#: src/gui/about.cpp:265 +msgid "SAASound by Dave Hooper and Simon Owen" +msgstr "SAASound por Dave Hooper y Simon Owen" + +#: src/gui/about.cpp:266 +msgid "SameBoy by Lior Halphon" +msgstr "SameBoy por Lior Halphon" + +#: src/gui/about.cpp:267 +msgid "Mednafen PCE, WonderSwan, T6W28 and Virtual Boy audio cores" +msgstr "Núcleos de audio Mednafen PCE, WonderSwan, T6W28 y Virtual Boy" + +#: src/gui/about.cpp:268 +msgid "SNES DSP core by Blargg" +msgstr "SNES DSP core por Blargg" + +#: src/gui/about.cpp:269 +msgid "puNES (NES, MMC5 and FDS) by FHorse" +msgstr "puNES (NES, MMC5 y FDS) por FHorse" + +#: src/gui/about.cpp:270 +msgid "NSFPlay (NES and FDS) by Brad Smith and Brezza" +msgstr "NSFPlay (NES y FDS) por Brad Smith y Brezza" + +#: src/gui/about.cpp:271 +msgid "reSID by Dag Lem" +msgstr "reSID por Dag Lem" + +#: src/gui/about.cpp:272 +msgid "reSIDfp by Dag Lem, Antti Lankila" +msgstr "reSIDfp por Dag Lem, Antti Lankila" + +#: src/gui/about.cpp:273 +msgid "and Leandro Nini" +msgstr "y Leandro Nini" + +#: src/gui/about.cpp:274 +msgid "dSID by DefleMask Team based on jsSID" +msgstr "dSID por DefleMask Team basado en jsSID" + +#: src/gui/about.cpp:275 +msgid "Stella by Stella Team" +msgstr "Stella por Stella Team" + +#: src/gui/about.cpp:276 +msgid "QSound emulator by superctr and Valley Bell" +msgstr "QSound emulator por superctr y Valley Bell" + +#: src/gui/about.cpp:277 +msgid "VICE VIC-20 sound core by Rami Rasanen and viznut" +msgstr "VICE VIC-20 emulador de sonido por Rami Rasanen y viznut" + +#: src/gui/about.cpp:278 +msgid "VICE TED sound core by Andreas Boose, Tibor Biczo" +msgstr "VICE TED emulador de sonido por Andreas Boose, Tibor Biczo" + +#: src/gui/about.cpp:279 +msgid "and Marco van den Heuvel" +msgstr "y Marco van den Heuvel" + +#: src/gui/about.cpp:280 +msgid "VERA sound core by Frank van den Hoef" +msgstr "VERA emulador de sonido por Frank van den Hoef" + +#: src/gui/about.cpp:281 +msgid "mzpokeysnd POKEY emulator by Michael Borisov" +msgstr "mzpokeysnd POKEY emulador por Michael Borisov" + +#: src/gui/about.cpp:282 +msgid "ASAP POKEY emulator by Piotr Fusik" +msgstr "ASAP POKEY emulador por Piotr Fusik" + +#: src/gui/about.cpp:283 +msgid "ported by laoo to C++" +msgstr "porteado por laoo a C++" + +#: src/gui/about.cpp:284 +msgid "vgsound_emu (second version, modified version) by cam900" +msgstr "vgsound_emu (segunda versión, versión modificada) por cam900" + +#: src/gui/about.cpp:285 +msgid "SM8521 emulator (modified version) by cam900" +msgstr "SM8521 emulador (versión modificada) por cam900" + +#: src/gui/about.cpp:286 +msgid "D65010G031 emulator (modified version) by cam900" +msgstr "D65010G031 emulator (versión modificada) por cam900" + +#: src/gui/about.cpp:287 +msgid "Namco C140/C219 emulator (modified version) by cam900" +msgstr "Namco C140/C219 emulator (versión modificada) por cam900" + +#: src/gui/about.cpp:288 +msgid "PowerNoise emulator by scratchminer" +msgstr "PowerNoise emulator por scratchminer" + +#: src/gui/about.cpp:289 +msgid "ep128emu by Istvan Varga" +msgstr "ep128emu por Istvan Varga" + +#: src/gui/about.cpp:290 +msgid "NDS sound emulator by cam900" +msgstr "NDS sound emulator por cam900" + +#: src/gui/about.cpp:292 +msgid "greetings to:" +msgstr "saludos a:" + +#: src/gui/about.cpp:295 +msgid "all members of Deflers of Noice!" +msgstr "¡todos los miembros de Deflers of Noice!" + +#: src/gui/about.cpp:301 +msgid "copyright © 2021-2024 tildearrow" +msgstr "copyright © 2021-2024 tildearrow" + +#: src/gui/about.cpp:302 +msgid "(and contributors)." +msgstr "(y contribuidores)." + +#: src/gui/about.cpp:303 +msgid "licensed under GPLv2+! see" +msgstr "licenciado bajo la GPLv2+. observa" + +#: src/gui/about.cpp:304 +msgid "LICENSE for more information." +msgstr "LICENSE para más información." + +#: src/gui/about.cpp:306 +msgid "help Furnace grow:" +msgstr "ayuda a Furnace:" + +#: src/gui/about.cpp:309 +msgid "contact tildearrow at:" +msgstr "contacta tildearrow:" + +#: src/gui/about.cpp:312 +msgid "disclaimer:" +msgstr "nota:" + +#: src/gui/about.cpp:313 +msgid "despite the fact this program works" +msgstr "pese a que el program funciona" + +#: src/gui/about.cpp:314 +msgid "with the .dmf file format, it is NOT" +msgstr "con el formato de archivo .dmf, NO está" + +#: src/gui/about.cpp:315 +msgid "affiliated with Delek or DefleMask in" +msgstr "afiliado con Delek o DefleMask de" + +#: src/gui/about.cpp:316 +msgid "any way, nor it is a replacement for" +msgstr "ninguna manera, ni pretende reemplazar" + +#: src/gui/about.cpp:317 +msgid "the original program." +msgstr "el programa original." + +#: src/gui/about.cpp:319 +msgid "it also comes with ABSOLUTELY NO WARRANTY." +msgstr "también viene sin NINGUNA GARANTÍA ABSOLUTA." + +#: src/gui/about.cpp:321 +msgid "thanks to all contributors/bug reporters!" +msgstr "¡gracias a todos los contribuidores/reporteros de error!" + +#: src/gui/about.cpp:328 +msgid "About Furnace" +msgstr "Acerca de Furnace" + +#: src/gui/about.cpp:418 +msgid "Unsaved changes! Save changes before playing?" +msgstr "¡Cambios no guardados! ¿Guardar cambios antes de jugar?" + +#: src/gui/compatFlags.cpp:31 src/gui/guiConst.cpp:598 +msgid "Compatibility Flags" +msgstr "Opciones de compatibilidad" + +#: src/gui/compatFlags.cpp:32 +msgid "" +"these flags are designed to provide better DefleMask/older Furnace " +"compatibility.\n" +"it is recommended to disable most of these unless you rely on specific " +"quirks." +msgstr "" +"éstas opciones han sido diseñadas para proveer una mejor compatibilidad con " +"DefleMask y versiones anteriores de Furnace.\n" +"se recomienda desactivar la mayoría de estos a menos que dependas de ciertos " +"comportamientos especificos." + +#: src/gui/compatFlags.cpp:34 src/gui/compatFlags.cpp:310 +msgid "DefleMask" +msgstr "" + +#: src/gui/compatFlags.cpp:35 +msgid "Limit slide range" +msgstr "Limitar rango de deslizamiento" + +#: src/gui/compatFlags.cpp:37 +msgid "" +"when enabled, slides are limited to a compatible range.\n" +"may cause problems with slides in negative octaves." +msgstr "" +"al activar, limita los deslizamientos a un rango compatible.\n" +"puede causar problemas con deslizamientos en octavas negativas." + +#: src/gui/compatFlags.cpp:39 +msgid "Compatible noise layout on NES and PC Engine" +msgstr "Composición de ruido compatible en la NES y el PC Engine" + +#: src/gui/compatFlags.cpp:41 +msgid "" +"use a rather unusual compatible noise frequency layout.\n" +"removes some noise frequencies on PC Engine." +msgstr "" +"usa una frecuencia de ruido compatible algo inusual.\n" +"remueve algunas frecuencias de ruido en el PC Engine." + +#: src/gui/compatFlags.cpp:43 +msgid "Game Boy instrument duty is wave volume" +msgstr "El ancho de pulso de un instrumento de Gameboy es el sonido de onda" + +#: src/gui/compatFlags.cpp:45 +msgid "" +"if enabled, an instrument with duty macro in the wave channel will be mapped " +"to wavetable volume." +msgstr "" +"si se activa, un instrumento con macro de ancho de pulso en el canal Onda\n" +"será usado como volumen de wavetable." + +#: src/gui/compatFlags.cpp:48 +msgid "Restart macro on portamento" +msgstr "Reiniciar macro en un portamento" + +#: src/gui/compatFlags.cpp:50 +msgid "" +"when enabled, a portamento effect will reset the channel's macro if used in " +"combination with a note." +msgstr "" +"al activar, un efecto de portamento reiniciará el macro del canal si se usa\n" +"en combinación con una nota." + +#: src/gui/compatFlags.cpp:52 +msgid "Legacy volume slides" +msgstr "Deslizamientos de volumen antiguos" + +#: src/gui/compatFlags.cpp:54 +msgid "" +"simulate glitchy volume slide behavior by silently overflowing the volume " +"when the slide goes below 0." +msgstr "" +"simula deslizamiento de volumen con errores desbordando silenciosamente el " +"volumen\n" +"cuando el deslizamiento se vuelve menor que 0." + +#: src/gui/compatFlags.cpp:56 +msgid "Compatible arpeggio" +msgstr "Arpegio compatible" + +#: src/gui/compatFlags.cpp:58 +msgid "delay arpeggio by one tick on every new note." +msgstr "retrasar arpegio por un tick en cada nota nueva." + +#: src/gui/compatFlags.cpp:60 +msgid "Disable DAC when sample ends" +msgstr "Desactiva el DAC cuando el sample termine" + +#: src/gui/compatFlags.cpp:62 +msgid "" +"when enabled, the DAC in YM2612 will be disabled if there isn't any sample " +"playing." +msgstr "" +"al activar, el DAC en el YM2612 será desactivado si no hay samples " +"reproduciendo." + +#: src/gui/compatFlags.cpp:64 +msgid "Broken speed alternation" +msgstr "Alternación de velocidad rota" + +#: src/gui/compatFlags.cpp:66 +msgid "" +"determines next speed based on whether the row is odd/even instead of " +"alternating between speeds." +msgstr "" +"determina la velocidad siguente basado en si la fila es par o impar en vez " +"de alternar entre las velocidades." + +#: src/gui/compatFlags.cpp:68 +msgid "Ignore duplicate slide effects" +msgstr "Ignora efectos de deslizamiento duplicados" + +#: src/gui/compatFlags.cpp:70 +msgid "" +"if this is on, only the first slide of a row in a channel will be considered." +msgstr "" +"si se activa, solo el primer deslizamiento de una fila en un canal será " +"considerado." + +#: src/gui/compatFlags.cpp:72 +msgid "Ignore 0Dxx on the last order" +msgstr "Ignorar 0Dxx en la última orden" + +#: src/gui/compatFlags.cpp:74 +msgid "" +"if this is on, a jump to next row effect will not take place when it is on " +"the last order of a song." +msgstr "" +"si se activa, un salto a fila en la siguente orden no ocurrirá si se está en " +"la última orden de una canción." + +#: src/gui/compatFlags.cpp:76 +msgid "Buggy portamento after pitch slide" +msgstr "Portamento no se activa luego de un deslizamiento de tono" + +#: src/gui/compatFlags.cpp:78 +msgid "simulates a bug in where portamento does not work after sliding." +msgstr "" +"simula un error en el cual el portamento no funciona luego de un " +"deslizamiento de tono." + +#: src/gui/compatFlags.cpp:80 +msgid "FM pitch slide octave boundary odd behavior" +msgstr "" +"Comportamiento raro al deslizar tono más allá de la octava actual en FM" + +#: src/gui/compatFlags.cpp:82 +msgid "" +"if this is on, a pitch slide that crosses the octave boundary will stop for " +"one tick and then continue from the nearest octave boundary.\n" +"for .dmf compatibility." +msgstr "" +"si esto está activado, un deslizamiento de tono que cruce alguno de los " +"límites de\n" +"la octava actual se detendrá por un tick y luego continuará desde el límite " +"de octava más cercano.\n" +"para compatibilidad con .dmfs." + +#: src/gui/compatFlags.cpp:84 +msgid "Don't apply Game Boy envelope on note-less instrument change" +msgstr "No aplicar envelope de Game Boy en el cambio de instrumentos sin nota" + +#: src/gui/compatFlags.cpp:86 +msgid "if this is on, an instrument change will not affect the envelope." +msgstr "si está encendido, cambiar el instrumento no afectará el envelope." + +#: src/gui/compatFlags.cpp:88 +msgid "Ignore DAC mode change outside of intended channel in ExtCh mode" +msgstr "Ignorar cambio de modo DAC fuera del canal correcto en modo ExtCh" + +#: src/gui/compatFlags.cpp:90 +msgid "if this is on, 17xx has no effect on the operator channels in YM2612." +msgstr "" +"si está encendido, 17xx no tendrá efecto en los canales de operador en YM2612" + +#: src/gui/compatFlags.cpp:92 +msgid "E1xy/E2xy also take priority over slide stops" +msgstr "E1xy y E2xy toman prioridad sobre parar deslizamientos" + +#: src/gui/compatFlags.cpp:94 +msgid "does this make any sense by now?" +msgstr "algo de esto tiene sentido todavía?" + +#: src/gui/compatFlags.cpp:96 +msgid "E1xy/E2xy stop when repeating the same note" +msgstr "E1xy y E2xy se detienen al repetir la misma nota" + +#: src/gui/compatFlags.cpp:98 +msgid "ugh, if only this wasn't a thing..." +msgstr "ay, si solo esto no existiera..." + +#: src/gui/compatFlags.cpp:100 +msgid "SN76489 duty macro always resets phase" +msgstr "El macro de ancho de pulso del SN76489 siempre reinicia la fase" + +#: src/gui/compatFlags.cpp:102 +msgid "" +"when enabled, duty macro will always reset phase, even if its value hasn't " +"changed." +msgstr "" +"al activar, el macro de ancho de pulso siempre reiniciará la fase, incluso " +"si su valor no ha cambiado" + +#: src/gui/compatFlags.cpp:104 +msgid "Broken volume scaling strategy" +msgstr "Estrategia de escalado de volumen rota" + +#: src/gui/compatFlags.cpp:106 +msgid "" +"when enabled:\n" +"- log scaling: multiply\n" +"- linear scaling: subtract\n" +"when disabled:\n" +"- log scaling: subtract\n" +"- linear scaling: multiply" +msgstr "" +"si está activado:\n" +"- la escalación logarítmica usa multiplicación\n" +"- la escalación lineal usa substracción\n" +"si está desactivado:\n" +"- la escalación logarítmica usa substracción\n" +"- la escalación lineal usa multiplicación" + +#: src/gui/compatFlags.cpp:108 +msgid "Don't persist volume macro after it finishes" +msgstr "No persistir macro de volumen después de que termine" + +#: src/gui/compatFlags.cpp:110 +msgid "" +"when enabled, a value in the volume column that happens after the volume " +"macro is done will disregard the macro." +msgstr "" +"cuando está activado, un valor en la columna de volumen que pasa después de " +"que la macro de volume termine ignorará a la macro." + +#: src/gui/compatFlags.cpp:112 +msgid "Broken output volume on instrument change" +msgstr "Salida de volumen quebrada al cambiar instrumento" + +#: src/gui/compatFlags.cpp:114 +msgid "" +"if enabled, no checks for the presence of a volume macro will be made.\n" +"this will cause the last macro value to linger unless a value in the volume " +"column is present." +msgstr "" +"si se activa, no se verificará la presencia de una macro de volumen.\n" +"esto hace que el último valor de la macro se quede a menos de que exista un " +"valor en la columna de volumen." + +#: src/gui/compatFlags.cpp:116 +msgid "Broken output volume - Episode 2 (PLEASE KEEP ME DISABLED)" +msgstr "Salida de volumen quebrada - (POR FAVOR DESACTÍVAME)" + +#: src/gui/compatFlags.cpp:118 +msgid "" +"these compatibility flags are getting SO damn ridiculous and out of " +"control.\n" +"as you may have guessed, this one exists due to yet ANOTHER DefleMask-" +"specific behavior.\n" +"please keep this off at all costs, because I will not support it when ROM " +"export comes.\n" +"oh, and don't start an argument out of it. Furnace isn't a DefleMask " +"replacement, and no,\n" +"I am not trying to make it look like one with all these flags.\n" +"\n" +"oh, and what about the other flags that don't have to do with DefleMask?\n" +"those are for .mod import, future FamiTracker import and personal taste!\n" +"\n" +"end of rant" +msgstr "" +"estas opciones de compatibilidad se están volviendo MUY ridiculas y fuera de " +"control.\n" +"como podrás imaginar, esta existe por culpa de OTRO COMPORTAMIENTO " +"ESPECÍFICO MÁS de DefleMask.\n" +"por favor mantén esto apagado a toda costa porque no lo voy a mantener una " +"vez que la exportación a ROM venga.ah y no empieces a discutir al respecto. " +"Furnace no es un reemplazo para DefleMask, y no,\n" +"no estoy tratando de hacer que parezca uno con todas estas opciones.\n" +"\n" +"oh y que hay de todas las otras opciones que no tienen que ver con " +"DefleMask?\n" +"esos son para el importe de .mods, un futuro importe de archivos de " +"FamiTracker y por gusto personal!\n" +"\n" +"fin de la perorata" + +#: src/gui/compatFlags.cpp:120 +msgid "Treat SN76489 periods under 8 as 1" +msgstr "Tratar periodos en SN76489 menos de 8 como 1" + +#: src/gui/compatFlags.cpp:122 +msgid "" +"when enabled, any SN period under 8 will be written as 1 instead.\n" +"this replicates DefleMask behavior, but reduces available period range." +msgstr "" +"al activar, cualquier periodo SN menos de 8 será 1.\n" +"esto replica el comportamiento de DefleMask, pero reduce rango de periodo " +"disponible." + +#: src/gui/compatFlags.cpp:126 src/gui/compatFlags.cpp:304 +msgid "Old Furnace" +msgstr "Versiones antiguas" + +#: src/gui/compatFlags.cpp:127 +msgid "Arpeggio inhibits non-porta slides" +msgstr "Arpegio inhibe deslizamientos que no son portamento" + +#: src/gui/compatFlags.cpp:129 src/gui/compatFlags.cpp:133 +msgid "behavior changed in 0.5.5" +msgstr "comportamiento ha cambiado en 0.5.5" + +#: src/gui/compatFlags.cpp:131 +msgid "Wack FM algorithm macro" +msgstr "Macro de algoritmo FM fea" + +#: src/gui/compatFlags.cpp:135 +msgid "Broken shortcut slides (E1xy/E2xy)" +msgstr "Deslizamiento rápido quebrado (E1xy/E2xy)" + +#: src/gui/compatFlags.cpp:137 +msgid "behavior changed in 0.5.7" +msgstr "comportamiento ha cambiado en 0.5.7" + +#: src/gui/compatFlags.cpp:139 +msgid "Stop portamento on note off" +msgstr "Parar portamento al apagar nota" + +#: src/gui/compatFlags.cpp:141 src/gui/compatFlags.cpp:145 +#: src/gui/compatFlags.cpp:149 src/gui/compatFlags.cpp:153 +#: src/gui/compatFlags.cpp:157 src/gui/compatFlags.cpp:161 +#: src/gui/compatFlags.cpp:165 +msgid "behavior changed in 0.6pre1" +msgstr "" + +#: src/gui/compatFlags.cpp:143 +msgid "Don't allow instrument change during slides" +msgstr "No permitir cambios de instrumento al deslizar" + +#: src/gui/compatFlags.cpp:147 +msgid "Don't reset note to base on arpeggio stop" +msgstr "No reiniciar nota a base al parar arpegio" + +#: src/gui/compatFlags.cpp:151 +msgid "ExtCh channel status is not shared among operators" +msgstr "Estado del canal extendido no se comparte entre los operadores" + +#: src/gui/compatFlags.cpp:155 +msgid "Disable new SegaPCM features (macros and better panning)" +msgstr "Desactivar nuevas características del SegaPCM (macros y mejor balance)" + +#: src/gui/compatFlags.cpp:159 +msgid "Old FM octave boundary behavior" +msgstr "Comportamiento de límite de octava FM antiguo" + +#: src/gui/compatFlags.cpp:163 +msgid "Disable OPN2 DAC volume control" +msgstr "Desactivar control de volumen del DAC OPN2" + +#: src/gui/compatFlags.cpp:167 +msgid "Broken initial position of portamento after arpeggio" +msgstr "Posición inicial de portamento quebrada después de arpegio" + +#: src/gui/compatFlags.cpp:169 +msgid "behavior changed in 0.6pre1.5" +msgstr "" + +#: src/gui/compatFlags.cpp:171 +msgid "Disable new sample features" +msgstr "Desactivar características de samples nuevas" + +#: src/gui/compatFlags.cpp:173 src/gui/compatFlags.cpp:177 +msgid "behavior changed in 0.6pre2" +msgstr "" + +#: src/gui/compatFlags.cpp:175 +msgid "Old arpeggio macro + pitch slide strategy" +msgstr "Estrategia antigua para macro arpegio + deslizamiento de tono" + +#: src/gui/compatFlags.cpp:179 +msgid "Broken portamento during legato" +msgstr "Portamento quebrado durante legato" + +#: src/gui/compatFlags.cpp:181 +msgid "behavior changed in 0.6pre4" +msgstr "" + +#: src/gui/compatFlags.cpp:183 +msgid "Broken macros in some FM chips after note off" +msgstr "Macros quebradas en algunos chips FM después de apagar nota" + +#: src/gui/compatFlags.cpp:185 +msgid "behavior changed in 0.6pre5" +msgstr "" + +#: src/gui/compatFlags.cpp:187 +msgid "Pre-note does not take effects into consideration" +msgstr "Pre-nota no considera los efectos" + +#: src/gui/compatFlags.cpp:189 +msgid "behavior changed in 0.6pre9" +msgstr "" + +#: src/gui/compatFlags.cpp:191 +msgid "Disable new NES DPCM features" +msgstr "Desactivar nuevas funciones de DPCM de la NES" + +#: src/gui/compatFlags.cpp:193 +msgid "behavior changed in 0.6.1" +msgstr "" + +#: src/gui/compatFlags.cpp:195 +msgid "Legacy technical ALWAYS_SET_VOLUME behavior" +msgstr "Comportamiento de ALWAYS_SET_VOLUME antiguo" + +#: src/gui/compatFlags.cpp:197 +msgid "" +"behavior changed in 0.6.1\n" +"this flag will be removed if I find out that none of the songs break after " +"disabling it." +msgstr "" + +#: src/gui/compatFlags.cpp:199 +msgid "Old sample offset effect" +msgstr "Efecto de posición de sample antiguo" + +#: src/gui/compatFlags.cpp:201 +msgid "behavior changed in 0.6.3" +msgstr "" + +#: src/gui/compatFlags.cpp:205 +msgid ".mod import" +msgstr "Importación de .mod" + +#: src/gui/compatFlags.cpp:206 +msgid "Don't slide on the first tick of a row" +msgstr "No deslizes en el primer tick de una fila" + +#: src/gui/compatFlags.cpp:208 +msgid "" +"simulates ProTracker's behavior of not applying volume/pitch slides on the " +"first tick of a row." +msgstr "" +"simula el comportamiento de ProTracker de no aplicar deslizamientos de " +"volumen o tono en el primer tick de una fila." + +#: src/gui/compatFlags.cpp:210 +msgid "Reset arpeggio position on row change" +msgstr "Reiniciar posición de arpegio al cambiar fila" + +#: src/gui/compatFlags.cpp:212 +msgid "" +"simulates ProTracker's behavior of arpeggio being bound to the current tick " +"of a row." +msgstr "" +"simula el comportamiento de ProTracker en el que el arpegio está determinado " +"por el tick actual de la fila." + +#: src/gui/compatFlags.cpp:216 +msgid "Pitch/Playback" +msgstr "Tono/Reproducción" + +#: src/gui/compatFlags.cpp:217 +msgid "Pitch linearity:" +msgstr "Linealidad de tono:" + +#: src/gui/compatFlags.cpp:223 +msgid "like ProTracker/FamiTracker" +msgstr "como ProTracker/FamiTracker" + +#: src/gui/compatFlags.cpp:227 +msgid "Partial (only 04xy/E5xx)" +msgstr "Parcial (solo 04xy/E5xx)" + +#: src/gui/compatFlags.cpp:231 +msgid "" +"like DefleMask\n" +"\n" +"this pitch linearity mode is deprecated due to:\n" +"- excessive complexity\n" +"- lack of possible optimization\n" +"\n" +"it is recommended to change it now because I will remove this option in the " +"future!" +msgstr "" +"como DefleMask\n" +"\n" +"este modo de linealidad de tono está deprecado por los siguientes motivos:\n" +"- complejidad excesiva\n" +"- no hay ninguna posible optimización\n" +"\n" +"se recomienda cambiarlo ahora porque quitaré esta opción en el futuro." + +#: src/gui/compatFlags.cpp:235 +msgid "Full" +msgstr "Completa" + +#: src/gui/compatFlags.cpp:239 +msgid "like Impulse Tracker" +msgstr "como Impulse Tracker" + +#: src/gui/compatFlags.cpp:246 +msgid "Pitch slide speed multiplier" +msgstr "Multiplicador de velocidad de deslizamiento de tono" + +#: src/gui/compatFlags.cpp:252 +msgid "Loop modality:" +msgstr "Modalidad de bucle;" + +#: src/gui/compatFlags.cpp:254 +msgid "Reset channels" +msgstr "Reiniciar canales" + +#: src/gui/compatFlags.cpp:258 +msgid "" +"select to reset channels on loop. may trigger a voltage click on every loop!" +msgstr "selecciona para reiniciar canales al repetir la canción." + +#: src/gui/compatFlags.cpp:260 +msgid "Soft reset channels" +msgstr "Reiniciar canales suavemente" + +#: src/gui/compatFlags.cpp:264 +msgid "select to turn channels off on loop." +msgstr "selecciona para apagar los canales al repetir." + +#: src/gui/compatFlags.cpp:266 +msgid "Do nothing" +msgstr "Nada" + +#: src/gui/compatFlags.cpp:270 +msgid "select to not reset channels on loop." +msgstr "selecciona para no reiniciar los canales al repetir." + +#: src/gui/compatFlags.cpp:274 +msgid "Cut/delay effect policy:" +msgstr "Política de efectos de corte y retraso" + +#: src/gui/compatFlags.cpp:280 +msgid "only when time is less than speed (like DefleMask/ProTracker)" +msgstr "" +"solo cuando el tiempo es menor que la velocidad (como en DefleMask o " +"ProTracker)" + +#: src/gui/compatFlags.cpp:282 +msgid "Strict (old)" +msgstr "Estricta (antigua)" + +#: src/gui/compatFlags.cpp:286 +msgid "only when time is less than or equal to speed (original buggy behavior)" +msgstr "" +"solo cuando el tiempo es menor o igual a la velocidad (comportamiento " +"original erróneo)" + +#: src/gui/compatFlags.cpp:292 +msgid "no checks" +msgstr "no revisar" + +#: src/gui/compatFlags.cpp:296 +msgid "Simultaneous jump (0B+0D) treatment:" +msgstr "Tratamiento de saltos simultáneos (0B+0D):" + +#: src/gui/compatFlags.cpp:302 +msgid "accept 0B+0D to jump to a specific row of an order" +msgstr "acceptar 0B+0D para saltar a la fila especifica de una órden" + +#: src/gui/compatFlags.cpp:308 +msgid "only accept the first jump effect" +msgstr "solo acceptar el primer efecto de salto" + +#: src/gui/compatFlags.cpp:314 +msgid "only accept 0Dxx" +msgstr "solo acceptar 0Dxx" + +#: src/gui/compatFlags.cpp:320 +msgid "Auto-insert one tick gap between notes" +msgstr "Auto-insertar un agujero de un tick entre notas" + +#: src/gui/compatFlags.cpp:322 +msgid "" +"when enabled, a one-tick note cut will be inserted between non-legato/non-" +"portamento notes.\n" +"this simulates the behavior of some Amiga/SNES music engines.\n" +"\n" +"ineffective on C64." +msgstr "" +"al activar, inserta un corte de nota de un tick entre notas sin legato o " +"portamento.\n" +"esto simula el comportamiento de algunos motores de música para Amiga o " +"SNES.\n" +"\n" +"no es efectivo en C64." + +#: src/gui/compatFlags.cpp:327 +msgid "Don't reset slides after note off" +msgstr "No reiniciar deslizamientos después de apagar la nota" + +#: src/gui/compatFlags.cpp:329 +msgid "when enabled, note off will not reset the channel's slide effect." +msgstr "al activar, apagar la nota no reiniciará el deslizamiento del canal." + +#: src/gui/compatFlags.cpp:331 +msgid "Don't reset portamento after reaching target" +msgstr "No reiniciar portamento después de alcanzar la meta" + +#: src/gui/compatFlags.cpp:333 +msgid "" +"when enabled, the slide effect will not be disabled after it reaches its " +"target." +msgstr "" +"al activar, no se desactivará el efecto de deslizamiento después de que " +"alcance su destino." + +#: src/gui/compatFlags.cpp:335 +msgid "Continuous vibrato" +msgstr "Vibrato continuo" + +#: src/gui/compatFlags.cpp:337 +msgid "when enabled, vibrato phase/position will not be reset on a new note." +msgstr "" +"si se activa, la posición/fase del vibrato no se reiniciará cuando se toca " +"una nota." + +#: src/gui/compatFlags.cpp:339 +msgid "Pitch macro is not linear" +msgstr "El macro de tono no es lineal" + +#: src/gui/compatFlags.cpp:341 +msgid "" +"when enabled, the pitch macro of an instrument is in frequency/period space." +msgstr "" +"si se activa, la macro de tono de un instrumento estará en el espacio de " +"frecuencia/periodo." + +#: src/gui/compatFlags.cpp:343 +msgid "Reset arpeggio effect position on new note" +msgstr "Reiniciar posición del efecto arpegio en cada nota" + +#: src/gui/compatFlags.cpp:345 +msgid "when enabled, arpeggio effect (00xy) position is reset on a new note." +msgstr "" +"si se activa, la posición del efecto de arpegio (00xy) se reinicia en cada " +"nota." + +#: src/gui/compatFlags.cpp:347 +msgid "Volume scaling rounds up" +msgstr "Escala de volumen se redondea hacia arriba" + +#: src/gui/compatFlags.cpp:349 +msgid "" +"when enabled, volume macros round up when applied\n" +"this prevents volume scaling from causing vol=0, which is silent on some " +"chips\n" +"\n" +"ineffective on logarithmic channels" +msgstr "" +"al activar, las macros de volumen se redondean hacia arriba\n" +"esto previene que la escala de volumen cause vol=0, que es silencio en " +"algunos chips\n" +"\n" +"sin efecto en canales con volumen logarítmico" + +#: src/gui/guiConst.cpp:127 +msgid "Generic Sample" +msgstr "Sample genérico" + +#: src/gui/guiConst.cpp:155 +msgid "OPL (drums)" +msgstr "OPL (percusión)" + +#: src/gui/guiConst.cpp:191 +msgid "Forward" +msgstr "Adelante" + +#: src/gui/guiConst.cpp:192 +msgid "Backward" +msgstr "Atrás" + +#: src/gui/guiConst.cpp:193 +msgid "Ping pong" +msgstr "Ping pong" + +#: src/gui/guiConst.cpp:218 +msgid "linear" +msgstr "lineal" + +#: src/gui/guiConst.cpp:219 +msgid "cubic spline" +msgstr "esplina cúbica" + +#: src/gui/guiConst.cpp:220 +msgid "blep synthesis" +msgstr "síntesis blep" + +#: src/gui/guiConst.cpp:221 +msgid "sinc" +msgstr "sinc" + +#: src/gui/guiConst.cpp:222 +msgid "best possible" +msgstr "mejor posible" + +#: src/gui/guiConst.cpp:226 src/gui/sampleEdit.cpp:137 +#: src/gui/sampleEdit.cpp:143 +msgid "Invalid" +msgstr "Inválido" + +#: src/gui/guiConst.cpp:231 +msgid "Time" +msgstr "Tiempo" + +#: src/gui/guiConst.cpp:233 +msgid "System (Primary)" +msgstr "Sistema (primario)" + +#: src/gui/guiConst.cpp:234 +msgid "System (Secondary)" +msgstr "Sistema (secundario)" + +#: src/gui/guiConst.cpp:530 +msgid "---Global" +msgstr "---Global" + +#: src/gui/guiConst.cpp:532 +msgid "Open file" +msgstr "Abrir archivo" + +#: src/gui/guiConst.cpp:533 +msgid "Restore backup" +msgstr "Restaurar copia" + +#: src/gui/guiConst.cpp:534 +msgid "Save file" +msgstr "Guardar archivo" + +#: src/gui/guiConst.cpp:535 +msgid "Save as" +msgstr "Guardar como" + +#: src/gui/guiConst.cpp:537 src/gui/sampleEdit.cpp:982 +msgid "Undo" +msgstr "Deshacer" + +#: src/gui/guiConst.cpp:539 src/gui/guiConst.cpp:541 src/gui/sampleEdit.cpp:989 +msgid "Redo" +msgstr "Rehacer" + +#: src/gui/guiConst.cpp:543 +msgid "Exit" +msgstr "Salir" + +#: src/gui/guiConst.cpp:544 +msgid "Play/Stop (toggle)" +msgstr "Reproducir/Parar (toggle)" + +#: src/gui/guiConst.cpp:547 +msgid "Play (from beginning)" +msgstr "Reproducir (desde el inicio)" + +#: src/gui/guiConst.cpp:548 +msgid "Play (repeat pattern)" +msgstr "Reproducir (repetir patrón)" + +#: src/gui/guiConst.cpp:549 +msgid "Play from cursor" +msgstr "Reproducir desde el cursor" + +#: src/gui/guiConst.cpp:550 +msgid "Step row" +msgstr "Reproducir fila" + +#: src/gui/guiConst.cpp:551 +msgid "Octave up" +msgstr "Subir una octava" + +#: src/gui/guiConst.cpp:552 +msgid "Octave down" +msgstr "Bajar una octava" + +#: src/gui/guiConst.cpp:553 +msgid "Previous instrument" +msgstr "Instrumento anterior" + +#: src/gui/guiConst.cpp:554 +msgid "Next instrument" +msgstr "Siguiente instrumento" + +#: src/gui/guiConst.cpp:555 +msgid "Increase edit step" +msgstr "Aumentar paso de edición" + +#: src/gui/guiConst.cpp:556 +msgid "Decrease edit step" +msgstr "Disminuir paso de edición" + +#: src/gui/guiConst.cpp:557 +msgid "Toggle edit mode" +msgstr "Activar/desactivar modo de edición" + +#: src/gui/guiConst.cpp:559 +msgid "Toggle repeat pattern" +msgstr "Activar/desactivar 'Repetir patrón'" + +#: src/gui/guiConst.cpp:562 +msgid "Toggle full-screen" +msgstr "Activar/desactivar pantalla completa" + +#: src/gui/guiConst.cpp:563 +msgid "Request voice from TX81Z" +msgstr "Pedir una voz a TX81Z" + +#: src/gui/guiConst.cpp:565 +msgid "Clear song data" +msgstr "Limpiar datos de canción" + +#: src/gui/guiConst.cpp:567 src/gui/gui.cpp:5573 src/gui/gui.cpp:5625 +msgid "Command Palette" +msgstr "Paleta de comandos" + +#: src/gui/guiConst.cpp:569 +msgid "Recent files (Palette)" +msgstr "Archivos recientes (paleta)" + +#: src/gui/guiConst.cpp:570 +msgid "Instruments (Palette)" +msgstr "Instrumentos (paleta)" + +#: src/gui/guiConst.cpp:571 +msgid "Samples (Palette)" +msgstr "Samples (paleta)" + +#: src/gui/guiConst.cpp:572 +msgid "Change instrument (Palette)" +msgstr "Cambiar instrumento (paleta)" + +#: src/gui/guiConst.cpp:573 +msgid "Add chip (Palette)" +msgstr "Añadir chip (paleta)" + +#: src/gui/guiConst.cpp:578 +msgid "Instrument List" +msgstr "Lista de instrumentos" + +#: src/gui/guiConst.cpp:579 src/gui/insEdit.cpp:5203 +msgid "Instrument Editor" +msgstr "Editor de instrumentos" + +#: src/gui/guiConst.cpp:580 +msgid "Song Information" +msgstr "Información de la canción" + +#: src/gui/guiConst.cpp:583 +msgid "Wavetable List" +msgstr "Lista de ondas" + +#: src/gui/guiConst.cpp:584 src/gui/waveEdit.cpp:409 +msgid "Wavetable Editor" +msgstr "Editor de ondas" + +#: src/gui/guiConst.cpp:585 +msgid "Sample List" +msgstr "Lista de samples" + +#: src/gui/guiConst.cpp:594 +msgid "Debug Menu" +msgstr "Menu de depuración" + +#: src/gui/guiConst.cpp:595 +msgid "Oscilloscope (master)" +msgstr "Osciloscopio (maestro)" + +#: src/gui/guiConst.cpp:603 src/gui/sysManager.cpp:41 +msgid "Chip Manager" +msgstr "Gestor de chips" + +#: src/gui/guiConst.cpp:614 src/gui/csPlayer.cpp:112 +msgid "Command Stream Player" +msgstr "Reproductor de Command Stream" + +#: src/gui/guiConst.cpp:615 +msgid "User Presets" +msgstr "Sistemas del Usuario" + +#: src/gui/guiConst.cpp:617 +msgid "Collapse/expand current window" +msgstr "Colapsar/expandir ventana actual" + +#: src/gui/guiConst.cpp:618 +msgid "Close current window" +msgstr "Cerrar ventana actual" + +#: src/gui/guiConst.cpp:621 +msgid "---Pattern" +msgstr "---Patrón" + +#: src/gui/guiConst.cpp:622 +msgid "Transpose (+1)" +msgstr "Subir medio tono" + +#: src/gui/guiConst.cpp:623 +msgid "Transpose (-1)" +msgstr "Bajar medio tono" + +#: src/gui/guiConst.cpp:624 +msgid "Transpose (+1 octave)" +msgstr "Subir una octava" + +#: src/gui/guiConst.cpp:625 +msgid "Transpose (-1 octave)" +msgstr "Bajar una octava" + +#: src/gui/guiConst.cpp:626 +msgid "Increase values (+1)" +msgstr "Aumentar valor (1)" + +#: src/gui/guiConst.cpp:627 +msgid "Increase values (-1)" +msgstr "Disminuir valor (1)" + +#: src/gui/guiConst.cpp:628 +msgid "Increase values (+16)" +msgstr "Aumentar valor (16)" + +#: src/gui/guiConst.cpp:629 +msgid "Increase values (-16)" +msgstr "Disminuir valor (16)" + +#: src/gui/guiConst.cpp:630 +msgid "Select all" +msgstr "Seleccionar todo" + +#: src/gui/guiConst.cpp:631 +msgid "Cut" +msgstr "Cortar" + +#: src/gui/guiConst.cpp:632 +msgid "Copy" +msgstr "Copiar" + +#: src/gui/guiConst.cpp:633 +msgid "Paste" +msgstr "Pegar" + +#: src/gui/guiConst.cpp:634 +msgid "Paste Mix (foreground)" +msgstr "Pegar Mezcla" + +#: src/gui/guiConst.cpp:635 +msgid "Paste Mix (background)" +msgstr "Pegar Mezcla (fondo)" + +#: src/gui/guiConst.cpp:636 +msgid "Paste Flood" +msgstr "Pegar Inundación" + +#: src/gui/guiConst.cpp:637 +msgid "Paste Overflow" +msgstr "Pegar con Desborde" + +#: src/gui/guiConst.cpp:638 +msgid "Move cursor up" +msgstr "Mover cursor hacia arriba" + +#: src/gui/guiConst.cpp:639 +msgid "Move cursor down" +msgstr "Mover cursor hacia abajo" + +#: src/gui/guiConst.cpp:640 +msgid "Move cursor left" +msgstr "Mover cursor hacia la izquierda" + +#: src/gui/guiConst.cpp:641 +msgid "Move cursor right" +msgstr "Mover cursor hacia la derecha" + +#: src/gui/guiConst.cpp:642 +msgid "Move cursor up by one (override Edit Step)" +msgstr "Mover cursor hacia arriba (una fila)" + +#: src/gui/guiConst.cpp:643 +msgid "Move cursor down by one (override Edit Step)" +msgstr "Mover cursor hacia abajo (una fila)" + +#: src/gui/guiConst.cpp:644 +msgid "Move cursor to previous channel" +msgstr "Mover cursor al canal anterior" + +#: src/gui/guiConst.cpp:645 +msgid "Move cursor to next channel" +msgstr "Mover cursor al siguiente canal" + +#: src/gui/guiConst.cpp:646 +msgid "Move cursor to next channel (overflow)" +msgstr "Mover cursor al siguiente canal (desborde)" + +#: src/gui/guiConst.cpp:647 +msgid "Move cursor to previous channel (overflow)" +msgstr "Mover cursor al canal anterior (desborde)" + +#: src/gui/guiConst.cpp:648 +msgid "Move cursor to beginning of pattern" +msgstr "Mover cursor al inicio del patrón" + +#: src/gui/guiConst.cpp:649 +msgid "Move cursor to end of pattern" +msgstr "Mover cursor al fin del patrón" + +#: src/gui/guiConst.cpp:650 +msgid "Move cursor up (coarse)" +msgstr "Mover cursor hacia arriba (paso grueso)" + +#: src/gui/guiConst.cpp:651 +msgid "Move cursor down (coarse)" +msgstr "Mover cursor hacia abajo (paso grueso)" + +#: src/gui/guiConst.cpp:652 +msgid "Expand selection upwards" +msgstr "Expandir selección hacia arriba" + +#: src/gui/guiConst.cpp:653 +msgid "Expand selection downwards" +msgstr "Expandir selección hacia abajo" + +#: src/gui/guiConst.cpp:654 +msgid "Expand selection to the left" +msgstr "Expandir selección hacia la izquierda" + +#: src/gui/guiConst.cpp:655 +msgid "Expand selection to the right" +msgstr "Expandir selección hacia la derecha" + +#: src/gui/guiConst.cpp:656 +msgid "Expand selection upwards by one (override Edit Step)" +msgstr "Expandir selección hacia arriba (una fila)" + +#: src/gui/guiConst.cpp:657 +msgid "Expand selection downwards by one (override Edit Step)" +msgstr "Expandir selección hacia abajo (una fila)" + +#: src/gui/guiConst.cpp:658 +msgid "Expand selection to beginning of pattern" +msgstr "Expandir selección al inicio del patrón" + +#: src/gui/guiConst.cpp:659 +msgid "Expand selection to end of pattern" +msgstr "Expandir selección hasta el final del patrón" + +#: src/gui/guiConst.cpp:660 +msgid "Expand selection upwards (coarse)" +msgstr "Expandir selección hacia arriba (paso grueso)" + +#: src/gui/guiConst.cpp:661 +msgid "Expand selection downwards (coarse)" +msgstr "Expandir selección hacia abajo (paso grueso)" + +#: src/gui/guiConst.cpp:662 +msgid "Move selection up" +msgstr "Mover selección arriba" + +#: src/gui/guiConst.cpp:663 +msgid "Move selection down" +msgstr "Mover selección abajo" + +#: src/gui/guiConst.cpp:664 +msgid "Move selection to previous channel" +msgstr "Mover selección al canal anterior" + +#: src/gui/guiConst.cpp:665 +msgid "Move selection to next channel" +msgstr "Mover selección al canal siguiente" + +#: src/gui/guiConst.cpp:667 +msgid "Pull delete" +msgstr "Borrar y halar" + +#: src/gui/guiConst.cpp:668 +msgid "Insert" +msgstr "Insertar" + +#: src/gui/guiConst.cpp:669 +msgid "Mute channel at cursor" +msgstr "Silenciar el canal en el cursor" + +#: src/gui/guiConst.cpp:670 +msgid "Solo channel at cursor" +msgstr "Reproducir en solo el canal en el cursor" + +#: src/gui/guiConst.cpp:671 +msgid "Unmute all channels" +msgstr "Reactivar todos los canales" + +#: src/gui/guiConst.cpp:672 +msgid "Go to next order" +msgstr "Ir al orden siguiente" + +#: src/gui/guiConst.cpp:673 +msgid "Go to previous order" +msgstr "Ir al orden anterior" + +#: src/gui/guiConst.cpp:674 +msgid "Collapse channel at cursor" +msgstr "Colapsar el canal en el cursor" + +#: src/gui/guiConst.cpp:675 +msgid "Increase effect columns" +msgstr "Incrementar columnas de efecto" + +#: src/gui/guiConst.cpp:676 +msgid "Decrease effect columns" +msgstr "Disminuir columnas de efecto" + +#: src/gui/guiConst.cpp:677 +msgid "Interpolate" +msgstr "Interpolar" + +#: src/gui/guiConst.cpp:678 src/gui/insEdit.cpp:530 +msgid "Fade" +msgstr "Desvanecer" + +#: src/gui/guiConst.cpp:679 +msgid "Invert values" +msgstr "Invertir valores" + +#: src/gui/guiConst.cpp:680 +msgid "Flip selection" +msgstr "Voltear selección" + +#: src/gui/guiConst.cpp:681 +msgid "Collapse rows" +msgstr "Colapsar filas" + +#: src/gui/guiConst.cpp:682 +msgid "Expand rows" +msgstr "Expandir filas" + +#: src/gui/guiConst.cpp:683 +msgid "Collapse pattern" +msgstr "Colapsar patrón" + +#: src/gui/guiConst.cpp:684 +msgid "Expand pattern" +msgstr "Expandir patrón" + +#: src/gui/guiConst.cpp:685 +msgid "Collapse song" +msgstr "Colapsar canción" + +#: src/gui/guiConst.cpp:686 +msgid "Expand song" +msgstr "Expandir canción" + +#: src/gui/guiConst.cpp:687 +msgid "Set note input latch" +msgstr "Establecer bloqueo de entrada" + +#: src/gui/guiConst.cpp:688 +msgid "Change mobile scroll mode" +msgstr "Cambiar modo de deslizamiento móvil" + +#: src/gui/guiConst.cpp:689 +msgid "Clear note input latch" +msgstr "Borrar bloqueo de entrada" + +#: src/gui/guiConst.cpp:692 +msgid "---Instrument list" +msgstr "---Lista de instrumentos" + +#: src/gui/guiConst.cpp:693 +msgid "Add instrument" +msgstr "Agregar instrumento" + +#: src/gui/guiConst.cpp:694 +msgid "Duplicate instrument" +msgstr "Duplicar instrumento" + +#: src/gui/guiConst.cpp:695 +msgid "Open instrument" +msgstr "Abrir instrumento" + +#: src/gui/guiConst.cpp:696 +msgid "Open instrument (replace current)" +msgstr "Abrir instrumento (reemplazar actual)" + +#: src/gui/guiConst.cpp:697 +msgid "Save instrument" +msgstr "Guardar instrumento" + +#: src/gui/guiConst.cpp:698 +msgid "Save instrument (.dmp)" +msgstr "Guardar instrumento (.dmp)" + +#: src/gui/guiConst.cpp:699 +msgid "Move instrument up in list" +msgstr "Mover instrumento hacia arriba en la lista" + +#: src/gui/guiConst.cpp:700 +msgid "Move instrument down in list" +msgstr "Mover instrumento hacia abajo en la lista" + +#: src/gui/guiConst.cpp:701 +msgid "Delete instrument" +msgstr "Borrar instrumento" + +#: src/gui/guiConst.cpp:702 +msgid "Edit instrument" +msgstr "Editar instrumento" + +#: src/gui/guiConst.cpp:703 +msgid "Instrument cursor up" +msgstr "Mover cursor de instrumento arriba" + +#: src/gui/guiConst.cpp:704 +msgid "Instrument cursor down" +msgstr "Mover cursor de instrumento abajo" + +#: src/gui/guiConst.cpp:705 +msgid "Instruments: toggle folders/standard view" +msgstr "Instrumentos: cambiar entre vista estándar y de carpetas" + +#: src/gui/guiConst.cpp:708 +msgid "---Wavetable list" +msgstr "---Lista de ondas" + +#: src/gui/guiConst.cpp:709 +msgid "Add wavetable" +msgstr "Agregar onda" + +#: src/gui/guiConst.cpp:710 +msgid "Duplicate wavetable" +msgstr "Duplicar onda" + +#: src/gui/guiConst.cpp:711 +msgid "Open wavetable" +msgstr "Abrir onda" + +#: src/gui/guiConst.cpp:712 +msgid "Open wavetable (replace current)" +msgstr "Abrir onda (reemplazar contenido)" + +#: src/gui/guiConst.cpp:713 +msgid "Save wavetable" +msgstr "Guardar onda" + +#: src/gui/guiConst.cpp:714 +msgid "Save wavetable (.dmw)" +msgstr "Guardar onda (.dmw)" + +#: src/gui/guiConst.cpp:715 +msgid "Save wavetable (raw)" +msgstr "Guardar onda (en bruto)" + +#: src/gui/guiConst.cpp:716 +msgid "Move wavetable up in list" +msgstr "Mover onda hacia arriba en la lista" + +#: src/gui/guiConst.cpp:717 +msgid "Move wavetable down in list" +msgstr "Mover onda hacia abajo en la lista" + +#: src/gui/guiConst.cpp:718 +msgid "Delete wavetable" +msgstr "Borrar onda" + +#: src/gui/guiConst.cpp:719 +msgid "Edit wavetable" +msgstr "Editar onda" + +#: src/gui/guiConst.cpp:720 +msgid "Wavetable cursor up" +msgstr "Mover cursor de onda arriba" + +#: src/gui/guiConst.cpp:721 +msgid "Wavetable cursor down" +msgstr "Mover cursor de onda abajo" + +#: src/gui/guiConst.cpp:722 +msgid "Wavetables: toggle folders/standard view" +msgstr "Ondas: cambiar entre vista estándar y de carpetas" + +#: src/gui/guiConst.cpp:725 +msgid "---Sample list" +msgstr "---Lista de samples" + +#: src/gui/guiConst.cpp:726 +msgid "Add sample" +msgstr "Agregar sample" + +#: src/gui/guiConst.cpp:727 +msgid "Duplicate sample" +msgstr "Duplicar sample" + +#: src/gui/guiConst.cpp:728 +msgid "Open sample" +msgstr "Abrir sample" + +#: src/gui/guiConst.cpp:729 +msgid "Open sample (replace current)" +msgstr "Abrir sample (reemplazar actual)" + +#: src/gui/guiConst.cpp:730 +msgid "Import raw sample data" +msgstr "Importar datos de sample en bruto" + +#: src/gui/guiConst.cpp:731 +msgid "Import raw sample data (replace current)" +msgstr "Importar datos de sample en bruto (reemplazar actual)" + +#: src/gui/guiConst.cpp:732 +msgid "Save sample" +msgstr "Guardar sample" + +#: src/gui/guiConst.cpp:733 +msgid "Save sample (raw)" +msgstr "Guardar sample (en bruto)" + +#: src/gui/guiConst.cpp:734 +msgid "Move sample up in list" +msgstr "Mover sample hacia arriba en la lista" + +#: src/gui/guiConst.cpp:735 +msgid "Move sample down in list" +msgstr "Mover sample hacia abajo en la lista" + +#: src/gui/guiConst.cpp:736 +msgid "Delete sample" +msgstr "Borrar sample" + +#: src/gui/guiConst.cpp:737 +msgid "Edit sample" +msgstr "Editar sample" + +#: src/gui/guiConst.cpp:738 +msgid "Sample cursor up" +msgstr "Mover cursor de sample arriba" + +#: src/gui/guiConst.cpp:739 +msgid "Sample cursor down" +msgstr "Mover cursor de sample abajo" + +#: src/gui/guiConst.cpp:741 src/gui/sampleEdit.cpp:1339 +msgid "Stop sample preview" +msgstr "Parar vista previa de sample" + +#: src/gui/guiConst.cpp:742 +msgid "Samples: Toggle folders/standard view" +msgstr "Samples: cambiar entre vista estándar y de carpetas" + +#: src/gui/guiConst.cpp:743 +msgid "Samples: Make me a drum kit" +msgstr "Samples: Hacer una batería" + +#: src/gui/guiConst.cpp:746 +msgid "---Sample editor" +msgstr "---Editor de samples" + +#: src/gui/guiConst.cpp:747 +msgid "Sample editor mode: Select" +msgstr "Modo de edición de samples: Seleccionar" + +#: src/gui/guiConst.cpp:748 +msgid "Sample editor mode: Draw" +msgstr "Modo de edición de samples: Dibujar" + +#: src/gui/guiConst.cpp:749 +msgid "Sample editor: Cut" +msgstr "Editor de samples: Cortar" + +#: src/gui/guiConst.cpp:750 +msgid "Sample editor: Copy" +msgstr "Editor de samples: Copiar" + +#: src/gui/guiConst.cpp:751 +msgid "Sample editor: Paste" +msgstr "Editor de samples: Pegar" + +#: src/gui/guiConst.cpp:752 +msgid "Sample editor: Paste replace" +msgstr "Editor de samples: Pegar (reemplazar)" + +#: src/gui/guiConst.cpp:753 +msgid "Sample editor: Paste mix" +msgstr "Editor de samples: Pegar mezcla" + +#: src/gui/guiConst.cpp:754 +msgid "Sample editor: Select all" +msgstr "Editor de samples: Seleccionar todo" + +#: src/gui/guiConst.cpp:755 +msgid "Sample editor: Resize" +msgstr "Editor de samples: Cambiar tamaño" + +#: src/gui/guiConst.cpp:756 +msgid "Sample editor: Resample" +msgstr "Editor de samples: Re-muestrear" + +#: src/gui/guiConst.cpp:757 +msgid "Sample editor: Amplify" +msgstr "Editor de samples: Amplificar" + +#: src/gui/guiConst.cpp:758 +msgid "Sample editor: Normalize" +msgstr "Editor de samples: Normalizar" + +#: src/gui/guiConst.cpp:759 +msgid "Sample editor: Fade in" +msgstr "Editor de samples: Fundir adentro" + +#: src/gui/guiConst.cpp:760 +msgid "Sample editor: Fade out" +msgstr "Editor de samples: Fundir afuera" + +#: src/gui/guiConst.cpp:761 +msgid "Sample editor: Apply silence" +msgstr "Editor de samples: Aplicar silencio" + +#: src/gui/guiConst.cpp:762 +msgid "Sample editor: Insert silence" +msgstr "Editor de samples: Insertar silencio" + +#: src/gui/guiConst.cpp:763 +msgid "Sample editor: Delete" +msgstr "Editor de samples: Borrar" + +#: src/gui/guiConst.cpp:764 +msgid "Sample editor: Trim" +msgstr "Editor de samples: Recortar" + +#: src/gui/guiConst.cpp:765 +msgid "Sample editor: Reverse" +msgstr "Editor de samples: Reversa" + +#: src/gui/guiConst.cpp:766 +msgid "Sample editor: Invert" +msgstr "Editor de samples: Inverter" + +#: src/gui/guiConst.cpp:767 +msgid "Sample editor: Signed/unsigned exchange" +msgstr "Editor de samples: Intercambio entre con signo/sin signo" + +#: src/gui/guiConst.cpp:768 +msgid "Sample editor: Apply filter" +msgstr "Editor de samples: Aplicar filtro" + +#: src/gui/guiConst.cpp:769 +msgid "Sample editor: Crossfade loop points" +msgstr "Editor de samples: Desvanecer el bucle" + +#: src/gui/guiConst.cpp:770 +msgid "Sample editor: Preview sample" +msgstr "Editor de samples: Previsualizar sample" + +#: src/gui/guiConst.cpp:771 +msgid "Sample editor: Stop sample preview" +msgstr "Editor de samples: Parar vista previa" + +#: src/gui/guiConst.cpp:772 +msgid "Sample editor: Zoom in" +msgstr "Editor de samples: Aumentar zoom" + +#: src/gui/guiConst.cpp:773 +msgid "Sample editor: Zoom out" +msgstr "Editor de samples: Disminuir zoom" + +#: src/gui/guiConst.cpp:774 +msgid "Sample editor: Toggle auto-zoom" +msgstr "Editor de samples: Activar auto-zoom" + +#: src/gui/guiConst.cpp:775 +msgid "Sample editor: Create instrument from sample" +msgstr "Editor de samples: Crear instrumento usando el sample" + +#: src/gui/guiConst.cpp:776 +msgid "Sample editor: Set loop to selection" +msgstr "Editor de samples: Convertir la selección en bucle" + +#: src/gui/guiConst.cpp:777 +msgid "Sample editor: Create wavetable from selection" +msgstr "Editor de samples: Crear onda desde la selección" + +#: src/gui/guiConst.cpp:780 +msgid "---Orders" +msgstr "---Órdenes" + +#: src/gui/guiConst.cpp:781 +msgid "Previous order" +msgstr "Orden anterior" + +#: src/gui/guiConst.cpp:782 +msgid "Next order" +msgstr "Orden siguiente" + +#: src/gui/guiConst.cpp:783 +msgid "Order cursor left" +msgstr "Mover cursor de orden a la izquierda" + +#: src/gui/guiConst.cpp:784 +msgid "Order cursor right" +msgstr "Mover cursor de orden a la derecha" + +#: src/gui/guiConst.cpp:785 +msgid "Increase order value" +msgstr "Aumentar valor de orden" + +#: src/gui/guiConst.cpp:786 +msgid "Decrease order value" +msgstr "Disminuir valor de orden " + +#: src/gui/guiConst.cpp:787 +msgid "Switch order edit mode" +msgstr "Cambiar modo de edición de órdenes" + +#: src/gui/guiConst.cpp:788 +msgid "Order: toggle alter entire row" +msgstr "Orden: activar alteración de fila entera" + +#: src/gui/guiConst.cpp:789 +msgid "Add order" +msgstr "Agregar orden" + +#: src/gui/guiConst.cpp:790 +msgid "Duplicate order" +msgstr "Duplicar orden" + +#: src/gui/guiConst.cpp:791 +msgid "Deep clone order" +msgstr "Clonar orden profundamente" + +#: src/gui/guiConst.cpp:792 +msgid "Copy current order to end of song" +msgstr "Copiar orden actual al final" + +#: src/gui/guiConst.cpp:793 +msgid "Deep clone current order to end of song" +msgstr "Clonar orden actual profundamente al final" + +#: src/gui/guiConst.cpp:797 +msgid "Replay order" +msgstr "Reproducir orden" + +#: src/gui/guiConst.cpp:1392 +msgid "All chips" +msgstr "Todos los chips" + +#: src/gui/guiConst.cpp:1396 src/gui/insEdit.cpp:6954 src/gui/insEdit.cpp:7204 +#: src/gui/insEdit.cpp:7458 src/gui/insEdit.cpp:7480 +msgid "Special" +msgstr "Especial" + +#: src/gui/piano.cpp:103 +msgid "Options" +msgstr "Opciones" + +#: src/gui/piano.cpp:106 +msgid "Key layout:" +msgstr "Diseño de teclas:" + +#: src/gui/piano.cpp:111 +msgid "Standard" +msgstr "Estándar" + +#: src/gui/piano.cpp:114 +msgid "Continuous" +msgstr "Continuo" + +#: src/gui/piano.cpp:118 +msgid "Value input pad:" +msgstr "Entrada de valores:" + +#: src/gui/piano.cpp:120 +msgid "Disabled" +msgstr "Desactivada" + +#: src/gui/piano.cpp:123 +msgid "Replace piano" +msgstr "Reemplazar el piano" + +#: src/gui/piano.cpp:126 +msgid "Split (automatic)" +msgstr "Separada (automático)" + +#: src/gui/piano.cpp:129 +msgid "Split (always visible)" +msgstr "Separada (siempre visible)" + +#: src/gui/piano.cpp:133 +msgid "Share play/edit offset/range" +msgstr "Compartir octava/rango de reproducción/edición" + +#: src/gui/piano.cpp:134 +msgid "Read-only (can't input notes)" +msgstr "Sólo lectura (sin entrada de notas)" + +#: src/gui/waveEdit.cpp:30 src/gui/waveEdit.cpp:192 src/gui/insEdit.cpp:177 +#: src/gui/insEdit.cpp:188 src/gui/insEdit.cpp:199 +msgid "Sine" +msgstr "Seno" + +#: src/gui/waveEdit.cpp:32 src/gui/waveEdit.cpp:202 src/gui/insEdit.cpp:325 +#: src/gui/insEdit.cpp:654 +msgid "Saw" +msgstr "Sierra" + +#: src/gui/waveEdit.cpp:39 +msgid "Cosine" +msgstr "Coseno" + +#: src/gui/waveEdit.cpp:193 +msgid "Rect. Sine" +msgstr "Seno rectangular" + +#: src/gui/waveEdit.cpp:194 +msgid "Abs. Sine" +msgstr "Seno absoluto" + +#: src/gui/waveEdit.cpp:195 +msgid "Quart. Sine" +msgstr "Seno cuarta parte" + +#: src/gui/waveEdit.cpp:196 +msgid "Squish. Sine" +msgstr "Seno aplastado" + +#: src/gui/waveEdit.cpp:197 +msgid "Abs. Squish. Sine" +msgstr "Seno absoluto aplastado" + +#: src/gui/waveEdit.cpp:200 +msgid "rectSquare" +msgstr "Cuadrado rectangular" + +#: src/gui/waveEdit.cpp:203 +msgid "Rect. Saw" +msgstr "Sierra rectangular" + +#: src/gui/waveEdit.cpp:204 +msgid "Abs. Saw" +msgstr "Sierra absoluta" + +#: src/gui/waveEdit.cpp:206 +msgid "Cubed Saw" +msgstr "Sierra al cubo" + +#: src/gui/waveEdit.cpp:207 +msgid "Rect. Cubed Saw" +msgstr "Sierra rectangular al cubo" + +#: src/gui/waveEdit.cpp:208 +msgid "Abs. Cubed Saw" +msgstr "Sierra absoluta al cubo" + +#: src/gui/waveEdit.cpp:210 +msgid "Cubed Sine" +msgstr "Seno al cubo" + +#: src/gui/waveEdit.cpp:211 +msgid "Rect. Cubed Sine" +msgstr "Seno rectangular al cubo" + +#: src/gui/waveEdit.cpp:212 +msgid "Abs. Cubed Sine" +msgstr "Seno absoluto al cubo" + +#: src/gui/waveEdit.cpp:213 +msgid "Quart. Cubed Sine" +msgstr "Seno cuarta parte al cubo" + +#: src/gui/waveEdit.cpp:214 +msgid "Squish. Cubed Sine" +msgstr "Seno aplastado al cubo" + +#: src/gui/waveEdit.cpp:215 +msgid "Squish. Abs. Cub. Sine" +msgstr "Seno absoluto aplastado al cubo" + +#: src/gui/waveEdit.cpp:218 +msgid "Rect. Triangle" +msgstr "Triángulo rectangular" + +#: src/gui/waveEdit.cpp:219 +msgid "Abs. Triangle" +msgstr "Triángulo absoluto" + +#: src/gui/waveEdit.cpp:220 +msgid "Quart. Triangle" +msgstr "Triángulo cuarta parte" + +#: src/gui/waveEdit.cpp:221 +msgid "Squish. Triangle" +msgstr "Triángulo aplastado" + +#: src/gui/waveEdit.cpp:222 +msgid "Abs. Squish. Triangle" +msgstr "Triángulo absoluto aplastado" + +#: src/gui/waveEdit.cpp:224 +msgid "Cubed Triangle" +msgstr "Triángulo al cubo" + +#: src/gui/waveEdit.cpp:225 +msgid "Rect. Cubed Triangle" +msgstr "Triángulo rectangular al cubo" + +#: src/gui/waveEdit.cpp:226 +msgid "Abs. Cubed Triangle" +msgstr "Triángulo absoluto al cubo" + +#: src/gui/waveEdit.cpp:227 +msgid "Quart. Cubed Triangle" +msgstr "Triángulo cuarta parte al cubo" + +#: src/gui/waveEdit.cpp:228 +msgid "Squish. Cubed Triangle" +msgstr "Triángulo aplastado al cubo" + +#: src/gui/waveEdit.cpp:229 +msgid "Squish. Abs. Cub. Triangle" +msgstr "Tri abs apl al cubo" + +#: src/gui/waveEdit.cpp:412 src/gui/waveEdit.cpp:413 +msgid "no wavetable selected" +msgstr "no se ha seleccionado una onda" + +#: src/gui/waveEdit.cpp:424 src/gui/sampleEdit.cpp:111 src/gui/insEdit.cpp:5223 +msgid "select one..." +msgstr "elige uno..." + +#: src/gui/waveEdit.cpp:432 src/gui/waveEdit.cpp:439 src/gui/sampleEdit.cpp:119 +#: src/gui/sampleEdit.cpp:126 src/gui/insEdit.cpp:5236 src/gui/insEdit.cpp:5243 +msgid "or" +msgstr "o" + +#: src/gui/waveEdit.cpp:441 src/gui/sampleEdit.cpp:128 src/gui/insEdit.cpp:5245 +msgid "Create New" +msgstr "Crear Nuevo" + +#: src/gui/waveEdit.cpp:487 +msgid "Steps" +msgstr "Pasos" + +#: src/gui/waveEdit.cpp:491 +msgid "Lines" +msgstr "Líneas" + +#: src/gui/waveEdit.cpp:496 src/gui/insEdit.cpp:2687 +msgid "Width" +msgstr "Longitud" + +#: src/gui/waveEdit.cpp:498 +msgid "" +"use a width of:\n" +"- any on Amiga/N163\n" +"- 32 on Game Boy, PC Engine, SCC, Konami Bubble System, Namco WSG, Virtual " +"Boy and WonderSwan\n" +"- 64 on FDS\n" +"- 128 on X1-010\n" +"any other widths will be scaled during playback." +msgstr "" +"usa una longitud de:\n" +"- cualquiera en Amiga/N163\n" +"- 32 en Game Boy, PC Engine, SCC, Konami Bubble System, Namco WSG, Virtual " +"Boy y WonderSwan\n" +"- 64 en FDS\n" +"- 128 en X1-010\n" +"cualquier otra longitud será escalada durante la reproducción." + +#: src/gui/waveEdit.cpp:510 +msgid "Height" +msgstr "Altura" + +#: src/gui/waveEdit.cpp:512 +msgid "" +"use a height of:\n" +"- 16 for Game Boy, WonderSwan, Namco WSG, Konami Bubble System, X1-010 " +"Envelope shape and N163\n" +"- 32 for PC Engine\n" +"- 64 for FDS and Virtual Boy\n" +"- 256 for X1-010 and SCC\n" +"any other heights will be scaled during playback." +msgstr "" +"usa una altura de:\n" +"- 16 para Game Boy, WonderSwan, Namco WSG, Konami Bubble System, X1-010 " +"Envelope forma y N163\n" +"- 32 para PC Engine\n" +"- 64 para FDS y Virtual Boy\n" +"- 256 para X1-010 y SCC\n" +"cualquier otra altura será escalada durante la reproducción." + +#: src/gui/waveEdit.cpp:578 +msgid "Shapes" +msgstr "Formas" + +#: src/gui/waveEdit.cpp:597 src/gui/insEdit.cpp:5879 src/gui/insEdit.cpp:6922 +#: src/gui/insEdit.cpp:6948 src/gui/insEdit.cpp:7008 src/gui/insEdit.cpp:7048 +#: src/gui/insEdit.cpp:7150 src/gui/insEdit.cpp:7436 src/gui/insEdit.cpp:7472 +msgid "Duty" +msgstr "Ancho de pulso" + +#: src/gui/waveEdit.cpp:607 +msgid "Exponent" +msgstr "Exponente" + +#: src/gui/waveEdit.cpp:617 +msgid "XOR Point" +msgstr "Punto XOR" + +#: src/gui/waveEdit.cpp:627 +msgid "Amplitude/Phase" +msgstr "Amplitud/Fase" + +#: src/gui/waveEdit.cpp:679 src/gui/waveEdit.cpp:723 src/gui/waveEdit.cpp:728 +msgid "Op" +msgstr "Op" + +#: src/gui/waveEdit.cpp:683 +msgid "Mult" +msgstr "Mult" + +#: src/gui/waveEdit.cpp:685 +msgid "FB" +msgstr "RA" + +#: src/gui/waveEdit.cpp:749 src/gui/waveEdit.cpp:750 +msgid "Connection Diagram" +msgstr "Diagrama de Conexión" + +#: src/gui/waveEdit.cpp:765 +msgid "Out" +msgstr "Salida" + +#: src/gui/waveEdit.cpp:872 +msgid "WaveTools" +msgstr "Herramientas" + +#: src/gui/waveEdit.cpp:890 +msgid "Scale X" +msgstr "Escalar X" + +#: src/gui/waveEdit.cpp:896 +msgid "wavetable longer than 256 samples!" +msgstr "¡la onda sería más larga que 256!" + +#: src/gui/waveEdit.cpp:960 +msgid "Scale Y" +msgstr "Escalar Y" + +#: src/gui/waveEdit.cpp:978 +msgid "Offset X" +msgstr "Deslizar X" + +#: src/gui/waveEdit.cpp:1000 +msgid "Offset Y" +msgstr "Deslizar Y" + +#: src/gui/waveEdit.cpp:1017 +msgid "Smooth" +msgstr "Suavizar" + +#: src/gui/waveEdit.cpp:1045 src/gui/sampleEdit.cpp:996 +msgid "Amplify" +msgstr "Amplificar" + +#: src/gui/waveEdit.cpp:1063 src/gui/sampleEdit.cpp:1046 +msgid "Normalize" +msgstr "Normalizar" + +#: src/gui/waveEdit.cpp:1105 src/gui/sampleEdit.cpp:1121 +msgid "Reverse" +msgstr "Reversa" + +#: src/gui/waveEdit.cpp:1117 +msgid "Half" +msgstr "Mitad" + +#: src/gui/waveEdit.cpp:1127 +msgid "Double" +msgstr "Doble" + +#: src/gui/waveEdit.cpp:1137 +msgid "Convert Signed/Unsigned" +msgstr "Convertir Signo" + +#: src/gui/waveEdit.cpp:1167 +msgid "Dec" +msgstr "Dec" + +#: src/gui/waveEdit.cpp:1171 src/gui/csPlayer.cpp:247 +msgid "Hex" +msgstr "Hex" + +#: src/gui/waveEdit.cpp:1179 +msgid "Signed/Unsigned" +msgstr "Con/Sin Signo" + +#: src/gui/sampleEdit.cpp:65 +#, c-format +msgid "%s: maximum sample rate is %d" +msgstr "%s: velocidad de muestreo máxima es %d" + +#: src/gui/sampleEdit.cpp:72 +#, c-format +msgid "%s: minimum sample rate is %d" +msgstr "%s: velocidad de muestreo mínima es %d" + +#: src/gui/sampleEdit.cpp:79 +#, c-format +msgid "%s: sample rate must be %d" +msgstr "%s: velocidad de muestreo debe ser %d" + +#: src/gui/sampleEdit.cpp:99 src/gui/sampleEdit.cpp:100 +msgid "no sample selected" +msgstr "no se ha seleccionado un sample" + +#: src/gui/sampleEdit.cpp:229 +#, c-format +msgid "SNES: loop start must be a multiple of 16 (try with %d)" +msgstr "SNES: el bucle debe empezar en un múltiplo de 16 (prueba con %d)" + +#: src/gui/sampleEdit.cpp:235 +#, c-format +msgid "SNES: loop end must be a multiple of 16 (try with %d)" +msgstr "SNES: el bucle debe terminar en un múltiplo de 16 (prueba con %d)" + +#: src/gui/sampleEdit.cpp:240 +msgid "SNES: sample length will be padded to multiple of 16" +msgstr "SNES: la longitud del sample se alineará a un múltiplo de 16" + +#: src/gui/sampleEdit.cpp:249 +msgid "QSound: loop cannot be longer than 32767 samples" +msgstr "QSound: el bucle no puede ser más largo que 32767 samples" + +#: src/gui/sampleEdit.cpp:259 +msgid "NES: loop point ignored on DPCM (may only loop entire sample)" +msgstr "" +"NES: punto de bucle ignorado en DPCM (solo puedes repetir el sample entero)" + +#: src/gui/sampleEdit.cpp:263 +msgid "NES: maximum DPCM sample length is 32648" +msgstr "NES: la longitud máxima de samples DPCM es 32648" + +#: src/gui/sampleEdit.cpp:268 +msgid "X1-010: samples can't loop" +msgstr "X1-010: no hay bucle de samples" + +#: src/gui/sampleEdit.cpp:271 +msgid "X1-010: maximum sample length is 131072" +msgstr "X1-010: longitud máxima del sample es 131072" + +#: src/gui/sampleEdit.cpp:276 +msgid "GA20: samples can't loop" +msgstr "GA20: no hay bucle de samples" + +#: src/gui/sampleEdit.cpp:287 +msgid "YM2608: loop point ignored on ADPCM (may only loop entire sample)" +msgstr "" +"YM2608: punto de bucle ignorado en ADPCM (solo se puede repetir el sample " +"entero)" + +#: src/gui/sampleEdit.cpp:290 +msgid "YM2608: sample length will be padded to multiple of 512" +msgstr "YM2608: longitud del sample será alineada a un múltiplo de 512" + +#: src/gui/sampleEdit.cpp:300 +msgid "YM2610: ADPCM-A samples can't loop" +msgstr "YM2610: no hay bucle de samples en ADPCM-A" + +#: src/gui/sampleEdit.cpp:302 +msgid "YM2610: loop point ignored on ADPCM-B (may only loop entire sample)" +msgstr "" +"YM2610: punto de bucle ignorado en ADPCM-B (solo se puede repetir el sample " +"entero)" + +#: src/gui/sampleEdit.cpp:305 +msgid "YM2610: sample length will be padded to multiple of 512" +msgstr "YM2610: longitud del sample será alineada a un múltiplo de 512" + +#: src/gui/sampleEdit.cpp:309 +msgid "YM2610: maximum ADPCM-A sample length is 2097152" +msgstr "YM2610: longitud máxima de un sample ADPCM-A es 2097152" + +#: src/gui/sampleEdit.cpp:318 +msgid "Y8950: loop point ignored on ADPCM (may only loop entire sample)" +msgstr "" +"Y8950: punto de bucle ignorado en ADPCM (solo se puede repetir el sample " +"entero)" + +#: src/gui/sampleEdit.cpp:321 +msgid "Y8950: sample length will be padded to multiple of 512" +msgstr "Y8950: longitud del sample será alineada a un múltiplo de 512" + +#: src/gui/sampleEdit.cpp:328 +msgid "Amiga: loop start must be a multiple of 2" +msgstr "Amiga: el bucle debe empezar en un múltiplo de 2" + +#: src/gui/sampleEdit.cpp:331 +msgid "Amiga: loop end must be a multiple of 2" +msgstr "Amiga: el bucle debe terminar en un múltiplo de 2" + +#: src/gui/sampleEdit.cpp:335 +msgid "Amiga: maximum sample length is 131070" +msgstr "Amiga: longitud máxima de un sample es 131070" + +#: src/gui/sampleEdit.cpp:344 +msgid "SegaPCM: maximum sample length is 65280" +msgstr "SegaPCM: longitud máxima de un sample es 131070" + +#: src/gui/sampleEdit.cpp:353 +msgid "K053260: loop point ignored (may only loop entire sample)" +msgstr "" +"K053260: punto de bucle ignorado (solo se puede repetir el sample entero)" + +#: src/gui/sampleEdit.cpp:357 +msgid "K053260: maximum sample length is 65535" +msgstr "K053260: longitud máxima de un sample es 65535" + +#: src/gui/sampleEdit.cpp:362 +msgid "C140: maximum sample length is 65535" +msgstr "C140: longitud máxima de un sample es 65535" + +#: src/gui/sampleEdit.cpp:371 +msgid "C219: loop start must be a multiple of 2" +msgstr "C219: el bucle debe empezar en un múltiplo de 2" + +#: src/gui/sampleEdit.cpp:374 +msgid "C219: loop end must be a multiple of 2" +msgstr "C219: el bucle debe terminar en un múltiplo de 2" + +#: src/gui/sampleEdit.cpp:378 +msgid "C219: maximum sample length is 131072" +msgstr "C219: longitud máxima de un sample es 131072" + +#: src/gui/sampleEdit.cpp:386 +msgid "MSM6295: samples can't loop" +msgstr "MSM6295: no hay bucle de samples" + +#: src/gui/sampleEdit.cpp:389 +msgid "MSM6295: maximum bankswitched sample length is 129024" +msgstr "MSM6295: longitud máxima de un sample con bancos es 129024" + +#: src/gui/sampleEdit.cpp:395 +msgid "GBA DMA: loop start must be a multiple of 4" +msgstr "GBA DMA: el bucle debe empezar en un múltiplo de 4" + +#: src/gui/sampleEdit.cpp:398 +msgid "GBA DMA: loop length must be a multiple of 16" +msgstr "GBA DMA: la longitud del bucle debe ser un múltiplo de 16" + +#: src/gui/sampleEdit.cpp:402 +msgid "GBA DMA: sample length will be padded to multiple of 16" +msgstr "GBA DMA: la longitud del sample será alineada a un múltiplo de 16" + +#: src/gui/sampleEdit.cpp:411 +msgid "ES5506: backward loop mode isn't supported" +msgstr "ES5506: modo de bucle al revés no está soportado" + +#: src/gui/sampleEdit.cpp:414 +msgid "" +"backward/ping-pong only supported in Generic PCM DAC\n" +"ping-pong also on ES5506" +msgstr "" +"modo de bucle al revés/ping-pong solamente soportado en DAC PCM Genérico\n" +"ping-pong también en ES5506" + +#: src/gui/sampleEdit.cpp:444 +msgid "Info" +msgstr "Info" + +#: src/gui/sampleEdit.cpp:447 src/gui/sampleEdit.cpp:933 +msgid "Rate" +msgstr "Tasa" + +#: src/gui/sampleEdit.cpp:453 +msgid "Compat Rate" +msgstr "Tasa Compat" + +#: src/gui/sampleEdit.cpp:457 +msgid "" +"used in DefleMask-compatible sample mode (17xx), in where samples are mapped " +"to an octave." +msgstr "" +"se usa en el modo de samples compatible con DefleMask (17xx), en el cual los " +"samples se mapean a una octava." + +#: src/gui/sampleEdit.cpp:463 +#, c-format +msgid "Loop (length: %d)##Loop" +msgstr "Bucle (longitud: %d)##Bucle" + +#: src/gui/sampleEdit.cpp:463 src/gui/insEdit.cpp:544 src/gui/insEdit.cpp:554 +#: src/gui/insEdit.cpp:605 src/gui/insEdit.cpp:6017 +msgid "Loop" +msgstr "Bucle" + +#: src/gui/sampleEdit.cpp:487 src/gui/sampleEdit.cpp:716 +#: src/gui/sampleEdit.cpp:752 +msgid "changing the loop in a BRR sample may result in glitches!" +msgstr "¡cambiar el bucle en un sample BRR resultará en problemas!" + +#: src/gui/sampleEdit.cpp:529 +msgid "BRR emphasis" +msgstr "Énfasis BRR" + +#: src/gui/sampleEdit.cpp:538 +msgid "" +"this is a BRR sample.\n" +"enabling this option will muffle it (only affects non-SNES chips)." +msgstr "" +"este es un sample BRR.\n" +"al activar esta opción, el sample se opacará en chips que no son SNES." + +#: src/gui/sampleEdit.cpp:540 +msgid "" +"enable this option to slightly boost high frequencies\n" +"to compensate for the SNES' Gaussian filter's muffle." +msgstr "" +"activa esta opción para amplificar los brillos ligeramente\n" +"para compensar los efectos del filtro Gauss de la SNES." + +#: src/gui/sampleEdit.cpp:546 +msgid "8-bit dither" +msgstr "8-bit dither" + +#: src/gui/sampleEdit.cpp:554 +msgid "dither the sample when used on a chip that only supports 8-bit samples." +msgstr "" +"dithear el sample al ser usado en un chip que solo soporta samples 8-bit." + +#: src/gui/sampleEdit.cpp:695 src/gui/gui.cpp:2975 +msgid "Start" +msgstr "Inicio" + +#: src/gui/sampleEdit.cpp:731 src/gui/gui.cpp:2983 +msgid "End" +msgstr "Fin" + +#: src/gui/sampleEdit.cpp:841 +#, c-format +msgid "" +"%s\n" +"%d bytes free" +msgstr "" +"%s\n" +"%d bytes disponibles" + +#: src/gui/sampleEdit.cpp:843 +#, c-format +msgid "" +"%s (%s)\n" +"%d bytes free" +msgstr "" +"%s (%s)\n" +"%d bytes disponibles" + +#: src/gui/sampleEdit.cpp:847 +msgid "" +"\n" +"\n" +"not enough memory for this sample!" +msgstr "" +"\n" +"\n" +"¡no hay memoria suficiente para este sample!" + +#: src/gui/sampleEdit.cpp:871 +msgid "Edit mode: Select" +msgstr "Modo de edición: Seleccionar" + +#: src/gui/sampleEdit.cpp:880 +msgid "Edit mode: Draw" +msgstr "Modo de edición: Dibujar" + +#: src/gui/sampleEdit.cpp:891 src/gui/sampleEdit.cpp:902 +msgid "Resize" +msgstr "Cambiar tamaño" + +#: src/gui/sampleEdit.cpp:906 +msgid "couldn't resize! make sure your sample is 8 or 16-bit." +msgstr "" +"¡no se pudo cambiar el tamaño! asegúrate de que el sample es de 8-bit o 16." + +#: src/gui/sampleEdit.cpp:926 src/gui/sampleEdit.cpp:957 +msgid "Resample" +msgstr "Re-muestrear" + +#: src/gui/sampleEdit.cpp:951 +msgid "Factor" +msgstr "Factor" + +#: src/gui/sampleEdit.cpp:956 +msgid "Filter" +msgstr "Filtro" + +#: src/gui/sampleEdit.cpp:961 +msgid "couldn't resample! make sure your sample is 8 or 16-bit." +msgstr "¡no se pudo re-muestrear! asegúrate de que el sample es de 8-bit o 16." + +#: src/gui/sampleEdit.cpp:1010 src/gui/sampleEdit.cpp:1197 +#: src/gui/sampleEdit.cpp:1281 +msgid "Apply" +msgstr "Aplicar" + +#: src/gui/sampleEdit.cpp:1053 +msgid "Fade in" +msgstr "Fundir entrada" + +#: src/gui/sampleEdit.cpp:1060 +msgid "Fade out" +msgstr "Fundir salida" + +#: src/gui/sampleEdit.cpp:1065 +msgid "Insert silence" +msgstr "Insertar silencio" + +#: src/gui/sampleEdit.cpp:1076 +msgid "Go" +msgstr "Ir" + +#: src/gui/sampleEdit.cpp:1081 +msgid "couldn't insert! make sure your sample is 8 or 16-bit." +msgstr "¡no se pudo insertar! asegúrate de que el sample es de 8-bit o 16." + +#: src/gui/sampleEdit.cpp:1098 +msgid "Apply silence" +msgstr "Aplicar silencio" + +#: src/gui/sampleEdit.cpp:1112 +msgid "Trim" +msgstr "Recortar" + +#: src/gui/sampleEdit.cpp:1135 +msgid "Signed/unsigned exchange" +msgstr "Intercambio entre con/sin signo" + +#: src/gui/sampleEdit.cpp:1140 +msgid "Apply filter" +msgstr "Aplicar filtro" + +#: src/gui/sampleEdit.cpp:1151 +msgid "Cutoff:" +msgstr "Límite:" + +#: src/gui/sampleEdit.cpp:1161 src/gui/insEdit.cpp:5895 +#: src/gui/insEdit.cpp:5898 src/gui/insEdit.cpp:6953 src/gui/insEdit.cpp:7216 +#: src/gui/insEdit.cpp:7478 +msgid "Resonance" +msgstr "Resonancia" + +#: src/gui/sampleEdit.cpp:1167 src/gui/insEdit.cpp:6897 +msgid "Power" +msgstr "Potencia" + +#: src/gui/sampleEdit.cpp:1181 +msgid "Low-pass" +msgstr "Paso bajo" + +#: src/gui/sampleEdit.cpp:1186 +msgid "Band-pass" +msgstr "Paso medio" + +#: src/gui/sampleEdit.cpp:1191 +msgid "High-pass" +msgstr "Paso alto" + +#: src/gui/sampleEdit.cpp:1262 +msgid "Crossfade loop points" +msgstr "Desvanecer el bucle" + +#: src/gui/sampleEdit.cpp:1271 +msgid "Number of samples" +msgstr "Número de samples" + +#: src/gui/sampleEdit.cpp:1277 +msgid "Linear <-> Equal power" +msgstr "Lineal <-> Poder igual" + +#: src/gui/sampleEdit.cpp:1283 +msgid "Crossfade: length would go out of bounds. Aborted..." +msgstr "La longitud se va fuera del límite. Abortado." + +#: src/gui/sampleEdit.cpp:1286 +msgid "Crossfade: length would overflow loopStart. Try a smaller random value." +msgstr "" +"La longitud se pasaría del inicio del bucle. Intenta con un valor más pequeño" + +#: src/gui/sampleEdit.cpp:1332 +msgid "Preview sample" +msgstr "Previsualizar sample" + +#: src/gui/sampleEdit.cpp:1346 +msgid "Create instrument from sample" +msgstr "Crear instrumento usando el sample" + +#: src/gui/sampleEdit.cpp:1747 +msgid "paste (replace)" +msgstr "pegar (reemplazar)" + +#: src/gui/sampleEdit.cpp:1750 +msgid "paste (mix)" +msgstr "pegar (mezclar)" + +#: src/gui/sampleEdit.cpp:1754 src/gui/gui.cpp:2769 +msgid "select all" +msgstr "seleccionar todo" + +#: src/gui/sampleEdit.cpp:1758 +msgid "set loop to selection" +msgstr "convertir selección en bucle" + +#: src/gui/sampleEdit.cpp:1761 +msgid "create wavetable from selection" +msgstr "crear onda desde la selecciôn" + +#: src/gui/sampleEdit.cpp:1767 +msgid "Draw" +msgstr "Dibujar" + +#: src/gui/sampleEdit.cpp:1767 +msgid "Select" +msgstr "Seleccionar" + +#: src/gui/sampleEdit.cpp:1769 +#, c-format +msgid "%d samples, %d bytes" +msgstr "%d samples, %d bytes" + +#: src/gui/sampleEdit.cpp:1784 +#, c-format +msgid " (%d-%d: %d samples)" +msgstr " (%d-%d: %d samples)" + +#: src/gui/sampleEdit.cpp:1976 +msgid "Non-8/16-bit samples cannot be edited without prior conversion." +msgstr "No se puede editar un sample que no es de 8 o 16 bits sin convertirlo." + +#: src/gui/newSong.cpp:122 src/gui/newSong.cpp:123 +msgid "Choose a System!" +msgstr "¡Elige un Sistema!" + +#: src/gui/newSong.cpp:179 +msgid "Categories" +msgstr "Categorías" + +#: src/gui/newSong.cpp:210 +msgid "no systems here yet!" +msgstr "aún no hay sistemas" + +#: src/gui/newSong.cpp:212 +msgid "no results" +msgstr "no hay resultados" + +#: src/gui/newSong.cpp:228 +msgid "I'm feeling lucky" +msgstr "Me siento con suerte" + +#: src/gui/newSong.cpp:230 +msgid "no categories available! what in the world." +msgstr "¡no hay categorías disponibles! qué rayos." + +#: src/gui/newSong.cpp:265 +msgid "it appears you're extremely lucky today!" +msgstr "¡parece que estás muy de suerte hoy!" + +#: src/gui/cursor.cpp:205 +#, c-format +msgid "finish selection: %d.%d,%d - %d.%d,%d" +msgstr "terminar selección: %d.%d,%d - %d.%d,%d" + +#: src/gui/tutorial.cpp:487 +msgid "" +"Play demo songs?\n" +"- Down: Play current song\n" +"- Up: Play demo songs" +msgstr "" +"Reproducir canciones de demostración?\n" +"- Abajo: Reproducir la canción actual\n" +"- Arriba: Reproducir las canciones de demostración" + +#: src/gui/tutorial.cpp:491 +msgid "" +"Welcome to Combat Vehicle!\n" +"\n" +"Controls:\n" +"X - Shoot Arrow Key - Move\n" +"Z - Special Esc - Quit" +msgstr "" +"Bienvenido a Combat Vehicle!\n" +"\n" +"Controles:\n" +"X - Disparar Flechas - Mover\n" +"Z - Especial Esc - Salir" + +#: src/gui/tutorial.cpp:496 +msgid "GAME OVER" +msgstr "JUEGO TERMINADO" + +#: src/gui/tutorial.cpp:498 +msgid "High Score!" +msgstr "Puntaje alto!" + +#: src/gui/tutorial.cpp:658 +msgid "Welcome!" +msgstr "Bienvenido!" + +#: src/gui/tutorial.cpp:661 +msgid "welcome to Furnace, the biggest open-source chiptune tracker!" +msgstr "" +"¡bienvenido a Furnace, el tracker de chiptune de codigo abierto más grande " +"de todos!" + +#: src/gui/tutorial.cpp:665 +msgid "here are some tips to get you started:" +msgstr "aquí hay algunos tips para empezar:" + +#: src/gui/tutorial.cpp:668 +msgid "" +"- add an instrument by clicking on + in Instruments\n" +"- click on the pattern view to focus it\n" +"- channel columns have the following, in this order: note, instrument, " +"volume and effects\n" +"- hit space bar while on the pattern to toggle Edit Mode\n" +"- click on the pattern or use arrow keys to move the cursor\n" +"- values (instrument, volume, effects and effect values) are in hexadecimal\n" +"- hit enter to play/stop the song\n" +"- extend the song by adding more orders in the Orders window\n" +"- click on the Orders matrix to change the patterns of a channel (left click " +"increases; right click decreases)" +msgstr "" +"- agrega un instrumento haciendo click en el botón '+' en Instrumentos\n" +"- haz clic en la vista de patrones para enfocarla\n" +"- las columnas de canal tienen lo siguiente, en este orden: nota, " +"instrumento, volumen y efectos\n" +"- presiona la barra espaciadora para activar/desactivar el modo de edición\n" +"- haz clic en el patrón o usa las flechas para mover el cursor\n" +"- todos los valores (instrumentos, volumen, efectos y argumentos de efectos) " +"están en hexadecimal\n" +"- presiona enter para reproducir/parar la canción\n" +"- extiende la canción agregando más órdenes en la ventana de Órdenes\n" +"- haz clic en la matriz de órdenes para cambiar los patrones de un canal " +"(click izquierdo aumenta, click derecho disminuye)" + +#: src/gui/tutorial.cpp:680 +msgid "" +"if you need help, you may:\n" +"- read the manual (a file called manual.pdf)\n" +"- ask for help in Discussions (https://github.com/tildearrow/furnace/" +"discussions), the Furnace Discord (https://discord.gg/EfrwT2wq7z) or Furnace " +"in Revolt (official: https://rvlt.gg/GRPS6tmc)" +msgstr "" +"si necesitas ayuda, puedes:\n" +"- leer el manual (un archivo de nombre 'manual.pdf' que vino con el " +"programa)\n" +"- pedir ayda en la página de discusiones de GitHub (https://github.com/" +"tildearrow/furnace/discussions), el servidor de Discord (https://discord.gg/" +"EfrwT2wq7z) o el servidor de Revolt (official: https://rvlt.gg/GRPS6tmc)" + +#: src/gui/tutorial.cpp:687 +msgid "" +"if you find any issues, be sure to report them! the issue tracker is here: " +"https://github.com/tildearrow/furnace/issues" +msgstr "" +"si encuentras algún error, por favor repórtalo! el rastreador de reportes se " +"encuentra en https://github.com/tildearrow/furnace/issues" + +#: src/gui/tutorial.cpp:1428 +#, c-format +msgid "STAGE %d" +msgstr "NIVEL %d" + +#: src/gui/songInfo.cpp:32 +msgid "Song Info##Song Information" +msgstr "Info de canción##Song Information" + +#: src/gui/songInfo.cpp:50 +msgid "Author" +msgstr "Autor" + +#: src/gui/songInfo.cpp:60 +msgid "Album" +msgstr "Álbum" + +#: src/gui/songInfo.cpp:79 +msgid "Auto" +msgstr "Auto" + +#: src/gui/songInfo.cpp:100 +msgid "Tuning (A-4)" +msgstr "Afinación (en base a A-4)" + +#: src/gui/grooves.cpp:38 +msgid "use effect 09xx to select a groove pattern." +msgstr "usa el efecto 09xx para seleccionar un patrôn de groove." + +#: src/gui/grooves.cpp:48 src/gui/gui.cpp:4480 +msgid "pattern" +msgstr "patrón" + +#: src/gui/grooves.cpp:132 +msgid "remove" +msgstr "remover" + +#: src/gui/doAction.cpp:45 src/gui/gui.cpp:4201 +msgid "Unsaved changes! Save changes before opening another file?" +msgstr "¡Cambios no guardados! ¿Guardar cambios antes de abrir otro archivo?" + +#: src/gui/doAction.cpp:52 +msgid "Unsaved changes! Save changes before opening backup?" +msgstr "¡Cambios no guardados! ¿Guardar cambios antes de abrir una copia?" + +#: src/gui/doAction.cpp:62 src/gui/gui.cpp:4237 src/gui/gui.cpp:5025 +#: src/gui/gui.cpp:5063 src/gui/gui.cpp:5069 src/gui/gui.cpp:5657 +#: src/gui/gui.cpp:5681 src/gui/gui.cpp:5705 src/gui/gui.cpp:5729 +#: src/gui/gui.cpp:5753 src/gui/gui.cpp:5777 +#, c-format +msgid "Error while saving file! (%s)" +msgstr "¡Error al guardar el archivo! (%s)" + +#: src/gui/doAction.cpp:189 +msgid "Error while sending request (MIDI output not configured?)" +msgstr "Error al enviar el pedido (¿salida MIDI no configurada?)" + +#: src/gui/doAction.cpp:197 +msgid "Select an option: (cannot be undone!)" +msgstr "Selecciona una opción: (no se puede deshacer)" + +#: src/gui/doAction.cpp:691 src/gui/doAction.cpp:720 src/gui/doAction.cpp:1593 +#: src/gui/gui.cpp:6091 +msgid "too many instruments!" +msgstr "¡demasiados instrumentos!" + +#: src/gui/doAction.cpp:1124 +msgid "couldn't paste! make sure your sample is 8 or 16-bit." +msgstr "¡no se pudo pegar! asegúrate de que el sample sea de 8 bits o 16." + +#: src/gui/doAction.cpp:1628 +msgid "select at least one sample!" +msgstr "¡selecciona por lo menos un sample!" + +#: src/gui/doAction.cpp:1630 +msgid "maximum size is 256 samples!" +msgstr "¡tamaño máximo es 256 samples!" + +#: src/gui/csPlayer.cpp:113 +msgid "Load" +msgstr "Cargar" + +#: src/gui/csPlayer.cpp:117 +msgid "Kill" +msgstr "Matar" + +#: src/gui/csPlayer.cpp:119 +msgid "Kikai wa mou shindeiru!" +msgstr "Machina iam mortuus est!" + +#: src/gui/csPlayer.cpp:123 +msgid "Burn Current Song" +msgstr "Quemar Canción Actual" + +#: src/gui/csPlayer.cpp:141 +msgid "Status" +msgstr "Estado" + +#: src/gui/csPlayer.cpp:148 +msgid "start" +msgstr "inicio" + +#: src/gui/csPlayer.cpp:150 +msgid "PC" +msgstr "PC" + +#: src/gui/csPlayer.cpp:152 +msgid "wait" +msgstr "espera" + +#: src/gui/csPlayer.cpp:154 +msgid "SP" +msgstr "SP" + +#: src/gui/csPlayer.cpp:156 src/gui/insEdit.cpp:2733 +msgid "note" +msgstr "nota" + +#: src/gui/csPlayer.cpp:158 src/gui/insEdit.cpp:2728 +msgid "pitch" +msgstr "tono" + +#: src/gui/csPlayer.cpp:160 +msgid "vol" +msgstr "vol" + +#: src/gui/csPlayer.cpp:162 +msgid "vols" +msgstr "vols" + +#: src/gui/csPlayer.cpp:164 +msgid "vib" +msgstr "vib" + +#: src/gui/csPlayer.cpp:166 +msgid "porta" +msgstr "porta" + +#: src/gui/csPlayer.cpp:168 +msgid "arp" +msgstr "arp" + +#: src/gui/csPlayer.cpp:203 +msgid "Trace" +msgstr "Traza" + +#: src/gui/csPlayer.cpp:244 +msgid "Disassemble" +msgstr "Desensamblar" + +#: src/gui/gui.cpp:1136 src/gui/gui.cpp:1140 +msgid "the song is over!" +msgstr "¡la canción se acabó!" + +#: src/gui/gui.cpp:1667 +msgid "Open File" +msgstr "Abrir archivo" + +#: src/gui/gui.cpp:1668 src/gui/gui.cpp:1798 src/gui/gui.cpp:1838 +#: src/gui/gui.cpp:1953 src/gui/gui.cpp:1962 src/gui/gui.cpp:1971 +#: src/gui/gui.cpp:2073 src/gui/gui.cpp:2093 src/gui/gui.cpp:2111 +msgid "compatible files" +msgstr "archivos compatibles" + +#: src/gui/gui.cpp:1669 src/gui/gui.cpp:1743 src/gui/gui.cpp:1799 +#: src/gui/gui.cpp:1839 src/gui/gui.cpp:1851 src/gui/gui.cpp:1870 +#: src/gui/gui.cpp:2074 src/gui/gui.cpp:2084 src/gui/gui.cpp:2095 +#: src/gui/gui.cpp:2113 +msgid "all files" +msgstr "todos los archivos" + +#: src/gui/gui.cpp:1676 +msgid "no backups made yet!" +msgstr "¡aún no se han hecho respaldos!" + +#: src/gui/gui.cpp:1681 src/gui/gui.cpp:1690 src/gui/gui.cpp:2130 +msgid "Furnace song" +msgstr "canción de Furnace" + +#: src/gui/gui.cpp:1689 +msgid "Save File" +msgstr "Guardar archivo" + +#: src/gui/gui.cpp:1698 src/gui/gui.cpp:1708 +msgid "Export DMF" +msgstr "Exportar DMF" + +#: src/gui/gui.cpp:1699 +msgid "DefleMask 1.1.3 module" +msgstr "Módulo 1.1.3 de DefleMask" + +#: src/gui/gui.cpp:1709 +msgid "DefleMask 1.0/legacy module" +msgstr "Módulo 1.0/legacy de DefleMask" + +#: src/gui/gui.cpp:1726 +msgid "Load Instrument" +msgstr "Cargar instrumento" + +#: src/gui/gui.cpp:1727 +msgid "all compatible files" +msgstr "todos los archivos compatibles" + +#: src/gui/gui.cpp:1728 src/gui/gui.cpp:1777 +msgid "Furnace instrument" +msgstr "instrumento de Furnace" + +#: src/gui/gui.cpp:1729 src/gui/gui.cpp:1787 +msgid "DefleMask preset" +msgstr "instrumento de DefleMask" + +#: src/gui/gui.cpp:1730 +msgid "TFM Music Maker instrument" +msgstr "instrumento TFM Music Maker" + +#: src/gui/gui.cpp:1731 +msgid "VGM Music Maker instrument" +msgstr "instrumento VGM Music Maker" + +#: src/gui/gui.cpp:1732 +msgid "Scream Tracker 3 instrument" +msgstr "instrumento de Scream Tracker 3" + +#: src/gui/gui.cpp:1733 +msgid "SoundBlaster instrument" +msgstr "instrumento SoundBlaster" + +#: src/gui/gui.cpp:1734 +msgid "Wohlstand OPL instrument" +msgstr "instrumento Wohlstand OPL" + +#: src/gui/gui.cpp:1735 +msgid "Wohlstand OPN instrument" +msgstr "instrumento Wohlstand OPN" + +#: src/gui/gui.cpp:1736 +msgid "Gens KMod patch dump" +msgstr "volcado de parcheos de Gens KMod" + +#: src/gui/gui.cpp:1737 +msgid "BNK file (AdLib)" +msgstr "archivo BNK (AdLib)" + +#: src/gui/gui.cpp:1738 +msgid "FF preset bank" +msgstr "banco de preajustes FF" + +#: src/gui/gui.cpp:1739 +msgid "2612edit GYB preset bank" +msgstr "banco de preajustes 2612edit GYB" + +#: src/gui/gui.cpp:1740 +msgid "VOPM preset bank" +msgstr "banco de preajustes VOPM" + +#: src/gui/gui.cpp:1741 +msgid "Wohlstand WOPL bank" +msgstr "banco de preajustes Wohlstand WOPL" + +#: src/gui/gui.cpp:1742 +msgid "Wohlstand WOPN bank" +msgstr "banco de preajustes Wohlstand WOPL" + +#: src/gui/gui.cpp:1776 src/gui/gui.cpp:1786 +msgid "Save Instrument" +msgstr "Guardar instrumento" + +#: src/gui/gui.cpp:1797 +msgid "Load Wavetable" +msgstr "Cargar wavetable" + +#: src/gui/gui.cpp:1809 src/gui/gui.cpp:1818 src/gui/gui.cpp:1827 +msgid "Save Wavetable" +msgstr "Guardar wavetable" + +#: src/gui/gui.cpp:1810 +msgid "Furnace wavetable" +msgstr "wavetable de Furnace" + +#: src/gui/gui.cpp:1819 +msgid "DefleMask wavetable" +msgstr "wavetable de DefleMask" + +#: src/gui/gui.cpp:1828 +msgid "raw data" +msgstr "datos en bruto" + +#: src/gui/gui.cpp:1837 +msgid "Load Sample" +msgstr "Cargar sample" + +#: src/gui/gui.cpp:1850 +msgid "Load Raw Sample" +msgstr "Cargar sample en bruto" + +#: src/gui/gui.cpp:1859 +msgid "Save Sample" +msgstr "Guardar sample" + +#: src/gui/gui.cpp:1860 src/gui/gui.cpp:1880 src/gui/gui.cpp:1890 +#: src/gui/gui.cpp:1900 +msgid "Wave file" +msgstr "archivo WAV" + +#: src/gui/gui.cpp:1869 +msgid "Save Raw Sample" +msgstr "Guardar sample en bruto" + +#: src/gui/gui.cpp:1879 src/gui/gui.cpp:1889 src/gui/gui.cpp:1899 +msgid "Export Audio" +msgstr "Exportar Audio" + +#: src/gui/gui.cpp:1909 +msgid "Export VGM" +msgstr "Exportar VGM" + +#: src/gui/gui.cpp:1910 +msgid "VGM file" +msgstr "archivo VGM" + +#: src/gui/gui.cpp:1919 +msgid "Export ZSM" +msgstr "Exportar ZSM" + +#: src/gui/gui.cpp:1920 +msgid "ZSM file" +msgstr "archivo ZSM" + +#: src/gui/gui.cpp:1929 src/gui/gui.cpp:1939 +msgid "Export Command Stream" +msgstr "Exportar corr. de datos" + +#: src/gui/gui.cpp:1930 +msgid "text file" +msgstr "archivo de texto" + +#: src/gui/gui.cpp:1940 +msgid "binary file" +msgstr "archivo binario" + +#: src/gui/gui.cpp:1947 src/gui/gui.cpp:5376 +msgid "Coming soon!" +msgstr "Muy pronto!" + +#: src/gui/gui.cpp:1952 src/gui/gui.cpp:1961 src/gui/gui.cpp:1970 +msgid "Select Font" +msgstr "Seleccionar fuente" + +#: src/gui/gui.cpp:1979 +msgid "Select Color File" +msgstr "Seleccionar archivo de color" + +#: src/gui/gui.cpp:1980 src/gui/gui.cpp:1989 src/gui/gui.cpp:2008 +#: src/gui/gui.cpp:2017 src/gui/gui.cpp:2026 src/gui/gui.cpp:2035 +#: src/gui/gui.cpp:2053 src/gui/gui.cpp:2062 +msgid "configuration files" +msgstr "archivos de configuración" + +#: src/gui/gui.cpp:1988 +msgid "Select Keybind File" +msgstr "Seleccionar archivo de atajos de teclado" + +#: src/gui/gui.cpp:1997 +msgid "Select Layout File" +msgstr "Seleccionar archivo de diseño" + +#: src/gui/gui.cpp:1998 src/gui/gui.cpp:2044 +msgid ".ini files" +msgstr "archivos .ini" + +#: src/gui/gui.cpp:2007 +msgid "Select User Presets File" +msgstr "Seleccionar archivo de preajustes de usuario" + +#: src/gui/gui.cpp:2016 +msgid "Select Settings File" +msgstr "Seleccionar archivo de ajustes" + +#: src/gui/gui.cpp:2025 +msgid "Export Colors" +msgstr "Exportar colores" + +#: src/gui/gui.cpp:2034 +msgid "Export Keybinds" +msgstr "Exportar atajos" + +#: src/gui/gui.cpp:2043 +msgid "Export Layout" +msgstr "Exportar diseño" + +#: src/gui/gui.cpp:2052 +msgid "Export User Presets" +msgstr "Exportar preajustes de usuario" + +#: src/gui/gui.cpp:2061 +msgid "Export Settings" +msgstr "Exportar ajustes" + +#: src/gui/gui.cpp:2072 +msgid "Load ROM" +msgstr "Cargar ROM" + +#: src/gui/gui.cpp:2082 +msgid "Play Command Stream" +msgstr "Reproducir corr. de comandos" + +#: src/gui/gui.cpp:2083 +msgid "command stream" +msgstr "corriente de comandos" + +#: src/gui/gui.cpp:2092 +msgid "Open Test" +msgstr "Abrir prueba" + +#: src/gui/gui.cpp:2094 src/gui/gui.cpp:2112 +msgid "another option" +msgstr "otra opción" + +#: src/gui/gui.cpp:2110 +msgid "Open Test (Multi)" +msgstr "Abrir prueba (Multi)" + +#: src/gui/gui.cpp:2129 +msgid "Save Test" +msgstr "Guardar prueba" + +#: src/gui/gui.cpp:2131 +msgid "DefleMask module" +msgstr "módulo de DefleMask" + +#: src/gui/gui.cpp:2171 +msgid "compression error" +msgstr "error de compresión" + +#: src/gui/gui.cpp:2183 +msgid "zlib stream error" +msgstr "error de corriente de zlib" + +#: src/gui/gui.cpp:2205 +msgid "zlib finish stream error" +msgstr "error de corriente de zlib al terminar" + +#: src/gui/gui.cpp:2316 +msgid "everything OK" +msgstr "todo está bien :)" + +#: src/gui/gui.cpp:2334 +msgid "" +"you have loaded a backup!\n" +"if you need to, please save it somewhere.\n" +"\n" +"DO NOT RELY ON THE BACKUP SYSTEM FOR AUTO-SAVE!\n" +"Furnace will not save backups of backups." +msgstr "" +"¡has cargado una copia de seguridad!\n" +"si la necesitas, guárdala en alguna parte.\n" +"\n" +"¡NO CONFÍES EN EL SISTEMA DE COPIAS PARA GUARDAR AUTOMÁTICAMENTE!\n" +"Furnace no hará respaldos de copias." + +#: src/gui/gui.cpp:2342 src/gui/gui.cpp:3743 src/gui/gui.cpp:4213 +msgid "Unsaved changes! Save changes before opening file?" +msgstr "¡Cambios no guardados! ¿Guardar cambios antes de abrir archivo?" + +#: src/gui/gui.cpp:2736 +msgid "paste special..." +msgstr "pegado especial..." + +#: src/gui/gui.cpp:2737 +msgid "paste mix" +msgstr "pegar y mezclar" + +#: src/gui/gui.cpp:2738 +msgid "paste mix (background)" +msgstr "pegar y mezclar (en el fondo)" + +#: src/gui/gui.cpp:2739 +msgid "paste with ins (foreground)" +msgstr "pegar con inserción (en primer plano)" + +#: src/gui/gui.cpp:2741 src/gui/gui.cpp:2753 src/gui/gui.cpp:2963 +msgid "no instruments available" +msgstr "no hay instrumentos disponibles" + +#: src/gui/gui.cpp:2751 +msgid "paste with ins (background)" +msgstr "pegar con inserción (en el fondo)" + +#: src/gui/gui.cpp:2763 +msgid "paste flood" +msgstr "inundar" + +#: src/gui/gui.cpp:2764 +msgid "paste overflow" +msgstr "pegar con desborde" + +#: src/gui/gui.cpp:2773 +msgid "operation mask..." +msgstr "máscara de operación..." + +#: src/gui/gui.cpp:2780 +msgid "pull delete" +msgstr "borrar y halar" + +#: src/gui/gui.cpp:2784 +msgid "insert" +msgstr "insertar" + +#: src/gui/gui.cpp:2792 +msgid "transpose (note)" +msgstr "trasponer nota" + +#: src/gui/gui.cpp:2796 +msgid "transpose (value)" +msgstr "trasponer valor" + +#: src/gui/gui.cpp:2808 src/gui/gui.cpp:3052 +msgid "invert values" +msgstr "invertir valores" + +#: src/gui/gui.cpp:2824 +msgid "collapse/expand" +msgstr "colapsar/expandir" + +#: src/gui/gui.cpp:2829 +msgid "input latch" +msgstr "ajustar bloqueo de entrada" + +#: src/gui/gui.cpp:2856 +msgid "" +"&&: selected instrument\n" +"..: no instrument" +msgstr "" +"&&: instrumento elegido\n" +"..: sin instrumento" + +#: src/gui/gui.cpp:2910 +msgid "Set" +msgstr "Establecer" + +#: src/gui/gui.cpp:2930 +msgid "note up" +msgstr "subir nota" + +#: src/gui/gui.cpp:2931 +msgid "note down" +msgstr "bajar nota" + +#: src/gui/gui.cpp:2932 +msgid "octave up" +msgstr "subir una octava" + +#: src/gui/gui.cpp:2933 +msgid "octave down" +msgstr "bajar una octava" + +#: src/gui/gui.cpp:2935 +msgid "values up" +msgstr "subir valor" + +#: src/gui/gui.cpp:2936 +msgid "values down" +msgstr "bajar valor" + +#: src/gui/gui.cpp:2937 +msgid "values up (+16)" +msgstr "subir valor (+16)" + +#: src/gui/gui.cpp:2938 +msgid "values down (-16)" +msgstr "bajar valor (-16)" + +#: src/gui/gui.cpp:2941 +msgid "transpose" +msgstr "trasponer" + +#: src/gui/gui.cpp:2949 +msgid "Notes" +msgstr "Notas" + +#: src/gui/gui.cpp:2954 +msgid "Values" +msgstr "Valores" + +#: src/gui/gui.cpp:2961 +msgid "change instrument..." +msgstr "cambiar instrumento..." + +#: src/gui/gui.cpp:2974 +msgid "gradient/fade..." +msgstr "crear gradiente/fundido..." + +#: src/gui/gui.cpp:2991 src/gui/gui.cpp:3036 +msgid "Nibble mode" +msgstr "Modo de nibbles" + +#: src/gui/gui.cpp:3000 +msgid "Go ahead" +msgstr "Adelante" + +#: src/gui/gui.cpp:3006 src/gui/insEdit.cpp:7604 +msgid "scale..." +msgstr "escalar..." + +#: src/gui/gui.cpp:3011 +msgid "Scale" +msgstr "Escalar" + +#: src/gui/gui.cpp:3017 src/gui/insEdit.cpp:7632 +msgid "randomize..." +msgstr "aleatorizar..." + +#: src/gui/gui.cpp:3018 +msgid "Minimum" +msgstr "Mínimo" + +#: src/gui/gui.cpp:3027 +msgid "Maximum" +msgstr "Máximo" + +#: src/gui/gui.cpp:3056 +msgid "flip selection" +msgstr "voltear selección" + +#: src/gui/gui.cpp:3059 +msgid "collapse/expand amount##CollapseAmount" +msgstr "cantidad de expansión/colapso##CollapseAmount" + +#: src/gui/gui.cpp:3068 +msgid "collapse pattern" +msgstr "colapsar patrón" + +#: src/gui/gui.cpp:3069 +msgid "expand pattern" +msgstr "expandir patrón" + +#: src/gui/gui.cpp:3074 +msgid "collapse song" +msgstr "colapsar canción" + +#: src/gui/gui.cpp:3075 +msgid "expand song" +msgstr "expandir canción" + +#: src/gui/gui.cpp:3080 +msgid "find/replace" +msgstr "buscar/reemplazar" + +#: src/gui/gui.cpp:3094 src/gui/gui.cpp:5807 src/gui/gui.cpp:7362 +#, c-format +msgid "could NOT save layout! %s" +msgstr "NO SE PUDO GUARDAR el diseño! %s" + +#: src/gui/gui.cpp:3106 +#, c-format +msgid "could NOT load layout! %s" +msgstr "¡NO SE PUDO CARGAR el diseño! %s" + +#: src/gui/gui.cpp:3568 +msgid "" +"Furnace has been started in Safe Mode.\n" +"this means that:\n" +"\n" +"- software rendering is being used\n" +"- audio output may not work\n" +"- font loading is disabled\n" +"\n" +"check any settings which may have made Furnace start up in this mode.\n" +"font loading is one of these." +msgstr "" +"Furnace se ha abierto en modo seguro.\n" +"esto significa que:\n" +"\n" +"- se está usando el renderizado por software\n" +"- el audio puede no funcionar\n" +"- la carga de fuentes de texto está desactivada\n" +"\n" +"revise cualquier ajuste que pueda haber hecho que Furnace abriera de esta " +"forma.\n" +"la carga de fuentes es uno de estos." + +#: src/gui/gui.cpp:4053 +msgid "can't keep going without graphics! Furnace will quit now." +msgstr "¡no se puede continuar sin gráficos! Furnace se terminará." + +#: src/gui/gui.cpp:4191 +msgid "file" +msgstr "archivo" + +#: src/gui/gui.cpp:4192 +msgid "new..." +msgstr "nuevo..." + +#: src/gui/gui.cpp:4199 +msgid "open..." +msgstr "abrir..." + +#: src/gui/gui.cpp:4206 +msgid "open recent" +msgstr "abrir recientes" + +#: src/gui/gui.cpp:4222 +msgid "nothing here yet" +msgstr "aún no hay nada aquí" + +#: src/gui/gui.cpp:4225 +msgid "clear history" +msgstr "limpiar historial" + +#: src/gui/gui.cpp:4226 +msgid "Are you sure you want to clear the recent file list?" +msgstr "¿Seguro que quieres limpiar el historial de archivos?" + +#: src/gui/gui.cpp:4241 +msgid "save as..." +msgstr "guardar como..." + +#: src/gui/gui.cpp:4246 src/gui/gui.cpp:4287 +msgid "export audio..." +msgstr "exportar como audio..." + +#: src/gui/gui.cpp:4250 src/gui/gui.cpp:4291 +msgid "export VGM..." +msgstr "exportar como VGM..." + +#: src/gui/gui.cpp:4259 src/gui/gui.cpp:4300 +msgid "export ZSM..." +msgstr "exportar como ZSM..." + +#: src/gui/gui.cpp:4269 src/gui/gui.cpp:4310 +msgid "export Amiga validation data..." +msgstr "exportar datos de validación de Amiga..." + +#: src/gui/gui.cpp:4274 src/gui/gui.cpp:4315 +msgid "export text..." +msgstr "exportar como texto..." + +#: src/gui/gui.cpp:4278 src/gui/gui.cpp:4319 +msgid "export command stream..." +msgstr "exportar corr. de comandos..." + +#: src/gui/gui.cpp:4282 src/gui/gui.cpp:4323 +msgid "export .dmf..." +msgstr "exportar como .dmf..." + +#: src/gui/gui.cpp:4328 +msgid "export..." +msgstr "exportar..." + +#: src/gui/gui.cpp:4334 +msgid "manage chips" +msgstr "administrar chips" + +#: src/gui/gui.cpp:4338 +msgid "add chip..." +msgstr "agregar chip" + +#: src/gui/gui.cpp:4343 src/gui/sysManager.cpp:138 +#, c-format +msgid "cannot add chip! (%s)" +msgstr "¡no se puede agregar el chip! (%s)" + +#: src/gui/gui.cpp:4355 +msgid "configure chip..." +msgstr "configurar chip..." + +#: src/gui/gui.cpp:4365 +msgid "change chip..." +msgstr "cambiar chip..." + +#: src/gui/gui.cpp:4367 src/gui/gui.cpp:4390 +msgid "Preserve channel positions" +msgstr "Preservar posiciones de los canales" + +#: src/gui/gui.cpp:4379 src/gui/sysManager.cpp:109 +#, c-format +msgid "cannot change chip! (%s)" +msgstr "¡no se puede cambiar el chip! (%s)" + +#: src/gui/gui.cpp:4388 +msgid "remove chip..." +msgstr "remover chip..." + +#: src/gui/gui.cpp:4394 +#, c-format +msgid "cannot remove chip! (%s)" +msgstr "¡no se puede remover el chip! (%s)" + +#: src/gui/gui.cpp:4408 +msgid "open built-in assets directory" +msgstr "abrir archivos integrados" + +#: src/gui/gui.cpp:4414 +msgid "restore backup" +msgstr "restaurar copia de seguridad" + +#: src/gui/gui.cpp:4418 +msgid "exit..." +msgstr "salir..." + +#: src/gui/gui.cpp:4426 +msgid "edit" +msgstr "editar" + +#: src/gui/gui.cpp:4434 +msgid "clear..." +msgstr "limpiar..." + +#: src/gui/gui.cpp:4439 +msgid "settings" +msgstr "opciones" + +#: src/gui/gui.cpp:4441 +msgid "full screen" +msgstr "pantalla completa" + +#: src/gui/gui.cpp:4445 +msgid "lock layout" +msgstr "bloquear diseño" + +#: src/gui/gui.cpp:4448 +msgid "pattern visualizer" +msgstr "visualizador de patrones" + +#: src/gui/gui.cpp:4454 +msgid "reset layout" +msgstr "reiniciar diseño" + +#: src/gui/gui.cpp:4458 +msgid "switch to mobile view" +msgstr "cambiar a vista móvil" + +#: src/gui/gui.cpp:4462 +msgid "user systems..." +msgstr "sistemas del usuario..." + +#: src/gui/gui.cpp:4465 +msgid "settings..." +msgstr "ajustes..." + +#: src/gui/gui.cpp:4471 +msgid "Window" +msgstr "Ventana" + +#: src/gui/gui.cpp:4471 +msgid "window" +msgstr "ventana" + +#: src/gui/gui.cpp:4472 +msgid "song" +msgstr "canción" + +#: src/gui/gui.cpp:4473 +msgid "song comments" +msgstr "comentarios" + +#: src/gui/gui.cpp:4474 +msgid "song information" +msgstr "información" + +#: src/gui/gui.cpp:4475 +msgid "subsongs" +msgstr "subcanciones" + +#: src/gui/gui.cpp:4477 +msgid "channels" +msgstr "canales" + +#: src/gui/gui.cpp:4478 +msgid "chip manager" +msgstr "administrador de chips" + +#: src/gui/gui.cpp:4479 +msgid "orders" +msgstr "órdenes" + +#: src/gui/gui.cpp:4481 +msgid "pattern manager" +msgstr "administrador de patrones" + +#: src/gui/gui.cpp:4482 +msgid "mixer" +msgstr "mezclador" + +#: src/gui/gui.cpp:4483 +msgid "compatibility flags" +msgstr "opciones de compatibilidad" + +#: src/gui/gui.cpp:4486 src/gui/gui.cpp:4488 +msgid "assets" +msgstr "bienes" + +#: src/gui/gui.cpp:4490 +msgid "instruments" +msgstr "instrumentos" + +#: src/gui/gui.cpp:4491 +msgid "samples" +msgstr "" + +#: src/gui/gui.cpp:4492 +msgid "wavetables" +msgstr "ondas" + +#: src/gui/gui.cpp:4495 +msgid "instrument editor" +msgstr "editor de instrumentos" + +#: src/gui/gui.cpp:4496 +msgid "sample editor" +msgstr "editor de samples" + +#: src/gui/gui.cpp:4497 +msgid "wavetable editor" +msgstr "editor de wavetables" + +#: src/gui/gui.cpp:4500 +msgid "visualizers" +msgstr "visualizadores" + +#: src/gui/gui.cpp:4501 +msgid "oscilloscope (master)" +msgstr "osciloscopio (maestro)" + +#: src/gui/gui.cpp:4502 +msgid "oscilloscope (per-channel)" +msgstr "osciloscopio (uno por canal)" + +#: src/gui/gui.cpp:4503 +msgid "oscilloscope (X-Y)" +msgstr "osciloscopio (X-Y)" + +#: src/gui/gui.cpp:4504 +msgid "volume meter" +msgstr "medidor de volumen" + +#: src/gui/gui.cpp:4507 +msgid "tempo" +msgstr "" + +#: src/gui/gui.cpp:4508 +msgid "clock" +msgstr "reloj" + +#: src/gui/gui.cpp:4509 +msgid "grooves" +msgstr "" + +#: src/gui/gui.cpp:4510 +msgid "speed" +msgstr "velocidad" + +#: src/gui/gui.cpp:4514 +msgid "log viewer" +msgstr "registro" + +#: src/gui/gui.cpp:4515 +msgid "register view" +msgstr "visualizador de registros" + +#: src/gui/gui.cpp:4516 +msgid "statistics" +msgstr "estadísticas" + +#: src/gui/gui.cpp:4517 +msgid "memory composition" +msgstr "composición de memoria" + +#: src/gui/gui.cpp:4521 src/gui/gui.cpp:4529 +msgid "effect list" +msgstr "lista de efectos" + +#: src/gui/gui.cpp:4522 +msgid "play/edit controls" +msgstr "controles de reproducción/edición" + +#: src/gui/gui.cpp:4523 +msgid "piano/input pad" +msgstr "piano/teclado de entrada" + +#: src/gui/gui.cpp:4524 +msgid "spoiler" +msgstr "spoiler" + +#: src/gui/gui.cpp:4528 +msgid "Help" +msgstr "Ayuda" + +#: src/gui/gui.cpp:4528 +msgid "help" +msgstr "ayuda" + +#: src/gui/gui.cpp:4530 +msgid "debug menu" +msgstr "menú de depuración" + +#: src/gui/gui.cpp:4531 +msgid "inspector" +msgstr "" + +#: src/gui/gui.cpp:4532 +msgid "panic" +msgstr "entrar en pánico" + +#: src/gui/gui.cpp:4533 +msgid "about..." +msgstr "acerca de..." + +#: src/gui/gui.cpp:4548 +#, c-format +msgid "| Speed %d:%d" +msgstr "| Velocidad %d:%d" + +#: src/gui/gui.cpp:4550 +#, c-format +msgid "| Speed %d" +msgstr "| Velocidad %d" + +#: src/gui/gui.cpp:4552 +msgid "| Groove" +msgstr "" + +#: src/gui/gui.cpp:4555 +#, c-format +msgid " @ %gHz (%g BPM) " +msgstr " en %gHz (%g PPM) " + +#: src/gui/gui.cpp:4558 +#, c-format +msgid "| Order %.2X/%.2X " +msgstr "| Órden %.2X/%.2X " + +#: src/gui/gui.cpp:4560 +#, c-format +msgid "| Order %d/%d " +msgstr "| Órden %d/%d " + +#: src/gui/gui.cpp:4564 +#, c-format +msgid "| Row %.2X/%.2X " +msgstr "| Fila %.2X/%.2X " + +#: src/gui/gui.cpp:4566 +#, c-format +msgid "| Row %d/%d " +msgstr "| Fila %d/%d " + +#: src/gui/gui.cpp:4569 +msgid "| " +msgstr "" + +#: src/gui/gui.cpp:4572 +msgid "Don't you have anything better to do?" +msgstr "¿No tienes algo mejor que hacer?" + +#: src/gui/gui.cpp:4582 +#, c-format +msgid "%d year " +msgid_plural "%d years " +msgstr[0] "%d año " +msgstr[1] "%d años " + +#: src/gui/gui.cpp:4583 +#, c-format +msgid "%d month " +msgid_plural "%d months " +msgstr[0] "%d mes " +msgstr[1] "%d meses " + +#: src/gui/gui.cpp:4584 +#, c-format +msgid "%d day " +msgid_plural "%d days " +msgstr[0] "%d day " +msgstr[1] "%d days " + +#: src/gui/gui.cpp:4609 +msgid "Note off (cut)" +msgstr "Cortar nota" + +#: src/gui/gui.cpp:4611 +msgid "Note off (release)" +msgstr "Soltar nota" + +#: src/gui/gui.cpp:4613 +msgid "Macro release only" +msgstr "Sólo soltar macro" + +#: src/gui/gui.cpp:4615 +#, c-format +msgid "Note on: %s" +msgstr "Encender nota: %s" + +#: src/gui/gui.cpp:4623 +#, c-format +msgid "Ins %d: " +msgstr "Ins %d: " + +#: src/gui/gui.cpp:4626 +#, c-format +msgid "Ins %d: %s" +msgstr "" + +#: src/gui/gui.cpp:4635 +#, c-format +msgid "Set volume: %d (%.2X, INVALID!)" +msgstr "Cambiar volumen: %d (%.2X, INVÁLIDO!)" + +#: src/gui/gui.cpp:4638 +#, c-format +msgid "Set volume: %d (%.2X, %d%%)" +msgstr "Cambiar volumen: %d (%.2X, %d%%)" + +#: src/gui/gui.cpp:4660 +msgid "| modified" +msgstr "| modificado" + +#: src/gui/gui.cpp:4825 src/gui/gui.cpp:4828 +msgid "System File Dialog Pending" +msgstr "Diálogo de archivos del sistema pendiente" + +#: src/gui/gui.cpp:4941 +msgid "" +"there was an error in the file dialog! you may want to report this issue " +"to:\n" +"https://github.com/tildearrow/furnace/issues\n" +"check the Log Viewer (window > log viewer) for more information.\n" +"\n" +"for now please disable the system file picker in Settings > General." +msgstr "" +"¡hubo un error en el diálogo de archivos! quizás quieras reportar esto en:\n" +"https://github.com/tildearrow/furnace/issues\n" +"revisa el Registro (ventana > registro) para más información.\n" +"\n" +"mientras tanto, por favor desactiva el selector de archivos del sistema en " +"Ajustes > General." + +#: src/gui/gui.cpp:4944 +msgid "can't do anything without Storage permissions!" +msgstr "¡no puedo hacer nada sin permisos de almacenamiento!" + +#: src/gui/gui.cpp:4946 +msgid "" +"Zenity/KDialog not available!\n" +"please install one of these, or disable the system file picker in Settings > " +"General." +msgstr "" +"¡Zenity/KDialog no están disponibles!\n" +"por favor instala alguno de ellos, o desactiva el selector de archivos del " +"sistema en Ajustes > General." + +#: src/gui/gui.cpp:5082 +msgid "" +"error while saving instrument! only the following instrument types are " +"supported:\n" +"- FM (OPN)\n" +"- SN76489/Sega PSG\n" +"- Game Boy\n" +"- PC Engine\n" +"- NES\n" +"- C64\n" +"- FM (OPLL)\n" +"- FDS" +msgstr "" +"¡hubo un error al guardar el instrumento! solo estos tipos de instrumento " +"están soportados:\n" +"- FM (OPN)\n" +"- SN76489/Sega PSG\n" +"- Game Boy\n" +"- PC Engine\n" +"- NES\n" +"- C64\n" +"- FM (OPLL)\n" +"- FDS" + +#: src/gui/gui.cpp:5110 +msgid "there were some errors while loading samples:\n" +msgstr "hubieron errores al cargar los samples:\n" + +#: src/gui/gui.cpp:5155 src/gui/gui.cpp:6339 +msgid "...but you haven't selected a sample!" +msgstr "...pero no has seleccionado un sample." + +#: src/gui/gui.cpp:5170 src/gui/gui.cpp:5179 +msgid "could not save sample! open Log Viewer for more information." +msgstr "" +"no se pudo guardar el sample! abre el visor del registro para más " +"información." + +#: src/gui/gui.cpp:5198 +msgid "there were some warnings/errors while loading instruments:\n" +msgstr "hubieron precauciones/errores emitidos al cargar instrumentos:\n" + +#: src/gui/gui.cpp:5204 +#, c-format +msgid "> %s: cannot load instrument! (%s)\n" +msgstr "> %s: ¡no se pudo cargar el instrumento! (%s)\n" + +#: src/gui/gui.cpp:5222 src/gui/gui.cpp:5276 +#, c-format +msgid "cannot load instrument! (%s)" +msgstr "¡no se pudo cargar el instrumento! (%s)" + +#: src/gui/gui.cpp:5228 +msgid "" +"congratulations! you managed to load nothing.\n" +"you are entitled to a bug report." +msgstr "" +"¡felicitaciones! has cargado nada.\n" +"te mereces un reporte de bug." + +#: src/gui/gui.cpp:5269 src/gui/gui.cpp:6243 +msgid "...but you haven't selected an instrument!" +msgstr "...pero no has seleccionado un insrumento" + +#: src/gui/gui.cpp:5281 +msgid "there were some errors while loading wavetables:\n" +msgstr "hubieron errores al cargar las ondas:\n" + +#: src/gui/gui.cpp:5290 src/gui/gui.cpp:5300 src/gui/gui.cpp:5319 +#, c-format +msgid "cannot load wavetable! (%s)" +msgstr "¡no se pudo cargar la onda! (%s)" + +#: src/gui/gui.cpp:5327 +msgid "...but you haven't selected a wavetable!" +msgstr "...pero no has seleccionado una onda." + +#: src/gui/gui.cpp:5342 src/gui/gui.cpp:5363 src/gui/gui.cpp:5387 +#: src/gui/gui.cpp:5408 +msgid "could not open file!" +msgstr "¡no se puede abrir el archivo!" + +#: src/gui/gui.cpp:5350 +#, c-format +msgid "could not write VGM! (%s)" +msgstr "¡no se puede escribir VGM! (%s)" + +#: src/gui/gui.cpp:5371 +#, c-format +msgid "Could not write ZSM! (%s)" +msgstr "¡No se puede escribir ZSM! (%s)" + +#: src/gui/gui.cpp:5395 +#, c-format +msgid "could not write text! (%s)" +msgstr "¡no se puede escribir texto! (%s)" + +#: src/gui/gui.cpp:5416 +#, c-format +msgid "could not write command stream! (%s)" +msgstr "¡no se puede escribir command stream! (%s)" + +#: src/gui/gui.cpp:5440 +msgid "could not import user presets!" +msgstr "¡no se pudo importar sistemas de usuario!" + +#: src/gui/gui.cpp:5445 src/gui/gui.cpp:5462 +#, c-format +msgid "could not import user presets! (%s)" +msgstr "¡no se pudo importar sistemas de usuario! (%s)" + +#: src/gui/gui.cpp:5483 +#, c-format +msgid "You opened: %s" +msgstr "Abriste: %s" + +#: src/gui/gui.cpp:5486 +msgid "You opened:" +msgstr "Abriste:" + +#: src/gui/gui.cpp:5494 +#, c-format +msgid "You saved: %s" +msgstr "Guardaste: %s" + +#: src/gui/gui.cpp:5515 src/gui/gui.cpp:5636 src/gui/gui.cpp:5637 +#: src/gui/insEdit.cpp:7520 +msgid "Error" +msgstr "Error" + +#: src/gui/gui.cpp:5520 src/gui/gui.cpp:6177 src/gui/gui.cpp:6178 +msgid "Select Instrument" +msgstr "Seleccionar instrumento" + +#: src/gui/gui.cpp:5525 src/gui/gui.cpp:6256 src/gui/gui.cpp:6257 +msgid "Import Raw Sample" +msgstr "Importar sample en bruto" + +#: src/gui/gui.cpp:5540 src/gui/gui.cpp:5593 src/gui/gui.cpp:5594 +msgid "Rendering..." +msgstr "Renderizando..." + +#: src/gui/gui.cpp:5595 +msgid "Please wait..." +msgstr "Por favor espere..." + +#: src/gui/gui.cpp:5596 +msgid "Abort" +msgstr "Abortar" + +#: src/gui/gui.cpp:5638 +#, c-format +msgid "%s" +msgstr "%s" + +#: src/gui/gui.cpp:5868 +msgid "Erasing" +msgstr "Eliminación" + +#: src/gui/gui.cpp:5871 +msgid "All subsongs" +msgstr "Todas las subcanciones" + +#: src/gui/gui.cpp:5878 +msgid "Current subsong" +msgstr "Subcanción actual" + +#: src/gui/gui.cpp:5945 +msgid "Optimization" +msgstr "Optimización" + +#: src/gui/gui.cpp:5948 src/gui/patManager.cpp:36 +msgid "De-duplicate patterns" +msgstr "De-duplicar patrones" + +#: src/gui/gui.cpp:5957 +msgid "Remove unused instruments" +msgstr "Remover instrumentos no usados" + +#: src/gui/gui.cpp:5970 +msgid "Remove unused samples" +msgstr "Remover samples no usados" + +#: src/gui/gui.cpp:5987 +msgid "Never mind! Cancel" +msgstr "Cancelar" + +#: src/gui/gui.cpp:6066 +msgid "Drum kit mode:" +msgstr "Modo de batería:" + +#: src/gui/gui.cpp:6070 +msgid "12 samples per octave" +msgstr "12 samples por octava" + +#: src/gui/gui.cpp:6075 +msgid "Starting octave" +msgstr "Octava inicial" + +#: src/gui/gui.cpp:6095 +msgid "Drum Kit" +msgstr "Batería" + +#: src/gui/gui.cpp:6181 +msgid "this is an instrument bank! select which one to use:" +msgstr "¡este es un banco de instrumentos! selecciona qué instrumento usar:" + +#: src/gui/gui.cpp:6184 +msgid "this is an instrument bank! select which ones to load:" +msgstr "¡este es un banco de instrumentos! selecciona qué instrumentos cargar:" + +#: src/gui/gui.cpp:6258 +msgid "Data type:" +msgstr "Tipo de datos:" + +#: src/gui/gui.cpp:6285 +msgid "(will be mixed down to mono)" +msgstr "(se convertirá a mono)" + +#: src/gui/gui.cpp:6286 +msgid "Unsigned" +msgstr "Sin signo" + +#: src/gui/gui.cpp:6290 +msgid "Big endian" +msgstr "" + +#: src/gui/gui.cpp:6298 +msgid "Swap nibbles" +msgstr "Intercambiar nibbles" + +#: src/gui/gui.cpp:6302 +msgid "Swap words" +msgstr "Intercambiar palabras" + +#: src/gui/gui.cpp:6306 +msgid "Encoding:" +msgstr "Codificación:" + +#: src/gui/gui.cpp:6319 +msgid "Reverse bit order" +msgstr "Orden de bit reverso" + +#: src/gui/gui.cpp:6361 +msgid "Error! No string provided!" +msgstr "¡Error! ¡No hay cuerda!" + +#: src/gui/gui.cpp:6683 +msgid "it appears I couldn't load these fonts. any setting you can check?" +msgstr "" +"parece que no puedo cargar esas fuentes. ¿hay algún ajuste que puedas " +"verificar?" + +#: src/gui/gui.cpp:6863 src/gui/gui.cpp:6971 +msgid "" +"could not init renderer!\n" +"falling back to software renderer. please restart Furnace." +msgstr "" +"¡no se pudo cargar el renderizador!\n" +"cambiando a renderización por software. por favor reinicia Furnace." + +#: src/gui/gui.cpp:6865 src/gui/gui.cpp:6973 +#, c-format +msgid "" +"could not init renderer! %s\n" +"falling back to software renderer. please restart Furnace." +msgstr "" +"¡no se pudo cargar el renderizador! %s\n" +"cambiando a renderización por software. por favor reinicia Furnace." + +#: src/gui/gui.cpp:6870 src/gui/gui.cpp:6978 +msgid "could not init renderer!" +msgstr "¡no se pudo cargar el renderizador!" + +#: src/gui/gui.cpp:6881 +#, c-format +msgid "could not open window! %s" +msgstr "¡no se pudo abrir la ventana! %s" + +#: src/gui/gui.cpp:6886 +msgid "" +"\n" +"falling back to software renderer. please restart Furnace." +msgstr "" +"\n" +"cambiando a renderización por software. por favor reinicia Furnace." + +#: src/gui/gui.cpp:7034 +msgid "Size column to fit###SizeOne" +msgstr "Ajustar columna para que encaje###SizeOne" + +#: src/gui/gui.cpp:7036 +msgid "Size all columns to fit###SizeAll" +msgstr "Ajustar todas las columnas para que encajen###SizeAll" + +#: src/gui/gui.cpp:7038 +msgid "Size all columns to default###SizeAll" +msgstr "Ajustar todas las columnas a tamaño original###SizeAll" + +#: src/gui/gui.cpp:7040 +msgid "Reset order###ResetOrder" +msgstr "Reestablecer orden###ResetOrder" + +#: src/gui/gui.cpp:7042 +msgid "(Main menu bar)" +msgstr "(Barra de menú principal)" + +#: src/gui/gui.cpp:7044 +msgid "(Popup)" +msgstr "(Emergente)" + +#: src/gui/gui.cpp:7046 +msgid "(Untitled)" +msgstr "(Sin título)" + +#: src/gui/gui.cpp:7048 +msgid "Hide tab bar###HideTabBar" +msgstr "Ocultar barra de tabulación###HideTabBar" + +#: src/gui/gui.cpp:7052 +msgid "LocaleSettings: ccjk" +msgstr "LocaleSettings: ccjk" + +#: src/gui/gui.cpp:7564 +msgid "Unsaved changes! Save changes before quitting?" +msgstr "¡Cambios no guardados! ¿Guardar cambios antes de salir?" + +#: src/gui/sysManager.cpp:42 +msgid "Preserve channel order" +msgstr "Preservar orden de canales" + +#: src/gui/sysManager.cpp:44 +msgid "Clone channel data" +msgstr "Clonar datos de canal" + +#: src/gui/sysManager.cpp:46 +msgid "Clone at end" +msgstr "Clonar al final" + +#: src/gui/sysManager.cpp:56 +msgid "Actions" +msgstr "Acciones" + +#: src/gui/sysManager.cpp:69 +msgid "(drag to swap chips)" +msgstr "(coger para intercambiar chips)" + +#: src/gui/sysManager.cpp:90 +msgid "Clone##SysDup" +msgstr "Clonar##SysDup" + +#: src/gui/sysManager.cpp:92 +#, c-format +msgid "cannot clone chip! (%s)" +msgstr "¡no se puede clonar chip! (%s)" + +#: src/gui/sysManager.cpp:98 +msgid "Change##SysChange" +msgstr "Cambiar##SysChange" + +#: src/gui/sysManager.cpp:120 +msgid "Are you sure you want to remove this chip?" +msgstr "¿Estás seguro que deseas remover este chip?" + +#: src/gui/patManager.cpp:43 +msgid "Re-arrange patterns" +msgstr "Ordenar patrones" + +#: src/gui/patManager.cpp:50 +msgid "Sort orders" +msgstr "Ordenar órdenes" + +#: src/gui/patManager.cpp:57 +msgid "Make patterns unique" +msgstr "Hacer los patrones únicos" + +#: src/gui/patManager.cpp:103 +#, c-format +msgid "" +"Pattern %.2X\n" +"- not allocated" +msgstr "" +"Patrón %.2X\n" +"- no reservado" + +#: src/gui/patManager.cpp:105 +#, c-format +msgid "" +"Pattern %.2X\n" +"- use count: %d (%.0f%%)\n" +"\n" +"right-click to erase" +msgstr "" +"Patrón %.2X\n" +"- número de usos: %d (%.0f%%)\n" +"\n" +"clic derecho para borrar" + +#: src/gui/insEdit.cpp:39 +msgid "Down Down Down" +msgstr "Abajo Abajo" + +#: src/gui/insEdit.cpp:40 +msgid "Down." +msgstr "Abajo." + +#: src/gui/insEdit.cpp:41 +msgid "Down Up Down Up" +msgstr "Abajo Arriba" + +#: src/gui/insEdit.cpp:42 +msgid "Down UP" +msgstr "Abajo ARRIBA" + +#: src/gui/insEdit.cpp:43 +msgid "Up Up Up" +msgstr "Arriba Arriba" + +#: src/gui/insEdit.cpp:44 +msgid "Up." +msgstr "Arriba." + +#: src/gui/insEdit.cpp:45 +msgid "Up Down Up Down" +msgstr "Arriba Abajo" + +#: src/gui/insEdit.cpp:46 +msgid "Up DOWN" +msgstr "Arriba ABAJO" + +#: src/gui/insEdit.cpp:50 +msgid "Algorithm" +msgstr "Algoritmo" + +#: src/gui/insEdit.cpp:50 +msgid "Feedback" +msgstr "Retroalim" + +#: src/gui/insEdit.cpp:50 +msgid "LFO > Freq" +msgstr "LFO > Frec" + +#: src/gui/insEdit.cpp:50 +msgid "LFO > Amp" +msgstr "LFO > Amp" + +#: src/gui/insEdit.cpp:50 +msgid "Decay 2" +msgstr "Caída 2" + +#: src/gui/insEdit.cpp:50 +msgid "EnvScale" +msgstr "EscalaEnv" + +#: src/gui/insEdit.cpp:50 +msgid "Multiplier" +msgstr "Multiplicador" + +#: src/gui/insEdit.cpp:50 +msgid "Detune 2" +msgstr "Desafinación 2" + +#: src/gui/insEdit.cpp:50 +msgid "AM" +msgstr "AM" + +#: src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:5438 src/gui/insEdit.cpp:6516 +msgid "AM Depth" +msgstr "Profundidad AM" + +#: src/gui/insEdit.cpp:50 +msgid "Vibrato Depth" +msgstr "Profundidad Vibrato" + +#: src/gui/insEdit.cpp:50 +msgid "Sustained" +msgstr "Sostener" + +#: src/gui/insEdit.cpp:50 +msgid "Level Scaling" +msgstr "Escala Nivel" + +#: src/gui/insEdit.cpp:50 +msgid "Vibrato" +msgstr "Vibrato" + +#: src/gui/insEdit.cpp:50 +msgid "Scale Rate" +msgstr "Tasa Escala" + +#: src/gui/insEdit.cpp:50 +msgid "OP2 Half Sine" +msgstr "OP2 Mitad Seno" + +#: src/gui/insEdit.cpp:50 +msgid "OP1 Half Sine" +msgstr "OP1 Mitad Seno" + +#: src/gui/insEdit.cpp:50 +msgid "EnvShift" +msgstr "TurnoEnv" + +#: src/gui/insEdit.cpp:50 +msgid "Reverb" +msgstr "Reverb" + +#: src/gui/insEdit.cpp:50 +msgid "Fine" +msgstr "Fino" + +#: src/gui/insEdit.cpp:50 +msgid "LFO2 > Freq" +msgstr "LFO2 > Frec" + +#: src/gui/insEdit.cpp:50 +msgid "LFO2 > Amp" +msgstr "LFO2 > Amp" + +#: src/gui/insEdit.cpp:56 src/gui/insEdit.cpp:68 src/gui/insEdit.cpp:7391 +msgid "OP4 Noise Mode" +msgstr "Modo Ruido OP4" + +#: src/gui/insEdit.cpp:57 +msgid "Envelope Delay" +msgstr "Retraso Envelope" + +#: src/gui/insEdit.cpp:58 src/gui/insEdit.cpp:70 +msgid "Output Level" +msgstr "Nivel Salida" + +#: src/gui/insEdit.cpp:59 +msgid "Modulation Input Level" +msgstr "Nivel Entra Modulación" + +#: src/gui/insEdit.cpp:60 +msgid "Left Output" +msgstr "Salida Izq" + +#: src/gui/insEdit.cpp:61 +msgid "Right Output" +msgstr "Salida Der" + +#: src/gui/insEdit.cpp:62 +msgid "Coarse Tune (semitones)" +msgstr "Tono grueso (semitonos)" + +#: src/gui/insEdit.cpp:64 +msgid "Fixed Frequency Mode" +msgstr "Modo Frecuencia Fija" + +#: src/gui/insEdit.cpp:69 +msgid "Env. Delay" +msgstr "Retraso Env." + +#: src/gui/insEdit.cpp:71 +msgid "ModInput" +msgstr "EntraMod" + +#: src/gui/insEdit.cpp:72 +msgid "Left" +msgstr "Izquierda" + +#: src/gui/insEdit.cpp:73 +msgid "Right" +msgstr "Derecha" + +#: src/gui/insEdit.cpp:74 +msgid "Tune" +msgstr "Afinar" + +#: src/gui/insEdit.cpp:76 src/gui/insEdit.cpp:610 src/gui/insEdit.cpp:3792 +#: src/gui/insEdit.cpp:4554 src/gui/insEdit.cpp:4848 +msgid "Fixed" +msgstr "Fijo" + +#: src/gui/insEdit.cpp:98 src/gui/insEdit.cpp:117 src/gui/insEdit.cpp:136 +#: src/gui/insEdit.cpp:156 +msgid "User" +msgstr "Usuario" + +#: src/gui/insEdit.cpp:99 +msgid "1. Violin" +msgstr "1. Violín" + +#: src/gui/insEdit.cpp:100 src/gui/insEdit.cpp:138 src/gui/insEdit.cpp:158 +msgid "2. Guitar" +msgstr "2. Guitarra" + +#: src/gui/insEdit.cpp:101 src/gui/insEdit.cpp:159 +msgid "3. Piano" +msgstr "3. Piano" + +#: src/gui/insEdit.cpp:102 src/gui/insEdit.cpp:160 +msgid "4. Flute" +msgstr "4. Flauta" + +#: src/gui/insEdit.cpp:103 src/gui/insEdit.cpp:122 src/gui/insEdit.cpp:161 +msgid "5. Clarinet" +msgstr "5. Clarinete" + +#: src/gui/insEdit.cpp:104 +msgid "6. Oboe" +msgstr "6. Oboe" + +#: src/gui/insEdit.cpp:105 src/gui/insEdit.cpp:124 src/gui/insEdit.cpp:143 +#: src/gui/insEdit.cpp:163 +msgid "7. Trumpet" +msgstr "7. Trompeta" + +#: src/gui/insEdit.cpp:106 +msgid "8. Organ" +msgstr "8. Órgano" + +#: src/gui/insEdit.cpp:107 +msgid "9. Horn" +msgstr "9. Bocina" + +#: src/gui/insEdit.cpp:108 +msgid "10. Synth" +msgstr "10. Sintetizador" + +#: src/gui/insEdit.cpp:109 +msgid "11. Harpsichord" +msgstr "11. Clavecín" + +#: src/gui/insEdit.cpp:110 src/gui/insEdit.cpp:129 src/gui/insEdit.cpp:148 +msgid "12. Vibraphone" +msgstr "12. Vibráfono" + +#: src/gui/insEdit.cpp:111 +msgid "13. Synth Bass" +msgstr "13. Bajo Sintetizado" + +#: src/gui/insEdit.cpp:112 +msgid "14. Acoustic Bass" +msgstr "14. Bajo Acústico" + +#: src/gui/insEdit.cpp:113 +msgid "15. Electric Guitar" +msgstr "15. Guitarra Eléctrica" + +#: src/gui/insEdit.cpp:114 src/gui/insEdit.cpp:133 src/gui/insEdit.cpp:152 +#: src/gui/insEdit.cpp:172 src/gui/insEdit.cpp:3176 +msgid "Drums" +msgstr "Percusión" + +#: src/gui/insEdit.cpp:118 +msgid "1. Electric String" +msgstr "1. Cuerda Eléctrica" + +#: src/gui/insEdit.cpp:119 +msgid "2. Bow wow" +msgstr "2. Wow arco" + +#: src/gui/insEdit.cpp:120 src/gui/insEdit.cpp:139 +msgid "3. Electric Guitar" +msgstr "3. Guitarra Eléctrica" + +#: src/gui/insEdit.cpp:121 +msgid "4. Organ" +msgstr "4. Órgano" + +#: src/gui/insEdit.cpp:123 +msgid "6. Saxophone" +msgstr "6. Saxofón" + +#: src/gui/insEdit.cpp:125 +msgid "8. Street Organ" +msgstr "8. Órgano Callejero" + +#: src/gui/insEdit.cpp:126 +msgid "9. Synth Brass" +msgstr "9. Brass Sintetizado" + +#: src/gui/insEdit.cpp:127 +msgid "10. Electric Piano" +msgstr "10. Piano Eléctrico" + +#: src/gui/insEdit.cpp:128 +msgid "11. Bass" +msgstr "11. Bajo" + +#: src/gui/insEdit.cpp:130 +msgid "13. Chime" +msgstr "13. Campanilla" + +#: src/gui/insEdit.cpp:131 +msgid "14. Tom Tom II" +msgstr "14. Tom Tom II" + +#: src/gui/insEdit.cpp:132 +msgid "15. Noise" +msgstr "15. Ruido" + +#: src/gui/insEdit.cpp:137 +msgid "1. Strings" +msgstr "1. Cuerdas" + +#: src/gui/insEdit.cpp:140 +msgid "4. Electric Piano" +msgstr "4. Piano Eléctrico" + +#: src/gui/insEdit.cpp:141 +msgid "5. Flute" +msgstr "5. Flauta" + +#: src/gui/insEdit.cpp:142 +msgid "6. Marimba" +msgstr "6. Marimba" + +#: src/gui/insEdit.cpp:144 +msgid "8. Harmonica" +msgstr "8. Armónica" + +#: src/gui/insEdit.cpp:145 +msgid "9. Tuba" +msgstr "9. Tuba" + +#: src/gui/insEdit.cpp:146 +msgid "10. Synth Brass" +msgstr "10. Brass Sintetizado" + +#: src/gui/insEdit.cpp:147 +msgid "11. Short Saw" +msgstr "11. Sierra Corta" + +#: src/gui/insEdit.cpp:149 +msgid "13. Electric Guitar 2" +msgstr "13. Guitarra Eléctrica 2" + +#: src/gui/insEdit.cpp:150 +msgid "14. Synth Bass" +msgstr "14. Bajo Sintetizado" + +#: src/gui/insEdit.cpp:151 +msgid "15. Sitar" +msgstr "15. Sitara" + +#: src/gui/insEdit.cpp:157 +msgid "1. Bell" +msgstr "1. Campana" + +#: src/gui/insEdit.cpp:162 +msgid "6. Rattling Bell" +msgstr "6. Cascabel" + +#: src/gui/insEdit.cpp:164 +msgid "8. Reed Organ" +msgstr "8. Órgano de Caña" + +#: src/gui/insEdit.cpp:165 +msgid "9. Soft Bell" +msgstr "9. Campana Suave" + +#: src/gui/insEdit.cpp:166 +msgid "10. Xylophone" +msgstr "10. Xilófono" + +#: src/gui/insEdit.cpp:167 +msgid "11. Vibraphone" +msgstr "11. Vibráfono" + +#: src/gui/insEdit.cpp:168 +msgid "12. Brass" +msgstr "12. Brass" + +#: src/gui/insEdit.cpp:169 +msgid "13. Bass Guitar" +msgstr "13. Guitarra Bajo" + +#: src/gui/insEdit.cpp:170 +msgid "14. Synth" +msgstr "14. Sintetizador" + +#: src/gui/insEdit.cpp:171 +msgid "15. Chorus" +msgstr "15. Coro" + +#: src/gui/insEdit.cpp:178 src/gui/insEdit.cpp:189 +msgid "Half Sine" +msgstr "Seno Mitad" + +#: src/gui/insEdit.cpp:179 src/gui/insEdit.cpp:190 +msgid "Absolute Sine" +msgstr "Seno Absoluto" + +#: src/gui/insEdit.cpp:180 +msgid "Quarter Sine" +msgstr "Seno Cuarta" + +#: src/gui/insEdit.cpp:181 src/gui/insEdit.cpp:203 +msgid "Squished Sine" +msgstr "Seno Aplastado" + +#: src/gui/insEdit.cpp:182 src/gui/insEdit.cpp:205 +msgid "Squished AbsSine" +msgstr "SenoAbs Aplastado" + +#: src/gui/insEdit.cpp:184 src/gui/insEdit.cpp:195 +msgid "Derived Square" +msgstr "Cuadrado Derivado" + +#: src/gui/insEdit.cpp:191 +msgid "Pulse Sine" +msgstr "Seno Pulso" + +#: src/gui/insEdit.cpp:192 +msgid "Sine (Even Periods)" +msgstr "Seno (Periodos Pares)" + +#: src/gui/insEdit.cpp:193 +msgid "AbsSine (Even Periods)" +msgstr "SenoAbs (Periodos Pares)" + +#: src/gui/insEdit.cpp:201 +msgid "Cut Sine" +msgstr "Seno cortado" + +#: src/gui/insEdit.cpp:202 +msgid "Cut Triangle" +msgstr "Triángulo cortado" + +#: src/gui/insEdit.cpp:204 +msgid "Squished Triangle" +msgstr "Triángulo aplastado" + +#: src/gui/insEdit.cpp:206 +msgid "Squished AbsTriangle" +msgstr "TriánguloAbs aplastado" + +#: src/gui/insEdit.cpp:224 +msgid "Noise disabled" +msgstr "Ruido desactivado" + +#: src/gui/insEdit.cpp:225 +msgid "Square + noise" +msgstr "Cuadrado + ruido" + +#: src/gui/insEdit.cpp:226 +msgid "Ringmod from OP3 + noise" +msgstr "Mod de Aro del OP3 + ruido" + +#: src/gui/insEdit.cpp:227 +msgid "" +"Ringmod from OP3 + double pitch ModInput\n" +"WARNING - has emulation issues; subject to change" +msgstr "" +"Mod de Aro del OP3 + doble tono EntradaMod\n" +"ALERTA - problemas de emulación; sujeto a cambio" + +#: src/gui/insEdit.cpp:232 +msgid "Bitwise AND" +msgstr "Y de bits" + +#: src/gui/insEdit.cpp:233 +msgid "Bitwise OR" +msgstr "O de bits" + +#: src/gui/insEdit.cpp:234 +msgid "Bitwise XOR" +msgstr "XOR de bits" + +#: src/gui/insEdit.cpp:239 src/gui/insEdit.cpp:390 +msgid "gate" +msgstr "puerta" + +#: src/gui/insEdit.cpp:240 src/gui/insEdit.cpp:391 +msgid "sync" +msgstr "sincronizar" + +#: src/gui/insEdit.cpp:241 src/gui/insEdit.cpp:392 +msgid "ring" +msgstr "aro" + +#: src/gui/insEdit.cpp:327 +msgid "How did you even" +msgstr "Cómo pudiste" + +#: src/gui/insEdit.cpp:335 +msgid "triangle" +msgstr "triángulo" + +#: src/gui/insEdit.cpp:336 src/gui/insEdit.cpp:5821 +msgid "saw" +msgstr "sierra" + +#: src/gui/insEdit.cpp:337 src/gui/insEdit.cpp:5827 +msgid "pulse" +msgstr "pulso" + +#: src/gui/insEdit.cpp:338 src/gui/insEdit.cpp:344 src/gui/insEdit.cpp:373 +#: src/gui/insEdit.cpp:424 src/gui/insEdit.cpp:429 src/gui/insEdit.cpp:5833 +msgid "noise" +msgstr "ruido" + +#: src/gui/insEdit.cpp:343 +msgid "tone" +msgstr "tono" + +#: src/gui/insEdit.cpp:345 +msgid "envelope" +msgstr "envelope" + +#: src/gui/insEdit.cpp:350 +msgid "hold" +msgstr "sostener" + +#: src/gui/insEdit.cpp:351 +msgid "alternate" +msgstr "alternar" + +#: src/gui/insEdit.cpp:352 src/gui/insEdit.cpp:364 +msgid "direction" +msgstr "dirección" + +#: src/gui/insEdit.cpp:353 src/gui/insEdit.cpp:436 +msgid "enable" +msgstr "activar" + +#: src/gui/insEdit.cpp:357 src/gui/insEdit.cpp:368 +msgid "enabled" +msgstr "activado" + +#: src/gui/insEdit.cpp:361 +msgid "mirror" +msgstr "espejo" + +#: src/gui/insEdit.cpp:365 +msgid "resolution" +msgstr "resolución" + +#: src/gui/insEdit.cpp:366 +msgid "fixed" +msgstr "fijo" + +#: src/gui/insEdit.cpp:367 +msgid "N/A" +msgstr "N/D" + +#: src/gui/insEdit.cpp:374 +msgid "echo" +msgstr "eco" + +#: src/gui/insEdit.cpp:375 +msgid "pitch mod" +msgstr "mod tono" + +#: src/gui/insEdit.cpp:376 src/gui/insEdit.cpp:508 +msgid "invert right" +msgstr "invertir derecha" + +#: src/gui/insEdit.cpp:377 src/gui/insEdit.cpp:509 +msgid "invert left" +msgstr "invertir izquierda" + +#: src/gui/insEdit.cpp:382 src/gui/insEdit.cpp:5905 +msgid "low" +msgstr "bajo" + +#: src/gui/insEdit.cpp:383 src/gui/insEdit.cpp:5911 +msgid "band" +msgstr "banda" + +#: src/gui/insEdit.cpp:384 src/gui/insEdit.cpp:5917 +msgid "high" +msgstr "alto" + +#: src/gui/insEdit.cpp:385 src/gui/insEdit.cpp:5924 +msgid "ch3off" +msgstr "canal 3 apagado" + +#: src/gui/insEdit.cpp:393 +msgid "test" +msgstr "prueba" + +#: src/gui/insEdit.cpp:398 +msgid "15KHz" +msgstr "15KHz" + +#: src/gui/insEdit.cpp:399 +msgid "filter 2+4" +msgstr "filtro 2+4" + +#: src/gui/insEdit.cpp:400 +msgid "filter 1+3" +msgstr "filtro 1+3" + +#: src/gui/insEdit.cpp:401 +msgid "16-bit 3+4" +msgstr "16-bit 3+4" + +#: src/gui/insEdit.cpp:402 +msgid "16-bit 1+2" +msgstr "16-bit 1+2" + +#: src/gui/insEdit.cpp:403 +msgid "high3" +msgstr "alto3" + +#: src/gui/insEdit.cpp:404 +msgid "high1" +msgstr "alto1" + +#: src/gui/insEdit.cpp:405 +msgid "poly9" +msgstr "poli9" + +#: src/gui/insEdit.cpp:414 +msgid "16'" +msgstr "16'" + +#: src/gui/insEdit.cpp:415 +msgid "8'" +msgstr "8'" + +#: src/gui/insEdit.cpp:416 +msgid "4'" +msgstr "4'" + +#: src/gui/insEdit.cpp:417 +msgid "2'" +msgstr "2'" + +#: src/gui/insEdit.cpp:418 +msgid "sustain" +msgstr "sostener" + +#: src/gui/insEdit.cpp:423 +msgid "square" +msgstr "cuadrado" + +#: src/gui/insEdit.cpp:431 +msgid "surround" +msgstr "envolvente" + +#: src/gui/insEdit.cpp:437 +msgid "oneshot" +msgstr "un disparo" + +#: src/gui/insEdit.cpp:438 +msgid "split L/R" +msgstr "separado I/D" + +#: src/gui/insEdit.cpp:439 +msgid "HinvR" +msgstr "HvoltearD" + +#: src/gui/insEdit.cpp:440 +msgid "VinvR" +msgstr "VvoltearD" + +#: src/gui/insEdit.cpp:441 +msgid "HinvL" +msgstr "HvoltearI" + +#: src/gui/insEdit.cpp:442 +msgid "VinvL" +msgstr "VvoltearI" + +#: src/gui/insEdit.cpp:447 src/gui/insEdit.cpp:476 +msgid "ring mod" +msgstr "mod aro" + +#: src/gui/insEdit.cpp:448 +msgid "low pass" +msgstr "paso bajo" + +#: src/gui/insEdit.cpp:449 src/gui/insEdit.cpp:475 +msgid "high pass" +msgstr "paso alto" + +#: src/gui/insEdit.cpp:450 +msgid "band pass" +msgstr "paso banda" + +#: src/gui/insEdit.cpp:459 +msgid "enable tap B" +msgstr "activar tap B" + +#: src/gui/insEdit.cpp:460 +msgid "AM with slope" +msgstr "AM con pendiente" + +#: src/gui/insEdit.cpp:465 +msgid "invert B" +msgstr "invertir B" + +#: src/gui/insEdit.cpp:466 +msgid "invert A" +msgstr "invertir A" + +#: src/gui/insEdit.cpp:467 +msgid "reset B" +msgstr "reiniciar B" + +#: src/gui/insEdit.cpp:468 +msgid "reset A" +msgstr "reiniciar A" + +#: src/gui/insEdit.cpp:469 +msgid "clip B" +msgstr "limitar B" + +#: src/gui/insEdit.cpp:470 +msgid "clip A" +msgstr "limitar A" + +#: src/gui/insEdit.cpp:477 +msgid "swap counters (noise)" +msgstr "intercambio de contadores (ruido)" + +#: src/gui/insEdit.cpp:478 +msgid "low pass (noise)" +msgstr "paso bajo (ruido)" + +#: src/gui/insEdit.cpp:485 +msgid "rear right" +msgstr "trasero derecha" + +#: src/gui/insEdit.cpp:486 +msgid "rear left" +msgstr "trasero izquierda" + +#: src/gui/insEdit.cpp:491 +msgid "on" +msgstr "encendido" + +#: src/gui/insEdit.cpp:496 +msgid "k1 slowdown" +msgstr "c1 lento" + +#: src/gui/insEdit.cpp:497 +msgid "k2 slowdown" +msgstr "c2 lento" + +#: src/gui/insEdit.cpp:502 +msgid "pause" +msgstr "pausar" + +#: src/gui/insEdit.cpp:503 +msgid "reverse" +msgstr "al revés" + +#: src/gui/insEdit.cpp:521 +msgid "Subtract" +msgstr "Sustraer" + +#: src/gui/insEdit.cpp:522 +msgid "Average" +msgstr "Promedio" + +#: src/gui/insEdit.cpp:523 src/gui/insEdit.cpp:2037 +msgid "Phase" +msgstr "Fase" + +#: src/gui/insEdit.cpp:524 +msgid "Chorus" +msgstr "Coro" + +#: src/gui/insEdit.cpp:528 +msgid "None (dual)" +msgstr "Ninguno (dual)" + +#: src/gui/insEdit.cpp:529 +msgid "Wipe" +msgstr "Limpiar" + +#: src/gui/insEdit.cpp:531 +msgid "Fade (ping-pong)" +msgstr "Desvanecer (ping-pong)" + +#: src/gui/insEdit.cpp:532 +msgid "Overlay" +msgstr "Superposición" + +#: src/gui/insEdit.cpp:533 +msgid "Negative Overlay" +msgstr "Superposición Negativa" + +#: src/gui/insEdit.cpp:534 +msgid "Slide" +msgstr "Deslizar" + +#: src/gui/insEdit.cpp:535 +msgid "Mix Chorus" +msgstr "Coro Mezcla" + +#: src/gui/insEdit.cpp:536 +msgid "Phase Modulation" +msgstr "Modulación de Fase" + +#: src/gui/insEdit.cpp:541 +msgid "Sweep" +msgstr "Barrer" + +#: src/gui/insEdit.cpp:542 src/gui/insEdit.cpp:552 +msgid "Wait" +msgstr "Esperar" + +#: src/gui/insEdit.cpp:543 src/gui/insEdit.cpp:553 +msgid "Wait for Release" +msgstr "Esperar al Lanzamiento" + +#: src/gui/insEdit.cpp:545 src/gui/insEdit.cpp:555 +msgid "Loop until Release" +msgstr "Repetir hasta el Lanzamiento" + +#: src/gui/insEdit.cpp:549 +msgid "Volume Sweep" +msgstr "Barrido de Volumen" + +#: src/gui/insEdit.cpp:550 +msgid "Frequency Sweep" +msgstr "Barrido de Frecuencia" + +#: src/gui/insEdit.cpp:551 +msgid "Cutoff Sweep" +msgstr "Barrido del Límite" + +#: src/gui/insEdit.cpp:559 src/gui/insEdit.cpp:6604 +msgid "Direct" +msgstr "Directo" + +#: src/gui/insEdit.cpp:560 src/gui/insEdit.cpp:6608 +msgid "Decrease (linear)" +msgstr "Disminuir (lineal)" + +#: src/gui/insEdit.cpp:561 src/gui/insEdit.cpp:6612 +msgid "Decrease (logarithmic)" +msgstr "Disminuir (logarítmico)" + +#: src/gui/insEdit.cpp:562 src/gui/insEdit.cpp:6616 +msgid "Increase (linear)" +msgstr "Aumentar (lineal)" + +#: src/gui/insEdit.cpp:563 src/gui/insEdit.cpp:6620 +msgid "Increase (bent line)" +msgstr "Aumentar (línea doblada)" + +#: src/gui/insEdit.cpp:611 +msgid "Relative" +msgstr "Relativo" + +#: src/gui/insEdit.cpp:616 +#, c-format +msgid "%d: +%d (exponential)" +msgstr "%d: +%d (exponencial)" + +#: src/gui/insEdit.cpp:619 +#, c-format +msgid "%d: +%d (linear)" +msgstr "%d: +%d (lineal)" + +#: src/gui/insEdit.cpp:622 +#, c-format +msgid "%d: -%d (exponential)" +msgstr "%d: -%d (exponencial)" + +#: src/gui/insEdit.cpp:625 +#, c-format +msgid "%d: -%d (linear)" +msgstr "%d: -%d (lineal)" + +#: src/gui/insEdit.cpp:627 +#, c-format +msgid "%d: %d (direct)" +msgstr "%d: %d (directo)" + +#: src/gui/insEdit.cpp:660 +msgid "Random" +msgstr "Aleatorio" + +#: src/gui/insEdit.cpp:1610 +msgid "" +"left click to restart\n" +"middle click to pause\n" +"right click to see algorithm" +msgstr "" + +#: src/gui/insEdit.cpp:1620 +msgid "" +"left click to configure TL scaling\n" +"right click to see FM preview" +msgstr "" +"clic izquierdo para configurar escala del TL\n" +"clic derecho para la vista previa FM" + +#: src/gui/insEdit.cpp:1624 +msgid "right click to see FM preview" +msgstr "clic derecho para la vista previa FM" + +#: src/gui/insEdit.cpp:1639 +msgid "operator level changes with volume?" +msgstr "¿nivel de operador cambia con volumen?" + +#: src/gui/insEdit.cpp:1648 +msgid "AUTO##OPKVS" +msgstr "" + +#: src/gui/insEdit.cpp:1650 +msgid "NO##OPKVS" +msgstr "" + +#: src/gui/insEdit.cpp:1652 +msgid "YES##OPKVS" +msgstr "SÍ##OPKVS" + +#: src/gui/insEdit.cpp:1900 src/gui/insEdit.cpp:2005 +msgid "Bottom" +msgstr "Inferior" + +#: src/gui/insEdit.cpp:1940 +msgid "Hold" +msgstr "Sostener" + +#: src/gui/insEdit.cpp:1949 +msgid "SusTime" +msgstr "TiempoSos" + +#: src/gui/insEdit.cpp:1969 +msgid "SusDecay" +msgstr "CaídaSos" + +#: src/gui/insEdit.cpp:2047 +msgid "Shape" +msgstr "Forma" + +#: src/gui/insEdit.cpp:2100 +msgid "Macro type: Sequence" +msgstr "Tipo de macro: Secuencia" + +#: src/gui/insEdit.cpp:2103 +msgid "Macro type: ADSR" +msgstr "Tipo de macro: ADSR" + +#: src/gui/insEdit.cpp:2106 +msgid "Macro type: LFO" +msgstr "Tipo de macro: LFO" + +#: src/gui/insEdit.cpp:2109 +msgid "Macro type: What's going on here?" +msgstr "Tipo de macro: ¿Qué está pasando?" + +#: src/gui/insEdit.cpp:2122 +msgid "Delay/Step Length" +msgstr "Retraso/Longitud de Paso" + +#: src/gui/insEdit.cpp:2125 +msgid "Step Length (ticks)##IMacroSpeed" +msgstr "Longitud de Paso (ticks)##IMacroSpeed" + +#: src/gui/insEdit.cpp:2129 +msgid "Delay##IMacroDelay" +msgstr "Retraso##IMacroDelay" + +#: src/gui/insEdit.cpp:2142 +msgid "Release mode: Active (jump to release pos)" +msgstr "Modo de lanzamiento: Activo (saltar al punto de lanzamiento)" + +#: src/gui/insEdit.cpp:2144 +msgid "Release mode: Passive (delayed release)" +msgstr "Modo de lanzamiento: Pasivo (lanzamiento tardío)" + +#: src/gui/insEdit.cpp:2393 +msgid "StepLen" +msgstr "LongPaso" + +#: src/gui/insEdit.cpp:2401 +msgid "Delay" +msgstr "Retraso" + +#: src/gui/insEdit.cpp:2425 +msgid "The heck? No, this isn't even working correctly..." +msgstr "¿Qué rayos? No, esto ni siquiera está funcionando correctamente..." + +#: src/gui/insEdit.cpp:2428 +msgid "The only problem with that selectedMacro is that it's a bug..." +msgstr "El único problema con ese selectedMacro es que es un bug..." + +#: src/gui/insEdit.cpp:2589 +msgid "(copying)" +msgstr "(copiando)" + +#: src/gui/insEdit.cpp:2591 +msgid "(swapping)" +msgstr "(intercambiando)" + +#: src/gui/insEdit.cpp:2595 +msgid "" +"- drag to swap operator\n" +"- shift-drag to copy operator" +msgstr "" +"- coge para intercambiar operador\n" +"- shift-coge para copiar operador" + +#: src/gui/insEdit.cpp:2632 +msgid "new DPCM features disabled (compatibility)!" +msgstr "¡nuevas funciones DPCM desactivadas (compatibilidad)!" + +#: src/gui/insEdit.cpp:2633 +msgid "click here to enable them." +msgstr "haz clic aquí para activarlas." + +#: src/gui/insEdit.cpp:2644 +msgid "none selected" +msgstr "ninguno seleccionado" + +#: src/gui/insEdit.cpp:2657 +msgid "Use sample" +msgstr "Usar sample" + +#: src/gui/insEdit.cpp:2659 +msgid "Sample bank slot##BANKSLOT" +msgstr "Casillero de banco de samples##BANKSLOT" + +#: src/gui/insEdit.cpp:2681 +msgid "Use wavetable (Amiga/Generic DAC only)" +msgstr "Usar onda (solamente en Amiga/DAC Genérico)" + +#: src/gui/insEdit.cpp:2681 +msgid "Use wavetable" +msgstr "Usar onda" + +#: src/gui/insEdit.cpp:2708 +msgid "Use sample map" +msgstr "Usar mapa de samples" + +#: src/gui/insEdit.cpp:2730 +msgid "delta" +msgstr "delta" + +#: src/gui/insEdit.cpp:2736 +msgid "sample name" +msgstr "nombre del sample" + +#: src/gui/insEdit.cpp:3001 +msgid "set entire map to this pitch" +msgstr "usar este tono para todo el mapa" + +#: src/gui/insEdit.cpp:3009 +msgid "set entire map to this delta counter value" +msgstr "usar este valor del contador delta para todo el mapa" + +#: src/gui/insEdit.cpp:3018 +msgid "set entire map to this note" +msgstr "usar esta nota para todo el mapa" + +#: src/gui/insEdit.cpp:3027 +msgid "set entire map to this sample" +msgstr "usar este sample para todo el mapa" + +#: src/gui/insEdit.cpp:3037 +msgid "reset pitches" +msgstr "reiniciar tonos" + +#: src/gui/insEdit.cpp:3042 +msgid "clear delta counter values" +msgstr "borrar valores del contador delta" + +#: src/gui/insEdit.cpp:3048 +msgid "reset notes" +msgstr "reiniciar notas" + +#: src/gui/insEdit.cpp:3054 +msgid "clear map samples" +msgstr "borrar samples mapeados" + +#: src/gui/insEdit.cpp:3148 +msgid "Request from TX81Z" +msgstr "Pedir del TX81Z" + +#: src/gui/insEdit.cpp:3234 +#, c-format +msgid "%s name" +msgstr "%s nombre" + +#: src/gui/insEdit.cpp:3286 +msgid "Fixed frequency mode" +msgstr "Modo de frecuencia fija" + +#: src/gui/insEdit.cpp:3288 +msgid "" +"when enabled, drums will be set to the specified frequencies, ignoring the " +"note." +msgstr "" + +#: src/gui/insEdit.cpp:3296 +msgid "Drum" +msgstr "Percusión" + +#: src/gui/insEdit.cpp:3298 src/gui/insEdit.cpp:3798 src/gui/insEdit.cpp:3904 +#: src/gui/insEdit.cpp:4404 src/gui/insEdit.cpp:4468 src/gui/insEdit.cpp:5068 +#: src/gui/insEdit.cpp:5518 +msgid "Block" +msgstr "Bloque" + +#: src/gui/insEdit.cpp:3300 src/gui/insEdit.cpp:3803 src/gui/insEdit.cpp:3909 +#: src/gui/insEdit.cpp:4993 src/gui/insEdit.cpp:5079 src/gui/insEdit.cpp:5519 +msgid "FreqNum" +msgstr "NúmFrec" + +#: src/gui/insEdit.cpp:3303 +msgid "Snare/Hi-hat" +msgstr "" + +#: src/gui/insEdit.cpp:3304 +msgid "Tom/Top" +msgstr "" + +#: src/gui/insEdit.cpp:3314 +msgid "Volume##TL" +msgstr "Volumen##TL" + +#: src/gui/insEdit.cpp:3316 +msgid "this volume slider only works in compatibility (non-drums) system." +msgstr "" +"este control de volumen solamente funciona en el sistema de compatibilidad " +"(sin percusión)." + +#: src/gui/insEdit.cpp:3626 +msgid "Env" +msgstr "Env" + +#: src/gui/insEdit.cpp:3980 src/gui/insEdit.cpp:4346 src/gui/insEdit.cpp:4396 +#: src/gui/insEdit.cpp:5104 +msgid "OPL2/3 only (last 4 waveforms are OPL3 only)" +msgstr "Solo OPL2/3 (últimas 4 ondas solamente en OPL3)" + +#: src/gui/insEdit.cpp:4079 src/gui/insEdit.cpp:4788 +#, c-format +msgid "Envelope 2 (kick only)" +msgstr "Envelope 2 (solo patear)" + +#: src/gui/insEdit.cpp:4084 +#, c-format +msgid "Operator %d" +msgstr "Operador %d" + +#: src/gui/insEdit.cpp:4414 +msgid "Freq" +msgstr "Frec" + +#: src/gui/insEdit.cpp:4443 +msgid "Only on YM2151 (OPM)" +msgstr "Solo en YM2151 (OPM)" + +#: src/gui/insEdit.cpp:4466 +msgid "Blk" +msgstr "Blq" + +#: src/gui/insEdit.cpp:4479 +msgid "F" +msgstr "F" + +#: src/gui/insEdit.cpp:4481 +msgid "Frequency (F-Num)" +msgstr "Frecuencia (F-Num)" + +#: src/gui/insEdit.cpp:4833 +msgid "SSG On" +msgstr "SSG Activo" + +#: src/gui/insEdit.cpp:5206 src/gui/insEdit.cpp:5207 +msgid "waiting..." +msgstr "esperando..." + +#: src/gui/insEdit.cpp:5210 src/gui/insEdit.cpp:5211 +msgid "no instrument selected" +msgstr "no se ha seleccionado un instrumento" + +#: src/gui/insEdit.cpp:5393 +msgid "" +"none of the currently present chips are able to play this instrument type!" +msgstr "" +"¡ninguno de los chips presentes puede reproducir este tipo de instrumento!" + +#: src/gui/insEdit.cpp:5413 +msgid "FM Macros" +msgstr "Macros FM" + +#: src/gui/insEdit.cpp:5435 src/gui/insEdit.cpp:5440 +msgid "LFO Speed" +msgstr "Veloc LFO" + +#: src/gui/insEdit.cpp:5439 src/gui/insEdit.cpp:6514 +msgid "PM Depth" +msgstr "Prof PM" + +#: src/gui/insEdit.cpp:5441 +msgid "LFO Shape" +msgstr "Forma LFO" + +#: src/gui/insEdit.cpp:5444 +msgid "OpMask" +msgstr "Màscara" + +#: src/gui/insEdit.cpp:5446 +msgid "AM Depth 2" +msgstr "Prof AM 2" + +#: src/gui/insEdit.cpp:5447 +msgid "PM Depth 2" +msgstr "Prof PM 2" + +#: src/gui/insEdit.cpp:5448 +msgid "LFO2 Speed" +msgstr "Veloc LFO2" + +#: src/gui/insEdit.cpp:5449 +msgid "LFO2 Shape" +msgstr "Forma LFO2" + +#: src/gui/insEdit.cpp:5458 +#, c-format +msgid "Operator Macros" +msgstr "Macros del Operador" + +#: src/gui/insEdit.cpp:5460 +#, c-format +msgid "OP%d Macros" +msgstr "Macros del OP%d" + +#: src/gui/insEdit.cpp:5521 +msgid "Op. Arpeggio" +msgstr "Arpegio Op." + +#: src/gui/insEdit.cpp:5522 +msgid "Op. Pitch" +msgstr "Tono Op." + +#: src/gui/insEdit.cpp:5531 +msgid "Op. Panning" +msgstr "Balance Op." + +#: src/gui/insEdit.cpp:5558 +msgid "Use software envelope" +msgstr "Usar envelope de software" + +#: src/gui/insEdit.cpp:5559 +msgid "Initialize envelope on every note" +msgstr "Inicializar envelope en cada nota" + +#: src/gui/insEdit.cpp:5560 +msgid "Double wave length (GBA only)" +msgstr "Longitud de onda doble (solamente en GBA)" + +#: src/gui/insEdit.cpp:5589 src/gui/insEdit.cpp:5666 +msgid "Sound Length" +msgstr "Longitud de Sonido" + +#: src/gui/insEdit.cpp:5592 src/gui/insEdit.cpp:5666 +msgid "Infinity" +msgstr "Infinito" + +#: src/gui/insEdit.cpp:5596 +msgid "Direction" +msgstr "Dirección" + +#: src/gui/insEdit.cpp:5599 src/gui/insEdit.cpp:5669 src/gui/insEdit.cpp:5697 +#: src/gui/insEdit.cpp:6008 src/gui/insEdit.cpp:6051 +msgid "Up" +msgstr "Arriba" + +#: src/gui/insEdit.cpp:5604 src/gui/insEdit.cpp:5674 src/gui/insEdit.cpp:5702 +#: src/gui/insEdit.cpp:6013 src/gui/insEdit.cpp:6056 +msgid "Down" +msgstr "Abajo" + +#: src/gui/insEdit.cpp:5620 src/gui/insEdit.cpp:5953 +msgid "Hardware Sequence" +msgstr "Secuencia de Hardware" + +#: src/gui/insEdit.cpp:5630 src/gui/insEdit.cpp:5963 +msgid "Tick" +msgstr "Tick" + +#: src/gui/insEdit.cpp:5632 src/gui/insEdit.cpp:5965 +msgid "Command" +msgstr "Comando" + +#: src/gui/insEdit.cpp:5634 src/gui/insEdit.cpp:5967 +msgid "Move/Remove" +msgstr "Mover/Quitar" + +#: src/gui/insEdit.cpp:5663 +msgid "Env Length" +msgstr "Long Env" + +#: src/gui/insEdit.cpp:5690 +msgid "Shift" +msgstr "Turno" + +#: src/gui/insEdit.cpp:5717 src/gui/insEdit.cpp:6073 +msgid "Ticks" +msgstr "Ticks" + +#: src/gui/insEdit.cpp:5736 src/gui/insEdit.cpp:6092 src/gui/insEdit.cpp:6239 +msgid "Position" +msgstr "Posición" + +#: src/gui/insEdit.cpp:5815 +msgid "tri" +msgstr "tri" + +#: src/gui/insEdit.cpp:5882 +msgid "Ring Modulation" +msgstr "Modulación de Aro" + +#: src/gui/insEdit.cpp:5886 +msgid "Oscillator Sync" +msgstr "Sincronizar Osciladores" + +#: src/gui/insEdit.cpp:5890 +msgid "Enable filter" +msgstr "Activar filtro" + +#: src/gui/insEdit.cpp:5891 +msgid "Initialize filter" +msgstr "Inicializar filtro" + +#: src/gui/insEdit.cpp:5894 src/gui/insEdit.cpp:5897 src/gui/insEdit.cpp:6951 +#: src/gui/insEdit.cpp:7215 src/gui/insEdit.cpp:7476 +msgid "Cutoff" +msgstr "Límite" + +#: src/gui/insEdit.cpp:5902 src/gui/insEdit.cpp:6408 src/gui/insEdit.cpp:6952 +#: src/gui/insEdit.cpp:7179 src/gui/insEdit.cpp:7477 +msgid "Filter Mode" +msgstr "Modo de Filtro" + +#: src/gui/insEdit.cpp:5931 src/gui/insEdit.cpp:7485 +msgid "Noise Mode" +msgstr "Modo de Ruido" + +#: src/gui/insEdit.cpp:5932 +msgid "Wave Mix Mode" +msgstr "Modo de Mezcla de Onda" + +#: src/gui/insEdit.cpp:5935 +msgid "Absolute Cutoff Macro" +msgstr "Macro de Límite Absoluta" + +#: src/gui/insEdit.cpp:5939 +msgid "Absolute Duty Macro" +msgstr "Macro de Ancho Absoluta" + +#: src/gui/insEdit.cpp:5945 +msgid "Don't test before new note" +msgstr "No probar antes de cada nota" + +#: src/gui/insEdit.cpp:5950 +msgid "Switch roles of frequency and phase reset timer" +msgstr "" +"Intercambiar rol de la frecuencia y el temporizador de reinicio de fase" + +#: src/gui/insEdit.cpp:5997 src/gui/insEdit.cpp:6040 +msgid "Period" +msgstr "Periodo" + +#: src/gui/insEdit.cpp:6002 src/gui/insEdit.cpp:6045 src/gui/insEdit.cpp:6892 +msgid "Amount" +msgstr "Cantidad" + +#: src/gui/insEdit.cpp:6005 src/gui/insEdit.cpp:6048 +msgid "Bound" +msgstr "Límite" + +#: src/gui/insEdit.cpp:6021 +msgid "Flip" +msgstr "Voltear" + +#: src/gui/insEdit.cpp:6210 +msgid "Load waveform" +msgstr "Cargar onda" + +#: src/gui/insEdit.cpp:6215 +msgid "" +"when enabled, a waveform will be loaded into RAM.\n" +"when disabled, only the offset and length change." +msgstr "" +"activado: una onda se carga a la RAM.\n" +"desactivado: solamente cambian la posición y longitud." + +#: src/gui/insEdit.cpp:6219 +msgid "Waveform##WAVE" +msgstr "Onda##WAVE" + +#: src/gui/insEdit.cpp:6227 +msgid "Per-channel wave position/length" +msgstr "Posición/longitud de onda por canal" + +#: src/gui/insEdit.cpp:6237 +msgid "Ch" +msgstr "Ca" + +#: src/gui/insEdit.cpp:6286 +msgid "Compatibility mode" +msgstr "Modo de compatibilidad" + +#: src/gui/insEdit.cpp:6288 +msgid "" +"only use for compatibility with .dmf modules!\n" +"- initializes modulation table with first wavetable\n" +"- does not alter modulation parameters on instrument change" +msgstr "" +"¡sólo usar para compatibilidad con módulos .dmf!\n" +"- carga tabla de modulación con la primera onda\n" +"- no altera parámetros de modulación al cambiar instrumento" + +#: src/gui/insEdit.cpp:6290 +msgid "Modulation depth" +msgstr "Profundidad de modulación" + +#: src/gui/insEdit.cpp:6294 +msgid "Modulation speed" +msgstr "Velocidad de modulación" + +#: src/gui/insEdit.cpp:6298 +msgid "Modulation table" +msgstr "Tabla de modulación" + +#: src/gui/insEdit.cpp:6347 +msgid "Set modulation table (channel 5 only)" +msgstr "Aplicar tabla (sólo en el canal 5)" + +#: src/gui/insEdit.cpp:6411 src/gui/insEdit.cpp:7184 +msgid "Filter K1" +msgstr "Filtro C1" + +#: src/gui/insEdit.cpp:6413 src/gui/insEdit.cpp:7185 +msgid "Filter K2" +msgstr "Filtro C1" + +#: src/gui/insEdit.cpp:6417 +msgid "Envelope length" +msgstr "Longitud envelope" + +#: src/gui/insEdit.cpp:6420 +msgid "Left Volume Ramp" +msgstr "Rampa Volumen Izq" + +#: src/gui/insEdit.cpp:6422 +msgid "Right Volume Ramp" +msgstr "Rampa Volumen Der" + +#: src/gui/insEdit.cpp:6425 +msgid "Filter K1 Ramp" +msgstr "Rampa Filtro C1" + +#: src/gui/insEdit.cpp:6427 +msgid "Filter K2 Ramp" +msgstr "Rampa Filtro C2" + +#: src/gui/insEdit.cpp:6430 +msgid "K1 Ramp Slowdown" +msgstr "Ralentizar Rampa C1" + +#: src/gui/insEdit.cpp:6432 +msgid "K2 Ramp Slowdown" +msgstr "Ralentizar Rampa C2" + +#: src/gui/insEdit.cpp:6454 +msgid "Attack Rate" +msgstr "Tasa de Ataque" + +#: src/gui/insEdit.cpp:6460 +msgid "Decay 1 Rate" +msgstr "Tasa de Caída 1" + +#: src/gui/insEdit.cpp:6466 +msgid "Decay Level" +msgstr "Nivel de Caída" + +#: src/gui/insEdit.cpp:6472 +msgid "Decay 2 Rate" +msgstr "Tasa de Caída 2" + +#: src/gui/insEdit.cpp:6478 +msgid "Release Rate" +msgstr "Tasa de Lanzamiento" + +#: src/gui/insEdit.cpp:6484 +msgid "Rate Correction" +msgstr "Corrección de Tasa" + +#: src/gui/insEdit.cpp:6512 +msgid "LFO Rate" +msgstr "Tasa de LFO" + +#: src/gui/insEdit.cpp:6523 +msgid "Use envelope" +msgstr "Usar envelope" + +#: src/gui/insEdit.cpp:6576 +msgid "Sustain/release mode:" +msgstr "Modo de sostenido/lanzamiento:" + +#: src/gui/insEdit.cpp:6577 +msgid "Direct (cut on release)" +msgstr "Directo (cortar al soltar)" + +#: src/gui/insEdit.cpp:6580 +msgid "Effective (linear decrease)" +msgstr "Efectivo (caída lineal)" + +#: src/gui/insEdit.cpp:6583 +msgid "Effective (exponential decrease)" +msgstr "Efectivo (caída exponencial)" + +#: src/gui/insEdit.cpp:6586 +msgid "Delayed (write R on release)" +msgstr "Tardío (escribir R al soltar)" + +#: src/gui/insEdit.cpp:6596 src/gui/insEdit.cpp:6597 +msgid "Gain Mode" +msgstr "Modo de Ganancia" + +#: src/gui/insEdit.cpp:6599 src/gui/insEdit.cpp:6600 src/gui/insEdit.cpp:7205 +msgid "Gain" +msgstr "Ganancia" + +#: src/gui/insEdit.cpp:6633 +msgid "" +"using decrease modes will not produce any sound at all, unless you know what " +"you are doing.\n" +"it is recommended to use the Gain macro for decrease instead." +msgstr "" +"al usar modos de disminución no se producirá ningún sonido a menos que sepas " +"lo que estás haciendo.\n" +"se recomienda usar la macro de Ganancia para disminución." + +#: src/gui/insEdit.cpp:6703 +msgid "Enable synthesizer" +msgstr "Activar sintetizador" + +#: src/gui/insEdit.cpp:6721 +msgid "Single-waveform" +msgstr "Una onda" + +#: src/gui/insEdit.cpp:6730 +msgid "Dual-waveform" +msgstr "Dos ondas" + +#: src/gui/insEdit.cpp:6803 src/gui/insEdit.cpp:6812 +msgid "Wave 1" +msgstr "Onda 1" + +#: src/gui/insEdit.cpp:6808 src/gui/insEdit.cpp:6823 +msgid "" +"waveform macro is controlling wave 1!\n" +"this value will be ineffective." +msgstr "" +"¡la macro de onda está controlando la onda 1!\n" +"este valor no tendrá efecto." + +#: src/gui/insEdit.cpp:6829 +msgid "Wave 2" +msgstr "Onda 2" + +#: src/gui/insEdit.cpp:6844 +msgid "Resume preview" +msgstr "Resumir vista previa" + +#: src/gui/insEdit.cpp:6846 +msgid "Pause preview" +msgstr "Pausar vista previa" + +#: src/gui/insEdit.cpp:6854 +msgid "Restart preview" +msgstr "Reiniciar vista previa" + +#: src/gui/insEdit.cpp:6874 +msgid "Copy to new wavetable" +msgstr "Copiar a nueva onda" + +#: src/gui/insEdit.cpp:6881 +msgid "Update Rate" +msgstr "Tasa de Cambio" + +#: src/gui/insEdit.cpp:6902 +msgid "Global" +msgstr "Global" + +#: src/gui/insEdit.cpp:6906 +msgid "" +"wavetable synthesizer disabled.\n" +"use the Waveform macro to set the wave for this instrument." +msgstr "" +"sintetizador de ondas desactivado.\n" +"usa la macro de Onda para cambiar la onda de este instrumento." + +#: src/gui/insEdit.cpp:6912 +msgid "Macros" +msgstr "Macros" + +#: src/gui/insEdit.cpp:6921 src/gui/insEdit.cpp:6929 src/gui/insEdit.cpp:6938 +#: src/gui/insEdit.cpp:6947 src/gui/insEdit.cpp:6962 src/gui/insEdit.cpp:6976 +#: src/gui/insEdit.cpp:6988 src/gui/insEdit.cpp:7001 src/gui/insEdit.cpp:7017 +#: src/gui/insEdit.cpp:7023 src/gui/insEdit.cpp:7033 src/gui/insEdit.cpp:7040 +#: src/gui/insEdit.cpp:7046 src/gui/insEdit.cpp:7059 src/gui/insEdit.cpp:7066 +#: src/gui/insEdit.cpp:7073 src/gui/insEdit.cpp:7082 src/gui/insEdit.cpp:7092 +#: src/gui/insEdit.cpp:7100 src/gui/insEdit.cpp:7106 src/gui/insEdit.cpp:7114 +#: src/gui/insEdit.cpp:7121 src/gui/insEdit.cpp:7127 src/gui/insEdit.cpp:7137 +#: src/gui/insEdit.cpp:7149 src/gui/insEdit.cpp:7157 src/gui/insEdit.cpp:7173 +#: src/gui/insEdit.cpp:7178 src/gui/insEdit.cpp:7191 src/gui/insEdit.cpp:7198 +#: src/gui/insEdit.cpp:7209 src/gui/insEdit.cpp:7222 src/gui/insEdit.cpp:7231 +#: src/gui/insEdit.cpp:7238 src/gui/insEdit.cpp:7246 src/gui/insEdit.cpp:7270 +#: src/gui/insEdit.cpp:7277 src/gui/insEdit.cpp:7285 src/gui/insEdit.cpp:7296 +#: src/gui/insEdit.cpp:7303 src/gui/insEdit.cpp:7311 src/gui/insEdit.cpp:7319 +#: src/gui/insEdit.cpp:7328 src/gui/insEdit.cpp:7336 src/gui/insEdit.cpp:7342 +#: src/gui/insEdit.cpp:7348 src/gui/insEdit.cpp:7354 src/gui/insEdit.cpp:7359 +#: src/gui/insEdit.cpp:7366 src/gui/insEdit.cpp:7373 src/gui/insEdit.cpp:7381 +#: src/gui/insEdit.cpp:7390 src/gui/insEdit.cpp:7398 src/gui/insEdit.cpp:7410 +#: src/gui/insEdit.cpp:7423 src/gui/insEdit.cpp:7434 src/gui/insEdit.cpp:7444 +#: src/gui/insEdit.cpp:7452 src/gui/insEdit.cpp:7462 src/gui/insEdit.cpp:7471 +msgid "Arpeggio" +msgstr "Arpegio" + +#: src/gui/insEdit.cpp:6925 src/gui/insEdit.cpp:6932 src/gui/insEdit.cpp:6943 +#: src/gui/insEdit.cpp:6972 src/gui/insEdit.cpp:6984 src/gui/insEdit.cpp:6994 +#: src/gui/insEdit.cpp:7007 src/gui/insEdit.cpp:7054 src/gui/insEdit.cpp:7062 +#: src/gui/insEdit.cpp:7069 src/gui/insEdit.cpp:7088 src/gui/insEdit.cpp:7110 +#: src/gui/insEdit.cpp:7133 src/gui/insEdit.cpp:7144 src/gui/insEdit.cpp:7163 +#: src/gui/insEdit.cpp:7183 src/gui/insEdit.cpp:7194 src/gui/insEdit.cpp:7214 +#: src/gui/insEdit.cpp:7234 src/gui/insEdit.cpp:7242 src/gui/insEdit.cpp:7249 +#: src/gui/insEdit.cpp:7254 src/gui/insEdit.cpp:7260 src/gui/insEdit.cpp:7266 +#: src/gui/insEdit.cpp:7273 src/gui/insEdit.cpp:7281 src/gui/insEdit.cpp:7290 +#: src/gui/insEdit.cpp:7299 src/gui/insEdit.cpp:7307 src/gui/insEdit.cpp:7324 +#: src/gui/insEdit.cpp:7332 src/gui/insEdit.cpp:7338 src/gui/insEdit.cpp:7362 +#: src/gui/insEdit.cpp:7369 src/gui/insEdit.cpp:7377 src/gui/insEdit.cpp:7386 +#: src/gui/insEdit.cpp:7394 src/gui/insEdit.cpp:7402 src/gui/insEdit.cpp:7414 +#: src/gui/insEdit.cpp:7429 src/gui/insEdit.cpp:7440 src/gui/insEdit.cpp:7448 +#: src/gui/insEdit.cpp:7457 src/gui/insEdit.cpp:7475 +msgid "Phase Reset" +msgstr "Reinicio de fase" + +#: src/gui/insEdit.cpp:6939 src/gui/insEdit.cpp:7024 src/gui/insEdit.cpp:7210 +#: src/gui/insEdit.cpp:7247 +msgid "Duty/Noise" +msgstr "Ancho/Ruido" + +#: src/gui/insEdit.cpp:6966 src/gui/insEdit.cpp:7288 +msgid "Surround" +msgstr "Envolvente" + +#: src/gui/insEdit.cpp:6968 src/gui/insEdit.cpp:6981 src/gui/insEdit.cpp:7026 +#: src/gui/insEdit.cpp:7085 src/gui/insEdit.cpp:7141 src/gui/insEdit.cpp:7159 +#: src/gui/insEdit.cpp:7180 src/gui/insEdit.cpp:7201 src/gui/insEdit.cpp:7225 +#: src/gui/insEdit.cpp:7278 src/gui/insEdit.cpp:7304 src/gui/insEdit.cpp:7321 +#: src/gui/insEdit.cpp:7329 src/gui/insEdit.cpp:7374 src/gui/insEdit.cpp:7383 +#: src/gui/insEdit.cpp:7399 src/gui/insEdit.cpp:7411 src/gui/insEdit.cpp:7426 +#: src/gui/insEdit.cpp:7454 src/gui/insEdit.cpp:7464 +msgid "Panning (left)" +msgstr "Balance (izquierdo)" + +#: src/gui/insEdit.cpp:6969 src/gui/insEdit.cpp:6982 src/gui/insEdit.cpp:7027 +#: src/gui/insEdit.cpp:7086 src/gui/insEdit.cpp:7142 src/gui/insEdit.cpp:7160 +#: src/gui/insEdit.cpp:7181 src/gui/insEdit.cpp:7202 src/gui/insEdit.cpp:7226 +#: src/gui/insEdit.cpp:7279 src/gui/insEdit.cpp:7305 src/gui/insEdit.cpp:7322 +#: src/gui/insEdit.cpp:7330 src/gui/insEdit.cpp:7375 src/gui/insEdit.cpp:7384 +#: src/gui/insEdit.cpp:7400 src/gui/insEdit.cpp:7412 src/gui/insEdit.cpp:7427 +#: src/gui/insEdit.cpp:7455 src/gui/insEdit.cpp:7465 +msgid "Panning (right)" +msgstr "Balance (derecho)" + +#: src/gui/insEdit.cpp:6990 src/gui/insEdit.cpp:7003 src/gui/insEdit.cpp:7107 +#: src/gui/insEdit.cpp:7199 src/gui/insEdit.cpp:7239 src/gui/insEdit.cpp:7424 +msgid "Noise Freq" +msgstr "Frec Ruido" + +#: src/gui/insEdit.cpp:6996 src/gui/insEdit.cpp:7010 src/gui/insEdit.cpp:7167 +msgid "AutoEnv Num" +msgstr "" + +#: src/gui/insEdit.cpp:6997 src/gui/insEdit.cpp:7011 src/gui/insEdit.cpp:7168 +msgid "AutoEnv Den" +msgstr "" + +#: src/gui/insEdit.cpp:7012 +msgid "Noise AND Mask" +msgstr "Másc Ruido Y" + +#: src/gui/insEdit.cpp:7013 +msgid "Noise OR Mask" +msgstr "Másc Ruido O" + +#: src/gui/insEdit.cpp:7034 +msgid "On/Off" +msgstr "En/Ap" + +#: src/gui/insEdit.cpp:7060 +msgid "Patch" +msgstr "Sonido" + +#: src/gui/insEdit.cpp:7076 +msgid "Mod Depth" +msgstr "Prof Mod" + +#: src/gui/insEdit.cpp:7077 +msgid "Mod Speed" +msgstr "Vel Mod" + +#: src/gui/insEdit.cpp:7078 +msgid "Mod Position" +msgstr "Pos Mod" + +#: src/gui/insEdit.cpp:7083 +msgid "Noise Length" +msgstr "Long Ruido" + +#: src/gui/insEdit.cpp:7093 +msgid "Wave Pos" +msgstr "Pos Onda" + +#: src/gui/insEdit.cpp:7096 +msgid "Wave Length" +msgstr "Long Onda" + +#: src/gui/insEdit.cpp:7115 +msgid "AUDCTL" +msgstr "AUDCTL" + +#: src/gui/insEdit.cpp:7122 src/gui/insEdit.cpp:7343 +msgid "Pulse Width" +msgstr "Ancho de Pulso" + +#: src/gui/insEdit.cpp:7139 +msgid "Duty/Int" +msgstr "Trabajo/Int" + +#: src/gui/insEdit.cpp:7145 src/gui/insEdit.cpp:7406 +msgid "Load LFSR" +msgstr "Cargar LFSR" + +#: src/gui/insEdit.cpp:7165 +msgid "Envelope Mode" +msgstr "Modo Envelope" + +#: src/gui/insEdit.cpp:7218 +msgid "Phase Reset Timer" +msgstr "Temporizador de reinicio de fase" + +#: src/gui/insEdit.cpp:7252 src/gui/insEdit.cpp:7259 +msgid "Freq Divider" +msgstr "Divisor Frec" + +#: src/gui/insEdit.cpp:7255 +msgid "Clock Divider" +msgstr "Divisor Reloj" + +#: src/gui/insEdit.cpp:7264 +msgid "Global Volume" +msgstr "Volumen Global" + +#: src/gui/insEdit.cpp:7286 +msgid "Echo Level" +msgstr "Nivel Eco" + +#: src/gui/insEdit.cpp:7291 +msgid "Echo Feedback" +msgstr "Retroalim Eco" + +#: src/gui/insEdit.cpp:7292 +msgid "Echo Length" +msgstr "Long Eco" + +#: src/gui/insEdit.cpp:7312 +msgid "Group Ctrl" +msgstr "Ctrl Grupo" + +#: src/gui/insEdit.cpp:7313 +msgid "Group Attack" +msgstr "Ataq Grupo" + +#: src/gui/insEdit.cpp:7314 +msgid "Group Decay" +msgstr "Caída Grupo" + +#: src/gui/insEdit.cpp:7320 +msgid "Noise Type" +msgstr "Tipo Ruido" + +#: src/gui/insEdit.cpp:7367 +msgid "Square/Noise" +msgstr "Cuadrado/Ruido" + +#: src/gui/insEdit.cpp:7404 +msgid "Tap A Location" +msgstr "Ubicación Tap A" + +#: src/gui/insEdit.cpp:7405 +msgid "Tap B Location" +msgstr "Ubicación Tap B" + +#: src/gui/insEdit.cpp:7416 +msgid "Portion A Length" +msgstr "Long Porción A" + +#: src/gui/insEdit.cpp:7417 +msgid "Portion B Length" +msgstr "Long Porción B" + +#: src/gui/insEdit.cpp:7418 +msgid "Portion A Offset" +msgstr "Desfaz Porción A" + +#: src/gui/insEdit.cpp:7419 +msgid "Portion B Offset" +msgstr "Desfaz Porción B" + +#: src/gui/insEdit.cpp:7463 +msgid "Parameter" +msgstr "Parámetro" + +#: src/gui/insEdit.cpp:7467 +msgid "Load Value" +msgstr "Cargar Valor" + +#: src/gui/insEdit.cpp:7479 +msgid "Filter Toggle" +msgstr "Activar Filtro" + +#: src/gui/insEdit.cpp:7486 +msgid "Wave Mix" +msgstr "Mezcla Ondas" + +#: src/gui/insEdit.cpp:7500 +msgid "Octave offset" +msgstr "Desplazamiento de octava" + +#: src/gui/insEdit.cpp:7505 +msgid "go to Macros for other parameters." +msgstr "ve a Macros para otros párametros." + +#: src/gui/insEdit.cpp:7521 +msgid "invalid instrument type! change it first." +msgstr "¡tipo de instrumento inválido! cámbialo primero." + +#: src/gui/insEdit.cpp:7565 +msgid "clear contents" +msgstr "limpiar contenidos" + +#: src/gui/insEdit.cpp:7571 +msgid "offset..." +msgstr "desplazar..." + +#: src/gui/insEdit.cpp:7572 src/gui/insEdit.cpp:7605 +msgid "X" +msgstr "X" + +#: src/gui/insEdit.cpp:7573 src/gui/insEdit.cpp:7609 +msgid "Y" +msgstr "Y" + +#: src/gui/insEdit.cpp:7574 +msgid "offset" +msgstr "desplazamiento" + +#: src/gui/insEdit.cpp:7637 +msgid "Min" +msgstr "Mínimo" + +#: src/gui/insEdit.cpp:7638 +msgid "Max" +msgstr "Máximo" + +#~ msgid "this is a test!" +#~ msgstr "este es una prueba!" diff --git a/po/fi.po b/po/fi.po new file mode 100644 index 000000000..91367e0d6 --- /dev/null +++ b/po/fi.po @@ -0,0 +1,16025 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: furnace 0.6.3\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/engine/sysDef.cpp:428 src/engine/sysDef.cpp:441 +msgid "20xx: Set channel mode (bit 0: square; bit 1: noise; bit 2: envelope)" +msgstr "" + +#: src/engine/sysDef.cpp:429 +msgid "21xx: Set noise frequency (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:430 src/engine/sysDef.cpp:443 +msgid "22xy: Set envelope mode (x: shape, y: enable for this channel)" +msgstr "" + +#: src/engine/sysDef.cpp:431 src/engine/sysDef.cpp:444 +msgid "23xx: Set envelope period low byte" +msgstr "" + +#: src/engine/sysDef.cpp:432 src/engine/sysDef.cpp:445 +msgid "24xx: Set envelope period high byte" +msgstr "" + +#: src/engine/sysDef.cpp:433 src/engine/sysDef.cpp:446 +#: src/engine/sysDef.cpp:1599 +msgid "25xx: Envelope slide up" +msgstr "" + +#: src/engine/sysDef.cpp:434 src/engine/sysDef.cpp:447 +#: src/engine/sysDef.cpp:1600 +msgid "26xx: Envelope slide down" +msgstr "" + +#: src/engine/sysDef.cpp:435 src/engine/sysDef.cpp:448 +#: src/engine/sysDef.cpp:1601 +msgid "29xy: Set auto-envelope (x: numerator; y: denominator)" +msgstr "" + +#: src/engine/sysDef.cpp:436 src/engine/sysDef.cpp:449 +msgid "2Exx: Write to I/O port A" +msgstr "" + +#: src/engine/sysDef.cpp:437 src/engine/sysDef.cpp:450 +msgid "2Fxx: Write to I/O port B" +msgstr "" + +#: src/engine/sysDef.cpp:442 +msgid "21xx: Set noise frequency (0 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:451 +msgid "12xx: Set duty cycle (0 to 8)" +msgstr "" + +#: src/engine/sysDef.cpp:453 +msgid "27xx: Set noise AND mask" +msgstr "" + +#: src/engine/sysDef.cpp:454 +msgid "28xx: Set noise OR mask" +msgstr "" + +#: src/engine/sysDef.cpp:455 +msgid "" +"2Cxy: Automatic noise frequency (x: mode (0: disable, 1: freq, 2: freq + OR " +"mask); y: offset)" +msgstr "" + +#: src/engine/sysDef.cpp:456 +msgid "2Dxx: NOT TO BE EMPLOYED BY THE COMPOSER" +msgstr "" + +#: src/engine/sysDef.cpp:460 +msgid "30xx: Toggle hard envelope reset on new notes" +msgstr "" + +#: src/engine/sysDef.cpp:465 +msgid "18xx: Toggle extended channel 3 mode" +msgstr "" + +#: src/engine/sysDef.cpp:470 src/engine/sysDef.cpp:766 +#: src/engine/sysDef.cpp:1025 src/engine/sysDef.cpp:1272 +#: src/engine/sysDef.cpp:1593 +msgid "17xx: Toggle PCM mode (LEGACY)" +msgstr "" + +#: src/engine/sysDef.cpp:471 src/engine/sysDef.cpp:1653 +#: src/engine/sysDef.cpp:1963 +msgid "DFxx: Set sample playback direction (0: normal; 1: reverse)" +msgstr "" + +#: src/engine/sysDef.cpp:476 +msgid "18xx: Toggle drums mode (1: enabled; 0: disabled)" +msgstr "" + +#: src/engine/sysDef.cpp:480 src/engine/sysDef.cpp:554 +#: src/engine/sysDef.cpp:575 +msgid "11xx: Set feedback (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:481 +msgid "12xx: Set level of operator 1 (0 highest, 7F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:482 +msgid "13xx: Set level of operator 2 (0 highest, 7F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:483 +msgid "14xx: Set level of operator 3 (0 highest, 7F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:484 +msgid "15xx: Set level of operator 4 (0 highest, 7F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:485 src/engine/sysDef.cpp:580 +#: src/engine/sysDef.cpp:635 +msgid "16xy: Set operator multiplier (x: operator from 1 to 4; y: multiplier)" +msgstr "" + +#: src/engine/sysDef.cpp:486 +msgid "19xx: Set attack of all operators (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:487 +msgid "1Axx: Set attack of operator 1 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:488 +msgid "1Bxx: Set attack of operator 2 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:489 +msgid "1Cxx: Set attack of operator 3 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:490 +msgid "1Dxx: Set attack of operator 4 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:491 src/engine/sysDef.cpp:588 +#: src/engine/sysDef.cpp:656 +msgid "50xy: Set AM (x: operator from 1 to 4 (0 for all ops); y: AM)" +msgstr "" + +#: src/engine/sysDef.cpp:492 src/engine/sysDef.cpp:589 +#: src/engine/sysDef.cpp:657 +msgid "" +"51xy: Set sustain level (x: operator from 1 to 4 (0 for all ops); y: sustain)" +msgstr "" + +#: src/engine/sysDef.cpp:493 src/engine/sysDef.cpp:590 +#: src/engine/sysDef.cpp:658 +msgid "52xy: Set release (x: operator from 1 to 4 (0 for all ops); y: release)" +msgstr "" + +#: src/engine/sysDef.cpp:494 +msgid "" +"53xy: Set detune (x: operator from 1 to 4 (0 for all ops); y: detune where 3 " +"is center)" +msgstr "" + +#: src/engine/sysDef.cpp:495 src/engine/sysDef.cpp:592 +#: src/engine/sysDef.cpp:660 +msgid "" +"54xy: Set envelope scale (x: operator from 1 to 4 (0 for all ops); y: scale " +"from 0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:496 +msgid "56xx: Set decay of all operators (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:497 +msgid "57xx: Set decay of operator 1 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:498 +msgid "58xx: Set decay of operator 2 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:499 +msgid "59xx: Set decay of operator 3 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:500 +msgid "5Axx: Set decay of operator 4 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:501 +msgid "5Bxx: Set decay 2 of all operators (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:502 +msgid "5Cxx: Set decay 2 of operator 1 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:503 +msgid "5Dxx: Set decay 2 of operator 2 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:504 +msgid "5Exx: Set decay 2 of operator 3 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:505 +msgid "5Fxx: Set decay 2 of operator 4 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:510 +msgid "10xx: Set noise frequency (xx: value; 0 disables noise)" +msgstr "" + +#: src/engine/sysDef.cpp:511 +msgid "17xx: Set LFO speed" +msgstr "" + +#: src/engine/sysDef.cpp:512 +msgid "18xx: Set LFO waveform (0 saw, 1 square, 2 triangle, 3 noise)" +msgstr "" + +#: src/engine/sysDef.cpp:513 +msgid "1Exx: Set AM depth (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:514 +msgid "1Fxx: Set PM depth (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:515 +msgid "" +"55xy: Set detune 2 (x: operator from 1 to 4 (0 for all ops); y: detune from " +"0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:520 +msgid "24xx: Set LFO 2 speed" +msgstr "" + +#: src/engine/sysDef.cpp:521 +msgid "25xx: Set LFO 2 waveform (0 saw, 1 square, 2 triangle, 3 noise)" +msgstr "" + +#: src/engine/sysDef.cpp:522 +msgid "26xx: Set AM 2 depth (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:523 +msgid "27xx: Set PM 2 depth (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:524 +msgid "" +"28xy: Set reverb (x: operator from 1 to 4 (0 for all ops); y: reverb from 0 " +"to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:525 src/engine/sysDef.cpp:650 +msgid "" +"2Axy: Set waveform (x: operator from 1 to 4 (0 for all ops); y: waveform " +"from 0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:526 +msgid "" +"2Bxy: Set envelope generator shift (x: operator from 1 to 4 (0 for all ops); " +"y: shift from 0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:527 +msgid "" +"2Cxy: Set fine multiplier (x: operator from 1 to 4 (0 for all ops); y: fine)" +msgstr "" + +#: src/engine/sysDef.cpp:530 +msgid "" +"3xyy: Set fixed frequency of operator 1 (x: octave from 0 to 7; y: frequency)" +msgstr "" + +#: src/engine/sysDef.cpp:531 +msgid "" +"3xyy: Set fixed frequency of operator 2 (x: octave from 8 to F; y: frequency)" +msgstr "" + +#: src/engine/sysDef.cpp:532 +msgid "" +"4xyy: Set fixed frequency of operator 3 (x: octave from 0 to 7; y: frequency)" +msgstr "" + +#: src/engine/sysDef.cpp:533 +msgid "" +"4xyy: Set fixed frequency of operator 4 (x: octave from 8 to F; y: frequency)" +msgstr "" + +#: src/engine/sysDef.cpp:540 +msgid "10xy: Setup LFO (x: enable; y: speed)" +msgstr "" + +#: src/engine/sysDef.cpp:541 +msgid "" +"55xy: Set SSG envelope (x: operator from 1 to 4 (0 for all ops); y: 0-7 on, " +"8 off)" +msgstr "" + +#: src/engine/sysDef.cpp:549 +msgid "1Fxx: Set ADPCM-A global volume (0 to 3F)" +msgstr "" + +#: src/engine/sysDef.cpp:553 +msgid "10xx: Set patch (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:555 src/engine/sysDef.cpp:576 +#: src/engine/sysDef.cpp:631 +msgid "12xx: Set level of operator 1 (0 highest, 3F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:556 src/engine/sysDef.cpp:577 +#: src/engine/sysDef.cpp:632 +msgid "13xx: Set level of operator 2 (0 highest, 3F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:557 +msgid "16xy: Set operator multiplier (x: operator from 1 to 2; y: multiplier)" +msgstr "" + +#: src/engine/sysDef.cpp:558 src/engine/sysDef.cpp:582 +#: src/engine/sysDef.cpp:637 +msgid "19xx: Set attack of all operators (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:559 src/engine/sysDef.cpp:583 +#: src/engine/sysDef.cpp:638 +msgid "1Axx: Set attack of operator 1 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:560 src/engine/sysDef.cpp:584 +#: src/engine/sysDef.cpp:639 +msgid "1Bxx: Set attack of operator 2 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:561 +msgid "50xy: Set AM (x: operator from 1 to 2 (0 for all ops); y: AM)" +msgstr "" + +#: src/engine/sysDef.cpp:562 +msgid "" +"51xy: Set sustain level (x: operator from 1 to 2 (0 for all ops); y: sustain)" +msgstr "" + +#: src/engine/sysDef.cpp:563 +msgid "52xy: Set release (x: operator from 1 to 2 (0 for all ops); y: release)" +msgstr "" + +#: src/engine/sysDef.cpp:564 +msgid "53xy: Set vibrato (x: operator from 1 to 2 (0 for all ops); y: enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:565 +msgid "" +"54xy: Set envelope scale (x: operator from 1 to 2 (0 for all ops); y: scale " +"from 0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:566 +msgid "" +"55xy: Set envelope sustain (x: operator from 1 to 2 (0 for all ops); y: " +"enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:567 src/engine/sysDef.cpp:594 +#: src/engine/sysDef.cpp:662 +msgid "56xx: Set decay of all operators (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:568 src/engine/sysDef.cpp:595 +#: src/engine/sysDef.cpp:663 +msgid "57xx: Set decay of operator 1 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:569 src/engine/sysDef.cpp:596 +#: src/engine/sysDef.cpp:664 +msgid "58xx: Set decay of operator 2 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:570 +msgid "" +"5Bxy: Set whether key will scale envelope (x: operator from 1 to 2 (0 for " +"all ops); y: enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:574 +msgid "10xx: Set global AM depth (0: 1dB, 1: 4.8dB)" +msgstr "" + +#: src/engine/sysDef.cpp:578 src/engine/sysDef.cpp:633 +msgid "14xx: Set level of operator 3 (0 highest, 3F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:579 src/engine/sysDef.cpp:634 +msgid "15xx: Set level of operator 4 (0 highest, 3F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:581 +msgid "17xx: Set global vibrato depth (0: normal, 1: double)" +msgstr "" + +#: src/engine/sysDef.cpp:585 src/engine/sysDef.cpp:640 +msgid "1Cxx: Set attack of operator 3 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:586 src/engine/sysDef.cpp:641 +msgid "1Dxx: Set attack of operator 4 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:587 +msgid "" +"2Axy: Set waveform (x: operator from 1 to 4 (0 for all ops); y: waveform " +"from 0 to 3 in OPL2 and 0 to 7 in OPL3)" +msgstr "" + +#: src/engine/sysDef.cpp:591 src/engine/sysDef.cpp:659 +msgid "53xy: Set vibrato (x: operator from 1 to 4 (0 for all ops); y: enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:593 src/engine/sysDef.cpp:661 +msgid "" +"55xy: Set envelope sustain (x: operator from 1 to 4 (0 for all ops); y: " +"enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:597 src/engine/sysDef.cpp:665 +msgid "59xx: Set decay of operator 3 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:598 src/engine/sysDef.cpp:666 +msgid "5Axx: Set decay of operator 4 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:599 src/engine/sysDef.cpp:667 +msgid "" +"5Bxy: Set whether key will scale envelope (x: operator from 1 to 4 (0 for " +"all ops); y: enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:603 src/engine/sysDef.cpp:680 +msgid "" +"10xx: Set waveform (bit 0: triangle; bit 1: saw; bit 2: pulse; bit 3: noise)" +msgstr "" + +#: src/engine/sysDef.cpp:604 +msgid "11xx: Set coarse cutoff (not recommended; use 4xxx instead)" +msgstr "" + +#: src/engine/sysDef.cpp:605 +msgid "12xx: Set coarse pulse width (not recommended; use 3xxx instead)" +msgstr "" + +#: src/engine/sysDef.cpp:606 +msgid "13xx: Set resonance (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:607 +msgid "" +"14xx: Set filter mode (bit 0: low pass; bit 1: band pass; bit 2: high pass)" +msgstr "" + +#: src/engine/sysDef.cpp:608 +msgid "15xx: Set envelope reset time" +msgstr "" + +#: src/engine/sysDef.cpp:609 +msgid "1Axx: Disable envelope reset for this channel (1 disables; 0 enables)" +msgstr "" + +#: src/engine/sysDef.cpp:610 +msgid "1Bxy: Reset cutoff (x: on new note; y: now)" +msgstr "" + +#: src/engine/sysDef.cpp:611 +msgid "1Cxy: Reset pulse width (x: on new note; y: now)" +msgstr "" + +#: src/engine/sysDef.cpp:612 +msgid "1Exy: Change other parameters (LEGACY)" +msgstr "" + +#: src/engine/sysDef.cpp:613 +msgid "20xy: Set attack/decay (x: attack; y: decay)" +msgstr "" + +#: src/engine/sysDef.cpp:614 +msgid "21xy: Set sustain/release (x: sustain; y: release)" +msgstr "" + +#: src/engine/sysDef.cpp:616 src/engine/sysDef.cpp:688 +msgid "3xxx: Set pulse width (0 to FFF)" +msgstr "" + +#: src/engine/sysDef.cpp:617 +msgid "4xxx: Set cutoff (0 to 7FF)" +msgstr "" + +#: src/engine/sysDef.cpp:622 src/engine/sysDef.cpp:745 +#: src/engine/sysDef.cpp:762 src/engine/sysDef.cpp:1000 +#: src/engine/sysDef.cpp:1050 src/engine/sysDef.cpp:1268 +#: src/engine/sysDef.cpp:1320 src/engine/sysDef.cpp:1590 +#: src/engine/sysDef.cpp:1788 src/engine/sysDef.cpp:1792 +#: src/engine/sysDef.cpp:1893 src/engine/sysDef.cpp:2063 +#: src/engine/sysDef.cpp:2077 +msgid "10xx: Set waveform" +msgstr "" + +#: src/engine/sysDef.cpp:626 +msgid "20xx: Set PCM frequency" +msgstr "" + +#: src/engine/sysDef.cpp:630 +msgid "" +"10xy: Set AM depth (x: operator from 1 to 4 (0 for all ops); y: depth (0: " +"1dB, 1: 4.8dB))" +msgstr "" + +#: src/engine/sysDef.cpp:636 +msgid "" +"17xy: Set vibrato depth (x: operator from 1 to 4 (0 for all ops); y: depth " +"(0: normal, 1: double))" +msgstr "" + +#: src/engine/sysDef.cpp:642 +msgid "20xy: Set panning of operator 1 (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:643 +msgid "21xy: Set panning of operator 2 (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:644 +msgid "22xy: Set panning of operator 3 (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:645 +msgid "23xy: Set panning of operator 4 (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:646 +msgid "" +"24xy: Set output level register (x: operator from 1 to 4 (0 for all ops); y: " +"level from 0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:647 +msgid "" +"25xy: Set modulation input level (x: operator from 1 to 4 (0 for all ops); " +"y: level from 0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:648 +msgid "" +"26xy: Set envelope delay (x: operator from 1 to 4 (0 for all ops); y: delay " +"from 0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:649 +msgid "27xx: Set noise mode for operator 4 (x: mode from 0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:651 +msgid "" +"2Fxy: Set fixed frequency block (x: operator from 1 to 4; y: octave from 0 " +"to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:652 +msgid "40xx: Set detune of operator 1 (80: center)" +msgstr "" + +#: src/engine/sysDef.cpp:653 +msgid "41xx: Set detune of operator 2 (80: center)" +msgstr "" + +#: src/engine/sysDef.cpp:654 +msgid "42xx: Set detune of operator 3 (80: center)" +msgstr "" + +#: src/engine/sysDef.cpp:655 +msgid "43xx: Set detune of operator 4 (80: center)" +msgstr "" + +#: src/engine/sysDef.cpp:670 +msgid "" +"3xyy: Set fixed frequency F-num of operator 1 (x: high 2 bits from 0 to 3; " +"y: low 8 bits of F-num)" +msgstr "" + +#: src/engine/sysDef.cpp:671 +msgid "" +"3xyy: Set fixed frequency F-num of operator 2 (x: high 2 bits from 4 to 7; " +"y: low 8 bits of F-num)" +msgstr "" + +#: src/engine/sysDef.cpp:672 +msgid "" +"3xyy: Set fixed frequency F-num of operator 3 (x: high 2 bits from 8 to B; " +"y: low 8 bits of F-num)" +msgstr "" + +#: src/engine/sysDef.cpp:673 +msgid "" +"3xyy: Set fixed frequency F-num of operator 4 (x: high 2 bits from C to F; " +"y: low 8 bits of F-num)" +msgstr "" + +#: src/engine/sysDef.cpp:681 +msgid "11xx: Set resonance (0 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:682 +msgid "" +"12xx: Set filter mode (bit 0: low pass; bit 1: band pass; bit 2: high pass)" +msgstr "" + +#: src/engine/sysDef.cpp:683 +msgid "13xx: Disable envelope reset for this channel (1 disables; 0 enables)" +msgstr "" + +#: src/engine/sysDef.cpp:684 +msgid "14xy: Reset cutoff (x: on new note; y: now)" +msgstr "" + +#: src/engine/sysDef.cpp:685 +msgid "15xy: Reset pulse width (x: on new note; y: now)" +msgstr "" + +#: src/engine/sysDef.cpp:686 +msgid "16xy: Change other parameters" +msgstr "" + +#: src/engine/sysDef.cpp:689 src/engine/sysDef.cpp:1733 +msgid "4xxx: Set cutoff (0 to FFF)" +msgstr "" + +#: src/engine/sysDef.cpp:697 +msgid "Yamaha YMU759 (MA-2)" +msgstr "" + +#: src/engine/sysDef.cpp:698 +msgid "" +"a chip which found its way inside mobile phones in the 2000's.\n" +"as proprietary as it is, it passed away after losing to MP3 in the mobile " +"hardware battle." +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:807 src/engine/sysDef.cpp:819 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:915 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1237 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1314 src/engine/sysDef.cpp:1356 +#: src/engine/sysDef.cpp:1396 src/engine/sysDef.cpp:1499 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1572 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1608 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1799 src/engine/sysDef.cpp:1810 +#: src/engine/sysDef.cpp:1821 src/engine/sysDef.cpp:1832 +#: src/engine/sysDef.cpp:1900 src/engine/sysDef.cpp:1910 +#: src/engine/sysDef.cpp:1920 src/engine/sysDef.cpp:1944 +#: src/engine/sysDef.cpp:1957 src/engine/sysDef.cpp:1970 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2037 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2122 +#: src/engine/sysDef.cpp:2138 src/engine/sysDef.cpp:2150 +msgid "Channel 1" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:807 src/engine/sysDef.cpp:819 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:915 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1237 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1314 src/engine/sysDef.cpp:1356 +#: src/engine/sysDef.cpp:1396 src/engine/sysDef.cpp:1499 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1572 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1608 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1799 src/engine/sysDef.cpp:1810 +#: src/engine/sysDef.cpp:1821 src/engine/sysDef.cpp:1832 +#: src/engine/sysDef.cpp:1900 src/engine/sysDef.cpp:1910 +#: src/engine/sysDef.cpp:1920 src/engine/sysDef.cpp:1944 +#: src/engine/sysDef.cpp:1957 src/engine/sysDef.cpp:1970 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2037 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2122 +#: src/engine/sysDef.cpp:2138 src/engine/sysDef.cpp:2150 +msgid "Channel 2" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:807 src/engine/sysDef.cpp:819 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1237 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1314 +#: src/engine/sysDef.cpp:1356 src/engine/sysDef.cpp:1396 +#: src/engine/sysDef.cpp:1499 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1572 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1799 src/engine/sysDef.cpp:1810 +#: src/engine/sysDef.cpp:1821 src/engine/sysDef.cpp:1832 +#: src/engine/sysDef.cpp:1910 src/engine/sysDef.cpp:1944 +#: src/engine/sysDef.cpp:1957 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2037 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +#: src/engine/sysDef.cpp:2122 src/engine/sysDef.cpp:2138 +#: src/engine/sysDef.cpp:2150 +msgid "Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1237 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1314 +#: src/engine/sysDef.cpp:1356 src/engine/sysDef.cpp:1396 +#: src/engine/sysDef.cpp:1499 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1572 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1910 +#: src/engine/sysDef.cpp:1944 src/engine/sysDef.cpp:1957 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +#: src/engine/sysDef.cpp:2122 src/engine/sysDef.cpp:2150 +msgid "Channel 4" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1314 +#: src/engine/sysDef.cpp:1356 src/engine/sysDef.cpp:1396 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1572 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1705 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 5" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1356 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 6" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 7" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 8" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 9" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 10" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 11" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 12" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 13" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 14" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 15" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 16" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:700 +#: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1767 src/engine/sysDef.cpp:1888 +#: src/engine/sysDef.cpp:1944 src/engine/sysDef.cpp:1945 +#: src/gui/settings.cpp:4094 +msgid "PCM" +msgstr "" + +#: src/engine/sysDef.cpp:706 +msgid "Sega Genesis/Mega Drive" +msgstr "" + +#: src/engine/sysDef.cpp:712 +msgid "Sega Genesis Extended Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:718 src/gui/sysConf.cpp:158 +msgid "TI SN76489" +msgstr "" + +#: src/engine/sysDef.cpp:719 +msgid "" +"a square/noise sound chip found on the Sega Master System, ColecoVision, " +"Tandy, TI's own 99/4A and a few other places." +msgstr "" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 +msgid "Square 1" +msgstr "" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 +msgid "Square 2" +msgstr "" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 +msgid "Square 3" +msgstr "" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:739 +#: src/engine/sysDef.cpp:773 src/engine/sysDef.cpp:955 +#: src/engine/sysDef.cpp:1314 src/engine/sysDef.cpp:1874 +#: src/engine/sysDef.cpp:1920 src/engine/sysDef.cpp:2037 +#: src/engine/sysDef.cpp:2100 src/gui/settings.cpp:4093 +#: src/gui/insEdit.cpp:6978 src/gui/insEdit.cpp:7129 src/gui/insEdit.cpp:7223 +#: src/gui/insEdit.cpp:7315 +msgid "Noise" +msgstr "" + +#: src/engine/sysDef.cpp:726 +msgid "20xy: Set noise mode (x: preset freq/ch3 freq; y: thin pulse/noise)" +msgstr "" + +#: src/engine/sysDef.cpp:731 +msgid "Sega Master System + FM Expansion" +msgstr "" + +#: src/engine/sysDef.cpp:737 src/gui/settings.cpp:4025 +msgid "Game Boy" +msgstr "" + +#: src/engine/sysDef.cpp:738 +msgid "the most popular portable game console of the era." +msgstr "" + +#: src/engine/sysDef.cpp:739 src/engine/sysDef.cpp:773 +#: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:2100 +msgid "Pulse 1" +msgstr "" + +#: src/engine/sysDef.cpp:739 src/engine/sysDef.cpp:773 +#: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:2100 +msgid "Pulse 2" +msgstr "" + +#: src/engine/sysDef.cpp:739 src/gui/settings.cpp:3930 +#: src/gui/guiConst.cpp:1395 src/gui/insEdit.cpp:6652 +msgid "Wavetable" +msgstr "" + +#: src/engine/sysDef.cpp:746 +msgid "11xx: Set noise length (0: long; 1: short)" +msgstr "" + +#: src/engine/sysDef.cpp:747 +msgid "12xx: Set duty cycle (0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:748 +msgid "13xy: Setup sweep (x: time; y: shift)" +msgstr "" + +#: src/engine/sysDef.cpp:749 +msgid "14xx: Set sweep direction (0: up; 1: down)" +msgstr "" + +#: src/engine/sysDef.cpp:754 +msgid "PC Engine/TurboGrafx-16" +msgstr "" + +#: src/engine/sysDef.cpp:755 +msgid "an '80s game console with a wavetable sound chip, popular in Japan." +msgstr "" + +#: src/engine/sysDef.cpp:763 src/engine/sysDef.cpp:1001 +#: src/engine/sysDef.cpp:1793 +msgid "11xx: Toggle noise mode" +msgstr "" + +#: src/engine/sysDef.cpp:764 +msgid "12xx: Setup LFO (0: disabled; 1: 1x depth; 2: 16x depth; 3: 256x depth)" +msgstr "" + +#: src/engine/sysDef.cpp:765 +msgid "13xx: Set LFO speed" +msgstr "" + +#: src/engine/sysDef.cpp:771 +msgid "NES (Ricoh 2A03)" +msgstr "" + +#: src/engine/sysDef.cpp:772 +msgid "" +"also known as Famicom in Japan, it's the most well-known game console of the " +"'80s." +msgstr "" + +#: src/engine/sysDef.cpp:773 src/gui/waveEdit.cpp:31 src/gui/waveEdit.cpp:217 +#: src/gui/insEdit.cpp:200 src/gui/insEdit.cpp:324 src/gui/insEdit.cpp:658 +msgid "Triangle" +msgstr "" + +#: src/engine/sysDef.cpp:773 src/engine/sysDef.cpp:2100 +#: src/gui/insEdit.cpp:2629 +msgid "DPCM" +msgstr "" + +#: src/engine/sysDef.cpp:779 src/engine/sysDef.cpp:2106 +msgid "11xx: Write to delta modulation counter (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:780 src/engine/sysDef.cpp:1068 +msgid "12xx: Set duty cycle/noise mode (pulse: 0 to 3; noise: 0 or 1)" +msgstr "" + +#: src/engine/sysDef.cpp:781 src/engine/sysDef.cpp:2108 +msgid "13xy: Sweep up (x: time; y: shift)" +msgstr "" + +#: src/engine/sysDef.cpp:782 src/engine/sysDef.cpp:2109 +msgid "14xy: Sweep down (x: time; y: shift)" +msgstr "" + +#: src/engine/sysDef.cpp:783 src/engine/sysDef.cpp:2110 +msgid "" +"15xx: Set envelope mode (0: envelope, 1: length, 2: looping, 3: constant)" +msgstr "" + +#: src/engine/sysDef.cpp:784 src/engine/sysDef.cpp:2111 +msgid "16xx: Set length counter (refer to manual for a list of values)" +msgstr "" + +#: src/engine/sysDef.cpp:785 src/engine/sysDef.cpp:2112 +msgid "17xx: Set frame counter mode (0: 4-step, 1: 5-step)" +msgstr "" + +#: src/engine/sysDef.cpp:786 src/engine/sysDef.cpp:2113 +msgid "18xx: Select PCM/DPCM mode (0: PCM; 1: DPCM)" +msgstr "" + +#: src/engine/sysDef.cpp:787 src/engine/sysDef.cpp:2114 +msgid "19xx: Set triangle linear counter (0 to 7F; 80 and higher halt)" +msgstr "" + +#: src/engine/sysDef.cpp:788 src/engine/sysDef.cpp:2115 +msgid "20xx: Set DPCM frequency (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:793 +msgid "NES + Konami VRC7" +msgstr "" + +#: src/engine/sysDef.cpp:799 +msgid "Famicom Disk System" +msgstr "" + +#: src/engine/sysDef.cpp:805 +msgid "Commodore 64 (SID 6581)" +msgstr "" + +#: src/engine/sysDef.cpp:806 +msgid "" +"this computer is powered by the SID chip, which had synthesizer features " +"like a filter and ADSR." +msgstr "" + +#: src/engine/sysDef.cpp:817 +msgid "Commodore 64 (SID 8580)" +msgstr "" + +#: src/engine/sysDef.cpp:818 +msgid "" +"this computer is powered by the SID chip, which had synthesizer features " +"like a filter and ADSR.\n" +"this is the newer revision of the chip." +msgstr "" + +#: src/engine/sysDef.cpp:829 +msgid "DefleCade" +msgstr "" + +#: src/engine/sysDef.cpp:835 +msgid "Neo Geo CD" +msgstr "" + +#: src/engine/sysDef.cpp:836 +msgid "" +"like Neo Geo, but lacking the ADPCM-B channel since they couldn't connect " +"the pins." +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1173 +#: src/engine/sysDef.cpp:1185 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1443 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +#: src/engine/sysDef.cpp:2006 +msgid "FM 1" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:891 +#: src/engine/sysDef.cpp:903 src/engine/sysDef.cpp:1032 +#: src/engine/sysDef.cpp:1097 src/engine/sysDef.cpp:1109 +#: src/engine/sysDef.cpp:1122 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1546 +#: src/engine/sysDef.cpp:1559 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:1693 src/engine/sysDef.cpp:1849 +#: src/engine/sysDef.cpp:1861 src/engine/sysDef.cpp:2006 +msgid "FM 2" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1173 +#: src/engine/sysDef.cpp:1185 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1443 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:2006 +msgid "FM 3" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1546 +#: src/engine/sysDef.cpp:1559 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:1693 src/engine/sysDef.cpp:1849 +#: src/engine/sysDef.cpp:1861 src/engine/sysDef.cpp:2006 +msgid "FM 4" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:862 src/engine/sysDef.cpp:927 +#: src/engine/sysDef.cpp:943 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "PSG 1" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:862 src/engine/sysDef.cpp:927 +#: src/engine/sysDef.cpp:943 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "PSG 2" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:862 src/engine/sysDef.cpp:927 +#: src/engine/sysDef.cpp:943 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "PSG 3" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 1" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 2" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 3" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 4" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 5" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 6" +msgstr "" + +#: src/engine/sysDef.cpp:847 +msgid "Neo Geo CD Extended Channel 2" +msgstr "" + +#: src/engine/sysDef.cpp:848 +msgid "" +"like Neo Geo, but lacking the ADPCM-B channel since they couldn't connect " +"the pins.\n" +"this one is in Extended Channel mode, which turns the second FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP1" +msgstr "" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP2" +msgstr "" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP3" +msgstr "" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP4" +msgstr "" + +#: src/engine/sysDef.cpp:860 src/gui/sysConf.cpp:913 +msgid "AY-3-8910" +msgstr "" + +#: src/engine/sysDef.cpp:861 +msgid "" +"this chip is everywhere! ZX Spectrum, MSX, Amstrad CPC, Intellivision, " +"Vectrex...\n" +"the discovery of envelope bass helped it beat the SN76489 with ease." +msgstr "" + +#: src/engine/sysDef.cpp:872 +msgid "Amiga" +msgstr "" + +#: src/engine/sysDef.cpp:873 +msgid "" +"a computer from the '80s with full sampling capabilities, giving it a sound " +"ahead of its time." +msgstr "" + +#: src/engine/sysDef.cpp:881 +msgid "10xx: Toggle filter (0 disables; 1 enables)" +msgstr "" + +#: src/engine/sysDef.cpp:882 +msgid "11xx: Toggle AM with next channel" +msgstr "" + +#: src/engine/sysDef.cpp:883 +msgid "12xx: Toggle period modulation with next channel" +msgstr "" + +#: src/engine/sysDef.cpp:884 +msgid "13xx: Set waveform" +msgstr "" + +#: src/engine/sysDef.cpp:889 +msgid "Yamaha YM2151 (OPM)" +msgstr "" + +#: src/engine/sysDef.cpp:890 +msgid "" +"this was Yamaha's first integrated FM chip.\n" +"it was used in several synthesizers, computers and arcade boards." +msgstr "" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1279 src/engine/sysDef.cpp:1332 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1370 +#: src/engine/sysDef.cpp:1383 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +#: src/engine/sysDef.cpp:2006 +msgid "FM 5" +msgstr "" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:2006 +msgid "FM 6" +msgstr "" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:1032 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1279 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:2006 +msgid "FM 7" +msgstr "" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:1032 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:2006 +msgid "FM 8" +msgstr "" + +#: src/engine/sysDef.cpp:901 +msgid "Yamaha YM2612 (OPN2)" +msgstr "" + +#: src/engine/sysDef.cpp:902 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer)." +msgstr "" + +#: src/engine/sysDef.cpp:913 +msgid "Atari TIA" +msgstr "" + +#: src/engine/sysDef.cpp:914 +msgid "" +"it's a challenge to make music on this chip which barely has musical " +"capabilities..." +msgstr "" + +#: src/engine/sysDef.cpp:925 +msgid "Philips SAA1099" +msgstr "" + +#: src/engine/sysDef.cpp:926 +msgid "" +"supposedly an upgrade from the AY-3-8910, this was present on the Creative " +"Music System (Game Blaster) and SAM Coupé." +msgstr "" + +#: src/engine/sysDef.cpp:927 +msgid "PSG 4" +msgstr "" + +#: src/engine/sysDef.cpp:927 +msgid "PSG 5" +msgstr "" + +#: src/engine/sysDef.cpp:927 +msgid "PSG 6" +msgstr "" + +#: src/engine/sysDef.cpp:934 +msgid "10xy: Set channel mode (x: noise; y: tone)" +msgstr "" + +#: src/engine/sysDef.cpp:935 +msgid "11xx: Set noise frequency" +msgstr "" + +#: src/engine/sysDef.cpp:936 +msgid "12xx: Setup envelope (refer to docs for more information)" +msgstr "" + +#: src/engine/sysDef.cpp:941 +msgid "Microchip AY8930" +msgstr "" + +#: src/engine/sysDef.cpp:942 +msgid "" +"an improved version of the AY-3-8910 with a bigger frequency range, duty " +"cycles, configurable noise and per-channel envelopes!" +msgstr "" + +#: src/engine/sysDef.cpp:953 +msgid "Commodore VIC-20" +msgstr "" + +#: src/engine/sysDef.cpp:954 +msgid "" +"Commodore's successor to the PET.\n" +"its square wave channels are more than just square..." +msgstr "" + +#: src/engine/sysDef.cpp:955 src/gui/settings.cpp:136 src/gui/settings.cpp:206 +#: src/gui/settings.cpp:3970 +msgid "Low" +msgstr "" + +#: src/engine/sysDef.cpp:955 +msgid "Mid" +msgstr "" + +#: src/engine/sysDef.cpp:955 src/gui/settings.cpp:135 src/gui/settings.cpp:208 +#: src/gui/settings.cpp:3971 +msgid "High" +msgstr "" + +#: src/engine/sysDef.cpp:964 +msgid "Commodore PET" +msgstr "" + +#: src/engine/sysDef.cpp:965 +msgid "" +"one channel of 1-bit wavetable which is better (and worse) than the PC " +"Speaker." +msgstr "" + +#: src/engine/sysDef.cpp:966 src/engine/sysDef.cpp:1262 +#: src/engine/sysDef.cpp:2100 src/gui/editControls.cpp:433 +#: src/gui/settings.cpp:4017 src/gui/settings.cpp:4095 +msgid "Wave" +msgstr "" + +#: src/engine/sysDef.cpp:975 src/gui/settings.cpp:4052 +msgid "SNES" +msgstr "" + +#: src/engine/sysDef.cpp:976 +msgid "FM? nah... samples! Nintendo's answer to Sega." +msgstr "" + +#: src/engine/sysDef.cpp:983 +msgid "18xx: Enable echo buffer" +msgstr "" + +#: src/engine/sysDef.cpp:984 +msgid "19xx: Set echo delay (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:985 +msgid "1Axx: Set left echo volume" +msgstr "" + +#: src/engine/sysDef.cpp:986 +msgid "1Bxx: Set right echo volume" +msgstr "" + +#: src/engine/sysDef.cpp:987 +msgid "1Cxx: Set echo feedback" +msgstr "" + +#: src/engine/sysDef.cpp:988 +msgid "1Exx: Set dry output volume (left)" +msgstr "" + +#: src/engine/sysDef.cpp:989 +msgid "1Fxx: Set dry output volume (right)" +msgstr "" + +#: src/engine/sysDef.cpp:990 +msgid "30xx: Set echo filter coefficient 0" +msgstr "" + +#: src/engine/sysDef.cpp:991 +msgid "31xx: Set echo filter coefficient 1" +msgstr "" + +#: src/engine/sysDef.cpp:992 +msgid "32xx: Set echo filter coefficient 2" +msgstr "" + +#: src/engine/sysDef.cpp:993 +msgid "33xx: Set echo filter coefficient 3" +msgstr "" + +#: src/engine/sysDef.cpp:994 +msgid "34xx: Set echo filter coefficient 4" +msgstr "" + +#: src/engine/sysDef.cpp:995 +msgid "35xx: Set echo filter coefficient 5" +msgstr "" + +#: src/engine/sysDef.cpp:996 +msgid "36xx: Set echo filter coefficient 6" +msgstr "" + +#: src/engine/sysDef.cpp:997 +msgid "37xx: Set echo filter coefficient 7" +msgstr "" + +#: src/engine/sysDef.cpp:1002 +msgid "12xx: Toggle echo on this channel" +msgstr "" + +#: src/engine/sysDef.cpp:1003 +msgid "13xx: Toggle pitch modulation" +msgstr "" + +#: src/engine/sysDef.cpp:1004 +msgid "14xy: Toggle invert (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:1005 +msgid "" +"15xx: Set envelope mode (0: ADSR, 1: gain/direct, 2: dec, 3: exp, 4: inc, 5: " +"bent)" +msgstr "" + +#: src/engine/sysDef.cpp:1006 +msgid "16xx: Set gain (00 to 7F if direct; 00 to 1F otherwise)" +msgstr "" + +#: src/engine/sysDef.cpp:1007 +msgid "1Dxx: Set noise frequency (00 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:1008 +msgid "20xx: Set attack (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:1009 +msgid "21xx: Set decay (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1010 +msgid "22xx: Set sustain (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1011 +msgid "23xx: Set release (00 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:1016 +msgid "Konami VRC6" +msgstr "" + +#: src/engine/sysDef.cpp:1017 +msgid "an expansion chip for the Famicom, featuring a quirky sawtooth channel." +msgstr "" + +#: src/engine/sysDef.cpp:1018 +msgid "VRC6 1" +msgstr "" + +#: src/engine/sysDef.cpp:1018 +msgid "VRC6 2" +msgstr "" + +#: src/engine/sysDef.cpp:1018 +msgid "VRC6 Saw" +msgstr "" + +#: src/engine/sysDef.cpp:1024 src/engine/sysDef.cpp:2092 +msgid "12xx: Set duty cycle (pulse: 0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1030 +msgid "Yamaha YM2413 (OPLL)" +msgstr "" + +#: src/engine/sysDef.cpp:1031 +msgid "" +"cost-reduced version of the OPL with 16 patches and only one of them is user-" +"configurable." +msgstr "" + +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1173 +#: src/engine/sysDef.cpp:1185 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:2006 +msgid "FM 9" +msgstr "" + +#: src/engine/sysDef.cpp:1042 +msgid "Famicom Disk System (chip)" +msgstr "" + +#: src/engine/sysDef.cpp:1043 +msgid "a disk drive for the Famicom which also contains one wavetable channel." +msgstr "" + +#: src/engine/sysDef.cpp:1044 src/gui/settings.cpp:4039 +msgid "FDS" +msgstr "" + +#: src/engine/sysDef.cpp:1051 +msgid "11xx: Set modulation depth" +msgstr "" + +#: src/engine/sysDef.cpp:1052 +msgid "12xy: Set modulation speed high byte (x: enable; y: value)" +msgstr "" + +#: src/engine/sysDef.cpp:1053 +msgid "13xx: Set modulation speed low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1054 +msgid "14xx: Set modulator position" +msgstr "" + +#: src/engine/sysDef.cpp:1055 +msgid "15xx: Set modulator table to waveform" +msgstr "" + +#: src/engine/sysDef.cpp:1060 +msgid "MMC5" +msgstr "" + +#: src/engine/sysDef.cpp:1061 +msgid "" +"an expansion chip for the Famicom, featuring a little-known PCM channel." +msgstr "" + +#: src/engine/sysDef.cpp:1073 src/gui/settings.cpp:4041 +msgid "Namco 163" +msgstr "" + +#: src/engine/sysDef.cpp:1074 +msgid "an expansion chip for the Famicom, with full wavetable." +msgstr "" + +#: src/engine/sysDef.cpp:1081 +msgid "18xx: Change channel limits (0 to 7, x + 1)" +msgstr "" + +#: src/engine/sysDef.cpp:1082 +msgid "20xx: Load a waveform into memory" +msgstr "" + +#: src/engine/sysDef.cpp:1083 +msgid "21xx: Set position for wave load" +msgstr "" + +#: src/engine/sysDef.cpp:1086 +msgid "10xx: Select waveform" +msgstr "" + +#: src/engine/sysDef.cpp:1087 +msgid "11xx: Set waveform position in RAM" +msgstr "" + +#: src/engine/sysDef.cpp:1088 +msgid "12xx: Set waveform length in RAM (04 to FC in steps of 4)" +msgstr "" + +#: src/engine/sysDef.cpp:1089 +msgid "15xx: Set waveform load position" +msgstr "" + +#: src/engine/sysDef.cpp:1090 +msgid "16xx: Set waveform load length (04 to FC in steps of 4)" +msgstr "" + +#: src/engine/sysDef.cpp:1095 +msgid "Yamaha YM2203 (OPN)" +msgstr "" + +#: src/engine/sysDef.cpp:1096 +msgid "" +"cost-reduced version of the OPM with a different register layout and no " +"stereo...\n" +"...but it has a built-in AY-3-8910! (actually an YM2149)" +msgstr "" + +#: src/engine/sysDef.cpp:1107 +msgid "Yamaha YM2203 (OPN) Extended Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:1108 +msgid "" +"cost-reduced version of the OPM with a different register layout and no " +"stereo...\n" +"...but it has a built-in AY-3-8910! (actually an YM2149)\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies" +msgstr "" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP1" +msgstr "" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP2" +msgstr "" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP3" +msgstr "" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP4" +msgstr "" + +#: src/engine/sysDef.cpp:1120 +msgid "Yamaha YM2203 (OPN) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1121 +msgid "" +"cost-reduced version of the OPM with a different register layout and no " +"stereo...\n" +"...but it has a built-in AY-3-8910! (actually an YM2149)\n" +"CSM blah blah" +msgstr "" + +#: src/engine/sysDef.cpp:1122 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1383 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1559 src/engine/sysDef.cpp:1861 +msgid "CSM Timer" +msgstr "" + +#: src/engine/sysDef.cpp:1133 +msgid "Yamaha YM2608 (OPNA)" +msgstr "" + +#: src/engine/sysDef.cpp:1134 +msgid "" +"OPN but twice the FM channels, stereo makes a come-back and has rhythm and " +"ADPCM channels." +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1481 +#: src/gui/insEdit.cpp:3302 src/gui/insEdit.cpp:3624 +msgid "Kick" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:210 src/gui/insEdit.cpp:218 +msgid "Snare" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:212 src/gui/insEdit.cpp:220 +#: src/gui/insEdit.cpp:1909 src/gui/insEdit.cpp:2014 +msgid "Top" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:213 src/gui/insEdit.cpp:219 +msgid "HiHat" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:211 +msgid "Tom" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 +msgid "Rim" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:1693 +msgid "ADPCM" +msgstr "" + +#: src/engine/sysDef.cpp:1145 +msgid "Yamaha YM2608 (OPNA) Extended Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:1146 +msgid "" +"OPN but twice the FM channels, stereo makes a come-back and has rhythm and " +"ADPCM channels.\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies" +msgstr "" + +#: src/engine/sysDef.cpp:1158 +msgid "Yamaha YM2608 (OPNA) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1159 +msgid "" +"OPN but twice the FM channels, stereo makes a come-back and has rhythm and " +"ADPCM channels.\n" +"CSM blah blah" +msgstr "" + +#: src/engine/sysDef.cpp:1171 +msgid "Yamaha YM3526 (OPL)" +msgstr "" + +#: src/engine/sysDef.cpp:1172 +msgid "" +"OPN, but what if you only had two operators, no stereo, no detune and a " +"lower ADSR parameter range?" +msgstr "" + +#: src/engine/sysDef.cpp:1183 +msgid "Yamaha YM3812 (OPL2)" +msgstr "" + +#: src/engine/sysDef.cpp:1184 +msgid "OPL, but what if you had more waveforms to choose than the normal sine?" +msgstr "" + +#: src/engine/sysDef.cpp:1195 +msgid "Yamaha YMF262 (OPL3)" +msgstr "" + +#: src/engine/sysDef.cpp:1196 +msgid "" +"OPL2, but what if you had twice the channels, 4-op mode, stereo and even " +"more waveforms?" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 1" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 3" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 5" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 7" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 9" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 10" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 11" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 12" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 13" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 14" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 15" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:2006 +msgid "FM 16" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:2006 +msgid "FM 17" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:2006 +msgid "FM 18" +msgstr "" + +#: src/engine/sysDef.cpp:1208 src/gui/settings.cpp:4051 +msgid "MultiPCM" +msgstr "" + +#: src/engine/sysDef.cpp:1209 +msgid "" +"how many channels of PCM do you want?\n" +"MultiPCM: yes" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 17" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 18" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 19" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 20" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 21" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 22" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 23" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 24" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 25" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 26" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 27" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 28" +msgstr "" + +#: src/engine/sysDef.cpp:1217 +msgid "PC Speaker" +msgstr "" + +#: src/engine/sysDef.cpp:1218 +msgid "good luck! you get one square and no volume control." +msgstr "" + +#: src/engine/sysDef.cpp:1219 src/engine/sysDef.cpp:1228 +#: src/gui/guiConst.cpp:1394 src/gui/waveEdit.cpp:199 src/gui/insEdit.cpp:183 +#: src/gui/insEdit.cpp:194 src/gui/insEdit.cpp:326 src/gui/insEdit.cpp:656 +msgid "Square" +msgstr "" + +#: src/engine/sysDef.cpp:1226 +msgid "Pong" +msgstr "" + +#: src/engine/sysDef.cpp:1227 +msgid "please don't use this chip. it was added as a joke." +msgstr "" + +#: src/engine/sysDef.cpp:1235 src/gui/settings.cpp:4044 +msgid "POKEY" +msgstr "" + +#: src/engine/sysDef.cpp:1236 +msgid "" +"TIA, but better and more flexible.\n" +"used in the Atari 8-bit family of computers (400/800/XL/XE)." +msgstr "" + +#: src/engine/sysDef.cpp:1243 src/engine/sysDef.cpp:1714 +msgid "10xx: Set waveform (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1244 +msgid "11xx: Set AUDCTL" +msgstr "" + +#: src/engine/sysDef.cpp:1245 +msgid "12xx: Toggle two-tone mode" +msgstr "" + +#: src/engine/sysDef.cpp:1250 +msgid "Ricoh RF5C68" +msgstr "" + +#: src/engine/sysDef.cpp:1251 +msgid "" +"this is like SNES' sound chip but without interpolation and the rest of nice " +"bits." +msgstr "" + +#: src/engine/sysDef.cpp:1260 src/gui/settings.cpp:4046 +msgid "WonderSwan" +msgstr "" + +#: src/engine/sysDef.cpp:1261 +msgid "developed by the makers of the Game Boy and the Virtual Boy..." +msgstr "" + +#: src/engine/sysDef.cpp:1262 +msgid "Wave/PCM" +msgstr "" + +#: src/engine/sysDef.cpp:1262 +msgid "Wave/Sweep" +msgstr "" + +#: src/engine/sysDef.cpp:1262 +msgid "Wave/Noise" +msgstr "" + +#: src/engine/sysDef.cpp:1269 +msgid "11xx: Setup noise mode (0: disabled; 1-8: enabled/tap)" +msgstr "" + +#: src/engine/sysDef.cpp:1270 +msgid "12xx: Setup sweep period (0: disabled; 1-20: enabled/period)" +msgstr "" + +#: src/engine/sysDef.cpp:1271 +msgid "13xx: Set sweep amount" +msgstr "" + +#: src/engine/sysDef.cpp:1277 +msgid "Yamaha YM2414 (OPZ)" +msgstr "" + +#: src/engine/sysDef.cpp:1278 +msgid "" +"like OPM, but with more waveforms, fixed frequency mode and totally... " +"undocumented.\n" +"used in the Yamaha TX81Z and some other synthesizers." +msgstr "" + +#: src/engine/sysDef.cpp:1285 +msgid "2Fxx: Toggle hard envelope reset on new notes" +msgstr "" + +#: src/engine/sysDef.cpp:1291 src/gui/settings.cpp:4069 +msgid "Pokémon Mini" +msgstr "" + +#: src/engine/sysDef.cpp:1292 +msgid "this one is like PC Speaker but has duty cycles." +msgstr "" + +#: src/engine/sysDef.cpp:1293 src/gui/settings.cpp:4092 src/gui/waveEdit.cpp:33 +msgid "Pulse" +msgstr "" + +#: src/engine/sysDef.cpp:1300 +msgid "SegaPCM" +msgstr "" + +#: src/engine/sysDef.cpp:1301 +msgid "" +"used in some Sega arcade boards (like OutRun), and usually paired with a " +"YM2151." +msgstr "" + +#: src/engine/sysDef.cpp:1312 src/gui/settings.cpp:4040 +msgid "Virtual Boy" +msgstr "" + +#: src/engine/sysDef.cpp:1313 +msgid "" +"a console which failed to sell well due to its headache-inducing features." +msgstr "" + +#: src/engine/sysDef.cpp:1321 +msgid "11xx: Set noise length (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1322 +msgid "" +"12xy: Setup envelope (x: enabled/loop (1: enable, 3: enable+loop); y: speed/" +"direction (0-7: down, 8-F: up))" +msgstr "" + +#: src/engine/sysDef.cpp:1323 +msgid "13xy: Setup sweep (x: speed; y: shift; channel 5 only)" +msgstr "" + +#: src/engine/sysDef.cpp:1324 +msgid "" +"14xy: Setup modulation (x: enabled/loop (1: enable, 3: enable+loop); y: " +"speed; channel 5 only)" +msgstr "" + +#: src/engine/sysDef.cpp:1325 +msgid "15xx: Set modulation waveform (x: wavetable; channel 5 only)" +msgstr "" + +#: src/engine/sysDef.cpp:1330 +msgid "Konami VRC7" +msgstr "" + +#: src/engine/sysDef.cpp:1331 +msgid "" +"like OPLL, but even more cost reductions applied. three FM channels went " +"missing, and drums mode did as well..." +msgstr "" + +#: src/engine/sysDef.cpp:1342 +msgid "Yamaha YM2610B (OPNB2)" +msgstr "" + +#: src/engine/sysDef.cpp:1343 +msgid "" +"so Taito asked Yamaha if they could get the two missing FM channels back, " +"and Yamaha gladly provided them with this chip." +msgstr "" + +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/gui/settings.cpp:4061 +msgid "ADPCM-B" +msgstr "" + +#: src/engine/sysDef.cpp:1354 +msgid "ZX Spectrum Beeper" +msgstr "" + +#: src/engine/sysDef.cpp:1355 +msgid "" +"the ZX Spectrum only had a basic beeper capable of...\n" +"...a bunch of thin pulses and tons of other interesting stuff!\n" +"Furnace provides a thin pulse system." +msgstr "" + +#: src/engine/sysDef.cpp:1362 src/engine/sysDef.cpp:1950 +msgid "12xx: Set pulse width" +msgstr "" + +#: src/engine/sysDef.cpp:1363 +msgid "17xx: Trigger overlay drum" +msgstr "" + +#: src/engine/sysDef.cpp:1368 +msgid "Yamaha YM2612 (OPN2) Extended Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:1369 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:1381 +msgid "Yamaha YM2612 (OPN2) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1382 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this one includes CSM mode control for special effects on Channel 3." +msgstr "" + +#: src/engine/sysDef.cpp:1394 src/gui/settings.cpp:4042 +msgid "Konami SCC" +msgstr "" + +#: src/engine/sysDef.cpp:1395 +msgid "" +"a wavetable chip made by Konami for use with the MSX.\n" +"the last channel shares its wavetable with the previous one though." +msgstr "" + +#: src/engine/sysDef.cpp:1405 +msgid "Yamaha YM3526 (OPL) with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1406 +msgid "the OPL chip but with drums mode enabled." +msgstr "" + +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1693 +msgid "Kick/FM 7" +msgstr "" + +#: src/engine/sysDef.cpp:1417 +msgid "Yamaha YM3812 (OPL2) with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1418 +msgid "the OPL2 chip but with drums mode enabled." +msgstr "" + +#: src/engine/sysDef.cpp:1429 +msgid "Yamaha YMF262 (OPL3) with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1430 +msgid "the OPL3 chip but with drums mode enabled." +msgstr "" + +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1631 +msgid "Kick/FM 16" +msgstr "" + +#: src/engine/sysDef.cpp:1441 +msgid "Yamaha YM2610 (OPNB)" +msgstr "" + +#: src/engine/sysDef.cpp:1442 +msgid "" +"this chip was used in SNK's Neo Geo arcade board and video game console.\n" +"it's like OPNA but the rhythm channels are ADPCM channels and two FM " +"channels went missing." +msgstr "" + +#: src/engine/sysDef.cpp:1453 +msgid "Yamaha YM2610 (OPNB) Extended Channel 2" +msgstr "" + +#: src/engine/sysDef.cpp:1454 +msgid "" +"this chip was used in SNK's Neo Geo arcade board and video game console.\n" +"it's like OPNA but the rhythm channels are ADPCM channels and two FM " +"channels went missing.\n" +"this one is in Extended Channel mode, which turns the second FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:1466 +msgid "Yamaha YM2610 (OPNB) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1467 +msgid "" +"this chip was used in SNK's Neo Geo arcade board and video game console.\n" +"it's like OPNA but the rhythm channels are ADPCM channels and two FM " +"channels went missing.\n" +"this one includes CSM mode control for special effects on Channel 2." +msgstr "" + +#: src/engine/sysDef.cpp:1479 +msgid "Yamaha YM2413 (OPLL) with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1480 +msgid "the OPLL chips but with drums mode turned on." +msgstr "" + +#: src/engine/sysDef.cpp:1491 +msgid "3xxx: Load LFSR (0 to FFF)" +msgstr "" + +#: src/engine/sysDef.cpp:1497 +msgid "Atari Lynx" +msgstr "" + +#: src/engine/sysDef.cpp:1498 +msgid "" +"a portable console made by Atari. it has all of Atari's trademark waveforms." +msgstr "" + +#: src/engine/sysDef.cpp:1509 +msgid "10xx: Set echo feedback level (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1510 +msgid "11xx: Set channel echo level (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1511 +msgid "12xx: Toggle QSound algorithm (0: disabled; 1: enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:1513 +msgid "3xxx: Set echo delay buffer length (000 to AA5)" +msgstr "" + +#: src/engine/sysDef.cpp:1519 +msgid "Capcom QSound" +msgstr "" + +#: src/engine/sysDef.cpp:1520 +msgid "" +"used in some of Capcom's arcade boards. surround-like sampled sound with " +"echo." +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +#: src/engine/sysDef.cpp:2056 +msgid "PCM 1" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +#: src/engine/sysDef.cpp:2056 +msgid "PCM 2" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 3" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 4" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 5" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 6" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 7" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 8" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 9" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 10" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 11" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 12" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 13" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 14" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 15" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 16" +msgstr "" + +#: src/engine/sysDef.cpp:1521 +msgid "ADPCM 1" +msgstr "" + +#: src/engine/sysDef.cpp:1521 +msgid "ADPCM 2" +msgstr "" + +#: src/engine/sysDef.cpp:1521 +msgid "ADPCM 3" +msgstr "" + +#: src/engine/sysDef.cpp:1530 src/gui/settings.cpp:4048 +msgid "VERA" +msgstr "" + +#: src/engine/sysDef.cpp:1531 +msgid "the chip used in a computer design created by The 8-Bit Guy." +msgstr "" + +#: src/engine/sysDef.cpp:1538 +msgid "20xx: Set waveform" +msgstr "" + +#: src/engine/sysDef.cpp:1539 +msgid "22xx: Set duty cycle (0 to 3F)" +msgstr "" + +#: src/engine/sysDef.cpp:1544 +msgid "Yamaha YM2610B (OPNB2) Extended Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:1545 +msgid "" +"so Taito asked Yamaha if they could get the two missing FM channels back, " +"and Yamaha gladly provided them with this chip.\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:1557 +msgid "Yamaha YM2610B (OPNB2) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1558 +msgid "" +"so Taito asked Yamaha if they could get the two missing FM channels back, " +"and Yamaha gladly provided them with this chip.\n" +"CSM blah blah" +msgstr "" + +#: src/engine/sysDef.cpp:1570 +msgid "SegaPCM (compatible 5-channel mode)" +msgstr "" + +#: src/engine/sysDef.cpp:1571 +msgid "" +"this is the same thing as SegaPCM, but only exposes 5 of the channels for " +"compatibility with DefleMask." +msgstr "" + +#: src/engine/sysDef.cpp:1582 +msgid "Seta/Allumer X1-010" +msgstr "" + +#: src/engine/sysDef.cpp:1583 +msgid "" +"a sound chip used in several Seta/Allumer-manufactured arcade boards with " +"too many channels of wavetable sound, which also are capable of sampled " +"sound." +msgstr "" + +#: src/engine/sysDef.cpp:1591 +msgid "11xx: Set envelope shape" +msgstr "" + +#: src/engine/sysDef.cpp:1592 +msgid "12xx: Set sample bank slot (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1596 +msgid "20xx: Set PCM frequency (1 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1597 +msgid "" +"22xx: Set envelope mode (bit 0: enable; bit 1: one-shot; bit 2: split shape " +"to L/R; bit 3/5: H.invert right/left; bit 4/6: V.invert right/left)" +msgstr "" + +#: src/engine/sysDef.cpp:1598 +msgid "23xx: Set envelope period" +msgstr "" + +#: src/engine/sysDef.cpp:1606 +msgid "Konami Bubble System WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1607 +msgid "" +"this is the wavetable part of the Bubble System, which also had two " +"AY-3-8910s." +msgstr "" + +#: src/engine/sysDef.cpp:1619 +msgid "Yamaha YMF278B (OPL4)" +msgstr "" + +#: src/engine/sysDef.cpp:1620 +msgid "like OPL3, but this time it also has a 24-channel version of MultiPCM." +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 17" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 18" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 19" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 20" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 21" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 22" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 23" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 24" +msgstr "" + +#: src/engine/sysDef.cpp:1629 +msgid "Yamaha YMF278B (OPL4) with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1630 +msgid "the OPL4 but with drums mode turned on." +msgstr "" + +#: src/engine/sysDef.cpp:1638 +msgid "11xx: Set filter mode (00 to 03)" +msgstr "" + +#: src/engine/sysDef.cpp:1639 +msgid "14xx: Set filter coefficient K1 low byte (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1640 +msgid "15xx: Set filter coefficient K1 high byte (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1641 +msgid "16xx: Set filter coefficient K2 low byte (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1642 +msgid "17xx: Set filter coefficient K2 high byte (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1643 +msgid "18xx: Set filter coefficient K1 slide up (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1644 +msgid "19xx: Set filter coefficient K1 slide down (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1645 +msgid "1Axx: Set filter coefficient K2 slide up (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1646 +msgid "1Bxx: Set filter coefficient K2 slide down (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1647 +msgid "22xx: Set envelope left volume ramp (signed) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1648 +msgid "23xx: Set envelope right volume ramp (signed) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1649 +msgid "24xx: Set envelope filter coefficient k1 ramp (signed) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1650 +msgid "" +"25xx: Set envelope filter coefficient k1 ramp (signed, slower) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1651 +msgid "26xx: Set envelope filter coefficient k2 ramp (signed) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1652 +msgid "" +"27xx: Set envelope filter coefficient k2 ramp (signed, slower) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1656 +msgid "120x: Set pause (bit 0)" +msgstr "" + +#: src/engine/sysDef.cpp:1658 +msgid "2xxx: Set envelope count (000 to 1FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1659 +msgid "3xxx: Set filter coefficient K1 (000 to FFF)" +msgstr "" + +#: src/engine/sysDef.cpp:1660 +msgid "4xxx: Set filter coefficient K2 (000 to FFF)" +msgstr "" + +#: src/engine/sysDef.cpp:1667 +msgid "Ensoniq ES5506" +msgstr "" + +#: src/engine/sysDef.cpp:1668 +msgid "" +"a sample chip made by Ensoniq, which is the basis for the GF1 chip found in " +"Gravis' Ultrasound cards." +msgstr "" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 29" +msgstr "" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 30" +msgstr "" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 31" +msgstr "" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 32" +msgstr "" + +#: src/engine/sysDef.cpp:1679 +msgid "Yamaha Y8950" +msgstr "" + +#: src/engine/sysDef.cpp:1680 +msgid "like OPL but with an ADPCM channel." +msgstr "" + +#: src/engine/sysDef.cpp:1691 +msgid "Yamaha Y8950 with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1692 +msgid "the Y8950 chip, in drums mode." +msgstr "" + +#: src/engine/sysDef.cpp:1703 +msgid "Konami SCC+" +msgstr "" + +#: src/engine/sysDef.cpp:1704 +msgid "" +"this is a variant of Konami's SCC chip with the last channel's wavetable " +"being independent." +msgstr "" + +#: src/engine/sysDef.cpp:1715 +msgid "12xx: Set pulse width (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:1716 +msgid "13xx: Set resonance (0 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1717 +msgid "" +"14xx: Set filter mode (bit 0: ring mod; bit 1: low pass; bit 2: high pass; " +"bit 3: band pass)" +msgstr "" + +#: src/engine/sysDef.cpp:1718 +msgid "15xx: Set frequency sweep period low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1719 +msgid "16xx: Set frequency sweep period high byte" +msgstr "" + +#: src/engine/sysDef.cpp:1720 +msgid "17xx: Set volume sweep period low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1721 +msgid "18xx: Set volume sweep period high byte" +msgstr "" + +#: src/engine/sysDef.cpp:1722 +msgid "19xx: Set cutoff sweep period low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1723 +msgid "1Axx: Set cutoff sweep period high byte" +msgstr "" + +#: src/engine/sysDef.cpp:1724 +msgid "1Bxx: Set frequency sweep boundary" +msgstr "" + +#: src/engine/sysDef.cpp:1725 +msgid "1Cxx: Set volume sweep boundary" +msgstr "" + +#: src/engine/sysDef.cpp:1726 +msgid "1Dxx: Set cutoff sweep boundary" +msgstr "" + +#: src/engine/sysDef.cpp:1727 +msgid "1Exx: Set phase reset period low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1728 +msgid "1Fxx: Set phase reset period high byte" +msgstr "" + +#: src/engine/sysDef.cpp:1729 +msgid "20xx: Toggle frequency sweep (bit 0-6: speed; bit 7: direction is up)" +msgstr "" + +#: src/engine/sysDef.cpp:1730 +msgid "" +"21xx: Toggle volume sweep (bit 0-4: speed; bit 5: direction is up; bit 6: " +"loop; bit 7: alternate)" +msgstr "" + +#: src/engine/sysDef.cpp:1731 +msgid "22xx: Toggle cutoff sweep (bit 0-6: speed; bit 7: direction is up)" +msgstr "" + +#: src/engine/sysDef.cpp:1739 +msgid "tildearrow Sound Unit" +msgstr "" + +#: src/engine/sysDef.cpp:1740 +msgid "" +"tildearrow's fantasy sound chip. put SID, AY and VERA in a blender, and you " +"get this!" +msgstr "" + +#: src/engine/sysDef.cpp:1751 +msgid "OKI MSM6295" +msgstr "" + +#: src/engine/sysDef.cpp:1752 +msgid "an ADPCM sound chip manufactured by OKI and used in many arcade boards." +msgstr "" + +#: src/engine/sysDef.cpp:1759 +msgid "20xx: Set chip output rate (0: clock/132; 1: clock/165)" +msgstr "" + +#: src/engine/sysDef.cpp:1764 +msgid "OKI MSM6258" +msgstr "" + +#: src/engine/sysDef.cpp:1765 +msgid "an ADPCM sound chip manufactured by OKI and used in the Sharp X68000." +msgstr "" + +#: src/engine/sysDef.cpp:1766 src/engine/sysDef.cpp:1887 +#: src/gui/editControls.cpp:437 src/gui/settings.cpp:4223 +#: src/gui/guiConst.cpp:1397 src/gui/insEdit.cpp:2628 src/gui/insEdit.cpp:2666 +msgid "Sample" +msgstr "" + +#: src/engine/sysDef.cpp:1772 +msgid "20xx: Set frequency divider (0-2)" +msgstr "" + +#: src/engine/sysDef.cpp:1773 +msgid "21xx: Select clock rate (0: full; 1: half)" +msgstr "" + +#: src/engine/sysDef.cpp:1778 +msgid "Yamaha YMZ280B (PCMD8)" +msgstr "" + +#: src/engine/sysDef.cpp:1779 +msgid "" +"used in some arcade boards. Can play back either 4-bit ADPCM, 8-bit PCM or " +"16-bit PCM." +msgstr "" + +#: src/engine/sysDef.cpp:1797 src/gui/settings.cpp:4054 +msgid "Namco WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1798 +msgid "" +"a wavetable sound chip used in Pac-Man, among other early Namco arcade games." +msgstr "" + +#: src/engine/sysDef.cpp:1808 +msgid "Namco C15 WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1809 +msgid "" +"successor of the original Namco WSG chip, used in later Namco arcade games." +msgstr "" + +#: src/engine/sysDef.cpp:1819 +msgid "Namco C30 WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1820 +msgid "like Namco C15 but with stereo sound." +msgstr "" + +#: src/engine/sysDef.cpp:1830 +msgid "OKI MSM5232" +msgstr "" + +#: src/engine/sysDef.cpp:1831 +msgid "" +"a square wave additive synthesis chip made by OKI. used in some arcade " +"machines and instruments." +msgstr "" + +#: src/engine/sysDef.cpp:1839 +msgid "10xy: Set group control (x: sustain; y: part toggle bitmask)" +msgstr "" + +#: src/engine/sysDef.cpp:1840 src/engine/sysDef.cpp:1998 +msgid "11xx: Set noise mode" +msgstr "" + +#: src/engine/sysDef.cpp:1841 +msgid "12xx: Set group attack (0 to 5)" +msgstr "" + +#: src/engine/sysDef.cpp:1842 +msgid "13xx: Set group decay (0 to 11)" +msgstr "" + +#: src/engine/sysDef.cpp:1847 +msgid "Yamaha YM2612 (OPN2) with DualPCM" +msgstr "" + +#: src/engine/sysDef.cpp:1848 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this system uses software mixing to provide two sample channels." +msgstr "" + +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +msgid "FM 6/PCM 1" +msgstr "" + +#: src/engine/sysDef.cpp:1859 +msgid "Yamaha YM2612 (OPN2) Extended Channel 3 with DualPCM and CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1860 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this system uses software mixing to provide two sample channels.\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:1872 src/gui/settings.cpp:4024 +msgid "T6W28" +msgstr "" + +#: src/engine/sysDef.cpp:1873 +msgid "" +"an SN76489 derivative used in Neo Geo Pocket, has independent stereo volume " +"and noise channel frequency." +msgstr "" + +#: src/engine/sysDef.cpp:1880 +msgid "20xx: Set noise length (0: short, 1: long)" +msgstr "" + +#: src/engine/sysDef.cpp:1885 +msgid "Generic PCM DAC" +msgstr "" + +#: src/engine/sysDef.cpp:1886 +msgid "as generic sample playback as it gets." +msgstr "" + +#: src/engine/sysDef.cpp:1898 +msgid "Konami K007232" +msgstr "" + +#: src/engine/sysDef.cpp:1899 +msgid "this PCM chip was widely used at Konami arcade boards in 1986-1990." +msgstr "" + +#: src/engine/sysDef.cpp:1908 +msgid "Irem GA20" +msgstr "" + +#: src/engine/sysDef.cpp:1909 +msgid "" +"yet another PCM chip from Irem. like Amiga, but less pitch resolution and no " +"sample loop." +msgstr "" + +#: src/engine/sysDef.cpp:1918 +msgid "Sharp SM8521" +msgstr "" + +#: src/engine/sysDef.cpp:1919 +msgid "a SoC with wavetable sound hardware." +msgstr "" + +#: src/engine/sysDef.cpp:1929 +msgid "Casio PV-1000" +msgstr "" + +#: src/engine/sysDef.cpp:1930 +msgid "" +"a game console with 3 channels of square wave. it's what happens after " +"fusing TIA and VIC together." +msgstr "" + +#: src/engine/sysDef.cpp:1937 +msgid "10xx: Set ring modulation (0: disable, 1: enable)" +msgstr "" + +#: src/engine/sysDef.cpp:1942 +msgid "ZX Spectrum Beeper (QuadTone Engine)" +msgstr "" + +#: src/engine/sysDef.cpp:1943 +msgid "" +"another ZX Spectrum beeper system with full PWM pulses and 3-level volume " +"per channel. it also has a pitchable overlay sample channel." +msgstr "" + +#: src/engine/sysDef.cpp:1955 +msgid "Konami K053260" +msgstr "" + +#: src/engine/sysDef.cpp:1956 +msgid "this PCM chip was widely used at Konami arcade boards in 1990-1992." +msgstr "" + +#: src/engine/sysDef.cpp:1968 +msgid "MOS Technology TED" +msgstr "" + +#: src/engine/sysDef.cpp:1969 +msgid "" +"two square waves (one may be turned into noise). used in the Commodore " +"Plus/4, 16 and 116." +msgstr "" + +#: src/engine/sysDef.cpp:1978 +msgid "Namco C140" +msgstr "" + +#: src/engine/sysDef.cpp:1979 +msgid "Namco's first PCM chip from 1987. it's pretty good for being so." +msgstr "" + +#: src/engine/sysDef.cpp:1989 +msgid "Namco C219" +msgstr "" + +#: src/engine/sysDef.cpp:1990 +msgid "" +"Namco's PCM chip used in their NA-1/2 hardware.\n" +"very similar to C140, but has noise generator." +msgstr "" + +#: src/engine/sysDef.cpp:1999 +msgid "12xy: Set invert mode (x: surround; y: invert)" +msgstr "" + +#: src/engine/sysDef.cpp:2004 +msgid "ESS ES1xxx series (ESFM)" +msgstr "" + +#: src/engine/sysDef.cpp:2005 +msgid "" +"a unique FM synth featured in PC sound cards.\n" +"based on the OPL3 design, but with lots of its features extended." +msgstr "" + +#: src/engine/sysDef.cpp:2006 +msgid "FM 11" +msgstr "" + +#: src/engine/sysDef.cpp:2012 +msgid "2Exx: Toggle hard envelope reset on new notes" +msgstr "" + +#: src/engine/sysDef.cpp:2018 +msgid "PowerNoise" +msgstr "" + +#: src/engine/sysDef.cpp:2019 +msgid "" +"a fantasy sound chip designed by jvsTSX and The Beesh-Spweesh!\n" +"used in the Hexheld fantasy console." +msgstr "" + +#: src/engine/sysDef.cpp:2020 +msgid "Noise 1" +msgstr "" + +#: src/engine/sysDef.cpp:2020 +msgid "Noise 2" +msgstr "" + +#: src/engine/sysDef.cpp:2020 +msgid "Noise 3" +msgstr "" + +#: src/engine/sysDef.cpp:2020 +msgid "Slope" +msgstr "" + +#: src/engine/sysDef.cpp:2026 +msgid "" +"20xx: Load low byte of noise channel LFSR (00 to FF) or slope channel " +"accumulator (00 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:2027 +msgid "21xx: Load high byte of noise channel LFSR (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:2028 +msgid "22xx: Write to I/O port A" +msgstr "" + +#: src/engine/sysDef.cpp:2029 +msgid "23xx: Write to I/O port B" +msgstr "" + +#: src/engine/sysDef.cpp:2035 src/gui/settings.cpp:4079 +msgid "Dave" +msgstr "" + +#: src/engine/sysDef.cpp:2036 +msgid "" +"this chip was featured in the Enterprise 128 computer. it is similar to " +"POKEY, but with stereo output." +msgstr "" + +#: src/engine/sysDef.cpp:2037 +msgid "DAC Left" +msgstr "" + +#: src/engine/sysDef.cpp:2037 +msgid "DAC Right" +msgstr "" + +#: src/engine/sysDef.cpp:2043 +msgid "10xx: Set waveform (0 to 4; 0 to 3 on noise)" +msgstr "" + +#: src/engine/sysDef.cpp:2044 +msgid "11xx: Set noise frequency source (0: fixed; 1-3: channels 1 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:2045 +msgid "12xx: Toggle high-pass with next channel" +msgstr "" + +#: src/engine/sysDef.cpp:2046 +msgid "13xx: Toggle ring modulation with channel+2" +msgstr "" + +#: src/engine/sysDef.cpp:2047 +msgid "14xx: Toggle swap counters (noise only)" +msgstr "" + +#: src/engine/sysDef.cpp:2048 +msgid "15xx: Toggle low pass (noise only)" +msgstr "" + +#: src/engine/sysDef.cpp:2049 +msgid "16xx: Set clock divider (0: /2; 1: /3)" +msgstr "" + +#: src/engine/sysDef.cpp:2054 +msgid "Game Boy Advance DMA Sound" +msgstr "" + +#: src/engine/sysDef.cpp:2055 +msgid "" +"additional PCM FIFO channels in Game Boy Advance driven directly by its DMA " +"hardware." +msgstr "" + +#: src/engine/sysDef.cpp:2068 +msgid "Game Boy Advance MinMod" +msgstr "" + +#: src/engine/sysDef.cpp:2069 +msgid "" +"additional PCM FIFO channels in Game Boy Advance driven by software mixing " +"to provide up to sixteen sample channels" +msgstr "" + +#: src/engine/sysDef.cpp:2078 +msgid "11xy: Set echo channel (x: left/right source; y: delay (0 disables))" +msgstr "" + +#: src/engine/sysDef.cpp:2079 +msgid "12xy: Toggle invert (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:2084 src/gui/settings.cpp:4080 +msgid "Nintendo DS" +msgstr "" + +#: src/engine/sysDef.cpp:2085 +msgid "a handheld video game console with two screens. it uses a stylus." +msgstr "" + +#: src/engine/sysDef.cpp:2093 +msgid "1Fxx: Set global volume (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:2098 +msgid "5E01" +msgstr "" + +#: src/engine/sysDef.cpp:2099 +msgid "" +"a fantasy sound chip created by Euly. it is based on Ricoh 2A03, adding a " +"couple features such as 32 noise pitches, an extra duty cycle, and three " +"waveforms (besides triangle)." +msgstr "" + +#: src/engine/sysDef.cpp:2107 +msgid "" +"12xx: Set duty cycle/noise mode/waveform (pulse/wave: 0 to 3; noise: 0 or 1)" +msgstr "" + +#: src/engine/sysDef.cpp:2120 src/gui/settings.cpp:4083 +msgid "Bifurcator" +msgstr "" + +#: src/engine/sysDef.cpp:2121 +msgid "a fantasy sound chip using logistic map iterations to generate sound." +msgstr "" + +#: src/engine/sysDef.cpp:2128 +msgid "10xx: Load low byte of channel sample state" +msgstr "" + +#: src/engine/sysDef.cpp:2129 +msgid "11xx: Load high byte of channel sample state" +msgstr "" + +#: src/engine/sysDef.cpp:2130 +msgid "12xx: Set low byte of channel parameter" +msgstr "" + +#: src/engine/sysDef.cpp:2131 +msgid "13xx: Set high byte of channel parameter" +msgstr "" + +#: src/engine/sysDef.cpp:2136 src/gui/settings.cpp:4084 +msgid "SID2" +msgstr "" + +#: src/engine/sysDef.cpp:2137 +msgid "" +"a fantasy sound chip created by LTVA. it is similar to the SID chip, but " +"with many of its problems fixed." +msgstr "" + +#: src/engine/sysDef.cpp:2148 +msgid "Dummy System" +msgstr "" + +#: src/engine/sysDef.cpp:2149 +msgid "this is a system designed for testing purposes." +msgstr "" + +#: src/engine/engine.cpp:51 +msgid "00xy: Arpeggio" +msgstr "" + +#: src/engine/engine.cpp:53 +msgid "01xx: Pitch slide up" +msgstr "" + +#: src/engine/engine.cpp:55 +msgid "02xx: Pitch slide down" +msgstr "" + +#: src/engine/engine.cpp:57 +msgid "03xx: Portamento" +msgstr "" + +#: src/engine/engine.cpp:59 +msgid "04xy: Vibrato (x: speed; y: depth)" +msgstr "" + +#: src/engine/engine.cpp:61 +msgid "05xy: Volume slide + vibrato (compatibility only!)" +msgstr "" + +#: src/engine/engine.cpp:63 +msgid "06xy: Volume slide + portamento (compatibility only!)" +msgstr "" + +#: src/engine/engine.cpp:65 +msgid "07xy: Tremolo (x: speed; y: depth)" +msgstr "" + +#: src/engine/engine.cpp:67 +msgid "08xy: Set panning (x: left; y: right)" +msgstr "" + +#: src/engine/engine.cpp:69 +msgid "09xx: Set groove pattern (speed 1 if no grooves exist)" +msgstr "" + +#: src/engine/engine.cpp:71 +msgid "0Axy: Volume slide (0y: down; x0: up)" +msgstr "" + +#: src/engine/engine.cpp:73 +msgid "0Bxx: Jump to pattern" +msgstr "" + +#: src/engine/engine.cpp:75 +msgid "0Cxx: Retrigger" +msgstr "" + +#: src/engine/engine.cpp:77 +msgid "0Dxx: Jump to next pattern" +msgstr "" + +#: src/engine/engine.cpp:79 +msgid "0Fxx: Set speed (speed 2 if no grooves exist)" +msgstr "" + +#: src/engine/engine.cpp:81 +msgid "80xx: Set panning (00: left; 80: center; FF: right)" +msgstr "" + +#: src/engine/engine.cpp:83 +msgid "81xx: Set panning (left channel)" +msgstr "" + +#: src/engine/engine.cpp:85 +msgid "82xx: Set panning (right channel)" +msgstr "" + +#: src/engine/engine.cpp:87 +msgid "88xy: Set panning (rear channels; x: left; y: right)" +msgstr "" + +#: src/engine/engine.cpp:90 +msgid "89xx: Set panning (rear left channel)" +msgstr "" + +#: src/engine/engine.cpp:93 +msgid "8Axx: Set panning (rear right channel)" +msgstr "" + +#: src/engine/engine.cpp:96 +msgid "Cxxx: Set tick rate (hz)" +msgstr "" + +#: src/engine/engine.cpp:98 +msgid "E0xx: Set arp speed" +msgstr "" + +#: src/engine/engine.cpp:100 +msgid "E1xy: Note slide up (x: speed; y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:102 +msgid "E2xy: Note slide down (x: speed; y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:104 +msgid "E3xx: Set vibrato shape (0: up/down; 1: up only; 2: down only)" +msgstr "" + +#: src/engine/engine.cpp:106 +msgid "E4xx: Set vibrato range" +msgstr "" + +#: src/engine/engine.cpp:108 +msgid "E5xx: Set pitch (80: center)" +msgstr "" + +#: src/engine/engine.cpp:110 +msgid "E6xy: Quick legato (x: time (0-7 up; 8-F down); y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:112 +msgid "E7xx: Macro release" +msgstr "" + +#: src/engine/engine.cpp:114 +msgid "E8xy: Quick legato up (x: time; y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:116 +msgid "E9xy: Quick legato down (x: time; y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:118 +msgid "EAxx: Legato" +msgstr "" + +#: src/engine/engine.cpp:120 +msgid "EBxx: Set LEGACY sample mode bank" +msgstr "" + +#: src/engine/engine.cpp:122 +msgid "ECxx: Note cut" +msgstr "" + +#: src/engine/engine.cpp:124 +msgid "EDxx: Note delay" +msgstr "" + +#: src/engine/engine.cpp:126 +msgid "EExx: Send external command" +msgstr "" + +#: src/engine/engine.cpp:128 +msgid "F0xx: Set tick rate (bpm)" +msgstr "" + +#: src/engine/engine.cpp:130 +msgid "F1xx: Single tick note slide up" +msgstr "" + +#: src/engine/engine.cpp:132 +msgid "F2xx: Single tick note slide down" +msgstr "" + +#: src/engine/engine.cpp:134 +msgid "F3xx: Fine volume slide up" +msgstr "" + +#: src/engine/engine.cpp:136 +msgid "F4xx: Fine volume slide down" +msgstr "" + +#: src/engine/engine.cpp:138 +msgid "F5xx: Disable macro (see manual)" +msgstr "" + +#: src/engine/engine.cpp:140 +msgid "F6xx: Enable macro (see manual)" +msgstr "" + +#: src/engine/engine.cpp:142 +msgid "F7xx: Restart macro (see manual)" +msgstr "" + +#: src/engine/engine.cpp:144 +msgid "F8xx: Single tick volume slide up" +msgstr "" + +#: src/engine/engine.cpp:146 +msgid "F9xx: Single tick volume slide down" +msgstr "" + +#: src/engine/engine.cpp:148 +msgid "FAxx: Fast volume slide (0y: down; x0: up)" +msgstr "" + +#: src/engine/engine.cpp:150 +msgid "FCxx: Note release" +msgstr "" + +#: src/engine/engine.cpp:152 +msgid "FDxx: Set virtual tempo numerator" +msgstr "" + +#: src/engine/engine.cpp:154 +msgid "FExx: Set virtual tempo denominator" +msgstr "" + +#: src/engine/engine.cpp:156 +msgid "FFxx: Stop song" +msgstr "" + +#: src/engine/engine.cpp:160 +msgid "9xxx: Set sample offset*256" +msgstr "" + +#: src/engine/engine.cpp:164 +msgid "90xx: Set sample offset (first byte)" +msgstr "" + +#: src/engine/engine.cpp:166 +msgid "91xx: Set sample offset (second byte, ×256)" +msgstr "" + +#: src/engine/engine.cpp:168 +msgid "92xx: Set sample offset (third byte, ×65536)" +msgstr "" + +#: src/engine/engine.cpp:187 src/gui/settings.cpp:4127 +msgid "Invalid effect" +msgstr "" + +#: src/engine/engine.cpp:354 src/gui/gui.cpp:2259 src/gui/gui.cpp:2422 +#, c-format +msgid "on seek: %s" +msgstr "" + +#: src/engine/engine.cpp:361 src/gui/gui.cpp:2266 src/gui/gui.cpp:2429 +#, c-format +msgid "on pre tell: %s" +msgstr "" + +#: src/engine/engine.cpp:368 src/engine/engine.cpp:2768 +#: src/gui/settings.cpp:5811 src/gui/gui.cpp:2273 src/gui/gui.cpp:2436 +msgid "file is empty" +msgstr "" + +#: src/engine/engine.cpp:371 src/gui/gui.cpp:2276 src/gui/gui.cpp:2439 +#, c-format +msgid "on tell: %s" +msgstr "" + +#: src/engine/engine.cpp:378 +#, c-format +msgid "ROM size mismatch, expected: %d bytes, was: %d" +msgstr "" + +#: src/engine/engine.cpp:383 src/gui/settings.cpp:5820 src/gui/gui.cpp:2283 +#: src/gui/gui.cpp:2446 +#, c-format +msgid "on get size: %s" +msgstr "" + +#: src/engine/engine.cpp:390 src/gui/settings.cpp:5827 src/gui/gui.cpp:2290 +#: src/gui/gui.cpp:2453 +#, c-format +msgid "on read: %s" +msgstr "" + +#: src/engine/engine.cpp:1076 src/engine/engine.cpp:1181 +#: src/engine/engine.cpp:1290 +msgid "invalid index" +msgstr "" + +#: src/engine/engine.cpp:1080 src/engine/engine.cpp:1135 +#: src/engine/engine.cpp:1189 +#, c-format +msgid "max number of total channels is %d" +msgstr "" + +#: src/engine/engine.cpp:1131 src/engine/engine.cpp:1185 +#, c-format +msgid "max number of systems is %d" +msgstr "" + +#: src/engine/engine.cpp:1286 +msgid "cannot remove the last one" +msgstr "" + +#: src/engine/engine.cpp:1460 +msgid "source and destination are equal" +msgstr "" + +#: src/engine/engine.cpp:1464 +msgid "invalid source index" +msgstr "" + +#: src/engine/engine.cpp:1468 +msgid "invalid destination index" +msgstr "" + +#: src/engine/engine.cpp:2636 +#, c-format +msgid "Instrument %d" +msgstr "" + +#: src/engine/engine.cpp:2710 src/engine/engine.cpp:2727 +#: src/gui/doAction.cpp:825 src/gui/doAction.cpp:843 src/gui/doAction.cpp:1634 +#: src/gui/gui.cpp:6159 src/gui/insEdit.cpp:6860 +msgid "too many wavetables!" +msgstr "" + +#: src/engine/engine.cpp:2752 +#, c-format +msgid "could not seek to end: %s" +msgstr "" + +#: src/engine/engine.cpp:2758 +#, c-format +msgid "could not determine file size: %s" +msgstr "" + +#: src/engine/engine.cpp:2763 +msgid "file size is invalid!" +msgstr "" + +#: src/engine/engine.cpp:2773 +#, c-format +msgid "could not seek to beginning: %s" +msgstr "" + +#: src/engine/engine.cpp:2780 +#, c-format +msgid "could not read entire file: %s" +msgstr "" + +#: src/engine/engine.cpp:2806 +msgid "invalid wavetable header/data!" +msgstr "" + +#: src/engine/engine.cpp:2877 +msgid "premature end of file" +msgstr "" + +#: src/engine/engine.cpp:2904 src/engine/engine.cpp:2926 +#: src/gui/doAction.cpp:909 src/gui/doAction.cpp:921 +msgid "too many samples!" +msgstr "" + +#: src/engine/engine.cpp:2911 +#, c-format +msgid "Sample %d" +msgstr "" + +#: src/engine/engine.cpp:3056 +#, c-format +msgid "no free patterns in channel %d!" +msgstr "" + +#: src/gui/mixer.cpp:28 src/gui/insEdit.cpp:484 +msgid "left" +msgstr "" + +#: src/gui/mixer.cpp:29 src/gui/insEdit.cpp:483 +msgid "right" +msgstr "" + +#: src/gui/mixer.cpp:128 +msgid "input" +msgstr "" + +#: src/gui/mixer.cpp:168 +msgid "output" +msgstr "" + +#: src/gui/mixer.cpp:226 src/gui/mixer.cpp:228 src/gui/editControls.cpp:454 +#: src/gui/guiConst.cpp:593 +msgid "Mixer" +msgstr "" + +#: src/gui/mixer.cpp:229 +msgid "Master Volume" +msgstr "" + +#: src/gui/mixer.cpp:250 src/gui/exportOptions.cpp:90 +#: src/gui/userPresets.cpp:393 src/gui/userPresets.cpp:405 +#: src/gui/settings.cpp:1080 src/gui/settings.cpp:1094 +#: src/gui/waveEdit.cpp:1096 src/gui/sampleEdit.cpp:1128 +#: src/gui/insEdit.cpp:519 +msgid "Invert" +msgstr "" + +#: src/gui/mixer.cpp:268 src/gui/chanOsc.cpp:37 src/gui/userPresets.cpp:417 +#: src/gui/settings.cpp:263 src/gui/settings.cpp:1109 src/gui/settings.cpp:1492 +#: src/gui/settings.cpp:1504 src/gui/settings.cpp:3369 +#: src/gui/settings.cpp:4015 src/gui/findReplace.cpp:687 +#: src/gui/findReplace.cpp:943 src/gui/guiConst.cpp:228 +#: src/gui/sampleEdit.cpp:1003 src/gui/insEdit.cpp:5575 +#: src/gui/insEdit.cpp:5660 src/gui/insEdit.cpp:6920 src/gui/insEdit.cpp:6928 +#: src/gui/insEdit.cpp:6936 src/gui/insEdit.cpp:6946 src/gui/insEdit.cpp:6961 +#: src/gui/insEdit.cpp:6975 src/gui/insEdit.cpp:6987 src/gui/insEdit.cpp:7000 +#: src/gui/insEdit.cpp:7016 src/gui/insEdit.cpp:7022 src/gui/insEdit.cpp:7032 +#: src/gui/insEdit.cpp:7039 src/gui/insEdit.cpp:7045 src/gui/insEdit.cpp:7058 +#: src/gui/insEdit.cpp:7065 src/gui/insEdit.cpp:7072 src/gui/insEdit.cpp:7081 +#: src/gui/insEdit.cpp:7091 src/gui/insEdit.cpp:7099 src/gui/insEdit.cpp:7105 +#: src/gui/insEdit.cpp:7113 src/gui/insEdit.cpp:7120 src/gui/insEdit.cpp:7126 +#: src/gui/insEdit.cpp:7136 src/gui/insEdit.cpp:7148 src/gui/insEdit.cpp:7156 +#: src/gui/insEdit.cpp:7172 src/gui/insEdit.cpp:7177 src/gui/insEdit.cpp:7190 +#: src/gui/insEdit.cpp:7197 src/gui/insEdit.cpp:7208 src/gui/insEdit.cpp:7221 +#: src/gui/insEdit.cpp:7230 src/gui/insEdit.cpp:7237 src/gui/insEdit.cpp:7245 +#: src/gui/insEdit.cpp:7258 src/gui/insEdit.cpp:7263 src/gui/insEdit.cpp:7269 +#: src/gui/insEdit.cpp:7276 src/gui/insEdit.cpp:7284 src/gui/insEdit.cpp:7295 +#: src/gui/insEdit.cpp:7302 src/gui/insEdit.cpp:7310 src/gui/insEdit.cpp:7318 +#: src/gui/insEdit.cpp:7327 src/gui/insEdit.cpp:7335 src/gui/insEdit.cpp:7341 +#: src/gui/insEdit.cpp:7347 src/gui/insEdit.cpp:7353 src/gui/insEdit.cpp:7358 +#: src/gui/insEdit.cpp:7365 src/gui/insEdit.cpp:7372 src/gui/insEdit.cpp:7380 +#: src/gui/insEdit.cpp:7389 src/gui/insEdit.cpp:7397 src/gui/insEdit.cpp:7409 +#: src/gui/insEdit.cpp:7422 src/gui/insEdit.cpp:7433 src/gui/insEdit.cpp:7443 +#: src/gui/insEdit.cpp:7451 src/gui/insEdit.cpp:7461 src/gui/insEdit.cpp:7470 +msgid "Volume" +msgstr "" + +#: src/gui/mixer.cpp:279 src/gui/userPresets.cpp:427 src/gui/settings.cpp:1120 +#: src/gui/guiConst.cpp:229 src/gui/insEdit.cpp:6923 src/gui/insEdit.cpp:6930 +#: src/gui/insEdit.cpp:6941 src/gui/insEdit.cpp:6965 src/gui/insEdit.cpp:7067 +#: src/gui/insEdit.cpp:7108 src/gui/insEdit.cpp:7152 src/gui/insEdit.cpp:7192 +#: src/gui/insEdit.cpp:7212 src/gui/insEdit.cpp:7232 src/gui/insEdit.cpp:7240 +#: src/gui/insEdit.cpp:7253 src/gui/insEdit.cpp:7265 src/gui/insEdit.cpp:7271 +#: src/gui/insEdit.cpp:7287 src/gui/insEdit.cpp:7297 src/gui/insEdit.cpp:7360 +#: src/gui/insEdit.cpp:7392 src/gui/insEdit.cpp:7438 src/gui/insEdit.cpp:7446 +msgid "Panning" +msgstr "" + +#: src/gui/mixer.cpp:290 src/gui/userPresets.cpp:433 src/gui/settings.cpp:1127 +msgid "Front/Rear" +msgstr "" + +#: src/gui/mixer.cpp:299 src/gui/settings.cpp:4208 +msgid "Patchbay" +msgstr "" + +#: src/gui/mixer.cpp:305 +msgid "Automatic patchbay" +msgstr "" + +#: src/gui/mixer.cpp:310 +msgid "Display hidden ports" +msgstr "" + +#: src/gui/mixer.cpp:312 +msgid "Display internal" +msgstr "" + +#: src/gui/mixer.cpp:322 src/gui/mixer.cpp:383 src/gui/settings.cpp:1901 +#: src/gui/settings.cpp:2089 src/gui/songInfo.cpp:69 +msgid "System" +msgstr "" + +#: src/gui/mixer.cpp:354 +msgid "Sample Preview" +msgstr "" + +#: src/gui/mixer.cpp:367 src/gui/editControls.cpp:745 +#: src/gui/editControls.cpp:837 src/gui/editControls.cpp:953 +#: src/gui/editControls.cpp:1093 src/gui/settings.cpp:1490 +#: src/gui/guiConst.cpp:558 +msgid "Metronome" +msgstr "" + +#: src/gui/mixer.cpp:446 +msgid "disconnect all" +msgstr "" + +#: src/gui/editing.cpp:200 +#, c-format +msgid "no data in oldPatMap for channel %d!" +msgstr "" + +#: src/gui/editing.cpp:664 src/gui/editing.cpp:1203 +#, c-format +msgid "invalid clipboard data! failed at line %d char %d" +msgstr "" + +#: src/gui/editing.cpp:1565 src/gui/editing.cpp:1669 +msgid "can't collapse any further!" +msgstr "" + +#: src/gui/editing.cpp:1749 +msgid "can't expand any further!" +msgstr "" + +#: src/gui/editing.cpp:1836 src/gui/editing.cpp:1851 +#, c-format +msgid "copy: %s" +msgstr "" + +#: src/gui/memory.cpp:35 src/gui/settings.cpp:3696 src/gui/settings.cpp:4217 +#: src/gui/guiConst.cpp:613 +msgid "Memory Composition" +msgstr "" + +#: src/gui/memory.cpp:146 +#, c-format +msgid "bank %d" +msgstr "" + +#: src/gui/memory.cpp:175 src/gui/memory.cpp:176 +msgid "no chips with memory" +msgstr "" + +#: src/gui/intro.cpp:89 src/gui/gui.cpp:2345 src/gui/gui.cpp:3746 +#: src/gui/gui.cpp:5019 src/gui/gui.cpp:5041 src/gui/gui.cpp:5479 +#: src/gui/gui.cpp:5781 src/gui/gui.cpp:5791 +#, c-format +msgid "Error while loading file! (%s)" +msgstr "" + +#: src/gui/intro.cpp:122 +msgid "IntroMon X" +msgstr "" + +#: src/gui/intro.cpp:122 +msgid "Intro" +msgstr "" + +#: src/gui/intro.cpp:124 +msgid "Preview" +msgstr "" + +#: src/gui/intro.cpp:176 src/gui/intro.cpp:177 src/gui/intro.cpp:178 +msgid "SORRY NOTHING" +msgstr "" + +#: src/gui/intro.cpp:310 +msgid "hold to skip" +msgstr "" + +#: src/gui/dataList.cpp:76 +msgid "Bug!" +msgstr "" + +#: src/gui/dataList.cpp:79 src/gui/util.cpp:107 src/gui/util.cpp:109 +#: src/gui/settings.cpp:4220 src/gui/insEdit.cpp:5334 +msgid "Unknown" +msgstr "" + +#: src/gui/dataList.cpp:136 src/gui/dataList.cpp:260 +msgid "duplicate" +msgstr "" + +#: src/gui/dataList.cpp:139 src/gui/dataList.cpp:263 src/gui/dataList.cpp:388 +#: src/gui/dataList.cpp:731 src/gui/dataList.cpp:867 +msgid "replace..." +msgstr "" + +#: src/gui/dataList.cpp:142 src/gui/dataList.cpp:266 src/gui/gui.cpp:4232 +msgid "save" +msgstr "" + +#: src/gui/dataList.cpp:145 +msgid "save (.dmp)" +msgstr "" + +#: src/gui/dataList.cpp:148 src/gui/dataList.cpp:269 src/gui/dataList.cpp:617 +#: src/gui/dataList.cpp:994 src/gui/dataList.cpp:1040 +#: src/gui/editControls.cpp:50 src/gui/gui.cpp:2767 src/gui/gui.cpp:2776 +msgid "delete" +msgstr "" + +#: src/gui/dataList.cpp:243 +msgid "out of memory for this sample!" +msgstr "" + +#: src/gui/dataList.cpp:254 +msgid "make instrument" +msgstr "" + +#: src/gui/dataList.cpp:257 +msgid "make me a drum kit" +msgstr "" + +#: src/gui/dataList.cpp:290 src/gui/dataList.cpp:593 src/gui/gui.cpp:5914 +msgid "Instruments" +msgstr "" + +#: src/gui/dataList.cpp:312 src/gui/dataList.cpp:714 src/gui/dataList.cpp:846 +#: src/gui/subSongs.cpp:88 src/gui/insEdit.cpp:520 +msgid "Add" +msgstr "" + +#: src/gui/dataList.cpp:338 src/gui/dataList.cpp:721 src/gui/dataList.cpp:853 +#: src/gui/subSongs.cpp:108 +msgid "Duplicate" +msgstr "" + +#: src/gui/dataList.cpp:359 src/gui/dataList.cpp:728 src/gui/dataList.cpp:860 +#: src/gui/editControls.cpp:497 src/gui/waveEdit.cpp:435 +#: src/gui/waveEdit.cpp:467 src/gui/sampleEdit.cpp:122 +#: src/gui/sampleEdit.cpp:171 src/gui/insEdit.cpp:5239 src/gui/insEdit.cpp:5304 +msgid "Open" +msgstr "" + +#: src/gui/dataList.cpp:363 +msgid "replace instrument..." +msgstr "" + +#: src/gui/dataList.cpp:366 +msgid "load instrument from TX81Z" +msgstr "" + +#: src/gui/dataList.cpp:372 +msgid "replace wavetable..." +msgstr "" + +#: src/gui/dataList.cpp:378 +msgid "replace sample..." +msgstr "" + +#: src/gui/dataList.cpp:381 +msgid "import raw sample..." +msgstr "" + +#: src/gui/dataList.cpp:384 +msgid "import raw sample (replace)..." +msgstr "" + +#: src/gui/dataList.cpp:392 +msgid "load from TX81Z" +msgstr "" + +#: src/gui/dataList.cpp:399 +msgid "Open (insert; right-click to replace)" +msgstr "" + +#: src/gui/dataList.cpp:420 src/gui/dataList.cpp:741 src/gui/dataList.cpp:884 +#: src/gui/editControls.cpp:502 src/gui/waveEdit.cpp:474 +#: src/gui/sampleEdit.cpp:184 src/gui/insEdit.cpp:5311 +msgid "Save" +msgstr "" + +#: src/gui/dataList.cpp:424 +msgid "save instrument as .dmp..." +msgstr "" + +#: src/gui/dataList.cpp:430 +msgid "save wavetable as .dmw..." +msgstr "" + +#: src/gui/dataList.cpp:433 +msgid "save raw wavetable..." +msgstr "" + +#: src/gui/dataList.cpp:439 +msgid "save raw sample..." +msgstr "" + +#: src/gui/dataList.cpp:443 src/gui/insEdit.cpp:5314 +msgid "save as .dmp..." +msgstr "" + +#: src/gui/dataList.cpp:456 src/gui/dataList.cpp:761 src/gui/dataList.cpp:903 +msgid "Toggle folders/standard view" +msgstr "" + +#: src/gui/dataList.cpp:478 src/gui/dataList.cpp:769 src/gui/dataList.cpp:911 +#: src/gui/subSongs.cpp:55 +msgid "Move up" +msgstr "" + +#: src/gui/dataList.cpp:499 src/gui/dataList.cpp:776 src/gui/dataList.cpp:918 +#: src/gui/subSongs.cpp:62 +msgid "Move down" +msgstr "" + +#: src/gui/dataList.cpp:510 src/gui/dataList.cpp:787 src/gui/dataList.cpp:929 +msgid "Create" +msgstr "" + +#: src/gui/dataList.cpp:540 src/gui/dataList.cpp:797 src/gui/dataList.cpp:939 +msgid "New folder" +msgstr "" + +#: src/gui/dataList.cpp:549 src/gui/dataList.cpp:947 +msgid "Preview (right click to stop)" +msgstr "" + +#: src/gui/dataList.cpp:576 src/gui/dataList.cpp:807 src/gui/dataList.cpp:959 +#: src/gui/guiConst.cpp:666 src/gui/sampleEdit.cpp:1105 +msgid "Delete" +msgstr "" + +#: src/gui/dataList.cpp:608 src/gui/dataList.cpp:985 src/gui/dataList.cpp:1031 +msgid "" +msgstr "" + +#: src/gui/dataList.cpp:614 src/gui/dataList.cpp:991 src/gui/dataList.cpp:1037 +msgid "rename..." +msgstr "" + +#: src/gui/dataList.cpp:663 src/gui/dataList.cpp:707 src/gui/gui.cpp:5923 +msgid "Wavetables" +msgstr "" + +#: src/gui/dataList.cpp:674 src/gui/dataList.cpp:839 src/gui/xyOsc.cpp:68 +#: src/gui/sampleEdit.cpp:898 src/gui/sampleEdit.cpp:1072 src/gui/gui.cpp:5932 +msgid "Samples" +msgstr "" + +#: src/gui/dataList.cpp:745 src/gui/waveEdit.cpp:477 +msgid "save as .dmw..." +msgstr "" + +#: src/gui/dataList.cpp:748 src/gui/dataList.cpp:891 src/gui/waveEdit.cpp:480 +#: src/gui/sampleEdit.cpp:187 +msgid "save raw..." +msgstr "" + +#: src/gui/dataList.cpp:871 src/gui/sampleEdit.cpp:174 +msgid "import raw..." +msgstr "" + +#: src/gui/dataList.cpp:874 +msgid "import raw (replace)..." +msgstr "" + +#: src/gui/exportOptions.cpp:29 +msgid "Export type:" +msgstr "" + +#: src/gui/exportOptions.cpp:32 +msgid "one file" +msgstr "" + +#: src/gui/exportOptions.cpp:35 +msgid "multiple files (one per chip)" +msgstr "" + +#: src/gui/exportOptions.cpp:38 +msgid "multiple files (one per channel)" +msgstr "" + +#: src/gui/exportOptions.cpp:44 +msgid "Bit depth:" +msgstr "" + +#: src/gui/exportOptions.cpp:46 +msgid "16-bit integer" +msgstr "" + +#: src/gui/exportOptions.cpp:49 +msgid "32-bit float" +msgstr "" + +#: src/gui/exportOptions.cpp:55 src/gui/settings.cpp:1352 src/gui/gui.cpp:6270 +msgid "Sample rate" +msgstr "" + +#: src/gui/exportOptions.cpp:61 +msgid "Channels in file" +msgstr "" + +#: src/gui/exportOptions.cpp:67 src/gui/settings.cpp:930 +msgid "Loops" +msgstr "" + +#: src/gui/exportOptions.cpp:70 src/gui/settings.cpp:935 +msgid "Fade out (seconds)" +msgstr "" + +#: src/gui/exportOptions.cpp:76 +msgid "Channels to export:" +msgstr "" + +#: src/gui/exportOptions.cpp:78 src/gui/effectList.cpp:32 src/gui/gui.cpp:6186 +msgid "All" +msgstr "" + +#: src/gui/exportOptions.cpp:84 src/gui/sysConf.cpp:1870 +#: src/gui/effectList.cpp:34 src/gui/compatFlags.cpp:219 +#: src/gui/waveEdit.cpp:37 src/gui/gui.cpp:6192 src/gui/insEdit.cpp:518 +msgid "None" +msgstr "" + +#: src/gui/exportOptions.cpp:110 src/gui/exportOptions.cpp:214 +#: src/gui/exportOptions.cpp:225 src/gui/exportOptions.cpp:243 +#: src/gui/exportOptions.cpp:266 src/gui/exportOptions.cpp:297 +#: src/gui/exportOptions.cpp:318 src/gui/exportOptions.cpp:341 +#: src/gui/commandPalette.cpp:199 src/gui/settings.cpp:6673 +#: src/gui/newSong.cpp:273 src/gui/gui.cpp:5669 src/gui/gui.cpp:5693 +#: src/gui/gui.cpp:5717 src/gui/gui.cpp:5741 src/gui/gui.cpp:5765 +#: src/gui/gui.cpp:5796 src/gui/gui.cpp:5855 src/gui/gui.cpp:6229 +#: src/gui/gui.cpp:6353 +msgid "Cancel" +msgstr "" + +#: src/gui/exportOptions.cpp:115 src/gui/exportOptions.cpp:217 +#: src/gui/exportOptions.cpp:246 src/gui/exportOptions.cpp:300 +#: src/gui/exportOptions.cpp:321 src/gui/exportOptions.cpp:344 +#: src/gui/editControls.cpp:512 src/gui/userPresets.cpp:523 +#: src/gui/settings.cpp:1242 src/gui/settings.cpp:2165 +#: src/gui/settings.cpp:2557 src/gui/settings.cpp:3800 src/gui/guiConst.cpp:536 +#: src/gui/gui.cpp:5578 src/gui/gui.cpp:5630 +msgid "Export" +msgstr "" + +#: src/gui/exportOptions.cpp:130 +msgid "select at least one channel" +msgstr "" + +#: src/gui/exportOptions.cpp:137 +msgid "settings:" +msgstr "" + +#: src/gui/exportOptions.cpp:138 +msgid "format version" +msgstr "" + +#: src/gui/exportOptions.cpp:146 src/gui/exportOptions.cpp:238 +#: src/gui/insEdit.cpp:362 +msgid "loop" +msgstr "" + +#: src/gui/exportOptions.cpp:148 +msgid "loop trail:" +msgstr "" + +#: src/gui/exportOptions.cpp:150 +msgid "auto-detect" +msgstr "" + +#: src/gui/exportOptions.cpp:153 +msgid "add one loop" +msgstr "" + +#: src/gui/exportOptions.cpp:156 +msgid "custom" +msgstr "" + +#: src/gui/exportOptions.cpp:167 +msgid "add pattern change hints" +msgstr "" + +#: src/gui/exportOptions.cpp:170 +msgid "" +"inserts data blocks on pattern changes.\n" +"useful if you are writing a playback routine.\n" +"\n" +"the format of a pattern change data block is:\n" +"67 66 FE ll ll ll ll 01 oo rr pp pp pp ...\n" +"- ll: length, a 32-bit little-endian number\n" +"- oo: order\n" +"- rr: initial row (a 0Dxx effect is able to select a different row)\n" +"- pp: pattern index (one per channel)\n" +"\n" +"pattern indexes are ordered as they appear in the song." +msgstr "" + +#: src/gui/exportOptions.cpp:183 +msgid "direct stream mode" +msgstr "" + +#: src/gui/exportOptions.cpp:186 +msgid "" +"required for DualPCM and MSM6258 export.\n" +"\n" +"allows for volume/direction changes when playing samples,\n" +"at the cost of a massive increase in file size." +msgstr "" + +#: src/gui/exportOptions.cpp:191 +msgid "chips to export:" +msgstr "" + +#: src/gui/exportOptions.cpp:200 +#, c-format +msgid "this chip is only available in VGM %d.%.2x and higher!" +msgstr "" + +#: src/gui/exportOptions.cpp:204 +msgid "this chip is not supported by the VGM format!" +msgstr "" + +#: src/gui/exportOptions.cpp:210 +#, c-format +msgid "select the chip you wish to export, but only up to %d of each type." +msgstr "" + +#: src/gui/exportOptions.cpp:222 +msgid "nothing to export" +msgstr "" + +#: src/gui/exportOptions.cpp:233 +msgid "Commander X16 Zsound Music File" +msgstr "" + +#: src/gui/exportOptions.cpp:234 +msgid "Tick Rate (Hz)" +msgstr "" + +#: src/gui/exportOptions.cpp:240 +msgid "optimize size" +msgstr "" + +#: src/gui/exportOptions.cpp:256 src/gui/editControls.cpp:630 +msgid "" +"this is NOT ROM export! only use for making sure the\n" +"Furnace Amiga emulator is working properly by\n" +"comparing it with real Amiga output." +msgstr "" + +#: src/gui/exportOptions.cpp:261 src/gui/editControls.cpp:635 +#: src/gui/settings.cpp:3925 +msgid "Directory" +msgstr "" + +#: src/gui/exportOptions.cpp:269 src/gui/editControls.cpp:638 +msgid "Bake Data" +msgstr "" + +#: src/gui/exportOptions.cpp:284 src/gui/editControls.cpp:653 +#, c-format +msgid "Done! Baked %d files." +msgstr "" + +#: src/gui/exportOptions.cpp:293 +msgid "this option exports the song to a text file.\n" +msgstr "" + +#: src/gui/exportOptions.cpp:310 +msgid "" +"this option exports a text or binary file which\n" +"contains a dump of the internal command stream\n" +"produced when playing the song.\n" +"\n" +"technical/development use only!" +msgstr "" + +#: src/gui/exportOptions.cpp:331 +msgid "" +"export in DefleMask module format.\n" +"only do it if you really, really need to, or are downgrading an existing ." +"dmf." +msgstr "" + +#: src/gui/exportOptions.cpp:335 +msgid "format version:" +msgstr "" + +#: src/gui/exportOptions.cpp:336 +msgid "1.1.3 and higher" +msgstr "" + +#: src/gui/exportOptions.cpp:337 +msgid "1.0/legacy (0.12)" +msgstr "" + +#: src/gui/exportOptions.cpp:357 src/gui/settings.cpp:1253 +#: src/gui/settings.cpp:3929 +msgid "Audio" +msgstr "" + +#: src/gui/exportOptions.cpp:361 src/gui/settings.cpp:3931 +msgid "VGM" +msgstr "" + +#: src/gui/exportOptions.cpp:370 src/gui/settings.cpp:3932 +msgid "ZSM" +msgstr "" + +#: src/gui/exportOptions.cpp:380 +msgid "Amiga Validation" +msgstr "" + +#: src/gui/exportOptions.cpp:385 src/gui/settings.cpp:2959 +#: src/gui/settings.cpp:3891 +msgid "Text" +msgstr "" + +#: src/gui/exportOptions.cpp:389 +msgid "Command Stream" +msgstr "" + +#: src/gui/exportOptions.cpp:393 +msgid "DMF" +msgstr "" + +#: src/gui/exportOptions.cpp:422 +msgid "congratulations! you've unlocked a secret panel." +msgstr "" + +#: src/gui/exportOptions.cpp:423 +msgid "Toggle hidden systems" +msgstr "" + +#: src/gui/exportOptions.cpp:427 +msgid "Toggle all instrument types" +msgstr "" + +#: src/gui/exportOptions.cpp:431 +msgid "Set pitch linearity to Partial" +msgstr "" + +#: src/gui/exportOptions.cpp:435 +msgid "Enable multi-threading settings" +msgstr "" + +#: src/gui/exportOptions.cpp:439 +msgid "Set fat to max" +msgstr "" + +#: src/gui/exportOptions.cpp:446 +msgid "Set muscle and fat to zero" +msgstr "" + +#: src/gui/exportOptions.cpp:453 +msgid "Tell tildearrow this must be a mistake" +msgstr "" + +#: src/gui/exportOptions.cpp:454 +msgid "" +"yeah, it's a bug. write a bug report in the GitHub page and tell me how did " +"you get here." +msgstr "" + +#: src/gui/speed.cpp:32 src/gui/speed.cpp:102 src/gui/editControls.cpp:532 +#: src/gui/sysConf.cpp:2148 src/gui/guiConst.cpp:232 src/gui/guiConst.cpp:581 +#: src/gui/insEdit.cpp:2028 src/gui/insEdit.cpp:5693 src/gui/insEdit.cpp:6885 +msgid "Speed" +msgstr "" + +#: src/gui/speed.cpp:41 +msgid "Base Tempo##TempoOrHz" +msgstr "" + +#: src/gui/speed.cpp:41 +msgid "Tick Rate##TempoOrHz" +msgstr "" + +#: src/gui/speed.cpp:46 +msgid "click to display tick rate" +msgstr "" + +#: src/gui/speed.cpp:48 +msgid "click to display base tempo" +msgstr "" + +#: src/gui/speed.cpp:80 +msgid "Groove" +msgstr "" + +#: src/gui/speed.cpp:87 +msgid "click for one speed" +msgstr "" + +#: src/gui/speed.cpp:90 +msgid "Speeds" +msgstr "" + +#: src/gui/speed.cpp:99 +msgid "click for groove pattern" +msgstr "" + +#: src/gui/speed.cpp:110 +msgid "click for two (alternating) speeds" +msgstr "" + +#: src/gui/speed.cpp:168 +msgid "Virtual Tempo" +msgstr "" + +#: src/gui/speed.cpp:177 +msgid "Numerator" +msgstr "" + +#: src/gui/speed.cpp:187 +msgid "Denominator (set to base tempo)" +msgstr "" + +#: src/gui/speed.cpp:193 +msgid "Divider" +msgstr "" + +#: src/gui/speed.cpp:208 +msgid "Highlight" +msgstr "" + +#: src/gui/speed.cpp:231 +msgid "Pattern Length" +msgstr "" + +#: src/gui/speed.cpp:245 +msgid "Song Length" +msgstr "" + +#: src/gui/channels.cpp:40 src/gui/editControls.cpp:446 +#: src/gui/guiConst.cpp:601 src/gui/gui.cpp:6280 +msgid "Channels" +msgstr "" + +#: src/gui/channels.cpp:49 +msgid "Pat" +msgstr "" + +#: src/gui/channels.cpp:51 src/gui/editControls.cpp:550 +msgid "Osc" +msgstr "" + +#: src/gui/channels.cpp:53 +msgid "Swap" +msgstr "" + +#: src/gui/channels.cpp:55 src/gui/userPresets.cpp:368 +#: src/gui/effectList.cpp:45 src/gui/subSongs.cpp:125 src/gui/settings.cpp:1060 +#: src/gui/settings.cpp:4383 src/gui/sampleEdit.cpp:195 src/gui/songInfo.cpp:40 +#: src/gui/sysManager.cpp:54 src/gui/insEdit.cpp:5288 +msgid "Name" +msgstr "" + +#: src/gui/channels.cpp:64 +msgid "Show in pattern" +msgstr "" + +#: src/gui/channels.cpp:71 +msgid "Show in per-channel oscilloscope" +msgstr "" + +#: src/gui/channels.cpp:82 +#, c-format +msgid "" +"%s #%d\n" +"(drag to swap channels)" +msgstr "" + +#: src/gui/commandPalette.cpp:51 src/gui/sysPicker.cpp:35 +#: src/gui/newSong.cpp:133 +msgid "Search..." +msgstr "" + +#: src/gui/commandPalette.cpp:54 +msgid "Search recent files..." +msgstr "" + +#: src/gui/commandPalette.cpp:57 +msgid "Search instruments..." +msgstr "" + +#: src/gui/commandPalette.cpp:60 +msgid "Search samples..." +msgstr "" + +#: src/gui/commandPalette.cpp:63 +msgid "Search instruments (to change to)..." +msgstr "" + +#: src/gui/commandPalette.cpp:66 +msgid "Search chip (to add)..." +msgstr "" + +#: src/gui/commandPalette.cpp:93 src/gui/commandPalette.cpp:167 +msgid "- None -" +msgstr "" + +#: src/gui/commandPalette.cpp:123 src/gui/commandPalette.cpp:179 +#: src/gui/commandPalette.cpp:241 +msgid "invalid command palette type" +msgstr "" + +#: src/gui/regView.cpp:30 src/gui/guiConst.cpp:604 +msgid "Register View" +msgstr "" + +#: src/gui/regView.cpp:38 +msgid "- no register pool available" +msgstr "" + +#: src/gui/log.cpp:25 src/gui/effectList.cpp:84 +msgid "ERROR" +msgstr "" + +#: src/gui/log.cpp:26 +msgid "warning" +msgstr "" + +#: src/gui/log.cpp:27 +msgid "info" +msgstr "" + +#: src/gui/log.cpp:28 src/gui/gui.cpp:4513 +msgid "debug" +msgstr "" + +#: src/gui/log.cpp:29 +msgid "trace" +msgstr "" + +#: src/gui/log.cpp:47 src/gui/settings.cpp:4243 src/gui/guiConst.cpp:605 +msgid "Log Viewer" +msgstr "" + +#: src/gui/log.cpp:48 src/gui/editControls.cpp:750 src/gui/editControls.cpp:883 +#: src/gui/editControls.cpp:1000 +msgid "Follow" +msgstr "" + +#: src/gui/log.cpp:50 src/gui/waveEdit.cpp:681 src/gui/insEdit.cpp:50 +msgid "Level" +msgstr "" + +#: src/gui/log.cpp:68 +msgid "time" +msgstr "" + +#: src/gui/log.cpp:70 +msgid "level" +msgstr "" + +#: src/gui/log.cpp:72 +msgid "message" +msgstr "" + +#: src/gui/pattern.cpp:433 src/gui/editControls.cpp:421 +#: src/gui/editControls.cpp:754 src/gui/editControls.cpp:887 +#: src/gui/editControls.cpp:1015 src/gui/settings.cpp:2344 +#: src/gui/settings.cpp:3297 src/gui/settings.cpp:4100 +#: src/gui/findReplace.cpp:794 src/gui/guiConst.cpp:582 src/gui/gui.cpp:5899 +msgid "Pattern" +msgstr "" + +#: src/gui/pattern.cpp:468 +msgid "there aren't any channels to show." +msgstr "" + +#: src/gui/pattern.cpp:492 +msgid "click for pattern options (effect columns/pattern names/visualizer)" +msgstr "" + +#: src/gui/pattern.cpp:504 +msgid "Options:" +msgstr "" + +#: src/gui/pattern.cpp:506 +msgid "Effect columns/collapse" +msgstr "" + +#: src/gui/pattern.cpp:507 +msgid "Pattern names" +msgstr "" + +#: src/gui/pattern.cpp:508 +msgid "Channel group hints" +msgstr "" + +#: src/gui/pattern.cpp:509 +msgid "Visualizer" +msgstr "" + +#: src/gui/pattern.cpp:517 +msgid "Channel status:" +msgstr "" + +#: src/gui/pattern.cpp:519 +msgid "No##_PCS0" +msgstr "" + +#: src/gui/pattern.cpp:522 +msgid "Yes##_PCS1" +msgstr "" + +#: src/gui/pattern.cpp:1420 src/gui/pattern.cpp:1452 +msgid "WARNING!!" +msgstr "" + +#: src/gui/pattern.cpp:1422 src/gui/pattern.cpp:1459 +msgid "this instrument cannot be previewed because" +msgstr "" + +#: src/gui/pattern.cpp:1423 src/gui/pattern.cpp:1466 +msgid "none of the chips can play it" +msgstr "" + +#: src/gui/pattern.cpp:1424 src/gui/pattern.cpp:1473 +msgid "your instrument is in peril!! be careful..." +msgstr "" + +#: src/gui/osc.cpp:169 src/gui/settings.cpp:3710 src/gui/settings.cpp:3937 +msgid "Oscilloscope" +msgstr "" + +#: src/gui/osc.cpp:176 +#, c-format +msgid "zoom: %.2fx (%.1fdB)" +msgstr "" + +#: src/gui/osc.cpp:187 +#, c-format +msgid "window size: %.1fms" +msgstr "" + +#: src/gui/osc.cpp:385 +msgid "(-Infinity)dB" +msgstr "" + +#: src/gui/debugWindow.cpp:66 src/gui/editControls.cpp:610 +msgid "Debug" +msgstr "" + +#: src/gui/debugWindow.cpp:663 +msgid "This is a language test." +msgstr "" + +#: src/gui/debugWindow.cpp:664 +msgid "This is another language test." +msgstr "" + +#: src/gui/debugWindow.cpp:720 +#, c-format +msgid "%d apple" +msgid_plural "%d apples" +msgstr[0] "" +msgstr[1] "" + +#: src/gui/chanOsc.cpp:32 +msgid "None (0%)" +msgstr "" + +#: src/gui/chanOsc.cpp:33 +msgid "None (50%)" +msgstr "" + +#: src/gui/chanOsc.cpp:34 +msgid "None (100%)" +msgstr "" + +#: src/gui/chanOsc.cpp:36 +msgid "Frequency" +msgstr "" + +#: src/gui/chanOsc.cpp:38 src/gui/settings.cpp:1667 src/gui/settings.cpp:3406 +#: src/gui/settings.cpp:4088 +msgid "Channel" +msgstr "" + +#: src/gui/chanOsc.cpp:39 +msgid "Brightness" +msgstr "" + +#: src/gui/chanOsc.cpp:41 +msgid "Note Trigger" +msgstr "" + +#: src/gui/chanOsc.cpp:45 +msgid "Off" +msgstr "" + +#: src/gui/chanOsc.cpp:46 +msgid "Mode 1" +msgstr "" + +#: src/gui/chanOsc.cpp:47 +msgid "Mode 2" +msgstr "" + +#: src/gui/chanOsc.cpp:48 +msgid "Mode 3" +msgstr "" + +#: src/gui/chanOsc.cpp:135 src/gui/guiConst.cpp:607 +msgid "Oscilloscope (per-channel)" +msgstr "" + +#: src/gui/chanOsc.cpp:143 +msgid "Columns" +msgstr "" + +#: src/gui/chanOsc.cpp:152 +msgid "Size (ms)" +msgstr "" + +#: src/gui/chanOsc.cpp:163 +msgid "Automatic columns" +msgstr "" + +#: src/gui/chanOsc.cpp:177 +msgid "Center waveform" +msgstr "" + +#: src/gui/chanOsc.cpp:183 +msgid "Randomize phase on note" +msgstr "" + +#: src/gui/chanOsc.cpp:189 +msgid "Amplitude" +msgstr "" + +#: src/gui/chanOsc.cpp:199 src/gui/settings.cpp:3747 +msgid "Line size" +msgstr "" + +#: src/gui/chanOsc.cpp:211 +msgid "Gradient" +msgstr "" + +#: src/gui/chanOsc.cpp:218 +msgid "error while creating gradient texture!" +msgstr "" + +#: src/gui/chanOsc.cpp:236 +msgid "error while updating gradient texture!" +msgstr "" + +#: src/gui/chanOsc.cpp:292 src/gui/chanOsc.cpp:348 src/gui/settings.cpp:3793 +msgid "Color" +msgstr "" + +#: src/gui/chanOsc.cpp:296 +msgid "Distance" +msgstr "" + +#: src/gui/chanOsc.cpp:305 +msgid "Spread" +msgstr "" + +#: src/gui/chanOsc.cpp:314 src/gui/userPresets.cpp:370 src/gui/subSongs.cpp:121 +#: src/gui/settings.cpp:2281 src/gui/sysManager.cpp:124 +msgid "Remove" +msgstr "" + +#: src/gui/chanOsc.cpp:338 src/gui/settings.cpp:3885 src/gui/settings.cpp:4165 +#: src/gui/settings.cpp:4192 src/gui/settings.cpp:4218 +msgid "Background" +msgstr "" + +#: src/gui/chanOsc.cpp:341 +msgid "X Axis##AxisX" +msgstr "" + +#: src/gui/chanOsc.cpp:342 +msgid "Y Axis##AxisY" +msgstr "" + +#: src/gui/chanOsc.cpp:352 +msgid "Text format:" +msgstr "" + +#: src/gui/chanOsc.cpp:358 +msgid "" +"format guide:\n" +"- %c: channel name\n" +"- %C: channel short name\n" +"- %d: channel number (starting from 0)\n" +"- %D: channel number (starting from 1)\n" +"- %n: channel note\n" +"- %i: instrument name\n" +"- %I: instrument number (decimal)\n" +"- %x: instrument number (hex)\n" +"- %s: chip name\n" +"- %p: chip part number\n" +"- %S: chip ID\n" +"- %v: volume (decimal)\n" +"- %V: volume (percentage)\n" +"- %b: volume (hex)\n" +"- %l: new line\n" +"- %%: percent sign" +msgstr "" + +#: src/gui/chanOsc.cpp:380 +msgid "Text color" +msgstr "" + +#: src/gui/chanOsc.cpp:382 src/gui/xyOsc.cpp:80 src/gui/settings.cpp:6672 +#: src/gui/tutorial.cpp:689 src/gui/gui.cpp:5639 src/gui/gui.cpp:6055 +#: src/gui/gui.cpp:6223 src/gui/gui.cpp:6322 src/gui/gui.cpp:6371 +msgid "OK" +msgstr "" + +#: src/gui/chanOsc.cpp:400 +msgid "creating chan osc work pool" +msgstr "" + +#: src/gui/chanOsc.cpp:429 +#, c-format +msgid "creating FFT plan for channel %d" +msgstr "" + +#: src/gui/chanOsc.cpp:436 +msgid "failed to create plan!" +msgstr "" + +#: src/gui/chanOsc.cpp:438 +msgid "failed to create inverse plan!" +msgstr "" + +#: src/gui/chanOsc.cpp:440 +msgid "failed to create FFT buffers" +msgstr "" + +#: src/gui/chanOsc.cpp:585 +msgid "Error!" +msgstr "" + +#: src/gui/editControls.cpp:47 src/gui/sampleEdit.cpp:1736 src/gui/gui.cpp:2733 +#: src/gui/insEdit.cpp:363 +msgid "cut" +msgstr "" + +#: src/gui/editControls.cpp:48 src/gui/sampleEdit.cpp:1740 src/gui/gui.cpp:2734 +#: src/gui/insEdit.cpp:7538 +msgid "copy" +msgstr "" + +#: src/gui/editControls.cpp:49 src/gui/sampleEdit.cpp:1744 src/gui/gui.cpp:2735 +#: src/gui/gui.cpp:2788 src/gui/insEdit.cpp:7543 +msgid "paste" +msgstr "" + +#: src/gui/editControls.cpp:51 +msgid "" +"select\n" +"all" +msgstr "" + +#: src/gui/editControls.cpp:52 +msgid "piano" +msgstr "" + +#: src/gui/editControls.cpp:53 src/gui/gui.cpp:4429 +msgid "undo" +msgstr "" + +#: src/gui/editControls.cpp:54 src/gui/gui.cpp:4430 +msgid "redo" +msgstr "" + +#: src/gui/editControls.cpp:57 +msgid "" +"paste\n" +"mix" +msgstr "" + +#: src/gui/editControls.cpp:58 +msgid "" +"paste\n" +"mix bg" +msgstr "" + +#: src/gui/editControls.cpp:59 +msgid "" +"paste\n" +"ins" +msgstr "" + +#: src/gui/editControls.cpp:60 +msgid "" +"paste\n" +"ins bg" +msgstr "" + +#: src/gui/editControls.cpp:61 +msgid "" +"paste\n" +"flood" +msgstr "" + +#: src/gui/editControls.cpp:62 +msgid "" +"paste\n" +"overflow" +msgstr "" + +#: src/gui/editControls.cpp:63 +msgid "" +"transpose\n" +"notes" +msgstr "" + +#: src/gui/editControls.cpp:64 +msgid "" +"transpose\n" +"values" +msgstr "" + +#: src/gui/editControls.cpp:67 +msgid "" +"change\n" +"ins" +msgstr "" + +#: src/gui/editControls.cpp:68 +msgid "" +"find/\n" +"replace" +msgstr "" + +#: src/gui/editControls.cpp:69 src/gui/gui.cpp:3063 +msgid "collapse" +msgstr "" + +#: src/gui/editControls.cpp:70 src/gui/gui.cpp:3064 +msgid "expand" +msgstr "" + +#: src/gui/editControls.cpp:71 src/gui/gui.cpp:2820 +msgid "flip" +msgstr "" + +#: src/gui/editControls.cpp:72 src/gui/insEdit.cpp:430 +msgid "invert" +msgstr "" + +#: src/gui/editControls.cpp:73 src/gui/gui.cpp:2800 src/gui/gui.cpp:2960 +msgid "interpolate" +msgstr "" + +#: src/gui/editControls.cpp:74 src/gui/gui.cpp:2812 src/gui/insEdit.cpp:7610 +msgid "scale" +msgstr "" + +#: src/gui/editControls.cpp:77 src/gui/gui.cpp:2804 +msgid "fade" +msgstr "" + +#: src/gui/editControls.cpp:78 src/gui/gui.cpp:2816 src/gui/insEdit.cpp:7639 +msgid "randomize" +msgstr "" + +#: src/gui/editControls.cpp:79 +msgid "opmask" +msgstr "" + +#: src/gui/editControls.cpp:80 +msgid "" +"scroll\n" +"mode" +msgstr "" + +#: src/gui/editControls.cpp:81 +msgid "" +"input\n" +"latch" +msgstr "" + +#: src/gui/editControls.cpp:82 +msgid "" +"set\n" +"latch" +msgstr "" + +#: src/gui/editControls.cpp:83 +msgid "" +"clear\n" +"latch" +msgstr "" + +#: src/gui/editControls.cpp:84 src/gui/findReplace.cpp:43 +#: src/gui/insEdit.cpp:7557 +msgid "clear" +msgstr "" + +#: src/gui/editControls.cpp:333 +msgid "Mobile Controls" +msgstr "" + +#: src/gui/editControls.cpp:408 +msgid "Mobile Menu" +msgstr "" + +#: src/gui/editControls.cpp:425 src/gui/editControls.cpp:752 +#: src/gui/editControls.cpp:885 src/gui/editControls.cpp:1007 +#: src/gui/settings.cpp:2485 src/gui/settings.cpp:3271 +#: src/gui/settings.cpp:3975 src/gui/orders.cpp:232 src/gui/guiConst.cpp:577 +#: src/gui/gui.cpp:5888 +msgid "Orders" +msgstr "" + +#: src/gui/editControls.cpp:429 src/gui/findReplace.cpp:669 +#: src/gui/findReplace.cpp:914 +msgid "Ins" +msgstr "" + +#: src/gui/editControls.cpp:442 src/gui/findReplace.cpp:788 +#: src/gui/guiConst.cpp:230 +msgid "Song" +msgstr "" + +#: src/gui/editControls.cpp:450 src/gui/sampleEdit.cpp:494 +msgid "Chips" +msgstr "" + +#: src/gui/editControls.cpp:458 src/gui/settings.cpp:2117 +#: src/gui/settings.cpp:3934 src/gui/settings.cpp:4018 +#: src/gui/compatFlags.cpp:319 +msgid "Other" +msgstr "" + +#: src/gui/editControls.cpp:487 src/gui/guiConst.cpp:531 +msgid "New" +msgstr "" + +#: src/gui/editControls.cpp:491 src/gui/doAction.cpp:38 src/gui/gui.cpp:4194 +msgid "Unsaved changes! Save changes before creating a new song?" +msgstr "" + +#: src/gui/editControls.cpp:507 +msgid "Save as..." +msgstr "" + +#: src/gui/editControls.cpp:516 src/gui/gui.cpp:1680 +msgid "Restore Backup" +msgstr "" + +#: src/gui/editControls.cpp:524 +msgid "Song Info" +msgstr "" + +#: src/gui/editControls.cpp:528 src/gui/subSongs.cpp:17 +#: src/gui/guiConst.cpp:608 +msgid "Subsongs" +msgstr "" + +#: src/gui/editControls.cpp:541 +msgid "Channels here..." +msgstr "" + +#: src/gui/editControls.cpp:544 +msgid "Chips here..." +msgstr "" + +#: src/gui/editControls.cpp:547 +msgid "What the hell..." +msgstr "" + +#: src/gui/editControls.cpp:554 +msgid "ChanOsc" +msgstr "" + +#: src/gui/editControls.cpp:558 +msgid "RegView" +msgstr "" + +#: src/gui/editControls.cpp:562 +msgid "Stats" +msgstr "" + +#: src/gui/editControls.cpp:566 src/gui/guiConst.cpp:611 src/gui/grooves.cpp:35 +msgid "Grooves" +msgstr "" + +#: src/gui/editControls.cpp:569 +msgid "Compat Flags" +msgstr "" + +#: src/gui/editControls.cpp:573 +msgid "XYOsc" +msgstr "" + +#: src/gui/editControls.cpp:577 +msgid "Meter" +msgstr "" + +#: src/gui/editControls.cpp:581 +msgid "Memory" +msgstr "" + +#: src/gui/editControls.cpp:585 +msgid "CV" +msgstr "" + +#: src/gui/editControls.cpp:589 +msgid "Presets" +msgstr "" + +#: src/gui/editControls.cpp:593 +msgid "PatManager" +msgstr "" + +#: src/gui/editControls.cpp:599 src/gui/guiConst.cpp:564 +msgid "Panic" +msgstr "" + +#: src/gui/editControls.cpp:601 src/gui/settings.cpp:560 +#: src/gui/guiConst.cpp:589 src/gui/guiConst.cpp:591 src/gui/gui.cpp:4439 +msgid "Settings" +msgstr "" + +#: src/gui/editControls.cpp:606 +msgid "Log" +msgstr "" + +#: src/gui/editControls.cpp:614 src/gui/guiConst.cpp:587 +msgid "About" +msgstr "" + +#: src/gui/editControls.cpp:619 +msgid "Switch to Desktop Mode" +msgstr "" + +#: src/gui/editControls.cpp:673 src/gui/editControls.cpp:784 +#: src/gui/editControls.cpp:904 +msgid "Play/Edit Controls" +msgstr "" + +#: src/gui/editControls.cpp:681 src/gui/editControls.cpp:842 +#: src/gui/editControls.cpp:959 src/gui/editControls.cpp:1125 +msgid "Octave" +msgstr "" + +#: src/gui/editControls.cpp:698 src/gui/editControls.cpp:857 +msgid "Coarse Step" +msgstr "" + +#: src/gui/editControls.cpp:698 src/gui/editControls.cpp:857 +msgid "Edit Step" +msgstr "" + +#: src/gui/editControls.cpp:731 src/gui/editControls.cpp:797 +#: src/gui/editControls.cpp:911 src/gui/editControls.cpp:1048 +#: src/gui/guiConst.cpp:545 +msgid "Play" +msgstr "" + +#: src/gui/editControls.cpp:739 src/gui/editControls.cpp:789 +#: src/gui/editControls.cpp:918 src/gui/editControls.cpp:1040 +#: src/gui/guiConst.cpp:546 +msgid "Stop" +msgstr "" + +#: src/gui/editControls.cpp:742 src/gui/editControls.cpp:826 +#: src/gui/editControls.cpp:943 src/gui/editControls.cpp:1082 +#: src/gui/gui.cpp:4426 +msgid "Edit" +msgstr "" + +#: src/gui/editControls.cpp:757 src/gui/editControls.cpp:816 +#: src/gui/editControls.cpp:934 src/gui/editControls.cpp:1104 +msgid "Repeat pattern" +msgstr "" + +#: src/gui/editControls.cpp:766 src/gui/editControls.cpp:806 +#: src/gui/editControls.cpp:925 src/gui/editControls.cpp:1073 +msgid "Step one row" +msgstr "" + +#: src/gui/editControls.cpp:771 src/gui/editControls.cpp:891 +#: src/gui/editControls.cpp:1020 src/gui/editControls.cpp:1110 +msgid "Poly##PolyInput" +msgstr "" + +#: src/gui/editControls.cpp:771 src/gui/editControls.cpp:891 +#: src/gui/editControls.cpp:1020 src/gui/editControls.cpp:1110 +msgid "Mono##PolyInput" +msgstr "" + +#: src/gui/editControls.cpp:776 src/gui/editControls.cpp:896 +#: src/gui/editControls.cpp:1025 src/gui/editControls.cpp:1115 +msgid "Polyphony" +msgstr "" + +#: src/gui/editControls.cpp:957 +msgid "Oct." +msgstr "" + +#: src/gui/editControls.cpp:974 src/gui/editControls.cpp:1142 +msgid "Coarse" +msgstr "" + +#: src/gui/editControls.cpp:974 src/gui/editControls.cpp:1142 +msgid "Step" +msgstr "" + +#: src/gui/editControls.cpp:998 +msgid "Foll." +msgstr "" + +#: src/gui/editControls.cpp:1003 +msgid "Ord##FollowOrders" +msgstr "" + +#: src/gui/editControls.cpp:1011 +msgid "Pat##FollowPattern" +msgstr "" + +#: src/gui/editControls.cpp:1033 +msgid "Play Controls" +msgstr "" + +#: src/gui/editControls.cpp:1057 +msgid "Play from the beginning of this pattern" +msgstr "" + +#: src/gui/editControls.cpp:1065 +msgid "Repeat from the beginning of this pattern" +msgstr "" + +#: src/gui/editControls.cpp:1122 src/gui/guiConst.cpp:576 +msgid "Edit Controls" +msgstr "" + +#: src/gui/editControls.cpp:1169 src/gui/guiConst.cpp:560 +msgid "Follow orders" +msgstr "" + +#: src/gui/editControls.cpp:1170 src/gui/guiConst.cpp:561 +msgid "Follow pattern" +msgstr "" + +#: src/gui/songNotes.cpp:32 src/gui/guiConst.cpp:600 +msgid "Song Comments" +msgstr "" + +#: src/gui/util.cpp:93 +msgid "" +msgstr "" + +#: src/gui/util.cpp:97 +msgid "Ctrl-" +msgstr "" + +#: src/gui/util.cpp:99 +msgid "Alt-" +msgstr "" + +#: src/gui/util.cpp:100 +msgid "Shift-" +msgstr "" + +#: src/gui/stats.cpp:31 src/gui/guiConst.cpp:597 +msgid "Statistics" +msgstr "" + +#: src/gui/stats.cpp:36 +msgid "Audio load" +msgstr "" + +#: src/gui/xyOsc.cpp:40 src/gui/guiConst.cpp:612 +msgid "Oscilloscope (X-Y)" +msgstr "" + +#: src/gui/xyOsc.cpp:45 +msgid "X Channel" +msgstr "" + +#: src/gui/xyOsc.cpp:51 +msgid "Invert##X" +msgstr "" + +#: src/gui/xyOsc.cpp:52 +msgid "Y Channel" +msgstr "" + +#: src/gui/xyOsc.cpp:58 +msgid "Invert##Y" +msgstr "" + +#: src/gui/xyOsc.cpp:59 src/gui/sampleEdit.cpp:1353 +msgid "Zoom" +msgstr "" + +#: src/gui/xyOsc.cpp:71 +msgid "Decay Time (ms)" +msgstr "" + +#: src/gui/xyOsc.cpp:74 +msgid "Intensity" +msgstr "" + +#: src/gui/xyOsc.cpp:77 +msgid "Line Thickness" +msgstr "" + +#: src/gui/xyOsc.cpp:213 +msgid "(-Infinity)dB,(-Infinity)dB" +msgstr "" + +#: src/gui/xyOsc.cpp:215 +#, c-format +msgid "(-Infinity)dB,%.1fdB" +msgstr "" + +#: src/gui/xyOsc.cpp:217 +#, c-format +msgid "%.1fdB,(-Infinity)dB" +msgstr "" + +#: src/gui/xyOsc.cpp:219 +#, c-format +msgid "%.1fdB,%.1fdB" +msgstr "" + +#: src/gui/sysConf.cpp:49 src/gui/sysConf.cpp:121 src/gui/sysConf.cpp:486 +#: src/gui/sysConf.cpp:604 src/gui/sysConf.cpp:647 src/gui/sysConf.cpp:684 +#: src/gui/sysConf.cpp:843 src/gui/sysConf.cpp:1098 src/gui/sysConf.cpp:1181 +#: src/gui/sysConf.cpp:1220 src/gui/sysConf.cpp:1294 src/gui/sysConf.cpp:1380 +#: src/gui/sysConf.cpp:1444 src/gui/sysConf.cpp:1482 src/gui/sysConf.cpp:1572 +#: src/gui/sysConf.cpp:1668 src/gui/sysConf.cpp:1716 src/gui/sysConf.cpp:1757 +#: src/gui/sysConf.cpp:1810 src/gui/sysConf.cpp:2284 src/gui/sysConf.cpp:2307 +msgid "Clock rate:" +msgstr "" + +#: src/gui/sysConf.cpp:73 src/gui/sysConf.cpp:152 src/gui/sysConf.cpp:911 +#: src/gui/sysConf.cpp:1459 src/gui/sysConf.cpp:1783 +msgid "Chip type:" +msgstr "" + +#: src/gui/sysConf.cpp:75 +msgid "YM3438 (9-bit DAC)" +msgstr "" + +#: src/gui/sysConf.cpp:79 +msgid "YM2612 (9-bit DAC with distortion)" +msgstr "" + +#: src/gui/sysConf.cpp:83 +msgid "YMF276 (external DAC)" +msgstr "" + +#: src/gui/sysConf.cpp:90 src/gui/sysConf.cpp:804 src/gui/sysConf.cpp:1350 +#: src/gui/sysConf.cpp:1420 +msgid "Disable ExtCh FM macros (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:93 src/gui/sysConf.cpp:807 src/gui/sysConf.cpp:1353 +#: src/gui/sysConf.cpp:1423 +msgid "Ins change in ExtCh operator 2-4 affects FB (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:99 +msgid "Modified sine wave (joke)" +msgstr "" + +#: src/gui/sysConf.cpp:123 src/gui/sysConf.cpp:1296 src/gui/sysConf.cpp:1718 +#: src/gui/sysConf.cpp:2286 +msgid "3.58MHz (NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:127 +msgid "3.55MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:131 +msgid "4MHz (BBC Micro)" +msgstr "" + +#: src/gui/sysConf.cpp:135 +msgid "1.79MHz (Half NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:139 +msgid "3MHz (Exed Exes)" +msgstr "" + +#: src/gui/sysConf.cpp:143 +msgid "2MHz (Sega System 1)" +msgstr "" + +#: src/gui/sysConf.cpp:147 +msgid "447KHz (TI-99/4A)" +msgstr "" + +#: src/gui/sysConf.cpp:154 +msgid "Sega VDP/Master System" +msgstr "" + +#: src/gui/sysConf.cpp:162 +msgid "TI SN76489 with Atari-like short noise" +msgstr "" + +#: src/gui/sysConf.cpp:166 +msgid "Game Gear" +msgstr "" + +#: src/gui/sysConf.cpp:170 +msgid "TI SN76489A" +msgstr "" + +#: src/gui/sysConf.cpp:174 +msgid "TI SN76496" +msgstr "" + +#: src/gui/sysConf.cpp:178 +msgid "NCR 8496" +msgstr "" + +#: src/gui/sysConf.cpp:182 +msgid "Tandy PSSJ 3-voice sound" +msgstr "" + +#: src/gui/sysConf.cpp:186 +msgid "TI SN94624" +msgstr "" + +#: src/gui/sysConf.cpp:190 +msgid "TI SN76494" +msgstr "" + +#: src/gui/sysConf.cpp:196 +msgid "Disable noise period change phase reset" +msgstr "" + +#: src/gui/sysConf.cpp:200 src/gui/sysConf.cpp:2190 +msgid "Disable easy period to note mapping on upper octaves" +msgstr "" + +#: src/gui/sysConf.cpp:219 src/gui/sysConf.cpp:583 +msgid "Pseudo-PAL" +msgstr "" + +#: src/gui/sysConf.cpp:222 src/gui/sysConf.cpp:342 +msgid "Disable anti-click" +msgstr "" + +#: src/gui/sysConf.cpp:225 src/gui/sysConf.cpp:345 +msgid "Chip revision:" +msgstr "" + +#: src/gui/sysConf.cpp:227 +msgid "HuC6280 (original)" +msgstr "" + +#: src/gui/sysConf.cpp:231 +msgid "HuC6280A (SuperGrafx)" +msgstr "" + +#: src/gui/sysConf.cpp:257 +msgid "CPU rate:" +msgstr "" + +#: src/gui/sysConf.cpp:259 +msgid "6.18MHz (NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:263 +msgid "5.95MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:268 +msgid "Sample memory:" +msgstr "" + +#: src/gui/sysConf.cpp:270 +msgid "8K (rev A/B/E)" +msgstr "" + +#: src/gui/sysConf.cpp:274 +msgid "64K (rev D/F)" +msgstr "" + +#: src/gui/sysConf.cpp:279 +msgid "DAC resolution:" +msgstr "" + +#: src/gui/sysConf.cpp:281 +msgid "16-bit (rev A/B/D/F)" +msgstr "" + +#: src/gui/sysConf.cpp:285 +msgid "8-bit + TDM (rev C/E)" +msgstr "" + +#: src/gui/sysConf.cpp:290 src/gui/sysConf.cpp:1931 +msgid "Enable echo" +msgstr "" + +#: src/gui/sysConf.cpp:293 +msgid "Swap echo channels" +msgstr "" + +#: src/gui/sysConf.cpp:296 src/gui/sysConf.cpp:1151 +msgid "Echo delay:" +msgstr "" + +#: src/gui/sysConf.cpp:302 +msgid "Echo resolution:" +msgstr "" + +#: src/gui/sysConf.cpp:308 src/gui/sysConf.cpp:1159 +msgid "Echo feedback:" +msgstr "" + +#: src/gui/sysConf.cpp:314 src/gui/sysConf.cpp:1967 +msgid "Echo volume:" +msgstr "" + +#: src/gui/sysConf.cpp:347 +msgid "Original (DMG)" +msgstr "" + +#: src/gui/sysConf.cpp:351 +msgid "Game Boy Color (rev C)" +msgstr "" + +#: src/gui/sysConf.cpp:355 +msgid "Game Boy Color (rev E)" +msgstr "" + +#: src/gui/sysConf.cpp:359 +msgid "Game Boy Advance" +msgstr "" + +#: src/gui/sysConf.cpp:364 +msgid "Wave channel orientation:" +msgstr "" + +#: src/gui/sysConf.cpp:367 src/gui/compatFlags.cpp:298 src/gui/gui.cpp:6067 +#: src/gui/insEdit.cpp:217 src/gui/insEdit.cpp:231 +msgid "Normal" +msgstr "" + +#: src/gui/sysConf.cpp:371 +msgid "Inverted" +msgstr "" + +#: src/gui/sysConf.cpp:378 +msgid "Exact data (inverted)" +msgstr "" + +#: src/gui/sysConf.cpp:382 +msgid "Exact output (normal)" +msgstr "" + +#: src/gui/sysConf.cpp:388 +msgid "" +"Pretty please one more compat flag when I use arpeggio and my sound length" +msgstr "" + +#: src/gui/sysConf.cpp:405 src/gui/sysConf.cpp:438 +msgid "DAC bit depth (reduces output rate):" +msgstr "" + +#: src/gui/sysConf.cpp:426 src/gui/sysConf.cpp:1268 src/gui/sysConf.cpp:1919 +msgid "Volume scale:" +msgstr "" + +#: src/gui/sysConf.cpp:432 +msgid "Mix buffers (allows longer echo delay):" +msgstr "" + +#: src/gui/sysConf.cpp:444 +msgid "Channel limit:" +msgstr "" + +#: src/gui/sysConf.cpp:450 +msgid "Sample rate:" +msgstr "" + +#: src/gui/sysConf.cpp:460 +#, c-format +msgid "Actual sample rate: %d Hz" +msgstr "" + +#: src/gui/sysConf.cpp:462 +#, c-format +msgid "Max mixer CPU usage: %.0f%%" +msgstr "" + +#: src/gui/sysConf.cpp:488 +msgid "NTSC (3.58MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:492 src/gui/sysConf.cpp:557 +msgid "PAL (3.55MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:496 +msgid "Arcade (4MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:500 +msgid "Half NTSC (1.79MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:506 +msgid "Patch set:" +msgstr "" + +#: src/gui/sysConf.cpp:528 +msgid "Ignore top/hi-hat frequency changes" +msgstr "" + +#: src/gui/sysConf.cpp:531 +msgid "Apply fixed frequency to all drums at once" +msgstr "" + +#: src/gui/sysConf.cpp:553 +msgid "NTSC/X16 (3.58MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:561 +msgid "X1/X68000 (4MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:567 src/gui/sysConf.cpp:587 +msgid "Broken pitch macro/slides (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:607 src/gui/sysConf.cpp:650 src/gui/sysConf.cpp:1222 +#: src/gui/sysConf.cpp:2310 +msgid "NTSC (1.79MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:611 src/gui/sysConf.cpp:654 src/gui/sysConf.cpp:1226 +msgid "PAL (1.67MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:615 src/gui/sysConf.cpp:658 src/gui/sysConf.cpp:1230 +msgid "Dendy (1.77MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:621 +msgid "DPCM channel mode:" +msgstr "" + +#: src/gui/sysConf.cpp:624 +msgid "DPCM (muffled samples; low CPU usage)" +msgstr "" + +#: src/gui/sysConf.cpp:628 +msgid "PCM (crisp samples; high CPU usage)" +msgstr "" + +#: src/gui/sysConf.cpp:687 +msgid "NTSC (1.02MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:691 +msgid "PAL (0.99MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:695 +msgid "SSI 2001 (0.89MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:701 src/gui/sysConf.cpp:2320 +msgid "Global parameter priority:" +msgstr "" + +#: src/gui/sysConf.cpp:704 src/gui/sysConf.cpp:2323 +msgid "Left to right" +msgstr "" + +#: src/gui/sysConf.cpp:708 src/gui/sysConf.cpp:2327 +msgid "Last used channel" +msgstr "" + +#: src/gui/sysConf.cpp:714 +msgid "Hard reset envelope:" +msgstr "" + +#: src/gui/sysConf.cpp:716 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:1920 +#: src/gui/insEdit.cpp:6955 src/gui/insEdit.cpp:7481 +msgid "Attack" +msgstr "" + +#: src/gui/sysConf.cpp:721 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:1960 +#: src/gui/insEdit.cpp:6956 src/gui/insEdit.cpp:7482 +msgid "Decay" +msgstr "" + +#: src/gui/sysConf.cpp:726 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:1929 +#: src/gui/insEdit.cpp:6957 src/gui/insEdit.cpp:7483 +msgid "Sustain" +msgstr "" + +#: src/gui/sysConf.cpp:731 src/gui/settings.cpp:3987 src/gui/insEdit.cpp:50 +#: src/gui/insEdit.cpp:604 src/gui/insEdit.cpp:1983 src/gui/insEdit.cpp:6958 +#: src/gui/insEdit.cpp:7484 +msgid "Release" +msgstr "" + +#: src/gui/sysConf.cpp:737 +msgid "Envelope reset time:" +msgstr "" + +#: src/gui/sysConf.cpp:747 +msgid "" +"- 0 disables envelope reset. not recommended!\n" +"- 1 may trigger SID envelope bugs.\n" +"- values that are too high may result in notes being skipped." +msgstr "" + +#: src/gui/sysConf.cpp:749 +msgid "Disable 1Exy env update (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:753 +msgid "Relative duty and cutoff macros are coarse (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:757 +msgid "Cutoff macro race conditions (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:793 +msgid "8MHz (Neo Geo MVS)" +msgstr "" + +#: src/gui/sysConf.cpp:797 +msgid "8.06MHz (Neo Geo AES)" +msgstr "" + +#: src/gui/sysConf.cpp:812 src/gui/sysConf.cpp:1337 src/gui/sysConf.cpp:1407 +msgid "SSG Volume" +msgstr "" + +#: src/gui/sysConf.cpp:818 src/gui/sysConf.cpp:1413 +msgid "FM/ADPCM Volume" +msgstr "" + +#: src/gui/sysConf.cpp:845 +msgid "1.79MHz (ZX Spectrum NTSC/MSX)" +msgstr "" + +#: src/gui/sysConf.cpp:849 +msgid "1.77MHz (ZX Spectrum PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:853 +msgid "0.83MHz (Pre-divided Sunsoft 5B on PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:857 +msgid "0.89MHz (Pre-divided Sunsoft 5B)" +msgstr "" + +#: src/gui/sysConf.cpp:861 +msgid "1MHz (Amstrad CPC)" +msgstr "" + +#: src/gui/sysConf.cpp:865 +msgid "1.10MHz (Gamate/VIC-20 PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:869 +msgid "1.25MHz (Mag Max)" +msgstr "" + +#: src/gui/sysConf.cpp:873 +msgid "1.5MHz (Vectrex)" +msgstr "" + +#: src/gui/sysConf.cpp:877 +msgid "1.536MHz (Kyugo)" +msgstr "" + +#: src/gui/sysConf.cpp:881 +msgid "1.67MHz (?)" +msgstr "" + +#: src/gui/sysConf.cpp:885 +msgid "1.75MHz (ZX Spectrum 48K)" +msgstr "" + +#: src/gui/sysConf.cpp:889 +msgid "1.99MHz (PC-88)" +msgstr "" + +#: src/gui/sysConf.cpp:893 +msgid "2MHz (Atari ST/Sharp X1)" +msgstr "" + +#: src/gui/sysConf.cpp:897 +msgid "2^21Hz (Game Boy)" +msgstr "" + +#: src/gui/sysConf.cpp:901 +msgid "3.58MHz (Darky)" +msgstr "" + +#: src/gui/sysConf.cpp:905 +msgid "3.6MHz (Darky)" +msgstr "" + +#: src/gui/sysConf.cpp:917 +msgid "YM2149(F)" +msgstr "" + +#: src/gui/sysConf.cpp:921 +msgid "Sunsoft 5B" +msgstr "" + +#: src/gui/sysConf.cpp:925 +msgid "AY-3-8914" +msgstr "" + +#: src/gui/sysConf.cpp:931 +msgid "note: AY-3-8914 is not supported by the VGM format!" +msgstr "" + +#: src/gui/sysConf.cpp:935 +msgid "Stereo##_AY_STEREO" +msgstr "" + +#: src/gui/sysConf.cpp:940 +msgid "Separation" +msgstr "" + +#: src/gui/sysConf.cpp:949 +msgid "Half Clock divider##_AY_CLKSEL" +msgstr "" + +#: src/gui/sysConf.cpp:971 +msgid "SAM Coupé (8MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:975 +msgid "NTSC (7.15MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:979 +msgid "PAL (7.09MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:999 +msgid "Stereo separation:" +msgstr "" + +#: src/gui/sysConf.cpp:1006 src/gui/sysConf.cpp:2412 +msgid "Model:" +msgstr "" + +#: src/gui/sysConf.cpp:1008 +msgid "Amiga 500 (OCS)" +msgstr "" + +#: src/gui/sysConf.cpp:1012 +msgid "Amiga 1200 (AGA)" +msgstr "" + +#: src/gui/sysConf.cpp:1018 +msgid "Chip memory:" +msgstr "" + +#: src/gui/sysConf.cpp:1020 +msgid "2MB (ECS/AGA max)" +msgstr "" + +#: src/gui/sysConf.cpp:1030 +msgid "512KB (OCS max)" +msgstr "" + +#: src/gui/sysConf.cpp:1043 src/gui/sysConf.cpp:1081 src/gui/sysConf.cpp:2395 +#: src/gui/sysConf.cpp:2449 +msgid "PAL" +msgstr "" + +#: src/gui/sysConf.cpp:1046 +msgid "Bypass frequency limits" +msgstr "" + +#: src/gui/sysConf.cpp:1065 +msgid "Mixing mode:" +msgstr "" + +#: src/gui/sysConf.cpp:1067 src/gui/settings.cpp:3724 +msgid "Mono" +msgstr "" + +#: src/gui/sysConf.cpp:1071 +msgid "Mono (no distortion)" +msgstr "" + +#: src/gui/sysConf.cpp:1075 src/gui/sysConf.cpp:1197 src/gui/sysConf.cpp:1864 +#: src/gui/sysConf.cpp:2204 +msgid "Stereo" +msgstr "" + +#: src/gui/sysConf.cpp:1100 +msgid "1.19MHz (PC)" +msgstr "" + +#: src/gui/sysConf.cpp:1104 +msgid "1.99MHz (PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1108 +msgid "2.46MHz (PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1114 +msgid "Speaker type:" +msgstr "" + +#: src/gui/sysConf.cpp:1116 +msgid "Unfiltered" +msgstr "" + +#: src/gui/sysConf.cpp:1120 +msgid "Cone" +msgstr "" + +#: src/gui/sysConf.cpp:1124 +msgid "Piezo" +msgstr "" + +#: src/gui/sysConf.cpp:1128 +msgid "Use system beeper (Linux only!)" +msgstr "" + +#: src/gui/sysConf.cpp:1134 +msgid "Reset phase on frequency change" +msgstr "" + +#: src/gui/sysConf.cpp:1183 +msgid "16MHz (Seta 1)" +msgstr "" + +#: src/gui/sysConf.cpp:1187 +msgid "16.67MHz (Seta 2)" +msgstr "" + +#: src/gui/sysConf.cpp:1191 src/gui/sysConf.cpp:1759 +msgid "14.32MHz (NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:1201 +msgid "Bankswitched (Seta 2)" +msgstr "" + +#: src/gui/sysConf.cpp:1235 src/gui/sysConf.cpp:1261 +msgid "Initial channel limit:" +msgstr "" + +#: src/gui/sysConf.cpp:1241 src/gui/sysConf.cpp:2398 +msgid "Disable hissing" +msgstr "" + +#: src/gui/sysConf.cpp:1244 +msgid "Scale frequency to wave length" +msgstr "" + +#: src/gui/sysConf.cpp:1300 src/gui/sysConf.cpp:1722 +msgid "3.54MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:1304 src/gui/sysConf.cpp:1726 src/gui/sysConf.cpp:2290 +msgid "4MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1308 src/gui/sysConf.cpp:1730 +msgid "3MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1312 src/gui/sysConf.cpp:1734 +msgid "3.9936MHz (PC-88/PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1316 +msgid "1.5MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1321 src/gui/sysConf.cpp:1391 src/gui/sysConf.cpp:1639 +#: src/gui/sysConf.cpp:1852 +msgid "Output rate:" +msgstr "" + +#: src/gui/sysConf.cpp:1323 src/gui/sysConf.cpp:1397 +msgid "FM: clock / 72, SSG: clock / 16" +msgstr "" + +#: src/gui/sysConf.cpp:1327 +msgid "FM: clock / 36, SSG: clock / 8" +msgstr "" + +#: src/gui/sysConf.cpp:1331 +msgid "FM: clock / 24, SSG: clock / 4" +msgstr "" + +#: src/gui/sysConf.cpp:1343 +msgid "FM Volume" +msgstr "" + +#: src/gui/sysConf.cpp:1382 +msgid "8MHz (Arcade)" +msgstr "" + +#: src/gui/sysConf.cpp:1386 +msgid "7.987MHz (PC-88/PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1393 +msgid "FM: clock / 144, SSG: clock / 32" +msgstr "" + +#: src/gui/sysConf.cpp:1401 +msgid "FM: clock / 48, SSG: clock / 8" +msgstr "" + +#: src/gui/sysConf.cpp:1446 +msgid "8MHz (FM Towns)" +msgstr "" + +#: src/gui/sysConf.cpp:1450 +msgid "10MHz (Sega System 18)" +msgstr "" + +#: src/gui/sysConf.cpp:1454 +msgid "12.5MHz (Sega CD/System 32)" +msgstr "" + +#: src/gui/sysConf.cpp:1461 +msgid "RF5C68 (10-bit output)" +msgstr "" + +#: src/gui/sysConf.cpp:1465 +msgid "RF5C164 (16-bit output)" +msgstr "" + +#: src/gui/sysConf.cpp:1520 +msgid "Sample rate table:" +msgstr "" + +#: src/gui/sysConf.cpp:1524 +msgid "divider \\ clock" +msgstr "" + +#: src/gui/sysConf.cpp:1526 +msgid "full" +msgstr "" + +#: src/gui/sysConf.cpp:1528 +msgid "half" +msgstr "" + +#: src/gui/sysConf.cpp:1641 +msgid "clock / 132" +msgstr "" + +#: src/gui/sysConf.cpp:1645 +msgid "clock / 165" +msgstr "" + +#: src/gui/sysConf.cpp:1651 +msgid "Bankswitched (NMK112)" +msgstr "" + +#: src/gui/sysConf.cpp:1670 +msgid "1.79MHz (NTSC/MSX)" +msgstr "" + +#: src/gui/sysConf.cpp:1674 +msgid "1.77MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:1678 +msgid "1.5MHz (Arcade)" +msgstr "" + +#: src/gui/sysConf.cpp:1682 +msgid "2MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1697 +msgid "Consistent frequency across all duties" +msgstr "" + +#: src/gui/sysConf.cpp:1704 +msgid "note: only works for an initial LFSR value of 0!" +msgstr "" + +#: src/gui/sysConf.cpp:1738 +msgid "3.5MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1763 +msgid "14.19MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:1767 +msgid "14MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1771 +msgid "16MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1775 +msgid "15MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1779 +msgid "33.8688MHz (OPL3-L)" +msgstr "" + +#: src/gui/sysConf.cpp:1784 +msgid "OPL3 (YMF262)" +msgstr "" + +#: src/gui/sysConf.cpp:1788 +msgid "OPL3-L (YMF289B)" +msgstr "" + +#: src/gui/sysConf.cpp:1794 +msgid "Compatible panning (0800)" +msgstr "" + +#: src/gui/sysConf.cpp:1858 +msgid "Output bit depth:" +msgstr "" + +#: src/gui/sysConf.cpp:1868 +msgid "Interpolation:" +msgstr "" + +#: src/gui/sysConf.cpp:1874 src/gui/waveEdit.cpp:38 +msgid "Linear" +msgstr "" + +#: src/gui/sysConf.cpp:1878 src/gui/waveEdit.cpp:40 +msgid "Cubic" +msgstr "" + +#: src/gui/sysConf.cpp:1882 +msgid "Sinc" +msgstr "" + +#: src/gui/sysConf.cpp:1920 +msgid "Left##VolScaleL" +msgstr "" + +#: src/gui/sysConf.cpp:1925 +msgid "Right##VolScaleL" +msgstr "" + +#: src/gui/sysConf.cpp:1935 +msgid "Initial echo state:" +msgstr "" + +#: src/gui/sysConf.cpp:1955 +msgid "Delay##EchoDelay" +msgstr "" + +#: src/gui/sysConf.cpp:1961 +msgid "Feedback##EchoFeedback" +msgstr "" + +#: src/gui/sysConf.cpp:1968 +msgid "Left##EchoVolL" +msgstr "" + +#: src/gui/sysConf.cpp:1973 +msgid "Right##EchoVolL" +msgstr "" + +#: src/gui/sysConf.cpp:1979 +msgid "Echo filter:" +msgstr "" + +#: src/gui/sysConf.cpp:1989 +msgid "Hex##SNESFHex" +msgstr "" + +#: src/gui/sysConf.cpp:1989 +msgid "Dec##SNESFHex" +msgstr "" + +#: src/gui/sysConf.cpp:2031 +#, c-format +msgid "sum: %d" +msgstr "" + +#: src/gui/sysConf.cpp:2086 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:63 +#: src/gui/insEdit.cpp:75 +msgid "Detune" +msgstr "" + +#: src/gui/sysConf.cpp:2092 +msgid "Capacitor values (nF):" +msgstr "" + +#: src/gui/sysConf.cpp:2102 +msgid "Initial part volume (channel 1-4):" +msgstr "" + +#: src/gui/sysConf.cpp:2112 +msgid "Initial part volume (channel 5-8):" +msgstr "" + +#: src/gui/sysConf.cpp:2122 +msgid "Envelope mode (channel 1-4):" +msgstr "" + +#: src/gui/sysConf.cpp:2124 +msgid "Capacitor (attack/decay)##EM00" +msgstr "" + +#: src/gui/sysConf.cpp:2128 +msgid "External (volume macro)##EM01" +msgstr "" + +#: src/gui/sysConf.cpp:2134 +msgid "Envelope mode (channel 5-8):" +msgstr "" + +#: src/gui/sysConf.cpp:2136 +msgid "Capacitor (attack/decay)##EM10" +msgstr "" + +#: src/gui/sysConf.cpp:2140 +msgid "External (volume macro)##EM11" +msgstr "" + +#: src/gui/sysConf.cpp:2146 +msgid "Global vibrato:" +msgstr "" + +#: src/gui/sysConf.cpp:2153 +msgid "Depth" +msgstr "" + +#: src/gui/sysConf.cpp:2219 src/gui/sysConf.cpp:2373 +msgid "Waveform storage mode:" +msgstr "" + +#: src/gui/sysConf.cpp:2221 +msgid "RAM" +msgstr "" + +#: src/gui/sysConf.cpp:2225 +msgid "ROM (up to 8 waves)" +msgstr "" + +#: src/gui/sysConf.cpp:2241 +msgid "Compatible noise frequencies" +msgstr "" + +#: src/gui/sysConf.cpp:2256 +msgid "Legacy slides and pitch (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:2314 +msgid "PAL (1.77MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:2344 +msgid "Banking style:" +msgstr "" + +#: src/gui/sysConf.cpp:2346 +msgid "Namco System 2 (2MB)" +msgstr "" + +#: src/gui/sysConf.cpp:2351 +msgid "Namco System 21 (4MB)" +msgstr "" + +#: src/gui/sysConf.cpp:2356 +msgid "Raw (16MB; no VGM export!)" +msgstr "" + +#: src/gui/sysConf.cpp:2375 +msgid "Dynamic (unconfirmed)" +msgstr "" + +#: src/gui/sysConf.cpp:2379 +msgid "Static (up to 5 waves)" +msgstr "" + +#: src/gui/sysConf.cpp:2414 +msgid "DS (4MB RAM)" +msgstr "" + +#: src/gui/sysConf.cpp:2418 +msgid "DSi (16MB RAM)" +msgstr "" + +#: src/gui/sysConf.cpp:2444 src/gui/settings.cpp:727 +msgid "nothing to configure" +msgstr "" + +#: src/gui/sysConf.cpp:2467 +msgid "Custom clock rate" +msgstr "" + +#: src/gui/volMeter.cpp:36 src/gui/settings.cpp:3969 src/gui/guiConst.cpp:596 +msgid "Volume Meter" +msgstr "" + +#: src/gui/userPresets.cpp:325 +msgid "User Systems" +msgstr "" + +#: src/gui/userPresets.cpp:337 +msgid "Error! User category does not exist!" +msgstr "" + +#: src/gui/userPresets.cpp:346 src/gui/newSong.cpp:181 +msgid "Systems" +msgstr "" + +#: src/gui/userPresets.cpp:349 +msgid "New Preset" +msgstr "" + +#: src/gui/userPresets.cpp:361 +msgid "select a preset" +msgstr "" + +#: src/gui/userPresets.cpp:374 +msgid "Remove##UPresetRemove" +msgstr "" + +#: src/gui/userPresets.cpp:439 src/gui/settings.cpp:1135 +msgid "Configure" +msgstr "" + +#: src/gui/userPresets.cpp:470 +msgid "Advanced" +msgstr "" + +#: src/gui/userPresets.cpp:476 +msgid "" +"insert additional settings in `option=value` format.\n" +"available options:\n" +"- tickRate" +msgstr "" + +#: src/gui/userPresets.cpp:509 +msgid "Save and Close" +msgstr "" + +#: src/gui/userPresets.cpp:515 src/gui/settings.cpp:1238 +#: src/gui/settings.cpp:2161 src/gui/settings.cpp:2553 +#: src/gui/settings.cpp:3796 +msgid "Import" +msgstr "" + +#: src/gui/userPresets.cpp:519 +msgid "Import (replace)" +msgstr "" + +#: src/gui/effectList.cpp:14 src/gui/guiConst.cpp:606 +msgid "Effect List" +msgstr "" + +#: src/gui/effectList.cpp:18 +#, c-format +msgid "Chip at cursor: %s" +msgstr "" + +#: src/gui/effectList.cpp:21 src/gui/settings.cpp:6674 +msgid "Search" +msgstr "" + +#: src/gui/effectList.cpp:25 +msgid "Effect types to show:" +msgstr "" + +#: src/gui/effectList.cpp:47 +msgid "Description" +msgstr "" + +#: src/gui/subSongs.cpp:22 src/gui/subSongs.cpp:32 +#, c-format +msgid "%d. " +msgstr "" + +#: src/gui/subSongs.cpp:73 src/gui/subSongs.cpp:93 +msgid "too many subsongs!" +msgstr "" + +#: src/gui/subSongs.cpp:114 +msgid "this is the only subsong!" +msgstr "" + +#: src/gui/subSongs.cpp:116 +msgid "are you sure you want to remove this subsong?" +msgstr "" + +#: src/gui/spoiler.cpp:30 +msgid "Spoiler" +msgstr "" + +#: src/gui/spoiler.cpp:32 +msgid "SPOILER" +msgstr "" + +#: src/gui/settings.cpp:104 src/gui/settings.cpp:114 src/gui/settings.cpp:124 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:105 src/gui/settings.cpp:115 src/gui/settings.cpp:125 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:168 +msgid "ASAP (C++ port)" +msgstr "" + +#: src/gui/settings.cpp:191 +msgid "ESFMu (fast)" +msgstr "" + +#: src/gui/settings.cpp:205 +msgid "Lower" +msgstr "" + +#: src/gui/settings.cpp:207 +msgid "Medium" +msgstr "" + +#: src/gui/settings.cpp:209 +msgid "Ultra" +msgstr "" + +#: src/gui/settings.cpp:210 +msgid "Ultimate" +msgstr "" + +#: src/gui/settings.cpp:214 +msgid "evdev SND_TONE" +msgstr "" + +#: src/gui/settings.cpp:215 +msgid "KIOCSOUND on /dev/tty1" +msgstr "" + +#: src/gui/settings.cpp:216 +msgid "/dev/port" +msgstr "" + +#: src/gui/settings.cpp:217 +msgid "KIOCSOUND on standard output" +msgstr "" + +#: src/gui/settings.cpp:218 +msgid "outb()" +msgstr "" + +#: src/gui/settings.cpp:222 src/gui/settings.cpp:232 +msgid "Disabled/custom" +msgstr "" + +#: src/gui/settings.cpp:223 +msgid "Two octaves (0 is C-4, F is D#5)" +msgstr "" + +#: src/gui/settings.cpp:224 +msgid "Raw (note number is value)" +msgstr "" + +#: src/gui/settings.cpp:225 +msgid "Two octaves alternate (lower keys are 0-9, upper keys are A-F)" +msgstr "" + +#: src/gui/settings.cpp:226 src/gui/settings.cpp:233 +msgid "Use dual control change (one for each nibble)" +msgstr "" + +#: src/gui/settings.cpp:227 src/gui/settings.cpp:234 +msgid "Use 14-bit control change" +msgstr "" + +#: src/gui/settings.cpp:228 src/gui/settings.cpp:235 +msgid "Use single control change (imprecise)" +msgstr "" + +#: src/gui/settings.cpp:239 +msgid "--select--" +msgstr "" + +#: src/gui/settings.cpp:240 src/gui/settings.cpp:241 src/gui/settings.cpp:242 +#: src/gui/settings.cpp:243 src/gui/settings.cpp:244 src/gui/settings.cpp:245 +#: src/gui/settings.cpp:246 +msgid "???" +msgstr "" + +#: src/gui/settings.cpp:247 +msgid "Note Off" +msgstr "" + +#: src/gui/settings.cpp:248 +msgid "Note On" +msgstr "" + +#: src/gui/settings.cpp:249 +msgid "Aftertouch" +msgstr "" + +#: src/gui/settings.cpp:250 src/gui/insEdit.cpp:7187 src/gui/insEdit.cpp:7217 +#: src/gui/insEdit.cpp:7382 src/gui/insEdit.cpp:7403 src/gui/insEdit.cpp:7415 +#: src/gui/insEdit.cpp:7430 +msgid "Control" +msgstr "" + +#: src/gui/settings.cpp:251 src/gui/settings.cpp:573 src/gui/settings.cpp:3177 +msgid "Program" +msgstr "" + +#: src/gui/settings.cpp:252 +msgid "ChanPressure" +msgstr "" + +#: src/gui/settings.cpp:253 +msgid "Pitch Bend" +msgstr "" + +#: src/gui/settings.cpp:254 +msgid "SysEx" +msgstr "" + +#: src/gui/settings.cpp:258 src/gui/settings.cpp:1713 src/gui/settings.cpp:1723 +#: src/gui/settings.cpp:1743 src/gui/settings.cpp:1749 +#, c-format +msgid "Any" +msgstr "" + +#: src/gui/settings.cpp:262 src/gui/settings.cpp:3363 src/gui/settings.cpp:3928 +#: src/gui/settings.cpp:4121 +msgid "Instrument" +msgstr "" + +#: src/gui/settings.cpp:264 +msgid "Effect 1 type" +msgstr "" + +#: src/gui/settings.cpp:265 +msgid "Effect 1 value" +msgstr "" + +#: src/gui/settings.cpp:266 +msgid "Effect 2 type" +msgstr "" + +#: src/gui/settings.cpp:267 +msgid "Effect 2 value" +msgstr "" + +#: src/gui/settings.cpp:268 +msgid "Effect 3 type" +msgstr "" + +#: src/gui/settings.cpp:269 +msgid "Effect 3 value" +msgstr "" + +#: src/gui/settings.cpp:270 +msgid "Effect 4 type" +msgstr "" + +#: src/gui/settings.cpp:271 +msgid "Effect 4 value" +msgstr "" + +#: src/gui/settings.cpp:272 +msgid "Effect 5 type" +msgstr "" + +#: src/gui/settings.cpp:273 +msgid "Effect 5 value" +msgstr "" + +#: src/gui/settings.cpp:274 +msgid "Effect 6 type" +msgstr "" + +#: src/gui/settings.cpp:275 +msgid "Effect 6 value" +msgstr "" + +#: src/gui/settings.cpp:276 +msgid "Effect 7 type" +msgstr "" + +#: src/gui/settings.cpp:277 +msgid "Effect 7 value" +msgstr "" + +#: src/gui/settings.cpp:278 +msgid "Effect 8 type" +msgstr "" + +#: src/gui/settings.cpp:279 +msgid "Effect 8 value" +msgstr "" + +#: src/gui/settings.cpp:315 +msgid "Press key..." +msgstr "" + +#: src/gui/settings.cpp:564 +msgid "Do you want to save your settings?" +msgstr "" + +#: src/gui/settings.cpp:571 +msgid "General" +msgstr "" + +#: src/gui/settings.cpp:588 +msgid "Language" +msgstr "" + +#: src/gui/settings.cpp:606 +msgid "Render backend" +msgstr "" + +#: src/gui/settings.cpp:661 src/gui/settings.cpp:680 src/gui/settings.cpp:1312 +msgid "you may need to restart Furnace for this setting to take effect." +msgstr "" + +#: src/gui/settings.cpp:664 +msgid "Advanced render backend settings" +msgstr "" + +#: src/gui/settings.cpp:666 +msgid "Render driver" +msgstr "" + +#: src/gui/settings.cpp:666 src/gui/settings.cpp:667 src/gui/settings.cpp:1298 +#: src/gui/settings.cpp:1299 src/gui/piano.cpp:108 +msgid "Automatic" +msgstr "" + +#: src/gui/settings.cpp:683 +msgid "" +"beware: changing these settings may render Furnace unusable! do so at your " +"own risk.\n" +"start Furnace with -safemode if you mess something up." +msgstr "" + +#: src/gui/settings.cpp:684 +msgid "Red bits" +msgstr "" + +#: src/gui/settings.cpp:689 +msgid "Green bits" +msgstr "" + +#: src/gui/settings.cpp:694 +msgid "Blue bits" +msgstr "" + +#: src/gui/settings.cpp:699 +msgid "Alpha bits" +msgstr "" + +#: src/gui/settings.cpp:704 +msgid "Color depth" +msgstr "" + +#: src/gui/settings.cpp:709 +msgid "Stencil buffer size" +msgstr "" + +#: src/gui/settings.cpp:714 src/gui/settings.cpp:1385 +msgid "Buffer size" +msgstr "" + +#: src/gui/settings.cpp:720 +msgid "Double buffer" +msgstr "" + +#: src/gui/settings.cpp:725 +msgid "" +"the following values are common (in red, green, blue, alpha order):\n" +"- 24 bits: 8, 8, 8, 0\n" +"- 16 bits: 5, 6, 5, 0\n" +"- 32 bits (with alpha): 8, 8, 8, 8\n" +"- 30 bits (deep): 10, 10, 10, 0" +msgstr "" + +#: src/gui/settings.cpp:732 +#, c-format +msgid "" +"current backend: %s\n" +"%s\n" +"%s\n" +"%s" +msgstr "" + +#: src/gui/settings.cpp:735 +msgid "VSync" +msgstr "" + +#: src/gui/settings.cpp:743 +msgid "Frame rate limit" +msgstr "" + +#: src/gui/settings.cpp:743 +msgid "Unlimited" +msgstr "" + +#: src/gui/settings.cpp:749 +msgid "only applies when VSync is disabled." +msgstr "" + +#: src/gui/settings.cpp:753 +msgid "Display render time" +msgstr "" + +#: src/gui/settings.cpp:760 +msgid "Late render clear" +msgstr "" + +#: src/gui/settings.cpp:765 +msgid "" +"calls rend->clear() after rend->present(). might reduce UI latency by one " +"frame in some drivers." +msgstr "" + +#: src/gui/settings.cpp:770 +msgid "Power-saving mode" +msgstr "" + +#: src/gui/settings.cpp:775 +msgid "" +"saves power by lowering the frame rate to 2fps when idle.\n" +"may cause issues under Mesa drivers!" +msgstr "" + +#: src/gui/settings.cpp:780 +msgid "Disable threaded input (restart after changing!)" +msgstr "" + +#: src/gui/settings.cpp:785 +msgid "" +"threaded input processes key presses for note preview on a separate thread " +"(on supported platforms), which reduces latency.\n" +"however, crashes have been reported when threaded input is on. enable this " +"option if that is the case." +msgstr "" + +#: src/gui/settings.cpp:790 +msgid "Enable event delay" +msgstr "" + +#: src/gui/settings.cpp:796 +msgid "may cause issues with high-polling-rate mice when previewing notes." +msgstr "" + +#: src/gui/settings.cpp:800 +msgid "Per-channel oscilloscope threads" +msgstr "" + +#: src/gui/settings.cpp:808 +msgid "you're being silly, aren't you? that's enough." +msgstr "" + +#: src/gui/settings.cpp:812 +msgid "what are you doing? stop!" +msgstr "" + +#: src/gui/settings.cpp:816 +#, c-format +msgid "" +"it is a bad idea to set this number higher than your CPU core count (%d)!" +msgstr "" + +#: src/gui/settings.cpp:821 +msgid "Oscilloscope rendering engine:" +msgstr "" + +#: src/gui/settings.cpp:823 +msgid "ImGui line plot" +msgstr "" + +#: src/gui/settings.cpp:827 +msgid "render using Dear ImGui's built-in line drawing functions." +msgstr "" + +#: src/gui/settings.cpp:829 +msgid "GLSL (if available)" +msgstr "" + +#: src/gui/settings.cpp:834 +msgid "" +"render using shaders that run on the graphics card.\n" +"only available in OpenGL ES 2.0 render backend." +msgstr "" + +#: src/gui/settings.cpp:836 +msgid "" +"render using shaders that run on the graphics card.\n" +"only available in OpenGL 3.0 render backend." +msgstr "" + +#: src/gui/settings.cpp:843 +msgid "Vibration" +msgstr "" + +#: src/gui/settings.cpp:845 +msgid "Strength" +msgstr "" + +#: src/gui/settings.cpp:851 src/gui/insEdit.cpp:2284 src/gui/insEdit.cpp:2382 +#: src/gui/insEdit.cpp:5582 src/gui/insEdit.cpp:6241 +msgid "Length" +msgstr "" + +#: src/gui/settings.cpp:859 src/gui/gui.cpp:4191 +msgid "File" +msgstr "" + +#: src/gui/settings.cpp:862 +msgid "Use system file picker" +msgstr "" + +#: src/gui/settings.cpp:867 +msgid "Number of recent files" +msgstr "" + +#: src/gui/settings.cpp:874 +msgid "Compress when saving" +msgstr "" + +#: src/gui/settings.cpp:879 +msgid "use zlib to compress saved songs." +msgstr "" + +#: src/gui/settings.cpp:883 +msgid "Save unused patterns" +msgstr "" + +#: src/gui/settings.cpp:889 +msgid "Use new pattern format when saving" +msgstr "" + +#: src/gui/settings.cpp:894 +msgid "" +"use a packed format which saves space when saving songs.\n" +"disable if you need compatibility with older Furnace and/or tools\n" +"which do not support this format." +msgstr "" + +#: src/gui/settings.cpp:898 +msgid "Don't apply compatibility flags when loading .dmf" +msgstr "" + +#: src/gui/settings.cpp:903 +msgid "do not report any issues arising from the use of this option!" +msgstr "" + +#: src/gui/settings.cpp:906 +msgid "Play after opening song:" +msgstr "" + +#: src/gui/settings.cpp:908 +msgid "No##pol0" +msgstr "" + +#: src/gui/settings.cpp:912 +msgid "Only if already playing##pol1" +msgstr "" + +#: src/gui/settings.cpp:916 +msgid "Yes##pol0" +msgstr "" + +#: src/gui/settings.cpp:922 +msgid "Audio export loop/fade out time:" +msgstr "" + +#: src/gui/settings.cpp:924 +msgid "Set to these values on start-up:##fot0" +msgstr "" + +#: src/gui/settings.cpp:942 +msgid "Remember last values##fot1" +msgstr "" + +#: src/gui/settings.cpp:949 +msgid "Store instrument name in .fui" +msgstr "" + +#: src/gui/settings.cpp:954 +msgid "" +"when enabled, saving an instrument will store its name.\n" +"this may increase file size." +msgstr "" + +#: src/gui/settings.cpp:958 +msgid "Load instrument name from .fui" +msgstr "" + +#: src/gui/settings.cpp:963 +msgid "" +"when enabled, loading an instrument will use the stored name (if present).\n" +"otherwise, it will use the file name." +msgstr "" + +#: src/gui/settings.cpp:967 +msgid "Auto-fill file name when saving" +msgstr "" + +#: src/gui/settings.cpp:972 +msgid "" +"fill the file name field with an appropriate file name when saving or " +"exporting." +msgstr "" + +#: src/gui/settings.cpp:976 src/gui/gui.cpp:5563 src/gui/gui.cpp:5613 +msgid "New Song" +msgstr "" + +#: src/gui/settings.cpp:978 +msgid "Initial system:" +msgstr "" + +#: src/gui/settings.cpp:980 +msgid "Current system" +msgstr "" + +#: src/gui/settings.cpp:993 src/gui/waveEdit.cpp:1149 src/gui/gui.cpp:3046 +msgid "Randomize" +msgstr "" + +#: src/gui/settings.cpp:1043 +msgid "Reset to defaults" +msgstr "" + +#: src/gui/settings.cpp:1178 +msgid "When creating new song:" +msgstr "" + +#: src/gui/settings.cpp:1180 +msgid "Display system preset selector##NSB0" +msgstr "" + +#: src/gui/settings.cpp:1184 +msgid "Start with initial system##NSB1" +msgstr "" + +#: src/gui/settings.cpp:1188 +msgid "Default author name" +msgstr "" + +#: src/gui/settings.cpp:1192 +msgid "Start-up" +msgstr "" + +#: src/gui/settings.cpp:1193 +msgid "Play intro on start-up:" +msgstr "" + +#: src/gui/settings.cpp:1195 +msgid "No##pis0" +msgstr "" + +#: src/gui/settings.cpp:1199 +msgid "Short##pis1" +msgstr "" + +#: src/gui/settings.cpp:1203 +msgid "Full (short when loading song)##pis2" +msgstr "" + +#: src/gui/settings.cpp:1207 +msgid "Full (always)##pis3" +msgstr "" + +#: src/gui/settings.cpp:1214 +msgid "Disable fade-in during start-up" +msgstr "" + +#: src/gui/settings.cpp:1220 +msgid "About screen party time" +msgstr "" + +#: src/gui/settings.cpp:1225 +msgid "Warning: may cause epileptic seizures." +msgstr "" + +#: src/gui/settings.cpp:1229 +msgid "Behavior" +msgstr "" + +#: src/gui/settings.cpp:1231 +msgid "New instruments are blank" +msgstr "" + +#: src/gui/settings.cpp:1237 src/gui/settings.cpp:4255 +msgid "Configuration" +msgstr "" + +#: src/gui/settings.cpp:1246 +msgid "Factory Reset" +msgstr "" + +#: src/gui/settings.cpp:1247 +msgid "" +"Are you sure you want to reset all Furnace settings?\n" +"You must restart Furnace after doing so." +msgstr "" + +#: src/gui/settings.cpp:1255 +msgid "Output" +msgstr "" + +#: src/gui/settings.cpp:1263 +msgid "Backend" +msgstr "" + +#: src/gui/settings.cpp:1296 +msgid "Driver" +msgstr "" + +#: src/gui/settings.cpp:1319 +msgid "Device" +msgstr "" + +#: src/gui/settings.cpp:1323 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:1324 +msgid "ALERT - TRESPASSER DETECTED" +msgstr "" + +#: src/gui/settings.cpp:1326 +msgid "you have been arrested for trying to engage with a disabled combo box." +msgstr "" + +#: src/gui/settings.cpp:1333 src/gui/settings.cpp:1335 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:1371 src/gui/insEdit.cpp:7186 +msgid "Outputs" +msgstr "" + +#: src/gui/settings.cpp:1379 +msgid "" +"common values:\n" +"- 1 for mono\n" +"- 2 for stereo\n" +"- 4 for quadraphonic\n" +"- 6 for 5.1 surround\n" +"- 8 for 7.1 surround" +msgstr "" + +#: src/gui/settings.cpp:1387 +#, c-format +msgid "%d (latency: ~%.1fms)" +msgstr "" + +#: src/gui/settings.cpp:1402 +msgid "Multi-threaded (EXPERIMENTAL)" +msgstr "" + +#: src/gui/settings.cpp:1411 +msgid "" +"runs chip emulation on separate threads.\n" +"may increase performance when using heavy emulation cores.\n" +"\n" +"warnings:\n" +"- experimental!\n" +"- only useful on multi-chip songs." +msgstr "" + +#: src/gui/settings.cpp:1416 +msgid "Number of threads" +msgstr "" + +#: src/gui/settings.cpp:1423 +msgid "that's the limit!" +msgstr "" + +#: src/gui/settings.cpp:1427 +#, c-format +msgid "" +"it is a VERY bad idea to set this number higher than your CPU core count " +"(%d)!" +msgstr "" + +#: src/gui/settings.cpp:1435 +msgid "Low-latency mode" +msgstr "" + +#: src/gui/settings.cpp:1440 +msgid "" +"reduces latency by running the engine faster than the tick rate.\n" +"useful for live playback/jam mode.\n" +"\n" +"warning: only enable if your buffer size is small (10ms or less)." +msgstr "" + +#: src/gui/settings.cpp:1444 +msgid "Force mono audio" +msgstr "" + +#: src/gui/settings.cpp:1452 +msgid "Exclusive mode" +msgstr "" + +#: src/gui/settings.cpp:1463 +#, c-format +msgid "want: %d samples @ %.0fHz (%d channel)" +msgid_plural "want: %d samples @ %.0fHz (%d channels)" +msgstr[0] "" +msgstr[1] "" + +#: src/gui/settings.cpp:1464 +#, c-format +msgid "got: %d samples @ %.0fHz (%d channel)" +msgid_plural "got: %d samples @ %.0fHz (%d channels)" +msgstr[0] "" +msgstr[1] "" + +#: src/gui/settings.cpp:1471 +msgid "Mixing" +msgstr "" + +#: src/gui/settings.cpp:1473 src/gui/settings.cpp:2082 +msgid "Quality" +msgstr "" + +#: src/gui/settings.cpp:1478 +msgid "Software clipping" +msgstr "" + +#: src/gui/settings.cpp:1484 +msgid "DC offset correction" +msgstr "" + +#: src/gui/settings.cpp:1502 src/gui/guiConst.cpp:740 +msgid "Sample preview" +msgstr "" + +#: src/gui/settings.cpp:1515 +msgid "MIDI" +msgstr "" + +#: src/gui/settings.cpp:1517 src/gui/settings.cpp:1519 +msgid "MIDI input" +msgstr "" + +#: src/gui/settings.cpp:1521 src/gui/settings.cpp:1524 +#: src/gui/settings.cpp:1815 src/gui/settings.cpp:1817 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:1540 +msgid "Re-scan MIDI devices" +msgstr "" + +#: src/gui/settings.cpp:1551 src/gui/settings.cpp:2258 +msgid "Note input" +msgstr "" + +#: src/gui/settings.cpp:1552 +msgid "Velocity input" +msgstr "" + +#: src/gui/settings.cpp:1556 +msgid "Map MIDI channels to direct channels" +msgstr "" + +#: src/gui/settings.cpp:1562 +msgid "Program change pass-through" +msgstr "" + +#: src/gui/settings.cpp:1567 +msgid "Map Yamaha FM voice data to instruments" +msgstr "" + +#: src/gui/settings.cpp:1569 +msgid "Program change is instrument selection" +msgstr "" + +#: src/gui/settings.cpp:1573 +msgid "Value input style" +msgstr "" + +#: src/gui/settings.cpp:1576 src/gui/settings.cpp:1601 +msgid "Control##valueCCS" +msgstr "" + +#: src/gui/settings.cpp:1582 src/gui/settings.cpp:1607 +msgid "CC of upper nibble##valueCC1" +msgstr "" + +#: src/gui/settings.cpp:1582 src/gui/settings.cpp:1607 +msgid "MSB CC##valueCC1" +msgstr "" + +#: src/gui/settings.cpp:1587 src/gui/settings.cpp:1612 +msgid "CC of lower nibble##valueCC2" +msgstr "" + +#: src/gui/settings.cpp:1587 src/gui/settings.cpp:1612 +msgid "LSB CC##valueCC2" +msgstr "" + +#: src/gui/settings.cpp:1594 +msgid "Per-column control change" +msgstr "" + +#: src/gui/settings.cpp:1624 src/gui/settings.cpp:1634 +msgid "Volume curve" +msgstr "" + +#: src/gui/settings.cpp:1637 +msgid "Actions:" +msgstr "" + +#: src/gui/settings.cpp:1651 +msgid "" +"(learning! press a button or move a slider/knob/something on your device.)" +msgstr "" + +#: src/gui/settings.cpp:1665 src/gui/settings.cpp:2277 +#: src/gui/settings.cpp:6687 src/gui/sampleEdit.cpp:501 +#: src/gui/insEdit.cpp:5321 +msgid "Type" +msgstr "" + +#: src/gui/settings.cpp:1669 +msgid "Note/Control" +msgstr "" + +#: src/gui/settings.cpp:1671 +msgid "Velocity/Value" +msgstr "" + +#: src/gui/settings.cpp:1673 +msgid "Action" +msgstr "" + +#: src/gui/settings.cpp:1765 src/gui/settings.cpp:1766 +msgid "--none--" +msgstr "" + +#: src/gui/settings.cpp:1787 +msgid "waiting...##BLearn" +msgstr "" + +#: src/gui/settings.cpp:1787 +msgid "Learn##BLearn" +msgstr "" + +#: src/gui/settings.cpp:1811 src/gui/settings.cpp:1813 +msgid "MIDI output" +msgstr "" + +#: src/gui/settings.cpp:1830 +msgid "Output mode:" +msgstr "" + +#: src/gui/settings.cpp:1832 +msgid "Off (use for TX81Z)" +msgstr "" + +#: src/gui/settings.cpp:1836 +msgid "Melodic" +msgstr "" + +#: src/gui/settings.cpp:1847 +msgid "Send Program Change" +msgstr "" + +#: src/gui/settings.cpp:1853 +msgid "Send MIDI clock" +msgstr "" + +#: src/gui/settings.cpp:1859 +msgid "Send MIDI timecode" +msgstr "" + +#: src/gui/settings.cpp:1865 +msgid "Timecode frame rate:" +msgstr "" + +#: src/gui/settings.cpp:1867 +msgid "Closest to Tick Rate" +msgstr "" + +#: src/gui/settings.cpp:1871 +msgid "Film (24fps)" +msgstr "" + +#: src/gui/settings.cpp:1875 +msgid "PAL (25fps)" +msgstr "" + +#: src/gui/settings.cpp:1879 +msgid "NTSC drop (29.97fps)" +msgstr "" + +#: src/gui/settings.cpp:1883 +msgid "NTSC non-drop (30fps)" +msgstr "" + +#: src/gui/settings.cpp:1892 +msgid "Emulation" +msgstr "" + +#: src/gui/settings.cpp:1894 +msgid "Cores" +msgstr "" + +#: src/gui/settings.cpp:1903 +msgid "Playback Core(s)" +msgstr "" + +#: src/gui/settings.cpp:1905 src/gui/settings.cpp:2093 +msgid "used for playback" +msgstr "" + +#: src/gui/settings.cpp:1908 +msgid "Render Core(s)" +msgstr "" + +#: src/gui/settings.cpp:1910 src/gui/settings.cpp:2098 +msgid "used in audio export" +msgstr "" + +#: src/gui/settings.cpp:2091 +msgid "Playback" +msgstr "" + +#: src/gui/settings.cpp:2096 +msgid "Render" +msgstr "" + +#: src/gui/settings.cpp:2120 +msgid "PC Speaker strategy" +msgstr "" + +#: src/gui/settings.cpp:2158 src/gui/settings.cpp:2160 +msgid "Keyboard" +msgstr "" + +#: src/gui/settings.cpp:2169 src/gui/settings.cpp:3804 +msgid "Reset defaults" +msgstr "" + +#: src/gui/settings.cpp:2170 +msgid "Are you sure you want to reset the keyboard settings?" +msgstr "" + +#: src/gui/settings.cpp:2172 +msgid "Global hotkeys" +msgstr "" + +#: src/gui/settings.cpp:2209 +msgid "Window activation" +msgstr "" + +#: src/gui/settings.cpp:2275 +msgid "Key" +msgstr "" + +#: src/gui/settings.cpp:2279 src/gui/findReplace.cpp:725 +#: src/gui/findReplace.cpp:1003 +msgid "Value" +msgstr "" + +#: src/gui/settings.cpp:2289 +#, c-format +msgid "Macro release##SNType_%d" +msgstr "" + +#: src/gui/settings.cpp:2294 +#, c-format +msgid "Note release##SNType_%d" +msgstr "" + +#: src/gui/settings.cpp:2299 +#, c-format +msgid "Note off##SNType_%d" +msgstr "" + +#: src/gui/settings.cpp:2304 +#, c-format +msgid "Note##SNType_%d" +msgstr "" + +#: src/gui/settings.cpp:2328 +msgid "Add..." +msgstr "" + +#: src/gui/settings.cpp:2418 +msgid "Instrument list" +msgstr "" + +#: src/gui/settings.cpp:2438 +msgid "Wavetable list" +msgstr "" + +#: src/gui/settings.cpp:2459 +msgid "Sample list" +msgstr "" + +#: src/gui/settings.cpp:2509 +msgid "Sample editor" +msgstr "" + +#: src/gui/settings.cpp:2547 src/gui/settings.cpp:3814 +#: src/gui/settings.cpp:3844 +msgid "Interface" +msgstr "" + +#: src/gui/settings.cpp:2549 +msgid "Layout" +msgstr "" + +#: src/gui/settings.cpp:2551 +msgid "Workspace layout:" +msgstr "" + +#: src/gui/settings.cpp:2561 src/gui/gui.cpp:2920 +msgid "Reset" +msgstr "" + +#: src/gui/settings.cpp:2562 src/gui/gui.cpp:4455 +msgid "Are you sure you want to reset the workspace layout?" +msgstr "" + +#: src/gui/settings.cpp:2566 +msgid "Allow docking editors" +msgstr "" + +#: src/gui/settings.cpp:2573 +msgid "Remember window position" +msgstr "" + +#: src/gui/settings.cpp:2578 +msgid "remembers the window's last position on start-up." +msgstr "" + +#: src/gui/settings.cpp:2583 +msgid "Only allow window movement when clicking on title bar" +msgstr "" + +#: src/gui/settings.cpp:2590 +msgid "Center pop-up windows" +msgstr "" + +#: src/gui/settings.cpp:2595 +msgid "Play/edit controls layout:" +msgstr "" + +#: src/gui/settings.cpp:2597 +msgid "Classic##ecl0" +msgstr "" + +#: src/gui/settings.cpp:2601 +msgid "Compact##ecl1" +msgstr "" + +#: src/gui/settings.cpp:2605 +msgid "Compact (vertical)##ecl2" +msgstr "" + +#: src/gui/settings.cpp:2609 +msgid "Split##ecl3" +msgstr "" + +#: src/gui/settings.cpp:2615 +msgid "Position of buttons in Orders:" +msgstr "" + +#: src/gui/settings.cpp:2617 +msgid "Top##obp0" +msgstr "" + +#: src/gui/settings.cpp:2621 +msgid "Left##obp1" +msgstr "" + +#: src/gui/settings.cpp:2625 +msgid "Right##obp2" +msgstr "" + +#: src/gui/settings.cpp:2632 +msgid "Mouse" +msgstr "" + +#: src/gui/settings.cpp:2634 +msgid "Double-click time (seconds)" +msgstr "" + +#: src/gui/settings.cpp:2643 +msgid "Don't raise pattern editor on click" +msgstr "" + +#: src/gui/settings.cpp:2649 +msgid "Focus pattern editor when selecting instrument" +msgstr "" + +#: src/gui/settings.cpp:2654 +msgid "Note preview behavior:" +msgstr "" + +#: src/gui/settings.cpp:2656 +msgid "Never##npb0" +msgstr "" + +#: src/gui/settings.cpp:2660 +msgid "When cursor is in Note column##npb1" +msgstr "" + +#: src/gui/settings.cpp:2664 +msgid "When cursor is in Note column or not in edit mode##npb2" +msgstr "" + +#: src/gui/settings.cpp:2668 +msgid "Always##npb3" +msgstr "" + +#: src/gui/settings.cpp:2674 +msgid "Allow dragging selection:" +msgstr "" + +#: src/gui/settings.cpp:2676 +msgid "No##dms0" +msgstr "" + +#: src/gui/settings.cpp:2680 +msgid "Yes##dms1" +msgstr "" + +#: src/gui/settings.cpp:2684 +msgid "Yes (while holding Ctrl only)##dms2" +msgstr "" + +#: src/gui/settings.cpp:2690 +msgid "Toggle channel solo on:" +msgstr "" + +#: src/gui/settings.cpp:2692 +msgid "Right-click or double-click##soloA" +msgstr "" + +#: src/gui/settings.cpp:2696 +msgid "Right-click##soloR" +msgstr "" + +#: src/gui/settings.cpp:2700 +msgid "Double-click##soloD" +msgstr "" + +#: src/gui/settings.cpp:2707 +msgid "Double click selects entire column" +msgstr "" + +#: src/gui/settings.cpp:2713 +msgid "Cursor behavior" +msgstr "" + +#: src/gui/settings.cpp:2715 +msgid "Insert pushes entire channel row" +msgstr "" + +#: src/gui/settings.cpp:2721 +msgid "Pull delete affects entire channel row" +msgstr "" + +#: src/gui/settings.cpp:2727 +msgid "Push value when overwriting instead of clearing it" +msgstr "" + +#: src/gui/settings.cpp:2733 +msgid "Keyboard note/value input repeat (hold key to input continuously)" +msgstr "" + +#: src/gui/settings.cpp:2738 +msgid "Effect input behavior:" +msgstr "" + +#: src/gui/settings.cpp:2740 +msgid "Move down##eicb0" +msgstr "" + +#: src/gui/settings.cpp:2744 +msgid "Move to effect value (otherwise move down)##eicb1" +msgstr "" + +#: src/gui/settings.cpp:2748 +msgid "Move to effect value/next effect and wrap around##eicb2" +msgstr "" + +#: src/gui/settings.cpp:2755 +msgid "Delete effect value when deleting effect" +msgstr "" + +#: src/gui/settings.cpp:2761 +msgid "Change current instrument when changing instrument column (absorb)" +msgstr "" + +#: src/gui/settings.cpp:2767 +msgid "Remove instrument value when inserting note off/release" +msgstr "" + +#: src/gui/settings.cpp:2773 +msgid "Remove volume value when inserting note off/release" +msgstr "" + +#: src/gui/settings.cpp:2779 +msgid "Cursor movement" +msgstr "" + +#: src/gui/settings.cpp:2781 +msgid "Wrap horizontally:" +msgstr "" + +#: src/gui/settings.cpp:2783 +msgid "No##wrapH0" +msgstr "" + +#: src/gui/settings.cpp:2787 +msgid "Yes##wrapH1" +msgstr "" + +#: src/gui/settings.cpp:2791 +msgid "Yes, and move to next/prev row##wrapH2" +msgstr "" + +#: src/gui/settings.cpp:2797 +msgid "Wrap vertically:" +msgstr "" + +#: src/gui/settings.cpp:2799 +msgid "No##wrapV0" +msgstr "" + +#: src/gui/settings.cpp:2803 +msgid "Yes##wrapV1" +msgstr "" + +#: src/gui/settings.cpp:2807 +msgid "Yes, and move to next/prev pattern##wrapV2" +msgstr "" + +#: src/gui/settings.cpp:2811 +msgid "Yes, and move to next/prev pattern (wrap around)##wrapV2" +msgstr "" + +#: src/gui/settings.cpp:2817 +msgid "Cursor movement keys behavior:" +msgstr "" + +#: src/gui/settings.cpp:2819 +msgid "Move by one##cmk0" +msgstr "" + +#: src/gui/settings.cpp:2823 +msgid "Move by Edit Step##cmk1" +msgstr "" + +#: src/gui/settings.cpp:2830 +msgid "Move cursor by edit step on delete" +msgstr "" + +#: src/gui/settings.cpp:2836 +msgid "Move cursor by edit step on insert (push)" +msgstr "" + +#: src/gui/settings.cpp:2842 +msgid "Move cursor up on backspace-delete" +msgstr "" + +#: src/gui/settings.cpp:2848 +msgid "Move cursor to end of clipboard content when pasting" +msgstr "" + +#: src/gui/settings.cpp:2854 +msgid "Scrolling" +msgstr "" + +#: src/gui/settings.cpp:2856 +msgid "Change order when scrolling outside of pattern bounds:" +msgstr "" + +#: src/gui/settings.cpp:2858 +msgid "No##pscroll0" +msgstr "" + +#: src/gui/settings.cpp:2862 +msgid "Yes##pscroll1" +msgstr "" + +#: src/gui/settings.cpp:2866 +msgid "Yes, and wrap around song##pscroll2" +msgstr "" + +#: src/gui/settings.cpp:2873 +msgid "Cursor follows current order when moving it" +msgstr "" + +#: src/gui/settings.cpp:2878 +msgid "applies when playback is stopped." +msgstr "" + +#: src/gui/settings.cpp:2882 +msgid "Don't scroll when moving cursor" +msgstr "" + +#: src/gui/settings.cpp:2887 +msgid "Move cursor with scroll wheel:" +msgstr "" + +#: src/gui/settings.cpp:2889 +msgid "No##csw0" +msgstr "" + +#: src/gui/settings.cpp:2893 +msgid "Yes##csw1" +msgstr "" + +#: src/gui/settings.cpp:2897 +msgid "Inverted##csw2" +msgstr "" + +#: src/gui/settings.cpp:2904 +msgid "How many steps to move with each scroll wheel step?" +msgstr "" + +#: src/gui/settings.cpp:2905 +msgid "One##cws0" +msgstr "" + +#: src/gui/settings.cpp:2909 +msgid "Edit Step##cws1" +msgstr "" + +#: src/gui/settings.cpp:2916 src/gui/settings.cpp:3531 +msgid "Assets" +msgstr "" + +#: src/gui/settings.cpp:2919 +msgid "Display instrument type menu when adding instrument" +msgstr "" + +#: src/gui/settings.cpp:2925 +msgid "Select asset after opening one" +msgstr "" + +#: src/gui/settings.cpp:2932 +msgid "Appearance" +msgstr "" + +#: src/gui/settings.cpp:2934 +msgid "Scaling" +msgstr "" + +#: src/gui/settings.cpp:2936 +msgid "Automatic UI scaling factor" +msgstr "" + +#: src/gui/settings.cpp:2945 +msgid "UI scaling factor" +msgstr "" + +#: src/gui/settings.cpp:2952 +msgid "Icon size" +msgstr "" + +#: src/gui/settings.cpp:2967 +msgid "Font renderer" +msgstr "" + +#: src/gui/settings.cpp:2977 +msgid "Main font" +msgstr "" + +#: src/gui/settings.cpp:2988 +msgid "Size##MainFontSize" +msgstr "" + +#: src/gui/settings.cpp:2996 +msgid "Header font" +msgstr "" + +#: src/gui/settings.cpp:3007 +msgid "Size##HeadFontSize" +msgstr "" + +#: src/gui/settings.cpp:3015 +msgid "Pattern font" +msgstr "" + +#: src/gui/settings.cpp:3026 +msgid "Size##PatFontSize" +msgstr "" + +#: src/gui/settings.cpp:3036 +msgid "Anti-aliased fonts" +msgstr "" + +#: src/gui/settings.cpp:3042 +msgid "Support bitmap fonts" +msgstr "" + +#: src/gui/settings.cpp:3047 +msgid "Hinting:" +msgstr "" + +#: src/gui/settings.cpp:3049 +msgid "Off (soft)##fh0" +msgstr "" + +#: src/gui/settings.cpp:3053 +msgid "Slight##fh1" +msgstr "" + +#: src/gui/settings.cpp:3057 +msgid "Normal##fh2" +msgstr "" + +#: src/gui/settings.cpp:3061 +msgid "Full (hard)##fh3" +msgstr "" + +#: src/gui/settings.cpp:3067 +msgid "Auto-hinter:" +msgstr "" + +#: src/gui/settings.cpp:3069 +msgid "Disable##fah0" +msgstr "" + +#: src/gui/settings.cpp:3073 +msgid "Enable##fah1" +msgstr "" + +#: src/gui/settings.cpp:3077 +msgid "Force##fah2" +msgstr "" + +#: src/gui/settings.cpp:3084 +msgid "Oversample" +msgstr "" + +#: src/gui/settings.cpp:3087 +msgid "1×##fos1" +msgstr "" + +#: src/gui/settings.cpp:3092 +msgid "" +"saves video memory. reduces font rendering quality.\n" +"use for pixel/bitmap fonts." +msgstr "" + +#: src/gui/settings.cpp:3095 +msgid "2×##fos2" +msgstr "" + +#: src/gui/settings.cpp:3100 +msgid "default." +msgstr "" + +#: src/gui/settings.cpp:3103 +msgid "3×##fos3" +msgstr "" + +#: src/gui/settings.cpp:3108 +msgid "" +"slightly better font rendering quality.\n" +"uses more video memory." +msgstr "" + +#: src/gui/settings.cpp:3112 +msgid "Load fallback font" +msgstr "" + +#: src/gui/settings.cpp:3117 +msgid "disable to save video memory." +msgstr "" + +#: src/gui/settings.cpp:3121 +msgid "Display Japanese characters" +msgstr "" + +#: src/gui/settings.cpp:3127 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"このオプションは、十分なグラフィックメモリがある場合にのみ切り替えてくださ" +"い。\n" +"これは、Dear ImGuiにダイナミックフォントアトラスが実装されるまでの一時的な解" +"決策です。" +msgstr "" + +#: src/gui/settings.cpp:3135 +msgid "Display Chinese (Simplified) characters" +msgstr "" + +#: src/gui/settings.cpp:3141 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"请在确保你有足够的显存后再启动此设定\n" +"这是一个在ImGui实现动态字体加载之前的临时解决方案" +msgstr "" + +#: src/gui/settings.cpp:3149 +msgid "Display Chinese (Traditional) characters" +msgstr "" + +#: src/gui/settings.cpp:3155 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"請在確保你有足夠的顯存后再啟動此設定\n" +"這是一個在ImGui實現動態字體加載之前的臨時解決方案" +msgstr "" + +#: src/gui/settings.cpp:3163 +msgid "Display Korean characters" +msgstr "" + +#: src/gui/settings.cpp:3169 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"그래픽 메모리가 충분한 경우에만 이 옵션을 선택하십시오.\n" +"이 옵션은 Dear ImGui에 동적 글꼴 아틀라스가 구현될 때까지 임시 솔루션입니다." +msgstr "" + +#: src/gui/settings.cpp:3178 +msgid "Title bar:" +msgstr "" + +#: src/gui/settings.cpp:3180 +msgid "Furnace##tbar0" +msgstr "" + +#: src/gui/settings.cpp:3185 +msgid "Song Name - Furnace##tbar1" +msgstr "" + +#: src/gui/settings.cpp:3190 +msgid "file_name.fur - Furnace##tbar2" +msgstr "" + +#: src/gui/settings.cpp:3195 +msgid "/path/to/file.fur - Furnace##tbar3" +msgstr "" + +#: src/gui/settings.cpp:3203 +msgid "Display system name on title bar" +msgstr "" + +#: src/gui/settings.cpp:3210 +msgid "Display chip names instead of \"multi-system\" in title bar" +msgstr "" + +#: src/gui/settings.cpp:3216 +msgid "Status bar:" +msgstr "" + +#: src/gui/settings.cpp:3218 +msgid "Cursor details##sbar0" +msgstr "" + +#: src/gui/settings.cpp:3222 +msgid "File path##sbar1" +msgstr "" + +#: src/gui/settings.cpp:3226 +msgid "Cursor details or file path##sbar2" +msgstr "" + +#: src/gui/settings.cpp:3230 +msgid "Nothing##sbar3" +msgstr "" + +#: src/gui/settings.cpp:3237 +msgid "Display playback status when playing" +msgstr "" + +#: src/gui/settings.cpp:3242 +msgid "Export options layout:" +msgstr "" + +#: src/gui/settings.cpp:3244 +msgid "Sub-menus in File menu##eol0" +msgstr "" + +#: src/gui/settings.cpp:3248 +msgid "Modal window with tabs##eol1" +msgstr "" + +#: src/gui/settings.cpp:3252 +msgid "Modal windows with options in File menu##eol2" +msgstr "" + +#: src/gui/settings.cpp:3259 +msgid "Capitalize menu bar" +msgstr "" + +#: src/gui/settings.cpp:3265 +msgid "Display add/configure/change/remove chip menus in File menu" +msgstr "" + +#: src/gui/settings.cpp:3279 +msgid "Highlight channel at cursor in Orders" +msgstr "" + +#: src/gui/settings.cpp:3284 +msgid "Orders row number format:" +msgstr "" + +#: src/gui/settings.cpp:3286 +msgid "Decimal##orbD" +msgstr "" + +#: src/gui/settings.cpp:3290 +msgid "Hexadecimal##orbH" +msgstr "" + +#: src/gui/settings.cpp:3299 +msgid "Center pattern view" +msgstr "" + +#: src/gui/settings.cpp:3305 +msgid "Overflow pattern highlights" +msgstr "" + +#: src/gui/settings.cpp:3311 +msgid "Display previous/next pattern" +msgstr "" + +#: src/gui/settings.cpp:3316 +msgid "Pattern row number format:" +msgstr "" + +#: src/gui/settings.cpp:3318 +msgid "Decimal##prbD" +msgstr "" + +#: src/gui/settings.cpp:3322 +msgid "Hexadecimal##prbH" +msgstr "" + +#: src/gui/settings.cpp:3328 +msgid "Pattern view labels:" +msgstr "" + +#: src/gui/settings.cpp:3333 +msgid "Note off (3-char)" +msgstr "" + +#: src/gui/settings.cpp:3338 +msgid "Note release (3-char)" +msgstr "" + +#: src/gui/settings.cpp:3343 +msgid "Macro release (3-char)" +msgstr "" + +#: src/gui/settings.cpp:3348 +msgid "Empty field (3-char)" +msgstr "" + +#: src/gui/settings.cpp:3353 +msgid "Empty field (2-char)" +msgstr "" + +#: src/gui/settings.cpp:3355 +msgid "Pattern view spacing after:" +msgstr "" + +#: src/gui/settings.cpp:3357 src/gui/settings.cpp:4115 +#: src/gui/findReplace.cpp:601 src/gui/findReplace.cpp:864 +#: src/gui/sampleEdit.cpp:590 +msgid "Note" +msgstr "" + +#: src/gui/settings.cpp:3375 src/gui/findReplace.cpp:707 +#: src/gui/findReplace.cpp:974 +msgid "Effect" +msgstr "" + +#: src/gui/settings.cpp:3381 +msgid "Effect value" +msgstr "" + +#: src/gui/settings.cpp:3388 +msgid "Single-digit effects for 00-0F" +msgstr "" + +#: src/gui/settings.cpp:3394 +msgid "Use flats instead of sharps" +msgstr "" + +#: src/gui/settings.cpp:3400 +msgid "Use German notation" +msgstr "" + +#: src/gui/settings.cpp:3408 +msgid "Channel style:" +msgstr "" + +#: src/gui/settings.cpp:3410 +msgid "Classic##CHS0" +msgstr "" + +#: src/gui/settings.cpp:3414 +msgid "Line##CHS1" +msgstr "" + +#: src/gui/settings.cpp:3418 +msgid "Round##CHS2" +msgstr "" + +#: src/gui/settings.cpp:3422 +msgid "Split button##CHS3" +msgstr "" + +#: src/gui/settings.cpp:3426 +msgid "Square border##CH42" +msgstr "" + +#: src/gui/settings.cpp:3430 +msgid "Round border##CHS5" +msgstr "" + +#: src/gui/settings.cpp:3436 +msgid "Channel volume bar:" +msgstr "" + +#: src/gui/settings.cpp:3438 +msgid "None##CHV0" +msgstr "" + +#: src/gui/settings.cpp:3442 +msgid "Simple##CHV1" +msgstr "" + +#: src/gui/settings.cpp:3446 +msgid "Stereo##CHV2" +msgstr "" + +#: src/gui/settings.cpp:3450 +msgid "Real##CHV3" +msgstr "" + +#: src/gui/settings.cpp:3454 +msgid "Real (stereo)##CHV4" +msgstr "" + +#: src/gui/settings.cpp:3460 +msgid "Channel feedback style:" +msgstr "" + +#: src/gui/settings.cpp:3462 +msgid "Off##CHF0" +msgstr "" + +#: src/gui/settings.cpp:3466 +msgid "Note##CHF1" +msgstr "" + +#: src/gui/settings.cpp:3470 +msgid "Volume##CHF2" +msgstr "" + +#: src/gui/settings.cpp:3474 +msgid "Active##CHF3" +msgstr "" + +#: src/gui/settings.cpp:3480 +msgid "Channel font:" +msgstr "" + +#: src/gui/settings.cpp:3482 +msgid "Regular##CHFont0" +msgstr "" + +#: src/gui/settings.cpp:3486 +msgid "Monospace##CHFont1" +msgstr "" + +#: src/gui/settings.cpp:3493 +msgid "Center channel name" +msgstr "" + +#: src/gui/settings.cpp:3498 +msgid "Channel colors:" +msgstr "" + +#: src/gui/settings.cpp:3500 +msgid "Single##CHC0" +msgstr "" + +#: src/gui/settings.cpp:3504 +msgid "Channel type##CHC1" +msgstr "" + +#: src/gui/settings.cpp:3508 +msgid "Instrument type##CHC2" +msgstr "" + +#: src/gui/settings.cpp:3514 +msgid "Channel name colors:" +msgstr "" + +#: src/gui/settings.cpp:3516 +msgid "Single##CTC0" +msgstr "" + +#: src/gui/settings.cpp:3520 +msgid "Channel type##CTC1" +msgstr "" + +#: src/gui/settings.cpp:3524 +msgid "Instrument type##CTC2" +msgstr "" + +#: src/gui/settings.cpp:3533 +msgid "Unified instrument/wavetable/sample list" +msgstr "" + +#: src/gui/settings.cpp:3543 +msgid "Horizontal instrument list" +msgstr "" + +#: src/gui/settings.cpp:3549 +msgid "Instrument list icon style:" +msgstr "" + +#: src/gui/settings.cpp:3551 +msgid "None##iis0" +msgstr "" + +#: src/gui/settings.cpp:3555 +msgid "Graphical icons##iis1" +msgstr "" + +#: src/gui/settings.cpp:3559 +msgid "Letter icons##iis2" +msgstr "" + +#: src/gui/settings.cpp:3566 +msgid "Colorize instrument editor using instrument type" +msgstr "" + +#: src/gui/settings.cpp:3572 src/gui/settings.cpp:4014 +msgid "Macro Editor" +msgstr "" + +#: src/gui/settings.cpp:3573 +msgid "Macro editor layout:" +msgstr "" + +#: src/gui/settings.cpp:3575 +msgid "Unified##mel0" +msgstr "" + +#: src/gui/settings.cpp:3585 +msgid "Grid##mel2" +msgstr "" + +#: src/gui/settings.cpp:3589 +msgid "Single (with list)##mel3" +msgstr "" + +#: src/gui/settings.cpp:3602 +msgid "Use classic macro editor vertical slider" +msgstr "" + +#: src/gui/settings.cpp:3608 +msgid "Wave Editor" +msgstr "" + +#: src/gui/settings.cpp:3610 +msgid "Use compact wave editor" +msgstr "" + +#: src/gui/settings.cpp:3616 src/gui/settings.cpp:3991 +msgid "FM Editor" +msgstr "" + +#: src/gui/settings.cpp:3617 +msgid "FM parameter names:" +msgstr "" + +#: src/gui/settings.cpp:3619 +msgid "Friendly##fmn0" +msgstr "" + +#: src/gui/settings.cpp:3623 +msgid "Technical##fmn1" +msgstr "" + +#: src/gui/settings.cpp:3627 +msgid "Technical (alternate)##fmn2" +msgstr "" + +#: src/gui/settings.cpp:3634 +msgid "Use standard OPL waveform names" +msgstr "" + +#: src/gui/settings.cpp:3639 +msgid "FM parameter editor layout:" +msgstr "" + +#: src/gui/settings.cpp:3641 +msgid "Modern##fml0" +msgstr "" + +#: src/gui/settings.cpp:3645 +msgid "Compact (2x2, classic)##fml1" +msgstr "" + +#: src/gui/settings.cpp:3649 +msgid "Compact (1x4)##fml2" +msgstr "" + +#: src/gui/settings.cpp:3653 +msgid "Compact (4x1)##fml3" +msgstr "" + +#: src/gui/settings.cpp:3657 +msgid "Alternate (2x2)##fml4" +msgstr "" + +#: src/gui/settings.cpp:3661 +msgid "Alternate (1x4)##fml5" +msgstr "" + +#: src/gui/settings.cpp:3665 +msgid "Alternate (4x1)##fml5" +msgstr "" + +#: src/gui/settings.cpp:3671 +msgid "Position of Sustain in FM editor:" +msgstr "" + +#: src/gui/settings.cpp:3673 +msgid "Between Decay and Sustain Rate##susp0" +msgstr "" + +#: src/gui/settings.cpp:3677 +msgid "After Release Rate##susp1" +msgstr "" + +#: src/gui/settings.cpp:3684 +msgid "Use separate colors for carriers/modulators in FM editor" +msgstr "" + +#: src/gui/settings.cpp:3690 +msgid "Unsigned FM detune values" +msgstr "" + +#: src/gui/settings.cpp:3697 +msgid "Chip memory usage unit:" +msgstr "" + +#: src/gui/settings.cpp:3699 +msgid "Bytes##MUU0" +msgstr "" + +#: src/gui/settings.cpp:3703 +msgid "Kilobytes##MUU1" +msgstr "" + +#: src/gui/settings.cpp:3712 +msgid "Rounded corners" +msgstr "" + +#: src/gui/settings.cpp:3718 src/gui/settings.cpp:3896 +#: src/gui/settings.cpp:3938 +msgid "Border" +msgstr "" + +#: src/gui/settings.cpp:3730 +msgid "Anti-aliased" +msgstr "" + +#: src/gui/settings.cpp:3736 +msgid "Fill entire window" +msgstr "" + +#: src/gui/settings.cpp:3742 +msgid "Waveform goes out of bounds" +msgstr "" + +#: src/gui/settings.cpp:3754 +msgid "Windows" +msgstr "" + +#: src/gui/settings.cpp:3756 +msgid "Rounded window corners" +msgstr "" + +#: src/gui/settings.cpp:3762 +msgid "Rounded buttons" +msgstr "" + +#: src/gui/settings.cpp:3768 +msgid "Rounded menu corners" +msgstr "" + +#: src/gui/settings.cpp:3774 +msgid "Rounded tabs" +msgstr "" + +#: src/gui/settings.cpp:3780 +msgid "Rounded scrollbars" +msgstr "" + +#: src/gui/settings.cpp:3786 +msgid "Borders around widgets" +msgstr "" + +#: src/gui/settings.cpp:3795 +msgid "Color scheme" +msgstr "" + +#: src/gui/settings.cpp:3805 +msgid "Are you sure you want to reset the color scheme?" +msgstr "" + +#: src/gui/settings.cpp:3808 +msgid "Guru mode" +msgstr "" + +#: src/gui/settings.cpp:3815 src/gui/settings.cpp:3845 +msgid "Frame shading" +msgstr "" + +#: src/gui/settings.cpp:3821 +msgid "Color scheme type:" +msgstr "" + +#: src/gui/settings.cpp:3823 +msgid "Dark##gcb0" +msgstr "" + +#: src/gui/settings.cpp:3828 +msgid "Light##gcb1" +msgstr "" + +#: src/gui/settings.cpp:3835 +msgid "Accent colors:" +msgstr "" + +#: src/gui/settings.cpp:3837 +msgid "Primary" +msgstr "" + +#: src/gui/settings.cpp:3838 +msgid "Secondary" +msgstr "" + +#: src/gui/settings.cpp:3852 +msgid "Button" +msgstr "" + +#: src/gui/settings.cpp:3853 +msgid "Button (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3854 +msgid "Button (active)" +msgstr "" + +#: src/gui/settings.cpp:3855 +msgid "Tab" +msgstr "" + +#: src/gui/settings.cpp:3856 +msgid "Tab (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3857 +msgid "Tab (active)" +msgstr "" + +#: src/gui/settings.cpp:3858 +msgid "Tab (unfocused)" +msgstr "" + +#: src/gui/settings.cpp:3859 +msgid "Tab (unfocused and active)" +msgstr "" + +#: src/gui/settings.cpp:3860 +msgid "ImGui header" +msgstr "" + +#: src/gui/settings.cpp:3861 +msgid "ImGui header (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3862 +msgid "ImGui header (active)" +msgstr "" + +#: src/gui/settings.cpp:3863 +msgid "Resize grip" +msgstr "" + +#: src/gui/settings.cpp:3864 +msgid "Resize grip (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3865 +msgid "Resize grip (active)" +msgstr "" + +#: src/gui/settings.cpp:3866 +msgid "Widget background" +msgstr "" + +#: src/gui/settings.cpp:3867 +msgid "Widget background (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3868 +msgid "Widget background (active)" +msgstr "" + +#: src/gui/settings.cpp:3869 +msgid "Slider grab" +msgstr "" + +#: src/gui/settings.cpp:3870 +msgid "Slider grab (active)" +msgstr "" + +#: src/gui/settings.cpp:3871 +msgid "Title background (active)" +msgstr "" + +#: src/gui/settings.cpp:3872 +msgid "Checkbox/radio button mark" +msgstr "" + +#: src/gui/settings.cpp:3873 +msgid "Text selection" +msgstr "" + +#: src/gui/settings.cpp:3874 +msgid "Line plot" +msgstr "" + +#: src/gui/settings.cpp:3875 +msgid "Line plot (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3876 +msgid "Histogram plot" +msgstr "" + +#: src/gui/settings.cpp:3877 +msgid "Histogram plot (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3878 +msgid "Table row (even)" +msgstr "" + +#: src/gui/settings.cpp:3879 +msgid "Table row (odd)" +msgstr "" + +#: src/gui/settings.cpp:3884 +msgid "Interface (other)" +msgstr "" + +#: src/gui/settings.cpp:3886 +msgid "Window background" +msgstr "" + +#: src/gui/settings.cpp:3887 +msgid "Sub-window background" +msgstr "" + +#: src/gui/settings.cpp:3888 +msgid "Pop-up background" +msgstr "" + +#: src/gui/settings.cpp:3889 +msgid "Modal backdrop" +msgstr "" + +#: src/gui/settings.cpp:3890 +msgid "Header" +msgstr "" + +#: src/gui/settings.cpp:3892 +msgid "Text (disabled)" +msgstr "" + +#: src/gui/settings.cpp:3893 +msgid "Title bar (inactive)" +msgstr "" + +#: src/gui/settings.cpp:3894 +msgid "Title bar (collapsed)" +msgstr "" + +#: src/gui/settings.cpp:3895 +msgid "Menu bar" +msgstr "" + +#: src/gui/settings.cpp:3897 +msgid "Border shadow" +msgstr "" + +#: src/gui/settings.cpp:3898 +msgid "Scroll bar" +msgstr "" + +#: src/gui/settings.cpp:3899 +msgid "Scroll bar (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3900 +msgid "Scroll bar (clicked)" +msgstr "" + +#: src/gui/settings.cpp:3901 +msgid "Scroll bar background" +msgstr "" + +#: src/gui/settings.cpp:3902 +msgid "Separator" +msgstr "" + +#: src/gui/settings.cpp:3903 +msgid "Separator (hover)" +msgstr "" + +#: src/gui/settings.cpp:3904 +msgid "Separator (active)" +msgstr "" + +#: src/gui/settings.cpp:3905 +msgid "Docking preview" +msgstr "" + +#: src/gui/settings.cpp:3906 +msgid "Docking empty" +msgstr "" + +#: src/gui/settings.cpp:3907 +msgid "Table header" +msgstr "" + +#: src/gui/settings.cpp:3908 +msgid "Table border (hard)" +msgstr "" + +#: src/gui/settings.cpp:3909 +msgid "Table border (soft)" +msgstr "" + +#: src/gui/settings.cpp:3910 +msgid "Drag and drop target" +msgstr "" + +#: src/gui/settings.cpp:3911 +msgid "Window switcher (highlight)" +msgstr "" + +#: src/gui/settings.cpp:3912 +msgid "Window switcher backdrop" +msgstr "" + +#: src/gui/settings.cpp:3915 src/gui/settings.cpp:4136 src/gui/guiConst.cpp:235 +msgid "Miscellaneous" +msgstr "" + +#: src/gui/settings.cpp:3916 +msgid "Toggle on" +msgstr "" + +#: src/gui/settings.cpp:3917 +msgid "Toggle off" +msgstr "" + +#: src/gui/settings.cpp:3918 +msgid "Playback status" +msgstr "" + +#: src/gui/settings.cpp:3919 +msgid "Destructive hint" +msgstr "" + +#: src/gui/settings.cpp:3920 +msgid "Warning hint" +msgstr "" + +#: src/gui/settings.cpp:3921 +msgid "Error hint" +msgstr "" + +#: src/gui/settings.cpp:3924 +msgid "File Picker (built-in)" +msgstr "" + +#: src/gui/settings.cpp:3926 +msgid "Song (native)" +msgstr "" + +#: src/gui/settings.cpp:3927 +msgid "Song (import)" +msgstr "" + +#: src/gui/settings.cpp:3933 +msgid "Font" +msgstr "" + +#: src/gui/settings.cpp:3939 +msgid "Background (top-left)" +msgstr "" + +#: src/gui/settings.cpp:3940 +msgid "Background (top-right)" +msgstr "" + +#: src/gui/settings.cpp:3941 +msgid "Background (bottom-left)" +msgstr "" + +#: src/gui/settings.cpp:3942 +msgid "Background (bottom-right)" +msgstr "" + +#: src/gui/settings.cpp:3943 src/gui/settings.cpp:3998 +#: src/gui/settings.cpp:4166 src/gui/waveEdit.cpp:730 src/gui/insEdit.cpp:50 +#: src/gui/insEdit.cpp:4148 src/gui/insEdit.cpp:5812 src/gui/insEdit.cpp:6940 +#: src/gui/insEdit.cpp:6949 src/gui/insEdit.cpp:6963 src/gui/insEdit.cpp:6980 +#: src/gui/insEdit.cpp:6991 src/gui/insEdit.cpp:7004 src/gui/insEdit.cpp:7018 +#: src/gui/insEdit.cpp:7025 src/gui/insEdit.cpp:7035 src/gui/insEdit.cpp:7041 +#: src/gui/insEdit.cpp:7050 src/gui/insEdit.cpp:7074 src/gui/insEdit.cpp:7084 +#: src/gui/insEdit.cpp:7094 src/gui/insEdit.cpp:7101 src/gui/insEdit.cpp:7116 +#: src/gui/insEdit.cpp:7131 src/gui/insEdit.cpp:7151 src/gui/insEdit.cpp:7158 +#: src/gui/insEdit.cpp:7200 src/gui/insEdit.cpp:7211 src/gui/insEdit.cpp:7224 +#: src/gui/insEdit.cpp:7349 src/gui/insEdit.cpp:7425 src/gui/insEdit.cpp:7445 +#: src/gui/insEdit.cpp:7453 src/gui/insEdit.cpp:7473 +msgid "Waveform" +msgstr "" + +#: src/gui/settings.cpp:3944 +msgid "Waveform (clip)" +msgstr "" + +#: src/gui/settings.cpp:3945 +msgid "Reference" +msgstr "" + +#: src/gui/settings.cpp:3946 +msgid "Guide" +msgstr "" + +#: src/gui/settings.cpp:3948 +msgid "Wave (non-mono)" +msgstr "" + +#: src/gui/settings.cpp:3949 +msgid "Waveform (1)" +msgstr "" + +#: src/gui/settings.cpp:3950 +msgid "Waveform (2)" +msgstr "" + +#: src/gui/settings.cpp:3951 +msgid "Waveform (3)" +msgstr "" + +#: src/gui/settings.cpp:3952 +msgid "Waveform (4)" +msgstr "" + +#: src/gui/settings.cpp:3953 +msgid "Waveform (5)" +msgstr "" + +#: src/gui/settings.cpp:3954 +msgid "Waveform (6)" +msgstr "" + +#: src/gui/settings.cpp:3955 +msgid "Waveform (7)" +msgstr "" + +#: src/gui/settings.cpp:3956 +msgid "Waveform (8)" +msgstr "" + +#: src/gui/settings.cpp:3957 +msgid "Waveform (9)" +msgstr "" + +#: src/gui/settings.cpp:3958 +msgid "Waveform (10)" +msgstr "" + +#: src/gui/settings.cpp:3959 +msgid "Waveform (11)" +msgstr "" + +#: src/gui/settings.cpp:3960 +msgid "Waveform (12)" +msgstr "" + +#: src/gui/settings.cpp:3961 +msgid "Waveform (13)" +msgstr "" + +#: src/gui/settings.cpp:3962 +msgid "Waveform (14)" +msgstr "" + +#: src/gui/settings.cpp:3963 +msgid "Waveform (15)" +msgstr "" + +#: src/gui/settings.cpp:3964 +msgid "Waveform (16)" +msgstr "" + +#: src/gui/settings.cpp:3972 +msgid "Clip" +msgstr "" + +#: src/gui/settings.cpp:3976 +msgid "Order number" +msgstr "" + +#: src/gui/settings.cpp:3977 +msgid "Playing order background" +msgstr "" + +#: src/gui/settings.cpp:3978 +msgid "Song loop" +msgstr "" + +#: src/gui/settings.cpp:3979 +msgid "Selected order" +msgstr "" + +#: src/gui/settings.cpp:3980 +msgid "Similar patterns" +msgstr "" + +#: src/gui/settings.cpp:3981 +msgid "Inactive patterns" +msgstr "" + +#: src/gui/settings.cpp:3984 +msgid "Envelope View" +msgstr "" + +#: src/gui/settings.cpp:3985 src/gui/insEdit.cpp:540 src/gui/insEdit.cpp:3547 +#: src/gui/insEdit.cpp:3548 src/gui/insEdit.cpp:4081 src/gui/insEdit.cpp:4151 +#: src/gui/insEdit.cpp:4790 src/gui/insEdit.cpp:5861 src/gui/insEdit.cpp:5862 +#: src/gui/insEdit.cpp:6487 src/gui/insEdit.cpp:6488 src/gui/insEdit.cpp:6555 +#: src/gui/insEdit.cpp:6556 src/gui/insEdit.cpp:6995 src/gui/insEdit.cpp:7009 +#: src/gui/insEdit.cpp:7029 src/gui/insEdit.cpp:7166 +#, c-format +msgid "Envelope" +msgstr "" + +#: src/gui/settings.cpp:3986 +msgid "Sustain guide" +msgstr "" + +#: src/gui/settings.cpp:3992 +msgid "Algorithm background" +msgstr "" + +#: src/gui/settings.cpp:3993 +msgid "Algorithm lines" +msgstr "" + +#: src/gui/settings.cpp:3994 +msgid "Modulator" +msgstr "" + +#: src/gui/settings.cpp:3995 +msgid "Carrier" +msgstr "" + +#: src/gui/settings.cpp:3997 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:4146 +msgid "SSG-EG" +msgstr "" + +#: src/gui/settings.cpp:4000 +msgid "" +"(the following colors only apply when \"Use separate colors for carriers/" +"modulators in FM editor\" is on!)" +msgstr "" + +#: src/gui/settings.cpp:4002 +msgid "Mod. accent (primary)" +msgstr "" + +#: src/gui/settings.cpp:4003 +msgid "Mod. accent (secondary)" +msgstr "" + +#: src/gui/settings.cpp:4004 +msgid "Mod. border" +msgstr "" + +#: src/gui/settings.cpp:4005 +msgid "Mod. border shadow" +msgstr "" + +#: src/gui/settings.cpp:4007 +msgid "Car. accent (primary)" +msgstr "" + +#: src/gui/settings.cpp:4008 +msgid "Car. accent (secondary)" +msgstr "" + +#: src/gui/settings.cpp:4009 +msgid "Car. border" +msgstr "" + +#: src/gui/settings.cpp:4010 +msgid "Car. border shadow" +msgstr "" + +#: src/gui/settings.cpp:4016 src/gui/guiConst.cpp:227 src/gui/insEdit.cpp:6924 +#: src/gui/insEdit.cpp:6931 src/gui/insEdit.cpp:6942 src/gui/insEdit.cpp:6950 +#: src/gui/insEdit.cpp:6971 src/gui/insEdit.cpp:6983 src/gui/insEdit.cpp:6993 +#: src/gui/insEdit.cpp:7006 src/gui/insEdit.cpp:7019 src/gui/insEdit.cpp:7028 +#: src/gui/insEdit.cpp:7036 src/gui/insEdit.cpp:7042 src/gui/insEdit.cpp:7052 +#: src/gui/insEdit.cpp:7061 src/gui/insEdit.cpp:7068 src/gui/insEdit.cpp:7075 +#: src/gui/insEdit.cpp:7087 src/gui/insEdit.cpp:7095 src/gui/insEdit.cpp:7102 +#: src/gui/insEdit.cpp:7109 src/gui/insEdit.cpp:7117 src/gui/insEdit.cpp:7123 +#: src/gui/insEdit.cpp:7132 src/gui/insEdit.cpp:7143 src/gui/insEdit.cpp:7153 +#: src/gui/insEdit.cpp:7161 src/gui/insEdit.cpp:7174 src/gui/insEdit.cpp:7182 +#: src/gui/insEdit.cpp:7193 src/gui/insEdit.cpp:7203 src/gui/insEdit.cpp:7213 +#: src/gui/insEdit.cpp:7227 src/gui/insEdit.cpp:7233 src/gui/insEdit.cpp:7241 +#: src/gui/insEdit.cpp:7248 src/gui/insEdit.cpp:7272 src/gui/insEdit.cpp:7280 +#: src/gui/insEdit.cpp:7289 src/gui/insEdit.cpp:7298 src/gui/insEdit.cpp:7306 +#: src/gui/insEdit.cpp:7323 src/gui/insEdit.cpp:7331 src/gui/insEdit.cpp:7337 +#: src/gui/insEdit.cpp:7344 src/gui/insEdit.cpp:7350 src/gui/insEdit.cpp:7355 +#: src/gui/insEdit.cpp:7361 src/gui/insEdit.cpp:7368 src/gui/insEdit.cpp:7376 +#: src/gui/insEdit.cpp:7385 src/gui/insEdit.cpp:7393 src/gui/insEdit.cpp:7401 +#: src/gui/insEdit.cpp:7413 src/gui/insEdit.cpp:7428 src/gui/insEdit.cpp:7439 +#: src/gui/insEdit.cpp:7447 src/gui/insEdit.cpp:7456 src/gui/insEdit.cpp:7466 +#: src/gui/insEdit.cpp:7474 +msgid "Pitch" +msgstr "" + +#: src/gui/settings.cpp:4021 +msgid "Instrument Types" +msgstr "" + +#: src/gui/settings.cpp:4022 +msgid "FM (OPN)" +msgstr "" + +#: src/gui/settings.cpp:4023 +msgid "SN76489/Sega PSG" +msgstr "" + +#: src/gui/settings.cpp:4026 +msgid "C64" +msgstr "" + +#: src/gui/settings.cpp:4027 +msgid "Amiga/Generic Sample" +msgstr "" + +#: src/gui/settings.cpp:4028 +msgid "PC Engine" +msgstr "" + +#: src/gui/settings.cpp:4029 +msgid "AY-3-8910/SSG" +msgstr "" + +#: src/gui/settings.cpp:4030 +msgid "AY8930" +msgstr "" + +#: src/gui/settings.cpp:4031 +msgid "TIA" +msgstr "" + +#: src/gui/settings.cpp:4032 +msgid "SAA1099" +msgstr "" + +#: src/gui/settings.cpp:4033 +msgid "VIC" +msgstr "" + +#: src/gui/settings.cpp:4034 +msgid "PET" +msgstr "" + +#: src/gui/settings.cpp:4035 +msgid "VRC6" +msgstr "" + +#: src/gui/settings.cpp:4036 src/gui/guiConst.cpp:149 +msgid "VRC6 (saw)" +msgstr "" + +#: src/gui/settings.cpp:4037 +msgid "FM (OPLL)" +msgstr "" + +#: src/gui/settings.cpp:4038 +msgid "FM (OPL)" +msgstr "" + +#: src/gui/settings.cpp:4043 +msgid "FM (OPZ)" +msgstr "" + +#: src/gui/settings.cpp:4045 +msgid "PC Beeper" +msgstr "" + +#: src/gui/settings.cpp:4047 +msgid "Lynx" +msgstr "" + +#: src/gui/settings.cpp:4049 +msgid "X1-010" +msgstr "" + +#: src/gui/settings.cpp:4050 +msgid "ES5506" +msgstr "" + +#: src/gui/settings.cpp:4053 +msgid "Sound Unit" +msgstr "" + +#: src/gui/settings.cpp:4055 +msgid "FM (OPL Drums)" +msgstr "" + +#: src/gui/settings.cpp:4056 +msgid "FM (OPM)" +msgstr "" + +#: src/gui/settings.cpp:4057 +msgid "NES" +msgstr "" + +#: src/gui/settings.cpp:4058 +msgid "MSM6258" +msgstr "" + +#: src/gui/settings.cpp:4059 +msgid "MSM6295" +msgstr "" + +#: src/gui/settings.cpp:4060 +msgid "ADPCM-A" +msgstr "" + +#: src/gui/settings.cpp:4062 +msgid "Sega PCM" +msgstr "" + +#: src/gui/settings.cpp:4063 +msgid "QSound" +msgstr "" + +#: src/gui/settings.cpp:4064 +msgid "YMZ280B" +msgstr "" + +#: src/gui/settings.cpp:4065 +msgid "RF5C68" +msgstr "" + +#: src/gui/settings.cpp:4066 +msgid "MSM5232" +msgstr "" + +#: src/gui/settings.cpp:4067 +msgid "K007232" +msgstr "" + +#: src/gui/settings.cpp:4068 +msgid "GA20" +msgstr "" + +#: src/gui/settings.cpp:4070 +msgid "SM8521" +msgstr "" + +#: src/gui/settings.cpp:4071 +msgid "PV-1000" +msgstr "" + +#: src/gui/settings.cpp:4072 +msgid "K053260" +msgstr "" + +#: src/gui/settings.cpp:4073 +msgid "TED" +msgstr "" + +#: src/gui/settings.cpp:4074 +msgid "C140" +msgstr "" + +#: src/gui/settings.cpp:4075 +msgid "C219" +msgstr "" + +#: src/gui/settings.cpp:4076 +msgid "ESFM" +msgstr "" + +#: src/gui/settings.cpp:4077 src/gui/guiConst.cpp:179 +msgid "PowerNoise (noise)" +msgstr "" + +#: src/gui/settings.cpp:4078 src/gui/guiConst.cpp:180 +msgid "PowerNoise (slope)" +msgstr "" + +#: src/gui/settings.cpp:4081 +msgid "GBA DMA" +msgstr "" + +#: src/gui/settings.cpp:4082 +msgid "GBA MinMod" +msgstr "" + +#: src/gui/settings.cpp:4085 +msgid "Other/Unknown" +msgstr "" + +#: src/gui/settings.cpp:4089 +msgid "Single color (background)" +msgstr "" + +#: src/gui/settings.cpp:4090 +msgid "Single color (text)" +msgstr "" + +#: src/gui/settings.cpp:4091 src/gui/guiConst.cpp:1393 src/gui/waveEdit.cpp:668 +msgid "FM" +msgstr "" + +#: src/gui/settings.cpp:4096 +msgid "FM operator" +msgstr "" + +#: src/gui/settings.cpp:4097 +msgid "Muted" +msgstr "" + +#: src/gui/settings.cpp:4101 +msgid "Playhead" +msgstr "" + +#: src/gui/settings.cpp:4102 +msgid "Editing" +msgstr "" + +#: src/gui/settings.cpp:4103 +msgid "Editing (will clone)" +msgstr "" + +#: src/gui/settings.cpp:4104 +msgid "Cursor" +msgstr "" + +#: src/gui/settings.cpp:4105 +msgid "Cursor (hovered)" +msgstr "" + +#: src/gui/settings.cpp:4106 +msgid "Cursor (clicked)" +msgstr "" + +#: src/gui/settings.cpp:4107 src/gui/settings.cpp:4172 +#: src/gui/findReplace.cpp:791 +msgid "Selection" +msgstr "" + +#: src/gui/settings.cpp:4108 +msgid "Selection (hovered)" +msgstr "" + +#: src/gui/settings.cpp:4109 +msgid "Selection (clicked)" +msgstr "" + +#: src/gui/settings.cpp:4110 +msgid "Highlight 1" +msgstr "" + +#: src/gui/settings.cpp:4111 +msgid "Highlight 2" +msgstr "" + +#: src/gui/settings.cpp:4112 +msgid "Row number" +msgstr "" + +#: src/gui/settings.cpp:4113 +msgid "Row number (highlight 1)" +msgstr "" + +#: src/gui/settings.cpp:4114 +msgid "Row number (highlight 2)" +msgstr "" + +#: src/gui/settings.cpp:4116 +msgid "Note (highlight 1)" +msgstr "" + +#: src/gui/settings.cpp:4117 +msgid "Note (highlight 2)" +msgstr "" + +#: src/gui/settings.cpp:4118 +msgid "Blank" +msgstr "" + +#: src/gui/settings.cpp:4119 +msgid "Blank (highlight 1)" +msgstr "" + +#: src/gui/settings.cpp:4120 +msgid "Blank (highlight 2)" +msgstr "" + +#: src/gui/settings.cpp:4122 +msgid "Instrument (invalid type)" +msgstr "" + +#: src/gui/settings.cpp:4123 +msgid "Instrument (out of range)" +msgstr "" + +#: src/gui/settings.cpp:4124 +msgid "Volume (0%)" +msgstr "" + +#: src/gui/settings.cpp:4125 +msgid "Volume (50%)" +msgstr "" + +#: src/gui/settings.cpp:4126 +msgid "Volume (100%)" +msgstr "" + +#: src/gui/settings.cpp:4128 +msgid "Pitch effect" +msgstr "" + +#: src/gui/settings.cpp:4129 +msgid "Volume effect" +msgstr "" + +#: src/gui/settings.cpp:4130 +msgid "Panning effect" +msgstr "" + +#: src/gui/settings.cpp:4131 +msgid "Song effect" +msgstr "" + +#: src/gui/settings.cpp:4132 +msgid "Time effect" +msgstr "" + +#: src/gui/settings.cpp:4133 +msgid "Speed effect" +msgstr "" + +#: src/gui/settings.cpp:4134 +msgid "Primary specific effect" +msgstr "" + +#: src/gui/settings.cpp:4135 +msgid "Secondary specific effect" +msgstr "" + +#: src/gui/settings.cpp:4137 +msgid "External command output" +msgstr "" + +#: src/gui/settings.cpp:4138 +msgid "Status: off/disabled" +msgstr "" + +#: src/gui/settings.cpp:4139 +msgid "Status: off + macro rel" +msgstr "" + +#: src/gui/settings.cpp:4140 +msgid "Status: on + macro rel" +msgstr "" + +#: src/gui/settings.cpp:4141 +msgid "Status: on" +msgstr "" + +#: src/gui/settings.cpp:4142 +msgid "Status: volume" +msgstr "" + +#: src/gui/settings.cpp:4143 +msgid "Status: pitch" +msgstr "" + +#: src/gui/settings.cpp:4144 +msgid "Status: panning" +msgstr "" + +#: src/gui/settings.cpp:4145 +msgid "Status: chip (primary)" +msgstr "" + +#: src/gui/settings.cpp:4146 +msgid "Status: chip (secondary)" +msgstr "" + +#: src/gui/settings.cpp:4147 +msgid "Status: mixing" +msgstr "" + +#: src/gui/settings.cpp:4148 +msgid "Status: DSP effect" +msgstr "" + +#: src/gui/settings.cpp:4149 +msgid "Status: note altering" +msgstr "" + +#: src/gui/settings.cpp:4150 +msgid "Status: misc color 1" +msgstr "" + +#: src/gui/settings.cpp:4151 +msgid "Status: misc color 2" +msgstr "" + +#: src/gui/settings.cpp:4152 +msgid "Status: misc color 3" +msgstr "" + +#: src/gui/settings.cpp:4153 +msgid "Status: attack" +msgstr "" + +#: src/gui/settings.cpp:4154 +msgid "Status: decay" +msgstr "" + +#: src/gui/settings.cpp:4155 +msgid "Status: sustain" +msgstr "" + +#: src/gui/settings.cpp:4156 +msgid "Status: release" +msgstr "" + +#: src/gui/settings.cpp:4157 +msgid "Status: decrease linear" +msgstr "" + +#: src/gui/settings.cpp:4158 +msgid "Status: decrease exp" +msgstr "" + +#: src/gui/settings.cpp:4159 +msgid "Status: increase" +msgstr "" + +#: src/gui/settings.cpp:4160 +msgid "Status: bent" +msgstr "" + +#: src/gui/settings.cpp:4161 +msgid "Status: direct" +msgstr "" + +#: src/gui/settings.cpp:4164 src/gui/guiConst.cpp:586 src/gui/sampleEdit.cpp:96 +msgid "Sample Editor" +msgstr "" + +#: src/gui/settings.cpp:4167 +msgid "Time background" +msgstr "" + +#: src/gui/settings.cpp:4168 +msgid "Time text" +msgstr "" + +#: src/gui/settings.cpp:4169 +msgid "Loop region" +msgstr "" + +#: src/gui/settings.cpp:4170 +msgid "Center guide" +msgstr "" + +#: src/gui/settings.cpp:4171 +msgid "Grid" +msgstr "" + +#: src/gui/settings.cpp:4173 +msgid "Selection points" +msgstr "" + +#: src/gui/settings.cpp:4174 +msgid "Preview needle" +msgstr "" + +#: src/gui/settings.cpp:4175 +msgid "Playing needles" +msgstr "" + +#: src/gui/settings.cpp:4176 +msgid "Loop markers" +msgstr "" + +#: src/gui/settings.cpp:4177 +msgid "Chip select: disabled" +msgstr "" + +#: src/gui/settings.cpp:4178 +msgid "Chip select: enabled" +msgstr "" + +#: src/gui/settings.cpp:4179 +msgid "Chip select: enabled (failure)" +msgstr "" + +#: src/gui/settings.cpp:4182 src/gui/guiConst.cpp:602 src/gui/patManager.cpp:35 +msgid "Pattern Manager" +msgstr "" + +#: src/gui/settings.cpp:4183 +msgid "Unallocated" +msgstr "" + +#: src/gui/settings.cpp:4184 +msgid "Unused" +msgstr "" + +#: src/gui/settings.cpp:4185 +msgid "Used" +msgstr "" + +#: src/gui/settings.cpp:4186 +msgid "Overused" +msgstr "" + +#: src/gui/settings.cpp:4187 +msgid "Really overused" +msgstr "" + +#: src/gui/settings.cpp:4188 +msgid "Combo Breaker" +msgstr "" + +#: src/gui/settings.cpp:4191 src/gui/guiConst.cpp:599 src/gui/piano.cpp:63 +msgid "Piano" +msgstr "" + +#: src/gui/settings.cpp:4193 +msgid "Upper key" +msgstr "" + +#: src/gui/settings.cpp:4194 +msgid "Upper key (feedback)" +msgstr "" + +#: src/gui/settings.cpp:4195 +msgid "Upper key (pressed)" +msgstr "" + +#: src/gui/settings.cpp:4196 +msgid "Lower key" +msgstr "" + +#: src/gui/settings.cpp:4197 +msgid "Lower key (feedback)" +msgstr "" + +#: src/gui/settings.cpp:4198 +msgid "Lower key (pressed)" +msgstr "" + +#: src/gui/settings.cpp:4201 src/gui/clock.cpp:31 src/gui/guiConst.cpp:610 +msgid "Clock" +msgstr "" + +#: src/gui/settings.cpp:4202 +msgid "Clock text" +msgstr "" + +#: src/gui/settings.cpp:4203 +msgid "Beat (off)" +msgstr "" + +#: src/gui/settings.cpp:4204 +msgid "Beat (on)" +msgstr "" + +#: src/gui/settings.cpp:4209 +msgid "PortSet" +msgstr "" + +#: src/gui/settings.cpp:4210 +msgid "Port" +msgstr "" + +#: src/gui/settings.cpp:4211 +msgid "Port (hidden/unavailable)" +msgstr "" + +#: src/gui/settings.cpp:4212 +msgid "Connection (selected)" +msgstr "" + +#: src/gui/settings.cpp:4213 +msgid "Connection (other)" +msgstr "" + +#: src/gui/settings.cpp:4219 +msgid "Waveform data" +msgstr "" + +#: src/gui/settings.cpp:4222 +msgid "Reserved" +msgstr "" + +#: src/gui/settings.cpp:4224 +msgid "Sample (alternate 1)" +msgstr "" + +#: src/gui/settings.cpp:4225 +msgid "Sample (alternate 2)" +msgstr "" + +#: src/gui/settings.cpp:4226 +msgid "Sample (alternate 3)" +msgstr "" + +#: src/gui/settings.cpp:4227 +msgid "Wave RAM" +msgstr "" + +#: src/gui/settings.cpp:4228 +msgid "Wavetable (static)" +msgstr "" + +#: src/gui/settings.cpp:4229 +msgid "Echo buffer" +msgstr "" + +#: src/gui/settings.cpp:4230 +msgid "Namco 163 load pos" +msgstr "" + +#: src/gui/settings.cpp:4231 +msgid "Namco 163 play pos" +msgstr "" + +#: src/gui/settings.cpp:4232 +msgid "Sample (bank 0)" +msgstr "" + +#: src/gui/settings.cpp:4233 +msgid "Sample (bank 1)" +msgstr "" + +#: src/gui/settings.cpp:4234 +msgid "Sample (bank 2)" +msgstr "" + +#: src/gui/settings.cpp:4235 +msgid "Sample (bank 3)" +msgstr "" + +#: src/gui/settings.cpp:4236 +msgid "Sample (bank 4)" +msgstr "" + +#: src/gui/settings.cpp:4237 +msgid "Sample (bank 5)" +msgstr "" + +#: src/gui/settings.cpp:4238 +msgid "Sample (bank 6)" +msgstr "" + +#: src/gui/settings.cpp:4239 +msgid "Sample (bank 7)" +msgstr "" + +#: src/gui/settings.cpp:4244 +msgid "Log level: Error" +msgstr "" + +#: src/gui/settings.cpp:4245 +msgid "Log level: Warning" +msgstr "" + +#: src/gui/settings.cpp:4246 +msgid "Log level: Info" +msgstr "" + +#: src/gui/settings.cpp:4247 +msgid "Log level: Debug" +msgstr "" + +#: src/gui/settings.cpp:4248 +msgid "Log level: Trace/Verbose" +msgstr "" + +#: src/gui/settings.cpp:4253 +msgid "Backup" +msgstr "" + +#: src/gui/settings.cpp:4258 +msgid "Enable backup system" +msgstr "" + +#: src/gui/settings.cpp:4263 +msgid "Interval (in seconds)" +msgstr "" + +#: src/gui/settings.cpp:4268 +msgid "Backups per file" +msgstr "" + +#: src/gui/settings.cpp:4274 +msgid "Backup Management" +msgstr "" + +#: src/gui/settings.cpp:4278 +msgid "Purge before:" +msgstr "" + +#: src/gui/settings.cpp:4352 +msgid "Go##PDate" +msgstr "" + +#: src/gui/settings.cpp:4359 +#, c-format +msgid "%PB used" +msgstr "" + +#: src/gui/settings.cpp:4361 +#, c-format +msgid "%TB used" +msgstr "" + +#: src/gui/settings.cpp:4363 +#, c-format +msgid "%GB used" +msgstr "" + +#: src/gui/settings.cpp:4365 +#, c-format +msgid "%MB used" +msgstr "" + +#: src/gui/settings.cpp:4367 +#, c-format +msgid "%KB used" +msgstr "" + +#: src/gui/settings.cpp:4369 +#, c-format +msgid "% bytes used" +msgstr "" + +#: src/gui/settings.cpp:4374 +msgid "Refresh" +msgstr "" + +#: src/gui/settings.cpp:4378 +msgid "Delete all" +msgstr "" + +#: src/gui/settings.cpp:4384 src/gui/settings.cpp:6688 +msgid "Size" +msgstr "" + +#: src/gui/settings.cpp:4385 +msgid "Latest" +msgstr "" + +#: src/gui/settings.cpp:4395 +#, c-format +msgid "%P" +msgstr "" + +#: src/gui/settings.cpp:4397 +#, c-format +msgid "%T" +msgstr "" + +#: src/gui/settings.cpp:4399 +#, c-format +msgid "%G" +msgstr "" + +#: src/gui/settings.cpp:4401 +#, c-format +msgid "%M" +msgstr "" + +#: src/gui/settings.cpp:4403 +#, c-format +msgid "%K" +msgstr "" + +#: src/gui/settings.cpp:4405 +#, c-format +msgid "%" +msgstr "" + +#: src/gui/settings.cpp:4529 +msgid "Cheat Codes" +msgstr "" + +#: src/gui/settings.cpp:4531 +msgid "Enter code:" +msgstr "" + +#: src/gui/settings.cpp:4533 +msgid "Submit" +msgstr "" + +#: src/gui/settings.cpp:4537 +msgid "invalid code" +msgstr "" + +#: src/gui/settings.cpp:4547 +msgid "toggled alternate UI" +msgstr "" + +#: src/gui/settings.cpp:4551 +msgid ":smile: :star_struck: :sunglasses: :ok_hand:" +msgstr "" + +#: src/gui/settings.cpp:4555 +msgid "enabled all instrument types" +msgstr "" + +#: src/gui/settings.cpp:4559 +msgid "OK, if I bring your Partial pitch linearity will you stop bothering me?" +msgstr "" + +#: src/gui/settings.cpp:4563 +msgid "unlocked audio multi-threading options!" +msgstr "" + +#: src/gui/settings.cpp:4567 +msgid "enabled \"comfortable\" mode" +msgstr "" + +#: src/gui/settings.cpp:4585 +msgid "OK##SettingsOK" +msgstr "" + +#: src/gui/settings.cpp:4591 +msgid "Cancel##SettingsCancel" +msgstr "" + +#: src/gui/settings.cpp:4599 +msgid "Apply##SettingsApply" +msgstr "" + +#: src/gui/settings.cpp:5673 +msgid "could not initialize audio!" +msgstr "" + +#: src/gui/settings.cpp:5683 src/gui/gui.cpp:4067 src/gui/gui.cpp:6662 +#: src/gui/gui.cpp:7088 +msgid "error while loading fonts! please check your settings." +msgstr "" + +#: src/gui/settings.cpp:5862 +#, c-format +msgid "error while loading config! (%s)" +msgstr "" + +#: src/gui/settings.cpp:6675 +msgid "[Dir]" +msgstr "" + +#: src/gui/settings.cpp:6676 +msgid "[Link]" +msgstr "" + +#: src/gui/settings.cpp:6677 +msgid "[File]" +msgstr "" + +#: src/gui/settings.cpp:6678 +msgid "Name:" +msgstr "" + +#: src/gui/settings.cpp:6679 +msgid "Path:" +msgstr "" + +#: src/gui/settings.cpp:6680 +msgid "Reset search" +msgstr "" + +#: src/gui/settings.cpp:6681 +msgid "Drives" +msgstr "" + +#: src/gui/settings.cpp:6682 +msgid "" +"Edit path\n" +"You can also right click on path buttons" +msgstr "" + +#: src/gui/settings.cpp:6683 +msgid "Go to home directory" +msgstr "" + +#: src/gui/settings.cpp:6684 +msgid "Go to parent directory" +msgstr "" + +#: src/gui/settings.cpp:6685 +msgid "Create Directory" +msgstr "" + +#: src/gui/settings.cpp:6686 +msgid "File name" +msgstr "" + +#: src/gui/settings.cpp:6689 +msgid "Date" +msgstr "" + +#: src/gui/settings.cpp:6690 src/gui/gui.cpp:5510 src/gui/gui.cpp:5645 +#: src/gui/gui.cpp:5646 +msgid "Warning" +msgstr "" + +#: src/gui/settings.cpp:6691 +msgid "The file you selected already exists! Would you like to overwrite it?" +msgstr "" + +#: src/gui/settings.cpp:6692 src/gui/gui.cpp:5650 src/gui/gui.cpp:5674 +#: src/gui/gui.cpp:5698 src/gui/gui.cpp:5722 src/gui/gui.cpp:5746 +#: src/gui/gui.cpp:5770 src/gui/gui.cpp:5802 src/gui/gui.cpp:5818 +#: src/gui/gui.cpp:5829 src/gui/gui.cpp:5841 src/gui/gui.cpp:5995 +#: src/gui/gui.cpp:6017 src/gui/gui.cpp:6032 src/gui/gui.cpp:6043 +msgid "Yes" +msgstr "" + +#: src/gui/settings.cpp:6693 src/gui/findReplace.cpp:828 src/gui/gui.cpp:5664 +#: src/gui/gui.cpp:5688 src/gui/gui.cpp:5712 src/gui/gui.cpp:5736 +#: src/gui/gui.cpp:5760 src/gui/gui.cpp:5788 src/gui/gui.cpp:5813 +#: src/gui/gui.cpp:5824 src/gui/gui.cpp:5836 src/gui/gui.cpp:5848 +#: src/gui/gui.cpp:6012 src/gui/gui.cpp:6027 src/gui/gui.cpp:6037 +#: src/gui/gui.cpp:6050 +msgid "No" +msgstr "" + +#: src/gui/settings.cpp:6694 +msgid "%Y/%m/%d %H:%M" +msgstr "" + +#: src/gui/orders.cpp:114 +msgid "Add new order" +msgstr "" + +#: src/gui/orders.cpp:125 src/gui/guiConst.cpp:794 +msgid "Remove order" +msgstr "" + +#: src/gui/orders.cpp:137 +msgid "Duplicate order (right-click to deep clone)" +msgstr "" + +#: src/gui/orders.cpp:146 src/gui/guiConst.cpp:795 +msgid "Move order up" +msgstr "" + +#: src/gui/orders.cpp:155 src/gui/guiConst.cpp:796 +msgid "Move order down" +msgstr "" + +#: src/gui/orders.cpp:167 +msgid "Place copy of current order at end of song (right-click to deep clone)" +msgstr "" + +#: src/gui/orders.cpp:177 +msgid "Order change mode: entire row" +msgstr "" + +#: src/gui/orders.cpp:179 +msgid "Order change mode: one" +msgstr "" + +#: src/gui/orders.cpp:205 +msgid "Order edit mode: Select and type (scroll vertically)" +msgstr "" + +#: src/gui/orders.cpp:207 +msgid "Order edit mode: Select and type (scroll horizontally)" +msgstr "" + +#: src/gui/orders.cpp:209 +msgid "Order edit mode: Select and type (don't scroll)" +msgstr "" + +#: src/gui/orders.cpp:211 +msgid "Order edit mode: Click to change" +msgstr "" + +#: src/gui/findReplace.cpp:29 +msgid "ignore" +msgstr "" + +#: src/gui/findReplace.cpp:30 +msgid "equals" +msgstr "" + +#: src/gui/findReplace.cpp:31 +msgid "not equal" +msgstr "" + +#: src/gui/findReplace.cpp:32 +msgid "between" +msgstr "" + +#: src/gui/findReplace.cpp:33 +msgid "not between" +msgstr "" + +#: src/gui/findReplace.cpp:34 +msgid "any" +msgstr "" + +#: src/gui/findReplace.cpp:35 src/gui/guiConst.cpp:217 +msgid "none" +msgstr "" + +#: src/gui/findReplace.cpp:39 +msgid "set" +msgstr "" + +#: src/gui/findReplace.cpp:40 +msgid "add" +msgstr "" + +#: src/gui/findReplace.cpp:41 +msgid "add (overflow)" +msgstr "" + +#: src/gui/findReplace.cpp:42 +msgid "scale %" +msgstr "" + +#: src/gui/findReplace.cpp:512 src/gui/guiConst.cpp:609 +msgid "Find/Replace" +msgstr "" + +#: src/gui/findReplace.cpp:520 src/gui/findReplace.cpp:850 +msgid "Find" +msgstr "" + +#: src/gui/findReplace.cpp:526 src/gui/findReplace.cpp:535 +msgid "order" +msgstr "" + +#: src/gui/findReplace.cpp:527 src/gui/findReplace.cpp:537 +msgid "row" +msgstr "" + +#: src/gui/findReplace.cpp:539 src/gui/csPlayer.cpp:146 +msgid "channel" +msgstr "" + +#: src/gui/findReplace.cpp:541 +msgid "go" +msgstr "" + +#: src/gui/findReplace.cpp:585 +msgid "no matches found!" +msgstr "" + +#: src/gui/findReplace.cpp:587 +msgid "Back" +msgstr "" + +#: src/gui/findReplace.cpp:750 +msgid "Delete query" +msgstr "" + +#: src/gui/findReplace.cpp:754 src/gui/findReplace.cpp:1037 +msgid "Add effect" +msgstr "" + +#: src/gui/findReplace.cpp:761 src/gui/findReplace.cpp:1044 +msgid "Remove effect" +msgstr "" + +#: src/gui/findReplace.cpp:786 +msgid "Search range:" +msgstr "" + +#: src/gui/findReplace.cpp:799 +msgid "Confine to channels" +msgstr "" + +#: src/gui/findReplace.cpp:803 src/gui/sampleEdit.cpp:1152 +msgid "From" +msgstr "" + +#: src/gui/findReplace.cpp:814 src/gui/sampleEdit.cpp:1156 +msgid "To" +msgstr "" + +#: src/gui/findReplace.cpp:826 +msgid "Match effect position:" +msgstr "" + +#: src/gui/findReplace.cpp:832 +msgid "match effects regardless of position." +msgstr "" + +#: src/gui/findReplace.cpp:834 src/gui/compatFlags.cpp:288 +msgid "Lax" +msgstr "" + +#: src/gui/findReplace.cpp:838 +msgid "match effects only if they appear in-order." +msgstr "" + +#: src/gui/findReplace.cpp:840 src/gui/compatFlags.cpp:276 +msgid "Strict" +msgstr "" + +#: src/gui/findReplace.cpp:844 +msgid "match effects only if they appear exactly as specified." +msgstr "" + +#: src/gui/findReplace.cpp:856 +msgid "Replace" +msgstr "" + +#: src/gui/findReplace.cpp:908 +msgid "INVALID" +msgstr "" + +#: src/gui/findReplace.cpp:1052 +msgid "Effect replace mode:" +msgstr "" + +#: src/gui/findReplace.cpp:1053 +msgid "Replace matches only" +msgstr "" + +#: src/gui/findReplace.cpp:1056 +msgid "Replace matches, then free spaces" +msgstr "" + +#: src/gui/findReplace.cpp:1059 +msgid "Clear effects" +msgstr "" + +#: src/gui/findReplace.cpp:1062 +msgid "Insert in free spaces" +msgstr "" + +#: src/gui/findReplace.cpp:1065 +msgid "Replace##QueryReplace" +msgstr "" + +#: src/gui/about.cpp:26 +msgid "is proud to present" +msgstr "" + +#: src/gui/about.cpp:30 +msgid "the biggest multi-system chiptune tracker!" +msgstr "" + +#: src/gui/about.cpp:31 +msgid "featuring DefleMask song compatibility." +msgstr "" + +#: src/gui/about.cpp:33 +msgid "> CREDITS <" +msgstr "" + +#: src/gui/about.cpp:35 +msgid "-- program --" +msgstr "" + +#: src/gui/about.cpp:37 +msgid "A M 4 N (intro tune)" +msgstr "" + +#: src/gui/about.cpp:52 +msgid "-- graphics/UI design --" +msgstr "" + +#: src/gui/about.cpp:59 +msgid "-- documentation --" +msgstr "" + +#: src/gui/about.cpp:69 +msgid "-- localization/translation team --" +msgstr "" + +#: src/gui/about.cpp:81 +msgid "-- demo songs --" +msgstr "" + +#: src/gui/about.cpp:207 +msgid "-- additional feedback/fixes --" +msgstr "" + +#: src/gui/about.cpp:218 +msgid "-- Metal backend test team --" +msgstr "" + +#: src/gui/about.cpp:224 +msgid "-- DirectX 9 backend test team --" +msgstr "" + +#: src/gui/about.cpp:231 +msgid "powered by:" +msgstr "" + +#: src/gui/about.cpp:232 +msgid "Dear ImGui by Omar Cornut" +msgstr "" + +#: src/gui/about.cpp:233 +msgid "SDL2 by Sam Lantinga" +msgstr "" + +#: src/gui/about.cpp:237 +msgid "zlib by Jean-loup Gailly" +msgstr "" + +#: src/gui/about.cpp:238 +msgid "and Mark Adler" +msgstr "" + +#: src/gui/about.cpp:239 +msgid "libsndfile by Erik de Castro Lopo" +msgstr "" + +#: src/gui/about.cpp:240 +msgid "Portable File Dialogs by Sam Hocevar" +msgstr "" + +#: src/gui/about.cpp:241 +msgid "Native File Dialog by Frogtoss Games" +msgstr "" + +#: src/gui/about.cpp:243 +msgid "Weak-JACK by x42" +msgstr "" + +#: src/gui/about.cpp:244 +msgid "RtMidi by Gary P. Scavone" +msgstr "" + +#: src/gui/about.cpp:245 +msgid "FFTW by Matteo Frigo and Steven G. Johnson" +msgstr "" + +#: src/gui/about.cpp:246 +msgid "backward-cpp by Google" +msgstr "" + +#: src/gui/about.cpp:247 +msgid "adpcm by superctr" +msgstr "" + +#: src/gui/about.cpp:248 +msgid "adpcm-xq by David Bryant" +msgstr "" + +#: src/gui/about.cpp:249 +msgid "Nuked-OPL3/OPLL/OPM/OPN2/PSG by nukeykt" +msgstr "" + +#: src/gui/about.cpp:250 +msgid "YM3812-LLE, YMF262-LLE, YMF276-LLE and YM2608-LLE by nukeykt" +msgstr "" + +#: src/gui/about.cpp:251 +msgid "ESFMu (modified version) by Kagamiin~" +msgstr "" + +#: src/gui/about.cpp:252 +msgid "ymfm by Aaron Giles" +msgstr "" + +#: src/gui/about.cpp:253 +msgid "emu2413 by Digital Sound Antiques" +msgstr "" + +#: src/gui/about.cpp:254 +msgid "MAME SN76496 by Nicola Salmoria" +msgstr "" + +#: src/gui/about.cpp:255 +msgid "MAME AY-3-8910 by Couriersud" +msgstr "" + +#: src/gui/about.cpp:256 +msgid "with AY8930 fixes by Eulous, cam900 and Grauw" +msgstr "" + +#: src/gui/about.cpp:257 +msgid "MAME SAA1099 by Juergen Buchmueller and Manuel Abadia" +msgstr "" + +#: src/gui/about.cpp:258 +msgid "MAME Namco WSG by Nicola Salmoria and Aaron Giles" +msgstr "" + +#: src/gui/about.cpp:259 +msgid "MAME RF5C68 core by Olivier Galibert and Aaron Giles" +msgstr "" + +#: src/gui/about.cpp:260 +msgid "MAME MSM5232 core by Jarek Burczynski and Hiromitsu Shioya" +msgstr "" + +#: src/gui/about.cpp:261 +msgid "MAME MSM6258 core by Barry Rodewald" +msgstr "" + +#: src/gui/about.cpp:262 +msgid "MAME YMZ280B core by Aaron Giles" +msgstr "" + +#: src/gui/about.cpp:263 +msgid "MAME GA20 core by Acho A. Tang and R. Belmont" +msgstr "" + +#: src/gui/about.cpp:264 +msgid "MAME SegaPCM core by Hiromitsu Shioya and Olivier Galibert" +msgstr "" + +#: src/gui/about.cpp:265 +msgid "SAASound by Dave Hooper and Simon Owen" +msgstr "" + +#: src/gui/about.cpp:266 +msgid "SameBoy by Lior Halphon" +msgstr "" + +#: src/gui/about.cpp:267 +msgid "Mednafen PCE, WonderSwan, T6W28 and Virtual Boy audio cores" +msgstr "" + +#: src/gui/about.cpp:268 +msgid "SNES DSP core by Blargg" +msgstr "" + +#: src/gui/about.cpp:269 +msgid "puNES (NES, MMC5 and FDS) by FHorse" +msgstr "" + +#: src/gui/about.cpp:270 +msgid "NSFPlay (NES and FDS) by Brad Smith and Brezza" +msgstr "" + +#: src/gui/about.cpp:271 +msgid "reSID by Dag Lem" +msgstr "" + +#: src/gui/about.cpp:272 +msgid "reSIDfp by Dag Lem, Antti Lankila" +msgstr "" + +#: src/gui/about.cpp:273 +msgid "and Leandro Nini" +msgstr "" + +#: src/gui/about.cpp:274 +msgid "dSID by DefleMask Team based on jsSID" +msgstr "" + +#: src/gui/about.cpp:275 +msgid "Stella by Stella Team" +msgstr "" + +#: src/gui/about.cpp:276 +msgid "QSound emulator by superctr and Valley Bell" +msgstr "" + +#: src/gui/about.cpp:277 +msgid "VICE VIC-20 sound core by Rami Rasanen and viznut" +msgstr "" + +#: src/gui/about.cpp:278 +msgid "VICE TED sound core by Andreas Boose, Tibor Biczo" +msgstr "" + +#: src/gui/about.cpp:279 +msgid "and Marco van den Heuvel" +msgstr "" + +#: src/gui/about.cpp:280 +msgid "VERA sound core by Frank van den Hoef" +msgstr "" + +#: src/gui/about.cpp:281 +msgid "mzpokeysnd POKEY emulator by Michael Borisov" +msgstr "" + +#: src/gui/about.cpp:282 +msgid "ASAP POKEY emulator by Piotr Fusik" +msgstr "" + +#: src/gui/about.cpp:283 +msgid "ported by laoo to C++" +msgstr "" + +#: src/gui/about.cpp:284 +msgid "vgsound_emu (second version, modified version) by cam900" +msgstr "" + +#: src/gui/about.cpp:285 +msgid "SM8521 emulator (modified version) by cam900" +msgstr "" + +#: src/gui/about.cpp:286 +msgid "D65010G031 emulator (modified version) by cam900" +msgstr "" + +#: src/gui/about.cpp:287 +msgid "Namco C140/C219 emulator (modified version) by cam900" +msgstr "" + +#: src/gui/about.cpp:288 +msgid "PowerNoise emulator by scratchminer" +msgstr "" + +#: src/gui/about.cpp:289 +msgid "ep128emu by Istvan Varga" +msgstr "" + +#: src/gui/about.cpp:290 +msgid "NDS sound emulator by cam900" +msgstr "" + +#: src/gui/about.cpp:292 +msgid "greetings to:" +msgstr "" + +#: src/gui/about.cpp:295 +msgid "all members of Deflers of Noice!" +msgstr "" + +#: src/gui/about.cpp:301 +msgid "copyright © 2021-2024 tildearrow" +msgstr "" + +#: src/gui/about.cpp:302 +msgid "(and contributors)." +msgstr "" + +#: src/gui/about.cpp:303 +msgid "licensed under GPLv2+! see" +msgstr "" + +#: src/gui/about.cpp:304 +msgid "LICENSE for more information." +msgstr "" + +#: src/gui/about.cpp:306 +msgid "help Furnace grow:" +msgstr "" + +#: src/gui/about.cpp:309 +msgid "contact tildearrow at:" +msgstr "" + +#: src/gui/about.cpp:312 +msgid "disclaimer:" +msgstr "" + +#: src/gui/about.cpp:313 +msgid "despite the fact this program works" +msgstr "" + +#: src/gui/about.cpp:314 +msgid "with the .dmf file format, it is NOT" +msgstr "" + +#: src/gui/about.cpp:315 +msgid "affiliated with Delek or DefleMask in" +msgstr "" + +#: src/gui/about.cpp:316 +msgid "any way, nor it is a replacement for" +msgstr "" + +#: src/gui/about.cpp:317 +msgid "the original program." +msgstr "" + +#: src/gui/about.cpp:319 +msgid "it also comes with ABSOLUTELY NO WARRANTY." +msgstr "" + +#: src/gui/about.cpp:321 +msgid "thanks to all contributors/bug reporters!" +msgstr "" + +#: src/gui/about.cpp:328 +msgid "About Furnace" +msgstr "" + +#: src/gui/about.cpp:418 +msgid "Unsaved changes! Save changes before playing?" +msgstr "" + +#: src/gui/compatFlags.cpp:31 src/gui/guiConst.cpp:598 +msgid "Compatibility Flags" +msgstr "" + +#: src/gui/compatFlags.cpp:32 +msgid "" +"these flags are designed to provide better DefleMask/older Furnace " +"compatibility.\n" +"it is recommended to disable most of these unless you rely on specific " +"quirks." +msgstr "" + +#: src/gui/compatFlags.cpp:34 src/gui/compatFlags.cpp:310 +msgid "DefleMask" +msgstr "" + +#: src/gui/compatFlags.cpp:35 +msgid "Limit slide range" +msgstr "" + +#: src/gui/compatFlags.cpp:37 +msgid "" +"when enabled, slides are limited to a compatible range.\n" +"may cause problems with slides in negative octaves." +msgstr "" + +#: src/gui/compatFlags.cpp:39 +msgid "Compatible noise layout on NES and PC Engine" +msgstr "" + +#: src/gui/compatFlags.cpp:41 +msgid "" +"use a rather unusual compatible noise frequency layout.\n" +"removes some noise frequencies on PC Engine." +msgstr "" + +#: src/gui/compatFlags.cpp:43 +msgid "Game Boy instrument duty is wave volume" +msgstr "" + +#: src/gui/compatFlags.cpp:45 +msgid "" +"if enabled, an instrument with duty macro in the wave channel will be mapped " +"to wavetable volume." +msgstr "" + +#: src/gui/compatFlags.cpp:48 +msgid "Restart macro on portamento" +msgstr "" + +#: src/gui/compatFlags.cpp:50 +msgid "" +"when enabled, a portamento effect will reset the channel's macro if used in " +"combination with a note." +msgstr "" + +#: src/gui/compatFlags.cpp:52 +msgid "Legacy volume slides" +msgstr "" + +#: src/gui/compatFlags.cpp:54 +msgid "" +"simulate glitchy volume slide behavior by silently overflowing the volume " +"when the slide goes below 0." +msgstr "" + +#: src/gui/compatFlags.cpp:56 +msgid "Compatible arpeggio" +msgstr "" + +#: src/gui/compatFlags.cpp:58 +msgid "delay arpeggio by one tick on every new note." +msgstr "" + +#: src/gui/compatFlags.cpp:60 +msgid "Disable DAC when sample ends" +msgstr "" + +#: src/gui/compatFlags.cpp:62 +msgid "" +"when enabled, the DAC in YM2612 will be disabled if there isn't any sample " +"playing." +msgstr "" + +#: src/gui/compatFlags.cpp:64 +msgid "Broken speed alternation" +msgstr "" + +#: src/gui/compatFlags.cpp:66 +msgid "" +"determines next speed based on whether the row is odd/even instead of " +"alternating between speeds." +msgstr "" + +#: src/gui/compatFlags.cpp:68 +msgid "Ignore duplicate slide effects" +msgstr "" + +#: src/gui/compatFlags.cpp:70 +msgid "" +"if this is on, only the first slide of a row in a channel will be considered." +msgstr "" + +#: src/gui/compatFlags.cpp:72 +msgid "Ignore 0Dxx on the last order" +msgstr "" + +#: src/gui/compatFlags.cpp:74 +msgid "" +"if this is on, a jump to next row effect will not take place when it is on " +"the last order of a song." +msgstr "" + +#: src/gui/compatFlags.cpp:76 +msgid "Buggy portamento after pitch slide" +msgstr "" + +#: src/gui/compatFlags.cpp:78 +msgid "simulates a bug in where portamento does not work after sliding." +msgstr "" + +#: src/gui/compatFlags.cpp:80 +msgid "FM pitch slide octave boundary odd behavior" +msgstr "" + +#: src/gui/compatFlags.cpp:82 +msgid "" +"if this is on, a pitch slide that crosses the octave boundary will stop for " +"one tick and then continue from the nearest octave boundary.\n" +"for .dmf compatibility." +msgstr "" + +#: src/gui/compatFlags.cpp:84 +msgid "Don't apply Game Boy envelope on note-less instrument change" +msgstr "" + +#: src/gui/compatFlags.cpp:86 +msgid "if this is on, an instrument change will not affect the envelope." +msgstr "" + +#: src/gui/compatFlags.cpp:88 +msgid "Ignore DAC mode change outside of intended channel in ExtCh mode" +msgstr "" + +#: src/gui/compatFlags.cpp:90 +msgid "if this is on, 17xx has no effect on the operator channels in YM2612." +msgstr "" + +#: src/gui/compatFlags.cpp:92 +msgid "E1xy/E2xy also take priority over slide stops" +msgstr "" + +#: src/gui/compatFlags.cpp:94 +msgid "does this make any sense by now?" +msgstr "" + +#: src/gui/compatFlags.cpp:96 +msgid "E1xy/E2xy stop when repeating the same note" +msgstr "" + +#: src/gui/compatFlags.cpp:98 +msgid "ugh, if only this wasn't a thing..." +msgstr "" + +#: src/gui/compatFlags.cpp:100 +msgid "SN76489 duty macro always resets phase" +msgstr "" + +#: src/gui/compatFlags.cpp:102 +msgid "" +"when enabled, duty macro will always reset phase, even if its value hasn't " +"changed." +msgstr "" + +#: src/gui/compatFlags.cpp:104 +msgid "Broken volume scaling strategy" +msgstr "" + +#: src/gui/compatFlags.cpp:106 +msgid "" +"when enabled:\n" +"- log scaling: multiply\n" +"- linear scaling: subtract\n" +"when disabled:\n" +"- log scaling: subtract\n" +"- linear scaling: multiply" +msgstr "" + +#: src/gui/compatFlags.cpp:108 +msgid "Don't persist volume macro after it finishes" +msgstr "" + +#: src/gui/compatFlags.cpp:110 +msgid "" +"when enabled, a value in the volume column that happens after the volume " +"macro is done will disregard the macro." +msgstr "" + +#: src/gui/compatFlags.cpp:112 +msgid "Broken output volume on instrument change" +msgstr "" + +#: src/gui/compatFlags.cpp:114 +msgid "" +"if enabled, no checks for the presence of a volume macro will be made.\n" +"this will cause the last macro value to linger unless a value in the volume " +"column is present." +msgstr "" + +#: src/gui/compatFlags.cpp:116 +msgid "Broken output volume - Episode 2 (PLEASE KEEP ME DISABLED)" +msgstr "" + +#: src/gui/compatFlags.cpp:118 +msgid "" +"these compatibility flags are getting SO damn ridiculous and out of " +"control.\n" +"as you may have guessed, this one exists due to yet ANOTHER DefleMask-" +"specific behavior.\n" +"please keep this off at all costs, because I will not support it when ROM " +"export comes.\n" +"oh, and don't start an argument out of it. Furnace isn't a DefleMask " +"replacement, and no,\n" +"I am not trying to make it look like one with all these flags.\n" +"\n" +"oh, and what about the other flags that don't have to do with DefleMask?\n" +"those are for .mod import, future FamiTracker import and personal taste!\n" +"\n" +"end of rant" +msgstr "" + +#: src/gui/compatFlags.cpp:120 +msgid "Treat SN76489 periods under 8 as 1" +msgstr "" + +#: src/gui/compatFlags.cpp:122 +msgid "" +"when enabled, any SN period under 8 will be written as 1 instead.\n" +"this replicates DefleMask behavior, but reduces available period range." +msgstr "" + +#: src/gui/compatFlags.cpp:126 src/gui/compatFlags.cpp:304 +msgid "Old Furnace" +msgstr "" + +#: src/gui/compatFlags.cpp:127 +msgid "Arpeggio inhibits non-porta slides" +msgstr "" + +#: src/gui/compatFlags.cpp:129 src/gui/compatFlags.cpp:133 +msgid "behavior changed in 0.5.5" +msgstr "" + +#: src/gui/compatFlags.cpp:131 +msgid "Wack FM algorithm macro" +msgstr "" + +#: src/gui/compatFlags.cpp:135 +msgid "Broken shortcut slides (E1xy/E2xy)" +msgstr "" + +#: src/gui/compatFlags.cpp:137 +msgid "behavior changed in 0.5.7" +msgstr "" + +#: src/gui/compatFlags.cpp:139 +msgid "Stop portamento on note off" +msgstr "" + +#: src/gui/compatFlags.cpp:141 src/gui/compatFlags.cpp:145 +#: src/gui/compatFlags.cpp:149 src/gui/compatFlags.cpp:153 +#: src/gui/compatFlags.cpp:157 src/gui/compatFlags.cpp:161 +#: src/gui/compatFlags.cpp:165 +msgid "behavior changed in 0.6pre1" +msgstr "" + +#: src/gui/compatFlags.cpp:143 +msgid "Don't allow instrument change during slides" +msgstr "" + +#: src/gui/compatFlags.cpp:147 +msgid "Don't reset note to base on arpeggio stop" +msgstr "" + +#: src/gui/compatFlags.cpp:151 +msgid "ExtCh channel status is not shared among operators" +msgstr "" + +#: src/gui/compatFlags.cpp:155 +msgid "Disable new SegaPCM features (macros and better panning)" +msgstr "" + +#: src/gui/compatFlags.cpp:159 +msgid "Old FM octave boundary behavior" +msgstr "" + +#: src/gui/compatFlags.cpp:163 +msgid "Disable OPN2 DAC volume control" +msgstr "" + +#: src/gui/compatFlags.cpp:167 +msgid "Broken initial position of portamento after arpeggio" +msgstr "" + +#: src/gui/compatFlags.cpp:169 +msgid "behavior changed in 0.6pre1.5" +msgstr "" + +#: src/gui/compatFlags.cpp:171 +msgid "Disable new sample features" +msgstr "" + +#: src/gui/compatFlags.cpp:173 src/gui/compatFlags.cpp:177 +msgid "behavior changed in 0.6pre2" +msgstr "" + +#: src/gui/compatFlags.cpp:175 +msgid "Old arpeggio macro + pitch slide strategy" +msgstr "" + +#: src/gui/compatFlags.cpp:179 +msgid "Broken portamento during legato" +msgstr "" + +#: src/gui/compatFlags.cpp:181 +msgid "behavior changed in 0.6pre4" +msgstr "" + +#: src/gui/compatFlags.cpp:183 +msgid "Broken macros in some FM chips after note off" +msgstr "" + +#: src/gui/compatFlags.cpp:185 +msgid "behavior changed in 0.6pre5" +msgstr "" + +#: src/gui/compatFlags.cpp:187 +msgid "Pre-note does not take effects into consideration" +msgstr "" + +#: src/gui/compatFlags.cpp:189 +msgid "behavior changed in 0.6pre9" +msgstr "" + +#: src/gui/compatFlags.cpp:191 +msgid "Disable new NES DPCM features" +msgstr "" + +#: src/gui/compatFlags.cpp:193 +msgid "behavior changed in 0.6.1" +msgstr "" + +#: src/gui/compatFlags.cpp:195 +msgid "Legacy technical ALWAYS_SET_VOLUME behavior" +msgstr "" + +#: src/gui/compatFlags.cpp:197 +msgid "" +"behavior changed in 0.6.1\n" +"this flag will be removed if I find out that none of the songs break after " +"disabling it." +msgstr "" + +#: src/gui/compatFlags.cpp:199 +msgid "Old sample offset effect" +msgstr "" + +#: src/gui/compatFlags.cpp:201 +msgid "behavior changed in 0.6.3" +msgstr "" + +#: src/gui/compatFlags.cpp:205 +msgid ".mod import" +msgstr "" + +#: src/gui/compatFlags.cpp:206 +msgid "Don't slide on the first tick of a row" +msgstr "" + +#: src/gui/compatFlags.cpp:208 +msgid "" +"simulates ProTracker's behavior of not applying volume/pitch slides on the " +"first tick of a row." +msgstr "" + +#: src/gui/compatFlags.cpp:210 +msgid "Reset arpeggio position on row change" +msgstr "" + +#: src/gui/compatFlags.cpp:212 +msgid "" +"simulates ProTracker's behavior of arpeggio being bound to the current tick " +"of a row." +msgstr "" + +#: src/gui/compatFlags.cpp:216 +msgid "Pitch/Playback" +msgstr "" + +#: src/gui/compatFlags.cpp:217 +msgid "Pitch linearity:" +msgstr "" + +#: src/gui/compatFlags.cpp:223 +msgid "like ProTracker/FamiTracker" +msgstr "" + +#: src/gui/compatFlags.cpp:227 +msgid "Partial (only 04xy/E5xx)" +msgstr "" + +#: src/gui/compatFlags.cpp:231 +msgid "" +"like DefleMask\n" +"\n" +"this pitch linearity mode is deprecated due to:\n" +"- excessive complexity\n" +"- lack of possible optimization\n" +"\n" +"it is recommended to change it now because I will remove this option in the " +"future!" +msgstr "" + +#: src/gui/compatFlags.cpp:235 +msgid "Full" +msgstr "" + +#: src/gui/compatFlags.cpp:239 +msgid "like Impulse Tracker" +msgstr "" + +#: src/gui/compatFlags.cpp:246 +msgid "Pitch slide speed multiplier" +msgstr "" + +#: src/gui/compatFlags.cpp:252 +msgid "Loop modality:" +msgstr "" + +#: src/gui/compatFlags.cpp:254 +msgid "Reset channels" +msgstr "" + +#: src/gui/compatFlags.cpp:258 +msgid "" +"select to reset channels on loop. may trigger a voltage click on every loop!" +msgstr "" + +#: src/gui/compatFlags.cpp:260 +msgid "Soft reset channels" +msgstr "" + +#: src/gui/compatFlags.cpp:264 +msgid "select to turn channels off on loop." +msgstr "" + +#: src/gui/compatFlags.cpp:266 +msgid "Do nothing" +msgstr "" + +#: src/gui/compatFlags.cpp:270 +msgid "select to not reset channels on loop." +msgstr "" + +#: src/gui/compatFlags.cpp:274 +msgid "Cut/delay effect policy:" +msgstr "" + +#: src/gui/compatFlags.cpp:280 +msgid "only when time is less than speed (like DefleMask/ProTracker)" +msgstr "" + +#: src/gui/compatFlags.cpp:282 +msgid "Strict (old)" +msgstr "" + +#: src/gui/compatFlags.cpp:286 +msgid "only when time is less than or equal to speed (original buggy behavior)" +msgstr "" + +#: src/gui/compatFlags.cpp:292 +msgid "no checks" +msgstr "" + +#: src/gui/compatFlags.cpp:296 +msgid "Simultaneous jump (0B+0D) treatment:" +msgstr "" + +#: src/gui/compatFlags.cpp:302 +msgid "accept 0B+0D to jump to a specific row of an order" +msgstr "" + +#: src/gui/compatFlags.cpp:308 +msgid "only accept the first jump effect" +msgstr "" + +#: src/gui/compatFlags.cpp:314 +msgid "only accept 0Dxx" +msgstr "" + +#: src/gui/compatFlags.cpp:320 +msgid "Auto-insert one tick gap between notes" +msgstr "" + +#: src/gui/compatFlags.cpp:322 +msgid "" +"when enabled, a one-tick note cut will be inserted between non-legato/non-" +"portamento notes.\n" +"this simulates the behavior of some Amiga/SNES music engines.\n" +"\n" +"ineffective on C64." +msgstr "" + +#: src/gui/compatFlags.cpp:327 +msgid "Don't reset slides after note off" +msgstr "" + +#: src/gui/compatFlags.cpp:329 +msgid "when enabled, note off will not reset the channel's slide effect." +msgstr "" + +#: src/gui/compatFlags.cpp:331 +msgid "Don't reset portamento after reaching target" +msgstr "" + +#: src/gui/compatFlags.cpp:333 +msgid "" +"when enabled, the slide effect will not be disabled after it reaches its " +"target." +msgstr "" + +#: src/gui/compatFlags.cpp:335 +msgid "Continuous vibrato" +msgstr "" + +#: src/gui/compatFlags.cpp:337 +msgid "when enabled, vibrato phase/position will not be reset on a new note." +msgstr "" + +#: src/gui/compatFlags.cpp:339 +msgid "Pitch macro is not linear" +msgstr "" + +#: src/gui/compatFlags.cpp:341 +msgid "" +"when enabled, the pitch macro of an instrument is in frequency/period space." +msgstr "" + +#: src/gui/compatFlags.cpp:343 +msgid "Reset arpeggio effect position on new note" +msgstr "" + +#: src/gui/compatFlags.cpp:345 +msgid "when enabled, arpeggio effect (00xy) position is reset on a new note." +msgstr "" + +#: src/gui/compatFlags.cpp:347 +msgid "Volume scaling rounds up" +msgstr "" + +#: src/gui/compatFlags.cpp:349 +msgid "" +"when enabled, volume macros round up when applied\n" +"this prevents volume scaling from causing vol=0, which is silent on some " +"chips\n" +"\n" +"ineffective on logarithmic channels" +msgstr "" + +#: src/gui/guiConst.cpp:127 +msgid "Generic Sample" +msgstr "" + +#: src/gui/guiConst.cpp:155 +msgid "OPL (drums)" +msgstr "" + +#: src/gui/guiConst.cpp:191 +msgid "Forward" +msgstr "" + +#: src/gui/guiConst.cpp:192 +msgid "Backward" +msgstr "" + +#: src/gui/guiConst.cpp:193 +msgid "Ping pong" +msgstr "" + +#: src/gui/guiConst.cpp:218 +msgid "linear" +msgstr "" + +#: src/gui/guiConst.cpp:219 +msgid "cubic spline" +msgstr "" + +#: src/gui/guiConst.cpp:220 +msgid "blep synthesis" +msgstr "" + +#: src/gui/guiConst.cpp:221 +msgid "sinc" +msgstr "" + +#: src/gui/guiConst.cpp:222 +msgid "best possible" +msgstr "" + +#: src/gui/guiConst.cpp:226 src/gui/sampleEdit.cpp:137 +#: src/gui/sampleEdit.cpp:143 +msgid "Invalid" +msgstr "" + +#: src/gui/guiConst.cpp:231 +msgid "Time" +msgstr "" + +#: src/gui/guiConst.cpp:233 +msgid "System (Primary)" +msgstr "" + +#: src/gui/guiConst.cpp:234 +msgid "System (Secondary)" +msgstr "" + +#: src/gui/guiConst.cpp:530 +msgid "---Global" +msgstr "" + +#: src/gui/guiConst.cpp:532 +msgid "Open file" +msgstr "" + +#: src/gui/guiConst.cpp:533 +msgid "Restore backup" +msgstr "" + +#: src/gui/guiConst.cpp:534 +msgid "Save file" +msgstr "" + +#: src/gui/guiConst.cpp:535 +msgid "Save as" +msgstr "" + +#: src/gui/guiConst.cpp:537 src/gui/sampleEdit.cpp:982 +msgid "Undo" +msgstr "" + +#: src/gui/guiConst.cpp:539 src/gui/guiConst.cpp:541 src/gui/sampleEdit.cpp:989 +msgid "Redo" +msgstr "" + +#: src/gui/guiConst.cpp:543 +msgid "Exit" +msgstr "" + +#: src/gui/guiConst.cpp:544 +msgid "Play/Stop (toggle)" +msgstr "" + +#: src/gui/guiConst.cpp:547 +msgid "Play (from beginning)" +msgstr "" + +#: src/gui/guiConst.cpp:548 +msgid "Play (repeat pattern)" +msgstr "" + +#: src/gui/guiConst.cpp:549 +msgid "Play from cursor" +msgstr "" + +#: src/gui/guiConst.cpp:550 +msgid "Step row" +msgstr "" + +#: src/gui/guiConst.cpp:551 +msgid "Octave up" +msgstr "" + +#: src/gui/guiConst.cpp:552 +msgid "Octave down" +msgstr "" + +#: src/gui/guiConst.cpp:553 +msgid "Previous instrument" +msgstr "" + +#: src/gui/guiConst.cpp:554 +msgid "Next instrument" +msgstr "" + +#: src/gui/guiConst.cpp:555 +msgid "Increase edit step" +msgstr "" + +#: src/gui/guiConst.cpp:556 +msgid "Decrease edit step" +msgstr "" + +#: src/gui/guiConst.cpp:557 +msgid "Toggle edit mode" +msgstr "" + +#: src/gui/guiConst.cpp:559 +msgid "Toggle repeat pattern" +msgstr "" + +#: src/gui/guiConst.cpp:562 +msgid "Toggle full-screen" +msgstr "" + +#: src/gui/guiConst.cpp:563 +msgid "Request voice from TX81Z" +msgstr "" + +#: src/gui/guiConst.cpp:565 +msgid "Clear song data" +msgstr "" + +#: src/gui/guiConst.cpp:567 src/gui/gui.cpp:5573 src/gui/gui.cpp:5625 +msgid "Command Palette" +msgstr "" + +#: src/gui/guiConst.cpp:569 +msgid "Recent files (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:570 +msgid "Instruments (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:571 +msgid "Samples (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:572 +msgid "Change instrument (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:573 +msgid "Add chip (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:578 +msgid "Instrument List" +msgstr "" + +#: src/gui/guiConst.cpp:579 src/gui/insEdit.cpp:5203 +msgid "Instrument Editor" +msgstr "" + +#: src/gui/guiConst.cpp:580 +msgid "Song Information" +msgstr "" + +#: src/gui/guiConst.cpp:583 +msgid "Wavetable List" +msgstr "" + +#: src/gui/guiConst.cpp:584 src/gui/waveEdit.cpp:409 +msgid "Wavetable Editor" +msgstr "" + +#: src/gui/guiConst.cpp:585 +msgid "Sample List" +msgstr "" + +#: src/gui/guiConst.cpp:594 +msgid "Debug Menu" +msgstr "" + +#: src/gui/guiConst.cpp:595 +msgid "Oscilloscope (master)" +msgstr "" + +#: src/gui/guiConst.cpp:603 src/gui/sysManager.cpp:41 +msgid "Chip Manager" +msgstr "" + +#: src/gui/guiConst.cpp:614 src/gui/csPlayer.cpp:112 +msgid "Command Stream Player" +msgstr "" + +#: src/gui/guiConst.cpp:615 +msgid "User Presets" +msgstr "" + +#: src/gui/guiConst.cpp:617 +msgid "Collapse/expand current window" +msgstr "" + +#: src/gui/guiConst.cpp:618 +msgid "Close current window" +msgstr "" + +#: src/gui/guiConst.cpp:621 +msgid "---Pattern" +msgstr "" + +#: src/gui/guiConst.cpp:622 +msgid "Transpose (+1)" +msgstr "" + +#: src/gui/guiConst.cpp:623 +msgid "Transpose (-1)" +msgstr "" + +#: src/gui/guiConst.cpp:624 +msgid "Transpose (+1 octave)" +msgstr "" + +#: src/gui/guiConst.cpp:625 +msgid "Transpose (-1 octave)" +msgstr "" + +#: src/gui/guiConst.cpp:626 +msgid "Increase values (+1)" +msgstr "" + +#: src/gui/guiConst.cpp:627 +msgid "Increase values (-1)" +msgstr "" + +#: src/gui/guiConst.cpp:628 +msgid "Increase values (+16)" +msgstr "" + +#: src/gui/guiConst.cpp:629 +msgid "Increase values (-16)" +msgstr "" + +#: src/gui/guiConst.cpp:630 +msgid "Select all" +msgstr "" + +#: src/gui/guiConst.cpp:631 +msgid "Cut" +msgstr "" + +#: src/gui/guiConst.cpp:632 +msgid "Copy" +msgstr "" + +#: src/gui/guiConst.cpp:633 +msgid "Paste" +msgstr "" + +#: src/gui/guiConst.cpp:634 +msgid "Paste Mix (foreground)" +msgstr "" + +#: src/gui/guiConst.cpp:635 +msgid "Paste Mix (background)" +msgstr "" + +#: src/gui/guiConst.cpp:636 +msgid "Paste Flood" +msgstr "" + +#: src/gui/guiConst.cpp:637 +msgid "Paste Overflow" +msgstr "" + +#: src/gui/guiConst.cpp:638 +msgid "Move cursor up" +msgstr "" + +#: src/gui/guiConst.cpp:639 +msgid "Move cursor down" +msgstr "" + +#: src/gui/guiConst.cpp:640 +msgid "Move cursor left" +msgstr "" + +#: src/gui/guiConst.cpp:641 +msgid "Move cursor right" +msgstr "" + +#: src/gui/guiConst.cpp:642 +msgid "Move cursor up by one (override Edit Step)" +msgstr "" + +#: src/gui/guiConst.cpp:643 +msgid "Move cursor down by one (override Edit Step)" +msgstr "" + +#: src/gui/guiConst.cpp:644 +msgid "Move cursor to previous channel" +msgstr "" + +#: src/gui/guiConst.cpp:645 +msgid "Move cursor to next channel" +msgstr "" + +#: src/gui/guiConst.cpp:646 +msgid "Move cursor to next channel (overflow)" +msgstr "" + +#: src/gui/guiConst.cpp:647 +msgid "Move cursor to previous channel (overflow)" +msgstr "" + +#: src/gui/guiConst.cpp:648 +msgid "Move cursor to beginning of pattern" +msgstr "" + +#: src/gui/guiConst.cpp:649 +msgid "Move cursor to end of pattern" +msgstr "" + +#: src/gui/guiConst.cpp:650 +msgid "Move cursor up (coarse)" +msgstr "" + +#: src/gui/guiConst.cpp:651 +msgid "Move cursor down (coarse)" +msgstr "" + +#: src/gui/guiConst.cpp:652 +msgid "Expand selection upwards" +msgstr "" + +#: src/gui/guiConst.cpp:653 +msgid "Expand selection downwards" +msgstr "" + +#: src/gui/guiConst.cpp:654 +msgid "Expand selection to the left" +msgstr "" + +#: src/gui/guiConst.cpp:655 +msgid "Expand selection to the right" +msgstr "" + +#: src/gui/guiConst.cpp:656 +msgid "Expand selection upwards by one (override Edit Step)" +msgstr "" + +#: src/gui/guiConst.cpp:657 +msgid "Expand selection downwards by one (override Edit Step)" +msgstr "" + +#: src/gui/guiConst.cpp:658 +msgid "Expand selection to beginning of pattern" +msgstr "" + +#: src/gui/guiConst.cpp:659 +msgid "Expand selection to end of pattern" +msgstr "" + +#: src/gui/guiConst.cpp:660 +msgid "Expand selection upwards (coarse)" +msgstr "" + +#: src/gui/guiConst.cpp:661 +msgid "Expand selection downwards (coarse)" +msgstr "" + +#: src/gui/guiConst.cpp:662 +msgid "Move selection up" +msgstr "" + +#: src/gui/guiConst.cpp:663 +msgid "Move selection down" +msgstr "" + +#: src/gui/guiConst.cpp:664 +msgid "Move selection to previous channel" +msgstr "" + +#: src/gui/guiConst.cpp:665 +msgid "Move selection to next channel" +msgstr "" + +#: src/gui/guiConst.cpp:667 +msgid "Pull delete" +msgstr "" + +#: src/gui/guiConst.cpp:668 +msgid "Insert" +msgstr "" + +#: src/gui/guiConst.cpp:669 +msgid "Mute channel at cursor" +msgstr "" + +#: src/gui/guiConst.cpp:670 +msgid "Solo channel at cursor" +msgstr "" + +#: src/gui/guiConst.cpp:671 +msgid "Unmute all channels" +msgstr "" + +#: src/gui/guiConst.cpp:672 +msgid "Go to next order" +msgstr "" + +#: src/gui/guiConst.cpp:673 +msgid "Go to previous order" +msgstr "" + +#: src/gui/guiConst.cpp:674 +msgid "Collapse channel at cursor" +msgstr "" + +#: src/gui/guiConst.cpp:675 +msgid "Increase effect columns" +msgstr "" + +#: src/gui/guiConst.cpp:676 +msgid "Decrease effect columns" +msgstr "" + +#: src/gui/guiConst.cpp:677 +msgid "Interpolate" +msgstr "" + +#: src/gui/guiConst.cpp:678 src/gui/insEdit.cpp:530 +msgid "Fade" +msgstr "" + +#: src/gui/guiConst.cpp:679 +msgid "Invert values" +msgstr "" + +#: src/gui/guiConst.cpp:680 +msgid "Flip selection" +msgstr "" + +#: src/gui/guiConst.cpp:681 +msgid "Collapse rows" +msgstr "" + +#: src/gui/guiConst.cpp:682 +msgid "Expand rows" +msgstr "" + +#: src/gui/guiConst.cpp:683 +msgid "Collapse pattern" +msgstr "" + +#: src/gui/guiConst.cpp:684 +msgid "Expand pattern" +msgstr "" + +#: src/gui/guiConst.cpp:685 +msgid "Collapse song" +msgstr "" + +#: src/gui/guiConst.cpp:686 +msgid "Expand song" +msgstr "" + +#: src/gui/guiConst.cpp:687 +msgid "Set note input latch" +msgstr "" + +#: src/gui/guiConst.cpp:688 +msgid "Change mobile scroll mode" +msgstr "" + +#: src/gui/guiConst.cpp:689 +msgid "Clear note input latch" +msgstr "" + +#: src/gui/guiConst.cpp:692 +msgid "---Instrument list" +msgstr "" + +#: src/gui/guiConst.cpp:693 +msgid "Add instrument" +msgstr "" + +#: src/gui/guiConst.cpp:694 +msgid "Duplicate instrument" +msgstr "" + +#: src/gui/guiConst.cpp:695 +msgid "Open instrument" +msgstr "" + +#: src/gui/guiConst.cpp:696 +msgid "Open instrument (replace current)" +msgstr "" + +#: src/gui/guiConst.cpp:697 +msgid "Save instrument" +msgstr "" + +#: src/gui/guiConst.cpp:698 +msgid "Save instrument (.dmp)" +msgstr "" + +#: src/gui/guiConst.cpp:699 +msgid "Move instrument up in list" +msgstr "" + +#: src/gui/guiConst.cpp:700 +msgid "Move instrument down in list" +msgstr "" + +#: src/gui/guiConst.cpp:701 +msgid "Delete instrument" +msgstr "" + +#: src/gui/guiConst.cpp:702 +msgid "Edit instrument" +msgstr "" + +#: src/gui/guiConst.cpp:703 +msgid "Instrument cursor up" +msgstr "" + +#: src/gui/guiConst.cpp:704 +msgid "Instrument cursor down" +msgstr "" + +#: src/gui/guiConst.cpp:705 +msgid "Instruments: toggle folders/standard view" +msgstr "" + +#: src/gui/guiConst.cpp:708 +msgid "---Wavetable list" +msgstr "" + +#: src/gui/guiConst.cpp:709 +msgid "Add wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:710 +msgid "Duplicate wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:711 +msgid "Open wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:712 +msgid "Open wavetable (replace current)" +msgstr "" + +#: src/gui/guiConst.cpp:713 +msgid "Save wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:714 +msgid "Save wavetable (.dmw)" +msgstr "" + +#: src/gui/guiConst.cpp:715 +msgid "Save wavetable (raw)" +msgstr "" + +#: src/gui/guiConst.cpp:716 +msgid "Move wavetable up in list" +msgstr "" + +#: src/gui/guiConst.cpp:717 +msgid "Move wavetable down in list" +msgstr "" + +#: src/gui/guiConst.cpp:718 +msgid "Delete wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:719 +msgid "Edit wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:720 +msgid "Wavetable cursor up" +msgstr "" + +#: src/gui/guiConst.cpp:721 +msgid "Wavetable cursor down" +msgstr "" + +#: src/gui/guiConst.cpp:722 +msgid "Wavetables: toggle folders/standard view" +msgstr "" + +#: src/gui/guiConst.cpp:725 +msgid "---Sample list" +msgstr "" + +#: src/gui/guiConst.cpp:726 +msgid "Add sample" +msgstr "" + +#: src/gui/guiConst.cpp:727 +msgid "Duplicate sample" +msgstr "" + +#: src/gui/guiConst.cpp:728 +msgid "Open sample" +msgstr "" + +#: src/gui/guiConst.cpp:729 +msgid "Open sample (replace current)" +msgstr "" + +#: src/gui/guiConst.cpp:730 +msgid "Import raw sample data" +msgstr "" + +#: src/gui/guiConst.cpp:731 +msgid "Import raw sample data (replace current)" +msgstr "" + +#: src/gui/guiConst.cpp:732 +msgid "Save sample" +msgstr "" + +#: src/gui/guiConst.cpp:733 +msgid "Save sample (raw)" +msgstr "" + +#: src/gui/guiConst.cpp:734 +msgid "Move sample up in list" +msgstr "" + +#: src/gui/guiConst.cpp:735 +msgid "Move sample down in list" +msgstr "" + +#: src/gui/guiConst.cpp:736 +msgid "Delete sample" +msgstr "" + +#: src/gui/guiConst.cpp:737 +msgid "Edit sample" +msgstr "" + +#: src/gui/guiConst.cpp:738 +msgid "Sample cursor up" +msgstr "" + +#: src/gui/guiConst.cpp:739 +msgid "Sample cursor down" +msgstr "" + +#: src/gui/guiConst.cpp:741 src/gui/sampleEdit.cpp:1339 +msgid "Stop sample preview" +msgstr "" + +#: src/gui/guiConst.cpp:742 +msgid "Samples: Toggle folders/standard view" +msgstr "" + +#: src/gui/guiConst.cpp:743 +msgid "Samples: Make me a drum kit" +msgstr "" + +#: src/gui/guiConst.cpp:746 +msgid "---Sample editor" +msgstr "" + +#: src/gui/guiConst.cpp:747 +msgid "Sample editor mode: Select" +msgstr "" + +#: src/gui/guiConst.cpp:748 +msgid "Sample editor mode: Draw" +msgstr "" + +#: src/gui/guiConst.cpp:749 +msgid "Sample editor: Cut" +msgstr "" + +#: src/gui/guiConst.cpp:750 +msgid "Sample editor: Copy" +msgstr "" + +#: src/gui/guiConst.cpp:751 +msgid "Sample editor: Paste" +msgstr "" + +#: src/gui/guiConst.cpp:752 +msgid "Sample editor: Paste replace" +msgstr "" + +#: src/gui/guiConst.cpp:753 +msgid "Sample editor: Paste mix" +msgstr "" + +#: src/gui/guiConst.cpp:754 +msgid "Sample editor: Select all" +msgstr "" + +#: src/gui/guiConst.cpp:755 +msgid "Sample editor: Resize" +msgstr "" + +#: src/gui/guiConst.cpp:756 +msgid "Sample editor: Resample" +msgstr "" + +#: src/gui/guiConst.cpp:757 +msgid "Sample editor: Amplify" +msgstr "" + +#: src/gui/guiConst.cpp:758 +msgid "Sample editor: Normalize" +msgstr "" + +#: src/gui/guiConst.cpp:759 +msgid "Sample editor: Fade in" +msgstr "" + +#: src/gui/guiConst.cpp:760 +msgid "Sample editor: Fade out" +msgstr "" + +#: src/gui/guiConst.cpp:761 +msgid "Sample editor: Apply silence" +msgstr "" + +#: src/gui/guiConst.cpp:762 +msgid "Sample editor: Insert silence" +msgstr "" + +#: src/gui/guiConst.cpp:763 +msgid "Sample editor: Delete" +msgstr "" + +#: src/gui/guiConst.cpp:764 +msgid "Sample editor: Trim" +msgstr "" + +#: src/gui/guiConst.cpp:765 +msgid "Sample editor: Reverse" +msgstr "" + +#: src/gui/guiConst.cpp:766 +msgid "Sample editor: Invert" +msgstr "" + +#: src/gui/guiConst.cpp:767 +msgid "Sample editor: Signed/unsigned exchange" +msgstr "" + +#: src/gui/guiConst.cpp:768 +msgid "Sample editor: Apply filter" +msgstr "" + +#: src/gui/guiConst.cpp:769 +msgid "Sample editor: Crossfade loop points" +msgstr "" + +#: src/gui/guiConst.cpp:770 +msgid "Sample editor: Preview sample" +msgstr "" + +#: src/gui/guiConst.cpp:771 +msgid "Sample editor: Stop sample preview" +msgstr "" + +#: src/gui/guiConst.cpp:772 +msgid "Sample editor: Zoom in" +msgstr "" + +#: src/gui/guiConst.cpp:773 +msgid "Sample editor: Zoom out" +msgstr "" + +#: src/gui/guiConst.cpp:774 +msgid "Sample editor: Toggle auto-zoom" +msgstr "" + +#: src/gui/guiConst.cpp:775 +msgid "Sample editor: Create instrument from sample" +msgstr "" + +#: src/gui/guiConst.cpp:776 +msgid "Sample editor: Set loop to selection" +msgstr "" + +#: src/gui/guiConst.cpp:777 +msgid "Sample editor: Create wavetable from selection" +msgstr "" + +#: src/gui/guiConst.cpp:780 +msgid "---Orders" +msgstr "" + +#: src/gui/guiConst.cpp:781 +msgid "Previous order" +msgstr "" + +#: src/gui/guiConst.cpp:782 +msgid "Next order" +msgstr "" + +#: src/gui/guiConst.cpp:783 +msgid "Order cursor left" +msgstr "" + +#: src/gui/guiConst.cpp:784 +msgid "Order cursor right" +msgstr "" + +#: src/gui/guiConst.cpp:785 +msgid "Increase order value" +msgstr "" + +#: src/gui/guiConst.cpp:786 +msgid "Decrease order value" +msgstr "" + +#: src/gui/guiConst.cpp:787 +msgid "Switch order edit mode" +msgstr "" + +#: src/gui/guiConst.cpp:788 +msgid "Order: toggle alter entire row" +msgstr "" + +#: src/gui/guiConst.cpp:789 +msgid "Add order" +msgstr "" + +#: src/gui/guiConst.cpp:790 +msgid "Duplicate order" +msgstr "" + +#: src/gui/guiConst.cpp:791 +msgid "Deep clone order" +msgstr "" + +#: src/gui/guiConst.cpp:792 +msgid "Copy current order to end of song" +msgstr "" + +#: src/gui/guiConst.cpp:793 +msgid "Deep clone current order to end of song" +msgstr "" + +#: src/gui/guiConst.cpp:797 +msgid "Replay order" +msgstr "" + +#: src/gui/guiConst.cpp:1392 +msgid "All chips" +msgstr "" + +#: src/gui/guiConst.cpp:1396 src/gui/insEdit.cpp:6954 src/gui/insEdit.cpp:7204 +#: src/gui/insEdit.cpp:7458 src/gui/insEdit.cpp:7480 +msgid "Special" +msgstr "" + +#: src/gui/piano.cpp:103 +msgid "Options" +msgstr "" + +#: src/gui/piano.cpp:106 +msgid "Key layout:" +msgstr "" + +#: src/gui/piano.cpp:111 +msgid "Standard" +msgstr "" + +#: src/gui/piano.cpp:114 +msgid "Continuous" +msgstr "" + +#: src/gui/piano.cpp:118 +msgid "Value input pad:" +msgstr "" + +#: src/gui/piano.cpp:120 +msgid "Disabled" +msgstr "" + +#: src/gui/piano.cpp:123 +msgid "Replace piano" +msgstr "" + +#: src/gui/piano.cpp:126 +msgid "Split (automatic)" +msgstr "" + +#: src/gui/piano.cpp:129 +msgid "Split (always visible)" +msgstr "" + +#: src/gui/piano.cpp:133 +msgid "Share play/edit offset/range" +msgstr "" + +#: src/gui/piano.cpp:134 +msgid "Read-only (can't input notes)" +msgstr "" + +#: src/gui/waveEdit.cpp:30 src/gui/waveEdit.cpp:192 src/gui/insEdit.cpp:177 +#: src/gui/insEdit.cpp:188 src/gui/insEdit.cpp:199 +msgid "Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:32 src/gui/waveEdit.cpp:202 src/gui/insEdit.cpp:325 +#: src/gui/insEdit.cpp:654 +msgid "Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:39 +msgid "Cosine" +msgstr "" + +#: src/gui/waveEdit.cpp:193 +msgid "Rect. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:194 +msgid "Abs. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:195 +msgid "Quart. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:196 +msgid "Squish. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:197 +msgid "Abs. Squish. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:200 +msgid "rectSquare" +msgstr "" + +#: src/gui/waveEdit.cpp:203 +msgid "Rect. Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:204 +msgid "Abs. Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:206 +msgid "Cubed Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:207 +msgid "Rect. Cubed Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:208 +msgid "Abs. Cubed Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:210 +msgid "Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:211 +msgid "Rect. Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:212 +msgid "Abs. Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:213 +msgid "Quart. Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:214 +msgid "Squish. Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:215 +msgid "Squish. Abs. Cub. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:218 +msgid "Rect. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:219 +msgid "Abs. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:220 +msgid "Quart. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:221 +msgid "Squish. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:222 +msgid "Abs. Squish. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:224 +msgid "Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:225 +msgid "Rect. Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:226 +msgid "Abs. Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:227 +msgid "Quart. Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:228 +msgid "Squish. Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:229 +msgid "Squish. Abs. Cub. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:412 src/gui/waveEdit.cpp:413 +msgid "no wavetable selected" +msgstr "" + +#: src/gui/waveEdit.cpp:424 src/gui/sampleEdit.cpp:111 src/gui/insEdit.cpp:5223 +msgid "select one..." +msgstr "" + +#: src/gui/waveEdit.cpp:432 src/gui/waveEdit.cpp:439 src/gui/sampleEdit.cpp:119 +#: src/gui/sampleEdit.cpp:126 src/gui/insEdit.cpp:5236 src/gui/insEdit.cpp:5243 +msgid "or" +msgstr "" + +#: src/gui/waveEdit.cpp:441 src/gui/sampleEdit.cpp:128 src/gui/insEdit.cpp:5245 +msgid "Create New" +msgstr "" + +#: src/gui/waveEdit.cpp:487 +msgid "Steps" +msgstr "" + +#: src/gui/waveEdit.cpp:491 +msgid "Lines" +msgstr "" + +#: src/gui/waveEdit.cpp:496 src/gui/insEdit.cpp:2687 +msgid "Width" +msgstr "" + +#: src/gui/waveEdit.cpp:498 +msgid "" +"use a width of:\n" +"- any on Amiga/N163\n" +"- 32 on Game Boy, PC Engine, SCC, Konami Bubble System, Namco WSG, Virtual " +"Boy and WonderSwan\n" +"- 64 on FDS\n" +"- 128 on X1-010\n" +"any other widths will be scaled during playback." +msgstr "" + +#: src/gui/waveEdit.cpp:510 +msgid "Height" +msgstr "" + +#: src/gui/waveEdit.cpp:512 +msgid "" +"use a height of:\n" +"- 16 for Game Boy, WonderSwan, Namco WSG, Konami Bubble System, X1-010 " +"Envelope shape and N163\n" +"- 32 for PC Engine\n" +"- 64 for FDS and Virtual Boy\n" +"- 256 for X1-010 and SCC\n" +"any other heights will be scaled during playback." +msgstr "" + +#: src/gui/waveEdit.cpp:578 +msgid "Shapes" +msgstr "" + +#: src/gui/waveEdit.cpp:597 src/gui/insEdit.cpp:5879 src/gui/insEdit.cpp:6922 +#: src/gui/insEdit.cpp:6948 src/gui/insEdit.cpp:7008 src/gui/insEdit.cpp:7048 +#: src/gui/insEdit.cpp:7150 src/gui/insEdit.cpp:7436 src/gui/insEdit.cpp:7472 +msgid "Duty" +msgstr "" + +#: src/gui/waveEdit.cpp:607 +msgid "Exponent" +msgstr "" + +#: src/gui/waveEdit.cpp:617 +msgid "XOR Point" +msgstr "" + +#: src/gui/waveEdit.cpp:627 +msgid "Amplitude/Phase" +msgstr "" + +#: src/gui/waveEdit.cpp:679 src/gui/waveEdit.cpp:723 src/gui/waveEdit.cpp:728 +msgid "Op" +msgstr "" + +#: src/gui/waveEdit.cpp:683 +msgid "Mult" +msgstr "" + +#: src/gui/waveEdit.cpp:685 +msgid "FB" +msgstr "" + +#: src/gui/waveEdit.cpp:749 src/gui/waveEdit.cpp:750 +msgid "Connection Diagram" +msgstr "" + +#: src/gui/waveEdit.cpp:765 +msgid "Out" +msgstr "" + +#: src/gui/waveEdit.cpp:872 +msgid "WaveTools" +msgstr "" + +#: src/gui/waveEdit.cpp:890 +msgid "Scale X" +msgstr "" + +#: src/gui/waveEdit.cpp:896 +msgid "wavetable longer than 256 samples!" +msgstr "" + +#: src/gui/waveEdit.cpp:960 +msgid "Scale Y" +msgstr "" + +#: src/gui/waveEdit.cpp:978 +msgid "Offset X" +msgstr "" + +#: src/gui/waveEdit.cpp:1000 +msgid "Offset Y" +msgstr "" + +#: src/gui/waveEdit.cpp:1017 +msgid "Smooth" +msgstr "" + +#: src/gui/waveEdit.cpp:1045 src/gui/sampleEdit.cpp:996 +msgid "Amplify" +msgstr "" + +#: src/gui/waveEdit.cpp:1063 src/gui/sampleEdit.cpp:1046 +msgid "Normalize" +msgstr "" + +#: src/gui/waveEdit.cpp:1105 src/gui/sampleEdit.cpp:1121 +msgid "Reverse" +msgstr "" + +#: src/gui/waveEdit.cpp:1117 +msgid "Half" +msgstr "" + +#: src/gui/waveEdit.cpp:1127 +msgid "Double" +msgstr "" + +#: src/gui/waveEdit.cpp:1137 +msgid "Convert Signed/Unsigned" +msgstr "" + +#: src/gui/waveEdit.cpp:1167 +msgid "Dec" +msgstr "" + +#: src/gui/waveEdit.cpp:1171 src/gui/csPlayer.cpp:247 +msgid "Hex" +msgstr "" + +#: src/gui/waveEdit.cpp:1179 +msgid "Signed/Unsigned" +msgstr "" + +#: src/gui/sampleEdit.cpp:65 +#, c-format +msgid "%s: maximum sample rate is %d" +msgstr "" + +#: src/gui/sampleEdit.cpp:72 +#, c-format +msgid "%s: minimum sample rate is %d" +msgstr "" + +#: src/gui/sampleEdit.cpp:79 +#, c-format +msgid "%s: sample rate must be %d" +msgstr "" + +#: src/gui/sampleEdit.cpp:99 src/gui/sampleEdit.cpp:100 +msgid "no sample selected" +msgstr "" + +#: src/gui/sampleEdit.cpp:229 +#, c-format +msgid "SNES: loop start must be a multiple of 16 (try with %d)" +msgstr "" + +#: src/gui/sampleEdit.cpp:235 +#, c-format +msgid "SNES: loop end must be a multiple of 16 (try with %d)" +msgstr "" + +#: src/gui/sampleEdit.cpp:240 +msgid "SNES: sample length will be padded to multiple of 16" +msgstr "" + +#: src/gui/sampleEdit.cpp:249 +msgid "QSound: loop cannot be longer than 32767 samples" +msgstr "" + +#: src/gui/sampleEdit.cpp:259 +msgid "NES: loop point ignored on DPCM (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:263 +msgid "NES: maximum DPCM sample length is 32648" +msgstr "" + +#: src/gui/sampleEdit.cpp:268 +msgid "X1-010: samples can't loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:271 +msgid "X1-010: maximum sample length is 131072" +msgstr "" + +#: src/gui/sampleEdit.cpp:276 +msgid "GA20: samples can't loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:287 +msgid "YM2608: loop point ignored on ADPCM (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:290 +msgid "YM2608: sample length will be padded to multiple of 512" +msgstr "" + +#: src/gui/sampleEdit.cpp:300 +msgid "YM2610: ADPCM-A samples can't loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:302 +msgid "YM2610: loop point ignored on ADPCM-B (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:305 +msgid "YM2610: sample length will be padded to multiple of 512" +msgstr "" + +#: src/gui/sampleEdit.cpp:309 +msgid "YM2610: maximum ADPCM-A sample length is 2097152" +msgstr "" + +#: src/gui/sampleEdit.cpp:318 +msgid "Y8950: loop point ignored on ADPCM (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:321 +msgid "Y8950: sample length will be padded to multiple of 512" +msgstr "" + +#: src/gui/sampleEdit.cpp:328 +msgid "Amiga: loop start must be a multiple of 2" +msgstr "" + +#: src/gui/sampleEdit.cpp:331 +msgid "Amiga: loop end must be a multiple of 2" +msgstr "" + +#: src/gui/sampleEdit.cpp:335 +msgid "Amiga: maximum sample length is 131070" +msgstr "" + +#: src/gui/sampleEdit.cpp:344 +msgid "SegaPCM: maximum sample length is 65280" +msgstr "" + +#: src/gui/sampleEdit.cpp:353 +msgid "K053260: loop point ignored (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:357 +msgid "K053260: maximum sample length is 65535" +msgstr "" + +#: src/gui/sampleEdit.cpp:362 +msgid "C140: maximum sample length is 65535" +msgstr "" + +#: src/gui/sampleEdit.cpp:371 +msgid "C219: loop start must be a multiple of 2" +msgstr "" + +#: src/gui/sampleEdit.cpp:374 +msgid "C219: loop end must be a multiple of 2" +msgstr "" + +#: src/gui/sampleEdit.cpp:378 +msgid "C219: maximum sample length is 131072" +msgstr "" + +#: src/gui/sampleEdit.cpp:386 +msgid "MSM6295: samples can't loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:389 +msgid "MSM6295: maximum bankswitched sample length is 129024" +msgstr "" + +#: src/gui/sampleEdit.cpp:395 +msgid "GBA DMA: loop start must be a multiple of 4" +msgstr "" + +#: src/gui/sampleEdit.cpp:398 +msgid "GBA DMA: loop length must be a multiple of 16" +msgstr "" + +#: src/gui/sampleEdit.cpp:402 +msgid "GBA DMA: sample length will be padded to multiple of 16" +msgstr "" + +#: src/gui/sampleEdit.cpp:411 +msgid "ES5506: backward loop mode isn't supported" +msgstr "" + +#: src/gui/sampleEdit.cpp:414 +msgid "" +"backward/ping-pong only supported in Generic PCM DAC\n" +"ping-pong also on ES5506" +msgstr "" + +#: src/gui/sampleEdit.cpp:444 +msgid "Info" +msgstr "" + +#: src/gui/sampleEdit.cpp:447 src/gui/sampleEdit.cpp:933 +msgid "Rate" +msgstr "" + +#: src/gui/sampleEdit.cpp:453 +msgid "Compat Rate" +msgstr "" + +#: src/gui/sampleEdit.cpp:457 +msgid "" +"used in DefleMask-compatible sample mode (17xx), in where samples are mapped " +"to an octave." +msgstr "" + +#: src/gui/sampleEdit.cpp:463 +#, c-format +msgid "Loop (length: %d)##Loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:463 src/gui/insEdit.cpp:544 src/gui/insEdit.cpp:554 +#: src/gui/insEdit.cpp:605 src/gui/insEdit.cpp:6017 +msgid "Loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:487 src/gui/sampleEdit.cpp:716 +#: src/gui/sampleEdit.cpp:752 +msgid "changing the loop in a BRR sample may result in glitches!" +msgstr "" + +#: src/gui/sampleEdit.cpp:529 +msgid "BRR emphasis" +msgstr "" + +#: src/gui/sampleEdit.cpp:538 +msgid "" +"this is a BRR sample.\n" +"enabling this option will muffle it (only affects non-SNES chips)." +msgstr "" + +#: src/gui/sampleEdit.cpp:540 +msgid "" +"enable this option to slightly boost high frequencies\n" +"to compensate for the SNES' Gaussian filter's muffle." +msgstr "" + +#: src/gui/sampleEdit.cpp:546 +msgid "8-bit dither" +msgstr "" + +#: src/gui/sampleEdit.cpp:554 +msgid "dither the sample when used on a chip that only supports 8-bit samples." +msgstr "" + +#: src/gui/sampleEdit.cpp:695 src/gui/gui.cpp:2975 +msgid "Start" +msgstr "" + +#: src/gui/sampleEdit.cpp:731 src/gui/gui.cpp:2983 +msgid "End" +msgstr "" + +#: src/gui/sampleEdit.cpp:841 +#, c-format +msgid "" +"%s\n" +"%d bytes free" +msgstr "" + +#: src/gui/sampleEdit.cpp:843 +#, c-format +msgid "" +"%s (%s)\n" +"%d bytes free" +msgstr "" + +#: src/gui/sampleEdit.cpp:847 +msgid "" +"\n" +"\n" +"not enough memory for this sample!" +msgstr "" + +#: src/gui/sampleEdit.cpp:871 +msgid "Edit mode: Select" +msgstr "" + +#: src/gui/sampleEdit.cpp:880 +msgid "Edit mode: Draw" +msgstr "" + +#: src/gui/sampleEdit.cpp:891 src/gui/sampleEdit.cpp:902 +msgid "Resize" +msgstr "" + +#: src/gui/sampleEdit.cpp:906 +msgid "couldn't resize! make sure your sample is 8 or 16-bit." +msgstr "" + +#: src/gui/sampleEdit.cpp:926 src/gui/sampleEdit.cpp:957 +msgid "Resample" +msgstr "" + +#: src/gui/sampleEdit.cpp:951 +msgid "Factor" +msgstr "" + +#: src/gui/sampleEdit.cpp:956 +msgid "Filter" +msgstr "" + +#: src/gui/sampleEdit.cpp:961 +msgid "couldn't resample! make sure your sample is 8 or 16-bit." +msgstr "" + +#: src/gui/sampleEdit.cpp:1010 src/gui/sampleEdit.cpp:1197 +#: src/gui/sampleEdit.cpp:1281 +msgid "Apply" +msgstr "" + +#: src/gui/sampleEdit.cpp:1053 +msgid "Fade in" +msgstr "" + +#: src/gui/sampleEdit.cpp:1060 +msgid "Fade out" +msgstr "" + +#: src/gui/sampleEdit.cpp:1065 +msgid "Insert silence" +msgstr "" + +#: src/gui/sampleEdit.cpp:1076 +msgid "Go" +msgstr "" + +#: src/gui/sampleEdit.cpp:1081 +msgid "couldn't insert! make sure your sample is 8 or 16-bit." +msgstr "" + +#: src/gui/sampleEdit.cpp:1098 +msgid "Apply silence" +msgstr "" + +#: src/gui/sampleEdit.cpp:1112 +msgid "Trim" +msgstr "" + +#: src/gui/sampleEdit.cpp:1135 +msgid "Signed/unsigned exchange" +msgstr "" + +#: src/gui/sampleEdit.cpp:1140 +msgid "Apply filter" +msgstr "" + +#: src/gui/sampleEdit.cpp:1151 +msgid "Cutoff:" +msgstr "" + +#: src/gui/sampleEdit.cpp:1161 src/gui/insEdit.cpp:5895 +#: src/gui/insEdit.cpp:5898 src/gui/insEdit.cpp:6953 src/gui/insEdit.cpp:7216 +#: src/gui/insEdit.cpp:7478 +msgid "Resonance" +msgstr "" + +#: src/gui/sampleEdit.cpp:1167 src/gui/insEdit.cpp:6897 +msgid "Power" +msgstr "" + +#: src/gui/sampleEdit.cpp:1181 +msgid "Low-pass" +msgstr "" + +#: src/gui/sampleEdit.cpp:1186 +msgid "Band-pass" +msgstr "" + +#: src/gui/sampleEdit.cpp:1191 +msgid "High-pass" +msgstr "" + +#: src/gui/sampleEdit.cpp:1262 +msgid "Crossfade loop points" +msgstr "" + +#: src/gui/sampleEdit.cpp:1271 +msgid "Number of samples" +msgstr "" + +#: src/gui/sampleEdit.cpp:1277 +msgid "Linear <-> Equal power" +msgstr "" + +#: src/gui/sampleEdit.cpp:1283 +msgid "Crossfade: length would go out of bounds. Aborted..." +msgstr "" + +#: src/gui/sampleEdit.cpp:1286 +msgid "Crossfade: length would overflow loopStart. Try a smaller random value." +msgstr "" + +#: src/gui/sampleEdit.cpp:1332 +msgid "Preview sample" +msgstr "" + +#: src/gui/sampleEdit.cpp:1346 +msgid "Create instrument from sample" +msgstr "" + +#: src/gui/sampleEdit.cpp:1747 +msgid "paste (replace)" +msgstr "" + +#: src/gui/sampleEdit.cpp:1750 +msgid "paste (mix)" +msgstr "" + +#: src/gui/sampleEdit.cpp:1754 src/gui/gui.cpp:2769 +msgid "select all" +msgstr "" + +#: src/gui/sampleEdit.cpp:1758 +msgid "set loop to selection" +msgstr "" + +#: src/gui/sampleEdit.cpp:1761 +msgid "create wavetable from selection" +msgstr "" + +#: src/gui/sampleEdit.cpp:1767 +msgid "Draw" +msgstr "" + +#: src/gui/sampleEdit.cpp:1767 +msgid "Select" +msgstr "" + +#: src/gui/sampleEdit.cpp:1769 +#, c-format +msgid "%d samples, %d bytes" +msgstr "" + +#: src/gui/sampleEdit.cpp:1784 +#, c-format +msgid " (%d-%d: %d samples)" +msgstr "" + +#: src/gui/sampleEdit.cpp:1976 +msgid "Non-8/16-bit samples cannot be edited without prior conversion." +msgstr "" + +#: src/gui/newSong.cpp:122 src/gui/newSong.cpp:123 +msgid "Choose a System!" +msgstr "" + +#: src/gui/newSong.cpp:179 +msgid "Categories" +msgstr "" + +#: src/gui/newSong.cpp:210 +msgid "no systems here yet!" +msgstr "" + +#: src/gui/newSong.cpp:212 +msgid "no results" +msgstr "" + +#: src/gui/newSong.cpp:228 +msgid "I'm feeling lucky" +msgstr "" + +#: src/gui/newSong.cpp:230 +msgid "no categories available! what in the world." +msgstr "" + +#: src/gui/newSong.cpp:265 +msgid "it appears you're extremely lucky today!" +msgstr "" + +#: src/gui/cursor.cpp:205 +#, c-format +msgid "finish selection: %d.%d,%d - %d.%d,%d" +msgstr "" + +#: src/gui/tutorial.cpp:487 +msgid "" +"Play demo songs?\n" +"- Down: Play current song\n" +"- Up: Play demo songs" +msgstr "" + +#: src/gui/tutorial.cpp:491 +msgid "" +"Welcome to Combat Vehicle!\n" +"\n" +"Controls:\n" +"X - Shoot Arrow Key - Move\n" +"Z - Special Esc - Quit" +msgstr "" + +#: src/gui/tutorial.cpp:496 +msgid "GAME OVER" +msgstr "" + +#: src/gui/tutorial.cpp:498 +msgid "High Score!" +msgstr "" + +#: src/gui/tutorial.cpp:658 +msgid "Welcome!" +msgstr "" + +#: src/gui/tutorial.cpp:661 +msgid "welcome to Furnace, the biggest open-source chiptune tracker!" +msgstr "" + +#: src/gui/tutorial.cpp:665 +msgid "here are some tips to get you started:" +msgstr "" + +#: src/gui/tutorial.cpp:668 +msgid "" +"- add an instrument by clicking on + in Instruments\n" +"- click on the pattern view to focus it\n" +"- channel columns have the following, in this order: note, instrument, " +"volume and effects\n" +"- hit space bar while on the pattern to toggle Edit Mode\n" +"- click on the pattern or use arrow keys to move the cursor\n" +"- values (instrument, volume, effects and effect values) are in hexadecimal\n" +"- hit enter to play/stop the song\n" +"- extend the song by adding more orders in the Orders window\n" +"- click on the Orders matrix to change the patterns of a channel (left click " +"increases; right click decreases)" +msgstr "" + +#: src/gui/tutorial.cpp:680 +msgid "" +"if you need help, you may:\n" +"- read the manual (a file called manual.pdf)\n" +"- ask for help in Discussions (https://github.com/tildearrow/furnace/" +"discussions), the Furnace Discord (https://discord.gg/EfrwT2wq7z) or Furnace " +"in Revolt (official: https://rvlt.gg/GRPS6tmc)" +msgstr "" + +#: src/gui/tutorial.cpp:687 +msgid "" +"if you find any issues, be sure to report them! the issue tracker is here: " +"https://github.com/tildearrow/furnace/issues" +msgstr "" + +#: src/gui/tutorial.cpp:1428 +#, c-format +msgid "STAGE %d" +msgstr "" + +#: src/gui/songInfo.cpp:32 +msgid "Song Info##Song Information" +msgstr "" + +#: src/gui/songInfo.cpp:50 +msgid "Author" +msgstr "" + +#: src/gui/songInfo.cpp:60 +msgid "Album" +msgstr "" + +#: src/gui/songInfo.cpp:79 +msgid "Auto" +msgstr "" + +#: src/gui/songInfo.cpp:100 +msgid "Tuning (A-4)" +msgstr "" + +#: src/gui/grooves.cpp:38 +msgid "use effect 09xx to select a groove pattern." +msgstr "" + +#: src/gui/grooves.cpp:48 src/gui/gui.cpp:4480 +msgid "pattern" +msgstr "" + +#: src/gui/grooves.cpp:132 +msgid "remove" +msgstr "" + +#: src/gui/doAction.cpp:45 src/gui/gui.cpp:4201 +msgid "Unsaved changes! Save changes before opening another file?" +msgstr "" + +#: src/gui/doAction.cpp:52 +msgid "Unsaved changes! Save changes before opening backup?" +msgstr "" + +#: src/gui/doAction.cpp:62 src/gui/gui.cpp:4237 src/gui/gui.cpp:5025 +#: src/gui/gui.cpp:5063 src/gui/gui.cpp:5069 src/gui/gui.cpp:5657 +#: src/gui/gui.cpp:5681 src/gui/gui.cpp:5705 src/gui/gui.cpp:5729 +#: src/gui/gui.cpp:5753 src/gui/gui.cpp:5777 +#, c-format +msgid "Error while saving file! (%s)" +msgstr "" + +#: src/gui/doAction.cpp:189 +msgid "Error while sending request (MIDI output not configured?)" +msgstr "" + +#: src/gui/doAction.cpp:197 +msgid "Select an option: (cannot be undone!)" +msgstr "" + +#: src/gui/doAction.cpp:691 src/gui/doAction.cpp:720 src/gui/doAction.cpp:1593 +#: src/gui/gui.cpp:6091 +msgid "too many instruments!" +msgstr "" + +#: src/gui/doAction.cpp:1124 +msgid "couldn't paste! make sure your sample is 8 or 16-bit." +msgstr "" + +#: src/gui/doAction.cpp:1628 +msgid "select at least one sample!" +msgstr "" + +#: src/gui/doAction.cpp:1630 +msgid "maximum size is 256 samples!" +msgstr "" + +#: src/gui/csPlayer.cpp:113 +msgid "Load" +msgstr "" + +#: src/gui/csPlayer.cpp:117 +msgid "Kill" +msgstr "" + +#: src/gui/csPlayer.cpp:119 +msgid "Kikai wa mou shindeiru!" +msgstr "Машина уже мертва!" + +#: src/gui/csPlayer.cpp:123 +msgid "Burn Current Song" +msgstr "" + +#: src/gui/csPlayer.cpp:141 +msgid "Status" +msgstr "" + +#: src/gui/csPlayer.cpp:148 +msgid "start" +msgstr "" + +#: src/gui/csPlayer.cpp:150 +msgid "PC" +msgstr "" + +#: src/gui/csPlayer.cpp:152 +msgid "wait" +msgstr "" + +#: src/gui/csPlayer.cpp:154 +msgid "SP" +msgstr "" + +#: src/gui/csPlayer.cpp:156 src/gui/insEdit.cpp:2733 +msgid "note" +msgstr "" + +#: src/gui/csPlayer.cpp:158 src/gui/insEdit.cpp:2728 +msgid "pitch" +msgstr "" + +#: src/gui/csPlayer.cpp:160 +msgid "vol" +msgstr "" + +#: src/gui/csPlayer.cpp:162 +msgid "vols" +msgstr "" + +#: src/gui/csPlayer.cpp:164 +msgid "vib" +msgstr "" + +#: src/gui/csPlayer.cpp:166 +msgid "porta" +msgstr "" + +#: src/gui/csPlayer.cpp:168 +msgid "arp" +msgstr "" + +#: src/gui/csPlayer.cpp:203 +msgid "Trace" +msgstr "" + +#: src/gui/csPlayer.cpp:244 +msgid "Disassemble" +msgstr "" + +#: src/gui/gui.cpp:1136 src/gui/gui.cpp:1140 +msgid "the song is over!" +msgstr "" + +#: src/gui/gui.cpp:1667 +msgid "Open File" +msgstr "" + +#: src/gui/gui.cpp:1668 src/gui/gui.cpp:1798 src/gui/gui.cpp:1838 +#: src/gui/gui.cpp:1953 src/gui/gui.cpp:1962 src/gui/gui.cpp:1971 +#: src/gui/gui.cpp:2073 src/gui/gui.cpp:2093 src/gui/gui.cpp:2111 +msgid "compatible files" +msgstr "" + +#: src/gui/gui.cpp:1669 src/gui/gui.cpp:1743 src/gui/gui.cpp:1799 +#: src/gui/gui.cpp:1839 src/gui/gui.cpp:1851 src/gui/gui.cpp:1870 +#: src/gui/gui.cpp:2074 src/gui/gui.cpp:2084 src/gui/gui.cpp:2095 +#: src/gui/gui.cpp:2113 +msgid "all files" +msgstr "" + +#: src/gui/gui.cpp:1676 +msgid "no backups made yet!" +msgstr "" + +#: src/gui/gui.cpp:1681 src/gui/gui.cpp:1690 src/gui/gui.cpp:2130 +msgid "Furnace song" +msgstr "" + +#: src/gui/gui.cpp:1689 +msgid "Save File" +msgstr "" + +#: src/gui/gui.cpp:1698 src/gui/gui.cpp:1708 +msgid "Export DMF" +msgstr "" + +#: src/gui/gui.cpp:1699 +msgid "DefleMask 1.1.3 module" +msgstr "" + +#: src/gui/gui.cpp:1709 +msgid "DefleMask 1.0/legacy module" +msgstr "" + +#: src/gui/gui.cpp:1726 +msgid "Load Instrument" +msgstr "" + +#: src/gui/gui.cpp:1727 +msgid "all compatible files" +msgstr "" + +#: src/gui/gui.cpp:1728 src/gui/gui.cpp:1777 +msgid "Furnace instrument" +msgstr "" + +#: src/gui/gui.cpp:1729 src/gui/gui.cpp:1787 +msgid "DefleMask preset" +msgstr "" + +#: src/gui/gui.cpp:1730 +msgid "TFM Music Maker instrument" +msgstr "" + +#: src/gui/gui.cpp:1731 +msgid "VGM Music Maker instrument" +msgstr "" + +#: src/gui/gui.cpp:1732 +msgid "Scream Tracker 3 instrument" +msgstr "" + +#: src/gui/gui.cpp:1733 +msgid "SoundBlaster instrument" +msgstr "" + +#: src/gui/gui.cpp:1734 +msgid "Wohlstand OPL instrument" +msgstr "" + +#: src/gui/gui.cpp:1735 +msgid "Wohlstand OPN instrument" +msgstr "" + +#: src/gui/gui.cpp:1736 +msgid "Gens KMod patch dump" +msgstr "" + +#: src/gui/gui.cpp:1737 +msgid "BNK file (AdLib)" +msgstr "" + +#: src/gui/gui.cpp:1738 +msgid "FF preset bank" +msgstr "" + +#: src/gui/gui.cpp:1739 +msgid "2612edit GYB preset bank" +msgstr "" + +#: src/gui/gui.cpp:1740 +msgid "VOPM preset bank" +msgstr "" + +#: src/gui/gui.cpp:1741 +msgid "Wohlstand WOPL bank" +msgstr "" + +#: src/gui/gui.cpp:1742 +msgid "Wohlstand WOPN bank" +msgstr "" + +#: src/gui/gui.cpp:1776 src/gui/gui.cpp:1786 +msgid "Save Instrument" +msgstr "" + +#: src/gui/gui.cpp:1797 +msgid "Load Wavetable" +msgstr "" + +#: src/gui/gui.cpp:1809 src/gui/gui.cpp:1818 src/gui/gui.cpp:1827 +msgid "Save Wavetable" +msgstr "" + +#: src/gui/gui.cpp:1810 +msgid "Furnace wavetable" +msgstr "" + +#: src/gui/gui.cpp:1819 +msgid "DefleMask wavetable" +msgstr "" + +#: src/gui/gui.cpp:1828 +msgid "raw data" +msgstr "" + +#: src/gui/gui.cpp:1837 +msgid "Load Sample" +msgstr "" + +#: src/gui/gui.cpp:1850 +msgid "Load Raw Sample" +msgstr "" + +#: src/gui/gui.cpp:1859 +msgid "Save Sample" +msgstr "" + +#: src/gui/gui.cpp:1860 src/gui/gui.cpp:1880 src/gui/gui.cpp:1890 +#: src/gui/gui.cpp:1900 +msgid "Wave file" +msgstr "" + +#: src/gui/gui.cpp:1869 +msgid "Save Raw Sample" +msgstr "" + +#: src/gui/gui.cpp:1879 src/gui/gui.cpp:1889 src/gui/gui.cpp:1899 +msgid "Export Audio" +msgstr "" + +#: src/gui/gui.cpp:1909 +msgid "Export VGM" +msgstr "" + +#: src/gui/gui.cpp:1910 +msgid "VGM file" +msgstr "" + +#: src/gui/gui.cpp:1919 +msgid "Export ZSM" +msgstr "" + +#: src/gui/gui.cpp:1920 +msgid "ZSM file" +msgstr "" + +#: src/gui/gui.cpp:1929 src/gui/gui.cpp:1939 +msgid "Export Command Stream" +msgstr "" + +#: src/gui/gui.cpp:1930 +msgid "text file" +msgstr "" + +#: src/gui/gui.cpp:1940 +msgid "binary file" +msgstr "" + +#: src/gui/gui.cpp:1947 src/gui/gui.cpp:5376 +msgid "Coming soon!" +msgstr "" + +#: src/gui/gui.cpp:1952 src/gui/gui.cpp:1961 src/gui/gui.cpp:1970 +msgid "Select Font" +msgstr "" + +#: src/gui/gui.cpp:1979 +msgid "Select Color File" +msgstr "" + +#: src/gui/gui.cpp:1980 src/gui/gui.cpp:1989 src/gui/gui.cpp:2008 +#: src/gui/gui.cpp:2017 src/gui/gui.cpp:2026 src/gui/gui.cpp:2035 +#: src/gui/gui.cpp:2053 src/gui/gui.cpp:2062 +msgid "configuration files" +msgstr "" + +#: src/gui/gui.cpp:1988 +msgid "Select Keybind File" +msgstr "" + +#: src/gui/gui.cpp:1997 +msgid "Select Layout File" +msgstr "" + +#: src/gui/gui.cpp:1998 src/gui/gui.cpp:2044 +msgid ".ini files" +msgstr "" + +#: src/gui/gui.cpp:2007 +msgid "Select User Presets File" +msgstr "" + +#: src/gui/gui.cpp:2016 +msgid "Select Settings File" +msgstr "" + +#: src/gui/gui.cpp:2025 +msgid "Export Colors" +msgstr "" + +#: src/gui/gui.cpp:2034 +msgid "Export Keybinds" +msgstr "" + +#: src/gui/gui.cpp:2043 +msgid "Export Layout" +msgstr "" + +#: src/gui/gui.cpp:2052 +msgid "Export User Presets" +msgstr "" + +#: src/gui/gui.cpp:2061 +msgid "Export Settings" +msgstr "" + +#: src/gui/gui.cpp:2072 +msgid "Load ROM" +msgstr "" + +#: src/gui/gui.cpp:2082 +msgid "Play Command Stream" +msgstr "" + +#: src/gui/gui.cpp:2083 +msgid "command stream" +msgstr "" + +#: src/gui/gui.cpp:2092 +msgid "Open Test" +msgstr "" + +#: src/gui/gui.cpp:2094 src/gui/gui.cpp:2112 +msgid "another option" +msgstr "" + +#: src/gui/gui.cpp:2110 +msgid "Open Test (Multi)" +msgstr "" + +#: src/gui/gui.cpp:2129 +msgid "Save Test" +msgstr "" + +#: src/gui/gui.cpp:2131 +msgid "DefleMask module" +msgstr "" + +#: src/gui/gui.cpp:2171 +msgid "compression error" +msgstr "" + +#: src/gui/gui.cpp:2183 +msgid "zlib stream error" +msgstr "" + +#: src/gui/gui.cpp:2205 +msgid "zlib finish stream error" +msgstr "" + +#: src/gui/gui.cpp:2316 +msgid "everything OK" +msgstr "" + +#: src/gui/gui.cpp:2334 +msgid "" +"you have loaded a backup!\n" +"if you need to, please save it somewhere.\n" +"\n" +"DO NOT RELY ON THE BACKUP SYSTEM FOR AUTO-SAVE!\n" +"Furnace will not save backups of backups." +msgstr "" + +#: src/gui/gui.cpp:2342 src/gui/gui.cpp:3743 src/gui/gui.cpp:4213 +msgid "Unsaved changes! Save changes before opening file?" +msgstr "" + +#: src/gui/gui.cpp:2736 +msgid "paste special..." +msgstr "" + +#: src/gui/gui.cpp:2737 +msgid "paste mix" +msgstr "" + +#: src/gui/gui.cpp:2738 +msgid "paste mix (background)" +msgstr "" + +#: src/gui/gui.cpp:2739 +msgid "paste with ins (foreground)" +msgstr "" + +#: src/gui/gui.cpp:2741 src/gui/gui.cpp:2753 src/gui/gui.cpp:2963 +msgid "no instruments available" +msgstr "" + +#: src/gui/gui.cpp:2751 +msgid "paste with ins (background)" +msgstr "" + +#: src/gui/gui.cpp:2763 +msgid "paste flood" +msgstr "" + +#: src/gui/gui.cpp:2764 +msgid "paste overflow" +msgstr "" + +#: src/gui/gui.cpp:2773 +msgid "operation mask..." +msgstr "" + +#: src/gui/gui.cpp:2780 +msgid "pull delete" +msgstr "" + +#: src/gui/gui.cpp:2784 +msgid "insert" +msgstr "" + +#: src/gui/gui.cpp:2792 +msgid "transpose (note)" +msgstr "" + +#: src/gui/gui.cpp:2796 +msgid "transpose (value)" +msgstr "" + +#: src/gui/gui.cpp:2808 src/gui/gui.cpp:3052 +msgid "invert values" +msgstr "" + +#: src/gui/gui.cpp:2824 +msgid "collapse/expand" +msgstr "" + +#: src/gui/gui.cpp:2829 +msgid "input latch" +msgstr "" + +#: src/gui/gui.cpp:2856 +msgid "" +"&&: selected instrument\n" +"..: no instrument" +msgstr "" + +#: src/gui/gui.cpp:2910 +msgid "Set" +msgstr "" + +#: src/gui/gui.cpp:2930 +msgid "note up" +msgstr "" + +#: src/gui/gui.cpp:2931 +msgid "note down" +msgstr "" + +#: src/gui/gui.cpp:2932 +msgid "octave up" +msgstr "" + +#: src/gui/gui.cpp:2933 +msgid "octave down" +msgstr "" + +#: src/gui/gui.cpp:2935 +msgid "values up" +msgstr "" + +#: src/gui/gui.cpp:2936 +msgid "values down" +msgstr "" + +#: src/gui/gui.cpp:2937 +msgid "values up (+16)" +msgstr "" + +#: src/gui/gui.cpp:2938 +msgid "values down (-16)" +msgstr "" + +#: src/gui/gui.cpp:2941 +msgid "transpose" +msgstr "" + +#: src/gui/gui.cpp:2949 +msgid "Notes" +msgstr "" + +#: src/gui/gui.cpp:2954 +msgid "Values" +msgstr "" + +#: src/gui/gui.cpp:2961 +msgid "change instrument..." +msgstr "" + +#: src/gui/gui.cpp:2974 +msgid "gradient/fade..." +msgstr "" + +#: src/gui/gui.cpp:2991 src/gui/gui.cpp:3036 +msgid "Nibble mode" +msgstr "" + +#: src/gui/gui.cpp:3000 +msgid "Go ahead" +msgstr "" + +#: src/gui/gui.cpp:3006 src/gui/insEdit.cpp:7604 +msgid "scale..." +msgstr "" + +#: src/gui/gui.cpp:3011 +msgid "Scale" +msgstr "" + +#: src/gui/gui.cpp:3017 src/gui/insEdit.cpp:7632 +msgid "randomize..." +msgstr "" + +#: src/gui/gui.cpp:3018 +msgid "Minimum" +msgstr "" + +#: src/gui/gui.cpp:3027 +msgid "Maximum" +msgstr "" + +#: src/gui/gui.cpp:3056 +msgid "flip selection" +msgstr "" + +#: src/gui/gui.cpp:3059 +msgid "collapse/expand amount##CollapseAmount" +msgstr "" + +#: src/gui/gui.cpp:3068 +msgid "collapse pattern" +msgstr "" + +#: src/gui/gui.cpp:3069 +msgid "expand pattern" +msgstr "" + +#: src/gui/gui.cpp:3074 +msgid "collapse song" +msgstr "" + +#: src/gui/gui.cpp:3075 +msgid "expand song" +msgstr "" + +#: src/gui/gui.cpp:3080 +msgid "find/replace" +msgstr "" + +#: src/gui/gui.cpp:3094 src/gui/gui.cpp:5807 src/gui/gui.cpp:7362 +#, c-format +msgid "could NOT save layout! %s" +msgstr "" + +#: src/gui/gui.cpp:3106 +#, c-format +msgid "could NOT load layout! %s" +msgstr "" + +#: src/gui/gui.cpp:3568 +msgid "" +"Furnace has been started in Safe Mode.\n" +"this means that:\n" +"\n" +"- software rendering is being used\n" +"- audio output may not work\n" +"- font loading is disabled\n" +"\n" +"check any settings which may have made Furnace start up in this mode.\n" +"font loading is one of these." +msgstr "" + +#: src/gui/gui.cpp:4053 +msgid "can't keep going without graphics! Furnace will quit now." +msgstr "" + +#: src/gui/gui.cpp:4191 +msgid "file" +msgstr "" + +#: src/gui/gui.cpp:4192 +msgid "new..." +msgstr "" + +#: src/gui/gui.cpp:4199 +msgid "open..." +msgstr "" + +#: src/gui/gui.cpp:4206 +msgid "open recent" +msgstr "" + +#: src/gui/gui.cpp:4222 +msgid "nothing here yet" +msgstr "" + +#: src/gui/gui.cpp:4225 +msgid "clear history" +msgstr "" + +#: src/gui/gui.cpp:4226 +msgid "Are you sure you want to clear the recent file list?" +msgstr "" + +#: src/gui/gui.cpp:4241 +msgid "save as..." +msgstr "" + +#: src/gui/gui.cpp:4246 src/gui/gui.cpp:4287 +msgid "export audio..." +msgstr "" + +#: src/gui/gui.cpp:4250 src/gui/gui.cpp:4291 +msgid "export VGM..." +msgstr "" + +#: src/gui/gui.cpp:4259 src/gui/gui.cpp:4300 +msgid "export ZSM..." +msgstr "" + +#: src/gui/gui.cpp:4269 src/gui/gui.cpp:4310 +msgid "export Amiga validation data..." +msgstr "" + +#: src/gui/gui.cpp:4274 src/gui/gui.cpp:4315 +msgid "export text..." +msgstr "" + +#: src/gui/gui.cpp:4278 src/gui/gui.cpp:4319 +msgid "export command stream..." +msgstr "" + +#: src/gui/gui.cpp:4282 src/gui/gui.cpp:4323 +msgid "export .dmf..." +msgstr "" + +#: src/gui/gui.cpp:4328 +msgid "export..." +msgstr "" + +#: src/gui/gui.cpp:4334 +msgid "manage chips" +msgstr "" + +#: src/gui/gui.cpp:4338 +msgid "add chip..." +msgstr "" + +#: src/gui/gui.cpp:4343 src/gui/sysManager.cpp:138 +#, c-format +msgid "cannot add chip! (%s)" +msgstr "" + +#: src/gui/gui.cpp:4355 +msgid "configure chip..." +msgstr "" + +#: src/gui/gui.cpp:4365 +msgid "change chip..." +msgstr "" + +#: src/gui/gui.cpp:4367 src/gui/gui.cpp:4390 +msgid "Preserve channel positions" +msgstr "" + +#: src/gui/gui.cpp:4379 src/gui/sysManager.cpp:109 +#, c-format +msgid "cannot change chip! (%s)" +msgstr "" + +#: src/gui/gui.cpp:4388 +msgid "remove chip..." +msgstr "" + +#: src/gui/gui.cpp:4394 +#, c-format +msgid "cannot remove chip! (%s)" +msgstr "" + +#: src/gui/gui.cpp:4408 +msgid "open built-in assets directory" +msgstr "" + +#: src/gui/gui.cpp:4414 +msgid "restore backup" +msgstr "" + +#: src/gui/gui.cpp:4418 +msgid "exit..." +msgstr "" + +#: src/gui/gui.cpp:4426 +msgid "edit" +msgstr "" + +#: src/gui/gui.cpp:4434 +msgid "clear..." +msgstr "" + +#: src/gui/gui.cpp:4439 +msgid "settings" +msgstr "" + +#: src/gui/gui.cpp:4441 +msgid "full screen" +msgstr "" + +#: src/gui/gui.cpp:4445 +msgid "lock layout" +msgstr "" + +#: src/gui/gui.cpp:4448 +msgid "pattern visualizer" +msgstr "" + +#: src/gui/gui.cpp:4454 +msgid "reset layout" +msgstr "" + +#: src/gui/gui.cpp:4458 +msgid "switch to mobile view" +msgstr "" + +#: src/gui/gui.cpp:4462 +msgid "user systems..." +msgstr "" + +#: src/gui/gui.cpp:4465 +msgid "settings..." +msgstr "" + +#: src/gui/gui.cpp:4471 +msgid "Window" +msgstr "" + +#: src/gui/gui.cpp:4471 +msgid "window" +msgstr "" + +#: src/gui/gui.cpp:4472 +msgid "song" +msgstr "" + +#: src/gui/gui.cpp:4473 +msgid "song comments" +msgstr "" + +#: src/gui/gui.cpp:4474 +msgid "song information" +msgstr "" + +#: src/gui/gui.cpp:4475 +msgid "subsongs" +msgstr "" + +#: src/gui/gui.cpp:4477 +msgid "channels" +msgstr "" + +#: src/gui/gui.cpp:4478 +msgid "chip manager" +msgstr "" + +#: src/gui/gui.cpp:4479 +msgid "orders" +msgstr "" + +#: src/gui/gui.cpp:4481 +msgid "pattern manager" +msgstr "" + +#: src/gui/gui.cpp:4482 +msgid "mixer" +msgstr "" + +#: src/gui/gui.cpp:4483 +msgid "compatibility flags" +msgstr "" + +#: src/gui/gui.cpp:4486 src/gui/gui.cpp:4488 +msgid "assets" +msgstr "" + +#: src/gui/gui.cpp:4490 +msgid "instruments" +msgstr "" + +#: src/gui/gui.cpp:4491 +msgid "samples" +msgstr "" + +#: src/gui/gui.cpp:4492 +msgid "wavetables" +msgstr "" + +#: src/gui/gui.cpp:4495 +msgid "instrument editor" +msgstr "" + +#: src/gui/gui.cpp:4496 +msgid "sample editor" +msgstr "" + +#: src/gui/gui.cpp:4497 +msgid "wavetable editor" +msgstr "" + +#: src/gui/gui.cpp:4500 +msgid "visualizers" +msgstr "" + +#: src/gui/gui.cpp:4501 +msgid "oscilloscope (master)" +msgstr "" + +#: src/gui/gui.cpp:4502 +msgid "oscilloscope (per-channel)" +msgstr "" + +#: src/gui/gui.cpp:4503 +msgid "oscilloscope (X-Y)" +msgstr "" + +#: src/gui/gui.cpp:4504 +msgid "volume meter" +msgstr "" + +#: src/gui/gui.cpp:4507 +msgid "tempo" +msgstr "" + +#: src/gui/gui.cpp:4508 +msgid "clock" +msgstr "" + +#: src/gui/gui.cpp:4509 +msgid "grooves" +msgstr "" + +#: src/gui/gui.cpp:4510 +msgid "speed" +msgstr "" + +#: src/gui/gui.cpp:4514 +msgid "log viewer" +msgstr "" + +#: src/gui/gui.cpp:4515 +msgid "register view" +msgstr "" + +#: src/gui/gui.cpp:4516 +msgid "statistics" +msgstr "" + +#: src/gui/gui.cpp:4517 +msgid "memory composition" +msgstr "" + +#: src/gui/gui.cpp:4521 src/gui/gui.cpp:4529 +msgid "effect list" +msgstr "" + +#: src/gui/gui.cpp:4522 +msgid "play/edit controls" +msgstr "" + +#: src/gui/gui.cpp:4523 +msgid "piano/input pad" +msgstr "" + +#: src/gui/gui.cpp:4524 +msgid "spoiler" +msgstr "" + +#: src/gui/gui.cpp:4528 +msgid "Help" +msgstr "" + +#: src/gui/gui.cpp:4528 +msgid "help" +msgstr "" + +#: src/gui/gui.cpp:4530 +msgid "debug menu" +msgstr "" + +#: src/gui/gui.cpp:4531 +msgid "inspector" +msgstr "" + +#: src/gui/gui.cpp:4532 +msgid "panic" +msgstr "" + +#: src/gui/gui.cpp:4533 +msgid "about..." +msgstr "" + +#: src/gui/gui.cpp:4548 +#, c-format +msgid "| Speed %d:%d" +msgstr "" + +#: src/gui/gui.cpp:4550 +#, c-format +msgid "| Speed %d" +msgstr "" + +#: src/gui/gui.cpp:4552 +msgid "| Groove" +msgstr "" + +#: src/gui/gui.cpp:4555 +#, c-format +msgid " @ %gHz (%g BPM) " +msgstr "" + +#: src/gui/gui.cpp:4558 +#, c-format +msgid "| Order %.2X/%.2X " +msgstr "" + +#: src/gui/gui.cpp:4560 +#, c-format +msgid "| Order %d/%d " +msgstr "" + +#: src/gui/gui.cpp:4564 +#, c-format +msgid "| Row %.2X/%.2X " +msgstr "" + +#: src/gui/gui.cpp:4566 +#, c-format +msgid "| Row %d/%d " +msgstr "" + +#: src/gui/gui.cpp:4569 +msgid "| " +msgstr "" + +#: src/gui/gui.cpp:4572 +msgid "Don't you have anything better to do?" +msgstr "" + +#: src/gui/gui.cpp:4582 +#, c-format +msgid "%d year " +msgid_plural "%d years " +msgstr[0] "" +msgstr[1] "" + +#: src/gui/gui.cpp:4583 +#, c-format +msgid "%d month " +msgid_plural "%d months " +msgstr[0] "" +msgstr[1] "" + +#: src/gui/gui.cpp:4584 +#, c-format +msgid "%d day " +msgid_plural "%d days " +msgstr[0] "" +msgstr[1] "" + +#: src/gui/gui.cpp:4609 +msgid "Note off (cut)" +msgstr "" + +#: src/gui/gui.cpp:4611 +msgid "Note off (release)" +msgstr "" + +#: src/gui/gui.cpp:4613 +msgid "Macro release only" +msgstr "" + +#: src/gui/gui.cpp:4615 +#, c-format +msgid "Note on: %s" +msgstr "" + +#: src/gui/gui.cpp:4623 +#, c-format +msgid "Ins %d: " +msgstr "" + +#: src/gui/gui.cpp:4626 +#, c-format +msgid "Ins %d: %s" +msgstr "" + +#: src/gui/gui.cpp:4635 +#, c-format +msgid "Set volume: %d (%.2X, INVALID!)" +msgstr "" + +#: src/gui/gui.cpp:4638 +#, c-format +msgid "Set volume: %d (%.2X, %d%%)" +msgstr "" + +#: src/gui/gui.cpp:4660 +msgid "| modified" +msgstr "" + +#: src/gui/gui.cpp:4825 src/gui/gui.cpp:4828 +msgid "System File Dialog Pending" +msgstr "" + +#: src/gui/gui.cpp:4941 +msgid "" +"there was an error in the file dialog! you may want to report this issue " +"to:\n" +"https://github.com/tildearrow/furnace/issues\n" +"check the Log Viewer (window > log viewer) for more information.\n" +"\n" +"for now please disable the system file picker in Settings > General." +msgstr "" + +#: src/gui/gui.cpp:4944 +msgid "can't do anything without Storage permissions!" +msgstr "" + +#: src/gui/gui.cpp:4946 +msgid "" +"Zenity/KDialog not available!\n" +"please install one of these, or disable the system file picker in Settings > " +"General." +msgstr "" + +#: src/gui/gui.cpp:5082 +msgid "" +"error while saving instrument! only the following instrument types are " +"supported:\n" +"- FM (OPN)\n" +"- SN76489/Sega PSG\n" +"- Game Boy\n" +"- PC Engine\n" +"- NES\n" +"- C64\n" +"- FM (OPLL)\n" +"- FDS" +msgstr "" + +#: src/gui/gui.cpp:5110 +msgid "there were some errors while loading samples:\n" +msgstr "" + +#: src/gui/gui.cpp:5155 src/gui/gui.cpp:6339 +msgid "...but you haven't selected a sample!" +msgstr "" + +#: src/gui/gui.cpp:5170 src/gui/gui.cpp:5179 +msgid "could not save sample! open Log Viewer for more information." +msgstr "" + +#: src/gui/gui.cpp:5198 +msgid "there were some warnings/errors while loading instruments:\n" +msgstr "" + +#: src/gui/gui.cpp:5204 +#, c-format +msgid "> %s: cannot load instrument! (%s)\n" +msgstr "" + +#: src/gui/gui.cpp:5222 src/gui/gui.cpp:5276 +#, c-format +msgid "cannot load instrument! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5228 +msgid "" +"congratulations! you managed to load nothing.\n" +"you are entitled to a bug report." +msgstr "" + +#: src/gui/gui.cpp:5269 src/gui/gui.cpp:6243 +msgid "...but you haven't selected an instrument!" +msgstr "" + +#: src/gui/gui.cpp:5281 +msgid "there were some errors while loading wavetables:\n" +msgstr "" + +#: src/gui/gui.cpp:5290 src/gui/gui.cpp:5300 src/gui/gui.cpp:5319 +#, c-format +msgid "cannot load wavetable! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5327 +msgid "...but you haven't selected a wavetable!" +msgstr "" + +#: src/gui/gui.cpp:5342 src/gui/gui.cpp:5363 src/gui/gui.cpp:5387 +#: src/gui/gui.cpp:5408 +msgid "could not open file!" +msgstr "" + +#: src/gui/gui.cpp:5350 +#, c-format +msgid "could not write VGM! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5371 +#, c-format +msgid "Could not write ZSM! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5395 +#, c-format +msgid "could not write text! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5416 +#, c-format +msgid "could not write command stream! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5440 +msgid "could not import user presets!" +msgstr "" + +#: src/gui/gui.cpp:5445 src/gui/gui.cpp:5462 +#, c-format +msgid "could not import user presets! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5483 +#, c-format +msgid "You opened: %s" +msgstr "" + +#: src/gui/gui.cpp:5486 +msgid "You opened:" +msgstr "" + +#: src/gui/gui.cpp:5494 +#, c-format +msgid "You saved: %s" +msgstr "" + +#: src/gui/gui.cpp:5515 src/gui/gui.cpp:5636 src/gui/gui.cpp:5637 +#: src/gui/insEdit.cpp:7520 +msgid "Error" +msgstr "" + +#: src/gui/gui.cpp:5520 src/gui/gui.cpp:6177 src/gui/gui.cpp:6178 +msgid "Select Instrument" +msgstr "" + +#: src/gui/gui.cpp:5525 src/gui/gui.cpp:6256 src/gui/gui.cpp:6257 +msgid "Import Raw Sample" +msgstr "" + +#: src/gui/gui.cpp:5540 src/gui/gui.cpp:5593 src/gui/gui.cpp:5594 +msgid "Rendering..." +msgstr "" + +#: src/gui/gui.cpp:5595 +msgid "Please wait..." +msgstr "" + +#: src/gui/gui.cpp:5596 +msgid "Abort" +msgstr "" + +#: src/gui/gui.cpp:5638 +#, c-format +msgid "%s" +msgstr "" + +#: src/gui/gui.cpp:5868 +msgid "Erasing" +msgstr "" + +#: src/gui/gui.cpp:5871 +msgid "All subsongs" +msgstr "" + +#: src/gui/gui.cpp:5878 +msgid "Current subsong" +msgstr "" + +#: src/gui/gui.cpp:5945 +msgid "Optimization" +msgstr "" + +#: src/gui/gui.cpp:5948 src/gui/patManager.cpp:36 +msgid "De-duplicate patterns" +msgstr "" + +#: src/gui/gui.cpp:5957 +msgid "Remove unused instruments" +msgstr "" + +#: src/gui/gui.cpp:5970 +msgid "Remove unused samples" +msgstr "" + +#: src/gui/gui.cpp:5987 +msgid "Never mind! Cancel" +msgstr "" + +#: src/gui/gui.cpp:6066 +msgid "Drum kit mode:" +msgstr "" + +#: src/gui/gui.cpp:6070 +msgid "12 samples per octave" +msgstr "" + +#: src/gui/gui.cpp:6075 +msgid "Starting octave" +msgstr "" + +#: src/gui/gui.cpp:6095 +msgid "Drum Kit" +msgstr "" + +#: src/gui/gui.cpp:6181 +msgid "this is an instrument bank! select which one to use:" +msgstr "" + +#: src/gui/gui.cpp:6184 +msgid "this is an instrument bank! select which ones to load:" +msgstr "" + +#: src/gui/gui.cpp:6258 +msgid "Data type:" +msgstr "" + +#: src/gui/gui.cpp:6285 +msgid "(will be mixed down to mono)" +msgstr "" + +#: src/gui/gui.cpp:6286 +msgid "Unsigned" +msgstr "" + +#: src/gui/gui.cpp:6290 +msgid "Big endian" +msgstr "" + +#: src/gui/gui.cpp:6298 +msgid "Swap nibbles" +msgstr "" + +#: src/gui/gui.cpp:6302 +msgid "Swap words" +msgstr "" + +#: src/gui/gui.cpp:6306 +msgid "Encoding:" +msgstr "" + +#: src/gui/gui.cpp:6319 +msgid "Reverse bit order" +msgstr "" + +#: src/gui/gui.cpp:6361 +msgid "Error! No string provided!" +msgstr "" + +#: src/gui/gui.cpp:6683 +msgid "it appears I couldn't load these fonts. any setting you can check?" +msgstr "" + +#: src/gui/gui.cpp:6863 src/gui/gui.cpp:6971 +msgid "" +"could not init renderer!\n" +"falling back to software renderer. please restart Furnace." +msgstr "" + +#: src/gui/gui.cpp:6865 src/gui/gui.cpp:6973 +#, c-format +msgid "" +"could not init renderer! %s\n" +"falling back to software renderer. please restart Furnace." +msgstr "" + +#: src/gui/gui.cpp:6870 src/gui/gui.cpp:6978 +msgid "could not init renderer!" +msgstr "" + +#: src/gui/gui.cpp:6881 +#, c-format +msgid "could not open window! %s" +msgstr "" + +#: src/gui/gui.cpp:6886 +msgid "" +"\n" +"falling back to software renderer. please restart Furnace." +msgstr "" + +#: src/gui/gui.cpp:7034 +msgid "Size column to fit###SizeOne" +msgstr "" + +#: src/gui/gui.cpp:7036 +msgid "Size all columns to fit###SizeAll" +msgstr "" + +#: src/gui/gui.cpp:7038 +msgid "Size all columns to default###SizeAll" +msgstr "" + +#: src/gui/gui.cpp:7040 +msgid "Reset order###ResetOrder" +msgstr "" + +#: src/gui/gui.cpp:7042 +msgid "(Main menu bar)" +msgstr "" + +#: src/gui/gui.cpp:7044 +msgid "(Popup)" +msgstr "" + +#: src/gui/gui.cpp:7046 +msgid "(Untitled)" +msgstr "" + +#: src/gui/gui.cpp:7048 +msgid "Hide tab bar###HideTabBar" +msgstr "" + +#: src/gui/gui.cpp:7052 +msgid "LocaleSettings: ccjk" +msgstr "" + +#: src/gui/gui.cpp:7564 +msgid "Unsaved changes! Save changes before quitting?" +msgstr "" + +#: src/gui/sysManager.cpp:42 +msgid "Preserve channel order" +msgstr "" + +#: src/gui/sysManager.cpp:44 +msgid "Clone channel data" +msgstr "" + +#: src/gui/sysManager.cpp:46 +msgid "Clone at end" +msgstr "" + +#: src/gui/sysManager.cpp:56 +msgid "Actions" +msgstr "" + +#: src/gui/sysManager.cpp:69 +msgid "(drag to swap chips)" +msgstr "" + +#: src/gui/sysManager.cpp:90 +msgid "Clone##SysDup" +msgstr "" + +#: src/gui/sysManager.cpp:92 +#, c-format +msgid "cannot clone chip! (%s)" +msgstr "" + +#: src/gui/sysManager.cpp:98 +msgid "Change##SysChange" +msgstr "" + +#: src/gui/sysManager.cpp:120 +msgid "Are you sure you want to remove this chip?" +msgstr "" + +#: src/gui/patManager.cpp:43 +msgid "Re-arrange patterns" +msgstr "" + +#: src/gui/patManager.cpp:50 +msgid "Sort orders" +msgstr "" + +#: src/gui/patManager.cpp:57 +msgid "Make patterns unique" +msgstr "" + +#: src/gui/patManager.cpp:103 +#, c-format +msgid "" +"Pattern %.2X\n" +"- not allocated" +msgstr "" + +#: src/gui/patManager.cpp:105 +#, c-format +msgid "" +"Pattern %.2X\n" +"- use count: %d (%.0f%%)\n" +"\n" +"right-click to erase" +msgstr "" + +#: src/gui/insEdit.cpp:39 +msgid "Down Down Down" +msgstr "" + +#: src/gui/insEdit.cpp:40 +msgid "Down." +msgstr "" + +#: src/gui/insEdit.cpp:41 +msgid "Down Up Down Up" +msgstr "" + +#: src/gui/insEdit.cpp:42 +msgid "Down UP" +msgstr "" + +#: src/gui/insEdit.cpp:43 +msgid "Up Up Up" +msgstr "" + +#: src/gui/insEdit.cpp:44 +msgid "Up." +msgstr "" + +#: src/gui/insEdit.cpp:45 +msgid "Up Down Up Down" +msgstr "" + +#: src/gui/insEdit.cpp:46 +msgid "Up DOWN" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Algorithm" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Feedback" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "LFO > Freq" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "LFO > Amp" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Decay 2" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "EnvScale" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Multiplier" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Detune 2" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "AM" +msgstr "" + +#: src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:5438 src/gui/insEdit.cpp:6516 +msgid "AM Depth" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Vibrato Depth" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Sustained" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Level Scaling" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Vibrato" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Scale Rate" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "OP2 Half Sine" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "OP1 Half Sine" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "EnvShift" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Reverb" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Fine" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "LFO2 > Freq" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "LFO2 > Amp" +msgstr "" + +#: src/gui/insEdit.cpp:56 src/gui/insEdit.cpp:68 src/gui/insEdit.cpp:7391 +msgid "OP4 Noise Mode" +msgstr "" + +#: src/gui/insEdit.cpp:57 +msgid "Envelope Delay" +msgstr "" + +#: src/gui/insEdit.cpp:58 src/gui/insEdit.cpp:70 +msgid "Output Level" +msgstr "" + +#: src/gui/insEdit.cpp:59 +msgid "Modulation Input Level" +msgstr "" + +#: src/gui/insEdit.cpp:60 +msgid "Left Output" +msgstr "" + +#: src/gui/insEdit.cpp:61 +msgid "Right Output" +msgstr "" + +#: src/gui/insEdit.cpp:62 +msgid "Coarse Tune (semitones)" +msgstr "" + +#: src/gui/insEdit.cpp:64 +msgid "Fixed Frequency Mode" +msgstr "" + +#: src/gui/insEdit.cpp:69 +msgid "Env. Delay" +msgstr "" + +#: src/gui/insEdit.cpp:71 +msgid "ModInput" +msgstr "" + +#: src/gui/insEdit.cpp:72 +msgid "Left" +msgstr "" + +#: src/gui/insEdit.cpp:73 +msgid "Right" +msgstr "" + +#: src/gui/insEdit.cpp:74 +msgid "Tune" +msgstr "" + +#: src/gui/insEdit.cpp:76 src/gui/insEdit.cpp:610 src/gui/insEdit.cpp:3792 +#: src/gui/insEdit.cpp:4554 src/gui/insEdit.cpp:4848 +msgid "Fixed" +msgstr "" + +#: src/gui/insEdit.cpp:98 src/gui/insEdit.cpp:117 src/gui/insEdit.cpp:136 +#: src/gui/insEdit.cpp:156 +msgid "User" +msgstr "" + +#: src/gui/insEdit.cpp:99 +msgid "1. Violin" +msgstr "" + +#: src/gui/insEdit.cpp:100 src/gui/insEdit.cpp:138 src/gui/insEdit.cpp:158 +msgid "2. Guitar" +msgstr "" + +#: src/gui/insEdit.cpp:101 src/gui/insEdit.cpp:159 +msgid "3. Piano" +msgstr "" + +#: src/gui/insEdit.cpp:102 src/gui/insEdit.cpp:160 +msgid "4. Flute" +msgstr "" + +#: src/gui/insEdit.cpp:103 src/gui/insEdit.cpp:122 src/gui/insEdit.cpp:161 +msgid "5. Clarinet" +msgstr "" + +#: src/gui/insEdit.cpp:104 +msgid "6. Oboe" +msgstr "" + +#: src/gui/insEdit.cpp:105 src/gui/insEdit.cpp:124 src/gui/insEdit.cpp:143 +#: src/gui/insEdit.cpp:163 +msgid "7. Trumpet" +msgstr "" + +#: src/gui/insEdit.cpp:106 +msgid "8. Organ" +msgstr "" + +#: src/gui/insEdit.cpp:107 +msgid "9. Horn" +msgstr "" + +#: src/gui/insEdit.cpp:108 +msgid "10. Synth" +msgstr "" + +#: src/gui/insEdit.cpp:109 +msgid "11. Harpsichord" +msgstr "" + +#: src/gui/insEdit.cpp:110 src/gui/insEdit.cpp:129 src/gui/insEdit.cpp:148 +msgid "12. Vibraphone" +msgstr "" + +#: src/gui/insEdit.cpp:111 +msgid "13. Synth Bass" +msgstr "" + +#: src/gui/insEdit.cpp:112 +msgid "14. Acoustic Bass" +msgstr "" + +#: src/gui/insEdit.cpp:113 +msgid "15. Electric Guitar" +msgstr "" + +#: src/gui/insEdit.cpp:114 src/gui/insEdit.cpp:133 src/gui/insEdit.cpp:152 +#: src/gui/insEdit.cpp:172 src/gui/insEdit.cpp:3176 +msgid "Drums" +msgstr "" + +#: src/gui/insEdit.cpp:118 +msgid "1. Electric String" +msgstr "" + +#: src/gui/insEdit.cpp:119 +msgid "2. Bow wow" +msgstr "" + +#: src/gui/insEdit.cpp:120 src/gui/insEdit.cpp:139 +msgid "3. Electric Guitar" +msgstr "" + +#: src/gui/insEdit.cpp:121 +msgid "4. Organ" +msgstr "" + +#: src/gui/insEdit.cpp:123 +msgid "6. Saxophone" +msgstr "" + +#: src/gui/insEdit.cpp:125 +msgid "8. Street Organ" +msgstr "" + +#: src/gui/insEdit.cpp:126 +msgid "9. Synth Brass" +msgstr "" + +#: src/gui/insEdit.cpp:127 +msgid "10. Electric Piano" +msgstr "" + +#: src/gui/insEdit.cpp:128 +msgid "11. Bass" +msgstr "" + +#: src/gui/insEdit.cpp:130 +msgid "13. Chime" +msgstr "" + +#: src/gui/insEdit.cpp:131 +msgid "14. Tom Tom II" +msgstr "" + +#: src/gui/insEdit.cpp:132 +msgid "15. Noise" +msgstr "" + +#: src/gui/insEdit.cpp:137 +msgid "1. Strings" +msgstr "" + +#: src/gui/insEdit.cpp:140 +msgid "4. Electric Piano" +msgstr "" + +#: src/gui/insEdit.cpp:141 +msgid "5. Flute" +msgstr "" + +#: src/gui/insEdit.cpp:142 +msgid "6. Marimba" +msgstr "" + +#: src/gui/insEdit.cpp:144 +msgid "8. Harmonica" +msgstr "" + +#: src/gui/insEdit.cpp:145 +msgid "9. Tuba" +msgstr "" + +#: src/gui/insEdit.cpp:146 +msgid "10. Synth Brass" +msgstr "" + +#: src/gui/insEdit.cpp:147 +msgid "11. Short Saw" +msgstr "" + +#: src/gui/insEdit.cpp:149 +msgid "13. Electric Guitar 2" +msgstr "" + +#: src/gui/insEdit.cpp:150 +msgid "14. Synth Bass" +msgstr "" + +#: src/gui/insEdit.cpp:151 +msgid "15. Sitar" +msgstr "" + +#: src/gui/insEdit.cpp:157 +msgid "1. Bell" +msgstr "" + +#: src/gui/insEdit.cpp:162 +msgid "6. Rattling Bell" +msgstr "" + +#: src/gui/insEdit.cpp:164 +msgid "8. Reed Organ" +msgstr "" + +#: src/gui/insEdit.cpp:165 +msgid "9. Soft Bell" +msgstr "" + +#: src/gui/insEdit.cpp:166 +msgid "10. Xylophone" +msgstr "" + +#: src/gui/insEdit.cpp:167 +msgid "11. Vibraphone" +msgstr "" + +#: src/gui/insEdit.cpp:168 +msgid "12. Brass" +msgstr "" + +#: src/gui/insEdit.cpp:169 +msgid "13. Bass Guitar" +msgstr "" + +#: src/gui/insEdit.cpp:170 +msgid "14. Synth" +msgstr "" + +#: src/gui/insEdit.cpp:171 +msgid "15. Chorus" +msgstr "" + +#: src/gui/insEdit.cpp:178 src/gui/insEdit.cpp:189 +msgid "Half Sine" +msgstr "" + +#: src/gui/insEdit.cpp:179 src/gui/insEdit.cpp:190 +msgid "Absolute Sine" +msgstr "" + +#: src/gui/insEdit.cpp:180 +msgid "Quarter Sine" +msgstr "" + +#: src/gui/insEdit.cpp:181 src/gui/insEdit.cpp:203 +msgid "Squished Sine" +msgstr "" + +#: src/gui/insEdit.cpp:182 src/gui/insEdit.cpp:205 +msgid "Squished AbsSine" +msgstr "" + +#: src/gui/insEdit.cpp:184 src/gui/insEdit.cpp:195 +msgid "Derived Square" +msgstr "" + +#: src/gui/insEdit.cpp:191 +msgid "Pulse Sine" +msgstr "" + +#: src/gui/insEdit.cpp:192 +msgid "Sine (Even Periods)" +msgstr "" + +#: src/gui/insEdit.cpp:193 +msgid "AbsSine (Even Periods)" +msgstr "" + +#: src/gui/insEdit.cpp:201 +msgid "Cut Sine" +msgstr "" + +#: src/gui/insEdit.cpp:202 +msgid "Cut Triangle" +msgstr "" + +#: src/gui/insEdit.cpp:204 +msgid "Squished Triangle" +msgstr "" + +#: src/gui/insEdit.cpp:206 +msgid "Squished AbsTriangle" +msgstr "" + +#: src/gui/insEdit.cpp:224 +msgid "Noise disabled" +msgstr "" + +#: src/gui/insEdit.cpp:225 +msgid "Square + noise" +msgstr "" + +#: src/gui/insEdit.cpp:226 +msgid "Ringmod from OP3 + noise" +msgstr "" + +#: src/gui/insEdit.cpp:227 +msgid "" +"Ringmod from OP3 + double pitch ModInput\n" +"WARNING - has emulation issues; subject to change" +msgstr "" + +#: src/gui/insEdit.cpp:232 +msgid "Bitwise AND" +msgstr "" + +#: src/gui/insEdit.cpp:233 +msgid "Bitwise OR" +msgstr "" + +#: src/gui/insEdit.cpp:234 +msgid "Bitwise XOR" +msgstr "" + +#: src/gui/insEdit.cpp:239 src/gui/insEdit.cpp:390 +msgid "gate" +msgstr "" + +#: src/gui/insEdit.cpp:240 src/gui/insEdit.cpp:391 +msgid "sync" +msgstr "" + +#: src/gui/insEdit.cpp:241 src/gui/insEdit.cpp:392 +msgid "ring" +msgstr "" + +#: src/gui/insEdit.cpp:327 +msgid "How did you even" +msgstr "" + +#: src/gui/insEdit.cpp:335 +msgid "triangle" +msgstr "" + +#: src/gui/insEdit.cpp:336 src/gui/insEdit.cpp:5821 +msgid "saw" +msgstr "" + +#: src/gui/insEdit.cpp:337 src/gui/insEdit.cpp:5827 +msgid "pulse" +msgstr "" + +#: src/gui/insEdit.cpp:338 src/gui/insEdit.cpp:344 src/gui/insEdit.cpp:373 +#: src/gui/insEdit.cpp:424 src/gui/insEdit.cpp:429 src/gui/insEdit.cpp:5833 +msgid "noise" +msgstr "" + +#: src/gui/insEdit.cpp:343 +msgid "tone" +msgstr "" + +#: src/gui/insEdit.cpp:345 +msgid "envelope" +msgstr "" + +#: src/gui/insEdit.cpp:350 +msgid "hold" +msgstr "" + +#: src/gui/insEdit.cpp:351 +msgid "alternate" +msgstr "" + +#: src/gui/insEdit.cpp:352 src/gui/insEdit.cpp:364 +msgid "direction" +msgstr "" + +#: src/gui/insEdit.cpp:353 src/gui/insEdit.cpp:436 +msgid "enable" +msgstr "" + +#: src/gui/insEdit.cpp:357 src/gui/insEdit.cpp:368 +msgid "enabled" +msgstr "" + +#: src/gui/insEdit.cpp:361 +msgid "mirror" +msgstr "" + +#: src/gui/insEdit.cpp:365 +msgid "resolution" +msgstr "" + +#: src/gui/insEdit.cpp:366 +msgid "fixed" +msgstr "" + +#: src/gui/insEdit.cpp:367 +msgid "N/A" +msgstr "" + +#: src/gui/insEdit.cpp:374 +msgid "echo" +msgstr "" + +#: src/gui/insEdit.cpp:375 +msgid "pitch mod" +msgstr "" + +#: src/gui/insEdit.cpp:376 src/gui/insEdit.cpp:508 +msgid "invert right" +msgstr "" + +#: src/gui/insEdit.cpp:377 src/gui/insEdit.cpp:509 +msgid "invert left" +msgstr "" + +#: src/gui/insEdit.cpp:382 src/gui/insEdit.cpp:5905 +msgid "low" +msgstr "" + +#: src/gui/insEdit.cpp:383 src/gui/insEdit.cpp:5911 +msgid "band" +msgstr "" + +#: src/gui/insEdit.cpp:384 src/gui/insEdit.cpp:5917 +msgid "high" +msgstr "" + +#: src/gui/insEdit.cpp:385 src/gui/insEdit.cpp:5924 +msgid "ch3off" +msgstr "" + +#: src/gui/insEdit.cpp:393 +msgid "test" +msgstr "" + +#: src/gui/insEdit.cpp:398 +msgid "15KHz" +msgstr "" + +#: src/gui/insEdit.cpp:399 +msgid "filter 2+4" +msgstr "" + +#: src/gui/insEdit.cpp:400 +msgid "filter 1+3" +msgstr "" + +#: src/gui/insEdit.cpp:401 +msgid "16-bit 3+4" +msgstr "" + +#: src/gui/insEdit.cpp:402 +msgid "16-bit 1+2" +msgstr "" + +#: src/gui/insEdit.cpp:403 +msgid "high3" +msgstr "" + +#: src/gui/insEdit.cpp:404 +msgid "high1" +msgstr "" + +#: src/gui/insEdit.cpp:405 +msgid "poly9" +msgstr "" + +#: src/gui/insEdit.cpp:414 +msgid "16'" +msgstr "" + +#: src/gui/insEdit.cpp:415 +msgid "8'" +msgstr "" + +#: src/gui/insEdit.cpp:416 +msgid "4'" +msgstr "" + +#: src/gui/insEdit.cpp:417 +msgid "2'" +msgstr "" + +#: src/gui/insEdit.cpp:418 +msgid "sustain" +msgstr "" + +#: src/gui/insEdit.cpp:423 +msgid "square" +msgstr "" + +#: src/gui/insEdit.cpp:431 +msgid "surround" +msgstr "" + +#: src/gui/insEdit.cpp:437 +msgid "oneshot" +msgstr "" + +#: src/gui/insEdit.cpp:438 +msgid "split L/R" +msgstr "" + +#: src/gui/insEdit.cpp:439 +msgid "HinvR" +msgstr "" + +#: src/gui/insEdit.cpp:440 +msgid "VinvR" +msgstr "" + +#: src/gui/insEdit.cpp:441 +msgid "HinvL" +msgstr "" + +#: src/gui/insEdit.cpp:442 +msgid "VinvL" +msgstr "" + +#: src/gui/insEdit.cpp:447 src/gui/insEdit.cpp:476 +msgid "ring mod" +msgstr "" + +#: src/gui/insEdit.cpp:448 +msgid "low pass" +msgstr "" + +#: src/gui/insEdit.cpp:449 src/gui/insEdit.cpp:475 +msgid "high pass" +msgstr "" + +#: src/gui/insEdit.cpp:450 +msgid "band pass" +msgstr "" + +#: src/gui/insEdit.cpp:459 +msgid "enable tap B" +msgstr "" + +#: src/gui/insEdit.cpp:460 +msgid "AM with slope" +msgstr "" + +#: src/gui/insEdit.cpp:465 +msgid "invert B" +msgstr "" + +#: src/gui/insEdit.cpp:466 +msgid "invert A" +msgstr "" + +#: src/gui/insEdit.cpp:467 +msgid "reset B" +msgstr "" + +#: src/gui/insEdit.cpp:468 +msgid "reset A" +msgstr "" + +#: src/gui/insEdit.cpp:469 +msgid "clip B" +msgstr "" + +#: src/gui/insEdit.cpp:470 +msgid "clip A" +msgstr "" + +#: src/gui/insEdit.cpp:477 +msgid "swap counters (noise)" +msgstr "" + +#: src/gui/insEdit.cpp:478 +msgid "low pass (noise)" +msgstr "" + +#: src/gui/insEdit.cpp:485 +msgid "rear right" +msgstr "" + +#: src/gui/insEdit.cpp:486 +msgid "rear left" +msgstr "" + +#: src/gui/insEdit.cpp:491 +msgid "on" +msgstr "" + +#: src/gui/insEdit.cpp:496 +msgid "k1 slowdown" +msgstr "" + +#: src/gui/insEdit.cpp:497 +msgid "k2 slowdown" +msgstr "" + +#: src/gui/insEdit.cpp:502 +msgid "pause" +msgstr "" + +#: src/gui/insEdit.cpp:503 +msgid "reverse" +msgstr "" + +#: src/gui/insEdit.cpp:521 +msgid "Subtract" +msgstr "" + +#: src/gui/insEdit.cpp:522 +msgid "Average" +msgstr "" + +#: src/gui/insEdit.cpp:523 src/gui/insEdit.cpp:2037 +msgid "Phase" +msgstr "" + +#: src/gui/insEdit.cpp:524 +msgid "Chorus" +msgstr "" + +#: src/gui/insEdit.cpp:528 +msgid "None (dual)" +msgstr "" + +#: src/gui/insEdit.cpp:529 +msgid "Wipe" +msgstr "" + +#: src/gui/insEdit.cpp:531 +msgid "Fade (ping-pong)" +msgstr "" + +#: src/gui/insEdit.cpp:532 +msgid "Overlay" +msgstr "" + +#: src/gui/insEdit.cpp:533 +msgid "Negative Overlay" +msgstr "" + +#: src/gui/insEdit.cpp:534 +msgid "Slide" +msgstr "" + +#: src/gui/insEdit.cpp:535 +msgid "Mix Chorus" +msgstr "" + +#: src/gui/insEdit.cpp:536 +msgid "Phase Modulation" +msgstr "" + +#: src/gui/insEdit.cpp:541 +msgid "Sweep" +msgstr "" + +#: src/gui/insEdit.cpp:542 src/gui/insEdit.cpp:552 +msgid "Wait" +msgstr "" + +#: src/gui/insEdit.cpp:543 src/gui/insEdit.cpp:553 +msgid "Wait for Release" +msgstr "" + +#: src/gui/insEdit.cpp:545 src/gui/insEdit.cpp:555 +msgid "Loop until Release" +msgstr "" + +#: src/gui/insEdit.cpp:549 +msgid "Volume Sweep" +msgstr "" + +#: src/gui/insEdit.cpp:550 +msgid "Frequency Sweep" +msgstr "" + +#: src/gui/insEdit.cpp:551 +msgid "Cutoff Sweep" +msgstr "" + +#: src/gui/insEdit.cpp:559 src/gui/insEdit.cpp:6604 +msgid "Direct" +msgstr "" + +#: src/gui/insEdit.cpp:560 src/gui/insEdit.cpp:6608 +msgid "Decrease (linear)" +msgstr "" + +#: src/gui/insEdit.cpp:561 src/gui/insEdit.cpp:6612 +msgid "Decrease (logarithmic)" +msgstr "" + +#: src/gui/insEdit.cpp:562 src/gui/insEdit.cpp:6616 +msgid "Increase (linear)" +msgstr "" + +#: src/gui/insEdit.cpp:563 src/gui/insEdit.cpp:6620 +msgid "Increase (bent line)" +msgstr "" + +#: src/gui/insEdit.cpp:611 +msgid "Relative" +msgstr "" + +#: src/gui/insEdit.cpp:616 +#, c-format +msgid "%d: +%d (exponential)" +msgstr "" + +#: src/gui/insEdit.cpp:619 +#, c-format +msgid "%d: +%d (linear)" +msgstr "" + +#: src/gui/insEdit.cpp:622 +#, c-format +msgid "%d: -%d (exponential)" +msgstr "" + +#: src/gui/insEdit.cpp:625 +#, c-format +msgid "%d: -%d (linear)" +msgstr "" + +#: src/gui/insEdit.cpp:627 +#, c-format +msgid "%d: %d (direct)" +msgstr "" + +#: src/gui/insEdit.cpp:660 +msgid "Random" +msgstr "" + +#: src/gui/insEdit.cpp:1610 +msgid "" +"left click to restart\n" +"middle click to pause\n" +"right click to see algorithm" +msgstr "" + +#: src/gui/insEdit.cpp:1620 +msgid "" +"left click to configure TL scaling\n" +"right click to see FM preview" +msgstr "" + +#: src/gui/insEdit.cpp:1624 +msgid "right click to see FM preview" +msgstr "" + +#: src/gui/insEdit.cpp:1639 +msgid "operator level changes with volume?" +msgstr "" + +#: src/gui/insEdit.cpp:1648 +msgid "AUTO##OPKVS" +msgstr "" + +#: src/gui/insEdit.cpp:1650 +msgid "NO##OPKVS" +msgstr "" + +#: src/gui/insEdit.cpp:1652 +msgid "YES##OPKVS" +msgstr "" + +#: src/gui/insEdit.cpp:1900 src/gui/insEdit.cpp:2005 +msgid "Bottom" +msgstr "" + +#: src/gui/insEdit.cpp:1940 +msgid "Hold" +msgstr "" + +#: src/gui/insEdit.cpp:1949 +msgid "SusTime" +msgstr "" + +#: src/gui/insEdit.cpp:1969 +msgid "SusDecay" +msgstr "" + +#: src/gui/insEdit.cpp:2047 +msgid "Shape" +msgstr "" + +#: src/gui/insEdit.cpp:2100 +msgid "Macro type: Sequence" +msgstr "" + +#: src/gui/insEdit.cpp:2103 +msgid "Macro type: ADSR" +msgstr "" + +#: src/gui/insEdit.cpp:2106 +msgid "Macro type: LFO" +msgstr "" + +#: src/gui/insEdit.cpp:2109 +msgid "Macro type: What's going on here?" +msgstr "" + +#: src/gui/insEdit.cpp:2122 +msgid "Delay/Step Length" +msgstr "" + +#: src/gui/insEdit.cpp:2125 +msgid "Step Length (ticks)##IMacroSpeed" +msgstr "" + +#: src/gui/insEdit.cpp:2129 +msgid "Delay##IMacroDelay" +msgstr "" + +#: src/gui/insEdit.cpp:2142 +msgid "Release mode: Active (jump to release pos)" +msgstr "" + +#: src/gui/insEdit.cpp:2144 +msgid "Release mode: Passive (delayed release)" +msgstr "" + +#: src/gui/insEdit.cpp:2393 +msgid "StepLen" +msgstr "" + +#: src/gui/insEdit.cpp:2401 +msgid "Delay" +msgstr "" + +#: src/gui/insEdit.cpp:2425 +msgid "The heck? No, this isn't even working correctly..." +msgstr "" + +#: src/gui/insEdit.cpp:2428 +msgid "The only problem with that selectedMacro is that it's a bug..." +msgstr "" + +#: src/gui/insEdit.cpp:2589 +msgid "(copying)" +msgstr "" + +#: src/gui/insEdit.cpp:2591 +msgid "(swapping)" +msgstr "" + +#: src/gui/insEdit.cpp:2595 +msgid "" +"- drag to swap operator\n" +"- shift-drag to copy operator" +msgstr "" + +#: src/gui/insEdit.cpp:2632 +msgid "new DPCM features disabled (compatibility)!" +msgstr "" + +#: src/gui/insEdit.cpp:2633 +msgid "click here to enable them." +msgstr "" + +#: src/gui/insEdit.cpp:2644 +msgid "none selected" +msgstr "" + +#: src/gui/insEdit.cpp:2657 +msgid "Use sample" +msgstr "" + +#: src/gui/insEdit.cpp:2659 +msgid "Sample bank slot##BANKSLOT" +msgstr "" + +#: src/gui/insEdit.cpp:2681 +msgid "Use wavetable (Amiga/Generic DAC only)" +msgstr "" + +#: src/gui/insEdit.cpp:2681 +msgid "Use wavetable" +msgstr "" + +#: src/gui/insEdit.cpp:2708 +msgid "Use sample map" +msgstr "" + +#: src/gui/insEdit.cpp:2730 +msgid "delta" +msgstr "" + +#: src/gui/insEdit.cpp:2736 +msgid "sample name" +msgstr "" + +#: src/gui/insEdit.cpp:3001 +msgid "set entire map to this pitch" +msgstr "" + +#: src/gui/insEdit.cpp:3009 +msgid "set entire map to this delta counter value" +msgstr "" + +#: src/gui/insEdit.cpp:3018 +msgid "set entire map to this note" +msgstr "" + +#: src/gui/insEdit.cpp:3027 +msgid "set entire map to this sample" +msgstr "" + +#: src/gui/insEdit.cpp:3037 +msgid "reset pitches" +msgstr "" + +#: src/gui/insEdit.cpp:3042 +msgid "clear delta counter values" +msgstr "" + +#: src/gui/insEdit.cpp:3048 +msgid "reset notes" +msgstr "" + +#: src/gui/insEdit.cpp:3054 +msgid "clear map samples" +msgstr "" + +#: src/gui/insEdit.cpp:3148 +msgid "Request from TX81Z" +msgstr "" + +#: src/gui/insEdit.cpp:3234 +#, c-format +msgid "%s name" +msgstr "" + +#: src/gui/insEdit.cpp:3286 +msgid "Fixed frequency mode" +msgstr "" + +#: src/gui/insEdit.cpp:3288 +msgid "" +"when enabled, drums will be set to the specified frequencies, ignoring the " +"note." +msgstr "" + +#: src/gui/insEdit.cpp:3296 +msgid "Drum" +msgstr "" + +#: src/gui/insEdit.cpp:3298 src/gui/insEdit.cpp:3798 src/gui/insEdit.cpp:3904 +#: src/gui/insEdit.cpp:4404 src/gui/insEdit.cpp:4468 src/gui/insEdit.cpp:5068 +#: src/gui/insEdit.cpp:5518 +msgid "Block" +msgstr "" + +#: src/gui/insEdit.cpp:3300 src/gui/insEdit.cpp:3803 src/gui/insEdit.cpp:3909 +#: src/gui/insEdit.cpp:4993 src/gui/insEdit.cpp:5079 src/gui/insEdit.cpp:5519 +msgid "FreqNum" +msgstr "" + +#: src/gui/insEdit.cpp:3303 +msgid "Snare/Hi-hat" +msgstr "" + +#: src/gui/insEdit.cpp:3304 +msgid "Tom/Top" +msgstr "" + +#: src/gui/insEdit.cpp:3314 +msgid "Volume##TL" +msgstr "" + +#: src/gui/insEdit.cpp:3316 +msgid "this volume slider only works in compatibility (non-drums) system." +msgstr "" + +#: src/gui/insEdit.cpp:3626 +msgid "Env" +msgstr "" + +#: src/gui/insEdit.cpp:3980 src/gui/insEdit.cpp:4346 src/gui/insEdit.cpp:4396 +#: src/gui/insEdit.cpp:5104 +msgid "OPL2/3 only (last 4 waveforms are OPL3 only)" +msgstr "" + +#: src/gui/insEdit.cpp:4079 src/gui/insEdit.cpp:4788 +#, c-format +msgid "Envelope 2 (kick only)" +msgstr "" + +#: src/gui/insEdit.cpp:4084 +#, c-format +msgid "Operator %d" +msgstr "" + +#: src/gui/insEdit.cpp:4414 +msgid "Freq" +msgstr "" + +#: src/gui/insEdit.cpp:4443 +msgid "Only on YM2151 (OPM)" +msgstr "" + +#: src/gui/insEdit.cpp:4466 +msgid "Blk" +msgstr "" + +#: src/gui/insEdit.cpp:4479 +msgid "F" +msgstr "" + +#: src/gui/insEdit.cpp:4481 +msgid "Frequency (F-Num)" +msgstr "" + +#: src/gui/insEdit.cpp:4833 +msgid "SSG On" +msgstr "" + +#: src/gui/insEdit.cpp:5206 src/gui/insEdit.cpp:5207 +msgid "waiting..." +msgstr "" + +#: src/gui/insEdit.cpp:5210 src/gui/insEdit.cpp:5211 +msgid "no instrument selected" +msgstr "" + +#: src/gui/insEdit.cpp:5393 +msgid "" +"none of the currently present chips are able to play this instrument type!" +msgstr "" + +#: src/gui/insEdit.cpp:5413 +msgid "FM Macros" +msgstr "" + +#: src/gui/insEdit.cpp:5435 src/gui/insEdit.cpp:5440 +msgid "LFO Speed" +msgstr "" + +#: src/gui/insEdit.cpp:5439 src/gui/insEdit.cpp:6514 +msgid "PM Depth" +msgstr "" + +#: src/gui/insEdit.cpp:5441 +msgid "LFO Shape" +msgstr "" + +#: src/gui/insEdit.cpp:5444 +msgid "OpMask" +msgstr "" + +#: src/gui/insEdit.cpp:5446 +msgid "AM Depth 2" +msgstr "" + +#: src/gui/insEdit.cpp:5447 +msgid "PM Depth 2" +msgstr "" + +#: src/gui/insEdit.cpp:5448 +msgid "LFO2 Speed" +msgstr "" + +#: src/gui/insEdit.cpp:5449 +msgid "LFO2 Shape" +msgstr "" + +#: src/gui/insEdit.cpp:5458 +#, c-format +msgid "Operator Macros" +msgstr "" + +#: src/gui/insEdit.cpp:5460 +#, c-format +msgid "OP%d Macros" +msgstr "" + +#: src/gui/insEdit.cpp:5521 +msgid "Op. Arpeggio" +msgstr "" + +#: src/gui/insEdit.cpp:5522 +msgid "Op. Pitch" +msgstr "" + +#: src/gui/insEdit.cpp:5531 +msgid "Op. Panning" +msgstr "" + +#: src/gui/insEdit.cpp:5558 +msgid "Use software envelope" +msgstr "" + +#: src/gui/insEdit.cpp:5559 +msgid "Initialize envelope on every note" +msgstr "" + +#: src/gui/insEdit.cpp:5560 +msgid "Double wave length (GBA only)" +msgstr "" + +#: src/gui/insEdit.cpp:5589 src/gui/insEdit.cpp:5666 +msgid "Sound Length" +msgstr "" + +#: src/gui/insEdit.cpp:5592 src/gui/insEdit.cpp:5666 +msgid "Infinity" +msgstr "" + +#: src/gui/insEdit.cpp:5596 +msgid "Direction" +msgstr "" + +#: src/gui/insEdit.cpp:5599 src/gui/insEdit.cpp:5669 src/gui/insEdit.cpp:5697 +#: src/gui/insEdit.cpp:6008 src/gui/insEdit.cpp:6051 +msgid "Up" +msgstr "" + +#: src/gui/insEdit.cpp:5604 src/gui/insEdit.cpp:5674 src/gui/insEdit.cpp:5702 +#: src/gui/insEdit.cpp:6013 src/gui/insEdit.cpp:6056 +msgid "Down" +msgstr "" + +#: src/gui/insEdit.cpp:5620 src/gui/insEdit.cpp:5953 +msgid "Hardware Sequence" +msgstr "" + +#: src/gui/insEdit.cpp:5630 src/gui/insEdit.cpp:5963 +msgid "Tick" +msgstr "" + +#: src/gui/insEdit.cpp:5632 src/gui/insEdit.cpp:5965 +msgid "Command" +msgstr "" + +#: src/gui/insEdit.cpp:5634 src/gui/insEdit.cpp:5967 +msgid "Move/Remove" +msgstr "" + +#: src/gui/insEdit.cpp:5663 +msgid "Env Length" +msgstr "" + +#: src/gui/insEdit.cpp:5690 +msgid "Shift" +msgstr "" + +#: src/gui/insEdit.cpp:5717 src/gui/insEdit.cpp:6073 +msgid "Ticks" +msgstr "" + +#: src/gui/insEdit.cpp:5736 src/gui/insEdit.cpp:6092 src/gui/insEdit.cpp:6239 +msgid "Position" +msgstr "" + +#: src/gui/insEdit.cpp:5815 +msgid "tri" +msgstr "" + +#: src/gui/insEdit.cpp:5882 +msgid "Ring Modulation" +msgstr "" + +#: src/gui/insEdit.cpp:5886 +msgid "Oscillator Sync" +msgstr "" + +#: src/gui/insEdit.cpp:5890 +msgid "Enable filter" +msgstr "" + +#: src/gui/insEdit.cpp:5891 +msgid "Initialize filter" +msgstr "" + +#: src/gui/insEdit.cpp:5894 src/gui/insEdit.cpp:5897 src/gui/insEdit.cpp:6951 +#: src/gui/insEdit.cpp:7215 src/gui/insEdit.cpp:7476 +msgid "Cutoff" +msgstr "" + +#: src/gui/insEdit.cpp:5902 src/gui/insEdit.cpp:6408 src/gui/insEdit.cpp:6952 +#: src/gui/insEdit.cpp:7179 src/gui/insEdit.cpp:7477 +msgid "Filter Mode" +msgstr "" + +#: src/gui/insEdit.cpp:5931 src/gui/insEdit.cpp:7485 +msgid "Noise Mode" +msgstr "" + +#: src/gui/insEdit.cpp:5932 +msgid "Wave Mix Mode" +msgstr "" + +#: src/gui/insEdit.cpp:5935 +msgid "Absolute Cutoff Macro" +msgstr "" + +#: src/gui/insEdit.cpp:5939 +msgid "Absolute Duty Macro" +msgstr "" + +#: src/gui/insEdit.cpp:5945 +msgid "Don't test before new note" +msgstr "" + +#: src/gui/insEdit.cpp:5950 +msgid "Switch roles of frequency and phase reset timer" +msgstr "" + +#: src/gui/insEdit.cpp:5997 src/gui/insEdit.cpp:6040 +msgid "Period" +msgstr "" + +#: src/gui/insEdit.cpp:6002 src/gui/insEdit.cpp:6045 src/gui/insEdit.cpp:6892 +msgid "Amount" +msgstr "" + +#: src/gui/insEdit.cpp:6005 src/gui/insEdit.cpp:6048 +msgid "Bound" +msgstr "" + +#: src/gui/insEdit.cpp:6021 +msgid "Flip" +msgstr "" + +#: src/gui/insEdit.cpp:6210 +msgid "Load waveform" +msgstr "" + +#: src/gui/insEdit.cpp:6215 +msgid "" +"when enabled, a waveform will be loaded into RAM.\n" +"when disabled, only the offset and length change." +msgstr "" + +#: src/gui/insEdit.cpp:6219 +msgid "Waveform##WAVE" +msgstr "" + +#: src/gui/insEdit.cpp:6227 +msgid "Per-channel wave position/length" +msgstr "" + +#: src/gui/insEdit.cpp:6237 +msgid "Ch" +msgstr "" + +#: src/gui/insEdit.cpp:6286 +msgid "Compatibility mode" +msgstr "" + +#: src/gui/insEdit.cpp:6288 +msgid "" +"only use for compatibility with .dmf modules!\n" +"- initializes modulation table with first wavetable\n" +"- does not alter modulation parameters on instrument change" +msgstr "" + +#: src/gui/insEdit.cpp:6290 +msgid "Modulation depth" +msgstr "" + +#: src/gui/insEdit.cpp:6294 +msgid "Modulation speed" +msgstr "" + +#: src/gui/insEdit.cpp:6298 +msgid "Modulation table" +msgstr "" + +#: src/gui/insEdit.cpp:6347 +msgid "Set modulation table (channel 5 only)" +msgstr "" + +#: src/gui/insEdit.cpp:6411 src/gui/insEdit.cpp:7184 +msgid "Filter K1" +msgstr "" + +#: src/gui/insEdit.cpp:6413 src/gui/insEdit.cpp:7185 +msgid "Filter K2" +msgstr "" + +#: src/gui/insEdit.cpp:6417 +msgid "Envelope length" +msgstr "" + +#: src/gui/insEdit.cpp:6420 +msgid "Left Volume Ramp" +msgstr "" + +#: src/gui/insEdit.cpp:6422 +msgid "Right Volume Ramp" +msgstr "" + +#: src/gui/insEdit.cpp:6425 +msgid "Filter K1 Ramp" +msgstr "" + +#: src/gui/insEdit.cpp:6427 +msgid "Filter K2 Ramp" +msgstr "" + +#: src/gui/insEdit.cpp:6430 +msgid "K1 Ramp Slowdown" +msgstr "" + +#: src/gui/insEdit.cpp:6432 +msgid "K2 Ramp Slowdown" +msgstr "" + +#: src/gui/insEdit.cpp:6454 +msgid "Attack Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6460 +msgid "Decay 1 Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6466 +msgid "Decay Level" +msgstr "" + +#: src/gui/insEdit.cpp:6472 +msgid "Decay 2 Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6478 +msgid "Release Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6484 +msgid "Rate Correction" +msgstr "" + +#: src/gui/insEdit.cpp:6512 +msgid "LFO Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6523 +msgid "Use envelope" +msgstr "" + +#: src/gui/insEdit.cpp:6576 +msgid "Sustain/release mode:" +msgstr "" + +#: src/gui/insEdit.cpp:6577 +msgid "Direct (cut on release)" +msgstr "" + +#: src/gui/insEdit.cpp:6580 +msgid "Effective (linear decrease)" +msgstr "" + +#: src/gui/insEdit.cpp:6583 +msgid "Effective (exponential decrease)" +msgstr "" + +#: src/gui/insEdit.cpp:6586 +msgid "Delayed (write R on release)" +msgstr "" + +#: src/gui/insEdit.cpp:6596 src/gui/insEdit.cpp:6597 +msgid "Gain Mode" +msgstr "" + +#: src/gui/insEdit.cpp:6599 src/gui/insEdit.cpp:6600 src/gui/insEdit.cpp:7205 +msgid "Gain" +msgstr "" + +#: src/gui/insEdit.cpp:6633 +msgid "" +"using decrease modes will not produce any sound at all, unless you know what " +"you are doing.\n" +"it is recommended to use the Gain macro for decrease instead." +msgstr "" + +#: src/gui/insEdit.cpp:6703 +msgid "Enable synthesizer" +msgstr "" + +#: src/gui/insEdit.cpp:6721 +msgid "Single-waveform" +msgstr "" + +#: src/gui/insEdit.cpp:6730 +msgid "Dual-waveform" +msgstr "" + +#: src/gui/insEdit.cpp:6803 src/gui/insEdit.cpp:6812 +msgid "Wave 1" +msgstr "" + +#: src/gui/insEdit.cpp:6808 src/gui/insEdit.cpp:6823 +msgid "" +"waveform macro is controlling wave 1!\n" +"this value will be ineffective." +msgstr "" + +#: src/gui/insEdit.cpp:6829 +msgid "Wave 2" +msgstr "" + +#: src/gui/insEdit.cpp:6844 +msgid "Resume preview" +msgstr "" + +#: src/gui/insEdit.cpp:6846 +msgid "Pause preview" +msgstr "" + +#: src/gui/insEdit.cpp:6854 +msgid "Restart preview" +msgstr "" + +#: src/gui/insEdit.cpp:6874 +msgid "Copy to new wavetable" +msgstr "" + +#: src/gui/insEdit.cpp:6881 +msgid "Update Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6902 +msgid "Global" +msgstr "" + +#: src/gui/insEdit.cpp:6906 +msgid "" +"wavetable synthesizer disabled.\n" +"use the Waveform macro to set the wave for this instrument." +msgstr "" + +#: src/gui/insEdit.cpp:6912 +msgid "Macros" +msgstr "" + +#: src/gui/insEdit.cpp:6921 src/gui/insEdit.cpp:6929 src/gui/insEdit.cpp:6938 +#: src/gui/insEdit.cpp:6947 src/gui/insEdit.cpp:6962 src/gui/insEdit.cpp:6976 +#: src/gui/insEdit.cpp:6988 src/gui/insEdit.cpp:7001 src/gui/insEdit.cpp:7017 +#: src/gui/insEdit.cpp:7023 src/gui/insEdit.cpp:7033 src/gui/insEdit.cpp:7040 +#: src/gui/insEdit.cpp:7046 src/gui/insEdit.cpp:7059 src/gui/insEdit.cpp:7066 +#: src/gui/insEdit.cpp:7073 src/gui/insEdit.cpp:7082 src/gui/insEdit.cpp:7092 +#: src/gui/insEdit.cpp:7100 src/gui/insEdit.cpp:7106 src/gui/insEdit.cpp:7114 +#: src/gui/insEdit.cpp:7121 src/gui/insEdit.cpp:7127 src/gui/insEdit.cpp:7137 +#: src/gui/insEdit.cpp:7149 src/gui/insEdit.cpp:7157 src/gui/insEdit.cpp:7173 +#: src/gui/insEdit.cpp:7178 src/gui/insEdit.cpp:7191 src/gui/insEdit.cpp:7198 +#: src/gui/insEdit.cpp:7209 src/gui/insEdit.cpp:7222 src/gui/insEdit.cpp:7231 +#: src/gui/insEdit.cpp:7238 src/gui/insEdit.cpp:7246 src/gui/insEdit.cpp:7270 +#: src/gui/insEdit.cpp:7277 src/gui/insEdit.cpp:7285 src/gui/insEdit.cpp:7296 +#: src/gui/insEdit.cpp:7303 src/gui/insEdit.cpp:7311 src/gui/insEdit.cpp:7319 +#: src/gui/insEdit.cpp:7328 src/gui/insEdit.cpp:7336 src/gui/insEdit.cpp:7342 +#: src/gui/insEdit.cpp:7348 src/gui/insEdit.cpp:7354 src/gui/insEdit.cpp:7359 +#: src/gui/insEdit.cpp:7366 src/gui/insEdit.cpp:7373 src/gui/insEdit.cpp:7381 +#: src/gui/insEdit.cpp:7390 src/gui/insEdit.cpp:7398 src/gui/insEdit.cpp:7410 +#: src/gui/insEdit.cpp:7423 src/gui/insEdit.cpp:7434 src/gui/insEdit.cpp:7444 +#: src/gui/insEdit.cpp:7452 src/gui/insEdit.cpp:7462 src/gui/insEdit.cpp:7471 +msgid "Arpeggio" +msgstr "" + +#: src/gui/insEdit.cpp:6925 src/gui/insEdit.cpp:6932 src/gui/insEdit.cpp:6943 +#: src/gui/insEdit.cpp:6972 src/gui/insEdit.cpp:6984 src/gui/insEdit.cpp:6994 +#: src/gui/insEdit.cpp:7007 src/gui/insEdit.cpp:7054 src/gui/insEdit.cpp:7062 +#: src/gui/insEdit.cpp:7069 src/gui/insEdit.cpp:7088 src/gui/insEdit.cpp:7110 +#: src/gui/insEdit.cpp:7133 src/gui/insEdit.cpp:7144 src/gui/insEdit.cpp:7163 +#: src/gui/insEdit.cpp:7183 src/gui/insEdit.cpp:7194 src/gui/insEdit.cpp:7214 +#: src/gui/insEdit.cpp:7234 src/gui/insEdit.cpp:7242 src/gui/insEdit.cpp:7249 +#: src/gui/insEdit.cpp:7254 src/gui/insEdit.cpp:7260 src/gui/insEdit.cpp:7266 +#: src/gui/insEdit.cpp:7273 src/gui/insEdit.cpp:7281 src/gui/insEdit.cpp:7290 +#: src/gui/insEdit.cpp:7299 src/gui/insEdit.cpp:7307 src/gui/insEdit.cpp:7324 +#: src/gui/insEdit.cpp:7332 src/gui/insEdit.cpp:7338 src/gui/insEdit.cpp:7362 +#: src/gui/insEdit.cpp:7369 src/gui/insEdit.cpp:7377 src/gui/insEdit.cpp:7386 +#: src/gui/insEdit.cpp:7394 src/gui/insEdit.cpp:7402 src/gui/insEdit.cpp:7414 +#: src/gui/insEdit.cpp:7429 src/gui/insEdit.cpp:7440 src/gui/insEdit.cpp:7448 +#: src/gui/insEdit.cpp:7457 src/gui/insEdit.cpp:7475 +msgid "Phase Reset" +msgstr "" + +#: src/gui/insEdit.cpp:6939 src/gui/insEdit.cpp:7024 src/gui/insEdit.cpp:7210 +#: src/gui/insEdit.cpp:7247 +msgid "Duty/Noise" +msgstr "" + +#: src/gui/insEdit.cpp:6966 src/gui/insEdit.cpp:7288 +msgid "Surround" +msgstr "" + +#: src/gui/insEdit.cpp:6968 src/gui/insEdit.cpp:6981 src/gui/insEdit.cpp:7026 +#: src/gui/insEdit.cpp:7085 src/gui/insEdit.cpp:7141 src/gui/insEdit.cpp:7159 +#: src/gui/insEdit.cpp:7180 src/gui/insEdit.cpp:7201 src/gui/insEdit.cpp:7225 +#: src/gui/insEdit.cpp:7278 src/gui/insEdit.cpp:7304 src/gui/insEdit.cpp:7321 +#: src/gui/insEdit.cpp:7329 src/gui/insEdit.cpp:7374 src/gui/insEdit.cpp:7383 +#: src/gui/insEdit.cpp:7399 src/gui/insEdit.cpp:7411 src/gui/insEdit.cpp:7426 +#: src/gui/insEdit.cpp:7454 src/gui/insEdit.cpp:7464 +msgid "Panning (left)" +msgstr "" + +#: src/gui/insEdit.cpp:6969 src/gui/insEdit.cpp:6982 src/gui/insEdit.cpp:7027 +#: src/gui/insEdit.cpp:7086 src/gui/insEdit.cpp:7142 src/gui/insEdit.cpp:7160 +#: src/gui/insEdit.cpp:7181 src/gui/insEdit.cpp:7202 src/gui/insEdit.cpp:7226 +#: src/gui/insEdit.cpp:7279 src/gui/insEdit.cpp:7305 src/gui/insEdit.cpp:7322 +#: src/gui/insEdit.cpp:7330 src/gui/insEdit.cpp:7375 src/gui/insEdit.cpp:7384 +#: src/gui/insEdit.cpp:7400 src/gui/insEdit.cpp:7412 src/gui/insEdit.cpp:7427 +#: src/gui/insEdit.cpp:7455 src/gui/insEdit.cpp:7465 +msgid "Panning (right)" +msgstr "" + +#: src/gui/insEdit.cpp:6990 src/gui/insEdit.cpp:7003 src/gui/insEdit.cpp:7107 +#: src/gui/insEdit.cpp:7199 src/gui/insEdit.cpp:7239 src/gui/insEdit.cpp:7424 +msgid "Noise Freq" +msgstr "" + +#: src/gui/insEdit.cpp:6996 src/gui/insEdit.cpp:7010 src/gui/insEdit.cpp:7167 +msgid "AutoEnv Num" +msgstr "" + +#: src/gui/insEdit.cpp:6997 src/gui/insEdit.cpp:7011 src/gui/insEdit.cpp:7168 +msgid "AutoEnv Den" +msgstr "" + +#: src/gui/insEdit.cpp:7012 +msgid "Noise AND Mask" +msgstr "" + +#: src/gui/insEdit.cpp:7013 +msgid "Noise OR Mask" +msgstr "" + +#: src/gui/insEdit.cpp:7034 +msgid "On/Off" +msgstr "" + +#: src/gui/insEdit.cpp:7060 +msgid "Patch" +msgstr "" + +#: src/gui/insEdit.cpp:7076 +msgid "Mod Depth" +msgstr "" + +#: src/gui/insEdit.cpp:7077 +msgid "Mod Speed" +msgstr "" + +#: src/gui/insEdit.cpp:7078 +msgid "Mod Position" +msgstr "" + +#: src/gui/insEdit.cpp:7083 +msgid "Noise Length" +msgstr "" + +#: src/gui/insEdit.cpp:7093 +msgid "Wave Pos" +msgstr "" + +#: src/gui/insEdit.cpp:7096 +msgid "Wave Length" +msgstr "" + +#: src/gui/insEdit.cpp:7115 +msgid "AUDCTL" +msgstr "" + +#: src/gui/insEdit.cpp:7122 src/gui/insEdit.cpp:7343 +msgid "Pulse Width" +msgstr "" + +#: src/gui/insEdit.cpp:7139 +msgid "Duty/Int" +msgstr "" + +#: src/gui/insEdit.cpp:7145 src/gui/insEdit.cpp:7406 +msgid "Load LFSR" +msgstr "" + +#: src/gui/insEdit.cpp:7165 +msgid "Envelope Mode" +msgstr "" + +#: src/gui/insEdit.cpp:7218 +msgid "Phase Reset Timer" +msgstr "" + +#: src/gui/insEdit.cpp:7252 src/gui/insEdit.cpp:7259 +msgid "Freq Divider" +msgstr "" + +#: src/gui/insEdit.cpp:7255 +msgid "Clock Divider" +msgstr "" + +#: src/gui/insEdit.cpp:7264 +msgid "Global Volume" +msgstr "" + +#: src/gui/insEdit.cpp:7286 +msgid "Echo Level" +msgstr "" + +#: src/gui/insEdit.cpp:7291 +msgid "Echo Feedback" +msgstr "" + +#: src/gui/insEdit.cpp:7292 +msgid "Echo Length" +msgstr "" + +#: src/gui/insEdit.cpp:7312 +msgid "Group Ctrl" +msgstr "" + +#: src/gui/insEdit.cpp:7313 +msgid "Group Attack" +msgstr "" + +#: src/gui/insEdit.cpp:7314 +msgid "Group Decay" +msgstr "" + +#: src/gui/insEdit.cpp:7320 +msgid "Noise Type" +msgstr "" + +#: src/gui/insEdit.cpp:7367 +msgid "Square/Noise" +msgstr "" + +#: src/gui/insEdit.cpp:7404 +msgid "Tap A Location" +msgstr "" + +#: src/gui/insEdit.cpp:7405 +msgid "Tap B Location" +msgstr "" + +#: src/gui/insEdit.cpp:7416 +msgid "Portion A Length" +msgstr "" + +#: src/gui/insEdit.cpp:7417 +msgid "Portion B Length" +msgstr "" + +#: src/gui/insEdit.cpp:7418 +msgid "Portion A Offset" +msgstr "" + +#: src/gui/insEdit.cpp:7419 +msgid "Portion B Offset" +msgstr "" + +#: src/gui/insEdit.cpp:7463 +msgid "Parameter" +msgstr "" + +#: src/gui/insEdit.cpp:7467 +msgid "Load Value" +msgstr "" + +#: src/gui/insEdit.cpp:7479 +msgid "Filter Toggle" +msgstr "" + +#: src/gui/insEdit.cpp:7486 +msgid "Wave Mix" +msgstr "" + +#: src/gui/insEdit.cpp:7500 +msgid "Octave offset" +msgstr "" + +#: src/gui/insEdit.cpp:7505 +msgid "go to Macros for other parameters." +msgstr "" + +#: src/gui/insEdit.cpp:7521 +msgid "invalid instrument type! change it first." +msgstr "" + +#: src/gui/insEdit.cpp:7565 +msgid "clear contents" +msgstr "" + +#: src/gui/insEdit.cpp:7571 +msgid "offset..." +msgstr "" + +#: src/gui/insEdit.cpp:7572 src/gui/insEdit.cpp:7605 +msgid "X" +msgstr "" + +#: src/gui/insEdit.cpp:7573 src/gui/insEdit.cpp:7609 +msgid "Y" +msgstr "" + +#: src/gui/insEdit.cpp:7574 +msgid "offset" +msgstr "" + +#: src/gui/insEdit.cpp:7637 +msgid "Min" +msgstr "" + +#: src/gui/insEdit.cpp:7638 +msgid "Max" +msgstr "" diff --git a/po/fr.po b/po/fr.po new file mode 100644 index 000000000..543894b1a --- /dev/null +++ b/po/fr.po @@ -0,0 +1,16025 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: furnace 0.6.3\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: src/engine/sysDef.cpp:428 src/engine/sysDef.cpp:441 +msgid "20xx: Set channel mode (bit 0: square; bit 1: noise; bit 2: envelope)" +msgstr "" + +#: src/engine/sysDef.cpp:429 +msgid "21xx: Set noise frequency (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:430 src/engine/sysDef.cpp:443 +msgid "22xy: Set envelope mode (x: shape, y: enable for this channel)" +msgstr "" + +#: src/engine/sysDef.cpp:431 src/engine/sysDef.cpp:444 +msgid "23xx: Set envelope period low byte" +msgstr "" + +#: src/engine/sysDef.cpp:432 src/engine/sysDef.cpp:445 +msgid "24xx: Set envelope period high byte" +msgstr "" + +#: src/engine/sysDef.cpp:433 src/engine/sysDef.cpp:446 +#: src/engine/sysDef.cpp:1599 +msgid "25xx: Envelope slide up" +msgstr "" + +#: src/engine/sysDef.cpp:434 src/engine/sysDef.cpp:447 +#: src/engine/sysDef.cpp:1600 +msgid "26xx: Envelope slide down" +msgstr "" + +#: src/engine/sysDef.cpp:435 src/engine/sysDef.cpp:448 +#: src/engine/sysDef.cpp:1601 +msgid "29xy: Set auto-envelope (x: numerator; y: denominator)" +msgstr "" + +#: src/engine/sysDef.cpp:436 src/engine/sysDef.cpp:449 +msgid "2Exx: Write to I/O port A" +msgstr "" + +#: src/engine/sysDef.cpp:437 src/engine/sysDef.cpp:450 +msgid "2Fxx: Write to I/O port B" +msgstr "" + +#: src/engine/sysDef.cpp:442 +msgid "21xx: Set noise frequency (0 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:451 +msgid "12xx: Set duty cycle (0 to 8)" +msgstr "" + +#: src/engine/sysDef.cpp:453 +msgid "27xx: Set noise AND mask" +msgstr "" + +#: src/engine/sysDef.cpp:454 +msgid "28xx: Set noise OR mask" +msgstr "" + +#: src/engine/sysDef.cpp:455 +msgid "" +"2Cxy: Automatic noise frequency (x: mode (0: disable, 1: freq, 2: freq + OR " +"mask); y: offset)" +msgstr "" + +#: src/engine/sysDef.cpp:456 +msgid "2Dxx: NOT TO BE EMPLOYED BY THE COMPOSER" +msgstr "" + +#: src/engine/sysDef.cpp:460 +msgid "30xx: Toggle hard envelope reset on new notes" +msgstr "" + +#: src/engine/sysDef.cpp:465 +msgid "18xx: Toggle extended channel 3 mode" +msgstr "" + +#: src/engine/sysDef.cpp:470 src/engine/sysDef.cpp:766 +#: src/engine/sysDef.cpp:1025 src/engine/sysDef.cpp:1272 +#: src/engine/sysDef.cpp:1593 +msgid "17xx: Toggle PCM mode (LEGACY)" +msgstr "" + +#: src/engine/sysDef.cpp:471 src/engine/sysDef.cpp:1653 +#: src/engine/sysDef.cpp:1963 +msgid "DFxx: Set sample playback direction (0: normal; 1: reverse)" +msgstr "" + +#: src/engine/sysDef.cpp:476 +msgid "18xx: Toggle drums mode (1: enabled; 0: disabled)" +msgstr "" + +#: src/engine/sysDef.cpp:480 src/engine/sysDef.cpp:554 +#: src/engine/sysDef.cpp:575 +msgid "11xx: Set feedback (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:481 +msgid "12xx: Set level of operator 1 (0 highest, 7F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:482 +msgid "13xx: Set level of operator 2 (0 highest, 7F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:483 +msgid "14xx: Set level of operator 3 (0 highest, 7F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:484 +msgid "15xx: Set level of operator 4 (0 highest, 7F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:485 src/engine/sysDef.cpp:580 +#: src/engine/sysDef.cpp:635 +msgid "16xy: Set operator multiplier (x: operator from 1 to 4; y: multiplier)" +msgstr "" + +#: src/engine/sysDef.cpp:486 +msgid "19xx: Set attack of all operators (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:487 +msgid "1Axx: Set attack of operator 1 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:488 +msgid "1Bxx: Set attack of operator 2 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:489 +msgid "1Cxx: Set attack of operator 3 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:490 +msgid "1Dxx: Set attack of operator 4 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:491 src/engine/sysDef.cpp:588 +#: src/engine/sysDef.cpp:656 +msgid "50xy: Set AM (x: operator from 1 to 4 (0 for all ops); y: AM)" +msgstr "" + +#: src/engine/sysDef.cpp:492 src/engine/sysDef.cpp:589 +#: src/engine/sysDef.cpp:657 +msgid "" +"51xy: Set sustain level (x: operator from 1 to 4 (0 for all ops); y: sustain)" +msgstr "" + +#: src/engine/sysDef.cpp:493 src/engine/sysDef.cpp:590 +#: src/engine/sysDef.cpp:658 +msgid "52xy: Set release (x: operator from 1 to 4 (0 for all ops); y: release)" +msgstr "" + +#: src/engine/sysDef.cpp:494 +msgid "" +"53xy: Set detune (x: operator from 1 to 4 (0 for all ops); y: detune where 3 " +"is center)" +msgstr "" + +#: src/engine/sysDef.cpp:495 src/engine/sysDef.cpp:592 +#: src/engine/sysDef.cpp:660 +msgid "" +"54xy: Set envelope scale (x: operator from 1 to 4 (0 for all ops); y: scale " +"from 0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:496 +msgid "56xx: Set decay of all operators (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:497 +msgid "57xx: Set decay of operator 1 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:498 +msgid "58xx: Set decay of operator 2 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:499 +msgid "59xx: Set decay of operator 3 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:500 +msgid "5Axx: Set decay of operator 4 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:501 +msgid "5Bxx: Set decay 2 of all operators (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:502 +msgid "5Cxx: Set decay 2 of operator 1 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:503 +msgid "5Dxx: Set decay 2 of operator 2 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:504 +msgid "5Exx: Set decay 2 of operator 3 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:505 +msgid "5Fxx: Set decay 2 of operator 4 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:510 +msgid "10xx: Set noise frequency (xx: value; 0 disables noise)" +msgstr "" + +#: src/engine/sysDef.cpp:511 +msgid "17xx: Set LFO speed" +msgstr "" + +#: src/engine/sysDef.cpp:512 +msgid "18xx: Set LFO waveform (0 saw, 1 square, 2 triangle, 3 noise)" +msgstr "" + +#: src/engine/sysDef.cpp:513 +msgid "1Exx: Set AM depth (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:514 +msgid "1Fxx: Set PM depth (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:515 +msgid "" +"55xy: Set detune 2 (x: operator from 1 to 4 (0 for all ops); y: detune from " +"0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:520 +msgid "24xx: Set LFO 2 speed" +msgstr "" + +#: src/engine/sysDef.cpp:521 +msgid "25xx: Set LFO 2 waveform (0 saw, 1 square, 2 triangle, 3 noise)" +msgstr "" + +#: src/engine/sysDef.cpp:522 +msgid "26xx: Set AM 2 depth (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:523 +msgid "27xx: Set PM 2 depth (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:524 +msgid "" +"28xy: Set reverb (x: operator from 1 to 4 (0 for all ops); y: reverb from 0 " +"to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:525 src/engine/sysDef.cpp:650 +msgid "" +"2Axy: Set waveform (x: operator from 1 to 4 (0 for all ops); y: waveform " +"from 0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:526 +msgid "" +"2Bxy: Set envelope generator shift (x: operator from 1 to 4 (0 for all ops); " +"y: shift from 0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:527 +msgid "" +"2Cxy: Set fine multiplier (x: operator from 1 to 4 (0 for all ops); y: fine)" +msgstr "" + +#: src/engine/sysDef.cpp:530 +msgid "" +"3xyy: Set fixed frequency of operator 1 (x: octave from 0 to 7; y: frequency)" +msgstr "" + +#: src/engine/sysDef.cpp:531 +msgid "" +"3xyy: Set fixed frequency of operator 2 (x: octave from 8 to F; y: frequency)" +msgstr "" + +#: src/engine/sysDef.cpp:532 +msgid "" +"4xyy: Set fixed frequency of operator 3 (x: octave from 0 to 7; y: frequency)" +msgstr "" + +#: src/engine/sysDef.cpp:533 +msgid "" +"4xyy: Set fixed frequency of operator 4 (x: octave from 8 to F; y: frequency)" +msgstr "" + +#: src/engine/sysDef.cpp:540 +msgid "10xy: Setup LFO (x: enable; y: speed)" +msgstr "" + +#: src/engine/sysDef.cpp:541 +msgid "" +"55xy: Set SSG envelope (x: operator from 1 to 4 (0 for all ops); y: 0-7 on, " +"8 off)" +msgstr "" + +#: src/engine/sysDef.cpp:549 +msgid "1Fxx: Set ADPCM-A global volume (0 to 3F)" +msgstr "" + +#: src/engine/sysDef.cpp:553 +msgid "10xx: Set patch (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:555 src/engine/sysDef.cpp:576 +#: src/engine/sysDef.cpp:631 +msgid "12xx: Set level of operator 1 (0 highest, 3F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:556 src/engine/sysDef.cpp:577 +#: src/engine/sysDef.cpp:632 +msgid "13xx: Set level of operator 2 (0 highest, 3F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:557 +msgid "16xy: Set operator multiplier (x: operator from 1 to 2; y: multiplier)" +msgstr "" + +#: src/engine/sysDef.cpp:558 src/engine/sysDef.cpp:582 +#: src/engine/sysDef.cpp:637 +msgid "19xx: Set attack of all operators (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:559 src/engine/sysDef.cpp:583 +#: src/engine/sysDef.cpp:638 +msgid "1Axx: Set attack of operator 1 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:560 src/engine/sysDef.cpp:584 +#: src/engine/sysDef.cpp:639 +msgid "1Bxx: Set attack of operator 2 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:561 +msgid "50xy: Set AM (x: operator from 1 to 2 (0 for all ops); y: AM)" +msgstr "" + +#: src/engine/sysDef.cpp:562 +msgid "" +"51xy: Set sustain level (x: operator from 1 to 2 (0 for all ops); y: sustain)" +msgstr "" + +#: src/engine/sysDef.cpp:563 +msgid "52xy: Set release (x: operator from 1 to 2 (0 for all ops); y: release)" +msgstr "" + +#: src/engine/sysDef.cpp:564 +msgid "53xy: Set vibrato (x: operator from 1 to 2 (0 for all ops); y: enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:565 +msgid "" +"54xy: Set envelope scale (x: operator from 1 to 2 (0 for all ops); y: scale " +"from 0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:566 +msgid "" +"55xy: Set envelope sustain (x: operator from 1 to 2 (0 for all ops); y: " +"enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:567 src/engine/sysDef.cpp:594 +#: src/engine/sysDef.cpp:662 +msgid "56xx: Set decay of all operators (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:568 src/engine/sysDef.cpp:595 +#: src/engine/sysDef.cpp:663 +msgid "57xx: Set decay of operator 1 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:569 src/engine/sysDef.cpp:596 +#: src/engine/sysDef.cpp:664 +msgid "58xx: Set decay of operator 2 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:570 +msgid "" +"5Bxy: Set whether key will scale envelope (x: operator from 1 to 2 (0 for " +"all ops); y: enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:574 +msgid "10xx: Set global AM depth (0: 1dB, 1: 4.8dB)" +msgstr "" + +#: src/engine/sysDef.cpp:578 src/engine/sysDef.cpp:633 +msgid "14xx: Set level of operator 3 (0 highest, 3F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:579 src/engine/sysDef.cpp:634 +msgid "15xx: Set level of operator 4 (0 highest, 3F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:581 +msgid "17xx: Set global vibrato depth (0: normal, 1: double)" +msgstr "" + +#: src/engine/sysDef.cpp:585 src/engine/sysDef.cpp:640 +msgid "1Cxx: Set attack of operator 3 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:586 src/engine/sysDef.cpp:641 +msgid "1Dxx: Set attack of operator 4 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:587 +msgid "" +"2Axy: Set waveform (x: operator from 1 to 4 (0 for all ops); y: waveform " +"from 0 to 3 in OPL2 and 0 to 7 in OPL3)" +msgstr "" + +#: src/engine/sysDef.cpp:591 src/engine/sysDef.cpp:659 +msgid "53xy: Set vibrato (x: operator from 1 to 4 (0 for all ops); y: enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:593 src/engine/sysDef.cpp:661 +msgid "" +"55xy: Set envelope sustain (x: operator from 1 to 4 (0 for all ops); y: " +"enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:597 src/engine/sysDef.cpp:665 +msgid "59xx: Set decay of operator 3 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:598 src/engine/sysDef.cpp:666 +msgid "5Axx: Set decay of operator 4 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:599 src/engine/sysDef.cpp:667 +msgid "" +"5Bxy: Set whether key will scale envelope (x: operator from 1 to 4 (0 for " +"all ops); y: enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:603 src/engine/sysDef.cpp:680 +msgid "" +"10xx: Set waveform (bit 0: triangle; bit 1: saw; bit 2: pulse; bit 3: noise)" +msgstr "" + +#: src/engine/sysDef.cpp:604 +msgid "11xx: Set coarse cutoff (not recommended; use 4xxx instead)" +msgstr "" + +#: src/engine/sysDef.cpp:605 +msgid "12xx: Set coarse pulse width (not recommended; use 3xxx instead)" +msgstr "" + +#: src/engine/sysDef.cpp:606 +msgid "13xx: Set resonance (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:607 +msgid "" +"14xx: Set filter mode (bit 0: low pass; bit 1: band pass; bit 2: high pass)" +msgstr "" + +#: src/engine/sysDef.cpp:608 +msgid "15xx: Set envelope reset time" +msgstr "" + +#: src/engine/sysDef.cpp:609 +msgid "1Axx: Disable envelope reset for this channel (1 disables; 0 enables)" +msgstr "" + +#: src/engine/sysDef.cpp:610 +msgid "1Bxy: Reset cutoff (x: on new note; y: now)" +msgstr "" + +#: src/engine/sysDef.cpp:611 +msgid "1Cxy: Reset pulse width (x: on new note; y: now)" +msgstr "" + +#: src/engine/sysDef.cpp:612 +msgid "1Exy: Change other parameters (LEGACY)" +msgstr "" + +#: src/engine/sysDef.cpp:613 +msgid "20xy: Set attack/decay (x: attack; y: decay)" +msgstr "" + +#: src/engine/sysDef.cpp:614 +msgid "21xy: Set sustain/release (x: sustain; y: release)" +msgstr "" + +#: src/engine/sysDef.cpp:616 src/engine/sysDef.cpp:688 +msgid "3xxx: Set pulse width (0 to FFF)" +msgstr "" + +#: src/engine/sysDef.cpp:617 +msgid "4xxx: Set cutoff (0 to 7FF)" +msgstr "" + +#: src/engine/sysDef.cpp:622 src/engine/sysDef.cpp:745 +#: src/engine/sysDef.cpp:762 src/engine/sysDef.cpp:1000 +#: src/engine/sysDef.cpp:1050 src/engine/sysDef.cpp:1268 +#: src/engine/sysDef.cpp:1320 src/engine/sysDef.cpp:1590 +#: src/engine/sysDef.cpp:1788 src/engine/sysDef.cpp:1792 +#: src/engine/sysDef.cpp:1893 src/engine/sysDef.cpp:2063 +#: src/engine/sysDef.cpp:2077 +msgid "10xx: Set waveform" +msgstr "" + +#: src/engine/sysDef.cpp:626 +msgid "20xx: Set PCM frequency" +msgstr "" + +#: src/engine/sysDef.cpp:630 +msgid "" +"10xy: Set AM depth (x: operator from 1 to 4 (0 for all ops); y: depth (0: " +"1dB, 1: 4.8dB))" +msgstr "" + +#: src/engine/sysDef.cpp:636 +msgid "" +"17xy: Set vibrato depth (x: operator from 1 to 4 (0 for all ops); y: depth " +"(0: normal, 1: double))" +msgstr "" + +#: src/engine/sysDef.cpp:642 +msgid "20xy: Set panning of operator 1 (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:643 +msgid "21xy: Set panning of operator 2 (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:644 +msgid "22xy: Set panning of operator 3 (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:645 +msgid "23xy: Set panning of operator 4 (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:646 +msgid "" +"24xy: Set output level register (x: operator from 1 to 4 (0 for all ops); y: " +"level from 0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:647 +msgid "" +"25xy: Set modulation input level (x: operator from 1 to 4 (0 for all ops); " +"y: level from 0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:648 +msgid "" +"26xy: Set envelope delay (x: operator from 1 to 4 (0 for all ops); y: delay " +"from 0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:649 +msgid "27xx: Set noise mode for operator 4 (x: mode from 0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:651 +msgid "" +"2Fxy: Set fixed frequency block (x: operator from 1 to 4; y: octave from 0 " +"to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:652 +msgid "40xx: Set detune of operator 1 (80: center)" +msgstr "" + +#: src/engine/sysDef.cpp:653 +msgid "41xx: Set detune of operator 2 (80: center)" +msgstr "" + +#: src/engine/sysDef.cpp:654 +msgid "42xx: Set detune of operator 3 (80: center)" +msgstr "" + +#: src/engine/sysDef.cpp:655 +msgid "43xx: Set detune of operator 4 (80: center)" +msgstr "" + +#: src/engine/sysDef.cpp:670 +msgid "" +"3xyy: Set fixed frequency F-num of operator 1 (x: high 2 bits from 0 to 3; " +"y: low 8 bits of F-num)" +msgstr "" + +#: src/engine/sysDef.cpp:671 +msgid "" +"3xyy: Set fixed frequency F-num of operator 2 (x: high 2 bits from 4 to 7; " +"y: low 8 bits of F-num)" +msgstr "" + +#: src/engine/sysDef.cpp:672 +msgid "" +"3xyy: Set fixed frequency F-num of operator 3 (x: high 2 bits from 8 to B; " +"y: low 8 bits of F-num)" +msgstr "" + +#: src/engine/sysDef.cpp:673 +msgid "" +"3xyy: Set fixed frequency F-num of operator 4 (x: high 2 bits from C to F; " +"y: low 8 bits of F-num)" +msgstr "" + +#: src/engine/sysDef.cpp:681 +msgid "11xx: Set resonance (0 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:682 +msgid "" +"12xx: Set filter mode (bit 0: low pass; bit 1: band pass; bit 2: high pass)" +msgstr "" + +#: src/engine/sysDef.cpp:683 +msgid "13xx: Disable envelope reset for this channel (1 disables; 0 enables)" +msgstr "" + +#: src/engine/sysDef.cpp:684 +msgid "14xy: Reset cutoff (x: on new note; y: now)" +msgstr "" + +#: src/engine/sysDef.cpp:685 +msgid "15xy: Reset pulse width (x: on new note; y: now)" +msgstr "" + +#: src/engine/sysDef.cpp:686 +msgid "16xy: Change other parameters" +msgstr "" + +#: src/engine/sysDef.cpp:689 src/engine/sysDef.cpp:1733 +msgid "4xxx: Set cutoff (0 to FFF)" +msgstr "" + +#: src/engine/sysDef.cpp:697 +msgid "Yamaha YMU759 (MA-2)" +msgstr "" + +#: src/engine/sysDef.cpp:698 +msgid "" +"a chip which found its way inside mobile phones in the 2000's.\n" +"as proprietary as it is, it passed away after losing to MP3 in the mobile " +"hardware battle." +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:807 src/engine/sysDef.cpp:819 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:915 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1237 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1314 src/engine/sysDef.cpp:1356 +#: src/engine/sysDef.cpp:1396 src/engine/sysDef.cpp:1499 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1572 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1608 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1799 src/engine/sysDef.cpp:1810 +#: src/engine/sysDef.cpp:1821 src/engine/sysDef.cpp:1832 +#: src/engine/sysDef.cpp:1900 src/engine/sysDef.cpp:1910 +#: src/engine/sysDef.cpp:1920 src/engine/sysDef.cpp:1944 +#: src/engine/sysDef.cpp:1957 src/engine/sysDef.cpp:1970 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2037 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2122 +#: src/engine/sysDef.cpp:2138 src/engine/sysDef.cpp:2150 +msgid "Channel 1" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:807 src/engine/sysDef.cpp:819 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:915 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1237 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1314 src/engine/sysDef.cpp:1356 +#: src/engine/sysDef.cpp:1396 src/engine/sysDef.cpp:1499 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1572 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1608 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1799 src/engine/sysDef.cpp:1810 +#: src/engine/sysDef.cpp:1821 src/engine/sysDef.cpp:1832 +#: src/engine/sysDef.cpp:1900 src/engine/sysDef.cpp:1910 +#: src/engine/sysDef.cpp:1920 src/engine/sysDef.cpp:1944 +#: src/engine/sysDef.cpp:1957 src/engine/sysDef.cpp:1970 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2037 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2122 +#: src/engine/sysDef.cpp:2138 src/engine/sysDef.cpp:2150 +msgid "Channel 2" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:807 src/engine/sysDef.cpp:819 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1237 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1314 +#: src/engine/sysDef.cpp:1356 src/engine/sysDef.cpp:1396 +#: src/engine/sysDef.cpp:1499 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1572 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1799 src/engine/sysDef.cpp:1810 +#: src/engine/sysDef.cpp:1821 src/engine/sysDef.cpp:1832 +#: src/engine/sysDef.cpp:1910 src/engine/sysDef.cpp:1944 +#: src/engine/sysDef.cpp:1957 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2037 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +#: src/engine/sysDef.cpp:2122 src/engine/sysDef.cpp:2138 +#: src/engine/sysDef.cpp:2150 +msgid "Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1237 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1314 +#: src/engine/sysDef.cpp:1356 src/engine/sysDef.cpp:1396 +#: src/engine/sysDef.cpp:1499 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1572 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1910 +#: src/engine/sysDef.cpp:1944 src/engine/sysDef.cpp:1957 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +#: src/engine/sysDef.cpp:2122 src/engine/sysDef.cpp:2150 +msgid "Channel 4" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1314 +#: src/engine/sysDef.cpp:1356 src/engine/sysDef.cpp:1396 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1572 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1705 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 5" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1356 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 6" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 7" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 8" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 9" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 10" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 11" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 12" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 13" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 14" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 15" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 16" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:700 +#: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1767 src/engine/sysDef.cpp:1888 +#: src/engine/sysDef.cpp:1944 src/engine/sysDef.cpp:1945 +#: src/gui/settings.cpp:4094 +msgid "PCM" +msgstr "" + +#: src/engine/sysDef.cpp:706 +msgid "Sega Genesis/Mega Drive" +msgstr "" + +#: src/engine/sysDef.cpp:712 +msgid "Sega Genesis Extended Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:718 src/gui/sysConf.cpp:158 +msgid "TI SN76489" +msgstr "" + +#: src/engine/sysDef.cpp:719 +msgid "" +"a square/noise sound chip found on the Sega Master System, ColecoVision, " +"Tandy, TI's own 99/4A and a few other places." +msgstr "" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 +msgid "Square 1" +msgstr "" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 +msgid "Square 2" +msgstr "" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 +msgid "Square 3" +msgstr "" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:739 +#: src/engine/sysDef.cpp:773 src/engine/sysDef.cpp:955 +#: src/engine/sysDef.cpp:1314 src/engine/sysDef.cpp:1874 +#: src/engine/sysDef.cpp:1920 src/engine/sysDef.cpp:2037 +#: src/engine/sysDef.cpp:2100 src/gui/settings.cpp:4093 +#: src/gui/insEdit.cpp:6978 src/gui/insEdit.cpp:7129 src/gui/insEdit.cpp:7223 +#: src/gui/insEdit.cpp:7315 +msgid "Noise" +msgstr "" + +#: src/engine/sysDef.cpp:726 +msgid "20xy: Set noise mode (x: preset freq/ch3 freq; y: thin pulse/noise)" +msgstr "" + +#: src/engine/sysDef.cpp:731 +msgid "Sega Master System + FM Expansion" +msgstr "" + +#: src/engine/sysDef.cpp:737 src/gui/settings.cpp:4025 +msgid "Game Boy" +msgstr "" + +#: src/engine/sysDef.cpp:738 +msgid "the most popular portable game console of the era." +msgstr "" + +#: src/engine/sysDef.cpp:739 src/engine/sysDef.cpp:773 +#: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:2100 +msgid "Pulse 1" +msgstr "" + +#: src/engine/sysDef.cpp:739 src/engine/sysDef.cpp:773 +#: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:2100 +msgid "Pulse 2" +msgstr "" + +#: src/engine/sysDef.cpp:739 src/gui/settings.cpp:3930 +#: src/gui/guiConst.cpp:1395 src/gui/insEdit.cpp:6652 +msgid "Wavetable" +msgstr "" + +#: src/engine/sysDef.cpp:746 +msgid "11xx: Set noise length (0: long; 1: short)" +msgstr "" + +#: src/engine/sysDef.cpp:747 +msgid "12xx: Set duty cycle (0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:748 +msgid "13xy: Setup sweep (x: time; y: shift)" +msgstr "" + +#: src/engine/sysDef.cpp:749 +msgid "14xx: Set sweep direction (0: up; 1: down)" +msgstr "" + +#: src/engine/sysDef.cpp:754 +msgid "PC Engine/TurboGrafx-16" +msgstr "" + +#: src/engine/sysDef.cpp:755 +msgid "an '80s game console with a wavetable sound chip, popular in Japan." +msgstr "" + +#: src/engine/sysDef.cpp:763 src/engine/sysDef.cpp:1001 +#: src/engine/sysDef.cpp:1793 +msgid "11xx: Toggle noise mode" +msgstr "" + +#: src/engine/sysDef.cpp:764 +msgid "12xx: Setup LFO (0: disabled; 1: 1x depth; 2: 16x depth; 3: 256x depth)" +msgstr "" + +#: src/engine/sysDef.cpp:765 +msgid "13xx: Set LFO speed" +msgstr "" + +#: src/engine/sysDef.cpp:771 +msgid "NES (Ricoh 2A03)" +msgstr "" + +#: src/engine/sysDef.cpp:772 +msgid "" +"also known as Famicom in Japan, it's the most well-known game console of the " +"'80s." +msgstr "" + +#: src/engine/sysDef.cpp:773 src/gui/waveEdit.cpp:31 src/gui/waveEdit.cpp:217 +#: src/gui/insEdit.cpp:200 src/gui/insEdit.cpp:324 src/gui/insEdit.cpp:658 +msgid "Triangle" +msgstr "" + +#: src/engine/sysDef.cpp:773 src/engine/sysDef.cpp:2100 +#: src/gui/insEdit.cpp:2629 +msgid "DPCM" +msgstr "" + +#: src/engine/sysDef.cpp:779 src/engine/sysDef.cpp:2106 +msgid "11xx: Write to delta modulation counter (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:780 src/engine/sysDef.cpp:1068 +msgid "12xx: Set duty cycle/noise mode (pulse: 0 to 3; noise: 0 or 1)" +msgstr "" + +#: src/engine/sysDef.cpp:781 src/engine/sysDef.cpp:2108 +msgid "13xy: Sweep up (x: time; y: shift)" +msgstr "" + +#: src/engine/sysDef.cpp:782 src/engine/sysDef.cpp:2109 +msgid "14xy: Sweep down (x: time; y: shift)" +msgstr "" + +#: src/engine/sysDef.cpp:783 src/engine/sysDef.cpp:2110 +msgid "" +"15xx: Set envelope mode (0: envelope, 1: length, 2: looping, 3: constant)" +msgstr "" + +#: src/engine/sysDef.cpp:784 src/engine/sysDef.cpp:2111 +msgid "16xx: Set length counter (refer to manual for a list of values)" +msgstr "" + +#: src/engine/sysDef.cpp:785 src/engine/sysDef.cpp:2112 +msgid "17xx: Set frame counter mode (0: 4-step, 1: 5-step)" +msgstr "" + +#: src/engine/sysDef.cpp:786 src/engine/sysDef.cpp:2113 +msgid "18xx: Select PCM/DPCM mode (0: PCM; 1: DPCM)" +msgstr "" + +#: src/engine/sysDef.cpp:787 src/engine/sysDef.cpp:2114 +msgid "19xx: Set triangle linear counter (0 to 7F; 80 and higher halt)" +msgstr "" + +#: src/engine/sysDef.cpp:788 src/engine/sysDef.cpp:2115 +msgid "20xx: Set DPCM frequency (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:793 +msgid "NES + Konami VRC7" +msgstr "" + +#: src/engine/sysDef.cpp:799 +msgid "Famicom Disk System" +msgstr "" + +#: src/engine/sysDef.cpp:805 +msgid "Commodore 64 (SID 6581)" +msgstr "" + +#: src/engine/sysDef.cpp:806 +msgid "" +"this computer is powered by the SID chip, which had synthesizer features " +"like a filter and ADSR." +msgstr "" + +#: src/engine/sysDef.cpp:817 +msgid "Commodore 64 (SID 8580)" +msgstr "" + +#: src/engine/sysDef.cpp:818 +msgid "" +"this computer is powered by the SID chip, which had synthesizer features " +"like a filter and ADSR.\n" +"this is the newer revision of the chip." +msgstr "" + +#: src/engine/sysDef.cpp:829 +msgid "DefleCade" +msgstr "" + +#: src/engine/sysDef.cpp:835 +msgid "Neo Geo CD" +msgstr "" + +#: src/engine/sysDef.cpp:836 +msgid "" +"like Neo Geo, but lacking the ADPCM-B channel since they couldn't connect " +"the pins." +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1173 +#: src/engine/sysDef.cpp:1185 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1443 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +#: src/engine/sysDef.cpp:2006 +msgid "FM 1" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:891 +#: src/engine/sysDef.cpp:903 src/engine/sysDef.cpp:1032 +#: src/engine/sysDef.cpp:1097 src/engine/sysDef.cpp:1109 +#: src/engine/sysDef.cpp:1122 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1546 +#: src/engine/sysDef.cpp:1559 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:1693 src/engine/sysDef.cpp:1849 +#: src/engine/sysDef.cpp:1861 src/engine/sysDef.cpp:2006 +msgid "FM 2" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1173 +#: src/engine/sysDef.cpp:1185 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1443 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:2006 +msgid "FM 3" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1546 +#: src/engine/sysDef.cpp:1559 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:1693 src/engine/sysDef.cpp:1849 +#: src/engine/sysDef.cpp:1861 src/engine/sysDef.cpp:2006 +msgid "FM 4" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:862 src/engine/sysDef.cpp:927 +#: src/engine/sysDef.cpp:943 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "PSG 1" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:862 src/engine/sysDef.cpp:927 +#: src/engine/sysDef.cpp:943 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "PSG 2" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:862 src/engine/sysDef.cpp:927 +#: src/engine/sysDef.cpp:943 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "PSG 3" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 1" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 2" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 3" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 4" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 5" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 6" +msgstr "" + +#: src/engine/sysDef.cpp:847 +msgid "Neo Geo CD Extended Channel 2" +msgstr "" + +#: src/engine/sysDef.cpp:848 +msgid "" +"like Neo Geo, but lacking the ADPCM-B channel since they couldn't connect " +"the pins.\n" +"this one is in Extended Channel mode, which turns the second FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP1" +msgstr "" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP2" +msgstr "" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP3" +msgstr "" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP4" +msgstr "" + +#: src/engine/sysDef.cpp:860 src/gui/sysConf.cpp:913 +msgid "AY-3-8910" +msgstr "" + +#: src/engine/sysDef.cpp:861 +msgid "" +"this chip is everywhere! ZX Spectrum, MSX, Amstrad CPC, Intellivision, " +"Vectrex...\n" +"the discovery of envelope bass helped it beat the SN76489 with ease." +msgstr "" + +#: src/engine/sysDef.cpp:872 +msgid "Amiga" +msgstr "" + +#: src/engine/sysDef.cpp:873 +msgid "" +"a computer from the '80s with full sampling capabilities, giving it a sound " +"ahead of its time." +msgstr "" + +#: src/engine/sysDef.cpp:881 +msgid "10xx: Toggle filter (0 disables; 1 enables)" +msgstr "" + +#: src/engine/sysDef.cpp:882 +msgid "11xx: Toggle AM with next channel" +msgstr "" + +#: src/engine/sysDef.cpp:883 +msgid "12xx: Toggle period modulation with next channel" +msgstr "" + +#: src/engine/sysDef.cpp:884 +msgid "13xx: Set waveform" +msgstr "" + +#: src/engine/sysDef.cpp:889 +msgid "Yamaha YM2151 (OPM)" +msgstr "" + +#: src/engine/sysDef.cpp:890 +msgid "" +"this was Yamaha's first integrated FM chip.\n" +"it was used in several synthesizers, computers and arcade boards." +msgstr "" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1279 src/engine/sysDef.cpp:1332 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1370 +#: src/engine/sysDef.cpp:1383 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +#: src/engine/sysDef.cpp:2006 +msgid "FM 5" +msgstr "" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:2006 +msgid "FM 6" +msgstr "" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:1032 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1279 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:2006 +msgid "FM 7" +msgstr "" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:1032 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:2006 +msgid "FM 8" +msgstr "" + +#: src/engine/sysDef.cpp:901 +msgid "Yamaha YM2612 (OPN2)" +msgstr "" + +#: src/engine/sysDef.cpp:902 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer)." +msgstr "" + +#: src/engine/sysDef.cpp:913 +msgid "Atari TIA" +msgstr "" + +#: src/engine/sysDef.cpp:914 +msgid "" +"it's a challenge to make music on this chip which barely has musical " +"capabilities..." +msgstr "" + +#: src/engine/sysDef.cpp:925 +msgid "Philips SAA1099" +msgstr "" + +#: src/engine/sysDef.cpp:926 +msgid "" +"supposedly an upgrade from the AY-3-8910, this was present on the Creative " +"Music System (Game Blaster) and SAM Coupé." +msgstr "" + +#: src/engine/sysDef.cpp:927 +msgid "PSG 4" +msgstr "" + +#: src/engine/sysDef.cpp:927 +msgid "PSG 5" +msgstr "" + +#: src/engine/sysDef.cpp:927 +msgid "PSG 6" +msgstr "" + +#: src/engine/sysDef.cpp:934 +msgid "10xy: Set channel mode (x: noise; y: tone)" +msgstr "" + +#: src/engine/sysDef.cpp:935 +msgid "11xx: Set noise frequency" +msgstr "" + +#: src/engine/sysDef.cpp:936 +msgid "12xx: Setup envelope (refer to docs for more information)" +msgstr "" + +#: src/engine/sysDef.cpp:941 +msgid "Microchip AY8930" +msgstr "" + +#: src/engine/sysDef.cpp:942 +msgid "" +"an improved version of the AY-3-8910 with a bigger frequency range, duty " +"cycles, configurable noise and per-channel envelopes!" +msgstr "" + +#: src/engine/sysDef.cpp:953 +msgid "Commodore VIC-20" +msgstr "" + +#: src/engine/sysDef.cpp:954 +msgid "" +"Commodore's successor to the PET.\n" +"its square wave channels are more than just square..." +msgstr "" + +#: src/engine/sysDef.cpp:955 src/gui/settings.cpp:136 src/gui/settings.cpp:206 +#: src/gui/settings.cpp:3970 +msgid "Low" +msgstr "" + +#: src/engine/sysDef.cpp:955 +msgid "Mid" +msgstr "" + +#: src/engine/sysDef.cpp:955 src/gui/settings.cpp:135 src/gui/settings.cpp:208 +#: src/gui/settings.cpp:3971 +msgid "High" +msgstr "" + +#: src/engine/sysDef.cpp:964 +msgid "Commodore PET" +msgstr "" + +#: src/engine/sysDef.cpp:965 +msgid "" +"one channel of 1-bit wavetable which is better (and worse) than the PC " +"Speaker." +msgstr "" + +#: src/engine/sysDef.cpp:966 src/engine/sysDef.cpp:1262 +#: src/engine/sysDef.cpp:2100 src/gui/editControls.cpp:433 +#: src/gui/settings.cpp:4017 src/gui/settings.cpp:4095 +msgid "Wave" +msgstr "" + +#: src/engine/sysDef.cpp:975 src/gui/settings.cpp:4052 +msgid "SNES" +msgstr "" + +#: src/engine/sysDef.cpp:976 +msgid "FM? nah... samples! Nintendo's answer to Sega." +msgstr "" + +#: src/engine/sysDef.cpp:983 +msgid "18xx: Enable echo buffer" +msgstr "" + +#: src/engine/sysDef.cpp:984 +msgid "19xx: Set echo delay (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:985 +msgid "1Axx: Set left echo volume" +msgstr "" + +#: src/engine/sysDef.cpp:986 +msgid "1Bxx: Set right echo volume" +msgstr "" + +#: src/engine/sysDef.cpp:987 +msgid "1Cxx: Set echo feedback" +msgstr "" + +#: src/engine/sysDef.cpp:988 +msgid "1Exx: Set dry output volume (left)" +msgstr "" + +#: src/engine/sysDef.cpp:989 +msgid "1Fxx: Set dry output volume (right)" +msgstr "" + +#: src/engine/sysDef.cpp:990 +msgid "30xx: Set echo filter coefficient 0" +msgstr "" + +#: src/engine/sysDef.cpp:991 +msgid "31xx: Set echo filter coefficient 1" +msgstr "" + +#: src/engine/sysDef.cpp:992 +msgid "32xx: Set echo filter coefficient 2" +msgstr "" + +#: src/engine/sysDef.cpp:993 +msgid "33xx: Set echo filter coefficient 3" +msgstr "" + +#: src/engine/sysDef.cpp:994 +msgid "34xx: Set echo filter coefficient 4" +msgstr "" + +#: src/engine/sysDef.cpp:995 +msgid "35xx: Set echo filter coefficient 5" +msgstr "" + +#: src/engine/sysDef.cpp:996 +msgid "36xx: Set echo filter coefficient 6" +msgstr "" + +#: src/engine/sysDef.cpp:997 +msgid "37xx: Set echo filter coefficient 7" +msgstr "" + +#: src/engine/sysDef.cpp:1002 +msgid "12xx: Toggle echo on this channel" +msgstr "" + +#: src/engine/sysDef.cpp:1003 +msgid "13xx: Toggle pitch modulation" +msgstr "" + +#: src/engine/sysDef.cpp:1004 +msgid "14xy: Toggle invert (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:1005 +msgid "" +"15xx: Set envelope mode (0: ADSR, 1: gain/direct, 2: dec, 3: exp, 4: inc, 5: " +"bent)" +msgstr "" + +#: src/engine/sysDef.cpp:1006 +msgid "16xx: Set gain (00 to 7F if direct; 00 to 1F otherwise)" +msgstr "" + +#: src/engine/sysDef.cpp:1007 +msgid "1Dxx: Set noise frequency (00 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:1008 +msgid "20xx: Set attack (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:1009 +msgid "21xx: Set decay (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1010 +msgid "22xx: Set sustain (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1011 +msgid "23xx: Set release (00 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:1016 +msgid "Konami VRC6" +msgstr "" + +#: src/engine/sysDef.cpp:1017 +msgid "an expansion chip for the Famicom, featuring a quirky sawtooth channel." +msgstr "" + +#: src/engine/sysDef.cpp:1018 +msgid "VRC6 1" +msgstr "" + +#: src/engine/sysDef.cpp:1018 +msgid "VRC6 2" +msgstr "" + +#: src/engine/sysDef.cpp:1018 +msgid "VRC6 Saw" +msgstr "" + +#: src/engine/sysDef.cpp:1024 src/engine/sysDef.cpp:2092 +msgid "12xx: Set duty cycle (pulse: 0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1030 +msgid "Yamaha YM2413 (OPLL)" +msgstr "" + +#: src/engine/sysDef.cpp:1031 +msgid "" +"cost-reduced version of the OPL with 16 patches and only one of them is user-" +"configurable." +msgstr "" + +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1173 +#: src/engine/sysDef.cpp:1185 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:2006 +msgid "FM 9" +msgstr "" + +#: src/engine/sysDef.cpp:1042 +msgid "Famicom Disk System (chip)" +msgstr "" + +#: src/engine/sysDef.cpp:1043 +msgid "a disk drive for the Famicom which also contains one wavetable channel." +msgstr "" + +#: src/engine/sysDef.cpp:1044 src/gui/settings.cpp:4039 +msgid "FDS" +msgstr "" + +#: src/engine/sysDef.cpp:1051 +msgid "11xx: Set modulation depth" +msgstr "" + +#: src/engine/sysDef.cpp:1052 +msgid "12xy: Set modulation speed high byte (x: enable; y: value)" +msgstr "" + +#: src/engine/sysDef.cpp:1053 +msgid "13xx: Set modulation speed low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1054 +msgid "14xx: Set modulator position" +msgstr "" + +#: src/engine/sysDef.cpp:1055 +msgid "15xx: Set modulator table to waveform" +msgstr "" + +#: src/engine/sysDef.cpp:1060 +msgid "MMC5" +msgstr "" + +#: src/engine/sysDef.cpp:1061 +msgid "" +"an expansion chip for the Famicom, featuring a little-known PCM channel." +msgstr "" + +#: src/engine/sysDef.cpp:1073 src/gui/settings.cpp:4041 +msgid "Namco 163" +msgstr "" + +#: src/engine/sysDef.cpp:1074 +msgid "an expansion chip for the Famicom, with full wavetable." +msgstr "" + +#: src/engine/sysDef.cpp:1081 +msgid "18xx: Change channel limits (0 to 7, x + 1)" +msgstr "" + +#: src/engine/sysDef.cpp:1082 +msgid "20xx: Load a waveform into memory" +msgstr "" + +#: src/engine/sysDef.cpp:1083 +msgid "21xx: Set position for wave load" +msgstr "" + +#: src/engine/sysDef.cpp:1086 +msgid "10xx: Select waveform" +msgstr "" + +#: src/engine/sysDef.cpp:1087 +msgid "11xx: Set waveform position in RAM" +msgstr "" + +#: src/engine/sysDef.cpp:1088 +msgid "12xx: Set waveform length in RAM (04 to FC in steps of 4)" +msgstr "" + +#: src/engine/sysDef.cpp:1089 +msgid "15xx: Set waveform load position" +msgstr "" + +#: src/engine/sysDef.cpp:1090 +msgid "16xx: Set waveform load length (04 to FC in steps of 4)" +msgstr "" + +#: src/engine/sysDef.cpp:1095 +msgid "Yamaha YM2203 (OPN)" +msgstr "" + +#: src/engine/sysDef.cpp:1096 +msgid "" +"cost-reduced version of the OPM with a different register layout and no " +"stereo...\n" +"...but it has a built-in AY-3-8910! (actually an YM2149)" +msgstr "" + +#: src/engine/sysDef.cpp:1107 +msgid "Yamaha YM2203 (OPN) Extended Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:1108 +msgid "" +"cost-reduced version of the OPM with a different register layout and no " +"stereo...\n" +"...but it has a built-in AY-3-8910! (actually an YM2149)\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies" +msgstr "" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP1" +msgstr "" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP2" +msgstr "" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP3" +msgstr "" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP4" +msgstr "" + +#: src/engine/sysDef.cpp:1120 +msgid "Yamaha YM2203 (OPN) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1121 +msgid "" +"cost-reduced version of the OPM with a different register layout and no " +"stereo...\n" +"...but it has a built-in AY-3-8910! (actually an YM2149)\n" +"CSM blah blah" +msgstr "" + +#: src/engine/sysDef.cpp:1122 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1383 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1559 src/engine/sysDef.cpp:1861 +msgid "CSM Timer" +msgstr "" + +#: src/engine/sysDef.cpp:1133 +msgid "Yamaha YM2608 (OPNA)" +msgstr "" + +#: src/engine/sysDef.cpp:1134 +msgid "" +"OPN but twice the FM channels, stereo makes a come-back and has rhythm and " +"ADPCM channels." +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1481 +#: src/gui/insEdit.cpp:3302 src/gui/insEdit.cpp:3624 +msgid "Kick" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:210 src/gui/insEdit.cpp:218 +msgid "Snare" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:212 src/gui/insEdit.cpp:220 +#: src/gui/insEdit.cpp:1909 src/gui/insEdit.cpp:2014 +msgid "Top" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:213 src/gui/insEdit.cpp:219 +msgid "HiHat" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:211 +msgid "Tom" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 +msgid "Rim" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:1693 +msgid "ADPCM" +msgstr "" + +#: src/engine/sysDef.cpp:1145 +msgid "Yamaha YM2608 (OPNA) Extended Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:1146 +msgid "" +"OPN but twice the FM channels, stereo makes a come-back and has rhythm and " +"ADPCM channels.\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies" +msgstr "" + +#: src/engine/sysDef.cpp:1158 +msgid "Yamaha YM2608 (OPNA) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1159 +msgid "" +"OPN but twice the FM channels, stereo makes a come-back and has rhythm and " +"ADPCM channels.\n" +"CSM blah blah" +msgstr "" + +#: src/engine/sysDef.cpp:1171 +msgid "Yamaha YM3526 (OPL)" +msgstr "" + +#: src/engine/sysDef.cpp:1172 +msgid "" +"OPN, but what if you only had two operators, no stereo, no detune and a " +"lower ADSR parameter range?" +msgstr "" + +#: src/engine/sysDef.cpp:1183 +msgid "Yamaha YM3812 (OPL2)" +msgstr "" + +#: src/engine/sysDef.cpp:1184 +msgid "OPL, but what if you had more waveforms to choose than the normal sine?" +msgstr "" + +#: src/engine/sysDef.cpp:1195 +msgid "Yamaha YMF262 (OPL3)" +msgstr "" + +#: src/engine/sysDef.cpp:1196 +msgid "" +"OPL2, but what if you had twice the channels, 4-op mode, stereo and even " +"more waveforms?" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 1" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 3" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 5" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 7" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 9" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 10" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 11" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 12" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 13" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 14" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 15" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:2006 +msgid "FM 16" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:2006 +msgid "FM 17" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:2006 +msgid "FM 18" +msgstr "" + +#: src/engine/sysDef.cpp:1208 src/gui/settings.cpp:4051 +msgid "MultiPCM" +msgstr "" + +#: src/engine/sysDef.cpp:1209 +msgid "" +"how many channels of PCM do you want?\n" +"MultiPCM: yes" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 17" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 18" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 19" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 20" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 21" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 22" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 23" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 24" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 25" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 26" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 27" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 28" +msgstr "" + +#: src/engine/sysDef.cpp:1217 +msgid "PC Speaker" +msgstr "" + +#: src/engine/sysDef.cpp:1218 +msgid "good luck! you get one square and no volume control." +msgstr "" + +#: src/engine/sysDef.cpp:1219 src/engine/sysDef.cpp:1228 +#: src/gui/guiConst.cpp:1394 src/gui/waveEdit.cpp:199 src/gui/insEdit.cpp:183 +#: src/gui/insEdit.cpp:194 src/gui/insEdit.cpp:326 src/gui/insEdit.cpp:656 +msgid "Square" +msgstr "" + +#: src/engine/sysDef.cpp:1226 +msgid "Pong" +msgstr "" + +#: src/engine/sysDef.cpp:1227 +msgid "please don't use this chip. it was added as a joke." +msgstr "" + +#: src/engine/sysDef.cpp:1235 src/gui/settings.cpp:4044 +msgid "POKEY" +msgstr "" + +#: src/engine/sysDef.cpp:1236 +msgid "" +"TIA, but better and more flexible.\n" +"used in the Atari 8-bit family of computers (400/800/XL/XE)." +msgstr "" + +#: src/engine/sysDef.cpp:1243 src/engine/sysDef.cpp:1714 +msgid "10xx: Set waveform (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1244 +msgid "11xx: Set AUDCTL" +msgstr "" + +#: src/engine/sysDef.cpp:1245 +msgid "12xx: Toggle two-tone mode" +msgstr "" + +#: src/engine/sysDef.cpp:1250 +msgid "Ricoh RF5C68" +msgstr "" + +#: src/engine/sysDef.cpp:1251 +msgid "" +"this is like SNES' sound chip but without interpolation and the rest of nice " +"bits." +msgstr "" + +#: src/engine/sysDef.cpp:1260 src/gui/settings.cpp:4046 +msgid "WonderSwan" +msgstr "" + +#: src/engine/sysDef.cpp:1261 +msgid "developed by the makers of the Game Boy and the Virtual Boy..." +msgstr "" + +#: src/engine/sysDef.cpp:1262 +msgid "Wave/PCM" +msgstr "" + +#: src/engine/sysDef.cpp:1262 +msgid "Wave/Sweep" +msgstr "" + +#: src/engine/sysDef.cpp:1262 +msgid "Wave/Noise" +msgstr "" + +#: src/engine/sysDef.cpp:1269 +msgid "11xx: Setup noise mode (0: disabled; 1-8: enabled/tap)" +msgstr "" + +#: src/engine/sysDef.cpp:1270 +msgid "12xx: Setup sweep period (0: disabled; 1-20: enabled/period)" +msgstr "" + +#: src/engine/sysDef.cpp:1271 +msgid "13xx: Set sweep amount" +msgstr "" + +#: src/engine/sysDef.cpp:1277 +msgid "Yamaha YM2414 (OPZ)" +msgstr "" + +#: src/engine/sysDef.cpp:1278 +msgid "" +"like OPM, but with more waveforms, fixed frequency mode and totally... " +"undocumented.\n" +"used in the Yamaha TX81Z and some other synthesizers." +msgstr "" + +#: src/engine/sysDef.cpp:1285 +msgid "2Fxx: Toggle hard envelope reset on new notes" +msgstr "" + +#: src/engine/sysDef.cpp:1291 src/gui/settings.cpp:4069 +msgid "Pokémon Mini" +msgstr "" + +#: src/engine/sysDef.cpp:1292 +msgid "this one is like PC Speaker but has duty cycles." +msgstr "" + +#: src/engine/sysDef.cpp:1293 src/gui/settings.cpp:4092 src/gui/waveEdit.cpp:33 +msgid "Pulse" +msgstr "" + +#: src/engine/sysDef.cpp:1300 +msgid "SegaPCM" +msgstr "" + +#: src/engine/sysDef.cpp:1301 +msgid "" +"used in some Sega arcade boards (like OutRun), and usually paired with a " +"YM2151." +msgstr "" + +#: src/engine/sysDef.cpp:1312 src/gui/settings.cpp:4040 +msgid "Virtual Boy" +msgstr "" + +#: src/engine/sysDef.cpp:1313 +msgid "" +"a console which failed to sell well due to its headache-inducing features." +msgstr "" + +#: src/engine/sysDef.cpp:1321 +msgid "11xx: Set noise length (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1322 +msgid "" +"12xy: Setup envelope (x: enabled/loop (1: enable, 3: enable+loop); y: speed/" +"direction (0-7: down, 8-F: up))" +msgstr "" + +#: src/engine/sysDef.cpp:1323 +msgid "13xy: Setup sweep (x: speed; y: shift; channel 5 only)" +msgstr "" + +#: src/engine/sysDef.cpp:1324 +msgid "" +"14xy: Setup modulation (x: enabled/loop (1: enable, 3: enable+loop); y: " +"speed; channel 5 only)" +msgstr "" + +#: src/engine/sysDef.cpp:1325 +msgid "15xx: Set modulation waveform (x: wavetable; channel 5 only)" +msgstr "" + +#: src/engine/sysDef.cpp:1330 +msgid "Konami VRC7" +msgstr "" + +#: src/engine/sysDef.cpp:1331 +msgid "" +"like OPLL, but even more cost reductions applied. three FM channels went " +"missing, and drums mode did as well..." +msgstr "" + +#: src/engine/sysDef.cpp:1342 +msgid "Yamaha YM2610B (OPNB2)" +msgstr "" + +#: src/engine/sysDef.cpp:1343 +msgid "" +"so Taito asked Yamaha if they could get the two missing FM channels back, " +"and Yamaha gladly provided them with this chip." +msgstr "" + +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/gui/settings.cpp:4061 +msgid "ADPCM-B" +msgstr "" + +#: src/engine/sysDef.cpp:1354 +msgid "ZX Spectrum Beeper" +msgstr "" + +#: src/engine/sysDef.cpp:1355 +msgid "" +"the ZX Spectrum only had a basic beeper capable of...\n" +"...a bunch of thin pulses and tons of other interesting stuff!\n" +"Furnace provides a thin pulse system." +msgstr "" + +#: src/engine/sysDef.cpp:1362 src/engine/sysDef.cpp:1950 +msgid "12xx: Set pulse width" +msgstr "" + +#: src/engine/sysDef.cpp:1363 +msgid "17xx: Trigger overlay drum" +msgstr "" + +#: src/engine/sysDef.cpp:1368 +msgid "Yamaha YM2612 (OPN2) Extended Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:1369 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:1381 +msgid "Yamaha YM2612 (OPN2) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1382 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this one includes CSM mode control for special effects on Channel 3." +msgstr "" + +#: src/engine/sysDef.cpp:1394 src/gui/settings.cpp:4042 +msgid "Konami SCC" +msgstr "" + +#: src/engine/sysDef.cpp:1395 +msgid "" +"a wavetable chip made by Konami for use with the MSX.\n" +"the last channel shares its wavetable with the previous one though." +msgstr "" + +#: src/engine/sysDef.cpp:1405 +msgid "Yamaha YM3526 (OPL) with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1406 +msgid "the OPL chip but with drums mode enabled." +msgstr "" + +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1693 +msgid "Kick/FM 7" +msgstr "" + +#: src/engine/sysDef.cpp:1417 +msgid "Yamaha YM3812 (OPL2) with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1418 +msgid "the OPL2 chip but with drums mode enabled." +msgstr "" + +#: src/engine/sysDef.cpp:1429 +msgid "Yamaha YMF262 (OPL3) with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1430 +msgid "the OPL3 chip but with drums mode enabled." +msgstr "" + +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1631 +msgid "Kick/FM 16" +msgstr "" + +#: src/engine/sysDef.cpp:1441 +msgid "Yamaha YM2610 (OPNB)" +msgstr "" + +#: src/engine/sysDef.cpp:1442 +msgid "" +"this chip was used in SNK's Neo Geo arcade board and video game console.\n" +"it's like OPNA but the rhythm channels are ADPCM channels and two FM " +"channels went missing." +msgstr "" + +#: src/engine/sysDef.cpp:1453 +msgid "Yamaha YM2610 (OPNB) Extended Channel 2" +msgstr "" + +#: src/engine/sysDef.cpp:1454 +msgid "" +"this chip was used in SNK's Neo Geo arcade board and video game console.\n" +"it's like OPNA but the rhythm channels are ADPCM channels and two FM " +"channels went missing.\n" +"this one is in Extended Channel mode, which turns the second FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:1466 +msgid "Yamaha YM2610 (OPNB) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1467 +msgid "" +"this chip was used in SNK's Neo Geo arcade board and video game console.\n" +"it's like OPNA but the rhythm channels are ADPCM channels and two FM " +"channels went missing.\n" +"this one includes CSM mode control for special effects on Channel 2." +msgstr "" + +#: src/engine/sysDef.cpp:1479 +msgid "Yamaha YM2413 (OPLL) with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1480 +msgid "the OPLL chips but with drums mode turned on." +msgstr "" + +#: src/engine/sysDef.cpp:1491 +msgid "3xxx: Load LFSR (0 to FFF)" +msgstr "" + +#: src/engine/sysDef.cpp:1497 +msgid "Atari Lynx" +msgstr "" + +#: src/engine/sysDef.cpp:1498 +msgid "" +"a portable console made by Atari. it has all of Atari's trademark waveforms." +msgstr "" + +#: src/engine/sysDef.cpp:1509 +msgid "10xx: Set echo feedback level (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1510 +msgid "11xx: Set channel echo level (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1511 +msgid "12xx: Toggle QSound algorithm (0: disabled; 1: enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:1513 +msgid "3xxx: Set echo delay buffer length (000 to AA5)" +msgstr "" + +#: src/engine/sysDef.cpp:1519 +msgid "Capcom QSound" +msgstr "" + +#: src/engine/sysDef.cpp:1520 +msgid "" +"used in some of Capcom's arcade boards. surround-like sampled sound with " +"echo." +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +#: src/engine/sysDef.cpp:2056 +msgid "PCM 1" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +#: src/engine/sysDef.cpp:2056 +msgid "PCM 2" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 3" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 4" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 5" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 6" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 7" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 8" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 9" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 10" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 11" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 12" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 13" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 14" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 15" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 16" +msgstr "" + +#: src/engine/sysDef.cpp:1521 +msgid "ADPCM 1" +msgstr "" + +#: src/engine/sysDef.cpp:1521 +msgid "ADPCM 2" +msgstr "" + +#: src/engine/sysDef.cpp:1521 +msgid "ADPCM 3" +msgstr "" + +#: src/engine/sysDef.cpp:1530 src/gui/settings.cpp:4048 +msgid "VERA" +msgstr "" + +#: src/engine/sysDef.cpp:1531 +msgid "the chip used in a computer design created by The 8-Bit Guy." +msgstr "" + +#: src/engine/sysDef.cpp:1538 +msgid "20xx: Set waveform" +msgstr "" + +#: src/engine/sysDef.cpp:1539 +msgid "22xx: Set duty cycle (0 to 3F)" +msgstr "" + +#: src/engine/sysDef.cpp:1544 +msgid "Yamaha YM2610B (OPNB2) Extended Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:1545 +msgid "" +"so Taito asked Yamaha if they could get the two missing FM channels back, " +"and Yamaha gladly provided them with this chip.\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:1557 +msgid "Yamaha YM2610B (OPNB2) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1558 +msgid "" +"so Taito asked Yamaha if they could get the two missing FM channels back, " +"and Yamaha gladly provided them with this chip.\n" +"CSM blah blah" +msgstr "" + +#: src/engine/sysDef.cpp:1570 +msgid "SegaPCM (compatible 5-channel mode)" +msgstr "" + +#: src/engine/sysDef.cpp:1571 +msgid "" +"this is the same thing as SegaPCM, but only exposes 5 of the channels for " +"compatibility with DefleMask." +msgstr "" + +#: src/engine/sysDef.cpp:1582 +msgid "Seta/Allumer X1-010" +msgstr "" + +#: src/engine/sysDef.cpp:1583 +msgid "" +"a sound chip used in several Seta/Allumer-manufactured arcade boards with " +"too many channels of wavetable sound, which also are capable of sampled " +"sound." +msgstr "" + +#: src/engine/sysDef.cpp:1591 +msgid "11xx: Set envelope shape" +msgstr "" + +#: src/engine/sysDef.cpp:1592 +msgid "12xx: Set sample bank slot (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1596 +msgid "20xx: Set PCM frequency (1 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1597 +msgid "" +"22xx: Set envelope mode (bit 0: enable; bit 1: one-shot; bit 2: split shape " +"to L/R; bit 3/5: H.invert right/left; bit 4/6: V.invert right/left)" +msgstr "" + +#: src/engine/sysDef.cpp:1598 +msgid "23xx: Set envelope period" +msgstr "" + +#: src/engine/sysDef.cpp:1606 +msgid "Konami Bubble System WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1607 +msgid "" +"this is the wavetable part of the Bubble System, which also had two " +"AY-3-8910s." +msgstr "" + +#: src/engine/sysDef.cpp:1619 +msgid "Yamaha YMF278B (OPL4)" +msgstr "" + +#: src/engine/sysDef.cpp:1620 +msgid "like OPL3, but this time it also has a 24-channel version of MultiPCM." +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 17" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 18" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 19" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 20" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 21" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 22" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 23" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 24" +msgstr "" + +#: src/engine/sysDef.cpp:1629 +msgid "Yamaha YMF278B (OPL4) with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1630 +msgid "the OPL4 but with drums mode turned on." +msgstr "" + +#: src/engine/sysDef.cpp:1638 +msgid "11xx: Set filter mode (00 to 03)" +msgstr "" + +#: src/engine/sysDef.cpp:1639 +msgid "14xx: Set filter coefficient K1 low byte (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1640 +msgid "15xx: Set filter coefficient K1 high byte (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1641 +msgid "16xx: Set filter coefficient K2 low byte (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1642 +msgid "17xx: Set filter coefficient K2 high byte (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1643 +msgid "18xx: Set filter coefficient K1 slide up (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1644 +msgid "19xx: Set filter coefficient K1 slide down (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1645 +msgid "1Axx: Set filter coefficient K2 slide up (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1646 +msgid "1Bxx: Set filter coefficient K2 slide down (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1647 +msgid "22xx: Set envelope left volume ramp (signed) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1648 +msgid "23xx: Set envelope right volume ramp (signed) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1649 +msgid "24xx: Set envelope filter coefficient k1 ramp (signed) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1650 +msgid "" +"25xx: Set envelope filter coefficient k1 ramp (signed, slower) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1651 +msgid "26xx: Set envelope filter coefficient k2 ramp (signed) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1652 +msgid "" +"27xx: Set envelope filter coefficient k2 ramp (signed, slower) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1656 +msgid "120x: Set pause (bit 0)" +msgstr "" + +#: src/engine/sysDef.cpp:1658 +msgid "2xxx: Set envelope count (000 to 1FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1659 +msgid "3xxx: Set filter coefficient K1 (000 to FFF)" +msgstr "" + +#: src/engine/sysDef.cpp:1660 +msgid "4xxx: Set filter coefficient K2 (000 to FFF)" +msgstr "" + +#: src/engine/sysDef.cpp:1667 +msgid "Ensoniq ES5506" +msgstr "" + +#: src/engine/sysDef.cpp:1668 +msgid "" +"a sample chip made by Ensoniq, which is the basis for the GF1 chip found in " +"Gravis' Ultrasound cards." +msgstr "" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 29" +msgstr "" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 30" +msgstr "" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 31" +msgstr "" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 32" +msgstr "" + +#: src/engine/sysDef.cpp:1679 +msgid "Yamaha Y8950" +msgstr "" + +#: src/engine/sysDef.cpp:1680 +msgid "like OPL but with an ADPCM channel." +msgstr "" + +#: src/engine/sysDef.cpp:1691 +msgid "Yamaha Y8950 with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1692 +msgid "the Y8950 chip, in drums mode." +msgstr "" + +#: src/engine/sysDef.cpp:1703 +msgid "Konami SCC+" +msgstr "" + +#: src/engine/sysDef.cpp:1704 +msgid "" +"this is a variant of Konami's SCC chip with the last channel's wavetable " +"being independent." +msgstr "" + +#: src/engine/sysDef.cpp:1715 +msgid "12xx: Set pulse width (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:1716 +msgid "13xx: Set resonance (0 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1717 +msgid "" +"14xx: Set filter mode (bit 0: ring mod; bit 1: low pass; bit 2: high pass; " +"bit 3: band pass)" +msgstr "" + +#: src/engine/sysDef.cpp:1718 +msgid "15xx: Set frequency sweep period low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1719 +msgid "16xx: Set frequency sweep period high byte" +msgstr "" + +#: src/engine/sysDef.cpp:1720 +msgid "17xx: Set volume sweep period low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1721 +msgid "18xx: Set volume sweep period high byte" +msgstr "" + +#: src/engine/sysDef.cpp:1722 +msgid "19xx: Set cutoff sweep period low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1723 +msgid "1Axx: Set cutoff sweep period high byte" +msgstr "" + +#: src/engine/sysDef.cpp:1724 +msgid "1Bxx: Set frequency sweep boundary" +msgstr "" + +#: src/engine/sysDef.cpp:1725 +msgid "1Cxx: Set volume sweep boundary" +msgstr "" + +#: src/engine/sysDef.cpp:1726 +msgid "1Dxx: Set cutoff sweep boundary" +msgstr "" + +#: src/engine/sysDef.cpp:1727 +msgid "1Exx: Set phase reset period low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1728 +msgid "1Fxx: Set phase reset period high byte" +msgstr "" + +#: src/engine/sysDef.cpp:1729 +msgid "20xx: Toggle frequency sweep (bit 0-6: speed; bit 7: direction is up)" +msgstr "" + +#: src/engine/sysDef.cpp:1730 +msgid "" +"21xx: Toggle volume sweep (bit 0-4: speed; bit 5: direction is up; bit 6: " +"loop; bit 7: alternate)" +msgstr "" + +#: src/engine/sysDef.cpp:1731 +msgid "22xx: Toggle cutoff sweep (bit 0-6: speed; bit 7: direction is up)" +msgstr "" + +#: src/engine/sysDef.cpp:1739 +msgid "tildearrow Sound Unit" +msgstr "" + +#: src/engine/sysDef.cpp:1740 +msgid "" +"tildearrow's fantasy sound chip. put SID, AY and VERA in a blender, and you " +"get this!" +msgstr "" + +#: src/engine/sysDef.cpp:1751 +msgid "OKI MSM6295" +msgstr "" + +#: src/engine/sysDef.cpp:1752 +msgid "an ADPCM sound chip manufactured by OKI and used in many arcade boards." +msgstr "" + +#: src/engine/sysDef.cpp:1759 +msgid "20xx: Set chip output rate (0: clock/132; 1: clock/165)" +msgstr "" + +#: src/engine/sysDef.cpp:1764 +msgid "OKI MSM6258" +msgstr "" + +#: src/engine/sysDef.cpp:1765 +msgid "an ADPCM sound chip manufactured by OKI and used in the Sharp X68000." +msgstr "" + +#: src/engine/sysDef.cpp:1766 src/engine/sysDef.cpp:1887 +#: src/gui/editControls.cpp:437 src/gui/settings.cpp:4223 +#: src/gui/guiConst.cpp:1397 src/gui/insEdit.cpp:2628 src/gui/insEdit.cpp:2666 +msgid "Sample" +msgstr "" + +#: src/engine/sysDef.cpp:1772 +msgid "20xx: Set frequency divider (0-2)" +msgstr "" + +#: src/engine/sysDef.cpp:1773 +msgid "21xx: Select clock rate (0: full; 1: half)" +msgstr "" + +#: src/engine/sysDef.cpp:1778 +msgid "Yamaha YMZ280B (PCMD8)" +msgstr "" + +#: src/engine/sysDef.cpp:1779 +msgid "" +"used in some arcade boards. Can play back either 4-bit ADPCM, 8-bit PCM or " +"16-bit PCM." +msgstr "" + +#: src/engine/sysDef.cpp:1797 src/gui/settings.cpp:4054 +msgid "Namco WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1798 +msgid "" +"a wavetable sound chip used in Pac-Man, among other early Namco arcade games." +msgstr "" + +#: src/engine/sysDef.cpp:1808 +msgid "Namco C15 WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1809 +msgid "" +"successor of the original Namco WSG chip, used in later Namco arcade games." +msgstr "" + +#: src/engine/sysDef.cpp:1819 +msgid "Namco C30 WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1820 +msgid "like Namco C15 but with stereo sound." +msgstr "" + +#: src/engine/sysDef.cpp:1830 +msgid "OKI MSM5232" +msgstr "" + +#: src/engine/sysDef.cpp:1831 +msgid "" +"a square wave additive synthesis chip made by OKI. used in some arcade " +"machines and instruments." +msgstr "" + +#: src/engine/sysDef.cpp:1839 +msgid "10xy: Set group control (x: sustain; y: part toggle bitmask)" +msgstr "" + +#: src/engine/sysDef.cpp:1840 src/engine/sysDef.cpp:1998 +msgid "11xx: Set noise mode" +msgstr "" + +#: src/engine/sysDef.cpp:1841 +msgid "12xx: Set group attack (0 to 5)" +msgstr "" + +#: src/engine/sysDef.cpp:1842 +msgid "13xx: Set group decay (0 to 11)" +msgstr "" + +#: src/engine/sysDef.cpp:1847 +msgid "Yamaha YM2612 (OPN2) with DualPCM" +msgstr "" + +#: src/engine/sysDef.cpp:1848 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this system uses software mixing to provide two sample channels." +msgstr "" + +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +msgid "FM 6/PCM 1" +msgstr "" + +#: src/engine/sysDef.cpp:1859 +msgid "Yamaha YM2612 (OPN2) Extended Channel 3 with DualPCM and CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1860 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this system uses software mixing to provide two sample channels.\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:1872 src/gui/settings.cpp:4024 +msgid "T6W28" +msgstr "" + +#: src/engine/sysDef.cpp:1873 +msgid "" +"an SN76489 derivative used in Neo Geo Pocket, has independent stereo volume " +"and noise channel frequency." +msgstr "" + +#: src/engine/sysDef.cpp:1880 +msgid "20xx: Set noise length (0: short, 1: long)" +msgstr "" + +#: src/engine/sysDef.cpp:1885 +msgid "Generic PCM DAC" +msgstr "" + +#: src/engine/sysDef.cpp:1886 +msgid "as generic sample playback as it gets." +msgstr "" + +#: src/engine/sysDef.cpp:1898 +msgid "Konami K007232" +msgstr "" + +#: src/engine/sysDef.cpp:1899 +msgid "this PCM chip was widely used at Konami arcade boards in 1986-1990." +msgstr "" + +#: src/engine/sysDef.cpp:1908 +msgid "Irem GA20" +msgstr "" + +#: src/engine/sysDef.cpp:1909 +msgid "" +"yet another PCM chip from Irem. like Amiga, but less pitch resolution and no " +"sample loop." +msgstr "" + +#: src/engine/sysDef.cpp:1918 +msgid "Sharp SM8521" +msgstr "" + +#: src/engine/sysDef.cpp:1919 +msgid "a SoC with wavetable sound hardware." +msgstr "" + +#: src/engine/sysDef.cpp:1929 +msgid "Casio PV-1000" +msgstr "" + +#: src/engine/sysDef.cpp:1930 +msgid "" +"a game console with 3 channels of square wave. it's what happens after " +"fusing TIA and VIC together." +msgstr "" + +#: src/engine/sysDef.cpp:1937 +msgid "10xx: Set ring modulation (0: disable, 1: enable)" +msgstr "" + +#: src/engine/sysDef.cpp:1942 +msgid "ZX Spectrum Beeper (QuadTone Engine)" +msgstr "" + +#: src/engine/sysDef.cpp:1943 +msgid "" +"another ZX Spectrum beeper system with full PWM pulses and 3-level volume " +"per channel. it also has a pitchable overlay sample channel." +msgstr "" + +#: src/engine/sysDef.cpp:1955 +msgid "Konami K053260" +msgstr "" + +#: src/engine/sysDef.cpp:1956 +msgid "this PCM chip was widely used at Konami arcade boards in 1990-1992." +msgstr "" + +#: src/engine/sysDef.cpp:1968 +msgid "MOS Technology TED" +msgstr "" + +#: src/engine/sysDef.cpp:1969 +msgid "" +"two square waves (one may be turned into noise). used in the Commodore " +"Plus/4, 16 and 116." +msgstr "" + +#: src/engine/sysDef.cpp:1978 +msgid "Namco C140" +msgstr "" + +#: src/engine/sysDef.cpp:1979 +msgid "Namco's first PCM chip from 1987. it's pretty good for being so." +msgstr "" + +#: src/engine/sysDef.cpp:1989 +msgid "Namco C219" +msgstr "" + +#: src/engine/sysDef.cpp:1990 +msgid "" +"Namco's PCM chip used in their NA-1/2 hardware.\n" +"very similar to C140, but has noise generator." +msgstr "" + +#: src/engine/sysDef.cpp:1999 +msgid "12xy: Set invert mode (x: surround; y: invert)" +msgstr "" + +#: src/engine/sysDef.cpp:2004 +msgid "ESS ES1xxx series (ESFM)" +msgstr "" + +#: src/engine/sysDef.cpp:2005 +msgid "" +"a unique FM synth featured in PC sound cards.\n" +"based on the OPL3 design, but with lots of its features extended." +msgstr "" + +#: src/engine/sysDef.cpp:2006 +msgid "FM 11" +msgstr "" + +#: src/engine/sysDef.cpp:2012 +msgid "2Exx: Toggle hard envelope reset on new notes" +msgstr "" + +#: src/engine/sysDef.cpp:2018 +msgid "PowerNoise" +msgstr "" + +#: src/engine/sysDef.cpp:2019 +msgid "" +"a fantasy sound chip designed by jvsTSX and The Beesh-Spweesh!\n" +"used in the Hexheld fantasy console." +msgstr "" + +#: src/engine/sysDef.cpp:2020 +msgid "Noise 1" +msgstr "" + +#: src/engine/sysDef.cpp:2020 +msgid "Noise 2" +msgstr "" + +#: src/engine/sysDef.cpp:2020 +msgid "Noise 3" +msgstr "" + +#: src/engine/sysDef.cpp:2020 +msgid "Slope" +msgstr "" + +#: src/engine/sysDef.cpp:2026 +msgid "" +"20xx: Load low byte of noise channel LFSR (00 to FF) or slope channel " +"accumulator (00 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:2027 +msgid "21xx: Load high byte of noise channel LFSR (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:2028 +msgid "22xx: Write to I/O port A" +msgstr "" + +#: src/engine/sysDef.cpp:2029 +msgid "23xx: Write to I/O port B" +msgstr "" + +#: src/engine/sysDef.cpp:2035 src/gui/settings.cpp:4079 +msgid "Dave" +msgstr "" + +#: src/engine/sysDef.cpp:2036 +msgid "" +"this chip was featured in the Enterprise 128 computer. it is similar to " +"POKEY, but with stereo output." +msgstr "" + +#: src/engine/sysDef.cpp:2037 +msgid "DAC Left" +msgstr "" + +#: src/engine/sysDef.cpp:2037 +msgid "DAC Right" +msgstr "" + +#: src/engine/sysDef.cpp:2043 +msgid "10xx: Set waveform (0 to 4; 0 to 3 on noise)" +msgstr "" + +#: src/engine/sysDef.cpp:2044 +msgid "11xx: Set noise frequency source (0: fixed; 1-3: channels 1 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:2045 +msgid "12xx: Toggle high-pass with next channel" +msgstr "" + +#: src/engine/sysDef.cpp:2046 +msgid "13xx: Toggle ring modulation with channel+2" +msgstr "" + +#: src/engine/sysDef.cpp:2047 +msgid "14xx: Toggle swap counters (noise only)" +msgstr "" + +#: src/engine/sysDef.cpp:2048 +msgid "15xx: Toggle low pass (noise only)" +msgstr "" + +#: src/engine/sysDef.cpp:2049 +msgid "16xx: Set clock divider (0: /2; 1: /3)" +msgstr "" + +#: src/engine/sysDef.cpp:2054 +msgid "Game Boy Advance DMA Sound" +msgstr "" + +#: src/engine/sysDef.cpp:2055 +msgid "" +"additional PCM FIFO channels in Game Boy Advance driven directly by its DMA " +"hardware." +msgstr "" + +#: src/engine/sysDef.cpp:2068 +msgid "Game Boy Advance MinMod" +msgstr "" + +#: src/engine/sysDef.cpp:2069 +msgid "" +"additional PCM FIFO channels in Game Boy Advance driven by software mixing " +"to provide up to sixteen sample channels" +msgstr "" + +#: src/engine/sysDef.cpp:2078 +msgid "11xy: Set echo channel (x: left/right source; y: delay (0 disables))" +msgstr "" + +#: src/engine/sysDef.cpp:2079 +msgid "12xy: Toggle invert (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:2084 src/gui/settings.cpp:4080 +msgid "Nintendo DS" +msgstr "" + +#: src/engine/sysDef.cpp:2085 +msgid "a handheld video game console with two screens. it uses a stylus." +msgstr "" + +#: src/engine/sysDef.cpp:2093 +msgid "1Fxx: Set global volume (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:2098 +msgid "5E01" +msgstr "" + +#: src/engine/sysDef.cpp:2099 +msgid "" +"a fantasy sound chip created by Euly. it is based on Ricoh 2A03, adding a " +"couple features such as 32 noise pitches, an extra duty cycle, and three " +"waveforms (besides triangle)." +msgstr "" + +#: src/engine/sysDef.cpp:2107 +msgid "" +"12xx: Set duty cycle/noise mode/waveform (pulse/wave: 0 to 3; noise: 0 or 1)" +msgstr "" + +#: src/engine/sysDef.cpp:2120 src/gui/settings.cpp:4083 +msgid "Bifurcator" +msgstr "" + +#: src/engine/sysDef.cpp:2121 +msgid "a fantasy sound chip using logistic map iterations to generate sound." +msgstr "" + +#: src/engine/sysDef.cpp:2128 +msgid "10xx: Load low byte of channel sample state" +msgstr "" + +#: src/engine/sysDef.cpp:2129 +msgid "11xx: Load high byte of channel sample state" +msgstr "" + +#: src/engine/sysDef.cpp:2130 +msgid "12xx: Set low byte of channel parameter" +msgstr "" + +#: src/engine/sysDef.cpp:2131 +msgid "13xx: Set high byte of channel parameter" +msgstr "" + +#: src/engine/sysDef.cpp:2136 src/gui/settings.cpp:4084 +msgid "SID2" +msgstr "" + +#: src/engine/sysDef.cpp:2137 +msgid "" +"a fantasy sound chip created by LTVA. it is similar to the SID chip, but " +"with many of its problems fixed." +msgstr "" + +#: src/engine/sysDef.cpp:2148 +msgid "Dummy System" +msgstr "" + +#: src/engine/sysDef.cpp:2149 +msgid "this is a system designed for testing purposes." +msgstr "" + +#: src/engine/engine.cpp:51 +msgid "00xy: Arpeggio" +msgstr "" + +#: src/engine/engine.cpp:53 +msgid "01xx: Pitch slide up" +msgstr "" + +#: src/engine/engine.cpp:55 +msgid "02xx: Pitch slide down" +msgstr "" + +#: src/engine/engine.cpp:57 +msgid "03xx: Portamento" +msgstr "" + +#: src/engine/engine.cpp:59 +msgid "04xy: Vibrato (x: speed; y: depth)" +msgstr "" + +#: src/engine/engine.cpp:61 +msgid "05xy: Volume slide + vibrato (compatibility only!)" +msgstr "" + +#: src/engine/engine.cpp:63 +msgid "06xy: Volume slide + portamento (compatibility only!)" +msgstr "" + +#: src/engine/engine.cpp:65 +msgid "07xy: Tremolo (x: speed; y: depth)" +msgstr "" + +#: src/engine/engine.cpp:67 +msgid "08xy: Set panning (x: left; y: right)" +msgstr "" + +#: src/engine/engine.cpp:69 +msgid "09xx: Set groove pattern (speed 1 if no grooves exist)" +msgstr "" + +#: src/engine/engine.cpp:71 +msgid "0Axy: Volume slide (0y: down; x0: up)" +msgstr "" + +#: src/engine/engine.cpp:73 +msgid "0Bxx: Jump to pattern" +msgstr "" + +#: src/engine/engine.cpp:75 +msgid "0Cxx: Retrigger" +msgstr "" + +#: src/engine/engine.cpp:77 +msgid "0Dxx: Jump to next pattern" +msgstr "" + +#: src/engine/engine.cpp:79 +msgid "0Fxx: Set speed (speed 2 if no grooves exist)" +msgstr "" + +#: src/engine/engine.cpp:81 +msgid "80xx: Set panning (00: left; 80: center; FF: right)" +msgstr "" + +#: src/engine/engine.cpp:83 +msgid "81xx: Set panning (left channel)" +msgstr "" + +#: src/engine/engine.cpp:85 +msgid "82xx: Set panning (right channel)" +msgstr "" + +#: src/engine/engine.cpp:87 +msgid "88xy: Set panning (rear channels; x: left; y: right)" +msgstr "" + +#: src/engine/engine.cpp:90 +msgid "89xx: Set panning (rear left channel)" +msgstr "" + +#: src/engine/engine.cpp:93 +msgid "8Axx: Set panning (rear right channel)" +msgstr "" + +#: src/engine/engine.cpp:96 +msgid "Cxxx: Set tick rate (hz)" +msgstr "" + +#: src/engine/engine.cpp:98 +msgid "E0xx: Set arp speed" +msgstr "" + +#: src/engine/engine.cpp:100 +msgid "E1xy: Note slide up (x: speed; y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:102 +msgid "E2xy: Note slide down (x: speed; y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:104 +msgid "E3xx: Set vibrato shape (0: up/down; 1: up only; 2: down only)" +msgstr "" + +#: src/engine/engine.cpp:106 +msgid "E4xx: Set vibrato range" +msgstr "" + +#: src/engine/engine.cpp:108 +msgid "E5xx: Set pitch (80: center)" +msgstr "" + +#: src/engine/engine.cpp:110 +msgid "E6xy: Quick legato (x: time (0-7 up; 8-F down); y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:112 +msgid "E7xx: Macro release" +msgstr "" + +#: src/engine/engine.cpp:114 +msgid "E8xy: Quick legato up (x: time; y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:116 +msgid "E9xy: Quick legato down (x: time; y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:118 +msgid "EAxx: Legato" +msgstr "" + +#: src/engine/engine.cpp:120 +msgid "EBxx: Set LEGACY sample mode bank" +msgstr "" + +#: src/engine/engine.cpp:122 +msgid "ECxx: Note cut" +msgstr "" + +#: src/engine/engine.cpp:124 +msgid "EDxx: Note delay" +msgstr "" + +#: src/engine/engine.cpp:126 +msgid "EExx: Send external command" +msgstr "" + +#: src/engine/engine.cpp:128 +msgid "F0xx: Set tick rate (bpm)" +msgstr "" + +#: src/engine/engine.cpp:130 +msgid "F1xx: Single tick note slide up" +msgstr "" + +#: src/engine/engine.cpp:132 +msgid "F2xx: Single tick note slide down" +msgstr "" + +#: src/engine/engine.cpp:134 +msgid "F3xx: Fine volume slide up" +msgstr "" + +#: src/engine/engine.cpp:136 +msgid "F4xx: Fine volume slide down" +msgstr "" + +#: src/engine/engine.cpp:138 +msgid "F5xx: Disable macro (see manual)" +msgstr "" + +#: src/engine/engine.cpp:140 +msgid "F6xx: Enable macro (see manual)" +msgstr "" + +#: src/engine/engine.cpp:142 +msgid "F7xx: Restart macro (see manual)" +msgstr "" + +#: src/engine/engine.cpp:144 +msgid "F8xx: Single tick volume slide up" +msgstr "" + +#: src/engine/engine.cpp:146 +msgid "F9xx: Single tick volume slide down" +msgstr "" + +#: src/engine/engine.cpp:148 +msgid "FAxx: Fast volume slide (0y: down; x0: up)" +msgstr "" + +#: src/engine/engine.cpp:150 +msgid "FCxx: Note release" +msgstr "" + +#: src/engine/engine.cpp:152 +msgid "FDxx: Set virtual tempo numerator" +msgstr "" + +#: src/engine/engine.cpp:154 +msgid "FExx: Set virtual tempo denominator" +msgstr "" + +#: src/engine/engine.cpp:156 +msgid "FFxx: Stop song" +msgstr "" + +#: src/engine/engine.cpp:160 +msgid "9xxx: Set sample offset*256" +msgstr "" + +#: src/engine/engine.cpp:164 +msgid "90xx: Set sample offset (first byte)" +msgstr "" + +#: src/engine/engine.cpp:166 +msgid "91xx: Set sample offset (second byte, ×256)" +msgstr "" + +#: src/engine/engine.cpp:168 +msgid "92xx: Set sample offset (third byte, ×65536)" +msgstr "" + +#: src/engine/engine.cpp:187 src/gui/settings.cpp:4127 +msgid "Invalid effect" +msgstr "" + +#: src/engine/engine.cpp:354 src/gui/gui.cpp:2259 src/gui/gui.cpp:2422 +#, c-format +msgid "on seek: %s" +msgstr "" + +#: src/engine/engine.cpp:361 src/gui/gui.cpp:2266 src/gui/gui.cpp:2429 +#, c-format +msgid "on pre tell: %s" +msgstr "" + +#: src/engine/engine.cpp:368 src/engine/engine.cpp:2768 +#: src/gui/settings.cpp:5811 src/gui/gui.cpp:2273 src/gui/gui.cpp:2436 +msgid "file is empty" +msgstr "" + +#: src/engine/engine.cpp:371 src/gui/gui.cpp:2276 src/gui/gui.cpp:2439 +#, c-format +msgid "on tell: %s" +msgstr "" + +#: src/engine/engine.cpp:378 +#, c-format +msgid "ROM size mismatch, expected: %d bytes, was: %d" +msgstr "" + +#: src/engine/engine.cpp:383 src/gui/settings.cpp:5820 src/gui/gui.cpp:2283 +#: src/gui/gui.cpp:2446 +#, c-format +msgid "on get size: %s" +msgstr "" + +#: src/engine/engine.cpp:390 src/gui/settings.cpp:5827 src/gui/gui.cpp:2290 +#: src/gui/gui.cpp:2453 +#, c-format +msgid "on read: %s" +msgstr "" + +#: src/engine/engine.cpp:1076 src/engine/engine.cpp:1181 +#: src/engine/engine.cpp:1290 +msgid "invalid index" +msgstr "" + +#: src/engine/engine.cpp:1080 src/engine/engine.cpp:1135 +#: src/engine/engine.cpp:1189 +#, c-format +msgid "max number of total channels is %d" +msgstr "" + +#: src/engine/engine.cpp:1131 src/engine/engine.cpp:1185 +#, c-format +msgid "max number of systems is %d" +msgstr "" + +#: src/engine/engine.cpp:1286 +msgid "cannot remove the last one" +msgstr "" + +#: src/engine/engine.cpp:1460 +msgid "source and destination are equal" +msgstr "" + +#: src/engine/engine.cpp:1464 +msgid "invalid source index" +msgstr "" + +#: src/engine/engine.cpp:1468 +msgid "invalid destination index" +msgstr "" + +#: src/engine/engine.cpp:2636 +#, c-format +msgid "Instrument %d" +msgstr "" + +#: src/engine/engine.cpp:2710 src/engine/engine.cpp:2727 +#: src/gui/doAction.cpp:825 src/gui/doAction.cpp:843 src/gui/doAction.cpp:1634 +#: src/gui/gui.cpp:6159 src/gui/insEdit.cpp:6860 +msgid "too many wavetables!" +msgstr "" + +#: src/engine/engine.cpp:2752 +#, c-format +msgid "could not seek to end: %s" +msgstr "" + +#: src/engine/engine.cpp:2758 +#, c-format +msgid "could not determine file size: %s" +msgstr "" + +#: src/engine/engine.cpp:2763 +msgid "file size is invalid!" +msgstr "" + +#: src/engine/engine.cpp:2773 +#, c-format +msgid "could not seek to beginning: %s" +msgstr "" + +#: src/engine/engine.cpp:2780 +#, c-format +msgid "could not read entire file: %s" +msgstr "" + +#: src/engine/engine.cpp:2806 +msgid "invalid wavetable header/data!" +msgstr "" + +#: src/engine/engine.cpp:2877 +msgid "premature end of file" +msgstr "" + +#: src/engine/engine.cpp:2904 src/engine/engine.cpp:2926 +#: src/gui/doAction.cpp:909 src/gui/doAction.cpp:921 +msgid "too many samples!" +msgstr "" + +#: src/engine/engine.cpp:2911 +#, c-format +msgid "Sample %d" +msgstr "" + +#: src/engine/engine.cpp:3056 +#, c-format +msgid "no free patterns in channel %d!" +msgstr "" + +#: src/gui/mixer.cpp:28 src/gui/insEdit.cpp:484 +msgid "left" +msgstr "" + +#: src/gui/mixer.cpp:29 src/gui/insEdit.cpp:483 +msgid "right" +msgstr "" + +#: src/gui/mixer.cpp:128 +msgid "input" +msgstr "" + +#: src/gui/mixer.cpp:168 +msgid "output" +msgstr "" + +#: src/gui/mixer.cpp:226 src/gui/mixer.cpp:228 src/gui/editControls.cpp:454 +#: src/gui/guiConst.cpp:593 +msgid "Mixer" +msgstr "" + +#: src/gui/mixer.cpp:229 +msgid "Master Volume" +msgstr "" + +#: src/gui/mixer.cpp:250 src/gui/exportOptions.cpp:90 +#: src/gui/userPresets.cpp:393 src/gui/userPresets.cpp:405 +#: src/gui/settings.cpp:1080 src/gui/settings.cpp:1094 +#: src/gui/waveEdit.cpp:1096 src/gui/sampleEdit.cpp:1128 +#: src/gui/insEdit.cpp:519 +msgid "Invert" +msgstr "" + +#: src/gui/mixer.cpp:268 src/gui/chanOsc.cpp:37 src/gui/userPresets.cpp:417 +#: src/gui/settings.cpp:263 src/gui/settings.cpp:1109 src/gui/settings.cpp:1492 +#: src/gui/settings.cpp:1504 src/gui/settings.cpp:3369 +#: src/gui/settings.cpp:4015 src/gui/findReplace.cpp:687 +#: src/gui/findReplace.cpp:943 src/gui/guiConst.cpp:228 +#: src/gui/sampleEdit.cpp:1003 src/gui/insEdit.cpp:5575 +#: src/gui/insEdit.cpp:5660 src/gui/insEdit.cpp:6920 src/gui/insEdit.cpp:6928 +#: src/gui/insEdit.cpp:6936 src/gui/insEdit.cpp:6946 src/gui/insEdit.cpp:6961 +#: src/gui/insEdit.cpp:6975 src/gui/insEdit.cpp:6987 src/gui/insEdit.cpp:7000 +#: src/gui/insEdit.cpp:7016 src/gui/insEdit.cpp:7022 src/gui/insEdit.cpp:7032 +#: src/gui/insEdit.cpp:7039 src/gui/insEdit.cpp:7045 src/gui/insEdit.cpp:7058 +#: src/gui/insEdit.cpp:7065 src/gui/insEdit.cpp:7072 src/gui/insEdit.cpp:7081 +#: src/gui/insEdit.cpp:7091 src/gui/insEdit.cpp:7099 src/gui/insEdit.cpp:7105 +#: src/gui/insEdit.cpp:7113 src/gui/insEdit.cpp:7120 src/gui/insEdit.cpp:7126 +#: src/gui/insEdit.cpp:7136 src/gui/insEdit.cpp:7148 src/gui/insEdit.cpp:7156 +#: src/gui/insEdit.cpp:7172 src/gui/insEdit.cpp:7177 src/gui/insEdit.cpp:7190 +#: src/gui/insEdit.cpp:7197 src/gui/insEdit.cpp:7208 src/gui/insEdit.cpp:7221 +#: src/gui/insEdit.cpp:7230 src/gui/insEdit.cpp:7237 src/gui/insEdit.cpp:7245 +#: src/gui/insEdit.cpp:7258 src/gui/insEdit.cpp:7263 src/gui/insEdit.cpp:7269 +#: src/gui/insEdit.cpp:7276 src/gui/insEdit.cpp:7284 src/gui/insEdit.cpp:7295 +#: src/gui/insEdit.cpp:7302 src/gui/insEdit.cpp:7310 src/gui/insEdit.cpp:7318 +#: src/gui/insEdit.cpp:7327 src/gui/insEdit.cpp:7335 src/gui/insEdit.cpp:7341 +#: src/gui/insEdit.cpp:7347 src/gui/insEdit.cpp:7353 src/gui/insEdit.cpp:7358 +#: src/gui/insEdit.cpp:7365 src/gui/insEdit.cpp:7372 src/gui/insEdit.cpp:7380 +#: src/gui/insEdit.cpp:7389 src/gui/insEdit.cpp:7397 src/gui/insEdit.cpp:7409 +#: src/gui/insEdit.cpp:7422 src/gui/insEdit.cpp:7433 src/gui/insEdit.cpp:7443 +#: src/gui/insEdit.cpp:7451 src/gui/insEdit.cpp:7461 src/gui/insEdit.cpp:7470 +msgid "Volume" +msgstr "" + +#: src/gui/mixer.cpp:279 src/gui/userPresets.cpp:427 src/gui/settings.cpp:1120 +#: src/gui/guiConst.cpp:229 src/gui/insEdit.cpp:6923 src/gui/insEdit.cpp:6930 +#: src/gui/insEdit.cpp:6941 src/gui/insEdit.cpp:6965 src/gui/insEdit.cpp:7067 +#: src/gui/insEdit.cpp:7108 src/gui/insEdit.cpp:7152 src/gui/insEdit.cpp:7192 +#: src/gui/insEdit.cpp:7212 src/gui/insEdit.cpp:7232 src/gui/insEdit.cpp:7240 +#: src/gui/insEdit.cpp:7253 src/gui/insEdit.cpp:7265 src/gui/insEdit.cpp:7271 +#: src/gui/insEdit.cpp:7287 src/gui/insEdit.cpp:7297 src/gui/insEdit.cpp:7360 +#: src/gui/insEdit.cpp:7392 src/gui/insEdit.cpp:7438 src/gui/insEdit.cpp:7446 +msgid "Panning" +msgstr "" + +#: src/gui/mixer.cpp:290 src/gui/userPresets.cpp:433 src/gui/settings.cpp:1127 +msgid "Front/Rear" +msgstr "" + +#: src/gui/mixer.cpp:299 src/gui/settings.cpp:4208 +msgid "Patchbay" +msgstr "" + +#: src/gui/mixer.cpp:305 +msgid "Automatic patchbay" +msgstr "" + +#: src/gui/mixer.cpp:310 +msgid "Display hidden ports" +msgstr "" + +#: src/gui/mixer.cpp:312 +msgid "Display internal" +msgstr "" + +#: src/gui/mixer.cpp:322 src/gui/mixer.cpp:383 src/gui/settings.cpp:1901 +#: src/gui/settings.cpp:2089 src/gui/songInfo.cpp:69 +msgid "System" +msgstr "" + +#: src/gui/mixer.cpp:354 +msgid "Sample Preview" +msgstr "" + +#: src/gui/mixer.cpp:367 src/gui/editControls.cpp:745 +#: src/gui/editControls.cpp:837 src/gui/editControls.cpp:953 +#: src/gui/editControls.cpp:1093 src/gui/settings.cpp:1490 +#: src/gui/guiConst.cpp:558 +msgid "Metronome" +msgstr "" + +#: src/gui/mixer.cpp:446 +msgid "disconnect all" +msgstr "" + +#: src/gui/editing.cpp:200 +#, c-format +msgid "no data in oldPatMap for channel %d!" +msgstr "" + +#: src/gui/editing.cpp:664 src/gui/editing.cpp:1203 +#, c-format +msgid "invalid clipboard data! failed at line %d char %d" +msgstr "" + +#: src/gui/editing.cpp:1565 src/gui/editing.cpp:1669 +msgid "can't collapse any further!" +msgstr "" + +#: src/gui/editing.cpp:1749 +msgid "can't expand any further!" +msgstr "" + +#: src/gui/editing.cpp:1836 src/gui/editing.cpp:1851 +#, c-format +msgid "copy: %s" +msgstr "" + +#: src/gui/memory.cpp:35 src/gui/settings.cpp:3696 src/gui/settings.cpp:4217 +#: src/gui/guiConst.cpp:613 +msgid "Memory Composition" +msgstr "" + +#: src/gui/memory.cpp:146 +#, c-format +msgid "bank %d" +msgstr "" + +#: src/gui/memory.cpp:175 src/gui/memory.cpp:176 +msgid "no chips with memory" +msgstr "" + +#: src/gui/intro.cpp:89 src/gui/gui.cpp:2345 src/gui/gui.cpp:3746 +#: src/gui/gui.cpp:5019 src/gui/gui.cpp:5041 src/gui/gui.cpp:5479 +#: src/gui/gui.cpp:5781 src/gui/gui.cpp:5791 +#, c-format +msgid "Error while loading file! (%s)" +msgstr "" + +#: src/gui/intro.cpp:122 +msgid "IntroMon X" +msgstr "" + +#: src/gui/intro.cpp:122 +msgid "Intro" +msgstr "" + +#: src/gui/intro.cpp:124 +msgid "Preview" +msgstr "" + +#: src/gui/intro.cpp:176 src/gui/intro.cpp:177 src/gui/intro.cpp:178 +msgid "SORRY NOTHING" +msgstr "" + +#: src/gui/intro.cpp:310 +msgid "hold to skip" +msgstr "" + +#: src/gui/dataList.cpp:76 +msgid "Bug!" +msgstr "" + +#: src/gui/dataList.cpp:79 src/gui/util.cpp:107 src/gui/util.cpp:109 +#: src/gui/settings.cpp:4220 src/gui/insEdit.cpp:5334 +msgid "Unknown" +msgstr "" + +#: src/gui/dataList.cpp:136 src/gui/dataList.cpp:260 +msgid "duplicate" +msgstr "" + +#: src/gui/dataList.cpp:139 src/gui/dataList.cpp:263 src/gui/dataList.cpp:388 +#: src/gui/dataList.cpp:731 src/gui/dataList.cpp:867 +msgid "replace..." +msgstr "" + +#: src/gui/dataList.cpp:142 src/gui/dataList.cpp:266 src/gui/gui.cpp:4232 +msgid "save" +msgstr "" + +#: src/gui/dataList.cpp:145 +msgid "save (.dmp)" +msgstr "" + +#: src/gui/dataList.cpp:148 src/gui/dataList.cpp:269 src/gui/dataList.cpp:617 +#: src/gui/dataList.cpp:994 src/gui/dataList.cpp:1040 +#: src/gui/editControls.cpp:50 src/gui/gui.cpp:2767 src/gui/gui.cpp:2776 +msgid "delete" +msgstr "" + +#: src/gui/dataList.cpp:243 +msgid "out of memory for this sample!" +msgstr "" + +#: src/gui/dataList.cpp:254 +msgid "make instrument" +msgstr "" + +#: src/gui/dataList.cpp:257 +msgid "make me a drum kit" +msgstr "" + +#: src/gui/dataList.cpp:290 src/gui/dataList.cpp:593 src/gui/gui.cpp:5914 +msgid "Instruments" +msgstr "" + +#: src/gui/dataList.cpp:312 src/gui/dataList.cpp:714 src/gui/dataList.cpp:846 +#: src/gui/subSongs.cpp:88 src/gui/insEdit.cpp:520 +msgid "Add" +msgstr "" + +#: src/gui/dataList.cpp:338 src/gui/dataList.cpp:721 src/gui/dataList.cpp:853 +#: src/gui/subSongs.cpp:108 +msgid "Duplicate" +msgstr "" + +#: src/gui/dataList.cpp:359 src/gui/dataList.cpp:728 src/gui/dataList.cpp:860 +#: src/gui/editControls.cpp:497 src/gui/waveEdit.cpp:435 +#: src/gui/waveEdit.cpp:467 src/gui/sampleEdit.cpp:122 +#: src/gui/sampleEdit.cpp:171 src/gui/insEdit.cpp:5239 src/gui/insEdit.cpp:5304 +msgid "Open" +msgstr "" + +#: src/gui/dataList.cpp:363 +msgid "replace instrument..." +msgstr "" + +#: src/gui/dataList.cpp:366 +msgid "load instrument from TX81Z" +msgstr "" + +#: src/gui/dataList.cpp:372 +msgid "replace wavetable..." +msgstr "" + +#: src/gui/dataList.cpp:378 +msgid "replace sample..." +msgstr "" + +#: src/gui/dataList.cpp:381 +msgid "import raw sample..." +msgstr "" + +#: src/gui/dataList.cpp:384 +msgid "import raw sample (replace)..." +msgstr "" + +#: src/gui/dataList.cpp:392 +msgid "load from TX81Z" +msgstr "" + +#: src/gui/dataList.cpp:399 +msgid "Open (insert; right-click to replace)" +msgstr "" + +#: src/gui/dataList.cpp:420 src/gui/dataList.cpp:741 src/gui/dataList.cpp:884 +#: src/gui/editControls.cpp:502 src/gui/waveEdit.cpp:474 +#: src/gui/sampleEdit.cpp:184 src/gui/insEdit.cpp:5311 +msgid "Save" +msgstr "" + +#: src/gui/dataList.cpp:424 +msgid "save instrument as .dmp..." +msgstr "" + +#: src/gui/dataList.cpp:430 +msgid "save wavetable as .dmw..." +msgstr "" + +#: src/gui/dataList.cpp:433 +msgid "save raw wavetable..." +msgstr "" + +#: src/gui/dataList.cpp:439 +msgid "save raw sample..." +msgstr "" + +#: src/gui/dataList.cpp:443 src/gui/insEdit.cpp:5314 +msgid "save as .dmp..." +msgstr "" + +#: src/gui/dataList.cpp:456 src/gui/dataList.cpp:761 src/gui/dataList.cpp:903 +msgid "Toggle folders/standard view" +msgstr "" + +#: src/gui/dataList.cpp:478 src/gui/dataList.cpp:769 src/gui/dataList.cpp:911 +#: src/gui/subSongs.cpp:55 +msgid "Move up" +msgstr "" + +#: src/gui/dataList.cpp:499 src/gui/dataList.cpp:776 src/gui/dataList.cpp:918 +#: src/gui/subSongs.cpp:62 +msgid "Move down" +msgstr "" + +#: src/gui/dataList.cpp:510 src/gui/dataList.cpp:787 src/gui/dataList.cpp:929 +msgid "Create" +msgstr "" + +#: src/gui/dataList.cpp:540 src/gui/dataList.cpp:797 src/gui/dataList.cpp:939 +msgid "New folder" +msgstr "" + +#: src/gui/dataList.cpp:549 src/gui/dataList.cpp:947 +msgid "Preview (right click to stop)" +msgstr "" + +#: src/gui/dataList.cpp:576 src/gui/dataList.cpp:807 src/gui/dataList.cpp:959 +#: src/gui/guiConst.cpp:666 src/gui/sampleEdit.cpp:1105 +msgid "Delete" +msgstr "" + +#: src/gui/dataList.cpp:608 src/gui/dataList.cpp:985 src/gui/dataList.cpp:1031 +msgid "" +msgstr "" + +#: src/gui/dataList.cpp:614 src/gui/dataList.cpp:991 src/gui/dataList.cpp:1037 +msgid "rename..." +msgstr "" + +#: src/gui/dataList.cpp:663 src/gui/dataList.cpp:707 src/gui/gui.cpp:5923 +msgid "Wavetables" +msgstr "" + +#: src/gui/dataList.cpp:674 src/gui/dataList.cpp:839 src/gui/xyOsc.cpp:68 +#: src/gui/sampleEdit.cpp:898 src/gui/sampleEdit.cpp:1072 src/gui/gui.cpp:5932 +msgid "Samples" +msgstr "" + +#: src/gui/dataList.cpp:745 src/gui/waveEdit.cpp:477 +msgid "save as .dmw..." +msgstr "" + +#: src/gui/dataList.cpp:748 src/gui/dataList.cpp:891 src/gui/waveEdit.cpp:480 +#: src/gui/sampleEdit.cpp:187 +msgid "save raw..." +msgstr "" + +#: src/gui/dataList.cpp:871 src/gui/sampleEdit.cpp:174 +msgid "import raw..." +msgstr "" + +#: src/gui/dataList.cpp:874 +msgid "import raw (replace)..." +msgstr "" + +#: src/gui/exportOptions.cpp:29 +msgid "Export type:" +msgstr "" + +#: src/gui/exportOptions.cpp:32 +msgid "one file" +msgstr "" + +#: src/gui/exportOptions.cpp:35 +msgid "multiple files (one per chip)" +msgstr "" + +#: src/gui/exportOptions.cpp:38 +msgid "multiple files (one per channel)" +msgstr "" + +#: src/gui/exportOptions.cpp:44 +msgid "Bit depth:" +msgstr "" + +#: src/gui/exportOptions.cpp:46 +msgid "16-bit integer" +msgstr "" + +#: src/gui/exportOptions.cpp:49 +msgid "32-bit float" +msgstr "" + +#: src/gui/exportOptions.cpp:55 src/gui/settings.cpp:1352 src/gui/gui.cpp:6270 +msgid "Sample rate" +msgstr "" + +#: src/gui/exportOptions.cpp:61 +msgid "Channels in file" +msgstr "" + +#: src/gui/exportOptions.cpp:67 src/gui/settings.cpp:930 +msgid "Loops" +msgstr "" + +#: src/gui/exportOptions.cpp:70 src/gui/settings.cpp:935 +msgid "Fade out (seconds)" +msgstr "" + +#: src/gui/exportOptions.cpp:76 +msgid "Channels to export:" +msgstr "" + +#: src/gui/exportOptions.cpp:78 src/gui/effectList.cpp:32 src/gui/gui.cpp:6186 +msgid "All" +msgstr "" + +#: src/gui/exportOptions.cpp:84 src/gui/sysConf.cpp:1870 +#: src/gui/effectList.cpp:34 src/gui/compatFlags.cpp:219 +#: src/gui/waveEdit.cpp:37 src/gui/gui.cpp:6192 src/gui/insEdit.cpp:518 +msgid "None" +msgstr "" + +#: src/gui/exportOptions.cpp:110 src/gui/exportOptions.cpp:214 +#: src/gui/exportOptions.cpp:225 src/gui/exportOptions.cpp:243 +#: src/gui/exportOptions.cpp:266 src/gui/exportOptions.cpp:297 +#: src/gui/exportOptions.cpp:318 src/gui/exportOptions.cpp:341 +#: src/gui/commandPalette.cpp:199 src/gui/settings.cpp:6673 +#: src/gui/newSong.cpp:273 src/gui/gui.cpp:5669 src/gui/gui.cpp:5693 +#: src/gui/gui.cpp:5717 src/gui/gui.cpp:5741 src/gui/gui.cpp:5765 +#: src/gui/gui.cpp:5796 src/gui/gui.cpp:5855 src/gui/gui.cpp:6229 +#: src/gui/gui.cpp:6353 +msgid "Cancel" +msgstr "" + +#: src/gui/exportOptions.cpp:115 src/gui/exportOptions.cpp:217 +#: src/gui/exportOptions.cpp:246 src/gui/exportOptions.cpp:300 +#: src/gui/exportOptions.cpp:321 src/gui/exportOptions.cpp:344 +#: src/gui/editControls.cpp:512 src/gui/userPresets.cpp:523 +#: src/gui/settings.cpp:1242 src/gui/settings.cpp:2165 +#: src/gui/settings.cpp:2557 src/gui/settings.cpp:3800 src/gui/guiConst.cpp:536 +#: src/gui/gui.cpp:5578 src/gui/gui.cpp:5630 +msgid "Export" +msgstr "" + +#: src/gui/exportOptions.cpp:130 +msgid "select at least one channel" +msgstr "" + +#: src/gui/exportOptions.cpp:137 +msgid "settings:" +msgstr "" + +#: src/gui/exportOptions.cpp:138 +msgid "format version" +msgstr "" + +#: src/gui/exportOptions.cpp:146 src/gui/exportOptions.cpp:238 +#: src/gui/insEdit.cpp:362 +msgid "loop" +msgstr "" + +#: src/gui/exportOptions.cpp:148 +msgid "loop trail:" +msgstr "" + +#: src/gui/exportOptions.cpp:150 +msgid "auto-detect" +msgstr "" + +#: src/gui/exportOptions.cpp:153 +msgid "add one loop" +msgstr "" + +#: src/gui/exportOptions.cpp:156 +msgid "custom" +msgstr "" + +#: src/gui/exportOptions.cpp:167 +msgid "add pattern change hints" +msgstr "" + +#: src/gui/exportOptions.cpp:170 +msgid "" +"inserts data blocks on pattern changes.\n" +"useful if you are writing a playback routine.\n" +"\n" +"the format of a pattern change data block is:\n" +"67 66 FE ll ll ll ll 01 oo rr pp pp pp ...\n" +"- ll: length, a 32-bit little-endian number\n" +"- oo: order\n" +"- rr: initial row (a 0Dxx effect is able to select a different row)\n" +"- pp: pattern index (one per channel)\n" +"\n" +"pattern indexes are ordered as they appear in the song." +msgstr "" + +#: src/gui/exportOptions.cpp:183 +msgid "direct stream mode" +msgstr "" + +#: src/gui/exportOptions.cpp:186 +msgid "" +"required for DualPCM and MSM6258 export.\n" +"\n" +"allows for volume/direction changes when playing samples,\n" +"at the cost of a massive increase in file size." +msgstr "" + +#: src/gui/exportOptions.cpp:191 +msgid "chips to export:" +msgstr "" + +#: src/gui/exportOptions.cpp:200 +#, c-format +msgid "this chip is only available in VGM %d.%.2x and higher!" +msgstr "" + +#: src/gui/exportOptions.cpp:204 +msgid "this chip is not supported by the VGM format!" +msgstr "" + +#: src/gui/exportOptions.cpp:210 +#, c-format +msgid "select the chip you wish to export, but only up to %d of each type." +msgstr "" + +#: src/gui/exportOptions.cpp:222 +msgid "nothing to export" +msgstr "" + +#: src/gui/exportOptions.cpp:233 +msgid "Commander X16 Zsound Music File" +msgstr "" + +#: src/gui/exportOptions.cpp:234 +msgid "Tick Rate (Hz)" +msgstr "" + +#: src/gui/exportOptions.cpp:240 +msgid "optimize size" +msgstr "" + +#: src/gui/exportOptions.cpp:256 src/gui/editControls.cpp:630 +msgid "" +"this is NOT ROM export! only use for making sure the\n" +"Furnace Amiga emulator is working properly by\n" +"comparing it with real Amiga output." +msgstr "" + +#: src/gui/exportOptions.cpp:261 src/gui/editControls.cpp:635 +#: src/gui/settings.cpp:3925 +msgid "Directory" +msgstr "" + +#: src/gui/exportOptions.cpp:269 src/gui/editControls.cpp:638 +msgid "Bake Data" +msgstr "" + +#: src/gui/exportOptions.cpp:284 src/gui/editControls.cpp:653 +#, c-format +msgid "Done! Baked %d files." +msgstr "" + +#: src/gui/exportOptions.cpp:293 +msgid "this option exports the song to a text file.\n" +msgstr "" + +#: src/gui/exportOptions.cpp:310 +msgid "" +"this option exports a text or binary file which\n" +"contains a dump of the internal command stream\n" +"produced when playing the song.\n" +"\n" +"technical/development use only!" +msgstr "" + +#: src/gui/exportOptions.cpp:331 +msgid "" +"export in DefleMask module format.\n" +"only do it if you really, really need to, or are downgrading an existing ." +"dmf." +msgstr "" + +#: src/gui/exportOptions.cpp:335 +msgid "format version:" +msgstr "" + +#: src/gui/exportOptions.cpp:336 +msgid "1.1.3 and higher" +msgstr "" + +#: src/gui/exportOptions.cpp:337 +msgid "1.0/legacy (0.12)" +msgstr "" + +#: src/gui/exportOptions.cpp:357 src/gui/settings.cpp:1253 +#: src/gui/settings.cpp:3929 +msgid "Audio" +msgstr "" + +#: src/gui/exportOptions.cpp:361 src/gui/settings.cpp:3931 +msgid "VGM" +msgstr "" + +#: src/gui/exportOptions.cpp:370 src/gui/settings.cpp:3932 +msgid "ZSM" +msgstr "" + +#: src/gui/exportOptions.cpp:380 +msgid "Amiga Validation" +msgstr "" + +#: src/gui/exportOptions.cpp:385 src/gui/settings.cpp:2959 +#: src/gui/settings.cpp:3891 +msgid "Text" +msgstr "" + +#: src/gui/exportOptions.cpp:389 +msgid "Command Stream" +msgstr "" + +#: src/gui/exportOptions.cpp:393 +msgid "DMF" +msgstr "" + +#: src/gui/exportOptions.cpp:422 +msgid "congratulations! you've unlocked a secret panel." +msgstr "" + +#: src/gui/exportOptions.cpp:423 +msgid "Toggle hidden systems" +msgstr "" + +#: src/gui/exportOptions.cpp:427 +msgid "Toggle all instrument types" +msgstr "" + +#: src/gui/exportOptions.cpp:431 +msgid "Set pitch linearity to Partial" +msgstr "" + +#: src/gui/exportOptions.cpp:435 +msgid "Enable multi-threading settings" +msgstr "" + +#: src/gui/exportOptions.cpp:439 +msgid "Set fat to max" +msgstr "" + +#: src/gui/exportOptions.cpp:446 +msgid "Set muscle and fat to zero" +msgstr "" + +#: src/gui/exportOptions.cpp:453 +msgid "Tell tildearrow this must be a mistake" +msgstr "" + +#: src/gui/exportOptions.cpp:454 +msgid "" +"yeah, it's a bug. write a bug report in the GitHub page and tell me how did " +"you get here." +msgstr "" + +#: src/gui/speed.cpp:32 src/gui/speed.cpp:102 src/gui/editControls.cpp:532 +#: src/gui/sysConf.cpp:2148 src/gui/guiConst.cpp:232 src/gui/guiConst.cpp:581 +#: src/gui/insEdit.cpp:2028 src/gui/insEdit.cpp:5693 src/gui/insEdit.cpp:6885 +msgid "Speed" +msgstr "" + +#: src/gui/speed.cpp:41 +msgid "Base Tempo##TempoOrHz" +msgstr "" + +#: src/gui/speed.cpp:41 +msgid "Tick Rate##TempoOrHz" +msgstr "" + +#: src/gui/speed.cpp:46 +msgid "click to display tick rate" +msgstr "" + +#: src/gui/speed.cpp:48 +msgid "click to display base tempo" +msgstr "" + +#: src/gui/speed.cpp:80 +msgid "Groove" +msgstr "" + +#: src/gui/speed.cpp:87 +msgid "click for one speed" +msgstr "" + +#: src/gui/speed.cpp:90 +msgid "Speeds" +msgstr "" + +#: src/gui/speed.cpp:99 +msgid "click for groove pattern" +msgstr "" + +#: src/gui/speed.cpp:110 +msgid "click for two (alternating) speeds" +msgstr "" + +#: src/gui/speed.cpp:168 +msgid "Virtual Tempo" +msgstr "" + +#: src/gui/speed.cpp:177 +msgid "Numerator" +msgstr "" + +#: src/gui/speed.cpp:187 +msgid "Denominator (set to base tempo)" +msgstr "" + +#: src/gui/speed.cpp:193 +msgid "Divider" +msgstr "" + +#: src/gui/speed.cpp:208 +msgid "Highlight" +msgstr "" + +#: src/gui/speed.cpp:231 +msgid "Pattern Length" +msgstr "" + +#: src/gui/speed.cpp:245 +msgid "Song Length" +msgstr "" + +#: src/gui/channels.cpp:40 src/gui/editControls.cpp:446 +#: src/gui/guiConst.cpp:601 src/gui/gui.cpp:6280 +msgid "Channels" +msgstr "" + +#: src/gui/channels.cpp:49 +msgid "Pat" +msgstr "" + +#: src/gui/channels.cpp:51 src/gui/editControls.cpp:550 +msgid "Osc" +msgstr "" + +#: src/gui/channels.cpp:53 +msgid "Swap" +msgstr "" + +#: src/gui/channels.cpp:55 src/gui/userPresets.cpp:368 +#: src/gui/effectList.cpp:45 src/gui/subSongs.cpp:125 src/gui/settings.cpp:1060 +#: src/gui/settings.cpp:4383 src/gui/sampleEdit.cpp:195 src/gui/songInfo.cpp:40 +#: src/gui/sysManager.cpp:54 src/gui/insEdit.cpp:5288 +msgid "Name" +msgstr "" + +#: src/gui/channels.cpp:64 +msgid "Show in pattern" +msgstr "" + +#: src/gui/channels.cpp:71 +msgid "Show in per-channel oscilloscope" +msgstr "" + +#: src/gui/channels.cpp:82 +#, c-format +msgid "" +"%s #%d\n" +"(drag to swap channels)" +msgstr "" + +#: src/gui/commandPalette.cpp:51 src/gui/sysPicker.cpp:35 +#: src/gui/newSong.cpp:133 +msgid "Search..." +msgstr "" + +#: src/gui/commandPalette.cpp:54 +msgid "Search recent files..." +msgstr "" + +#: src/gui/commandPalette.cpp:57 +msgid "Search instruments..." +msgstr "" + +#: src/gui/commandPalette.cpp:60 +msgid "Search samples..." +msgstr "" + +#: src/gui/commandPalette.cpp:63 +msgid "Search instruments (to change to)..." +msgstr "" + +#: src/gui/commandPalette.cpp:66 +msgid "Search chip (to add)..." +msgstr "" + +#: src/gui/commandPalette.cpp:93 src/gui/commandPalette.cpp:167 +msgid "- None -" +msgstr "" + +#: src/gui/commandPalette.cpp:123 src/gui/commandPalette.cpp:179 +#: src/gui/commandPalette.cpp:241 +msgid "invalid command palette type" +msgstr "" + +#: src/gui/regView.cpp:30 src/gui/guiConst.cpp:604 +msgid "Register View" +msgstr "" + +#: src/gui/regView.cpp:38 +msgid "- no register pool available" +msgstr "" + +#: src/gui/log.cpp:25 src/gui/effectList.cpp:84 +msgid "ERROR" +msgstr "" + +#: src/gui/log.cpp:26 +msgid "warning" +msgstr "" + +#: src/gui/log.cpp:27 +msgid "info" +msgstr "" + +#: src/gui/log.cpp:28 src/gui/gui.cpp:4513 +msgid "debug" +msgstr "" + +#: src/gui/log.cpp:29 +msgid "trace" +msgstr "" + +#: src/gui/log.cpp:47 src/gui/settings.cpp:4243 src/gui/guiConst.cpp:605 +msgid "Log Viewer" +msgstr "" + +#: src/gui/log.cpp:48 src/gui/editControls.cpp:750 src/gui/editControls.cpp:883 +#: src/gui/editControls.cpp:1000 +msgid "Follow" +msgstr "" + +#: src/gui/log.cpp:50 src/gui/waveEdit.cpp:681 src/gui/insEdit.cpp:50 +msgid "Level" +msgstr "" + +#: src/gui/log.cpp:68 +msgid "time" +msgstr "" + +#: src/gui/log.cpp:70 +msgid "level" +msgstr "" + +#: src/gui/log.cpp:72 +msgid "message" +msgstr "" + +#: src/gui/pattern.cpp:433 src/gui/editControls.cpp:421 +#: src/gui/editControls.cpp:754 src/gui/editControls.cpp:887 +#: src/gui/editControls.cpp:1015 src/gui/settings.cpp:2344 +#: src/gui/settings.cpp:3297 src/gui/settings.cpp:4100 +#: src/gui/findReplace.cpp:794 src/gui/guiConst.cpp:582 src/gui/gui.cpp:5899 +msgid "Pattern" +msgstr "" + +#: src/gui/pattern.cpp:468 +msgid "there aren't any channels to show." +msgstr "" + +#: src/gui/pattern.cpp:492 +msgid "click for pattern options (effect columns/pattern names/visualizer)" +msgstr "" + +#: src/gui/pattern.cpp:504 +msgid "Options:" +msgstr "" + +#: src/gui/pattern.cpp:506 +msgid "Effect columns/collapse" +msgstr "" + +#: src/gui/pattern.cpp:507 +msgid "Pattern names" +msgstr "" + +#: src/gui/pattern.cpp:508 +msgid "Channel group hints" +msgstr "" + +#: src/gui/pattern.cpp:509 +msgid "Visualizer" +msgstr "" + +#: src/gui/pattern.cpp:517 +msgid "Channel status:" +msgstr "" + +#: src/gui/pattern.cpp:519 +msgid "No##_PCS0" +msgstr "" + +#: src/gui/pattern.cpp:522 +msgid "Yes##_PCS1" +msgstr "" + +#: src/gui/pattern.cpp:1420 src/gui/pattern.cpp:1452 +msgid "WARNING!!" +msgstr "" + +#: src/gui/pattern.cpp:1422 src/gui/pattern.cpp:1459 +msgid "this instrument cannot be previewed because" +msgstr "" + +#: src/gui/pattern.cpp:1423 src/gui/pattern.cpp:1466 +msgid "none of the chips can play it" +msgstr "" + +#: src/gui/pattern.cpp:1424 src/gui/pattern.cpp:1473 +msgid "your instrument is in peril!! be careful..." +msgstr "" + +#: src/gui/osc.cpp:169 src/gui/settings.cpp:3710 src/gui/settings.cpp:3937 +msgid "Oscilloscope" +msgstr "" + +#: src/gui/osc.cpp:176 +#, c-format +msgid "zoom: %.2fx (%.1fdB)" +msgstr "" + +#: src/gui/osc.cpp:187 +#, c-format +msgid "window size: %.1fms" +msgstr "" + +#: src/gui/osc.cpp:385 +msgid "(-Infinity)dB" +msgstr "" + +#: src/gui/debugWindow.cpp:66 src/gui/editControls.cpp:610 +msgid "Debug" +msgstr "" + +#: src/gui/debugWindow.cpp:663 +msgid "This is a language test." +msgstr "" + +#: src/gui/debugWindow.cpp:664 +msgid "This is another language test." +msgstr "" + +#: src/gui/debugWindow.cpp:720 +#, c-format +msgid "%d apple" +msgid_plural "%d apples" +msgstr[0] "" +msgstr[1] "" + +#: src/gui/chanOsc.cpp:32 +msgid "None (0%)" +msgstr "" + +#: src/gui/chanOsc.cpp:33 +msgid "None (50%)" +msgstr "" + +#: src/gui/chanOsc.cpp:34 +msgid "None (100%)" +msgstr "" + +#: src/gui/chanOsc.cpp:36 +msgid "Frequency" +msgstr "" + +#: src/gui/chanOsc.cpp:38 src/gui/settings.cpp:1667 src/gui/settings.cpp:3406 +#: src/gui/settings.cpp:4088 +msgid "Channel" +msgstr "" + +#: src/gui/chanOsc.cpp:39 +msgid "Brightness" +msgstr "" + +#: src/gui/chanOsc.cpp:41 +msgid "Note Trigger" +msgstr "" + +#: src/gui/chanOsc.cpp:45 +msgid "Off" +msgstr "" + +#: src/gui/chanOsc.cpp:46 +msgid "Mode 1" +msgstr "" + +#: src/gui/chanOsc.cpp:47 +msgid "Mode 2" +msgstr "" + +#: src/gui/chanOsc.cpp:48 +msgid "Mode 3" +msgstr "" + +#: src/gui/chanOsc.cpp:135 src/gui/guiConst.cpp:607 +msgid "Oscilloscope (per-channel)" +msgstr "" + +#: src/gui/chanOsc.cpp:143 +msgid "Columns" +msgstr "" + +#: src/gui/chanOsc.cpp:152 +msgid "Size (ms)" +msgstr "" + +#: src/gui/chanOsc.cpp:163 +msgid "Automatic columns" +msgstr "" + +#: src/gui/chanOsc.cpp:177 +msgid "Center waveform" +msgstr "" + +#: src/gui/chanOsc.cpp:183 +msgid "Randomize phase on note" +msgstr "" + +#: src/gui/chanOsc.cpp:189 +msgid "Amplitude" +msgstr "" + +#: src/gui/chanOsc.cpp:199 src/gui/settings.cpp:3747 +msgid "Line size" +msgstr "" + +#: src/gui/chanOsc.cpp:211 +msgid "Gradient" +msgstr "" + +#: src/gui/chanOsc.cpp:218 +msgid "error while creating gradient texture!" +msgstr "" + +#: src/gui/chanOsc.cpp:236 +msgid "error while updating gradient texture!" +msgstr "" + +#: src/gui/chanOsc.cpp:292 src/gui/chanOsc.cpp:348 src/gui/settings.cpp:3793 +msgid "Color" +msgstr "" + +#: src/gui/chanOsc.cpp:296 +msgid "Distance" +msgstr "" + +#: src/gui/chanOsc.cpp:305 +msgid "Spread" +msgstr "" + +#: src/gui/chanOsc.cpp:314 src/gui/userPresets.cpp:370 src/gui/subSongs.cpp:121 +#: src/gui/settings.cpp:2281 src/gui/sysManager.cpp:124 +msgid "Remove" +msgstr "" + +#: src/gui/chanOsc.cpp:338 src/gui/settings.cpp:3885 src/gui/settings.cpp:4165 +#: src/gui/settings.cpp:4192 src/gui/settings.cpp:4218 +msgid "Background" +msgstr "" + +#: src/gui/chanOsc.cpp:341 +msgid "X Axis##AxisX" +msgstr "" + +#: src/gui/chanOsc.cpp:342 +msgid "Y Axis##AxisY" +msgstr "" + +#: src/gui/chanOsc.cpp:352 +msgid "Text format:" +msgstr "" + +#: src/gui/chanOsc.cpp:358 +msgid "" +"format guide:\n" +"- %c: channel name\n" +"- %C: channel short name\n" +"- %d: channel number (starting from 0)\n" +"- %D: channel number (starting from 1)\n" +"- %n: channel note\n" +"- %i: instrument name\n" +"- %I: instrument number (decimal)\n" +"- %x: instrument number (hex)\n" +"- %s: chip name\n" +"- %p: chip part number\n" +"- %S: chip ID\n" +"- %v: volume (decimal)\n" +"- %V: volume (percentage)\n" +"- %b: volume (hex)\n" +"- %l: new line\n" +"- %%: percent sign" +msgstr "" + +#: src/gui/chanOsc.cpp:380 +msgid "Text color" +msgstr "" + +#: src/gui/chanOsc.cpp:382 src/gui/xyOsc.cpp:80 src/gui/settings.cpp:6672 +#: src/gui/tutorial.cpp:689 src/gui/gui.cpp:5639 src/gui/gui.cpp:6055 +#: src/gui/gui.cpp:6223 src/gui/gui.cpp:6322 src/gui/gui.cpp:6371 +msgid "OK" +msgstr "" + +#: src/gui/chanOsc.cpp:400 +msgid "creating chan osc work pool" +msgstr "" + +#: src/gui/chanOsc.cpp:429 +#, c-format +msgid "creating FFT plan for channel %d" +msgstr "" + +#: src/gui/chanOsc.cpp:436 +msgid "failed to create plan!" +msgstr "" + +#: src/gui/chanOsc.cpp:438 +msgid "failed to create inverse plan!" +msgstr "" + +#: src/gui/chanOsc.cpp:440 +msgid "failed to create FFT buffers" +msgstr "" + +#: src/gui/chanOsc.cpp:585 +msgid "Error!" +msgstr "" + +#: src/gui/editControls.cpp:47 src/gui/sampleEdit.cpp:1736 src/gui/gui.cpp:2733 +#: src/gui/insEdit.cpp:363 +msgid "cut" +msgstr "" + +#: src/gui/editControls.cpp:48 src/gui/sampleEdit.cpp:1740 src/gui/gui.cpp:2734 +#: src/gui/insEdit.cpp:7538 +msgid "copy" +msgstr "" + +#: src/gui/editControls.cpp:49 src/gui/sampleEdit.cpp:1744 src/gui/gui.cpp:2735 +#: src/gui/gui.cpp:2788 src/gui/insEdit.cpp:7543 +msgid "paste" +msgstr "" + +#: src/gui/editControls.cpp:51 +msgid "" +"select\n" +"all" +msgstr "" + +#: src/gui/editControls.cpp:52 +msgid "piano" +msgstr "" + +#: src/gui/editControls.cpp:53 src/gui/gui.cpp:4429 +msgid "undo" +msgstr "" + +#: src/gui/editControls.cpp:54 src/gui/gui.cpp:4430 +msgid "redo" +msgstr "" + +#: src/gui/editControls.cpp:57 +msgid "" +"paste\n" +"mix" +msgstr "" + +#: src/gui/editControls.cpp:58 +msgid "" +"paste\n" +"mix bg" +msgstr "" + +#: src/gui/editControls.cpp:59 +msgid "" +"paste\n" +"ins" +msgstr "" + +#: src/gui/editControls.cpp:60 +msgid "" +"paste\n" +"ins bg" +msgstr "" + +#: src/gui/editControls.cpp:61 +msgid "" +"paste\n" +"flood" +msgstr "" + +#: src/gui/editControls.cpp:62 +msgid "" +"paste\n" +"overflow" +msgstr "" + +#: src/gui/editControls.cpp:63 +msgid "" +"transpose\n" +"notes" +msgstr "" + +#: src/gui/editControls.cpp:64 +msgid "" +"transpose\n" +"values" +msgstr "" + +#: src/gui/editControls.cpp:67 +msgid "" +"change\n" +"ins" +msgstr "" + +#: src/gui/editControls.cpp:68 +msgid "" +"find/\n" +"replace" +msgstr "" + +#: src/gui/editControls.cpp:69 src/gui/gui.cpp:3063 +msgid "collapse" +msgstr "" + +#: src/gui/editControls.cpp:70 src/gui/gui.cpp:3064 +msgid "expand" +msgstr "" + +#: src/gui/editControls.cpp:71 src/gui/gui.cpp:2820 +msgid "flip" +msgstr "" + +#: src/gui/editControls.cpp:72 src/gui/insEdit.cpp:430 +msgid "invert" +msgstr "" + +#: src/gui/editControls.cpp:73 src/gui/gui.cpp:2800 src/gui/gui.cpp:2960 +msgid "interpolate" +msgstr "" + +#: src/gui/editControls.cpp:74 src/gui/gui.cpp:2812 src/gui/insEdit.cpp:7610 +msgid "scale" +msgstr "" + +#: src/gui/editControls.cpp:77 src/gui/gui.cpp:2804 +msgid "fade" +msgstr "" + +#: src/gui/editControls.cpp:78 src/gui/gui.cpp:2816 src/gui/insEdit.cpp:7639 +msgid "randomize" +msgstr "" + +#: src/gui/editControls.cpp:79 +msgid "opmask" +msgstr "" + +#: src/gui/editControls.cpp:80 +msgid "" +"scroll\n" +"mode" +msgstr "" + +#: src/gui/editControls.cpp:81 +msgid "" +"input\n" +"latch" +msgstr "" + +#: src/gui/editControls.cpp:82 +msgid "" +"set\n" +"latch" +msgstr "" + +#: src/gui/editControls.cpp:83 +msgid "" +"clear\n" +"latch" +msgstr "" + +#: src/gui/editControls.cpp:84 src/gui/findReplace.cpp:43 +#: src/gui/insEdit.cpp:7557 +msgid "clear" +msgstr "" + +#: src/gui/editControls.cpp:333 +msgid "Mobile Controls" +msgstr "" + +#: src/gui/editControls.cpp:408 +msgid "Mobile Menu" +msgstr "" + +#: src/gui/editControls.cpp:425 src/gui/editControls.cpp:752 +#: src/gui/editControls.cpp:885 src/gui/editControls.cpp:1007 +#: src/gui/settings.cpp:2485 src/gui/settings.cpp:3271 +#: src/gui/settings.cpp:3975 src/gui/orders.cpp:232 src/gui/guiConst.cpp:577 +#: src/gui/gui.cpp:5888 +msgid "Orders" +msgstr "" + +#: src/gui/editControls.cpp:429 src/gui/findReplace.cpp:669 +#: src/gui/findReplace.cpp:914 +msgid "Ins" +msgstr "" + +#: src/gui/editControls.cpp:442 src/gui/findReplace.cpp:788 +#: src/gui/guiConst.cpp:230 +msgid "Song" +msgstr "" + +#: src/gui/editControls.cpp:450 src/gui/sampleEdit.cpp:494 +msgid "Chips" +msgstr "" + +#: src/gui/editControls.cpp:458 src/gui/settings.cpp:2117 +#: src/gui/settings.cpp:3934 src/gui/settings.cpp:4018 +#: src/gui/compatFlags.cpp:319 +msgid "Other" +msgstr "" + +#: src/gui/editControls.cpp:487 src/gui/guiConst.cpp:531 +msgid "New" +msgstr "" + +#: src/gui/editControls.cpp:491 src/gui/doAction.cpp:38 src/gui/gui.cpp:4194 +msgid "Unsaved changes! Save changes before creating a new song?" +msgstr "" + +#: src/gui/editControls.cpp:507 +msgid "Save as..." +msgstr "" + +#: src/gui/editControls.cpp:516 src/gui/gui.cpp:1680 +msgid "Restore Backup" +msgstr "" + +#: src/gui/editControls.cpp:524 +msgid "Song Info" +msgstr "" + +#: src/gui/editControls.cpp:528 src/gui/subSongs.cpp:17 +#: src/gui/guiConst.cpp:608 +msgid "Subsongs" +msgstr "" + +#: src/gui/editControls.cpp:541 +msgid "Channels here..." +msgstr "" + +#: src/gui/editControls.cpp:544 +msgid "Chips here..." +msgstr "" + +#: src/gui/editControls.cpp:547 +msgid "What the hell..." +msgstr "" + +#: src/gui/editControls.cpp:554 +msgid "ChanOsc" +msgstr "" + +#: src/gui/editControls.cpp:558 +msgid "RegView" +msgstr "" + +#: src/gui/editControls.cpp:562 +msgid "Stats" +msgstr "" + +#: src/gui/editControls.cpp:566 src/gui/guiConst.cpp:611 src/gui/grooves.cpp:35 +msgid "Grooves" +msgstr "" + +#: src/gui/editControls.cpp:569 +msgid "Compat Flags" +msgstr "" + +#: src/gui/editControls.cpp:573 +msgid "XYOsc" +msgstr "" + +#: src/gui/editControls.cpp:577 +msgid "Meter" +msgstr "" + +#: src/gui/editControls.cpp:581 +msgid "Memory" +msgstr "" + +#: src/gui/editControls.cpp:585 +msgid "CV" +msgstr "" + +#: src/gui/editControls.cpp:589 +msgid "Presets" +msgstr "" + +#: src/gui/editControls.cpp:593 +msgid "PatManager" +msgstr "" + +#: src/gui/editControls.cpp:599 src/gui/guiConst.cpp:564 +msgid "Panic" +msgstr "" + +#: src/gui/editControls.cpp:601 src/gui/settings.cpp:560 +#: src/gui/guiConst.cpp:589 src/gui/guiConst.cpp:591 src/gui/gui.cpp:4439 +msgid "Settings" +msgstr "" + +#: src/gui/editControls.cpp:606 +msgid "Log" +msgstr "" + +#: src/gui/editControls.cpp:614 src/gui/guiConst.cpp:587 +msgid "About" +msgstr "" + +#: src/gui/editControls.cpp:619 +msgid "Switch to Desktop Mode" +msgstr "" + +#: src/gui/editControls.cpp:673 src/gui/editControls.cpp:784 +#: src/gui/editControls.cpp:904 +msgid "Play/Edit Controls" +msgstr "" + +#: src/gui/editControls.cpp:681 src/gui/editControls.cpp:842 +#: src/gui/editControls.cpp:959 src/gui/editControls.cpp:1125 +msgid "Octave" +msgstr "" + +#: src/gui/editControls.cpp:698 src/gui/editControls.cpp:857 +msgid "Coarse Step" +msgstr "" + +#: src/gui/editControls.cpp:698 src/gui/editControls.cpp:857 +msgid "Edit Step" +msgstr "" + +#: src/gui/editControls.cpp:731 src/gui/editControls.cpp:797 +#: src/gui/editControls.cpp:911 src/gui/editControls.cpp:1048 +#: src/gui/guiConst.cpp:545 +msgid "Play" +msgstr "" + +#: src/gui/editControls.cpp:739 src/gui/editControls.cpp:789 +#: src/gui/editControls.cpp:918 src/gui/editControls.cpp:1040 +#: src/gui/guiConst.cpp:546 +msgid "Stop" +msgstr "" + +#: src/gui/editControls.cpp:742 src/gui/editControls.cpp:826 +#: src/gui/editControls.cpp:943 src/gui/editControls.cpp:1082 +#: src/gui/gui.cpp:4426 +msgid "Edit" +msgstr "" + +#: src/gui/editControls.cpp:757 src/gui/editControls.cpp:816 +#: src/gui/editControls.cpp:934 src/gui/editControls.cpp:1104 +msgid "Repeat pattern" +msgstr "" + +#: src/gui/editControls.cpp:766 src/gui/editControls.cpp:806 +#: src/gui/editControls.cpp:925 src/gui/editControls.cpp:1073 +msgid "Step one row" +msgstr "" + +#: src/gui/editControls.cpp:771 src/gui/editControls.cpp:891 +#: src/gui/editControls.cpp:1020 src/gui/editControls.cpp:1110 +msgid "Poly##PolyInput" +msgstr "" + +#: src/gui/editControls.cpp:771 src/gui/editControls.cpp:891 +#: src/gui/editControls.cpp:1020 src/gui/editControls.cpp:1110 +msgid "Mono##PolyInput" +msgstr "" + +#: src/gui/editControls.cpp:776 src/gui/editControls.cpp:896 +#: src/gui/editControls.cpp:1025 src/gui/editControls.cpp:1115 +msgid "Polyphony" +msgstr "" + +#: src/gui/editControls.cpp:957 +msgid "Oct." +msgstr "" + +#: src/gui/editControls.cpp:974 src/gui/editControls.cpp:1142 +msgid "Coarse" +msgstr "" + +#: src/gui/editControls.cpp:974 src/gui/editControls.cpp:1142 +msgid "Step" +msgstr "" + +#: src/gui/editControls.cpp:998 +msgid "Foll." +msgstr "" + +#: src/gui/editControls.cpp:1003 +msgid "Ord##FollowOrders" +msgstr "" + +#: src/gui/editControls.cpp:1011 +msgid "Pat##FollowPattern" +msgstr "" + +#: src/gui/editControls.cpp:1033 +msgid "Play Controls" +msgstr "" + +#: src/gui/editControls.cpp:1057 +msgid "Play from the beginning of this pattern" +msgstr "" + +#: src/gui/editControls.cpp:1065 +msgid "Repeat from the beginning of this pattern" +msgstr "" + +#: src/gui/editControls.cpp:1122 src/gui/guiConst.cpp:576 +msgid "Edit Controls" +msgstr "" + +#: src/gui/editControls.cpp:1169 src/gui/guiConst.cpp:560 +msgid "Follow orders" +msgstr "" + +#: src/gui/editControls.cpp:1170 src/gui/guiConst.cpp:561 +msgid "Follow pattern" +msgstr "" + +#: src/gui/songNotes.cpp:32 src/gui/guiConst.cpp:600 +msgid "Song Comments" +msgstr "" + +#: src/gui/util.cpp:93 +msgid "" +msgstr "" + +#: src/gui/util.cpp:97 +msgid "Ctrl-" +msgstr "" + +#: src/gui/util.cpp:99 +msgid "Alt-" +msgstr "" + +#: src/gui/util.cpp:100 +msgid "Shift-" +msgstr "" + +#: src/gui/stats.cpp:31 src/gui/guiConst.cpp:597 +msgid "Statistics" +msgstr "" + +#: src/gui/stats.cpp:36 +msgid "Audio load" +msgstr "" + +#: src/gui/xyOsc.cpp:40 src/gui/guiConst.cpp:612 +msgid "Oscilloscope (X-Y)" +msgstr "" + +#: src/gui/xyOsc.cpp:45 +msgid "X Channel" +msgstr "" + +#: src/gui/xyOsc.cpp:51 +msgid "Invert##X" +msgstr "" + +#: src/gui/xyOsc.cpp:52 +msgid "Y Channel" +msgstr "" + +#: src/gui/xyOsc.cpp:58 +msgid "Invert##Y" +msgstr "" + +#: src/gui/xyOsc.cpp:59 src/gui/sampleEdit.cpp:1353 +msgid "Zoom" +msgstr "" + +#: src/gui/xyOsc.cpp:71 +msgid "Decay Time (ms)" +msgstr "" + +#: src/gui/xyOsc.cpp:74 +msgid "Intensity" +msgstr "" + +#: src/gui/xyOsc.cpp:77 +msgid "Line Thickness" +msgstr "" + +#: src/gui/xyOsc.cpp:213 +msgid "(-Infinity)dB,(-Infinity)dB" +msgstr "" + +#: src/gui/xyOsc.cpp:215 +#, c-format +msgid "(-Infinity)dB,%.1fdB" +msgstr "" + +#: src/gui/xyOsc.cpp:217 +#, c-format +msgid "%.1fdB,(-Infinity)dB" +msgstr "" + +#: src/gui/xyOsc.cpp:219 +#, c-format +msgid "%.1fdB,%.1fdB" +msgstr "" + +#: src/gui/sysConf.cpp:49 src/gui/sysConf.cpp:121 src/gui/sysConf.cpp:486 +#: src/gui/sysConf.cpp:604 src/gui/sysConf.cpp:647 src/gui/sysConf.cpp:684 +#: src/gui/sysConf.cpp:843 src/gui/sysConf.cpp:1098 src/gui/sysConf.cpp:1181 +#: src/gui/sysConf.cpp:1220 src/gui/sysConf.cpp:1294 src/gui/sysConf.cpp:1380 +#: src/gui/sysConf.cpp:1444 src/gui/sysConf.cpp:1482 src/gui/sysConf.cpp:1572 +#: src/gui/sysConf.cpp:1668 src/gui/sysConf.cpp:1716 src/gui/sysConf.cpp:1757 +#: src/gui/sysConf.cpp:1810 src/gui/sysConf.cpp:2284 src/gui/sysConf.cpp:2307 +msgid "Clock rate:" +msgstr "" + +#: src/gui/sysConf.cpp:73 src/gui/sysConf.cpp:152 src/gui/sysConf.cpp:911 +#: src/gui/sysConf.cpp:1459 src/gui/sysConf.cpp:1783 +msgid "Chip type:" +msgstr "" + +#: src/gui/sysConf.cpp:75 +msgid "YM3438 (9-bit DAC)" +msgstr "" + +#: src/gui/sysConf.cpp:79 +msgid "YM2612 (9-bit DAC with distortion)" +msgstr "" + +#: src/gui/sysConf.cpp:83 +msgid "YMF276 (external DAC)" +msgstr "" + +#: src/gui/sysConf.cpp:90 src/gui/sysConf.cpp:804 src/gui/sysConf.cpp:1350 +#: src/gui/sysConf.cpp:1420 +msgid "Disable ExtCh FM macros (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:93 src/gui/sysConf.cpp:807 src/gui/sysConf.cpp:1353 +#: src/gui/sysConf.cpp:1423 +msgid "Ins change in ExtCh operator 2-4 affects FB (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:99 +msgid "Modified sine wave (joke)" +msgstr "" + +#: src/gui/sysConf.cpp:123 src/gui/sysConf.cpp:1296 src/gui/sysConf.cpp:1718 +#: src/gui/sysConf.cpp:2286 +msgid "3.58MHz (NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:127 +msgid "3.55MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:131 +msgid "4MHz (BBC Micro)" +msgstr "" + +#: src/gui/sysConf.cpp:135 +msgid "1.79MHz (Half NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:139 +msgid "3MHz (Exed Exes)" +msgstr "" + +#: src/gui/sysConf.cpp:143 +msgid "2MHz (Sega System 1)" +msgstr "" + +#: src/gui/sysConf.cpp:147 +msgid "447KHz (TI-99/4A)" +msgstr "" + +#: src/gui/sysConf.cpp:154 +msgid "Sega VDP/Master System" +msgstr "" + +#: src/gui/sysConf.cpp:162 +msgid "TI SN76489 with Atari-like short noise" +msgstr "" + +#: src/gui/sysConf.cpp:166 +msgid "Game Gear" +msgstr "" + +#: src/gui/sysConf.cpp:170 +msgid "TI SN76489A" +msgstr "" + +#: src/gui/sysConf.cpp:174 +msgid "TI SN76496" +msgstr "" + +#: src/gui/sysConf.cpp:178 +msgid "NCR 8496" +msgstr "" + +#: src/gui/sysConf.cpp:182 +msgid "Tandy PSSJ 3-voice sound" +msgstr "" + +#: src/gui/sysConf.cpp:186 +msgid "TI SN94624" +msgstr "" + +#: src/gui/sysConf.cpp:190 +msgid "TI SN76494" +msgstr "" + +#: src/gui/sysConf.cpp:196 +msgid "Disable noise period change phase reset" +msgstr "" + +#: src/gui/sysConf.cpp:200 src/gui/sysConf.cpp:2190 +msgid "Disable easy period to note mapping on upper octaves" +msgstr "" + +#: src/gui/sysConf.cpp:219 src/gui/sysConf.cpp:583 +msgid "Pseudo-PAL" +msgstr "" + +#: src/gui/sysConf.cpp:222 src/gui/sysConf.cpp:342 +msgid "Disable anti-click" +msgstr "" + +#: src/gui/sysConf.cpp:225 src/gui/sysConf.cpp:345 +msgid "Chip revision:" +msgstr "" + +#: src/gui/sysConf.cpp:227 +msgid "HuC6280 (original)" +msgstr "" + +#: src/gui/sysConf.cpp:231 +msgid "HuC6280A (SuperGrafx)" +msgstr "" + +#: src/gui/sysConf.cpp:257 +msgid "CPU rate:" +msgstr "" + +#: src/gui/sysConf.cpp:259 +msgid "6.18MHz (NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:263 +msgid "5.95MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:268 +msgid "Sample memory:" +msgstr "" + +#: src/gui/sysConf.cpp:270 +msgid "8K (rev A/B/E)" +msgstr "" + +#: src/gui/sysConf.cpp:274 +msgid "64K (rev D/F)" +msgstr "" + +#: src/gui/sysConf.cpp:279 +msgid "DAC resolution:" +msgstr "" + +#: src/gui/sysConf.cpp:281 +msgid "16-bit (rev A/B/D/F)" +msgstr "" + +#: src/gui/sysConf.cpp:285 +msgid "8-bit + TDM (rev C/E)" +msgstr "" + +#: src/gui/sysConf.cpp:290 src/gui/sysConf.cpp:1931 +msgid "Enable echo" +msgstr "" + +#: src/gui/sysConf.cpp:293 +msgid "Swap echo channels" +msgstr "" + +#: src/gui/sysConf.cpp:296 src/gui/sysConf.cpp:1151 +msgid "Echo delay:" +msgstr "" + +#: src/gui/sysConf.cpp:302 +msgid "Echo resolution:" +msgstr "" + +#: src/gui/sysConf.cpp:308 src/gui/sysConf.cpp:1159 +msgid "Echo feedback:" +msgstr "" + +#: src/gui/sysConf.cpp:314 src/gui/sysConf.cpp:1967 +msgid "Echo volume:" +msgstr "" + +#: src/gui/sysConf.cpp:347 +msgid "Original (DMG)" +msgstr "" + +#: src/gui/sysConf.cpp:351 +msgid "Game Boy Color (rev C)" +msgstr "" + +#: src/gui/sysConf.cpp:355 +msgid "Game Boy Color (rev E)" +msgstr "" + +#: src/gui/sysConf.cpp:359 +msgid "Game Boy Advance" +msgstr "" + +#: src/gui/sysConf.cpp:364 +msgid "Wave channel orientation:" +msgstr "" + +#: src/gui/sysConf.cpp:367 src/gui/compatFlags.cpp:298 src/gui/gui.cpp:6067 +#: src/gui/insEdit.cpp:217 src/gui/insEdit.cpp:231 +msgid "Normal" +msgstr "" + +#: src/gui/sysConf.cpp:371 +msgid "Inverted" +msgstr "" + +#: src/gui/sysConf.cpp:378 +msgid "Exact data (inverted)" +msgstr "" + +#: src/gui/sysConf.cpp:382 +msgid "Exact output (normal)" +msgstr "" + +#: src/gui/sysConf.cpp:388 +msgid "" +"Pretty please one more compat flag when I use arpeggio and my sound length" +msgstr "" + +#: src/gui/sysConf.cpp:405 src/gui/sysConf.cpp:438 +msgid "DAC bit depth (reduces output rate):" +msgstr "" + +#: src/gui/sysConf.cpp:426 src/gui/sysConf.cpp:1268 src/gui/sysConf.cpp:1919 +msgid "Volume scale:" +msgstr "" + +#: src/gui/sysConf.cpp:432 +msgid "Mix buffers (allows longer echo delay):" +msgstr "" + +#: src/gui/sysConf.cpp:444 +msgid "Channel limit:" +msgstr "" + +#: src/gui/sysConf.cpp:450 +msgid "Sample rate:" +msgstr "" + +#: src/gui/sysConf.cpp:460 +#, c-format +msgid "Actual sample rate: %d Hz" +msgstr "" + +#: src/gui/sysConf.cpp:462 +#, c-format +msgid "Max mixer CPU usage: %.0f%%" +msgstr "" + +#: src/gui/sysConf.cpp:488 +msgid "NTSC (3.58MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:492 src/gui/sysConf.cpp:557 +msgid "PAL (3.55MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:496 +msgid "Arcade (4MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:500 +msgid "Half NTSC (1.79MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:506 +msgid "Patch set:" +msgstr "" + +#: src/gui/sysConf.cpp:528 +msgid "Ignore top/hi-hat frequency changes" +msgstr "" + +#: src/gui/sysConf.cpp:531 +msgid "Apply fixed frequency to all drums at once" +msgstr "" + +#: src/gui/sysConf.cpp:553 +msgid "NTSC/X16 (3.58MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:561 +msgid "X1/X68000 (4MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:567 src/gui/sysConf.cpp:587 +msgid "Broken pitch macro/slides (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:607 src/gui/sysConf.cpp:650 src/gui/sysConf.cpp:1222 +#: src/gui/sysConf.cpp:2310 +msgid "NTSC (1.79MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:611 src/gui/sysConf.cpp:654 src/gui/sysConf.cpp:1226 +msgid "PAL (1.67MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:615 src/gui/sysConf.cpp:658 src/gui/sysConf.cpp:1230 +msgid "Dendy (1.77MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:621 +msgid "DPCM channel mode:" +msgstr "" + +#: src/gui/sysConf.cpp:624 +msgid "DPCM (muffled samples; low CPU usage)" +msgstr "" + +#: src/gui/sysConf.cpp:628 +msgid "PCM (crisp samples; high CPU usage)" +msgstr "" + +#: src/gui/sysConf.cpp:687 +msgid "NTSC (1.02MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:691 +msgid "PAL (0.99MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:695 +msgid "SSI 2001 (0.89MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:701 src/gui/sysConf.cpp:2320 +msgid "Global parameter priority:" +msgstr "" + +#: src/gui/sysConf.cpp:704 src/gui/sysConf.cpp:2323 +msgid "Left to right" +msgstr "" + +#: src/gui/sysConf.cpp:708 src/gui/sysConf.cpp:2327 +msgid "Last used channel" +msgstr "" + +#: src/gui/sysConf.cpp:714 +msgid "Hard reset envelope:" +msgstr "" + +#: src/gui/sysConf.cpp:716 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:1920 +#: src/gui/insEdit.cpp:6955 src/gui/insEdit.cpp:7481 +msgid "Attack" +msgstr "" + +#: src/gui/sysConf.cpp:721 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:1960 +#: src/gui/insEdit.cpp:6956 src/gui/insEdit.cpp:7482 +msgid "Decay" +msgstr "" + +#: src/gui/sysConf.cpp:726 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:1929 +#: src/gui/insEdit.cpp:6957 src/gui/insEdit.cpp:7483 +msgid "Sustain" +msgstr "" + +#: src/gui/sysConf.cpp:731 src/gui/settings.cpp:3987 src/gui/insEdit.cpp:50 +#: src/gui/insEdit.cpp:604 src/gui/insEdit.cpp:1983 src/gui/insEdit.cpp:6958 +#: src/gui/insEdit.cpp:7484 +msgid "Release" +msgstr "" + +#: src/gui/sysConf.cpp:737 +msgid "Envelope reset time:" +msgstr "" + +#: src/gui/sysConf.cpp:747 +msgid "" +"- 0 disables envelope reset. not recommended!\n" +"- 1 may trigger SID envelope bugs.\n" +"- values that are too high may result in notes being skipped." +msgstr "" + +#: src/gui/sysConf.cpp:749 +msgid "Disable 1Exy env update (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:753 +msgid "Relative duty and cutoff macros are coarse (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:757 +msgid "Cutoff macro race conditions (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:793 +msgid "8MHz (Neo Geo MVS)" +msgstr "" + +#: src/gui/sysConf.cpp:797 +msgid "8.06MHz (Neo Geo AES)" +msgstr "" + +#: src/gui/sysConf.cpp:812 src/gui/sysConf.cpp:1337 src/gui/sysConf.cpp:1407 +msgid "SSG Volume" +msgstr "" + +#: src/gui/sysConf.cpp:818 src/gui/sysConf.cpp:1413 +msgid "FM/ADPCM Volume" +msgstr "" + +#: src/gui/sysConf.cpp:845 +msgid "1.79MHz (ZX Spectrum NTSC/MSX)" +msgstr "" + +#: src/gui/sysConf.cpp:849 +msgid "1.77MHz (ZX Spectrum PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:853 +msgid "0.83MHz (Pre-divided Sunsoft 5B on PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:857 +msgid "0.89MHz (Pre-divided Sunsoft 5B)" +msgstr "" + +#: src/gui/sysConf.cpp:861 +msgid "1MHz (Amstrad CPC)" +msgstr "" + +#: src/gui/sysConf.cpp:865 +msgid "1.10MHz (Gamate/VIC-20 PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:869 +msgid "1.25MHz (Mag Max)" +msgstr "" + +#: src/gui/sysConf.cpp:873 +msgid "1.5MHz (Vectrex)" +msgstr "" + +#: src/gui/sysConf.cpp:877 +msgid "1.536MHz (Kyugo)" +msgstr "" + +#: src/gui/sysConf.cpp:881 +msgid "1.67MHz (?)" +msgstr "" + +#: src/gui/sysConf.cpp:885 +msgid "1.75MHz (ZX Spectrum 48K)" +msgstr "" + +#: src/gui/sysConf.cpp:889 +msgid "1.99MHz (PC-88)" +msgstr "" + +#: src/gui/sysConf.cpp:893 +msgid "2MHz (Atari ST/Sharp X1)" +msgstr "" + +#: src/gui/sysConf.cpp:897 +msgid "2^21Hz (Game Boy)" +msgstr "" + +#: src/gui/sysConf.cpp:901 +msgid "3.58MHz (Darky)" +msgstr "" + +#: src/gui/sysConf.cpp:905 +msgid "3.6MHz (Darky)" +msgstr "" + +#: src/gui/sysConf.cpp:917 +msgid "YM2149(F)" +msgstr "" + +#: src/gui/sysConf.cpp:921 +msgid "Sunsoft 5B" +msgstr "" + +#: src/gui/sysConf.cpp:925 +msgid "AY-3-8914" +msgstr "" + +#: src/gui/sysConf.cpp:931 +msgid "note: AY-3-8914 is not supported by the VGM format!" +msgstr "" + +#: src/gui/sysConf.cpp:935 +msgid "Stereo##_AY_STEREO" +msgstr "" + +#: src/gui/sysConf.cpp:940 +msgid "Separation" +msgstr "" + +#: src/gui/sysConf.cpp:949 +msgid "Half Clock divider##_AY_CLKSEL" +msgstr "" + +#: src/gui/sysConf.cpp:971 +msgid "SAM Coupé (8MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:975 +msgid "NTSC (7.15MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:979 +msgid "PAL (7.09MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:999 +msgid "Stereo separation:" +msgstr "" + +#: src/gui/sysConf.cpp:1006 src/gui/sysConf.cpp:2412 +msgid "Model:" +msgstr "" + +#: src/gui/sysConf.cpp:1008 +msgid "Amiga 500 (OCS)" +msgstr "" + +#: src/gui/sysConf.cpp:1012 +msgid "Amiga 1200 (AGA)" +msgstr "" + +#: src/gui/sysConf.cpp:1018 +msgid "Chip memory:" +msgstr "" + +#: src/gui/sysConf.cpp:1020 +msgid "2MB (ECS/AGA max)" +msgstr "" + +#: src/gui/sysConf.cpp:1030 +msgid "512KB (OCS max)" +msgstr "" + +#: src/gui/sysConf.cpp:1043 src/gui/sysConf.cpp:1081 src/gui/sysConf.cpp:2395 +#: src/gui/sysConf.cpp:2449 +msgid "PAL" +msgstr "" + +#: src/gui/sysConf.cpp:1046 +msgid "Bypass frequency limits" +msgstr "" + +#: src/gui/sysConf.cpp:1065 +msgid "Mixing mode:" +msgstr "" + +#: src/gui/sysConf.cpp:1067 src/gui/settings.cpp:3724 +msgid "Mono" +msgstr "" + +#: src/gui/sysConf.cpp:1071 +msgid "Mono (no distortion)" +msgstr "" + +#: src/gui/sysConf.cpp:1075 src/gui/sysConf.cpp:1197 src/gui/sysConf.cpp:1864 +#: src/gui/sysConf.cpp:2204 +msgid "Stereo" +msgstr "" + +#: src/gui/sysConf.cpp:1100 +msgid "1.19MHz (PC)" +msgstr "" + +#: src/gui/sysConf.cpp:1104 +msgid "1.99MHz (PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1108 +msgid "2.46MHz (PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1114 +msgid "Speaker type:" +msgstr "" + +#: src/gui/sysConf.cpp:1116 +msgid "Unfiltered" +msgstr "" + +#: src/gui/sysConf.cpp:1120 +msgid "Cone" +msgstr "" + +#: src/gui/sysConf.cpp:1124 +msgid "Piezo" +msgstr "" + +#: src/gui/sysConf.cpp:1128 +msgid "Use system beeper (Linux only!)" +msgstr "" + +#: src/gui/sysConf.cpp:1134 +msgid "Reset phase on frequency change" +msgstr "" + +#: src/gui/sysConf.cpp:1183 +msgid "16MHz (Seta 1)" +msgstr "" + +#: src/gui/sysConf.cpp:1187 +msgid "16.67MHz (Seta 2)" +msgstr "" + +#: src/gui/sysConf.cpp:1191 src/gui/sysConf.cpp:1759 +msgid "14.32MHz (NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:1201 +msgid "Bankswitched (Seta 2)" +msgstr "" + +#: src/gui/sysConf.cpp:1235 src/gui/sysConf.cpp:1261 +msgid "Initial channel limit:" +msgstr "" + +#: src/gui/sysConf.cpp:1241 src/gui/sysConf.cpp:2398 +msgid "Disable hissing" +msgstr "" + +#: src/gui/sysConf.cpp:1244 +msgid "Scale frequency to wave length" +msgstr "" + +#: src/gui/sysConf.cpp:1300 src/gui/sysConf.cpp:1722 +msgid "3.54MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:1304 src/gui/sysConf.cpp:1726 src/gui/sysConf.cpp:2290 +msgid "4MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1308 src/gui/sysConf.cpp:1730 +msgid "3MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1312 src/gui/sysConf.cpp:1734 +msgid "3.9936MHz (PC-88/PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1316 +msgid "1.5MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1321 src/gui/sysConf.cpp:1391 src/gui/sysConf.cpp:1639 +#: src/gui/sysConf.cpp:1852 +msgid "Output rate:" +msgstr "" + +#: src/gui/sysConf.cpp:1323 src/gui/sysConf.cpp:1397 +msgid "FM: clock / 72, SSG: clock / 16" +msgstr "" + +#: src/gui/sysConf.cpp:1327 +msgid "FM: clock / 36, SSG: clock / 8" +msgstr "" + +#: src/gui/sysConf.cpp:1331 +msgid "FM: clock / 24, SSG: clock / 4" +msgstr "" + +#: src/gui/sysConf.cpp:1343 +msgid "FM Volume" +msgstr "" + +#: src/gui/sysConf.cpp:1382 +msgid "8MHz (Arcade)" +msgstr "" + +#: src/gui/sysConf.cpp:1386 +msgid "7.987MHz (PC-88/PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1393 +msgid "FM: clock / 144, SSG: clock / 32" +msgstr "" + +#: src/gui/sysConf.cpp:1401 +msgid "FM: clock / 48, SSG: clock / 8" +msgstr "" + +#: src/gui/sysConf.cpp:1446 +msgid "8MHz (FM Towns)" +msgstr "" + +#: src/gui/sysConf.cpp:1450 +msgid "10MHz (Sega System 18)" +msgstr "" + +#: src/gui/sysConf.cpp:1454 +msgid "12.5MHz (Sega CD/System 32)" +msgstr "" + +#: src/gui/sysConf.cpp:1461 +msgid "RF5C68 (10-bit output)" +msgstr "" + +#: src/gui/sysConf.cpp:1465 +msgid "RF5C164 (16-bit output)" +msgstr "" + +#: src/gui/sysConf.cpp:1520 +msgid "Sample rate table:" +msgstr "" + +#: src/gui/sysConf.cpp:1524 +msgid "divider \\ clock" +msgstr "" + +#: src/gui/sysConf.cpp:1526 +msgid "full" +msgstr "" + +#: src/gui/sysConf.cpp:1528 +msgid "half" +msgstr "" + +#: src/gui/sysConf.cpp:1641 +msgid "clock / 132" +msgstr "" + +#: src/gui/sysConf.cpp:1645 +msgid "clock / 165" +msgstr "" + +#: src/gui/sysConf.cpp:1651 +msgid "Bankswitched (NMK112)" +msgstr "" + +#: src/gui/sysConf.cpp:1670 +msgid "1.79MHz (NTSC/MSX)" +msgstr "" + +#: src/gui/sysConf.cpp:1674 +msgid "1.77MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:1678 +msgid "1.5MHz (Arcade)" +msgstr "" + +#: src/gui/sysConf.cpp:1682 +msgid "2MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1697 +msgid "Consistent frequency across all duties" +msgstr "" + +#: src/gui/sysConf.cpp:1704 +msgid "note: only works for an initial LFSR value of 0!" +msgstr "" + +#: src/gui/sysConf.cpp:1738 +msgid "3.5MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1763 +msgid "14.19MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:1767 +msgid "14MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1771 +msgid "16MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1775 +msgid "15MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1779 +msgid "33.8688MHz (OPL3-L)" +msgstr "" + +#: src/gui/sysConf.cpp:1784 +msgid "OPL3 (YMF262)" +msgstr "" + +#: src/gui/sysConf.cpp:1788 +msgid "OPL3-L (YMF289B)" +msgstr "" + +#: src/gui/sysConf.cpp:1794 +msgid "Compatible panning (0800)" +msgstr "" + +#: src/gui/sysConf.cpp:1858 +msgid "Output bit depth:" +msgstr "" + +#: src/gui/sysConf.cpp:1868 +msgid "Interpolation:" +msgstr "" + +#: src/gui/sysConf.cpp:1874 src/gui/waveEdit.cpp:38 +msgid "Linear" +msgstr "" + +#: src/gui/sysConf.cpp:1878 src/gui/waveEdit.cpp:40 +msgid "Cubic" +msgstr "" + +#: src/gui/sysConf.cpp:1882 +msgid "Sinc" +msgstr "" + +#: src/gui/sysConf.cpp:1920 +msgid "Left##VolScaleL" +msgstr "" + +#: src/gui/sysConf.cpp:1925 +msgid "Right##VolScaleL" +msgstr "" + +#: src/gui/sysConf.cpp:1935 +msgid "Initial echo state:" +msgstr "" + +#: src/gui/sysConf.cpp:1955 +msgid "Delay##EchoDelay" +msgstr "" + +#: src/gui/sysConf.cpp:1961 +msgid "Feedback##EchoFeedback" +msgstr "" + +#: src/gui/sysConf.cpp:1968 +msgid "Left##EchoVolL" +msgstr "" + +#: src/gui/sysConf.cpp:1973 +msgid "Right##EchoVolL" +msgstr "" + +#: src/gui/sysConf.cpp:1979 +msgid "Echo filter:" +msgstr "" + +#: src/gui/sysConf.cpp:1989 +msgid "Hex##SNESFHex" +msgstr "" + +#: src/gui/sysConf.cpp:1989 +msgid "Dec##SNESFHex" +msgstr "" + +#: src/gui/sysConf.cpp:2031 +#, c-format +msgid "sum: %d" +msgstr "" + +#: src/gui/sysConf.cpp:2086 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:63 +#: src/gui/insEdit.cpp:75 +msgid "Detune" +msgstr "" + +#: src/gui/sysConf.cpp:2092 +msgid "Capacitor values (nF):" +msgstr "" + +#: src/gui/sysConf.cpp:2102 +msgid "Initial part volume (channel 1-4):" +msgstr "" + +#: src/gui/sysConf.cpp:2112 +msgid "Initial part volume (channel 5-8):" +msgstr "" + +#: src/gui/sysConf.cpp:2122 +msgid "Envelope mode (channel 1-4):" +msgstr "" + +#: src/gui/sysConf.cpp:2124 +msgid "Capacitor (attack/decay)##EM00" +msgstr "" + +#: src/gui/sysConf.cpp:2128 +msgid "External (volume macro)##EM01" +msgstr "" + +#: src/gui/sysConf.cpp:2134 +msgid "Envelope mode (channel 5-8):" +msgstr "" + +#: src/gui/sysConf.cpp:2136 +msgid "Capacitor (attack/decay)##EM10" +msgstr "" + +#: src/gui/sysConf.cpp:2140 +msgid "External (volume macro)##EM11" +msgstr "" + +#: src/gui/sysConf.cpp:2146 +msgid "Global vibrato:" +msgstr "" + +#: src/gui/sysConf.cpp:2153 +msgid "Depth" +msgstr "" + +#: src/gui/sysConf.cpp:2219 src/gui/sysConf.cpp:2373 +msgid "Waveform storage mode:" +msgstr "" + +#: src/gui/sysConf.cpp:2221 +msgid "RAM" +msgstr "" + +#: src/gui/sysConf.cpp:2225 +msgid "ROM (up to 8 waves)" +msgstr "" + +#: src/gui/sysConf.cpp:2241 +msgid "Compatible noise frequencies" +msgstr "" + +#: src/gui/sysConf.cpp:2256 +msgid "Legacy slides and pitch (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:2314 +msgid "PAL (1.77MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:2344 +msgid "Banking style:" +msgstr "" + +#: src/gui/sysConf.cpp:2346 +msgid "Namco System 2 (2MB)" +msgstr "" + +#: src/gui/sysConf.cpp:2351 +msgid "Namco System 21 (4MB)" +msgstr "" + +#: src/gui/sysConf.cpp:2356 +msgid "Raw (16MB; no VGM export!)" +msgstr "" + +#: src/gui/sysConf.cpp:2375 +msgid "Dynamic (unconfirmed)" +msgstr "" + +#: src/gui/sysConf.cpp:2379 +msgid "Static (up to 5 waves)" +msgstr "" + +#: src/gui/sysConf.cpp:2414 +msgid "DS (4MB RAM)" +msgstr "" + +#: src/gui/sysConf.cpp:2418 +msgid "DSi (16MB RAM)" +msgstr "" + +#: src/gui/sysConf.cpp:2444 src/gui/settings.cpp:727 +msgid "nothing to configure" +msgstr "" + +#: src/gui/sysConf.cpp:2467 +msgid "Custom clock rate" +msgstr "" + +#: src/gui/volMeter.cpp:36 src/gui/settings.cpp:3969 src/gui/guiConst.cpp:596 +msgid "Volume Meter" +msgstr "" + +#: src/gui/userPresets.cpp:325 +msgid "User Systems" +msgstr "" + +#: src/gui/userPresets.cpp:337 +msgid "Error! User category does not exist!" +msgstr "" + +#: src/gui/userPresets.cpp:346 src/gui/newSong.cpp:181 +msgid "Systems" +msgstr "" + +#: src/gui/userPresets.cpp:349 +msgid "New Preset" +msgstr "" + +#: src/gui/userPresets.cpp:361 +msgid "select a preset" +msgstr "" + +#: src/gui/userPresets.cpp:374 +msgid "Remove##UPresetRemove" +msgstr "" + +#: src/gui/userPresets.cpp:439 src/gui/settings.cpp:1135 +msgid "Configure" +msgstr "" + +#: src/gui/userPresets.cpp:470 +msgid "Advanced" +msgstr "" + +#: src/gui/userPresets.cpp:476 +msgid "" +"insert additional settings in `option=value` format.\n" +"available options:\n" +"- tickRate" +msgstr "" + +#: src/gui/userPresets.cpp:509 +msgid "Save and Close" +msgstr "" + +#: src/gui/userPresets.cpp:515 src/gui/settings.cpp:1238 +#: src/gui/settings.cpp:2161 src/gui/settings.cpp:2553 +#: src/gui/settings.cpp:3796 +msgid "Import" +msgstr "" + +#: src/gui/userPresets.cpp:519 +msgid "Import (replace)" +msgstr "" + +#: src/gui/effectList.cpp:14 src/gui/guiConst.cpp:606 +msgid "Effect List" +msgstr "" + +#: src/gui/effectList.cpp:18 +#, c-format +msgid "Chip at cursor: %s" +msgstr "" + +#: src/gui/effectList.cpp:21 src/gui/settings.cpp:6674 +msgid "Search" +msgstr "" + +#: src/gui/effectList.cpp:25 +msgid "Effect types to show:" +msgstr "" + +#: src/gui/effectList.cpp:47 +msgid "Description" +msgstr "" + +#: src/gui/subSongs.cpp:22 src/gui/subSongs.cpp:32 +#, c-format +msgid "%d. " +msgstr "" + +#: src/gui/subSongs.cpp:73 src/gui/subSongs.cpp:93 +msgid "too many subsongs!" +msgstr "" + +#: src/gui/subSongs.cpp:114 +msgid "this is the only subsong!" +msgstr "" + +#: src/gui/subSongs.cpp:116 +msgid "are you sure you want to remove this subsong?" +msgstr "" + +#: src/gui/spoiler.cpp:30 +msgid "Spoiler" +msgstr "" + +#: src/gui/spoiler.cpp:32 +msgid "SPOILER" +msgstr "" + +#: src/gui/settings.cpp:104 src/gui/settings.cpp:114 src/gui/settings.cpp:124 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:105 src/gui/settings.cpp:115 src/gui/settings.cpp:125 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:168 +msgid "ASAP (C++ port)" +msgstr "" + +#: src/gui/settings.cpp:191 +msgid "ESFMu (fast)" +msgstr "" + +#: src/gui/settings.cpp:205 +msgid "Lower" +msgstr "" + +#: src/gui/settings.cpp:207 +msgid "Medium" +msgstr "" + +#: src/gui/settings.cpp:209 +msgid "Ultra" +msgstr "" + +#: src/gui/settings.cpp:210 +msgid "Ultimate" +msgstr "" + +#: src/gui/settings.cpp:214 +msgid "evdev SND_TONE" +msgstr "" + +#: src/gui/settings.cpp:215 +msgid "KIOCSOUND on /dev/tty1" +msgstr "" + +#: src/gui/settings.cpp:216 +msgid "/dev/port" +msgstr "" + +#: src/gui/settings.cpp:217 +msgid "KIOCSOUND on standard output" +msgstr "" + +#: src/gui/settings.cpp:218 +msgid "outb()" +msgstr "" + +#: src/gui/settings.cpp:222 src/gui/settings.cpp:232 +msgid "Disabled/custom" +msgstr "" + +#: src/gui/settings.cpp:223 +msgid "Two octaves (0 is C-4, F is D#5)" +msgstr "" + +#: src/gui/settings.cpp:224 +msgid "Raw (note number is value)" +msgstr "" + +#: src/gui/settings.cpp:225 +msgid "Two octaves alternate (lower keys are 0-9, upper keys are A-F)" +msgstr "" + +#: src/gui/settings.cpp:226 src/gui/settings.cpp:233 +msgid "Use dual control change (one for each nibble)" +msgstr "" + +#: src/gui/settings.cpp:227 src/gui/settings.cpp:234 +msgid "Use 14-bit control change" +msgstr "" + +#: src/gui/settings.cpp:228 src/gui/settings.cpp:235 +msgid "Use single control change (imprecise)" +msgstr "" + +#: src/gui/settings.cpp:239 +msgid "--select--" +msgstr "" + +#: src/gui/settings.cpp:240 src/gui/settings.cpp:241 src/gui/settings.cpp:242 +#: src/gui/settings.cpp:243 src/gui/settings.cpp:244 src/gui/settings.cpp:245 +#: src/gui/settings.cpp:246 +msgid "???" +msgstr "" + +#: src/gui/settings.cpp:247 +msgid "Note Off" +msgstr "" + +#: src/gui/settings.cpp:248 +msgid "Note On" +msgstr "" + +#: src/gui/settings.cpp:249 +msgid "Aftertouch" +msgstr "" + +#: src/gui/settings.cpp:250 src/gui/insEdit.cpp:7187 src/gui/insEdit.cpp:7217 +#: src/gui/insEdit.cpp:7382 src/gui/insEdit.cpp:7403 src/gui/insEdit.cpp:7415 +#: src/gui/insEdit.cpp:7430 +msgid "Control" +msgstr "" + +#: src/gui/settings.cpp:251 src/gui/settings.cpp:573 src/gui/settings.cpp:3177 +msgid "Program" +msgstr "" + +#: src/gui/settings.cpp:252 +msgid "ChanPressure" +msgstr "" + +#: src/gui/settings.cpp:253 +msgid "Pitch Bend" +msgstr "" + +#: src/gui/settings.cpp:254 +msgid "SysEx" +msgstr "" + +#: src/gui/settings.cpp:258 src/gui/settings.cpp:1713 src/gui/settings.cpp:1723 +#: src/gui/settings.cpp:1743 src/gui/settings.cpp:1749 +#, c-format +msgid "Any" +msgstr "" + +#: src/gui/settings.cpp:262 src/gui/settings.cpp:3363 src/gui/settings.cpp:3928 +#: src/gui/settings.cpp:4121 +msgid "Instrument" +msgstr "" + +#: src/gui/settings.cpp:264 +msgid "Effect 1 type" +msgstr "" + +#: src/gui/settings.cpp:265 +msgid "Effect 1 value" +msgstr "" + +#: src/gui/settings.cpp:266 +msgid "Effect 2 type" +msgstr "" + +#: src/gui/settings.cpp:267 +msgid "Effect 2 value" +msgstr "" + +#: src/gui/settings.cpp:268 +msgid "Effect 3 type" +msgstr "" + +#: src/gui/settings.cpp:269 +msgid "Effect 3 value" +msgstr "" + +#: src/gui/settings.cpp:270 +msgid "Effect 4 type" +msgstr "" + +#: src/gui/settings.cpp:271 +msgid "Effect 4 value" +msgstr "" + +#: src/gui/settings.cpp:272 +msgid "Effect 5 type" +msgstr "" + +#: src/gui/settings.cpp:273 +msgid "Effect 5 value" +msgstr "" + +#: src/gui/settings.cpp:274 +msgid "Effect 6 type" +msgstr "" + +#: src/gui/settings.cpp:275 +msgid "Effect 6 value" +msgstr "" + +#: src/gui/settings.cpp:276 +msgid "Effect 7 type" +msgstr "" + +#: src/gui/settings.cpp:277 +msgid "Effect 7 value" +msgstr "" + +#: src/gui/settings.cpp:278 +msgid "Effect 8 type" +msgstr "" + +#: src/gui/settings.cpp:279 +msgid "Effect 8 value" +msgstr "" + +#: src/gui/settings.cpp:315 +msgid "Press key..." +msgstr "" + +#: src/gui/settings.cpp:564 +msgid "Do you want to save your settings?" +msgstr "" + +#: src/gui/settings.cpp:571 +msgid "General" +msgstr "" + +#: src/gui/settings.cpp:588 +msgid "Language" +msgstr "" + +#: src/gui/settings.cpp:606 +msgid "Render backend" +msgstr "" + +#: src/gui/settings.cpp:661 src/gui/settings.cpp:680 src/gui/settings.cpp:1312 +msgid "you may need to restart Furnace for this setting to take effect." +msgstr "" + +#: src/gui/settings.cpp:664 +msgid "Advanced render backend settings" +msgstr "" + +#: src/gui/settings.cpp:666 +msgid "Render driver" +msgstr "" + +#: src/gui/settings.cpp:666 src/gui/settings.cpp:667 src/gui/settings.cpp:1298 +#: src/gui/settings.cpp:1299 src/gui/piano.cpp:108 +msgid "Automatic" +msgstr "" + +#: src/gui/settings.cpp:683 +msgid "" +"beware: changing these settings may render Furnace unusable! do so at your " +"own risk.\n" +"start Furnace with -safemode if you mess something up." +msgstr "" + +#: src/gui/settings.cpp:684 +msgid "Red bits" +msgstr "" + +#: src/gui/settings.cpp:689 +msgid "Green bits" +msgstr "" + +#: src/gui/settings.cpp:694 +msgid "Blue bits" +msgstr "" + +#: src/gui/settings.cpp:699 +msgid "Alpha bits" +msgstr "" + +#: src/gui/settings.cpp:704 +msgid "Color depth" +msgstr "" + +#: src/gui/settings.cpp:709 +msgid "Stencil buffer size" +msgstr "" + +#: src/gui/settings.cpp:714 src/gui/settings.cpp:1385 +msgid "Buffer size" +msgstr "" + +#: src/gui/settings.cpp:720 +msgid "Double buffer" +msgstr "" + +#: src/gui/settings.cpp:725 +msgid "" +"the following values are common (in red, green, blue, alpha order):\n" +"- 24 bits: 8, 8, 8, 0\n" +"- 16 bits: 5, 6, 5, 0\n" +"- 32 bits (with alpha): 8, 8, 8, 8\n" +"- 30 bits (deep): 10, 10, 10, 0" +msgstr "" + +#: src/gui/settings.cpp:732 +#, c-format +msgid "" +"current backend: %s\n" +"%s\n" +"%s\n" +"%s" +msgstr "" + +#: src/gui/settings.cpp:735 +msgid "VSync" +msgstr "" + +#: src/gui/settings.cpp:743 +msgid "Frame rate limit" +msgstr "" + +#: src/gui/settings.cpp:743 +msgid "Unlimited" +msgstr "" + +#: src/gui/settings.cpp:749 +msgid "only applies when VSync is disabled." +msgstr "" + +#: src/gui/settings.cpp:753 +msgid "Display render time" +msgstr "" + +#: src/gui/settings.cpp:760 +msgid "Late render clear" +msgstr "" + +#: src/gui/settings.cpp:765 +msgid "" +"calls rend->clear() after rend->present(). might reduce UI latency by one " +"frame in some drivers." +msgstr "" + +#: src/gui/settings.cpp:770 +msgid "Power-saving mode" +msgstr "" + +#: src/gui/settings.cpp:775 +msgid "" +"saves power by lowering the frame rate to 2fps when idle.\n" +"may cause issues under Mesa drivers!" +msgstr "" + +#: src/gui/settings.cpp:780 +msgid "Disable threaded input (restart after changing!)" +msgstr "" + +#: src/gui/settings.cpp:785 +msgid "" +"threaded input processes key presses for note preview on a separate thread " +"(on supported platforms), which reduces latency.\n" +"however, crashes have been reported when threaded input is on. enable this " +"option if that is the case." +msgstr "" + +#: src/gui/settings.cpp:790 +msgid "Enable event delay" +msgstr "" + +#: src/gui/settings.cpp:796 +msgid "may cause issues with high-polling-rate mice when previewing notes." +msgstr "" + +#: src/gui/settings.cpp:800 +msgid "Per-channel oscilloscope threads" +msgstr "" + +#: src/gui/settings.cpp:808 +msgid "you're being silly, aren't you? that's enough." +msgstr "" + +#: src/gui/settings.cpp:812 +msgid "what are you doing? stop!" +msgstr "" + +#: src/gui/settings.cpp:816 +#, c-format +msgid "" +"it is a bad idea to set this number higher than your CPU core count (%d)!" +msgstr "" + +#: src/gui/settings.cpp:821 +msgid "Oscilloscope rendering engine:" +msgstr "" + +#: src/gui/settings.cpp:823 +msgid "ImGui line plot" +msgstr "" + +#: src/gui/settings.cpp:827 +msgid "render using Dear ImGui's built-in line drawing functions." +msgstr "" + +#: src/gui/settings.cpp:829 +msgid "GLSL (if available)" +msgstr "" + +#: src/gui/settings.cpp:834 +msgid "" +"render using shaders that run on the graphics card.\n" +"only available in OpenGL ES 2.0 render backend." +msgstr "" + +#: src/gui/settings.cpp:836 +msgid "" +"render using shaders that run on the graphics card.\n" +"only available in OpenGL 3.0 render backend." +msgstr "" + +#: src/gui/settings.cpp:843 +msgid "Vibration" +msgstr "" + +#: src/gui/settings.cpp:845 +msgid "Strength" +msgstr "" + +#: src/gui/settings.cpp:851 src/gui/insEdit.cpp:2284 src/gui/insEdit.cpp:2382 +#: src/gui/insEdit.cpp:5582 src/gui/insEdit.cpp:6241 +msgid "Length" +msgstr "" + +#: src/gui/settings.cpp:859 src/gui/gui.cpp:4191 +msgid "File" +msgstr "" + +#: src/gui/settings.cpp:862 +msgid "Use system file picker" +msgstr "" + +#: src/gui/settings.cpp:867 +msgid "Number of recent files" +msgstr "" + +#: src/gui/settings.cpp:874 +msgid "Compress when saving" +msgstr "" + +#: src/gui/settings.cpp:879 +msgid "use zlib to compress saved songs." +msgstr "" + +#: src/gui/settings.cpp:883 +msgid "Save unused patterns" +msgstr "" + +#: src/gui/settings.cpp:889 +msgid "Use new pattern format when saving" +msgstr "" + +#: src/gui/settings.cpp:894 +msgid "" +"use a packed format which saves space when saving songs.\n" +"disable if you need compatibility with older Furnace and/or tools\n" +"which do not support this format." +msgstr "" + +#: src/gui/settings.cpp:898 +msgid "Don't apply compatibility flags when loading .dmf" +msgstr "" + +#: src/gui/settings.cpp:903 +msgid "do not report any issues arising from the use of this option!" +msgstr "" + +#: src/gui/settings.cpp:906 +msgid "Play after opening song:" +msgstr "" + +#: src/gui/settings.cpp:908 +msgid "No##pol0" +msgstr "" + +#: src/gui/settings.cpp:912 +msgid "Only if already playing##pol1" +msgstr "" + +#: src/gui/settings.cpp:916 +msgid "Yes##pol0" +msgstr "" + +#: src/gui/settings.cpp:922 +msgid "Audio export loop/fade out time:" +msgstr "" + +#: src/gui/settings.cpp:924 +msgid "Set to these values on start-up:##fot0" +msgstr "" + +#: src/gui/settings.cpp:942 +msgid "Remember last values##fot1" +msgstr "" + +#: src/gui/settings.cpp:949 +msgid "Store instrument name in .fui" +msgstr "" + +#: src/gui/settings.cpp:954 +msgid "" +"when enabled, saving an instrument will store its name.\n" +"this may increase file size." +msgstr "" + +#: src/gui/settings.cpp:958 +msgid "Load instrument name from .fui" +msgstr "" + +#: src/gui/settings.cpp:963 +msgid "" +"when enabled, loading an instrument will use the stored name (if present).\n" +"otherwise, it will use the file name." +msgstr "" + +#: src/gui/settings.cpp:967 +msgid "Auto-fill file name when saving" +msgstr "" + +#: src/gui/settings.cpp:972 +msgid "" +"fill the file name field with an appropriate file name when saving or " +"exporting." +msgstr "" + +#: src/gui/settings.cpp:976 src/gui/gui.cpp:5563 src/gui/gui.cpp:5613 +msgid "New Song" +msgstr "" + +#: src/gui/settings.cpp:978 +msgid "Initial system:" +msgstr "" + +#: src/gui/settings.cpp:980 +msgid "Current system" +msgstr "" + +#: src/gui/settings.cpp:993 src/gui/waveEdit.cpp:1149 src/gui/gui.cpp:3046 +msgid "Randomize" +msgstr "" + +#: src/gui/settings.cpp:1043 +msgid "Reset to defaults" +msgstr "" + +#: src/gui/settings.cpp:1178 +msgid "When creating new song:" +msgstr "" + +#: src/gui/settings.cpp:1180 +msgid "Display system preset selector##NSB0" +msgstr "" + +#: src/gui/settings.cpp:1184 +msgid "Start with initial system##NSB1" +msgstr "" + +#: src/gui/settings.cpp:1188 +msgid "Default author name" +msgstr "" + +#: src/gui/settings.cpp:1192 +msgid "Start-up" +msgstr "" + +#: src/gui/settings.cpp:1193 +msgid "Play intro on start-up:" +msgstr "" + +#: src/gui/settings.cpp:1195 +msgid "No##pis0" +msgstr "" + +#: src/gui/settings.cpp:1199 +msgid "Short##pis1" +msgstr "" + +#: src/gui/settings.cpp:1203 +msgid "Full (short when loading song)##pis2" +msgstr "" + +#: src/gui/settings.cpp:1207 +msgid "Full (always)##pis3" +msgstr "" + +#: src/gui/settings.cpp:1214 +msgid "Disable fade-in during start-up" +msgstr "" + +#: src/gui/settings.cpp:1220 +msgid "About screen party time" +msgstr "" + +#: src/gui/settings.cpp:1225 +msgid "Warning: may cause epileptic seizures." +msgstr "" + +#: src/gui/settings.cpp:1229 +msgid "Behavior" +msgstr "" + +#: src/gui/settings.cpp:1231 +msgid "New instruments are blank" +msgstr "" + +#: src/gui/settings.cpp:1237 src/gui/settings.cpp:4255 +msgid "Configuration" +msgstr "" + +#: src/gui/settings.cpp:1246 +msgid "Factory Reset" +msgstr "" + +#: src/gui/settings.cpp:1247 +msgid "" +"Are you sure you want to reset all Furnace settings?\n" +"You must restart Furnace after doing so." +msgstr "" + +#: src/gui/settings.cpp:1255 +msgid "Output" +msgstr "" + +#: src/gui/settings.cpp:1263 +msgid "Backend" +msgstr "" + +#: src/gui/settings.cpp:1296 +msgid "Driver" +msgstr "" + +#: src/gui/settings.cpp:1319 +msgid "Device" +msgstr "" + +#: src/gui/settings.cpp:1323 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:1324 +msgid "ALERT - TRESPASSER DETECTED" +msgstr "" + +#: src/gui/settings.cpp:1326 +msgid "you have been arrested for trying to engage with a disabled combo box." +msgstr "" + +#: src/gui/settings.cpp:1333 src/gui/settings.cpp:1335 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:1371 src/gui/insEdit.cpp:7186 +msgid "Outputs" +msgstr "" + +#: src/gui/settings.cpp:1379 +msgid "" +"common values:\n" +"- 1 for mono\n" +"- 2 for stereo\n" +"- 4 for quadraphonic\n" +"- 6 for 5.1 surround\n" +"- 8 for 7.1 surround" +msgstr "" + +#: src/gui/settings.cpp:1387 +#, c-format +msgid "%d (latency: ~%.1fms)" +msgstr "" + +#: src/gui/settings.cpp:1402 +msgid "Multi-threaded (EXPERIMENTAL)" +msgstr "" + +#: src/gui/settings.cpp:1411 +msgid "" +"runs chip emulation on separate threads.\n" +"may increase performance when using heavy emulation cores.\n" +"\n" +"warnings:\n" +"- experimental!\n" +"- only useful on multi-chip songs." +msgstr "" + +#: src/gui/settings.cpp:1416 +msgid "Number of threads" +msgstr "" + +#: src/gui/settings.cpp:1423 +msgid "that's the limit!" +msgstr "" + +#: src/gui/settings.cpp:1427 +#, c-format +msgid "" +"it is a VERY bad idea to set this number higher than your CPU core count " +"(%d)!" +msgstr "" + +#: src/gui/settings.cpp:1435 +msgid "Low-latency mode" +msgstr "" + +#: src/gui/settings.cpp:1440 +msgid "" +"reduces latency by running the engine faster than the tick rate.\n" +"useful for live playback/jam mode.\n" +"\n" +"warning: only enable if your buffer size is small (10ms or less)." +msgstr "" + +#: src/gui/settings.cpp:1444 +msgid "Force mono audio" +msgstr "" + +#: src/gui/settings.cpp:1452 +msgid "Exclusive mode" +msgstr "" + +#: src/gui/settings.cpp:1463 +#, c-format +msgid "want: %d samples @ %.0fHz (%d channel)" +msgid_plural "want: %d samples @ %.0fHz (%d channels)" +msgstr[0] "" +msgstr[1] "" + +#: src/gui/settings.cpp:1464 +#, c-format +msgid "got: %d samples @ %.0fHz (%d channel)" +msgid_plural "got: %d samples @ %.0fHz (%d channels)" +msgstr[0] "" +msgstr[1] "" + +#: src/gui/settings.cpp:1471 +msgid "Mixing" +msgstr "" + +#: src/gui/settings.cpp:1473 src/gui/settings.cpp:2082 +msgid "Quality" +msgstr "" + +#: src/gui/settings.cpp:1478 +msgid "Software clipping" +msgstr "" + +#: src/gui/settings.cpp:1484 +msgid "DC offset correction" +msgstr "" + +#: src/gui/settings.cpp:1502 src/gui/guiConst.cpp:740 +msgid "Sample preview" +msgstr "" + +#: src/gui/settings.cpp:1515 +msgid "MIDI" +msgstr "" + +#: src/gui/settings.cpp:1517 src/gui/settings.cpp:1519 +msgid "MIDI input" +msgstr "" + +#: src/gui/settings.cpp:1521 src/gui/settings.cpp:1524 +#: src/gui/settings.cpp:1815 src/gui/settings.cpp:1817 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:1540 +msgid "Re-scan MIDI devices" +msgstr "" + +#: src/gui/settings.cpp:1551 src/gui/settings.cpp:2258 +msgid "Note input" +msgstr "" + +#: src/gui/settings.cpp:1552 +msgid "Velocity input" +msgstr "" + +#: src/gui/settings.cpp:1556 +msgid "Map MIDI channels to direct channels" +msgstr "" + +#: src/gui/settings.cpp:1562 +msgid "Program change pass-through" +msgstr "" + +#: src/gui/settings.cpp:1567 +msgid "Map Yamaha FM voice data to instruments" +msgstr "" + +#: src/gui/settings.cpp:1569 +msgid "Program change is instrument selection" +msgstr "" + +#: src/gui/settings.cpp:1573 +msgid "Value input style" +msgstr "" + +#: src/gui/settings.cpp:1576 src/gui/settings.cpp:1601 +msgid "Control##valueCCS" +msgstr "" + +#: src/gui/settings.cpp:1582 src/gui/settings.cpp:1607 +msgid "CC of upper nibble##valueCC1" +msgstr "" + +#: src/gui/settings.cpp:1582 src/gui/settings.cpp:1607 +msgid "MSB CC##valueCC1" +msgstr "" + +#: src/gui/settings.cpp:1587 src/gui/settings.cpp:1612 +msgid "CC of lower nibble##valueCC2" +msgstr "" + +#: src/gui/settings.cpp:1587 src/gui/settings.cpp:1612 +msgid "LSB CC##valueCC2" +msgstr "" + +#: src/gui/settings.cpp:1594 +msgid "Per-column control change" +msgstr "" + +#: src/gui/settings.cpp:1624 src/gui/settings.cpp:1634 +msgid "Volume curve" +msgstr "" + +#: src/gui/settings.cpp:1637 +msgid "Actions:" +msgstr "" + +#: src/gui/settings.cpp:1651 +msgid "" +"(learning! press a button or move a slider/knob/something on your device.)" +msgstr "" + +#: src/gui/settings.cpp:1665 src/gui/settings.cpp:2277 +#: src/gui/settings.cpp:6687 src/gui/sampleEdit.cpp:501 +#: src/gui/insEdit.cpp:5321 +msgid "Type" +msgstr "" + +#: src/gui/settings.cpp:1669 +msgid "Note/Control" +msgstr "" + +#: src/gui/settings.cpp:1671 +msgid "Velocity/Value" +msgstr "" + +#: src/gui/settings.cpp:1673 +msgid "Action" +msgstr "" + +#: src/gui/settings.cpp:1765 src/gui/settings.cpp:1766 +msgid "--none--" +msgstr "" + +#: src/gui/settings.cpp:1787 +msgid "waiting...##BLearn" +msgstr "" + +#: src/gui/settings.cpp:1787 +msgid "Learn##BLearn" +msgstr "" + +#: src/gui/settings.cpp:1811 src/gui/settings.cpp:1813 +msgid "MIDI output" +msgstr "" + +#: src/gui/settings.cpp:1830 +msgid "Output mode:" +msgstr "" + +#: src/gui/settings.cpp:1832 +msgid "Off (use for TX81Z)" +msgstr "" + +#: src/gui/settings.cpp:1836 +msgid "Melodic" +msgstr "" + +#: src/gui/settings.cpp:1847 +msgid "Send Program Change" +msgstr "" + +#: src/gui/settings.cpp:1853 +msgid "Send MIDI clock" +msgstr "" + +#: src/gui/settings.cpp:1859 +msgid "Send MIDI timecode" +msgstr "" + +#: src/gui/settings.cpp:1865 +msgid "Timecode frame rate:" +msgstr "" + +#: src/gui/settings.cpp:1867 +msgid "Closest to Tick Rate" +msgstr "" + +#: src/gui/settings.cpp:1871 +msgid "Film (24fps)" +msgstr "" + +#: src/gui/settings.cpp:1875 +msgid "PAL (25fps)" +msgstr "" + +#: src/gui/settings.cpp:1879 +msgid "NTSC drop (29.97fps)" +msgstr "" + +#: src/gui/settings.cpp:1883 +msgid "NTSC non-drop (30fps)" +msgstr "" + +#: src/gui/settings.cpp:1892 +msgid "Emulation" +msgstr "" + +#: src/gui/settings.cpp:1894 +msgid "Cores" +msgstr "" + +#: src/gui/settings.cpp:1903 +msgid "Playback Core(s)" +msgstr "" + +#: src/gui/settings.cpp:1905 src/gui/settings.cpp:2093 +msgid "used for playback" +msgstr "" + +#: src/gui/settings.cpp:1908 +msgid "Render Core(s)" +msgstr "" + +#: src/gui/settings.cpp:1910 src/gui/settings.cpp:2098 +msgid "used in audio export" +msgstr "" + +#: src/gui/settings.cpp:2091 +msgid "Playback" +msgstr "" + +#: src/gui/settings.cpp:2096 +msgid "Render" +msgstr "" + +#: src/gui/settings.cpp:2120 +msgid "PC Speaker strategy" +msgstr "" + +#: src/gui/settings.cpp:2158 src/gui/settings.cpp:2160 +msgid "Keyboard" +msgstr "" + +#: src/gui/settings.cpp:2169 src/gui/settings.cpp:3804 +msgid "Reset defaults" +msgstr "" + +#: src/gui/settings.cpp:2170 +msgid "Are you sure you want to reset the keyboard settings?" +msgstr "" + +#: src/gui/settings.cpp:2172 +msgid "Global hotkeys" +msgstr "" + +#: src/gui/settings.cpp:2209 +msgid "Window activation" +msgstr "" + +#: src/gui/settings.cpp:2275 +msgid "Key" +msgstr "" + +#: src/gui/settings.cpp:2279 src/gui/findReplace.cpp:725 +#: src/gui/findReplace.cpp:1003 +msgid "Value" +msgstr "" + +#: src/gui/settings.cpp:2289 +#, c-format +msgid "Macro release##SNType_%d" +msgstr "" + +#: src/gui/settings.cpp:2294 +#, c-format +msgid "Note release##SNType_%d" +msgstr "" + +#: src/gui/settings.cpp:2299 +#, c-format +msgid "Note off##SNType_%d" +msgstr "" + +#: src/gui/settings.cpp:2304 +#, c-format +msgid "Note##SNType_%d" +msgstr "" + +#: src/gui/settings.cpp:2328 +msgid "Add..." +msgstr "" + +#: src/gui/settings.cpp:2418 +msgid "Instrument list" +msgstr "" + +#: src/gui/settings.cpp:2438 +msgid "Wavetable list" +msgstr "" + +#: src/gui/settings.cpp:2459 +msgid "Sample list" +msgstr "" + +#: src/gui/settings.cpp:2509 +msgid "Sample editor" +msgstr "" + +#: src/gui/settings.cpp:2547 src/gui/settings.cpp:3814 +#: src/gui/settings.cpp:3844 +msgid "Interface" +msgstr "" + +#: src/gui/settings.cpp:2549 +msgid "Layout" +msgstr "" + +#: src/gui/settings.cpp:2551 +msgid "Workspace layout:" +msgstr "" + +#: src/gui/settings.cpp:2561 src/gui/gui.cpp:2920 +msgid "Reset" +msgstr "" + +#: src/gui/settings.cpp:2562 src/gui/gui.cpp:4455 +msgid "Are you sure you want to reset the workspace layout?" +msgstr "" + +#: src/gui/settings.cpp:2566 +msgid "Allow docking editors" +msgstr "" + +#: src/gui/settings.cpp:2573 +msgid "Remember window position" +msgstr "" + +#: src/gui/settings.cpp:2578 +msgid "remembers the window's last position on start-up." +msgstr "" + +#: src/gui/settings.cpp:2583 +msgid "Only allow window movement when clicking on title bar" +msgstr "" + +#: src/gui/settings.cpp:2590 +msgid "Center pop-up windows" +msgstr "" + +#: src/gui/settings.cpp:2595 +msgid "Play/edit controls layout:" +msgstr "" + +#: src/gui/settings.cpp:2597 +msgid "Classic##ecl0" +msgstr "" + +#: src/gui/settings.cpp:2601 +msgid "Compact##ecl1" +msgstr "" + +#: src/gui/settings.cpp:2605 +msgid "Compact (vertical)##ecl2" +msgstr "" + +#: src/gui/settings.cpp:2609 +msgid "Split##ecl3" +msgstr "" + +#: src/gui/settings.cpp:2615 +msgid "Position of buttons in Orders:" +msgstr "" + +#: src/gui/settings.cpp:2617 +msgid "Top##obp0" +msgstr "" + +#: src/gui/settings.cpp:2621 +msgid "Left##obp1" +msgstr "" + +#: src/gui/settings.cpp:2625 +msgid "Right##obp2" +msgstr "" + +#: src/gui/settings.cpp:2632 +msgid "Mouse" +msgstr "" + +#: src/gui/settings.cpp:2634 +msgid "Double-click time (seconds)" +msgstr "" + +#: src/gui/settings.cpp:2643 +msgid "Don't raise pattern editor on click" +msgstr "" + +#: src/gui/settings.cpp:2649 +msgid "Focus pattern editor when selecting instrument" +msgstr "" + +#: src/gui/settings.cpp:2654 +msgid "Note preview behavior:" +msgstr "" + +#: src/gui/settings.cpp:2656 +msgid "Never##npb0" +msgstr "" + +#: src/gui/settings.cpp:2660 +msgid "When cursor is in Note column##npb1" +msgstr "" + +#: src/gui/settings.cpp:2664 +msgid "When cursor is in Note column or not in edit mode##npb2" +msgstr "" + +#: src/gui/settings.cpp:2668 +msgid "Always##npb3" +msgstr "" + +#: src/gui/settings.cpp:2674 +msgid "Allow dragging selection:" +msgstr "" + +#: src/gui/settings.cpp:2676 +msgid "No##dms0" +msgstr "" + +#: src/gui/settings.cpp:2680 +msgid "Yes##dms1" +msgstr "" + +#: src/gui/settings.cpp:2684 +msgid "Yes (while holding Ctrl only)##dms2" +msgstr "" + +#: src/gui/settings.cpp:2690 +msgid "Toggle channel solo on:" +msgstr "" + +#: src/gui/settings.cpp:2692 +msgid "Right-click or double-click##soloA" +msgstr "" + +#: src/gui/settings.cpp:2696 +msgid "Right-click##soloR" +msgstr "" + +#: src/gui/settings.cpp:2700 +msgid "Double-click##soloD" +msgstr "" + +#: src/gui/settings.cpp:2707 +msgid "Double click selects entire column" +msgstr "" + +#: src/gui/settings.cpp:2713 +msgid "Cursor behavior" +msgstr "" + +#: src/gui/settings.cpp:2715 +msgid "Insert pushes entire channel row" +msgstr "" + +#: src/gui/settings.cpp:2721 +msgid "Pull delete affects entire channel row" +msgstr "" + +#: src/gui/settings.cpp:2727 +msgid "Push value when overwriting instead of clearing it" +msgstr "" + +#: src/gui/settings.cpp:2733 +msgid "Keyboard note/value input repeat (hold key to input continuously)" +msgstr "" + +#: src/gui/settings.cpp:2738 +msgid "Effect input behavior:" +msgstr "" + +#: src/gui/settings.cpp:2740 +msgid "Move down##eicb0" +msgstr "" + +#: src/gui/settings.cpp:2744 +msgid "Move to effect value (otherwise move down)##eicb1" +msgstr "" + +#: src/gui/settings.cpp:2748 +msgid "Move to effect value/next effect and wrap around##eicb2" +msgstr "" + +#: src/gui/settings.cpp:2755 +msgid "Delete effect value when deleting effect" +msgstr "" + +#: src/gui/settings.cpp:2761 +msgid "Change current instrument when changing instrument column (absorb)" +msgstr "" + +#: src/gui/settings.cpp:2767 +msgid "Remove instrument value when inserting note off/release" +msgstr "" + +#: src/gui/settings.cpp:2773 +msgid "Remove volume value when inserting note off/release" +msgstr "" + +#: src/gui/settings.cpp:2779 +msgid "Cursor movement" +msgstr "" + +#: src/gui/settings.cpp:2781 +msgid "Wrap horizontally:" +msgstr "" + +#: src/gui/settings.cpp:2783 +msgid "No##wrapH0" +msgstr "" + +#: src/gui/settings.cpp:2787 +msgid "Yes##wrapH1" +msgstr "" + +#: src/gui/settings.cpp:2791 +msgid "Yes, and move to next/prev row##wrapH2" +msgstr "" + +#: src/gui/settings.cpp:2797 +msgid "Wrap vertically:" +msgstr "" + +#: src/gui/settings.cpp:2799 +msgid "No##wrapV0" +msgstr "" + +#: src/gui/settings.cpp:2803 +msgid "Yes##wrapV1" +msgstr "" + +#: src/gui/settings.cpp:2807 +msgid "Yes, and move to next/prev pattern##wrapV2" +msgstr "" + +#: src/gui/settings.cpp:2811 +msgid "Yes, and move to next/prev pattern (wrap around)##wrapV2" +msgstr "" + +#: src/gui/settings.cpp:2817 +msgid "Cursor movement keys behavior:" +msgstr "" + +#: src/gui/settings.cpp:2819 +msgid "Move by one##cmk0" +msgstr "" + +#: src/gui/settings.cpp:2823 +msgid "Move by Edit Step##cmk1" +msgstr "" + +#: src/gui/settings.cpp:2830 +msgid "Move cursor by edit step on delete" +msgstr "" + +#: src/gui/settings.cpp:2836 +msgid "Move cursor by edit step on insert (push)" +msgstr "" + +#: src/gui/settings.cpp:2842 +msgid "Move cursor up on backspace-delete" +msgstr "" + +#: src/gui/settings.cpp:2848 +msgid "Move cursor to end of clipboard content when pasting" +msgstr "" + +#: src/gui/settings.cpp:2854 +msgid "Scrolling" +msgstr "" + +#: src/gui/settings.cpp:2856 +msgid "Change order when scrolling outside of pattern bounds:" +msgstr "" + +#: src/gui/settings.cpp:2858 +msgid "No##pscroll0" +msgstr "" + +#: src/gui/settings.cpp:2862 +msgid "Yes##pscroll1" +msgstr "" + +#: src/gui/settings.cpp:2866 +msgid "Yes, and wrap around song##pscroll2" +msgstr "" + +#: src/gui/settings.cpp:2873 +msgid "Cursor follows current order when moving it" +msgstr "" + +#: src/gui/settings.cpp:2878 +msgid "applies when playback is stopped." +msgstr "" + +#: src/gui/settings.cpp:2882 +msgid "Don't scroll when moving cursor" +msgstr "" + +#: src/gui/settings.cpp:2887 +msgid "Move cursor with scroll wheel:" +msgstr "" + +#: src/gui/settings.cpp:2889 +msgid "No##csw0" +msgstr "" + +#: src/gui/settings.cpp:2893 +msgid "Yes##csw1" +msgstr "" + +#: src/gui/settings.cpp:2897 +msgid "Inverted##csw2" +msgstr "" + +#: src/gui/settings.cpp:2904 +msgid "How many steps to move with each scroll wheel step?" +msgstr "" + +#: src/gui/settings.cpp:2905 +msgid "One##cws0" +msgstr "" + +#: src/gui/settings.cpp:2909 +msgid "Edit Step##cws1" +msgstr "" + +#: src/gui/settings.cpp:2916 src/gui/settings.cpp:3531 +msgid "Assets" +msgstr "" + +#: src/gui/settings.cpp:2919 +msgid "Display instrument type menu when adding instrument" +msgstr "" + +#: src/gui/settings.cpp:2925 +msgid "Select asset after opening one" +msgstr "" + +#: src/gui/settings.cpp:2932 +msgid "Appearance" +msgstr "" + +#: src/gui/settings.cpp:2934 +msgid "Scaling" +msgstr "" + +#: src/gui/settings.cpp:2936 +msgid "Automatic UI scaling factor" +msgstr "" + +#: src/gui/settings.cpp:2945 +msgid "UI scaling factor" +msgstr "" + +#: src/gui/settings.cpp:2952 +msgid "Icon size" +msgstr "" + +#: src/gui/settings.cpp:2967 +msgid "Font renderer" +msgstr "" + +#: src/gui/settings.cpp:2977 +msgid "Main font" +msgstr "" + +#: src/gui/settings.cpp:2988 +msgid "Size##MainFontSize" +msgstr "" + +#: src/gui/settings.cpp:2996 +msgid "Header font" +msgstr "" + +#: src/gui/settings.cpp:3007 +msgid "Size##HeadFontSize" +msgstr "" + +#: src/gui/settings.cpp:3015 +msgid "Pattern font" +msgstr "" + +#: src/gui/settings.cpp:3026 +msgid "Size##PatFontSize" +msgstr "" + +#: src/gui/settings.cpp:3036 +msgid "Anti-aliased fonts" +msgstr "" + +#: src/gui/settings.cpp:3042 +msgid "Support bitmap fonts" +msgstr "" + +#: src/gui/settings.cpp:3047 +msgid "Hinting:" +msgstr "" + +#: src/gui/settings.cpp:3049 +msgid "Off (soft)##fh0" +msgstr "" + +#: src/gui/settings.cpp:3053 +msgid "Slight##fh1" +msgstr "" + +#: src/gui/settings.cpp:3057 +msgid "Normal##fh2" +msgstr "" + +#: src/gui/settings.cpp:3061 +msgid "Full (hard)##fh3" +msgstr "" + +#: src/gui/settings.cpp:3067 +msgid "Auto-hinter:" +msgstr "" + +#: src/gui/settings.cpp:3069 +msgid "Disable##fah0" +msgstr "" + +#: src/gui/settings.cpp:3073 +msgid "Enable##fah1" +msgstr "" + +#: src/gui/settings.cpp:3077 +msgid "Force##fah2" +msgstr "" + +#: src/gui/settings.cpp:3084 +msgid "Oversample" +msgstr "" + +#: src/gui/settings.cpp:3087 +msgid "1×##fos1" +msgstr "" + +#: src/gui/settings.cpp:3092 +msgid "" +"saves video memory. reduces font rendering quality.\n" +"use for pixel/bitmap fonts." +msgstr "" + +#: src/gui/settings.cpp:3095 +msgid "2×##fos2" +msgstr "" + +#: src/gui/settings.cpp:3100 +msgid "default." +msgstr "" + +#: src/gui/settings.cpp:3103 +msgid "3×##fos3" +msgstr "" + +#: src/gui/settings.cpp:3108 +msgid "" +"slightly better font rendering quality.\n" +"uses more video memory." +msgstr "" + +#: src/gui/settings.cpp:3112 +msgid "Load fallback font" +msgstr "" + +#: src/gui/settings.cpp:3117 +msgid "disable to save video memory." +msgstr "" + +#: src/gui/settings.cpp:3121 +msgid "Display Japanese characters" +msgstr "" + +#: src/gui/settings.cpp:3127 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"このオプションは、十分なグラフィックメモリがある場合にのみ切り替えてくださ" +"い。\n" +"これは、Dear ImGuiにダイナミックフォントアトラスが実装されるまでの一時的な解" +"決策です。" +msgstr "" + +#: src/gui/settings.cpp:3135 +msgid "Display Chinese (Simplified) characters" +msgstr "" + +#: src/gui/settings.cpp:3141 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"请在确保你有足够的显存后再启动此设定\n" +"这是一个在ImGui实现动态字体加载之前的临时解决方案" +msgstr "" + +#: src/gui/settings.cpp:3149 +msgid "Display Chinese (Traditional) characters" +msgstr "" + +#: src/gui/settings.cpp:3155 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"請在確保你有足夠的顯存后再啟動此設定\n" +"這是一個在ImGui實現動態字體加載之前的臨時解決方案" +msgstr "" + +#: src/gui/settings.cpp:3163 +msgid "Display Korean characters" +msgstr "" + +#: src/gui/settings.cpp:3169 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"그래픽 메모리가 충분한 경우에만 이 옵션을 선택하십시오.\n" +"이 옵션은 Dear ImGui에 동적 글꼴 아틀라스가 구현될 때까지 임시 솔루션입니다." +msgstr "" + +#: src/gui/settings.cpp:3178 +msgid "Title bar:" +msgstr "" + +#: src/gui/settings.cpp:3180 +msgid "Furnace##tbar0" +msgstr "" + +#: src/gui/settings.cpp:3185 +msgid "Song Name - Furnace##tbar1" +msgstr "" + +#: src/gui/settings.cpp:3190 +msgid "file_name.fur - Furnace##tbar2" +msgstr "" + +#: src/gui/settings.cpp:3195 +msgid "/path/to/file.fur - Furnace##tbar3" +msgstr "" + +#: src/gui/settings.cpp:3203 +msgid "Display system name on title bar" +msgstr "" + +#: src/gui/settings.cpp:3210 +msgid "Display chip names instead of \"multi-system\" in title bar" +msgstr "" + +#: src/gui/settings.cpp:3216 +msgid "Status bar:" +msgstr "" + +#: src/gui/settings.cpp:3218 +msgid "Cursor details##sbar0" +msgstr "" + +#: src/gui/settings.cpp:3222 +msgid "File path##sbar1" +msgstr "" + +#: src/gui/settings.cpp:3226 +msgid "Cursor details or file path##sbar2" +msgstr "" + +#: src/gui/settings.cpp:3230 +msgid "Nothing##sbar3" +msgstr "" + +#: src/gui/settings.cpp:3237 +msgid "Display playback status when playing" +msgstr "" + +#: src/gui/settings.cpp:3242 +msgid "Export options layout:" +msgstr "" + +#: src/gui/settings.cpp:3244 +msgid "Sub-menus in File menu##eol0" +msgstr "" + +#: src/gui/settings.cpp:3248 +msgid "Modal window with tabs##eol1" +msgstr "" + +#: src/gui/settings.cpp:3252 +msgid "Modal windows with options in File menu##eol2" +msgstr "" + +#: src/gui/settings.cpp:3259 +msgid "Capitalize menu bar" +msgstr "" + +#: src/gui/settings.cpp:3265 +msgid "Display add/configure/change/remove chip menus in File menu" +msgstr "" + +#: src/gui/settings.cpp:3279 +msgid "Highlight channel at cursor in Orders" +msgstr "" + +#: src/gui/settings.cpp:3284 +msgid "Orders row number format:" +msgstr "" + +#: src/gui/settings.cpp:3286 +msgid "Decimal##orbD" +msgstr "" + +#: src/gui/settings.cpp:3290 +msgid "Hexadecimal##orbH" +msgstr "" + +#: src/gui/settings.cpp:3299 +msgid "Center pattern view" +msgstr "" + +#: src/gui/settings.cpp:3305 +msgid "Overflow pattern highlights" +msgstr "" + +#: src/gui/settings.cpp:3311 +msgid "Display previous/next pattern" +msgstr "" + +#: src/gui/settings.cpp:3316 +msgid "Pattern row number format:" +msgstr "" + +#: src/gui/settings.cpp:3318 +msgid "Decimal##prbD" +msgstr "" + +#: src/gui/settings.cpp:3322 +msgid "Hexadecimal##prbH" +msgstr "" + +#: src/gui/settings.cpp:3328 +msgid "Pattern view labels:" +msgstr "" + +#: src/gui/settings.cpp:3333 +msgid "Note off (3-char)" +msgstr "" + +#: src/gui/settings.cpp:3338 +msgid "Note release (3-char)" +msgstr "" + +#: src/gui/settings.cpp:3343 +msgid "Macro release (3-char)" +msgstr "" + +#: src/gui/settings.cpp:3348 +msgid "Empty field (3-char)" +msgstr "" + +#: src/gui/settings.cpp:3353 +msgid "Empty field (2-char)" +msgstr "" + +#: src/gui/settings.cpp:3355 +msgid "Pattern view spacing after:" +msgstr "" + +#: src/gui/settings.cpp:3357 src/gui/settings.cpp:4115 +#: src/gui/findReplace.cpp:601 src/gui/findReplace.cpp:864 +#: src/gui/sampleEdit.cpp:590 +msgid "Note" +msgstr "" + +#: src/gui/settings.cpp:3375 src/gui/findReplace.cpp:707 +#: src/gui/findReplace.cpp:974 +msgid "Effect" +msgstr "" + +#: src/gui/settings.cpp:3381 +msgid "Effect value" +msgstr "" + +#: src/gui/settings.cpp:3388 +msgid "Single-digit effects for 00-0F" +msgstr "" + +#: src/gui/settings.cpp:3394 +msgid "Use flats instead of sharps" +msgstr "" + +#: src/gui/settings.cpp:3400 +msgid "Use German notation" +msgstr "" + +#: src/gui/settings.cpp:3408 +msgid "Channel style:" +msgstr "" + +#: src/gui/settings.cpp:3410 +msgid "Classic##CHS0" +msgstr "" + +#: src/gui/settings.cpp:3414 +msgid "Line##CHS1" +msgstr "" + +#: src/gui/settings.cpp:3418 +msgid "Round##CHS2" +msgstr "" + +#: src/gui/settings.cpp:3422 +msgid "Split button##CHS3" +msgstr "" + +#: src/gui/settings.cpp:3426 +msgid "Square border##CH42" +msgstr "" + +#: src/gui/settings.cpp:3430 +msgid "Round border##CHS5" +msgstr "" + +#: src/gui/settings.cpp:3436 +msgid "Channel volume bar:" +msgstr "" + +#: src/gui/settings.cpp:3438 +msgid "None##CHV0" +msgstr "" + +#: src/gui/settings.cpp:3442 +msgid "Simple##CHV1" +msgstr "" + +#: src/gui/settings.cpp:3446 +msgid "Stereo##CHV2" +msgstr "" + +#: src/gui/settings.cpp:3450 +msgid "Real##CHV3" +msgstr "" + +#: src/gui/settings.cpp:3454 +msgid "Real (stereo)##CHV4" +msgstr "" + +#: src/gui/settings.cpp:3460 +msgid "Channel feedback style:" +msgstr "" + +#: src/gui/settings.cpp:3462 +msgid "Off##CHF0" +msgstr "" + +#: src/gui/settings.cpp:3466 +msgid "Note##CHF1" +msgstr "" + +#: src/gui/settings.cpp:3470 +msgid "Volume##CHF2" +msgstr "" + +#: src/gui/settings.cpp:3474 +msgid "Active##CHF3" +msgstr "" + +#: src/gui/settings.cpp:3480 +msgid "Channel font:" +msgstr "" + +#: src/gui/settings.cpp:3482 +msgid "Regular##CHFont0" +msgstr "" + +#: src/gui/settings.cpp:3486 +msgid "Monospace##CHFont1" +msgstr "" + +#: src/gui/settings.cpp:3493 +msgid "Center channel name" +msgstr "" + +#: src/gui/settings.cpp:3498 +msgid "Channel colors:" +msgstr "" + +#: src/gui/settings.cpp:3500 +msgid "Single##CHC0" +msgstr "" + +#: src/gui/settings.cpp:3504 +msgid "Channel type##CHC1" +msgstr "" + +#: src/gui/settings.cpp:3508 +msgid "Instrument type##CHC2" +msgstr "" + +#: src/gui/settings.cpp:3514 +msgid "Channel name colors:" +msgstr "" + +#: src/gui/settings.cpp:3516 +msgid "Single##CTC0" +msgstr "" + +#: src/gui/settings.cpp:3520 +msgid "Channel type##CTC1" +msgstr "" + +#: src/gui/settings.cpp:3524 +msgid "Instrument type##CTC2" +msgstr "" + +#: src/gui/settings.cpp:3533 +msgid "Unified instrument/wavetable/sample list" +msgstr "" + +#: src/gui/settings.cpp:3543 +msgid "Horizontal instrument list" +msgstr "" + +#: src/gui/settings.cpp:3549 +msgid "Instrument list icon style:" +msgstr "" + +#: src/gui/settings.cpp:3551 +msgid "None##iis0" +msgstr "" + +#: src/gui/settings.cpp:3555 +msgid "Graphical icons##iis1" +msgstr "" + +#: src/gui/settings.cpp:3559 +msgid "Letter icons##iis2" +msgstr "" + +#: src/gui/settings.cpp:3566 +msgid "Colorize instrument editor using instrument type" +msgstr "" + +#: src/gui/settings.cpp:3572 src/gui/settings.cpp:4014 +msgid "Macro Editor" +msgstr "" + +#: src/gui/settings.cpp:3573 +msgid "Macro editor layout:" +msgstr "" + +#: src/gui/settings.cpp:3575 +msgid "Unified##mel0" +msgstr "" + +#: src/gui/settings.cpp:3585 +msgid "Grid##mel2" +msgstr "" + +#: src/gui/settings.cpp:3589 +msgid "Single (with list)##mel3" +msgstr "" + +#: src/gui/settings.cpp:3602 +msgid "Use classic macro editor vertical slider" +msgstr "" + +#: src/gui/settings.cpp:3608 +msgid "Wave Editor" +msgstr "" + +#: src/gui/settings.cpp:3610 +msgid "Use compact wave editor" +msgstr "" + +#: src/gui/settings.cpp:3616 src/gui/settings.cpp:3991 +msgid "FM Editor" +msgstr "" + +#: src/gui/settings.cpp:3617 +msgid "FM parameter names:" +msgstr "" + +#: src/gui/settings.cpp:3619 +msgid "Friendly##fmn0" +msgstr "" + +#: src/gui/settings.cpp:3623 +msgid "Technical##fmn1" +msgstr "" + +#: src/gui/settings.cpp:3627 +msgid "Technical (alternate)##fmn2" +msgstr "" + +#: src/gui/settings.cpp:3634 +msgid "Use standard OPL waveform names" +msgstr "" + +#: src/gui/settings.cpp:3639 +msgid "FM parameter editor layout:" +msgstr "" + +#: src/gui/settings.cpp:3641 +msgid "Modern##fml0" +msgstr "" + +#: src/gui/settings.cpp:3645 +msgid "Compact (2x2, classic)##fml1" +msgstr "" + +#: src/gui/settings.cpp:3649 +msgid "Compact (1x4)##fml2" +msgstr "" + +#: src/gui/settings.cpp:3653 +msgid "Compact (4x1)##fml3" +msgstr "" + +#: src/gui/settings.cpp:3657 +msgid "Alternate (2x2)##fml4" +msgstr "" + +#: src/gui/settings.cpp:3661 +msgid "Alternate (1x4)##fml5" +msgstr "" + +#: src/gui/settings.cpp:3665 +msgid "Alternate (4x1)##fml5" +msgstr "" + +#: src/gui/settings.cpp:3671 +msgid "Position of Sustain in FM editor:" +msgstr "" + +#: src/gui/settings.cpp:3673 +msgid "Between Decay and Sustain Rate##susp0" +msgstr "" + +#: src/gui/settings.cpp:3677 +msgid "After Release Rate##susp1" +msgstr "" + +#: src/gui/settings.cpp:3684 +msgid "Use separate colors for carriers/modulators in FM editor" +msgstr "" + +#: src/gui/settings.cpp:3690 +msgid "Unsigned FM detune values" +msgstr "" + +#: src/gui/settings.cpp:3697 +msgid "Chip memory usage unit:" +msgstr "" + +#: src/gui/settings.cpp:3699 +msgid "Bytes##MUU0" +msgstr "" + +#: src/gui/settings.cpp:3703 +msgid "Kilobytes##MUU1" +msgstr "" + +#: src/gui/settings.cpp:3712 +msgid "Rounded corners" +msgstr "" + +#: src/gui/settings.cpp:3718 src/gui/settings.cpp:3896 +#: src/gui/settings.cpp:3938 +msgid "Border" +msgstr "" + +#: src/gui/settings.cpp:3730 +msgid "Anti-aliased" +msgstr "" + +#: src/gui/settings.cpp:3736 +msgid "Fill entire window" +msgstr "" + +#: src/gui/settings.cpp:3742 +msgid "Waveform goes out of bounds" +msgstr "" + +#: src/gui/settings.cpp:3754 +msgid "Windows" +msgstr "" + +#: src/gui/settings.cpp:3756 +msgid "Rounded window corners" +msgstr "" + +#: src/gui/settings.cpp:3762 +msgid "Rounded buttons" +msgstr "" + +#: src/gui/settings.cpp:3768 +msgid "Rounded menu corners" +msgstr "" + +#: src/gui/settings.cpp:3774 +msgid "Rounded tabs" +msgstr "" + +#: src/gui/settings.cpp:3780 +msgid "Rounded scrollbars" +msgstr "" + +#: src/gui/settings.cpp:3786 +msgid "Borders around widgets" +msgstr "" + +#: src/gui/settings.cpp:3795 +msgid "Color scheme" +msgstr "" + +#: src/gui/settings.cpp:3805 +msgid "Are you sure you want to reset the color scheme?" +msgstr "" + +#: src/gui/settings.cpp:3808 +msgid "Guru mode" +msgstr "" + +#: src/gui/settings.cpp:3815 src/gui/settings.cpp:3845 +msgid "Frame shading" +msgstr "" + +#: src/gui/settings.cpp:3821 +msgid "Color scheme type:" +msgstr "" + +#: src/gui/settings.cpp:3823 +msgid "Dark##gcb0" +msgstr "" + +#: src/gui/settings.cpp:3828 +msgid "Light##gcb1" +msgstr "" + +#: src/gui/settings.cpp:3835 +msgid "Accent colors:" +msgstr "" + +#: src/gui/settings.cpp:3837 +msgid "Primary" +msgstr "" + +#: src/gui/settings.cpp:3838 +msgid "Secondary" +msgstr "" + +#: src/gui/settings.cpp:3852 +msgid "Button" +msgstr "" + +#: src/gui/settings.cpp:3853 +msgid "Button (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3854 +msgid "Button (active)" +msgstr "" + +#: src/gui/settings.cpp:3855 +msgid "Tab" +msgstr "" + +#: src/gui/settings.cpp:3856 +msgid "Tab (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3857 +msgid "Tab (active)" +msgstr "" + +#: src/gui/settings.cpp:3858 +msgid "Tab (unfocused)" +msgstr "" + +#: src/gui/settings.cpp:3859 +msgid "Tab (unfocused and active)" +msgstr "" + +#: src/gui/settings.cpp:3860 +msgid "ImGui header" +msgstr "" + +#: src/gui/settings.cpp:3861 +msgid "ImGui header (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3862 +msgid "ImGui header (active)" +msgstr "" + +#: src/gui/settings.cpp:3863 +msgid "Resize grip" +msgstr "" + +#: src/gui/settings.cpp:3864 +msgid "Resize grip (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3865 +msgid "Resize grip (active)" +msgstr "" + +#: src/gui/settings.cpp:3866 +msgid "Widget background" +msgstr "" + +#: src/gui/settings.cpp:3867 +msgid "Widget background (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3868 +msgid "Widget background (active)" +msgstr "" + +#: src/gui/settings.cpp:3869 +msgid "Slider grab" +msgstr "" + +#: src/gui/settings.cpp:3870 +msgid "Slider grab (active)" +msgstr "" + +#: src/gui/settings.cpp:3871 +msgid "Title background (active)" +msgstr "" + +#: src/gui/settings.cpp:3872 +msgid "Checkbox/radio button mark" +msgstr "" + +#: src/gui/settings.cpp:3873 +msgid "Text selection" +msgstr "" + +#: src/gui/settings.cpp:3874 +msgid "Line plot" +msgstr "" + +#: src/gui/settings.cpp:3875 +msgid "Line plot (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3876 +msgid "Histogram plot" +msgstr "" + +#: src/gui/settings.cpp:3877 +msgid "Histogram plot (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3878 +msgid "Table row (even)" +msgstr "" + +#: src/gui/settings.cpp:3879 +msgid "Table row (odd)" +msgstr "" + +#: src/gui/settings.cpp:3884 +msgid "Interface (other)" +msgstr "" + +#: src/gui/settings.cpp:3886 +msgid "Window background" +msgstr "" + +#: src/gui/settings.cpp:3887 +msgid "Sub-window background" +msgstr "" + +#: src/gui/settings.cpp:3888 +msgid "Pop-up background" +msgstr "" + +#: src/gui/settings.cpp:3889 +msgid "Modal backdrop" +msgstr "" + +#: src/gui/settings.cpp:3890 +msgid "Header" +msgstr "" + +#: src/gui/settings.cpp:3892 +msgid "Text (disabled)" +msgstr "" + +#: src/gui/settings.cpp:3893 +msgid "Title bar (inactive)" +msgstr "" + +#: src/gui/settings.cpp:3894 +msgid "Title bar (collapsed)" +msgstr "" + +#: src/gui/settings.cpp:3895 +msgid "Menu bar" +msgstr "" + +#: src/gui/settings.cpp:3897 +msgid "Border shadow" +msgstr "" + +#: src/gui/settings.cpp:3898 +msgid "Scroll bar" +msgstr "" + +#: src/gui/settings.cpp:3899 +msgid "Scroll bar (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3900 +msgid "Scroll bar (clicked)" +msgstr "" + +#: src/gui/settings.cpp:3901 +msgid "Scroll bar background" +msgstr "" + +#: src/gui/settings.cpp:3902 +msgid "Separator" +msgstr "" + +#: src/gui/settings.cpp:3903 +msgid "Separator (hover)" +msgstr "" + +#: src/gui/settings.cpp:3904 +msgid "Separator (active)" +msgstr "" + +#: src/gui/settings.cpp:3905 +msgid "Docking preview" +msgstr "" + +#: src/gui/settings.cpp:3906 +msgid "Docking empty" +msgstr "" + +#: src/gui/settings.cpp:3907 +msgid "Table header" +msgstr "" + +#: src/gui/settings.cpp:3908 +msgid "Table border (hard)" +msgstr "" + +#: src/gui/settings.cpp:3909 +msgid "Table border (soft)" +msgstr "" + +#: src/gui/settings.cpp:3910 +msgid "Drag and drop target" +msgstr "" + +#: src/gui/settings.cpp:3911 +msgid "Window switcher (highlight)" +msgstr "" + +#: src/gui/settings.cpp:3912 +msgid "Window switcher backdrop" +msgstr "" + +#: src/gui/settings.cpp:3915 src/gui/settings.cpp:4136 src/gui/guiConst.cpp:235 +msgid "Miscellaneous" +msgstr "" + +#: src/gui/settings.cpp:3916 +msgid "Toggle on" +msgstr "" + +#: src/gui/settings.cpp:3917 +msgid "Toggle off" +msgstr "" + +#: src/gui/settings.cpp:3918 +msgid "Playback status" +msgstr "" + +#: src/gui/settings.cpp:3919 +msgid "Destructive hint" +msgstr "" + +#: src/gui/settings.cpp:3920 +msgid "Warning hint" +msgstr "" + +#: src/gui/settings.cpp:3921 +msgid "Error hint" +msgstr "" + +#: src/gui/settings.cpp:3924 +msgid "File Picker (built-in)" +msgstr "" + +#: src/gui/settings.cpp:3926 +msgid "Song (native)" +msgstr "" + +#: src/gui/settings.cpp:3927 +msgid "Song (import)" +msgstr "" + +#: src/gui/settings.cpp:3933 +msgid "Font" +msgstr "" + +#: src/gui/settings.cpp:3939 +msgid "Background (top-left)" +msgstr "" + +#: src/gui/settings.cpp:3940 +msgid "Background (top-right)" +msgstr "" + +#: src/gui/settings.cpp:3941 +msgid "Background (bottom-left)" +msgstr "" + +#: src/gui/settings.cpp:3942 +msgid "Background (bottom-right)" +msgstr "" + +#: src/gui/settings.cpp:3943 src/gui/settings.cpp:3998 +#: src/gui/settings.cpp:4166 src/gui/waveEdit.cpp:730 src/gui/insEdit.cpp:50 +#: src/gui/insEdit.cpp:4148 src/gui/insEdit.cpp:5812 src/gui/insEdit.cpp:6940 +#: src/gui/insEdit.cpp:6949 src/gui/insEdit.cpp:6963 src/gui/insEdit.cpp:6980 +#: src/gui/insEdit.cpp:6991 src/gui/insEdit.cpp:7004 src/gui/insEdit.cpp:7018 +#: src/gui/insEdit.cpp:7025 src/gui/insEdit.cpp:7035 src/gui/insEdit.cpp:7041 +#: src/gui/insEdit.cpp:7050 src/gui/insEdit.cpp:7074 src/gui/insEdit.cpp:7084 +#: src/gui/insEdit.cpp:7094 src/gui/insEdit.cpp:7101 src/gui/insEdit.cpp:7116 +#: src/gui/insEdit.cpp:7131 src/gui/insEdit.cpp:7151 src/gui/insEdit.cpp:7158 +#: src/gui/insEdit.cpp:7200 src/gui/insEdit.cpp:7211 src/gui/insEdit.cpp:7224 +#: src/gui/insEdit.cpp:7349 src/gui/insEdit.cpp:7425 src/gui/insEdit.cpp:7445 +#: src/gui/insEdit.cpp:7453 src/gui/insEdit.cpp:7473 +msgid "Waveform" +msgstr "" + +#: src/gui/settings.cpp:3944 +msgid "Waveform (clip)" +msgstr "" + +#: src/gui/settings.cpp:3945 +msgid "Reference" +msgstr "" + +#: src/gui/settings.cpp:3946 +msgid "Guide" +msgstr "" + +#: src/gui/settings.cpp:3948 +msgid "Wave (non-mono)" +msgstr "" + +#: src/gui/settings.cpp:3949 +msgid "Waveform (1)" +msgstr "" + +#: src/gui/settings.cpp:3950 +msgid "Waveform (2)" +msgstr "" + +#: src/gui/settings.cpp:3951 +msgid "Waveform (3)" +msgstr "" + +#: src/gui/settings.cpp:3952 +msgid "Waveform (4)" +msgstr "" + +#: src/gui/settings.cpp:3953 +msgid "Waveform (5)" +msgstr "" + +#: src/gui/settings.cpp:3954 +msgid "Waveform (6)" +msgstr "" + +#: src/gui/settings.cpp:3955 +msgid "Waveform (7)" +msgstr "" + +#: src/gui/settings.cpp:3956 +msgid "Waveform (8)" +msgstr "" + +#: src/gui/settings.cpp:3957 +msgid "Waveform (9)" +msgstr "" + +#: src/gui/settings.cpp:3958 +msgid "Waveform (10)" +msgstr "" + +#: src/gui/settings.cpp:3959 +msgid "Waveform (11)" +msgstr "" + +#: src/gui/settings.cpp:3960 +msgid "Waveform (12)" +msgstr "" + +#: src/gui/settings.cpp:3961 +msgid "Waveform (13)" +msgstr "" + +#: src/gui/settings.cpp:3962 +msgid "Waveform (14)" +msgstr "" + +#: src/gui/settings.cpp:3963 +msgid "Waveform (15)" +msgstr "" + +#: src/gui/settings.cpp:3964 +msgid "Waveform (16)" +msgstr "" + +#: src/gui/settings.cpp:3972 +msgid "Clip" +msgstr "" + +#: src/gui/settings.cpp:3976 +msgid "Order number" +msgstr "" + +#: src/gui/settings.cpp:3977 +msgid "Playing order background" +msgstr "" + +#: src/gui/settings.cpp:3978 +msgid "Song loop" +msgstr "" + +#: src/gui/settings.cpp:3979 +msgid "Selected order" +msgstr "" + +#: src/gui/settings.cpp:3980 +msgid "Similar patterns" +msgstr "" + +#: src/gui/settings.cpp:3981 +msgid "Inactive patterns" +msgstr "" + +#: src/gui/settings.cpp:3984 +msgid "Envelope View" +msgstr "" + +#: src/gui/settings.cpp:3985 src/gui/insEdit.cpp:540 src/gui/insEdit.cpp:3547 +#: src/gui/insEdit.cpp:3548 src/gui/insEdit.cpp:4081 src/gui/insEdit.cpp:4151 +#: src/gui/insEdit.cpp:4790 src/gui/insEdit.cpp:5861 src/gui/insEdit.cpp:5862 +#: src/gui/insEdit.cpp:6487 src/gui/insEdit.cpp:6488 src/gui/insEdit.cpp:6555 +#: src/gui/insEdit.cpp:6556 src/gui/insEdit.cpp:6995 src/gui/insEdit.cpp:7009 +#: src/gui/insEdit.cpp:7029 src/gui/insEdit.cpp:7166 +#, c-format +msgid "Envelope" +msgstr "" + +#: src/gui/settings.cpp:3986 +msgid "Sustain guide" +msgstr "" + +#: src/gui/settings.cpp:3992 +msgid "Algorithm background" +msgstr "" + +#: src/gui/settings.cpp:3993 +msgid "Algorithm lines" +msgstr "" + +#: src/gui/settings.cpp:3994 +msgid "Modulator" +msgstr "" + +#: src/gui/settings.cpp:3995 +msgid "Carrier" +msgstr "" + +#: src/gui/settings.cpp:3997 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:4146 +msgid "SSG-EG" +msgstr "" + +#: src/gui/settings.cpp:4000 +msgid "" +"(the following colors only apply when \"Use separate colors for carriers/" +"modulators in FM editor\" is on!)" +msgstr "" + +#: src/gui/settings.cpp:4002 +msgid "Mod. accent (primary)" +msgstr "" + +#: src/gui/settings.cpp:4003 +msgid "Mod. accent (secondary)" +msgstr "" + +#: src/gui/settings.cpp:4004 +msgid "Mod. border" +msgstr "" + +#: src/gui/settings.cpp:4005 +msgid "Mod. border shadow" +msgstr "" + +#: src/gui/settings.cpp:4007 +msgid "Car. accent (primary)" +msgstr "" + +#: src/gui/settings.cpp:4008 +msgid "Car. accent (secondary)" +msgstr "" + +#: src/gui/settings.cpp:4009 +msgid "Car. border" +msgstr "" + +#: src/gui/settings.cpp:4010 +msgid "Car. border shadow" +msgstr "" + +#: src/gui/settings.cpp:4016 src/gui/guiConst.cpp:227 src/gui/insEdit.cpp:6924 +#: src/gui/insEdit.cpp:6931 src/gui/insEdit.cpp:6942 src/gui/insEdit.cpp:6950 +#: src/gui/insEdit.cpp:6971 src/gui/insEdit.cpp:6983 src/gui/insEdit.cpp:6993 +#: src/gui/insEdit.cpp:7006 src/gui/insEdit.cpp:7019 src/gui/insEdit.cpp:7028 +#: src/gui/insEdit.cpp:7036 src/gui/insEdit.cpp:7042 src/gui/insEdit.cpp:7052 +#: src/gui/insEdit.cpp:7061 src/gui/insEdit.cpp:7068 src/gui/insEdit.cpp:7075 +#: src/gui/insEdit.cpp:7087 src/gui/insEdit.cpp:7095 src/gui/insEdit.cpp:7102 +#: src/gui/insEdit.cpp:7109 src/gui/insEdit.cpp:7117 src/gui/insEdit.cpp:7123 +#: src/gui/insEdit.cpp:7132 src/gui/insEdit.cpp:7143 src/gui/insEdit.cpp:7153 +#: src/gui/insEdit.cpp:7161 src/gui/insEdit.cpp:7174 src/gui/insEdit.cpp:7182 +#: src/gui/insEdit.cpp:7193 src/gui/insEdit.cpp:7203 src/gui/insEdit.cpp:7213 +#: src/gui/insEdit.cpp:7227 src/gui/insEdit.cpp:7233 src/gui/insEdit.cpp:7241 +#: src/gui/insEdit.cpp:7248 src/gui/insEdit.cpp:7272 src/gui/insEdit.cpp:7280 +#: src/gui/insEdit.cpp:7289 src/gui/insEdit.cpp:7298 src/gui/insEdit.cpp:7306 +#: src/gui/insEdit.cpp:7323 src/gui/insEdit.cpp:7331 src/gui/insEdit.cpp:7337 +#: src/gui/insEdit.cpp:7344 src/gui/insEdit.cpp:7350 src/gui/insEdit.cpp:7355 +#: src/gui/insEdit.cpp:7361 src/gui/insEdit.cpp:7368 src/gui/insEdit.cpp:7376 +#: src/gui/insEdit.cpp:7385 src/gui/insEdit.cpp:7393 src/gui/insEdit.cpp:7401 +#: src/gui/insEdit.cpp:7413 src/gui/insEdit.cpp:7428 src/gui/insEdit.cpp:7439 +#: src/gui/insEdit.cpp:7447 src/gui/insEdit.cpp:7456 src/gui/insEdit.cpp:7466 +#: src/gui/insEdit.cpp:7474 +msgid "Pitch" +msgstr "" + +#: src/gui/settings.cpp:4021 +msgid "Instrument Types" +msgstr "" + +#: src/gui/settings.cpp:4022 +msgid "FM (OPN)" +msgstr "" + +#: src/gui/settings.cpp:4023 +msgid "SN76489/Sega PSG" +msgstr "" + +#: src/gui/settings.cpp:4026 +msgid "C64" +msgstr "" + +#: src/gui/settings.cpp:4027 +msgid "Amiga/Generic Sample" +msgstr "" + +#: src/gui/settings.cpp:4028 +msgid "PC Engine" +msgstr "" + +#: src/gui/settings.cpp:4029 +msgid "AY-3-8910/SSG" +msgstr "" + +#: src/gui/settings.cpp:4030 +msgid "AY8930" +msgstr "" + +#: src/gui/settings.cpp:4031 +msgid "TIA" +msgstr "" + +#: src/gui/settings.cpp:4032 +msgid "SAA1099" +msgstr "" + +#: src/gui/settings.cpp:4033 +msgid "VIC" +msgstr "" + +#: src/gui/settings.cpp:4034 +msgid "PET" +msgstr "" + +#: src/gui/settings.cpp:4035 +msgid "VRC6" +msgstr "" + +#: src/gui/settings.cpp:4036 src/gui/guiConst.cpp:149 +msgid "VRC6 (saw)" +msgstr "" + +#: src/gui/settings.cpp:4037 +msgid "FM (OPLL)" +msgstr "" + +#: src/gui/settings.cpp:4038 +msgid "FM (OPL)" +msgstr "" + +#: src/gui/settings.cpp:4043 +msgid "FM (OPZ)" +msgstr "" + +#: src/gui/settings.cpp:4045 +msgid "PC Beeper" +msgstr "" + +#: src/gui/settings.cpp:4047 +msgid "Lynx" +msgstr "" + +#: src/gui/settings.cpp:4049 +msgid "X1-010" +msgstr "" + +#: src/gui/settings.cpp:4050 +msgid "ES5506" +msgstr "" + +#: src/gui/settings.cpp:4053 +msgid "Sound Unit" +msgstr "" + +#: src/gui/settings.cpp:4055 +msgid "FM (OPL Drums)" +msgstr "" + +#: src/gui/settings.cpp:4056 +msgid "FM (OPM)" +msgstr "" + +#: src/gui/settings.cpp:4057 +msgid "NES" +msgstr "" + +#: src/gui/settings.cpp:4058 +msgid "MSM6258" +msgstr "" + +#: src/gui/settings.cpp:4059 +msgid "MSM6295" +msgstr "" + +#: src/gui/settings.cpp:4060 +msgid "ADPCM-A" +msgstr "" + +#: src/gui/settings.cpp:4062 +msgid "Sega PCM" +msgstr "" + +#: src/gui/settings.cpp:4063 +msgid "QSound" +msgstr "" + +#: src/gui/settings.cpp:4064 +msgid "YMZ280B" +msgstr "" + +#: src/gui/settings.cpp:4065 +msgid "RF5C68" +msgstr "" + +#: src/gui/settings.cpp:4066 +msgid "MSM5232" +msgstr "" + +#: src/gui/settings.cpp:4067 +msgid "K007232" +msgstr "" + +#: src/gui/settings.cpp:4068 +msgid "GA20" +msgstr "" + +#: src/gui/settings.cpp:4070 +msgid "SM8521" +msgstr "" + +#: src/gui/settings.cpp:4071 +msgid "PV-1000" +msgstr "" + +#: src/gui/settings.cpp:4072 +msgid "K053260" +msgstr "" + +#: src/gui/settings.cpp:4073 +msgid "TED" +msgstr "" + +#: src/gui/settings.cpp:4074 +msgid "C140" +msgstr "" + +#: src/gui/settings.cpp:4075 +msgid "C219" +msgstr "" + +#: src/gui/settings.cpp:4076 +msgid "ESFM" +msgstr "" + +#: src/gui/settings.cpp:4077 src/gui/guiConst.cpp:179 +msgid "PowerNoise (noise)" +msgstr "" + +#: src/gui/settings.cpp:4078 src/gui/guiConst.cpp:180 +msgid "PowerNoise (slope)" +msgstr "" + +#: src/gui/settings.cpp:4081 +msgid "GBA DMA" +msgstr "" + +#: src/gui/settings.cpp:4082 +msgid "GBA MinMod" +msgstr "" + +#: src/gui/settings.cpp:4085 +msgid "Other/Unknown" +msgstr "" + +#: src/gui/settings.cpp:4089 +msgid "Single color (background)" +msgstr "" + +#: src/gui/settings.cpp:4090 +msgid "Single color (text)" +msgstr "" + +#: src/gui/settings.cpp:4091 src/gui/guiConst.cpp:1393 src/gui/waveEdit.cpp:668 +msgid "FM" +msgstr "" + +#: src/gui/settings.cpp:4096 +msgid "FM operator" +msgstr "" + +#: src/gui/settings.cpp:4097 +msgid "Muted" +msgstr "" + +#: src/gui/settings.cpp:4101 +msgid "Playhead" +msgstr "" + +#: src/gui/settings.cpp:4102 +msgid "Editing" +msgstr "" + +#: src/gui/settings.cpp:4103 +msgid "Editing (will clone)" +msgstr "" + +#: src/gui/settings.cpp:4104 +msgid "Cursor" +msgstr "" + +#: src/gui/settings.cpp:4105 +msgid "Cursor (hovered)" +msgstr "" + +#: src/gui/settings.cpp:4106 +msgid "Cursor (clicked)" +msgstr "" + +#: src/gui/settings.cpp:4107 src/gui/settings.cpp:4172 +#: src/gui/findReplace.cpp:791 +msgid "Selection" +msgstr "" + +#: src/gui/settings.cpp:4108 +msgid "Selection (hovered)" +msgstr "" + +#: src/gui/settings.cpp:4109 +msgid "Selection (clicked)" +msgstr "" + +#: src/gui/settings.cpp:4110 +msgid "Highlight 1" +msgstr "" + +#: src/gui/settings.cpp:4111 +msgid "Highlight 2" +msgstr "" + +#: src/gui/settings.cpp:4112 +msgid "Row number" +msgstr "" + +#: src/gui/settings.cpp:4113 +msgid "Row number (highlight 1)" +msgstr "" + +#: src/gui/settings.cpp:4114 +msgid "Row number (highlight 2)" +msgstr "" + +#: src/gui/settings.cpp:4116 +msgid "Note (highlight 1)" +msgstr "" + +#: src/gui/settings.cpp:4117 +msgid "Note (highlight 2)" +msgstr "" + +#: src/gui/settings.cpp:4118 +msgid "Blank" +msgstr "" + +#: src/gui/settings.cpp:4119 +msgid "Blank (highlight 1)" +msgstr "" + +#: src/gui/settings.cpp:4120 +msgid "Blank (highlight 2)" +msgstr "" + +#: src/gui/settings.cpp:4122 +msgid "Instrument (invalid type)" +msgstr "" + +#: src/gui/settings.cpp:4123 +msgid "Instrument (out of range)" +msgstr "" + +#: src/gui/settings.cpp:4124 +msgid "Volume (0%)" +msgstr "" + +#: src/gui/settings.cpp:4125 +msgid "Volume (50%)" +msgstr "" + +#: src/gui/settings.cpp:4126 +msgid "Volume (100%)" +msgstr "" + +#: src/gui/settings.cpp:4128 +msgid "Pitch effect" +msgstr "" + +#: src/gui/settings.cpp:4129 +msgid "Volume effect" +msgstr "" + +#: src/gui/settings.cpp:4130 +msgid "Panning effect" +msgstr "" + +#: src/gui/settings.cpp:4131 +msgid "Song effect" +msgstr "" + +#: src/gui/settings.cpp:4132 +msgid "Time effect" +msgstr "" + +#: src/gui/settings.cpp:4133 +msgid "Speed effect" +msgstr "" + +#: src/gui/settings.cpp:4134 +msgid "Primary specific effect" +msgstr "" + +#: src/gui/settings.cpp:4135 +msgid "Secondary specific effect" +msgstr "" + +#: src/gui/settings.cpp:4137 +msgid "External command output" +msgstr "" + +#: src/gui/settings.cpp:4138 +msgid "Status: off/disabled" +msgstr "" + +#: src/gui/settings.cpp:4139 +msgid "Status: off + macro rel" +msgstr "" + +#: src/gui/settings.cpp:4140 +msgid "Status: on + macro rel" +msgstr "" + +#: src/gui/settings.cpp:4141 +msgid "Status: on" +msgstr "" + +#: src/gui/settings.cpp:4142 +msgid "Status: volume" +msgstr "" + +#: src/gui/settings.cpp:4143 +msgid "Status: pitch" +msgstr "" + +#: src/gui/settings.cpp:4144 +msgid "Status: panning" +msgstr "" + +#: src/gui/settings.cpp:4145 +msgid "Status: chip (primary)" +msgstr "" + +#: src/gui/settings.cpp:4146 +msgid "Status: chip (secondary)" +msgstr "" + +#: src/gui/settings.cpp:4147 +msgid "Status: mixing" +msgstr "" + +#: src/gui/settings.cpp:4148 +msgid "Status: DSP effect" +msgstr "" + +#: src/gui/settings.cpp:4149 +msgid "Status: note altering" +msgstr "" + +#: src/gui/settings.cpp:4150 +msgid "Status: misc color 1" +msgstr "" + +#: src/gui/settings.cpp:4151 +msgid "Status: misc color 2" +msgstr "" + +#: src/gui/settings.cpp:4152 +msgid "Status: misc color 3" +msgstr "" + +#: src/gui/settings.cpp:4153 +msgid "Status: attack" +msgstr "" + +#: src/gui/settings.cpp:4154 +msgid "Status: decay" +msgstr "" + +#: src/gui/settings.cpp:4155 +msgid "Status: sustain" +msgstr "" + +#: src/gui/settings.cpp:4156 +msgid "Status: release" +msgstr "" + +#: src/gui/settings.cpp:4157 +msgid "Status: decrease linear" +msgstr "" + +#: src/gui/settings.cpp:4158 +msgid "Status: decrease exp" +msgstr "" + +#: src/gui/settings.cpp:4159 +msgid "Status: increase" +msgstr "" + +#: src/gui/settings.cpp:4160 +msgid "Status: bent" +msgstr "" + +#: src/gui/settings.cpp:4161 +msgid "Status: direct" +msgstr "" + +#: src/gui/settings.cpp:4164 src/gui/guiConst.cpp:586 src/gui/sampleEdit.cpp:96 +msgid "Sample Editor" +msgstr "" + +#: src/gui/settings.cpp:4167 +msgid "Time background" +msgstr "" + +#: src/gui/settings.cpp:4168 +msgid "Time text" +msgstr "" + +#: src/gui/settings.cpp:4169 +msgid "Loop region" +msgstr "" + +#: src/gui/settings.cpp:4170 +msgid "Center guide" +msgstr "" + +#: src/gui/settings.cpp:4171 +msgid "Grid" +msgstr "" + +#: src/gui/settings.cpp:4173 +msgid "Selection points" +msgstr "" + +#: src/gui/settings.cpp:4174 +msgid "Preview needle" +msgstr "" + +#: src/gui/settings.cpp:4175 +msgid "Playing needles" +msgstr "" + +#: src/gui/settings.cpp:4176 +msgid "Loop markers" +msgstr "" + +#: src/gui/settings.cpp:4177 +msgid "Chip select: disabled" +msgstr "" + +#: src/gui/settings.cpp:4178 +msgid "Chip select: enabled" +msgstr "" + +#: src/gui/settings.cpp:4179 +msgid "Chip select: enabled (failure)" +msgstr "" + +#: src/gui/settings.cpp:4182 src/gui/guiConst.cpp:602 src/gui/patManager.cpp:35 +msgid "Pattern Manager" +msgstr "" + +#: src/gui/settings.cpp:4183 +msgid "Unallocated" +msgstr "" + +#: src/gui/settings.cpp:4184 +msgid "Unused" +msgstr "" + +#: src/gui/settings.cpp:4185 +msgid "Used" +msgstr "" + +#: src/gui/settings.cpp:4186 +msgid "Overused" +msgstr "" + +#: src/gui/settings.cpp:4187 +msgid "Really overused" +msgstr "" + +#: src/gui/settings.cpp:4188 +msgid "Combo Breaker" +msgstr "" + +#: src/gui/settings.cpp:4191 src/gui/guiConst.cpp:599 src/gui/piano.cpp:63 +msgid "Piano" +msgstr "" + +#: src/gui/settings.cpp:4193 +msgid "Upper key" +msgstr "" + +#: src/gui/settings.cpp:4194 +msgid "Upper key (feedback)" +msgstr "" + +#: src/gui/settings.cpp:4195 +msgid "Upper key (pressed)" +msgstr "" + +#: src/gui/settings.cpp:4196 +msgid "Lower key" +msgstr "" + +#: src/gui/settings.cpp:4197 +msgid "Lower key (feedback)" +msgstr "" + +#: src/gui/settings.cpp:4198 +msgid "Lower key (pressed)" +msgstr "" + +#: src/gui/settings.cpp:4201 src/gui/clock.cpp:31 src/gui/guiConst.cpp:610 +msgid "Clock" +msgstr "" + +#: src/gui/settings.cpp:4202 +msgid "Clock text" +msgstr "" + +#: src/gui/settings.cpp:4203 +msgid "Beat (off)" +msgstr "" + +#: src/gui/settings.cpp:4204 +msgid "Beat (on)" +msgstr "" + +#: src/gui/settings.cpp:4209 +msgid "PortSet" +msgstr "" + +#: src/gui/settings.cpp:4210 +msgid "Port" +msgstr "" + +#: src/gui/settings.cpp:4211 +msgid "Port (hidden/unavailable)" +msgstr "" + +#: src/gui/settings.cpp:4212 +msgid "Connection (selected)" +msgstr "" + +#: src/gui/settings.cpp:4213 +msgid "Connection (other)" +msgstr "" + +#: src/gui/settings.cpp:4219 +msgid "Waveform data" +msgstr "" + +#: src/gui/settings.cpp:4222 +msgid "Reserved" +msgstr "" + +#: src/gui/settings.cpp:4224 +msgid "Sample (alternate 1)" +msgstr "" + +#: src/gui/settings.cpp:4225 +msgid "Sample (alternate 2)" +msgstr "" + +#: src/gui/settings.cpp:4226 +msgid "Sample (alternate 3)" +msgstr "" + +#: src/gui/settings.cpp:4227 +msgid "Wave RAM" +msgstr "" + +#: src/gui/settings.cpp:4228 +msgid "Wavetable (static)" +msgstr "" + +#: src/gui/settings.cpp:4229 +msgid "Echo buffer" +msgstr "" + +#: src/gui/settings.cpp:4230 +msgid "Namco 163 load pos" +msgstr "" + +#: src/gui/settings.cpp:4231 +msgid "Namco 163 play pos" +msgstr "" + +#: src/gui/settings.cpp:4232 +msgid "Sample (bank 0)" +msgstr "" + +#: src/gui/settings.cpp:4233 +msgid "Sample (bank 1)" +msgstr "" + +#: src/gui/settings.cpp:4234 +msgid "Sample (bank 2)" +msgstr "" + +#: src/gui/settings.cpp:4235 +msgid "Sample (bank 3)" +msgstr "" + +#: src/gui/settings.cpp:4236 +msgid "Sample (bank 4)" +msgstr "" + +#: src/gui/settings.cpp:4237 +msgid "Sample (bank 5)" +msgstr "" + +#: src/gui/settings.cpp:4238 +msgid "Sample (bank 6)" +msgstr "" + +#: src/gui/settings.cpp:4239 +msgid "Sample (bank 7)" +msgstr "" + +#: src/gui/settings.cpp:4244 +msgid "Log level: Error" +msgstr "" + +#: src/gui/settings.cpp:4245 +msgid "Log level: Warning" +msgstr "" + +#: src/gui/settings.cpp:4246 +msgid "Log level: Info" +msgstr "" + +#: src/gui/settings.cpp:4247 +msgid "Log level: Debug" +msgstr "" + +#: src/gui/settings.cpp:4248 +msgid "Log level: Trace/Verbose" +msgstr "" + +#: src/gui/settings.cpp:4253 +msgid "Backup" +msgstr "" + +#: src/gui/settings.cpp:4258 +msgid "Enable backup system" +msgstr "" + +#: src/gui/settings.cpp:4263 +msgid "Interval (in seconds)" +msgstr "" + +#: src/gui/settings.cpp:4268 +msgid "Backups per file" +msgstr "" + +#: src/gui/settings.cpp:4274 +msgid "Backup Management" +msgstr "" + +#: src/gui/settings.cpp:4278 +msgid "Purge before:" +msgstr "" + +#: src/gui/settings.cpp:4352 +msgid "Go##PDate" +msgstr "" + +#: src/gui/settings.cpp:4359 +#, c-format +msgid "%PB used" +msgstr "" + +#: src/gui/settings.cpp:4361 +#, c-format +msgid "%TB used" +msgstr "" + +#: src/gui/settings.cpp:4363 +#, c-format +msgid "%GB used" +msgstr "" + +#: src/gui/settings.cpp:4365 +#, c-format +msgid "%MB used" +msgstr "" + +#: src/gui/settings.cpp:4367 +#, c-format +msgid "%KB used" +msgstr "" + +#: src/gui/settings.cpp:4369 +#, c-format +msgid "% bytes used" +msgstr "" + +#: src/gui/settings.cpp:4374 +msgid "Refresh" +msgstr "" + +#: src/gui/settings.cpp:4378 +msgid "Delete all" +msgstr "" + +#: src/gui/settings.cpp:4384 src/gui/settings.cpp:6688 +msgid "Size" +msgstr "" + +#: src/gui/settings.cpp:4385 +msgid "Latest" +msgstr "" + +#: src/gui/settings.cpp:4395 +#, c-format +msgid "%P" +msgstr "" + +#: src/gui/settings.cpp:4397 +#, c-format +msgid "%T" +msgstr "" + +#: src/gui/settings.cpp:4399 +#, c-format +msgid "%G" +msgstr "" + +#: src/gui/settings.cpp:4401 +#, c-format +msgid "%M" +msgstr "" + +#: src/gui/settings.cpp:4403 +#, c-format +msgid "%K" +msgstr "" + +#: src/gui/settings.cpp:4405 +#, c-format +msgid "%" +msgstr "" + +#: src/gui/settings.cpp:4529 +msgid "Cheat Codes" +msgstr "" + +#: src/gui/settings.cpp:4531 +msgid "Enter code:" +msgstr "" + +#: src/gui/settings.cpp:4533 +msgid "Submit" +msgstr "" + +#: src/gui/settings.cpp:4537 +msgid "invalid code" +msgstr "" + +#: src/gui/settings.cpp:4547 +msgid "toggled alternate UI" +msgstr "" + +#: src/gui/settings.cpp:4551 +msgid ":smile: :star_struck: :sunglasses: :ok_hand:" +msgstr "" + +#: src/gui/settings.cpp:4555 +msgid "enabled all instrument types" +msgstr "" + +#: src/gui/settings.cpp:4559 +msgid "OK, if I bring your Partial pitch linearity will you stop bothering me?" +msgstr "" + +#: src/gui/settings.cpp:4563 +msgid "unlocked audio multi-threading options!" +msgstr "" + +#: src/gui/settings.cpp:4567 +msgid "enabled \"comfortable\" mode" +msgstr "" + +#: src/gui/settings.cpp:4585 +msgid "OK##SettingsOK" +msgstr "" + +#: src/gui/settings.cpp:4591 +msgid "Cancel##SettingsCancel" +msgstr "" + +#: src/gui/settings.cpp:4599 +msgid "Apply##SettingsApply" +msgstr "" + +#: src/gui/settings.cpp:5673 +msgid "could not initialize audio!" +msgstr "" + +#: src/gui/settings.cpp:5683 src/gui/gui.cpp:4067 src/gui/gui.cpp:6662 +#: src/gui/gui.cpp:7088 +msgid "error while loading fonts! please check your settings." +msgstr "" + +#: src/gui/settings.cpp:5862 +#, c-format +msgid "error while loading config! (%s)" +msgstr "" + +#: src/gui/settings.cpp:6675 +msgid "[Dir]" +msgstr "" + +#: src/gui/settings.cpp:6676 +msgid "[Link]" +msgstr "" + +#: src/gui/settings.cpp:6677 +msgid "[File]" +msgstr "" + +#: src/gui/settings.cpp:6678 +msgid "Name:" +msgstr "" + +#: src/gui/settings.cpp:6679 +msgid "Path:" +msgstr "" + +#: src/gui/settings.cpp:6680 +msgid "Reset search" +msgstr "" + +#: src/gui/settings.cpp:6681 +msgid "Drives" +msgstr "" + +#: src/gui/settings.cpp:6682 +msgid "" +"Edit path\n" +"You can also right click on path buttons" +msgstr "" + +#: src/gui/settings.cpp:6683 +msgid "Go to home directory" +msgstr "" + +#: src/gui/settings.cpp:6684 +msgid "Go to parent directory" +msgstr "" + +#: src/gui/settings.cpp:6685 +msgid "Create Directory" +msgstr "" + +#: src/gui/settings.cpp:6686 +msgid "File name" +msgstr "" + +#: src/gui/settings.cpp:6689 +msgid "Date" +msgstr "" + +#: src/gui/settings.cpp:6690 src/gui/gui.cpp:5510 src/gui/gui.cpp:5645 +#: src/gui/gui.cpp:5646 +msgid "Warning" +msgstr "" + +#: src/gui/settings.cpp:6691 +msgid "The file you selected already exists! Would you like to overwrite it?" +msgstr "" + +#: src/gui/settings.cpp:6692 src/gui/gui.cpp:5650 src/gui/gui.cpp:5674 +#: src/gui/gui.cpp:5698 src/gui/gui.cpp:5722 src/gui/gui.cpp:5746 +#: src/gui/gui.cpp:5770 src/gui/gui.cpp:5802 src/gui/gui.cpp:5818 +#: src/gui/gui.cpp:5829 src/gui/gui.cpp:5841 src/gui/gui.cpp:5995 +#: src/gui/gui.cpp:6017 src/gui/gui.cpp:6032 src/gui/gui.cpp:6043 +msgid "Yes" +msgstr "" + +#: src/gui/settings.cpp:6693 src/gui/findReplace.cpp:828 src/gui/gui.cpp:5664 +#: src/gui/gui.cpp:5688 src/gui/gui.cpp:5712 src/gui/gui.cpp:5736 +#: src/gui/gui.cpp:5760 src/gui/gui.cpp:5788 src/gui/gui.cpp:5813 +#: src/gui/gui.cpp:5824 src/gui/gui.cpp:5836 src/gui/gui.cpp:5848 +#: src/gui/gui.cpp:6012 src/gui/gui.cpp:6027 src/gui/gui.cpp:6037 +#: src/gui/gui.cpp:6050 +msgid "No" +msgstr "" + +#: src/gui/settings.cpp:6694 +msgid "%Y/%m/%d %H:%M" +msgstr "" + +#: src/gui/orders.cpp:114 +msgid "Add new order" +msgstr "" + +#: src/gui/orders.cpp:125 src/gui/guiConst.cpp:794 +msgid "Remove order" +msgstr "" + +#: src/gui/orders.cpp:137 +msgid "Duplicate order (right-click to deep clone)" +msgstr "" + +#: src/gui/orders.cpp:146 src/gui/guiConst.cpp:795 +msgid "Move order up" +msgstr "" + +#: src/gui/orders.cpp:155 src/gui/guiConst.cpp:796 +msgid "Move order down" +msgstr "" + +#: src/gui/orders.cpp:167 +msgid "Place copy of current order at end of song (right-click to deep clone)" +msgstr "" + +#: src/gui/orders.cpp:177 +msgid "Order change mode: entire row" +msgstr "" + +#: src/gui/orders.cpp:179 +msgid "Order change mode: one" +msgstr "" + +#: src/gui/orders.cpp:205 +msgid "Order edit mode: Select and type (scroll vertically)" +msgstr "" + +#: src/gui/orders.cpp:207 +msgid "Order edit mode: Select and type (scroll horizontally)" +msgstr "" + +#: src/gui/orders.cpp:209 +msgid "Order edit mode: Select and type (don't scroll)" +msgstr "" + +#: src/gui/orders.cpp:211 +msgid "Order edit mode: Click to change" +msgstr "" + +#: src/gui/findReplace.cpp:29 +msgid "ignore" +msgstr "" + +#: src/gui/findReplace.cpp:30 +msgid "equals" +msgstr "" + +#: src/gui/findReplace.cpp:31 +msgid "not equal" +msgstr "" + +#: src/gui/findReplace.cpp:32 +msgid "between" +msgstr "" + +#: src/gui/findReplace.cpp:33 +msgid "not between" +msgstr "" + +#: src/gui/findReplace.cpp:34 +msgid "any" +msgstr "" + +#: src/gui/findReplace.cpp:35 src/gui/guiConst.cpp:217 +msgid "none" +msgstr "" + +#: src/gui/findReplace.cpp:39 +msgid "set" +msgstr "" + +#: src/gui/findReplace.cpp:40 +msgid "add" +msgstr "" + +#: src/gui/findReplace.cpp:41 +msgid "add (overflow)" +msgstr "" + +#: src/gui/findReplace.cpp:42 +msgid "scale %" +msgstr "" + +#: src/gui/findReplace.cpp:512 src/gui/guiConst.cpp:609 +msgid "Find/Replace" +msgstr "" + +#: src/gui/findReplace.cpp:520 src/gui/findReplace.cpp:850 +msgid "Find" +msgstr "" + +#: src/gui/findReplace.cpp:526 src/gui/findReplace.cpp:535 +msgid "order" +msgstr "" + +#: src/gui/findReplace.cpp:527 src/gui/findReplace.cpp:537 +msgid "row" +msgstr "" + +#: src/gui/findReplace.cpp:539 src/gui/csPlayer.cpp:146 +msgid "channel" +msgstr "" + +#: src/gui/findReplace.cpp:541 +msgid "go" +msgstr "" + +#: src/gui/findReplace.cpp:585 +msgid "no matches found!" +msgstr "" + +#: src/gui/findReplace.cpp:587 +msgid "Back" +msgstr "" + +#: src/gui/findReplace.cpp:750 +msgid "Delete query" +msgstr "" + +#: src/gui/findReplace.cpp:754 src/gui/findReplace.cpp:1037 +msgid "Add effect" +msgstr "" + +#: src/gui/findReplace.cpp:761 src/gui/findReplace.cpp:1044 +msgid "Remove effect" +msgstr "" + +#: src/gui/findReplace.cpp:786 +msgid "Search range:" +msgstr "" + +#: src/gui/findReplace.cpp:799 +msgid "Confine to channels" +msgstr "" + +#: src/gui/findReplace.cpp:803 src/gui/sampleEdit.cpp:1152 +msgid "From" +msgstr "" + +#: src/gui/findReplace.cpp:814 src/gui/sampleEdit.cpp:1156 +msgid "To" +msgstr "" + +#: src/gui/findReplace.cpp:826 +msgid "Match effect position:" +msgstr "" + +#: src/gui/findReplace.cpp:832 +msgid "match effects regardless of position." +msgstr "" + +#: src/gui/findReplace.cpp:834 src/gui/compatFlags.cpp:288 +msgid "Lax" +msgstr "" + +#: src/gui/findReplace.cpp:838 +msgid "match effects only if they appear in-order." +msgstr "" + +#: src/gui/findReplace.cpp:840 src/gui/compatFlags.cpp:276 +msgid "Strict" +msgstr "" + +#: src/gui/findReplace.cpp:844 +msgid "match effects only if they appear exactly as specified." +msgstr "" + +#: src/gui/findReplace.cpp:856 +msgid "Replace" +msgstr "" + +#: src/gui/findReplace.cpp:908 +msgid "INVALID" +msgstr "" + +#: src/gui/findReplace.cpp:1052 +msgid "Effect replace mode:" +msgstr "" + +#: src/gui/findReplace.cpp:1053 +msgid "Replace matches only" +msgstr "" + +#: src/gui/findReplace.cpp:1056 +msgid "Replace matches, then free spaces" +msgstr "" + +#: src/gui/findReplace.cpp:1059 +msgid "Clear effects" +msgstr "" + +#: src/gui/findReplace.cpp:1062 +msgid "Insert in free spaces" +msgstr "" + +#: src/gui/findReplace.cpp:1065 +msgid "Replace##QueryReplace" +msgstr "" + +#: src/gui/about.cpp:26 +msgid "is proud to present" +msgstr "" + +#: src/gui/about.cpp:30 +msgid "the biggest multi-system chiptune tracker!" +msgstr "" + +#: src/gui/about.cpp:31 +msgid "featuring DefleMask song compatibility." +msgstr "" + +#: src/gui/about.cpp:33 +msgid "> CREDITS <" +msgstr "" + +#: src/gui/about.cpp:35 +msgid "-- program --" +msgstr "" + +#: src/gui/about.cpp:37 +msgid "A M 4 N (intro tune)" +msgstr "" + +#: src/gui/about.cpp:52 +msgid "-- graphics/UI design --" +msgstr "" + +#: src/gui/about.cpp:59 +msgid "-- documentation --" +msgstr "" + +#: src/gui/about.cpp:69 +msgid "-- localization/translation team --" +msgstr "" + +#: src/gui/about.cpp:81 +msgid "-- demo songs --" +msgstr "" + +#: src/gui/about.cpp:207 +msgid "-- additional feedback/fixes --" +msgstr "" + +#: src/gui/about.cpp:218 +msgid "-- Metal backend test team --" +msgstr "" + +#: src/gui/about.cpp:224 +msgid "-- DirectX 9 backend test team --" +msgstr "" + +#: src/gui/about.cpp:231 +msgid "powered by:" +msgstr "" + +#: src/gui/about.cpp:232 +msgid "Dear ImGui by Omar Cornut" +msgstr "" + +#: src/gui/about.cpp:233 +msgid "SDL2 by Sam Lantinga" +msgstr "" + +#: src/gui/about.cpp:237 +msgid "zlib by Jean-loup Gailly" +msgstr "" + +#: src/gui/about.cpp:238 +msgid "and Mark Adler" +msgstr "" + +#: src/gui/about.cpp:239 +msgid "libsndfile by Erik de Castro Lopo" +msgstr "" + +#: src/gui/about.cpp:240 +msgid "Portable File Dialogs by Sam Hocevar" +msgstr "" + +#: src/gui/about.cpp:241 +msgid "Native File Dialog by Frogtoss Games" +msgstr "" + +#: src/gui/about.cpp:243 +msgid "Weak-JACK by x42" +msgstr "" + +#: src/gui/about.cpp:244 +msgid "RtMidi by Gary P. Scavone" +msgstr "" + +#: src/gui/about.cpp:245 +msgid "FFTW by Matteo Frigo and Steven G. Johnson" +msgstr "" + +#: src/gui/about.cpp:246 +msgid "backward-cpp by Google" +msgstr "" + +#: src/gui/about.cpp:247 +msgid "adpcm by superctr" +msgstr "" + +#: src/gui/about.cpp:248 +msgid "adpcm-xq by David Bryant" +msgstr "" + +#: src/gui/about.cpp:249 +msgid "Nuked-OPL3/OPLL/OPM/OPN2/PSG by nukeykt" +msgstr "" + +#: src/gui/about.cpp:250 +msgid "YM3812-LLE, YMF262-LLE, YMF276-LLE and YM2608-LLE by nukeykt" +msgstr "" + +#: src/gui/about.cpp:251 +msgid "ESFMu (modified version) by Kagamiin~" +msgstr "" + +#: src/gui/about.cpp:252 +msgid "ymfm by Aaron Giles" +msgstr "" + +#: src/gui/about.cpp:253 +msgid "emu2413 by Digital Sound Antiques" +msgstr "" + +#: src/gui/about.cpp:254 +msgid "MAME SN76496 by Nicola Salmoria" +msgstr "" + +#: src/gui/about.cpp:255 +msgid "MAME AY-3-8910 by Couriersud" +msgstr "" + +#: src/gui/about.cpp:256 +msgid "with AY8930 fixes by Eulous, cam900 and Grauw" +msgstr "" + +#: src/gui/about.cpp:257 +msgid "MAME SAA1099 by Juergen Buchmueller and Manuel Abadia" +msgstr "" + +#: src/gui/about.cpp:258 +msgid "MAME Namco WSG by Nicola Salmoria and Aaron Giles" +msgstr "" + +#: src/gui/about.cpp:259 +msgid "MAME RF5C68 core by Olivier Galibert and Aaron Giles" +msgstr "" + +#: src/gui/about.cpp:260 +msgid "MAME MSM5232 core by Jarek Burczynski and Hiromitsu Shioya" +msgstr "" + +#: src/gui/about.cpp:261 +msgid "MAME MSM6258 core by Barry Rodewald" +msgstr "" + +#: src/gui/about.cpp:262 +msgid "MAME YMZ280B core by Aaron Giles" +msgstr "" + +#: src/gui/about.cpp:263 +msgid "MAME GA20 core by Acho A. Tang and R. Belmont" +msgstr "" + +#: src/gui/about.cpp:264 +msgid "MAME SegaPCM core by Hiromitsu Shioya and Olivier Galibert" +msgstr "" + +#: src/gui/about.cpp:265 +msgid "SAASound by Dave Hooper and Simon Owen" +msgstr "" + +#: src/gui/about.cpp:266 +msgid "SameBoy by Lior Halphon" +msgstr "" + +#: src/gui/about.cpp:267 +msgid "Mednafen PCE, WonderSwan, T6W28 and Virtual Boy audio cores" +msgstr "" + +#: src/gui/about.cpp:268 +msgid "SNES DSP core by Blargg" +msgstr "" + +#: src/gui/about.cpp:269 +msgid "puNES (NES, MMC5 and FDS) by FHorse" +msgstr "" + +#: src/gui/about.cpp:270 +msgid "NSFPlay (NES and FDS) by Brad Smith and Brezza" +msgstr "" + +#: src/gui/about.cpp:271 +msgid "reSID by Dag Lem" +msgstr "" + +#: src/gui/about.cpp:272 +msgid "reSIDfp by Dag Lem, Antti Lankila" +msgstr "" + +#: src/gui/about.cpp:273 +msgid "and Leandro Nini" +msgstr "" + +#: src/gui/about.cpp:274 +msgid "dSID by DefleMask Team based on jsSID" +msgstr "" + +#: src/gui/about.cpp:275 +msgid "Stella by Stella Team" +msgstr "" + +#: src/gui/about.cpp:276 +msgid "QSound emulator by superctr and Valley Bell" +msgstr "" + +#: src/gui/about.cpp:277 +msgid "VICE VIC-20 sound core by Rami Rasanen and viznut" +msgstr "" + +#: src/gui/about.cpp:278 +msgid "VICE TED sound core by Andreas Boose, Tibor Biczo" +msgstr "" + +#: src/gui/about.cpp:279 +msgid "and Marco van den Heuvel" +msgstr "" + +#: src/gui/about.cpp:280 +msgid "VERA sound core by Frank van den Hoef" +msgstr "" + +#: src/gui/about.cpp:281 +msgid "mzpokeysnd POKEY emulator by Michael Borisov" +msgstr "" + +#: src/gui/about.cpp:282 +msgid "ASAP POKEY emulator by Piotr Fusik" +msgstr "" + +#: src/gui/about.cpp:283 +msgid "ported by laoo to C++" +msgstr "" + +#: src/gui/about.cpp:284 +msgid "vgsound_emu (second version, modified version) by cam900" +msgstr "" + +#: src/gui/about.cpp:285 +msgid "SM8521 emulator (modified version) by cam900" +msgstr "" + +#: src/gui/about.cpp:286 +msgid "D65010G031 emulator (modified version) by cam900" +msgstr "" + +#: src/gui/about.cpp:287 +msgid "Namco C140/C219 emulator (modified version) by cam900" +msgstr "" + +#: src/gui/about.cpp:288 +msgid "PowerNoise emulator by scratchminer" +msgstr "" + +#: src/gui/about.cpp:289 +msgid "ep128emu by Istvan Varga" +msgstr "" + +#: src/gui/about.cpp:290 +msgid "NDS sound emulator by cam900" +msgstr "" + +#: src/gui/about.cpp:292 +msgid "greetings to:" +msgstr "" + +#: src/gui/about.cpp:295 +msgid "all members of Deflers of Noice!" +msgstr "" + +#: src/gui/about.cpp:301 +msgid "copyright © 2021-2024 tildearrow" +msgstr "" + +#: src/gui/about.cpp:302 +msgid "(and contributors)." +msgstr "" + +#: src/gui/about.cpp:303 +msgid "licensed under GPLv2+! see" +msgstr "" + +#: src/gui/about.cpp:304 +msgid "LICENSE for more information." +msgstr "" + +#: src/gui/about.cpp:306 +msgid "help Furnace grow:" +msgstr "" + +#: src/gui/about.cpp:309 +msgid "contact tildearrow at:" +msgstr "" + +#: src/gui/about.cpp:312 +msgid "disclaimer:" +msgstr "" + +#: src/gui/about.cpp:313 +msgid "despite the fact this program works" +msgstr "" + +#: src/gui/about.cpp:314 +msgid "with the .dmf file format, it is NOT" +msgstr "" + +#: src/gui/about.cpp:315 +msgid "affiliated with Delek or DefleMask in" +msgstr "" + +#: src/gui/about.cpp:316 +msgid "any way, nor it is a replacement for" +msgstr "" + +#: src/gui/about.cpp:317 +msgid "the original program." +msgstr "" + +#: src/gui/about.cpp:319 +msgid "it also comes with ABSOLUTELY NO WARRANTY." +msgstr "" + +#: src/gui/about.cpp:321 +msgid "thanks to all contributors/bug reporters!" +msgstr "" + +#: src/gui/about.cpp:328 +msgid "About Furnace" +msgstr "" + +#: src/gui/about.cpp:418 +msgid "Unsaved changes! Save changes before playing?" +msgstr "" + +#: src/gui/compatFlags.cpp:31 src/gui/guiConst.cpp:598 +msgid "Compatibility Flags" +msgstr "" + +#: src/gui/compatFlags.cpp:32 +msgid "" +"these flags are designed to provide better DefleMask/older Furnace " +"compatibility.\n" +"it is recommended to disable most of these unless you rely on specific " +"quirks." +msgstr "" + +#: src/gui/compatFlags.cpp:34 src/gui/compatFlags.cpp:310 +msgid "DefleMask" +msgstr "" + +#: src/gui/compatFlags.cpp:35 +msgid "Limit slide range" +msgstr "" + +#: src/gui/compatFlags.cpp:37 +msgid "" +"when enabled, slides are limited to a compatible range.\n" +"may cause problems with slides in negative octaves." +msgstr "" + +#: src/gui/compatFlags.cpp:39 +msgid "Compatible noise layout on NES and PC Engine" +msgstr "" + +#: src/gui/compatFlags.cpp:41 +msgid "" +"use a rather unusual compatible noise frequency layout.\n" +"removes some noise frequencies on PC Engine." +msgstr "" + +#: src/gui/compatFlags.cpp:43 +msgid "Game Boy instrument duty is wave volume" +msgstr "" + +#: src/gui/compatFlags.cpp:45 +msgid "" +"if enabled, an instrument with duty macro in the wave channel will be mapped " +"to wavetable volume." +msgstr "" + +#: src/gui/compatFlags.cpp:48 +msgid "Restart macro on portamento" +msgstr "" + +#: src/gui/compatFlags.cpp:50 +msgid "" +"when enabled, a portamento effect will reset the channel's macro if used in " +"combination with a note." +msgstr "" + +#: src/gui/compatFlags.cpp:52 +msgid "Legacy volume slides" +msgstr "" + +#: src/gui/compatFlags.cpp:54 +msgid "" +"simulate glitchy volume slide behavior by silently overflowing the volume " +"when the slide goes below 0." +msgstr "" + +#: src/gui/compatFlags.cpp:56 +msgid "Compatible arpeggio" +msgstr "" + +#: src/gui/compatFlags.cpp:58 +msgid "delay arpeggio by one tick on every new note." +msgstr "" + +#: src/gui/compatFlags.cpp:60 +msgid "Disable DAC when sample ends" +msgstr "" + +#: src/gui/compatFlags.cpp:62 +msgid "" +"when enabled, the DAC in YM2612 will be disabled if there isn't any sample " +"playing." +msgstr "" + +#: src/gui/compatFlags.cpp:64 +msgid "Broken speed alternation" +msgstr "" + +#: src/gui/compatFlags.cpp:66 +msgid "" +"determines next speed based on whether the row is odd/even instead of " +"alternating between speeds." +msgstr "" + +#: src/gui/compatFlags.cpp:68 +msgid "Ignore duplicate slide effects" +msgstr "" + +#: src/gui/compatFlags.cpp:70 +msgid "" +"if this is on, only the first slide of a row in a channel will be considered." +msgstr "" + +#: src/gui/compatFlags.cpp:72 +msgid "Ignore 0Dxx on the last order" +msgstr "" + +#: src/gui/compatFlags.cpp:74 +msgid "" +"if this is on, a jump to next row effect will not take place when it is on " +"the last order of a song." +msgstr "" + +#: src/gui/compatFlags.cpp:76 +msgid "Buggy portamento after pitch slide" +msgstr "" + +#: src/gui/compatFlags.cpp:78 +msgid "simulates a bug in where portamento does not work after sliding." +msgstr "" + +#: src/gui/compatFlags.cpp:80 +msgid "FM pitch slide octave boundary odd behavior" +msgstr "" + +#: src/gui/compatFlags.cpp:82 +msgid "" +"if this is on, a pitch slide that crosses the octave boundary will stop for " +"one tick and then continue from the nearest octave boundary.\n" +"for .dmf compatibility." +msgstr "" + +#: src/gui/compatFlags.cpp:84 +msgid "Don't apply Game Boy envelope on note-less instrument change" +msgstr "" + +#: src/gui/compatFlags.cpp:86 +msgid "if this is on, an instrument change will not affect the envelope." +msgstr "" + +#: src/gui/compatFlags.cpp:88 +msgid "Ignore DAC mode change outside of intended channel in ExtCh mode" +msgstr "" + +#: src/gui/compatFlags.cpp:90 +msgid "if this is on, 17xx has no effect on the operator channels in YM2612." +msgstr "" + +#: src/gui/compatFlags.cpp:92 +msgid "E1xy/E2xy also take priority over slide stops" +msgstr "" + +#: src/gui/compatFlags.cpp:94 +msgid "does this make any sense by now?" +msgstr "" + +#: src/gui/compatFlags.cpp:96 +msgid "E1xy/E2xy stop when repeating the same note" +msgstr "" + +#: src/gui/compatFlags.cpp:98 +msgid "ugh, if only this wasn't a thing..." +msgstr "" + +#: src/gui/compatFlags.cpp:100 +msgid "SN76489 duty macro always resets phase" +msgstr "" + +#: src/gui/compatFlags.cpp:102 +msgid "" +"when enabled, duty macro will always reset phase, even if its value hasn't " +"changed." +msgstr "" + +#: src/gui/compatFlags.cpp:104 +msgid "Broken volume scaling strategy" +msgstr "" + +#: src/gui/compatFlags.cpp:106 +msgid "" +"when enabled:\n" +"- log scaling: multiply\n" +"- linear scaling: subtract\n" +"when disabled:\n" +"- log scaling: subtract\n" +"- linear scaling: multiply" +msgstr "" + +#: src/gui/compatFlags.cpp:108 +msgid "Don't persist volume macro after it finishes" +msgstr "" + +#: src/gui/compatFlags.cpp:110 +msgid "" +"when enabled, a value in the volume column that happens after the volume " +"macro is done will disregard the macro." +msgstr "" + +#: src/gui/compatFlags.cpp:112 +msgid "Broken output volume on instrument change" +msgstr "" + +#: src/gui/compatFlags.cpp:114 +msgid "" +"if enabled, no checks for the presence of a volume macro will be made.\n" +"this will cause the last macro value to linger unless a value in the volume " +"column is present." +msgstr "" + +#: src/gui/compatFlags.cpp:116 +msgid "Broken output volume - Episode 2 (PLEASE KEEP ME DISABLED)" +msgstr "" + +#: src/gui/compatFlags.cpp:118 +msgid "" +"these compatibility flags are getting SO damn ridiculous and out of " +"control.\n" +"as you may have guessed, this one exists due to yet ANOTHER DefleMask-" +"specific behavior.\n" +"please keep this off at all costs, because I will not support it when ROM " +"export comes.\n" +"oh, and don't start an argument out of it. Furnace isn't a DefleMask " +"replacement, and no,\n" +"I am not trying to make it look like one with all these flags.\n" +"\n" +"oh, and what about the other flags that don't have to do with DefleMask?\n" +"those are for .mod import, future FamiTracker import and personal taste!\n" +"\n" +"end of rant" +msgstr "" + +#: src/gui/compatFlags.cpp:120 +msgid "Treat SN76489 periods under 8 as 1" +msgstr "" + +#: src/gui/compatFlags.cpp:122 +msgid "" +"when enabled, any SN period under 8 will be written as 1 instead.\n" +"this replicates DefleMask behavior, but reduces available period range." +msgstr "" + +#: src/gui/compatFlags.cpp:126 src/gui/compatFlags.cpp:304 +msgid "Old Furnace" +msgstr "" + +#: src/gui/compatFlags.cpp:127 +msgid "Arpeggio inhibits non-porta slides" +msgstr "" + +#: src/gui/compatFlags.cpp:129 src/gui/compatFlags.cpp:133 +msgid "behavior changed in 0.5.5" +msgstr "" + +#: src/gui/compatFlags.cpp:131 +msgid "Wack FM algorithm macro" +msgstr "" + +#: src/gui/compatFlags.cpp:135 +msgid "Broken shortcut slides (E1xy/E2xy)" +msgstr "" + +#: src/gui/compatFlags.cpp:137 +msgid "behavior changed in 0.5.7" +msgstr "" + +#: src/gui/compatFlags.cpp:139 +msgid "Stop portamento on note off" +msgstr "" + +#: src/gui/compatFlags.cpp:141 src/gui/compatFlags.cpp:145 +#: src/gui/compatFlags.cpp:149 src/gui/compatFlags.cpp:153 +#: src/gui/compatFlags.cpp:157 src/gui/compatFlags.cpp:161 +#: src/gui/compatFlags.cpp:165 +msgid "behavior changed in 0.6pre1" +msgstr "" + +#: src/gui/compatFlags.cpp:143 +msgid "Don't allow instrument change during slides" +msgstr "" + +#: src/gui/compatFlags.cpp:147 +msgid "Don't reset note to base on arpeggio stop" +msgstr "" + +#: src/gui/compatFlags.cpp:151 +msgid "ExtCh channel status is not shared among operators" +msgstr "" + +#: src/gui/compatFlags.cpp:155 +msgid "Disable new SegaPCM features (macros and better panning)" +msgstr "" + +#: src/gui/compatFlags.cpp:159 +msgid "Old FM octave boundary behavior" +msgstr "" + +#: src/gui/compatFlags.cpp:163 +msgid "Disable OPN2 DAC volume control" +msgstr "" + +#: src/gui/compatFlags.cpp:167 +msgid "Broken initial position of portamento after arpeggio" +msgstr "" + +#: src/gui/compatFlags.cpp:169 +msgid "behavior changed in 0.6pre1.5" +msgstr "" + +#: src/gui/compatFlags.cpp:171 +msgid "Disable new sample features" +msgstr "" + +#: src/gui/compatFlags.cpp:173 src/gui/compatFlags.cpp:177 +msgid "behavior changed in 0.6pre2" +msgstr "" + +#: src/gui/compatFlags.cpp:175 +msgid "Old arpeggio macro + pitch slide strategy" +msgstr "" + +#: src/gui/compatFlags.cpp:179 +msgid "Broken portamento during legato" +msgstr "" + +#: src/gui/compatFlags.cpp:181 +msgid "behavior changed in 0.6pre4" +msgstr "" + +#: src/gui/compatFlags.cpp:183 +msgid "Broken macros in some FM chips after note off" +msgstr "" + +#: src/gui/compatFlags.cpp:185 +msgid "behavior changed in 0.6pre5" +msgstr "" + +#: src/gui/compatFlags.cpp:187 +msgid "Pre-note does not take effects into consideration" +msgstr "" + +#: src/gui/compatFlags.cpp:189 +msgid "behavior changed in 0.6pre9" +msgstr "" + +#: src/gui/compatFlags.cpp:191 +msgid "Disable new NES DPCM features" +msgstr "" + +#: src/gui/compatFlags.cpp:193 +msgid "behavior changed in 0.6.1" +msgstr "" + +#: src/gui/compatFlags.cpp:195 +msgid "Legacy technical ALWAYS_SET_VOLUME behavior" +msgstr "" + +#: src/gui/compatFlags.cpp:197 +msgid "" +"behavior changed in 0.6.1\n" +"this flag will be removed if I find out that none of the songs break after " +"disabling it." +msgstr "" + +#: src/gui/compatFlags.cpp:199 +msgid "Old sample offset effect" +msgstr "" + +#: src/gui/compatFlags.cpp:201 +msgid "behavior changed in 0.6.3" +msgstr "" + +#: src/gui/compatFlags.cpp:205 +msgid ".mod import" +msgstr "" + +#: src/gui/compatFlags.cpp:206 +msgid "Don't slide on the first tick of a row" +msgstr "" + +#: src/gui/compatFlags.cpp:208 +msgid "" +"simulates ProTracker's behavior of not applying volume/pitch slides on the " +"first tick of a row." +msgstr "" + +#: src/gui/compatFlags.cpp:210 +msgid "Reset arpeggio position on row change" +msgstr "" + +#: src/gui/compatFlags.cpp:212 +msgid "" +"simulates ProTracker's behavior of arpeggio being bound to the current tick " +"of a row." +msgstr "" + +#: src/gui/compatFlags.cpp:216 +msgid "Pitch/Playback" +msgstr "" + +#: src/gui/compatFlags.cpp:217 +msgid "Pitch linearity:" +msgstr "" + +#: src/gui/compatFlags.cpp:223 +msgid "like ProTracker/FamiTracker" +msgstr "" + +#: src/gui/compatFlags.cpp:227 +msgid "Partial (only 04xy/E5xx)" +msgstr "" + +#: src/gui/compatFlags.cpp:231 +msgid "" +"like DefleMask\n" +"\n" +"this pitch linearity mode is deprecated due to:\n" +"- excessive complexity\n" +"- lack of possible optimization\n" +"\n" +"it is recommended to change it now because I will remove this option in the " +"future!" +msgstr "" + +#: src/gui/compatFlags.cpp:235 +msgid "Full" +msgstr "" + +#: src/gui/compatFlags.cpp:239 +msgid "like Impulse Tracker" +msgstr "" + +#: src/gui/compatFlags.cpp:246 +msgid "Pitch slide speed multiplier" +msgstr "" + +#: src/gui/compatFlags.cpp:252 +msgid "Loop modality:" +msgstr "" + +#: src/gui/compatFlags.cpp:254 +msgid "Reset channels" +msgstr "" + +#: src/gui/compatFlags.cpp:258 +msgid "" +"select to reset channels on loop. may trigger a voltage click on every loop!" +msgstr "" + +#: src/gui/compatFlags.cpp:260 +msgid "Soft reset channels" +msgstr "" + +#: src/gui/compatFlags.cpp:264 +msgid "select to turn channels off on loop." +msgstr "" + +#: src/gui/compatFlags.cpp:266 +msgid "Do nothing" +msgstr "" + +#: src/gui/compatFlags.cpp:270 +msgid "select to not reset channels on loop." +msgstr "" + +#: src/gui/compatFlags.cpp:274 +msgid "Cut/delay effect policy:" +msgstr "" + +#: src/gui/compatFlags.cpp:280 +msgid "only when time is less than speed (like DefleMask/ProTracker)" +msgstr "" + +#: src/gui/compatFlags.cpp:282 +msgid "Strict (old)" +msgstr "" + +#: src/gui/compatFlags.cpp:286 +msgid "only when time is less than or equal to speed (original buggy behavior)" +msgstr "" + +#: src/gui/compatFlags.cpp:292 +msgid "no checks" +msgstr "" + +#: src/gui/compatFlags.cpp:296 +msgid "Simultaneous jump (0B+0D) treatment:" +msgstr "" + +#: src/gui/compatFlags.cpp:302 +msgid "accept 0B+0D to jump to a specific row of an order" +msgstr "" + +#: src/gui/compatFlags.cpp:308 +msgid "only accept the first jump effect" +msgstr "" + +#: src/gui/compatFlags.cpp:314 +msgid "only accept 0Dxx" +msgstr "" + +#: src/gui/compatFlags.cpp:320 +msgid "Auto-insert one tick gap between notes" +msgstr "" + +#: src/gui/compatFlags.cpp:322 +msgid "" +"when enabled, a one-tick note cut will be inserted between non-legato/non-" +"portamento notes.\n" +"this simulates the behavior of some Amiga/SNES music engines.\n" +"\n" +"ineffective on C64." +msgstr "" + +#: src/gui/compatFlags.cpp:327 +msgid "Don't reset slides after note off" +msgstr "" + +#: src/gui/compatFlags.cpp:329 +msgid "when enabled, note off will not reset the channel's slide effect." +msgstr "" + +#: src/gui/compatFlags.cpp:331 +msgid "Don't reset portamento after reaching target" +msgstr "" + +#: src/gui/compatFlags.cpp:333 +msgid "" +"when enabled, the slide effect will not be disabled after it reaches its " +"target." +msgstr "" + +#: src/gui/compatFlags.cpp:335 +msgid "Continuous vibrato" +msgstr "" + +#: src/gui/compatFlags.cpp:337 +msgid "when enabled, vibrato phase/position will not be reset on a new note." +msgstr "" + +#: src/gui/compatFlags.cpp:339 +msgid "Pitch macro is not linear" +msgstr "" + +#: src/gui/compatFlags.cpp:341 +msgid "" +"when enabled, the pitch macro of an instrument is in frequency/period space." +msgstr "" + +#: src/gui/compatFlags.cpp:343 +msgid "Reset arpeggio effect position on new note" +msgstr "" + +#: src/gui/compatFlags.cpp:345 +msgid "when enabled, arpeggio effect (00xy) position is reset on a new note." +msgstr "" + +#: src/gui/compatFlags.cpp:347 +msgid "Volume scaling rounds up" +msgstr "" + +#: src/gui/compatFlags.cpp:349 +msgid "" +"when enabled, volume macros round up when applied\n" +"this prevents volume scaling from causing vol=0, which is silent on some " +"chips\n" +"\n" +"ineffective on logarithmic channels" +msgstr "" + +#: src/gui/guiConst.cpp:127 +msgid "Generic Sample" +msgstr "" + +#: src/gui/guiConst.cpp:155 +msgid "OPL (drums)" +msgstr "" + +#: src/gui/guiConst.cpp:191 +msgid "Forward" +msgstr "" + +#: src/gui/guiConst.cpp:192 +msgid "Backward" +msgstr "" + +#: src/gui/guiConst.cpp:193 +msgid "Ping pong" +msgstr "" + +#: src/gui/guiConst.cpp:218 +msgid "linear" +msgstr "" + +#: src/gui/guiConst.cpp:219 +msgid "cubic spline" +msgstr "" + +#: src/gui/guiConst.cpp:220 +msgid "blep synthesis" +msgstr "" + +#: src/gui/guiConst.cpp:221 +msgid "sinc" +msgstr "" + +#: src/gui/guiConst.cpp:222 +msgid "best possible" +msgstr "" + +#: src/gui/guiConst.cpp:226 src/gui/sampleEdit.cpp:137 +#: src/gui/sampleEdit.cpp:143 +msgid "Invalid" +msgstr "" + +#: src/gui/guiConst.cpp:231 +msgid "Time" +msgstr "" + +#: src/gui/guiConst.cpp:233 +msgid "System (Primary)" +msgstr "" + +#: src/gui/guiConst.cpp:234 +msgid "System (Secondary)" +msgstr "" + +#: src/gui/guiConst.cpp:530 +msgid "---Global" +msgstr "" + +#: src/gui/guiConst.cpp:532 +msgid "Open file" +msgstr "" + +#: src/gui/guiConst.cpp:533 +msgid "Restore backup" +msgstr "" + +#: src/gui/guiConst.cpp:534 +msgid "Save file" +msgstr "" + +#: src/gui/guiConst.cpp:535 +msgid "Save as" +msgstr "" + +#: src/gui/guiConst.cpp:537 src/gui/sampleEdit.cpp:982 +msgid "Undo" +msgstr "" + +#: src/gui/guiConst.cpp:539 src/gui/guiConst.cpp:541 src/gui/sampleEdit.cpp:989 +msgid "Redo" +msgstr "" + +#: src/gui/guiConst.cpp:543 +msgid "Exit" +msgstr "" + +#: src/gui/guiConst.cpp:544 +msgid "Play/Stop (toggle)" +msgstr "" + +#: src/gui/guiConst.cpp:547 +msgid "Play (from beginning)" +msgstr "" + +#: src/gui/guiConst.cpp:548 +msgid "Play (repeat pattern)" +msgstr "" + +#: src/gui/guiConst.cpp:549 +msgid "Play from cursor" +msgstr "" + +#: src/gui/guiConst.cpp:550 +msgid "Step row" +msgstr "" + +#: src/gui/guiConst.cpp:551 +msgid "Octave up" +msgstr "" + +#: src/gui/guiConst.cpp:552 +msgid "Octave down" +msgstr "" + +#: src/gui/guiConst.cpp:553 +msgid "Previous instrument" +msgstr "" + +#: src/gui/guiConst.cpp:554 +msgid "Next instrument" +msgstr "" + +#: src/gui/guiConst.cpp:555 +msgid "Increase edit step" +msgstr "" + +#: src/gui/guiConst.cpp:556 +msgid "Decrease edit step" +msgstr "" + +#: src/gui/guiConst.cpp:557 +msgid "Toggle edit mode" +msgstr "" + +#: src/gui/guiConst.cpp:559 +msgid "Toggle repeat pattern" +msgstr "" + +#: src/gui/guiConst.cpp:562 +msgid "Toggle full-screen" +msgstr "" + +#: src/gui/guiConst.cpp:563 +msgid "Request voice from TX81Z" +msgstr "" + +#: src/gui/guiConst.cpp:565 +msgid "Clear song data" +msgstr "" + +#: src/gui/guiConst.cpp:567 src/gui/gui.cpp:5573 src/gui/gui.cpp:5625 +msgid "Command Palette" +msgstr "" + +#: src/gui/guiConst.cpp:569 +msgid "Recent files (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:570 +msgid "Instruments (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:571 +msgid "Samples (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:572 +msgid "Change instrument (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:573 +msgid "Add chip (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:578 +msgid "Instrument List" +msgstr "" + +#: src/gui/guiConst.cpp:579 src/gui/insEdit.cpp:5203 +msgid "Instrument Editor" +msgstr "" + +#: src/gui/guiConst.cpp:580 +msgid "Song Information" +msgstr "" + +#: src/gui/guiConst.cpp:583 +msgid "Wavetable List" +msgstr "" + +#: src/gui/guiConst.cpp:584 src/gui/waveEdit.cpp:409 +msgid "Wavetable Editor" +msgstr "" + +#: src/gui/guiConst.cpp:585 +msgid "Sample List" +msgstr "" + +#: src/gui/guiConst.cpp:594 +msgid "Debug Menu" +msgstr "" + +#: src/gui/guiConst.cpp:595 +msgid "Oscilloscope (master)" +msgstr "" + +#: src/gui/guiConst.cpp:603 src/gui/sysManager.cpp:41 +msgid "Chip Manager" +msgstr "" + +#: src/gui/guiConst.cpp:614 src/gui/csPlayer.cpp:112 +msgid "Command Stream Player" +msgstr "" + +#: src/gui/guiConst.cpp:615 +msgid "User Presets" +msgstr "" + +#: src/gui/guiConst.cpp:617 +msgid "Collapse/expand current window" +msgstr "" + +#: src/gui/guiConst.cpp:618 +msgid "Close current window" +msgstr "" + +#: src/gui/guiConst.cpp:621 +msgid "---Pattern" +msgstr "" + +#: src/gui/guiConst.cpp:622 +msgid "Transpose (+1)" +msgstr "" + +#: src/gui/guiConst.cpp:623 +msgid "Transpose (-1)" +msgstr "" + +#: src/gui/guiConst.cpp:624 +msgid "Transpose (+1 octave)" +msgstr "" + +#: src/gui/guiConst.cpp:625 +msgid "Transpose (-1 octave)" +msgstr "" + +#: src/gui/guiConst.cpp:626 +msgid "Increase values (+1)" +msgstr "" + +#: src/gui/guiConst.cpp:627 +msgid "Increase values (-1)" +msgstr "" + +#: src/gui/guiConst.cpp:628 +msgid "Increase values (+16)" +msgstr "" + +#: src/gui/guiConst.cpp:629 +msgid "Increase values (-16)" +msgstr "" + +#: src/gui/guiConst.cpp:630 +msgid "Select all" +msgstr "" + +#: src/gui/guiConst.cpp:631 +msgid "Cut" +msgstr "" + +#: src/gui/guiConst.cpp:632 +msgid "Copy" +msgstr "" + +#: src/gui/guiConst.cpp:633 +msgid "Paste" +msgstr "" + +#: src/gui/guiConst.cpp:634 +msgid "Paste Mix (foreground)" +msgstr "" + +#: src/gui/guiConst.cpp:635 +msgid "Paste Mix (background)" +msgstr "" + +#: src/gui/guiConst.cpp:636 +msgid "Paste Flood" +msgstr "" + +#: src/gui/guiConst.cpp:637 +msgid "Paste Overflow" +msgstr "" + +#: src/gui/guiConst.cpp:638 +msgid "Move cursor up" +msgstr "" + +#: src/gui/guiConst.cpp:639 +msgid "Move cursor down" +msgstr "" + +#: src/gui/guiConst.cpp:640 +msgid "Move cursor left" +msgstr "" + +#: src/gui/guiConst.cpp:641 +msgid "Move cursor right" +msgstr "" + +#: src/gui/guiConst.cpp:642 +msgid "Move cursor up by one (override Edit Step)" +msgstr "" + +#: src/gui/guiConst.cpp:643 +msgid "Move cursor down by one (override Edit Step)" +msgstr "" + +#: src/gui/guiConst.cpp:644 +msgid "Move cursor to previous channel" +msgstr "" + +#: src/gui/guiConst.cpp:645 +msgid "Move cursor to next channel" +msgstr "" + +#: src/gui/guiConst.cpp:646 +msgid "Move cursor to next channel (overflow)" +msgstr "" + +#: src/gui/guiConst.cpp:647 +msgid "Move cursor to previous channel (overflow)" +msgstr "" + +#: src/gui/guiConst.cpp:648 +msgid "Move cursor to beginning of pattern" +msgstr "" + +#: src/gui/guiConst.cpp:649 +msgid "Move cursor to end of pattern" +msgstr "" + +#: src/gui/guiConst.cpp:650 +msgid "Move cursor up (coarse)" +msgstr "" + +#: src/gui/guiConst.cpp:651 +msgid "Move cursor down (coarse)" +msgstr "" + +#: src/gui/guiConst.cpp:652 +msgid "Expand selection upwards" +msgstr "" + +#: src/gui/guiConst.cpp:653 +msgid "Expand selection downwards" +msgstr "" + +#: src/gui/guiConst.cpp:654 +msgid "Expand selection to the left" +msgstr "" + +#: src/gui/guiConst.cpp:655 +msgid "Expand selection to the right" +msgstr "" + +#: src/gui/guiConst.cpp:656 +msgid "Expand selection upwards by one (override Edit Step)" +msgstr "" + +#: src/gui/guiConst.cpp:657 +msgid "Expand selection downwards by one (override Edit Step)" +msgstr "" + +#: src/gui/guiConst.cpp:658 +msgid "Expand selection to beginning of pattern" +msgstr "" + +#: src/gui/guiConst.cpp:659 +msgid "Expand selection to end of pattern" +msgstr "" + +#: src/gui/guiConst.cpp:660 +msgid "Expand selection upwards (coarse)" +msgstr "" + +#: src/gui/guiConst.cpp:661 +msgid "Expand selection downwards (coarse)" +msgstr "" + +#: src/gui/guiConst.cpp:662 +msgid "Move selection up" +msgstr "" + +#: src/gui/guiConst.cpp:663 +msgid "Move selection down" +msgstr "" + +#: src/gui/guiConst.cpp:664 +msgid "Move selection to previous channel" +msgstr "" + +#: src/gui/guiConst.cpp:665 +msgid "Move selection to next channel" +msgstr "" + +#: src/gui/guiConst.cpp:667 +msgid "Pull delete" +msgstr "" + +#: src/gui/guiConst.cpp:668 +msgid "Insert" +msgstr "" + +#: src/gui/guiConst.cpp:669 +msgid "Mute channel at cursor" +msgstr "" + +#: src/gui/guiConst.cpp:670 +msgid "Solo channel at cursor" +msgstr "" + +#: src/gui/guiConst.cpp:671 +msgid "Unmute all channels" +msgstr "" + +#: src/gui/guiConst.cpp:672 +msgid "Go to next order" +msgstr "" + +#: src/gui/guiConst.cpp:673 +msgid "Go to previous order" +msgstr "" + +#: src/gui/guiConst.cpp:674 +msgid "Collapse channel at cursor" +msgstr "" + +#: src/gui/guiConst.cpp:675 +msgid "Increase effect columns" +msgstr "" + +#: src/gui/guiConst.cpp:676 +msgid "Decrease effect columns" +msgstr "" + +#: src/gui/guiConst.cpp:677 +msgid "Interpolate" +msgstr "" + +#: src/gui/guiConst.cpp:678 src/gui/insEdit.cpp:530 +msgid "Fade" +msgstr "" + +#: src/gui/guiConst.cpp:679 +msgid "Invert values" +msgstr "" + +#: src/gui/guiConst.cpp:680 +msgid "Flip selection" +msgstr "" + +#: src/gui/guiConst.cpp:681 +msgid "Collapse rows" +msgstr "" + +#: src/gui/guiConst.cpp:682 +msgid "Expand rows" +msgstr "" + +#: src/gui/guiConst.cpp:683 +msgid "Collapse pattern" +msgstr "" + +#: src/gui/guiConst.cpp:684 +msgid "Expand pattern" +msgstr "" + +#: src/gui/guiConst.cpp:685 +msgid "Collapse song" +msgstr "" + +#: src/gui/guiConst.cpp:686 +msgid "Expand song" +msgstr "" + +#: src/gui/guiConst.cpp:687 +msgid "Set note input latch" +msgstr "" + +#: src/gui/guiConst.cpp:688 +msgid "Change mobile scroll mode" +msgstr "" + +#: src/gui/guiConst.cpp:689 +msgid "Clear note input latch" +msgstr "" + +#: src/gui/guiConst.cpp:692 +msgid "---Instrument list" +msgstr "" + +#: src/gui/guiConst.cpp:693 +msgid "Add instrument" +msgstr "" + +#: src/gui/guiConst.cpp:694 +msgid "Duplicate instrument" +msgstr "" + +#: src/gui/guiConst.cpp:695 +msgid "Open instrument" +msgstr "" + +#: src/gui/guiConst.cpp:696 +msgid "Open instrument (replace current)" +msgstr "" + +#: src/gui/guiConst.cpp:697 +msgid "Save instrument" +msgstr "" + +#: src/gui/guiConst.cpp:698 +msgid "Save instrument (.dmp)" +msgstr "" + +#: src/gui/guiConst.cpp:699 +msgid "Move instrument up in list" +msgstr "" + +#: src/gui/guiConst.cpp:700 +msgid "Move instrument down in list" +msgstr "" + +#: src/gui/guiConst.cpp:701 +msgid "Delete instrument" +msgstr "" + +#: src/gui/guiConst.cpp:702 +msgid "Edit instrument" +msgstr "" + +#: src/gui/guiConst.cpp:703 +msgid "Instrument cursor up" +msgstr "" + +#: src/gui/guiConst.cpp:704 +msgid "Instrument cursor down" +msgstr "" + +#: src/gui/guiConst.cpp:705 +msgid "Instruments: toggle folders/standard view" +msgstr "" + +#: src/gui/guiConst.cpp:708 +msgid "---Wavetable list" +msgstr "" + +#: src/gui/guiConst.cpp:709 +msgid "Add wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:710 +msgid "Duplicate wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:711 +msgid "Open wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:712 +msgid "Open wavetable (replace current)" +msgstr "" + +#: src/gui/guiConst.cpp:713 +msgid "Save wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:714 +msgid "Save wavetable (.dmw)" +msgstr "" + +#: src/gui/guiConst.cpp:715 +msgid "Save wavetable (raw)" +msgstr "" + +#: src/gui/guiConst.cpp:716 +msgid "Move wavetable up in list" +msgstr "" + +#: src/gui/guiConst.cpp:717 +msgid "Move wavetable down in list" +msgstr "" + +#: src/gui/guiConst.cpp:718 +msgid "Delete wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:719 +msgid "Edit wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:720 +msgid "Wavetable cursor up" +msgstr "" + +#: src/gui/guiConst.cpp:721 +msgid "Wavetable cursor down" +msgstr "" + +#: src/gui/guiConst.cpp:722 +msgid "Wavetables: toggle folders/standard view" +msgstr "" + +#: src/gui/guiConst.cpp:725 +msgid "---Sample list" +msgstr "" + +#: src/gui/guiConst.cpp:726 +msgid "Add sample" +msgstr "" + +#: src/gui/guiConst.cpp:727 +msgid "Duplicate sample" +msgstr "" + +#: src/gui/guiConst.cpp:728 +msgid "Open sample" +msgstr "" + +#: src/gui/guiConst.cpp:729 +msgid "Open sample (replace current)" +msgstr "" + +#: src/gui/guiConst.cpp:730 +msgid "Import raw sample data" +msgstr "" + +#: src/gui/guiConst.cpp:731 +msgid "Import raw sample data (replace current)" +msgstr "" + +#: src/gui/guiConst.cpp:732 +msgid "Save sample" +msgstr "" + +#: src/gui/guiConst.cpp:733 +msgid "Save sample (raw)" +msgstr "" + +#: src/gui/guiConst.cpp:734 +msgid "Move sample up in list" +msgstr "" + +#: src/gui/guiConst.cpp:735 +msgid "Move sample down in list" +msgstr "" + +#: src/gui/guiConst.cpp:736 +msgid "Delete sample" +msgstr "" + +#: src/gui/guiConst.cpp:737 +msgid "Edit sample" +msgstr "" + +#: src/gui/guiConst.cpp:738 +msgid "Sample cursor up" +msgstr "" + +#: src/gui/guiConst.cpp:739 +msgid "Sample cursor down" +msgstr "" + +#: src/gui/guiConst.cpp:741 src/gui/sampleEdit.cpp:1339 +msgid "Stop sample preview" +msgstr "" + +#: src/gui/guiConst.cpp:742 +msgid "Samples: Toggle folders/standard view" +msgstr "" + +#: src/gui/guiConst.cpp:743 +msgid "Samples: Make me a drum kit" +msgstr "" + +#: src/gui/guiConst.cpp:746 +msgid "---Sample editor" +msgstr "" + +#: src/gui/guiConst.cpp:747 +msgid "Sample editor mode: Select" +msgstr "" + +#: src/gui/guiConst.cpp:748 +msgid "Sample editor mode: Draw" +msgstr "" + +#: src/gui/guiConst.cpp:749 +msgid "Sample editor: Cut" +msgstr "" + +#: src/gui/guiConst.cpp:750 +msgid "Sample editor: Copy" +msgstr "" + +#: src/gui/guiConst.cpp:751 +msgid "Sample editor: Paste" +msgstr "" + +#: src/gui/guiConst.cpp:752 +msgid "Sample editor: Paste replace" +msgstr "" + +#: src/gui/guiConst.cpp:753 +msgid "Sample editor: Paste mix" +msgstr "" + +#: src/gui/guiConst.cpp:754 +msgid "Sample editor: Select all" +msgstr "" + +#: src/gui/guiConst.cpp:755 +msgid "Sample editor: Resize" +msgstr "" + +#: src/gui/guiConst.cpp:756 +msgid "Sample editor: Resample" +msgstr "" + +#: src/gui/guiConst.cpp:757 +msgid "Sample editor: Amplify" +msgstr "" + +#: src/gui/guiConst.cpp:758 +msgid "Sample editor: Normalize" +msgstr "" + +#: src/gui/guiConst.cpp:759 +msgid "Sample editor: Fade in" +msgstr "" + +#: src/gui/guiConst.cpp:760 +msgid "Sample editor: Fade out" +msgstr "" + +#: src/gui/guiConst.cpp:761 +msgid "Sample editor: Apply silence" +msgstr "" + +#: src/gui/guiConst.cpp:762 +msgid "Sample editor: Insert silence" +msgstr "" + +#: src/gui/guiConst.cpp:763 +msgid "Sample editor: Delete" +msgstr "" + +#: src/gui/guiConst.cpp:764 +msgid "Sample editor: Trim" +msgstr "" + +#: src/gui/guiConst.cpp:765 +msgid "Sample editor: Reverse" +msgstr "" + +#: src/gui/guiConst.cpp:766 +msgid "Sample editor: Invert" +msgstr "" + +#: src/gui/guiConst.cpp:767 +msgid "Sample editor: Signed/unsigned exchange" +msgstr "" + +#: src/gui/guiConst.cpp:768 +msgid "Sample editor: Apply filter" +msgstr "" + +#: src/gui/guiConst.cpp:769 +msgid "Sample editor: Crossfade loop points" +msgstr "" + +#: src/gui/guiConst.cpp:770 +msgid "Sample editor: Preview sample" +msgstr "" + +#: src/gui/guiConst.cpp:771 +msgid "Sample editor: Stop sample preview" +msgstr "" + +#: src/gui/guiConst.cpp:772 +msgid "Sample editor: Zoom in" +msgstr "" + +#: src/gui/guiConst.cpp:773 +msgid "Sample editor: Zoom out" +msgstr "" + +#: src/gui/guiConst.cpp:774 +msgid "Sample editor: Toggle auto-zoom" +msgstr "" + +#: src/gui/guiConst.cpp:775 +msgid "Sample editor: Create instrument from sample" +msgstr "" + +#: src/gui/guiConst.cpp:776 +msgid "Sample editor: Set loop to selection" +msgstr "" + +#: src/gui/guiConst.cpp:777 +msgid "Sample editor: Create wavetable from selection" +msgstr "" + +#: src/gui/guiConst.cpp:780 +msgid "---Orders" +msgstr "" + +#: src/gui/guiConst.cpp:781 +msgid "Previous order" +msgstr "" + +#: src/gui/guiConst.cpp:782 +msgid "Next order" +msgstr "" + +#: src/gui/guiConst.cpp:783 +msgid "Order cursor left" +msgstr "" + +#: src/gui/guiConst.cpp:784 +msgid "Order cursor right" +msgstr "" + +#: src/gui/guiConst.cpp:785 +msgid "Increase order value" +msgstr "" + +#: src/gui/guiConst.cpp:786 +msgid "Decrease order value" +msgstr "" + +#: src/gui/guiConst.cpp:787 +msgid "Switch order edit mode" +msgstr "" + +#: src/gui/guiConst.cpp:788 +msgid "Order: toggle alter entire row" +msgstr "" + +#: src/gui/guiConst.cpp:789 +msgid "Add order" +msgstr "" + +#: src/gui/guiConst.cpp:790 +msgid "Duplicate order" +msgstr "" + +#: src/gui/guiConst.cpp:791 +msgid "Deep clone order" +msgstr "" + +#: src/gui/guiConst.cpp:792 +msgid "Copy current order to end of song" +msgstr "" + +#: src/gui/guiConst.cpp:793 +msgid "Deep clone current order to end of song" +msgstr "" + +#: src/gui/guiConst.cpp:797 +msgid "Replay order" +msgstr "" + +#: src/gui/guiConst.cpp:1392 +msgid "All chips" +msgstr "" + +#: src/gui/guiConst.cpp:1396 src/gui/insEdit.cpp:6954 src/gui/insEdit.cpp:7204 +#: src/gui/insEdit.cpp:7458 src/gui/insEdit.cpp:7480 +msgid "Special" +msgstr "" + +#: src/gui/piano.cpp:103 +msgid "Options" +msgstr "" + +#: src/gui/piano.cpp:106 +msgid "Key layout:" +msgstr "" + +#: src/gui/piano.cpp:111 +msgid "Standard" +msgstr "" + +#: src/gui/piano.cpp:114 +msgid "Continuous" +msgstr "" + +#: src/gui/piano.cpp:118 +msgid "Value input pad:" +msgstr "" + +#: src/gui/piano.cpp:120 +msgid "Disabled" +msgstr "" + +#: src/gui/piano.cpp:123 +msgid "Replace piano" +msgstr "" + +#: src/gui/piano.cpp:126 +msgid "Split (automatic)" +msgstr "" + +#: src/gui/piano.cpp:129 +msgid "Split (always visible)" +msgstr "" + +#: src/gui/piano.cpp:133 +msgid "Share play/edit offset/range" +msgstr "" + +#: src/gui/piano.cpp:134 +msgid "Read-only (can't input notes)" +msgstr "" + +#: src/gui/waveEdit.cpp:30 src/gui/waveEdit.cpp:192 src/gui/insEdit.cpp:177 +#: src/gui/insEdit.cpp:188 src/gui/insEdit.cpp:199 +msgid "Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:32 src/gui/waveEdit.cpp:202 src/gui/insEdit.cpp:325 +#: src/gui/insEdit.cpp:654 +msgid "Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:39 +msgid "Cosine" +msgstr "" + +#: src/gui/waveEdit.cpp:193 +msgid "Rect. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:194 +msgid "Abs. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:195 +msgid "Quart. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:196 +msgid "Squish. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:197 +msgid "Abs. Squish. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:200 +msgid "rectSquare" +msgstr "" + +#: src/gui/waveEdit.cpp:203 +msgid "Rect. Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:204 +msgid "Abs. Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:206 +msgid "Cubed Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:207 +msgid "Rect. Cubed Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:208 +msgid "Abs. Cubed Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:210 +msgid "Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:211 +msgid "Rect. Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:212 +msgid "Abs. Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:213 +msgid "Quart. Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:214 +msgid "Squish. Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:215 +msgid "Squish. Abs. Cub. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:218 +msgid "Rect. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:219 +msgid "Abs. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:220 +msgid "Quart. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:221 +msgid "Squish. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:222 +msgid "Abs. Squish. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:224 +msgid "Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:225 +msgid "Rect. Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:226 +msgid "Abs. Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:227 +msgid "Quart. Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:228 +msgid "Squish. Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:229 +msgid "Squish. Abs. Cub. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:412 src/gui/waveEdit.cpp:413 +msgid "no wavetable selected" +msgstr "" + +#: src/gui/waveEdit.cpp:424 src/gui/sampleEdit.cpp:111 src/gui/insEdit.cpp:5223 +msgid "select one..." +msgstr "" + +#: src/gui/waveEdit.cpp:432 src/gui/waveEdit.cpp:439 src/gui/sampleEdit.cpp:119 +#: src/gui/sampleEdit.cpp:126 src/gui/insEdit.cpp:5236 src/gui/insEdit.cpp:5243 +msgid "or" +msgstr "" + +#: src/gui/waveEdit.cpp:441 src/gui/sampleEdit.cpp:128 src/gui/insEdit.cpp:5245 +msgid "Create New" +msgstr "" + +#: src/gui/waveEdit.cpp:487 +msgid "Steps" +msgstr "" + +#: src/gui/waveEdit.cpp:491 +msgid "Lines" +msgstr "" + +#: src/gui/waveEdit.cpp:496 src/gui/insEdit.cpp:2687 +msgid "Width" +msgstr "" + +#: src/gui/waveEdit.cpp:498 +msgid "" +"use a width of:\n" +"- any on Amiga/N163\n" +"- 32 on Game Boy, PC Engine, SCC, Konami Bubble System, Namco WSG, Virtual " +"Boy and WonderSwan\n" +"- 64 on FDS\n" +"- 128 on X1-010\n" +"any other widths will be scaled during playback." +msgstr "" + +#: src/gui/waveEdit.cpp:510 +msgid "Height" +msgstr "" + +#: src/gui/waveEdit.cpp:512 +msgid "" +"use a height of:\n" +"- 16 for Game Boy, WonderSwan, Namco WSG, Konami Bubble System, X1-010 " +"Envelope shape and N163\n" +"- 32 for PC Engine\n" +"- 64 for FDS and Virtual Boy\n" +"- 256 for X1-010 and SCC\n" +"any other heights will be scaled during playback." +msgstr "" + +#: src/gui/waveEdit.cpp:578 +msgid "Shapes" +msgstr "" + +#: src/gui/waveEdit.cpp:597 src/gui/insEdit.cpp:5879 src/gui/insEdit.cpp:6922 +#: src/gui/insEdit.cpp:6948 src/gui/insEdit.cpp:7008 src/gui/insEdit.cpp:7048 +#: src/gui/insEdit.cpp:7150 src/gui/insEdit.cpp:7436 src/gui/insEdit.cpp:7472 +msgid "Duty" +msgstr "" + +#: src/gui/waveEdit.cpp:607 +msgid "Exponent" +msgstr "" + +#: src/gui/waveEdit.cpp:617 +msgid "XOR Point" +msgstr "" + +#: src/gui/waveEdit.cpp:627 +msgid "Amplitude/Phase" +msgstr "" + +#: src/gui/waveEdit.cpp:679 src/gui/waveEdit.cpp:723 src/gui/waveEdit.cpp:728 +msgid "Op" +msgstr "" + +#: src/gui/waveEdit.cpp:683 +msgid "Mult" +msgstr "" + +#: src/gui/waveEdit.cpp:685 +msgid "FB" +msgstr "" + +#: src/gui/waveEdit.cpp:749 src/gui/waveEdit.cpp:750 +msgid "Connection Diagram" +msgstr "" + +#: src/gui/waveEdit.cpp:765 +msgid "Out" +msgstr "" + +#: src/gui/waveEdit.cpp:872 +msgid "WaveTools" +msgstr "" + +#: src/gui/waveEdit.cpp:890 +msgid "Scale X" +msgstr "" + +#: src/gui/waveEdit.cpp:896 +msgid "wavetable longer than 256 samples!" +msgstr "" + +#: src/gui/waveEdit.cpp:960 +msgid "Scale Y" +msgstr "" + +#: src/gui/waveEdit.cpp:978 +msgid "Offset X" +msgstr "" + +#: src/gui/waveEdit.cpp:1000 +msgid "Offset Y" +msgstr "" + +#: src/gui/waveEdit.cpp:1017 +msgid "Smooth" +msgstr "" + +#: src/gui/waveEdit.cpp:1045 src/gui/sampleEdit.cpp:996 +msgid "Amplify" +msgstr "" + +#: src/gui/waveEdit.cpp:1063 src/gui/sampleEdit.cpp:1046 +msgid "Normalize" +msgstr "" + +#: src/gui/waveEdit.cpp:1105 src/gui/sampleEdit.cpp:1121 +msgid "Reverse" +msgstr "" + +#: src/gui/waveEdit.cpp:1117 +msgid "Half" +msgstr "" + +#: src/gui/waveEdit.cpp:1127 +msgid "Double" +msgstr "" + +#: src/gui/waveEdit.cpp:1137 +msgid "Convert Signed/Unsigned" +msgstr "" + +#: src/gui/waveEdit.cpp:1167 +msgid "Dec" +msgstr "" + +#: src/gui/waveEdit.cpp:1171 src/gui/csPlayer.cpp:247 +msgid "Hex" +msgstr "" + +#: src/gui/waveEdit.cpp:1179 +msgid "Signed/Unsigned" +msgstr "" + +#: src/gui/sampleEdit.cpp:65 +#, c-format +msgid "%s: maximum sample rate is %d" +msgstr "" + +#: src/gui/sampleEdit.cpp:72 +#, c-format +msgid "%s: minimum sample rate is %d" +msgstr "" + +#: src/gui/sampleEdit.cpp:79 +#, c-format +msgid "%s: sample rate must be %d" +msgstr "" + +#: src/gui/sampleEdit.cpp:99 src/gui/sampleEdit.cpp:100 +msgid "no sample selected" +msgstr "" + +#: src/gui/sampleEdit.cpp:229 +#, c-format +msgid "SNES: loop start must be a multiple of 16 (try with %d)" +msgstr "" + +#: src/gui/sampleEdit.cpp:235 +#, c-format +msgid "SNES: loop end must be a multiple of 16 (try with %d)" +msgstr "" + +#: src/gui/sampleEdit.cpp:240 +msgid "SNES: sample length will be padded to multiple of 16" +msgstr "" + +#: src/gui/sampleEdit.cpp:249 +msgid "QSound: loop cannot be longer than 32767 samples" +msgstr "" + +#: src/gui/sampleEdit.cpp:259 +msgid "NES: loop point ignored on DPCM (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:263 +msgid "NES: maximum DPCM sample length is 32648" +msgstr "" + +#: src/gui/sampleEdit.cpp:268 +msgid "X1-010: samples can't loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:271 +msgid "X1-010: maximum sample length is 131072" +msgstr "" + +#: src/gui/sampleEdit.cpp:276 +msgid "GA20: samples can't loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:287 +msgid "YM2608: loop point ignored on ADPCM (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:290 +msgid "YM2608: sample length will be padded to multiple of 512" +msgstr "" + +#: src/gui/sampleEdit.cpp:300 +msgid "YM2610: ADPCM-A samples can't loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:302 +msgid "YM2610: loop point ignored on ADPCM-B (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:305 +msgid "YM2610: sample length will be padded to multiple of 512" +msgstr "" + +#: src/gui/sampleEdit.cpp:309 +msgid "YM2610: maximum ADPCM-A sample length is 2097152" +msgstr "" + +#: src/gui/sampleEdit.cpp:318 +msgid "Y8950: loop point ignored on ADPCM (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:321 +msgid "Y8950: sample length will be padded to multiple of 512" +msgstr "" + +#: src/gui/sampleEdit.cpp:328 +msgid "Amiga: loop start must be a multiple of 2" +msgstr "" + +#: src/gui/sampleEdit.cpp:331 +msgid "Amiga: loop end must be a multiple of 2" +msgstr "" + +#: src/gui/sampleEdit.cpp:335 +msgid "Amiga: maximum sample length is 131070" +msgstr "" + +#: src/gui/sampleEdit.cpp:344 +msgid "SegaPCM: maximum sample length is 65280" +msgstr "" + +#: src/gui/sampleEdit.cpp:353 +msgid "K053260: loop point ignored (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:357 +msgid "K053260: maximum sample length is 65535" +msgstr "" + +#: src/gui/sampleEdit.cpp:362 +msgid "C140: maximum sample length is 65535" +msgstr "" + +#: src/gui/sampleEdit.cpp:371 +msgid "C219: loop start must be a multiple of 2" +msgstr "" + +#: src/gui/sampleEdit.cpp:374 +msgid "C219: loop end must be a multiple of 2" +msgstr "" + +#: src/gui/sampleEdit.cpp:378 +msgid "C219: maximum sample length is 131072" +msgstr "" + +#: src/gui/sampleEdit.cpp:386 +msgid "MSM6295: samples can't loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:389 +msgid "MSM6295: maximum bankswitched sample length is 129024" +msgstr "" + +#: src/gui/sampleEdit.cpp:395 +msgid "GBA DMA: loop start must be a multiple of 4" +msgstr "" + +#: src/gui/sampleEdit.cpp:398 +msgid "GBA DMA: loop length must be a multiple of 16" +msgstr "" + +#: src/gui/sampleEdit.cpp:402 +msgid "GBA DMA: sample length will be padded to multiple of 16" +msgstr "" + +#: src/gui/sampleEdit.cpp:411 +msgid "ES5506: backward loop mode isn't supported" +msgstr "" + +#: src/gui/sampleEdit.cpp:414 +msgid "" +"backward/ping-pong only supported in Generic PCM DAC\n" +"ping-pong also on ES5506" +msgstr "" + +#: src/gui/sampleEdit.cpp:444 +msgid "Info" +msgstr "" + +#: src/gui/sampleEdit.cpp:447 src/gui/sampleEdit.cpp:933 +msgid "Rate" +msgstr "" + +#: src/gui/sampleEdit.cpp:453 +msgid "Compat Rate" +msgstr "" + +#: src/gui/sampleEdit.cpp:457 +msgid "" +"used in DefleMask-compatible sample mode (17xx), in where samples are mapped " +"to an octave." +msgstr "" + +#: src/gui/sampleEdit.cpp:463 +#, c-format +msgid "Loop (length: %d)##Loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:463 src/gui/insEdit.cpp:544 src/gui/insEdit.cpp:554 +#: src/gui/insEdit.cpp:605 src/gui/insEdit.cpp:6017 +msgid "Loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:487 src/gui/sampleEdit.cpp:716 +#: src/gui/sampleEdit.cpp:752 +msgid "changing the loop in a BRR sample may result in glitches!" +msgstr "" + +#: src/gui/sampleEdit.cpp:529 +msgid "BRR emphasis" +msgstr "" + +#: src/gui/sampleEdit.cpp:538 +msgid "" +"this is a BRR sample.\n" +"enabling this option will muffle it (only affects non-SNES chips)." +msgstr "" + +#: src/gui/sampleEdit.cpp:540 +msgid "" +"enable this option to slightly boost high frequencies\n" +"to compensate for the SNES' Gaussian filter's muffle." +msgstr "" + +#: src/gui/sampleEdit.cpp:546 +msgid "8-bit dither" +msgstr "" + +#: src/gui/sampleEdit.cpp:554 +msgid "dither the sample when used on a chip that only supports 8-bit samples." +msgstr "" + +#: src/gui/sampleEdit.cpp:695 src/gui/gui.cpp:2975 +msgid "Start" +msgstr "" + +#: src/gui/sampleEdit.cpp:731 src/gui/gui.cpp:2983 +msgid "End" +msgstr "" + +#: src/gui/sampleEdit.cpp:841 +#, c-format +msgid "" +"%s\n" +"%d bytes free" +msgstr "" + +#: src/gui/sampleEdit.cpp:843 +#, c-format +msgid "" +"%s (%s)\n" +"%d bytes free" +msgstr "" + +#: src/gui/sampleEdit.cpp:847 +msgid "" +"\n" +"\n" +"not enough memory for this sample!" +msgstr "" + +#: src/gui/sampleEdit.cpp:871 +msgid "Edit mode: Select" +msgstr "" + +#: src/gui/sampleEdit.cpp:880 +msgid "Edit mode: Draw" +msgstr "" + +#: src/gui/sampleEdit.cpp:891 src/gui/sampleEdit.cpp:902 +msgid "Resize" +msgstr "" + +#: src/gui/sampleEdit.cpp:906 +msgid "couldn't resize! make sure your sample is 8 or 16-bit." +msgstr "" + +#: src/gui/sampleEdit.cpp:926 src/gui/sampleEdit.cpp:957 +msgid "Resample" +msgstr "" + +#: src/gui/sampleEdit.cpp:951 +msgid "Factor" +msgstr "" + +#: src/gui/sampleEdit.cpp:956 +msgid "Filter" +msgstr "" + +#: src/gui/sampleEdit.cpp:961 +msgid "couldn't resample! make sure your sample is 8 or 16-bit." +msgstr "" + +#: src/gui/sampleEdit.cpp:1010 src/gui/sampleEdit.cpp:1197 +#: src/gui/sampleEdit.cpp:1281 +msgid "Apply" +msgstr "" + +#: src/gui/sampleEdit.cpp:1053 +msgid "Fade in" +msgstr "" + +#: src/gui/sampleEdit.cpp:1060 +msgid "Fade out" +msgstr "" + +#: src/gui/sampleEdit.cpp:1065 +msgid "Insert silence" +msgstr "" + +#: src/gui/sampleEdit.cpp:1076 +msgid "Go" +msgstr "" + +#: src/gui/sampleEdit.cpp:1081 +msgid "couldn't insert! make sure your sample is 8 or 16-bit." +msgstr "" + +#: src/gui/sampleEdit.cpp:1098 +msgid "Apply silence" +msgstr "" + +#: src/gui/sampleEdit.cpp:1112 +msgid "Trim" +msgstr "" + +#: src/gui/sampleEdit.cpp:1135 +msgid "Signed/unsigned exchange" +msgstr "" + +#: src/gui/sampleEdit.cpp:1140 +msgid "Apply filter" +msgstr "" + +#: src/gui/sampleEdit.cpp:1151 +msgid "Cutoff:" +msgstr "" + +#: src/gui/sampleEdit.cpp:1161 src/gui/insEdit.cpp:5895 +#: src/gui/insEdit.cpp:5898 src/gui/insEdit.cpp:6953 src/gui/insEdit.cpp:7216 +#: src/gui/insEdit.cpp:7478 +msgid "Resonance" +msgstr "" + +#: src/gui/sampleEdit.cpp:1167 src/gui/insEdit.cpp:6897 +msgid "Power" +msgstr "" + +#: src/gui/sampleEdit.cpp:1181 +msgid "Low-pass" +msgstr "" + +#: src/gui/sampleEdit.cpp:1186 +msgid "Band-pass" +msgstr "" + +#: src/gui/sampleEdit.cpp:1191 +msgid "High-pass" +msgstr "" + +#: src/gui/sampleEdit.cpp:1262 +msgid "Crossfade loop points" +msgstr "" + +#: src/gui/sampleEdit.cpp:1271 +msgid "Number of samples" +msgstr "" + +#: src/gui/sampleEdit.cpp:1277 +msgid "Linear <-> Equal power" +msgstr "" + +#: src/gui/sampleEdit.cpp:1283 +msgid "Crossfade: length would go out of bounds. Aborted..." +msgstr "" + +#: src/gui/sampleEdit.cpp:1286 +msgid "Crossfade: length would overflow loopStart. Try a smaller random value." +msgstr "" + +#: src/gui/sampleEdit.cpp:1332 +msgid "Preview sample" +msgstr "" + +#: src/gui/sampleEdit.cpp:1346 +msgid "Create instrument from sample" +msgstr "" + +#: src/gui/sampleEdit.cpp:1747 +msgid "paste (replace)" +msgstr "" + +#: src/gui/sampleEdit.cpp:1750 +msgid "paste (mix)" +msgstr "" + +#: src/gui/sampleEdit.cpp:1754 src/gui/gui.cpp:2769 +msgid "select all" +msgstr "" + +#: src/gui/sampleEdit.cpp:1758 +msgid "set loop to selection" +msgstr "" + +#: src/gui/sampleEdit.cpp:1761 +msgid "create wavetable from selection" +msgstr "" + +#: src/gui/sampleEdit.cpp:1767 +msgid "Draw" +msgstr "" + +#: src/gui/sampleEdit.cpp:1767 +msgid "Select" +msgstr "" + +#: src/gui/sampleEdit.cpp:1769 +#, c-format +msgid "%d samples, %d bytes" +msgstr "" + +#: src/gui/sampleEdit.cpp:1784 +#, c-format +msgid " (%d-%d: %d samples)" +msgstr "" + +#: src/gui/sampleEdit.cpp:1976 +msgid "Non-8/16-bit samples cannot be edited without prior conversion." +msgstr "" + +#: src/gui/newSong.cpp:122 src/gui/newSong.cpp:123 +msgid "Choose a System!" +msgstr "" + +#: src/gui/newSong.cpp:179 +msgid "Categories" +msgstr "" + +#: src/gui/newSong.cpp:210 +msgid "no systems here yet!" +msgstr "" + +#: src/gui/newSong.cpp:212 +msgid "no results" +msgstr "" + +#: src/gui/newSong.cpp:228 +msgid "I'm feeling lucky" +msgstr "" + +#: src/gui/newSong.cpp:230 +msgid "no categories available! what in the world." +msgstr "" + +#: src/gui/newSong.cpp:265 +msgid "it appears you're extremely lucky today!" +msgstr "" + +#: src/gui/cursor.cpp:205 +#, c-format +msgid "finish selection: %d.%d,%d - %d.%d,%d" +msgstr "" + +#: src/gui/tutorial.cpp:487 +msgid "" +"Play demo songs?\n" +"- Down: Play current song\n" +"- Up: Play demo songs" +msgstr "" + +#: src/gui/tutorial.cpp:491 +msgid "" +"Welcome to Combat Vehicle!\n" +"\n" +"Controls:\n" +"X - Shoot Arrow Key - Move\n" +"Z - Special Esc - Quit" +msgstr "" + +#: src/gui/tutorial.cpp:496 +msgid "GAME OVER" +msgstr "" + +#: src/gui/tutorial.cpp:498 +msgid "High Score!" +msgstr "" + +#: src/gui/tutorial.cpp:658 +msgid "Welcome!" +msgstr "" + +#: src/gui/tutorial.cpp:661 +msgid "welcome to Furnace, the biggest open-source chiptune tracker!" +msgstr "" + +#: src/gui/tutorial.cpp:665 +msgid "here are some tips to get you started:" +msgstr "" + +#: src/gui/tutorial.cpp:668 +msgid "" +"- add an instrument by clicking on + in Instruments\n" +"- click on the pattern view to focus it\n" +"- channel columns have the following, in this order: note, instrument, " +"volume and effects\n" +"- hit space bar while on the pattern to toggle Edit Mode\n" +"- click on the pattern or use arrow keys to move the cursor\n" +"- values (instrument, volume, effects and effect values) are in hexadecimal\n" +"- hit enter to play/stop the song\n" +"- extend the song by adding more orders in the Orders window\n" +"- click on the Orders matrix to change the patterns of a channel (left click " +"increases; right click decreases)" +msgstr "" + +#: src/gui/tutorial.cpp:680 +msgid "" +"if you need help, you may:\n" +"- read the manual (a file called manual.pdf)\n" +"- ask for help in Discussions (https://github.com/tildearrow/furnace/" +"discussions), the Furnace Discord (https://discord.gg/EfrwT2wq7z) or Furnace " +"in Revolt (official: https://rvlt.gg/GRPS6tmc)" +msgstr "" + +#: src/gui/tutorial.cpp:687 +msgid "" +"if you find any issues, be sure to report them! the issue tracker is here: " +"https://github.com/tildearrow/furnace/issues" +msgstr "" + +#: src/gui/tutorial.cpp:1428 +#, c-format +msgid "STAGE %d" +msgstr "" + +#: src/gui/songInfo.cpp:32 +msgid "Song Info##Song Information" +msgstr "" + +#: src/gui/songInfo.cpp:50 +msgid "Author" +msgstr "" + +#: src/gui/songInfo.cpp:60 +msgid "Album" +msgstr "" + +#: src/gui/songInfo.cpp:79 +msgid "Auto" +msgstr "" + +#: src/gui/songInfo.cpp:100 +msgid "Tuning (A-4)" +msgstr "" + +#: src/gui/grooves.cpp:38 +msgid "use effect 09xx to select a groove pattern." +msgstr "" + +#: src/gui/grooves.cpp:48 src/gui/gui.cpp:4480 +msgid "pattern" +msgstr "" + +#: src/gui/grooves.cpp:132 +msgid "remove" +msgstr "" + +#: src/gui/doAction.cpp:45 src/gui/gui.cpp:4201 +msgid "Unsaved changes! Save changes before opening another file?" +msgstr "" + +#: src/gui/doAction.cpp:52 +msgid "Unsaved changes! Save changes before opening backup?" +msgstr "" + +#: src/gui/doAction.cpp:62 src/gui/gui.cpp:4237 src/gui/gui.cpp:5025 +#: src/gui/gui.cpp:5063 src/gui/gui.cpp:5069 src/gui/gui.cpp:5657 +#: src/gui/gui.cpp:5681 src/gui/gui.cpp:5705 src/gui/gui.cpp:5729 +#: src/gui/gui.cpp:5753 src/gui/gui.cpp:5777 +#, c-format +msgid "Error while saving file! (%s)" +msgstr "" + +#: src/gui/doAction.cpp:189 +msgid "Error while sending request (MIDI output not configured?)" +msgstr "" + +#: src/gui/doAction.cpp:197 +msgid "Select an option: (cannot be undone!)" +msgstr "" + +#: src/gui/doAction.cpp:691 src/gui/doAction.cpp:720 src/gui/doAction.cpp:1593 +#: src/gui/gui.cpp:6091 +msgid "too many instruments!" +msgstr "" + +#: src/gui/doAction.cpp:1124 +msgid "couldn't paste! make sure your sample is 8 or 16-bit." +msgstr "" + +#: src/gui/doAction.cpp:1628 +msgid "select at least one sample!" +msgstr "" + +#: src/gui/doAction.cpp:1630 +msgid "maximum size is 256 samples!" +msgstr "" + +#: src/gui/csPlayer.cpp:113 +msgid "Load" +msgstr "" + +#: src/gui/csPlayer.cpp:117 +msgid "Kill" +msgstr "" + +#: src/gui/csPlayer.cpp:119 +msgid "Kikai wa mou shindeiru!" +msgstr "The machine is already dead!" + +#: src/gui/csPlayer.cpp:123 +msgid "Burn Current Song" +msgstr "" + +#: src/gui/csPlayer.cpp:141 +msgid "Status" +msgstr "" + +#: src/gui/csPlayer.cpp:148 +msgid "start" +msgstr "" + +#: src/gui/csPlayer.cpp:150 +msgid "PC" +msgstr "" + +#: src/gui/csPlayer.cpp:152 +msgid "wait" +msgstr "" + +#: src/gui/csPlayer.cpp:154 +msgid "SP" +msgstr "" + +#: src/gui/csPlayer.cpp:156 src/gui/insEdit.cpp:2733 +msgid "note" +msgstr "" + +#: src/gui/csPlayer.cpp:158 src/gui/insEdit.cpp:2728 +msgid "pitch" +msgstr "" + +#: src/gui/csPlayer.cpp:160 +msgid "vol" +msgstr "" + +#: src/gui/csPlayer.cpp:162 +msgid "vols" +msgstr "" + +#: src/gui/csPlayer.cpp:164 +msgid "vib" +msgstr "" + +#: src/gui/csPlayer.cpp:166 +msgid "porta" +msgstr "" + +#: src/gui/csPlayer.cpp:168 +msgid "arp" +msgstr "" + +#: src/gui/csPlayer.cpp:203 +msgid "Trace" +msgstr "" + +#: src/gui/csPlayer.cpp:244 +msgid "Disassemble" +msgstr "" + +#: src/gui/gui.cpp:1136 src/gui/gui.cpp:1140 +msgid "the song is over!" +msgstr "" + +#: src/gui/gui.cpp:1667 +msgid "Open File" +msgstr "" + +#: src/gui/gui.cpp:1668 src/gui/gui.cpp:1798 src/gui/gui.cpp:1838 +#: src/gui/gui.cpp:1953 src/gui/gui.cpp:1962 src/gui/gui.cpp:1971 +#: src/gui/gui.cpp:2073 src/gui/gui.cpp:2093 src/gui/gui.cpp:2111 +msgid "compatible files" +msgstr "" + +#: src/gui/gui.cpp:1669 src/gui/gui.cpp:1743 src/gui/gui.cpp:1799 +#: src/gui/gui.cpp:1839 src/gui/gui.cpp:1851 src/gui/gui.cpp:1870 +#: src/gui/gui.cpp:2074 src/gui/gui.cpp:2084 src/gui/gui.cpp:2095 +#: src/gui/gui.cpp:2113 +msgid "all files" +msgstr "" + +#: src/gui/gui.cpp:1676 +msgid "no backups made yet!" +msgstr "" + +#: src/gui/gui.cpp:1681 src/gui/gui.cpp:1690 src/gui/gui.cpp:2130 +msgid "Furnace song" +msgstr "" + +#: src/gui/gui.cpp:1689 +msgid "Save File" +msgstr "" + +#: src/gui/gui.cpp:1698 src/gui/gui.cpp:1708 +msgid "Export DMF" +msgstr "" + +#: src/gui/gui.cpp:1699 +msgid "DefleMask 1.1.3 module" +msgstr "" + +#: src/gui/gui.cpp:1709 +msgid "DefleMask 1.0/legacy module" +msgstr "" + +#: src/gui/gui.cpp:1726 +msgid "Load Instrument" +msgstr "" + +#: src/gui/gui.cpp:1727 +msgid "all compatible files" +msgstr "" + +#: src/gui/gui.cpp:1728 src/gui/gui.cpp:1777 +msgid "Furnace instrument" +msgstr "" + +#: src/gui/gui.cpp:1729 src/gui/gui.cpp:1787 +msgid "DefleMask preset" +msgstr "" + +#: src/gui/gui.cpp:1730 +msgid "TFM Music Maker instrument" +msgstr "" + +#: src/gui/gui.cpp:1731 +msgid "VGM Music Maker instrument" +msgstr "" + +#: src/gui/gui.cpp:1732 +msgid "Scream Tracker 3 instrument" +msgstr "" + +#: src/gui/gui.cpp:1733 +msgid "SoundBlaster instrument" +msgstr "" + +#: src/gui/gui.cpp:1734 +msgid "Wohlstand OPL instrument" +msgstr "" + +#: src/gui/gui.cpp:1735 +msgid "Wohlstand OPN instrument" +msgstr "" + +#: src/gui/gui.cpp:1736 +msgid "Gens KMod patch dump" +msgstr "" + +#: src/gui/gui.cpp:1737 +msgid "BNK file (AdLib)" +msgstr "" + +#: src/gui/gui.cpp:1738 +msgid "FF preset bank" +msgstr "" + +#: src/gui/gui.cpp:1739 +msgid "2612edit GYB preset bank" +msgstr "" + +#: src/gui/gui.cpp:1740 +msgid "VOPM preset bank" +msgstr "" + +#: src/gui/gui.cpp:1741 +msgid "Wohlstand WOPL bank" +msgstr "" + +#: src/gui/gui.cpp:1742 +msgid "Wohlstand WOPN bank" +msgstr "" + +#: src/gui/gui.cpp:1776 src/gui/gui.cpp:1786 +msgid "Save Instrument" +msgstr "" + +#: src/gui/gui.cpp:1797 +msgid "Load Wavetable" +msgstr "" + +#: src/gui/gui.cpp:1809 src/gui/gui.cpp:1818 src/gui/gui.cpp:1827 +msgid "Save Wavetable" +msgstr "" + +#: src/gui/gui.cpp:1810 +msgid "Furnace wavetable" +msgstr "" + +#: src/gui/gui.cpp:1819 +msgid "DefleMask wavetable" +msgstr "" + +#: src/gui/gui.cpp:1828 +msgid "raw data" +msgstr "" + +#: src/gui/gui.cpp:1837 +msgid "Load Sample" +msgstr "" + +#: src/gui/gui.cpp:1850 +msgid "Load Raw Sample" +msgstr "" + +#: src/gui/gui.cpp:1859 +msgid "Save Sample" +msgstr "" + +#: src/gui/gui.cpp:1860 src/gui/gui.cpp:1880 src/gui/gui.cpp:1890 +#: src/gui/gui.cpp:1900 +msgid "Wave file" +msgstr "" + +#: src/gui/gui.cpp:1869 +msgid "Save Raw Sample" +msgstr "" + +#: src/gui/gui.cpp:1879 src/gui/gui.cpp:1889 src/gui/gui.cpp:1899 +msgid "Export Audio" +msgstr "" + +#: src/gui/gui.cpp:1909 +msgid "Export VGM" +msgstr "" + +#: src/gui/gui.cpp:1910 +msgid "VGM file" +msgstr "" + +#: src/gui/gui.cpp:1919 +msgid "Export ZSM" +msgstr "" + +#: src/gui/gui.cpp:1920 +msgid "ZSM file" +msgstr "" + +#: src/gui/gui.cpp:1929 src/gui/gui.cpp:1939 +msgid "Export Command Stream" +msgstr "" + +#: src/gui/gui.cpp:1930 +msgid "text file" +msgstr "" + +#: src/gui/gui.cpp:1940 +msgid "binary file" +msgstr "" + +#: src/gui/gui.cpp:1947 src/gui/gui.cpp:5376 +msgid "Coming soon!" +msgstr "" + +#: src/gui/gui.cpp:1952 src/gui/gui.cpp:1961 src/gui/gui.cpp:1970 +msgid "Select Font" +msgstr "" + +#: src/gui/gui.cpp:1979 +msgid "Select Color File" +msgstr "" + +#: src/gui/gui.cpp:1980 src/gui/gui.cpp:1989 src/gui/gui.cpp:2008 +#: src/gui/gui.cpp:2017 src/gui/gui.cpp:2026 src/gui/gui.cpp:2035 +#: src/gui/gui.cpp:2053 src/gui/gui.cpp:2062 +msgid "configuration files" +msgstr "" + +#: src/gui/gui.cpp:1988 +msgid "Select Keybind File" +msgstr "" + +#: src/gui/gui.cpp:1997 +msgid "Select Layout File" +msgstr "" + +#: src/gui/gui.cpp:1998 src/gui/gui.cpp:2044 +msgid ".ini files" +msgstr "" + +#: src/gui/gui.cpp:2007 +msgid "Select User Presets File" +msgstr "" + +#: src/gui/gui.cpp:2016 +msgid "Select Settings File" +msgstr "" + +#: src/gui/gui.cpp:2025 +msgid "Export Colors" +msgstr "" + +#: src/gui/gui.cpp:2034 +msgid "Export Keybinds" +msgstr "" + +#: src/gui/gui.cpp:2043 +msgid "Export Layout" +msgstr "" + +#: src/gui/gui.cpp:2052 +msgid "Export User Presets" +msgstr "" + +#: src/gui/gui.cpp:2061 +msgid "Export Settings" +msgstr "" + +#: src/gui/gui.cpp:2072 +msgid "Load ROM" +msgstr "" + +#: src/gui/gui.cpp:2082 +msgid "Play Command Stream" +msgstr "" + +#: src/gui/gui.cpp:2083 +msgid "command stream" +msgstr "" + +#: src/gui/gui.cpp:2092 +msgid "Open Test" +msgstr "" + +#: src/gui/gui.cpp:2094 src/gui/gui.cpp:2112 +msgid "another option" +msgstr "" + +#: src/gui/gui.cpp:2110 +msgid "Open Test (Multi)" +msgstr "" + +#: src/gui/gui.cpp:2129 +msgid "Save Test" +msgstr "" + +#: src/gui/gui.cpp:2131 +msgid "DefleMask module" +msgstr "" + +#: src/gui/gui.cpp:2171 +msgid "compression error" +msgstr "" + +#: src/gui/gui.cpp:2183 +msgid "zlib stream error" +msgstr "" + +#: src/gui/gui.cpp:2205 +msgid "zlib finish stream error" +msgstr "" + +#: src/gui/gui.cpp:2316 +msgid "everything OK" +msgstr "" + +#: src/gui/gui.cpp:2334 +msgid "" +"you have loaded a backup!\n" +"if you need to, please save it somewhere.\n" +"\n" +"DO NOT RELY ON THE BACKUP SYSTEM FOR AUTO-SAVE!\n" +"Furnace will not save backups of backups." +msgstr "" + +#: src/gui/gui.cpp:2342 src/gui/gui.cpp:3743 src/gui/gui.cpp:4213 +msgid "Unsaved changes! Save changes before opening file?" +msgstr "" + +#: src/gui/gui.cpp:2736 +msgid "paste special..." +msgstr "" + +#: src/gui/gui.cpp:2737 +msgid "paste mix" +msgstr "" + +#: src/gui/gui.cpp:2738 +msgid "paste mix (background)" +msgstr "" + +#: src/gui/gui.cpp:2739 +msgid "paste with ins (foreground)" +msgstr "" + +#: src/gui/gui.cpp:2741 src/gui/gui.cpp:2753 src/gui/gui.cpp:2963 +msgid "no instruments available" +msgstr "" + +#: src/gui/gui.cpp:2751 +msgid "paste with ins (background)" +msgstr "" + +#: src/gui/gui.cpp:2763 +msgid "paste flood" +msgstr "" + +#: src/gui/gui.cpp:2764 +msgid "paste overflow" +msgstr "" + +#: src/gui/gui.cpp:2773 +msgid "operation mask..." +msgstr "" + +#: src/gui/gui.cpp:2780 +msgid "pull delete" +msgstr "" + +#: src/gui/gui.cpp:2784 +msgid "insert" +msgstr "" + +#: src/gui/gui.cpp:2792 +msgid "transpose (note)" +msgstr "" + +#: src/gui/gui.cpp:2796 +msgid "transpose (value)" +msgstr "" + +#: src/gui/gui.cpp:2808 src/gui/gui.cpp:3052 +msgid "invert values" +msgstr "" + +#: src/gui/gui.cpp:2824 +msgid "collapse/expand" +msgstr "" + +#: src/gui/gui.cpp:2829 +msgid "input latch" +msgstr "" + +#: src/gui/gui.cpp:2856 +msgid "" +"&&: selected instrument\n" +"..: no instrument" +msgstr "" + +#: src/gui/gui.cpp:2910 +msgid "Set" +msgstr "" + +#: src/gui/gui.cpp:2930 +msgid "note up" +msgstr "" + +#: src/gui/gui.cpp:2931 +msgid "note down" +msgstr "" + +#: src/gui/gui.cpp:2932 +msgid "octave up" +msgstr "" + +#: src/gui/gui.cpp:2933 +msgid "octave down" +msgstr "" + +#: src/gui/gui.cpp:2935 +msgid "values up" +msgstr "" + +#: src/gui/gui.cpp:2936 +msgid "values down" +msgstr "" + +#: src/gui/gui.cpp:2937 +msgid "values up (+16)" +msgstr "" + +#: src/gui/gui.cpp:2938 +msgid "values down (-16)" +msgstr "" + +#: src/gui/gui.cpp:2941 +msgid "transpose" +msgstr "" + +#: src/gui/gui.cpp:2949 +msgid "Notes" +msgstr "" + +#: src/gui/gui.cpp:2954 +msgid "Values" +msgstr "" + +#: src/gui/gui.cpp:2961 +msgid "change instrument..." +msgstr "" + +#: src/gui/gui.cpp:2974 +msgid "gradient/fade..." +msgstr "" + +#: src/gui/gui.cpp:2991 src/gui/gui.cpp:3036 +msgid "Nibble mode" +msgstr "" + +#: src/gui/gui.cpp:3000 +msgid "Go ahead" +msgstr "" + +#: src/gui/gui.cpp:3006 src/gui/insEdit.cpp:7604 +msgid "scale..." +msgstr "" + +#: src/gui/gui.cpp:3011 +msgid "Scale" +msgstr "" + +#: src/gui/gui.cpp:3017 src/gui/insEdit.cpp:7632 +msgid "randomize..." +msgstr "" + +#: src/gui/gui.cpp:3018 +msgid "Minimum" +msgstr "" + +#: src/gui/gui.cpp:3027 +msgid "Maximum" +msgstr "" + +#: src/gui/gui.cpp:3056 +msgid "flip selection" +msgstr "" + +#: src/gui/gui.cpp:3059 +msgid "collapse/expand amount##CollapseAmount" +msgstr "" + +#: src/gui/gui.cpp:3068 +msgid "collapse pattern" +msgstr "" + +#: src/gui/gui.cpp:3069 +msgid "expand pattern" +msgstr "" + +#: src/gui/gui.cpp:3074 +msgid "collapse song" +msgstr "" + +#: src/gui/gui.cpp:3075 +msgid "expand song" +msgstr "" + +#: src/gui/gui.cpp:3080 +msgid "find/replace" +msgstr "" + +#: src/gui/gui.cpp:3094 src/gui/gui.cpp:5807 src/gui/gui.cpp:7362 +#, c-format +msgid "could NOT save layout! %s" +msgstr "" + +#: src/gui/gui.cpp:3106 +#, c-format +msgid "could NOT load layout! %s" +msgstr "" + +#: src/gui/gui.cpp:3568 +msgid "" +"Furnace has been started in Safe Mode.\n" +"this means that:\n" +"\n" +"- software rendering is being used\n" +"- audio output may not work\n" +"- font loading is disabled\n" +"\n" +"check any settings which may have made Furnace start up in this mode.\n" +"font loading is one of these." +msgstr "" + +#: src/gui/gui.cpp:4053 +msgid "can't keep going without graphics! Furnace will quit now." +msgstr "" + +#: src/gui/gui.cpp:4191 +msgid "file" +msgstr "" + +#: src/gui/gui.cpp:4192 +msgid "new..." +msgstr "" + +#: src/gui/gui.cpp:4199 +msgid "open..." +msgstr "" + +#: src/gui/gui.cpp:4206 +msgid "open recent" +msgstr "" + +#: src/gui/gui.cpp:4222 +msgid "nothing here yet" +msgstr "" + +#: src/gui/gui.cpp:4225 +msgid "clear history" +msgstr "" + +#: src/gui/gui.cpp:4226 +msgid "Are you sure you want to clear the recent file list?" +msgstr "" + +#: src/gui/gui.cpp:4241 +msgid "save as..." +msgstr "" + +#: src/gui/gui.cpp:4246 src/gui/gui.cpp:4287 +msgid "export audio..." +msgstr "" + +#: src/gui/gui.cpp:4250 src/gui/gui.cpp:4291 +msgid "export VGM..." +msgstr "" + +#: src/gui/gui.cpp:4259 src/gui/gui.cpp:4300 +msgid "export ZSM..." +msgstr "" + +#: src/gui/gui.cpp:4269 src/gui/gui.cpp:4310 +msgid "export Amiga validation data..." +msgstr "" + +#: src/gui/gui.cpp:4274 src/gui/gui.cpp:4315 +msgid "export text..." +msgstr "" + +#: src/gui/gui.cpp:4278 src/gui/gui.cpp:4319 +msgid "export command stream..." +msgstr "" + +#: src/gui/gui.cpp:4282 src/gui/gui.cpp:4323 +msgid "export .dmf..." +msgstr "" + +#: src/gui/gui.cpp:4328 +msgid "export..." +msgstr "" + +#: src/gui/gui.cpp:4334 +msgid "manage chips" +msgstr "" + +#: src/gui/gui.cpp:4338 +msgid "add chip..." +msgstr "" + +#: src/gui/gui.cpp:4343 src/gui/sysManager.cpp:138 +#, c-format +msgid "cannot add chip! (%s)" +msgstr "" + +#: src/gui/gui.cpp:4355 +msgid "configure chip..." +msgstr "" + +#: src/gui/gui.cpp:4365 +msgid "change chip..." +msgstr "" + +#: src/gui/gui.cpp:4367 src/gui/gui.cpp:4390 +msgid "Preserve channel positions" +msgstr "" + +#: src/gui/gui.cpp:4379 src/gui/sysManager.cpp:109 +#, c-format +msgid "cannot change chip! (%s)" +msgstr "" + +#: src/gui/gui.cpp:4388 +msgid "remove chip..." +msgstr "" + +#: src/gui/gui.cpp:4394 +#, c-format +msgid "cannot remove chip! (%s)" +msgstr "" + +#: src/gui/gui.cpp:4408 +msgid "open built-in assets directory" +msgstr "" + +#: src/gui/gui.cpp:4414 +msgid "restore backup" +msgstr "" + +#: src/gui/gui.cpp:4418 +msgid "exit..." +msgstr "" + +#: src/gui/gui.cpp:4426 +msgid "edit" +msgstr "" + +#: src/gui/gui.cpp:4434 +msgid "clear..." +msgstr "" + +#: src/gui/gui.cpp:4439 +msgid "settings" +msgstr "" + +#: src/gui/gui.cpp:4441 +msgid "full screen" +msgstr "" + +#: src/gui/gui.cpp:4445 +msgid "lock layout" +msgstr "" + +#: src/gui/gui.cpp:4448 +msgid "pattern visualizer" +msgstr "" + +#: src/gui/gui.cpp:4454 +msgid "reset layout" +msgstr "" + +#: src/gui/gui.cpp:4458 +msgid "switch to mobile view" +msgstr "" + +#: src/gui/gui.cpp:4462 +msgid "user systems..." +msgstr "" + +#: src/gui/gui.cpp:4465 +msgid "settings..." +msgstr "" + +#: src/gui/gui.cpp:4471 +msgid "Window" +msgstr "" + +#: src/gui/gui.cpp:4471 +msgid "window" +msgstr "" + +#: src/gui/gui.cpp:4472 +msgid "song" +msgstr "" + +#: src/gui/gui.cpp:4473 +msgid "song comments" +msgstr "" + +#: src/gui/gui.cpp:4474 +msgid "song information" +msgstr "" + +#: src/gui/gui.cpp:4475 +msgid "subsongs" +msgstr "" + +#: src/gui/gui.cpp:4477 +msgid "channels" +msgstr "" + +#: src/gui/gui.cpp:4478 +msgid "chip manager" +msgstr "" + +#: src/gui/gui.cpp:4479 +msgid "orders" +msgstr "" + +#: src/gui/gui.cpp:4481 +msgid "pattern manager" +msgstr "" + +#: src/gui/gui.cpp:4482 +msgid "mixer" +msgstr "" + +#: src/gui/gui.cpp:4483 +msgid "compatibility flags" +msgstr "" + +#: src/gui/gui.cpp:4486 src/gui/gui.cpp:4488 +msgid "assets" +msgstr "" + +#: src/gui/gui.cpp:4490 +msgid "instruments" +msgstr "" + +#: src/gui/gui.cpp:4491 +msgid "samples" +msgstr "" + +#: src/gui/gui.cpp:4492 +msgid "wavetables" +msgstr "" + +#: src/gui/gui.cpp:4495 +msgid "instrument editor" +msgstr "" + +#: src/gui/gui.cpp:4496 +msgid "sample editor" +msgstr "" + +#: src/gui/gui.cpp:4497 +msgid "wavetable editor" +msgstr "" + +#: src/gui/gui.cpp:4500 +msgid "visualizers" +msgstr "" + +#: src/gui/gui.cpp:4501 +msgid "oscilloscope (master)" +msgstr "" + +#: src/gui/gui.cpp:4502 +msgid "oscilloscope (per-channel)" +msgstr "" + +#: src/gui/gui.cpp:4503 +msgid "oscilloscope (X-Y)" +msgstr "" + +#: src/gui/gui.cpp:4504 +msgid "volume meter" +msgstr "" + +#: src/gui/gui.cpp:4507 +msgid "tempo" +msgstr "" + +#: src/gui/gui.cpp:4508 +msgid "clock" +msgstr "" + +#: src/gui/gui.cpp:4509 +msgid "grooves" +msgstr "" + +#: src/gui/gui.cpp:4510 +msgid "speed" +msgstr "" + +#: src/gui/gui.cpp:4514 +msgid "log viewer" +msgstr "" + +#: src/gui/gui.cpp:4515 +msgid "register view" +msgstr "" + +#: src/gui/gui.cpp:4516 +msgid "statistics" +msgstr "" + +#: src/gui/gui.cpp:4517 +msgid "memory composition" +msgstr "" + +#: src/gui/gui.cpp:4521 src/gui/gui.cpp:4529 +msgid "effect list" +msgstr "" + +#: src/gui/gui.cpp:4522 +msgid "play/edit controls" +msgstr "" + +#: src/gui/gui.cpp:4523 +msgid "piano/input pad" +msgstr "" + +#: src/gui/gui.cpp:4524 +msgid "spoiler" +msgstr "" + +#: src/gui/gui.cpp:4528 +msgid "Help" +msgstr "" + +#: src/gui/gui.cpp:4528 +msgid "help" +msgstr "" + +#: src/gui/gui.cpp:4530 +msgid "debug menu" +msgstr "" + +#: src/gui/gui.cpp:4531 +msgid "inspector" +msgstr "" + +#: src/gui/gui.cpp:4532 +msgid "panic" +msgstr "" + +#: src/gui/gui.cpp:4533 +msgid "about..." +msgstr "" + +#: src/gui/gui.cpp:4548 +#, c-format +msgid "| Speed %d:%d" +msgstr "" + +#: src/gui/gui.cpp:4550 +#, c-format +msgid "| Speed %d" +msgstr "" + +#: src/gui/gui.cpp:4552 +msgid "| Groove" +msgstr "" + +#: src/gui/gui.cpp:4555 +#, c-format +msgid " @ %gHz (%g BPM) " +msgstr "" + +#: src/gui/gui.cpp:4558 +#, c-format +msgid "| Order %.2X/%.2X " +msgstr "" + +#: src/gui/gui.cpp:4560 +#, c-format +msgid "| Order %d/%d " +msgstr "" + +#: src/gui/gui.cpp:4564 +#, c-format +msgid "| Row %.2X/%.2X " +msgstr "" + +#: src/gui/gui.cpp:4566 +#, c-format +msgid "| Row %d/%d " +msgstr "" + +#: src/gui/gui.cpp:4569 +msgid "| " +msgstr "" + +#: src/gui/gui.cpp:4572 +msgid "Don't you have anything better to do?" +msgstr "" + +#: src/gui/gui.cpp:4582 +#, c-format +msgid "%d year " +msgid_plural "%d years " +msgstr[0] "" +msgstr[1] "" + +#: src/gui/gui.cpp:4583 +#, c-format +msgid "%d month " +msgid_plural "%d months " +msgstr[0] "" +msgstr[1] "" + +#: src/gui/gui.cpp:4584 +#, c-format +msgid "%d day " +msgid_plural "%d days " +msgstr[0] "" +msgstr[1] "" + +#: src/gui/gui.cpp:4609 +msgid "Note off (cut)" +msgstr "" + +#: src/gui/gui.cpp:4611 +msgid "Note off (release)" +msgstr "" + +#: src/gui/gui.cpp:4613 +msgid "Macro release only" +msgstr "" + +#: src/gui/gui.cpp:4615 +#, c-format +msgid "Note on: %s" +msgstr "" + +#: src/gui/gui.cpp:4623 +#, c-format +msgid "Ins %d: " +msgstr "" + +#: src/gui/gui.cpp:4626 +#, c-format +msgid "Ins %d: %s" +msgstr "" + +#: src/gui/gui.cpp:4635 +#, c-format +msgid "Set volume: %d (%.2X, INVALID!)" +msgstr "" + +#: src/gui/gui.cpp:4638 +#, c-format +msgid "Set volume: %d (%.2X, %d%%)" +msgstr "" + +#: src/gui/gui.cpp:4660 +msgid "| modified" +msgstr "" + +#: src/gui/gui.cpp:4825 src/gui/gui.cpp:4828 +msgid "System File Dialog Pending" +msgstr "" + +#: src/gui/gui.cpp:4941 +msgid "" +"there was an error in the file dialog! you may want to report this issue " +"to:\n" +"https://github.com/tildearrow/furnace/issues\n" +"check the Log Viewer (window > log viewer) for more information.\n" +"\n" +"for now please disable the system file picker in Settings > General." +msgstr "" + +#: src/gui/gui.cpp:4944 +msgid "can't do anything without Storage permissions!" +msgstr "" + +#: src/gui/gui.cpp:4946 +msgid "" +"Zenity/KDialog not available!\n" +"please install one of these, or disable the system file picker in Settings > " +"General." +msgstr "" + +#: src/gui/gui.cpp:5082 +msgid "" +"error while saving instrument! only the following instrument types are " +"supported:\n" +"- FM (OPN)\n" +"- SN76489/Sega PSG\n" +"- Game Boy\n" +"- PC Engine\n" +"- NES\n" +"- C64\n" +"- FM (OPLL)\n" +"- FDS" +msgstr "" + +#: src/gui/gui.cpp:5110 +msgid "there were some errors while loading samples:\n" +msgstr "" + +#: src/gui/gui.cpp:5155 src/gui/gui.cpp:6339 +msgid "...but you haven't selected a sample!" +msgstr "" + +#: src/gui/gui.cpp:5170 src/gui/gui.cpp:5179 +msgid "could not save sample! open Log Viewer for more information." +msgstr "" + +#: src/gui/gui.cpp:5198 +msgid "there were some warnings/errors while loading instruments:\n" +msgstr "" + +#: src/gui/gui.cpp:5204 +#, c-format +msgid "> %s: cannot load instrument! (%s)\n" +msgstr "" + +#: src/gui/gui.cpp:5222 src/gui/gui.cpp:5276 +#, c-format +msgid "cannot load instrument! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5228 +msgid "" +"congratulations! you managed to load nothing.\n" +"you are entitled to a bug report." +msgstr "" + +#: src/gui/gui.cpp:5269 src/gui/gui.cpp:6243 +msgid "...but you haven't selected an instrument!" +msgstr "" + +#: src/gui/gui.cpp:5281 +msgid "there were some errors while loading wavetables:\n" +msgstr "" + +#: src/gui/gui.cpp:5290 src/gui/gui.cpp:5300 src/gui/gui.cpp:5319 +#, c-format +msgid "cannot load wavetable! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5327 +msgid "...but you haven't selected a wavetable!" +msgstr "" + +#: src/gui/gui.cpp:5342 src/gui/gui.cpp:5363 src/gui/gui.cpp:5387 +#: src/gui/gui.cpp:5408 +msgid "could not open file!" +msgstr "" + +#: src/gui/gui.cpp:5350 +#, c-format +msgid "could not write VGM! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5371 +#, c-format +msgid "Could not write ZSM! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5395 +#, c-format +msgid "could not write text! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5416 +#, c-format +msgid "could not write command stream! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5440 +msgid "could not import user presets!" +msgstr "" + +#: src/gui/gui.cpp:5445 src/gui/gui.cpp:5462 +#, c-format +msgid "could not import user presets! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5483 +#, c-format +msgid "You opened: %s" +msgstr "" + +#: src/gui/gui.cpp:5486 +msgid "You opened:" +msgstr "" + +#: src/gui/gui.cpp:5494 +#, c-format +msgid "You saved: %s" +msgstr "" + +#: src/gui/gui.cpp:5515 src/gui/gui.cpp:5636 src/gui/gui.cpp:5637 +#: src/gui/insEdit.cpp:7520 +msgid "Error" +msgstr "" + +#: src/gui/gui.cpp:5520 src/gui/gui.cpp:6177 src/gui/gui.cpp:6178 +msgid "Select Instrument" +msgstr "" + +#: src/gui/gui.cpp:5525 src/gui/gui.cpp:6256 src/gui/gui.cpp:6257 +msgid "Import Raw Sample" +msgstr "" + +#: src/gui/gui.cpp:5540 src/gui/gui.cpp:5593 src/gui/gui.cpp:5594 +msgid "Rendering..." +msgstr "" + +#: src/gui/gui.cpp:5595 +msgid "Please wait..." +msgstr "" + +#: src/gui/gui.cpp:5596 +msgid "Abort" +msgstr "" + +#: src/gui/gui.cpp:5638 +#, c-format +msgid "%s" +msgstr "" + +#: src/gui/gui.cpp:5868 +msgid "Erasing" +msgstr "" + +#: src/gui/gui.cpp:5871 +msgid "All subsongs" +msgstr "" + +#: src/gui/gui.cpp:5878 +msgid "Current subsong" +msgstr "" + +#: src/gui/gui.cpp:5945 +msgid "Optimization" +msgstr "" + +#: src/gui/gui.cpp:5948 src/gui/patManager.cpp:36 +msgid "De-duplicate patterns" +msgstr "" + +#: src/gui/gui.cpp:5957 +msgid "Remove unused instruments" +msgstr "" + +#: src/gui/gui.cpp:5970 +msgid "Remove unused samples" +msgstr "" + +#: src/gui/gui.cpp:5987 +msgid "Never mind! Cancel" +msgstr "" + +#: src/gui/gui.cpp:6066 +msgid "Drum kit mode:" +msgstr "" + +#: src/gui/gui.cpp:6070 +msgid "12 samples per octave" +msgstr "" + +#: src/gui/gui.cpp:6075 +msgid "Starting octave" +msgstr "" + +#: src/gui/gui.cpp:6095 +msgid "Drum Kit" +msgstr "" + +#: src/gui/gui.cpp:6181 +msgid "this is an instrument bank! select which one to use:" +msgstr "" + +#: src/gui/gui.cpp:6184 +msgid "this is an instrument bank! select which ones to load:" +msgstr "" + +#: src/gui/gui.cpp:6258 +msgid "Data type:" +msgstr "" + +#: src/gui/gui.cpp:6285 +msgid "(will be mixed down to mono)" +msgstr "" + +#: src/gui/gui.cpp:6286 +msgid "Unsigned" +msgstr "" + +#: src/gui/gui.cpp:6290 +msgid "Big endian" +msgstr "" + +#: src/gui/gui.cpp:6298 +msgid "Swap nibbles" +msgstr "" + +#: src/gui/gui.cpp:6302 +msgid "Swap words" +msgstr "" + +#: src/gui/gui.cpp:6306 +msgid "Encoding:" +msgstr "" + +#: src/gui/gui.cpp:6319 +msgid "Reverse bit order" +msgstr "" + +#: src/gui/gui.cpp:6361 +msgid "Error! No string provided!" +msgstr "" + +#: src/gui/gui.cpp:6683 +msgid "it appears I couldn't load these fonts. any setting you can check?" +msgstr "" + +#: src/gui/gui.cpp:6863 src/gui/gui.cpp:6971 +msgid "" +"could not init renderer!\n" +"falling back to software renderer. please restart Furnace." +msgstr "" + +#: src/gui/gui.cpp:6865 src/gui/gui.cpp:6973 +#, c-format +msgid "" +"could not init renderer! %s\n" +"falling back to software renderer. please restart Furnace." +msgstr "" + +#: src/gui/gui.cpp:6870 src/gui/gui.cpp:6978 +msgid "could not init renderer!" +msgstr "" + +#: src/gui/gui.cpp:6881 +#, c-format +msgid "could not open window! %s" +msgstr "" + +#: src/gui/gui.cpp:6886 +msgid "" +"\n" +"falling back to software renderer. please restart Furnace." +msgstr "" + +#: src/gui/gui.cpp:7034 +msgid "Size column to fit###SizeOne" +msgstr "" + +#: src/gui/gui.cpp:7036 +msgid "Size all columns to fit###SizeAll" +msgstr "" + +#: src/gui/gui.cpp:7038 +msgid "Size all columns to default###SizeAll" +msgstr "" + +#: src/gui/gui.cpp:7040 +msgid "Reset order###ResetOrder" +msgstr "" + +#: src/gui/gui.cpp:7042 +msgid "(Main menu bar)" +msgstr "" + +#: src/gui/gui.cpp:7044 +msgid "(Popup)" +msgstr "" + +#: src/gui/gui.cpp:7046 +msgid "(Untitled)" +msgstr "" + +#: src/gui/gui.cpp:7048 +msgid "Hide tab bar###HideTabBar" +msgstr "" + +#: src/gui/gui.cpp:7052 +msgid "LocaleSettings: ccjk" +msgstr "" + +#: src/gui/gui.cpp:7564 +msgid "Unsaved changes! Save changes before quitting?" +msgstr "" + +#: src/gui/sysManager.cpp:42 +msgid "Preserve channel order" +msgstr "" + +#: src/gui/sysManager.cpp:44 +msgid "Clone channel data" +msgstr "" + +#: src/gui/sysManager.cpp:46 +msgid "Clone at end" +msgstr "" + +#: src/gui/sysManager.cpp:56 +msgid "Actions" +msgstr "" + +#: src/gui/sysManager.cpp:69 +msgid "(drag to swap chips)" +msgstr "" + +#: src/gui/sysManager.cpp:90 +msgid "Clone##SysDup" +msgstr "" + +#: src/gui/sysManager.cpp:92 +#, c-format +msgid "cannot clone chip! (%s)" +msgstr "" + +#: src/gui/sysManager.cpp:98 +msgid "Change##SysChange" +msgstr "" + +#: src/gui/sysManager.cpp:120 +msgid "Are you sure you want to remove this chip?" +msgstr "" + +#: src/gui/patManager.cpp:43 +msgid "Re-arrange patterns" +msgstr "" + +#: src/gui/patManager.cpp:50 +msgid "Sort orders" +msgstr "" + +#: src/gui/patManager.cpp:57 +msgid "Make patterns unique" +msgstr "" + +#: src/gui/patManager.cpp:103 +#, c-format +msgid "" +"Pattern %.2X\n" +"- not allocated" +msgstr "" + +#: src/gui/patManager.cpp:105 +#, c-format +msgid "" +"Pattern %.2X\n" +"- use count: %d (%.0f%%)\n" +"\n" +"right-click to erase" +msgstr "" + +#: src/gui/insEdit.cpp:39 +msgid "Down Down Down" +msgstr "" + +#: src/gui/insEdit.cpp:40 +msgid "Down." +msgstr "" + +#: src/gui/insEdit.cpp:41 +msgid "Down Up Down Up" +msgstr "" + +#: src/gui/insEdit.cpp:42 +msgid "Down UP" +msgstr "" + +#: src/gui/insEdit.cpp:43 +msgid "Up Up Up" +msgstr "" + +#: src/gui/insEdit.cpp:44 +msgid "Up." +msgstr "" + +#: src/gui/insEdit.cpp:45 +msgid "Up Down Up Down" +msgstr "" + +#: src/gui/insEdit.cpp:46 +msgid "Up DOWN" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Algorithm" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Feedback" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "LFO > Freq" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "LFO > Amp" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Decay 2" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "EnvScale" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Multiplier" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Detune 2" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "AM" +msgstr "" + +#: src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:5438 src/gui/insEdit.cpp:6516 +msgid "AM Depth" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Vibrato Depth" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Sustained" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Level Scaling" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Vibrato" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Scale Rate" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "OP2 Half Sine" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "OP1 Half Sine" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "EnvShift" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Reverb" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Fine" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "LFO2 > Freq" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "LFO2 > Amp" +msgstr "" + +#: src/gui/insEdit.cpp:56 src/gui/insEdit.cpp:68 src/gui/insEdit.cpp:7391 +msgid "OP4 Noise Mode" +msgstr "" + +#: src/gui/insEdit.cpp:57 +msgid "Envelope Delay" +msgstr "" + +#: src/gui/insEdit.cpp:58 src/gui/insEdit.cpp:70 +msgid "Output Level" +msgstr "" + +#: src/gui/insEdit.cpp:59 +msgid "Modulation Input Level" +msgstr "" + +#: src/gui/insEdit.cpp:60 +msgid "Left Output" +msgstr "" + +#: src/gui/insEdit.cpp:61 +msgid "Right Output" +msgstr "" + +#: src/gui/insEdit.cpp:62 +msgid "Coarse Tune (semitones)" +msgstr "" + +#: src/gui/insEdit.cpp:64 +msgid "Fixed Frequency Mode" +msgstr "" + +#: src/gui/insEdit.cpp:69 +msgid "Env. Delay" +msgstr "" + +#: src/gui/insEdit.cpp:71 +msgid "ModInput" +msgstr "" + +#: src/gui/insEdit.cpp:72 +msgid "Left" +msgstr "" + +#: src/gui/insEdit.cpp:73 +msgid "Right" +msgstr "" + +#: src/gui/insEdit.cpp:74 +msgid "Tune" +msgstr "" + +#: src/gui/insEdit.cpp:76 src/gui/insEdit.cpp:610 src/gui/insEdit.cpp:3792 +#: src/gui/insEdit.cpp:4554 src/gui/insEdit.cpp:4848 +msgid "Fixed" +msgstr "" + +#: src/gui/insEdit.cpp:98 src/gui/insEdit.cpp:117 src/gui/insEdit.cpp:136 +#: src/gui/insEdit.cpp:156 +msgid "User" +msgstr "" + +#: src/gui/insEdit.cpp:99 +msgid "1. Violin" +msgstr "" + +#: src/gui/insEdit.cpp:100 src/gui/insEdit.cpp:138 src/gui/insEdit.cpp:158 +msgid "2. Guitar" +msgstr "" + +#: src/gui/insEdit.cpp:101 src/gui/insEdit.cpp:159 +msgid "3. Piano" +msgstr "" + +#: src/gui/insEdit.cpp:102 src/gui/insEdit.cpp:160 +msgid "4. Flute" +msgstr "" + +#: src/gui/insEdit.cpp:103 src/gui/insEdit.cpp:122 src/gui/insEdit.cpp:161 +msgid "5. Clarinet" +msgstr "" + +#: src/gui/insEdit.cpp:104 +msgid "6. Oboe" +msgstr "" + +#: src/gui/insEdit.cpp:105 src/gui/insEdit.cpp:124 src/gui/insEdit.cpp:143 +#: src/gui/insEdit.cpp:163 +msgid "7. Trumpet" +msgstr "" + +#: src/gui/insEdit.cpp:106 +msgid "8. Organ" +msgstr "" + +#: src/gui/insEdit.cpp:107 +msgid "9. Horn" +msgstr "" + +#: src/gui/insEdit.cpp:108 +msgid "10. Synth" +msgstr "" + +#: src/gui/insEdit.cpp:109 +msgid "11. Harpsichord" +msgstr "" + +#: src/gui/insEdit.cpp:110 src/gui/insEdit.cpp:129 src/gui/insEdit.cpp:148 +msgid "12. Vibraphone" +msgstr "" + +#: src/gui/insEdit.cpp:111 +msgid "13. Synth Bass" +msgstr "" + +#: src/gui/insEdit.cpp:112 +msgid "14. Acoustic Bass" +msgstr "" + +#: src/gui/insEdit.cpp:113 +msgid "15. Electric Guitar" +msgstr "" + +#: src/gui/insEdit.cpp:114 src/gui/insEdit.cpp:133 src/gui/insEdit.cpp:152 +#: src/gui/insEdit.cpp:172 src/gui/insEdit.cpp:3176 +msgid "Drums" +msgstr "" + +#: src/gui/insEdit.cpp:118 +msgid "1. Electric String" +msgstr "" + +#: src/gui/insEdit.cpp:119 +msgid "2. Bow wow" +msgstr "" + +#: src/gui/insEdit.cpp:120 src/gui/insEdit.cpp:139 +msgid "3. Electric Guitar" +msgstr "" + +#: src/gui/insEdit.cpp:121 +msgid "4. Organ" +msgstr "" + +#: src/gui/insEdit.cpp:123 +msgid "6. Saxophone" +msgstr "" + +#: src/gui/insEdit.cpp:125 +msgid "8. Street Organ" +msgstr "" + +#: src/gui/insEdit.cpp:126 +msgid "9. Synth Brass" +msgstr "" + +#: src/gui/insEdit.cpp:127 +msgid "10. Electric Piano" +msgstr "" + +#: src/gui/insEdit.cpp:128 +msgid "11. Bass" +msgstr "" + +#: src/gui/insEdit.cpp:130 +msgid "13. Chime" +msgstr "" + +#: src/gui/insEdit.cpp:131 +msgid "14. Tom Tom II" +msgstr "" + +#: src/gui/insEdit.cpp:132 +msgid "15. Noise" +msgstr "" + +#: src/gui/insEdit.cpp:137 +msgid "1. Strings" +msgstr "" + +#: src/gui/insEdit.cpp:140 +msgid "4. Electric Piano" +msgstr "" + +#: src/gui/insEdit.cpp:141 +msgid "5. Flute" +msgstr "" + +#: src/gui/insEdit.cpp:142 +msgid "6. Marimba" +msgstr "" + +#: src/gui/insEdit.cpp:144 +msgid "8. Harmonica" +msgstr "" + +#: src/gui/insEdit.cpp:145 +msgid "9. Tuba" +msgstr "" + +#: src/gui/insEdit.cpp:146 +msgid "10. Synth Brass" +msgstr "" + +#: src/gui/insEdit.cpp:147 +msgid "11. Short Saw" +msgstr "" + +#: src/gui/insEdit.cpp:149 +msgid "13. Electric Guitar 2" +msgstr "" + +#: src/gui/insEdit.cpp:150 +msgid "14. Synth Bass" +msgstr "" + +#: src/gui/insEdit.cpp:151 +msgid "15. Sitar" +msgstr "" + +#: src/gui/insEdit.cpp:157 +msgid "1. Bell" +msgstr "" + +#: src/gui/insEdit.cpp:162 +msgid "6. Rattling Bell" +msgstr "" + +#: src/gui/insEdit.cpp:164 +msgid "8. Reed Organ" +msgstr "" + +#: src/gui/insEdit.cpp:165 +msgid "9. Soft Bell" +msgstr "" + +#: src/gui/insEdit.cpp:166 +msgid "10. Xylophone" +msgstr "" + +#: src/gui/insEdit.cpp:167 +msgid "11. Vibraphone" +msgstr "" + +#: src/gui/insEdit.cpp:168 +msgid "12. Brass" +msgstr "" + +#: src/gui/insEdit.cpp:169 +msgid "13. Bass Guitar" +msgstr "" + +#: src/gui/insEdit.cpp:170 +msgid "14. Synth" +msgstr "" + +#: src/gui/insEdit.cpp:171 +msgid "15. Chorus" +msgstr "" + +#: src/gui/insEdit.cpp:178 src/gui/insEdit.cpp:189 +msgid "Half Sine" +msgstr "" + +#: src/gui/insEdit.cpp:179 src/gui/insEdit.cpp:190 +msgid "Absolute Sine" +msgstr "" + +#: src/gui/insEdit.cpp:180 +msgid "Quarter Sine" +msgstr "" + +#: src/gui/insEdit.cpp:181 src/gui/insEdit.cpp:203 +msgid "Squished Sine" +msgstr "" + +#: src/gui/insEdit.cpp:182 src/gui/insEdit.cpp:205 +msgid "Squished AbsSine" +msgstr "" + +#: src/gui/insEdit.cpp:184 src/gui/insEdit.cpp:195 +msgid "Derived Square" +msgstr "" + +#: src/gui/insEdit.cpp:191 +msgid "Pulse Sine" +msgstr "" + +#: src/gui/insEdit.cpp:192 +msgid "Sine (Even Periods)" +msgstr "" + +#: src/gui/insEdit.cpp:193 +msgid "AbsSine (Even Periods)" +msgstr "" + +#: src/gui/insEdit.cpp:201 +msgid "Cut Sine" +msgstr "" + +#: src/gui/insEdit.cpp:202 +msgid "Cut Triangle" +msgstr "" + +#: src/gui/insEdit.cpp:204 +msgid "Squished Triangle" +msgstr "" + +#: src/gui/insEdit.cpp:206 +msgid "Squished AbsTriangle" +msgstr "" + +#: src/gui/insEdit.cpp:224 +msgid "Noise disabled" +msgstr "" + +#: src/gui/insEdit.cpp:225 +msgid "Square + noise" +msgstr "" + +#: src/gui/insEdit.cpp:226 +msgid "Ringmod from OP3 + noise" +msgstr "" + +#: src/gui/insEdit.cpp:227 +msgid "" +"Ringmod from OP3 + double pitch ModInput\n" +"WARNING - has emulation issues; subject to change" +msgstr "" + +#: src/gui/insEdit.cpp:232 +msgid "Bitwise AND" +msgstr "" + +#: src/gui/insEdit.cpp:233 +msgid "Bitwise OR" +msgstr "" + +#: src/gui/insEdit.cpp:234 +msgid "Bitwise XOR" +msgstr "" + +#: src/gui/insEdit.cpp:239 src/gui/insEdit.cpp:390 +msgid "gate" +msgstr "" + +#: src/gui/insEdit.cpp:240 src/gui/insEdit.cpp:391 +msgid "sync" +msgstr "" + +#: src/gui/insEdit.cpp:241 src/gui/insEdit.cpp:392 +msgid "ring" +msgstr "" + +#: src/gui/insEdit.cpp:327 +msgid "How did you even" +msgstr "" + +#: src/gui/insEdit.cpp:335 +msgid "triangle" +msgstr "" + +#: src/gui/insEdit.cpp:336 src/gui/insEdit.cpp:5821 +msgid "saw" +msgstr "" + +#: src/gui/insEdit.cpp:337 src/gui/insEdit.cpp:5827 +msgid "pulse" +msgstr "" + +#: src/gui/insEdit.cpp:338 src/gui/insEdit.cpp:344 src/gui/insEdit.cpp:373 +#: src/gui/insEdit.cpp:424 src/gui/insEdit.cpp:429 src/gui/insEdit.cpp:5833 +msgid "noise" +msgstr "" + +#: src/gui/insEdit.cpp:343 +msgid "tone" +msgstr "" + +#: src/gui/insEdit.cpp:345 +msgid "envelope" +msgstr "" + +#: src/gui/insEdit.cpp:350 +msgid "hold" +msgstr "" + +#: src/gui/insEdit.cpp:351 +msgid "alternate" +msgstr "" + +#: src/gui/insEdit.cpp:352 src/gui/insEdit.cpp:364 +msgid "direction" +msgstr "" + +#: src/gui/insEdit.cpp:353 src/gui/insEdit.cpp:436 +msgid "enable" +msgstr "" + +#: src/gui/insEdit.cpp:357 src/gui/insEdit.cpp:368 +msgid "enabled" +msgstr "" + +#: src/gui/insEdit.cpp:361 +msgid "mirror" +msgstr "" + +#: src/gui/insEdit.cpp:365 +msgid "resolution" +msgstr "" + +#: src/gui/insEdit.cpp:366 +msgid "fixed" +msgstr "" + +#: src/gui/insEdit.cpp:367 +msgid "N/A" +msgstr "" + +#: src/gui/insEdit.cpp:374 +msgid "echo" +msgstr "" + +#: src/gui/insEdit.cpp:375 +msgid "pitch mod" +msgstr "" + +#: src/gui/insEdit.cpp:376 src/gui/insEdit.cpp:508 +msgid "invert right" +msgstr "" + +#: src/gui/insEdit.cpp:377 src/gui/insEdit.cpp:509 +msgid "invert left" +msgstr "" + +#: src/gui/insEdit.cpp:382 src/gui/insEdit.cpp:5905 +msgid "low" +msgstr "" + +#: src/gui/insEdit.cpp:383 src/gui/insEdit.cpp:5911 +msgid "band" +msgstr "" + +#: src/gui/insEdit.cpp:384 src/gui/insEdit.cpp:5917 +msgid "high" +msgstr "" + +#: src/gui/insEdit.cpp:385 src/gui/insEdit.cpp:5924 +msgid "ch3off" +msgstr "" + +#: src/gui/insEdit.cpp:393 +msgid "test" +msgstr "" + +#: src/gui/insEdit.cpp:398 +msgid "15KHz" +msgstr "" + +#: src/gui/insEdit.cpp:399 +msgid "filter 2+4" +msgstr "" + +#: src/gui/insEdit.cpp:400 +msgid "filter 1+3" +msgstr "" + +#: src/gui/insEdit.cpp:401 +msgid "16-bit 3+4" +msgstr "" + +#: src/gui/insEdit.cpp:402 +msgid "16-bit 1+2" +msgstr "" + +#: src/gui/insEdit.cpp:403 +msgid "high3" +msgstr "" + +#: src/gui/insEdit.cpp:404 +msgid "high1" +msgstr "" + +#: src/gui/insEdit.cpp:405 +msgid "poly9" +msgstr "" + +#: src/gui/insEdit.cpp:414 +msgid "16'" +msgstr "" + +#: src/gui/insEdit.cpp:415 +msgid "8'" +msgstr "" + +#: src/gui/insEdit.cpp:416 +msgid "4'" +msgstr "" + +#: src/gui/insEdit.cpp:417 +msgid "2'" +msgstr "" + +#: src/gui/insEdit.cpp:418 +msgid "sustain" +msgstr "" + +#: src/gui/insEdit.cpp:423 +msgid "square" +msgstr "" + +#: src/gui/insEdit.cpp:431 +msgid "surround" +msgstr "" + +#: src/gui/insEdit.cpp:437 +msgid "oneshot" +msgstr "" + +#: src/gui/insEdit.cpp:438 +msgid "split L/R" +msgstr "" + +#: src/gui/insEdit.cpp:439 +msgid "HinvR" +msgstr "" + +#: src/gui/insEdit.cpp:440 +msgid "VinvR" +msgstr "" + +#: src/gui/insEdit.cpp:441 +msgid "HinvL" +msgstr "" + +#: src/gui/insEdit.cpp:442 +msgid "VinvL" +msgstr "" + +#: src/gui/insEdit.cpp:447 src/gui/insEdit.cpp:476 +msgid "ring mod" +msgstr "" + +#: src/gui/insEdit.cpp:448 +msgid "low pass" +msgstr "" + +#: src/gui/insEdit.cpp:449 src/gui/insEdit.cpp:475 +msgid "high pass" +msgstr "" + +#: src/gui/insEdit.cpp:450 +msgid "band pass" +msgstr "" + +#: src/gui/insEdit.cpp:459 +msgid "enable tap B" +msgstr "" + +#: src/gui/insEdit.cpp:460 +msgid "AM with slope" +msgstr "" + +#: src/gui/insEdit.cpp:465 +msgid "invert B" +msgstr "" + +#: src/gui/insEdit.cpp:466 +msgid "invert A" +msgstr "" + +#: src/gui/insEdit.cpp:467 +msgid "reset B" +msgstr "" + +#: src/gui/insEdit.cpp:468 +msgid "reset A" +msgstr "" + +#: src/gui/insEdit.cpp:469 +msgid "clip B" +msgstr "" + +#: src/gui/insEdit.cpp:470 +msgid "clip A" +msgstr "" + +#: src/gui/insEdit.cpp:477 +msgid "swap counters (noise)" +msgstr "" + +#: src/gui/insEdit.cpp:478 +msgid "low pass (noise)" +msgstr "" + +#: src/gui/insEdit.cpp:485 +msgid "rear right" +msgstr "" + +#: src/gui/insEdit.cpp:486 +msgid "rear left" +msgstr "" + +#: src/gui/insEdit.cpp:491 +msgid "on" +msgstr "" + +#: src/gui/insEdit.cpp:496 +msgid "k1 slowdown" +msgstr "" + +#: src/gui/insEdit.cpp:497 +msgid "k2 slowdown" +msgstr "" + +#: src/gui/insEdit.cpp:502 +msgid "pause" +msgstr "" + +#: src/gui/insEdit.cpp:503 +msgid "reverse" +msgstr "" + +#: src/gui/insEdit.cpp:521 +msgid "Subtract" +msgstr "" + +#: src/gui/insEdit.cpp:522 +msgid "Average" +msgstr "" + +#: src/gui/insEdit.cpp:523 src/gui/insEdit.cpp:2037 +msgid "Phase" +msgstr "" + +#: src/gui/insEdit.cpp:524 +msgid "Chorus" +msgstr "" + +#: src/gui/insEdit.cpp:528 +msgid "None (dual)" +msgstr "" + +#: src/gui/insEdit.cpp:529 +msgid "Wipe" +msgstr "" + +#: src/gui/insEdit.cpp:531 +msgid "Fade (ping-pong)" +msgstr "" + +#: src/gui/insEdit.cpp:532 +msgid "Overlay" +msgstr "" + +#: src/gui/insEdit.cpp:533 +msgid "Negative Overlay" +msgstr "" + +#: src/gui/insEdit.cpp:534 +msgid "Slide" +msgstr "" + +#: src/gui/insEdit.cpp:535 +msgid "Mix Chorus" +msgstr "" + +#: src/gui/insEdit.cpp:536 +msgid "Phase Modulation" +msgstr "" + +#: src/gui/insEdit.cpp:541 +msgid "Sweep" +msgstr "" + +#: src/gui/insEdit.cpp:542 src/gui/insEdit.cpp:552 +msgid "Wait" +msgstr "" + +#: src/gui/insEdit.cpp:543 src/gui/insEdit.cpp:553 +msgid "Wait for Release" +msgstr "" + +#: src/gui/insEdit.cpp:545 src/gui/insEdit.cpp:555 +msgid "Loop until Release" +msgstr "" + +#: src/gui/insEdit.cpp:549 +msgid "Volume Sweep" +msgstr "" + +#: src/gui/insEdit.cpp:550 +msgid "Frequency Sweep" +msgstr "" + +#: src/gui/insEdit.cpp:551 +msgid "Cutoff Sweep" +msgstr "" + +#: src/gui/insEdit.cpp:559 src/gui/insEdit.cpp:6604 +msgid "Direct" +msgstr "" + +#: src/gui/insEdit.cpp:560 src/gui/insEdit.cpp:6608 +msgid "Decrease (linear)" +msgstr "" + +#: src/gui/insEdit.cpp:561 src/gui/insEdit.cpp:6612 +msgid "Decrease (logarithmic)" +msgstr "" + +#: src/gui/insEdit.cpp:562 src/gui/insEdit.cpp:6616 +msgid "Increase (linear)" +msgstr "" + +#: src/gui/insEdit.cpp:563 src/gui/insEdit.cpp:6620 +msgid "Increase (bent line)" +msgstr "" + +#: src/gui/insEdit.cpp:611 +msgid "Relative" +msgstr "" + +#: src/gui/insEdit.cpp:616 +#, c-format +msgid "%d: +%d (exponential)" +msgstr "" + +#: src/gui/insEdit.cpp:619 +#, c-format +msgid "%d: +%d (linear)" +msgstr "" + +#: src/gui/insEdit.cpp:622 +#, c-format +msgid "%d: -%d (exponential)" +msgstr "" + +#: src/gui/insEdit.cpp:625 +#, c-format +msgid "%d: -%d (linear)" +msgstr "" + +#: src/gui/insEdit.cpp:627 +#, c-format +msgid "%d: %d (direct)" +msgstr "" + +#: src/gui/insEdit.cpp:660 +msgid "Random" +msgstr "" + +#: src/gui/insEdit.cpp:1610 +msgid "" +"left click to restart\n" +"middle click to pause\n" +"right click to see algorithm" +msgstr "" + +#: src/gui/insEdit.cpp:1620 +msgid "" +"left click to configure TL scaling\n" +"right click to see FM preview" +msgstr "" + +#: src/gui/insEdit.cpp:1624 +msgid "right click to see FM preview" +msgstr "" + +#: src/gui/insEdit.cpp:1639 +msgid "operator level changes with volume?" +msgstr "" + +#: src/gui/insEdit.cpp:1648 +msgid "AUTO##OPKVS" +msgstr "" + +#: src/gui/insEdit.cpp:1650 +msgid "NO##OPKVS" +msgstr "" + +#: src/gui/insEdit.cpp:1652 +msgid "YES##OPKVS" +msgstr "" + +#: src/gui/insEdit.cpp:1900 src/gui/insEdit.cpp:2005 +msgid "Bottom" +msgstr "" + +#: src/gui/insEdit.cpp:1940 +msgid "Hold" +msgstr "" + +#: src/gui/insEdit.cpp:1949 +msgid "SusTime" +msgstr "" + +#: src/gui/insEdit.cpp:1969 +msgid "SusDecay" +msgstr "" + +#: src/gui/insEdit.cpp:2047 +msgid "Shape" +msgstr "" + +#: src/gui/insEdit.cpp:2100 +msgid "Macro type: Sequence" +msgstr "" + +#: src/gui/insEdit.cpp:2103 +msgid "Macro type: ADSR" +msgstr "" + +#: src/gui/insEdit.cpp:2106 +msgid "Macro type: LFO" +msgstr "" + +#: src/gui/insEdit.cpp:2109 +msgid "Macro type: What's going on here?" +msgstr "" + +#: src/gui/insEdit.cpp:2122 +msgid "Delay/Step Length" +msgstr "" + +#: src/gui/insEdit.cpp:2125 +msgid "Step Length (ticks)##IMacroSpeed" +msgstr "" + +#: src/gui/insEdit.cpp:2129 +msgid "Delay##IMacroDelay" +msgstr "" + +#: src/gui/insEdit.cpp:2142 +msgid "Release mode: Active (jump to release pos)" +msgstr "" + +#: src/gui/insEdit.cpp:2144 +msgid "Release mode: Passive (delayed release)" +msgstr "" + +#: src/gui/insEdit.cpp:2393 +msgid "StepLen" +msgstr "" + +#: src/gui/insEdit.cpp:2401 +msgid "Delay" +msgstr "" + +#: src/gui/insEdit.cpp:2425 +msgid "The heck? No, this isn't even working correctly..." +msgstr "" + +#: src/gui/insEdit.cpp:2428 +msgid "The only problem with that selectedMacro is that it's a bug..." +msgstr "" + +#: src/gui/insEdit.cpp:2589 +msgid "(copying)" +msgstr "" + +#: src/gui/insEdit.cpp:2591 +msgid "(swapping)" +msgstr "" + +#: src/gui/insEdit.cpp:2595 +msgid "" +"- drag to swap operator\n" +"- shift-drag to copy operator" +msgstr "" + +#: src/gui/insEdit.cpp:2632 +msgid "new DPCM features disabled (compatibility)!" +msgstr "" + +#: src/gui/insEdit.cpp:2633 +msgid "click here to enable them." +msgstr "" + +#: src/gui/insEdit.cpp:2644 +msgid "none selected" +msgstr "" + +#: src/gui/insEdit.cpp:2657 +msgid "Use sample" +msgstr "" + +#: src/gui/insEdit.cpp:2659 +msgid "Sample bank slot##BANKSLOT" +msgstr "" + +#: src/gui/insEdit.cpp:2681 +msgid "Use wavetable (Amiga/Generic DAC only)" +msgstr "" + +#: src/gui/insEdit.cpp:2681 +msgid "Use wavetable" +msgstr "" + +#: src/gui/insEdit.cpp:2708 +msgid "Use sample map" +msgstr "" + +#: src/gui/insEdit.cpp:2730 +msgid "delta" +msgstr "" + +#: src/gui/insEdit.cpp:2736 +msgid "sample name" +msgstr "" + +#: src/gui/insEdit.cpp:3001 +msgid "set entire map to this pitch" +msgstr "" + +#: src/gui/insEdit.cpp:3009 +msgid "set entire map to this delta counter value" +msgstr "" + +#: src/gui/insEdit.cpp:3018 +msgid "set entire map to this note" +msgstr "" + +#: src/gui/insEdit.cpp:3027 +msgid "set entire map to this sample" +msgstr "" + +#: src/gui/insEdit.cpp:3037 +msgid "reset pitches" +msgstr "" + +#: src/gui/insEdit.cpp:3042 +msgid "clear delta counter values" +msgstr "" + +#: src/gui/insEdit.cpp:3048 +msgid "reset notes" +msgstr "" + +#: src/gui/insEdit.cpp:3054 +msgid "clear map samples" +msgstr "" + +#: src/gui/insEdit.cpp:3148 +msgid "Request from TX81Z" +msgstr "" + +#: src/gui/insEdit.cpp:3234 +#, c-format +msgid "%s name" +msgstr "" + +#: src/gui/insEdit.cpp:3286 +msgid "Fixed frequency mode" +msgstr "" + +#: src/gui/insEdit.cpp:3288 +msgid "" +"when enabled, drums will be set to the specified frequencies, ignoring the " +"note." +msgstr "" + +#: src/gui/insEdit.cpp:3296 +msgid "Drum" +msgstr "" + +#: src/gui/insEdit.cpp:3298 src/gui/insEdit.cpp:3798 src/gui/insEdit.cpp:3904 +#: src/gui/insEdit.cpp:4404 src/gui/insEdit.cpp:4468 src/gui/insEdit.cpp:5068 +#: src/gui/insEdit.cpp:5518 +msgid "Block" +msgstr "" + +#: src/gui/insEdit.cpp:3300 src/gui/insEdit.cpp:3803 src/gui/insEdit.cpp:3909 +#: src/gui/insEdit.cpp:4993 src/gui/insEdit.cpp:5079 src/gui/insEdit.cpp:5519 +msgid "FreqNum" +msgstr "" + +#: src/gui/insEdit.cpp:3303 +msgid "Snare/Hi-hat" +msgstr "" + +#: src/gui/insEdit.cpp:3304 +msgid "Tom/Top" +msgstr "" + +#: src/gui/insEdit.cpp:3314 +msgid "Volume##TL" +msgstr "" + +#: src/gui/insEdit.cpp:3316 +msgid "this volume slider only works in compatibility (non-drums) system." +msgstr "" + +#: src/gui/insEdit.cpp:3626 +msgid "Env" +msgstr "" + +#: src/gui/insEdit.cpp:3980 src/gui/insEdit.cpp:4346 src/gui/insEdit.cpp:4396 +#: src/gui/insEdit.cpp:5104 +msgid "OPL2/3 only (last 4 waveforms are OPL3 only)" +msgstr "" + +#: src/gui/insEdit.cpp:4079 src/gui/insEdit.cpp:4788 +#, c-format +msgid "Envelope 2 (kick only)" +msgstr "" + +#: src/gui/insEdit.cpp:4084 +#, c-format +msgid "Operator %d" +msgstr "" + +#: src/gui/insEdit.cpp:4414 +msgid "Freq" +msgstr "" + +#: src/gui/insEdit.cpp:4443 +msgid "Only on YM2151 (OPM)" +msgstr "" + +#: src/gui/insEdit.cpp:4466 +msgid "Blk" +msgstr "" + +#: src/gui/insEdit.cpp:4479 +msgid "F" +msgstr "" + +#: src/gui/insEdit.cpp:4481 +msgid "Frequency (F-Num)" +msgstr "" + +#: src/gui/insEdit.cpp:4833 +msgid "SSG On" +msgstr "" + +#: src/gui/insEdit.cpp:5206 src/gui/insEdit.cpp:5207 +msgid "waiting..." +msgstr "" + +#: src/gui/insEdit.cpp:5210 src/gui/insEdit.cpp:5211 +msgid "no instrument selected" +msgstr "" + +#: src/gui/insEdit.cpp:5393 +msgid "" +"none of the currently present chips are able to play this instrument type!" +msgstr "" + +#: src/gui/insEdit.cpp:5413 +msgid "FM Macros" +msgstr "" + +#: src/gui/insEdit.cpp:5435 src/gui/insEdit.cpp:5440 +msgid "LFO Speed" +msgstr "" + +#: src/gui/insEdit.cpp:5439 src/gui/insEdit.cpp:6514 +msgid "PM Depth" +msgstr "" + +#: src/gui/insEdit.cpp:5441 +msgid "LFO Shape" +msgstr "" + +#: src/gui/insEdit.cpp:5444 +msgid "OpMask" +msgstr "" + +#: src/gui/insEdit.cpp:5446 +msgid "AM Depth 2" +msgstr "" + +#: src/gui/insEdit.cpp:5447 +msgid "PM Depth 2" +msgstr "" + +#: src/gui/insEdit.cpp:5448 +msgid "LFO2 Speed" +msgstr "" + +#: src/gui/insEdit.cpp:5449 +msgid "LFO2 Shape" +msgstr "" + +#: src/gui/insEdit.cpp:5458 +#, c-format +msgid "Operator Macros" +msgstr "" + +#: src/gui/insEdit.cpp:5460 +#, c-format +msgid "OP%d Macros" +msgstr "" + +#: src/gui/insEdit.cpp:5521 +msgid "Op. Arpeggio" +msgstr "" + +#: src/gui/insEdit.cpp:5522 +msgid "Op. Pitch" +msgstr "" + +#: src/gui/insEdit.cpp:5531 +msgid "Op. Panning" +msgstr "" + +#: src/gui/insEdit.cpp:5558 +msgid "Use software envelope" +msgstr "" + +#: src/gui/insEdit.cpp:5559 +msgid "Initialize envelope on every note" +msgstr "" + +#: src/gui/insEdit.cpp:5560 +msgid "Double wave length (GBA only)" +msgstr "" + +#: src/gui/insEdit.cpp:5589 src/gui/insEdit.cpp:5666 +msgid "Sound Length" +msgstr "" + +#: src/gui/insEdit.cpp:5592 src/gui/insEdit.cpp:5666 +msgid "Infinity" +msgstr "" + +#: src/gui/insEdit.cpp:5596 +msgid "Direction" +msgstr "" + +#: src/gui/insEdit.cpp:5599 src/gui/insEdit.cpp:5669 src/gui/insEdit.cpp:5697 +#: src/gui/insEdit.cpp:6008 src/gui/insEdit.cpp:6051 +msgid "Up" +msgstr "" + +#: src/gui/insEdit.cpp:5604 src/gui/insEdit.cpp:5674 src/gui/insEdit.cpp:5702 +#: src/gui/insEdit.cpp:6013 src/gui/insEdit.cpp:6056 +msgid "Down" +msgstr "" + +#: src/gui/insEdit.cpp:5620 src/gui/insEdit.cpp:5953 +msgid "Hardware Sequence" +msgstr "" + +#: src/gui/insEdit.cpp:5630 src/gui/insEdit.cpp:5963 +msgid "Tick" +msgstr "" + +#: src/gui/insEdit.cpp:5632 src/gui/insEdit.cpp:5965 +msgid "Command" +msgstr "" + +#: src/gui/insEdit.cpp:5634 src/gui/insEdit.cpp:5967 +msgid "Move/Remove" +msgstr "" + +#: src/gui/insEdit.cpp:5663 +msgid "Env Length" +msgstr "" + +#: src/gui/insEdit.cpp:5690 +msgid "Shift" +msgstr "" + +#: src/gui/insEdit.cpp:5717 src/gui/insEdit.cpp:6073 +msgid "Ticks" +msgstr "" + +#: src/gui/insEdit.cpp:5736 src/gui/insEdit.cpp:6092 src/gui/insEdit.cpp:6239 +msgid "Position" +msgstr "" + +#: src/gui/insEdit.cpp:5815 +msgid "tri" +msgstr "" + +#: src/gui/insEdit.cpp:5882 +msgid "Ring Modulation" +msgstr "" + +#: src/gui/insEdit.cpp:5886 +msgid "Oscillator Sync" +msgstr "" + +#: src/gui/insEdit.cpp:5890 +msgid "Enable filter" +msgstr "" + +#: src/gui/insEdit.cpp:5891 +msgid "Initialize filter" +msgstr "" + +#: src/gui/insEdit.cpp:5894 src/gui/insEdit.cpp:5897 src/gui/insEdit.cpp:6951 +#: src/gui/insEdit.cpp:7215 src/gui/insEdit.cpp:7476 +msgid "Cutoff" +msgstr "" + +#: src/gui/insEdit.cpp:5902 src/gui/insEdit.cpp:6408 src/gui/insEdit.cpp:6952 +#: src/gui/insEdit.cpp:7179 src/gui/insEdit.cpp:7477 +msgid "Filter Mode" +msgstr "" + +#: src/gui/insEdit.cpp:5931 src/gui/insEdit.cpp:7485 +msgid "Noise Mode" +msgstr "" + +#: src/gui/insEdit.cpp:5932 +msgid "Wave Mix Mode" +msgstr "" + +#: src/gui/insEdit.cpp:5935 +msgid "Absolute Cutoff Macro" +msgstr "" + +#: src/gui/insEdit.cpp:5939 +msgid "Absolute Duty Macro" +msgstr "" + +#: src/gui/insEdit.cpp:5945 +msgid "Don't test before new note" +msgstr "" + +#: src/gui/insEdit.cpp:5950 +msgid "Switch roles of frequency and phase reset timer" +msgstr "" + +#: src/gui/insEdit.cpp:5997 src/gui/insEdit.cpp:6040 +msgid "Period" +msgstr "" + +#: src/gui/insEdit.cpp:6002 src/gui/insEdit.cpp:6045 src/gui/insEdit.cpp:6892 +msgid "Amount" +msgstr "" + +#: src/gui/insEdit.cpp:6005 src/gui/insEdit.cpp:6048 +msgid "Bound" +msgstr "" + +#: src/gui/insEdit.cpp:6021 +msgid "Flip" +msgstr "" + +#: src/gui/insEdit.cpp:6210 +msgid "Load waveform" +msgstr "" + +#: src/gui/insEdit.cpp:6215 +msgid "" +"when enabled, a waveform will be loaded into RAM.\n" +"when disabled, only the offset and length change." +msgstr "" + +#: src/gui/insEdit.cpp:6219 +msgid "Waveform##WAVE" +msgstr "" + +#: src/gui/insEdit.cpp:6227 +msgid "Per-channel wave position/length" +msgstr "" + +#: src/gui/insEdit.cpp:6237 +msgid "Ch" +msgstr "" + +#: src/gui/insEdit.cpp:6286 +msgid "Compatibility mode" +msgstr "" + +#: src/gui/insEdit.cpp:6288 +msgid "" +"only use for compatibility with .dmf modules!\n" +"- initializes modulation table with first wavetable\n" +"- does not alter modulation parameters on instrument change" +msgstr "" + +#: src/gui/insEdit.cpp:6290 +msgid "Modulation depth" +msgstr "" + +#: src/gui/insEdit.cpp:6294 +msgid "Modulation speed" +msgstr "" + +#: src/gui/insEdit.cpp:6298 +msgid "Modulation table" +msgstr "" + +#: src/gui/insEdit.cpp:6347 +msgid "Set modulation table (channel 5 only)" +msgstr "" + +#: src/gui/insEdit.cpp:6411 src/gui/insEdit.cpp:7184 +msgid "Filter K1" +msgstr "" + +#: src/gui/insEdit.cpp:6413 src/gui/insEdit.cpp:7185 +msgid "Filter K2" +msgstr "" + +#: src/gui/insEdit.cpp:6417 +msgid "Envelope length" +msgstr "" + +#: src/gui/insEdit.cpp:6420 +msgid "Left Volume Ramp" +msgstr "" + +#: src/gui/insEdit.cpp:6422 +msgid "Right Volume Ramp" +msgstr "" + +#: src/gui/insEdit.cpp:6425 +msgid "Filter K1 Ramp" +msgstr "" + +#: src/gui/insEdit.cpp:6427 +msgid "Filter K2 Ramp" +msgstr "" + +#: src/gui/insEdit.cpp:6430 +msgid "K1 Ramp Slowdown" +msgstr "" + +#: src/gui/insEdit.cpp:6432 +msgid "K2 Ramp Slowdown" +msgstr "" + +#: src/gui/insEdit.cpp:6454 +msgid "Attack Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6460 +msgid "Decay 1 Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6466 +msgid "Decay Level" +msgstr "" + +#: src/gui/insEdit.cpp:6472 +msgid "Decay 2 Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6478 +msgid "Release Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6484 +msgid "Rate Correction" +msgstr "" + +#: src/gui/insEdit.cpp:6512 +msgid "LFO Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6523 +msgid "Use envelope" +msgstr "" + +#: src/gui/insEdit.cpp:6576 +msgid "Sustain/release mode:" +msgstr "" + +#: src/gui/insEdit.cpp:6577 +msgid "Direct (cut on release)" +msgstr "" + +#: src/gui/insEdit.cpp:6580 +msgid "Effective (linear decrease)" +msgstr "" + +#: src/gui/insEdit.cpp:6583 +msgid "Effective (exponential decrease)" +msgstr "" + +#: src/gui/insEdit.cpp:6586 +msgid "Delayed (write R on release)" +msgstr "" + +#: src/gui/insEdit.cpp:6596 src/gui/insEdit.cpp:6597 +msgid "Gain Mode" +msgstr "" + +#: src/gui/insEdit.cpp:6599 src/gui/insEdit.cpp:6600 src/gui/insEdit.cpp:7205 +msgid "Gain" +msgstr "" + +#: src/gui/insEdit.cpp:6633 +msgid "" +"using decrease modes will not produce any sound at all, unless you know what " +"you are doing.\n" +"it is recommended to use the Gain macro for decrease instead." +msgstr "" + +#: src/gui/insEdit.cpp:6703 +msgid "Enable synthesizer" +msgstr "" + +#: src/gui/insEdit.cpp:6721 +msgid "Single-waveform" +msgstr "" + +#: src/gui/insEdit.cpp:6730 +msgid "Dual-waveform" +msgstr "" + +#: src/gui/insEdit.cpp:6803 src/gui/insEdit.cpp:6812 +msgid "Wave 1" +msgstr "" + +#: src/gui/insEdit.cpp:6808 src/gui/insEdit.cpp:6823 +msgid "" +"waveform macro is controlling wave 1!\n" +"this value will be ineffective." +msgstr "" + +#: src/gui/insEdit.cpp:6829 +msgid "Wave 2" +msgstr "" + +#: src/gui/insEdit.cpp:6844 +msgid "Resume preview" +msgstr "" + +#: src/gui/insEdit.cpp:6846 +msgid "Pause preview" +msgstr "" + +#: src/gui/insEdit.cpp:6854 +msgid "Restart preview" +msgstr "" + +#: src/gui/insEdit.cpp:6874 +msgid "Copy to new wavetable" +msgstr "" + +#: src/gui/insEdit.cpp:6881 +msgid "Update Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6902 +msgid "Global" +msgstr "" + +#: src/gui/insEdit.cpp:6906 +msgid "" +"wavetable synthesizer disabled.\n" +"use the Waveform macro to set the wave for this instrument." +msgstr "" + +#: src/gui/insEdit.cpp:6912 +msgid "Macros" +msgstr "" + +#: src/gui/insEdit.cpp:6921 src/gui/insEdit.cpp:6929 src/gui/insEdit.cpp:6938 +#: src/gui/insEdit.cpp:6947 src/gui/insEdit.cpp:6962 src/gui/insEdit.cpp:6976 +#: src/gui/insEdit.cpp:6988 src/gui/insEdit.cpp:7001 src/gui/insEdit.cpp:7017 +#: src/gui/insEdit.cpp:7023 src/gui/insEdit.cpp:7033 src/gui/insEdit.cpp:7040 +#: src/gui/insEdit.cpp:7046 src/gui/insEdit.cpp:7059 src/gui/insEdit.cpp:7066 +#: src/gui/insEdit.cpp:7073 src/gui/insEdit.cpp:7082 src/gui/insEdit.cpp:7092 +#: src/gui/insEdit.cpp:7100 src/gui/insEdit.cpp:7106 src/gui/insEdit.cpp:7114 +#: src/gui/insEdit.cpp:7121 src/gui/insEdit.cpp:7127 src/gui/insEdit.cpp:7137 +#: src/gui/insEdit.cpp:7149 src/gui/insEdit.cpp:7157 src/gui/insEdit.cpp:7173 +#: src/gui/insEdit.cpp:7178 src/gui/insEdit.cpp:7191 src/gui/insEdit.cpp:7198 +#: src/gui/insEdit.cpp:7209 src/gui/insEdit.cpp:7222 src/gui/insEdit.cpp:7231 +#: src/gui/insEdit.cpp:7238 src/gui/insEdit.cpp:7246 src/gui/insEdit.cpp:7270 +#: src/gui/insEdit.cpp:7277 src/gui/insEdit.cpp:7285 src/gui/insEdit.cpp:7296 +#: src/gui/insEdit.cpp:7303 src/gui/insEdit.cpp:7311 src/gui/insEdit.cpp:7319 +#: src/gui/insEdit.cpp:7328 src/gui/insEdit.cpp:7336 src/gui/insEdit.cpp:7342 +#: src/gui/insEdit.cpp:7348 src/gui/insEdit.cpp:7354 src/gui/insEdit.cpp:7359 +#: src/gui/insEdit.cpp:7366 src/gui/insEdit.cpp:7373 src/gui/insEdit.cpp:7381 +#: src/gui/insEdit.cpp:7390 src/gui/insEdit.cpp:7398 src/gui/insEdit.cpp:7410 +#: src/gui/insEdit.cpp:7423 src/gui/insEdit.cpp:7434 src/gui/insEdit.cpp:7444 +#: src/gui/insEdit.cpp:7452 src/gui/insEdit.cpp:7462 src/gui/insEdit.cpp:7471 +msgid "Arpeggio" +msgstr "" + +#: src/gui/insEdit.cpp:6925 src/gui/insEdit.cpp:6932 src/gui/insEdit.cpp:6943 +#: src/gui/insEdit.cpp:6972 src/gui/insEdit.cpp:6984 src/gui/insEdit.cpp:6994 +#: src/gui/insEdit.cpp:7007 src/gui/insEdit.cpp:7054 src/gui/insEdit.cpp:7062 +#: src/gui/insEdit.cpp:7069 src/gui/insEdit.cpp:7088 src/gui/insEdit.cpp:7110 +#: src/gui/insEdit.cpp:7133 src/gui/insEdit.cpp:7144 src/gui/insEdit.cpp:7163 +#: src/gui/insEdit.cpp:7183 src/gui/insEdit.cpp:7194 src/gui/insEdit.cpp:7214 +#: src/gui/insEdit.cpp:7234 src/gui/insEdit.cpp:7242 src/gui/insEdit.cpp:7249 +#: src/gui/insEdit.cpp:7254 src/gui/insEdit.cpp:7260 src/gui/insEdit.cpp:7266 +#: src/gui/insEdit.cpp:7273 src/gui/insEdit.cpp:7281 src/gui/insEdit.cpp:7290 +#: src/gui/insEdit.cpp:7299 src/gui/insEdit.cpp:7307 src/gui/insEdit.cpp:7324 +#: src/gui/insEdit.cpp:7332 src/gui/insEdit.cpp:7338 src/gui/insEdit.cpp:7362 +#: src/gui/insEdit.cpp:7369 src/gui/insEdit.cpp:7377 src/gui/insEdit.cpp:7386 +#: src/gui/insEdit.cpp:7394 src/gui/insEdit.cpp:7402 src/gui/insEdit.cpp:7414 +#: src/gui/insEdit.cpp:7429 src/gui/insEdit.cpp:7440 src/gui/insEdit.cpp:7448 +#: src/gui/insEdit.cpp:7457 src/gui/insEdit.cpp:7475 +msgid "Phase Reset" +msgstr "" + +#: src/gui/insEdit.cpp:6939 src/gui/insEdit.cpp:7024 src/gui/insEdit.cpp:7210 +#: src/gui/insEdit.cpp:7247 +msgid "Duty/Noise" +msgstr "" + +#: src/gui/insEdit.cpp:6966 src/gui/insEdit.cpp:7288 +msgid "Surround" +msgstr "" + +#: src/gui/insEdit.cpp:6968 src/gui/insEdit.cpp:6981 src/gui/insEdit.cpp:7026 +#: src/gui/insEdit.cpp:7085 src/gui/insEdit.cpp:7141 src/gui/insEdit.cpp:7159 +#: src/gui/insEdit.cpp:7180 src/gui/insEdit.cpp:7201 src/gui/insEdit.cpp:7225 +#: src/gui/insEdit.cpp:7278 src/gui/insEdit.cpp:7304 src/gui/insEdit.cpp:7321 +#: src/gui/insEdit.cpp:7329 src/gui/insEdit.cpp:7374 src/gui/insEdit.cpp:7383 +#: src/gui/insEdit.cpp:7399 src/gui/insEdit.cpp:7411 src/gui/insEdit.cpp:7426 +#: src/gui/insEdit.cpp:7454 src/gui/insEdit.cpp:7464 +msgid "Panning (left)" +msgstr "" + +#: src/gui/insEdit.cpp:6969 src/gui/insEdit.cpp:6982 src/gui/insEdit.cpp:7027 +#: src/gui/insEdit.cpp:7086 src/gui/insEdit.cpp:7142 src/gui/insEdit.cpp:7160 +#: src/gui/insEdit.cpp:7181 src/gui/insEdit.cpp:7202 src/gui/insEdit.cpp:7226 +#: src/gui/insEdit.cpp:7279 src/gui/insEdit.cpp:7305 src/gui/insEdit.cpp:7322 +#: src/gui/insEdit.cpp:7330 src/gui/insEdit.cpp:7375 src/gui/insEdit.cpp:7384 +#: src/gui/insEdit.cpp:7400 src/gui/insEdit.cpp:7412 src/gui/insEdit.cpp:7427 +#: src/gui/insEdit.cpp:7455 src/gui/insEdit.cpp:7465 +msgid "Panning (right)" +msgstr "" + +#: src/gui/insEdit.cpp:6990 src/gui/insEdit.cpp:7003 src/gui/insEdit.cpp:7107 +#: src/gui/insEdit.cpp:7199 src/gui/insEdit.cpp:7239 src/gui/insEdit.cpp:7424 +msgid "Noise Freq" +msgstr "" + +#: src/gui/insEdit.cpp:6996 src/gui/insEdit.cpp:7010 src/gui/insEdit.cpp:7167 +msgid "AutoEnv Num" +msgstr "" + +#: src/gui/insEdit.cpp:6997 src/gui/insEdit.cpp:7011 src/gui/insEdit.cpp:7168 +msgid "AutoEnv Den" +msgstr "" + +#: src/gui/insEdit.cpp:7012 +msgid "Noise AND Mask" +msgstr "" + +#: src/gui/insEdit.cpp:7013 +msgid "Noise OR Mask" +msgstr "" + +#: src/gui/insEdit.cpp:7034 +msgid "On/Off" +msgstr "" + +#: src/gui/insEdit.cpp:7060 +msgid "Patch" +msgstr "" + +#: src/gui/insEdit.cpp:7076 +msgid "Mod Depth" +msgstr "" + +#: src/gui/insEdit.cpp:7077 +msgid "Mod Speed" +msgstr "" + +#: src/gui/insEdit.cpp:7078 +msgid "Mod Position" +msgstr "" + +#: src/gui/insEdit.cpp:7083 +msgid "Noise Length" +msgstr "" + +#: src/gui/insEdit.cpp:7093 +msgid "Wave Pos" +msgstr "" + +#: src/gui/insEdit.cpp:7096 +msgid "Wave Length" +msgstr "" + +#: src/gui/insEdit.cpp:7115 +msgid "AUDCTL" +msgstr "" + +#: src/gui/insEdit.cpp:7122 src/gui/insEdit.cpp:7343 +msgid "Pulse Width" +msgstr "" + +#: src/gui/insEdit.cpp:7139 +msgid "Duty/Int" +msgstr "" + +#: src/gui/insEdit.cpp:7145 src/gui/insEdit.cpp:7406 +msgid "Load LFSR" +msgstr "" + +#: src/gui/insEdit.cpp:7165 +msgid "Envelope Mode" +msgstr "" + +#: src/gui/insEdit.cpp:7218 +msgid "Phase Reset Timer" +msgstr "" + +#: src/gui/insEdit.cpp:7252 src/gui/insEdit.cpp:7259 +msgid "Freq Divider" +msgstr "" + +#: src/gui/insEdit.cpp:7255 +msgid "Clock Divider" +msgstr "" + +#: src/gui/insEdit.cpp:7264 +msgid "Global Volume" +msgstr "" + +#: src/gui/insEdit.cpp:7286 +msgid "Echo Level" +msgstr "" + +#: src/gui/insEdit.cpp:7291 +msgid "Echo Feedback" +msgstr "" + +#: src/gui/insEdit.cpp:7292 +msgid "Echo Length" +msgstr "" + +#: src/gui/insEdit.cpp:7312 +msgid "Group Ctrl" +msgstr "" + +#: src/gui/insEdit.cpp:7313 +msgid "Group Attack" +msgstr "" + +#: src/gui/insEdit.cpp:7314 +msgid "Group Decay" +msgstr "" + +#: src/gui/insEdit.cpp:7320 +msgid "Noise Type" +msgstr "" + +#: src/gui/insEdit.cpp:7367 +msgid "Square/Noise" +msgstr "" + +#: src/gui/insEdit.cpp:7404 +msgid "Tap A Location" +msgstr "" + +#: src/gui/insEdit.cpp:7405 +msgid "Tap B Location" +msgstr "" + +#: src/gui/insEdit.cpp:7416 +msgid "Portion A Length" +msgstr "" + +#: src/gui/insEdit.cpp:7417 +msgid "Portion B Length" +msgstr "" + +#: src/gui/insEdit.cpp:7418 +msgid "Portion A Offset" +msgstr "" + +#: src/gui/insEdit.cpp:7419 +msgid "Portion B Offset" +msgstr "" + +#: src/gui/insEdit.cpp:7463 +msgid "Parameter" +msgstr "" + +#: src/gui/insEdit.cpp:7467 +msgid "Load Value" +msgstr "" + +#: src/gui/insEdit.cpp:7479 +msgid "Filter Toggle" +msgstr "" + +#: src/gui/insEdit.cpp:7486 +msgid "Wave Mix" +msgstr "" + +#: src/gui/insEdit.cpp:7500 +msgid "Octave offset" +msgstr "" + +#: src/gui/insEdit.cpp:7505 +msgid "go to Macros for other parameters." +msgstr "" + +#: src/gui/insEdit.cpp:7521 +msgid "invalid instrument type! change it first." +msgstr "" + +#: src/gui/insEdit.cpp:7565 +msgid "clear contents" +msgstr "" + +#: src/gui/insEdit.cpp:7571 +msgid "offset..." +msgstr "" + +#: src/gui/insEdit.cpp:7572 src/gui/insEdit.cpp:7605 +msgid "X" +msgstr "" + +#: src/gui/insEdit.cpp:7573 src/gui/insEdit.cpp:7609 +msgid "Y" +msgstr "" + +#: src/gui/insEdit.cpp:7574 +msgid "offset" +msgstr "" + +#: src/gui/insEdit.cpp:7637 +msgid "Min" +msgstr "" + +#: src/gui/insEdit.cpp:7638 +msgid "Max" +msgstr "" diff --git a/po/furnace.pot b/po/furnace.pot new file mode 100644 index 000000000..e141a20c5 --- /dev/null +++ b/po/furnace.pot @@ -0,0 +1,16021 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: furnace 0.6.3\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/engine/sysDef.cpp:428 src/engine/sysDef.cpp:441 +msgid "20xx: Set channel mode (bit 0: square; bit 1: noise; bit 2: envelope)" +msgstr "" + +#: src/engine/sysDef.cpp:429 +msgid "21xx: Set noise frequency (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:430 src/engine/sysDef.cpp:443 +msgid "22xy: Set envelope mode (x: shape, y: enable for this channel)" +msgstr "" + +#: src/engine/sysDef.cpp:431 src/engine/sysDef.cpp:444 +msgid "23xx: Set envelope period low byte" +msgstr "" + +#: src/engine/sysDef.cpp:432 src/engine/sysDef.cpp:445 +msgid "24xx: Set envelope period high byte" +msgstr "" + +#: src/engine/sysDef.cpp:433 src/engine/sysDef.cpp:446 +#: src/engine/sysDef.cpp:1599 +msgid "25xx: Envelope slide up" +msgstr "" + +#: src/engine/sysDef.cpp:434 src/engine/sysDef.cpp:447 +#: src/engine/sysDef.cpp:1600 +msgid "26xx: Envelope slide down" +msgstr "" + +#: src/engine/sysDef.cpp:435 src/engine/sysDef.cpp:448 +#: src/engine/sysDef.cpp:1601 +msgid "29xy: Set auto-envelope (x: numerator; y: denominator)" +msgstr "" + +#: src/engine/sysDef.cpp:436 src/engine/sysDef.cpp:449 +msgid "2Exx: Write to I/O port A" +msgstr "" + +#: src/engine/sysDef.cpp:437 src/engine/sysDef.cpp:450 +msgid "2Fxx: Write to I/O port B" +msgstr "" + +#: src/engine/sysDef.cpp:442 +msgid "21xx: Set noise frequency (0 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:451 +msgid "12xx: Set duty cycle (0 to 8)" +msgstr "" + +#: src/engine/sysDef.cpp:453 +msgid "27xx: Set noise AND mask" +msgstr "" + +#: src/engine/sysDef.cpp:454 +msgid "28xx: Set noise OR mask" +msgstr "" + +#: src/engine/sysDef.cpp:455 +msgid "" +"2Cxy: Automatic noise frequency (x: mode (0: disable, 1: freq, 2: freq + OR " +"mask); y: offset)" +msgstr "" + +#: src/engine/sysDef.cpp:456 +msgid "2Dxx: NOT TO BE EMPLOYED BY THE COMPOSER" +msgstr "" + +#: src/engine/sysDef.cpp:460 +msgid "30xx: Toggle hard envelope reset on new notes" +msgstr "" + +#: src/engine/sysDef.cpp:465 +msgid "18xx: Toggle extended channel 3 mode" +msgstr "" + +#: src/engine/sysDef.cpp:470 src/engine/sysDef.cpp:766 +#: src/engine/sysDef.cpp:1025 src/engine/sysDef.cpp:1272 +#: src/engine/sysDef.cpp:1593 +msgid "17xx: Toggle PCM mode (LEGACY)" +msgstr "" + +#: src/engine/sysDef.cpp:471 src/engine/sysDef.cpp:1653 +#: src/engine/sysDef.cpp:1963 +msgid "DFxx: Set sample playback direction (0: normal; 1: reverse)" +msgstr "" + +#: src/engine/sysDef.cpp:476 +msgid "18xx: Toggle drums mode (1: enabled; 0: disabled)" +msgstr "" + +#: src/engine/sysDef.cpp:480 src/engine/sysDef.cpp:554 +#: src/engine/sysDef.cpp:575 +msgid "11xx: Set feedback (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:481 +msgid "12xx: Set level of operator 1 (0 highest, 7F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:482 +msgid "13xx: Set level of operator 2 (0 highest, 7F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:483 +msgid "14xx: Set level of operator 3 (0 highest, 7F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:484 +msgid "15xx: Set level of operator 4 (0 highest, 7F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:485 src/engine/sysDef.cpp:580 +#: src/engine/sysDef.cpp:635 +msgid "16xy: Set operator multiplier (x: operator from 1 to 4; y: multiplier)" +msgstr "" + +#: src/engine/sysDef.cpp:486 +msgid "19xx: Set attack of all operators (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:487 +msgid "1Axx: Set attack of operator 1 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:488 +msgid "1Bxx: Set attack of operator 2 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:489 +msgid "1Cxx: Set attack of operator 3 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:490 +msgid "1Dxx: Set attack of operator 4 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:491 src/engine/sysDef.cpp:588 +#: src/engine/sysDef.cpp:656 +msgid "50xy: Set AM (x: operator from 1 to 4 (0 for all ops); y: AM)" +msgstr "" + +#: src/engine/sysDef.cpp:492 src/engine/sysDef.cpp:589 +#: src/engine/sysDef.cpp:657 +msgid "" +"51xy: Set sustain level (x: operator from 1 to 4 (0 for all ops); y: sustain)" +msgstr "" + +#: src/engine/sysDef.cpp:493 src/engine/sysDef.cpp:590 +#: src/engine/sysDef.cpp:658 +msgid "52xy: Set release (x: operator from 1 to 4 (0 for all ops); y: release)" +msgstr "" + +#: src/engine/sysDef.cpp:494 +msgid "" +"53xy: Set detune (x: operator from 1 to 4 (0 for all ops); y: detune where 3 " +"is center)" +msgstr "" + +#: src/engine/sysDef.cpp:495 src/engine/sysDef.cpp:592 +#: src/engine/sysDef.cpp:660 +msgid "" +"54xy: Set envelope scale (x: operator from 1 to 4 (0 for all ops); y: scale " +"from 0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:496 +msgid "56xx: Set decay of all operators (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:497 +msgid "57xx: Set decay of operator 1 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:498 +msgid "58xx: Set decay of operator 2 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:499 +msgid "59xx: Set decay of operator 3 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:500 +msgid "5Axx: Set decay of operator 4 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:501 +msgid "5Bxx: Set decay 2 of all operators (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:502 +msgid "5Cxx: Set decay 2 of operator 1 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:503 +msgid "5Dxx: Set decay 2 of operator 2 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:504 +msgid "5Exx: Set decay 2 of operator 3 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:505 +msgid "5Fxx: Set decay 2 of operator 4 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:510 +msgid "10xx: Set noise frequency (xx: value; 0 disables noise)" +msgstr "" + +#: src/engine/sysDef.cpp:511 +msgid "17xx: Set LFO speed" +msgstr "" + +#: src/engine/sysDef.cpp:512 +msgid "18xx: Set LFO waveform (0 saw, 1 square, 2 triangle, 3 noise)" +msgstr "" + +#: src/engine/sysDef.cpp:513 +msgid "1Exx: Set AM depth (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:514 +msgid "1Fxx: Set PM depth (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:515 +msgid "" +"55xy: Set detune 2 (x: operator from 1 to 4 (0 for all ops); y: detune from " +"0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:520 +msgid "24xx: Set LFO 2 speed" +msgstr "" + +#: src/engine/sysDef.cpp:521 +msgid "25xx: Set LFO 2 waveform (0 saw, 1 square, 2 triangle, 3 noise)" +msgstr "" + +#: src/engine/sysDef.cpp:522 +msgid "26xx: Set AM 2 depth (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:523 +msgid "27xx: Set PM 2 depth (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:524 +msgid "" +"28xy: Set reverb (x: operator from 1 to 4 (0 for all ops); y: reverb from 0 " +"to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:525 src/engine/sysDef.cpp:650 +msgid "" +"2Axy: Set waveform (x: operator from 1 to 4 (0 for all ops); y: waveform " +"from 0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:526 +msgid "" +"2Bxy: Set envelope generator shift (x: operator from 1 to 4 (0 for all ops); " +"y: shift from 0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:527 +msgid "" +"2Cxy: Set fine multiplier (x: operator from 1 to 4 (0 for all ops); y: fine)" +msgstr "" + +#: src/engine/sysDef.cpp:530 +msgid "" +"3xyy: Set fixed frequency of operator 1 (x: octave from 0 to 7; y: frequency)" +msgstr "" + +#: src/engine/sysDef.cpp:531 +msgid "" +"3xyy: Set fixed frequency of operator 2 (x: octave from 8 to F; y: frequency)" +msgstr "" + +#: src/engine/sysDef.cpp:532 +msgid "" +"4xyy: Set fixed frequency of operator 3 (x: octave from 0 to 7; y: frequency)" +msgstr "" + +#: src/engine/sysDef.cpp:533 +msgid "" +"4xyy: Set fixed frequency of operator 4 (x: octave from 8 to F; y: frequency)" +msgstr "" + +#: src/engine/sysDef.cpp:540 +msgid "10xy: Setup LFO (x: enable; y: speed)" +msgstr "" + +#: src/engine/sysDef.cpp:541 +msgid "" +"55xy: Set SSG envelope (x: operator from 1 to 4 (0 for all ops); y: 0-7 on, " +"8 off)" +msgstr "" + +#: src/engine/sysDef.cpp:549 +msgid "1Fxx: Set ADPCM-A global volume (0 to 3F)" +msgstr "" + +#: src/engine/sysDef.cpp:553 +msgid "10xx: Set patch (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:555 src/engine/sysDef.cpp:576 +#: src/engine/sysDef.cpp:631 +msgid "12xx: Set level of operator 1 (0 highest, 3F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:556 src/engine/sysDef.cpp:577 +#: src/engine/sysDef.cpp:632 +msgid "13xx: Set level of operator 2 (0 highest, 3F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:557 +msgid "16xy: Set operator multiplier (x: operator from 1 to 2; y: multiplier)" +msgstr "" + +#: src/engine/sysDef.cpp:558 src/engine/sysDef.cpp:582 +#: src/engine/sysDef.cpp:637 +msgid "19xx: Set attack of all operators (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:559 src/engine/sysDef.cpp:583 +#: src/engine/sysDef.cpp:638 +msgid "1Axx: Set attack of operator 1 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:560 src/engine/sysDef.cpp:584 +#: src/engine/sysDef.cpp:639 +msgid "1Bxx: Set attack of operator 2 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:561 +msgid "50xy: Set AM (x: operator from 1 to 2 (0 for all ops); y: AM)" +msgstr "" + +#: src/engine/sysDef.cpp:562 +msgid "" +"51xy: Set sustain level (x: operator from 1 to 2 (0 for all ops); y: sustain)" +msgstr "" + +#: src/engine/sysDef.cpp:563 +msgid "52xy: Set release (x: operator from 1 to 2 (0 for all ops); y: release)" +msgstr "" + +#: src/engine/sysDef.cpp:564 +msgid "53xy: Set vibrato (x: operator from 1 to 2 (0 for all ops); y: enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:565 +msgid "" +"54xy: Set envelope scale (x: operator from 1 to 2 (0 for all ops); y: scale " +"from 0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:566 +msgid "" +"55xy: Set envelope sustain (x: operator from 1 to 2 (0 for all ops); y: " +"enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:567 src/engine/sysDef.cpp:594 +#: src/engine/sysDef.cpp:662 +msgid "56xx: Set decay of all operators (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:568 src/engine/sysDef.cpp:595 +#: src/engine/sysDef.cpp:663 +msgid "57xx: Set decay of operator 1 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:569 src/engine/sysDef.cpp:596 +#: src/engine/sysDef.cpp:664 +msgid "58xx: Set decay of operator 2 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:570 +msgid "" +"5Bxy: Set whether key will scale envelope (x: operator from 1 to 2 (0 for " +"all ops); y: enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:574 +msgid "10xx: Set global AM depth (0: 1dB, 1: 4.8dB)" +msgstr "" + +#: src/engine/sysDef.cpp:578 src/engine/sysDef.cpp:633 +msgid "14xx: Set level of operator 3 (0 highest, 3F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:579 src/engine/sysDef.cpp:634 +msgid "15xx: Set level of operator 4 (0 highest, 3F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:581 +msgid "17xx: Set global vibrato depth (0: normal, 1: double)" +msgstr "" + +#: src/engine/sysDef.cpp:585 src/engine/sysDef.cpp:640 +msgid "1Cxx: Set attack of operator 3 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:586 src/engine/sysDef.cpp:641 +msgid "1Dxx: Set attack of operator 4 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:587 +msgid "" +"2Axy: Set waveform (x: operator from 1 to 4 (0 for all ops); y: waveform " +"from 0 to 3 in OPL2 and 0 to 7 in OPL3)" +msgstr "" + +#: src/engine/sysDef.cpp:591 src/engine/sysDef.cpp:659 +msgid "53xy: Set vibrato (x: operator from 1 to 4 (0 for all ops); y: enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:593 src/engine/sysDef.cpp:661 +msgid "" +"55xy: Set envelope sustain (x: operator from 1 to 4 (0 for all ops); y: " +"enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:597 src/engine/sysDef.cpp:665 +msgid "59xx: Set decay of operator 3 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:598 src/engine/sysDef.cpp:666 +msgid "5Axx: Set decay of operator 4 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:599 src/engine/sysDef.cpp:667 +msgid "" +"5Bxy: Set whether key will scale envelope (x: operator from 1 to 4 (0 for " +"all ops); y: enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:603 src/engine/sysDef.cpp:680 +msgid "" +"10xx: Set waveform (bit 0: triangle; bit 1: saw; bit 2: pulse; bit 3: noise)" +msgstr "" + +#: src/engine/sysDef.cpp:604 +msgid "11xx: Set coarse cutoff (not recommended; use 4xxx instead)" +msgstr "" + +#: src/engine/sysDef.cpp:605 +msgid "12xx: Set coarse pulse width (not recommended; use 3xxx instead)" +msgstr "" + +#: src/engine/sysDef.cpp:606 +msgid "13xx: Set resonance (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:607 +msgid "" +"14xx: Set filter mode (bit 0: low pass; bit 1: band pass; bit 2: high pass)" +msgstr "" + +#: src/engine/sysDef.cpp:608 +msgid "15xx: Set envelope reset time" +msgstr "" + +#: src/engine/sysDef.cpp:609 +msgid "1Axx: Disable envelope reset for this channel (1 disables; 0 enables)" +msgstr "" + +#: src/engine/sysDef.cpp:610 +msgid "1Bxy: Reset cutoff (x: on new note; y: now)" +msgstr "" + +#: src/engine/sysDef.cpp:611 +msgid "1Cxy: Reset pulse width (x: on new note; y: now)" +msgstr "" + +#: src/engine/sysDef.cpp:612 +msgid "1Exy: Change other parameters (LEGACY)" +msgstr "" + +#: src/engine/sysDef.cpp:613 +msgid "20xy: Set attack/decay (x: attack; y: decay)" +msgstr "" + +#: src/engine/sysDef.cpp:614 +msgid "21xy: Set sustain/release (x: sustain; y: release)" +msgstr "" + +#: src/engine/sysDef.cpp:616 src/engine/sysDef.cpp:688 +msgid "3xxx: Set pulse width (0 to FFF)" +msgstr "" + +#: src/engine/sysDef.cpp:617 +msgid "4xxx: Set cutoff (0 to 7FF)" +msgstr "" + +#: src/engine/sysDef.cpp:622 src/engine/sysDef.cpp:745 +#: src/engine/sysDef.cpp:762 src/engine/sysDef.cpp:1000 +#: src/engine/sysDef.cpp:1050 src/engine/sysDef.cpp:1268 +#: src/engine/sysDef.cpp:1320 src/engine/sysDef.cpp:1590 +#: src/engine/sysDef.cpp:1788 src/engine/sysDef.cpp:1792 +#: src/engine/sysDef.cpp:1893 src/engine/sysDef.cpp:2063 +#: src/engine/sysDef.cpp:2077 +msgid "10xx: Set waveform" +msgstr "" + +#: src/engine/sysDef.cpp:626 +msgid "20xx: Set PCM frequency" +msgstr "" + +#: src/engine/sysDef.cpp:630 +msgid "" +"10xy: Set AM depth (x: operator from 1 to 4 (0 for all ops); y: depth (0: " +"1dB, 1: 4.8dB))" +msgstr "" + +#: src/engine/sysDef.cpp:636 +msgid "" +"17xy: Set vibrato depth (x: operator from 1 to 4 (0 for all ops); y: depth " +"(0: normal, 1: double))" +msgstr "" + +#: src/engine/sysDef.cpp:642 +msgid "20xy: Set panning of operator 1 (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:643 +msgid "21xy: Set panning of operator 2 (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:644 +msgid "22xy: Set panning of operator 3 (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:645 +msgid "23xy: Set panning of operator 4 (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:646 +msgid "" +"24xy: Set output level register (x: operator from 1 to 4 (0 for all ops); y: " +"level from 0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:647 +msgid "" +"25xy: Set modulation input level (x: operator from 1 to 4 (0 for all ops); " +"y: level from 0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:648 +msgid "" +"26xy: Set envelope delay (x: operator from 1 to 4 (0 for all ops); y: delay " +"from 0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:649 +msgid "27xx: Set noise mode for operator 4 (x: mode from 0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:651 +msgid "" +"2Fxy: Set fixed frequency block (x: operator from 1 to 4; y: octave from 0 " +"to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:652 +msgid "40xx: Set detune of operator 1 (80: center)" +msgstr "" + +#: src/engine/sysDef.cpp:653 +msgid "41xx: Set detune of operator 2 (80: center)" +msgstr "" + +#: src/engine/sysDef.cpp:654 +msgid "42xx: Set detune of operator 3 (80: center)" +msgstr "" + +#: src/engine/sysDef.cpp:655 +msgid "43xx: Set detune of operator 4 (80: center)" +msgstr "" + +#: src/engine/sysDef.cpp:670 +msgid "" +"3xyy: Set fixed frequency F-num of operator 1 (x: high 2 bits from 0 to 3; " +"y: low 8 bits of F-num)" +msgstr "" + +#: src/engine/sysDef.cpp:671 +msgid "" +"3xyy: Set fixed frequency F-num of operator 2 (x: high 2 bits from 4 to 7; " +"y: low 8 bits of F-num)" +msgstr "" + +#: src/engine/sysDef.cpp:672 +msgid "" +"3xyy: Set fixed frequency F-num of operator 3 (x: high 2 bits from 8 to B; " +"y: low 8 bits of F-num)" +msgstr "" + +#: src/engine/sysDef.cpp:673 +msgid "" +"3xyy: Set fixed frequency F-num of operator 4 (x: high 2 bits from C to F; " +"y: low 8 bits of F-num)" +msgstr "" + +#: src/engine/sysDef.cpp:681 +msgid "11xx: Set resonance (0 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:682 +msgid "" +"12xx: Set filter mode (bit 0: low pass; bit 1: band pass; bit 2: high pass)" +msgstr "" + +#: src/engine/sysDef.cpp:683 +msgid "13xx: Disable envelope reset for this channel (1 disables; 0 enables)" +msgstr "" + +#: src/engine/sysDef.cpp:684 +msgid "14xy: Reset cutoff (x: on new note; y: now)" +msgstr "" + +#: src/engine/sysDef.cpp:685 +msgid "15xy: Reset pulse width (x: on new note; y: now)" +msgstr "" + +#: src/engine/sysDef.cpp:686 +msgid "16xy: Change other parameters" +msgstr "" + +#: src/engine/sysDef.cpp:689 src/engine/sysDef.cpp:1733 +msgid "4xxx: Set cutoff (0 to FFF)" +msgstr "" + +#: src/engine/sysDef.cpp:697 +msgid "Yamaha YMU759 (MA-2)" +msgstr "" + +#: src/engine/sysDef.cpp:698 +msgid "" +"a chip which found its way inside mobile phones in the 2000's.\n" +"as proprietary as it is, it passed away after losing to MP3 in the mobile " +"hardware battle." +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:807 src/engine/sysDef.cpp:819 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:915 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1237 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1314 src/engine/sysDef.cpp:1356 +#: src/engine/sysDef.cpp:1396 src/engine/sysDef.cpp:1499 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1572 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1608 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1799 src/engine/sysDef.cpp:1810 +#: src/engine/sysDef.cpp:1821 src/engine/sysDef.cpp:1832 +#: src/engine/sysDef.cpp:1900 src/engine/sysDef.cpp:1910 +#: src/engine/sysDef.cpp:1920 src/engine/sysDef.cpp:1944 +#: src/engine/sysDef.cpp:1957 src/engine/sysDef.cpp:1970 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2037 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2122 +#: src/engine/sysDef.cpp:2138 src/engine/sysDef.cpp:2150 +msgid "Channel 1" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:807 src/engine/sysDef.cpp:819 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:915 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1237 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1314 src/engine/sysDef.cpp:1356 +#: src/engine/sysDef.cpp:1396 src/engine/sysDef.cpp:1499 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1572 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1608 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1799 src/engine/sysDef.cpp:1810 +#: src/engine/sysDef.cpp:1821 src/engine/sysDef.cpp:1832 +#: src/engine/sysDef.cpp:1900 src/engine/sysDef.cpp:1910 +#: src/engine/sysDef.cpp:1920 src/engine/sysDef.cpp:1944 +#: src/engine/sysDef.cpp:1957 src/engine/sysDef.cpp:1970 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2037 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2122 +#: src/engine/sysDef.cpp:2138 src/engine/sysDef.cpp:2150 +msgid "Channel 2" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:807 src/engine/sysDef.cpp:819 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1237 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1314 +#: src/engine/sysDef.cpp:1356 src/engine/sysDef.cpp:1396 +#: src/engine/sysDef.cpp:1499 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1572 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1799 src/engine/sysDef.cpp:1810 +#: src/engine/sysDef.cpp:1821 src/engine/sysDef.cpp:1832 +#: src/engine/sysDef.cpp:1910 src/engine/sysDef.cpp:1944 +#: src/engine/sysDef.cpp:1957 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2037 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +#: src/engine/sysDef.cpp:2122 src/engine/sysDef.cpp:2138 +#: src/engine/sysDef.cpp:2150 +msgid "Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1237 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1314 +#: src/engine/sysDef.cpp:1356 src/engine/sysDef.cpp:1396 +#: src/engine/sysDef.cpp:1499 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1572 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1910 +#: src/engine/sysDef.cpp:1944 src/engine/sysDef.cpp:1957 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +#: src/engine/sysDef.cpp:2122 src/engine/sysDef.cpp:2150 +msgid "Channel 4" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1314 +#: src/engine/sysDef.cpp:1356 src/engine/sysDef.cpp:1396 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1572 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1705 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 5" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1356 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 6" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 7" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 8" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 9" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 10" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 11" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 12" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 13" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 14" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 15" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 16" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:700 +#: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1767 src/engine/sysDef.cpp:1888 +#: src/engine/sysDef.cpp:1944 src/engine/sysDef.cpp:1945 +#: src/gui/settings.cpp:4094 +msgid "PCM" +msgstr "" + +#: src/engine/sysDef.cpp:706 +msgid "Sega Genesis/Mega Drive" +msgstr "" + +#: src/engine/sysDef.cpp:712 +msgid "Sega Genesis Extended Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:718 src/gui/sysConf.cpp:158 +msgid "TI SN76489" +msgstr "" + +#: src/engine/sysDef.cpp:719 +msgid "" +"a square/noise sound chip found on the Sega Master System, ColecoVision, " +"Tandy, TI's own 99/4A and a few other places." +msgstr "" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 +msgid "Square 1" +msgstr "" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 +msgid "Square 2" +msgstr "" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 +msgid "Square 3" +msgstr "" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:739 +#: src/engine/sysDef.cpp:773 src/engine/sysDef.cpp:955 +#: src/engine/sysDef.cpp:1314 src/engine/sysDef.cpp:1874 +#: src/engine/sysDef.cpp:1920 src/engine/sysDef.cpp:2037 +#: src/engine/sysDef.cpp:2100 src/gui/settings.cpp:4093 +#: src/gui/insEdit.cpp:6978 src/gui/insEdit.cpp:7129 src/gui/insEdit.cpp:7223 +#: src/gui/insEdit.cpp:7315 +msgid "Noise" +msgstr "" + +#: src/engine/sysDef.cpp:726 +msgid "20xy: Set noise mode (x: preset freq/ch3 freq; y: thin pulse/noise)" +msgstr "" + +#: src/engine/sysDef.cpp:731 +msgid "Sega Master System + FM Expansion" +msgstr "" + +#: src/engine/sysDef.cpp:737 src/gui/settings.cpp:4025 +msgid "Game Boy" +msgstr "" + +#: src/engine/sysDef.cpp:738 +msgid "the most popular portable game console of the era." +msgstr "" + +#: src/engine/sysDef.cpp:739 src/engine/sysDef.cpp:773 +#: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:2100 +msgid "Pulse 1" +msgstr "" + +#: src/engine/sysDef.cpp:739 src/engine/sysDef.cpp:773 +#: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:2100 +msgid "Pulse 2" +msgstr "" + +#: src/engine/sysDef.cpp:739 src/gui/settings.cpp:3930 +#: src/gui/guiConst.cpp:1395 src/gui/insEdit.cpp:6652 +msgid "Wavetable" +msgstr "" + +#: src/engine/sysDef.cpp:746 +msgid "11xx: Set noise length (0: long; 1: short)" +msgstr "" + +#: src/engine/sysDef.cpp:747 +msgid "12xx: Set duty cycle (0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:748 +msgid "13xy: Setup sweep (x: time; y: shift)" +msgstr "" + +#: src/engine/sysDef.cpp:749 +msgid "14xx: Set sweep direction (0: up; 1: down)" +msgstr "" + +#: src/engine/sysDef.cpp:754 +msgid "PC Engine/TurboGrafx-16" +msgstr "" + +#: src/engine/sysDef.cpp:755 +msgid "an '80s game console with a wavetable sound chip, popular in Japan." +msgstr "" + +#: src/engine/sysDef.cpp:763 src/engine/sysDef.cpp:1001 +#: src/engine/sysDef.cpp:1793 +msgid "11xx: Toggle noise mode" +msgstr "" + +#: src/engine/sysDef.cpp:764 +msgid "12xx: Setup LFO (0: disabled; 1: 1x depth; 2: 16x depth; 3: 256x depth)" +msgstr "" + +#: src/engine/sysDef.cpp:765 +msgid "13xx: Set LFO speed" +msgstr "" + +#: src/engine/sysDef.cpp:771 +msgid "NES (Ricoh 2A03)" +msgstr "" + +#: src/engine/sysDef.cpp:772 +msgid "" +"also known as Famicom in Japan, it's the most well-known game console of the " +"'80s." +msgstr "" + +#: src/engine/sysDef.cpp:773 src/gui/waveEdit.cpp:31 src/gui/waveEdit.cpp:217 +#: src/gui/insEdit.cpp:200 src/gui/insEdit.cpp:324 src/gui/insEdit.cpp:658 +msgid "Triangle" +msgstr "" + +#: src/engine/sysDef.cpp:773 src/engine/sysDef.cpp:2100 +#: src/gui/insEdit.cpp:2629 +msgid "DPCM" +msgstr "" + +#: src/engine/sysDef.cpp:779 src/engine/sysDef.cpp:2106 +msgid "11xx: Write to delta modulation counter (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:780 src/engine/sysDef.cpp:1068 +msgid "12xx: Set duty cycle/noise mode (pulse: 0 to 3; noise: 0 or 1)" +msgstr "" + +#: src/engine/sysDef.cpp:781 src/engine/sysDef.cpp:2108 +msgid "13xy: Sweep up (x: time; y: shift)" +msgstr "" + +#: src/engine/sysDef.cpp:782 src/engine/sysDef.cpp:2109 +msgid "14xy: Sweep down (x: time; y: shift)" +msgstr "" + +#: src/engine/sysDef.cpp:783 src/engine/sysDef.cpp:2110 +msgid "" +"15xx: Set envelope mode (0: envelope, 1: length, 2: looping, 3: constant)" +msgstr "" + +#: src/engine/sysDef.cpp:784 src/engine/sysDef.cpp:2111 +msgid "16xx: Set length counter (refer to manual for a list of values)" +msgstr "" + +#: src/engine/sysDef.cpp:785 src/engine/sysDef.cpp:2112 +msgid "17xx: Set frame counter mode (0: 4-step, 1: 5-step)" +msgstr "" + +#: src/engine/sysDef.cpp:786 src/engine/sysDef.cpp:2113 +msgid "18xx: Select PCM/DPCM mode (0: PCM; 1: DPCM)" +msgstr "" + +#: src/engine/sysDef.cpp:787 src/engine/sysDef.cpp:2114 +msgid "19xx: Set triangle linear counter (0 to 7F; 80 and higher halt)" +msgstr "" + +#: src/engine/sysDef.cpp:788 src/engine/sysDef.cpp:2115 +msgid "20xx: Set DPCM frequency (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:793 +msgid "NES + Konami VRC7" +msgstr "" + +#: src/engine/sysDef.cpp:799 +msgid "Famicom Disk System" +msgstr "" + +#: src/engine/sysDef.cpp:805 +msgid "Commodore 64 (SID 6581)" +msgstr "" + +#: src/engine/sysDef.cpp:806 +msgid "" +"this computer is powered by the SID chip, which had synthesizer features " +"like a filter and ADSR." +msgstr "" + +#: src/engine/sysDef.cpp:817 +msgid "Commodore 64 (SID 8580)" +msgstr "" + +#: src/engine/sysDef.cpp:818 +msgid "" +"this computer is powered by the SID chip, which had synthesizer features " +"like a filter and ADSR.\n" +"this is the newer revision of the chip." +msgstr "" + +#: src/engine/sysDef.cpp:829 +msgid "DefleCade" +msgstr "" + +#: src/engine/sysDef.cpp:835 +msgid "Neo Geo CD" +msgstr "" + +#: src/engine/sysDef.cpp:836 +msgid "" +"like Neo Geo, but lacking the ADPCM-B channel since they couldn't connect " +"the pins." +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1173 +#: src/engine/sysDef.cpp:1185 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1443 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +#: src/engine/sysDef.cpp:2006 +msgid "FM 1" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:891 +#: src/engine/sysDef.cpp:903 src/engine/sysDef.cpp:1032 +#: src/engine/sysDef.cpp:1097 src/engine/sysDef.cpp:1109 +#: src/engine/sysDef.cpp:1122 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1546 +#: src/engine/sysDef.cpp:1559 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:1693 src/engine/sysDef.cpp:1849 +#: src/engine/sysDef.cpp:1861 src/engine/sysDef.cpp:2006 +msgid "FM 2" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1173 +#: src/engine/sysDef.cpp:1185 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1443 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:2006 +msgid "FM 3" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1546 +#: src/engine/sysDef.cpp:1559 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:1693 src/engine/sysDef.cpp:1849 +#: src/engine/sysDef.cpp:1861 src/engine/sysDef.cpp:2006 +msgid "FM 4" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:862 src/engine/sysDef.cpp:927 +#: src/engine/sysDef.cpp:943 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "PSG 1" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:862 src/engine/sysDef.cpp:927 +#: src/engine/sysDef.cpp:943 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "PSG 2" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:862 src/engine/sysDef.cpp:927 +#: src/engine/sysDef.cpp:943 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "PSG 3" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 1" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 2" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 3" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 4" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 5" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 6" +msgstr "" + +#: src/engine/sysDef.cpp:847 +msgid "Neo Geo CD Extended Channel 2" +msgstr "" + +#: src/engine/sysDef.cpp:848 +msgid "" +"like Neo Geo, but lacking the ADPCM-B channel since they couldn't connect " +"the pins.\n" +"this one is in Extended Channel mode, which turns the second FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP1" +msgstr "" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP2" +msgstr "" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP3" +msgstr "" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP4" +msgstr "" + +#: src/engine/sysDef.cpp:860 src/gui/sysConf.cpp:913 +msgid "AY-3-8910" +msgstr "" + +#: src/engine/sysDef.cpp:861 +msgid "" +"this chip is everywhere! ZX Spectrum, MSX, Amstrad CPC, Intellivision, " +"Vectrex...\n" +"the discovery of envelope bass helped it beat the SN76489 with ease." +msgstr "" + +#: src/engine/sysDef.cpp:872 +msgid "Amiga" +msgstr "" + +#: src/engine/sysDef.cpp:873 +msgid "" +"a computer from the '80s with full sampling capabilities, giving it a sound " +"ahead of its time." +msgstr "" + +#: src/engine/sysDef.cpp:881 +msgid "10xx: Toggle filter (0 disables; 1 enables)" +msgstr "" + +#: src/engine/sysDef.cpp:882 +msgid "11xx: Toggle AM with next channel" +msgstr "" + +#: src/engine/sysDef.cpp:883 +msgid "12xx: Toggle period modulation with next channel" +msgstr "" + +#: src/engine/sysDef.cpp:884 +msgid "13xx: Set waveform" +msgstr "" + +#: src/engine/sysDef.cpp:889 +msgid "Yamaha YM2151 (OPM)" +msgstr "" + +#: src/engine/sysDef.cpp:890 +msgid "" +"this was Yamaha's first integrated FM chip.\n" +"it was used in several synthesizers, computers and arcade boards." +msgstr "" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1279 src/engine/sysDef.cpp:1332 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1370 +#: src/engine/sysDef.cpp:1383 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +#: src/engine/sysDef.cpp:2006 +msgid "FM 5" +msgstr "" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:2006 +msgid "FM 6" +msgstr "" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:1032 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1279 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:2006 +msgid "FM 7" +msgstr "" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:1032 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:2006 +msgid "FM 8" +msgstr "" + +#: src/engine/sysDef.cpp:901 +msgid "Yamaha YM2612 (OPN2)" +msgstr "" + +#: src/engine/sysDef.cpp:902 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer)." +msgstr "" + +#: src/engine/sysDef.cpp:913 +msgid "Atari TIA" +msgstr "" + +#: src/engine/sysDef.cpp:914 +msgid "" +"it's a challenge to make music on this chip which barely has musical " +"capabilities..." +msgstr "" + +#: src/engine/sysDef.cpp:925 +msgid "Philips SAA1099" +msgstr "" + +#: src/engine/sysDef.cpp:926 +msgid "" +"supposedly an upgrade from the AY-3-8910, this was present on the Creative " +"Music System (Game Blaster) and SAM Coupé." +msgstr "" + +#: src/engine/sysDef.cpp:927 +msgid "PSG 4" +msgstr "" + +#: src/engine/sysDef.cpp:927 +msgid "PSG 5" +msgstr "" + +#: src/engine/sysDef.cpp:927 +msgid "PSG 6" +msgstr "" + +#: src/engine/sysDef.cpp:934 +msgid "10xy: Set channel mode (x: noise; y: tone)" +msgstr "" + +#: src/engine/sysDef.cpp:935 +msgid "11xx: Set noise frequency" +msgstr "" + +#: src/engine/sysDef.cpp:936 +msgid "12xx: Setup envelope (refer to docs for more information)" +msgstr "" + +#: src/engine/sysDef.cpp:941 +msgid "Microchip AY8930" +msgstr "" + +#: src/engine/sysDef.cpp:942 +msgid "" +"an improved version of the AY-3-8910 with a bigger frequency range, duty " +"cycles, configurable noise and per-channel envelopes!" +msgstr "" + +#: src/engine/sysDef.cpp:953 +msgid "Commodore VIC-20" +msgstr "" + +#: src/engine/sysDef.cpp:954 +msgid "" +"Commodore's successor to the PET.\n" +"its square wave channels are more than just square..." +msgstr "" + +#: src/engine/sysDef.cpp:955 src/gui/settings.cpp:136 src/gui/settings.cpp:206 +#: src/gui/settings.cpp:3970 +msgid "Low" +msgstr "" + +#: src/engine/sysDef.cpp:955 +msgid "Mid" +msgstr "" + +#: src/engine/sysDef.cpp:955 src/gui/settings.cpp:135 src/gui/settings.cpp:208 +#: src/gui/settings.cpp:3971 +msgid "High" +msgstr "" + +#: src/engine/sysDef.cpp:964 +msgid "Commodore PET" +msgstr "" + +#: src/engine/sysDef.cpp:965 +msgid "" +"one channel of 1-bit wavetable which is better (and worse) than the PC " +"Speaker." +msgstr "" + +#: src/engine/sysDef.cpp:966 src/engine/sysDef.cpp:1262 +#: src/engine/sysDef.cpp:2100 src/gui/editControls.cpp:433 +#: src/gui/settings.cpp:4017 src/gui/settings.cpp:4095 +msgid "Wave" +msgstr "" + +#: src/engine/sysDef.cpp:975 src/gui/settings.cpp:4052 +msgid "SNES" +msgstr "" + +#: src/engine/sysDef.cpp:976 +msgid "FM? nah... samples! Nintendo's answer to Sega." +msgstr "" + +#: src/engine/sysDef.cpp:983 +msgid "18xx: Enable echo buffer" +msgstr "" + +#: src/engine/sysDef.cpp:984 +msgid "19xx: Set echo delay (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:985 +msgid "1Axx: Set left echo volume" +msgstr "" + +#: src/engine/sysDef.cpp:986 +msgid "1Bxx: Set right echo volume" +msgstr "" + +#: src/engine/sysDef.cpp:987 +msgid "1Cxx: Set echo feedback" +msgstr "" + +#: src/engine/sysDef.cpp:988 +msgid "1Exx: Set dry output volume (left)" +msgstr "" + +#: src/engine/sysDef.cpp:989 +msgid "1Fxx: Set dry output volume (right)" +msgstr "" + +#: src/engine/sysDef.cpp:990 +msgid "30xx: Set echo filter coefficient 0" +msgstr "" + +#: src/engine/sysDef.cpp:991 +msgid "31xx: Set echo filter coefficient 1" +msgstr "" + +#: src/engine/sysDef.cpp:992 +msgid "32xx: Set echo filter coefficient 2" +msgstr "" + +#: src/engine/sysDef.cpp:993 +msgid "33xx: Set echo filter coefficient 3" +msgstr "" + +#: src/engine/sysDef.cpp:994 +msgid "34xx: Set echo filter coefficient 4" +msgstr "" + +#: src/engine/sysDef.cpp:995 +msgid "35xx: Set echo filter coefficient 5" +msgstr "" + +#: src/engine/sysDef.cpp:996 +msgid "36xx: Set echo filter coefficient 6" +msgstr "" + +#: src/engine/sysDef.cpp:997 +msgid "37xx: Set echo filter coefficient 7" +msgstr "" + +#: src/engine/sysDef.cpp:1002 +msgid "12xx: Toggle echo on this channel" +msgstr "" + +#: src/engine/sysDef.cpp:1003 +msgid "13xx: Toggle pitch modulation" +msgstr "" + +#: src/engine/sysDef.cpp:1004 +msgid "14xy: Toggle invert (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:1005 +msgid "" +"15xx: Set envelope mode (0: ADSR, 1: gain/direct, 2: dec, 3: exp, 4: inc, 5: " +"bent)" +msgstr "" + +#: src/engine/sysDef.cpp:1006 +msgid "16xx: Set gain (00 to 7F if direct; 00 to 1F otherwise)" +msgstr "" + +#: src/engine/sysDef.cpp:1007 +msgid "1Dxx: Set noise frequency (00 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:1008 +msgid "20xx: Set attack (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:1009 +msgid "21xx: Set decay (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1010 +msgid "22xx: Set sustain (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1011 +msgid "23xx: Set release (00 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:1016 +msgid "Konami VRC6" +msgstr "" + +#: src/engine/sysDef.cpp:1017 +msgid "an expansion chip for the Famicom, featuring a quirky sawtooth channel." +msgstr "" + +#: src/engine/sysDef.cpp:1018 +msgid "VRC6 1" +msgstr "" + +#: src/engine/sysDef.cpp:1018 +msgid "VRC6 2" +msgstr "" + +#: src/engine/sysDef.cpp:1018 +msgid "VRC6 Saw" +msgstr "" + +#: src/engine/sysDef.cpp:1024 src/engine/sysDef.cpp:2092 +msgid "12xx: Set duty cycle (pulse: 0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1030 +msgid "Yamaha YM2413 (OPLL)" +msgstr "" + +#: src/engine/sysDef.cpp:1031 +msgid "" +"cost-reduced version of the OPL with 16 patches and only one of them is user-" +"configurable." +msgstr "" + +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1173 +#: src/engine/sysDef.cpp:1185 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:2006 +msgid "FM 9" +msgstr "" + +#: src/engine/sysDef.cpp:1042 +msgid "Famicom Disk System (chip)" +msgstr "" + +#: src/engine/sysDef.cpp:1043 +msgid "a disk drive for the Famicom which also contains one wavetable channel." +msgstr "" + +#: src/engine/sysDef.cpp:1044 src/gui/settings.cpp:4039 +msgid "FDS" +msgstr "" + +#: src/engine/sysDef.cpp:1051 +msgid "11xx: Set modulation depth" +msgstr "" + +#: src/engine/sysDef.cpp:1052 +msgid "12xy: Set modulation speed high byte (x: enable; y: value)" +msgstr "" + +#: src/engine/sysDef.cpp:1053 +msgid "13xx: Set modulation speed low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1054 +msgid "14xx: Set modulator position" +msgstr "" + +#: src/engine/sysDef.cpp:1055 +msgid "15xx: Set modulator table to waveform" +msgstr "" + +#: src/engine/sysDef.cpp:1060 +msgid "MMC5" +msgstr "" + +#: src/engine/sysDef.cpp:1061 +msgid "" +"an expansion chip for the Famicom, featuring a little-known PCM channel." +msgstr "" + +#: src/engine/sysDef.cpp:1073 src/gui/settings.cpp:4041 +msgid "Namco 163" +msgstr "" + +#: src/engine/sysDef.cpp:1074 +msgid "an expansion chip for the Famicom, with full wavetable." +msgstr "" + +#: src/engine/sysDef.cpp:1081 +msgid "18xx: Change channel limits (0 to 7, x + 1)" +msgstr "" + +#: src/engine/sysDef.cpp:1082 +msgid "20xx: Load a waveform into memory" +msgstr "" + +#: src/engine/sysDef.cpp:1083 +msgid "21xx: Set position for wave load" +msgstr "" + +#: src/engine/sysDef.cpp:1086 +msgid "10xx: Select waveform" +msgstr "" + +#: src/engine/sysDef.cpp:1087 +msgid "11xx: Set waveform position in RAM" +msgstr "" + +#: src/engine/sysDef.cpp:1088 +msgid "12xx: Set waveform length in RAM (04 to FC in steps of 4)" +msgstr "" + +#: src/engine/sysDef.cpp:1089 +msgid "15xx: Set waveform load position" +msgstr "" + +#: src/engine/sysDef.cpp:1090 +msgid "16xx: Set waveform load length (04 to FC in steps of 4)" +msgstr "" + +#: src/engine/sysDef.cpp:1095 +msgid "Yamaha YM2203 (OPN)" +msgstr "" + +#: src/engine/sysDef.cpp:1096 +msgid "" +"cost-reduced version of the OPM with a different register layout and no " +"stereo...\n" +"...but it has a built-in AY-3-8910! (actually an YM2149)" +msgstr "" + +#: src/engine/sysDef.cpp:1107 +msgid "Yamaha YM2203 (OPN) Extended Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:1108 +msgid "" +"cost-reduced version of the OPM with a different register layout and no " +"stereo...\n" +"...but it has a built-in AY-3-8910! (actually an YM2149)\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies" +msgstr "" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP1" +msgstr "" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP2" +msgstr "" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP3" +msgstr "" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP4" +msgstr "" + +#: src/engine/sysDef.cpp:1120 +msgid "Yamaha YM2203 (OPN) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1121 +msgid "" +"cost-reduced version of the OPM with a different register layout and no " +"stereo...\n" +"...but it has a built-in AY-3-8910! (actually an YM2149)\n" +"CSM blah blah" +msgstr "" + +#: src/engine/sysDef.cpp:1122 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1383 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1559 src/engine/sysDef.cpp:1861 +msgid "CSM Timer" +msgstr "" + +#: src/engine/sysDef.cpp:1133 +msgid "Yamaha YM2608 (OPNA)" +msgstr "" + +#: src/engine/sysDef.cpp:1134 +msgid "" +"OPN but twice the FM channels, stereo makes a come-back and has rhythm and " +"ADPCM channels." +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1481 +#: src/gui/insEdit.cpp:3302 src/gui/insEdit.cpp:3624 +msgid "Kick" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:210 src/gui/insEdit.cpp:218 +msgid "Snare" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:212 src/gui/insEdit.cpp:220 +#: src/gui/insEdit.cpp:1909 src/gui/insEdit.cpp:2014 +msgid "Top" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:213 src/gui/insEdit.cpp:219 +msgid "HiHat" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:211 +msgid "Tom" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 +msgid "Rim" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:1693 +msgid "ADPCM" +msgstr "" + +#: src/engine/sysDef.cpp:1145 +msgid "Yamaha YM2608 (OPNA) Extended Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:1146 +msgid "" +"OPN but twice the FM channels, stereo makes a come-back and has rhythm and " +"ADPCM channels.\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies" +msgstr "" + +#: src/engine/sysDef.cpp:1158 +msgid "Yamaha YM2608 (OPNA) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1159 +msgid "" +"OPN but twice the FM channels, stereo makes a come-back and has rhythm and " +"ADPCM channels.\n" +"CSM blah blah" +msgstr "" + +#: src/engine/sysDef.cpp:1171 +msgid "Yamaha YM3526 (OPL)" +msgstr "" + +#: src/engine/sysDef.cpp:1172 +msgid "" +"OPN, but what if you only had two operators, no stereo, no detune and a " +"lower ADSR parameter range?" +msgstr "" + +#: src/engine/sysDef.cpp:1183 +msgid "Yamaha YM3812 (OPL2)" +msgstr "" + +#: src/engine/sysDef.cpp:1184 +msgid "OPL, but what if you had more waveforms to choose than the normal sine?" +msgstr "" + +#: src/engine/sysDef.cpp:1195 +msgid "Yamaha YMF262 (OPL3)" +msgstr "" + +#: src/engine/sysDef.cpp:1196 +msgid "" +"OPL2, but what if you had twice the channels, 4-op mode, stereo and even " +"more waveforms?" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 1" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 3" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 5" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 7" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 9" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 10" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 11" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 12" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 13" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 14" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 15" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:2006 +msgid "FM 16" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:2006 +msgid "FM 17" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:2006 +msgid "FM 18" +msgstr "" + +#: src/engine/sysDef.cpp:1208 src/gui/settings.cpp:4051 +msgid "MultiPCM" +msgstr "" + +#: src/engine/sysDef.cpp:1209 +msgid "" +"how many channels of PCM do you want?\n" +"MultiPCM: yes" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 17" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 18" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 19" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 20" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 21" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 22" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 23" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 24" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 25" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 26" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 27" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 28" +msgstr "" + +#: src/engine/sysDef.cpp:1217 +msgid "PC Speaker" +msgstr "" + +#: src/engine/sysDef.cpp:1218 +msgid "good luck! you get one square and no volume control." +msgstr "" + +#: src/engine/sysDef.cpp:1219 src/engine/sysDef.cpp:1228 +#: src/gui/guiConst.cpp:1394 src/gui/waveEdit.cpp:199 src/gui/insEdit.cpp:183 +#: src/gui/insEdit.cpp:194 src/gui/insEdit.cpp:326 src/gui/insEdit.cpp:656 +msgid "Square" +msgstr "" + +#: src/engine/sysDef.cpp:1226 +msgid "Pong" +msgstr "" + +#: src/engine/sysDef.cpp:1227 +msgid "please don't use this chip. it was added as a joke." +msgstr "" + +#: src/engine/sysDef.cpp:1235 src/gui/settings.cpp:4044 +msgid "POKEY" +msgstr "" + +#: src/engine/sysDef.cpp:1236 +msgid "" +"TIA, but better and more flexible.\n" +"used in the Atari 8-bit family of computers (400/800/XL/XE)." +msgstr "" + +#: src/engine/sysDef.cpp:1243 src/engine/sysDef.cpp:1714 +msgid "10xx: Set waveform (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1244 +msgid "11xx: Set AUDCTL" +msgstr "" + +#: src/engine/sysDef.cpp:1245 +msgid "12xx: Toggle two-tone mode" +msgstr "" + +#: src/engine/sysDef.cpp:1250 +msgid "Ricoh RF5C68" +msgstr "" + +#: src/engine/sysDef.cpp:1251 +msgid "" +"this is like SNES' sound chip but without interpolation and the rest of nice " +"bits." +msgstr "" + +#: src/engine/sysDef.cpp:1260 src/gui/settings.cpp:4046 +msgid "WonderSwan" +msgstr "" + +#: src/engine/sysDef.cpp:1261 +msgid "developed by the makers of the Game Boy and the Virtual Boy..." +msgstr "" + +#: src/engine/sysDef.cpp:1262 +msgid "Wave/PCM" +msgstr "" + +#: src/engine/sysDef.cpp:1262 +msgid "Wave/Sweep" +msgstr "" + +#: src/engine/sysDef.cpp:1262 +msgid "Wave/Noise" +msgstr "" + +#: src/engine/sysDef.cpp:1269 +msgid "11xx: Setup noise mode (0: disabled; 1-8: enabled/tap)" +msgstr "" + +#: src/engine/sysDef.cpp:1270 +msgid "12xx: Setup sweep period (0: disabled; 1-20: enabled/period)" +msgstr "" + +#: src/engine/sysDef.cpp:1271 +msgid "13xx: Set sweep amount" +msgstr "" + +#: src/engine/sysDef.cpp:1277 +msgid "Yamaha YM2414 (OPZ)" +msgstr "" + +#: src/engine/sysDef.cpp:1278 +msgid "" +"like OPM, but with more waveforms, fixed frequency mode and totally... " +"undocumented.\n" +"used in the Yamaha TX81Z and some other synthesizers." +msgstr "" + +#: src/engine/sysDef.cpp:1285 +msgid "2Fxx: Toggle hard envelope reset on new notes" +msgstr "" + +#: src/engine/sysDef.cpp:1291 src/gui/settings.cpp:4069 +msgid "Pokémon Mini" +msgstr "" + +#: src/engine/sysDef.cpp:1292 +msgid "this one is like PC Speaker but has duty cycles." +msgstr "" + +#: src/engine/sysDef.cpp:1293 src/gui/settings.cpp:4092 src/gui/waveEdit.cpp:33 +msgid "Pulse" +msgstr "" + +#: src/engine/sysDef.cpp:1300 +msgid "SegaPCM" +msgstr "" + +#: src/engine/sysDef.cpp:1301 +msgid "" +"used in some Sega arcade boards (like OutRun), and usually paired with a " +"YM2151." +msgstr "" + +#: src/engine/sysDef.cpp:1312 src/gui/settings.cpp:4040 +msgid "Virtual Boy" +msgstr "" + +#: src/engine/sysDef.cpp:1313 +msgid "" +"a console which failed to sell well due to its headache-inducing features." +msgstr "" + +#: src/engine/sysDef.cpp:1321 +msgid "11xx: Set noise length (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1322 +msgid "" +"12xy: Setup envelope (x: enabled/loop (1: enable, 3: enable+loop); y: speed/" +"direction (0-7: down, 8-F: up))" +msgstr "" + +#: src/engine/sysDef.cpp:1323 +msgid "13xy: Setup sweep (x: speed; y: shift; channel 5 only)" +msgstr "" + +#: src/engine/sysDef.cpp:1324 +msgid "" +"14xy: Setup modulation (x: enabled/loop (1: enable, 3: enable+loop); y: " +"speed; channel 5 only)" +msgstr "" + +#: src/engine/sysDef.cpp:1325 +msgid "15xx: Set modulation waveform (x: wavetable; channel 5 only)" +msgstr "" + +#: src/engine/sysDef.cpp:1330 +msgid "Konami VRC7" +msgstr "" + +#: src/engine/sysDef.cpp:1331 +msgid "" +"like OPLL, but even more cost reductions applied. three FM channels went " +"missing, and drums mode did as well..." +msgstr "" + +#: src/engine/sysDef.cpp:1342 +msgid "Yamaha YM2610B (OPNB2)" +msgstr "" + +#: src/engine/sysDef.cpp:1343 +msgid "" +"so Taito asked Yamaha if they could get the two missing FM channels back, " +"and Yamaha gladly provided them with this chip." +msgstr "" + +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/gui/settings.cpp:4061 +msgid "ADPCM-B" +msgstr "" + +#: src/engine/sysDef.cpp:1354 +msgid "ZX Spectrum Beeper" +msgstr "" + +#: src/engine/sysDef.cpp:1355 +msgid "" +"the ZX Spectrum only had a basic beeper capable of...\n" +"...a bunch of thin pulses and tons of other interesting stuff!\n" +"Furnace provides a thin pulse system." +msgstr "" + +#: src/engine/sysDef.cpp:1362 src/engine/sysDef.cpp:1950 +msgid "12xx: Set pulse width" +msgstr "" + +#: src/engine/sysDef.cpp:1363 +msgid "17xx: Trigger overlay drum" +msgstr "" + +#: src/engine/sysDef.cpp:1368 +msgid "Yamaha YM2612 (OPN2) Extended Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:1369 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:1381 +msgid "Yamaha YM2612 (OPN2) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1382 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this one includes CSM mode control for special effects on Channel 3." +msgstr "" + +#: src/engine/sysDef.cpp:1394 src/gui/settings.cpp:4042 +msgid "Konami SCC" +msgstr "" + +#: src/engine/sysDef.cpp:1395 +msgid "" +"a wavetable chip made by Konami for use with the MSX.\n" +"the last channel shares its wavetable with the previous one though." +msgstr "" + +#: src/engine/sysDef.cpp:1405 +msgid "Yamaha YM3526 (OPL) with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1406 +msgid "the OPL chip but with drums mode enabled." +msgstr "" + +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1693 +msgid "Kick/FM 7" +msgstr "" + +#: src/engine/sysDef.cpp:1417 +msgid "Yamaha YM3812 (OPL2) with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1418 +msgid "the OPL2 chip but with drums mode enabled." +msgstr "" + +#: src/engine/sysDef.cpp:1429 +msgid "Yamaha YMF262 (OPL3) with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1430 +msgid "the OPL3 chip but with drums mode enabled." +msgstr "" + +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1631 +msgid "Kick/FM 16" +msgstr "" + +#: src/engine/sysDef.cpp:1441 +msgid "Yamaha YM2610 (OPNB)" +msgstr "" + +#: src/engine/sysDef.cpp:1442 +msgid "" +"this chip was used in SNK's Neo Geo arcade board and video game console.\n" +"it's like OPNA but the rhythm channels are ADPCM channels and two FM " +"channels went missing." +msgstr "" + +#: src/engine/sysDef.cpp:1453 +msgid "Yamaha YM2610 (OPNB) Extended Channel 2" +msgstr "" + +#: src/engine/sysDef.cpp:1454 +msgid "" +"this chip was used in SNK's Neo Geo arcade board and video game console.\n" +"it's like OPNA but the rhythm channels are ADPCM channels and two FM " +"channels went missing.\n" +"this one is in Extended Channel mode, which turns the second FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:1466 +msgid "Yamaha YM2610 (OPNB) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1467 +msgid "" +"this chip was used in SNK's Neo Geo arcade board and video game console.\n" +"it's like OPNA but the rhythm channels are ADPCM channels and two FM " +"channels went missing.\n" +"this one includes CSM mode control for special effects on Channel 2." +msgstr "" + +#: src/engine/sysDef.cpp:1479 +msgid "Yamaha YM2413 (OPLL) with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1480 +msgid "the OPLL chips but with drums mode turned on." +msgstr "" + +#: src/engine/sysDef.cpp:1491 +msgid "3xxx: Load LFSR (0 to FFF)" +msgstr "" + +#: src/engine/sysDef.cpp:1497 +msgid "Atari Lynx" +msgstr "" + +#: src/engine/sysDef.cpp:1498 +msgid "" +"a portable console made by Atari. it has all of Atari's trademark waveforms." +msgstr "" + +#: src/engine/sysDef.cpp:1509 +msgid "10xx: Set echo feedback level (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1510 +msgid "11xx: Set channel echo level (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1511 +msgid "12xx: Toggle QSound algorithm (0: disabled; 1: enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:1513 +msgid "3xxx: Set echo delay buffer length (000 to AA5)" +msgstr "" + +#: src/engine/sysDef.cpp:1519 +msgid "Capcom QSound" +msgstr "" + +#: src/engine/sysDef.cpp:1520 +msgid "" +"used in some of Capcom's arcade boards. surround-like sampled sound with " +"echo." +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +#: src/engine/sysDef.cpp:2056 +msgid "PCM 1" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +#: src/engine/sysDef.cpp:2056 +msgid "PCM 2" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 3" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 4" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 5" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 6" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 7" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 8" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 9" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 10" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 11" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 12" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 13" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 14" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 15" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 16" +msgstr "" + +#: src/engine/sysDef.cpp:1521 +msgid "ADPCM 1" +msgstr "" + +#: src/engine/sysDef.cpp:1521 +msgid "ADPCM 2" +msgstr "" + +#: src/engine/sysDef.cpp:1521 +msgid "ADPCM 3" +msgstr "" + +#: src/engine/sysDef.cpp:1530 src/gui/settings.cpp:4048 +msgid "VERA" +msgstr "" + +#: src/engine/sysDef.cpp:1531 +msgid "the chip used in a computer design created by The 8-Bit Guy." +msgstr "" + +#: src/engine/sysDef.cpp:1538 +msgid "20xx: Set waveform" +msgstr "" + +#: src/engine/sysDef.cpp:1539 +msgid "22xx: Set duty cycle (0 to 3F)" +msgstr "" + +#: src/engine/sysDef.cpp:1544 +msgid "Yamaha YM2610B (OPNB2) Extended Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:1545 +msgid "" +"so Taito asked Yamaha if they could get the two missing FM channels back, " +"and Yamaha gladly provided them with this chip.\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:1557 +msgid "Yamaha YM2610B (OPNB2) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1558 +msgid "" +"so Taito asked Yamaha if they could get the two missing FM channels back, " +"and Yamaha gladly provided them with this chip.\n" +"CSM blah blah" +msgstr "" + +#: src/engine/sysDef.cpp:1570 +msgid "SegaPCM (compatible 5-channel mode)" +msgstr "" + +#: src/engine/sysDef.cpp:1571 +msgid "" +"this is the same thing as SegaPCM, but only exposes 5 of the channels for " +"compatibility with DefleMask." +msgstr "" + +#: src/engine/sysDef.cpp:1582 +msgid "Seta/Allumer X1-010" +msgstr "" + +#: src/engine/sysDef.cpp:1583 +msgid "" +"a sound chip used in several Seta/Allumer-manufactured arcade boards with " +"too many channels of wavetable sound, which also are capable of sampled " +"sound." +msgstr "" + +#: src/engine/sysDef.cpp:1591 +msgid "11xx: Set envelope shape" +msgstr "" + +#: src/engine/sysDef.cpp:1592 +msgid "12xx: Set sample bank slot (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1596 +msgid "20xx: Set PCM frequency (1 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1597 +msgid "" +"22xx: Set envelope mode (bit 0: enable; bit 1: one-shot; bit 2: split shape " +"to L/R; bit 3/5: H.invert right/left; bit 4/6: V.invert right/left)" +msgstr "" + +#: src/engine/sysDef.cpp:1598 +msgid "23xx: Set envelope period" +msgstr "" + +#: src/engine/sysDef.cpp:1606 +msgid "Konami Bubble System WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1607 +msgid "" +"this is the wavetable part of the Bubble System, which also had two " +"AY-3-8910s." +msgstr "" + +#: src/engine/sysDef.cpp:1619 +msgid "Yamaha YMF278B (OPL4)" +msgstr "" + +#: src/engine/sysDef.cpp:1620 +msgid "like OPL3, but this time it also has a 24-channel version of MultiPCM." +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 17" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 18" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 19" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 20" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 21" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 22" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 23" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 24" +msgstr "" + +#: src/engine/sysDef.cpp:1629 +msgid "Yamaha YMF278B (OPL4) with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1630 +msgid "the OPL4 but with drums mode turned on." +msgstr "" + +#: src/engine/sysDef.cpp:1638 +msgid "11xx: Set filter mode (00 to 03)" +msgstr "" + +#: src/engine/sysDef.cpp:1639 +msgid "14xx: Set filter coefficient K1 low byte (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1640 +msgid "15xx: Set filter coefficient K1 high byte (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1641 +msgid "16xx: Set filter coefficient K2 low byte (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1642 +msgid "17xx: Set filter coefficient K2 high byte (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1643 +msgid "18xx: Set filter coefficient K1 slide up (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1644 +msgid "19xx: Set filter coefficient K1 slide down (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1645 +msgid "1Axx: Set filter coefficient K2 slide up (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1646 +msgid "1Bxx: Set filter coefficient K2 slide down (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1647 +msgid "22xx: Set envelope left volume ramp (signed) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1648 +msgid "23xx: Set envelope right volume ramp (signed) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1649 +msgid "24xx: Set envelope filter coefficient k1 ramp (signed) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1650 +msgid "" +"25xx: Set envelope filter coefficient k1 ramp (signed, slower) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1651 +msgid "26xx: Set envelope filter coefficient k2 ramp (signed) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1652 +msgid "" +"27xx: Set envelope filter coefficient k2 ramp (signed, slower) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1656 +msgid "120x: Set pause (bit 0)" +msgstr "" + +#: src/engine/sysDef.cpp:1658 +msgid "2xxx: Set envelope count (000 to 1FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1659 +msgid "3xxx: Set filter coefficient K1 (000 to FFF)" +msgstr "" + +#: src/engine/sysDef.cpp:1660 +msgid "4xxx: Set filter coefficient K2 (000 to FFF)" +msgstr "" + +#: src/engine/sysDef.cpp:1667 +msgid "Ensoniq ES5506" +msgstr "" + +#: src/engine/sysDef.cpp:1668 +msgid "" +"a sample chip made by Ensoniq, which is the basis for the GF1 chip found in " +"Gravis' Ultrasound cards." +msgstr "" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 29" +msgstr "" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 30" +msgstr "" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 31" +msgstr "" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 32" +msgstr "" + +#: src/engine/sysDef.cpp:1679 +msgid "Yamaha Y8950" +msgstr "" + +#: src/engine/sysDef.cpp:1680 +msgid "like OPL but with an ADPCM channel." +msgstr "" + +#: src/engine/sysDef.cpp:1691 +msgid "Yamaha Y8950 with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1692 +msgid "the Y8950 chip, in drums mode." +msgstr "" + +#: src/engine/sysDef.cpp:1703 +msgid "Konami SCC+" +msgstr "" + +#: src/engine/sysDef.cpp:1704 +msgid "" +"this is a variant of Konami's SCC chip with the last channel's wavetable " +"being independent." +msgstr "" + +#: src/engine/sysDef.cpp:1715 +msgid "12xx: Set pulse width (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:1716 +msgid "13xx: Set resonance (0 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1717 +msgid "" +"14xx: Set filter mode (bit 0: ring mod; bit 1: low pass; bit 2: high pass; " +"bit 3: band pass)" +msgstr "" + +#: src/engine/sysDef.cpp:1718 +msgid "15xx: Set frequency sweep period low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1719 +msgid "16xx: Set frequency sweep period high byte" +msgstr "" + +#: src/engine/sysDef.cpp:1720 +msgid "17xx: Set volume sweep period low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1721 +msgid "18xx: Set volume sweep period high byte" +msgstr "" + +#: src/engine/sysDef.cpp:1722 +msgid "19xx: Set cutoff sweep period low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1723 +msgid "1Axx: Set cutoff sweep period high byte" +msgstr "" + +#: src/engine/sysDef.cpp:1724 +msgid "1Bxx: Set frequency sweep boundary" +msgstr "" + +#: src/engine/sysDef.cpp:1725 +msgid "1Cxx: Set volume sweep boundary" +msgstr "" + +#: src/engine/sysDef.cpp:1726 +msgid "1Dxx: Set cutoff sweep boundary" +msgstr "" + +#: src/engine/sysDef.cpp:1727 +msgid "1Exx: Set phase reset period low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1728 +msgid "1Fxx: Set phase reset period high byte" +msgstr "" + +#: src/engine/sysDef.cpp:1729 +msgid "20xx: Toggle frequency sweep (bit 0-6: speed; bit 7: direction is up)" +msgstr "" + +#: src/engine/sysDef.cpp:1730 +msgid "" +"21xx: Toggle volume sweep (bit 0-4: speed; bit 5: direction is up; bit 6: " +"loop; bit 7: alternate)" +msgstr "" + +#: src/engine/sysDef.cpp:1731 +msgid "22xx: Toggle cutoff sweep (bit 0-6: speed; bit 7: direction is up)" +msgstr "" + +#: src/engine/sysDef.cpp:1739 +msgid "tildearrow Sound Unit" +msgstr "" + +#: src/engine/sysDef.cpp:1740 +msgid "" +"tildearrow's fantasy sound chip. put SID, AY and VERA in a blender, and you " +"get this!" +msgstr "" + +#: src/engine/sysDef.cpp:1751 +msgid "OKI MSM6295" +msgstr "" + +#: src/engine/sysDef.cpp:1752 +msgid "an ADPCM sound chip manufactured by OKI and used in many arcade boards." +msgstr "" + +#: src/engine/sysDef.cpp:1759 +msgid "20xx: Set chip output rate (0: clock/132; 1: clock/165)" +msgstr "" + +#: src/engine/sysDef.cpp:1764 +msgid "OKI MSM6258" +msgstr "" + +#: src/engine/sysDef.cpp:1765 +msgid "an ADPCM sound chip manufactured by OKI and used in the Sharp X68000." +msgstr "" + +#: src/engine/sysDef.cpp:1766 src/engine/sysDef.cpp:1887 +#: src/gui/editControls.cpp:437 src/gui/settings.cpp:4223 +#: src/gui/guiConst.cpp:1397 src/gui/insEdit.cpp:2628 src/gui/insEdit.cpp:2666 +msgid "Sample" +msgstr "" + +#: src/engine/sysDef.cpp:1772 +msgid "20xx: Set frequency divider (0-2)" +msgstr "" + +#: src/engine/sysDef.cpp:1773 +msgid "21xx: Select clock rate (0: full; 1: half)" +msgstr "" + +#: src/engine/sysDef.cpp:1778 +msgid "Yamaha YMZ280B (PCMD8)" +msgstr "" + +#: src/engine/sysDef.cpp:1779 +msgid "" +"used in some arcade boards. Can play back either 4-bit ADPCM, 8-bit PCM or " +"16-bit PCM." +msgstr "" + +#: src/engine/sysDef.cpp:1797 src/gui/settings.cpp:4054 +msgid "Namco WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1798 +msgid "" +"a wavetable sound chip used in Pac-Man, among other early Namco arcade games." +msgstr "" + +#: src/engine/sysDef.cpp:1808 +msgid "Namco C15 WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1809 +msgid "" +"successor of the original Namco WSG chip, used in later Namco arcade games." +msgstr "" + +#: src/engine/sysDef.cpp:1819 +msgid "Namco C30 WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1820 +msgid "like Namco C15 but with stereo sound." +msgstr "" + +#: src/engine/sysDef.cpp:1830 +msgid "OKI MSM5232" +msgstr "" + +#: src/engine/sysDef.cpp:1831 +msgid "" +"a square wave additive synthesis chip made by OKI. used in some arcade " +"machines and instruments." +msgstr "" + +#: src/engine/sysDef.cpp:1839 +msgid "10xy: Set group control (x: sustain; y: part toggle bitmask)" +msgstr "" + +#: src/engine/sysDef.cpp:1840 src/engine/sysDef.cpp:1998 +msgid "11xx: Set noise mode" +msgstr "" + +#: src/engine/sysDef.cpp:1841 +msgid "12xx: Set group attack (0 to 5)" +msgstr "" + +#: src/engine/sysDef.cpp:1842 +msgid "13xx: Set group decay (0 to 11)" +msgstr "" + +#: src/engine/sysDef.cpp:1847 +msgid "Yamaha YM2612 (OPN2) with DualPCM" +msgstr "" + +#: src/engine/sysDef.cpp:1848 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this system uses software mixing to provide two sample channels." +msgstr "" + +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +msgid "FM 6/PCM 1" +msgstr "" + +#: src/engine/sysDef.cpp:1859 +msgid "Yamaha YM2612 (OPN2) Extended Channel 3 with DualPCM and CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1860 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this system uses software mixing to provide two sample channels.\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:1872 src/gui/settings.cpp:4024 +msgid "T6W28" +msgstr "" + +#: src/engine/sysDef.cpp:1873 +msgid "" +"an SN76489 derivative used in Neo Geo Pocket, has independent stereo volume " +"and noise channel frequency." +msgstr "" + +#: src/engine/sysDef.cpp:1880 +msgid "20xx: Set noise length (0: short, 1: long)" +msgstr "" + +#: src/engine/sysDef.cpp:1885 +msgid "Generic PCM DAC" +msgstr "" + +#: src/engine/sysDef.cpp:1886 +msgid "as generic sample playback as it gets." +msgstr "" + +#: src/engine/sysDef.cpp:1898 +msgid "Konami K007232" +msgstr "" + +#: src/engine/sysDef.cpp:1899 +msgid "this PCM chip was widely used at Konami arcade boards in 1986-1990." +msgstr "" + +#: src/engine/sysDef.cpp:1908 +msgid "Irem GA20" +msgstr "" + +#: src/engine/sysDef.cpp:1909 +msgid "" +"yet another PCM chip from Irem. like Amiga, but less pitch resolution and no " +"sample loop." +msgstr "" + +#: src/engine/sysDef.cpp:1918 +msgid "Sharp SM8521" +msgstr "" + +#: src/engine/sysDef.cpp:1919 +msgid "a SoC with wavetable sound hardware." +msgstr "" + +#: src/engine/sysDef.cpp:1929 +msgid "Casio PV-1000" +msgstr "" + +#: src/engine/sysDef.cpp:1930 +msgid "" +"a game console with 3 channels of square wave. it's what happens after " +"fusing TIA and VIC together." +msgstr "" + +#: src/engine/sysDef.cpp:1937 +msgid "10xx: Set ring modulation (0: disable, 1: enable)" +msgstr "" + +#: src/engine/sysDef.cpp:1942 +msgid "ZX Spectrum Beeper (QuadTone Engine)" +msgstr "" + +#: src/engine/sysDef.cpp:1943 +msgid "" +"another ZX Spectrum beeper system with full PWM pulses and 3-level volume " +"per channel. it also has a pitchable overlay sample channel." +msgstr "" + +#: src/engine/sysDef.cpp:1955 +msgid "Konami K053260" +msgstr "" + +#: src/engine/sysDef.cpp:1956 +msgid "this PCM chip was widely used at Konami arcade boards in 1990-1992." +msgstr "" + +#: src/engine/sysDef.cpp:1968 +msgid "MOS Technology TED" +msgstr "" + +#: src/engine/sysDef.cpp:1969 +msgid "" +"two square waves (one may be turned into noise). used in the Commodore " +"Plus/4, 16 and 116." +msgstr "" + +#: src/engine/sysDef.cpp:1978 +msgid "Namco C140" +msgstr "" + +#: src/engine/sysDef.cpp:1979 +msgid "Namco's first PCM chip from 1987. it's pretty good for being so." +msgstr "" + +#: src/engine/sysDef.cpp:1989 +msgid "Namco C219" +msgstr "" + +#: src/engine/sysDef.cpp:1990 +msgid "" +"Namco's PCM chip used in their NA-1/2 hardware.\n" +"very similar to C140, but has noise generator." +msgstr "" + +#: src/engine/sysDef.cpp:1999 +msgid "12xy: Set invert mode (x: surround; y: invert)" +msgstr "" + +#: src/engine/sysDef.cpp:2004 +msgid "ESS ES1xxx series (ESFM)" +msgstr "" + +#: src/engine/sysDef.cpp:2005 +msgid "" +"a unique FM synth featured in PC sound cards.\n" +"based on the OPL3 design, but with lots of its features extended." +msgstr "" + +#: src/engine/sysDef.cpp:2006 +msgid "FM 11" +msgstr "" + +#: src/engine/sysDef.cpp:2012 +msgid "2Exx: Toggle hard envelope reset on new notes" +msgstr "" + +#: src/engine/sysDef.cpp:2018 +msgid "PowerNoise" +msgstr "" + +#: src/engine/sysDef.cpp:2019 +msgid "" +"a fantasy sound chip designed by jvsTSX and The Beesh-Spweesh!\n" +"used in the Hexheld fantasy console." +msgstr "" + +#: src/engine/sysDef.cpp:2020 +msgid "Noise 1" +msgstr "" + +#: src/engine/sysDef.cpp:2020 +msgid "Noise 2" +msgstr "" + +#: src/engine/sysDef.cpp:2020 +msgid "Noise 3" +msgstr "" + +#: src/engine/sysDef.cpp:2020 +msgid "Slope" +msgstr "" + +#: src/engine/sysDef.cpp:2026 +msgid "" +"20xx: Load low byte of noise channel LFSR (00 to FF) or slope channel " +"accumulator (00 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:2027 +msgid "21xx: Load high byte of noise channel LFSR (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:2028 +msgid "22xx: Write to I/O port A" +msgstr "" + +#: src/engine/sysDef.cpp:2029 +msgid "23xx: Write to I/O port B" +msgstr "" + +#: src/engine/sysDef.cpp:2035 src/gui/settings.cpp:4079 +msgid "Dave" +msgstr "" + +#: src/engine/sysDef.cpp:2036 +msgid "" +"this chip was featured in the Enterprise 128 computer. it is similar to " +"POKEY, but with stereo output." +msgstr "" + +#: src/engine/sysDef.cpp:2037 +msgid "DAC Left" +msgstr "" + +#: src/engine/sysDef.cpp:2037 +msgid "DAC Right" +msgstr "" + +#: src/engine/sysDef.cpp:2043 +msgid "10xx: Set waveform (0 to 4; 0 to 3 on noise)" +msgstr "" + +#: src/engine/sysDef.cpp:2044 +msgid "11xx: Set noise frequency source (0: fixed; 1-3: channels 1 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:2045 +msgid "12xx: Toggle high-pass with next channel" +msgstr "" + +#: src/engine/sysDef.cpp:2046 +msgid "13xx: Toggle ring modulation with channel+2" +msgstr "" + +#: src/engine/sysDef.cpp:2047 +msgid "14xx: Toggle swap counters (noise only)" +msgstr "" + +#: src/engine/sysDef.cpp:2048 +msgid "15xx: Toggle low pass (noise only)" +msgstr "" + +#: src/engine/sysDef.cpp:2049 +msgid "16xx: Set clock divider (0: /2; 1: /3)" +msgstr "" + +#: src/engine/sysDef.cpp:2054 +msgid "Game Boy Advance DMA Sound" +msgstr "" + +#: src/engine/sysDef.cpp:2055 +msgid "" +"additional PCM FIFO channels in Game Boy Advance driven directly by its DMA " +"hardware." +msgstr "" + +#: src/engine/sysDef.cpp:2068 +msgid "Game Boy Advance MinMod" +msgstr "" + +#: src/engine/sysDef.cpp:2069 +msgid "" +"additional PCM FIFO channels in Game Boy Advance driven by software mixing " +"to provide up to sixteen sample channels" +msgstr "" + +#: src/engine/sysDef.cpp:2078 +msgid "11xy: Set echo channel (x: left/right source; y: delay (0 disables))" +msgstr "" + +#: src/engine/sysDef.cpp:2079 +msgid "12xy: Toggle invert (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:2084 src/gui/settings.cpp:4080 +msgid "Nintendo DS" +msgstr "" + +#: src/engine/sysDef.cpp:2085 +msgid "a handheld video game console with two screens. it uses a stylus." +msgstr "" + +#: src/engine/sysDef.cpp:2093 +msgid "1Fxx: Set global volume (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:2098 +msgid "5E01" +msgstr "" + +#: src/engine/sysDef.cpp:2099 +msgid "" +"a fantasy sound chip created by Euly. it is based on Ricoh 2A03, adding a " +"couple features such as 32 noise pitches, an extra duty cycle, and three " +"waveforms (besides triangle)." +msgstr "" + +#: src/engine/sysDef.cpp:2107 +msgid "" +"12xx: Set duty cycle/noise mode/waveform (pulse/wave: 0 to 3; noise: 0 or 1)" +msgstr "" + +#: src/engine/sysDef.cpp:2120 src/gui/settings.cpp:4083 +msgid "Bifurcator" +msgstr "" + +#: src/engine/sysDef.cpp:2121 +msgid "a fantasy sound chip using logistic map iterations to generate sound." +msgstr "" + +#: src/engine/sysDef.cpp:2128 +msgid "10xx: Load low byte of channel sample state" +msgstr "" + +#: src/engine/sysDef.cpp:2129 +msgid "11xx: Load high byte of channel sample state" +msgstr "" + +#: src/engine/sysDef.cpp:2130 +msgid "12xx: Set low byte of channel parameter" +msgstr "" + +#: src/engine/sysDef.cpp:2131 +msgid "13xx: Set high byte of channel parameter" +msgstr "" + +#: src/engine/sysDef.cpp:2136 src/gui/settings.cpp:4084 +msgid "SID2" +msgstr "" + +#: src/engine/sysDef.cpp:2137 +msgid "" +"a fantasy sound chip created by LTVA. it is similar to the SID chip, but " +"with many of its problems fixed." +msgstr "" + +#: src/engine/sysDef.cpp:2148 +msgid "Dummy System" +msgstr "" + +#: src/engine/sysDef.cpp:2149 +msgid "this is a system designed for testing purposes." +msgstr "" + +#: src/engine/engine.cpp:51 +msgid "00xy: Arpeggio" +msgstr "" + +#: src/engine/engine.cpp:53 +msgid "01xx: Pitch slide up" +msgstr "" + +#: src/engine/engine.cpp:55 +msgid "02xx: Pitch slide down" +msgstr "" + +#: src/engine/engine.cpp:57 +msgid "03xx: Portamento" +msgstr "" + +#: src/engine/engine.cpp:59 +msgid "04xy: Vibrato (x: speed; y: depth)" +msgstr "" + +#: src/engine/engine.cpp:61 +msgid "05xy: Volume slide + vibrato (compatibility only!)" +msgstr "" + +#: src/engine/engine.cpp:63 +msgid "06xy: Volume slide + portamento (compatibility only!)" +msgstr "" + +#: src/engine/engine.cpp:65 +msgid "07xy: Tremolo (x: speed; y: depth)" +msgstr "" + +#: src/engine/engine.cpp:67 +msgid "08xy: Set panning (x: left; y: right)" +msgstr "" + +#: src/engine/engine.cpp:69 +msgid "09xx: Set groove pattern (speed 1 if no grooves exist)" +msgstr "" + +#: src/engine/engine.cpp:71 +msgid "0Axy: Volume slide (0y: down; x0: up)" +msgstr "" + +#: src/engine/engine.cpp:73 +msgid "0Bxx: Jump to pattern" +msgstr "" + +#: src/engine/engine.cpp:75 +msgid "0Cxx: Retrigger" +msgstr "" + +#: src/engine/engine.cpp:77 +msgid "0Dxx: Jump to next pattern" +msgstr "" + +#: src/engine/engine.cpp:79 +msgid "0Fxx: Set speed (speed 2 if no grooves exist)" +msgstr "" + +#: src/engine/engine.cpp:81 +msgid "80xx: Set panning (00: left; 80: center; FF: right)" +msgstr "" + +#: src/engine/engine.cpp:83 +msgid "81xx: Set panning (left channel)" +msgstr "" + +#: src/engine/engine.cpp:85 +msgid "82xx: Set panning (right channel)" +msgstr "" + +#: src/engine/engine.cpp:87 +msgid "88xy: Set panning (rear channels; x: left; y: right)" +msgstr "" + +#: src/engine/engine.cpp:90 +msgid "89xx: Set panning (rear left channel)" +msgstr "" + +#: src/engine/engine.cpp:93 +msgid "8Axx: Set panning (rear right channel)" +msgstr "" + +#: src/engine/engine.cpp:96 +msgid "Cxxx: Set tick rate (hz)" +msgstr "" + +#: src/engine/engine.cpp:98 +msgid "E0xx: Set arp speed" +msgstr "" + +#: src/engine/engine.cpp:100 +msgid "E1xy: Note slide up (x: speed; y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:102 +msgid "E2xy: Note slide down (x: speed; y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:104 +msgid "E3xx: Set vibrato shape (0: up/down; 1: up only; 2: down only)" +msgstr "" + +#: src/engine/engine.cpp:106 +msgid "E4xx: Set vibrato range" +msgstr "" + +#: src/engine/engine.cpp:108 +msgid "E5xx: Set pitch (80: center)" +msgstr "" + +#: src/engine/engine.cpp:110 +msgid "E6xy: Quick legato (x: time (0-7 up; 8-F down); y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:112 +msgid "E7xx: Macro release" +msgstr "" + +#: src/engine/engine.cpp:114 +msgid "E8xy: Quick legato up (x: time; y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:116 +msgid "E9xy: Quick legato down (x: time; y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:118 +msgid "EAxx: Legato" +msgstr "" + +#: src/engine/engine.cpp:120 +msgid "EBxx: Set LEGACY sample mode bank" +msgstr "" + +#: src/engine/engine.cpp:122 +msgid "ECxx: Note cut" +msgstr "" + +#: src/engine/engine.cpp:124 +msgid "EDxx: Note delay" +msgstr "" + +#: src/engine/engine.cpp:126 +msgid "EExx: Send external command" +msgstr "" + +#: src/engine/engine.cpp:128 +msgid "F0xx: Set tick rate (bpm)" +msgstr "" + +#: src/engine/engine.cpp:130 +msgid "F1xx: Single tick note slide up" +msgstr "" + +#: src/engine/engine.cpp:132 +msgid "F2xx: Single tick note slide down" +msgstr "" + +#: src/engine/engine.cpp:134 +msgid "F3xx: Fine volume slide up" +msgstr "" + +#: src/engine/engine.cpp:136 +msgid "F4xx: Fine volume slide down" +msgstr "" + +#: src/engine/engine.cpp:138 +msgid "F5xx: Disable macro (see manual)" +msgstr "" + +#: src/engine/engine.cpp:140 +msgid "F6xx: Enable macro (see manual)" +msgstr "" + +#: src/engine/engine.cpp:142 +msgid "F7xx: Restart macro (see manual)" +msgstr "" + +#: src/engine/engine.cpp:144 +msgid "F8xx: Single tick volume slide up" +msgstr "" + +#: src/engine/engine.cpp:146 +msgid "F9xx: Single tick volume slide down" +msgstr "" + +#: src/engine/engine.cpp:148 +msgid "FAxx: Fast volume slide (0y: down; x0: up)" +msgstr "" + +#: src/engine/engine.cpp:150 +msgid "FCxx: Note release" +msgstr "" + +#: src/engine/engine.cpp:152 +msgid "FDxx: Set virtual tempo numerator" +msgstr "" + +#: src/engine/engine.cpp:154 +msgid "FExx: Set virtual tempo denominator" +msgstr "" + +#: src/engine/engine.cpp:156 +msgid "FFxx: Stop song" +msgstr "" + +#: src/engine/engine.cpp:160 +msgid "9xxx: Set sample offset*256" +msgstr "" + +#: src/engine/engine.cpp:164 +msgid "90xx: Set sample offset (first byte)" +msgstr "" + +#: src/engine/engine.cpp:166 +msgid "91xx: Set sample offset (second byte, ×256)" +msgstr "" + +#: src/engine/engine.cpp:168 +msgid "92xx: Set sample offset (third byte, ×65536)" +msgstr "" + +#: src/engine/engine.cpp:187 src/gui/settings.cpp:4127 +msgid "Invalid effect" +msgstr "" + +#: src/engine/engine.cpp:354 src/gui/gui.cpp:2259 src/gui/gui.cpp:2422 +#, c-format +msgid "on seek: %s" +msgstr "" + +#: src/engine/engine.cpp:361 src/gui/gui.cpp:2266 src/gui/gui.cpp:2429 +#, c-format +msgid "on pre tell: %s" +msgstr "" + +#: src/engine/engine.cpp:368 src/engine/engine.cpp:2768 +#: src/gui/settings.cpp:5811 src/gui/gui.cpp:2273 src/gui/gui.cpp:2436 +msgid "file is empty" +msgstr "" + +#: src/engine/engine.cpp:371 src/gui/gui.cpp:2276 src/gui/gui.cpp:2439 +#, c-format +msgid "on tell: %s" +msgstr "" + +#: src/engine/engine.cpp:378 +#, c-format +msgid "ROM size mismatch, expected: %d bytes, was: %d" +msgstr "" + +#: src/engine/engine.cpp:383 src/gui/settings.cpp:5820 src/gui/gui.cpp:2283 +#: src/gui/gui.cpp:2446 +#, c-format +msgid "on get size: %s" +msgstr "" + +#: src/engine/engine.cpp:390 src/gui/settings.cpp:5827 src/gui/gui.cpp:2290 +#: src/gui/gui.cpp:2453 +#, c-format +msgid "on read: %s" +msgstr "" + +#: src/engine/engine.cpp:1076 src/engine/engine.cpp:1181 +#: src/engine/engine.cpp:1290 +msgid "invalid index" +msgstr "" + +#: src/engine/engine.cpp:1080 src/engine/engine.cpp:1135 +#: src/engine/engine.cpp:1189 +#, c-format +msgid "max number of total channels is %d" +msgstr "" + +#: src/engine/engine.cpp:1131 src/engine/engine.cpp:1185 +#, c-format +msgid "max number of systems is %d" +msgstr "" + +#: src/engine/engine.cpp:1286 +msgid "cannot remove the last one" +msgstr "" + +#: src/engine/engine.cpp:1460 +msgid "source and destination are equal" +msgstr "" + +#: src/engine/engine.cpp:1464 +msgid "invalid source index" +msgstr "" + +#: src/engine/engine.cpp:1468 +msgid "invalid destination index" +msgstr "" + +#: src/engine/engine.cpp:2636 +#, c-format +msgid "Instrument %d" +msgstr "" + +#: src/engine/engine.cpp:2710 src/engine/engine.cpp:2727 +#: src/gui/doAction.cpp:825 src/gui/doAction.cpp:843 src/gui/doAction.cpp:1634 +#: src/gui/gui.cpp:6159 src/gui/insEdit.cpp:6860 +msgid "too many wavetables!" +msgstr "" + +#: src/engine/engine.cpp:2752 +#, c-format +msgid "could not seek to end: %s" +msgstr "" + +#: src/engine/engine.cpp:2758 +#, c-format +msgid "could not determine file size: %s" +msgstr "" + +#: src/engine/engine.cpp:2763 +msgid "file size is invalid!" +msgstr "" + +#: src/engine/engine.cpp:2773 +#, c-format +msgid "could not seek to beginning: %s" +msgstr "" + +#: src/engine/engine.cpp:2780 +#, c-format +msgid "could not read entire file: %s" +msgstr "" + +#: src/engine/engine.cpp:2806 +msgid "invalid wavetable header/data!" +msgstr "" + +#: src/engine/engine.cpp:2877 +msgid "premature end of file" +msgstr "" + +#: src/engine/engine.cpp:2904 src/engine/engine.cpp:2926 +#: src/gui/doAction.cpp:909 src/gui/doAction.cpp:921 +msgid "too many samples!" +msgstr "" + +#: src/engine/engine.cpp:2911 +#, c-format +msgid "Sample %d" +msgstr "" + +#: src/engine/engine.cpp:3056 +#, c-format +msgid "no free patterns in channel %d!" +msgstr "" + +#: src/gui/mixer.cpp:28 src/gui/insEdit.cpp:484 +msgid "left" +msgstr "" + +#: src/gui/mixer.cpp:29 src/gui/insEdit.cpp:483 +msgid "right" +msgstr "" + +#: src/gui/mixer.cpp:128 +msgid "input" +msgstr "" + +#: src/gui/mixer.cpp:168 +msgid "output" +msgstr "" + +#: src/gui/mixer.cpp:226 src/gui/mixer.cpp:228 src/gui/editControls.cpp:454 +#: src/gui/guiConst.cpp:593 +msgid "Mixer" +msgstr "" + +#: src/gui/mixer.cpp:229 +msgid "Master Volume" +msgstr "" + +#: src/gui/mixer.cpp:250 src/gui/exportOptions.cpp:90 +#: src/gui/userPresets.cpp:393 src/gui/userPresets.cpp:405 +#: src/gui/settings.cpp:1080 src/gui/settings.cpp:1094 +#: src/gui/waveEdit.cpp:1096 src/gui/sampleEdit.cpp:1128 +#: src/gui/insEdit.cpp:519 +msgid "Invert" +msgstr "" + +#: src/gui/mixer.cpp:268 src/gui/chanOsc.cpp:37 src/gui/userPresets.cpp:417 +#: src/gui/settings.cpp:263 src/gui/settings.cpp:1109 src/gui/settings.cpp:1492 +#: src/gui/settings.cpp:1504 src/gui/settings.cpp:3369 +#: src/gui/settings.cpp:4015 src/gui/findReplace.cpp:687 +#: src/gui/findReplace.cpp:943 src/gui/guiConst.cpp:228 +#: src/gui/sampleEdit.cpp:1003 src/gui/insEdit.cpp:5575 +#: src/gui/insEdit.cpp:5660 src/gui/insEdit.cpp:6920 src/gui/insEdit.cpp:6928 +#: src/gui/insEdit.cpp:6936 src/gui/insEdit.cpp:6946 src/gui/insEdit.cpp:6961 +#: src/gui/insEdit.cpp:6975 src/gui/insEdit.cpp:6987 src/gui/insEdit.cpp:7000 +#: src/gui/insEdit.cpp:7016 src/gui/insEdit.cpp:7022 src/gui/insEdit.cpp:7032 +#: src/gui/insEdit.cpp:7039 src/gui/insEdit.cpp:7045 src/gui/insEdit.cpp:7058 +#: src/gui/insEdit.cpp:7065 src/gui/insEdit.cpp:7072 src/gui/insEdit.cpp:7081 +#: src/gui/insEdit.cpp:7091 src/gui/insEdit.cpp:7099 src/gui/insEdit.cpp:7105 +#: src/gui/insEdit.cpp:7113 src/gui/insEdit.cpp:7120 src/gui/insEdit.cpp:7126 +#: src/gui/insEdit.cpp:7136 src/gui/insEdit.cpp:7148 src/gui/insEdit.cpp:7156 +#: src/gui/insEdit.cpp:7172 src/gui/insEdit.cpp:7177 src/gui/insEdit.cpp:7190 +#: src/gui/insEdit.cpp:7197 src/gui/insEdit.cpp:7208 src/gui/insEdit.cpp:7221 +#: src/gui/insEdit.cpp:7230 src/gui/insEdit.cpp:7237 src/gui/insEdit.cpp:7245 +#: src/gui/insEdit.cpp:7258 src/gui/insEdit.cpp:7263 src/gui/insEdit.cpp:7269 +#: src/gui/insEdit.cpp:7276 src/gui/insEdit.cpp:7284 src/gui/insEdit.cpp:7295 +#: src/gui/insEdit.cpp:7302 src/gui/insEdit.cpp:7310 src/gui/insEdit.cpp:7318 +#: src/gui/insEdit.cpp:7327 src/gui/insEdit.cpp:7335 src/gui/insEdit.cpp:7341 +#: src/gui/insEdit.cpp:7347 src/gui/insEdit.cpp:7353 src/gui/insEdit.cpp:7358 +#: src/gui/insEdit.cpp:7365 src/gui/insEdit.cpp:7372 src/gui/insEdit.cpp:7380 +#: src/gui/insEdit.cpp:7389 src/gui/insEdit.cpp:7397 src/gui/insEdit.cpp:7409 +#: src/gui/insEdit.cpp:7422 src/gui/insEdit.cpp:7433 src/gui/insEdit.cpp:7443 +#: src/gui/insEdit.cpp:7451 src/gui/insEdit.cpp:7461 src/gui/insEdit.cpp:7470 +msgid "Volume" +msgstr "" + +#: src/gui/mixer.cpp:279 src/gui/userPresets.cpp:427 src/gui/settings.cpp:1120 +#: src/gui/guiConst.cpp:229 src/gui/insEdit.cpp:6923 src/gui/insEdit.cpp:6930 +#: src/gui/insEdit.cpp:6941 src/gui/insEdit.cpp:6965 src/gui/insEdit.cpp:7067 +#: src/gui/insEdit.cpp:7108 src/gui/insEdit.cpp:7152 src/gui/insEdit.cpp:7192 +#: src/gui/insEdit.cpp:7212 src/gui/insEdit.cpp:7232 src/gui/insEdit.cpp:7240 +#: src/gui/insEdit.cpp:7253 src/gui/insEdit.cpp:7265 src/gui/insEdit.cpp:7271 +#: src/gui/insEdit.cpp:7287 src/gui/insEdit.cpp:7297 src/gui/insEdit.cpp:7360 +#: src/gui/insEdit.cpp:7392 src/gui/insEdit.cpp:7438 src/gui/insEdit.cpp:7446 +msgid "Panning" +msgstr "" + +#: src/gui/mixer.cpp:290 src/gui/userPresets.cpp:433 src/gui/settings.cpp:1127 +msgid "Front/Rear" +msgstr "" + +#: src/gui/mixer.cpp:299 src/gui/settings.cpp:4208 +msgid "Patchbay" +msgstr "" + +#: src/gui/mixer.cpp:305 +msgid "Automatic patchbay" +msgstr "" + +#: src/gui/mixer.cpp:310 +msgid "Display hidden ports" +msgstr "" + +#: src/gui/mixer.cpp:312 +msgid "Display internal" +msgstr "" + +#: src/gui/mixer.cpp:322 src/gui/mixer.cpp:383 src/gui/settings.cpp:1901 +#: src/gui/settings.cpp:2089 src/gui/songInfo.cpp:69 +msgid "System" +msgstr "" + +#: src/gui/mixer.cpp:354 +msgid "Sample Preview" +msgstr "" + +#: src/gui/mixer.cpp:367 src/gui/editControls.cpp:745 +#: src/gui/editControls.cpp:837 src/gui/editControls.cpp:953 +#: src/gui/editControls.cpp:1093 src/gui/settings.cpp:1490 +#: src/gui/guiConst.cpp:558 +msgid "Metronome" +msgstr "" + +#: src/gui/mixer.cpp:446 +msgid "disconnect all" +msgstr "" + +#: src/gui/editing.cpp:200 +#, c-format +msgid "no data in oldPatMap for channel %d!" +msgstr "" + +#: src/gui/editing.cpp:664 src/gui/editing.cpp:1203 +#, c-format +msgid "invalid clipboard data! failed at line %d char %d" +msgstr "" + +#: src/gui/editing.cpp:1565 src/gui/editing.cpp:1669 +msgid "can't collapse any further!" +msgstr "" + +#: src/gui/editing.cpp:1749 +msgid "can't expand any further!" +msgstr "" + +#: src/gui/editing.cpp:1836 src/gui/editing.cpp:1851 +#, c-format +msgid "copy: %s" +msgstr "" + +#: src/gui/memory.cpp:35 src/gui/settings.cpp:3696 src/gui/settings.cpp:4217 +#: src/gui/guiConst.cpp:613 +msgid "Memory Composition" +msgstr "" + +#: src/gui/memory.cpp:146 +#, c-format +msgid "bank %d" +msgstr "" + +#: src/gui/memory.cpp:175 src/gui/memory.cpp:176 +msgid "no chips with memory" +msgstr "" + +#: src/gui/intro.cpp:89 src/gui/gui.cpp:2345 src/gui/gui.cpp:3746 +#: src/gui/gui.cpp:5019 src/gui/gui.cpp:5041 src/gui/gui.cpp:5479 +#: src/gui/gui.cpp:5781 src/gui/gui.cpp:5791 +#, c-format +msgid "Error while loading file! (%s)" +msgstr "" + +#: src/gui/intro.cpp:122 +msgid "IntroMon X" +msgstr "" + +#: src/gui/intro.cpp:122 +msgid "Intro" +msgstr "" + +#: src/gui/intro.cpp:124 +msgid "Preview" +msgstr "" + +#: src/gui/intro.cpp:176 src/gui/intro.cpp:177 src/gui/intro.cpp:178 +msgid "SORRY NOTHING" +msgstr "" + +#: src/gui/intro.cpp:310 +msgid "hold to skip" +msgstr "" + +#: src/gui/dataList.cpp:76 +msgid "Bug!" +msgstr "" + +#: src/gui/dataList.cpp:79 src/gui/util.cpp:107 src/gui/util.cpp:109 +#: src/gui/settings.cpp:4220 src/gui/insEdit.cpp:5334 +msgid "Unknown" +msgstr "" + +#: src/gui/dataList.cpp:136 src/gui/dataList.cpp:260 +msgid "duplicate" +msgstr "" + +#: src/gui/dataList.cpp:139 src/gui/dataList.cpp:263 src/gui/dataList.cpp:388 +#: src/gui/dataList.cpp:731 src/gui/dataList.cpp:867 +msgid "replace..." +msgstr "" + +#: src/gui/dataList.cpp:142 src/gui/dataList.cpp:266 src/gui/gui.cpp:4232 +msgid "save" +msgstr "" + +#: src/gui/dataList.cpp:145 +msgid "save (.dmp)" +msgstr "" + +#: src/gui/dataList.cpp:148 src/gui/dataList.cpp:269 src/gui/dataList.cpp:617 +#: src/gui/dataList.cpp:994 src/gui/dataList.cpp:1040 +#: src/gui/editControls.cpp:50 src/gui/gui.cpp:2767 src/gui/gui.cpp:2776 +msgid "delete" +msgstr "" + +#: src/gui/dataList.cpp:243 +msgid "out of memory for this sample!" +msgstr "" + +#: src/gui/dataList.cpp:254 +msgid "make instrument" +msgstr "" + +#: src/gui/dataList.cpp:257 +msgid "make me a drum kit" +msgstr "" + +#: src/gui/dataList.cpp:290 src/gui/dataList.cpp:593 src/gui/gui.cpp:5914 +msgid "Instruments" +msgstr "" + +#: src/gui/dataList.cpp:312 src/gui/dataList.cpp:714 src/gui/dataList.cpp:846 +#: src/gui/subSongs.cpp:88 src/gui/insEdit.cpp:520 +msgid "Add" +msgstr "" + +#: src/gui/dataList.cpp:338 src/gui/dataList.cpp:721 src/gui/dataList.cpp:853 +#: src/gui/subSongs.cpp:108 +msgid "Duplicate" +msgstr "" + +#: src/gui/dataList.cpp:359 src/gui/dataList.cpp:728 src/gui/dataList.cpp:860 +#: src/gui/editControls.cpp:497 src/gui/waveEdit.cpp:435 +#: src/gui/waveEdit.cpp:467 src/gui/sampleEdit.cpp:122 +#: src/gui/sampleEdit.cpp:171 src/gui/insEdit.cpp:5239 src/gui/insEdit.cpp:5304 +msgid "Open" +msgstr "" + +#: src/gui/dataList.cpp:363 +msgid "replace instrument..." +msgstr "" + +#: src/gui/dataList.cpp:366 +msgid "load instrument from TX81Z" +msgstr "" + +#: src/gui/dataList.cpp:372 +msgid "replace wavetable..." +msgstr "" + +#: src/gui/dataList.cpp:378 +msgid "replace sample..." +msgstr "" + +#: src/gui/dataList.cpp:381 +msgid "import raw sample..." +msgstr "" + +#: src/gui/dataList.cpp:384 +msgid "import raw sample (replace)..." +msgstr "" + +#: src/gui/dataList.cpp:392 +msgid "load from TX81Z" +msgstr "" + +#: src/gui/dataList.cpp:399 +msgid "Open (insert; right-click to replace)" +msgstr "" + +#: src/gui/dataList.cpp:420 src/gui/dataList.cpp:741 src/gui/dataList.cpp:884 +#: src/gui/editControls.cpp:502 src/gui/waveEdit.cpp:474 +#: src/gui/sampleEdit.cpp:184 src/gui/insEdit.cpp:5311 +msgid "Save" +msgstr "" + +#: src/gui/dataList.cpp:424 +msgid "save instrument as .dmp..." +msgstr "" + +#: src/gui/dataList.cpp:430 +msgid "save wavetable as .dmw..." +msgstr "" + +#: src/gui/dataList.cpp:433 +msgid "save raw wavetable..." +msgstr "" + +#: src/gui/dataList.cpp:439 +msgid "save raw sample..." +msgstr "" + +#: src/gui/dataList.cpp:443 src/gui/insEdit.cpp:5314 +msgid "save as .dmp..." +msgstr "" + +#: src/gui/dataList.cpp:456 src/gui/dataList.cpp:761 src/gui/dataList.cpp:903 +msgid "Toggle folders/standard view" +msgstr "" + +#: src/gui/dataList.cpp:478 src/gui/dataList.cpp:769 src/gui/dataList.cpp:911 +#: src/gui/subSongs.cpp:55 +msgid "Move up" +msgstr "" + +#: src/gui/dataList.cpp:499 src/gui/dataList.cpp:776 src/gui/dataList.cpp:918 +#: src/gui/subSongs.cpp:62 +msgid "Move down" +msgstr "" + +#: src/gui/dataList.cpp:510 src/gui/dataList.cpp:787 src/gui/dataList.cpp:929 +msgid "Create" +msgstr "" + +#: src/gui/dataList.cpp:540 src/gui/dataList.cpp:797 src/gui/dataList.cpp:939 +msgid "New folder" +msgstr "" + +#: src/gui/dataList.cpp:549 src/gui/dataList.cpp:947 +msgid "Preview (right click to stop)" +msgstr "" + +#: src/gui/dataList.cpp:576 src/gui/dataList.cpp:807 src/gui/dataList.cpp:959 +#: src/gui/guiConst.cpp:666 src/gui/sampleEdit.cpp:1105 +msgid "Delete" +msgstr "" + +#: src/gui/dataList.cpp:608 src/gui/dataList.cpp:985 src/gui/dataList.cpp:1031 +msgid "" +msgstr "" + +#: src/gui/dataList.cpp:614 src/gui/dataList.cpp:991 src/gui/dataList.cpp:1037 +msgid "rename..." +msgstr "" + +#: src/gui/dataList.cpp:663 src/gui/dataList.cpp:707 src/gui/gui.cpp:5923 +msgid "Wavetables" +msgstr "" + +#: src/gui/dataList.cpp:674 src/gui/dataList.cpp:839 src/gui/xyOsc.cpp:68 +#: src/gui/sampleEdit.cpp:898 src/gui/sampleEdit.cpp:1072 src/gui/gui.cpp:5932 +msgid "Samples" +msgstr "" + +#: src/gui/dataList.cpp:745 src/gui/waveEdit.cpp:477 +msgid "save as .dmw..." +msgstr "" + +#: src/gui/dataList.cpp:748 src/gui/dataList.cpp:891 src/gui/waveEdit.cpp:480 +#: src/gui/sampleEdit.cpp:187 +msgid "save raw..." +msgstr "" + +#: src/gui/dataList.cpp:871 src/gui/sampleEdit.cpp:174 +msgid "import raw..." +msgstr "" + +#: src/gui/dataList.cpp:874 +msgid "import raw (replace)..." +msgstr "" + +#: src/gui/exportOptions.cpp:29 +msgid "Export type:" +msgstr "" + +#: src/gui/exportOptions.cpp:32 +msgid "one file" +msgstr "" + +#: src/gui/exportOptions.cpp:35 +msgid "multiple files (one per chip)" +msgstr "" + +#: src/gui/exportOptions.cpp:38 +msgid "multiple files (one per channel)" +msgstr "" + +#: src/gui/exportOptions.cpp:44 +msgid "Bit depth:" +msgstr "" + +#: src/gui/exportOptions.cpp:46 +msgid "16-bit integer" +msgstr "" + +#: src/gui/exportOptions.cpp:49 +msgid "32-bit float" +msgstr "" + +#: src/gui/exportOptions.cpp:55 src/gui/settings.cpp:1352 src/gui/gui.cpp:6270 +msgid "Sample rate" +msgstr "" + +#: src/gui/exportOptions.cpp:61 +msgid "Channels in file" +msgstr "" + +#: src/gui/exportOptions.cpp:67 src/gui/settings.cpp:930 +msgid "Loops" +msgstr "" + +#: src/gui/exportOptions.cpp:70 src/gui/settings.cpp:935 +msgid "Fade out (seconds)" +msgstr "" + +#: src/gui/exportOptions.cpp:76 +msgid "Channels to export:" +msgstr "" + +#: src/gui/exportOptions.cpp:78 src/gui/effectList.cpp:32 src/gui/gui.cpp:6186 +msgid "All" +msgstr "" + +#: src/gui/exportOptions.cpp:84 src/gui/sysConf.cpp:1870 +#: src/gui/effectList.cpp:34 src/gui/compatFlags.cpp:219 +#: src/gui/waveEdit.cpp:37 src/gui/gui.cpp:6192 src/gui/insEdit.cpp:518 +msgid "None" +msgstr "" + +#: src/gui/exportOptions.cpp:110 src/gui/exportOptions.cpp:214 +#: src/gui/exportOptions.cpp:225 src/gui/exportOptions.cpp:243 +#: src/gui/exportOptions.cpp:266 src/gui/exportOptions.cpp:297 +#: src/gui/exportOptions.cpp:318 src/gui/exportOptions.cpp:341 +#: src/gui/commandPalette.cpp:199 src/gui/settings.cpp:6673 +#: src/gui/newSong.cpp:273 src/gui/gui.cpp:5669 src/gui/gui.cpp:5693 +#: src/gui/gui.cpp:5717 src/gui/gui.cpp:5741 src/gui/gui.cpp:5765 +#: src/gui/gui.cpp:5796 src/gui/gui.cpp:5855 src/gui/gui.cpp:6229 +#: src/gui/gui.cpp:6353 +msgid "Cancel" +msgstr "" + +#: src/gui/exportOptions.cpp:115 src/gui/exportOptions.cpp:217 +#: src/gui/exportOptions.cpp:246 src/gui/exportOptions.cpp:300 +#: src/gui/exportOptions.cpp:321 src/gui/exportOptions.cpp:344 +#: src/gui/editControls.cpp:512 src/gui/userPresets.cpp:523 +#: src/gui/settings.cpp:1242 src/gui/settings.cpp:2165 +#: src/gui/settings.cpp:2557 src/gui/settings.cpp:3800 src/gui/guiConst.cpp:536 +#: src/gui/gui.cpp:5578 src/gui/gui.cpp:5630 +msgid "Export" +msgstr "" + +#: src/gui/exportOptions.cpp:130 +msgid "select at least one channel" +msgstr "" + +#: src/gui/exportOptions.cpp:137 +msgid "settings:" +msgstr "" + +#: src/gui/exportOptions.cpp:138 +msgid "format version" +msgstr "" + +#: src/gui/exportOptions.cpp:146 src/gui/exportOptions.cpp:238 +#: src/gui/insEdit.cpp:362 +msgid "loop" +msgstr "" + +#: src/gui/exportOptions.cpp:148 +msgid "loop trail:" +msgstr "" + +#: src/gui/exportOptions.cpp:150 +msgid "auto-detect" +msgstr "" + +#: src/gui/exportOptions.cpp:153 +msgid "add one loop" +msgstr "" + +#: src/gui/exportOptions.cpp:156 +msgid "custom" +msgstr "" + +#: src/gui/exportOptions.cpp:167 +msgid "add pattern change hints" +msgstr "" + +#: src/gui/exportOptions.cpp:170 +msgid "" +"inserts data blocks on pattern changes.\n" +"useful if you are writing a playback routine.\n" +"\n" +"the format of a pattern change data block is:\n" +"67 66 FE ll ll ll ll 01 oo rr pp pp pp ...\n" +"- ll: length, a 32-bit little-endian number\n" +"- oo: order\n" +"- rr: initial row (a 0Dxx effect is able to select a different row)\n" +"- pp: pattern index (one per channel)\n" +"\n" +"pattern indexes are ordered as they appear in the song." +msgstr "" + +#: src/gui/exportOptions.cpp:183 +msgid "direct stream mode" +msgstr "" + +#: src/gui/exportOptions.cpp:186 +msgid "" +"required for DualPCM and MSM6258 export.\n" +"\n" +"allows for volume/direction changes when playing samples,\n" +"at the cost of a massive increase in file size." +msgstr "" + +#: src/gui/exportOptions.cpp:191 +msgid "chips to export:" +msgstr "" + +#: src/gui/exportOptions.cpp:200 +#, c-format +msgid "this chip is only available in VGM %d.%.2x and higher!" +msgstr "" + +#: src/gui/exportOptions.cpp:204 +msgid "this chip is not supported by the VGM format!" +msgstr "" + +#: src/gui/exportOptions.cpp:210 +#, c-format +msgid "select the chip you wish to export, but only up to %d of each type." +msgstr "" + +#: src/gui/exportOptions.cpp:222 +msgid "nothing to export" +msgstr "" + +#: src/gui/exportOptions.cpp:233 +msgid "Commander X16 Zsound Music File" +msgstr "" + +#: src/gui/exportOptions.cpp:234 +msgid "Tick Rate (Hz)" +msgstr "" + +#: src/gui/exportOptions.cpp:240 +msgid "optimize size" +msgstr "" + +#: src/gui/exportOptions.cpp:256 src/gui/editControls.cpp:630 +msgid "" +"this is NOT ROM export! only use for making sure the\n" +"Furnace Amiga emulator is working properly by\n" +"comparing it with real Amiga output." +msgstr "" + +#: src/gui/exportOptions.cpp:261 src/gui/editControls.cpp:635 +#: src/gui/settings.cpp:3925 +msgid "Directory" +msgstr "" + +#: src/gui/exportOptions.cpp:269 src/gui/editControls.cpp:638 +msgid "Bake Data" +msgstr "" + +#: src/gui/exportOptions.cpp:284 src/gui/editControls.cpp:653 +#, c-format +msgid "Done! Baked %d files." +msgstr "" + +#: src/gui/exportOptions.cpp:293 +msgid "this option exports the song to a text file.\n" +msgstr "" + +#: src/gui/exportOptions.cpp:310 +msgid "" +"this option exports a text or binary file which\n" +"contains a dump of the internal command stream\n" +"produced when playing the song.\n" +"\n" +"technical/development use only!" +msgstr "" + +#: src/gui/exportOptions.cpp:331 +msgid "" +"export in DefleMask module format.\n" +"only do it if you really, really need to, or are downgrading an existing ." +"dmf." +msgstr "" + +#: src/gui/exportOptions.cpp:335 +msgid "format version:" +msgstr "" + +#: src/gui/exportOptions.cpp:336 +msgid "1.1.3 and higher" +msgstr "" + +#: src/gui/exportOptions.cpp:337 +msgid "1.0/legacy (0.12)" +msgstr "" + +#: src/gui/exportOptions.cpp:357 src/gui/settings.cpp:1253 +#: src/gui/settings.cpp:3929 +msgid "Audio" +msgstr "" + +#: src/gui/exportOptions.cpp:361 src/gui/settings.cpp:3931 +msgid "VGM" +msgstr "" + +#: src/gui/exportOptions.cpp:370 src/gui/settings.cpp:3932 +msgid "ZSM" +msgstr "" + +#: src/gui/exportOptions.cpp:380 +msgid "Amiga Validation" +msgstr "" + +#: src/gui/exportOptions.cpp:385 src/gui/settings.cpp:2959 +#: src/gui/settings.cpp:3891 +msgid "Text" +msgstr "" + +#: src/gui/exportOptions.cpp:389 +msgid "Command Stream" +msgstr "" + +#: src/gui/exportOptions.cpp:393 +msgid "DMF" +msgstr "" + +#: src/gui/exportOptions.cpp:422 +msgid "congratulations! you've unlocked a secret panel." +msgstr "" + +#: src/gui/exportOptions.cpp:423 +msgid "Toggle hidden systems" +msgstr "" + +#: src/gui/exportOptions.cpp:427 +msgid "Toggle all instrument types" +msgstr "" + +#: src/gui/exportOptions.cpp:431 +msgid "Set pitch linearity to Partial" +msgstr "" + +#: src/gui/exportOptions.cpp:435 +msgid "Enable multi-threading settings" +msgstr "" + +#: src/gui/exportOptions.cpp:439 +msgid "Set fat to max" +msgstr "" + +#: src/gui/exportOptions.cpp:446 +msgid "Set muscle and fat to zero" +msgstr "" + +#: src/gui/exportOptions.cpp:453 +msgid "Tell tildearrow this must be a mistake" +msgstr "" + +#: src/gui/exportOptions.cpp:454 +msgid "" +"yeah, it's a bug. write a bug report in the GitHub page and tell me how did " +"you get here." +msgstr "" + +#: src/gui/speed.cpp:32 src/gui/speed.cpp:102 src/gui/editControls.cpp:532 +#: src/gui/sysConf.cpp:2148 src/gui/guiConst.cpp:232 src/gui/guiConst.cpp:581 +#: src/gui/insEdit.cpp:2028 src/gui/insEdit.cpp:5693 src/gui/insEdit.cpp:6885 +msgid "Speed" +msgstr "" + +#: src/gui/speed.cpp:41 +msgid "Base Tempo##TempoOrHz" +msgstr "" + +#: src/gui/speed.cpp:41 +msgid "Tick Rate##TempoOrHz" +msgstr "" + +#: src/gui/speed.cpp:46 +msgid "click to display tick rate" +msgstr "" + +#: src/gui/speed.cpp:48 +msgid "click to display base tempo" +msgstr "" + +#: src/gui/speed.cpp:80 +msgid "Groove" +msgstr "" + +#: src/gui/speed.cpp:87 +msgid "click for one speed" +msgstr "" + +#: src/gui/speed.cpp:90 +msgid "Speeds" +msgstr "" + +#: src/gui/speed.cpp:99 +msgid "click for groove pattern" +msgstr "" + +#: src/gui/speed.cpp:110 +msgid "click for two (alternating) speeds" +msgstr "" + +#: src/gui/speed.cpp:168 +msgid "Virtual Tempo" +msgstr "" + +#: src/gui/speed.cpp:177 +msgid "Numerator" +msgstr "" + +#: src/gui/speed.cpp:187 +msgid "Denominator (set to base tempo)" +msgstr "" + +#: src/gui/speed.cpp:193 +msgid "Divider" +msgstr "" + +#: src/gui/speed.cpp:208 +msgid "Highlight" +msgstr "" + +#: src/gui/speed.cpp:231 +msgid "Pattern Length" +msgstr "" + +#: src/gui/speed.cpp:245 +msgid "Song Length" +msgstr "" + +#: src/gui/channels.cpp:40 src/gui/editControls.cpp:446 +#: src/gui/guiConst.cpp:601 src/gui/gui.cpp:6280 +msgid "Channels" +msgstr "" + +#: src/gui/channels.cpp:49 +msgid "Pat" +msgstr "" + +#: src/gui/channels.cpp:51 src/gui/editControls.cpp:550 +msgid "Osc" +msgstr "" + +#: src/gui/channels.cpp:53 +msgid "Swap" +msgstr "" + +#: src/gui/channels.cpp:55 src/gui/userPresets.cpp:368 +#: src/gui/effectList.cpp:45 src/gui/subSongs.cpp:125 src/gui/settings.cpp:1060 +#: src/gui/settings.cpp:4383 src/gui/sampleEdit.cpp:195 src/gui/songInfo.cpp:40 +#: src/gui/sysManager.cpp:54 src/gui/insEdit.cpp:5288 +msgid "Name" +msgstr "" + +#: src/gui/channels.cpp:64 +msgid "Show in pattern" +msgstr "" + +#: src/gui/channels.cpp:71 +msgid "Show in per-channel oscilloscope" +msgstr "" + +#: src/gui/channels.cpp:82 +#, c-format +msgid "" +"%s #%d\n" +"(drag to swap channels)" +msgstr "" + +#: src/gui/commandPalette.cpp:51 src/gui/sysPicker.cpp:35 +#: src/gui/newSong.cpp:133 +msgid "Search..." +msgstr "" + +#: src/gui/commandPalette.cpp:54 +msgid "Search recent files..." +msgstr "" + +#: src/gui/commandPalette.cpp:57 +msgid "Search instruments..." +msgstr "" + +#: src/gui/commandPalette.cpp:60 +msgid "Search samples..." +msgstr "" + +#: src/gui/commandPalette.cpp:63 +msgid "Search instruments (to change to)..." +msgstr "" + +#: src/gui/commandPalette.cpp:66 +msgid "Search chip (to add)..." +msgstr "" + +#: src/gui/commandPalette.cpp:93 src/gui/commandPalette.cpp:167 +msgid "- None -" +msgstr "" + +#: src/gui/commandPalette.cpp:123 src/gui/commandPalette.cpp:179 +#: src/gui/commandPalette.cpp:241 +msgid "invalid command palette type" +msgstr "" + +#: src/gui/regView.cpp:30 src/gui/guiConst.cpp:604 +msgid "Register View" +msgstr "" + +#: src/gui/regView.cpp:38 +msgid "- no register pool available" +msgstr "" + +#: src/gui/log.cpp:25 src/gui/effectList.cpp:84 +msgid "ERROR" +msgstr "" + +#: src/gui/log.cpp:26 +msgid "warning" +msgstr "" + +#: src/gui/log.cpp:27 +msgid "info" +msgstr "" + +#: src/gui/log.cpp:28 src/gui/gui.cpp:4513 +msgid "debug" +msgstr "" + +#: src/gui/log.cpp:29 +msgid "trace" +msgstr "" + +#: src/gui/log.cpp:47 src/gui/settings.cpp:4243 src/gui/guiConst.cpp:605 +msgid "Log Viewer" +msgstr "" + +#: src/gui/log.cpp:48 src/gui/editControls.cpp:750 src/gui/editControls.cpp:883 +#: src/gui/editControls.cpp:1000 +msgid "Follow" +msgstr "" + +#: src/gui/log.cpp:50 src/gui/waveEdit.cpp:681 src/gui/insEdit.cpp:50 +msgid "Level" +msgstr "" + +#: src/gui/log.cpp:68 +msgid "time" +msgstr "" + +#: src/gui/log.cpp:70 +msgid "level" +msgstr "" + +#: src/gui/log.cpp:72 +msgid "message" +msgstr "" + +#: src/gui/pattern.cpp:433 src/gui/editControls.cpp:421 +#: src/gui/editControls.cpp:754 src/gui/editControls.cpp:887 +#: src/gui/editControls.cpp:1015 src/gui/settings.cpp:2344 +#: src/gui/settings.cpp:3297 src/gui/settings.cpp:4100 +#: src/gui/findReplace.cpp:794 src/gui/guiConst.cpp:582 src/gui/gui.cpp:5899 +msgid "Pattern" +msgstr "" + +#: src/gui/pattern.cpp:468 +msgid "there aren't any channels to show." +msgstr "" + +#: src/gui/pattern.cpp:492 +msgid "click for pattern options (effect columns/pattern names/visualizer)" +msgstr "" + +#: src/gui/pattern.cpp:504 +msgid "Options:" +msgstr "" + +#: src/gui/pattern.cpp:506 +msgid "Effect columns/collapse" +msgstr "" + +#: src/gui/pattern.cpp:507 +msgid "Pattern names" +msgstr "" + +#: src/gui/pattern.cpp:508 +msgid "Channel group hints" +msgstr "" + +#: src/gui/pattern.cpp:509 +msgid "Visualizer" +msgstr "" + +#: src/gui/pattern.cpp:517 +msgid "Channel status:" +msgstr "" + +#: src/gui/pattern.cpp:519 +msgid "No##_PCS0" +msgstr "" + +#: src/gui/pattern.cpp:522 +msgid "Yes##_PCS1" +msgstr "" + +#: src/gui/pattern.cpp:1420 src/gui/pattern.cpp:1452 +msgid "WARNING!!" +msgstr "" + +#: src/gui/pattern.cpp:1422 src/gui/pattern.cpp:1459 +msgid "this instrument cannot be previewed because" +msgstr "" + +#: src/gui/pattern.cpp:1423 src/gui/pattern.cpp:1466 +msgid "none of the chips can play it" +msgstr "" + +#: src/gui/pattern.cpp:1424 src/gui/pattern.cpp:1473 +msgid "your instrument is in peril!! be careful..." +msgstr "" + +#: src/gui/osc.cpp:169 src/gui/settings.cpp:3710 src/gui/settings.cpp:3937 +msgid "Oscilloscope" +msgstr "" + +#: src/gui/osc.cpp:176 +#, c-format +msgid "zoom: %.2fx (%.1fdB)" +msgstr "" + +#: src/gui/osc.cpp:187 +#, c-format +msgid "window size: %.1fms" +msgstr "" + +#: src/gui/osc.cpp:385 +msgid "(-Infinity)dB" +msgstr "" + +#: src/gui/debugWindow.cpp:66 src/gui/editControls.cpp:610 +msgid "Debug" +msgstr "" + +#: src/gui/debugWindow.cpp:663 +msgid "This is a language test." +msgstr "" + +#: src/gui/debugWindow.cpp:664 +msgid "This is another language test." +msgstr "" + +#: src/gui/debugWindow.cpp:720 +#, c-format +msgid "%d apple" +msgid_plural "%d apples" +msgstr[0] "" +msgstr[1] "" + +#: src/gui/chanOsc.cpp:32 +msgid "None (0%)" +msgstr "" + +#: src/gui/chanOsc.cpp:33 +msgid "None (50%)" +msgstr "" + +#: src/gui/chanOsc.cpp:34 +msgid "None (100%)" +msgstr "" + +#: src/gui/chanOsc.cpp:36 +msgid "Frequency" +msgstr "" + +#: src/gui/chanOsc.cpp:38 src/gui/settings.cpp:1667 src/gui/settings.cpp:3406 +#: src/gui/settings.cpp:4088 +msgid "Channel" +msgstr "" + +#: src/gui/chanOsc.cpp:39 +msgid "Brightness" +msgstr "" + +#: src/gui/chanOsc.cpp:41 +msgid "Note Trigger" +msgstr "" + +#: src/gui/chanOsc.cpp:45 +msgid "Off" +msgstr "" + +#: src/gui/chanOsc.cpp:46 +msgid "Mode 1" +msgstr "" + +#: src/gui/chanOsc.cpp:47 +msgid "Mode 2" +msgstr "" + +#: src/gui/chanOsc.cpp:48 +msgid "Mode 3" +msgstr "" + +#: src/gui/chanOsc.cpp:135 src/gui/guiConst.cpp:607 +msgid "Oscilloscope (per-channel)" +msgstr "" + +#: src/gui/chanOsc.cpp:143 +msgid "Columns" +msgstr "" + +#: src/gui/chanOsc.cpp:152 +msgid "Size (ms)" +msgstr "" + +#: src/gui/chanOsc.cpp:163 +msgid "Automatic columns" +msgstr "" + +#: src/gui/chanOsc.cpp:177 +msgid "Center waveform" +msgstr "" + +#: src/gui/chanOsc.cpp:183 +msgid "Randomize phase on note" +msgstr "" + +#: src/gui/chanOsc.cpp:189 +msgid "Amplitude" +msgstr "" + +#: src/gui/chanOsc.cpp:199 src/gui/settings.cpp:3747 +msgid "Line size" +msgstr "" + +#: src/gui/chanOsc.cpp:211 +msgid "Gradient" +msgstr "" + +#: src/gui/chanOsc.cpp:218 +msgid "error while creating gradient texture!" +msgstr "" + +#: src/gui/chanOsc.cpp:236 +msgid "error while updating gradient texture!" +msgstr "" + +#: src/gui/chanOsc.cpp:292 src/gui/chanOsc.cpp:348 src/gui/settings.cpp:3793 +msgid "Color" +msgstr "" + +#: src/gui/chanOsc.cpp:296 +msgid "Distance" +msgstr "" + +#: src/gui/chanOsc.cpp:305 +msgid "Spread" +msgstr "" + +#: src/gui/chanOsc.cpp:314 src/gui/userPresets.cpp:370 src/gui/subSongs.cpp:121 +#: src/gui/settings.cpp:2281 src/gui/sysManager.cpp:124 +msgid "Remove" +msgstr "" + +#: src/gui/chanOsc.cpp:338 src/gui/settings.cpp:3885 src/gui/settings.cpp:4165 +#: src/gui/settings.cpp:4192 src/gui/settings.cpp:4218 +msgid "Background" +msgstr "" + +#: src/gui/chanOsc.cpp:341 +msgid "X Axis##AxisX" +msgstr "" + +#: src/gui/chanOsc.cpp:342 +msgid "Y Axis##AxisY" +msgstr "" + +#: src/gui/chanOsc.cpp:352 +msgid "Text format:" +msgstr "" + +#: src/gui/chanOsc.cpp:358 +msgid "" +"format guide:\n" +"- %c: channel name\n" +"- %C: channel short name\n" +"- %d: channel number (starting from 0)\n" +"- %D: channel number (starting from 1)\n" +"- %n: channel note\n" +"- %i: instrument name\n" +"- %I: instrument number (decimal)\n" +"- %x: instrument number (hex)\n" +"- %s: chip name\n" +"- %p: chip part number\n" +"- %S: chip ID\n" +"- %v: volume (decimal)\n" +"- %V: volume (percentage)\n" +"- %b: volume (hex)\n" +"- %l: new line\n" +"- %%: percent sign" +msgstr "" + +#: src/gui/chanOsc.cpp:380 +msgid "Text color" +msgstr "" + +#: src/gui/chanOsc.cpp:382 src/gui/xyOsc.cpp:80 src/gui/settings.cpp:6672 +#: src/gui/tutorial.cpp:689 src/gui/gui.cpp:5639 src/gui/gui.cpp:6055 +#: src/gui/gui.cpp:6223 src/gui/gui.cpp:6322 src/gui/gui.cpp:6371 +msgid "OK" +msgstr "" + +#: src/gui/chanOsc.cpp:400 +msgid "creating chan osc work pool" +msgstr "" + +#: src/gui/chanOsc.cpp:429 +#, c-format +msgid "creating FFT plan for channel %d" +msgstr "" + +#: src/gui/chanOsc.cpp:436 +msgid "failed to create plan!" +msgstr "" + +#: src/gui/chanOsc.cpp:438 +msgid "failed to create inverse plan!" +msgstr "" + +#: src/gui/chanOsc.cpp:440 +msgid "failed to create FFT buffers" +msgstr "" + +#: src/gui/chanOsc.cpp:585 +msgid "Error!" +msgstr "" + +#: src/gui/editControls.cpp:47 src/gui/sampleEdit.cpp:1736 src/gui/gui.cpp:2733 +#: src/gui/insEdit.cpp:363 +msgid "cut" +msgstr "" + +#: src/gui/editControls.cpp:48 src/gui/sampleEdit.cpp:1740 src/gui/gui.cpp:2734 +#: src/gui/insEdit.cpp:7538 +msgid "copy" +msgstr "" + +#: src/gui/editControls.cpp:49 src/gui/sampleEdit.cpp:1744 src/gui/gui.cpp:2735 +#: src/gui/gui.cpp:2788 src/gui/insEdit.cpp:7543 +msgid "paste" +msgstr "" + +#: src/gui/editControls.cpp:51 +msgid "" +"select\n" +"all" +msgstr "" + +#: src/gui/editControls.cpp:52 +msgid "piano" +msgstr "" + +#: src/gui/editControls.cpp:53 src/gui/gui.cpp:4429 +msgid "undo" +msgstr "" + +#: src/gui/editControls.cpp:54 src/gui/gui.cpp:4430 +msgid "redo" +msgstr "" + +#: src/gui/editControls.cpp:57 +msgid "" +"paste\n" +"mix" +msgstr "" + +#: src/gui/editControls.cpp:58 +msgid "" +"paste\n" +"mix bg" +msgstr "" + +#: src/gui/editControls.cpp:59 +msgid "" +"paste\n" +"ins" +msgstr "" + +#: src/gui/editControls.cpp:60 +msgid "" +"paste\n" +"ins bg" +msgstr "" + +#: src/gui/editControls.cpp:61 +msgid "" +"paste\n" +"flood" +msgstr "" + +#: src/gui/editControls.cpp:62 +msgid "" +"paste\n" +"overflow" +msgstr "" + +#: src/gui/editControls.cpp:63 +msgid "" +"transpose\n" +"notes" +msgstr "" + +#: src/gui/editControls.cpp:64 +msgid "" +"transpose\n" +"values" +msgstr "" + +#: src/gui/editControls.cpp:67 +msgid "" +"change\n" +"ins" +msgstr "" + +#: src/gui/editControls.cpp:68 +msgid "" +"find/\n" +"replace" +msgstr "" + +#: src/gui/editControls.cpp:69 src/gui/gui.cpp:3063 +msgid "collapse" +msgstr "" + +#: src/gui/editControls.cpp:70 src/gui/gui.cpp:3064 +msgid "expand" +msgstr "" + +#: src/gui/editControls.cpp:71 src/gui/gui.cpp:2820 +msgid "flip" +msgstr "" + +#: src/gui/editControls.cpp:72 src/gui/insEdit.cpp:430 +msgid "invert" +msgstr "" + +#: src/gui/editControls.cpp:73 src/gui/gui.cpp:2800 src/gui/gui.cpp:2960 +msgid "interpolate" +msgstr "" + +#: src/gui/editControls.cpp:74 src/gui/gui.cpp:2812 src/gui/insEdit.cpp:7610 +msgid "scale" +msgstr "" + +#: src/gui/editControls.cpp:77 src/gui/gui.cpp:2804 +msgid "fade" +msgstr "" + +#: src/gui/editControls.cpp:78 src/gui/gui.cpp:2816 src/gui/insEdit.cpp:7639 +msgid "randomize" +msgstr "" + +#: src/gui/editControls.cpp:79 +msgid "opmask" +msgstr "" + +#: src/gui/editControls.cpp:80 +msgid "" +"scroll\n" +"mode" +msgstr "" + +#: src/gui/editControls.cpp:81 +msgid "" +"input\n" +"latch" +msgstr "" + +#: src/gui/editControls.cpp:82 +msgid "" +"set\n" +"latch" +msgstr "" + +#: src/gui/editControls.cpp:83 +msgid "" +"clear\n" +"latch" +msgstr "" + +#: src/gui/editControls.cpp:84 src/gui/findReplace.cpp:43 +#: src/gui/insEdit.cpp:7557 +msgid "clear" +msgstr "" + +#: src/gui/editControls.cpp:333 +msgid "Mobile Controls" +msgstr "" + +#: src/gui/editControls.cpp:408 +msgid "Mobile Menu" +msgstr "" + +#: src/gui/editControls.cpp:425 src/gui/editControls.cpp:752 +#: src/gui/editControls.cpp:885 src/gui/editControls.cpp:1007 +#: src/gui/settings.cpp:2485 src/gui/settings.cpp:3271 +#: src/gui/settings.cpp:3975 src/gui/orders.cpp:232 src/gui/guiConst.cpp:577 +#: src/gui/gui.cpp:5888 +msgid "Orders" +msgstr "" + +#: src/gui/editControls.cpp:429 src/gui/findReplace.cpp:669 +#: src/gui/findReplace.cpp:914 +msgid "Ins" +msgstr "" + +#: src/gui/editControls.cpp:442 src/gui/findReplace.cpp:788 +#: src/gui/guiConst.cpp:230 +msgid "Song" +msgstr "" + +#: src/gui/editControls.cpp:450 src/gui/sampleEdit.cpp:494 +msgid "Chips" +msgstr "" + +#: src/gui/editControls.cpp:458 src/gui/settings.cpp:2117 +#: src/gui/settings.cpp:3934 src/gui/settings.cpp:4018 +#: src/gui/compatFlags.cpp:319 +msgid "Other" +msgstr "" + +#: src/gui/editControls.cpp:487 src/gui/guiConst.cpp:531 +msgid "New" +msgstr "" + +#: src/gui/editControls.cpp:491 src/gui/doAction.cpp:38 src/gui/gui.cpp:4194 +msgid "Unsaved changes! Save changes before creating a new song?" +msgstr "" + +#: src/gui/editControls.cpp:507 +msgid "Save as..." +msgstr "" + +#: src/gui/editControls.cpp:516 src/gui/gui.cpp:1680 +msgid "Restore Backup" +msgstr "" + +#: src/gui/editControls.cpp:524 +msgid "Song Info" +msgstr "" + +#: src/gui/editControls.cpp:528 src/gui/subSongs.cpp:17 +#: src/gui/guiConst.cpp:608 +msgid "Subsongs" +msgstr "" + +#: src/gui/editControls.cpp:541 +msgid "Channels here..." +msgstr "" + +#: src/gui/editControls.cpp:544 +msgid "Chips here..." +msgstr "" + +#: src/gui/editControls.cpp:547 +msgid "What the hell..." +msgstr "" + +#: src/gui/editControls.cpp:554 +msgid "ChanOsc" +msgstr "" + +#: src/gui/editControls.cpp:558 +msgid "RegView" +msgstr "" + +#: src/gui/editControls.cpp:562 +msgid "Stats" +msgstr "" + +#: src/gui/editControls.cpp:566 src/gui/guiConst.cpp:611 src/gui/grooves.cpp:35 +msgid "Grooves" +msgstr "" + +#: src/gui/editControls.cpp:569 +msgid "Compat Flags" +msgstr "" + +#: src/gui/editControls.cpp:573 +msgid "XYOsc" +msgstr "" + +#: src/gui/editControls.cpp:577 +msgid "Meter" +msgstr "" + +#: src/gui/editControls.cpp:581 +msgid "Memory" +msgstr "" + +#: src/gui/editControls.cpp:585 +msgid "CV" +msgstr "" + +#: src/gui/editControls.cpp:589 +msgid "Presets" +msgstr "" + +#: src/gui/editControls.cpp:593 +msgid "PatManager" +msgstr "" + +#: src/gui/editControls.cpp:599 src/gui/guiConst.cpp:564 +msgid "Panic" +msgstr "" + +#: src/gui/editControls.cpp:601 src/gui/settings.cpp:560 +#: src/gui/guiConst.cpp:589 src/gui/guiConst.cpp:591 src/gui/gui.cpp:4439 +msgid "Settings" +msgstr "" + +#: src/gui/editControls.cpp:606 +msgid "Log" +msgstr "" + +#: src/gui/editControls.cpp:614 src/gui/guiConst.cpp:587 +msgid "About" +msgstr "" + +#: src/gui/editControls.cpp:619 +msgid "Switch to Desktop Mode" +msgstr "" + +#: src/gui/editControls.cpp:673 src/gui/editControls.cpp:784 +#: src/gui/editControls.cpp:904 +msgid "Play/Edit Controls" +msgstr "" + +#: src/gui/editControls.cpp:681 src/gui/editControls.cpp:842 +#: src/gui/editControls.cpp:959 src/gui/editControls.cpp:1125 +msgid "Octave" +msgstr "" + +#: src/gui/editControls.cpp:698 src/gui/editControls.cpp:857 +msgid "Coarse Step" +msgstr "" + +#: src/gui/editControls.cpp:698 src/gui/editControls.cpp:857 +msgid "Edit Step" +msgstr "" + +#: src/gui/editControls.cpp:731 src/gui/editControls.cpp:797 +#: src/gui/editControls.cpp:911 src/gui/editControls.cpp:1048 +#: src/gui/guiConst.cpp:545 +msgid "Play" +msgstr "" + +#: src/gui/editControls.cpp:739 src/gui/editControls.cpp:789 +#: src/gui/editControls.cpp:918 src/gui/editControls.cpp:1040 +#: src/gui/guiConst.cpp:546 +msgid "Stop" +msgstr "" + +#: src/gui/editControls.cpp:742 src/gui/editControls.cpp:826 +#: src/gui/editControls.cpp:943 src/gui/editControls.cpp:1082 +#: src/gui/gui.cpp:4426 +msgid "Edit" +msgstr "" + +#: src/gui/editControls.cpp:757 src/gui/editControls.cpp:816 +#: src/gui/editControls.cpp:934 src/gui/editControls.cpp:1104 +msgid "Repeat pattern" +msgstr "" + +#: src/gui/editControls.cpp:766 src/gui/editControls.cpp:806 +#: src/gui/editControls.cpp:925 src/gui/editControls.cpp:1073 +msgid "Step one row" +msgstr "" + +#: src/gui/editControls.cpp:771 src/gui/editControls.cpp:891 +#: src/gui/editControls.cpp:1020 src/gui/editControls.cpp:1110 +msgid "Poly##PolyInput" +msgstr "" + +#: src/gui/editControls.cpp:771 src/gui/editControls.cpp:891 +#: src/gui/editControls.cpp:1020 src/gui/editControls.cpp:1110 +msgid "Mono##PolyInput" +msgstr "" + +#: src/gui/editControls.cpp:776 src/gui/editControls.cpp:896 +#: src/gui/editControls.cpp:1025 src/gui/editControls.cpp:1115 +msgid "Polyphony" +msgstr "" + +#: src/gui/editControls.cpp:957 +msgid "Oct." +msgstr "" + +#: src/gui/editControls.cpp:974 src/gui/editControls.cpp:1142 +msgid "Coarse" +msgstr "" + +#: src/gui/editControls.cpp:974 src/gui/editControls.cpp:1142 +msgid "Step" +msgstr "" + +#: src/gui/editControls.cpp:998 +msgid "Foll." +msgstr "" + +#: src/gui/editControls.cpp:1003 +msgid "Ord##FollowOrders" +msgstr "" + +#: src/gui/editControls.cpp:1011 +msgid "Pat##FollowPattern" +msgstr "" + +#: src/gui/editControls.cpp:1033 +msgid "Play Controls" +msgstr "" + +#: src/gui/editControls.cpp:1057 +msgid "Play from the beginning of this pattern" +msgstr "" + +#: src/gui/editControls.cpp:1065 +msgid "Repeat from the beginning of this pattern" +msgstr "" + +#: src/gui/editControls.cpp:1122 src/gui/guiConst.cpp:576 +msgid "Edit Controls" +msgstr "" + +#: src/gui/editControls.cpp:1169 src/gui/guiConst.cpp:560 +msgid "Follow orders" +msgstr "" + +#: src/gui/editControls.cpp:1170 src/gui/guiConst.cpp:561 +msgid "Follow pattern" +msgstr "" + +#: src/gui/songNotes.cpp:32 src/gui/guiConst.cpp:600 +msgid "Song Comments" +msgstr "" + +#: src/gui/util.cpp:93 +msgid "" +msgstr "" + +#: src/gui/util.cpp:97 +msgid "Ctrl-" +msgstr "" + +#: src/gui/util.cpp:99 +msgid "Alt-" +msgstr "" + +#: src/gui/util.cpp:100 +msgid "Shift-" +msgstr "" + +#: src/gui/stats.cpp:31 src/gui/guiConst.cpp:597 +msgid "Statistics" +msgstr "" + +#: src/gui/stats.cpp:36 +msgid "Audio load" +msgstr "" + +#: src/gui/xyOsc.cpp:40 src/gui/guiConst.cpp:612 +msgid "Oscilloscope (X-Y)" +msgstr "" + +#: src/gui/xyOsc.cpp:45 +msgid "X Channel" +msgstr "" + +#: src/gui/xyOsc.cpp:51 +msgid "Invert##X" +msgstr "" + +#: src/gui/xyOsc.cpp:52 +msgid "Y Channel" +msgstr "" + +#: src/gui/xyOsc.cpp:58 +msgid "Invert##Y" +msgstr "" + +#: src/gui/xyOsc.cpp:59 src/gui/sampleEdit.cpp:1353 +msgid "Zoom" +msgstr "" + +#: src/gui/xyOsc.cpp:71 +msgid "Decay Time (ms)" +msgstr "" + +#: src/gui/xyOsc.cpp:74 +msgid "Intensity" +msgstr "" + +#: src/gui/xyOsc.cpp:77 +msgid "Line Thickness" +msgstr "" + +#: src/gui/xyOsc.cpp:213 +msgid "(-Infinity)dB,(-Infinity)dB" +msgstr "" + +#: src/gui/xyOsc.cpp:215 +#, c-format +msgid "(-Infinity)dB,%.1fdB" +msgstr "" + +#: src/gui/xyOsc.cpp:217 +#, c-format +msgid "%.1fdB,(-Infinity)dB" +msgstr "" + +#: src/gui/xyOsc.cpp:219 +#, c-format +msgid "%.1fdB,%.1fdB" +msgstr "" + +#: src/gui/sysConf.cpp:49 src/gui/sysConf.cpp:121 src/gui/sysConf.cpp:486 +#: src/gui/sysConf.cpp:604 src/gui/sysConf.cpp:647 src/gui/sysConf.cpp:684 +#: src/gui/sysConf.cpp:843 src/gui/sysConf.cpp:1098 src/gui/sysConf.cpp:1181 +#: src/gui/sysConf.cpp:1220 src/gui/sysConf.cpp:1294 src/gui/sysConf.cpp:1380 +#: src/gui/sysConf.cpp:1444 src/gui/sysConf.cpp:1482 src/gui/sysConf.cpp:1572 +#: src/gui/sysConf.cpp:1668 src/gui/sysConf.cpp:1716 src/gui/sysConf.cpp:1757 +#: src/gui/sysConf.cpp:1810 src/gui/sysConf.cpp:2284 src/gui/sysConf.cpp:2307 +msgid "Clock rate:" +msgstr "" + +#: src/gui/sysConf.cpp:73 src/gui/sysConf.cpp:152 src/gui/sysConf.cpp:911 +#: src/gui/sysConf.cpp:1459 src/gui/sysConf.cpp:1783 +msgid "Chip type:" +msgstr "" + +#: src/gui/sysConf.cpp:75 +msgid "YM3438 (9-bit DAC)" +msgstr "" + +#: src/gui/sysConf.cpp:79 +msgid "YM2612 (9-bit DAC with distortion)" +msgstr "" + +#: src/gui/sysConf.cpp:83 +msgid "YMF276 (external DAC)" +msgstr "" + +#: src/gui/sysConf.cpp:90 src/gui/sysConf.cpp:804 src/gui/sysConf.cpp:1350 +#: src/gui/sysConf.cpp:1420 +msgid "Disable ExtCh FM macros (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:93 src/gui/sysConf.cpp:807 src/gui/sysConf.cpp:1353 +#: src/gui/sysConf.cpp:1423 +msgid "Ins change in ExtCh operator 2-4 affects FB (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:99 +msgid "Modified sine wave (joke)" +msgstr "" + +#: src/gui/sysConf.cpp:123 src/gui/sysConf.cpp:1296 src/gui/sysConf.cpp:1718 +#: src/gui/sysConf.cpp:2286 +msgid "3.58MHz (NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:127 +msgid "3.55MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:131 +msgid "4MHz (BBC Micro)" +msgstr "" + +#: src/gui/sysConf.cpp:135 +msgid "1.79MHz (Half NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:139 +msgid "3MHz (Exed Exes)" +msgstr "" + +#: src/gui/sysConf.cpp:143 +msgid "2MHz (Sega System 1)" +msgstr "" + +#: src/gui/sysConf.cpp:147 +msgid "447KHz (TI-99/4A)" +msgstr "" + +#: src/gui/sysConf.cpp:154 +msgid "Sega VDP/Master System" +msgstr "" + +#: src/gui/sysConf.cpp:162 +msgid "TI SN76489 with Atari-like short noise" +msgstr "" + +#: src/gui/sysConf.cpp:166 +msgid "Game Gear" +msgstr "" + +#: src/gui/sysConf.cpp:170 +msgid "TI SN76489A" +msgstr "" + +#: src/gui/sysConf.cpp:174 +msgid "TI SN76496" +msgstr "" + +#: src/gui/sysConf.cpp:178 +msgid "NCR 8496" +msgstr "" + +#: src/gui/sysConf.cpp:182 +msgid "Tandy PSSJ 3-voice sound" +msgstr "" + +#: src/gui/sysConf.cpp:186 +msgid "TI SN94624" +msgstr "" + +#: src/gui/sysConf.cpp:190 +msgid "TI SN76494" +msgstr "" + +#: src/gui/sysConf.cpp:196 +msgid "Disable noise period change phase reset" +msgstr "" + +#: src/gui/sysConf.cpp:200 src/gui/sysConf.cpp:2190 +msgid "Disable easy period to note mapping on upper octaves" +msgstr "" + +#: src/gui/sysConf.cpp:219 src/gui/sysConf.cpp:583 +msgid "Pseudo-PAL" +msgstr "" + +#: src/gui/sysConf.cpp:222 src/gui/sysConf.cpp:342 +msgid "Disable anti-click" +msgstr "" + +#: src/gui/sysConf.cpp:225 src/gui/sysConf.cpp:345 +msgid "Chip revision:" +msgstr "" + +#: src/gui/sysConf.cpp:227 +msgid "HuC6280 (original)" +msgstr "" + +#: src/gui/sysConf.cpp:231 +msgid "HuC6280A (SuperGrafx)" +msgstr "" + +#: src/gui/sysConf.cpp:257 +msgid "CPU rate:" +msgstr "" + +#: src/gui/sysConf.cpp:259 +msgid "6.18MHz (NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:263 +msgid "5.95MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:268 +msgid "Sample memory:" +msgstr "" + +#: src/gui/sysConf.cpp:270 +msgid "8K (rev A/B/E)" +msgstr "" + +#: src/gui/sysConf.cpp:274 +msgid "64K (rev D/F)" +msgstr "" + +#: src/gui/sysConf.cpp:279 +msgid "DAC resolution:" +msgstr "" + +#: src/gui/sysConf.cpp:281 +msgid "16-bit (rev A/B/D/F)" +msgstr "" + +#: src/gui/sysConf.cpp:285 +msgid "8-bit + TDM (rev C/E)" +msgstr "" + +#: src/gui/sysConf.cpp:290 src/gui/sysConf.cpp:1931 +msgid "Enable echo" +msgstr "" + +#: src/gui/sysConf.cpp:293 +msgid "Swap echo channels" +msgstr "" + +#: src/gui/sysConf.cpp:296 src/gui/sysConf.cpp:1151 +msgid "Echo delay:" +msgstr "" + +#: src/gui/sysConf.cpp:302 +msgid "Echo resolution:" +msgstr "" + +#: src/gui/sysConf.cpp:308 src/gui/sysConf.cpp:1159 +msgid "Echo feedback:" +msgstr "" + +#: src/gui/sysConf.cpp:314 src/gui/sysConf.cpp:1967 +msgid "Echo volume:" +msgstr "" + +#: src/gui/sysConf.cpp:347 +msgid "Original (DMG)" +msgstr "" + +#: src/gui/sysConf.cpp:351 +msgid "Game Boy Color (rev C)" +msgstr "" + +#: src/gui/sysConf.cpp:355 +msgid "Game Boy Color (rev E)" +msgstr "" + +#: src/gui/sysConf.cpp:359 +msgid "Game Boy Advance" +msgstr "" + +#: src/gui/sysConf.cpp:364 +msgid "Wave channel orientation:" +msgstr "" + +#: src/gui/sysConf.cpp:367 src/gui/compatFlags.cpp:298 src/gui/gui.cpp:6067 +#: src/gui/insEdit.cpp:217 src/gui/insEdit.cpp:231 +msgid "Normal" +msgstr "" + +#: src/gui/sysConf.cpp:371 +msgid "Inverted" +msgstr "" + +#: src/gui/sysConf.cpp:378 +msgid "Exact data (inverted)" +msgstr "" + +#: src/gui/sysConf.cpp:382 +msgid "Exact output (normal)" +msgstr "" + +#: src/gui/sysConf.cpp:388 +msgid "" +"Pretty please one more compat flag when I use arpeggio and my sound length" +msgstr "" + +#: src/gui/sysConf.cpp:405 src/gui/sysConf.cpp:438 +msgid "DAC bit depth (reduces output rate):" +msgstr "" + +#: src/gui/sysConf.cpp:426 src/gui/sysConf.cpp:1268 src/gui/sysConf.cpp:1919 +msgid "Volume scale:" +msgstr "" + +#: src/gui/sysConf.cpp:432 +msgid "Mix buffers (allows longer echo delay):" +msgstr "" + +#: src/gui/sysConf.cpp:444 +msgid "Channel limit:" +msgstr "" + +#: src/gui/sysConf.cpp:450 +msgid "Sample rate:" +msgstr "" + +#: src/gui/sysConf.cpp:460 +#, c-format +msgid "Actual sample rate: %d Hz" +msgstr "" + +#: src/gui/sysConf.cpp:462 +#, c-format +msgid "Max mixer CPU usage: %.0f%%" +msgstr "" + +#: src/gui/sysConf.cpp:488 +msgid "NTSC (3.58MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:492 src/gui/sysConf.cpp:557 +msgid "PAL (3.55MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:496 +msgid "Arcade (4MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:500 +msgid "Half NTSC (1.79MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:506 +msgid "Patch set:" +msgstr "" + +#: src/gui/sysConf.cpp:528 +msgid "Ignore top/hi-hat frequency changes" +msgstr "" + +#: src/gui/sysConf.cpp:531 +msgid "Apply fixed frequency to all drums at once" +msgstr "" + +#: src/gui/sysConf.cpp:553 +msgid "NTSC/X16 (3.58MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:561 +msgid "X1/X68000 (4MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:567 src/gui/sysConf.cpp:587 +msgid "Broken pitch macro/slides (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:607 src/gui/sysConf.cpp:650 src/gui/sysConf.cpp:1222 +#: src/gui/sysConf.cpp:2310 +msgid "NTSC (1.79MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:611 src/gui/sysConf.cpp:654 src/gui/sysConf.cpp:1226 +msgid "PAL (1.67MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:615 src/gui/sysConf.cpp:658 src/gui/sysConf.cpp:1230 +msgid "Dendy (1.77MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:621 +msgid "DPCM channel mode:" +msgstr "" + +#: src/gui/sysConf.cpp:624 +msgid "DPCM (muffled samples; low CPU usage)" +msgstr "" + +#: src/gui/sysConf.cpp:628 +msgid "PCM (crisp samples; high CPU usage)" +msgstr "" + +#: src/gui/sysConf.cpp:687 +msgid "NTSC (1.02MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:691 +msgid "PAL (0.99MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:695 +msgid "SSI 2001 (0.89MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:701 src/gui/sysConf.cpp:2320 +msgid "Global parameter priority:" +msgstr "" + +#: src/gui/sysConf.cpp:704 src/gui/sysConf.cpp:2323 +msgid "Left to right" +msgstr "" + +#: src/gui/sysConf.cpp:708 src/gui/sysConf.cpp:2327 +msgid "Last used channel" +msgstr "" + +#: src/gui/sysConf.cpp:714 +msgid "Hard reset envelope:" +msgstr "" + +#: src/gui/sysConf.cpp:716 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:1920 +#: src/gui/insEdit.cpp:6955 src/gui/insEdit.cpp:7481 +msgid "Attack" +msgstr "" + +#: src/gui/sysConf.cpp:721 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:1960 +#: src/gui/insEdit.cpp:6956 src/gui/insEdit.cpp:7482 +msgid "Decay" +msgstr "" + +#: src/gui/sysConf.cpp:726 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:1929 +#: src/gui/insEdit.cpp:6957 src/gui/insEdit.cpp:7483 +msgid "Sustain" +msgstr "" + +#: src/gui/sysConf.cpp:731 src/gui/settings.cpp:3987 src/gui/insEdit.cpp:50 +#: src/gui/insEdit.cpp:604 src/gui/insEdit.cpp:1983 src/gui/insEdit.cpp:6958 +#: src/gui/insEdit.cpp:7484 +msgid "Release" +msgstr "" + +#: src/gui/sysConf.cpp:737 +msgid "Envelope reset time:" +msgstr "" + +#: src/gui/sysConf.cpp:747 +msgid "" +"- 0 disables envelope reset. not recommended!\n" +"- 1 may trigger SID envelope bugs.\n" +"- values that are too high may result in notes being skipped." +msgstr "" + +#: src/gui/sysConf.cpp:749 +msgid "Disable 1Exy env update (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:753 +msgid "Relative duty and cutoff macros are coarse (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:757 +msgid "Cutoff macro race conditions (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:793 +msgid "8MHz (Neo Geo MVS)" +msgstr "" + +#: src/gui/sysConf.cpp:797 +msgid "8.06MHz (Neo Geo AES)" +msgstr "" + +#: src/gui/sysConf.cpp:812 src/gui/sysConf.cpp:1337 src/gui/sysConf.cpp:1407 +msgid "SSG Volume" +msgstr "" + +#: src/gui/sysConf.cpp:818 src/gui/sysConf.cpp:1413 +msgid "FM/ADPCM Volume" +msgstr "" + +#: src/gui/sysConf.cpp:845 +msgid "1.79MHz (ZX Spectrum NTSC/MSX)" +msgstr "" + +#: src/gui/sysConf.cpp:849 +msgid "1.77MHz (ZX Spectrum PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:853 +msgid "0.83MHz (Pre-divided Sunsoft 5B on PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:857 +msgid "0.89MHz (Pre-divided Sunsoft 5B)" +msgstr "" + +#: src/gui/sysConf.cpp:861 +msgid "1MHz (Amstrad CPC)" +msgstr "" + +#: src/gui/sysConf.cpp:865 +msgid "1.10MHz (Gamate/VIC-20 PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:869 +msgid "1.25MHz (Mag Max)" +msgstr "" + +#: src/gui/sysConf.cpp:873 +msgid "1.5MHz (Vectrex)" +msgstr "" + +#: src/gui/sysConf.cpp:877 +msgid "1.536MHz (Kyugo)" +msgstr "" + +#: src/gui/sysConf.cpp:881 +msgid "1.67MHz (?)" +msgstr "" + +#: src/gui/sysConf.cpp:885 +msgid "1.75MHz (ZX Spectrum 48K)" +msgstr "" + +#: src/gui/sysConf.cpp:889 +msgid "1.99MHz (PC-88)" +msgstr "" + +#: src/gui/sysConf.cpp:893 +msgid "2MHz (Atari ST/Sharp X1)" +msgstr "" + +#: src/gui/sysConf.cpp:897 +msgid "2^21Hz (Game Boy)" +msgstr "" + +#: src/gui/sysConf.cpp:901 +msgid "3.58MHz (Darky)" +msgstr "" + +#: src/gui/sysConf.cpp:905 +msgid "3.6MHz (Darky)" +msgstr "" + +#: src/gui/sysConf.cpp:917 +msgid "YM2149(F)" +msgstr "" + +#: src/gui/sysConf.cpp:921 +msgid "Sunsoft 5B" +msgstr "" + +#: src/gui/sysConf.cpp:925 +msgid "AY-3-8914" +msgstr "" + +#: src/gui/sysConf.cpp:931 +msgid "note: AY-3-8914 is not supported by the VGM format!" +msgstr "" + +#: src/gui/sysConf.cpp:935 +msgid "Stereo##_AY_STEREO" +msgstr "" + +#: src/gui/sysConf.cpp:940 +msgid "Separation" +msgstr "" + +#: src/gui/sysConf.cpp:949 +msgid "Half Clock divider##_AY_CLKSEL" +msgstr "" + +#: src/gui/sysConf.cpp:971 +msgid "SAM Coupé (8MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:975 +msgid "NTSC (7.15MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:979 +msgid "PAL (7.09MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:999 +msgid "Stereo separation:" +msgstr "" + +#: src/gui/sysConf.cpp:1006 src/gui/sysConf.cpp:2412 +msgid "Model:" +msgstr "" + +#: src/gui/sysConf.cpp:1008 +msgid "Amiga 500 (OCS)" +msgstr "" + +#: src/gui/sysConf.cpp:1012 +msgid "Amiga 1200 (AGA)" +msgstr "" + +#: src/gui/sysConf.cpp:1018 +msgid "Chip memory:" +msgstr "" + +#: src/gui/sysConf.cpp:1020 +msgid "2MB (ECS/AGA max)" +msgstr "" + +#: src/gui/sysConf.cpp:1030 +msgid "512KB (OCS max)" +msgstr "" + +#: src/gui/sysConf.cpp:1043 src/gui/sysConf.cpp:1081 src/gui/sysConf.cpp:2395 +#: src/gui/sysConf.cpp:2449 +msgid "PAL" +msgstr "" + +#: src/gui/sysConf.cpp:1046 +msgid "Bypass frequency limits" +msgstr "" + +#: src/gui/sysConf.cpp:1065 +msgid "Mixing mode:" +msgstr "" + +#: src/gui/sysConf.cpp:1067 src/gui/settings.cpp:3724 +msgid "Mono" +msgstr "" + +#: src/gui/sysConf.cpp:1071 +msgid "Mono (no distortion)" +msgstr "" + +#: src/gui/sysConf.cpp:1075 src/gui/sysConf.cpp:1197 src/gui/sysConf.cpp:1864 +#: src/gui/sysConf.cpp:2204 +msgid "Stereo" +msgstr "" + +#: src/gui/sysConf.cpp:1100 +msgid "1.19MHz (PC)" +msgstr "" + +#: src/gui/sysConf.cpp:1104 +msgid "1.99MHz (PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1108 +msgid "2.46MHz (PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1114 +msgid "Speaker type:" +msgstr "" + +#: src/gui/sysConf.cpp:1116 +msgid "Unfiltered" +msgstr "" + +#: src/gui/sysConf.cpp:1120 +msgid "Cone" +msgstr "" + +#: src/gui/sysConf.cpp:1124 +msgid "Piezo" +msgstr "" + +#: src/gui/sysConf.cpp:1128 +msgid "Use system beeper (Linux only!)" +msgstr "" + +#: src/gui/sysConf.cpp:1134 +msgid "Reset phase on frequency change" +msgstr "" + +#: src/gui/sysConf.cpp:1183 +msgid "16MHz (Seta 1)" +msgstr "" + +#: src/gui/sysConf.cpp:1187 +msgid "16.67MHz (Seta 2)" +msgstr "" + +#: src/gui/sysConf.cpp:1191 src/gui/sysConf.cpp:1759 +msgid "14.32MHz (NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:1201 +msgid "Bankswitched (Seta 2)" +msgstr "" + +#: src/gui/sysConf.cpp:1235 src/gui/sysConf.cpp:1261 +msgid "Initial channel limit:" +msgstr "" + +#: src/gui/sysConf.cpp:1241 src/gui/sysConf.cpp:2398 +msgid "Disable hissing" +msgstr "" + +#: src/gui/sysConf.cpp:1244 +msgid "Scale frequency to wave length" +msgstr "" + +#: src/gui/sysConf.cpp:1300 src/gui/sysConf.cpp:1722 +msgid "3.54MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:1304 src/gui/sysConf.cpp:1726 src/gui/sysConf.cpp:2290 +msgid "4MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1308 src/gui/sysConf.cpp:1730 +msgid "3MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1312 src/gui/sysConf.cpp:1734 +msgid "3.9936MHz (PC-88/PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1316 +msgid "1.5MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1321 src/gui/sysConf.cpp:1391 src/gui/sysConf.cpp:1639 +#: src/gui/sysConf.cpp:1852 +msgid "Output rate:" +msgstr "" + +#: src/gui/sysConf.cpp:1323 src/gui/sysConf.cpp:1397 +msgid "FM: clock / 72, SSG: clock / 16" +msgstr "" + +#: src/gui/sysConf.cpp:1327 +msgid "FM: clock / 36, SSG: clock / 8" +msgstr "" + +#: src/gui/sysConf.cpp:1331 +msgid "FM: clock / 24, SSG: clock / 4" +msgstr "" + +#: src/gui/sysConf.cpp:1343 +msgid "FM Volume" +msgstr "" + +#: src/gui/sysConf.cpp:1382 +msgid "8MHz (Arcade)" +msgstr "" + +#: src/gui/sysConf.cpp:1386 +msgid "7.987MHz (PC-88/PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1393 +msgid "FM: clock / 144, SSG: clock / 32" +msgstr "" + +#: src/gui/sysConf.cpp:1401 +msgid "FM: clock / 48, SSG: clock / 8" +msgstr "" + +#: src/gui/sysConf.cpp:1446 +msgid "8MHz (FM Towns)" +msgstr "" + +#: src/gui/sysConf.cpp:1450 +msgid "10MHz (Sega System 18)" +msgstr "" + +#: src/gui/sysConf.cpp:1454 +msgid "12.5MHz (Sega CD/System 32)" +msgstr "" + +#: src/gui/sysConf.cpp:1461 +msgid "RF5C68 (10-bit output)" +msgstr "" + +#: src/gui/sysConf.cpp:1465 +msgid "RF5C164 (16-bit output)" +msgstr "" + +#: src/gui/sysConf.cpp:1520 +msgid "Sample rate table:" +msgstr "" + +#: src/gui/sysConf.cpp:1524 +msgid "divider \\ clock" +msgstr "" + +#: src/gui/sysConf.cpp:1526 +msgid "full" +msgstr "" + +#: src/gui/sysConf.cpp:1528 +msgid "half" +msgstr "" + +#: src/gui/sysConf.cpp:1641 +msgid "clock / 132" +msgstr "" + +#: src/gui/sysConf.cpp:1645 +msgid "clock / 165" +msgstr "" + +#: src/gui/sysConf.cpp:1651 +msgid "Bankswitched (NMK112)" +msgstr "" + +#: src/gui/sysConf.cpp:1670 +msgid "1.79MHz (NTSC/MSX)" +msgstr "" + +#: src/gui/sysConf.cpp:1674 +msgid "1.77MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:1678 +msgid "1.5MHz (Arcade)" +msgstr "" + +#: src/gui/sysConf.cpp:1682 +msgid "2MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1697 +msgid "Consistent frequency across all duties" +msgstr "" + +#: src/gui/sysConf.cpp:1704 +msgid "note: only works for an initial LFSR value of 0!" +msgstr "" + +#: src/gui/sysConf.cpp:1738 +msgid "3.5MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1763 +msgid "14.19MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:1767 +msgid "14MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1771 +msgid "16MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1775 +msgid "15MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1779 +msgid "33.8688MHz (OPL3-L)" +msgstr "" + +#: src/gui/sysConf.cpp:1784 +msgid "OPL3 (YMF262)" +msgstr "" + +#: src/gui/sysConf.cpp:1788 +msgid "OPL3-L (YMF289B)" +msgstr "" + +#: src/gui/sysConf.cpp:1794 +msgid "Compatible panning (0800)" +msgstr "" + +#: src/gui/sysConf.cpp:1858 +msgid "Output bit depth:" +msgstr "" + +#: src/gui/sysConf.cpp:1868 +msgid "Interpolation:" +msgstr "" + +#: src/gui/sysConf.cpp:1874 src/gui/waveEdit.cpp:38 +msgid "Linear" +msgstr "" + +#: src/gui/sysConf.cpp:1878 src/gui/waveEdit.cpp:40 +msgid "Cubic" +msgstr "" + +#: src/gui/sysConf.cpp:1882 +msgid "Sinc" +msgstr "" + +#: src/gui/sysConf.cpp:1920 +msgid "Left##VolScaleL" +msgstr "" + +#: src/gui/sysConf.cpp:1925 +msgid "Right##VolScaleL" +msgstr "" + +#: src/gui/sysConf.cpp:1935 +msgid "Initial echo state:" +msgstr "" + +#: src/gui/sysConf.cpp:1955 +msgid "Delay##EchoDelay" +msgstr "" + +#: src/gui/sysConf.cpp:1961 +msgid "Feedback##EchoFeedback" +msgstr "" + +#: src/gui/sysConf.cpp:1968 +msgid "Left##EchoVolL" +msgstr "" + +#: src/gui/sysConf.cpp:1973 +msgid "Right##EchoVolL" +msgstr "" + +#: src/gui/sysConf.cpp:1979 +msgid "Echo filter:" +msgstr "" + +#: src/gui/sysConf.cpp:1989 +msgid "Hex##SNESFHex" +msgstr "" + +#: src/gui/sysConf.cpp:1989 +msgid "Dec##SNESFHex" +msgstr "" + +#: src/gui/sysConf.cpp:2031 +#, c-format +msgid "sum: %d" +msgstr "" + +#: src/gui/sysConf.cpp:2086 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:63 +#: src/gui/insEdit.cpp:75 +msgid "Detune" +msgstr "" + +#: src/gui/sysConf.cpp:2092 +msgid "Capacitor values (nF):" +msgstr "" + +#: src/gui/sysConf.cpp:2102 +msgid "Initial part volume (channel 1-4):" +msgstr "" + +#: src/gui/sysConf.cpp:2112 +msgid "Initial part volume (channel 5-8):" +msgstr "" + +#: src/gui/sysConf.cpp:2122 +msgid "Envelope mode (channel 1-4):" +msgstr "" + +#: src/gui/sysConf.cpp:2124 +msgid "Capacitor (attack/decay)##EM00" +msgstr "" + +#: src/gui/sysConf.cpp:2128 +msgid "External (volume macro)##EM01" +msgstr "" + +#: src/gui/sysConf.cpp:2134 +msgid "Envelope mode (channel 5-8):" +msgstr "" + +#: src/gui/sysConf.cpp:2136 +msgid "Capacitor (attack/decay)##EM10" +msgstr "" + +#: src/gui/sysConf.cpp:2140 +msgid "External (volume macro)##EM11" +msgstr "" + +#: src/gui/sysConf.cpp:2146 +msgid "Global vibrato:" +msgstr "" + +#: src/gui/sysConf.cpp:2153 +msgid "Depth" +msgstr "" + +#: src/gui/sysConf.cpp:2219 src/gui/sysConf.cpp:2373 +msgid "Waveform storage mode:" +msgstr "" + +#: src/gui/sysConf.cpp:2221 +msgid "RAM" +msgstr "" + +#: src/gui/sysConf.cpp:2225 +msgid "ROM (up to 8 waves)" +msgstr "" + +#: src/gui/sysConf.cpp:2241 +msgid "Compatible noise frequencies" +msgstr "" + +#: src/gui/sysConf.cpp:2256 +msgid "Legacy slides and pitch (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:2314 +msgid "PAL (1.77MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:2344 +msgid "Banking style:" +msgstr "" + +#: src/gui/sysConf.cpp:2346 +msgid "Namco System 2 (2MB)" +msgstr "" + +#: src/gui/sysConf.cpp:2351 +msgid "Namco System 21 (4MB)" +msgstr "" + +#: src/gui/sysConf.cpp:2356 +msgid "Raw (16MB; no VGM export!)" +msgstr "" + +#: src/gui/sysConf.cpp:2375 +msgid "Dynamic (unconfirmed)" +msgstr "" + +#: src/gui/sysConf.cpp:2379 +msgid "Static (up to 5 waves)" +msgstr "" + +#: src/gui/sysConf.cpp:2414 +msgid "DS (4MB RAM)" +msgstr "" + +#: src/gui/sysConf.cpp:2418 +msgid "DSi (16MB RAM)" +msgstr "" + +#: src/gui/sysConf.cpp:2444 src/gui/settings.cpp:727 +msgid "nothing to configure" +msgstr "" + +#: src/gui/sysConf.cpp:2467 +msgid "Custom clock rate" +msgstr "" + +#: src/gui/volMeter.cpp:36 src/gui/settings.cpp:3969 src/gui/guiConst.cpp:596 +msgid "Volume Meter" +msgstr "" + +#: src/gui/userPresets.cpp:325 +msgid "User Systems" +msgstr "" + +#: src/gui/userPresets.cpp:337 +msgid "Error! User category does not exist!" +msgstr "" + +#: src/gui/userPresets.cpp:346 src/gui/newSong.cpp:181 +msgid "Systems" +msgstr "" + +#: src/gui/userPresets.cpp:349 +msgid "New Preset" +msgstr "" + +#: src/gui/userPresets.cpp:361 +msgid "select a preset" +msgstr "" + +#: src/gui/userPresets.cpp:374 +msgid "Remove##UPresetRemove" +msgstr "" + +#: src/gui/userPresets.cpp:439 src/gui/settings.cpp:1135 +msgid "Configure" +msgstr "" + +#: src/gui/userPresets.cpp:470 +msgid "Advanced" +msgstr "" + +#: src/gui/userPresets.cpp:476 +msgid "" +"insert additional settings in `option=value` format.\n" +"available options:\n" +"- tickRate" +msgstr "" + +#: src/gui/userPresets.cpp:509 +msgid "Save and Close" +msgstr "" + +#: src/gui/userPresets.cpp:515 src/gui/settings.cpp:1238 +#: src/gui/settings.cpp:2161 src/gui/settings.cpp:2553 +#: src/gui/settings.cpp:3796 +msgid "Import" +msgstr "" + +#: src/gui/userPresets.cpp:519 +msgid "Import (replace)" +msgstr "" + +#: src/gui/effectList.cpp:14 src/gui/guiConst.cpp:606 +msgid "Effect List" +msgstr "" + +#: src/gui/effectList.cpp:18 +#, c-format +msgid "Chip at cursor: %s" +msgstr "" + +#: src/gui/effectList.cpp:21 src/gui/settings.cpp:6674 +msgid "Search" +msgstr "" + +#: src/gui/effectList.cpp:25 +msgid "Effect types to show:" +msgstr "" + +#: src/gui/effectList.cpp:47 +msgid "Description" +msgstr "" + +#: src/gui/subSongs.cpp:22 src/gui/subSongs.cpp:32 +#, c-format +msgid "%d. " +msgstr "" + +#: src/gui/subSongs.cpp:73 src/gui/subSongs.cpp:93 +msgid "too many subsongs!" +msgstr "" + +#: src/gui/subSongs.cpp:114 +msgid "this is the only subsong!" +msgstr "" + +#: src/gui/subSongs.cpp:116 +msgid "are you sure you want to remove this subsong?" +msgstr "" + +#: src/gui/spoiler.cpp:30 +msgid "Spoiler" +msgstr "" + +#: src/gui/spoiler.cpp:32 +msgid "SPOILER" +msgstr "" + +#: src/gui/settings.cpp:104 src/gui/settings.cpp:114 src/gui/settings.cpp:124 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:105 src/gui/settings.cpp:115 src/gui/settings.cpp:125 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:168 +msgid "ASAP (C++ port)" +msgstr "" + +#: src/gui/settings.cpp:191 +msgid "ESFMu (fast)" +msgstr "" + +#: src/gui/settings.cpp:205 +msgid "Lower" +msgstr "" + +#: src/gui/settings.cpp:207 +msgid "Medium" +msgstr "" + +#: src/gui/settings.cpp:209 +msgid "Ultra" +msgstr "" + +#: src/gui/settings.cpp:210 +msgid "Ultimate" +msgstr "" + +#: src/gui/settings.cpp:214 +msgid "evdev SND_TONE" +msgstr "" + +#: src/gui/settings.cpp:215 +msgid "KIOCSOUND on /dev/tty1" +msgstr "" + +#: src/gui/settings.cpp:216 +msgid "/dev/port" +msgstr "" + +#: src/gui/settings.cpp:217 +msgid "KIOCSOUND on standard output" +msgstr "" + +#: src/gui/settings.cpp:218 +msgid "outb()" +msgstr "" + +#: src/gui/settings.cpp:222 src/gui/settings.cpp:232 +msgid "Disabled/custom" +msgstr "" + +#: src/gui/settings.cpp:223 +msgid "Two octaves (0 is C-4, F is D#5)" +msgstr "" + +#: src/gui/settings.cpp:224 +msgid "Raw (note number is value)" +msgstr "" + +#: src/gui/settings.cpp:225 +msgid "Two octaves alternate (lower keys are 0-9, upper keys are A-F)" +msgstr "" + +#: src/gui/settings.cpp:226 src/gui/settings.cpp:233 +msgid "Use dual control change (one for each nibble)" +msgstr "" + +#: src/gui/settings.cpp:227 src/gui/settings.cpp:234 +msgid "Use 14-bit control change" +msgstr "" + +#: src/gui/settings.cpp:228 src/gui/settings.cpp:235 +msgid "Use single control change (imprecise)" +msgstr "" + +#: src/gui/settings.cpp:239 +msgid "--select--" +msgstr "" + +#: src/gui/settings.cpp:240 src/gui/settings.cpp:241 src/gui/settings.cpp:242 +#: src/gui/settings.cpp:243 src/gui/settings.cpp:244 src/gui/settings.cpp:245 +#: src/gui/settings.cpp:246 +msgid "???" +msgstr "" + +#: src/gui/settings.cpp:247 +msgid "Note Off" +msgstr "" + +#: src/gui/settings.cpp:248 +msgid "Note On" +msgstr "" + +#: src/gui/settings.cpp:249 +msgid "Aftertouch" +msgstr "" + +#: src/gui/settings.cpp:250 src/gui/insEdit.cpp:7187 src/gui/insEdit.cpp:7217 +#: src/gui/insEdit.cpp:7382 src/gui/insEdit.cpp:7403 src/gui/insEdit.cpp:7415 +#: src/gui/insEdit.cpp:7430 +msgid "Control" +msgstr "" + +#: src/gui/settings.cpp:251 src/gui/settings.cpp:573 src/gui/settings.cpp:3177 +msgid "Program" +msgstr "" + +#: src/gui/settings.cpp:252 +msgid "ChanPressure" +msgstr "" + +#: src/gui/settings.cpp:253 +msgid "Pitch Bend" +msgstr "" + +#: src/gui/settings.cpp:254 +msgid "SysEx" +msgstr "" + +#: src/gui/settings.cpp:258 src/gui/settings.cpp:1713 src/gui/settings.cpp:1723 +#: src/gui/settings.cpp:1743 src/gui/settings.cpp:1749 +#, c-format +msgid "Any" +msgstr "" + +#: src/gui/settings.cpp:262 src/gui/settings.cpp:3363 src/gui/settings.cpp:3928 +#: src/gui/settings.cpp:4121 +msgid "Instrument" +msgstr "" + +#: src/gui/settings.cpp:264 +msgid "Effect 1 type" +msgstr "" + +#: src/gui/settings.cpp:265 +msgid "Effect 1 value" +msgstr "" + +#: src/gui/settings.cpp:266 +msgid "Effect 2 type" +msgstr "" + +#: src/gui/settings.cpp:267 +msgid "Effect 2 value" +msgstr "" + +#: src/gui/settings.cpp:268 +msgid "Effect 3 type" +msgstr "" + +#: src/gui/settings.cpp:269 +msgid "Effect 3 value" +msgstr "" + +#: src/gui/settings.cpp:270 +msgid "Effect 4 type" +msgstr "" + +#: src/gui/settings.cpp:271 +msgid "Effect 4 value" +msgstr "" + +#: src/gui/settings.cpp:272 +msgid "Effect 5 type" +msgstr "" + +#: src/gui/settings.cpp:273 +msgid "Effect 5 value" +msgstr "" + +#: src/gui/settings.cpp:274 +msgid "Effect 6 type" +msgstr "" + +#: src/gui/settings.cpp:275 +msgid "Effect 6 value" +msgstr "" + +#: src/gui/settings.cpp:276 +msgid "Effect 7 type" +msgstr "" + +#: src/gui/settings.cpp:277 +msgid "Effect 7 value" +msgstr "" + +#: src/gui/settings.cpp:278 +msgid "Effect 8 type" +msgstr "" + +#: src/gui/settings.cpp:279 +msgid "Effect 8 value" +msgstr "" + +#: src/gui/settings.cpp:315 +msgid "Press key..." +msgstr "" + +#: src/gui/settings.cpp:564 +msgid "Do you want to save your settings?" +msgstr "" + +#: src/gui/settings.cpp:571 +msgid "General" +msgstr "" + +#: src/gui/settings.cpp:588 +msgid "Language" +msgstr "" + +#: src/gui/settings.cpp:606 +msgid "Render backend" +msgstr "" + +#: src/gui/settings.cpp:661 src/gui/settings.cpp:680 src/gui/settings.cpp:1312 +msgid "you may need to restart Furnace for this setting to take effect." +msgstr "" + +#: src/gui/settings.cpp:664 +msgid "Advanced render backend settings" +msgstr "" + +#: src/gui/settings.cpp:666 +msgid "Render driver" +msgstr "" + +#: src/gui/settings.cpp:666 src/gui/settings.cpp:667 src/gui/settings.cpp:1298 +#: src/gui/settings.cpp:1299 src/gui/piano.cpp:108 +msgid "Automatic" +msgstr "" + +#: src/gui/settings.cpp:683 +msgid "" +"beware: changing these settings may render Furnace unusable! do so at your " +"own risk.\n" +"start Furnace with -safemode if you mess something up." +msgstr "" + +#: src/gui/settings.cpp:684 +msgid "Red bits" +msgstr "" + +#: src/gui/settings.cpp:689 +msgid "Green bits" +msgstr "" + +#: src/gui/settings.cpp:694 +msgid "Blue bits" +msgstr "" + +#: src/gui/settings.cpp:699 +msgid "Alpha bits" +msgstr "" + +#: src/gui/settings.cpp:704 +msgid "Color depth" +msgstr "" + +#: src/gui/settings.cpp:709 +msgid "Stencil buffer size" +msgstr "" + +#: src/gui/settings.cpp:714 src/gui/settings.cpp:1385 +msgid "Buffer size" +msgstr "" + +#: src/gui/settings.cpp:720 +msgid "Double buffer" +msgstr "" + +#: src/gui/settings.cpp:725 +msgid "" +"the following values are common (in red, green, blue, alpha order):\n" +"- 24 bits: 8, 8, 8, 0\n" +"- 16 bits: 5, 6, 5, 0\n" +"- 32 bits (with alpha): 8, 8, 8, 8\n" +"- 30 bits (deep): 10, 10, 10, 0" +msgstr "" + +#: src/gui/settings.cpp:732 +#, c-format +msgid "" +"current backend: %s\n" +"%s\n" +"%s\n" +"%s" +msgstr "" + +#: src/gui/settings.cpp:735 +msgid "VSync" +msgstr "" + +#: src/gui/settings.cpp:743 +msgid "Frame rate limit" +msgstr "" + +#: src/gui/settings.cpp:743 +msgid "Unlimited" +msgstr "" + +#: src/gui/settings.cpp:749 +msgid "only applies when VSync is disabled." +msgstr "" + +#: src/gui/settings.cpp:753 +msgid "Display render time" +msgstr "" + +#: src/gui/settings.cpp:760 +msgid "Late render clear" +msgstr "" + +#: src/gui/settings.cpp:765 +msgid "" +"calls rend->clear() after rend->present(). might reduce UI latency by one " +"frame in some drivers." +msgstr "" + +#: src/gui/settings.cpp:770 +msgid "Power-saving mode" +msgstr "" + +#: src/gui/settings.cpp:775 +msgid "" +"saves power by lowering the frame rate to 2fps when idle.\n" +"may cause issues under Mesa drivers!" +msgstr "" + +#: src/gui/settings.cpp:780 +msgid "Disable threaded input (restart after changing!)" +msgstr "" + +#: src/gui/settings.cpp:785 +msgid "" +"threaded input processes key presses for note preview on a separate thread " +"(on supported platforms), which reduces latency.\n" +"however, crashes have been reported when threaded input is on. enable this " +"option if that is the case." +msgstr "" + +#: src/gui/settings.cpp:790 +msgid "Enable event delay" +msgstr "" + +#: src/gui/settings.cpp:796 +msgid "may cause issues with high-polling-rate mice when previewing notes." +msgstr "" + +#: src/gui/settings.cpp:800 +msgid "Per-channel oscilloscope threads" +msgstr "" + +#: src/gui/settings.cpp:808 +msgid "you're being silly, aren't you? that's enough." +msgstr "" + +#: src/gui/settings.cpp:812 +msgid "what are you doing? stop!" +msgstr "" + +#: src/gui/settings.cpp:816 +#, c-format +msgid "" +"it is a bad idea to set this number higher than your CPU core count (%d)!" +msgstr "" + +#: src/gui/settings.cpp:821 +msgid "Oscilloscope rendering engine:" +msgstr "" + +#: src/gui/settings.cpp:823 +msgid "ImGui line plot" +msgstr "" + +#: src/gui/settings.cpp:827 +msgid "render using Dear ImGui's built-in line drawing functions." +msgstr "" + +#: src/gui/settings.cpp:829 +msgid "GLSL (if available)" +msgstr "" + +#: src/gui/settings.cpp:834 +msgid "" +"render using shaders that run on the graphics card.\n" +"only available in OpenGL ES 2.0 render backend." +msgstr "" + +#: src/gui/settings.cpp:836 +msgid "" +"render using shaders that run on the graphics card.\n" +"only available in OpenGL 3.0 render backend." +msgstr "" + +#: src/gui/settings.cpp:843 +msgid "Vibration" +msgstr "" + +#: src/gui/settings.cpp:845 +msgid "Strength" +msgstr "" + +#: src/gui/settings.cpp:851 src/gui/insEdit.cpp:2284 src/gui/insEdit.cpp:2382 +#: src/gui/insEdit.cpp:5582 src/gui/insEdit.cpp:6241 +msgid "Length" +msgstr "" + +#: src/gui/settings.cpp:859 src/gui/gui.cpp:4191 +msgid "File" +msgstr "" + +#: src/gui/settings.cpp:862 +msgid "Use system file picker" +msgstr "" + +#: src/gui/settings.cpp:867 +msgid "Number of recent files" +msgstr "" + +#: src/gui/settings.cpp:874 +msgid "Compress when saving" +msgstr "" + +#: src/gui/settings.cpp:879 +msgid "use zlib to compress saved songs." +msgstr "" + +#: src/gui/settings.cpp:883 +msgid "Save unused patterns" +msgstr "" + +#: src/gui/settings.cpp:889 +msgid "Use new pattern format when saving" +msgstr "" + +#: src/gui/settings.cpp:894 +msgid "" +"use a packed format which saves space when saving songs.\n" +"disable if you need compatibility with older Furnace and/or tools\n" +"which do not support this format." +msgstr "" + +#: src/gui/settings.cpp:898 +msgid "Don't apply compatibility flags when loading .dmf" +msgstr "" + +#: src/gui/settings.cpp:903 +msgid "do not report any issues arising from the use of this option!" +msgstr "" + +#: src/gui/settings.cpp:906 +msgid "Play after opening song:" +msgstr "" + +#: src/gui/settings.cpp:908 +msgid "No##pol0" +msgstr "" + +#: src/gui/settings.cpp:912 +msgid "Only if already playing##pol1" +msgstr "" + +#: src/gui/settings.cpp:916 +msgid "Yes##pol0" +msgstr "" + +#: src/gui/settings.cpp:922 +msgid "Audio export loop/fade out time:" +msgstr "" + +#: src/gui/settings.cpp:924 +msgid "Set to these values on start-up:##fot0" +msgstr "" + +#: src/gui/settings.cpp:942 +msgid "Remember last values##fot1" +msgstr "" + +#: src/gui/settings.cpp:949 +msgid "Store instrument name in .fui" +msgstr "" + +#: src/gui/settings.cpp:954 +msgid "" +"when enabled, saving an instrument will store its name.\n" +"this may increase file size." +msgstr "" + +#: src/gui/settings.cpp:958 +msgid "Load instrument name from .fui" +msgstr "" + +#: src/gui/settings.cpp:963 +msgid "" +"when enabled, loading an instrument will use the stored name (if present).\n" +"otherwise, it will use the file name." +msgstr "" + +#: src/gui/settings.cpp:967 +msgid "Auto-fill file name when saving" +msgstr "" + +#: src/gui/settings.cpp:972 +msgid "" +"fill the file name field with an appropriate file name when saving or " +"exporting." +msgstr "" + +#: src/gui/settings.cpp:976 src/gui/gui.cpp:5563 src/gui/gui.cpp:5613 +msgid "New Song" +msgstr "" + +#: src/gui/settings.cpp:978 +msgid "Initial system:" +msgstr "" + +#: src/gui/settings.cpp:980 +msgid "Current system" +msgstr "" + +#: src/gui/settings.cpp:993 src/gui/waveEdit.cpp:1149 src/gui/gui.cpp:3046 +msgid "Randomize" +msgstr "" + +#: src/gui/settings.cpp:1043 +msgid "Reset to defaults" +msgstr "" + +#: src/gui/settings.cpp:1178 +msgid "When creating new song:" +msgstr "" + +#: src/gui/settings.cpp:1180 +msgid "Display system preset selector##NSB0" +msgstr "" + +#: src/gui/settings.cpp:1184 +msgid "Start with initial system##NSB1" +msgstr "" + +#: src/gui/settings.cpp:1188 +msgid "Default author name" +msgstr "" + +#: src/gui/settings.cpp:1192 +msgid "Start-up" +msgstr "" + +#: src/gui/settings.cpp:1193 +msgid "Play intro on start-up:" +msgstr "" + +#: src/gui/settings.cpp:1195 +msgid "No##pis0" +msgstr "" + +#: src/gui/settings.cpp:1199 +msgid "Short##pis1" +msgstr "" + +#: src/gui/settings.cpp:1203 +msgid "Full (short when loading song)##pis2" +msgstr "" + +#: src/gui/settings.cpp:1207 +msgid "Full (always)##pis3" +msgstr "" + +#: src/gui/settings.cpp:1214 +msgid "Disable fade-in during start-up" +msgstr "" + +#: src/gui/settings.cpp:1220 +msgid "About screen party time" +msgstr "" + +#: src/gui/settings.cpp:1225 +msgid "Warning: may cause epileptic seizures." +msgstr "" + +#: src/gui/settings.cpp:1229 +msgid "Behavior" +msgstr "" + +#: src/gui/settings.cpp:1231 +msgid "New instruments are blank" +msgstr "" + +#: src/gui/settings.cpp:1237 src/gui/settings.cpp:4255 +msgid "Configuration" +msgstr "" + +#: src/gui/settings.cpp:1246 +msgid "Factory Reset" +msgstr "" + +#: src/gui/settings.cpp:1247 +msgid "" +"Are you sure you want to reset all Furnace settings?\n" +"You must restart Furnace after doing so." +msgstr "" + +#: src/gui/settings.cpp:1255 +msgid "Output" +msgstr "" + +#: src/gui/settings.cpp:1263 +msgid "Backend" +msgstr "" + +#: src/gui/settings.cpp:1296 +msgid "Driver" +msgstr "" + +#: src/gui/settings.cpp:1319 +msgid "Device" +msgstr "" + +#: src/gui/settings.cpp:1323 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:1324 +msgid "ALERT - TRESPASSER DETECTED" +msgstr "" + +#: src/gui/settings.cpp:1326 +msgid "you have been arrested for trying to engage with a disabled combo box." +msgstr "" + +#: src/gui/settings.cpp:1333 src/gui/settings.cpp:1335 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:1371 src/gui/insEdit.cpp:7186 +msgid "Outputs" +msgstr "" + +#: src/gui/settings.cpp:1379 +msgid "" +"common values:\n" +"- 1 for mono\n" +"- 2 for stereo\n" +"- 4 for quadraphonic\n" +"- 6 for 5.1 surround\n" +"- 8 for 7.1 surround" +msgstr "" + +#: src/gui/settings.cpp:1387 +#, c-format +msgid "%d (latency: ~%.1fms)" +msgstr "" + +#: src/gui/settings.cpp:1402 +msgid "Multi-threaded (EXPERIMENTAL)" +msgstr "" + +#: src/gui/settings.cpp:1411 +msgid "" +"runs chip emulation on separate threads.\n" +"may increase performance when using heavy emulation cores.\n" +"\n" +"warnings:\n" +"- experimental!\n" +"- only useful on multi-chip songs." +msgstr "" + +#: src/gui/settings.cpp:1416 +msgid "Number of threads" +msgstr "" + +#: src/gui/settings.cpp:1423 +msgid "that's the limit!" +msgstr "" + +#: src/gui/settings.cpp:1427 +#, c-format +msgid "" +"it is a VERY bad idea to set this number higher than your CPU core count " +"(%d)!" +msgstr "" + +#: src/gui/settings.cpp:1435 +msgid "Low-latency mode" +msgstr "" + +#: src/gui/settings.cpp:1440 +msgid "" +"reduces latency by running the engine faster than the tick rate.\n" +"useful for live playback/jam mode.\n" +"\n" +"warning: only enable if your buffer size is small (10ms or less)." +msgstr "" + +#: src/gui/settings.cpp:1444 +msgid "Force mono audio" +msgstr "" + +#: src/gui/settings.cpp:1452 +msgid "Exclusive mode" +msgstr "" + +#: src/gui/settings.cpp:1463 +#, c-format +msgid "want: %d samples @ %.0fHz (%d channel)" +msgid_plural "want: %d samples @ %.0fHz (%d channels)" +msgstr[0] "" +msgstr[1] "" + +#: src/gui/settings.cpp:1464 +#, c-format +msgid "got: %d samples @ %.0fHz (%d channel)" +msgid_plural "got: %d samples @ %.0fHz (%d channels)" +msgstr[0] "" +msgstr[1] "" + +#: src/gui/settings.cpp:1471 +msgid "Mixing" +msgstr "" + +#: src/gui/settings.cpp:1473 src/gui/settings.cpp:2082 +msgid "Quality" +msgstr "" + +#: src/gui/settings.cpp:1478 +msgid "Software clipping" +msgstr "" + +#: src/gui/settings.cpp:1484 +msgid "DC offset correction" +msgstr "" + +#: src/gui/settings.cpp:1502 src/gui/guiConst.cpp:740 +msgid "Sample preview" +msgstr "" + +#: src/gui/settings.cpp:1515 +msgid "MIDI" +msgstr "" + +#: src/gui/settings.cpp:1517 src/gui/settings.cpp:1519 +msgid "MIDI input" +msgstr "" + +#: src/gui/settings.cpp:1521 src/gui/settings.cpp:1524 +#: src/gui/settings.cpp:1815 src/gui/settings.cpp:1817 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:1540 +msgid "Re-scan MIDI devices" +msgstr "" + +#: src/gui/settings.cpp:1551 src/gui/settings.cpp:2258 +msgid "Note input" +msgstr "" + +#: src/gui/settings.cpp:1552 +msgid "Velocity input" +msgstr "" + +#: src/gui/settings.cpp:1556 +msgid "Map MIDI channels to direct channels" +msgstr "" + +#: src/gui/settings.cpp:1562 +msgid "Program change pass-through" +msgstr "" + +#: src/gui/settings.cpp:1567 +msgid "Map Yamaha FM voice data to instruments" +msgstr "" + +#: src/gui/settings.cpp:1569 +msgid "Program change is instrument selection" +msgstr "" + +#: src/gui/settings.cpp:1573 +msgid "Value input style" +msgstr "" + +#: src/gui/settings.cpp:1576 src/gui/settings.cpp:1601 +msgid "Control##valueCCS" +msgstr "" + +#: src/gui/settings.cpp:1582 src/gui/settings.cpp:1607 +msgid "CC of upper nibble##valueCC1" +msgstr "" + +#: src/gui/settings.cpp:1582 src/gui/settings.cpp:1607 +msgid "MSB CC##valueCC1" +msgstr "" + +#: src/gui/settings.cpp:1587 src/gui/settings.cpp:1612 +msgid "CC of lower nibble##valueCC2" +msgstr "" + +#: src/gui/settings.cpp:1587 src/gui/settings.cpp:1612 +msgid "LSB CC##valueCC2" +msgstr "" + +#: src/gui/settings.cpp:1594 +msgid "Per-column control change" +msgstr "" + +#: src/gui/settings.cpp:1624 src/gui/settings.cpp:1634 +msgid "Volume curve" +msgstr "" + +#: src/gui/settings.cpp:1637 +msgid "Actions:" +msgstr "" + +#: src/gui/settings.cpp:1651 +msgid "" +"(learning! press a button or move a slider/knob/something on your device.)" +msgstr "" + +#: src/gui/settings.cpp:1665 src/gui/settings.cpp:2277 +#: src/gui/settings.cpp:6687 src/gui/sampleEdit.cpp:501 +#: src/gui/insEdit.cpp:5321 +msgid "Type" +msgstr "" + +#: src/gui/settings.cpp:1669 +msgid "Note/Control" +msgstr "" + +#: src/gui/settings.cpp:1671 +msgid "Velocity/Value" +msgstr "" + +#: src/gui/settings.cpp:1673 +msgid "Action" +msgstr "" + +#: src/gui/settings.cpp:1765 src/gui/settings.cpp:1766 +msgid "--none--" +msgstr "" + +#: src/gui/settings.cpp:1787 +msgid "waiting...##BLearn" +msgstr "" + +#: src/gui/settings.cpp:1787 +msgid "Learn##BLearn" +msgstr "" + +#: src/gui/settings.cpp:1811 src/gui/settings.cpp:1813 +msgid "MIDI output" +msgstr "" + +#: src/gui/settings.cpp:1830 +msgid "Output mode:" +msgstr "" + +#: src/gui/settings.cpp:1832 +msgid "Off (use for TX81Z)" +msgstr "" + +#: src/gui/settings.cpp:1836 +msgid "Melodic" +msgstr "" + +#: src/gui/settings.cpp:1847 +msgid "Send Program Change" +msgstr "" + +#: src/gui/settings.cpp:1853 +msgid "Send MIDI clock" +msgstr "" + +#: src/gui/settings.cpp:1859 +msgid "Send MIDI timecode" +msgstr "" + +#: src/gui/settings.cpp:1865 +msgid "Timecode frame rate:" +msgstr "" + +#: src/gui/settings.cpp:1867 +msgid "Closest to Tick Rate" +msgstr "" + +#: src/gui/settings.cpp:1871 +msgid "Film (24fps)" +msgstr "" + +#: src/gui/settings.cpp:1875 +msgid "PAL (25fps)" +msgstr "" + +#: src/gui/settings.cpp:1879 +msgid "NTSC drop (29.97fps)" +msgstr "" + +#: src/gui/settings.cpp:1883 +msgid "NTSC non-drop (30fps)" +msgstr "" + +#: src/gui/settings.cpp:1892 +msgid "Emulation" +msgstr "" + +#: src/gui/settings.cpp:1894 +msgid "Cores" +msgstr "" + +#: src/gui/settings.cpp:1903 +msgid "Playback Core(s)" +msgstr "" + +#: src/gui/settings.cpp:1905 src/gui/settings.cpp:2093 +msgid "used for playback" +msgstr "" + +#: src/gui/settings.cpp:1908 +msgid "Render Core(s)" +msgstr "" + +#: src/gui/settings.cpp:1910 src/gui/settings.cpp:2098 +msgid "used in audio export" +msgstr "" + +#: src/gui/settings.cpp:2091 +msgid "Playback" +msgstr "" + +#: src/gui/settings.cpp:2096 +msgid "Render" +msgstr "" + +#: src/gui/settings.cpp:2120 +msgid "PC Speaker strategy" +msgstr "" + +#: src/gui/settings.cpp:2158 src/gui/settings.cpp:2160 +msgid "Keyboard" +msgstr "" + +#: src/gui/settings.cpp:2169 src/gui/settings.cpp:3804 +msgid "Reset defaults" +msgstr "" + +#: src/gui/settings.cpp:2170 +msgid "Are you sure you want to reset the keyboard settings?" +msgstr "" + +#: src/gui/settings.cpp:2172 +msgid "Global hotkeys" +msgstr "" + +#: src/gui/settings.cpp:2209 +msgid "Window activation" +msgstr "" + +#: src/gui/settings.cpp:2275 +msgid "Key" +msgstr "" + +#: src/gui/settings.cpp:2279 src/gui/findReplace.cpp:725 +#: src/gui/findReplace.cpp:1003 +msgid "Value" +msgstr "" + +#: src/gui/settings.cpp:2289 +#, c-format +msgid "Macro release##SNType_%d" +msgstr "" + +#: src/gui/settings.cpp:2294 +#, c-format +msgid "Note release##SNType_%d" +msgstr "" + +#: src/gui/settings.cpp:2299 +#, c-format +msgid "Note off##SNType_%d" +msgstr "" + +#: src/gui/settings.cpp:2304 +#, c-format +msgid "Note##SNType_%d" +msgstr "" + +#: src/gui/settings.cpp:2328 +msgid "Add..." +msgstr "" + +#: src/gui/settings.cpp:2418 +msgid "Instrument list" +msgstr "" + +#: src/gui/settings.cpp:2438 +msgid "Wavetable list" +msgstr "" + +#: src/gui/settings.cpp:2459 +msgid "Sample list" +msgstr "" + +#: src/gui/settings.cpp:2509 +msgid "Sample editor" +msgstr "" + +#: src/gui/settings.cpp:2547 src/gui/settings.cpp:3814 +#: src/gui/settings.cpp:3844 +msgid "Interface" +msgstr "" + +#: src/gui/settings.cpp:2549 +msgid "Layout" +msgstr "" + +#: src/gui/settings.cpp:2551 +msgid "Workspace layout:" +msgstr "" + +#: src/gui/settings.cpp:2561 src/gui/gui.cpp:2920 +msgid "Reset" +msgstr "" + +#: src/gui/settings.cpp:2562 src/gui/gui.cpp:4455 +msgid "Are you sure you want to reset the workspace layout?" +msgstr "" + +#: src/gui/settings.cpp:2566 +msgid "Allow docking editors" +msgstr "" + +#: src/gui/settings.cpp:2573 +msgid "Remember window position" +msgstr "" + +#: src/gui/settings.cpp:2578 +msgid "remembers the window's last position on start-up." +msgstr "" + +#: src/gui/settings.cpp:2583 +msgid "Only allow window movement when clicking on title bar" +msgstr "" + +#: src/gui/settings.cpp:2590 +msgid "Center pop-up windows" +msgstr "" + +#: src/gui/settings.cpp:2595 +msgid "Play/edit controls layout:" +msgstr "" + +#: src/gui/settings.cpp:2597 +msgid "Classic##ecl0" +msgstr "" + +#: src/gui/settings.cpp:2601 +msgid "Compact##ecl1" +msgstr "" + +#: src/gui/settings.cpp:2605 +msgid "Compact (vertical)##ecl2" +msgstr "" + +#: src/gui/settings.cpp:2609 +msgid "Split##ecl3" +msgstr "" + +#: src/gui/settings.cpp:2615 +msgid "Position of buttons in Orders:" +msgstr "" + +#: src/gui/settings.cpp:2617 +msgid "Top##obp0" +msgstr "" + +#: src/gui/settings.cpp:2621 +msgid "Left##obp1" +msgstr "" + +#: src/gui/settings.cpp:2625 +msgid "Right##obp2" +msgstr "" + +#: src/gui/settings.cpp:2632 +msgid "Mouse" +msgstr "" + +#: src/gui/settings.cpp:2634 +msgid "Double-click time (seconds)" +msgstr "" + +#: src/gui/settings.cpp:2643 +msgid "Don't raise pattern editor on click" +msgstr "" + +#: src/gui/settings.cpp:2649 +msgid "Focus pattern editor when selecting instrument" +msgstr "" + +#: src/gui/settings.cpp:2654 +msgid "Note preview behavior:" +msgstr "" + +#: src/gui/settings.cpp:2656 +msgid "Never##npb0" +msgstr "" + +#: src/gui/settings.cpp:2660 +msgid "When cursor is in Note column##npb1" +msgstr "" + +#: src/gui/settings.cpp:2664 +msgid "When cursor is in Note column or not in edit mode##npb2" +msgstr "" + +#: src/gui/settings.cpp:2668 +msgid "Always##npb3" +msgstr "" + +#: src/gui/settings.cpp:2674 +msgid "Allow dragging selection:" +msgstr "" + +#: src/gui/settings.cpp:2676 +msgid "No##dms0" +msgstr "" + +#: src/gui/settings.cpp:2680 +msgid "Yes##dms1" +msgstr "" + +#: src/gui/settings.cpp:2684 +msgid "Yes (while holding Ctrl only)##dms2" +msgstr "" + +#: src/gui/settings.cpp:2690 +msgid "Toggle channel solo on:" +msgstr "" + +#: src/gui/settings.cpp:2692 +msgid "Right-click or double-click##soloA" +msgstr "" + +#: src/gui/settings.cpp:2696 +msgid "Right-click##soloR" +msgstr "" + +#: src/gui/settings.cpp:2700 +msgid "Double-click##soloD" +msgstr "" + +#: src/gui/settings.cpp:2707 +msgid "Double click selects entire column" +msgstr "" + +#: src/gui/settings.cpp:2713 +msgid "Cursor behavior" +msgstr "" + +#: src/gui/settings.cpp:2715 +msgid "Insert pushes entire channel row" +msgstr "" + +#: src/gui/settings.cpp:2721 +msgid "Pull delete affects entire channel row" +msgstr "" + +#: src/gui/settings.cpp:2727 +msgid "Push value when overwriting instead of clearing it" +msgstr "" + +#: src/gui/settings.cpp:2733 +msgid "Keyboard note/value input repeat (hold key to input continuously)" +msgstr "" + +#: src/gui/settings.cpp:2738 +msgid "Effect input behavior:" +msgstr "" + +#: src/gui/settings.cpp:2740 +msgid "Move down##eicb0" +msgstr "" + +#: src/gui/settings.cpp:2744 +msgid "Move to effect value (otherwise move down)##eicb1" +msgstr "" + +#: src/gui/settings.cpp:2748 +msgid "Move to effect value/next effect and wrap around##eicb2" +msgstr "" + +#: src/gui/settings.cpp:2755 +msgid "Delete effect value when deleting effect" +msgstr "" + +#: src/gui/settings.cpp:2761 +msgid "Change current instrument when changing instrument column (absorb)" +msgstr "" + +#: src/gui/settings.cpp:2767 +msgid "Remove instrument value when inserting note off/release" +msgstr "" + +#: src/gui/settings.cpp:2773 +msgid "Remove volume value when inserting note off/release" +msgstr "" + +#: src/gui/settings.cpp:2779 +msgid "Cursor movement" +msgstr "" + +#: src/gui/settings.cpp:2781 +msgid "Wrap horizontally:" +msgstr "" + +#: src/gui/settings.cpp:2783 +msgid "No##wrapH0" +msgstr "" + +#: src/gui/settings.cpp:2787 +msgid "Yes##wrapH1" +msgstr "" + +#: src/gui/settings.cpp:2791 +msgid "Yes, and move to next/prev row##wrapH2" +msgstr "" + +#: src/gui/settings.cpp:2797 +msgid "Wrap vertically:" +msgstr "" + +#: src/gui/settings.cpp:2799 +msgid "No##wrapV0" +msgstr "" + +#: src/gui/settings.cpp:2803 +msgid "Yes##wrapV1" +msgstr "" + +#: src/gui/settings.cpp:2807 +msgid "Yes, and move to next/prev pattern##wrapV2" +msgstr "" + +#: src/gui/settings.cpp:2811 +msgid "Yes, and move to next/prev pattern (wrap around)##wrapV2" +msgstr "" + +#: src/gui/settings.cpp:2817 +msgid "Cursor movement keys behavior:" +msgstr "" + +#: src/gui/settings.cpp:2819 +msgid "Move by one##cmk0" +msgstr "" + +#: src/gui/settings.cpp:2823 +msgid "Move by Edit Step##cmk1" +msgstr "" + +#: src/gui/settings.cpp:2830 +msgid "Move cursor by edit step on delete" +msgstr "" + +#: src/gui/settings.cpp:2836 +msgid "Move cursor by edit step on insert (push)" +msgstr "" + +#: src/gui/settings.cpp:2842 +msgid "Move cursor up on backspace-delete" +msgstr "" + +#: src/gui/settings.cpp:2848 +msgid "Move cursor to end of clipboard content when pasting" +msgstr "" + +#: src/gui/settings.cpp:2854 +msgid "Scrolling" +msgstr "" + +#: src/gui/settings.cpp:2856 +msgid "Change order when scrolling outside of pattern bounds:" +msgstr "" + +#: src/gui/settings.cpp:2858 +msgid "No##pscroll0" +msgstr "" + +#: src/gui/settings.cpp:2862 +msgid "Yes##pscroll1" +msgstr "" + +#: src/gui/settings.cpp:2866 +msgid "Yes, and wrap around song##pscroll2" +msgstr "" + +#: src/gui/settings.cpp:2873 +msgid "Cursor follows current order when moving it" +msgstr "" + +#: src/gui/settings.cpp:2878 +msgid "applies when playback is stopped." +msgstr "" + +#: src/gui/settings.cpp:2882 +msgid "Don't scroll when moving cursor" +msgstr "" + +#: src/gui/settings.cpp:2887 +msgid "Move cursor with scroll wheel:" +msgstr "" + +#: src/gui/settings.cpp:2889 +msgid "No##csw0" +msgstr "" + +#: src/gui/settings.cpp:2893 +msgid "Yes##csw1" +msgstr "" + +#: src/gui/settings.cpp:2897 +msgid "Inverted##csw2" +msgstr "" + +#: src/gui/settings.cpp:2904 +msgid "How many steps to move with each scroll wheel step?" +msgstr "" + +#: src/gui/settings.cpp:2905 +msgid "One##cws0" +msgstr "" + +#: src/gui/settings.cpp:2909 +msgid "Edit Step##cws1" +msgstr "" + +#: src/gui/settings.cpp:2916 src/gui/settings.cpp:3531 +msgid "Assets" +msgstr "" + +#: src/gui/settings.cpp:2919 +msgid "Display instrument type menu when adding instrument" +msgstr "" + +#: src/gui/settings.cpp:2925 +msgid "Select asset after opening one" +msgstr "" + +#: src/gui/settings.cpp:2932 +msgid "Appearance" +msgstr "" + +#: src/gui/settings.cpp:2934 +msgid "Scaling" +msgstr "" + +#: src/gui/settings.cpp:2936 +msgid "Automatic UI scaling factor" +msgstr "" + +#: src/gui/settings.cpp:2945 +msgid "UI scaling factor" +msgstr "" + +#: src/gui/settings.cpp:2952 +msgid "Icon size" +msgstr "" + +#: src/gui/settings.cpp:2967 +msgid "Font renderer" +msgstr "" + +#: src/gui/settings.cpp:2977 +msgid "Main font" +msgstr "" + +#: src/gui/settings.cpp:2988 +msgid "Size##MainFontSize" +msgstr "" + +#: src/gui/settings.cpp:2996 +msgid "Header font" +msgstr "" + +#: src/gui/settings.cpp:3007 +msgid "Size##HeadFontSize" +msgstr "" + +#: src/gui/settings.cpp:3015 +msgid "Pattern font" +msgstr "" + +#: src/gui/settings.cpp:3026 +msgid "Size##PatFontSize" +msgstr "" + +#: src/gui/settings.cpp:3036 +msgid "Anti-aliased fonts" +msgstr "" + +#: src/gui/settings.cpp:3042 +msgid "Support bitmap fonts" +msgstr "" + +#: src/gui/settings.cpp:3047 +msgid "Hinting:" +msgstr "" + +#: src/gui/settings.cpp:3049 +msgid "Off (soft)##fh0" +msgstr "" + +#: src/gui/settings.cpp:3053 +msgid "Slight##fh1" +msgstr "" + +#: src/gui/settings.cpp:3057 +msgid "Normal##fh2" +msgstr "" + +#: src/gui/settings.cpp:3061 +msgid "Full (hard)##fh3" +msgstr "" + +#: src/gui/settings.cpp:3067 +msgid "Auto-hinter:" +msgstr "" + +#: src/gui/settings.cpp:3069 +msgid "Disable##fah0" +msgstr "" + +#: src/gui/settings.cpp:3073 +msgid "Enable##fah1" +msgstr "" + +#: src/gui/settings.cpp:3077 +msgid "Force##fah2" +msgstr "" + +#: src/gui/settings.cpp:3084 +msgid "Oversample" +msgstr "" + +#: src/gui/settings.cpp:3087 +msgid "1×##fos1" +msgstr "" + +#: src/gui/settings.cpp:3092 +msgid "" +"saves video memory. reduces font rendering quality.\n" +"use for pixel/bitmap fonts." +msgstr "" + +#: src/gui/settings.cpp:3095 +msgid "2×##fos2" +msgstr "" + +#: src/gui/settings.cpp:3100 +msgid "default." +msgstr "" + +#: src/gui/settings.cpp:3103 +msgid "3×##fos3" +msgstr "" + +#: src/gui/settings.cpp:3108 +msgid "" +"slightly better font rendering quality.\n" +"uses more video memory." +msgstr "" + +#: src/gui/settings.cpp:3112 +msgid "Load fallback font" +msgstr "" + +#: src/gui/settings.cpp:3117 +msgid "disable to save video memory." +msgstr "" + +#: src/gui/settings.cpp:3121 +msgid "Display Japanese characters" +msgstr "" + +#: src/gui/settings.cpp:3127 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"このオプションは、十分なグラフィックメモリがある場合にのみ切り替えてくださ" +"い。\n" +"これは、Dear ImGuiにダイナミックフォントアトラスが実装されるまでの一時的な解" +"決策です。" +msgstr "" + +#: src/gui/settings.cpp:3135 +msgid "Display Chinese (Simplified) characters" +msgstr "" + +#: src/gui/settings.cpp:3141 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"请在确保你有足够的显存后再启动此设定\n" +"这是一个在ImGui实现动态字体加载之前的临时解决方案" +msgstr "" + +#: src/gui/settings.cpp:3149 +msgid "Display Chinese (Traditional) characters" +msgstr "" + +#: src/gui/settings.cpp:3155 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"請在確保你有足夠的顯存后再啟動此設定\n" +"這是一個在ImGui實現動態字體加載之前的臨時解決方案" +msgstr "" + +#: src/gui/settings.cpp:3163 +msgid "Display Korean characters" +msgstr "" + +#: src/gui/settings.cpp:3169 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"그래픽 메모리가 충분한 경우에만 이 옵션을 선택하십시오.\n" +"이 옵션은 Dear ImGui에 동적 글꼴 아틀라스가 구현될 때까지 임시 솔루션입니다." +msgstr "" + +#: src/gui/settings.cpp:3178 +msgid "Title bar:" +msgstr "" + +#: src/gui/settings.cpp:3180 +msgid "Furnace##tbar0" +msgstr "" + +#: src/gui/settings.cpp:3185 +msgid "Song Name - Furnace##tbar1" +msgstr "" + +#: src/gui/settings.cpp:3190 +msgid "file_name.fur - Furnace##tbar2" +msgstr "" + +#: src/gui/settings.cpp:3195 +msgid "/path/to/file.fur - Furnace##tbar3" +msgstr "" + +#: src/gui/settings.cpp:3203 +msgid "Display system name on title bar" +msgstr "" + +#: src/gui/settings.cpp:3210 +msgid "Display chip names instead of \"multi-system\" in title bar" +msgstr "" + +#: src/gui/settings.cpp:3216 +msgid "Status bar:" +msgstr "" + +#: src/gui/settings.cpp:3218 +msgid "Cursor details##sbar0" +msgstr "" + +#: src/gui/settings.cpp:3222 +msgid "File path##sbar1" +msgstr "" + +#: src/gui/settings.cpp:3226 +msgid "Cursor details or file path##sbar2" +msgstr "" + +#: src/gui/settings.cpp:3230 +msgid "Nothing##sbar3" +msgstr "" + +#: src/gui/settings.cpp:3237 +msgid "Display playback status when playing" +msgstr "" + +#: src/gui/settings.cpp:3242 +msgid "Export options layout:" +msgstr "" + +#: src/gui/settings.cpp:3244 +msgid "Sub-menus in File menu##eol0" +msgstr "" + +#: src/gui/settings.cpp:3248 +msgid "Modal window with tabs##eol1" +msgstr "" + +#: src/gui/settings.cpp:3252 +msgid "Modal windows with options in File menu##eol2" +msgstr "" + +#: src/gui/settings.cpp:3259 +msgid "Capitalize menu bar" +msgstr "" + +#: src/gui/settings.cpp:3265 +msgid "Display add/configure/change/remove chip menus in File menu" +msgstr "" + +#: src/gui/settings.cpp:3279 +msgid "Highlight channel at cursor in Orders" +msgstr "" + +#: src/gui/settings.cpp:3284 +msgid "Orders row number format:" +msgstr "" + +#: src/gui/settings.cpp:3286 +msgid "Decimal##orbD" +msgstr "" + +#: src/gui/settings.cpp:3290 +msgid "Hexadecimal##orbH" +msgstr "" + +#: src/gui/settings.cpp:3299 +msgid "Center pattern view" +msgstr "" + +#: src/gui/settings.cpp:3305 +msgid "Overflow pattern highlights" +msgstr "" + +#: src/gui/settings.cpp:3311 +msgid "Display previous/next pattern" +msgstr "" + +#: src/gui/settings.cpp:3316 +msgid "Pattern row number format:" +msgstr "" + +#: src/gui/settings.cpp:3318 +msgid "Decimal##prbD" +msgstr "" + +#: src/gui/settings.cpp:3322 +msgid "Hexadecimal##prbH" +msgstr "" + +#: src/gui/settings.cpp:3328 +msgid "Pattern view labels:" +msgstr "" + +#: src/gui/settings.cpp:3333 +msgid "Note off (3-char)" +msgstr "" + +#: src/gui/settings.cpp:3338 +msgid "Note release (3-char)" +msgstr "" + +#: src/gui/settings.cpp:3343 +msgid "Macro release (3-char)" +msgstr "" + +#: src/gui/settings.cpp:3348 +msgid "Empty field (3-char)" +msgstr "" + +#: src/gui/settings.cpp:3353 +msgid "Empty field (2-char)" +msgstr "" + +#: src/gui/settings.cpp:3355 +msgid "Pattern view spacing after:" +msgstr "" + +#: src/gui/settings.cpp:3357 src/gui/settings.cpp:4115 +#: src/gui/findReplace.cpp:601 src/gui/findReplace.cpp:864 +#: src/gui/sampleEdit.cpp:590 +msgid "Note" +msgstr "" + +#: src/gui/settings.cpp:3375 src/gui/findReplace.cpp:707 +#: src/gui/findReplace.cpp:974 +msgid "Effect" +msgstr "" + +#: src/gui/settings.cpp:3381 +msgid "Effect value" +msgstr "" + +#: src/gui/settings.cpp:3388 +msgid "Single-digit effects for 00-0F" +msgstr "" + +#: src/gui/settings.cpp:3394 +msgid "Use flats instead of sharps" +msgstr "" + +#: src/gui/settings.cpp:3400 +msgid "Use German notation" +msgstr "" + +#: src/gui/settings.cpp:3408 +msgid "Channel style:" +msgstr "" + +#: src/gui/settings.cpp:3410 +msgid "Classic##CHS0" +msgstr "" + +#: src/gui/settings.cpp:3414 +msgid "Line##CHS1" +msgstr "" + +#: src/gui/settings.cpp:3418 +msgid "Round##CHS2" +msgstr "" + +#: src/gui/settings.cpp:3422 +msgid "Split button##CHS3" +msgstr "" + +#: src/gui/settings.cpp:3426 +msgid "Square border##CH42" +msgstr "" + +#: src/gui/settings.cpp:3430 +msgid "Round border##CHS5" +msgstr "" + +#: src/gui/settings.cpp:3436 +msgid "Channel volume bar:" +msgstr "" + +#: src/gui/settings.cpp:3438 +msgid "None##CHV0" +msgstr "" + +#: src/gui/settings.cpp:3442 +msgid "Simple##CHV1" +msgstr "" + +#: src/gui/settings.cpp:3446 +msgid "Stereo##CHV2" +msgstr "" + +#: src/gui/settings.cpp:3450 +msgid "Real##CHV3" +msgstr "" + +#: src/gui/settings.cpp:3454 +msgid "Real (stereo)##CHV4" +msgstr "" + +#: src/gui/settings.cpp:3460 +msgid "Channel feedback style:" +msgstr "" + +#: src/gui/settings.cpp:3462 +msgid "Off##CHF0" +msgstr "" + +#: src/gui/settings.cpp:3466 +msgid "Note##CHF1" +msgstr "" + +#: src/gui/settings.cpp:3470 +msgid "Volume##CHF2" +msgstr "" + +#: src/gui/settings.cpp:3474 +msgid "Active##CHF3" +msgstr "" + +#: src/gui/settings.cpp:3480 +msgid "Channel font:" +msgstr "" + +#: src/gui/settings.cpp:3482 +msgid "Regular##CHFont0" +msgstr "" + +#: src/gui/settings.cpp:3486 +msgid "Monospace##CHFont1" +msgstr "" + +#: src/gui/settings.cpp:3493 +msgid "Center channel name" +msgstr "" + +#: src/gui/settings.cpp:3498 +msgid "Channel colors:" +msgstr "" + +#: src/gui/settings.cpp:3500 +msgid "Single##CHC0" +msgstr "" + +#: src/gui/settings.cpp:3504 +msgid "Channel type##CHC1" +msgstr "" + +#: src/gui/settings.cpp:3508 +msgid "Instrument type##CHC2" +msgstr "" + +#: src/gui/settings.cpp:3514 +msgid "Channel name colors:" +msgstr "" + +#: src/gui/settings.cpp:3516 +msgid "Single##CTC0" +msgstr "" + +#: src/gui/settings.cpp:3520 +msgid "Channel type##CTC1" +msgstr "" + +#: src/gui/settings.cpp:3524 +msgid "Instrument type##CTC2" +msgstr "" + +#: src/gui/settings.cpp:3533 +msgid "Unified instrument/wavetable/sample list" +msgstr "" + +#: src/gui/settings.cpp:3543 +msgid "Horizontal instrument list" +msgstr "" + +#: src/gui/settings.cpp:3549 +msgid "Instrument list icon style:" +msgstr "" + +#: src/gui/settings.cpp:3551 +msgid "None##iis0" +msgstr "" + +#: src/gui/settings.cpp:3555 +msgid "Graphical icons##iis1" +msgstr "" + +#: src/gui/settings.cpp:3559 +msgid "Letter icons##iis2" +msgstr "" + +#: src/gui/settings.cpp:3566 +msgid "Colorize instrument editor using instrument type" +msgstr "" + +#: src/gui/settings.cpp:3572 src/gui/settings.cpp:4014 +msgid "Macro Editor" +msgstr "" + +#: src/gui/settings.cpp:3573 +msgid "Macro editor layout:" +msgstr "" + +#: src/gui/settings.cpp:3575 +msgid "Unified##mel0" +msgstr "" + +#: src/gui/settings.cpp:3585 +msgid "Grid##mel2" +msgstr "" + +#: src/gui/settings.cpp:3589 +msgid "Single (with list)##mel3" +msgstr "" + +#: src/gui/settings.cpp:3602 +msgid "Use classic macro editor vertical slider" +msgstr "" + +#: src/gui/settings.cpp:3608 +msgid "Wave Editor" +msgstr "" + +#: src/gui/settings.cpp:3610 +msgid "Use compact wave editor" +msgstr "" + +#: src/gui/settings.cpp:3616 src/gui/settings.cpp:3991 +msgid "FM Editor" +msgstr "" + +#: src/gui/settings.cpp:3617 +msgid "FM parameter names:" +msgstr "" + +#: src/gui/settings.cpp:3619 +msgid "Friendly##fmn0" +msgstr "" + +#: src/gui/settings.cpp:3623 +msgid "Technical##fmn1" +msgstr "" + +#: src/gui/settings.cpp:3627 +msgid "Technical (alternate)##fmn2" +msgstr "" + +#: src/gui/settings.cpp:3634 +msgid "Use standard OPL waveform names" +msgstr "" + +#: src/gui/settings.cpp:3639 +msgid "FM parameter editor layout:" +msgstr "" + +#: src/gui/settings.cpp:3641 +msgid "Modern##fml0" +msgstr "" + +#: src/gui/settings.cpp:3645 +msgid "Compact (2x2, classic)##fml1" +msgstr "" + +#: src/gui/settings.cpp:3649 +msgid "Compact (1x4)##fml2" +msgstr "" + +#: src/gui/settings.cpp:3653 +msgid "Compact (4x1)##fml3" +msgstr "" + +#: src/gui/settings.cpp:3657 +msgid "Alternate (2x2)##fml4" +msgstr "" + +#: src/gui/settings.cpp:3661 +msgid "Alternate (1x4)##fml5" +msgstr "" + +#: src/gui/settings.cpp:3665 +msgid "Alternate (4x1)##fml5" +msgstr "" + +#: src/gui/settings.cpp:3671 +msgid "Position of Sustain in FM editor:" +msgstr "" + +#: src/gui/settings.cpp:3673 +msgid "Between Decay and Sustain Rate##susp0" +msgstr "" + +#: src/gui/settings.cpp:3677 +msgid "After Release Rate##susp1" +msgstr "" + +#: src/gui/settings.cpp:3684 +msgid "Use separate colors for carriers/modulators in FM editor" +msgstr "" + +#: src/gui/settings.cpp:3690 +msgid "Unsigned FM detune values" +msgstr "" + +#: src/gui/settings.cpp:3697 +msgid "Chip memory usage unit:" +msgstr "" + +#: src/gui/settings.cpp:3699 +msgid "Bytes##MUU0" +msgstr "" + +#: src/gui/settings.cpp:3703 +msgid "Kilobytes##MUU1" +msgstr "" + +#: src/gui/settings.cpp:3712 +msgid "Rounded corners" +msgstr "" + +#: src/gui/settings.cpp:3718 src/gui/settings.cpp:3896 +#: src/gui/settings.cpp:3938 +msgid "Border" +msgstr "" + +#: src/gui/settings.cpp:3730 +msgid "Anti-aliased" +msgstr "" + +#: src/gui/settings.cpp:3736 +msgid "Fill entire window" +msgstr "" + +#: src/gui/settings.cpp:3742 +msgid "Waveform goes out of bounds" +msgstr "" + +#: src/gui/settings.cpp:3754 +msgid "Windows" +msgstr "" + +#: src/gui/settings.cpp:3756 +msgid "Rounded window corners" +msgstr "" + +#: src/gui/settings.cpp:3762 +msgid "Rounded buttons" +msgstr "" + +#: src/gui/settings.cpp:3768 +msgid "Rounded menu corners" +msgstr "" + +#: src/gui/settings.cpp:3774 +msgid "Rounded tabs" +msgstr "" + +#: src/gui/settings.cpp:3780 +msgid "Rounded scrollbars" +msgstr "" + +#: src/gui/settings.cpp:3786 +msgid "Borders around widgets" +msgstr "" + +#: src/gui/settings.cpp:3795 +msgid "Color scheme" +msgstr "" + +#: src/gui/settings.cpp:3805 +msgid "Are you sure you want to reset the color scheme?" +msgstr "" + +#: src/gui/settings.cpp:3808 +msgid "Guru mode" +msgstr "" + +#: src/gui/settings.cpp:3815 src/gui/settings.cpp:3845 +msgid "Frame shading" +msgstr "" + +#: src/gui/settings.cpp:3821 +msgid "Color scheme type:" +msgstr "" + +#: src/gui/settings.cpp:3823 +msgid "Dark##gcb0" +msgstr "" + +#: src/gui/settings.cpp:3828 +msgid "Light##gcb1" +msgstr "" + +#: src/gui/settings.cpp:3835 +msgid "Accent colors:" +msgstr "" + +#: src/gui/settings.cpp:3837 +msgid "Primary" +msgstr "" + +#: src/gui/settings.cpp:3838 +msgid "Secondary" +msgstr "" + +#: src/gui/settings.cpp:3852 +msgid "Button" +msgstr "" + +#: src/gui/settings.cpp:3853 +msgid "Button (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3854 +msgid "Button (active)" +msgstr "" + +#: src/gui/settings.cpp:3855 +msgid "Tab" +msgstr "" + +#: src/gui/settings.cpp:3856 +msgid "Tab (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3857 +msgid "Tab (active)" +msgstr "" + +#: src/gui/settings.cpp:3858 +msgid "Tab (unfocused)" +msgstr "" + +#: src/gui/settings.cpp:3859 +msgid "Tab (unfocused and active)" +msgstr "" + +#: src/gui/settings.cpp:3860 +msgid "ImGui header" +msgstr "" + +#: src/gui/settings.cpp:3861 +msgid "ImGui header (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3862 +msgid "ImGui header (active)" +msgstr "" + +#: src/gui/settings.cpp:3863 +msgid "Resize grip" +msgstr "" + +#: src/gui/settings.cpp:3864 +msgid "Resize grip (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3865 +msgid "Resize grip (active)" +msgstr "" + +#: src/gui/settings.cpp:3866 +msgid "Widget background" +msgstr "" + +#: src/gui/settings.cpp:3867 +msgid "Widget background (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3868 +msgid "Widget background (active)" +msgstr "" + +#: src/gui/settings.cpp:3869 +msgid "Slider grab" +msgstr "" + +#: src/gui/settings.cpp:3870 +msgid "Slider grab (active)" +msgstr "" + +#: src/gui/settings.cpp:3871 +msgid "Title background (active)" +msgstr "" + +#: src/gui/settings.cpp:3872 +msgid "Checkbox/radio button mark" +msgstr "" + +#: src/gui/settings.cpp:3873 +msgid "Text selection" +msgstr "" + +#: src/gui/settings.cpp:3874 +msgid "Line plot" +msgstr "" + +#: src/gui/settings.cpp:3875 +msgid "Line plot (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3876 +msgid "Histogram plot" +msgstr "" + +#: src/gui/settings.cpp:3877 +msgid "Histogram plot (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3878 +msgid "Table row (even)" +msgstr "" + +#: src/gui/settings.cpp:3879 +msgid "Table row (odd)" +msgstr "" + +#: src/gui/settings.cpp:3884 +msgid "Interface (other)" +msgstr "" + +#: src/gui/settings.cpp:3886 +msgid "Window background" +msgstr "" + +#: src/gui/settings.cpp:3887 +msgid "Sub-window background" +msgstr "" + +#: src/gui/settings.cpp:3888 +msgid "Pop-up background" +msgstr "" + +#: src/gui/settings.cpp:3889 +msgid "Modal backdrop" +msgstr "" + +#: src/gui/settings.cpp:3890 +msgid "Header" +msgstr "" + +#: src/gui/settings.cpp:3892 +msgid "Text (disabled)" +msgstr "" + +#: src/gui/settings.cpp:3893 +msgid "Title bar (inactive)" +msgstr "" + +#: src/gui/settings.cpp:3894 +msgid "Title bar (collapsed)" +msgstr "" + +#: src/gui/settings.cpp:3895 +msgid "Menu bar" +msgstr "" + +#: src/gui/settings.cpp:3897 +msgid "Border shadow" +msgstr "" + +#: src/gui/settings.cpp:3898 +msgid "Scroll bar" +msgstr "" + +#: src/gui/settings.cpp:3899 +msgid "Scroll bar (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3900 +msgid "Scroll bar (clicked)" +msgstr "" + +#: src/gui/settings.cpp:3901 +msgid "Scroll bar background" +msgstr "" + +#: src/gui/settings.cpp:3902 +msgid "Separator" +msgstr "" + +#: src/gui/settings.cpp:3903 +msgid "Separator (hover)" +msgstr "" + +#: src/gui/settings.cpp:3904 +msgid "Separator (active)" +msgstr "" + +#: src/gui/settings.cpp:3905 +msgid "Docking preview" +msgstr "" + +#: src/gui/settings.cpp:3906 +msgid "Docking empty" +msgstr "" + +#: src/gui/settings.cpp:3907 +msgid "Table header" +msgstr "" + +#: src/gui/settings.cpp:3908 +msgid "Table border (hard)" +msgstr "" + +#: src/gui/settings.cpp:3909 +msgid "Table border (soft)" +msgstr "" + +#: src/gui/settings.cpp:3910 +msgid "Drag and drop target" +msgstr "" + +#: src/gui/settings.cpp:3911 +msgid "Window switcher (highlight)" +msgstr "" + +#: src/gui/settings.cpp:3912 +msgid "Window switcher backdrop" +msgstr "" + +#: src/gui/settings.cpp:3915 src/gui/settings.cpp:4136 src/gui/guiConst.cpp:235 +msgid "Miscellaneous" +msgstr "" + +#: src/gui/settings.cpp:3916 +msgid "Toggle on" +msgstr "" + +#: src/gui/settings.cpp:3917 +msgid "Toggle off" +msgstr "" + +#: src/gui/settings.cpp:3918 +msgid "Playback status" +msgstr "" + +#: src/gui/settings.cpp:3919 +msgid "Destructive hint" +msgstr "" + +#: src/gui/settings.cpp:3920 +msgid "Warning hint" +msgstr "" + +#: src/gui/settings.cpp:3921 +msgid "Error hint" +msgstr "" + +#: src/gui/settings.cpp:3924 +msgid "File Picker (built-in)" +msgstr "" + +#: src/gui/settings.cpp:3926 +msgid "Song (native)" +msgstr "" + +#: src/gui/settings.cpp:3927 +msgid "Song (import)" +msgstr "" + +#: src/gui/settings.cpp:3933 +msgid "Font" +msgstr "" + +#: src/gui/settings.cpp:3939 +msgid "Background (top-left)" +msgstr "" + +#: src/gui/settings.cpp:3940 +msgid "Background (top-right)" +msgstr "" + +#: src/gui/settings.cpp:3941 +msgid "Background (bottom-left)" +msgstr "" + +#: src/gui/settings.cpp:3942 +msgid "Background (bottom-right)" +msgstr "" + +#: src/gui/settings.cpp:3943 src/gui/settings.cpp:3998 +#: src/gui/settings.cpp:4166 src/gui/waveEdit.cpp:730 src/gui/insEdit.cpp:50 +#: src/gui/insEdit.cpp:4148 src/gui/insEdit.cpp:5812 src/gui/insEdit.cpp:6940 +#: src/gui/insEdit.cpp:6949 src/gui/insEdit.cpp:6963 src/gui/insEdit.cpp:6980 +#: src/gui/insEdit.cpp:6991 src/gui/insEdit.cpp:7004 src/gui/insEdit.cpp:7018 +#: src/gui/insEdit.cpp:7025 src/gui/insEdit.cpp:7035 src/gui/insEdit.cpp:7041 +#: src/gui/insEdit.cpp:7050 src/gui/insEdit.cpp:7074 src/gui/insEdit.cpp:7084 +#: src/gui/insEdit.cpp:7094 src/gui/insEdit.cpp:7101 src/gui/insEdit.cpp:7116 +#: src/gui/insEdit.cpp:7131 src/gui/insEdit.cpp:7151 src/gui/insEdit.cpp:7158 +#: src/gui/insEdit.cpp:7200 src/gui/insEdit.cpp:7211 src/gui/insEdit.cpp:7224 +#: src/gui/insEdit.cpp:7349 src/gui/insEdit.cpp:7425 src/gui/insEdit.cpp:7445 +#: src/gui/insEdit.cpp:7453 src/gui/insEdit.cpp:7473 +msgid "Waveform" +msgstr "" + +#: src/gui/settings.cpp:3944 +msgid "Waveform (clip)" +msgstr "" + +#: src/gui/settings.cpp:3945 +msgid "Reference" +msgstr "" + +#: src/gui/settings.cpp:3946 +msgid "Guide" +msgstr "" + +#: src/gui/settings.cpp:3948 +msgid "Wave (non-mono)" +msgstr "" + +#: src/gui/settings.cpp:3949 +msgid "Waveform (1)" +msgstr "" + +#: src/gui/settings.cpp:3950 +msgid "Waveform (2)" +msgstr "" + +#: src/gui/settings.cpp:3951 +msgid "Waveform (3)" +msgstr "" + +#: src/gui/settings.cpp:3952 +msgid "Waveform (4)" +msgstr "" + +#: src/gui/settings.cpp:3953 +msgid "Waveform (5)" +msgstr "" + +#: src/gui/settings.cpp:3954 +msgid "Waveform (6)" +msgstr "" + +#: src/gui/settings.cpp:3955 +msgid "Waveform (7)" +msgstr "" + +#: src/gui/settings.cpp:3956 +msgid "Waveform (8)" +msgstr "" + +#: src/gui/settings.cpp:3957 +msgid "Waveform (9)" +msgstr "" + +#: src/gui/settings.cpp:3958 +msgid "Waveform (10)" +msgstr "" + +#: src/gui/settings.cpp:3959 +msgid "Waveform (11)" +msgstr "" + +#: src/gui/settings.cpp:3960 +msgid "Waveform (12)" +msgstr "" + +#: src/gui/settings.cpp:3961 +msgid "Waveform (13)" +msgstr "" + +#: src/gui/settings.cpp:3962 +msgid "Waveform (14)" +msgstr "" + +#: src/gui/settings.cpp:3963 +msgid "Waveform (15)" +msgstr "" + +#: src/gui/settings.cpp:3964 +msgid "Waveform (16)" +msgstr "" + +#: src/gui/settings.cpp:3972 +msgid "Clip" +msgstr "" + +#: src/gui/settings.cpp:3976 +msgid "Order number" +msgstr "" + +#: src/gui/settings.cpp:3977 +msgid "Playing order background" +msgstr "" + +#: src/gui/settings.cpp:3978 +msgid "Song loop" +msgstr "" + +#: src/gui/settings.cpp:3979 +msgid "Selected order" +msgstr "" + +#: src/gui/settings.cpp:3980 +msgid "Similar patterns" +msgstr "" + +#: src/gui/settings.cpp:3981 +msgid "Inactive patterns" +msgstr "" + +#: src/gui/settings.cpp:3984 +msgid "Envelope View" +msgstr "" + +#: src/gui/settings.cpp:3985 src/gui/insEdit.cpp:540 src/gui/insEdit.cpp:3547 +#: src/gui/insEdit.cpp:3548 src/gui/insEdit.cpp:4081 src/gui/insEdit.cpp:4151 +#: src/gui/insEdit.cpp:4790 src/gui/insEdit.cpp:5861 src/gui/insEdit.cpp:5862 +#: src/gui/insEdit.cpp:6487 src/gui/insEdit.cpp:6488 src/gui/insEdit.cpp:6555 +#: src/gui/insEdit.cpp:6556 src/gui/insEdit.cpp:6995 src/gui/insEdit.cpp:7009 +#: src/gui/insEdit.cpp:7029 src/gui/insEdit.cpp:7166 +#, c-format +msgid "Envelope" +msgstr "" + +#: src/gui/settings.cpp:3986 +msgid "Sustain guide" +msgstr "" + +#: src/gui/settings.cpp:3992 +msgid "Algorithm background" +msgstr "" + +#: src/gui/settings.cpp:3993 +msgid "Algorithm lines" +msgstr "" + +#: src/gui/settings.cpp:3994 +msgid "Modulator" +msgstr "" + +#: src/gui/settings.cpp:3995 +msgid "Carrier" +msgstr "" + +#: src/gui/settings.cpp:3997 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:4146 +msgid "SSG-EG" +msgstr "" + +#: src/gui/settings.cpp:4000 +msgid "" +"(the following colors only apply when \"Use separate colors for carriers/" +"modulators in FM editor\" is on!)" +msgstr "" + +#: src/gui/settings.cpp:4002 +msgid "Mod. accent (primary)" +msgstr "" + +#: src/gui/settings.cpp:4003 +msgid "Mod. accent (secondary)" +msgstr "" + +#: src/gui/settings.cpp:4004 +msgid "Mod. border" +msgstr "" + +#: src/gui/settings.cpp:4005 +msgid "Mod. border shadow" +msgstr "" + +#: src/gui/settings.cpp:4007 +msgid "Car. accent (primary)" +msgstr "" + +#: src/gui/settings.cpp:4008 +msgid "Car. accent (secondary)" +msgstr "" + +#: src/gui/settings.cpp:4009 +msgid "Car. border" +msgstr "" + +#: src/gui/settings.cpp:4010 +msgid "Car. border shadow" +msgstr "" + +#: src/gui/settings.cpp:4016 src/gui/guiConst.cpp:227 src/gui/insEdit.cpp:6924 +#: src/gui/insEdit.cpp:6931 src/gui/insEdit.cpp:6942 src/gui/insEdit.cpp:6950 +#: src/gui/insEdit.cpp:6971 src/gui/insEdit.cpp:6983 src/gui/insEdit.cpp:6993 +#: src/gui/insEdit.cpp:7006 src/gui/insEdit.cpp:7019 src/gui/insEdit.cpp:7028 +#: src/gui/insEdit.cpp:7036 src/gui/insEdit.cpp:7042 src/gui/insEdit.cpp:7052 +#: src/gui/insEdit.cpp:7061 src/gui/insEdit.cpp:7068 src/gui/insEdit.cpp:7075 +#: src/gui/insEdit.cpp:7087 src/gui/insEdit.cpp:7095 src/gui/insEdit.cpp:7102 +#: src/gui/insEdit.cpp:7109 src/gui/insEdit.cpp:7117 src/gui/insEdit.cpp:7123 +#: src/gui/insEdit.cpp:7132 src/gui/insEdit.cpp:7143 src/gui/insEdit.cpp:7153 +#: src/gui/insEdit.cpp:7161 src/gui/insEdit.cpp:7174 src/gui/insEdit.cpp:7182 +#: src/gui/insEdit.cpp:7193 src/gui/insEdit.cpp:7203 src/gui/insEdit.cpp:7213 +#: src/gui/insEdit.cpp:7227 src/gui/insEdit.cpp:7233 src/gui/insEdit.cpp:7241 +#: src/gui/insEdit.cpp:7248 src/gui/insEdit.cpp:7272 src/gui/insEdit.cpp:7280 +#: src/gui/insEdit.cpp:7289 src/gui/insEdit.cpp:7298 src/gui/insEdit.cpp:7306 +#: src/gui/insEdit.cpp:7323 src/gui/insEdit.cpp:7331 src/gui/insEdit.cpp:7337 +#: src/gui/insEdit.cpp:7344 src/gui/insEdit.cpp:7350 src/gui/insEdit.cpp:7355 +#: src/gui/insEdit.cpp:7361 src/gui/insEdit.cpp:7368 src/gui/insEdit.cpp:7376 +#: src/gui/insEdit.cpp:7385 src/gui/insEdit.cpp:7393 src/gui/insEdit.cpp:7401 +#: src/gui/insEdit.cpp:7413 src/gui/insEdit.cpp:7428 src/gui/insEdit.cpp:7439 +#: src/gui/insEdit.cpp:7447 src/gui/insEdit.cpp:7456 src/gui/insEdit.cpp:7466 +#: src/gui/insEdit.cpp:7474 +msgid "Pitch" +msgstr "" + +#: src/gui/settings.cpp:4021 +msgid "Instrument Types" +msgstr "" + +#: src/gui/settings.cpp:4022 +msgid "FM (OPN)" +msgstr "" + +#: src/gui/settings.cpp:4023 +msgid "SN76489/Sega PSG" +msgstr "" + +#: src/gui/settings.cpp:4026 +msgid "C64" +msgstr "" + +#: src/gui/settings.cpp:4027 +msgid "Amiga/Generic Sample" +msgstr "" + +#: src/gui/settings.cpp:4028 +msgid "PC Engine" +msgstr "" + +#: src/gui/settings.cpp:4029 +msgid "AY-3-8910/SSG" +msgstr "" + +#: src/gui/settings.cpp:4030 +msgid "AY8930" +msgstr "" + +#: src/gui/settings.cpp:4031 +msgid "TIA" +msgstr "" + +#: src/gui/settings.cpp:4032 +msgid "SAA1099" +msgstr "" + +#: src/gui/settings.cpp:4033 +msgid "VIC" +msgstr "" + +#: src/gui/settings.cpp:4034 +msgid "PET" +msgstr "" + +#: src/gui/settings.cpp:4035 +msgid "VRC6" +msgstr "" + +#: src/gui/settings.cpp:4036 src/gui/guiConst.cpp:149 +msgid "VRC6 (saw)" +msgstr "" + +#: src/gui/settings.cpp:4037 +msgid "FM (OPLL)" +msgstr "" + +#: src/gui/settings.cpp:4038 +msgid "FM (OPL)" +msgstr "" + +#: src/gui/settings.cpp:4043 +msgid "FM (OPZ)" +msgstr "" + +#: src/gui/settings.cpp:4045 +msgid "PC Beeper" +msgstr "" + +#: src/gui/settings.cpp:4047 +msgid "Lynx" +msgstr "" + +#: src/gui/settings.cpp:4049 +msgid "X1-010" +msgstr "" + +#: src/gui/settings.cpp:4050 +msgid "ES5506" +msgstr "" + +#: src/gui/settings.cpp:4053 +msgid "Sound Unit" +msgstr "" + +#: src/gui/settings.cpp:4055 +msgid "FM (OPL Drums)" +msgstr "" + +#: src/gui/settings.cpp:4056 +msgid "FM (OPM)" +msgstr "" + +#: src/gui/settings.cpp:4057 +msgid "NES" +msgstr "" + +#: src/gui/settings.cpp:4058 +msgid "MSM6258" +msgstr "" + +#: src/gui/settings.cpp:4059 +msgid "MSM6295" +msgstr "" + +#: src/gui/settings.cpp:4060 +msgid "ADPCM-A" +msgstr "" + +#: src/gui/settings.cpp:4062 +msgid "Sega PCM" +msgstr "" + +#: src/gui/settings.cpp:4063 +msgid "QSound" +msgstr "" + +#: src/gui/settings.cpp:4064 +msgid "YMZ280B" +msgstr "" + +#: src/gui/settings.cpp:4065 +msgid "RF5C68" +msgstr "" + +#: src/gui/settings.cpp:4066 +msgid "MSM5232" +msgstr "" + +#: src/gui/settings.cpp:4067 +msgid "K007232" +msgstr "" + +#: src/gui/settings.cpp:4068 +msgid "GA20" +msgstr "" + +#: src/gui/settings.cpp:4070 +msgid "SM8521" +msgstr "" + +#: src/gui/settings.cpp:4071 +msgid "PV-1000" +msgstr "" + +#: src/gui/settings.cpp:4072 +msgid "K053260" +msgstr "" + +#: src/gui/settings.cpp:4073 +msgid "TED" +msgstr "" + +#: src/gui/settings.cpp:4074 +msgid "C140" +msgstr "" + +#: src/gui/settings.cpp:4075 +msgid "C219" +msgstr "" + +#: src/gui/settings.cpp:4076 +msgid "ESFM" +msgstr "" + +#: src/gui/settings.cpp:4077 src/gui/guiConst.cpp:179 +msgid "PowerNoise (noise)" +msgstr "" + +#: src/gui/settings.cpp:4078 src/gui/guiConst.cpp:180 +msgid "PowerNoise (slope)" +msgstr "" + +#: src/gui/settings.cpp:4081 +msgid "GBA DMA" +msgstr "" + +#: src/gui/settings.cpp:4082 +msgid "GBA MinMod" +msgstr "" + +#: src/gui/settings.cpp:4085 +msgid "Other/Unknown" +msgstr "" + +#: src/gui/settings.cpp:4089 +msgid "Single color (background)" +msgstr "" + +#: src/gui/settings.cpp:4090 +msgid "Single color (text)" +msgstr "" + +#: src/gui/settings.cpp:4091 src/gui/guiConst.cpp:1393 src/gui/waveEdit.cpp:668 +msgid "FM" +msgstr "" + +#: src/gui/settings.cpp:4096 +msgid "FM operator" +msgstr "" + +#: src/gui/settings.cpp:4097 +msgid "Muted" +msgstr "" + +#: src/gui/settings.cpp:4101 +msgid "Playhead" +msgstr "" + +#: src/gui/settings.cpp:4102 +msgid "Editing" +msgstr "" + +#: src/gui/settings.cpp:4103 +msgid "Editing (will clone)" +msgstr "" + +#: src/gui/settings.cpp:4104 +msgid "Cursor" +msgstr "" + +#: src/gui/settings.cpp:4105 +msgid "Cursor (hovered)" +msgstr "" + +#: src/gui/settings.cpp:4106 +msgid "Cursor (clicked)" +msgstr "" + +#: src/gui/settings.cpp:4107 src/gui/settings.cpp:4172 +#: src/gui/findReplace.cpp:791 +msgid "Selection" +msgstr "" + +#: src/gui/settings.cpp:4108 +msgid "Selection (hovered)" +msgstr "" + +#: src/gui/settings.cpp:4109 +msgid "Selection (clicked)" +msgstr "" + +#: src/gui/settings.cpp:4110 +msgid "Highlight 1" +msgstr "" + +#: src/gui/settings.cpp:4111 +msgid "Highlight 2" +msgstr "" + +#: src/gui/settings.cpp:4112 +msgid "Row number" +msgstr "" + +#: src/gui/settings.cpp:4113 +msgid "Row number (highlight 1)" +msgstr "" + +#: src/gui/settings.cpp:4114 +msgid "Row number (highlight 2)" +msgstr "" + +#: src/gui/settings.cpp:4116 +msgid "Note (highlight 1)" +msgstr "" + +#: src/gui/settings.cpp:4117 +msgid "Note (highlight 2)" +msgstr "" + +#: src/gui/settings.cpp:4118 +msgid "Blank" +msgstr "" + +#: src/gui/settings.cpp:4119 +msgid "Blank (highlight 1)" +msgstr "" + +#: src/gui/settings.cpp:4120 +msgid "Blank (highlight 2)" +msgstr "" + +#: src/gui/settings.cpp:4122 +msgid "Instrument (invalid type)" +msgstr "" + +#: src/gui/settings.cpp:4123 +msgid "Instrument (out of range)" +msgstr "" + +#: src/gui/settings.cpp:4124 +msgid "Volume (0%)" +msgstr "" + +#: src/gui/settings.cpp:4125 +msgid "Volume (50%)" +msgstr "" + +#: src/gui/settings.cpp:4126 +msgid "Volume (100%)" +msgstr "" + +#: src/gui/settings.cpp:4128 +msgid "Pitch effect" +msgstr "" + +#: src/gui/settings.cpp:4129 +msgid "Volume effect" +msgstr "" + +#: src/gui/settings.cpp:4130 +msgid "Panning effect" +msgstr "" + +#: src/gui/settings.cpp:4131 +msgid "Song effect" +msgstr "" + +#: src/gui/settings.cpp:4132 +msgid "Time effect" +msgstr "" + +#: src/gui/settings.cpp:4133 +msgid "Speed effect" +msgstr "" + +#: src/gui/settings.cpp:4134 +msgid "Primary specific effect" +msgstr "" + +#: src/gui/settings.cpp:4135 +msgid "Secondary specific effect" +msgstr "" + +#: src/gui/settings.cpp:4137 +msgid "External command output" +msgstr "" + +#: src/gui/settings.cpp:4138 +msgid "Status: off/disabled" +msgstr "" + +#: src/gui/settings.cpp:4139 +msgid "Status: off + macro rel" +msgstr "" + +#: src/gui/settings.cpp:4140 +msgid "Status: on + macro rel" +msgstr "" + +#: src/gui/settings.cpp:4141 +msgid "Status: on" +msgstr "" + +#: src/gui/settings.cpp:4142 +msgid "Status: volume" +msgstr "" + +#: src/gui/settings.cpp:4143 +msgid "Status: pitch" +msgstr "" + +#: src/gui/settings.cpp:4144 +msgid "Status: panning" +msgstr "" + +#: src/gui/settings.cpp:4145 +msgid "Status: chip (primary)" +msgstr "" + +#: src/gui/settings.cpp:4146 +msgid "Status: chip (secondary)" +msgstr "" + +#: src/gui/settings.cpp:4147 +msgid "Status: mixing" +msgstr "" + +#: src/gui/settings.cpp:4148 +msgid "Status: DSP effect" +msgstr "" + +#: src/gui/settings.cpp:4149 +msgid "Status: note altering" +msgstr "" + +#: src/gui/settings.cpp:4150 +msgid "Status: misc color 1" +msgstr "" + +#: src/gui/settings.cpp:4151 +msgid "Status: misc color 2" +msgstr "" + +#: src/gui/settings.cpp:4152 +msgid "Status: misc color 3" +msgstr "" + +#: src/gui/settings.cpp:4153 +msgid "Status: attack" +msgstr "" + +#: src/gui/settings.cpp:4154 +msgid "Status: decay" +msgstr "" + +#: src/gui/settings.cpp:4155 +msgid "Status: sustain" +msgstr "" + +#: src/gui/settings.cpp:4156 +msgid "Status: release" +msgstr "" + +#: src/gui/settings.cpp:4157 +msgid "Status: decrease linear" +msgstr "" + +#: src/gui/settings.cpp:4158 +msgid "Status: decrease exp" +msgstr "" + +#: src/gui/settings.cpp:4159 +msgid "Status: increase" +msgstr "" + +#: src/gui/settings.cpp:4160 +msgid "Status: bent" +msgstr "" + +#: src/gui/settings.cpp:4161 +msgid "Status: direct" +msgstr "" + +#: src/gui/settings.cpp:4164 src/gui/guiConst.cpp:586 src/gui/sampleEdit.cpp:96 +msgid "Sample Editor" +msgstr "" + +#: src/gui/settings.cpp:4167 +msgid "Time background" +msgstr "" + +#: src/gui/settings.cpp:4168 +msgid "Time text" +msgstr "" + +#: src/gui/settings.cpp:4169 +msgid "Loop region" +msgstr "" + +#: src/gui/settings.cpp:4170 +msgid "Center guide" +msgstr "" + +#: src/gui/settings.cpp:4171 +msgid "Grid" +msgstr "" + +#: src/gui/settings.cpp:4173 +msgid "Selection points" +msgstr "" + +#: src/gui/settings.cpp:4174 +msgid "Preview needle" +msgstr "" + +#: src/gui/settings.cpp:4175 +msgid "Playing needles" +msgstr "" + +#: src/gui/settings.cpp:4176 +msgid "Loop markers" +msgstr "" + +#: src/gui/settings.cpp:4177 +msgid "Chip select: disabled" +msgstr "" + +#: src/gui/settings.cpp:4178 +msgid "Chip select: enabled" +msgstr "" + +#: src/gui/settings.cpp:4179 +msgid "Chip select: enabled (failure)" +msgstr "" + +#: src/gui/settings.cpp:4182 src/gui/guiConst.cpp:602 src/gui/patManager.cpp:35 +msgid "Pattern Manager" +msgstr "" + +#: src/gui/settings.cpp:4183 +msgid "Unallocated" +msgstr "" + +#: src/gui/settings.cpp:4184 +msgid "Unused" +msgstr "" + +#: src/gui/settings.cpp:4185 +msgid "Used" +msgstr "" + +#: src/gui/settings.cpp:4186 +msgid "Overused" +msgstr "" + +#: src/gui/settings.cpp:4187 +msgid "Really overused" +msgstr "" + +#: src/gui/settings.cpp:4188 +msgid "Combo Breaker" +msgstr "" + +#: src/gui/settings.cpp:4191 src/gui/guiConst.cpp:599 src/gui/piano.cpp:63 +msgid "Piano" +msgstr "" + +#: src/gui/settings.cpp:4193 +msgid "Upper key" +msgstr "" + +#: src/gui/settings.cpp:4194 +msgid "Upper key (feedback)" +msgstr "" + +#: src/gui/settings.cpp:4195 +msgid "Upper key (pressed)" +msgstr "" + +#: src/gui/settings.cpp:4196 +msgid "Lower key" +msgstr "" + +#: src/gui/settings.cpp:4197 +msgid "Lower key (feedback)" +msgstr "" + +#: src/gui/settings.cpp:4198 +msgid "Lower key (pressed)" +msgstr "" + +#: src/gui/settings.cpp:4201 src/gui/clock.cpp:31 src/gui/guiConst.cpp:610 +msgid "Clock" +msgstr "" + +#: src/gui/settings.cpp:4202 +msgid "Clock text" +msgstr "" + +#: src/gui/settings.cpp:4203 +msgid "Beat (off)" +msgstr "" + +#: src/gui/settings.cpp:4204 +msgid "Beat (on)" +msgstr "" + +#: src/gui/settings.cpp:4209 +msgid "PortSet" +msgstr "" + +#: src/gui/settings.cpp:4210 +msgid "Port" +msgstr "" + +#: src/gui/settings.cpp:4211 +msgid "Port (hidden/unavailable)" +msgstr "" + +#: src/gui/settings.cpp:4212 +msgid "Connection (selected)" +msgstr "" + +#: src/gui/settings.cpp:4213 +msgid "Connection (other)" +msgstr "" + +#: src/gui/settings.cpp:4219 +msgid "Waveform data" +msgstr "" + +#: src/gui/settings.cpp:4222 +msgid "Reserved" +msgstr "" + +#: src/gui/settings.cpp:4224 +msgid "Sample (alternate 1)" +msgstr "" + +#: src/gui/settings.cpp:4225 +msgid "Sample (alternate 2)" +msgstr "" + +#: src/gui/settings.cpp:4226 +msgid "Sample (alternate 3)" +msgstr "" + +#: src/gui/settings.cpp:4227 +msgid "Wave RAM" +msgstr "" + +#: src/gui/settings.cpp:4228 +msgid "Wavetable (static)" +msgstr "" + +#: src/gui/settings.cpp:4229 +msgid "Echo buffer" +msgstr "" + +#: src/gui/settings.cpp:4230 +msgid "Namco 163 load pos" +msgstr "" + +#: src/gui/settings.cpp:4231 +msgid "Namco 163 play pos" +msgstr "" + +#: src/gui/settings.cpp:4232 +msgid "Sample (bank 0)" +msgstr "" + +#: src/gui/settings.cpp:4233 +msgid "Sample (bank 1)" +msgstr "" + +#: src/gui/settings.cpp:4234 +msgid "Sample (bank 2)" +msgstr "" + +#: src/gui/settings.cpp:4235 +msgid "Sample (bank 3)" +msgstr "" + +#: src/gui/settings.cpp:4236 +msgid "Sample (bank 4)" +msgstr "" + +#: src/gui/settings.cpp:4237 +msgid "Sample (bank 5)" +msgstr "" + +#: src/gui/settings.cpp:4238 +msgid "Sample (bank 6)" +msgstr "" + +#: src/gui/settings.cpp:4239 +msgid "Sample (bank 7)" +msgstr "" + +#: src/gui/settings.cpp:4244 +msgid "Log level: Error" +msgstr "" + +#: src/gui/settings.cpp:4245 +msgid "Log level: Warning" +msgstr "" + +#: src/gui/settings.cpp:4246 +msgid "Log level: Info" +msgstr "" + +#: src/gui/settings.cpp:4247 +msgid "Log level: Debug" +msgstr "" + +#: src/gui/settings.cpp:4248 +msgid "Log level: Trace/Verbose" +msgstr "" + +#: src/gui/settings.cpp:4253 +msgid "Backup" +msgstr "" + +#: src/gui/settings.cpp:4258 +msgid "Enable backup system" +msgstr "" + +#: src/gui/settings.cpp:4263 +msgid "Interval (in seconds)" +msgstr "" + +#: src/gui/settings.cpp:4268 +msgid "Backups per file" +msgstr "" + +#: src/gui/settings.cpp:4274 +msgid "Backup Management" +msgstr "" + +#: src/gui/settings.cpp:4278 +msgid "Purge before:" +msgstr "" + +#: src/gui/settings.cpp:4352 +msgid "Go##PDate" +msgstr "" + +#: src/gui/settings.cpp:4359 +#, c-format +msgid "%PB used" +msgstr "" + +#: src/gui/settings.cpp:4361 +#, c-format +msgid "%TB used" +msgstr "" + +#: src/gui/settings.cpp:4363 +#, c-format +msgid "%GB used" +msgstr "" + +#: src/gui/settings.cpp:4365 +#, c-format +msgid "%MB used" +msgstr "" + +#: src/gui/settings.cpp:4367 +#, c-format +msgid "%KB used" +msgstr "" + +#: src/gui/settings.cpp:4369 +#, c-format +msgid "% bytes used" +msgstr "" + +#: src/gui/settings.cpp:4374 +msgid "Refresh" +msgstr "" + +#: src/gui/settings.cpp:4378 +msgid "Delete all" +msgstr "" + +#: src/gui/settings.cpp:4384 src/gui/settings.cpp:6688 +msgid "Size" +msgstr "" + +#: src/gui/settings.cpp:4385 +msgid "Latest" +msgstr "" + +#: src/gui/settings.cpp:4395 +#, c-format +msgid "%P" +msgstr "" + +#: src/gui/settings.cpp:4397 +#, c-format +msgid "%T" +msgstr "" + +#: src/gui/settings.cpp:4399 +#, c-format +msgid "%G" +msgstr "" + +#: src/gui/settings.cpp:4401 +#, c-format +msgid "%M" +msgstr "" + +#: src/gui/settings.cpp:4403 +#, c-format +msgid "%K" +msgstr "" + +#: src/gui/settings.cpp:4405 +#, c-format +msgid "%" +msgstr "" + +#: src/gui/settings.cpp:4529 +msgid "Cheat Codes" +msgstr "" + +#: src/gui/settings.cpp:4531 +msgid "Enter code:" +msgstr "" + +#: src/gui/settings.cpp:4533 +msgid "Submit" +msgstr "" + +#: src/gui/settings.cpp:4537 +msgid "invalid code" +msgstr "" + +#: src/gui/settings.cpp:4547 +msgid "toggled alternate UI" +msgstr "" + +#: src/gui/settings.cpp:4551 +msgid ":smile: :star_struck: :sunglasses: :ok_hand:" +msgstr "" + +#: src/gui/settings.cpp:4555 +msgid "enabled all instrument types" +msgstr "" + +#: src/gui/settings.cpp:4559 +msgid "OK, if I bring your Partial pitch linearity will you stop bothering me?" +msgstr "" + +#: src/gui/settings.cpp:4563 +msgid "unlocked audio multi-threading options!" +msgstr "" + +#: src/gui/settings.cpp:4567 +msgid "enabled \"comfortable\" mode" +msgstr "" + +#: src/gui/settings.cpp:4585 +msgid "OK##SettingsOK" +msgstr "" + +#: src/gui/settings.cpp:4591 +msgid "Cancel##SettingsCancel" +msgstr "" + +#: src/gui/settings.cpp:4599 +msgid "Apply##SettingsApply" +msgstr "" + +#: src/gui/settings.cpp:5673 +msgid "could not initialize audio!" +msgstr "" + +#: src/gui/settings.cpp:5683 src/gui/gui.cpp:4067 src/gui/gui.cpp:6662 +#: src/gui/gui.cpp:7088 +msgid "error while loading fonts! please check your settings." +msgstr "" + +#: src/gui/settings.cpp:5862 +#, c-format +msgid "error while loading config! (%s)" +msgstr "" + +#: src/gui/settings.cpp:6675 +msgid "[Dir]" +msgstr "" + +#: src/gui/settings.cpp:6676 +msgid "[Link]" +msgstr "" + +#: src/gui/settings.cpp:6677 +msgid "[File]" +msgstr "" + +#: src/gui/settings.cpp:6678 +msgid "Name:" +msgstr "" + +#: src/gui/settings.cpp:6679 +msgid "Path:" +msgstr "" + +#: src/gui/settings.cpp:6680 +msgid "Reset search" +msgstr "" + +#: src/gui/settings.cpp:6681 +msgid "Drives" +msgstr "" + +#: src/gui/settings.cpp:6682 +msgid "" +"Edit path\n" +"You can also right click on path buttons" +msgstr "" + +#: src/gui/settings.cpp:6683 +msgid "Go to home directory" +msgstr "" + +#: src/gui/settings.cpp:6684 +msgid "Go to parent directory" +msgstr "" + +#: src/gui/settings.cpp:6685 +msgid "Create Directory" +msgstr "" + +#: src/gui/settings.cpp:6686 +msgid "File name" +msgstr "" + +#: src/gui/settings.cpp:6689 +msgid "Date" +msgstr "" + +#: src/gui/settings.cpp:6690 src/gui/gui.cpp:5510 src/gui/gui.cpp:5645 +#: src/gui/gui.cpp:5646 +msgid "Warning" +msgstr "" + +#: src/gui/settings.cpp:6691 +msgid "The file you selected already exists! Would you like to overwrite it?" +msgstr "" + +#: src/gui/settings.cpp:6692 src/gui/gui.cpp:5650 src/gui/gui.cpp:5674 +#: src/gui/gui.cpp:5698 src/gui/gui.cpp:5722 src/gui/gui.cpp:5746 +#: src/gui/gui.cpp:5770 src/gui/gui.cpp:5802 src/gui/gui.cpp:5818 +#: src/gui/gui.cpp:5829 src/gui/gui.cpp:5841 src/gui/gui.cpp:5995 +#: src/gui/gui.cpp:6017 src/gui/gui.cpp:6032 src/gui/gui.cpp:6043 +msgid "Yes" +msgstr "" + +#: src/gui/settings.cpp:6693 src/gui/findReplace.cpp:828 src/gui/gui.cpp:5664 +#: src/gui/gui.cpp:5688 src/gui/gui.cpp:5712 src/gui/gui.cpp:5736 +#: src/gui/gui.cpp:5760 src/gui/gui.cpp:5788 src/gui/gui.cpp:5813 +#: src/gui/gui.cpp:5824 src/gui/gui.cpp:5836 src/gui/gui.cpp:5848 +#: src/gui/gui.cpp:6012 src/gui/gui.cpp:6027 src/gui/gui.cpp:6037 +#: src/gui/gui.cpp:6050 +msgid "No" +msgstr "" + +#: src/gui/settings.cpp:6694 +msgid "%Y/%m/%d %H:%M" +msgstr "" + +#: src/gui/orders.cpp:114 +msgid "Add new order" +msgstr "" + +#: src/gui/orders.cpp:125 src/gui/guiConst.cpp:794 +msgid "Remove order" +msgstr "" + +#: src/gui/orders.cpp:137 +msgid "Duplicate order (right-click to deep clone)" +msgstr "" + +#: src/gui/orders.cpp:146 src/gui/guiConst.cpp:795 +msgid "Move order up" +msgstr "" + +#: src/gui/orders.cpp:155 src/gui/guiConst.cpp:796 +msgid "Move order down" +msgstr "" + +#: src/gui/orders.cpp:167 +msgid "Place copy of current order at end of song (right-click to deep clone)" +msgstr "" + +#: src/gui/orders.cpp:177 +msgid "Order change mode: entire row" +msgstr "" + +#: src/gui/orders.cpp:179 +msgid "Order change mode: one" +msgstr "" + +#: src/gui/orders.cpp:205 +msgid "Order edit mode: Select and type (scroll vertically)" +msgstr "" + +#: src/gui/orders.cpp:207 +msgid "Order edit mode: Select and type (scroll horizontally)" +msgstr "" + +#: src/gui/orders.cpp:209 +msgid "Order edit mode: Select and type (don't scroll)" +msgstr "" + +#: src/gui/orders.cpp:211 +msgid "Order edit mode: Click to change" +msgstr "" + +#: src/gui/findReplace.cpp:29 +msgid "ignore" +msgstr "" + +#: src/gui/findReplace.cpp:30 +msgid "equals" +msgstr "" + +#: src/gui/findReplace.cpp:31 +msgid "not equal" +msgstr "" + +#: src/gui/findReplace.cpp:32 +msgid "between" +msgstr "" + +#: src/gui/findReplace.cpp:33 +msgid "not between" +msgstr "" + +#: src/gui/findReplace.cpp:34 +msgid "any" +msgstr "" + +#: src/gui/findReplace.cpp:35 src/gui/guiConst.cpp:217 +msgid "none" +msgstr "" + +#: src/gui/findReplace.cpp:39 +msgid "set" +msgstr "" + +#: src/gui/findReplace.cpp:40 +msgid "add" +msgstr "" + +#: src/gui/findReplace.cpp:41 +msgid "add (overflow)" +msgstr "" + +#: src/gui/findReplace.cpp:42 +msgid "scale %" +msgstr "" + +#: src/gui/findReplace.cpp:512 src/gui/guiConst.cpp:609 +msgid "Find/Replace" +msgstr "" + +#: src/gui/findReplace.cpp:520 src/gui/findReplace.cpp:850 +msgid "Find" +msgstr "" + +#: src/gui/findReplace.cpp:526 src/gui/findReplace.cpp:535 +msgid "order" +msgstr "" + +#: src/gui/findReplace.cpp:527 src/gui/findReplace.cpp:537 +msgid "row" +msgstr "" + +#: src/gui/findReplace.cpp:539 src/gui/csPlayer.cpp:146 +msgid "channel" +msgstr "" + +#: src/gui/findReplace.cpp:541 +msgid "go" +msgstr "" + +#: src/gui/findReplace.cpp:585 +msgid "no matches found!" +msgstr "" + +#: src/gui/findReplace.cpp:587 +msgid "Back" +msgstr "" + +#: src/gui/findReplace.cpp:750 +msgid "Delete query" +msgstr "" + +#: src/gui/findReplace.cpp:754 src/gui/findReplace.cpp:1037 +msgid "Add effect" +msgstr "" + +#: src/gui/findReplace.cpp:761 src/gui/findReplace.cpp:1044 +msgid "Remove effect" +msgstr "" + +#: src/gui/findReplace.cpp:786 +msgid "Search range:" +msgstr "" + +#: src/gui/findReplace.cpp:799 +msgid "Confine to channels" +msgstr "" + +#: src/gui/findReplace.cpp:803 src/gui/sampleEdit.cpp:1152 +msgid "From" +msgstr "" + +#: src/gui/findReplace.cpp:814 src/gui/sampleEdit.cpp:1156 +msgid "To" +msgstr "" + +#: src/gui/findReplace.cpp:826 +msgid "Match effect position:" +msgstr "" + +#: src/gui/findReplace.cpp:832 +msgid "match effects regardless of position." +msgstr "" + +#: src/gui/findReplace.cpp:834 src/gui/compatFlags.cpp:288 +msgid "Lax" +msgstr "" + +#: src/gui/findReplace.cpp:838 +msgid "match effects only if they appear in-order." +msgstr "" + +#: src/gui/findReplace.cpp:840 src/gui/compatFlags.cpp:276 +msgid "Strict" +msgstr "" + +#: src/gui/findReplace.cpp:844 +msgid "match effects only if they appear exactly as specified." +msgstr "" + +#: src/gui/findReplace.cpp:856 +msgid "Replace" +msgstr "" + +#: src/gui/findReplace.cpp:908 +msgid "INVALID" +msgstr "" + +#: src/gui/findReplace.cpp:1052 +msgid "Effect replace mode:" +msgstr "" + +#: src/gui/findReplace.cpp:1053 +msgid "Replace matches only" +msgstr "" + +#: src/gui/findReplace.cpp:1056 +msgid "Replace matches, then free spaces" +msgstr "" + +#: src/gui/findReplace.cpp:1059 +msgid "Clear effects" +msgstr "" + +#: src/gui/findReplace.cpp:1062 +msgid "Insert in free spaces" +msgstr "" + +#: src/gui/findReplace.cpp:1065 +msgid "Replace##QueryReplace" +msgstr "" + +#: src/gui/about.cpp:26 +msgid "is proud to present" +msgstr "" + +#: src/gui/about.cpp:30 +msgid "the biggest multi-system chiptune tracker!" +msgstr "" + +#: src/gui/about.cpp:31 +msgid "featuring DefleMask song compatibility." +msgstr "" + +#: src/gui/about.cpp:33 +msgid "> CREDITS <" +msgstr "" + +#: src/gui/about.cpp:35 +msgid "-- program --" +msgstr "" + +#: src/gui/about.cpp:37 +msgid "A M 4 N (intro tune)" +msgstr "" + +#: src/gui/about.cpp:52 +msgid "-- graphics/UI design --" +msgstr "" + +#: src/gui/about.cpp:59 +msgid "-- documentation --" +msgstr "" + +#: src/gui/about.cpp:69 +msgid "-- localization/translation team --" +msgstr "" + +#: src/gui/about.cpp:81 +msgid "-- demo songs --" +msgstr "" + +#: src/gui/about.cpp:207 +msgid "-- additional feedback/fixes --" +msgstr "" + +#: src/gui/about.cpp:218 +msgid "-- Metal backend test team --" +msgstr "" + +#: src/gui/about.cpp:224 +msgid "-- DirectX 9 backend test team --" +msgstr "" + +#: src/gui/about.cpp:231 +msgid "powered by:" +msgstr "" + +#: src/gui/about.cpp:232 +msgid "Dear ImGui by Omar Cornut" +msgstr "" + +#: src/gui/about.cpp:233 +msgid "SDL2 by Sam Lantinga" +msgstr "" + +#: src/gui/about.cpp:237 +msgid "zlib by Jean-loup Gailly" +msgstr "" + +#: src/gui/about.cpp:238 +msgid "and Mark Adler" +msgstr "" + +#: src/gui/about.cpp:239 +msgid "libsndfile by Erik de Castro Lopo" +msgstr "" + +#: src/gui/about.cpp:240 +msgid "Portable File Dialogs by Sam Hocevar" +msgstr "" + +#: src/gui/about.cpp:241 +msgid "Native File Dialog by Frogtoss Games" +msgstr "" + +#: src/gui/about.cpp:243 +msgid "Weak-JACK by x42" +msgstr "" + +#: src/gui/about.cpp:244 +msgid "RtMidi by Gary P. Scavone" +msgstr "" + +#: src/gui/about.cpp:245 +msgid "FFTW by Matteo Frigo and Steven G. Johnson" +msgstr "" + +#: src/gui/about.cpp:246 +msgid "backward-cpp by Google" +msgstr "" + +#: src/gui/about.cpp:247 +msgid "adpcm by superctr" +msgstr "" + +#: src/gui/about.cpp:248 +msgid "adpcm-xq by David Bryant" +msgstr "" + +#: src/gui/about.cpp:249 +msgid "Nuked-OPL3/OPLL/OPM/OPN2/PSG by nukeykt" +msgstr "" + +#: src/gui/about.cpp:250 +msgid "YM3812-LLE, YMF262-LLE, YMF276-LLE and YM2608-LLE by nukeykt" +msgstr "" + +#: src/gui/about.cpp:251 +msgid "ESFMu (modified version) by Kagamiin~" +msgstr "" + +#: src/gui/about.cpp:252 +msgid "ymfm by Aaron Giles" +msgstr "" + +#: src/gui/about.cpp:253 +msgid "emu2413 by Digital Sound Antiques" +msgstr "" + +#: src/gui/about.cpp:254 +msgid "MAME SN76496 by Nicola Salmoria" +msgstr "" + +#: src/gui/about.cpp:255 +msgid "MAME AY-3-8910 by Couriersud" +msgstr "" + +#: src/gui/about.cpp:256 +msgid "with AY8930 fixes by Eulous, cam900 and Grauw" +msgstr "" + +#: src/gui/about.cpp:257 +msgid "MAME SAA1099 by Juergen Buchmueller and Manuel Abadia" +msgstr "" + +#: src/gui/about.cpp:258 +msgid "MAME Namco WSG by Nicola Salmoria and Aaron Giles" +msgstr "" + +#: src/gui/about.cpp:259 +msgid "MAME RF5C68 core by Olivier Galibert and Aaron Giles" +msgstr "" + +#: src/gui/about.cpp:260 +msgid "MAME MSM5232 core by Jarek Burczynski and Hiromitsu Shioya" +msgstr "" + +#: src/gui/about.cpp:261 +msgid "MAME MSM6258 core by Barry Rodewald" +msgstr "" + +#: src/gui/about.cpp:262 +msgid "MAME YMZ280B core by Aaron Giles" +msgstr "" + +#: src/gui/about.cpp:263 +msgid "MAME GA20 core by Acho A. Tang and R. Belmont" +msgstr "" + +#: src/gui/about.cpp:264 +msgid "MAME SegaPCM core by Hiromitsu Shioya and Olivier Galibert" +msgstr "" + +#: src/gui/about.cpp:265 +msgid "SAASound by Dave Hooper and Simon Owen" +msgstr "" + +#: src/gui/about.cpp:266 +msgid "SameBoy by Lior Halphon" +msgstr "" + +#: src/gui/about.cpp:267 +msgid "Mednafen PCE, WonderSwan, T6W28 and Virtual Boy audio cores" +msgstr "" + +#: src/gui/about.cpp:268 +msgid "SNES DSP core by Blargg" +msgstr "" + +#: src/gui/about.cpp:269 +msgid "puNES (NES, MMC5 and FDS) by FHorse" +msgstr "" + +#: src/gui/about.cpp:270 +msgid "NSFPlay (NES and FDS) by Brad Smith and Brezza" +msgstr "" + +#: src/gui/about.cpp:271 +msgid "reSID by Dag Lem" +msgstr "" + +#: src/gui/about.cpp:272 +msgid "reSIDfp by Dag Lem, Antti Lankila" +msgstr "" + +#: src/gui/about.cpp:273 +msgid "and Leandro Nini" +msgstr "" + +#: src/gui/about.cpp:274 +msgid "dSID by DefleMask Team based on jsSID" +msgstr "" + +#: src/gui/about.cpp:275 +msgid "Stella by Stella Team" +msgstr "" + +#: src/gui/about.cpp:276 +msgid "QSound emulator by superctr and Valley Bell" +msgstr "" + +#: src/gui/about.cpp:277 +msgid "VICE VIC-20 sound core by Rami Rasanen and viznut" +msgstr "" + +#: src/gui/about.cpp:278 +msgid "VICE TED sound core by Andreas Boose, Tibor Biczo" +msgstr "" + +#: src/gui/about.cpp:279 +msgid "and Marco van den Heuvel" +msgstr "" + +#: src/gui/about.cpp:280 +msgid "VERA sound core by Frank van den Hoef" +msgstr "" + +#: src/gui/about.cpp:281 +msgid "mzpokeysnd POKEY emulator by Michael Borisov" +msgstr "" + +#: src/gui/about.cpp:282 +msgid "ASAP POKEY emulator by Piotr Fusik" +msgstr "" + +#: src/gui/about.cpp:283 +msgid "ported by laoo to C++" +msgstr "" + +#: src/gui/about.cpp:284 +msgid "vgsound_emu (second version, modified version) by cam900" +msgstr "" + +#: src/gui/about.cpp:285 +msgid "SM8521 emulator (modified version) by cam900" +msgstr "" + +#: src/gui/about.cpp:286 +msgid "D65010G031 emulator (modified version) by cam900" +msgstr "" + +#: src/gui/about.cpp:287 +msgid "Namco C140/C219 emulator (modified version) by cam900" +msgstr "" + +#: src/gui/about.cpp:288 +msgid "PowerNoise emulator by scratchminer" +msgstr "" + +#: src/gui/about.cpp:289 +msgid "ep128emu by Istvan Varga" +msgstr "" + +#: src/gui/about.cpp:290 +msgid "NDS sound emulator by cam900" +msgstr "" + +#: src/gui/about.cpp:292 +msgid "greetings to:" +msgstr "" + +#: src/gui/about.cpp:295 +msgid "all members of Deflers of Noice!" +msgstr "" + +#: src/gui/about.cpp:301 +msgid "copyright © 2021-2024 tildearrow" +msgstr "" + +#: src/gui/about.cpp:302 +msgid "(and contributors)." +msgstr "" + +#: src/gui/about.cpp:303 +msgid "licensed under GPLv2+! see" +msgstr "" + +#: src/gui/about.cpp:304 +msgid "LICENSE for more information." +msgstr "" + +#: src/gui/about.cpp:306 +msgid "help Furnace grow:" +msgstr "" + +#: src/gui/about.cpp:309 +msgid "contact tildearrow at:" +msgstr "" + +#: src/gui/about.cpp:312 +msgid "disclaimer:" +msgstr "" + +#: src/gui/about.cpp:313 +msgid "despite the fact this program works" +msgstr "" + +#: src/gui/about.cpp:314 +msgid "with the .dmf file format, it is NOT" +msgstr "" + +#: src/gui/about.cpp:315 +msgid "affiliated with Delek or DefleMask in" +msgstr "" + +#: src/gui/about.cpp:316 +msgid "any way, nor it is a replacement for" +msgstr "" + +#: src/gui/about.cpp:317 +msgid "the original program." +msgstr "" + +#: src/gui/about.cpp:319 +msgid "it also comes with ABSOLUTELY NO WARRANTY." +msgstr "" + +#: src/gui/about.cpp:321 +msgid "thanks to all contributors/bug reporters!" +msgstr "" + +#: src/gui/about.cpp:328 +msgid "About Furnace" +msgstr "" + +#: src/gui/about.cpp:418 +msgid "Unsaved changes! Save changes before playing?" +msgstr "" + +#: src/gui/compatFlags.cpp:31 src/gui/guiConst.cpp:598 +msgid "Compatibility Flags" +msgstr "" + +#: src/gui/compatFlags.cpp:32 +msgid "" +"these flags are designed to provide better DefleMask/older Furnace " +"compatibility.\n" +"it is recommended to disable most of these unless you rely on specific " +"quirks." +msgstr "" + +#: src/gui/compatFlags.cpp:34 src/gui/compatFlags.cpp:310 +msgid "DefleMask" +msgstr "" + +#: src/gui/compatFlags.cpp:35 +msgid "Limit slide range" +msgstr "" + +#: src/gui/compatFlags.cpp:37 +msgid "" +"when enabled, slides are limited to a compatible range.\n" +"may cause problems with slides in negative octaves." +msgstr "" + +#: src/gui/compatFlags.cpp:39 +msgid "Compatible noise layout on NES and PC Engine" +msgstr "" + +#: src/gui/compatFlags.cpp:41 +msgid "" +"use a rather unusual compatible noise frequency layout.\n" +"removes some noise frequencies on PC Engine." +msgstr "" + +#: src/gui/compatFlags.cpp:43 +msgid "Game Boy instrument duty is wave volume" +msgstr "" + +#: src/gui/compatFlags.cpp:45 +msgid "" +"if enabled, an instrument with duty macro in the wave channel will be mapped " +"to wavetable volume." +msgstr "" + +#: src/gui/compatFlags.cpp:48 +msgid "Restart macro on portamento" +msgstr "" + +#: src/gui/compatFlags.cpp:50 +msgid "" +"when enabled, a portamento effect will reset the channel's macro if used in " +"combination with a note." +msgstr "" + +#: src/gui/compatFlags.cpp:52 +msgid "Legacy volume slides" +msgstr "" + +#: src/gui/compatFlags.cpp:54 +msgid "" +"simulate glitchy volume slide behavior by silently overflowing the volume " +"when the slide goes below 0." +msgstr "" + +#: src/gui/compatFlags.cpp:56 +msgid "Compatible arpeggio" +msgstr "" + +#: src/gui/compatFlags.cpp:58 +msgid "delay arpeggio by one tick on every new note." +msgstr "" + +#: src/gui/compatFlags.cpp:60 +msgid "Disable DAC when sample ends" +msgstr "" + +#: src/gui/compatFlags.cpp:62 +msgid "" +"when enabled, the DAC in YM2612 will be disabled if there isn't any sample " +"playing." +msgstr "" + +#: src/gui/compatFlags.cpp:64 +msgid "Broken speed alternation" +msgstr "" + +#: src/gui/compatFlags.cpp:66 +msgid "" +"determines next speed based on whether the row is odd/even instead of " +"alternating between speeds." +msgstr "" + +#: src/gui/compatFlags.cpp:68 +msgid "Ignore duplicate slide effects" +msgstr "" + +#: src/gui/compatFlags.cpp:70 +msgid "" +"if this is on, only the first slide of a row in a channel will be considered." +msgstr "" + +#: src/gui/compatFlags.cpp:72 +msgid "Ignore 0Dxx on the last order" +msgstr "" + +#: src/gui/compatFlags.cpp:74 +msgid "" +"if this is on, a jump to next row effect will not take place when it is on " +"the last order of a song." +msgstr "" + +#: src/gui/compatFlags.cpp:76 +msgid "Buggy portamento after pitch slide" +msgstr "" + +#: src/gui/compatFlags.cpp:78 +msgid "simulates a bug in where portamento does not work after sliding." +msgstr "" + +#: src/gui/compatFlags.cpp:80 +msgid "FM pitch slide octave boundary odd behavior" +msgstr "" + +#: src/gui/compatFlags.cpp:82 +msgid "" +"if this is on, a pitch slide that crosses the octave boundary will stop for " +"one tick and then continue from the nearest octave boundary.\n" +"for .dmf compatibility." +msgstr "" + +#: src/gui/compatFlags.cpp:84 +msgid "Don't apply Game Boy envelope on note-less instrument change" +msgstr "" + +#: src/gui/compatFlags.cpp:86 +msgid "if this is on, an instrument change will not affect the envelope." +msgstr "" + +#: src/gui/compatFlags.cpp:88 +msgid "Ignore DAC mode change outside of intended channel in ExtCh mode" +msgstr "" + +#: src/gui/compatFlags.cpp:90 +msgid "if this is on, 17xx has no effect on the operator channels in YM2612." +msgstr "" + +#: src/gui/compatFlags.cpp:92 +msgid "E1xy/E2xy also take priority over slide stops" +msgstr "" + +#: src/gui/compatFlags.cpp:94 +msgid "does this make any sense by now?" +msgstr "" + +#: src/gui/compatFlags.cpp:96 +msgid "E1xy/E2xy stop when repeating the same note" +msgstr "" + +#: src/gui/compatFlags.cpp:98 +msgid "ugh, if only this wasn't a thing..." +msgstr "" + +#: src/gui/compatFlags.cpp:100 +msgid "SN76489 duty macro always resets phase" +msgstr "" + +#: src/gui/compatFlags.cpp:102 +msgid "" +"when enabled, duty macro will always reset phase, even if its value hasn't " +"changed." +msgstr "" + +#: src/gui/compatFlags.cpp:104 +msgid "Broken volume scaling strategy" +msgstr "" + +#: src/gui/compatFlags.cpp:106 +msgid "" +"when enabled:\n" +"- log scaling: multiply\n" +"- linear scaling: subtract\n" +"when disabled:\n" +"- log scaling: subtract\n" +"- linear scaling: multiply" +msgstr "" + +#: src/gui/compatFlags.cpp:108 +msgid "Don't persist volume macro after it finishes" +msgstr "" + +#: src/gui/compatFlags.cpp:110 +msgid "" +"when enabled, a value in the volume column that happens after the volume " +"macro is done will disregard the macro." +msgstr "" + +#: src/gui/compatFlags.cpp:112 +msgid "Broken output volume on instrument change" +msgstr "" + +#: src/gui/compatFlags.cpp:114 +msgid "" +"if enabled, no checks for the presence of a volume macro will be made.\n" +"this will cause the last macro value to linger unless a value in the volume " +"column is present." +msgstr "" + +#: src/gui/compatFlags.cpp:116 +msgid "Broken output volume - Episode 2 (PLEASE KEEP ME DISABLED)" +msgstr "" + +#: src/gui/compatFlags.cpp:118 +msgid "" +"these compatibility flags are getting SO damn ridiculous and out of " +"control.\n" +"as you may have guessed, this one exists due to yet ANOTHER DefleMask-" +"specific behavior.\n" +"please keep this off at all costs, because I will not support it when ROM " +"export comes.\n" +"oh, and don't start an argument out of it. Furnace isn't a DefleMask " +"replacement, and no,\n" +"I am not trying to make it look like one with all these flags.\n" +"\n" +"oh, and what about the other flags that don't have to do with DefleMask?\n" +"those are for .mod import, future FamiTracker import and personal taste!\n" +"\n" +"end of rant" +msgstr "" + +#: src/gui/compatFlags.cpp:120 +msgid "Treat SN76489 periods under 8 as 1" +msgstr "" + +#: src/gui/compatFlags.cpp:122 +msgid "" +"when enabled, any SN period under 8 will be written as 1 instead.\n" +"this replicates DefleMask behavior, but reduces available period range." +msgstr "" + +#: src/gui/compatFlags.cpp:126 src/gui/compatFlags.cpp:304 +msgid "Old Furnace" +msgstr "" + +#: src/gui/compatFlags.cpp:127 +msgid "Arpeggio inhibits non-porta slides" +msgstr "" + +#: src/gui/compatFlags.cpp:129 src/gui/compatFlags.cpp:133 +msgid "behavior changed in 0.5.5" +msgstr "" + +#: src/gui/compatFlags.cpp:131 +msgid "Wack FM algorithm macro" +msgstr "" + +#: src/gui/compatFlags.cpp:135 +msgid "Broken shortcut slides (E1xy/E2xy)" +msgstr "" + +#: src/gui/compatFlags.cpp:137 +msgid "behavior changed in 0.5.7" +msgstr "" + +#: src/gui/compatFlags.cpp:139 +msgid "Stop portamento on note off" +msgstr "" + +#: src/gui/compatFlags.cpp:141 src/gui/compatFlags.cpp:145 +#: src/gui/compatFlags.cpp:149 src/gui/compatFlags.cpp:153 +#: src/gui/compatFlags.cpp:157 src/gui/compatFlags.cpp:161 +#: src/gui/compatFlags.cpp:165 +msgid "behavior changed in 0.6pre1" +msgstr "" + +#: src/gui/compatFlags.cpp:143 +msgid "Don't allow instrument change during slides" +msgstr "" + +#: src/gui/compatFlags.cpp:147 +msgid "Don't reset note to base on arpeggio stop" +msgstr "" + +#: src/gui/compatFlags.cpp:151 +msgid "ExtCh channel status is not shared among operators" +msgstr "" + +#: src/gui/compatFlags.cpp:155 +msgid "Disable new SegaPCM features (macros and better panning)" +msgstr "" + +#: src/gui/compatFlags.cpp:159 +msgid "Old FM octave boundary behavior" +msgstr "" + +#: src/gui/compatFlags.cpp:163 +msgid "Disable OPN2 DAC volume control" +msgstr "" + +#: src/gui/compatFlags.cpp:167 +msgid "Broken initial position of portamento after arpeggio" +msgstr "" + +#: src/gui/compatFlags.cpp:169 +msgid "behavior changed in 0.6pre1.5" +msgstr "" + +#: src/gui/compatFlags.cpp:171 +msgid "Disable new sample features" +msgstr "" + +#: src/gui/compatFlags.cpp:173 src/gui/compatFlags.cpp:177 +msgid "behavior changed in 0.6pre2" +msgstr "" + +#: src/gui/compatFlags.cpp:175 +msgid "Old arpeggio macro + pitch slide strategy" +msgstr "" + +#: src/gui/compatFlags.cpp:179 +msgid "Broken portamento during legato" +msgstr "" + +#: src/gui/compatFlags.cpp:181 +msgid "behavior changed in 0.6pre4" +msgstr "" + +#: src/gui/compatFlags.cpp:183 +msgid "Broken macros in some FM chips after note off" +msgstr "" + +#: src/gui/compatFlags.cpp:185 +msgid "behavior changed in 0.6pre5" +msgstr "" + +#: src/gui/compatFlags.cpp:187 +msgid "Pre-note does not take effects into consideration" +msgstr "" + +#: src/gui/compatFlags.cpp:189 +msgid "behavior changed in 0.6pre9" +msgstr "" + +#: src/gui/compatFlags.cpp:191 +msgid "Disable new NES DPCM features" +msgstr "" + +#: src/gui/compatFlags.cpp:193 +msgid "behavior changed in 0.6.1" +msgstr "" + +#: src/gui/compatFlags.cpp:195 +msgid "Legacy technical ALWAYS_SET_VOLUME behavior" +msgstr "" + +#: src/gui/compatFlags.cpp:197 +msgid "" +"behavior changed in 0.6.1\n" +"this flag will be removed if I find out that none of the songs break after " +"disabling it." +msgstr "" + +#: src/gui/compatFlags.cpp:199 +msgid "Old sample offset effect" +msgstr "" + +#: src/gui/compatFlags.cpp:201 +msgid "behavior changed in 0.6.3" +msgstr "" + +#: src/gui/compatFlags.cpp:205 +msgid ".mod import" +msgstr "" + +#: src/gui/compatFlags.cpp:206 +msgid "Don't slide on the first tick of a row" +msgstr "" + +#: src/gui/compatFlags.cpp:208 +msgid "" +"simulates ProTracker's behavior of not applying volume/pitch slides on the " +"first tick of a row." +msgstr "" + +#: src/gui/compatFlags.cpp:210 +msgid "Reset arpeggio position on row change" +msgstr "" + +#: src/gui/compatFlags.cpp:212 +msgid "" +"simulates ProTracker's behavior of arpeggio being bound to the current tick " +"of a row." +msgstr "" + +#: src/gui/compatFlags.cpp:216 +msgid "Pitch/Playback" +msgstr "" + +#: src/gui/compatFlags.cpp:217 +msgid "Pitch linearity:" +msgstr "" + +#: src/gui/compatFlags.cpp:223 +msgid "like ProTracker/FamiTracker" +msgstr "" + +#: src/gui/compatFlags.cpp:227 +msgid "Partial (only 04xy/E5xx)" +msgstr "" + +#: src/gui/compatFlags.cpp:231 +msgid "" +"like DefleMask\n" +"\n" +"this pitch linearity mode is deprecated due to:\n" +"- excessive complexity\n" +"- lack of possible optimization\n" +"\n" +"it is recommended to change it now because I will remove this option in the " +"future!" +msgstr "" + +#: src/gui/compatFlags.cpp:235 +msgid "Full" +msgstr "" + +#: src/gui/compatFlags.cpp:239 +msgid "like Impulse Tracker" +msgstr "" + +#: src/gui/compatFlags.cpp:246 +msgid "Pitch slide speed multiplier" +msgstr "" + +#: src/gui/compatFlags.cpp:252 +msgid "Loop modality:" +msgstr "" + +#: src/gui/compatFlags.cpp:254 +msgid "Reset channels" +msgstr "" + +#: src/gui/compatFlags.cpp:258 +msgid "" +"select to reset channels on loop. may trigger a voltage click on every loop!" +msgstr "" + +#: src/gui/compatFlags.cpp:260 +msgid "Soft reset channels" +msgstr "" + +#: src/gui/compatFlags.cpp:264 +msgid "select to turn channels off on loop." +msgstr "" + +#: src/gui/compatFlags.cpp:266 +msgid "Do nothing" +msgstr "" + +#: src/gui/compatFlags.cpp:270 +msgid "select to not reset channels on loop." +msgstr "" + +#: src/gui/compatFlags.cpp:274 +msgid "Cut/delay effect policy:" +msgstr "" + +#: src/gui/compatFlags.cpp:280 +msgid "only when time is less than speed (like DefleMask/ProTracker)" +msgstr "" + +#: src/gui/compatFlags.cpp:282 +msgid "Strict (old)" +msgstr "" + +#: src/gui/compatFlags.cpp:286 +msgid "only when time is less than or equal to speed (original buggy behavior)" +msgstr "" + +#: src/gui/compatFlags.cpp:292 +msgid "no checks" +msgstr "" + +#: src/gui/compatFlags.cpp:296 +msgid "Simultaneous jump (0B+0D) treatment:" +msgstr "" + +#: src/gui/compatFlags.cpp:302 +msgid "accept 0B+0D to jump to a specific row of an order" +msgstr "" + +#: src/gui/compatFlags.cpp:308 +msgid "only accept the first jump effect" +msgstr "" + +#: src/gui/compatFlags.cpp:314 +msgid "only accept 0Dxx" +msgstr "" + +#: src/gui/compatFlags.cpp:320 +msgid "Auto-insert one tick gap between notes" +msgstr "" + +#: src/gui/compatFlags.cpp:322 +msgid "" +"when enabled, a one-tick note cut will be inserted between non-legato/non-" +"portamento notes.\n" +"this simulates the behavior of some Amiga/SNES music engines.\n" +"\n" +"ineffective on C64." +msgstr "" + +#: src/gui/compatFlags.cpp:327 +msgid "Don't reset slides after note off" +msgstr "" + +#: src/gui/compatFlags.cpp:329 +msgid "when enabled, note off will not reset the channel's slide effect." +msgstr "" + +#: src/gui/compatFlags.cpp:331 +msgid "Don't reset portamento after reaching target" +msgstr "" + +#: src/gui/compatFlags.cpp:333 +msgid "" +"when enabled, the slide effect will not be disabled after it reaches its " +"target." +msgstr "" + +#: src/gui/compatFlags.cpp:335 +msgid "Continuous vibrato" +msgstr "" + +#: src/gui/compatFlags.cpp:337 +msgid "when enabled, vibrato phase/position will not be reset on a new note." +msgstr "" + +#: src/gui/compatFlags.cpp:339 +msgid "Pitch macro is not linear" +msgstr "" + +#: src/gui/compatFlags.cpp:341 +msgid "" +"when enabled, the pitch macro of an instrument is in frequency/period space." +msgstr "" + +#: src/gui/compatFlags.cpp:343 +msgid "Reset arpeggio effect position on new note" +msgstr "" + +#: src/gui/compatFlags.cpp:345 +msgid "when enabled, arpeggio effect (00xy) position is reset on a new note." +msgstr "" + +#: src/gui/compatFlags.cpp:347 +msgid "Volume scaling rounds up" +msgstr "" + +#: src/gui/compatFlags.cpp:349 +msgid "" +"when enabled, volume macros round up when applied\n" +"this prevents volume scaling from causing vol=0, which is silent on some " +"chips\n" +"\n" +"ineffective on logarithmic channels" +msgstr "" + +#: src/gui/guiConst.cpp:127 +msgid "Generic Sample" +msgstr "" + +#: src/gui/guiConst.cpp:155 +msgid "OPL (drums)" +msgstr "" + +#: src/gui/guiConst.cpp:191 +msgid "Forward" +msgstr "" + +#: src/gui/guiConst.cpp:192 +msgid "Backward" +msgstr "" + +#: src/gui/guiConst.cpp:193 +msgid "Ping pong" +msgstr "" + +#: src/gui/guiConst.cpp:218 +msgid "linear" +msgstr "" + +#: src/gui/guiConst.cpp:219 +msgid "cubic spline" +msgstr "" + +#: src/gui/guiConst.cpp:220 +msgid "blep synthesis" +msgstr "" + +#: src/gui/guiConst.cpp:221 +msgid "sinc" +msgstr "" + +#: src/gui/guiConst.cpp:222 +msgid "best possible" +msgstr "" + +#: src/gui/guiConst.cpp:226 src/gui/sampleEdit.cpp:137 +#: src/gui/sampleEdit.cpp:143 +msgid "Invalid" +msgstr "" + +#: src/gui/guiConst.cpp:231 +msgid "Time" +msgstr "" + +#: src/gui/guiConst.cpp:233 +msgid "System (Primary)" +msgstr "" + +#: src/gui/guiConst.cpp:234 +msgid "System (Secondary)" +msgstr "" + +#: src/gui/guiConst.cpp:530 +msgid "---Global" +msgstr "" + +#: src/gui/guiConst.cpp:532 +msgid "Open file" +msgstr "" + +#: src/gui/guiConst.cpp:533 +msgid "Restore backup" +msgstr "" + +#: src/gui/guiConst.cpp:534 +msgid "Save file" +msgstr "" + +#: src/gui/guiConst.cpp:535 +msgid "Save as" +msgstr "" + +#: src/gui/guiConst.cpp:537 src/gui/sampleEdit.cpp:982 +msgid "Undo" +msgstr "" + +#: src/gui/guiConst.cpp:539 src/gui/guiConst.cpp:541 src/gui/sampleEdit.cpp:989 +msgid "Redo" +msgstr "" + +#: src/gui/guiConst.cpp:543 +msgid "Exit" +msgstr "" + +#: src/gui/guiConst.cpp:544 +msgid "Play/Stop (toggle)" +msgstr "" + +#: src/gui/guiConst.cpp:547 +msgid "Play (from beginning)" +msgstr "" + +#: src/gui/guiConst.cpp:548 +msgid "Play (repeat pattern)" +msgstr "" + +#: src/gui/guiConst.cpp:549 +msgid "Play from cursor" +msgstr "" + +#: src/gui/guiConst.cpp:550 +msgid "Step row" +msgstr "" + +#: src/gui/guiConst.cpp:551 +msgid "Octave up" +msgstr "" + +#: src/gui/guiConst.cpp:552 +msgid "Octave down" +msgstr "" + +#: src/gui/guiConst.cpp:553 +msgid "Previous instrument" +msgstr "" + +#: src/gui/guiConst.cpp:554 +msgid "Next instrument" +msgstr "" + +#: src/gui/guiConst.cpp:555 +msgid "Increase edit step" +msgstr "" + +#: src/gui/guiConst.cpp:556 +msgid "Decrease edit step" +msgstr "" + +#: src/gui/guiConst.cpp:557 +msgid "Toggle edit mode" +msgstr "" + +#: src/gui/guiConst.cpp:559 +msgid "Toggle repeat pattern" +msgstr "" + +#: src/gui/guiConst.cpp:562 +msgid "Toggle full-screen" +msgstr "" + +#: src/gui/guiConst.cpp:563 +msgid "Request voice from TX81Z" +msgstr "" + +#: src/gui/guiConst.cpp:565 +msgid "Clear song data" +msgstr "" + +#: src/gui/guiConst.cpp:567 src/gui/gui.cpp:5573 src/gui/gui.cpp:5625 +msgid "Command Palette" +msgstr "" + +#: src/gui/guiConst.cpp:569 +msgid "Recent files (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:570 +msgid "Instruments (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:571 +msgid "Samples (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:572 +msgid "Change instrument (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:573 +msgid "Add chip (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:578 +msgid "Instrument List" +msgstr "" + +#: src/gui/guiConst.cpp:579 src/gui/insEdit.cpp:5203 +msgid "Instrument Editor" +msgstr "" + +#: src/gui/guiConst.cpp:580 +msgid "Song Information" +msgstr "" + +#: src/gui/guiConst.cpp:583 +msgid "Wavetable List" +msgstr "" + +#: src/gui/guiConst.cpp:584 src/gui/waveEdit.cpp:409 +msgid "Wavetable Editor" +msgstr "" + +#: src/gui/guiConst.cpp:585 +msgid "Sample List" +msgstr "" + +#: src/gui/guiConst.cpp:594 +msgid "Debug Menu" +msgstr "" + +#: src/gui/guiConst.cpp:595 +msgid "Oscilloscope (master)" +msgstr "" + +#: src/gui/guiConst.cpp:603 src/gui/sysManager.cpp:41 +msgid "Chip Manager" +msgstr "" + +#: src/gui/guiConst.cpp:614 src/gui/csPlayer.cpp:112 +msgid "Command Stream Player" +msgstr "" + +#: src/gui/guiConst.cpp:615 +msgid "User Presets" +msgstr "" + +#: src/gui/guiConst.cpp:617 +msgid "Collapse/expand current window" +msgstr "" + +#: src/gui/guiConst.cpp:618 +msgid "Close current window" +msgstr "" + +#: src/gui/guiConst.cpp:621 +msgid "---Pattern" +msgstr "" + +#: src/gui/guiConst.cpp:622 +msgid "Transpose (+1)" +msgstr "" + +#: src/gui/guiConst.cpp:623 +msgid "Transpose (-1)" +msgstr "" + +#: src/gui/guiConst.cpp:624 +msgid "Transpose (+1 octave)" +msgstr "" + +#: src/gui/guiConst.cpp:625 +msgid "Transpose (-1 octave)" +msgstr "" + +#: src/gui/guiConst.cpp:626 +msgid "Increase values (+1)" +msgstr "" + +#: src/gui/guiConst.cpp:627 +msgid "Increase values (-1)" +msgstr "" + +#: src/gui/guiConst.cpp:628 +msgid "Increase values (+16)" +msgstr "" + +#: src/gui/guiConst.cpp:629 +msgid "Increase values (-16)" +msgstr "" + +#: src/gui/guiConst.cpp:630 +msgid "Select all" +msgstr "" + +#: src/gui/guiConst.cpp:631 +msgid "Cut" +msgstr "" + +#: src/gui/guiConst.cpp:632 +msgid "Copy" +msgstr "" + +#: src/gui/guiConst.cpp:633 +msgid "Paste" +msgstr "" + +#: src/gui/guiConst.cpp:634 +msgid "Paste Mix (foreground)" +msgstr "" + +#: src/gui/guiConst.cpp:635 +msgid "Paste Mix (background)" +msgstr "" + +#: src/gui/guiConst.cpp:636 +msgid "Paste Flood" +msgstr "" + +#: src/gui/guiConst.cpp:637 +msgid "Paste Overflow" +msgstr "" + +#: src/gui/guiConst.cpp:638 +msgid "Move cursor up" +msgstr "" + +#: src/gui/guiConst.cpp:639 +msgid "Move cursor down" +msgstr "" + +#: src/gui/guiConst.cpp:640 +msgid "Move cursor left" +msgstr "" + +#: src/gui/guiConst.cpp:641 +msgid "Move cursor right" +msgstr "" + +#: src/gui/guiConst.cpp:642 +msgid "Move cursor up by one (override Edit Step)" +msgstr "" + +#: src/gui/guiConst.cpp:643 +msgid "Move cursor down by one (override Edit Step)" +msgstr "" + +#: src/gui/guiConst.cpp:644 +msgid "Move cursor to previous channel" +msgstr "" + +#: src/gui/guiConst.cpp:645 +msgid "Move cursor to next channel" +msgstr "" + +#: src/gui/guiConst.cpp:646 +msgid "Move cursor to next channel (overflow)" +msgstr "" + +#: src/gui/guiConst.cpp:647 +msgid "Move cursor to previous channel (overflow)" +msgstr "" + +#: src/gui/guiConst.cpp:648 +msgid "Move cursor to beginning of pattern" +msgstr "" + +#: src/gui/guiConst.cpp:649 +msgid "Move cursor to end of pattern" +msgstr "" + +#: src/gui/guiConst.cpp:650 +msgid "Move cursor up (coarse)" +msgstr "" + +#: src/gui/guiConst.cpp:651 +msgid "Move cursor down (coarse)" +msgstr "" + +#: src/gui/guiConst.cpp:652 +msgid "Expand selection upwards" +msgstr "" + +#: src/gui/guiConst.cpp:653 +msgid "Expand selection downwards" +msgstr "" + +#: src/gui/guiConst.cpp:654 +msgid "Expand selection to the left" +msgstr "" + +#: src/gui/guiConst.cpp:655 +msgid "Expand selection to the right" +msgstr "" + +#: src/gui/guiConst.cpp:656 +msgid "Expand selection upwards by one (override Edit Step)" +msgstr "" + +#: src/gui/guiConst.cpp:657 +msgid "Expand selection downwards by one (override Edit Step)" +msgstr "" + +#: src/gui/guiConst.cpp:658 +msgid "Expand selection to beginning of pattern" +msgstr "" + +#: src/gui/guiConst.cpp:659 +msgid "Expand selection to end of pattern" +msgstr "" + +#: src/gui/guiConst.cpp:660 +msgid "Expand selection upwards (coarse)" +msgstr "" + +#: src/gui/guiConst.cpp:661 +msgid "Expand selection downwards (coarse)" +msgstr "" + +#: src/gui/guiConst.cpp:662 +msgid "Move selection up" +msgstr "" + +#: src/gui/guiConst.cpp:663 +msgid "Move selection down" +msgstr "" + +#: src/gui/guiConst.cpp:664 +msgid "Move selection to previous channel" +msgstr "" + +#: src/gui/guiConst.cpp:665 +msgid "Move selection to next channel" +msgstr "" + +#: src/gui/guiConst.cpp:667 +msgid "Pull delete" +msgstr "" + +#: src/gui/guiConst.cpp:668 +msgid "Insert" +msgstr "" + +#: src/gui/guiConst.cpp:669 +msgid "Mute channel at cursor" +msgstr "" + +#: src/gui/guiConst.cpp:670 +msgid "Solo channel at cursor" +msgstr "" + +#: src/gui/guiConst.cpp:671 +msgid "Unmute all channels" +msgstr "" + +#: src/gui/guiConst.cpp:672 +msgid "Go to next order" +msgstr "" + +#: src/gui/guiConst.cpp:673 +msgid "Go to previous order" +msgstr "" + +#: src/gui/guiConst.cpp:674 +msgid "Collapse channel at cursor" +msgstr "" + +#: src/gui/guiConst.cpp:675 +msgid "Increase effect columns" +msgstr "" + +#: src/gui/guiConst.cpp:676 +msgid "Decrease effect columns" +msgstr "" + +#: src/gui/guiConst.cpp:677 +msgid "Interpolate" +msgstr "" + +#: src/gui/guiConst.cpp:678 src/gui/insEdit.cpp:530 +msgid "Fade" +msgstr "" + +#: src/gui/guiConst.cpp:679 +msgid "Invert values" +msgstr "" + +#: src/gui/guiConst.cpp:680 +msgid "Flip selection" +msgstr "" + +#: src/gui/guiConst.cpp:681 +msgid "Collapse rows" +msgstr "" + +#: src/gui/guiConst.cpp:682 +msgid "Expand rows" +msgstr "" + +#: src/gui/guiConst.cpp:683 +msgid "Collapse pattern" +msgstr "" + +#: src/gui/guiConst.cpp:684 +msgid "Expand pattern" +msgstr "" + +#: src/gui/guiConst.cpp:685 +msgid "Collapse song" +msgstr "" + +#: src/gui/guiConst.cpp:686 +msgid "Expand song" +msgstr "" + +#: src/gui/guiConst.cpp:687 +msgid "Set note input latch" +msgstr "" + +#: src/gui/guiConst.cpp:688 +msgid "Change mobile scroll mode" +msgstr "" + +#: src/gui/guiConst.cpp:689 +msgid "Clear note input latch" +msgstr "" + +#: src/gui/guiConst.cpp:692 +msgid "---Instrument list" +msgstr "" + +#: src/gui/guiConst.cpp:693 +msgid "Add instrument" +msgstr "" + +#: src/gui/guiConst.cpp:694 +msgid "Duplicate instrument" +msgstr "" + +#: src/gui/guiConst.cpp:695 +msgid "Open instrument" +msgstr "" + +#: src/gui/guiConst.cpp:696 +msgid "Open instrument (replace current)" +msgstr "" + +#: src/gui/guiConst.cpp:697 +msgid "Save instrument" +msgstr "" + +#: src/gui/guiConst.cpp:698 +msgid "Save instrument (.dmp)" +msgstr "" + +#: src/gui/guiConst.cpp:699 +msgid "Move instrument up in list" +msgstr "" + +#: src/gui/guiConst.cpp:700 +msgid "Move instrument down in list" +msgstr "" + +#: src/gui/guiConst.cpp:701 +msgid "Delete instrument" +msgstr "" + +#: src/gui/guiConst.cpp:702 +msgid "Edit instrument" +msgstr "" + +#: src/gui/guiConst.cpp:703 +msgid "Instrument cursor up" +msgstr "" + +#: src/gui/guiConst.cpp:704 +msgid "Instrument cursor down" +msgstr "" + +#: src/gui/guiConst.cpp:705 +msgid "Instruments: toggle folders/standard view" +msgstr "" + +#: src/gui/guiConst.cpp:708 +msgid "---Wavetable list" +msgstr "" + +#: src/gui/guiConst.cpp:709 +msgid "Add wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:710 +msgid "Duplicate wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:711 +msgid "Open wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:712 +msgid "Open wavetable (replace current)" +msgstr "" + +#: src/gui/guiConst.cpp:713 +msgid "Save wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:714 +msgid "Save wavetable (.dmw)" +msgstr "" + +#: src/gui/guiConst.cpp:715 +msgid "Save wavetable (raw)" +msgstr "" + +#: src/gui/guiConst.cpp:716 +msgid "Move wavetable up in list" +msgstr "" + +#: src/gui/guiConst.cpp:717 +msgid "Move wavetable down in list" +msgstr "" + +#: src/gui/guiConst.cpp:718 +msgid "Delete wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:719 +msgid "Edit wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:720 +msgid "Wavetable cursor up" +msgstr "" + +#: src/gui/guiConst.cpp:721 +msgid "Wavetable cursor down" +msgstr "" + +#: src/gui/guiConst.cpp:722 +msgid "Wavetables: toggle folders/standard view" +msgstr "" + +#: src/gui/guiConst.cpp:725 +msgid "---Sample list" +msgstr "" + +#: src/gui/guiConst.cpp:726 +msgid "Add sample" +msgstr "" + +#: src/gui/guiConst.cpp:727 +msgid "Duplicate sample" +msgstr "" + +#: src/gui/guiConst.cpp:728 +msgid "Open sample" +msgstr "" + +#: src/gui/guiConst.cpp:729 +msgid "Open sample (replace current)" +msgstr "" + +#: src/gui/guiConst.cpp:730 +msgid "Import raw sample data" +msgstr "" + +#: src/gui/guiConst.cpp:731 +msgid "Import raw sample data (replace current)" +msgstr "" + +#: src/gui/guiConst.cpp:732 +msgid "Save sample" +msgstr "" + +#: src/gui/guiConst.cpp:733 +msgid "Save sample (raw)" +msgstr "" + +#: src/gui/guiConst.cpp:734 +msgid "Move sample up in list" +msgstr "" + +#: src/gui/guiConst.cpp:735 +msgid "Move sample down in list" +msgstr "" + +#: src/gui/guiConst.cpp:736 +msgid "Delete sample" +msgstr "" + +#: src/gui/guiConst.cpp:737 +msgid "Edit sample" +msgstr "" + +#: src/gui/guiConst.cpp:738 +msgid "Sample cursor up" +msgstr "" + +#: src/gui/guiConst.cpp:739 +msgid "Sample cursor down" +msgstr "" + +#: src/gui/guiConst.cpp:741 src/gui/sampleEdit.cpp:1339 +msgid "Stop sample preview" +msgstr "" + +#: src/gui/guiConst.cpp:742 +msgid "Samples: Toggle folders/standard view" +msgstr "" + +#: src/gui/guiConst.cpp:743 +msgid "Samples: Make me a drum kit" +msgstr "" + +#: src/gui/guiConst.cpp:746 +msgid "---Sample editor" +msgstr "" + +#: src/gui/guiConst.cpp:747 +msgid "Sample editor mode: Select" +msgstr "" + +#: src/gui/guiConst.cpp:748 +msgid "Sample editor mode: Draw" +msgstr "" + +#: src/gui/guiConst.cpp:749 +msgid "Sample editor: Cut" +msgstr "" + +#: src/gui/guiConst.cpp:750 +msgid "Sample editor: Copy" +msgstr "" + +#: src/gui/guiConst.cpp:751 +msgid "Sample editor: Paste" +msgstr "" + +#: src/gui/guiConst.cpp:752 +msgid "Sample editor: Paste replace" +msgstr "" + +#: src/gui/guiConst.cpp:753 +msgid "Sample editor: Paste mix" +msgstr "" + +#: src/gui/guiConst.cpp:754 +msgid "Sample editor: Select all" +msgstr "" + +#: src/gui/guiConst.cpp:755 +msgid "Sample editor: Resize" +msgstr "" + +#: src/gui/guiConst.cpp:756 +msgid "Sample editor: Resample" +msgstr "" + +#: src/gui/guiConst.cpp:757 +msgid "Sample editor: Amplify" +msgstr "" + +#: src/gui/guiConst.cpp:758 +msgid "Sample editor: Normalize" +msgstr "" + +#: src/gui/guiConst.cpp:759 +msgid "Sample editor: Fade in" +msgstr "" + +#: src/gui/guiConst.cpp:760 +msgid "Sample editor: Fade out" +msgstr "" + +#: src/gui/guiConst.cpp:761 +msgid "Sample editor: Apply silence" +msgstr "" + +#: src/gui/guiConst.cpp:762 +msgid "Sample editor: Insert silence" +msgstr "" + +#: src/gui/guiConst.cpp:763 +msgid "Sample editor: Delete" +msgstr "" + +#: src/gui/guiConst.cpp:764 +msgid "Sample editor: Trim" +msgstr "" + +#: src/gui/guiConst.cpp:765 +msgid "Sample editor: Reverse" +msgstr "" + +#: src/gui/guiConst.cpp:766 +msgid "Sample editor: Invert" +msgstr "" + +#: src/gui/guiConst.cpp:767 +msgid "Sample editor: Signed/unsigned exchange" +msgstr "" + +#: src/gui/guiConst.cpp:768 +msgid "Sample editor: Apply filter" +msgstr "" + +#: src/gui/guiConst.cpp:769 +msgid "Sample editor: Crossfade loop points" +msgstr "" + +#: src/gui/guiConst.cpp:770 +msgid "Sample editor: Preview sample" +msgstr "" + +#: src/gui/guiConst.cpp:771 +msgid "Sample editor: Stop sample preview" +msgstr "" + +#: src/gui/guiConst.cpp:772 +msgid "Sample editor: Zoom in" +msgstr "" + +#: src/gui/guiConst.cpp:773 +msgid "Sample editor: Zoom out" +msgstr "" + +#: src/gui/guiConst.cpp:774 +msgid "Sample editor: Toggle auto-zoom" +msgstr "" + +#: src/gui/guiConst.cpp:775 +msgid "Sample editor: Create instrument from sample" +msgstr "" + +#: src/gui/guiConst.cpp:776 +msgid "Sample editor: Set loop to selection" +msgstr "" + +#: src/gui/guiConst.cpp:777 +msgid "Sample editor: Create wavetable from selection" +msgstr "" + +#: src/gui/guiConst.cpp:780 +msgid "---Orders" +msgstr "" + +#: src/gui/guiConst.cpp:781 +msgid "Previous order" +msgstr "" + +#: src/gui/guiConst.cpp:782 +msgid "Next order" +msgstr "" + +#: src/gui/guiConst.cpp:783 +msgid "Order cursor left" +msgstr "" + +#: src/gui/guiConst.cpp:784 +msgid "Order cursor right" +msgstr "" + +#: src/gui/guiConst.cpp:785 +msgid "Increase order value" +msgstr "" + +#: src/gui/guiConst.cpp:786 +msgid "Decrease order value" +msgstr "" + +#: src/gui/guiConst.cpp:787 +msgid "Switch order edit mode" +msgstr "" + +#: src/gui/guiConst.cpp:788 +msgid "Order: toggle alter entire row" +msgstr "" + +#: src/gui/guiConst.cpp:789 +msgid "Add order" +msgstr "" + +#: src/gui/guiConst.cpp:790 +msgid "Duplicate order" +msgstr "" + +#: src/gui/guiConst.cpp:791 +msgid "Deep clone order" +msgstr "" + +#: src/gui/guiConst.cpp:792 +msgid "Copy current order to end of song" +msgstr "" + +#: src/gui/guiConst.cpp:793 +msgid "Deep clone current order to end of song" +msgstr "" + +#: src/gui/guiConst.cpp:797 +msgid "Replay order" +msgstr "" + +#: src/gui/guiConst.cpp:1392 +msgid "All chips" +msgstr "" + +#: src/gui/guiConst.cpp:1396 src/gui/insEdit.cpp:6954 src/gui/insEdit.cpp:7204 +#: src/gui/insEdit.cpp:7458 src/gui/insEdit.cpp:7480 +msgid "Special" +msgstr "" + +#: src/gui/piano.cpp:103 +msgid "Options" +msgstr "" + +#: src/gui/piano.cpp:106 +msgid "Key layout:" +msgstr "" + +#: src/gui/piano.cpp:111 +msgid "Standard" +msgstr "" + +#: src/gui/piano.cpp:114 +msgid "Continuous" +msgstr "" + +#: src/gui/piano.cpp:118 +msgid "Value input pad:" +msgstr "" + +#: src/gui/piano.cpp:120 +msgid "Disabled" +msgstr "" + +#: src/gui/piano.cpp:123 +msgid "Replace piano" +msgstr "" + +#: src/gui/piano.cpp:126 +msgid "Split (automatic)" +msgstr "" + +#: src/gui/piano.cpp:129 +msgid "Split (always visible)" +msgstr "" + +#: src/gui/piano.cpp:133 +msgid "Share play/edit offset/range" +msgstr "" + +#: src/gui/piano.cpp:134 +msgid "Read-only (can't input notes)" +msgstr "" + +#: src/gui/waveEdit.cpp:30 src/gui/waveEdit.cpp:192 src/gui/insEdit.cpp:177 +#: src/gui/insEdit.cpp:188 src/gui/insEdit.cpp:199 +msgid "Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:32 src/gui/waveEdit.cpp:202 src/gui/insEdit.cpp:325 +#: src/gui/insEdit.cpp:654 +msgid "Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:39 +msgid "Cosine" +msgstr "" + +#: src/gui/waveEdit.cpp:193 +msgid "Rect. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:194 +msgid "Abs. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:195 +msgid "Quart. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:196 +msgid "Squish. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:197 +msgid "Abs. Squish. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:200 +msgid "rectSquare" +msgstr "" + +#: src/gui/waveEdit.cpp:203 +msgid "Rect. Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:204 +msgid "Abs. Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:206 +msgid "Cubed Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:207 +msgid "Rect. Cubed Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:208 +msgid "Abs. Cubed Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:210 +msgid "Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:211 +msgid "Rect. Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:212 +msgid "Abs. Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:213 +msgid "Quart. Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:214 +msgid "Squish. Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:215 +msgid "Squish. Abs. Cub. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:218 +msgid "Rect. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:219 +msgid "Abs. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:220 +msgid "Quart. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:221 +msgid "Squish. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:222 +msgid "Abs. Squish. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:224 +msgid "Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:225 +msgid "Rect. Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:226 +msgid "Abs. Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:227 +msgid "Quart. Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:228 +msgid "Squish. Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:229 +msgid "Squish. Abs. Cub. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:412 src/gui/waveEdit.cpp:413 +msgid "no wavetable selected" +msgstr "" + +#: src/gui/waveEdit.cpp:424 src/gui/sampleEdit.cpp:111 src/gui/insEdit.cpp:5223 +msgid "select one..." +msgstr "" + +#: src/gui/waveEdit.cpp:432 src/gui/waveEdit.cpp:439 src/gui/sampleEdit.cpp:119 +#: src/gui/sampleEdit.cpp:126 src/gui/insEdit.cpp:5236 src/gui/insEdit.cpp:5243 +msgid "or" +msgstr "" + +#: src/gui/waveEdit.cpp:441 src/gui/sampleEdit.cpp:128 src/gui/insEdit.cpp:5245 +msgid "Create New" +msgstr "" + +#: src/gui/waveEdit.cpp:487 +msgid "Steps" +msgstr "" + +#: src/gui/waveEdit.cpp:491 +msgid "Lines" +msgstr "" + +#: src/gui/waveEdit.cpp:496 src/gui/insEdit.cpp:2687 +msgid "Width" +msgstr "" + +#: src/gui/waveEdit.cpp:498 +msgid "" +"use a width of:\n" +"- any on Amiga/N163\n" +"- 32 on Game Boy, PC Engine, SCC, Konami Bubble System, Namco WSG, Virtual " +"Boy and WonderSwan\n" +"- 64 on FDS\n" +"- 128 on X1-010\n" +"any other widths will be scaled during playback." +msgstr "" + +#: src/gui/waveEdit.cpp:510 +msgid "Height" +msgstr "" + +#: src/gui/waveEdit.cpp:512 +msgid "" +"use a height of:\n" +"- 16 for Game Boy, WonderSwan, Namco WSG, Konami Bubble System, X1-010 " +"Envelope shape and N163\n" +"- 32 for PC Engine\n" +"- 64 for FDS and Virtual Boy\n" +"- 256 for X1-010 and SCC\n" +"any other heights will be scaled during playback." +msgstr "" + +#: src/gui/waveEdit.cpp:578 +msgid "Shapes" +msgstr "" + +#: src/gui/waveEdit.cpp:597 src/gui/insEdit.cpp:5879 src/gui/insEdit.cpp:6922 +#: src/gui/insEdit.cpp:6948 src/gui/insEdit.cpp:7008 src/gui/insEdit.cpp:7048 +#: src/gui/insEdit.cpp:7150 src/gui/insEdit.cpp:7436 src/gui/insEdit.cpp:7472 +msgid "Duty" +msgstr "" + +#: src/gui/waveEdit.cpp:607 +msgid "Exponent" +msgstr "" + +#: src/gui/waveEdit.cpp:617 +msgid "XOR Point" +msgstr "" + +#: src/gui/waveEdit.cpp:627 +msgid "Amplitude/Phase" +msgstr "" + +#: src/gui/waveEdit.cpp:679 src/gui/waveEdit.cpp:723 src/gui/waveEdit.cpp:728 +msgid "Op" +msgstr "" + +#: src/gui/waveEdit.cpp:683 +msgid "Mult" +msgstr "" + +#: src/gui/waveEdit.cpp:685 +msgid "FB" +msgstr "" + +#: src/gui/waveEdit.cpp:749 src/gui/waveEdit.cpp:750 +msgid "Connection Diagram" +msgstr "" + +#: src/gui/waveEdit.cpp:765 +msgid "Out" +msgstr "" + +#: src/gui/waveEdit.cpp:872 +msgid "WaveTools" +msgstr "" + +#: src/gui/waveEdit.cpp:890 +msgid "Scale X" +msgstr "" + +#: src/gui/waveEdit.cpp:896 +msgid "wavetable longer than 256 samples!" +msgstr "" + +#: src/gui/waveEdit.cpp:960 +msgid "Scale Y" +msgstr "" + +#: src/gui/waveEdit.cpp:978 +msgid "Offset X" +msgstr "" + +#: src/gui/waveEdit.cpp:1000 +msgid "Offset Y" +msgstr "" + +#: src/gui/waveEdit.cpp:1017 +msgid "Smooth" +msgstr "" + +#: src/gui/waveEdit.cpp:1045 src/gui/sampleEdit.cpp:996 +msgid "Amplify" +msgstr "" + +#: src/gui/waveEdit.cpp:1063 src/gui/sampleEdit.cpp:1046 +msgid "Normalize" +msgstr "" + +#: src/gui/waveEdit.cpp:1105 src/gui/sampleEdit.cpp:1121 +msgid "Reverse" +msgstr "" + +#: src/gui/waveEdit.cpp:1117 +msgid "Half" +msgstr "" + +#: src/gui/waveEdit.cpp:1127 +msgid "Double" +msgstr "" + +#: src/gui/waveEdit.cpp:1137 +msgid "Convert Signed/Unsigned" +msgstr "" + +#: src/gui/waveEdit.cpp:1167 +msgid "Dec" +msgstr "" + +#: src/gui/waveEdit.cpp:1171 src/gui/csPlayer.cpp:247 +msgid "Hex" +msgstr "" + +#: src/gui/waveEdit.cpp:1179 +msgid "Signed/Unsigned" +msgstr "" + +#: src/gui/sampleEdit.cpp:65 +#, c-format +msgid "%s: maximum sample rate is %d" +msgstr "" + +#: src/gui/sampleEdit.cpp:72 +#, c-format +msgid "%s: minimum sample rate is %d" +msgstr "" + +#: src/gui/sampleEdit.cpp:79 +#, c-format +msgid "%s: sample rate must be %d" +msgstr "" + +#: src/gui/sampleEdit.cpp:99 src/gui/sampleEdit.cpp:100 +msgid "no sample selected" +msgstr "" + +#: src/gui/sampleEdit.cpp:229 +#, c-format +msgid "SNES: loop start must be a multiple of 16 (try with %d)" +msgstr "" + +#: src/gui/sampleEdit.cpp:235 +#, c-format +msgid "SNES: loop end must be a multiple of 16 (try with %d)" +msgstr "" + +#: src/gui/sampleEdit.cpp:240 +msgid "SNES: sample length will be padded to multiple of 16" +msgstr "" + +#: src/gui/sampleEdit.cpp:249 +msgid "QSound: loop cannot be longer than 32767 samples" +msgstr "" + +#: src/gui/sampleEdit.cpp:259 +msgid "NES: loop point ignored on DPCM (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:263 +msgid "NES: maximum DPCM sample length is 32648" +msgstr "" + +#: src/gui/sampleEdit.cpp:268 +msgid "X1-010: samples can't loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:271 +msgid "X1-010: maximum sample length is 131072" +msgstr "" + +#: src/gui/sampleEdit.cpp:276 +msgid "GA20: samples can't loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:287 +msgid "YM2608: loop point ignored on ADPCM (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:290 +msgid "YM2608: sample length will be padded to multiple of 512" +msgstr "" + +#: src/gui/sampleEdit.cpp:300 +msgid "YM2610: ADPCM-A samples can't loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:302 +msgid "YM2610: loop point ignored on ADPCM-B (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:305 +msgid "YM2610: sample length will be padded to multiple of 512" +msgstr "" + +#: src/gui/sampleEdit.cpp:309 +msgid "YM2610: maximum ADPCM-A sample length is 2097152" +msgstr "" + +#: src/gui/sampleEdit.cpp:318 +msgid "Y8950: loop point ignored on ADPCM (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:321 +msgid "Y8950: sample length will be padded to multiple of 512" +msgstr "" + +#: src/gui/sampleEdit.cpp:328 +msgid "Amiga: loop start must be a multiple of 2" +msgstr "" + +#: src/gui/sampleEdit.cpp:331 +msgid "Amiga: loop end must be a multiple of 2" +msgstr "" + +#: src/gui/sampleEdit.cpp:335 +msgid "Amiga: maximum sample length is 131070" +msgstr "" + +#: src/gui/sampleEdit.cpp:344 +msgid "SegaPCM: maximum sample length is 65280" +msgstr "" + +#: src/gui/sampleEdit.cpp:353 +msgid "K053260: loop point ignored (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:357 +msgid "K053260: maximum sample length is 65535" +msgstr "" + +#: src/gui/sampleEdit.cpp:362 +msgid "C140: maximum sample length is 65535" +msgstr "" + +#: src/gui/sampleEdit.cpp:371 +msgid "C219: loop start must be a multiple of 2" +msgstr "" + +#: src/gui/sampleEdit.cpp:374 +msgid "C219: loop end must be a multiple of 2" +msgstr "" + +#: src/gui/sampleEdit.cpp:378 +msgid "C219: maximum sample length is 131072" +msgstr "" + +#: src/gui/sampleEdit.cpp:386 +msgid "MSM6295: samples can't loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:389 +msgid "MSM6295: maximum bankswitched sample length is 129024" +msgstr "" + +#: src/gui/sampleEdit.cpp:395 +msgid "GBA DMA: loop start must be a multiple of 4" +msgstr "" + +#: src/gui/sampleEdit.cpp:398 +msgid "GBA DMA: loop length must be a multiple of 16" +msgstr "" + +#: src/gui/sampleEdit.cpp:402 +msgid "GBA DMA: sample length will be padded to multiple of 16" +msgstr "" + +#: src/gui/sampleEdit.cpp:411 +msgid "ES5506: backward loop mode isn't supported" +msgstr "" + +#: src/gui/sampleEdit.cpp:414 +msgid "" +"backward/ping-pong only supported in Generic PCM DAC\n" +"ping-pong also on ES5506" +msgstr "" + +#: src/gui/sampleEdit.cpp:444 +msgid "Info" +msgstr "" + +#: src/gui/sampleEdit.cpp:447 src/gui/sampleEdit.cpp:933 +msgid "Rate" +msgstr "" + +#: src/gui/sampleEdit.cpp:453 +msgid "Compat Rate" +msgstr "" + +#: src/gui/sampleEdit.cpp:457 +msgid "" +"used in DefleMask-compatible sample mode (17xx), in where samples are mapped " +"to an octave." +msgstr "" + +#: src/gui/sampleEdit.cpp:463 +#, c-format +msgid "Loop (length: %d)##Loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:463 src/gui/insEdit.cpp:544 src/gui/insEdit.cpp:554 +#: src/gui/insEdit.cpp:605 src/gui/insEdit.cpp:6017 +msgid "Loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:487 src/gui/sampleEdit.cpp:716 +#: src/gui/sampleEdit.cpp:752 +msgid "changing the loop in a BRR sample may result in glitches!" +msgstr "" + +#: src/gui/sampleEdit.cpp:529 +msgid "BRR emphasis" +msgstr "" + +#: src/gui/sampleEdit.cpp:538 +msgid "" +"this is a BRR sample.\n" +"enabling this option will muffle it (only affects non-SNES chips)." +msgstr "" + +#: src/gui/sampleEdit.cpp:540 +msgid "" +"enable this option to slightly boost high frequencies\n" +"to compensate for the SNES' Gaussian filter's muffle." +msgstr "" + +#: src/gui/sampleEdit.cpp:546 +msgid "8-bit dither" +msgstr "" + +#: src/gui/sampleEdit.cpp:554 +msgid "dither the sample when used on a chip that only supports 8-bit samples." +msgstr "" + +#: src/gui/sampleEdit.cpp:695 src/gui/gui.cpp:2975 +msgid "Start" +msgstr "" + +#: src/gui/sampleEdit.cpp:731 src/gui/gui.cpp:2983 +msgid "End" +msgstr "" + +#: src/gui/sampleEdit.cpp:841 +#, c-format +msgid "" +"%s\n" +"%d bytes free" +msgstr "" + +#: src/gui/sampleEdit.cpp:843 +#, c-format +msgid "" +"%s (%s)\n" +"%d bytes free" +msgstr "" + +#: src/gui/sampleEdit.cpp:847 +msgid "" +"\n" +"\n" +"not enough memory for this sample!" +msgstr "" + +#: src/gui/sampleEdit.cpp:871 +msgid "Edit mode: Select" +msgstr "" + +#: src/gui/sampleEdit.cpp:880 +msgid "Edit mode: Draw" +msgstr "" + +#: src/gui/sampleEdit.cpp:891 src/gui/sampleEdit.cpp:902 +msgid "Resize" +msgstr "" + +#: src/gui/sampleEdit.cpp:906 +msgid "couldn't resize! make sure your sample is 8 or 16-bit." +msgstr "" + +#: src/gui/sampleEdit.cpp:926 src/gui/sampleEdit.cpp:957 +msgid "Resample" +msgstr "" + +#: src/gui/sampleEdit.cpp:951 +msgid "Factor" +msgstr "" + +#: src/gui/sampleEdit.cpp:956 +msgid "Filter" +msgstr "" + +#: src/gui/sampleEdit.cpp:961 +msgid "couldn't resample! make sure your sample is 8 or 16-bit." +msgstr "" + +#: src/gui/sampleEdit.cpp:1010 src/gui/sampleEdit.cpp:1197 +#: src/gui/sampleEdit.cpp:1281 +msgid "Apply" +msgstr "" + +#: src/gui/sampleEdit.cpp:1053 +msgid "Fade in" +msgstr "" + +#: src/gui/sampleEdit.cpp:1060 +msgid "Fade out" +msgstr "" + +#: src/gui/sampleEdit.cpp:1065 +msgid "Insert silence" +msgstr "" + +#: src/gui/sampleEdit.cpp:1076 +msgid "Go" +msgstr "" + +#: src/gui/sampleEdit.cpp:1081 +msgid "couldn't insert! make sure your sample is 8 or 16-bit." +msgstr "" + +#: src/gui/sampleEdit.cpp:1098 +msgid "Apply silence" +msgstr "" + +#: src/gui/sampleEdit.cpp:1112 +msgid "Trim" +msgstr "" + +#: src/gui/sampleEdit.cpp:1135 +msgid "Signed/unsigned exchange" +msgstr "" + +#: src/gui/sampleEdit.cpp:1140 +msgid "Apply filter" +msgstr "" + +#: src/gui/sampleEdit.cpp:1151 +msgid "Cutoff:" +msgstr "" + +#: src/gui/sampleEdit.cpp:1161 src/gui/insEdit.cpp:5895 +#: src/gui/insEdit.cpp:5898 src/gui/insEdit.cpp:6953 src/gui/insEdit.cpp:7216 +#: src/gui/insEdit.cpp:7478 +msgid "Resonance" +msgstr "" + +#: src/gui/sampleEdit.cpp:1167 src/gui/insEdit.cpp:6897 +msgid "Power" +msgstr "" + +#: src/gui/sampleEdit.cpp:1181 +msgid "Low-pass" +msgstr "" + +#: src/gui/sampleEdit.cpp:1186 +msgid "Band-pass" +msgstr "" + +#: src/gui/sampleEdit.cpp:1191 +msgid "High-pass" +msgstr "" + +#: src/gui/sampleEdit.cpp:1262 +msgid "Crossfade loop points" +msgstr "" + +#: src/gui/sampleEdit.cpp:1271 +msgid "Number of samples" +msgstr "" + +#: src/gui/sampleEdit.cpp:1277 +msgid "Linear <-> Equal power" +msgstr "" + +#: src/gui/sampleEdit.cpp:1283 +msgid "Crossfade: length would go out of bounds. Aborted..." +msgstr "" + +#: src/gui/sampleEdit.cpp:1286 +msgid "Crossfade: length would overflow loopStart. Try a smaller random value." +msgstr "" + +#: src/gui/sampleEdit.cpp:1332 +msgid "Preview sample" +msgstr "" + +#: src/gui/sampleEdit.cpp:1346 +msgid "Create instrument from sample" +msgstr "" + +#: src/gui/sampleEdit.cpp:1747 +msgid "paste (replace)" +msgstr "" + +#: src/gui/sampleEdit.cpp:1750 +msgid "paste (mix)" +msgstr "" + +#: src/gui/sampleEdit.cpp:1754 src/gui/gui.cpp:2769 +msgid "select all" +msgstr "" + +#: src/gui/sampleEdit.cpp:1758 +msgid "set loop to selection" +msgstr "" + +#: src/gui/sampleEdit.cpp:1761 +msgid "create wavetable from selection" +msgstr "" + +#: src/gui/sampleEdit.cpp:1767 +msgid "Draw" +msgstr "" + +#: src/gui/sampleEdit.cpp:1767 +msgid "Select" +msgstr "" + +#: src/gui/sampleEdit.cpp:1769 +#, c-format +msgid "%d samples, %d bytes" +msgstr "" + +#: src/gui/sampleEdit.cpp:1784 +#, c-format +msgid " (%d-%d: %d samples)" +msgstr "" + +#: src/gui/sampleEdit.cpp:1976 +msgid "Non-8/16-bit samples cannot be edited without prior conversion." +msgstr "" + +#: src/gui/newSong.cpp:122 src/gui/newSong.cpp:123 +msgid "Choose a System!" +msgstr "" + +#: src/gui/newSong.cpp:179 +msgid "Categories" +msgstr "" + +#: src/gui/newSong.cpp:210 +msgid "no systems here yet!" +msgstr "" + +#: src/gui/newSong.cpp:212 +msgid "no results" +msgstr "" + +#: src/gui/newSong.cpp:228 +msgid "I'm feeling lucky" +msgstr "" + +#: src/gui/newSong.cpp:230 +msgid "no categories available! what in the world." +msgstr "" + +#: src/gui/newSong.cpp:265 +msgid "it appears you're extremely lucky today!" +msgstr "" + +#: src/gui/cursor.cpp:205 +#, c-format +msgid "finish selection: %d.%d,%d - %d.%d,%d" +msgstr "" + +#: src/gui/tutorial.cpp:487 +msgid "" +"Play demo songs?\n" +"- Down: Play current song\n" +"- Up: Play demo songs" +msgstr "" + +#: src/gui/tutorial.cpp:491 +msgid "" +"Welcome to Combat Vehicle!\n" +"\n" +"Controls:\n" +"X - Shoot Arrow Key - Move\n" +"Z - Special Esc - Quit" +msgstr "" + +#: src/gui/tutorial.cpp:496 +msgid "GAME OVER" +msgstr "" + +#: src/gui/tutorial.cpp:498 +msgid "High Score!" +msgstr "" + +#: src/gui/tutorial.cpp:658 +msgid "Welcome!" +msgstr "" + +#: src/gui/tutorial.cpp:661 +msgid "welcome to Furnace, the biggest open-source chiptune tracker!" +msgstr "" + +#: src/gui/tutorial.cpp:665 +msgid "here are some tips to get you started:" +msgstr "" + +#: src/gui/tutorial.cpp:668 +msgid "" +"- add an instrument by clicking on + in Instruments\n" +"- click on the pattern view to focus it\n" +"- channel columns have the following, in this order: note, instrument, " +"volume and effects\n" +"- hit space bar while on the pattern to toggle Edit Mode\n" +"- click on the pattern or use arrow keys to move the cursor\n" +"- values (instrument, volume, effects and effect values) are in hexadecimal\n" +"- hit enter to play/stop the song\n" +"- extend the song by adding more orders in the Orders window\n" +"- click on the Orders matrix to change the patterns of a channel (left click " +"increases; right click decreases)" +msgstr "" + +#: src/gui/tutorial.cpp:680 +msgid "" +"if you need help, you may:\n" +"- read the manual (a file called manual.pdf)\n" +"- ask for help in Discussions (https://github.com/tildearrow/furnace/" +"discussions), the Furnace Discord (https://discord.gg/EfrwT2wq7z) or Furnace " +"in Revolt (official: https://rvlt.gg/GRPS6tmc)" +msgstr "" + +#: src/gui/tutorial.cpp:687 +msgid "" +"if you find any issues, be sure to report them! the issue tracker is here: " +"https://github.com/tildearrow/furnace/issues" +msgstr "" + +#: src/gui/tutorial.cpp:1428 +#, c-format +msgid "STAGE %d" +msgstr "" + +#: src/gui/songInfo.cpp:32 +msgid "Song Info##Song Information" +msgstr "" + +#: src/gui/songInfo.cpp:50 +msgid "Author" +msgstr "" + +#: src/gui/songInfo.cpp:60 +msgid "Album" +msgstr "" + +#: src/gui/songInfo.cpp:79 +msgid "Auto" +msgstr "" + +#: src/gui/songInfo.cpp:100 +msgid "Tuning (A-4)" +msgstr "" + +#: src/gui/grooves.cpp:38 +msgid "use effect 09xx to select a groove pattern." +msgstr "" + +#: src/gui/grooves.cpp:48 src/gui/gui.cpp:4480 +msgid "pattern" +msgstr "" + +#: src/gui/grooves.cpp:132 +msgid "remove" +msgstr "" + +#: src/gui/doAction.cpp:45 src/gui/gui.cpp:4201 +msgid "Unsaved changes! Save changes before opening another file?" +msgstr "" + +#: src/gui/doAction.cpp:52 +msgid "Unsaved changes! Save changes before opening backup?" +msgstr "" + +#: src/gui/doAction.cpp:62 src/gui/gui.cpp:4237 src/gui/gui.cpp:5025 +#: src/gui/gui.cpp:5063 src/gui/gui.cpp:5069 src/gui/gui.cpp:5657 +#: src/gui/gui.cpp:5681 src/gui/gui.cpp:5705 src/gui/gui.cpp:5729 +#: src/gui/gui.cpp:5753 src/gui/gui.cpp:5777 +#, c-format +msgid "Error while saving file! (%s)" +msgstr "" + +#: src/gui/doAction.cpp:189 +msgid "Error while sending request (MIDI output not configured?)" +msgstr "" + +#: src/gui/doAction.cpp:197 +msgid "Select an option: (cannot be undone!)" +msgstr "" + +#: src/gui/doAction.cpp:691 src/gui/doAction.cpp:720 src/gui/doAction.cpp:1593 +#: src/gui/gui.cpp:6091 +msgid "too many instruments!" +msgstr "" + +#: src/gui/doAction.cpp:1124 +msgid "couldn't paste! make sure your sample is 8 or 16-bit." +msgstr "" + +#: src/gui/doAction.cpp:1628 +msgid "select at least one sample!" +msgstr "" + +#: src/gui/doAction.cpp:1630 +msgid "maximum size is 256 samples!" +msgstr "" + +#: src/gui/csPlayer.cpp:113 +msgid "Load" +msgstr "" + +#: src/gui/csPlayer.cpp:117 +msgid "Kill" +msgstr "" + +#: src/gui/csPlayer.cpp:119 +msgid "Kikai wa mou shindeiru!" +msgstr "" + +#: src/gui/csPlayer.cpp:123 +msgid "Burn Current Song" +msgstr "" + +#: src/gui/csPlayer.cpp:141 +msgid "Status" +msgstr "" + +#: src/gui/csPlayer.cpp:148 +msgid "start" +msgstr "" + +#: src/gui/csPlayer.cpp:150 +msgid "PC" +msgstr "" + +#: src/gui/csPlayer.cpp:152 +msgid "wait" +msgstr "" + +#: src/gui/csPlayer.cpp:154 +msgid "SP" +msgstr "" + +#: src/gui/csPlayer.cpp:156 src/gui/insEdit.cpp:2733 +msgid "note" +msgstr "" + +#: src/gui/csPlayer.cpp:158 src/gui/insEdit.cpp:2728 +msgid "pitch" +msgstr "" + +#: src/gui/csPlayer.cpp:160 +msgid "vol" +msgstr "" + +#: src/gui/csPlayer.cpp:162 +msgid "vols" +msgstr "" + +#: src/gui/csPlayer.cpp:164 +msgid "vib" +msgstr "" + +#: src/gui/csPlayer.cpp:166 +msgid "porta" +msgstr "" + +#: src/gui/csPlayer.cpp:168 +msgid "arp" +msgstr "" + +#: src/gui/csPlayer.cpp:203 +msgid "Trace" +msgstr "" + +#: src/gui/csPlayer.cpp:244 +msgid "Disassemble" +msgstr "" + +#: src/gui/gui.cpp:1136 src/gui/gui.cpp:1140 +msgid "the song is over!" +msgstr "" + +#: src/gui/gui.cpp:1667 +msgid "Open File" +msgstr "" + +#: src/gui/gui.cpp:1668 src/gui/gui.cpp:1798 src/gui/gui.cpp:1838 +#: src/gui/gui.cpp:1953 src/gui/gui.cpp:1962 src/gui/gui.cpp:1971 +#: src/gui/gui.cpp:2073 src/gui/gui.cpp:2093 src/gui/gui.cpp:2111 +msgid "compatible files" +msgstr "" + +#: src/gui/gui.cpp:1669 src/gui/gui.cpp:1743 src/gui/gui.cpp:1799 +#: src/gui/gui.cpp:1839 src/gui/gui.cpp:1851 src/gui/gui.cpp:1870 +#: src/gui/gui.cpp:2074 src/gui/gui.cpp:2084 src/gui/gui.cpp:2095 +#: src/gui/gui.cpp:2113 +msgid "all files" +msgstr "" + +#: src/gui/gui.cpp:1676 +msgid "no backups made yet!" +msgstr "" + +#: src/gui/gui.cpp:1681 src/gui/gui.cpp:1690 src/gui/gui.cpp:2130 +msgid "Furnace song" +msgstr "" + +#: src/gui/gui.cpp:1689 +msgid "Save File" +msgstr "" + +#: src/gui/gui.cpp:1698 src/gui/gui.cpp:1708 +msgid "Export DMF" +msgstr "" + +#: src/gui/gui.cpp:1699 +msgid "DefleMask 1.1.3 module" +msgstr "" + +#: src/gui/gui.cpp:1709 +msgid "DefleMask 1.0/legacy module" +msgstr "" + +#: src/gui/gui.cpp:1726 +msgid "Load Instrument" +msgstr "" + +#: src/gui/gui.cpp:1727 +msgid "all compatible files" +msgstr "" + +#: src/gui/gui.cpp:1728 src/gui/gui.cpp:1777 +msgid "Furnace instrument" +msgstr "" + +#: src/gui/gui.cpp:1729 src/gui/gui.cpp:1787 +msgid "DefleMask preset" +msgstr "" + +#: src/gui/gui.cpp:1730 +msgid "TFM Music Maker instrument" +msgstr "" + +#: src/gui/gui.cpp:1731 +msgid "VGM Music Maker instrument" +msgstr "" + +#: src/gui/gui.cpp:1732 +msgid "Scream Tracker 3 instrument" +msgstr "" + +#: src/gui/gui.cpp:1733 +msgid "SoundBlaster instrument" +msgstr "" + +#: src/gui/gui.cpp:1734 +msgid "Wohlstand OPL instrument" +msgstr "" + +#: src/gui/gui.cpp:1735 +msgid "Wohlstand OPN instrument" +msgstr "" + +#: src/gui/gui.cpp:1736 +msgid "Gens KMod patch dump" +msgstr "" + +#: src/gui/gui.cpp:1737 +msgid "BNK file (AdLib)" +msgstr "" + +#: src/gui/gui.cpp:1738 +msgid "FF preset bank" +msgstr "" + +#: src/gui/gui.cpp:1739 +msgid "2612edit GYB preset bank" +msgstr "" + +#: src/gui/gui.cpp:1740 +msgid "VOPM preset bank" +msgstr "" + +#: src/gui/gui.cpp:1741 +msgid "Wohlstand WOPL bank" +msgstr "" + +#: src/gui/gui.cpp:1742 +msgid "Wohlstand WOPN bank" +msgstr "" + +#: src/gui/gui.cpp:1776 src/gui/gui.cpp:1786 +msgid "Save Instrument" +msgstr "" + +#: src/gui/gui.cpp:1797 +msgid "Load Wavetable" +msgstr "" + +#: src/gui/gui.cpp:1809 src/gui/gui.cpp:1818 src/gui/gui.cpp:1827 +msgid "Save Wavetable" +msgstr "" + +#: src/gui/gui.cpp:1810 +msgid "Furnace wavetable" +msgstr "" + +#: src/gui/gui.cpp:1819 +msgid "DefleMask wavetable" +msgstr "" + +#: src/gui/gui.cpp:1828 +msgid "raw data" +msgstr "" + +#: src/gui/gui.cpp:1837 +msgid "Load Sample" +msgstr "" + +#: src/gui/gui.cpp:1850 +msgid "Load Raw Sample" +msgstr "" + +#: src/gui/gui.cpp:1859 +msgid "Save Sample" +msgstr "" + +#: src/gui/gui.cpp:1860 src/gui/gui.cpp:1880 src/gui/gui.cpp:1890 +#: src/gui/gui.cpp:1900 +msgid "Wave file" +msgstr "" + +#: src/gui/gui.cpp:1869 +msgid "Save Raw Sample" +msgstr "" + +#: src/gui/gui.cpp:1879 src/gui/gui.cpp:1889 src/gui/gui.cpp:1899 +msgid "Export Audio" +msgstr "" + +#: src/gui/gui.cpp:1909 +msgid "Export VGM" +msgstr "" + +#: src/gui/gui.cpp:1910 +msgid "VGM file" +msgstr "" + +#: src/gui/gui.cpp:1919 +msgid "Export ZSM" +msgstr "" + +#: src/gui/gui.cpp:1920 +msgid "ZSM file" +msgstr "" + +#: src/gui/gui.cpp:1929 src/gui/gui.cpp:1939 +msgid "Export Command Stream" +msgstr "" + +#: src/gui/gui.cpp:1930 +msgid "text file" +msgstr "" + +#: src/gui/gui.cpp:1940 +msgid "binary file" +msgstr "" + +#: src/gui/gui.cpp:1947 src/gui/gui.cpp:5376 +msgid "Coming soon!" +msgstr "" + +#: src/gui/gui.cpp:1952 src/gui/gui.cpp:1961 src/gui/gui.cpp:1970 +msgid "Select Font" +msgstr "" + +#: src/gui/gui.cpp:1979 +msgid "Select Color File" +msgstr "" + +#: src/gui/gui.cpp:1980 src/gui/gui.cpp:1989 src/gui/gui.cpp:2008 +#: src/gui/gui.cpp:2017 src/gui/gui.cpp:2026 src/gui/gui.cpp:2035 +#: src/gui/gui.cpp:2053 src/gui/gui.cpp:2062 +msgid "configuration files" +msgstr "" + +#: src/gui/gui.cpp:1988 +msgid "Select Keybind File" +msgstr "" + +#: src/gui/gui.cpp:1997 +msgid "Select Layout File" +msgstr "" + +#: src/gui/gui.cpp:1998 src/gui/gui.cpp:2044 +msgid ".ini files" +msgstr "" + +#: src/gui/gui.cpp:2007 +msgid "Select User Presets File" +msgstr "" + +#: src/gui/gui.cpp:2016 +msgid "Select Settings File" +msgstr "" + +#: src/gui/gui.cpp:2025 +msgid "Export Colors" +msgstr "" + +#: src/gui/gui.cpp:2034 +msgid "Export Keybinds" +msgstr "" + +#: src/gui/gui.cpp:2043 +msgid "Export Layout" +msgstr "" + +#: src/gui/gui.cpp:2052 +msgid "Export User Presets" +msgstr "" + +#: src/gui/gui.cpp:2061 +msgid "Export Settings" +msgstr "" + +#: src/gui/gui.cpp:2072 +msgid "Load ROM" +msgstr "" + +#: src/gui/gui.cpp:2082 +msgid "Play Command Stream" +msgstr "" + +#: src/gui/gui.cpp:2083 +msgid "command stream" +msgstr "" + +#: src/gui/gui.cpp:2092 +msgid "Open Test" +msgstr "" + +#: src/gui/gui.cpp:2094 src/gui/gui.cpp:2112 +msgid "another option" +msgstr "" + +#: src/gui/gui.cpp:2110 +msgid "Open Test (Multi)" +msgstr "" + +#: src/gui/gui.cpp:2129 +msgid "Save Test" +msgstr "" + +#: src/gui/gui.cpp:2131 +msgid "DefleMask module" +msgstr "" + +#: src/gui/gui.cpp:2171 +msgid "compression error" +msgstr "" + +#: src/gui/gui.cpp:2183 +msgid "zlib stream error" +msgstr "" + +#: src/gui/gui.cpp:2205 +msgid "zlib finish stream error" +msgstr "" + +#: src/gui/gui.cpp:2316 +msgid "everything OK" +msgstr "" + +#: src/gui/gui.cpp:2334 +msgid "" +"you have loaded a backup!\n" +"if you need to, please save it somewhere.\n" +"\n" +"DO NOT RELY ON THE BACKUP SYSTEM FOR AUTO-SAVE!\n" +"Furnace will not save backups of backups." +msgstr "" + +#: src/gui/gui.cpp:2342 src/gui/gui.cpp:3743 src/gui/gui.cpp:4213 +msgid "Unsaved changes! Save changes before opening file?" +msgstr "" + +#: src/gui/gui.cpp:2736 +msgid "paste special..." +msgstr "" + +#: src/gui/gui.cpp:2737 +msgid "paste mix" +msgstr "" + +#: src/gui/gui.cpp:2738 +msgid "paste mix (background)" +msgstr "" + +#: src/gui/gui.cpp:2739 +msgid "paste with ins (foreground)" +msgstr "" + +#: src/gui/gui.cpp:2741 src/gui/gui.cpp:2753 src/gui/gui.cpp:2963 +msgid "no instruments available" +msgstr "" + +#: src/gui/gui.cpp:2751 +msgid "paste with ins (background)" +msgstr "" + +#: src/gui/gui.cpp:2763 +msgid "paste flood" +msgstr "" + +#: src/gui/gui.cpp:2764 +msgid "paste overflow" +msgstr "" + +#: src/gui/gui.cpp:2773 +msgid "operation mask..." +msgstr "" + +#: src/gui/gui.cpp:2780 +msgid "pull delete" +msgstr "" + +#: src/gui/gui.cpp:2784 +msgid "insert" +msgstr "" + +#: src/gui/gui.cpp:2792 +msgid "transpose (note)" +msgstr "" + +#: src/gui/gui.cpp:2796 +msgid "transpose (value)" +msgstr "" + +#: src/gui/gui.cpp:2808 src/gui/gui.cpp:3052 +msgid "invert values" +msgstr "" + +#: src/gui/gui.cpp:2824 +msgid "collapse/expand" +msgstr "" + +#: src/gui/gui.cpp:2829 +msgid "input latch" +msgstr "" + +#: src/gui/gui.cpp:2856 +msgid "" +"&&: selected instrument\n" +"..: no instrument" +msgstr "" + +#: src/gui/gui.cpp:2910 +msgid "Set" +msgstr "" + +#: src/gui/gui.cpp:2930 +msgid "note up" +msgstr "" + +#: src/gui/gui.cpp:2931 +msgid "note down" +msgstr "" + +#: src/gui/gui.cpp:2932 +msgid "octave up" +msgstr "" + +#: src/gui/gui.cpp:2933 +msgid "octave down" +msgstr "" + +#: src/gui/gui.cpp:2935 +msgid "values up" +msgstr "" + +#: src/gui/gui.cpp:2936 +msgid "values down" +msgstr "" + +#: src/gui/gui.cpp:2937 +msgid "values up (+16)" +msgstr "" + +#: src/gui/gui.cpp:2938 +msgid "values down (-16)" +msgstr "" + +#: src/gui/gui.cpp:2941 +msgid "transpose" +msgstr "" + +#: src/gui/gui.cpp:2949 +msgid "Notes" +msgstr "" + +#: src/gui/gui.cpp:2954 +msgid "Values" +msgstr "" + +#: src/gui/gui.cpp:2961 +msgid "change instrument..." +msgstr "" + +#: src/gui/gui.cpp:2974 +msgid "gradient/fade..." +msgstr "" + +#: src/gui/gui.cpp:2991 src/gui/gui.cpp:3036 +msgid "Nibble mode" +msgstr "" + +#: src/gui/gui.cpp:3000 +msgid "Go ahead" +msgstr "" + +#: src/gui/gui.cpp:3006 src/gui/insEdit.cpp:7604 +msgid "scale..." +msgstr "" + +#: src/gui/gui.cpp:3011 +msgid "Scale" +msgstr "" + +#: src/gui/gui.cpp:3017 src/gui/insEdit.cpp:7632 +msgid "randomize..." +msgstr "" + +#: src/gui/gui.cpp:3018 +msgid "Minimum" +msgstr "" + +#: src/gui/gui.cpp:3027 +msgid "Maximum" +msgstr "" + +#: src/gui/gui.cpp:3056 +msgid "flip selection" +msgstr "" + +#: src/gui/gui.cpp:3059 +msgid "collapse/expand amount##CollapseAmount" +msgstr "" + +#: src/gui/gui.cpp:3068 +msgid "collapse pattern" +msgstr "" + +#: src/gui/gui.cpp:3069 +msgid "expand pattern" +msgstr "" + +#: src/gui/gui.cpp:3074 +msgid "collapse song" +msgstr "" + +#: src/gui/gui.cpp:3075 +msgid "expand song" +msgstr "" + +#: src/gui/gui.cpp:3080 +msgid "find/replace" +msgstr "" + +#: src/gui/gui.cpp:3094 src/gui/gui.cpp:5807 src/gui/gui.cpp:7362 +#, c-format +msgid "could NOT save layout! %s" +msgstr "" + +#: src/gui/gui.cpp:3106 +#, c-format +msgid "could NOT load layout! %s" +msgstr "" + +#: src/gui/gui.cpp:3568 +msgid "" +"Furnace has been started in Safe Mode.\n" +"this means that:\n" +"\n" +"- software rendering is being used\n" +"- audio output may not work\n" +"- font loading is disabled\n" +"\n" +"check any settings which may have made Furnace start up in this mode.\n" +"font loading is one of these." +msgstr "" + +#: src/gui/gui.cpp:4053 +msgid "can't keep going without graphics! Furnace will quit now." +msgstr "" + +#: src/gui/gui.cpp:4191 +msgid "file" +msgstr "" + +#: src/gui/gui.cpp:4192 +msgid "new..." +msgstr "" + +#: src/gui/gui.cpp:4199 +msgid "open..." +msgstr "" + +#: src/gui/gui.cpp:4206 +msgid "open recent" +msgstr "" + +#: src/gui/gui.cpp:4222 +msgid "nothing here yet" +msgstr "" + +#: src/gui/gui.cpp:4225 +msgid "clear history" +msgstr "" + +#: src/gui/gui.cpp:4226 +msgid "Are you sure you want to clear the recent file list?" +msgstr "" + +#: src/gui/gui.cpp:4241 +msgid "save as..." +msgstr "" + +#: src/gui/gui.cpp:4246 src/gui/gui.cpp:4287 +msgid "export audio..." +msgstr "" + +#: src/gui/gui.cpp:4250 src/gui/gui.cpp:4291 +msgid "export VGM..." +msgstr "" + +#: src/gui/gui.cpp:4259 src/gui/gui.cpp:4300 +msgid "export ZSM..." +msgstr "" + +#: src/gui/gui.cpp:4269 src/gui/gui.cpp:4310 +msgid "export Amiga validation data..." +msgstr "" + +#: src/gui/gui.cpp:4274 src/gui/gui.cpp:4315 +msgid "export text..." +msgstr "" + +#: src/gui/gui.cpp:4278 src/gui/gui.cpp:4319 +msgid "export command stream..." +msgstr "" + +#: src/gui/gui.cpp:4282 src/gui/gui.cpp:4323 +msgid "export .dmf..." +msgstr "" + +#: src/gui/gui.cpp:4328 +msgid "export..." +msgstr "" + +#: src/gui/gui.cpp:4334 +msgid "manage chips" +msgstr "" + +#: src/gui/gui.cpp:4338 +msgid "add chip..." +msgstr "" + +#: src/gui/gui.cpp:4343 src/gui/sysManager.cpp:138 +#, c-format +msgid "cannot add chip! (%s)" +msgstr "" + +#: src/gui/gui.cpp:4355 +msgid "configure chip..." +msgstr "" + +#: src/gui/gui.cpp:4365 +msgid "change chip..." +msgstr "" + +#: src/gui/gui.cpp:4367 src/gui/gui.cpp:4390 +msgid "Preserve channel positions" +msgstr "" + +#: src/gui/gui.cpp:4379 src/gui/sysManager.cpp:109 +#, c-format +msgid "cannot change chip! (%s)" +msgstr "" + +#: src/gui/gui.cpp:4388 +msgid "remove chip..." +msgstr "" + +#: src/gui/gui.cpp:4394 +#, c-format +msgid "cannot remove chip! (%s)" +msgstr "" + +#: src/gui/gui.cpp:4408 +msgid "open built-in assets directory" +msgstr "" + +#: src/gui/gui.cpp:4414 +msgid "restore backup" +msgstr "" + +#: src/gui/gui.cpp:4418 +msgid "exit..." +msgstr "" + +#: src/gui/gui.cpp:4426 +msgid "edit" +msgstr "" + +#: src/gui/gui.cpp:4434 +msgid "clear..." +msgstr "" + +#: src/gui/gui.cpp:4439 +msgid "settings" +msgstr "" + +#: src/gui/gui.cpp:4441 +msgid "full screen" +msgstr "" + +#: src/gui/gui.cpp:4445 +msgid "lock layout" +msgstr "" + +#: src/gui/gui.cpp:4448 +msgid "pattern visualizer" +msgstr "" + +#: src/gui/gui.cpp:4454 +msgid "reset layout" +msgstr "" + +#: src/gui/gui.cpp:4458 +msgid "switch to mobile view" +msgstr "" + +#: src/gui/gui.cpp:4462 +msgid "user systems..." +msgstr "" + +#: src/gui/gui.cpp:4465 +msgid "settings..." +msgstr "" + +#: src/gui/gui.cpp:4471 +msgid "Window" +msgstr "" + +#: src/gui/gui.cpp:4471 +msgid "window" +msgstr "" + +#: src/gui/gui.cpp:4472 +msgid "song" +msgstr "" + +#: src/gui/gui.cpp:4473 +msgid "song comments" +msgstr "" + +#: src/gui/gui.cpp:4474 +msgid "song information" +msgstr "" + +#: src/gui/gui.cpp:4475 +msgid "subsongs" +msgstr "" + +#: src/gui/gui.cpp:4477 +msgid "channels" +msgstr "" + +#: src/gui/gui.cpp:4478 +msgid "chip manager" +msgstr "" + +#: src/gui/gui.cpp:4479 +msgid "orders" +msgstr "" + +#: src/gui/gui.cpp:4481 +msgid "pattern manager" +msgstr "" + +#: src/gui/gui.cpp:4482 +msgid "mixer" +msgstr "" + +#: src/gui/gui.cpp:4483 +msgid "compatibility flags" +msgstr "" + +#: src/gui/gui.cpp:4486 src/gui/gui.cpp:4488 +msgid "assets" +msgstr "" + +#: src/gui/gui.cpp:4490 +msgid "instruments" +msgstr "" + +#: src/gui/gui.cpp:4491 +msgid "samples" +msgstr "" + +#: src/gui/gui.cpp:4492 +msgid "wavetables" +msgstr "" + +#: src/gui/gui.cpp:4495 +msgid "instrument editor" +msgstr "" + +#: src/gui/gui.cpp:4496 +msgid "sample editor" +msgstr "" + +#: src/gui/gui.cpp:4497 +msgid "wavetable editor" +msgstr "" + +#: src/gui/gui.cpp:4500 +msgid "visualizers" +msgstr "" + +#: src/gui/gui.cpp:4501 +msgid "oscilloscope (master)" +msgstr "" + +#: src/gui/gui.cpp:4502 +msgid "oscilloscope (per-channel)" +msgstr "" + +#: src/gui/gui.cpp:4503 +msgid "oscilloscope (X-Y)" +msgstr "" + +#: src/gui/gui.cpp:4504 +msgid "volume meter" +msgstr "" + +#: src/gui/gui.cpp:4507 +msgid "tempo" +msgstr "" + +#: src/gui/gui.cpp:4508 +msgid "clock" +msgstr "" + +#: src/gui/gui.cpp:4509 +msgid "grooves" +msgstr "" + +#: src/gui/gui.cpp:4510 +msgid "speed" +msgstr "" + +#: src/gui/gui.cpp:4514 +msgid "log viewer" +msgstr "" + +#: src/gui/gui.cpp:4515 +msgid "register view" +msgstr "" + +#: src/gui/gui.cpp:4516 +msgid "statistics" +msgstr "" + +#: src/gui/gui.cpp:4517 +msgid "memory composition" +msgstr "" + +#: src/gui/gui.cpp:4521 src/gui/gui.cpp:4529 +msgid "effect list" +msgstr "" + +#: src/gui/gui.cpp:4522 +msgid "play/edit controls" +msgstr "" + +#: src/gui/gui.cpp:4523 +msgid "piano/input pad" +msgstr "" + +#: src/gui/gui.cpp:4524 +msgid "spoiler" +msgstr "" + +#: src/gui/gui.cpp:4528 +msgid "Help" +msgstr "" + +#: src/gui/gui.cpp:4528 +msgid "help" +msgstr "" + +#: src/gui/gui.cpp:4530 +msgid "debug menu" +msgstr "" + +#: src/gui/gui.cpp:4531 +msgid "inspector" +msgstr "" + +#: src/gui/gui.cpp:4532 +msgid "panic" +msgstr "" + +#: src/gui/gui.cpp:4533 +msgid "about..." +msgstr "" + +#: src/gui/gui.cpp:4548 +#, c-format +msgid "| Speed %d:%d" +msgstr "" + +#: src/gui/gui.cpp:4550 +#, c-format +msgid "| Speed %d" +msgstr "" + +#: src/gui/gui.cpp:4552 +msgid "| Groove" +msgstr "" + +#: src/gui/gui.cpp:4555 +#, c-format +msgid " @ %gHz (%g BPM) " +msgstr "" + +#: src/gui/gui.cpp:4558 +#, c-format +msgid "| Order %.2X/%.2X " +msgstr "" + +#: src/gui/gui.cpp:4560 +#, c-format +msgid "| Order %d/%d " +msgstr "" + +#: src/gui/gui.cpp:4564 +#, c-format +msgid "| Row %.2X/%.2X " +msgstr "" + +#: src/gui/gui.cpp:4566 +#, c-format +msgid "| Row %d/%d " +msgstr "" + +#: src/gui/gui.cpp:4569 +msgid "| " +msgstr "" + +#: src/gui/gui.cpp:4572 +msgid "Don't you have anything better to do?" +msgstr "" + +#: src/gui/gui.cpp:4582 +#, c-format +msgid "%d year " +msgid_plural "%d years " +msgstr[0] "" +msgstr[1] "" + +#: src/gui/gui.cpp:4583 +#, c-format +msgid "%d month " +msgid_plural "%d months " +msgstr[0] "" +msgstr[1] "" + +#: src/gui/gui.cpp:4584 +#, c-format +msgid "%d day " +msgid_plural "%d days " +msgstr[0] "" +msgstr[1] "" + +#: src/gui/gui.cpp:4609 +msgid "Note off (cut)" +msgstr "" + +#: src/gui/gui.cpp:4611 +msgid "Note off (release)" +msgstr "" + +#: src/gui/gui.cpp:4613 +msgid "Macro release only" +msgstr "" + +#: src/gui/gui.cpp:4615 +#, c-format +msgid "Note on: %s" +msgstr "" + +#: src/gui/gui.cpp:4623 +#, c-format +msgid "Ins %d: " +msgstr "" + +#: src/gui/gui.cpp:4626 +#, c-format +msgid "Ins %d: %s" +msgstr "" + +#: src/gui/gui.cpp:4635 +#, c-format +msgid "Set volume: %d (%.2X, INVALID!)" +msgstr "" + +#: src/gui/gui.cpp:4638 +#, c-format +msgid "Set volume: %d (%.2X, %d%%)" +msgstr "" + +#: src/gui/gui.cpp:4660 +msgid "| modified" +msgstr "" + +#: src/gui/gui.cpp:4825 src/gui/gui.cpp:4828 +msgid "System File Dialog Pending" +msgstr "" + +#: src/gui/gui.cpp:4941 +msgid "" +"there was an error in the file dialog! you may want to report this issue " +"to:\n" +"https://github.com/tildearrow/furnace/issues\n" +"check the Log Viewer (window > log viewer) for more information.\n" +"\n" +"for now please disable the system file picker in Settings > General." +msgstr "" + +#: src/gui/gui.cpp:4944 +msgid "can't do anything without Storage permissions!" +msgstr "" + +#: src/gui/gui.cpp:4946 +msgid "" +"Zenity/KDialog not available!\n" +"please install one of these, or disable the system file picker in Settings > " +"General." +msgstr "" + +#: src/gui/gui.cpp:5082 +msgid "" +"error while saving instrument! only the following instrument types are " +"supported:\n" +"- FM (OPN)\n" +"- SN76489/Sega PSG\n" +"- Game Boy\n" +"- PC Engine\n" +"- NES\n" +"- C64\n" +"- FM (OPLL)\n" +"- FDS" +msgstr "" + +#: src/gui/gui.cpp:5110 +msgid "there were some errors while loading samples:\n" +msgstr "" + +#: src/gui/gui.cpp:5155 src/gui/gui.cpp:6339 +msgid "...but you haven't selected a sample!" +msgstr "" + +#: src/gui/gui.cpp:5170 src/gui/gui.cpp:5179 +msgid "could not save sample! open Log Viewer for more information." +msgstr "" + +#: src/gui/gui.cpp:5198 +msgid "there were some warnings/errors while loading instruments:\n" +msgstr "" + +#: src/gui/gui.cpp:5204 +#, c-format +msgid "> %s: cannot load instrument! (%s)\n" +msgstr "" + +#: src/gui/gui.cpp:5222 src/gui/gui.cpp:5276 +#, c-format +msgid "cannot load instrument! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5228 +msgid "" +"congratulations! you managed to load nothing.\n" +"you are entitled to a bug report." +msgstr "" + +#: src/gui/gui.cpp:5269 src/gui/gui.cpp:6243 +msgid "...but you haven't selected an instrument!" +msgstr "" + +#: src/gui/gui.cpp:5281 +msgid "there were some errors while loading wavetables:\n" +msgstr "" + +#: src/gui/gui.cpp:5290 src/gui/gui.cpp:5300 src/gui/gui.cpp:5319 +#, c-format +msgid "cannot load wavetable! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5327 +msgid "...but you haven't selected a wavetable!" +msgstr "" + +#: src/gui/gui.cpp:5342 src/gui/gui.cpp:5363 src/gui/gui.cpp:5387 +#: src/gui/gui.cpp:5408 +msgid "could not open file!" +msgstr "" + +#: src/gui/gui.cpp:5350 +#, c-format +msgid "could not write VGM! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5371 +#, c-format +msgid "Could not write ZSM! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5395 +#, c-format +msgid "could not write text! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5416 +#, c-format +msgid "could not write command stream! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5440 +msgid "could not import user presets!" +msgstr "" + +#: src/gui/gui.cpp:5445 src/gui/gui.cpp:5462 +#, c-format +msgid "could not import user presets! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5483 +#, c-format +msgid "You opened: %s" +msgstr "" + +#: src/gui/gui.cpp:5486 +msgid "You opened:" +msgstr "" + +#: src/gui/gui.cpp:5494 +#, c-format +msgid "You saved: %s" +msgstr "" + +#: src/gui/gui.cpp:5515 src/gui/gui.cpp:5636 src/gui/gui.cpp:5637 +#: src/gui/insEdit.cpp:7520 +msgid "Error" +msgstr "" + +#: src/gui/gui.cpp:5520 src/gui/gui.cpp:6177 src/gui/gui.cpp:6178 +msgid "Select Instrument" +msgstr "" + +#: src/gui/gui.cpp:5525 src/gui/gui.cpp:6256 src/gui/gui.cpp:6257 +msgid "Import Raw Sample" +msgstr "" + +#: src/gui/gui.cpp:5540 src/gui/gui.cpp:5593 src/gui/gui.cpp:5594 +msgid "Rendering..." +msgstr "" + +#: src/gui/gui.cpp:5595 +msgid "Please wait..." +msgstr "" + +#: src/gui/gui.cpp:5596 +msgid "Abort" +msgstr "" + +#: src/gui/gui.cpp:5638 +#, c-format +msgid "%s" +msgstr "" + +#: src/gui/gui.cpp:5868 +msgid "Erasing" +msgstr "" + +#: src/gui/gui.cpp:5871 +msgid "All subsongs" +msgstr "" + +#: src/gui/gui.cpp:5878 +msgid "Current subsong" +msgstr "" + +#: src/gui/gui.cpp:5945 +msgid "Optimization" +msgstr "" + +#: src/gui/gui.cpp:5948 src/gui/patManager.cpp:36 +msgid "De-duplicate patterns" +msgstr "" + +#: src/gui/gui.cpp:5957 +msgid "Remove unused instruments" +msgstr "" + +#: src/gui/gui.cpp:5970 +msgid "Remove unused samples" +msgstr "" + +#: src/gui/gui.cpp:5987 +msgid "Never mind! Cancel" +msgstr "" + +#: src/gui/gui.cpp:6066 +msgid "Drum kit mode:" +msgstr "" + +#: src/gui/gui.cpp:6070 +msgid "12 samples per octave" +msgstr "" + +#: src/gui/gui.cpp:6075 +msgid "Starting octave" +msgstr "" + +#: src/gui/gui.cpp:6095 +msgid "Drum Kit" +msgstr "" + +#: src/gui/gui.cpp:6181 +msgid "this is an instrument bank! select which one to use:" +msgstr "" + +#: src/gui/gui.cpp:6184 +msgid "this is an instrument bank! select which ones to load:" +msgstr "" + +#: src/gui/gui.cpp:6258 +msgid "Data type:" +msgstr "" + +#: src/gui/gui.cpp:6285 +msgid "(will be mixed down to mono)" +msgstr "" + +#: src/gui/gui.cpp:6286 +msgid "Unsigned" +msgstr "" + +#: src/gui/gui.cpp:6290 +msgid "Big endian" +msgstr "" + +#: src/gui/gui.cpp:6298 +msgid "Swap nibbles" +msgstr "" + +#: src/gui/gui.cpp:6302 +msgid "Swap words" +msgstr "" + +#: src/gui/gui.cpp:6306 +msgid "Encoding:" +msgstr "" + +#: src/gui/gui.cpp:6319 +msgid "Reverse bit order" +msgstr "" + +#: src/gui/gui.cpp:6361 +msgid "Error! No string provided!" +msgstr "" + +#: src/gui/gui.cpp:6683 +msgid "it appears I couldn't load these fonts. any setting you can check?" +msgstr "" + +#: src/gui/gui.cpp:6863 src/gui/gui.cpp:6971 +msgid "" +"could not init renderer!\n" +"falling back to software renderer. please restart Furnace." +msgstr "" + +#: src/gui/gui.cpp:6865 src/gui/gui.cpp:6973 +#, c-format +msgid "" +"could not init renderer! %s\n" +"falling back to software renderer. please restart Furnace." +msgstr "" + +#: src/gui/gui.cpp:6870 src/gui/gui.cpp:6978 +msgid "could not init renderer!" +msgstr "" + +#: src/gui/gui.cpp:6881 +#, c-format +msgid "could not open window! %s" +msgstr "" + +#: src/gui/gui.cpp:6886 +msgid "" +"\n" +"falling back to software renderer. please restart Furnace." +msgstr "" + +#: src/gui/gui.cpp:7034 +msgid "Size column to fit###SizeOne" +msgstr "" + +#: src/gui/gui.cpp:7036 +msgid "Size all columns to fit###SizeAll" +msgstr "" + +#: src/gui/gui.cpp:7038 +msgid "Size all columns to default###SizeAll" +msgstr "" + +#: src/gui/gui.cpp:7040 +msgid "Reset order###ResetOrder" +msgstr "" + +#: src/gui/gui.cpp:7042 +msgid "(Main menu bar)" +msgstr "" + +#: src/gui/gui.cpp:7044 +msgid "(Popup)" +msgstr "" + +#: src/gui/gui.cpp:7046 +msgid "(Untitled)" +msgstr "" + +#: src/gui/gui.cpp:7048 +msgid "Hide tab bar###HideTabBar" +msgstr "" + +#: src/gui/gui.cpp:7052 +msgid "LocaleSettings: ccjk" +msgstr "" + +#: src/gui/gui.cpp:7564 +msgid "Unsaved changes! Save changes before quitting?" +msgstr "" + +#: src/gui/sysManager.cpp:42 +msgid "Preserve channel order" +msgstr "" + +#: src/gui/sysManager.cpp:44 +msgid "Clone channel data" +msgstr "" + +#: src/gui/sysManager.cpp:46 +msgid "Clone at end" +msgstr "" + +#: src/gui/sysManager.cpp:56 +msgid "Actions" +msgstr "" + +#: src/gui/sysManager.cpp:69 +msgid "(drag to swap chips)" +msgstr "" + +#: src/gui/sysManager.cpp:90 +msgid "Clone##SysDup" +msgstr "" + +#: src/gui/sysManager.cpp:92 +#, c-format +msgid "cannot clone chip! (%s)" +msgstr "" + +#: src/gui/sysManager.cpp:98 +msgid "Change##SysChange" +msgstr "" + +#: src/gui/sysManager.cpp:120 +msgid "Are you sure you want to remove this chip?" +msgstr "" + +#: src/gui/patManager.cpp:43 +msgid "Re-arrange patterns" +msgstr "" + +#: src/gui/patManager.cpp:50 +msgid "Sort orders" +msgstr "" + +#: src/gui/patManager.cpp:57 +msgid "Make patterns unique" +msgstr "" + +#: src/gui/patManager.cpp:103 +#, c-format +msgid "" +"Pattern %.2X\n" +"- not allocated" +msgstr "" + +#: src/gui/patManager.cpp:105 +#, c-format +msgid "" +"Pattern %.2X\n" +"- use count: %d (%.0f%%)\n" +"\n" +"right-click to erase" +msgstr "" + +#: src/gui/insEdit.cpp:39 +msgid "Down Down Down" +msgstr "" + +#: src/gui/insEdit.cpp:40 +msgid "Down." +msgstr "" + +#: src/gui/insEdit.cpp:41 +msgid "Down Up Down Up" +msgstr "" + +#: src/gui/insEdit.cpp:42 +msgid "Down UP" +msgstr "" + +#: src/gui/insEdit.cpp:43 +msgid "Up Up Up" +msgstr "" + +#: src/gui/insEdit.cpp:44 +msgid "Up." +msgstr "" + +#: src/gui/insEdit.cpp:45 +msgid "Up Down Up Down" +msgstr "" + +#: src/gui/insEdit.cpp:46 +msgid "Up DOWN" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Algorithm" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Feedback" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "LFO > Freq" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "LFO > Amp" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Decay 2" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "EnvScale" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Multiplier" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Detune 2" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "AM" +msgstr "" + +#: src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:5438 src/gui/insEdit.cpp:6516 +msgid "AM Depth" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Vibrato Depth" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Sustained" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Level Scaling" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Vibrato" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Scale Rate" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "OP2 Half Sine" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "OP1 Half Sine" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "EnvShift" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Reverb" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Fine" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "LFO2 > Freq" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "LFO2 > Amp" +msgstr "" + +#: src/gui/insEdit.cpp:56 src/gui/insEdit.cpp:68 src/gui/insEdit.cpp:7391 +msgid "OP4 Noise Mode" +msgstr "" + +#: src/gui/insEdit.cpp:57 +msgid "Envelope Delay" +msgstr "" + +#: src/gui/insEdit.cpp:58 src/gui/insEdit.cpp:70 +msgid "Output Level" +msgstr "" + +#: src/gui/insEdit.cpp:59 +msgid "Modulation Input Level" +msgstr "" + +#: src/gui/insEdit.cpp:60 +msgid "Left Output" +msgstr "" + +#: src/gui/insEdit.cpp:61 +msgid "Right Output" +msgstr "" + +#: src/gui/insEdit.cpp:62 +msgid "Coarse Tune (semitones)" +msgstr "" + +#: src/gui/insEdit.cpp:64 +msgid "Fixed Frequency Mode" +msgstr "" + +#: src/gui/insEdit.cpp:69 +msgid "Env. Delay" +msgstr "" + +#: src/gui/insEdit.cpp:71 +msgid "ModInput" +msgstr "" + +#: src/gui/insEdit.cpp:72 +msgid "Left" +msgstr "" + +#: src/gui/insEdit.cpp:73 +msgid "Right" +msgstr "" + +#: src/gui/insEdit.cpp:74 +msgid "Tune" +msgstr "" + +#: src/gui/insEdit.cpp:76 src/gui/insEdit.cpp:610 src/gui/insEdit.cpp:3792 +#: src/gui/insEdit.cpp:4554 src/gui/insEdit.cpp:4848 +msgid "Fixed" +msgstr "" + +#: src/gui/insEdit.cpp:98 src/gui/insEdit.cpp:117 src/gui/insEdit.cpp:136 +#: src/gui/insEdit.cpp:156 +msgid "User" +msgstr "" + +#: src/gui/insEdit.cpp:99 +msgid "1. Violin" +msgstr "" + +#: src/gui/insEdit.cpp:100 src/gui/insEdit.cpp:138 src/gui/insEdit.cpp:158 +msgid "2. Guitar" +msgstr "" + +#: src/gui/insEdit.cpp:101 src/gui/insEdit.cpp:159 +msgid "3. Piano" +msgstr "" + +#: src/gui/insEdit.cpp:102 src/gui/insEdit.cpp:160 +msgid "4. Flute" +msgstr "" + +#: src/gui/insEdit.cpp:103 src/gui/insEdit.cpp:122 src/gui/insEdit.cpp:161 +msgid "5. Clarinet" +msgstr "" + +#: src/gui/insEdit.cpp:104 +msgid "6. Oboe" +msgstr "" + +#: src/gui/insEdit.cpp:105 src/gui/insEdit.cpp:124 src/gui/insEdit.cpp:143 +#: src/gui/insEdit.cpp:163 +msgid "7. Trumpet" +msgstr "" + +#: src/gui/insEdit.cpp:106 +msgid "8. Organ" +msgstr "" + +#: src/gui/insEdit.cpp:107 +msgid "9. Horn" +msgstr "" + +#: src/gui/insEdit.cpp:108 +msgid "10. Synth" +msgstr "" + +#: src/gui/insEdit.cpp:109 +msgid "11. Harpsichord" +msgstr "" + +#: src/gui/insEdit.cpp:110 src/gui/insEdit.cpp:129 src/gui/insEdit.cpp:148 +msgid "12. Vibraphone" +msgstr "" + +#: src/gui/insEdit.cpp:111 +msgid "13. Synth Bass" +msgstr "" + +#: src/gui/insEdit.cpp:112 +msgid "14. Acoustic Bass" +msgstr "" + +#: src/gui/insEdit.cpp:113 +msgid "15. Electric Guitar" +msgstr "" + +#: src/gui/insEdit.cpp:114 src/gui/insEdit.cpp:133 src/gui/insEdit.cpp:152 +#: src/gui/insEdit.cpp:172 src/gui/insEdit.cpp:3176 +msgid "Drums" +msgstr "" + +#: src/gui/insEdit.cpp:118 +msgid "1. Electric String" +msgstr "" + +#: src/gui/insEdit.cpp:119 +msgid "2. Bow wow" +msgstr "" + +#: src/gui/insEdit.cpp:120 src/gui/insEdit.cpp:139 +msgid "3. Electric Guitar" +msgstr "" + +#: src/gui/insEdit.cpp:121 +msgid "4. Organ" +msgstr "" + +#: src/gui/insEdit.cpp:123 +msgid "6. Saxophone" +msgstr "" + +#: src/gui/insEdit.cpp:125 +msgid "8. Street Organ" +msgstr "" + +#: src/gui/insEdit.cpp:126 +msgid "9. Synth Brass" +msgstr "" + +#: src/gui/insEdit.cpp:127 +msgid "10. Electric Piano" +msgstr "" + +#: src/gui/insEdit.cpp:128 +msgid "11. Bass" +msgstr "" + +#: src/gui/insEdit.cpp:130 +msgid "13. Chime" +msgstr "" + +#: src/gui/insEdit.cpp:131 +msgid "14. Tom Tom II" +msgstr "" + +#: src/gui/insEdit.cpp:132 +msgid "15. Noise" +msgstr "" + +#: src/gui/insEdit.cpp:137 +msgid "1. Strings" +msgstr "" + +#: src/gui/insEdit.cpp:140 +msgid "4. Electric Piano" +msgstr "" + +#: src/gui/insEdit.cpp:141 +msgid "5. Flute" +msgstr "" + +#: src/gui/insEdit.cpp:142 +msgid "6. Marimba" +msgstr "" + +#: src/gui/insEdit.cpp:144 +msgid "8. Harmonica" +msgstr "" + +#: src/gui/insEdit.cpp:145 +msgid "9. Tuba" +msgstr "" + +#: src/gui/insEdit.cpp:146 +msgid "10. Synth Brass" +msgstr "" + +#: src/gui/insEdit.cpp:147 +msgid "11. Short Saw" +msgstr "" + +#: src/gui/insEdit.cpp:149 +msgid "13. Electric Guitar 2" +msgstr "" + +#: src/gui/insEdit.cpp:150 +msgid "14. Synth Bass" +msgstr "" + +#: src/gui/insEdit.cpp:151 +msgid "15. Sitar" +msgstr "" + +#: src/gui/insEdit.cpp:157 +msgid "1. Bell" +msgstr "" + +#: src/gui/insEdit.cpp:162 +msgid "6. Rattling Bell" +msgstr "" + +#: src/gui/insEdit.cpp:164 +msgid "8. Reed Organ" +msgstr "" + +#: src/gui/insEdit.cpp:165 +msgid "9. Soft Bell" +msgstr "" + +#: src/gui/insEdit.cpp:166 +msgid "10. Xylophone" +msgstr "" + +#: src/gui/insEdit.cpp:167 +msgid "11. Vibraphone" +msgstr "" + +#: src/gui/insEdit.cpp:168 +msgid "12. Brass" +msgstr "" + +#: src/gui/insEdit.cpp:169 +msgid "13. Bass Guitar" +msgstr "" + +#: src/gui/insEdit.cpp:170 +msgid "14. Synth" +msgstr "" + +#: src/gui/insEdit.cpp:171 +msgid "15. Chorus" +msgstr "" + +#: src/gui/insEdit.cpp:178 src/gui/insEdit.cpp:189 +msgid "Half Sine" +msgstr "" + +#: src/gui/insEdit.cpp:179 src/gui/insEdit.cpp:190 +msgid "Absolute Sine" +msgstr "" + +#: src/gui/insEdit.cpp:180 +msgid "Quarter Sine" +msgstr "" + +#: src/gui/insEdit.cpp:181 src/gui/insEdit.cpp:203 +msgid "Squished Sine" +msgstr "" + +#: src/gui/insEdit.cpp:182 src/gui/insEdit.cpp:205 +msgid "Squished AbsSine" +msgstr "" + +#: src/gui/insEdit.cpp:184 src/gui/insEdit.cpp:195 +msgid "Derived Square" +msgstr "" + +#: src/gui/insEdit.cpp:191 +msgid "Pulse Sine" +msgstr "" + +#: src/gui/insEdit.cpp:192 +msgid "Sine (Even Periods)" +msgstr "" + +#: src/gui/insEdit.cpp:193 +msgid "AbsSine (Even Periods)" +msgstr "" + +#: src/gui/insEdit.cpp:201 +msgid "Cut Sine" +msgstr "" + +#: src/gui/insEdit.cpp:202 +msgid "Cut Triangle" +msgstr "" + +#: src/gui/insEdit.cpp:204 +msgid "Squished Triangle" +msgstr "" + +#: src/gui/insEdit.cpp:206 +msgid "Squished AbsTriangle" +msgstr "" + +#: src/gui/insEdit.cpp:224 +msgid "Noise disabled" +msgstr "" + +#: src/gui/insEdit.cpp:225 +msgid "Square + noise" +msgstr "" + +#: src/gui/insEdit.cpp:226 +msgid "Ringmod from OP3 + noise" +msgstr "" + +#: src/gui/insEdit.cpp:227 +msgid "" +"Ringmod from OP3 + double pitch ModInput\n" +"WARNING - has emulation issues; subject to change" +msgstr "" + +#: src/gui/insEdit.cpp:232 +msgid "Bitwise AND" +msgstr "" + +#: src/gui/insEdit.cpp:233 +msgid "Bitwise OR" +msgstr "" + +#: src/gui/insEdit.cpp:234 +msgid "Bitwise XOR" +msgstr "" + +#: src/gui/insEdit.cpp:239 src/gui/insEdit.cpp:390 +msgid "gate" +msgstr "" + +#: src/gui/insEdit.cpp:240 src/gui/insEdit.cpp:391 +msgid "sync" +msgstr "" + +#: src/gui/insEdit.cpp:241 src/gui/insEdit.cpp:392 +msgid "ring" +msgstr "" + +#: src/gui/insEdit.cpp:327 +msgid "How did you even" +msgstr "" + +#: src/gui/insEdit.cpp:335 +msgid "triangle" +msgstr "" + +#: src/gui/insEdit.cpp:336 src/gui/insEdit.cpp:5821 +msgid "saw" +msgstr "" + +#: src/gui/insEdit.cpp:337 src/gui/insEdit.cpp:5827 +msgid "pulse" +msgstr "" + +#: src/gui/insEdit.cpp:338 src/gui/insEdit.cpp:344 src/gui/insEdit.cpp:373 +#: src/gui/insEdit.cpp:424 src/gui/insEdit.cpp:429 src/gui/insEdit.cpp:5833 +msgid "noise" +msgstr "" + +#: src/gui/insEdit.cpp:343 +msgid "tone" +msgstr "" + +#: src/gui/insEdit.cpp:345 +msgid "envelope" +msgstr "" + +#: src/gui/insEdit.cpp:350 +msgid "hold" +msgstr "" + +#: src/gui/insEdit.cpp:351 +msgid "alternate" +msgstr "" + +#: src/gui/insEdit.cpp:352 src/gui/insEdit.cpp:364 +msgid "direction" +msgstr "" + +#: src/gui/insEdit.cpp:353 src/gui/insEdit.cpp:436 +msgid "enable" +msgstr "" + +#: src/gui/insEdit.cpp:357 src/gui/insEdit.cpp:368 +msgid "enabled" +msgstr "" + +#: src/gui/insEdit.cpp:361 +msgid "mirror" +msgstr "" + +#: src/gui/insEdit.cpp:365 +msgid "resolution" +msgstr "" + +#: src/gui/insEdit.cpp:366 +msgid "fixed" +msgstr "" + +#: src/gui/insEdit.cpp:367 +msgid "N/A" +msgstr "" + +#: src/gui/insEdit.cpp:374 +msgid "echo" +msgstr "" + +#: src/gui/insEdit.cpp:375 +msgid "pitch mod" +msgstr "" + +#: src/gui/insEdit.cpp:376 src/gui/insEdit.cpp:508 +msgid "invert right" +msgstr "" + +#: src/gui/insEdit.cpp:377 src/gui/insEdit.cpp:509 +msgid "invert left" +msgstr "" + +#: src/gui/insEdit.cpp:382 src/gui/insEdit.cpp:5905 +msgid "low" +msgstr "" + +#: src/gui/insEdit.cpp:383 src/gui/insEdit.cpp:5911 +msgid "band" +msgstr "" + +#: src/gui/insEdit.cpp:384 src/gui/insEdit.cpp:5917 +msgid "high" +msgstr "" + +#: src/gui/insEdit.cpp:385 src/gui/insEdit.cpp:5924 +msgid "ch3off" +msgstr "" + +#: src/gui/insEdit.cpp:393 +msgid "test" +msgstr "" + +#: src/gui/insEdit.cpp:398 +msgid "15KHz" +msgstr "" + +#: src/gui/insEdit.cpp:399 +msgid "filter 2+4" +msgstr "" + +#: src/gui/insEdit.cpp:400 +msgid "filter 1+3" +msgstr "" + +#: src/gui/insEdit.cpp:401 +msgid "16-bit 3+4" +msgstr "" + +#: src/gui/insEdit.cpp:402 +msgid "16-bit 1+2" +msgstr "" + +#: src/gui/insEdit.cpp:403 +msgid "high3" +msgstr "" + +#: src/gui/insEdit.cpp:404 +msgid "high1" +msgstr "" + +#: src/gui/insEdit.cpp:405 +msgid "poly9" +msgstr "" + +#: src/gui/insEdit.cpp:414 +msgid "16'" +msgstr "" + +#: src/gui/insEdit.cpp:415 +msgid "8'" +msgstr "" + +#: src/gui/insEdit.cpp:416 +msgid "4'" +msgstr "" + +#: src/gui/insEdit.cpp:417 +msgid "2'" +msgstr "" + +#: src/gui/insEdit.cpp:418 +msgid "sustain" +msgstr "" + +#: src/gui/insEdit.cpp:423 +msgid "square" +msgstr "" + +#: src/gui/insEdit.cpp:431 +msgid "surround" +msgstr "" + +#: src/gui/insEdit.cpp:437 +msgid "oneshot" +msgstr "" + +#: src/gui/insEdit.cpp:438 +msgid "split L/R" +msgstr "" + +#: src/gui/insEdit.cpp:439 +msgid "HinvR" +msgstr "" + +#: src/gui/insEdit.cpp:440 +msgid "VinvR" +msgstr "" + +#: src/gui/insEdit.cpp:441 +msgid "HinvL" +msgstr "" + +#: src/gui/insEdit.cpp:442 +msgid "VinvL" +msgstr "" + +#: src/gui/insEdit.cpp:447 src/gui/insEdit.cpp:476 +msgid "ring mod" +msgstr "" + +#: src/gui/insEdit.cpp:448 +msgid "low pass" +msgstr "" + +#: src/gui/insEdit.cpp:449 src/gui/insEdit.cpp:475 +msgid "high pass" +msgstr "" + +#: src/gui/insEdit.cpp:450 +msgid "band pass" +msgstr "" + +#: src/gui/insEdit.cpp:459 +msgid "enable tap B" +msgstr "" + +#: src/gui/insEdit.cpp:460 +msgid "AM with slope" +msgstr "" + +#: src/gui/insEdit.cpp:465 +msgid "invert B" +msgstr "" + +#: src/gui/insEdit.cpp:466 +msgid "invert A" +msgstr "" + +#: src/gui/insEdit.cpp:467 +msgid "reset B" +msgstr "" + +#: src/gui/insEdit.cpp:468 +msgid "reset A" +msgstr "" + +#: src/gui/insEdit.cpp:469 +msgid "clip B" +msgstr "" + +#: src/gui/insEdit.cpp:470 +msgid "clip A" +msgstr "" + +#: src/gui/insEdit.cpp:477 +msgid "swap counters (noise)" +msgstr "" + +#: src/gui/insEdit.cpp:478 +msgid "low pass (noise)" +msgstr "" + +#: src/gui/insEdit.cpp:485 +msgid "rear right" +msgstr "" + +#: src/gui/insEdit.cpp:486 +msgid "rear left" +msgstr "" + +#: src/gui/insEdit.cpp:491 +msgid "on" +msgstr "" + +#: src/gui/insEdit.cpp:496 +msgid "k1 slowdown" +msgstr "" + +#: src/gui/insEdit.cpp:497 +msgid "k2 slowdown" +msgstr "" + +#: src/gui/insEdit.cpp:502 +msgid "pause" +msgstr "" + +#: src/gui/insEdit.cpp:503 +msgid "reverse" +msgstr "" + +#: src/gui/insEdit.cpp:521 +msgid "Subtract" +msgstr "" + +#: src/gui/insEdit.cpp:522 +msgid "Average" +msgstr "" + +#: src/gui/insEdit.cpp:523 src/gui/insEdit.cpp:2037 +msgid "Phase" +msgstr "" + +#: src/gui/insEdit.cpp:524 +msgid "Chorus" +msgstr "" + +#: src/gui/insEdit.cpp:528 +msgid "None (dual)" +msgstr "" + +#: src/gui/insEdit.cpp:529 +msgid "Wipe" +msgstr "" + +#: src/gui/insEdit.cpp:531 +msgid "Fade (ping-pong)" +msgstr "" + +#: src/gui/insEdit.cpp:532 +msgid "Overlay" +msgstr "" + +#: src/gui/insEdit.cpp:533 +msgid "Negative Overlay" +msgstr "" + +#: src/gui/insEdit.cpp:534 +msgid "Slide" +msgstr "" + +#: src/gui/insEdit.cpp:535 +msgid "Mix Chorus" +msgstr "" + +#: src/gui/insEdit.cpp:536 +msgid "Phase Modulation" +msgstr "" + +#: src/gui/insEdit.cpp:541 +msgid "Sweep" +msgstr "" + +#: src/gui/insEdit.cpp:542 src/gui/insEdit.cpp:552 +msgid "Wait" +msgstr "" + +#: src/gui/insEdit.cpp:543 src/gui/insEdit.cpp:553 +msgid "Wait for Release" +msgstr "" + +#: src/gui/insEdit.cpp:545 src/gui/insEdit.cpp:555 +msgid "Loop until Release" +msgstr "" + +#: src/gui/insEdit.cpp:549 +msgid "Volume Sweep" +msgstr "" + +#: src/gui/insEdit.cpp:550 +msgid "Frequency Sweep" +msgstr "" + +#: src/gui/insEdit.cpp:551 +msgid "Cutoff Sweep" +msgstr "" + +#: src/gui/insEdit.cpp:559 src/gui/insEdit.cpp:6604 +msgid "Direct" +msgstr "" + +#: src/gui/insEdit.cpp:560 src/gui/insEdit.cpp:6608 +msgid "Decrease (linear)" +msgstr "" + +#: src/gui/insEdit.cpp:561 src/gui/insEdit.cpp:6612 +msgid "Decrease (logarithmic)" +msgstr "" + +#: src/gui/insEdit.cpp:562 src/gui/insEdit.cpp:6616 +msgid "Increase (linear)" +msgstr "" + +#: src/gui/insEdit.cpp:563 src/gui/insEdit.cpp:6620 +msgid "Increase (bent line)" +msgstr "" + +#: src/gui/insEdit.cpp:611 +msgid "Relative" +msgstr "" + +#: src/gui/insEdit.cpp:616 +#, c-format +msgid "%d: +%d (exponential)" +msgstr "" + +#: src/gui/insEdit.cpp:619 +#, c-format +msgid "%d: +%d (linear)" +msgstr "" + +#: src/gui/insEdit.cpp:622 +#, c-format +msgid "%d: -%d (exponential)" +msgstr "" + +#: src/gui/insEdit.cpp:625 +#, c-format +msgid "%d: -%d (linear)" +msgstr "" + +#: src/gui/insEdit.cpp:627 +#, c-format +msgid "%d: %d (direct)" +msgstr "" + +#: src/gui/insEdit.cpp:660 +msgid "Random" +msgstr "" + +#: src/gui/insEdit.cpp:1610 +msgid "" +"left click to restart\n" +"middle click to pause\n" +"right click to see algorithm" +msgstr "" + +#: src/gui/insEdit.cpp:1620 +msgid "" +"left click to configure TL scaling\n" +"right click to see FM preview" +msgstr "" + +#: src/gui/insEdit.cpp:1624 +msgid "right click to see FM preview" +msgstr "" + +#: src/gui/insEdit.cpp:1639 +msgid "operator level changes with volume?" +msgstr "" + +#: src/gui/insEdit.cpp:1648 +msgid "AUTO##OPKVS" +msgstr "" + +#: src/gui/insEdit.cpp:1650 +msgid "NO##OPKVS" +msgstr "" + +#: src/gui/insEdit.cpp:1652 +msgid "YES##OPKVS" +msgstr "" + +#: src/gui/insEdit.cpp:1900 src/gui/insEdit.cpp:2005 +msgid "Bottom" +msgstr "" + +#: src/gui/insEdit.cpp:1940 +msgid "Hold" +msgstr "" + +#: src/gui/insEdit.cpp:1949 +msgid "SusTime" +msgstr "" + +#: src/gui/insEdit.cpp:1969 +msgid "SusDecay" +msgstr "" + +#: src/gui/insEdit.cpp:2047 +msgid "Shape" +msgstr "" + +#: src/gui/insEdit.cpp:2100 +msgid "Macro type: Sequence" +msgstr "" + +#: src/gui/insEdit.cpp:2103 +msgid "Macro type: ADSR" +msgstr "" + +#: src/gui/insEdit.cpp:2106 +msgid "Macro type: LFO" +msgstr "" + +#: src/gui/insEdit.cpp:2109 +msgid "Macro type: What's going on here?" +msgstr "" + +#: src/gui/insEdit.cpp:2122 +msgid "Delay/Step Length" +msgstr "" + +#: src/gui/insEdit.cpp:2125 +msgid "Step Length (ticks)##IMacroSpeed" +msgstr "" + +#: src/gui/insEdit.cpp:2129 +msgid "Delay##IMacroDelay" +msgstr "" + +#: src/gui/insEdit.cpp:2142 +msgid "Release mode: Active (jump to release pos)" +msgstr "" + +#: src/gui/insEdit.cpp:2144 +msgid "Release mode: Passive (delayed release)" +msgstr "" + +#: src/gui/insEdit.cpp:2393 +msgid "StepLen" +msgstr "" + +#: src/gui/insEdit.cpp:2401 +msgid "Delay" +msgstr "" + +#: src/gui/insEdit.cpp:2425 +msgid "The heck? No, this isn't even working correctly..." +msgstr "" + +#: src/gui/insEdit.cpp:2428 +msgid "The only problem with that selectedMacro is that it's a bug..." +msgstr "" + +#: src/gui/insEdit.cpp:2589 +msgid "(copying)" +msgstr "" + +#: src/gui/insEdit.cpp:2591 +msgid "(swapping)" +msgstr "" + +#: src/gui/insEdit.cpp:2595 +msgid "" +"- drag to swap operator\n" +"- shift-drag to copy operator" +msgstr "" + +#: src/gui/insEdit.cpp:2632 +msgid "new DPCM features disabled (compatibility)!" +msgstr "" + +#: src/gui/insEdit.cpp:2633 +msgid "click here to enable them." +msgstr "" + +#: src/gui/insEdit.cpp:2644 +msgid "none selected" +msgstr "" + +#: src/gui/insEdit.cpp:2657 +msgid "Use sample" +msgstr "" + +#: src/gui/insEdit.cpp:2659 +msgid "Sample bank slot##BANKSLOT" +msgstr "" + +#: src/gui/insEdit.cpp:2681 +msgid "Use wavetable (Amiga/Generic DAC only)" +msgstr "" + +#: src/gui/insEdit.cpp:2681 +msgid "Use wavetable" +msgstr "" + +#: src/gui/insEdit.cpp:2708 +msgid "Use sample map" +msgstr "" + +#: src/gui/insEdit.cpp:2730 +msgid "delta" +msgstr "" + +#: src/gui/insEdit.cpp:2736 +msgid "sample name" +msgstr "" + +#: src/gui/insEdit.cpp:3001 +msgid "set entire map to this pitch" +msgstr "" + +#: src/gui/insEdit.cpp:3009 +msgid "set entire map to this delta counter value" +msgstr "" + +#: src/gui/insEdit.cpp:3018 +msgid "set entire map to this note" +msgstr "" + +#: src/gui/insEdit.cpp:3027 +msgid "set entire map to this sample" +msgstr "" + +#: src/gui/insEdit.cpp:3037 +msgid "reset pitches" +msgstr "" + +#: src/gui/insEdit.cpp:3042 +msgid "clear delta counter values" +msgstr "" + +#: src/gui/insEdit.cpp:3048 +msgid "reset notes" +msgstr "" + +#: src/gui/insEdit.cpp:3054 +msgid "clear map samples" +msgstr "" + +#: src/gui/insEdit.cpp:3148 +msgid "Request from TX81Z" +msgstr "" + +#: src/gui/insEdit.cpp:3234 +#, c-format +msgid "%s name" +msgstr "" + +#: src/gui/insEdit.cpp:3286 +msgid "Fixed frequency mode" +msgstr "" + +#: src/gui/insEdit.cpp:3288 +msgid "" +"when enabled, drums will be set to the specified frequencies, ignoring the " +"note." +msgstr "" + +#: src/gui/insEdit.cpp:3296 +msgid "Drum" +msgstr "" + +#: src/gui/insEdit.cpp:3298 src/gui/insEdit.cpp:3798 src/gui/insEdit.cpp:3904 +#: src/gui/insEdit.cpp:4404 src/gui/insEdit.cpp:4468 src/gui/insEdit.cpp:5068 +#: src/gui/insEdit.cpp:5518 +msgid "Block" +msgstr "" + +#: src/gui/insEdit.cpp:3300 src/gui/insEdit.cpp:3803 src/gui/insEdit.cpp:3909 +#: src/gui/insEdit.cpp:4993 src/gui/insEdit.cpp:5079 src/gui/insEdit.cpp:5519 +msgid "FreqNum" +msgstr "" + +#: src/gui/insEdit.cpp:3303 +msgid "Snare/Hi-hat" +msgstr "" + +#: src/gui/insEdit.cpp:3304 +msgid "Tom/Top" +msgstr "" + +#: src/gui/insEdit.cpp:3314 +msgid "Volume##TL" +msgstr "" + +#: src/gui/insEdit.cpp:3316 +msgid "this volume slider only works in compatibility (non-drums) system." +msgstr "" + +#: src/gui/insEdit.cpp:3626 +msgid "Env" +msgstr "" + +#: src/gui/insEdit.cpp:3980 src/gui/insEdit.cpp:4346 src/gui/insEdit.cpp:4396 +#: src/gui/insEdit.cpp:5104 +msgid "OPL2/3 only (last 4 waveforms are OPL3 only)" +msgstr "" + +#: src/gui/insEdit.cpp:4079 src/gui/insEdit.cpp:4788 +#, c-format +msgid "Envelope 2 (kick only)" +msgstr "" + +#: src/gui/insEdit.cpp:4084 +#, c-format +msgid "Operator %d" +msgstr "" + +#: src/gui/insEdit.cpp:4414 +msgid "Freq" +msgstr "" + +#: src/gui/insEdit.cpp:4443 +msgid "Only on YM2151 (OPM)" +msgstr "" + +#: src/gui/insEdit.cpp:4466 +msgid "Blk" +msgstr "" + +#: src/gui/insEdit.cpp:4479 +msgid "F" +msgstr "" + +#: src/gui/insEdit.cpp:4481 +msgid "Frequency (F-Num)" +msgstr "" + +#: src/gui/insEdit.cpp:4833 +msgid "SSG On" +msgstr "" + +#: src/gui/insEdit.cpp:5206 src/gui/insEdit.cpp:5207 +msgid "waiting..." +msgstr "" + +#: src/gui/insEdit.cpp:5210 src/gui/insEdit.cpp:5211 +msgid "no instrument selected" +msgstr "" + +#: src/gui/insEdit.cpp:5393 +msgid "" +"none of the currently present chips are able to play this instrument type!" +msgstr "" + +#: src/gui/insEdit.cpp:5413 +msgid "FM Macros" +msgstr "" + +#: src/gui/insEdit.cpp:5435 src/gui/insEdit.cpp:5440 +msgid "LFO Speed" +msgstr "" + +#: src/gui/insEdit.cpp:5439 src/gui/insEdit.cpp:6514 +msgid "PM Depth" +msgstr "" + +#: src/gui/insEdit.cpp:5441 +msgid "LFO Shape" +msgstr "" + +#: src/gui/insEdit.cpp:5444 +msgid "OpMask" +msgstr "" + +#: src/gui/insEdit.cpp:5446 +msgid "AM Depth 2" +msgstr "" + +#: src/gui/insEdit.cpp:5447 +msgid "PM Depth 2" +msgstr "" + +#: src/gui/insEdit.cpp:5448 +msgid "LFO2 Speed" +msgstr "" + +#: src/gui/insEdit.cpp:5449 +msgid "LFO2 Shape" +msgstr "" + +#: src/gui/insEdit.cpp:5458 +#, c-format +msgid "Operator Macros" +msgstr "" + +#: src/gui/insEdit.cpp:5460 +#, c-format +msgid "OP%d Macros" +msgstr "" + +#: src/gui/insEdit.cpp:5521 +msgid "Op. Arpeggio" +msgstr "" + +#: src/gui/insEdit.cpp:5522 +msgid "Op. Pitch" +msgstr "" + +#: src/gui/insEdit.cpp:5531 +msgid "Op. Panning" +msgstr "" + +#: src/gui/insEdit.cpp:5558 +msgid "Use software envelope" +msgstr "" + +#: src/gui/insEdit.cpp:5559 +msgid "Initialize envelope on every note" +msgstr "" + +#: src/gui/insEdit.cpp:5560 +msgid "Double wave length (GBA only)" +msgstr "" + +#: src/gui/insEdit.cpp:5589 src/gui/insEdit.cpp:5666 +msgid "Sound Length" +msgstr "" + +#: src/gui/insEdit.cpp:5592 src/gui/insEdit.cpp:5666 +msgid "Infinity" +msgstr "" + +#: src/gui/insEdit.cpp:5596 +msgid "Direction" +msgstr "" + +#: src/gui/insEdit.cpp:5599 src/gui/insEdit.cpp:5669 src/gui/insEdit.cpp:5697 +#: src/gui/insEdit.cpp:6008 src/gui/insEdit.cpp:6051 +msgid "Up" +msgstr "" + +#: src/gui/insEdit.cpp:5604 src/gui/insEdit.cpp:5674 src/gui/insEdit.cpp:5702 +#: src/gui/insEdit.cpp:6013 src/gui/insEdit.cpp:6056 +msgid "Down" +msgstr "" + +#: src/gui/insEdit.cpp:5620 src/gui/insEdit.cpp:5953 +msgid "Hardware Sequence" +msgstr "" + +#: src/gui/insEdit.cpp:5630 src/gui/insEdit.cpp:5963 +msgid "Tick" +msgstr "" + +#: src/gui/insEdit.cpp:5632 src/gui/insEdit.cpp:5965 +msgid "Command" +msgstr "" + +#: src/gui/insEdit.cpp:5634 src/gui/insEdit.cpp:5967 +msgid "Move/Remove" +msgstr "" + +#: src/gui/insEdit.cpp:5663 +msgid "Env Length" +msgstr "" + +#: src/gui/insEdit.cpp:5690 +msgid "Shift" +msgstr "" + +#: src/gui/insEdit.cpp:5717 src/gui/insEdit.cpp:6073 +msgid "Ticks" +msgstr "" + +#: src/gui/insEdit.cpp:5736 src/gui/insEdit.cpp:6092 src/gui/insEdit.cpp:6239 +msgid "Position" +msgstr "" + +#: src/gui/insEdit.cpp:5815 +msgid "tri" +msgstr "" + +#: src/gui/insEdit.cpp:5882 +msgid "Ring Modulation" +msgstr "" + +#: src/gui/insEdit.cpp:5886 +msgid "Oscillator Sync" +msgstr "" + +#: src/gui/insEdit.cpp:5890 +msgid "Enable filter" +msgstr "" + +#: src/gui/insEdit.cpp:5891 +msgid "Initialize filter" +msgstr "" + +#: src/gui/insEdit.cpp:5894 src/gui/insEdit.cpp:5897 src/gui/insEdit.cpp:6951 +#: src/gui/insEdit.cpp:7215 src/gui/insEdit.cpp:7476 +msgid "Cutoff" +msgstr "" + +#: src/gui/insEdit.cpp:5902 src/gui/insEdit.cpp:6408 src/gui/insEdit.cpp:6952 +#: src/gui/insEdit.cpp:7179 src/gui/insEdit.cpp:7477 +msgid "Filter Mode" +msgstr "" + +#: src/gui/insEdit.cpp:5931 src/gui/insEdit.cpp:7485 +msgid "Noise Mode" +msgstr "" + +#: src/gui/insEdit.cpp:5932 +msgid "Wave Mix Mode" +msgstr "" + +#: src/gui/insEdit.cpp:5935 +msgid "Absolute Cutoff Macro" +msgstr "" + +#: src/gui/insEdit.cpp:5939 +msgid "Absolute Duty Macro" +msgstr "" + +#: src/gui/insEdit.cpp:5945 +msgid "Don't test before new note" +msgstr "" + +#: src/gui/insEdit.cpp:5950 +msgid "Switch roles of frequency and phase reset timer" +msgstr "" + +#: src/gui/insEdit.cpp:5997 src/gui/insEdit.cpp:6040 +msgid "Period" +msgstr "" + +#: src/gui/insEdit.cpp:6002 src/gui/insEdit.cpp:6045 src/gui/insEdit.cpp:6892 +msgid "Amount" +msgstr "" + +#: src/gui/insEdit.cpp:6005 src/gui/insEdit.cpp:6048 +msgid "Bound" +msgstr "" + +#: src/gui/insEdit.cpp:6021 +msgid "Flip" +msgstr "" + +#: src/gui/insEdit.cpp:6210 +msgid "Load waveform" +msgstr "" + +#: src/gui/insEdit.cpp:6215 +msgid "" +"when enabled, a waveform will be loaded into RAM.\n" +"when disabled, only the offset and length change." +msgstr "" + +#: src/gui/insEdit.cpp:6219 +msgid "Waveform##WAVE" +msgstr "" + +#: src/gui/insEdit.cpp:6227 +msgid "Per-channel wave position/length" +msgstr "" + +#: src/gui/insEdit.cpp:6237 +msgid "Ch" +msgstr "" + +#: src/gui/insEdit.cpp:6286 +msgid "Compatibility mode" +msgstr "" + +#: src/gui/insEdit.cpp:6288 +msgid "" +"only use for compatibility with .dmf modules!\n" +"- initializes modulation table with first wavetable\n" +"- does not alter modulation parameters on instrument change" +msgstr "" + +#: src/gui/insEdit.cpp:6290 +msgid "Modulation depth" +msgstr "" + +#: src/gui/insEdit.cpp:6294 +msgid "Modulation speed" +msgstr "" + +#: src/gui/insEdit.cpp:6298 +msgid "Modulation table" +msgstr "" + +#: src/gui/insEdit.cpp:6347 +msgid "Set modulation table (channel 5 only)" +msgstr "" + +#: src/gui/insEdit.cpp:6411 src/gui/insEdit.cpp:7184 +msgid "Filter K1" +msgstr "" + +#: src/gui/insEdit.cpp:6413 src/gui/insEdit.cpp:7185 +msgid "Filter K2" +msgstr "" + +#: src/gui/insEdit.cpp:6417 +msgid "Envelope length" +msgstr "" + +#: src/gui/insEdit.cpp:6420 +msgid "Left Volume Ramp" +msgstr "" + +#: src/gui/insEdit.cpp:6422 +msgid "Right Volume Ramp" +msgstr "" + +#: src/gui/insEdit.cpp:6425 +msgid "Filter K1 Ramp" +msgstr "" + +#: src/gui/insEdit.cpp:6427 +msgid "Filter K2 Ramp" +msgstr "" + +#: src/gui/insEdit.cpp:6430 +msgid "K1 Ramp Slowdown" +msgstr "" + +#: src/gui/insEdit.cpp:6432 +msgid "K2 Ramp Slowdown" +msgstr "" + +#: src/gui/insEdit.cpp:6454 +msgid "Attack Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6460 +msgid "Decay 1 Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6466 +msgid "Decay Level" +msgstr "" + +#: src/gui/insEdit.cpp:6472 +msgid "Decay 2 Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6478 +msgid "Release Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6484 +msgid "Rate Correction" +msgstr "" + +#: src/gui/insEdit.cpp:6512 +msgid "LFO Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6523 +msgid "Use envelope" +msgstr "" + +#: src/gui/insEdit.cpp:6576 +msgid "Sustain/release mode:" +msgstr "" + +#: src/gui/insEdit.cpp:6577 +msgid "Direct (cut on release)" +msgstr "" + +#: src/gui/insEdit.cpp:6580 +msgid "Effective (linear decrease)" +msgstr "" + +#: src/gui/insEdit.cpp:6583 +msgid "Effective (exponential decrease)" +msgstr "" + +#: src/gui/insEdit.cpp:6586 +msgid "Delayed (write R on release)" +msgstr "" + +#: src/gui/insEdit.cpp:6596 src/gui/insEdit.cpp:6597 +msgid "Gain Mode" +msgstr "" + +#: src/gui/insEdit.cpp:6599 src/gui/insEdit.cpp:6600 src/gui/insEdit.cpp:7205 +msgid "Gain" +msgstr "" + +#: src/gui/insEdit.cpp:6633 +msgid "" +"using decrease modes will not produce any sound at all, unless you know what " +"you are doing.\n" +"it is recommended to use the Gain macro for decrease instead." +msgstr "" + +#: src/gui/insEdit.cpp:6703 +msgid "Enable synthesizer" +msgstr "" + +#: src/gui/insEdit.cpp:6721 +msgid "Single-waveform" +msgstr "" + +#: src/gui/insEdit.cpp:6730 +msgid "Dual-waveform" +msgstr "" + +#: src/gui/insEdit.cpp:6803 src/gui/insEdit.cpp:6812 +msgid "Wave 1" +msgstr "" + +#: src/gui/insEdit.cpp:6808 src/gui/insEdit.cpp:6823 +msgid "" +"waveform macro is controlling wave 1!\n" +"this value will be ineffective." +msgstr "" + +#: src/gui/insEdit.cpp:6829 +msgid "Wave 2" +msgstr "" + +#: src/gui/insEdit.cpp:6844 +msgid "Resume preview" +msgstr "" + +#: src/gui/insEdit.cpp:6846 +msgid "Pause preview" +msgstr "" + +#: src/gui/insEdit.cpp:6854 +msgid "Restart preview" +msgstr "" + +#: src/gui/insEdit.cpp:6874 +msgid "Copy to new wavetable" +msgstr "" + +#: src/gui/insEdit.cpp:6881 +msgid "Update Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6902 +msgid "Global" +msgstr "" + +#: src/gui/insEdit.cpp:6906 +msgid "" +"wavetable synthesizer disabled.\n" +"use the Waveform macro to set the wave for this instrument." +msgstr "" + +#: src/gui/insEdit.cpp:6912 +msgid "Macros" +msgstr "" + +#: src/gui/insEdit.cpp:6921 src/gui/insEdit.cpp:6929 src/gui/insEdit.cpp:6938 +#: src/gui/insEdit.cpp:6947 src/gui/insEdit.cpp:6962 src/gui/insEdit.cpp:6976 +#: src/gui/insEdit.cpp:6988 src/gui/insEdit.cpp:7001 src/gui/insEdit.cpp:7017 +#: src/gui/insEdit.cpp:7023 src/gui/insEdit.cpp:7033 src/gui/insEdit.cpp:7040 +#: src/gui/insEdit.cpp:7046 src/gui/insEdit.cpp:7059 src/gui/insEdit.cpp:7066 +#: src/gui/insEdit.cpp:7073 src/gui/insEdit.cpp:7082 src/gui/insEdit.cpp:7092 +#: src/gui/insEdit.cpp:7100 src/gui/insEdit.cpp:7106 src/gui/insEdit.cpp:7114 +#: src/gui/insEdit.cpp:7121 src/gui/insEdit.cpp:7127 src/gui/insEdit.cpp:7137 +#: src/gui/insEdit.cpp:7149 src/gui/insEdit.cpp:7157 src/gui/insEdit.cpp:7173 +#: src/gui/insEdit.cpp:7178 src/gui/insEdit.cpp:7191 src/gui/insEdit.cpp:7198 +#: src/gui/insEdit.cpp:7209 src/gui/insEdit.cpp:7222 src/gui/insEdit.cpp:7231 +#: src/gui/insEdit.cpp:7238 src/gui/insEdit.cpp:7246 src/gui/insEdit.cpp:7270 +#: src/gui/insEdit.cpp:7277 src/gui/insEdit.cpp:7285 src/gui/insEdit.cpp:7296 +#: src/gui/insEdit.cpp:7303 src/gui/insEdit.cpp:7311 src/gui/insEdit.cpp:7319 +#: src/gui/insEdit.cpp:7328 src/gui/insEdit.cpp:7336 src/gui/insEdit.cpp:7342 +#: src/gui/insEdit.cpp:7348 src/gui/insEdit.cpp:7354 src/gui/insEdit.cpp:7359 +#: src/gui/insEdit.cpp:7366 src/gui/insEdit.cpp:7373 src/gui/insEdit.cpp:7381 +#: src/gui/insEdit.cpp:7390 src/gui/insEdit.cpp:7398 src/gui/insEdit.cpp:7410 +#: src/gui/insEdit.cpp:7423 src/gui/insEdit.cpp:7434 src/gui/insEdit.cpp:7444 +#: src/gui/insEdit.cpp:7452 src/gui/insEdit.cpp:7462 src/gui/insEdit.cpp:7471 +msgid "Arpeggio" +msgstr "" + +#: src/gui/insEdit.cpp:6925 src/gui/insEdit.cpp:6932 src/gui/insEdit.cpp:6943 +#: src/gui/insEdit.cpp:6972 src/gui/insEdit.cpp:6984 src/gui/insEdit.cpp:6994 +#: src/gui/insEdit.cpp:7007 src/gui/insEdit.cpp:7054 src/gui/insEdit.cpp:7062 +#: src/gui/insEdit.cpp:7069 src/gui/insEdit.cpp:7088 src/gui/insEdit.cpp:7110 +#: src/gui/insEdit.cpp:7133 src/gui/insEdit.cpp:7144 src/gui/insEdit.cpp:7163 +#: src/gui/insEdit.cpp:7183 src/gui/insEdit.cpp:7194 src/gui/insEdit.cpp:7214 +#: src/gui/insEdit.cpp:7234 src/gui/insEdit.cpp:7242 src/gui/insEdit.cpp:7249 +#: src/gui/insEdit.cpp:7254 src/gui/insEdit.cpp:7260 src/gui/insEdit.cpp:7266 +#: src/gui/insEdit.cpp:7273 src/gui/insEdit.cpp:7281 src/gui/insEdit.cpp:7290 +#: src/gui/insEdit.cpp:7299 src/gui/insEdit.cpp:7307 src/gui/insEdit.cpp:7324 +#: src/gui/insEdit.cpp:7332 src/gui/insEdit.cpp:7338 src/gui/insEdit.cpp:7362 +#: src/gui/insEdit.cpp:7369 src/gui/insEdit.cpp:7377 src/gui/insEdit.cpp:7386 +#: src/gui/insEdit.cpp:7394 src/gui/insEdit.cpp:7402 src/gui/insEdit.cpp:7414 +#: src/gui/insEdit.cpp:7429 src/gui/insEdit.cpp:7440 src/gui/insEdit.cpp:7448 +#: src/gui/insEdit.cpp:7457 src/gui/insEdit.cpp:7475 +msgid "Phase Reset" +msgstr "" + +#: src/gui/insEdit.cpp:6939 src/gui/insEdit.cpp:7024 src/gui/insEdit.cpp:7210 +#: src/gui/insEdit.cpp:7247 +msgid "Duty/Noise" +msgstr "" + +#: src/gui/insEdit.cpp:6966 src/gui/insEdit.cpp:7288 +msgid "Surround" +msgstr "" + +#: src/gui/insEdit.cpp:6968 src/gui/insEdit.cpp:6981 src/gui/insEdit.cpp:7026 +#: src/gui/insEdit.cpp:7085 src/gui/insEdit.cpp:7141 src/gui/insEdit.cpp:7159 +#: src/gui/insEdit.cpp:7180 src/gui/insEdit.cpp:7201 src/gui/insEdit.cpp:7225 +#: src/gui/insEdit.cpp:7278 src/gui/insEdit.cpp:7304 src/gui/insEdit.cpp:7321 +#: src/gui/insEdit.cpp:7329 src/gui/insEdit.cpp:7374 src/gui/insEdit.cpp:7383 +#: src/gui/insEdit.cpp:7399 src/gui/insEdit.cpp:7411 src/gui/insEdit.cpp:7426 +#: src/gui/insEdit.cpp:7454 src/gui/insEdit.cpp:7464 +msgid "Panning (left)" +msgstr "" + +#: src/gui/insEdit.cpp:6969 src/gui/insEdit.cpp:6982 src/gui/insEdit.cpp:7027 +#: src/gui/insEdit.cpp:7086 src/gui/insEdit.cpp:7142 src/gui/insEdit.cpp:7160 +#: src/gui/insEdit.cpp:7181 src/gui/insEdit.cpp:7202 src/gui/insEdit.cpp:7226 +#: src/gui/insEdit.cpp:7279 src/gui/insEdit.cpp:7305 src/gui/insEdit.cpp:7322 +#: src/gui/insEdit.cpp:7330 src/gui/insEdit.cpp:7375 src/gui/insEdit.cpp:7384 +#: src/gui/insEdit.cpp:7400 src/gui/insEdit.cpp:7412 src/gui/insEdit.cpp:7427 +#: src/gui/insEdit.cpp:7455 src/gui/insEdit.cpp:7465 +msgid "Panning (right)" +msgstr "" + +#: src/gui/insEdit.cpp:6990 src/gui/insEdit.cpp:7003 src/gui/insEdit.cpp:7107 +#: src/gui/insEdit.cpp:7199 src/gui/insEdit.cpp:7239 src/gui/insEdit.cpp:7424 +msgid "Noise Freq" +msgstr "" + +#: src/gui/insEdit.cpp:6996 src/gui/insEdit.cpp:7010 src/gui/insEdit.cpp:7167 +msgid "AutoEnv Num" +msgstr "" + +#: src/gui/insEdit.cpp:6997 src/gui/insEdit.cpp:7011 src/gui/insEdit.cpp:7168 +msgid "AutoEnv Den" +msgstr "" + +#: src/gui/insEdit.cpp:7012 +msgid "Noise AND Mask" +msgstr "" + +#: src/gui/insEdit.cpp:7013 +msgid "Noise OR Mask" +msgstr "" + +#: src/gui/insEdit.cpp:7034 +msgid "On/Off" +msgstr "" + +#: src/gui/insEdit.cpp:7060 +msgid "Patch" +msgstr "" + +#: src/gui/insEdit.cpp:7076 +msgid "Mod Depth" +msgstr "" + +#: src/gui/insEdit.cpp:7077 +msgid "Mod Speed" +msgstr "" + +#: src/gui/insEdit.cpp:7078 +msgid "Mod Position" +msgstr "" + +#: src/gui/insEdit.cpp:7083 +msgid "Noise Length" +msgstr "" + +#: src/gui/insEdit.cpp:7093 +msgid "Wave Pos" +msgstr "" + +#: src/gui/insEdit.cpp:7096 +msgid "Wave Length" +msgstr "" + +#: src/gui/insEdit.cpp:7115 +msgid "AUDCTL" +msgstr "" + +#: src/gui/insEdit.cpp:7122 src/gui/insEdit.cpp:7343 +msgid "Pulse Width" +msgstr "" + +#: src/gui/insEdit.cpp:7139 +msgid "Duty/Int" +msgstr "" + +#: src/gui/insEdit.cpp:7145 src/gui/insEdit.cpp:7406 +msgid "Load LFSR" +msgstr "" + +#: src/gui/insEdit.cpp:7165 +msgid "Envelope Mode" +msgstr "" + +#: src/gui/insEdit.cpp:7218 +msgid "Phase Reset Timer" +msgstr "" + +#: src/gui/insEdit.cpp:7252 src/gui/insEdit.cpp:7259 +msgid "Freq Divider" +msgstr "" + +#: src/gui/insEdit.cpp:7255 +msgid "Clock Divider" +msgstr "" + +#: src/gui/insEdit.cpp:7264 +msgid "Global Volume" +msgstr "" + +#: src/gui/insEdit.cpp:7286 +msgid "Echo Level" +msgstr "" + +#: src/gui/insEdit.cpp:7291 +msgid "Echo Feedback" +msgstr "" + +#: src/gui/insEdit.cpp:7292 +msgid "Echo Length" +msgstr "" + +#: src/gui/insEdit.cpp:7312 +msgid "Group Ctrl" +msgstr "" + +#: src/gui/insEdit.cpp:7313 +msgid "Group Attack" +msgstr "" + +#: src/gui/insEdit.cpp:7314 +msgid "Group Decay" +msgstr "" + +#: src/gui/insEdit.cpp:7320 +msgid "Noise Type" +msgstr "" + +#: src/gui/insEdit.cpp:7367 +msgid "Square/Noise" +msgstr "" + +#: src/gui/insEdit.cpp:7404 +msgid "Tap A Location" +msgstr "" + +#: src/gui/insEdit.cpp:7405 +msgid "Tap B Location" +msgstr "" + +#: src/gui/insEdit.cpp:7416 +msgid "Portion A Length" +msgstr "" + +#: src/gui/insEdit.cpp:7417 +msgid "Portion B Length" +msgstr "" + +#: src/gui/insEdit.cpp:7418 +msgid "Portion A Offset" +msgstr "" + +#: src/gui/insEdit.cpp:7419 +msgid "Portion B Offset" +msgstr "" + +#: src/gui/insEdit.cpp:7463 +msgid "Parameter" +msgstr "" + +#: src/gui/insEdit.cpp:7467 +msgid "Load Value" +msgstr "" + +#: src/gui/insEdit.cpp:7479 +msgid "Filter Toggle" +msgstr "" + +#: src/gui/insEdit.cpp:7486 +msgid "Wave Mix" +msgstr "" + +#: src/gui/insEdit.cpp:7500 +msgid "Octave offset" +msgstr "" + +#: src/gui/insEdit.cpp:7505 +msgid "go to Macros for other parameters." +msgstr "" + +#: src/gui/insEdit.cpp:7521 +msgid "invalid instrument type! change it first." +msgstr "" + +#: src/gui/insEdit.cpp:7565 +msgid "clear contents" +msgstr "" + +#: src/gui/insEdit.cpp:7571 +msgid "offset..." +msgstr "" + +#: src/gui/insEdit.cpp:7572 src/gui/insEdit.cpp:7605 +msgid "X" +msgstr "" + +#: src/gui/insEdit.cpp:7573 src/gui/insEdit.cpp:7609 +msgid "Y" +msgstr "" + +#: src/gui/insEdit.cpp:7574 +msgid "offset" +msgstr "" + +#: src/gui/insEdit.cpp:7637 +msgid "Min" +msgstr "" + +#: src/gui/insEdit.cpp:7638 +msgid "Max" +msgstr "" diff --git a/po/hy.po b/po/hy.po new file mode 100644 index 000000000..1a6f37749 --- /dev/null +++ b/po/hy.po @@ -0,0 +1,16029 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: furnace 0.6.3\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: hy\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/engine/sysDef.cpp:428 src/engine/sysDef.cpp:441 +msgid "20xx: Set channel mode (bit 0: square; bit 1: noise; bit 2: envelope)" +msgstr "" +"20xx: Սահմանել ձայնի ռեժիմը (բիթ 0: քառակուսի; բիթ 1: աղմուկ; բիթ 2: ծրար)" + +# ik this sounds very google translate-y but ITS NOT MY FAULT THIS LANGUAGE HAS NO PROPER TECHNICAL WORDS. YEARS OF TRANSLATED RUSSIAN LITERATURE LEADS TO THIS PIZDEC +#: src/engine/sysDef.cpp:429 +msgid "21xx: Set noise frequency (0 to 1F)" +msgstr "21xx: Սահմանել աղմկի հաճախությունը (0-ից 1F)" + +#: src/engine/sysDef.cpp:430 src/engine/sysDef.cpp:443 +msgid "22xy: Set envelope mode (x: shape, y: enable for this channel)" +msgstr "22xy: Սահմանել ծրարի ռեժիմը (x: ձև, y: միացնել այս ձայնի համար)" + +#: src/engine/sysDef.cpp:431 src/engine/sysDef.cpp:444 +msgid "23xx: Set envelope period low byte" +msgstr "23xx: Սահմանել ծրարի պարբերության ցածր բայթը" + +#: src/engine/sysDef.cpp:432 src/engine/sysDef.cpp:445 +msgid "24xx: Set envelope period high byte" +msgstr "24xx: Սահմանել ծրարի պարբերության բարձր բայթը" + +#: src/engine/sysDef.cpp:433 src/engine/sysDef.cpp:446 +#: src/engine/sysDef.cpp:1599 +msgid "25xx: Envelope slide up" +msgstr "25xx: Ծրարը սահեցնել վերև" + +#: src/engine/sysDef.cpp:434 src/engine/sysDef.cpp:447 +#: src/engine/sysDef.cpp:1600 +msgid "26xx: Envelope slide down" +msgstr "26xx: Ծրարը սահեցնելներքև" + +#: src/engine/sysDef.cpp:435 src/engine/sysDef.cpp:448 +#: src/engine/sysDef.cpp:1601 +msgid "29xy: Set auto-envelope (x: numerator; y: denominator)" +msgstr "29xy: Սահմանել ավտոմատ ծրարը (x: համարիչ y: հայտարար)" + +#: src/engine/sysDef.cpp:436 src/engine/sysDef.cpp:449 +msgid "2Exx: Write to I/O port A" +msgstr "2Exx: Արժեք տալ մուտք֊ելքի A պորտին" + +#: src/engine/sysDef.cpp:437 src/engine/sysDef.cpp:450 +msgid "2Fxx: Write to I/O port B" +msgstr "2Fxx: Արժեք տալ մուտք֊ելքի B պորտին" + +#: src/engine/sysDef.cpp:442 +msgid "21xx: Set noise frequency (0 to FF)" +msgstr "21xx: Սահմանել աղմկի հաճախությունը (0-ից FF)" + +#: src/engine/sysDef.cpp:451 +msgid "12xx: Set duty cycle (0 to 8)" +msgstr "12xx: Սահմանել իմպուլսի լայությունը (0-ից 8)" + +#: src/engine/sysDef.cpp:453 +msgid "27xx: Set noise AND mask" +msgstr "27xx: Սահմանել աղմկի հետ տրամաբանական ԵՎ կատարելու արժեքը" + +#: src/engine/sysDef.cpp:454 +msgid "28xx: Set noise OR mask" +msgstr "27xx: Սահմանել աղմկի հետ տրամաբանական ԿԱՄ կատարելու արժեքը" + +#: src/engine/sysDef.cpp:455 +#, fuzzy +msgid "" +"2Cxy: Automatic noise frequency (x: mode (0: disable, 1: freq, 2: freq + OR " +"mask); y: offset)" +msgstr "" +"2Cxy: ավտոմատ աղմկի հաճախություն (x: (0: անջատել, 1: հաճախություն, 2: " +"հաճախություն + տրամաբանական ԿԱՄ ); y: օֆսեթ" + +#: src/engine/sysDef.cpp:456 +msgid "2Dxx: NOT TO BE EMPLOYED BY THE COMPOSER" +msgstr "2Dxx: ԵՐԳԱՆԱՆԸ ՉՊԻՏԻ ՕԳՏԱԳՈՐԾԻ" + +#: src/engine/sysDef.cpp:460 +msgid "30xx: Toggle hard envelope reset on new notes" +msgstr "" + +#: src/engine/sysDef.cpp:465 +msgid "18xx: Toggle extended channel 3 mode" +msgstr "" + +#: src/engine/sysDef.cpp:470 src/engine/sysDef.cpp:766 +#: src/engine/sysDef.cpp:1025 src/engine/sysDef.cpp:1272 +#: src/engine/sysDef.cpp:1593 +msgid "17xx: Toggle PCM mode (LEGACY)" +msgstr "" + +#: src/engine/sysDef.cpp:471 src/engine/sysDef.cpp:1653 +#: src/engine/sysDef.cpp:1963 +msgid "DFxx: Set sample playback direction (0: normal; 1: reverse)" +msgstr "" + +#: src/engine/sysDef.cpp:476 +msgid "18xx: Toggle drums mode (1: enabled; 0: disabled)" +msgstr "" + +#: src/engine/sysDef.cpp:480 src/engine/sysDef.cpp:554 +#: src/engine/sysDef.cpp:575 +msgid "11xx: Set feedback (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:481 +msgid "12xx: Set level of operator 1 (0 highest, 7F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:482 +msgid "13xx: Set level of operator 2 (0 highest, 7F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:483 +msgid "14xx: Set level of operator 3 (0 highest, 7F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:484 +msgid "15xx: Set level of operator 4 (0 highest, 7F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:485 src/engine/sysDef.cpp:580 +#: src/engine/sysDef.cpp:635 +msgid "16xy: Set operator multiplier (x: operator from 1 to 4; y: multiplier)" +msgstr "" + +#: src/engine/sysDef.cpp:486 +msgid "19xx: Set attack of all operators (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:487 +msgid "1Axx: Set attack of operator 1 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:488 +msgid "1Bxx: Set attack of operator 2 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:489 +msgid "1Cxx: Set attack of operator 3 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:490 +msgid "1Dxx: Set attack of operator 4 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:491 src/engine/sysDef.cpp:588 +#: src/engine/sysDef.cpp:656 +msgid "50xy: Set AM (x: operator from 1 to 4 (0 for all ops); y: AM)" +msgstr "" + +#: src/engine/sysDef.cpp:492 src/engine/sysDef.cpp:589 +#: src/engine/sysDef.cpp:657 +msgid "" +"51xy: Set sustain level (x: operator from 1 to 4 (0 for all ops); y: sustain)" +msgstr "" + +#: src/engine/sysDef.cpp:493 src/engine/sysDef.cpp:590 +#: src/engine/sysDef.cpp:658 +msgid "52xy: Set release (x: operator from 1 to 4 (0 for all ops); y: release)" +msgstr "" + +#: src/engine/sysDef.cpp:494 +msgid "" +"53xy: Set detune (x: operator from 1 to 4 (0 for all ops); y: detune where 3 " +"is center)" +msgstr "" + +#: src/engine/sysDef.cpp:495 src/engine/sysDef.cpp:592 +#: src/engine/sysDef.cpp:660 +msgid "" +"54xy: Set envelope scale (x: operator from 1 to 4 (0 for all ops); y: scale " +"from 0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:496 +msgid "56xx: Set decay of all operators (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:497 +msgid "57xx: Set decay of operator 1 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:498 +msgid "58xx: Set decay of operator 2 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:499 +msgid "59xx: Set decay of operator 3 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:500 +msgid "5Axx: Set decay of operator 4 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:501 +msgid "5Bxx: Set decay 2 of all operators (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:502 +msgid "5Cxx: Set decay 2 of operator 1 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:503 +msgid "5Dxx: Set decay 2 of operator 2 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:504 +msgid "5Exx: Set decay 2 of operator 3 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:505 +msgid "5Fxx: Set decay 2 of operator 4 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:510 +msgid "10xx: Set noise frequency (xx: value; 0 disables noise)" +msgstr "" + +#: src/engine/sysDef.cpp:511 +msgid "17xx: Set LFO speed" +msgstr "" + +#: src/engine/sysDef.cpp:512 +msgid "18xx: Set LFO waveform (0 saw, 1 square, 2 triangle, 3 noise)" +msgstr "" + +#: src/engine/sysDef.cpp:513 +msgid "1Exx: Set AM depth (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:514 +msgid "1Fxx: Set PM depth (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:515 +msgid "" +"55xy: Set detune 2 (x: operator from 1 to 4 (0 for all ops); y: detune from " +"0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:520 +msgid "24xx: Set LFO 2 speed" +msgstr "" + +#: src/engine/sysDef.cpp:521 +msgid "25xx: Set LFO 2 waveform (0 saw, 1 square, 2 triangle, 3 noise)" +msgstr "" + +#: src/engine/sysDef.cpp:522 +msgid "26xx: Set AM 2 depth (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:523 +msgid "27xx: Set PM 2 depth (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:524 +msgid "" +"28xy: Set reverb (x: operator from 1 to 4 (0 for all ops); y: reverb from 0 " +"to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:525 src/engine/sysDef.cpp:650 +msgid "" +"2Axy: Set waveform (x: operator from 1 to 4 (0 for all ops); y: waveform " +"from 0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:526 +msgid "" +"2Bxy: Set envelope generator shift (x: operator from 1 to 4 (0 for all ops); " +"y: shift from 0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:527 +msgid "" +"2Cxy: Set fine multiplier (x: operator from 1 to 4 (0 for all ops); y: fine)" +msgstr "" + +#: src/engine/sysDef.cpp:530 +msgid "" +"3xyy: Set fixed frequency of operator 1 (x: octave from 0 to 7; y: frequency)" +msgstr "" + +#: src/engine/sysDef.cpp:531 +msgid "" +"3xyy: Set fixed frequency of operator 2 (x: octave from 8 to F; y: frequency)" +msgstr "" + +#: src/engine/sysDef.cpp:532 +msgid "" +"4xyy: Set fixed frequency of operator 3 (x: octave from 0 to 7; y: frequency)" +msgstr "" + +#: src/engine/sysDef.cpp:533 +msgid "" +"4xyy: Set fixed frequency of operator 4 (x: octave from 8 to F; y: frequency)" +msgstr "" + +#: src/engine/sysDef.cpp:540 +msgid "10xy: Setup LFO (x: enable; y: speed)" +msgstr "" + +#: src/engine/sysDef.cpp:541 +msgid "" +"55xy: Set SSG envelope (x: operator from 1 to 4 (0 for all ops); y: 0-7 on, " +"8 off)" +msgstr "" + +#: src/engine/sysDef.cpp:549 +msgid "1Fxx: Set ADPCM-A global volume (0 to 3F)" +msgstr "" + +#: src/engine/sysDef.cpp:553 +msgid "10xx: Set patch (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:555 src/engine/sysDef.cpp:576 +#: src/engine/sysDef.cpp:631 +msgid "12xx: Set level of operator 1 (0 highest, 3F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:556 src/engine/sysDef.cpp:577 +#: src/engine/sysDef.cpp:632 +msgid "13xx: Set level of operator 2 (0 highest, 3F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:557 +msgid "16xy: Set operator multiplier (x: operator from 1 to 2; y: multiplier)" +msgstr "" + +#: src/engine/sysDef.cpp:558 src/engine/sysDef.cpp:582 +#: src/engine/sysDef.cpp:637 +msgid "19xx: Set attack of all operators (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:559 src/engine/sysDef.cpp:583 +#: src/engine/sysDef.cpp:638 +msgid "1Axx: Set attack of operator 1 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:560 src/engine/sysDef.cpp:584 +#: src/engine/sysDef.cpp:639 +msgid "1Bxx: Set attack of operator 2 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:561 +msgid "50xy: Set AM (x: operator from 1 to 2 (0 for all ops); y: AM)" +msgstr "" + +#: src/engine/sysDef.cpp:562 +msgid "" +"51xy: Set sustain level (x: operator from 1 to 2 (0 for all ops); y: sustain)" +msgstr "" + +#: src/engine/sysDef.cpp:563 +msgid "52xy: Set release (x: operator from 1 to 2 (0 for all ops); y: release)" +msgstr "" + +#: src/engine/sysDef.cpp:564 +msgid "53xy: Set vibrato (x: operator from 1 to 2 (0 for all ops); y: enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:565 +msgid "" +"54xy: Set envelope scale (x: operator from 1 to 2 (0 for all ops); y: scale " +"from 0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:566 +msgid "" +"55xy: Set envelope sustain (x: operator from 1 to 2 (0 for all ops); y: " +"enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:567 src/engine/sysDef.cpp:594 +#: src/engine/sysDef.cpp:662 +msgid "56xx: Set decay of all operators (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:568 src/engine/sysDef.cpp:595 +#: src/engine/sysDef.cpp:663 +msgid "57xx: Set decay of operator 1 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:569 src/engine/sysDef.cpp:596 +#: src/engine/sysDef.cpp:664 +msgid "58xx: Set decay of operator 2 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:570 +msgid "" +"5Bxy: Set whether key will scale envelope (x: operator from 1 to 2 (0 for " +"all ops); y: enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:574 +msgid "10xx: Set global AM depth (0: 1dB, 1: 4.8dB)" +msgstr "" + +#: src/engine/sysDef.cpp:578 src/engine/sysDef.cpp:633 +msgid "14xx: Set level of operator 3 (0 highest, 3F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:579 src/engine/sysDef.cpp:634 +msgid "15xx: Set level of operator 4 (0 highest, 3F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:581 +msgid "17xx: Set global vibrato depth (0: normal, 1: double)" +msgstr "" + +#: src/engine/sysDef.cpp:585 src/engine/sysDef.cpp:640 +msgid "1Cxx: Set attack of operator 3 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:586 src/engine/sysDef.cpp:641 +msgid "1Dxx: Set attack of operator 4 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:587 +msgid "" +"2Axy: Set waveform (x: operator from 1 to 4 (0 for all ops); y: waveform " +"from 0 to 3 in OPL2 and 0 to 7 in OPL3)" +msgstr "" + +#: src/engine/sysDef.cpp:591 src/engine/sysDef.cpp:659 +msgid "53xy: Set vibrato (x: operator from 1 to 4 (0 for all ops); y: enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:593 src/engine/sysDef.cpp:661 +msgid "" +"55xy: Set envelope sustain (x: operator from 1 to 4 (0 for all ops); y: " +"enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:597 src/engine/sysDef.cpp:665 +msgid "59xx: Set decay of operator 3 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:598 src/engine/sysDef.cpp:666 +msgid "5Axx: Set decay of operator 4 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:599 src/engine/sysDef.cpp:667 +msgid "" +"5Bxy: Set whether key will scale envelope (x: operator from 1 to 4 (0 for " +"all ops); y: enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:603 src/engine/sysDef.cpp:680 +msgid "" +"10xx: Set waveform (bit 0: triangle; bit 1: saw; bit 2: pulse; bit 3: noise)" +msgstr "" + +#: src/engine/sysDef.cpp:604 +msgid "11xx: Set coarse cutoff (not recommended; use 4xxx instead)" +msgstr "" + +#: src/engine/sysDef.cpp:605 +msgid "12xx: Set coarse pulse width (not recommended; use 3xxx instead)" +msgstr "" + +#: src/engine/sysDef.cpp:606 +msgid "13xx: Set resonance (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:607 +msgid "" +"14xx: Set filter mode (bit 0: low pass; bit 1: band pass; bit 2: high pass)" +msgstr "" + +#: src/engine/sysDef.cpp:608 +msgid "15xx: Set envelope reset time" +msgstr "" + +#: src/engine/sysDef.cpp:609 +msgid "1Axx: Disable envelope reset for this channel (1 disables; 0 enables)" +msgstr "" + +#: src/engine/sysDef.cpp:610 +msgid "1Bxy: Reset cutoff (x: on new note; y: now)" +msgstr "" + +#: src/engine/sysDef.cpp:611 +msgid "1Cxy: Reset pulse width (x: on new note; y: now)" +msgstr "" + +#: src/engine/sysDef.cpp:612 +msgid "1Exy: Change other parameters (LEGACY)" +msgstr "" + +#: src/engine/sysDef.cpp:613 +msgid "20xy: Set attack/decay (x: attack; y: decay)" +msgstr "" + +#: src/engine/sysDef.cpp:614 +msgid "21xy: Set sustain/release (x: sustain; y: release)" +msgstr "" + +#: src/engine/sysDef.cpp:616 src/engine/sysDef.cpp:688 +msgid "3xxx: Set pulse width (0 to FFF)" +msgstr "" + +#: src/engine/sysDef.cpp:617 +msgid "4xxx: Set cutoff (0 to 7FF)" +msgstr "" + +#: src/engine/sysDef.cpp:622 src/engine/sysDef.cpp:745 +#: src/engine/sysDef.cpp:762 src/engine/sysDef.cpp:1000 +#: src/engine/sysDef.cpp:1050 src/engine/sysDef.cpp:1268 +#: src/engine/sysDef.cpp:1320 src/engine/sysDef.cpp:1590 +#: src/engine/sysDef.cpp:1788 src/engine/sysDef.cpp:1792 +#: src/engine/sysDef.cpp:1893 src/engine/sysDef.cpp:2063 +#: src/engine/sysDef.cpp:2077 +msgid "10xx: Set waveform" +msgstr "" + +#: src/engine/sysDef.cpp:626 +msgid "20xx: Set PCM frequency" +msgstr "" + +#: src/engine/sysDef.cpp:630 +msgid "" +"10xy: Set AM depth (x: operator from 1 to 4 (0 for all ops); y: depth (0: " +"1dB, 1: 4.8dB))" +msgstr "" + +#: src/engine/sysDef.cpp:636 +msgid "" +"17xy: Set vibrato depth (x: operator from 1 to 4 (0 for all ops); y: depth " +"(0: normal, 1: double))" +msgstr "" + +#: src/engine/sysDef.cpp:642 +msgid "20xy: Set panning of operator 1 (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:643 +msgid "21xy: Set panning of operator 2 (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:644 +msgid "22xy: Set panning of operator 3 (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:645 +msgid "23xy: Set panning of operator 4 (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:646 +msgid "" +"24xy: Set output level register (x: operator from 1 to 4 (0 for all ops); y: " +"level from 0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:647 +msgid "" +"25xy: Set modulation input level (x: operator from 1 to 4 (0 for all ops); " +"y: level from 0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:648 +msgid "" +"26xy: Set envelope delay (x: operator from 1 to 4 (0 for all ops); y: delay " +"from 0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:649 +msgid "27xx: Set noise mode for operator 4 (x: mode from 0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:651 +msgid "" +"2Fxy: Set fixed frequency block (x: operator from 1 to 4; y: octave from 0 " +"to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:652 +msgid "40xx: Set detune of operator 1 (80: center)" +msgstr "" + +#: src/engine/sysDef.cpp:653 +msgid "41xx: Set detune of operator 2 (80: center)" +msgstr "" + +#: src/engine/sysDef.cpp:654 +msgid "42xx: Set detune of operator 3 (80: center)" +msgstr "" + +#: src/engine/sysDef.cpp:655 +msgid "43xx: Set detune of operator 4 (80: center)" +msgstr "" + +#: src/engine/sysDef.cpp:670 +msgid "" +"3xyy: Set fixed frequency F-num of operator 1 (x: high 2 bits from 0 to 3; " +"y: low 8 bits of F-num)" +msgstr "" + +#: src/engine/sysDef.cpp:671 +msgid "" +"3xyy: Set fixed frequency F-num of operator 2 (x: high 2 bits from 4 to 7; " +"y: low 8 bits of F-num)" +msgstr "" + +#: src/engine/sysDef.cpp:672 +msgid "" +"3xyy: Set fixed frequency F-num of operator 3 (x: high 2 bits from 8 to B; " +"y: low 8 bits of F-num)" +msgstr "" + +#: src/engine/sysDef.cpp:673 +msgid "" +"3xyy: Set fixed frequency F-num of operator 4 (x: high 2 bits from C to F; " +"y: low 8 bits of F-num)" +msgstr "" + +#: src/engine/sysDef.cpp:681 +msgid "11xx: Set resonance (0 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:682 +msgid "" +"12xx: Set filter mode (bit 0: low pass; bit 1: band pass; bit 2: high pass)" +msgstr "" + +#: src/engine/sysDef.cpp:683 +msgid "13xx: Disable envelope reset for this channel (1 disables; 0 enables)" +msgstr "" + +#: src/engine/sysDef.cpp:684 +msgid "14xy: Reset cutoff (x: on new note; y: now)" +msgstr "" + +#: src/engine/sysDef.cpp:685 +msgid "15xy: Reset pulse width (x: on new note; y: now)" +msgstr "" + +#: src/engine/sysDef.cpp:686 +msgid "16xy: Change other parameters" +msgstr "" + +#: src/engine/sysDef.cpp:689 src/engine/sysDef.cpp:1733 +msgid "4xxx: Set cutoff (0 to FFF)" +msgstr "" + +#: src/engine/sysDef.cpp:697 +msgid "Yamaha YMU759 (MA-2)" +msgstr "" + +#: src/engine/sysDef.cpp:698 +msgid "" +"a chip which found its way inside mobile phones in the 2000's.\n" +"as proprietary as it is, it passed away after losing to MP3 in the mobile " +"hardware battle." +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:807 src/engine/sysDef.cpp:819 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:915 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1237 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1314 src/engine/sysDef.cpp:1356 +#: src/engine/sysDef.cpp:1396 src/engine/sysDef.cpp:1499 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1572 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1608 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1799 src/engine/sysDef.cpp:1810 +#: src/engine/sysDef.cpp:1821 src/engine/sysDef.cpp:1832 +#: src/engine/sysDef.cpp:1900 src/engine/sysDef.cpp:1910 +#: src/engine/sysDef.cpp:1920 src/engine/sysDef.cpp:1944 +#: src/engine/sysDef.cpp:1957 src/engine/sysDef.cpp:1970 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2037 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2122 +#: src/engine/sysDef.cpp:2138 src/engine/sysDef.cpp:2150 +msgid "Channel 1" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:807 src/engine/sysDef.cpp:819 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:915 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1237 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1314 src/engine/sysDef.cpp:1356 +#: src/engine/sysDef.cpp:1396 src/engine/sysDef.cpp:1499 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1572 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1608 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1799 src/engine/sysDef.cpp:1810 +#: src/engine/sysDef.cpp:1821 src/engine/sysDef.cpp:1832 +#: src/engine/sysDef.cpp:1900 src/engine/sysDef.cpp:1910 +#: src/engine/sysDef.cpp:1920 src/engine/sysDef.cpp:1944 +#: src/engine/sysDef.cpp:1957 src/engine/sysDef.cpp:1970 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2037 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2122 +#: src/engine/sysDef.cpp:2138 src/engine/sysDef.cpp:2150 +msgid "Channel 2" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:807 src/engine/sysDef.cpp:819 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1237 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1314 +#: src/engine/sysDef.cpp:1356 src/engine/sysDef.cpp:1396 +#: src/engine/sysDef.cpp:1499 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1572 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1799 src/engine/sysDef.cpp:1810 +#: src/engine/sysDef.cpp:1821 src/engine/sysDef.cpp:1832 +#: src/engine/sysDef.cpp:1910 src/engine/sysDef.cpp:1944 +#: src/engine/sysDef.cpp:1957 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2037 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +#: src/engine/sysDef.cpp:2122 src/engine/sysDef.cpp:2138 +#: src/engine/sysDef.cpp:2150 +msgid "Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1237 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1314 +#: src/engine/sysDef.cpp:1356 src/engine/sysDef.cpp:1396 +#: src/engine/sysDef.cpp:1499 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1572 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1910 +#: src/engine/sysDef.cpp:1944 src/engine/sysDef.cpp:1957 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +#: src/engine/sysDef.cpp:2122 src/engine/sysDef.cpp:2150 +msgid "Channel 4" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1314 +#: src/engine/sysDef.cpp:1356 src/engine/sysDef.cpp:1396 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1572 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1705 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 5" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1356 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 6" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 7" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 8" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 9" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 10" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 11" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 12" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 13" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 14" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 15" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 16" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:700 +#: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1767 src/engine/sysDef.cpp:1888 +#: src/engine/sysDef.cpp:1944 src/engine/sysDef.cpp:1945 +#: src/gui/settings.cpp:4094 +msgid "PCM" +msgstr "" + +#: src/engine/sysDef.cpp:706 +msgid "Sega Genesis/Mega Drive" +msgstr "" + +#: src/engine/sysDef.cpp:712 +msgid "Sega Genesis Extended Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:718 src/gui/sysConf.cpp:158 +msgid "TI SN76489" +msgstr "" + +#: src/engine/sysDef.cpp:719 +msgid "" +"a square/noise sound chip found on the Sega Master System, ColecoVision, " +"Tandy, TI's own 99/4A and a few other places." +msgstr "" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 +msgid "Square 1" +msgstr "" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 +msgid "Square 2" +msgstr "" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 +msgid "Square 3" +msgstr "" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:739 +#: src/engine/sysDef.cpp:773 src/engine/sysDef.cpp:955 +#: src/engine/sysDef.cpp:1314 src/engine/sysDef.cpp:1874 +#: src/engine/sysDef.cpp:1920 src/engine/sysDef.cpp:2037 +#: src/engine/sysDef.cpp:2100 src/gui/settings.cpp:4093 +#: src/gui/insEdit.cpp:6978 src/gui/insEdit.cpp:7129 src/gui/insEdit.cpp:7223 +#: src/gui/insEdit.cpp:7315 +msgid "Noise" +msgstr "" + +#: src/engine/sysDef.cpp:726 +msgid "20xy: Set noise mode (x: preset freq/ch3 freq; y: thin pulse/noise)" +msgstr "" + +#: src/engine/sysDef.cpp:731 +msgid "Sega Master System + FM Expansion" +msgstr "" + +#: src/engine/sysDef.cpp:737 src/gui/settings.cpp:4025 +msgid "Game Boy" +msgstr "" + +#: src/engine/sysDef.cpp:738 +msgid "the most popular portable game console of the era." +msgstr "" + +#: src/engine/sysDef.cpp:739 src/engine/sysDef.cpp:773 +#: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:2100 +msgid "Pulse 1" +msgstr "" + +#: src/engine/sysDef.cpp:739 src/engine/sysDef.cpp:773 +#: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:2100 +msgid "Pulse 2" +msgstr "" + +#: src/engine/sysDef.cpp:739 src/gui/settings.cpp:3930 +#: src/gui/guiConst.cpp:1395 src/gui/insEdit.cpp:6652 +msgid "Wavetable" +msgstr "" + +#: src/engine/sysDef.cpp:746 +msgid "11xx: Set noise length (0: long; 1: short)" +msgstr "" + +#: src/engine/sysDef.cpp:747 +msgid "12xx: Set duty cycle (0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:748 +msgid "13xy: Setup sweep (x: time; y: shift)" +msgstr "" + +#: src/engine/sysDef.cpp:749 +msgid "14xx: Set sweep direction (0: up; 1: down)" +msgstr "" + +#: src/engine/sysDef.cpp:754 +msgid "PC Engine/TurboGrafx-16" +msgstr "" + +#: src/engine/sysDef.cpp:755 +msgid "an '80s game console with a wavetable sound chip, popular in Japan." +msgstr "" + +#: src/engine/sysDef.cpp:763 src/engine/sysDef.cpp:1001 +#: src/engine/sysDef.cpp:1793 +msgid "11xx: Toggle noise mode" +msgstr "" + +#: src/engine/sysDef.cpp:764 +msgid "12xx: Setup LFO (0: disabled; 1: 1x depth; 2: 16x depth; 3: 256x depth)" +msgstr "" + +#: src/engine/sysDef.cpp:765 +msgid "13xx: Set LFO speed" +msgstr "" + +#: src/engine/sysDef.cpp:771 +msgid "NES (Ricoh 2A03)" +msgstr "" + +#: src/engine/sysDef.cpp:772 +msgid "" +"also known as Famicom in Japan, it's the most well-known game console of the " +"'80s." +msgstr "" + +#: src/engine/sysDef.cpp:773 src/gui/waveEdit.cpp:31 src/gui/waveEdit.cpp:217 +#: src/gui/insEdit.cpp:200 src/gui/insEdit.cpp:324 src/gui/insEdit.cpp:658 +msgid "Triangle" +msgstr "" + +#: src/engine/sysDef.cpp:773 src/engine/sysDef.cpp:2100 +#: src/gui/insEdit.cpp:2629 +msgid "DPCM" +msgstr "" + +#: src/engine/sysDef.cpp:779 src/engine/sysDef.cpp:2106 +msgid "11xx: Write to delta modulation counter (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:780 src/engine/sysDef.cpp:1068 +msgid "12xx: Set duty cycle/noise mode (pulse: 0 to 3; noise: 0 or 1)" +msgstr "" + +#: src/engine/sysDef.cpp:781 src/engine/sysDef.cpp:2108 +msgid "13xy: Sweep up (x: time; y: shift)" +msgstr "" + +#: src/engine/sysDef.cpp:782 src/engine/sysDef.cpp:2109 +msgid "14xy: Sweep down (x: time; y: shift)" +msgstr "" + +#: src/engine/sysDef.cpp:783 src/engine/sysDef.cpp:2110 +msgid "" +"15xx: Set envelope mode (0: envelope, 1: length, 2: looping, 3: constant)" +msgstr "" + +#: src/engine/sysDef.cpp:784 src/engine/sysDef.cpp:2111 +msgid "16xx: Set length counter (refer to manual for a list of values)" +msgstr "" + +#: src/engine/sysDef.cpp:785 src/engine/sysDef.cpp:2112 +msgid "17xx: Set frame counter mode (0: 4-step, 1: 5-step)" +msgstr "" + +#: src/engine/sysDef.cpp:786 src/engine/sysDef.cpp:2113 +msgid "18xx: Select PCM/DPCM mode (0: PCM; 1: DPCM)" +msgstr "" + +#: src/engine/sysDef.cpp:787 src/engine/sysDef.cpp:2114 +msgid "19xx: Set triangle linear counter (0 to 7F; 80 and higher halt)" +msgstr "" + +#: src/engine/sysDef.cpp:788 src/engine/sysDef.cpp:2115 +msgid "20xx: Set DPCM frequency (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:793 +msgid "NES + Konami VRC7" +msgstr "" + +#: src/engine/sysDef.cpp:799 +msgid "Famicom Disk System" +msgstr "" + +#: src/engine/sysDef.cpp:805 +msgid "Commodore 64 (SID 6581)" +msgstr "" + +#: src/engine/sysDef.cpp:806 +msgid "" +"this computer is powered by the SID chip, which had synthesizer features " +"like a filter and ADSR." +msgstr "" + +#: src/engine/sysDef.cpp:817 +msgid "Commodore 64 (SID 8580)" +msgstr "" + +#: src/engine/sysDef.cpp:818 +msgid "" +"this computer is powered by the SID chip, which had synthesizer features " +"like a filter and ADSR.\n" +"this is the newer revision of the chip." +msgstr "" + +#: src/engine/sysDef.cpp:829 +msgid "DefleCade" +msgstr "" + +#: src/engine/sysDef.cpp:835 +msgid "Neo Geo CD" +msgstr "" + +#: src/engine/sysDef.cpp:836 +msgid "" +"like Neo Geo, but lacking the ADPCM-B channel since they couldn't connect " +"the pins." +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1173 +#: src/engine/sysDef.cpp:1185 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1443 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +#: src/engine/sysDef.cpp:2006 +msgid "FM 1" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:891 +#: src/engine/sysDef.cpp:903 src/engine/sysDef.cpp:1032 +#: src/engine/sysDef.cpp:1097 src/engine/sysDef.cpp:1109 +#: src/engine/sysDef.cpp:1122 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1546 +#: src/engine/sysDef.cpp:1559 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:1693 src/engine/sysDef.cpp:1849 +#: src/engine/sysDef.cpp:1861 src/engine/sysDef.cpp:2006 +msgid "FM 2" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1173 +#: src/engine/sysDef.cpp:1185 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1443 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:2006 +msgid "FM 3" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1546 +#: src/engine/sysDef.cpp:1559 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:1693 src/engine/sysDef.cpp:1849 +#: src/engine/sysDef.cpp:1861 src/engine/sysDef.cpp:2006 +msgid "FM 4" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:862 src/engine/sysDef.cpp:927 +#: src/engine/sysDef.cpp:943 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "PSG 1" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:862 src/engine/sysDef.cpp:927 +#: src/engine/sysDef.cpp:943 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "PSG 2" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:862 src/engine/sysDef.cpp:927 +#: src/engine/sysDef.cpp:943 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "PSG 3" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 1" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 2" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 3" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 4" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 5" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 6" +msgstr "" + +#: src/engine/sysDef.cpp:847 +msgid "Neo Geo CD Extended Channel 2" +msgstr "" + +#: src/engine/sysDef.cpp:848 +msgid "" +"like Neo Geo, but lacking the ADPCM-B channel since they couldn't connect " +"the pins.\n" +"this one is in Extended Channel mode, which turns the second FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP1" +msgstr "" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP2" +msgstr "" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP3" +msgstr "" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP4" +msgstr "" + +#: src/engine/sysDef.cpp:860 src/gui/sysConf.cpp:913 +msgid "AY-3-8910" +msgstr "" + +#: src/engine/sysDef.cpp:861 +msgid "" +"this chip is everywhere! ZX Spectrum, MSX, Amstrad CPC, Intellivision, " +"Vectrex...\n" +"the discovery of envelope bass helped it beat the SN76489 with ease." +msgstr "" + +#: src/engine/sysDef.cpp:872 +msgid "Amiga" +msgstr "" + +#: src/engine/sysDef.cpp:873 +msgid "" +"a computer from the '80s with full sampling capabilities, giving it a sound " +"ahead of its time." +msgstr "" + +#: src/engine/sysDef.cpp:881 +msgid "10xx: Toggle filter (0 disables; 1 enables)" +msgstr "" + +#: src/engine/sysDef.cpp:882 +msgid "11xx: Toggle AM with next channel" +msgstr "" + +#: src/engine/sysDef.cpp:883 +msgid "12xx: Toggle period modulation with next channel" +msgstr "" + +#: src/engine/sysDef.cpp:884 +msgid "13xx: Set waveform" +msgstr "" + +#: src/engine/sysDef.cpp:889 +msgid "Yamaha YM2151 (OPM)" +msgstr "" + +#: src/engine/sysDef.cpp:890 +msgid "" +"this was Yamaha's first integrated FM chip.\n" +"it was used in several synthesizers, computers and arcade boards." +msgstr "" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1279 src/engine/sysDef.cpp:1332 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1370 +#: src/engine/sysDef.cpp:1383 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +#: src/engine/sysDef.cpp:2006 +msgid "FM 5" +msgstr "" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:2006 +msgid "FM 6" +msgstr "" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:1032 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1279 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:2006 +msgid "FM 7" +msgstr "" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:1032 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:2006 +msgid "FM 8" +msgstr "" + +#: src/engine/sysDef.cpp:901 +msgid "Yamaha YM2612 (OPN2)" +msgstr "" + +#: src/engine/sysDef.cpp:902 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer)." +msgstr "" + +#: src/engine/sysDef.cpp:913 +msgid "Atari TIA" +msgstr "" + +#: src/engine/sysDef.cpp:914 +msgid "" +"it's a challenge to make music on this chip which barely has musical " +"capabilities..." +msgstr "" + +#: src/engine/sysDef.cpp:925 +msgid "Philips SAA1099" +msgstr "" + +#: src/engine/sysDef.cpp:926 +msgid "" +"supposedly an upgrade from the AY-3-8910, this was present on the Creative " +"Music System (Game Blaster) and SAM Coupé." +msgstr "" + +#: src/engine/sysDef.cpp:927 +msgid "PSG 4" +msgstr "" + +#: src/engine/sysDef.cpp:927 +msgid "PSG 5" +msgstr "" + +#: src/engine/sysDef.cpp:927 +msgid "PSG 6" +msgstr "" + +#: src/engine/sysDef.cpp:934 +msgid "10xy: Set channel mode (x: noise; y: tone)" +msgstr "" + +#: src/engine/sysDef.cpp:935 +msgid "11xx: Set noise frequency" +msgstr "" + +#: src/engine/sysDef.cpp:936 +msgid "12xx: Setup envelope (refer to docs for more information)" +msgstr "" + +#: src/engine/sysDef.cpp:941 +msgid "Microchip AY8930" +msgstr "" + +#: src/engine/sysDef.cpp:942 +msgid "" +"an improved version of the AY-3-8910 with a bigger frequency range, duty " +"cycles, configurable noise and per-channel envelopes!" +msgstr "" + +#: src/engine/sysDef.cpp:953 +msgid "Commodore VIC-20" +msgstr "" + +#: src/engine/sysDef.cpp:954 +msgid "" +"Commodore's successor to the PET.\n" +"its square wave channels are more than just square..." +msgstr "" + +#: src/engine/sysDef.cpp:955 src/gui/settings.cpp:136 src/gui/settings.cpp:206 +#: src/gui/settings.cpp:3970 +msgid "Low" +msgstr "" + +#: src/engine/sysDef.cpp:955 +msgid "Mid" +msgstr "" + +#: src/engine/sysDef.cpp:955 src/gui/settings.cpp:135 src/gui/settings.cpp:208 +#: src/gui/settings.cpp:3971 +msgid "High" +msgstr "" + +#: src/engine/sysDef.cpp:964 +msgid "Commodore PET" +msgstr "" + +#: src/engine/sysDef.cpp:965 +msgid "" +"one channel of 1-bit wavetable which is better (and worse) than the PC " +"Speaker." +msgstr "" + +#: src/engine/sysDef.cpp:966 src/engine/sysDef.cpp:1262 +#: src/engine/sysDef.cpp:2100 src/gui/editControls.cpp:433 +#: src/gui/settings.cpp:4017 src/gui/settings.cpp:4095 +msgid "Wave" +msgstr "" + +#: src/engine/sysDef.cpp:975 src/gui/settings.cpp:4052 +msgid "SNES" +msgstr "" + +#: src/engine/sysDef.cpp:976 +msgid "FM? nah... samples! Nintendo's answer to Sega." +msgstr "" + +#: src/engine/sysDef.cpp:983 +msgid "18xx: Enable echo buffer" +msgstr "" + +#: src/engine/sysDef.cpp:984 +msgid "19xx: Set echo delay (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:985 +msgid "1Axx: Set left echo volume" +msgstr "" + +#: src/engine/sysDef.cpp:986 +msgid "1Bxx: Set right echo volume" +msgstr "" + +#: src/engine/sysDef.cpp:987 +msgid "1Cxx: Set echo feedback" +msgstr "" + +#: src/engine/sysDef.cpp:988 +msgid "1Exx: Set dry output volume (left)" +msgstr "" + +#: src/engine/sysDef.cpp:989 +msgid "1Fxx: Set dry output volume (right)" +msgstr "" + +#: src/engine/sysDef.cpp:990 +msgid "30xx: Set echo filter coefficient 0" +msgstr "" + +#: src/engine/sysDef.cpp:991 +msgid "31xx: Set echo filter coefficient 1" +msgstr "" + +#: src/engine/sysDef.cpp:992 +msgid "32xx: Set echo filter coefficient 2" +msgstr "" + +#: src/engine/sysDef.cpp:993 +msgid "33xx: Set echo filter coefficient 3" +msgstr "" + +#: src/engine/sysDef.cpp:994 +msgid "34xx: Set echo filter coefficient 4" +msgstr "" + +#: src/engine/sysDef.cpp:995 +msgid "35xx: Set echo filter coefficient 5" +msgstr "" + +#: src/engine/sysDef.cpp:996 +msgid "36xx: Set echo filter coefficient 6" +msgstr "" + +#: src/engine/sysDef.cpp:997 +msgid "37xx: Set echo filter coefficient 7" +msgstr "" + +#: src/engine/sysDef.cpp:1002 +msgid "12xx: Toggle echo on this channel" +msgstr "" + +#: src/engine/sysDef.cpp:1003 +msgid "13xx: Toggle pitch modulation" +msgstr "" + +#: src/engine/sysDef.cpp:1004 +msgid "14xy: Toggle invert (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:1005 +msgid "" +"15xx: Set envelope mode (0: ADSR, 1: gain/direct, 2: dec, 3: exp, 4: inc, 5: " +"bent)" +msgstr "" + +#: src/engine/sysDef.cpp:1006 +msgid "16xx: Set gain (00 to 7F if direct; 00 to 1F otherwise)" +msgstr "" + +#: src/engine/sysDef.cpp:1007 +msgid "1Dxx: Set noise frequency (00 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:1008 +msgid "20xx: Set attack (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:1009 +msgid "21xx: Set decay (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1010 +msgid "22xx: Set sustain (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1011 +msgid "23xx: Set release (00 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:1016 +msgid "Konami VRC6" +msgstr "" + +#: src/engine/sysDef.cpp:1017 +msgid "an expansion chip for the Famicom, featuring a quirky sawtooth channel." +msgstr "" + +#: src/engine/sysDef.cpp:1018 +msgid "VRC6 1" +msgstr "" + +#: src/engine/sysDef.cpp:1018 +msgid "VRC6 2" +msgstr "" + +#: src/engine/sysDef.cpp:1018 +msgid "VRC6 Saw" +msgstr "" + +#: src/engine/sysDef.cpp:1024 src/engine/sysDef.cpp:2092 +msgid "12xx: Set duty cycle (pulse: 0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1030 +msgid "Yamaha YM2413 (OPLL)" +msgstr "" + +#: src/engine/sysDef.cpp:1031 +msgid "" +"cost-reduced version of the OPL with 16 patches and only one of them is user-" +"configurable." +msgstr "" + +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1173 +#: src/engine/sysDef.cpp:1185 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:2006 +msgid "FM 9" +msgstr "" + +#: src/engine/sysDef.cpp:1042 +msgid "Famicom Disk System (chip)" +msgstr "" + +#: src/engine/sysDef.cpp:1043 +msgid "a disk drive for the Famicom which also contains one wavetable channel." +msgstr "" + +#: src/engine/sysDef.cpp:1044 src/gui/settings.cpp:4039 +msgid "FDS" +msgstr "" + +#: src/engine/sysDef.cpp:1051 +msgid "11xx: Set modulation depth" +msgstr "" + +#: src/engine/sysDef.cpp:1052 +msgid "12xy: Set modulation speed high byte (x: enable; y: value)" +msgstr "" + +#: src/engine/sysDef.cpp:1053 +msgid "13xx: Set modulation speed low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1054 +msgid "14xx: Set modulator position" +msgstr "" + +#: src/engine/sysDef.cpp:1055 +msgid "15xx: Set modulator table to waveform" +msgstr "" + +#: src/engine/sysDef.cpp:1060 +msgid "MMC5" +msgstr "" + +#: src/engine/sysDef.cpp:1061 +msgid "" +"an expansion chip for the Famicom, featuring a little-known PCM channel." +msgstr "" + +#: src/engine/sysDef.cpp:1073 src/gui/settings.cpp:4041 +msgid "Namco 163" +msgstr "" + +#: src/engine/sysDef.cpp:1074 +msgid "an expansion chip for the Famicom, with full wavetable." +msgstr "" + +#: src/engine/sysDef.cpp:1081 +msgid "18xx: Change channel limits (0 to 7, x + 1)" +msgstr "" + +#: src/engine/sysDef.cpp:1082 +msgid "20xx: Load a waveform into memory" +msgstr "" + +#: src/engine/sysDef.cpp:1083 +msgid "21xx: Set position for wave load" +msgstr "" + +#: src/engine/sysDef.cpp:1086 +msgid "10xx: Select waveform" +msgstr "" + +#: src/engine/sysDef.cpp:1087 +msgid "11xx: Set waveform position in RAM" +msgstr "" + +#: src/engine/sysDef.cpp:1088 +msgid "12xx: Set waveform length in RAM (04 to FC in steps of 4)" +msgstr "" + +#: src/engine/sysDef.cpp:1089 +msgid "15xx: Set waveform load position" +msgstr "" + +#: src/engine/sysDef.cpp:1090 +msgid "16xx: Set waveform load length (04 to FC in steps of 4)" +msgstr "" + +#: src/engine/sysDef.cpp:1095 +msgid "Yamaha YM2203 (OPN)" +msgstr "" + +#: src/engine/sysDef.cpp:1096 +msgid "" +"cost-reduced version of the OPM with a different register layout and no " +"stereo...\n" +"...but it has a built-in AY-3-8910! (actually an YM2149)" +msgstr "" + +#: src/engine/sysDef.cpp:1107 +msgid "Yamaha YM2203 (OPN) Extended Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:1108 +msgid "" +"cost-reduced version of the OPM with a different register layout and no " +"stereo...\n" +"...but it has a built-in AY-3-8910! (actually an YM2149)\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies" +msgstr "" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP1" +msgstr "" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP2" +msgstr "" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP3" +msgstr "" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP4" +msgstr "" + +#: src/engine/sysDef.cpp:1120 +msgid "Yamaha YM2203 (OPN) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1121 +msgid "" +"cost-reduced version of the OPM with a different register layout and no " +"stereo...\n" +"...but it has a built-in AY-3-8910! (actually an YM2149)\n" +"CSM blah blah" +msgstr "" + +#: src/engine/sysDef.cpp:1122 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1383 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1559 src/engine/sysDef.cpp:1861 +msgid "CSM Timer" +msgstr "" + +#: src/engine/sysDef.cpp:1133 +msgid "Yamaha YM2608 (OPNA)" +msgstr "" + +#: src/engine/sysDef.cpp:1134 +msgid "" +"OPN but twice the FM channels, stereo makes a come-back and has rhythm and " +"ADPCM channels." +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1481 +#: src/gui/insEdit.cpp:3302 src/gui/insEdit.cpp:3624 +msgid "Kick" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:210 src/gui/insEdit.cpp:218 +msgid "Snare" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:212 src/gui/insEdit.cpp:220 +#: src/gui/insEdit.cpp:1909 src/gui/insEdit.cpp:2014 +msgid "Top" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:213 src/gui/insEdit.cpp:219 +msgid "HiHat" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:211 +msgid "Tom" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 +msgid "Rim" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:1693 +msgid "ADPCM" +msgstr "" + +#: src/engine/sysDef.cpp:1145 +msgid "Yamaha YM2608 (OPNA) Extended Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:1146 +msgid "" +"OPN but twice the FM channels, stereo makes a come-back and has rhythm and " +"ADPCM channels.\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies" +msgstr "" + +#: src/engine/sysDef.cpp:1158 +msgid "Yamaha YM2608 (OPNA) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1159 +msgid "" +"OPN but twice the FM channels, stereo makes a come-back and has rhythm and " +"ADPCM channels.\n" +"CSM blah blah" +msgstr "" + +#: src/engine/sysDef.cpp:1171 +msgid "Yamaha YM3526 (OPL)" +msgstr "" + +#: src/engine/sysDef.cpp:1172 +msgid "" +"OPN, but what if you only had two operators, no stereo, no detune and a " +"lower ADSR parameter range?" +msgstr "" + +#: src/engine/sysDef.cpp:1183 +msgid "Yamaha YM3812 (OPL2)" +msgstr "" + +#: src/engine/sysDef.cpp:1184 +msgid "OPL, but what if you had more waveforms to choose than the normal sine?" +msgstr "" + +#: src/engine/sysDef.cpp:1195 +msgid "Yamaha YMF262 (OPL3)" +msgstr "" + +#: src/engine/sysDef.cpp:1196 +msgid "" +"OPL2, but what if you had twice the channels, 4-op mode, stereo and even " +"more waveforms?" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 1" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 3" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 5" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 7" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 9" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 10" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 11" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 12" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 13" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 14" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 15" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:2006 +msgid "FM 16" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:2006 +msgid "FM 17" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:2006 +msgid "FM 18" +msgstr "" + +#: src/engine/sysDef.cpp:1208 src/gui/settings.cpp:4051 +msgid "MultiPCM" +msgstr "" + +#: src/engine/sysDef.cpp:1209 +msgid "" +"how many channels of PCM do you want?\n" +"MultiPCM: yes" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 17" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 18" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 19" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 20" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 21" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 22" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 23" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 24" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 25" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 26" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 27" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 28" +msgstr "" + +#: src/engine/sysDef.cpp:1217 +msgid "PC Speaker" +msgstr "" + +#: src/engine/sysDef.cpp:1218 +msgid "good luck! you get one square and no volume control." +msgstr "" + +#: src/engine/sysDef.cpp:1219 src/engine/sysDef.cpp:1228 +#: src/gui/guiConst.cpp:1394 src/gui/waveEdit.cpp:199 src/gui/insEdit.cpp:183 +#: src/gui/insEdit.cpp:194 src/gui/insEdit.cpp:326 src/gui/insEdit.cpp:656 +msgid "Square" +msgstr "" + +#: src/engine/sysDef.cpp:1226 +msgid "Pong" +msgstr "" + +#: src/engine/sysDef.cpp:1227 +msgid "please don't use this chip. it was added as a joke." +msgstr "" + +#: src/engine/sysDef.cpp:1235 src/gui/settings.cpp:4044 +msgid "POKEY" +msgstr "" + +#: src/engine/sysDef.cpp:1236 +msgid "" +"TIA, but better and more flexible.\n" +"used in the Atari 8-bit family of computers (400/800/XL/XE)." +msgstr "" + +#: src/engine/sysDef.cpp:1243 src/engine/sysDef.cpp:1714 +msgid "10xx: Set waveform (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1244 +msgid "11xx: Set AUDCTL" +msgstr "" + +#: src/engine/sysDef.cpp:1245 +msgid "12xx: Toggle two-tone mode" +msgstr "" + +#: src/engine/sysDef.cpp:1250 +msgid "Ricoh RF5C68" +msgstr "" + +#: src/engine/sysDef.cpp:1251 +msgid "" +"this is like SNES' sound chip but without interpolation and the rest of nice " +"bits." +msgstr "" + +#: src/engine/sysDef.cpp:1260 src/gui/settings.cpp:4046 +msgid "WonderSwan" +msgstr "" + +#: src/engine/sysDef.cpp:1261 +msgid "developed by the makers of the Game Boy and the Virtual Boy..." +msgstr "" + +#: src/engine/sysDef.cpp:1262 +msgid "Wave/PCM" +msgstr "" + +#: src/engine/sysDef.cpp:1262 +msgid "Wave/Sweep" +msgstr "" + +#: src/engine/sysDef.cpp:1262 +msgid "Wave/Noise" +msgstr "" + +#: src/engine/sysDef.cpp:1269 +msgid "11xx: Setup noise mode (0: disabled; 1-8: enabled/tap)" +msgstr "" + +#: src/engine/sysDef.cpp:1270 +msgid "12xx: Setup sweep period (0: disabled; 1-20: enabled/period)" +msgstr "" + +#: src/engine/sysDef.cpp:1271 +msgid "13xx: Set sweep amount" +msgstr "" + +#: src/engine/sysDef.cpp:1277 +msgid "Yamaha YM2414 (OPZ)" +msgstr "" + +#: src/engine/sysDef.cpp:1278 +msgid "" +"like OPM, but with more waveforms, fixed frequency mode and totally... " +"undocumented.\n" +"used in the Yamaha TX81Z and some other synthesizers." +msgstr "" + +#: src/engine/sysDef.cpp:1285 +msgid "2Fxx: Toggle hard envelope reset on new notes" +msgstr "" + +#: src/engine/sysDef.cpp:1291 src/gui/settings.cpp:4069 +msgid "Pokémon Mini" +msgstr "" + +#: src/engine/sysDef.cpp:1292 +msgid "this one is like PC Speaker but has duty cycles." +msgstr "" + +#: src/engine/sysDef.cpp:1293 src/gui/settings.cpp:4092 src/gui/waveEdit.cpp:33 +msgid "Pulse" +msgstr "" + +#: src/engine/sysDef.cpp:1300 +msgid "SegaPCM" +msgstr "" + +#: src/engine/sysDef.cpp:1301 +msgid "" +"used in some Sega arcade boards (like OutRun), and usually paired with a " +"YM2151." +msgstr "" + +#: src/engine/sysDef.cpp:1312 src/gui/settings.cpp:4040 +msgid "Virtual Boy" +msgstr "" + +#: src/engine/sysDef.cpp:1313 +msgid "" +"a console which failed to sell well due to its headache-inducing features." +msgstr "" + +#: src/engine/sysDef.cpp:1321 +msgid "11xx: Set noise length (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1322 +msgid "" +"12xy: Setup envelope (x: enabled/loop (1: enable, 3: enable+loop); y: speed/" +"direction (0-7: down, 8-F: up))" +msgstr "" + +#: src/engine/sysDef.cpp:1323 +msgid "13xy: Setup sweep (x: speed; y: shift; channel 5 only)" +msgstr "" + +#: src/engine/sysDef.cpp:1324 +msgid "" +"14xy: Setup modulation (x: enabled/loop (1: enable, 3: enable+loop); y: " +"speed; channel 5 only)" +msgstr "" + +#: src/engine/sysDef.cpp:1325 +msgid "15xx: Set modulation waveform (x: wavetable; channel 5 only)" +msgstr "" + +#: src/engine/sysDef.cpp:1330 +msgid "Konami VRC7" +msgstr "" + +#: src/engine/sysDef.cpp:1331 +msgid "" +"like OPLL, but even more cost reductions applied. three FM channels went " +"missing, and drums mode did as well..." +msgstr "" + +#: src/engine/sysDef.cpp:1342 +msgid "Yamaha YM2610B (OPNB2)" +msgstr "" + +#: src/engine/sysDef.cpp:1343 +msgid "" +"so Taito asked Yamaha if they could get the two missing FM channels back, " +"and Yamaha gladly provided them with this chip." +msgstr "" + +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/gui/settings.cpp:4061 +msgid "ADPCM-B" +msgstr "" + +#: src/engine/sysDef.cpp:1354 +msgid "ZX Spectrum Beeper" +msgstr "" + +#: src/engine/sysDef.cpp:1355 +msgid "" +"the ZX Spectrum only had a basic beeper capable of...\n" +"...a bunch of thin pulses and tons of other interesting stuff!\n" +"Furnace provides a thin pulse system." +msgstr "" + +#: src/engine/sysDef.cpp:1362 src/engine/sysDef.cpp:1950 +msgid "12xx: Set pulse width" +msgstr "" + +#: src/engine/sysDef.cpp:1363 +msgid "17xx: Trigger overlay drum" +msgstr "" + +#: src/engine/sysDef.cpp:1368 +msgid "Yamaha YM2612 (OPN2) Extended Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:1369 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:1381 +msgid "Yamaha YM2612 (OPN2) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1382 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this one includes CSM mode control for special effects on Channel 3." +msgstr "" + +#: src/engine/sysDef.cpp:1394 src/gui/settings.cpp:4042 +msgid "Konami SCC" +msgstr "" + +#: src/engine/sysDef.cpp:1395 +msgid "" +"a wavetable chip made by Konami for use with the MSX.\n" +"the last channel shares its wavetable with the previous one though." +msgstr "" + +#: src/engine/sysDef.cpp:1405 +msgid "Yamaha YM3526 (OPL) with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1406 +msgid "the OPL chip but with drums mode enabled." +msgstr "" + +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1693 +msgid "Kick/FM 7" +msgstr "" + +#: src/engine/sysDef.cpp:1417 +msgid "Yamaha YM3812 (OPL2) with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1418 +msgid "the OPL2 chip but with drums mode enabled." +msgstr "" + +#: src/engine/sysDef.cpp:1429 +msgid "Yamaha YMF262 (OPL3) with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1430 +msgid "the OPL3 chip but with drums mode enabled." +msgstr "" + +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1631 +msgid "Kick/FM 16" +msgstr "" + +#: src/engine/sysDef.cpp:1441 +msgid "Yamaha YM2610 (OPNB)" +msgstr "" + +#: src/engine/sysDef.cpp:1442 +msgid "" +"this chip was used in SNK's Neo Geo arcade board and video game console.\n" +"it's like OPNA but the rhythm channels are ADPCM channels and two FM " +"channels went missing." +msgstr "" + +#: src/engine/sysDef.cpp:1453 +msgid "Yamaha YM2610 (OPNB) Extended Channel 2" +msgstr "" + +#: src/engine/sysDef.cpp:1454 +msgid "" +"this chip was used in SNK's Neo Geo arcade board and video game console.\n" +"it's like OPNA but the rhythm channels are ADPCM channels and two FM " +"channels went missing.\n" +"this one is in Extended Channel mode, which turns the second FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:1466 +msgid "Yamaha YM2610 (OPNB) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1467 +msgid "" +"this chip was used in SNK's Neo Geo arcade board and video game console.\n" +"it's like OPNA but the rhythm channels are ADPCM channels and two FM " +"channels went missing.\n" +"this one includes CSM mode control for special effects on Channel 2." +msgstr "" + +#: src/engine/sysDef.cpp:1479 +msgid "Yamaha YM2413 (OPLL) with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1480 +msgid "the OPLL chips but with drums mode turned on." +msgstr "" + +#: src/engine/sysDef.cpp:1491 +msgid "3xxx: Load LFSR (0 to FFF)" +msgstr "" + +#: src/engine/sysDef.cpp:1497 +msgid "Atari Lynx" +msgstr "" + +#: src/engine/sysDef.cpp:1498 +msgid "" +"a portable console made by Atari. it has all of Atari's trademark waveforms." +msgstr "" + +#: src/engine/sysDef.cpp:1509 +msgid "10xx: Set echo feedback level (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1510 +msgid "11xx: Set channel echo level (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1511 +msgid "12xx: Toggle QSound algorithm (0: disabled; 1: enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:1513 +msgid "3xxx: Set echo delay buffer length (000 to AA5)" +msgstr "" + +#: src/engine/sysDef.cpp:1519 +msgid "Capcom QSound" +msgstr "" + +#: src/engine/sysDef.cpp:1520 +msgid "" +"used in some of Capcom's arcade boards. surround-like sampled sound with " +"echo." +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +#: src/engine/sysDef.cpp:2056 +msgid "PCM 1" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +#: src/engine/sysDef.cpp:2056 +msgid "PCM 2" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 3" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 4" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 5" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 6" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 7" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 8" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 9" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 10" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 11" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 12" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 13" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 14" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 15" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 16" +msgstr "" + +#: src/engine/sysDef.cpp:1521 +msgid "ADPCM 1" +msgstr "" + +#: src/engine/sysDef.cpp:1521 +msgid "ADPCM 2" +msgstr "" + +#: src/engine/sysDef.cpp:1521 +msgid "ADPCM 3" +msgstr "" + +#: src/engine/sysDef.cpp:1530 src/gui/settings.cpp:4048 +msgid "VERA" +msgstr "" + +#: src/engine/sysDef.cpp:1531 +msgid "the chip used in a computer design created by The 8-Bit Guy." +msgstr "" + +#: src/engine/sysDef.cpp:1538 +msgid "20xx: Set waveform" +msgstr "" + +#: src/engine/sysDef.cpp:1539 +msgid "22xx: Set duty cycle (0 to 3F)" +msgstr "" + +#: src/engine/sysDef.cpp:1544 +msgid "Yamaha YM2610B (OPNB2) Extended Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:1545 +msgid "" +"so Taito asked Yamaha if they could get the two missing FM channels back, " +"and Yamaha gladly provided them with this chip.\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:1557 +msgid "Yamaha YM2610B (OPNB2) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1558 +msgid "" +"so Taito asked Yamaha if they could get the two missing FM channels back, " +"and Yamaha gladly provided them with this chip.\n" +"CSM blah blah" +msgstr "" + +#: src/engine/sysDef.cpp:1570 +msgid "SegaPCM (compatible 5-channel mode)" +msgstr "" + +#: src/engine/sysDef.cpp:1571 +msgid "" +"this is the same thing as SegaPCM, but only exposes 5 of the channels for " +"compatibility with DefleMask." +msgstr "" + +#: src/engine/sysDef.cpp:1582 +msgid "Seta/Allumer X1-010" +msgstr "" + +#: src/engine/sysDef.cpp:1583 +msgid "" +"a sound chip used in several Seta/Allumer-manufactured arcade boards with " +"too many channels of wavetable sound, which also are capable of sampled " +"sound." +msgstr "" + +#: src/engine/sysDef.cpp:1591 +msgid "11xx: Set envelope shape" +msgstr "" + +#: src/engine/sysDef.cpp:1592 +msgid "12xx: Set sample bank slot (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1596 +msgid "20xx: Set PCM frequency (1 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1597 +msgid "" +"22xx: Set envelope mode (bit 0: enable; bit 1: one-shot; bit 2: split shape " +"to L/R; bit 3/5: H.invert right/left; bit 4/6: V.invert right/left)" +msgstr "" + +#: src/engine/sysDef.cpp:1598 +msgid "23xx: Set envelope period" +msgstr "" + +#: src/engine/sysDef.cpp:1606 +msgid "Konami Bubble System WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1607 +msgid "" +"this is the wavetable part of the Bubble System, which also had two " +"AY-3-8910s." +msgstr "" + +#: src/engine/sysDef.cpp:1619 +msgid "Yamaha YMF278B (OPL4)" +msgstr "" + +#: src/engine/sysDef.cpp:1620 +msgid "like OPL3, but this time it also has a 24-channel version of MultiPCM." +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 17" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 18" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 19" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 20" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 21" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 22" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 23" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 24" +msgstr "" + +#: src/engine/sysDef.cpp:1629 +msgid "Yamaha YMF278B (OPL4) with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1630 +msgid "the OPL4 but with drums mode turned on." +msgstr "" + +#: src/engine/sysDef.cpp:1638 +msgid "11xx: Set filter mode (00 to 03)" +msgstr "" + +#: src/engine/sysDef.cpp:1639 +msgid "14xx: Set filter coefficient K1 low byte (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1640 +msgid "15xx: Set filter coefficient K1 high byte (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1641 +msgid "16xx: Set filter coefficient K2 low byte (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1642 +msgid "17xx: Set filter coefficient K2 high byte (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1643 +msgid "18xx: Set filter coefficient K1 slide up (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1644 +msgid "19xx: Set filter coefficient K1 slide down (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1645 +msgid "1Axx: Set filter coefficient K2 slide up (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1646 +msgid "1Bxx: Set filter coefficient K2 slide down (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1647 +msgid "22xx: Set envelope left volume ramp (signed) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1648 +msgid "23xx: Set envelope right volume ramp (signed) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1649 +msgid "24xx: Set envelope filter coefficient k1 ramp (signed) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1650 +msgid "" +"25xx: Set envelope filter coefficient k1 ramp (signed, slower) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1651 +msgid "26xx: Set envelope filter coefficient k2 ramp (signed) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1652 +msgid "" +"27xx: Set envelope filter coefficient k2 ramp (signed, slower) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1656 +msgid "120x: Set pause (bit 0)" +msgstr "" + +#: src/engine/sysDef.cpp:1658 +msgid "2xxx: Set envelope count (000 to 1FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1659 +msgid "3xxx: Set filter coefficient K1 (000 to FFF)" +msgstr "" + +#: src/engine/sysDef.cpp:1660 +msgid "4xxx: Set filter coefficient K2 (000 to FFF)" +msgstr "" + +#: src/engine/sysDef.cpp:1667 +msgid "Ensoniq ES5506" +msgstr "" + +#: src/engine/sysDef.cpp:1668 +msgid "" +"a sample chip made by Ensoniq, which is the basis for the GF1 chip found in " +"Gravis' Ultrasound cards." +msgstr "" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 29" +msgstr "" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 30" +msgstr "" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 31" +msgstr "" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 32" +msgstr "" + +#: src/engine/sysDef.cpp:1679 +msgid "Yamaha Y8950" +msgstr "" + +#: src/engine/sysDef.cpp:1680 +msgid "like OPL but with an ADPCM channel." +msgstr "" + +#: src/engine/sysDef.cpp:1691 +msgid "Yamaha Y8950 with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1692 +msgid "the Y8950 chip, in drums mode." +msgstr "" + +#: src/engine/sysDef.cpp:1703 +msgid "Konami SCC+" +msgstr "" + +#: src/engine/sysDef.cpp:1704 +msgid "" +"this is a variant of Konami's SCC chip with the last channel's wavetable " +"being independent." +msgstr "" + +#: src/engine/sysDef.cpp:1715 +msgid "12xx: Set pulse width (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:1716 +msgid "13xx: Set resonance (0 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1717 +msgid "" +"14xx: Set filter mode (bit 0: ring mod; bit 1: low pass; bit 2: high pass; " +"bit 3: band pass)" +msgstr "" + +#: src/engine/sysDef.cpp:1718 +msgid "15xx: Set frequency sweep period low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1719 +msgid "16xx: Set frequency sweep period high byte" +msgstr "" + +#: src/engine/sysDef.cpp:1720 +msgid "17xx: Set volume sweep period low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1721 +msgid "18xx: Set volume sweep period high byte" +msgstr "" + +#: src/engine/sysDef.cpp:1722 +msgid "19xx: Set cutoff sweep period low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1723 +msgid "1Axx: Set cutoff sweep period high byte" +msgstr "" + +#: src/engine/sysDef.cpp:1724 +msgid "1Bxx: Set frequency sweep boundary" +msgstr "" + +#: src/engine/sysDef.cpp:1725 +msgid "1Cxx: Set volume sweep boundary" +msgstr "" + +#: src/engine/sysDef.cpp:1726 +msgid "1Dxx: Set cutoff sweep boundary" +msgstr "" + +#: src/engine/sysDef.cpp:1727 +msgid "1Exx: Set phase reset period low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1728 +msgid "1Fxx: Set phase reset period high byte" +msgstr "" + +#: src/engine/sysDef.cpp:1729 +msgid "20xx: Toggle frequency sweep (bit 0-6: speed; bit 7: direction is up)" +msgstr "" + +#: src/engine/sysDef.cpp:1730 +msgid "" +"21xx: Toggle volume sweep (bit 0-4: speed; bit 5: direction is up; bit 6: " +"loop; bit 7: alternate)" +msgstr "" + +#: src/engine/sysDef.cpp:1731 +msgid "22xx: Toggle cutoff sweep (bit 0-6: speed; bit 7: direction is up)" +msgstr "" + +#: src/engine/sysDef.cpp:1739 +msgid "tildearrow Sound Unit" +msgstr "" + +#: src/engine/sysDef.cpp:1740 +msgid "" +"tildearrow's fantasy sound chip. put SID, AY and VERA in a blender, and you " +"get this!" +msgstr "" + +#: src/engine/sysDef.cpp:1751 +msgid "OKI MSM6295" +msgstr "" + +#: src/engine/sysDef.cpp:1752 +msgid "an ADPCM sound chip manufactured by OKI and used in many arcade boards." +msgstr "" + +#: src/engine/sysDef.cpp:1759 +msgid "20xx: Set chip output rate (0: clock/132; 1: clock/165)" +msgstr "" + +#: src/engine/sysDef.cpp:1764 +msgid "OKI MSM6258" +msgstr "" + +#: src/engine/sysDef.cpp:1765 +msgid "an ADPCM sound chip manufactured by OKI and used in the Sharp X68000." +msgstr "" + +#: src/engine/sysDef.cpp:1766 src/engine/sysDef.cpp:1887 +#: src/gui/editControls.cpp:437 src/gui/settings.cpp:4223 +#: src/gui/guiConst.cpp:1397 src/gui/insEdit.cpp:2628 src/gui/insEdit.cpp:2666 +msgid "Sample" +msgstr "" + +#: src/engine/sysDef.cpp:1772 +msgid "20xx: Set frequency divider (0-2)" +msgstr "" + +#: src/engine/sysDef.cpp:1773 +msgid "21xx: Select clock rate (0: full; 1: half)" +msgstr "" + +#: src/engine/sysDef.cpp:1778 +msgid "Yamaha YMZ280B (PCMD8)" +msgstr "" + +#: src/engine/sysDef.cpp:1779 +msgid "" +"used in some arcade boards. Can play back either 4-bit ADPCM, 8-bit PCM or " +"16-bit PCM." +msgstr "" + +#: src/engine/sysDef.cpp:1797 src/gui/settings.cpp:4054 +msgid "Namco WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1798 +msgid "" +"a wavetable sound chip used in Pac-Man, among other early Namco arcade games." +msgstr "" + +#: src/engine/sysDef.cpp:1808 +msgid "Namco C15 WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1809 +msgid "" +"successor of the original Namco WSG chip, used in later Namco arcade games." +msgstr "" + +#: src/engine/sysDef.cpp:1819 +msgid "Namco C30 WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1820 +msgid "like Namco C15 but with stereo sound." +msgstr "" + +#: src/engine/sysDef.cpp:1830 +msgid "OKI MSM5232" +msgstr "" + +#: src/engine/sysDef.cpp:1831 +msgid "" +"a square wave additive synthesis chip made by OKI. used in some arcade " +"machines and instruments." +msgstr "" + +#: src/engine/sysDef.cpp:1839 +msgid "10xy: Set group control (x: sustain; y: part toggle bitmask)" +msgstr "" + +#: src/engine/sysDef.cpp:1840 src/engine/sysDef.cpp:1998 +msgid "11xx: Set noise mode" +msgstr "" + +#: src/engine/sysDef.cpp:1841 +msgid "12xx: Set group attack (0 to 5)" +msgstr "" + +#: src/engine/sysDef.cpp:1842 +msgid "13xx: Set group decay (0 to 11)" +msgstr "" + +#: src/engine/sysDef.cpp:1847 +msgid "Yamaha YM2612 (OPN2) with DualPCM" +msgstr "" + +#: src/engine/sysDef.cpp:1848 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this system uses software mixing to provide two sample channels." +msgstr "" + +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +msgid "FM 6/PCM 1" +msgstr "" + +#: src/engine/sysDef.cpp:1859 +msgid "Yamaha YM2612 (OPN2) Extended Channel 3 with DualPCM and CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1860 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this system uses software mixing to provide two sample channels.\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:1872 src/gui/settings.cpp:4024 +msgid "T6W28" +msgstr "" + +#: src/engine/sysDef.cpp:1873 +msgid "" +"an SN76489 derivative used in Neo Geo Pocket, has independent stereo volume " +"and noise channel frequency." +msgstr "" + +#: src/engine/sysDef.cpp:1880 +msgid "20xx: Set noise length (0: short, 1: long)" +msgstr "" + +#: src/engine/sysDef.cpp:1885 +msgid "Generic PCM DAC" +msgstr "" + +#: src/engine/sysDef.cpp:1886 +msgid "as generic sample playback as it gets." +msgstr "" + +#: src/engine/sysDef.cpp:1898 +msgid "Konami K007232" +msgstr "" + +#: src/engine/sysDef.cpp:1899 +msgid "this PCM chip was widely used at Konami arcade boards in 1986-1990." +msgstr "" + +#: src/engine/sysDef.cpp:1908 +msgid "Irem GA20" +msgstr "" + +#: src/engine/sysDef.cpp:1909 +msgid "" +"yet another PCM chip from Irem. like Amiga, but less pitch resolution and no " +"sample loop." +msgstr "" + +#: src/engine/sysDef.cpp:1918 +msgid "Sharp SM8521" +msgstr "" + +#: src/engine/sysDef.cpp:1919 +msgid "a SoC with wavetable sound hardware." +msgstr "" + +#: src/engine/sysDef.cpp:1929 +msgid "Casio PV-1000" +msgstr "" + +#: src/engine/sysDef.cpp:1930 +msgid "" +"a game console with 3 channels of square wave. it's what happens after " +"fusing TIA and VIC together." +msgstr "" + +#: src/engine/sysDef.cpp:1937 +msgid "10xx: Set ring modulation (0: disable, 1: enable)" +msgstr "" + +#: src/engine/sysDef.cpp:1942 +msgid "ZX Spectrum Beeper (QuadTone Engine)" +msgstr "" + +#: src/engine/sysDef.cpp:1943 +msgid "" +"another ZX Spectrum beeper system with full PWM pulses and 3-level volume " +"per channel. it also has a pitchable overlay sample channel." +msgstr "" + +#: src/engine/sysDef.cpp:1955 +msgid "Konami K053260" +msgstr "" + +#: src/engine/sysDef.cpp:1956 +msgid "this PCM chip was widely used at Konami arcade boards in 1990-1992." +msgstr "" + +#: src/engine/sysDef.cpp:1968 +msgid "MOS Technology TED" +msgstr "" + +#: src/engine/sysDef.cpp:1969 +msgid "" +"two square waves (one may be turned into noise). used in the Commodore " +"Plus/4, 16 and 116." +msgstr "" + +#: src/engine/sysDef.cpp:1978 +msgid "Namco C140" +msgstr "" + +#: src/engine/sysDef.cpp:1979 +msgid "Namco's first PCM chip from 1987. it's pretty good for being so." +msgstr "" + +#: src/engine/sysDef.cpp:1989 +msgid "Namco C219" +msgstr "" + +#: src/engine/sysDef.cpp:1990 +msgid "" +"Namco's PCM chip used in their NA-1/2 hardware.\n" +"very similar to C140, but has noise generator." +msgstr "" + +#: src/engine/sysDef.cpp:1999 +msgid "12xy: Set invert mode (x: surround; y: invert)" +msgstr "" + +#: src/engine/sysDef.cpp:2004 +msgid "ESS ES1xxx series (ESFM)" +msgstr "" + +#: src/engine/sysDef.cpp:2005 +msgid "" +"a unique FM synth featured in PC sound cards.\n" +"based on the OPL3 design, but with lots of its features extended." +msgstr "" + +#: src/engine/sysDef.cpp:2006 +msgid "FM 11" +msgstr "" + +#: src/engine/sysDef.cpp:2012 +msgid "2Exx: Toggle hard envelope reset on new notes" +msgstr "" + +#: src/engine/sysDef.cpp:2018 +msgid "PowerNoise" +msgstr "" + +#: src/engine/sysDef.cpp:2019 +msgid "" +"a fantasy sound chip designed by jvsTSX and The Beesh-Spweesh!\n" +"used in the Hexheld fantasy console." +msgstr "" + +#: src/engine/sysDef.cpp:2020 +msgid "Noise 1" +msgstr "" + +#: src/engine/sysDef.cpp:2020 +msgid "Noise 2" +msgstr "" + +#: src/engine/sysDef.cpp:2020 +msgid "Noise 3" +msgstr "" + +#: src/engine/sysDef.cpp:2020 +msgid "Slope" +msgstr "" + +#: src/engine/sysDef.cpp:2026 +msgid "" +"20xx: Load low byte of noise channel LFSR (00 to FF) or slope channel " +"accumulator (00 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:2027 +msgid "21xx: Load high byte of noise channel LFSR (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:2028 +msgid "22xx: Write to I/O port A" +msgstr "" + +#: src/engine/sysDef.cpp:2029 +msgid "23xx: Write to I/O port B" +msgstr "" + +#: src/engine/sysDef.cpp:2035 src/gui/settings.cpp:4079 +msgid "Dave" +msgstr "" + +#: src/engine/sysDef.cpp:2036 +msgid "" +"this chip was featured in the Enterprise 128 computer. it is similar to " +"POKEY, but with stereo output." +msgstr "" + +#: src/engine/sysDef.cpp:2037 +msgid "DAC Left" +msgstr "" + +#: src/engine/sysDef.cpp:2037 +msgid "DAC Right" +msgstr "" + +#: src/engine/sysDef.cpp:2043 +msgid "10xx: Set waveform (0 to 4; 0 to 3 on noise)" +msgstr "" + +#: src/engine/sysDef.cpp:2044 +msgid "11xx: Set noise frequency source (0: fixed; 1-3: channels 1 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:2045 +msgid "12xx: Toggle high-pass with next channel" +msgstr "" + +#: src/engine/sysDef.cpp:2046 +msgid "13xx: Toggle ring modulation with channel+2" +msgstr "" + +#: src/engine/sysDef.cpp:2047 +msgid "14xx: Toggle swap counters (noise only)" +msgstr "" + +#: src/engine/sysDef.cpp:2048 +msgid "15xx: Toggle low pass (noise only)" +msgstr "" + +#: src/engine/sysDef.cpp:2049 +msgid "16xx: Set clock divider (0: /2; 1: /3)" +msgstr "" + +#: src/engine/sysDef.cpp:2054 +msgid "Game Boy Advance DMA Sound" +msgstr "" + +#: src/engine/sysDef.cpp:2055 +msgid "" +"additional PCM FIFO channels in Game Boy Advance driven directly by its DMA " +"hardware." +msgstr "" + +#: src/engine/sysDef.cpp:2068 +msgid "Game Boy Advance MinMod" +msgstr "" + +#: src/engine/sysDef.cpp:2069 +msgid "" +"additional PCM FIFO channels in Game Boy Advance driven by software mixing " +"to provide up to sixteen sample channels" +msgstr "" + +#: src/engine/sysDef.cpp:2078 +msgid "11xy: Set echo channel (x: left/right source; y: delay (0 disables))" +msgstr "" + +#: src/engine/sysDef.cpp:2079 +msgid "12xy: Toggle invert (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:2084 src/gui/settings.cpp:4080 +msgid "Nintendo DS" +msgstr "" + +#: src/engine/sysDef.cpp:2085 +msgid "a handheld video game console with two screens. it uses a stylus." +msgstr "" + +#: src/engine/sysDef.cpp:2093 +msgid "1Fxx: Set global volume (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:2098 +msgid "5E01" +msgstr "" + +#: src/engine/sysDef.cpp:2099 +msgid "" +"a fantasy sound chip created by Euly. it is based on Ricoh 2A03, adding a " +"couple features such as 32 noise pitches, an extra duty cycle, and three " +"waveforms (besides triangle)." +msgstr "" + +#: src/engine/sysDef.cpp:2107 +msgid "" +"12xx: Set duty cycle/noise mode/waveform (pulse/wave: 0 to 3; noise: 0 or 1)" +msgstr "" + +#: src/engine/sysDef.cpp:2120 src/gui/settings.cpp:4083 +msgid "Bifurcator" +msgstr "" + +#: src/engine/sysDef.cpp:2121 +msgid "a fantasy sound chip using logistic map iterations to generate sound." +msgstr "" + +#: src/engine/sysDef.cpp:2128 +msgid "10xx: Load low byte of channel sample state" +msgstr "" + +#: src/engine/sysDef.cpp:2129 +msgid "11xx: Load high byte of channel sample state" +msgstr "" + +#: src/engine/sysDef.cpp:2130 +msgid "12xx: Set low byte of channel parameter" +msgstr "" + +#: src/engine/sysDef.cpp:2131 +msgid "13xx: Set high byte of channel parameter" +msgstr "" + +#: src/engine/sysDef.cpp:2136 src/gui/settings.cpp:4084 +msgid "SID2" +msgstr "" + +#: src/engine/sysDef.cpp:2137 +msgid "" +"a fantasy sound chip created by LTVA. it is similar to the SID chip, but " +"with many of its problems fixed." +msgstr "" + +#: src/engine/sysDef.cpp:2148 +msgid "Dummy System" +msgstr "" + +#: src/engine/sysDef.cpp:2149 +msgid "this is a system designed for testing purposes." +msgstr "" + +#: src/engine/engine.cpp:51 +msgid "00xy: Arpeggio" +msgstr "" + +#: src/engine/engine.cpp:53 +msgid "01xx: Pitch slide up" +msgstr "" + +#: src/engine/engine.cpp:55 +msgid "02xx: Pitch slide down" +msgstr "" + +#: src/engine/engine.cpp:57 +msgid "03xx: Portamento" +msgstr "" + +#: src/engine/engine.cpp:59 +msgid "04xy: Vibrato (x: speed; y: depth)" +msgstr "" + +#: src/engine/engine.cpp:61 +msgid "05xy: Volume slide + vibrato (compatibility only!)" +msgstr "" + +#: src/engine/engine.cpp:63 +msgid "06xy: Volume slide + portamento (compatibility only!)" +msgstr "" + +#: src/engine/engine.cpp:65 +msgid "07xy: Tremolo (x: speed; y: depth)" +msgstr "" + +#: src/engine/engine.cpp:67 +msgid "08xy: Set panning (x: left; y: right)" +msgstr "" + +#: src/engine/engine.cpp:69 +msgid "09xx: Set groove pattern (speed 1 if no grooves exist)" +msgstr "" + +#: src/engine/engine.cpp:71 +msgid "0Axy: Volume slide (0y: down; x0: up)" +msgstr "" + +#: src/engine/engine.cpp:73 +msgid "0Bxx: Jump to pattern" +msgstr "" + +#: src/engine/engine.cpp:75 +msgid "0Cxx: Retrigger" +msgstr "" + +#: src/engine/engine.cpp:77 +msgid "0Dxx: Jump to next pattern" +msgstr "" + +#: src/engine/engine.cpp:79 +msgid "0Fxx: Set speed (speed 2 if no grooves exist)" +msgstr "" + +#: src/engine/engine.cpp:81 +msgid "80xx: Set panning (00: left; 80: center; FF: right)" +msgstr "" + +#: src/engine/engine.cpp:83 +msgid "81xx: Set panning (left channel)" +msgstr "" + +#: src/engine/engine.cpp:85 +msgid "82xx: Set panning (right channel)" +msgstr "" + +#: src/engine/engine.cpp:87 +msgid "88xy: Set panning (rear channels; x: left; y: right)" +msgstr "" + +#: src/engine/engine.cpp:90 +msgid "89xx: Set panning (rear left channel)" +msgstr "" + +#: src/engine/engine.cpp:93 +msgid "8Axx: Set panning (rear right channel)" +msgstr "" + +#: src/engine/engine.cpp:96 +msgid "Cxxx: Set tick rate (hz)" +msgstr "" + +#: src/engine/engine.cpp:98 +msgid "E0xx: Set arp speed" +msgstr "" + +#: src/engine/engine.cpp:100 +msgid "E1xy: Note slide up (x: speed; y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:102 +msgid "E2xy: Note slide down (x: speed; y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:104 +msgid "E3xx: Set vibrato shape (0: up/down; 1: up only; 2: down only)" +msgstr "" + +#: src/engine/engine.cpp:106 +msgid "E4xx: Set vibrato range" +msgstr "" + +#: src/engine/engine.cpp:108 +msgid "E5xx: Set pitch (80: center)" +msgstr "" + +#: src/engine/engine.cpp:110 +msgid "E6xy: Quick legato (x: time (0-7 up; 8-F down); y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:112 +msgid "E7xx: Macro release" +msgstr "" + +#: src/engine/engine.cpp:114 +msgid "E8xy: Quick legato up (x: time; y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:116 +msgid "E9xy: Quick legato down (x: time; y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:118 +msgid "EAxx: Legato" +msgstr "" + +#: src/engine/engine.cpp:120 +msgid "EBxx: Set LEGACY sample mode bank" +msgstr "" + +#: src/engine/engine.cpp:122 +msgid "ECxx: Note cut" +msgstr "" + +#: src/engine/engine.cpp:124 +msgid "EDxx: Note delay" +msgstr "" + +#: src/engine/engine.cpp:126 +msgid "EExx: Send external command" +msgstr "" + +#: src/engine/engine.cpp:128 +msgid "F0xx: Set tick rate (bpm)" +msgstr "" + +#: src/engine/engine.cpp:130 +msgid "F1xx: Single tick note slide up" +msgstr "" + +#: src/engine/engine.cpp:132 +msgid "F2xx: Single tick note slide down" +msgstr "" + +#: src/engine/engine.cpp:134 +msgid "F3xx: Fine volume slide up" +msgstr "" + +#: src/engine/engine.cpp:136 +msgid "F4xx: Fine volume slide down" +msgstr "" + +#: src/engine/engine.cpp:138 +msgid "F5xx: Disable macro (see manual)" +msgstr "" + +#: src/engine/engine.cpp:140 +msgid "F6xx: Enable macro (see manual)" +msgstr "" + +#: src/engine/engine.cpp:142 +msgid "F7xx: Restart macro (see manual)" +msgstr "" + +#: src/engine/engine.cpp:144 +msgid "F8xx: Single tick volume slide up" +msgstr "" + +#: src/engine/engine.cpp:146 +msgid "F9xx: Single tick volume slide down" +msgstr "" + +#: src/engine/engine.cpp:148 +msgid "FAxx: Fast volume slide (0y: down; x0: up)" +msgstr "" + +#: src/engine/engine.cpp:150 +msgid "FCxx: Note release" +msgstr "" + +#: src/engine/engine.cpp:152 +msgid "FDxx: Set virtual tempo numerator" +msgstr "" + +#: src/engine/engine.cpp:154 +msgid "FExx: Set virtual tempo denominator" +msgstr "" + +#: src/engine/engine.cpp:156 +msgid "FFxx: Stop song" +msgstr "" + +#: src/engine/engine.cpp:160 +msgid "9xxx: Set sample offset*256" +msgstr "" + +#: src/engine/engine.cpp:164 +msgid "90xx: Set sample offset (first byte)" +msgstr "" + +#: src/engine/engine.cpp:166 +msgid "91xx: Set sample offset (second byte, ×256)" +msgstr "" + +#: src/engine/engine.cpp:168 +msgid "92xx: Set sample offset (third byte, ×65536)" +msgstr "" + +#: src/engine/engine.cpp:187 src/gui/settings.cpp:4127 +msgid "Invalid effect" +msgstr "" + +#: src/engine/engine.cpp:354 src/gui/gui.cpp:2259 src/gui/gui.cpp:2422 +#, c-format +msgid "on seek: %s" +msgstr "" + +#: src/engine/engine.cpp:361 src/gui/gui.cpp:2266 src/gui/gui.cpp:2429 +#, c-format +msgid "on pre tell: %s" +msgstr "" + +#: src/engine/engine.cpp:368 src/engine/engine.cpp:2768 +#: src/gui/settings.cpp:5811 src/gui/gui.cpp:2273 src/gui/gui.cpp:2436 +msgid "file is empty" +msgstr "" + +#: src/engine/engine.cpp:371 src/gui/gui.cpp:2276 src/gui/gui.cpp:2439 +#, c-format +msgid "on tell: %s" +msgstr "" + +#: src/engine/engine.cpp:378 +#, c-format +msgid "ROM size mismatch, expected: %d bytes, was: %d" +msgstr "" + +#: src/engine/engine.cpp:383 src/gui/settings.cpp:5820 src/gui/gui.cpp:2283 +#: src/gui/gui.cpp:2446 +#, c-format +msgid "on get size: %s" +msgstr "" + +#: src/engine/engine.cpp:390 src/gui/settings.cpp:5827 src/gui/gui.cpp:2290 +#: src/gui/gui.cpp:2453 +#, c-format +msgid "on read: %s" +msgstr "" + +#: src/engine/engine.cpp:1076 src/engine/engine.cpp:1181 +#: src/engine/engine.cpp:1290 +msgid "invalid index" +msgstr "" + +#: src/engine/engine.cpp:1080 src/engine/engine.cpp:1135 +#: src/engine/engine.cpp:1189 +#, c-format +msgid "max number of total channels is %d" +msgstr "" + +#: src/engine/engine.cpp:1131 src/engine/engine.cpp:1185 +#, c-format +msgid "max number of systems is %d" +msgstr "" + +#: src/engine/engine.cpp:1286 +msgid "cannot remove the last one" +msgstr "" + +#: src/engine/engine.cpp:1460 +msgid "source and destination are equal" +msgstr "" + +#: src/engine/engine.cpp:1464 +msgid "invalid source index" +msgstr "" + +#: src/engine/engine.cpp:1468 +msgid "invalid destination index" +msgstr "" + +#: src/engine/engine.cpp:2636 +#, c-format +msgid "Instrument %d" +msgstr "" + +#: src/engine/engine.cpp:2710 src/engine/engine.cpp:2727 +#: src/gui/doAction.cpp:825 src/gui/doAction.cpp:843 src/gui/doAction.cpp:1634 +#: src/gui/gui.cpp:6159 src/gui/insEdit.cpp:6860 +msgid "too many wavetables!" +msgstr "" + +#: src/engine/engine.cpp:2752 +#, c-format +msgid "could not seek to end: %s" +msgstr "" + +#: src/engine/engine.cpp:2758 +#, c-format +msgid "could not determine file size: %s" +msgstr "" + +#: src/engine/engine.cpp:2763 +msgid "file size is invalid!" +msgstr "" + +#: src/engine/engine.cpp:2773 +#, c-format +msgid "could not seek to beginning: %s" +msgstr "" + +#: src/engine/engine.cpp:2780 +#, c-format +msgid "could not read entire file: %s" +msgstr "" + +#: src/engine/engine.cpp:2806 +msgid "invalid wavetable header/data!" +msgstr "" + +#: src/engine/engine.cpp:2877 +msgid "premature end of file" +msgstr "" + +#: src/engine/engine.cpp:2904 src/engine/engine.cpp:2926 +#: src/gui/doAction.cpp:909 src/gui/doAction.cpp:921 +msgid "too many samples!" +msgstr "" + +#: src/engine/engine.cpp:2911 +#, c-format +msgid "Sample %d" +msgstr "" + +#: src/engine/engine.cpp:3056 +#, c-format +msgid "no free patterns in channel %d!" +msgstr "" + +#: src/gui/mixer.cpp:28 src/gui/insEdit.cpp:484 +msgid "left" +msgstr "" + +#: src/gui/mixer.cpp:29 src/gui/insEdit.cpp:483 +msgid "right" +msgstr "" + +#: src/gui/mixer.cpp:128 +msgid "input" +msgstr "" + +#: src/gui/mixer.cpp:168 +msgid "output" +msgstr "" + +#: src/gui/mixer.cpp:226 src/gui/mixer.cpp:228 src/gui/editControls.cpp:454 +#: src/gui/guiConst.cpp:593 +msgid "Mixer" +msgstr "" + +#: src/gui/mixer.cpp:229 +msgid "Master Volume" +msgstr "" + +#: src/gui/mixer.cpp:250 src/gui/exportOptions.cpp:90 +#: src/gui/userPresets.cpp:393 src/gui/userPresets.cpp:405 +#: src/gui/settings.cpp:1080 src/gui/settings.cpp:1094 +#: src/gui/waveEdit.cpp:1096 src/gui/sampleEdit.cpp:1128 +#: src/gui/insEdit.cpp:519 +msgid "Invert" +msgstr "" + +#: src/gui/mixer.cpp:268 src/gui/chanOsc.cpp:37 src/gui/userPresets.cpp:417 +#: src/gui/settings.cpp:263 src/gui/settings.cpp:1109 src/gui/settings.cpp:1492 +#: src/gui/settings.cpp:1504 src/gui/settings.cpp:3369 +#: src/gui/settings.cpp:4015 src/gui/findReplace.cpp:687 +#: src/gui/findReplace.cpp:943 src/gui/guiConst.cpp:228 +#: src/gui/sampleEdit.cpp:1003 src/gui/insEdit.cpp:5575 +#: src/gui/insEdit.cpp:5660 src/gui/insEdit.cpp:6920 src/gui/insEdit.cpp:6928 +#: src/gui/insEdit.cpp:6936 src/gui/insEdit.cpp:6946 src/gui/insEdit.cpp:6961 +#: src/gui/insEdit.cpp:6975 src/gui/insEdit.cpp:6987 src/gui/insEdit.cpp:7000 +#: src/gui/insEdit.cpp:7016 src/gui/insEdit.cpp:7022 src/gui/insEdit.cpp:7032 +#: src/gui/insEdit.cpp:7039 src/gui/insEdit.cpp:7045 src/gui/insEdit.cpp:7058 +#: src/gui/insEdit.cpp:7065 src/gui/insEdit.cpp:7072 src/gui/insEdit.cpp:7081 +#: src/gui/insEdit.cpp:7091 src/gui/insEdit.cpp:7099 src/gui/insEdit.cpp:7105 +#: src/gui/insEdit.cpp:7113 src/gui/insEdit.cpp:7120 src/gui/insEdit.cpp:7126 +#: src/gui/insEdit.cpp:7136 src/gui/insEdit.cpp:7148 src/gui/insEdit.cpp:7156 +#: src/gui/insEdit.cpp:7172 src/gui/insEdit.cpp:7177 src/gui/insEdit.cpp:7190 +#: src/gui/insEdit.cpp:7197 src/gui/insEdit.cpp:7208 src/gui/insEdit.cpp:7221 +#: src/gui/insEdit.cpp:7230 src/gui/insEdit.cpp:7237 src/gui/insEdit.cpp:7245 +#: src/gui/insEdit.cpp:7258 src/gui/insEdit.cpp:7263 src/gui/insEdit.cpp:7269 +#: src/gui/insEdit.cpp:7276 src/gui/insEdit.cpp:7284 src/gui/insEdit.cpp:7295 +#: src/gui/insEdit.cpp:7302 src/gui/insEdit.cpp:7310 src/gui/insEdit.cpp:7318 +#: src/gui/insEdit.cpp:7327 src/gui/insEdit.cpp:7335 src/gui/insEdit.cpp:7341 +#: src/gui/insEdit.cpp:7347 src/gui/insEdit.cpp:7353 src/gui/insEdit.cpp:7358 +#: src/gui/insEdit.cpp:7365 src/gui/insEdit.cpp:7372 src/gui/insEdit.cpp:7380 +#: src/gui/insEdit.cpp:7389 src/gui/insEdit.cpp:7397 src/gui/insEdit.cpp:7409 +#: src/gui/insEdit.cpp:7422 src/gui/insEdit.cpp:7433 src/gui/insEdit.cpp:7443 +#: src/gui/insEdit.cpp:7451 src/gui/insEdit.cpp:7461 src/gui/insEdit.cpp:7470 +msgid "Volume" +msgstr "" + +#: src/gui/mixer.cpp:279 src/gui/userPresets.cpp:427 src/gui/settings.cpp:1120 +#: src/gui/guiConst.cpp:229 src/gui/insEdit.cpp:6923 src/gui/insEdit.cpp:6930 +#: src/gui/insEdit.cpp:6941 src/gui/insEdit.cpp:6965 src/gui/insEdit.cpp:7067 +#: src/gui/insEdit.cpp:7108 src/gui/insEdit.cpp:7152 src/gui/insEdit.cpp:7192 +#: src/gui/insEdit.cpp:7212 src/gui/insEdit.cpp:7232 src/gui/insEdit.cpp:7240 +#: src/gui/insEdit.cpp:7253 src/gui/insEdit.cpp:7265 src/gui/insEdit.cpp:7271 +#: src/gui/insEdit.cpp:7287 src/gui/insEdit.cpp:7297 src/gui/insEdit.cpp:7360 +#: src/gui/insEdit.cpp:7392 src/gui/insEdit.cpp:7438 src/gui/insEdit.cpp:7446 +msgid "Panning" +msgstr "" + +#: src/gui/mixer.cpp:290 src/gui/userPresets.cpp:433 src/gui/settings.cpp:1127 +msgid "Front/Rear" +msgstr "" + +#: src/gui/mixer.cpp:299 src/gui/settings.cpp:4208 +msgid "Patchbay" +msgstr "" + +#: src/gui/mixer.cpp:305 +msgid "Automatic patchbay" +msgstr "" + +#: src/gui/mixer.cpp:310 +msgid "Display hidden ports" +msgstr "" + +#: src/gui/mixer.cpp:312 +msgid "Display internal" +msgstr "" + +#: src/gui/mixer.cpp:322 src/gui/mixer.cpp:383 src/gui/settings.cpp:1901 +#: src/gui/settings.cpp:2089 src/gui/songInfo.cpp:69 +msgid "System" +msgstr "" + +#: src/gui/mixer.cpp:354 +msgid "Sample Preview" +msgstr "" + +#: src/gui/mixer.cpp:367 src/gui/editControls.cpp:745 +#: src/gui/editControls.cpp:837 src/gui/editControls.cpp:953 +#: src/gui/editControls.cpp:1093 src/gui/settings.cpp:1490 +#: src/gui/guiConst.cpp:558 +msgid "Metronome" +msgstr "" + +#: src/gui/mixer.cpp:446 +msgid "disconnect all" +msgstr "" + +#: src/gui/editing.cpp:200 +#, c-format +msgid "no data in oldPatMap for channel %d!" +msgstr "" + +#: src/gui/editing.cpp:664 src/gui/editing.cpp:1203 +#, c-format +msgid "invalid clipboard data! failed at line %d char %d" +msgstr "" + +#: src/gui/editing.cpp:1565 src/gui/editing.cpp:1669 +msgid "can't collapse any further!" +msgstr "" + +#: src/gui/editing.cpp:1749 +msgid "can't expand any further!" +msgstr "" + +#: src/gui/editing.cpp:1836 src/gui/editing.cpp:1851 +#, c-format +msgid "copy: %s" +msgstr "" + +#: src/gui/memory.cpp:35 src/gui/settings.cpp:3696 src/gui/settings.cpp:4217 +#: src/gui/guiConst.cpp:613 +msgid "Memory Composition" +msgstr "" + +#: src/gui/memory.cpp:146 +#, c-format +msgid "bank %d" +msgstr "" + +#: src/gui/memory.cpp:175 src/gui/memory.cpp:176 +msgid "no chips with memory" +msgstr "" + +#: src/gui/intro.cpp:89 src/gui/gui.cpp:2345 src/gui/gui.cpp:3746 +#: src/gui/gui.cpp:5019 src/gui/gui.cpp:5041 src/gui/gui.cpp:5479 +#: src/gui/gui.cpp:5781 src/gui/gui.cpp:5791 +#, c-format +msgid "Error while loading file! (%s)" +msgstr "" + +#: src/gui/intro.cpp:122 +msgid "IntroMon X" +msgstr "" + +#: src/gui/intro.cpp:122 +msgid "Intro" +msgstr "" + +#: src/gui/intro.cpp:124 +msgid "Preview" +msgstr "" + +#: src/gui/intro.cpp:176 src/gui/intro.cpp:177 src/gui/intro.cpp:178 +msgid "SORRY NOTHING" +msgstr "" + +#: src/gui/intro.cpp:310 +msgid "hold to skip" +msgstr "" + +#: src/gui/dataList.cpp:76 +msgid "Bug!" +msgstr "" + +#: src/gui/dataList.cpp:79 src/gui/util.cpp:107 src/gui/util.cpp:109 +#: src/gui/settings.cpp:4220 src/gui/insEdit.cpp:5334 +msgid "Unknown" +msgstr "" + +#: src/gui/dataList.cpp:136 src/gui/dataList.cpp:260 +msgid "duplicate" +msgstr "" + +#: src/gui/dataList.cpp:139 src/gui/dataList.cpp:263 src/gui/dataList.cpp:388 +#: src/gui/dataList.cpp:731 src/gui/dataList.cpp:867 +msgid "replace..." +msgstr "" + +#: src/gui/dataList.cpp:142 src/gui/dataList.cpp:266 src/gui/gui.cpp:4232 +msgid "save" +msgstr "" + +#: src/gui/dataList.cpp:145 +msgid "save (.dmp)" +msgstr "" + +#: src/gui/dataList.cpp:148 src/gui/dataList.cpp:269 src/gui/dataList.cpp:617 +#: src/gui/dataList.cpp:994 src/gui/dataList.cpp:1040 +#: src/gui/editControls.cpp:50 src/gui/gui.cpp:2767 src/gui/gui.cpp:2776 +msgid "delete" +msgstr "" + +#: src/gui/dataList.cpp:243 +msgid "out of memory for this sample!" +msgstr "" + +#: src/gui/dataList.cpp:254 +msgid "make instrument" +msgstr "" + +#: src/gui/dataList.cpp:257 +msgid "make me a drum kit" +msgstr "" + +#: src/gui/dataList.cpp:290 src/gui/dataList.cpp:593 src/gui/gui.cpp:5914 +msgid "Instruments" +msgstr "" + +#: src/gui/dataList.cpp:312 src/gui/dataList.cpp:714 src/gui/dataList.cpp:846 +#: src/gui/subSongs.cpp:88 src/gui/insEdit.cpp:520 +msgid "Add" +msgstr "" + +#: src/gui/dataList.cpp:338 src/gui/dataList.cpp:721 src/gui/dataList.cpp:853 +#: src/gui/subSongs.cpp:108 +msgid "Duplicate" +msgstr "" + +#: src/gui/dataList.cpp:359 src/gui/dataList.cpp:728 src/gui/dataList.cpp:860 +#: src/gui/editControls.cpp:497 src/gui/waveEdit.cpp:435 +#: src/gui/waveEdit.cpp:467 src/gui/sampleEdit.cpp:122 +#: src/gui/sampleEdit.cpp:171 src/gui/insEdit.cpp:5239 src/gui/insEdit.cpp:5304 +msgid "Open" +msgstr "" + +#: src/gui/dataList.cpp:363 +msgid "replace instrument..." +msgstr "" + +#: src/gui/dataList.cpp:366 +msgid "load instrument from TX81Z" +msgstr "" + +#: src/gui/dataList.cpp:372 +msgid "replace wavetable..." +msgstr "" + +#: src/gui/dataList.cpp:378 +msgid "replace sample..." +msgstr "" + +#: src/gui/dataList.cpp:381 +msgid "import raw sample..." +msgstr "" + +#: src/gui/dataList.cpp:384 +msgid "import raw sample (replace)..." +msgstr "" + +#: src/gui/dataList.cpp:392 +msgid "load from TX81Z" +msgstr "" + +#: src/gui/dataList.cpp:399 +msgid "Open (insert; right-click to replace)" +msgstr "" + +#: src/gui/dataList.cpp:420 src/gui/dataList.cpp:741 src/gui/dataList.cpp:884 +#: src/gui/editControls.cpp:502 src/gui/waveEdit.cpp:474 +#: src/gui/sampleEdit.cpp:184 src/gui/insEdit.cpp:5311 +msgid "Save" +msgstr "" + +#: src/gui/dataList.cpp:424 +msgid "save instrument as .dmp..." +msgstr "" + +#: src/gui/dataList.cpp:430 +msgid "save wavetable as .dmw..." +msgstr "" + +#: src/gui/dataList.cpp:433 +msgid "save raw wavetable..." +msgstr "" + +#: src/gui/dataList.cpp:439 +msgid "save raw sample..." +msgstr "" + +#: src/gui/dataList.cpp:443 src/gui/insEdit.cpp:5314 +msgid "save as .dmp..." +msgstr "" + +#: src/gui/dataList.cpp:456 src/gui/dataList.cpp:761 src/gui/dataList.cpp:903 +msgid "Toggle folders/standard view" +msgstr "" + +#: src/gui/dataList.cpp:478 src/gui/dataList.cpp:769 src/gui/dataList.cpp:911 +#: src/gui/subSongs.cpp:55 +msgid "Move up" +msgstr "" + +#: src/gui/dataList.cpp:499 src/gui/dataList.cpp:776 src/gui/dataList.cpp:918 +#: src/gui/subSongs.cpp:62 +msgid "Move down" +msgstr "" + +#: src/gui/dataList.cpp:510 src/gui/dataList.cpp:787 src/gui/dataList.cpp:929 +msgid "Create" +msgstr "" + +#: src/gui/dataList.cpp:540 src/gui/dataList.cpp:797 src/gui/dataList.cpp:939 +msgid "New folder" +msgstr "" + +#: src/gui/dataList.cpp:549 src/gui/dataList.cpp:947 +msgid "Preview (right click to stop)" +msgstr "" + +#: src/gui/dataList.cpp:576 src/gui/dataList.cpp:807 src/gui/dataList.cpp:959 +#: src/gui/guiConst.cpp:666 src/gui/sampleEdit.cpp:1105 +msgid "Delete" +msgstr "" + +#: src/gui/dataList.cpp:608 src/gui/dataList.cpp:985 src/gui/dataList.cpp:1031 +msgid "" +msgstr "" + +#: src/gui/dataList.cpp:614 src/gui/dataList.cpp:991 src/gui/dataList.cpp:1037 +msgid "rename..." +msgstr "" + +#: src/gui/dataList.cpp:663 src/gui/dataList.cpp:707 src/gui/gui.cpp:5923 +msgid "Wavetables" +msgstr "" + +#: src/gui/dataList.cpp:674 src/gui/dataList.cpp:839 src/gui/xyOsc.cpp:68 +#: src/gui/sampleEdit.cpp:898 src/gui/sampleEdit.cpp:1072 src/gui/gui.cpp:5932 +msgid "Samples" +msgstr "" + +#: src/gui/dataList.cpp:745 src/gui/waveEdit.cpp:477 +msgid "save as .dmw..." +msgstr "" + +#: src/gui/dataList.cpp:748 src/gui/dataList.cpp:891 src/gui/waveEdit.cpp:480 +#: src/gui/sampleEdit.cpp:187 +msgid "save raw..." +msgstr "" + +#: src/gui/dataList.cpp:871 src/gui/sampleEdit.cpp:174 +msgid "import raw..." +msgstr "" + +#: src/gui/dataList.cpp:874 +msgid "import raw (replace)..." +msgstr "" + +#: src/gui/exportOptions.cpp:29 +msgid "Export type:" +msgstr "" + +#: src/gui/exportOptions.cpp:32 +msgid "one file" +msgstr "" + +#: src/gui/exportOptions.cpp:35 +msgid "multiple files (one per chip)" +msgstr "" + +#: src/gui/exportOptions.cpp:38 +msgid "multiple files (one per channel)" +msgstr "" + +#: src/gui/exportOptions.cpp:44 +msgid "Bit depth:" +msgstr "" + +#: src/gui/exportOptions.cpp:46 +msgid "16-bit integer" +msgstr "" + +#: src/gui/exportOptions.cpp:49 +msgid "32-bit float" +msgstr "" + +#: src/gui/exportOptions.cpp:55 src/gui/settings.cpp:1352 src/gui/gui.cpp:6270 +msgid "Sample rate" +msgstr "" + +#: src/gui/exportOptions.cpp:61 +msgid "Channels in file" +msgstr "" + +#: src/gui/exportOptions.cpp:67 src/gui/settings.cpp:930 +msgid "Loops" +msgstr "" + +#: src/gui/exportOptions.cpp:70 src/gui/settings.cpp:935 +msgid "Fade out (seconds)" +msgstr "" + +#: src/gui/exportOptions.cpp:76 +msgid "Channels to export:" +msgstr "" + +#: src/gui/exportOptions.cpp:78 src/gui/effectList.cpp:32 src/gui/gui.cpp:6186 +msgid "All" +msgstr "" + +#: src/gui/exportOptions.cpp:84 src/gui/sysConf.cpp:1870 +#: src/gui/effectList.cpp:34 src/gui/compatFlags.cpp:219 +#: src/gui/waveEdit.cpp:37 src/gui/gui.cpp:6192 src/gui/insEdit.cpp:518 +msgid "None" +msgstr "" + +#: src/gui/exportOptions.cpp:110 src/gui/exportOptions.cpp:214 +#: src/gui/exportOptions.cpp:225 src/gui/exportOptions.cpp:243 +#: src/gui/exportOptions.cpp:266 src/gui/exportOptions.cpp:297 +#: src/gui/exportOptions.cpp:318 src/gui/exportOptions.cpp:341 +#: src/gui/commandPalette.cpp:199 src/gui/settings.cpp:6673 +#: src/gui/newSong.cpp:273 src/gui/gui.cpp:5669 src/gui/gui.cpp:5693 +#: src/gui/gui.cpp:5717 src/gui/gui.cpp:5741 src/gui/gui.cpp:5765 +#: src/gui/gui.cpp:5796 src/gui/gui.cpp:5855 src/gui/gui.cpp:6229 +#: src/gui/gui.cpp:6353 +msgid "Cancel" +msgstr "" + +#: src/gui/exportOptions.cpp:115 src/gui/exportOptions.cpp:217 +#: src/gui/exportOptions.cpp:246 src/gui/exportOptions.cpp:300 +#: src/gui/exportOptions.cpp:321 src/gui/exportOptions.cpp:344 +#: src/gui/editControls.cpp:512 src/gui/userPresets.cpp:523 +#: src/gui/settings.cpp:1242 src/gui/settings.cpp:2165 +#: src/gui/settings.cpp:2557 src/gui/settings.cpp:3800 src/gui/guiConst.cpp:536 +#: src/gui/gui.cpp:5578 src/gui/gui.cpp:5630 +msgid "Export" +msgstr "" + +#: src/gui/exportOptions.cpp:130 +msgid "select at least one channel" +msgstr "" + +#: src/gui/exportOptions.cpp:137 +msgid "settings:" +msgstr "" + +#: src/gui/exportOptions.cpp:138 +msgid "format version" +msgstr "" + +#: src/gui/exportOptions.cpp:146 src/gui/exportOptions.cpp:238 +#: src/gui/insEdit.cpp:362 +msgid "loop" +msgstr "" + +#: src/gui/exportOptions.cpp:148 +msgid "loop trail:" +msgstr "" + +#: src/gui/exportOptions.cpp:150 +msgid "auto-detect" +msgstr "" + +#: src/gui/exportOptions.cpp:153 +msgid "add one loop" +msgstr "" + +#: src/gui/exportOptions.cpp:156 +msgid "custom" +msgstr "" + +#: src/gui/exportOptions.cpp:167 +msgid "add pattern change hints" +msgstr "" + +#: src/gui/exportOptions.cpp:170 +msgid "" +"inserts data blocks on pattern changes.\n" +"useful if you are writing a playback routine.\n" +"\n" +"the format of a pattern change data block is:\n" +"67 66 FE ll ll ll ll 01 oo rr pp pp pp ...\n" +"- ll: length, a 32-bit little-endian number\n" +"- oo: order\n" +"- rr: initial row (a 0Dxx effect is able to select a different row)\n" +"- pp: pattern index (one per channel)\n" +"\n" +"pattern indexes are ordered as they appear in the song." +msgstr "" + +#: src/gui/exportOptions.cpp:183 +msgid "direct stream mode" +msgstr "" + +#: src/gui/exportOptions.cpp:186 +msgid "" +"required for DualPCM and MSM6258 export.\n" +"\n" +"allows for volume/direction changes when playing samples,\n" +"at the cost of a massive increase in file size." +msgstr "" + +#: src/gui/exportOptions.cpp:191 +msgid "chips to export:" +msgstr "" + +#: src/gui/exportOptions.cpp:200 +#, c-format +msgid "this chip is only available in VGM %d.%.2x and higher!" +msgstr "" + +#: src/gui/exportOptions.cpp:204 +msgid "this chip is not supported by the VGM format!" +msgstr "" + +#: src/gui/exportOptions.cpp:210 +#, c-format +msgid "select the chip you wish to export, but only up to %d of each type." +msgstr "" + +#: src/gui/exportOptions.cpp:222 +msgid "nothing to export" +msgstr "" + +#: src/gui/exportOptions.cpp:233 +msgid "Commander X16 Zsound Music File" +msgstr "" + +#: src/gui/exportOptions.cpp:234 +msgid "Tick Rate (Hz)" +msgstr "" + +#: src/gui/exportOptions.cpp:240 +msgid "optimize size" +msgstr "" + +#: src/gui/exportOptions.cpp:256 src/gui/editControls.cpp:630 +msgid "" +"this is NOT ROM export! only use for making sure the\n" +"Furnace Amiga emulator is working properly by\n" +"comparing it with real Amiga output." +msgstr "" + +#: src/gui/exportOptions.cpp:261 src/gui/editControls.cpp:635 +#: src/gui/settings.cpp:3925 +msgid "Directory" +msgstr "" + +#: src/gui/exportOptions.cpp:269 src/gui/editControls.cpp:638 +msgid "Bake Data" +msgstr "" + +#: src/gui/exportOptions.cpp:284 src/gui/editControls.cpp:653 +#, c-format +msgid "Done! Baked %d files." +msgstr "" + +#: src/gui/exportOptions.cpp:293 +msgid "this option exports the song to a text file.\n" +msgstr "" + +#: src/gui/exportOptions.cpp:310 +msgid "" +"this option exports a text or binary file which\n" +"contains a dump of the internal command stream\n" +"produced when playing the song.\n" +"\n" +"technical/development use only!" +msgstr "" + +#: src/gui/exportOptions.cpp:331 +msgid "" +"export in DefleMask module format.\n" +"only do it if you really, really need to, or are downgrading an existing ." +"dmf." +msgstr "" + +#: src/gui/exportOptions.cpp:335 +msgid "format version:" +msgstr "" + +#: src/gui/exportOptions.cpp:336 +msgid "1.1.3 and higher" +msgstr "" + +#: src/gui/exportOptions.cpp:337 +msgid "1.0/legacy (0.12)" +msgstr "" + +#: src/gui/exportOptions.cpp:357 src/gui/settings.cpp:1253 +#: src/gui/settings.cpp:3929 +msgid "Audio" +msgstr "" + +#: src/gui/exportOptions.cpp:361 src/gui/settings.cpp:3931 +msgid "VGM" +msgstr "" + +#: src/gui/exportOptions.cpp:370 src/gui/settings.cpp:3932 +msgid "ZSM" +msgstr "" + +#: src/gui/exportOptions.cpp:380 +msgid "Amiga Validation" +msgstr "" + +#: src/gui/exportOptions.cpp:385 src/gui/settings.cpp:2959 +#: src/gui/settings.cpp:3891 +msgid "Text" +msgstr "" + +#: src/gui/exportOptions.cpp:389 +msgid "Command Stream" +msgstr "" + +#: src/gui/exportOptions.cpp:393 +msgid "DMF" +msgstr "" + +#: src/gui/exportOptions.cpp:422 +msgid "congratulations! you've unlocked a secret panel." +msgstr "" + +#: src/gui/exportOptions.cpp:423 +msgid "Toggle hidden systems" +msgstr "" + +#: src/gui/exportOptions.cpp:427 +msgid "Toggle all instrument types" +msgstr "" + +#: src/gui/exportOptions.cpp:431 +msgid "Set pitch linearity to Partial" +msgstr "" + +#: src/gui/exportOptions.cpp:435 +msgid "Enable multi-threading settings" +msgstr "" + +#: src/gui/exportOptions.cpp:439 +msgid "Set fat to max" +msgstr "" + +#: src/gui/exportOptions.cpp:446 +msgid "Set muscle and fat to zero" +msgstr "" + +#: src/gui/exportOptions.cpp:453 +msgid "Tell tildearrow this must be a mistake" +msgstr "" + +#: src/gui/exportOptions.cpp:454 +msgid "" +"yeah, it's a bug. write a bug report in the GitHub page and tell me how did " +"you get here." +msgstr "" + +#: src/gui/speed.cpp:32 src/gui/speed.cpp:102 src/gui/editControls.cpp:532 +#: src/gui/sysConf.cpp:2148 src/gui/guiConst.cpp:232 src/gui/guiConst.cpp:581 +#: src/gui/insEdit.cpp:2028 src/gui/insEdit.cpp:5693 src/gui/insEdit.cpp:6885 +msgid "Speed" +msgstr "" + +#: src/gui/speed.cpp:41 +msgid "Base Tempo##TempoOrHz" +msgstr "" + +#: src/gui/speed.cpp:41 +msgid "Tick Rate##TempoOrHz" +msgstr "" + +#: src/gui/speed.cpp:46 +msgid "click to display tick rate" +msgstr "" + +#: src/gui/speed.cpp:48 +msgid "click to display base tempo" +msgstr "" + +#: src/gui/speed.cpp:80 +msgid "Groove" +msgstr "" + +#: src/gui/speed.cpp:87 +msgid "click for one speed" +msgstr "" + +#: src/gui/speed.cpp:90 +msgid "Speeds" +msgstr "" + +#: src/gui/speed.cpp:99 +msgid "click for groove pattern" +msgstr "" + +#: src/gui/speed.cpp:110 +msgid "click for two (alternating) speeds" +msgstr "" + +#: src/gui/speed.cpp:168 +msgid "Virtual Tempo" +msgstr "" + +#: src/gui/speed.cpp:177 +msgid "Numerator" +msgstr "" + +#: src/gui/speed.cpp:187 +msgid "Denominator (set to base tempo)" +msgstr "" + +#: src/gui/speed.cpp:193 +msgid "Divider" +msgstr "" + +#: src/gui/speed.cpp:208 +msgid "Highlight" +msgstr "" + +#: src/gui/speed.cpp:231 +msgid "Pattern Length" +msgstr "" + +#: src/gui/speed.cpp:245 +msgid "Song Length" +msgstr "" + +#: src/gui/channels.cpp:40 src/gui/editControls.cpp:446 +#: src/gui/guiConst.cpp:601 src/gui/gui.cpp:6280 +msgid "Channels" +msgstr "" + +#: src/gui/channels.cpp:49 +msgid "Pat" +msgstr "" + +#: src/gui/channels.cpp:51 src/gui/editControls.cpp:550 +msgid "Osc" +msgstr "" + +#: src/gui/channels.cpp:53 +msgid "Swap" +msgstr "" + +#: src/gui/channels.cpp:55 src/gui/userPresets.cpp:368 +#: src/gui/effectList.cpp:45 src/gui/subSongs.cpp:125 src/gui/settings.cpp:1060 +#: src/gui/settings.cpp:4383 src/gui/sampleEdit.cpp:195 src/gui/songInfo.cpp:40 +#: src/gui/sysManager.cpp:54 src/gui/insEdit.cpp:5288 +msgid "Name" +msgstr "" + +#: src/gui/channels.cpp:64 +msgid "Show in pattern" +msgstr "" + +#: src/gui/channels.cpp:71 +msgid "Show in per-channel oscilloscope" +msgstr "" + +#: src/gui/channels.cpp:82 +#, c-format +msgid "" +"%s #%d\n" +"(drag to swap channels)" +msgstr "" + +#: src/gui/commandPalette.cpp:51 src/gui/sysPicker.cpp:35 +#: src/gui/newSong.cpp:133 +msgid "Search..." +msgstr "" + +#: src/gui/commandPalette.cpp:54 +msgid "Search recent files..." +msgstr "" + +#: src/gui/commandPalette.cpp:57 +msgid "Search instruments..." +msgstr "" + +#: src/gui/commandPalette.cpp:60 +msgid "Search samples..." +msgstr "" + +#: src/gui/commandPalette.cpp:63 +msgid "Search instruments (to change to)..." +msgstr "" + +#: src/gui/commandPalette.cpp:66 +msgid "Search chip (to add)..." +msgstr "" + +#: src/gui/commandPalette.cpp:93 src/gui/commandPalette.cpp:167 +msgid "- None -" +msgstr "" + +#: src/gui/commandPalette.cpp:123 src/gui/commandPalette.cpp:179 +#: src/gui/commandPalette.cpp:241 +msgid "invalid command palette type" +msgstr "" + +#: src/gui/regView.cpp:30 src/gui/guiConst.cpp:604 +msgid "Register View" +msgstr "" + +#: src/gui/regView.cpp:38 +msgid "- no register pool available" +msgstr "" + +#: src/gui/log.cpp:25 src/gui/effectList.cpp:84 +msgid "ERROR" +msgstr "" + +#: src/gui/log.cpp:26 +msgid "warning" +msgstr "" + +#: src/gui/log.cpp:27 +msgid "info" +msgstr "" + +#: src/gui/log.cpp:28 src/gui/gui.cpp:4513 +msgid "debug" +msgstr "" + +#: src/gui/log.cpp:29 +msgid "trace" +msgstr "" + +#: src/gui/log.cpp:47 src/gui/settings.cpp:4243 src/gui/guiConst.cpp:605 +msgid "Log Viewer" +msgstr "" + +#: src/gui/log.cpp:48 src/gui/editControls.cpp:750 src/gui/editControls.cpp:883 +#: src/gui/editControls.cpp:1000 +msgid "Follow" +msgstr "" + +#: src/gui/log.cpp:50 src/gui/waveEdit.cpp:681 src/gui/insEdit.cpp:50 +msgid "Level" +msgstr "" + +#: src/gui/log.cpp:68 +msgid "time" +msgstr "" + +#: src/gui/log.cpp:70 +msgid "level" +msgstr "" + +#: src/gui/log.cpp:72 +msgid "message" +msgstr "" + +#: src/gui/pattern.cpp:433 src/gui/editControls.cpp:421 +#: src/gui/editControls.cpp:754 src/gui/editControls.cpp:887 +#: src/gui/editControls.cpp:1015 src/gui/settings.cpp:2344 +#: src/gui/settings.cpp:3297 src/gui/settings.cpp:4100 +#: src/gui/findReplace.cpp:794 src/gui/guiConst.cpp:582 src/gui/gui.cpp:5899 +msgid "Pattern" +msgstr "" + +#: src/gui/pattern.cpp:468 +msgid "there aren't any channels to show." +msgstr "" + +#: src/gui/pattern.cpp:492 +msgid "click for pattern options (effect columns/pattern names/visualizer)" +msgstr "" + +#: src/gui/pattern.cpp:504 +msgid "Options:" +msgstr "" + +#: src/gui/pattern.cpp:506 +msgid "Effect columns/collapse" +msgstr "" + +#: src/gui/pattern.cpp:507 +msgid "Pattern names" +msgstr "" + +#: src/gui/pattern.cpp:508 +msgid "Channel group hints" +msgstr "" + +#: src/gui/pattern.cpp:509 +msgid "Visualizer" +msgstr "" + +#: src/gui/pattern.cpp:517 +msgid "Channel status:" +msgstr "" + +#: src/gui/pattern.cpp:519 +msgid "No##_PCS0" +msgstr "" + +#: src/gui/pattern.cpp:522 +msgid "Yes##_PCS1" +msgstr "" + +#: src/gui/pattern.cpp:1420 src/gui/pattern.cpp:1452 +msgid "WARNING!!" +msgstr "" + +#: src/gui/pattern.cpp:1422 src/gui/pattern.cpp:1459 +msgid "this instrument cannot be previewed because" +msgstr "" + +#: src/gui/pattern.cpp:1423 src/gui/pattern.cpp:1466 +msgid "none of the chips can play it" +msgstr "" + +#: src/gui/pattern.cpp:1424 src/gui/pattern.cpp:1473 +msgid "your instrument is in peril!! be careful..." +msgstr "" + +#: src/gui/osc.cpp:169 src/gui/settings.cpp:3710 src/gui/settings.cpp:3937 +msgid "Oscilloscope" +msgstr "" + +#: src/gui/osc.cpp:176 +#, c-format +msgid "zoom: %.2fx (%.1fdB)" +msgstr "" + +#: src/gui/osc.cpp:187 +#, c-format +msgid "window size: %.1fms" +msgstr "" + +#: src/gui/osc.cpp:385 +msgid "(-Infinity)dB" +msgstr "" + +#: src/gui/debugWindow.cpp:66 src/gui/editControls.cpp:610 +msgid "Debug" +msgstr "" + +#: src/gui/debugWindow.cpp:663 +msgid "This is a language test." +msgstr "" + +#: src/gui/debugWindow.cpp:664 +msgid "This is another language test." +msgstr "" + +#: src/gui/debugWindow.cpp:720 +#, c-format +msgid "%d apple" +msgid_plural "%d apples" +msgstr[0] "" +msgstr[1] "" + +#: src/gui/chanOsc.cpp:32 +msgid "None (0%)" +msgstr "" + +#: src/gui/chanOsc.cpp:33 +msgid "None (50%)" +msgstr "" + +#: src/gui/chanOsc.cpp:34 +msgid "None (100%)" +msgstr "" + +#: src/gui/chanOsc.cpp:36 +msgid "Frequency" +msgstr "" + +#: src/gui/chanOsc.cpp:38 src/gui/settings.cpp:1667 src/gui/settings.cpp:3406 +#: src/gui/settings.cpp:4088 +msgid "Channel" +msgstr "" + +#: src/gui/chanOsc.cpp:39 +msgid "Brightness" +msgstr "" + +#: src/gui/chanOsc.cpp:41 +msgid "Note Trigger" +msgstr "" + +#: src/gui/chanOsc.cpp:45 +msgid "Off" +msgstr "" + +#: src/gui/chanOsc.cpp:46 +msgid "Mode 1" +msgstr "" + +#: src/gui/chanOsc.cpp:47 +msgid "Mode 2" +msgstr "" + +#: src/gui/chanOsc.cpp:48 +msgid "Mode 3" +msgstr "" + +#: src/gui/chanOsc.cpp:135 src/gui/guiConst.cpp:607 +msgid "Oscilloscope (per-channel)" +msgstr "" + +#: src/gui/chanOsc.cpp:143 +msgid "Columns" +msgstr "" + +#: src/gui/chanOsc.cpp:152 +msgid "Size (ms)" +msgstr "" + +#: src/gui/chanOsc.cpp:163 +msgid "Automatic columns" +msgstr "" + +#: src/gui/chanOsc.cpp:177 +msgid "Center waveform" +msgstr "" + +#: src/gui/chanOsc.cpp:183 +msgid "Randomize phase on note" +msgstr "" + +#: src/gui/chanOsc.cpp:189 +msgid "Amplitude" +msgstr "" + +#: src/gui/chanOsc.cpp:199 src/gui/settings.cpp:3747 +msgid "Line size" +msgstr "" + +#: src/gui/chanOsc.cpp:211 +msgid "Gradient" +msgstr "" + +#: src/gui/chanOsc.cpp:218 +msgid "error while creating gradient texture!" +msgstr "" + +#: src/gui/chanOsc.cpp:236 +msgid "error while updating gradient texture!" +msgstr "" + +#: src/gui/chanOsc.cpp:292 src/gui/chanOsc.cpp:348 src/gui/settings.cpp:3793 +msgid "Color" +msgstr "" + +#: src/gui/chanOsc.cpp:296 +msgid "Distance" +msgstr "" + +#: src/gui/chanOsc.cpp:305 +msgid "Spread" +msgstr "" + +#: src/gui/chanOsc.cpp:314 src/gui/userPresets.cpp:370 src/gui/subSongs.cpp:121 +#: src/gui/settings.cpp:2281 src/gui/sysManager.cpp:124 +msgid "Remove" +msgstr "" + +#: src/gui/chanOsc.cpp:338 src/gui/settings.cpp:3885 src/gui/settings.cpp:4165 +#: src/gui/settings.cpp:4192 src/gui/settings.cpp:4218 +msgid "Background" +msgstr "" + +#: src/gui/chanOsc.cpp:341 +msgid "X Axis##AxisX" +msgstr "" + +#: src/gui/chanOsc.cpp:342 +msgid "Y Axis##AxisY" +msgstr "" + +#: src/gui/chanOsc.cpp:352 +msgid "Text format:" +msgstr "" + +#: src/gui/chanOsc.cpp:358 +msgid "" +"format guide:\n" +"- %c: channel name\n" +"- %C: channel short name\n" +"- %d: channel number (starting from 0)\n" +"- %D: channel number (starting from 1)\n" +"- %n: channel note\n" +"- %i: instrument name\n" +"- %I: instrument number (decimal)\n" +"- %x: instrument number (hex)\n" +"- %s: chip name\n" +"- %p: chip part number\n" +"- %S: chip ID\n" +"- %v: volume (decimal)\n" +"- %V: volume (percentage)\n" +"- %b: volume (hex)\n" +"- %l: new line\n" +"- %%: percent sign" +msgstr "" + +#: src/gui/chanOsc.cpp:380 +msgid "Text color" +msgstr "" + +#: src/gui/chanOsc.cpp:382 src/gui/xyOsc.cpp:80 src/gui/settings.cpp:6672 +#: src/gui/tutorial.cpp:689 src/gui/gui.cpp:5639 src/gui/gui.cpp:6055 +#: src/gui/gui.cpp:6223 src/gui/gui.cpp:6322 src/gui/gui.cpp:6371 +msgid "OK" +msgstr "" + +#: src/gui/chanOsc.cpp:400 +msgid "creating chan osc work pool" +msgstr "" + +#: src/gui/chanOsc.cpp:429 +#, c-format +msgid "creating FFT plan for channel %d" +msgstr "" + +#: src/gui/chanOsc.cpp:436 +msgid "failed to create plan!" +msgstr "" + +#: src/gui/chanOsc.cpp:438 +msgid "failed to create inverse plan!" +msgstr "" + +#: src/gui/chanOsc.cpp:440 +msgid "failed to create FFT buffers" +msgstr "" + +#: src/gui/chanOsc.cpp:585 +msgid "Error!" +msgstr "" + +#: src/gui/editControls.cpp:47 src/gui/sampleEdit.cpp:1736 src/gui/gui.cpp:2733 +#: src/gui/insEdit.cpp:363 +msgid "cut" +msgstr "" + +#: src/gui/editControls.cpp:48 src/gui/sampleEdit.cpp:1740 src/gui/gui.cpp:2734 +#: src/gui/insEdit.cpp:7538 +msgid "copy" +msgstr "" + +#: src/gui/editControls.cpp:49 src/gui/sampleEdit.cpp:1744 src/gui/gui.cpp:2735 +#: src/gui/gui.cpp:2788 src/gui/insEdit.cpp:7543 +msgid "paste" +msgstr "" + +#: src/gui/editControls.cpp:51 +msgid "" +"select\n" +"all" +msgstr "" + +#: src/gui/editControls.cpp:52 +msgid "piano" +msgstr "" + +#: src/gui/editControls.cpp:53 src/gui/gui.cpp:4429 +msgid "undo" +msgstr "" + +#: src/gui/editControls.cpp:54 src/gui/gui.cpp:4430 +msgid "redo" +msgstr "" + +#: src/gui/editControls.cpp:57 +msgid "" +"paste\n" +"mix" +msgstr "" + +#: src/gui/editControls.cpp:58 +msgid "" +"paste\n" +"mix bg" +msgstr "" + +#: src/gui/editControls.cpp:59 +msgid "" +"paste\n" +"ins" +msgstr "" + +#: src/gui/editControls.cpp:60 +msgid "" +"paste\n" +"ins bg" +msgstr "" + +#: src/gui/editControls.cpp:61 +msgid "" +"paste\n" +"flood" +msgstr "" + +#: src/gui/editControls.cpp:62 +msgid "" +"paste\n" +"overflow" +msgstr "" + +#: src/gui/editControls.cpp:63 +msgid "" +"transpose\n" +"notes" +msgstr "" + +#: src/gui/editControls.cpp:64 +msgid "" +"transpose\n" +"values" +msgstr "" + +#: src/gui/editControls.cpp:67 +msgid "" +"change\n" +"ins" +msgstr "" + +#: src/gui/editControls.cpp:68 +msgid "" +"find/\n" +"replace" +msgstr "" + +#: src/gui/editControls.cpp:69 src/gui/gui.cpp:3063 +msgid "collapse" +msgstr "" + +#: src/gui/editControls.cpp:70 src/gui/gui.cpp:3064 +msgid "expand" +msgstr "" + +#: src/gui/editControls.cpp:71 src/gui/gui.cpp:2820 +msgid "flip" +msgstr "" + +#: src/gui/editControls.cpp:72 src/gui/insEdit.cpp:430 +msgid "invert" +msgstr "" + +#: src/gui/editControls.cpp:73 src/gui/gui.cpp:2800 src/gui/gui.cpp:2960 +msgid "interpolate" +msgstr "" + +#: src/gui/editControls.cpp:74 src/gui/gui.cpp:2812 src/gui/insEdit.cpp:7610 +msgid "scale" +msgstr "" + +#: src/gui/editControls.cpp:77 src/gui/gui.cpp:2804 +msgid "fade" +msgstr "" + +#: src/gui/editControls.cpp:78 src/gui/gui.cpp:2816 src/gui/insEdit.cpp:7639 +msgid "randomize" +msgstr "" + +#: src/gui/editControls.cpp:79 +msgid "opmask" +msgstr "" + +#: src/gui/editControls.cpp:80 +msgid "" +"scroll\n" +"mode" +msgstr "" + +#: src/gui/editControls.cpp:81 +msgid "" +"input\n" +"latch" +msgstr "" + +#: src/gui/editControls.cpp:82 +msgid "" +"set\n" +"latch" +msgstr "" + +#: src/gui/editControls.cpp:83 +msgid "" +"clear\n" +"latch" +msgstr "" + +#: src/gui/editControls.cpp:84 src/gui/findReplace.cpp:43 +#: src/gui/insEdit.cpp:7557 +msgid "clear" +msgstr "" + +#: src/gui/editControls.cpp:333 +msgid "Mobile Controls" +msgstr "" + +#: src/gui/editControls.cpp:408 +msgid "Mobile Menu" +msgstr "" + +#: src/gui/editControls.cpp:425 src/gui/editControls.cpp:752 +#: src/gui/editControls.cpp:885 src/gui/editControls.cpp:1007 +#: src/gui/settings.cpp:2485 src/gui/settings.cpp:3271 +#: src/gui/settings.cpp:3975 src/gui/orders.cpp:232 src/gui/guiConst.cpp:577 +#: src/gui/gui.cpp:5888 +msgid "Orders" +msgstr "" + +#: src/gui/editControls.cpp:429 src/gui/findReplace.cpp:669 +#: src/gui/findReplace.cpp:914 +msgid "Ins" +msgstr "" + +#: src/gui/editControls.cpp:442 src/gui/findReplace.cpp:788 +#: src/gui/guiConst.cpp:230 +msgid "Song" +msgstr "" + +#: src/gui/editControls.cpp:450 src/gui/sampleEdit.cpp:494 +msgid "Chips" +msgstr "" + +#: src/gui/editControls.cpp:458 src/gui/settings.cpp:2117 +#: src/gui/settings.cpp:3934 src/gui/settings.cpp:4018 +#: src/gui/compatFlags.cpp:319 +msgid "Other" +msgstr "" + +#: src/gui/editControls.cpp:487 src/gui/guiConst.cpp:531 +msgid "New" +msgstr "" + +#: src/gui/editControls.cpp:491 src/gui/doAction.cpp:38 src/gui/gui.cpp:4194 +msgid "Unsaved changes! Save changes before creating a new song?" +msgstr "" + +#: src/gui/editControls.cpp:507 +msgid "Save as..." +msgstr "" + +#: src/gui/editControls.cpp:516 src/gui/gui.cpp:1680 +msgid "Restore Backup" +msgstr "" + +#: src/gui/editControls.cpp:524 +msgid "Song Info" +msgstr "" + +#: src/gui/editControls.cpp:528 src/gui/subSongs.cpp:17 +#: src/gui/guiConst.cpp:608 +msgid "Subsongs" +msgstr "" + +#: src/gui/editControls.cpp:541 +msgid "Channels here..." +msgstr "" + +#: src/gui/editControls.cpp:544 +msgid "Chips here..." +msgstr "" + +#: src/gui/editControls.cpp:547 +msgid "What the hell..." +msgstr "" + +#: src/gui/editControls.cpp:554 +msgid "ChanOsc" +msgstr "" + +#: src/gui/editControls.cpp:558 +msgid "RegView" +msgstr "" + +#: src/gui/editControls.cpp:562 +msgid "Stats" +msgstr "" + +#: src/gui/editControls.cpp:566 src/gui/guiConst.cpp:611 src/gui/grooves.cpp:35 +msgid "Grooves" +msgstr "" + +#: src/gui/editControls.cpp:569 +msgid "Compat Flags" +msgstr "" + +#: src/gui/editControls.cpp:573 +msgid "XYOsc" +msgstr "" + +#: src/gui/editControls.cpp:577 +msgid "Meter" +msgstr "" + +#: src/gui/editControls.cpp:581 +msgid "Memory" +msgstr "" + +#: src/gui/editControls.cpp:585 +msgid "CV" +msgstr "" + +#: src/gui/editControls.cpp:589 +msgid "Presets" +msgstr "" + +#: src/gui/editControls.cpp:593 +msgid "PatManager" +msgstr "" + +#: src/gui/editControls.cpp:599 src/gui/guiConst.cpp:564 +msgid "Panic" +msgstr "" + +#: src/gui/editControls.cpp:601 src/gui/settings.cpp:560 +#: src/gui/guiConst.cpp:589 src/gui/guiConst.cpp:591 src/gui/gui.cpp:4439 +msgid "Settings" +msgstr "" + +#: src/gui/editControls.cpp:606 +msgid "Log" +msgstr "" + +#: src/gui/editControls.cpp:614 src/gui/guiConst.cpp:587 +msgid "About" +msgstr "" + +#: src/gui/editControls.cpp:619 +msgid "Switch to Desktop Mode" +msgstr "" + +#: src/gui/editControls.cpp:673 src/gui/editControls.cpp:784 +#: src/gui/editControls.cpp:904 +msgid "Play/Edit Controls" +msgstr "" + +#: src/gui/editControls.cpp:681 src/gui/editControls.cpp:842 +#: src/gui/editControls.cpp:959 src/gui/editControls.cpp:1125 +msgid "Octave" +msgstr "" + +#: src/gui/editControls.cpp:698 src/gui/editControls.cpp:857 +msgid "Coarse Step" +msgstr "" + +#: src/gui/editControls.cpp:698 src/gui/editControls.cpp:857 +msgid "Edit Step" +msgstr "" + +#: src/gui/editControls.cpp:731 src/gui/editControls.cpp:797 +#: src/gui/editControls.cpp:911 src/gui/editControls.cpp:1048 +#: src/gui/guiConst.cpp:545 +msgid "Play" +msgstr "" + +#: src/gui/editControls.cpp:739 src/gui/editControls.cpp:789 +#: src/gui/editControls.cpp:918 src/gui/editControls.cpp:1040 +#: src/gui/guiConst.cpp:546 +msgid "Stop" +msgstr "" + +#: src/gui/editControls.cpp:742 src/gui/editControls.cpp:826 +#: src/gui/editControls.cpp:943 src/gui/editControls.cpp:1082 +#: src/gui/gui.cpp:4426 +msgid "Edit" +msgstr "" + +#: src/gui/editControls.cpp:757 src/gui/editControls.cpp:816 +#: src/gui/editControls.cpp:934 src/gui/editControls.cpp:1104 +msgid "Repeat pattern" +msgstr "" + +#: src/gui/editControls.cpp:766 src/gui/editControls.cpp:806 +#: src/gui/editControls.cpp:925 src/gui/editControls.cpp:1073 +msgid "Step one row" +msgstr "" + +#: src/gui/editControls.cpp:771 src/gui/editControls.cpp:891 +#: src/gui/editControls.cpp:1020 src/gui/editControls.cpp:1110 +msgid "Poly##PolyInput" +msgstr "" + +#: src/gui/editControls.cpp:771 src/gui/editControls.cpp:891 +#: src/gui/editControls.cpp:1020 src/gui/editControls.cpp:1110 +msgid "Mono##PolyInput" +msgstr "" + +#: src/gui/editControls.cpp:776 src/gui/editControls.cpp:896 +#: src/gui/editControls.cpp:1025 src/gui/editControls.cpp:1115 +msgid "Polyphony" +msgstr "" + +#: src/gui/editControls.cpp:957 +msgid "Oct." +msgstr "" + +#: src/gui/editControls.cpp:974 src/gui/editControls.cpp:1142 +msgid "Coarse" +msgstr "" + +#: src/gui/editControls.cpp:974 src/gui/editControls.cpp:1142 +msgid "Step" +msgstr "" + +#: src/gui/editControls.cpp:998 +msgid "Foll." +msgstr "" + +#: src/gui/editControls.cpp:1003 +msgid "Ord##FollowOrders" +msgstr "" + +#: src/gui/editControls.cpp:1011 +msgid "Pat##FollowPattern" +msgstr "" + +#: src/gui/editControls.cpp:1033 +msgid "Play Controls" +msgstr "" + +#: src/gui/editControls.cpp:1057 +msgid "Play from the beginning of this pattern" +msgstr "" + +#: src/gui/editControls.cpp:1065 +msgid "Repeat from the beginning of this pattern" +msgstr "" + +#: src/gui/editControls.cpp:1122 src/gui/guiConst.cpp:576 +msgid "Edit Controls" +msgstr "" + +#: src/gui/editControls.cpp:1169 src/gui/guiConst.cpp:560 +msgid "Follow orders" +msgstr "" + +#: src/gui/editControls.cpp:1170 src/gui/guiConst.cpp:561 +msgid "Follow pattern" +msgstr "" + +#: src/gui/songNotes.cpp:32 src/gui/guiConst.cpp:600 +msgid "Song Comments" +msgstr "" + +#: src/gui/util.cpp:93 +msgid "" +msgstr "" + +#: src/gui/util.cpp:97 +msgid "Ctrl-" +msgstr "" + +#: src/gui/util.cpp:99 +msgid "Alt-" +msgstr "" + +#: src/gui/util.cpp:100 +msgid "Shift-" +msgstr "" + +#: src/gui/stats.cpp:31 src/gui/guiConst.cpp:597 +msgid "Statistics" +msgstr "" + +#: src/gui/stats.cpp:36 +msgid "Audio load" +msgstr "" + +#: src/gui/xyOsc.cpp:40 src/gui/guiConst.cpp:612 +msgid "Oscilloscope (X-Y)" +msgstr "" + +#: src/gui/xyOsc.cpp:45 +msgid "X Channel" +msgstr "" + +#: src/gui/xyOsc.cpp:51 +msgid "Invert##X" +msgstr "" + +#: src/gui/xyOsc.cpp:52 +msgid "Y Channel" +msgstr "" + +#: src/gui/xyOsc.cpp:58 +msgid "Invert##Y" +msgstr "" + +#: src/gui/xyOsc.cpp:59 src/gui/sampleEdit.cpp:1353 +msgid "Zoom" +msgstr "" + +#: src/gui/xyOsc.cpp:71 +msgid "Decay Time (ms)" +msgstr "" + +#: src/gui/xyOsc.cpp:74 +msgid "Intensity" +msgstr "" + +#: src/gui/xyOsc.cpp:77 +msgid "Line Thickness" +msgstr "" + +#: src/gui/xyOsc.cpp:213 +msgid "(-Infinity)dB,(-Infinity)dB" +msgstr "" + +#: src/gui/xyOsc.cpp:215 +#, c-format +msgid "(-Infinity)dB,%.1fdB" +msgstr "" + +#: src/gui/xyOsc.cpp:217 +#, c-format +msgid "%.1fdB,(-Infinity)dB" +msgstr "" + +#: src/gui/xyOsc.cpp:219 +#, c-format +msgid "%.1fdB,%.1fdB" +msgstr "" + +#: src/gui/sysConf.cpp:49 src/gui/sysConf.cpp:121 src/gui/sysConf.cpp:486 +#: src/gui/sysConf.cpp:604 src/gui/sysConf.cpp:647 src/gui/sysConf.cpp:684 +#: src/gui/sysConf.cpp:843 src/gui/sysConf.cpp:1098 src/gui/sysConf.cpp:1181 +#: src/gui/sysConf.cpp:1220 src/gui/sysConf.cpp:1294 src/gui/sysConf.cpp:1380 +#: src/gui/sysConf.cpp:1444 src/gui/sysConf.cpp:1482 src/gui/sysConf.cpp:1572 +#: src/gui/sysConf.cpp:1668 src/gui/sysConf.cpp:1716 src/gui/sysConf.cpp:1757 +#: src/gui/sysConf.cpp:1810 src/gui/sysConf.cpp:2284 src/gui/sysConf.cpp:2307 +msgid "Clock rate:" +msgstr "" + +#: src/gui/sysConf.cpp:73 src/gui/sysConf.cpp:152 src/gui/sysConf.cpp:911 +#: src/gui/sysConf.cpp:1459 src/gui/sysConf.cpp:1783 +msgid "Chip type:" +msgstr "" + +#: src/gui/sysConf.cpp:75 +msgid "YM3438 (9-bit DAC)" +msgstr "" + +#: src/gui/sysConf.cpp:79 +msgid "YM2612 (9-bit DAC with distortion)" +msgstr "" + +#: src/gui/sysConf.cpp:83 +msgid "YMF276 (external DAC)" +msgstr "" + +#: src/gui/sysConf.cpp:90 src/gui/sysConf.cpp:804 src/gui/sysConf.cpp:1350 +#: src/gui/sysConf.cpp:1420 +msgid "Disable ExtCh FM macros (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:93 src/gui/sysConf.cpp:807 src/gui/sysConf.cpp:1353 +#: src/gui/sysConf.cpp:1423 +msgid "Ins change in ExtCh operator 2-4 affects FB (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:99 +msgid "Modified sine wave (joke)" +msgstr "" + +#: src/gui/sysConf.cpp:123 src/gui/sysConf.cpp:1296 src/gui/sysConf.cpp:1718 +#: src/gui/sysConf.cpp:2286 +msgid "3.58MHz (NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:127 +msgid "3.55MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:131 +msgid "4MHz (BBC Micro)" +msgstr "" + +#: src/gui/sysConf.cpp:135 +msgid "1.79MHz (Half NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:139 +msgid "3MHz (Exed Exes)" +msgstr "" + +#: src/gui/sysConf.cpp:143 +msgid "2MHz (Sega System 1)" +msgstr "" + +#: src/gui/sysConf.cpp:147 +msgid "447KHz (TI-99/4A)" +msgstr "" + +#: src/gui/sysConf.cpp:154 +msgid "Sega VDP/Master System" +msgstr "" + +#: src/gui/sysConf.cpp:162 +msgid "TI SN76489 with Atari-like short noise" +msgstr "" + +#: src/gui/sysConf.cpp:166 +msgid "Game Gear" +msgstr "" + +#: src/gui/sysConf.cpp:170 +msgid "TI SN76489A" +msgstr "" + +#: src/gui/sysConf.cpp:174 +msgid "TI SN76496" +msgstr "" + +#: src/gui/sysConf.cpp:178 +msgid "NCR 8496" +msgstr "" + +#: src/gui/sysConf.cpp:182 +msgid "Tandy PSSJ 3-voice sound" +msgstr "" + +#: src/gui/sysConf.cpp:186 +msgid "TI SN94624" +msgstr "" + +#: src/gui/sysConf.cpp:190 +msgid "TI SN76494" +msgstr "" + +#: src/gui/sysConf.cpp:196 +msgid "Disable noise period change phase reset" +msgstr "" + +#: src/gui/sysConf.cpp:200 src/gui/sysConf.cpp:2190 +msgid "Disable easy period to note mapping on upper octaves" +msgstr "" + +#: src/gui/sysConf.cpp:219 src/gui/sysConf.cpp:583 +msgid "Pseudo-PAL" +msgstr "" + +#: src/gui/sysConf.cpp:222 src/gui/sysConf.cpp:342 +msgid "Disable anti-click" +msgstr "" + +#: src/gui/sysConf.cpp:225 src/gui/sysConf.cpp:345 +msgid "Chip revision:" +msgstr "" + +#: src/gui/sysConf.cpp:227 +msgid "HuC6280 (original)" +msgstr "" + +#: src/gui/sysConf.cpp:231 +msgid "HuC6280A (SuperGrafx)" +msgstr "" + +#: src/gui/sysConf.cpp:257 +msgid "CPU rate:" +msgstr "" + +#: src/gui/sysConf.cpp:259 +msgid "6.18MHz (NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:263 +msgid "5.95MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:268 +msgid "Sample memory:" +msgstr "" + +#: src/gui/sysConf.cpp:270 +msgid "8K (rev A/B/E)" +msgstr "" + +#: src/gui/sysConf.cpp:274 +msgid "64K (rev D/F)" +msgstr "" + +#: src/gui/sysConf.cpp:279 +msgid "DAC resolution:" +msgstr "" + +#: src/gui/sysConf.cpp:281 +msgid "16-bit (rev A/B/D/F)" +msgstr "" + +#: src/gui/sysConf.cpp:285 +msgid "8-bit + TDM (rev C/E)" +msgstr "" + +#: src/gui/sysConf.cpp:290 src/gui/sysConf.cpp:1931 +msgid "Enable echo" +msgstr "" + +#: src/gui/sysConf.cpp:293 +msgid "Swap echo channels" +msgstr "" + +#: src/gui/sysConf.cpp:296 src/gui/sysConf.cpp:1151 +msgid "Echo delay:" +msgstr "" + +#: src/gui/sysConf.cpp:302 +msgid "Echo resolution:" +msgstr "" + +#: src/gui/sysConf.cpp:308 src/gui/sysConf.cpp:1159 +msgid "Echo feedback:" +msgstr "" + +#: src/gui/sysConf.cpp:314 src/gui/sysConf.cpp:1967 +msgid "Echo volume:" +msgstr "" + +#: src/gui/sysConf.cpp:347 +msgid "Original (DMG)" +msgstr "" + +#: src/gui/sysConf.cpp:351 +msgid "Game Boy Color (rev C)" +msgstr "" + +#: src/gui/sysConf.cpp:355 +msgid "Game Boy Color (rev E)" +msgstr "" + +#: src/gui/sysConf.cpp:359 +msgid "Game Boy Advance" +msgstr "" + +#: src/gui/sysConf.cpp:364 +msgid "Wave channel orientation:" +msgstr "" + +#: src/gui/sysConf.cpp:367 src/gui/compatFlags.cpp:298 src/gui/gui.cpp:6067 +#: src/gui/insEdit.cpp:217 src/gui/insEdit.cpp:231 +msgid "Normal" +msgstr "" + +#: src/gui/sysConf.cpp:371 +msgid "Inverted" +msgstr "" + +#: src/gui/sysConf.cpp:378 +msgid "Exact data (inverted)" +msgstr "" + +#: src/gui/sysConf.cpp:382 +msgid "Exact output (normal)" +msgstr "" + +#: src/gui/sysConf.cpp:388 +msgid "" +"Pretty please one more compat flag when I use arpeggio and my sound length" +msgstr "" + +#: src/gui/sysConf.cpp:405 src/gui/sysConf.cpp:438 +msgid "DAC bit depth (reduces output rate):" +msgstr "" + +#: src/gui/sysConf.cpp:426 src/gui/sysConf.cpp:1268 src/gui/sysConf.cpp:1919 +msgid "Volume scale:" +msgstr "" + +#: src/gui/sysConf.cpp:432 +msgid "Mix buffers (allows longer echo delay):" +msgstr "" + +#: src/gui/sysConf.cpp:444 +msgid "Channel limit:" +msgstr "" + +#: src/gui/sysConf.cpp:450 +msgid "Sample rate:" +msgstr "" + +#: src/gui/sysConf.cpp:460 +#, c-format +msgid "Actual sample rate: %d Hz" +msgstr "" + +#: src/gui/sysConf.cpp:462 +#, c-format +msgid "Max mixer CPU usage: %.0f%%" +msgstr "" + +#: src/gui/sysConf.cpp:488 +msgid "NTSC (3.58MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:492 src/gui/sysConf.cpp:557 +msgid "PAL (3.55MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:496 +msgid "Arcade (4MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:500 +msgid "Half NTSC (1.79MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:506 +msgid "Patch set:" +msgstr "" + +#: src/gui/sysConf.cpp:528 +msgid "Ignore top/hi-hat frequency changes" +msgstr "" + +#: src/gui/sysConf.cpp:531 +msgid "Apply fixed frequency to all drums at once" +msgstr "" + +#: src/gui/sysConf.cpp:553 +msgid "NTSC/X16 (3.58MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:561 +msgid "X1/X68000 (4MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:567 src/gui/sysConf.cpp:587 +msgid "Broken pitch macro/slides (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:607 src/gui/sysConf.cpp:650 src/gui/sysConf.cpp:1222 +#: src/gui/sysConf.cpp:2310 +msgid "NTSC (1.79MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:611 src/gui/sysConf.cpp:654 src/gui/sysConf.cpp:1226 +msgid "PAL (1.67MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:615 src/gui/sysConf.cpp:658 src/gui/sysConf.cpp:1230 +msgid "Dendy (1.77MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:621 +msgid "DPCM channel mode:" +msgstr "" + +#: src/gui/sysConf.cpp:624 +msgid "DPCM (muffled samples; low CPU usage)" +msgstr "" + +#: src/gui/sysConf.cpp:628 +msgid "PCM (crisp samples; high CPU usage)" +msgstr "" + +#: src/gui/sysConf.cpp:687 +msgid "NTSC (1.02MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:691 +msgid "PAL (0.99MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:695 +msgid "SSI 2001 (0.89MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:701 src/gui/sysConf.cpp:2320 +msgid "Global parameter priority:" +msgstr "" + +#: src/gui/sysConf.cpp:704 src/gui/sysConf.cpp:2323 +msgid "Left to right" +msgstr "" + +#: src/gui/sysConf.cpp:708 src/gui/sysConf.cpp:2327 +msgid "Last used channel" +msgstr "" + +#: src/gui/sysConf.cpp:714 +msgid "Hard reset envelope:" +msgstr "" + +#: src/gui/sysConf.cpp:716 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:1920 +#: src/gui/insEdit.cpp:6955 src/gui/insEdit.cpp:7481 +msgid "Attack" +msgstr "" + +#: src/gui/sysConf.cpp:721 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:1960 +#: src/gui/insEdit.cpp:6956 src/gui/insEdit.cpp:7482 +msgid "Decay" +msgstr "" + +#: src/gui/sysConf.cpp:726 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:1929 +#: src/gui/insEdit.cpp:6957 src/gui/insEdit.cpp:7483 +msgid "Sustain" +msgstr "" + +#: src/gui/sysConf.cpp:731 src/gui/settings.cpp:3987 src/gui/insEdit.cpp:50 +#: src/gui/insEdit.cpp:604 src/gui/insEdit.cpp:1983 src/gui/insEdit.cpp:6958 +#: src/gui/insEdit.cpp:7484 +msgid "Release" +msgstr "" + +#: src/gui/sysConf.cpp:737 +msgid "Envelope reset time:" +msgstr "" + +#: src/gui/sysConf.cpp:747 +msgid "" +"- 0 disables envelope reset. not recommended!\n" +"- 1 may trigger SID envelope bugs.\n" +"- values that are too high may result in notes being skipped." +msgstr "" + +#: src/gui/sysConf.cpp:749 +msgid "Disable 1Exy env update (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:753 +msgid "Relative duty and cutoff macros are coarse (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:757 +msgid "Cutoff macro race conditions (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:793 +msgid "8MHz (Neo Geo MVS)" +msgstr "" + +#: src/gui/sysConf.cpp:797 +msgid "8.06MHz (Neo Geo AES)" +msgstr "" + +#: src/gui/sysConf.cpp:812 src/gui/sysConf.cpp:1337 src/gui/sysConf.cpp:1407 +msgid "SSG Volume" +msgstr "" + +#: src/gui/sysConf.cpp:818 src/gui/sysConf.cpp:1413 +msgid "FM/ADPCM Volume" +msgstr "" + +#: src/gui/sysConf.cpp:845 +msgid "1.79MHz (ZX Spectrum NTSC/MSX)" +msgstr "" + +#: src/gui/sysConf.cpp:849 +msgid "1.77MHz (ZX Spectrum PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:853 +msgid "0.83MHz (Pre-divided Sunsoft 5B on PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:857 +msgid "0.89MHz (Pre-divided Sunsoft 5B)" +msgstr "" + +#: src/gui/sysConf.cpp:861 +msgid "1MHz (Amstrad CPC)" +msgstr "" + +#: src/gui/sysConf.cpp:865 +msgid "1.10MHz (Gamate/VIC-20 PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:869 +msgid "1.25MHz (Mag Max)" +msgstr "" + +#: src/gui/sysConf.cpp:873 +msgid "1.5MHz (Vectrex)" +msgstr "" + +#: src/gui/sysConf.cpp:877 +msgid "1.536MHz (Kyugo)" +msgstr "" + +#: src/gui/sysConf.cpp:881 +msgid "1.67MHz (?)" +msgstr "" + +#: src/gui/sysConf.cpp:885 +msgid "1.75MHz (ZX Spectrum 48K)" +msgstr "" + +#: src/gui/sysConf.cpp:889 +msgid "1.99MHz (PC-88)" +msgstr "" + +#: src/gui/sysConf.cpp:893 +msgid "2MHz (Atari ST/Sharp X1)" +msgstr "" + +#: src/gui/sysConf.cpp:897 +msgid "2^21Hz (Game Boy)" +msgstr "" + +#: src/gui/sysConf.cpp:901 +msgid "3.58MHz (Darky)" +msgstr "" + +#: src/gui/sysConf.cpp:905 +msgid "3.6MHz (Darky)" +msgstr "" + +#: src/gui/sysConf.cpp:917 +msgid "YM2149(F)" +msgstr "" + +#: src/gui/sysConf.cpp:921 +msgid "Sunsoft 5B" +msgstr "" + +#: src/gui/sysConf.cpp:925 +msgid "AY-3-8914" +msgstr "" + +#: src/gui/sysConf.cpp:931 +msgid "note: AY-3-8914 is not supported by the VGM format!" +msgstr "" + +#: src/gui/sysConf.cpp:935 +msgid "Stereo##_AY_STEREO" +msgstr "" + +#: src/gui/sysConf.cpp:940 +msgid "Separation" +msgstr "" + +#: src/gui/sysConf.cpp:949 +msgid "Half Clock divider##_AY_CLKSEL" +msgstr "" + +#: src/gui/sysConf.cpp:971 +msgid "SAM Coupé (8MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:975 +msgid "NTSC (7.15MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:979 +msgid "PAL (7.09MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:999 +msgid "Stereo separation:" +msgstr "" + +#: src/gui/sysConf.cpp:1006 src/gui/sysConf.cpp:2412 +msgid "Model:" +msgstr "" + +#: src/gui/sysConf.cpp:1008 +msgid "Amiga 500 (OCS)" +msgstr "" + +#: src/gui/sysConf.cpp:1012 +msgid "Amiga 1200 (AGA)" +msgstr "" + +#: src/gui/sysConf.cpp:1018 +msgid "Chip memory:" +msgstr "" + +#: src/gui/sysConf.cpp:1020 +msgid "2MB (ECS/AGA max)" +msgstr "" + +#: src/gui/sysConf.cpp:1030 +msgid "512KB (OCS max)" +msgstr "" + +#: src/gui/sysConf.cpp:1043 src/gui/sysConf.cpp:1081 src/gui/sysConf.cpp:2395 +#: src/gui/sysConf.cpp:2449 +msgid "PAL" +msgstr "" + +#: src/gui/sysConf.cpp:1046 +msgid "Bypass frequency limits" +msgstr "" + +#: src/gui/sysConf.cpp:1065 +msgid "Mixing mode:" +msgstr "" + +#: src/gui/sysConf.cpp:1067 src/gui/settings.cpp:3724 +msgid "Mono" +msgstr "" + +#: src/gui/sysConf.cpp:1071 +msgid "Mono (no distortion)" +msgstr "" + +#: src/gui/sysConf.cpp:1075 src/gui/sysConf.cpp:1197 src/gui/sysConf.cpp:1864 +#: src/gui/sysConf.cpp:2204 +msgid "Stereo" +msgstr "" + +#: src/gui/sysConf.cpp:1100 +msgid "1.19MHz (PC)" +msgstr "" + +#: src/gui/sysConf.cpp:1104 +msgid "1.99MHz (PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1108 +msgid "2.46MHz (PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1114 +msgid "Speaker type:" +msgstr "" + +#: src/gui/sysConf.cpp:1116 +msgid "Unfiltered" +msgstr "" + +#: src/gui/sysConf.cpp:1120 +msgid "Cone" +msgstr "" + +#: src/gui/sysConf.cpp:1124 +msgid "Piezo" +msgstr "" + +#: src/gui/sysConf.cpp:1128 +msgid "Use system beeper (Linux only!)" +msgstr "" + +#: src/gui/sysConf.cpp:1134 +msgid "Reset phase on frequency change" +msgstr "" + +#: src/gui/sysConf.cpp:1183 +msgid "16MHz (Seta 1)" +msgstr "" + +#: src/gui/sysConf.cpp:1187 +msgid "16.67MHz (Seta 2)" +msgstr "" + +#: src/gui/sysConf.cpp:1191 src/gui/sysConf.cpp:1759 +msgid "14.32MHz (NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:1201 +msgid "Bankswitched (Seta 2)" +msgstr "" + +#: src/gui/sysConf.cpp:1235 src/gui/sysConf.cpp:1261 +msgid "Initial channel limit:" +msgstr "" + +#: src/gui/sysConf.cpp:1241 src/gui/sysConf.cpp:2398 +msgid "Disable hissing" +msgstr "" + +#: src/gui/sysConf.cpp:1244 +msgid "Scale frequency to wave length" +msgstr "" + +#: src/gui/sysConf.cpp:1300 src/gui/sysConf.cpp:1722 +msgid "3.54MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:1304 src/gui/sysConf.cpp:1726 src/gui/sysConf.cpp:2290 +msgid "4MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1308 src/gui/sysConf.cpp:1730 +msgid "3MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1312 src/gui/sysConf.cpp:1734 +msgid "3.9936MHz (PC-88/PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1316 +msgid "1.5MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1321 src/gui/sysConf.cpp:1391 src/gui/sysConf.cpp:1639 +#: src/gui/sysConf.cpp:1852 +msgid "Output rate:" +msgstr "" + +#: src/gui/sysConf.cpp:1323 src/gui/sysConf.cpp:1397 +msgid "FM: clock / 72, SSG: clock / 16" +msgstr "" + +#: src/gui/sysConf.cpp:1327 +msgid "FM: clock / 36, SSG: clock / 8" +msgstr "" + +#: src/gui/sysConf.cpp:1331 +msgid "FM: clock / 24, SSG: clock / 4" +msgstr "" + +#: src/gui/sysConf.cpp:1343 +msgid "FM Volume" +msgstr "" + +#: src/gui/sysConf.cpp:1382 +msgid "8MHz (Arcade)" +msgstr "" + +#: src/gui/sysConf.cpp:1386 +msgid "7.987MHz (PC-88/PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1393 +msgid "FM: clock / 144, SSG: clock / 32" +msgstr "" + +#: src/gui/sysConf.cpp:1401 +msgid "FM: clock / 48, SSG: clock / 8" +msgstr "" + +#: src/gui/sysConf.cpp:1446 +msgid "8MHz (FM Towns)" +msgstr "" + +#: src/gui/sysConf.cpp:1450 +msgid "10MHz (Sega System 18)" +msgstr "" + +#: src/gui/sysConf.cpp:1454 +msgid "12.5MHz (Sega CD/System 32)" +msgstr "" + +#: src/gui/sysConf.cpp:1461 +msgid "RF5C68 (10-bit output)" +msgstr "" + +#: src/gui/sysConf.cpp:1465 +msgid "RF5C164 (16-bit output)" +msgstr "" + +#: src/gui/sysConf.cpp:1520 +msgid "Sample rate table:" +msgstr "" + +#: src/gui/sysConf.cpp:1524 +msgid "divider \\ clock" +msgstr "" + +#: src/gui/sysConf.cpp:1526 +msgid "full" +msgstr "" + +#: src/gui/sysConf.cpp:1528 +msgid "half" +msgstr "" + +#: src/gui/sysConf.cpp:1641 +msgid "clock / 132" +msgstr "" + +#: src/gui/sysConf.cpp:1645 +msgid "clock / 165" +msgstr "" + +#: src/gui/sysConf.cpp:1651 +msgid "Bankswitched (NMK112)" +msgstr "" + +#: src/gui/sysConf.cpp:1670 +msgid "1.79MHz (NTSC/MSX)" +msgstr "" + +#: src/gui/sysConf.cpp:1674 +msgid "1.77MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:1678 +msgid "1.5MHz (Arcade)" +msgstr "" + +#: src/gui/sysConf.cpp:1682 +msgid "2MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1697 +msgid "Consistent frequency across all duties" +msgstr "" + +#: src/gui/sysConf.cpp:1704 +msgid "note: only works for an initial LFSR value of 0!" +msgstr "" + +#: src/gui/sysConf.cpp:1738 +msgid "3.5MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1763 +msgid "14.19MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:1767 +msgid "14MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1771 +msgid "16MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1775 +msgid "15MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1779 +msgid "33.8688MHz (OPL3-L)" +msgstr "" + +#: src/gui/sysConf.cpp:1784 +msgid "OPL3 (YMF262)" +msgstr "" + +#: src/gui/sysConf.cpp:1788 +msgid "OPL3-L (YMF289B)" +msgstr "" + +#: src/gui/sysConf.cpp:1794 +msgid "Compatible panning (0800)" +msgstr "" + +#: src/gui/sysConf.cpp:1858 +msgid "Output bit depth:" +msgstr "" + +#: src/gui/sysConf.cpp:1868 +msgid "Interpolation:" +msgstr "" + +#: src/gui/sysConf.cpp:1874 src/gui/waveEdit.cpp:38 +msgid "Linear" +msgstr "" + +#: src/gui/sysConf.cpp:1878 src/gui/waveEdit.cpp:40 +msgid "Cubic" +msgstr "" + +#: src/gui/sysConf.cpp:1882 +msgid "Sinc" +msgstr "" + +#: src/gui/sysConf.cpp:1920 +msgid "Left##VolScaleL" +msgstr "" + +#: src/gui/sysConf.cpp:1925 +msgid "Right##VolScaleL" +msgstr "" + +#: src/gui/sysConf.cpp:1935 +msgid "Initial echo state:" +msgstr "" + +#: src/gui/sysConf.cpp:1955 +msgid "Delay##EchoDelay" +msgstr "" + +#: src/gui/sysConf.cpp:1961 +msgid "Feedback##EchoFeedback" +msgstr "" + +#: src/gui/sysConf.cpp:1968 +msgid "Left##EchoVolL" +msgstr "" + +#: src/gui/sysConf.cpp:1973 +msgid "Right##EchoVolL" +msgstr "" + +#: src/gui/sysConf.cpp:1979 +msgid "Echo filter:" +msgstr "" + +#: src/gui/sysConf.cpp:1989 +msgid "Hex##SNESFHex" +msgstr "" + +#: src/gui/sysConf.cpp:1989 +msgid "Dec##SNESFHex" +msgstr "" + +#: src/gui/sysConf.cpp:2031 +#, c-format +msgid "sum: %d" +msgstr "" + +#: src/gui/sysConf.cpp:2086 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:63 +#: src/gui/insEdit.cpp:75 +msgid "Detune" +msgstr "" + +#: src/gui/sysConf.cpp:2092 +msgid "Capacitor values (nF):" +msgstr "" + +#: src/gui/sysConf.cpp:2102 +msgid "Initial part volume (channel 1-4):" +msgstr "" + +#: src/gui/sysConf.cpp:2112 +msgid "Initial part volume (channel 5-8):" +msgstr "" + +#: src/gui/sysConf.cpp:2122 +msgid "Envelope mode (channel 1-4):" +msgstr "" + +#: src/gui/sysConf.cpp:2124 +msgid "Capacitor (attack/decay)##EM00" +msgstr "" + +#: src/gui/sysConf.cpp:2128 +msgid "External (volume macro)##EM01" +msgstr "" + +#: src/gui/sysConf.cpp:2134 +msgid "Envelope mode (channel 5-8):" +msgstr "" + +#: src/gui/sysConf.cpp:2136 +msgid "Capacitor (attack/decay)##EM10" +msgstr "" + +#: src/gui/sysConf.cpp:2140 +msgid "External (volume macro)##EM11" +msgstr "" + +#: src/gui/sysConf.cpp:2146 +msgid "Global vibrato:" +msgstr "" + +#: src/gui/sysConf.cpp:2153 +msgid "Depth" +msgstr "" + +#: src/gui/sysConf.cpp:2219 src/gui/sysConf.cpp:2373 +msgid "Waveform storage mode:" +msgstr "" + +#: src/gui/sysConf.cpp:2221 +msgid "RAM" +msgstr "" + +#: src/gui/sysConf.cpp:2225 +msgid "ROM (up to 8 waves)" +msgstr "" + +#: src/gui/sysConf.cpp:2241 +msgid "Compatible noise frequencies" +msgstr "" + +#: src/gui/sysConf.cpp:2256 +msgid "Legacy slides and pitch (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:2314 +msgid "PAL (1.77MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:2344 +msgid "Banking style:" +msgstr "" + +#: src/gui/sysConf.cpp:2346 +msgid "Namco System 2 (2MB)" +msgstr "" + +#: src/gui/sysConf.cpp:2351 +msgid "Namco System 21 (4MB)" +msgstr "" + +#: src/gui/sysConf.cpp:2356 +msgid "Raw (16MB; no VGM export!)" +msgstr "" + +#: src/gui/sysConf.cpp:2375 +msgid "Dynamic (unconfirmed)" +msgstr "" + +#: src/gui/sysConf.cpp:2379 +msgid "Static (up to 5 waves)" +msgstr "" + +#: src/gui/sysConf.cpp:2414 +msgid "DS (4MB RAM)" +msgstr "" + +#: src/gui/sysConf.cpp:2418 +msgid "DSi (16MB RAM)" +msgstr "" + +#: src/gui/sysConf.cpp:2444 src/gui/settings.cpp:727 +msgid "nothing to configure" +msgstr "" + +#: src/gui/sysConf.cpp:2467 +msgid "Custom clock rate" +msgstr "" + +#: src/gui/volMeter.cpp:36 src/gui/settings.cpp:3969 src/gui/guiConst.cpp:596 +msgid "Volume Meter" +msgstr "" + +#: src/gui/userPresets.cpp:325 +msgid "User Systems" +msgstr "" + +#: src/gui/userPresets.cpp:337 +msgid "Error! User category does not exist!" +msgstr "" + +#: src/gui/userPresets.cpp:346 src/gui/newSong.cpp:181 +msgid "Systems" +msgstr "" + +#: src/gui/userPresets.cpp:349 +msgid "New Preset" +msgstr "" + +#: src/gui/userPresets.cpp:361 +msgid "select a preset" +msgstr "" + +#: src/gui/userPresets.cpp:374 +msgid "Remove##UPresetRemove" +msgstr "" + +#: src/gui/userPresets.cpp:439 src/gui/settings.cpp:1135 +msgid "Configure" +msgstr "" + +#: src/gui/userPresets.cpp:470 +msgid "Advanced" +msgstr "" + +#: src/gui/userPresets.cpp:476 +msgid "" +"insert additional settings in `option=value` format.\n" +"available options:\n" +"- tickRate" +msgstr "" + +#: src/gui/userPresets.cpp:509 +msgid "Save and Close" +msgstr "" + +#: src/gui/userPresets.cpp:515 src/gui/settings.cpp:1238 +#: src/gui/settings.cpp:2161 src/gui/settings.cpp:2553 +#: src/gui/settings.cpp:3796 +msgid "Import" +msgstr "" + +#: src/gui/userPresets.cpp:519 +msgid "Import (replace)" +msgstr "" + +#: src/gui/effectList.cpp:14 src/gui/guiConst.cpp:606 +msgid "Effect List" +msgstr "" + +#: src/gui/effectList.cpp:18 +#, c-format +msgid "Chip at cursor: %s" +msgstr "" + +#: src/gui/effectList.cpp:21 src/gui/settings.cpp:6674 +msgid "Search" +msgstr "" + +#: src/gui/effectList.cpp:25 +msgid "Effect types to show:" +msgstr "" + +#: src/gui/effectList.cpp:47 +msgid "Description" +msgstr "" + +#: src/gui/subSongs.cpp:22 src/gui/subSongs.cpp:32 +#, c-format +msgid "%d. " +msgstr "" + +#: src/gui/subSongs.cpp:73 src/gui/subSongs.cpp:93 +msgid "too many subsongs!" +msgstr "" + +#: src/gui/subSongs.cpp:114 +msgid "this is the only subsong!" +msgstr "" + +#: src/gui/subSongs.cpp:116 +msgid "are you sure you want to remove this subsong?" +msgstr "" + +#: src/gui/spoiler.cpp:30 +msgid "Spoiler" +msgstr "" + +#: src/gui/spoiler.cpp:32 +msgid "SPOILER" +msgstr "" + +#: src/gui/settings.cpp:104 src/gui/settings.cpp:114 src/gui/settings.cpp:124 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:105 src/gui/settings.cpp:115 src/gui/settings.cpp:125 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:168 +msgid "ASAP (C++ port)" +msgstr "" + +#: src/gui/settings.cpp:191 +msgid "ESFMu (fast)" +msgstr "" + +#: src/gui/settings.cpp:205 +msgid "Lower" +msgstr "" + +#: src/gui/settings.cpp:207 +msgid "Medium" +msgstr "" + +#: src/gui/settings.cpp:209 +msgid "Ultra" +msgstr "" + +#: src/gui/settings.cpp:210 +msgid "Ultimate" +msgstr "" + +#: src/gui/settings.cpp:214 +msgid "evdev SND_TONE" +msgstr "" + +#: src/gui/settings.cpp:215 +msgid "KIOCSOUND on /dev/tty1" +msgstr "" + +#: src/gui/settings.cpp:216 +msgid "/dev/port" +msgstr "" + +#: src/gui/settings.cpp:217 +msgid "KIOCSOUND on standard output" +msgstr "" + +#: src/gui/settings.cpp:218 +msgid "outb()" +msgstr "" + +#: src/gui/settings.cpp:222 src/gui/settings.cpp:232 +msgid "Disabled/custom" +msgstr "" + +#: src/gui/settings.cpp:223 +msgid "Two octaves (0 is C-4, F is D#5)" +msgstr "" + +#: src/gui/settings.cpp:224 +msgid "Raw (note number is value)" +msgstr "" + +#: src/gui/settings.cpp:225 +msgid "Two octaves alternate (lower keys are 0-9, upper keys are A-F)" +msgstr "" + +#: src/gui/settings.cpp:226 src/gui/settings.cpp:233 +msgid "Use dual control change (one for each nibble)" +msgstr "" + +#: src/gui/settings.cpp:227 src/gui/settings.cpp:234 +msgid "Use 14-bit control change" +msgstr "" + +#: src/gui/settings.cpp:228 src/gui/settings.cpp:235 +msgid "Use single control change (imprecise)" +msgstr "" + +#: src/gui/settings.cpp:239 +msgid "--select--" +msgstr "" + +#: src/gui/settings.cpp:240 src/gui/settings.cpp:241 src/gui/settings.cpp:242 +#: src/gui/settings.cpp:243 src/gui/settings.cpp:244 src/gui/settings.cpp:245 +#: src/gui/settings.cpp:246 +msgid "???" +msgstr "" + +#: src/gui/settings.cpp:247 +msgid "Note Off" +msgstr "" + +#: src/gui/settings.cpp:248 +msgid "Note On" +msgstr "" + +#: src/gui/settings.cpp:249 +msgid "Aftertouch" +msgstr "" + +#: src/gui/settings.cpp:250 src/gui/insEdit.cpp:7187 src/gui/insEdit.cpp:7217 +#: src/gui/insEdit.cpp:7382 src/gui/insEdit.cpp:7403 src/gui/insEdit.cpp:7415 +#: src/gui/insEdit.cpp:7430 +msgid "Control" +msgstr "" + +#: src/gui/settings.cpp:251 src/gui/settings.cpp:573 src/gui/settings.cpp:3177 +msgid "Program" +msgstr "" + +#: src/gui/settings.cpp:252 +msgid "ChanPressure" +msgstr "" + +#: src/gui/settings.cpp:253 +msgid "Pitch Bend" +msgstr "" + +#: src/gui/settings.cpp:254 +msgid "SysEx" +msgstr "" + +#: src/gui/settings.cpp:258 src/gui/settings.cpp:1713 src/gui/settings.cpp:1723 +#: src/gui/settings.cpp:1743 src/gui/settings.cpp:1749 +#, c-format +msgid "Any" +msgstr "" + +#: src/gui/settings.cpp:262 src/gui/settings.cpp:3363 src/gui/settings.cpp:3928 +#: src/gui/settings.cpp:4121 +msgid "Instrument" +msgstr "" + +#: src/gui/settings.cpp:264 +msgid "Effect 1 type" +msgstr "" + +#: src/gui/settings.cpp:265 +msgid "Effect 1 value" +msgstr "" + +#: src/gui/settings.cpp:266 +msgid "Effect 2 type" +msgstr "" + +#: src/gui/settings.cpp:267 +msgid "Effect 2 value" +msgstr "" + +#: src/gui/settings.cpp:268 +msgid "Effect 3 type" +msgstr "" + +#: src/gui/settings.cpp:269 +msgid "Effect 3 value" +msgstr "" + +#: src/gui/settings.cpp:270 +msgid "Effect 4 type" +msgstr "" + +#: src/gui/settings.cpp:271 +msgid "Effect 4 value" +msgstr "" + +#: src/gui/settings.cpp:272 +msgid "Effect 5 type" +msgstr "" + +#: src/gui/settings.cpp:273 +msgid "Effect 5 value" +msgstr "" + +#: src/gui/settings.cpp:274 +msgid "Effect 6 type" +msgstr "" + +#: src/gui/settings.cpp:275 +msgid "Effect 6 value" +msgstr "" + +#: src/gui/settings.cpp:276 +msgid "Effect 7 type" +msgstr "" + +#: src/gui/settings.cpp:277 +msgid "Effect 7 value" +msgstr "" + +#: src/gui/settings.cpp:278 +msgid "Effect 8 type" +msgstr "" + +#: src/gui/settings.cpp:279 +msgid "Effect 8 value" +msgstr "" + +#: src/gui/settings.cpp:315 +msgid "Press key..." +msgstr "" + +#: src/gui/settings.cpp:564 +msgid "Do you want to save your settings?" +msgstr "" + +#: src/gui/settings.cpp:571 +msgid "General" +msgstr "" + +#: src/gui/settings.cpp:588 +msgid "Language" +msgstr "" + +#: src/gui/settings.cpp:606 +msgid "Render backend" +msgstr "" + +#: src/gui/settings.cpp:661 src/gui/settings.cpp:680 src/gui/settings.cpp:1312 +msgid "you may need to restart Furnace for this setting to take effect." +msgstr "" + +#: src/gui/settings.cpp:664 +msgid "Advanced render backend settings" +msgstr "" + +#: src/gui/settings.cpp:666 +msgid "Render driver" +msgstr "" + +#: src/gui/settings.cpp:666 src/gui/settings.cpp:667 src/gui/settings.cpp:1298 +#: src/gui/settings.cpp:1299 src/gui/piano.cpp:108 +msgid "Automatic" +msgstr "" + +#: src/gui/settings.cpp:683 +msgid "" +"beware: changing these settings may render Furnace unusable! do so at your " +"own risk.\n" +"start Furnace with -safemode if you mess something up." +msgstr "" + +#: src/gui/settings.cpp:684 +msgid "Red bits" +msgstr "" + +#: src/gui/settings.cpp:689 +msgid "Green bits" +msgstr "" + +#: src/gui/settings.cpp:694 +msgid "Blue bits" +msgstr "" + +#: src/gui/settings.cpp:699 +msgid "Alpha bits" +msgstr "" + +#: src/gui/settings.cpp:704 +msgid "Color depth" +msgstr "" + +#: src/gui/settings.cpp:709 +msgid "Stencil buffer size" +msgstr "" + +#: src/gui/settings.cpp:714 src/gui/settings.cpp:1385 +msgid "Buffer size" +msgstr "" + +#: src/gui/settings.cpp:720 +msgid "Double buffer" +msgstr "" + +#: src/gui/settings.cpp:725 +msgid "" +"the following values are common (in red, green, blue, alpha order):\n" +"- 24 bits: 8, 8, 8, 0\n" +"- 16 bits: 5, 6, 5, 0\n" +"- 32 bits (with alpha): 8, 8, 8, 8\n" +"- 30 bits (deep): 10, 10, 10, 0" +msgstr "" + +#: src/gui/settings.cpp:732 +#, c-format +msgid "" +"current backend: %s\n" +"%s\n" +"%s\n" +"%s" +msgstr "" + +#: src/gui/settings.cpp:735 +msgid "VSync" +msgstr "" + +#: src/gui/settings.cpp:743 +msgid "Frame rate limit" +msgstr "" + +#: src/gui/settings.cpp:743 +msgid "Unlimited" +msgstr "" + +#: src/gui/settings.cpp:749 +msgid "only applies when VSync is disabled." +msgstr "" + +#: src/gui/settings.cpp:753 +msgid "Display render time" +msgstr "" + +#: src/gui/settings.cpp:760 +msgid "Late render clear" +msgstr "" + +#: src/gui/settings.cpp:765 +msgid "" +"calls rend->clear() after rend->present(). might reduce UI latency by one " +"frame in some drivers." +msgstr "" + +#: src/gui/settings.cpp:770 +msgid "Power-saving mode" +msgstr "" + +#: src/gui/settings.cpp:775 +msgid "" +"saves power by lowering the frame rate to 2fps when idle.\n" +"may cause issues under Mesa drivers!" +msgstr "" + +#: src/gui/settings.cpp:780 +msgid "Disable threaded input (restart after changing!)" +msgstr "" + +#: src/gui/settings.cpp:785 +msgid "" +"threaded input processes key presses for note preview on a separate thread " +"(on supported platforms), which reduces latency.\n" +"however, crashes have been reported when threaded input is on. enable this " +"option if that is the case." +msgstr "" + +#: src/gui/settings.cpp:790 +msgid "Enable event delay" +msgstr "" + +#: src/gui/settings.cpp:796 +msgid "may cause issues with high-polling-rate mice when previewing notes." +msgstr "" + +#: src/gui/settings.cpp:800 +msgid "Per-channel oscilloscope threads" +msgstr "" + +#: src/gui/settings.cpp:808 +msgid "you're being silly, aren't you? that's enough." +msgstr "" + +#: src/gui/settings.cpp:812 +msgid "what are you doing? stop!" +msgstr "" + +#: src/gui/settings.cpp:816 +#, c-format +msgid "" +"it is a bad idea to set this number higher than your CPU core count (%d)!" +msgstr "" + +#: src/gui/settings.cpp:821 +msgid "Oscilloscope rendering engine:" +msgstr "" + +#: src/gui/settings.cpp:823 +msgid "ImGui line plot" +msgstr "" + +#: src/gui/settings.cpp:827 +msgid "render using Dear ImGui's built-in line drawing functions." +msgstr "" + +#: src/gui/settings.cpp:829 +msgid "GLSL (if available)" +msgstr "" + +#: src/gui/settings.cpp:834 +msgid "" +"render using shaders that run on the graphics card.\n" +"only available in OpenGL ES 2.0 render backend." +msgstr "" + +#: src/gui/settings.cpp:836 +msgid "" +"render using shaders that run on the graphics card.\n" +"only available in OpenGL 3.0 render backend." +msgstr "" + +#: src/gui/settings.cpp:843 +msgid "Vibration" +msgstr "" + +#: src/gui/settings.cpp:845 +msgid "Strength" +msgstr "" + +#: src/gui/settings.cpp:851 src/gui/insEdit.cpp:2284 src/gui/insEdit.cpp:2382 +#: src/gui/insEdit.cpp:5582 src/gui/insEdit.cpp:6241 +msgid "Length" +msgstr "" + +#: src/gui/settings.cpp:859 src/gui/gui.cpp:4191 +msgid "File" +msgstr "" + +#: src/gui/settings.cpp:862 +msgid "Use system file picker" +msgstr "" + +#: src/gui/settings.cpp:867 +msgid "Number of recent files" +msgstr "" + +#: src/gui/settings.cpp:874 +msgid "Compress when saving" +msgstr "" + +#: src/gui/settings.cpp:879 +msgid "use zlib to compress saved songs." +msgstr "" + +#: src/gui/settings.cpp:883 +msgid "Save unused patterns" +msgstr "" + +#: src/gui/settings.cpp:889 +msgid "Use new pattern format when saving" +msgstr "" + +#: src/gui/settings.cpp:894 +msgid "" +"use a packed format which saves space when saving songs.\n" +"disable if you need compatibility with older Furnace and/or tools\n" +"which do not support this format." +msgstr "" + +#: src/gui/settings.cpp:898 +msgid "Don't apply compatibility flags when loading .dmf" +msgstr "" + +#: src/gui/settings.cpp:903 +msgid "do not report any issues arising from the use of this option!" +msgstr "" + +#: src/gui/settings.cpp:906 +msgid "Play after opening song:" +msgstr "" + +#: src/gui/settings.cpp:908 +msgid "No##pol0" +msgstr "" + +#: src/gui/settings.cpp:912 +msgid "Only if already playing##pol1" +msgstr "" + +#: src/gui/settings.cpp:916 +msgid "Yes##pol0" +msgstr "" + +#: src/gui/settings.cpp:922 +msgid "Audio export loop/fade out time:" +msgstr "" + +#: src/gui/settings.cpp:924 +msgid "Set to these values on start-up:##fot0" +msgstr "" + +#: src/gui/settings.cpp:942 +msgid "Remember last values##fot1" +msgstr "" + +#: src/gui/settings.cpp:949 +msgid "Store instrument name in .fui" +msgstr "" + +#: src/gui/settings.cpp:954 +msgid "" +"when enabled, saving an instrument will store its name.\n" +"this may increase file size." +msgstr "" + +#: src/gui/settings.cpp:958 +msgid "Load instrument name from .fui" +msgstr "" + +#: src/gui/settings.cpp:963 +msgid "" +"when enabled, loading an instrument will use the stored name (if present).\n" +"otherwise, it will use the file name." +msgstr "" + +#: src/gui/settings.cpp:967 +msgid "Auto-fill file name when saving" +msgstr "" + +#: src/gui/settings.cpp:972 +msgid "" +"fill the file name field with an appropriate file name when saving or " +"exporting." +msgstr "" + +#: src/gui/settings.cpp:976 src/gui/gui.cpp:5563 src/gui/gui.cpp:5613 +msgid "New Song" +msgstr "" + +#: src/gui/settings.cpp:978 +msgid "Initial system:" +msgstr "" + +#: src/gui/settings.cpp:980 +msgid "Current system" +msgstr "" + +#: src/gui/settings.cpp:993 src/gui/waveEdit.cpp:1149 src/gui/gui.cpp:3046 +msgid "Randomize" +msgstr "" + +#: src/gui/settings.cpp:1043 +msgid "Reset to defaults" +msgstr "" + +#: src/gui/settings.cpp:1178 +msgid "When creating new song:" +msgstr "" + +#: src/gui/settings.cpp:1180 +msgid "Display system preset selector##NSB0" +msgstr "" + +#: src/gui/settings.cpp:1184 +msgid "Start with initial system##NSB1" +msgstr "" + +#: src/gui/settings.cpp:1188 +msgid "Default author name" +msgstr "" + +#: src/gui/settings.cpp:1192 +msgid "Start-up" +msgstr "" + +#: src/gui/settings.cpp:1193 +msgid "Play intro on start-up:" +msgstr "" + +#: src/gui/settings.cpp:1195 +msgid "No##pis0" +msgstr "" + +#: src/gui/settings.cpp:1199 +msgid "Short##pis1" +msgstr "" + +#: src/gui/settings.cpp:1203 +msgid "Full (short when loading song)##pis2" +msgstr "" + +#: src/gui/settings.cpp:1207 +msgid "Full (always)##pis3" +msgstr "" + +#: src/gui/settings.cpp:1214 +msgid "Disable fade-in during start-up" +msgstr "" + +#: src/gui/settings.cpp:1220 +msgid "About screen party time" +msgstr "" + +#: src/gui/settings.cpp:1225 +msgid "Warning: may cause epileptic seizures." +msgstr "" + +#: src/gui/settings.cpp:1229 +msgid "Behavior" +msgstr "" + +#: src/gui/settings.cpp:1231 +msgid "New instruments are blank" +msgstr "" + +#: src/gui/settings.cpp:1237 src/gui/settings.cpp:4255 +msgid "Configuration" +msgstr "" + +#: src/gui/settings.cpp:1246 +msgid "Factory Reset" +msgstr "" + +#: src/gui/settings.cpp:1247 +msgid "" +"Are you sure you want to reset all Furnace settings?\n" +"You must restart Furnace after doing so." +msgstr "" + +#: src/gui/settings.cpp:1255 +msgid "Output" +msgstr "" + +#: src/gui/settings.cpp:1263 +msgid "Backend" +msgstr "" + +#: src/gui/settings.cpp:1296 +msgid "Driver" +msgstr "" + +#: src/gui/settings.cpp:1319 +msgid "Device" +msgstr "" + +#: src/gui/settings.cpp:1323 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:1324 +msgid "ALERT - TRESPASSER DETECTED" +msgstr "" + +#: src/gui/settings.cpp:1326 +msgid "you have been arrested for trying to engage with a disabled combo box." +msgstr "" + +#: src/gui/settings.cpp:1333 src/gui/settings.cpp:1335 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:1371 src/gui/insEdit.cpp:7186 +msgid "Outputs" +msgstr "" + +#: src/gui/settings.cpp:1379 +msgid "" +"common values:\n" +"- 1 for mono\n" +"- 2 for stereo\n" +"- 4 for quadraphonic\n" +"- 6 for 5.1 surround\n" +"- 8 for 7.1 surround" +msgstr "" + +#: src/gui/settings.cpp:1387 +#, c-format +msgid "%d (latency: ~%.1fms)" +msgstr "" + +#: src/gui/settings.cpp:1402 +msgid "Multi-threaded (EXPERIMENTAL)" +msgstr "" + +#: src/gui/settings.cpp:1411 +msgid "" +"runs chip emulation on separate threads.\n" +"may increase performance when using heavy emulation cores.\n" +"\n" +"warnings:\n" +"- experimental!\n" +"- only useful on multi-chip songs." +msgstr "" + +#: src/gui/settings.cpp:1416 +msgid "Number of threads" +msgstr "" + +#: src/gui/settings.cpp:1423 +msgid "that's the limit!" +msgstr "" + +#: src/gui/settings.cpp:1427 +#, c-format +msgid "" +"it is a VERY bad idea to set this number higher than your CPU core count " +"(%d)!" +msgstr "" + +#: src/gui/settings.cpp:1435 +msgid "Low-latency mode" +msgstr "" + +#: src/gui/settings.cpp:1440 +msgid "" +"reduces latency by running the engine faster than the tick rate.\n" +"useful for live playback/jam mode.\n" +"\n" +"warning: only enable if your buffer size is small (10ms or less)." +msgstr "" + +#: src/gui/settings.cpp:1444 +msgid "Force mono audio" +msgstr "" + +#: src/gui/settings.cpp:1452 +msgid "Exclusive mode" +msgstr "" + +#: src/gui/settings.cpp:1463 +#, c-format +msgid "want: %d samples @ %.0fHz (%d channel)" +msgid_plural "want: %d samples @ %.0fHz (%d channels)" +msgstr[0] "" +msgstr[1] "" + +#: src/gui/settings.cpp:1464 +#, c-format +msgid "got: %d samples @ %.0fHz (%d channel)" +msgid_plural "got: %d samples @ %.0fHz (%d channels)" +msgstr[0] "" +msgstr[1] "" + +#: src/gui/settings.cpp:1471 +msgid "Mixing" +msgstr "" + +#: src/gui/settings.cpp:1473 src/gui/settings.cpp:2082 +msgid "Quality" +msgstr "" + +#: src/gui/settings.cpp:1478 +msgid "Software clipping" +msgstr "" + +#: src/gui/settings.cpp:1484 +msgid "DC offset correction" +msgstr "" + +#: src/gui/settings.cpp:1502 src/gui/guiConst.cpp:740 +msgid "Sample preview" +msgstr "" + +#: src/gui/settings.cpp:1515 +msgid "MIDI" +msgstr "" + +#: src/gui/settings.cpp:1517 src/gui/settings.cpp:1519 +msgid "MIDI input" +msgstr "" + +#: src/gui/settings.cpp:1521 src/gui/settings.cpp:1524 +#: src/gui/settings.cpp:1815 src/gui/settings.cpp:1817 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:1540 +msgid "Re-scan MIDI devices" +msgstr "" + +#: src/gui/settings.cpp:1551 src/gui/settings.cpp:2258 +msgid "Note input" +msgstr "" + +#: src/gui/settings.cpp:1552 +msgid "Velocity input" +msgstr "" + +#: src/gui/settings.cpp:1556 +msgid "Map MIDI channels to direct channels" +msgstr "" + +#: src/gui/settings.cpp:1562 +msgid "Program change pass-through" +msgstr "" + +#: src/gui/settings.cpp:1567 +msgid "Map Yamaha FM voice data to instruments" +msgstr "" + +#: src/gui/settings.cpp:1569 +msgid "Program change is instrument selection" +msgstr "" + +#: src/gui/settings.cpp:1573 +msgid "Value input style" +msgstr "" + +#: src/gui/settings.cpp:1576 src/gui/settings.cpp:1601 +msgid "Control##valueCCS" +msgstr "" + +#: src/gui/settings.cpp:1582 src/gui/settings.cpp:1607 +msgid "CC of upper nibble##valueCC1" +msgstr "" + +#: src/gui/settings.cpp:1582 src/gui/settings.cpp:1607 +msgid "MSB CC##valueCC1" +msgstr "" + +#: src/gui/settings.cpp:1587 src/gui/settings.cpp:1612 +msgid "CC of lower nibble##valueCC2" +msgstr "" + +#: src/gui/settings.cpp:1587 src/gui/settings.cpp:1612 +msgid "LSB CC##valueCC2" +msgstr "" + +#: src/gui/settings.cpp:1594 +msgid "Per-column control change" +msgstr "" + +#: src/gui/settings.cpp:1624 src/gui/settings.cpp:1634 +msgid "Volume curve" +msgstr "" + +#: src/gui/settings.cpp:1637 +msgid "Actions:" +msgstr "" + +#: src/gui/settings.cpp:1651 +msgid "" +"(learning! press a button or move a slider/knob/something on your device.)" +msgstr "" + +#: src/gui/settings.cpp:1665 src/gui/settings.cpp:2277 +#: src/gui/settings.cpp:6687 src/gui/sampleEdit.cpp:501 +#: src/gui/insEdit.cpp:5321 +msgid "Type" +msgstr "" + +#: src/gui/settings.cpp:1669 +msgid "Note/Control" +msgstr "" + +#: src/gui/settings.cpp:1671 +msgid "Velocity/Value" +msgstr "" + +#: src/gui/settings.cpp:1673 +msgid "Action" +msgstr "" + +#: src/gui/settings.cpp:1765 src/gui/settings.cpp:1766 +msgid "--none--" +msgstr "" + +#: src/gui/settings.cpp:1787 +msgid "waiting...##BLearn" +msgstr "" + +#: src/gui/settings.cpp:1787 +msgid "Learn##BLearn" +msgstr "" + +#: src/gui/settings.cpp:1811 src/gui/settings.cpp:1813 +msgid "MIDI output" +msgstr "" + +#: src/gui/settings.cpp:1830 +msgid "Output mode:" +msgstr "" + +#: src/gui/settings.cpp:1832 +msgid "Off (use for TX81Z)" +msgstr "" + +#: src/gui/settings.cpp:1836 +msgid "Melodic" +msgstr "" + +#: src/gui/settings.cpp:1847 +msgid "Send Program Change" +msgstr "" + +#: src/gui/settings.cpp:1853 +msgid "Send MIDI clock" +msgstr "" + +#: src/gui/settings.cpp:1859 +msgid "Send MIDI timecode" +msgstr "" + +#: src/gui/settings.cpp:1865 +msgid "Timecode frame rate:" +msgstr "" + +#: src/gui/settings.cpp:1867 +msgid "Closest to Tick Rate" +msgstr "" + +#: src/gui/settings.cpp:1871 +msgid "Film (24fps)" +msgstr "" + +#: src/gui/settings.cpp:1875 +msgid "PAL (25fps)" +msgstr "" + +#: src/gui/settings.cpp:1879 +msgid "NTSC drop (29.97fps)" +msgstr "" + +#: src/gui/settings.cpp:1883 +msgid "NTSC non-drop (30fps)" +msgstr "" + +#: src/gui/settings.cpp:1892 +msgid "Emulation" +msgstr "" + +#: src/gui/settings.cpp:1894 +msgid "Cores" +msgstr "" + +#: src/gui/settings.cpp:1903 +msgid "Playback Core(s)" +msgstr "" + +#: src/gui/settings.cpp:1905 src/gui/settings.cpp:2093 +msgid "used for playback" +msgstr "" + +#: src/gui/settings.cpp:1908 +msgid "Render Core(s)" +msgstr "" + +#: src/gui/settings.cpp:1910 src/gui/settings.cpp:2098 +msgid "used in audio export" +msgstr "" + +#: src/gui/settings.cpp:2091 +msgid "Playback" +msgstr "" + +#: src/gui/settings.cpp:2096 +msgid "Render" +msgstr "" + +#: src/gui/settings.cpp:2120 +msgid "PC Speaker strategy" +msgstr "" + +#: src/gui/settings.cpp:2158 src/gui/settings.cpp:2160 +msgid "Keyboard" +msgstr "" + +#: src/gui/settings.cpp:2169 src/gui/settings.cpp:3804 +msgid "Reset defaults" +msgstr "" + +#: src/gui/settings.cpp:2170 +msgid "Are you sure you want to reset the keyboard settings?" +msgstr "" + +#: src/gui/settings.cpp:2172 +msgid "Global hotkeys" +msgstr "" + +#: src/gui/settings.cpp:2209 +msgid "Window activation" +msgstr "" + +#: src/gui/settings.cpp:2275 +msgid "Key" +msgstr "" + +#: src/gui/settings.cpp:2279 src/gui/findReplace.cpp:725 +#: src/gui/findReplace.cpp:1003 +msgid "Value" +msgstr "" + +#: src/gui/settings.cpp:2289 +#, c-format +msgid "Macro release##SNType_%d" +msgstr "" + +#: src/gui/settings.cpp:2294 +#, c-format +msgid "Note release##SNType_%d" +msgstr "" + +#: src/gui/settings.cpp:2299 +#, c-format +msgid "Note off##SNType_%d" +msgstr "" + +#: src/gui/settings.cpp:2304 +#, c-format +msgid "Note##SNType_%d" +msgstr "" + +#: src/gui/settings.cpp:2328 +msgid "Add..." +msgstr "" + +#: src/gui/settings.cpp:2418 +msgid "Instrument list" +msgstr "" + +#: src/gui/settings.cpp:2438 +msgid "Wavetable list" +msgstr "" + +#: src/gui/settings.cpp:2459 +msgid "Sample list" +msgstr "" + +#: src/gui/settings.cpp:2509 +msgid "Sample editor" +msgstr "" + +#: src/gui/settings.cpp:2547 src/gui/settings.cpp:3814 +#: src/gui/settings.cpp:3844 +msgid "Interface" +msgstr "" + +#: src/gui/settings.cpp:2549 +msgid "Layout" +msgstr "" + +#: src/gui/settings.cpp:2551 +msgid "Workspace layout:" +msgstr "" + +#: src/gui/settings.cpp:2561 src/gui/gui.cpp:2920 +msgid "Reset" +msgstr "" + +#: src/gui/settings.cpp:2562 src/gui/gui.cpp:4455 +msgid "Are you sure you want to reset the workspace layout?" +msgstr "" + +#: src/gui/settings.cpp:2566 +msgid "Allow docking editors" +msgstr "" + +#: src/gui/settings.cpp:2573 +msgid "Remember window position" +msgstr "" + +#: src/gui/settings.cpp:2578 +msgid "remembers the window's last position on start-up." +msgstr "" + +#: src/gui/settings.cpp:2583 +msgid "Only allow window movement when clicking on title bar" +msgstr "" + +#: src/gui/settings.cpp:2590 +msgid "Center pop-up windows" +msgstr "" + +#: src/gui/settings.cpp:2595 +msgid "Play/edit controls layout:" +msgstr "" + +#: src/gui/settings.cpp:2597 +msgid "Classic##ecl0" +msgstr "" + +#: src/gui/settings.cpp:2601 +msgid "Compact##ecl1" +msgstr "" + +#: src/gui/settings.cpp:2605 +msgid "Compact (vertical)##ecl2" +msgstr "" + +#: src/gui/settings.cpp:2609 +msgid "Split##ecl3" +msgstr "" + +#: src/gui/settings.cpp:2615 +msgid "Position of buttons in Orders:" +msgstr "" + +#: src/gui/settings.cpp:2617 +msgid "Top##obp0" +msgstr "" + +#: src/gui/settings.cpp:2621 +msgid "Left##obp1" +msgstr "" + +#: src/gui/settings.cpp:2625 +msgid "Right##obp2" +msgstr "" + +#: src/gui/settings.cpp:2632 +msgid "Mouse" +msgstr "" + +#: src/gui/settings.cpp:2634 +msgid "Double-click time (seconds)" +msgstr "" + +#: src/gui/settings.cpp:2643 +msgid "Don't raise pattern editor on click" +msgstr "" + +#: src/gui/settings.cpp:2649 +msgid "Focus pattern editor when selecting instrument" +msgstr "" + +#: src/gui/settings.cpp:2654 +msgid "Note preview behavior:" +msgstr "" + +#: src/gui/settings.cpp:2656 +msgid "Never##npb0" +msgstr "" + +#: src/gui/settings.cpp:2660 +msgid "When cursor is in Note column##npb1" +msgstr "" + +#: src/gui/settings.cpp:2664 +msgid "When cursor is in Note column or not in edit mode##npb2" +msgstr "" + +#: src/gui/settings.cpp:2668 +msgid "Always##npb3" +msgstr "" + +#: src/gui/settings.cpp:2674 +msgid "Allow dragging selection:" +msgstr "" + +#: src/gui/settings.cpp:2676 +msgid "No##dms0" +msgstr "" + +#: src/gui/settings.cpp:2680 +msgid "Yes##dms1" +msgstr "" + +#: src/gui/settings.cpp:2684 +msgid "Yes (while holding Ctrl only)##dms2" +msgstr "" + +#: src/gui/settings.cpp:2690 +msgid "Toggle channel solo on:" +msgstr "" + +#: src/gui/settings.cpp:2692 +msgid "Right-click or double-click##soloA" +msgstr "" + +#: src/gui/settings.cpp:2696 +msgid "Right-click##soloR" +msgstr "" + +#: src/gui/settings.cpp:2700 +msgid "Double-click##soloD" +msgstr "" + +#: src/gui/settings.cpp:2707 +msgid "Double click selects entire column" +msgstr "" + +#: src/gui/settings.cpp:2713 +msgid "Cursor behavior" +msgstr "" + +#: src/gui/settings.cpp:2715 +msgid "Insert pushes entire channel row" +msgstr "" + +#: src/gui/settings.cpp:2721 +msgid "Pull delete affects entire channel row" +msgstr "" + +#: src/gui/settings.cpp:2727 +msgid "Push value when overwriting instead of clearing it" +msgstr "" + +#: src/gui/settings.cpp:2733 +msgid "Keyboard note/value input repeat (hold key to input continuously)" +msgstr "" + +#: src/gui/settings.cpp:2738 +msgid "Effect input behavior:" +msgstr "" + +#: src/gui/settings.cpp:2740 +msgid "Move down##eicb0" +msgstr "" + +#: src/gui/settings.cpp:2744 +msgid "Move to effect value (otherwise move down)##eicb1" +msgstr "" + +#: src/gui/settings.cpp:2748 +msgid "Move to effect value/next effect and wrap around##eicb2" +msgstr "" + +#: src/gui/settings.cpp:2755 +msgid "Delete effect value when deleting effect" +msgstr "" + +#: src/gui/settings.cpp:2761 +msgid "Change current instrument when changing instrument column (absorb)" +msgstr "" + +#: src/gui/settings.cpp:2767 +msgid "Remove instrument value when inserting note off/release" +msgstr "" + +#: src/gui/settings.cpp:2773 +msgid "Remove volume value when inserting note off/release" +msgstr "" + +#: src/gui/settings.cpp:2779 +msgid "Cursor movement" +msgstr "" + +#: src/gui/settings.cpp:2781 +msgid "Wrap horizontally:" +msgstr "" + +#: src/gui/settings.cpp:2783 +msgid "No##wrapH0" +msgstr "" + +#: src/gui/settings.cpp:2787 +msgid "Yes##wrapH1" +msgstr "" + +#: src/gui/settings.cpp:2791 +msgid "Yes, and move to next/prev row##wrapH2" +msgstr "" + +#: src/gui/settings.cpp:2797 +msgid "Wrap vertically:" +msgstr "" + +#: src/gui/settings.cpp:2799 +msgid "No##wrapV0" +msgstr "" + +#: src/gui/settings.cpp:2803 +msgid "Yes##wrapV1" +msgstr "" + +#: src/gui/settings.cpp:2807 +msgid "Yes, and move to next/prev pattern##wrapV2" +msgstr "" + +#: src/gui/settings.cpp:2811 +msgid "Yes, and move to next/prev pattern (wrap around)##wrapV2" +msgstr "" + +#: src/gui/settings.cpp:2817 +msgid "Cursor movement keys behavior:" +msgstr "" + +#: src/gui/settings.cpp:2819 +msgid "Move by one##cmk0" +msgstr "" + +#: src/gui/settings.cpp:2823 +msgid "Move by Edit Step##cmk1" +msgstr "" + +#: src/gui/settings.cpp:2830 +msgid "Move cursor by edit step on delete" +msgstr "" + +#: src/gui/settings.cpp:2836 +msgid "Move cursor by edit step on insert (push)" +msgstr "" + +#: src/gui/settings.cpp:2842 +msgid "Move cursor up on backspace-delete" +msgstr "" + +#: src/gui/settings.cpp:2848 +msgid "Move cursor to end of clipboard content when pasting" +msgstr "" + +#: src/gui/settings.cpp:2854 +msgid "Scrolling" +msgstr "" + +#: src/gui/settings.cpp:2856 +msgid "Change order when scrolling outside of pattern bounds:" +msgstr "" + +#: src/gui/settings.cpp:2858 +msgid "No##pscroll0" +msgstr "" + +#: src/gui/settings.cpp:2862 +msgid "Yes##pscroll1" +msgstr "" + +#: src/gui/settings.cpp:2866 +msgid "Yes, and wrap around song##pscroll2" +msgstr "" + +#: src/gui/settings.cpp:2873 +msgid "Cursor follows current order when moving it" +msgstr "" + +#: src/gui/settings.cpp:2878 +msgid "applies when playback is stopped." +msgstr "" + +#: src/gui/settings.cpp:2882 +msgid "Don't scroll when moving cursor" +msgstr "" + +#: src/gui/settings.cpp:2887 +msgid "Move cursor with scroll wheel:" +msgstr "" + +#: src/gui/settings.cpp:2889 +msgid "No##csw0" +msgstr "" + +#: src/gui/settings.cpp:2893 +msgid "Yes##csw1" +msgstr "" + +#: src/gui/settings.cpp:2897 +msgid "Inverted##csw2" +msgstr "" + +#: src/gui/settings.cpp:2904 +msgid "How many steps to move with each scroll wheel step?" +msgstr "" + +#: src/gui/settings.cpp:2905 +msgid "One##cws0" +msgstr "" + +#: src/gui/settings.cpp:2909 +msgid "Edit Step##cws1" +msgstr "" + +#: src/gui/settings.cpp:2916 src/gui/settings.cpp:3531 +msgid "Assets" +msgstr "" + +#: src/gui/settings.cpp:2919 +msgid "Display instrument type menu when adding instrument" +msgstr "" + +#: src/gui/settings.cpp:2925 +msgid "Select asset after opening one" +msgstr "" + +#: src/gui/settings.cpp:2932 +msgid "Appearance" +msgstr "" + +#: src/gui/settings.cpp:2934 +msgid "Scaling" +msgstr "" + +#: src/gui/settings.cpp:2936 +msgid "Automatic UI scaling factor" +msgstr "" + +#: src/gui/settings.cpp:2945 +msgid "UI scaling factor" +msgstr "" + +#: src/gui/settings.cpp:2952 +msgid "Icon size" +msgstr "" + +#: src/gui/settings.cpp:2967 +msgid "Font renderer" +msgstr "" + +#: src/gui/settings.cpp:2977 +msgid "Main font" +msgstr "" + +#: src/gui/settings.cpp:2988 +msgid "Size##MainFontSize" +msgstr "" + +#: src/gui/settings.cpp:2996 +msgid "Header font" +msgstr "" + +#: src/gui/settings.cpp:3007 +msgid "Size##HeadFontSize" +msgstr "" + +#: src/gui/settings.cpp:3015 +msgid "Pattern font" +msgstr "" + +#: src/gui/settings.cpp:3026 +msgid "Size##PatFontSize" +msgstr "" + +#: src/gui/settings.cpp:3036 +msgid "Anti-aliased fonts" +msgstr "" + +#: src/gui/settings.cpp:3042 +msgid "Support bitmap fonts" +msgstr "" + +#: src/gui/settings.cpp:3047 +msgid "Hinting:" +msgstr "" + +#: src/gui/settings.cpp:3049 +msgid "Off (soft)##fh0" +msgstr "" + +#: src/gui/settings.cpp:3053 +msgid "Slight##fh1" +msgstr "" + +#: src/gui/settings.cpp:3057 +msgid "Normal##fh2" +msgstr "" + +#: src/gui/settings.cpp:3061 +msgid "Full (hard)##fh3" +msgstr "" + +#: src/gui/settings.cpp:3067 +msgid "Auto-hinter:" +msgstr "" + +#: src/gui/settings.cpp:3069 +msgid "Disable##fah0" +msgstr "" + +#: src/gui/settings.cpp:3073 +msgid "Enable##fah1" +msgstr "" + +#: src/gui/settings.cpp:3077 +msgid "Force##fah2" +msgstr "" + +#: src/gui/settings.cpp:3084 +msgid "Oversample" +msgstr "" + +#: src/gui/settings.cpp:3087 +msgid "1×##fos1" +msgstr "" + +#: src/gui/settings.cpp:3092 +msgid "" +"saves video memory. reduces font rendering quality.\n" +"use for pixel/bitmap fonts." +msgstr "" + +#: src/gui/settings.cpp:3095 +msgid "2×##fos2" +msgstr "" + +#: src/gui/settings.cpp:3100 +msgid "default." +msgstr "" + +#: src/gui/settings.cpp:3103 +msgid "3×##fos3" +msgstr "" + +#: src/gui/settings.cpp:3108 +msgid "" +"slightly better font rendering quality.\n" +"uses more video memory." +msgstr "" + +#: src/gui/settings.cpp:3112 +msgid "Load fallback font" +msgstr "" + +#: src/gui/settings.cpp:3117 +msgid "disable to save video memory." +msgstr "" + +#: src/gui/settings.cpp:3121 +msgid "Display Japanese characters" +msgstr "" + +#: src/gui/settings.cpp:3127 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"このオプションは、十分なグラフィックメモリがある場合にのみ切り替えてくださ" +"い。\n" +"これは、Dear ImGuiにダイナミックフォントアトラスが実装されるまでの一時的な解" +"決策です。" +msgstr "" + +#: src/gui/settings.cpp:3135 +msgid "Display Chinese (Simplified) characters" +msgstr "" + +#: src/gui/settings.cpp:3141 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"请在确保你有足够的显存后再启动此设定\n" +"这是一个在ImGui实现动态字体加载之前的临时解决方案" +msgstr "" + +#: src/gui/settings.cpp:3149 +msgid "Display Chinese (Traditional) characters" +msgstr "" + +#: src/gui/settings.cpp:3155 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"請在確保你有足夠的顯存后再啟動此設定\n" +"這是一個在ImGui實現動態字體加載之前的臨時解決方案" +msgstr "" + +#: src/gui/settings.cpp:3163 +msgid "Display Korean characters" +msgstr "" + +#: src/gui/settings.cpp:3169 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"그래픽 메모리가 충분한 경우에만 이 옵션을 선택하십시오.\n" +"이 옵션은 Dear ImGui에 동적 글꼴 아틀라스가 구현될 때까지 임시 솔루션입니다." +msgstr "" + +#: src/gui/settings.cpp:3178 +msgid "Title bar:" +msgstr "" + +#: src/gui/settings.cpp:3180 +msgid "Furnace##tbar0" +msgstr "" + +#: src/gui/settings.cpp:3185 +msgid "Song Name - Furnace##tbar1" +msgstr "" + +#: src/gui/settings.cpp:3190 +msgid "file_name.fur - Furnace##tbar2" +msgstr "" + +#: src/gui/settings.cpp:3195 +msgid "/path/to/file.fur - Furnace##tbar3" +msgstr "" + +#: src/gui/settings.cpp:3203 +msgid "Display system name on title bar" +msgstr "" + +#: src/gui/settings.cpp:3210 +msgid "Display chip names instead of \"multi-system\" in title bar" +msgstr "" + +#: src/gui/settings.cpp:3216 +msgid "Status bar:" +msgstr "" + +#: src/gui/settings.cpp:3218 +msgid "Cursor details##sbar0" +msgstr "" + +#: src/gui/settings.cpp:3222 +msgid "File path##sbar1" +msgstr "" + +#: src/gui/settings.cpp:3226 +msgid "Cursor details or file path##sbar2" +msgstr "" + +#: src/gui/settings.cpp:3230 +msgid "Nothing##sbar3" +msgstr "" + +#: src/gui/settings.cpp:3237 +msgid "Display playback status when playing" +msgstr "" + +#: src/gui/settings.cpp:3242 +msgid "Export options layout:" +msgstr "" + +#: src/gui/settings.cpp:3244 +msgid "Sub-menus in File menu##eol0" +msgstr "" + +#: src/gui/settings.cpp:3248 +msgid "Modal window with tabs##eol1" +msgstr "" + +#: src/gui/settings.cpp:3252 +msgid "Modal windows with options in File menu##eol2" +msgstr "" + +#: src/gui/settings.cpp:3259 +msgid "Capitalize menu bar" +msgstr "" + +#: src/gui/settings.cpp:3265 +msgid "Display add/configure/change/remove chip menus in File menu" +msgstr "" + +#: src/gui/settings.cpp:3279 +msgid "Highlight channel at cursor in Orders" +msgstr "" + +#: src/gui/settings.cpp:3284 +msgid "Orders row number format:" +msgstr "" + +#: src/gui/settings.cpp:3286 +msgid "Decimal##orbD" +msgstr "" + +#: src/gui/settings.cpp:3290 +msgid "Hexadecimal##orbH" +msgstr "" + +#: src/gui/settings.cpp:3299 +msgid "Center pattern view" +msgstr "" + +#: src/gui/settings.cpp:3305 +msgid "Overflow pattern highlights" +msgstr "" + +#: src/gui/settings.cpp:3311 +msgid "Display previous/next pattern" +msgstr "" + +#: src/gui/settings.cpp:3316 +msgid "Pattern row number format:" +msgstr "" + +#: src/gui/settings.cpp:3318 +msgid "Decimal##prbD" +msgstr "" + +#: src/gui/settings.cpp:3322 +msgid "Hexadecimal##prbH" +msgstr "" + +#: src/gui/settings.cpp:3328 +msgid "Pattern view labels:" +msgstr "" + +#: src/gui/settings.cpp:3333 +msgid "Note off (3-char)" +msgstr "" + +#: src/gui/settings.cpp:3338 +msgid "Note release (3-char)" +msgstr "" + +#: src/gui/settings.cpp:3343 +msgid "Macro release (3-char)" +msgstr "" + +#: src/gui/settings.cpp:3348 +msgid "Empty field (3-char)" +msgstr "" + +#: src/gui/settings.cpp:3353 +msgid "Empty field (2-char)" +msgstr "" + +#: src/gui/settings.cpp:3355 +msgid "Pattern view spacing after:" +msgstr "" + +#: src/gui/settings.cpp:3357 src/gui/settings.cpp:4115 +#: src/gui/findReplace.cpp:601 src/gui/findReplace.cpp:864 +#: src/gui/sampleEdit.cpp:590 +msgid "Note" +msgstr "" + +#: src/gui/settings.cpp:3375 src/gui/findReplace.cpp:707 +#: src/gui/findReplace.cpp:974 +msgid "Effect" +msgstr "" + +#: src/gui/settings.cpp:3381 +msgid "Effect value" +msgstr "" + +#: src/gui/settings.cpp:3388 +msgid "Single-digit effects for 00-0F" +msgstr "" + +#: src/gui/settings.cpp:3394 +msgid "Use flats instead of sharps" +msgstr "" + +#: src/gui/settings.cpp:3400 +msgid "Use German notation" +msgstr "" + +#: src/gui/settings.cpp:3408 +msgid "Channel style:" +msgstr "" + +#: src/gui/settings.cpp:3410 +msgid "Classic##CHS0" +msgstr "" + +#: src/gui/settings.cpp:3414 +msgid "Line##CHS1" +msgstr "" + +#: src/gui/settings.cpp:3418 +msgid "Round##CHS2" +msgstr "" + +#: src/gui/settings.cpp:3422 +msgid "Split button##CHS3" +msgstr "" + +#: src/gui/settings.cpp:3426 +msgid "Square border##CH42" +msgstr "" + +#: src/gui/settings.cpp:3430 +msgid "Round border##CHS5" +msgstr "" + +#: src/gui/settings.cpp:3436 +msgid "Channel volume bar:" +msgstr "" + +#: src/gui/settings.cpp:3438 +msgid "None##CHV0" +msgstr "" + +#: src/gui/settings.cpp:3442 +msgid "Simple##CHV1" +msgstr "" + +#: src/gui/settings.cpp:3446 +msgid "Stereo##CHV2" +msgstr "" + +#: src/gui/settings.cpp:3450 +msgid "Real##CHV3" +msgstr "" + +#: src/gui/settings.cpp:3454 +msgid "Real (stereo)##CHV4" +msgstr "" + +#: src/gui/settings.cpp:3460 +msgid "Channel feedback style:" +msgstr "" + +#: src/gui/settings.cpp:3462 +msgid "Off##CHF0" +msgstr "" + +#: src/gui/settings.cpp:3466 +msgid "Note##CHF1" +msgstr "" + +#: src/gui/settings.cpp:3470 +msgid "Volume##CHF2" +msgstr "" + +#: src/gui/settings.cpp:3474 +msgid "Active##CHF3" +msgstr "" + +#: src/gui/settings.cpp:3480 +msgid "Channel font:" +msgstr "" + +#: src/gui/settings.cpp:3482 +msgid "Regular##CHFont0" +msgstr "" + +#: src/gui/settings.cpp:3486 +msgid "Monospace##CHFont1" +msgstr "" + +#: src/gui/settings.cpp:3493 +msgid "Center channel name" +msgstr "" + +#: src/gui/settings.cpp:3498 +msgid "Channel colors:" +msgstr "" + +#: src/gui/settings.cpp:3500 +msgid "Single##CHC0" +msgstr "" + +#: src/gui/settings.cpp:3504 +msgid "Channel type##CHC1" +msgstr "" + +#: src/gui/settings.cpp:3508 +msgid "Instrument type##CHC2" +msgstr "" + +#: src/gui/settings.cpp:3514 +msgid "Channel name colors:" +msgstr "" + +#: src/gui/settings.cpp:3516 +msgid "Single##CTC0" +msgstr "" + +#: src/gui/settings.cpp:3520 +msgid "Channel type##CTC1" +msgstr "" + +#: src/gui/settings.cpp:3524 +msgid "Instrument type##CTC2" +msgstr "" + +#: src/gui/settings.cpp:3533 +msgid "Unified instrument/wavetable/sample list" +msgstr "" + +#: src/gui/settings.cpp:3543 +msgid "Horizontal instrument list" +msgstr "" + +#: src/gui/settings.cpp:3549 +msgid "Instrument list icon style:" +msgstr "" + +#: src/gui/settings.cpp:3551 +msgid "None##iis0" +msgstr "" + +#: src/gui/settings.cpp:3555 +msgid "Graphical icons##iis1" +msgstr "" + +#: src/gui/settings.cpp:3559 +msgid "Letter icons##iis2" +msgstr "" + +#: src/gui/settings.cpp:3566 +msgid "Colorize instrument editor using instrument type" +msgstr "" + +#: src/gui/settings.cpp:3572 src/gui/settings.cpp:4014 +msgid "Macro Editor" +msgstr "" + +#: src/gui/settings.cpp:3573 +msgid "Macro editor layout:" +msgstr "" + +#: src/gui/settings.cpp:3575 +msgid "Unified##mel0" +msgstr "" + +#: src/gui/settings.cpp:3585 +msgid "Grid##mel2" +msgstr "" + +#: src/gui/settings.cpp:3589 +msgid "Single (with list)##mel3" +msgstr "" + +#: src/gui/settings.cpp:3602 +msgid "Use classic macro editor vertical slider" +msgstr "" + +#: src/gui/settings.cpp:3608 +msgid "Wave Editor" +msgstr "" + +#: src/gui/settings.cpp:3610 +msgid "Use compact wave editor" +msgstr "" + +#: src/gui/settings.cpp:3616 src/gui/settings.cpp:3991 +msgid "FM Editor" +msgstr "" + +#: src/gui/settings.cpp:3617 +msgid "FM parameter names:" +msgstr "" + +#: src/gui/settings.cpp:3619 +msgid "Friendly##fmn0" +msgstr "" + +#: src/gui/settings.cpp:3623 +msgid "Technical##fmn1" +msgstr "" + +#: src/gui/settings.cpp:3627 +msgid "Technical (alternate)##fmn2" +msgstr "" + +#: src/gui/settings.cpp:3634 +msgid "Use standard OPL waveform names" +msgstr "" + +#: src/gui/settings.cpp:3639 +msgid "FM parameter editor layout:" +msgstr "" + +#: src/gui/settings.cpp:3641 +msgid "Modern##fml0" +msgstr "" + +#: src/gui/settings.cpp:3645 +msgid "Compact (2x2, classic)##fml1" +msgstr "" + +#: src/gui/settings.cpp:3649 +msgid "Compact (1x4)##fml2" +msgstr "" + +#: src/gui/settings.cpp:3653 +msgid "Compact (4x1)##fml3" +msgstr "" + +#: src/gui/settings.cpp:3657 +msgid "Alternate (2x2)##fml4" +msgstr "" + +#: src/gui/settings.cpp:3661 +msgid "Alternate (1x4)##fml5" +msgstr "" + +#: src/gui/settings.cpp:3665 +msgid "Alternate (4x1)##fml5" +msgstr "" + +#: src/gui/settings.cpp:3671 +msgid "Position of Sustain in FM editor:" +msgstr "" + +#: src/gui/settings.cpp:3673 +msgid "Between Decay and Sustain Rate##susp0" +msgstr "" + +#: src/gui/settings.cpp:3677 +msgid "After Release Rate##susp1" +msgstr "" + +#: src/gui/settings.cpp:3684 +msgid "Use separate colors for carriers/modulators in FM editor" +msgstr "" + +#: src/gui/settings.cpp:3690 +msgid "Unsigned FM detune values" +msgstr "" + +#: src/gui/settings.cpp:3697 +msgid "Chip memory usage unit:" +msgstr "" + +#: src/gui/settings.cpp:3699 +msgid "Bytes##MUU0" +msgstr "" + +#: src/gui/settings.cpp:3703 +msgid "Kilobytes##MUU1" +msgstr "" + +#: src/gui/settings.cpp:3712 +msgid "Rounded corners" +msgstr "" + +#: src/gui/settings.cpp:3718 src/gui/settings.cpp:3896 +#: src/gui/settings.cpp:3938 +msgid "Border" +msgstr "" + +#: src/gui/settings.cpp:3730 +msgid "Anti-aliased" +msgstr "" + +#: src/gui/settings.cpp:3736 +msgid "Fill entire window" +msgstr "" + +#: src/gui/settings.cpp:3742 +msgid "Waveform goes out of bounds" +msgstr "" + +#: src/gui/settings.cpp:3754 +msgid "Windows" +msgstr "" + +#: src/gui/settings.cpp:3756 +msgid "Rounded window corners" +msgstr "" + +#: src/gui/settings.cpp:3762 +msgid "Rounded buttons" +msgstr "" + +#: src/gui/settings.cpp:3768 +msgid "Rounded menu corners" +msgstr "" + +#: src/gui/settings.cpp:3774 +msgid "Rounded tabs" +msgstr "" + +#: src/gui/settings.cpp:3780 +msgid "Rounded scrollbars" +msgstr "" + +#: src/gui/settings.cpp:3786 +msgid "Borders around widgets" +msgstr "" + +#: src/gui/settings.cpp:3795 +msgid "Color scheme" +msgstr "" + +#: src/gui/settings.cpp:3805 +msgid "Are you sure you want to reset the color scheme?" +msgstr "" + +#: src/gui/settings.cpp:3808 +msgid "Guru mode" +msgstr "" + +#: src/gui/settings.cpp:3815 src/gui/settings.cpp:3845 +msgid "Frame shading" +msgstr "" + +#: src/gui/settings.cpp:3821 +msgid "Color scheme type:" +msgstr "" + +#: src/gui/settings.cpp:3823 +msgid "Dark##gcb0" +msgstr "" + +#: src/gui/settings.cpp:3828 +msgid "Light##gcb1" +msgstr "" + +#: src/gui/settings.cpp:3835 +msgid "Accent colors:" +msgstr "" + +#: src/gui/settings.cpp:3837 +msgid "Primary" +msgstr "" + +#: src/gui/settings.cpp:3838 +msgid "Secondary" +msgstr "" + +#: src/gui/settings.cpp:3852 +msgid "Button" +msgstr "" + +#: src/gui/settings.cpp:3853 +msgid "Button (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3854 +msgid "Button (active)" +msgstr "" + +#: src/gui/settings.cpp:3855 +msgid "Tab" +msgstr "" + +#: src/gui/settings.cpp:3856 +msgid "Tab (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3857 +msgid "Tab (active)" +msgstr "" + +#: src/gui/settings.cpp:3858 +msgid "Tab (unfocused)" +msgstr "" + +#: src/gui/settings.cpp:3859 +msgid "Tab (unfocused and active)" +msgstr "" + +#: src/gui/settings.cpp:3860 +msgid "ImGui header" +msgstr "" + +#: src/gui/settings.cpp:3861 +msgid "ImGui header (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3862 +msgid "ImGui header (active)" +msgstr "" + +#: src/gui/settings.cpp:3863 +msgid "Resize grip" +msgstr "" + +#: src/gui/settings.cpp:3864 +msgid "Resize grip (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3865 +msgid "Resize grip (active)" +msgstr "" + +#: src/gui/settings.cpp:3866 +msgid "Widget background" +msgstr "" + +#: src/gui/settings.cpp:3867 +msgid "Widget background (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3868 +msgid "Widget background (active)" +msgstr "" + +#: src/gui/settings.cpp:3869 +msgid "Slider grab" +msgstr "" + +#: src/gui/settings.cpp:3870 +msgid "Slider grab (active)" +msgstr "" + +#: src/gui/settings.cpp:3871 +msgid "Title background (active)" +msgstr "" + +#: src/gui/settings.cpp:3872 +msgid "Checkbox/radio button mark" +msgstr "" + +#: src/gui/settings.cpp:3873 +msgid "Text selection" +msgstr "" + +#: src/gui/settings.cpp:3874 +msgid "Line plot" +msgstr "" + +#: src/gui/settings.cpp:3875 +msgid "Line plot (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3876 +msgid "Histogram plot" +msgstr "" + +#: src/gui/settings.cpp:3877 +msgid "Histogram plot (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3878 +msgid "Table row (even)" +msgstr "" + +#: src/gui/settings.cpp:3879 +msgid "Table row (odd)" +msgstr "" + +#: src/gui/settings.cpp:3884 +msgid "Interface (other)" +msgstr "" + +#: src/gui/settings.cpp:3886 +msgid "Window background" +msgstr "" + +#: src/gui/settings.cpp:3887 +msgid "Sub-window background" +msgstr "" + +#: src/gui/settings.cpp:3888 +msgid "Pop-up background" +msgstr "" + +#: src/gui/settings.cpp:3889 +msgid "Modal backdrop" +msgstr "" + +#: src/gui/settings.cpp:3890 +msgid "Header" +msgstr "" + +#: src/gui/settings.cpp:3892 +msgid "Text (disabled)" +msgstr "" + +#: src/gui/settings.cpp:3893 +msgid "Title bar (inactive)" +msgstr "" + +#: src/gui/settings.cpp:3894 +msgid "Title bar (collapsed)" +msgstr "" + +#: src/gui/settings.cpp:3895 +msgid "Menu bar" +msgstr "" + +#: src/gui/settings.cpp:3897 +msgid "Border shadow" +msgstr "" + +#: src/gui/settings.cpp:3898 +msgid "Scroll bar" +msgstr "" + +#: src/gui/settings.cpp:3899 +msgid "Scroll bar (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3900 +msgid "Scroll bar (clicked)" +msgstr "" + +#: src/gui/settings.cpp:3901 +msgid "Scroll bar background" +msgstr "" + +#: src/gui/settings.cpp:3902 +msgid "Separator" +msgstr "" + +#: src/gui/settings.cpp:3903 +msgid "Separator (hover)" +msgstr "" + +#: src/gui/settings.cpp:3904 +msgid "Separator (active)" +msgstr "" + +#: src/gui/settings.cpp:3905 +msgid "Docking preview" +msgstr "" + +#: src/gui/settings.cpp:3906 +msgid "Docking empty" +msgstr "" + +#: src/gui/settings.cpp:3907 +msgid "Table header" +msgstr "" + +#: src/gui/settings.cpp:3908 +msgid "Table border (hard)" +msgstr "" + +#: src/gui/settings.cpp:3909 +msgid "Table border (soft)" +msgstr "" + +#: src/gui/settings.cpp:3910 +msgid "Drag and drop target" +msgstr "" + +#: src/gui/settings.cpp:3911 +msgid "Window switcher (highlight)" +msgstr "" + +#: src/gui/settings.cpp:3912 +msgid "Window switcher backdrop" +msgstr "" + +#: src/gui/settings.cpp:3915 src/gui/settings.cpp:4136 src/gui/guiConst.cpp:235 +msgid "Miscellaneous" +msgstr "" + +#: src/gui/settings.cpp:3916 +msgid "Toggle on" +msgstr "" + +#: src/gui/settings.cpp:3917 +msgid "Toggle off" +msgstr "" + +#: src/gui/settings.cpp:3918 +msgid "Playback status" +msgstr "" + +#: src/gui/settings.cpp:3919 +msgid "Destructive hint" +msgstr "" + +#: src/gui/settings.cpp:3920 +msgid "Warning hint" +msgstr "" + +#: src/gui/settings.cpp:3921 +msgid "Error hint" +msgstr "" + +#: src/gui/settings.cpp:3924 +msgid "File Picker (built-in)" +msgstr "" + +#: src/gui/settings.cpp:3926 +msgid "Song (native)" +msgstr "" + +#: src/gui/settings.cpp:3927 +msgid "Song (import)" +msgstr "" + +#: src/gui/settings.cpp:3933 +msgid "Font" +msgstr "" + +#: src/gui/settings.cpp:3939 +msgid "Background (top-left)" +msgstr "" + +#: src/gui/settings.cpp:3940 +msgid "Background (top-right)" +msgstr "" + +#: src/gui/settings.cpp:3941 +msgid "Background (bottom-left)" +msgstr "" + +#: src/gui/settings.cpp:3942 +msgid "Background (bottom-right)" +msgstr "" + +#: src/gui/settings.cpp:3943 src/gui/settings.cpp:3998 +#: src/gui/settings.cpp:4166 src/gui/waveEdit.cpp:730 src/gui/insEdit.cpp:50 +#: src/gui/insEdit.cpp:4148 src/gui/insEdit.cpp:5812 src/gui/insEdit.cpp:6940 +#: src/gui/insEdit.cpp:6949 src/gui/insEdit.cpp:6963 src/gui/insEdit.cpp:6980 +#: src/gui/insEdit.cpp:6991 src/gui/insEdit.cpp:7004 src/gui/insEdit.cpp:7018 +#: src/gui/insEdit.cpp:7025 src/gui/insEdit.cpp:7035 src/gui/insEdit.cpp:7041 +#: src/gui/insEdit.cpp:7050 src/gui/insEdit.cpp:7074 src/gui/insEdit.cpp:7084 +#: src/gui/insEdit.cpp:7094 src/gui/insEdit.cpp:7101 src/gui/insEdit.cpp:7116 +#: src/gui/insEdit.cpp:7131 src/gui/insEdit.cpp:7151 src/gui/insEdit.cpp:7158 +#: src/gui/insEdit.cpp:7200 src/gui/insEdit.cpp:7211 src/gui/insEdit.cpp:7224 +#: src/gui/insEdit.cpp:7349 src/gui/insEdit.cpp:7425 src/gui/insEdit.cpp:7445 +#: src/gui/insEdit.cpp:7453 src/gui/insEdit.cpp:7473 +msgid "Waveform" +msgstr "" + +#: src/gui/settings.cpp:3944 +msgid "Waveform (clip)" +msgstr "" + +#: src/gui/settings.cpp:3945 +msgid "Reference" +msgstr "" + +#: src/gui/settings.cpp:3946 +msgid "Guide" +msgstr "" + +#: src/gui/settings.cpp:3948 +msgid "Wave (non-mono)" +msgstr "" + +#: src/gui/settings.cpp:3949 +msgid "Waveform (1)" +msgstr "" + +#: src/gui/settings.cpp:3950 +msgid "Waveform (2)" +msgstr "" + +#: src/gui/settings.cpp:3951 +msgid "Waveform (3)" +msgstr "" + +#: src/gui/settings.cpp:3952 +msgid "Waveform (4)" +msgstr "" + +#: src/gui/settings.cpp:3953 +msgid "Waveform (5)" +msgstr "" + +#: src/gui/settings.cpp:3954 +msgid "Waveform (6)" +msgstr "" + +#: src/gui/settings.cpp:3955 +msgid "Waveform (7)" +msgstr "" + +#: src/gui/settings.cpp:3956 +msgid "Waveform (8)" +msgstr "" + +#: src/gui/settings.cpp:3957 +msgid "Waveform (9)" +msgstr "" + +#: src/gui/settings.cpp:3958 +msgid "Waveform (10)" +msgstr "" + +#: src/gui/settings.cpp:3959 +msgid "Waveform (11)" +msgstr "" + +#: src/gui/settings.cpp:3960 +msgid "Waveform (12)" +msgstr "" + +#: src/gui/settings.cpp:3961 +msgid "Waveform (13)" +msgstr "" + +#: src/gui/settings.cpp:3962 +msgid "Waveform (14)" +msgstr "" + +#: src/gui/settings.cpp:3963 +msgid "Waveform (15)" +msgstr "" + +#: src/gui/settings.cpp:3964 +msgid "Waveform (16)" +msgstr "" + +#: src/gui/settings.cpp:3972 +msgid "Clip" +msgstr "" + +#: src/gui/settings.cpp:3976 +msgid "Order number" +msgstr "" + +#: src/gui/settings.cpp:3977 +msgid "Playing order background" +msgstr "" + +#: src/gui/settings.cpp:3978 +msgid "Song loop" +msgstr "" + +#: src/gui/settings.cpp:3979 +msgid "Selected order" +msgstr "" + +#: src/gui/settings.cpp:3980 +msgid "Similar patterns" +msgstr "" + +#: src/gui/settings.cpp:3981 +msgid "Inactive patterns" +msgstr "" + +#: src/gui/settings.cpp:3984 +msgid "Envelope View" +msgstr "" + +#: src/gui/settings.cpp:3985 src/gui/insEdit.cpp:540 src/gui/insEdit.cpp:3547 +#: src/gui/insEdit.cpp:3548 src/gui/insEdit.cpp:4081 src/gui/insEdit.cpp:4151 +#: src/gui/insEdit.cpp:4790 src/gui/insEdit.cpp:5861 src/gui/insEdit.cpp:5862 +#: src/gui/insEdit.cpp:6487 src/gui/insEdit.cpp:6488 src/gui/insEdit.cpp:6555 +#: src/gui/insEdit.cpp:6556 src/gui/insEdit.cpp:6995 src/gui/insEdit.cpp:7009 +#: src/gui/insEdit.cpp:7029 src/gui/insEdit.cpp:7166 +#, c-format +msgid "Envelope" +msgstr "" + +#: src/gui/settings.cpp:3986 +msgid "Sustain guide" +msgstr "" + +#: src/gui/settings.cpp:3992 +msgid "Algorithm background" +msgstr "" + +#: src/gui/settings.cpp:3993 +msgid "Algorithm lines" +msgstr "" + +#: src/gui/settings.cpp:3994 +msgid "Modulator" +msgstr "" + +#: src/gui/settings.cpp:3995 +msgid "Carrier" +msgstr "" + +#: src/gui/settings.cpp:3997 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:4146 +msgid "SSG-EG" +msgstr "" + +#: src/gui/settings.cpp:4000 +msgid "" +"(the following colors only apply when \"Use separate colors for carriers/" +"modulators in FM editor\" is on!)" +msgstr "" + +#: src/gui/settings.cpp:4002 +msgid "Mod. accent (primary)" +msgstr "" + +#: src/gui/settings.cpp:4003 +msgid "Mod. accent (secondary)" +msgstr "" + +#: src/gui/settings.cpp:4004 +msgid "Mod. border" +msgstr "" + +#: src/gui/settings.cpp:4005 +msgid "Mod. border shadow" +msgstr "" + +#: src/gui/settings.cpp:4007 +msgid "Car. accent (primary)" +msgstr "" + +#: src/gui/settings.cpp:4008 +msgid "Car. accent (secondary)" +msgstr "" + +#: src/gui/settings.cpp:4009 +msgid "Car. border" +msgstr "" + +#: src/gui/settings.cpp:4010 +msgid "Car. border shadow" +msgstr "" + +#: src/gui/settings.cpp:4016 src/gui/guiConst.cpp:227 src/gui/insEdit.cpp:6924 +#: src/gui/insEdit.cpp:6931 src/gui/insEdit.cpp:6942 src/gui/insEdit.cpp:6950 +#: src/gui/insEdit.cpp:6971 src/gui/insEdit.cpp:6983 src/gui/insEdit.cpp:6993 +#: src/gui/insEdit.cpp:7006 src/gui/insEdit.cpp:7019 src/gui/insEdit.cpp:7028 +#: src/gui/insEdit.cpp:7036 src/gui/insEdit.cpp:7042 src/gui/insEdit.cpp:7052 +#: src/gui/insEdit.cpp:7061 src/gui/insEdit.cpp:7068 src/gui/insEdit.cpp:7075 +#: src/gui/insEdit.cpp:7087 src/gui/insEdit.cpp:7095 src/gui/insEdit.cpp:7102 +#: src/gui/insEdit.cpp:7109 src/gui/insEdit.cpp:7117 src/gui/insEdit.cpp:7123 +#: src/gui/insEdit.cpp:7132 src/gui/insEdit.cpp:7143 src/gui/insEdit.cpp:7153 +#: src/gui/insEdit.cpp:7161 src/gui/insEdit.cpp:7174 src/gui/insEdit.cpp:7182 +#: src/gui/insEdit.cpp:7193 src/gui/insEdit.cpp:7203 src/gui/insEdit.cpp:7213 +#: src/gui/insEdit.cpp:7227 src/gui/insEdit.cpp:7233 src/gui/insEdit.cpp:7241 +#: src/gui/insEdit.cpp:7248 src/gui/insEdit.cpp:7272 src/gui/insEdit.cpp:7280 +#: src/gui/insEdit.cpp:7289 src/gui/insEdit.cpp:7298 src/gui/insEdit.cpp:7306 +#: src/gui/insEdit.cpp:7323 src/gui/insEdit.cpp:7331 src/gui/insEdit.cpp:7337 +#: src/gui/insEdit.cpp:7344 src/gui/insEdit.cpp:7350 src/gui/insEdit.cpp:7355 +#: src/gui/insEdit.cpp:7361 src/gui/insEdit.cpp:7368 src/gui/insEdit.cpp:7376 +#: src/gui/insEdit.cpp:7385 src/gui/insEdit.cpp:7393 src/gui/insEdit.cpp:7401 +#: src/gui/insEdit.cpp:7413 src/gui/insEdit.cpp:7428 src/gui/insEdit.cpp:7439 +#: src/gui/insEdit.cpp:7447 src/gui/insEdit.cpp:7456 src/gui/insEdit.cpp:7466 +#: src/gui/insEdit.cpp:7474 +msgid "Pitch" +msgstr "" + +#: src/gui/settings.cpp:4021 +msgid "Instrument Types" +msgstr "" + +#: src/gui/settings.cpp:4022 +msgid "FM (OPN)" +msgstr "" + +#: src/gui/settings.cpp:4023 +msgid "SN76489/Sega PSG" +msgstr "" + +#: src/gui/settings.cpp:4026 +msgid "C64" +msgstr "" + +#: src/gui/settings.cpp:4027 +msgid "Amiga/Generic Sample" +msgstr "" + +#: src/gui/settings.cpp:4028 +msgid "PC Engine" +msgstr "" + +#: src/gui/settings.cpp:4029 +msgid "AY-3-8910/SSG" +msgstr "" + +#: src/gui/settings.cpp:4030 +msgid "AY8930" +msgstr "" + +#: src/gui/settings.cpp:4031 +msgid "TIA" +msgstr "" + +#: src/gui/settings.cpp:4032 +msgid "SAA1099" +msgstr "" + +#: src/gui/settings.cpp:4033 +msgid "VIC" +msgstr "" + +#: src/gui/settings.cpp:4034 +msgid "PET" +msgstr "" + +#: src/gui/settings.cpp:4035 +msgid "VRC6" +msgstr "" + +#: src/gui/settings.cpp:4036 src/gui/guiConst.cpp:149 +msgid "VRC6 (saw)" +msgstr "" + +#: src/gui/settings.cpp:4037 +msgid "FM (OPLL)" +msgstr "" + +#: src/gui/settings.cpp:4038 +msgid "FM (OPL)" +msgstr "" + +#: src/gui/settings.cpp:4043 +msgid "FM (OPZ)" +msgstr "" + +#: src/gui/settings.cpp:4045 +msgid "PC Beeper" +msgstr "" + +#: src/gui/settings.cpp:4047 +msgid "Lynx" +msgstr "" + +#: src/gui/settings.cpp:4049 +msgid "X1-010" +msgstr "" + +#: src/gui/settings.cpp:4050 +msgid "ES5506" +msgstr "" + +#: src/gui/settings.cpp:4053 +msgid "Sound Unit" +msgstr "" + +#: src/gui/settings.cpp:4055 +msgid "FM (OPL Drums)" +msgstr "" + +#: src/gui/settings.cpp:4056 +msgid "FM (OPM)" +msgstr "" + +#: src/gui/settings.cpp:4057 +msgid "NES" +msgstr "" + +#: src/gui/settings.cpp:4058 +msgid "MSM6258" +msgstr "" + +#: src/gui/settings.cpp:4059 +msgid "MSM6295" +msgstr "" + +#: src/gui/settings.cpp:4060 +msgid "ADPCM-A" +msgstr "" + +#: src/gui/settings.cpp:4062 +msgid "Sega PCM" +msgstr "" + +#: src/gui/settings.cpp:4063 +msgid "QSound" +msgstr "" + +#: src/gui/settings.cpp:4064 +msgid "YMZ280B" +msgstr "" + +#: src/gui/settings.cpp:4065 +msgid "RF5C68" +msgstr "" + +#: src/gui/settings.cpp:4066 +msgid "MSM5232" +msgstr "" + +#: src/gui/settings.cpp:4067 +msgid "K007232" +msgstr "" + +#: src/gui/settings.cpp:4068 +msgid "GA20" +msgstr "" + +#: src/gui/settings.cpp:4070 +msgid "SM8521" +msgstr "" + +#: src/gui/settings.cpp:4071 +msgid "PV-1000" +msgstr "" + +#: src/gui/settings.cpp:4072 +msgid "K053260" +msgstr "" + +#: src/gui/settings.cpp:4073 +msgid "TED" +msgstr "" + +#: src/gui/settings.cpp:4074 +msgid "C140" +msgstr "" + +#: src/gui/settings.cpp:4075 +msgid "C219" +msgstr "" + +#: src/gui/settings.cpp:4076 +msgid "ESFM" +msgstr "" + +#: src/gui/settings.cpp:4077 src/gui/guiConst.cpp:179 +msgid "PowerNoise (noise)" +msgstr "" + +#: src/gui/settings.cpp:4078 src/gui/guiConst.cpp:180 +msgid "PowerNoise (slope)" +msgstr "" + +#: src/gui/settings.cpp:4081 +msgid "GBA DMA" +msgstr "" + +#: src/gui/settings.cpp:4082 +msgid "GBA MinMod" +msgstr "" + +#: src/gui/settings.cpp:4085 +msgid "Other/Unknown" +msgstr "" + +#: src/gui/settings.cpp:4089 +msgid "Single color (background)" +msgstr "" + +#: src/gui/settings.cpp:4090 +msgid "Single color (text)" +msgstr "" + +#: src/gui/settings.cpp:4091 src/gui/guiConst.cpp:1393 src/gui/waveEdit.cpp:668 +msgid "FM" +msgstr "" + +#: src/gui/settings.cpp:4096 +msgid "FM operator" +msgstr "" + +#: src/gui/settings.cpp:4097 +msgid "Muted" +msgstr "" + +#: src/gui/settings.cpp:4101 +msgid "Playhead" +msgstr "" + +#: src/gui/settings.cpp:4102 +msgid "Editing" +msgstr "" + +#: src/gui/settings.cpp:4103 +msgid "Editing (will clone)" +msgstr "" + +#: src/gui/settings.cpp:4104 +msgid "Cursor" +msgstr "" + +#: src/gui/settings.cpp:4105 +msgid "Cursor (hovered)" +msgstr "" + +#: src/gui/settings.cpp:4106 +msgid "Cursor (clicked)" +msgstr "" + +#: src/gui/settings.cpp:4107 src/gui/settings.cpp:4172 +#: src/gui/findReplace.cpp:791 +msgid "Selection" +msgstr "" + +#: src/gui/settings.cpp:4108 +msgid "Selection (hovered)" +msgstr "" + +#: src/gui/settings.cpp:4109 +msgid "Selection (clicked)" +msgstr "" + +#: src/gui/settings.cpp:4110 +msgid "Highlight 1" +msgstr "" + +#: src/gui/settings.cpp:4111 +msgid "Highlight 2" +msgstr "" + +#: src/gui/settings.cpp:4112 +msgid "Row number" +msgstr "" + +#: src/gui/settings.cpp:4113 +msgid "Row number (highlight 1)" +msgstr "" + +#: src/gui/settings.cpp:4114 +msgid "Row number (highlight 2)" +msgstr "" + +#: src/gui/settings.cpp:4116 +msgid "Note (highlight 1)" +msgstr "" + +#: src/gui/settings.cpp:4117 +msgid "Note (highlight 2)" +msgstr "" + +#: src/gui/settings.cpp:4118 +msgid "Blank" +msgstr "" + +#: src/gui/settings.cpp:4119 +msgid "Blank (highlight 1)" +msgstr "" + +#: src/gui/settings.cpp:4120 +msgid "Blank (highlight 2)" +msgstr "" + +#: src/gui/settings.cpp:4122 +msgid "Instrument (invalid type)" +msgstr "" + +#: src/gui/settings.cpp:4123 +msgid "Instrument (out of range)" +msgstr "" + +#: src/gui/settings.cpp:4124 +msgid "Volume (0%)" +msgstr "" + +#: src/gui/settings.cpp:4125 +msgid "Volume (50%)" +msgstr "" + +#: src/gui/settings.cpp:4126 +msgid "Volume (100%)" +msgstr "" + +#: src/gui/settings.cpp:4128 +msgid "Pitch effect" +msgstr "" + +#: src/gui/settings.cpp:4129 +msgid "Volume effect" +msgstr "" + +#: src/gui/settings.cpp:4130 +msgid "Panning effect" +msgstr "" + +#: src/gui/settings.cpp:4131 +msgid "Song effect" +msgstr "" + +#: src/gui/settings.cpp:4132 +msgid "Time effect" +msgstr "" + +#: src/gui/settings.cpp:4133 +msgid "Speed effect" +msgstr "" + +#: src/gui/settings.cpp:4134 +msgid "Primary specific effect" +msgstr "" + +#: src/gui/settings.cpp:4135 +msgid "Secondary specific effect" +msgstr "" + +#: src/gui/settings.cpp:4137 +msgid "External command output" +msgstr "" + +#: src/gui/settings.cpp:4138 +msgid "Status: off/disabled" +msgstr "" + +#: src/gui/settings.cpp:4139 +msgid "Status: off + macro rel" +msgstr "" + +#: src/gui/settings.cpp:4140 +msgid "Status: on + macro rel" +msgstr "" + +#: src/gui/settings.cpp:4141 +msgid "Status: on" +msgstr "" + +#: src/gui/settings.cpp:4142 +msgid "Status: volume" +msgstr "" + +#: src/gui/settings.cpp:4143 +msgid "Status: pitch" +msgstr "" + +#: src/gui/settings.cpp:4144 +msgid "Status: panning" +msgstr "" + +#: src/gui/settings.cpp:4145 +msgid "Status: chip (primary)" +msgstr "" + +#: src/gui/settings.cpp:4146 +msgid "Status: chip (secondary)" +msgstr "" + +#: src/gui/settings.cpp:4147 +msgid "Status: mixing" +msgstr "" + +#: src/gui/settings.cpp:4148 +msgid "Status: DSP effect" +msgstr "" + +#: src/gui/settings.cpp:4149 +msgid "Status: note altering" +msgstr "" + +#: src/gui/settings.cpp:4150 +msgid "Status: misc color 1" +msgstr "" + +#: src/gui/settings.cpp:4151 +msgid "Status: misc color 2" +msgstr "" + +#: src/gui/settings.cpp:4152 +msgid "Status: misc color 3" +msgstr "" + +#: src/gui/settings.cpp:4153 +msgid "Status: attack" +msgstr "" + +#: src/gui/settings.cpp:4154 +msgid "Status: decay" +msgstr "" + +#: src/gui/settings.cpp:4155 +msgid "Status: sustain" +msgstr "" + +#: src/gui/settings.cpp:4156 +msgid "Status: release" +msgstr "" + +#: src/gui/settings.cpp:4157 +msgid "Status: decrease linear" +msgstr "" + +#: src/gui/settings.cpp:4158 +msgid "Status: decrease exp" +msgstr "" + +#: src/gui/settings.cpp:4159 +msgid "Status: increase" +msgstr "" + +#: src/gui/settings.cpp:4160 +msgid "Status: bent" +msgstr "" + +#: src/gui/settings.cpp:4161 +msgid "Status: direct" +msgstr "" + +#: src/gui/settings.cpp:4164 src/gui/guiConst.cpp:586 src/gui/sampleEdit.cpp:96 +msgid "Sample Editor" +msgstr "" + +#: src/gui/settings.cpp:4167 +msgid "Time background" +msgstr "" + +#: src/gui/settings.cpp:4168 +msgid "Time text" +msgstr "" + +#: src/gui/settings.cpp:4169 +msgid "Loop region" +msgstr "" + +#: src/gui/settings.cpp:4170 +msgid "Center guide" +msgstr "" + +#: src/gui/settings.cpp:4171 +msgid "Grid" +msgstr "" + +#: src/gui/settings.cpp:4173 +msgid "Selection points" +msgstr "" + +#: src/gui/settings.cpp:4174 +msgid "Preview needle" +msgstr "" + +#: src/gui/settings.cpp:4175 +msgid "Playing needles" +msgstr "" + +#: src/gui/settings.cpp:4176 +msgid "Loop markers" +msgstr "" + +#: src/gui/settings.cpp:4177 +msgid "Chip select: disabled" +msgstr "" + +#: src/gui/settings.cpp:4178 +msgid "Chip select: enabled" +msgstr "" + +#: src/gui/settings.cpp:4179 +msgid "Chip select: enabled (failure)" +msgstr "" + +#: src/gui/settings.cpp:4182 src/gui/guiConst.cpp:602 src/gui/patManager.cpp:35 +msgid "Pattern Manager" +msgstr "" + +#: src/gui/settings.cpp:4183 +msgid "Unallocated" +msgstr "" + +#: src/gui/settings.cpp:4184 +msgid "Unused" +msgstr "" + +#: src/gui/settings.cpp:4185 +msgid "Used" +msgstr "" + +#: src/gui/settings.cpp:4186 +msgid "Overused" +msgstr "" + +#: src/gui/settings.cpp:4187 +msgid "Really overused" +msgstr "" + +#: src/gui/settings.cpp:4188 +msgid "Combo Breaker" +msgstr "" + +#: src/gui/settings.cpp:4191 src/gui/guiConst.cpp:599 src/gui/piano.cpp:63 +msgid "Piano" +msgstr "" + +#: src/gui/settings.cpp:4193 +msgid "Upper key" +msgstr "" + +#: src/gui/settings.cpp:4194 +msgid "Upper key (feedback)" +msgstr "" + +#: src/gui/settings.cpp:4195 +msgid "Upper key (pressed)" +msgstr "" + +#: src/gui/settings.cpp:4196 +msgid "Lower key" +msgstr "" + +#: src/gui/settings.cpp:4197 +msgid "Lower key (feedback)" +msgstr "" + +#: src/gui/settings.cpp:4198 +msgid "Lower key (pressed)" +msgstr "" + +#: src/gui/settings.cpp:4201 src/gui/clock.cpp:31 src/gui/guiConst.cpp:610 +msgid "Clock" +msgstr "" + +#: src/gui/settings.cpp:4202 +msgid "Clock text" +msgstr "" + +#: src/gui/settings.cpp:4203 +msgid "Beat (off)" +msgstr "" + +#: src/gui/settings.cpp:4204 +msgid "Beat (on)" +msgstr "" + +#: src/gui/settings.cpp:4209 +msgid "PortSet" +msgstr "" + +#: src/gui/settings.cpp:4210 +msgid "Port" +msgstr "" + +#: src/gui/settings.cpp:4211 +msgid "Port (hidden/unavailable)" +msgstr "" + +#: src/gui/settings.cpp:4212 +msgid "Connection (selected)" +msgstr "" + +#: src/gui/settings.cpp:4213 +msgid "Connection (other)" +msgstr "" + +#: src/gui/settings.cpp:4219 +msgid "Waveform data" +msgstr "" + +#: src/gui/settings.cpp:4222 +msgid "Reserved" +msgstr "" + +#: src/gui/settings.cpp:4224 +msgid "Sample (alternate 1)" +msgstr "" + +#: src/gui/settings.cpp:4225 +msgid "Sample (alternate 2)" +msgstr "" + +#: src/gui/settings.cpp:4226 +msgid "Sample (alternate 3)" +msgstr "" + +#: src/gui/settings.cpp:4227 +msgid "Wave RAM" +msgstr "" + +#: src/gui/settings.cpp:4228 +msgid "Wavetable (static)" +msgstr "" + +#: src/gui/settings.cpp:4229 +msgid "Echo buffer" +msgstr "" + +#: src/gui/settings.cpp:4230 +msgid "Namco 163 load pos" +msgstr "" + +#: src/gui/settings.cpp:4231 +msgid "Namco 163 play pos" +msgstr "" + +#: src/gui/settings.cpp:4232 +msgid "Sample (bank 0)" +msgstr "" + +#: src/gui/settings.cpp:4233 +msgid "Sample (bank 1)" +msgstr "" + +#: src/gui/settings.cpp:4234 +msgid "Sample (bank 2)" +msgstr "" + +#: src/gui/settings.cpp:4235 +msgid "Sample (bank 3)" +msgstr "" + +#: src/gui/settings.cpp:4236 +msgid "Sample (bank 4)" +msgstr "" + +#: src/gui/settings.cpp:4237 +msgid "Sample (bank 5)" +msgstr "" + +#: src/gui/settings.cpp:4238 +msgid "Sample (bank 6)" +msgstr "" + +#: src/gui/settings.cpp:4239 +msgid "Sample (bank 7)" +msgstr "" + +#: src/gui/settings.cpp:4244 +msgid "Log level: Error" +msgstr "" + +#: src/gui/settings.cpp:4245 +msgid "Log level: Warning" +msgstr "" + +#: src/gui/settings.cpp:4246 +msgid "Log level: Info" +msgstr "" + +#: src/gui/settings.cpp:4247 +msgid "Log level: Debug" +msgstr "" + +#: src/gui/settings.cpp:4248 +msgid "Log level: Trace/Verbose" +msgstr "" + +#: src/gui/settings.cpp:4253 +msgid "Backup" +msgstr "" + +#: src/gui/settings.cpp:4258 +msgid "Enable backup system" +msgstr "" + +#: src/gui/settings.cpp:4263 +msgid "Interval (in seconds)" +msgstr "" + +#: src/gui/settings.cpp:4268 +msgid "Backups per file" +msgstr "" + +#: src/gui/settings.cpp:4274 +msgid "Backup Management" +msgstr "" + +#: src/gui/settings.cpp:4278 +msgid "Purge before:" +msgstr "" + +#: src/gui/settings.cpp:4352 +msgid "Go##PDate" +msgstr "" + +#: src/gui/settings.cpp:4359 +#, c-format +msgid "%PB used" +msgstr "" + +#: src/gui/settings.cpp:4361 +#, c-format +msgid "%TB used" +msgstr "" + +#: src/gui/settings.cpp:4363 +#, c-format +msgid "%GB used" +msgstr "" + +#: src/gui/settings.cpp:4365 +#, c-format +msgid "%MB used" +msgstr "" + +#: src/gui/settings.cpp:4367 +#, c-format +msgid "%KB used" +msgstr "" + +#: src/gui/settings.cpp:4369 +#, c-format +msgid "% bytes used" +msgstr "" + +#: src/gui/settings.cpp:4374 +msgid "Refresh" +msgstr "" + +#: src/gui/settings.cpp:4378 +msgid "Delete all" +msgstr "" + +#: src/gui/settings.cpp:4384 src/gui/settings.cpp:6688 +msgid "Size" +msgstr "" + +#: src/gui/settings.cpp:4385 +msgid "Latest" +msgstr "" + +#: src/gui/settings.cpp:4395 +#, c-format +msgid "%P" +msgstr "" + +#: src/gui/settings.cpp:4397 +#, c-format +msgid "%T" +msgstr "" + +#: src/gui/settings.cpp:4399 +#, c-format +msgid "%G" +msgstr "" + +#: src/gui/settings.cpp:4401 +#, c-format +msgid "%M" +msgstr "" + +#: src/gui/settings.cpp:4403 +#, c-format +msgid "%K" +msgstr "" + +#: src/gui/settings.cpp:4405 +#, c-format +msgid "%" +msgstr "" + +#: src/gui/settings.cpp:4529 +msgid "Cheat Codes" +msgstr "" + +#: src/gui/settings.cpp:4531 +msgid "Enter code:" +msgstr "" + +#: src/gui/settings.cpp:4533 +msgid "Submit" +msgstr "" + +#: src/gui/settings.cpp:4537 +msgid "invalid code" +msgstr "" + +#: src/gui/settings.cpp:4547 +msgid "toggled alternate UI" +msgstr "" + +#: src/gui/settings.cpp:4551 +msgid ":smile: :star_struck: :sunglasses: :ok_hand:" +msgstr "" + +#: src/gui/settings.cpp:4555 +msgid "enabled all instrument types" +msgstr "" + +#: src/gui/settings.cpp:4559 +msgid "OK, if I bring your Partial pitch linearity will you stop bothering me?" +msgstr "" + +#: src/gui/settings.cpp:4563 +msgid "unlocked audio multi-threading options!" +msgstr "" + +#: src/gui/settings.cpp:4567 +msgid "enabled \"comfortable\" mode" +msgstr "" + +#: src/gui/settings.cpp:4585 +msgid "OK##SettingsOK" +msgstr "" + +#: src/gui/settings.cpp:4591 +msgid "Cancel##SettingsCancel" +msgstr "" + +#: src/gui/settings.cpp:4599 +msgid "Apply##SettingsApply" +msgstr "" + +#: src/gui/settings.cpp:5673 +msgid "could not initialize audio!" +msgstr "" + +#: src/gui/settings.cpp:5683 src/gui/gui.cpp:4067 src/gui/gui.cpp:6662 +#: src/gui/gui.cpp:7088 +msgid "error while loading fonts! please check your settings." +msgstr "" + +#: src/gui/settings.cpp:5862 +#, c-format +msgid "error while loading config! (%s)" +msgstr "" + +#: src/gui/settings.cpp:6675 +msgid "[Dir]" +msgstr "" + +#: src/gui/settings.cpp:6676 +msgid "[Link]" +msgstr "" + +#: src/gui/settings.cpp:6677 +msgid "[File]" +msgstr "" + +#: src/gui/settings.cpp:6678 +msgid "Name:" +msgstr "" + +#: src/gui/settings.cpp:6679 +msgid "Path:" +msgstr "" + +#: src/gui/settings.cpp:6680 +msgid "Reset search" +msgstr "" + +#: src/gui/settings.cpp:6681 +msgid "Drives" +msgstr "" + +#: src/gui/settings.cpp:6682 +msgid "" +"Edit path\n" +"You can also right click on path buttons" +msgstr "" + +#: src/gui/settings.cpp:6683 +msgid "Go to home directory" +msgstr "" + +#: src/gui/settings.cpp:6684 +msgid "Go to parent directory" +msgstr "" + +#: src/gui/settings.cpp:6685 +msgid "Create Directory" +msgstr "" + +#: src/gui/settings.cpp:6686 +msgid "File name" +msgstr "" + +#: src/gui/settings.cpp:6689 +msgid "Date" +msgstr "" + +#: src/gui/settings.cpp:6690 src/gui/gui.cpp:5510 src/gui/gui.cpp:5645 +#: src/gui/gui.cpp:5646 +msgid "Warning" +msgstr "" + +#: src/gui/settings.cpp:6691 +msgid "The file you selected already exists! Would you like to overwrite it?" +msgstr "" + +#: src/gui/settings.cpp:6692 src/gui/gui.cpp:5650 src/gui/gui.cpp:5674 +#: src/gui/gui.cpp:5698 src/gui/gui.cpp:5722 src/gui/gui.cpp:5746 +#: src/gui/gui.cpp:5770 src/gui/gui.cpp:5802 src/gui/gui.cpp:5818 +#: src/gui/gui.cpp:5829 src/gui/gui.cpp:5841 src/gui/gui.cpp:5995 +#: src/gui/gui.cpp:6017 src/gui/gui.cpp:6032 src/gui/gui.cpp:6043 +msgid "Yes" +msgstr "" + +#: src/gui/settings.cpp:6693 src/gui/findReplace.cpp:828 src/gui/gui.cpp:5664 +#: src/gui/gui.cpp:5688 src/gui/gui.cpp:5712 src/gui/gui.cpp:5736 +#: src/gui/gui.cpp:5760 src/gui/gui.cpp:5788 src/gui/gui.cpp:5813 +#: src/gui/gui.cpp:5824 src/gui/gui.cpp:5836 src/gui/gui.cpp:5848 +#: src/gui/gui.cpp:6012 src/gui/gui.cpp:6027 src/gui/gui.cpp:6037 +#: src/gui/gui.cpp:6050 +msgid "No" +msgstr "" + +#: src/gui/settings.cpp:6694 +msgid "%Y/%m/%d %H:%M" +msgstr "" + +#: src/gui/orders.cpp:114 +msgid "Add new order" +msgstr "" + +#: src/gui/orders.cpp:125 src/gui/guiConst.cpp:794 +msgid "Remove order" +msgstr "" + +#: src/gui/orders.cpp:137 +msgid "Duplicate order (right-click to deep clone)" +msgstr "" + +#: src/gui/orders.cpp:146 src/gui/guiConst.cpp:795 +msgid "Move order up" +msgstr "" + +#: src/gui/orders.cpp:155 src/gui/guiConst.cpp:796 +msgid "Move order down" +msgstr "" + +#: src/gui/orders.cpp:167 +msgid "Place copy of current order at end of song (right-click to deep clone)" +msgstr "" + +#: src/gui/orders.cpp:177 +msgid "Order change mode: entire row" +msgstr "" + +#: src/gui/orders.cpp:179 +msgid "Order change mode: one" +msgstr "" + +#: src/gui/orders.cpp:205 +msgid "Order edit mode: Select and type (scroll vertically)" +msgstr "" + +#: src/gui/orders.cpp:207 +msgid "Order edit mode: Select and type (scroll horizontally)" +msgstr "" + +#: src/gui/orders.cpp:209 +msgid "Order edit mode: Select and type (don't scroll)" +msgstr "" + +#: src/gui/orders.cpp:211 +msgid "Order edit mode: Click to change" +msgstr "" + +#: src/gui/findReplace.cpp:29 +msgid "ignore" +msgstr "" + +#: src/gui/findReplace.cpp:30 +msgid "equals" +msgstr "" + +#: src/gui/findReplace.cpp:31 +msgid "not equal" +msgstr "" + +#: src/gui/findReplace.cpp:32 +msgid "between" +msgstr "" + +#: src/gui/findReplace.cpp:33 +msgid "not between" +msgstr "" + +#: src/gui/findReplace.cpp:34 +msgid "any" +msgstr "" + +#: src/gui/findReplace.cpp:35 src/gui/guiConst.cpp:217 +msgid "none" +msgstr "" + +#: src/gui/findReplace.cpp:39 +msgid "set" +msgstr "" + +#: src/gui/findReplace.cpp:40 +msgid "add" +msgstr "" + +#: src/gui/findReplace.cpp:41 +msgid "add (overflow)" +msgstr "" + +#: src/gui/findReplace.cpp:42 +msgid "scale %" +msgstr "" + +#: src/gui/findReplace.cpp:512 src/gui/guiConst.cpp:609 +msgid "Find/Replace" +msgstr "" + +#: src/gui/findReplace.cpp:520 src/gui/findReplace.cpp:850 +msgid "Find" +msgstr "" + +#: src/gui/findReplace.cpp:526 src/gui/findReplace.cpp:535 +msgid "order" +msgstr "" + +#: src/gui/findReplace.cpp:527 src/gui/findReplace.cpp:537 +msgid "row" +msgstr "" + +#: src/gui/findReplace.cpp:539 src/gui/csPlayer.cpp:146 +msgid "channel" +msgstr "" + +#: src/gui/findReplace.cpp:541 +msgid "go" +msgstr "" + +#: src/gui/findReplace.cpp:585 +msgid "no matches found!" +msgstr "" + +#: src/gui/findReplace.cpp:587 +msgid "Back" +msgstr "" + +#: src/gui/findReplace.cpp:750 +msgid "Delete query" +msgstr "" + +#: src/gui/findReplace.cpp:754 src/gui/findReplace.cpp:1037 +msgid "Add effect" +msgstr "" + +#: src/gui/findReplace.cpp:761 src/gui/findReplace.cpp:1044 +msgid "Remove effect" +msgstr "" + +#: src/gui/findReplace.cpp:786 +msgid "Search range:" +msgstr "" + +#: src/gui/findReplace.cpp:799 +msgid "Confine to channels" +msgstr "" + +#: src/gui/findReplace.cpp:803 src/gui/sampleEdit.cpp:1152 +msgid "From" +msgstr "" + +#: src/gui/findReplace.cpp:814 src/gui/sampleEdit.cpp:1156 +msgid "To" +msgstr "" + +#: src/gui/findReplace.cpp:826 +msgid "Match effect position:" +msgstr "" + +#: src/gui/findReplace.cpp:832 +msgid "match effects regardless of position." +msgstr "" + +#: src/gui/findReplace.cpp:834 src/gui/compatFlags.cpp:288 +msgid "Lax" +msgstr "" + +#: src/gui/findReplace.cpp:838 +msgid "match effects only if they appear in-order." +msgstr "" + +#: src/gui/findReplace.cpp:840 src/gui/compatFlags.cpp:276 +msgid "Strict" +msgstr "" + +#: src/gui/findReplace.cpp:844 +msgid "match effects only if they appear exactly as specified." +msgstr "" + +#: src/gui/findReplace.cpp:856 +msgid "Replace" +msgstr "" + +#: src/gui/findReplace.cpp:908 +msgid "INVALID" +msgstr "" + +#: src/gui/findReplace.cpp:1052 +msgid "Effect replace mode:" +msgstr "" + +#: src/gui/findReplace.cpp:1053 +msgid "Replace matches only" +msgstr "" + +#: src/gui/findReplace.cpp:1056 +msgid "Replace matches, then free spaces" +msgstr "" + +#: src/gui/findReplace.cpp:1059 +msgid "Clear effects" +msgstr "" + +#: src/gui/findReplace.cpp:1062 +msgid "Insert in free spaces" +msgstr "" + +#: src/gui/findReplace.cpp:1065 +msgid "Replace##QueryReplace" +msgstr "" + +#: src/gui/about.cpp:26 +msgid "is proud to present" +msgstr "" + +#: src/gui/about.cpp:30 +msgid "the biggest multi-system chiptune tracker!" +msgstr "" + +#: src/gui/about.cpp:31 +msgid "featuring DefleMask song compatibility." +msgstr "" + +#: src/gui/about.cpp:33 +msgid "> CREDITS <" +msgstr "" + +#: src/gui/about.cpp:35 +msgid "-- program --" +msgstr "" + +#: src/gui/about.cpp:37 +msgid "A M 4 N (intro tune)" +msgstr "" + +#: src/gui/about.cpp:52 +msgid "-- graphics/UI design --" +msgstr "" + +#: src/gui/about.cpp:59 +msgid "-- documentation --" +msgstr "" + +#: src/gui/about.cpp:69 +msgid "-- localization/translation team --" +msgstr "" + +#: src/gui/about.cpp:81 +msgid "-- demo songs --" +msgstr "" + +#: src/gui/about.cpp:207 +msgid "-- additional feedback/fixes --" +msgstr "" + +#: src/gui/about.cpp:218 +msgid "-- Metal backend test team --" +msgstr "" + +#: src/gui/about.cpp:224 +msgid "-- DirectX 9 backend test team --" +msgstr "" + +#: src/gui/about.cpp:231 +msgid "powered by:" +msgstr "" + +#: src/gui/about.cpp:232 +msgid "Dear ImGui by Omar Cornut" +msgstr "" + +#: src/gui/about.cpp:233 +msgid "SDL2 by Sam Lantinga" +msgstr "" + +#: src/gui/about.cpp:237 +msgid "zlib by Jean-loup Gailly" +msgstr "" + +#: src/gui/about.cpp:238 +msgid "and Mark Adler" +msgstr "" + +#: src/gui/about.cpp:239 +msgid "libsndfile by Erik de Castro Lopo" +msgstr "" + +#: src/gui/about.cpp:240 +msgid "Portable File Dialogs by Sam Hocevar" +msgstr "" + +#: src/gui/about.cpp:241 +msgid "Native File Dialog by Frogtoss Games" +msgstr "" + +#: src/gui/about.cpp:243 +msgid "Weak-JACK by x42" +msgstr "" + +#: src/gui/about.cpp:244 +msgid "RtMidi by Gary P. Scavone" +msgstr "" + +#: src/gui/about.cpp:245 +msgid "FFTW by Matteo Frigo and Steven G. Johnson" +msgstr "" + +#: src/gui/about.cpp:246 +msgid "backward-cpp by Google" +msgstr "" + +#: src/gui/about.cpp:247 +msgid "adpcm by superctr" +msgstr "" + +#: src/gui/about.cpp:248 +msgid "adpcm-xq by David Bryant" +msgstr "" + +#: src/gui/about.cpp:249 +msgid "Nuked-OPL3/OPLL/OPM/OPN2/PSG by nukeykt" +msgstr "" + +#: src/gui/about.cpp:250 +msgid "YM3812-LLE, YMF262-LLE, YMF276-LLE and YM2608-LLE by nukeykt" +msgstr "" + +#: src/gui/about.cpp:251 +msgid "ESFMu (modified version) by Kagamiin~" +msgstr "" + +#: src/gui/about.cpp:252 +msgid "ymfm by Aaron Giles" +msgstr "" + +#: src/gui/about.cpp:253 +msgid "emu2413 by Digital Sound Antiques" +msgstr "" + +#: src/gui/about.cpp:254 +msgid "MAME SN76496 by Nicola Salmoria" +msgstr "" + +#: src/gui/about.cpp:255 +msgid "MAME AY-3-8910 by Couriersud" +msgstr "" + +#: src/gui/about.cpp:256 +msgid "with AY8930 fixes by Eulous, cam900 and Grauw" +msgstr "" + +#: src/gui/about.cpp:257 +msgid "MAME SAA1099 by Juergen Buchmueller and Manuel Abadia" +msgstr "" + +#: src/gui/about.cpp:258 +msgid "MAME Namco WSG by Nicola Salmoria and Aaron Giles" +msgstr "" + +#: src/gui/about.cpp:259 +msgid "MAME RF5C68 core by Olivier Galibert and Aaron Giles" +msgstr "" + +#: src/gui/about.cpp:260 +msgid "MAME MSM5232 core by Jarek Burczynski and Hiromitsu Shioya" +msgstr "" + +#: src/gui/about.cpp:261 +msgid "MAME MSM6258 core by Barry Rodewald" +msgstr "" + +#: src/gui/about.cpp:262 +msgid "MAME YMZ280B core by Aaron Giles" +msgstr "" + +#: src/gui/about.cpp:263 +msgid "MAME GA20 core by Acho A. Tang and R. Belmont" +msgstr "" + +#: src/gui/about.cpp:264 +msgid "MAME SegaPCM core by Hiromitsu Shioya and Olivier Galibert" +msgstr "" + +#: src/gui/about.cpp:265 +msgid "SAASound by Dave Hooper and Simon Owen" +msgstr "" + +#: src/gui/about.cpp:266 +msgid "SameBoy by Lior Halphon" +msgstr "" + +#: src/gui/about.cpp:267 +msgid "Mednafen PCE, WonderSwan, T6W28 and Virtual Boy audio cores" +msgstr "" + +#: src/gui/about.cpp:268 +msgid "SNES DSP core by Blargg" +msgstr "" + +#: src/gui/about.cpp:269 +msgid "puNES (NES, MMC5 and FDS) by FHorse" +msgstr "" + +#: src/gui/about.cpp:270 +msgid "NSFPlay (NES and FDS) by Brad Smith and Brezza" +msgstr "" + +#: src/gui/about.cpp:271 +msgid "reSID by Dag Lem" +msgstr "" + +#: src/gui/about.cpp:272 +msgid "reSIDfp by Dag Lem, Antti Lankila" +msgstr "" + +#: src/gui/about.cpp:273 +msgid "and Leandro Nini" +msgstr "" + +#: src/gui/about.cpp:274 +msgid "dSID by DefleMask Team based on jsSID" +msgstr "" + +#: src/gui/about.cpp:275 +msgid "Stella by Stella Team" +msgstr "" + +#: src/gui/about.cpp:276 +msgid "QSound emulator by superctr and Valley Bell" +msgstr "" + +#: src/gui/about.cpp:277 +msgid "VICE VIC-20 sound core by Rami Rasanen and viznut" +msgstr "" + +#: src/gui/about.cpp:278 +msgid "VICE TED sound core by Andreas Boose, Tibor Biczo" +msgstr "" + +#: src/gui/about.cpp:279 +msgid "and Marco van den Heuvel" +msgstr "" + +#: src/gui/about.cpp:280 +msgid "VERA sound core by Frank van den Hoef" +msgstr "" + +#: src/gui/about.cpp:281 +msgid "mzpokeysnd POKEY emulator by Michael Borisov" +msgstr "" + +#: src/gui/about.cpp:282 +msgid "ASAP POKEY emulator by Piotr Fusik" +msgstr "" + +#: src/gui/about.cpp:283 +msgid "ported by laoo to C++" +msgstr "" + +#: src/gui/about.cpp:284 +msgid "vgsound_emu (second version, modified version) by cam900" +msgstr "" + +#: src/gui/about.cpp:285 +msgid "SM8521 emulator (modified version) by cam900" +msgstr "" + +#: src/gui/about.cpp:286 +msgid "D65010G031 emulator (modified version) by cam900" +msgstr "" + +#: src/gui/about.cpp:287 +msgid "Namco C140/C219 emulator (modified version) by cam900" +msgstr "" + +#: src/gui/about.cpp:288 +msgid "PowerNoise emulator by scratchminer" +msgstr "" + +#: src/gui/about.cpp:289 +msgid "ep128emu by Istvan Varga" +msgstr "" + +#: src/gui/about.cpp:290 +msgid "NDS sound emulator by cam900" +msgstr "" + +#: src/gui/about.cpp:292 +msgid "greetings to:" +msgstr "" + +#: src/gui/about.cpp:295 +msgid "all members of Deflers of Noice!" +msgstr "" + +#: src/gui/about.cpp:301 +msgid "copyright © 2021-2024 tildearrow" +msgstr "" + +#: src/gui/about.cpp:302 +msgid "(and contributors)." +msgstr "" + +#: src/gui/about.cpp:303 +msgid "licensed under GPLv2+! see" +msgstr "" + +#: src/gui/about.cpp:304 +msgid "LICENSE for more information." +msgstr "" + +#: src/gui/about.cpp:306 +msgid "help Furnace grow:" +msgstr "" + +#: src/gui/about.cpp:309 +msgid "contact tildearrow at:" +msgstr "" + +#: src/gui/about.cpp:312 +msgid "disclaimer:" +msgstr "" + +#: src/gui/about.cpp:313 +msgid "despite the fact this program works" +msgstr "" + +#: src/gui/about.cpp:314 +msgid "with the .dmf file format, it is NOT" +msgstr "" + +#: src/gui/about.cpp:315 +msgid "affiliated with Delek or DefleMask in" +msgstr "" + +#: src/gui/about.cpp:316 +msgid "any way, nor it is a replacement for" +msgstr "" + +#: src/gui/about.cpp:317 +msgid "the original program." +msgstr "" + +#: src/gui/about.cpp:319 +msgid "it also comes with ABSOLUTELY NO WARRANTY." +msgstr "" + +#: src/gui/about.cpp:321 +msgid "thanks to all contributors/bug reporters!" +msgstr "" + +#: src/gui/about.cpp:328 +msgid "About Furnace" +msgstr "" + +#: src/gui/about.cpp:418 +msgid "Unsaved changes! Save changes before playing?" +msgstr "" + +#: src/gui/compatFlags.cpp:31 src/gui/guiConst.cpp:598 +msgid "Compatibility Flags" +msgstr "" + +#: src/gui/compatFlags.cpp:32 +msgid "" +"these flags are designed to provide better DefleMask/older Furnace " +"compatibility.\n" +"it is recommended to disable most of these unless you rely on specific " +"quirks." +msgstr "" + +#: src/gui/compatFlags.cpp:34 src/gui/compatFlags.cpp:310 +msgid "DefleMask" +msgstr "" + +#: src/gui/compatFlags.cpp:35 +msgid "Limit slide range" +msgstr "" + +#: src/gui/compatFlags.cpp:37 +msgid "" +"when enabled, slides are limited to a compatible range.\n" +"may cause problems with slides in negative octaves." +msgstr "" + +#: src/gui/compatFlags.cpp:39 +msgid "Compatible noise layout on NES and PC Engine" +msgstr "" + +#: src/gui/compatFlags.cpp:41 +msgid "" +"use a rather unusual compatible noise frequency layout.\n" +"removes some noise frequencies on PC Engine." +msgstr "" + +#: src/gui/compatFlags.cpp:43 +msgid "Game Boy instrument duty is wave volume" +msgstr "" + +#: src/gui/compatFlags.cpp:45 +msgid "" +"if enabled, an instrument with duty macro in the wave channel will be mapped " +"to wavetable volume." +msgstr "" + +#: src/gui/compatFlags.cpp:48 +msgid "Restart macro on portamento" +msgstr "" + +#: src/gui/compatFlags.cpp:50 +msgid "" +"when enabled, a portamento effect will reset the channel's macro if used in " +"combination with a note." +msgstr "" + +#: src/gui/compatFlags.cpp:52 +msgid "Legacy volume slides" +msgstr "" + +#: src/gui/compatFlags.cpp:54 +msgid "" +"simulate glitchy volume slide behavior by silently overflowing the volume " +"when the slide goes below 0." +msgstr "" + +#: src/gui/compatFlags.cpp:56 +msgid "Compatible arpeggio" +msgstr "" + +#: src/gui/compatFlags.cpp:58 +msgid "delay arpeggio by one tick on every new note." +msgstr "" + +#: src/gui/compatFlags.cpp:60 +msgid "Disable DAC when sample ends" +msgstr "" + +#: src/gui/compatFlags.cpp:62 +msgid "" +"when enabled, the DAC in YM2612 will be disabled if there isn't any sample " +"playing." +msgstr "" + +#: src/gui/compatFlags.cpp:64 +msgid "Broken speed alternation" +msgstr "" + +#: src/gui/compatFlags.cpp:66 +msgid "" +"determines next speed based on whether the row is odd/even instead of " +"alternating between speeds." +msgstr "" + +#: src/gui/compatFlags.cpp:68 +msgid "Ignore duplicate slide effects" +msgstr "" + +#: src/gui/compatFlags.cpp:70 +msgid "" +"if this is on, only the first slide of a row in a channel will be considered." +msgstr "" + +#: src/gui/compatFlags.cpp:72 +msgid "Ignore 0Dxx on the last order" +msgstr "" + +#: src/gui/compatFlags.cpp:74 +msgid "" +"if this is on, a jump to next row effect will not take place when it is on " +"the last order of a song." +msgstr "" + +#: src/gui/compatFlags.cpp:76 +msgid "Buggy portamento after pitch slide" +msgstr "" + +#: src/gui/compatFlags.cpp:78 +msgid "simulates a bug in where portamento does not work after sliding." +msgstr "" + +#: src/gui/compatFlags.cpp:80 +msgid "FM pitch slide octave boundary odd behavior" +msgstr "" + +#: src/gui/compatFlags.cpp:82 +msgid "" +"if this is on, a pitch slide that crosses the octave boundary will stop for " +"one tick and then continue from the nearest octave boundary.\n" +"for .dmf compatibility." +msgstr "" + +#: src/gui/compatFlags.cpp:84 +msgid "Don't apply Game Boy envelope on note-less instrument change" +msgstr "" + +#: src/gui/compatFlags.cpp:86 +msgid "if this is on, an instrument change will not affect the envelope." +msgstr "" + +#: src/gui/compatFlags.cpp:88 +msgid "Ignore DAC mode change outside of intended channel in ExtCh mode" +msgstr "" + +#: src/gui/compatFlags.cpp:90 +msgid "if this is on, 17xx has no effect on the operator channels in YM2612." +msgstr "" + +#: src/gui/compatFlags.cpp:92 +msgid "E1xy/E2xy also take priority over slide stops" +msgstr "" + +#: src/gui/compatFlags.cpp:94 +msgid "does this make any sense by now?" +msgstr "" + +#: src/gui/compatFlags.cpp:96 +msgid "E1xy/E2xy stop when repeating the same note" +msgstr "" + +#: src/gui/compatFlags.cpp:98 +msgid "ugh, if only this wasn't a thing..." +msgstr "" + +#: src/gui/compatFlags.cpp:100 +msgid "SN76489 duty macro always resets phase" +msgstr "" + +#: src/gui/compatFlags.cpp:102 +msgid "" +"when enabled, duty macro will always reset phase, even if its value hasn't " +"changed." +msgstr "" + +#: src/gui/compatFlags.cpp:104 +msgid "Broken volume scaling strategy" +msgstr "" + +#: src/gui/compatFlags.cpp:106 +msgid "" +"when enabled:\n" +"- log scaling: multiply\n" +"- linear scaling: subtract\n" +"when disabled:\n" +"- log scaling: subtract\n" +"- linear scaling: multiply" +msgstr "" + +#: src/gui/compatFlags.cpp:108 +msgid "Don't persist volume macro after it finishes" +msgstr "" + +#: src/gui/compatFlags.cpp:110 +msgid "" +"when enabled, a value in the volume column that happens after the volume " +"macro is done will disregard the macro." +msgstr "" + +#: src/gui/compatFlags.cpp:112 +msgid "Broken output volume on instrument change" +msgstr "" + +#: src/gui/compatFlags.cpp:114 +msgid "" +"if enabled, no checks for the presence of a volume macro will be made.\n" +"this will cause the last macro value to linger unless a value in the volume " +"column is present." +msgstr "" + +#: src/gui/compatFlags.cpp:116 +msgid "Broken output volume - Episode 2 (PLEASE KEEP ME DISABLED)" +msgstr "" + +#: src/gui/compatFlags.cpp:118 +msgid "" +"these compatibility flags are getting SO damn ridiculous and out of " +"control.\n" +"as you may have guessed, this one exists due to yet ANOTHER DefleMask-" +"specific behavior.\n" +"please keep this off at all costs, because I will not support it when ROM " +"export comes.\n" +"oh, and don't start an argument out of it. Furnace isn't a DefleMask " +"replacement, and no,\n" +"I am not trying to make it look like one with all these flags.\n" +"\n" +"oh, and what about the other flags that don't have to do with DefleMask?\n" +"those are for .mod import, future FamiTracker import and personal taste!\n" +"\n" +"end of rant" +msgstr "" + +#: src/gui/compatFlags.cpp:120 +msgid "Treat SN76489 periods under 8 as 1" +msgstr "" + +#: src/gui/compatFlags.cpp:122 +msgid "" +"when enabled, any SN period under 8 will be written as 1 instead.\n" +"this replicates DefleMask behavior, but reduces available period range." +msgstr "" + +#: src/gui/compatFlags.cpp:126 src/gui/compatFlags.cpp:304 +msgid "Old Furnace" +msgstr "" + +#: src/gui/compatFlags.cpp:127 +msgid "Arpeggio inhibits non-porta slides" +msgstr "" + +#: src/gui/compatFlags.cpp:129 src/gui/compatFlags.cpp:133 +msgid "behavior changed in 0.5.5" +msgstr "" + +#: src/gui/compatFlags.cpp:131 +msgid "Wack FM algorithm macro" +msgstr "" + +#: src/gui/compatFlags.cpp:135 +msgid "Broken shortcut slides (E1xy/E2xy)" +msgstr "" + +#: src/gui/compatFlags.cpp:137 +msgid "behavior changed in 0.5.7" +msgstr "" + +#: src/gui/compatFlags.cpp:139 +msgid "Stop portamento on note off" +msgstr "" + +#: src/gui/compatFlags.cpp:141 src/gui/compatFlags.cpp:145 +#: src/gui/compatFlags.cpp:149 src/gui/compatFlags.cpp:153 +#: src/gui/compatFlags.cpp:157 src/gui/compatFlags.cpp:161 +#: src/gui/compatFlags.cpp:165 +msgid "behavior changed in 0.6pre1" +msgstr "" + +#: src/gui/compatFlags.cpp:143 +msgid "Don't allow instrument change during slides" +msgstr "" + +#: src/gui/compatFlags.cpp:147 +msgid "Don't reset note to base on arpeggio stop" +msgstr "" + +#: src/gui/compatFlags.cpp:151 +msgid "ExtCh channel status is not shared among operators" +msgstr "" + +#: src/gui/compatFlags.cpp:155 +msgid "Disable new SegaPCM features (macros and better panning)" +msgstr "" + +#: src/gui/compatFlags.cpp:159 +msgid "Old FM octave boundary behavior" +msgstr "" + +#: src/gui/compatFlags.cpp:163 +msgid "Disable OPN2 DAC volume control" +msgstr "" + +#: src/gui/compatFlags.cpp:167 +msgid "Broken initial position of portamento after arpeggio" +msgstr "" + +#: src/gui/compatFlags.cpp:169 +msgid "behavior changed in 0.6pre1.5" +msgstr "" + +#: src/gui/compatFlags.cpp:171 +msgid "Disable new sample features" +msgstr "" + +#: src/gui/compatFlags.cpp:173 src/gui/compatFlags.cpp:177 +msgid "behavior changed in 0.6pre2" +msgstr "" + +#: src/gui/compatFlags.cpp:175 +msgid "Old arpeggio macro + pitch slide strategy" +msgstr "" + +#: src/gui/compatFlags.cpp:179 +msgid "Broken portamento during legato" +msgstr "" + +#: src/gui/compatFlags.cpp:181 +msgid "behavior changed in 0.6pre4" +msgstr "" + +#: src/gui/compatFlags.cpp:183 +msgid "Broken macros in some FM chips after note off" +msgstr "" + +#: src/gui/compatFlags.cpp:185 +msgid "behavior changed in 0.6pre5" +msgstr "" + +#: src/gui/compatFlags.cpp:187 +msgid "Pre-note does not take effects into consideration" +msgstr "" + +#: src/gui/compatFlags.cpp:189 +msgid "behavior changed in 0.6pre9" +msgstr "" + +#: src/gui/compatFlags.cpp:191 +msgid "Disable new NES DPCM features" +msgstr "" + +#: src/gui/compatFlags.cpp:193 +msgid "behavior changed in 0.6.1" +msgstr "" + +#: src/gui/compatFlags.cpp:195 +msgid "Legacy technical ALWAYS_SET_VOLUME behavior" +msgstr "" + +#: src/gui/compatFlags.cpp:197 +msgid "" +"behavior changed in 0.6.1\n" +"this flag will be removed if I find out that none of the songs break after " +"disabling it." +msgstr "" + +#: src/gui/compatFlags.cpp:199 +msgid "Old sample offset effect" +msgstr "" + +#: src/gui/compatFlags.cpp:201 +msgid "behavior changed in 0.6.3" +msgstr "" + +#: src/gui/compatFlags.cpp:205 +msgid ".mod import" +msgstr "" + +#: src/gui/compatFlags.cpp:206 +msgid "Don't slide on the first tick of a row" +msgstr "" + +#: src/gui/compatFlags.cpp:208 +msgid "" +"simulates ProTracker's behavior of not applying volume/pitch slides on the " +"first tick of a row." +msgstr "" + +#: src/gui/compatFlags.cpp:210 +msgid "Reset arpeggio position on row change" +msgstr "" + +#: src/gui/compatFlags.cpp:212 +msgid "" +"simulates ProTracker's behavior of arpeggio being bound to the current tick " +"of a row." +msgstr "" + +#: src/gui/compatFlags.cpp:216 +msgid "Pitch/Playback" +msgstr "" + +#: src/gui/compatFlags.cpp:217 +msgid "Pitch linearity:" +msgstr "" + +#: src/gui/compatFlags.cpp:223 +msgid "like ProTracker/FamiTracker" +msgstr "" + +#: src/gui/compatFlags.cpp:227 +msgid "Partial (only 04xy/E5xx)" +msgstr "" + +#: src/gui/compatFlags.cpp:231 +msgid "" +"like DefleMask\n" +"\n" +"this pitch linearity mode is deprecated due to:\n" +"- excessive complexity\n" +"- lack of possible optimization\n" +"\n" +"it is recommended to change it now because I will remove this option in the " +"future!" +msgstr "" + +#: src/gui/compatFlags.cpp:235 +msgid "Full" +msgstr "" + +#: src/gui/compatFlags.cpp:239 +msgid "like Impulse Tracker" +msgstr "" + +#: src/gui/compatFlags.cpp:246 +msgid "Pitch slide speed multiplier" +msgstr "" + +#: src/gui/compatFlags.cpp:252 +msgid "Loop modality:" +msgstr "" + +#: src/gui/compatFlags.cpp:254 +msgid "Reset channels" +msgstr "" + +#: src/gui/compatFlags.cpp:258 +msgid "" +"select to reset channels on loop. may trigger a voltage click on every loop!" +msgstr "" + +#: src/gui/compatFlags.cpp:260 +msgid "Soft reset channels" +msgstr "" + +#: src/gui/compatFlags.cpp:264 +msgid "select to turn channels off on loop." +msgstr "" + +#: src/gui/compatFlags.cpp:266 +msgid "Do nothing" +msgstr "" + +#: src/gui/compatFlags.cpp:270 +msgid "select to not reset channels on loop." +msgstr "" + +#: src/gui/compatFlags.cpp:274 +msgid "Cut/delay effect policy:" +msgstr "" + +#: src/gui/compatFlags.cpp:280 +msgid "only when time is less than speed (like DefleMask/ProTracker)" +msgstr "" + +#: src/gui/compatFlags.cpp:282 +msgid "Strict (old)" +msgstr "" + +#: src/gui/compatFlags.cpp:286 +msgid "only when time is less than or equal to speed (original buggy behavior)" +msgstr "" + +#: src/gui/compatFlags.cpp:292 +msgid "no checks" +msgstr "" + +#: src/gui/compatFlags.cpp:296 +msgid "Simultaneous jump (0B+0D) treatment:" +msgstr "" + +#: src/gui/compatFlags.cpp:302 +msgid "accept 0B+0D to jump to a specific row of an order" +msgstr "" + +#: src/gui/compatFlags.cpp:308 +msgid "only accept the first jump effect" +msgstr "" + +#: src/gui/compatFlags.cpp:314 +msgid "only accept 0Dxx" +msgstr "" + +#: src/gui/compatFlags.cpp:320 +msgid "Auto-insert one tick gap between notes" +msgstr "" + +#: src/gui/compatFlags.cpp:322 +msgid "" +"when enabled, a one-tick note cut will be inserted between non-legato/non-" +"portamento notes.\n" +"this simulates the behavior of some Amiga/SNES music engines.\n" +"\n" +"ineffective on C64." +msgstr "" + +#: src/gui/compatFlags.cpp:327 +msgid "Don't reset slides after note off" +msgstr "" + +#: src/gui/compatFlags.cpp:329 +msgid "when enabled, note off will not reset the channel's slide effect." +msgstr "" + +#: src/gui/compatFlags.cpp:331 +msgid "Don't reset portamento after reaching target" +msgstr "" + +#: src/gui/compatFlags.cpp:333 +msgid "" +"when enabled, the slide effect will not be disabled after it reaches its " +"target." +msgstr "" + +#: src/gui/compatFlags.cpp:335 +msgid "Continuous vibrato" +msgstr "" + +#: src/gui/compatFlags.cpp:337 +msgid "when enabled, vibrato phase/position will not be reset on a new note." +msgstr "" + +#: src/gui/compatFlags.cpp:339 +msgid "Pitch macro is not linear" +msgstr "" + +#: src/gui/compatFlags.cpp:341 +msgid "" +"when enabled, the pitch macro of an instrument is in frequency/period space." +msgstr "" + +#: src/gui/compatFlags.cpp:343 +msgid "Reset arpeggio effect position on new note" +msgstr "" + +#: src/gui/compatFlags.cpp:345 +msgid "when enabled, arpeggio effect (00xy) position is reset on a new note." +msgstr "" + +#: src/gui/compatFlags.cpp:347 +msgid "Volume scaling rounds up" +msgstr "" + +#: src/gui/compatFlags.cpp:349 +msgid "" +"when enabled, volume macros round up when applied\n" +"this prevents volume scaling from causing vol=0, which is silent on some " +"chips\n" +"\n" +"ineffective on logarithmic channels" +msgstr "" + +#: src/gui/guiConst.cpp:127 +msgid "Generic Sample" +msgstr "" + +#: src/gui/guiConst.cpp:155 +msgid "OPL (drums)" +msgstr "" + +#: src/gui/guiConst.cpp:191 +msgid "Forward" +msgstr "" + +#: src/gui/guiConst.cpp:192 +msgid "Backward" +msgstr "" + +#: src/gui/guiConst.cpp:193 +msgid "Ping pong" +msgstr "" + +#: src/gui/guiConst.cpp:218 +msgid "linear" +msgstr "" + +#: src/gui/guiConst.cpp:219 +msgid "cubic spline" +msgstr "" + +#: src/gui/guiConst.cpp:220 +msgid "blep synthesis" +msgstr "" + +#: src/gui/guiConst.cpp:221 +msgid "sinc" +msgstr "" + +#: src/gui/guiConst.cpp:222 +msgid "best possible" +msgstr "" + +#: src/gui/guiConst.cpp:226 src/gui/sampleEdit.cpp:137 +#: src/gui/sampleEdit.cpp:143 +msgid "Invalid" +msgstr "" + +#: src/gui/guiConst.cpp:231 +msgid "Time" +msgstr "" + +#: src/gui/guiConst.cpp:233 +msgid "System (Primary)" +msgstr "" + +#: src/gui/guiConst.cpp:234 +msgid "System (Secondary)" +msgstr "" + +#: src/gui/guiConst.cpp:530 +msgid "---Global" +msgstr "" + +#: src/gui/guiConst.cpp:532 +msgid "Open file" +msgstr "" + +#: src/gui/guiConst.cpp:533 +msgid "Restore backup" +msgstr "" + +#: src/gui/guiConst.cpp:534 +msgid "Save file" +msgstr "" + +#: src/gui/guiConst.cpp:535 +msgid "Save as" +msgstr "" + +#: src/gui/guiConst.cpp:537 src/gui/sampleEdit.cpp:982 +msgid "Undo" +msgstr "" + +#: src/gui/guiConst.cpp:539 src/gui/guiConst.cpp:541 src/gui/sampleEdit.cpp:989 +msgid "Redo" +msgstr "" + +#: src/gui/guiConst.cpp:543 +msgid "Exit" +msgstr "" + +#: src/gui/guiConst.cpp:544 +msgid "Play/Stop (toggle)" +msgstr "" + +#: src/gui/guiConst.cpp:547 +msgid "Play (from beginning)" +msgstr "" + +#: src/gui/guiConst.cpp:548 +msgid "Play (repeat pattern)" +msgstr "" + +#: src/gui/guiConst.cpp:549 +msgid "Play from cursor" +msgstr "" + +#: src/gui/guiConst.cpp:550 +msgid "Step row" +msgstr "" + +#: src/gui/guiConst.cpp:551 +msgid "Octave up" +msgstr "" + +#: src/gui/guiConst.cpp:552 +msgid "Octave down" +msgstr "" + +#: src/gui/guiConst.cpp:553 +msgid "Previous instrument" +msgstr "" + +#: src/gui/guiConst.cpp:554 +msgid "Next instrument" +msgstr "" + +#: src/gui/guiConst.cpp:555 +msgid "Increase edit step" +msgstr "" + +#: src/gui/guiConst.cpp:556 +msgid "Decrease edit step" +msgstr "" + +#: src/gui/guiConst.cpp:557 +msgid "Toggle edit mode" +msgstr "" + +#: src/gui/guiConst.cpp:559 +msgid "Toggle repeat pattern" +msgstr "" + +#: src/gui/guiConst.cpp:562 +msgid "Toggle full-screen" +msgstr "" + +#: src/gui/guiConst.cpp:563 +msgid "Request voice from TX81Z" +msgstr "" + +#: src/gui/guiConst.cpp:565 +msgid "Clear song data" +msgstr "" + +#: src/gui/guiConst.cpp:567 src/gui/gui.cpp:5573 src/gui/gui.cpp:5625 +msgid "Command Palette" +msgstr "" + +#: src/gui/guiConst.cpp:569 +msgid "Recent files (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:570 +msgid "Instruments (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:571 +msgid "Samples (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:572 +msgid "Change instrument (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:573 +msgid "Add chip (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:578 +msgid "Instrument List" +msgstr "" + +#: src/gui/guiConst.cpp:579 src/gui/insEdit.cpp:5203 +msgid "Instrument Editor" +msgstr "" + +#: src/gui/guiConst.cpp:580 +msgid "Song Information" +msgstr "" + +#: src/gui/guiConst.cpp:583 +msgid "Wavetable List" +msgstr "" + +#: src/gui/guiConst.cpp:584 src/gui/waveEdit.cpp:409 +msgid "Wavetable Editor" +msgstr "" + +#: src/gui/guiConst.cpp:585 +msgid "Sample List" +msgstr "" + +#: src/gui/guiConst.cpp:594 +msgid "Debug Menu" +msgstr "" + +#: src/gui/guiConst.cpp:595 +msgid "Oscilloscope (master)" +msgstr "" + +#: src/gui/guiConst.cpp:603 src/gui/sysManager.cpp:41 +msgid "Chip Manager" +msgstr "" + +#: src/gui/guiConst.cpp:614 src/gui/csPlayer.cpp:112 +msgid "Command Stream Player" +msgstr "" + +#: src/gui/guiConst.cpp:615 +msgid "User Presets" +msgstr "" + +#: src/gui/guiConst.cpp:617 +msgid "Collapse/expand current window" +msgstr "" + +#: src/gui/guiConst.cpp:618 +msgid "Close current window" +msgstr "" + +#: src/gui/guiConst.cpp:621 +msgid "---Pattern" +msgstr "" + +#: src/gui/guiConst.cpp:622 +msgid "Transpose (+1)" +msgstr "" + +#: src/gui/guiConst.cpp:623 +msgid "Transpose (-1)" +msgstr "" + +#: src/gui/guiConst.cpp:624 +msgid "Transpose (+1 octave)" +msgstr "" + +#: src/gui/guiConst.cpp:625 +msgid "Transpose (-1 octave)" +msgstr "" + +#: src/gui/guiConst.cpp:626 +msgid "Increase values (+1)" +msgstr "" + +#: src/gui/guiConst.cpp:627 +msgid "Increase values (-1)" +msgstr "" + +#: src/gui/guiConst.cpp:628 +msgid "Increase values (+16)" +msgstr "" + +#: src/gui/guiConst.cpp:629 +msgid "Increase values (-16)" +msgstr "" + +#: src/gui/guiConst.cpp:630 +msgid "Select all" +msgstr "" + +#: src/gui/guiConst.cpp:631 +msgid "Cut" +msgstr "" + +#: src/gui/guiConst.cpp:632 +msgid "Copy" +msgstr "" + +#: src/gui/guiConst.cpp:633 +msgid "Paste" +msgstr "" + +#: src/gui/guiConst.cpp:634 +msgid "Paste Mix (foreground)" +msgstr "" + +#: src/gui/guiConst.cpp:635 +msgid "Paste Mix (background)" +msgstr "" + +#: src/gui/guiConst.cpp:636 +msgid "Paste Flood" +msgstr "" + +#: src/gui/guiConst.cpp:637 +msgid "Paste Overflow" +msgstr "" + +#: src/gui/guiConst.cpp:638 +msgid "Move cursor up" +msgstr "" + +#: src/gui/guiConst.cpp:639 +msgid "Move cursor down" +msgstr "" + +#: src/gui/guiConst.cpp:640 +msgid "Move cursor left" +msgstr "" + +#: src/gui/guiConst.cpp:641 +msgid "Move cursor right" +msgstr "" + +#: src/gui/guiConst.cpp:642 +msgid "Move cursor up by one (override Edit Step)" +msgstr "" + +#: src/gui/guiConst.cpp:643 +msgid "Move cursor down by one (override Edit Step)" +msgstr "" + +#: src/gui/guiConst.cpp:644 +msgid "Move cursor to previous channel" +msgstr "" + +#: src/gui/guiConst.cpp:645 +msgid "Move cursor to next channel" +msgstr "" + +#: src/gui/guiConst.cpp:646 +msgid "Move cursor to next channel (overflow)" +msgstr "" + +#: src/gui/guiConst.cpp:647 +msgid "Move cursor to previous channel (overflow)" +msgstr "" + +#: src/gui/guiConst.cpp:648 +msgid "Move cursor to beginning of pattern" +msgstr "" + +#: src/gui/guiConst.cpp:649 +msgid "Move cursor to end of pattern" +msgstr "" + +#: src/gui/guiConst.cpp:650 +msgid "Move cursor up (coarse)" +msgstr "" + +#: src/gui/guiConst.cpp:651 +msgid "Move cursor down (coarse)" +msgstr "" + +#: src/gui/guiConst.cpp:652 +msgid "Expand selection upwards" +msgstr "" + +#: src/gui/guiConst.cpp:653 +msgid "Expand selection downwards" +msgstr "" + +#: src/gui/guiConst.cpp:654 +msgid "Expand selection to the left" +msgstr "" + +#: src/gui/guiConst.cpp:655 +msgid "Expand selection to the right" +msgstr "" + +#: src/gui/guiConst.cpp:656 +msgid "Expand selection upwards by one (override Edit Step)" +msgstr "" + +#: src/gui/guiConst.cpp:657 +msgid "Expand selection downwards by one (override Edit Step)" +msgstr "" + +#: src/gui/guiConst.cpp:658 +msgid "Expand selection to beginning of pattern" +msgstr "" + +#: src/gui/guiConst.cpp:659 +msgid "Expand selection to end of pattern" +msgstr "" + +#: src/gui/guiConst.cpp:660 +msgid "Expand selection upwards (coarse)" +msgstr "" + +#: src/gui/guiConst.cpp:661 +msgid "Expand selection downwards (coarse)" +msgstr "" + +#: src/gui/guiConst.cpp:662 +msgid "Move selection up" +msgstr "" + +#: src/gui/guiConst.cpp:663 +msgid "Move selection down" +msgstr "" + +#: src/gui/guiConst.cpp:664 +msgid "Move selection to previous channel" +msgstr "" + +#: src/gui/guiConst.cpp:665 +msgid "Move selection to next channel" +msgstr "" + +#: src/gui/guiConst.cpp:667 +msgid "Pull delete" +msgstr "" + +#: src/gui/guiConst.cpp:668 +msgid "Insert" +msgstr "" + +#: src/gui/guiConst.cpp:669 +msgid "Mute channel at cursor" +msgstr "" + +#: src/gui/guiConst.cpp:670 +msgid "Solo channel at cursor" +msgstr "" + +#: src/gui/guiConst.cpp:671 +msgid "Unmute all channels" +msgstr "" + +#: src/gui/guiConst.cpp:672 +msgid "Go to next order" +msgstr "" + +#: src/gui/guiConst.cpp:673 +msgid "Go to previous order" +msgstr "" + +#: src/gui/guiConst.cpp:674 +msgid "Collapse channel at cursor" +msgstr "" + +#: src/gui/guiConst.cpp:675 +msgid "Increase effect columns" +msgstr "" + +#: src/gui/guiConst.cpp:676 +msgid "Decrease effect columns" +msgstr "" + +#: src/gui/guiConst.cpp:677 +msgid "Interpolate" +msgstr "" + +#: src/gui/guiConst.cpp:678 src/gui/insEdit.cpp:530 +msgid "Fade" +msgstr "" + +#: src/gui/guiConst.cpp:679 +msgid "Invert values" +msgstr "" + +#: src/gui/guiConst.cpp:680 +msgid "Flip selection" +msgstr "" + +#: src/gui/guiConst.cpp:681 +msgid "Collapse rows" +msgstr "" + +#: src/gui/guiConst.cpp:682 +msgid "Expand rows" +msgstr "" + +#: src/gui/guiConst.cpp:683 +msgid "Collapse pattern" +msgstr "" + +#: src/gui/guiConst.cpp:684 +msgid "Expand pattern" +msgstr "" + +#: src/gui/guiConst.cpp:685 +msgid "Collapse song" +msgstr "" + +#: src/gui/guiConst.cpp:686 +msgid "Expand song" +msgstr "" + +#: src/gui/guiConst.cpp:687 +msgid "Set note input latch" +msgstr "" + +#: src/gui/guiConst.cpp:688 +msgid "Change mobile scroll mode" +msgstr "" + +#: src/gui/guiConst.cpp:689 +msgid "Clear note input latch" +msgstr "" + +#: src/gui/guiConst.cpp:692 +msgid "---Instrument list" +msgstr "" + +#: src/gui/guiConst.cpp:693 +msgid "Add instrument" +msgstr "" + +#: src/gui/guiConst.cpp:694 +msgid "Duplicate instrument" +msgstr "" + +#: src/gui/guiConst.cpp:695 +msgid "Open instrument" +msgstr "" + +#: src/gui/guiConst.cpp:696 +msgid "Open instrument (replace current)" +msgstr "" + +#: src/gui/guiConst.cpp:697 +msgid "Save instrument" +msgstr "" + +#: src/gui/guiConst.cpp:698 +msgid "Save instrument (.dmp)" +msgstr "" + +#: src/gui/guiConst.cpp:699 +msgid "Move instrument up in list" +msgstr "" + +#: src/gui/guiConst.cpp:700 +msgid "Move instrument down in list" +msgstr "" + +#: src/gui/guiConst.cpp:701 +msgid "Delete instrument" +msgstr "" + +#: src/gui/guiConst.cpp:702 +msgid "Edit instrument" +msgstr "" + +#: src/gui/guiConst.cpp:703 +msgid "Instrument cursor up" +msgstr "" + +#: src/gui/guiConst.cpp:704 +msgid "Instrument cursor down" +msgstr "" + +#: src/gui/guiConst.cpp:705 +msgid "Instruments: toggle folders/standard view" +msgstr "" + +#: src/gui/guiConst.cpp:708 +msgid "---Wavetable list" +msgstr "" + +#: src/gui/guiConst.cpp:709 +msgid "Add wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:710 +msgid "Duplicate wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:711 +msgid "Open wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:712 +msgid "Open wavetable (replace current)" +msgstr "" + +#: src/gui/guiConst.cpp:713 +msgid "Save wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:714 +msgid "Save wavetable (.dmw)" +msgstr "" + +#: src/gui/guiConst.cpp:715 +msgid "Save wavetable (raw)" +msgstr "" + +#: src/gui/guiConst.cpp:716 +msgid "Move wavetable up in list" +msgstr "" + +#: src/gui/guiConst.cpp:717 +msgid "Move wavetable down in list" +msgstr "" + +#: src/gui/guiConst.cpp:718 +msgid "Delete wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:719 +msgid "Edit wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:720 +msgid "Wavetable cursor up" +msgstr "" + +#: src/gui/guiConst.cpp:721 +msgid "Wavetable cursor down" +msgstr "" + +#: src/gui/guiConst.cpp:722 +msgid "Wavetables: toggle folders/standard view" +msgstr "" + +#: src/gui/guiConst.cpp:725 +msgid "---Sample list" +msgstr "" + +#: src/gui/guiConst.cpp:726 +msgid "Add sample" +msgstr "" + +#: src/gui/guiConst.cpp:727 +msgid "Duplicate sample" +msgstr "" + +#: src/gui/guiConst.cpp:728 +msgid "Open sample" +msgstr "" + +#: src/gui/guiConst.cpp:729 +msgid "Open sample (replace current)" +msgstr "" + +#: src/gui/guiConst.cpp:730 +msgid "Import raw sample data" +msgstr "" + +#: src/gui/guiConst.cpp:731 +msgid "Import raw sample data (replace current)" +msgstr "" + +#: src/gui/guiConst.cpp:732 +msgid "Save sample" +msgstr "" + +#: src/gui/guiConst.cpp:733 +msgid "Save sample (raw)" +msgstr "" + +#: src/gui/guiConst.cpp:734 +msgid "Move sample up in list" +msgstr "" + +#: src/gui/guiConst.cpp:735 +msgid "Move sample down in list" +msgstr "" + +#: src/gui/guiConst.cpp:736 +msgid "Delete sample" +msgstr "" + +#: src/gui/guiConst.cpp:737 +msgid "Edit sample" +msgstr "" + +#: src/gui/guiConst.cpp:738 +msgid "Sample cursor up" +msgstr "" + +#: src/gui/guiConst.cpp:739 +msgid "Sample cursor down" +msgstr "" + +#: src/gui/guiConst.cpp:741 src/gui/sampleEdit.cpp:1339 +msgid "Stop sample preview" +msgstr "" + +#: src/gui/guiConst.cpp:742 +msgid "Samples: Toggle folders/standard view" +msgstr "" + +#: src/gui/guiConst.cpp:743 +msgid "Samples: Make me a drum kit" +msgstr "" + +#: src/gui/guiConst.cpp:746 +msgid "---Sample editor" +msgstr "" + +#: src/gui/guiConst.cpp:747 +msgid "Sample editor mode: Select" +msgstr "" + +#: src/gui/guiConst.cpp:748 +msgid "Sample editor mode: Draw" +msgstr "" + +#: src/gui/guiConst.cpp:749 +msgid "Sample editor: Cut" +msgstr "" + +#: src/gui/guiConst.cpp:750 +msgid "Sample editor: Copy" +msgstr "" + +#: src/gui/guiConst.cpp:751 +msgid "Sample editor: Paste" +msgstr "" + +#: src/gui/guiConst.cpp:752 +msgid "Sample editor: Paste replace" +msgstr "" + +#: src/gui/guiConst.cpp:753 +msgid "Sample editor: Paste mix" +msgstr "" + +#: src/gui/guiConst.cpp:754 +msgid "Sample editor: Select all" +msgstr "" + +#: src/gui/guiConst.cpp:755 +msgid "Sample editor: Resize" +msgstr "" + +#: src/gui/guiConst.cpp:756 +msgid "Sample editor: Resample" +msgstr "" + +#: src/gui/guiConst.cpp:757 +msgid "Sample editor: Amplify" +msgstr "" + +#: src/gui/guiConst.cpp:758 +msgid "Sample editor: Normalize" +msgstr "" + +#: src/gui/guiConst.cpp:759 +msgid "Sample editor: Fade in" +msgstr "" + +#: src/gui/guiConst.cpp:760 +msgid "Sample editor: Fade out" +msgstr "" + +#: src/gui/guiConst.cpp:761 +msgid "Sample editor: Apply silence" +msgstr "" + +#: src/gui/guiConst.cpp:762 +msgid "Sample editor: Insert silence" +msgstr "" + +#: src/gui/guiConst.cpp:763 +msgid "Sample editor: Delete" +msgstr "" + +#: src/gui/guiConst.cpp:764 +msgid "Sample editor: Trim" +msgstr "" + +#: src/gui/guiConst.cpp:765 +msgid "Sample editor: Reverse" +msgstr "" + +#: src/gui/guiConst.cpp:766 +msgid "Sample editor: Invert" +msgstr "" + +#: src/gui/guiConst.cpp:767 +msgid "Sample editor: Signed/unsigned exchange" +msgstr "" + +#: src/gui/guiConst.cpp:768 +msgid "Sample editor: Apply filter" +msgstr "" + +#: src/gui/guiConst.cpp:769 +msgid "Sample editor: Crossfade loop points" +msgstr "" + +#: src/gui/guiConst.cpp:770 +msgid "Sample editor: Preview sample" +msgstr "" + +#: src/gui/guiConst.cpp:771 +msgid "Sample editor: Stop sample preview" +msgstr "" + +#: src/gui/guiConst.cpp:772 +msgid "Sample editor: Zoom in" +msgstr "" + +#: src/gui/guiConst.cpp:773 +msgid "Sample editor: Zoom out" +msgstr "" + +#: src/gui/guiConst.cpp:774 +msgid "Sample editor: Toggle auto-zoom" +msgstr "" + +#: src/gui/guiConst.cpp:775 +msgid "Sample editor: Create instrument from sample" +msgstr "" + +#: src/gui/guiConst.cpp:776 +msgid "Sample editor: Set loop to selection" +msgstr "" + +#: src/gui/guiConst.cpp:777 +msgid "Sample editor: Create wavetable from selection" +msgstr "" + +#: src/gui/guiConst.cpp:780 +msgid "---Orders" +msgstr "" + +#: src/gui/guiConst.cpp:781 +msgid "Previous order" +msgstr "" + +#: src/gui/guiConst.cpp:782 +msgid "Next order" +msgstr "" + +#: src/gui/guiConst.cpp:783 +msgid "Order cursor left" +msgstr "" + +#: src/gui/guiConst.cpp:784 +msgid "Order cursor right" +msgstr "" + +#: src/gui/guiConst.cpp:785 +msgid "Increase order value" +msgstr "" + +#: src/gui/guiConst.cpp:786 +msgid "Decrease order value" +msgstr "" + +#: src/gui/guiConst.cpp:787 +msgid "Switch order edit mode" +msgstr "" + +#: src/gui/guiConst.cpp:788 +msgid "Order: toggle alter entire row" +msgstr "" + +#: src/gui/guiConst.cpp:789 +msgid "Add order" +msgstr "" + +#: src/gui/guiConst.cpp:790 +msgid "Duplicate order" +msgstr "" + +#: src/gui/guiConst.cpp:791 +msgid "Deep clone order" +msgstr "" + +#: src/gui/guiConst.cpp:792 +msgid "Copy current order to end of song" +msgstr "" + +#: src/gui/guiConst.cpp:793 +msgid "Deep clone current order to end of song" +msgstr "" + +#: src/gui/guiConst.cpp:797 +msgid "Replay order" +msgstr "" + +#: src/gui/guiConst.cpp:1392 +msgid "All chips" +msgstr "" + +#: src/gui/guiConst.cpp:1396 src/gui/insEdit.cpp:6954 src/gui/insEdit.cpp:7204 +#: src/gui/insEdit.cpp:7458 src/gui/insEdit.cpp:7480 +msgid "Special" +msgstr "" + +#: src/gui/piano.cpp:103 +msgid "Options" +msgstr "" + +#: src/gui/piano.cpp:106 +msgid "Key layout:" +msgstr "" + +#: src/gui/piano.cpp:111 +msgid "Standard" +msgstr "" + +#: src/gui/piano.cpp:114 +msgid "Continuous" +msgstr "" + +#: src/gui/piano.cpp:118 +msgid "Value input pad:" +msgstr "" + +#: src/gui/piano.cpp:120 +msgid "Disabled" +msgstr "" + +#: src/gui/piano.cpp:123 +msgid "Replace piano" +msgstr "" + +#: src/gui/piano.cpp:126 +msgid "Split (automatic)" +msgstr "" + +#: src/gui/piano.cpp:129 +msgid "Split (always visible)" +msgstr "" + +#: src/gui/piano.cpp:133 +msgid "Share play/edit offset/range" +msgstr "" + +#: src/gui/piano.cpp:134 +msgid "Read-only (can't input notes)" +msgstr "" + +#: src/gui/waveEdit.cpp:30 src/gui/waveEdit.cpp:192 src/gui/insEdit.cpp:177 +#: src/gui/insEdit.cpp:188 src/gui/insEdit.cpp:199 +msgid "Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:32 src/gui/waveEdit.cpp:202 src/gui/insEdit.cpp:325 +#: src/gui/insEdit.cpp:654 +msgid "Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:39 +msgid "Cosine" +msgstr "" + +#: src/gui/waveEdit.cpp:193 +msgid "Rect. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:194 +msgid "Abs. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:195 +msgid "Quart. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:196 +msgid "Squish. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:197 +msgid "Abs. Squish. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:200 +msgid "rectSquare" +msgstr "" + +#: src/gui/waveEdit.cpp:203 +msgid "Rect. Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:204 +msgid "Abs. Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:206 +msgid "Cubed Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:207 +msgid "Rect. Cubed Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:208 +msgid "Abs. Cubed Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:210 +msgid "Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:211 +msgid "Rect. Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:212 +msgid "Abs. Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:213 +msgid "Quart. Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:214 +msgid "Squish. Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:215 +msgid "Squish. Abs. Cub. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:218 +msgid "Rect. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:219 +msgid "Abs. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:220 +msgid "Quart. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:221 +msgid "Squish. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:222 +msgid "Abs. Squish. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:224 +msgid "Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:225 +msgid "Rect. Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:226 +msgid "Abs. Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:227 +msgid "Quart. Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:228 +msgid "Squish. Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:229 +msgid "Squish. Abs. Cub. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:412 src/gui/waveEdit.cpp:413 +msgid "no wavetable selected" +msgstr "" + +#: src/gui/waveEdit.cpp:424 src/gui/sampleEdit.cpp:111 src/gui/insEdit.cpp:5223 +msgid "select one..." +msgstr "" + +#: src/gui/waveEdit.cpp:432 src/gui/waveEdit.cpp:439 src/gui/sampleEdit.cpp:119 +#: src/gui/sampleEdit.cpp:126 src/gui/insEdit.cpp:5236 src/gui/insEdit.cpp:5243 +msgid "or" +msgstr "" + +#: src/gui/waveEdit.cpp:441 src/gui/sampleEdit.cpp:128 src/gui/insEdit.cpp:5245 +msgid "Create New" +msgstr "" + +#: src/gui/waveEdit.cpp:487 +msgid "Steps" +msgstr "" + +#: src/gui/waveEdit.cpp:491 +msgid "Lines" +msgstr "" + +#: src/gui/waveEdit.cpp:496 src/gui/insEdit.cpp:2687 +msgid "Width" +msgstr "" + +#: src/gui/waveEdit.cpp:498 +msgid "" +"use a width of:\n" +"- any on Amiga/N163\n" +"- 32 on Game Boy, PC Engine, SCC, Konami Bubble System, Namco WSG, Virtual " +"Boy and WonderSwan\n" +"- 64 on FDS\n" +"- 128 on X1-010\n" +"any other widths will be scaled during playback." +msgstr "" + +#: src/gui/waveEdit.cpp:510 +msgid "Height" +msgstr "" + +#: src/gui/waveEdit.cpp:512 +msgid "" +"use a height of:\n" +"- 16 for Game Boy, WonderSwan, Namco WSG, Konami Bubble System, X1-010 " +"Envelope shape and N163\n" +"- 32 for PC Engine\n" +"- 64 for FDS and Virtual Boy\n" +"- 256 for X1-010 and SCC\n" +"any other heights will be scaled during playback." +msgstr "" + +#: src/gui/waveEdit.cpp:578 +msgid "Shapes" +msgstr "" + +#: src/gui/waveEdit.cpp:597 src/gui/insEdit.cpp:5879 src/gui/insEdit.cpp:6922 +#: src/gui/insEdit.cpp:6948 src/gui/insEdit.cpp:7008 src/gui/insEdit.cpp:7048 +#: src/gui/insEdit.cpp:7150 src/gui/insEdit.cpp:7436 src/gui/insEdit.cpp:7472 +msgid "Duty" +msgstr "" + +#: src/gui/waveEdit.cpp:607 +msgid "Exponent" +msgstr "" + +#: src/gui/waveEdit.cpp:617 +msgid "XOR Point" +msgstr "" + +#: src/gui/waveEdit.cpp:627 +msgid "Amplitude/Phase" +msgstr "" + +#: src/gui/waveEdit.cpp:679 src/gui/waveEdit.cpp:723 src/gui/waveEdit.cpp:728 +msgid "Op" +msgstr "" + +#: src/gui/waveEdit.cpp:683 +msgid "Mult" +msgstr "" + +#: src/gui/waveEdit.cpp:685 +msgid "FB" +msgstr "" + +#: src/gui/waveEdit.cpp:749 src/gui/waveEdit.cpp:750 +msgid "Connection Diagram" +msgstr "" + +#: src/gui/waveEdit.cpp:765 +msgid "Out" +msgstr "" + +#: src/gui/waveEdit.cpp:872 +msgid "WaveTools" +msgstr "" + +#: src/gui/waveEdit.cpp:890 +msgid "Scale X" +msgstr "" + +#: src/gui/waveEdit.cpp:896 +msgid "wavetable longer than 256 samples!" +msgstr "" + +#: src/gui/waveEdit.cpp:960 +msgid "Scale Y" +msgstr "" + +#: src/gui/waveEdit.cpp:978 +msgid "Offset X" +msgstr "" + +#: src/gui/waveEdit.cpp:1000 +msgid "Offset Y" +msgstr "" + +#: src/gui/waveEdit.cpp:1017 +msgid "Smooth" +msgstr "" + +#: src/gui/waveEdit.cpp:1045 src/gui/sampleEdit.cpp:996 +msgid "Amplify" +msgstr "" + +#: src/gui/waveEdit.cpp:1063 src/gui/sampleEdit.cpp:1046 +msgid "Normalize" +msgstr "" + +#: src/gui/waveEdit.cpp:1105 src/gui/sampleEdit.cpp:1121 +msgid "Reverse" +msgstr "" + +#: src/gui/waveEdit.cpp:1117 +msgid "Half" +msgstr "" + +#: src/gui/waveEdit.cpp:1127 +msgid "Double" +msgstr "" + +#: src/gui/waveEdit.cpp:1137 +msgid "Convert Signed/Unsigned" +msgstr "" + +#: src/gui/waveEdit.cpp:1167 +msgid "Dec" +msgstr "" + +#: src/gui/waveEdit.cpp:1171 src/gui/csPlayer.cpp:247 +msgid "Hex" +msgstr "" + +#: src/gui/waveEdit.cpp:1179 +msgid "Signed/Unsigned" +msgstr "" + +#: src/gui/sampleEdit.cpp:65 +#, c-format +msgid "%s: maximum sample rate is %d" +msgstr "" + +#: src/gui/sampleEdit.cpp:72 +#, c-format +msgid "%s: minimum sample rate is %d" +msgstr "" + +#: src/gui/sampleEdit.cpp:79 +#, c-format +msgid "%s: sample rate must be %d" +msgstr "" + +#: src/gui/sampleEdit.cpp:99 src/gui/sampleEdit.cpp:100 +msgid "no sample selected" +msgstr "" + +#: src/gui/sampleEdit.cpp:229 +#, c-format +msgid "SNES: loop start must be a multiple of 16 (try with %d)" +msgstr "" + +#: src/gui/sampleEdit.cpp:235 +#, c-format +msgid "SNES: loop end must be a multiple of 16 (try with %d)" +msgstr "" + +#: src/gui/sampleEdit.cpp:240 +msgid "SNES: sample length will be padded to multiple of 16" +msgstr "" + +#: src/gui/sampleEdit.cpp:249 +msgid "QSound: loop cannot be longer than 32767 samples" +msgstr "" + +#: src/gui/sampleEdit.cpp:259 +msgid "NES: loop point ignored on DPCM (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:263 +msgid "NES: maximum DPCM sample length is 32648" +msgstr "" + +#: src/gui/sampleEdit.cpp:268 +msgid "X1-010: samples can't loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:271 +msgid "X1-010: maximum sample length is 131072" +msgstr "" + +#: src/gui/sampleEdit.cpp:276 +msgid "GA20: samples can't loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:287 +msgid "YM2608: loop point ignored on ADPCM (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:290 +msgid "YM2608: sample length will be padded to multiple of 512" +msgstr "" + +#: src/gui/sampleEdit.cpp:300 +msgid "YM2610: ADPCM-A samples can't loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:302 +msgid "YM2610: loop point ignored on ADPCM-B (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:305 +msgid "YM2610: sample length will be padded to multiple of 512" +msgstr "" + +#: src/gui/sampleEdit.cpp:309 +msgid "YM2610: maximum ADPCM-A sample length is 2097152" +msgstr "" + +#: src/gui/sampleEdit.cpp:318 +msgid "Y8950: loop point ignored on ADPCM (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:321 +msgid "Y8950: sample length will be padded to multiple of 512" +msgstr "" + +#: src/gui/sampleEdit.cpp:328 +msgid "Amiga: loop start must be a multiple of 2" +msgstr "" + +#: src/gui/sampleEdit.cpp:331 +msgid "Amiga: loop end must be a multiple of 2" +msgstr "" + +#: src/gui/sampleEdit.cpp:335 +msgid "Amiga: maximum sample length is 131070" +msgstr "" + +#: src/gui/sampleEdit.cpp:344 +msgid "SegaPCM: maximum sample length is 65280" +msgstr "" + +#: src/gui/sampleEdit.cpp:353 +msgid "K053260: loop point ignored (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:357 +msgid "K053260: maximum sample length is 65535" +msgstr "" + +#: src/gui/sampleEdit.cpp:362 +msgid "C140: maximum sample length is 65535" +msgstr "" + +#: src/gui/sampleEdit.cpp:371 +msgid "C219: loop start must be a multiple of 2" +msgstr "" + +#: src/gui/sampleEdit.cpp:374 +msgid "C219: loop end must be a multiple of 2" +msgstr "" + +#: src/gui/sampleEdit.cpp:378 +msgid "C219: maximum sample length is 131072" +msgstr "" + +#: src/gui/sampleEdit.cpp:386 +msgid "MSM6295: samples can't loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:389 +msgid "MSM6295: maximum bankswitched sample length is 129024" +msgstr "" + +#: src/gui/sampleEdit.cpp:395 +msgid "GBA DMA: loop start must be a multiple of 4" +msgstr "" + +#: src/gui/sampleEdit.cpp:398 +msgid "GBA DMA: loop length must be a multiple of 16" +msgstr "" + +#: src/gui/sampleEdit.cpp:402 +msgid "GBA DMA: sample length will be padded to multiple of 16" +msgstr "" + +#: src/gui/sampleEdit.cpp:411 +msgid "ES5506: backward loop mode isn't supported" +msgstr "" + +#: src/gui/sampleEdit.cpp:414 +msgid "" +"backward/ping-pong only supported in Generic PCM DAC\n" +"ping-pong also on ES5506" +msgstr "" + +#: src/gui/sampleEdit.cpp:444 +msgid "Info" +msgstr "" + +#: src/gui/sampleEdit.cpp:447 src/gui/sampleEdit.cpp:933 +msgid "Rate" +msgstr "" + +#: src/gui/sampleEdit.cpp:453 +msgid "Compat Rate" +msgstr "" + +#: src/gui/sampleEdit.cpp:457 +msgid "" +"used in DefleMask-compatible sample mode (17xx), in where samples are mapped " +"to an octave." +msgstr "" + +#: src/gui/sampleEdit.cpp:463 +#, c-format +msgid "Loop (length: %d)##Loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:463 src/gui/insEdit.cpp:544 src/gui/insEdit.cpp:554 +#: src/gui/insEdit.cpp:605 src/gui/insEdit.cpp:6017 +msgid "Loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:487 src/gui/sampleEdit.cpp:716 +#: src/gui/sampleEdit.cpp:752 +msgid "changing the loop in a BRR sample may result in glitches!" +msgstr "" + +#: src/gui/sampleEdit.cpp:529 +msgid "BRR emphasis" +msgstr "" + +#: src/gui/sampleEdit.cpp:538 +msgid "" +"this is a BRR sample.\n" +"enabling this option will muffle it (only affects non-SNES chips)." +msgstr "" + +#: src/gui/sampleEdit.cpp:540 +msgid "" +"enable this option to slightly boost high frequencies\n" +"to compensate for the SNES' Gaussian filter's muffle." +msgstr "" + +#: src/gui/sampleEdit.cpp:546 +msgid "8-bit dither" +msgstr "" + +#: src/gui/sampleEdit.cpp:554 +msgid "dither the sample when used on a chip that only supports 8-bit samples." +msgstr "" + +#: src/gui/sampleEdit.cpp:695 src/gui/gui.cpp:2975 +msgid "Start" +msgstr "" + +#: src/gui/sampleEdit.cpp:731 src/gui/gui.cpp:2983 +msgid "End" +msgstr "" + +#: src/gui/sampleEdit.cpp:841 +#, c-format +msgid "" +"%s\n" +"%d bytes free" +msgstr "" + +#: src/gui/sampleEdit.cpp:843 +#, c-format +msgid "" +"%s (%s)\n" +"%d bytes free" +msgstr "" + +#: src/gui/sampleEdit.cpp:847 +msgid "" +"\n" +"\n" +"not enough memory for this sample!" +msgstr "" + +#: src/gui/sampleEdit.cpp:871 +msgid "Edit mode: Select" +msgstr "" + +#: src/gui/sampleEdit.cpp:880 +msgid "Edit mode: Draw" +msgstr "" + +#: src/gui/sampleEdit.cpp:891 src/gui/sampleEdit.cpp:902 +msgid "Resize" +msgstr "" + +#: src/gui/sampleEdit.cpp:906 +msgid "couldn't resize! make sure your sample is 8 or 16-bit." +msgstr "" + +#: src/gui/sampleEdit.cpp:926 src/gui/sampleEdit.cpp:957 +msgid "Resample" +msgstr "" + +#: src/gui/sampleEdit.cpp:951 +msgid "Factor" +msgstr "" + +#: src/gui/sampleEdit.cpp:956 +msgid "Filter" +msgstr "" + +#: src/gui/sampleEdit.cpp:961 +msgid "couldn't resample! make sure your sample is 8 or 16-bit." +msgstr "" + +#: src/gui/sampleEdit.cpp:1010 src/gui/sampleEdit.cpp:1197 +#: src/gui/sampleEdit.cpp:1281 +msgid "Apply" +msgstr "" + +#: src/gui/sampleEdit.cpp:1053 +msgid "Fade in" +msgstr "" + +#: src/gui/sampleEdit.cpp:1060 +msgid "Fade out" +msgstr "" + +#: src/gui/sampleEdit.cpp:1065 +msgid "Insert silence" +msgstr "" + +#: src/gui/sampleEdit.cpp:1076 +msgid "Go" +msgstr "" + +#: src/gui/sampleEdit.cpp:1081 +msgid "couldn't insert! make sure your sample is 8 or 16-bit." +msgstr "" + +#: src/gui/sampleEdit.cpp:1098 +msgid "Apply silence" +msgstr "" + +#: src/gui/sampleEdit.cpp:1112 +msgid "Trim" +msgstr "" + +#: src/gui/sampleEdit.cpp:1135 +msgid "Signed/unsigned exchange" +msgstr "" + +#: src/gui/sampleEdit.cpp:1140 +msgid "Apply filter" +msgstr "" + +#: src/gui/sampleEdit.cpp:1151 +msgid "Cutoff:" +msgstr "" + +#: src/gui/sampleEdit.cpp:1161 src/gui/insEdit.cpp:5895 +#: src/gui/insEdit.cpp:5898 src/gui/insEdit.cpp:6953 src/gui/insEdit.cpp:7216 +#: src/gui/insEdit.cpp:7478 +msgid "Resonance" +msgstr "" + +#: src/gui/sampleEdit.cpp:1167 src/gui/insEdit.cpp:6897 +msgid "Power" +msgstr "" + +#: src/gui/sampleEdit.cpp:1181 +msgid "Low-pass" +msgstr "" + +#: src/gui/sampleEdit.cpp:1186 +msgid "Band-pass" +msgstr "" + +#: src/gui/sampleEdit.cpp:1191 +msgid "High-pass" +msgstr "" + +#: src/gui/sampleEdit.cpp:1262 +msgid "Crossfade loop points" +msgstr "" + +#: src/gui/sampleEdit.cpp:1271 +msgid "Number of samples" +msgstr "" + +#: src/gui/sampleEdit.cpp:1277 +msgid "Linear <-> Equal power" +msgstr "" + +#: src/gui/sampleEdit.cpp:1283 +msgid "Crossfade: length would go out of bounds. Aborted..." +msgstr "" + +#: src/gui/sampleEdit.cpp:1286 +msgid "Crossfade: length would overflow loopStart. Try a smaller random value." +msgstr "" + +#: src/gui/sampleEdit.cpp:1332 +msgid "Preview sample" +msgstr "" + +#: src/gui/sampleEdit.cpp:1346 +msgid "Create instrument from sample" +msgstr "" + +#: src/gui/sampleEdit.cpp:1747 +msgid "paste (replace)" +msgstr "" + +#: src/gui/sampleEdit.cpp:1750 +msgid "paste (mix)" +msgstr "" + +#: src/gui/sampleEdit.cpp:1754 src/gui/gui.cpp:2769 +msgid "select all" +msgstr "" + +#: src/gui/sampleEdit.cpp:1758 +msgid "set loop to selection" +msgstr "" + +#: src/gui/sampleEdit.cpp:1761 +msgid "create wavetable from selection" +msgstr "" + +#: src/gui/sampleEdit.cpp:1767 +msgid "Draw" +msgstr "" + +#: src/gui/sampleEdit.cpp:1767 +msgid "Select" +msgstr "" + +#: src/gui/sampleEdit.cpp:1769 +#, c-format +msgid "%d samples, %d bytes" +msgstr "" + +#: src/gui/sampleEdit.cpp:1784 +#, c-format +msgid " (%d-%d: %d samples)" +msgstr "" + +#: src/gui/sampleEdit.cpp:1976 +msgid "Non-8/16-bit samples cannot be edited without prior conversion." +msgstr "" + +#: src/gui/newSong.cpp:122 src/gui/newSong.cpp:123 +msgid "Choose a System!" +msgstr "" + +#: src/gui/newSong.cpp:179 +msgid "Categories" +msgstr "" + +#: src/gui/newSong.cpp:210 +msgid "no systems here yet!" +msgstr "" + +#: src/gui/newSong.cpp:212 +msgid "no results" +msgstr "" + +#: src/gui/newSong.cpp:228 +msgid "I'm feeling lucky" +msgstr "" + +#: src/gui/newSong.cpp:230 +msgid "no categories available! what in the world." +msgstr "" + +#: src/gui/newSong.cpp:265 +msgid "it appears you're extremely lucky today!" +msgstr "" + +#: src/gui/cursor.cpp:205 +#, c-format +msgid "finish selection: %d.%d,%d - %d.%d,%d" +msgstr "" + +#: src/gui/tutorial.cpp:487 +msgid "" +"Play demo songs?\n" +"- Down: Play current song\n" +"- Up: Play demo songs" +msgstr "" + +#: src/gui/tutorial.cpp:491 +msgid "" +"Welcome to Combat Vehicle!\n" +"\n" +"Controls:\n" +"X - Shoot Arrow Key - Move\n" +"Z - Special Esc - Quit" +msgstr "" + +#: src/gui/tutorial.cpp:496 +msgid "GAME OVER" +msgstr "" + +#: src/gui/tutorial.cpp:498 +msgid "High Score!" +msgstr "" + +#: src/gui/tutorial.cpp:658 +msgid "Welcome!" +msgstr "" + +#: src/gui/tutorial.cpp:661 +msgid "welcome to Furnace, the biggest open-source chiptune tracker!" +msgstr "" + +#: src/gui/tutorial.cpp:665 +msgid "here are some tips to get you started:" +msgstr "" + +#: src/gui/tutorial.cpp:668 +msgid "" +"- add an instrument by clicking on + in Instruments\n" +"- click on the pattern view to focus it\n" +"- channel columns have the following, in this order: note, instrument, " +"volume and effects\n" +"- hit space bar while on the pattern to toggle Edit Mode\n" +"- click on the pattern or use arrow keys to move the cursor\n" +"- values (instrument, volume, effects and effect values) are in hexadecimal\n" +"- hit enter to play/stop the song\n" +"- extend the song by adding more orders in the Orders window\n" +"- click on the Orders matrix to change the patterns of a channel (left click " +"increases; right click decreases)" +msgstr "" + +#: src/gui/tutorial.cpp:680 +msgid "" +"if you need help, you may:\n" +"- read the manual (a file called manual.pdf)\n" +"- ask for help in Discussions (https://github.com/tildearrow/furnace/" +"discussions), the Furnace Discord (https://discord.gg/EfrwT2wq7z) or Furnace " +"in Revolt (official: https://rvlt.gg/GRPS6tmc)" +msgstr "" + +#: src/gui/tutorial.cpp:687 +msgid "" +"if you find any issues, be sure to report them! the issue tracker is here: " +"https://github.com/tildearrow/furnace/issues" +msgstr "" + +#: src/gui/tutorial.cpp:1428 +#, c-format +msgid "STAGE %d" +msgstr "" + +#: src/gui/songInfo.cpp:32 +msgid "Song Info##Song Information" +msgstr "" + +#: src/gui/songInfo.cpp:50 +msgid "Author" +msgstr "" + +#: src/gui/songInfo.cpp:60 +msgid "Album" +msgstr "" + +#: src/gui/songInfo.cpp:79 +msgid "Auto" +msgstr "" + +#: src/gui/songInfo.cpp:100 +msgid "Tuning (A-4)" +msgstr "" + +#: src/gui/grooves.cpp:38 +msgid "use effect 09xx to select a groove pattern." +msgstr "" + +#: src/gui/grooves.cpp:48 src/gui/gui.cpp:4480 +msgid "pattern" +msgstr "" + +#: src/gui/grooves.cpp:132 +msgid "remove" +msgstr "" + +#: src/gui/doAction.cpp:45 src/gui/gui.cpp:4201 +msgid "Unsaved changes! Save changes before opening another file?" +msgstr "" + +#: src/gui/doAction.cpp:52 +msgid "Unsaved changes! Save changes before opening backup?" +msgstr "" + +#: src/gui/doAction.cpp:62 src/gui/gui.cpp:4237 src/gui/gui.cpp:5025 +#: src/gui/gui.cpp:5063 src/gui/gui.cpp:5069 src/gui/gui.cpp:5657 +#: src/gui/gui.cpp:5681 src/gui/gui.cpp:5705 src/gui/gui.cpp:5729 +#: src/gui/gui.cpp:5753 src/gui/gui.cpp:5777 +#, c-format +msgid "Error while saving file! (%s)" +msgstr "" + +#: src/gui/doAction.cpp:189 +msgid "Error while sending request (MIDI output not configured?)" +msgstr "" + +#: src/gui/doAction.cpp:197 +msgid "Select an option: (cannot be undone!)" +msgstr "" + +#: src/gui/doAction.cpp:691 src/gui/doAction.cpp:720 src/gui/doAction.cpp:1593 +#: src/gui/gui.cpp:6091 +msgid "too many instruments!" +msgstr "" + +#: src/gui/doAction.cpp:1124 +msgid "couldn't paste! make sure your sample is 8 or 16-bit." +msgstr "" + +#: src/gui/doAction.cpp:1628 +msgid "select at least one sample!" +msgstr "" + +#: src/gui/doAction.cpp:1630 +msgid "maximum size is 256 samples!" +msgstr "" + +#: src/gui/csPlayer.cpp:113 +msgid "Load" +msgstr "" + +#: src/gui/csPlayer.cpp:117 +msgid "Kill" +msgstr "" + +#: src/gui/csPlayer.cpp:119 +msgid "Kikai wa mou shindeiru!" +msgstr "" + +#: src/gui/csPlayer.cpp:123 +msgid "Burn Current Song" +msgstr "" + +#: src/gui/csPlayer.cpp:141 +msgid "Status" +msgstr "" + +#: src/gui/csPlayer.cpp:148 +msgid "start" +msgstr "" + +#: src/gui/csPlayer.cpp:150 +msgid "PC" +msgstr "" + +#: src/gui/csPlayer.cpp:152 +msgid "wait" +msgstr "" + +#: src/gui/csPlayer.cpp:154 +msgid "SP" +msgstr "" + +#: src/gui/csPlayer.cpp:156 src/gui/insEdit.cpp:2733 +msgid "note" +msgstr "" + +#: src/gui/csPlayer.cpp:158 src/gui/insEdit.cpp:2728 +msgid "pitch" +msgstr "" + +#: src/gui/csPlayer.cpp:160 +msgid "vol" +msgstr "" + +#: src/gui/csPlayer.cpp:162 +msgid "vols" +msgstr "" + +#: src/gui/csPlayer.cpp:164 +msgid "vib" +msgstr "" + +#: src/gui/csPlayer.cpp:166 +msgid "porta" +msgstr "" + +#: src/gui/csPlayer.cpp:168 +msgid "arp" +msgstr "" + +#: src/gui/csPlayer.cpp:203 +msgid "Trace" +msgstr "" + +#: src/gui/csPlayer.cpp:244 +msgid "Disassemble" +msgstr "" + +#: src/gui/gui.cpp:1136 src/gui/gui.cpp:1140 +msgid "the song is over!" +msgstr "" + +#: src/gui/gui.cpp:1667 +msgid "Open File" +msgstr "" + +#: src/gui/gui.cpp:1668 src/gui/gui.cpp:1798 src/gui/gui.cpp:1838 +#: src/gui/gui.cpp:1953 src/gui/gui.cpp:1962 src/gui/gui.cpp:1971 +#: src/gui/gui.cpp:2073 src/gui/gui.cpp:2093 src/gui/gui.cpp:2111 +msgid "compatible files" +msgstr "" + +#: src/gui/gui.cpp:1669 src/gui/gui.cpp:1743 src/gui/gui.cpp:1799 +#: src/gui/gui.cpp:1839 src/gui/gui.cpp:1851 src/gui/gui.cpp:1870 +#: src/gui/gui.cpp:2074 src/gui/gui.cpp:2084 src/gui/gui.cpp:2095 +#: src/gui/gui.cpp:2113 +msgid "all files" +msgstr "" + +#: src/gui/gui.cpp:1676 +msgid "no backups made yet!" +msgstr "" + +#: src/gui/gui.cpp:1681 src/gui/gui.cpp:1690 src/gui/gui.cpp:2130 +msgid "Furnace song" +msgstr "" + +#: src/gui/gui.cpp:1689 +msgid "Save File" +msgstr "" + +#: src/gui/gui.cpp:1698 src/gui/gui.cpp:1708 +msgid "Export DMF" +msgstr "" + +#: src/gui/gui.cpp:1699 +msgid "DefleMask 1.1.3 module" +msgstr "" + +#: src/gui/gui.cpp:1709 +msgid "DefleMask 1.0/legacy module" +msgstr "" + +#: src/gui/gui.cpp:1726 +msgid "Load Instrument" +msgstr "" + +#: src/gui/gui.cpp:1727 +msgid "all compatible files" +msgstr "" + +#: src/gui/gui.cpp:1728 src/gui/gui.cpp:1777 +msgid "Furnace instrument" +msgstr "" + +#: src/gui/gui.cpp:1729 src/gui/gui.cpp:1787 +msgid "DefleMask preset" +msgstr "" + +#: src/gui/gui.cpp:1730 +msgid "TFM Music Maker instrument" +msgstr "" + +#: src/gui/gui.cpp:1731 +msgid "VGM Music Maker instrument" +msgstr "" + +#: src/gui/gui.cpp:1732 +msgid "Scream Tracker 3 instrument" +msgstr "" + +#: src/gui/gui.cpp:1733 +msgid "SoundBlaster instrument" +msgstr "" + +#: src/gui/gui.cpp:1734 +msgid "Wohlstand OPL instrument" +msgstr "" + +#: src/gui/gui.cpp:1735 +msgid "Wohlstand OPN instrument" +msgstr "" + +#: src/gui/gui.cpp:1736 +msgid "Gens KMod patch dump" +msgstr "" + +#: src/gui/gui.cpp:1737 +msgid "BNK file (AdLib)" +msgstr "" + +#: src/gui/gui.cpp:1738 +msgid "FF preset bank" +msgstr "" + +#: src/gui/gui.cpp:1739 +msgid "2612edit GYB preset bank" +msgstr "" + +#: src/gui/gui.cpp:1740 +msgid "VOPM preset bank" +msgstr "" + +#: src/gui/gui.cpp:1741 +msgid "Wohlstand WOPL bank" +msgstr "" + +#: src/gui/gui.cpp:1742 +msgid "Wohlstand WOPN bank" +msgstr "" + +#: src/gui/gui.cpp:1776 src/gui/gui.cpp:1786 +msgid "Save Instrument" +msgstr "" + +#: src/gui/gui.cpp:1797 +msgid "Load Wavetable" +msgstr "" + +#: src/gui/gui.cpp:1809 src/gui/gui.cpp:1818 src/gui/gui.cpp:1827 +msgid "Save Wavetable" +msgstr "" + +#: src/gui/gui.cpp:1810 +msgid "Furnace wavetable" +msgstr "" + +#: src/gui/gui.cpp:1819 +msgid "DefleMask wavetable" +msgstr "" + +#: src/gui/gui.cpp:1828 +msgid "raw data" +msgstr "" + +#: src/gui/gui.cpp:1837 +msgid "Load Sample" +msgstr "" + +#: src/gui/gui.cpp:1850 +msgid "Load Raw Sample" +msgstr "" + +#: src/gui/gui.cpp:1859 +msgid "Save Sample" +msgstr "" + +#: src/gui/gui.cpp:1860 src/gui/gui.cpp:1880 src/gui/gui.cpp:1890 +#: src/gui/gui.cpp:1900 +msgid "Wave file" +msgstr "" + +#: src/gui/gui.cpp:1869 +msgid "Save Raw Sample" +msgstr "" + +#: src/gui/gui.cpp:1879 src/gui/gui.cpp:1889 src/gui/gui.cpp:1899 +msgid "Export Audio" +msgstr "" + +#: src/gui/gui.cpp:1909 +msgid "Export VGM" +msgstr "" + +#: src/gui/gui.cpp:1910 +msgid "VGM file" +msgstr "" + +#: src/gui/gui.cpp:1919 +msgid "Export ZSM" +msgstr "" + +#: src/gui/gui.cpp:1920 +msgid "ZSM file" +msgstr "" + +#: src/gui/gui.cpp:1929 src/gui/gui.cpp:1939 +msgid "Export Command Stream" +msgstr "" + +#: src/gui/gui.cpp:1930 +msgid "text file" +msgstr "" + +#: src/gui/gui.cpp:1940 +msgid "binary file" +msgstr "" + +#: src/gui/gui.cpp:1947 src/gui/gui.cpp:5376 +msgid "Coming soon!" +msgstr "" + +#: src/gui/gui.cpp:1952 src/gui/gui.cpp:1961 src/gui/gui.cpp:1970 +msgid "Select Font" +msgstr "" + +#: src/gui/gui.cpp:1979 +msgid "Select Color File" +msgstr "" + +#: src/gui/gui.cpp:1980 src/gui/gui.cpp:1989 src/gui/gui.cpp:2008 +#: src/gui/gui.cpp:2017 src/gui/gui.cpp:2026 src/gui/gui.cpp:2035 +#: src/gui/gui.cpp:2053 src/gui/gui.cpp:2062 +msgid "configuration files" +msgstr "" + +#: src/gui/gui.cpp:1988 +msgid "Select Keybind File" +msgstr "" + +#: src/gui/gui.cpp:1997 +msgid "Select Layout File" +msgstr "" + +#: src/gui/gui.cpp:1998 src/gui/gui.cpp:2044 +msgid ".ini files" +msgstr "" + +#: src/gui/gui.cpp:2007 +msgid "Select User Presets File" +msgstr "" + +#: src/gui/gui.cpp:2016 +msgid "Select Settings File" +msgstr "" + +#: src/gui/gui.cpp:2025 +msgid "Export Colors" +msgstr "" + +#: src/gui/gui.cpp:2034 +msgid "Export Keybinds" +msgstr "" + +#: src/gui/gui.cpp:2043 +msgid "Export Layout" +msgstr "" + +#: src/gui/gui.cpp:2052 +msgid "Export User Presets" +msgstr "" + +#: src/gui/gui.cpp:2061 +msgid "Export Settings" +msgstr "" + +#: src/gui/gui.cpp:2072 +msgid "Load ROM" +msgstr "" + +#: src/gui/gui.cpp:2082 +msgid "Play Command Stream" +msgstr "" + +#: src/gui/gui.cpp:2083 +msgid "command stream" +msgstr "" + +#: src/gui/gui.cpp:2092 +msgid "Open Test" +msgstr "" + +#: src/gui/gui.cpp:2094 src/gui/gui.cpp:2112 +msgid "another option" +msgstr "" + +#: src/gui/gui.cpp:2110 +msgid "Open Test (Multi)" +msgstr "" + +#: src/gui/gui.cpp:2129 +msgid "Save Test" +msgstr "" + +#: src/gui/gui.cpp:2131 +msgid "DefleMask module" +msgstr "" + +#: src/gui/gui.cpp:2171 +msgid "compression error" +msgstr "" + +#: src/gui/gui.cpp:2183 +msgid "zlib stream error" +msgstr "" + +#: src/gui/gui.cpp:2205 +msgid "zlib finish stream error" +msgstr "" + +#: src/gui/gui.cpp:2316 +msgid "everything OK" +msgstr "" + +#: src/gui/gui.cpp:2334 +msgid "" +"you have loaded a backup!\n" +"if you need to, please save it somewhere.\n" +"\n" +"DO NOT RELY ON THE BACKUP SYSTEM FOR AUTO-SAVE!\n" +"Furnace will not save backups of backups." +msgstr "" + +#: src/gui/gui.cpp:2342 src/gui/gui.cpp:3743 src/gui/gui.cpp:4213 +msgid "Unsaved changes! Save changes before opening file?" +msgstr "" + +#: src/gui/gui.cpp:2736 +msgid "paste special..." +msgstr "" + +#: src/gui/gui.cpp:2737 +msgid "paste mix" +msgstr "" + +#: src/gui/gui.cpp:2738 +msgid "paste mix (background)" +msgstr "" + +#: src/gui/gui.cpp:2739 +msgid "paste with ins (foreground)" +msgstr "" + +#: src/gui/gui.cpp:2741 src/gui/gui.cpp:2753 src/gui/gui.cpp:2963 +msgid "no instruments available" +msgstr "" + +#: src/gui/gui.cpp:2751 +msgid "paste with ins (background)" +msgstr "" + +#: src/gui/gui.cpp:2763 +msgid "paste flood" +msgstr "" + +#: src/gui/gui.cpp:2764 +msgid "paste overflow" +msgstr "" + +#: src/gui/gui.cpp:2773 +msgid "operation mask..." +msgstr "" + +#: src/gui/gui.cpp:2780 +msgid "pull delete" +msgstr "" + +#: src/gui/gui.cpp:2784 +msgid "insert" +msgstr "" + +#: src/gui/gui.cpp:2792 +msgid "transpose (note)" +msgstr "" + +#: src/gui/gui.cpp:2796 +msgid "transpose (value)" +msgstr "" + +#: src/gui/gui.cpp:2808 src/gui/gui.cpp:3052 +msgid "invert values" +msgstr "" + +#: src/gui/gui.cpp:2824 +msgid "collapse/expand" +msgstr "" + +#: src/gui/gui.cpp:2829 +msgid "input latch" +msgstr "" + +#: src/gui/gui.cpp:2856 +msgid "" +"&&: selected instrument\n" +"..: no instrument" +msgstr "" + +#: src/gui/gui.cpp:2910 +msgid "Set" +msgstr "" + +#: src/gui/gui.cpp:2930 +msgid "note up" +msgstr "" + +#: src/gui/gui.cpp:2931 +msgid "note down" +msgstr "" + +#: src/gui/gui.cpp:2932 +msgid "octave up" +msgstr "" + +#: src/gui/gui.cpp:2933 +msgid "octave down" +msgstr "" + +#: src/gui/gui.cpp:2935 +msgid "values up" +msgstr "" + +#: src/gui/gui.cpp:2936 +msgid "values down" +msgstr "" + +#: src/gui/gui.cpp:2937 +msgid "values up (+16)" +msgstr "" + +#: src/gui/gui.cpp:2938 +msgid "values down (-16)" +msgstr "" + +#: src/gui/gui.cpp:2941 +msgid "transpose" +msgstr "" + +#: src/gui/gui.cpp:2949 +msgid "Notes" +msgstr "" + +#: src/gui/gui.cpp:2954 +msgid "Values" +msgstr "" + +#: src/gui/gui.cpp:2961 +msgid "change instrument..." +msgstr "" + +#: src/gui/gui.cpp:2974 +msgid "gradient/fade..." +msgstr "" + +#: src/gui/gui.cpp:2991 src/gui/gui.cpp:3036 +msgid "Nibble mode" +msgstr "" + +#: src/gui/gui.cpp:3000 +msgid "Go ahead" +msgstr "" + +#: src/gui/gui.cpp:3006 src/gui/insEdit.cpp:7604 +msgid "scale..." +msgstr "" + +#: src/gui/gui.cpp:3011 +msgid "Scale" +msgstr "" + +#: src/gui/gui.cpp:3017 src/gui/insEdit.cpp:7632 +msgid "randomize..." +msgstr "" + +#: src/gui/gui.cpp:3018 +msgid "Minimum" +msgstr "" + +#: src/gui/gui.cpp:3027 +msgid "Maximum" +msgstr "" + +#: src/gui/gui.cpp:3056 +msgid "flip selection" +msgstr "" + +#: src/gui/gui.cpp:3059 +msgid "collapse/expand amount##CollapseAmount" +msgstr "" + +#: src/gui/gui.cpp:3068 +msgid "collapse pattern" +msgstr "" + +#: src/gui/gui.cpp:3069 +msgid "expand pattern" +msgstr "" + +#: src/gui/gui.cpp:3074 +msgid "collapse song" +msgstr "" + +#: src/gui/gui.cpp:3075 +msgid "expand song" +msgstr "" + +#: src/gui/gui.cpp:3080 +msgid "find/replace" +msgstr "" + +#: src/gui/gui.cpp:3094 src/gui/gui.cpp:5807 src/gui/gui.cpp:7362 +#, c-format +msgid "could NOT save layout! %s" +msgstr "" + +#: src/gui/gui.cpp:3106 +#, c-format +msgid "could NOT load layout! %s" +msgstr "" + +#: src/gui/gui.cpp:3568 +msgid "" +"Furnace has been started in Safe Mode.\n" +"this means that:\n" +"\n" +"- software rendering is being used\n" +"- audio output may not work\n" +"- font loading is disabled\n" +"\n" +"check any settings which may have made Furnace start up in this mode.\n" +"font loading is one of these." +msgstr "" + +#: src/gui/gui.cpp:4053 +msgid "can't keep going without graphics! Furnace will quit now." +msgstr "" + +#: src/gui/gui.cpp:4191 +msgid "file" +msgstr "" + +#: src/gui/gui.cpp:4192 +msgid "new..." +msgstr "" + +#: src/gui/gui.cpp:4199 +msgid "open..." +msgstr "" + +#: src/gui/gui.cpp:4206 +msgid "open recent" +msgstr "" + +#: src/gui/gui.cpp:4222 +msgid "nothing here yet" +msgstr "" + +#: src/gui/gui.cpp:4225 +msgid "clear history" +msgstr "" + +#: src/gui/gui.cpp:4226 +msgid "Are you sure you want to clear the recent file list?" +msgstr "" + +#: src/gui/gui.cpp:4241 +msgid "save as..." +msgstr "" + +#: src/gui/gui.cpp:4246 src/gui/gui.cpp:4287 +msgid "export audio..." +msgstr "" + +#: src/gui/gui.cpp:4250 src/gui/gui.cpp:4291 +msgid "export VGM..." +msgstr "" + +#: src/gui/gui.cpp:4259 src/gui/gui.cpp:4300 +msgid "export ZSM..." +msgstr "" + +#: src/gui/gui.cpp:4269 src/gui/gui.cpp:4310 +msgid "export Amiga validation data..." +msgstr "" + +#: src/gui/gui.cpp:4274 src/gui/gui.cpp:4315 +msgid "export text..." +msgstr "" + +#: src/gui/gui.cpp:4278 src/gui/gui.cpp:4319 +msgid "export command stream..." +msgstr "" + +#: src/gui/gui.cpp:4282 src/gui/gui.cpp:4323 +msgid "export .dmf..." +msgstr "" + +#: src/gui/gui.cpp:4328 +msgid "export..." +msgstr "" + +#: src/gui/gui.cpp:4334 +msgid "manage chips" +msgstr "" + +#: src/gui/gui.cpp:4338 +msgid "add chip..." +msgstr "" + +#: src/gui/gui.cpp:4343 src/gui/sysManager.cpp:138 +#, c-format +msgid "cannot add chip! (%s)" +msgstr "" + +#: src/gui/gui.cpp:4355 +msgid "configure chip..." +msgstr "" + +#: src/gui/gui.cpp:4365 +msgid "change chip..." +msgstr "" + +#: src/gui/gui.cpp:4367 src/gui/gui.cpp:4390 +msgid "Preserve channel positions" +msgstr "" + +#: src/gui/gui.cpp:4379 src/gui/sysManager.cpp:109 +#, c-format +msgid "cannot change chip! (%s)" +msgstr "" + +#: src/gui/gui.cpp:4388 +msgid "remove chip..." +msgstr "" + +#: src/gui/gui.cpp:4394 +#, c-format +msgid "cannot remove chip! (%s)" +msgstr "" + +#: src/gui/gui.cpp:4408 +msgid "open built-in assets directory" +msgstr "" + +#: src/gui/gui.cpp:4414 +msgid "restore backup" +msgstr "" + +#: src/gui/gui.cpp:4418 +msgid "exit..." +msgstr "" + +#: src/gui/gui.cpp:4426 +msgid "edit" +msgstr "" + +#: src/gui/gui.cpp:4434 +msgid "clear..." +msgstr "" + +#: src/gui/gui.cpp:4439 +msgid "settings" +msgstr "" + +#: src/gui/gui.cpp:4441 +msgid "full screen" +msgstr "" + +#: src/gui/gui.cpp:4445 +msgid "lock layout" +msgstr "" + +#: src/gui/gui.cpp:4448 +msgid "pattern visualizer" +msgstr "" + +#: src/gui/gui.cpp:4454 +msgid "reset layout" +msgstr "" + +#: src/gui/gui.cpp:4458 +msgid "switch to mobile view" +msgstr "" + +#: src/gui/gui.cpp:4462 +msgid "user systems..." +msgstr "" + +#: src/gui/gui.cpp:4465 +msgid "settings..." +msgstr "" + +#: src/gui/gui.cpp:4471 +msgid "Window" +msgstr "" + +#: src/gui/gui.cpp:4471 +msgid "window" +msgstr "" + +#: src/gui/gui.cpp:4472 +msgid "song" +msgstr "" + +#: src/gui/gui.cpp:4473 +msgid "song comments" +msgstr "" + +#: src/gui/gui.cpp:4474 +msgid "song information" +msgstr "" + +#: src/gui/gui.cpp:4475 +msgid "subsongs" +msgstr "" + +#: src/gui/gui.cpp:4477 +msgid "channels" +msgstr "" + +#: src/gui/gui.cpp:4478 +msgid "chip manager" +msgstr "" + +#: src/gui/gui.cpp:4479 +msgid "orders" +msgstr "" + +#: src/gui/gui.cpp:4481 +msgid "pattern manager" +msgstr "" + +#: src/gui/gui.cpp:4482 +msgid "mixer" +msgstr "" + +#: src/gui/gui.cpp:4483 +msgid "compatibility flags" +msgstr "" + +#: src/gui/gui.cpp:4486 src/gui/gui.cpp:4488 +msgid "assets" +msgstr "" + +#: src/gui/gui.cpp:4490 +msgid "instruments" +msgstr "" + +#: src/gui/gui.cpp:4491 +msgid "samples" +msgstr "" + +#: src/gui/gui.cpp:4492 +msgid "wavetables" +msgstr "" + +#: src/gui/gui.cpp:4495 +msgid "instrument editor" +msgstr "" + +#: src/gui/gui.cpp:4496 +msgid "sample editor" +msgstr "" + +#: src/gui/gui.cpp:4497 +msgid "wavetable editor" +msgstr "" + +#: src/gui/gui.cpp:4500 +msgid "visualizers" +msgstr "" + +#: src/gui/gui.cpp:4501 +msgid "oscilloscope (master)" +msgstr "" + +#: src/gui/gui.cpp:4502 +msgid "oscilloscope (per-channel)" +msgstr "" + +#: src/gui/gui.cpp:4503 +msgid "oscilloscope (X-Y)" +msgstr "" + +#: src/gui/gui.cpp:4504 +msgid "volume meter" +msgstr "" + +#: src/gui/gui.cpp:4507 +msgid "tempo" +msgstr "" + +#: src/gui/gui.cpp:4508 +msgid "clock" +msgstr "" + +#: src/gui/gui.cpp:4509 +msgid "grooves" +msgstr "" + +#: src/gui/gui.cpp:4510 +msgid "speed" +msgstr "" + +#: src/gui/gui.cpp:4514 +msgid "log viewer" +msgstr "" + +#: src/gui/gui.cpp:4515 +msgid "register view" +msgstr "" + +#: src/gui/gui.cpp:4516 +msgid "statistics" +msgstr "" + +#: src/gui/gui.cpp:4517 +msgid "memory composition" +msgstr "" + +#: src/gui/gui.cpp:4521 src/gui/gui.cpp:4529 +msgid "effect list" +msgstr "" + +#: src/gui/gui.cpp:4522 +msgid "play/edit controls" +msgstr "" + +#: src/gui/gui.cpp:4523 +msgid "piano/input pad" +msgstr "" + +#: src/gui/gui.cpp:4524 +msgid "spoiler" +msgstr "" + +#: src/gui/gui.cpp:4528 +msgid "Help" +msgstr "" + +#: src/gui/gui.cpp:4528 +msgid "help" +msgstr "" + +#: src/gui/gui.cpp:4530 +msgid "debug menu" +msgstr "" + +#: src/gui/gui.cpp:4531 +msgid "inspector" +msgstr "" + +#: src/gui/gui.cpp:4532 +msgid "panic" +msgstr "" + +#: src/gui/gui.cpp:4533 +msgid "about..." +msgstr "" + +#: src/gui/gui.cpp:4548 +#, c-format +msgid "| Speed %d:%d" +msgstr "" + +#: src/gui/gui.cpp:4550 +#, c-format +msgid "| Speed %d" +msgstr "" + +#: src/gui/gui.cpp:4552 +msgid "| Groove" +msgstr "" + +#: src/gui/gui.cpp:4555 +#, c-format +msgid " @ %gHz (%g BPM) " +msgstr "" + +#: src/gui/gui.cpp:4558 +#, c-format +msgid "| Order %.2X/%.2X " +msgstr "" + +#: src/gui/gui.cpp:4560 +#, c-format +msgid "| Order %d/%d " +msgstr "" + +#: src/gui/gui.cpp:4564 +#, c-format +msgid "| Row %.2X/%.2X " +msgstr "" + +#: src/gui/gui.cpp:4566 +#, c-format +msgid "| Row %d/%d " +msgstr "" + +#: src/gui/gui.cpp:4569 +msgid "| " +msgstr "" + +#: src/gui/gui.cpp:4572 +msgid "Don't you have anything better to do?" +msgstr "" + +#: src/gui/gui.cpp:4582 +#, c-format +msgid "%d year " +msgid_plural "%d years " +msgstr[0] "" +msgstr[1] "" + +#: src/gui/gui.cpp:4583 +#, c-format +msgid "%d month " +msgid_plural "%d months " +msgstr[0] "" +msgstr[1] "" + +#: src/gui/gui.cpp:4584 +#, c-format +msgid "%d day " +msgid_plural "%d days " +msgstr[0] "" +msgstr[1] "" + +#: src/gui/gui.cpp:4609 +msgid "Note off (cut)" +msgstr "" + +#: src/gui/gui.cpp:4611 +msgid "Note off (release)" +msgstr "" + +#: src/gui/gui.cpp:4613 +msgid "Macro release only" +msgstr "" + +#: src/gui/gui.cpp:4615 +#, c-format +msgid "Note on: %s" +msgstr "" + +#: src/gui/gui.cpp:4623 +#, c-format +msgid "Ins %d: " +msgstr "" + +#: src/gui/gui.cpp:4626 +#, c-format +msgid "Ins %d: %s" +msgstr "" + +#: src/gui/gui.cpp:4635 +#, c-format +msgid "Set volume: %d (%.2X, INVALID!)" +msgstr "" + +#: src/gui/gui.cpp:4638 +#, c-format +msgid "Set volume: %d (%.2X, %d%%)" +msgstr "" + +#: src/gui/gui.cpp:4660 +msgid "| modified" +msgstr "" + +#: src/gui/gui.cpp:4825 src/gui/gui.cpp:4828 +msgid "System File Dialog Pending" +msgstr "" + +#: src/gui/gui.cpp:4941 +msgid "" +"there was an error in the file dialog! you may want to report this issue " +"to:\n" +"https://github.com/tildearrow/furnace/issues\n" +"check the Log Viewer (window > log viewer) for more information.\n" +"\n" +"for now please disable the system file picker in Settings > General." +msgstr "" + +#: src/gui/gui.cpp:4944 +msgid "can't do anything without Storage permissions!" +msgstr "" + +#: src/gui/gui.cpp:4946 +msgid "" +"Zenity/KDialog not available!\n" +"please install one of these, or disable the system file picker in Settings > " +"General." +msgstr "" + +#: src/gui/gui.cpp:5082 +msgid "" +"error while saving instrument! only the following instrument types are " +"supported:\n" +"- FM (OPN)\n" +"- SN76489/Sega PSG\n" +"- Game Boy\n" +"- PC Engine\n" +"- NES\n" +"- C64\n" +"- FM (OPLL)\n" +"- FDS" +msgstr "" + +#: src/gui/gui.cpp:5110 +msgid "there were some errors while loading samples:\n" +msgstr "" + +#: src/gui/gui.cpp:5155 src/gui/gui.cpp:6339 +msgid "...but you haven't selected a sample!" +msgstr "" + +#: src/gui/gui.cpp:5170 src/gui/gui.cpp:5179 +msgid "could not save sample! open Log Viewer for more information." +msgstr "" + +#: src/gui/gui.cpp:5198 +msgid "there were some warnings/errors while loading instruments:\n" +msgstr "" + +#: src/gui/gui.cpp:5204 +#, c-format +msgid "> %s: cannot load instrument! (%s)\n" +msgstr "" + +#: src/gui/gui.cpp:5222 src/gui/gui.cpp:5276 +#, c-format +msgid "cannot load instrument! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5228 +msgid "" +"congratulations! you managed to load nothing.\n" +"you are entitled to a bug report." +msgstr "" + +#: src/gui/gui.cpp:5269 src/gui/gui.cpp:6243 +msgid "...but you haven't selected an instrument!" +msgstr "" + +#: src/gui/gui.cpp:5281 +msgid "there were some errors while loading wavetables:\n" +msgstr "" + +#: src/gui/gui.cpp:5290 src/gui/gui.cpp:5300 src/gui/gui.cpp:5319 +#, c-format +msgid "cannot load wavetable! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5327 +msgid "...but you haven't selected a wavetable!" +msgstr "" + +#: src/gui/gui.cpp:5342 src/gui/gui.cpp:5363 src/gui/gui.cpp:5387 +#: src/gui/gui.cpp:5408 +msgid "could not open file!" +msgstr "" + +#: src/gui/gui.cpp:5350 +#, c-format +msgid "could not write VGM! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5371 +#, c-format +msgid "Could not write ZSM! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5395 +#, c-format +msgid "could not write text! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5416 +#, c-format +msgid "could not write command stream! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5440 +msgid "could not import user presets!" +msgstr "" + +#: src/gui/gui.cpp:5445 src/gui/gui.cpp:5462 +#, c-format +msgid "could not import user presets! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5483 +#, c-format +msgid "You opened: %s" +msgstr "" + +#: src/gui/gui.cpp:5486 +msgid "You opened:" +msgstr "" + +#: src/gui/gui.cpp:5494 +#, c-format +msgid "You saved: %s" +msgstr "" + +#: src/gui/gui.cpp:5515 src/gui/gui.cpp:5636 src/gui/gui.cpp:5637 +#: src/gui/insEdit.cpp:7520 +msgid "Error" +msgstr "" + +#: src/gui/gui.cpp:5520 src/gui/gui.cpp:6177 src/gui/gui.cpp:6178 +msgid "Select Instrument" +msgstr "" + +#: src/gui/gui.cpp:5525 src/gui/gui.cpp:6256 src/gui/gui.cpp:6257 +msgid "Import Raw Sample" +msgstr "" + +#: src/gui/gui.cpp:5540 src/gui/gui.cpp:5593 src/gui/gui.cpp:5594 +msgid "Rendering..." +msgstr "" + +#: src/gui/gui.cpp:5595 +msgid "Please wait..." +msgstr "" + +#: src/gui/gui.cpp:5596 +msgid "Abort" +msgstr "" + +#: src/gui/gui.cpp:5638 +#, c-format +msgid "%s" +msgstr "" + +#: src/gui/gui.cpp:5868 +msgid "Erasing" +msgstr "" + +#: src/gui/gui.cpp:5871 +msgid "All subsongs" +msgstr "" + +#: src/gui/gui.cpp:5878 +msgid "Current subsong" +msgstr "" + +#: src/gui/gui.cpp:5945 +msgid "Optimization" +msgstr "" + +#: src/gui/gui.cpp:5948 src/gui/patManager.cpp:36 +msgid "De-duplicate patterns" +msgstr "" + +#: src/gui/gui.cpp:5957 +msgid "Remove unused instruments" +msgstr "" + +#: src/gui/gui.cpp:5970 +msgid "Remove unused samples" +msgstr "" + +#: src/gui/gui.cpp:5987 +msgid "Never mind! Cancel" +msgstr "" + +#: src/gui/gui.cpp:6066 +msgid "Drum kit mode:" +msgstr "" + +#: src/gui/gui.cpp:6070 +msgid "12 samples per octave" +msgstr "" + +#: src/gui/gui.cpp:6075 +msgid "Starting octave" +msgstr "" + +#: src/gui/gui.cpp:6095 +msgid "Drum Kit" +msgstr "" + +#: src/gui/gui.cpp:6181 +msgid "this is an instrument bank! select which one to use:" +msgstr "" + +#: src/gui/gui.cpp:6184 +msgid "this is an instrument bank! select which ones to load:" +msgstr "" + +#: src/gui/gui.cpp:6258 +msgid "Data type:" +msgstr "" + +#: src/gui/gui.cpp:6285 +msgid "(will be mixed down to mono)" +msgstr "" + +#: src/gui/gui.cpp:6286 +msgid "Unsigned" +msgstr "" + +#: src/gui/gui.cpp:6290 +msgid "Big endian" +msgstr "" + +#: src/gui/gui.cpp:6298 +msgid "Swap nibbles" +msgstr "" + +#: src/gui/gui.cpp:6302 +msgid "Swap words" +msgstr "" + +#: src/gui/gui.cpp:6306 +msgid "Encoding:" +msgstr "" + +#: src/gui/gui.cpp:6319 +msgid "Reverse bit order" +msgstr "" + +#: src/gui/gui.cpp:6361 +msgid "Error! No string provided!" +msgstr "" + +#: src/gui/gui.cpp:6683 +msgid "it appears I couldn't load these fonts. any setting you can check?" +msgstr "" + +#: src/gui/gui.cpp:6863 src/gui/gui.cpp:6971 +msgid "" +"could not init renderer!\n" +"falling back to software renderer. please restart Furnace." +msgstr "" + +#: src/gui/gui.cpp:6865 src/gui/gui.cpp:6973 +#, c-format +msgid "" +"could not init renderer! %s\n" +"falling back to software renderer. please restart Furnace." +msgstr "" + +#: src/gui/gui.cpp:6870 src/gui/gui.cpp:6978 +msgid "could not init renderer!" +msgstr "" + +#: src/gui/gui.cpp:6881 +#, c-format +msgid "could not open window! %s" +msgstr "" + +#: src/gui/gui.cpp:6886 +msgid "" +"\n" +"falling back to software renderer. please restart Furnace." +msgstr "" + +#: src/gui/gui.cpp:7034 +msgid "Size column to fit###SizeOne" +msgstr "" + +#: src/gui/gui.cpp:7036 +msgid "Size all columns to fit###SizeAll" +msgstr "" + +#: src/gui/gui.cpp:7038 +msgid "Size all columns to default###SizeAll" +msgstr "" + +#: src/gui/gui.cpp:7040 +msgid "Reset order###ResetOrder" +msgstr "" + +#: src/gui/gui.cpp:7042 +msgid "(Main menu bar)" +msgstr "" + +#: src/gui/gui.cpp:7044 +msgid "(Popup)" +msgstr "" + +#: src/gui/gui.cpp:7046 +msgid "(Untitled)" +msgstr "" + +#: src/gui/gui.cpp:7048 +msgid "Hide tab bar###HideTabBar" +msgstr "" + +#: src/gui/gui.cpp:7052 +msgid "LocaleSettings: ccjk" +msgstr "" + +#: src/gui/gui.cpp:7564 +msgid "Unsaved changes! Save changes before quitting?" +msgstr "" + +#: src/gui/sysManager.cpp:42 +msgid "Preserve channel order" +msgstr "" + +#: src/gui/sysManager.cpp:44 +msgid "Clone channel data" +msgstr "" + +#: src/gui/sysManager.cpp:46 +msgid "Clone at end" +msgstr "" + +#: src/gui/sysManager.cpp:56 +msgid "Actions" +msgstr "" + +#: src/gui/sysManager.cpp:69 +msgid "(drag to swap chips)" +msgstr "" + +#: src/gui/sysManager.cpp:90 +msgid "Clone##SysDup" +msgstr "" + +#: src/gui/sysManager.cpp:92 +#, c-format +msgid "cannot clone chip! (%s)" +msgstr "" + +#: src/gui/sysManager.cpp:98 +msgid "Change##SysChange" +msgstr "" + +#: src/gui/sysManager.cpp:120 +msgid "Are you sure you want to remove this chip?" +msgstr "" + +#: src/gui/patManager.cpp:43 +msgid "Re-arrange patterns" +msgstr "" + +#: src/gui/patManager.cpp:50 +msgid "Sort orders" +msgstr "" + +#: src/gui/patManager.cpp:57 +msgid "Make patterns unique" +msgstr "" + +#: src/gui/patManager.cpp:103 +#, c-format +msgid "" +"Pattern %.2X\n" +"- not allocated" +msgstr "" + +#: src/gui/patManager.cpp:105 +#, c-format +msgid "" +"Pattern %.2X\n" +"- use count: %d (%.0f%%)\n" +"\n" +"right-click to erase" +msgstr "" + +#: src/gui/insEdit.cpp:39 +msgid "Down Down Down" +msgstr "" + +#: src/gui/insEdit.cpp:40 +msgid "Down." +msgstr "" + +#: src/gui/insEdit.cpp:41 +msgid "Down Up Down Up" +msgstr "" + +#: src/gui/insEdit.cpp:42 +msgid "Down UP" +msgstr "" + +#: src/gui/insEdit.cpp:43 +msgid "Up Up Up" +msgstr "" + +#: src/gui/insEdit.cpp:44 +msgid "Up." +msgstr "" + +#: src/gui/insEdit.cpp:45 +msgid "Up Down Up Down" +msgstr "" + +#: src/gui/insEdit.cpp:46 +msgid "Up DOWN" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Algorithm" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Feedback" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "LFO > Freq" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "LFO > Amp" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Decay 2" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "EnvScale" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Multiplier" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Detune 2" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "AM" +msgstr "" + +#: src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:5438 src/gui/insEdit.cpp:6516 +msgid "AM Depth" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Vibrato Depth" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Sustained" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Level Scaling" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Vibrato" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Scale Rate" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "OP2 Half Sine" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "OP1 Half Sine" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "EnvShift" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Reverb" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Fine" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "LFO2 > Freq" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "LFO2 > Amp" +msgstr "" + +#: src/gui/insEdit.cpp:56 src/gui/insEdit.cpp:68 src/gui/insEdit.cpp:7391 +msgid "OP4 Noise Mode" +msgstr "" + +#: src/gui/insEdit.cpp:57 +msgid "Envelope Delay" +msgstr "" + +#: src/gui/insEdit.cpp:58 src/gui/insEdit.cpp:70 +msgid "Output Level" +msgstr "" + +#: src/gui/insEdit.cpp:59 +msgid "Modulation Input Level" +msgstr "" + +#: src/gui/insEdit.cpp:60 +msgid "Left Output" +msgstr "" + +#: src/gui/insEdit.cpp:61 +msgid "Right Output" +msgstr "" + +#: src/gui/insEdit.cpp:62 +msgid "Coarse Tune (semitones)" +msgstr "" + +#: src/gui/insEdit.cpp:64 +msgid "Fixed Frequency Mode" +msgstr "" + +#: src/gui/insEdit.cpp:69 +msgid "Env. Delay" +msgstr "" + +#: src/gui/insEdit.cpp:71 +msgid "ModInput" +msgstr "" + +#: src/gui/insEdit.cpp:72 +msgid "Left" +msgstr "" + +#: src/gui/insEdit.cpp:73 +msgid "Right" +msgstr "" + +#: src/gui/insEdit.cpp:74 +msgid "Tune" +msgstr "" + +#: src/gui/insEdit.cpp:76 src/gui/insEdit.cpp:610 src/gui/insEdit.cpp:3792 +#: src/gui/insEdit.cpp:4554 src/gui/insEdit.cpp:4848 +msgid "Fixed" +msgstr "" + +#: src/gui/insEdit.cpp:98 src/gui/insEdit.cpp:117 src/gui/insEdit.cpp:136 +#: src/gui/insEdit.cpp:156 +msgid "User" +msgstr "" + +#: src/gui/insEdit.cpp:99 +msgid "1. Violin" +msgstr "" + +#: src/gui/insEdit.cpp:100 src/gui/insEdit.cpp:138 src/gui/insEdit.cpp:158 +msgid "2. Guitar" +msgstr "" + +#: src/gui/insEdit.cpp:101 src/gui/insEdit.cpp:159 +msgid "3. Piano" +msgstr "" + +#: src/gui/insEdit.cpp:102 src/gui/insEdit.cpp:160 +msgid "4. Flute" +msgstr "" + +#: src/gui/insEdit.cpp:103 src/gui/insEdit.cpp:122 src/gui/insEdit.cpp:161 +msgid "5. Clarinet" +msgstr "" + +#: src/gui/insEdit.cpp:104 +msgid "6. Oboe" +msgstr "" + +#: src/gui/insEdit.cpp:105 src/gui/insEdit.cpp:124 src/gui/insEdit.cpp:143 +#: src/gui/insEdit.cpp:163 +msgid "7. Trumpet" +msgstr "" + +#: src/gui/insEdit.cpp:106 +msgid "8. Organ" +msgstr "" + +#: src/gui/insEdit.cpp:107 +msgid "9. Horn" +msgstr "" + +#: src/gui/insEdit.cpp:108 +msgid "10. Synth" +msgstr "" + +#: src/gui/insEdit.cpp:109 +msgid "11. Harpsichord" +msgstr "" + +#: src/gui/insEdit.cpp:110 src/gui/insEdit.cpp:129 src/gui/insEdit.cpp:148 +msgid "12. Vibraphone" +msgstr "" + +#: src/gui/insEdit.cpp:111 +msgid "13. Synth Bass" +msgstr "" + +#: src/gui/insEdit.cpp:112 +msgid "14. Acoustic Bass" +msgstr "" + +#: src/gui/insEdit.cpp:113 +msgid "15. Electric Guitar" +msgstr "" + +#: src/gui/insEdit.cpp:114 src/gui/insEdit.cpp:133 src/gui/insEdit.cpp:152 +#: src/gui/insEdit.cpp:172 src/gui/insEdit.cpp:3176 +msgid "Drums" +msgstr "" + +#: src/gui/insEdit.cpp:118 +msgid "1. Electric String" +msgstr "" + +#: src/gui/insEdit.cpp:119 +msgid "2. Bow wow" +msgstr "" + +#: src/gui/insEdit.cpp:120 src/gui/insEdit.cpp:139 +msgid "3. Electric Guitar" +msgstr "" + +#: src/gui/insEdit.cpp:121 +msgid "4. Organ" +msgstr "" + +#: src/gui/insEdit.cpp:123 +msgid "6. Saxophone" +msgstr "" + +#: src/gui/insEdit.cpp:125 +msgid "8. Street Organ" +msgstr "" + +#: src/gui/insEdit.cpp:126 +msgid "9. Synth Brass" +msgstr "" + +#: src/gui/insEdit.cpp:127 +msgid "10. Electric Piano" +msgstr "" + +#: src/gui/insEdit.cpp:128 +msgid "11. Bass" +msgstr "" + +#: src/gui/insEdit.cpp:130 +msgid "13. Chime" +msgstr "" + +#: src/gui/insEdit.cpp:131 +msgid "14. Tom Tom II" +msgstr "" + +#: src/gui/insEdit.cpp:132 +msgid "15. Noise" +msgstr "" + +#: src/gui/insEdit.cpp:137 +msgid "1. Strings" +msgstr "" + +#: src/gui/insEdit.cpp:140 +msgid "4. Electric Piano" +msgstr "" + +#: src/gui/insEdit.cpp:141 +msgid "5. Flute" +msgstr "" + +#: src/gui/insEdit.cpp:142 +msgid "6. Marimba" +msgstr "" + +#: src/gui/insEdit.cpp:144 +msgid "8. Harmonica" +msgstr "" + +#: src/gui/insEdit.cpp:145 +msgid "9. Tuba" +msgstr "" + +#: src/gui/insEdit.cpp:146 +msgid "10. Synth Brass" +msgstr "" + +#: src/gui/insEdit.cpp:147 +msgid "11. Short Saw" +msgstr "" + +#: src/gui/insEdit.cpp:149 +msgid "13. Electric Guitar 2" +msgstr "" + +#: src/gui/insEdit.cpp:150 +msgid "14. Synth Bass" +msgstr "" + +#: src/gui/insEdit.cpp:151 +msgid "15. Sitar" +msgstr "" + +#: src/gui/insEdit.cpp:157 +msgid "1. Bell" +msgstr "" + +#: src/gui/insEdit.cpp:162 +msgid "6. Rattling Bell" +msgstr "" + +#: src/gui/insEdit.cpp:164 +msgid "8. Reed Organ" +msgstr "" + +#: src/gui/insEdit.cpp:165 +msgid "9. Soft Bell" +msgstr "" + +#: src/gui/insEdit.cpp:166 +msgid "10. Xylophone" +msgstr "" + +#: src/gui/insEdit.cpp:167 +msgid "11. Vibraphone" +msgstr "" + +#: src/gui/insEdit.cpp:168 +msgid "12. Brass" +msgstr "" + +#: src/gui/insEdit.cpp:169 +msgid "13. Bass Guitar" +msgstr "" + +#: src/gui/insEdit.cpp:170 +msgid "14. Synth" +msgstr "" + +#: src/gui/insEdit.cpp:171 +msgid "15. Chorus" +msgstr "" + +#: src/gui/insEdit.cpp:178 src/gui/insEdit.cpp:189 +msgid "Half Sine" +msgstr "" + +#: src/gui/insEdit.cpp:179 src/gui/insEdit.cpp:190 +msgid "Absolute Sine" +msgstr "" + +#: src/gui/insEdit.cpp:180 +msgid "Quarter Sine" +msgstr "" + +#: src/gui/insEdit.cpp:181 src/gui/insEdit.cpp:203 +msgid "Squished Sine" +msgstr "" + +#: src/gui/insEdit.cpp:182 src/gui/insEdit.cpp:205 +msgid "Squished AbsSine" +msgstr "" + +#: src/gui/insEdit.cpp:184 src/gui/insEdit.cpp:195 +msgid "Derived Square" +msgstr "" + +#: src/gui/insEdit.cpp:191 +msgid "Pulse Sine" +msgstr "" + +#: src/gui/insEdit.cpp:192 +msgid "Sine (Even Periods)" +msgstr "" + +#: src/gui/insEdit.cpp:193 +msgid "AbsSine (Even Periods)" +msgstr "" + +#: src/gui/insEdit.cpp:201 +msgid "Cut Sine" +msgstr "" + +#: src/gui/insEdit.cpp:202 +msgid "Cut Triangle" +msgstr "" + +#: src/gui/insEdit.cpp:204 +msgid "Squished Triangle" +msgstr "" + +#: src/gui/insEdit.cpp:206 +msgid "Squished AbsTriangle" +msgstr "" + +#: src/gui/insEdit.cpp:224 +msgid "Noise disabled" +msgstr "" + +#: src/gui/insEdit.cpp:225 +msgid "Square + noise" +msgstr "" + +#: src/gui/insEdit.cpp:226 +msgid "Ringmod from OP3 + noise" +msgstr "" + +#: src/gui/insEdit.cpp:227 +msgid "" +"Ringmod from OP3 + double pitch ModInput\n" +"WARNING - has emulation issues; subject to change" +msgstr "" + +#: src/gui/insEdit.cpp:232 +msgid "Bitwise AND" +msgstr "" + +#: src/gui/insEdit.cpp:233 +msgid "Bitwise OR" +msgstr "" + +#: src/gui/insEdit.cpp:234 +msgid "Bitwise XOR" +msgstr "" + +#: src/gui/insEdit.cpp:239 src/gui/insEdit.cpp:390 +msgid "gate" +msgstr "" + +#: src/gui/insEdit.cpp:240 src/gui/insEdit.cpp:391 +msgid "sync" +msgstr "" + +#: src/gui/insEdit.cpp:241 src/gui/insEdit.cpp:392 +msgid "ring" +msgstr "" + +#: src/gui/insEdit.cpp:327 +msgid "How did you even" +msgstr "" + +#: src/gui/insEdit.cpp:335 +msgid "triangle" +msgstr "" + +#: src/gui/insEdit.cpp:336 src/gui/insEdit.cpp:5821 +msgid "saw" +msgstr "" + +#: src/gui/insEdit.cpp:337 src/gui/insEdit.cpp:5827 +msgid "pulse" +msgstr "" + +#: src/gui/insEdit.cpp:338 src/gui/insEdit.cpp:344 src/gui/insEdit.cpp:373 +#: src/gui/insEdit.cpp:424 src/gui/insEdit.cpp:429 src/gui/insEdit.cpp:5833 +msgid "noise" +msgstr "" + +#: src/gui/insEdit.cpp:343 +msgid "tone" +msgstr "" + +#: src/gui/insEdit.cpp:345 +msgid "envelope" +msgstr "" + +#: src/gui/insEdit.cpp:350 +msgid "hold" +msgstr "" + +#: src/gui/insEdit.cpp:351 +msgid "alternate" +msgstr "" + +#: src/gui/insEdit.cpp:352 src/gui/insEdit.cpp:364 +msgid "direction" +msgstr "" + +#: src/gui/insEdit.cpp:353 src/gui/insEdit.cpp:436 +msgid "enable" +msgstr "" + +#: src/gui/insEdit.cpp:357 src/gui/insEdit.cpp:368 +msgid "enabled" +msgstr "" + +#: src/gui/insEdit.cpp:361 +msgid "mirror" +msgstr "" + +#: src/gui/insEdit.cpp:365 +msgid "resolution" +msgstr "" + +#: src/gui/insEdit.cpp:366 +msgid "fixed" +msgstr "" + +#: src/gui/insEdit.cpp:367 +msgid "N/A" +msgstr "" + +#: src/gui/insEdit.cpp:374 +msgid "echo" +msgstr "" + +#: src/gui/insEdit.cpp:375 +msgid "pitch mod" +msgstr "" + +#: src/gui/insEdit.cpp:376 src/gui/insEdit.cpp:508 +msgid "invert right" +msgstr "" + +#: src/gui/insEdit.cpp:377 src/gui/insEdit.cpp:509 +msgid "invert left" +msgstr "" + +#: src/gui/insEdit.cpp:382 src/gui/insEdit.cpp:5905 +msgid "low" +msgstr "" + +#: src/gui/insEdit.cpp:383 src/gui/insEdit.cpp:5911 +msgid "band" +msgstr "" + +#: src/gui/insEdit.cpp:384 src/gui/insEdit.cpp:5917 +msgid "high" +msgstr "" + +#: src/gui/insEdit.cpp:385 src/gui/insEdit.cpp:5924 +msgid "ch3off" +msgstr "" + +#: src/gui/insEdit.cpp:393 +msgid "test" +msgstr "" + +#: src/gui/insEdit.cpp:398 +msgid "15KHz" +msgstr "" + +#: src/gui/insEdit.cpp:399 +msgid "filter 2+4" +msgstr "" + +#: src/gui/insEdit.cpp:400 +msgid "filter 1+3" +msgstr "" + +#: src/gui/insEdit.cpp:401 +msgid "16-bit 3+4" +msgstr "" + +#: src/gui/insEdit.cpp:402 +msgid "16-bit 1+2" +msgstr "" + +#: src/gui/insEdit.cpp:403 +msgid "high3" +msgstr "" + +#: src/gui/insEdit.cpp:404 +msgid "high1" +msgstr "" + +#: src/gui/insEdit.cpp:405 +msgid "poly9" +msgstr "" + +#: src/gui/insEdit.cpp:414 +msgid "16'" +msgstr "" + +#: src/gui/insEdit.cpp:415 +msgid "8'" +msgstr "" + +#: src/gui/insEdit.cpp:416 +msgid "4'" +msgstr "" + +#: src/gui/insEdit.cpp:417 +msgid "2'" +msgstr "" + +#: src/gui/insEdit.cpp:418 +msgid "sustain" +msgstr "" + +#: src/gui/insEdit.cpp:423 +msgid "square" +msgstr "" + +#: src/gui/insEdit.cpp:431 +msgid "surround" +msgstr "" + +#: src/gui/insEdit.cpp:437 +msgid "oneshot" +msgstr "" + +#: src/gui/insEdit.cpp:438 +msgid "split L/R" +msgstr "" + +#: src/gui/insEdit.cpp:439 +msgid "HinvR" +msgstr "" + +#: src/gui/insEdit.cpp:440 +msgid "VinvR" +msgstr "" + +#: src/gui/insEdit.cpp:441 +msgid "HinvL" +msgstr "" + +#: src/gui/insEdit.cpp:442 +msgid "VinvL" +msgstr "" + +#: src/gui/insEdit.cpp:447 src/gui/insEdit.cpp:476 +msgid "ring mod" +msgstr "" + +#: src/gui/insEdit.cpp:448 +msgid "low pass" +msgstr "" + +#: src/gui/insEdit.cpp:449 src/gui/insEdit.cpp:475 +msgid "high pass" +msgstr "" + +#: src/gui/insEdit.cpp:450 +msgid "band pass" +msgstr "" + +#: src/gui/insEdit.cpp:459 +msgid "enable tap B" +msgstr "" + +#: src/gui/insEdit.cpp:460 +msgid "AM with slope" +msgstr "" + +#: src/gui/insEdit.cpp:465 +msgid "invert B" +msgstr "" + +#: src/gui/insEdit.cpp:466 +msgid "invert A" +msgstr "" + +#: src/gui/insEdit.cpp:467 +msgid "reset B" +msgstr "" + +#: src/gui/insEdit.cpp:468 +msgid "reset A" +msgstr "" + +#: src/gui/insEdit.cpp:469 +msgid "clip B" +msgstr "" + +#: src/gui/insEdit.cpp:470 +msgid "clip A" +msgstr "" + +#: src/gui/insEdit.cpp:477 +msgid "swap counters (noise)" +msgstr "" + +#: src/gui/insEdit.cpp:478 +msgid "low pass (noise)" +msgstr "" + +#: src/gui/insEdit.cpp:485 +msgid "rear right" +msgstr "" + +#: src/gui/insEdit.cpp:486 +msgid "rear left" +msgstr "" + +#: src/gui/insEdit.cpp:491 +msgid "on" +msgstr "" + +#: src/gui/insEdit.cpp:496 +msgid "k1 slowdown" +msgstr "" + +#: src/gui/insEdit.cpp:497 +msgid "k2 slowdown" +msgstr "" + +#: src/gui/insEdit.cpp:502 +msgid "pause" +msgstr "" + +#: src/gui/insEdit.cpp:503 +msgid "reverse" +msgstr "" + +#: src/gui/insEdit.cpp:521 +msgid "Subtract" +msgstr "" + +#: src/gui/insEdit.cpp:522 +msgid "Average" +msgstr "" + +#: src/gui/insEdit.cpp:523 src/gui/insEdit.cpp:2037 +msgid "Phase" +msgstr "" + +#: src/gui/insEdit.cpp:524 +msgid "Chorus" +msgstr "" + +#: src/gui/insEdit.cpp:528 +msgid "None (dual)" +msgstr "" + +#: src/gui/insEdit.cpp:529 +msgid "Wipe" +msgstr "" + +#: src/gui/insEdit.cpp:531 +msgid "Fade (ping-pong)" +msgstr "" + +#: src/gui/insEdit.cpp:532 +msgid "Overlay" +msgstr "" + +#: src/gui/insEdit.cpp:533 +msgid "Negative Overlay" +msgstr "" + +#: src/gui/insEdit.cpp:534 +msgid "Slide" +msgstr "" + +#: src/gui/insEdit.cpp:535 +msgid "Mix Chorus" +msgstr "" + +#: src/gui/insEdit.cpp:536 +msgid "Phase Modulation" +msgstr "" + +#: src/gui/insEdit.cpp:541 +msgid "Sweep" +msgstr "" + +#: src/gui/insEdit.cpp:542 src/gui/insEdit.cpp:552 +msgid "Wait" +msgstr "" + +#: src/gui/insEdit.cpp:543 src/gui/insEdit.cpp:553 +msgid "Wait for Release" +msgstr "" + +#: src/gui/insEdit.cpp:545 src/gui/insEdit.cpp:555 +msgid "Loop until Release" +msgstr "" + +#: src/gui/insEdit.cpp:549 +msgid "Volume Sweep" +msgstr "" + +#: src/gui/insEdit.cpp:550 +msgid "Frequency Sweep" +msgstr "" + +#: src/gui/insEdit.cpp:551 +msgid "Cutoff Sweep" +msgstr "" + +#: src/gui/insEdit.cpp:559 src/gui/insEdit.cpp:6604 +msgid "Direct" +msgstr "" + +#: src/gui/insEdit.cpp:560 src/gui/insEdit.cpp:6608 +msgid "Decrease (linear)" +msgstr "" + +#: src/gui/insEdit.cpp:561 src/gui/insEdit.cpp:6612 +msgid "Decrease (logarithmic)" +msgstr "" + +#: src/gui/insEdit.cpp:562 src/gui/insEdit.cpp:6616 +msgid "Increase (linear)" +msgstr "" + +#: src/gui/insEdit.cpp:563 src/gui/insEdit.cpp:6620 +msgid "Increase (bent line)" +msgstr "" + +#: src/gui/insEdit.cpp:611 +msgid "Relative" +msgstr "" + +#: src/gui/insEdit.cpp:616 +#, c-format +msgid "%d: +%d (exponential)" +msgstr "" + +#: src/gui/insEdit.cpp:619 +#, c-format +msgid "%d: +%d (linear)" +msgstr "" + +#: src/gui/insEdit.cpp:622 +#, c-format +msgid "%d: -%d (exponential)" +msgstr "" + +#: src/gui/insEdit.cpp:625 +#, c-format +msgid "%d: -%d (linear)" +msgstr "" + +#: src/gui/insEdit.cpp:627 +#, c-format +msgid "%d: %d (direct)" +msgstr "" + +#: src/gui/insEdit.cpp:660 +msgid "Random" +msgstr "" + +#: src/gui/insEdit.cpp:1610 +msgid "" +"left click to restart\n" +"middle click to pause\n" +"right click to see algorithm" +msgstr "" + +#: src/gui/insEdit.cpp:1620 +msgid "" +"left click to configure TL scaling\n" +"right click to see FM preview" +msgstr "" + +#: src/gui/insEdit.cpp:1624 +msgid "right click to see FM preview" +msgstr "" + +#: src/gui/insEdit.cpp:1639 +msgid "operator level changes with volume?" +msgstr "" + +#: src/gui/insEdit.cpp:1648 +msgid "AUTO##OPKVS" +msgstr "" + +#: src/gui/insEdit.cpp:1650 +msgid "NO##OPKVS" +msgstr "" + +#: src/gui/insEdit.cpp:1652 +msgid "YES##OPKVS" +msgstr "" + +#: src/gui/insEdit.cpp:1900 src/gui/insEdit.cpp:2005 +msgid "Bottom" +msgstr "" + +#: src/gui/insEdit.cpp:1940 +msgid "Hold" +msgstr "" + +#: src/gui/insEdit.cpp:1949 +msgid "SusTime" +msgstr "" + +#: src/gui/insEdit.cpp:1969 +msgid "SusDecay" +msgstr "" + +#: src/gui/insEdit.cpp:2047 +msgid "Shape" +msgstr "" + +#: src/gui/insEdit.cpp:2100 +msgid "Macro type: Sequence" +msgstr "" + +#: src/gui/insEdit.cpp:2103 +msgid "Macro type: ADSR" +msgstr "" + +#: src/gui/insEdit.cpp:2106 +msgid "Macro type: LFO" +msgstr "" + +#: src/gui/insEdit.cpp:2109 +msgid "Macro type: What's going on here?" +msgstr "" + +#: src/gui/insEdit.cpp:2122 +msgid "Delay/Step Length" +msgstr "" + +#: src/gui/insEdit.cpp:2125 +msgid "Step Length (ticks)##IMacroSpeed" +msgstr "" + +#: src/gui/insEdit.cpp:2129 +msgid "Delay##IMacroDelay" +msgstr "" + +#: src/gui/insEdit.cpp:2142 +msgid "Release mode: Active (jump to release pos)" +msgstr "" + +#: src/gui/insEdit.cpp:2144 +msgid "Release mode: Passive (delayed release)" +msgstr "" + +#: src/gui/insEdit.cpp:2393 +msgid "StepLen" +msgstr "" + +#: src/gui/insEdit.cpp:2401 +msgid "Delay" +msgstr "" + +#: src/gui/insEdit.cpp:2425 +msgid "The heck? No, this isn't even working correctly..." +msgstr "" + +#: src/gui/insEdit.cpp:2428 +msgid "The only problem with that selectedMacro is that it's a bug..." +msgstr "" + +#: src/gui/insEdit.cpp:2589 +msgid "(copying)" +msgstr "" + +#: src/gui/insEdit.cpp:2591 +msgid "(swapping)" +msgstr "" + +#: src/gui/insEdit.cpp:2595 +msgid "" +"- drag to swap operator\n" +"- shift-drag to copy operator" +msgstr "" + +#: src/gui/insEdit.cpp:2632 +msgid "new DPCM features disabled (compatibility)!" +msgstr "" + +#: src/gui/insEdit.cpp:2633 +msgid "click here to enable them." +msgstr "" + +#: src/gui/insEdit.cpp:2644 +msgid "none selected" +msgstr "" + +#: src/gui/insEdit.cpp:2657 +msgid "Use sample" +msgstr "" + +#: src/gui/insEdit.cpp:2659 +msgid "Sample bank slot##BANKSLOT" +msgstr "" + +#: src/gui/insEdit.cpp:2681 +msgid "Use wavetable (Amiga/Generic DAC only)" +msgstr "" + +#: src/gui/insEdit.cpp:2681 +msgid "Use wavetable" +msgstr "" + +#: src/gui/insEdit.cpp:2708 +msgid "Use sample map" +msgstr "" + +#: src/gui/insEdit.cpp:2730 +msgid "delta" +msgstr "" + +#: src/gui/insEdit.cpp:2736 +msgid "sample name" +msgstr "" + +#: src/gui/insEdit.cpp:3001 +msgid "set entire map to this pitch" +msgstr "" + +#: src/gui/insEdit.cpp:3009 +msgid "set entire map to this delta counter value" +msgstr "" + +#: src/gui/insEdit.cpp:3018 +msgid "set entire map to this note" +msgstr "" + +#: src/gui/insEdit.cpp:3027 +msgid "set entire map to this sample" +msgstr "" + +#: src/gui/insEdit.cpp:3037 +msgid "reset pitches" +msgstr "" + +#: src/gui/insEdit.cpp:3042 +msgid "clear delta counter values" +msgstr "" + +#: src/gui/insEdit.cpp:3048 +msgid "reset notes" +msgstr "" + +#: src/gui/insEdit.cpp:3054 +msgid "clear map samples" +msgstr "" + +#: src/gui/insEdit.cpp:3148 +msgid "Request from TX81Z" +msgstr "" + +#: src/gui/insEdit.cpp:3234 +#, c-format +msgid "%s name" +msgstr "" + +#: src/gui/insEdit.cpp:3286 +msgid "Fixed frequency mode" +msgstr "" + +#: src/gui/insEdit.cpp:3288 +msgid "" +"when enabled, drums will be set to the specified frequencies, ignoring the " +"note." +msgstr "" + +#: src/gui/insEdit.cpp:3296 +msgid "Drum" +msgstr "" + +#: src/gui/insEdit.cpp:3298 src/gui/insEdit.cpp:3798 src/gui/insEdit.cpp:3904 +#: src/gui/insEdit.cpp:4404 src/gui/insEdit.cpp:4468 src/gui/insEdit.cpp:5068 +#: src/gui/insEdit.cpp:5518 +msgid "Block" +msgstr "" + +#: src/gui/insEdit.cpp:3300 src/gui/insEdit.cpp:3803 src/gui/insEdit.cpp:3909 +#: src/gui/insEdit.cpp:4993 src/gui/insEdit.cpp:5079 src/gui/insEdit.cpp:5519 +msgid "FreqNum" +msgstr "" + +#: src/gui/insEdit.cpp:3303 +msgid "Snare/Hi-hat" +msgstr "" + +#: src/gui/insEdit.cpp:3304 +msgid "Tom/Top" +msgstr "" + +#: src/gui/insEdit.cpp:3314 +msgid "Volume##TL" +msgstr "" + +#: src/gui/insEdit.cpp:3316 +msgid "this volume slider only works in compatibility (non-drums) system." +msgstr "" + +#: src/gui/insEdit.cpp:3626 +msgid "Env" +msgstr "" + +#: src/gui/insEdit.cpp:3980 src/gui/insEdit.cpp:4346 src/gui/insEdit.cpp:4396 +#: src/gui/insEdit.cpp:5104 +msgid "OPL2/3 only (last 4 waveforms are OPL3 only)" +msgstr "" + +#: src/gui/insEdit.cpp:4079 src/gui/insEdit.cpp:4788 +#, c-format +msgid "Envelope 2 (kick only)" +msgstr "" + +#: src/gui/insEdit.cpp:4084 +#, c-format +msgid "Operator %d" +msgstr "" + +#: src/gui/insEdit.cpp:4414 +msgid "Freq" +msgstr "" + +#: src/gui/insEdit.cpp:4443 +msgid "Only on YM2151 (OPM)" +msgstr "" + +#: src/gui/insEdit.cpp:4466 +msgid "Blk" +msgstr "" + +#: src/gui/insEdit.cpp:4479 +msgid "F" +msgstr "" + +#: src/gui/insEdit.cpp:4481 +msgid "Frequency (F-Num)" +msgstr "" + +#: src/gui/insEdit.cpp:4833 +msgid "SSG On" +msgstr "" + +#: src/gui/insEdit.cpp:5206 src/gui/insEdit.cpp:5207 +msgid "waiting..." +msgstr "" + +#: src/gui/insEdit.cpp:5210 src/gui/insEdit.cpp:5211 +msgid "no instrument selected" +msgstr "" + +#: src/gui/insEdit.cpp:5393 +msgid "" +"none of the currently present chips are able to play this instrument type!" +msgstr "" + +#: src/gui/insEdit.cpp:5413 +msgid "FM Macros" +msgstr "" + +#: src/gui/insEdit.cpp:5435 src/gui/insEdit.cpp:5440 +msgid "LFO Speed" +msgstr "" + +#: src/gui/insEdit.cpp:5439 src/gui/insEdit.cpp:6514 +msgid "PM Depth" +msgstr "" + +#: src/gui/insEdit.cpp:5441 +msgid "LFO Shape" +msgstr "" + +#: src/gui/insEdit.cpp:5444 +msgid "OpMask" +msgstr "" + +#: src/gui/insEdit.cpp:5446 +msgid "AM Depth 2" +msgstr "" + +#: src/gui/insEdit.cpp:5447 +msgid "PM Depth 2" +msgstr "" + +#: src/gui/insEdit.cpp:5448 +msgid "LFO2 Speed" +msgstr "" + +#: src/gui/insEdit.cpp:5449 +msgid "LFO2 Shape" +msgstr "" + +#: src/gui/insEdit.cpp:5458 +#, c-format +msgid "Operator Macros" +msgstr "" + +#: src/gui/insEdit.cpp:5460 +#, c-format +msgid "OP%d Macros" +msgstr "" + +#: src/gui/insEdit.cpp:5521 +msgid "Op. Arpeggio" +msgstr "" + +#: src/gui/insEdit.cpp:5522 +msgid "Op. Pitch" +msgstr "" + +#: src/gui/insEdit.cpp:5531 +msgid "Op. Panning" +msgstr "" + +#: src/gui/insEdit.cpp:5558 +msgid "Use software envelope" +msgstr "" + +#: src/gui/insEdit.cpp:5559 +msgid "Initialize envelope on every note" +msgstr "" + +#: src/gui/insEdit.cpp:5560 +msgid "Double wave length (GBA only)" +msgstr "" + +#: src/gui/insEdit.cpp:5589 src/gui/insEdit.cpp:5666 +msgid "Sound Length" +msgstr "" + +#: src/gui/insEdit.cpp:5592 src/gui/insEdit.cpp:5666 +msgid "Infinity" +msgstr "" + +#: src/gui/insEdit.cpp:5596 +msgid "Direction" +msgstr "" + +#: src/gui/insEdit.cpp:5599 src/gui/insEdit.cpp:5669 src/gui/insEdit.cpp:5697 +#: src/gui/insEdit.cpp:6008 src/gui/insEdit.cpp:6051 +msgid "Up" +msgstr "" + +#: src/gui/insEdit.cpp:5604 src/gui/insEdit.cpp:5674 src/gui/insEdit.cpp:5702 +#: src/gui/insEdit.cpp:6013 src/gui/insEdit.cpp:6056 +msgid "Down" +msgstr "" + +#: src/gui/insEdit.cpp:5620 src/gui/insEdit.cpp:5953 +msgid "Hardware Sequence" +msgstr "" + +#: src/gui/insEdit.cpp:5630 src/gui/insEdit.cpp:5963 +msgid "Tick" +msgstr "" + +#: src/gui/insEdit.cpp:5632 src/gui/insEdit.cpp:5965 +msgid "Command" +msgstr "" + +#: src/gui/insEdit.cpp:5634 src/gui/insEdit.cpp:5967 +msgid "Move/Remove" +msgstr "" + +#: src/gui/insEdit.cpp:5663 +msgid "Env Length" +msgstr "" + +#: src/gui/insEdit.cpp:5690 +msgid "Shift" +msgstr "" + +#: src/gui/insEdit.cpp:5717 src/gui/insEdit.cpp:6073 +msgid "Ticks" +msgstr "" + +#: src/gui/insEdit.cpp:5736 src/gui/insEdit.cpp:6092 src/gui/insEdit.cpp:6239 +msgid "Position" +msgstr "" + +#: src/gui/insEdit.cpp:5815 +msgid "tri" +msgstr "" + +#: src/gui/insEdit.cpp:5882 +msgid "Ring Modulation" +msgstr "" + +#: src/gui/insEdit.cpp:5886 +msgid "Oscillator Sync" +msgstr "" + +#: src/gui/insEdit.cpp:5890 +msgid "Enable filter" +msgstr "" + +#: src/gui/insEdit.cpp:5891 +msgid "Initialize filter" +msgstr "" + +#: src/gui/insEdit.cpp:5894 src/gui/insEdit.cpp:5897 src/gui/insEdit.cpp:6951 +#: src/gui/insEdit.cpp:7215 src/gui/insEdit.cpp:7476 +msgid "Cutoff" +msgstr "" + +#: src/gui/insEdit.cpp:5902 src/gui/insEdit.cpp:6408 src/gui/insEdit.cpp:6952 +#: src/gui/insEdit.cpp:7179 src/gui/insEdit.cpp:7477 +msgid "Filter Mode" +msgstr "" + +#: src/gui/insEdit.cpp:5931 src/gui/insEdit.cpp:7485 +msgid "Noise Mode" +msgstr "" + +#: src/gui/insEdit.cpp:5932 +msgid "Wave Mix Mode" +msgstr "" + +#: src/gui/insEdit.cpp:5935 +msgid "Absolute Cutoff Macro" +msgstr "" + +#: src/gui/insEdit.cpp:5939 +msgid "Absolute Duty Macro" +msgstr "" + +#: src/gui/insEdit.cpp:5945 +msgid "Don't test before new note" +msgstr "" + +#: src/gui/insEdit.cpp:5950 +msgid "Switch roles of frequency and phase reset timer" +msgstr "" + +#: src/gui/insEdit.cpp:5997 src/gui/insEdit.cpp:6040 +msgid "Period" +msgstr "" + +#: src/gui/insEdit.cpp:6002 src/gui/insEdit.cpp:6045 src/gui/insEdit.cpp:6892 +msgid "Amount" +msgstr "" + +#: src/gui/insEdit.cpp:6005 src/gui/insEdit.cpp:6048 +msgid "Bound" +msgstr "" + +#: src/gui/insEdit.cpp:6021 +msgid "Flip" +msgstr "" + +#: src/gui/insEdit.cpp:6210 +msgid "Load waveform" +msgstr "" + +#: src/gui/insEdit.cpp:6215 +msgid "" +"when enabled, a waveform will be loaded into RAM.\n" +"when disabled, only the offset and length change." +msgstr "" + +#: src/gui/insEdit.cpp:6219 +msgid "Waveform##WAVE" +msgstr "" + +#: src/gui/insEdit.cpp:6227 +msgid "Per-channel wave position/length" +msgstr "" + +#: src/gui/insEdit.cpp:6237 +msgid "Ch" +msgstr "" + +#: src/gui/insEdit.cpp:6286 +msgid "Compatibility mode" +msgstr "" + +#: src/gui/insEdit.cpp:6288 +msgid "" +"only use for compatibility with .dmf modules!\n" +"- initializes modulation table with first wavetable\n" +"- does not alter modulation parameters on instrument change" +msgstr "" + +#: src/gui/insEdit.cpp:6290 +msgid "Modulation depth" +msgstr "" + +#: src/gui/insEdit.cpp:6294 +msgid "Modulation speed" +msgstr "" + +#: src/gui/insEdit.cpp:6298 +msgid "Modulation table" +msgstr "" + +#: src/gui/insEdit.cpp:6347 +msgid "Set modulation table (channel 5 only)" +msgstr "" + +#: src/gui/insEdit.cpp:6411 src/gui/insEdit.cpp:7184 +msgid "Filter K1" +msgstr "" + +#: src/gui/insEdit.cpp:6413 src/gui/insEdit.cpp:7185 +msgid "Filter K2" +msgstr "" + +#: src/gui/insEdit.cpp:6417 +msgid "Envelope length" +msgstr "" + +#: src/gui/insEdit.cpp:6420 +msgid "Left Volume Ramp" +msgstr "" + +#: src/gui/insEdit.cpp:6422 +msgid "Right Volume Ramp" +msgstr "" + +#: src/gui/insEdit.cpp:6425 +msgid "Filter K1 Ramp" +msgstr "" + +#: src/gui/insEdit.cpp:6427 +msgid "Filter K2 Ramp" +msgstr "" + +#: src/gui/insEdit.cpp:6430 +msgid "K1 Ramp Slowdown" +msgstr "" + +#: src/gui/insEdit.cpp:6432 +msgid "K2 Ramp Slowdown" +msgstr "" + +#: src/gui/insEdit.cpp:6454 +msgid "Attack Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6460 +msgid "Decay 1 Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6466 +msgid "Decay Level" +msgstr "" + +#: src/gui/insEdit.cpp:6472 +msgid "Decay 2 Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6478 +msgid "Release Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6484 +msgid "Rate Correction" +msgstr "" + +#: src/gui/insEdit.cpp:6512 +msgid "LFO Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6523 +msgid "Use envelope" +msgstr "" + +#: src/gui/insEdit.cpp:6576 +msgid "Sustain/release mode:" +msgstr "" + +#: src/gui/insEdit.cpp:6577 +msgid "Direct (cut on release)" +msgstr "" + +#: src/gui/insEdit.cpp:6580 +msgid "Effective (linear decrease)" +msgstr "" + +#: src/gui/insEdit.cpp:6583 +msgid "Effective (exponential decrease)" +msgstr "" + +#: src/gui/insEdit.cpp:6586 +msgid "Delayed (write R on release)" +msgstr "" + +#: src/gui/insEdit.cpp:6596 src/gui/insEdit.cpp:6597 +msgid "Gain Mode" +msgstr "" + +#: src/gui/insEdit.cpp:6599 src/gui/insEdit.cpp:6600 src/gui/insEdit.cpp:7205 +msgid "Gain" +msgstr "" + +#: src/gui/insEdit.cpp:6633 +msgid "" +"using decrease modes will not produce any sound at all, unless you know what " +"you are doing.\n" +"it is recommended to use the Gain macro for decrease instead." +msgstr "" + +#: src/gui/insEdit.cpp:6703 +msgid "Enable synthesizer" +msgstr "" + +#: src/gui/insEdit.cpp:6721 +msgid "Single-waveform" +msgstr "" + +#: src/gui/insEdit.cpp:6730 +msgid "Dual-waveform" +msgstr "" + +#: src/gui/insEdit.cpp:6803 src/gui/insEdit.cpp:6812 +msgid "Wave 1" +msgstr "" + +#: src/gui/insEdit.cpp:6808 src/gui/insEdit.cpp:6823 +msgid "" +"waveform macro is controlling wave 1!\n" +"this value will be ineffective." +msgstr "" + +#: src/gui/insEdit.cpp:6829 +msgid "Wave 2" +msgstr "" + +#: src/gui/insEdit.cpp:6844 +msgid "Resume preview" +msgstr "" + +#: src/gui/insEdit.cpp:6846 +msgid "Pause preview" +msgstr "" + +#: src/gui/insEdit.cpp:6854 +msgid "Restart preview" +msgstr "" + +#: src/gui/insEdit.cpp:6874 +msgid "Copy to new wavetable" +msgstr "" + +#: src/gui/insEdit.cpp:6881 +msgid "Update Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6902 +msgid "Global" +msgstr "" + +#: src/gui/insEdit.cpp:6906 +msgid "" +"wavetable synthesizer disabled.\n" +"use the Waveform macro to set the wave for this instrument." +msgstr "" + +#: src/gui/insEdit.cpp:6912 +msgid "Macros" +msgstr "" + +#: src/gui/insEdit.cpp:6921 src/gui/insEdit.cpp:6929 src/gui/insEdit.cpp:6938 +#: src/gui/insEdit.cpp:6947 src/gui/insEdit.cpp:6962 src/gui/insEdit.cpp:6976 +#: src/gui/insEdit.cpp:6988 src/gui/insEdit.cpp:7001 src/gui/insEdit.cpp:7017 +#: src/gui/insEdit.cpp:7023 src/gui/insEdit.cpp:7033 src/gui/insEdit.cpp:7040 +#: src/gui/insEdit.cpp:7046 src/gui/insEdit.cpp:7059 src/gui/insEdit.cpp:7066 +#: src/gui/insEdit.cpp:7073 src/gui/insEdit.cpp:7082 src/gui/insEdit.cpp:7092 +#: src/gui/insEdit.cpp:7100 src/gui/insEdit.cpp:7106 src/gui/insEdit.cpp:7114 +#: src/gui/insEdit.cpp:7121 src/gui/insEdit.cpp:7127 src/gui/insEdit.cpp:7137 +#: src/gui/insEdit.cpp:7149 src/gui/insEdit.cpp:7157 src/gui/insEdit.cpp:7173 +#: src/gui/insEdit.cpp:7178 src/gui/insEdit.cpp:7191 src/gui/insEdit.cpp:7198 +#: src/gui/insEdit.cpp:7209 src/gui/insEdit.cpp:7222 src/gui/insEdit.cpp:7231 +#: src/gui/insEdit.cpp:7238 src/gui/insEdit.cpp:7246 src/gui/insEdit.cpp:7270 +#: src/gui/insEdit.cpp:7277 src/gui/insEdit.cpp:7285 src/gui/insEdit.cpp:7296 +#: src/gui/insEdit.cpp:7303 src/gui/insEdit.cpp:7311 src/gui/insEdit.cpp:7319 +#: src/gui/insEdit.cpp:7328 src/gui/insEdit.cpp:7336 src/gui/insEdit.cpp:7342 +#: src/gui/insEdit.cpp:7348 src/gui/insEdit.cpp:7354 src/gui/insEdit.cpp:7359 +#: src/gui/insEdit.cpp:7366 src/gui/insEdit.cpp:7373 src/gui/insEdit.cpp:7381 +#: src/gui/insEdit.cpp:7390 src/gui/insEdit.cpp:7398 src/gui/insEdit.cpp:7410 +#: src/gui/insEdit.cpp:7423 src/gui/insEdit.cpp:7434 src/gui/insEdit.cpp:7444 +#: src/gui/insEdit.cpp:7452 src/gui/insEdit.cpp:7462 src/gui/insEdit.cpp:7471 +msgid "Arpeggio" +msgstr "" + +#: src/gui/insEdit.cpp:6925 src/gui/insEdit.cpp:6932 src/gui/insEdit.cpp:6943 +#: src/gui/insEdit.cpp:6972 src/gui/insEdit.cpp:6984 src/gui/insEdit.cpp:6994 +#: src/gui/insEdit.cpp:7007 src/gui/insEdit.cpp:7054 src/gui/insEdit.cpp:7062 +#: src/gui/insEdit.cpp:7069 src/gui/insEdit.cpp:7088 src/gui/insEdit.cpp:7110 +#: src/gui/insEdit.cpp:7133 src/gui/insEdit.cpp:7144 src/gui/insEdit.cpp:7163 +#: src/gui/insEdit.cpp:7183 src/gui/insEdit.cpp:7194 src/gui/insEdit.cpp:7214 +#: src/gui/insEdit.cpp:7234 src/gui/insEdit.cpp:7242 src/gui/insEdit.cpp:7249 +#: src/gui/insEdit.cpp:7254 src/gui/insEdit.cpp:7260 src/gui/insEdit.cpp:7266 +#: src/gui/insEdit.cpp:7273 src/gui/insEdit.cpp:7281 src/gui/insEdit.cpp:7290 +#: src/gui/insEdit.cpp:7299 src/gui/insEdit.cpp:7307 src/gui/insEdit.cpp:7324 +#: src/gui/insEdit.cpp:7332 src/gui/insEdit.cpp:7338 src/gui/insEdit.cpp:7362 +#: src/gui/insEdit.cpp:7369 src/gui/insEdit.cpp:7377 src/gui/insEdit.cpp:7386 +#: src/gui/insEdit.cpp:7394 src/gui/insEdit.cpp:7402 src/gui/insEdit.cpp:7414 +#: src/gui/insEdit.cpp:7429 src/gui/insEdit.cpp:7440 src/gui/insEdit.cpp:7448 +#: src/gui/insEdit.cpp:7457 src/gui/insEdit.cpp:7475 +msgid "Phase Reset" +msgstr "" + +#: src/gui/insEdit.cpp:6939 src/gui/insEdit.cpp:7024 src/gui/insEdit.cpp:7210 +#: src/gui/insEdit.cpp:7247 +msgid "Duty/Noise" +msgstr "" + +#: src/gui/insEdit.cpp:6966 src/gui/insEdit.cpp:7288 +msgid "Surround" +msgstr "" + +#: src/gui/insEdit.cpp:6968 src/gui/insEdit.cpp:6981 src/gui/insEdit.cpp:7026 +#: src/gui/insEdit.cpp:7085 src/gui/insEdit.cpp:7141 src/gui/insEdit.cpp:7159 +#: src/gui/insEdit.cpp:7180 src/gui/insEdit.cpp:7201 src/gui/insEdit.cpp:7225 +#: src/gui/insEdit.cpp:7278 src/gui/insEdit.cpp:7304 src/gui/insEdit.cpp:7321 +#: src/gui/insEdit.cpp:7329 src/gui/insEdit.cpp:7374 src/gui/insEdit.cpp:7383 +#: src/gui/insEdit.cpp:7399 src/gui/insEdit.cpp:7411 src/gui/insEdit.cpp:7426 +#: src/gui/insEdit.cpp:7454 src/gui/insEdit.cpp:7464 +msgid "Panning (left)" +msgstr "" + +#: src/gui/insEdit.cpp:6969 src/gui/insEdit.cpp:6982 src/gui/insEdit.cpp:7027 +#: src/gui/insEdit.cpp:7086 src/gui/insEdit.cpp:7142 src/gui/insEdit.cpp:7160 +#: src/gui/insEdit.cpp:7181 src/gui/insEdit.cpp:7202 src/gui/insEdit.cpp:7226 +#: src/gui/insEdit.cpp:7279 src/gui/insEdit.cpp:7305 src/gui/insEdit.cpp:7322 +#: src/gui/insEdit.cpp:7330 src/gui/insEdit.cpp:7375 src/gui/insEdit.cpp:7384 +#: src/gui/insEdit.cpp:7400 src/gui/insEdit.cpp:7412 src/gui/insEdit.cpp:7427 +#: src/gui/insEdit.cpp:7455 src/gui/insEdit.cpp:7465 +msgid "Panning (right)" +msgstr "" + +#: src/gui/insEdit.cpp:6990 src/gui/insEdit.cpp:7003 src/gui/insEdit.cpp:7107 +#: src/gui/insEdit.cpp:7199 src/gui/insEdit.cpp:7239 src/gui/insEdit.cpp:7424 +msgid "Noise Freq" +msgstr "" + +#: src/gui/insEdit.cpp:6996 src/gui/insEdit.cpp:7010 src/gui/insEdit.cpp:7167 +msgid "AutoEnv Num" +msgstr "" + +#: src/gui/insEdit.cpp:6997 src/gui/insEdit.cpp:7011 src/gui/insEdit.cpp:7168 +msgid "AutoEnv Den" +msgstr "" + +#: src/gui/insEdit.cpp:7012 +msgid "Noise AND Mask" +msgstr "" + +#: src/gui/insEdit.cpp:7013 +msgid "Noise OR Mask" +msgstr "" + +#: src/gui/insEdit.cpp:7034 +msgid "On/Off" +msgstr "" + +#: src/gui/insEdit.cpp:7060 +msgid "Patch" +msgstr "" + +#: src/gui/insEdit.cpp:7076 +msgid "Mod Depth" +msgstr "" + +#: src/gui/insEdit.cpp:7077 +msgid "Mod Speed" +msgstr "" + +#: src/gui/insEdit.cpp:7078 +msgid "Mod Position" +msgstr "" + +#: src/gui/insEdit.cpp:7083 +msgid "Noise Length" +msgstr "" + +#: src/gui/insEdit.cpp:7093 +msgid "Wave Pos" +msgstr "" + +#: src/gui/insEdit.cpp:7096 +msgid "Wave Length" +msgstr "" + +#: src/gui/insEdit.cpp:7115 +msgid "AUDCTL" +msgstr "" + +#: src/gui/insEdit.cpp:7122 src/gui/insEdit.cpp:7343 +msgid "Pulse Width" +msgstr "" + +#: src/gui/insEdit.cpp:7139 +msgid "Duty/Int" +msgstr "" + +#: src/gui/insEdit.cpp:7145 src/gui/insEdit.cpp:7406 +msgid "Load LFSR" +msgstr "" + +#: src/gui/insEdit.cpp:7165 +msgid "Envelope Mode" +msgstr "" + +#: src/gui/insEdit.cpp:7218 +msgid "Phase Reset Timer" +msgstr "" + +#: src/gui/insEdit.cpp:7252 src/gui/insEdit.cpp:7259 +msgid "Freq Divider" +msgstr "" + +#: src/gui/insEdit.cpp:7255 +msgid "Clock Divider" +msgstr "" + +#: src/gui/insEdit.cpp:7264 +msgid "Global Volume" +msgstr "" + +#: src/gui/insEdit.cpp:7286 +msgid "Echo Level" +msgstr "" + +#: src/gui/insEdit.cpp:7291 +msgid "Echo Feedback" +msgstr "" + +#: src/gui/insEdit.cpp:7292 +msgid "Echo Length" +msgstr "" + +#: src/gui/insEdit.cpp:7312 +msgid "Group Ctrl" +msgstr "" + +#: src/gui/insEdit.cpp:7313 +msgid "Group Attack" +msgstr "" + +#: src/gui/insEdit.cpp:7314 +msgid "Group Decay" +msgstr "" + +#: src/gui/insEdit.cpp:7320 +msgid "Noise Type" +msgstr "" + +#: src/gui/insEdit.cpp:7367 +msgid "Square/Noise" +msgstr "" + +#: src/gui/insEdit.cpp:7404 +msgid "Tap A Location" +msgstr "" + +#: src/gui/insEdit.cpp:7405 +msgid "Tap B Location" +msgstr "" + +#: src/gui/insEdit.cpp:7416 +msgid "Portion A Length" +msgstr "" + +#: src/gui/insEdit.cpp:7417 +msgid "Portion B Length" +msgstr "" + +#: src/gui/insEdit.cpp:7418 +msgid "Portion A Offset" +msgstr "" + +#: src/gui/insEdit.cpp:7419 +msgid "Portion B Offset" +msgstr "" + +#: src/gui/insEdit.cpp:7463 +msgid "Parameter" +msgstr "" + +#: src/gui/insEdit.cpp:7467 +msgid "Load Value" +msgstr "" + +#: src/gui/insEdit.cpp:7479 +msgid "Filter Toggle" +msgstr "" + +#: src/gui/insEdit.cpp:7486 +msgid "Wave Mix" +msgstr "" + +#: src/gui/insEdit.cpp:7500 +msgid "Octave offset" +msgstr "" + +#: src/gui/insEdit.cpp:7505 +msgid "go to Macros for other parameters." +msgstr "" + +#: src/gui/insEdit.cpp:7521 +msgid "invalid instrument type! change it first." +msgstr "" + +#: src/gui/insEdit.cpp:7565 +msgid "clear contents" +msgstr "" + +#: src/gui/insEdit.cpp:7571 +msgid "offset..." +msgstr "" + +#: src/gui/insEdit.cpp:7572 src/gui/insEdit.cpp:7605 +msgid "X" +msgstr "" + +#: src/gui/insEdit.cpp:7573 src/gui/insEdit.cpp:7609 +msgid "Y" +msgstr "" + +#: src/gui/insEdit.cpp:7574 +msgid "offset" +msgstr "" + +#: src/gui/insEdit.cpp:7637 +msgid "Min" +msgstr "" + +#: src/gui/insEdit.cpp:7638 +msgid "Max" +msgstr "" diff --git a/po/ja.po b/po/ja.po new file mode 100644 index 000000000..2512bad15 --- /dev/null +++ b/po/ja.po @@ -0,0 +1,16019 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: furnace 0.6.3\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: src/engine/sysDef.cpp:428 src/engine/sysDef.cpp:441 +msgid "20xx: Set channel mode (bit 0: square; bit 1: noise; bit 2: envelope)" +msgstr "" + +#: src/engine/sysDef.cpp:429 +msgid "21xx: Set noise frequency (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:430 src/engine/sysDef.cpp:443 +msgid "22xy: Set envelope mode (x: shape, y: enable for this channel)" +msgstr "" + +#: src/engine/sysDef.cpp:431 src/engine/sysDef.cpp:444 +msgid "23xx: Set envelope period low byte" +msgstr "" + +#: src/engine/sysDef.cpp:432 src/engine/sysDef.cpp:445 +msgid "24xx: Set envelope period high byte" +msgstr "" + +#: src/engine/sysDef.cpp:433 src/engine/sysDef.cpp:446 +#: src/engine/sysDef.cpp:1599 +msgid "25xx: Envelope slide up" +msgstr "" + +#: src/engine/sysDef.cpp:434 src/engine/sysDef.cpp:447 +#: src/engine/sysDef.cpp:1600 +msgid "26xx: Envelope slide down" +msgstr "" + +#: src/engine/sysDef.cpp:435 src/engine/sysDef.cpp:448 +#: src/engine/sysDef.cpp:1601 +msgid "29xy: Set auto-envelope (x: numerator; y: denominator)" +msgstr "" + +#: src/engine/sysDef.cpp:436 src/engine/sysDef.cpp:449 +msgid "2Exx: Write to I/O port A" +msgstr "" + +#: src/engine/sysDef.cpp:437 src/engine/sysDef.cpp:450 +msgid "2Fxx: Write to I/O port B" +msgstr "" + +#: src/engine/sysDef.cpp:442 +msgid "21xx: Set noise frequency (0 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:451 +msgid "12xx: Set duty cycle (0 to 8)" +msgstr "" + +#: src/engine/sysDef.cpp:453 +msgid "27xx: Set noise AND mask" +msgstr "" + +#: src/engine/sysDef.cpp:454 +msgid "28xx: Set noise OR mask" +msgstr "" + +#: src/engine/sysDef.cpp:455 +msgid "" +"2Cxy: Automatic noise frequency (x: mode (0: disable, 1: freq, 2: freq + OR " +"mask); y: offset)" +msgstr "" + +#: src/engine/sysDef.cpp:456 +msgid "2Dxx: NOT TO BE EMPLOYED BY THE COMPOSER" +msgstr "" + +#: src/engine/sysDef.cpp:460 +msgid "30xx: Toggle hard envelope reset on new notes" +msgstr "" + +#: src/engine/sysDef.cpp:465 +msgid "18xx: Toggle extended channel 3 mode" +msgstr "" + +#: src/engine/sysDef.cpp:470 src/engine/sysDef.cpp:766 +#: src/engine/sysDef.cpp:1025 src/engine/sysDef.cpp:1272 +#: src/engine/sysDef.cpp:1593 +msgid "17xx: Toggle PCM mode (LEGACY)" +msgstr "" + +#: src/engine/sysDef.cpp:471 src/engine/sysDef.cpp:1653 +#: src/engine/sysDef.cpp:1963 +msgid "DFxx: Set sample playback direction (0: normal; 1: reverse)" +msgstr "" + +#: src/engine/sysDef.cpp:476 +msgid "18xx: Toggle drums mode (1: enabled; 0: disabled)" +msgstr "" + +#: src/engine/sysDef.cpp:480 src/engine/sysDef.cpp:554 +#: src/engine/sysDef.cpp:575 +msgid "11xx: Set feedback (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:481 +msgid "12xx: Set level of operator 1 (0 highest, 7F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:482 +msgid "13xx: Set level of operator 2 (0 highest, 7F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:483 +msgid "14xx: Set level of operator 3 (0 highest, 7F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:484 +msgid "15xx: Set level of operator 4 (0 highest, 7F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:485 src/engine/sysDef.cpp:580 +#: src/engine/sysDef.cpp:635 +msgid "16xy: Set operator multiplier (x: operator from 1 to 4; y: multiplier)" +msgstr "" + +#: src/engine/sysDef.cpp:486 +msgid "19xx: Set attack of all operators (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:487 +msgid "1Axx: Set attack of operator 1 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:488 +msgid "1Bxx: Set attack of operator 2 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:489 +msgid "1Cxx: Set attack of operator 3 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:490 +msgid "1Dxx: Set attack of operator 4 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:491 src/engine/sysDef.cpp:588 +#: src/engine/sysDef.cpp:656 +msgid "50xy: Set AM (x: operator from 1 to 4 (0 for all ops); y: AM)" +msgstr "" + +#: src/engine/sysDef.cpp:492 src/engine/sysDef.cpp:589 +#: src/engine/sysDef.cpp:657 +msgid "" +"51xy: Set sustain level (x: operator from 1 to 4 (0 for all ops); y: sustain)" +msgstr "" + +#: src/engine/sysDef.cpp:493 src/engine/sysDef.cpp:590 +#: src/engine/sysDef.cpp:658 +msgid "52xy: Set release (x: operator from 1 to 4 (0 for all ops); y: release)" +msgstr "" + +#: src/engine/sysDef.cpp:494 +msgid "" +"53xy: Set detune (x: operator from 1 to 4 (0 for all ops); y: detune where 3 " +"is center)" +msgstr "" + +#: src/engine/sysDef.cpp:495 src/engine/sysDef.cpp:592 +#: src/engine/sysDef.cpp:660 +msgid "" +"54xy: Set envelope scale (x: operator from 1 to 4 (0 for all ops); y: scale " +"from 0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:496 +msgid "56xx: Set decay of all operators (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:497 +msgid "57xx: Set decay of operator 1 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:498 +msgid "58xx: Set decay of operator 2 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:499 +msgid "59xx: Set decay of operator 3 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:500 +msgid "5Axx: Set decay of operator 4 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:501 +msgid "5Bxx: Set decay 2 of all operators (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:502 +msgid "5Cxx: Set decay 2 of operator 1 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:503 +msgid "5Dxx: Set decay 2 of operator 2 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:504 +msgid "5Exx: Set decay 2 of operator 3 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:505 +msgid "5Fxx: Set decay 2 of operator 4 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:510 +msgid "10xx: Set noise frequency (xx: value; 0 disables noise)" +msgstr "" + +#: src/engine/sysDef.cpp:511 +msgid "17xx: Set LFO speed" +msgstr "" + +#: src/engine/sysDef.cpp:512 +msgid "18xx: Set LFO waveform (0 saw, 1 square, 2 triangle, 3 noise)" +msgstr "" + +#: src/engine/sysDef.cpp:513 +msgid "1Exx: Set AM depth (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:514 +msgid "1Fxx: Set PM depth (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:515 +msgid "" +"55xy: Set detune 2 (x: operator from 1 to 4 (0 for all ops); y: detune from " +"0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:520 +msgid "24xx: Set LFO 2 speed" +msgstr "" + +#: src/engine/sysDef.cpp:521 +msgid "25xx: Set LFO 2 waveform (0 saw, 1 square, 2 triangle, 3 noise)" +msgstr "" + +#: src/engine/sysDef.cpp:522 +msgid "26xx: Set AM 2 depth (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:523 +msgid "27xx: Set PM 2 depth (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:524 +msgid "" +"28xy: Set reverb (x: operator from 1 to 4 (0 for all ops); y: reverb from 0 " +"to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:525 src/engine/sysDef.cpp:650 +msgid "" +"2Axy: Set waveform (x: operator from 1 to 4 (0 for all ops); y: waveform " +"from 0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:526 +msgid "" +"2Bxy: Set envelope generator shift (x: operator from 1 to 4 (0 for all ops); " +"y: shift from 0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:527 +msgid "" +"2Cxy: Set fine multiplier (x: operator from 1 to 4 (0 for all ops); y: fine)" +msgstr "" + +#: src/engine/sysDef.cpp:530 +msgid "" +"3xyy: Set fixed frequency of operator 1 (x: octave from 0 to 7; y: frequency)" +msgstr "" + +#: src/engine/sysDef.cpp:531 +msgid "" +"3xyy: Set fixed frequency of operator 2 (x: octave from 8 to F; y: frequency)" +msgstr "" + +#: src/engine/sysDef.cpp:532 +msgid "" +"4xyy: Set fixed frequency of operator 3 (x: octave from 0 to 7; y: frequency)" +msgstr "" + +#: src/engine/sysDef.cpp:533 +msgid "" +"4xyy: Set fixed frequency of operator 4 (x: octave from 8 to F; y: frequency)" +msgstr "" + +#: src/engine/sysDef.cpp:540 +msgid "10xy: Setup LFO (x: enable; y: speed)" +msgstr "" + +#: src/engine/sysDef.cpp:541 +msgid "" +"55xy: Set SSG envelope (x: operator from 1 to 4 (0 for all ops); y: 0-7 on, " +"8 off)" +msgstr "" + +#: src/engine/sysDef.cpp:549 +msgid "1Fxx: Set ADPCM-A global volume (0 to 3F)" +msgstr "" + +#: src/engine/sysDef.cpp:553 +msgid "10xx: Set patch (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:555 src/engine/sysDef.cpp:576 +#: src/engine/sysDef.cpp:631 +msgid "12xx: Set level of operator 1 (0 highest, 3F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:556 src/engine/sysDef.cpp:577 +#: src/engine/sysDef.cpp:632 +msgid "13xx: Set level of operator 2 (0 highest, 3F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:557 +msgid "16xy: Set operator multiplier (x: operator from 1 to 2; y: multiplier)" +msgstr "" + +#: src/engine/sysDef.cpp:558 src/engine/sysDef.cpp:582 +#: src/engine/sysDef.cpp:637 +msgid "19xx: Set attack of all operators (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:559 src/engine/sysDef.cpp:583 +#: src/engine/sysDef.cpp:638 +msgid "1Axx: Set attack of operator 1 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:560 src/engine/sysDef.cpp:584 +#: src/engine/sysDef.cpp:639 +msgid "1Bxx: Set attack of operator 2 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:561 +msgid "50xy: Set AM (x: operator from 1 to 2 (0 for all ops); y: AM)" +msgstr "" + +#: src/engine/sysDef.cpp:562 +msgid "" +"51xy: Set sustain level (x: operator from 1 to 2 (0 for all ops); y: sustain)" +msgstr "" + +#: src/engine/sysDef.cpp:563 +msgid "52xy: Set release (x: operator from 1 to 2 (0 for all ops); y: release)" +msgstr "" + +#: src/engine/sysDef.cpp:564 +msgid "53xy: Set vibrato (x: operator from 1 to 2 (0 for all ops); y: enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:565 +msgid "" +"54xy: Set envelope scale (x: operator from 1 to 2 (0 for all ops); y: scale " +"from 0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:566 +msgid "" +"55xy: Set envelope sustain (x: operator from 1 to 2 (0 for all ops); y: " +"enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:567 src/engine/sysDef.cpp:594 +#: src/engine/sysDef.cpp:662 +msgid "56xx: Set decay of all operators (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:568 src/engine/sysDef.cpp:595 +#: src/engine/sysDef.cpp:663 +msgid "57xx: Set decay of operator 1 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:569 src/engine/sysDef.cpp:596 +#: src/engine/sysDef.cpp:664 +msgid "58xx: Set decay of operator 2 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:570 +msgid "" +"5Bxy: Set whether key will scale envelope (x: operator from 1 to 2 (0 for " +"all ops); y: enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:574 +msgid "10xx: Set global AM depth (0: 1dB, 1: 4.8dB)" +msgstr "" + +#: src/engine/sysDef.cpp:578 src/engine/sysDef.cpp:633 +msgid "14xx: Set level of operator 3 (0 highest, 3F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:579 src/engine/sysDef.cpp:634 +msgid "15xx: Set level of operator 4 (0 highest, 3F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:581 +msgid "17xx: Set global vibrato depth (0: normal, 1: double)" +msgstr "" + +#: src/engine/sysDef.cpp:585 src/engine/sysDef.cpp:640 +msgid "1Cxx: Set attack of operator 3 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:586 src/engine/sysDef.cpp:641 +msgid "1Dxx: Set attack of operator 4 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:587 +msgid "" +"2Axy: Set waveform (x: operator from 1 to 4 (0 for all ops); y: waveform " +"from 0 to 3 in OPL2 and 0 to 7 in OPL3)" +msgstr "" + +#: src/engine/sysDef.cpp:591 src/engine/sysDef.cpp:659 +msgid "53xy: Set vibrato (x: operator from 1 to 4 (0 for all ops); y: enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:593 src/engine/sysDef.cpp:661 +msgid "" +"55xy: Set envelope sustain (x: operator from 1 to 4 (0 for all ops); y: " +"enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:597 src/engine/sysDef.cpp:665 +msgid "59xx: Set decay of operator 3 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:598 src/engine/sysDef.cpp:666 +msgid "5Axx: Set decay of operator 4 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:599 src/engine/sysDef.cpp:667 +msgid "" +"5Bxy: Set whether key will scale envelope (x: operator from 1 to 4 (0 for " +"all ops); y: enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:603 src/engine/sysDef.cpp:680 +msgid "" +"10xx: Set waveform (bit 0: triangle; bit 1: saw; bit 2: pulse; bit 3: noise)" +msgstr "" + +#: src/engine/sysDef.cpp:604 +msgid "11xx: Set coarse cutoff (not recommended; use 4xxx instead)" +msgstr "" + +#: src/engine/sysDef.cpp:605 +msgid "12xx: Set coarse pulse width (not recommended; use 3xxx instead)" +msgstr "" + +#: src/engine/sysDef.cpp:606 +msgid "13xx: Set resonance (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:607 +msgid "" +"14xx: Set filter mode (bit 0: low pass; bit 1: band pass; bit 2: high pass)" +msgstr "" + +#: src/engine/sysDef.cpp:608 +msgid "15xx: Set envelope reset time" +msgstr "" + +#: src/engine/sysDef.cpp:609 +msgid "1Axx: Disable envelope reset for this channel (1 disables; 0 enables)" +msgstr "" + +#: src/engine/sysDef.cpp:610 +msgid "1Bxy: Reset cutoff (x: on new note; y: now)" +msgstr "" + +#: src/engine/sysDef.cpp:611 +msgid "1Cxy: Reset pulse width (x: on new note; y: now)" +msgstr "" + +#: src/engine/sysDef.cpp:612 +msgid "1Exy: Change other parameters (LEGACY)" +msgstr "" + +#: src/engine/sysDef.cpp:613 +msgid "20xy: Set attack/decay (x: attack; y: decay)" +msgstr "" + +#: src/engine/sysDef.cpp:614 +msgid "21xy: Set sustain/release (x: sustain; y: release)" +msgstr "" + +#: src/engine/sysDef.cpp:616 src/engine/sysDef.cpp:688 +msgid "3xxx: Set pulse width (0 to FFF)" +msgstr "" + +#: src/engine/sysDef.cpp:617 +msgid "4xxx: Set cutoff (0 to 7FF)" +msgstr "" + +#: src/engine/sysDef.cpp:622 src/engine/sysDef.cpp:745 +#: src/engine/sysDef.cpp:762 src/engine/sysDef.cpp:1000 +#: src/engine/sysDef.cpp:1050 src/engine/sysDef.cpp:1268 +#: src/engine/sysDef.cpp:1320 src/engine/sysDef.cpp:1590 +#: src/engine/sysDef.cpp:1788 src/engine/sysDef.cpp:1792 +#: src/engine/sysDef.cpp:1893 src/engine/sysDef.cpp:2063 +#: src/engine/sysDef.cpp:2077 +msgid "10xx: Set waveform" +msgstr "" + +#: src/engine/sysDef.cpp:626 +msgid "20xx: Set PCM frequency" +msgstr "" + +#: src/engine/sysDef.cpp:630 +msgid "" +"10xy: Set AM depth (x: operator from 1 to 4 (0 for all ops); y: depth (0: " +"1dB, 1: 4.8dB))" +msgstr "" + +#: src/engine/sysDef.cpp:636 +msgid "" +"17xy: Set vibrato depth (x: operator from 1 to 4 (0 for all ops); y: depth " +"(0: normal, 1: double))" +msgstr "" + +#: src/engine/sysDef.cpp:642 +msgid "20xy: Set panning of operator 1 (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:643 +msgid "21xy: Set panning of operator 2 (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:644 +msgid "22xy: Set panning of operator 3 (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:645 +msgid "23xy: Set panning of operator 4 (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:646 +msgid "" +"24xy: Set output level register (x: operator from 1 to 4 (0 for all ops); y: " +"level from 0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:647 +msgid "" +"25xy: Set modulation input level (x: operator from 1 to 4 (0 for all ops); " +"y: level from 0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:648 +msgid "" +"26xy: Set envelope delay (x: operator from 1 to 4 (0 for all ops); y: delay " +"from 0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:649 +msgid "27xx: Set noise mode for operator 4 (x: mode from 0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:651 +msgid "" +"2Fxy: Set fixed frequency block (x: operator from 1 to 4; y: octave from 0 " +"to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:652 +msgid "40xx: Set detune of operator 1 (80: center)" +msgstr "" + +#: src/engine/sysDef.cpp:653 +msgid "41xx: Set detune of operator 2 (80: center)" +msgstr "" + +#: src/engine/sysDef.cpp:654 +msgid "42xx: Set detune of operator 3 (80: center)" +msgstr "" + +#: src/engine/sysDef.cpp:655 +msgid "43xx: Set detune of operator 4 (80: center)" +msgstr "" + +#: src/engine/sysDef.cpp:670 +msgid "" +"3xyy: Set fixed frequency F-num of operator 1 (x: high 2 bits from 0 to 3; " +"y: low 8 bits of F-num)" +msgstr "" + +#: src/engine/sysDef.cpp:671 +msgid "" +"3xyy: Set fixed frequency F-num of operator 2 (x: high 2 bits from 4 to 7; " +"y: low 8 bits of F-num)" +msgstr "" + +#: src/engine/sysDef.cpp:672 +msgid "" +"3xyy: Set fixed frequency F-num of operator 3 (x: high 2 bits from 8 to B; " +"y: low 8 bits of F-num)" +msgstr "" + +#: src/engine/sysDef.cpp:673 +msgid "" +"3xyy: Set fixed frequency F-num of operator 4 (x: high 2 bits from C to F; " +"y: low 8 bits of F-num)" +msgstr "" + +#: src/engine/sysDef.cpp:681 +msgid "11xx: Set resonance (0 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:682 +msgid "" +"12xx: Set filter mode (bit 0: low pass; bit 1: band pass; bit 2: high pass)" +msgstr "" + +#: src/engine/sysDef.cpp:683 +msgid "13xx: Disable envelope reset for this channel (1 disables; 0 enables)" +msgstr "" + +#: src/engine/sysDef.cpp:684 +msgid "14xy: Reset cutoff (x: on new note; y: now)" +msgstr "" + +#: src/engine/sysDef.cpp:685 +msgid "15xy: Reset pulse width (x: on new note; y: now)" +msgstr "" + +#: src/engine/sysDef.cpp:686 +msgid "16xy: Change other parameters" +msgstr "" + +#: src/engine/sysDef.cpp:689 src/engine/sysDef.cpp:1733 +msgid "4xxx: Set cutoff (0 to FFF)" +msgstr "" + +#: src/engine/sysDef.cpp:697 +msgid "Yamaha YMU759 (MA-2)" +msgstr "" + +#: src/engine/sysDef.cpp:698 +msgid "" +"a chip which found its way inside mobile phones in the 2000's.\n" +"as proprietary as it is, it passed away after losing to MP3 in the mobile " +"hardware battle." +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:807 src/engine/sysDef.cpp:819 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:915 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1237 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1314 src/engine/sysDef.cpp:1356 +#: src/engine/sysDef.cpp:1396 src/engine/sysDef.cpp:1499 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1572 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1608 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1799 src/engine/sysDef.cpp:1810 +#: src/engine/sysDef.cpp:1821 src/engine/sysDef.cpp:1832 +#: src/engine/sysDef.cpp:1900 src/engine/sysDef.cpp:1910 +#: src/engine/sysDef.cpp:1920 src/engine/sysDef.cpp:1944 +#: src/engine/sysDef.cpp:1957 src/engine/sysDef.cpp:1970 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2037 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2122 +#: src/engine/sysDef.cpp:2138 src/engine/sysDef.cpp:2150 +msgid "Channel 1" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:807 src/engine/sysDef.cpp:819 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:915 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1237 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1314 src/engine/sysDef.cpp:1356 +#: src/engine/sysDef.cpp:1396 src/engine/sysDef.cpp:1499 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1572 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1608 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1799 src/engine/sysDef.cpp:1810 +#: src/engine/sysDef.cpp:1821 src/engine/sysDef.cpp:1832 +#: src/engine/sysDef.cpp:1900 src/engine/sysDef.cpp:1910 +#: src/engine/sysDef.cpp:1920 src/engine/sysDef.cpp:1944 +#: src/engine/sysDef.cpp:1957 src/engine/sysDef.cpp:1970 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2037 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2122 +#: src/engine/sysDef.cpp:2138 src/engine/sysDef.cpp:2150 +msgid "Channel 2" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:807 src/engine/sysDef.cpp:819 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1237 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1314 +#: src/engine/sysDef.cpp:1356 src/engine/sysDef.cpp:1396 +#: src/engine/sysDef.cpp:1499 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1572 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1799 src/engine/sysDef.cpp:1810 +#: src/engine/sysDef.cpp:1821 src/engine/sysDef.cpp:1832 +#: src/engine/sysDef.cpp:1910 src/engine/sysDef.cpp:1944 +#: src/engine/sysDef.cpp:1957 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2037 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +#: src/engine/sysDef.cpp:2122 src/engine/sysDef.cpp:2138 +#: src/engine/sysDef.cpp:2150 +msgid "Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1237 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1314 +#: src/engine/sysDef.cpp:1356 src/engine/sysDef.cpp:1396 +#: src/engine/sysDef.cpp:1499 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1572 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1910 +#: src/engine/sysDef.cpp:1944 src/engine/sysDef.cpp:1957 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +#: src/engine/sysDef.cpp:2122 src/engine/sysDef.cpp:2150 +msgid "Channel 4" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1314 +#: src/engine/sysDef.cpp:1356 src/engine/sysDef.cpp:1396 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1572 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1705 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 5" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1356 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 6" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 7" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 8" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 9" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 10" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 11" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 12" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 13" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 14" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 15" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 16" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:700 +#: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1767 src/engine/sysDef.cpp:1888 +#: src/engine/sysDef.cpp:1944 src/engine/sysDef.cpp:1945 +#: src/gui/settings.cpp:4094 +msgid "PCM" +msgstr "" + +#: src/engine/sysDef.cpp:706 +msgid "Sega Genesis/Mega Drive" +msgstr "" + +#: src/engine/sysDef.cpp:712 +msgid "Sega Genesis Extended Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:718 src/gui/sysConf.cpp:158 +msgid "TI SN76489" +msgstr "" + +#: src/engine/sysDef.cpp:719 +msgid "" +"a square/noise sound chip found on the Sega Master System, ColecoVision, " +"Tandy, TI's own 99/4A and a few other places." +msgstr "" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 +msgid "Square 1" +msgstr "" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 +msgid "Square 2" +msgstr "" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 +msgid "Square 3" +msgstr "" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:739 +#: src/engine/sysDef.cpp:773 src/engine/sysDef.cpp:955 +#: src/engine/sysDef.cpp:1314 src/engine/sysDef.cpp:1874 +#: src/engine/sysDef.cpp:1920 src/engine/sysDef.cpp:2037 +#: src/engine/sysDef.cpp:2100 src/gui/settings.cpp:4093 +#: src/gui/insEdit.cpp:6978 src/gui/insEdit.cpp:7129 src/gui/insEdit.cpp:7223 +#: src/gui/insEdit.cpp:7315 +msgid "Noise" +msgstr "" + +#: src/engine/sysDef.cpp:726 +msgid "20xy: Set noise mode (x: preset freq/ch3 freq; y: thin pulse/noise)" +msgstr "" + +#: src/engine/sysDef.cpp:731 +msgid "Sega Master System + FM Expansion" +msgstr "" + +#: src/engine/sysDef.cpp:737 src/gui/settings.cpp:4025 +msgid "Game Boy" +msgstr "" + +#: src/engine/sysDef.cpp:738 +msgid "the most popular portable game console of the era." +msgstr "" + +#: src/engine/sysDef.cpp:739 src/engine/sysDef.cpp:773 +#: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:2100 +msgid "Pulse 1" +msgstr "" + +#: src/engine/sysDef.cpp:739 src/engine/sysDef.cpp:773 +#: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:2100 +msgid "Pulse 2" +msgstr "" + +#: src/engine/sysDef.cpp:739 src/gui/settings.cpp:3930 +#: src/gui/guiConst.cpp:1395 src/gui/insEdit.cpp:6652 +msgid "Wavetable" +msgstr "" + +#: src/engine/sysDef.cpp:746 +msgid "11xx: Set noise length (0: long; 1: short)" +msgstr "" + +#: src/engine/sysDef.cpp:747 +msgid "12xx: Set duty cycle (0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:748 +msgid "13xy: Setup sweep (x: time; y: shift)" +msgstr "" + +#: src/engine/sysDef.cpp:749 +msgid "14xx: Set sweep direction (0: up; 1: down)" +msgstr "" + +#: src/engine/sysDef.cpp:754 +msgid "PC Engine/TurboGrafx-16" +msgstr "" + +#: src/engine/sysDef.cpp:755 +msgid "an '80s game console with a wavetable sound chip, popular in Japan." +msgstr "" + +#: src/engine/sysDef.cpp:763 src/engine/sysDef.cpp:1001 +#: src/engine/sysDef.cpp:1793 +msgid "11xx: Toggle noise mode" +msgstr "" + +#: src/engine/sysDef.cpp:764 +msgid "12xx: Setup LFO (0: disabled; 1: 1x depth; 2: 16x depth; 3: 256x depth)" +msgstr "" + +#: src/engine/sysDef.cpp:765 +msgid "13xx: Set LFO speed" +msgstr "" + +#: src/engine/sysDef.cpp:771 +msgid "NES (Ricoh 2A03)" +msgstr "" + +#: src/engine/sysDef.cpp:772 +msgid "" +"also known as Famicom in Japan, it's the most well-known game console of the " +"'80s." +msgstr "" + +#: src/engine/sysDef.cpp:773 src/gui/waveEdit.cpp:31 src/gui/waveEdit.cpp:217 +#: src/gui/insEdit.cpp:200 src/gui/insEdit.cpp:324 src/gui/insEdit.cpp:658 +msgid "Triangle" +msgstr "" + +#: src/engine/sysDef.cpp:773 src/engine/sysDef.cpp:2100 +#: src/gui/insEdit.cpp:2629 +msgid "DPCM" +msgstr "" + +#: src/engine/sysDef.cpp:779 src/engine/sysDef.cpp:2106 +msgid "11xx: Write to delta modulation counter (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:780 src/engine/sysDef.cpp:1068 +msgid "12xx: Set duty cycle/noise mode (pulse: 0 to 3; noise: 0 or 1)" +msgstr "" + +#: src/engine/sysDef.cpp:781 src/engine/sysDef.cpp:2108 +msgid "13xy: Sweep up (x: time; y: shift)" +msgstr "" + +#: src/engine/sysDef.cpp:782 src/engine/sysDef.cpp:2109 +msgid "14xy: Sweep down (x: time; y: shift)" +msgstr "" + +#: src/engine/sysDef.cpp:783 src/engine/sysDef.cpp:2110 +msgid "" +"15xx: Set envelope mode (0: envelope, 1: length, 2: looping, 3: constant)" +msgstr "" + +#: src/engine/sysDef.cpp:784 src/engine/sysDef.cpp:2111 +msgid "16xx: Set length counter (refer to manual for a list of values)" +msgstr "" + +#: src/engine/sysDef.cpp:785 src/engine/sysDef.cpp:2112 +msgid "17xx: Set frame counter mode (0: 4-step, 1: 5-step)" +msgstr "" + +#: src/engine/sysDef.cpp:786 src/engine/sysDef.cpp:2113 +msgid "18xx: Select PCM/DPCM mode (0: PCM; 1: DPCM)" +msgstr "" + +#: src/engine/sysDef.cpp:787 src/engine/sysDef.cpp:2114 +msgid "19xx: Set triangle linear counter (0 to 7F; 80 and higher halt)" +msgstr "" + +#: src/engine/sysDef.cpp:788 src/engine/sysDef.cpp:2115 +msgid "20xx: Set DPCM frequency (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:793 +msgid "NES + Konami VRC7" +msgstr "" + +#: src/engine/sysDef.cpp:799 +msgid "Famicom Disk System" +msgstr "" + +#: src/engine/sysDef.cpp:805 +msgid "Commodore 64 (SID 6581)" +msgstr "" + +#: src/engine/sysDef.cpp:806 +msgid "" +"this computer is powered by the SID chip, which had synthesizer features " +"like a filter and ADSR." +msgstr "" + +#: src/engine/sysDef.cpp:817 +msgid "Commodore 64 (SID 8580)" +msgstr "" + +#: src/engine/sysDef.cpp:818 +msgid "" +"this computer is powered by the SID chip, which had synthesizer features " +"like a filter and ADSR.\n" +"this is the newer revision of the chip." +msgstr "" + +#: src/engine/sysDef.cpp:829 +msgid "DefleCade" +msgstr "" + +#: src/engine/sysDef.cpp:835 +msgid "Neo Geo CD" +msgstr "" + +#: src/engine/sysDef.cpp:836 +msgid "" +"like Neo Geo, but lacking the ADPCM-B channel since they couldn't connect " +"the pins." +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1173 +#: src/engine/sysDef.cpp:1185 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1443 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +#: src/engine/sysDef.cpp:2006 +msgid "FM 1" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:891 +#: src/engine/sysDef.cpp:903 src/engine/sysDef.cpp:1032 +#: src/engine/sysDef.cpp:1097 src/engine/sysDef.cpp:1109 +#: src/engine/sysDef.cpp:1122 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1546 +#: src/engine/sysDef.cpp:1559 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:1693 src/engine/sysDef.cpp:1849 +#: src/engine/sysDef.cpp:1861 src/engine/sysDef.cpp:2006 +msgid "FM 2" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1173 +#: src/engine/sysDef.cpp:1185 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1443 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:2006 +msgid "FM 3" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1546 +#: src/engine/sysDef.cpp:1559 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:1693 src/engine/sysDef.cpp:1849 +#: src/engine/sysDef.cpp:1861 src/engine/sysDef.cpp:2006 +msgid "FM 4" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:862 src/engine/sysDef.cpp:927 +#: src/engine/sysDef.cpp:943 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "PSG 1" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:862 src/engine/sysDef.cpp:927 +#: src/engine/sysDef.cpp:943 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "PSG 2" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:862 src/engine/sysDef.cpp:927 +#: src/engine/sysDef.cpp:943 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "PSG 3" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 1" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 2" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 3" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 4" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 5" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 6" +msgstr "" + +#: src/engine/sysDef.cpp:847 +msgid "Neo Geo CD Extended Channel 2" +msgstr "" + +#: src/engine/sysDef.cpp:848 +msgid "" +"like Neo Geo, but lacking the ADPCM-B channel since they couldn't connect " +"the pins.\n" +"this one is in Extended Channel mode, which turns the second FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP1" +msgstr "" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP2" +msgstr "" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP3" +msgstr "" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP4" +msgstr "" + +#: src/engine/sysDef.cpp:860 src/gui/sysConf.cpp:913 +msgid "AY-3-8910" +msgstr "" + +#: src/engine/sysDef.cpp:861 +msgid "" +"this chip is everywhere! ZX Spectrum, MSX, Amstrad CPC, Intellivision, " +"Vectrex...\n" +"the discovery of envelope bass helped it beat the SN76489 with ease." +msgstr "" + +#: src/engine/sysDef.cpp:872 +msgid "Amiga" +msgstr "" + +#: src/engine/sysDef.cpp:873 +msgid "" +"a computer from the '80s with full sampling capabilities, giving it a sound " +"ahead of its time." +msgstr "" + +#: src/engine/sysDef.cpp:881 +msgid "10xx: Toggle filter (0 disables; 1 enables)" +msgstr "" + +#: src/engine/sysDef.cpp:882 +msgid "11xx: Toggle AM with next channel" +msgstr "" + +#: src/engine/sysDef.cpp:883 +msgid "12xx: Toggle period modulation with next channel" +msgstr "" + +#: src/engine/sysDef.cpp:884 +msgid "13xx: Set waveform" +msgstr "" + +#: src/engine/sysDef.cpp:889 +msgid "Yamaha YM2151 (OPM)" +msgstr "" + +#: src/engine/sysDef.cpp:890 +msgid "" +"this was Yamaha's first integrated FM chip.\n" +"it was used in several synthesizers, computers and arcade boards." +msgstr "" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1279 src/engine/sysDef.cpp:1332 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1370 +#: src/engine/sysDef.cpp:1383 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +#: src/engine/sysDef.cpp:2006 +msgid "FM 5" +msgstr "" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:2006 +msgid "FM 6" +msgstr "" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:1032 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1279 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:2006 +msgid "FM 7" +msgstr "" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:1032 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:2006 +msgid "FM 8" +msgstr "" + +#: src/engine/sysDef.cpp:901 +msgid "Yamaha YM2612 (OPN2)" +msgstr "" + +#: src/engine/sysDef.cpp:902 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer)." +msgstr "" + +#: src/engine/sysDef.cpp:913 +msgid "Atari TIA" +msgstr "" + +#: src/engine/sysDef.cpp:914 +msgid "" +"it's a challenge to make music on this chip which barely has musical " +"capabilities..." +msgstr "" + +#: src/engine/sysDef.cpp:925 +msgid "Philips SAA1099" +msgstr "" + +#: src/engine/sysDef.cpp:926 +msgid "" +"supposedly an upgrade from the AY-3-8910, this was present on the Creative " +"Music System (Game Blaster) and SAM Coupé." +msgstr "" + +#: src/engine/sysDef.cpp:927 +msgid "PSG 4" +msgstr "" + +#: src/engine/sysDef.cpp:927 +msgid "PSG 5" +msgstr "" + +#: src/engine/sysDef.cpp:927 +msgid "PSG 6" +msgstr "" + +#: src/engine/sysDef.cpp:934 +msgid "10xy: Set channel mode (x: noise; y: tone)" +msgstr "" + +#: src/engine/sysDef.cpp:935 +msgid "11xx: Set noise frequency" +msgstr "" + +#: src/engine/sysDef.cpp:936 +msgid "12xx: Setup envelope (refer to docs for more information)" +msgstr "" + +#: src/engine/sysDef.cpp:941 +msgid "Microchip AY8930" +msgstr "" + +#: src/engine/sysDef.cpp:942 +msgid "" +"an improved version of the AY-3-8910 with a bigger frequency range, duty " +"cycles, configurable noise and per-channel envelopes!" +msgstr "" + +#: src/engine/sysDef.cpp:953 +msgid "Commodore VIC-20" +msgstr "" + +#: src/engine/sysDef.cpp:954 +msgid "" +"Commodore's successor to the PET.\n" +"its square wave channels are more than just square..." +msgstr "" + +#: src/engine/sysDef.cpp:955 src/gui/settings.cpp:136 src/gui/settings.cpp:206 +#: src/gui/settings.cpp:3970 +msgid "Low" +msgstr "" + +#: src/engine/sysDef.cpp:955 +msgid "Mid" +msgstr "" + +#: src/engine/sysDef.cpp:955 src/gui/settings.cpp:135 src/gui/settings.cpp:208 +#: src/gui/settings.cpp:3971 +msgid "High" +msgstr "" + +#: src/engine/sysDef.cpp:964 +msgid "Commodore PET" +msgstr "" + +#: src/engine/sysDef.cpp:965 +msgid "" +"one channel of 1-bit wavetable which is better (and worse) than the PC " +"Speaker." +msgstr "" + +#: src/engine/sysDef.cpp:966 src/engine/sysDef.cpp:1262 +#: src/engine/sysDef.cpp:2100 src/gui/editControls.cpp:433 +#: src/gui/settings.cpp:4017 src/gui/settings.cpp:4095 +msgid "Wave" +msgstr "" + +#: src/engine/sysDef.cpp:975 src/gui/settings.cpp:4052 +msgid "SNES" +msgstr "" + +#: src/engine/sysDef.cpp:976 +msgid "FM? nah... samples! Nintendo's answer to Sega." +msgstr "" + +#: src/engine/sysDef.cpp:983 +msgid "18xx: Enable echo buffer" +msgstr "" + +#: src/engine/sysDef.cpp:984 +msgid "19xx: Set echo delay (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:985 +msgid "1Axx: Set left echo volume" +msgstr "" + +#: src/engine/sysDef.cpp:986 +msgid "1Bxx: Set right echo volume" +msgstr "" + +#: src/engine/sysDef.cpp:987 +msgid "1Cxx: Set echo feedback" +msgstr "" + +#: src/engine/sysDef.cpp:988 +msgid "1Exx: Set dry output volume (left)" +msgstr "" + +#: src/engine/sysDef.cpp:989 +msgid "1Fxx: Set dry output volume (right)" +msgstr "" + +#: src/engine/sysDef.cpp:990 +msgid "30xx: Set echo filter coefficient 0" +msgstr "" + +#: src/engine/sysDef.cpp:991 +msgid "31xx: Set echo filter coefficient 1" +msgstr "" + +#: src/engine/sysDef.cpp:992 +msgid "32xx: Set echo filter coefficient 2" +msgstr "" + +#: src/engine/sysDef.cpp:993 +msgid "33xx: Set echo filter coefficient 3" +msgstr "" + +#: src/engine/sysDef.cpp:994 +msgid "34xx: Set echo filter coefficient 4" +msgstr "" + +#: src/engine/sysDef.cpp:995 +msgid "35xx: Set echo filter coefficient 5" +msgstr "" + +#: src/engine/sysDef.cpp:996 +msgid "36xx: Set echo filter coefficient 6" +msgstr "" + +#: src/engine/sysDef.cpp:997 +msgid "37xx: Set echo filter coefficient 7" +msgstr "" + +#: src/engine/sysDef.cpp:1002 +msgid "12xx: Toggle echo on this channel" +msgstr "" + +#: src/engine/sysDef.cpp:1003 +msgid "13xx: Toggle pitch modulation" +msgstr "" + +#: src/engine/sysDef.cpp:1004 +msgid "14xy: Toggle invert (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:1005 +msgid "" +"15xx: Set envelope mode (0: ADSR, 1: gain/direct, 2: dec, 3: exp, 4: inc, 5: " +"bent)" +msgstr "" + +#: src/engine/sysDef.cpp:1006 +msgid "16xx: Set gain (00 to 7F if direct; 00 to 1F otherwise)" +msgstr "" + +#: src/engine/sysDef.cpp:1007 +msgid "1Dxx: Set noise frequency (00 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:1008 +msgid "20xx: Set attack (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:1009 +msgid "21xx: Set decay (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1010 +msgid "22xx: Set sustain (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1011 +msgid "23xx: Set release (00 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:1016 +msgid "Konami VRC6" +msgstr "" + +#: src/engine/sysDef.cpp:1017 +msgid "an expansion chip for the Famicom, featuring a quirky sawtooth channel." +msgstr "" + +#: src/engine/sysDef.cpp:1018 +msgid "VRC6 1" +msgstr "" + +#: src/engine/sysDef.cpp:1018 +msgid "VRC6 2" +msgstr "" + +#: src/engine/sysDef.cpp:1018 +msgid "VRC6 Saw" +msgstr "" + +#: src/engine/sysDef.cpp:1024 src/engine/sysDef.cpp:2092 +msgid "12xx: Set duty cycle (pulse: 0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1030 +msgid "Yamaha YM2413 (OPLL)" +msgstr "" + +#: src/engine/sysDef.cpp:1031 +msgid "" +"cost-reduced version of the OPL with 16 patches and only one of them is user-" +"configurable." +msgstr "" + +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1173 +#: src/engine/sysDef.cpp:1185 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:2006 +msgid "FM 9" +msgstr "" + +#: src/engine/sysDef.cpp:1042 +msgid "Famicom Disk System (chip)" +msgstr "" + +#: src/engine/sysDef.cpp:1043 +msgid "a disk drive for the Famicom which also contains one wavetable channel." +msgstr "" + +#: src/engine/sysDef.cpp:1044 src/gui/settings.cpp:4039 +msgid "FDS" +msgstr "" + +#: src/engine/sysDef.cpp:1051 +msgid "11xx: Set modulation depth" +msgstr "" + +#: src/engine/sysDef.cpp:1052 +msgid "12xy: Set modulation speed high byte (x: enable; y: value)" +msgstr "" + +#: src/engine/sysDef.cpp:1053 +msgid "13xx: Set modulation speed low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1054 +msgid "14xx: Set modulator position" +msgstr "" + +#: src/engine/sysDef.cpp:1055 +msgid "15xx: Set modulator table to waveform" +msgstr "" + +#: src/engine/sysDef.cpp:1060 +msgid "MMC5" +msgstr "" + +#: src/engine/sysDef.cpp:1061 +msgid "" +"an expansion chip for the Famicom, featuring a little-known PCM channel." +msgstr "" + +#: src/engine/sysDef.cpp:1073 src/gui/settings.cpp:4041 +msgid "Namco 163" +msgstr "" + +#: src/engine/sysDef.cpp:1074 +msgid "an expansion chip for the Famicom, with full wavetable." +msgstr "" + +#: src/engine/sysDef.cpp:1081 +msgid "18xx: Change channel limits (0 to 7, x + 1)" +msgstr "" + +#: src/engine/sysDef.cpp:1082 +msgid "20xx: Load a waveform into memory" +msgstr "" + +#: src/engine/sysDef.cpp:1083 +msgid "21xx: Set position for wave load" +msgstr "" + +#: src/engine/sysDef.cpp:1086 +msgid "10xx: Select waveform" +msgstr "" + +#: src/engine/sysDef.cpp:1087 +msgid "11xx: Set waveform position in RAM" +msgstr "" + +#: src/engine/sysDef.cpp:1088 +msgid "12xx: Set waveform length in RAM (04 to FC in steps of 4)" +msgstr "" + +#: src/engine/sysDef.cpp:1089 +msgid "15xx: Set waveform load position" +msgstr "" + +#: src/engine/sysDef.cpp:1090 +msgid "16xx: Set waveform load length (04 to FC in steps of 4)" +msgstr "" + +#: src/engine/sysDef.cpp:1095 +msgid "Yamaha YM2203 (OPN)" +msgstr "" + +#: src/engine/sysDef.cpp:1096 +msgid "" +"cost-reduced version of the OPM with a different register layout and no " +"stereo...\n" +"...but it has a built-in AY-3-8910! (actually an YM2149)" +msgstr "" + +#: src/engine/sysDef.cpp:1107 +msgid "Yamaha YM2203 (OPN) Extended Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:1108 +msgid "" +"cost-reduced version of the OPM with a different register layout and no " +"stereo...\n" +"...but it has a built-in AY-3-8910! (actually an YM2149)\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies" +msgstr "" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP1" +msgstr "" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP2" +msgstr "" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP3" +msgstr "" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP4" +msgstr "" + +#: src/engine/sysDef.cpp:1120 +msgid "Yamaha YM2203 (OPN) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1121 +msgid "" +"cost-reduced version of the OPM with a different register layout and no " +"stereo...\n" +"...but it has a built-in AY-3-8910! (actually an YM2149)\n" +"CSM blah blah" +msgstr "" + +#: src/engine/sysDef.cpp:1122 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1383 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1559 src/engine/sysDef.cpp:1861 +msgid "CSM Timer" +msgstr "" + +#: src/engine/sysDef.cpp:1133 +msgid "Yamaha YM2608 (OPNA)" +msgstr "" + +#: src/engine/sysDef.cpp:1134 +msgid "" +"OPN but twice the FM channels, stereo makes a come-back and has rhythm and " +"ADPCM channels." +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1481 +#: src/gui/insEdit.cpp:3302 src/gui/insEdit.cpp:3624 +msgid "Kick" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:210 src/gui/insEdit.cpp:218 +msgid "Snare" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:212 src/gui/insEdit.cpp:220 +#: src/gui/insEdit.cpp:1909 src/gui/insEdit.cpp:2014 +msgid "Top" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:213 src/gui/insEdit.cpp:219 +msgid "HiHat" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:211 +msgid "Tom" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 +msgid "Rim" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:1693 +msgid "ADPCM" +msgstr "" + +#: src/engine/sysDef.cpp:1145 +msgid "Yamaha YM2608 (OPNA) Extended Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:1146 +msgid "" +"OPN but twice the FM channels, stereo makes a come-back and has rhythm and " +"ADPCM channels.\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies" +msgstr "" + +#: src/engine/sysDef.cpp:1158 +msgid "Yamaha YM2608 (OPNA) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1159 +msgid "" +"OPN but twice the FM channels, stereo makes a come-back and has rhythm and " +"ADPCM channels.\n" +"CSM blah blah" +msgstr "" + +#: src/engine/sysDef.cpp:1171 +msgid "Yamaha YM3526 (OPL)" +msgstr "" + +#: src/engine/sysDef.cpp:1172 +msgid "" +"OPN, but what if you only had two operators, no stereo, no detune and a " +"lower ADSR parameter range?" +msgstr "" + +#: src/engine/sysDef.cpp:1183 +msgid "Yamaha YM3812 (OPL2)" +msgstr "" + +#: src/engine/sysDef.cpp:1184 +msgid "OPL, but what if you had more waveforms to choose than the normal sine?" +msgstr "" + +#: src/engine/sysDef.cpp:1195 +msgid "Yamaha YMF262 (OPL3)" +msgstr "" + +#: src/engine/sysDef.cpp:1196 +msgid "" +"OPL2, but what if you had twice the channels, 4-op mode, stereo and even " +"more waveforms?" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 1" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 3" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 5" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 7" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 9" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 10" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 11" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 12" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 13" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 14" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 15" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:2006 +msgid "FM 16" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:2006 +msgid "FM 17" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:2006 +msgid "FM 18" +msgstr "" + +#: src/engine/sysDef.cpp:1208 src/gui/settings.cpp:4051 +msgid "MultiPCM" +msgstr "" + +#: src/engine/sysDef.cpp:1209 +msgid "" +"how many channels of PCM do you want?\n" +"MultiPCM: yes" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 17" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 18" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 19" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 20" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 21" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 22" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 23" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 24" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 25" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 26" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 27" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 28" +msgstr "" + +#: src/engine/sysDef.cpp:1217 +msgid "PC Speaker" +msgstr "" + +#: src/engine/sysDef.cpp:1218 +msgid "good luck! you get one square and no volume control." +msgstr "" + +#: src/engine/sysDef.cpp:1219 src/engine/sysDef.cpp:1228 +#: src/gui/guiConst.cpp:1394 src/gui/waveEdit.cpp:199 src/gui/insEdit.cpp:183 +#: src/gui/insEdit.cpp:194 src/gui/insEdit.cpp:326 src/gui/insEdit.cpp:656 +msgid "Square" +msgstr "" + +#: src/engine/sysDef.cpp:1226 +msgid "Pong" +msgstr "" + +#: src/engine/sysDef.cpp:1227 +msgid "please don't use this chip. it was added as a joke." +msgstr "" + +#: src/engine/sysDef.cpp:1235 src/gui/settings.cpp:4044 +msgid "POKEY" +msgstr "" + +#: src/engine/sysDef.cpp:1236 +msgid "" +"TIA, but better and more flexible.\n" +"used in the Atari 8-bit family of computers (400/800/XL/XE)." +msgstr "" + +#: src/engine/sysDef.cpp:1243 src/engine/sysDef.cpp:1714 +msgid "10xx: Set waveform (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1244 +msgid "11xx: Set AUDCTL" +msgstr "" + +#: src/engine/sysDef.cpp:1245 +msgid "12xx: Toggle two-tone mode" +msgstr "" + +#: src/engine/sysDef.cpp:1250 +msgid "Ricoh RF5C68" +msgstr "" + +#: src/engine/sysDef.cpp:1251 +msgid "" +"this is like SNES' sound chip but without interpolation and the rest of nice " +"bits." +msgstr "" + +#: src/engine/sysDef.cpp:1260 src/gui/settings.cpp:4046 +msgid "WonderSwan" +msgstr "" + +#: src/engine/sysDef.cpp:1261 +msgid "developed by the makers of the Game Boy and the Virtual Boy..." +msgstr "" + +#: src/engine/sysDef.cpp:1262 +msgid "Wave/PCM" +msgstr "" + +#: src/engine/sysDef.cpp:1262 +msgid "Wave/Sweep" +msgstr "" + +#: src/engine/sysDef.cpp:1262 +msgid "Wave/Noise" +msgstr "" + +#: src/engine/sysDef.cpp:1269 +msgid "11xx: Setup noise mode (0: disabled; 1-8: enabled/tap)" +msgstr "" + +#: src/engine/sysDef.cpp:1270 +msgid "12xx: Setup sweep period (0: disabled; 1-20: enabled/period)" +msgstr "" + +#: src/engine/sysDef.cpp:1271 +msgid "13xx: Set sweep amount" +msgstr "" + +#: src/engine/sysDef.cpp:1277 +msgid "Yamaha YM2414 (OPZ)" +msgstr "" + +#: src/engine/sysDef.cpp:1278 +msgid "" +"like OPM, but with more waveforms, fixed frequency mode and totally... " +"undocumented.\n" +"used in the Yamaha TX81Z and some other synthesizers." +msgstr "" + +#: src/engine/sysDef.cpp:1285 +msgid "2Fxx: Toggle hard envelope reset on new notes" +msgstr "" + +#: src/engine/sysDef.cpp:1291 src/gui/settings.cpp:4069 +msgid "Pokémon Mini" +msgstr "" + +#: src/engine/sysDef.cpp:1292 +msgid "this one is like PC Speaker but has duty cycles." +msgstr "" + +#: src/engine/sysDef.cpp:1293 src/gui/settings.cpp:4092 src/gui/waveEdit.cpp:33 +msgid "Pulse" +msgstr "" + +#: src/engine/sysDef.cpp:1300 +msgid "SegaPCM" +msgstr "" + +#: src/engine/sysDef.cpp:1301 +msgid "" +"used in some Sega arcade boards (like OutRun), and usually paired with a " +"YM2151." +msgstr "" + +#: src/engine/sysDef.cpp:1312 src/gui/settings.cpp:4040 +msgid "Virtual Boy" +msgstr "" + +#: src/engine/sysDef.cpp:1313 +msgid "" +"a console which failed to sell well due to its headache-inducing features." +msgstr "" + +#: src/engine/sysDef.cpp:1321 +msgid "11xx: Set noise length (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1322 +msgid "" +"12xy: Setup envelope (x: enabled/loop (1: enable, 3: enable+loop); y: speed/" +"direction (0-7: down, 8-F: up))" +msgstr "" + +#: src/engine/sysDef.cpp:1323 +msgid "13xy: Setup sweep (x: speed; y: shift; channel 5 only)" +msgstr "" + +#: src/engine/sysDef.cpp:1324 +msgid "" +"14xy: Setup modulation (x: enabled/loop (1: enable, 3: enable+loop); y: " +"speed; channel 5 only)" +msgstr "" + +#: src/engine/sysDef.cpp:1325 +msgid "15xx: Set modulation waveform (x: wavetable; channel 5 only)" +msgstr "" + +#: src/engine/sysDef.cpp:1330 +msgid "Konami VRC7" +msgstr "" + +#: src/engine/sysDef.cpp:1331 +msgid "" +"like OPLL, but even more cost reductions applied. three FM channels went " +"missing, and drums mode did as well..." +msgstr "" + +#: src/engine/sysDef.cpp:1342 +msgid "Yamaha YM2610B (OPNB2)" +msgstr "" + +#: src/engine/sysDef.cpp:1343 +msgid "" +"so Taito asked Yamaha if they could get the two missing FM channels back, " +"and Yamaha gladly provided them with this chip." +msgstr "" + +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/gui/settings.cpp:4061 +msgid "ADPCM-B" +msgstr "" + +#: src/engine/sysDef.cpp:1354 +msgid "ZX Spectrum Beeper" +msgstr "" + +#: src/engine/sysDef.cpp:1355 +msgid "" +"the ZX Spectrum only had a basic beeper capable of...\n" +"...a bunch of thin pulses and tons of other interesting stuff!\n" +"Furnace provides a thin pulse system." +msgstr "" + +#: src/engine/sysDef.cpp:1362 src/engine/sysDef.cpp:1950 +msgid "12xx: Set pulse width" +msgstr "" + +#: src/engine/sysDef.cpp:1363 +msgid "17xx: Trigger overlay drum" +msgstr "" + +#: src/engine/sysDef.cpp:1368 +msgid "Yamaha YM2612 (OPN2) Extended Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:1369 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:1381 +msgid "Yamaha YM2612 (OPN2) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1382 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this one includes CSM mode control for special effects on Channel 3." +msgstr "" + +#: src/engine/sysDef.cpp:1394 src/gui/settings.cpp:4042 +msgid "Konami SCC" +msgstr "" + +#: src/engine/sysDef.cpp:1395 +msgid "" +"a wavetable chip made by Konami for use with the MSX.\n" +"the last channel shares its wavetable with the previous one though." +msgstr "" + +#: src/engine/sysDef.cpp:1405 +msgid "Yamaha YM3526 (OPL) with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1406 +msgid "the OPL chip but with drums mode enabled." +msgstr "" + +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1693 +msgid "Kick/FM 7" +msgstr "" + +#: src/engine/sysDef.cpp:1417 +msgid "Yamaha YM3812 (OPL2) with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1418 +msgid "the OPL2 chip but with drums mode enabled." +msgstr "" + +#: src/engine/sysDef.cpp:1429 +msgid "Yamaha YMF262 (OPL3) with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1430 +msgid "the OPL3 chip but with drums mode enabled." +msgstr "" + +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1631 +msgid "Kick/FM 16" +msgstr "" + +#: src/engine/sysDef.cpp:1441 +msgid "Yamaha YM2610 (OPNB)" +msgstr "" + +#: src/engine/sysDef.cpp:1442 +msgid "" +"this chip was used in SNK's Neo Geo arcade board and video game console.\n" +"it's like OPNA but the rhythm channels are ADPCM channels and two FM " +"channels went missing." +msgstr "" + +#: src/engine/sysDef.cpp:1453 +msgid "Yamaha YM2610 (OPNB) Extended Channel 2" +msgstr "" + +#: src/engine/sysDef.cpp:1454 +msgid "" +"this chip was used in SNK's Neo Geo arcade board and video game console.\n" +"it's like OPNA but the rhythm channels are ADPCM channels and two FM " +"channels went missing.\n" +"this one is in Extended Channel mode, which turns the second FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:1466 +msgid "Yamaha YM2610 (OPNB) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1467 +msgid "" +"this chip was used in SNK's Neo Geo arcade board and video game console.\n" +"it's like OPNA but the rhythm channels are ADPCM channels and two FM " +"channels went missing.\n" +"this one includes CSM mode control for special effects on Channel 2." +msgstr "" + +#: src/engine/sysDef.cpp:1479 +msgid "Yamaha YM2413 (OPLL) with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1480 +msgid "the OPLL chips but with drums mode turned on." +msgstr "" + +#: src/engine/sysDef.cpp:1491 +msgid "3xxx: Load LFSR (0 to FFF)" +msgstr "" + +#: src/engine/sysDef.cpp:1497 +msgid "Atari Lynx" +msgstr "" + +#: src/engine/sysDef.cpp:1498 +msgid "" +"a portable console made by Atari. it has all of Atari's trademark waveforms." +msgstr "" + +#: src/engine/sysDef.cpp:1509 +msgid "10xx: Set echo feedback level (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1510 +msgid "11xx: Set channel echo level (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1511 +msgid "12xx: Toggle QSound algorithm (0: disabled; 1: enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:1513 +msgid "3xxx: Set echo delay buffer length (000 to AA5)" +msgstr "" + +#: src/engine/sysDef.cpp:1519 +msgid "Capcom QSound" +msgstr "" + +#: src/engine/sysDef.cpp:1520 +msgid "" +"used in some of Capcom's arcade boards. surround-like sampled sound with " +"echo." +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +#: src/engine/sysDef.cpp:2056 +msgid "PCM 1" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +#: src/engine/sysDef.cpp:2056 +msgid "PCM 2" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 3" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 4" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 5" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 6" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 7" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 8" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 9" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 10" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 11" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 12" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 13" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 14" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 15" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 16" +msgstr "" + +#: src/engine/sysDef.cpp:1521 +msgid "ADPCM 1" +msgstr "" + +#: src/engine/sysDef.cpp:1521 +msgid "ADPCM 2" +msgstr "" + +#: src/engine/sysDef.cpp:1521 +msgid "ADPCM 3" +msgstr "" + +#: src/engine/sysDef.cpp:1530 src/gui/settings.cpp:4048 +msgid "VERA" +msgstr "" + +#: src/engine/sysDef.cpp:1531 +msgid "the chip used in a computer design created by The 8-Bit Guy." +msgstr "" + +#: src/engine/sysDef.cpp:1538 +msgid "20xx: Set waveform" +msgstr "" + +#: src/engine/sysDef.cpp:1539 +msgid "22xx: Set duty cycle (0 to 3F)" +msgstr "" + +#: src/engine/sysDef.cpp:1544 +msgid "Yamaha YM2610B (OPNB2) Extended Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:1545 +msgid "" +"so Taito asked Yamaha if they could get the two missing FM channels back, " +"and Yamaha gladly provided them with this chip.\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:1557 +msgid "Yamaha YM2610B (OPNB2) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1558 +msgid "" +"so Taito asked Yamaha if they could get the two missing FM channels back, " +"and Yamaha gladly provided them with this chip.\n" +"CSM blah blah" +msgstr "" + +#: src/engine/sysDef.cpp:1570 +msgid "SegaPCM (compatible 5-channel mode)" +msgstr "" + +#: src/engine/sysDef.cpp:1571 +msgid "" +"this is the same thing as SegaPCM, but only exposes 5 of the channels for " +"compatibility with DefleMask." +msgstr "" + +#: src/engine/sysDef.cpp:1582 +msgid "Seta/Allumer X1-010" +msgstr "" + +#: src/engine/sysDef.cpp:1583 +msgid "" +"a sound chip used in several Seta/Allumer-manufactured arcade boards with " +"too many channels of wavetable sound, which also are capable of sampled " +"sound." +msgstr "" + +#: src/engine/sysDef.cpp:1591 +msgid "11xx: Set envelope shape" +msgstr "" + +#: src/engine/sysDef.cpp:1592 +msgid "12xx: Set sample bank slot (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1596 +msgid "20xx: Set PCM frequency (1 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1597 +msgid "" +"22xx: Set envelope mode (bit 0: enable; bit 1: one-shot; bit 2: split shape " +"to L/R; bit 3/5: H.invert right/left; bit 4/6: V.invert right/left)" +msgstr "" + +#: src/engine/sysDef.cpp:1598 +msgid "23xx: Set envelope period" +msgstr "" + +#: src/engine/sysDef.cpp:1606 +msgid "Konami Bubble System WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1607 +msgid "" +"this is the wavetable part of the Bubble System, which also had two " +"AY-3-8910s." +msgstr "" + +#: src/engine/sysDef.cpp:1619 +msgid "Yamaha YMF278B (OPL4)" +msgstr "" + +#: src/engine/sysDef.cpp:1620 +msgid "like OPL3, but this time it also has a 24-channel version of MultiPCM." +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 17" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 18" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 19" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 20" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 21" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 22" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 23" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 24" +msgstr "" + +#: src/engine/sysDef.cpp:1629 +msgid "Yamaha YMF278B (OPL4) with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1630 +msgid "the OPL4 but with drums mode turned on." +msgstr "" + +#: src/engine/sysDef.cpp:1638 +msgid "11xx: Set filter mode (00 to 03)" +msgstr "" + +#: src/engine/sysDef.cpp:1639 +msgid "14xx: Set filter coefficient K1 low byte (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1640 +msgid "15xx: Set filter coefficient K1 high byte (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1641 +msgid "16xx: Set filter coefficient K2 low byte (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1642 +msgid "17xx: Set filter coefficient K2 high byte (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1643 +msgid "18xx: Set filter coefficient K1 slide up (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1644 +msgid "19xx: Set filter coefficient K1 slide down (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1645 +msgid "1Axx: Set filter coefficient K2 slide up (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1646 +msgid "1Bxx: Set filter coefficient K2 slide down (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1647 +msgid "22xx: Set envelope left volume ramp (signed) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1648 +msgid "23xx: Set envelope right volume ramp (signed) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1649 +msgid "24xx: Set envelope filter coefficient k1 ramp (signed) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1650 +msgid "" +"25xx: Set envelope filter coefficient k1 ramp (signed, slower) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1651 +msgid "26xx: Set envelope filter coefficient k2 ramp (signed) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1652 +msgid "" +"27xx: Set envelope filter coefficient k2 ramp (signed, slower) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1656 +msgid "120x: Set pause (bit 0)" +msgstr "" + +#: src/engine/sysDef.cpp:1658 +msgid "2xxx: Set envelope count (000 to 1FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1659 +msgid "3xxx: Set filter coefficient K1 (000 to FFF)" +msgstr "" + +#: src/engine/sysDef.cpp:1660 +msgid "4xxx: Set filter coefficient K2 (000 to FFF)" +msgstr "" + +#: src/engine/sysDef.cpp:1667 +msgid "Ensoniq ES5506" +msgstr "" + +#: src/engine/sysDef.cpp:1668 +msgid "" +"a sample chip made by Ensoniq, which is the basis for the GF1 chip found in " +"Gravis' Ultrasound cards." +msgstr "" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 29" +msgstr "" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 30" +msgstr "" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 31" +msgstr "" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 32" +msgstr "" + +#: src/engine/sysDef.cpp:1679 +msgid "Yamaha Y8950" +msgstr "" + +#: src/engine/sysDef.cpp:1680 +msgid "like OPL but with an ADPCM channel." +msgstr "" + +#: src/engine/sysDef.cpp:1691 +msgid "Yamaha Y8950 with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1692 +msgid "the Y8950 chip, in drums mode." +msgstr "" + +#: src/engine/sysDef.cpp:1703 +msgid "Konami SCC+" +msgstr "" + +#: src/engine/sysDef.cpp:1704 +msgid "" +"this is a variant of Konami's SCC chip with the last channel's wavetable " +"being independent." +msgstr "" + +#: src/engine/sysDef.cpp:1715 +msgid "12xx: Set pulse width (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:1716 +msgid "13xx: Set resonance (0 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1717 +msgid "" +"14xx: Set filter mode (bit 0: ring mod; bit 1: low pass; bit 2: high pass; " +"bit 3: band pass)" +msgstr "" + +#: src/engine/sysDef.cpp:1718 +msgid "15xx: Set frequency sweep period low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1719 +msgid "16xx: Set frequency sweep period high byte" +msgstr "" + +#: src/engine/sysDef.cpp:1720 +msgid "17xx: Set volume sweep period low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1721 +msgid "18xx: Set volume sweep period high byte" +msgstr "" + +#: src/engine/sysDef.cpp:1722 +msgid "19xx: Set cutoff sweep period low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1723 +msgid "1Axx: Set cutoff sweep period high byte" +msgstr "" + +#: src/engine/sysDef.cpp:1724 +msgid "1Bxx: Set frequency sweep boundary" +msgstr "" + +#: src/engine/sysDef.cpp:1725 +msgid "1Cxx: Set volume sweep boundary" +msgstr "" + +#: src/engine/sysDef.cpp:1726 +msgid "1Dxx: Set cutoff sweep boundary" +msgstr "" + +#: src/engine/sysDef.cpp:1727 +msgid "1Exx: Set phase reset period low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1728 +msgid "1Fxx: Set phase reset period high byte" +msgstr "" + +#: src/engine/sysDef.cpp:1729 +msgid "20xx: Toggle frequency sweep (bit 0-6: speed; bit 7: direction is up)" +msgstr "" + +#: src/engine/sysDef.cpp:1730 +msgid "" +"21xx: Toggle volume sweep (bit 0-4: speed; bit 5: direction is up; bit 6: " +"loop; bit 7: alternate)" +msgstr "" + +#: src/engine/sysDef.cpp:1731 +msgid "22xx: Toggle cutoff sweep (bit 0-6: speed; bit 7: direction is up)" +msgstr "" + +#: src/engine/sysDef.cpp:1739 +msgid "tildearrow Sound Unit" +msgstr "" + +#: src/engine/sysDef.cpp:1740 +msgid "" +"tildearrow's fantasy sound chip. put SID, AY and VERA in a blender, and you " +"get this!" +msgstr "" + +#: src/engine/sysDef.cpp:1751 +msgid "OKI MSM6295" +msgstr "" + +#: src/engine/sysDef.cpp:1752 +msgid "an ADPCM sound chip manufactured by OKI and used in many arcade boards." +msgstr "" + +#: src/engine/sysDef.cpp:1759 +msgid "20xx: Set chip output rate (0: clock/132; 1: clock/165)" +msgstr "" + +#: src/engine/sysDef.cpp:1764 +msgid "OKI MSM6258" +msgstr "" + +#: src/engine/sysDef.cpp:1765 +msgid "an ADPCM sound chip manufactured by OKI and used in the Sharp X68000." +msgstr "" + +#: src/engine/sysDef.cpp:1766 src/engine/sysDef.cpp:1887 +#: src/gui/editControls.cpp:437 src/gui/settings.cpp:4223 +#: src/gui/guiConst.cpp:1397 src/gui/insEdit.cpp:2628 src/gui/insEdit.cpp:2666 +msgid "Sample" +msgstr "" + +#: src/engine/sysDef.cpp:1772 +msgid "20xx: Set frequency divider (0-2)" +msgstr "" + +#: src/engine/sysDef.cpp:1773 +msgid "21xx: Select clock rate (0: full; 1: half)" +msgstr "" + +#: src/engine/sysDef.cpp:1778 +msgid "Yamaha YMZ280B (PCMD8)" +msgstr "" + +#: src/engine/sysDef.cpp:1779 +msgid "" +"used in some arcade boards. Can play back either 4-bit ADPCM, 8-bit PCM or " +"16-bit PCM." +msgstr "" + +#: src/engine/sysDef.cpp:1797 src/gui/settings.cpp:4054 +msgid "Namco WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1798 +msgid "" +"a wavetable sound chip used in Pac-Man, among other early Namco arcade games." +msgstr "" + +#: src/engine/sysDef.cpp:1808 +msgid "Namco C15 WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1809 +msgid "" +"successor of the original Namco WSG chip, used in later Namco arcade games." +msgstr "" + +#: src/engine/sysDef.cpp:1819 +msgid "Namco C30 WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1820 +msgid "like Namco C15 but with stereo sound." +msgstr "" + +#: src/engine/sysDef.cpp:1830 +msgid "OKI MSM5232" +msgstr "" + +#: src/engine/sysDef.cpp:1831 +msgid "" +"a square wave additive synthesis chip made by OKI. used in some arcade " +"machines and instruments." +msgstr "" + +#: src/engine/sysDef.cpp:1839 +msgid "10xy: Set group control (x: sustain; y: part toggle bitmask)" +msgstr "" + +#: src/engine/sysDef.cpp:1840 src/engine/sysDef.cpp:1998 +msgid "11xx: Set noise mode" +msgstr "" + +#: src/engine/sysDef.cpp:1841 +msgid "12xx: Set group attack (0 to 5)" +msgstr "" + +#: src/engine/sysDef.cpp:1842 +msgid "13xx: Set group decay (0 to 11)" +msgstr "" + +#: src/engine/sysDef.cpp:1847 +msgid "Yamaha YM2612 (OPN2) with DualPCM" +msgstr "" + +#: src/engine/sysDef.cpp:1848 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this system uses software mixing to provide two sample channels." +msgstr "" + +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +msgid "FM 6/PCM 1" +msgstr "" + +#: src/engine/sysDef.cpp:1859 +msgid "Yamaha YM2612 (OPN2) Extended Channel 3 with DualPCM and CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1860 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this system uses software mixing to provide two sample channels.\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:1872 src/gui/settings.cpp:4024 +msgid "T6W28" +msgstr "" + +#: src/engine/sysDef.cpp:1873 +msgid "" +"an SN76489 derivative used in Neo Geo Pocket, has independent stereo volume " +"and noise channel frequency." +msgstr "" + +#: src/engine/sysDef.cpp:1880 +msgid "20xx: Set noise length (0: short, 1: long)" +msgstr "" + +#: src/engine/sysDef.cpp:1885 +msgid "Generic PCM DAC" +msgstr "" + +#: src/engine/sysDef.cpp:1886 +msgid "as generic sample playback as it gets." +msgstr "" + +#: src/engine/sysDef.cpp:1898 +msgid "Konami K007232" +msgstr "" + +#: src/engine/sysDef.cpp:1899 +msgid "this PCM chip was widely used at Konami arcade boards in 1986-1990." +msgstr "" + +#: src/engine/sysDef.cpp:1908 +msgid "Irem GA20" +msgstr "" + +#: src/engine/sysDef.cpp:1909 +msgid "" +"yet another PCM chip from Irem. like Amiga, but less pitch resolution and no " +"sample loop." +msgstr "" + +#: src/engine/sysDef.cpp:1918 +msgid "Sharp SM8521" +msgstr "" + +#: src/engine/sysDef.cpp:1919 +msgid "a SoC with wavetable sound hardware." +msgstr "" + +#: src/engine/sysDef.cpp:1929 +msgid "Casio PV-1000" +msgstr "" + +#: src/engine/sysDef.cpp:1930 +msgid "" +"a game console with 3 channels of square wave. it's what happens after " +"fusing TIA and VIC together." +msgstr "" + +#: src/engine/sysDef.cpp:1937 +msgid "10xx: Set ring modulation (0: disable, 1: enable)" +msgstr "" + +#: src/engine/sysDef.cpp:1942 +msgid "ZX Spectrum Beeper (QuadTone Engine)" +msgstr "" + +#: src/engine/sysDef.cpp:1943 +msgid "" +"another ZX Spectrum beeper system with full PWM pulses and 3-level volume " +"per channel. it also has a pitchable overlay sample channel." +msgstr "" + +#: src/engine/sysDef.cpp:1955 +msgid "Konami K053260" +msgstr "" + +#: src/engine/sysDef.cpp:1956 +msgid "this PCM chip was widely used at Konami arcade boards in 1990-1992." +msgstr "" + +#: src/engine/sysDef.cpp:1968 +msgid "MOS Technology TED" +msgstr "" + +#: src/engine/sysDef.cpp:1969 +msgid "" +"two square waves (one may be turned into noise). used in the Commodore " +"Plus/4, 16 and 116." +msgstr "" + +#: src/engine/sysDef.cpp:1978 +msgid "Namco C140" +msgstr "" + +#: src/engine/sysDef.cpp:1979 +msgid "Namco's first PCM chip from 1987. it's pretty good for being so." +msgstr "" + +#: src/engine/sysDef.cpp:1989 +msgid "Namco C219" +msgstr "" + +#: src/engine/sysDef.cpp:1990 +msgid "" +"Namco's PCM chip used in their NA-1/2 hardware.\n" +"very similar to C140, but has noise generator." +msgstr "" + +#: src/engine/sysDef.cpp:1999 +msgid "12xy: Set invert mode (x: surround; y: invert)" +msgstr "" + +#: src/engine/sysDef.cpp:2004 +msgid "ESS ES1xxx series (ESFM)" +msgstr "" + +#: src/engine/sysDef.cpp:2005 +msgid "" +"a unique FM synth featured in PC sound cards.\n" +"based on the OPL3 design, but with lots of its features extended." +msgstr "" + +#: src/engine/sysDef.cpp:2006 +msgid "FM 11" +msgstr "" + +#: src/engine/sysDef.cpp:2012 +msgid "2Exx: Toggle hard envelope reset on new notes" +msgstr "" + +#: src/engine/sysDef.cpp:2018 +msgid "PowerNoise" +msgstr "" + +#: src/engine/sysDef.cpp:2019 +msgid "" +"a fantasy sound chip designed by jvsTSX and The Beesh-Spweesh!\n" +"used in the Hexheld fantasy console." +msgstr "" + +#: src/engine/sysDef.cpp:2020 +msgid "Noise 1" +msgstr "" + +#: src/engine/sysDef.cpp:2020 +msgid "Noise 2" +msgstr "" + +#: src/engine/sysDef.cpp:2020 +msgid "Noise 3" +msgstr "" + +#: src/engine/sysDef.cpp:2020 +msgid "Slope" +msgstr "" + +#: src/engine/sysDef.cpp:2026 +msgid "" +"20xx: Load low byte of noise channel LFSR (00 to FF) or slope channel " +"accumulator (00 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:2027 +msgid "21xx: Load high byte of noise channel LFSR (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:2028 +msgid "22xx: Write to I/O port A" +msgstr "" + +#: src/engine/sysDef.cpp:2029 +msgid "23xx: Write to I/O port B" +msgstr "" + +#: src/engine/sysDef.cpp:2035 src/gui/settings.cpp:4079 +msgid "Dave" +msgstr "" + +#: src/engine/sysDef.cpp:2036 +msgid "" +"this chip was featured in the Enterprise 128 computer. it is similar to " +"POKEY, but with stereo output." +msgstr "" + +#: src/engine/sysDef.cpp:2037 +msgid "DAC Left" +msgstr "" + +#: src/engine/sysDef.cpp:2037 +msgid "DAC Right" +msgstr "" + +#: src/engine/sysDef.cpp:2043 +msgid "10xx: Set waveform (0 to 4; 0 to 3 on noise)" +msgstr "" + +#: src/engine/sysDef.cpp:2044 +msgid "11xx: Set noise frequency source (0: fixed; 1-3: channels 1 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:2045 +msgid "12xx: Toggle high-pass with next channel" +msgstr "" + +#: src/engine/sysDef.cpp:2046 +msgid "13xx: Toggle ring modulation with channel+2" +msgstr "" + +#: src/engine/sysDef.cpp:2047 +msgid "14xx: Toggle swap counters (noise only)" +msgstr "" + +#: src/engine/sysDef.cpp:2048 +msgid "15xx: Toggle low pass (noise only)" +msgstr "" + +#: src/engine/sysDef.cpp:2049 +msgid "16xx: Set clock divider (0: /2; 1: /3)" +msgstr "" + +#: src/engine/sysDef.cpp:2054 +msgid "Game Boy Advance DMA Sound" +msgstr "" + +#: src/engine/sysDef.cpp:2055 +msgid "" +"additional PCM FIFO channels in Game Boy Advance driven directly by its DMA " +"hardware." +msgstr "" + +#: src/engine/sysDef.cpp:2068 +msgid "Game Boy Advance MinMod" +msgstr "" + +#: src/engine/sysDef.cpp:2069 +msgid "" +"additional PCM FIFO channels in Game Boy Advance driven by software mixing " +"to provide up to sixteen sample channels" +msgstr "" + +#: src/engine/sysDef.cpp:2078 +msgid "11xy: Set echo channel (x: left/right source; y: delay (0 disables))" +msgstr "" + +#: src/engine/sysDef.cpp:2079 +msgid "12xy: Toggle invert (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:2084 src/gui/settings.cpp:4080 +msgid "Nintendo DS" +msgstr "" + +#: src/engine/sysDef.cpp:2085 +msgid "a handheld video game console with two screens. it uses a stylus." +msgstr "" + +#: src/engine/sysDef.cpp:2093 +msgid "1Fxx: Set global volume (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:2098 +msgid "5E01" +msgstr "" + +#: src/engine/sysDef.cpp:2099 +msgid "" +"a fantasy sound chip created by Euly. it is based on Ricoh 2A03, adding a " +"couple features such as 32 noise pitches, an extra duty cycle, and three " +"waveforms (besides triangle)." +msgstr "" + +#: src/engine/sysDef.cpp:2107 +msgid "" +"12xx: Set duty cycle/noise mode/waveform (pulse/wave: 0 to 3; noise: 0 or 1)" +msgstr "" + +#: src/engine/sysDef.cpp:2120 src/gui/settings.cpp:4083 +msgid "Bifurcator" +msgstr "" + +#: src/engine/sysDef.cpp:2121 +msgid "a fantasy sound chip using logistic map iterations to generate sound." +msgstr "" + +#: src/engine/sysDef.cpp:2128 +msgid "10xx: Load low byte of channel sample state" +msgstr "" + +#: src/engine/sysDef.cpp:2129 +msgid "11xx: Load high byte of channel sample state" +msgstr "" + +#: src/engine/sysDef.cpp:2130 +msgid "12xx: Set low byte of channel parameter" +msgstr "" + +#: src/engine/sysDef.cpp:2131 +msgid "13xx: Set high byte of channel parameter" +msgstr "" + +#: src/engine/sysDef.cpp:2136 src/gui/settings.cpp:4084 +msgid "SID2" +msgstr "" + +#: src/engine/sysDef.cpp:2137 +msgid "" +"a fantasy sound chip created by LTVA. it is similar to the SID chip, but " +"with many of its problems fixed." +msgstr "" + +#: src/engine/sysDef.cpp:2148 +msgid "Dummy System" +msgstr "" + +#: src/engine/sysDef.cpp:2149 +msgid "this is a system designed for testing purposes." +msgstr "" + +#: src/engine/engine.cpp:51 +msgid "00xy: Arpeggio" +msgstr "" + +#: src/engine/engine.cpp:53 +msgid "01xx: Pitch slide up" +msgstr "" + +#: src/engine/engine.cpp:55 +msgid "02xx: Pitch slide down" +msgstr "" + +#: src/engine/engine.cpp:57 +msgid "03xx: Portamento" +msgstr "" + +#: src/engine/engine.cpp:59 +msgid "04xy: Vibrato (x: speed; y: depth)" +msgstr "" + +#: src/engine/engine.cpp:61 +msgid "05xy: Volume slide + vibrato (compatibility only!)" +msgstr "" + +#: src/engine/engine.cpp:63 +msgid "06xy: Volume slide + portamento (compatibility only!)" +msgstr "" + +#: src/engine/engine.cpp:65 +msgid "07xy: Tremolo (x: speed; y: depth)" +msgstr "" + +#: src/engine/engine.cpp:67 +msgid "08xy: Set panning (x: left; y: right)" +msgstr "" + +#: src/engine/engine.cpp:69 +msgid "09xx: Set groove pattern (speed 1 if no grooves exist)" +msgstr "" + +#: src/engine/engine.cpp:71 +msgid "0Axy: Volume slide (0y: down; x0: up)" +msgstr "" + +#: src/engine/engine.cpp:73 +msgid "0Bxx: Jump to pattern" +msgstr "" + +#: src/engine/engine.cpp:75 +msgid "0Cxx: Retrigger" +msgstr "" + +#: src/engine/engine.cpp:77 +msgid "0Dxx: Jump to next pattern" +msgstr "" + +#: src/engine/engine.cpp:79 +msgid "0Fxx: Set speed (speed 2 if no grooves exist)" +msgstr "" + +#: src/engine/engine.cpp:81 +msgid "80xx: Set panning (00: left; 80: center; FF: right)" +msgstr "" + +#: src/engine/engine.cpp:83 +msgid "81xx: Set panning (left channel)" +msgstr "" + +#: src/engine/engine.cpp:85 +msgid "82xx: Set panning (right channel)" +msgstr "" + +#: src/engine/engine.cpp:87 +msgid "88xy: Set panning (rear channels; x: left; y: right)" +msgstr "" + +#: src/engine/engine.cpp:90 +msgid "89xx: Set panning (rear left channel)" +msgstr "" + +#: src/engine/engine.cpp:93 +msgid "8Axx: Set panning (rear right channel)" +msgstr "" + +#: src/engine/engine.cpp:96 +msgid "Cxxx: Set tick rate (hz)" +msgstr "" + +#: src/engine/engine.cpp:98 +msgid "E0xx: Set arp speed" +msgstr "" + +#: src/engine/engine.cpp:100 +msgid "E1xy: Note slide up (x: speed; y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:102 +msgid "E2xy: Note slide down (x: speed; y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:104 +msgid "E3xx: Set vibrato shape (0: up/down; 1: up only; 2: down only)" +msgstr "" + +#: src/engine/engine.cpp:106 +msgid "E4xx: Set vibrato range" +msgstr "" + +#: src/engine/engine.cpp:108 +msgid "E5xx: Set pitch (80: center)" +msgstr "" + +#: src/engine/engine.cpp:110 +msgid "E6xy: Quick legato (x: time (0-7 up; 8-F down); y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:112 +msgid "E7xx: Macro release" +msgstr "" + +#: src/engine/engine.cpp:114 +msgid "E8xy: Quick legato up (x: time; y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:116 +msgid "E9xy: Quick legato down (x: time; y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:118 +msgid "EAxx: Legato" +msgstr "" + +#: src/engine/engine.cpp:120 +msgid "EBxx: Set LEGACY sample mode bank" +msgstr "" + +#: src/engine/engine.cpp:122 +msgid "ECxx: Note cut" +msgstr "" + +#: src/engine/engine.cpp:124 +msgid "EDxx: Note delay" +msgstr "" + +#: src/engine/engine.cpp:126 +msgid "EExx: Send external command" +msgstr "" + +#: src/engine/engine.cpp:128 +msgid "F0xx: Set tick rate (bpm)" +msgstr "" + +#: src/engine/engine.cpp:130 +msgid "F1xx: Single tick note slide up" +msgstr "" + +#: src/engine/engine.cpp:132 +msgid "F2xx: Single tick note slide down" +msgstr "" + +#: src/engine/engine.cpp:134 +msgid "F3xx: Fine volume slide up" +msgstr "" + +#: src/engine/engine.cpp:136 +msgid "F4xx: Fine volume slide down" +msgstr "" + +#: src/engine/engine.cpp:138 +msgid "F5xx: Disable macro (see manual)" +msgstr "" + +#: src/engine/engine.cpp:140 +msgid "F6xx: Enable macro (see manual)" +msgstr "" + +#: src/engine/engine.cpp:142 +msgid "F7xx: Restart macro (see manual)" +msgstr "" + +#: src/engine/engine.cpp:144 +msgid "F8xx: Single tick volume slide up" +msgstr "" + +#: src/engine/engine.cpp:146 +msgid "F9xx: Single tick volume slide down" +msgstr "" + +#: src/engine/engine.cpp:148 +msgid "FAxx: Fast volume slide (0y: down; x0: up)" +msgstr "" + +#: src/engine/engine.cpp:150 +msgid "FCxx: Note release" +msgstr "" + +#: src/engine/engine.cpp:152 +msgid "FDxx: Set virtual tempo numerator" +msgstr "" + +#: src/engine/engine.cpp:154 +msgid "FExx: Set virtual tempo denominator" +msgstr "" + +#: src/engine/engine.cpp:156 +msgid "FFxx: Stop song" +msgstr "" + +#: src/engine/engine.cpp:160 +msgid "9xxx: Set sample offset*256" +msgstr "" + +#: src/engine/engine.cpp:164 +msgid "90xx: Set sample offset (first byte)" +msgstr "" + +#: src/engine/engine.cpp:166 +msgid "91xx: Set sample offset (second byte, ×256)" +msgstr "" + +#: src/engine/engine.cpp:168 +msgid "92xx: Set sample offset (third byte, ×65536)" +msgstr "" + +#: src/engine/engine.cpp:187 src/gui/settings.cpp:4127 +msgid "Invalid effect" +msgstr "" + +#: src/engine/engine.cpp:354 src/gui/gui.cpp:2259 src/gui/gui.cpp:2422 +#, c-format +msgid "on seek: %s" +msgstr "" + +#: src/engine/engine.cpp:361 src/gui/gui.cpp:2266 src/gui/gui.cpp:2429 +#, c-format +msgid "on pre tell: %s" +msgstr "" + +#: src/engine/engine.cpp:368 src/engine/engine.cpp:2768 +#: src/gui/settings.cpp:5811 src/gui/gui.cpp:2273 src/gui/gui.cpp:2436 +msgid "file is empty" +msgstr "" + +#: src/engine/engine.cpp:371 src/gui/gui.cpp:2276 src/gui/gui.cpp:2439 +#, c-format +msgid "on tell: %s" +msgstr "" + +#: src/engine/engine.cpp:378 +#, c-format +msgid "ROM size mismatch, expected: %d bytes, was: %d" +msgstr "" + +#: src/engine/engine.cpp:383 src/gui/settings.cpp:5820 src/gui/gui.cpp:2283 +#: src/gui/gui.cpp:2446 +#, c-format +msgid "on get size: %s" +msgstr "" + +#: src/engine/engine.cpp:390 src/gui/settings.cpp:5827 src/gui/gui.cpp:2290 +#: src/gui/gui.cpp:2453 +#, c-format +msgid "on read: %s" +msgstr "" + +#: src/engine/engine.cpp:1076 src/engine/engine.cpp:1181 +#: src/engine/engine.cpp:1290 +msgid "invalid index" +msgstr "" + +#: src/engine/engine.cpp:1080 src/engine/engine.cpp:1135 +#: src/engine/engine.cpp:1189 +#, c-format +msgid "max number of total channels is %d" +msgstr "" + +#: src/engine/engine.cpp:1131 src/engine/engine.cpp:1185 +#, c-format +msgid "max number of systems is %d" +msgstr "" + +#: src/engine/engine.cpp:1286 +msgid "cannot remove the last one" +msgstr "" + +#: src/engine/engine.cpp:1460 +msgid "source and destination are equal" +msgstr "" + +#: src/engine/engine.cpp:1464 +msgid "invalid source index" +msgstr "" + +#: src/engine/engine.cpp:1468 +msgid "invalid destination index" +msgstr "" + +#: src/engine/engine.cpp:2636 +#, c-format +msgid "Instrument %d" +msgstr "" + +#: src/engine/engine.cpp:2710 src/engine/engine.cpp:2727 +#: src/gui/doAction.cpp:825 src/gui/doAction.cpp:843 src/gui/doAction.cpp:1634 +#: src/gui/gui.cpp:6159 src/gui/insEdit.cpp:6860 +msgid "too many wavetables!" +msgstr "" + +#: src/engine/engine.cpp:2752 +#, c-format +msgid "could not seek to end: %s" +msgstr "" + +#: src/engine/engine.cpp:2758 +#, c-format +msgid "could not determine file size: %s" +msgstr "" + +#: src/engine/engine.cpp:2763 +msgid "file size is invalid!" +msgstr "" + +#: src/engine/engine.cpp:2773 +#, c-format +msgid "could not seek to beginning: %s" +msgstr "" + +#: src/engine/engine.cpp:2780 +#, c-format +msgid "could not read entire file: %s" +msgstr "" + +#: src/engine/engine.cpp:2806 +msgid "invalid wavetable header/data!" +msgstr "" + +#: src/engine/engine.cpp:2877 +msgid "premature end of file" +msgstr "" + +#: src/engine/engine.cpp:2904 src/engine/engine.cpp:2926 +#: src/gui/doAction.cpp:909 src/gui/doAction.cpp:921 +msgid "too many samples!" +msgstr "" + +#: src/engine/engine.cpp:2911 +#, c-format +msgid "Sample %d" +msgstr "" + +#: src/engine/engine.cpp:3056 +#, c-format +msgid "no free patterns in channel %d!" +msgstr "" + +#: src/gui/mixer.cpp:28 src/gui/insEdit.cpp:484 +msgid "left" +msgstr "" + +#: src/gui/mixer.cpp:29 src/gui/insEdit.cpp:483 +msgid "right" +msgstr "" + +#: src/gui/mixer.cpp:128 +msgid "input" +msgstr "" + +#: src/gui/mixer.cpp:168 +msgid "output" +msgstr "" + +#: src/gui/mixer.cpp:226 src/gui/mixer.cpp:228 src/gui/editControls.cpp:454 +#: src/gui/guiConst.cpp:593 +msgid "Mixer" +msgstr "" + +#: src/gui/mixer.cpp:229 +msgid "Master Volume" +msgstr "" + +#: src/gui/mixer.cpp:250 src/gui/exportOptions.cpp:90 +#: src/gui/userPresets.cpp:393 src/gui/userPresets.cpp:405 +#: src/gui/settings.cpp:1080 src/gui/settings.cpp:1094 +#: src/gui/waveEdit.cpp:1096 src/gui/sampleEdit.cpp:1128 +#: src/gui/insEdit.cpp:519 +msgid "Invert" +msgstr "" + +#: src/gui/mixer.cpp:268 src/gui/chanOsc.cpp:37 src/gui/userPresets.cpp:417 +#: src/gui/settings.cpp:263 src/gui/settings.cpp:1109 src/gui/settings.cpp:1492 +#: src/gui/settings.cpp:1504 src/gui/settings.cpp:3369 +#: src/gui/settings.cpp:4015 src/gui/findReplace.cpp:687 +#: src/gui/findReplace.cpp:943 src/gui/guiConst.cpp:228 +#: src/gui/sampleEdit.cpp:1003 src/gui/insEdit.cpp:5575 +#: src/gui/insEdit.cpp:5660 src/gui/insEdit.cpp:6920 src/gui/insEdit.cpp:6928 +#: src/gui/insEdit.cpp:6936 src/gui/insEdit.cpp:6946 src/gui/insEdit.cpp:6961 +#: src/gui/insEdit.cpp:6975 src/gui/insEdit.cpp:6987 src/gui/insEdit.cpp:7000 +#: src/gui/insEdit.cpp:7016 src/gui/insEdit.cpp:7022 src/gui/insEdit.cpp:7032 +#: src/gui/insEdit.cpp:7039 src/gui/insEdit.cpp:7045 src/gui/insEdit.cpp:7058 +#: src/gui/insEdit.cpp:7065 src/gui/insEdit.cpp:7072 src/gui/insEdit.cpp:7081 +#: src/gui/insEdit.cpp:7091 src/gui/insEdit.cpp:7099 src/gui/insEdit.cpp:7105 +#: src/gui/insEdit.cpp:7113 src/gui/insEdit.cpp:7120 src/gui/insEdit.cpp:7126 +#: src/gui/insEdit.cpp:7136 src/gui/insEdit.cpp:7148 src/gui/insEdit.cpp:7156 +#: src/gui/insEdit.cpp:7172 src/gui/insEdit.cpp:7177 src/gui/insEdit.cpp:7190 +#: src/gui/insEdit.cpp:7197 src/gui/insEdit.cpp:7208 src/gui/insEdit.cpp:7221 +#: src/gui/insEdit.cpp:7230 src/gui/insEdit.cpp:7237 src/gui/insEdit.cpp:7245 +#: src/gui/insEdit.cpp:7258 src/gui/insEdit.cpp:7263 src/gui/insEdit.cpp:7269 +#: src/gui/insEdit.cpp:7276 src/gui/insEdit.cpp:7284 src/gui/insEdit.cpp:7295 +#: src/gui/insEdit.cpp:7302 src/gui/insEdit.cpp:7310 src/gui/insEdit.cpp:7318 +#: src/gui/insEdit.cpp:7327 src/gui/insEdit.cpp:7335 src/gui/insEdit.cpp:7341 +#: src/gui/insEdit.cpp:7347 src/gui/insEdit.cpp:7353 src/gui/insEdit.cpp:7358 +#: src/gui/insEdit.cpp:7365 src/gui/insEdit.cpp:7372 src/gui/insEdit.cpp:7380 +#: src/gui/insEdit.cpp:7389 src/gui/insEdit.cpp:7397 src/gui/insEdit.cpp:7409 +#: src/gui/insEdit.cpp:7422 src/gui/insEdit.cpp:7433 src/gui/insEdit.cpp:7443 +#: src/gui/insEdit.cpp:7451 src/gui/insEdit.cpp:7461 src/gui/insEdit.cpp:7470 +msgid "Volume" +msgstr "" + +#: src/gui/mixer.cpp:279 src/gui/userPresets.cpp:427 src/gui/settings.cpp:1120 +#: src/gui/guiConst.cpp:229 src/gui/insEdit.cpp:6923 src/gui/insEdit.cpp:6930 +#: src/gui/insEdit.cpp:6941 src/gui/insEdit.cpp:6965 src/gui/insEdit.cpp:7067 +#: src/gui/insEdit.cpp:7108 src/gui/insEdit.cpp:7152 src/gui/insEdit.cpp:7192 +#: src/gui/insEdit.cpp:7212 src/gui/insEdit.cpp:7232 src/gui/insEdit.cpp:7240 +#: src/gui/insEdit.cpp:7253 src/gui/insEdit.cpp:7265 src/gui/insEdit.cpp:7271 +#: src/gui/insEdit.cpp:7287 src/gui/insEdit.cpp:7297 src/gui/insEdit.cpp:7360 +#: src/gui/insEdit.cpp:7392 src/gui/insEdit.cpp:7438 src/gui/insEdit.cpp:7446 +msgid "Panning" +msgstr "" + +#: src/gui/mixer.cpp:290 src/gui/userPresets.cpp:433 src/gui/settings.cpp:1127 +msgid "Front/Rear" +msgstr "" + +#: src/gui/mixer.cpp:299 src/gui/settings.cpp:4208 +msgid "Patchbay" +msgstr "" + +#: src/gui/mixer.cpp:305 +msgid "Automatic patchbay" +msgstr "" + +#: src/gui/mixer.cpp:310 +msgid "Display hidden ports" +msgstr "" + +#: src/gui/mixer.cpp:312 +msgid "Display internal" +msgstr "" + +#: src/gui/mixer.cpp:322 src/gui/mixer.cpp:383 src/gui/settings.cpp:1901 +#: src/gui/settings.cpp:2089 src/gui/songInfo.cpp:69 +msgid "System" +msgstr "" + +#: src/gui/mixer.cpp:354 +msgid "Sample Preview" +msgstr "" + +#: src/gui/mixer.cpp:367 src/gui/editControls.cpp:745 +#: src/gui/editControls.cpp:837 src/gui/editControls.cpp:953 +#: src/gui/editControls.cpp:1093 src/gui/settings.cpp:1490 +#: src/gui/guiConst.cpp:558 +msgid "Metronome" +msgstr "" + +#: src/gui/mixer.cpp:446 +msgid "disconnect all" +msgstr "" + +#: src/gui/editing.cpp:200 +#, c-format +msgid "no data in oldPatMap for channel %d!" +msgstr "" + +#: src/gui/editing.cpp:664 src/gui/editing.cpp:1203 +#, c-format +msgid "invalid clipboard data! failed at line %d char %d" +msgstr "" + +#: src/gui/editing.cpp:1565 src/gui/editing.cpp:1669 +msgid "can't collapse any further!" +msgstr "" + +#: src/gui/editing.cpp:1749 +msgid "can't expand any further!" +msgstr "" + +#: src/gui/editing.cpp:1836 src/gui/editing.cpp:1851 +#, c-format +msgid "copy: %s" +msgstr "" + +#: src/gui/memory.cpp:35 src/gui/settings.cpp:3696 src/gui/settings.cpp:4217 +#: src/gui/guiConst.cpp:613 +msgid "Memory Composition" +msgstr "" + +#: src/gui/memory.cpp:146 +#, c-format +msgid "bank %d" +msgstr "" + +#: src/gui/memory.cpp:175 src/gui/memory.cpp:176 +msgid "no chips with memory" +msgstr "" + +#: src/gui/intro.cpp:89 src/gui/gui.cpp:2345 src/gui/gui.cpp:3746 +#: src/gui/gui.cpp:5019 src/gui/gui.cpp:5041 src/gui/gui.cpp:5479 +#: src/gui/gui.cpp:5781 src/gui/gui.cpp:5791 +#, c-format +msgid "Error while loading file! (%s)" +msgstr "" + +#: src/gui/intro.cpp:122 +msgid "IntroMon X" +msgstr "" + +#: src/gui/intro.cpp:122 +msgid "Intro" +msgstr "" + +#: src/gui/intro.cpp:124 +msgid "Preview" +msgstr "" + +#: src/gui/intro.cpp:176 src/gui/intro.cpp:177 src/gui/intro.cpp:178 +msgid "SORRY NOTHING" +msgstr "" + +#: src/gui/intro.cpp:310 +msgid "hold to skip" +msgstr "" + +#: src/gui/dataList.cpp:76 +msgid "Bug!" +msgstr "" + +#: src/gui/dataList.cpp:79 src/gui/util.cpp:107 src/gui/util.cpp:109 +#: src/gui/settings.cpp:4220 src/gui/insEdit.cpp:5334 +msgid "Unknown" +msgstr "" + +#: src/gui/dataList.cpp:136 src/gui/dataList.cpp:260 +msgid "duplicate" +msgstr "" + +#: src/gui/dataList.cpp:139 src/gui/dataList.cpp:263 src/gui/dataList.cpp:388 +#: src/gui/dataList.cpp:731 src/gui/dataList.cpp:867 +msgid "replace..." +msgstr "" + +#: src/gui/dataList.cpp:142 src/gui/dataList.cpp:266 src/gui/gui.cpp:4232 +msgid "save" +msgstr "" + +#: src/gui/dataList.cpp:145 +msgid "save (.dmp)" +msgstr "" + +#: src/gui/dataList.cpp:148 src/gui/dataList.cpp:269 src/gui/dataList.cpp:617 +#: src/gui/dataList.cpp:994 src/gui/dataList.cpp:1040 +#: src/gui/editControls.cpp:50 src/gui/gui.cpp:2767 src/gui/gui.cpp:2776 +msgid "delete" +msgstr "" + +#: src/gui/dataList.cpp:243 +msgid "out of memory for this sample!" +msgstr "" + +#: src/gui/dataList.cpp:254 +msgid "make instrument" +msgstr "" + +#: src/gui/dataList.cpp:257 +msgid "make me a drum kit" +msgstr "" + +#: src/gui/dataList.cpp:290 src/gui/dataList.cpp:593 src/gui/gui.cpp:5914 +msgid "Instruments" +msgstr "" + +#: src/gui/dataList.cpp:312 src/gui/dataList.cpp:714 src/gui/dataList.cpp:846 +#: src/gui/subSongs.cpp:88 src/gui/insEdit.cpp:520 +msgid "Add" +msgstr "" + +#: src/gui/dataList.cpp:338 src/gui/dataList.cpp:721 src/gui/dataList.cpp:853 +#: src/gui/subSongs.cpp:108 +msgid "Duplicate" +msgstr "" + +#: src/gui/dataList.cpp:359 src/gui/dataList.cpp:728 src/gui/dataList.cpp:860 +#: src/gui/editControls.cpp:497 src/gui/waveEdit.cpp:435 +#: src/gui/waveEdit.cpp:467 src/gui/sampleEdit.cpp:122 +#: src/gui/sampleEdit.cpp:171 src/gui/insEdit.cpp:5239 src/gui/insEdit.cpp:5304 +msgid "Open" +msgstr "" + +#: src/gui/dataList.cpp:363 +msgid "replace instrument..." +msgstr "" + +#: src/gui/dataList.cpp:366 +msgid "load instrument from TX81Z" +msgstr "" + +#: src/gui/dataList.cpp:372 +msgid "replace wavetable..." +msgstr "" + +#: src/gui/dataList.cpp:378 +msgid "replace sample..." +msgstr "" + +#: src/gui/dataList.cpp:381 +msgid "import raw sample..." +msgstr "" + +#: src/gui/dataList.cpp:384 +msgid "import raw sample (replace)..." +msgstr "" + +#: src/gui/dataList.cpp:392 +msgid "load from TX81Z" +msgstr "" + +#: src/gui/dataList.cpp:399 +msgid "Open (insert; right-click to replace)" +msgstr "" + +#: src/gui/dataList.cpp:420 src/gui/dataList.cpp:741 src/gui/dataList.cpp:884 +#: src/gui/editControls.cpp:502 src/gui/waveEdit.cpp:474 +#: src/gui/sampleEdit.cpp:184 src/gui/insEdit.cpp:5311 +msgid "Save" +msgstr "" + +#: src/gui/dataList.cpp:424 +msgid "save instrument as .dmp..." +msgstr "" + +#: src/gui/dataList.cpp:430 +msgid "save wavetable as .dmw..." +msgstr "" + +#: src/gui/dataList.cpp:433 +msgid "save raw wavetable..." +msgstr "" + +#: src/gui/dataList.cpp:439 +msgid "save raw sample..." +msgstr "" + +#: src/gui/dataList.cpp:443 src/gui/insEdit.cpp:5314 +msgid "save as .dmp..." +msgstr "" + +#: src/gui/dataList.cpp:456 src/gui/dataList.cpp:761 src/gui/dataList.cpp:903 +msgid "Toggle folders/standard view" +msgstr "" + +#: src/gui/dataList.cpp:478 src/gui/dataList.cpp:769 src/gui/dataList.cpp:911 +#: src/gui/subSongs.cpp:55 +msgid "Move up" +msgstr "" + +#: src/gui/dataList.cpp:499 src/gui/dataList.cpp:776 src/gui/dataList.cpp:918 +#: src/gui/subSongs.cpp:62 +msgid "Move down" +msgstr "" + +#: src/gui/dataList.cpp:510 src/gui/dataList.cpp:787 src/gui/dataList.cpp:929 +msgid "Create" +msgstr "" + +#: src/gui/dataList.cpp:540 src/gui/dataList.cpp:797 src/gui/dataList.cpp:939 +msgid "New folder" +msgstr "" + +#: src/gui/dataList.cpp:549 src/gui/dataList.cpp:947 +msgid "Preview (right click to stop)" +msgstr "" + +#: src/gui/dataList.cpp:576 src/gui/dataList.cpp:807 src/gui/dataList.cpp:959 +#: src/gui/guiConst.cpp:666 src/gui/sampleEdit.cpp:1105 +msgid "Delete" +msgstr "" + +#: src/gui/dataList.cpp:608 src/gui/dataList.cpp:985 src/gui/dataList.cpp:1031 +msgid "" +msgstr "" + +#: src/gui/dataList.cpp:614 src/gui/dataList.cpp:991 src/gui/dataList.cpp:1037 +msgid "rename..." +msgstr "" + +#: src/gui/dataList.cpp:663 src/gui/dataList.cpp:707 src/gui/gui.cpp:5923 +msgid "Wavetables" +msgstr "" + +#: src/gui/dataList.cpp:674 src/gui/dataList.cpp:839 src/gui/xyOsc.cpp:68 +#: src/gui/sampleEdit.cpp:898 src/gui/sampleEdit.cpp:1072 src/gui/gui.cpp:5932 +msgid "Samples" +msgstr "" + +#: src/gui/dataList.cpp:745 src/gui/waveEdit.cpp:477 +msgid "save as .dmw..." +msgstr "" + +#: src/gui/dataList.cpp:748 src/gui/dataList.cpp:891 src/gui/waveEdit.cpp:480 +#: src/gui/sampleEdit.cpp:187 +msgid "save raw..." +msgstr "" + +#: src/gui/dataList.cpp:871 src/gui/sampleEdit.cpp:174 +msgid "import raw..." +msgstr "" + +#: src/gui/dataList.cpp:874 +msgid "import raw (replace)..." +msgstr "" + +#: src/gui/exportOptions.cpp:29 +msgid "Export type:" +msgstr "" + +#: src/gui/exportOptions.cpp:32 +msgid "one file" +msgstr "" + +#: src/gui/exportOptions.cpp:35 +msgid "multiple files (one per chip)" +msgstr "" + +#: src/gui/exportOptions.cpp:38 +msgid "multiple files (one per channel)" +msgstr "" + +#: src/gui/exportOptions.cpp:44 +msgid "Bit depth:" +msgstr "" + +#: src/gui/exportOptions.cpp:46 +msgid "16-bit integer" +msgstr "" + +#: src/gui/exportOptions.cpp:49 +msgid "32-bit float" +msgstr "" + +#: src/gui/exportOptions.cpp:55 src/gui/settings.cpp:1352 src/gui/gui.cpp:6270 +msgid "Sample rate" +msgstr "" + +#: src/gui/exportOptions.cpp:61 +msgid "Channels in file" +msgstr "" + +#: src/gui/exportOptions.cpp:67 src/gui/settings.cpp:930 +msgid "Loops" +msgstr "" + +#: src/gui/exportOptions.cpp:70 src/gui/settings.cpp:935 +msgid "Fade out (seconds)" +msgstr "" + +#: src/gui/exportOptions.cpp:76 +msgid "Channels to export:" +msgstr "" + +#: src/gui/exportOptions.cpp:78 src/gui/effectList.cpp:32 src/gui/gui.cpp:6186 +msgid "All" +msgstr "" + +#: src/gui/exportOptions.cpp:84 src/gui/sysConf.cpp:1870 +#: src/gui/effectList.cpp:34 src/gui/compatFlags.cpp:219 +#: src/gui/waveEdit.cpp:37 src/gui/gui.cpp:6192 src/gui/insEdit.cpp:518 +msgid "None" +msgstr "" + +#: src/gui/exportOptions.cpp:110 src/gui/exportOptions.cpp:214 +#: src/gui/exportOptions.cpp:225 src/gui/exportOptions.cpp:243 +#: src/gui/exportOptions.cpp:266 src/gui/exportOptions.cpp:297 +#: src/gui/exportOptions.cpp:318 src/gui/exportOptions.cpp:341 +#: src/gui/commandPalette.cpp:199 src/gui/settings.cpp:6673 +#: src/gui/newSong.cpp:273 src/gui/gui.cpp:5669 src/gui/gui.cpp:5693 +#: src/gui/gui.cpp:5717 src/gui/gui.cpp:5741 src/gui/gui.cpp:5765 +#: src/gui/gui.cpp:5796 src/gui/gui.cpp:5855 src/gui/gui.cpp:6229 +#: src/gui/gui.cpp:6353 +msgid "Cancel" +msgstr "" + +#: src/gui/exportOptions.cpp:115 src/gui/exportOptions.cpp:217 +#: src/gui/exportOptions.cpp:246 src/gui/exportOptions.cpp:300 +#: src/gui/exportOptions.cpp:321 src/gui/exportOptions.cpp:344 +#: src/gui/editControls.cpp:512 src/gui/userPresets.cpp:523 +#: src/gui/settings.cpp:1242 src/gui/settings.cpp:2165 +#: src/gui/settings.cpp:2557 src/gui/settings.cpp:3800 src/gui/guiConst.cpp:536 +#: src/gui/gui.cpp:5578 src/gui/gui.cpp:5630 +msgid "Export" +msgstr "" + +#: src/gui/exportOptions.cpp:130 +msgid "select at least one channel" +msgstr "" + +#: src/gui/exportOptions.cpp:137 +msgid "settings:" +msgstr "" + +#: src/gui/exportOptions.cpp:138 +msgid "format version" +msgstr "" + +#: src/gui/exportOptions.cpp:146 src/gui/exportOptions.cpp:238 +#: src/gui/insEdit.cpp:362 +msgid "loop" +msgstr "" + +#: src/gui/exportOptions.cpp:148 +msgid "loop trail:" +msgstr "" + +#: src/gui/exportOptions.cpp:150 +msgid "auto-detect" +msgstr "" + +#: src/gui/exportOptions.cpp:153 +msgid "add one loop" +msgstr "" + +#: src/gui/exportOptions.cpp:156 +msgid "custom" +msgstr "" + +#: src/gui/exportOptions.cpp:167 +msgid "add pattern change hints" +msgstr "" + +#: src/gui/exportOptions.cpp:170 +msgid "" +"inserts data blocks on pattern changes.\n" +"useful if you are writing a playback routine.\n" +"\n" +"the format of a pattern change data block is:\n" +"67 66 FE ll ll ll ll 01 oo rr pp pp pp ...\n" +"- ll: length, a 32-bit little-endian number\n" +"- oo: order\n" +"- rr: initial row (a 0Dxx effect is able to select a different row)\n" +"- pp: pattern index (one per channel)\n" +"\n" +"pattern indexes are ordered as they appear in the song." +msgstr "" + +#: src/gui/exportOptions.cpp:183 +msgid "direct stream mode" +msgstr "" + +#: src/gui/exportOptions.cpp:186 +msgid "" +"required for DualPCM and MSM6258 export.\n" +"\n" +"allows for volume/direction changes when playing samples,\n" +"at the cost of a massive increase in file size." +msgstr "" + +#: src/gui/exportOptions.cpp:191 +msgid "chips to export:" +msgstr "" + +#: src/gui/exportOptions.cpp:200 +#, c-format +msgid "this chip is only available in VGM %d.%.2x and higher!" +msgstr "" + +#: src/gui/exportOptions.cpp:204 +msgid "this chip is not supported by the VGM format!" +msgstr "" + +#: src/gui/exportOptions.cpp:210 +#, c-format +msgid "select the chip you wish to export, but only up to %d of each type." +msgstr "" + +#: src/gui/exportOptions.cpp:222 +msgid "nothing to export" +msgstr "" + +#: src/gui/exportOptions.cpp:233 +msgid "Commander X16 Zsound Music File" +msgstr "" + +#: src/gui/exportOptions.cpp:234 +msgid "Tick Rate (Hz)" +msgstr "" + +#: src/gui/exportOptions.cpp:240 +msgid "optimize size" +msgstr "" + +#: src/gui/exportOptions.cpp:256 src/gui/editControls.cpp:630 +msgid "" +"this is NOT ROM export! only use for making sure the\n" +"Furnace Amiga emulator is working properly by\n" +"comparing it with real Amiga output." +msgstr "" + +#: src/gui/exportOptions.cpp:261 src/gui/editControls.cpp:635 +#: src/gui/settings.cpp:3925 +msgid "Directory" +msgstr "" + +#: src/gui/exportOptions.cpp:269 src/gui/editControls.cpp:638 +msgid "Bake Data" +msgstr "" + +#: src/gui/exportOptions.cpp:284 src/gui/editControls.cpp:653 +#, c-format +msgid "Done! Baked %d files." +msgstr "" + +#: src/gui/exportOptions.cpp:293 +msgid "this option exports the song to a text file.\n" +msgstr "" + +#: src/gui/exportOptions.cpp:310 +msgid "" +"this option exports a text or binary file which\n" +"contains a dump of the internal command stream\n" +"produced when playing the song.\n" +"\n" +"technical/development use only!" +msgstr "" + +#: src/gui/exportOptions.cpp:331 +msgid "" +"export in DefleMask module format.\n" +"only do it if you really, really need to, or are downgrading an existing ." +"dmf." +msgstr "" + +#: src/gui/exportOptions.cpp:335 +msgid "format version:" +msgstr "" + +#: src/gui/exportOptions.cpp:336 +msgid "1.1.3 and higher" +msgstr "" + +#: src/gui/exportOptions.cpp:337 +msgid "1.0/legacy (0.12)" +msgstr "" + +#: src/gui/exportOptions.cpp:357 src/gui/settings.cpp:1253 +#: src/gui/settings.cpp:3929 +msgid "Audio" +msgstr "" + +#: src/gui/exportOptions.cpp:361 src/gui/settings.cpp:3931 +msgid "VGM" +msgstr "" + +#: src/gui/exportOptions.cpp:370 src/gui/settings.cpp:3932 +msgid "ZSM" +msgstr "" + +#: src/gui/exportOptions.cpp:380 +msgid "Amiga Validation" +msgstr "" + +#: src/gui/exportOptions.cpp:385 src/gui/settings.cpp:2959 +#: src/gui/settings.cpp:3891 +msgid "Text" +msgstr "" + +#: src/gui/exportOptions.cpp:389 +msgid "Command Stream" +msgstr "" + +#: src/gui/exportOptions.cpp:393 +msgid "DMF" +msgstr "" + +#: src/gui/exportOptions.cpp:422 +msgid "congratulations! you've unlocked a secret panel." +msgstr "" + +#: src/gui/exportOptions.cpp:423 +msgid "Toggle hidden systems" +msgstr "" + +#: src/gui/exportOptions.cpp:427 +msgid "Toggle all instrument types" +msgstr "" + +#: src/gui/exportOptions.cpp:431 +msgid "Set pitch linearity to Partial" +msgstr "" + +#: src/gui/exportOptions.cpp:435 +msgid "Enable multi-threading settings" +msgstr "" + +#: src/gui/exportOptions.cpp:439 +msgid "Set fat to max" +msgstr "" + +#: src/gui/exportOptions.cpp:446 +msgid "Set muscle and fat to zero" +msgstr "" + +#: src/gui/exportOptions.cpp:453 +msgid "Tell tildearrow this must be a mistake" +msgstr "" + +#: src/gui/exportOptions.cpp:454 +msgid "" +"yeah, it's a bug. write a bug report in the GitHub page and tell me how did " +"you get here." +msgstr "" + +#: src/gui/speed.cpp:32 src/gui/speed.cpp:102 src/gui/editControls.cpp:532 +#: src/gui/sysConf.cpp:2148 src/gui/guiConst.cpp:232 src/gui/guiConst.cpp:581 +#: src/gui/insEdit.cpp:2028 src/gui/insEdit.cpp:5693 src/gui/insEdit.cpp:6885 +msgid "Speed" +msgstr "" + +#: src/gui/speed.cpp:41 +msgid "Base Tempo##TempoOrHz" +msgstr "" + +#: src/gui/speed.cpp:41 +msgid "Tick Rate##TempoOrHz" +msgstr "" + +#: src/gui/speed.cpp:46 +msgid "click to display tick rate" +msgstr "" + +#: src/gui/speed.cpp:48 +msgid "click to display base tempo" +msgstr "" + +#: src/gui/speed.cpp:80 +msgid "Groove" +msgstr "" + +#: src/gui/speed.cpp:87 +msgid "click for one speed" +msgstr "" + +#: src/gui/speed.cpp:90 +msgid "Speeds" +msgstr "" + +#: src/gui/speed.cpp:99 +msgid "click for groove pattern" +msgstr "" + +#: src/gui/speed.cpp:110 +msgid "click for two (alternating) speeds" +msgstr "" + +#: src/gui/speed.cpp:168 +msgid "Virtual Tempo" +msgstr "" + +#: src/gui/speed.cpp:177 +msgid "Numerator" +msgstr "" + +#: src/gui/speed.cpp:187 +msgid "Denominator (set to base tempo)" +msgstr "" + +#: src/gui/speed.cpp:193 +msgid "Divider" +msgstr "" + +#: src/gui/speed.cpp:208 +msgid "Highlight" +msgstr "" + +#: src/gui/speed.cpp:231 +msgid "Pattern Length" +msgstr "" + +#: src/gui/speed.cpp:245 +msgid "Song Length" +msgstr "" + +#: src/gui/channels.cpp:40 src/gui/editControls.cpp:446 +#: src/gui/guiConst.cpp:601 src/gui/gui.cpp:6280 +msgid "Channels" +msgstr "" + +#: src/gui/channels.cpp:49 +msgid "Pat" +msgstr "" + +#: src/gui/channels.cpp:51 src/gui/editControls.cpp:550 +msgid "Osc" +msgstr "" + +#: src/gui/channels.cpp:53 +msgid "Swap" +msgstr "" + +#: src/gui/channels.cpp:55 src/gui/userPresets.cpp:368 +#: src/gui/effectList.cpp:45 src/gui/subSongs.cpp:125 src/gui/settings.cpp:1060 +#: src/gui/settings.cpp:4383 src/gui/sampleEdit.cpp:195 src/gui/songInfo.cpp:40 +#: src/gui/sysManager.cpp:54 src/gui/insEdit.cpp:5288 +msgid "Name" +msgstr "" + +#: src/gui/channels.cpp:64 +msgid "Show in pattern" +msgstr "" + +#: src/gui/channels.cpp:71 +msgid "Show in per-channel oscilloscope" +msgstr "" + +#: src/gui/channels.cpp:82 +#, c-format +msgid "" +"%s #%d\n" +"(drag to swap channels)" +msgstr "" + +#: src/gui/commandPalette.cpp:51 src/gui/sysPicker.cpp:35 +#: src/gui/newSong.cpp:133 +msgid "Search..." +msgstr "" + +#: src/gui/commandPalette.cpp:54 +msgid "Search recent files..." +msgstr "" + +#: src/gui/commandPalette.cpp:57 +msgid "Search instruments..." +msgstr "" + +#: src/gui/commandPalette.cpp:60 +msgid "Search samples..." +msgstr "" + +#: src/gui/commandPalette.cpp:63 +msgid "Search instruments (to change to)..." +msgstr "" + +#: src/gui/commandPalette.cpp:66 +msgid "Search chip (to add)..." +msgstr "" + +#: src/gui/commandPalette.cpp:93 src/gui/commandPalette.cpp:167 +msgid "- None -" +msgstr "" + +#: src/gui/commandPalette.cpp:123 src/gui/commandPalette.cpp:179 +#: src/gui/commandPalette.cpp:241 +msgid "invalid command palette type" +msgstr "" + +#: src/gui/regView.cpp:30 src/gui/guiConst.cpp:604 +msgid "Register View" +msgstr "" + +#: src/gui/regView.cpp:38 +msgid "- no register pool available" +msgstr "" + +#: src/gui/log.cpp:25 src/gui/effectList.cpp:84 +msgid "ERROR" +msgstr "" + +#: src/gui/log.cpp:26 +msgid "warning" +msgstr "" + +#: src/gui/log.cpp:27 +msgid "info" +msgstr "" + +#: src/gui/log.cpp:28 src/gui/gui.cpp:4513 +msgid "debug" +msgstr "" + +#: src/gui/log.cpp:29 +msgid "trace" +msgstr "" + +#: src/gui/log.cpp:47 src/gui/settings.cpp:4243 src/gui/guiConst.cpp:605 +msgid "Log Viewer" +msgstr "" + +#: src/gui/log.cpp:48 src/gui/editControls.cpp:750 src/gui/editControls.cpp:883 +#: src/gui/editControls.cpp:1000 +msgid "Follow" +msgstr "" + +#: src/gui/log.cpp:50 src/gui/waveEdit.cpp:681 src/gui/insEdit.cpp:50 +msgid "Level" +msgstr "" + +#: src/gui/log.cpp:68 +msgid "time" +msgstr "" + +#: src/gui/log.cpp:70 +msgid "level" +msgstr "" + +#: src/gui/log.cpp:72 +msgid "message" +msgstr "" + +#: src/gui/pattern.cpp:433 src/gui/editControls.cpp:421 +#: src/gui/editControls.cpp:754 src/gui/editControls.cpp:887 +#: src/gui/editControls.cpp:1015 src/gui/settings.cpp:2344 +#: src/gui/settings.cpp:3297 src/gui/settings.cpp:4100 +#: src/gui/findReplace.cpp:794 src/gui/guiConst.cpp:582 src/gui/gui.cpp:5899 +msgid "Pattern" +msgstr "" + +#: src/gui/pattern.cpp:468 +msgid "there aren't any channels to show." +msgstr "" + +#: src/gui/pattern.cpp:492 +msgid "click for pattern options (effect columns/pattern names/visualizer)" +msgstr "" + +#: src/gui/pattern.cpp:504 +msgid "Options:" +msgstr "" + +#: src/gui/pattern.cpp:506 +msgid "Effect columns/collapse" +msgstr "" + +#: src/gui/pattern.cpp:507 +msgid "Pattern names" +msgstr "" + +#: src/gui/pattern.cpp:508 +msgid "Channel group hints" +msgstr "" + +#: src/gui/pattern.cpp:509 +msgid "Visualizer" +msgstr "" + +#: src/gui/pattern.cpp:517 +msgid "Channel status:" +msgstr "" + +#: src/gui/pattern.cpp:519 +msgid "No##_PCS0" +msgstr "" + +#: src/gui/pattern.cpp:522 +msgid "Yes##_PCS1" +msgstr "" + +#: src/gui/pattern.cpp:1420 src/gui/pattern.cpp:1452 +msgid "WARNING!!" +msgstr "" + +#: src/gui/pattern.cpp:1422 src/gui/pattern.cpp:1459 +msgid "this instrument cannot be previewed because" +msgstr "" + +#: src/gui/pattern.cpp:1423 src/gui/pattern.cpp:1466 +msgid "none of the chips can play it" +msgstr "" + +#: src/gui/pattern.cpp:1424 src/gui/pattern.cpp:1473 +msgid "your instrument is in peril!! be careful..." +msgstr "" + +#: src/gui/osc.cpp:169 src/gui/settings.cpp:3710 src/gui/settings.cpp:3937 +msgid "Oscilloscope" +msgstr "" + +#: src/gui/osc.cpp:176 +#, c-format +msgid "zoom: %.2fx (%.1fdB)" +msgstr "" + +#: src/gui/osc.cpp:187 +#, c-format +msgid "window size: %.1fms" +msgstr "" + +#: src/gui/osc.cpp:385 +msgid "(-Infinity)dB" +msgstr "" + +#: src/gui/debugWindow.cpp:66 src/gui/editControls.cpp:610 +msgid "Debug" +msgstr "" + +#: src/gui/debugWindow.cpp:663 +msgid "This is a language test." +msgstr "" + +#: src/gui/debugWindow.cpp:664 +msgid "This is another language test." +msgstr "" + +#: src/gui/debugWindow.cpp:720 +#, c-format +msgid "%d apple" +msgid_plural "%d apples" +msgstr[0] "" + +#: src/gui/chanOsc.cpp:32 +msgid "None (0%)" +msgstr "" + +#: src/gui/chanOsc.cpp:33 +msgid "None (50%)" +msgstr "" + +#: src/gui/chanOsc.cpp:34 +msgid "None (100%)" +msgstr "" + +#: src/gui/chanOsc.cpp:36 +msgid "Frequency" +msgstr "" + +#: src/gui/chanOsc.cpp:38 src/gui/settings.cpp:1667 src/gui/settings.cpp:3406 +#: src/gui/settings.cpp:4088 +msgid "Channel" +msgstr "" + +#: src/gui/chanOsc.cpp:39 +msgid "Brightness" +msgstr "" + +#: src/gui/chanOsc.cpp:41 +msgid "Note Trigger" +msgstr "" + +#: src/gui/chanOsc.cpp:45 +msgid "Off" +msgstr "" + +#: src/gui/chanOsc.cpp:46 +msgid "Mode 1" +msgstr "" + +#: src/gui/chanOsc.cpp:47 +msgid "Mode 2" +msgstr "" + +#: src/gui/chanOsc.cpp:48 +msgid "Mode 3" +msgstr "" + +#: src/gui/chanOsc.cpp:135 src/gui/guiConst.cpp:607 +msgid "Oscilloscope (per-channel)" +msgstr "" + +#: src/gui/chanOsc.cpp:143 +msgid "Columns" +msgstr "" + +#: src/gui/chanOsc.cpp:152 +msgid "Size (ms)" +msgstr "" + +#: src/gui/chanOsc.cpp:163 +msgid "Automatic columns" +msgstr "" + +#: src/gui/chanOsc.cpp:177 +msgid "Center waveform" +msgstr "" + +#: src/gui/chanOsc.cpp:183 +msgid "Randomize phase on note" +msgstr "" + +#: src/gui/chanOsc.cpp:189 +msgid "Amplitude" +msgstr "" + +#: src/gui/chanOsc.cpp:199 src/gui/settings.cpp:3747 +msgid "Line size" +msgstr "" + +#: src/gui/chanOsc.cpp:211 +msgid "Gradient" +msgstr "" + +#: src/gui/chanOsc.cpp:218 +msgid "error while creating gradient texture!" +msgstr "" + +#: src/gui/chanOsc.cpp:236 +msgid "error while updating gradient texture!" +msgstr "" + +#: src/gui/chanOsc.cpp:292 src/gui/chanOsc.cpp:348 src/gui/settings.cpp:3793 +msgid "Color" +msgstr "" + +#: src/gui/chanOsc.cpp:296 +msgid "Distance" +msgstr "" + +#: src/gui/chanOsc.cpp:305 +msgid "Spread" +msgstr "" + +#: src/gui/chanOsc.cpp:314 src/gui/userPresets.cpp:370 src/gui/subSongs.cpp:121 +#: src/gui/settings.cpp:2281 src/gui/sysManager.cpp:124 +msgid "Remove" +msgstr "" + +#: src/gui/chanOsc.cpp:338 src/gui/settings.cpp:3885 src/gui/settings.cpp:4165 +#: src/gui/settings.cpp:4192 src/gui/settings.cpp:4218 +msgid "Background" +msgstr "" + +#: src/gui/chanOsc.cpp:341 +msgid "X Axis##AxisX" +msgstr "" + +#: src/gui/chanOsc.cpp:342 +msgid "Y Axis##AxisY" +msgstr "" + +#: src/gui/chanOsc.cpp:352 +msgid "Text format:" +msgstr "" + +#: src/gui/chanOsc.cpp:358 +msgid "" +"format guide:\n" +"- %c: channel name\n" +"- %C: channel short name\n" +"- %d: channel number (starting from 0)\n" +"- %D: channel number (starting from 1)\n" +"- %n: channel note\n" +"- %i: instrument name\n" +"- %I: instrument number (decimal)\n" +"- %x: instrument number (hex)\n" +"- %s: chip name\n" +"- %p: chip part number\n" +"- %S: chip ID\n" +"- %v: volume (decimal)\n" +"- %V: volume (percentage)\n" +"- %b: volume (hex)\n" +"- %l: new line\n" +"- %%: percent sign" +msgstr "" + +#: src/gui/chanOsc.cpp:380 +msgid "Text color" +msgstr "" + +#: src/gui/chanOsc.cpp:382 src/gui/xyOsc.cpp:80 src/gui/settings.cpp:6672 +#: src/gui/tutorial.cpp:689 src/gui/gui.cpp:5639 src/gui/gui.cpp:6055 +#: src/gui/gui.cpp:6223 src/gui/gui.cpp:6322 src/gui/gui.cpp:6371 +msgid "OK" +msgstr "" + +#: src/gui/chanOsc.cpp:400 +msgid "creating chan osc work pool" +msgstr "" + +#: src/gui/chanOsc.cpp:429 +#, c-format +msgid "creating FFT plan for channel %d" +msgstr "" + +#: src/gui/chanOsc.cpp:436 +msgid "failed to create plan!" +msgstr "" + +#: src/gui/chanOsc.cpp:438 +msgid "failed to create inverse plan!" +msgstr "" + +#: src/gui/chanOsc.cpp:440 +msgid "failed to create FFT buffers" +msgstr "" + +#: src/gui/chanOsc.cpp:585 +msgid "Error!" +msgstr "" + +#: src/gui/editControls.cpp:47 src/gui/sampleEdit.cpp:1736 src/gui/gui.cpp:2733 +#: src/gui/insEdit.cpp:363 +msgid "cut" +msgstr "" + +#: src/gui/editControls.cpp:48 src/gui/sampleEdit.cpp:1740 src/gui/gui.cpp:2734 +#: src/gui/insEdit.cpp:7538 +msgid "copy" +msgstr "" + +#: src/gui/editControls.cpp:49 src/gui/sampleEdit.cpp:1744 src/gui/gui.cpp:2735 +#: src/gui/gui.cpp:2788 src/gui/insEdit.cpp:7543 +msgid "paste" +msgstr "" + +#: src/gui/editControls.cpp:51 +msgid "" +"select\n" +"all" +msgstr "" + +#: src/gui/editControls.cpp:52 +msgid "piano" +msgstr "" + +#: src/gui/editControls.cpp:53 src/gui/gui.cpp:4429 +msgid "undo" +msgstr "" + +#: src/gui/editControls.cpp:54 src/gui/gui.cpp:4430 +msgid "redo" +msgstr "" + +#: src/gui/editControls.cpp:57 +msgid "" +"paste\n" +"mix" +msgstr "" + +#: src/gui/editControls.cpp:58 +msgid "" +"paste\n" +"mix bg" +msgstr "" + +#: src/gui/editControls.cpp:59 +msgid "" +"paste\n" +"ins" +msgstr "" + +#: src/gui/editControls.cpp:60 +msgid "" +"paste\n" +"ins bg" +msgstr "" + +#: src/gui/editControls.cpp:61 +msgid "" +"paste\n" +"flood" +msgstr "" + +#: src/gui/editControls.cpp:62 +msgid "" +"paste\n" +"overflow" +msgstr "" + +#: src/gui/editControls.cpp:63 +msgid "" +"transpose\n" +"notes" +msgstr "" + +#: src/gui/editControls.cpp:64 +msgid "" +"transpose\n" +"values" +msgstr "" + +#: src/gui/editControls.cpp:67 +msgid "" +"change\n" +"ins" +msgstr "" + +#: src/gui/editControls.cpp:68 +msgid "" +"find/\n" +"replace" +msgstr "" + +#: src/gui/editControls.cpp:69 src/gui/gui.cpp:3063 +msgid "collapse" +msgstr "" + +#: src/gui/editControls.cpp:70 src/gui/gui.cpp:3064 +msgid "expand" +msgstr "" + +#: src/gui/editControls.cpp:71 src/gui/gui.cpp:2820 +msgid "flip" +msgstr "" + +#: src/gui/editControls.cpp:72 src/gui/insEdit.cpp:430 +msgid "invert" +msgstr "" + +#: src/gui/editControls.cpp:73 src/gui/gui.cpp:2800 src/gui/gui.cpp:2960 +msgid "interpolate" +msgstr "" + +#: src/gui/editControls.cpp:74 src/gui/gui.cpp:2812 src/gui/insEdit.cpp:7610 +msgid "scale" +msgstr "" + +#: src/gui/editControls.cpp:77 src/gui/gui.cpp:2804 +msgid "fade" +msgstr "" + +#: src/gui/editControls.cpp:78 src/gui/gui.cpp:2816 src/gui/insEdit.cpp:7639 +msgid "randomize" +msgstr "" + +#: src/gui/editControls.cpp:79 +msgid "opmask" +msgstr "" + +#: src/gui/editControls.cpp:80 +msgid "" +"scroll\n" +"mode" +msgstr "" + +#: src/gui/editControls.cpp:81 +msgid "" +"input\n" +"latch" +msgstr "" + +#: src/gui/editControls.cpp:82 +msgid "" +"set\n" +"latch" +msgstr "" + +#: src/gui/editControls.cpp:83 +msgid "" +"clear\n" +"latch" +msgstr "" + +#: src/gui/editControls.cpp:84 src/gui/findReplace.cpp:43 +#: src/gui/insEdit.cpp:7557 +msgid "clear" +msgstr "" + +#: src/gui/editControls.cpp:333 +msgid "Mobile Controls" +msgstr "" + +#: src/gui/editControls.cpp:408 +msgid "Mobile Menu" +msgstr "" + +#: src/gui/editControls.cpp:425 src/gui/editControls.cpp:752 +#: src/gui/editControls.cpp:885 src/gui/editControls.cpp:1007 +#: src/gui/settings.cpp:2485 src/gui/settings.cpp:3271 +#: src/gui/settings.cpp:3975 src/gui/orders.cpp:232 src/gui/guiConst.cpp:577 +#: src/gui/gui.cpp:5888 +msgid "Orders" +msgstr "" + +#: src/gui/editControls.cpp:429 src/gui/findReplace.cpp:669 +#: src/gui/findReplace.cpp:914 +msgid "Ins" +msgstr "" + +#: src/gui/editControls.cpp:442 src/gui/findReplace.cpp:788 +#: src/gui/guiConst.cpp:230 +msgid "Song" +msgstr "" + +#: src/gui/editControls.cpp:450 src/gui/sampleEdit.cpp:494 +msgid "Chips" +msgstr "" + +#: src/gui/editControls.cpp:458 src/gui/settings.cpp:2117 +#: src/gui/settings.cpp:3934 src/gui/settings.cpp:4018 +#: src/gui/compatFlags.cpp:319 +msgid "Other" +msgstr "" + +#: src/gui/editControls.cpp:487 src/gui/guiConst.cpp:531 +msgid "New" +msgstr "" + +#: src/gui/editControls.cpp:491 src/gui/doAction.cpp:38 src/gui/gui.cpp:4194 +msgid "Unsaved changes! Save changes before creating a new song?" +msgstr "" + +#: src/gui/editControls.cpp:507 +msgid "Save as..." +msgstr "" + +#: src/gui/editControls.cpp:516 src/gui/gui.cpp:1680 +msgid "Restore Backup" +msgstr "" + +#: src/gui/editControls.cpp:524 +msgid "Song Info" +msgstr "" + +#: src/gui/editControls.cpp:528 src/gui/subSongs.cpp:17 +#: src/gui/guiConst.cpp:608 +msgid "Subsongs" +msgstr "" + +#: src/gui/editControls.cpp:541 +msgid "Channels here..." +msgstr "" + +#: src/gui/editControls.cpp:544 +msgid "Chips here..." +msgstr "" + +#: src/gui/editControls.cpp:547 +msgid "What the hell..." +msgstr "" + +#: src/gui/editControls.cpp:554 +msgid "ChanOsc" +msgstr "" + +#: src/gui/editControls.cpp:558 +msgid "RegView" +msgstr "" + +#: src/gui/editControls.cpp:562 +msgid "Stats" +msgstr "" + +#: src/gui/editControls.cpp:566 src/gui/guiConst.cpp:611 src/gui/grooves.cpp:35 +msgid "Grooves" +msgstr "" + +#: src/gui/editControls.cpp:569 +msgid "Compat Flags" +msgstr "" + +#: src/gui/editControls.cpp:573 +msgid "XYOsc" +msgstr "" + +#: src/gui/editControls.cpp:577 +msgid "Meter" +msgstr "" + +#: src/gui/editControls.cpp:581 +msgid "Memory" +msgstr "" + +#: src/gui/editControls.cpp:585 +msgid "CV" +msgstr "" + +#: src/gui/editControls.cpp:589 +msgid "Presets" +msgstr "" + +#: src/gui/editControls.cpp:593 +msgid "PatManager" +msgstr "" + +#: src/gui/editControls.cpp:599 src/gui/guiConst.cpp:564 +msgid "Panic" +msgstr "" + +#: src/gui/editControls.cpp:601 src/gui/settings.cpp:560 +#: src/gui/guiConst.cpp:589 src/gui/guiConst.cpp:591 src/gui/gui.cpp:4439 +msgid "Settings" +msgstr "" + +#: src/gui/editControls.cpp:606 +msgid "Log" +msgstr "" + +#: src/gui/editControls.cpp:614 src/gui/guiConst.cpp:587 +msgid "About" +msgstr "" + +#: src/gui/editControls.cpp:619 +msgid "Switch to Desktop Mode" +msgstr "" + +#: src/gui/editControls.cpp:673 src/gui/editControls.cpp:784 +#: src/gui/editControls.cpp:904 +msgid "Play/Edit Controls" +msgstr "" + +#: src/gui/editControls.cpp:681 src/gui/editControls.cpp:842 +#: src/gui/editControls.cpp:959 src/gui/editControls.cpp:1125 +msgid "Octave" +msgstr "" + +#: src/gui/editControls.cpp:698 src/gui/editControls.cpp:857 +msgid "Coarse Step" +msgstr "" + +#: src/gui/editControls.cpp:698 src/gui/editControls.cpp:857 +msgid "Edit Step" +msgstr "" + +#: src/gui/editControls.cpp:731 src/gui/editControls.cpp:797 +#: src/gui/editControls.cpp:911 src/gui/editControls.cpp:1048 +#: src/gui/guiConst.cpp:545 +msgid "Play" +msgstr "" + +#: src/gui/editControls.cpp:739 src/gui/editControls.cpp:789 +#: src/gui/editControls.cpp:918 src/gui/editControls.cpp:1040 +#: src/gui/guiConst.cpp:546 +msgid "Stop" +msgstr "" + +#: src/gui/editControls.cpp:742 src/gui/editControls.cpp:826 +#: src/gui/editControls.cpp:943 src/gui/editControls.cpp:1082 +#: src/gui/gui.cpp:4426 +msgid "Edit" +msgstr "" + +#: src/gui/editControls.cpp:757 src/gui/editControls.cpp:816 +#: src/gui/editControls.cpp:934 src/gui/editControls.cpp:1104 +msgid "Repeat pattern" +msgstr "" + +#: src/gui/editControls.cpp:766 src/gui/editControls.cpp:806 +#: src/gui/editControls.cpp:925 src/gui/editControls.cpp:1073 +msgid "Step one row" +msgstr "" + +#: src/gui/editControls.cpp:771 src/gui/editControls.cpp:891 +#: src/gui/editControls.cpp:1020 src/gui/editControls.cpp:1110 +msgid "Poly##PolyInput" +msgstr "" + +#: src/gui/editControls.cpp:771 src/gui/editControls.cpp:891 +#: src/gui/editControls.cpp:1020 src/gui/editControls.cpp:1110 +msgid "Mono##PolyInput" +msgstr "" + +#: src/gui/editControls.cpp:776 src/gui/editControls.cpp:896 +#: src/gui/editControls.cpp:1025 src/gui/editControls.cpp:1115 +msgid "Polyphony" +msgstr "" + +#: src/gui/editControls.cpp:957 +msgid "Oct." +msgstr "" + +#: src/gui/editControls.cpp:974 src/gui/editControls.cpp:1142 +msgid "Coarse" +msgstr "" + +#: src/gui/editControls.cpp:974 src/gui/editControls.cpp:1142 +msgid "Step" +msgstr "" + +#: src/gui/editControls.cpp:998 +msgid "Foll." +msgstr "" + +#: src/gui/editControls.cpp:1003 +msgid "Ord##FollowOrders" +msgstr "" + +#: src/gui/editControls.cpp:1011 +msgid "Pat##FollowPattern" +msgstr "" + +#: src/gui/editControls.cpp:1033 +msgid "Play Controls" +msgstr "" + +#: src/gui/editControls.cpp:1057 +msgid "Play from the beginning of this pattern" +msgstr "" + +#: src/gui/editControls.cpp:1065 +msgid "Repeat from the beginning of this pattern" +msgstr "" + +#: src/gui/editControls.cpp:1122 src/gui/guiConst.cpp:576 +msgid "Edit Controls" +msgstr "" + +#: src/gui/editControls.cpp:1169 src/gui/guiConst.cpp:560 +msgid "Follow orders" +msgstr "" + +#: src/gui/editControls.cpp:1170 src/gui/guiConst.cpp:561 +msgid "Follow pattern" +msgstr "" + +#: src/gui/songNotes.cpp:32 src/gui/guiConst.cpp:600 +msgid "Song Comments" +msgstr "" + +#: src/gui/util.cpp:93 +msgid "" +msgstr "" + +#: src/gui/util.cpp:97 +msgid "Ctrl-" +msgstr "" + +#: src/gui/util.cpp:99 +msgid "Alt-" +msgstr "" + +#: src/gui/util.cpp:100 +msgid "Shift-" +msgstr "" + +#: src/gui/stats.cpp:31 src/gui/guiConst.cpp:597 +msgid "Statistics" +msgstr "" + +#: src/gui/stats.cpp:36 +msgid "Audio load" +msgstr "" + +#: src/gui/xyOsc.cpp:40 src/gui/guiConst.cpp:612 +msgid "Oscilloscope (X-Y)" +msgstr "" + +#: src/gui/xyOsc.cpp:45 +msgid "X Channel" +msgstr "" + +#: src/gui/xyOsc.cpp:51 +msgid "Invert##X" +msgstr "" + +#: src/gui/xyOsc.cpp:52 +msgid "Y Channel" +msgstr "" + +#: src/gui/xyOsc.cpp:58 +msgid "Invert##Y" +msgstr "" + +#: src/gui/xyOsc.cpp:59 src/gui/sampleEdit.cpp:1353 +msgid "Zoom" +msgstr "" + +#: src/gui/xyOsc.cpp:71 +msgid "Decay Time (ms)" +msgstr "" + +#: src/gui/xyOsc.cpp:74 +msgid "Intensity" +msgstr "" + +#: src/gui/xyOsc.cpp:77 +msgid "Line Thickness" +msgstr "" + +#: src/gui/xyOsc.cpp:213 +msgid "(-Infinity)dB,(-Infinity)dB" +msgstr "" + +#: src/gui/xyOsc.cpp:215 +#, c-format +msgid "(-Infinity)dB,%.1fdB" +msgstr "" + +#: src/gui/xyOsc.cpp:217 +#, c-format +msgid "%.1fdB,(-Infinity)dB" +msgstr "" + +#: src/gui/xyOsc.cpp:219 +#, c-format +msgid "%.1fdB,%.1fdB" +msgstr "" + +#: src/gui/sysConf.cpp:49 src/gui/sysConf.cpp:121 src/gui/sysConf.cpp:486 +#: src/gui/sysConf.cpp:604 src/gui/sysConf.cpp:647 src/gui/sysConf.cpp:684 +#: src/gui/sysConf.cpp:843 src/gui/sysConf.cpp:1098 src/gui/sysConf.cpp:1181 +#: src/gui/sysConf.cpp:1220 src/gui/sysConf.cpp:1294 src/gui/sysConf.cpp:1380 +#: src/gui/sysConf.cpp:1444 src/gui/sysConf.cpp:1482 src/gui/sysConf.cpp:1572 +#: src/gui/sysConf.cpp:1668 src/gui/sysConf.cpp:1716 src/gui/sysConf.cpp:1757 +#: src/gui/sysConf.cpp:1810 src/gui/sysConf.cpp:2284 src/gui/sysConf.cpp:2307 +msgid "Clock rate:" +msgstr "" + +#: src/gui/sysConf.cpp:73 src/gui/sysConf.cpp:152 src/gui/sysConf.cpp:911 +#: src/gui/sysConf.cpp:1459 src/gui/sysConf.cpp:1783 +msgid "Chip type:" +msgstr "" + +#: src/gui/sysConf.cpp:75 +msgid "YM3438 (9-bit DAC)" +msgstr "" + +#: src/gui/sysConf.cpp:79 +msgid "YM2612 (9-bit DAC with distortion)" +msgstr "" + +#: src/gui/sysConf.cpp:83 +msgid "YMF276 (external DAC)" +msgstr "" + +#: src/gui/sysConf.cpp:90 src/gui/sysConf.cpp:804 src/gui/sysConf.cpp:1350 +#: src/gui/sysConf.cpp:1420 +msgid "Disable ExtCh FM macros (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:93 src/gui/sysConf.cpp:807 src/gui/sysConf.cpp:1353 +#: src/gui/sysConf.cpp:1423 +msgid "Ins change in ExtCh operator 2-4 affects FB (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:99 +msgid "Modified sine wave (joke)" +msgstr "" + +#: src/gui/sysConf.cpp:123 src/gui/sysConf.cpp:1296 src/gui/sysConf.cpp:1718 +#: src/gui/sysConf.cpp:2286 +msgid "3.58MHz (NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:127 +msgid "3.55MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:131 +msgid "4MHz (BBC Micro)" +msgstr "" + +#: src/gui/sysConf.cpp:135 +msgid "1.79MHz (Half NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:139 +msgid "3MHz (Exed Exes)" +msgstr "" + +#: src/gui/sysConf.cpp:143 +msgid "2MHz (Sega System 1)" +msgstr "" + +#: src/gui/sysConf.cpp:147 +msgid "447KHz (TI-99/4A)" +msgstr "" + +#: src/gui/sysConf.cpp:154 +msgid "Sega VDP/Master System" +msgstr "" + +#: src/gui/sysConf.cpp:162 +msgid "TI SN76489 with Atari-like short noise" +msgstr "" + +#: src/gui/sysConf.cpp:166 +msgid "Game Gear" +msgstr "" + +#: src/gui/sysConf.cpp:170 +msgid "TI SN76489A" +msgstr "" + +#: src/gui/sysConf.cpp:174 +msgid "TI SN76496" +msgstr "" + +#: src/gui/sysConf.cpp:178 +msgid "NCR 8496" +msgstr "" + +#: src/gui/sysConf.cpp:182 +msgid "Tandy PSSJ 3-voice sound" +msgstr "" + +#: src/gui/sysConf.cpp:186 +msgid "TI SN94624" +msgstr "" + +#: src/gui/sysConf.cpp:190 +msgid "TI SN76494" +msgstr "" + +#: src/gui/sysConf.cpp:196 +msgid "Disable noise period change phase reset" +msgstr "" + +#: src/gui/sysConf.cpp:200 src/gui/sysConf.cpp:2190 +msgid "Disable easy period to note mapping on upper octaves" +msgstr "" + +#: src/gui/sysConf.cpp:219 src/gui/sysConf.cpp:583 +msgid "Pseudo-PAL" +msgstr "" + +#: src/gui/sysConf.cpp:222 src/gui/sysConf.cpp:342 +msgid "Disable anti-click" +msgstr "" + +#: src/gui/sysConf.cpp:225 src/gui/sysConf.cpp:345 +msgid "Chip revision:" +msgstr "" + +#: src/gui/sysConf.cpp:227 +msgid "HuC6280 (original)" +msgstr "" + +#: src/gui/sysConf.cpp:231 +msgid "HuC6280A (SuperGrafx)" +msgstr "" + +#: src/gui/sysConf.cpp:257 +msgid "CPU rate:" +msgstr "" + +#: src/gui/sysConf.cpp:259 +msgid "6.18MHz (NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:263 +msgid "5.95MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:268 +msgid "Sample memory:" +msgstr "" + +#: src/gui/sysConf.cpp:270 +msgid "8K (rev A/B/E)" +msgstr "" + +#: src/gui/sysConf.cpp:274 +msgid "64K (rev D/F)" +msgstr "" + +#: src/gui/sysConf.cpp:279 +msgid "DAC resolution:" +msgstr "" + +#: src/gui/sysConf.cpp:281 +msgid "16-bit (rev A/B/D/F)" +msgstr "" + +#: src/gui/sysConf.cpp:285 +msgid "8-bit + TDM (rev C/E)" +msgstr "" + +#: src/gui/sysConf.cpp:290 src/gui/sysConf.cpp:1931 +msgid "Enable echo" +msgstr "" + +#: src/gui/sysConf.cpp:293 +msgid "Swap echo channels" +msgstr "" + +#: src/gui/sysConf.cpp:296 src/gui/sysConf.cpp:1151 +msgid "Echo delay:" +msgstr "" + +#: src/gui/sysConf.cpp:302 +msgid "Echo resolution:" +msgstr "" + +#: src/gui/sysConf.cpp:308 src/gui/sysConf.cpp:1159 +msgid "Echo feedback:" +msgstr "" + +#: src/gui/sysConf.cpp:314 src/gui/sysConf.cpp:1967 +msgid "Echo volume:" +msgstr "" + +#: src/gui/sysConf.cpp:347 +msgid "Original (DMG)" +msgstr "" + +#: src/gui/sysConf.cpp:351 +msgid "Game Boy Color (rev C)" +msgstr "" + +#: src/gui/sysConf.cpp:355 +msgid "Game Boy Color (rev E)" +msgstr "" + +#: src/gui/sysConf.cpp:359 +msgid "Game Boy Advance" +msgstr "" + +#: src/gui/sysConf.cpp:364 +msgid "Wave channel orientation:" +msgstr "" + +#: src/gui/sysConf.cpp:367 src/gui/compatFlags.cpp:298 src/gui/gui.cpp:6067 +#: src/gui/insEdit.cpp:217 src/gui/insEdit.cpp:231 +msgid "Normal" +msgstr "" + +#: src/gui/sysConf.cpp:371 +msgid "Inverted" +msgstr "" + +#: src/gui/sysConf.cpp:378 +msgid "Exact data (inverted)" +msgstr "" + +#: src/gui/sysConf.cpp:382 +msgid "Exact output (normal)" +msgstr "" + +#: src/gui/sysConf.cpp:388 +msgid "" +"Pretty please one more compat flag when I use arpeggio and my sound length" +msgstr "" + +#: src/gui/sysConf.cpp:405 src/gui/sysConf.cpp:438 +msgid "DAC bit depth (reduces output rate):" +msgstr "" + +#: src/gui/sysConf.cpp:426 src/gui/sysConf.cpp:1268 src/gui/sysConf.cpp:1919 +msgid "Volume scale:" +msgstr "" + +#: src/gui/sysConf.cpp:432 +msgid "Mix buffers (allows longer echo delay):" +msgstr "" + +#: src/gui/sysConf.cpp:444 +msgid "Channel limit:" +msgstr "" + +#: src/gui/sysConf.cpp:450 +msgid "Sample rate:" +msgstr "" + +#: src/gui/sysConf.cpp:460 +#, c-format +msgid "Actual sample rate: %d Hz" +msgstr "" + +#: src/gui/sysConf.cpp:462 +#, c-format +msgid "Max mixer CPU usage: %.0f%%" +msgstr "" + +#: src/gui/sysConf.cpp:488 +msgid "NTSC (3.58MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:492 src/gui/sysConf.cpp:557 +msgid "PAL (3.55MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:496 +msgid "Arcade (4MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:500 +msgid "Half NTSC (1.79MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:506 +msgid "Patch set:" +msgstr "" + +#: src/gui/sysConf.cpp:528 +msgid "Ignore top/hi-hat frequency changes" +msgstr "" + +#: src/gui/sysConf.cpp:531 +msgid "Apply fixed frequency to all drums at once" +msgstr "" + +#: src/gui/sysConf.cpp:553 +msgid "NTSC/X16 (3.58MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:561 +msgid "X1/X68000 (4MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:567 src/gui/sysConf.cpp:587 +msgid "Broken pitch macro/slides (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:607 src/gui/sysConf.cpp:650 src/gui/sysConf.cpp:1222 +#: src/gui/sysConf.cpp:2310 +msgid "NTSC (1.79MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:611 src/gui/sysConf.cpp:654 src/gui/sysConf.cpp:1226 +msgid "PAL (1.67MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:615 src/gui/sysConf.cpp:658 src/gui/sysConf.cpp:1230 +msgid "Dendy (1.77MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:621 +msgid "DPCM channel mode:" +msgstr "" + +#: src/gui/sysConf.cpp:624 +msgid "DPCM (muffled samples; low CPU usage)" +msgstr "" + +#: src/gui/sysConf.cpp:628 +msgid "PCM (crisp samples; high CPU usage)" +msgstr "" + +#: src/gui/sysConf.cpp:687 +msgid "NTSC (1.02MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:691 +msgid "PAL (0.99MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:695 +msgid "SSI 2001 (0.89MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:701 src/gui/sysConf.cpp:2320 +msgid "Global parameter priority:" +msgstr "" + +#: src/gui/sysConf.cpp:704 src/gui/sysConf.cpp:2323 +msgid "Left to right" +msgstr "" + +#: src/gui/sysConf.cpp:708 src/gui/sysConf.cpp:2327 +msgid "Last used channel" +msgstr "" + +#: src/gui/sysConf.cpp:714 +msgid "Hard reset envelope:" +msgstr "" + +#: src/gui/sysConf.cpp:716 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:1920 +#: src/gui/insEdit.cpp:6955 src/gui/insEdit.cpp:7481 +msgid "Attack" +msgstr "" + +#: src/gui/sysConf.cpp:721 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:1960 +#: src/gui/insEdit.cpp:6956 src/gui/insEdit.cpp:7482 +msgid "Decay" +msgstr "" + +#: src/gui/sysConf.cpp:726 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:1929 +#: src/gui/insEdit.cpp:6957 src/gui/insEdit.cpp:7483 +msgid "Sustain" +msgstr "" + +#: src/gui/sysConf.cpp:731 src/gui/settings.cpp:3987 src/gui/insEdit.cpp:50 +#: src/gui/insEdit.cpp:604 src/gui/insEdit.cpp:1983 src/gui/insEdit.cpp:6958 +#: src/gui/insEdit.cpp:7484 +msgid "Release" +msgstr "" + +#: src/gui/sysConf.cpp:737 +msgid "Envelope reset time:" +msgstr "" + +#: src/gui/sysConf.cpp:747 +msgid "" +"- 0 disables envelope reset. not recommended!\n" +"- 1 may trigger SID envelope bugs.\n" +"- values that are too high may result in notes being skipped." +msgstr "" + +#: src/gui/sysConf.cpp:749 +msgid "Disable 1Exy env update (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:753 +msgid "Relative duty and cutoff macros are coarse (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:757 +msgid "Cutoff macro race conditions (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:793 +msgid "8MHz (Neo Geo MVS)" +msgstr "" + +#: src/gui/sysConf.cpp:797 +msgid "8.06MHz (Neo Geo AES)" +msgstr "" + +#: src/gui/sysConf.cpp:812 src/gui/sysConf.cpp:1337 src/gui/sysConf.cpp:1407 +msgid "SSG Volume" +msgstr "" + +#: src/gui/sysConf.cpp:818 src/gui/sysConf.cpp:1413 +msgid "FM/ADPCM Volume" +msgstr "" + +#: src/gui/sysConf.cpp:845 +msgid "1.79MHz (ZX Spectrum NTSC/MSX)" +msgstr "" + +#: src/gui/sysConf.cpp:849 +msgid "1.77MHz (ZX Spectrum PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:853 +msgid "0.83MHz (Pre-divided Sunsoft 5B on PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:857 +msgid "0.89MHz (Pre-divided Sunsoft 5B)" +msgstr "" + +#: src/gui/sysConf.cpp:861 +msgid "1MHz (Amstrad CPC)" +msgstr "" + +#: src/gui/sysConf.cpp:865 +msgid "1.10MHz (Gamate/VIC-20 PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:869 +msgid "1.25MHz (Mag Max)" +msgstr "" + +#: src/gui/sysConf.cpp:873 +msgid "1.5MHz (Vectrex)" +msgstr "" + +#: src/gui/sysConf.cpp:877 +msgid "1.536MHz (Kyugo)" +msgstr "" + +#: src/gui/sysConf.cpp:881 +msgid "1.67MHz (?)" +msgstr "" + +#: src/gui/sysConf.cpp:885 +msgid "1.75MHz (ZX Spectrum 48K)" +msgstr "" + +#: src/gui/sysConf.cpp:889 +msgid "1.99MHz (PC-88)" +msgstr "" + +#: src/gui/sysConf.cpp:893 +msgid "2MHz (Atari ST/Sharp X1)" +msgstr "" + +#: src/gui/sysConf.cpp:897 +msgid "2^21Hz (Game Boy)" +msgstr "" + +#: src/gui/sysConf.cpp:901 +msgid "3.58MHz (Darky)" +msgstr "" + +#: src/gui/sysConf.cpp:905 +msgid "3.6MHz (Darky)" +msgstr "" + +#: src/gui/sysConf.cpp:917 +msgid "YM2149(F)" +msgstr "" + +#: src/gui/sysConf.cpp:921 +msgid "Sunsoft 5B" +msgstr "" + +#: src/gui/sysConf.cpp:925 +msgid "AY-3-8914" +msgstr "" + +#: src/gui/sysConf.cpp:931 +msgid "note: AY-3-8914 is not supported by the VGM format!" +msgstr "" + +#: src/gui/sysConf.cpp:935 +msgid "Stereo##_AY_STEREO" +msgstr "" + +#: src/gui/sysConf.cpp:940 +msgid "Separation" +msgstr "" + +#: src/gui/sysConf.cpp:949 +msgid "Half Clock divider##_AY_CLKSEL" +msgstr "" + +#: src/gui/sysConf.cpp:971 +msgid "SAM Coupé (8MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:975 +msgid "NTSC (7.15MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:979 +msgid "PAL (7.09MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:999 +msgid "Stereo separation:" +msgstr "" + +#: src/gui/sysConf.cpp:1006 src/gui/sysConf.cpp:2412 +msgid "Model:" +msgstr "" + +#: src/gui/sysConf.cpp:1008 +msgid "Amiga 500 (OCS)" +msgstr "" + +#: src/gui/sysConf.cpp:1012 +msgid "Amiga 1200 (AGA)" +msgstr "" + +#: src/gui/sysConf.cpp:1018 +msgid "Chip memory:" +msgstr "" + +#: src/gui/sysConf.cpp:1020 +msgid "2MB (ECS/AGA max)" +msgstr "" + +#: src/gui/sysConf.cpp:1030 +msgid "512KB (OCS max)" +msgstr "" + +#: src/gui/sysConf.cpp:1043 src/gui/sysConf.cpp:1081 src/gui/sysConf.cpp:2395 +#: src/gui/sysConf.cpp:2449 +msgid "PAL" +msgstr "" + +#: src/gui/sysConf.cpp:1046 +msgid "Bypass frequency limits" +msgstr "" + +#: src/gui/sysConf.cpp:1065 +msgid "Mixing mode:" +msgstr "" + +#: src/gui/sysConf.cpp:1067 src/gui/settings.cpp:3724 +msgid "Mono" +msgstr "" + +#: src/gui/sysConf.cpp:1071 +msgid "Mono (no distortion)" +msgstr "" + +#: src/gui/sysConf.cpp:1075 src/gui/sysConf.cpp:1197 src/gui/sysConf.cpp:1864 +#: src/gui/sysConf.cpp:2204 +msgid "Stereo" +msgstr "" + +#: src/gui/sysConf.cpp:1100 +msgid "1.19MHz (PC)" +msgstr "" + +#: src/gui/sysConf.cpp:1104 +msgid "1.99MHz (PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1108 +msgid "2.46MHz (PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1114 +msgid "Speaker type:" +msgstr "" + +#: src/gui/sysConf.cpp:1116 +msgid "Unfiltered" +msgstr "" + +#: src/gui/sysConf.cpp:1120 +msgid "Cone" +msgstr "" + +#: src/gui/sysConf.cpp:1124 +msgid "Piezo" +msgstr "" + +#: src/gui/sysConf.cpp:1128 +msgid "Use system beeper (Linux only!)" +msgstr "" + +#: src/gui/sysConf.cpp:1134 +msgid "Reset phase on frequency change" +msgstr "" + +#: src/gui/sysConf.cpp:1183 +msgid "16MHz (Seta 1)" +msgstr "" + +#: src/gui/sysConf.cpp:1187 +msgid "16.67MHz (Seta 2)" +msgstr "" + +#: src/gui/sysConf.cpp:1191 src/gui/sysConf.cpp:1759 +msgid "14.32MHz (NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:1201 +msgid "Bankswitched (Seta 2)" +msgstr "" + +#: src/gui/sysConf.cpp:1235 src/gui/sysConf.cpp:1261 +msgid "Initial channel limit:" +msgstr "" + +#: src/gui/sysConf.cpp:1241 src/gui/sysConf.cpp:2398 +msgid "Disable hissing" +msgstr "" + +#: src/gui/sysConf.cpp:1244 +msgid "Scale frequency to wave length" +msgstr "" + +#: src/gui/sysConf.cpp:1300 src/gui/sysConf.cpp:1722 +msgid "3.54MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:1304 src/gui/sysConf.cpp:1726 src/gui/sysConf.cpp:2290 +msgid "4MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1308 src/gui/sysConf.cpp:1730 +msgid "3MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1312 src/gui/sysConf.cpp:1734 +msgid "3.9936MHz (PC-88/PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1316 +msgid "1.5MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1321 src/gui/sysConf.cpp:1391 src/gui/sysConf.cpp:1639 +#: src/gui/sysConf.cpp:1852 +msgid "Output rate:" +msgstr "" + +#: src/gui/sysConf.cpp:1323 src/gui/sysConf.cpp:1397 +msgid "FM: clock / 72, SSG: clock / 16" +msgstr "" + +#: src/gui/sysConf.cpp:1327 +msgid "FM: clock / 36, SSG: clock / 8" +msgstr "" + +#: src/gui/sysConf.cpp:1331 +msgid "FM: clock / 24, SSG: clock / 4" +msgstr "" + +#: src/gui/sysConf.cpp:1343 +msgid "FM Volume" +msgstr "" + +#: src/gui/sysConf.cpp:1382 +msgid "8MHz (Arcade)" +msgstr "" + +#: src/gui/sysConf.cpp:1386 +msgid "7.987MHz (PC-88/PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1393 +msgid "FM: clock / 144, SSG: clock / 32" +msgstr "" + +#: src/gui/sysConf.cpp:1401 +msgid "FM: clock / 48, SSG: clock / 8" +msgstr "" + +#: src/gui/sysConf.cpp:1446 +msgid "8MHz (FM Towns)" +msgstr "" + +#: src/gui/sysConf.cpp:1450 +msgid "10MHz (Sega System 18)" +msgstr "" + +#: src/gui/sysConf.cpp:1454 +msgid "12.5MHz (Sega CD/System 32)" +msgstr "" + +#: src/gui/sysConf.cpp:1461 +msgid "RF5C68 (10-bit output)" +msgstr "" + +#: src/gui/sysConf.cpp:1465 +msgid "RF5C164 (16-bit output)" +msgstr "" + +#: src/gui/sysConf.cpp:1520 +msgid "Sample rate table:" +msgstr "" + +#: src/gui/sysConf.cpp:1524 +msgid "divider \\ clock" +msgstr "" + +#: src/gui/sysConf.cpp:1526 +msgid "full" +msgstr "" + +#: src/gui/sysConf.cpp:1528 +msgid "half" +msgstr "" + +#: src/gui/sysConf.cpp:1641 +msgid "clock / 132" +msgstr "" + +#: src/gui/sysConf.cpp:1645 +msgid "clock / 165" +msgstr "" + +#: src/gui/sysConf.cpp:1651 +msgid "Bankswitched (NMK112)" +msgstr "" + +#: src/gui/sysConf.cpp:1670 +msgid "1.79MHz (NTSC/MSX)" +msgstr "" + +#: src/gui/sysConf.cpp:1674 +msgid "1.77MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:1678 +msgid "1.5MHz (Arcade)" +msgstr "" + +#: src/gui/sysConf.cpp:1682 +msgid "2MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1697 +msgid "Consistent frequency across all duties" +msgstr "" + +#: src/gui/sysConf.cpp:1704 +msgid "note: only works for an initial LFSR value of 0!" +msgstr "" + +#: src/gui/sysConf.cpp:1738 +msgid "3.5MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1763 +msgid "14.19MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:1767 +msgid "14MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1771 +msgid "16MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1775 +msgid "15MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1779 +msgid "33.8688MHz (OPL3-L)" +msgstr "" + +#: src/gui/sysConf.cpp:1784 +msgid "OPL3 (YMF262)" +msgstr "" + +#: src/gui/sysConf.cpp:1788 +msgid "OPL3-L (YMF289B)" +msgstr "" + +#: src/gui/sysConf.cpp:1794 +msgid "Compatible panning (0800)" +msgstr "" + +#: src/gui/sysConf.cpp:1858 +msgid "Output bit depth:" +msgstr "" + +#: src/gui/sysConf.cpp:1868 +msgid "Interpolation:" +msgstr "" + +#: src/gui/sysConf.cpp:1874 src/gui/waveEdit.cpp:38 +msgid "Linear" +msgstr "" + +#: src/gui/sysConf.cpp:1878 src/gui/waveEdit.cpp:40 +msgid "Cubic" +msgstr "" + +#: src/gui/sysConf.cpp:1882 +msgid "Sinc" +msgstr "" + +#: src/gui/sysConf.cpp:1920 +msgid "Left##VolScaleL" +msgstr "" + +#: src/gui/sysConf.cpp:1925 +msgid "Right##VolScaleL" +msgstr "" + +#: src/gui/sysConf.cpp:1935 +msgid "Initial echo state:" +msgstr "" + +#: src/gui/sysConf.cpp:1955 +msgid "Delay##EchoDelay" +msgstr "" + +#: src/gui/sysConf.cpp:1961 +msgid "Feedback##EchoFeedback" +msgstr "" + +#: src/gui/sysConf.cpp:1968 +msgid "Left##EchoVolL" +msgstr "" + +#: src/gui/sysConf.cpp:1973 +msgid "Right##EchoVolL" +msgstr "" + +#: src/gui/sysConf.cpp:1979 +msgid "Echo filter:" +msgstr "" + +#: src/gui/sysConf.cpp:1989 +msgid "Hex##SNESFHex" +msgstr "" + +#: src/gui/sysConf.cpp:1989 +msgid "Dec##SNESFHex" +msgstr "" + +#: src/gui/sysConf.cpp:2031 +#, c-format +msgid "sum: %d" +msgstr "" + +#: src/gui/sysConf.cpp:2086 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:63 +#: src/gui/insEdit.cpp:75 +msgid "Detune" +msgstr "" + +#: src/gui/sysConf.cpp:2092 +msgid "Capacitor values (nF):" +msgstr "" + +#: src/gui/sysConf.cpp:2102 +msgid "Initial part volume (channel 1-4):" +msgstr "" + +#: src/gui/sysConf.cpp:2112 +msgid "Initial part volume (channel 5-8):" +msgstr "" + +#: src/gui/sysConf.cpp:2122 +msgid "Envelope mode (channel 1-4):" +msgstr "" + +#: src/gui/sysConf.cpp:2124 +msgid "Capacitor (attack/decay)##EM00" +msgstr "" + +#: src/gui/sysConf.cpp:2128 +msgid "External (volume macro)##EM01" +msgstr "" + +#: src/gui/sysConf.cpp:2134 +msgid "Envelope mode (channel 5-8):" +msgstr "" + +#: src/gui/sysConf.cpp:2136 +msgid "Capacitor (attack/decay)##EM10" +msgstr "" + +#: src/gui/sysConf.cpp:2140 +msgid "External (volume macro)##EM11" +msgstr "" + +#: src/gui/sysConf.cpp:2146 +msgid "Global vibrato:" +msgstr "" + +#: src/gui/sysConf.cpp:2153 +msgid "Depth" +msgstr "" + +#: src/gui/sysConf.cpp:2219 src/gui/sysConf.cpp:2373 +msgid "Waveform storage mode:" +msgstr "" + +#: src/gui/sysConf.cpp:2221 +msgid "RAM" +msgstr "" + +#: src/gui/sysConf.cpp:2225 +msgid "ROM (up to 8 waves)" +msgstr "" + +#: src/gui/sysConf.cpp:2241 +msgid "Compatible noise frequencies" +msgstr "" + +#: src/gui/sysConf.cpp:2256 +msgid "Legacy slides and pitch (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:2314 +msgid "PAL (1.77MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:2344 +msgid "Banking style:" +msgstr "" + +#: src/gui/sysConf.cpp:2346 +msgid "Namco System 2 (2MB)" +msgstr "" + +#: src/gui/sysConf.cpp:2351 +msgid "Namco System 21 (4MB)" +msgstr "" + +#: src/gui/sysConf.cpp:2356 +msgid "Raw (16MB; no VGM export!)" +msgstr "" + +#: src/gui/sysConf.cpp:2375 +msgid "Dynamic (unconfirmed)" +msgstr "" + +#: src/gui/sysConf.cpp:2379 +msgid "Static (up to 5 waves)" +msgstr "" + +#: src/gui/sysConf.cpp:2414 +msgid "DS (4MB RAM)" +msgstr "" + +#: src/gui/sysConf.cpp:2418 +msgid "DSi (16MB RAM)" +msgstr "" + +#: src/gui/sysConf.cpp:2444 src/gui/settings.cpp:727 +msgid "nothing to configure" +msgstr "" + +#: src/gui/sysConf.cpp:2467 +msgid "Custom clock rate" +msgstr "" + +#: src/gui/volMeter.cpp:36 src/gui/settings.cpp:3969 src/gui/guiConst.cpp:596 +msgid "Volume Meter" +msgstr "" + +#: src/gui/userPresets.cpp:325 +msgid "User Systems" +msgstr "" + +#: src/gui/userPresets.cpp:337 +msgid "Error! User category does not exist!" +msgstr "" + +#: src/gui/userPresets.cpp:346 src/gui/newSong.cpp:181 +msgid "Systems" +msgstr "" + +#: src/gui/userPresets.cpp:349 +msgid "New Preset" +msgstr "" + +#: src/gui/userPresets.cpp:361 +msgid "select a preset" +msgstr "" + +#: src/gui/userPresets.cpp:374 +msgid "Remove##UPresetRemove" +msgstr "" + +#: src/gui/userPresets.cpp:439 src/gui/settings.cpp:1135 +msgid "Configure" +msgstr "" + +#: src/gui/userPresets.cpp:470 +msgid "Advanced" +msgstr "" + +#: src/gui/userPresets.cpp:476 +msgid "" +"insert additional settings in `option=value` format.\n" +"available options:\n" +"- tickRate" +msgstr "" + +#: src/gui/userPresets.cpp:509 +msgid "Save and Close" +msgstr "" + +#: src/gui/userPresets.cpp:515 src/gui/settings.cpp:1238 +#: src/gui/settings.cpp:2161 src/gui/settings.cpp:2553 +#: src/gui/settings.cpp:3796 +msgid "Import" +msgstr "" + +#: src/gui/userPresets.cpp:519 +msgid "Import (replace)" +msgstr "" + +#: src/gui/effectList.cpp:14 src/gui/guiConst.cpp:606 +msgid "Effect List" +msgstr "" + +#: src/gui/effectList.cpp:18 +#, c-format +msgid "Chip at cursor: %s" +msgstr "" + +#: src/gui/effectList.cpp:21 src/gui/settings.cpp:6674 +msgid "Search" +msgstr "" + +#: src/gui/effectList.cpp:25 +msgid "Effect types to show:" +msgstr "" + +#: src/gui/effectList.cpp:47 +msgid "Description" +msgstr "" + +#: src/gui/subSongs.cpp:22 src/gui/subSongs.cpp:32 +#, c-format +msgid "%d. " +msgstr "" + +#: src/gui/subSongs.cpp:73 src/gui/subSongs.cpp:93 +msgid "too many subsongs!" +msgstr "" + +#: src/gui/subSongs.cpp:114 +msgid "this is the only subsong!" +msgstr "" + +#: src/gui/subSongs.cpp:116 +msgid "are you sure you want to remove this subsong?" +msgstr "" + +#: src/gui/spoiler.cpp:30 +msgid "Spoiler" +msgstr "" + +#: src/gui/spoiler.cpp:32 +msgid "SPOILER" +msgstr "" + +#: src/gui/settings.cpp:104 src/gui/settings.cpp:114 src/gui/settings.cpp:124 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:105 src/gui/settings.cpp:115 src/gui/settings.cpp:125 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:168 +msgid "ASAP (C++ port)" +msgstr "" + +#: src/gui/settings.cpp:191 +msgid "ESFMu (fast)" +msgstr "" + +#: src/gui/settings.cpp:205 +msgid "Lower" +msgstr "" + +#: src/gui/settings.cpp:207 +msgid "Medium" +msgstr "" + +#: src/gui/settings.cpp:209 +msgid "Ultra" +msgstr "" + +#: src/gui/settings.cpp:210 +msgid "Ultimate" +msgstr "" + +#: src/gui/settings.cpp:214 +msgid "evdev SND_TONE" +msgstr "" + +#: src/gui/settings.cpp:215 +msgid "KIOCSOUND on /dev/tty1" +msgstr "" + +#: src/gui/settings.cpp:216 +msgid "/dev/port" +msgstr "" + +#: src/gui/settings.cpp:217 +msgid "KIOCSOUND on standard output" +msgstr "" + +#: src/gui/settings.cpp:218 +msgid "outb()" +msgstr "" + +#: src/gui/settings.cpp:222 src/gui/settings.cpp:232 +msgid "Disabled/custom" +msgstr "" + +#: src/gui/settings.cpp:223 +msgid "Two octaves (0 is C-4, F is D#5)" +msgstr "" + +#: src/gui/settings.cpp:224 +msgid "Raw (note number is value)" +msgstr "" + +#: src/gui/settings.cpp:225 +msgid "Two octaves alternate (lower keys are 0-9, upper keys are A-F)" +msgstr "" + +#: src/gui/settings.cpp:226 src/gui/settings.cpp:233 +msgid "Use dual control change (one for each nibble)" +msgstr "" + +#: src/gui/settings.cpp:227 src/gui/settings.cpp:234 +msgid "Use 14-bit control change" +msgstr "" + +#: src/gui/settings.cpp:228 src/gui/settings.cpp:235 +msgid "Use single control change (imprecise)" +msgstr "" + +#: src/gui/settings.cpp:239 +msgid "--select--" +msgstr "" + +#: src/gui/settings.cpp:240 src/gui/settings.cpp:241 src/gui/settings.cpp:242 +#: src/gui/settings.cpp:243 src/gui/settings.cpp:244 src/gui/settings.cpp:245 +#: src/gui/settings.cpp:246 +msgid "???" +msgstr "" + +#: src/gui/settings.cpp:247 +msgid "Note Off" +msgstr "" + +#: src/gui/settings.cpp:248 +msgid "Note On" +msgstr "" + +#: src/gui/settings.cpp:249 +msgid "Aftertouch" +msgstr "" + +#: src/gui/settings.cpp:250 src/gui/insEdit.cpp:7187 src/gui/insEdit.cpp:7217 +#: src/gui/insEdit.cpp:7382 src/gui/insEdit.cpp:7403 src/gui/insEdit.cpp:7415 +#: src/gui/insEdit.cpp:7430 +msgid "Control" +msgstr "" + +#: src/gui/settings.cpp:251 src/gui/settings.cpp:573 src/gui/settings.cpp:3177 +msgid "Program" +msgstr "" + +#: src/gui/settings.cpp:252 +msgid "ChanPressure" +msgstr "" + +#: src/gui/settings.cpp:253 +msgid "Pitch Bend" +msgstr "" + +#: src/gui/settings.cpp:254 +msgid "SysEx" +msgstr "" + +#: src/gui/settings.cpp:258 src/gui/settings.cpp:1713 src/gui/settings.cpp:1723 +#: src/gui/settings.cpp:1743 src/gui/settings.cpp:1749 +#, c-format +msgid "Any" +msgstr "" + +#: src/gui/settings.cpp:262 src/gui/settings.cpp:3363 src/gui/settings.cpp:3928 +#: src/gui/settings.cpp:4121 +msgid "Instrument" +msgstr "" + +#: src/gui/settings.cpp:264 +msgid "Effect 1 type" +msgstr "" + +#: src/gui/settings.cpp:265 +msgid "Effect 1 value" +msgstr "" + +#: src/gui/settings.cpp:266 +msgid "Effect 2 type" +msgstr "" + +#: src/gui/settings.cpp:267 +msgid "Effect 2 value" +msgstr "" + +#: src/gui/settings.cpp:268 +msgid "Effect 3 type" +msgstr "" + +#: src/gui/settings.cpp:269 +msgid "Effect 3 value" +msgstr "" + +#: src/gui/settings.cpp:270 +msgid "Effect 4 type" +msgstr "" + +#: src/gui/settings.cpp:271 +msgid "Effect 4 value" +msgstr "" + +#: src/gui/settings.cpp:272 +msgid "Effect 5 type" +msgstr "" + +#: src/gui/settings.cpp:273 +msgid "Effect 5 value" +msgstr "" + +#: src/gui/settings.cpp:274 +msgid "Effect 6 type" +msgstr "" + +#: src/gui/settings.cpp:275 +msgid "Effect 6 value" +msgstr "" + +#: src/gui/settings.cpp:276 +msgid "Effect 7 type" +msgstr "" + +#: src/gui/settings.cpp:277 +msgid "Effect 7 value" +msgstr "" + +#: src/gui/settings.cpp:278 +msgid "Effect 8 type" +msgstr "" + +#: src/gui/settings.cpp:279 +msgid "Effect 8 value" +msgstr "" + +#: src/gui/settings.cpp:315 +msgid "Press key..." +msgstr "" + +#: src/gui/settings.cpp:564 +msgid "Do you want to save your settings?" +msgstr "" + +#: src/gui/settings.cpp:571 +msgid "General" +msgstr "" + +#: src/gui/settings.cpp:588 +msgid "Language" +msgstr "" + +#: src/gui/settings.cpp:606 +msgid "Render backend" +msgstr "" + +#: src/gui/settings.cpp:661 src/gui/settings.cpp:680 src/gui/settings.cpp:1312 +msgid "you may need to restart Furnace for this setting to take effect." +msgstr "" + +#: src/gui/settings.cpp:664 +msgid "Advanced render backend settings" +msgstr "" + +#: src/gui/settings.cpp:666 +msgid "Render driver" +msgstr "" + +#: src/gui/settings.cpp:666 src/gui/settings.cpp:667 src/gui/settings.cpp:1298 +#: src/gui/settings.cpp:1299 src/gui/piano.cpp:108 +msgid "Automatic" +msgstr "" + +#: src/gui/settings.cpp:683 +msgid "" +"beware: changing these settings may render Furnace unusable! do so at your " +"own risk.\n" +"start Furnace with -safemode if you mess something up." +msgstr "" + +#: src/gui/settings.cpp:684 +msgid "Red bits" +msgstr "" + +#: src/gui/settings.cpp:689 +msgid "Green bits" +msgstr "" + +#: src/gui/settings.cpp:694 +msgid "Blue bits" +msgstr "" + +#: src/gui/settings.cpp:699 +msgid "Alpha bits" +msgstr "" + +#: src/gui/settings.cpp:704 +msgid "Color depth" +msgstr "" + +#: src/gui/settings.cpp:709 +msgid "Stencil buffer size" +msgstr "" + +#: src/gui/settings.cpp:714 src/gui/settings.cpp:1385 +msgid "Buffer size" +msgstr "" + +#: src/gui/settings.cpp:720 +msgid "Double buffer" +msgstr "" + +#: src/gui/settings.cpp:725 +msgid "" +"the following values are common (in red, green, blue, alpha order):\n" +"- 24 bits: 8, 8, 8, 0\n" +"- 16 bits: 5, 6, 5, 0\n" +"- 32 bits (with alpha): 8, 8, 8, 8\n" +"- 30 bits (deep): 10, 10, 10, 0" +msgstr "" + +#: src/gui/settings.cpp:732 +#, c-format +msgid "" +"current backend: %s\n" +"%s\n" +"%s\n" +"%s" +msgstr "" + +#: src/gui/settings.cpp:735 +msgid "VSync" +msgstr "" + +#: src/gui/settings.cpp:743 +msgid "Frame rate limit" +msgstr "" + +#: src/gui/settings.cpp:743 +msgid "Unlimited" +msgstr "" + +#: src/gui/settings.cpp:749 +msgid "only applies when VSync is disabled." +msgstr "" + +#: src/gui/settings.cpp:753 +msgid "Display render time" +msgstr "" + +#: src/gui/settings.cpp:760 +msgid "Late render clear" +msgstr "" + +#: src/gui/settings.cpp:765 +msgid "" +"calls rend->clear() after rend->present(). might reduce UI latency by one " +"frame in some drivers." +msgstr "" + +#: src/gui/settings.cpp:770 +msgid "Power-saving mode" +msgstr "" + +#: src/gui/settings.cpp:775 +msgid "" +"saves power by lowering the frame rate to 2fps when idle.\n" +"may cause issues under Mesa drivers!" +msgstr "" + +#: src/gui/settings.cpp:780 +msgid "Disable threaded input (restart after changing!)" +msgstr "" + +#: src/gui/settings.cpp:785 +msgid "" +"threaded input processes key presses for note preview on a separate thread " +"(on supported platforms), which reduces latency.\n" +"however, crashes have been reported when threaded input is on. enable this " +"option if that is the case." +msgstr "" + +#: src/gui/settings.cpp:790 +msgid "Enable event delay" +msgstr "" + +#: src/gui/settings.cpp:796 +msgid "may cause issues with high-polling-rate mice when previewing notes." +msgstr "" + +#: src/gui/settings.cpp:800 +msgid "Per-channel oscilloscope threads" +msgstr "" + +#: src/gui/settings.cpp:808 +msgid "you're being silly, aren't you? that's enough." +msgstr "" + +#: src/gui/settings.cpp:812 +msgid "what are you doing? stop!" +msgstr "" + +#: src/gui/settings.cpp:816 +#, c-format +msgid "" +"it is a bad idea to set this number higher than your CPU core count (%d)!" +msgstr "" + +#: src/gui/settings.cpp:821 +msgid "Oscilloscope rendering engine:" +msgstr "" + +#: src/gui/settings.cpp:823 +msgid "ImGui line plot" +msgstr "" + +#: src/gui/settings.cpp:827 +msgid "render using Dear ImGui's built-in line drawing functions." +msgstr "" + +#: src/gui/settings.cpp:829 +msgid "GLSL (if available)" +msgstr "" + +#: src/gui/settings.cpp:834 +msgid "" +"render using shaders that run on the graphics card.\n" +"only available in OpenGL ES 2.0 render backend." +msgstr "" + +#: src/gui/settings.cpp:836 +msgid "" +"render using shaders that run on the graphics card.\n" +"only available in OpenGL 3.0 render backend." +msgstr "" + +#: src/gui/settings.cpp:843 +msgid "Vibration" +msgstr "" + +#: src/gui/settings.cpp:845 +msgid "Strength" +msgstr "" + +#: src/gui/settings.cpp:851 src/gui/insEdit.cpp:2284 src/gui/insEdit.cpp:2382 +#: src/gui/insEdit.cpp:5582 src/gui/insEdit.cpp:6241 +msgid "Length" +msgstr "" + +#: src/gui/settings.cpp:859 src/gui/gui.cpp:4191 +msgid "File" +msgstr "" + +#: src/gui/settings.cpp:862 +msgid "Use system file picker" +msgstr "" + +#: src/gui/settings.cpp:867 +msgid "Number of recent files" +msgstr "" + +#: src/gui/settings.cpp:874 +msgid "Compress when saving" +msgstr "" + +#: src/gui/settings.cpp:879 +msgid "use zlib to compress saved songs." +msgstr "" + +#: src/gui/settings.cpp:883 +msgid "Save unused patterns" +msgstr "" + +#: src/gui/settings.cpp:889 +msgid "Use new pattern format when saving" +msgstr "" + +#: src/gui/settings.cpp:894 +msgid "" +"use a packed format which saves space when saving songs.\n" +"disable if you need compatibility with older Furnace and/or tools\n" +"which do not support this format." +msgstr "" + +#: src/gui/settings.cpp:898 +msgid "Don't apply compatibility flags when loading .dmf" +msgstr "" + +#: src/gui/settings.cpp:903 +msgid "do not report any issues arising from the use of this option!" +msgstr "" + +#: src/gui/settings.cpp:906 +msgid "Play after opening song:" +msgstr "" + +#: src/gui/settings.cpp:908 +msgid "No##pol0" +msgstr "" + +#: src/gui/settings.cpp:912 +msgid "Only if already playing##pol1" +msgstr "" + +#: src/gui/settings.cpp:916 +msgid "Yes##pol0" +msgstr "" + +#: src/gui/settings.cpp:922 +msgid "Audio export loop/fade out time:" +msgstr "" + +#: src/gui/settings.cpp:924 +msgid "Set to these values on start-up:##fot0" +msgstr "" + +#: src/gui/settings.cpp:942 +msgid "Remember last values##fot1" +msgstr "" + +#: src/gui/settings.cpp:949 +msgid "Store instrument name in .fui" +msgstr "" + +#: src/gui/settings.cpp:954 +msgid "" +"when enabled, saving an instrument will store its name.\n" +"this may increase file size." +msgstr "" + +#: src/gui/settings.cpp:958 +msgid "Load instrument name from .fui" +msgstr "" + +#: src/gui/settings.cpp:963 +msgid "" +"when enabled, loading an instrument will use the stored name (if present).\n" +"otherwise, it will use the file name." +msgstr "" + +#: src/gui/settings.cpp:967 +msgid "Auto-fill file name when saving" +msgstr "" + +#: src/gui/settings.cpp:972 +msgid "" +"fill the file name field with an appropriate file name when saving or " +"exporting." +msgstr "" + +#: src/gui/settings.cpp:976 src/gui/gui.cpp:5563 src/gui/gui.cpp:5613 +msgid "New Song" +msgstr "" + +#: src/gui/settings.cpp:978 +msgid "Initial system:" +msgstr "" + +#: src/gui/settings.cpp:980 +msgid "Current system" +msgstr "" + +#: src/gui/settings.cpp:993 src/gui/waveEdit.cpp:1149 src/gui/gui.cpp:3046 +msgid "Randomize" +msgstr "" + +#: src/gui/settings.cpp:1043 +msgid "Reset to defaults" +msgstr "" + +#: src/gui/settings.cpp:1178 +msgid "When creating new song:" +msgstr "" + +#: src/gui/settings.cpp:1180 +msgid "Display system preset selector##NSB0" +msgstr "" + +#: src/gui/settings.cpp:1184 +msgid "Start with initial system##NSB1" +msgstr "" + +#: src/gui/settings.cpp:1188 +msgid "Default author name" +msgstr "" + +#: src/gui/settings.cpp:1192 +msgid "Start-up" +msgstr "" + +#: src/gui/settings.cpp:1193 +msgid "Play intro on start-up:" +msgstr "" + +#: src/gui/settings.cpp:1195 +msgid "No##pis0" +msgstr "" + +#: src/gui/settings.cpp:1199 +msgid "Short##pis1" +msgstr "" + +#: src/gui/settings.cpp:1203 +msgid "Full (short when loading song)##pis2" +msgstr "" + +#: src/gui/settings.cpp:1207 +msgid "Full (always)##pis3" +msgstr "" + +#: src/gui/settings.cpp:1214 +msgid "Disable fade-in during start-up" +msgstr "" + +#: src/gui/settings.cpp:1220 +msgid "About screen party time" +msgstr "" + +#: src/gui/settings.cpp:1225 +msgid "Warning: may cause epileptic seizures." +msgstr "" + +#: src/gui/settings.cpp:1229 +msgid "Behavior" +msgstr "" + +#: src/gui/settings.cpp:1231 +msgid "New instruments are blank" +msgstr "" + +#: src/gui/settings.cpp:1237 src/gui/settings.cpp:4255 +msgid "Configuration" +msgstr "" + +#: src/gui/settings.cpp:1246 +msgid "Factory Reset" +msgstr "" + +#: src/gui/settings.cpp:1247 +msgid "" +"Are you sure you want to reset all Furnace settings?\n" +"You must restart Furnace after doing so." +msgstr "" + +#: src/gui/settings.cpp:1255 +msgid "Output" +msgstr "" + +#: src/gui/settings.cpp:1263 +msgid "Backend" +msgstr "" + +#: src/gui/settings.cpp:1296 +msgid "Driver" +msgstr "" + +#: src/gui/settings.cpp:1319 +msgid "Device" +msgstr "" + +#: src/gui/settings.cpp:1323 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:1324 +msgid "ALERT - TRESPASSER DETECTED" +msgstr "" + +#: src/gui/settings.cpp:1326 +msgid "you have been arrested for trying to engage with a disabled combo box." +msgstr "" + +#: src/gui/settings.cpp:1333 src/gui/settings.cpp:1335 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:1371 src/gui/insEdit.cpp:7186 +msgid "Outputs" +msgstr "" + +#: src/gui/settings.cpp:1379 +msgid "" +"common values:\n" +"- 1 for mono\n" +"- 2 for stereo\n" +"- 4 for quadraphonic\n" +"- 6 for 5.1 surround\n" +"- 8 for 7.1 surround" +msgstr "" + +#: src/gui/settings.cpp:1387 +#, c-format +msgid "%d (latency: ~%.1fms)" +msgstr "" + +#: src/gui/settings.cpp:1402 +msgid "Multi-threaded (EXPERIMENTAL)" +msgstr "" + +#: src/gui/settings.cpp:1411 +msgid "" +"runs chip emulation on separate threads.\n" +"may increase performance when using heavy emulation cores.\n" +"\n" +"warnings:\n" +"- experimental!\n" +"- only useful on multi-chip songs." +msgstr "" + +#: src/gui/settings.cpp:1416 +msgid "Number of threads" +msgstr "" + +#: src/gui/settings.cpp:1423 +msgid "that's the limit!" +msgstr "" + +#: src/gui/settings.cpp:1427 +#, c-format +msgid "" +"it is a VERY bad idea to set this number higher than your CPU core count " +"(%d)!" +msgstr "" + +#: src/gui/settings.cpp:1435 +msgid "Low-latency mode" +msgstr "" + +#: src/gui/settings.cpp:1440 +msgid "" +"reduces latency by running the engine faster than the tick rate.\n" +"useful for live playback/jam mode.\n" +"\n" +"warning: only enable if your buffer size is small (10ms or less)." +msgstr "" + +#: src/gui/settings.cpp:1444 +msgid "Force mono audio" +msgstr "" + +#: src/gui/settings.cpp:1452 +msgid "Exclusive mode" +msgstr "" + +#: src/gui/settings.cpp:1463 +#, c-format +msgid "want: %d samples @ %.0fHz (%d channel)" +msgid_plural "want: %d samples @ %.0fHz (%d channels)" +msgstr[0] "" + +#: src/gui/settings.cpp:1464 +#, c-format +msgid "got: %d samples @ %.0fHz (%d channel)" +msgid_plural "got: %d samples @ %.0fHz (%d channels)" +msgstr[0] "" + +#: src/gui/settings.cpp:1471 +msgid "Mixing" +msgstr "" + +#: src/gui/settings.cpp:1473 src/gui/settings.cpp:2082 +msgid "Quality" +msgstr "" + +#: src/gui/settings.cpp:1478 +msgid "Software clipping" +msgstr "" + +#: src/gui/settings.cpp:1484 +msgid "DC offset correction" +msgstr "" + +#: src/gui/settings.cpp:1502 src/gui/guiConst.cpp:740 +msgid "Sample preview" +msgstr "" + +#: src/gui/settings.cpp:1515 +msgid "MIDI" +msgstr "" + +#: src/gui/settings.cpp:1517 src/gui/settings.cpp:1519 +msgid "MIDI input" +msgstr "" + +#: src/gui/settings.cpp:1521 src/gui/settings.cpp:1524 +#: src/gui/settings.cpp:1815 src/gui/settings.cpp:1817 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:1540 +msgid "Re-scan MIDI devices" +msgstr "" + +#: src/gui/settings.cpp:1551 src/gui/settings.cpp:2258 +msgid "Note input" +msgstr "" + +#: src/gui/settings.cpp:1552 +msgid "Velocity input" +msgstr "" + +#: src/gui/settings.cpp:1556 +msgid "Map MIDI channels to direct channels" +msgstr "" + +#: src/gui/settings.cpp:1562 +msgid "Program change pass-through" +msgstr "" + +#: src/gui/settings.cpp:1567 +msgid "Map Yamaha FM voice data to instruments" +msgstr "" + +#: src/gui/settings.cpp:1569 +msgid "Program change is instrument selection" +msgstr "" + +#: src/gui/settings.cpp:1573 +msgid "Value input style" +msgstr "" + +#: src/gui/settings.cpp:1576 src/gui/settings.cpp:1601 +msgid "Control##valueCCS" +msgstr "" + +#: src/gui/settings.cpp:1582 src/gui/settings.cpp:1607 +msgid "CC of upper nibble##valueCC1" +msgstr "" + +#: src/gui/settings.cpp:1582 src/gui/settings.cpp:1607 +msgid "MSB CC##valueCC1" +msgstr "" + +#: src/gui/settings.cpp:1587 src/gui/settings.cpp:1612 +msgid "CC of lower nibble##valueCC2" +msgstr "" + +#: src/gui/settings.cpp:1587 src/gui/settings.cpp:1612 +msgid "LSB CC##valueCC2" +msgstr "" + +#: src/gui/settings.cpp:1594 +msgid "Per-column control change" +msgstr "" + +#: src/gui/settings.cpp:1624 src/gui/settings.cpp:1634 +msgid "Volume curve" +msgstr "" + +#: src/gui/settings.cpp:1637 +msgid "Actions:" +msgstr "" + +#: src/gui/settings.cpp:1651 +msgid "" +"(learning! press a button or move a slider/knob/something on your device.)" +msgstr "" + +#: src/gui/settings.cpp:1665 src/gui/settings.cpp:2277 +#: src/gui/settings.cpp:6687 src/gui/sampleEdit.cpp:501 +#: src/gui/insEdit.cpp:5321 +msgid "Type" +msgstr "" + +#: src/gui/settings.cpp:1669 +msgid "Note/Control" +msgstr "" + +#: src/gui/settings.cpp:1671 +msgid "Velocity/Value" +msgstr "" + +#: src/gui/settings.cpp:1673 +msgid "Action" +msgstr "" + +#: src/gui/settings.cpp:1765 src/gui/settings.cpp:1766 +msgid "--none--" +msgstr "" + +#: src/gui/settings.cpp:1787 +msgid "waiting...##BLearn" +msgstr "" + +#: src/gui/settings.cpp:1787 +msgid "Learn##BLearn" +msgstr "" + +#: src/gui/settings.cpp:1811 src/gui/settings.cpp:1813 +msgid "MIDI output" +msgstr "" + +#: src/gui/settings.cpp:1830 +msgid "Output mode:" +msgstr "" + +#: src/gui/settings.cpp:1832 +msgid "Off (use for TX81Z)" +msgstr "" + +#: src/gui/settings.cpp:1836 +msgid "Melodic" +msgstr "" + +#: src/gui/settings.cpp:1847 +msgid "Send Program Change" +msgstr "" + +#: src/gui/settings.cpp:1853 +msgid "Send MIDI clock" +msgstr "" + +#: src/gui/settings.cpp:1859 +msgid "Send MIDI timecode" +msgstr "" + +#: src/gui/settings.cpp:1865 +msgid "Timecode frame rate:" +msgstr "" + +#: src/gui/settings.cpp:1867 +msgid "Closest to Tick Rate" +msgstr "" + +#: src/gui/settings.cpp:1871 +msgid "Film (24fps)" +msgstr "" + +#: src/gui/settings.cpp:1875 +msgid "PAL (25fps)" +msgstr "" + +#: src/gui/settings.cpp:1879 +msgid "NTSC drop (29.97fps)" +msgstr "" + +#: src/gui/settings.cpp:1883 +msgid "NTSC non-drop (30fps)" +msgstr "" + +#: src/gui/settings.cpp:1892 +msgid "Emulation" +msgstr "" + +#: src/gui/settings.cpp:1894 +msgid "Cores" +msgstr "" + +#: src/gui/settings.cpp:1903 +msgid "Playback Core(s)" +msgstr "" + +#: src/gui/settings.cpp:1905 src/gui/settings.cpp:2093 +msgid "used for playback" +msgstr "" + +#: src/gui/settings.cpp:1908 +msgid "Render Core(s)" +msgstr "" + +#: src/gui/settings.cpp:1910 src/gui/settings.cpp:2098 +msgid "used in audio export" +msgstr "" + +#: src/gui/settings.cpp:2091 +msgid "Playback" +msgstr "" + +#: src/gui/settings.cpp:2096 +msgid "Render" +msgstr "" + +#: src/gui/settings.cpp:2120 +msgid "PC Speaker strategy" +msgstr "" + +#: src/gui/settings.cpp:2158 src/gui/settings.cpp:2160 +msgid "Keyboard" +msgstr "" + +#: src/gui/settings.cpp:2169 src/gui/settings.cpp:3804 +msgid "Reset defaults" +msgstr "" + +#: src/gui/settings.cpp:2170 +msgid "Are you sure you want to reset the keyboard settings?" +msgstr "" + +#: src/gui/settings.cpp:2172 +msgid "Global hotkeys" +msgstr "" + +#: src/gui/settings.cpp:2209 +msgid "Window activation" +msgstr "" + +#: src/gui/settings.cpp:2275 +msgid "Key" +msgstr "" + +#: src/gui/settings.cpp:2279 src/gui/findReplace.cpp:725 +#: src/gui/findReplace.cpp:1003 +msgid "Value" +msgstr "" + +#: src/gui/settings.cpp:2289 +#, c-format +msgid "Macro release##SNType_%d" +msgstr "" + +#: src/gui/settings.cpp:2294 +#, c-format +msgid "Note release##SNType_%d" +msgstr "" + +#: src/gui/settings.cpp:2299 +#, c-format +msgid "Note off##SNType_%d" +msgstr "" + +#: src/gui/settings.cpp:2304 +#, c-format +msgid "Note##SNType_%d" +msgstr "" + +#: src/gui/settings.cpp:2328 +msgid "Add..." +msgstr "" + +#: src/gui/settings.cpp:2418 +msgid "Instrument list" +msgstr "" + +#: src/gui/settings.cpp:2438 +msgid "Wavetable list" +msgstr "" + +#: src/gui/settings.cpp:2459 +msgid "Sample list" +msgstr "" + +#: src/gui/settings.cpp:2509 +msgid "Sample editor" +msgstr "" + +#: src/gui/settings.cpp:2547 src/gui/settings.cpp:3814 +#: src/gui/settings.cpp:3844 +msgid "Interface" +msgstr "" + +#: src/gui/settings.cpp:2549 +msgid "Layout" +msgstr "" + +#: src/gui/settings.cpp:2551 +msgid "Workspace layout:" +msgstr "" + +#: src/gui/settings.cpp:2561 src/gui/gui.cpp:2920 +msgid "Reset" +msgstr "" + +#: src/gui/settings.cpp:2562 src/gui/gui.cpp:4455 +msgid "Are you sure you want to reset the workspace layout?" +msgstr "" + +#: src/gui/settings.cpp:2566 +msgid "Allow docking editors" +msgstr "" + +#: src/gui/settings.cpp:2573 +msgid "Remember window position" +msgstr "" + +#: src/gui/settings.cpp:2578 +msgid "remembers the window's last position on start-up." +msgstr "" + +#: src/gui/settings.cpp:2583 +msgid "Only allow window movement when clicking on title bar" +msgstr "" + +#: src/gui/settings.cpp:2590 +msgid "Center pop-up windows" +msgstr "" + +#: src/gui/settings.cpp:2595 +msgid "Play/edit controls layout:" +msgstr "" + +#: src/gui/settings.cpp:2597 +msgid "Classic##ecl0" +msgstr "" + +#: src/gui/settings.cpp:2601 +msgid "Compact##ecl1" +msgstr "" + +#: src/gui/settings.cpp:2605 +msgid "Compact (vertical)##ecl2" +msgstr "" + +#: src/gui/settings.cpp:2609 +msgid "Split##ecl3" +msgstr "" + +#: src/gui/settings.cpp:2615 +msgid "Position of buttons in Orders:" +msgstr "" + +#: src/gui/settings.cpp:2617 +msgid "Top##obp0" +msgstr "" + +#: src/gui/settings.cpp:2621 +msgid "Left##obp1" +msgstr "" + +#: src/gui/settings.cpp:2625 +msgid "Right##obp2" +msgstr "" + +#: src/gui/settings.cpp:2632 +msgid "Mouse" +msgstr "" + +#: src/gui/settings.cpp:2634 +msgid "Double-click time (seconds)" +msgstr "" + +#: src/gui/settings.cpp:2643 +msgid "Don't raise pattern editor on click" +msgstr "" + +#: src/gui/settings.cpp:2649 +msgid "Focus pattern editor when selecting instrument" +msgstr "" + +#: src/gui/settings.cpp:2654 +msgid "Note preview behavior:" +msgstr "" + +#: src/gui/settings.cpp:2656 +msgid "Never##npb0" +msgstr "" + +#: src/gui/settings.cpp:2660 +msgid "When cursor is in Note column##npb1" +msgstr "" + +#: src/gui/settings.cpp:2664 +msgid "When cursor is in Note column or not in edit mode##npb2" +msgstr "" + +#: src/gui/settings.cpp:2668 +msgid "Always##npb3" +msgstr "" + +#: src/gui/settings.cpp:2674 +msgid "Allow dragging selection:" +msgstr "" + +#: src/gui/settings.cpp:2676 +msgid "No##dms0" +msgstr "" + +#: src/gui/settings.cpp:2680 +msgid "Yes##dms1" +msgstr "" + +#: src/gui/settings.cpp:2684 +msgid "Yes (while holding Ctrl only)##dms2" +msgstr "" + +#: src/gui/settings.cpp:2690 +msgid "Toggle channel solo on:" +msgstr "" + +#: src/gui/settings.cpp:2692 +msgid "Right-click or double-click##soloA" +msgstr "" + +#: src/gui/settings.cpp:2696 +msgid "Right-click##soloR" +msgstr "" + +#: src/gui/settings.cpp:2700 +msgid "Double-click##soloD" +msgstr "" + +#: src/gui/settings.cpp:2707 +msgid "Double click selects entire column" +msgstr "" + +#: src/gui/settings.cpp:2713 +msgid "Cursor behavior" +msgstr "" + +#: src/gui/settings.cpp:2715 +msgid "Insert pushes entire channel row" +msgstr "" + +#: src/gui/settings.cpp:2721 +msgid "Pull delete affects entire channel row" +msgstr "" + +#: src/gui/settings.cpp:2727 +msgid "Push value when overwriting instead of clearing it" +msgstr "" + +#: src/gui/settings.cpp:2733 +msgid "Keyboard note/value input repeat (hold key to input continuously)" +msgstr "" + +#: src/gui/settings.cpp:2738 +msgid "Effect input behavior:" +msgstr "" + +#: src/gui/settings.cpp:2740 +msgid "Move down##eicb0" +msgstr "" + +#: src/gui/settings.cpp:2744 +msgid "Move to effect value (otherwise move down)##eicb1" +msgstr "" + +#: src/gui/settings.cpp:2748 +msgid "Move to effect value/next effect and wrap around##eicb2" +msgstr "" + +#: src/gui/settings.cpp:2755 +msgid "Delete effect value when deleting effect" +msgstr "" + +#: src/gui/settings.cpp:2761 +msgid "Change current instrument when changing instrument column (absorb)" +msgstr "" + +#: src/gui/settings.cpp:2767 +msgid "Remove instrument value when inserting note off/release" +msgstr "" + +#: src/gui/settings.cpp:2773 +msgid "Remove volume value when inserting note off/release" +msgstr "" + +#: src/gui/settings.cpp:2779 +msgid "Cursor movement" +msgstr "" + +#: src/gui/settings.cpp:2781 +msgid "Wrap horizontally:" +msgstr "" + +#: src/gui/settings.cpp:2783 +msgid "No##wrapH0" +msgstr "" + +#: src/gui/settings.cpp:2787 +msgid "Yes##wrapH1" +msgstr "" + +#: src/gui/settings.cpp:2791 +msgid "Yes, and move to next/prev row##wrapH2" +msgstr "" + +#: src/gui/settings.cpp:2797 +msgid "Wrap vertically:" +msgstr "" + +#: src/gui/settings.cpp:2799 +msgid "No##wrapV0" +msgstr "" + +#: src/gui/settings.cpp:2803 +msgid "Yes##wrapV1" +msgstr "" + +#: src/gui/settings.cpp:2807 +msgid "Yes, and move to next/prev pattern##wrapV2" +msgstr "" + +#: src/gui/settings.cpp:2811 +msgid "Yes, and move to next/prev pattern (wrap around)##wrapV2" +msgstr "" + +#: src/gui/settings.cpp:2817 +msgid "Cursor movement keys behavior:" +msgstr "" + +#: src/gui/settings.cpp:2819 +msgid "Move by one##cmk0" +msgstr "" + +#: src/gui/settings.cpp:2823 +msgid "Move by Edit Step##cmk1" +msgstr "" + +#: src/gui/settings.cpp:2830 +msgid "Move cursor by edit step on delete" +msgstr "" + +#: src/gui/settings.cpp:2836 +msgid "Move cursor by edit step on insert (push)" +msgstr "" + +#: src/gui/settings.cpp:2842 +msgid "Move cursor up on backspace-delete" +msgstr "" + +#: src/gui/settings.cpp:2848 +msgid "Move cursor to end of clipboard content when pasting" +msgstr "" + +#: src/gui/settings.cpp:2854 +msgid "Scrolling" +msgstr "" + +#: src/gui/settings.cpp:2856 +msgid "Change order when scrolling outside of pattern bounds:" +msgstr "" + +#: src/gui/settings.cpp:2858 +msgid "No##pscroll0" +msgstr "" + +#: src/gui/settings.cpp:2862 +msgid "Yes##pscroll1" +msgstr "" + +#: src/gui/settings.cpp:2866 +msgid "Yes, and wrap around song##pscroll2" +msgstr "" + +#: src/gui/settings.cpp:2873 +msgid "Cursor follows current order when moving it" +msgstr "" + +#: src/gui/settings.cpp:2878 +msgid "applies when playback is stopped." +msgstr "" + +#: src/gui/settings.cpp:2882 +msgid "Don't scroll when moving cursor" +msgstr "" + +#: src/gui/settings.cpp:2887 +msgid "Move cursor with scroll wheel:" +msgstr "" + +#: src/gui/settings.cpp:2889 +msgid "No##csw0" +msgstr "" + +#: src/gui/settings.cpp:2893 +msgid "Yes##csw1" +msgstr "" + +#: src/gui/settings.cpp:2897 +msgid "Inverted##csw2" +msgstr "" + +#: src/gui/settings.cpp:2904 +msgid "How many steps to move with each scroll wheel step?" +msgstr "" + +#: src/gui/settings.cpp:2905 +msgid "One##cws0" +msgstr "" + +#: src/gui/settings.cpp:2909 +msgid "Edit Step##cws1" +msgstr "" + +#: src/gui/settings.cpp:2916 src/gui/settings.cpp:3531 +msgid "Assets" +msgstr "" + +#: src/gui/settings.cpp:2919 +msgid "Display instrument type menu when adding instrument" +msgstr "" + +#: src/gui/settings.cpp:2925 +msgid "Select asset after opening one" +msgstr "" + +#: src/gui/settings.cpp:2932 +msgid "Appearance" +msgstr "" + +#: src/gui/settings.cpp:2934 +msgid "Scaling" +msgstr "" + +#: src/gui/settings.cpp:2936 +msgid "Automatic UI scaling factor" +msgstr "" + +#: src/gui/settings.cpp:2945 +msgid "UI scaling factor" +msgstr "" + +#: src/gui/settings.cpp:2952 +msgid "Icon size" +msgstr "" + +#: src/gui/settings.cpp:2967 +msgid "Font renderer" +msgstr "" + +#: src/gui/settings.cpp:2977 +msgid "Main font" +msgstr "" + +#: src/gui/settings.cpp:2988 +msgid "Size##MainFontSize" +msgstr "" + +#: src/gui/settings.cpp:2996 +msgid "Header font" +msgstr "" + +#: src/gui/settings.cpp:3007 +msgid "Size##HeadFontSize" +msgstr "" + +#: src/gui/settings.cpp:3015 +msgid "Pattern font" +msgstr "" + +#: src/gui/settings.cpp:3026 +msgid "Size##PatFontSize" +msgstr "" + +#: src/gui/settings.cpp:3036 +msgid "Anti-aliased fonts" +msgstr "" + +#: src/gui/settings.cpp:3042 +msgid "Support bitmap fonts" +msgstr "" + +#: src/gui/settings.cpp:3047 +msgid "Hinting:" +msgstr "" + +#: src/gui/settings.cpp:3049 +msgid "Off (soft)##fh0" +msgstr "" + +#: src/gui/settings.cpp:3053 +msgid "Slight##fh1" +msgstr "" + +#: src/gui/settings.cpp:3057 +msgid "Normal##fh2" +msgstr "" + +#: src/gui/settings.cpp:3061 +msgid "Full (hard)##fh3" +msgstr "" + +#: src/gui/settings.cpp:3067 +msgid "Auto-hinter:" +msgstr "" + +#: src/gui/settings.cpp:3069 +msgid "Disable##fah0" +msgstr "" + +#: src/gui/settings.cpp:3073 +msgid "Enable##fah1" +msgstr "" + +#: src/gui/settings.cpp:3077 +msgid "Force##fah2" +msgstr "" + +#: src/gui/settings.cpp:3084 +msgid "Oversample" +msgstr "" + +#: src/gui/settings.cpp:3087 +msgid "1×##fos1" +msgstr "" + +#: src/gui/settings.cpp:3092 +msgid "" +"saves video memory. reduces font rendering quality.\n" +"use for pixel/bitmap fonts." +msgstr "" + +#: src/gui/settings.cpp:3095 +msgid "2×##fos2" +msgstr "" + +#: src/gui/settings.cpp:3100 +msgid "default." +msgstr "" + +#: src/gui/settings.cpp:3103 +msgid "3×##fos3" +msgstr "" + +#: src/gui/settings.cpp:3108 +msgid "" +"slightly better font rendering quality.\n" +"uses more video memory." +msgstr "" + +#: src/gui/settings.cpp:3112 +msgid "Load fallback font" +msgstr "" + +#: src/gui/settings.cpp:3117 +msgid "disable to save video memory." +msgstr "" + +#: src/gui/settings.cpp:3121 +msgid "Display Japanese characters" +msgstr "" + +#: src/gui/settings.cpp:3127 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"このオプションは、十分なグラフィックメモリがある場合にのみ切り替えてくださ" +"い。\n" +"これは、Dear ImGuiにダイナミックフォントアトラスが実装されるまでの一時的な解" +"決策です。" +msgstr "" + +#: src/gui/settings.cpp:3135 +msgid "Display Chinese (Simplified) characters" +msgstr "" + +#: src/gui/settings.cpp:3141 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"请在确保你有足够的显存后再启动此设定\n" +"这是一个在ImGui实现动态字体加载之前的临时解决方案" +msgstr "" + +#: src/gui/settings.cpp:3149 +msgid "Display Chinese (Traditional) characters" +msgstr "" + +#: src/gui/settings.cpp:3155 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"請在確保你有足夠的顯存后再啟動此設定\n" +"這是一個在ImGui實現動態字體加載之前的臨時解決方案" +msgstr "" + +#: src/gui/settings.cpp:3163 +msgid "Display Korean characters" +msgstr "" + +#: src/gui/settings.cpp:3169 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"그래픽 메모리가 충분한 경우에만 이 옵션을 선택하십시오.\n" +"이 옵션은 Dear ImGui에 동적 글꼴 아틀라스가 구현될 때까지 임시 솔루션입니다." +msgstr "" + +#: src/gui/settings.cpp:3178 +msgid "Title bar:" +msgstr "" + +#: src/gui/settings.cpp:3180 +msgid "Furnace##tbar0" +msgstr "" + +#: src/gui/settings.cpp:3185 +msgid "Song Name - Furnace##tbar1" +msgstr "" + +#: src/gui/settings.cpp:3190 +msgid "file_name.fur - Furnace##tbar2" +msgstr "" + +#: src/gui/settings.cpp:3195 +msgid "/path/to/file.fur - Furnace##tbar3" +msgstr "" + +#: src/gui/settings.cpp:3203 +msgid "Display system name on title bar" +msgstr "" + +#: src/gui/settings.cpp:3210 +msgid "Display chip names instead of \"multi-system\" in title bar" +msgstr "" + +#: src/gui/settings.cpp:3216 +msgid "Status bar:" +msgstr "" + +#: src/gui/settings.cpp:3218 +msgid "Cursor details##sbar0" +msgstr "" + +#: src/gui/settings.cpp:3222 +msgid "File path##sbar1" +msgstr "" + +#: src/gui/settings.cpp:3226 +msgid "Cursor details or file path##sbar2" +msgstr "" + +#: src/gui/settings.cpp:3230 +msgid "Nothing##sbar3" +msgstr "" + +#: src/gui/settings.cpp:3237 +msgid "Display playback status when playing" +msgstr "" + +#: src/gui/settings.cpp:3242 +msgid "Export options layout:" +msgstr "" + +#: src/gui/settings.cpp:3244 +msgid "Sub-menus in File menu##eol0" +msgstr "" + +#: src/gui/settings.cpp:3248 +msgid "Modal window with tabs##eol1" +msgstr "" + +#: src/gui/settings.cpp:3252 +msgid "Modal windows with options in File menu##eol2" +msgstr "" + +#: src/gui/settings.cpp:3259 +msgid "Capitalize menu bar" +msgstr "" + +#: src/gui/settings.cpp:3265 +msgid "Display add/configure/change/remove chip menus in File menu" +msgstr "" + +#: src/gui/settings.cpp:3279 +msgid "Highlight channel at cursor in Orders" +msgstr "" + +#: src/gui/settings.cpp:3284 +msgid "Orders row number format:" +msgstr "" + +#: src/gui/settings.cpp:3286 +msgid "Decimal##orbD" +msgstr "" + +#: src/gui/settings.cpp:3290 +msgid "Hexadecimal##orbH" +msgstr "" + +#: src/gui/settings.cpp:3299 +msgid "Center pattern view" +msgstr "" + +#: src/gui/settings.cpp:3305 +msgid "Overflow pattern highlights" +msgstr "" + +#: src/gui/settings.cpp:3311 +msgid "Display previous/next pattern" +msgstr "" + +#: src/gui/settings.cpp:3316 +msgid "Pattern row number format:" +msgstr "" + +#: src/gui/settings.cpp:3318 +msgid "Decimal##prbD" +msgstr "" + +#: src/gui/settings.cpp:3322 +msgid "Hexadecimal##prbH" +msgstr "" + +#: src/gui/settings.cpp:3328 +msgid "Pattern view labels:" +msgstr "" + +#: src/gui/settings.cpp:3333 +msgid "Note off (3-char)" +msgstr "" + +#: src/gui/settings.cpp:3338 +msgid "Note release (3-char)" +msgstr "" + +#: src/gui/settings.cpp:3343 +msgid "Macro release (3-char)" +msgstr "" + +#: src/gui/settings.cpp:3348 +msgid "Empty field (3-char)" +msgstr "" + +#: src/gui/settings.cpp:3353 +msgid "Empty field (2-char)" +msgstr "" + +#: src/gui/settings.cpp:3355 +msgid "Pattern view spacing after:" +msgstr "" + +#: src/gui/settings.cpp:3357 src/gui/settings.cpp:4115 +#: src/gui/findReplace.cpp:601 src/gui/findReplace.cpp:864 +#: src/gui/sampleEdit.cpp:590 +msgid "Note" +msgstr "" + +#: src/gui/settings.cpp:3375 src/gui/findReplace.cpp:707 +#: src/gui/findReplace.cpp:974 +msgid "Effect" +msgstr "" + +#: src/gui/settings.cpp:3381 +msgid "Effect value" +msgstr "" + +#: src/gui/settings.cpp:3388 +msgid "Single-digit effects for 00-0F" +msgstr "" + +#: src/gui/settings.cpp:3394 +msgid "Use flats instead of sharps" +msgstr "" + +#: src/gui/settings.cpp:3400 +msgid "Use German notation" +msgstr "" + +#: src/gui/settings.cpp:3408 +msgid "Channel style:" +msgstr "" + +#: src/gui/settings.cpp:3410 +msgid "Classic##CHS0" +msgstr "" + +#: src/gui/settings.cpp:3414 +msgid "Line##CHS1" +msgstr "" + +#: src/gui/settings.cpp:3418 +msgid "Round##CHS2" +msgstr "" + +#: src/gui/settings.cpp:3422 +msgid "Split button##CHS3" +msgstr "" + +#: src/gui/settings.cpp:3426 +msgid "Square border##CH42" +msgstr "" + +#: src/gui/settings.cpp:3430 +msgid "Round border##CHS5" +msgstr "" + +#: src/gui/settings.cpp:3436 +msgid "Channel volume bar:" +msgstr "" + +#: src/gui/settings.cpp:3438 +msgid "None##CHV0" +msgstr "" + +#: src/gui/settings.cpp:3442 +msgid "Simple##CHV1" +msgstr "" + +#: src/gui/settings.cpp:3446 +msgid "Stereo##CHV2" +msgstr "" + +#: src/gui/settings.cpp:3450 +msgid "Real##CHV3" +msgstr "" + +#: src/gui/settings.cpp:3454 +msgid "Real (stereo)##CHV4" +msgstr "" + +#: src/gui/settings.cpp:3460 +msgid "Channel feedback style:" +msgstr "" + +#: src/gui/settings.cpp:3462 +msgid "Off##CHF0" +msgstr "" + +#: src/gui/settings.cpp:3466 +msgid "Note##CHF1" +msgstr "" + +#: src/gui/settings.cpp:3470 +msgid "Volume##CHF2" +msgstr "" + +#: src/gui/settings.cpp:3474 +msgid "Active##CHF3" +msgstr "" + +#: src/gui/settings.cpp:3480 +msgid "Channel font:" +msgstr "" + +#: src/gui/settings.cpp:3482 +msgid "Regular##CHFont0" +msgstr "" + +#: src/gui/settings.cpp:3486 +msgid "Monospace##CHFont1" +msgstr "" + +#: src/gui/settings.cpp:3493 +msgid "Center channel name" +msgstr "" + +#: src/gui/settings.cpp:3498 +msgid "Channel colors:" +msgstr "" + +#: src/gui/settings.cpp:3500 +msgid "Single##CHC0" +msgstr "" + +#: src/gui/settings.cpp:3504 +msgid "Channel type##CHC1" +msgstr "" + +#: src/gui/settings.cpp:3508 +msgid "Instrument type##CHC2" +msgstr "" + +#: src/gui/settings.cpp:3514 +msgid "Channel name colors:" +msgstr "" + +#: src/gui/settings.cpp:3516 +msgid "Single##CTC0" +msgstr "" + +#: src/gui/settings.cpp:3520 +msgid "Channel type##CTC1" +msgstr "" + +#: src/gui/settings.cpp:3524 +msgid "Instrument type##CTC2" +msgstr "" + +#: src/gui/settings.cpp:3533 +msgid "Unified instrument/wavetable/sample list" +msgstr "" + +#: src/gui/settings.cpp:3543 +msgid "Horizontal instrument list" +msgstr "" + +#: src/gui/settings.cpp:3549 +msgid "Instrument list icon style:" +msgstr "" + +#: src/gui/settings.cpp:3551 +msgid "None##iis0" +msgstr "" + +#: src/gui/settings.cpp:3555 +msgid "Graphical icons##iis1" +msgstr "" + +#: src/gui/settings.cpp:3559 +msgid "Letter icons##iis2" +msgstr "" + +#: src/gui/settings.cpp:3566 +msgid "Colorize instrument editor using instrument type" +msgstr "" + +#: src/gui/settings.cpp:3572 src/gui/settings.cpp:4014 +msgid "Macro Editor" +msgstr "" + +#: src/gui/settings.cpp:3573 +msgid "Macro editor layout:" +msgstr "" + +#: src/gui/settings.cpp:3575 +msgid "Unified##mel0" +msgstr "" + +#: src/gui/settings.cpp:3585 +msgid "Grid##mel2" +msgstr "" + +#: src/gui/settings.cpp:3589 +msgid "Single (with list)##mel3" +msgstr "" + +#: src/gui/settings.cpp:3602 +msgid "Use classic macro editor vertical slider" +msgstr "" + +#: src/gui/settings.cpp:3608 +msgid "Wave Editor" +msgstr "" + +#: src/gui/settings.cpp:3610 +msgid "Use compact wave editor" +msgstr "" + +#: src/gui/settings.cpp:3616 src/gui/settings.cpp:3991 +msgid "FM Editor" +msgstr "" + +#: src/gui/settings.cpp:3617 +msgid "FM parameter names:" +msgstr "" + +#: src/gui/settings.cpp:3619 +msgid "Friendly##fmn0" +msgstr "" + +#: src/gui/settings.cpp:3623 +msgid "Technical##fmn1" +msgstr "" + +#: src/gui/settings.cpp:3627 +msgid "Technical (alternate)##fmn2" +msgstr "" + +#: src/gui/settings.cpp:3634 +msgid "Use standard OPL waveform names" +msgstr "" + +#: src/gui/settings.cpp:3639 +msgid "FM parameter editor layout:" +msgstr "" + +#: src/gui/settings.cpp:3641 +msgid "Modern##fml0" +msgstr "" + +#: src/gui/settings.cpp:3645 +msgid "Compact (2x2, classic)##fml1" +msgstr "" + +#: src/gui/settings.cpp:3649 +msgid "Compact (1x4)##fml2" +msgstr "" + +#: src/gui/settings.cpp:3653 +msgid "Compact (4x1)##fml3" +msgstr "" + +#: src/gui/settings.cpp:3657 +msgid "Alternate (2x2)##fml4" +msgstr "" + +#: src/gui/settings.cpp:3661 +msgid "Alternate (1x4)##fml5" +msgstr "" + +#: src/gui/settings.cpp:3665 +msgid "Alternate (4x1)##fml5" +msgstr "" + +#: src/gui/settings.cpp:3671 +msgid "Position of Sustain in FM editor:" +msgstr "" + +#: src/gui/settings.cpp:3673 +msgid "Between Decay and Sustain Rate##susp0" +msgstr "" + +#: src/gui/settings.cpp:3677 +msgid "After Release Rate##susp1" +msgstr "" + +#: src/gui/settings.cpp:3684 +msgid "Use separate colors for carriers/modulators in FM editor" +msgstr "" + +#: src/gui/settings.cpp:3690 +msgid "Unsigned FM detune values" +msgstr "" + +#: src/gui/settings.cpp:3697 +msgid "Chip memory usage unit:" +msgstr "" + +#: src/gui/settings.cpp:3699 +msgid "Bytes##MUU0" +msgstr "" + +#: src/gui/settings.cpp:3703 +msgid "Kilobytes##MUU1" +msgstr "" + +#: src/gui/settings.cpp:3712 +msgid "Rounded corners" +msgstr "" + +#: src/gui/settings.cpp:3718 src/gui/settings.cpp:3896 +#: src/gui/settings.cpp:3938 +msgid "Border" +msgstr "" + +#: src/gui/settings.cpp:3730 +msgid "Anti-aliased" +msgstr "" + +#: src/gui/settings.cpp:3736 +msgid "Fill entire window" +msgstr "" + +#: src/gui/settings.cpp:3742 +msgid "Waveform goes out of bounds" +msgstr "" + +#: src/gui/settings.cpp:3754 +msgid "Windows" +msgstr "" + +#: src/gui/settings.cpp:3756 +msgid "Rounded window corners" +msgstr "" + +#: src/gui/settings.cpp:3762 +msgid "Rounded buttons" +msgstr "" + +#: src/gui/settings.cpp:3768 +msgid "Rounded menu corners" +msgstr "" + +#: src/gui/settings.cpp:3774 +msgid "Rounded tabs" +msgstr "" + +#: src/gui/settings.cpp:3780 +msgid "Rounded scrollbars" +msgstr "" + +#: src/gui/settings.cpp:3786 +msgid "Borders around widgets" +msgstr "" + +#: src/gui/settings.cpp:3795 +msgid "Color scheme" +msgstr "" + +#: src/gui/settings.cpp:3805 +msgid "Are you sure you want to reset the color scheme?" +msgstr "" + +#: src/gui/settings.cpp:3808 +msgid "Guru mode" +msgstr "" + +#: src/gui/settings.cpp:3815 src/gui/settings.cpp:3845 +msgid "Frame shading" +msgstr "" + +#: src/gui/settings.cpp:3821 +msgid "Color scheme type:" +msgstr "" + +#: src/gui/settings.cpp:3823 +msgid "Dark##gcb0" +msgstr "" + +#: src/gui/settings.cpp:3828 +msgid "Light##gcb1" +msgstr "" + +#: src/gui/settings.cpp:3835 +msgid "Accent colors:" +msgstr "" + +#: src/gui/settings.cpp:3837 +msgid "Primary" +msgstr "" + +#: src/gui/settings.cpp:3838 +msgid "Secondary" +msgstr "" + +#: src/gui/settings.cpp:3852 +msgid "Button" +msgstr "" + +#: src/gui/settings.cpp:3853 +msgid "Button (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3854 +msgid "Button (active)" +msgstr "" + +#: src/gui/settings.cpp:3855 +msgid "Tab" +msgstr "" + +#: src/gui/settings.cpp:3856 +msgid "Tab (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3857 +msgid "Tab (active)" +msgstr "" + +#: src/gui/settings.cpp:3858 +msgid "Tab (unfocused)" +msgstr "" + +#: src/gui/settings.cpp:3859 +msgid "Tab (unfocused and active)" +msgstr "" + +#: src/gui/settings.cpp:3860 +msgid "ImGui header" +msgstr "" + +#: src/gui/settings.cpp:3861 +msgid "ImGui header (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3862 +msgid "ImGui header (active)" +msgstr "" + +#: src/gui/settings.cpp:3863 +msgid "Resize grip" +msgstr "" + +#: src/gui/settings.cpp:3864 +msgid "Resize grip (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3865 +msgid "Resize grip (active)" +msgstr "" + +#: src/gui/settings.cpp:3866 +msgid "Widget background" +msgstr "" + +#: src/gui/settings.cpp:3867 +msgid "Widget background (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3868 +msgid "Widget background (active)" +msgstr "" + +#: src/gui/settings.cpp:3869 +msgid "Slider grab" +msgstr "" + +#: src/gui/settings.cpp:3870 +msgid "Slider grab (active)" +msgstr "" + +#: src/gui/settings.cpp:3871 +msgid "Title background (active)" +msgstr "" + +#: src/gui/settings.cpp:3872 +msgid "Checkbox/radio button mark" +msgstr "" + +#: src/gui/settings.cpp:3873 +msgid "Text selection" +msgstr "" + +#: src/gui/settings.cpp:3874 +msgid "Line plot" +msgstr "" + +#: src/gui/settings.cpp:3875 +msgid "Line plot (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3876 +msgid "Histogram plot" +msgstr "" + +#: src/gui/settings.cpp:3877 +msgid "Histogram plot (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3878 +msgid "Table row (even)" +msgstr "" + +#: src/gui/settings.cpp:3879 +msgid "Table row (odd)" +msgstr "" + +#: src/gui/settings.cpp:3884 +msgid "Interface (other)" +msgstr "" + +#: src/gui/settings.cpp:3886 +msgid "Window background" +msgstr "" + +#: src/gui/settings.cpp:3887 +msgid "Sub-window background" +msgstr "" + +#: src/gui/settings.cpp:3888 +msgid "Pop-up background" +msgstr "" + +#: src/gui/settings.cpp:3889 +msgid "Modal backdrop" +msgstr "" + +#: src/gui/settings.cpp:3890 +msgid "Header" +msgstr "" + +#: src/gui/settings.cpp:3892 +msgid "Text (disabled)" +msgstr "" + +#: src/gui/settings.cpp:3893 +msgid "Title bar (inactive)" +msgstr "" + +#: src/gui/settings.cpp:3894 +msgid "Title bar (collapsed)" +msgstr "" + +#: src/gui/settings.cpp:3895 +msgid "Menu bar" +msgstr "" + +#: src/gui/settings.cpp:3897 +msgid "Border shadow" +msgstr "" + +#: src/gui/settings.cpp:3898 +msgid "Scroll bar" +msgstr "" + +#: src/gui/settings.cpp:3899 +msgid "Scroll bar (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3900 +msgid "Scroll bar (clicked)" +msgstr "" + +#: src/gui/settings.cpp:3901 +msgid "Scroll bar background" +msgstr "" + +#: src/gui/settings.cpp:3902 +msgid "Separator" +msgstr "" + +#: src/gui/settings.cpp:3903 +msgid "Separator (hover)" +msgstr "" + +#: src/gui/settings.cpp:3904 +msgid "Separator (active)" +msgstr "" + +#: src/gui/settings.cpp:3905 +msgid "Docking preview" +msgstr "" + +#: src/gui/settings.cpp:3906 +msgid "Docking empty" +msgstr "" + +#: src/gui/settings.cpp:3907 +msgid "Table header" +msgstr "" + +#: src/gui/settings.cpp:3908 +msgid "Table border (hard)" +msgstr "" + +#: src/gui/settings.cpp:3909 +msgid "Table border (soft)" +msgstr "" + +#: src/gui/settings.cpp:3910 +msgid "Drag and drop target" +msgstr "" + +#: src/gui/settings.cpp:3911 +msgid "Window switcher (highlight)" +msgstr "" + +#: src/gui/settings.cpp:3912 +msgid "Window switcher backdrop" +msgstr "" + +#: src/gui/settings.cpp:3915 src/gui/settings.cpp:4136 src/gui/guiConst.cpp:235 +msgid "Miscellaneous" +msgstr "" + +#: src/gui/settings.cpp:3916 +msgid "Toggle on" +msgstr "" + +#: src/gui/settings.cpp:3917 +msgid "Toggle off" +msgstr "" + +#: src/gui/settings.cpp:3918 +msgid "Playback status" +msgstr "" + +#: src/gui/settings.cpp:3919 +msgid "Destructive hint" +msgstr "" + +#: src/gui/settings.cpp:3920 +msgid "Warning hint" +msgstr "" + +#: src/gui/settings.cpp:3921 +msgid "Error hint" +msgstr "" + +#: src/gui/settings.cpp:3924 +msgid "File Picker (built-in)" +msgstr "" + +#: src/gui/settings.cpp:3926 +msgid "Song (native)" +msgstr "" + +#: src/gui/settings.cpp:3927 +msgid "Song (import)" +msgstr "" + +#: src/gui/settings.cpp:3933 +msgid "Font" +msgstr "" + +#: src/gui/settings.cpp:3939 +msgid "Background (top-left)" +msgstr "" + +#: src/gui/settings.cpp:3940 +msgid "Background (top-right)" +msgstr "" + +#: src/gui/settings.cpp:3941 +msgid "Background (bottom-left)" +msgstr "" + +#: src/gui/settings.cpp:3942 +msgid "Background (bottom-right)" +msgstr "" + +#: src/gui/settings.cpp:3943 src/gui/settings.cpp:3998 +#: src/gui/settings.cpp:4166 src/gui/waveEdit.cpp:730 src/gui/insEdit.cpp:50 +#: src/gui/insEdit.cpp:4148 src/gui/insEdit.cpp:5812 src/gui/insEdit.cpp:6940 +#: src/gui/insEdit.cpp:6949 src/gui/insEdit.cpp:6963 src/gui/insEdit.cpp:6980 +#: src/gui/insEdit.cpp:6991 src/gui/insEdit.cpp:7004 src/gui/insEdit.cpp:7018 +#: src/gui/insEdit.cpp:7025 src/gui/insEdit.cpp:7035 src/gui/insEdit.cpp:7041 +#: src/gui/insEdit.cpp:7050 src/gui/insEdit.cpp:7074 src/gui/insEdit.cpp:7084 +#: src/gui/insEdit.cpp:7094 src/gui/insEdit.cpp:7101 src/gui/insEdit.cpp:7116 +#: src/gui/insEdit.cpp:7131 src/gui/insEdit.cpp:7151 src/gui/insEdit.cpp:7158 +#: src/gui/insEdit.cpp:7200 src/gui/insEdit.cpp:7211 src/gui/insEdit.cpp:7224 +#: src/gui/insEdit.cpp:7349 src/gui/insEdit.cpp:7425 src/gui/insEdit.cpp:7445 +#: src/gui/insEdit.cpp:7453 src/gui/insEdit.cpp:7473 +msgid "Waveform" +msgstr "" + +#: src/gui/settings.cpp:3944 +msgid "Waveform (clip)" +msgstr "" + +#: src/gui/settings.cpp:3945 +msgid "Reference" +msgstr "" + +#: src/gui/settings.cpp:3946 +msgid "Guide" +msgstr "" + +#: src/gui/settings.cpp:3948 +msgid "Wave (non-mono)" +msgstr "" + +#: src/gui/settings.cpp:3949 +msgid "Waveform (1)" +msgstr "" + +#: src/gui/settings.cpp:3950 +msgid "Waveform (2)" +msgstr "" + +#: src/gui/settings.cpp:3951 +msgid "Waveform (3)" +msgstr "" + +#: src/gui/settings.cpp:3952 +msgid "Waveform (4)" +msgstr "" + +#: src/gui/settings.cpp:3953 +msgid "Waveform (5)" +msgstr "" + +#: src/gui/settings.cpp:3954 +msgid "Waveform (6)" +msgstr "" + +#: src/gui/settings.cpp:3955 +msgid "Waveform (7)" +msgstr "" + +#: src/gui/settings.cpp:3956 +msgid "Waveform (8)" +msgstr "" + +#: src/gui/settings.cpp:3957 +msgid "Waveform (9)" +msgstr "" + +#: src/gui/settings.cpp:3958 +msgid "Waveform (10)" +msgstr "" + +#: src/gui/settings.cpp:3959 +msgid "Waveform (11)" +msgstr "" + +#: src/gui/settings.cpp:3960 +msgid "Waveform (12)" +msgstr "" + +#: src/gui/settings.cpp:3961 +msgid "Waveform (13)" +msgstr "" + +#: src/gui/settings.cpp:3962 +msgid "Waveform (14)" +msgstr "" + +#: src/gui/settings.cpp:3963 +msgid "Waveform (15)" +msgstr "" + +#: src/gui/settings.cpp:3964 +msgid "Waveform (16)" +msgstr "" + +#: src/gui/settings.cpp:3972 +msgid "Clip" +msgstr "" + +#: src/gui/settings.cpp:3976 +msgid "Order number" +msgstr "" + +#: src/gui/settings.cpp:3977 +msgid "Playing order background" +msgstr "" + +#: src/gui/settings.cpp:3978 +msgid "Song loop" +msgstr "" + +#: src/gui/settings.cpp:3979 +msgid "Selected order" +msgstr "" + +#: src/gui/settings.cpp:3980 +msgid "Similar patterns" +msgstr "" + +#: src/gui/settings.cpp:3981 +msgid "Inactive patterns" +msgstr "" + +#: src/gui/settings.cpp:3984 +msgid "Envelope View" +msgstr "" + +#: src/gui/settings.cpp:3985 src/gui/insEdit.cpp:540 src/gui/insEdit.cpp:3547 +#: src/gui/insEdit.cpp:3548 src/gui/insEdit.cpp:4081 src/gui/insEdit.cpp:4151 +#: src/gui/insEdit.cpp:4790 src/gui/insEdit.cpp:5861 src/gui/insEdit.cpp:5862 +#: src/gui/insEdit.cpp:6487 src/gui/insEdit.cpp:6488 src/gui/insEdit.cpp:6555 +#: src/gui/insEdit.cpp:6556 src/gui/insEdit.cpp:6995 src/gui/insEdit.cpp:7009 +#: src/gui/insEdit.cpp:7029 src/gui/insEdit.cpp:7166 +#, c-format +msgid "Envelope" +msgstr "" + +#: src/gui/settings.cpp:3986 +msgid "Sustain guide" +msgstr "" + +#: src/gui/settings.cpp:3992 +msgid "Algorithm background" +msgstr "" + +#: src/gui/settings.cpp:3993 +msgid "Algorithm lines" +msgstr "" + +#: src/gui/settings.cpp:3994 +msgid "Modulator" +msgstr "" + +#: src/gui/settings.cpp:3995 +msgid "Carrier" +msgstr "" + +#: src/gui/settings.cpp:3997 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:4146 +msgid "SSG-EG" +msgstr "" + +#: src/gui/settings.cpp:4000 +msgid "" +"(the following colors only apply when \"Use separate colors for carriers/" +"modulators in FM editor\" is on!)" +msgstr "" + +#: src/gui/settings.cpp:4002 +msgid "Mod. accent (primary)" +msgstr "" + +#: src/gui/settings.cpp:4003 +msgid "Mod. accent (secondary)" +msgstr "" + +#: src/gui/settings.cpp:4004 +msgid "Mod. border" +msgstr "" + +#: src/gui/settings.cpp:4005 +msgid "Mod. border shadow" +msgstr "" + +#: src/gui/settings.cpp:4007 +msgid "Car. accent (primary)" +msgstr "" + +#: src/gui/settings.cpp:4008 +msgid "Car. accent (secondary)" +msgstr "" + +#: src/gui/settings.cpp:4009 +msgid "Car. border" +msgstr "" + +#: src/gui/settings.cpp:4010 +msgid "Car. border shadow" +msgstr "" + +#: src/gui/settings.cpp:4016 src/gui/guiConst.cpp:227 src/gui/insEdit.cpp:6924 +#: src/gui/insEdit.cpp:6931 src/gui/insEdit.cpp:6942 src/gui/insEdit.cpp:6950 +#: src/gui/insEdit.cpp:6971 src/gui/insEdit.cpp:6983 src/gui/insEdit.cpp:6993 +#: src/gui/insEdit.cpp:7006 src/gui/insEdit.cpp:7019 src/gui/insEdit.cpp:7028 +#: src/gui/insEdit.cpp:7036 src/gui/insEdit.cpp:7042 src/gui/insEdit.cpp:7052 +#: src/gui/insEdit.cpp:7061 src/gui/insEdit.cpp:7068 src/gui/insEdit.cpp:7075 +#: src/gui/insEdit.cpp:7087 src/gui/insEdit.cpp:7095 src/gui/insEdit.cpp:7102 +#: src/gui/insEdit.cpp:7109 src/gui/insEdit.cpp:7117 src/gui/insEdit.cpp:7123 +#: src/gui/insEdit.cpp:7132 src/gui/insEdit.cpp:7143 src/gui/insEdit.cpp:7153 +#: src/gui/insEdit.cpp:7161 src/gui/insEdit.cpp:7174 src/gui/insEdit.cpp:7182 +#: src/gui/insEdit.cpp:7193 src/gui/insEdit.cpp:7203 src/gui/insEdit.cpp:7213 +#: src/gui/insEdit.cpp:7227 src/gui/insEdit.cpp:7233 src/gui/insEdit.cpp:7241 +#: src/gui/insEdit.cpp:7248 src/gui/insEdit.cpp:7272 src/gui/insEdit.cpp:7280 +#: src/gui/insEdit.cpp:7289 src/gui/insEdit.cpp:7298 src/gui/insEdit.cpp:7306 +#: src/gui/insEdit.cpp:7323 src/gui/insEdit.cpp:7331 src/gui/insEdit.cpp:7337 +#: src/gui/insEdit.cpp:7344 src/gui/insEdit.cpp:7350 src/gui/insEdit.cpp:7355 +#: src/gui/insEdit.cpp:7361 src/gui/insEdit.cpp:7368 src/gui/insEdit.cpp:7376 +#: src/gui/insEdit.cpp:7385 src/gui/insEdit.cpp:7393 src/gui/insEdit.cpp:7401 +#: src/gui/insEdit.cpp:7413 src/gui/insEdit.cpp:7428 src/gui/insEdit.cpp:7439 +#: src/gui/insEdit.cpp:7447 src/gui/insEdit.cpp:7456 src/gui/insEdit.cpp:7466 +#: src/gui/insEdit.cpp:7474 +msgid "Pitch" +msgstr "" + +#: src/gui/settings.cpp:4021 +msgid "Instrument Types" +msgstr "" + +#: src/gui/settings.cpp:4022 +msgid "FM (OPN)" +msgstr "" + +#: src/gui/settings.cpp:4023 +msgid "SN76489/Sega PSG" +msgstr "" + +#: src/gui/settings.cpp:4026 +msgid "C64" +msgstr "" + +#: src/gui/settings.cpp:4027 +msgid "Amiga/Generic Sample" +msgstr "" + +#: src/gui/settings.cpp:4028 +msgid "PC Engine" +msgstr "" + +#: src/gui/settings.cpp:4029 +msgid "AY-3-8910/SSG" +msgstr "" + +#: src/gui/settings.cpp:4030 +msgid "AY8930" +msgstr "" + +#: src/gui/settings.cpp:4031 +msgid "TIA" +msgstr "" + +#: src/gui/settings.cpp:4032 +msgid "SAA1099" +msgstr "" + +#: src/gui/settings.cpp:4033 +msgid "VIC" +msgstr "" + +#: src/gui/settings.cpp:4034 +msgid "PET" +msgstr "" + +#: src/gui/settings.cpp:4035 +msgid "VRC6" +msgstr "" + +#: src/gui/settings.cpp:4036 src/gui/guiConst.cpp:149 +msgid "VRC6 (saw)" +msgstr "" + +#: src/gui/settings.cpp:4037 +msgid "FM (OPLL)" +msgstr "" + +#: src/gui/settings.cpp:4038 +msgid "FM (OPL)" +msgstr "" + +#: src/gui/settings.cpp:4043 +msgid "FM (OPZ)" +msgstr "" + +#: src/gui/settings.cpp:4045 +msgid "PC Beeper" +msgstr "" + +#: src/gui/settings.cpp:4047 +msgid "Lynx" +msgstr "" + +#: src/gui/settings.cpp:4049 +msgid "X1-010" +msgstr "" + +#: src/gui/settings.cpp:4050 +msgid "ES5506" +msgstr "" + +#: src/gui/settings.cpp:4053 +msgid "Sound Unit" +msgstr "" + +#: src/gui/settings.cpp:4055 +msgid "FM (OPL Drums)" +msgstr "" + +#: src/gui/settings.cpp:4056 +msgid "FM (OPM)" +msgstr "" + +#: src/gui/settings.cpp:4057 +msgid "NES" +msgstr "" + +#: src/gui/settings.cpp:4058 +msgid "MSM6258" +msgstr "" + +#: src/gui/settings.cpp:4059 +msgid "MSM6295" +msgstr "" + +#: src/gui/settings.cpp:4060 +msgid "ADPCM-A" +msgstr "" + +#: src/gui/settings.cpp:4062 +msgid "Sega PCM" +msgstr "" + +#: src/gui/settings.cpp:4063 +msgid "QSound" +msgstr "" + +#: src/gui/settings.cpp:4064 +msgid "YMZ280B" +msgstr "" + +#: src/gui/settings.cpp:4065 +msgid "RF5C68" +msgstr "" + +#: src/gui/settings.cpp:4066 +msgid "MSM5232" +msgstr "" + +#: src/gui/settings.cpp:4067 +msgid "K007232" +msgstr "" + +#: src/gui/settings.cpp:4068 +msgid "GA20" +msgstr "" + +#: src/gui/settings.cpp:4070 +msgid "SM8521" +msgstr "" + +#: src/gui/settings.cpp:4071 +msgid "PV-1000" +msgstr "" + +#: src/gui/settings.cpp:4072 +msgid "K053260" +msgstr "" + +#: src/gui/settings.cpp:4073 +msgid "TED" +msgstr "" + +#: src/gui/settings.cpp:4074 +msgid "C140" +msgstr "" + +#: src/gui/settings.cpp:4075 +msgid "C219" +msgstr "" + +#: src/gui/settings.cpp:4076 +msgid "ESFM" +msgstr "" + +#: src/gui/settings.cpp:4077 src/gui/guiConst.cpp:179 +msgid "PowerNoise (noise)" +msgstr "" + +#: src/gui/settings.cpp:4078 src/gui/guiConst.cpp:180 +msgid "PowerNoise (slope)" +msgstr "" + +#: src/gui/settings.cpp:4081 +msgid "GBA DMA" +msgstr "" + +#: src/gui/settings.cpp:4082 +msgid "GBA MinMod" +msgstr "" + +#: src/gui/settings.cpp:4085 +msgid "Other/Unknown" +msgstr "" + +#: src/gui/settings.cpp:4089 +msgid "Single color (background)" +msgstr "" + +#: src/gui/settings.cpp:4090 +msgid "Single color (text)" +msgstr "" + +#: src/gui/settings.cpp:4091 src/gui/guiConst.cpp:1393 src/gui/waveEdit.cpp:668 +msgid "FM" +msgstr "" + +#: src/gui/settings.cpp:4096 +msgid "FM operator" +msgstr "" + +#: src/gui/settings.cpp:4097 +msgid "Muted" +msgstr "" + +#: src/gui/settings.cpp:4101 +msgid "Playhead" +msgstr "" + +#: src/gui/settings.cpp:4102 +msgid "Editing" +msgstr "" + +#: src/gui/settings.cpp:4103 +msgid "Editing (will clone)" +msgstr "" + +#: src/gui/settings.cpp:4104 +msgid "Cursor" +msgstr "" + +#: src/gui/settings.cpp:4105 +msgid "Cursor (hovered)" +msgstr "" + +#: src/gui/settings.cpp:4106 +msgid "Cursor (clicked)" +msgstr "" + +#: src/gui/settings.cpp:4107 src/gui/settings.cpp:4172 +#: src/gui/findReplace.cpp:791 +msgid "Selection" +msgstr "" + +#: src/gui/settings.cpp:4108 +msgid "Selection (hovered)" +msgstr "" + +#: src/gui/settings.cpp:4109 +msgid "Selection (clicked)" +msgstr "" + +#: src/gui/settings.cpp:4110 +msgid "Highlight 1" +msgstr "" + +#: src/gui/settings.cpp:4111 +msgid "Highlight 2" +msgstr "" + +#: src/gui/settings.cpp:4112 +msgid "Row number" +msgstr "" + +#: src/gui/settings.cpp:4113 +msgid "Row number (highlight 1)" +msgstr "" + +#: src/gui/settings.cpp:4114 +msgid "Row number (highlight 2)" +msgstr "" + +#: src/gui/settings.cpp:4116 +msgid "Note (highlight 1)" +msgstr "" + +#: src/gui/settings.cpp:4117 +msgid "Note (highlight 2)" +msgstr "" + +#: src/gui/settings.cpp:4118 +msgid "Blank" +msgstr "" + +#: src/gui/settings.cpp:4119 +msgid "Blank (highlight 1)" +msgstr "" + +#: src/gui/settings.cpp:4120 +msgid "Blank (highlight 2)" +msgstr "" + +#: src/gui/settings.cpp:4122 +msgid "Instrument (invalid type)" +msgstr "" + +#: src/gui/settings.cpp:4123 +msgid "Instrument (out of range)" +msgstr "" + +#: src/gui/settings.cpp:4124 +msgid "Volume (0%)" +msgstr "" + +#: src/gui/settings.cpp:4125 +msgid "Volume (50%)" +msgstr "" + +#: src/gui/settings.cpp:4126 +msgid "Volume (100%)" +msgstr "" + +#: src/gui/settings.cpp:4128 +msgid "Pitch effect" +msgstr "" + +#: src/gui/settings.cpp:4129 +msgid "Volume effect" +msgstr "" + +#: src/gui/settings.cpp:4130 +msgid "Panning effect" +msgstr "" + +#: src/gui/settings.cpp:4131 +msgid "Song effect" +msgstr "" + +#: src/gui/settings.cpp:4132 +msgid "Time effect" +msgstr "" + +#: src/gui/settings.cpp:4133 +msgid "Speed effect" +msgstr "" + +#: src/gui/settings.cpp:4134 +msgid "Primary specific effect" +msgstr "" + +#: src/gui/settings.cpp:4135 +msgid "Secondary specific effect" +msgstr "" + +#: src/gui/settings.cpp:4137 +msgid "External command output" +msgstr "" + +#: src/gui/settings.cpp:4138 +msgid "Status: off/disabled" +msgstr "" + +#: src/gui/settings.cpp:4139 +msgid "Status: off + macro rel" +msgstr "" + +#: src/gui/settings.cpp:4140 +msgid "Status: on + macro rel" +msgstr "" + +#: src/gui/settings.cpp:4141 +msgid "Status: on" +msgstr "" + +#: src/gui/settings.cpp:4142 +msgid "Status: volume" +msgstr "" + +#: src/gui/settings.cpp:4143 +msgid "Status: pitch" +msgstr "" + +#: src/gui/settings.cpp:4144 +msgid "Status: panning" +msgstr "" + +#: src/gui/settings.cpp:4145 +msgid "Status: chip (primary)" +msgstr "" + +#: src/gui/settings.cpp:4146 +msgid "Status: chip (secondary)" +msgstr "" + +#: src/gui/settings.cpp:4147 +msgid "Status: mixing" +msgstr "" + +#: src/gui/settings.cpp:4148 +msgid "Status: DSP effect" +msgstr "" + +#: src/gui/settings.cpp:4149 +msgid "Status: note altering" +msgstr "" + +#: src/gui/settings.cpp:4150 +msgid "Status: misc color 1" +msgstr "" + +#: src/gui/settings.cpp:4151 +msgid "Status: misc color 2" +msgstr "" + +#: src/gui/settings.cpp:4152 +msgid "Status: misc color 3" +msgstr "" + +#: src/gui/settings.cpp:4153 +msgid "Status: attack" +msgstr "" + +#: src/gui/settings.cpp:4154 +msgid "Status: decay" +msgstr "" + +#: src/gui/settings.cpp:4155 +msgid "Status: sustain" +msgstr "" + +#: src/gui/settings.cpp:4156 +msgid "Status: release" +msgstr "" + +#: src/gui/settings.cpp:4157 +msgid "Status: decrease linear" +msgstr "" + +#: src/gui/settings.cpp:4158 +msgid "Status: decrease exp" +msgstr "" + +#: src/gui/settings.cpp:4159 +msgid "Status: increase" +msgstr "" + +#: src/gui/settings.cpp:4160 +msgid "Status: bent" +msgstr "" + +#: src/gui/settings.cpp:4161 +msgid "Status: direct" +msgstr "" + +#: src/gui/settings.cpp:4164 src/gui/guiConst.cpp:586 src/gui/sampleEdit.cpp:96 +msgid "Sample Editor" +msgstr "" + +#: src/gui/settings.cpp:4167 +msgid "Time background" +msgstr "" + +#: src/gui/settings.cpp:4168 +msgid "Time text" +msgstr "" + +#: src/gui/settings.cpp:4169 +msgid "Loop region" +msgstr "" + +#: src/gui/settings.cpp:4170 +msgid "Center guide" +msgstr "" + +#: src/gui/settings.cpp:4171 +msgid "Grid" +msgstr "" + +#: src/gui/settings.cpp:4173 +msgid "Selection points" +msgstr "" + +#: src/gui/settings.cpp:4174 +msgid "Preview needle" +msgstr "" + +#: src/gui/settings.cpp:4175 +msgid "Playing needles" +msgstr "" + +#: src/gui/settings.cpp:4176 +msgid "Loop markers" +msgstr "" + +#: src/gui/settings.cpp:4177 +msgid "Chip select: disabled" +msgstr "" + +#: src/gui/settings.cpp:4178 +msgid "Chip select: enabled" +msgstr "" + +#: src/gui/settings.cpp:4179 +msgid "Chip select: enabled (failure)" +msgstr "" + +#: src/gui/settings.cpp:4182 src/gui/guiConst.cpp:602 src/gui/patManager.cpp:35 +msgid "Pattern Manager" +msgstr "" + +#: src/gui/settings.cpp:4183 +msgid "Unallocated" +msgstr "" + +#: src/gui/settings.cpp:4184 +msgid "Unused" +msgstr "" + +#: src/gui/settings.cpp:4185 +msgid "Used" +msgstr "" + +#: src/gui/settings.cpp:4186 +msgid "Overused" +msgstr "" + +#: src/gui/settings.cpp:4187 +msgid "Really overused" +msgstr "" + +#: src/gui/settings.cpp:4188 +msgid "Combo Breaker" +msgstr "" + +#: src/gui/settings.cpp:4191 src/gui/guiConst.cpp:599 src/gui/piano.cpp:63 +msgid "Piano" +msgstr "" + +#: src/gui/settings.cpp:4193 +msgid "Upper key" +msgstr "" + +#: src/gui/settings.cpp:4194 +msgid "Upper key (feedback)" +msgstr "" + +#: src/gui/settings.cpp:4195 +msgid "Upper key (pressed)" +msgstr "" + +#: src/gui/settings.cpp:4196 +msgid "Lower key" +msgstr "" + +#: src/gui/settings.cpp:4197 +msgid "Lower key (feedback)" +msgstr "" + +#: src/gui/settings.cpp:4198 +msgid "Lower key (pressed)" +msgstr "" + +#: src/gui/settings.cpp:4201 src/gui/clock.cpp:31 src/gui/guiConst.cpp:610 +msgid "Clock" +msgstr "" + +#: src/gui/settings.cpp:4202 +msgid "Clock text" +msgstr "" + +#: src/gui/settings.cpp:4203 +msgid "Beat (off)" +msgstr "" + +#: src/gui/settings.cpp:4204 +msgid "Beat (on)" +msgstr "" + +#: src/gui/settings.cpp:4209 +msgid "PortSet" +msgstr "" + +#: src/gui/settings.cpp:4210 +msgid "Port" +msgstr "" + +#: src/gui/settings.cpp:4211 +msgid "Port (hidden/unavailable)" +msgstr "" + +#: src/gui/settings.cpp:4212 +msgid "Connection (selected)" +msgstr "" + +#: src/gui/settings.cpp:4213 +msgid "Connection (other)" +msgstr "" + +#: src/gui/settings.cpp:4219 +msgid "Waveform data" +msgstr "" + +#: src/gui/settings.cpp:4222 +msgid "Reserved" +msgstr "" + +#: src/gui/settings.cpp:4224 +msgid "Sample (alternate 1)" +msgstr "" + +#: src/gui/settings.cpp:4225 +msgid "Sample (alternate 2)" +msgstr "" + +#: src/gui/settings.cpp:4226 +msgid "Sample (alternate 3)" +msgstr "" + +#: src/gui/settings.cpp:4227 +msgid "Wave RAM" +msgstr "" + +#: src/gui/settings.cpp:4228 +msgid "Wavetable (static)" +msgstr "" + +#: src/gui/settings.cpp:4229 +msgid "Echo buffer" +msgstr "" + +#: src/gui/settings.cpp:4230 +msgid "Namco 163 load pos" +msgstr "" + +#: src/gui/settings.cpp:4231 +msgid "Namco 163 play pos" +msgstr "" + +#: src/gui/settings.cpp:4232 +msgid "Sample (bank 0)" +msgstr "" + +#: src/gui/settings.cpp:4233 +msgid "Sample (bank 1)" +msgstr "" + +#: src/gui/settings.cpp:4234 +msgid "Sample (bank 2)" +msgstr "" + +#: src/gui/settings.cpp:4235 +msgid "Sample (bank 3)" +msgstr "" + +#: src/gui/settings.cpp:4236 +msgid "Sample (bank 4)" +msgstr "" + +#: src/gui/settings.cpp:4237 +msgid "Sample (bank 5)" +msgstr "" + +#: src/gui/settings.cpp:4238 +msgid "Sample (bank 6)" +msgstr "" + +#: src/gui/settings.cpp:4239 +msgid "Sample (bank 7)" +msgstr "" + +#: src/gui/settings.cpp:4244 +msgid "Log level: Error" +msgstr "" + +#: src/gui/settings.cpp:4245 +msgid "Log level: Warning" +msgstr "" + +#: src/gui/settings.cpp:4246 +msgid "Log level: Info" +msgstr "" + +#: src/gui/settings.cpp:4247 +msgid "Log level: Debug" +msgstr "" + +#: src/gui/settings.cpp:4248 +msgid "Log level: Trace/Verbose" +msgstr "" + +#: src/gui/settings.cpp:4253 +msgid "Backup" +msgstr "" + +#: src/gui/settings.cpp:4258 +msgid "Enable backup system" +msgstr "" + +#: src/gui/settings.cpp:4263 +msgid "Interval (in seconds)" +msgstr "" + +#: src/gui/settings.cpp:4268 +msgid "Backups per file" +msgstr "" + +#: src/gui/settings.cpp:4274 +msgid "Backup Management" +msgstr "" + +#: src/gui/settings.cpp:4278 +msgid "Purge before:" +msgstr "" + +#: src/gui/settings.cpp:4352 +msgid "Go##PDate" +msgstr "" + +#: src/gui/settings.cpp:4359 +#, c-format +msgid "%PB used" +msgstr "" + +#: src/gui/settings.cpp:4361 +#, c-format +msgid "%TB used" +msgstr "" + +#: src/gui/settings.cpp:4363 +#, c-format +msgid "%GB used" +msgstr "" + +#: src/gui/settings.cpp:4365 +#, c-format +msgid "%MB used" +msgstr "" + +#: src/gui/settings.cpp:4367 +#, c-format +msgid "%KB used" +msgstr "" + +#: src/gui/settings.cpp:4369 +#, c-format +msgid "% bytes used" +msgstr "" + +#: src/gui/settings.cpp:4374 +msgid "Refresh" +msgstr "" + +#: src/gui/settings.cpp:4378 +msgid "Delete all" +msgstr "" + +#: src/gui/settings.cpp:4384 src/gui/settings.cpp:6688 +msgid "Size" +msgstr "" + +#: src/gui/settings.cpp:4385 +msgid "Latest" +msgstr "" + +#: src/gui/settings.cpp:4395 +#, c-format +msgid "%P" +msgstr "" + +#: src/gui/settings.cpp:4397 +#, c-format +msgid "%T" +msgstr "" + +#: src/gui/settings.cpp:4399 +#, c-format +msgid "%G" +msgstr "" + +#: src/gui/settings.cpp:4401 +#, c-format +msgid "%M" +msgstr "" + +#: src/gui/settings.cpp:4403 +#, c-format +msgid "%K" +msgstr "" + +#: src/gui/settings.cpp:4405 +#, c-format +msgid "%" +msgstr "" + +#: src/gui/settings.cpp:4529 +msgid "Cheat Codes" +msgstr "" + +#: src/gui/settings.cpp:4531 +msgid "Enter code:" +msgstr "" + +#: src/gui/settings.cpp:4533 +msgid "Submit" +msgstr "" + +#: src/gui/settings.cpp:4537 +msgid "invalid code" +msgstr "" + +#: src/gui/settings.cpp:4547 +msgid "toggled alternate UI" +msgstr "" + +#: src/gui/settings.cpp:4551 +msgid ":smile: :star_struck: :sunglasses: :ok_hand:" +msgstr "" + +#: src/gui/settings.cpp:4555 +msgid "enabled all instrument types" +msgstr "" + +#: src/gui/settings.cpp:4559 +msgid "OK, if I bring your Partial pitch linearity will you stop bothering me?" +msgstr "" + +#: src/gui/settings.cpp:4563 +msgid "unlocked audio multi-threading options!" +msgstr "" + +#: src/gui/settings.cpp:4567 +msgid "enabled \"comfortable\" mode" +msgstr "" + +#: src/gui/settings.cpp:4585 +msgid "OK##SettingsOK" +msgstr "" + +#: src/gui/settings.cpp:4591 +msgid "Cancel##SettingsCancel" +msgstr "" + +#: src/gui/settings.cpp:4599 +msgid "Apply##SettingsApply" +msgstr "" + +#: src/gui/settings.cpp:5673 +msgid "could not initialize audio!" +msgstr "" + +#: src/gui/settings.cpp:5683 src/gui/gui.cpp:4067 src/gui/gui.cpp:6662 +#: src/gui/gui.cpp:7088 +msgid "error while loading fonts! please check your settings." +msgstr "" + +#: src/gui/settings.cpp:5862 +#, c-format +msgid "error while loading config! (%s)" +msgstr "" + +#: src/gui/settings.cpp:6675 +msgid "[Dir]" +msgstr "" + +#: src/gui/settings.cpp:6676 +msgid "[Link]" +msgstr "" + +#: src/gui/settings.cpp:6677 +msgid "[File]" +msgstr "" + +#: src/gui/settings.cpp:6678 +msgid "Name:" +msgstr "" + +#: src/gui/settings.cpp:6679 +msgid "Path:" +msgstr "" + +#: src/gui/settings.cpp:6680 +msgid "Reset search" +msgstr "" + +#: src/gui/settings.cpp:6681 +msgid "Drives" +msgstr "" + +#: src/gui/settings.cpp:6682 +msgid "" +"Edit path\n" +"You can also right click on path buttons" +msgstr "" + +#: src/gui/settings.cpp:6683 +msgid "Go to home directory" +msgstr "" + +#: src/gui/settings.cpp:6684 +msgid "Go to parent directory" +msgstr "" + +#: src/gui/settings.cpp:6685 +msgid "Create Directory" +msgstr "" + +#: src/gui/settings.cpp:6686 +msgid "File name" +msgstr "" + +#: src/gui/settings.cpp:6689 +msgid "Date" +msgstr "" + +#: src/gui/settings.cpp:6690 src/gui/gui.cpp:5510 src/gui/gui.cpp:5645 +#: src/gui/gui.cpp:5646 +msgid "Warning" +msgstr "" + +#: src/gui/settings.cpp:6691 +msgid "The file you selected already exists! Would you like to overwrite it?" +msgstr "" + +#: src/gui/settings.cpp:6692 src/gui/gui.cpp:5650 src/gui/gui.cpp:5674 +#: src/gui/gui.cpp:5698 src/gui/gui.cpp:5722 src/gui/gui.cpp:5746 +#: src/gui/gui.cpp:5770 src/gui/gui.cpp:5802 src/gui/gui.cpp:5818 +#: src/gui/gui.cpp:5829 src/gui/gui.cpp:5841 src/gui/gui.cpp:5995 +#: src/gui/gui.cpp:6017 src/gui/gui.cpp:6032 src/gui/gui.cpp:6043 +msgid "Yes" +msgstr "" + +#: src/gui/settings.cpp:6693 src/gui/findReplace.cpp:828 src/gui/gui.cpp:5664 +#: src/gui/gui.cpp:5688 src/gui/gui.cpp:5712 src/gui/gui.cpp:5736 +#: src/gui/gui.cpp:5760 src/gui/gui.cpp:5788 src/gui/gui.cpp:5813 +#: src/gui/gui.cpp:5824 src/gui/gui.cpp:5836 src/gui/gui.cpp:5848 +#: src/gui/gui.cpp:6012 src/gui/gui.cpp:6027 src/gui/gui.cpp:6037 +#: src/gui/gui.cpp:6050 +msgid "No" +msgstr "" + +#: src/gui/settings.cpp:6694 +msgid "%Y/%m/%d %H:%M" +msgstr "" + +#: src/gui/orders.cpp:114 +msgid "Add new order" +msgstr "" + +#: src/gui/orders.cpp:125 src/gui/guiConst.cpp:794 +msgid "Remove order" +msgstr "" + +#: src/gui/orders.cpp:137 +msgid "Duplicate order (right-click to deep clone)" +msgstr "" + +#: src/gui/orders.cpp:146 src/gui/guiConst.cpp:795 +msgid "Move order up" +msgstr "" + +#: src/gui/orders.cpp:155 src/gui/guiConst.cpp:796 +msgid "Move order down" +msgstr "" + +#: src/gui/orders.cpp:167 +msgid "Place copy of current order at end of song (right-click to deep clone)" +msgstr "" + +#: src/gui/orders.cpp:177 +msgid "Order change mode: entire row" +msgstr "" + +#: src/gui/orders.cpp:179 +msgid "Order change mode: one" +msgstr "" + +#: src/gui/orders.cpp:205 +msgid "Order edit mode: Select and type (scroll vertically)" +msgstr "" + +#: src/gui/orders.cpp:207 +msgid "Order edit mode: Select and type (scroll horizontally)" +msgstr "" + +#: src/gui/orders.cpp:209 +msgid "Order edit mode: Select and type (don't scroll)" +msgstr "" + +#: src/gui/orders.cpp:211 +msgid "Order edit mode: Click to change" +msgstr "" + +#: src/gui/findReplace.cpp:29 +msgid "ignore" +msgstr "" + +#: src/gui/findReplace.cpp:30 +msgid "equals" +msgstr "" + +#: src/gui/findReplace.cpp:31 +msgid "not equal" +msgstr "" + +#: src/gui/findReplace.cpp:32 +msgid "between" +msgstr "" + +#: src/gui/findReplace.cpp:33 +msgid "not between" +msgstr "" + +#: src/gui/findReplace.cpp:34 +msgid "any" +msgstr "" + +#: src/gui/findReplace.cpp:35 src/gui/guiConst.cpp:217 +msgid "none" +msgstr "" + +#: src/gui/findReplace.cpp:39 +msgid "set" +msgstr "" + +#: src/gui/findReplace.cpp:40 +msgid "add" +msgstr "" + +#: src/gui/findReplace.cpp:41 +msgid "add (overflow)" +msgstr "" + +#: src/gui/findReplace.cpp:42 +msgid "scale %" +msgstr "" + +#: src/gui/findReplace.cpp:512 src/gui/guiConst.cpp:609 +msgid "Find/Replace" +msgstr "" + +#: src/gui/findReplace.cpp:520 src/gui/findReplace.cpp:850 +msgid "Find" +msgstr "" + +#: src/gui/findReplace.cpp:526 src/gui/findReplace.cpp:535 +msgid "order" +msgstr "" + +#: src/gui/findReplace.cpp:527 src/gui/findReplace.cpp:537 +msgid "row" +msgstr "" + +#: src/gui/findReplace.cpp:539 src/gui/csPlayer.cpp:146 +msgid "channel" +msgstr "" + +#: src/gui/findReplace.cpp:541 +msgid "go" +msgstr "" + +#: src/gui/findReplace.cpp:585 +msgid "no matches found!" +msgstr "" + +#: src/gui/findReplace.cpp:587 +msgid "Back" +msgstr "" + +#: src/gui/findReplace.cpp:750 +msgid "Delete query" +msgstr "" + +#: src/gui/findReplace.cpp:754 src/gui/findReplace.cpp:1037 +msgid "Add effect" +msgstr "" + +#: src/gui/findReplace.cpp:761 src/gui/findReplace.cpp:1044 +msgid "Remove effect" +msgstr "" + +#: src/gui/findReplace.cpp:786 +msgid "Search range:" +msgstr "" + +#: src/gui/findReplace.cpp:799 +msgid "Confine to channels" +msgstr "" + +#: src/gui/findReplace.cpp:803 src/gui/sampleEdit.cpp:1152 +msgid "From" +msgstr "" + +#: src/gui/findReplace.cpp:814 src/gui/sampleEdit.cpp:1156 +msgid "To" +msgstr "" + +#: src/gui/findReplace.cpp:826 +msgid "Match effect position:" +msgstr "" + +#: src/gui/findReplace.cpp:832 +msgid "match effects regardless of position." +msgstr "" + +#: src/gui/findReplace.cpp:834 src/gui/compatFlags.cpp:288 +msgid "Lax" +msgstr "" + +#: src/gui/findReplace.cpp:838 +msgid "match effects only if they appear in-order." +msgstr "" + +#: src/gui/findReplace.cpp:840 src/gui/compatFlags.cpp:276 +msgid "Strict" +msgstr "" + +#: src/gui/findReplace.cpp:844 +msgid "match effects only if they appear exactly as specified." +msgstr "" + +#: src/gui/findReplace.cpp:856 +msgid "Replace" +msgstr "" + +#: src/gui/findReplace.cpp:908 +msgid "INVALID" +msgstr "" + +#: src/gui/findReplace.cpp:1052 +msgid "Effect replace mode:" +msgstr "" + +#: src/gui/findReplace.cpp:1053 +msgid "Replace matches only" +msgstr "" + +#: src/gui/findReplace.cpp:1056 +msgid "Replace matches, then free spaces" +msgstr "" + +#: src/gui/findReplace.cpp:1059 +msgid "Clear effects" +msgstr "" + +#: src/gui/findReplace.cpp:1062 +msgid "Insert in free spaces" +msgstr "" + +#: src/gui/findReplace.cpp:1065 +msgid "Replace##QueryReplace" +msgstr "" + +#: src/gui/about.cpp:26 +msgid "is proud to present" +msgstr "" + +#: src/gui/about.cpp:30 +msgid "the biggest multi-system chiptune tracker!" +msgstr "" + +#: src/gui/about.cpp:31 +msgid "featuring DefleMask song compatibility." +msgstr "" + +#: src/gui/about.cpp:33 +msgid "> CREDITS <" +msgstr "" + +#: src/gui/about.cpp:35 +msgid "-- program --" +msgstr "" + +#: src/gui/about.cpp:37 +msgid "A M 4 N (intro tune)" +msgstr "" + +#: src/gui/about.cpp:52 +msgid "-- graphics/UI design --" +msgstr "" + +#: src/gui/about.cpp:59 +msgid "-- documentation --" +msgstr "" + +#: src/gui/about.cpp:69 +msgid "-- localization/translation team --" +msgstr "" + +#: src/gui/about.cpp:81 +msgid "-- demo songs --" +msgstr "" + +#: src/gui/about.cpp:207 +msgid "-- additional feedback/fixes --" +msgstr "" + +#: src/gui/about.cpp:218 +msgid "-- Metal backend test team --" +msgstr "" + +#: src/gui/about.cpp:224 +msgid "-- DirectX 9 backend test team --" +msgstr "" + +#: src/gui/about.cpp:231 +msgid "powered by:" +msgstr "" + +#: src/gui/about.cpp:232 +msgid "Dear ImGui by Omar Cornut" +msgstr "" + +#: src/gui/about.cpp:233 +msgid "SDL2 by Sam Lantinga" +msgstr "" + +#: src/gui/about.cpp:237 +msgid "zlib by Jean-loup Gailly" +msgstr "" + +#: src/gui/about.cpp:238 +msgid "and Mark Adler" +msgstr "" + +#: src/gui/about.cpp:239 +msgid "libsndfile by Erik de Castro Lopo" +msgstr "" + +#: src/gui/about.cpp:240 +msgid "Portable File Dialogs by Sam Hocevar" +msgstr "" + +#: src/gui/about.cpp:241 +msgid "Native File Dialog by Frogtoss Games" +msgstr "" + +#: src/gui/about.cpp:243 +msgid "Weak-JACK by x42" +msgstr "" + +#: src/gui/about.cpp:244 +msgid "RtMidi by Gary P. Scavone" +msgstr "" + +#: src/gui/about.cpp:245 +msgid "FFTW by Matteo Frigo and Steven G. Johnson" +msgstr "" + +#: src/gui/about.cpp:246 +msgid "backward-cpp by Google" +msgstr "" + +#: src/gui/about.cpp:247 +msgid "adpcm by superctr" +msgstr "" + +#: src/gui/about.cpp:248 +msgid "adpcm-xq by David Bryant" +msgstr "" + +#: src/gui/about.cpp:249 +msgid "Nuked-OPL3/OPLL/OPM/OPN2/PSG by nukeykt" +msgstr "" + +#: src/gui/about.cpp:250 +msgid "YM3812-LLE, YMF262-LLE, YMF276-LLE and YM2608-LLE by nukeykt" +msgstr "" + +#: src/gui/about.cpp:251 +msgid "ESFMu (modified version) by Kagamiin~" +msgstr "" + +#: src/gui/about.cpp:252 +msgid "ymfm by Aaron Giles" +msgstr "" + +#: src/gui/about.cpp:253 +msgid "emu2413 by Digital Sound Antiques" +msgstr "" + +#: src/gui/about.cpp:254 +msgid "MAME SN76496 by Nicola Salmoria" +msgstr "" + +#: src/gui/about.cpp:255 +msgid "MAME AY-3-8910 by Couriersud" +msgstr "" + +#: src/gui/about.cpp:256 +msgid "with AY8930 fixes by Eulous, cam900 and Grauw" +msgstr "" + +#: src/gui/about.cpp:257 +msgid "MAME SAA1099 by Juergen Buchmueller and Manuel Abadia" +msgstr "" + +#: src/gui/about.cpp:258 +msgid "MAME Namco WSG by Nicola Salmoria and Aaron Giles" +msgstr "" + +#: src/gui/about.cpp:259 +msgid "MAME RF5C68 core by Olivier Galibert and Aaron Giles" +msgstr "" + +#: src/gui/about.cpp:260 +msgid "MAME MSM5232 core by Jarek Burczynski and Hiromitsu Shioya" +msgstr "" + +#: src/gui/about.cpp:261 +msgid "MAME MSM6258 core by Barry Rodewald" +msgstr "" + +#: src/gui/about.cpp:262 +msgid "MAME YMZ280B core by Aaron Giles" +msgstr "" + +#: src/gui/about.cpp:263 +msgid "MAME GA20 core by Acho A. Tang and R. Belmont" +msgstr "" + +#: src/gui/about.cpp:264 +msgid "MAME SegaPCM core by Hiromitsu Shioya and Olivier Galibert" +msgstr "" + +#: src/gui/about.cpp:265 +msgid "SAASound by Dave Hooper and Simon Owen" +msgstr "" + +#: src/gui/about.cpp:266 +msgid "SameBoy by Lior Halphon" +msgstr "" + +#: src/gui/about.cpp:267 +msgid "Mednafen PCE, WonderSwan, T6W28 and Virtual Boy audio cores" +msgstr "" + +#: src/gui/about.cpp:268 +msgid "SNES DSP core by Blargg" +msgstr "" + +#: src/gui/about.cpp:269 +msgid "puNES (NES, MMC5 and FDS) by FHorse" +msgstr "" + +#: src/gui/about.cpp:270 +msgid "NSFPlay (NES and FDS) by Brad Smith and Brezza" +msgstr "" + +#: src/gui/about.cpp:271 +msgid "reSID by Dag Lem" +msgstr "" + +#: src/gui/about.cpp:272 +msgid "reSIDfp by Dag Lem, Antti Lankila" +msgstr "" + +#: src/gui/about.cpp:273 +msgid "and Leandro Nini" +msgstr "" + +#: src/gui/about.cpp:274 +msgid "dSID by DefleMask Team based on jsSID" +msgstr "" + +#: src/gui/about.cpp:275 +msgid "Stella by Stella Team" +msgstr "" + +#: src/gui/about.cpp:276 +msgid "QSound emulator by superctr and Valley Bell" +msgstr "" + +#: src/gui/about.cpp:277 +msgid "VICE VIC-20 sound core by Rami Rasanen and viznut" +msgstr "" + +#: src/gui/about.cpp:278 +msgid "VICE TED sound core by Andreas Boose, Tibor Biczo" +msgstr "" + +#: src/gui/about.cpp:279 +msgid "and Marco van den Heuvel" +msgstr "" + +#: src/gui/about.cpp:280 +msgid "VERA sound core by Frank van den Hoef" +msgstr "" + +#: src/gui/about.cpp:281 +msgid "mzpokeysnd POKEY emulator by Michael Borisov" +msgstr "" + +#: src/gui/about.cpp:282 +msgid "ASAP POKEY emulator by Piotr Fusik" +msgstr "" + +#: src/gui/about.cpp:283 +msgid "ported by laoo to C++" +msgstr "" + +#: src/gui/about.cpp:284 +msgid "vgsound_emu (second version, modified version) by cam900" +msgstr "" + +#: src/gui/about.cpp:285 +msgid "SM8521 emulator (modified version) by cam900" +msgstr "" + +#: src/gui/about.cpp:286 +msgid "D65010G031 emulator (modified version) by cam900" +msgstr "" + +#: src/gui/about.cpp:287 +msgid "Namco C140/C219 emulator (modified version) by cam900" +msgstr "" + +#: src/gui/about.cpp:288 +msgid "PowerNoise emulator by scratchminer" +msgstr "" + +#: src/gui/about.cpp:289 +msgid "ep128emu by Istvan Varga" +msgstr "" + +#: src/gui/about.cpp:290 +msgid "NDS sound emulator by cam900" +msgstr "" + +#: src/gui/about.cpp:292 +msgid "greetings to:" +msgstr "" + +#: src/gui/about.cpp:295 +msgid "all members of Deflers of Noice!" +msgstr "" + +#: src/gui/about.cpp:301 +msgid "copyright © 2021-2024 tildearrow" +msgstr "" + +#: src/gui/about.cpp:302 +msgid "(and contributors)." +msgstr "" + +#: src/gui/about.cpp:303 +msgid "licensed under GPLv2+! see" +msgstr "" + +#: src/gui/about.cpp:304 +msgid "LICENSE for more information." +msgstr "" + +#: src/gui/about.cpp:306 +msgid "help Furnace grow:" +msgstr "" + +#: src/gui/about.cpp:309 +msgid "contact tildearrow at:" +msgstr "" + +#: src/gui/about.cpp:312 +msgid "disclaimer:" +msgstr "" + +#: src/gui/about.cpp:313 +msgid "despite the fact this program works" +msgstr "" + +#: src/gui/about.cpp:314 +msgid "with the .dmf file format, it is NOT" +msgstr "" + +#: src/gui/about.cpp:315 +msgid "affiliated with Delek or DefleMask in" +msgstr "" + +#: src/gui/about.cpp:316 +msgid "any way, nor it is a replacement for" +msgstr "" + +#: src/gui/about.cpp:317 +msgid "the original program." +msgstr "" + +#: src/gui/about.cpp:319 +msgid "it also comes with ABSOLUTELY NO WARRANTY." +msgstr "" + +#: src/gui/about.cpp:321 +msgid "thanks to all contributors/bug reporters!" +msgstr "" + +#: src/gui/about.cpp:328 +msgid "About Furnace" +msgstr "" + +#: src/gui/about.cpp:418 +msgid "Unsaved changes! Save changes before playing?" +msgstr "" + +#: src/gui/compatFlags.cpp:31 src/gui/guiConst.cpp:598 +msgid "Compatibility Flags" +msgstr "" + +#: src/gui/compatFlags.cpp:32 +msgid "" +"these flags are designed to provide better DefleMask/older Furnace " +"compatibility.\n" +"it is recommended to disable most of these unless you rely on specific " +"quirks." +msgstr "" + +#: src/gui/compatFlags.cpp:34 src/gui/compatFlags.cpp:310 +msgid "DefleMask" +msgstr "" + +#: src/gui/compatFlags.cpp:35 +msgid "Limit slide range" +msgstr "" + +#: src/gui/compatFlags.cpp:37 +msgid "" +"when enabled, slides are limited to a compatible range.\n" +"may cause problems with slides in negative octaves." +msgstr "" + +#: src/gui/compatFlags.cpp:39 +msgid "Compatible noise layout on NES and PC Engine" +msgstr "" + +#: src/gui/compatFlags.cpp:41 +msgid "" +"use a rather unusual compatible noise frequency layout.\n" +"removes some noise frequencies on PC Engine." +msgstr "" + +#: src/gui/compatFlags.cpp:43 +msgid "Game Boy instrument duty is wave volume" +msgstr "" + +#: src/gui/compatFlags.cpp:45 +msgid "" +"if enabled, an instrument with duty macro in the wave channel will be mapped " +"to wavetable volume." +msgstr "" + +#: src/gui/compatFlags.cpp:48 +msgid "Restart macro on portamento" +msgstr "" + +#: src/gui/compatFlags.cpp:50 +msgid "" +"when enabled, a portamento effect will reset the channel's macro if used in " +"combination with a note." +msgstr "" + +#: src/gui/compatFlags.cpp:52 +msgid "Legacy volume slides" +msgstr "" + +#: src/gui/compatFlags.cpp:54 +msgid "" +"simulate glitchy volume slide behavior by silently overflowing the volume " +"when the slide goes below 0." +msgstr "" + +#: src/gui/compatFlags.cpp:56 +msgid "Compatible arpeggio" +msgstr "" + +#: src/gui/compatFlags.cpp:58 +msgid "delay arpeggio by one tick on every new note." +msgstr "" + +#: src/gui/compatFlags.cpp:60 +msgid "Disable DAC when sample ends" +msgstr "" + +#: src/gui/compatFlags.cpp:62 +msgid "" +"when enabled, the DAC in YM2612 will be disabled if there isn't any sample " +"playing." +msgstr "" + +#: src/gui/compatFlags.cpp:64 +msgid "Broken speed alternation" +msgstr "" + +#: src/gui/compatFlags.cpp:66 +msgid "" +"determines next speed based on whether the row is odd/even instead of " +"alternating between speeds." +msgstr "" + +#: src/gui/compatFlags.cpp:68 +msgid "Ignore duplicate slide effects" +msgstr "" + +#: src/gui/compatFlags.cpp:70 +msgid "" +"if this is on, only the first slide of a row in a channel will be considered." +msgstr "" + +#: src/gui/compatFlags.cpp:72 +msgid "Ignore 0Dxx on the last order" +msgstr "" + +#: src/gui/compatFlags.cpp:74 +msgid "" +"if this is on, a jump to next row effect will not take place when it is on " +"the last order of a song." +msgstr "" + +#: src/gui/compatFlags.cpp:76 +msgid "Buggy portamento after pitch slide" +msgstr "" + +#: src/gui/compatFlags.cpp:78 +msgid "simulates a bug in where portamento does not work after sliding." +msgstr "" + +#: src/gui/compatFlags.cpp:80 +msgid "FM pitch slide octave boundary odd behavior" +msgstr "" + +#: src/gui/compatFlags.cpp:82 +msgid "" +"if this is on, a pitch slide that crosses the octave boundary will stop for " +"one tick and then continue from the nearest octave boundary.\n" +"for .dmf compatibility." +msgstr "" + +#: src/gui/compatFlags.cpp:84 +msgid "Don't apply Game Boy envelope on note-less instrument change" +msgstr "" + +#: src/gui/compatFlags.cpp:86 +msgid "if this is on, an instrument change will not affect the envelope." +msgstr "" + +#: src/gui/compatFlags.cpp:88 +msgid "Ignore DAC mode change outside of intended channel in ExtCh mode" +msgstr "" + +#: src/gui/compatFlags.cpp:90 +msgid "if this is on, 17xx has no effect on the operator channels in YM2612." +msgstr "" + +#: src/gui/compatFlags.cpp:92 +msgid "E1xy/E2xy also take priority over slide stops" +msgstr "" + +#: src/gui/compatFlags.cpp:94 +msgid "does this make any sense by now?" +msgstr "" + +#: src/gui/compatFlags.cpp:96 +msgid "E1xy/E2xy stop when repeating the same note" +msgstr "" + +#: src/gui/compatFlags.cpp:98 +msgid "ugh, if only this wasn't a thing..." +msgstr "" + +#: src/gui/compatFlags.cpp:100 +msgid "SN76489 duty macro always resets phase" +msgstr "" + +#: src/gui/compatFlags.cpp:102 +msgid "" +"when enabled, duty macro will always reset phase, even if its value hasn't " +"changed." +msgstr "" + +#: src/gui/compatFlags.cpp:104 +msgid "Broken volume scaling strategy" +msgstr "" + +#: src/gui/compatFlags.cpp:106 +msgid "" +"when enabled:\n" +"- log scaling: multiply\n" +"- linear scaling: subtract\n" +"when disabled:\n" +"- log scaling: subtract\n" +"- linear scaling: multiply" +msgstr "" + +#: src/gui/compatFlags.cpp:108 +msgid "Don't persist volume macro after it finishes" +msgstr "" + +#: src/gui/compatFlags.cpp:110 +msgid "" +"when enabled, a value in the volume column that happens after the volume " +"macro is done will disregard the macro." +msgstr "" + +#: src/gui/compatFlags.cpp:112 +msgid "Broken output volume on instrument change" +msgstr "" + +#: src/gui/compatFlags.cpp:114 +msgid "" +"if enabled, no checks for the presence of a volume macro will be made.\n" +"this will cause the last macro value to linger unless a value in the volume " +"column is present." +msgstr "" + +#: src/gui/compatFlags.cpp:116 +msgid "Broken output volume - Episode 2 (PLEASE KEEP ME DISABLED)" +msgstr "" + +#: src/gui/compatFlags.cpp:118 +msgid "" +"these compatibility flags are getting SO damn ridiculous and out of " +"control.\n" +"as you may have guessed, this one exists due to yet ANOTHER DefleMask-" +"specific behavior.\n" +"please keep this off at all costs, because I will not support it when ROM " +"export comes.\n" +"oh, and don't start an argument out of it. Furnace isn't a DefleMask " +"replacement, and no,\n" +"I am not trying to make it look like one with all these flags.\n" +"\n" +"oh, and what about the other flags that don't have to do with DefleMask?\n" +"those are for .mod import, future FamiTracker import and personal taste!\n" +"\n" +"end of rant" +msgstr "" + +#: src/gui/compatFlags.cpp:120 +msgid "Treat SN76489 periods under 8 as 1" +msgstr "" + +#: src/gui/compatFlags.cpp:122 +msgid "" +"when enabled, any SN period under 8 will be written as 1 instead.\n" +"this replicates DefleMask behavior, but reduces available period range." +msgstr "" + +#: src/gui/compatFlags.cpp:126 src/gui/compatFlags.cpp:304 +msgid "Old Furnace" +msgstr "" + +#: src/gui/compatFlags.cpp:127 +msgid "Arpeggio inhibits non-porta slides" +msgstr "" + +#: src/gui/compatFlags.cpp:129 src/gui/compatFlags.cpp:133 +msgid "behavior changed in 0.5.5" +msgstr "" + +#: src/gui/compatFlags.cpp:131 +msgid "Wack FM algorithm macro" +msgstr "" + +#: src/gui/compatFlags.cpp:135 +msgid "Broken shortcut slides (E1xy/E2xy)" +msgstr "" + +#: src/gui/compatFlags.cpp:137 +msgid "behavior changed in 0.5.7" +msgstr "" + +#: src/gui/compatFlags.cpp:139 +msgid "Stop portamento on note off" +msgstr "" + +#: src/gui/compatFlags.cpp:141 src/gui/compatFlags.cpp:145 +#: src/gui/compatFlags.cpp:149 src/gui/compatFlags.cpp:153 +#: src/gui/compatFlags.cpp:157 src/gui/compatFlags.cpp:161 +#: src/gui/compatFlags.cpp:165 +msgid "behavior changed in 0.6pre1" +msgstr "" + +#: src/gui/compatFlags.cpp:143 +msgid "Don't allow instrument change during slides" +msgstr "" + +#: src/gui/compatFlags.cpp:147 +msgid "Don't reset note to base on arpeggio stop" +msgstr "" + +#: src/gui/compatFlags.cpp:151 +msgid "ExtCh channel status is not shared among operators" +msgstr "" + +#: src/gui/compatFlags.cpp:155 +msgid "Disable new SegaPCM features (macros and better panning)" +msgstr "" + +#: src/gui/compatFlags.cpp:159 +msgid "Old FM octave boundary behavior" +msgstr "" + +#: src/gui/compatFlags.cpp:163 +msgid "Disable OPN2 DAC volume control" +msgstr "" + +#: src/gui/compatFlags.cpp:167 +msgid "Broken initial position of portamento after arpeggio" +msgstr "" + +#: src/gui/compatFlags.cpp:169 +msgid "behavior changed in 0.6pre1.5" +msgstr "" + +#: src/gui/compatFlags.cpp:171 +msgid "Disable new sample features" +msgstr "" + +#: src/gui/compatFlags.cpp:173 src/gui/compatFlags.cpp:177 +msgid "behavior changed in 0.6pre2" +msgstr "" + +#: src/gui/compatFlags.cpp:175 +msgid "Old arpeggio macro + pitch slide strategy" +msgstr "" + +#: src/gui/compatFlags.cpp:179 +msgid "Broken portamento during legato" +msgstr "" + +#: src/gui/compatFlags.cpp:181 +msgid "behavior changed in 0.6pre4" +msgstr "" + +#: src/gui/compatFlags.cpp:183 +msgid "Broken macros in some FM chips after note off" +msgstr "" + +#: src/gui/compatFlags.cpp:185 +msgid "behavior changed in 0.6pre5" +msgstr "" + +#: src/gui/compatFlags.cpp:187 +msgid "Pre-note does not take effects into consideration" +msgstr "" + +#: src/gui/compatFlags.cpp:189 +msgid "behavior changed in 0.6pre9" +msgstr "" + +#: src/gui/compatFlags.cpp:191 +msgid "Disable new NES DPCM features" +msgstr "" + +#: src/gui/compatFlags.cpp:193 +msgid "behavior changed in 0.6.1" +msgstr "" + +#: src/gui/compatFlags.cpp:195 +msgid "Legacy technical ALWAYS_SET_VOLUME behavior" +msgstr "" + +#: src/gui/compatFlags.cpp:197 +msgid "" +"behavior changed in 0.6.1\n" +"this flag will be removed if I find out that none of the songs break after " +"disabling it." +msgstr "" + +#: src/gui/compatFlags.cpp:199 +msgid "Old sample offset effect" +msgstr "" + +#: src/gui/compatFlags.cpp:201 +msgid "behavior changed in 0.6.3" +msgstr "" + +#: src/gui/compatFlags.cpp:205 +msgid ".mod import" +msgstr "" + +#: src/gui/compatFlags.cpp:206 +msgid "Don't slide on the first tick of a row" +msgstr "" + +#: src/gui/compatFlags.cpp:208 +msgid "" +"simulates ProTracker's behavior of not applying volume/pitch slides on the " +"first tick of a row." +msgstr "" + +#: src/gui/compatFlags.cpp:210 +msgid "Reset arpeggio position on row change" +msgstr "" + +#: src/gui/compatFlags.cpp:212 +msgid "" +"simulates ProTracker's behavior of arpeggio being bound to the current tick " +"of a row." +msgstr "" + +#: src/gui/compatFlags.cpp:216 +msgid "Pitch/Playback" +msgstr "" + +#: src/gui/compatFlags.cpp:217 +msgid "Pitch linearity:" +msgstr "" + +#: src/gui/compatFlags.cpp:223 +msgid "like ProTracker/FamiTracker" +msgstr "" + +#: src/gui/compatFlags.cpp:227 +msgid "Partial (only 04xy/E5xx)" +msgstr "" + +#: src/gui/compatFlags.cpp:231 +msgid "" +"like DefleMask\n" +"\n" +"this pitch linearity mode is deprecated due to:\n" +"- excessive complexity\n" +"- lack of possible optimization\n" +"\n" +"it is recommended to change it now because I will remove this option in the " +"future!" +msgstr "" + +#: src/gui/compatFlags.cpp:235 +msgid "Full" +msgstr "" + +#: src/gui/compatFlags.cpp:239 +msgid "like Impulse Tracker" +msgstr "" + +#: src/gui/compatFlags.cpp:246 +msgid "Pitch slide speed multiplier" +msgstr "" + +#: src/gui/compatFlags.cpp:252 +msgid "Loop modality:" +msgstr "" + +#: src/gui/compatFlags.cpp:254 +msgid "Reset channels" +msgstr "" + +#: src/gui/compatFlags.cpp:258 +msgid "" +"select to reset channels on loop. may trigger a voltage click on every loop!" +msgstr "" + +#: src/gui/compatFlags.cpp:260 +msgid "Soft reset channels" +msgstr "" + +#: src/gui/compatFlags.cpp:264 +msgid "select to turn channels off on loop." +msgstr "" + +#: src/gui/compatFlags.cpp:266 +msgid "Do nothing" +msgstr "" + +#: src/gui/compatFlags.cpp:270 +msgid "select to not reset channels on loop." +msgstr "" + +#: src/gui/compatFlags.cpp:274 +msgid "Cut/delay effect policy:" +msgstr "" + +#: src/gui/compatFlags.cpp:280 +msgid "only when time is less than speed (like DefleMask/ProTracker)" +msgstr "" + +#: src/gui/compatFlags.cpp:282 +msgid "Strict (old)" +msgstr "" + +#: src/gui/compatFlags.cpp:286 +msgid "only when time is less than or equal to speed (original buggy behavior)" +msgstr "" + +#: src/gui/compatFlags.cpp:292 +msgid "no checks" +msgstr "" + +#: src/gui/compatFlags.cpp:296 +msgid "Simultaneous jump (0B+0D) treatment:" +msgstr "" + +#: src/gui/compatFlags.cpp:302 +msgid "accept 0B+0D to jump to a specific row of an order" +msgstr "" + +#: src/gui/compatFlags.cpp:308 +msgid "only accept the first jump effect" +msgstr "" + +#: src/gui/compatFlags.cpp:314 +msgid "only accept 0Dxx" +msgstr "" + +#: src/gui/compatFlags.cpp:320 +msgid "Auto-insert one tick gap between notes" +msgstr "" + +#: src/gui/compatFlags.cpp:322 +msgid "" +"when enabled, a one-tick note cut will be inserted between non-legato/non-" +"portamento notes.\n" +"this simulates the behavior of some Amiga/SNES music engines.\n" +"\n" +"ineffective on C64." +msgstr "" + +#: src/gui/compatFlags.cpp:327 +msgid "Don't reset slides after note off" +msgstr "" + +#: src/gui/compatFlags.cpp:329 +msgid "when enabled, note off will not reset the channel's slide effect." +msgstr "" + +#: src/gui/compatFlags.cpp:331 +msgid "Don't reset portamento after reaching target" +msgstr "" + +#: src/gui/compatFlags.cpp:333 +msgid "" +"when enabled, the slide effect will not be disabled after it reaches its " +"target." +msgstr "" + +#: src/gui/compatFlags.cpp:335 +msgid "Continuous vibrato" +msgstr "" + +#: src/gui/compatFlags.cpp:337 +msgid "when enabled, vibrato phase/position will not be reset on a new note." +msgstr "" + +#: src/gui/compatFlags.cpp:339 +msgid "Pitch macro is not linear" +msgstr "" + +#: src/gui/compatFlags.cpp:341 +msgid "" +"when enabled, the pitch macro of an instrument is in frequency/period space." +msgstr "" + +#: src/gui/compatFlags.cpp:343 +msgid "Reset arpeggio effect position on new note" +msgstr "" + +#: src/gui/compatFlags.cpp:345 +msgid "when enabled, arpeggio effect (00xy) position is reset on a new note." +msgstr "" + +#: src/gui/compatFlags.cpp:347 +msgid "Volume scaling rounds up" +msgstr "" + +#: src/gui/compatFlags.cpp:349 +msgid "" +"when enabled, volume macros round up when applied\n" +"this prevents volume scaling from causing vol=0, which is silent on some " +"chips\n" +"\n" +"ineffective on logarithmic channels" +msgstr "" + +#: src/gui/guiConst.cpp:127 +msgid "Generic Sample" +msgstr "" + +#: src/gui/guiConst.cpp:155 +msgid "OPL (drums)" +msgstr "" + +#: src/gui/guiConst.cpp:191 +msgid "Forward" +msgstr "" + +#: src/gui/guiConst.cpp:192 +msgid "Backward" +msgstr "" + +#: src/gui/guiConst.cpp:193 +msgid "Ping pong" +msgstr "" + +#: src/gui/guiConst.cpp:218 +msgid "linear" +msgstr "" + +#: src/gui/guiConst.cpp:219 +msgid "cubic spline" +msgstr "" + +#: src/gui/guiConst.cpp:220 +msgid "blep synthesis" +msgstr "" + +#: src/gui/guiConst.cpp:221 +msgid "sinc" +msgstr "" + +#: src/gui/guiConst.cpp:222 +msgid "best possible" +msgstr "" + +#: src/gui/guiConst.cpp:226 src/gui/sampleEdit.cpp:137 +#: src/gui/sampleEdit.cpp:143 +msgid "Invalid" +msgstr "" + +#: src/gui/guiConst.cpp:231 +msgid "Time" +msgstr "" + +#: src/gui/guiConst.cpp:233 +msgid "System (Primary)" +msgstr "" + +#: src/gui/guiConst.cpp:234 +msgid "System (Secondary)" +msgstr "" + +#: src/gui/guiConst.cpp:530 +msgid "---Global" +msgstr "" + +#: src/gui/guiConst.cpp:532 +msgid "Open file" +msgstr "" + +#: src/gui/guiConst.cpp:533 +msgid "Restore backup" +msgstr "" + +#: src/gui/guiConst.cpp:534 +msgid "Save file" +msgstr "" + +#: src/gui/guiConst.cpp:535 +msgid "Save as" +msgstr "" + +#: src/gui/guiConst.cpp:537 src/gui/sampleEdit.cpp:982 +msgid "Undo" +msgstr "" + +#: src/gui/guiConst.cpp:539 src/gui/guiConst.cpp:541 src/gui/sampleEdit.cpp:989 +msgid "Redo" +msgstr "" + +#: src/gui/guiConst.cpp:543 +msgid "Exit" +msgstr "" + +#: src/gui/guiConst.cpp:544 +msgid "Play/Stop (toggle)" +msgstr "" + +#: src/gui/guiConst.cpp:547 +msgid "Play (from beginning)" +msgstr "" + +#: src/gui/guiConst.cpp:548 +msgid "Play (repeat pattern)" +msgstr "" + +#: src/gui/guiConst.cpp:549 +msgid "Play from cursor" +msgstr "" + +#: src/gui/guiConst.cpp:550 +msgid "Step row" +msgstr "" + +#: src/gui/guiConst.cpp:551 +msgid "Octave up" +msgstr "" + +#: src/gui/guiConst.cpp:552 +msgid "Octave down" +msgstr "" + +#: src/gui/guiConst.cpp:553 +msgid "Previous instrument" +msgstr "" + +#: src/gui/guiConst.cpp:554 +msgid "Next instrument" +msgstr "" + +#: src/gui/guiConst.cpp:555 +msgid "Increase edit step" +msgstr "" + +#: src/gui/guiConst.cpp:556 +msgid "Decrease edit step" +msgstr "" + +#: src/gui/guiConst.cpp:557 +msgid "Toggle edit mode" +msgstr "" + +#: src/gui/guiConst.cpp:559 +msgid "Toggle repeat pattern" +msgstr "" + +#: src/gui/guiConst.cpp:562 +msgid "Toggle full-screen" +msgstr "" + +#: src/gui/guiConst.cpp:563 +msgid "Request voice from TX81Z" +msgstr "" + +#: src/gui/guiConst.cpp:565 +msgid "Clear song data" +msgstr "" + +#: src/gui/guiConst.cpp:567 src/gui/gui.cpp:5573 src/gui/gui.cpp:5625 +msgid "Command Palette" +msgstr "" + +#: src/gui/guiConst.cpp:569 +msgid "Recent files (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:570 +msgid "Instruments (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:571 +msgid "Samples (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:572 +msgid "Change instrument (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:573 +msgid "Add chip (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:578 +msgid "Instrument List" +msgstr "" + +#: src/gui/guiConst.cpp:579 src/gui/insEdit.cpp:5203 +msgid "Instrument Editor" +msgstr "" + +#: src/gui/guiConst.cpp:580 +msgid "Song Information" +msgstr "" + +#: src/gui/guiConst.cpp:583 +msgid "Wavetable List" +msgstr "" + +#: src/gui/guiConst.cpp:584 src/gui/waveEdit.cpp:409 +msgid "Wavetable Editor" +msgstr "" + +#: src/gui/guiConst.cpp:585 +msgid "Sample List" +msgstr "" + +#: src/gui/guiConst.cpp:594 +msgid "Debug Menu" +msgstr "" + +#: src/gui/guiConst.cpp:595 +msgid "Oscilloscope (master)" +msgstr "" + +#: src/gui/guiConst.cpp:603 src/gui/sysManager.cpp:41 +msgid "Chip Manager" +msgstr "" + +#: src/gui/guiConst.cpp:614 src/gui/csPlayer.cpp:112 +msgid "Command Stream Player" +msgstr "" + +#: src/gui/guiConst.cpp:615 +msgid "User Presets" +msgstr "" + +#: src/gui/guiConst.cpp:617 +msgid "Collapse/expand current window" +msgstr "" + +#: src/gui/guiConst.cpp:618 +msgid "Close current window" +msgstr "" + +#: src/gui/guiConst.cpp:621 +msgid "---Pattern" +msgstr "" + +#: src/gui/guiConst.cpp:622 +msgid "Transpose (+1)" +msgstr "" + +#: src/gui/guiConst.cpp:623 +msgid "Transpose (-1)" +msgstr "" + +#: src/gui/guiConst.cpp:624 +msgid "Transpose (+1 octave)" +msgstr "" + +#: src/gui/guiConst.cpp:625 +msgid "Transpose (-1 octave)" +msgstr "" + +#: src/gui/guiConst.cpp:626 +msgid "Increase values (+1)" +msgstr "" + +#: src/gui/guiConst.cpp:627 +msgid "Increase values (-1)" +msgstr "" + +#: src/gui/guiConst.cpp:628 +msgid "Increase values (+16)" +msgstr "" + +#: src/gui/guiConst.cpp:629 +msgid "Increase values (-16)" +msgstr "" + +#: src/gui/guiConst.cpp:630 +msgid "Select all" +msgstr "" + +#: src/gui/guiConst.cpp:631 +msgid "Cut" +msgstr "" + +#: src/gui/guiConst.cpp:632 +msgid "Copy" +msgstr "" + +#: src/gui/guiConst.cpp:633 +msgid "Paste" +msgstr "" + +#: src/gui/guiConst.cpp:634 +msgid "Paste Mix (foreground)" +msgstr "" + +#: src/gui/guiConst.cpp:635 +msgid "Paste Mix (background)" +msgstr "" + +#: src/gui/guiConst.cpp:636 +msgid "Paste Flood" +msgstr "" + +#: src/gui/guiConst.cpp:637 +msgid "Paste Overflow" +msgstr "" + +#: src/gui/guiConst.cpp:638 +msgid "Move cursor up" +msgstr "" + +#: src/gui/guiConst.cpp:639 +msgid "Move cursor down" +msgstr "" + +#: src/gui/guiConst.cpp:640 +msgid "Move cursor left" +msgstr "" + +#: src/gui/guiConst.cpp:641 +msgid "Move cursor right" +msgstr "" + +#: src/gui/guiConst.cpp:642 +msgid "Move cursor up by one (override Edit Step)" +msgstr "" + +#: src/gui/guiConst.cpp:643 +msgid "Move cursor down by one (override Edit Step)" +msgstr "" + +#: src/gui/guiConst.cpp:644 +msgid "Move cursor to previous channel" +msgstr "" + +#: src/gui/guiConst.cpp:645 +msgid "Move cursor to next channel" +msgstr "" + +#: src/gui/guiConst.cpp:646 +msgid "Move cursor to next channel (overflow)" +msgstr "" + +#: src/gui/guiConst.cpp:647 +msgid "Move cursor to previous channel (overflow)" +msgstr "" + +#: src/gui/guiConst.cpp:648 +msgid "Move cursor to beginning of pattern" +msgstr "" + +#: src/gui/guiConst.cpp:649 +msgid "Move cursor to end of pattern" +msgstr "" + +#: src/gui/guiConst.cpp:650 +msgid "Move cursor up (coarse)" +msgstr "" + +#: src/gui/guiConst.cpp:651 +msgid "Move cursor down (coarse)" +msgstr "" + +#: src/gui/guiConst.cpp:652 +msgid "Expand selection upwards" +msgstr "" + +#: src/gui/guiConst.cpp:653 +msgid "Expand selection downwards" +msgstr "" + +#: src/gui/guiConst.cpp:654 +msgid "Expand selection to the left" +msgstr "" + +#: src/gui/guiConst.cpp:655 +msgid "Expand selection to the right" +msgstr "" + +#: src/gui/guiConst.cpp:656 +msgid "Expand selection upwards by one (override Edit Step)" +msgstr "" + +#: src/gui/guiConst.cpp:657 +msgid "Expand selection downwards by one (override Edit Step)" +msgstr "" + +#: src/gui/guiConst.cpp:658 +msgid "Expand selection to beginning of pattern" +msgstr "" + +#: src/gui/guiConst.cpp:659 +msgid "Expand selection to end of pattern" +msgstr "" + +#: src/gui/guiConst.cpp:660 +msgid "Expand selection upwards (coarse)" +msgstr "" + +#: src/gui/guiConst.cpp:661 +msgid "Expand selection downwards (coarse)" +msgstr "" + +#: src/gui/guiConst.cpp:662 +msgid "Move selection up" +msgstr "" + +#: src/gui/guiConst.cpp:663 +msgid "Move selection down" +msgstr "" + +#: src/gui/guiConst.cpp:664 +msgid "Move selection to previous channel" +msgstr "" + +#: src/gui/guiConst.cpp:665 +msgid "Move selection to next channel" +msgstr "" + +#: src/gui/guiConst.cpp:667 +msgid "Pull delete" +msgstr "" + +#: src/gui/guiConst.cpp:668 +msgid "Insert" +msgstr "" + +#: src/gui/guiConst.cpp:669 +msgid "Mute channel at cursor" +msgstr "" + +#: src/gui/guiConst.cpp:670 +msgid "Solo channel at cursor" +msgstr "" + +#: src/gui/guiConst.cpp:671 +msgid "Unmute all channels" +msgstr "" + +#: src/gui/guiConst.cpp:672 +msgid "Go to next order" +msgstr "" + +#: src/gui/guiConst.cpp:673 +msgid "Go to previous order" +msgstr "" + +#: src/gui/guiConst.cpp:674 +msgid "Collapse channel at cursor" +msgstr "" + +#: src/gui/guiConst.cpp:675 +msgid "Increase effect columns" +msgstr "" + +#: src/gui/guiConst.cpp:676 +msgid "Decrease effect columns" +msgstr "" + +#: src/gui/guiConst.cpp:677 +msgid "Interpolate" +msgstr "" + +#: src/gui/guiConst.cpp:678 src/gui/insEdit.cpp:530 +msgid "Fade" +msgstr "" + +#: src/gui/guiConst.cpp:679 +msgid "Invert values" +msgstr "" + +#: src/gui/guiConst.cpp:680 +msgid "Flip selection" +msgstr "" + +#: src/gui/guiConst.cpp:681 +msgid "Collapse rows" +msgstr "" + +#: src/gui/guiConst.cpp:682 +msgid "Expand rows" +msgstr "" + +#: src/gui/guiConst.cpp:683 +msgid "Collapse pattern" +msgstr "" + +#: src/gui/guiConst.cpp:684 +msgid "Expand pattern" +msgstr "" + +#: src/gui/guiConst.cpp:685 +msgid "Collapse song" +msgstr "" + +#: src/gui/guiConst.cpp:686 +msgid "Expand song" +msgstr "" + +#: src/gui/guiConst.cpp:687 +msgid "Set note input latch" +msgstr "" + +#: src/gui/guiConst.cpp:688 +msgid "Change mobile scroll mode" +msgstr "" + +#: src/gui/guiConst.cpp:689 +msgid "Clear note input latch" +msgstr "" + +#: src/gui/guiConst.cpp:692 +msgid "---Instrument list" +msgstr "" + +#: src/gui/guiConst.cpp:693 +msgid "Add instrument" +msgstr "" + +#: src/gui/guiConst.cpp:694 +msgid "Duplicate instrument" +msgstr "" + +#: src/gui/guiConst.cpp:695 +msgid "Open instrument" +msgstr "" + +#: src/gui/guiConst.cpp:696 +msgid "Open instrument (replace current)" +msgstr "" + +#: src/gui/guiConst.cpp:697 +msgid "Save instrument" +msgstr "" + +#: src/gui/guiConst.cpp:698 +msgid "Save instrument (.dmp)" +msgstr "" + +#: src/gui/guiConst.cpp:699 +msgid "Move instrument up in list" +msgstr "" + +#: src/gui/guiConst.cpp:700 +msgid "Move instrument down in list" +msgstr "" + +#: src/gui/guiConst.cpp:701 +msgid "Delete instrument" +msgstr "" + +#: src/gui/guiConst.cpp:702 +msgid "Edit instrument" +msgstr "" + +#: src/gui/guiConst.cpp:703 +msgid "Instrument cursor up" +msgstr "" + +#: src/gui/guiConst.cpp:704 +msgid "Instrument cursor down" +msgstr "" + +#: src/gui/guiConst.cpp:705 +msgid "Instruments: toggle folders/standard view" +msgstr "" + +#: src/gui/guiConst.cpp:708 +msgid "---Wavetable list" +msgstr "" + +#: src/gui/guiConst.cpp:709 +msgid "Add wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:710 +msgid "Duplicate wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:711 +msgid "Open wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:712 +msgid "Open wavetable (replace current)" +msgstr "" + +#: src/gui/guiConst.cpp:713 +msgid "Save wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:714 +msgid "Save wavetable (.dmw)" +msgstr "" + +#: src/gui/guiConst.cpp:715 +msgid "Save wavetable (raw)" +msgstr "" + +#: src/gui/guiConst.cpp:716 +msgid "Move wavetable up in list" +msgstr "" + +#: src/gui/guiConst.cpp:717 +msgid "Move wavetable down in list" +msgstr "" + +#: src/gui/guiConst.cpp:718 +msgid "Delete wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:719 +msgid "Edit wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:720 +msgid "Wavetable cursor up" +msgstr "" + +#: src/gui/guiConst.cpp:721 +msgid "Wavetable cursor down" +msgstr "" + +#: src/gui/guiConst.cpp:722 +msgid "Wavetables: toggle folders/standard view" +msgstr "" + +#: src/gui/guiConst.cpp:725 +msgid "---Sample list" +msgstr "" + +#: src/gui/guiConst.cpp:726 +msgid "Add sample" +msgstr "" + +#: src/gui/guiConst.cpp:727 +msgid "Duplicate sample" +msgstr "" + +#: src/gui/guiConst.cpp:728 +msgid "Open sample" +msgstr "" + +#: src/gui/guiConst.cpp:729 +msgid "Open sample (replace current)" +msgstr "" + +#: src/gui/guiConst.cpp:730 +msgid "Import raw sample data" +msgstr "" + +#: src/gui/guiConst.cpp:731 +msgid "Import raw sample data (replace current)" +msgstr "" + +#: src/gui/guiConst.cpp:732 +msgid "Save sample" +msgstr "" + +#: src/gui/guiConst.cpp:733 +msgid "Save sample (raw)" +msgstr "" + +#: src/gui/guiConst.cpp:734 +msgid "Move sample up in list" +msgstr "" + +#: src/gui/guiConst.cpp:735 +msgid "Move sample down in list" +msgstr "" + +#: src/gui/guiConst.cpp:736 +msgid "Delete sample" +msgstr "" + +#: src/gui/guiConst.cpp:737 +msgid "Edit sample" +msgstr "" + +#: src/gui/guiConst.cpp:738 +msgid "Sample cursor up" +msgstr "" + +#: src/gui/guiConst.cpp:739 +msgid "Sample cursor down" +msgstr "" + +#: src/gui/guiConst.cpp:741 src/gui/sampleEdit.cpp:1339 +msgid "Stop sample preview" +msgstr "" + +#: src/gui/guiConst.cpp:742 +msgid "Samples: Toggle folders/standard view" +msgstr "" + +#: src/gui/guiConst.cpp:743 +msgid "Samples: Make me a drum kit" +msgstr "" + +#: src/gui/guiConst.cpp:746 +msgid "---Sample editor" +msgstr "" + +#: src/gui/guiConst.cpp:747 +msgid "Sample editor mode: Select" +msgstr "" + +#: src/gui/guiConst.cpp:748 +msgid "Sample editor mode: Draw" +msgstr "" + +#: src/gui/guiConst.cpp:749 +msgid "Sample editor: Cut" +msgstr "" + +#: src/gui/guiConst.cpp:750 +msgid "Sample editor: Copy" +msgstr "" + +#: src/gui/guiConst.cpp:751 +msgid "Sample editor: Paste" +msgstr "" + +#: src/gui/guiConst.cpp:752 +msgid "Sample editor: Paste replace" +msgstr "" + +#: src/gui/guiConst.cpp:753 +msgid "Sample editor: Paste mix" +msgstr "" + +#: src/gui/guiConst.cpp:754 +msgid "Sample editor: Select all" +msgstr "" + +#: src/gui/guiConst.cpp:755 +msgid "Sample editor: Resize" +msgstr "" + +#: src/gui/guiConst.cpp:756 +msgid "Sample editor: Resample" +msgstr "" + +#: src/gui/guiConst.cpp:757 +msgid "Sample editor: Amplify" +msgstr "" + +#: src/gui/guiConst.cpp:758 +msgid "Sample editor: Normalize" +msgstr "" + +#: src/gui/guiConst.cpp:759 +msgid "Sample editor: Fade in" +msgstr "" + +#: src/gui/guiConst.cpp:760 +msgid "Sample editor: Fade out" +msgstr "" + +#: src/gui/guiConst.cpp:761 +msgid "Sample editor: Apply silence" +msgstr "" + +#: src/gui/guiConst.cpp:762 +msgid "Sample editor: Insert silence" +msgstr "" + +#: src/gui/guiConst.cpp:763 +msgid "Sample editor: Delete" +msgstr "" + +#: src/gui/guiConst.cpp:764 +msgid "Sample editor: Trim" +msgstr "" + +#: src/gui/guiConst.cpp:765 +msgid "Sample editor: Reverse" +msgstr "" + +#: src/gui/guiConst.cpp:766 +msgid "Sample editor: Invert" +msgstr "" + +#: src/gui/guiConst.cpp:767 +msgid "Sample editor: Signed/unsigned exchange" +msgstr "" + +#: src/gui/guiConst.cpp:768 +msgid "Sample editor: Apply filter" +msgstr "" + +#: src/gui/guiConst.cpp:769 +msgid "Sample editor: Crossfade loop points" +msgstr "" + +#: src/gui/guiConst.cpp:770 +msgid "Sample editor: Preview sample" +msgstr "" + +#: src/gui/guiConst.cpp:771 +msgid "Sample editor: Stop sample preview" +msgstr "" + +#: src/gui/guiConst.cpp:772 +msgid "Sample editor: Zoom in" +msgstr "" + +#: src/gui/guiConst.cpp:773 +msgid "Sample editor: Zoom out" +msgstr "" + +#: src/gui/guiConst.cpp:774 +msgid "Sample editor: Toggle auto-zoom" +msgstr "" + +#: src/gui/guiConst.cpp:775 +msgid "Sample editor: Create instrument from sample" +msgstr "" + +#: src/gui/guiConst.cpp:776 +msgid "Sample editor: Set loop to selection" +msgstr "" + +#: src/gui/guiConst.cpp:777 +msgid "Sample editor: Create wavetable from selection" +msgstr "" + +#: src/gui/guiConst.cpp:780 +msgid "---Orders" +msgstr "" + +#: src/gui/guiConst.cpp:781 +msgid "Previous order" +msgstr "" + +#: src/gui/guiConst.cpp:782 +msgid "Next order" +msgstr "" + +#: src/gui/guiConst.cpp:783 +msgid "Order cursor left" +msgstr "" + +#: src/gui/guiConst.cpp:784 +msgid "Order cursor right" +msgstr "" + +#: src/gui/guiConst.cpp:785 +msgid "Increase order value" +msgstr "" + +#: src/gui/guiConst.cpp:786 +msgid "Decrease order value" +msgstr "" + +#: src/gui/guiConst.cpp:787 +msgid "Switch order edit mode" +msgstr "" + +#: src/gui/guiConst.cpp:788 +msgid "Order: toggle alter entire row" +msgstr "" + +#: src/gui/guiConst.cpp:789 +msgid "Add order" +msgstr "" + +#: src/gui/guiConst.cpp:790 +msgid "Duplicate order" +msgstr "" + +#: src/gui/guiConst.cpp:791 +msgid "Deep clone order" +msgstr "" + +#: src/gui/guiConst.cpp:792 +msgid "Copy current order to end of song" +msgstr "" + +#: src/gui/guiConst.cpp:793 +msgid "Deep clone current order to end of song" +msgstr "" + +#: src/gui/guiConst.cpp:797 +msgid "Replay order" +msgstr "" + +#: src/gui/guiConst.cpp:1392 +msgid "All chips" +msgstr "" + +#: src/gui/guiConst.cpp:1396 src/gui/insEdit.cpp:6954 src/gui/insEdit.cpp:7204 +#: src/gui/insEdit.cpp:7458 src/gui/insEdit.cpp:7480 +msgid "Special" +msgstr "" + +#: src/gui/piano.cpp:103 +msgid "Options" +msgstr "" + +#: src/gui/piano.cpp:106 +msgid "Key layout:" +msgstr "" + +#: src/gui/piano.cpp:111 +msgid "Standard" +msgstr "" + +#: src/gui/piano.cpp:114 +msgid "Continuous" +msgstr "" + +#: src/gui/piano.cpp:118 +msgid "Value input pad:" +msgstr "" + +#: src/gui/piano.cpp:120 +msgid "Disabled" +msgstr "" + +#: src/gui/piano.cpp:123 +msgid "Replace piano" +msgstr "" + +#: src/gui/piano.cpp:126 +msgid "Split (automatic)" +msgstr "" + +#: src/gui/piano.cpp:129 +msgid "Split (always visible)" +msgstr "" + +#: src/gui/piano.cpp:133 +msgid "Share play/edit offset/range" +msgstr "" + +#: src/gui/piano.cpp:134 +msgid "Read-only (can't input notes)" +msgstr "" + +#: src/gui/waveEdit.cpp:30 src/gui/waveEdit.cpp:192 src/gui/insEdit.cpp:177 +#: src/gui/insEdit.cpp:188 src/gui/insEdit.cpp:199 +msgid "Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:32 src/gui/waveEdit.cpp:202 src/gui/insEdit.cpp:325 +#: src/gui/insEdit.cpp:654 +msgid "Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:39 +msgid "Cosine" +msgstr "" + +#: src/gui/waveEdit.cpp:193 +msgid "Rect. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:194 +msgid "Abs. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:195 +msgid "Quart. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:196 +msgid "Squish. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:197 +msgid "Abs. Squish. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:200 +msgid "rectSquare" +msgstr "" + +#: src/gui/waveEdit.cpp:203 +msgid "Rect. Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:204 +msgid "Abs. Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:206 +msgid "Cubed Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:207 +msgid "Rect. Cubed Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:208 +msgid "Abs. Cubed Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:210 +msgid "Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:211 +msgid "Rect. Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:212 +msgid "Abs. Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:213 +msgid "Quart. Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:214 +msgid "Squish. Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:215 +msgid "Squish. Abs. Cub. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:218 +msgid "Rect. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:219 +msgid "Abs. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:220 +msgid "Quart. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:221 +msgid "Squish. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:222 +msgid "Abs. Squish. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:224 +msgid "Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:225 +msgid "Rect. Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:226 +msgid "Abs. Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:227 +msgid "Quart. Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:228 +msgid "Squish. Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:229 +msgid "Squish. Abs. Cub. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:412 src/gui/waveEdit.cpp:413 +msgid "no wavetable selected" +msgstr "" + +#: src/gui/waveEdit.cpp:424 src/gui/sampleEdit.cpp:111 src/gui/insEdit.cpp:5223 +msgid "select one..." +msgstr "" + +#: src/gui/waveEdit.cpp:432 src/gui/waveEdit.cpp:439 src/gui/sampleEdit.cpp:119 +#: src/gui/sampleEdit.cpp:126 src/gui/insEdit.cpp:5236 src/gui/insEdit.cpp:5243 +msgid "or" +msgstr "" + +#: src/gui/waveEdit.cpp:441 src/gui/sampleEdit.cpp:128 src/gui/insEdit.cpp:5245 +msgid "Create New" +msgstr "" + +#: src/gui/waveEdit.cpp:487 +msgid "Steps" +msgstr "" + +#: src/gui/waveEdit.cpp:491 +msgid "Lines" +msgstr "" + +#: src/gui/waveEdit.cpp:496 src/gui/insEdit.cpp:2687 +msgid "Width" +msgstr "" + +#: src/gui/waveEdit.cpp:498 +msgid "" +"use a width of:\n" +"- any on Amiga/N163\n" +"- 32 on Game Boy, PC Engine, SCC, Konami Bubble System, Namco WSG, Virtual " +"Boy and WonderSwan\n" +"- 64 on FDS\n" +"- 128 on X1-010\n" +"any other widths will be scaled during playback." +msgstr "" + +#: src/gui/waveEdit.cpp:510 +msgid "Height" +msgstr "" + +#: src/gui/waveEdit.cpp:512 +msgid "" +"use a height of:\n" +"- 16 for Game Boy, WonderSwan, Namco WSG, Konami Bubble System, X1-010 " +"Envelope shape and N163\n" +"- 32 for PC Engine\n" +"- 64 for FDS and Virtual Boy\n" +"- 256 for X1-010 and SCC\n" +"any other heights will be scaled during playback." +msgstr "" + +#: src/gui/waveEdit.cpp:578 +msgid "Shapes" +msgstr "" + +#: src/gui/waveEdit.cpp:597 src/gui/insEdit.cpp:5879 src/gui/insEdit.cpp:6922 +#: src/gui/insEdit.cpp:6948 src/gui/insEdit.cpp:7008 src/gui/insEdit.cpp:7048 +#: src/gui/insEdit.cpp:7150 src/gui/insEdit.cpp:7436 src/gui/insEdit.cpp:7472 +msgid "Duty" +msgstr "" + +#: src/gui/waveEdit.cpp:607 +msgid "Exponent" +msgstr "" + +#: src/gui/waveEdit.cpp:617 +msgid "XOR Point" +msgstr "" + +#: src/gui/waveEdit.cpp:627 +msgid "Amplitude/Phase" +msgstr "" + +#: src/gui/waveEdit.cpp:679 src/gui/waveEdit.cpp:723 src/gui/waveEdit.cpp:728 +msgid "Op" +msgstr "" + +#: src/gui/waveEdit.cpp:683 +msgid "Mult" +msgstr "" + +#: src/gui/waveEdit.cpp:685 +msgid "FB" +msgstr "" + +#: src/gui/waveEdit.cpp:749 src/gui/waveEdit.cpp:750 +msgid "Connection Diagram" +msgstr "" + +#: src/gui/waveEdit.cpp:765 +msgid "Out" +msgstr "" + +#: src/gui/waveEdit.cpp:872 +msgid "WaveTools" +msgstr "" + +#: src/gui/waveEdit.cpp:890 +msgid "Scale X" +msgstr "" + +#: src/gui/waveEdit.cpp:896 +msgid "wavetable longer than 256 samples!" +msgstr "" + +#: src/gui/waveEdit.cpp:960 +msgid "Scale Y" +msgstr "" + +#: src/gui/waveEdit.cpp:978 +msgid "Offset X" +msgstr "" + +#: src/gui/waveEdit.cpp:1000 +msgid "Offset Y" +msgstr "" + +#: src/gui/waveEdit.cpp:1017 +msgid "Smooth" +msgstr "" + +#: src/gui/waveEdit.cpp:1045 src/gui/sampleEdit.cpp:996 +msgid "Amplify" +msgstr "" + +#: src/gui/waveEdit.cpp:1063 src/gui/sampleEdit.cpp:1046 +msgid "Normalize" +msgstr "" + +#: src/gui/waveEdit.cpp:1105 src/gui/sampleEdit.cpp:1121 +msgid "Reverse" +msgstr "" + +#: src/gui/waveEdit.cpp:1117 +msgid "Half" +msgstr "" + +#: src/gui/waveEdit.cpp:1127 +msgid "Double" +msgstr "" + +#: src/gui/waveEdit.cpp:1137 +msgid "Convert Signed/Unsigned" +msgstr "" + +#: src/gui/waveEdit.cpp:1167 +msgid "Dec" +msgstr "" + +#: src/gui/waveEdit.cpp:1171 src/gui/csPlayer.cpp:247 +msgid "Hex" +msgstr "" + +#: src/gui/waveEdit.cpp:1179 +msgid "Signed/Unsigned" +msgstr "" + +#: src/gui/sampleEdit.cpp:65 +#, c-format +msgid "%s: maximum sample rate is %d" +msgstr "" + +#: src/gui/sampleEdit.cpp:72 +#, c-format +msgid "%s: minimum sample rate is %d" +msgstr "" + +#: src/gui/sampleEdit.cpp:79 +#, c-format +msgid "%s: sample rate must be %d" +msgstr "" + +#: src/gui/sampleEdit.cpp:99 src/gui/sampleEdit.cpp:100 +msgid "no sample selected" +msgstr "" + +#: src/gui/sampleEdit.cpp:229 +#, c-format +msgid "SNES: loop start must be a multiple of 16 (try with %d)" +msgstr "" + +#: src/gui/sampleEdit.cpp:235 +#, c-format +msgid "SNES: loop end must be a multiple of 16 (try with %d)" +msgstr "" + +#: src/gui/sampleEdit.cpp:240 +msgid "SNES: sample length will be padded to multiple of 16" +msgstr "" + +#: src/gui/sampleEdit.cpp:249 +msgid "QSound: loop cannot be longer than 32767 samples" +msgstr "" + +#: src/gui/sampleEdit.cpp:259 +msgid "NES: loop point ignored on DPCM (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:263 +msgid "NES: maximum DPCM sample length is 32648" +msgstr "" + +#: src/gui/sampleEdit.cpp:268 +msgid "X1-010: samples can't loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:271 +msgid "X1-010: maximum sample length is 131072" +msgstr "" + +#: src/gui/sampleEdit.cpp:276 +msgid "GA20: samples can't loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:287 +msgid "YM2608: loop point ignored on ADPCM (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:290 +msgid "YM2608: sample length will be padded to multiple of 512" +msgstr "" + +#: src/gui/sampleEdit.cpp:300 +msgid "YM2610: ADPCM-A samples can't loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:302 +msgid "YM2610: loop point ignored on ADPCM-B (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:305 +msgid "YM2610: sample length will be padded to multiple of 512" +msgstr "" + +#: src/gui/sampleEdit.cpp:309 +msgid "YM2610: maximum ADPCM-A sample length is 2097152" +msgstr "" + +#: src/gui/sampleEdit.cpp:318 +msgid "Y8950: loop point ignored on ADPCM (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:321 +msgid "Y8950: sample length will be padded to multiple of 512" +msgstr "" + +#: src/gui/sampleEdit.cpp:328 +msgid "Amiga: loop start must be a multiple of 2" +msgstr "" + +#: src/gui/sampleEdit.cpp:331 +msgid "Amiga: loop end must be a multiple of 2" +msgstr "" + +#: src/gui/sampleEdit.cpp:335 +msgid "Amiga: maximum sample length is 131070" +msgstr "" + +#: src/gui/sampleEdit.cpp:344 +msgid "SegaPCM: maximum sample length is 65280" +msgstr "" + +#: src/gui/sampleEdit.cpp:353 +msgid "K053260: loop point ignored (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:357 +msgid "K053260: maximum sample length is 65535" +msgstr "" + +#: src/gui/sampleEdit.cpp:362 +msgid "C140: maximum sample length is 65535" +msgstr "" + +#: src/gui/sampleEdit.cpp:371 +msgid "C219: loop start must be a multiple of 2" +msgstr "" + +#: src/gui/sampleEdit.cpp:374 +msgid "C219: loop end must be a multiple of 2" +msgstr "" + +#: src/gui/sampleEdit.cpp:378 +msgid "C219: maximum sample length is 131072" +msgstr "" + +#: src/gui/sampleEdit.cpp:386 +msgid "MSM6295: samples can't loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:389 +msgid "MSM6295: maximum bankswitched sample length is 129024" +msgstr "" + +#: src/gui/sampleEdit.cpp:395 +msgid "GBA DMA: loop start must be a multiple of 4" +msgstr "" + +#: src/gui/sampleEdit.cpp:398 +msgid "GBA DMA: loop length must be a multiple of 16" +msgstr "" + +#: src/gui/sampleEdit.cpp:402 +msgid "GBA DMA: sample length will be padded to multiple of 16" +msgstr "" + +#: src/gui/sampleEdit.cpp:411 +msgid "ES5506: backward loop mode isn't supported" +msgstr "" + +#: src/gui/sampleEdit.cpp:414 +msgid "" +"backward/ping-pong only supported in Generic PCM DAC\n" +"ping-pong also on ES5506" +msgstr "" + +#: src/gui/sampleEdit.cpp:444 +msgid "Info" +msgstr "" + +#: src/gui/sampleEdit.cpp:447 src/gui/sampleEdit.cpp:933 +msgid "Rate" +msgstr "" + +#: src/gui/sampleEdit.cpp:453 +msgid "Compat Rate" +msgstr "" + +#: src/gui/sampleEdit.cpp:457 +msgid "" +"used in DefleMask-compatible sample mode (17xx), in where samples are mapped " +"to an octave." +msgstr "" + +#: src/gui/sampleEdit.cpp:463 +#, c-format +msgid "Loop (length: %d)##Loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:463 src/gui/insEdit.cpp:544 src/gui/insEdit.cpp:554 +#: src/gui/insEdit.cpp:605 src/gui/insEdit.cpp:6017 +msgid "Loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:487 src/gui/sampleEdit.cpp:716 +#: src/gui/sampleEdit.cpp:752 +msgid "changing the loop in a BRR sample may result in glitches!" +msgstr "" + +#: src/gui/sampleEdit.cpp:529 +msgid "BRR emphasis" +msgstr "" + +#: src/gui/sampleEdit.cpp:538 +msgid "" +"this is a BRR sample.\n" +"enabling this option will muffle it (only affects non-SNES chips)." +msgstr "" + +#: src/gui/sampleEdit.cpp:540 +msgid "" +"enable this option to slightly boost high frequencies\n" +"to compensate for the SNES' Gaussian filter's muffle." +msgstr "" + +#: src/gui/sampleEdit.cpp:546 +msgid "8-bit dither" +msgstr "" + +#: src/gui/sampleEdit.cpp:554 +msgid "dither the sample when used on a chip that only supports 8-bit samples." +msgstr "" + +#: src/gui/sampleEdit.cpp:695 src/gui/gui.cpp:2975 +msgid "Start" +msgstr "" + +#: src/gui/sampleEdit.cpp:731 src/gui/gui.cpp:2983 +msgid "End" +msgstr "" + +#: src/gui/sampleEdit.cpp:841 +#, c-format +msgid "" +"%s\n" +"%d bytes free" +msgstr "" + +#: src/gui/sampleEdit.cpp:843 +#, c-format +msgid "" +"%s (%s)\n" +"%d bytes free" +msgstr "" + +#: src/gui/sampleEdit.cpp:847 +msgid "" +"\n" +"\n" +"not enough memory for this sample!" +msgstr "" + +#: src/gui/sampleEdit.cpp:871 +msgid "Edit mode: Select" +msgstr "" + +#: src/gui/sampleEdit.cpp:880 +msgid "Edit mode: Draw" +msgstr "" + +#: src/gui/sampleEdit.cpp:891 src/gui/sampleEdit.cpp:902 +msgid "Resize" +msgstr "" + +#: src/gui/sampleEdit.cpp:906 +msgid "couldn't resize! make sure your sample is 8 or 16-bit." +msgstr "" + +#: src/gui/sampleEdit.cpp:926 src/gui/sampleEdit.cpp:957 +msgid "Resample" +msgstr "" + +#: src/gui/sampleEdit.cpp:951 +msgid "Factor" +msgstr "" + +#: src/gui/sampleEdit.cpp:956 +msgid "Filter" +msgstr "" + +#: src/gui/sampleEdit.cpp:961 +msgid "couldn't resample! make sure your sample is 8 or 16-bit." +msgstr "" + +#: src/gui/sampleEdit.cpp:1010 src/gui/sampleEdit.cpp:1197 +#: src/gui/sampleEdit.cpp:1281 +msgid "Apply" +msgstr "" + +#: src/gui/sampleEdit.cpp:1053 +msgid "Fade in" +msgstr "" + +#: src/gui/sampleEdit.cpp:1060 +msgid "Fade out" +msgstr "" + +#: src/gui/sampleEdit.cpp:1065 +msgid "Insert silence" +msgstr "" + +#: src/gui/sampleEdit.cpp:1076 +msgid "Go" +msgstr "" + +#: src/gui/sampleEdit.cpp:1081 +msgid "couldn't insert! make sure your sample is 8 or 16-bit." +msgstr "" + +#: src/gui/sampleEdit.cpp:1098 +msgid "Apply silence" +msgstr "" + +#: src/gui/sampleEdit.cpp:1112 +msgid "Trim" +msgstr "" + +#: src/gui/sampleEdit.cpp:1135 +msgid "Signed/unsigned exchange" +msgstr "" + +#: src/gui/sampleEdit.cpp:1140 +msgid "Apply filter" +msgstr "" + +#: src/gui/sampleEdit.cpp:1151 +msgid "Cutoff:" +msgstr "" + +#: src/gui/sampleEdit.cpp:1161 src/gui/insEdit.cpp:5895 +#: src/gui/insEdit.cpp:5898 src/gui/insEdit.cpp:6953 src/gui/insEdit.cpp:7216 +#: src/gui/insEdit.cpp:7478 +msgid "Resonance" +msgstr "" + +#: src/gui/sampleEdit.cpp:1167 src/gui/insEdit.cpp:6897 +msgid "Power" +msgstr "" + +#: src/gui/sampleEdit.cpp:1181 +msgid "Low-pass" +msgstr "" + +#: src/gui/sampleEdit.cpp:1186 +msgid "Band-pass" +msgstr "" + +#: src/gui/sampleEdit.cpp:1191 +msgid "High-pass" +msgstr "" + +#: src/gui/sampleEdit.cpp:1262 +msgid "Crossfade loop points" +msgstr "" + +#: src/gui/sampleEdit.cpp:1271 +msgid "Number of samples" +msgstr "" + +#: src/gui/sampleEdit.cpp:1277 +msgid "Linear <-> Equal power" +msgstr "" + +#: src/gui/sampleEdit.cpp:1283 +msgid "Crossfade: length would go out of bounds. Aborted..." +msgstr "" + +#: src/gui/sampleEdit.cpp:1286 +msgid "Crossfade: length would overflow loopStart. Try a smaller random value." +msgstr "" + +#: src/gui/sampleEdit.cpp:1332 +msgid "Preview sample" +msgstr "" + +#: src/gui/sampleEdit.cpp:1346 +msgid "Create instrument from sample" +msgstr "" + +#: src/gui/sampleEdit.cpp:1747 +msgid "paste (replace)" +msgstr "" + +#: src/gui/sampleEdit.cpp:1750 +msgid "paste (mix)" +msgstr "" + +#: src/gui/sampleEdit.cpp:1754 src/gui/gui.cpp:2769 +msgid "select all" +msgstr "" + +#: src/gui/sampleEdit.cpp:1758 +msgid "set loop to selection" +msgstr "" + +#: src/gui/sampleEdit.cpp:1761 +msgid "create wavetable from selection" +msgstr "" + +#: src/gui/sampleEdit.cpp:1767 +msgid "Draw" +msgstr "" + +#: src/gui/sampleEdit.cpp:1767 +msgid "Select" +msgstr "" + +#: src/gui/sampleEdit.cpp:1769 +#, c-format +msgid "%d samples, %d bytes" +msgstr "" + +#: src/gui/sampleEdit.cpp:1784 +#, c-format +msgid " (%d-%d: %d samples)" +msgstr "" + +#: src/gui/sampleEdit.cpp:1976 +msgid "Non-8/16-bit samples cannot be edited without prior conversion." +msgstr "" + +#: src/gui/newSong.cpp:122 src/gui/newSong.cpp:123 +msgid "Choose a System!" +msgstr "" + +#: src/gui/newSong.cpp:179 +msgid "Categories" +msgstr "" + +#: src/gui/newSong.cpp:210 +msgid "no systems here yet!" +msgstr "" + +#: src/gui/newSong.cpp:212 +msgid "no results" +msgstr "" + +#: src/gui/newSong.cpp:228 +msgid "I'm feeling lucky" +msgstr "" + +#: src/gui/newSong.cpp:230 +msgid "no categories available! what in the world." +msgstr "" + +#: src/gui/newSong.cpp:265 +msgid "it appears you're extremely lucky today!" +msgstr "" + +#: src/gui/cursor.cpp:205 +#, c-format +msgid "finish selection: %d.%d,%d - %d.%d,%d" +msgstr "" + +#: src/gui/tutorial.cpp:487 +msgid "" +"Play demo songs?\n" +"- Down: Play current song\n" +"- Up: Play demo songs" +msgstr "" + +#: src/gui/tutorial.cpp:491 +msgid "" +"Welcome to Combat Vehicle!\n" +"\n" +"Controls:\n" +"X - Shoot Arrow Key - Move\n" +"Z - Special Esc - Quit" +msgstr "" + +#: src/gui/tutorial.cpp:496 +msgid "GAME OVER" +msgstr "" + +#: src/gui/tutorial.cpp:498 +msgid "High Score!" +msgstr "" + +#: src/gui/tutorial.cpp:658 +msgid "Welcome!" +msgstr "" + +#: src/gui/tutorial.cpp:661 +msgid "welcome to Furnace, the biggest open-source chiptune tracker!" +msgstr "" + +#: src/gui/tutorial.cpp:665 +msgid "here are some tips to get you started:" +msgstr "" + +#: src/gui/tutorial.cpp:668 +msgid "" +"- add an instrument by clicking on + in Instruments\n" +"- click on the pattern view to focus it\n" +"- channel columns have the following, in this order: note, instrument, " +"volume and effects\n" +"- hit space bar while on the pattern to toggle Edit Mode\n" +"- click on the pattern or use arrow keys to move the cursor\n" +"- values (instrument, volume, effects and effect values) are in hexadecimal\n" +"- hit enter to play/stop the song\n" +"- extend the song by adding more orders in the Orders window\n" +"- click on the Orders matrix to change the patterns of a channel (left click " +"increases; right click decreases)" +msgstr "" + +#: src/gui/tutorial.cpp:680 +msgid "" +"if you need help, you may:\n" +"- read the manual (a file called manual.pdf)\n" +"- ask for help in Discussions (https://github.com/tildearrow/furnace/" +"discussions), the Furnace Discord (https://discord.gg/EfrwT2wq7z) or Furnace " +"in Revolt (official: https://rvlt.gg/GRPS6tmc)" +msgstr "" + +#: src/gui/tutorial.cpp:687 +msgid "" +"if you find any issues, be sure to report them! the issue tracker is here: " +"https://github.com/tildearrow/furnace/issues" +msgstr "" + +#: src/gui/tutorial.cpp:1428 +#, c-format +msgid "STAGE %d" +msgstr "" + +#: src/gui/songInfo.cpp:32 +msgid "Song Info##Song Information" +msgstr "" + +#: src/gui/songInfo.cpp:50 +msgid "Author" +msgstr "" + +#: src/gui/songInfo.cpp:60 +msgid "Album" +msgstr "" + +#: src/gui/songInfo.cpp:79 +msgid "Auto" +msgstr "" + +#: src/gui/songInfo.cpp:100 +msgid "Tuning (A-4)" +msgstr "" + +#: src/gui/grooves.cpp:38 +msgid "use effect 09xx to select a groove pattern." +msgstr "" + +#: src/gui/grooves.cpp:48 src/gui/gui.cpp:4480 +msgid "pattern" +msgstr "" + +#: src/gui/grooves.cpp:132 +msgid "remove" +msgstr "" + +#: src/gui/doAction.cpp:45 src/gui/gui.cpp:4201 +msgid "Unsaved changes! Save changes before opening another file?" +msgstr "" + +#: src/gui/doAction.cpp:52 +msgid "Unsaved changes! Save changes before opening backup?" +msgstr "" + +#: src/gui/doAction.cpp:62 src/gui/gui.cpp:4237 src/gui/gui.cpp:5025 +#: src/gui/gui.cpp:5063 src/gui/gui.cpp:5069 src/gui/gui.cpp:5657 +#: src/gui/gui.cpp:5681 src/gui/gui.cpp:5705 src/gui/gui.cpp:5729 +#: src/gui/gui.cpp:5753 src/gui/gui.cpp:5777 +#, c-format +msgid "Error while saving file! (%s)" +msgstr "" + +#: src/gui/doAction.cpp:189 +msgid "Error while sending request (MIDI output not configured?)" +msgstr "" + +#: src/gui/doAction.cpp:197 +msgid "Select an option: (cannot be undone!)" +msgstr "" + +#: src/gui/doAction.cpp:691 src/gui/doAction.cpp:720 src/gui/doAction.cpp:1593 +#: src/gui/gui.cpp:6091 +msgid "too many instruments!" +msgstr "" + +#: src/gui/doAction.cpp:1124 +msgid "couldn't paste! make sure your sample is 8 or 16-bit." +msgstr "" + +#: src/gui/doAction.cpp:1628 +msgid "select at least one sample!" +msgstr "" + +#: src/gui/doAction.cpp:1630 +msgid "maximum size is 256 samples!" +msgstr "" + +#: src/gui/csPlayer.cpp:113 +msgid "Load" +msgstr "" + +#: src/gui/csPlayer.cpp:117 +msgid "Kill" +msgstr "" + +#: src/gui/csPlayer.cpp:119 +msgid "Kikai wa mou shindeiru!" +msgstr "" + +#: src/gui/csPlayer.cpp:123 +msgid "Burn Current Song" +msgstr "" + +#: src/gui/csPlayer.cpp:141 +msgid "Status" +msgstr "" + +#: src/gui/csPlayer.cpp:148 +msgid "start" +msgstr "" + +#: src/gui/csPlayer.cpp:150 +msgid "PC" +msgstr "" + +#: src/gui/csPlayer.cpp:152 +msgid "wait" +msgstr "" + +#: src/gui/csPlayer.cpp:154 +msgid "SP" +msgstr "" + +#: src/gui/csPlayer.cpp:156 src/gui/insEdit.cpp:2733 +msgid "note" +msgstr "" + +#: src/gui/csPlayer.cpp:158 src/gui/insEdit.cpp:2728 +msgid "pitch" +msgstr "" + +#: src/gui/csPlayer.cpp:160 +msgid "vol" +msgstr "" + +#: src/gui/csPlayer.cpp:162 +msgid "vols" +msgstr "" + +#: src/gui/csPlayer.cpp:164 +msgid "vib" +msgstr "" + +#: src/gui/csPlayer.cpp:166 +msgid "porta" +msgstr "" + +#: src/gui/csPlayer.cpp:168 +msgid "arp" +msgstr "" + +#: src/gui/csPlayer.cpp:203 +msgid "Trace" +msgstr "" + +#: src/gui/csPlayer.cpp:244 +msgid "Disassemble" +msgstr "" + +#: src/gui/gui.cpp:1136 src/gui/gui.cpp:1140 +msgid "the song is over!" +msgstr "" + +#: src/gui/gui.cpp:1667 +msgid "Open File" +msgstr "" + +#: src/gui/gui.cpp:1668 src/gui/gui.cpp:1798 src/gui/gui.cpp:1838 +#: src/gui/gui.cpp:1953 src/gui/gui.cpp:1962 src/gui/gui.cpp:1971 +#: src/gui/gui.cpp:2073 src/gui/gui.cpp:2093 src/gui/gui.cpp:2111 +msgid "compatible files" +msgstr "" + +#: src/gui/gui.cpp:1669 src/gui/gui.cpp:1743 src/gui/gui.cpp:1799 +#: src/gui/gui.cpp:1839 src/gui/gui.cpp:1851 src/gui/gui.cpp:1870 +#: src/gui/gui.cpp:2074 src/gui/gui.cpp:2084 src/gui/gui.cpp:2095 +#: src/gui/gui.cpp:2113 +msgid "all files" +msgstr "" + +#: src/gui/gui.cpp:1676 +msgid "no backups made yet!" +msgstr "" + +#: src/gui/gui.cpp:1681 src/gui/gui.cpp:1690 src/gui/gui.cpp:2130 +msgid "Furnace song" +msgstr "" + +#: src/gui/gui.cpp:1689 +msgid "Save File" +msgstr "" + +#: src/gui/gui.cpp:1698 src/gui/gui.cpp:1708 +msgid "Export DMF" +msgstr "" + +#: src/gui/gui.cpp:1699 +msgid "DefleMask 1.1.3 module" +msgstr "" + +#: src/gui/gui.cpp:1709 +msgid "DefleMask 1.0/legacy module" +msgstr "" + +#: src/gui/gui.cpp:1726 +msgid "Load Instrument" +msgstr "" + +#: src/gui/gui.cpp:1727 +msgid "all compatible files" +msgstr "" + +#: src/gui/gui.cpp:1728 src/gui/gui.cpp:1777 +msgid "Furnace instrument" +msgstr "" + +#: src/gui/gui.cpp:1729 src/gui/gui.cpp:1787 +msgid "DefleMask preset" +msgstr "" + +#: src/gui/gui.cpp:1730 +msgid "TFM Music Maker instrument" +msgstr "" + +#: src/gui/gui.cpp:1731 +msgid "VGM Music Maker instrument" +msgstr "" + +#: src/gui/gui.cpp:1732 +msgid "Scream Tracker 3 instrument" +msgstr "" + +#: src/gui/gui.cpp:1733 +msgid "SoundBlaster instrument" +msgstr "" + +#: src/gui/gui.cpp:1734 +msgid "Wohlstand OPL instrument" +msgstr "" + +#: src/gui/gui.cpp:1735 +msgid "Wohlstand OPN instrument" +msgstr "" + +#: src/gui/gui.cpp:1736 +msgid "Gens KMod patch dump" +msgstr "" + +#: src/gui/gui.cpp:1737 +msgid "BNK file (AdLib)" +msgstr "" + +#: src/gui/gui.cpp:1738 +msgid "FF preset bank" +msgstr "" + +#: src/gui/gui.cpp:1739 +msgid "2612edit GYB preset bank" +msgstr "" + +#: src/gui/gui.cpp:1740 +msgid "VOPM preset bank" +msgstr "" + +#: src/gui/gui.cpp:1741 +msgid "Wohlstand WOPL bank" +msgstr "" + +#: src/gui/gui.cpp:1742 +msgid "Wohlstand WOPN bank" +msgstr "" + +#: src/gui/gui.cpp:1776 src/gui/gui.cpp:1786 +msgid "Save Instrument" +msgstr "" + +#: src/gui/gui.cpp:1797 +msgid "Load Wavetable" +msgstr "" + +#: src/gui/gui.cpp:1809 src/gui/gui.cpp:1818 src/gui/gui.cpp:1827 +msgid "Save Wavetable" +msgstr "" + +#: src/gui/gui.cpp:1810 +msgid "Furnace wavetable" +msgstr "" + +#: src/gui/gui.cpp:1819 +msgid "DefleMask wavetable" +msgstr "" + +#: src/gui/gui.cpp:1828 +msgid "raw data" +msgstr "" + +#: src/gui/gui.cpp:1837 +msgid "Load Sample" +msgstr "" + +#: src/gui/gui.cpp:1850 +msgid "Load Raw Sample" +msgstr "" + +#: src/gui/gui.cpp:1859 +msgid "Save Sample" +msgstr "" + +#: src/gui/gui.cpp:1860 src/gui/gui.cpp:1880 src/gui/gui.cpp:1890 +#: src/gui/gui.cpp:1900 +msgid "Wave file" +msgstr "" + +#: src/gui/gui.cpp:1869 +msgid "Save Raw Sample" +msgstr "" + +#: src/gui/gui.cpp:1879 src/gui/gui.cpp:1889 src/gui/gui.cpp:1899 +msgid "Export Audio" +msgstr "" + +#: src/gui/gui.cpp:1909 +msgid "Export VGM" +msgstr "" + +#: src/gui/gui.cpp:1910 +msgid "VGM file" +msgstr "" + +#: src/gui/gui.cpp:1919 +msgid "Export ZSM" +msgstr "" + +#: src/gui/gui.cpp:1920 +msgid "ZSM file" +msgstr "" + +#: src/gui/gui.cpp:1929 src/gui/gui.cpp:1939 +msgid "Export Command Stream" +msgstr "" + +#: src/gui/gui.cpp:1930 +msgid "text file" +msgstr "" + +#: src/gui/gui.cpp:1940 +msgid "binary file" +msgstr "" + +#: src/gui/gui.cpp:1947 src/gui/gui.cpp:5376 +msgid "Coming soon!" +msgstr "" + +#: src/gui/gui.cpp:1952 src/gui/gui.cpp:1961 src/gui/gui.cpp:1970 +msgid "Select Font" +msgstr "" + +#: src/gui/gui.cpp:1979 +msgid "Select Color File" +msgstr "" + +#: src/gui/gui.cpp:1980 src/gui/gui.cpp:1989 src/gui/gui.cpp:2008 +#: src/gui/gui.cpp:2017 src/gui/gui.cpp:2026 src/gui/gui.cpp:2035 +#: src/gui/gui.cpp:2053 src/gui/gui.cpp:2062 +msgid "configuration files" +msgstr "" + +#: src/gui/gui.cpp:1988 +msgid "Select Keybind File" +msgstr "" + +#: src/gui/gui.cpp:1997 +msgid "Select Layout File" +msgstr "" + +#: src/gui/gui.cpp:1998 src/gui/gui.cpp:2044 +msgid ".ini files" +msgstr "" + +#: src/gui/gui.cpp:2007 +msgid "Select User Presets File" +msgstr "" + +#: src/gui/gui.cpp:2016 +msgid "Select Settings File" +msgstr "" + +#: src/gui/gui.cpp:2025 +msgid "Export Colors" +msgstr "" + +#: src/gui/gui.cpp:2034 +msgid "Export Keybinds" +msgstr "" + +#: src/gui/gui.cpp:2043 +msgid "Export Layout" +msgstr "" + +#: src/gui/gui.cpp:2052 +msgid "Export User Presets" +msgstr "" + +#: src/gui/gui.cpp:2061 +msgid "Export Settings" +msgstr "" + +#: src/gui/gui.cpp:2072 +msgid "Load ROM" +msgstr "" + +#: src/gui/gui.cpp:2082 +msgid "Play Command Stream" +msgstr "" + +#: src/gui/gui.cpp:2083 +msgid "command stream" +msgstr "" + +#: src/gui/gui.cpp:2092 +msgid "Open Test" +msgstr "" + +#: src/gui/gui.cpp:2094 src/gui/gui.cpp:2112 +msgid "another option" +msgstr "" + +#: src/gui/gui.cpp:2110 +msgid "Open Test (Multi)" +msgstr "" + +#: src/gui/gui.cpp:2129 +msgid "Save Test" +msgstr "" + +#: src/gui/gui.cpp:2131 +msgid "DefleMask module" +msgstr "" + +#: src/gui/gui.cpp:2171 +msgid "compression error" +msgstr "" + +#: src/gui/gui.cpp:2183 +msgid "zlib stream error" +msgstr "" + +#: src/gui/gui.cpp:2205 +msgid "zlib finish stream error" +msgstr "" + +#: src/gui/gui.cpp:2316 +msgid "everything OK" +msgstr "" + +#: src/gui/gui.cpp:2334 +msgid "" +"you have loaded a backup!\n" +"if you need to, please save it somewhere.\n" +"\n" +"DO NOT RELY ON THE BACKUP SYSTEM FOR AUTO-SAVE!\n" +"Furnace will not save backups of backups." +msgstr "" + +#: src/gui/gui.cpp:2342 src/gui/gui.cpp:3743 src/gui/gui.cpp:4213 +msgid "Unsaved changes! Save changes before opening file?" +msgstr "" + +#: src/gui/gui.cpp:2736 +msgid "paste special..." +msgstr "" + +#: src/gui/gui.cpp:2737 +msgid "paste mix" +msgstr "" + +#: src/gui/gui.cpp:2738 +msgid "paste mix (background)" +msgstr "" + +#: src/gui/gui.cpp:2739 +msgid "paste with ins (foreground)" +msgstr "" + +#: src/gui/gui.cpp:2741 src/gui/gui.cpp:2753 src/gui/gui.cpp:2963 +msgid "no instruments available" +msgstr "" + +#: src/gui/gui.cpp:2751 +msgid "paste with ins (background)" +msgstr "" + +#: src/gui/gui.cpp:2763 +msgid "paste flood" +msgstr "" + +#: src/gui/gui.cpp:2764 +msgid "paste overflow" +msgstr "" + +#: src/gui/gui.cpp:2773 +msgid "operation mask..." +msgstr "" + +#: src/gui/gui.cpp:2780 +msgid "pull delete" +msgstr "" + +#: src/gui/gui.cpp:2784 +msgid "insert" +msgstr "" + +#: src/gui/gui.cpp:2792 +msgid "transpose (note)" +msgstr "" + +#: src/gui/gui.cpp:2796 +msgid "transpose (value)" +msgstr "" + +#: src/gui/gui.cpp:2808 src/gui/gui.cpp:3052 +msgid "invert values" +msgstr "" + +#: src/gui/gui.cpp:2824 +msgid "collapse/expand" +msgstr "" + +#: src/gui/gui.cpp:2829 +msgid "input latch" +msgstr "" + +#: src/gui/gui.cpp:2856 +msgid "" +"&&: selected instrument\n" +"..: no instrument" +msgstr "" + +#: src/gui/gui.cpp:2910 +msgid "Set" +msgstr "" + +#: src/gui/gui.cpp:2930 +msgid "note up" +msgstr "" + +#: src/gui/gui.cpp:2931 +msgid "note down" +msgstr "" + +#: src/gui/gui.cpp:2932 +msgid "octave up" +msgstr "" + +#: src/gui/gui.cpp:2933 +msgid "octave down" +msgstr "" + +#: src/gui/gui.cpp:2935 +msgid "values up" +msgstr "" + +#: src/gui/gui.cpp:2936 +msgid "values down" +msgstr "" + +#: src/gui/gui.cpp:2937 +msgid "values up (+16)" +msgstr "" + +#: src/gui/gui.cpp:2938 +msgid "values down (-16)" +msgstr "" + +#: src/gui/gui.cpp:2941 +msgid "transpose" +msgstr "" + +#: src/gui/gui.cpp:2949 +msgid "Notes" +msgstr "" + +#: src/gui/gui.cpp:2954 +msgid "Values" +msgstr "" + +#: src/gui/gui.cpp:2961 +msgid "change instrument..." +msgstr "" + +#: src/gui/gui.cpp:2974 +msgid "gradient/fade..." +msgstr "" + +#: src/gui/gui.cpp:2991 src/gui/gui.cpp:3036 +msgid "Nibble mode" +msgstr "" + +#: src/gui/gui.cpp:3000 +msgid "Go ahead" +msgstr "" + +#: src/gui/gui.cpp:3006 src/gui/insEdit.cpp:7604 +msgid "scale..." +msgstr "" + +#: src/gui/gui.cpp:3011 +msgid "Scale" +msgstr "" + +#: src/gui/gui.cpp:3017 src/gui/insEdit.cpp:7632 +msgid "randomize..." +msgstr "" + +#: src/gui/gui.cpp:3018 +msgid "Minimum" +msgstr "" + +#: src/gui/gui.cpp:3027 +msgid "Maximum" +msgstr "" + +#: src/gui/gui.cpp:3056 +msgid "flip selection" +msgstr "" + +#: src/gui/gui.cpp:3059 +msgid "collapse/expand amount##CollapseAmount" +msgstr "" + +#: src/gui/gui.cpp:3068 +msgid "collapse pattern" +msgstr "" + +#: src/gui/gui.cpp:3069 +msgid "expand pattern" +msgstr "" + +#: src/gui/gui.cpp:3074 +msgid "collapse song" +msgstr "" + +#: src/gui/gui.cpp:3075 +msgid "expand song" +msgstr "" + +#: src/gui/gui.cpp:3080 +msgid "find/replace" +msgstr "" + +#: src/gui/gui.cpp:3094 src/gui/gui.cpp:5807 src/gui/gui.cpp:7362 +#, c-format +msgid "could NOT save layout! %s" +msgstr "" + +#: src/gui/gui.cpp:3106 +#, c-format +msgid "could NOT load layout! %s" +msgstr "" + +#: src/gui/gui.cpp:3568 +msgid "" +"Furnace has been started in Safe Mode.\n" +"this means that:\n" +"\n" +"- software rendering is being used\n" +"- audio output may not work\n" +"- font loading is disabled\n" +"\n" +"check any settings which may have made Furnace start up in this mode.\n" +"font loading is one of these." +msgstr "" + +#: src/gui/gui.cpp:4053 +msgid "can't keep going without graphics! Furnace will quit now." +msgstr "" + +#: src/gui/gui.cpp:4191 +msgid "file" +msgstr "" + +#: src/gui/gui.cpp:4192 +msgid "new..." +msgstr "" + +#: src/gui/gui.cpp:4199 +msgid "open..." +msgstr "" + +#: src/gui/gui.cpp:4206 +msgid "open recent" +msgstr "" + +#: src/gui/gui.cpp:4222 +msgid "nothing here yet" +msgstr "" + +#: src/gui/gui.cpp:4225 +msgid "clear history" +msgstr "" + +#: src/gui/gui.cpp:4226 +msgid "Are you sure you want to clear the recent file list?" +msgstr "" + +#: src/gui/gui.cpp:4241 +msgid "save as..." +msgstr "" + +#: src/gui/gui.cpp:4246 src/gui/gui.cpp:4287 +msgid "export audio..." +msgstr "" + +#: src/gui/gui.cpp:4250 src/gui/gui.cpp:4291 +msgid "export VGM..." +msgstr "" + +#: src/gui/gui.cpp:4259 src/gui/gui.cpp:4300 +msgid "export ZSM..." +msgstr "" + +#: src/gui/gui.cpp:4269 src/gui/gui.cpp:4310 +msgid "export Amiga validation data..." +msgstr "" + +#: src/gui/gui.cpp:4274 src/gui/gui.cpp:4315 +msgid "export text..." +msgstr "" + +#: src/gui/gui.cpp:4278 src/gui/gui.cpp:4319 +msgid "export command stream..." +msgstr "" + +#: src/gui/gui.cpp:4282 src/gui/gui.cpp:4323 +msgid "export .dmf..." +msgstr "" + +#: src/gui/gui.cpp:4328 +msgid "export..." +msgstr "" + +#: src/gui/gui.cpp:4334 +msgid "manage chips" +msgstr "" + +#: src/gui/gui.cpp:4338 +msgid "add chip..." +msgstr "" + +#: src/gui/gui.cpp:4343 src/gui/sysManager.cpp:138 +#, c-format +msgid "cannot add chip! (%s)" +msgstr "" + +#: src/gui/gui.cpp:4355 +msgid "configure chip..." +msgstr "" + +#: src/gui/gui.cpp:4365 +msgid "change chip..." +msgstr "" + +#: src/gui/gui.cpp:4367 src/gui/gui.cpp:4390 +msgid "Preserve channel positions" +msgstr "" + +#: src/gui/gui.cpp:4379 src/gui/sysManager.cpp:109 +#, c-format +msgid "cannot change chip! (%s)" +msgstr "" + +#: src/gui/gui.cpp:4388 +msgid "remove chip..." +msgstr "" + +#: src/gui/gui.cpp:4394 +#, c-format +msgid "cannot remove chip! (%s)" +msgstr "" + +#: src/gui/gui.cpp:4408 +msgid "open built-in assets directory" +msgstr "" + +#: src/gui/gui.cpp:4414 +msgid "restore backup" +msgstr "" + +#: src/gui/gui.cpp:4418 +msgid "exit..." +msgstr "" + +#: src/gui/gui.cpp:4426 +msgid "edit" +msgstr "" + +#: src/gui/gui.cpp:4434 +msgid "clear..." +msgstr "" + +#: src/gui/gui.cpp:4439 +msgid "settings" +msgstr "" + +#: src/gui/gui.cpp:4441 +msgid "full screen" +msgstr "" + +#: src/gui/gui.cpp:4445 +msgid "lock layout" +msgstr "" + +#: src/gui/gui.cpp:4448 +msgid "pattern visualizer" +msgstr "" + +#: src/gui/gui.cpp:4454 +msgid "reset layout" +msgstr "" + +#: src/gui/gui.cpp:4458 +msgid "switch to mobile view" +msgstr "" + +#: src/gui/gui.cpp:4462 +msgid "user systems..." +msgstr "" + +#: src/gui/gui.cpp:4465 +msgid "settings..." +msgstr "" + +#: src/gui/gui.cpp:4471 +msgid "Window" +msgstr "" + +#: src/gui/gui.cpp:4471 +msgid "window" +msgstr "" + +#: src/gui/gui.cpp:4472 +msgid "song" +msgstr "" + +#: src/gui/gui.cpp:4473 +msgid "song comments" +msgstr "" + +#: src/gui/gui.cpp:4474 +msgid "song information" +msgstr "" + +#: src/gui/gui.cpp:4475 +msgid "subsongs" +msgstr "" + +#: src/gui/gui.cpp:4477 +msgid "channels" +msgstr "" + +#: src/gui/gui.cpp:4478 +msgid "chip manager" +msgstr "" + +#: src/gui/gui.cpp:4479 +msgid "orders" +msgstr "" + +#: src/gui/gui.cpp:4481 +msgid "pattern manager" +msgstr "" + +#: src/gui/gui.cpp:4482 +msgid "mixer" +msgstr "" + +#: src/gui/gui.cpp:4483 +msgid "compatibility flags" +msgstr "" + +#: src/gui/gui.cpp:4486 src/gui/gui.cpp:4488 +msgid "assets" +msgstr "" + +#: src/gui/gui.cpp:4490 +msgid "instruments" +msgstr "" + +#: src/gui/gui.cpp:4491 +msgid "samples" +msgstr "" + +#: src/gui/gui.cpp:4492 +msgid "wavetables" +msgstr "" + +#: src/gui/gui.cpp:4495 +msgid "instrument editor" +msgstr "" + +#: src/gui/gui.cpp:4496 +msgid "sample editor" +msgstr "" + +#: src/gui/gui.cpp:4497 +msgid "wavetable editor" +msgstr "" + +#: src/gui/gui.cpp:4500 +msgid "visualizers" +msgstr "" + +#: src/gui/gui.cpp:4501 +msgid "oscilloscope (master)" +msgstr "" + +#: src/gui/gui.cpp:4502 +msgid "oscilloscope (per-channel)" +msgstr "" + +#: src/gui/gui.cpp:4503 +msgid "oscilloscope (X-Y)" +msgstr "" + +#: src/gui/gui.cpp:4504 +msgid "volume meter" +msgstr "" + +#: src/gui/gui.cpp:4507 +msgid "tempo" +msgstr "" + +#: src/gui/gui.cpp:4508 +msgid "clock" +msgstr "" + +#: src/gui/gui.cpp:4509 +msgid "grooves" +msgstr "" + +#: src/gui/gui.cpp:4510 +msgid "speed" +msgstr "" + +#: src/gui/gui.cpp:4514 +msgid "log viewer" +msgstr "" + +#: src/gui/gui.cpp:4515 +msgid "register view" +msgstr "" + +#: src/gui/gui.cpp:4516 +msgid "statistics" +msgstr "" + +#: src/gui/gui.cpp:4517 +msgid "memory composition" +msgstr "" + +#: src/gui/gui.cpp:4521 src/gui/gui.cpp:4529 +msgid "effect list" +msgstr "" + +#: src/gui/gui.cpp:4522 +msgid "play/edit controls" +msgstr "" + +#: src/gui/gui.cpp:4523 +msgid "piano/input pad" +msgstr "" + +#: src/gui/gui.cpp:4524 +msgid "spoiler" +msgstr "" + +#: src/gui/gui.cpp:4528 +msgid "Help" +msgstr "" + +#: src/gui/gui.cpp:4528 +msgid "help" +msgstr "" + +#: src/gui/gui.cpp:4530 +msgid "debug menu" +msgstr "" + +#: src/gui/gui.cpp:4531 +msgid "inspector" +msgstr "" + +#: src/gui/gui.cpp:4532 +msgid "panic" +msgstr "" + +#: src/gui/gui.cpp:4533 +msgid "about..." +msgstr "" + +#: src/gui/gui.cpp:4548 +#, c-format +msgid "| Speed %d:%d" +msgstr "" + +#: src/gui/gui.cpp:4550 +#, c-format +msgid "| Speed %d" +msgstr "" + +#: src/gui/gui.cpp:4552 +msgid "| Groove" +msgstr "" + +#: src/gui/gui.cpp:4555 +#, c-format +msgid " @ %gHz (%g BPM) " +msgstr "" + +#: src/gui/gui.cpp:4558 +#, c-format +msgid "| Order %.2X/%.2X " +msgstr "" + +#: src/gui/gui.cpp:4560 +#, c-format +msgid "| Order %d/%d " +msgstr "" + +#: src/gui/gui.cpp:4564 +#, c-format +msgid "| Row %.2X/%.2X " +msgstr "" + +#: src/gui/gui.cpp:4566 +#, c-format +msgid "| Row %d/%d " +msgstr "" + +#: src/gui/gui.cpp:4569 +msgid "| " +msgstr "" + +#: src/gui/gui.cpp:4572 +msgid "Don't you have anything better to do?" +msgstr "" + +#: src/gui/gui.cpp:4582 +#, c-format +msgid "%d year " +msgid_plural "%d years " +msgstr[0] "" + +#: src/gui/gui.cpp:4583 +#, c-format +msgid "%d month " +msgid_plural "%d months " +msgstr[0] "" + +#: src/gui/gui.cpp:4584 +#, c-format +msgid "%d day " +msgid_plural "%d days " +msgstr[0] "" + +#: src/gui/gui.cpp:4609 +msgid "Note off (cut)" +msgstr "" + +#: src/gui/gui.cpp:4611 +msgid "Note off (release)" +msgstr "" + +#: src/gui/gui.cpp:4613 +msgid "Macro release only" +msgstr "" + +#: src/gui/gui.cpp:4615 +#, c-format +msgid "Note on: %s" +msgstr "" + +#: src/gui/gui.cpp:4623 +#, c-format +msgid "Ins %d: " +msgstr "" + +#: src/gui/gui.cpp:4626 +#, c-format +msgid "Ins %d: %s" +msgstr "" + +#: src/gui/gui.cpp:4635 +#, c-format +msgid "Set volume: %d (%.2X, INVALID!)" +msgstr "" + +#: src/gui/gui.cpp:4638 +#, c-format +msgid "Set volume: %d (%.2X, %d%%)" +msgstr "" + +#: src/gui/gui.cpp:4660 +msgid "| modified" +msgstr "" + +#: src/gui/gui.cpp:4825 src/gui/gui.cpp:4828 +msgid "System File Dialog Pending" +msgstr "" + +#: src/gui/gui.cpp:4941 +msgid "" +"there was an error in the file dialog! you may want to report this issue " +"to:\n" +"https://github.com/tildearrow/furnace/issues\n" +"check the Log Viewer (window > log viewer) for more information.\n" +"\n" +"for now please disable the system file picker in Settings > General." +msgstr "" + +#: src/gui/gui.cpp:4944 +msgid "can't do anything without Storage permissions!" +msgstr "" + +#: src/gui/gui.cpp:4946 +msgid "" +"Zenity/KDialog not available!\n" +"please install one of these, or disable the system file picker in Settings > " +"General." +msgstr "" + +#: src/gui/gui.cpp:5082 +msgid "" +"error while saving instrument! only the following instrument types are " +"supported:\n" +"- FM (OPN)\n" +"- SN76489/Sega PSG\n" +"- Game Boy\n" +"- PC Engine\n" +"- NES\n" +"- C64\n" +"- FM (OPLL)\n" +"- FDS" +msgstr "" + +#: src/gui/gui.cpp:5110 +msgid "there were some errors while loading samples:\n" +msgstr "" + +#: src/gui/gui.cpp:5155 src/gui/gui.cpp:6339 +msgid "...but you haven't selected a sample!" +msgstr "" + +#: src/gui/gui.cpp:5170 src/gui/gui.cpp:5179 +msgid "could not save sample! open Log Viewer for more information." +msgstr "" + +#: src/gui/gui.cpp:5198 +msgid "there were some warnings/errors while loading instruments:\n" +msgstr "" + +#: src/gui/gui.cpp:5204 +#, c-format +msgid "> %s: cannot load instrument! (%s)\n" +msgstr "" + +#: src/gui/gui.cpp:5222 src/gui/gui.cpp:5276 +#, c-format +msgid "cannot load instrument! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5228 +msgid "" +"congratulations! you managed to load nothing.\n" +"you are entitled to a bug report." +msgstr "" + +#: src/gui/gui.cpp:5269 src/gui/gui.cpp:6243 +msgid "...but you haven't selected an instrument!" +msgstr "" + +#: src/gui/gui.cpp:5281 +msgid "there were some errors while loading wavetables:\n" +msgstr "" + +#: src/gui/gui.cpp:5290 src/gui/gui.cpp:5300 src/gui/gui.cpp:5319 +#, c-format +msgid "cannot load wavetable! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5327 +msgid "...but you haven't selected a wavetable!" +msgstr "" + +#: src/gui/gui.cpp:5342 src/gui/gui.cpp:5363 src/gui/gui.cpp:5387 +#: src/gui/gui.cpp:5408 +msgid "could not open file!" +msgstr "" + +#: src/gui/gui.cpp:5350 +#, c-format +msgid "could not write VGM! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5371 +#, c-format +msgid "Could not write ZSM! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5395 +#, c-format +msgid "could not write text! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5416 +#, c-format +msgid "could not write command stream! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5440 +msgid "could not import user presets!" +msgstr "" + +#: src/gui/gui.cpp:5445 src/gui/gui.cpp:5462 +#, c-format +msgid "could not import user presets! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5483 +#, c-format +msgid "You opened: %s" +msgstr "" + +#: src/gui/gui.cpp:5486 +msgid "You opened:" +msgstr "" + +#: src/gui/gui.cpp:5494 +#, c-format +msgid "You saved: %s" +msgstr "" + +#: src/gui/gui.cpp:5515 src/gui/gui.cpp:5636 src/gui/gui.cpp:5637 +#: src/gui/insEdit.cpp:7520 +msgid "Error" +msgstr "" + +#: src/gui/gui.cpp:5520 src/gui/gui.cpp:6177 src/gui/gui.cpp:6178 +msgid "Select Instrument" +msgstr "" + +#: src/gui/gui.cpp:5525 src/gui/gui.cpp:6256 src/gui/gui.cpp:6257 +msgid "Import Raw Sample" +msgstr "" + +#: src/gui/gui.cpp:5540 src/gui/gui.cpp:5593 src/gui/gui.cpp:5594 +msgid "Rendering..." +msgstr "" + +#: src/gui/gui.cpp:5595 +msgid "Please wait..." +msgstr "" + +#: src/gui/gui.cpp:5596 +msgid "Abort" +msgstr "" + +#: src/gui/gui.cpp:5638 +#, c-format +msgid "%s" +msgstr "" + +#: src/gui/gui.cpp:5868 +msgid "Erasing" +msgstr "" + +#: src/gui/gui.cpp:5871 +msgid "All subsongs" +msgstr "" + +#: src/gui/gui.cpp:5878 +msgid "Current subsong" +msgstr "" + +#: src/gui/gui.cpp:5945 +msgid "Optimization" +msgstr "" + +#: src/gui/gui.cpp:5948 src/gui/patManager.cpp:36 +msgid "De-duplicate patterns" +msgstr "" + +#: src/gui/gui.cpp:5957 +msgid "Remove unused instruments" +msgstr "" + +#: src/gui/gui.cpp:5970 +msgid "Remove unused samples" +msgstr "" + +#: src/gui/gui.cpp:5987 +msgid "Never mind! Cancel" +msgstr "" + +#: src/gui/gui.cpp:6066 +msgid "Drum kit mode:" +msgstr "" + +#: src/gui/gui.cpp:6070 +msgid "12 samples per octave" +msgstr "" + +#: src/gui/gui.cpp:6075 +msgid "Starting octave" +msgstr "" + +#: src/gui/gui.cpp:6095 +msgid "Drum Kit" +msgstr "" + +#: src/gui/gui.cpp:6181 +msgid "this is an instrument bank! select which one to use:" +msgstr "" + +#: src/gui/gui.cpp:6184 +msgid "this is an instrument bank! select which ones to load:" +msgstr "" + +#: src/gui/gui.cpp:6258 +msgid "Data type:" +msgstr "" + +#: src/gui/gui.cpp:6285 +msgid "(will be mixed down to mono)" +msgstr "" + +#: src/gui/gui.cpp:6286 +msgid "Unsigned" +msgstr "" + +#: src/gui/gui.cpp:6290 +msgid "Big endian" +msgstr "" + +#: src/gui/gui.cpp:6298 +msgid "Swap nibbles" +msgstr "" + +#: src/gui/gui.cpp:6302 +msgid "Swap words" +msgstr "" + +#: src/gui/gui.cpp:6306 +msgid "Encoding:" +msgstr "" + +#: src/gui/gui.cpp:6319 +msgid "Reverse bit order" +msgstr "" + +#: src/gui/gui.cpp:6361 +msgid "Error! No string provided!" +msgstr "" + +#: src/gui/gui.cpp:6683 +msgid "it appears I couldn't load these fonts. any setting you can check?" +msgstr "" + +#: src/gui/gui.cpp:6863 src/gui/gui.cpp:6971 +msgid "" +"could not init renderer!\n" +"falling back to software renderer. please restart Furnace." +msgstr "" + +#: src/gui/gui.cpp:6865 src/gui/gui.cpp:6973 +#, c-format +msgid "" +"could not init renderer! %s\n" +"falling back to software renderer. please restart Furnace." +msgstr "" + +#: src/gui/gui.cpp:6870 src/gui/gui.cpp:6978 +msgid "could not init renderer!" +msgstr "" + +#: src/gui/gui.cpp:6881 +#, c-format +msgid "could not open window! %s" +msgstr "" + +#: src/gui/gui.cpp:6886 +msgid "" +"\n" +"falling back to software renderer. please restart Furnace." +msgstr "" + +#: src/gui/gui.cpp:7034 +msgid "Size column to fit###SizeOne" +msgstr "" + +#: src/gui/gui.cpp:7036 +msgid "Size all columns to fit###SizeAll" +msgstr "" + +#: src/gui/gui.cpp:7038 +msgid "Size all columns to default###SizeAll" +msgstr "" + +#: src/gui/gui.cpp:7040 +msgid "Reset order###ResetOrder" +msgstr "" + +#: src/gui/gui.cpp:7042 +msgid "(Main menu bar)" +msgstr "" + +#: src/gui/gui.cpp:7044 +msgid "(Popup)" +msgstr "" + +#: src/gui/gui.cpp:7046 +msgid "(Untitled)" +msgstr "" + +#: src/gui/gui.cpp:7048 +msgid "Hide tab bar###HideTabBar" +msgstr "" + +#: src/gui/gui.cpp:7052 +msgid "LocaleSettings: ccjk" +msgstr "" + +#: src/gui/gui.cpp:7564 +msgid "Unsaved changes! Save changes before quitting?" +msgstr "" + +#: src/gui/sysManager.cpp:42 +msgid "Preserve channel order" +msgstr "" + +#: src/gui/sysManager.cpp:44 +msgid "Clone channel data" +msgstr "" + +#: src/gui/sysManager.cpp:46 +msgid "Clone at end" +msgstr "" + +#: src/gui/sysManager.cpp:56 +msgid "Actions" +msgstr "" + +#: src/gui/sysManager.cpp:69 +msgid "(drag to swap chips)" +msgstr "" + +#: src/gui/sysManager.cpp:90 +msgid "Clone##SysDup" +msgstr "" + +#: src/gui/sysManager.cpp:92 +#, c-format +msgid "cannot clone chip! (%s)" +msgstr "" + +#: src/gui/sysManager.cpp:98 +msgid "Change##SysChange" +msgstr "" + +#: src/gui/sysManager.cpp:120 +msgid "Are you sure you want to remove this chip?" +msgstr "" + +#: src/gui/patManager.cpp:43 +msgid "Re-arrange patterns" +msgstr "" + +#: src/gui/patManager.cpp:50 +msgid "Sort orders" +msgstr "" + +#: src/gui/patManager.cpp:57 +msgid "Make patterns unique" +msgstr "" + +#: src/gui/patManager.cpp:103 +#, c-format +msgid "" +"Pattern %.2X\n" +"- not allocated" +msgstr "" + +#: src/gui/patManager.cpp:105 +#, c-format +msgid "" +"Pattern %.2X\n" +"- use count: %d (%.0f%%)\n" +"\n" +"right-click to erase" +msgstr "" + +#: src/gui/insEdit.cpp:39 +msgid "Down Down Down" +msgstr "" + +#: src/gui/insEdit.cpp:40 +msgid "Down." +msgstr "" + +#: src/gui/insEdit.cpp:41 +msgid "Down Up Down Up" +msgstr "" + +#: src/gui/insEdit.cpp:42 +msgid "Down UP" +msgstr "" + +#: src/gui/insEdit.cpp:43 +msgid "Up Up Up" +msgstr "" + +#: src/gui/insEdit.cpp:44 +msgid "Up." +msgstr "" + +#: src/gui/insEdit.cpp:45 +msgid "Up Down Up Down" +msgstr "" + +#: src/gui/insEdit.cpp:46 +msgid "Up DOWN" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Algorithm" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Feedback" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "LFO > Freq" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "LFO > Amp" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Decay 2" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "EnvScale" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Multiplier" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Detune 2" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "AM" +msgstr "" + +#: src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:5438 src/gui/insEdit.cpp:6516 +msgid "AM Depth" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Vibrato Depth" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Sustained" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Level Scaling" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Vibrato" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Scale Rate" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "OP2 Half Sine" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "OP1 Half Sine" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "EnvShift" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Reverb" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Fine" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "LFO2 > Freq" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "LFO2 > Amp" +msgstr "" + +#: src/gui/insEdit.cpp:56 src/gui/insEdit.cpp:68 src/gui/insEdit.cpp:7391 +msgid "OP4 Noise Mode" +msgstr "" + +#: src/gui/insEdit.cpp:57 +msgid "Envelope Delay" +msgstr "" + +#: src/gui/insEdit.cpp:58 src/gui/insEdit.cpp:70 +msgid "Output Level" +msgstr "" + +#: src/gui/insEdit.cpp:59 +msgid "Modulation Input Level" +msgstr "" + +#: src/gui/insEdit.cpp:60 +msgid "Left Output" +msgstr "" + +#: src/gui/insEdit.cpp:61 +msgid "Right Output" +msgstr "" + +#: src/gui/insEdit.cpp:62 +msgid "Coarse Tune (semitones)" +msgstr "" + +#: src/gui/insEdit.cpp:64 +msgid "Fixed Frequency Mode" +msgstr "" + +#: src/gui/insEdit.cpp:69 +msgid "Env. Delay" +msgstr "" + +#: src/gui/insEdit.cpp:71 +msgid "ModInput" +msgstr "" + +#: src/gui/insEdit.cpp:72 +msgid "Left" +msgstr "" + +#: src/gui/insEdit.cpp:73 +msgid "Right" +msgstr "" + +#: src/gui/insEdit.cpp:74 +msgid "Tune" +msgstr "" + +#: src/gui/insEdit.cpp:76 src/gui/insEdit.cpp:610 src/gui/insEdit.cpp:3792 +#: src/gui/insEdit.cpp:4554 src/gui/insEdit.cpp:4848 +msgid "Fixed" +msgstr "" + +#: src/gui/insEdit.cpp:98 src/gui/insEdit.cpp:117 src/gui/insEdit.cpp:136 +#: src/gui/insEdit.cpp:156 +msgid "User" +msgstr "" + +#: src/gui/insEdit.cpp:99 +msgid "1. Violin" +msgstr "" + +#: src/gui/insEdit.cpp:100 src/gui/insEdit.cpp:138 src/gui/insEdit.cpp:158 +msgid "2. Guitar" +msgstr "" + +#: src/gui/insEdit.cpp:101 src/gui/insEdit.cpp:159 +msgid "3. Piano" +msgstr "" + +#: src/gui/insEdit.cpp:102 src/gui/insEdit.cpp:160 +msgid "4. Flute" +msgstr "" + +#: src/gui/insEdit.cpp:103 src/gui/insEdit.cpp:122 src/gui/insEdit.cpp:161 +msgid "5. Clarinet" +msgstr "" + +#: src/gui/insEdit.cpp:104 +msgid "6. Oboe" +msgstr "" + +#: src/gui/insEdit.cpp:105 src/gui/insEdit.cpp:124 src/gui/insEdit.cpp:143 +#: src/gui/insEdit.cpp:163 +msgid "7. Trumpet" +msgstr "" + +#: src/gui/insEdit.cpp:106 +msgid "8. Organ" +msgstr "" + +#: src/gui/insEdit.cpp:107 +msgid "9. Horn" +msgstr "" + +#: src/gui/insEdit.cpp:108 +msgid "10. Synth" +msgstr "" + +#: src/gui/insEdit.cpp:109 +msgid "11. Harpsichord" +msgstr "" + +#: src/gui/insEdit.cpp:110 src/gui/insEdit.cpp:129 src/gui/insEdit.cpp:148 +msgid "12. Vibraphone" +msgstr "" + +#: src/gui/insEdit.cpp:111 +msgid "13. Synth Bass" +msgstr "" + +#: src/gui/insEdit.cpp:112 +msgid "14. Acoustic Bass" +msgstr "" + +#: src/gui/insEdit.cpp:113 +msgid "15. Electric Guitar" +msgstr "" + +#: src/gui/insEdit.cpp:114 src/gui/insEdit.cpp:133 src/gui/insEdit.cpp:152 +#: src/gui/insEdit.cpp:172 src/gui/insEdit.cpp:3176 +msgid "Drums" +msgstr "" + +#: src/gui/insEdit.cpp:118 +msgid "1. Electric String" +msgstr "" + +#: src/gui/insEdit.cpp:119 +msgid "2. Bow wow" +msgstr "" + +#: src/gui/insEdit.cpp:120 src/gui/insEdit.cpp:139 +msgid "3. Electric Guitar" +msgstr "" + +#: src/gui/insEdit.cpp:121 +msgid "4. Organ" +msgstr "" + +#: src/gui/insEdit.cpp:123 +msgid "6. Saxophone" +msgstr "" + +#: src/gui/insEdit.cpp:125 +msgid "8. Street Organ" +msgstr "" + +#: src/gui/insEdit.cpp:126 +msgid "9. Synth Brass" +msgstr "" + +#: src/gui/insEdit.cpp:127 +msgid "10. Electric Piano" +msgstr "" + +#: src/gui/insEdit.cpp:128 +msgid "11. Bass" +msgstr "" + +#: src/gui/insEdit.cpp:130 +msgid "13. Chime" +msgstr "" + +#: src/gui/insEdit.cpp:131 +msgid "14. Tom Tom II" +msgstr "" + +#: src/gui/insEdit.cpp:132 +msgid "15. Noise" +msgstr "" + +#: src/gui/insEdit.cpp:137 +msgid "1. Strings" +msgstr "" + +#: src/gui/insEdit.cpp:140 +msgid "4. Electric Piano" +msgstr "" + +#: src/gui/insEdit.cpp:141 +msgid "5. Flute" +msgstr "" + +#: src/gui/insEdit.cpp:142 +msgid "6. Marimba" +msgstr "" + +#: src/gui/insEdit.cpp:144 +msgid "8. Harmonica" +msgstr "" + +#: src/gui/insEdit.cpp:145 +msgid "9. Tuba" +msgstr "" + +#: src/gui/insEdit.cpp:146 +msgid "10. Synth Brass" +msgstr "" + +#: src/gui/insEdit.cpp:147 +msgid "11. Short Saw" +msgstr "" + +#: src/gui/insEdit.cpp:149 +msgid "13. Electric Guitar 2" +msgstr "" + +#: src/gui/insEdit.cpp:150 +msgid "14. Synth Bass" +msgstr "" + +#: src/gui/insEdit.cpp:151 +msgid "15. Sitar" +msgstr "" + +#: src/gui/insEdit.cpp:157 +msgid "1. Bell" +msgstr "" + +#: src/gui/insEdit.cpp:162 +msgid "6. Rattling Bell" +msgstr "" + +#: src/gui/insEdit.cpp:164 +msgid "8. Reed Organ" +msgstr "" + +#: src/gui/insEdit.cpp:165 +msgid "9. Soft Bell" +msgstr "" + +#: src/gui/insEdit.cpp:166 +msgid "10. Xylophone" +msgstr "" + +#: src/gui/insEdit.cpp:167 +msgid "11. Vibraphone" +msgstr "" + +#: src/gui/insEdit.cpp:168 +msgid "12. Brass" +msgstr "" + +#: src/gui/insEdit.cpp:169 +msgid "13. Bass Guitar" +msgstr "" + +#: src/gui/insEdit.cpp:170 +msgid "14. Synth" +msgstr "" + +#: src/gui/insEdit.cpp:171 +msgid "15. Chorus" +msgstr "" + +#: src/gui/insEdit.cpp:178 src/gui/insEdit.cpp:189 +msgid "Half Sine" +msgstr "" + +#: src/gui/insEdit.cpp:179 src/gui/insEdit.cpp:190 +msgid "Absolute Sine" +msgstr "" + +#: src/gui/insEdit.cpp:180 +msgid "Quarter Sine" +msgstr "" + +#: src/gui/insEdit.cpp:181 src/gui/insEdit.cpp:203 +msgid "Squished Sine" +msgstr "" + +#: src/gui/insEdit.cpp:182 src/gui/insEdit.cpp:205 +msgid "Squished AbsSine" +msgstr "" + +#: src/gui/insEdit.cpp:184 src/gui/insEdit.cpp:195 +msgid "Derived Square" +msgstr "" + +#: src/gui/insEdit.cpp:191 +msgid "Pulse Sine" +msgstr "" + +#: src/gui/insEdit.cpp:192 +msgid "Sine (Even Periods)" +msgstr "" + +#: src/gui/insEdit.cpp:193 +msgid "AbsSine (Even Periods)" +msgstr "" + +#: src/gui/insEdit.cpp:201 +msgid "Cut Sine" +msgstr "" + +#: src/gui/insEdit.cpp:202 +msgid "Cut Triangle" +msgstr "" + +#: src/gui/insEdit.cpp:204 +msgid "Squished Triangle" +msgstr "" + +#: src/gui/insEdit.cpp:206 +msgid "Squished AbsTriangle" +msgstr "" + +#: src/gui/insEdit.cpp:224 +msgid "Noise disabled" +msgstr "" + +#: src/gui/insEdit.cpp:225 +msgid "Square + noise" +msgstr "" + +#: src/gui/insEdit.cpp:226 +msgid "Ringmod from OP3 + noise" +msgstr "" + +#: src/gui/insEdit.cpp:227 +msgid "" +"Ringmod from OP3 + double pitch ModInput\n" +"WARNING - has emulation issues; subject to change" +msgstr "" + +#: src/gui/insEdit.cpp:232 +msgid "Bitwise AND" +msgstr "" + +#: src/gui/insEdit.cpp:233 +msgid "Bitwise OR" +msgstr "" + +#: src/gui/insEdit.cpp:234 +msgid "Bitwise XOR" +msgstr "" + +#: src/gui/insEdit.cpp:239 src/gui/insEdit.cpp:390 +msgid "gate" +msgstr "" + +#: src/gui/insEdit.cpp:240 src/gui/insEdit.cpp:391 +msgid "sync" +msgstr "" + +#: src/gui/insEdit.cpp:241 src/gui/insEdit.cpp:392 +msgid "ring" +msgstr "" + +#: src/gui/insEdit.cpp:327 +msgid "How did you even" +msgstr "" + +#: src/gui/insEdit.cpp:335 +msgid "triangle" +msgstr "" + +#: src/gui/insEdit.cpp:336 src/gui/insEdit.cpp:5821 +msgid "saw" +msgstr "" + +#: src/gui/insEdit.cpp:337 src/gui/insEdit.cpp:5827 +msgid "pulse" +msgstr "" + +#: src/gui/insEdit.cpp:338 src/gui/insEdit.cpp:344 src/gui/insEdit.cpp:373 +#: src/gui/insEdit.cpp:424 src/gui/insEdit.cpp:429 src/gui/insEdit.cpp:5833 +msgid "noise" +msgstr "" + +#: src/gui/insEdit.cpp:343 +msgid "tone" +msgstr "" + +#: src/gui/insEdit.cpp:345 +msgid "envelope" +msgstr "" + +#: src/gui/insEdit.cpp:350 +msgid "hold" +msgstr "" + +#: src/gui/insEdit.cpp:351 +msgid "alternate" +msgstr "" + +#: src/gui/insEdit.cpp:352 src/gui/insEdit.cpp:364 +msgid "direction" +msgstr "" + +#: src/gui/insEdit.cpp:353 src/gui/insEdit.cpp:436 +msgid "enable" +msgstr "" + +#: src/gui/insEdit.cpp:357 src/gui/insEdit.cpp:368 +msgid "enabled" +msgstr "" + +#: src/gui/insEdit.cpp:361 +msgid "mirror" +msgstr "" + +#: src/gui/insEdit.cpp:365 +msgid "resolution" +msgstr "" + +#: src/gui/insEdit.cpp:366 +msgid "fixed" +msgstr "" + +#: src/gui/insEdit.cpp:367 +msgid "N/A" +msgstr "" + +#: src/gui/insEdit.cpp:374 +msgid "echo" +msgstr "" + +#: src/gui/insEdit.cpp:375 +msgid "pitch mod" +msgstr "" + +#: src/gui/insEdit.cpp:376 src/gui/insEdit.cpp:508 +msgid "invert right" +msgstr "" + +#: src/gui/insEdit.cpp:377 src/gui/insEdit.cpp:509 +msgid "invert left" +msgstr "" + +#: src/gui/insEdit.cpp:382 src/gui/insEdit.cpp:5905 +msgid "low" +msgstr "" + +#: src/gui/insEdit.cpp:383 src/gui/insEdit.cpp:5911 +msgid "band" +msgstr "" + +#: src/gui/insEdit.cpp:384 src/gui/insEdit.cpp:5917 +msgid "high" +msgstr "" + +#: src/gui/insEdit.cpp:385 src/gui/insEdit.cpp:5924 +msgid "ch3off" +msgstr "" + +#: src/gui/insEdit.cpp:393 +msgid "test" +msgstr "" + +#: src/gui/insEdit.cpp:398 +msgid "15KHz" +msgstr "" + +#: src/gui/insEdit.cpp:399 +msgid "filter 2+4" +msgstr "" + +#: src/gui/insEdit.cpp:400 +msgid "filter 1+3" +msgstr "" + +#: src/gui/insEdit.cpp:401 +msgid "16-bit 3+4" +msgstr "" + +#: src/gui/insEdit.cpp:402 +msgid "16-bit 1+2" +msgstr "" + +#: src/gui/insEdit.cpp:403 +msgid "high3" +msgstr "" + +#: src/gui/insEdit.cpp:404 +msgid "high1" +msgstr "" + +#: src/gui/insEdit.cpp:405 +msgid "poly9" +msgstr "" + +#: src/gui/insEdit.cpp:414 +msgid "16'" +msgstr "" + +#: src/gui/insEdit.cpp:415 +msgid "8'" +msgstr "" + +#: src/gui/insEdit.cpp:416 +msgid "4'" +msgstr "" + +#: src/gui/insEdit.cpp:417 +msgid "2'" +msgstr "" + +#: src/gui/insEdit.cpp:418 +msgid "sustain" +msgstr "" + +#: src/gui/insEdit.cpp:423 +msgid "square" +msgstr "" + +#: src/gui/insEdit.cpp:431 +msgid "surround" +msgstr "" + +#: src/gui/insEdit.cpp:437 +msgid "oneshot" +msgstr "" + +#: src/gui/insEdit.cpp:438 +msgid "split L/R" +msgstr "" + +#: src/gui/insEdit.cpp:439 +msgid "HinvR" +msgstr "" + +#: src/gui/insEdit.cpp:440 +msgid "VinvR" +msgstr "" + +#: src/gui/insEdit.cpp:441 +msgid "HinvL" +msgstr "" + +#: src/gui/insEdit.cpp:442 +msgid "VinvL" +msgstr "" + +#: src/gui/insEdit.cpp:447 src/gui/insEdit.cpp:476 +msgid "ring mod" +msgstr "" + +#: src/gui/insEdit.cpp:448 +msgid "low pass" +msgstr "" + +#: src/gui/insEdit.cpp:449 src/gui/insEdit.cpp:475 +msgid "high pass" +msgstr "" + +#: src/gui/insEdit.cpp:450 +msgid "band pass" +msgstr "" + +#: src/gui/insEdit.cpp:459 +msgid "enable tap B" +msgstr "" + +#: src/gui/insEdit.cpp:460 +msgid "AM with slope" +msgstr "" + +#: src/gui/insEdit.cpp:465 +msgid "invert B" +msgstr "" + +#: src/gui/insEdit.cpp:466 +msgid "invert A" +msgstr "" + +#: src/gui/insEdit.cpp:467 +msgid "reset B" +msgstr "" + +#: src/gui/insEdit.cpp:468 +msgid "reset A" +msgstr "" + +#: src/gui/insEdit.cpp:469 +msgid "clip B" +msgstr "" + +#: src/gui/insEdit.cpp:470 +msgid "clip A" +msgstr "" + +#: src/gui/insEdit.cpp:477 +msgid "swap counters (noise)" +msgstr "" + +#: src/gui/insEdit.cpp:478 +msgid "low pass (noise)" +msgstr "" + +#: src/gui/insEdit.cpp:485 +msgid "rear right" +msgstr "" + +#: src/gui/insEdit.cpp:486 +msgid "rear left" +msgstr "" + +#: src/gui/insEdit.cpp:491 +msgid "on" +msgstr "" + +#: src/gui/insEdit.cpp:496 +msgid "k1 slowdown" +msgstr "" + +#: src/gui/insEdit.cpp:497 +msgid "k2 slowdown" +msgstr "" + +#: src/gui/insEdit.cpp:502 +msgid "pause" +msgstr "" + +#: src/gui/insEdit.cpp:503 +msgid "reverse" +msgstr "" + +#: src/gui/insEdit.cpp:521 +msgid "Subtract" +msgstr "" + +#: src/gui/insEdit.cpp:522 +msgid "Average" +msgstr "" + +#: src/gui/insEdit.cpp:523 src/gui/insEdit.cpp:2037 +msgid "Phase" +msgstr "" + +#: src/gui/insEdit.cpp:524 +msgid "Chorus" +msgstr "" + +#: src/gui/insEdit.cpp:528 +msgid "None (dual)" +msgstr "" + +#: src/gui/insEdit.cpp:529 +msgid "Wipe" +msgstr "" + +#: src/gui/insEdit.cpp:531 +msgid "Fade (ping-pong)" +msgstr "" + +#: src/gui/insEdit.cpp:532 +msgid "Overlay" +msgstr "" + +#: src/gui/insEdit.cpp:533 +msgid "Negative Overlay" +msgstr "" + +#: src/gui/insEdit.cpp:534 +msgid "Slide" +msgstr "" + +#: src/gui/insEdit.cpp:535 +msgid "Mix Chorus" +msgstr "" + +#: src/gui/insEdit.cpp:536 +msgid "Phase Modulation" +msgstr "" + +#: src/gui/insEdit.cpp:541 +msgid "Sweep" +msgstr "" + +#: src/gui/insEdit.cpp:542 src/gui/insEdit.cpp:552 +msgid "Wait" +msgstr "" + +#: src/gui/insEdit.cpp:543 src/gui/insEdit.cpp:553 +msgid "Wait for Release" +msgstr "" + +#: src/gui/insEdit.cpp:545 src/gui/insEdit.cpp:555 +msgid "Loop until Release" +msgstr "" + +#: src/gui/insEdit.cpp:549 +msgid "Volume Sweep" +msgstr "" + +#: src/gui/insEdit.cpp:550 +msgid "Frequency Sweep" +msgstr "" + +#: src/gui/insEdit.cpp:551 +msgid "Cutoff Sweep" +msgstr "" + +#: src/gui/insEdit.cpp:559 src/gui/insEdit.cpp:6604 +msgid "Direct" +msgstr "" + +#: src/gui/insEdit.cpp:560 src/gui/insEdit.cpp:6608 +msgid "Decrease (linear)" +msgstr "" + +#: src/gui/insEdit.cpp:561 src/gui/insEdit.cpp:6612 +msgid "Decrease (logarithmic)" +msgstr "" + +#: src/gui/insEdit.cpp:562 src/gui/insEdit.cpp:6616 +msgid "Increase (linear)" +msgstr "" + +#: src/gui/insEdit.cpp:563 src/gui/insEdit.cpp:6620 +msgid "Increase (bent line)" +msgstr "" + +#: src/gui/insEdit.cpp:611 +msgid "Relative" +msgstr "" + +#: src/gui/insEdit.cpp:616 +#, c-format +msgid "%d: +%d (exponential)" +msgstr "" + +#: src/gui/insEdit.cpp:619 +#, c-format +msgid "%d: +%d (linear)" +msgstr "" + +#: src/gui/insEdit.cpp:622 +#, c-format +msgid "%d: -%d (exponential)" +msgstr "" + +#: src/gui/insEdit.cpp:625 +#, c-format +msgid "%d: -%d (linear)" +msgstr "" + +#: src/gui/insEdit.cpp:627 +#, c-format +msgid "%d: %d (direct)" +msgstr "" + +#: src/gui/insEdit.cpp:660 +msgid "Random" +msgstr "" + +#: src/gui/insEdit.cpp:1610 +msgid "" +"left click to restart\n" +"middle click to pause\n" +"right click to see algorithm" +msgstr "" + +#: src/gui/insEdit.cpp:1620 +msgid "" +"left click to configure TL scaling\n" +"right click to see FM preview" +msgstr "" + +#: src/gui/insEdit.cpp:1624 +msgid "right click to see FM preview" +msgstr "" + +#: src/gui/insEdit.cpp:1639 +msgid "operator level changes with volume?" +msgstr "" + +#: src/gui/insEdit.cpp:1648 +msgid "AUTO##OPKVS" +msgstr "" + +#: src/gui/insEdit.cpp:1650 +msgid "NO##OPKVS" +msgstr "" + +#: src/gui/insEdit.cpp:1652 +msgid "YES##OPKVS" +msgstr "" + +#: src/gui/insEdit.cpp:1900 src/gui/insEdit.cpp:2005 +msgid "Bottom" +msgstr "" + +#: src/gui/insEdit.cpp:1940 +msgid "Hold" +msgstr "" + +#: src/gui/insEdit.cpp:1949 +msgid "SusTime" +msgstr "" + +#: src/gui/insEdit.cpp:1969 +msgid "SusDecay" +msgstr "" + +#: src/gui/insEdit.cpp:2047 +msgid "Shape" +msgstr "" + +#: src/gui/insEdit.cpp:2100 +msgid "Macro type: Sequence" +msgstr "" + +#: src/gui/insEdit.cpp:2103 +msgid "Macro type: ADSR" +msgstr "" + +#: src/gui/insEdit.cpp:2106 +msgid "Macro type: LFO" +msgstr "" + +#: src/gui/insEdit.cpp:2109 +msgid "Macro type: What's going on here?" +msgstr "" + +#: src/gui/insEdit.cpp:2122 +msgid "Delay/Step Length" +msgstr "" + +#: src/gui/insEdit.cpp:2125 +msgid "Step Length (ticks)##IMacroSpeed" +msgstr "" + +#: src/gui/insEdit.cpp:2129 +msgid "Delay##IMacroDelay" +msgstr "" + +#: src/gui/insEdit.cpp:2142 +msgid "Release mode: Active (jump to release pos)" +msgstr "" + +#: src/gui/insEdit.cpp:2144 +msgid "Release mode: Passive (delayed release)" +msgstr "" + +#: src/gui/insEdit.cpp:2393 +msgid "StepLen" +msgstr "" + +#: src/gui/insEdit.cpp:2401 +msgid "Delay" +msgstr "" + +#: src/gui/insEdit.cpp:2425 +msgid "The heck? No, this isn't even working correctly..." +msgstr "" + +#: src/gui/insEdit.cpp:2428 +msgid "The only problem with that selectedMacro is that it's a bug..." +msgstr "" + +#: src/gui/insEdit.cpp:2589 +msgid "(copying)" +msgstr "" + +#: src/gui/insEdit.cpp:2591 +msgid "(swapping)" +msgstr "" + +#: src/gui/insEdit.cpp:2595 +msgid "" +"- drag to swap operator\n" +"- shift-drag to copy operator" +msgstr "" + +#: src/gui/insEdit.cpp:2632 +msgid "new DPCM features disabled (compatibility)!" +msgstr "" + +#: src/gui/insEdit.cpp:2633 +msgid "click here to enable them." +msgstr "" + +#: src/gui/insEdit.cpp:2644 +msgid "none selected" +msgstr "" + +#: src/gui/insEdit.cpp:2657 +msgid "Use sample" +msgstr "" + +#: src/gui/insEdit.cpp:2659 +msgid "Sample bank slot##BANKSLOT" +msgstr "" + +#: src/gui/insEdit.cpp:2681 +msgid "Use wavetable (Amiga/Generic DAC only)" +msgstr "" + +#: src/gui/insEdit.cpp:2681 +msgid "Use wavetable" +msgstr "" + +#: src/gui/insEdit.cpp:2708 +msgid "Use sample map" +msgstr "" + +#: src/gui/insEdit.cpp:2730 +msgid "delta" +msgstr "" + +#: src/gui/insEdit.cpp:2736 +msgid "sample name" +msgstr "" + +#: src/gui/insEdit.cpp:3001 +msgid "set entire map to this pitch" +msgstr "" + +#: src/gui/insEdit.cpp:3009 +msgid "set entire map to this delta counter value" +msgstr "" + +#: src/gui/insEdit.cpp:3018 +msgid "set entire map to this note" +msgstr "" + +#: src/gui/insEdit.cpp:3027 +msgid "set entire map to this sample" +msgstr "" + +#: src/gui/insEdit.cpp:3037 +msgid "reset pitches" +msgstr "" + +#: src/gui/insEdit.cpp:3042 +msgid "clear delta counter values" +msgstr "" + +#: src/gui/insEdit.cpp:3048 +msgid "reset notes" +msgstr "" + +#: src/gui/insEdit.cpp:3054 +msgid "clear map samples" +msgstr "" + +#: src/gui/insEdit.cpp:3148 +msgid "Request from TX81Z" +msgstr "" + +#: src/gui/insEdit.cpp:3234 +#, c-format +msgid "%s name" +msgstr "" + +#: src/gui/insEdit.cpp:3286 +msgid "Fixed frequency mode" +msgstr "" + +#: src/gui/insEdit.cpp:3288 +msgid "" +"when enabled, drums will be set to the specified frequencies, ignoring the " +"note." +msgstr "" + +#: src/gui/insEdit.cpp:3296 +msgid "Drum" +msgstr "" + +#: src/gui/insEdit.cpp:3298 src/gui/insEdit.cpp:3798 src/gui/insEdit.cpp:3904 +#: src/gui/insEdit.cpp:4404 src/gui/insEdit.cpp:4468 src/gui/insEdit.cpp:5068 +#: src/gui/insEdit.cpp:5518 +msgid "Block" +msgstr "" + +#: src/gui/insEdit.cpp:3300 src/gui/insEdit.cpp:3803 src/gui/insEdit.cpp:3909 +#: src/gui/insEdit.cpp:4993 src/gui/insEdit.cpp:5079 src/gui/insEdit.cpp:5519 +msgid "FreqNum" +msgstr "" + +#: src/gui/insEdit.cpp:3303 +msgid "Snare/Hi-hat" +msgstr "" + +#: src/gui/insEdit.cpp:3304 +msgid "Tom/Top" +msgstr "" + +#: src/gui/insEdit.cpp:3314 +msgid "Volume##TL" +msgstr "" + +#: src/gui/insEdit.cpp:3316 +msgid "this volume slider only works in compatibility (non-drums) system." +msgstr "" + +#: src/gui/insEdit.cpp:3626 +msgid "Env" +msgstr "" + +#: src/gui/insEdit.cpp:3980 src/gui/insEdit.cpp:4346 src/gui/insEdit.cpp:4396 +#: src/gui/insEdit.cpp:5104 +msgid "OPL2/3 only (last 4 waveforms are OPL3 only)" +msgstr "" + +#: src/gui/insEdit.cpp:4079 src/gui/insEdit.cpp:4788 +#, c-format +msgid "Envelope 2 (kick only)" +msgstr "" + +#: src/gui/insEdit.cpp:4084 +#, c-format +msgid "Operator %d" +msgstr "" + +#: src/gui/insEdit.cpp:4414 +msgid "Freq" +msgstr "" + +#: src/gui/insEdit.cpp:4443 +msgid "Only on YM2151 (OPM)" +msgstr "" + +#: src/gui/insEdit.cpp:4466 +msgid "Blk" +msgstr "" + +#: src/gui/insEdit.cpp:4479 +msgid "F" +msgstr "" + +#: src/gui/insEdit.cpp:4481 +msgid "Frequency (F-Num)" +msgstr "" + +#: src/gui/insEdit.cpp:4833 +msgid "SSG On" +msgstr "" + +#: src/gui/insEdit.cpp:5206 src/gui/insEdit.cpp:5207 +msgid "waiting..." +msgstr "" + +#: src/gui/insEdit.cpp:5210 src/gui/insEdit.cpp:5211 +msgid "no instrument selected" +msgstr "" + +#: src/gui/insEdit.cpp:5393 +msgid "" +"none of the currently present chips are able to play this instrument type!" +msgstr "" + +#: src/gui/insEdit.cpp:5413 +msgid "FM Macros" +msgstr "" + +#: src/gui/insEdit.cpp:5435 src/gui/insEdit.cpp:5440 +msgid "LFO Speed" +msgstr "" + +#: src/gui/insEdit.cpp:5439 src/gui/insEdit.cpp:6514 +msgid "PM Depth" +msgstr "" + +#: src/gui/insEdit.cpp:5441 +msgid "LFO Shape" +msgstr "" + +#: src/gui/insEdit.cpp:5444 +msgid "OpMask" +msgstr "" + +#: src/gui/insEdit.cpp:5446 +msgid "AM Depth 2" +msgstr "" + +#: src/gui/insEdit.cpp:5447 +msgid "PM Depth 2" +msgstr "" + +#: src/gui/insEdit.cpp:5448 +msgid "LFO2 Speed" +msgstr "" + +#: src/gui/insEdit.cpp:5449 +msgid "LFO2 Shape" +msgstr "" + +#: src/gui/insEdit.cpp:5458 +#, c-format +msgid "Operator Macros" +msgstr "" + +#: src/gui/insEdit.cpp:5460 +#, c-format +msgid "OP%d Macros" +msgstr "" + +#: src/gui/insEdit.cpp:5521 +msgid "Op. Arpeggio" +msgstr "" + +#: src/gui/insEdit.cpp:5522 +msgid "Op. Pitch" +msgstr "" + +#: src/gui/insEdit.cpp:5531 +msgid "Op. Panning" +msgstr "" + +#: src/gui/insEdit.cpp:5558 +msgid "Use software envelope" +msgstr "" + +#: src/gui/insEdit.cpp:5559 +msgid "Initialize envelope on every note" +msgstr "" + +#: src/gui/insEdit.cpp:5560 +msgid "Double wave length (GBA only)" +msgstr "" + +#: src/gui/insEdit.cpp:5589 src/gui/insEdit.cpp:5666 +msgid "Sound Length" +msgstr "" + +#: src/gui/insEdit.cpp:5592 src/gui/insEdit.cpp:5666 +msgid "Infinity" +msgstr "" + +#: src/gui/insEdit.cpp:5596 +msgid "Direction" +msgstr "" + +#: src/gui/insEdit.cpp:5599 src/gui/insEdit.cpp:5669 src/gui/insEdit.cpp:5697 +#: src/gui/insEdit.cpp:6008 src/gui/insEdit.cpp:6051 +msgid "Up" +msgstr "" + +#: src/gui/insEdit.cpp:5604 src/gui/insEdit.cpp:5674 src/gui/insEdit.cpp:5702 +#: src/gui/insEdit.cpp:6013 src/gui/insEdit.cpp:6056 +msgid "Down" +msgstr "" + +#: src/gui/insEdit.cpp:5620 src/gui/insEdit.cpp:5953 +msgid "Hardware Sequence" +msgstr "" + +#: src/gui/insEdit.cpp:5630 src/gui/insEdit.cpp:5963 +msgid "Tick" +msgstr "" + +#: src/gui/insEdit.cpp:5632 src/gui/insEdit.cpp:5965 +msgid "Command" +msgstr "" + +#: src/gui/insEdit.cpp:5634 src/gui/insEdit.cpp:5967 +msgid "Move/Remove" +msgstr "" + +#: src/gui/insEdit.cpp:5663 +msgid "Env Length" +msgstr "" + +#: src/gui/insEdit.cpp:5690 +msgid "Shift" +msgstr "" + +#: src/gui/insEdit.cpp:5717 src/gui/insEdit.cpp:6073 +msgid "Ticks" +msgstr "" + +#: src/gui/insEdit.cpp:5736 src/gui/insEdit.cpp:6092 src/gui/insEdit.cpp:6239 +msgid "Position" +msgstr "" + +#: src/gui/insEdit.cpp:5815 +msgid "tri" +msgstr "" + +#: src/gui/insEdit.cpp:5882 +msgid "Ring Modulation" +msgstr "" + +#: src/gui/insEdit.cpp:5886 +msgid "Oscillator Sync" +msgstr "" + +#: src/gui/insEdit.cpp:5890 +msgid "Enable filter" +msgstr "" + +#: src/gui/insEdit.cpp:5891 +msgid "Initialize filter" +msgstr "" + +#: src/gui/insEdit.cpp:5894 src/gui/insEdit.cpp:5897 src/gui/insEdit.cpp:6951 +#: src/gui/insEdit.cpp:7215 src/gui/insEdit.cpp:7476 +msgid "Cutoff" +msgstr "" + +#: src/gui/insEdit.cpp:5902 src/gui/insEdit.cpp:6408 src/gui/insEdit.cpp:6952 +#: src/gui/insEdit.cpp:7179 src/gui/insEdit.cpp:7477 +msgid "Filter Mode" +msgstr "" + +#: src/gui/insEdit.cpp:5931 src/gui/insEdit.cpp:7485 +msgid "Noise Mode" +msgstr "" + +#: src/gui/insEdit.cpp:5932 +msgid "Wave Mix Mode" +msgstr "" + +#: src/gui/insEdit.cpp:5935 +msgid "Absolute Cutoff Macro" +msgstr "" + +#: src/gui/insEdit.cpp:5939 +msgid "Absolute Duty Macro" +msgstr "" + +#: src/gui/insEdit.cpp:5945 +msgid "Don't test before new note" +msgstr "" + +#: src/gui/insEdit.cpp:5950 +msgid "Switch roles of frequency and phase reset timer" +msgstr "" + +#: src/gui/insEdit.cpp:5997 src/gui/insEdit.cpp:6040 +msgid "Period" +msgstr "" + +#: src/gui/insEdit.cpp:6002 src/gui/insEdit.cpp:6045 src/gui/insEdit.cpp:6892 +msgid "Amount" +msgstr "" + +#: src/gui/insEdit.cpp:6005 src/gui/insEdit.cpp:6048 +msgid "Bound" +msgstr "" + +#: src/gui/insEdit.cpp:6021 +msgid "Flip" +msgstr "" + +#: src/gui/insEdit.cpp:6210 +msgid "Load waveform" +msgstr "" + +#: src/gui/insEdit.cpp:6215 +msgid "" +"when enabled, a waveform will be loaded into RAM.\n" +"when disabled, only the offset and length change." +msgstr "" + +#: src/gui/insEdit.cpp:6219 +msgid "Waveform##WAVE" +msgstr "" + +#: src/gui/insEdit.cpp:6227 +msgid "Per-channel wave position/length" +msgstr "" + +#: src/gui/insEdit.cpp:6237 +msgid "Ch" +msgstr "" + +#: src/gui/insEdit.cpp:6286 +msgid "Compatibility mode" +msgstr "" + +#: src/gui/insEdit.cpp:6288 +msgid "" +"only use for compatibility with .dmf modules!\n" +"- initializes modulation table with first wavetable\n" +"- does not alter modulation parameters on instrument change" +msgstr "" + +#: src/gui/insEdit.cpp:6290 +msgid "Modulation depth" +msgstr "" + +#: src/gui/insEdit.cpp:6294 +msgid "Modulation speed" +msgstr "" + +#: src/gui/insEdit.cpp:6298 +msgid "Modulation table" +msgstr "" + +#: src/gui/insEdit.cpp:6347 +msgid "Set modulation table (channel 5 only)" +msgstr "" + +#: src/gui/insEdit.cpp:6411 src/gui/insEdit.cpp:7184 +msgid "Filter K1" +msgstr "" + +#: src/gui/insEdit.cpp:6413 src/gui/insEdit.cpp:7185 +msgid "Filter K2" +msgstr "" + +#: src/gui/insEdit.cpp:6417 +msgid "Envelope length" +msgstr "" + +#: src/gui/insEdit.cpp:6420 +msgid "Left Volume Ramp" +msgstr "" + +#: src/gui/insEdit.cpp:6422 +msgid "Right Volume Ramp" +msgstr "" + +#: src/gui/insEdit.cpp:6425 +msgid "Filter K1 Ramp" +msgstr "" + +#: src/gui/insEdit.cpp:6427 +msgid "Filter K2 Ramp" +msgstr "" + +#: src/gui/insEdit.cpp:6430 +msgid "K1 Ramp Slowdown" +msgstr "" + +#: src/gui/insEdit.cpp:6432 +msgid "K2 Ramp Slowdown" +msgstr "" + +#: src/gui/insEdit.cpp:6454 +msgid "Attack Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6460 +msgid "Decay 1 Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6466 +msgid "Decay Level" +msgstr "" + +#: src/gui/insEdit.cpp:6472 +msgid "Decay 2 Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6478 +msgid "Release Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6484 +msgid "Rate Correction" +msgstr "" + +#: src/gui/insEdit.cpp:6512 +msgid "LFO Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6523 +msgid "Use envelope" +msgstr "" + +#: src/gui/insEdit.cpp:6576 +msgid "Sustain/release mode:" +msgstr "" + +#: src/gui/insEdit.cpp:6577 +msgid "Direct (cut on release)" +msgstr "" + +#: src/gui/insEdit.cpp:6580 +msgid "Effective (linear decrease)" +msgstr "" + +#: src/gui/insEdit.cpp:6583 +msgid "Effective (exponential decrease)" +msgstr "" + +#: src/gui/insEdit.cpp:6586 +msgid "Delayed (write R on release)" +msgstr "" + +#: src/gui/insEdit.cpp:6596 src/gui/insEdit.cpp:6597 +msgid "Gain Mode" +msgstr "" + +#: src/gui/insEdit.cpp:6599 src/gui/insEdit.cpp:6600 src/gui/insEdit.cpp:7205 +msgid "Gain" +msgstr "" + +#: src/gui/insEdit.cpp:6633 +msgid "" +"using decrease modes will not produce any sound at all, unless you know what " +"you are doing.\n" +"it is recommended to use the Gain macro for decrease instead." +msgstr "" + +#: src/gui/insEdit.cpp:6703 +msgid "Enable synthesizer" +msgstr "" + +#: src/gui/insEdit.cpp:6721 +msgid "Single-waveform" +msgstr "" + +#: src/gui/insEdit.cpp:6730 +msgid "Dual-waveform" +msgstr "" + +#: src/gui/insEdit.cpp:6803 src/gui/insEdit.cpp:6812 +msgid "Wave 1" +msgstr "" + +#: src/gui/insEdit.cpp:6808 src/gui/insEdit.cpp:6823 +msgid "" +"waveform macro is controlling wave 1!\n" +"this value will be ineffective." +msgstr "" + +#: src/gui/insEdit.cpp:6829 +msgid "Wave 2" +msgstr "" + +#: src/gui/insEdit.cpp:6844 +msgid "Resume preview" +msgstr "" + +#: src/gui/insEdit.cpp:6846 +msgid "Pause preview" +msgstr "" + +#: src/gui/insEdit.cpp:6854 +msgid "Restart preview" +msgstr "" + +#: src/gui/insEdit.cpp:6874 +msgid "Copy to new wavetable" +msgstr "" + +#: src/gui/insEdit.cpp:6881 +msgid "Update Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6902 +msgid "Global" +msgstr "" + +#: src/gui/insEdit.cpp:6906 +msgid "" +"wavetable synthesizer disabled.\n" +"use the Waveform macro to set the wave for this instrument." +msgstr "" + +#: src/gui/insEdit.cpp:6912 +msgid "Macros" +msgstr "" + +#: src/gui/insEdit.cpp:6921 src/gui/insEdit.cpp:6929 src/gui/insEdit.cpp:6938 +#: src/gui/insEdit.cpp:6947 src/gui/insEdit.cpp:6962 src/gui/insEdit.cpp:6976 +#: src/gui/insEdit.cpp:6988 src/gui/insEdit.cpp:7001 src/gui/insEdit.cpp:7017 +#: src/gui/insEdit.cpp:7023 src/gui/insEdit.cpp:7033 src/gui/insEdit.cpp:7040 +#: src/gui/insEdit.cpp:7046 src/gui/insEdit.cpp:7059 src/gui/insEdit.cpp:7066 +#: src/gui/insEdit.cpp:7073 src/gui/insEdit.cpp:7082 src/gui/insEdit.cpp:7092 +#: src/gui/insEdit.cpp:7100 src/gui/insEdit.cpp:7106 src/gui/insEdit.cpp:7114 +#: src/gui/insEdit.cpp:7121 src/gui/insEdit.cpp:7127 src/gui/insEdit.cpp:7137 +#: src/gui/insEdit.cpp:7149 src/gui/insEdit.cpp:7157 src/gui/insEdit.cpp:7173 +#: src/gui/insEdit.cpp:7178 src/gui/insEdit.cpp:7191 src/gui/insEdit.cpp:7198 +#: src/gui/insEdit.cpp:7209 src/gui/insEdit.cpp:7222 src/gui/insEdit.cpp:7231 +#: src/gui/insEdit.cpp:7238 src/gui/insEdit.cpp:7246 src/gui/insEdit.cpp:7270 +#: src/gui/insEdit.cpp:7277 src/gui/insEdit.cpp:7285 src/gui/insEdit.cpp:7296 +#: src/gui/insEdit.cpp:7303 src/gui/insEdit.cpp:7311 src/gui/insEdit.cpp:7319 +#: src/gui/insEdit.cpp:7328 src/gui/insEdit.cpp:7336 src/gui/insEdit.cpp:7342 +#: src/gui/insEdit.cpp:7348 src/gui/insEdit.cpp:7354 src/gui/insEdit.cpp:7359 +#: src/gui/insEdit.cpp:7366 src/gui/insEdit.cpp:7373 src/gui/insEdit.cpp:7381 +#: src/gui/insEdit.cpp:7390 src/gui/insEdit.cpp:7398 src/gui/insEdit.cpp:7410 +#: src/gui/insEdit.cpp:7423 src/gui/insEdit.cpp:7434 src/gui/insEdit.cpp:7444 +#: src/gui/insEdit.cpp:7452 src/gui/insEdit.cpp:7462 src/gui/insEdit.cpp:7471 +msgid "Arpeggio" +msgstr "" + +#: src/gui/insEdit.cpp:6925 src/gui/insEdit.cpp:6932 src/gui/insEdit.cpp:6943 +#: src/gui/insEdit.cpp:6972 src/gui/insEdit.cpp:6984 src/gui/insEdit.cpp:6994 +#: src/gui/insEdit.cpp:7007 src/gui/insEdit.cpp:7054 src/gui/insEdit.cpp:7062 +#: src/gui/insEdit.cpp:7069 src/gui/insEdit.cpp:7088 src/gui/insEdit.cpp:7110 +#: src/gui/insEdit.cpp:7133 src/gui/insEdit.cpp:7144 src/gui/insEdit.cpp:7163 +#: src/gui/insEdit.cpp:7183 src/gui/insEdit.cpp:7194 src/gui/insEdit.cpp:7214 +#: src/gui/insEdit.cpp:7234 src/gui/insEdit.cpp:7242 src/gui/insEdit.cpp:7249 +#: src/gui/insEdit.cpp:7254 src/gui/insEdit.cpp:7260 src/gui/insEdit.cpp:7266 +#: src/gui/insEdit.cpp:7273 src/gui/insEdit.cpp:7281 src/gui/insEdit.cpp:7290 +#: src/gui/insEdit.cpp:7299 src/gui/insEdit.cpp:7307 src/gui/insEdit.cpp:7324 +#: src/gui/insEdit.cpp:7332 src/gui/insEdit.cpp:7338 src/gui/insEdit.cpp:7362 +#: src/gui/insEdit.cpp:7369 src/gui/insEdit.cpp:7377 src/gui/insEdit.cpp:7386 +#: src/gui/insEdit.cpp:7394 src/gui/insEdit.cpp:7402 src/gui/insEdit.cpp:7414 +#: src/gui/insEdit.cpp:7429 src/gui/insEdit.cpp:7440 src/gui/insEdit.cpp:7448 +#: src/gui/insEdit.cpp:7457 src/gui/insEdit.cpp:7475 +msgid "Phase Reset" +msgstr "" + +#: src/gui/insEdit.cpp:6939 src/gui/insEdit.cpp:7024 src/gui/insEdit.cpp:7210 +#: src/gui/insEdit.cpp:7247 +msgid "Duty/Noise" +msgstr "" + +#: src/gui/insEdit.cpp:6966 src/gui/insEdit.cpp:7288 +msgid "Surround" +msgstr "" + +#: src/gui/insEdit.cpp:6968 src/gui/insEdit.cpp:6981 src/gui/insEdit.cpp:7026 +#: src/gui/insEdit.cpp:7085 src/gui/insEdit.cpp:7141 src/gui/insEdit.cpp:7159 +#: src/gui/insEdit.cpp:7180 src/gui/insEdit.cpp:7201 src/gui/insEdit.cpp:7225 +#: src/gui/insEdit.cpp:7278 src/gui/insEdit.cpp:7304 src/gui/insEdit.cpp:7321 +#: src/gui/insEdit.cpp:7329 src/gui/insEdit.cpp:7374 src/gui/insEdit.cpp:7383 +#: src/gui/insEdit.cpp:7399 src/gui/insEdit.cpp:7411 src/gui/insEdit.cpp:7426 +#: src/gui/insEdit.cpp:7454 src/gui/insEdit.cpp:7464 +msgid "Panning (left)" +msgstr "" + +#: src/gui/insEdit.cpp:6969 src/gui/insEdit.cpp:6982 src/gui/insEdit.cpp:7027 +#: src/gui/insEdit.cpp:7086 src/gui/insEdit.cpp:7142 src/gui/insEdit.cpp:7160 +#: src/gui/insEdit.cpp:7181 src/gui/insEdit.cpp:7202 src/gui/insEdit.cpp:7226 +#: src/gui/insEdit.cpp:7279 src/gui/insEdit.cpp:7305 src/gui/insEdit.cpp:7322 +#: src/gui/insEdit.cpp:7330 src/gui/insEdit.cpp:7375 src/gui/insEdit.cpp:7384 +#: src/gui/insEdit.cpp:7400 src/gui/insEdit.cpp:7412 src/gui/insEdit.cpp:7427 +#: src/gui/insEdit.cpp:7455 src/gui/insEdit.cpp:7465 +msgid "Panning (right)" +msgstr "" + +#: src/gui/insEdit.cpp:6990 src/gui/insEdit.cpp:7003 src/gui/insEdit.cpp:7107 +#: src/gui/insEdit.cpp:7199 src/gui/insEdit.cpp:7239 src/gui/insEdit.cpp:7424 +msgid "Noise Freq" +msgstr "" + +#: src/gui/insEdit.cpp:6996 src/gui/insEdit.cpp:7010 src/gui/insEdit.cpp:7167 +msgid "AutoEnv Num" +msgstr "" + +#: src/gui/insEdit.cpp:6997 src/gui/insEdit.cpp:7011 src/gui/insEdit.cpp:7168 +msgid "AutoEnv Den" +msgstr "" + +#: src/gui/insEdit.cpp:7012 +msgid "Noise AND Mask" +msgstr "" + +#: src/gui/insEdit.cpp:7013 +msgid "Noise OR Mask" +msgstr "" + +#: src/gui/insEdit.cpp:7034 +msgid "On/Off" +msgstr "" + +#: src/gui/insEdit.cpp:7060 +msgid "Patch" +msgstr "" + +#: src/gui/insEdit.cpp:7076 +msgid "Mod Depth" +msgstr "" + +#: src/gui/insEdit.cpp:7077 +msgid "Mod Speed" +msgstr "" + +#: src/gui/insEdit.cpp:7078 +msgid "Mod Position" +msgstr "" + +#: src/gui/insEdit.cpp:7083 +msgid "Noise Length" +msgstr "" + +#: src/gui/insEdit.cpp:7093 +msgid "Wave Pos" +msgstr "" + +#: src/gui/insEdit.cpp:7096 +msgid "Wave Length" +msgstr "" + +#: src/gui/insEdit.cpp:7115 +msgid "AUDCTL" +msgstr "" + +#: src/gui/insEdit.cpp:7122 src/gui/insEdit.cpp:7343 +msgid "Pulse Width" +msgstr "" + +#: src/gui/insEdit.cpp:7139 +msgid "Duty/Int" +msgstr "" + +#: src/gui/insEdit.cpp:7145 src/gui/insEdit.cpp:7406 +msgid "Load LFSR" +msgstr "" + +#: src/gui/insEdit.cpp:7165 +msgid "Envelope Mode" +msgstr "" + +#: src/gui/insEdit.cpp:7218 +msgid "Phase Reset Timer" +msgstr "" + +#: src/gui/insEdit.cpp:7252 src/gui/insEdit.cpp:7259 +msgid "Freq Divider" +msgstr "" + +#: src/gui/insEdit.cpp:7255 +msgid "Clock Divider" +msgstr "" + +#: src/gui/insEdit.cpp:7264 +msgid "Global Volume" +msgstr "" + +#: src/gui/insEdit.cpp:7286 +msgid "Echo Level" +msgstr "" + +#: src/gui/insEdit.cpp:7291 +msgid "Echo Feedback" +msgstr "" + +#: src/gui/insEdit.cpp:7292 +msgid "Echo Length" +msgstr "" + +#: src/gui/insEdit.cpp:7312 +msgid "Group Ctrl" +msgstr "" + +#: src/gui/insEdit.cpp:7313 +msgid "Group Attack" +msgstr "" + +#: src/gui/insEdit.cpp:7314 +msgid "Group Decay" +msgstr "" + +#: src/gui/insEdit.cpp:7320 +msgid "Noise Type" +msgstr "" + +#: src/gui/insEdit.cpp:7367 +msgid "Square/Noise" +msgstr "" + +#: src/gui/insEdit.cpp:7404 +msgid "Tap A Location" +msgstr "" + +#: src/gui/insEdit.cpp:7405 +msgid "Tap B Location" +msgstr "" + +#: src/gui/insEdit.cpp:7416 +msgid "Portion A Length" +msgstr "" + +#: src/gui/insEdit.cpp:7417 +msgid "Portion B Length" +msgstr "" + +#: src/gui/insEdit.cpp:7418 +msgid "Portion A Offset" +msgstr "" + +#: src/gui/insEdit.cpp:7419 +msgid "Portion B Offset" +msgstr "" + +#: src/gui/insEdit.cpp:7463 +msgid "Parameter" +msgstr "" + +#: src/gui/insEdit.cpp:7467 +msgid "Load Value" +msgstr "" + +#: src/gui/insEdit.cpp:7479 +msgid "Filter Toggle" +msgstr "" + +#: src/gui/insEdit.cpp:7486 +msgid "Wave Mix" +msgstr "" + +#: src/gui/insEdit.cpp:7500 +msgid "Octave offset" +msgstr "" + +#: src/gui/insEdit.cpp:7505 +msgid "go to Macros for other parameters." +msgstr "" + +#: src/gui/insEdit.cpp:7521 +msgid "invalid instrument type! change it first." +msgstr "" + +#: src/gui/insEdit.cpp:7565 +msgid "clear contents" +msgstr "" + +#: src/gui/insEdit.cpp:7571 +msgid "offset..." +msgstr "" + +#: src/gui/insEdit.cpp:7572 src/gui/insEdit.cpp:7605 +msgid "X" +msgstr "" + +#: src/gui/insEdit.cpp:7573 src/gui/insEdit.cpp:7609 +msgid "Y" +msgstr "" + +#: src/gui/insEdit.cpp:7574 +msgid "offset" +msgstr "" + +#: src/gui/insEdit.cpp:7637 +msgid "Min" +msgstr "" + +#: src/gui/insEdit.cpp:7638 +msgid "Max" +msgstr "" diff --git a/po/ko.po b/po/ko.po new file mode 100644 index 000000000..922d60416 --- /dev/null +++ b/po/ko.po @@ -0,0 +1,16157 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: furnace 0.6.3\n" +"Last-Translator: 희민Heemin\n" +"Language-Team: none\n" +"Language: ko\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: src/engine/sysDef.cpp:428 src/engine/sysDef.cpp:441 +msgid "20xx: Set channel mode (bit 0: square; bit 1: noise; bit 2: envelope)" +msgstr "20xx: 채널 모드 설정 (비트 0: 사각파; 비트 1: 노이즈; 비트 2: 엔벨로프" + +#: src/engine/sysDef.cpp:429 +msgid "21xx: Set noise frequency (0 to 1F)" +msgstr "21xx: 노이즈 주파수 설정 (0 에서 1F)" + +#: src/engine/sysDef.cpp:430 src/engine/sysDef.cpp:443 +msgid "22xy: Set envelope mode (x: shape, y: enable for this channel)" +msgstr "22xy: 엔벨로프 모드 설정 (x: 모양, y: 해당 채널에 활성화)" + +#: src/engine/sysDef.cpp:431 src/engine/sysDef.cpp:444 +msgid "23xx: Set envelope period low byte" +msgstr "23xx: 엔벨로프 PERIOD LOW 바이트 설정" + +#: src/engine/sysDef.cpp:432 src/engine/sysDef.cpp:445 +msgid "24xx: Set envelope period high byte" +msgstr "24xx: 엔벨로프 PERIOD HIGH 바이트 설정" + +#: src/engine/sysDef.cpp:433 src/engine/sysDef.cpp:446 +#: src/engine/sysDef.cpp:1599 +msgid "25xx: Envelope slide up" +msgstr "25xx: 엔벨로프 슬라이드 업" + +#: src/engine/sysDef.cpp:434 src/engine/sysDef.cpp:447 +#: src/engine/sysDef.cpp:1600 +msgid "26xx: Envelope slide down" +msgstr "26xx: 엔벨로프 슬라이드 다운" + +#: src/engine/sysDef.cpp:435 src/engine/sysDef.cpp:448 +#: src/engine/sysDef.cpp:1601 +msgid "29xy: Set auto-envelope (x: numerator; y: denominator)" +msgstr "29xy: 자동 엔벨로프 설정 (x: 분자값; y: 분모값)" + +#: src/engine/sysDef.cpp:436 src/engine/sysDef.cpp:449 +msgid "2Exx: Write to I/O port A" +msgstr "2Exx: I/O포트 A에 기록" + +#: src/engine/sysDef.cpp:437 src/engine/sysDef.cpp:450 +msgid "2Fxx: Write to I/O port B" +msgstr "2Fxx: I/O포트 B에 기록" + +#: src/engine/sysDef.cpp:442 +msgid "21xx: Set noise frequency (0 to FF)" +msgstr "21xx: 노이즈 주파수 설정 (0 에서 FF)" + +#: src/engine/sysDef.cpp:451 +msgid "12xx: Set duty cycle (0 to 8)" +msgstr "12xx: 듀티비 설정 (0 에서 8)" + +#: src/engine/sysDef.cpp:453 +msgid "27xx: Set noise AND mask" +msgstr "27xx: 노이즈 AND 마스크 설정" + +#: src/engine/sysDef.cpp:454 +msgid "28xx: Set noise OR mask" +msgstr "28xx: 노이즈 OR 마스크 설정" + +#: src/engine/sysDef.cpp:455 +#, fuzzy +msgid "" +"2Cxy: Automatic noise frequency (x: mode (0: disable, 1: freq, 2: freq + OR " +"mask); y: offset)" +msgstr "" +"2Cxy: 자동 노이즈 주파수 (x: 모드 (0: 비활성화, 1: 주파수, 2: 주파수 + OR 마" +"스크); y: 오프셋" + +#: src/engine/sysDef.cpp:456 +msgid "2Dxx: NOT TO BE EMPLOYED BY THE COMPOSER" +msgstr "2Dxx: 사용되지 않는 이펙트" + +#: src/engine/sysDef.cpp:460 +msgid "30xx: Toggle hard envelope reset on new notes" +msgstr "30xx: 새 노트에ㅅ 하드 엔벨로프 재설정 토글" + +#: src/engine/sysDef.cpp:465 +msgid "18xx: Toggle extended channel 3 mode" +msgstr "18xx: 확장 채널 3 모드 토글" + +#: src/engine/sysDef.cpp:470 src/engine/sysDef.cpp:766 +#: src/engine/sysDef.cpp:1025 src/engine/sysDef.cpp:1272 +#: src/engine/sysDef.cpp:1593 +msgid "17xx: Toggle PCM mode (LEGACY)" +msgstr "17xx: PCM 모드 토글 (레거시)" + +#: src/engine/sysDef.cpp:471 src/engine/sysDef.cpp:1653 +#: src/engine/sysDef.cpp:1963 +msgid "DFxx: Set sample playback direction (0: normal; 1: reverse)" +msgstr "DFxx: 샘플 재생 위치 설정 (0: 정재생; 1: 역재생)" + +#: src/engine/sysDef.cpp:476 +msgid "18xx: Toggle drums mode (1: enabled; 0: disabled)" +msgstr "18xx: 드럼 모드 토글 (1: 활성화; 0: 비활성화)" + +#: src/engine/sysDef.cpp:480 src/engine/sysDef.cpp:554 +#: src/engine/sysDef.cpp:575 +msgid "11xx: Set feedback (0 to 7)" +msgstr "11xx: 되먹임 설정 (0 에서 7)" + +#: src/engine/sysDef.cpp:481 +msgid "12xx: Set level of operator 1 (0 highest, 7F lowest)" +msgstr "12xx: 오퍼레이터 1 레벨 설정 (최상값 0, 최저값 7F)" + +#: src/engine/sysDef.cpp:482 +msgid "13xx: Set level of operator 2 (0 highest, 7F lowest)" +msgstr "13xx: 오퍼레이터 2 레벨 설정 (최상값 0, 최저값 7F)" + +#: src/engine/sysDef.cpp:483 +msgid "14xx: Set level of operator 3 (0 highest, 7F lowest)" +msgstr "14xx: 오퍼레이터 3 레벨 설정 (최상값 0, 최저값 7F)" + +#: src/engine/sysDef.cpp:484 +msgid "15xx: Set level of operator 4 (0 highest, 7F lowest)" +msgstr "15xx: 오퍼레이터 4 레벨 설정 (최상값 0, 최저값 7F)" + +#: src/engine/sysDef.cpp:485 src/engine/sysDef.cpp:580 +#: src/engine/sysDef.cpp:635 +msgid "16xy: Set operator multiplier (x: operator from 1 to 4; y: multiplier)" +msgstr "16xy: 오퍼레이터 승수 설정 (x: 오퍼레이터 1 에서 4; y: 승수)" + +#: src/engine/sysDef.cpp:486 +msgid "19xx: Set attack of all operators (0 to 1F)" +msgstr "19xx: 모든 오퍼레이터에 대해 ATTACK 값 설정 (0 에서 1F)" + +#: src/engine/sysDef.cpp:487 +msgid "1Axx: Set attack of operator 1 (0 to 1F)" +msgstr "1Axx: 오퍼레이터 1에 대해 ATTACK 값 설정 (0 에서 1F)" + +#: src/engine/sysDef.cpp:488 +msgid "1Bxx: Set attack of operator 2 (0 to 1F)" +msgstr "1Bxx: 오퍼레이터 2에 대해 ATTACK 값 설정 (0 에서 1F)" + +#: src/engine/sysDef.cpp:489 +msgid "1Cxx: Set attack of operator 3 (0 to 1F)" +msgstr "1Cxx: 오퍼레이터 3에 대해 ATTACK 값 설정 (0 에서 1F)" + +#: src/engine/sysDef.cpp:490 +msgid "1Dxx: Set attack of operator 4 (0 to 1F)" +msgstr "1Dxx: 오퍼레이터 4에 대해 ATTACK 값 설정 (0 에서 1F)" + +#: src/engine/sysDef.cpp:491 src/engine/sysDef.cpp:588 +#: src/engine/sysDef.cpp:656 +msgid "50xy: Set AM (x: operator from 1 to 4 (0 for all ops); y: AM)" +msgstr "50xy: AM 설정 (x: 오퍼레이터 1 에서 4 (0 = 모두 선택); y: AM)" + +#: src/engine/sysDef.cpp:492 src/engine/sysDef.cpp:589 +#: src/engine/sysDef.cpp:657 +msgid "" +"51xy: Set sustain level (x: operator from 1 to 4 (0 for all ops); y: sustain)" +msgstr "" +"51xy: SUSTAIN 레벨 설정 (x: 오퍼레이터 1 에서 4 (0 = 모두 선택); y: SUSTAIN)" + +#: src/engine/sysDef.cpp:493 src/engine/sysDef.cpp:590 +#: src/engine/sysDef.cpp:658 +msgid "52xy: Set release (x: operator from 1 to 4 (0 for all ops); y: release)" +msgstr "" +"52xy: RELEASE 값 설정 (x: 오퍼레이터 1 에서 4 (0 = 모두 선택); y: RELEASE)" + +#: src/engine/sysDef.cpp:494 +msgid "" +"53xy: Set detune (x: operator from 1 to 4 (0 for all ops); y: detune where 3 " +"is center)" +msgstr "" +"53xy: 디튠 설정 (x: 오퍼레이터 1 에서 4 (0 = 모두 선택); y: 디튠 값, 3 = 중" +"앙)" + +#: src/engine/sysDef.cpp:495 src/engine/sysDef.cpp:592 +#: src/engine/sysDef.cpp:660 +msgid "" +"54xy: Set envelope scale (x: operator from 1 to 4 (0 for all ops); y: scale " +"from 0 to 3)" +msgstr "" +"54xy: 엔벨로프 스케일 설정 (x: 오퍼레이터 1 에서 4 (0 = 모두 선택); y: 스케" +"일)" + +#: src/engine/sysDef.cpp:496 +msgid "56xx: Set decay of all operators (0 to 1F)" +msgstr "56xx: 모든 오퍼레이터에 대해 DECAY 값 설정 (0 에서 1F)" + +#: src/engine/sysDef.cpp:497 +msgid "57xx: Set decay of operator 1 (0 to 1F)" +msgstr "57xx: 오퍼레이터 1에 대해 DECAY 값 설정 (0 에서 1F)" + +#: src/engine/sysDef.cpp:498 +msgid "58xx: Set decay of operator 2 (0 to 1F)" +msgstr "58xx: 오퍼레이터 2에 대해 DECAY 값 설정 (0 에서 1F)" + +#: src/engine/sysDef.cpp:499 +msgid "59xx: Set decay of operator 3 (0 to 1F)" +msgstr "59xx: 오퍼레이터 3에 대해 DECAY 값 설정 (0 에서 1F)" + +#: src/engine/sysDef.cpp:500 +msgid "5Axx: Set decay of operator 4 (0 to 1F)" +msgstr "5Axx: 오퍼레이터 4에 대해 DECAY 값 설정 (0 에서 1F)" + +#: src/engine/sysDef.cpp:501 +msgid "5Bxx: Set decay 2 of all operators (0 to 1F)" +msgstr "5Bxx: 모든 오퍼레이터에 대해 DECAY 2 값 설정 (0 에서 1F)" + +#: src/engine/sysDef.cpp:502 +msgid "5Cxx: Set decay 2 of operator 1 (0 to 1F)" +msgstr "5Cxx: 오퍼레이터 1에 대해 DECAY 2 값 설정 (0 에서 1F)" + +#: src/engine/sysDef.cpp:503 +msgid "5Dxx: Set decay 2 of operator 2 (0 to 1F)" +msgstr "5Dxx: 오퍼레이터 2에 대해 DECAY 2 값 설정 (0 에서 1F)" + +#: src/engine/sysDef.cpp:504 +msgid "5Exx: Set decay 2 of operator 3 (0 to 1F)" +msgstr "5Exx: 오퍼레이터 3에 대해 DECAY 2 값 설정 (0 에서 1F)" + +#: src/engine/sysDef.cpp:505 +msgid "5Fxx: Set decay 2 of operator 4 (0 to 1F)" +msgstr "5Fxx: 오퍼레이터 4에 대해 DECAY 2 값 설정 (0 에서 1F)" + +#: src/engine/sysDef.cpp:510 +msgid "10xx: Set noise frequency (xx: value; 0 disables noise)" +msgstr "10xx: 노이즈 주파수 설정 (xx: 값; 0으로 노이즈 비활성화)" + +#: src/engine/sysDef.cpp:511 +msgid "17xx: Set LFO speed" +msgstr "17xx: LFO 속도 설정" + +#: src/engine/sysDef.cpp:512 +msgid "18xx: Set LFO waveform (0 saw, 1 square, 2 triangle, 3 noise)" +msgstr "18xx: LFO 파형 설정 (0 = 톱니파, 1 = 사각파, 2 = 삼각파, 3 = 노이즈)" + +#: src/engine/sysDef.cpp:513 +msgid "1Exx: Set AM depth (0 to 7F)" +msgstr "1Exx: AM 깊이 설정 (0 에서 7F)" + +#: src/engine/sysDef.cpp:514 +msgid "1Fxx: Set PM depth (0 to 7F)" +msgstr "1Fxx: PM 깊이 설정 (0 에서 7F)" + +#: src/engine/sysDef.cpp:515 +msgid "" +"55xy: Set detune 2 (x: operator from 1 to 4 (0 for all ops); y: detune from " +"0 to 3)" +msgstr "" +"55xy: 디튠 2 설정 (x: 오퍼레이터 1 에서 4 (0 = 모두 선택); y: 디튠 값, 0 에" +"서 3)" + +#: src/engine/sysDef.cpp:520 +msgid "24xx: Set LFO 2 speed" +msgstr "24xx LFO 2 속도 설정" + +#: src/engine/sysDef.cpp:521 +msgid "25xx: Set LFO 2 waveform (0 saw, 1 square, 2 triangle, 3 noise)" +msgstr "25xx: LFO 2 파형 설정 (0 = 톱니파, 1 = 사각파, 2 = 삼각파, 3 = 노이즈)" + +#: src/engine/sysDef.cpp:522 +msgid "26xx: Set AM 2 depth (0 to 7F)" +msgstr "26xx: AM 2 깊이 설정 (0 에서 7F)" + +#: src/engine/sysDef.cpp:523 +msgid "27xx: Set PM 2 depth (0 to 7F)" +msgstr "27xx: PM 2 깊이 설정 (0 에서 7F)" + +#: src/engine/sysDef.cpp:524 +msgid "" +"28xy: Set reverb (x: operator from 1 to 4 (0 for all ops); y: reverb from 0 " +"to 7)" +msgstr "" +"28xy: 리버브 설정 (x: 오퍼레이터 1 에서 4 (0 = 모두 선택); y: 리버브 값, 0 에" +"서 7)" + +#: src/engine/sysDef.cpp:525 src/engine/sysDef.cpp:650 +msgid "" +"2Axy: Set waveform (x: operator from 1 to 4 (0 for all ops); y: waveform " +"from 0 to 7)" +msgstr "" +"2Axy 파형 설정 (x: 오퍼레이터 1 에서 4 (0 = 모두 선택); y: 파형, 0 에서 7)" + +#: src/engine/sysDef.cpp:526 +msgid "" +"2Bxy: Set envelope generator shift (x: operator from 1 to 4 (0 for all ops); " +"y: shift from 0 to 3)" +msgstr "" +"2Bxy: 엔벨로프 생성기 SHIFT 설정 (x: 오퍼레이터 1 에서 4 (0 = 모두 선택); y: " +"SHIFT 값, 0 에서 3)" + +#: src/engine/sysDef.cpp:527 +msgid "" +"2Cxy: Set fine multiplier (x: operator from 1 to 4 (0 for all ops); y: fine)" +msgstr "" +"2Cxy: FINE 승수 설정 (x: 오퍼레이터 1 에서 4 (0 = 모두 선택); y: FINE 값)" + +#: src/engine/sysDef.cpp:530 +msgid "" +"3xyy: Set fixed frequency of operator 1 (x: octave from 0 to 7; y: frequency)" +msgstr "3xyy: 오퍼레이터 1의 고정 주파수 설정 (x: 옥타브, 0 에서 7; y: 주파수)" + +#: src/engine/sysDef.cpp:531 +msgid "" +"3xyy: Set fixed frequency of operator 2 (x: octave from 8 to F; y: frequency)" +msgstr "3xyy: 오퍼레이터 2의 고정 주파수 설정 (x: 옥타브, 8 에서 F; y: 주파수)" + +#: src/engine/sysDef.cpp:532 +msgid "" +"4xyy: Set fixed frequency of operator 3 (x: octave from 0 to 7; y: frequency)" +msgstr "4xyy: 오퍼레이터 3의 고정 주파수 설정 (x: 옥타브, 0 에서 7; y: 주파수)" + +#: src/engine/sysDef.cpp:533 +msgid "" +"4xyy: Set fixed frequency of operator 4 (x: octave from 8 to F; y: frequency)" +msgstr "4xyy: 오퍼레이터 4의 고정 주파수 설정 (x: 옥타브, 8 에서 F; y: 주파수)" + +#: src/engine/sysDef.cpp:540 +msgid "10xy: Setup LFO (x: enable; y: speed)" +msgstr "10xy: LFO 설정 (x: 활성화; y: 속도)" + +#: src/engine/sysDef.cpp:541 +msgid "" +"55xy: Set SSG envelope (x: operator from 1 to 4 (0 for all ops); y: 0-7 on, " +"8 off)" +msgstr "" +"55xy: SSG 엔벨로프 설정 (x: 오퍼레이터 1 에서 4 (0 = 모두 선택); y: 0 에서 7 " +"켜기, 8 끄기)" + +#: src/engine/sysDef.cpp:549 +msgid "1Fxx: Set ADPCM-A global volume (0 to 3F)" +msgstr "1Fxx: ADPCM-A 전체 볼륨 설정 (0 에서 3F)" + +#: src/engine/sysDef.cpp:553 +msgid "10xx: Set patch (0 to F)" +msgstr "10xx: 패치 설정 (0 에서 F)" + +#: src/engine/sysDef.cpp:555 src/engine/sysDef.cpp:576 +#: src/engine/sysDef.cpp:631 +msgid "12xx: Set level of operator 1 (0 highest, 3F lowest)" +msgstr "12xx: 오퍼레이터 1의 레벨 설정 (0 최상값, 3F 최저값)" + +#: src/engine/sysDef.cpp:556 src/engine/sysDef.cpp:577 +#: src/engine/sysDef.cpp:632 +msgid "13xx: Set level of operator 2 (0 highest, 3F lowest)" +msgstr "13xx: 오퍼레이터 2의 레벨 설정 (0 최상값, 3F 최저값)" + +#: src/engine/sysDef.cpp:557 +msgid "16xy: Set operator multiplier (x: operator from 1 to 2; y: multiplier)" +msgstr "16xy: 오퍼레이터 승수 설정 (x: 오퍼레이터 1에서 2; y: 승수)" + +#: src/engine/sysDef.cpp:558 src/engine/sysDef.cpp:582 +#: src/engine/sysDef.cpp:637 +msgid "19xx: Set attack of all operators (0 to F)" +msgstr "19xx: 모든 오퍼레이터에 대해 ATTACK 값 설정 (0 에서 F)" + +#: src/engine/sysDef.cpp:559 src/engine/sysDef.cpp:583 +#: src/engine/sysDef.cpp:638 +msgid "1Axx: Set attack of operator 1 (0 to F)" +msgstr "1Axx: 오퍼레이터 1의 ATTACK 값 설정 (0 에서 F)" + +#: src/engine/sysDef.cpp:560 src/engine/sysDef.cpp:584 +#: src/engine/sysDef.cpp:639 +msgid "1Bxx: Set attack of operator 2 (0 to F)" +msgstr "1Bxx: 오퍼레이터 2의 ATTACK 값 설정 (0 에서 F)" + +#: src/engine/sysDef.cpp:561 +msgid "50xy: Set AM (x: operator from 1 to 2 (0 for all ops); y: AM)" +msgstr "50xy: AM 설정 (x: 오퍼레이터 1 에서 2 (0 = 모두 선택); y: AM\t)" + +#: src/engine/sysDef.cpp:562 +msgid "" +"51xy: Set sustain level (x: operator from 1 to 2 (0 for all ops); y: sustain)" +msgstr "" +"51xy: SUSTAIN 레벨 설정 (x: 오퍼레이터 1 에서 2 (0 = 모두 선택); y: SUSTAIN " +"값)" + +#: src/engine/sysDef.cpp:563 +msgid "52xy: Set release (x: operator from 1 to 2 (0 for all ops); y: release)" +msgstr "" +"52xy: RELEASE 설정 (x: 오퍼레이터 1 에서 2 (0 = 모두 선택); y: RELEASE 값)" + +#: src/engine/sysDef.cpp:564 +msgid "53xy: Set vibrato (x: operator from 1 to 2 (0 for all ops); y: enabled)" +msgstr "" +"53xy: 비브라토 설정 (x: 오퍼레이터 1 에서 2 (0 = 모두 선택); y: 활성화)" + +#: src/engine/sysDef.cpp:565 +msgid "" +"54xy: Set envelope scale (x: operator from 1 to 2 (0 for all ops); y: scale " +"from 0 to 3)" +msgstr "" +"54xy: 엔벨로프 스케일 설정 (x: 오퍼레이터 1 에서 2 (0 = 모두 선택); y: 스케" +"일)" + +#: src/engine/sysDef.cpp:566 +msgid "" +"55xy: Set envelope sustain (x: operator from 1 to 2 (0 for all ops); y: " +"enabled)" +msgstr "" +"55xy: 엔벨로프 SUSTAIN 설정 (x: 오퍼레이터 1 에서 2 (0 = 모두 선택); y: 활성" +"화)" + +#: src/engine/sysDef.cpp:567 src/engine/sysDef.cpp:594 +#: src/engine/sysDef.cpp:662 +msgid "56xx: Set decay of all operators (0 to F)" +msgstr "56xx: 모든 오퍼레이터에 대해 DECAY 설정 (0 에서 F)" + +#: src/engine/sysDef.cpp:568 src/engine/sysDef.cpp:595 +#: src/engine/sysDef.cpp:663 +msgid "57xx: Set decay of operator 1 (0 to F)" +msgstr "57xx: 오퍼레이터 1의 DECAY 설정 (0 에서 F)" + +#: src/engine/sysDef.cpp:569 src/engine/sysDef.cpp:596 +#: src/engine/sysDef.cpp:664 +msgid "58xx: Set decay of operator 2 (0 to F)" +msgstr "58xx: 오퍼레이터 2의 DECAY 설정 (0 에서 F)" + +#: src/engine/sysDef.cpp:570 +msgid "" +"5Bxy: Set whether key will scale envelope (x: operator from 1 to 2 (0 for " +"all ops); y: enabled)" +msgstr "" +"5Bxy: 키가 엔벨로프를 확장할지 여부 (x: 오퍼레이터 1 에서 2 (0 = 모두 선택); " +"y: 활성화)" + +#: src/engine/sysDef.cpp:574 +msgid "10xx: Set global AM depth (0: 1dB, 1: 4.8dB)" +msgstr "10xx: 전체 AM 깊이 설정 (0: 1dB, 1: 4.8dB)" + +#: src/engine/sysDef.cpp:578 src/engine/sysDef.cpp:633 +msgid "14xx: Set level of operator 3 (0 highest, 3F lowest)" +msgstr "14xx: 오퍼레이터 3의 레벨 설정 (0 최상값, 3F 최저값)" + +#: src/engine/sysDef.cpp:579 src/engine/sysDef.cpp:634 +msgid "15xx: Set level of operator 4 (0 highest, 3F lowest)" +msgstr "15xx: 오퍼레이터 4의 레벨 설정 (0 최상값, 3F 최저값)" + +#: src/engine/sysDef.cpp:581 +msgid "17xx: Set global vibrato depth (0: normal, 1: double)" +msgstr "17xx: 전체 비브라토 깊이 설정 (0: 노멀, 1: 더블)" + +#: src/engine/sysDef.cpp:585 src/engine/sysDef.cpp:640 +msgid "1Cxx: Set attack of operator 3 (0 to F)" +msgstr "1Cxx: 오퍼레이터 3의 ATTACK 설정 (0 에서 F)" + +#: src/engine/sysDef.cpp:586 src/engine/sysDef.cpp:641 +msgid "1Dxx: Set attack of operator 4 (0 to F)" +msgstr "1Dxx: 오퍼레이터 4의 ATTACK 설정 (0 에서 F)" + +#: src/engine/sysDef.cpp:587 +msgid "" +"2Axy: Set waveform (x: operator from 1 to 4 (0 for all ops); y: waveform " +"from 0 to 3 in OPL2 and 0 to 7 in OPL3)" +msgstr "" +"2Axy: 파형 설정 (x: 오퍼레이터 1 에서 4 (0 = 모두 선택); y; 파형 (0 에서 3은 " +"OPL2, 0에서 7은 OPL3)" + +#: src/engine/sysDef.cpp:591 src/engine/sysDef.cpp:659 +msgid "53xy: Set vibrato (x: operator from 1 to 4 (0 for all ops); y: enabled)" +msgstr "" +"53xy: 비브라토 설정 (x: 오퍼레이터 1 에서 4 (0 = 모두 선택); y: 활성화)" + +#: src/engine/sysDef.cpp:593 src/engine/sysDef.cpp:661 +msgid "" +"55xy: Set envelope sustain (x: operator from 1 to 4 (0 for all ops); y: " +"enabled)" +msgstr "" +"55xy: 엔벨로프 SUSTAIN 설정 (x: 오퍼레이터 1 에서 4 (0 = 모두 선택); y: 활성" +"화)" + +#: src/engine/sysDef.cpp:597 src/engine/sysDef.cpp:665 +msgid "59xx: Set decay of operator 3 (0 to F)" +msgstr "59xx: 오퍼레이터 3의 DECAY 설정 (0 에서 F)" + +#: src/engine/sysDef.cpp:598 src/engine/sysDef.cpp:666 +msgid "5Axx: Set decay of operator 4 (0 to F)" +msgstr "5Axx: 오퍼레이터 4의 DECAY 설정 (0 에서 F)" + +#: src/engine/sysDef.cpp:599 src/engine/sysDef.cpp:667 +msgid "" +"5Bxy: Set whether key will scale envelope (x: operator from 1 to 4 (0 for " +"all ops); y: enabled)" +msgstr "" +"5Bxy: 키가 엔벨로프를 확장할지 여부 (x: 오퍼레이터 1 에서 4 (0 = 모두 선택); " +"y: 활성화)" + +#: src/engine/sysDef.cpp:603 src/engine/sysDef.cpp:680 +msgid "" +"10xx: Set waveform (bit 0: triangle; bit 1: saw; bit 2: pulse; bit 3: noise)" +msgstr "" +"10xx: 파형 설정 (비트 0: 삼각파; 비트 1: 톱니파; 비트 2: 펄스; 비트 3: 노이" +"즈)" + +#: src/engine/sysDef.cpp:604 +msgid "11xx: Set coarse cutoff (not recommended; use 4xxx instead)" +msgstr "" +"11xx: COARSE 컷오프 설정 (권장하지 않음; 4xxx 이펙트를 대신 사용하세요)" + +#: src/engine/sysDef.cpp:605 +msgid "12xx: Set coarse pulse width (not recommended; use 3xxx instead)" +msgstr "" +"12xx: COARSE 펄스폭 설정 (권장하지 않음; 3xxx 이펙트를 대신 사용하세요)" + +#: src/engine/sysDef.cpp:606 +msgid "13xx: Set resonance (0 to F)" +msgstr "13xx: 잔향 설정 (0 에서 F)" + +#: src/engine/sysDef.cpp:607 +msgid "" +"14xx: Set filter mode (bit 0: low pass; bit 1: band pass; bit 2: high pass)" +msgstr "" +"14xx: 필터 모드 설정 (비트 0: 로우 패스; 비트 1: 밴드 패스; 비트 2: 하이 패" +"스)" + +#: src/engine/sysDef.cpp:608 +msgid "15xx: Set envelope reset time" +msgstr "15xx: 엔벨로프 재설정 시간 설정" + +#: src/engine/sysDef.cpp:609 +msgid "1Axx: Disable envelope reset for this channel (1 disables; 0 enables)" +msgstr "1Axx: 이 채널에 대해 엔벨로프 재설정 비활성화 (1 비활성화; 0 활성화)" + +#: src/engine/sysDef.cpp:610 +msgid "1Bxy: Reset cutoff (x: on new note; y: now)" +msgstr "1Bxy: 컷오프 재설정 (x: 새 노트에; y: 지금)" + +#: src/engine/sysDef.cpp:611 +msgid "1Cxy: Reset pulse width (x: on new note; y: now)" +msgstr "1Cxy: 펄스폭 재설정 (x: 새 노트에; y: 지금)" + +#: src/engine/sysDef.cpp:612 +msgid "1Exy: Change other parameters (LEGACY)" +msgstr "1Exy: 다른 매개변수 변경 (레거시)" + +#: src/engine/sysDef.cpp:613 +msgid "20xy: Set attack/decay (x: attack; y: decay)" +msgstr "20xy: ATTACK/DECAY 설정 (x: ATTACK; y: DECAY)" + +#: src/engine/sysDef.cpp:614 +msgid "21xy: Set sustain/release (x: sustain; y: release)" +msgstr "21xy: SUSTAIN/RELEASE 설정 (x: SUSTAIN; y: RELEASE)" + +#: src/engine/sysDef.cpp:616 src/engine/sysDef.cpp:688 +msgid "3xxx: Set pulse width (0 to FFF)" +msgstr "3xxx: 펄스폭 설정 (0 에서 FFF)" + +#: src/engine/sysDef.cpp:617 +msgid "4xxx: Set cutoff (0 to 7FF)" +msgstr "4xxx: 컷오프 설정 (0 에서 7FF)" + +#: src/engine/sysDef.cpp:622 src/engine/sysDef.cpp:745 +#: src/engine/sysDef.cpp:762 src/engine/sysDef.cpp:1000 +#: src/engine/sysDef.cpp:1050 src/engine/sysDef.cpp:1268 +#: src/engine/sysDef.cpp:1320 src/engine/sysDef.cpp:1590 +#: src/engine/sysDef.cpp:1788 src/engine/sysDef.cpp:1792 +#: src/engine/sysDef.cpp:1893 src/engine/sysDef.cpp:2063 +#: src/engine/sysDef.cpp:2077 +msgid "10xx: Set waveform" +msgstr "10xx: 파형 설정" + +#: src/engine/sysDef.cpp:626 +msgid "20xx: Set PCM frequency" +msgstr "20xx: PCM 주파수 설정" + +#: src/engine/sysDef.cpp:630 +msgid "" +"10xy: Set AM depth (x: operator from 1 to 4 (0 for all ops); y: depth (0: " +"1dB, 1: 4.8dB))" +msgstr "" +"10xy: AM 깊이 설정 (x: 오퍼레이터 1 에서 4 (0 = 모두 선택); y: 깊이 (0: 1db, " +"1: 4.8db)" + +#: src/engine/sysDef.cpp:636 +msgid "" +"17xy: Set vibrato depth (x: operator from 1 to 4 (0 for all ops); y: depth " +"(0: normal, 1: double))" +msgstr "" +"17xy: 비브라토 깊이 설정 (x: 오퍼레이터 1 에서 4 (0 = 모두 선택); y: 깊이 " +"(0: 노멀, 1: 더블)" + +#: src/engine/sysDef.cpp:642 +msgid "20xy: Set panning of operator 1 (x: left; y: right)" +msgstr "20xy: 오퍼레이터 1의 PANNING 설정 (x: 좌; y: 우)" + +#: src/engine/sysDef.cpp:643 +msgid "21xy: Set panning of operator 2 (x: left; y: right)" +msgstr "21xy: 오퍼레이터 2의 PANNING 설정 (x: 좌; y: 우)" + +#: src/engine/sysDef.cpp:644 +msgid "22xy: Set panning of operator 3 (x: left; y: right)" +msgstr "22xy: 오퍼레이터 3의 PANNING 설정 (x: 좌; y: 우)" + +#: src/engine/sysDef.cpp:645 +msgid "23xy: Set panning of operator 4 (x: left; y: right)" +msgstr "23xy: 오퍼레이터 4의 PANNING 설정 (x: 좌; y: 우)" + +#: src/engine/sysDef.cpp:646 +msgid "" +"24xy: Set output level register (x: operator from 1 to 4 (0 for all ops); y: " +"level from 0 to 7)" +msgstr "" +"24xy: 출력 레벨 레지스터 설정 (x: 오퍼레이터 1 에서 4 (0 = 모두 선택); y: 레" +"벨 0 에서 7)" + +#: src/engine/sysDef.cpp:647 +msgid "" +"25xy: Set modulation input level (x: operator from 1 to 4 (0 for all ops); " +"y: level from 0 to 7)" +msgstr "" +"25xy: 출력 레벨 레지스터 설정 (x: 오퍼레이터 1 에서 4 (0 = 모두 선택); y: 레" +"벨 0 에서 7)" + +#: src/engine/sysDef.cpp:648 +msgid "" +"26xy: Set envelope delay (x: operator from 1 to 4 (0 for all ops); y: delay " +"from 0 to 7)" +msgstr "" +"26xy: 엔벨로프 지연 시간 설정 (x: 오퍼레이터 1 에서 4 (0 = 모두 선택); y: 레" +"벨 0 에서 7)" + +#: src/engine/sysDef.cpp:649 +msgid "27xx: Set noise mode for operator 4 (x: mode from 0 to 3)" +msgstr "27xx: 오퍼레이터 4에 대해 노이즈 모드 설정 (x: 모드 0 에서 3)" + +#: src/engine/sysDef.cpp:651 +msgid "" +"2Fxy: Set fixed frequency block (x: operator from 1 to 4; y: octave from 0 " +"to 7)" +msgstr "" +"2Fxy: 고정 주파수 블럭 설정 (x: 오퍼레이터 1 에서 4; y: 옥타브 0 에서 7)" + +#: src/engine/sysDef.cpp:652 +msgid "40xx: Set detune of operator 1 (80: center)" +msgstr "40xx: 오퍼레이터 1의 디튠 설정 (80: 중앙)" + +#: src/engine/sysDef.cpp:653 +msgid "41xx: Set detune of operator 2 (80: center)" +msgstr "41xx: 오퍼레이터 2의 디튠 설정 (80: 중앙)" + +#: src/engine/sysDef.cpp:654 +msgid "42xx: Set detune of operator 3 (80: center)" +msgstr "42xx: 오퍼레이터 3의 디튠 설정 (80: 중앙)" + +#: src/engine/sysDef.cpp:655 +msgid "43xx: Set detune of operator 4 (80: center)" +msgstr "43xx: 오퍼레이터 4의 디튠 설정 (80: 중앙)" + +#: src/engine/sysDef.cpp:670 +msgid "" +"3xyy: Set fixed frequency F-num of operator 1 (x: high 2 bits from 0 to 3; " +"y: low 8 bits of F-num)" +msgstr "" +"3xyy: 오퍼레이터 1의 고정 주파수 F-num 설정 (x: 상 2비트 값 0 에서 3; y: F-" +"num 8비트 값)" + +#: src/engine/sysDef.cpp:671 +msgid "" +"3xyy: Set fixed frequency F-num of operator 2 (x: high 2 bits from 4 to 7; " +"y: low 8 bits of F-num)" +msgstr "" +"3xyy: 오퍼레이터 2의 고정 주파수 F-num 설정 (x: 상 2비트 값 4 에서 7; y: F-" +"num 8비트 값)" + +#: src/engine/sysDef.cpp:672 +msgid "" +"3xyy: Set fixed frequency F-num of operator 3 (x: high 2 bits from 8 to B; " +"y: low 8 bits of F-num)" +msgstr "" +"3xyy: 오퍼레이터 3의 고정 주파수 F-num 설정 (x: 상 2비트 값 8 에서 B; y: F-" +"num 8비트 값)" + +#: src/engine/sysDef.cpp:673 +msgid "" +"3xyy: Set fixed frequency F-num of operator 4 (x: high 2 bits from C to F; " +"y: low 8 bits of F-num)" +msgstr "" +"3xyy: 오퍼레이터 4의 고정 주파수 F-num 설정 (x: 상 2비트 값 C 에서 F; y: F-" +"num 8비트 값)" + +#: src/engine/sysDef.cpp:681 +msgid "11xx: Set resonance (0 to FF)" +msgstr "11xx: 잔향 설정 (0 에서 FF)" + +#: src/engine/sysDef.cpp:682 +msgid "" +"12xx: Set filter mode (bit 0: low pass; bit 1: band pass; bit 2: high pass)" +msgstr "" +"12xx: 필터 모드 설정 (비트 0: 로우 패스; 비트 1: 밴드 패스; 비트 2: 하이 패" +"스)" + +#: src/engine/sysDef.cpp:683 +msgid "13xx: Disable envelope reset for this channel (1 disables; 0 enables)" +msgstr "13xx: 이 채널에 대해 엔벨로프 재설정 비활성화 (1 비활성화; 0 활성화)" + +#: src/engine/sysDef.cpp:684 +msgid "14xy: Reset cutoff (x: on new note; y: now)" +msgstr "14xy: 컷오프 재설정 (x: 새 노트에; y: 지금)" + +#: src/engine/sysDef.cpp:685 +msgid "15xy: Reset pulse width (x: on new note; y: now)" +msgstr "15xy: 펄스폭 재설정 (x: 새 노트에; y: 지금)" + +#: src/engine/sysDef.cpp:686 +msgid "16xy: Change other parameters" +msgstr "16xy: 다른 매개변수 변경" + +#: src/engine/sysDef.cpp:689 src/engine/sysDef.cpp:1733 +msgid "4xxx: Set cutoff (0 to FFF)" +msgstr "컷오프 설정 (0 에서 FFF)" + +#: src/engine/sysDef.cpp:697 +msgid "Yamaha YMU759 (MA-2)" +msgstr "야마하 YMU759 (MA-2)" + +#: src/engine/sysDef.cpp:698 +msgid "" +"a chip which found its way inside mobile phones in the 2000's.\n" +"as proprietary as it is, it passed away after losing to MP3 in the mobile " +"hardware battle." +msgstr "" +"2000년대 휴대폰에서 발견되는 칩입니다.\n" +"독점적이지만, 모바일 하드웨어 전투에서 MP3 등장 후 없어졌습니다." + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:807 src/engine/sysDef.cpp:819 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:915 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1237 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1314 src/engine/sysDef.cpp:1356 +#: src/engine/sysDef.cpp:1396 src/engine/sysDef.cpp:1499 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1572 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1608 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1799 src/engine/sysDef.cpp:1810 +#: src/engine/sysDef.cpp:1821 src/engine/sysDef.cpp:1832 +#: src/engine/sysDef.cpp:1900 src/engine/sysDef.cpp:1910 +#: src/engine/sysDef.cpp:1920 src/engine/sysDef.cpp:1944 +#: src/engine/sysDef.cpp:1957 src/engine/sysDef.cpp:1970 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2037 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2122 +#: src/engine/sysDef.cpp:2138 src/engine/sysDef.cpp:2150 +msgid "Channel 1" +msgstr "채널 1" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:807 src/engine/sysDef.cpp:819 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:915 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1237 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1314 src/engine/sysDef.cpp:1356 +#: src/engine/sysDef.cpp:1396 src/engine/sysDef.cpp:1499 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1572 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1608 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1799 src/engine/sysDef.cpp:1810 +#: src/engine/sysDef.cpp:1821 src/engine/sysDef.cpp:1832 +#: src/engine/sysDef.cpp:1900 src/engine/sysDef.cpp:1910 +#: src/engine/sysDef.cpp:1920 src/engine/sysDef.cpp:1944 +#: src/engine/sysDef.cpp:1957 src/engine/sysDef.cpp:1970 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2037 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2122 +#: src/engine/sysDef.cpp:2138 src/engine/sysDef.cpp:2150 +msgid "Channel 2" +msgstr "채널 2" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:807 src/engine/sysDef.cpp:819 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1237 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1314 +#: src/engine/sysDef.cpp:1356 src/engine/sysDef.cpp:1396 +#: src/engine/sysDef.cpp:1499 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1572 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1799 src/engine/sysDef.cpp:1810 +#: src/engine/sysDef.cpp:1821 src/engine/sysDef.cpp:1832 +#: src/engine/sysDef.cpp:1910 src/engine/sysDef.cpp:1944 +#: src/engine/sysDef.cpp:1957 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2037 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +#: src/engine/sysDef.cpp:2122 src/engine/sysDef.cpp:2138 +#: src/engine/sysDef.cpp:2150 +msgid "Channel 3" +msgstr "채널 3" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1237 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1314 +#: src/engine/sysDef.cpp:1356 src/engine/sysDef.cpp:1396 +#: src/engine/sysDef.cpp:1499 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1572 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1910 +#: src/engine/sysDef.cpp:1944 src/engine/sysDef.cpp:1957 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +#: src/engine/sysDef.cpp:2122 src/engine/sysDef.cpp:2150 +msgid "Channel 4" +msgstr "채널 4" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1314 +#: src/engine/sysDef.cpp:1356 src/engine/sysDef.cpp:1396 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1572 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1705 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 5" +msgstr "채널 5" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1356 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 6" +msgstr "채널 6" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 7" +msgstr "채널 7" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 8" +msgstr "채널 8" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 9" +msgstr "채널 9" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 10" +msgstr "채널 10" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 11" +msgstr "채널 11" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 12" +msgstr "채널 12" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 13" +msgstr "채널 13" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 14" +msgstr "채널 14" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 15" +msgstr "채널 15" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 16" +msgstr "채널 16" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:700 +#: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1767 src/engine/sysDef.cpp:1888 +#: src/engine/sysDef.cpp:1944 src/engine/sysDef.cpp:1945 +#: src/gui/settings.cpp:4094 +msgid "PCM" +msgstr "PCM" + +#: src/engine/sysDef.cpp:706 +msgid "Sega Genesis/Mega Drive" +msgstr "세가 메가드라이브 / 세가 제네시스" + +#: src/engine/sysDef.cpp:712 +msgid "Sega Genesis Extended Channel 3" +msgstr "세가 메가드라이브 확장 채널 3" + +#: src/engine/sysDef.cpp:718 src/gui/sysConf.cpp:158 +msgid "TI SN76489" +msgstr "TI SN76489" + +#: src/engine/sysDef.cpp:719 +msgid "" +"a square/noise sound chip found on the Sega Master System, ColecoVision, " +"Tandy, TI's own 99/4A and a few other places." +msgstr "" +"세가 마스터 시스템, 콜레코비죤, 탠디, TI의 99/4A 등에 사용되는 사각파/노이즈 " +"사운드 칩입니다." + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 +msgid "Square 1" +msgstr "사각파 1" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 +msgid "Square 2" +msgstr "사각파 2" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 +msgid "Square 3" +msgstr "사각파 3" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:739 +#: src/engine/sysDef.cpp:773 src/engine/sysDef.cpp:955 +#: src/engine/sysDef.cpp:1314 src/engine/sysDef.cpp:1874 +#: src/engine/sysDef.cpp:1920 src/engine/sysDef.cpp:2037 +#: src/engine/sysDef.cpp:2100 src/gui/settings.cpp:4093 +#: src/gui/insEdit.cpp:6978 src/gui/insEdit.cpp:7129 src/gui/insEdit.cpp:7223 +#: src/gui/insEdit.cpp:7315 +msgid "Noise" +msgstr "노이즈" + +#: src/engine/sysDef.cpp:726 +msgid "20xy: Set noise mode (x: preset freq/ch3 freq; y: thin pulse/noise)" +msgstr "20xy: 노이즈 모드 설정 (x: preset freq/ch3 freq; y: thin 펄스/노이즈)" + +#: src/engine/sysDef.cpp:731 +msgid "Sega Master System + FM Expansion" +msgstr "세가 마스터 시스템 + FM 확장" + +#: src/engine/sysDef.cpp:737 src/gui/settings.cpp:4025 +msgid "Game Boy" +msgstr "게임보이" + +#: src/engine/sysDef.cpp:738 +msgid "the most popular portable game console of the era." +msgstr "그 시대의 가장 인기 있는 휴대용 게임기입니다." + +#: src/engine/sysDef.cpp:739 src/engine/sysDef.cpp:773 +#: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:2100 +msgid "Pulse 1" +msgstr "펄스 1" + +#: src/engine/sysDef.cpp:739 src/engine/sysDef.cpp:773 +#: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:2100 +msgid "Pulse 2" +msgstr "펄스 2" + +#: src/engine/sysDef.cpp:739 src/gui/settings.cpp:3930 +#: src/gui/guiConst.cpp:1395 src/gui/insEdit.cpp:6652 +msgid "Wavetable" +msgstr "웨이브테이블" + +#: src/engine/sysDef.cpp:746 +msgid "11xx: Set noise length (0: long; 1: short)" +msgstr "11xx: 노이즈 길이 설정 (0: 긴; 1: 짧은)" + +#: src/engine/sysDef.cpp:747 +msgid "12xx: Set duty cycle (0 to 3)" +msgstr "12xx: 듀티비 설정 (0 에서 3)" + +#: src/engine/sysDef.cpp:748 +msgid "13xy: Setup sweep (x: time; y: shift)" +msgstr "13xy: SWEEP 설정 (x: 시간; y: SHIFT)" + +#: src/engine/sysDef.cpp:749 +msgid "14xx: Set sweep direction (0: up; 1: down)" +msgstr "14xx: SWEEP 위치 설정 (0: 상; 1: 하)" + +#: src/engine/sysDef.cpp:754 +msgid "PC Engine/TurboGrafx-16" +msgstr "PC 엔진/터보그래픽스-16" + +#: src/engine/sysDef.cpp:755 +msgid "an '80s game console with a wavetable sound chip, popular in Japan." +msgstr "" +"웨이브테이블 사운드 칩을 가지고 있는 80년대 게임 콘솔, 일본에서 인기 있습니" +"다." + +#: src/engine/sysDef.cpp:763 src/engine/sysDef.cpp:1001 +#: src/engine/sysDef.cpp:1793 +msgid "11xx: Toggle noise mode" +msgstr "11xx: 토글 노이즈 모드" + +#: src/engine/sysDef.cpp:764 +msgid "12xx: Setup LFO (0: disabled; 1: 1x depth; 2: 16x depth; 3: 256x depth)" +msgstr "12xx: LFO 설정 (0: 비활성화; 1: 1x 깊이; 2: 16x 깊이; 3: 256x 깊이)" + +#: src/engine/sysDef.cpp:765 +msgid "13xx: Set LFO speed" +msgstr "13xx: LFO 속도 설정" + +#: src/engine/sysDef.cpp:771 +msgid "NES (Ricoh 2A03)" +msgstr "NES (리코 2A03)" + +#: src/engine/sysDef.cpp:772 +msgid "" +"also known as Famicom in Japan, it's the most well-known game console of the " +"'80s." +msgstr "" +"일본/한국 에선 패미컴으로 알려졌고, 이것은 80년대에 가장 잘 알려진 게임 콘솔" +"입니다." + +#: src/engine/sysDef.cpp:773 src/gui/waveEdit.cpp:31 src/gui/waveEdit.cpp:217 +#: src/gui/insEdit.cpp:200 src/gui/insEdit.cpp:324 src/gui/insEdit.cpp:658 +msgid "Triangle" +msgstr "삼각파" + +#: src/engine/sysDef.cpp:773 src/engine/sysDef.cpp:2100 +#: src/gui/insEdit.cpp:2629 +msgid "DPCM" +msgstr "DPCM" + +#: src/engine/sysDef.cpp:779 src/engine/sysDef.cpp:2106 +msgid "11xx: Write to delta modulation counter (0 to 7F)" +msgstr "11xx: 델타 모듈레이션 카운터에 쓰기 (0 에서 7F)" + +#: src/engine/sysDef.cpp:780 src/engine/sysDef.cpp:1068 +msgid "12xx: Set duty cycle/noise mode (pulse: 0 to 3; noise: 0 or 1)" +msgstr "12xx: 듀티 사이클/노이즈 모드 설정 (펄스: 0 에서 3; 노이즈: 0 또는 1)" + +#: src/engine/sysDef.cpp:781 src/engine/sysDef.cpp:2108 +msgid "13xy: Sweep up (x: time; y: shift)" +msgstr "13xy: SWEEP 업 (x: 시간; y: SHIFT)" + +#: src/engine/sysDef.cpp:782 src/engine/sysDef.cpp:2109 +msgid "14xy: Sweep down (x: time; y: shift)" +msgstr "14xy: SWEEP 다운 (x: 시간; y: SHIFT)" + +#: src/engine/sysDef.cpp:783 src/engine/sysDef.cpp:2110 +msgid "" +"15xx: Set envelope mode (0: envelope, 1: length, 2: looping, 3: constant)" +msgstr "15xx: 엔벨로프 모드 설정 (0: 엔벨로프, 1: 길이, 2: 반복, 3: 지속)" + +#: src/engine/sysDef.cpp:784 src/engine/sysDef.cpp:2111 +msgid "16xx: Set length counter (refer to manual for a list of values)" +msgstr "16xx: 길이 카운터 설정 (보류" + +#: src/engine/sysDef.cpp:785 src/engine/sysDef.cpp:2112 +msgid "17xx: Set frame counter mode (0: 4-step, 1: 5-step)" +msgstr "17xx: 프레임 카운터 모드 설정 (0: 4 스텝, 1: 5 스텝)" + +#: src/engine/sysDef.cpp:786 src/engine/sysDef.cpp:2113 +msgid "18xx: Select PCM/DPCM mode (0: PCM; 1: DPCM)" +msgstr "18xx: PCM/DPCM 모드 선택 (0: PCM; 1: DPCM)" + +#: src/engine/sysDef.cpp:787 src/engine/sysDef.cpp:2114 +msgid "19xx: Set triangle linear counter (0 to 7F; 80 and higher halt)" +msgstr "19xx: 삼각파 선형 카운터 설정 (0 에서 7F; 80 이상 보류)" + +#: src/engine/sysDef.cpp:788 src/engine/sysDef.cpp:2115 +msgid "20xx: Set DPCM frequency (0 to F)" +msgstr "20xx: DPCM 주파수 설정 (0 에서 F)" + +#: src/engine/sysDef.cpp:793 +msgid "NES + Konami VRC7" +msgstr "NES + 코나미 VRC7" + +#: src/engine/sysDef.cpp:799 +msgid "Famicom Disk System" +msgstr "패미컴 디스크 시스템" + +#: src/engine/sysDef.cpp:805 +msgid "Commodore 64 (SID 6581)" +msgstr "코모도어 64 (SID 6581)" + +#: src/engine/sysDef.cpp:806 +msgid "" +"this computer is powered by the SID chip, which had synthesizer features " +"like a filter and ADSR." +msgstr "" +"이 컴퓨터는 필터와 ADSR 같은 신디사이져 기능을 가지고 있는 SID 칩을 사용합니" +"다." + +#: src/engine/sysDef.cpp:817 +msgid "Commodore 64 (SID 8580)" +msgstr "코모도어 64 (SID 8580)" + +#: src/engine/sysDef.cpp:818 +msgid "" +"this computer is powered by the SID chip, which had synthesizer features " +"like a filter and ADSR.\n" +"this is the newer revision of the chip." +msgstr "" +"이 컴퓨터는 필터와 ADSR 같은 신디사이져 기능을 가지고 있는 SID 칩을 사용합니" +"다.\n" +"이것은 6581의 새 버전입니다." + +#: src/engine/sysDef.cpp:829 +msgid "DefleCade" +msgstr "DefleCade" + +#: src/engine/sysDef.cpp:835 +msgid "Neo Geo CD" +msgstr "네오 지오 CD" + +#: src/engine/sysDef.cpp:836 +msgid "" +"like Neo Geo, but lacking the ADPCM-B channel since they couldn't connect " +"the pins." +msgstr "네오 지오와 같지만 ADPCM-B 채널이 보류" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1173 +#: src/engine/sysDef.cpp:1185 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1443 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +#: src/engine/sysDef.cpp:2006 +msgid "FM 1" +msgstr "FM 1" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:891 +#: src/engine/sysDef.cpp:903 src/engine/sysDef.cpp:1032 +#: src/engine/sysDef.cpp:1097 src/engine/sysDef.cpp:1109 +#: src/engine/sysDef.cpp:1122 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1546 +#: src/engine/sysDef.cpp:1559 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:1693 src/engine/sysDef.cpp:1849 +#: src/engine/sysDef.cpp:1861 src/engine/sysDef.cpp:2006 +msgid "FM 2" +msgstr "FM 2" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1173 +#: src/engine/sysDef.cpp:1185 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1443 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:2006 +msgid "FM 3" +msgstr "FM 3" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1546 +#: src/engine/sysDef.cpp:1559 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:1693 src/engine/sysDef.cpp:1849 +#: src/engine/sysDef.cpp:1861 src/engine/sysDef.cpp:2006 +msgid "FM 4" +msgstr "FM 4" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:862 src/engine/sysDef.cpp:927 +#: src/engine/sysDef.cpp:943 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "PSG 1" +msgstr "PSG 1" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:862 src/engine/sysDef.cpp:927 +#: src/engine/sysDef.cpp:943 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "PSG 2" +msgstr "PSG 2" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:862 src/engine/sysDef.cpp:927 +#: src/engine/sysDef.cpp:943 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "PSG 3" +msgstr "PSG 3" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 1" +msgstr "ADPCM-A 1" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 2" +msgstr "ADPCM-A 2" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 3" +msgstr "ADPCM-A 3" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 4" +msgstr "ADPCM-A 4" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 5" +msgstr "ADPCM-A 5" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 6" +msgstr "ADPCM-A 6" + +#: src/engine/sysDef.cpp:847 +msgid "Neo Geo CD Extended Channel 2" +msgstr "네오 지오 CD 확장 채널 2" + +#: src/engine/sysDef.cpp:848 +msgid "" +"like Neo Geo, but lacking the ADPCM-B channel since they couldn't connect " +"the pins.\n" +"this one is in Extended Channel mode, which turns the second FM channel into " +"four operators with independent notes/frequencies." +msgstr "보류" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP1" +msgstr "FM 2 OP1" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP2" +msgstr "FM 2 OP2" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP3" +msgstr "FM 2 OP3" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP4" +msgstr "FM 2 OP4" + +#: src/engine/sysDef.cpp:860 src/gui/sysConf.cpp:913 +msgid "AY-3-8910" +msgstr "AY-3-8910" + +#: src/engine/sysDef.cpp:861 +msgid "" +"this chip is everywhere! ZX Spectrum, MSX, Amstrad CPC, Intellivision, " +"Vectrex...\n" +"the discovery of envelope bass helped it beat the SN76489 with ease." +msgstr "" +"이 칩은 어디든지 있습니다! ZX 스펙트럼, MSX, 암스트레드 CPC, 인텔리비죤, 벡트" +"렉스...\n" +"엔벨로프 베이스 발견은 그것이 SN76489를 능가하게 했습니다!" + +#: src/engine/sysDef.cpp:872 +msgid "Amiga" +msgstr "아미가" + +#: src/engine/sysDef.cpp:873 +msgid "" +"a computer from the '80s with full sampling capabilities, giving it a sound " +"ahead of its time." +msgstr "전체 샘플링이 가능한 80년대 보류" + +#: src/engine/sysDef.cpp:881 +msgid "10xx: Toggle filter (0 disables; 1 enables)" +msgstr "10xx: 필터 토글 (0 비활성화; 1 활성화)" + +#: src/engine/sysDef.cpp:882 +msgid "11xx: Toggle AM with next channel" +msgstr "11xx: 다음 채널로 AM 토글" + +#: src/engine/sysDef.cpp:883 +msgid "12xx: Toggle period modulation with next channel" +msgstr "12xx: 다음 채널로 PERIOD 모듈레이션 토글" + +#: src/engine/sysDef.cpp:884 +msgid "13xx: Set waveform" +msgstr "13xx: 파형 설정" + +#: src/engine/sysDef.cpp:889 +msgid "Yamaha YM2151 (OPM)" +msgstr "야마하 YM2151 (OPM)" + +#: src/engine/sysDef.cpp:890 +msgid "" +"this was Yamaha's first integrated FM chip.\n" +"it was used in several synthesizers, computers and arcade boards." +msgstr "" +"이것은 야마하의 첫 통합된 FM 칩이었습니다.\n" +"이것은 다양한 신디사이져, 컴퓨터와 아케이드 보드에 사용되었습니다." + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1279 src/engine/sysDef.cpp:1332 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1370 +#: src/engine/sysDef.cpp:1383 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +#: src/engine/sysDef.cpp:2006 +msgid "FM 5" +msgstr "FM 5" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:2006 +msgid "FM 6" +msgstr "FM 6" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:1032 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1279 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:2006 +msgid "FM 7" +msgstr "FM 7" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:1032 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:2006 +msgid "FM 8" +msgstr "FM 8" + +#: src/engine/sysDef.cpp:901 +msgid "Yamaha YM2612 (OPN2)" +msgstr "야마하 YM2612 (OPN2)" + +#: src/engine/sysDef.cpp:902 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer)." +msgstr "" +"이것은 세가 메가드라이브에 있었기 때문에 잘 알려졌습니다. (또한 FM TOWNS 컴" +"퓨터에도 있었습니다.)" + +#: src/engine/sysDef.cpp:913 +msgid "Atari TIA" +msgstr "아타리 TIA" + +#: src/engine/sysDef.cpp:914 +msgid "" +"it's a challenge to make music on this chip which barely has musical " +"capabilities..." +msgstr "" +"이것으로 음악을 만드는것은 하나의 챌린지입니다. 음악적 가능성이 없는 칩이기 " +"때문이죠." + +#: src/engine/sysDef.cpp:925 +msgid "Philips SAA1099" +msgstr "필립스 SAA1099" + +#: src/engine/sysDef.cpp:926 +msgid "" +"supposedly an upgrade from the AY-3-8910, this was present on the Creative " +"Music System (Game Blaster) and SAM Coupé." +msgstr "" +"보류 AY-3-8910의 업그레이드 입니다. 이것은 크리에이티브 뮤직 시스템(게임 블래" +"스터)과 SAM 코페에 제공되었습니다." + +#: src/engine/sysDef.cpp:927 +msgid "PSG 4" +msgstr "PSG 4" + +#: src/engine/sysDef.cpp:927 +msgid "PSG 5" +msgstr "PSG 5" + +#: src/engine/sysDef.cpp:927 +msgid "PSG 6" +msgstr "PSG 6" + +#: src/engine/sysDef.cpp:934 +msgid "10xy: Set channel mode (x: noise; y: tone)" +msgstr "10xy: 채널 모드 설정 (x: 노이즈; y; 톤)" + +#: src/engine/sysDef.cpp:935 +msgid "11xx: Set noise frequency" +msgstr "11xx: 노이즈 주파수 설정" + +#: src/engine/sysDef.cpp:936 +msgid "12xx: Setup envelope (refer to docs for more information)" +msgstr "12xx: 엔벨로프 설정 (보류)" + +#: src/engine/sysDef.cpp:941 +msgid "Microchip AY8930" +msgstr "마이크로칩 AY8930" + +#: src/engine/sysDef.cpp:942 +msgid "" +"an improved version of the AY-3-8910 with a bigger frequency range, duty " +"cycles, configurable noise and per-channel envelopes!" +msgstr "" +"AY-3-8910의 개선 버전으로, 넓은 주파수 범위, 듀티비, 구성 가능한 노이즈와 개" +"별 엔벨로프가 있습니다!" + +#: src/engine/sysDef.cpp:953 +msgid "Commodore VIC-20" +msgstr "코모도어 VIC-20" + +#: src/engine/sysDef.cpp:954 +msgid "" +"Commodore's successor to the PET.\n" +"its square wave channels are more than just square..." +msgstr "보류" + +#: src/engine/sysDef.cpp:955 src/gui/settings.cpp:136 src/gui/settings.cpp:206 +#: src/gui/settings.cpp:3970 +msgid "Low" +msgstr "낮음" + +#: src/engine/sysDef.cpp:955 +msgid "Mid" +msgstr "중간" + +#: src/engine/sysDef.cpp:955 src/gui/settings.cpp:135 src/gui/settings.cpp:208 +#: src/gui/settings.cpp:3971 +msgid "High" +msgstr "높음" + +#: src/engine/sysDef.cpp:964 +msgid "Commodore PET" +msgstr "코모도어 PET" + +#: src/engine/sysDef.cpp:965 +msgid "" +"one channel of 1-bit wavetable which is better (and worse) than the PC " +"Speaker." +msgstr "1비트 웨이브테이블 칩으로 PC 비퍼보다 좋은 (그리고 나쁜) 칩입니다." + +#: src/engine/sysDef.cpp:966 src/engine/sysDef.cpp:1262 +#: src/engine/sysDef.cpp:2100 src/gui/editControls.cpp:433 +#: src/gui/settings.cpp:4017 src/gui/settings.cpp:4095 +msgid "Wave" +msgstr "웨이브" + +#: src/engine/sysDef.cpp:975 src/gui/settings.cpp:4052 +msgid "SNES" +msgstr "SNES" + +#: src/engine/sysDef.cpp:976 +msgid "FM? nah... samples! Nintendo's answer to Sega." +msgstr "FM? 뭐래~ 샘플이지! 닌텐도가 세가에게 대답합니다..." + +#: src/engine/sysDef.cpp:983 +msgid "18xx: Enable echo buffer" +msgstr "18xx: 에코 버퍼 활성화" + +#: src/engine/sysDef.cpp:984 +msgid "19xx: Set echo delay (0 to F)" +msgstr "19xx: 에코 딜레이 설정 (0 에서 F)" + +#: src/engine/sysDef.cpp:985 +msgid "1Axx: Set left echo volume" +msgstr "1Axx: 좌측 에코 볼륨 설정" + +#: src/engine/sysDef.cpp:986 +msgid "1Bxx: Set right echo volume" +msgstr "1Bxx: 우측 에코 볼륨 설정" + +#: src/engine/sysDef.cpp:987 +msgid "1Cxx: Set echo feedback" +msgstr "1Cxx: 에코 피드백 설정" + +#: src/engine/sysDef.cpp:988 +msgid "1Exx: Set dry output volume (left)" +msgstr "1Exx: 좌측 DRY 출력 볼륨 설정" + +#: src/engine/sysDef.cpp:989 +msgid "1Fxx: Set dry output volume (right)" +msgstr "1Fxx: 우측 DRY 출력 볼륨 설정" + +#: src/engine/sysDef.cpp:990 +msgid "30xx: Set echo filter coefficient 0" +msgstr "30xx: 보류" + +#: src/engine/sysDef.cpp:991 +msgid "31xx: Set echo filter coefficient 1" +msgstr "31xx: 보류" + +#: src/engine/sysDef.cpp:992 +msgid "32xx: Set echo filter coefficient 2" +msgstr "32xx: 보류" + +#: src/engine/sysDef.cpp:993 +msgid "33xx: Set echo filter coefficient 3" +msgstr "33xx: 보류" + +#: src/engine/sysDef.cpp:994 +msgid "34xx: Set echo filter coefficient 4" +msgstr "34xx: 보류" + +#: src/engine/sysDef.cpp:995 +msgid "35xx: Set echo filter coefficient 5" +msgstr "35xx: 보류" + +#: src/engine/sysDef.cpp:996 +msgid "36xx: Set echo filter coefficient 6" +msgstr "36xx: 보류" + +#: src/engine/sysDef.cpp:997 +msgid "37xx: Set echo filter coefficient 7" +msgstr "37xx: 보류" + +#: src/engine/sysDef.cpp:1002 +msgid "12xx: Toggle echo on this channel" +msgstr "12xx: 이 채널에 에코 토글" + +#: src/engine/sysDef.cpp:1003 +msgid "13xx: Toggle pitch modulation" +msgstr "13xx: 피치 모듈레이션 토글" + +#: src/engine/sysDef.cpp:1004 +msgid "14xy: Toggle invert (x: left; y: right)" +msgstr "14xy: 상하반전 토글 (x: 좌; y: 우)" + +#: src/engine/sysDef.cpp:1005 +msgid "" +"15xx: Set envelope mode (0: ADSR, 1: gain/direct, 2: dec, 3: exp, 4: inc, 5: " +"bent)" +msgstr "" +"15xx: 엔벨로프 모드 설정 (0: ADSR, 1: 게인/다이렉트, 2: DEC, 3: EXP, 4: INC, " +"5: 벤트)" + +#: src/engine/sysDef.cpp:1006 +msgid "16xx: Set gain (00 to 7F if direct; 00 to 1F otherwise)" +msgstr "16xx: 게인 설정 (다이렉트라면 00 에서 7F, 다른 것이라면 00 에서 1F)" + +#: src/engine/sysDef.cpp:1007 +msgid "1Dxx: Set noise frequency (00 to 1F)" +msgstr "1Dxx: 노이즈 주파수 설정 (00 에서 1F)" + +#: src/engine/sysDef.cpp:1008 +msgid "20xx: Set attack (0 to F)" +msgstr "20xx: ATTACK 설정 (0 에서 F)" + +#: src/engine/sysDef.cpp:1009 +msgid "21xx: Set decay (0 to 7)" +msgstr "21xx: DECAY 설정 (0 에서 7)" + +#: src/engine/sysDef.cpp:1010 +msgid "22xx: Set sustain (0 to 7)" +msgstr "22xx: SUSTAIN 설정 (0 에서 7)" + +#: src/engine/sysDef.cpp:1011 +msgid "23xx: Set release (00 to 1F)" +msgstr "23xx: RELEASE 설정 (00 에서 1F)" + +#: src/engine/sysDef.cpp:1016 +msgid "Konami VRC6" +msgstr "코나미 VRC6" + +#: src/engine/sysDef.cpp:1017 +msgid "an expansion chip for the Famicom, featuring a quirky sawtooth channel." +msgstr "패미컴용 확장 칩으로, 톱니 보류" + +#: src/engine/sysDef.cpp:1018 +msgid "VRC6 1" +msgstr "VRC6 1" + +#: src/engine/sysDef.cpp:1018 +msgid "VRC6 2" +msgstr "VRC6 2" + +#: src/engine/sysDef.cpp:1018 +msgid "VRC6 Saw" +msgstr "VRC6 톱니파" + +#: src/engine/sysDef.cpp:1024 src/engine/sysDef.cpp:2092 +msgid "12xx: Set duty cycle (pulse: 0 to 7)" +msgstr "12xx: 듀티비 설정 (펄스: 0 에서 7)" + +#: src/engine/sysDef.cpp:1030 +msgid "Yamaha YM2413 (OPLL)" +msgstr "야마하 YM2413 (OPLL)" + +#: src/engine/sysDef.cpp:1031 +msgid "" +"cost-reduced version of the OPL with 16 patches and only one of them is user-" +"configurable." +msgstr "원가절감된 버전의 OPL로 16채널과 사용자 지정 악기는 하나만 가능합니다." + +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1173 +#: src/engine/sysDef.cpp:1185 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:2006 +msgid "FM 9" +msgstr "FM 9" + +#: src/engine/sysDef.cpp:1042 +msgid "Famicom Disk System (chip)" +msgstr "패미컴 디스크 시스템 (칩)" + +#: src/engine/sysDef.cpp:1043 +msgid "a disk drive for the Famicom which also contains one wavetable channel." +msgstr "패미컴용 디스크 드라이브로 하나의 웨이브테이블 채널을 담고 있습니다." + +#: src/engine/sysDef.cpp:1044 src/gui/settings.cpp:4039 +msgid "FDS" +msgstr "FDS" + +#: src/engine/sysDef.cpp:1051 +msgid "11xx: Set modulation depth" +msgstr "11xx: 모듈레이션 깊이 설정" + +#: src/engine/sysDef.cpp:1052 +msgid "12xy: Set modulation speed high byte (x: enable; y: value)" +msgstr "12xy: 상위 바이트 모듈레이션 속도 설정 (x: 활성화; y: 값)" + +#: src/engine/sysDef.cpp:1053 +msgid "13xx: Set modulation speed low byte" +msgstr "13xx: 하위 바이트 모듈레이션 속도 설정" + +#: src/engine/sysDef.cpp:1054 +msgid "14xx: Set modulator position" +msgstr "14xx: 모듈레이터 위치 설정" + +#: src/engine/sysDef.cpp:1055 +msgid "15xx: Set modulator table to waveform" +msgstr "15xx: 파형에 모듈레이터 테이블 설정" + +#: src/engine/sysDef.cpp:1060 +msgid "MMC5" +msgstr "MMC5" + +#: src/engine/sysDef.cpp:1061 +msgid "" +"an expansion chip for the Famicom, featuring a little-known PCM channel." +msgstr "패미컴용 확장 칩으로 잘 알려지지 않은 PCM 채널이 있습니다." + +#: src/engine/sysDef.cpp:1073 src/gui/settings.cpp:4041 +msgid "Namco 163" +msgstr "남코 163" + +#: src/engine/sysDef.cpp:1074 +msgid "an expansion chip for the Famicom, with full wavetable." +msgstr "패미컴용 확장 칩으로 웨이브테이블 칩입니다." + +#: src/engine/sysDef.cpp:1081 +msgid "18xx: Change channel limits (0 to 7, x + 1)" +msgstr "18xx: 채널 제한 변경 (0 에서 7, x + 1)" + +#: src/engine/sysDef.cpp:1082 +msgid "20xx: Load a waveform into memory" +msgstr "20xx: 메모리에 파형 불러오기" + +#: src/engine/sysDef.cpp:1083 +msgid "21xx: Set position for wave load" +msgstr "21xx: 파형 불러오기를 위한 위치 설정" + +#: src/engine/sysDef.cpp:1086 +msgid "10xx: Select waveform" +msgstr "10xx: 파형 선택" + +#: src/engine/sysDef.cpp:1087 +msgid "11xx: Set waveform position in RAM" +msgstr "11xx: 램에 파형 위치 설정" + +#: src/engine/sysDef.cpp:1088 +msgid "12xx: Set waveform length in RAM (04 to FC in steps of 4)" +msgstr "12xx: 램에 파형 길이 설정 (04 에서 FC, 4스텝)" + +#: src/engine/sysDef.cpp:1089 +msgid "15xx: Set waveform load position" +msgstr "15xx: 파형 불러오기의 위치 설정" + +#: src/engine/sysDef.cpp:1090 +msgid "16xx: Set waveform load length (04 to FC in steps of 4)" +msgstr "16xx: 파형 불러오기 길이 설정 (04 에서 FC, 4스텝)" + +#: src/engine/sysDef.cpp:1095 +msgid "Yamaha YM2203 (OPN)" +msgstr "야마하 YM2203 (OPN)" + +#: src/engine/sysDef.cpp:1096 +msgid "" +"cost-reduced version of the OPM with a different register layout and no " +"stereo...\n" +"...but it has a built-in AY-3-8910! (actually an YM2149)" +msgstr "" +"OPM의 원가절감된 버전으로 다른 레지스터 레이아웃을 가지고 있고 스테레오가 없" +"습니다...\n" +"...그러나 이것은 AY-3-8910을 내장하고 있습니다! (사실 YM2149이지만요.)" + +#: src/engine/sysDef.cpp:1107 +msgid "Yamaha YM2203 (OPN) Extended Channel 3" +msgstr "야마하 YM2203 (OPN) 확장 채널 3" + +#: src/engine/sysDef.cpp:1108 +msgid "" +"cost-reduced version of the OPM with a different register layout and no " +"stereo...\n" +"...but it has a built-in AY-3-8910! (actually an YM2149)\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies" +msgstr "" +"OPM의 원가절감된 버전으로 다른 레지스터 레이아웃을 가지고 있고 스테레오가 없" +"습니다...\n" +"...그러나 이것은 AY-3-8910을 내장하고 있습니다! (사실 YM2149이지만요.)\n" +"이것은 확장 채널 모드로 세번째 채널을 보류" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP1" +msgstr "FM 3 OP1" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP2" +msgstr "" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP3" +msgstr "FM 3 OP3" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP4" +msgstr "FM 3 OP4" + +#: src/engine/sysDef.cpp:1120 +msgid "Yamaha YM2203 (OPN) CSM" +msgstr "야마하 YM2203 (OPN) CSM" + +#: src/engine/sysDef.cpp:1121 +msgid "" +"cost-reduced version of the OPM with a different register layout and no " +"stereo...\n" +"...but it has a built-in AY-3-8910! (actually an YM2149)\n" +"CSM blah blah" +msgstr "" +"OPM의 원가절감된 버전으로 다른 레지스터 레이아웃을 가지고 있고 스테레오가 없" +"습니다...\n" +"...그러나 이것은 AY-3-8910을 내장하고 있습니다! (사실 YM2149이지만요.)\n" +"CSM 어쩌구저쩌구 (영어 원문이 이렇게 되있습니다 하하 - 번역가)" + +#: src/engine/sysDef.cpp:1122 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1383 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1559 src/engine/sysDef.cpp:1861 +msgid "CSM Timer" +msgstr "CSM 타이머" + +#: src/engine/sysDef.cpp:1133 +msgid "Yamaha YM2608 (OPNA)" +msgstr "야마하 YM2608 (OPNA)" + +#: src/engine/sysDef.cpp:1134 +msgid "" +"OPN but twice the FM channels, stereo makes a come-back and has rhythm and " +"ADPCM channels." +msgstr "보류" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1481 +#: src/gui/insEdit.cpp:3302 src/gui/insEdit.cpp:3624 +msgid "Kick" +msgstr "킥" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:210 src/gui/insEdit.cpp:218 +msgid "Snare" +msgstr "스네어" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:212 src/gui/insEdit.cpp:220 +#: src/gui/insEdit.cpp:1909 src/gui/insEdit.cpp:2014 +msgid "Top" +msgstr "탑" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:213 src/gui/insEdit.cpp:219 +msgid "HiHat" +msgstr "하이햇" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:211 +msgid "Tom" +msgstr "톰" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 +msgid "Rim" +msgstr "림" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:1693 +msgid "ADPCM" +msgstr "ADPCM" + +#: src/engine/sysDef.cpp:1145 +msgid "Yamaha YM2608 (OPNA) Extended Channel 3" +msgstr "야마하 YM2608 (OPNA) 확장 채널 3" + +#: src/engine/sysDef.cpp:1146 +msgid "" +"OPN but twice the FM channels, stereo makes a come-back and has rhythm and " +"ADPCM channels.\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies" +msgstr "보류" + +#: src/engine/sysDef.cpp:1158 +msgid "Yamaha YM2608 (OPNA) CSM" +msgstr "야마하 YM2608 (OPNA) CSM" + +#: src/engine/sysDef.cpp:1159 +msgid "" +"OPN but twice the FM channels, stereo makes a come-back and has rhythm and " +"ADPCM channels.\n" +"CSM blah blah" +msgstr "보류" + +#: src/engine/sysDef.cpp:1171 +msgid "Yamaha YM3526 (OPL)" +msgstr "야마하 YM3526 (OPL)" + +#: src/engine/sysDef.cpp:1172 +msgid "" +"OPN, but what if you only had two operators, no stereo, no detune and a " +"lower ADSR parameter range?" +msgstr "" +"OPN이 만약에 두개의 오퍼레이터에 스테레오도 없고... 디튠도 없는데다가 ADSR 매" +"개변수 범위도 좁다면...?" + +#: src/engine/sysDef.cpp:1183 +msgid "Yamaha YM3812 (OPL2)" +msgstr "야마하 YM3812 (OPL2)" + +#: src/engine/sysDef.cpp:1184 +msgid "OPL, but what if you had more waveforms to choose than the normal sine?" +msgstr "OPL이 만약에 오퍼레이터에 정형파 대신 더 많은 파형을 고를 수 있다면?" + +#: src/engine/sysDef.cpp:1195 +msgid "Yamaha YMF262 (OPL3)" +msgstr "야마하 YMF262 (OPL3)" + +#: src/engine/sysDef.cpp:1196 +msgid "" +"OPL2, but what if you had twice the channels, 4-op mode, stereo and even " +"more waveforms?" +msgstr "" +"OPL2이 만약에 두배의 채널과 4-OP모드에 스테레오, 심지어 파형도 더 고를 수 있" +"다면?" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 1" +msgstr "4OP 1" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 3" +msgstr "4OP 3" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 5" +msgstr "4OP 5" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 7" +msgstr "4OP 7" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 9" +msgstr "4OP 9" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 10" +msgstr "FM 10" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 11" +msgstr "4OP 11" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 12" +msgstr "FM 12" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 13" +msgstr "FM 13" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 14" +msgstr "FM 14" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 15" +msgstr "FM 15" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:2006 +msgid "FM 16" +msgstr "FM 16" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:2006 +msgid "FM 17" +msgstr "FM 17" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:2006 +msgid "FM 18" +msgstr "FM 18" + +#: src/engine/sysDef.cpp:1208 src/gui/settings.cpp:4051 +msgid "MultiPCM" +msgstr "멀티PCM" + +#: src/engine/sysDef.cpp:1209 +msgid "" +"how many channels of PCM do you want?\n" +"MultiPCM: yes" +msgstr "" +"PCM 채널 얼마나 더 원하나요?\n" +"멀티PCM: 네." + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 17" +msgstr "채널 17" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 18" +msgstr "채널 18" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 19" +msgstr "채널 19" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 20" +msgstr "채널 20" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 21" +msgstr "채널 21" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 22" +msgstr "채널 22" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 23" +msgstr "채널 23" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 24" +msgstr "채널 24" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 25" +msgstr "채널 25" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 26" +msgstr "채널 26" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 27" +msgstr "채널 27" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 28" +msgstr "채널 28" + +#: src/engine/sysDef.cpp:1217 +msgid "PC Speaker" +msgstr "PC 비퍼" + +#: src/engine/sysDef.cpp:1218 +msgid "good luck! you get one square and no volume control." +msgstr "행운을 빕니다! 볼륨 조절이 불가능한 사각파 채널 한개를 얻었습니다." + +#: src/engine/sysDef.cpp:1219 src/engine/sysDef.cpp:1228 +#: src/gui/guiConst.cpp:1394 src/gui/waveEdit.cpp:199 src/gui/insEdit.cpp:183 +#: src/gui/insEdit.cpp:194 src/gui/insEdit.cpp:326 src/gui/insEdit.cpp:656 +msgid "Square" +msgstr "사각파" + +#: src/engine/sysDef.cpp:1226 +msgid "Pong" +msgstr "퐁" + +#: src/engine/sysDef.cpp:1227 +msgid "please don't use this chip. it was added as a joke." +msgstr "이 칩을 쓰지 않는게 좋을겁니다. 장난으로 넣은 칩이기 때문이죠." + +#: src/engine/sysDef.cpp:1235 src/gui/settings.cpp:4044 +msgid "POKEY" +msgstr "포키" + +#: src/engine/sysDef.cpp:1236 +msgid "" +"TIA, but better and more flexible.\n" +"used in the Atari 8-bit family of computers (400/800/XL/XE)." +msgstr "" +"TIA이지만 더 낫고 유연하죠.\n" +"아타리 8비트 컴퓨터(400/800/XL/XE)에 사용되었습니다." + +#: src/engine/sysDef.cpp:1243 src/engine/sysDef.cpp:1714 +msgid "10xx: Set waveform (0 to 7)" +msgstr "10xx: 파형 설정 (0 에서 7)" + +#: src/engine/sysDef.cpp:1244 +msgid "11xx: Set AUDCTL" +msgstr "11xx: AUDCTL 설정" + +#: src/engine/sysDef.cpp:1245 +msgid "12xx: Toggle two-tone mode" +msgstr "12xx: TWO-TONE 모드 토글" + +#: src/engine/sysDef.cpp:1250 +msgid "Ricoh RF5C68" +msgstr "리코 RF5C68" + +#: src/engine/sysDef.cpp:1251 +msgid "" +"this is like SNES' sound chip but without interpolation and the rest of nice " +"bits." +msgstr "SNES의 사운드칩과 비슷하지만 인터폴레이션 보류" + +#: src/engine/sysDef.cpp:1260 src/gui/settings.cpp:4046 +msgid "WonderSwan" +msgstr "원더스완" + +#: src/engine/sysDef.cpp:1261 +msgid "developed by the makers of the Game Boy and the Virtual Boy..." +msgstr "게임보이와 버철보이의 메이커가 개발했습니다." + +#: src/engine/sysDef.cpp:1262 +msgid "Wave/PCM" +msgstr "파형/PCM" + +#: src/engine/sysDef.cpp:1262 +msgid "Wave/Sweep" +msgstr "파형/SWEEP" + +#: src/engine/sysDef.cpp:1262 +msgid "Wave/Noise" +msgstr "파형/노이즈" + +#: src/engine/sysDef.cpp:1269 +msgid "11xx: Setup noise mode (0: disabled; 1-8: enabled/tap)" +msgstr "11xx: 노이즈 모드 설정 (0: 비활성화; 1-8: 활성화/TAP)" + +#: src/engine/sysDef.cpp:1270 +msgid "12xx: Setup sweep period (0: disabled; 1-20: enabled/period)" +msgstr "12xx: SWEEP PERIOD 설정 (0: 비활성화; 1-20: 활성화/PERIOD)" + +#: src/engine/sysDef.cpp:1271 +msgid "13xx: Set sweep amount" +msgstr "13xx: SWEEP 양 설정" + +#: src/engine/sysDef.cpp:1277 +msgid "Yamaha YM2414 (OPZ)" +msgstr "야마하 YM2414 (OPZ)" + +#: src/engine/sysDef.cpp:1278 +msgid "" +"like OPM, but with more waveforms, fixed frequency mode and totally... " +"undocumented.\n" +"used in the Yamaha TX81Z and some other synthesizers." +msgstr "" +"OPM과 비슷하지만 파형이 더 많고, 주파수 모드가 고정되었으며 결정적으로... 문" +"서화되지 않았습니다.\n" +"야마하 TX81Z와 몇몇 다른 신디사이져에 사용되었습니다." + +#: src/engine/sysDef.cpp:1285 +msgid "2Fxx: Toggle hard envelope reset on new notes" +msgstr "2Fxx: 새 노트에 하드 엔벨로프 재설정 토글" + +#: src/engine/sysDef.cpp:1291 src/gui/settings.cpp:4069 +msgid "Pokémon Mini" +msgstr "포켓몬 미니" + +#: src/engine/sysDef.cpp:1292 +msgid "this one is like PC Speaker but has duty cycles." +msgstr "PC 비퍼와 비슷하지만 듀티비 설정이 가능합니다." + +#: src/engine/sysDef.cpp:1293 src/gui/settings.cpp:4092 src/gui/waveEdit.cpp:33 +msgid "Pulse" +msgstr "펄스" + +#: src/engine/sysDef.cpp:1300 +msgid "SegaPCM" +msgstr "세가PCM" + +#: src/engine/sysDef.cpp:1301 +msgid "" +"used in some Sega arcade boards (like OutRun), and usually paired with a " +"YM2151." +msgstr "" +"몇몇 세가 아케이드 보드에 사용되었고(아웃런과 같은) 주로 YM2151과 짝을 맞춥니" +"다." + +#: src/engine/sysDef.cpp:1312 src/gui/settings.cpp:4040 +msgid "Virtual Boy" +msgstr "버철보이" + +#: src/engine/sysDef.cpp:1313 +msgid "" +"a console which failed to sell well due to its headache-inducing features." +msgstr "두통유발 기능때문에 성공에 실패한 콘솔." + +#: src/engine/sysDef.cpp:1321 +msgid "11xx: Set noise length (0 to 7)" +msgstr "11xx: 노이즈 길이 설정 (0 에서 7)" + +#: src/engine/sysDef.cpp:1322 +msgid "" +"12xy: Setup envelope (x: enabled/loop (1: enable, 3: enable+loop); y: speed/" +"direction (0-7: down, 8-F: up))" +msgstr "" +"12xy: 엔벨로프 설정 (x: 활성화/반복 (1: 활성화, 3: 활성화+반복); y: 속도/위" +"치 (0 에서 7: 하, 8 에서 F 상)" + +#: src/engine/sysDef.cpp:1323 +msgid "13xy: Setup sweep (x: speed; y: shift; channel 5 only)" +msgstr "13xy: SWEEP 설정 (x: 속도; y: SHIFT; 채널 5만)" + +#: src/engine/sysDef.cpp:1324 +msgid "" +"14xy: Setup modulation (x: enabled/loop (1: enable, 3: enable+loop); y: " +"speed; channel 5 only)" +msgstr "" +"14xy: 모듈레이션 설정 (x: 활성화/반복 (1: 활성화, 3: 활성화+반복); y: 속도; " +"채널 5만)" + +#: src/engine/sysDef.cpp:1325 +msgid "15xx: Set modulation waveform (x: wavetable; channel 5 only)" +msgstr "15xx: 모듈레이션 파형 설정 (x: 파형; 채널 5만)" + +#: src/engine/sysDef.cpp:1330 +msgid "Konami VRC7" +msgstr "코나미 VRC7" + +#: src/engine/sysDef.cpp:1331 +msgid "" +"like OPLL, but even more cost reductions applied. three FM channels went " +"missing, and drums mode did as well..." +msgstr "" +"OPLL과 비슷하지만 더 원가절감되었습니다. FM 채널 세개가 없어졌고, 드럼 모드" +"도..." + +#: src/engine/sysDef.cpp:1342 +msgid "Yamaha YM2610B (OPNB2)" +msgstr "야마하 YM2610B (OPNB2)" + +#: src/engine/sysDef.cpp:1343 +msgid "" +"so Taito asked Yamaha if they could get the two missing FM channels back, " +"and Yamaha gladly provided them with this chip." +msgstr "" +"그래서 타이토는 야마하에게 두개의 잃어버린 FM 채널을 얻을 수 있냐고 물었고, " +"야마하는 기쁘게 그것을 이 칩에 제공했습니다." + +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/gui/settings.cpp:4061 +msgid "ADPCM-B" +msgstr "ADPCM-B" + +#: src/engine/sysDef.cpp:1354 +msgid "ZX Spectrum Beeper" +msgstr "ZX 스펙트럼 비퍼" + +#: src/engine/sysDef.cpp:1355 +msgid "" +"the ZX Spectrum only had a basic beeper capable of...\n" +"...a bunch of thin pulses and tons of other interesting stuff!\n" +"Furnace provides a thin pulse system." +msgstr "" +"ZX 스펙트럼은 기본적인 비퍼만 가지고 있습니다...\n" +"얇은 펄스와 몇가지 흥미로운 일!\n" +"Furnace 트래커는 얇은 펄스 시스템을 제공합니다." + +#: src/engine/sysDef.cpp:1362 src/engine/sysDef.cpp:1950 +msgid "12xx: Set pulse width" +msgstr "12xx: 펄스폭 설정" + +#: src/engine/sysDef.cpp:1363 +msgid "17xx: Trigger overlay drum" +msgstr "17xx: 오버레이 드럼 트리거" + +#: src/engine/sysDef.cpp:1368 +msgid "Yamaha YM2612 (OPN2) Extended Channel 3" +msgstr "야마하 YM2612 (OPN2) 확장 채널 3" + +#: src/engine/sysDef.cpp:1369 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies." +msgstr "" +"이것은 세가 메가드라이브에 있었기 때문에 잘 알려졌습니다. (또한 FM TOWNS 컴" +"퓨터에도 있었습니다.)\n" +"보류" + +#: src/engine/sysDef.cpp:1381 +msgid "Yamaha YM2612 (OPN2) CSM" +msgstr "야마하 YM2612 (OPN2) CSM" + +#: src/engine/sysDef.cpp:1382 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this one includes CSM mode control for special effects on Channel 3." +msgstr "" +"이것은 세가 메가드라이브에 있었기 때문에 잘 알려졌습니다. (또한 FM TOWNS 컴" +"퓨터에도 있었습니다.)\n" +"이것은 채널 3의 특별한 효과를 컨트롤하기 위한 CSM 모드를 포함합니다." + +#: src/engine/sysDef.cpp:1394 src/gui/settings.cpp:4042 +msgid "Konami SCC" +msgstr "코나미 SCC" + +#: src/engine/sysDef.cpp:1395 +msgid "" +"a wavetable chip made by Konami for use with the MSX.\n" +"the last channel shares its wavetable with the previous one though." +msgstr "" +"MSX와 함께 사용하기 위해 코나미가 만든 웨이브테이블 칩입니다.\n" +"마지막 채널은 그것의 웨이브테이블을 이전의 것과 공유합니다." + +#: src/engine/sysDef.cpp:1405 +msgid "Yamaha YM3526 (OPL) with drums" +msgstr "야마하 YM3526 (OPL) 드럼 모드" + +#: src/engine/sysDef.cpp:1406 +msgid "the OPL chip but with drums mode enabled." +msgstr "드럼 모드가 활성화된 OPL 칩입니다." + +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1693 +msgid "Kick/FM 7" +msgstr "킥/FM 7" + +#: src/engine/sysDef.cpp:1417 +msgid "Yamaha YM3812 (OPL2) with drums" +msgstr "야마하 YM3812 (OPL2) 드럼 모드" + +#: src/engine/sysDef.cpp:1418 +msgid "the OPL2 chip but with drums mode enabled." +msgstr "드럼 모드가 활성화된 OPL2 칩입니다." + +#: src/engine/sysDef.cpp:1429 +msgid "Yamaha YMF262 (OPL3) with drums" +msgstr "야마하 YMF262 (OPL3) 드럼 모드" + +#: src/engine/sysDef.cpp:1430 +msgid "the OPL3 chip but with drums mode enabled." +msgstr "드럼 모드가 활성화된 OPL3 칩입니다." + +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1631 +msgid "Kick/FM 16" +msgstr "킥/FM 16" + +#: src/engine/sysDef.cpp:1441 +msgid "Yamaha YM2610 (OPNB)" +msgstr "야마하 YM2610 (OPNB)" + +#: src/engine/sysDef.cpp:1442 +msgid "" +"this chip was used in SNK's Neo Geo arcade board and video game console.\n" +"it's like OPNA but the rhythm channels are ADPCM channels and two FM " +"channels went missing." +msgstr "" +"이 칩은 SNK의 네오 지오 아케이드 보드와 비디오 게임 콘솔에 사용되었습니다.\n" +"보류ㅗㅗ" + +#: src/engine/sysDef.cpp:1453 +msgid "Yamaha YM2610 (OPNB) Extended Channel 2" +msgstr "야마하 YM2610 (OPNB) 확장 채널 2" + +#: src/engine/sysDef.cpp:1454 +msgid "" +"this chip was used in SNK's Neo Geo arcade board and video game console.\n" +"it's like OPNA but the rhythm channels are ADPCM channels and two FM " +"channels went missing.\n" +"this one is in Extended Channel mode, which turns the second FM channel into " +"four operators with independent notes/frequencies." +msgstr "보류ㅗㅗㅗㅗㅗㅗㅗㅗㅗㅗㅗㅗㅗㅗㅗㅗㅗㅗ" + +#: src/engine/sysDef.cpp:1466 +msgid "Yamaha YM2610 (OPNB) CSM" +msgstr "야마하 YM2610 (OPNB) CSM" + +#: src/engine/sysDef.cpp:1467 +msgid "" +"this chip was used in SNK's Neo Geo arcade board and video game console.\n" +"it's like OPNA but the rhythm channels are ADPCM channels and two FM " +"channels went missing.\n" +"this one includes CSM mode control for special effects on Channel 2." +msgstr "보류ㅗㅗㅗㅗㅗㅗㅗㅗㅗㅗㅗㅗㅗㅗㅗㅗㅗㅗㅗㅗㅗㅗㅗㅗㅗㅗㅗㅗㅗ" + +#: src/engine/sysDef.cpp:1479 +msgid "Yamaha YM2413 (OPLL) with drums" +msgstr "야마하 YM2413 (OPLL) 드럼 모드" + +#: src/engine/sysDef.cpp:1480 +msgid "the OPLL chips but with drums mode turned on." +msgstr "OPLL칩이지만 드럼 모드가 활성화되었습니다." + +#: src/engine/sysDef.cpp:1491 +msgid "3xxx: Load LFSR (0 to FFF)" +msgstr "3xxx: LFSR 불러오기 (0 에서 FFF)" + +#: src/engine/sysDef.cpp:1497 +msgid "Atari Lynx" +msgstr "아타리 링스" + +#: src/engine/sysDef.cpp:1498 +msgid "" +"a portable console made by Atari. it has all of Atari's trademark waveforms." +msgstr "" +"아타리가 만든 휴대용 콘솔입니다. 이것은 아타리의 모든 트레이드마크 파형을 가" +"지고 있습니다." + +#: src/engine/sysDef.cpp:1509 +msgid "10xx: Set echo feedback level (00 to FF)" +msgstr "10xx: 에코 피드백 레벨 조정 (00 에서 FF)" + +#: src/engine/sysDef.cpp:1510 +msgid "11xx: Set channel echo level (00 to FF)" +msgstr "11xx: 채널 에코 레벨 설정 (00 에서 FF)" + +#: src/engine/sysDef.cpp:1511 +msgid "12xx: Toggle QSound algorithm (0: disabled; 1: enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:1513 +msgid "3xxx: Set echo delay buffer length (000 to AA5)" +msgstr "3xxx: 에코 딜레이 버퍼 길이 설정 (000 에서 AA5)" + +#: src/engine/sysDef.cpp:1519 +msgid "Capcom QSound" +msgstr "캡콤 Q사운드" + +#: src/engine/sysDef.cpp:1520 +msgid "" +"used in some of Capcom's arcade boards. surround-like sampled sound with " +"echo." +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +#: src/engine/sysDef.cpp:2056 +msgid "PCM 1" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +#: src/engine/sysDef.cpp:2056 +msgid "PCM 2" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 3" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 4" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 5" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 6" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 7" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 8" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 9" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 10" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 11" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 12" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 13" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 14" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 15" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 16" +msgstr "" + +#: src/engine/sysDef.cpp:1521 +msgid "ADPCM 1" +msgstr "" + +#: src/engine/sysDef.cpp:1521 +msgid "ADPCM 2" +msgstr "" + +#: src/engine/sysDef.cpp:1521 +msgid "ADPCM 3" +msgstr "" + +#: src/engine/sysDef.cpp:1530 src/gui/settings.cpp:4048 +msgid "VERA" +msgstr "" + +#: src/engine/sysDef.cpp:1531 +msgid "the chip used in a computer design created by The 8-Bit Guy." +msgstr "" + +#: src/engine/sysDef.cpp:1538 +msgid "20xx: Set waveform" +msgstr "" + +#: src/engine/sysDef.cpp:1539 +msgid "22xx: Set duty cycle (0 to 3F)" +msgstr "" + +#: src/engine/sysDef.cpp:1544 +msgid "Yamaha YM2610B (OPNB2) Extended Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:1545 +msgid "" +"so Taito asked Yamaha if they could get the two missing FM channels back, " +"and Yamaha gladly provided them with this chip.\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:1557 +msgid "Yamaha YM2610B (OPNB2) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1558 +msgid "" +"so Taito asked Yamaha if they could get the two missing FM channels back, " +"and Yamaha gladly provided them with this chip.\n" +"CSM blah blah" +msgstr "" + +#: src/engine/sysDef.cpp:1570 +msgid "SegaPCM (compatible 5-channel mode)" +msgstr "" + +#: src/engine/sysDef.cpp:1571 +msgid "" +"this is the same thing as SegaPCM, but only exposes 5 of the channels for " +"compatibility with DefleMask." +msgstr "" + +#: src/engine/sysDef.cpp:1582 +msgid "Seta/Allumer X1-010" +msgstr "" + +#: src/engine/sysDef.cpp:1583 +msgid "" +"a sound chip used in several Seta/Allumer-manufactured arcade boards with " +"too many channels of wavetable sound, which also are capable of sampled " +"sound." +msgstr "" + +#: src/engine/sysDef.cpp:1591 +msgid "11xx: Set envelope shape" +msgstr "" + +#: src/engine/sysDef.cpp:1592 +msgid "12xx: Set sample bank slot (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1596 +msgid "20xx: Set PCM frequency (1 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1597 +msgid "" +"22xx: Set envelope mode (bit 0: enable; bit 1: one-shot; bit 2: split shape " +"to L/R; bit 3/5: H.invert right/left; bit 4/6: V.invert right/left)" +msgstr "" + +#: src/engine/sysDef.cpp:1598 +msgid "23xx: Set envelope period" +msgstr "" + +#: src/engine/sysDef.cpp:1606 +msgid "Konami Bubble System WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1607 +msgid "" +"this is the wavetable part of the Bubble System, which also had two " +"AY-3-8910s." +msgstr "" + +#: src/engine/sysDef.cpp:1619 +msgid "Yamaha YMF278B (OPL4)" +msgstr "" + +#: src/engine/sysDef.cpp:1620 +msgid "like OPL3, but this time it also has a 24-channel version of MultiPCM." +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 17" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 18" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 19" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 20" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 21" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 22" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 23" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 24" +msgstr "" + +#: src/engine/sysDef.cpp:1629 +msgid "Yamaha YMF278B (OPL4) with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1630 +msgid "the OPL4 but with drums mode turned on." +msgstr "" + +#: src/engine/sysDef.cpp:1638 +msgid "11xx: Set filter mode (00 to 03)" +msgstr "" + +#: src/engine/sysDef.cpp:1639 +msgid "14xx: Set filter coefficient K1 low byte (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1640 +msgid "15xx: Set filter coefficient K1 high byte (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1641 +msgid "16xx: Set filter coefficient K2 low byte (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1642 +msgid "17xx: Set filter coefficient K2 high byte (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1643 +msgid "18xx: Set filter coefficient K1 slide up (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1644 +msgid "19xx: Set filter coefficient K1 slide down (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1645 +msgid "1Axx: Set filter coefficient K2 slide up (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1646 +msgid "1Bxx: Set filter coefficient K2 slide down (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1647 +msgid "22xx: Set envelope left volume ramp (signed) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1648 +msgid "23xx: Set envelope right volume ramp (signed) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1649 +msgid "24xx: Set envelope filter coefficient k1 ramp (signed) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1650 +msgid "" +"25xx: Set envelope filter coefficient k1 ramp (signed, slower) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1651 +msgid "26xx: Set envelope filter coefficient k2 ramp (signed) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1652 +msgid "" +"27xx: Set envelope filter coefficient k2 ramp (signed, slower) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1656 +msgid "120x: Set pause (bit 0)" +msgstr "" + +#: src/engine/sysDef.cpp:1658 +msgid "2xxx: Set envelope count (000 to 1FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1659 +msgid "3xxx: Set filter coefficient K1 (000 to FFF)" +msgstr "" + +#: src/engine/sysDef.cpp:1660 +msgid "4xxx: Set filter coefficient K2 (000 to FFF)" +msgstr "" + +#: src/engine/sysDef.cpp:1667 +msgid "Ensoniq ES5506" +msgstr "" + +#: src/engine/sysDef.cpp:1668 +msgid "" +"a sample chip made by Ensoniq, which is the basis for the GF1 chip found in " +"Gravis' Ultrasound cards." +msgstr "" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 29" +msgstr "" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 30" +msgstr "" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 31" +msgstr "" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 32" +msgstr "" + +#: src/engine/sysDef.cpp:1679 +msgid "Yamaha Y8950" +msgstr "" + +#: src/engine/sysDef.cpp:1680 +msgid "like OPL but with an ADPCM channel." +msgstr "" + +#: src/engine/sysDef.cpp:1691 +msgid "Yamaha Y8950 with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1692 +msgid "the Y8950 chip, in drums mode." +msgstr "" + +#: src/engine/sysDef.cpp:1703 +msgid "Konami SCC+" +msgstr "" + +#: src/engine/sysDef.cpp:1704 +msgid "" +"this is a variant of Konami's SCC chip with the last channel's wavetable " +"being independent." +msgstr "" + +#: src/engine/sysDef.cpp:1715 +msgid "12xx: Set pulse width (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:1716 +msgid "13xx: Set resonance (0 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1717 +msgid "" +"14xx: Set filter mode (bit 0: ring mod; bit 1: low pass; bit 2: high pass; " +"bit 3: band pass)" +msgstr "" + +#: src/engine/sysDef.cpp:1718 +msgid "15xx: Set frequency sweep period low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1719 +msgid "16xx: Set frequency sweep period high byte" +msgstr "" + +#: src/engine/sysDef.cpp:1720 +msgid "17xx: Set volume sweep period low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1721 +msgid "18xx: Set volume sweep period high byte" +msgstr "" + +#: src/engine/sysDef.cpp:1722 +msgid "19xx: Set cutoff sweep period low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1723 +msgid "1Axx: Set cutoff sweep period high byte" +msgstr "" + +#: src/engine/sysDef.cpp:1724 +msgid "1Bxx: Set frequency sweep boundary" +msgstr "" + +#: src/engine/sysDef.cpp:1725 +msgid "1Cxx: Set volume sweep boundary" +msgstr "" + +#: src/engine/sysDef.cpp:1726 +msgid "1Dxx: Set cutoff sweep boundary" +msgstr "" + +#: src/engine/sysDef.cpp:1727 +msgid "1Exx: Set phase reset period low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1728 +msgid "1Fxx: Set phase reset period high byte" +msgstr "" + +#: src/engine/sysDef.cpp:1729 +msgid "20xx: Toggle frequency sweep (bit 0-6: speed; bit 7: direction is up)" +msgstr "" + +#: src/engine/sysDef.cpp:1730 +msgid "" +"21xx: Toggle volume sweep (bit 0-4: speed; bit 5: direction is up; bit 6: " +"loop; bit 7: alternate)" +msgstr "" + +#: src/engine/sysDef.cpp:1731 +msgid "22xx: Toggle cutoff sweep (bit 0-6: speed; bit 7: direction is up)" +msgstr "" + +#: src/engine/sysDef.cpp:1739 +msgid "tildearrow Sound Unit" +msgstr "" + +#: src/engine/sysDef.cpp:1740 +msgid "" +"tildearrow's fantasy sound chip. put SID, AY and VERA in a blender, and you " +"get this!" +msgstr "" + +#: src/engine/sysDef.cpp:1751 +msgid "OKI MSM6295" +msgstr "" + +#: src/engine/sysDef.cpp:1752 +msgid "an ADPCM sound chip manufactured by OKI and used in many arcade boards." +msgstr "" + +#: src/engine/sysDef.cpp:1759 +msgid "20xx: Set chip output rate (0: clock/132; 1: clock/165)" +msgstr "" + +#: src/engine/sysDef.cpp:1764 +msgid "OKI MSM6258" +msgstr "" + +#: src/engine/sysDef.cpp:1765 +msgid "an ADPCM sound chip manufactured by OKI and used in the Sharp X68000." +msgstr "" + +#: src/engine/sysDef.cpp:1766 src/engine/sysDef.cpp:1887 +#: src/gui/editControls.cpp:437 src/gui/settings.cpp:4223 +#: src/gui/guiConst.cpp:1397 src/gui/insEdit.cpp:2628 src/gui/insEdit.cpp:2666 +msgid "Sample" +msgstr "" + +#: src/engine/sysDef.cpp:1772 +msgid "20xx: Set frequency divider (0-2)" +msgstr "" + +#: src/engine/sysDef.cpp:1773 +msgid "21xx: Select clock rate (0: full; 1: half)" +msgstr "" + +#: src/engine/sysDef.cpp:1778 +msgid "Yamaha YMZ280B (PCMD8)" +msgstr "" + +#: src/engine/sysDef.cpp:1779 +msgid "" +"used in some arcade boards. Can play back either 4-bit ADPCM, 8-bit PCM or " +"16-bit PCM." +msgstr "" + +#: src/engine/sysDef.cpp:1797 src/gui/settings.cpp:4054 +msgid "Namco WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1798 +msgid "" +"a wavetable sound chip used in Pac-Man, among other early Namco arcade games." +msgstr "" + +#: src/engine/sysDef.cpp:1808 +msgid "Namco C15 WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1809 +msgid "" +"successor of the original Namco WSG chip, used in later Namco arcade games." +msgstr "" + +#: src/engine/sysDef.cpp:1819 +msgid "Namco C30 WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1820 +msgid "like Namco C15 but with stereo sound." +msgstr "" + +#: src/engine/sysDef.cpp:1830 +msgid "OKI MSM5232" +msgstr "" + +#: src/engine/sysDef.cpp:1831 +msgid "" +"a square wave additive synthesis chip made by OKI. used in some arcade " +"machines and instruments." +msgstr "" + +#: src/engine/sysDef.cpp:1839 +msgid "10xy: Set group control (x: sustain; y: part toggle bitmask)" +msgstr "" + +#: src/engine/sysDef.cpp:1840 src/engine/sysDef.cpp:1998 +msgid "11xx: Set noise mode" +msgstr "" + +#: src/engine/sysDef.cpp:1841 +msgid "12xx: Set group attack (0 to 5)" +msgstr "" + +#: src/engine/sysDef.cpp:1842 +msgid "13xx: Set group decay (0 to 11)" +msgstr "" + +#: src/engine/sysDef.cpp:1847 +msgid "Yamaha YM2612 (OPN2) with DualPCM" +msgstr "" + +#: src/engine/sysDef.cpp:1848 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this system uses software mixing to provide two sample channels." +msgstr "" + +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +msgid "FM 6/PCM 1" +msgstr "" + +#: src/engine/sysDef.cpp:1859 +msgid "Yamaha YM2612 (OPN2) Extended Channel 3 with DualPCM and CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1860 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this system uses software mixing to provide two sample channels.\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:1872 src/gui/settings.cpp:4024 +msgid "T6W28" +msgstr "" + +#: src/engine/sysDef.cpp:1873 +msgid "" +"an SN76489 derivative used in Neo Geo Pocket, has independent stereo volume " +"and noise channel frequency." +msgstr "" + +#: src/engine/sysDef.cpp:1880 +msgid "20xx: Set noise length (0: short, 1: long)" +msgstr "" + +#: src/engine/sysDef.cpp:1885 +msgid "Generic PCM DAC" +msgstr "" + +#: src/engine/sysDef.cpp:1886 +msgid "as generic sample playback as it gets." +msgstr "" + +#: src/engine/sysDef.cpp:1898 +msgid "Konami K007232" +msgstr "" + +#: src/engine/sysDef.cpp:1899 +msgid "this PCM chip was widely used at Konami arcade boards in 1986-1990." +msgstr "" + +#: src/engine/sysDef.cpp:1908 +msgid "Irem GA20" +msgstr "" + +#: src/engine/sysDef.cpp:1909 +msgid "" +"yet another PCM chip from Irem. like Amiga, but less pitch resolution and no " +"sample loop." +msgstr "" + +#: src/engine/sysDef.cpp:1918 +msgid "Sharp SM8521" +msgstr "" + +#: src/engine/sysDef.cpp:1919 +msgid "a SoC with wavetable sound hardware." +msgstr "" + +#: src/engine/sysDef.cpp:1929 +msgid "Casio PV-1000" +msgstr "" + +#: src/engine/sysDef.cpp:1930 +msgid "" +"a game console with 3 channels of square wave. it's what happens after " +"fusing TIA and VIC together." +msgstr "" + +#: src/engine/sysDef.cpp:1937 +msgid "10xx: Set ring modulation (0: disable, 1: enable)" +msgstr "" + +#: src/engine/sysDef.cpp:1942 +msgid "ZX Spectrum Beeper (QuadTone Engine)" +msgstr "" + +#: src/engine/sysDef.cpp:1943 +msgid "" +"another ZX Spectrum beeper system with full PWM pulses and 3-level volume " +"per channel. it also has a pitchable overlay sample channel." +msgstr "" + +#: src/engine/sysDef.cpp:1955 +msgid "Konami K053260" +msgstr "" + +#: src/engine/sysDef.cpp:1956 +msgid "this PCM chip was widely used at Konami arcade boards in 1990-1992." +msgstr "" + +#: src/engine/sysDef.cpp:1968 +msgid "MOS Technology TED" +msgstr "" + +#: src/engine/sysDef.cpp:1969 +msgid "" +"two square waves (one may be turned into noise). used in the Commodore " +"Plus/4, 16 and 116." +msgstr "" + +#: src/engine/sysDef.cpp:1978 +msgid "Namco C140" +msgstr "" + +#: src/engine/sysDef.cpp:1979 +msgid "Namco's first PCM chip from 1987. it's pretty good for being so." +msgstr "" + +#: src/engine/sysDef.cpp:1989 +msgid "Namco C219" +msgstr "" + +#: src/engine/sysDef.cpp:1990 +msgid "" +"Namco's PCM chip used in their NA-1/2 hardware.\n" +"very similar to C140, but has noise generator." +msgstr "" + +#: src/engine/sysDef.cpp:1999 +msgid "12xy: Set invert mode (x: surround; y: invert)" +msgstr "" + +#: src/engine/sysDef.cpp:2004 +msgid "ESS ES1xxx series (ESFM)" +msgstr "" + +#: src/engine/sysDef.cpp:2005 +msgid "" +"a unique FM synth featured in PC sound cards.\n" +"based on the OPL3 design, but with lots of its features extended." +msgstr "" + +#: src/engine/sysDef.cpp:2006 +msgid "FM 11" +msgstr "" + +#: src/engine/sysDef.cpp:2012 +msgid "2Exx: Toggle hard envelope reset on new notes" +msgstr "" + +#: src/engine/sysDef.cpp:2018 +msgid "PowerNoise" +msgstr "" + +#: src/engine/sysDef.cpp:2019 +msgid "" +"a fantasy sound chip designed by jvsTSX and The Beesh-Spweesh!\n" +"used in the Hexheld fantasy console." +msgstr "" + +#: src/engine/sysDef.cpp:2020 +msgid "Noise 1" +msgstr "" + +#: src/engine/sysDef.cpp:2020 +msgid "Noise 2" +msgstr "" + +#: src/engine/sysDef.cpp:2020 +msgid "Noise 3" +msgstr "" + +#: src/engine/sysDef.cpp:2020 +msgid "Slope" +msgstr "" + +#: src/engine/sysDef.cpp:2026 +msgid "" +"20xx: Load low byte of noise channel LFSR (00 to FF) or slope channel " +"accumulator (00 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:2027 +msgid "21xx: Load high byte of noise channel LFSR (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:2028 +msgid "22xx: Write to I/O port A" +msgstr "" + +#: src/engine/sysDef.cpp:2029 +msgid "23xx: Write to I/O port B" +msgstr "" + +#: src/engine/sysDef.cpp:2035 src/gui/settings.cpp:4079 +msgid "Dave" +msgstr "" + +#: src/engine/sysDef.cpp:2036 +msgid "" +"this chip was featured in the Enterprise 128 computer. it is similar to " +"POKEY, but with stereo output." +msgstr "" + +#: src/engine/sysDef.cpp:2037 +msgid "DAC Left" +msgstr "" + +#: src/engine/sysDef.cpp:2037 +msgid "DAC Right" +msgstr "" + +#: src/engine/sysDef.cpp:2043 +msgid "10xx: Set waveform (0 to 4; 0 to 3 on noise)" +msgstr "" + +#: src/engine/sysDef.cpp:2044 +msgid "11xx: Set noise frequency source (0: fixed; 1-3: channels 1 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:2045 +msgid "12xx: Toggle high-pass with next channel" +msgstr "" + +#: src/engine/sysDef.cpp:2046 +msgid "13xx: Toggle ring modulation with channel+2" +msgstr "" + +#: src/engine/sysDef.cpp:2047 +msgid "14xx: Toggle swap counters (noise only)" +msgstr "" + +#: src/engine/sysDef.cpp:2048 +msgid "15xx: Toggle low pass (noise only)" +msgstr "" + +#: src/engine/sysDef.cpp:2049 +msgid "16xx: Set clock divider (0: /2; 1: /3)" +msgstr "" + +#: src/engine/sysDef.cpp:2054 +msgid "Game Boy Advance DMA Sound" +msgstr "" + +#: src/engine/sysDef.cpp:2055 +msgid "" +"additional PCM FIFO channels in Game Boy Advance driven directly by its DMA " +"hardware." +msgstr "" + +#: src/engine/sysDef.cpp:2068 +msgid "Game Boy Advance MinMod" +msgstr "" + +#: src/engine/sysDef.cpp:2069 +msgid "" +"additional PCM FIFO channels in Game Boy Advance driven by software mixing " +"to provide up to sixteen sample channels" +msgstr "" + +#: src/engine/sysDef.cpp:2078 +msgid "11xy: Set echo channel (x: left/right source; y: delay (0 disables))" +msgstr "" + +#: src/engine/sysDef.cpp:2079 +msgid "12xy: Toggle invert (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:2084 src/gui/settings.cpp:4080 +msgid "Nintendo DS" +msgstr "" + +#: src/engine/sysDef.cpp:2085 +msgid "a handheld video game console with two screens. it uses a stylus." +msgstr "" + +#: src/engine/sysDef.cpp:2093 +msgid "1Fxx: Set global volume (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:2098 +msgid "5E01" +msgstr "" + +#: src/engine/sysDef.cpp:2099 +msgid "" +"a fantasy sound chip created by Euly. it is based on Ricoh 2A03, adding a " +"couple features such as 32 noise pitches, an extra duty cycle, and three " +"waveforms (besides triangle)." +msgstr "" + +#: src/engine/sysDef.cpp:2107 +msgid "" +"12xx: Set duty cycle/noise mode/waveform (pulse/wave: 0 to 3; noise: 0 or 1)" +msgstr "" + +#: src/engine/sysDef.cpp:2120 src/gui/settings.cpp:4083 +msgid "Bifurcator" +msgstr "" + +#: src/engine/sysDef.cpp:2121 +msgid "a fantasy sound chip using logistic map iterations to generate sound." +msgstr "" + +#: src/engine/sysDef.cpp:2128 +msgid "10xx: Load low byte of channel sample state" +msgstr "" + +#: src/engine/sysDef.cpp:2129 +msgid "11xx: Load high byte of channel sample state" +msgstr "" + +#: src/engine/sysDef.cpp:2130 +msgid "12xx: Set low byte of channel parameter" +msgstr "" + +#: src/engine/sysDef.cpp:2131 +msgid "13xx: Set high byte of channel parameter" +msgstr "" + +#: src/engine/sysDef.cpp:2136 src/gui/settings.cpp:4084 +msgid "SID2" +msgstr "" + +#: src/engine/sysDef.cpp:2137 +msgid "" +"a fantasy sound chip created by LTVA. it is similar to the SID chip, but " +"with many of its problems fixed." +msgstr "" + +#: src/engine/sysDef.cpp:2148 +msgid "Dummy System" +msgstr "" + +#: src/engine/sysDef.cpp:2149 +msgid "this is a system designed for testing purposes." +msgstr "" + +#: src/engine/engine.cpp:51 +msgid "00xy: Arpeggio" +msgstr "" + +#: src/engine/engine.cpp:53 +msgid "01xx: Pitch slide up" +msgstr "" + +#: src/engine/engine.cpp:55 +msgid "02xx: Pitch slide down" +msgstr "" + +#: src/engine/engine.cpp:57 +msgid "03xx: Portamento" +msgstr "" + +#: src/engine/engine.cpp:59 +msgid "04xy: Vibrato (x: speed; y: depth)" +msgstr "" + +#: src/engine/engine.cpp:61 +msgid "05xy: Volume slide + vibrato (compatibility only!)" +msgstr "" + +#: src/engine/engine.cpp:63 +msgid "06xy: Volume slide + portamento (compatibility only!)" +msgstr "" + +#: src/engine/engine.cpp:65 +msgid "07xy: Tremolo (x: speed; y: depth)" +msgstr "" + +#: src/engine/engine.cpp:67 +msgid "08xy: Set panning (x: left; y: right)" +msgstr "" + +#: src/engine/engine.cpp:69 +msgid "09xx: Set groove pattern (speed 1 if no grooves exist)" +msgstr "" + +#: src/engine/engine.cpp:71 +msgid "0Axy: Volume slide (0y: down; x0: up)" +msgstr "" + +#: src/engine/engine.cpp:73 +msgid "0Bxx: Jump to pattern" +msgstr "" + +#: src/engine/engine.cpp:75 +msgid "0Cxx: Retrigger" +msgstr "" + +#: src/engine/engine.cpp:77 +msgid "0Dxx: Jump to next pattern" +msgstr "" + +#: src/engine/engine.cpp:79 +msgid "0Fxx: Set speed (speed 2 if no grooves exist)" +msgstr "" + +#: src/engine/engine.cpp:81 +msgid "80xx: Set panning (00: left; 80: center; FF: right)" +msgstr "" + +#: src/engine/engine.cpp:83 +msgid "81xx: Set panning (left channel)" +msgstr "" + +#: src/engine/engine.cpp:85 +msgid "82xx: Set panning (right channel)" +msgstr "" + +#: src/engine/engine.cpp:87 +msgid "88xy: Set panning (rear channels; x: left; y: right)" +msgstr "" + +#: src/engine/engine.cpp:90 +msgid "89xx: Set panning (rear left channel)" +msgstr "" + +#: src/engine/engine.cpp:93 +msgid "8Axx: Set panning (rear right channel)" +msgstr "" + +#: src/engine/engine.cpp:96 +msgid "Cxxx: Set tick rate (hz)" +msgstr "" + +#: src/engine/engine.cpp:98 +msgid "E0xx: Set arp speed" +msgstr "" + +#: src/engine/engine.cpp:100 +msgid "E1xy: Note slide up (x: speed; y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:102 +msgid "E2xy: Note slide down (x: speed; y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:104 +msgid "E3xx: Set vibrato shape (0: up/down; 1: up only; 2: down only)" +msgstr "" + +#: src/engine/engine.cpp:106 +msgid "E4xx: Set vibrato range" +msgstr "" + +#: src/engine/engine.cpp:108 +msgid "E5xx: Set pitch (80: center)" +msgstr "" + +#: src/engine/engine.cpp:110 +msgid "E6xy: Quick legato (x: time (0-7 up; 8-F down); y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:112 +msgid "E7xx: Macro release" +msgstr "" + +#: src/engine/engine.cpp:114 +msgid "E8xy: Quick legato up (x: time; y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:116 +msgid "E9xy: Quick legato down (x: time; y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:118 +msgid "EAxx: Legato" +msgstr "" + +#: src/engine/engine.cpp:120 +msgid "EBxx: Set LEGACY sample mode bank" +msgstr "" + +#: src/engine/engine.cpp:122 +msgid "ECxx: Note cut" +msgstr "" + +#: src/engine/engine.cpp:124 +msgid "EDxx: Note delay" +msgstr "" + +#: src/engine/engine.cpp:126 +msgid "EExx: Send external command" +msgstr "" + +#: src/engine/engine.cpp:128 +msgid "F0xx: Set tick rate (bpm)" +msgstr "" + +#: src/engine/engine.cpp:130 +msgid "F1xx: Single tick note slide up" +msgstr "" + +#: src/engine/engine.cpp:132 +msgid "F2xx: Single tick note slide down" +msgstr "" + +#: src/engine/engine.cpp:134 +msgid "F3xx: Fine volume slide up" +msgstr "" + +#: src/engine/engine.cpp:136 +msgid "F4xx: Fine volume slide down" +msgstr "" + +#: src/engine/engine.cpp:138 +msgid "F5xx: Disable macro (see manual)" +msgstr "" + +#: src/engine/engine.cpp:140 +msgid "F6xx: Enable macro (see manual)" +msgstr "" + +#: src/engine/engine.cpp:142 +msgid "F7xx: Restart macro (see manual)" +msgstr "" + +#: src/engine/engine.cpp:144 +msgid "F8xx: Single tick volume slide up" +msgstr "" + +#: src/engine/engine.cpp:146 +msgid "F9xx: Single tick volume slide down" +msgstr "" + +#: src/engine/engine.cpp:148 +msgid "FAxx: Fast volume slide (0y: down; x0: up)" +msgstr "" + +#: src/engine/engine.cpp:150 +msgid "FCxx: Note release" +msgstr "" + +#: src/engine/engine.cpp:152 +msgid "FDxx: Set virtual tempo numerator" +msgstr "" + +#: src/engine/engine.cpp:154 +msgid "FExx: Set virtual tempo denominator" +msgstr "" + +#: src/engine/engine.cpp:156 +msgid "FFxx: Stop song" +msgstr "" + +#: src/engine/engine.cpp:160 +msgid "9xxx: Set sample offset*256" +msgstr "" + +#: src/engine/engine.cpp:164 +msgid "90xx: Set sample offset (first byte)" +msgstr "" + +#: src/engine/engine.cpp:166 +msgid "91xx: Set sample offset (second byte, ×256)" +msgstr "" + +#: src/engine/engine.cpp:168 +msgid "92xx: Set sample offset (third byte, ×65536)" +msgstr "" + +#: src/engine/engine.cpp:187 src/gui/settings.cpp:4127 +msgid "Invalid effect" +msgstr "" + +#: src/engine/engine.cpp:354 src/gui/gui.cpp:2259 src/gui/gui.cpp:2422 +#, c-format +msgid "on seek: %s" +msgstr "" + +#: src/engine/engine.cpp:361 src/gui/gui.cpp:2266 src/gui/gui.cpp:2429 +#, c-format +msgid "on pre tell: %s" +msgstr "" + +#: src/engine/engine.cpp:368 src/engine/engine.cpp:2768 +#: src/gui/settings.cpp:5811 src/gui/gui.cpp:2273 src/gui/gui.cpp:2436 +msgid "file is empty" +msgstr "" + +#: src/engine/engine.cpp:371 src/gui/gui.cpp:2276 src/gui/gui.cpp:2439 +#, c-format +msgid "on tell: %s" +msgstr "" + +#: src/engine/engine.cpp:378 +#, c-format +msgid "ROM size mismatch, expected: %d bytes, was: %d" +msgstr "" + +#: src/engine/engine.cpp:383 src/gui/settings.cpp:5820 src/gui/gui.cpp:2283 +#: src/gui/gui.cpp:2446 +#, c-format +msgid "on get size: %s" +msgstr "" + +#: src/engine/engine.cpp:390 src/gui/settings.cpp:5827 src/gui/gui.cpp:2290 +#: src/gui/gui.cpp:2453 +#, c-format +msgid "on read: %s" +msgstr "" + +#: src/engine/engine.cpp:1076 src/engine/engine.cpp:1181 +#: src/engine/engine.cpp:1290 +msgid "invalid index" +msgstr "" + +#: src/engine/engine.cpp:1080 src/engine/engine.cpp:1135 +#: src/engine/engine.cpp:1189 +#, c-format +msgid "max number of total channels is %d" +msgstr "" + +#: src/engine/engine.cpp:1131 src/engine/engine.cpp:1185 +#, c-format +msgid "max number of systems is %d" +msgstr "" + +#: src/engine/engine.cpp:1286 +msgid "cannot remove the last one" +msgstr "" + +#: src/engine/engine.cpp:1460 +msgid "source and destination are equal" +msgstr "" + +#: src/engine/engine.cpp:1464 +msgid "invalid source index" +msgstr "" + +#: src/engine/engine.cpp:1468 +msgid "invalid destination index" +msgstr "" + +#: src/engine/engine.cpp:2636 +#, c-format +msgid "Instrument %d" +msgstr "" + +#: src/engine/engine.cpp:2710 src/engine/engine.cpp:2727 +#: src/gui/doAction.cpp:825 src/gui/doAction.cpp:843 src/gui/doAction.cpp:1634 +#: src/gui/gui.cpp:6159 src/gui/insEdit.cpp:6860 +msgid "too many wavetables!" +msgstr "" + +#: src/engine/engine.cpp:2752 +#, c-format +msgid "could not seek to end: %s" +msgstr "" + +#: src/engine/engine.cpp:2758 +#, c-format +msgid "could not determine file size: %s" +msgstr "" + +#: src/engine/engine.cpp:2763 +msgid "file size is invalid!" +msgstr "" + +#: src/engine/engine.cpp:2773 +#, c-format +msgid "could not seek to beginning: %s" +msgstr "" + +#: src/engine/engine.cpp:2780 +#, c-format +msgid "could not read entire file: %s" +msgstr "" + +#: src/engine/engine.cpp:2806 +msgid "invalid wavetable header/data!" +msgstr "" + +#: src/engine/engine.cpp:2877 +msgid "premature end of file" +msgstr "" + +#: src/engine/engine.cpp:2904 src/engine/engine.cpp:2926 +#: src/gui/doAction.cpp:909 src/gui/doAction.cpp:921 +msgid "too many samples!" +msgstr "" + +#: src/engine/engine.cpp:2911 +#, c-format +msgid "Sample %d" +msgstr "" + +#: src/engine/engine.cpp:3056 +#, c-format +msgid "no free patterns in channel %d!" +msgstr "" + +#: src/gui/mixer.cpp:28 src/gui/insEdit.cpp:484 +msgid "left" +msgstr "" + +#: src/gui/mixer.cpp:29 src/gui/insEdit.cpp:483 +msgid "right" +msgstr "" + +#: src/gui/mixer.cpp:128 +msgid "input" +msgstr "" + +#: src/gui/mixer.cpp:168 +msgid "output" +msgstr "" + +#: src/gui/mixer.cpp:226 src/gui/mixer.cpp:228 src/gui/editControls.cpp:454 +#: src/gui/guiConst.cpp:593 +msgid "Mixer" +msgstr "" + +#: src/gui/mixer.cpp:229 +msgid "Master Volume" +msgstr "" + +#: src/gui/mixer.cpp:250 src/gui/exportOptions.cpp:90 +#: src/gui/userPresets.cpp:393 src/gui/userPresets.cpp:405 +#: src/gui/settings.cpp:1080 src/gui/settings.cpp:1094 +#: src/gui/waveEdit.cpp:1096 src/gui/sampleEdit.cpp:1128 +#: src/gui/insEdit.cpp:519 +msgid "Invert" +msgstr "" + +#: src/gui/mixer.cpp:268 src/gui/chanOsc.cpp:37 src/gui/userPresets.cpp:417 +#: src/gui/settings.cpp:263 src/gui/settings.cpp:1109 src/gui/settings.cpp:1492 +#: src/gui/settings.cpp:1504 src/gui/settings.cpp:3369 +#: src/gui/settings.cpp:4015 src/gui/findReplace.cpp:687 +#: src/gui/findReplace.cpp:943 src/gui/guiConst.cpp:228 +#: src/gui/sampleEdit.cpp:1003 src/gui/insEdit.cpp:5575 +#: src/gui/insEdit.cpp:5660 src/gui/insEdit.cpp:6920 src/gui/insEdit.cpp:6928 +#: src/gui/insEdit.cpp:6936 src/gui/insEdit.cpp:6946 src/gui/insEdit.cpp:6961 +#: src/gui/insEdit.cpp:6975 src/gui/insEdit.cpp:6987 src/gui/insEdit.cpp:7000 +#: src/gui/insEdit.cpp:7016 src/gui/insEdit.cpp:7022 src/gui/insEdit.cpp:7032 +#: src/gui/insEdit.cpp:7039 src/gui/insEdit.cpp:7045 src/gui/insEdit.cpp:7058 +#: src/gui/insEdit.cpp:7065 src/gui/insEdit.cpp:7072 src/gui/insEdit.cpp:7081 +#: src/gui/insEdit.cpp:7091 src/gui/insEdit.cpp:7099 src/gui/insEdit.cpp:7105 +#: src/gui/insEdit.cpp:7113 src/gui/insEdit.cpp:7120 src/gui/insEdit.cpp:7126 +#: src/gui/insEdit.cpp:7136 src/gui/insEdit.cpp:7148 src/gui/insEdit.cpp:7156 +#: src/gui/insEdit.cpp:7172 src/gui/insEdit.cpp:7177 src/gui/insEdit.cpp:7190 +#: src/gui/insEdit.cpp:7197 src/gui/insEdit.cpp:7208 src/gui/insEdit.cpp:7221 +#: src/gui/insEdit.cpp:7230 src/gui/insEdit.cpp:7237 src/gui/insEdit.cpp:7245 +#: src/gui/insEdit.cpp:7258 src/gui/insEdit.cpp:7263 src/gui/insEdit.cpp:7269 +#: src/gui/insEdit.cpp:7276 src/gui/insEdit.cpp:7284 src/gui/insEdit.cpp:7295 +#: src/gui/insEdit.cpp:7302 src/gui/insEdit.cpp:7310 src/gui/insEdit.cpp:7318 +#: src/gui/insEdit.cpp:7327 src/gui/insEdit.cpp:7335 src/gui/insEdit.cpp:7341 +#: src/gui/insEdit.cpp:7347 src/gui/insEdit.cpp:7353 src/gui/insEdit.cpp:7358 +#: src/gui/insEdit.cpp:7365 src/gui/insEdit.cpp:7372 src/gui/insEdit.cpp:7380 +#: src/gui/insEdit.cpp:7389 src/gui/insEdit.cpp:7397 src/gui/insEdit.cpp:7409 +#: src/gui/insEdit.cpp:7422 src/gui/insEdit.cpp:7433 src/gui/insEdit.cpp:7443 +#: src/gui/insEdit.cpp:7451 src/gui/insEdit.cpp:7461 src/gui/insEdit.cpp:7470 +msgid "Volume" +msgstr "" + +#: src/gui/mixer.cpp:279 src/gui/userPresets.cpp:427 src/gui/settings.cpp:1120 +#: src/gui/guiConst.cpp:229 src/gui/insEdit.cpp:6923 src/gui/insEdit.cpp:6930 +#: src/gui/insEdit.cpp:6941 src/gui/insEdit.cpp:6965 src/gui/insEdit.cpp:7067 +#: src/gui/insEdit.cpp:7108 src/gui/insEdit.cpp:7152 src/gui/insEdit.cpp:7192 +#: src/gui/insEdit.cpp:7212 src/gui/insEdit.cpp:7232 src/gui/insEdit.cpp:7240 +#: src/gui/insEdit.cpp:7253 src/gui/insEdit.cpp:7265 src/gui/insEdit.cpp:7271 +#: src/gui/insEdit.cpp:7287 src/gui/insEdit.cpp:7297 src/gui/insEdit.cpp:7360 +#: src/gui/insEdit.cpp:7392 src/gui/insEdit.cpp:7438 src/gui/insEdit.cpp:7446 +msgid "Panning" +msgstr "" + +#: src/gui/mixer.cpp:290 src/gui/userPresets.cpp:433 src/gui/settings.cpp:1127 +msgid "Front/Rear" +msgstr "" + +#: src/gui/mixer.cpp:299 src/gui/settings.cpp:4208 +msgid "Patchbay" +msgstr "" + +#: src/gui/mixer.cpp:305 +msgid "Automatic patchbay" +msgstr "" + +#: src/gui/mixer.cpp:310 +msgid "Display hidden ports" +msgstr "" + +#: src/gui/mixer.cpp:312 +msgid "Display internal" +msgstr "" + +#: src/gui/mixer.cpp:322 src/gui/mixer.cpp:383 src/gui/settings.cpp:1901 +#: src/gui/settings.cpp:2089 src/gui/songInfo.cpp:69 +msgid "System" +msgstr "" + +#: src/gui/mixer.cpp:354 +msgid "Sample Preview" +msgstr "" + +#: src/gui/mixer.cpp:367 src/gui/editControls.cpp:745 +#: src/gui/editControls.cpp:837 src/gui/editControls.cpp:953 +#: src/gui/editControls.cpp:1093 src/gui/settings.cpp:1490 +#: src/gui/guiConst.cpp:558 +msgid "Metronome" +msgstr "" + +#: src/gui/mixer.cpp:446 +msgid "disconnect all" +msgstr "" + +#: src/gui/editing.cpp:200 +#, c-format +msgid "no data in oldPatMap for channel %d!" +msgstr "" + +#: src/gui/editing.cpp:664 src/gui/editing.cpp:1203 +#, c-format +msgid "invalid clipboard data! failed at line %d char %d" +msgstr "" + +#: src/gui/editing.cpp:1565 src/gui/editing.cpp:1669 +msgid "can't collapse any further!" +msgstr "" + +#: src/gui/editing.cpp:1749 +msgid "can't expand any further!" +msgstr "" + +#: src/gui/editing.cpp:1836 src/gui/editing.cpp:1851 +#, c-format +msgid "copy: %s" +msgstr "" + +#: src/gui/memory.cpp:35 src/gui/settings.cpp:3696 src/gui/settings.cpp:4217 +#: src/gui/guiConst.cpp:613 +msgid "Memory Composition" +msgstr "" + +#: src/gui/memory.cpp:146 +#, c-format +msgid "bank %d" +msgstr "" + +#: src/gui/memory.cpp:175 src/gui/memory.cpp:176 +msgid "no chips with memory" +msgstr "" + +#: src/gui/intro.cpp:89 src/gui/gui.cpp:2345 src/gui/gui.cpp:3746 +#: src/gui/gui.cpp:5019 src/gui/gui.cpp:5041 src/gui/gui.cpp:5479 +#: src/gui/gui.cpp:5781 src/gui/gui.cpp:5791 +#, c-format +msgid "Error while loading file! (%s)" +msgstr "" + +#: src/gui/intro.cpp:122 +msgid "IntroMon X" +msgstr "" + +#: src/gui/intro.cpp:122 +msgid "Intro" +msgstr "" + +#: src/gui/intro.cpp:124 +msgid "Preview" +msgstr "" + +#: src/gui/intro.cpp:176 src/gui/intro.cpp:177 src/gui/intro.cpp:178 +msgid "SORRY NOTHING" +msgstr "" + +#: src/gui/intro.cpp:310 +msgid "hold to skip" +msgstr "" + +#: src/gui/dataList.cpp:76 +msgid "Bug!" +msgstr "" + +#: src/gui/dataList.cpp:79 src/gui/util.cpp:107 src/gui/util.cpp:109 +#: src/gui/settings.cpp:4220 src/gui/insEdit.cpp:5334 +msgid "Unknown" +msgstr "" + +#: src/gui/dataList.cpp:136 src/gui/dataList.cpp:260 +msgid "duplicate" +msgstr "" + +#: src/gui/dataList.cpp:139 src/gui/dataList.cpp:263 src/gui/dataList.cpp:388 +#: src/gui/dataList.cpp:731 src/gui/dataList.cpp:867 +msgid "replace..." +msgstr "" + +#: src/gui/dataList.cpp:142 src/gui/dataList.cpp:266 src/gui/gui.cpp:4232 +msgid "save" +msgstr "" + +#: src/gui/dataList.cpp:145 +msgid "save (.dmp)" +msgstr "" + +#: src/gui/dataList.cpp:148 src/gui/dataList.cpp:269 src/gui/dataList.cpp:617 +#: src/gui/dataList.cpp:994 src/gui/dataList.cpp:1040 +#: src/gui/editControls.cpp:50 src/gui/gui.cpp:2767 src/gui/gui.cpp:2776 +msgid "delete" +msgstr "" + +#: src/gui/dataList.cpp:243 +msgid "out of memory for this sample!" +msgstr "" + +#: src/gui/dataList.cpp:254 +msgid "make instrument" +msgstr "" + +#: src/gui/dataList.cpp:257 +msgid "make me a drum kit" +msgstr "" + +#: src/gui/dataList.cpp:290 src/gui/dataList.cpp:593 src/gui/gui.cpp:5914 +msgid "Instruments" +msgstr "" + +#: src/gui/dataList.cpp:312 src/gui/dataList.cpp:714 src/gui/dataList.cpp:846 +#: src/gui/subSongs.cpp:88 src/gui/insEdit.cpp:520 +msgid "Add" +msgstr "" + +#: src/gui/dataList.cpp:338 src/gui/dataList.cpp:721 src/gui/dataList.cpp:853 +#: src/gui/subSongs.cpp:108 +msgid "Duplicate" +msgstr "" + +#: src/gui/dataList.cpp:359 src/gui/dataList.cpp:728 src/gui/dataList.cpp:860 +#: src/gui/editControls.cpp:497 src/gui/waveEdit.cpp:435 +#: src/gui/waveEdit.cpp:467 src/gui/sampleEdit.cpp:122 +#: src/gui/sampleEdit.cpp:171 src/gui/insEdit.cpp:5239 src/gui/insEdit.cpp:5304 +msgid "Open" +msgstr "" + +#: src/gui/dataList.cpp:363 +msgid "replace instrument..." +msgstr "" + +#: src/gui/dataList.cpp:366 +msgid "load instrument from TX81Z" +msgstr "" + +#: src/gui/dataList.cpp:372 +msgid "replace wavetable..." +msgstr "" + +#: src/gui/dataList.cpp:378 +msgid "replace sample..." +msgstr "" + +#: src/gui/dataList.cpp:381 +msgid "import raw sample..." +msgstr "" + +#: src/gui/dataList.cpp:384 +msgid "import raw sample (replace)..." +msgstr "" + +#: src/gui/dataList.cpp:392 +msgid "load from TX81Z" +msgstr "" + +#: src/gui/dataList.cpp:399 +msgid "Open (insert; right-click to replace)" +msgstr "" + +#: src/gui/dataList.cpp:420 src/gui/dataList.cpp:741 src/gui/dataList.cpp:884 +#: src/gui/editControls.cpp:502 src/gui/waveEdit.cpp:474 +#: src/gui/sampleEdit.cpp:184 src/gui/insEdit.cpp:5311 +msgid "Save" +msgstr "" + +#: src/gui/dataList.cpp:424 +msgid "save instrument as .dmp..." +msgstr "" + +#: src/gui/dataList.cpp:430 +msgid "save wavetable as .dmw..." +msgstr "" + +#: src/gui/dataList.cpp:433 +msgid "save raw wavetable..." +msgstr "" + +#: src/gui/dataList.cpp:439 +msgid "save raw sample..." +msgstr "" + +#: src/gui/dataList.cpp:443 src/gui/insEdit.cpp:5314 +msgid "save as .dmp..." +msgstr "" + +#: src/gui/dataList.cpp:456 src/gui/dataList.cpp:761 src/gui/dataList.cpp:903 +msgid "Toggle folders/standard view" +msgstr "" + +#: src/gui/dataList.cpp:478 src/gui/dataList.cpp:769 src/gui/dataList.cpp:911 +#: src/gui/subSongs.cpp:55 +msgid "Move up" +msgstr "" + +#: src/gui/dataList.cpp:499 src/gui/dataList.cpp:776 src/gui/dataList.cpp:918 +#: src/gui/subSongs.cpp:62 +msgid "Move down" +msgstr "" + +#: src/gui/dataList.cpp:510 src/gui/dataList.cpp:787 src/gui/dataList.cpp:929 +msgid "Create" +msgstr "" + +#: src/gui/dataList.cpp:540 src/gui/dataList.cpp:797 src/gui/dataList.cpp:939 +msgid "New folder" +msgstr "" + +#: src/gui/dataList.cpp:549 src/gui/dataList.cpp:947 +msgid "Preview (right click to stop)" +msgstr "" + +#: src/gui/dataList.cpp:576 src/gui/dataList.cpp:807 src/gui/dataList.cpp:959 +#: src/gui/guiConst.cpp:666 src/gui/sampleEdit.cpp:1105 +msgid "Delete" +msgstr "" + +#: src/gui/dataList.cpp:608 src/gui/dataList.cpp:985 src/gui/dataList.cpp:1031 +msgid "" +msgstr "" + +#: src/gui/dataList.cpp:614 src/gui/dataList.cpp:991 src/gui/dataList.cpp:1037 +msgid "rename..." +msgstr "" + +#: src/gui/dataList.cpp:663 src/gui/dataList.cpp:707 src/gui/gui.cpp:5923 +msgid "Wavetables" +msgstr "" + +#: src/gui/dataList.cpp:674 src/gui/dataList.cpp:839 src/gui/xyOsc.cpp:68 +#: src/gui/sampleEdit.cpp:898 src/gui/sampleEdit.cpp:1072 src/gui/gui.cpp:5932 +msgid "Samples" +msgstr "" + +#: src/gui/dataList.cpp:745 src/gui/waveEdit.cpp:477 +msgid "save as .dmw..." +msgstr "" + +#: src/gui/dataList.cpp:748 src/gui/dataList.cpp:891 src/gui/waveEdit.cpp:480 +#: src/gui/sampleEdit.cpp:187 +msgid "save raw..." +msgstr "" + +#: src/gui/dataList.cpp:871 src/gui/sampleEdit.cpp:174 +msgid "import raw..." +msgstr "" + +#: src/gui/dataList.cpp:874 +msgid "import raw (replace)..." +msgstr "" + +#: src/gui/exportOptions.cpp:29 +msgid "Export type:" +msgstr "" + +#: src/gui/exportOptions.cpp:32 +msgid "one file" +msgstr "" + +#: src/gui/exportOptions.cpp:35 +msgid "multiple files (one per chip)" +msgstr "" + +#: src/gui/exportOptions.cpp:38 +msgid "multiple files (one per channel)" +msgstr "" + +#: src/gui/exportOptions.cpp:44 +msgid "Bit depth:" +msgstr "" + +#: src/gui/exportOptions.cpp:46 +msgid "16-bit integer" +msgstr "" + +#: src/gui/exportOptions.cpp:49 +msgid "32-bit float" +msgstr "" + +#: src/gui/exportOptions.cpp:55 src/gui/settings.cpp:1352 src/gui/gui.cpp:6270 +msgid "Sample rate" +msgstr "" + +#: src/gui/exportOptions.cpp:61 +msgid "Channels in file" +msgstr "" + +#: src/gui/exportOptions.cpp:67 src/gui/settings.cpp:930 +msgid "Loops" +msgstr "" + +#: src/gui/exportOptions.cpp:70 src/gui/settings.cpp:935 +msgid "Fade out (seconds)" +msgstr "" + +#: src/gui/exportOptions.cpp:76 +msgid "Channels to export:" +msgstr "" + +#: src/gui/exportOptions.cpp:78 src/gui/effectList.cpp:32 src/gui/gui.cpp:6186 +msgid "All" +msgstr "" + +#: src/gui/exportOptions.cpp:84 src/gui/sysConf.cpp:1870 +#: src/gui/effectList.cpp:34 src/gui/compatFlags.cpp:219 +#: src/gui/waveEdit.cpp:37 src/gui/gui.cpp:6192 src/gui/insEdit.cpp:518 +msgid "None" +msgstr "" + +#: src/gui/exportOptions.cpp:110 src/gui/exportOptions.cpp:214 +#: src/gui/exportOptions.cpp:225 src/gui/exportOptions.cpp:243 +#: src/gui/exportOptions.cpp:266 src/gui/exportOptions.cpp:297 +#: src/gui/exportOptions.cpp:318 src/gui/exportOptions.cpp:341 +#: src/gui/commandPalette.cpp:199 src/gui/settings.cpp:6673 +#: src/gui/newSong.cpp:273 src/gui/gui.cpp:5669 src/gui/gui.cpp:5693 +#: src/gui/gui.cpp:5717 src/gui/gui.cpp:5741 src/gui/gui.cpp:5765 +#: src/gui/gui.cpp:5796 src/gui/gui.cpp:5855 src/gui/gui.cpp:6229 +#: src/gui/gui.cpp:6353 +msgid "Cancel" +msgstr "" + +#: src/gui/exportOptions.cpp:115 src/gui/exportOptions.cpp:217 +#: src/gui/exportOptions.cpp:246 src/gui/exportOptions.cpp:300 +#: src/gui/exportOptions.cpp:321 src/gui/exportOptions.cpp:344 +#: src/gui/editControls.cpp:512 src/gui/userPresets.cpp:523 +#: src/gui/settings.cpp:1242 src/gui/settings.cpp:2165 +#: src/gui/settings.cpp:2557 src/gui/settings.cpp:3800 src/gui/guiConst.cpp:536 +#: src/gui/gui.cpp:5578 src/gui/gui.cpp:5630 +msgid "Export" +msgstr "" + +#: src/gui/exportOptions.cpp:130 +msgid "select at least one channel" +msgstr "" + +#: src/gui/exportOptions.cpp:137 +msgid "settings:" +msgstr "" + +#: src/gui/exportOptions.cpp:138 +msgid "format version" +msgstr "" + +#: src/gui/exportOptions.cpp:146 src/gui/exportOptions.cpp:238 +#: src/gui/insEdit.cpp:362 +msgid "loop" +msgstr "" + +#: src/gui/exportOptions.cpp:148 +msgid "loop trail:" +msgstr "" + +#: src/gui/exportOptions.cpp:150 +msgid "auto-detect" +msgstr "" + +#: src/gui/exportOptions.cpp:153 +msgid "add one loop" +msgstr "" + +#: src/gui/exportOptions.cpp:156 +msgid "custom" +msgstr "" + +#: src/gui/exportOptions.cpp:167 +msgid "add pattern change hints" +msgstr "" + +#: src/gui/exportOptions.cpp:170 +msgid "" +"inserts data blocks on pattern changes.\n" +"useful if you are writing a playback routine.\n" +"\n" +"the format of a pattern change data block is:\n" +"67 66 FE ll ll ll ll 01 oo rr pp pp pp ...\n" +"- ll: length, a 32-bit little-endian number\n" +"- oo: order\n" +"- rr: initial row (a 0Dxx effect is able to select a different row)\n" +"- pp: pattern index (one per channel)\n" +"\n" +"pattern indexes are ordered as they appear in the song." +msgstr "" + +#: src/gui/exportOptions.cpp:183 +msgid "direct stream mode" +msgstr "" + +#: src/gui/exportOptions.cpp:186 +msgid "" +"required for DualPCM and MSM6258 export.\n" +"\n" +"allows for volume/direction changes when playing samples,\n" +"at the cost of a massive increase in file size." +msgstr "" + +#: src/gui/exportOptions.cpp:191 +msgid "chips to export:" +msgstr "" + +#: src/gui/exportOptions.cpp:200 +#, c-format +msgid "this chip is only available in VGM %d.%.2x and higher!" +msgstr "" + +#: src/gui/exportOptions.cpp:204 +msgid "this chip is not supported by the VGM format!" +msgstr "" + +#: src/gui/exportOptions.cpp:210 +#, c-format +msgid "select the chip you wish to export, but only up to %d of each type." +msgstr "" + +#: src/gui/exportOptions.cpp:222 +msgid "nothing to export" +msgstr "" + +#: src/gui/exportOptions.cpp:233 +msgid "Commander X16 Zsound Music File" +msgstr "" + +#: src/gui/exportOptions.cpp:234 +msgid "Tick Rate (Hz)" +msgstr "" + +#: src/gui/exportOptions.cpp:240 +msgid "optimize size" +msgstr "" + +#: src/gui/exportOptions.cpp:256 src/gui/editControls.cpp:630 +msgid "" +"this is NOT ROM export! only use for making sure the\n" +"Furnace Amiga emulator is working properly by\n" +"comparing it with real Amiga output." +msgstr "" + +#: src/gui/exportOptions.cpp:261 src/gui/editControls.cpp:635 +#: src/gui/settings.cpp:3925 +msgid "Directory" +msgstr "" + +#: src/gui/exportOptions.cpp:269 src/gui/editControls.cpp:638 +msgid "Bake Data" +msgstr "" + +#: src/gui/exportOptions.cpp:284 src/gui/editControls.cpp:653 +#, c-format +msgid "Done! Baked %d files." +msgstr "" + +#: src/gui/exportOptions.cpp:293 +msgid "this option exports the song to a text file.\n" +msgstr "" + +#: src/gui/exportOptions.cpp:310 +msgid "" +"this option exports a text or binary file which\n" +"contains a dump of the internal command stream\n" +"produced when playing the song.\n" +"\n" +"technical/development use only!" +msgstr "" + +#: src/gui/exportOptions.cpp:331 +msgid "" +"export in DefleMask module format.\n" +"only do it if you really, really need to, or are downgrading an existing ." +"dmf." +msgstr "" + +#: src/gui/exportOptions.cpp:335 +msgid "format version:" +msgstr "" + +#: src/gui/exportOptions.cpp:336 +msgid "1.1.3 and higher" +msgstr "" + +#: src/gui/exportOptions.cpp:337 +msgid "1.0/legacy (0.12)" +msgstr "" + +#: src/gui/exportOptions.cpp:357 src/gui/settings.cpp:1253 +#: src/gui/settings.cpp:3929 +msgid "Audio" +msgstr "" + +#: src/gui/exportOptions.cpp:361 src/gui/settings.cpp:3931 +msgid "VGM" +msgstr "" + +#: src/gui/exportOptions.cpp:370 src/gui/settings.cpp:3932 +msgid "ZSM" +msgstr "" + +#: src/gui/exportOptions.cpp:380 +msgid "Amiga Validation" +msgstr "" + +#: src/gui/exportOptions.cpp:385 src/gui/settings.cpp:2959 +#: src/gui/settings.cpp:3891 +msgid "Text" +msgstr "" + +#: src/gui/exportOptions.cpp:389 +msgid "Command Stream" +msgstr "" + +#: src/gui/exportOptions.cpp:393 +msgid "DMF" +msgstr "" + +#: src/gui/exportOptions.cpp:422 +msgid "congratulations! you've unlocked a secret panel." +msgstr "" + +#: src/gui/exportOptions.cpp:423 +msgid "Toggle hidden systems" +msgstr "" + +#: src/gui/exportOptions.cpp:427 +msgid "Toggle all instrument types" +msgstr "" + +#: src/gui/exportOptions.cpp:431 +msgid "Set pitch linearity to Partial" +msgstr "" + +#: src/gui/exportOptions.cpp:435 +msgid "Enable multi-threading settings" +msgstr "" + +#: src/gui/exportOptions.cpp:439 +msgid "Set fat to max" +msgstr "" + +#: src/gui/exportOptions.cpp:446 +msgid "Set muscle and fat to zero" +msgstr "" + +#: src/gui/exportOptions.cpp:453 +msgid "Tell tildearrow this must be a mistake" +msgstr "" + +#: src/gui/exportOptions.cpp:454 +msgid "" +"yeah, it's a bug. write a bug report in the GitHub page and tell me how did " +"you get here." +msgstr "" + +#: src/gui/speed.cpp:32 src/gui/speed.cpp:102 src/gui/editControls.cpp:532 +#: src/gui/sysConf.cpp:2148 src/gui/guiConst.cpp:232 src/gui/guiConst.cpp:581 +#: src/gui/insEdit.cpp:2028 src/gui/insEdit.cpp:5693 src/gui/insEdit.cpp:6885 +msgid "Speed" +msgstr "" + +#: src/gui/speed.cpp:41 +msgid "Base Tempo##TempoOrHz" +msgstr "" + +#: src/gui/speed.cpp:41 +msgid "Tick Rate##TempoOrHz" +msgstr "" + +#: src/gui/speed.cpp:46 +msgid "click to display tick rate" +msgstr "" + +#: src/gui/speed.cpp:48 +msgid "click to display base tempo" +msgstr "" + +#: src/gui/speed.cpp:80 +msgid "Groove" +msgstr "" + +#: src/gui/speed.cpp:87 +msgid "click for one speed" +msgstr "" + +#: src/gui/speed.cpp:90 +msgid "Speeds" +msgstr "" + +#: src/gui/speed.cpp:99 +msgid "click for groove pattern" +msgstr "" + +#: src/gui/speed.cpp:110 +msgid "click for two (alternating) speeds" +msgstr "" + +#: src/gui/speed.cpp:168 +msgid "Virtual Tempo" +msgstr "" + +#: src/gui/speed.cpp:177 +msgid "Numerator" +msgstr "" + +#: src/gui/speed.cpp:187 +msgid "Denominator (set to base tempo)" +msgstr "" + +#: src/gui/speed.cpp:193 +msgid "Divider" +msgstr "" + +#: src/gui/speed.cpp:208 +msgid "Highlight" +msgstr "" + +#: src/gui/speed.cpp:231 +msgid "Pattern Length" +msgstr "" + +#: src/gui/speed.cpp:245 +msgid "Song Length" +msgstr "" + +#: src/gui/channels.cpp:40 src/gui/editControls.cpp:446 +#: src/gui/guiConst.cpp:601 src/gui/gui.cpp:6280 +msgid "Channels" +msgstr "" + +#: src/gui/channels.cpp:49 +msgid "Pat" +msgstr "" + +#: src/gui/channels.cpp:51 src/gui/editControls.cpp:550 +msgid "Osc" +msgstr "" + +#: src/gui/channels.cpp:53 +msgid "Swap" +msgstr "" + +#: src/gui/channels.cpp:55 src/gui/userPresets.cpp:368 +#: src/gui/effectList.cpp:45 src/gui/subSongs.cpp:125 src/gui/settings.cpp:1060 +#: src/gui/settings.cpp:4383 src/gui/sampleEdit.cpp:195 src/gui/songInfo.cpp:40 +#: src/gui/sysManager.cpp:54 src/gui/insEdit.cpp:5288 +msgid "Name" +msgstr "" + +#: src/gui/channels.cpp:64 +msgid "Show in pattern" +msgstr "" + +#: src/gui/channels.cpp:71 +msgid "Show in per-channel oscilloscope" +msgstr "" + +#: src/gui/channels.cpp:82 +#, c-format +msgid "" +"%s #%d\n" +"(drag to swap channels)" +msgstr "" + +#: src/gui/commandPalette.cpp:51 src/gui/sysPicker.cpp:35 +#: src/gui/newSong.cpp:133 +msgid "Search..." +msgstr "" + +#: src/gui/commandPalette.cpp:54 +msgid "Search recent files..." +msgstr "" + +#: src/gui/commandPalette.cpp:57 +msgid "Search instruments..." +msgstr "" + +#: src/gui/commandPalette.cpp:60 +msgid "Search samples..." +msgstr "" + +#: src/gui/commandPalette.cpp:63 +msgid "Search instruments (to change to)..." +msgstr "" + +#: src/gui/commandPalette.cpp:66 +msgid "Search chip (to add)..." +msgstr "" + +#: src/gui/commandPalette.cpp:93 src/gui/commandPalette.cpp:167 +msgid "- None -" +msgstr "" + +#: src/gui/commandPalette.cpp:123 src/gui/commandPalette.cpp:179 +#: src/gui/commandPalette.cpp:241 +msgid "invalid command palette type" +msgstr "" + +#: src/gui/regView.cpp:30 src/gui/guiConst.cpp:604 +msgid "Register View" +msgstr "" + +#: src/gui/regView.cpp:38 +msgid "- no register pool available" +msgstr "" + +#: src/gui/log.cpp:25 src/gui/effectList.cpp:84 +msgid "ERROR" +msgstr "" + +#: src/gui/log.cpp:26 +msgid "warning" +msgstr "" + +#: src/gui/log.cpp:27 +msgid "info" +msgstr "" + +#: src/gui/log.cpp:28 src/gui/gui.cpp:4513 +msgid "debug" +msgstr "" + +#: src/gui/log.cpp:29 +msgid "trace" +msgstr "" + +#: src/gui/log.cpp:47 src/gui/settings.cpp:4243 src/gui/guiConst.cpp:605 +msgid "Log Viewer" +msgstr "" + +#: src/gui/log.cpp:48 src/gui/editControls.cpp:750 src/gui/editControls.cpp:883 +#: src/gui/editControls.cpp:1000 +msgid "Follow" +msgstr "" + +#: src/gui/log.cpp:50 src/gui/waveEdit.cpp:681 src/gui/insEdit.cpp:50 +msgid "Level" +msgstr "" + +#: src/gui/log.cpp:68 +msgid "time" +msgstr "" + +#: src/gui/log.cpp:70 +msgid "level" +msgstr "" + +#: src/gui/log.cpp:72 +msgid "message" +msgstr "" + +#: src/gui/pattern.cpp:433 src/gui/editControls.cpp:421 +#: src/gui/editControls.cpp:754 src/gui/editControls.cpp:887 +#: src/gui/editControls.cpp:1015 src/gui/settings.cpp:2344 +#: src/gui/settings.cpp:3297 src/gui/settings.cpp:4100 +#: src/gui/findReplace.cpp:794 src/gui/guiConst.cpp:582 src/gui/gui.cpp:5899 +msgid "Pattern" +msgstr "" + +#: src/gui/pattern.cpp:468 +msgid "there aren't any channels to show." +msgstr "" + +#: src/gui/pattern.cpp:492 +msgid "click for pattern options (effect columns/pattern names/visualizer)" +msgstr "" + +#: src/gui/pattern.cpp:504 +msgid "Options:" +msgstr "" + +#: src/gui/pattern.cpp:506 +msgid "Effect columns/collapse" +msgstr "" + +#: src/gui/pattern.cpp:507 +msgid "Pattern names" +msgstr "" + +#: src/gui/pattern.cpp:508 +msgid "Channel group hints" +msgstr "" + +#: src/gui/pattern.cpp:509 +msgid "Visualizer" +msgstr "" + +#: src/gui/pattern.cpp:517 +msgid "Channel status:" +msgstr "" + +#: src/gui/pattern.cpp:519 +msgid "No##_PCS0" +msgstr "" + +#: src/gui/pattern.cpp:522 +msgid "Yes##_PCS1" +msgstr "" + +#: src/gui/pattern.cpp:1420 src/gui/pattern.cpp:1452 +msgid "WARNING!!" +msgstr "" + +#: src/gui/pattern.cpp:1422 src/gui/pattern.cpp:1459 +msgid "this instrument cannot be previewed because" +msgstr "" + +#: src/gui/pattern.cpp:1423 src/gui/pattern.cpp:1466 +msgid "none of the chips can play it" +msgstr "" + +#: src/gui/pattern.cpp:1424 src/gui/pattern.cpp:1473 +msgid "your instrument is in peril!! be careful..." +msgstr "" + +#: src/gui/osc.cpp:169 src/gui/settings.cpp:3710 src/gui/settings.cpp:3937 +msgid "Oscilloscope" +msgstr "" + +#: src/gui/osc.cpp:176 +#, c-format +msgid "zoom: %.2fx (%.1fdB)" +msgstr "" + +#: src/gui/osc.cpp:187 +#, c-format +msgid "window size: %.1fms" +msgstr "" + +#: src/gui/osc.cpp:385 +msgid "(-Infinity)dB" +msgstr "" + +#: src/gui/debugWindow.cpp:66 src/gui/editControls.cpp:610 +msgid "Debug" +msgstr "" + +#: src/gui/debugWindow.cpp:663 +msgid "This is a language test." +msgstr "" + +#: src/gui/debugWindow.cpp:664 +msgid "This is another language test." +msgstr "" + +#: src/gui/debugWindow.cpp:720 +#, c-format +msgid "%d apple" +msgid_plural "%d apples" +msgstr[0] "" + +#: src/gui/chanOsc.cpp:32 +msgid "None (0%)" +msgstr "" + +#: src/gui/chanOsc.cpp:33 +msgid "None (50%)" +msgstr "" + +#: src/gui/chanOsc.cpp:34 +msgid "None (100%)" +msgstr "" + +#: src/gui/chanOsc.cpp:36 +msgid "Frequency" +msgstr "" + +#: src/gui/chanOsc.cpp:38 src/gui/settings.cpp:1667 src/gui/settings.cpp:3406 +#: src/gui/settings.cpp:4088 +msgid "Channel" +msgstr "" + +#: src/gui/chanOsc.cpp:39 +msgid "Brightness" +msgstr "" + +#: src/gui/chanOsc.cpp:41 +msgid "Note Trigger" +msgstr "" + +#: src/gui/chanOsc.cpp:45 +msgid "Off" +msgstr "" + +#: src/gui/chanOsc.cpp:46 +msgid "Mode 1" +msgstr "" + +#: src/gui/chanOsc.cpp:47 +msgid "Mode 2" +msgstr "" + +#: src/gui/chanOsc.cpp:48 +msgid "Mode 3" +msgstr "" + +#: src/gui/chanOsc.cpp:135 src/gui/guiConst.cpp:607 +msgid "Oscilloscope (per-channel)" +msgstr "" + +#: src/gui/chanOsc.cpp:143 +msgid "Columns" +msgstr "" + +#: src/gui/chanOsc.cpp:152 +msgid "Size (ms)" +msgstr "" + +#: src/gui/chanOsc.cpp:163 +msgid "Automatic columns" +msgstr "" + +#: src/gui/chanOsc.cpp:177 +msgid "Center waveform" +msgstr "" + +#: src/gui/chanOsc.cpp:183 +msgid "Randomize phase on note" +msgstr "" + +#: src/gui/chanOsc.cpp:189 +msgid "Amplitude" +msgstr "" + +#: src/gui/chanOsc.cpp:199 src/gui/settings.cpp:3747 +msgid "Line size" +msgstr "" + +#: src/gui/chanOsc.cpp:211 +msgid "Gradient" +msgstr "" + +#: src/gui/chanOsc.cpp:218 +msgid "error while creating gradient texture!" +msgstr "" + +#: src/gui/chanOsc.cpp:236 +msgid "error while updating gradient texture!" +msgstr "" + +#: src/gui/chanOsc.cpp:292 src/gui/chanOsc.cpp:348 src/gui/settings.cpp:3793 +msgid "Color" +msgstr "" + +#: src/gui/chanOsc.cpp:296 +msgid "Distance" +msgstr "" + +#: src/gui/chanOsc.cpp:305 +msgid "Spread" +msgstr "" + +#: src/gui/chanOsc.cpp:314 src/gui/userPresets.cpp:370 src/gui/subSongs.cpp:121 +#: src/gui/settings.cpp:2281 src/gui/sysManager.cpp:124 +msgid "Remove" +msgstr "" + +#: src/gui/chanOsc.cpp:338 src/gui/settings.cpp:3885 src/gui/settings.cpp:4165 +#: src/gui/settings.cpp:4192 src/gui/settings.cpp:4218 +msgid "Background" +msgstr "" + +#: src/gui/chanOsc.cpp:341 +msgid "X Axis##AxisX" +msgstr "" + +#: src/gui/chanOsc.cpp:342 +msgid "Y Axis##AxisY" +msgstr "" + +#: src/gui/chanOsc.cpp:352 +msgid "Text format:" +msgstr "" + +#: src/gui/chanOsc.cpp:358 +msgid "" +"format guide:\n" +"- %c: channel name\n" +"- %C: channel short name\n" +"- %d: channel number (starting from 0)\n" +"- %D: channel number (starting from 1)\n" +"- %n: channel note\n" +"- %i: instrument name\n" +"- %I: instrument number (decimal)\n" +"- %x: instrument number (hex)\n" +"- %s: chip name\n" +"- %p: chip part number\n" +"- %S: chip ID\n" +"- %v: volume (decimal)\n" +"- %V: volume (percentage)\n" +"- %b: volume (hex)\n" +"- %l: new line\n" +"- %%: percent sign" +msgstr "" + +#: src/gui/chanOsc.cpp:380 +msgid "Text color" +msgstr "" + +#: src/gui/chanOsc.cpp:382 src/gui/xyOsc.cpp:80 src/gui/settings.cpp:6672 +#: src/gui/tutorial.cpp:689 src/gui/gui.cpp:5639 src/gui/gui.cpp:6055 +#: src/gui/gui.cpp:6223 src/gui/gui.cpp:6322 src/gui/gui.cpp:6371 +msgid "OK" +msgstr "" + +#: src/gui/chanOsc.cpp:400 +msgid "creating chan osc work pool" +msgstr "" + +#: src/gui/chanOsc.cpp:429 +#, c-format +msgid "creating FFT plan for channel %d" +msgstr "" + +#: src/gui/chanOsc.cpp:436 +msgid "failed to create plan!" +msgstr "" + +#: src/gui/chanOsc.cpp:438 +msgid "failed to create inverse plan!" +msgstr "" + +#: src/gui/chanOsc.cpp:440 +msgid "failed to create FFT buffers" +msgstr "" + +#: src/gui/chanOsc.cpp:585 +msgid "Error!" +msgstr "" + +#: src/gui/editControls.cpp:47 src/gui/sampleEdit.cpp:1736 src/gui/gui.cpp:2733 +#: src/gui/insEdit.cpp:363 +msgid "cut" +msgstr "" + +#: src/gui/editControls.cpp:48 src/gui/sampleEdit.cpp:1740 src/gui/gui.cpp:2734 +#: src/gui/insEdit.cpp:7538 +msgid "copy" +msgstr "" + +#: src/gui/editControls.cpp:49 src/gui/sampleEdit.cpp:1744 src/gui/gui.cpp:2735 +#: src/gui/gui.cpp:2788 src/gui/insEdit.cpp:7543 +msgid "paste" +msgstr "" + +#: src/gui/editControls.cpp:51 +msgid "" +"select\n" +"all" +msgstr "" + +#: src/gui/editControls.cpp:52 +msgid "piano" +msgstr "" + +#: src/gui/editControls.cpp:53 src/gui/gui.cpp:4429 +msgid "undo" +msgstr "" + +#: src/gui/editControls.cpp:54 src/gui/gui.cpp:4430 +msgid "redo" +msgstr "" + +#: src/gui/editControls.cpp:57 +msgid "" +"paste\n" +"mix" +msgstr "" + +#: src/gui/editControls.cpp:58 +msgid "" +"paste\n" +"mix bg" +msgstr "" + +#: src/gui/editControls.cpp:59 +msgid "" +"paste\n" +"ins" +msgstr "" + +#: src/gui/editControls.cpp:60 +msgid "" +"paste\n" +"ins bg" +msgstr "" + +#: src/gui/editControls.cpp:61 +msgid "" +"paste\n" +"flood" +msgstr "" + +#: src/gui/editControls.cpp:62 +msgid "" +"paste\n" +"overflow" +msgstr "" + +#: src/gui/editControls.cpp:63 +msgid "" +"transpose\n" +"notes" +msgstr "" + +#: src/gui/editControls.cpp:64 +msgid "" +"transpose\n" +"values" +msgstr "" + +#: src/gui/editControls.cpp:67 +msgid "" +"change\n" +"ins" +msgstr "" + +#: src/gui/editControls.cpp:68 +msgid "" +"find/\n" +"replace" +msgstr "" + +#: src/gui/editControls.cpp:69 src/gui/gui.cpp:3063 +msgid "collapse" +msgstr "" + +#: src/gui/editControls.cpp:70 src/gui/gui.cpp:3064 +msgid "expand" +msgstr "" + +#: src/gui/editControls.cpp:71 src/gui/gui.cpp:2820 +msgid "flip" +msgstr "" + +#: src/gui/editControls.cpp:72 src/gui/insEdit.cpp:430 +msgid "invert" +msgstr "" + +#: src/gui/editControls.cpp:73 src/gui/gui.cpp:2800 src/gui/gui.cpp:2960 +msgid "interpolate" +msgstr "" + +#: src/gui/editControls.cpp:74 src/gui/gui.cpp:2812 src/gui/insEdit.cpp:7610 +msgid "scale" +msgstr "" + +#: src/gui/editControls.cpp:77 src/gui/gui.cpp:2804 +msgid "fade" +msgstr "" + +#: src/gui/editControls.cpp:78 src/gui/gui.cpp:2816 src/gui/insEdit.cpp:7639 +msgid "randomize" +msgstr "" + +#: src/gui/editControls.cpp:79 +msgid "opmask" +msgstr "" + +#: src/gui/editControls.cpp:80 +msgid "" +"scroll\n" +"mode" +msgstr "" + +#: src/gui/editControls.cpp:81 +msgid "" +"input\n" +"latch" +msgstr "" + +#: src/gui/editControls.cpp:82 +msgid "" +"set\n" +"latch" +msgstr "" + +#: src/gui/editControls.cpp:83 +msgid "" +"clear\n" +"latch" +msgstr "" + +#: src/gui/editControls.cpp:84 src/gui/findReplace.cpp:43 +#: src/gui/insEdit.cpp:7557 +msgid "clear" +msgstr "" + +#: src/gui/editControls.cpp:333 +msgid "Mobile Controls" +msgstr "" + +#: src/gui/editControls.cpp:408 +msgid "Mobile Menu" +msgstr "" + +#: src/gui/editControls.cpp:425 src/gui/editControls.cpp:752 +#: src/gui/editControls.cpp:885 src/gui/editControls.cpp:1007 +#: src/gui/settings.cpp:2485 src/gui/settings.cpp:3271 +#: src/gui/settings.cpp:3975 src/gui/orders.cpp:232 src/gui/guiConst.cpp:577 +#: src/gui/gui.cpp:5888 +msgid "Orders" +msgstr "" + +#: src/gui/editControls.cpp:429 src/gui/findReplace.cpp:669 +#: src/gui/findReplace.cpp:914 +msgid "Ins" +msgstr "" + +#: src/gui/editControls.cpp:442 src/gui/findReplace.cpp:788 +#: src/gui/guiConst.cpp:230 +msgid "Song" +msgstr "" + +#: src/gui/editControls.cpp:450 src/gui/sampleEdit.cpp:494 +msgid "Chips" +msgstr "" + +#: src/gui/editControls.cpp:458 src/gui/settings.cpp:2117 +#: src/gui/settings.cpp:3934 src/gui/settings.cpp:4018 +#: src/gui/compatFlags.cpp:319 +msgid "Other" +msgstr "" + +#: src/gui/editControls.cpp:487 src/gui/guiConst.cpp:531 +msgid "New" +msgstr "" + +#: src/gui/editControls.cpp:491 src/gui/doAction.cpp:38 src/gui/gui.cpp:4194 +msgid "Unsaved changes! Save changes before creating a new song?" +msgstr "" + +#: src/gui/editControls.cpp:507 +msgid "Save as..." +msgstr "" + +#: src/gui/editControls.cpp:516 src/gui/gui.cpp:1680 +msgid "Restore Backup" +msgstr "" + +#: src/gui/editControls.cpp:524 +msgid "Song Info" +msgstr "" + +#: src/gui/editControls.cpp:528 src/gui/subSongs.cpp:17 +#: src/gui/guiConst.cpp:608 +msgid "Subsongs" +msgstr "" + +#: src/gui/editControls.cpp:541 +msgid "Channels here..." +msgstr "" + +#: src/gui/editControls.cpp:544 +msgid "Chips here..." +msgstr "" + +#: src/gui/editControls.cpp:547 +msgid "What the hell..." +msgstr "" + +#: src/gui/editControls.cpp:554 +msgid "ChanOsc" +msgstr "" + +#: src/gui/editControls.cpp:558 +msgid "RegView" +msgstr "" + +#: src/gui/editControls.cpp:562 +msgid "Stats" +msgstr "" + +#: src/gui/editControls.cpp:566 src/gui/guiConst.cpp:611 src/gui/grooves.cpp:35 +msgid "Grooves" +msgstr "" + +#: src/gui/editControls.cpp:569 +msgid "Compat Flags" +msgstr "" + +#: src/gui/editControls.cpp:573 +msgid "XYOsc" +msgstr "" + +#: src/gui/editControls.cpp:577 +msgid "Meter" +msgstr "" + +#: src/gui/editControls.cpp:581 +msgid "Memory" +msgstr "" + +#: src/gui/editControls.cpp:585 +msgid "CV" +msgstr "" + +#: src/gui/editControls.cpp:589 +msgid "Presets" +msgstr "" + +#: src/gui/editControls.cpp:593 +msgid "PatManager" +msgstr "" + +#: src/gui/editControls.cpp:599 src/gui/guiConst.cpp:564 +msgid "Panic" +msgstr "" + +#: src/gui/editControls.cpp:601 src/gui/settings.cpp:560 +#: src/gui/guiConst.cpp:589 src/gui/guiConst.cpp:591 src/gui/gui.cpp:4439 +msgid "Settings" +msgstr "" + +#: src/gui/editControls.cpp:606 +msgid "Log" +msgstr "" + +#: src/gui/editControls.cpp:614 src/gui/guiConst.cpp:587 +msgid "About" +msgstr "" + +#: src/gui/editControls.cpp:619 +msgid "Switch to Desktop Mode" +msgstr "" + +#: src/gui/editControls.cpp:673 src/gui/editControls.cpp:784 +#: src/gui/editControls.cpp:904 +msgid "Play/Edit Controls" +msgstr "" + +#: src/gui/editControls.cpp:681 src/gui/editControls.cpp:842 +#: src/gui/editControls.cpp:959 src/gui/editControls.cpp:1125 +msgid "Octave" +msgstr "" + +#: src/gui/editControls.cpp:698 src/gui/editControls.cpp:857 +msgid "Coarse Step" +msgstr "" + +#: src/gui/editControls.cpp:698 src/gui/editControls.cpp:857 +msgid "Edit Step" +msgstr "" + +#: src/gui/editControls.cpp:731 src/gui/editControls.cpp:797 +#: src/gui/editControls.cpp:911 src/gui/editControls.cpp:1048 +#: src/gui/guiConst.cpp:545 +msgid "Play" +msgstr "" + +#: src/gui/editControls.cpp:739 src/gui/editControls.cpp:789 +#: src/gui/editControls.cpp:918 src/gui/editControls.cpp:1040 +#: src/gui/guiConst.cpp:546 +msgid "Stop" +msgstr "" + +#: src/gui/editControls.cpp:742 src/gui/editControls.cpp:826 +#: src/gui/editControls.cpp:943 src/gui/editControls.cpp:1082 +#: src/gui/gui.cpp:4426 +msgid "Edit" +msgstr "" + +#: src/gui/editControls.cpp:757 src/gui/editControls.cpp:816 +#: src/gui/editControls.cpp:934 src/gui/editControls.cpp:1104 +msgid "Repeat pattern" +msgstr "" + +#: src/gui/editControls.cpp:766 src/gui/editControls.cpp:806 +#: src/gui/editControls.cpp:925 src/gui/editControls.cpp:1073 +msgid "Step one row" +msgstr "" + +#: src/gui/editControls.cpp:771 src/gui/editControls.cpp:891 +#: src/gui/editControls.cpp:1020 src/gui/editControls.cpp:1110 +msgid "Poly##PolyInput" +msgstr "" + +#: src/gui/editControls.cpp:771 src/gui/editControls.cpp:891 +#: src/gui/editControls.cpp:1020 src/gui/editControls.cpp:1110 +msgid "Mono##PolyInput" +msgstr "" + +#: src/gui/editControls.cpp:776 src/gui/editControls.cpp:896 +#: src/gui/editControls.cpp:1025 src/gui/editControls.cpp:1115 +msgid "Polyphony" +msgstr "" + +#: src/gui/editControls.cpp:957 +msgid "Oct." +msgstr "" + +#: src/gui/editControls.cpp:974 src/gui/editControls.cpp:1142 +msgid "Coarse" +msgstr "" + +#: src/gui/editControls.cpp:974 src/gui/editControls.cpp:1142 +msgid "Step" +msgstr "" + +#: src/gui/editControls.cpp:998 +msgid "Foll." +msgstr "" + +#: src/gui/editControls.cpp:1003 +msgid "Ord##FollowOrders" +msgstr "" + +#: src/gui/editControls.cpp:1011 +msgid "Pat##FollowPattern" +msgstr "" + +#: src/gui/editControls.cpp:1033 +msgid "Play Controls" +msgstr "" + +#: src/gui/editControls.cpp:1057 +msgid "Play from the beginning of this pattern" +msgstr "" + +#: src/gui/editControls.cpp:1065 +msgid "Repeat from the beginning of this pattern" +msgstr "" + +#: src/gui/editControls.cpp:1122 src/gui/guiConst.cpp:576 +msgid "Edit Controls" +msgstr "" + +#: src/gui/editControls.cpp:1169 src/gui/guiConst.cpp:560 +msgid "Follow orders" +msgstr "" + +#: src/gui/editControls.cpp:1170 src/gui/guiConst.cpp:561 +msgid "Follow pattern" +msgstr "" + +#: src/gui/songNotes.cpp:32 src/gui/guiConst.cpp:600 +msgid "Song Comments" +msgstr "" + +#: src/gui/util.cpp:93 +msgid "" +msgstr "" + +#: src/gui/util.cpp:97 +msgid "Ctrl-" +msgstr "" + +#: src/gui/util.cpp:99 +msgid "Alt-" +msgstr "" + +#: src/gui/util.cpp:100 +msgid "Shift-" +msgstr "" + +#: src/gui/stats.cpp:31 src/gui/guiConst.cpp:597 +msgid "Statistics" +msgstr "" + +#: src/gui/stats.cpp:36 +msgid "Audio load" +msgstr "" + +#: src/gui/xyOsc.cpp:40 src/gui/guiConst.cpp:612 +msgid "Oscilloscope (X-Y)" +msgstr "" + +#: src/gui/xyOsc.cpp:45 +msgid "X Channel" +msgstr "" + +#: src/gui/xyOsc.cpp:51 +msgid "Invert##X" +msgstr "" + +#: src/gui/xyOsc.cpp:52 +msgid "Y Channel" +msgstr "" + +#: src/gui/xyOsc.cpp:58 +msgid "Invert##Y" +msgstr "" + +#: src/gui/xyOsc.cpp:59 src/gui/sampleEdit.cpp:1353 +msgid "Zoom" +msgstr "" + +#: src/gui/xyOsc.cpp:71 +msgid "Decay Time (ms)" +msgstr "" + +#: src/gui/xyOsc.cpp:74 +msgid "Intensity" +msgstr "" + +#: src/gui/xyOsc.cpp:77 +msgid "Line Thickness" +msgstr "" + +#: src/gui/xyOsc.cpp:213 +msgid "(-Infinity)dB,(-Infinity)dB" +msgstr "" + +#: src/gui/xyOsc.cpp:215 +#, c-format +msgid "(-Infinity)dB,%.1fdB" +msgstr "" + +#: src/gui/xyOsc.cpp:217 +#, c-format +msgid "%.1fdB,(-Infinity)dB" +msgstr "" + +#: src/gui/xyOsc.cpp:219 +#, c-format +msgid "%.1fdB,%.1fdB" +msgstr "" + +#: src/gui/sysConf.cpp:49 src/gui/sysConf.cpp:121 src/gui/sysConf.cpp:486 +#: src/gui/sysConf.cpp:604 src/gui/sysConf.cpp:647 src/gui/sysConf.cpp:684 +#: src/gui/sysConf.cpp:843 src/gui/sysConf.cpp:1098 src/gui/sysConf.cpp:1181 +#: src/gui/sysConf.cpp:1220 src/gui/sysConf.cpp:1294 src/gui/sysConf.cpp:1380 +#: src/gui/sysConf.cpp:1444 src/gui/sysConf.cpp:1482 src/gui/sysConf.cpp:1572 +#: src/gui/sysConf.cpp:1668 src/gui/sysConf.cpp:1716 src/gui/sysConf.cpp:1757 +#: src/gui/sysConf.cpp:1810 src/gui/sysConf.cpp:2284 src/gui/sysConf.cpp:2307 +msgid "Clock rate:" +msgstr "" + +#: src/gui/sysConf.cpp:73 src/gui/sysConf.cpp:152 src/gui/sysConf.cpp:911 +#: src/gui/sysConf.cpp:1459 src/gui/sysConf.cpp:1783 +msgid "Chip type:" +msgstr "" + +#: src/gui/sysConf.cpp:75 +msgid "YM3438 (9-bit DAC)" +msgstr "" + +#: src/gui/sysConf.cpp:79 +msgid "YM2612 (9-bit DAC with distortion)" +msgstr "" + +#: src/gui/sysConf.cpp:83 +msgid "YMF276 (external DAC)" +msgstr "" + +#: src/gui/sysConf.cpp:90 src/gui/sysConf.cpp:804 src/gui/sysConf.cpp:1350 +#: src/gui/sysConf.cpp:1420 +msgid "Disable ExtCh FM macros (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:93 src/gui/sysConf.cpp:807 src/gui/sysConf.cpp:1353 +#: src/gui/sysConf.cpp:1423 +msgid "Ins change in ExtCh operator 2-4 affects FB (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:99 +msgid "Modified sine wave (joke)" +msgstr "" + +#: src/gui/sysConf.cpp:123 src/gui/sysConf.cpp:1296 src/gui/sysConf.cpp:1718 +#: src/gui/sysConf.cpp:2286 +msgid "3.58MHz (NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:127 +msgid "3.55MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:131 +msgid "4MHz (BBC Micro)" +msgstr "" + +#: src/gui/sysConf.cpp:135 +msgid "1.79MHz (Half NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:139 +msgid "3MHz (Exed Exes)" +msgstr "" + +#: src/gui/sysConf.cpp:143 +msgid "2MHz (Sega System 1)" +msgstr "" + +#: src/gui/sysConf.cpp:147 +msgid "447KHz (TI-99/4A)" +msgstr "" + +#: src/gui/sysConf.cpp:154 +msgid "Sega VDP/Master System" +msgstr "" + +#: src/gui/sysConf.cpp:162 +msgid "TI SN76489 with Atari-like short noise" +msgstr "" + +#: src/gui/sysConf.cpp:166 +msgid "Game Gear" +msgstr "" + +#: src/gui/sysConf.cpp:170 +msgid "TI SN76489A" +msgstr "" + +#: src/gui/sysConf.cpp:174 +msgid "TI SN76496" +msgstr "" + +#: src/gui/sysConf.cpp:178 +msgid "NCR 8496" +msgstr "" + +#: src/gui/sysConf.cpp:182 +msgid "Tandy PSSJ 3-voice sound" +msgstr "" + +#: src/gui/sysConf.cpp:186 +msgid "TI SN94624" +msgstr "" + +#: src/gui/sysConf.cpp:190 +msgid "TI SN76494" +msgstr "" + +#: src/gui/sysConf.cpp:196 +msgid "Disable noise period change phase reset" +msgstr "" + +#: src/gui/sysConf.cpp:200 src/gui/sysConf.cpp:2190 +msgid "Disable easy period to note mapping on upper octaves" +msgstr "" + +#: src/gui/sysConf.cpp:219 src/gui/sysConf.cpp:583 +msgid "Pseudo-PAL" +msgstr "" + +#: src/gui/sysConf.cpp:222 src/gui/sysConf.cpp:342 +msgid "Disable anti-click" +msgstr "" + +#: src/gui/sysConf.cpp:225 src/gui/sysConf.cpp:345 +msgid "Chip revision:" +msgstr "" + +#: src/gui/sysConf.cpp:227 +msgid "HuC6280 (original)" +msgstr "" + +#: src/gui/sysConf.cpp:231 +msgid "HuC6280A (SuperGrafx)" +msgstr "" + +#: src/gui/sysConf.cpp:257 +msgid "CPU rate:" +msgstr "" + +#: src/gui/sysConf.cpp:259 +msgid "6.18MHz (NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:263 +msgid "5.95MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:268 +msgid "Sample memory:" +msgstr "" + +#: src/gui/sysConf.cpp:270 +msgid "8K (rev A/B/E)" +msgstr "" + +#: src/gui/sysConf.cpp:274 +msgid "64K (rev D/F)" +msgstr "" + +#: src/gui/sysConf.cpp:279 +msgid "DAC resolution:" +msgstr "" + +#: src/gui/sysConf.cpp:281 +msgid "16-bit (rev A/B/D/F)" +msgstr "" + +#: src/gui/sysConf.cpp:285 +msgid "8-bit + TDM (rev C/E)" +msgstr "" + +#: src/gui/sysConf.cpp:290 src/gui/sysConf.cpp:1931 +msgid "Enable echo" +msgstr "" + +#: src/gui/sysConf.cpp:293 +msgid "Swap echo channels" +msgstr "" + +#: src/gui/sysConf.cpp:296 src/gui/sysConf.cpp:1151 +msgid "Echo delay:" +msgstr "" + +#: src/gui/sysConf.cpp:302 +msgid "Echo resolution:" +msgstr "" + +#: src/gui/sysConf.cpp:308 src/gui/sysConf.cpp:1159 +msgid "Echo feedback:" +msgstr "" + +#: src/gui/sysConf.cpp:314 src/gui/sysConf.cpp:1967 +msgid "Echo volume:" +msgstr "" + +#: src/gui/sysConf.cpp:347 +msgid "Original (DMG)" +msgstr "" + +#: src/gui/sysConf.cpp:351 +msgid "Game Boy Color (rev C)" +msgstr "" + +#: src/gui/sysConf.cpp:355 +msgid "Game Boy Color (rev E)" +msgstr "" + +#: src/gui/sysConf.cpp:359 +msgid "Game Boy Advance" +msgstr "" + +#: src/gui/sysConf.cpp:364 +msgid "Wave channel orientation:" +msgstr "" + +#: src/gui/sysConf.cpp:367 src/gui/compatFlags.cpp:298 src/gui/gui.cpp:6067 +#: src/gui/insEdit.cpp:217 src/gui/insEdit.cpp:231 +msgid "Normal" +msgstr "" + +#: src/gui/sysConf.cpp:371 +msgid "Inverted" +msgstr "" + +#: src/gui/sysConf.cpp:378 +msgid "Exact data (inverted)" +msgstr "" + +#: src/gui/sysConf.cpp:382 +msgid "Exact output (normal)" +msgstr "" + +#: src/gui/sysConf.cpp:388 +msgid "" +"Pretty please one more compat flag when I use arpeggio and my sound length" +msgstr "" + +#: src/gui/sysConf.cpp:405 src/gui/sysConf.cpp:438 +msgid "DAC bit depth (reduces output rate):" +msgstr "" + +#: src/gui/sysConf.cpp:426 src/gui/sysConf.cpp:1268 src/gui/sysConf.cpp:1919 +msgid "Volume scale:" +msgstr "" + +#: src/gui/sysConf.cpp:432 +msgid "Mix buffers (allows longer echo delay):" +msgstr "" + +#: src/gui/sysConf.cpp:444 +msgid "Channel limit:" +msgstr "" + +#: src/gui/sysConf.cpp:450 +msgid "Sample rate:" +msgstr "" + +#: src/gui/sysConf.cpp:460 +#, c-format +msgid "Actual sample rate: %d Hz" +msgstr "" + +#: src/gui/sysConf.cpp:462 +#, c-format +msgid "Max mixer CPU usage: %.0f%%" +msgstr "" + +#: src/gui/sysConf.cpp:488 +msgid "NTSC (3.58MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:492 src/gui/sysConf.cpp:557 +msgid "PAL (3.55MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:496 +msgid "Arcade (4MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:500 +msgid "Half NTSC (1.79MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:506 +msgid "Patch set:" +msgstr "" + +#: src/gui/sysConf.cpp:528 +msgid "Ignore top/hi-hat frequency changes" +msgstr "" + +#: src/gui/sysConf.cpp:531 +msgid "Apply fixed frequency to all drums at once" +msgstr "" + +#: src/gui/sysConf.cpp:553 +msgid "NTSC/X16 (3.58MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:561 +msgid "X1/X68000 (4MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:567 src/gui/sysConf.cpp:587 +msgid "Broken pitch macro/slides (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:607 src/gui/sysConf.cpp:650 src/gui/sysConf.cpp:1222 +#: src/gui/sysConf.cpp:2310 +msgid "NTSC (1.79MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:611 src/gui/sysConf.cpp:654 src/gui/sysConf.cpp:1226 +msgid "PAL (1.67MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:615 src/gui/sysConf.cpp:658 src/gui/sysConf.cpp:1230 +msgid "Dendy (1.77MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:621 +msgid "DPCM channel mode:" +msgstr "" + +#: src/gui/sysConf.cpp:624 +msgid "DPCM (muffled samples; low CPU usage)" +msgstr "" + +#: src/gui/sysConf.cpp:628 +msgid "PCM (crisp samples; high CPU usage)" +msgstr "" + +#: src/gui/sysConf.cpp:687 +msgid "NTSC (1.02MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:691 +msgid "PAL (0.99MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:695 +msgid "SSI 2001 (0.89MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:701 src/gui/sysConf.cpp:2320 +msgid "Global parameter priority:" +msgstr "" + +#: src/gui/sysConf.cpp:704 src/gui/sysConf.cpp:2323 +msgid "Left to right" +msgstr "" + +#: src/gui/sysConf.cpp:708 src/gui/sysConf.cpp:2327 +msgid "Last used channel" +msgstr "" + +#: src/gui/sysConf.cpp:714 +msgid "Hard reset envelope:" +msgstr "" + +#: src/gui/sysConf.cpp:716 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:1920 +#: src/gui/insEdit.cpp:6955 src/gui/insEdit.cpp:7481 +msgid "Attack" +msgstr "" + +#: src/gui/sysConf.cpp:721 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:1960 +#: src/gui/insEdit.cpp:6956 src/gui/insEdit.cpp:7482 +msgid "Decay" +msgstr "" + +#: src/gui/sysConf.cpp:726 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:1929 +#: src/gui/insEdit.cpp:6957 src/gui/insEdit.cpp:7483 +msgid "Sustain" +msgstr "" + +#: src/gui/sysConf.cpp:731 src/gui/settings.cpp:3987 src/gui/insEdit.cpp:50 +#: src/gui/insEdit.cpp:604 src/gui/insEdit.cpp:1983 src/gui/insEdit.cpp:6958 +#: src/gui/insEdit.cpp:7484 +msgid "Release" +msgstr "" + +#: src/gui/sysConf.cpp:737 +msgid "Envelope reset time:" +msgstr "" + +#: src/gui/sysConf.cpp:747 +msgid "" +"- 0 disables envelope reset. not recommended!\n" +"- 1 may trigger SID envelope bugs.\n" +"- values that are too high may result in notes being skipped." +msgstr "" + +#: src/gui/sysConf.cpp:749 +msgid "Disable 1Exy env update (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:753 +msgid "Relative duty and cutoff macros are coarse (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:757 +msgid "Cutoff macro race conditions (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:793 +msgid "8MHz (Neo Geo MVS)" +msgstr "" + +#: src/gui/sysConf.cpp:797 +msgid "8.06MHz (Neo Geo AES)" +msgstr "" + +#: src/gui/sysConf.cpp:812 src/gui/sysConf.cpp:1337 src/gui/sysConf.cpp:1407 +msgid "SSG Volume" +msgstr "" + +#: src/gui/sysConf.cpp:818 src/gui/sysConf.cpp:1413 +msgid "FM/ADPCM Volume" +msgstr "" + +#: src/gui/sysConf.cpp:845 +msgid "1.79MHz (ZX Spectrum NTSC/MSX)" +msgstr "" + +#: src/gui/sysConf.cpp:849 +msgid "1.77MHz (ZX Spectrum PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:853 +msgid "0.83MHz (Pre-divided Sunsoft 5B on PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:857 +msgid "0.89MHz (Pre-divided Sunsoft 5B)" +msgstr "" + +#: src/gui/sysConf.cpp:861 +msgid "1MHz (Amstrad CPC)" +msgstr "" + +#: src/gui/sysConf.cpp:865 +msgid "1.10MHz (Gamate/VIC-20 PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:869 +msgid "1.25MHz (Mag Max)" +msgstr "" + +#: src/gui/sysConf.cpp:873 +msgid "1.5MHz (Vectrex)" +msgstr "" + +#: src/gui/sysConf.cpp:877 +msgid "1.536MHz (Kyugo)" +msgstr "" + +#: src/gui/sysConf.cpp:881 +msgid "1.67MHz (?)" +msgstr "" + +#: src/gui/sysConf.cpp:885 +msgid "1.75MHz (ZX Spectrum 48K)" +msgstr "" + +#: src/gui/sysConf.cpp:889 +msgid "1.99MHz (PC-88)" +msgstr "" + +#: src/gui/sysConf.cpp:893 +msgid "2MHz (Atari ST/Sharp X1)" +msgstr "" + +#: src/gui/sysConf.cpp:897 +msgid "2^21Hz (Game Boy)" +msgstr "" + +#: src/gui/sysConf.cpp:901 +msgid "3.58MHz (Darky)" +msgstr "" + +#: src/gui/sysConf.cpp:905 +msgid "3.6MHz (Darky)" +msgstr "" + +#: src/gui/sysConf.cpp:917 +msgid "YM2149(F)" +msgstr "" + +#: src/gui/sysConf.cpp:921 +msgid "Sunsoft 5B" +msgstr "" + +#: src/gui/sysConf.cpp:925 +msgid "AY-3-8914" +msgstr "" + +#: src/gui/sysConf.cpp:931 +msgid "note: AY-3-8914 is not supported by the VGM format!" +msgstr "" + +#: src/gui/sysConf.cpp:935 +msgid "Stereo##_AY_STEREO" +msgstr "" + +#: src/gui/sysConf.cpp:940 +msgid "Separation" +msgstr "" + +#: src/gui/sysConf.cpp:949 +msgid "Half Clock divider##_AY_CLKSEL" +msgstr "" + +#: src/gui/sysConf.cpp:971 +msgid "SAM Coupé (8MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:975 +msgid "NTSC (7.15MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:979 +msgid "PAL (7.09MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:999 +msgid "Stereo separation:" +msgstr "" + +#: src/gui/sysConf.cpp:1006 src/gui/sysConf.cpp:2412 +msgid "Model:" +msgstr "" + +#: src/gui/sysConf.cpp:1008 +msgid "Amiga 500 (OCS)" +msgstr "" + +#: src/gui/sysConf.cpp:1012 +msgid "Amiga 1200 (AGA)" +msgstr "" + +#: src/gui/sysConf.cpp:1018 +msgid "Chip memory:" +msgstr "" + +#: src/gui/sysConf.cpp:1020 +msgid "2MB (ECS/AGA max)" +msgstr "" + +#: src/gui/sysConf.cpp:1030 +msgid "512KB (OCS max)" +msgstr "" + +#: src/gui/sysConf.cpp:1043 src/gui/sysConf.cpp:1081 src/gui/sysConf.cpp:2395 +#: src/gui/sysConf.cpp:2449 +msgid "PAL" +msgstr "" + +#: src/gui/sysConf.cpp:1046 +msgid "Bypass frequency limits" +msgstr "" + +#: src/gui/sysConf.cpp:1065 +msgid "Mixing mode:" +msgstr "" + +#: src/gui/sysConf.cpp:1067 src/gui/settings.cpp:3724 +msgid "Mono" +msgstr "" + +#: src/gui/sysConf.cpp:1071 +msgid "Mono (no distortion)" +msgstr "" + +#: src/gui/sysConf.cpp:1075 src/gui/sysConf.cpp:1197 src/gui/sysConf.cpp:1864 +#: src/gui/sysConf.cpp:2204 +msgid "Stereo" +msgstr "" + +#: src/gui/sysConf.cpp:1100 +msgid "1.19MHz (PC)" +msgstr "" + +#: src/gui/sysConf.cpp:1104 +msgid "1.99MHz (PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1108 +msgid "2.46MHz (PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1114 +msgid "Speaker type:" +msgstr "" + +#: src/gui/sysConf.cpp:1116 +msgid "Unfiltered" +msgstr "" + +#: src/gui/sysConf.cpp:1120 +msgid "Cone" +msgstr "" + +#: src/gui/sysConf.cpp:1124 +msgid "Piezo" +msgstr "" + +#: src/gui/sysConf.cpp:1128 +msgid "Use system beeper (Linux only!)" +msgstr "" + +#: src/gui/sysConf.cpp:1134 +msgid "Reset phase on frequency change" +msgstr "" + +#: src/gui/sysConf.cpp:1183 +msgid "16MHz (Seta 1)" +msgstr "" + +#: src/gui/sysConf.cpp:1187 +msgid "16.67MHz (Seta 2)" +msgstr "" + +#: src/gui/sysConf.cpp:1191 src/gui/sysConf.cpp:1759 +msgid "14.32MHz (NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:1201 +msgid "Bankswitched (Seta 2)" +msgstr "" + +#: src/gui/sysConf.cpp:1235 src/gui/sysConf.cpp:1261 +msgid "Initial channel limit:" +msgstr "" + +#: src/gui/sysConf.cpp:1241 src/gui/sysConf.cpp:2398 +msgid "Disable hissing" +msgstr "" + +#: src/gui/sysConf.cpp:1244 +msgid "Scale frequency to wave length" +msgstr "" + +#: src/gui/sysConf.cpp:1300 src/gui/sysConf.cpp:1722 +msgid "3.54MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:1304 src/gui/sysConf.cpp:1726 src/gui/sysConf.cpp:2290 +msgid "4MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1308 src/gui/sysConf.cpp:1730 +msgid "3MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1312 src/gui/sysConf.cpp:1734 +msgid "3.9936MHz (PC-88/PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1316 +msgid "1.5MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1321 src/gui/sysConf.cpp:1391 src/gui/sysConf.cpp:1639 +#: src/gui/sysConf.cpp:1852 +msgid "Output rate:" +msgstr "" + +#: src/gui/sysConf.cpp:1323 src/gui/sysConf.cpp:1397 +msgid "FM: clock / 72, SSG: clock / 16" +msgstr "" + +#: src/gui/sysConf.cpp:1327 +msgid "FM: clock / 36, SSG: clock / 8" +msgstr "" + +#: src/gui/sysConf.cpp:1331 +msgid "FM: clock / 24, SSG: clock / 4" +msgstr "" + +#: src/gui/sysConf.cpp:1343 +msgid "FM Volume" +msgstr "" + +#: src/gui/sysConf.cpp:1382 +msgid "8MHz (Arcade)" +msgstr "" + +#: src/gui/sysConf.cpp:1386 +msgid "7.987MHz (PC-88/PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1393 +msgid "FM: clock / 144, SSG: clock / 32" +msgstr "" + +#: src/gui/sysConf.cpp:1401 +msgid "FM: clock / 48, SSG: clock / 8" +msgstr "" + +#: src/gui/sysConf.cpp:1446 +msgid "8MHz (FM Towns)" +msgstr "" + +#: src/gui/sysConf.cpp:1450 +msgid "10MHz (Sega System 18)" +msgstr "" + +#: src/gui/sysConf.cpp:1454 +msgid "12.5MHz (Sega CD/System 32)" +msgstr "" + +#: src/gui/sysConf.cpp:1461 +msgid "RF5C68 (10-bit output)" +msgstr "" + +#: src/gui/sysConf.cpp:1465 +msgid "RF5C164 (16-bit output)" +msgstr "" + +#: src/gui/sysConf.cpp:1520 +msgid "Sample rate table:" +msgstr "" + +#: src/gui/sysConf.cpp:1524 +msgid "divider \\ clock" +msgstr "" + +#: src/gui/sysConf.cpp:1526 +msgid "full" +msgstr "" + +#: src/gui/sysConf.cpp:1528 +msgid "half" +msgstr "" + +#: src/gui/sysConf.cpp:1641 +msgid "clock / 132" +msgstr "" + +#: src/gui/sysConf.cpp:1645 +msgid "clock / 165" +msgstr "" + +#: src/gui/sysConf.cpp:1651 +msgid "Bankswitched (NMK112)" +msgstr "" + +#: src/gui/sysConf.cpp:1670 +msgid "1.79MHz (NTSC/MSX)" +msgstr "" + +#: src/gui/sysConf.cpp:1674 +msgid "1.77MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:1678 +msgid "1.5MHz (Arcade)" +msgstr "" + +#: src/gui/sysConf.cpp:1682 +msgid "2MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1697 +msgid "Consistent frequency across all duties" +msgstr "" + +#: src/gui/sysConf.cpp:1704 +msgid "note: only works for an initial LFSR value of 0!" +msgstr "" + +#: src/gui/sysConf.cpp:1738 +msgid "3.5MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1763 +msgid "14.19MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:1767 +msgid "14MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1771 +msgid "16MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1775 +msgid "15MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1779 +msgid "33.8688MHz (OPL3-L)" +msgstr "" + +#: src/gui/sysConf.cpp:1784 +msgid "OPL3 (YMF262)" +msgstr "" + +#: src/gui/sysConf.cpp:1788 +msgid "OPL3-L (YMF289B)" +msgstr "" + +#: src/gui/sysConf.cpp:1794 +msgid "Compatible panning (0800)" +msgstr "" + +#: src/gui/sysConf.cpp:1858 +msgid "Output bit depth:" +msgstr "" + +#: src/gui/sysConf.cpp:1868 +msgid "Interpolation:" +msgstr "" + +#: src/gui/sysConf.cpp:1874 src/gui/waveEdit.cpp:38 +msgid "Linear" +msgstr "" + +#: src/gui/sysConf.cpp:1878 src/gui/waveEdit.cpp:40 +msgid "Cubic" +msgstr "" + +#: src/gui/sysConf.cpp:1882 +msgid "Sinc" +msgstr "" + +#: src/gui/sysConf.cpp:1920 +msgid "Left##VolScaleL" +msgstr "" + +#: src/gui/sysConf.cpp:1925 +msgid "Right##VolScaleL" +msgstr "" + +#: src/gui/sysConf.cpp:1935 +msgid "Initial echo state:" +msgstr "" + +#: src/gui/sysConf.cpp:1955 +msgid "Delay##EchoDelay" +msgstr "" + +#: src/gui/sysConf.cpp:1961 +msgid "Feedback##EchoFeedback" +msgstr "" + +#: src/gui/sysConf.cpp:1968 +msgid "Left##EchoVolL" +msgstr "" + +#: src/gui/sysConf.cpp:1973 +msgid "Right##EchoVolL" +msgstr "" + +#: src/gui/sysConf.cpp:1979 +msgid "Echo filter:" +msgstr "" + +#: src/gui/sysConf.cpp:1989 +msgid "Hex##SNESFHex" +msgstr "" + +#: src/gui/sysConf.cpp:1989 +msgid "Dec##SNESFHex" +msgstr "" + +#: src/gui/sysConf.cpp:2031 +#, c-format +msgid "sum: %d" +msgstr "" + +#: src/gui/sysConf.cpp:2086 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:63 +#: src/gui/insEdit.cpp:75 +msgid "Detune" +msgstr "" + +#: src/gui/sysConf.cpp:2092 +msgid "Capacitor values (nF):" +msgstr "" + +#: src/gui/sysConf.cpp:2102 +msgid "Initial part volume (channel 1-4):" +msgstr "" + +#: src/gui/sysConf.cpp:2112 +msgid "Initial part volume (channel 5-8):" +msgstr "" + +#: src/gui/sysConf.cpp:2122 +msgid "Envelope mode (channel 1-4):" +msgstr "" + +#: src/gui/sysConf.cpp:2124 +msgid "Capacitor (attack/decay)##EM00" +msgstr "" + +#: src/gui/sysConf.cpp:2128 +msgid "External (volume macro)##EM01" +msgstr "" + +#: src/gui/sysConf.cpp:2134 +msgid "Envelope mode (channel 5-8):" +msgstr "" + +#: src/gui/sysConf.cpp:2136 +msgid "Capacitor (attack/decay)##EM10" +msgstr "" + +#: src/gui/sysConf.cpp:2140 +msgid "External (volume macro)##EM11" +msgstr "" + +#: src/gui/sysConf.cpp:2146 +msgid "Global vibrato:" +msgstr "" + +#: src/gui/sysConf.cpp:2153 +msgid "Depth" +msgstr "" + +#: src/gui/sysConf.cpp:2219 src/gui/sysConf.cpp:2373 +msgid "Waveform storage mode:" +msgstr "" + +#: src/gui/sysConf.cpp:2221 +msgid "RAM" +msgstr "" + +#: src/gui/sysConf.cpp:2225 +msgid "ROM (up to 8 waves)" +msgstr "" + +#: src/gui/sysConf.cpp:2241 +msgid "Compatible noise frequencies" +msgstr "" + +#: src/gui/sysConf.cpp:2256 +msgid "Legacy slides and pitch (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:2314 +msgid "PAL (1.77MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:2344 +msgid "Banking style:" +msgstr "" + +#: src/gui/sysConf.cpp:2346 +msgid "Namco System 2 (2MB)" +msgstr "" + +#: src/gui/sysConf.cpp:2351 +msgid "Namco System 21 (4MB)" +msgstr "" + +#: src/gui/sysConf.cpp:2356 +msgid "Raw (16MB; no VGM export!)" +msgstr "" + +#: src/gui/sysConf.cpp:2375 +msgid "Dynamic (unconfirmed)" +msgstr "" + +#: src/gui/sysConf.cpp:2379 +msgid "Static (up to 5 waves)" +msgstr "" + +#: src/gui/sysConf.cpp:2414 +msgid "DS (4MB RAM)" +msgstr "" + +#: src/gui/sysConf.cpp:2418 +msgid "DSi (16MB RAM)" +msgstr "" + +#: src/gui/sysConf.cpp:2444 src/gui/settings.cpp:727 +msgid "nothing to configure" +msgstr "" + +#: src/gui/sysConf.cpp:2467 +msgid "Custom clock rate" +msgstr "" + +#: src/gui/volMeter.cpp:36 src/gui/settings.cpp:3969 src/gui/guiConst.cpp:596 +msgid "Volume Meter" +msgstr "" + +#: src/gui/userPresets.cpp:325 +msgid "User Systems" +msgstr "" + +#: src/gui/userPresets.cpp:337 +msgid "Error! User category does not exist!" +msgstr "" + +#: src/gui/userPresets.cpp:346 src/gui/newSong.cpp:181 +msgid "Systems" +msgstr "" + +#: src/gui/userPresets.cpp:349 +msgid "New Preset" +msgstr "" + +#: src/gui/userPresets.cpp:361 +msgid "select a preset" +msgstr "" + +#: src/gui/userPresets.cpp:374 +msgid "Remove##UPresetRemove" +msgstr "" + +#: src/gui/userPresets.cpp:439 src/gui/settings.cpp:1135 +msgid "Configure" +msgstr "" + +#: src/gui/userPresets.cpp:470 +msgid "Advanced" +msgstr "" + +#: src/gui/userPresets.cpp:476 +msgid "" +"insert additional settings in `option=value` format.\n" +"available options:\n" +"- tickRate" +msgstr "" + +#: src/gui/userPresets.cpp:509 +msgid "Save and Close" +msgstr "" + +#: src/gui/userPresets.cpp:515 src/gui/settings.cpp:1238 +#: src/gui/settings.cpp:2161 src/gui/settings.cpp:2553 +#: src/gui/settings.cpp:3796 +msgid "Import" +msgstr "" + +#: src/gui/userPresets.cpp:519 +msgid "Import (replace)" +msgstr "" + +#: src/gui/effectList.cpp:14 src/gui/guiConst.cpp:606 +msgid "Effect List" +msgstr "" + +#: src/gui/effectList.cpp:18 +#, c-format +msgid "Chip at cursor: %s" +msgstr "" + +#: src/gui/effectList.cpp:21 src/gui/settings.cpp:6674 +msgid "Search" +msgstr "" + +#: src/gui/effectList.cpp:25 +msgid "Effect types to show:" +msgstr "" + +#: src/gui/effectList.cpp:47 +msgid "Description" +msgstr "" + +#: src/gui/subSongs.cpp:22 src/gui/subSongs.cpp:32 +#, c-format +msgid "%d. " +msgstr "" + +#: src/gui/subSongs.cpp:73 src/gui/subSongs.cpp:93 +msgid "too many subsongs!" +msgstr "" + +#: src/gui/subSongs.cpp:114 +msgid "this is the only subsong!" +msgstr "" + +#: src/gui/subSongs.cpp:116 +msgid "are you sure you want to remove this subsong?" +msgstr "" + +#: src/gui/spoiler.cpp:30 +msgid "Spoiler" +msgstr "" + +#: src/gui/spoiler.cpp:32 +msgid "SPOILER" +msgstr "" + +#: src/gui/settings.cpp:104 src/gui/settings.cpp:114 src/gui/settings.cpp:124 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:105 src/gui/settings.cpp:115 src/gui/settings.cpp:125 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:168 +msgid "ASAP (C++ port)" +msgstr "" + +#: src/gui/settings.cpp:191 +msgid "ESFMu (fast)" +msgstr "" + +#: src/gui/settings.cpp:205 +msgid "Lower" +msgstr "" + +#: src/gui/settings.cpp:207 +msgid "Medium" +msgstr "" + +#: src/gui/settings.cpp:209 +msgid "Ultra" +msgstr "" + +#: src/gui/settings.cpp:210 +msgid "Ultimate" +msgstr "" + +#: src/gui/settings.cpp:214 +msgid "evdev SND_TONE" +msgstr "" + +#: src/gui/settings.cpp:215 +msgid "KIOCSOUND on /dev/tty1" +msgstr "" + +#: src/gui/settings.cpp:216 +msgid "/dev/port" +msgstr "" + +#: src/gui/settings.cpp:217 +msgid "KIOCSOUND on standard output" +msgstr "" + +#: src/gui/settings.cpp:218 +msgid "outb()" +msgstr "" + +#: src/gui/settings.cpp:222 src/gui/settings.cpp:232 +msgid "Disabled/custom" +msgstr "" + +#: src/gui/settings.cpp:223 +msgid "Two octaves (0 is C-4, F is D#5)" +msgstr "" + +#: src/gui/settings.cpp:224 +msgid "Raw (note number is value)" +msgstr "" + +#: src/gui/settings.cpp:225 +msgid "Two octaves alternate (lower keys are 0-9, upper keys are A-F)" +msgstr "" + +#: src/gui/settings.cpp:226 src/gui/settings.cpp:233 +msgid "Use dual control change (one for each nibble)" +msgstr "" + +#: src/gui/settings.cpp:227 src/gui/settings.cpp:234 +msgid "Use 14-bit control change" +msgstr "" + +#: src/gui/settings.cpp:228 src/gui/settings.cpp:235 +msgid "Use single control change (imprecise)" +msgstr "" + +#: src/gui/settings.cpp:239 +msgid "--select--" +msgstr "" + +#: src/gui/settings.cpp:240 src/gui/settings.cpp:241 src/gui/settings.cpp:242 +#: src/gui/settings.cpp:243 src/gui/settings.cpp:244 src/gui/settings.cpp:245 +#: src/gui/settings.cpp:246 +msgid "???" +msgstr "" + +#: src/gui/settings.cpp:247 +msgid "Note Off" +msgstr "" + +#: src/gui/settings.cpp:248 +msgid "Note On" +msgstr "" + +#: src/gui/settings.cpp:249 +msgid "Aftertouch" +msgstr "" + +#: src/gui/settings.cpp:250 src/gui/insEdit.cpp:7187 src/gui/insEdit.cpp:7217 +#: src/gui/insEdit.cpp:7382 src/gui/insEdit.cpp:7403 src/gui/insEdit.cpp:7415 +#: src/gui/insEdit.cpp:7430 +msgid "Control" +msgstr "" + +#: src/gui/settings.cpp:251 src/gui/settings.cpp:573 src/gui/settings.cpp:3177 +msgid "Program" +msgstr "" + +#: src/gui/settings.cpp:252 +msgid "ChanPressure" +msgstr "" + +#: src/gui/settings.cpp:253 +msgid "Pitch Bend" +msgstr "" + +#: src/gui/settings.cpp:254 +msgid "SysEx" +msgstr "" + +#: src/gui/settings.cpp:258 src/gui/settings.cpp:1713 src/gui/settings.cpp:1723 +#: src/gui/settings.cpp:1743 src/gui/settings.cpp:1749 +#, c-format +msgid "Any" +msgstr "" + +#: src/gui/settings.cpp:262 src/gui/settings.cpp:3363 src/gui/settings.cpp:3928 +#: src/gui/settings.cpp:4121 +msgid "Instrument" +msgstr "" + +#: src/gui/settings.cpp:264 +msgid "Effect 1 type" +msgstr "" + +#: src/gui/settings.cpp:265 +msgid "Effect 1 value" +msgstr "" + +#: src/gui/settings.cpp:266 +msgid "Effect 2 type" +msgstr "" + +#: src/gui/settings.cpp:267 +msgid "Effect 2 value" +msgstr "" + +#: src/gui/settings.cpp:268 +msgid "Effect 3 type" +msgstr "" + +#: src/gui/settings.cpp:269 +msgid "Effect 3 value" +msgstr "" + +#: src/gui/settings.cpp:270 +msgid "Effect 4 type" +msgstr "" + +#: src/gui/settings.cpp:271 +msgid "Effect 4 value" +msgstr "" + +#: src/gui/settings.cpp:272 +msgid "Effect 5 type" +msgstr "" + +#: src/gui/settings.cpp:273 +msgid "Effect 5 value" +msgstr "" + +#: src/gui/settings.cpp:274 +msgid "Effect 6 type" +msgstr "" + +#: src/gui/settings.cpp:275 +msgid "Effect 6 value" +msgstr "" + +#: src/gui/settings.cpp:276 +msgid "Effect 7 type" +msgstr "" + +#: src/gui/settings.cpp:277 +msgid "Effect 7 value" +msgstr "" + +#: src/gui/settings.cpp:278 +msgid "Effect 8 type" +msgstr "" + +#: src/gui/settings.cpp:279 +msgid "Effect 8 value" +msgstr "" + +#: src/gui/settings.cpp:315 +msgid "Press key..." +msgstr "" + +#: src/gui/settings.cpp:564 +msgid "Do you want to save your settings?" +msgstr "" + +#: src/gui/settings.cpp:571 +msgid "General" +msgstr "" + +#: src/gui/settings.cpp:588 +msgid "Language" +msgstr "" + +#: src/gui/settings.cpp:606 +msgid "Render backend" +msgstr "" + +#: src/gui/settings.cpp:661 src/gui/settings.cpp:680 src/gui/settings.cpp:1312 +msgid "you may need to restart Furnace for this setting to take effect." +msgstr "" + +#: src/gui/settings.cpp:664 +msgid "Advanced render backend settings" +msgstr "" + +#: src/gui/settings.cpp:666 +msgid "Render driver" +msgstr "" + +#: src/gui/settings.cpp:666 src/gui/settings.cpp:667 src/gui/settings.cpp:1298 +#: src/gui/settings.cpp:1299 src/gui/piano.cpp:108 +msgid "Automatic" +msgstr "" + +#: src/gui/settings.cpp:683 +msgid "" +"beware: changing these settings may render Furnace unusable! do so at your " +"own risk.\n" +"start Furnace with -safemode if you mess something up." +msgstr "" + +#: src/gui/settings.cpp:684 +msgid "Red bits" +msgstr "" + +#: src/gui/settings.cpp:689 +msgid "Green bits" +msgstr "" + +#: src/gui/settings.cpp:694 +msgid "Blue bits" +msgstr "" + +#: src/gui/settings.cpp:699 +msgid "Alpha bits" +msgstr "" + +#: src/gui/settings.cpp:704 +msgid "Color depth" +msgstr "" + +#: src/gui/settings.cpp:709 +msgid "Stencil buffer size" +msgstr "" + +#: src/gui/settings.cpp:714 src/gui/settings.cpp:1385 +msgid "Buffer size" +msgstr "" + +#: src/gui/settings.cpp:720 +msgid "Double buffer" +msgstr "" + +#: src/gui/settings.cpp:725 +msgid "" +"the following values are common (in red, green, blue, alpha order):\n" +"- 24 bits: 8, 8, 8, 0\n" +"- 16 bits: 5, 6, 5, 0\n" +"- 32 bits (with alpha): 8, 8, 8, 8\n" +"- 30 bits (deep): 10, 10, 10, 0" +msgstr "" + +#: src/gui/settings.cpp:732 +#, c-format +msgid "" +"current backend: %s\n" +"%s\n" +"%s\n" +"%s" +msgstr "" + +#: src/gui/settings.cpp:735 +msgid "VSync" +msgstr "" + +#: src/gui/settings.cpp:743 +msgid "Frame rate limit" +msgstr "" + +#: src/gui/settings.cpp:743 +msgid "Unlimited" +msgstr "" + +#: src/gui/settings.cpp:749 +msgid "only applies when VSync is disabled." +msgstr "" + +#: src/gui/settings.cpp:753 +msgid "Display render time" +msgstr "" + +#: src/gui/settings.cpp:760 +msgid "Late render clear" +msgstr "" + +#: src/gui/settings.cpp:765 +msgid "" +"calls rend->clear() after rend->present(). might reduce UI latency by one " +"frame in some drivers." +msgstr "" + +#: src/gui/settings.cpp:770 +msgid "Power-saving mode" +msgstr "" + +#: src/gui/settings.cpp:775 +msgid "" +"saves power by lowering the frame rate to 2fps when idle.\n" +"may cause issues under Mesa drivers!" +msgstr "" + +#: src/gui/settings.cpp:780 +msgid "Disable threaded input (restart after changing!)" +msgstr "" + +#: src/gui/settings.cpp:785 +msgid "" +"threaded input processes key presses for note preview on a separate thread " +"(on supported platforms), which reduces latency.\n" +"however, crashes have been reported when threaded input is on. enable this " +"option if that is the case." +msgstr "" + +#: src/gui/settings.cpp:790 +msgid "Enable event delay" +msgstr "" + +#: src/gui/settings.cpp:796 +msgid "may cause issues with high-polling-rate mice when previewing notes." +msgstr "" + +#: src/gui/settings.cpp:800 +msgid "Per-channel oscilloscope threads" +msgstr "" + +#: src/gui/settings.cpp:808 +msgid "you're being silly, aren't you? that's enough." +msgstr "" + +#: src/gui/settings.cpp:812 +msgid "what are you doing? stop!" +msgstr "" + +#: src/gui/settings.cpp:816 +#, c-format +msgid "" +"it is a bad idea to set this number higher than your CPU core count (%d)!" +msgstr "" + +#: src/gui/settings.cpp:821 +msgid "Oscilloscope rendering engine:" +msgstr "" + +#: src/gui/settings.cpp:823 +msgid "ImGui line plot" +msgstr "" + +#: src/gui/settings.cpp:827 +msgid "render using Dear ImGui's built-in line drawing functions." +msgstr "" + +#: src/gui/settings.cpp:829 +msgid "GLSL (if available)" +msgstr "" + +#: src/gui/settings.cpp:834 +msgid "" +"render using shaders that run on the graphics card.\n" +"only available in OpenGL ES 2.0 render backend." +msgstr "" + +#: src/gui/settings.cpp:836 +msgid "" +"render using shaders that run on the graphics card.\n" +"only available in OpenGL 3.0 render backend." +msgstr "" + +#: src/gui/settings.cpp:843 +msgid "Vibration" +msgstr "" + +#: src/gui/settings.cpp:845 +msgid "Strength" +msgstr "" + +#: src/gui/settings.cpp:851 src/gui/insEdit.cpp:2284 src/gui/insEdit.cpp:2382 +#: src/gui/insEdit.cpp:5582 src/gui/insEdit.cpp:6241 +msgid "Length" +msgstr "" + +#: src/gui/settings.cpp:859 src/gui/gui.cpp:4191 +msgid "File" +msgstr "" + +#: src/gui/settings.cpp:862 +msgid "Use system file picker" +msgstr "" + +#: src/gui/settings.cpp:867 +msgid "Number of recent files" +msgstr "" + +#: src/gui/settings.cpp:874 +msgid "Compress when saving" +msgstr "" + +#: src/gui/settings.cpp:879 +msgid "use zlib to compress saved songs." +msgstr "" + +#: src/gui/settings.cpp:883 +msgid "Save unused patterns" +msgstr "" + +#: src/gui/settings.cpp:889 +msgid "Use new pattern format when saving" +msgstr "" + +#: src/gui/settings.cpp:894 +msgid "" +"use a packed format which saves space when saving songs.\n" +"disable if you need compatibility with older Furnace and/or tools\n" +"which do not support this format." +msgstr "" + +#: src/gui/settings.cpp:898 +msgid "Don't apply compatibility flags when loading .dmf" +msgstr "" + +#: src/gui/settings.cpp:903 +msgid "do not report any issues arising from the use of this option!" +msgstr "" + +#: src/gui/settings.cpp:906 +msgid "Play after opening song:" +msgstr "" + +#: src/gui/settings.cpp:908 +msgid "No##pol0" +msgstr "" + +#: src/gui/settings.cpp:912 +msgid "Only if already playing##pol1" +msgstr "" + +#: src/gui/settings.cpp:916 +msgid "Yes##pol0" +msgstr "" + +#: src/gui/settings.cpp:922 +msgid "Audio export loop/fade out time:" +msgstr "" + +#: src/gui/settings.cpp:924 +msgid "Set to these values on start-up:##fot0" +msgstr "" + +#: src/gui/settings.cpp:942 +msgid "Remember last values##fot1" +msgstr "" + +#: src/gui/settings.cpp:949 +msgid "Store instrument name in .fui" +msgstr "" + +#: src/gui/settings.cpp:954 +msgid "" +"when enabled, saving an instrument will store its name.\n" +"this may increase file size." +msgstr "" + +#: src/gui/settings.cpp:958 +msgid "Load instrument name from .fui" +msgstr "" + +#: src/gui/settings.cpp:963 +msgid "" +"when enabled, loading an instrument will use the stored name (if present).\n" +"otherwise, it will use the file name." +msgstr "" + +#: src/gui/settings.cpp:967 +msgid "Auto-fill file name when saving" +msgstr "" + +#: src/gui/settings.cpp:972 +msgid "" +"fill the file name field with an appropriate file name when saving or " +"exporting." +msgstr "" + +#: src/gui/settings.cpp:976 src/gui/gui.cpp:5563 src/gui/gui.cpp:5613 +msgid "New Song" +msgstr "" + +#: src/gui/settings.cpp:978 +msgid "Initial system:" +msgstr "" + +#: src/gui/settings.cpp:980 +msgid "Current system" +msgstr "" + +#: src/gui/settings.cpp:993 src/gui/waveEdit.cpp:1149 src/gui/gui.cpp:3046 +msgid "Randomize" +msgstr "" + +#: src/gui/settings.cpp:1043 +msgid "Reset to defaults" +msgstr "" + +#: src/gui/settings.cpp:1178 +msgid "When creating new song:" +msgstr "" + +#: src/gui/settings.cpp:1180 +msgid "Display system preset selector##NSB0" +msgstr "" + +#: src/gui/settings.cpp:1184 +msgid "Start with initial system##NSB1" +msgstr "" + +#: src/gui/settings.cpp:1188 +msgid "Default author name" +msgstr "" + +#: src/gui/settings.cpp:1192 +msgid "Start-up" +msgstr "" + +#: src/gui/settings.cpp:1193 +msgid "Play intro on start-up:" +msgstr "" + +#: src/gui/settings.cpp:1195 +msgid "No##pis0" +msgstr "" + +#: src/gui/settings.cpp:1199 +msgid "Short##pis1" +msgstr "" + +#: src/gui/settings.cpp:1203 +msgid "Full (short when loading song)##pis2" +msgstr "" + +#: src/gui/settings.cpp:1207 +msgid "Full (always)##pis3" +msgstr "" + +#: src/gui/settings.cpp:1214 +msgid "Disable fade-in during start-up" +msgstr "" + +#: src/gui/settings.cpp:1220 +msgid "About screen party time" +msgstr "" + +#: src/gui/settings.cpp:1225 +msgid "Warning: may cause epileptic seizures." +msgstr "" + +#: src/gui/settings.cpp:1229 +msgid "Behavior" +msgstr "" + +#: src/gui/settings.cpp:1231 +msgid "New instruments are blank" +msgstr "" + +#: src/gui/settings.cpp:1237 src/gui/settings.cpp:4255 +msgid "Configuration" +msgstr "" + +#: src/gui/settings.cpp:1246 +msgid "Factory Reset" +msgstr "" + +#: src/gui/settings.cpp:1247 +msgid "" +"Are you sure you want to reset all Furnace settings?\n" +"You must restart Furnace after doing so." +msgstr "" + +#: src/gui/settings.cpp:1255 +msgid "Output" +msgstr "" + +#: src/gui/settings.cpp:1263 +msgid "Backend" +msgstr "" + +#: src/gui/settings.cpp:1296 +msgid "Driver" +msgstr "" + +#: src/gui/settings.cpp:1319 +msgid "Device" +msgstr "" + +#: src/gui/settings.cpp:1323 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:1324 +msgid "ALERT - TRESPASSER DETECTED" +msgstr "" + +#: src/gui/settings.cpp:1326 +msgid "you have been arrested for trying to engage with a disabled combo box." +msgstr "" + +#: src/gui/settings.cpp:1333 src/gui/settings.cpp:1335 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:1371 src/gui/insEdit.cpp:7186 +msgid "Outputs" +msgstr "" + +#: src/gui/settings.cpp:1379 +msgid "" +"common values:\n" +"- 1 for mono\n" +"- 2 for stereo\n" +"- 4 for quadraphonic\n" +"- 6 for 5.1 surround\n" +"- 8 for 7.1 surround" +msgstr "" + +#: src/gui/settings.cpp:1387 +#, c-format +msgid "%d (latency: ~%.1fms)" +msgstr "" + +#: src/gui/settings.cpp:1402 +msgid "Multi-threaded (EXPERIMENTAL)" +msgstr "" + +#: src/gui/settings.cpp:1411 +msgid "" +"runs chip emulation on separate threads.\n" +"may increase performance when using heavy emulation cores.\n" +"\n" +"warnings:\n" +"- experimental!\n" +"- only useful on multi-chip songs." +msgstr "" + +#: src/gui/settings.cpp:1416 +msgid "Number of threads" +msgstr "" + +#: src/gui/settings.cpp:1423 +msgid "that's the limit!" +msgstr "" + +#: src/gui/settings.cpp:1427 +#, c-format +msgid "" +"it is a VERY bad idea to set this number higher than your CPU core count " +"(%d)!" +msgstr "" + +#: src/gui/settings.cpp:1435 +msgid "Low-latency mode" +msgstr "" + +#: src/gui/settings.cpp:1440 +msgid "" +"reduces latency by running the engine faster than the tick rate.\n" +"useful for live playback/jam mode.\n" +"\n" +"warning: only enable if your buffer size is small (10ms or less)." +msgstr "" + +#: src/gui/settings.cpp:1444 +msgid "Force mono audio" +msgstr "" + +#: src/gui/settings.cpp:1452 +msgid "Exclusive mode" +msgstr "" + +#: src/gui/settings.cpp:1463 +#, c-format +msgid "want: %d samples @ %.0fHz (%d channel)" +msgid_plural "want: %d samples @ %.0fHz (%d channels)" +msgstr[0] "" + +#: src/gui/settings.cpp:1464 +#, c-format +msgid "got: %d samples @ %.0fHz (%d channel)" +msgid_plural "got: %d samples @ %.0fHz (%d channels)" +msgstr[0] "" + +#: src/gui/settings.cpp:1471 +msgid "Mixing" +msgstr "" + +#: src/gui/settings.cpp:1473 src/gui/settings.cpp:2082 +msgid "Quality" +msgstr "" + +#: src/gui/settings.cpp:1478 +msgid "Software clipping" +msgstr "" + +#: src/gui/settings.cpp:1484 +msgid "DC offset correction" +msgstr "" + +#: src/gui/settings.cpp:1502 src/gui/guiConst.cpp:740 +msgid "Sample preview" +msgstr "" + +#: src/gui/settings.cpp:1515 +msgid "MIDI" +msgstr "" + +#: src/gui/settings.cpp:1517 src/gui/settings.cpp:1519 +msgid "MIDI input" +msgstr "" + +#: src/gui/settings.cpp:1521 src/gui/settings.cpp:1524 +#: src/gui/settings.cpp:1815 src/gui/settings.cpp:1817 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:1540 +msgid "Re-scan MIDI devices" +msgstr "" + +#: src/gui/settings.cpp:1551 src/gui/settings.cpp:2258 +msgid "Note input" +msgstr "" + +#: src/gui/settings.cpp:1552 +msgid "Velocity input" +msgstr "" + +#: src/gui/settings.cpp:1556 +msgid "Map MIDI channels to direct channels" +msgstr "" + +#: src/gui/settings.cpp:1562 +msgid "Program change pass-through" +msgstr "" + +#: src/gui/settings.cpp:1567 +msgid "Map Yamaha FM voice data to instruments" +msgstr "" + +#: src/gui/settings.cpp:1569 +msgid "Program change is instrument selection" +msgstr "" + +#: src/gui/settings.cpp:1573 +msgid "Value input style" +msgstr "" + +#: src/gui/settings.cpp:1576 src/gui/settings.cpp:1601 +msgid "Control##valueCCS" +msgstr "" + +#: src/gui/settings.cpp:1582 src/gui/settings.cpp:1607 +msgid "CC of upper nibble##valueCC1" +msgstr "" + +#: src/gui/settings.cpp:1582 src/gui/settings.cpp:1607 +msgid "MSB CC##valueCC1" +msgstr "" + +#: src/gui/settings.cpp:1587 src/gui/settings.cpp:1612 +msgid "CC of lower nibble##valueCC2" +msgstr "" + +#: src/gui/settings.cpp:1587 src/gui/settings.cpp:1612 +msgid "LSB CC##valueCC2" +msgstr "" + +#: src/gui/settings.cpp:1594 +msgid "Per-column control change" +msgstr "" + +#: src/gui/settings.cpp:1624 src/gui/settings.cpp:1634 +msgid "Volume curve" +msgstr "" + +#: src/gui/settings.cpp:1637 +msgid "Actions:" +msgstr "" + +#: src/gui/settings.cpp:1651 +msgid "" +"(learning! press a button or move a slider/knob/something on your device.)" +msgstr "" + +#: src/gui/settings.cpp:1665 src/gui/settings.cpp:2277 +#: src/gui/settings.cpp:6687 src/gui/sampleEdit.cpp:501 +#: src/gui/insEdit.cpp:5321 +msgid "Type" +msgstr "" + +#: src/gui/settings.cpp:1669 +msgid "Note/Control" +msgstr "" + +#: src/gui/settings.cpp:1671 +msgid "Velocity/Value" +msgstr "" + +#: src/gui/settings.cpp:1673 +msgid "Action" +msgstr "" + +#: src/gui/settings.cpp:1765 src/gui/settings.cpp:1766 +msgid "--none--" +msgstr "" + +#: src/gui/settings.cpp:1787 +msgid "waiting...##BLearn" +msgstr "" + +#: src/gui/settings.cpp:1787 +msgid "Learn##BLearn" +msgstr "" + +#: src/gui/settings.cpp:1811 src/gui/settings.cpp:1813 +msgid "MIDI output" +msgstr "" + +#: src/gui/settings.cpp:1830 +msgid "Output mode:" +msgstr "" + +#: src/gui/settings.cpp:1832 +msgid "Off (use for TX81Z)" +msgstr "" + +#: src/gui/settings.cpp:1836 +msgid "Melodic" +msgstr "" + +#: src/gui/settings.cpp:1847 +msgid "Send Program Change" +msgstr "" + +#: src/gui/settings.cpp:1853 +msgid "Send MIDI clock" +msgstr "" + +#: src/gui/settings.cpp:1859 +msgid "Send MIDI timecode" +msgstr "" + +#: src/gui/settings.cpp:1865 +msgid "Timecode frame rate:" +msgstr "" + +#: src/gui/settings.cpp:1867 +msgid "Closest to Tick Rate" +msgstr "" + +#: src/gui/settings.cpp:1871 +msgid "Film (24fps)" +msgstr "" + +#: src/gui/settings.cpp:1875 +msgid "PAL (25fps)" +msgstr "" + +#: src/gui/settings.cpp:1879 +msgid "NTSC drop (29.97fps)" +msgstr "" + +#: src/gui/settings.cpp:1883 +msgid "NTSC non-drop (30fps)" +msgstr "" + +#: src/gui/settings.cpp:1892 +msgid "Emulation" +msgstr "" + +#: src/gui/settings.cpp:1894 +msgid "Cores" +msgstr "" + +#: src/gui/settings.cpp:1903 +msgid "Playback Core(s)" +msgstr "" + +#: src/gui/settings.cpp:1905 src/gui/settings.cpp:2093 +msgid "used for playback" +msgstr "" + +#: src/gui/settings.cpp:1908 +msgid "Render Core(s)" +msgstr "" + +#: src/gui/settings.cpp:1910 src/gui/settings.cpp:2098 +msgid "used in audio export" +msgstr "" + +#: src/gui/settings.cpp:2091 +msgid "Playback" +msgstr "" + +#: src/gui/settings.cpp:2096 +msgid "Render" +msgstr "" + +#: src/gui/settings.cpp:2120 +msgid "PC Speaker strategy" +msgstr "" + +#: src/gui/settings.cpp:2158 src/gui/settings.cpp:2160 +msgid "Keyboard" +msgstr "" + +#: src/gui/settings.cpp:2169 src/gui/settings.cpp:3804 +msgid "Reset defaults" +msgstr "" + +#: src/gui/settings.cpp:2170 +msgid "Are you sure you want to reset the keyboard settings?" +msgstr "" + +#: src/gui/settings.cpp:2172 +msgid "Global hotkeys" +msgstr "" + +#: src/gui/settings.cpp:2209 +msgid "Window activation" +msgstr "" + +#: src/gui/settings.cpp:2275 +msgid "Key" +msgstr "" + +#: src/gui/settings.cpp:2279 src/gui/findReplace.cpp:725 +#: src/gui/findReplace.cpp:1003 +msgid "Value" +msgstr "" + +#: src/gui/settings.cpp:2289 +#, c-format +msgid "Macro release##SNType_%d" +msgstr "" + +#: src/gui/settings.cpp:2294 +#, c-format +msgid "Note release##SNType_%d" +msgstr "" + +#: src/gui/settings.cpp:2299 +#, c-format +msgid "Note off##SNType_%d" +msgstr "" + +#: src/gui/settings.cpp:2304 +#, c-format +msgid "Note##SNType_%d" +msgstr "" + +#: src/gui/settings.cpp:2328 +msgid "Add..." +msgstr "" + +#: src/gui/settings.cpp:2418 +msgid "Instrument list" +msgstr "" + +#: src/gui/settings.cpp:2438 +msgid "Wavetable list" +msgstr "" + +#: src/gui/settings.cpp:2459 +msgid "Sample list" +msgstr "" + +#: src/gui/settings.cpp:2509 +msgid "Sample editor" +msgstr "" + +#: src/gui/settings.cpp:2547 src/gui/settings.cpp:3814 +#: src/gui/settings.cpp:3844 +msgid "Interface" +msgstr "" + +#: src/gui/settings.cpp:2549 +msgid "Layout" +msgstr "" + +#: src/gui/settings.cpp:2551 +msgid "Workspace layout:" +msgstr "" + +#: src/gui/settings.cpp:2561 src/gui/gui.cpp:2920 +msgid "Reset" +msgstr "" + +#: src/gui/settings.cpp:2562 src/gui/gui.cpp:4455 +msgid "Are you sure you want to reset the workspace layout?" +msgstr "" + +#: src/gui/settings.cpp:2566 +msgid "Allow docking editors" +msgstr "" + +#: src/gui/settings.cpp:2573 +msgid "Remember window position" +msgstr "" + +#: src/gui/settings.cpp:2578 +msgid "remembers the window's last position on start-up." +msgstr "" + +#: src/gui/settings.cpp:2583 +msgid "Only allow window movement when clicking on title bar" +msgstr "" + +#: src/gui/settings.cpp:2590 +msgid "Center pop-up windows" +msgstr "" + +#: src/gui/settings.cpp:2595 +msgid "Play/edit controls layout:" +msgstr "" + +#: src/gui/settings.cpp:2597 +msgid "Classic##ecl0" +msgstr "" + +#: src/gui/settings.cpp:2601 +msgid "Compact##ecl1" +msgstr "" + +#: src/gui/settings.cpp:2605 +msgid "Compact (vertical)##ecl2" +msgstr "" + +#: src/gui/settings.cpp:2609 +msgid "Split##ecl3" +msgstr "" + +#: src/gui/settings.cpp:2615 +msgid "Position of buttons in Orders:" +msgstr "" + +#: src/gui/settings.cpp:2617 +msgid "Top##obp0" +msgstr "" + +#: src/gui/settings.cpp:2621 +msgid "Left##obp1" +msgstr "" + +#: src/gui/settings.cpp:2625 +msgid "Right##obp2" +msgstr "" + +#: src/gui/settings.cpp:2632 +msgid "Mouse" +msgstr "" + +#: src/gui/settings.cpp:2634 +msgid "Double-click time (seconds)" +msgstr "" + +#: src/gui/settings.cpp:2643 +msgid "Don't raise pattern editor on click" +msgstr "" + +#: src/gui/settings.cpp:2649 +msgid "Focus pattern editor when selecting instrument" +msgstr "" + +#: src/gui/settings.cpp:2654 +msgid "Note preview behavior:" +msgstr "" + +#: src/gui/settings.cpp:2656 +msgid "Never##npb0" +msgstr "" + +#: src/gui/settings.cpp:2660 +msgid "When cursor is in Note column##npb1" +msgstr "" + +#: src/gui/settings.cpp:2664 +msgid "When cursor is in Note column or not in edit mode##npb2" +msgstr "" + +#: src/gui/settings.cpp:2668 +msgid "Always##npb3" +msgstr "" + +#: src/gui/settings.cpp:2674 +msgid "Allow dragging selection:" +msgstr "" + +#: src/gui/settings.cpp:2676 +msgid "No##dms0" +msgstr "" + +#: src/gui/settings.cpp:2680 +msgid "Yes##dms1" +msgstr "" + +#: src/gui/settings.cpp:2684 +msgid "Yes (while holding Ctrl only)##dms2" +msgstr "" + +#: src/gui/settings.cpp:2690 +msgid "Toggle channel solo on:" +msgstr "" + +#: src/gui/settings.cpp:2692 +msgid "Right-click or double-click##soloA" +msgstr "" + +#: src/gui/settings.cpp:2696 +msgid "Right-click##soloR" +msgstr "" + +#: src/gui/settings.cpp:2700 +msgid "Double-click##soloD" +msgstr "" + +#: src/gui/settings.cpp:2707 +msgid "Double click selects entire column" +msgstr "" + +#: src/gui/settings.cpp:2713 +msgid "Cursor behavior" +msgstr "" + +#: src/gui/settings.cpp:2715 +msgid "Insert pushes entire channel row" +msgstr "" + +#: src/gui/settings.cpp:2721 +msgid "Pull delete affects entire channel row" +msgstr "" + +#: src/gui/settings.cpp:2727 +msgid "Push value when overwriting instead of clearing it" +msgstr "" + +#: src/gui/settings.cpp:2733 +msgid "Keyboard note/value input repeat (hold key to input continuously)" +msgstr "" + +#: src/gui/settings.cpp:2738 +msgid "Effect input behavior:" +msgstr "" + +#: src/gui/settings.cpp:2740 +msgid "Move down##eicb0" +msgstr "" + +#: src/gui/settings.cpp:2744 +msgid "Move to effect value (otherwise move down)##eicb1" +msgstr "" + +#: src/gui/settings.cpp:2748 +msgid "Move to effect value/next effect and wrap around##eicb2" +msgstr "" + +#: src/gui/settings.cpp:2755 +msgid "Delete effect value when deleting effect" +msgstr "" + +#: src/gui/settings.cpp:2761 +msgid "Change current instrument when changing instrument column (absorb)" +msgstr "" + +#: src/gui/settings.cpp:2767 +msgid "Remove instrument value when inserting note off/release" +msgstr "" + +#: src/gui/settings.cpp:2773 +msgid "Remove volume value when inserting note off/release" +msgstr "" + +#: src/gui/settings.cpp:2779 +msgid "Cursor movement" +msgstr "" + +#: src/gui/settings.cpp:2781 +msgid "Wrap horizontally:" +msgstr "" + +#: src/gui/settings.cpp:2783 +msgid "No##wrapH0" +msgstr "" + +#: src/gui/settings.cpp:2787 +msgid "Yes##wrapH1" +msgstr "" + +#: src/gui/settings.cpp:2791 +msgid "Yes, and move to next/prev row##wrapH2" +msgstr "" + +#: src/gui/settings.cpp:2797 +msgid "Wrap vertically:" +msgstr "" + +#: src/gui/settings.cpp:2799 +msgid "No##wrapV0" +msgstr "" + +#: src/gui/settings.cpp:2803 +msgid "Yes##wrapV1" +msgstr "" + +#: src/gui/settings.cpp:2807 +msgid "Yes, and move to next/prev pattern##wrapV2" +msgstr "" + +#: src/gui/settings.cpp:2811 +msgid "Yes, and move to next/prev pattern (wrap around)##wrapV2" +msgstr "" + +#: src/gui/settings.cpp:2817 +msgid "Cursor movement keys behavior:" +msgstr "" + +#: src/gui/settings.cpp:2819 +msgid "Move by one##cmk0" +msgstr "" + +#: src/gui/settings.cpp:2823 +msgid "Move by Edit Step##cmk1" +msgstr "" + +#: src/gui/settings.cpp:2830 +msgid "Move cursor by edit step on delete" +msgstr "" + +#: src/gui/settings.cpp:2836 +msgid "Move cursor by edit step on insert (push)" +msgstr "" + +#: src/gui/settings.cpp:2842 +msgid "Move cursor up on backspace-delete" +msgstr "" + +#: src/gui/settings.cpp:2848 +msgid "Move cursor to end of clipboard content when pasting" +msgstr "" + +#: src/gui/settings.cpp:2854 +msgid "Scrolling" +msgstr "" + +#: src/gui/settings.cpp:2856 +msgid "Change order when scrolling outside of pattern bounds:" +msgstr "" + +#: src/gui/settings.cpp:2858 +msgid "No##pscroll0" +msgstr "" + +#: src/gui/settings.cpp:2862 +msgid "Yes##pscroll1" +msgstr "" + +#: src/gui/settings.cpp:2866 +msgid "Yes, and wrap around song##pscroll2" +msgstr "" + +#: src/gui/settings.cpp:2873 +msgid "Cursor follows current order when moving it" +msgstr "" + +#: src/gui/settings.cpp:2878 +msgid "applies when playback is stopped." +msgstr "" + +#: src/gui/settings.cpp:2882 +msgid "Don't scroll when moving cursor" +msgstr "" + +#: src/gui/settings.cpp:2887 +msgid "Move cursor with scroll wheel:" +msgstr "" + +#: src/gui/settings.cpp:2889 +msgid "No##csw0" +msgstr "" + +#: src/gui/settings.cpp:2893 +msgid "Yes##csw1" +msgstr "" + +#: src/gui/settings.cpp:2897 +msgid "Inverted##csw2" +msgstr "" + +#: src/gui/settings.cpp:2904 +msgid "How many steps to move with each scroll wheel step?" +msgstr "" + +#: src/gui/settings.cpp:2905 +msgid "One##cws0" +msgstr "" + +#: src/gui/settings.cpp:2909 +msgid "Edit Step##cws1" +msgstr "" + +#: src/gui/settings.cpp:2916 src/gui/settings.cpp:3531 +msgid "Assets" +msgstr "" + +#: src/gui/settings.cpp:2919 +msgid "Display instrument type menu when adding instrument" +msgstr "" + +#: src/gui/settings.cpp:2925 +msgid "Select asset after opening one" +msgstr "" + +#: src/gui/settings.cpp:2932 +msgid "Appearance" +msgstr "" + +#: src/gui/settings.cpp:2934 +msgid "Scaling" +msgstr "" + +#: src/gui/settings.cpp:2936 +msgid "Automatic UI scaling factor" +msgstr "" + +#: src/gui/settings.cpp:2945 +msgid "UI scaling factor" +msgstr "" + +#: src/gui/settings.cpp:2952 +msgid "Icon size" +msgstr "" + +#: src/gui/settings.cpp:2967 +msgid "Font renderer" +msgstr "" + +#: src/gui/settings.cpp:2977 +msgid "Main font" +msgstr "" + +#: src/gui/settings.cpp:2988 +msgid "Size##MainFontSize" +msgstr "" + +#: src/gui/settings.cpp:2996 +msgid "Header font" +msgstr "" + +#: src/gui/settings.cpp:3007 +msgid "Size##HeadFontSize" +msgstr "" + +#: src/gui/settings.cpp:3015 +msgid "Pattern font" +msgstr "" + +#: src/gui/settings.cpp:3026 +msgid "Size##PatFontSize" +msgstr "" + +#: src/gui/settings.cpp:3036 +msgid "Anti-aliased fonts" +msgstr "" + +#: src/gui/settings.cpp:3042 +msgid "Support bitmap fonts" +msgstr "" + +#: src/gui/settings.cpp:3047 +msgid "Hinting:" +msgstr "" + +#: src/gui/settings.cpp:3049 +msgid "Off (soft)##fh0" +msgstr "" + +#: src/gui/settings.cpp:3053 +msgid "Slight##fh1" +msgstr "" + +#: src/gui/settings.cpp:3057 +msgid "Normal##fh2" +msgstr "" + +#: src/gui/settings.cpp:3061 +msgid "Full (hard)##fh3" +msgstr "" + +#: src/gui/settings.cpp:3067 +msgid "Auto-hinter:" +msgstr "" + +#: src/gui/settings.cpp:3069 +msgid "Disable##fah0" +msgstr "" + +#: src/gui/settings.cpp:3073 +msgid "Enable##fah1" +msgstr "" + +#: src/gui/settings.cpp:3077 +msgid "Force##fah2" +msgstr "" + +#: src/gui/settings.cpp:3084 +msgid "Oversample" +msgstr "" + +#: src/gui/settings.cpp:3087 +msgid "1×##fos1" +msgstr "" + +#: src/gui/settings.cpp:3092 +msgid "" +"saves video memory. reduces font rendering quality.\n" +"use for pixel/bitmap fonts." +msgstr "" + +#: src/gui/settings.cpp:3095 +msgid "2×##fos2" +msgstr "" + +#: src/gui/settings.cpp:3100 +msgid "default." +msgstr "" + +#: src/gui/settings.cpp:3103 +msgid "3×##fos3" +msgstr "" + +#: src/gui/settings.cpp:3108 +msgid "" +"slightly better font rendering quality.\n" +"uses more video memory." +msgstr "" + +#: src/gui/settings.cpp:3112 +msgid "Load fallback font" +msgstr "" + +#: src/gui/settings.cpp:3117 +msgid "disable to save video memory." +msgstr "" + +#: src/gui/settings.cpp:3121 +msgid "Display Japanese characters" +msgstr "" + +#: src/gui/settings.cpp:3127 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"このオプションは、十分なグラフィックメモリがある場合にのみ切り替えてくださ" +"い。\n" +"これは、Dear ImGuiにダイナミックフォントアトラスが実装されるまでの一時的な解" +"決策です。" +msgstr "" + +#: src/gui/settings.cpp:3135 +msgid "Display Chinese (Simplified) characters" +msgstr "" + +#: src/gui/settings.cpp:3141 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"请在确保你有足够的显存后再启动此设定\n" +"这是一个在ImGui实现动态字体加载之前的临时解决方案" +msgstr "" + +#: src/gui/settings.cpp:3149 +msgid "Display Chinese (Traditional) characters" +msgstr "" + +#: src/gui/settings.cpp:3155 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"請在確保你有足夠的顯存后再啟動此設定\n" +"這是一個在ImGui實現動態字體加載之前的臨時解決方案" +msgstr "" + +#: src/gui/settings.cpp:3163 +msgid "Display Korean characters" +msgstr "" + +#: src/gui/settings.cpp:3169 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"그래픽 메모리가 충분한 경우에만 이 옵션을 선택하십시오.\n" +"이 옵션은 Dear ImGui에 동적 글꼴 아틀라스가 구현될 때까지 임시 솔루션입니다." +msgstr "" + +#: src/gui/settings.cpp:3178 +msgid "Title bar:" +msgstr "" + +#: src/gui/settings.cpp:3180 +msgid "Furnace##tbar0" +msgstr "" + +#: src/gui/settings.cpp:3185 +msgid "Song Name - Furnace##tbar1" +msgstr "" + +#: src/gui/settings.cpp:3190 +msgid "file_name.fur - Furnace##tbar2" +msgstr "" + +#: src/gui/settings.cpp:3195 +msgid "/path/to/file.fur - Furnace##tbar3" +msgstr "" + +#: src/gui/settings.cpp:3203 +msgid "Display system name on title bar" +msgstr "" + +#: src/gui/settings.cpp:3210 +msgid "Display chip names instead of \"multi-system\" in title bar" +msgstr "" + +#: src/gui/settings.cpp:3216 +msgid "Status bar:" +msgstr "" + +#: src/gui/settings.cpp:3218 +msgid "Cursor details##sbar0" +msgstr "" + +#: src/gui/settings.cpp:3222 +msgid "File path##sbar1" +msgstr "" + +#: src/gui/settings.cpp:3226 +msgid "Cursor details or file path##sbar2" +msgstr "" + +#: src/gui/settings.cpp:3230 +msgid "Nothing##sbar3" +msgstr "" + +#: src/gui/settings.cpp:3237 +msgid "Display playback status when playing" +msgstr "" + +#: src/gui/settings.cpp:3242 +msgid "Export options layout:" +msgstr "" + +#: src/gui/settings.cpp:3244 +msgid "Sub-menus in File menu##eol0" +msgstr "" + +#: src/gui/settings.cpp:3248 +msgid "Modal window with tabs##eol1" +msgstr "" + +#: src/gui/settings.cpp:3252 +msgid "Modal windows with options in File menu##eol2" +msgstr "" + +#: src/gui/settings.cpp:3259 +msgid "Capitalize menu bar" +msgstr "" + +#: src/gui/settings.cpp:3265 +msgid "Display add/configure/change/remove chip menus in File menu" +msgstr "" + +#: src/gui/settings.cpp:3279 +msgid "Highlight channel at cursor in Orders" +msgstr "" + +#: src/gui/settings.cpp:3284 +msgid "Orders row number format:" +msgstr "" + +#: src/gui/settings.cpp:3286 +msgid "Decimal##orbD" +msgstr "" + +#: src/gui/settings.cpp:3290 +msgid "Hexadecimal##orbH" +msgstr "" + +#: src/gui/settings.cpp:3299 +msgid "Center pattern view" +msgstr "" + +#: src/gui/settings.cpp:3305 +msgid "Overflow pattern highlights" +msgstr "" + +#: src/gui/settings.cpp:3311 +msgid "Display previous/next pattern" +msgstr "" + +#: src/gui/settings.cpp:3316 +msgid "Pattern row number format:" +msgstr "" + +#: src/gui/settings.cpp:3318 +msgid "Decimal##prbD" +msgstr "" + +#: src/gui/settings.cpp:3322 +msgid "Hexadecimal##prbH" +msgstr "" + +#: src/gui/settings.cpp:3328 +msgid "Pattern view labels:" +msgstr "" + +#: src/gui/settings.cpp:3333 +msgid "Note off (3-char)" +msgstr "" + +#: src/gui/settings.cpp:3338 +msgid "Note release (3-char)" +msgstr "" + +#: src/gui/settings.cpp:3343 +msgid "Macro release (3-char)" +msgstr "" + +#: src/gui/settings.cpp:3348 +msgid "Empty field (3-char)" +msgstr "" + +#: src/gui/settings.cpp:3353 +msgid "Empty field (2-char)" +msgstr "" + +#: src/gui/settings.cpp:3355 +msgid "Pattern view spacing after:" +msgstr "" + +#: src/gui/settings.cpp:3357 src/gui/settings.cpp:4115 +#: src/gui/findReplace.cpp:601 src/gui/findReplace.cpp:864 +#: src/gui/sampleEdit.cpp:590 +msgid "Note" +msgstr "" + +#: src/gui/settings.cpp:3375 src/gui/findReplace.cpp:707 +#: src/gui/findReplace.cpp:974 +msgid "Effect" +msgstr "" + +#: src/gui/settings.cpp:3381 +msgid "Effect value" +msgstr "" + +#: src/gui/settings.cpp:3388 +msgid "Single-digit effects for 00-0F" +msgstr "" + +#: src/gui/settings.cpp:3394 +msgid "Use flats instead of sharps" +msgstr "" + +#: src/gui/settings.cpp:3400 +msgid "Use German notation" +msgstr "" + +#: src/gui/settings.cpp:3408 +msgid "Channel style:" +msgstr "" + +#: src/gui/settings.cpp:3410 +msgid "Classic##CHS0" +msgstr "" + +#: src/gui/settings.cpp:3414 +msgid "Line##CHS1" +msgstr "" + +#: src/gui/settings.cpp:3418 +msgid "Round##CHS2" +msgstr "" + +#: src/gui/settings.cpp:3422 +msgid "Split button##CHS3" +msgstr "" + +#: src/gui/settings.cpp:3426 +msgid "Square border##CH42" +msgstr "" + +#: src/gui/settings.cpp:3430 +msgid "Round border##CHS5" +msgstr "" + +#: src/gui/settings.cpp:3436 +msgid "Channel volume bar:" +msgstr "" + +#: src/gui/settings.cpp:3438 +msgid "None##CHV0" +msgstr "" + +#: src/gui/settings.cpp:3442 +msgid "Simple##CHV1" +msgstr "" + +#: src/gui/settings.cpp:3446 +msgid "Stereo##CHV2" +msgstr "" + +#: src/gui/settings.cpp:3450 +msgid "Real##CHV3" +msgstr "" + +#: src/gui/settings.cpp:3454 +msgid "Real (stereo)##CHV4" +msgstr "" + +#: src/gui/settings.cpp:3460 +msgid "Channel feedback style:" +msgstr "" + +#: src/gui/settings.cpp:3462 +msgid "Off##CHF0" +msgstr "" + +#: src/gui/settings.cpp:3466 +msgid "Note##CHF1" +msgstr "" + +#: src/gui/settings.cpp:3470 +msgid "Volume##CHF2" +msgstr "" + +#: src/gui/settings.cpp:3474 +msgid "Active##CHF3" +msgstr "" + +#: src/gui/settings.cpp:3480 +msgid "Channel font:" +msgstr "" + +#: src/gui/settings.cpp:3482 +msgid "Regular##CHFont0" +msgstr "" + +#: src/gui/settings.cpp:3486 +msgid "Monospace##CHFont1" +msgstr "" + +#: src/gui/settings.cpp:3493 +msgid "Center channel name" +msgstr "" + +#: src/gui/settings.cpp:3498 +msgid "Channel colors:" +msgstr "" + +#: src/gui/settings.cpp:3500 +msgid "Single##CHC0" +msgstr "" + +#: src/gui/settings.cpp:3504 +msgid "Channel type##CHC1" +msgstr "" + +#: src/gui/settings.cpp:3508 +msgid "Instrument type##CHC2" +msgstr "" + +#: src/gui/settings.cpp:3514 +msgid "Channel name colors:" +msgstr "" + +#: src/gui/settings.cpp:3516 +msgid "Single##CTC0" +msgstr "" + +#: src/gui/settings.cpp:3520 +msgid "Channel type##CTC1" +msgstr "" + +#: src/gui/settings.cpp:3524 +msgid "Instrument type##CTC2" +msgstr "" + +#: src/gui/settings.cpp:3533 +msgid "Unified instrument/wavetable/sample list" +msgstr "" + +#: src/gui/settings.cpp:3543 +msgid "Horizontal instrument list" +msgstr "" + +#: src/gui/settings.cpp:3549 +msgid "Instrument list icon style:" +msgstr "" + +#: src/gui/settings.cpp:3551 +msgid "None##iis0" +msgstr "" + +#: src/gui/settings.cpp:3555 +msgid "Graphical icons##iis1" +msgstr "" + +#: src/gui/settings.cpp:3559 +msgid "Letter icons##iis2" +msgstr "" + +#: src/gui/settings.cpp:3566 +msgid "Colorize instrument editor using instrument type" +msgstr "" + +#: src/gui/settings.cpp:3572 src/gui/settings.cpp:4014 +msgid "Macro Editor" +msgstr "" + +#: src/gui/settings.cpp:3573 +msgid "Macro editor layout:" +msgstr "" + +#: src/gui/settings.cpp:3575 +msgid "Unified##mel0" +msgstr "" + +#: src/gui/settings.cpp:3585 +msgid "Grid##mel2" +msgstr "" + +#: src/gui/settings.cpp:3589 +msgid "Single (with list)##mel3" +msgstr "" + +#: src/gui/settings.cpp:3602 +msgid "Use classic macro editor vertical slider" +msgstr "" + +#: src/gui/settings.cpp:3608 +msgid "Wave Editor" +msgstr "" + +#: src/gui/settings.cpp:3610 +msgid "Use compact wave editor" +msgstr "" + +#: src/gui/settings.cpp:3616 src/gui/settings.cpp:3991 +msgid "FM Editor" +msgstr "" + +#: src/gui/settings.cpp:3617 +msgid "FM parameter names:" +msgstr "" + +#: src/gui/settings.cpp:3619 +msgid "Friendly##fmn0" +msgstr "" + +#: src/gui/settings.cpp:3623 +msgid "Technical##fmn1" +msgstr "" + +#: src/gui/settings.cpp:3627 +msgid "Technical (alternate)##fmn2" +msgstr "" + +#: src/gui/settings.cpp:3634 +msgid "Use standard OPL waveform names" +msgstr "" + +#: src/gui/settings.cpp:3639 +msgid "FM parameter editor layout:" +msgstr "" + +#: src/gui/settings.cpp:3641 +msgid "Modern##fml0" +msgstr "" + +#: src/gui/settings.cpp:3645 +msgid "Compact (2x2, classic)##fml1" +msgstr "" + +#: src/gui/settings.cpp:3649 +msgid "Compact (1x4)##fml2" +msgstr "" + +#: src/gui/settings.cpp:3653 +msgid "Compact (4x1)##fml3" +msgstr "" + +#: src/gui/settings.cpp:3657 +msgid "Alternate (2x2)##fml4" +msgstr "" + +#: src/gui/settings.cpp:3661 +msgid "Alternate (1x4)##fml5" +msgstr "" + +#: src/gui/settings.cpp:3665 +msgid "Alternate (4x1)##fml5" +msgstr "" + +#: src/gui/settings.cpp:3671 +msgid "Position of Sustain in FM editor:" +msgstr "" + +#: src/gui/settings.cpp:3673 +msgid "Between Decay and Sustain Rate##susp0" +msgstr "" + +#: src/gui/settings.cpp:3677 +msgid "After Release Rate##susp1" +msgstr "" + +#: src/gui/settings.cpp:3684 +msgid "Use separate colors for carriers/modulators in FM editor" +msgstr "" + +#: src/gui/settings.cpp:3690 +msgid "Unsigned FM detune values" +msgstr "" + +#: src/gui/settings.cpp:3697 +msgid "Chip memory usage unit:" +msgstr "" + +#: src/gui/settings.cpp:3699 +msgid "Bytes##MUU0" +msgstr "" + +#: src/gui/settings.cpp:3703 +msgid "Kilobytes##MUU1" +msgstr "" + +#: src/gui/settings.cpp:3712 +msgid "Rounded corners" +msgstr "" + +#: src/gui/settings.cpp:3718 src/gui/settings.cpp:3896 +#: src/gui/settings.cpp:3938 +msgid "Border" +msgstr "" + +#: src/gui/settings.cpp:3730 +msgid "Anti-aliased" +msgstr "" + +#: src/gui/settings.cpp:3736 +msgid "Fill entire window" +msgstr "" + +#: src/gui/settings.cpp:3742 +msgid "Waveform goes out of bounds" +msgstr "" + +#: src/gui/settings.cpp:3754 +msgid "Windows" +msgstr "" + +#: src/gui/settings.cpp:3756 +msgid "Rounded window corners" +msgstr "" + +#: src/gui/settings.cpp:3762 +msgid "Rounded buttons" +msgstr "" + +#: src/gui/settings.cpp:3768 +msgid "Rounded menu corners" +msgstr "" + +#: src/gui/settings.cpp:3774 +msgid "Rounded tabs" +msgstr "" + +#: src/gui/settings.cpp:3780 +msgid "Rounded scrollbars" +msgstr "" + +#: src/gui/settings.cpp:3786 +msgid "Borders around widgets" +msgstr "" + +#: src/gui/settings.cpp:3795 +msgid "Color scheme" +msgstr "" + +#: src/gui/settings.cpp:3805 +msgid "Are you sure you want to reset the color scheme?" +msgstr "" + +#: src/gui/settings.cpp:3808 +msgid "Guru mode" +msgstr "" + +#: src/gui/settings.cpp:3815 src/gui/settings.cpp:3845 +msgid "Frame shading" +msgstr "" + +#: src/gui/settings.cpp:3821 +msgid "Color scheme type:" +msgstr "" + +#: src/gui/settings.cpp:3823 +msgid "Dark##gcb0" +msgstr "" + +#: src/gui/settings.cpp:3828 +msgid "Light##gcb1" +msgstr "" + +#: src/gui/settings.cpp:3835 +msgid "Accent colors:" +msgstr "" + +#: src/gui/settings.cpp:3837 +msgid "Primary" +msgstr "" + +#: src/gui/settings.cpp:3838 +msgid "Secondary" +msgstr "" + +#: src/gui/settings.cpp:3852 +msgid "Button" +msgstr "" + +#: src/gui/settings.cpp:3853 +msgid "Button (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3854 +msgid "Button (active)" +msgstr "" + +#: src/gui/settings.cpp:3855 +msgid "Tab" +msgstr "" + +#: src/gui/settings.cpp:3856 +msgid "Tab (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3857 +msgid "Tab (active)" +msgstr "" + +#: src/gui/settings.cpp:3858 +msgid "Tab (unfocused)" +msgstr "" + +#: src/gui/settings.cpp:3859 +msgid "Tab (unfocused and active)" +msgstr "" + +#: src/gui/settings.cpp:3860 +msgid "ImGui header" +msgstr "" + +#: src/gui/settings.cpp:3861 +msgid "ImGui header (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3862 +msgid "ImGui header (active)" +msgstr "" + +#: src/gui/settings.cpp:3863 +msgid "Resize grip" +msgstr "" + +#: src/gui/settings.cpp:3864 +msgid "Resize grip (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3865 +msgid "Resize grip (active)" +msgstr "" + +#: src/gui/settings.cpp:3866 +msgid "Widget background" +msgstr "" + +#: src/gui/settings.cpp:3867 +msgid "Widget background (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3868 +msgid "Widget background (active)" +msgstr "" + +#: src/gui/settings.cpp:3869 +msgid "Slider grab" +msgstr "" + +#: src/gui/settings.cpp:3870 +msgid "Slider grab (active)" +msgstr "" + +#: src/gui/settings.cpp:3871 +msgid "Title background (active)" +msgstr "" + +#: src/gui/settings.cpp:3872 +msgid "Checkbox/radio button mark" +msgstr "" + +#: src/gui/settings.cpp:3873 +msgid "Text selection" +msgstr "" + +#: src/gui/settings.cpp:3874 +msgid "Line plot" +msgstr "" + +#: src/gui/settings.cpp:3875 +msgid "Line plot (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3876 +msgid "Histogram plot" +msgstr "" + +#: src/gui/settings.cpp:3877 +msgid "Histogram plot (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3878 +msgid "Table row (even)" +msgstr "" + +#: src/gui/settings.cpp:3879 +msgid "Table row (odd)" +msgstr "" + +#: src/gui/settings.cpp:3884 +msgid "Interface (other)" +msgstr "" + +#: src/gui/settings.cpp:3886 +msgid "Window background" +msgstr "" + +#: src/gui/settings.cpp:3887 +msgid "Sub-window background" +msgstr "" + +#: src/gui/settings.cpp:3888 +msgid "Pop-up background" +msgstr "" + +#: src/gui/settings.cpp:3889 +msgid "Modal backdrop" +msgstr "" + +#: src/gui/settings.cpp:3890 +msgid "Header" +msgstr "" + +#: src/gui/settings.cpp:3892 +msgid "Text (disabled)" +msgstr "" + +#: src/gui/settings.cpp:3893 +msgid "Title bar (inactive)" +msgstr "" + +#: src/gui/settings.cpp:3894 +msgid "Title bar (collapsed)" +msgstr "" + +#: src/gui/settings.cpp:3895 +msgid "Menu bar" +msgstr "" + +#: src/gui/settings.cpp:3897 +msgid "Border shadow" +msgstr "" + +#: src/gui/settings.cpp:3898 +msgid "Scroll bar" +msgstr "" + +#: src/gui/settings.cpp:3899 +msgid "Scroll bar (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3900 +msgid "Scroll bar (clicked)" +msgstr "" + +#: src/gui/settings.cpp:3901 +msgid "Scroll bar background" +msgstr "" + +#: src/gui/settings.cpp:3902 +msgid "Separator" +msgstr "" + +#: src/gui/settings.cpp:3903 +msgid "Separator (hover)" +msgstr "" + +#: src/gui/settings.cpp:3904 +msgid "Separator (active)" +msgstr "" + +#: src/gui/settings.cpp:3905 +msgid "Docking preview" +msgstr "" + +#: src/gui/settings.cpp:3906 +msgid "Docking empty" +msgstr "" + +#: src/gui/settings.cpp:3907 +msgid "Table header" +msgstr "" + +#: src/gui/settings.cpp:3908 +msgid "Table border (hard)" +msgstr "" + +#: src/gui/settings.cpp:3909 +msgid "Table border (soft)" +msgstr "" + +#: src/gui/settings.cpp:3910 +msgid "Drag and drop target" +msgstr "" + +#: src/gui/settings.cpp:3911 +msgid "Window switcher (highlight)" +msgstr "" + +#: src/gui/settings.cpp:3912 +msgid "Window switcher backdrop" +msgstr "" + +#: src/gui/settings.cpp:3915 src/gui/settings.cpp:4136 src/gui/guiConst.cpp:235 +msgid "Miscellaneous" +msgstr "" + +#: src/gui/settings.cpp:3916 +msgid "Toggle on" +msgstr "" + +#: src/gui/settings.cpp:3917 +msgid "Toggle off" +msgstr "" + +#: src/gui/settings.cpp:3918 +msgid "Playback status" +msgstr "" + +#: src/gui/settings.cpp:3919 +msgid "Destructive hint" +msgstr "" + +#: src/gui/settings.cpp:3920 +msgid "Warning hint" +msgstr "" + +#: src/gui/settings.cpp:3921 +msgid "Error hint" +msgstr "" + +#: src/gui/settings.cpp:3924 +msgid "File Picker (built-in)" +msgstr "" + +#: src/gui/settings.cpp:3926 +msgid "Song (native)" +msgstr "" + +#: src/gui/settings.cpp:3927 +msgid "Song (import)" +msgstr "" + +#: src/gui/settings.cpp:3933 +msgid "Font" +msgstr "" + +#: src/gui/settings.cpp:3939 +msgid "Background (top-left)" +msgstr "" + +#: src/gui/settings.cpp:3940 +msgid "Background (top-right)" +msgstr "" + +#: src/gui/settings.cpp:3941 +msgid "Background (bottom-left)" +msgstr "" + +#: src/gui/settings.cpp:3942 +msgid "Background (bottom-right)" +msgstr "" + +#: src/gui/settings.cpp:3943 src/gui/settings.cpp:3998 +#: src/gui/settings.cpp:4166 src/gui/waveEdit.cpp:730 src/gui/insEdit.cpp:50 +#: src/gui/insEdit.cpp:4148 src/gui/insEdit.cpp:5812 src/gui/insEdit.cpp:6940 +#: src/gui/insEdit.cpp:6949 src/gui/insEdit.cpp:6963 src/gui/insEdit.cpp:6980 +#: src/gui/insEdit.cpp:6991 src/gui/insEdit.cpp:7004 src/gui/insEdit.cpp:7018 +#: src/gui/insEdit.cpp:7025 src/gui/insEdit.cpp:7035 src/gui/insEdit.cpp:7041 +#: src/gui/insEdit.cpp:7050 src/gui/insEdit.cpp:7074 src/gui/insEdit.cpp:7084 +#: src/gui/insEdit.cpp:7094 src/gui/insEdit.cpp:7101 src/gui/insEdit.cpp:7116 +#: src/gui/insEdit.cpp:7131 src/gui/insEdit.cpp:7151 src/gui/insEdit.cpp:7158 +#: src/gui/insEdit.cpp:7200 src/gui/insEdit.cpp:7211 src/gui/insEdit.cpp:7224 +#: src/gui/insEdit.cpp:7349 src/gui/insEdit.cpp:7425 src/gui/insEdit.cpp:7445 +#: src/gui/insEdit.cpp:7453 src/gui/insEdit.cpp:7473 +msgid "Waveform" +msgstr "" + +#: src/gui/settings.cpp:3944 +msgid "Waveform (clip)" +msgstr "" + +#: src/gui/settings.cpp:3945 +msgid "Reference" +msgstr "" + +#: src/gui/settings.cpp:3946 +msgid "Guide" +msgstr "" + +#: src/gui/settings.cpp:3948 +msgid "Wave (non-mono)" +msgstr "" + +#: src/gui/settings.cpp:3949 +msgid "Waveform (1)" +msgstr "" + +#: src/gui/settings.cpp:3950 +msgid "Waveform (2)" +msgstr "" + +#: src/gui/settings.cpp:3951 +msgid "Waveform (3)" +msgstr "" + +#: src/gui/settings.cpp:3952 +msgid "Waveform (4)" +msgstr "" + +#: src/gui/settings.cpp:3953 +msgid "Waveform (5)" +msgstr "" + +#: src/gui/settings.cpp:3954 +msgid "Waveform (6)" +msgstr "" + +#: src/gui/settings.cpp:3955 +msgid "Waveform (7)" +msgstr "" + +#: src/gui/settings.cpp:3956 +msgid "Waveform (8)" +msgstr "" + +#: src/gui/settings.cpp:3957 +msgid "Waveform (9)" +msgstr "" + +#: src/gui/settings.cpp:3958 +msgid "Waveform (10)" +msgstr "" + +#: src/gui/settings.cpp:3959 +msgid "Waveform (11)" +msgstr "" + +#: src/gui/settings.cpp:3960 +msgid "Waveform (12)" +msgstr "" + +#: src/gui/settings.cpp:3961 +msgid "Waveform (13)" +msgstr "" + +#: src/gui/settings.cpp:3962 +msgid "Waveform (14)" +msgstr "" + +#: src/gui/settings.cpp:3963 +msgid "Waveform (15)" +msgstr "" + +#: src/gui/settings.cpp:3964 +msgid "Waveform (16)" +msgstr "" + +#: src/gui/settings.cpp:3972 +msgid "Clip" +msgstr "" + +#: src/gui/settings.cpp:3976 +msgid "Order number" +msgstr "" + +#: src/gui/settings.cpp:3977 +msgid "Playing order background" +msgstr "" + +#: src/gui/settings.cpp:3978 +msgid "Song loop" +msgstr "" + +#: src/gui/settings.cpp:3979 +msgid "Selected order" +msgstr "" + +#: src/gui/settings.cpp:3980 +msgid "Similar patterns" +msgstr "" + +#: src/gui/settings.cpp:3981 +msgid "Inactive patterns" +msgstr "" + +#: src/gui/settings.cpp:3984 +msgid "Envelope View" +msgstr "" + +#: src/gui/settings.cpp:3985 src/gui/insEdit.cpp:540 src/gui/insEdit.cpp:3547 +#: src/gui/insEdit.cpp:3548 src/gui/insEdit.cpp:4081 src/gui/insEdit.cpp:4151 +#: src/gui/insEdit.cpp:4790 src/gui/insEdit.cpp:5861 src/gui/insEdit.cpp:5862 +#: src/gui/insEdit.cpp:6487 src/gui/insEdit.cpp:6488 src/gui/insEdit.cpp:6555 +#: src/gui/insEdit.cpp:6556 src/gui/insEdit.cpp:6995 src/gui/insEdit.cpp:7009 +#: src/gui/insEdit.cpp:7029 src/gui/insEdit.cpp:7166 +#, c-format +msgid "Envelope" +msgstr "" + +#: src/gui/settings.cpp:3986 +msgid "Sustain guide" +msgstr "" + +#: src/gui/settings.cpp:3992 +msgid "Algorithm background" +msgstr "" + +#: src/gui/settings.cpp:3993 +msgid "Algorithm lines" +msgstr "" + +#: src/gui/settings.cpp:3994 +msgid "Modulator" +msgstr "" + +#: src/gui/settings.cpp:3995 +msgid "Carrier" +msgstr "" + +#: src/gui/settings.cpp:3997 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:4146 +msgid "SSG-EG" +msgstr "" + +#: src/gui/settings.cpp:4000 +msgid "" +"(the following colors only apply when \"Use separate colors for carriers/" +"modulators in FM editor\" is on!)" +msgstr "" + +#: src/gui/settings.cpp:4002 +msgid "Mod. accent (primary)" +msgstr "" + +#: src/gui/settings.cpp:4003 +msgid "Mod. accent (secondary)" +msgstr "" + +#: src/gui/settings.cpp:4004 +msgid "Mod. border" +msgstr "" + +#: src/gui/settings.cpp:4005 +msgid "Mod. border shadow" +msgstr "" + +#: src/gui/settings.cpp:4007 +msgid "Car. accent (primary)" +msgstr "" + +#: src/gui/settings.cpp:4008 +msgid "Car. accent (secondary)" +msgstr "" + +#: src/gui/settings.cpp:4009 +msgid "Car. border" +msgstr "" + +#: src/gui/settings.cpp:4010 +msgid "Car. border shadow" +msgstr "" + +#: src/gui/settings.cpp:4016 src/gui/guiConst.cpp:227 src/gui/insEdit.cpp:6924 +#: src/gui/insEdit.cpp:6931 src/gui/insEdit.cpp:6942 src/gui/insEdit.cpp:6950 +#: src/gui/insEdit.cpp:6971 src/gui/insEdit.cpp:6983 src/gui/insEdit.cpp:6993 +#: src/gui/insEdit.cpp:7006 src/gui/insEdit.cpp:7019 src/gui/insEdit.cpp:7028 +#: src/gui/insEdit.cpp:7036 src/gui/insEdit.cpp:7042 src/gui/insEdit.cpp:7052 +#: src/gui/insEdit.cpp:7061 src/gui/insEdit.cpp:7068 src/gui/insEdit.cpp:7075 +#: src/gui/insEdit.cpp:7087 src/gui/insEdit.cpp:7095 src/gui/insEdit.cpp:7102 +#: src/gui/insEdit.cpp:7109 src/gui/insEdit.cpp:7117 src/gui/insEdit.cpp:7123 +#: src/gui/insEdit.cpp:7132 src/gui/insEdit.cpp:7143 src/gui/insEdit.cpp:7153 +#: src/gui/insEdit.cpp:7161 src/gui/insEdit.cpp:7174 src/gui/insEdit.cpp:7182 +#: src/gui/insEdit.cpp:7193 src/gui/insEdit.cpp:7203 src/gui/insEdit.cpp:7213 +#: src/gui/insEdit.cpp:7227 src/gui/insEdit.cpp:7233 src/gui/insEdit.cpp:7241 +#: src/gui/insEdit.cpp:7248 src/gui/insEdit.cpp:7272 src/gui/insEdit.cpp:7280 +#: src/gui/insEdit.cpp:7289 src/gui/insEdit.cpp:7298 src/gui/insEdit.cpp:7306 +#: src/gui/insEdit.cpp:7323 src/gui/insEdit.cpp:7331 src/gui/insEdit.cpp:7337 +#: src/gui/insEdit.cpp:7344 src/gui/insEdit.cpp:7350 src/gui/insEdit.cpp:7355 +#: src/gui/insEdit.cpp:7361 src/gui/insEdit.cpp:7368 src/gui/insEdit.cpp:7376 +#: src/gui/insEdit.cpp:7385 src/gui/insEdit.cpp:7393 src/gui/insEdit.cpp:7401 +#: src/gui/insEdit.cpp:7413 src/gui/insEdit.cpp:7428 src/gui/insEdit.cpp:7439 +#: src/gui/insEdit.cpp:7447 src/gui/insEdit.cpp:7456 src/gui/insEdit.cpp:7466 +#: src/gui/insEdit.cpp:7474 +msgid "Pitch" +msgstr "" + +#: src/gui/settings.cpp:4021 +msgid "Instrument Types" +msgstr "" + +#: src/gui/settings.cpp:4022 +msgid "FM (OPN)" +msgstr "" + +#: src/gui/settings.cpp:4023 +msgid "SN76489/Sega PSG" +msgstr "" + +#: src/gui/settings.cpp:4026 +msgid "C64" +msgstr "" + +#: src/gui/settings.cpp:4027 +msgid "Amiga/Generic Sample" +msgstr "" + +#: src/gui/settings.cpp:4028 +msgid "PC Engine" +msgstr "" + +#: src/gui/settings.cpp:4029 +msgid "AY-3-8910/SSG" +msgstr "" + +#: src/gui/settings.cpp:4030 +msgid "AY8930" +msgstr "" + +#: src/gui/settings.cpp:4031 +msgid "TIA" +msgstr "" + +#: src/gui/settings.cpp:4032 +msgid "SAA1099" +msgstr "" + +#: src/gui/settings.cpp:4033 +msgid "VIC" +msgstr "" + +#: src/gui/settings.cpp:4034 +msgid "PET" +msgstr "" + +#: src/gui/settings.cpp:4035 +msgid "VRC6" +msgstr "" + +#: src/gui/settings.cpp:4036 src/gui/guiConst.cpp:149 +msgid "VRC6 (saw)" +msgstr "" + +#: src/gui/settings.cpp:4037 +msgid "FM (OPLL)" +msgstr "" + +#: src/gui/settings.cpp:4038 +msgid "FM (OPL)" +msgstr "" + +#: src/gui/settings.cpp:4043 +msgid "FM (OPZ)" +msgstr "" + +#: src/gui/settings.cpp:4045 +msgid "PC Beeper" +msgstr "" + +#: src/gui/settings.cpp:4047 +msgid "Lynx" +msgstr "" + +#: src/gui/settings.cpp:4049 +msgid "X1-010" +msgstr "" + +#: src/gui/settings.cpp:4050 +msgid "ES5506" +msgstr "" + +#: src/gui/settings.cpp:4053 +msgid "Sound Unit" +msgstr "" + +#: src/gui/settings.cpp:4055 +msgid "FM (OPL Drums)" +msgstr "" + +#: src/gui/settings.cpp:4056 +msgid "FM (OPM)" +msgstr "" + +#: src/gui/settings.cpp:4057 +msgid "NES" +msgstr "" + +#: src/gui/settings.cpp:4058 +msgid "MSM6258" +msgstr "" + +#: src/gui/settings.cpp:4059 +msgid "MSM6295" +msgstr "" + +#: src/gui/settings.cpp:4060 +msgid "ADPCM-A" +msgstr "" + +#: src/gui/settings.cpp:4062 +msgid "Sega PCM" +msgstr "" + +#: src/gui/settings.cpp:4063 +msgid "QSound" +msgstr "" + +#: src/gui/settings.cpp:4064 +msgid "YMZ280B" +msgstr "" + +#: src/gui/settings.cpp:4065 +msgid "RF5C68" +msgstr "" + +#: src/gui/settings.cpp:4066 +msgid "MSM5232" +msgstr "" + +#: src/gui/settings.cpp:4067 +msgid "K007232" +msgstr "" + +#: src/gui/settings.cpp:4068 +msgid "GA20" +msgstr "" + +#: src/gui/settings.cpp:4070 +msgid "SM8521" +msgstr "" + +#: src/gui/settings.cpp:4071 +msgid "PV-1000" +msgstr "" + +#: src/gui/settings.cpp:4072 +msgid "K053260" +msgstr "" + +#: src/gui/settings.cpp:4073 +msgid "TED" +msgstr "" + +#: src/gui/settings.cpp:4074 +msgid "C140" +msgstr "" + +#: src/gui/settings.cpp:4075 +msgid "C219" +msgstr "" + +#: src/gui/settings.cpp:4076 +msgid "ESFM" +msgstr "" + +#: src/gui/settings.cpp:4077 src/gui/guiConst.cpp:179 +msgid "PowerNoise (noise)" +msgstr "" + +#: src/gui/settings.cpp:4078 src/gui/guiConst.cpp:180 +msgid "PowerNoise (slope)" +msgstr "" + +#: src/gui/settings.cpp:4081 +msgid "GBA DMA" +msgstr "" + +#: src/gui/settings.cpp:4082 +msgid "GBA MinMod" +msgstr "" + +#: src/gui/settings.cpp:4085 +msgid "Other/Unknown" +msgstr "" + +#: src/gui/settings.cpp:4089 +msgid "Single color (background)" +msgstr "" + +#: src/gui/settings.cpp:4090 +msgid "Single color (text)" +msgstr "" + +#: src/gui/settings.cpp:4091 src/gui/guiConst.cpp:1393 src/gui/waveEdit.cpp:668 +msgid "FM" +msgstr "" + +#: src/gui/settings.cpp:4096 +msgid "FM operator" +msgstr "" + +#: src/gui/settings.cpp:4097 +msgid "Muted" +msgstr "" + +#: src/gui/settings.cpp:4101 +msgid "Playhead" +msgstr "" + +#: src/gui/settings.cpp:4102 +msgid "Editing" +msgstr "" + +#: src/gui/settings.cpp:4103 +msgid "Editing (will clone)" +msgstr "" + +#: src/gui/settings.cpp:4104 +msgid "Cursor" +msgstr "" + +#: src/gui/settings.cpp:4105 +msgid "Cursor (hovered)" +msgstr "" + +#: src/gui/settings.cpp:4106 +msgid "Cursor (clicked)" +msgstr "" + +#: src/gui/settings.cpp:4107 src/gui/settings.cpp:4172 +#: src/gui/findReplace.cpp:791 +msgid "Selection" +msgstr "" + +#: src/gui/settings.cpp:4108 +msgid "Selection (hovered)" +msgstr "" + +#: src/gui/settings.cpp:4109 +msgid "Selection (clicked)" +msgstr "" + +#: src/gui/settings.cpp:4110 +msgid "Highlight 1" +msgstr "" + +#: src/gui/settings.cpp:4111 +msgid "Highlight 2" +msgstr "" + +#: src/gui/settings.cpp:4112 +msgid "Row number" +msgstr "" + +#: src/gui/settings.cpp:4113 +msgid "Row number (highlight 1)" +msgstr "" + +#: src/gui/settings.cpp:4114 +msgid "Row number (highlight 2)" +msgstr "" + +#: src/gui/settings.cpp:4116 +msgid "Note (highlight 1)" +msgstr "" + +#: src/gui/settings.cpp:4117 +msgid "Note (highlight 2)" +msgstr "" + +#: src/gui/settings.cpp:4118 +msgid "Blank" +msgstr "" + +#: src/gui/settings.cpp:4119 +msgid "Blank (highlight 1)" +msgstr "" + +#: src/gui/settings.cpp:4120 +msgid "Blank (highlight 2)" +msgstr "" + +#: src/gui/settings.cpp:4122 +msgid "Instrument (invalid type)" +msgstr "" + +#: src/gui/settings.cpp:4123 +msgid "Instrument (out of range)" +msgstr "" + +#: src/gui/settings.cpp:4124 +msgid "Volume (0%)" +msgstr "" + +#: src/gui/settings.cpp:4125 +msgid "Volume (50%)" +msgstr "" + +#: src/gui/settings.cpp:4126 +msgid "Volume (100%)" +msgstr "" + +#: src/gui/settings.cpp:4128 +msgid "Pitch effect" +msgstr "" + +#: src/gui/settings.cpp:4129 +msgid "Volume effect" +msgstr "" + +#: src/gui/settings.cpp:4130 +msgid "Panning effect" +msgstr "" + +#: src/gui/settings.cpp:4131 +msgid "Song effect" +msgstr "" + +#: src/gui/settings.cpp:4132 +msgid "Time effect" +msgstr "" + +#: src/gui/settings.cpp:4133 +msgid "Speed effect" +msgstr "" + +#: src/gui/settings.cpp:4134 +msgid "Primary specific effect" +msgstr "" + +#: src/gui/settings.cpp:4135 +msgid "Secondary specific effect" +msgstr "" + +#: src/gui/settings.cpp:4137 +msgid "External command output" +msgstr "" + +#: src/gui/settings.cpp:4138 +msgid "Status: off/disabled" +msgstr "" + +#: src/gui/settings.cpp:4139 +msgid "Status: off + macro rel" +msgstr "" + +#: src/gui/settings.cpp:4140 +msgid "Status: on + macro rel" +msgstr "" + +#: src/gui/settings.cpp:4141 +msgid "Status: on" +msgstr "" + +#: src/gui/settings.cpp:4142 +msgid "Status: volume" +msgstr "" + +#: src/gui/settings.cpp:4143 +msgid "Status: pitch" +msgstr "" + +#: src/gui/settings.cpp:4144 +msgid "Status: panning" +msgstr "" + +#: src/gui/settings.cpp:4145 +msgid "Status: chip (primary)" +msgstr "" + +#: src/gui/settings.cpp:4146 +msgid "Status: chip (secondary)" +msgstr "" + +#: src/gui/settings.cpp:4147 +msgid "Status: mixing" +msgstr "" + +#: src/gui/settings.cpp:4148 +msgid "Status: DSP effect" +msgstr "" + +#: src/gui/settings.cpp:4149 +msgid "Status: note altering" +msgstr "" + +#: src/gui/settings.cpp:4150 +msgid "Status: misc color 1" +msgstr "" + +#: src/gui/settings.cpp:4151 +msgid "Status: misc color 2" +msgstr "" + +#: src/gui/settings.cpp:4152 +msgid "Status: misc color 3" +msgstr "" + +#: src/gui/settings.cpp:4153 +msgid "Status: attack" +msgstr "" + +#: src/gui/settings.cpp:4154 +msgid "Status: decay" +msgstr "" + +#: src/gui/settings.cpp:4155 +msgid "Status: sustain" +msgstr "" + +#: src/gui/settings.cpp:4156 +msgid "Status: release" +msgstr "" + +#: src/gui/settings.cpp:4157 +msgid "Status: decrease linear" +msgstr "" + +#: src/gui/settings.cpp:4158 +msgid "Status: decrease exp" +msgstr "" + +#: src/gui/settings.cpp:4159 +msgid "Status: increase" +msgstr "" + +#: src/gui/settings.cpp:4160 +msgid "Status: bent" +msgstr "" + +#: src/gui/settings.cpp:4161 +msgid "Status: direct" +msgstr "" + +#: src/gui/settings.cpp:4164 src/gui/guiConst.cpp:586 src/gui/sampleEdit.cpp:96 +msgid "Sample Editor" +msgstr "" + +#: src/gui/settings.cpp:4167 +msgid "Time background" +msgstr "" + +#: src/gui/settings.cpp:4168 +msgid "Time text" +msgstr "" + +#: src/gui/settings.cpp:4169 +msgid "Loop region" +msgstr "" + +#: src/gui/settings.cpp:4170 +msgid "Center guide" +msgstr "" + +#: src/gui/settings.cpp:4171 +msgid "Grid" +msgstr "" + +#: src/gui/settings.cpp:4173 +msgid "Selection points" +msgstr "" + +#: src/gui/settings.cpp:4174 +msgid "Preview needle" +msgstr "" + +#: src/gui/settings.cpp:4175 +msgid "Playing needles" +msgstr "" + +#: src/gui/settings.cpp:4176 +msgid "Loop markers" +msgstr "" + +#: src/gui/settings.cpp:4177 +msgid "Chip select: disabled" +msgstr "" + +#: src/gui/settings.cpp:4178 +msgid "Chip select: enabled" +msgstr "" + +#: src/gui/settings.cpp:4179 +msgid "Chip select: enabled (failure)" +msgstr "" + +#: src/gui/settings.cpp:4182 src/gui/guiConst.cpp:602 src/gui/patManager.cpp:35 +msgid "Pattern Manager" +msgstr "" + +#: src/gui/settings.cpp:4183 +msgid "Unallocated" +msgstr "" + +#: src/gui/settings.cpp:4184 +msgid "Unused" +msgstr "" + +#: src/gui/settings.cpp:4185 +msgid "Used" +msgstr "" + +#: src/gui/settings.cpp:4186 +msgid "Overused" +msgstr "" + +#: src/gui/settings.cpp:4187 +msgid "Really overused" +msgstr "" + +#: src/gui/settings.cpp:4188 +msgid "Combo Breaker" +msgstr "" + +#: src/gui/settings.cpp:4191 src/gui/guiConst.cpp:599 src/gui/piano.cpp:63 +msgid "Piano" +msgstr "" + +#: src/gui/settings.cpp:4193 +msgid "Upper key" +msgstr "" + +#: src/gui/settings.cpp:4194 +msgid "Upper key (feedback)" +msgstr "" + +#: src/gui/settings.cpp:4195 +msgid "Upper key (pressed)" +msgstr "" + +#: src/gui/settings.cpp:4196 +msgid "Lower key" +msgstr "" + +#: src/gui/settings.cpp:4197 +msgid "Lower key (feedback)" +msgstr "" + +#: src/gui/settings.cpp:4198 +msgid "Lower key (pressed)" +msgstr "" + +#: src/gui/settings.cpp:4201 src/gui/clock.cpp:31 src/gui/guiConst.cpp:610 +msgid "Clock" +msgstr "" + +#: src/gui/settings.cpp:4202 +msgid "Clock text" +msgstr "" + +#: src/gui/settings.cpp:4203 +msgid "Beat (off)" +msgstr "" + +#: src/gui/settings.cpp:4204 +msgid "Beat (on)" +msgstr "" + +#: src/gui/settings.cpp:4209 +msgid "PortSet" +msgstr "" + +#: src/gui/settings.cpp:4210 +msgid "Port" +msgstr "" + +#: src/gui/settings.cpp:4211 +msgid "Port (hidden/unavailable)" +msgstr "" + +#: src/gui/settings.cpp:4212 +msgid "Connection (selected)" +msgstr "" + +#: src/gui/settings.cpp:4213 +msgid "Connection (other)" +msgstr "" + +#: src/gui/settings.cpp:4219 +msgid "Waveform data" +msgstr "" + +#: src/gui/settings.cpp:4222 +msgid "Reserved" +msgstr "" + +#: src/gui/settings.cpp:4224 +msgid "Sample (alternate 1)" +msgstr "" + +#: src/gui/settings.cpp:4225 +msgid "Sample (alternate 2)" +msgstr "" + +#: src/gui/settings.cpp:4226 +msgid "Sample (alternate 3)" +msgstr "" + +#: src/gui/settings.cpp:4227 +msgid "Wave RAM" +msgstr "" + +#: src/gui/settings.cpp:4228 +msgid "Wavetable (static)" +msgstr "" + +#: src/gui/settings.cpp:4229 +msgid "Echo buffer" +msgstr "" + +#: src/gui/settings.cpp:4230 +msgid "Namco 163 load pos" +msgstr "" + +#: src/gui/settings.cpp:4231 +msgid "Namco 163 play pos" +msgstr "" + +#: src/gui/settings.cpp:4232 +msgid "Sample (bank 0)" +msgstr "" + +#: src/gui/settings.cpp:4233 +msgid "Sample (bank 1)" +msgstr "" + +#: src/gui/settings.cpp:4234 +msgid "Sample (bank 2)" +msgstr "" + +#: src/gui/settings.cpp:4235 +msgid "Sample (bank 3)" +msgstr "" + +#: src/gui/settings.cpp:4236 +msgid "Sample (bank 4)" +msgstr "" + +#: src/gui/settings.cpp:4237 +msgid "Sample (bank 5)" +msgstr "" + +#: src/gui/settings.cpp:4238 +msgid "Sample (bank 6)" +msgstr "" + +#: src/gui/settings.cpp:4239 +msgid "Sample (bank 7)" +msgstr "" + +#: src/gui/settings.cpp:4244 +msgid "Log level: Error" +msgstr "" + +#: src/gui/settings.cpp:4245 +msgid "Log level: Warning" +msgstr "" + +#: src/gui/settings.cpp:4246 +msgid "Log level: Info" +msgstr "" + +#: src/gui/settings.cpp:4247 +msgid "Log level: Debug" +msgstr "" + +#: src/gui/settings.cpp:4248 +msgid "Log level: Trace/Verbose" +msgstr "" + +#: src/gui/settings.cpp:4253 +msgid "Backup" +msgstr "" + +#: src/gui/settings.cpp:4258 +msgid "Enable backup system" +msgstr "" + +#: src/gui/settings.cpp:4263 +msgid "Interval (in seconds)" +msgstr "" + +#: src/gui/settings.cpp:4268 +msgid "Backups per file" +msgstr "" + +#: src/gui/settings.cpp:4274 +msgid "Backup Management" +msgstr "" + +#: src/gui/settings.cpp:4278 +msgid "Purge before:" +msgstr "" + +#: src/gui/settings.cpp:4352 +msgid "Go##PDate" +msgstr "" + +#: src/gui/settings.cpp:4359 +#, c-format +msgid "%PB used" +msgstr "" + +#: src/gui/settings.cpp:4361 +#, c-format +msgid "%TB used" +msgstr "" + +#: src/gui/settings.cpp:4363 +#, c-format +msgid "%GB used" +msgstr "" + +#: src/gui/settings.cpp:4365 +#, c-format +msgid "%MB used" +msgstr "" + +#: src/gui/settings.cpp:4367 +#, c-format +msgid "%KB used" +msgstr "" + +#: src/gui/settings.cpp:4369 +#, c-format +msgid "% bytes used" +msgstr "" + +#: src/gui/settings.cpp:4374 +msgid "Refresh" +msgstr "" + +#: src/gui/settings.cpp:4378 +msgid "Delete all" +msgstr "" + +#: src/gui/settings.cpp:4384 src/gui/settings.cpp:6688 +msgid "Size" +msgstr "" + +#: src/gui/settings.cpp:4385 +msgid "Latest" +msgstr "" + +#: src/gui/settings.cpp:4395 +#, c-format +msgid "%P" +msgstr "" + +#: src/gui/settings.cpp:4397 +#, c-format +msgid "%T" +msgstr "" + +#: src/gui/settings.cpp:4399 +#, c-format +msgid "%G" +msgstr "" + +#: src/gui/settings.cpp:4401 +#, c-format +msgid "%M" +msgstr "" + +#: src/gui/settings.cpp:4403 +#, c-format +msgid "%K" +msgstr "" + +#: src/gui/settings.cpp:4405 +#, c-format +msgid "%" +msgstr "" + +#: src/gui/settings.cpp:4529 +msgid "Cheat Codes" +msgstr "" + +#: src/gui/settings.cpp:4531 +msgid "Enter code:" +msgstr "" + +#: src/gui/settings.cpp:4533 +msgid "Submit" +msgstr "" + +#: src/gui/settings.cpp:4537 +msgid "invalid code" +msgstr "" + +#: src/gui/settings.cpp:4547 +msgid "toggled alternate UI" +msgstr "" + +#: src/gui/settings.cpp:4551 +msgid ":smile: :star_struck: :sunglasses: :ok_hand:" +msgstr "" + +#: src/gui/settings.cpp:4555 +msgid "enabled all instrument types" +msgstr "" + +#: src/gui/settings.cpp:4559 +msgid "OK, if I bring your Partial pitch linearity will you stop bothering me?" +msgstr "" + +#: src/gui/settings.cpp:4563 +msgid "unlocked audio multi-threading options!" +msgstr "" + +#: src/gui/settings.cpp:4567 +msgid "enabled \"comfortable\" mode" +msgstr "" + +#: src/gui/settings.cpp:4585 +msgid "OK##SettingsOK" +msgstr "" + +#: src/gui/settings.cpp:4591 +msgid "Cancel##SettingsCancel" +msgstr "" + +#: src/gui/settings.cpp:4599 +msgid "Apply##SettingsApply" +msgstr "" + +#: src/gui/settings.cpp:5673 +msgid "could not initialize audio!" +msgstr "" + +#: src/gui/settings.cpp:5683 src/gui/gui.cpp:4067 src/gui/gui.cpp:6662 +#: src/gui/gui.cpp:7088 +msgid "error while loading fonts! please check your settings." +msgstr "" + +#: src/gui/settings.cpp:5862 +#, c-format +msgid "error while loading config! (%s)" +msgstr "" + +#: src/gui/settings.cpp:6675 +msgid "[Dir]" +msgstr "" + +#: src/gui/settings.cpp:6676 +msgid "[Link]" +msgstr "" + +#: src/gui/settings.cpp:6677 +msgid "[File]" +msgstr "" + +#: src/gui/settings.cpp:6678 +msgid "Name:" +msgstr "" + +#: src/gui/settings.cpp:6679 +msgid "Path:" +msgstr "" + +#: src/gui/settings.cpp:6680 +msgid "Reset search" +msgstr "" + +#: src/gui/settings.cpp:6681 +msgid "Drives" +msgstr "" + +#: src/gui/settings.cpp:6682 +msgid "" +"Edit path\n" +"You can also right click on path buttons" +msgstr "" + +#: src/gui/settings.cpp:6683 +msgid "Go to home directory" +msgstr "" + +#: src/gui/settings.cpp:6684 +msgid "Go to parent directory" +msgstr "" + +#: src/gui/settings.cpp:6685 +msgid "Create Directory" +msgstr "" + +#: src/gui/settings.cpp:6686 +msgid "File name" +msgstr "" + +#: src/gui/settings.cpp:6689 +msgid "Date" +msgstr "" + +#: src/gui/settings.cpp:6690 src/gui/gui.cpp:5510 src/gui/gui.cpp:5645 +#: src/gui/gui.cpp:5646 +msgid "Warning" +msgstr "" + +#: src/gui/settings.cpp:6691 +msgid "The file you selected already exists! Would you like to overwrite it?" +msgstr "" + +#: src/gui/settings.cpp:6692 src/gui/gui.cpp:5650 src/gui/gui.cpp:5674 +#: src/gui/gui.cpp:5698 src/gui/gui.cpp:5722 src/gui/gui.cpp:5746 +#: src/gui/gui.cpp:5770 src/gui/gui.cpp:5802 src/gui/gui.cpp:5818 +#: src/gui/gui.cpp:5829 src/gui/gui.cpp:5841 src/gui/gui.cpp:5995 +#: src/gui/gui.cpp:6017 src/gui/gui.cpp:6032 src/gui/gui.cpp:6043 +msgid "Yes" +msgstr "" + +#: src/gui/settings.cpp:6693 src/gui/findReplace.cpp:828 src/gui/gui.cpp:5664 +#: src/gui/gui.cpp:5688 src/gui/gui.cpp:5712 src/gui/gui.cpp:5736 +#: src/gui/gui.cpp:5760 src/gui/gui.cpp:5788 src/gui/gui.cpp:5813 +#: src/gui/gui.cpp:5824 src/gui/gui.cpp:5836 src/gui/gui.cpp:5848 +#: src/gui/gui.cpp:6012 src/gui/gui.cpp:6027 src/gui/gui.cpp:6037 +#: src/gui/gui.cpp:6050 +msgid "No" +msgstr "" + +#: src/gui/settings.cpp:6694 +msgid "%Y/%m/%d %H:%M" +msgstr "" + +#: src/gui/orders.cpp:114 +msgid "Add new order" +msgstr "" + +#: src/gui/orders.cpp:125 src/gui/guiConst.cpp:794 +msgid "Remove order" +msgstr "" + +#: src/gui/orders.cpp:137 +msgid "Duplicate order (right-click to deep clone)" +msgstr "" + +#: src/gui/orders.cpp:146 src/gui/guiConst.cpp:795 +msgid "Move order up" +msgstr "" + +#: src/gui/orders.cpp:155 src/gui/guiConst.cpp:796 +msgid "Move order down" +msgstr "" + +#: src/gui/orders.cpp:167 +msgid "Place copy of current order at end of song (right-click to deep clone)" +msgstr "" + +#: src/gui/orders.cpp:177 +msgid "Order change mode: entire row" +msgstr "" + +#: src/gui/orders.cpp:179 +msgid "Order change mode: one" +msgstr "" + +#: src/gui/orders.cpp:205 +msgid "Order edit mode: Select and type (scroll vertically)" +msgstr "" + +#: src/gui/orders.cpp:207 +msgid "Order edit mode: Select and type (scroll horizontally)" +msgstr "" + +#: src/gui/orders.cpp:209 +msgid "Order edit mode: Select and type (don't scroll)" +msgstr "" + +#: src/gui/orders.cpp:211 +msgid "Order edit mode: Click to change" +msgstr "" + +#: src/gui/findReplace.cpp:29 +msgid "ignore" +msgstr "" + +#: src/gui/findReplace.cpp:30 +msgid "equals" +msgstr "" + +#: src/gui/findReplace.cpp:31 +msgid "not equal" +msgstr "" + +#: src/gui/findReplace.cpp:32 +msgid "between" +msgstr "" + +#: src/gui/findReplace.cpp:33 +msgid "not between" +msgstr "" + +#: src/gui/findReplace.cpp:34 +msgid "any" +msgstr "" + +#: src/gui/findReplace.cpp:35 src/gui/guiConst.cpp:217 +msgid "none" +msgstr "" + +#: src/gui/findReplace.cpp:39 +msgid "set" +msgstr "" + +#: src/gui/findReplace.cpp:40 +msgid "add" +msgstr "" + +#: src/gui/findReplace.cpp:41 +msgid "add (overflow)" +msgstr "" + +#: src/gui/findReplace.cpp:42 +msgid "scale %" +msgstr "" + +#: src/gui/findReplace.cpp:512 src/gui/guiConst.cpp:609 +msgid "Find/Replace" +msgstr "" + +#: src/gui/findReplace.cpp:520 src/gui/findReplace.cpp:850 +msgid "Find" +msgstr "" + +#: src/gui/findReplace.cpp:526 src/gui/findReplace.cpp:535 +msgid "order" +msgstr "" + +#: src/gui/findReplace.cpp:527 src/gui/findReplace.cpp:537 +msgid "row" +msgstr "" + +#: src/gui/findReplace.cpp:539 src/gui/csPlayer.cpp:146 +msgid "channel" +msgstr "" + +#: src/gui/findReplace.cpp:541 +msgid "go" +msgstr "" + +#: src/gui/findReplace.cpp:585 +msgid "no matches found!" +msgstr "" + +#: src/gui/findReplace.cpp:587 +msgid "Back" +msgstr "" + +#: src/gui/findReplace.cpp:750 +msgid "Delete query" +msgstr "" + +#: src/gui/findReplace.cpp:754 src/gui/findReplace.cpp:1037 +msgid "Add effect" +msgstr "" + +#: src/gui/findReplace.cpp:761 src/gui/findReplace.cpp:1044 +msgid "Remove effect" +msgstr "" + +#: src/gui/findReplace.cpp:786 +msgid "Search range:" +msgstr "" + +#: src/gui/findReplace.cpp:799 +msgid "Confine to channels" +msgstr "" + +#: src/gui/findReplace.cpp:803 src/gui/sampleEdit.cpp:1152 +msgid "From" +msgstr "" + +#: src/gui/findReplace.cpp:814 src/gui/sampleEdit.cpp:1156 +msgid "To" +msgstr "" + +#: src/gui/findReplace.cpp:826 +msgid "Match effect position:" +msgstr "" + +#: src/gui/findReplace.cpp:832 +msgid "match effects regardless of position." +msgstr "" + +#: src/gui/findReplace.cpp:834 src/gui/compatFlags.cpp:288 +msgid "Lax" +msgstr "" + +#: src/gui/findReplace.cpp:838 +msgid "match effects only if they appear in-order." +msgstr "" + +#: src/gui/findReplace.cpp:840 src/gui/compatFlags.cpp:276 +msgid "Strict" +msgstr "" + +#: src/gui/findReplace.cpp:844 +msgid "match effects only if they appear exactly as specified." +msgstr "" + +#: src/gui/findReplace.cpp:856 +msgid "Replace" +msgstr "" + +#: src/gui/findReplace.cpp:908 +msgid "INVALID" +msgstr "" + +#: src/gui/findReplace.cpp:1052 +msgid "Effect replace mode:" +msgstr "" + +#: src/gui/findReplace.cpp:1053 +msgid "Replace matches only" +msgstr "" + +#: src/gui/findReplace.cpp:1056 +msgid "Replace matches, then free spaces" +msgstr "" + +#: src/gui/findReplace.cpp:1059 +msgid "Clear effects" +msgstr "" + +#: src/gui/findReplace.cpp:1062 +msgid "Insert in free spaces" +msgstr "" + +#: src/gui/findReplace.cpp:1065 +msgid "Replace##QueryReplace" +msgstr "" + +#: src/gui/about.cpp:26 +msgid "is proud to present" +msgstr "" + +#: src/gui/about.cpp:30 +msgid "the biggest multi-system chiptune tracker!" +msgstr "" + +#: src/gui/about.cpp:31 +msgid "featuring DefleMask song compatibility." +msgstr "" + +#: src/gui/about.cpp:33 +msgid "> CREDITS <" +msgstr "" + +#: src/gui/about.cpp:35 +msgid "-- program --" +msgstr "" + +#: src/gui/about.cpp:37 +msgid "A M 4 N (intro tune)" +msgstr "" + +#: src/gui/about.cpp:52 +msgid "-- graphics/UI design --" +msgstr "" + +#: src/gui/about.cpp:59 +msgid "-- documentation --" +msgstr "" + +#: src/gui/about.cpp:69 +msgid "-- localization/translation team --" +msgstr "" + +#: src/gui/about.cpp:81 +msgid "-- demo songs --" +msgstr "" + +#: src/gui/about.cpp:207 +msgid "-- additional feedback/fixes --" +msgstr "" + +#: src/gui/about.cpp:218 +msgid "-- Metal backend test team --" +msgstr "" + +#: src/gui/about.cpp:224 +msgid "-- DirectX 9 backend test team --" +msgstr "" + +#: src/gui/about.cpp:231 +msgid "powered by:" +msgstr "" + +#: src/gui/about.cpp:232 +msgid "Dear ImGui by Omar Cornut" +msgstr "" + +#: src/gui/about.cpp:233 +msgid "SDL2 by Sam Lantinga" +msgstr "" + +#: src/gui/about.cpp:237 +msgid "zlib by Jean-loup Gailly" +msgstr "" + +#: src/gui/about.cpp:238 +msgid "and Mark Adler" +msgstr "" + +#: src/gui/about.cpp:239 +msgid "libsndfile by Erik de Castro Lopo" +msgstr "" + +#: src/gui/about.cpp:240 +msgid "Portable File Dialogs by Sam Hocevar" +msgstr "" + +#: src/gui/about.cpp:241 +msgid "Native File Dialog by Frogtoss Games" +msgstr "" + +#: src/gui/about.cpp:243 +msgid "Weak-JACK by x42" +msgstr "" + +#: src/gui/about.cpp:244 +msgid "RtMidi by Gary P. Scavone" +msgstr "" + +#: src/gui/about.cpp:245 +msgid "FFTW by Matteo Frigo and Steven G. Johnson" +msgstr "" + +#: src/gui/about.cpp:246 +msgid "backward-cpp by Google" +msgstr "" + +#: src/gui/about.cpp:247 +msgid "adpcm by superctr" +msgstr "" + +#: src/gui/about.cpp:248 +msgid "adpcm-xq by David Bryant" +msgstr "" + +#: src/gui/about.cpp:249 +msgid "Nuked-OPL3/OPLL/OPM/OPN2/PSG by nukeykt" +msgstr "" + +#: src/gui/about.cpp:250 +msgid "YM3812-LLE, YMF262-LLE, YMF276-LLE and YM2608-LLE by nukeykt" +msgstr "" + +#: src/gui/about.cpp:251 +msgid "ESFMu (modified version) by Kagamiin~" +msgstr "" + +#: src/gui/about.cpp:252 +msgid "ymfm by Aaron Giles" +msgstr "" + +#: src/gui/about.cpp:253 +msgid "emu2413 by Digital Sound Antiques" +msgstr "" + +#: src/gui/about.cpp:254 +msgid "MAME SN76496 by Nicola Salmoria" +msgstr "" + +#: src/gui/about.cpp:255 +msgid "MAME AY-3-8910 by Couriersud" +msgstr "" + +#: src/gui/about.cpp:256 +msgid "with AY8930 fixes by Eulous, cam900 and Grauw" +msgstr "" + +#: src/gui/about.cpp:257 +msgid "MAME SAA1099 by Juergen Buchmueller and Manuel Abadia" +msgstr "" + +#: src/gui/about.cpp:258 +msgid "MAME Namco WSG by Nicola Salmoria and Aaron Giles" +msgstr "" + +#: src/gui/about.cpp:259 +msgid "MAME RF5C68 core by Olivier Galibert and Aaron Giles" +msgstr "" + +#: src/gui/about.cpp:260 +msgid "MAME MSM5232 core by Jarek Burczynski and Hiromitsu Shioya" +msgstr "" + +#: src/gui/about.cpp:261 +msgid "MAME MSM6258 core by Barry Rodewald" +msgstr "" + +#: src/gui/about.cpp:262 +msgid "MAME YMZ280B core by Aaron Giles" +msgstr "" + +#: src/gui/about.cpp:263 +msgid "MAME GA20 core by Acho A. Tang and R. Belmont" +msgstr "" + +#: src/gui/about.cpp:264 +msgid "MAME SegaPCM core by Hiromitsu Shioya and Olivier Galibert" +msgstr "" + +#: src/gui/about.cpp:265 +msgid "SAASound by Dave Hooper and Simon Owen" +msgstr "" + +#: src/gui/about.cpp:266 +msgid "SameBoy by Lior Halphon" +msgstr "" + +#: src/gui/about.cpp:267 +msgid "Mednafen PCE, WonderSwan, T6W28 and Virtual Boy audio cores" +msgstr "" + +#: src/gui/about.cpp:268 +msgid "SNES DSP core by Blargg" +msgstr "" + +#: src/gui/about.cpp:269 +msgid "puNES (NES, MMC5 and FDS) by FHorse" +msgstr "" + +#: src/gui/about.cpp:270 +msgid "NSFPlay (NES and FDS) by Brad Smith and Brezza" +msgstr "" + +#: src/gui/about.cpp:271 +msgid "reSID by Dag Lem" +msgstr "" + +#: src/gui/about.cpp:272 +msgid "reSIDfp by Dag Lem, Antti Lankila" +msgstr "" + +#: src/gui/about.cpp:273 +msgid "and Leandro Nini" +msgstr "" + +#: src/gui/about.cpp:274 +msgid "dSID by DefleMask Team based on jsSID" +msgstr "" + +#: src/gui/about.cpp:275 +msgid "Stella by Stella Team" +msgstr "" + +#: src/gui/about.cpp:276 +msgid "QSound emulator by superctr and Valley Bell" +msgstr "" + +#: src/gui/about.cpp:277 +msgid "VICE VIC-20 sound core by Rami Rasanen and viznut" +msgstr "" + +#: src/gui/about.cpp:278 +msgid "VICE TED sound core by Andreas Boose, Tibor Biczo" +msgstr "" + +#: src/gui/about.cpp:279 +msgid "and Marco van den Heuvel" +msgstr "" + +#: src/gui/about.cpp:280 +msgid "VERA sound core by Frank van den Hoef" +msgstr "" + +#: src/gui/about.cpp:281 +msgid "mzpokeysnd POKEY emulator by Michael Borisov" +msgstr "" + +#: src/gui/about.cpp:282 +msgid "ASAP POKEY emulator by Piotr Fusik" +msgstr "" + +#: src/gui/about.cpp:283 +msgid "ported by laoo to C++" +msgstr "" + +#: src/gui/about.cpp:284 +msgid "vgsound_emu (second version, modified version) by cam900" +msgstr "" + +#: src/gui/about.cpp:285 +msgid "SM8521 emulator (modified version) by cam900" +msgstr "" + +#: src/gui/about.cpp:286 +msgid "D65010G031 emulator (modified version) by cam900" +msgstr "" + +#: src/gui/about.cpp:287 +msgid "Namco C140/C219 emulator (modified version) by cam900" +msgstr "" + +#: src/gui/about.cpp:288 +msgid "PowerNoise emulator by scratchminer" +msgstr "" + +#: src/gui/about.cpp:289 +msgid "ep128emu by Istvan Varga" +msgstr "" + +#: src/gui/about.cpp:290 +msgid "NDS sound emulator by cam900" +msgstr "" + +#: src/gui/about.cpp:292 +msgid "greetings to:" +msgstr "" + +#: src/gui/about.cpp:295 +msgid "all members of Deflers of Noice!" +msgstr "" + +#: src/gui/about.cpp:301 +msgid "copyright © 2021-2024 tildearrow" +msgstr "" + +#: src/gui/about.cpp:302 +msgid "(and contributors)." +msgstr "" + +#: src/gui/about.cpp:303 +msgid "licensed under GPLv2+! see" +msgstr "" + +#: src/gui/about.cpp:304 +msgid "LICENSE for more information." +msgstr "" + +#: src/gui/about.cpp:306 +msgid "help Furnace grow:" +msgstr "" + +#: src/gui/about.cpp:309 +msgid "contact tildearrow at:" +msgstr "" + +#: src/gui/about.cpp:312 +msgid "disclaimer:" +msgstr "" + +#: src/gui/about.cpp:313 +msgid "despite the fact this program works" +msgstr "" + +#: src/gui/about.cpp:314 +msgid "with the .dmf file format, it is NOT" +msgstr "" + +#: src/gui/about.cpp:315 +msgid "affiliated with Delek or DefleMask in" +msgstr "" + +#: src/gui/about.cpp:316 +msgid "any way, nor it is a replacement for" +msgstr "" + +#: src/gui/about.cpp:317 +msgid "the original program." +msgstr "" + +#: src/gui/about.cpp:319 +msgid "it also comes with ABSOLUTELY NO WARRANTY." +msgstr "" + +#: src/gui/about.cpp:321 +msgid "thanks to all contributors/bug reporters!" +msgstr "" + +#: src/gui/about.cpp:328 +msgid "About Furnace" +msgstr "" + +#: src/gui/about.cpp:418 +msgid "Unsaved changes! Save changes before playing?" +msgstr "" + +#: src/gui/compatFlags.cpp:31 src/gui/guiConst.cpp:598 +msgid "Compatibility Flags" +msgstr "" + +#: src/gui/compatFlags.cpp:32 +msgid "" +"these flags are designed to provide better DefleMask/older Furnace " +"compatibility.\n" +"it is recommended to disable most of these unless you rely on specific " +"quirks." +msgstr "" + +#: src/gui/compatFlags.cpp:34 src/gui/compatFlags.cpp:310 +msgid "DefleMask" +msgstr "" + +#: src/gui/compatFlags.cpp:35 +msgid "Limit slide range" +msgstr "" + +#: src/gui/compatFlags.cpp:37 +msgid "" +"when enabled, slides are limited to a compatible range.\n" +"may cause problems with slides in negative octaves." +msgstr "" + +#: src/gui/compatFlags.cpp:39 +msgid "Compatible noise layout on NES and PC Engine" +msgstr "" + +#: src/gui/compatFlags.cpp:41 +msgid "" +"use a rather unusual compatible noise frequency layout.\n" +"removes some noise frequencies on PC Engine." +msgstr "" + +#: src/gui/compatFlags.cpp:43 +msgid "Game Boy instrument duty is wave volume" +msgstr "" + +#: src/gui/compatFlags.cpp:45 +msgid "" +"if enabled, an instrument with duty macro in the wave channel will be mapped " +"to wavetable volume." +msgstr "" + +#: src/gui/compatFlags.cpp:48 +msgid "Restart macro on portamento" +msgstr "" + +#: src/gui/compatFlags.cpp:50 +msgid "" +"when enabled, a portamento effect will reset the channel's macro if used in " +"combination with a note." +msgstr "" + +#: src/gui/compatFlags.cpp:52 +msgid "Legacy volume slides" +msgstr "" + +#: src/gui/compatFlags.cpp:54 +msgid "" +"simulate glitchy volume slide behavior by silently overflowing the volume " +"when the slide goes below 0." +msgstr "" + +#: src/gui/compatFlags.cpp:56 +msgid "Compatible arpeggio" +msgstr "" + +#: src/gui/compatFlags.cpp:58 +msgid "delay arpeggio by one tick on every new note." +msgstr "" + +#: src/gui/compatFlags.cpp:60 +msgid "Disable DAC when sample ends" +msgstr "" + +#: src/gui/compatFlags.cpp:62 +msgid "" +"when enabled, the DAC in YM2612 will be disabled if there isn't any sample " +"playing." +msgstr "" + +#: src/gui/compatFlags.cpp:64 +msgid "Broken speed alternation" +msgstr "" + +#: src/gui/compatFlags.cpp:66 +msgid "" +"determines next speed based on whether the row is odd/even instead of " +"alternating between speeds." +msgstr "" + +#: src/gui/compatFlags.cpp:68 +msgid "Ignore duplicate slide effects" +msgstr "" + +#: src/gui/compatFlags.cpp:70 +msgid "" +"if this is on, only the first slide of a row in a channel will be considered." +msgstr "" + +#: src/gui/compatFlags.cpp:72 +msgid "Ignore 0Dxx on the last order" +msgstr "" + +#: src/gui/compatFlags.cpp:74 +msgid "" +"if this is on, a jump to next row effect will not take place when it is on " +"the last order of a song." +msgstr "" + +#: src/gui/compatFlags.cpp:76 +msgid "Buggy portamento after pitch slide" +msgstr "" + +#: src/gui/compatFlags.cpp:78 +msgid "simulates a bug in where portamento does not work after sliding." +msgstr "" + +#: src/gui/compatFlags.cpp:80 +msgid "FM pitch slide octave boundary odd behavior" +msgstr "" + +#: src/gui/compatFlags.cpp:82 +msgid "" +"if this is on, a pitch slide that crosses the octave boundary will stop for " +"one tick and then continue from the nearest octave boundary.\n" +"for .dmf compatibility." +msgstr "" + +#: src/gui/compatFlags.cpp:84 +msgid "Don't apply Game Boy envelope on note-less instrument change" +msgstr "" + +#: src/gui/compatFlags.cpp:86 +msgid "if this is on, an instrument change will not affect the envelope." +msgstr "" + +#: src/gui/compatFlags.cpp:88 +msgid "Ignore DAC mode change outside of intended channel in ExtCh mode" +msgstr "" + +#: src/gui/compatFlags.cpp:90 +msgid "if this is on, 17xx has no effect on the operator channels in YM2612." +msgstr "" + +#: src/gui/compatFlags.cpp:92 +msgid "E1xy/E2xy also take priority over slide stops" +msgstr "" + +#: src/gui/compatFlags.cpp:94 +msgid "does this make any sense by now?" +msgstr "" + +#: src/gui/compatFlags.cpp:96 +msgid "E1xy/E2xy stop when repeating the same note" +msgstr "" + +#: src/gui/compatFlags.cpp:98 +msgid "ugh, if only this wasn't a thing..." +msgstr "" + +#: src/gui/compatFlags.cpp:100 +msgid "SN76489 duty macro always resets phase" +msgstr "" + +#: src/gui/compatFlags.cpp:102 +msgid "" +"when enabled, duty macro will always reset phase, even if its value hasn't " +"changed." +msgstr "" + +#: src/gui/compatFlags.cpp:104 +msgid "Broken volume scaling strategy" +msgstr "" + +#: src/gui/compatFlags.cpp:106 +msgid "" +"when enabled:\n" +"- log scaling: multiply\n" +"- linear scaling: subtract\n" +"when disabled:\n" +"- log scaling: subtract\n" +"- linear scaling: multiply" +msgstr "" + +#: src/gui/compatFlags.cpp:108 +msgid "Don't persist volume macro after it finishes" +msgstr "" + +#: src/gui/compatFlags.cpp:110 +msgid "" +"when enabled, a value in the volume column that happens after the volume " +"macro is done will disregard the macro." +msgstr "" + +#: src/gui/compatFlags.cpp:112 +msgid "Broken output volume on instrument change" +msgstr "" + +#: src/gui/compatFlags.cpp:114 +msgid "" +"if enabled, no checks for the presence of a volume macro will be made.\n" +"this will cause the last macro value to linger unless a value in the volume " +"column is present." +msgstr "" + +#: src/gui/compatFlags.cpp:116 +msgid "Broken output volume - Episode 2 (PLEASE KEEP ME DISABLED)" +msgstr "" + +#: src/gui/compatFlags.cpp:118 +msgid "" +"these compatibility flags are getting SO damn ridiculous and out of " +"control.\n" +"as you may have guessed, this one exists due to yet ANOTHER DefleMask-" +"specific behavior.\n" +"please keep this off at all costs, because I will not support it when ROM " +"export comes.\n" +"oh, and don't start an argument out of it. Furnace isn't a DefleMask " +"replacement, and no,\n" +"I am not trying to make it look like one with all these flags.\n" +"\n" +"oh, and what about the other flags that don't have to do with DefleMask?\n" +"those are for .mod import, future FamiTracker import and personal taste!\n" +"\n" +"end of rant" +msgstr "" + +#: src/gui/compatFlags.cpp:120 +msgid "Treat SN76489 periods under 8 as 1" +msgstr "" + +#: src/gui/compatFlags.cpp:122 +msgid "" +"when enabled, any SN period under 8 will be written as 1 instead.\n" +"this replicates DefleMask behavior, but reduces available period range." +msgstr "" + +#: src/gui/compatFlags.cpp:126 src/gui/compatFlags.cpp:304 +msgid "Old Furnace" +msgstr "" + +#: src/gui/compatFlags.cpp:127 +msgid "Arpeggio inhibits non-porta slides" +msgstr "" + +#: src/gui/compatFlags.cpp:129 src/gui/compatFlags.cpp:133 +msgid "behavior changed in 0.5.5" +msgstr "" + +#: src/gui/compatFlags.cpp:131 +msgid "Wack FM algorithm macro" +msgstr "" + +#: src/gui/compatFlags.cpp:135 +msgid "Broken shortcut slides (E1xy/E2xy)" +msgstr "" + +#: src/gui/compatFlags.cpp:137 +msgid "behavior changed in 0.5.7" +msgstr "" + +#: src/gui/compatFlags.cpp:139 +msgid "Stop portamento on note off" +msgstr "" + +#: src/gui/compatFlags.cpp:141 src/gui/compatFlags.cpp:145 +#: src/gui/compatFlags.cpp:149 src/gui/compatFlags.cpp:153 +#: src/gui/compatFlags.cpp:157 src/gui/compatFlags.cpp:161 +#: src/gui/compatFlags.cpp:165 +msgid "behavior changed in 0.6pre1" +msgstr "" + +#: src/gui/compatFlags.cpp:143 +msgid "Don't allow instrument change during slides" +msgstr "" + +#: src/gui/compatFlags.cpp:147 +msgid "Don't reset note to base on arpeggio stop" +msgstr "" + +#: src/gui/compatFlags.cpp:151 +msgid "ExtCh channel status is not shared among operators" +msgstr "" + +#: src/gui/compatFlags.cpp:155 +msgid "Disable new SegaPCM features (macros and better panning)" +msgstr "" + +#: src/gui/compatFlags.cpp:159 +msgid "Old FM octave boundary behavior" +msgstr "" + +#: src/gui/compatFlags.cpp:163 +msgid "Disable OPN2 DAC volume control" +msgstr "" + +#: src/gui/compatFlags.cpp:167 +msgid "Broken initial position of portamento after arpeggio" +msgstr "" + +#: src/gui/compatFlags.cpp:169 +msgid "behavior changed in 0.6pre1.5" +msgstr "" + +#: src/gui/compatFlags.cpp:171 +msgid "Disable new sample features" +msgstr "" + +#: src/gui/compatFlags.cpp:173 src/gui/compatFlags.cpp:177 +msgid "behavior changed in 0.6pre2" +msgstr "" + +#: src/gui/compatFlags.cpp:175 +msgid "Old arpeggio macro + pitch slide strategy" +msgstr "" + +#: src/gui/compatFlags.cpp:179 +msgid "Broken portamento during legato" +msgstr "" + +#: src/gui/compatFlags.cpp:181 +msgid "behavior changed in 0.6pre4" +msgstr "" + +#: src/gui/compatFlags.cpp:183 +msgid "Broken macros in some FM chips after note off" +msgstr "" + +#: src/gui/compatFlags.cpp:185 +msgid "behavior changed in 0.6pre5" +msgstr "" + +#: src/gui/compatFlags.cpp:187 +msgid "Pre-note does not take effects into consideration" +msgstr "" + +#: src/gui/compatFlags.cpp:189 +msgid "behavior changed in 0.6pre9" +msgstr "" + +#: src/gui/compatFlags.cpp:191 +msgid "Disable new NES DPCM features" +msgstr "" + +#: src/gui/compatFlags.cpp:193 +msgid "behavior changed in 0.6.1" +msgstr "" + +#: src/gui/compatFlags.cpp:195 +msgid "Legacy technical ALWAYS_SET_VOLUME behavior" +msgstr "" + +#: src/gui/compatFlags.cpp:197 +msgid "" +"behavior changed in 0.6.1\n" +"this flag will be removed if I find out that none of the songs break after " +"disabling it." +msgstr "" + +#: src/gui/compatFlags.cpp:199 +msgid "Old sample offset effect" +msgstr "" + +#: src/gui/compatFlags.cpp:201 +msgid "behavior changed in 0.6.3" +msgstr "" + +#: src/gui/compatFlags.cpp:205 +msgid ".mod import" +msgstr "" + +#: src/gui/compatFlags.cpp:206 +msgid "Don't slide on the first tick of a row" +msgstr "" + +#: src/gui/compatFlags.cpp:208 +msgid "" +"simulates ProTracker's behavior of not applying volume/pitch slides on the " +"first tick of a row." +msgstr "" + +#: src/gui/compatFlags.cpp:210 +msgid "Reset arpeggio position on row change" +msgstr "" + +#: src/gui/compatFlags.cpp:212 +msgid "" +"simulates ProTracker's behavior of arpeggio being bound to the current tick " +"of a row." +msgstr "" + +#: src/gui/compatFlags.cpp:216 +msgid "Pitch/Playback" +msgstr "" + +#: src/gui/compatFlags.cpp:217 +msgid "Pitch linearity:" +msgstr "" + +#: src/gui/compatFlags.cpp:223 +msgid "like ProTracker/FamiTracker" +msgstr "" + +#: src/gui/compatFlags.cpp:227 +msgid "Partial (only 04xy/E5xx)" +msgstr "" + +#: src/gui/compatFlags.cpp:231 +msgid "" +"like DefleMask\n" +"\n" +"this pitch linearity mode is deprecated due to:\n" +"- excessive complexity\n" +"- lack of possible optimization\n" +"\n" +"it is recommended to change it now because I will remove this option in the " +"future!" +msgstr "" + +#: src/gui/compatFlags.cpp:235 +msgid "Full" +msgstr "" + +#: src/gui/compatFlags.cpp:239 +msgid "like Impulse Tracker" +msgstr "" + +#: src/gui/compatFlags.cpp:246 +msgid "Pitch slide speed multiplier" +msgstr "" + +#: src/gui/compatFlags.cpp:252 +msgid "Loop modality:" +msgstr "" + +#: src/gui/compatFlags.cpp:254 +msgid "Reset channels" +msgstr "" + +#: src/gui/compatFlags.cpp:258 +msgid "" +"select to reset channels on loop. may trigger a voltage click on every loop!" +msgstr "" + +#: src/gui/compatFlags.cpp:260 +msgid "Soft reset channels" +msgstr "" + +#: src/gui/compatFlags.cpp:264 +msgid "select to turn channels off on loop." +msgstr "" + +#: src/gui/compatFlags.cpp:266 +msgid "Do nothing" +msgstr "" + +#: src/gui/compatFlags.cpp:270 +msgid "select to not reset channels on loop." +msgstr "" + +#: src/gui/compatFlags.cpp:274 +msgid "Cut/delay effect policy:" +msgstr "" + +#: src/gui/compatFlags.cpp:280 +msgid "only when time is less than speed (like DefleMask/ProTracker)" +msgstr "" + +#: src/gui/compatFlags.cpp:282 +msgid "Strict (old)" +msgstr "" + +#: src/gui/compatFlags.cpp:286 +msgid "only when time is less than or equal to speed (original buggy behavior)" +msgstr "" + +#: src/gui/compatFlags.cpp:292 +msgid "no checks" +msgstr "" + +#: src/gui/compatFlags.cpp:296 +msgid "Simultaneous jump (0B+0D) treatment:" +msgstr "" + +#: src/gui/compatFlags.cpp:302 +msgid "accept 0B+0D to jump to a specific row of an order" +msgstr "" + +#: src/gui/compatFlags.cpp:308 +msgid "only accept the first jump effect" +msgstr "" + +#: src/gui/compatFlags.cpp:314 +msgid "only accept 0Dxx" +msgstr "" + +#: src/gui/compatFlags.cpp:320 +msgid "Auto-insert one tick gap between notes" +msgstr "" + +#: src/gui/compatFlags.cpp:322 +msgid "" +"when enabled, a one-tick note cut will be inserted between non-legato/non-" +"portamento notes.\n" +"this simulates the behavior of some Amiga/SNES music engines.\n" +"\n" +"ineffective on C64." +msgstr "" + +#: src/gui/compatFlags.cpp:327 +msgid "Don't reset slides after note off" +msgstr "" + +#: src/gui/compatFlags.cpp:329 +msgid "when enabled, note off will not reset the channel's slide effect." +msgstr "" + +#: src/gui/compatFlags.cpp:331 +msgid "Don't reset portamento after reaching target" +msgstr "" + +#: src/gui/compatFlags.cpp:333 +msgid "" +"when enabled, the slide effect will not be disabled after it reaches its " +"target." +msgstr "" + +#: src/gui/compatFlags.cpp:335 +msgid "Continuous vibrato" +msgstr "" + +#: src/gui/compatFlags.cpp:337 +msgid "when enabled, vibrato phase/position will not be reset on a new note." +msgstr "" + +#: src/gui/compatFlags.cpp:339 +msgid "Pitch macro is not linear" +msgstr "" + +#: src/gui/compatFlags.cpp:341 +msgid "" +"when enabled, the pitch macro of an instrument is in frequency/period space." +msgstr "" + +#: src/gui/compatFlags.cpp:343 +msgid "Reset arpeggio effect position on new note" +msgstr "" + +#: src/gui/compatFlags.cpp:345 +msgid "when enabled, arpeggio effect (00xy) position is reset on a new note." +msgstr "" + +#: src/gui/compatFlags.cpp:347 +msgid "Volume scaling rounds up" +msgstr "" + +#: src/gui/compatFlags.cpp:349 +msgid "" +"when enabled, volume macros round up when applied\n" +"this prevents volume scaling from causing vol=0, which is silent on some " +"chips\n" +"\n" +"ineffective on logarithmic channels" +msgstr "" + +#: src/gui/guiConst.cpp:127 +msgid "Generic Sample" +msgstr "" + +#: src/gui/guiConst.cpp:155 +msgid "OPL (drums)" +msgstr "" + +#: src/gui/guiConst.cpp:191 +msgid "Forward" +msgstr "" + +#: src/gui/guiConst.cpp:192 +msgid "Backward" +msgstr "" + +#: src/gui/guiConst.cpp:193 +msgid "Ping pong" +msgstr "" + +#: src/gui/guiConst.cpp:218 +msgid "linear" +msgstr "" + +#: src/gui/guiConst.cpp:219 +msgid "cubic spline" +msgstr "" + +#: src/gui/guiConst.cpp:220 +msgid "blep synthesis" +msgstr "" + +#: src/gui/guiConst.cpp:221 +msgid "sinc" +msgstr "" + +#: src/gui/guiConst.cpp:222 +msgid "best possible" +msgstr "" + +#: src/gui/guiConst.cpp:226 src/gui/sampleEdit.cpp:137 +#: src/gui/sampleEdit.cpp:143 +msgid "Invalid" +msgstr "" + +#: src/gui/guiConst.cpp:231 +msgid "Time" +msgstr "" + +#: src/gui/guiConst.cpp:233 +msgid "System (Primary)" +msgstr "" + +#: src/gui/guiConst.cpp:234 +msgid "System (Secondary)" +msgstr "" + +#: src/gui/guiConst.cpp:530 +msgid "---Global" +msgstr "" + +#: src/gui/guiConst.cpp:532 +msgid "Open file" +msgstr "" + +#: src/gui/guiConst.cpp:533 +msgid "Restore backup" +msgstr "" + +#: src/gui/guiConst.cpp:534 +msgid "Save file" +msgstr "" + +#: src/gui/guiConst.cpp:535 +msgid "Save as" +msgstr "" + +#: src/gui/guiConst.cpp:537 src/gui/sampleEdit.cpp:982 +msgid "Undo" +msgstr "" + +#: src/gui/guiConst.cpp:539 src/gui/guiConst.cpp:541 src/gui/sampleEdit.cpp:989 +msgid "Redo" +msgstr "" + +#: src/gui/guiConst.cpp:543 +msgid "Exit" +msgstr "" + +#: src/gui/guiConst.cpp:544 +msgid "Play/Stop (toggle)" +msgstr "" + +#: src/gui/guiConst.cpp:547 +msgid "Play (from beginning)" +msgstr "" + +#: src/gui/guiConst.cpp:548 +msgid "Play (repeat pattern)" +msgstr "" + +#: src/gui/guiConst.cpp:549 +msgid "Play from cursor" +msgstr "" + +#: src/gui/guiConst.cpp:550 +msgid "Step row" +msgstr "" + +#: src/gui/guiConst.cpp:551 +msgid "Octave up" +msgstr "" + +#: src/gui/guiConst.cpp:552 +msgid "Octave down" +msgstr "" + +#: src/gui/guiConst.cpp:553 +msgid "Previous instrument" +msgstr "" + +#: src/gui/guiConst.cpp:554 +msgid "Next instrument" +msgstr "" + +#: src/gui/guiConst.cpp:555 +msgid "Increase edit step" +msgstr "" + +#: src/gui/guiConst.cpp:556 +msgid "Decrease edit step" +msgstr "" + +#: src/gui/guiConst.cpp:557 +msgid "Toggle edit mode" +msgstr "" + +#: src/gui/guiConst.cpp:559 +msgid "Toggle repeat pattern" +msgstr "" + +#: src/gui/guiConst.cpp:562 +msgid "Toggle full-screen" +msgstr "" + +#: src/gui/guiConst.cpp:563 +msgid "Request voice from TX81Z" +msgstr "" + +#: src/gui/guiConst.cpp:565 +msgid "Clear song data" +msgstr "" + +#: src/gui/guiConst.cpp:567 src/gui/gui.cpp:5573 src/gui/gui.cpp:5625 +msgid "Command Palette" +msgstr "" + +#: src/gui/guiConst.cpp:569 +msgid "Recent files (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:570 +msgid "Instruments (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:571 +msgid "Samples (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:572 +msgid "Change instrument (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:573 +msgid "Add chip (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:578 +msgid "Instrument List" +msgstr "" + +#: src/gui/guiConst.cpp:579 src/gui/insEdit.cpp:5203 +msgid "Instrument Editor" +msgstr "" + +#: src/gui/guiConst.cpp:580 +msgid "Song Information" +msgstr "" + +#: src/gui/guiConst.cpp:583 +msgid "Wavetable List" +msgstr "" + +#: src/gui/guiConst.cpp:584 src/gui/waveEdit.cpp:409 +msgid "Wavetable Editor" +msgstr "" + +#: src/gui/guiConst.cpp:585 +msgid "Sample List" +msgstr "" + +#: src/gui/guiConst.cpp:594 +msgid "Debug Menu" +msgstr "" + +#: src/gui/guiConst.cpp:595 +msgid "Oscilloscope (master)" +msgstr "" + +#: src/gui/guiConst.cpp:603 src/gui/sysManager.cpp:41 +msgid "Chip Manager" +msgstr "" + +#: src/gui/guiConst.cpp:614 src/gui/csPlayer.cpp:112 +msgid "Command Stream Player" +msgstr "" + +#: src/gui/guiConst.cpp:615 +msgid "User Presets" +msgstr "" + +#: src/gui/guiConst.cpp:617 +msgid "Collapse/expand current window" +msgstr "" + +#: src/gui/guiConst.cpp:618 +msgid "Close current window" +msgstr "" + +#: src/gui/guiConst.cpp:621 +msgid "---Pattern" +msgstr "" + +#: src/gui/guiConst.cpp:622 +msgid "Transpose (+1)" +msgstr "" + +#: src/gui/guiConst.cpp:623 +msgid "Transpose (-1)" +msgstr "" + +#: src/gui/guiConst.cpp:624 +msgid "Transpose (+1 octave)" +msgstr "" + +#: src/gui/guiConst.cpp:625 +msgid "Transpose (-1 octave)" +msgstr "" + +#: src/gui/guiConst.cpp:626 +msgid "Increase values (+1)" +msgstr "" + +#: src/gui/guiConst.cpp:627 +msgid "Increase values (-1)" +msgstr "" + +#: src/gui/guiConst.cpp:628 +msgid "Increase values (+16)" +msgstr "" + +#: src/gui/guiConst.cpp:629 +msgid "Increase values (-16)" +msgstr "" + +#: src/gui/guiConst.cpp:630 +msgid "Select all" +msgstr "" + +#: src/gui/guiConst.cpp:631 +msgid "Cut" +msgstr "" + +#: src/gui/guiConst.cpp:632 +msgid "Copy" +msgstr "" + +#: src/gui/guiConst.cpp:633 +msgid "Paste" +msgstr "" + +#: src/gui/guiConst.cpp:634 +msgid "Paste Mix (foreground)" +msgstr "" + +#: src/gui/guiConst.cpp:635 +msgid "Paste Mix (background)" +msgstr "" + +#: src/gui/guiConst.cpp:636 +msgid "Paste Flood" +msgstr "" + +#: src/gui/guiConst.cpp:637 +msgid "Paste Overflow" +msgstr "" + +#: src/gui/guiConst.cpp:638 +msgid "Move cursor up" +msgstr "" + +#: src/gui/guiConst.cpp:639 +msgid "Move cursor down" +msgstr "" + +#: src/gui/guiConst.cpp:640 +msgid "Move cursor left" +msgstr "" + +#: src/gui/guiConst.cpp:641 +msgid "Move cursor right" +msgstr "" + +#: src/gui/guiConst.cpp:642 +msgid "Move cursor up by one (override Edit Step)" +msgstr "" + +#: src/gui/guiConst.cpp:643 +msgid "Move cursor down by one (override Edit Step)" +msgstr "" + +#: src/gui/guiConst.cpp:644 +msgid "Move cursor to previous channel" +msgstr "" + +#: src/gui/guiConst.cpp:645 +msgid "Move cursor to next channel" +msgstr "" + +#: src/gui/guiConst.cpp:646 +msgid "Move cursor to next channel (overflow)" +msgstr "" + +#: src/gui/guiConst.cpp:647 +msgid "Move cursor to previous channel (overflow)" +msgstr "" + +#: src/gui/guiConst.cpp:648 +msgid "Move cursor to beginning of pattern" +msgstr "" + +#: src/gui/guiConst.cpp:649 +msgid "Move cursor to end of pattern" +msgstr "" + +#: src/gui/guiConst.cpp:650 +msgid "Move cursor up (coarse)" +msgstr "" + +#: src/gui/guiConst.cpp:651 +msgid "Move cursor down (coarse)" +msgstr "" + +#: src/gui/guiConst.cpp:652 +msgid "Expand selection upwards" +msgstr "" + +#: src/gui/guiConst.cpp:653 +msgid "Expand selection downwards" +msgstr "" + +#: src/gui/guiConst.cpp:654 +msgid "Expand selection to the left" +msgstr "" + +#: src/gui/guiConst.cpp:655 +msgid "Expand selection to the right" +msgstr "" + +#: src/gui/guiConst.cpp:656 +msgid "Expand selection upwards by one (override Edit Step)" +msgstr "" + +#: src/gui/guiConst.cpp:657 +msgid "Expand selection downwards by one (override Edit Step)" +msgstr "" + +#: src/gui/guiConst.cpp:658 +msgid "Expand selection to beginning of pattern" +msgstr "" + +#: src/gui/guiConst.cpp:659 +msgid "Expand selection to end of pattern" +msgstr "" + +#: src/gui/guiConst.cpp:660 +msgid "Expand selection upwards (coarse)" +msgstr "" + +#: src/gui/guiConst.cpp:661 +msgid "Expand selection downwards (coarse)" +msgstr "" + +#: src/gui/guiConst.cpp:662 +msgid "Move selection up" +msgstr "" + +#: src/gui/guiConst.cpp:663 +msgid "Move selection down" +msgstr "" + +#: src/gui/guiConst.cpp:664 +msgid "Move selection to previous channel" +msgstr "" + +#: src/gui/guiConst.cpp:665 +msgid "Move selection to next channel" +msgstr "" + +#: src/gui/guiConst.cpp:667 +msgid "Pull delete" +msgstr "" + +#: src/gui/guiConst.cpp:668 +msgid "Insert" +msgstr "" + +#: src/gui/guiConst.cpp:669 +msgid "Mute channel at cursor" +msgstr "" + +#: src/gui/guiConst.cpp:670 +msgid "Solo channel at cursor" +msgstr "" + +#: src/gui/guiConst.cpp:671 +msgid "Unmute all channels" +msgstr "" + +#: src/gui/guiConst.cpp:672 +msgid "Go to next order" +msgstr "" + +#: src/gui/guiConst.cpp:673 +msgid "Go to previous order" +msgstr "" + +#: src/gui/guiConst.cpp:674 +msgid "Collapse channel at cursor" +msgstr "" + +#: src/gui/guiConst.cpp:675 +msgid "Increase effect columns" +msgstr "" + +#: src/gui/guiConst.cpp:676 +msgid "Decrease effect columns" +msgstr "" + +#: src/gui/guiConst.cpp:677 +msgid "Interpolate" +msgstr "" + +#: src/gui/guiConst.cpp:678 src/gui/insEdit.cpp:530 +msgid "Fade" +msgstr "" + +#: src/gui/guiConst.cpp:679 +msgid "Invert values" +msgstr "" + +#: src/gui/guiConst.cpp:680 +msgid "Flip selection" +msgstr "" + +#: src/gui/guiConst.cpp:681 +msgid "Collapse rows" +msgstr "" + +#: src/gui/guiConst.cpp:682 +msgid "Expand rows" +msgstr "" + +#: src/gui/guiConst.cpp:683 +msgid "Collapse pattern" +msgstr "" + +#: src/gui/guiConst.cpp:684 +msgid "Expand pattern" +msgstr "" + +#: src/gui/guiConst.cpp:685 +msgid "Collapse song" +msgstr "" + +#: src/gui/guiConst.cpp:686 +msgid "Expand song" +msgstr "" + +#: src/gui/guiConst.cpp:687 +msgid "Set note input latch" +msgstr "" + +#: src/gui/guiConst.cpp:688 +msgid "Change mobile scroll mode" +msgstr "" + +#: src/gui/guiConst.cpp:689 +msgid "Clear note input latch" +msgstr "" + +#: src/gui/guiConst.cpp:692 +msgid "---Instrument list" +msgstr "" + +#: src/gui/guiConst.cpp:693 +msgid "Add instrument" +msgstr "" + +#: src/gui/guiConst.cpp:694 +msgid "Duplicate instrument" +msgstr "" + +#: src/gui/guiConst.cpp:695 +msgid "Open instrument" +msgstr "" + +#: src/gui/guiConst.cpp:696 +msgid "Open instrument (replace current)" +msgstr "" + +#: src/gui/guiConst.cpp:697 +msgid "Save instrument" +msgstr "" + +#: src/gui/guiConst.cpp:698 +msgid "Save instrument (.dmp)" +msgstr "" + +#: src/gui/guiConst.cpp:699 +msgid "Move instrument up in list" +msgstr "" + +#: src/gui/guiConst.cpp:700 +msgid "Move instrument down in list" +msgstr "" + +#: src/gui/guiConst.cpp:701 +msgid "Delete instrument" +msgstr "" + +#: src/gui/guiConst.cpp:702 +msgid "Edit instrument" +msgstr "" + +#: src/gui/guiConst.cpp:703 +msgid "Instrument cursor up" +msgstr "" + +#: src/gui/guiConst.cpp:704 +msgid "Instrument cursor down" +msgstr "" + +#: src/gui/guiConst.cpp:705 +msgid "Instruments: toggle folders/standard view" +msgstr "" + +#: src/gui/guiConst.cpp:708 +msgid "---Wavetable list" +msgstr "" + +#: src/gui/guiConst.cpp:709 +msgid "Add wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:710 +msgid "Duplicate wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:711 +msgid "Open wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:712 +msgid "Open wavetable (replace current)" +msgstr "" + +#: src/gui/guiConst.cpp:713 +msgid "Save wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:714 +msgid "Save wavetable (.dmw)" +msgstr "" + +#: src/gui/guiConst.cpp:715 +msgid "Save wavetable (raw)" +msgstr "" + +#: src/gui/guiConst.cpp:716 +msgid "Move wavetable up in list" +msgstr "" + +#: src/gui/guiConst.cpp:717 +msgid "Move wavetable down in list" +msgstr "" + +#: src/gui/guiConst.cpp:718 +msgid "Delete wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:719 +msgid "Edit wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:720 +msgid "Wavetable cursor up" +msgstr "" + +#: src/gui/guiConst.cpp:721 +msgid "Wavetable cursor down" +msgstr "" + +#: src/gui/guiConst.cpp:722 +msgid "Wavetables: toggle folders/standard view" +msgstr "" + +#: src/gui/guiConst.cpp:725 +msgid "---Sample list" +msgstr "" + +#: src/gui/guiConst.cpp:726 +msgid "Add sample" +msgstr "" + +#: src/gui/guiConst.cpp:727 +msgid "Duplicate sample" +msgstr "" + +#: src/gui/guiConst.cpp:728 +msgid "Open sample" +msgstr "" + +#: src/gui/guiConst.cpp:729 +msgid "Open sample (replace current)" +msgstr "" + +#: src/gui/guiConst.cpp:730 +msgid "Import raw sample data" +msgstr "" + +#: src/gui/guiConst.cpp:731 +msgid "Import raw sample data (replace current)" +msgstr "" + +#: src/gui/guiConst.cpp:732 +msgid "Save sample" +msgstr "" + +#: src/gui/guiConst.cpp:733 +msgid "Save sample (raw)" +msgstr "" + +#: src/gui/guiConst.cpp:734 +msgid "Move sample up in list" +msgstr "" + +#: src/gui/guiConst.cpp:735 +msgid "Move sample down in list" +msgstr "" + +#: src/gui/guiConst.cpp:736 +msgid "Delete sample" +msgstr "" + +#: src/gui/guiConst.cpp:737 +msgid "Edit sample" +msgstr "" + +#: src/gui/guiConst.cpp:738 +msgid "Sample cursor up" +msgstr "" + +#: src/gui/guiConst.cpp:739 +msgid "Sample cursor down" +msgstr "" + +#: src/gui/guiConst.cpp:741 src/gui/sampleEdit.cpp:1339 +msgid "Stop sample preview" +msgstr "" + +#: src/gui/guiConst.cpp:742 +msgid "Samples: Toggle folders/standard view" +msgstr "" + +#: src/gui/guiConst.cpp:743 +msgid "Samples: Make me a drum kit" +msgstr "" + +#: src/gui/guiConst.cpp:746 +msgid "---Sample editor" +msgstr "" + +#: src/gui/guiConst.cpp:747 +msgid "Sample editor mode: Select" +msgstr "" + +#: src/gui/guiConst.cpp:748 +msgid "Sample editor mode: Draw" +msgstr "" + +#: src/gui/guiConst.cpp:749 +msgid "Sample editor: Cut" +msgstr "" + +#: src/gui/guiConst.cpp:750 +msgid "Sample editor: Copy" +msgstr "" + +#: src/gui/guiConst.cpp:751 +msgid "Sample editor: Paste" +msgstr "" + +#: src/gui/guiConst.cpp:752 +msgid "Sample editor: Paste replace" +msgstr "" + +#: src/gui/guiConst.cpp:753 +msgid "Sample editor: Paste mix" +msgstr "" + +#: src/gui/guiConst.cpp:754 +msgid "Sample editor: Select all" +msgstr "" + +#: src/gui/guiConst.cpp:755 +msgid "Sample editor: Resize" +msgstr "" + +#: src/gui/guiConst.cpp:756 +msgid "Sample editor: Resample" +msgstr "" + +#: src/gui/guiConst.cpp:757 +msgid "Sample editor: Amplify" +msgstr "" + +#: src/gui/guiConst.cpp:758 +msgid "Sample editor: Normalize" +msgstr "" + +#: src/gui/guiConst.cpp:759 +msgid "Sample editor: Fade in" +msgstr "" + +#: src/gui/guiConst.cpp:760 +msgid "Sample editor: Fade out" +msgstr "" + +#: src/gui/guiConst.cpp:761 +msgid "Sample editor: Apply silence" +msgstr "" + +#: src/gui/guiConst.cpp:762 +msgid "Sample editor: Insert silence" +msgstr "" + +#: src/gui/guiConst.cpp:763 +msgid "Sample editor: Delete" +msgstr "" + +#: src/gui/guiConst.cpp:764 +msgid "Sample editor: Trim" +msgstr "" + +#: src/gui/guiConst.cpp:765 +msgid "Sample editor: Reverse" +msgstr "" + +#: src/gui/guiConst.cpp:766 +msgid "Sample editor: Invert" +msgstr "" + +#: src/gui/guiConst.cpp:767 +msgid "Sample editor: Signed/unsigned exchange" +msgstr "" + +#: src/gui/guiConst.cpp:768 +msgid "Sample editor: Apply filter" +msgstr "" + +#: src/gui/guiConst.cpp:769 +msgid "Sample editor: Crossfade loop points" +msgstr "" + +#: src/gui/guiConst.cpp:770 +msgid "Sample editor: Preview sample" +msgstr "" + +#: src/gui/guiConst.cpp:771 +msgid "Sample editor: Stop sample preview" +msgstr "" + +#: src/gui/guiConst.cpp:772 +msgid "Sample editor: Zoom in" +msgstr "" + +#: src/gui/guiConst.cpp:773 +msgid "Sample editor: Zoom out" +msgstr "" + +#: src/gui/guiConst.cpp:774 +msgid "Sample editor: Toggle auto-zoom" +msgstr "" + +#: src/gui/guiConst.cpp:775 +msgid "Sample editor: Create instrument from sample" +msgstr "" + +#: src/gui/guiConst.cpp:776 +msgid "Sample editor: Set loop to selection" +msgstr "" + +#: src/gui/guiConst.cpp:777 +msgid "Sample editor: Create wavetable from selection" +msgstr "" + +#: src/gui/guiConst.cpp:780 +msgid "---Orders" +msgstr "" + +#: src/gui/guiConst.cpp:781 +msgid "Previous order" +msgstr "" + +#: src/gui/guiConst.cpp:782 +msgid "Next order" +msgstr "" + +#: src/gui/guiConst.cpp:783 +msgid "Order cursor left" +msgstr "" + +#: src/gui/guiConst.cpp:784 +msgid "Order cursor right" +msgstr "" + +#: src/gui/guiConst.cpp:785 +msgid "Increase order value" +msgstr "" + +#: src/gui/guiConst.cpp:786 +msgid "Decrease order value" +msgstr "" + +#: src/gui/guiConst.cpp:787 +msgid "Switch order edit mode" +msgstr "" + +#: src/gui/guiConst.cpp:788 +msgid "Order: toggle alter entire row" +msgstr "" + +#: src/gui/guiConst.cpp:789 +msgid "Add order" +msgstr "" + +#: src/gui/guiConst.cpp:790 +msgid "Duplicate order" +msgstr "" + +#: src/gui/guiConst.cpp:791 +msgid "Deep clone order" +msgstr "" + +#: src/gui/guiConst.cpp:792 +msgid "Copy current order to end of song" +msgstr "" + +#: src/gui/guiConst.cpp:793 +msgid "Deep clone current order to end of song" +msgstr "" + +#: src/gui/guiConst.cpp:797 +msgid "Replay order" +msgstr "" + +#: src/gui/guiConst.cpp:1392 +msgid "All chips" +msgstr "" + +#: src/gui/guiConst.cpp:1396 src/gui/insEdit.cpp:6954 src/gui/insEdit.cpp:7204 +#: src/gui/insEdit.cpp:7458 src/gui/insEdit.cpp:7480 +msgid "Special" +msgstr "" + +#: src/gui/piano.cpp:103 +msgid "Options" +msgstr "" + +#: src/gui/piano.cpp:106 +msgid "Key layout:" +msgstr "" + +#: src/gui/piano.cpp:111 +msgid "Standard" +msgstr "" + +#: src/gui/piano.cpp:114 +msgid "Continuous" +msgstr "" + +#: src/gui/piano.cpp:118 +msgid "Value input pad:" +msgstr "" + +#: src/gui/piano.cpp:120 +msgid "Disabled" +msgstr "" + +#: src/gui/piano.cpp:123 +msgid "Replace piano" +msgstr "" + +#: src/gui/piano.cpp:126 +msgid "Split (automatic)" +msgstr "" + +#: src/gui/piano.cpp:129 +msgid "Split (always visible)" +msgstr "" + +#: src/gui/piano.cpp:133 +msgid "Share play/edit offset/range" +msgstr "" + +#: src/gui/piano.cpp:134 +msgid "Read-only (can't input notes)" +msgstr "" + +#: src/gui/waveEdit.cpp:30 src/gui/waveEdit.cpp:192 src/gui/insEdit.cpp:177 +#: src/gui/insEdit.cpp:188 src/gui/insEdit.cpp:199 +msgid "Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:32 src/gui/waveEdit.cpp:202 src/gui/insEdit.cpp:325 +#: src/gui/insEdit.cpp:654 +msgid "Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:39 +msgid "Cosine" +msgstr "" + +#: src/gui/waveEdit.cpp:193 +msgid "Rect. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:194 +msgid "Abs. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:195 +msgid "Quart. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:196 +msgid "Squish. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:197 +msgid "Abs. Squish. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:200 +msgid "rectSquare" +msgstr "" + +#: src/gui/waveEdit.cpp:203 +msgid "Rect. Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:204 +msgid "Abs. Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:206 +msgid "Cubed Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:207 +msgid "Rect. Cubed Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:208 +msgid "Abs. Cubed Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:210 +msgid "Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:211 +msgid "Rect. Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:212 +msgid "Abs. Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:213 +msgid "Quart. Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:214 +msgid "Squish. Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:215 +msgid "Squish. Abs. Cub. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:218 +msgid "Rect. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:219 +msgid "Abs. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:220 +msgid "Quart. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:221 +msgid "Squish. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:222 +msgid "Abs. Squish. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:224 +msgid "Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:225 +msgid "Rect. Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:226 +msgid "Abs. Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:227 +msgid "Quart. Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:228 +msgid "Squish. Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:229 +msgid "Squish. Abs. Cub. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:412 src/gui/waveEdit.cpp:413 +msgid "no wavetable selected" +msgstr "" + +#: src/gui/waveEdit.cpp:424 src/gui/sampleEdit.cpp:111 src/gui/insEdit.cpp:5223 +msgid "select one..." +msgstr "" + +#: src/gui/waveEdit.cpp:432 src/gui/waveEdit.cpp:439 src/gui/sampleEdit.cpp:119 +#: src/gui/sampleEdit.cpp:126 src/gui/insEdit.cpp:5236 src/gui/insEdit.cpp:5243 +msgid "or" +msgstr "" + +#: src/gui/waveEdit.cpp:441 src/gui/sampleEdit.cpp:128 src/gui/insEdit.cpp:5245 +msgid "Create New" +msgstr "" + +#: src/gui/waveEdit.cpp:487 +msgid "Steps" +msgstr "" + +#: src/gui/waveEdit.cpp:491 +msgid "Lines" +msgstr "" + +#: src/gui/waveEdit.cpp:496 src/gui/insEdit.cpp:2687 +msgid "Width" +msgstr "" + +#: src/gui/waveEdit.cpp:498 +msgid "" +"use a width of:\n" +"- any on Amiga/N163\n" +"- 32 on Game Boy, PC Engine, SCC, Konami Bubble System, Namco WSG, Virtual " +"Boy and WonderSwan\n" +"- 64 on FDS\n" +"- 128 on X1-010\n" +"any other widths will be scaled during playback." +msgstr "" + +#: src/gui/waveEdit.cpp:510 +msgid "Height" +msgstr "" + +#: src/gui/waveEdit.cpp:512 +msgid "" +"use a height of:\n" +"- 16 for Game Boy, WonderSwan, Namco WSG, Konami Bubble System, X1-010 " +"Envelope shape and N163\n" +"- 32 for PC Engine\n" +"- 64 for FDS and Virtual Boy\n" +"- 256 for X1-010 and SCC\n" +"any other heights will be scaled during playback." +msgstr "" + +#: src/gui/waveEdit.cpp:578 +msgid "Shapes" +msgstr "" + +#: src/gui/waveEdit.cpp:597 src/gui/insEdit.cpp:5879 src/gui/insEdit.cpp:6922 +#: src/gui/insEdit.cpp:6948 src/gui/insEdit.cpp:7008 src/gui/insEdit.cpp:7048 +#: src/gui/insEdit.cpp:7150 src/gui/insEdit.cpp:7436 src/gui/insEdit.cpp:7472 +msgid "Duty" +msgstr "" + +#: src/gui/waveEdit.cpp:607 +msgid "Exponent" +msgstr "" + +#: src/gui/waveEdit.cpp:617 +msgid "XOR Point" +msgstr "" + +#: src/gui/waveEdit.cpp:627 +msgid "Amplitude/Phase" +msgstr "" + +#: src/gui/waveEdit.cpp:679 src/gui/waveEdit.cpp:723 src/gui/waveEdit.cpp:728 +msgid "Op" +msgstr "" + +#: src/gui/waveEdit.cpp:683 +msgid "Mult" +msgstr "" + +#: src/gui/waveEdit.cpp:685 +msgid "FB" +msgstr "" + +#: src/gui/waveEdit.cpp:749 src/gui/waveEdit.cpp:750 +msgid "Connection Diagram" +msgstr "" + +#: src/gui/waveEdit.cpp:765 +msgid "Out" +msgstr "" + +#: src/gui/waveEdit.cpp:872 +msgid "WaveTools" +msgstr "" + +#: src/gui/waveEdit.cpp:890 +msgid "Scale X" +msgstr "" + +#: src/gui/waveEdit.cpp:896 +msgid "wavetable longer than 256 samples!" +msgstr "" + +#: src/gui/waveEdit.cpp:960 +msgid "Scale Y" +msgstr "" + +#: src/gui/waveEdit.cpp:978 +msgid "Offset X" +msgstr "" + +#: src/gui/waveEdit.cpp:1000 +msgid "Offset Y" +msgstr "" + +#: src/gui/waveEdit.cpp:1017 +msgid "Smooth" +msgstr "" + +#: src/gui/waveEdit.cpp:1045 src/gui/sampleEdit.cpp:996 +msgid "Amplify" +msgstr "" + +#: src/gui/waveEdit.cpp:1063 src/gui/sampleEdit.cpp:1046 +msgid "Normalize" +msgstr "" + +#: src/gui/waveEdit.cpp:1105 src/gui/sampleEdit.cpp:1121 +msgid "Reverse" +msgstr "" + +#: src/gui/waveEdit.cpp:1117 +msgid "Half" +msgstr "" + +#: src/gui/waveEdit.cpp:1127 +msgid "Double" +msgstr "" + +#: src/gui/waveEdit.cpp:1137 +msgid "Convert Signed/Unsigned" +msgstr "" + +#: src/gui/waveEdit.cpp:1167 +msgid "Dec" +msgstr "" + +#: src/gui/waveEdit.cpp:1171 src/gui/csPlayer.cpp:247 +msgid "Hex" +msgstr "" + +#: src/gui/waveEdit.cpp:1179 +msgid "Signed/Unsigned" +msgstr "" + +#: src/gui/sampleEdit.cpp:65 +#, c-format +msgid "%s: maximum sample rate is %d" +msgstr "" + +#: src/gui/sampleEdit.cpp:72 +#, c-format +msgid "%s: minimum sample rate is %d" +msgstr "" + +#: src/gui/sampleEdit.cpp:79 +#, c-format +msgid "%s: sample rate must be %d" +msgstr "" + +#: src/gui/sampleEdit.cpp:99 src/gui/sampleEdit.cpp:100 +msgid "no sample selected" +msgstr "" + +#: src/gui/sampleEdit.cpp:229 +#, c-format +msgid "SNES: loop start must be a multiple of 16 (try with %d)" +msgstr "" + +#: src/gui/sampleEdit.cpp:235 +#, c-format +msgid "SNES: loop end must be a multiple of 16 (try with %d)" +msgstr "" + +#: src/gui/sampleEdit.cpp:240 +msgid "SNES: sample length will be padded to multiple of 16" +msgstr "" + +#: src/gui/sampleEdit.cpp:249 +msgid "QSound: loop cannot be longer than 32767 samples" +msgstr "" + +#: src/gui/sampleEdit.cpp:259 +msgid "NES: loop point ignored on DPCM (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:263 +msgid "NES: maximum DPCM sample length is 32648" +msgstr "" + +#: src/gui/sampleEdit.cpp:268 +msgid "X1-010: samples can't loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:271 +msgid "X1-010: maximum sample length is 131072" +msgstr "" + +#: src/gui/sampleEdit.cpp:276 +msgid "GA20: samples can't loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:287 +msgid "YM2608: loop point ignored on ADPCM (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:290 +msgid "YM2608: sample length will be padded to multiple of 512" +msgstr "" + +#: src/gui/sampleEdit.cpp:300 +msgid "YM2610: ADPCM-A samples can't loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:302 +msgid "YM2610: loop point ignored on ADPCM-B (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:305 +msgid "YM2610: sample length will be padded to multiple of 512" +msgstr "" + +#: src/gui/sampleEdit.cpp:309 +msgid "YM2610: maximum ADPCM-A sample length is 2097152" +msgstr "" + +#: src/gui/sampleEdit.cpp:318 +msgid "Y8950: loop point ignored on ADPCM (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:321 +msgid "Y8950: sample length will be padded to multiple of 512" +msgstr "" + +#: src/gui/sampleEdit.cpp:328 +msgid "Amiga: loop start must be a multiple of 2" +msgstr "" + +#: src/gui/sampleEdit.cpp:331 +msgid "Amiga: loop end must be a multiple of 2" +msgstr "" + +#: src/gui/sampleEdit.cpp:335 +msgid "Amiga: maximum sample length is 131070" +msgstr "" + +#: src/gui/sampleEdit.cpp:344 +msgid "SegaPCM: maximum sample length is 65280" +msgstr "" + +#: src/gui/sampleEdit.cpp:353 +msgid "K053260: loop point ignored (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:357 +msgid "K053260: maximum sample length is 65535" +msgstr "" + +#: src/gui/sampleEdit.cpp:362 +msgid "C140: maximum sample length is 65535" +msgstr "" + +#: src/gui/sampleEdit.cpp:371 +msgid "C219: loop start must be a multiple of 2" +msgstr "" + +#: src/gui/sampleEdit.cpp:374 +msgid "C219: loop end must be a multiple of 2" +msgstr "" + +#: src/gui/sampleEdit.cpp:378 +msgid "C219: maximum sample length is 131072" +msgstr "" + +#: src/gui/sampleEdit.cpp:386 +msgid "MSM6295: samples can't loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:389 +msgid "MSM6295: maximum bankswitched sample length is 129024" +msgstr "" + +#: src/gui/sampleEdit.cpp:395 +msgid "GBA DMA: loop start must be a multiple of 4" +msgstr "" + +#: src/gui/sampleEdit.cpp:398 +msgid "GBA DMA: loop length must be a multiple of 16" +msgstr "" + +#: src/gui/sampleEdit.cpp:402 +msgid "GBA DMA: sample length will be padded to multiple of 16" +msgstr "" + +#: src/gui/sampleEdit.cpp:411 +msgid "ES5506: backward loop mode isn't supported" +msgstr "" + +#: src/gui/sampleEdit.cpp:414 +msgid "" +"backward/ping-pong only supported in Generic PCM DAC\n" +"ping-pong also on ES5506" +msgstr "" + +#: src/gui/sampleEdit.cpp:444 +msgid "Info" +msgstr "" + +#: src/gui/sampleEdit.cpp:447 src/gui/sampleEdit.cpp:933 +msgid "Rate" +msgstr "" + +#: src/gui/sampleEdit.cpp:453 +msgid "Compat Rate" +msgstr "" + +#: src/gui/sampleEdit.cpp:457 +msgid "" +"used in DefleMask-compatible sample mode (17xx), in where samples are mapped " +"to an octave." +msgstr "" + +#: src/gui/sampleEdit.cpp:463 +#, c-format +msgid "Loop (length: %d)##Loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:463 src/gui/insEdit.cpp:544 src/gui/insEdit.cpp:554 +#: src/gui/insEdit.cpp:605 src/gui/insEdit.cpp:6017 +msgid "Loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:487 src/gui/sampleEdit.cpp:716 +#: src/gui/sampleEdit.cpp:752 +msgid "changing the loop in a BRR sample may result in glitches!" +msgstr "" + +#: src/gui/sampleEdit.cpp:529 +msgid "BRR emphasis" +msgstr "" + +#: src/gui/sampleEdit.cpp:538 +msgid "" +"this is a BRR sample.\n" +"enabling this option will muffle it (only affects non-SNES chips)." +msgstr "" + +#: src/gui/sampleEdit.cpp:540 +msgid "" +"enable this option to slightly boost high frequencies\n" +"to compensate for the SNES' Gaussian filter's muffle." +msgstr "" + +#: src/gui/sampleEdit.cpp:546 +msgid "8-bit dither" +msgstr "" + +#: src/gui/sampleEdit.cpp:554 +msgid "dither the sample when used on a chip that only supports 8-bit samples." +msgstr "" + +#: src/gui/sampleEdit.cpp:695 src/gui/gui.cpp:2975 +msgid "Start" +msgstr "" + +#: src/gui/sampleEdit.cpp:731 src/gui/gui.cpp:2983 +msgid "End" +msgstr "" + +#: src/gui/sampleEdit.cpp:841 +#, c-format +msgid "" +"%s\n" +"%d bytes free" +msgstr "" + +#: src/gui/sampleEdit.cpp:843 +#, c-format +msgid "" +"%s (%s)\n" +"%d bytes free" +msgstr "" + +#: src/gui/sampleEdit.cpp:847 +msgid "" +"\n" +"\n" +"not enough memory for this sample!" +msgstr "" + +#: src/gui/sampleEdit.cpp:871 +msgid "Edit mode: Select" +msgstr "" + +#: src/gui/sampleEdit.cpp:880 +msgid "Edit mode: Draw" +msgstr "" + +#: src/gui/sampleEdit.cpp:891 src/gui/sampleEdit.cpp:902 +msgid "Resize" +msgstr "" + +#: src/gui/sampleEdit.cpp:906 +msgid "couldn't resize! make sure your sample is 8 or 16-bit." +msgstr "" + +#: src/gui/sampleEdit.cpp:926 src/gui/sampleEdit.cpp:957 +msgid "Resample" +msgstr "" + +#: src/gui/sampleEdit.cpp:951 +msgid "Factor" +msgstr "" + +#: src/gui/sampleEdit.cpp:956 +msgid "Filter" +msgstr "" + +#: src/gui/sampleEdit.cpp:961 +msgid "couldn't resample! make sure your sample is 8 or 16-bit." +msgstr "" + +#: src/gui/sampleEdit.cpp:1010 src/gui/sampleEdit.cpp:1197 +#: src/gui/sampleEdit.cpp:1281 +msgid "Apply" +msgstr "" + +#: src/gui/sampleEdit.cpp:1053 +msgid "Fade in" +msgstr "" + +#: src/gui/sampleEdit.cpp:1060 +msgid "Fade out" +msgstr "" + +#: src/gui/sampleEdit.cpp:1065 +msgid "Insert silence" +msgstr "" + +#: src/gui/sampleEdit.cpp:1076 +msgid "Go" +msgstr "" + +#: src/gui/sampleEdit.cpp:1081 +msgid "couldn't insert! make sure your sample is 8 or 16-bit." +msgstr "" + +#: src/gui/sampleEdit.cpp:1098 +msgid "Apply silence" +msgstr "" + +#: src/gui/sampleEdit.cpp:1112 +msgid "Trim" +msgstr "" + +#: src/gui/sampleEdit.cpp:1135 +msgid "Signed/unsigned exchange" +msgstr "" + +#: src/gui/sampleEdit.cpp:1140 +msgid "Apply filter" +msgstr "" + +#: src/gui/sampleEdit.cpp:1151 +msgid "Cutoff:" +msgstr "" + +#: src/gui/sampleEdit.cpp:1161 src/gui/insEdit.cpp:5895 +#: src/gui/insEdit.cpp:5898 src/gui/insEdit.cpp:6953 src/gui/insEdit.cpp:7216 +#: src/gui/insEdit.cpp:7478 +msgid "Resonance" +msgstr "" + +#: src/gui/sampleEdit.cpp:1167 src/gui/insEdit.cpp:6897 +msgid "Power" +msgstr "" + +#: src/gui/sampleEdit.cpp:1181 +msgid "Low-pass" +msgstr "" + +#: src/gui/sampleEdit.cpp:1186 +msgid "Band-pass" +msgstr "" + +#: src/gui/sampleEdit.cpp:1191 +msgid "High-pass" +msgstr "" + +#: src/gui/sampleEdit.cpp:1262 +msgid "Crossfade loop points" +msgstr "" + +#: src/gui/sampleEdit.cpp:1271 +msgid "Number of samples" +msgstr "" + +#: src/gui/sampleEdit.cpp:1277 +msgid "Linear <-> Equal power" +msgstr "" + +#: src/gui/sampleEdit.cpp:1283 +msgid "Crossfade: length would go out of bounds. Aborted..." +msgstr "" + +#: src/gui/sampleEdit.cpp:1286 +msgid "Crossfade: length would overflow loopStart. Try a smaller random value." +msgstr "" + +#: src/gui/sampleEdit.cpp:1332 +msgid "Preview sample" +msgstr "" + +#: src/gui/sampleEdit.cpp:1346 +msgid "Create instrument from sample" +msgstr "" + +#: src/gui/sampleEdit.cpp:1747 +msgid "paste (replace)" +msgstr "" + +#: src/gui/sampleEdit.cpp:1750 +msgid "paste (mix)" +msgstr "" + +#: src/gui/sampleEdit.cpp:1754 src/gui/gui.cpp:2769 +msgid "select all" +msgstr "" + +#: src/gui/sampleEdit.cpp:1758 +msgid "set loop to selection" +msgstr "" + +#: src/gui/sampleEdit.cpp:1761 +msgid "create wavetable from selection" +msgstr "" + +#: src/gui/sampleEdit.cpp:1767 +msgid "Draw" +msgstr "" + +#: src/gui/sampleEdit.cpp:1767 +msgid "Select" +msgstr "" + +#: src/gui/sampleEdit.cpp:1769 +#, c-format +msgid "%d samples, %d bytes" +msgstr "" + +#: src/gui/sampleEdit.cpp:1784 +#, c-format +msgid " (%d-%d: %d samples)" +msgstr "" + +#: src/gui/sampleEdit.cpp:1976 +msgid "Non-8/16-bit samples cannot be edited without prior conversion." +msgstr "" + +#: src/gui/newSong.cpp:122 src/gui/newSong.cpp:123 +msgid "Choose a System!" +msgstr "" + +#: src/gui/newSong.cpp:179 +msgid "Categories" +msgstr "" + +#: src/gui/newSong.cpp:210 +msgid "no systems here yet!" +msgstr "" + +#: src/gui/newSong.cpp:212 +msgid "no results" +msgstr "" + +#: src/gui/newSong.cpp:228 +msgid "I'm feeling lucky" +msgstr "" + +#: src/gui/newSong.cpp:230 +msgid "no categories available! what in the world." +msgstr "" + +#: src/gui/newSong.cpp:265 +msgid "it appears you're extremely lucky today!" +msgstr "" + +#: src/gui/cursor.cpp:205 +#, c-format +msgid "finish selection: %d.%d,%d - %d.%d,%d" +msgstr "" + +#: src/gui/tutorial.cpp:487 +msgid "" +"Play demo songs?\n" +"- Down: Play current song\n" +"- Up: Play demo songs" +msgstr "" + +#: src/gui/tutorial.cpp:491 +msgid "" +"Welcome to Combat Vehicle!\n" +"\n" +"Controls:\n" +"X - Shoot Arrow Key - Move\n" +"Z - Special Esc - Quit" +msgstr "" + +#: src/gui/tutorial.cpp:496 +msgid "GAME OVER" +msgstr "" + +#: src/gui/tutorial.cpp:498 +msgid "High Score!" +msgstr "" + +#: src/gui/tutorial.cpp:658 +msgid "Welcome!" +msgstr "" + +#: src/gui/tutorial.cpp:661 +msgid "welcome to Furnace, the biggest open-source chiptune tracker!" +msgstr "" + +#: src/gui/tutorial.cpp:665 +msgid "here are some tips to get you started:" +msgstr "" + +#: src/gui/tutorial.cpp:668 +msgid "" +"- add an instrument by clicking on + in Instruments\n" +"- click on the pattern view to focus it\n" +"- channel columns have the following, in this order: note, instrument, " +"volume and effects\n" +"- hit space bar while on the pattern to toggle Edit Mode\n" +"- click on the pattern or use arrow keys to move the cursor\n" +"- values (instrument, volume, effects and effect values) are in hexadecimal\n" +"- hit enter to play/stop the song\n" +"- extend the song by adding more orders in the Orders window\n" +"- click on the Orders matrix to change the patterns of a channel (left click " +"increases; right click decreases)" +msgstr "" + +#: src/gui/tutorial.cpp:680 +msgid "" +"if you need help, you may:\n" +"- read the manual (a file called manual.pdf)\n" +"- ask for help in Discussions (https://github.com/tildearrow/furnace/" +"discussions), the Furnace Discord (https://discord.gg/EfrwT2wq7z) or Furnace " +"in Revolt (official: https://rvlt.gg/GRPS6tmc)" +msgstr "" + +#: src/gui/tutorial.cpp:687 +msgid "" +"if you find any issues, be sure to report them! the issue tracker is here: " +"https://github.com/tildearrow/furnace/issues" +msgstr "" + +#: src/gui/tutorial.cpp:1428 +#, c-format +msgid "STAGE %d" +msgstr "" + +#: src/gui/songInfo.cpp:32 +msgid "Song Info##Song Information" +msgstr "" + +#: src/gui/songInfo.cpp:50 +msgid "Author" +msgstr "" + +#: src/gui/songInfo.cpp:60 +msgid "Album" +msgstr "" + +#: src/gui/songInfo.cpp:79 +msgid "Auto" +msgstr "" + +#: src/gui/songInfo.cpp:100 +msgid "Tuning (A-4)" +msgstr "" + +#: src/gui/grooves.cpp:38 +msgid "use effect 09xx to select a groove pattern." +msgstr "" + +#: src/gui/grooves.cpp:48 src/gui/gui.cpp:4480 +msgid "pattern" +msgstr "" + +#: src/gui/grooves.cpp:132 +msgid "remove" +msgstr "" + +#: src/gui/doAction.cpp:45 src/gui/gui.cpp:4201 +msgid "Unsaved changes! Save changes before opening another file?" +msgstr "" + +#: src/gui/doAction.cpp:52 +msgid "Unsaved changes! Save changes before opening backup?" +msgstr "" + +#: src/gui/doAction.cpp:62 src/gui/gui.cpp:4237 src/gui/gui.cpp:5025 +#: src/gui/gui.cpp:5063 src/gui/gui.cpp:5069 src/gui/gui.cpp:5657 +#: src/gui/gui.cpp:5681 src/gui/gui.cpp:5705 src/gui/gui.cpp:5729 +#: src/gui/gui.cpp:5753 src/gui/gui.cpp:5777 +#, c-format +msgid "Error while saving file! (%s)" +msgstr "" + +#: src/gui/doAction.cpp:189 +msgid "Error while sending request (MIDI output not configured?)" +msgstr "" + +#: src/gui/doAction.cpp:197 +msgid "Select an option: (cannot be undone!)" +msgstr "" + +#: src/gui/doAction.cpp:691 src/gui/doAction.cpp:720 src/gui/doAction.cpp:1593 +#: src/gui/gui.cpp:6091 +msgid "too many instruments!" +msgstr "" + +#: src/gui/doAction.cpp:1124 +msgid "couldn't paste! make sure your sample is 8 or 16-bit." +msgstr "" + +#: src/gui/doAction.cpp:1628 +msgid "select at least one sample!" +msgstr "" + +#: src/gui/doAction.cpp:1630 +msgid "maximum size is 256 samples!" +msgstr "" + +#: src/gui/csPlayer.cpp:113 +msgid "Load" +msgstr "" + +#: src/gui/csPlayer.cpp:117 +msgid "Kill" +msgstr "" + +#: src/gui/csPlayer.cpp:119 +msgid "Kikai wa mou shindeiru!" +msgstr "The machine is already dead!" + +#: src/gui/csPlayer.cpp:123 +msgid "Burn Current Song" +msgstr "" + +#: src/gui/csPlayer.cpp:141 +msgid "Status" +msgstr "" + +#: src/gui/csPlayer.cpp:148 +msgid "start" +msgstr "" + +#: src/gui/csPlayer.cpp:150 +msgid "PC" +msgstr "" + +#: src/gui/csPlayer.cpp:152 +msgid "wait" +msgstr "" + +#: src/gui/csPlayer.cpp:154 +msgid "SP" +msgstr "" + +#: src/gui/csPlayer.cpp:156 src/gui/insEdit.cpp:2733 +msgid "note" +msgstr "" + +#: src/gui/csPlayer.cpp:158 src/gui/insEdit.cpp:2728 +msgid "pitch" +msgstr "" + +#: src/gui/csPlayer.cpp:160 +msgid "vol" +msgstr "" + +#: src/gui/csPlayer.cpp:162 +msgid "vols" +msgstr "" + +#: src/gui/csPlayer.cpp:164 +msgid "vib" +msgstr "" + +#: src/gui/csPlayer.cpp:166 +msgid "porta" +msgstr "" + +#: src/gui/csPlayer.cpp:168 +msgid "arp" +msgstr "" + +#: src/gui/csPlayer.cpp:203 +msgid "Trace" +msgstr "" + +#: src/gui/csPlayer.cpp:244 +msgid "Disassemble" +msgstr "" + +#: src/gui/gui.cpp:1136 src/gui/gui.cpp:1140 +msgid "the song is over!" +msgstr "" + +#: src/gui/gui.cpp:1667 +msgid "Open File" +msgstr "" + +#: src/gui/gui.cpp:1668 src/gui/gui.cpp:1798 src/gui/gui.cpp:1838 +#: src/gui/gui.cpp:1953 src/gui/gui.cpp:1962 src/gui/gui.cpp:1971 +#: src/gui/gui.cpp:2073 src/gui/gui.cpp:2093 src/gui/gui.cpp:2111 +msgid "compatible files" +msgstr "" + +#: src/gui/gui.cpp:1669 src/gui/gui.cpp:1743 src/gui/gui.cpp:1799 +#: src/gui/gui.cpp:1839 src/gui/gui.cpp:1851 src/gui/gui.cpp:1870 +#: src/gui/gui.cpp:2074 src/gui/gui.cpp:2084 src/gui/gui.cpp:2095 +#: src/gui/gui.cpp:2113 +msgid "all files" +msgstr "" + +#: src/gui/gui.cpp:1676 +msgid "no backups made yet!" +msgstr "" + +#: src/gui/gui.cpp:1681 src/gui/gui.cpp:1690 src/gui/gui.cpp:2130 +msgid "Furnace song" +msgstr "" + +#: src/gui/gui.cpp:1689 +msgid "Save File" +msgstr "" + +#: src/gui/gui.cpp:1698 src/gui/gui.cpp:1708 +msgid "Export DMF" +msgstr "" + +#: src/gui/gui.cpp:1699 +msgid "DefleMask 1.1.3 module" +msgstr "" + +#: src/gui/gui.cpp:1709 +msgid "DefleMask 1.0/legacy module" +msgstr "" + +#: src/gui/gui.cpp:1726 +msgid "Load Instrument" +msgstr "" + +#: src/gui/gui.cpp:1727 +msgid "all compatible files" +msgstr "" + +#: src/gui/gui.cpp:1728 src/gui/gui.cpp:1777 +msgid "Furnace instrument" +msgstr "" + +#: src/gui/gui.cpp:1729 src/gui/gui.cpp:1787 +msgid "DefleMask preset" +msgstr "" + +#: src/gui/gui.cpp:1730 +msgid "TFM Music Maker instrument" +msgstr "" + +#: src/gui/gui.cpp:1731 +msgid "VGM Music Maker instrument" +msgstr "" + +#: src/gui/gui.cpp:1732 +msgid "Scream Tracker 3 instrument" +msgstr "" + +#: src/gui/gui.cpp:1733 +msgid "SoundBlaster instrument" +msgstr "" + +#: src/gui/gui.cpp:1734 +msgid "Wohlstand OPL instrument" +msgstr "" + +#: src/gui/gui.cpp:1735 +msgid "Wohlstand OPN instrument" +msgstr "" + +#: src/gui/gui.cpp:1736 +msgid "Gens KMod patch dump" +msgstr "" + +#: src/gui/gui.cpp:1737 +msgid "BNK file (AdLib)" +msgstr "" + +#: src/gui/gui.cpp:1738 +msgid "FF preset bank" +msgstr "" + +#: src/gui/gui.cpp:1739 +msgid "2612edit GYB preset bank" +msgstr "" + +#: src/gui/gui.cpp:1740 +msgid "VOPM preset bank" +msgstr "" + +#: src/gui/gui.cpp:1741 +msgid "Wohlstand WOPL bank" +msgstr "" + +#: src/gui/gui.cpp:1742 +msgid "Wohlstand WOPN bank" +msgstr "" + +#: src/gui/gui.cpp:1776 src/gui/gui.cpp:1786 +msgid "Save Instrument" +msgstr "" + +#: src/gui/gui.cpp:1797 +msgid "Load Wavetable" +msgstr "" + +#: src/gui/gui.cpp:1809 src/gui/gui.cpp:1818 src/gui/gui.cpp:1827 +msgid "Save Wavetable" +msgstr "" + +#: src/gui/gui.cpp:1810 +msgid "Furnace wavetable" +msgstr "" + +#: src/gui/gui.cpp:1819 +msgid "DefleMask wavetable" +msgstr "" + +#: src/gui/gui.cpp:1828 +msgid "raw data" +msgstr "" + +#: src/gui/gui.cpp:1837 +msgid "Load Sample" +msgstr "" + +#: src/gui/gui.cpp:1850 +msgid "Load Raw Sample" +msgstr "" + +#: src/gui/gui.cpp:1859 +msgid "Save Sample" +msgstr "" + +#: src/gui/gui.cpp:1860 src/gui/gui.cpp:1880 src/gui/gui.cpp:1890 +#: src/gui/gui.cpp:1900 +msgid "Wave file" +msgstr "" + +#: src/gui/gui.cpp:1869 +msgid "Save Raw Sample" +msgstr "" + +#: src/gui/gui.cpp:1879 src/gui/gui.cpp:1889 src/gui/gui.cpp:1899 +msgid "Export Audio" +msgstr "" + +#: src/gui/gui.cpp:1909 +msgid "Export VGM" +msgstr "" + +#: src/gui/gui.cpp:1910 +msgid "VGM file" +msgstr "" + +#: src/gui/gui.cpp:1919 +msgid "Export ZSM" +msgstr "" + +#: src/gui/gui.cpp:1920 +msgid "ZSM file" +msgstr "" + +#: src/gui/gui.cpp:1929 src/gui/gui.cpp:1939 +msgid "Export Command Stream" +msgstr "" + +#: src/gui/gui.cpp:1930 +msgid "text file" +msgstr "" + +#: src/gui/gui.cpp:1940 +msgid "binary file" +msgstr "" + +#: src/gui/gui.cpp:1947 src/gui/gui.cpp:5376 +msgid "Coming soon!" +msgstr "" + +#: src/gui/gui.cpp:1952 src/gui/gui.cpp:1961 src/gui/gui.cpp:1970 +msgid "Select Font" +msgstr "" + +#: src/gui/gui.cpp:1979 +msgid "Select Color File" +msgstr "" + +#: src/gui/gui.cpp:1980 src/gui/gui.cpp:1989 src/gui/gui.cpp:2008 +#: src/gui/gui.cpp:2017 src/gui/gui.cpp:2026 src/gui/gui.cpp:2035 +#: src/gui/gui.cpp:2053 src/gui/gui.cpp:2062 +msgid "configuration files" +msgstr "" + +#: src/gui/gui.cpp:1988 +msgid "Select Keybind File" +msgstr "" + +#: src/gui/gui.cpp:1997 +msgid "Select Layout File" +msgstr "" + +#: src/gui/gui.cpp:1998 src/gui/gui.cpp:2044 +msgid ".ini files" +msgstr "" + +#: src/gui/gui.cpp:2007 +msgid "Select User Presets File" +msgstr "" + +#: src/gui/gui.cpp:2016 +msgid "Select Settings File" +msgstr "" + +#: src/gui/gui.cpp:2025 +msgid "Export Colors" +msgstr "" + +#: src/gui/gui.cpp:2034 +msgid "Export Keybinds" +msgstr "" + +#: src/gui/gui.cpp:2043 +msgid "Export Layout" +msgstr "" + +#: src/gui/gui.cpp:2052 +msgid "Export User Presets" +msgstr "" + +#: src/gui/gui.cpp:2061 +msgid "Export Settings" +msgstr "" + +#: src/gui/gui.cpp:2072 +msgid "Load ROM" +msgstr "" + +#: src/gui/gui.cpp:2082 +msgid "Play Command Stream" +msgstr "" + +#: src/gui/gui.cpp:2083 +msgid "command stream" +msgstr "" + +#: src/gui/gui.cpp:2092 +msgid "Open Test" +msgstr "" + +#: src/gui/gui.cpp:2094 src/gui/gui.cpp:2112 +msgid "another option" +msgstr "" + +#: src/gui/gui.cpp:2110 +msgid "Open Test (Multi)" +msgstr "" + +#: src/gui/gui.cpp:2129 +msgid "Save Test" +msgstr "" + +#: src/gui/gui.cpp:2131 +msgid "DefleMask module" +msgstr "" + +#: src/gui/gui.cpp:2171 +msgid "compression error" +msgstr "" + +#: src/gui/gui.cpp:2183 +msgid "zlib stream error" +msgstr "" + +#: src/gui/gui.cpp:2205 +msgid "zlib finish stream error" +msgstr "" + +#: src/gui/gui.cpp:2316 +msgid "everything OK" +msgstr "" + +#: src/gui/gui.cpp:2334 +msgid "" +"you have loaded a backup!\n" +"if you need to, please save it somewhere.\n" +"\n" +"DO NOT RELY ON THE BACKUP SYSTEM FOR AUTO-SAVE!\n" +"Furnace will not save backups of backups." +msgstr "" + +#: src/gui/gui.cpp:2342 src/gui/gui.cpp:3743 src/gui/gui.cpp:4213 +msgid "Unsaved changes! Save changes before opening file?" +msgstr "" + +#: src/gui/gui.cpp:2736 +msgid "paste special..." +msgstr "" + +#: src/gui/gui.cpp:2737 +msgid "paste mix" +msgstr "" + +#: src/gui/gui.cpp:2738 +msgid "paste mix (background)" +msgstr "" + +#: src/gui/gui.cpp:2739 +msgid "paste with ins (foreground)" +msgstr "" + +#: src/gui/gui.cpp:2741 src/gui/gui.cpp:2753 src/gui/gui.cpp:2963 +msgid "no instruments available" +msgstr "" + +#: src/gui/gui.cpp:2751 +msgid "paste with ins (background)" +msgstr "" + +#: src/gui/gui.cpp:2763 +msgid "paste flood" +msgstr "" + +#: src/gui/gui.cpp:2764 +msgid "paste overflow" +msgstr "" + +#: src/gui/gui.cpp:2773 +msgid "operation mask..." +msgstr "" + +#: src/gui/gui.cpp:2780 +msgid "pull delete" +msgstr "" + +#: src/gui/gui.cpp:2784 +msgid "insert" +msgstr "" + +#: src/gui/gui.cpp:2792 +msgid "transpose (note)" +msgstr "" + +#: src/gui/gui.cpp:2796 +msgid "transpose (value)" +msgstr "" + +#: src/gui/gui.cpp:2808 src/gui/gui.cpp:3052 +msgid "invert values" +msgstr "" + +#: src/gui/gui.cpp:2824 +msgid "collapse/expand" +msgstr "" + +#: src/gui/gui.cpp:2829 +msgid "input latch" +msgstr "" + +#: src/gui/gui.cpp:2856 +msgid "" +"&&: selected instrument\n" +"..: no instrument" +msgstr "" + +#: src/gui/gui.cpp:2910 +msgid "Set" +msgstr "" + +#: src/gui/gui.cpp:2930 +msgid "note up" +msgstr "" + +#: src/gui/gui.cpp:2931 +msgid "note down" +msgstr "" + +#: src/gui/gui.cpp:2932 +msgid "octave up" +msgstr "" + +#: src/gui/gui.cpp:2933 +msgid "octave down" +msgstr "" + +#: src/gui/gui.cpp:2935 +msgid "values up" +msgstr "" + +#: src/gui/gui.cpp:2936 +msgid "values down" +msgstr "" + +#: src/gui/gui.cpp:2937 +msgid "values up (+16)" +msgstr "" + +#: src/gui/gui.cpp:2938 +msgid "values down (-16)" +msgstr "" + +#: src/gui/gui.cpp:2941 +msgid "transpose" +msgstr "" + +#: src/gui/gui.cpp:2949 +msgid "Notes" +msgstr "" + +#: src/gui/gui.cpp:2954 +msgid "Values" +msgstr "" + +#: src/gui/gui.cpp:2961 +msgid "change instrument..." +msgstr "" + +#: src/gui/gui.cpp:2974 +msgid "gradient/fade..." +msgstr "" + +#: src/gui/gui.cpp:2991 src/gui/gui.cpp:3036 +msgid "Nibble mode" +msgstr "" + +#: src/gui/gui.cpp:3000 +msgid "Go ahead" +msgstr "" + +#: src/gui/gui.cpp:3006 src/gui/insEdit.cpp:7604 +msgid "scale..." +msgstr "" + +#: src/gui/gui.cpp:3011 +msgid "Scale" +msgstr "" + +#: src/gui/gui.cpp:3017 src/gui/insEdit.cpp:7632 +msgid "randomize..." +msgstr "" + +#: src/gui/gui.cpp:3018 +msgid "Minimum" +msgstr "" + +#: src/gui/gui.cpp:3027 +msgid "Maximum" +msgstr "" + +#: src/gui/gui.cpp:3056 +msgid "flip selection" +msgstr "" + +#: src/gui/gui.cpp:3059 +msgid "collapse/expand amount##CollapseAmount" +msgstr "" + +#: src/gui/gui.cpp:3068 +msgid "collapse pattern" +msgstr "" + +#: src/gui/gui.cpp:3069 +msgid "expand pattern" +msgstr "" + +#: src/gui/gui.cpp:3074 +msgid "collapse song" +msgstr "" + +#: src/gui/gui.cpp:3075 +msgid "expand song" +msgstr "" + +#: src/gui/gui.cpp:3080 +msgid "find/replace" +msgstr "" + +#: src/gui/gui.cpp:3094 src/gui/gui.cpp:5807 src/gui/gui.cpp:7362 +#, c-format +msgid "could NOT save layout! %s" +msgstr "" + +#: src/gui/gui.cpp:3106 +#, c-format +msgid "could NOT load layout! %s" +msgstr "" + +#: src/gui/gui.cpp:3568 +msgid "" +"Furnace has been started in Safe Mode.\n" +"this means that:\n" +"\n" +"- software rendering is being used\n" +"- audio output may not work\n" +"- font loading is disabled\n" +"\n" +"check any settings which may have made Furnace start up in this mode.\n" +"font loading is one of these." +msgstr "" + +#: src/gui/gui.cpp:4053 +msgid "can't keep going without graphics! Furnace will quit now." +msgstr "" + +#: src/gui/gui.cpp:4191 +msgid "file" +msgstr "" + +#: src/gui/gui.cpp:4192 +msgid "new..." +msgstr "" + +#: src/gui/gui.cpp:4199 +msgid "open..." +msgstr "" + +#: src/gui/gui.cpp:4206 +msgid "open recent" +msgstr "" + +#: src/gui/gui.cpp:4222 +msgid "nothing here yet" +msgstr "" + +#: src/gui/gui.cpp:4225 +msgid "clear history" +msgstr "" + +#: src/gui/gui.cpp:4226 +msgid "Are you sure you want to clear the recent file list?" +msgstr "" + +#: src/gui/gui.cpp:4241 +msgid "save as..." +msgstr "" + +#: src/gui/gui.cpp:4246 src/gui/gui.cpp:4287 +msgid "export audio..." +msgstr "" + +#: src/gui/gui.cpp:4250 src/gui/gui.cpp:4291 +msgid "export VGM..." +msgstr "" + +#: src/gui/gui.cpp:4259 src/gui/gui.cpp:4300 +msgid "export ZSM..." +msgstr "" + +#: src/gui/gui.cpp:4269 src/gui/gui.cpp:4310 +msgid "export Amiga validation data..." +msgstr "" + +#: src/gui/gui.cpp:4274 src/gui/gui.cpp:4315 +msgid "export text..." +msgstr "" + +#: src/gui/gui.cpp:4278 src/gui/gui.cpp:4319 +msgid "export command stream..." +msgstr "" + +#: src/gui/gui.cpp:4282 src/gui/gui.cpp:4323 +msgid "export .dmf..." +msgstr "" + +#: src/gui/gui.cpp:4328 +msgid "export..." +msgstr "" + +#: src/gui/gui.cpp:4334 +msgid "manage chips" +msgstr "" + +#: src/gui/gui.cpp:4338 +msgid "add chip..." +msgstr "" + +#: src/gui/gui.cpp:4343 src/gui/sysManager.cpp:138 +#, c-format +msgid "cannot add chip! (%s)" +msgstr "" + +#: src/gui/gui.cpp:4355 +msgid "configure chip..." +msgstr "" + +#: src/gui/gui.cpp:4365 +msgid "change chip..." +msgstr "" + +#: src/gui/gui.cpp:4367 src/gui/gui.cpp:4390 +msgid "Preserve channel positions" +msgstr "" + +#: src/gui/gui.cpp:4379 src/gui/sysManager.cpp:109 +#, c-format +msgid "cannot change chip! (%s)" +msgstr "" + +#: src/gui/gui.cpp:4388 +msgid "remove chip..." +msgstr "" + +#: src/gui/gui.cpp:4394 +#, c-format +msgid "cannot remove chip! (%s)" +msgstr "" + +#: src/gui/gui.cpp:4408 +msgid "open built-in assets directory" +msgstr "" + +#: src/gui/gui.cpp:4414 +msgid "restore backup" +msgstr "" + +#: src/gui/gui.cpp:4418 +msgid "exit..." +msgstr "" + +#: src/gui/gui.cpp:4426 +msgid "edit" +msgstr "" + +#: src/gui/gui.cpp:4434 +msgid "clear..." +msgstr "" + +#: src/gui/gui.cpp:4439 +msgid "settings" +msgstr "" + +#: src/gui/gui.cpp:4441 +msgid "full screen" +msgstr "" + +#: src/gui/gui.cpp:4445 +msgid "lock layout" +msgstr "" + +#: src/gui/gui.cpp:4448 +msgid "pattern visualizer" +msgstr "" + +#: src/gui/gui.cpp:4454 +msgid "reset layout" +msgstr "" + +#: src/gui/gui.cpp:4458 +msgid "switch to mobile view" +msgstr "" + +#: src/gui/gui.cpp:4462 +msgid "user systems..." +msgstr "" + +#: src/gui/gui.cpp:4465 +msgid "settings..." +msgstr "" + +#: src/gui/gui.cpp:4471 +msgid "Window" +msgstr "" + +#: src/gui/gui.cpp:4471 +msgid "window" +msgstr "" + +#: src/gui/gui.cpp:4472 +msgid "song" +msgstr "" + +#: src/gui/gui.cpp:4473 +msgid "song comments" +msgstr "" + +#: src/gui/gui.cpp:4474 +msgid "song information" +msgstr "" + +#: src/gui/gui.cpp:4475 +msgid "subsongs" +msgstr "" + +#: src/gui/gui.cpp:4477 +msgid "channels" +msgstr "" + +#: src/gui/gui.cpp:4478 +msgid "chip manager" +msgstr "" + +#: src/gui/gui.cpp:4479 +msgid "orders" +msgstr "" + +#: src/gui/gui.cpp:4481 +msgid "pattern manager" +msgstr "" + +#: src/gui/gui.cpp:4482 +msgid "mixer" +msgstr "" + +#: src/gui/gui.cpp:4483 +msgid "compatibility flags" +msgstr "" + +#: src/gui/gui.cpp:4486 src/gui/gui.cpp:4488 +msgid "assets" +msgstr "" + +#: src/gui/gui.cpp:4490 +msgid "instruments" +msgstr "" + +#: src/gui/gui.cpp:4491 +msgid "samples" +msgstr "" + +#: src/gui/gui.cpp:4492 +msgid "wavetables" +msgstr "" + +#: src/gui/gui.cpp:4495 +msgid "instrument editor" +msgstr "" + +#: src/gui/gui.cpp:4496 +msgid "sample editor" +msgstr "" + +#: src/gui/gui.cpp:4497 +msgid "wavetable editor" +msgstr "" + +#: src/gui/gui.cpp:4500 +msgid "visualizers" +msgstr "" + +#: src/gui/gui.cpp:4501 +msgid "oscilloscope (master)" +msgstr "" + +#: src/gui/gui.cpp:4502 +msgid "oscilloscope (per-channel)" +msgstr "" + +#: src/gui/gui.cpp:4503 +msgid "oscilloscope (X-Y)" +msgstr "" + +#: src/gui/gui.cpp:4504 +msgid "volume meter" +msgstr "" + +#: src/gui/gui.cpp:4507 +msgid "tempo" +msgstr "" + +#: src/gui/gui.cpp:4508 +msgid "clock" +msgstr "" + +#: src/gui/gui.cpp:4509 +msgid "grooves" +msgstr "" + +#: src/gui/gui.cpp:4510 +msgid "speed" +msgstr "" + +#: src/gui/gui.cpp:4514 +msgid "log viewer" +msgstr "" + +#: src/gui/gui.cpp:4515 +msgid "register view" +msgstr "" + +#: src/gui/gui.cpp:4516 +msgid "statistics" +msgstr "" + +#: src/gui/gui.cpp:4517 +msgid "memory composition" +msgstr "" + +#: src/gui/gui.cpp:4521 src/gui/gui.cpp:4529 +msgid "effect list" +msgstr "" + +#: src/gui/gui.cpp:4522 +msgid "play/edit controls" +msgstr "" + +#: src/gui/gui.cpp:4523 +msgid "piano/input pad" +msgstr "" + +#: src/gui/gui.cpp:4524 +msgid "spoiler" +msgstr "" + +#: src/gui/gui.cpp:4528 +msgid "Help" +msgstr "" + +#: src/gui/gui.cpp:4528 +msgid "help" +msgstr "" + +#: src/gui/gui.cpp:4530 +msgid "debug menu" +msgstr "" + +#: src/gui/gui.cpp:4531 +msgid "inspector" +msgstr "" + +#: src/gui/gui.cpp:4532 +msgid "panic" +msgstr "" + +#: src/gui/gui.cpp:4533 +msgid "about..." +msgstr "" + +#: src/gui/gui.cpp:4548 +#, c-format +msgid "| Speed %d:%d" +msgstr "" + +#: src/gui/gui.cpp:4550 +#, c-format +msgid "| Speed %d" +msgstr "" + +#: src/gui/gui.cpp:4552 +msgid "| Groove" +msgstr "" + +#: src/gui/gui.cpp:4555 +#, c-format +msgid " @ %gHz (%g BPM) " +msgstr "" + +#: src/gui/gui.cpp:4558 +#, c-format +msgid "| Order %.2X/%.2X " +msgstr "" + +#: src/gui/gui.cpp:4560 +#, c-format +msgid "| Order %d/%d " +msgstr "" + +#: src/gui/gui.cpp:4564 +#, c-format +msgid "| Row %.2X/%.2X " +msgstr "" + +#: src/gui/gui.cpp:4566 +#, c-format +msgid "| Row %d/%d " +msgstr "" + +#: src/gui/gui.cpp:4569 +msgid "| " +msgstr "" + +#: src/gui/gui.cpp:4572 +msgid "Don't you have anything better to do?" +msgstr "" + +#: src/gui/gui.cpp:4582 +#, c-format +msgid "%d year " +msgid_plural "%d years " +msgstr[0] "" + +#: src/gui/gui.cpp:4583 +#, c-format +msgid "%d month " +msgid_plural "%d months " +msgstr[0] "" + +#: src/gui/gui.cpp:4584 +#, c-format +msgid "%d day " +msgid_plural "%d days " +msgstr[0] "" + +#: src/gui/gui.cpp:4609 +msgid "Note off (cut)" +msgstr "" + +#: src/gui/gui.cpp:4611 +msgid "Note off (release)" +msgstr "" + +#: src/gui/gui.cpp:4613 +msgid "Macro release only" +msgstr "" + +#: src/gui/gui.cpp:4615 +#, c-format +msgid "Note on: %s" +msgstr "" + +#: src/gui/gui.cpp:4623 +#, c-format +msgid "Ins %d: " +msgstr "" + +#: src/gui/gui.cpp:4626 +#, c-format +msgid "Ins %d: %s" +msgstr "" + +#: src/gui/gui.cpp:4635 +#, c-format +msgid "Set volume: %d (%.2X, INVALID!)" +msgstr "" + +#: src/gui/gui.cpp:4638 +#, c-format +msgid "Set volume: %d (%.2X, %d%%)" +msgstr "" + +#: src/gui/gui.cpp:4660 +msgid "| modified" +msgstr "" + +#: src/gui/gui.cpp:4825 src/gui/gui.cpp:4828 +msgid "System File Dialog Pending" +msgstr "" + +#: src/gui/gui.cpp:4941 +msgid "" +"there was an error in the file dialog! you may want to report this issue " +"to:\n" +"https://github.com/tildearrow/furnace/issues\n" +"check the Log Viewer (window > log viewer) for more information.\n" +"\n" +"for now please disable the system file picker in Settings > General." +msgstr "" + +#: src/gui/gui.cpp:4944 +msgid "can't do anything without Storage permissions!" +msgstr "" + +#: src/gui/gui.cpp:4946 +msgid "" +"Zenity/KDialog not available!\n" +"please install one of these, or disable the system file picker in Settings > " +"General." +msgstr "" + +#: src/gui/gui.cpp:5082 +msgid "" +"error while saving instrument! only the following instrument types are " +"supported:\n" +"- FM (OPN)\n" +"- SN76489/Sega PSG\n" +"- Game Boy\n" +"- PC Engine\n" +"- NES\n" +"- C64\n" +"- FM (OPLL)\n" +"- FDS" +msgstr "" + +#: src/gui/gui.cpp:5110 +msgid "there were some errors while loading samples:\n" +msgstr "" + +#: src/gui/gui.cpp:5155 src/gui/gui.cpp:6339 +msgid "...but you haven't selected a sample!" +msgstr "" + +#: src/gui/gui.cpp:5170 src/gui/gui.cpp:5179 +msgid "could not save sample! open Log Viewer for more information." +msgstr "" + +#: src/gui/gui.cpp:5198 +msgid "there were some warnings/errors while loading instruments:\n" +msgstr "" + +#: src/gui/gui.cpp:5204 +#, c-format +msgid "> %s: cannot load instrument! (%s)\n" +msgstr "" + +#: src/gui/gui.cpp:5222 src/gui/gui.cpp:5276 +#, c-format +msgid "cannot load instrument! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5228 +msgid "" +"congratulations! you managed to load nothing.\n" +"you are entitled to a bug report." +msgstr "" + +#: src/gui/gui.cpp:5269 src/gui/gui.cpp:6243 +msgid "...but you haven't selected an instrument!" +msgstr "" + +#: src/gui/gui.cpp:5281 +msgid "there were some errors while loading wavetables:\n" +msgstr "" + +#: src/gui/gui.cpp:5290 src/gui/gui.cpp:5300 src/gui/gui.cpp:5319 +#, c-format +msgid "cannot load wavetable! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5327 +msgid "...but you haven't selected a wavetable!" +msgstr "" + +#: src/gui/gui.cpp:5342 src/gui/gui.cpp:5363 src/gui/gui.cpp:5387 +#: src/gui/gui.cpp:5408 +msgid "could not open file!" +msgstr "" + +#: src/gui/gui.cpp:5350 +#, c-format +msgid "could not write VGM! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5371 +#, c-format +msgid "Could not write ZSM! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5395 +#, c-format +msgid "could not write text! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5416 +#, c-format +msgid "could not write command stream! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5440 +msgid "could not import user presets!" +msgstr "" + +#: src/gui/gui.cpp:5445 src/gui/gui.cpp:5462 +#, c-format +msgid "could not import user presets! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5483 +#, c-format +msgid "You opened: %s" +msgstr "" + +#: src/gui/gui.cpp:5486 +msgid "You opened:" +msgstr "" + +#: src/gui/gui.cpp:5494 +#, c-format +msgid "You saved: %s" +msgstr "" + +#: src/gui/gui.cpp:5515 src/gui/gui.cpp:5636 src/gui/gui.cpp:5637 +#: src/gui/insEdit.cpp:7520 +msgid "Error" +msgstr "" + +#: src/gui/gui.cpp:5520 src/gui/gui.cpp:6177 src/gui/gui.cpp:6178 +msgid "Select Instrument" +msgstr "" + +#: src/gui/gui.cpp:5525 src/gui/gui.cpp:6256 src/gui/gui.cpp:6257 +msgid "Import Raw Sample" +msgstr "" + +#: src/gui/gui.cpp:5540 src/gui/gui.cpp:5593 src/gui/gui.cpp:5594 +msgid "Rendering..." +msgstr "" + +#: src/gui/gui.cpp:5595 +msgid "Please wait..." +msgstr "" + +#: src/gui/gui.cpp:5596 +msgid "Abort" +msgstr "" + +#: src/gui/gui.cpp:5638 +#, c-format +msgid "%s" +msgstr "" + +#: src/gui/gui.cpp:5868 +msgid "Erasing" +msgstr "" + +#: src/gui/gui.cpp:5871 +msgid "All subsongs" +msgstr "" + +#: src/gui/gui.cpp:5878 +msgid "Current subsong" +msgstr "" + +#: src/gui/gui.cpp:5945 +msgid "Optimization" +msgstr "" + +#: src/gui/gui.cpp:5948 src/gui/patManager.cpp:36 +msgid "De-duplicate patterns" +msgstr "" + +#: src/gui/gui.cpp:5957 +msgid "Remove unused instruments" +msgstr "" + +#: src/gui/gui.cpp:5970 +msgid "Remove unused samples" +msgstr "" + +#: src/gui/gui.cpp:5987 +msgid "Never mind! Cancel" +msgstr "" + +#: src/gui/gui.cpp:6066 +msgid "Drum kit mode:" +msgstr "" + +#: src/gui/gui.cpp:6070 +msgid "12 samples per octave" +msgstr "" + +#: src/gui/gui.cpp:6075 +msgid "Starting octave" +msgstr "" + +#: src/gui/gui.cpp:6095 +msgid "Drum Kit" +msgstr "" + +#: src/gui/gui.cpp:6181 +msgid "this is an instrument bank! select which one to use:" +msgstr "" + +#: src/gui/gui.cpp:6184 +msgid "this is an instrument bank! select which ones to load:" +msgstr "" + +#: src/gui/gui.cpp:6258 +msgid "Data type:" +msgstr "" + +#: src/gui/gui.cpp:6285 +msgid "(will be mixed down to mono)" +msgstr "" + +#: src/gui/gui.cpp:6286 +msgid "Unsigned" +msgstr "" + +#: src/gui/gui.cpp:6290 +msgid "Big endian" +msgstr "" + +#: src/gui/gui.cpp:6298 +msgid "Swap nibbles" +msgstr "" + +#: src/gui/gui.cpp:6302 +msgid "Swap words" +msgstr "" + +#: src/gui/gui.cpp:6306 +msgid "Encoding:" +msgstr "" + +#: src/gui/gui.cpp:6319 +msgid "Reverse bit order" +msgstr "" + +#: src/gui/gui.cpp:6361 +msgid "Error! No string provided!" +msgstr "" + +#: src/gui/gui.cpp:6683 +msgid "it appears I couldn't load these fonts. any setting you can check?" +msgstr "" + +#: src/gui/gui.cpp:6863 src/gui/gui.cpp:6971 +msgid "" +"could not init renderer!\n" +"falling back to software renderer. please restart Furnace." +msgstr "" + +#: src/gui/gui.cpp:6865 src/gui/gui.cpp:6973 +#, c-format +msgid "" +"could not init renderer! %s\n" +"falling back to software renderer. please restart Furnace." +msgstr "" + +#: src/gui/gui.cpp:6870 src/gui/gui.cpp:6978 +msgid "could not init renderer!" +msgstr "" + +#: src/gui/gui.cpp:6881 +#, c-format +msgid "could not open window! %s" +msgstr "" + +#: src/gui/gui.cpp:6886 +msgid "" +"\n" +"falling back to software renderer. please restart Furnace." +msgstr "" + +#: src/gui/gui.cpp:7034 +msgid "Size column to fit###SizeOne" +msgstr "" + +#: src/gui/gui.cpp:7036 +msgid "Size all columns to fit###SizeAll" +msgstr "" + +#: src/gui/gui.cpp:7038 +msgid "Size all columns to default###SizeAll" +msgstr "" + +#: src/gui/gui.cpp:7040 +msgid "Reset order###ResetOrder" +msgstr "" + +#: src/gui/gui.cpp:7042 +msgid "(Main menu bar)" +msgstr "" + +#: src/gui/gui.cpp:7044 +msgid "(Popup)" +msgstr "" + +#: src/gui/gui.cpp:7046 +msgid "(Untitled)" +msgstr "" + +#: src/gui/gui.cpp:7048 +msgid "Hide tab bar###HideTabBar" +msgstr "" + +#: src/gui/gui.cpp:7052 +msgid "LocaleSettings: ccjk" +msgstr "LocaleSettings: ccjK" + +#: src/gui/gui.cpp:7564 +msgid "Unsaved changes! Save changes before quitting?" +msgstr "" + +#: src/gui/sysManager.cpp:42 +msgid "Preserve channel order" +msgstr "" + +#: src/gui/sysManager.cpp:44 +msgid "Clone channel data" +msgstr "" + +#: src/gui/sysManager.cpp:46 +msgid "Clone at end" +msgstr "" + +#: src/gui/sysManager.cpp:56 +msgid "Actions" +msgstr "" + +#: src/gui/sysManager.cpp:69 +msgid "(drag to swap chips)" +msgstr "" + +#: src/gui/sysManager.cpp:90 +msgid "Clone##SysDup" +msgstr "" + +#: src/gui/sysManager.cpp:92 +#, c-format +msgid "cannot clone chip! (%s)" +msgstr "" + +#: src/gui/sysManager.cpp:98 +msgid "Change##SysChange" +msgstr "" + +#: src/gui/sysManager.cpp:120 +msgid "Are you sure you want to remove this chip?" +msgstr "" + +#: src/gui/patManager.cpp:43 +msgid "Re-arrange patterns" +msgstr "" + +#: src/gui/patManager.cpp:50 +msgid "Sort orders" +msgstr "" + +#: src/gui/patManager.cpp:57 +msgid "Make patterns unique" +msgstr "" + +#: src/gui/patManager.cpp:103 +#, c-format +msgid "" +"Pattern %.2X\n" +"- not allocated" +msgstr "" + +#: src/gui/patManager.cpp:105 +#, c-format +msgid "" +"Pattern %.2X\n" +"- use count: %d (%.0f%%)\n" +"\n" +"right-click to erase" +msgstr "" + +#: src/gui/insEdit.cpp:39 +msgid "Down Down Down" +msgstr "" + +#: src/gui/insEdit.cpp:40 +msgid "Down." +msgstr "" + +#: src/gui/insEdit.cpp:41 +msgid "Down Up Down Up" +msgstr "" + +#: src/gui/insEdit.cpp:42 +msgid "Down UP" +msgstr "" + +#: src/gui/insEdit.cpp:43 +msgid "Up Up Up" +msgstr "" + +#: src/gui/insEdit.cpp:44 +msgid "Up." +msgstr "" + +#: src/gui/insEdit.cpp:45 +msgid "Up Down Up Down" +msgstr "" + +#: src/gui/insEdit.cpp:46 +msgid "Up DOWN" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Algorithm" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Feedback" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "LFO > Freq" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "LFO > Amp" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Decay 2" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "EnvScale" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Multiplier" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Detune 2" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "AM" +msgstr "" + +#: src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:5438 src/gui/insEdit.cpp:6516 +msgid "AM Depth" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Vibrato Depth" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Sustained" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Level Scaling" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Vibrato" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Scale Rate" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "OP2 Half Sine" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "OP1 Half Sine" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "EnvShift" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Reverb" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Fine" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "LFO2 > Freq" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "LFO2 > Amp" +msgstr "" + +#: src/gui/insEdit.cpp:56 src/gui/insEdit.cpp:68 src/gui/insEdit.cpp:7391 +msgid "OP4 Noise Mode" +msgstr "" + +#: src/gui/insEdit.cpp:57 +msgid "Envelope Delay" +msgstr "" + +#: src/gui/insEdit.cpp:58 src/gui/insEdit.cpp:70 +msgid "Output Level" +msgstr "" + +#: src/gui/insEdit.cpp:59 +msgid "Modulation Input Level" +msgstr "" + +#: src/gui/insEdit.cpp:60 +msgid "Left Output" +msgstr "" + +#: src/gui/insEdit.cpp:61 +msgid "Right Output" +msgstr "" + +#: src/gui/insEdit.cpp:62 +msgid "Coarse Tune (semitones)" +msgstr "" + +#: src/gui/insEdit.cpp:64 +msgid "Fixed Frequency Mode" +msgstr "" + +#: src/gui/insEdit.cpp:69 +msgid "Env. Delay" +msgstr "" + +#: src/gui/insEdit.cpp:71 +msgid "ModInput" +msgstr "" + +#: src/gui/insEdit.cpp:72 +msgid "Left" +msgstr "" + +#: src/gui/insEdit.cpp:73 +msgid "Right" +msgstr "" + +#: src/gui/insEdit.cpp:74 +msgid "Tune" +msgstr "" + +#: src/gui/insEdit.cpp:76 src/gui/insEdit.cpp:610 src/gui/insEdit.cpp:3792 +#: src/gui/insEdit.cpp:4554 src/gui/insEdit.cpp:4848 +msgid "Fixed" +msgstr "" + +#: src/gui/insEdit.cpp:98 src/gui/insEdit.cpp:117 src/gui/insEdit.cpp:136 +#: src/gui/insEdit.cpp:156 +msgid "User" +msgstr "" + +#: src/gui/insEdit.cpp:99 +msgid "1. Violin" +msgstr "" + +#: src/gui/insEdit.cpp:100 src/gui/insEdit.cpp:138 src/gui/insEdit.cpp:158 +msgid "2. Guitar" +msgstr "" + +#: src/gui/insEdit.cpp:101 src/gui/insEdit.cpp:159 +msgid "3. Piano" +msgstr "" + +#: src/gui/insEdit.cpp:102 src/gui/insEdit.cpp:160 +msgid "4. Flute" +msgstr "" + +#: src/gui/insEdit.cpp:103 src/gui/insEdit.cpp:122 src/gui/insEdit.cpp:161 +msgid "5. Clarinet" +msgstr "" + +#: src/gui/insEdit.cpp:104 +msgid "6. Oboe" +msgstr "" + +#: src/gui/insEdit.cpp:105 src/gui/insEdit.cpp:124 src/gui/insEdit.cpp:143 +#: src/gui/insEdit.cpp:163 +msgid "7. Trumpet" +msgstr "" + +#: src/gui/insEdit.cpp:106 +msgid "8. Organ" +msgstr "" + +#: src/gui/insEdit.cpp:107 +msgid "9. Horn" +msgstr "" + +#: src/gui/insEdit.cpp:108 +msgid "10. Synth" +msgstr "" + +#: src/gui/insEdit.cpp:109 +msgid "11. Harpsichord" +msgstr "" + +#: src/gui/insEdit.cpp:110 src/gui/insEdit.cpp:129 src/gui/insEdit.cpp:148 +msgid "12. Vibraphone" +msgstr "" + +#: src/gui/insEdit.cpp:111 +msgid "13. Synth Bass" +msgstr "" + +#: src/gui/insEdit.cpp:112 +msgid "14. Acoustic Bass" +msgstr "" + +#: src/gui/insEdit.cpp:113 +msgid "15. Electric Guitar" +msgstr "" + +#: src/gui/insEdit.cpp:114 src/gui/insEdit.cpp:133 src/gui/insEdit.cpp:152 +#: src/gui/insEdit.cpp:172 src/gui/insEdit.cpp:3176 +msgid "Drums" +msgstr "" + +#: src/gui/insEdit.cpp:118 +msgid "1. Electric String" +msgstr "" + +#: src/gui/insEdit.cpp:119 +msgid "2. Bow wow" +msgstr "" + +#: src/gui/insEdit.cpp:120 src/gui/insEdit.cpp:139 +msgid "3. Electric Guitar" +msgstr "" + +#: src/gui/insEdit.cpp:121 +msgid "4. Organ" +msgstr "" + +#: src/gui/insEdit.cpp:123 +msgid "6. Saxophone" +msgstr "" + +#: src/gui/insEdit.cpp:125 +msgid "8. Street Organ" +msgstr "" + +#: src/gui/insEdit.cpp:126 +msgid "9. Synth Brass" +msgstr "" + +#: src/gui/insEdit.cpp:127 +msgid "10. Electric Piano" +msgstr "" + +#: src/gui/insEdit.cpp:128 +msgid "11. Bass" +msgstr "" + +#: src/gui/insEdit.cpp:130 +msgid "13. Chime" +msgstr "" + +#: src/gui/insEdit.cpp:131 +msgid "14. Tom Tom II" +msgstr "" + +#: src/gui/insEdit.cpp:132 +msgid "15. Noise" +msgstr "" + +#: src/gui/insEdit.cpp:137 +msgid "1. Strings" +msgstr "" + +#: src/gui/insEdit.cpp:140 +msgid "4. Electric Piano" +msgstr "" + +#: src/gui/insEdit.cpp:141 +msgid "5. Flute" +msgstr "" + +#: src/gui/insEdit.cpp:142 +msgid "6. Marimba" +msgstr "" + +#: src/gui/insEdit.cpp:144 +msgid "8. Harmonica" +msgstr "" + +#: src/gui/insEdit.cpp:145 +msgid "9. Tuba" +msgstr "" + +#: src/gui/insEdit.cpp:146 +msgid "10. Synth Brass" +msgstr "" + +#: src/gui/insEdit.cpp:147 +msgid "11. Short Saw" +msgstr "" + +#: src/gui/insEdit.cpp:149 +msgid "13. Electric Guitar 2" +msgstr "" + +#: src/gui/insEdit.cpp:150 +msgid "14. Synth Bass" +msgstr "" + +#: src/gui/insEdit.cpp:151 +msgid "15. Sitar" +msgstr "" + +#: src/gui/insEdit.cpp:157 +msgid "1. Bell" +msgstr "" + +#: src/gui/insEdit.cpp:162 +msgid "6. Rattling Bell" +msgstr "" + +#: src/gui/insEdit.cpp:164 +msgid "8. Reed Organ" +msgstr "" + +#: src/gui/insEdit.cpp:165 +msgid "9. Soft Bell" +msgstr "" + +#: src/gui/insEdit.cpp:166 +msgid "10. Xylophone" +msgstr "" + +#: src/gui/insEdit.cpp:167 +msgid "11. Vibraphone" +msgstr "" + +#: src/gui/insEdit.cpp:168 +msgid "12. Brass" +msgstr "" + +#: src/gui/insEdit.cpp:169 +msgid "13. Bass Guitar" +msgstr "" + +#: src/gui/insEdit.cpp:170 +msgid "14. Synth" +msgstr "" + +#: src/gui/insEdit.cpp:171 +msgid "15. Chorus" +msgstr "" + +#: src/gui/insEdit.cpp:178 src/gui/insEdit.cpp:189 +msgid "Half Sine" +msgstr "" + +#: src/gui/insEdit.cpp:179 src/gui/insEdit.cpp:190 +msgid "Absolute Sine" +msgstr "" + +#: src/gui/insEdit.cpp:180 +msgid "Quarter Sine" +msgstr "" + +#: src/gui/insEdit.cpp:181 src/gui/insEdit.cpp:203 +msgid "Squished Sine" +msgstr "" + +#: src/gui/insEdit.cpp:182 src/gui/insEdit.cpp:205 +msgid "Squished AbsSine" +msgstr "" + +#: src/gui/insEdit.cpp:184 src/gui/insEdit.cpp:195 +msgid "Derived Square" +msgstr "" + +#: src/gui/insEdit.cpp:191 +msgid "Pulse Sine" +msgstr "" + +#: src/gui/insEdit.cpp:192 +msgid "Sine (Even Periods)" +msgstr "" + +#: src/gui/insEdit.cpp:193 +msgid "AbsSine (Even Periods)" +msgstr "" + +#: src/gui/insEdit.cpp:201 +msgid "Cut Sine" +msgstr "" + +#: src/gui/insEdit.cpp:202 +msgid "Cut Triangle" +msgstr "" + +#: src/gui/insEdit.cpp:204 +msgid "Squished Triangle" +msgstr "" + +#: src/gui/insEdit.cpp:206 +msgid "Squished AbsTriangle" +msgstr "" + +#: src/gui/insEdit.cpp:224 +msgid "Noise disabled" +msgstr "" + +#: src/gui/insEdit.cpp:225 +msgid "Square + noise" +msgstr "" + +#: src/gui/insEdit.cpp:226 +msgid "Ringmod from OP3 + noise" +msgstr "" + +#: src/gui/insEdit.cpp:227 +msgid "" +"Ringmod from OP3 + double pitch ModInput\n" +"WARNING - has emulation issues; subject to change" +msgstr "" + +#: src/gui/insEdit.cpp:232 +msgid "Bitwise AND" +msgstr "" + +#: src/gui/insEdit.cpp:233 +msgid "Bitwise OR" +msgstr "" + +#: src/gui/insEdit.cpp:234 +msgid "Bitwise XOR" +msgstr "" + +#: src/gui/insEdit.cpp:239 src/gui/insEdit.cpp:390 +msgid "gate" +msgstr "" + +#: src/gui/insEdit.cpp:240 src/gui/insEdit.cpp:391 +msgid "sync" +msgstr "" + +#: src/gui/insEdit.cpp:241 src/gui/insEdit.cpp:392 +msgid "ring" +msgstr "" + +#: src/gui/insEdit.cpp:327 +msgid "How did you even" +msgstr "" + +#: src/gui/insEdit.cpp:335 +msgid "triangle" +msgstr "" + +#: src/gui/insEdit.cpp:336 src/gui/insEdit.cpp:5821 +msgid "saw" +msgstr "" + +#: src/gui/insEdit.cpp:337 src/gui/insEdit.cpp:5827 +msgid "pulse" +msgstr "" + +#: src/gui/insEdit.cpp:338 src/gui/insEdit.cpp:344 src/gui/insEdit.cpp:373 +#: src/gui/insEdit.cpp:424 src/gui/insEdit.cpp:429 src/gui/insEdit.cpp:5833 +msgid "noise" +msgstr "" + +#: src/gui/insEdit.cpp:343 +msgid "tone" +msgstr "" + +#: src/gui/insEdit.cpp:345 +msgid "envelope" +msgstr "" + +#: src/gui/insEdit.cpp:350 +msgid "hold" +msgstr "" + +#: src/gui/insEdit.cpp:351 +msgid "alternate" +msgstr "" + +#: src/gui/insEdit.cpp:352 src/gui/insEdit.cpp:364 +msgid "direction" +msgstr "" + +#: src/gui/insEdit.cpp:353 src/gui/insEdit.cpp:436 +msgid "enable" +msgstr "" + +#: src/gui/insEdit.cpp:357 src/gui/insEdit.cpp:368 +msgid "enabled" +msgstr "" + +#: src/gui/insEdit.cpp:361 +msgid "mirror" +msgstr "" + +#: src/gui/insEdit.cpp:365 +msgid "resolution" +msgstr "" + +#: src/gui/insEdit.cpp:366 +msgid "fixed" +msgstr "" + +#: src/gui/insEdit.cpp:367 +msgid "N/A" +msgstr "" + +#: src/gui/insEdit.cpp:374 +msgid "echo" +msgstr "" + +#: src/gui/insEdit.cpp:375 +msgid "pitch mod" +msgstr "" + +#: src/gui/insEdit.cpp:376 src/gui/insEdit.cpp:508 +msgid "invert right" +msgstr "" + +#: src/gui/insEdit.cpp:377 src/gui/insEdit.cpp:509 +msgid "invert left" +msgstr "" + +#: src/gui/insEdit.cpp:382 src/gui/insEdit.cpp:5905 +msgid "low" +msgstr "" + +#: src/gui/insEdit.cpp:383 src/gui/insEdit.cpp:5911 +msgid "band" +msgstr "" + +#: src/gui/insEdit.cpp:384 src/gui/insEdit.cpp:5917 +msgid "high" +msgstr "" + +#: src/gui/insEdit.cpp:385 src/gui/insEdit.cpp:5924 +msgid "ch3off" +msgstr "" + +#: src/gui/insEdit.cpp:393 +msgid "test" +msgstr "" + +#: src/gui/insEdit.cpp:398 +msgid "15KHz" +msgstr "" + +#: src/gui/insEdit.cpp:399 +msgid "filter 2+4" +msgstr "" + +#: src/gui/insEdit.cpp:400 +msgid "filter 1+3" +msgstr "" + +#: src/gui/insEdit.cpp:401 +msgid "16-bit 3+4" +msgstr "" + +#: src/gui/insEdit.cpp:402 +msgid "16-bit 1+2" +msgstr "" + +#: src/gui/insEdit.cpp:403 +msgid "high3" +msgstr "" + +#: src/gui/insEdit.cpp:404 +msgid "high1" +msgstr "" + +#: src/gui/insEdit.cpp:405 +msgid "poly9" +msgstr "" + +#: src/gui/insEdit.cpp:414 +msgid "16'" +msgstr "" + +#: src/gui/insEdit.cpp:415 +msgid "8'" +msgstr "" + +#: src/gui/insEdit.cpp:416 +msgid "4'" +msgstr "" + +#: src/gui/insEdit.cpp:417 +msgid "2'" +msgstr "" + +#: src/gui/insEdit.cpp:418 +msgid "sustain" +msgstr "" + +#: src/gui/insEdit.cpp:423 +msgid "square" +msgstr "" + +#: src/gui/insEdit.cpp:431 +msgid "surround" +msgstr "" + +#: src/gui/insEdit.cpp:437 +msgid "oneshot" +msgstr "" + +#: src/gui/insEdit.cpp:438 +msgid "split L/R" +msgstr "" + +#: src/gui/insEdit.cpp:439 +msgid "HinvR" +msgstr "" + +#: src/gui/insEdit.cpp:440 +msgid "VinvR" +msgstr "" + +#: src/gui/insEdit.cpp:441 +msgid "HinvL" +msgstr "" + +#: src/gui/insEdit.cpp:442 +msgid "VinvL" +msgstr "" + +#: src/gui/insEdit.cpp:447 src/gui/insEdit.cpp:476 +msgid "ring mod" +msgstr "" + +#: src/gui/insEdit.cpp:448 +msgid "low pass" +msgstr "" + +#: src/gui/insEdit.cpp:449 src/gui/insEdit.cpp:475 +msgid "high pass" +msgstr "" + +#: src/gui/insEdit.cpp:450 +msgid "band pass" +msgstr "" + +#: src/gui/insEdit.cpp:459 +msgid "enable tap B" +msgstr "" + +#: src/gui/insEdit.cpp:460 +msgid "AM with slope" +msgstr "" + +#: src/gui/insEdit.cpp:465 +msgid "invert B" +msgstr "" + +#: src/gui/insEdit.cpp:466 +msgid "invert A" +msgstr "" + +#: src/gui/insEdit.cpp:467 +msgid "reset B" +msgstr "" + +#: src/gui/insEdit.cpp:468 +msgid "reset A" +msgstr "" + +#: src/gui/insEdit.cpp:469 +msgid "clip B" +msgstr "" + +#: src/gui/insEdit.cpp:470 +msgid "clip A" +msgstr "" + +#: src/gui/insEdit.cpp:477 +msgid "swap counters (noise)" +msgstr "" + +#: src/gui/insEdit.cpp:478 +msgid "low pass (noise)" +msgstr "" + +#: src/gui/insEdit.cpp:485 +msgid "rear right" +msgstr "" + +#: src/gui/insEdit.cpp:486 +msgid "rear left" +msgstr "" + +#: src/gui/insEdit.cpp:491 +msgid "on" +msgstr "" + +#: src/gui/insEdit.cpp:496 +msgid "k1 slowdown" +msgstr "" + +#: src/gui/insEdit.cpp:497 +msgid "k2 slowdown" +msgstr "" + +#: src/gui/insEdit.cpp:502 +msgid "pause" +msgstr "" + +#: src/gui/insEdit.cpp:503 +msgid "reverse" +msgstr "" + +#: src/gui/insEdit.cpp:521 +msgid "Subtract" +msgstr "" + +#: src/gui/insEdit.cpp:522 +msgid "Average" +msgstr "" + +#: src/gui/insEdit.cpp:523 src/gui/insEdit.cpp:2037 +msgid "Phase" +msgstr "" + +#: src/gui/insEdit.cpp:524 +msgid "Chorus" +msgstr "" + +#: src/gui/insEdit.cpp:528 +msgid "None (dual)" +msgstr "" + +#: src/gui/insEdit.cpp:529 +msgid "Wipe" +msgstr "" + +#: src/gui/insEdit.cpp:531 +msgid "Fade (ping-pong)" +msgstr "" + +#: src/gui/insEdit.cpp:532 +msgid "Overlay" +msgstr "" + +#: src/gui/insEdit.cpp:533 +msgid "Negative Overlay" +msgstr "" + +#: src/gui/insEdit.cpp:534 +msgid "Slide" +msgstr "" + +#: src/gui/insEdit.cpp:535 +msgid "Mix Chorus" +msgstr "" + +#: src/gui/insEdit.cpp:536 +msgid "Phase Modulation" +msgstr "" + +#: src/gui/insEdit.cpp:541 +msgid "Sweep" +msgstr "" + +#: src/gui/insEdit.cpp:542 src/gui/insEdit.cpp:552 +msgid "Wait" +msgstr "" + +#: src/gui/insEdit.cpp:543 src/gui/insEdit.cpp:553 +msgid "Wait for Release" +msgstr "" + +#: src/gui/insEdit.cpp:545 src/gui/insEdit.cpp:555 +msgid "Loop until Release" +msgstr "" + +#: src/gui/insEdit.cpp:549 +msgid "Volume Sweep" +msgstr "" + +#: src/gui/insEdit.cpp:550 +msgid "Frequency Sweep" +msgstr "" + +#: src/gui/insEdit.cpp:551 +msgid "Cutoff Sweep" +msgstr "" + +#: src/gui/insEdit.cpp:559 src/gui/insEdit.cpp:6604 +msgid "Direct" +msgstr "" + +#: src/gui/insEdit.cpp:560 src/gui/insEdit.cpp:6608 +msgid "Decrease (linear)" +msgstr "" + +#: src/gui/insEdit.cpp:561 src/gui/insEdit.cpp:6612 +msgid "Decrease (logarithmic)" +msgstr "" + +#: src/gui/insEdit.cpp:562 src/gui/insEdit.cpp:6616 +msgid "Increase (linear)" +msgstr "" + +#: src/gui/insEdit.cpp:563 src/gui/insEdit.cpp:6620 +msgid "Increase (bent line)" +msgstr "" + +#: src/gui/insEdit.cpp:611 +msgid "Relative" +msgstr "" + +#: src/gui/insEdit.cpp:616 +#, c-format +msgid "%d: +%d (exponential)" +msgstr "" + +#: src/gui/insEdit.cpp:619 +#, c-format +msgid "%d: +%d (linear)" +msgstr "" + +#: src/gui/insEdit.cpp:622 +#, c-format +msgid "%d: -%d (exponential)" +msgstr "" + +#: src/gui/insEdit.cpp:625 +#, c-format +msgid "%d: -%d (linear)" +msgstr "" + +#: src/gui/insEdit.cpp:627 +#, c-format +msgid "%d: %d (direct)" +msgstr "" + +#: src/gui/insEdit.cpp:660 +msgid "Random" +msgstr "" + +#: src/gui/insEdit.cpp:1610 +msgid "" +"left click to restart\n" +"middle click to pause\n" +"right click to see algorithm" +msgstr "" + +#: src/gui/insEdit.cpp:1620 +msgid "" +"left click to configure TL scaling\n" +"right click to see FM preview" +msgstr "" + +#: src/gui/insEdit.cpp:1624 +msgid "right click to see FM preview" +msgstr "" + +#: src/gui/insEdit.cpp:1639 +msgid "operator level changes with volume?" +msgstr "" + +#: src/gui/insEdit.cpp:1648 +msgid "AUTO##OPKVS" +msgstr "" + +#: src/gui/insEdit.cpp:1650 +msgid "NO##OPKVS" +msgstr "" + +#: src/gui/insEdit.cpp:1652 +msgid "YES##OPKVS" +msgstr "" + +#: src/gui/insEdit.cpp:1900 src/gui/insEdit.cpp:2005 +msgid "Bottom" +msgstr "" + +#: src/gui/insEdit.cpp:1940 +msgid "Hold" +msgstr "" + +#: src/gui/insEdit.cpp:1949 +msgid "SusTime" +msgstr "" + +#: src/gui/insEdit.cpp:1969 +msgid "SusDecay" +msgstr "" + +#: src/gui/insEdit.cpp:2047 +msgid "Shape" +msgstr "" + +#: src/gui/insEdit.cpp:2100 +msgid "Macro type: Sequence" +msgstr "" + +#: src/gui/insEdit.cpp:2103 +msgid "Macro type: ADSR" +msgstr "" + +#: src/gui/insEdit.cpp:2106 +msgid "Macro type: LFO" +msgstr "" + +#: src/gui/insEdit.cpp:2109 +msgid "Macro type: What's going on here?" +msgstr "" + +#: src/gui/insEdit.cpp:2122 +msgid "Delay/Step Length" +msgstr "" + +#: src/gui/insEdit.cpp:2125 +msgid "Step Length (ticks)##IMacroSpeed" +msgstr "" + +#: src/gui/insEdit.cpp:2129 +msgid "Delay##IMacroDelay" +msgstr "" + +#: src/gui/insEdit.cpp:2142 +msgid "Release mode: Active (jump to release pos)" +msgstr "" + +#: src/gui/insEdit.cpp:2144 +msgid "Release mode: Passive (delayed release)" +msgstr "" + +#: src/gui/insEdit.cpp:2393 +msgid "StepLen" +msgstr "" + +#: src/gui/insEdit.cpp:2401 +msgid "Delay" +msgstr "" + +#: src/gui/insEdit.cpp:2425 +msgid "The heck? No, this isn't even working correctly..." +msgstr "" + +#: src/gui/insEdit.cpp:2428 +msgid "The only problem with that selectedMacro is that it's a bug..." +msgstr "" + +#: src/gui/insEdit.cpp:2589 +msgid "(copying)" +msgstr "" + +#: src/gui/insEdit.cpp:2591 +msgid "(swapping)" +msgstr "" + +#: src/gui/insEdit.cpp:2595 +msgid "" +"- drag to swap operator\n" +"- shift-drag to copy operator" +msgstr "" + +#: src/gui/insEdit.cpp:2632 +msgid "new DPCM features disabled (compatibility)!" +msgstr "" + +#: src/gui/insEdit.cpp:2633 +msgid "click here to enable them." +msgstr "" + +#: src/gui/insEdit.cpp:2644 +msgid "none selected" +msgstr "" + +#: src/gui/insEdit.cpp:2657 +msgid "Use sample" +msgstr "" + +#: src/gui/insEdit.cpp:2659 +msgid "Sample bank slot##BANKSLOT" +msgstr "" + +#: src/gui/insEdit.cpp:2681 +msgid "Use wavetable (Amiga/Generic DAC only)" +msgstr "" + +#: src/gui/insEdit.cpp:2681 +msgid "Use wavetable" +msgstr "" + +#: src/gui/insEdit.cpp:2708 +msgid "Use sample map" +msgstr "" + +#: src/gui/insEdit.cpp:2730 +msgid "delta" +msgstr "" + +#: src/gui/insEdit.cpp:2736 +msgid "sample name" +msgstr "" + +#: src/gui/insEdit.cpp:3001 +msgid "set entire map to this pitch" +msgstr "" + +#: src/gui/insEdit.cpp:3009 +msgid "set entire map to this delta counter value" +msgstr "" + +#: src/gui/insEdit.cpp:3018 +msgid "set entire map to this note" +msgstr "" + +#: src/gui/insEdit.cpp:3027 +msgid "set entire map to this sample" +msgstr "" + +#: src/gui/insEdit.cpp:3037 +msgid "reset pitches" +msgstr "" + +#: src/gui/insEdit.cpp:3042 +msgid "clear delta counter values" +msgstr "" + +#: src/gui/insEdit.cpp:3048 +msgid "reset notes" +msgstr "" + +#: src/gui/insEdit.cpp:3054 +msgid "clear map samples" +msgstr "" + +#: src/gui/insEdit.cpp:3148 +msgid "Request from TX81Z" +msgstr "" + +#: src/gui/insEdit.cpp:3234 +#, c-format +msgid "%s name" +msgstr "" + +#: src/gui/insEdit.cpp:3286 +msgid "Fixed frequency mode" +msgstr "" + +#: src/gui/insEdit.cpp:3288 +msgid "" +"when enabled, drums will be set to the specified frequencies, ignoring the " +"note." +msgstr "" + +#: src/gui/insEdit.cpp:3296 +msgid "Drum" +msgstr "" + +#: src/gui/insEdit.cpp:3298 src/gui/insEdit.cpp:3798 src/gui/insEdit.cpp:3904 +#: src/gui/insEdit.cpp:4404 src/gui/insEdit.cpp:4468 src/gui/insEdit.cpp:5068 +#: src/gui/insEdit.cpp:5518 +msgid "Block" +msgstr "" + +#: src/gui/insEdit.cpp:3300 src/gui/insEdit.cpp:3803 src/gui/insEdit.cpp:3909 +#: src/gui/insEdit.cpp:4993 src/gui/insEdit.cpp:5079 src/gui/insEdit.cpp:5519 +msgid "FreqNum" +msgstr "" + +#: src/gui/insEdit.cpp:3303 +msgid "Snare/Hi-hat" +msgstr "" + +#: src/gui/insEdit.cpp:3304 +msgid "Tom/Top" +msgstr "" + +#: src/gui/insEdit.cpp:3314 +msgid "Volume##TL" +msgstr "" + +#: src/gui/insEdit.cpp:3316 +msgid "this volume slider only works in compatibility (non-drums) system." +msgstr "" + +#: src/gui/insEdit.cpp:3626 +msgid "Env" +msgstr "" + +#: src/gui/insEdit.cpp:3980 src/gui/insEdit.cpp:4346 src/gui/insEdit.cpp:4396 +#: src/gui/insEdit.cpp:5104 +msgid "OPL2/3 only (last 4 waveforms are OPL3 only)" +msgstr "" + +#: src/gui/insEdit.cpp:4079 src/gui/insEdit.cpp:4788 +#, c-format +msgid "Envelope 2 (kick only)" +msgstr "" + +#: src/gui/insEdit.cpp:4084 +#, c-format +msgid "Operator %d" +msgstr "" + +#: src/gui/insEdit.cpp:4414 +msgid "Freq" +msgstr "" + +#: src/gui/insEdit.cpp:4443 +msgid "Only on YM2151 (OPM)" +msgstr "" + +#: src/gui/insEdit.cpp:4466 +msgid "Blk" +msgstr "" + +#: src/gui/insEdit.cpp:4479 +msgid "F" +msgstr "" + +#: src/gui/insEdit.cpp:4481 +msgid "Frequency (F-Num)" +msgstr "" + +#: src/gui/insEdit.cpp:4833 +msgid "SSG On" +msgstr "" + +#: src/gui/insEdit.cpp:5206 src/gui/insEdit.cpp:5207 +msgid "waiting..." +msgstr "" + +#: src/gui/insEdit.cpp:5210 src/gui/insEdit.cpp:5211 +msgid "no instrument selected" +msgstr "" + +#: src/gui/insEdit.cpp:5393 +msgid "" +"none of the currently present chips are able to play this instrument type!" +msgstr "" + +#: src/gui/insEdit.cpp:5413 +msgid "FM Macros" +msgstr "" + +#: src/gui/insEdit.cpp:5435 src/gui/insEdit.cpp:5440 +msgid "LFO Speed" +msgstr "" + +#: src/gui/insEdit.cpp:5439 src/gui/insEdit.cpp:6514 +msgid "PM Depth" +msgstr "" + +#: src/gui/insEdit.cpp:5441 +msgid "LFO Shape" +msgstr "" + +#: src/gui/insEdit.cpp:5444 +msgid "OpMask" +msgstr "" + +#: src/gui/insEdit.cpp:5446 +msgid "AM Depth 2" +msgstr "" + +#: src/gui/insEdit.cpp:5447 +msgid "PM Depth 2" +msgstr "" + +#: src/gui/insEdit.cpp:5448 +msgid "LFO2 Speed" +msgstr "" + +#: src/gui/insEdit.cpp:5449 +msgid "LFO2 Shape" +msgstr "" + +#: src/gui/insEdit.cpp:5458 +#, c-format +msgid "Operator Macros" +msgstr "" + +#: src/gui/insEdit.cpp:5460 +#, c-format +msgid "OP%d Macros" +msgstr "" + +#: src/gui/insEdit.cpp:5521 +msgid "Op. Arpeggio" +msgstr "" + +#: src/gui/insEdit.cpp:5522 +msgid "Op. Pitch" +msgstr "" + +#: src/gui/insEdit.cpp:5531 +msgid "Op. Panning" +msgstr "" + +#: src/gui/insEdit.cpp:5558 +msgid "Use software envelope" +msgstr "" + +#: src/gui/insEdit.cpp:5559 +msgid "Initialize envelope on every note" +msgstr "" + +#: src/gui/insEdit.cpp:5560 +msgid "Double wave length (GBA only)" +msgstr "" + +#: src/gui/insEdit.cpp:5589 src/gui/insEdit.cpp:5666 +msgid "Sound Length" +msgstr "" + +#: src/gui/insEdit.cpp:5592 src/gui/insEdit.cpp:5666 +msgid "Infinity" +msgstr "" + +#: src/gui/insEdit.cpp:5596 +msgid "Direction" +msgstr "" + +#: src/gui/insEdit.cpp:5599 src/gui/insEdit.cpp:5669 src/gui/insEdit.cpp:5697 +#: src/gui/insEdit.cpp:6008 src/gui/insEdit.cpp:6051 +msgid "Up" +msgstr "" + +#: src/gui/insEdit.cpp:5604 src/gui/insEdit.cpp:5674 src/gui/insEdit.cpp:5702 +#: src/gui/insEdit.cpp:6013 src/gui/insEdit.cpp:6056 +msgid "Down" +msgstr "" + +#: src/gui/insEdit.cpp:5620 src/gui/insEdit.cpp:5953 +msgid "Hardware Sequence" +msgstr "" + +#: src/gui/insEdit.cpp:5630 src/gui/insEdit.cpp:5963 +msgid "Tick" +msgstr "" + +#: src/gui/insEdit.cpp:5632 src/gui/insEdit.cpp:5965 +msgid "Command" +msgstr "" + +#: src/gui/insEdit.cpp:5634 src/gui/insEdit.cpp:5967 +msgid "Move/Remove" +msgstr "" + +#: src/gui/insEdit.cpp:5663 +msgid "Env Length" +msgstr "" + +#: src/gui/insEdit.cpp:5690 +msgid "Shift" +msgstr "" + +#: src/gui/insEdit.cpp:5717 src/gui/insEdit.cpp:6073 +msgid "Ticks" +msgstr "" + +#: src/gui/insEdit.cpp:5736 src/gui/insEdit.cpp:6092 src/gui/insEdit.cpp:6239 +msgid "Position" +msgstr "" + +#: src/gui/insEdit.cpp:5815 +msgid "tri" +msgstr "" + +#: src/gui/insEdit.cpp:5882 +msgid "Ring Modulation" +msgstr "" + +#: src/gui/insEdit.cpp:5886 +msgid "Oscillator Sync" +msgstr "" + +#: src/gui/insEdit.cpp:5890 +msgid "Enable filter" +msgstr "" + +#: src/gui/insEdit.cpp:5891 +msgid "Initialize filter" +msgstr "" + +#: src/gui/insEdit.cpp:5894 src/gui/insEdit.cpp:5897 src/gui/insEdit.cpp:6951 +#: src/gui/insEdit.cpp:7215 src/gui/insEdit.cpp:7476 +msgid "Cutoff" +msgstr "" + +#: src/gui/insEdit.cpp:5902 src/gui/insEdit.cpp:6408 src/gui/insEdit.cpp:6952 +#: src/gui/insEdit.cpp:7179 src/gui/insEdit.cpp:7477 +msgid "Filter Mode" +msgstr "" + +#: src/gui/insEdit.cpp:5931 src/gui/insEdit.cpp:7485 +msgid "Noise Mode" +msgstr "" + +#: src/gui/insEdit.cpp:5932 +msgid "Wave Mix Mode" +msgstr "" + +#: src/gui/insEdit.cpp:5935 +msgid "Absolute Cutoff Macro" +msgstr "" + +#: src/gui/insEdit.cpp:5939 +msgid "Absolute Duty Macro" +msgstr "" + +#: src/gui/insEdit.cpp:5945 +msgid "Don't test before new note" +msgstr "" + +#: src/gui/insEdit.cpp:5950 +msgid "Switch roles of frequency and phase reset timer" +msgstr "" + +#: src/gui/insEdit.cpp:5997 src/gui/insEdit.cpp:6040 +msgid "Period" +msgstr "" + +#: src/gui/insEdit.cpp:6002 src/gui/insEdit.cpp:6045 src/gui/insEdit.cpp:6892 +msgid "Amount" +msgstr "" + +#: src/gui/insEdit.cpp:6005 src/gui/insEdit.cpp:6048 +msgid "Bound" +msgstr "" + +#: src/gui/insEdit.cpp:6021 +msgid "Flip" +msgstr "" + +#: src/gui/insEdit.cpp:6210 +msgid "Load waveform" +msgstr "" + +#: src/gui/insEdit.cpp:6215 +msgid "" +"when enabled, a waveform will be loaded into RAM.\n" +"when disabled, only the offset and length change." +msgstr "" + +#: src/gui/insEdit.cpp:6219 +msgid "Waveform##WAVE" +msgstr "" + +#: src/gui/insEdit.cpp:6227 +msgid "Per-channel wave position/length" +msgstr "" + +#: src/gui/insEdit.cpp:6237 +msgid "Ch" +msgstr "" + +#: src/gui/insEdit.cpp:6286 +msgid "Compatibility mode" +msgstr "" + +#: src/gui/insEdit.cpp:6288 +msgid "" +"only use for compatibility with .dmf modules!\n" +"- initializes modulation table with first wavetable\n" +"- does not alter modulation parameters on instrument change" +msgstr "" + +#: src/gui/insEdit.cpp:6290 +msgid "Modulation depth" +msgstr "" + +#: src/gui/insEdit.cpp:6294 +msgid "Modulation speed" +msgstr "" + +#: src/gui/insEdit.cpp:6298 +msgid "Modulation table" +msgstr "" + +#: src/gui/insEdit.cpp:6347 +msgid "Set modulation table (channel 5 only)" +msgstr "" + +#: src/gui/insEdit.cpp:6411 src/gui/insEdit.cpp:7184 +msgid "Filter K1" +msgstr "" + +#: src/gui/insEdit.cpp:6413 src/gui/insEdit.cpp:7185 +msgid "Filter K2" +msgstr "" + +#: src/gui/insEdit.cpp:6417 +msgid "Envelope length" +msgstr "" + +#: src/gui/insEdit.cpp:6420 +msgid "Left Volume Ramp" +msgstr "" + +#: src/gui/insEdit.cpp:6422 +msgid "Right Volume Ramp" +msgstr "" + +#: src/gui/insEdit.cpp:6425 +msgid "Filter K1 Ramp" +msgstr "" + +#: src/gui/insEdit.cpp:6427 +msgid "Filter K2 Ramp" +msgstr "" + +#: src/gui/insEdit.cpp:6430 +msgid "K1 Ramp Slowdown" +msgstr "" + +#: src/gui/insEdit.cpp:6432 +msgid "K2 Ramp Slowdown" +msgstr "" + +#: src/gui/insEdit.cpp:6454 +msgid "Attack Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6460 +msgid "Decay 1 Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6466 +msgid "Decay Level" +msgstr "" + +#: src/gui/insEdit.cpp:6472 +msgid "Decay 2 Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6478 +msgid "Release Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6484 +msgid "Rate Correction" +msgstr "" + +#: src/gui/insEdit.cpp:6512 +msgid "LFO Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6523 +msgid "Use envelope" +msgstr "" + +#: src/gui/insEdit.cpp:6576 +msgid "Sustain/release mode:" +msgstr "" + +#: src/gui/insEdit.cpp:6577 +msgid "Direct (cut on release)" +msgstr "" + +#: src/gui/insEdit.cpp:6580 +msgid "Effective (linear decrease)" +msgstr "" + +#: src/gui/insEdit.cpp:6583 +msgid "Effective (exponential decrease)" +msgstr "" + +#: src/gui/insEdit.cpp:6586 +msgid "Delayed (write R on release)" +msgstr "" + +#: src/gui/insEdit.cpp:6596 src/gui/insEdit.cpp:6597 +msgid "Gain Mode" +msgstr "" + +#: src/gui/insEdit.cpp:6599 src/gui/insEdit.cpp:6600 src/gui/insEdit.cpp:7205 +msgid "Gain" +msgstr "" + +#: src/gui/insEdit.cpp:6633 +msgid "" +"using decrease modes will not produce any sound at all, unless you know what " +"you are doing.\n" +"it is recommended to use the Gain macro for decrease instead." +msgstr "" + +#: src/gui/insEdit.cpp:6703 +msgid "Enable synthesizer" +msgstr "" + +#: src/gui/insEdit.cpp:6721 +msgid "Single-waveform" +msgstr "" + +#: src/gui/insEdit.cpp:6730 +msgid "Dual-waveform" +msgstr "" + +#: src/gui/insEdit.cpp:6803 src/gui/insEdit.cpp:6812 +msgid "Wave 1" +msgstr "" + +#: src/gui/insEdit.cpp:6808 src/gui/insEdit.cpp:6823 +msgid "" +"waveform macro is controlling wave 1!\n" +"this value will be ineffective." +msgstr "" + +#: src/gui/insEdit.cpp:6829 +msgid "Wave 2" +msgstr "" + +#: src/gui/insEdit.cpp:6844 +msgid "Resume preview" +msgstr "" + +#: src/gui/insEdit.cpp:6846 +msgid "Pause preview" +msgstr "" + +#: src/gui/insEdit.cpp:6854 +msgid "Restart preview" +msgstr "" + +#: src/gui/insEdit.cpp:6874 +msgid "Copy to new wavetable" +msgstr "" + +#: src/gui/insEdit.cpp:6881 +msgid "Update Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6902 +msgid "Global" +msgstr "" + +#: src/gui/insEdit.cpp:6906 +msgid "" +"wavetable synthesizer disabled.\n" +"use the Waveform macro to set the wave for this instrument." +msgstr "" + +#: src/gui/insEdit.cpp:6912 +msgid "Macros" +msgstr "" + +#: src/gui/insEdit.cpp:6921 src/gui/insEdit.cpp:6929 src/gui/insEdit.cpp:6938 +#: src/gui/insEdit.cpp:6947 src/gui/insEdit.cpp:6962 src/gui/insEdit.cpp:6976 +#: src/gui/insEdit.cpp:6988 src/gui/insEdit.cpp:7001 src/gui/insEdit.cpp:7017 +#: src/gui/insEdit.cpp:7023 src/gui/insEdit.cpp:7033 src/gui/insEdit.cpp:7040 +#: src/gui/insEdit.cpp:7046 src/gui/insEdit.cpp:7059 src/gui/insEdit.cpp:7066 +#: src/gui/insEdit.cpp:7073 src/gui/insEdit.cpp:7082 src/gui/insEdit.cpp:7092 +#: src/gui/insEdit.cpp:7100 src/gui/insEdit.cpp:7106 src/gui/insEdit.cpp:7114 +#: src/gui/insEdit.cpp:7121 src/gui/insEdit.cpp:7127 src/gui/insEdit.cpp:7137 +#: src/gui/insEdit.cpp:7149 src/gui/insEdit.cpp:7157 src/gui/insEdit.cpp:7173 +#: src/gui/insEdit.cpp:7178 src/gui/insEdit.cpp:7191 src/gui/insEdit.cpp:7198 +#: src/gui/insEdit.cpp:7209 src/gui/insEdit.cpp:7222 src/gui/insEdit.cpp:7231 +#: src/gui/insEdit.cpp:7238 src/gui/insEdit.cpp:7246 src/gui/insEdit.cpp:7270 +#: src/gui/insEdit.cpp:7277 src/gui/insEdit.cpp:7285 src/gui/insEdit.cpp:7296 +#: src/gui/insEdit.cpp:7303 src/gui/insEdit.cpp:7311 src/gui/insEdit.cpp:7319 +#: src/gui/insEdit.cpp:7328 src/gui/insEdit.cpp:7336 src/gui/insEdit.cpp:7342 +#: src/gui/insEdit.cpp:7348 src/gui/insEdit.cpp:7354 src/gui/insEdit.cpp:7359 +#: src/gui/insEdit.cpp:7366 src/gui/insEdit.cpp:7373 src/gui/insEdit.cpp:7381 +#: src/gui/insEdit.cpp:7390 src/gui/insEdit.cpp:7398 src/gui/insEdit.cpp:7410 +#: src/gui/insEdit.cpp:7423 src/gui/insEdit.cpp:7434 src/gui/insEdit.cpp:7444 +#: src/gui/insEdit.cpp:7452 src/gui/insEdit.cpp:7462 src/gui/insEdit.cpp:7471 +msgid "Arpeggio" +msgstr "" + +#: src/gui/insEdit.cpp:6925 src/gui/insEdit.cpp:6932 src/gui/insEdit.cpp:6943 +#: src/gui/insEdit.cpp:6972 src/gui/insEdit.cpp:6984 src/gui/insEdit.cpp:6994 +#: src/gui/insEdit.cpp:7007 src/gui/insEdit.cpp:7054 src/gui/insEdit.cpp:7062 +#: src/gui/insEdit.cpp:7069 src/gui/insEdit.cpp:7088 src/gui/insEdit.cpp:7110 +#: src/gui/insEdit.cpp:7133 src/gui/insEdit.cpp:7144 src/gui/insEdit.cpp:7163 +#: src/gui/insEdit.cpp:7183 src/gui/insEdit.cpp:7194 src/gui/insEdit.cpp:7214 +#: src/gui/insEdit.cpp:7234 src/gui/insEdit.cpp:7242 src/gui/insEdit.cpp:7249 +#: src/gui/insEdit.cpp:7254 src/gui/insEdit.cpp:7260 src/gui/insEdit.cpp:7266 +#: src/gui/insEdit.cpp:7273 src/gui/insEdit.cpp:7281 src/gui/insEdit.cpp:7290 +#: src/gui/insEdit.cpp:7299 src/gui/insEdit.cpp:7307 src/gui/insEdit.cpp:7324 +#: src/gui/insEdit.cpp:7332 src/gui/insEdit.cpp:7338 src/gui/insEdit.cpp:7362 +#: src/gui/insEdit.cpp:7369 src/gui/insEdit.cpp:7377 src/gui/insEdit.cpp:7386 +#: src/gui/insEdit.cpp:7394 src/gui/insEdit.cpp:7402 src/gui/insEdit.cpp:7414 +#: src/gui/insEdit.cpp:7429 src/gui/insEdit.cpp:7440 src/gui/insEdit.cpp:7448 +#: src/gui/insEdit.cpp:7457 src/gui/insEdit.cpp:7475 +msgid "Phase Reset" +msgstr "" + +#: src/gui/insEdit.cpp:6939 src/gui/insEdit.cpp:7024 src/gui/insEdit.cpp:7210 +#: src/gui/insEdit.cpp:7247 +msgid "Duty/Noise" +msgstr "" + +#: src/gui/insEdit.cpp:6966 src/gui/insEdit.cpp:7288 +msgid "Surround" +msgstr "" + +#: src/gui/insEdit.cpp:6968 src/gui/insEdit.cpp:6981 src/gui/insEdit.cpp:7026 +#: src/gui/insEdit.cpp:7085 src/gui/insEdit.cpp:7141 src/gui/insEdit.cpp:7159 +#: src/gui/insEdit.cpp:7180 src/gui/insEdit.cpp:7201 src/gui/insEdit.cpp:7225 +#: src/gui/insEdit.cpp:7278 src/gui/insEdit.cpp:7304 src/gui/insEdit.cpp:7321 +#: src/gui/insEdit.cpp:7329 src/gui/insEdit.cpp:7374 src/gui/insEdit.cpp:7383 +#: src/gui/insEdit.cpp:7399 src/gui/insEdit.cpp:7411 src/gui/insEdit.cpp:7426 +#: src/gui/insEdit.cpp:7454 src/gui/insEdit.cpp:7464 +msgid "Panning (left)" +msgstr "" + +#: src/gui/insEdit.cpp:6969 src/gui/insEdit.cpp:6982 src/gui/insEdit.cpp:7027 +#: src/gui/insEdit.cpp:7086 src/gui/insEdit.cpp:7142 src/gui/insEdit.cpp:7160 +#: src/gui/insEdit.cpp:7181 src/gui/insEdit.cpp:7202 src/gui/insEdit.cpp:7226 +#: src/gui/insEdit.cpp:7279 src/gui/insEdit.cpp:7305 src/gui/insEdit.cpp:7322 +#: src/gui/insEdit.cpp:7330 src/gui/insEdit.cpp:7375 src/gui/insEdit.cpp:7384 +#: src/gui/insEdit.cpp:7400 src/gui/insEdit.cpp:7412 src/gui/insEdit.cpp:7427 +#: src/gui/insEdit.cpp:7455 src/gui/insEdit.cpp:7465 +msgid "Panning (right)" +msgstr "" + +#: src/gui/insEdit.cpp:6990 src/gui/insEdit.cpp:7003 src/gui/insEdit.cpp:7107 +#: src/gui/insEdit.cpp:7199 src/gui/insEdit.cpp:7239 src/gui/insEdit.cpp:7424 +msgid "Noise Freq" +msgstr "" + +#: src/gui/insEdit.cpp:6996 src/gui/insEdit.cpp:7010 src/gui/insEdit.cpp:7167 +msgid "AutoEnv Num" +msgstr "" + +#: src/gui/insEdit.cpp:6997 src/gui/insEdit.cpp:7011 src/gui/insEdit.cpp:7168 +msgid "AutoEnv Den" +msgstr "" + +#: src/gui/insEdit.cpp:7012 +msgid "Noise AND Mask" +msgstr "" + +#: src/gui/insEdit.cpp:7013 +msgid "Noise OR Mask" +msgstr "" + +#: src/gui/insEdit.cpp:7034 +msgid "On/Off" +msgstr "" + +#: src/gui/insEdit.cpp:7060 +msgid "Patch" +msgstr "" + +#: src/gui/insEdit.cpp:7076 +msgid "Mod Depth" +msgstr "" + +#: src/gui/insEdit.cpp:7077 +msgid "Mod Speed" +msgstr "" + +#: src/gui/insEdit.cpp:7078 +msgid "Mod Position" +msgstr "" + +#: src/gui/insEdit.cpp:7083 +msgid "Noise Length" +msgstr "" + +#: src/gui/insEdit.cpp:7093 +msgid "Wave Pos" +msgstr "" + +#: src/gui/insEdit.cpp:7096 +msgid "Wave Length" +msgstr "" + +#: src/gui/insEdit.cpp:7115 +msgid "AUDCTL" +msgstr "" + +#: src/gui/insEdit.cpp:7122 src/gui/insEdit.cpp:7343 +msgid "Pulse Width" +msgstr "" + +#: src/gui/insEdit.cpp:7139 +msgid "Duty/Int" +msgstr "" + +#: src/gui/insEdit.cpp:7145 src/gui/insEdit.cpp:7406 +msgid "Load LFSR" +msgstr "" + +#: src/gui/insEdit.cpp:7165 +msgid "Envelope Mode" +msgstr "" + +#: src/gui/insEdit.cpp:7218 +msgid "Phase Reset Timer" +msgstr "" + +#: src/gui/insEdit.cpp:7252 src/gui/insEdit.cpp:7259 +msgid "Freq Divider" +msgstr "" + +#: src/gui/insEdit.cpp:7255 +msgid "Clock Divider" +msgstr "" + +#: src/gui/insEdit.cpp:7264 +msgid "Global Volume" +msgstr "" + +#: src/gui/insEdit.cpp:7286 +msgid "Echo Level" +msgstr "" + +#: src/gui/insEdit.cpp:7291 +msgid "Echo Feedback" +msgstr "" + +#: src/gui/insEdit.cpp:7292 +msgid "Echo Length" +msgstr "" + +#: src/gui/insEdit.cpp:7312 +msgid "Group Ctrl" +msgstr "" + +#: src/gui/insEdit.cpp:7313 +msgid "Group Attack" +msgstr "" + +#: src/gui/insEdit.cpp:7314 +msgid "Group Decay" +msgstr "" + +#: src/gui/insEdit.cpp:7320 +msgid "Noise Type" +msgstr "" + +#: src/gui/insEdit.cpp:7367 +msgid "Square/Noise" +msgstr "" + +#: src/gui/insEdit.cpp:7404 +msgid "Tap A Location" +msgstr "" + +#: src/gui/insEdit.cpp:7405 +msgid "Tap B Location" +msgstr "" + +#: src/gui/insEdit.cpp:7416 +msgid "Portion A Length" +msgstr "" + +#: src/gui/insEdit.cpp:7417 +msgid "Portion B Length" +msgstr "" + +#: src/gui/insEdit.cpp:7418 +msgid "Portion A Offset" +msgstr "" + +#: src/gui/insEdit.cpp:7419 +msgid "Portion B Offset" +msgstr "" + +#: src/gui/insEdit.cpp:7463 +msgid "Parameter" +msgstr "" + +#: src/gui/insEdit.cpp:7467 +msgid "Load Value" +msgstr "" + +#: src/gui/insEdit.cpp:7479 +msgid "Filter Toggle" +msgstr "" + +#: src/gui/insEdit.cpp:7486 +msgid "Wave Mix" +msgstr "" + +#: src/gui/insEdit.cpp:7500 +msgid "Octave offset" +msgstr "" + +#: src/gui/insEdit.cpp:7505 +msgid "go to Macros for other parameters." +msgstr "" + +#: src/gui/insEdit.cpp:7521 +msgid "invalid instrument type! change it first." +msgstr "" + +#: src/gui/insEdit.cpp:7565 +msgid "clear contents" +msgstr "" + +#: src/gui/insEdit.cpp:7571 +msgid "offset..." +msgstr "" + +#: src/gui/insEdit.cpp:7572 src/gui/insEdit.cpp:7605 +msgid "X" +msgstr "" + +#: src/gui/insEdit.cpp:7573 src/gui/insEdit.cpp:7609 +msgid "Y" +msgstr "" + +#: src/gui/insEdit.cpp:7574 +msgid "offset" +msgstr "" + +#: src/gui/insEdit.cpp:7637 +msgid "Min" +msgstr "" + +#: src/gui/insEdit.cpp:7638 +msgid "Max" +msgstr "" diff --git a/po/locale/de/LC_MESSAGES/furnace.mo b/po/locale/de/LC_MESSAGES/furnace.mo new file mode 100644 index 000000000..4645dd2b8 Binary files /dev/null and b/po/locale/de/LC_MESSAGES/furnace.mo differ diff --git a/po/locale/es/LC_MESSAGES/furnace.mo b/po/locale/es/LC_MESSAGES/furnace.mo new file mode 100644 index 000000000..8fdd11ebf Binary files /dev/null and b/po/locale/es/LC_MESSAGES/furnace.mo differ diff --git a/po/locale/fi/LC_MESSAGES/furnace.mo b/po/locale/fi/LC_MESSAGES/furnace.mo new file mode 100644 index 000000000..aebef0258 Binary files /dev/null and b/po/locale/fi/LC_MESSAGES/furnace.mo differ diff --git a/po/locale/fr/LC_MESSAGES/furnace.mo b/po/locale/fr/LC_MESSAGES/furnace.mo new file mode 100644 index 000000000..e28375b53 Binary files /dev/null and b/po/locale/fr/LC_MESSAGES/furnace.mo differ diff --git a/po/locale/hy/LC_MESSAGES/furnace.mo b/po/locale/hy/LC_MESSAGES/furnace.mo new file mode 100644 index 000000000..ed83025b2 Binary files /dev/null and b/po/locale/hy/LC_MESSAGES/furnace.mo differ diff --git a/po/locale/ko/LC_MESSAGES/furnace.mo b/po/locale/ko/LC_MESSAGES/furnace.mo new file mode 100644 index 000000000..38576bbb5 Binary files /dev/null and b/po/locale/ko/LC_MESSAGES/furnace.mo differ diff --git a/po/locale/nl/LC_MESSAGES/furnace.mo b/po/locale/nl/LC_MESSAGES/furnace.mo new file mode 100644 index 000000000..fbf13c9c0 Binary files /dev/null and b/po/locale/nl/LC_MESSAGES/furnace.mo differ diff --git a/po/locale/pl/LC_MESSAGES/furnace.mo b/po/locale/pl/LC_MESSAGES/furnace.mo new file mode 100644 index 000000000..3a5922441 Binary files /dev/null and b/po/locale/pl/LC_MESSAGES/furnace.mo differ diff --git a/po/locale/pt_BR/LC_MESSAGES/furnace.mo b/po/locale/pt_BR/LC_MESSAGES/furnace.mo new file mode 100644 index 000000000..a610b2737 Binary files /dev/null and b/po/locale/pt_BR/LC_MESSAGES/furnace.mo differ diff --git a/po/locale/ru/LC_MESSAGES/furnace.mo b/po/locale/ru/LC_MESSAGES/furnace.mo new file mode 100644 index 000000000..676df6195 Binary files /dev/null and b/po/locale/ru/LC_MESSAGES/furnace.mo differ diff --git a/po/locale/sk/LC_MESSAGES/furnace.mo b/po/locale/sk/LC_MESSAGES/furnace.mo new file mode 100644 index 000000000..27a9210fd Binary files /dev/null and b/po/locale/sk/LC_MESSAGES/furnace.mo differ diff --git a/po/locale/sv/LC_MESSAGES/furnace.mo b/po/locale/sv/LC_MESSAGES/furnace.mo new file mode 100644 index 000000000..5878432a3 Binary files /dev/null and b/po/locale/sv/LC_MESSAGES/furnace.mo differ diff --git a/po/locale/th/LC_MESSAGES/furnace.mo b/po/locale/th/LC_MESSAGES/furnace.mo new file mode 100644 index 000000000..0fe7ee229 Binary files /dev/null and b/po/locale/th/LC_MESSAGES/furnace.mo differ diff --git a/po/locale/tr/LC_MESSAGES/furnace.mo b/po/locale/tr/LC_MESSAGES/furnace.mo new file mode 100644 index 000000000..344091c55 Binary files /dev/null and b/po/locale/tr/LC_MESSAGES/furnace.mo differ diff --git a/po/locale/uk/LC_MESSAGES/furnace.mo b/po/locale/uk/LC_MESSAGES/furnace.mo new file mode 100644 index 000000000..bc2816ddd Binary files /dev/null and b/po/locale/uk/LC_MESSAGES/furnace.mo differ diff --git a/po/nl.po b/po/nl.po new file mode 100644 index 000000000..b09a685fd --- /dev/null +++ b/po/nl.po @@ -0,0 +1,16075 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: furnace 0.6.3\n" +"POT-Creation-Date: \n" +"PO-Revision-Date: \n" +"Last-Translator: Lunathir\n" +"Language-Team: Lunathir\n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 3.4.4\n" + +#: src/engine/sysDef.cpp:428 src/engine/sysDef.cpp:441 +msgid "20xx: Set channel mode (bit 0: square; bit 1: noise; bit 2: envelope)" +msgstr "" +"20xx: Kanaal modus instellen (bit 0: vierkant; bit 1: ruis; bit 2: " +"omhullende)" + +#: src/engine/sysDef.cpp:429 +msgid "21xx: Set noise frequency (0 to 1F)" +msgstr "21xx: Ruis-frequentie instellen (0 tot 1F)" + +#: src/engine/sysDef.cpp:430 src/engine/sysDef.cpp:443 +msgid "22xy: Set envelope mode (x: shape, y: enable for this channel)" +msgstr "" +"22xy: Omhullende modus instellen (x: vorm, y: aanzetten voor dit kanaal)" + +#: src/engine/sysDef.cpp:431 src/engine/sysDef.cpp:444 +msgid "23xx: Set envelope period low byte" +msgstr "24xx: Omhullende periode laag byte instellen" + +#: src/engine/sysDef.cpp:432 src/engine/sysDef.cpp:445 +msgid "24xx: Set envelope period high byte" +msgstr "24xx: Omhullende periode hoog byte instellen" + +#: src/engine/sysDef.cpp:433 src/engine/sysDef.cpp:446 +#: src/engine/sysDef.cpp:1599 +msgid "25xx: Envelope slide up" +msgstr "25xx: Omhullende omhoog schuiven" + +#: src/engine/sysDef.cpp:434 src/engine/sysDef.cpp:447 +#: src/engine/sysDef.cpp:1600 +msgid "26xx: Envelope slide down" +msgstr "25xx: Omhullende omlaag schuiven" + +#: src/engine/sysDef.cpp:435 src/engine/sysDef.cpp:448 +#: src/engine/sysDef.cpp:1601 +msgid "29xy: Set auto-envelope (x: numerator; y: denominator)" +msgstr "29xy: Auto-omhullendegenerator instellen (x: teller; y: deler)" + +#: src/engine/sysDef.cpp:436 src/engine/sysDef.cpp:449 +msgid "2Exx: Write to I/O port A" +msgstr "2Exx: Schrijven naar I/O-poort A" + +#: src/engine/sysDef.cpp:437 src/engine/sysDef.cpp:450 +msgid "2Fxx: Write to I/O port B" +msgstr "2Fxx: Schrijven naar I/O-poort B" + +#: src/engine/sysDef.cpp:442 +msgid "21xx: Set noise frequency (0 to FF)" +msgstr "21xx: Ruis-frequentie instellen (0 tot FF)" + +#: src/engine/sysDef.cpp:451 +msgid "12xx: Set duty cycle (0 to 8)" +msgstr "12xx: Arbeidscyclus instellen (0 tot 8)" + +#: src/engine/sysDef.cpp:453 +msgid "27xx: Set noise AND mask" +msgstr "27xx: ruis AND masker instellen" + +#: src/engine/sysDef.cpp:454 +msgid "28xx: Set noise OR mask" +msgstr "28xx: ruis OR masker instellen" + +#: src/engine/sysDef.cpp:455 +#, fuzzy +msgid "" +"2Cxy: Automatic noise frequency (x: mode (0: disable, 1: freq, 2: freq + OR " +"mask); y: offset)" +msgstr "" +"2Cxy: Automatisch ruis-frequentie instellen (x: modus (0: uitzetten, 1: " +"freq, 2: freq + OR masker); y: offset)" + +#: src/engine/sysDef.cpp:456 +msgid "2Dxx: NOT TO BE EMPLOYED BY THE COMPOSER" +msgstr "2Dxx: NIET TE GEBRUIKEN DOOR DE COMPONIST" + +#: src/engine/sysDef.cpp:460 +msgid "30xx: Toggle hard envelope reset on new notes" +msgstr "30xx: Harde omhullende reset op nieuwe noten aan/uitzetten" + +#: src/engine/sysDef.cpp:465 +msgid "18xx: Toggle extended channel 3 mode" +msgstr "18xx: Uitgebreid kanaal 3 aan- of uitzetten" + +#: src/engine/sysDef.cpp:470 src/engine/sysDef.cpp:766 +#: src/engine/sysDef.cpp:1025 src/engine/sysDef.cpp:1272 +#: src/engine/sysDef.cpp:1593 +msgid "17xx: Toggle PCM mode (LEGACY)" +msgstr "17xx: DefleMask PCM compatibiliteit-modus aan/uitzetten" + +#: src/engine/sysDef.cpp:471 src/engine/sysDef.cpp:1653 +#: src/engine/sysDef.cpp:1963 +msgid "DFxx: Set sample playback direction (0: normal; 1: reverse)" +msgstr "DFxx: Sample playback richting (0: normaal; 1: omgekeerd)" + +#: src/engine/sysDef.cpp:476 +msgid "18xx: Toggle drums mode (1: enabled; 0: disabled)" +msgstr "18xx: Drums aan- of uitzetten (1: aanzetten; 0: uitzetten)" + +#: src/engine/sysDef.cpp:480 src/engine/sysDef.cpp:554 +#: src/engine/sysDef.cpp:575 +msgid "11xx: Set feedback (0 to 7)" +msgstr "11xx: Terugkoppeling instellen (0 tot 7)" + +#: src/engine/sysDef.cpp:481 +msgid "12xx: Set level of operator 1 (0 highest, 7F lowest)" +msgstr "12xx: Niveau van operator 1 instellen (0 hoogst, 7F laagst)" + +#: src/engine/sysDef.cpp:482 +msgid "13xx: Set level of operator 2 (0 highest, 7F lowest)" +msgstr "13xx: Niveau van operator 2 instellen (0 hoogst, 7F laagst)" + +#: src/engine/sysDef.cpp:483 +msgid "14xx: Set level of operator 3 (0 highest, 7F lowest)" +msgstr "14xx: Niveau van operator 3 instellen (0 hoogst, 7F laagst)" + +#: src/engine/sysDef.cpp:484 +msgid "15xx: Set level of operator 4 (0 highest, 7F lowest)" +msgstr "15xx: Niveau van operator 4 instellen (0 hoogst, 7F laagst)" + +#: src/engine/sysDef.cpp:485 src/engine/sysDef.cpp:580 +#: src/engine/sysDef.cpp:635 +msgid "16xy: Set operator multiplier (x: operator from 1 to 4; y: multiplier)" +msgstr "" +"16xx: Operator vermenigvuldiger instellen (x: operator van 1 tot 4; y: " +"vermenigvuldiger)" + +#: src/engine/sysDef.cpp:486 +msgid "19xx: Set attack of all operators (0 to 1F)" +msgstr "19xx: Aanzet van alle operators (0 tot 1F)" + +#: src/engine/sysDef.cpp:487 +msgid "1Axx: Set attack of operator 1 (0 to 1F)" +msgstr "1Axx: Aanzet van operator 1 (0 tot 1F)" + +#: src/engine/sysDef.cpp:488 +msgid "1Bxx: Set attack of operator 2 (0 to 1F)" +msgstr "1Bxx: Aanzet van operator 2 (0 tot 1F)" + +#: src/engine/sysDef.cpp:489 +msgid "1Cxx: Set attack of operator 3 (0 to 1F)" +msgstr "1Cxx: Aanzet van operator 3 (0 tot 1F)" + +#: src/engine/sysDef.cpp:490 +msgid "1Dxx: Set attack of operator 4 (0 to 1F)" +msgstr "1Dxx: Aanzet van operator 1 (0 tot 1F)" + +#: src/engine/sysDef.cpp:491 src/engine/sysDef.cpp:588 +#: src/engine/sysDef.cpp:656 +msgid "50xy: Set AM (x: operator from 1 to 4 (0 for all ops); y: AM)" +msgstr "50xy: AM instellen (x: operator van 1 tot 4 (0 voor alle ops); y: AM)" + +#: src/engine/sysDef.cpp:492 src/engine/sysDef.cpp:589 +#: src/engine/sysDef.cpp:657 +msgid "" +"51xy: Set sustain level (x: operator from 1 to 4 (0 for all ops); y: sustain)" +msgstr "" +"51xy: Sustain level instellen (x: operator van 1 tot 4 (0 voor alle ops); y: " +"sustain)" + +#: src/engine/sysDef.cpp:493 src/engine/sysDef.cpp:590 +#: src/engine/sysDef.cpp:658 +msgid "52xy: Set release (x: operator from 1 to 4 (0 for all ops); y: release)" +msgstr "" +"52xy: Release instellen (x: operator van 1 tot 4 (0 voor alle ops); y: " +"release)" + +#: src/engine/sysDef.cpp:494 +msgid "" +"53xy: Set detune (x: operator from 1 to 4 (0 for all ops); y: detune where 3 " +"is center)" +msgstr "" +"53xy: Detune instellen (x: operator van 1 tot 4 (0 voor alle ops); y: detune " +"waar 3 is midden)" + +#: src/engine/sysDef.cpp:495 src/engine/sysDef.cpp:592 +#: src/engine/sysDef.cpp:660 +msgid "" +"54xy: Set envelope scale (x: operator from 1 to 4 (0 for all ops); y: scale " +"from 0 to 3)" +msgstr "" +"54xy: Omhullingsschaal instellen (x: operator van 1 tot 4 (0 voor alle ops); " +"y: schaal van 0 tot 3)" + +#: src/engine/sysDef.cpp:496 +msgid "56xx: Set decay of all operators (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:497 +msgid "57xx: Set decay of operator 1 (0 to 1F)" +msgstr "57xx: Decay van operator 1 instellen (0 to 1F)" + +#: src/engine/sysDef.cpp:498 +msgid "58xx: Set decay of operator 2 (0 to 1F)" +msgstr "58xx: Decay van operator 2 instellen (0 to 1F)" + +#: src/engine/sysDef.cpp:499 +msgid "59xx: Set decay of operator 3 (0 to 1F)" +msgstr "59xx: Decay van operator 3 instellen (0 to 1F)" + +#: src/engine/sysDef.cpp:500 +msgid "5Axx: Set decay of operator 4 (0 to 1F)" +msgstr "5Axx: Decay van operator 4 instellen (0 to 1F)" + +#: src/engine/sysDef.cpp:501 +msgid "5Bxx: Set decay 2 of all operators (0 to 1F)" +msgstr "5Bxx: Decay 2 van alle operators instellen (0 to 1F)" + +#: src/engine/sysDef.cpp:502 +msgid "5Cxx: Set decay 2 of operator 1 (0 to 1F)" +msgstr "5Cxx: Decay 2 van operator 1 instellen (0 to 1F)" + +#: src/engine/sysDef.cpp:503 +msgid "5Dxx: Set decay 2 of operator 2 (0 to 1F)" +msgstr "5Dxx: Decay 2 van operator 2 instellen (0 to 1F)" + +#: src/engine/sysDef.cpp:504 +msgid "5Exx: Set decay 2 of operator 3 (0 to 1F)" +msgstr "5Exx: Decay 2 van operator 3 instellen (0 to 1F)" + +#: src/engine/sysDef.cpp:505 +msgid "5Fxx: Set decay 2 of operator 4 (0 to 1F)" +msgstr "5Fxx: Decay 2 van operator 4 instellen (0 to 1F)" + +#: src/engine/sysDef.cpp:510 +msgid "10xx: Set noise frequency (xx: value; 0 disables noise)" +msgstr "10xx: Ruis-frequentie instellen (xx: waarde; 0 ruis uitschakelen)" + +#: src/engine/sysDef.cpp:511 +msgid "17xx: Set LFO speed" +msgstr "" + +#: src/engine/sysDef.cpp:512 +msgid "18xx: Set LFO waveform (0 saw, 1 square, 2 triangle, 3 noise)" +msgstr "" + +#: src/engine/sysDef.cpp:513 +msgid "1Exx: Set AM depth (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:514 +msgid "1Fxx: Set PM depth (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:515 +msgid "" +"55xy: Set detune 2 (x: operator from 1 to 4 (0 for all ops); y: detune from " +"0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:520 +msgid "24xx: Set LFO 2 speed" +msgstr "" + +#: src/engine/sysDef.cpp:521 +msgid "25xx: Set LFO 2 waveform (0 saw, 1 square, 2 triangle, 3 noise)" +msgstr "" + +#: src/engine/sysDef.cpp:522 +msgid "26xx: Set AM 2 depth (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:523 +msgid "27xx: Set PM 2 depth (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:524 +msgid "" +"28xy: Set reverb (x: operator from 1 to 4 (0 for all ops); y: reverb from 0 " +"to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:525 src/engine/sysDef.cpp:650 +msgid "" +"2Axy: Set waveform (x: operator from 1 to 4 (0 for all ops); y: waveform " +"from 0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:526 +msgid "" +"2Bxy: Set envelope generator shift (x: operator from 1 to 4 (0 for all ops); " +"y: shift from 0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:527 +msgid "" +"2Cxy: Set fine multiplier (x: operator from 1 to 4 (0 for all ops); y: fine)" +msgstr "" + +#: src/engine/sysDef.cpp:530 +msgid "" +"3xyy: Set fixed frequency of operator 1 (x: octave from 0 to 7; y: frequency)" +msgstr "" + +#: src/engine/sysDef.cpp:531 +msgid "" +"3xyy: Set fixed frequency of operator 2 (x: octave from 8 to F; y: frequency)" +msgstr "" + +#: src/engine/sysDef.cpp:532 +msgid "" +"4xyy: Set fixed frequency of operator 3 (x: octave from 0 to 7; y: frequency)" +msgstr "" + +#: src/engine/sysDef.cpp:533 +msgid "" +"4xyy: Set fixed frequency of operator 4 (x: octave from 8 to F; y: frequency)" +msgstr "" + +#: src/engine/sysDef.cpp:540 +msgid "10xy: Setup LFO (x: enable; y: speed)" +msgstr "" + +#: src/engine/sysDef.cpp:541 +msgid "" +"55xy: Set SSG envelope (x: operator from 1 to 4 (0 for all ops); y: 0-7 on, " +"8 off)" +msgstr "" + +#: src/engine/sysDef.cpp:549 +msgid "1Fxx: Set ADPCM-A global volume (0 to 3F)" +msgstr "" + +#: src/engine/sysDef.cpp:553 +msgid "10xx: Set patch (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:555 src/engine/sysDef.cpp:576 +#: src/engine/sysDef.cpp:631 +msgid "12xx: Set level of operator 1 (0 highest, 3F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:556 src/engine/sysDef.cpp:577 +#: src/engine/sysDef.cpp:632 +msgid "13xx: Set level of operator 2 (0 highest, 3F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:557 +msgid "16xy: Set operator multiplier (x: operator from 1 to 2; y: multiplier)" +msgstr "" + +#: src/engine/sysDef.cpp:558 src/engine/sysDef.cpp:582 +#: src/engine/sysDef.cpp:637 +msgid "19xx: Set attack of all operators (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:559 src/engine/sysDef.cpp:583 +#: src/engine/sysDef.cpp:638 +msgid "1Axx: Set attack of operator 1 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:560 src/engine/sysDef.cpp:584 +#: src/engine/sysDef.cpp:639 +msgid "1Bxx: Set attack of operator 2 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:561 +msgid "50xy: Set AM (x: operator from 1 to 2 (0 for all ops); y: AM)" +msgstr "" + +#: src/engine/sysDef.cpp:562 +msgid "" +"51xy: Set sustain level (x: operator from 1 to 2 (0 for all ops); y: sustain)" +msgstr "" + +#: src/engine/sysDef.cpp:563 +msgid "52xy: Set release (x: operator from 1 to 2 (0 for all ops); y: release)" +msgstr "" + +#: src/engine/sysDef.cpp:564 +msgid "53xy: Set vibrato (x: operator from 1 to 2 (0 for all ops); y: enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:565 +msgid "" +"54xy: Set envelope scale (x: operator from 1 to 2 (0 for all ops); y: scale " +"from 0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:566 +msgid "" +"55xy: Set envelope sustain (x: operator from 1 to 2 (0 for all ops); y: " +"enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:567 src/engine/sysDef.cpp:594 +#: src/engine/sysDef.cpp:662 +msgid "56xx: Set decay of all operators (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:568 src/engine/sysDef.cpp:595 +#: src/engine/sysDef.cpp:663 +msgid "57xx: Set decay of operator 1 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:569 src/engine/sysDef.cpp:596 +#: src/engine/sysDef.cpp:664 +msgid "58xx: Set decay of operator 2 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:570 +msgid "" +"5Bxy: Set whether key will scale envelope (x: operator from 1 to 2 (0 for " +"all ops); y: enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:574 +msgid "10xx: Set global AM depth (0: 1dB, 1: 4.8dB)" +msgstr "" + +#: src/engine/sysDef.cpp:578 src/engine/sysDef.cpp:633 +msgid "14xx: Set level of operator 3 (0 highest, 3F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:579 src/engine/sysDef.cpp:634 +msgid "15xx: Set level of operator 4 (0 highest, 3F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:581 +msgid "17xx: Set global vibrato depth (0: normal, 1: double)" +msgstr "" + +#: src/engine/sysDef.cpp:585 src/engine/sysDef.cpp:640 +msgid "1Cxx: Set attack of operator 3 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:586 src/engine/sysDef.cpp:641 +msgid "1Dxx: Set attack of operator 4 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:587 +msgid "" +"2Axy: Set waveform (x: operator from 1 to 4 (0 for all ops); y: waveform " +"from 0 to 3 in OPL2 and 0 to 7 in OPL3)" +msgstr "" + +#: src/engine/sysDef.cpp:591 src/engine/sysDef.cpp:659 +msgid "53xy: Set vibrato (x: operator from 1 to 4 (0 for all ops); y: enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:593 src/engine/sysDef.cpp:661 +msgid "" +"55xy: Set envelope sustain (x: operator from 1 to 4 (0 for all ops); y: " +"enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:597 src/engine/sysDef.cpp:665 +msgid "59xx: Set decay of operator 3 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:598 src/engine/sysDef.cpp:666 +msgid "5Axx: Set decay of operator 4 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:599 src/engine/sysDef.cpp:667 +msgid "" +"5Bxy: Set whether key will scale envelope (x: operator from 1 to 4 (0 for " +"all ops); y: enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:603 src/engine/sysDef.cpp:680 +msgid "" +"10xx: Set waveform (bit 0: triangle; bit 1: saw; bit 2: pulse; bit 3: noise)" +msgstr "" + +#: src/engine/sysDef.cpp:604 +msgid "11xx: Set coarse cutoff (not recommended; use 4xxx instead)" +msgstr "" + +#: src/engine/sysDef.cpp:605 +msgid "12xx: Set coarse pulse width (not recommended; use 3xxx instead)" +msgstr "" + +#: src/engine/sysDef.cpp:606 +msgid "13xx: Set resonance (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:607 +msgid "" +"14xx: Set filter mode (bit 0: low pass; bit 1: band pass; bit 2: high pass)" +msgstr "" + +#: src/engine/sysDef.cpp:608 +msgid "15xx: Set envelope reset time" +msgstr "" + +#: src/engine/sysDef.cpp:609 +msgid "1Axx: Disable envelope reset for this channel (1 disables; 0 enables)" +msgstr "" + +#: src/engine/sysDef.cpp:610 +msgid "1Bxy: Reset cutoff (x: on new note; y: now)" +msgstr "" + +#: src/engine/sysDef.cpp:611 +msgid "1Cxy: Reset pulse width (x: on new note; y: now)" +msgstr "1Cxy: Pulsbreedte resetten (x: op nieuwe noot; y: nu)" + +#: src/engine/sysDef.cpp:612 +msgid "1Exy: Change other parameters (LEGACY)" +msgstr "" + +#: src/engine/sysDef.cpp:613 +msgid "20xy: Set attack/decay (x: attack; y: decay)" +msgstr "" + +#: src/engine/sysDef.cpp:614 +msgid "21xy: Set sustain/release (x: sustain; y: release)" +msgstr "" + +#: src/engine/sysDef.cpp:616 src/engine/sysDef.cpp:688 +msgid "3xxx: Set pulse width (0 to FFF)" +msgstr "3xxx: Pulsbreedte instellen (0 tot FFF)" + +#: src/engine/sysDef.cpp:617 +msgid "4xxx: Set cutoff (0 to 7FF)" +msgstr "4xxx: Kantelfrequentie instellen (0 tot 7FF)" + +#: src/engine/sysDef.cpp:622 src/engine/sysDef.cpp:745 +#: src/engine/sysDef.cpp:762 src/engine/sysDef.cpp:1000 +#: src/engine/sysDef.cpp:1050 src/engine/sysDef.cpp:1268 +#: src/engine/sysDef.cpp:1320 src/engine/sysDef.cpp:1590 +#: src/engine/sysDef.cpp:1788 src/engine/sysDef.cpp:1792 +#: src/engine/sysDef.cpp:1893 src/engine/sysDef.cpp:2063 +#: src/engine/sysDef.cpp:2077 +msgid "10xx: Set waveform" +msgstr "10xx: Golfvorm instellen" + +#: src/engine/sysDef.cpp:626 +msgid "20xx: Set PCM frequency" +msgstr "20xx: PCM-frequentie instellen" + +#: src/engine/sysDef.cpp:630 +msgid "" +"10xy: Set AM depth (x: operator from 1 to 4 (0 for all ops); y: depth (0: " +"1dB, 1: 4.8dB))" +msgstr "" + +#: src/engine/sysDef.cpp:636 +msgid "" +"17xy: Set vibrato depth (x: operator from 1 to 4 (0 for all ops); y: depth " +"(0: normal, 1: double))" +msgstr "" + +#: src/engine/sysDef.cpp:642 +msgid "20xy: Set panning of operator 1 (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:643 +msgid "21xy: Set panning of operator 2 (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:644 +msgid "22xy: Set panning of operator 3 (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:645 +msgid "23xy: Set panning of operator 4 (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:646 +msgid "" +"24xy: Set output level register (x: operator from 1 to 4 (0 for all ops); y: " +"level from 0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:647 +msgid "" +"25xy: Set modulation input level (x: operator from 1 to 4 (0 for all ops); " +"y: level from 0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:648 +msgid "" +"26xy: Set envelope delay (x: operator from 1 to 4 (0 for all ops); y: delay " +"from 0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:649 +msgid "27xx: Set noise mode for operator 4 (x: mode from 0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:651 +msgid "" +"2Fxy: Set fixed frequency block (x: operator from 1 to 4; y: octave from 0 " +"to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:652 +msgid "40xx: Set detune of operator 1 (80: center)" +msgstr "40xx: FM-operator 1 detune instellen (80: center)" + +#: src/engine/sysDef.cpp:653 +msgid "41xx: Set detune of operator 2 (80: center)" +msgstr "41xx: FM-operator 2 detune instellen (80: center)" + +#: src/engine/sysDef.cpp:654 +msgid "42xx: Set detune of operator 3 (80: center)" +msgstr "42xx: FM-operator 3 detune instellen (80: center)" + +#: src/engine/sysDef.cpp:655 +msgid "43xx: Set detune of operator 4 (80: center)" +msgstr "43xx: FM-operator 4 detune instellen (80: center)" + +#: src/engine/sysDef.cpp:670 +msgid "" +"3xyy: Set fixed frequency F-num of operator 1 (x: high 2 bits from 0 to 3; " +"y: low 8 bits of F-num)" +msgstr "" + +#: src/engine/sysDef.cpp:671 +msgid "" +"3xyy: Set fixed frequency F-num of operator 2 (x: high 2 bits from 4 to 7; " +"y: low 8 bits of F-num)" +msgstr "" + +#: src/engine/sysDef.cpp:672 +msgid "" +"3xyy: Set fixed frequency F-num of operator 3 (x: high 2 bits from 8 to B; " +"y: low 8 bits of F-num)" +msgstr "" + +#: src/engine/sysDef.cpp:673 +msgid "" +"3xyy: Set fixed frequency F-num of operator 4 (x: high 2 bits from C to F; " +"y: low 8 bits of F-num)" +msgstr "" + +#: src/engine/sysDef.cpp:681 +msgid "11xx: Set resonance (0 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:682 +msgid "" +"12xx: Set filter mode (bit 0: low pass; bit 1: band pass; bit 2: high pass)" +msgstr "" + +#: src/engine/sysDef.cpp:683 +msgid "13xx: Disable envelope reset for this channel (1 disables; 0 enables)" +msgstr "" + +#: src/engine/sysDef.cpp:684 +msgid "14xy: Reset cutoff (x: on new note; y: now)" +msgstr "" + +#: src/engine/sysDef.cpp:685 +msgid "15xy: Reset pulse width (x: on new note; y: now)" +msgstr "" + +#: src/engine/sysDef.cpp:686 +msgid "16xy: Change other parameters" +msgstr "" + +#: src/engine/sysDef.cpp:689 src/engine/sysDef.cpp:1733 +msgid "4xxx: Set cutoff (0 to FFF)" +msgstr "" + +#: src/engine/sysDef.cpp:697 +msgid "Yamaha YMU759 (MA-2)" +msgstr "" + +#: src/engine/sysDef.cpp:698 +msgid "" +"a chip which found its way inside mobile phones in the 2000's.\n" +"as proprietary as it is, it passed away after losing to MP3 in the mobile " +"hardware battle." +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:807 src/engine/sysDef.cpp:819 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:915 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1237 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1314 src/engine/sysDef.cpp:1356 +#: src/engine/sysDef.cpp:1396 src/engine/sysDef.cpp:1499 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1572 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1608 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1799 src/engine/sysDef.cpp:1810 +#: src/engine/sysDef.cpp:1821 src/engine/sysDef.cpp:1832 +#: src/engine/sysDef.cpp:1900 src/engine/sysDef.cpp:1910 +#: src/engine/sysDef.cpp:1920 src/engine/sysDef.cpp:1944 +#: src/engine/sysDef.cpp:1957 src/engine/sysDef.cpp:1970 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2037 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2122 +#: src/engine/sysDef.cpp:2138 src/engine/sysDef.cpp:2150 +msgid "Channel 1" +msgstr "Kanaal 1" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:807 src/engine/sysDef.cpp:819 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:915 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1237 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1314 src/engine/sysDef.cpp:1356 +#: src/engine/sysDef.cpp:1396 src/engine/sysDef.cpp:1499 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1572 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1608 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1799 src/engine/sysDef.cpp:1810 +#: src/engine/sysDef.cpp:1821 src/engine/sysDef.cpp:1832 +#: src/engine/sysDef.cpp:1900 src/engine/sysDef.cpp:1910 +#: src/engine/sysDef.cpp:1920 src/engine/sysDef.cpp:1944 +#: src/engine/sysDef.cpp:1957 src/engine/sysDef.cpp:1970 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2037 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2122 +#: src/engine/sysDef.cpp:2138 src/engine/sysDef.cpp:2150 +msgid "Channel 2" +msgstr "Kanaal 2" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:807 src/engine/sysDef.cpp:819 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1237 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1314 +#: src/engine/sysDef.cpp:1356 src/engine/sysDef.cpp:1396 +#: src/engine/sysDef.cpp:1499 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1572 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1799 src/engine/sysDef.cpp:1810 +#: src/engine/sysDef.cpp:1821 src/engine/sysDef.cpp:1832 +#: src/engine/sysDef.cpp:1910 src/engine/sysDef.cpp:1944 +#: src/engine/sysDef.cpp:1957 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2037 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +#: src/engine/sysDef.cpp:2122 src/engine/sysDef.cpp:2138 +#: src/engine/sysDef.cpp:2150 +msgid "Channel 3" +msgstr "Kanaal 3" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1237 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1314 +#: src/engine/sysDef.cpp:1356 src/engine/sysDef.cpp:1396 +#: src/engine/sysDef.cpp:1499 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1572 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1910 +#: src/engine/sysDef.cpp:1944 src/engine/sysDef.cpp:1957 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +#: src/engine/sysDef.cpp:2122 src/engine/sysDef.cpp:2150 +msgid "Channel 4" +msgstr "Kanaal 4" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1314 +#: src/engine/sysDef.cpp:1356 src/engine/sysDef.cpp:1396 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1572 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1705 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 5" +msgstr "Kanaal 5" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1356 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 6" +msgstr "Kanaal 6" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 7" +msgstr "Kanaal 7" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 8" +msgstr "Kanaal 8" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 9" +msgstr "Kanaal 9" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 10" +msgstr "Kanaal 10" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 11" +msgstr "Kanaal 11" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 12" +msgstr "Kanaal 12" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 13" +msgstr "Kanaal 13" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 14" +msgstr "Kanaal 14" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 15" +msgstr "Kanaal 15" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 16" +msgstr "Kanaal 16" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:700 +#: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1767 src/engine/sysDef.cpp:1888 +#: src/engine/sysDef.cpp:1944 src/engine/sysDef.cpp:1945 +#: src/gui/settings.cpp:4094 +msgid "PCM" +msgstr "PCM" + +#: src/engine/sysDef.cpp:706 +msgid "Sega Genesis/Mega Drive" +msgstr "Sega Mega Drive" + +#: src/engine/sysDef.cpp:712 +msgid "Sega Genesis Extended Channel 3" +msgstr "Sega Mega Drive Uitgebreid Kanaal 3" + +#: src/engine/sysDef.cpp:718 src/gui/sysConf.cpp:158 +msgid "TI SN76489" +msgstr "TI SN76489" + +#: src/engine/sysDef.cpp:719 +msgid "" +"a square/noise sound chip found on the Sega Master System, ColecoVision, " +"Tandy, TI's own 99/4A and a few other places." +msgstr "" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 +msgid "Square 1" +msgstr "Square 1" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 +msgid "Square 2" +msgstr "Square 2" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 +msgid "Square 3" +msgstr "Square 3" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:739 +#: src/engine/sysDef.cpp:773 src/engine/sysDef.cpp:955 +#: src/engine/sysDef.cpp:1314 src/engine/sysDef.cpp:1874 +#: src/engine/sysDef.cpp:1920 src/engine/sysDef.cpp:2037 +#: src/engine/sysDef.cpp:2100 src/gui/settings.cpp:4093 +#: src/gui/insEdit.cpp:6978 src/gui/insEdit.cpp:7129 src/gui/insEdit.cpp:7223 +#: src/gui/insEdit.cpp:7315 +msgid "Noise" +msgstr "Ruis" + +#: src/engine/sysDef.cpp:726 +#, fuzzy +msgid "20xy: Set noise mode (x: preset freq/ch3 freq; y: thin pulse/noise)" +msgstr "20xy: Ruis modus instellen (x: )" + +#: src/engine/sysDef.cpp:731 +msgid "Sega Master System + FM Expansion" +msgstr "Sega Master System + FM Expansion" + +#: src/engine/sysDef.cpp:737 src/gui/settings.cpp:4025 +msgid "Game Boy" +msgstr "Game Boy" + +#: src/engine/sysDef.cpp:738 +msgid "the most popular portable game console of the era." +msgstr "de populairste draagbare spelcomputer uit die tijd." + +#: src/engine/sysDef.cpp:739 src/engine/sysDef.cpp:773 +#: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:2100 +msgid "Pulse 1" +msgstr "Puls 1" + +#: src/engine/sysDef.cpp:739 src/engine/sysDef.cpp:773 +#: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:2100 +msgid "Pulse 2" +msgstr "Puls 2" + +#: src/engine/sysDef.cpp:739 src/gui/settings.cpp:3930 +#: src/gui/guiConst.cpp:1395 src/gui/insEdit.cpp:6652 +msgid "Wavetable" +msgstr "Wavetable" + +#: src/engine/sysDef.cpp:746 +msgid "11xx: Set noise length (0: long; 1: short)" +msgstr "" + +#: src/engine/sysDef.cpp:747 +msgid "12xx: Set duty cycle (0 to 3)" +msgstr "12xx: Arbeidscyclus instellen (0 tot 3)" + +#: src/engine/sysDef.cpp:748 +msgid "13xy: Setup sweep (x: time; y: shift)" +msgstr "" + +#: src/engine/sysDef.cpp:749 +msgid "14xx: Set sweep direction (0: up; 1: down)" +msgstr "" + +#: src/engine/sysDef.cpp:754 +msgid "PC Engine/TurboGrafx-16" +msgstr "" + +#: src/engine/sysDef.cpp:755 +msgid "an '80s game console with a wavetable sound chip, popular in Japan." +msgstr "" + +#: src/engine/sysDef.cpp:763 src/engine/sysDef.cpp:1001 +#: src/engine/sysDef.cpp:1793 +msgid "11xx: Toggle noise mode" +msgstr "" + +#: src/engine/sysDef.cpp:764 +msgid "12xx: Setup LFO (0: disabled; 1: 1x depth; 2: 16x depth; 3: 256x depth)" +msgstr "" + +#: src/engine/sysDef.cpp:765 +msgid "13xx: Set LFO speed" +msgstr "13xx: LFO snelheid instellen" + +#: src/engine/sysDef.cpp:771 +msgid "NES (Ricoh 2A03)" +msgstr "NES (Ricoh 2A03)" + +#: src/engine/sysDef.cpp:772 +msgid "" +"also known as Famicom in Japan, it's the most well-known game console of the " +"'80s." +msgstr "" +"ook bekend als Famicom in Japan, het is de meest bekend spelcomputer uit de " +"'80s." + +#: src/engine/sysDef.cpp:773 src/gui/waveEdit.cpp:31 src/gui/waveEdit.cpp:217 +#: src/gui/insEdit.cpp:200 src/gui/insEdit.cpp:324 src/gui/insEdit.cpp:658 +msgid "Triangle" +msgstr "" + +#: src/engine/sysDef.cpp:773 src/engine/sysDef.cpp:2100 +#: src/gui/insEdit.cpp:2629 +msgid "DPCM" +msgstr "" + +#: src/engine/sysDef.cpp:779 src/engine/sysDef.cpp:2106 +msgid "11xx: Write to delta modulation counter (0 to 7F)" +msgstr "11xx: Schrijf delta-modulatieteller (0 tot 7F)" + +#: src/engine/sysDef.cpp:780 src/engine/sysDef.cpp:1068 +msgid "12xx: Set duty cycle/noise mode (pulse: 0 to 3; noise: 0 or 1)" +msgstr "" +"12xx: Arbeidscyclus/ruis modus instellen: (puls: 0 tot 3; ruis: 0 of 1)" + +#: src/engine/sysDef.cpp:781 src/engine/sysDef.cpp:2108 +msgid "13xy: Sweep up (x: time; y: shift)" +msgstr "" + +#: src/engine/sysDef.cpp:782 src/engine/sysDef.cpp:2109 +msgid "14xy: Sweep down (x: time; y: shift)" +msgstr "" + +#: src/engine/sysDef.cpp:783 src/engine/sysDef.cpp:2110 +msgid "" +"15xx: Set envelope mode (0: envelope, 1: length, 2: looping, 3: constant)" +msgstr "" + +#: src/engine/sysDef.cpp:784 src/engine/sysDef.cpp:2111 +msgid "16xx: Set length counter (refer to manual for a list of values)" +msgstr "" + +#: src/engine/sysDef.cpp:785 src/engine/sysDef.cpp:2112 +msgid "17xx: Set frame counter mode (0: 4-step, 1: 5-step)" +msgstr "" + +#: src/engine/sysDef.cpp:786 src/engine/sysDef.cpp:2113 +msgid "18xx: Select PCM/DPCM mode (0: PCM; 1: DPCM)" +msgstr "" + +#: src/engine/sysDef.cpp:787 src/engine/sysDef.cpp:2114 +msgid "19xx: Set triangle linear counter (0 to 7F; 80 and higher halt)" +msgstr "" + +#: src/engine/sysDef.cpp:788 src/engine/sysDef.cpp:2115 +msgid "20xx: Set DPCM frequency (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:793 +msgid "NES + Konami VRC7" +msgstr "" + +#: src/engine/sysDef.cpp:799 +msgid "Famicom Disk System" +msgstr "Famicom Disk System" + +#: src/engine/sysDef.cpp:805 +msgid "Commodore 64 (SID 6581)" +msgstr "Commodore 64 (SID 6581)" + +#: src/engine/sysDef.cpp:806 +msgid "" +"this computer is powered by the SID chip, which had synthesizer features " +"like a filter and ADSR." +msgstr "" +"deze computer wordt mogelijk gemaakt door de SID chip, de synthese-" +"eigenschappen had zoals een filter en een ADSR." + +#: src/engine/sysDef.cpp:817 +msgid "Commodore 64 (SID 8580)" +msgstr "Commodore 64 (SID 8580)" + +#: src/engine/sysDef.cpp:818 +msgid "" +"this computer is powered by the SID chip, which had synthesizer features " +"like a filter and ADSR.\n" +"this is the newer revision of the chip." +msgstr "" +"deze computer wordt mogelijk gemaakt door de SID chip, de synthese-" +"eigenschappen had zoals een filter en een ADSR.\n" +"deze is de nieuwer revisie van de chip." + +#: src/engine/sysDef.cpp:829 +msgid "DefleCade" +msgstr "DefleCade" + +#: src/engine/sysDef.cpp:835 +msgid "Neo Geo CD" +msgstr "Neo Geo CD" + +#: src/engine/sysDef.cpp:836 +msgid "" +"like Neo Geo, but lacking the ADPCM-B channel since they couldn't connect " +"the pins." +msgstr "" +"zoals Neo Geo, maar geen ADPCM-B omdat ze de pinnen niet konden aansluiten." + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1173 +#: src/engine/sysDef.cpp:1185 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1443 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +#: src/engine/sysDef.cpp:2006 +msgid "FM 1" +msgstr "FM 1" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:891 +#: src/engine/sysDef.cpp:903 src/engine/sysDef.cpp:1032 +#: src/engine/sysDef.cpp:1097 src/engine/sysDef.cpp:1109 +#: src/engine/sysDef.cpp:1122 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1546 +#: src/engine/sysDef.cpp:1559 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:1693 src/engine/sysDef.cpp:1849 +#: src/engine/sysDef.cpp:1861 src/engine/sysDef.cpp:2006 +msgid "FM 2" +msgstr "FM 2" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1173 +#: src/engine/sysDef.cpp:1185 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1443 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:2006 +msgid "FM 3" +msgstr "FM 3" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1546 +#: src/engine/sysDef.cpp:1559 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:1693 src/engine/sysDef.cpp:1849 +#: src/engine/sysDef.cpp:1861 src/engine/sysDef.cpp:2006 +msgid "FM 4" +msgstr "FM 4" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:862 src/engine/sysDef.cpp:927 +#: src/engine/sysDef.cpp:943 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "PSG 1" +msgstr "PSG 1" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:862 src/engine/sysDef.cpp:927 +#: src/engine/sysDef.cpp:943 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "PSG 2" +msgstr "PSG 2" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:862 src/engine/sysDef.cpp:927 +#: src/engine/sysDef.cpp:943 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "PSG 3" +msgstr "PSG 3" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 1" +msgstr "ADPCM-A 1" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 2" +msgstr "ADPCM-A 2" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 3" +msgstr "ADPCM-A 3" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 4" +msgstr "ADPCM-A 4" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 5" +msgstr "ADPCM-A 5" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 6" +msgstr "ADPCM-A 6" + +#: src/engine/sysDef.cpp:847 +msgid "Neo Geo CD Extended Channel 2" +msgstr "Neo Geo CD Uitgebreid Kanaal 2" + +#: src/engine/sysDef.cpp:848 +#, fuzzy +msgid "" +"like Neo Geo, but lacking the ADPCM-B channel since they couldn't connect " +"the pins.\n" +"this one is in Extended Channel mode, which turns the second FM channel into " +"four operators with independent notes/frequencies." +msgstr "" +"zoals Neo Geo, maar geen ADPCM-B omdat ze de pinnen niet konden aansluiten." + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP1" +msgstr "" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP2" +msgstr "" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP3" +msgstr "" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP4" +msgstr "" + +#: src/engine/sysDef.cpp:860 src/gui/sysConf.cpp:913 +msgid "AY-3-8910" +msgstr "" + +#: src/engine/sysDef.cpp:861 +msgid "" +"this chip is everywhere! ZX Spectrum, MSX, Amstrad CPC, Intellivision, " +"Vectrex...\n" +"the discovery of envelope bass helped it beat the SN76489 with ease." +msgstr "" + +#: src/engine/sysDef.cpp:872 +msgid "Amiga" +msgstr "" + +#: src/engine/sysDef.cpp:873 +msgid "" +"a computer from the '80s with full sampling capabilities, giving it a sound " +"ahead of its time." +msgstr "" + +#: src/engine/sysDef.cpp:881 +msgid "10xx: Toggle filter (0 disables; 1 enables)" +msgstr "" + +#: src/engine/sysDef.cpp:882 +msgid "11xx: Toggle AM with next channel" +msgstr "" + +#: src/engine/sysDef.cpp:883 +msgid "12xx: Toggle period modulation with next channel" +msgstr "" + +#: src/engine/sysDef.cpp:884 +msgid "13xx: Set waveform" +msgstr "13xx: Golfvorm instellen" + +#: src/engine/sysDef.cpp:889 +msgid "Yamaha YM2151 (OPM)" +msgstr "Yamaha YM2151 (OPM)" + +#: src/engine/sysDef.cpp:890 +msgid "" +"this was Yamaha's first integrated FM chip.\n" +"it was used in several synthesizers, computers and arcade boards." +msgstr "" +"dit was Yamaha's eerste geïntegereerde FM-chip.\n" +"het was gebruikt in verschillende synthesizers, computers en arcadespelen." + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1279 src/engine/sysDef.cpp:1332 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1370 +#: src/engine/sysDef.cpp:1383 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +#: src/engine/sysDef.cpp:2006 +msgid "FM 5" +msgstr "" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:2006 +msgid "FM 6" +msgstr "" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:1032 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1279 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:2006 +msgid "FM 7" +msgstr "" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:1032 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:2006 +msgid "FM 8" +msgstr "" + +#: src/engine/sysDef.cpp:901 +msgid "Yamaha YM2612 (OPN2)" +msgstr "" + +#: src/engine/sysDef.cpp:902 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer)." +msgstr "" + +#: src/engine/sysDef.cpp:913 +msgid "Atari TIA" +msgstr "" + +#: src/engine/sysDef.cpp:914 +#, fuzzy +msgid "" +"it's a challenge to make music on this chip which barely has musical " +"capabilities..." +msgstr "++++het is moeilijk om muziek te maken op deze chip++++" + +#: src/engine/sysDef.cpp:925 +msgid "Philips SAA1099" +msgstr "" + +#: src/engine/sysDef.cpp:926 +msgid "" +"supposedly an upgrade from the AY-3-8910, this was present on the Creative " +"Music System (Game Blaster) and SAM Coupé." +msgstr "" + +#: src/engine/sysDef.cpp:927 +msgid "PSG 4" +msgstr "" + +#: src/engine/sysDef.cpp:927 +msgid "PSG 5" +msgstr "" + +#: src/engine/sysDef.cpp:927 +msgid "PSG 6" +msgstr "" + +#: src/engine/sysDef.cpp:934 +msgid "10xy: Set channel mode (x: noise; y: tone)" +msgstr "" + +#: src/engine/sysDef.cpp:935 +msgid "11xx: Set noise frequency" +msgstr "" + +#: src/engine/sysDef.cpp:936 +msgid "12xx: Setup envelope (refer to docs for more information)" +msgstr "" + +#: src/engine/sysDef.cpp:941 +msgid "Microchip AY8930" +msgstr "" + +#: src/engine/sysDef.cpp:942 +msgid "" +"an improved version of the AY-3-8910 with a bigger frequency range, duty " +"cycles, configurable noise and per-channel envelopes!" +msgstr "" + +#: src/engine/sysDef.cpp:953 +msgid "Commodore VIC-20" +msgstr "" + +#: src/engine/sysDef.cpp:954 +msgid "" +"Commodore's successor to the PET.\n" +"its square wave channels are more than just square..." +msgstr "" + +#: src/engine/sysDef.cpp:955 src/gui/settings.cpp:136 src/gui/settings.cpp:206 +#: src/gui/settings.cpp:3970 +msgid "Low" +msgstr "" + +#: src/engine/sysDef.cpp:955 +msgid "Mid" +msgstr "" + +#: src/engine/sysDef.cpp:955 src/gui/settings.cpp:135 src/gui/settings.cpp:208 +#: src/gui/settings.cpp:3971 +msgid "High" +msgstr "" + +#: src/engine/sysDef.cpp:964 +msgid "Commodore PET" +msgstr "" + +#: src/engine/sysDef.cpp:965 +msgid "" +"one channel of 1-bit wavetable which is better (and worse) than the PC " +"Speaker." +msgstr "" + +#: src/engine/sysDef.cpp:966 src/engine/sysDef.cpp:1262 +#: src/engine/sysDef.cpp:2100 src/gui/editControls.cpp:433 +#: src/gui/settings.cpp:4017 src/gui/settings.cpp:4095 +msgid "Wave" +msgstr "" + +#: src/engine/sysDef.cpp:975 src/gui/settings.cpp:4052 +msgid "SNES" +msgstr "" + +#: src/engine/sysDef.cpp:976 +msgid "FM? nah... samples! Nintendo's answer to Sega." +msgstr "" + +#: src/engine/sysDef.cpp:983 +msgid "18xx: Enable echo buffer" +msgstr "" + +#: src/engine/sysDef.cpp:984 +msgid "19xx: Set echo delay (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:985 +msgid "1Axx: Set left echo volume" +msgstr "" + +#: src/engine/sysDef.cpp:986 +msgid "1Bxx: Set right echo volume" +msgstr "" + +#: src/engine/sysDef.cpp:987 +msgid "1Cxx: Set echo feedback" +msgstr "" + +#: src/engine/sysDef.cpp:988 +msgid "1Exx: Set dry output volume (left)" +msgstr "" + +#: src/engine/sysDef.cpp:989 +msgid "1Fxx: Set dry output volume (right)" +msgstr "" + +#: src/engine/sysDef.cpp:990 +msgid "30xx: Set echo filter coefficient 0" +msgstr "" + +#: src/engine/sysDef.cpp:991 +msgid "31xx: Set echo filter coefficient 1" +msgstr "" + +#: src/engine/sysDef.cpp:992 +msgid "32xx: Set echo filter coefficient 2" +msgstr "" + +#: src/engine/sysDef.cpp:993 +msgid "33xx: Set echo filter coefficient 3" +msgstr "" + +#: src/engine/sysDef.cpp:994 +msgid "34xx: Set echo filter coefficient 4" +msgstr "" + +#: src/engine/sysDef.cpp:995 +msgid "35xx: Set echo filter coefficient 5" +msgstr "" + +#: src/engine/sysDef.cpp:996 +msgid "36xx: Set echo filter coefficient 6" +msgstr "" + +#: src/engine/sysDef.cpp:997 +msgid "37xx: Set echo filter coefficient 7" +msgstr "" + +#: src/engine/sysDef.cpp:1002 +msgid "12xx: Toggle echo on this channel" +msgstr "" + +#: src/engine/sysDef.cpp:1003 +msgid "13xx: Toggle pitch modulation" +msgstr "" + +#: src/engine/sysDef.cpp:1004 +msgid "14xy: Toggle invert (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:1005 +msgid "" +"15xx: Set envelope mode (0: ADSR, 1: gain/direct, 2: dec, 3: exp, 4: inc, 5: " +"bent)" +msgstr "" + +#: src/engine/sysDef.cpp:1006 +msgid "16xx: Set gain (00 to 7F if direct; 00 to 1F otherwise)" +msgstr "" + +#: src/engine/sysDef.cpp:1007 +msgid "1Dxx: Set noise frequency (00 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:1008 +msgid "20xx: Set attack (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:1009 +msgid "21xx: Set decay (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1010 +msgid "22xx: Set sustain (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1011 +msgid "23xx: Set release (00 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:1016 +msgid "Konami VRC6" +msgstr "" + +#: src/engine/sysDef.cpp:1017 +msgid "an expansion chip for the Famicom, featuring a quirky sawtooth channel." +msgstr "" + +#: src/engine/sysDef.cpp:1018 +msgid "VRC6 1" +msgstr "" + +#: src/engine/sysDef.cpp:1018 +msgid "VRC6 2" +msgstr "" + +#: src/engine/sysDef.cpp:1018 +msgid "VRC6 Saw" +msgstr "" + +#: src/engine/sysDef.cpp:1024 src/engine/sysDef.cpp:2092 +msgid "12xx: Set duty cycle (pulse: 0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1030 +msgid "Yamaha YM2413 (OPLL)" +msgstr "Yamaha YM2413 (OPLL)" + +#: src/engine/sysDef.cpp:1031 +msgid "" +"cost-reduced version of the OPL with 16 patches and only one of them is user-" +"configurable." +msgstr "" +"goedkoepere versie van de OPL met 16 patches waarvan er slects één door de " +"gebruiker kan worden geconfigureerd." + +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1173 +#: src/engine/sysDef.cpp:1185 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:2006 +msgid "FM 9" +msgstr "" + +#: src/engine/sysDef.cpp:1042 +msgid "Famicom Disk System (chip)" +msgstr "" + +#: src/engine/sysDef.cpp:1043 +msgid "a disk drive for the Famicom which also contains one wavetable channel." +msgstr "" + +#: src/engine/sysDef.cpp:1044 src/gui/settings.cpp:4039 +msgid "FDS" +msgstr "" + +#: src/engine/sysDef.cpp:1051 +msgid "11xx: Set modulation depth" +msgstr "" + +#: src/engine/sysDef.cpp:1052 +msgid "12xy: Set modulation speed high byte (x: enable; y: value)" +msgstr "" + +#: src/engine/sysDef.cpp:1053 +msgid "13xx: Set modulation speed low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1054 +msgid "14xx: Set modulator position" +msgstr "" + +#: src/engine/sysDef.cpp:1055 +msgid "15xx: Set modulator table to waveform" +msgstr "" + +#: src/engine/sysDef.cpp:1060 +msgid "MMC5" +msgstr "" + +#: src/engine/sysDef.cpp:1061 +msgid "" +"an expansion chip for the Famicom, featuring a little-known PCM channel." +msgstr "" + +#: src/engine/sysDef.cpp:1073 src/gui/settings.cpp:4041 +msgid "Namco 163" +msgstr "" + +#: src/engine/sysDef.cpp:1074 +msgid "an expansion chip for the Famicom, with full wavetable." +msgstr "" + +#: src/engine/sysDef.cpp:1081 +msgid "18xx: Change channel limits (0 to 7, x + 1)" +msgstr "" + +#: src/engine/sysDef.cpp:1082 +msgid "20xx: Load a waveform into memory" +msgstr "" + +#: src/engine/sysDef.cpp:1083 +msgid "21xx: Set position for wave load" +msgstr "" + +#: src/engine/sysDef.cpp:1086 +msgid "10xx: Select waveform" +msgstr "" + +#: src/engine/sysDef.cpp:1087 +msgid "11xx: Set waveform position in RAM" +msgstr "" + +#: src/engine/sysDef.cpp:1088 +msgid "12xx: Set waveform length in RAM (04 to FC in steps of 4)" +msgstr "" + +#: src/engine/sysDef.cpp:1089 +msgid "15xx: Set waveform load position" +msgstr "" + +#: src/engine/sysDef.cpp:1090 +msgid "16xx: Set waveform load length (04 to FC in steps of 4)" +msgstr "" + +#: src/engine/sysDef.cpp:1095 +msgid "Yamaha YM2203 (OPN)" +msgstr "" + +#: src/engine/sysDef.cpp:1096 +msgid "" +"cost-reduced version of the OPM with a different register layout and no " +"stereo...\n" +"...but it has a built-in AY-3-8910! (actually an YM2149)" +msgstr "" + +#: src/engine/sysDef.cpp:1107 +msgid "Yamaha YM2203 (OPN) Extended Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:1108 +msgid "" +"cost-reduced version of the OPM with a different register layout and no " +"stereo...\n" +"...but it has a built-in AY-3-8910! (actually an YM2149)\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies" +msgstr "" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP1" +msgstr "" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP2" +msgstr "" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP3" +msgstr "" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP4" +msgstr "" + +#: src/engine/sysDef.cpp:1120 +msgid "Yamaha YM2203 (OPN) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1121 +msgid "" +"cost-reduced version of the OPM with a different register layout and no " +"stereo...\n" +"...but it has a built-in AY-3-8910! (actually an YM2149)\n" +"CSM blah blah" +msgstr "" + +#: src/engine/sysDef.cpp:1122 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1383 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1559 src/engine/sysDef.cpp:1861 +msgid "CSM Timer" +msgstr "" + +#: src/engine/sysDef.cpp:1133 +msgid "Yamaha YM2608 (OPNA)" +msgstr "" + +#: src/engine/sysDef.cpp:1134 +msgid "" +"OPN but twice the FM channels, stereo makes a come-back and has rhythm and " +"ADPCM channels." +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1481 +#: src/gui/insEdit.cpp:3302 src/gui/insEdit.cpp:3624 +msgid "Kick" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:210 src/gui/insEdit.cpp:218 +msgid "Snare" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:212 src/gui/insEdit.cpp:220 +#: src/gui/insEdit.cpp:1909 src/gui/insEdit.cpp:2014 +msgid "Top" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:213 src/gui/insEdit.cpp:219 +msgid "HiHat" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:211 +msgid "Tom" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 +msgid "Rim" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:1693 +msgid "ADPCM" +msgstr "" + +#: src/engine/sysDef.cpp:1145 +msgid "Yamaha YM2608 (OPNA) Extended Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:1146 +msgid "" +"OPN but twice the FM channels, stereo makes a come-back and has rhythm and " +"ADPCM channels.\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies" +msgstr "" + +#: src/engine/sysDef.cpp:1158 +msgid "Yamaha YM2608 (OPNA) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1159 +msgid "" +"OPN but twice the FM channels, stereo makes a come-back and has rhythm and " +"ADPCM channels.\n" +"CSM blah blah" +msgstr "" + +#: src/engine/sysDef.cpp:1171 +msgid "Yamaha YM3526 (OPL)" +msgstr "" + +#: src/engine/sysDef.cpp:1172 +msgid "" +"OPN, but what if you only had two operators, no stereo, no detune and a " +"lower ADSR parameter range?" +msgstr "" + +#: src/engine/sysDef.cpp:1183 +msgid "Yamaha YM3812 (OPL2)" +msgstr "" + +#: src/engine/sysDef.cpp:1184 +msgid "OPL, but what if you had more waveforms to choose than the normal sine?" +msgstr "" + +#: src/engine/sysDef.cpp:1195 +msgid "Yamaha YMF262 (OPL3)" +msgstr "" + +#: src/engine/sysDef.cpp:1196 +msgid "" +"OPL2, but what if you had twice the channels, 4-op mode, stereo and even " +"more waveforms?" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 1" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 3" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 5" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 7" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 9" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 10" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 11" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 12" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 13" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 14" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 15" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:2006 +msgid "FM 16" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:2006 +msgid "FM 17" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:2006 +msgid "FM 18" +msgstr "" + +#: src/engine/sysDef.cpp:1208 src/gui/settings.cpp:4051 +msgid "MultiPCM" +msgstr "" + +#: src/engine/sysDef.cpp:1209 +msgid "" +"how many channels of PCM do you want?\n" +"MultiPCM: yes" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 17" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 18" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 19" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 20" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 21" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 22" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 23" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 24" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 25" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 26" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 27" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 28" +msgstr "" + +#: src/engine/sysDef.cpp:1217 +msgid "PC Speaker" +msgstr "PC Systeemluidspreker" + +#: src/engine/sysDef.cpp:1218 +msgid "good luck! you get one square and no volume control." +msgstr "veel geluk! krijg je een vierkant en geen volumeregeling." + +#: src/engine/sysDef.cpp:1219 src/engine/sysDef.cpp:1228 +#: src/gui/guiConst.cpp:1394 src/gui/waveEdit.cpp:199 src/gui/insEdit.cpp:183 +#: src/gui/insEdit.cpp:194 src/gui/insEdit.cpp:326 src/gui/insEdit.cpp:656 +msgid "Square" +msgstr "" + +#: src/engine/sysDef.cpp:1226 +msgid "Pong" +msgstr "Pong" + +#: src/engine/sysDef.cpp:1227 +msgid "please don't use this chip. it was added as a joke." +msgstr "niet deze gebruiken alsjeblieft. het was als grap toevoegd." + +#: src/engine/sysDef.cpp:1235 src/gui/settings.cpp:4044 +msgid "POKEY" +msgstr "" + +#: src/engine/sysDef.cpp:1236 +msgid "" +"TIA, but better and more flexible.\n" +"used in the Atari 8-bit family of computers (400/800/XL/XE)." +msgstr "" + +#: src/engine/sysDef.cpp:1243 src/engine/sysDef.cpp:1714 +msgid "10xx: Set waveform (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1244 +msgid "11xx: Set AUDCTL" +msgstr "11xx: AUDCTL instellen" + +#: src/engine/sysDef.cpp:1245 +msgid "12xx: Toggle two-tone mode" +msgstr "" + +#: src/engine/sysDef.cpp:1250 +msgid "Ricoh RF5C68" +msgstr "Ricoh RF5C68" + +#: src/engine/sysDef.cpp:1251 +msgid "" +"this is like SNES' sound chip but without interpolation and the rest of nice " +"bits." +msgstr "" +"deze is als de SNES geluidschip maar zonder interpolatie en de rest van de " +"goede dingen." + +#: src/engine/sysDef.cpp:1260 src/gui/settings.cpp:4046 +msgid "WonderSwan" +msgstr "" + +#: src/engine/sysDef.cpp:1261 +msgid "developed by the makers of the Game Boy and the Virtual Boy..." +msgstr "" + +#: src/engine/sysDef.cpp:1262 +msgid "Wave/PCM" +msgstr "" + +#: src/engine/sysDef.cpp:1262 +msgid "Wave/Sweep" +msgstr "" + +#: src/engine/sysDef.cpp:1262 +msgid "Wave/Noise" +msgstr "" + +#: src/engine/sysDef.cpp:1269 +msgid "11xx: Setup noise mode (0: disabled; 1-8: enabled/tap)" +msgstr "" + +#: src/engine/sysDef.cpp:1270 +msgid "12xx: Setup sweep period (0: disabled; 1-20: enabled/period)" +msgstr "" + +#: src/engine/sysDef.cpp:1271 +msgid "13xx: Set sweep amount" +msgstr "" + +#: src/engine/sysDef.cpp:1277 +msgid "Yamaha YM2414 (OPZ)" +msgstr "" + +#: src/engine/sysDef.cpp:1278 +msgid "" +"like OPM, but with more waveforms, fixed frequency mode and totally... " +"undocumented.\n" +"used in the Yamaha TX81Z and some other synthesizers." +msgstr "" + +#: src/engine/sysDef.cpp:1285 +msgid "2Fxx: Toggle hard envelope reset on new notes" +msgstr "" + +#: src/engine/sysDef.cpp:1291 src/gui/settings.cpp:4069 +msgid "Pokémon Mini" +msgstr "" + +#: src/engine/sysDef.cpp:1292 +msgid "this one is like PC Speaker but has duty cycles." +msgstr "" + +#: src/engine/sysDef.cpp:1293 src/gui/settings.cpp:4092 src/gui/waveEdit.cpp:33 +msgid "Pulse" +msgstr "" + +#: src/engine/sysDef.cpp:1300 +msgid "SegaPCM" +msgstr "" + +#: src/engine/sysDef.cpp:1301 +msgid "" +"used in some Sega arcade boards (like OutRun), and usually paired with a " +"YM2151." +msgstr "" + +#: src/engine/sysDef.cpp:1312 src/gui/settings.cpp:4040 +msgid "Virtual Boy" +msgstr "" + +#: src/engine/sysDef.cpp:1313 +msgid "" +"a console which failed to sell well due to its headache-inducing features." +msgstr "" + +#: src/engine/sysDef.cpp:1321 +msgid "11xx: Set noise length (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1322 +msgid "" +"12xy: Setup envelope (x: enabled/loop (1: enable, 3: enable+loop); y: speed/" +"direction (0-7: down, 8-F: up))" +msgstr "" + +#: src/engine/sysDef.cpp:1323 +msgid "13xy: Setup sweep (x: speed; y: shift; channel 5 only)" +msgstr "" + +#: src/engine/sysDef.cpp:1324 +msgid "" +"14xy: Setup modulation (x: enabled/loop (1: enable, 3: enable+loop); y: " +"speed; channel 5 only)" +msgstr "" + +#: src/engine/sysDef.cpp:1325 +msgid "15xx: Set modulation waveform (x: wavetable; channel 5 only)" +msgstr "" + +#: src/engine/sysDef.cpp:1330 +msgid "Konami VRC7" +msgstr "" + +#: src/engine/sysDef.cpp:1331 +msgid "" +"like OPLL, but even more cost reductions applied. three FM channels went " +"missing, and drums mode did as well..." +msgstr "" + +#: src/engine/sysDef.cpp:1342 +msgid "Yamaha YM2610B (OPNB2)" +msgstr "" + +#: src/engine/sysDef.cpp:1343 +msgid "" +"so Taito asked Yamaha if they could get the two missing FM channels back, " +"and Yamaha gladly provided them with this chip." +msgstr "" + +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/gui/settings.cpp:4061 +msgid "ADPCM-B" +msgstr "" + +#: src/engine/sysDef.cpp:1354 +msgid "ZX Spectrum Beeper" +msgstr "" + +#: src/engine/sysDef.cpp:1355 +msgid "" +"the ZX Spectrum only had a basic beeper capable of...\n" +"...a bunch of thin pulses and tons of other interesting stuff!\n" +"Furnace provides a thin pulse system." +msgstr "" + +#: src/engine/sysDef.cpp:1362 src/engine/sysDef.cpp:1950 +msgid "12xx: Set pulse width" +msgstr "" + +#: src/engine/sysDef.cpp:1363 +msgid "17xx: Trigger overlay drum" +msgstr "" + +#: src/engine/sysDef.cpp:1368 +msgid "Yamaha YM2612 (OPN2) Extended Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:1369 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:1381 +msgid "Yamaha YM2612 (OPN2) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1382 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this one includes CSM mode control for special effects on Channel 3." +msgstr "" + +#: src/engine/sysDef.cpp:1394 src/gui/settings.cpp:4042 +msgid "Konami SCC" +msgstr "" + +#: src/engine/sysDef.cpp:1395 +msgid "" +"a wavetable chip made by Konami for use with the MSX.\n" +"the last channel shares its wavetable with the previous one though." +msgstr "" + +#: src/engine/sysDef.cpp:1405 +msgid "Yamaha YM3526 (OPL) with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1406 +msgid "the OPL chip but with drums mode enabled." +msgstr "" + +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1693 +msgid "Kick/FM 7" +msgstr "" + +#: src/engine/sysDef.cpp:1417 +msgid "Yamaha YM3812 (OPL2) with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1418 +msgid "the OPL2 chip but with drums mode enabled." +msgstr "" + +#: src/engine/sysDef.cpp:1429 +msgid "Yamaha YMF262 (OPL3) with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1430 +msgid "the OPL3 chip but with drums mode enabled." +msgstr "" + +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1631 +msgid "Kick/FM 16" +msgstr "" + +#: src/engine/sysDef.cpp:1441 +msgid "Yamaha YM2610 (OPNB)" +msgstr "" + +#: src/engine/sysDef.cpp:1442 +msgid "" +"this chip was used in SNK's Neo Geo arcade board and video game console.\n" +"it's like OPNA but the rhythm channels are ADPCM channels and two FM " +"channels went missing." +msgstr "" + +#: src/engine/sysDef.cpp:1453 +msgid "Yamaha YM2610 (OPNB) Extended Channel 2" +msgstr "" + +#: src/engine/sysDef.cpp:1454 +msgid "" +"this chip was used in SNK's Neo Geo arcade board and video game console.\n" +"it's like OPNA but the rhythm channels are ADPCM channels and two FM " +"channels went missing.\n" +"this one is in Extended Channel mode, which turns the second FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:1466 +msgid "Yamaha YM2610 (OPNB) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1467 +msgid "" +"this chip was used in SNK's Neo Geo arcade board and video game console.\n" +"it's like OPNA but the rhythm channels are ADPCM channels and two FM " +"channels went missing.\n" +"this one includes CSM mode control for special effects on Channel 2." +msgstr "" + +#: src/engine/sysDef.cpp:1479 +msgid "Yamaha YM2413 (OPLL) with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1480 +msgid "the OPLL chips but with drums mode turned on." +msgstr "" + +#: src/engine/sysDef.cpp:1491 +msgid "3xxx: Load LFSR (0 to FFF)" +msgstr "" + +#: src/engine/sysDef.cpp:1497 +msgid "Atari Lynx" +msgstr "" + +#: src/engine/sysDef.cpp:1498 +msgid "" +"a portable console made by Atari. it has all of Atari's trademark waveforms." +msgstr "" + +#: src/engine/sysDef.cpp:1509 +msgid "10xx: Set echo feedback level (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1510 +msgid "11xx: Set channel echo level (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1511 +msgid "12xx: Toggle QSound algorithm (0: disabled; 1: enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:1513 +msgid "3xxx: Set echo delay buffer length (000 to AA5)" +msgstr "" + +#: src/engine/sysDef.cpp:1519 +msgid "Capcom QSound" +msgstr "" + +#: src/engine/sysDef.cpp:1520 +msgid "" +"used in some of Capcom's arcade boards. surround-like sampled sound with " +"echo." +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +#: src/engine/sysDef.cpp:2056 +msgid "PCM 1" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +#: src/engine/sysDef.cpp:2056 +msgid "PCM 2" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 3" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 4" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 5" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 6" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 7" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 8" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 9" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 10" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 11" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 12" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 13" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 14" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 15" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 16" +msgstr "" + +#: src/engine/sysDef.cpp:1521 +msgid "ADPCM 1" +msgstr "" + +#: src/engine/sysDef.cpp:1521 +msgid "ADPCM 2" +msgstr "" + +#: src/engine/sysDef.cpp:1521 +msgid "ADPCM 3" +msgstr "" + +#: src/engine/sysDef.cpp:1530 src/gui/settings.cpp:4048 +msgid "VERA" +msgstr "" + +#: src/engine/sysDef.cpp:1531 +msgid "the chip used in a computer design created by The 8-Bit Guy." +msgstr "" + +#: src/engine/sysDef.cpp:1538 +msgid "20xx: Set waveform" +msgstr "" + +#: src/engine/sysDef.cpp:1539 +msgid "22xx: Set duty cycle (0 to 3F)" +msgstr "" + +#: src/engine/sysDef.cpp:1544 +msgid "Yamaha YM2610B (OPNB2) Extended Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:1545 +msgid "" +"so Taito asked Yamaha if they could get the two missing FM channels back, " +"and Yamaha gladly provided them with this chip.\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:1557 +msgid "Yamaha YM2610B (OPNB2) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1558 +msgid "" +"so Taito asked Yamaha if they could get the two missing FM channels back, " +"and Yamaha gladly provided them with this chip.\n" +"CSM blah blah" +msgstr "" + +#: src/engine/sysDef.cpp:1570 +msgid "SegaPCM (compatible 5-channel mode)" +msgstr "" + +#: src/engine/sysDef.cpp:1571 +msgid "" +"this is the same thing as SegaPCM, but only exposes 5 of the channels for " +"compatibility with DefleMask." +msgstr "" + +#: src/engine/sysDef.cpp:1582 +msgid "Seta/Allumer X1-010" +msgstr "" + +#: src/engine/sysDef.cpp:1583 +msgid "" +"a sound chip used in several Seta/Allumer-manufactured arcade boards with " +"too many channels of wavetable sound, which also are capable of sampled " +"sound." +msgstr "" + +#: src/engine/sysDef.cpp:1591 +msgid "11xx: Set envelope shape" +msgstr "" + +#: src/engine/sysDef.cpp:1592 +msgid "12xx: Set sample bank slot (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1596 +msgid "20xx: Set PCM frequency (1 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1597 +msgid "" +"22xx: Set envelope mode (bit 0: enable; bit 1: one-shot; bit 2: split shape " +"to L/R; bit 3/5: H.invert right/left; bit 4/6: V.invert right/left)" +msgstr "" + +#: src/engine/sysDef.cpp:1598 +msgid "23xx: Set envelope period" +msgstr "" + +#: src/engine/sysDef.cpp:1606 +msgid "Konami Bubble System WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1607 +msgid "" +"this is the wavetable part of the Bubble System, which also had two " +"AY-3-8910s." +msgstr "" + +#: src/engine/sysDef.cpp:1619 +msgid "Yamaha YMF278B (OPL4)" +msgstr "" + +#: src/engine/sysDef.cpp:1620 +msgid "like OPL3, but this time it also has a 24-channel version of MultiPCM." +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 17" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 18" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 19" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 20" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 21" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 22" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 23" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 24" +msgstr "" + +#: src/engine/sysDef.cpp:1629 +msgid "Yamaha YMF278B (OPL4) with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1630 +msgid "the OPL4 but with drums mode turned on." +msgstr "" + +#: src/engine/sysDef.cpp:1638 +msgid "11xx: Set filter mode (00 to 03)" +msgstr "" + +#: src/engine/sysDef.cpp:1639 +msgid "14xx: Set filter coefficient K1 low byte (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1640 +msgid "15xx: Set filter coefficient K1 high byte (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1641 +msgid "16xx: Set filter coefficient K2 low byte (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1642 +msgid "17xx: Set filter coefficient K2 high byte (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1643 +msgid "18xx: Set filter coefficient K1 slide up (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1644 +msgid "19xx: Set filter coefficient K1 slide down (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1645 +msgid "1Axx: Set filter coefficient K2 slide up (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1646 +msgid "1Bxx: Set filter coefficient K2 slide down (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1647 +msgid "22xx: Set envelope left volume ramp (signed) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1648 +msgid "23xx: Set envelope right volume ramp (signed) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1649 +msgid "24xx: Set envelope filter coefficient k1 ramp (signed) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1650 +msgid "" +"25xx: Set envelope filter coefficient k1 ramp (signed, slower) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1651 +msgid "26xx: Set envelope filter coefficient k2 ramp (signed) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1652 +msgid "" +"27xx: Set envelope filter coefficient k2 ramp (signed, slower) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1656 +msgid "120x: Set pause (bit 0)" +msgstr "" + +#: src/engine/sysDef.cpp:1658 +msgid "2xxx: Set envelope count (000 to 1FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1659 +msgid "3xxx: Set filter coefficient K1 (000 to FFF)" +msgstr "" + +#: src/engine/sysDef.cpp:1660 +msgid "4xxx: Set filter coefficient K2 (000 to FFF)" +msgstr "" + +#: src/engine/sysDef.cpp:1667 +msgid "Ensoniq ES5506" +msgstr "" + +#: src/engine/sysDef.cpp:1668 +msgid "" +"a sample chip made by Ensoniq, which is the basis for the GF1 chip found in " +"Gravis' Ultrasound cards." +msgstr "" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 29" +msgstr "" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 30" +msgstr "" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 31" +msgstr "" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 32" +msgstr "" + +#: src/engine/sysDef.cpp:1679 +msgid "Yamaha Y8950" +msgstr "" + +#: src/engine/sysDef.cpp:1680 +msgid "like OPL but with an ADPCM channel." +msgstr "" + +#: src/engine/sysDef.cpp:1691 +msgid "Yamaha Y8950 with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1692 +msgid "the Y8950 chip, in drums mode." +msgstr "" + +#: src/engine/sysDef.cpp:1703 +msgid "Konami SCC+" +msgstr "" + +#: src/engine/sysDef.cpp:1704 +msgid "" +"this is a variant of Konami's SCC chip with the last channel's wavetable " +"being independent." +msgstr "" + +#: src/engine/sysDef.cpp:1715 +msgid "12xx: Set pulse width (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:1716 +msgid "13xx: Set resonance (0 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1717 +msgid "" +"14xx: Set filter mode (bit 0: ring mod; bit 1: low pass; bit 2: high pass; " +"bit 3: band pass)" +msgstr "" + +#: src/engine/sysDef.cpp:1718 +msgid "15xx: Set frequency sweep period low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1719 +msgid "16xx: Set frequency sweep period high byte" +msgstr "" + +#: src/engine/sysDef.cpp:1720 +msgid "17xx: Set volume sweep period low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1721 +msgid "18xx: Set volume sweep period high byte" +msgstr "" + +#: src/engine/sysDef.cpp:1722 +msgid "19xx: Set cutoff sweep period low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1723 +msgid "1Axx: Set cutoff sweep period high byte" +msgstr "" + +#: src/engine/sysDef.cpp:1724 +msgid "1Bxx: Set frequency sweep boundary" +msgstr "" + +#: src/engine/sysDef.cpp:1725 +msgid "1Cxx: Set volume sweep boundary" +msgstr "" + +#: src/engine/sysDef.cpp:1726 +msgid "1Dxx: Set cutoff sweep boundary" +msgstr "" + +#: src/engine/sysDef.cpp:1727 +msgid "1Exx: Set phase reset period low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1728 +msgid "1Fxx: Set phase reset period high byte" +msgstr "" + +#: src/engine/sysDef.cpp:1729 +msgid "20xx: Toggle frequency sweep (bit 0-6: speed; bit 7: direction is up)" +msgstr "" + +#: src/engine/sysDef.cpp:1730 +msgid "" +"21xx: Toggle volume sweep (bit 0-4: speed; bit 5: direction is up; bit 6: " +"loop; bit 7: alternate)" +msgstr "" + +#: src/engine/sysDef.cpp:1731 +msgid "22xx: Toggle cutoff sweep (bit 0-6: speed; bit 7: direction is up)" +msgstr "" + +#: src/engine/sysDef.cpp:1739 +msgid "tildearrow Sound Unit" +msgstr "" + +#: src/engine/sysDef.cpp:1740 +msgid "" +"tildearrow's fantasy sound chip. put SID, AY and VERA in a blender, and you " +"get this!" +msgstr "" + +#: src/engine/sysDef.cpp:1751 +msgid "OKI MSM6295" +msgstr "" + +#: src/engine/sysDef.cpp:1752 +msgid "an ADPCM sound chip manufactured by OKI and used in many arcade boards." +msgstr "" + +#: src/engine/sysDef.cpp:1759 +msgid "20xx: Set chip output rate (0: clock/132; 1: clock/165)" +msgstr "" + +#: src/engine/sysDef.cpp:1764 +msgid "OKI MSM6258" +msgstr "" + +#: src/engine/sysDef.cpp:1765 +msgid "an ADPCM sound chip manufactured by OKI and used in the Sharp X68000." +msgstr "" +"een ADPCM-geluidschip geproduceerd door OKI en gebruikt in de Sharp X68000." + +#: src/engine/sysDef.cpp:1766 src/engine/sysDef.cpp:1887 +#: src/gui/editControls.cpp:437 src/gui/settings.cpp:4223 +#: src/gui/guiConst.cpp:1397 src/gui/insEdit.cpp:2628 src/gui/insEdit.cpp:2666 +msgid "Sample" +msgstr "Sample" + +#: src/engine/sysDef.cpp:1772 +msgid "20xx: Set frequency divider (0-2)" +msgstr "20xx: Frequentieverdeler instellen (0-2)" + +#: src/engine/sysDef.cpp:1773 +msgid "21xx: Select clock rate (0: full; 1: half)" +msgstr "21xx: Kloksnelheid selecteer (0: vol, 1: half)" + +#: src/engine/sysDef.cpp:1778 +msgid "Yamaha YMZ280B (PCMD8)" +msgstr "" + +#: src/engine/sysDef.cpp:1779 +msgid "" +"used in some arcade boards. Can play back either 4-bit ADPCM, 8-bit PCM or " +"16-bit PCM." +msgstr "" + +#: src/engine/sysDef.cpp:1797 src/gui/settings.cpp:4054 +msgid "Namco WSG" +msgstr "Namco WSG" + +#: src/engine/sysDef.cpp:1798 +msgid "" +"a wavetable sound chip used in Pac-Man, among other early Namco arcade games." +msgstr "" +"een wavetable geluidschip gebruikt in Pac-Man, onder andere vroeg Namco " +"arcadespelen." + +#: src/engine/sysDef.cpp:1808 +msgid "Namco C15 WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1809 +msgid "" +"successor of the original Namco WSG chip, used in later Namco arcade games." +msgstr "" + +#: src/engine/sysDef.cpp:1819 +msgid "Namco C30 WSG" +msgstr "Namco C30 WSG" + +#: src/engine/sysDef.cpp:1820 +msgid "like Namco C15 but with stereo sound." +msgstr "als Namco C15 maar met stereofonie." + +#: src/engine/sysDef.cpp:1830 +msgid "OKI MSM5232" +msgstr "OKI MSM5232" + +#: src/engine/sysDef.cpp:1831 +msgid "" +"a square wave additive synthesis chip made by OKI. used in some arcade " +"machines and instruments." +msgstr "" +"een blokgolf additieve synthese chip gemaakt door OKI. gebruikt in sommige " +"arcadespelen en instruments." + +#: src/engine/sysDef.cpp:1839 +msgid "10xy: Set group control (x: sustain; y: part toggle bitmask)" +msgstr "" + +#: src/engine/sysDef.cpp:1840 src/engine/sysDef.cpp:1998 +msgid "11xx: Set noise mode" +msgstr "" + +#: src/engine/sysDef.cpp:1841 +msgid "12xx: Set group attack (0 to 5)" +msgstr "" + +#: src/engine/sysDef.cpp:1842 +msgid "13xx: Set group decay (0 to 11)" +msgstr "" + +#: src/engine/sysDef.cpp:1847 +msgid "Yamaha YM2612 (OPN2) with DualPCM" +msgstr "" + +#: src/engine/sysDef.cpp:1848 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this system uses software mixing to provide two sample channels." +msgstr "" + +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +msgid "FM 6/PCM 1" +msgstr "" + +#: src/engine/sysDef.cpp:1859 +msgid "Yamaha YM2612 (OPN2) Extended Channel 3 with DualPCM and CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1860 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this system uses software mixing to provide two sample channels.\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:1872 src/gui/settings.cpp:4024 +msgid "T6W28" +msgstr "" + +#: src/engine/sysDef.cpp:1873 +msgid "" +"an SN76489 derivative used in Neo Geo Pocket, has independent stereo volume " +"and noise channel frequency." +msgstr "" + +#: src/engine/sysDef.cpp:1880 +msgid "20xx: Set noise length (0: short, 1: long)" +msgstr "" + +#: src/engine/sysDef.cpp:1885 +msgid "Generic PCM DAC" +msgstr "" + +#: src/engine/sysDef.cpp:1886 +msgid "as generic sample playback as it gets." +msgstr "" + +#: src/engine/sysDef.cpp:1898 +msgid "Konami K007232" +msgstr "" + +#: src/engine/sysDef.cpp:1899 +msgid "this PCM chip was widely used at Konami arcade boards in 1986-1990." +msgstr "" + +#: src/engine/sysDef.cpp:1908 +msgid "Irem GA20" +msgstr "" + +#: src/engine/sysDef.cpp:1909 +msgid "" +"yet another PCM chip from Irem. like Amiga, but less pitch resolution and no " +"sample loop." +msgstr "" + +#: src/engine/sysDef.cpp:1918 +msgid "Sharp SM8521" +msgstr "" + +#: src/engine/sysDef.cpp:1919 +msgid "a SoC with wavetable sound hardware." +msgstr "" + +#: src/engine/sysDef.cpp:1929 +msgid "Casio PV-1000" +msgstr "" + +#: src/engine/sysDef.cpp:1930 +msgid "" +"a game console with 3 channels of square wave. it's what happens after " +"fusing TIA and VIC together." +msgstr "" + +#: src/engine/sysDef.cpp:1937 +msgid "10xx: Set ring modulation (0: disable, 1: enable)" +msgstr "" + +#: src/engine/sysDef.cpp:1942 +msgid "ZX Spectrum Beeper (QuadTone Engine)" +msgstr "" + +#: src/engine/sysDef.cpp:1943 +msgid "" +"another ZX Spectrum beeper system with full PWM pulses and 3-level volume " +"per channel. it also has a pitchable overlay sample channel." +msgstr "" + +#: src/engine/sysDef.cpp:1955 +msgid "Konami K053260" +msgstr "" + +#: src/engine/sysDef.cpp:1956 +msgid "this PCM chip was widely used at Konami arcade boards in 1990-1992." +msgstr "" + +#: src/engine/sysDef.cpp:1968 +msgid "MOS Technology TED" +msgstr "" + +#: src/engine/sysDef.cpp:1969 +msgid "" +"two square waves (one may be turned into noise). used in the Commodore " +"Plus/4, 16 and 116." +msgstr "" + +#: src/engine/sysDef.cpp:1978 +msgid "Namco C140" +msgstr "" + +#: src/engine/sysDef.cpp:1979 +msgid "Namco's first PCM chip from 1987. it's pretty good for being so." +msgstr "" + +#: src/engine/sysDef.cpp:1989 +msgid "Namco C219" +msgstr "" + +#: src/engine/sysDef.cpp:1990 +msgid "" +"Namco's PCM chip used in their NA-1/2 hardware.\n" +"very similar to C140, but has noise generator." +msgstr "" + +#: src/engine/sysDef.cpp:1999 +msgid "12xy: Set invert mode (x: surround; y: invert)" +msgstr "" + +#: src/engine/sysDef.cpp:2004 +msgid "ESS ES1xxx series (ESFM)" +msgstr "" + +#: src/engine/sysDef.cpp:2005 +msgid "" +"a unique FM synth featured in PC sound cards.\n" +"based on the OPL3 design, but with lots of its features extended." +msgstr "" + +#: src/engine/sysDef.cpp:2006 +msgid "FM 11" +msgstr "" + +#: src/engine/sysDef.cpp:2012 +msgid "2Exx: Toggle hard envelope reset on new notes" +msgstr "" + +#: src/engine/sysDef.cpp:2018 +msgid "PowerNoise" +msgstr "" + +#: src/engine/sysDef.cpp:2019 +msgid "" +"a fantasy sound chip designed by jvsTSX and The Beesh-Spweesh!\n" +"used in the Hexheld fantasy console." +msgstr "" + +#: src/engine/sysDef.cpp:2020 +msgid "Noise 1" +msgstr "" + +#: src/engine/sysDef.cpp:2020 +msgid "Noise 2" +msgstr "" + +#: src/engine/sysDef.cpp:2020 +msgid "Noise 3" +msgstr "" + +#: src/engine/sysDef.cpp:2020 +msgid "Slope" +msgstr "" + +#: src/engine/sysDef.cpp:2026 +msgid "" +"20xx: Load low byte of noise channel LFSR (00 to FF) or slope channel " +"accumulator (00 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:2027 +msgid "21xx: Load high byte of noise channel LFSR (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:2028 +msgid "22xx: Write to I/O port A" +msgstr "" + +#: src/engine/sysDef.cpp:2029 +msgid "23xx: Write to I/O port B" +msgstr "" + +#: src/engine/sysDef.cpp:2035 src/gui/settings.cpp:4079 +msgid "Dave" +msgstr "" + +#: src/engine/sysDef.cpp:2036 +msgid "" +"this chip was featured in the Enterprise 128 computer. it is similar to " +"POKEY, but with stereo output." +msgstr "" + +#: src/engine/sysDef.cpp:2037 +msgid "DAC Left" +msgstr "" + +#: src/engine/sysDef.cpp:2037 +msgid "DAC Right" +msgstr "" + +#: src/engine/sysDef.cpp:2043 +msgid "10xx: Set waveform (0 to 4; 0 to 3 on noise)" +msgstr "" + +#: src/engine/sysDef.cpp:2044 +msgid "11xx: Set noise frequency source (0: fixed; 1-3: channels 1 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:2045 +msgid "12xx: Toggle high-pass with next channel" +msgstr "" + +#: src/engine/sysDef.cpp:2046 +msgid "13xx: Toggle ring modulation with channel+2" +msgstr "" + +#: src/engine/sysDef.cpp:2047 +msgid "14xx: Toggle swap counters (noise only)" +msgstr "" + +#: src/engine/sysDef.cpp:2048 +msgid "15xx: Toggle low pass (noise only)" +msgstr "" + +#: src/engine/sysDef.cpp:2049 +msgid "16xx: Set clock divider (0: /2; 1: /3)" +msgstr "" + +#: src/engine/sysDef.cpp:2054 +msgid "Game Boy Advance DMA Sound" +msgstr "" + +#: src/engine/sysDef.cpp:2055 +msgid "" +"additional PCM FIFO channels in Game Boy Advance driven directly by its DMA " +"hardware." +msgstr "" + +#: src/engine/sysDef.cpp:2068 +msgid "Game Boy Advance MinMod" +msgstr "" + +#: src/engine/sysDef.cpp:2069 +msgid "" +"additional PCM FIFO channels in Game Boy Advance driven by software mixing " +"to provide up to sixteen sample channels" +msgstr "" + +#: src/engine/sysDef.cpp:2078 +msgid "11xy: Set echo channel (x: left/right source; y: delay (0 disables))" +msgstr "" + +#: src/engine/sysDef.cpp:2079 +msgid "12xy: Toggle invert (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:2084 src/gui/settings.cpp:4080 +msgid "Nintendo DS" +msgstr "" + +#: src/engine/sysDef.cpp:2085 +msgid "a handheld video game console with two screens. it uses a stylus." +msgstr "" + +#: src/engine/sysDef.cpp:2093 +msgid "1Fxx: Set global volume (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:2098 +msgid "5E01" +msgstr "" + +#: src/engine/sysDef.cpp:2099 +msgid "" +"a fantasy sound chip created by Euly. it is based on Ricoh 2A03, adding a " +"couple features such as 32 noise pitches, an extra duty cycle, and three " +"waveforms (besides triangle)." +msgstr "" + +#: src/engine/sysDef.cpp:2107 +msgid "" +"12xx: Set duty cycle/noise mode/waveform (pulse/wave: 0 to 3; noise: 0 or 1)" +msgstr "" + +#: src/engine/sysDef.cpp:2120 src/gui/settings.cpp:4083 +msgid "Bifurcator" +msgstr "" + +#: src/engine/sysDef.cpp:2121 +msgid "a fantasy sound chip using logistic map iterations to generate sound." +msgstr "" + +#: src/engine/sysDef.cpp:2128 +msgid "10xx: Load low byte of channel sample state" +msgstr "" + +#: src/engine/sysDef.cpp:2129 +msgid "11xx: Load high byte of channel sample state" +msgstr "" + +#: src/engine/sysDef.cpp:2130 +msgid "12xx: Set low byte of channel parameter" +msgstr "" + +#: src/engine/sysDef.cpp:2131 +msgid "13xx: Set high byte of channel parameter" +msgstr "" + +#: src/engine/sysDef.cpp:2136 src/gui/settings.cpp:4084 +msgid "SID2" +msgstr "" + +#: src/engine/sysDef.cpp:2137 +msgid "" +"a fantasy sound chip created by LTVA. it is similar to the SID chip, but " +"with many of its problems fixed." +msgstr "" + +#: src/engine/sysDef.cpp:2148 +msgid "Dummy System" +msgstr "" + +#: src/engine/sysDef.cpp:2149 +msgid "this is a system designed for testing purposes." +msgstr "" + +#: src/engine/engine.cpp:51 +msgid "00xy: Arpeggio" +msgstr "" + +#: src/engine/engine.cpp:53 +msgid "01xx: Pitch slide up" +msgstr "" + +#: src/engine/engine.cpp:55 +msgid "02xx: Pitch slide down" +msgstr "" + +#: src/engine/engine.cpp:57 +msgid "03xx: Portamento" +msgstr "" + +#: src/engine/engine.cpp:59 +msgid "04xy: Vibrato (x: speed; y: depth)" +msgstr "" + +#: src/engine/engine.cpp:61 +msgid "05xy: Volume slide + vibrato (compatibility only!)" +msgstr "" + +#: src/engine/engine.cpp:63 +msgid "06xy: Volume slide + portamento (compatibility only!)" +msgstr "" + +#: src/engine/engine.cpp:65 +msgid "07xy: Tremolo (x: speed; y: depth)" +msgstr "" + +#: src/engine/engine.cpp:67 +msgid "08xy: Set panning (x: left; y: right)" +msgstr "" + +#: src/engine/engine.cpp:69 +msgid "09xx: Set groove pattern (speed 1 if no grooves exist)" +msgstr "" + +#: src/engine/engine.cpp:71 +msgid "0Axy: Volume slide (0y: down; x0: up)" +msgstr "" + +#: src/engine/engine.cpp:73 +msgid "0Bxx: Jump to pattern" +msgstr "" + +#: src/engine/engine.cpp:75 +msgid "0Cxx: Retrigger" +msgstr "" + +#: src/engine/engine.cpp:77 +msgid "0Dxx: Jump to next pattern" +msgstr "" + +#: src/engine/engine.cpp:79 +msgid "0Fxx: Set speed (speed 2 if no grooves exist)" +msgstr "" + +#: src/engine/engine.cpp:81 +msgid "80xx: Set panning (00: left; 80: center; FF: right)" +msgstr "" + +#: src/engine/engine.cpp:83 +msgid "81xx: Set panning (left channel)" +msgstr "" + +#: src/engine/engine.cpp:85 +msgid "82xx: Set panning (right channel)" +msgstr "" + +#: src/engine/engine.cpp:87 +msgid "88xy: Set panning (rear channels; x: left; y: right)" +msgstr "" + +#: src/engine/engine.cpp:90 +msgid "89xx: Set panning (rear left channel)" +msgstr "" + +#: src/engine/engine.cpp:93 +msgid "8Axx: Set panning (rear right channel)" +msgstr "" + +#: src/engine/engine.cpp:96 +msgid "Cxxx: Set tick rate (hz)" +msgstr "" + +#: src/engine/engine.cpp:98 +msgid "E0xx: Set arp speed" +msgstr "" + +#: src/engine/engine.cpp:100 +msgid "E1xy: Note slide up (x: speed; y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:102 +msgid "E2xy: Note slide down (x: speed; y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:104 +msgid "E3xx: Set vibrato shape (0: up/down; 1: up only; 2: down only)" +msgstr "" + +#: src/engine/engine.cpp:106 +msgid "E4xx: Set vibrato range" +msgstr "" + +#: src/engine/engine.cpp:108 +msgid "E5xx: Set pitch (80: center)" +msgstr "" + +#: src/engine/engine.cpp:110 +msgid "E6xy: Quick legato (x: time (0-7 up; 8-F down); y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:112 +msgid "E7xx: Macro release" +msgstr "" + +#: src/engine/engine.cpp:114 +msgid "E8xy: Quick legato up (x: time; y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:116 +msgid "E9xy: Quick legato down (x: time; y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:118 +msgid "EAxx: Legato" +msgstr "" + +#: src/engine/engine.cpp:120 +msgid "EBxx: Set LEGACY sample mode bank" +msgstr "" + +#: src/engine/engine.cpp:122 +msgid "ECxx: Note cut" +msgstr "" + +#: src/engine/engine.cpp:124 +msgid "EDxx: Note delay" +msgstr "" + +#: src/engine/engine.cpp:126 +msgid "EExx: Send external command" +msgstr "" + +#: src/engine/engine.cpp:128 +msgid "F0xx: Set tick rate (bpm)" +msgstr "" + +#: src/engine/engine.cpp:130 +msgid "F1xx: Single tick note slide up" +msgstr "" + +#: src/engine/engine.cpp:132 +msgid "F2xx: Single tick note slide down" +msgstr "" + +#: src/engine/engine.cpp:134 +msgid "F3xx: Fine volume slide up" +msgstr "" + +#: src/engine/engine.cpp:136 +msgid "F4xx: Fine volume slide down" +msgstr "" + +#: src/engine/engine.cpp:138 +msgid "F5xx: Disable macro (see manual)" +msgstr "" + +#: src/engine/engine.cpp:140 +msgid "F6xx: Enable macro (see manual)" +msgstr "" + +#: src/engine/engine.cpp:142 +msgid "F7xx: Restart macro (see manual)" +msgstr "" + +#: src/engine/engine.cpp:144 +msgid "F8xx: Single tick volume slide up" +msgstr "" + +#: src/engine/engine.cpp:146 +msgid "F9xx: Single tick volume slide down" +msgstr "" + +#: src/engine/engine.cpp:148 +msgid "FAxx: Fast volume slide (0y: down; x0: up)" +msgstr "" + +#: src/engine/engine.cpp:150 +msgid "FCxx: Note release" +msgstr "" + +#: src/engine/engine.cpp:152 +msgid "FDxx: Set virtual tempo numerator" +msgstr "" + +#: src/engine/engine.cpp:154 +msgid "FExx: Set virtual tempo denominator" +msgstr "" + +#: src/engine/engine.cpp:156 +msgid "FFxx: Stop song" +msgstr "FFxx: Stop lied" + +#: src/engine/engine.cpp:160 +msgid "9xxx: Set sample offset*256" +msgstr "" + +#: src/engine/engine.cpp:164 +msgid "90xx: Set sample offset (first byte)" +msgstr "" + +#: src/engine/engine.cpp:166 +msgid "91xx: Set sample offset (second byte, ×256)" +msgstr "" + +#: src/engine/engine.cpp:168 +msgid "92xx: Set sample offset (third byte, ×65536)" +msgstr "" + +#: src/engine/engine.cpp:187 src/gui/settings.cpp:4127 +msgid "Invalid effect" +msgstr "" + +#: src/engine/engine.cpp:354 src/gui/gui.cpp:2259 src/gui/gui.cpp:2422 +#, c-format +msgid "on seek: %s" +msgstr "" + +#: src/engine/engine.cpp:361 src/gui/gui.cpp:2266 src/gui/gui.cpp:2429 +#, c-format +msgid "on pre tell: %s" +msgstr "" + +#: src/engine/engine.cpp:368 src/engine/engine.cpp:2768 +#: src/gui/settings.cpp:5811 src/gui/gui.cpp:2273 src/gui/gui.cpp:2436 +msgid "file is empty" +msgstr "" + +#: src/engine/engine.cpp:371 src/gui/gui.cpp:2276 src/gui/gui.cpp:2439 +#, c-format +msgid "on tell: %s" +msgstr "" + +#: src/engine/engine.cpp:378 +#, c-format +msgid "ROM size mismatch, expected: %d bytes, was: %d" +msgstr "" + +#: src/engine/engine.cpp:383 src/gui/settings.cpp:5820 src/gui/gui.cpp:2283 +#: src/gui/gui.cpp:2446 +#, c-format +msgid "on get size: %s" +msgstr "" + +#: src/engine/engine.cpp:390 src/gui/settings.cpp:5827 src/gui/gui.cpp:2290 +#: src/gui/gui.cpp:2453 +#, c-format +msgid "on read: %s" +msgstr "" + +#: src/engine/engine.cpp:1076 src/engine/engine.cpp:1181 +#: src/engine/engine.cpp:1290 +msgid "invalid index" +msgstr "" + +#: src/engine/engine.cpp:1080 src/engine/engine.cpp:1135 +#: src/engine/engine.cpp:1189 +#, c-format +msgid "max number of total channels is %d" +msgstr "" + +#: src/engine/engine.cpp:1131 src/engine/engine.cpp:1185 +#, c-format +msgid "max number of systems is %d" +msgstr "" + +#: src/engine/engine.cpp:1286 +msgid "cannot remove the last one" +msgstr "" + +#: src/engine/engine.cpp:1460 +msgid "source and destination are equal" +msgstr "" + +#: src/engine/engine.cpp:1464 +msgid "invalid source index" +msgstr "" + +#: src/engine/engine.cpp:1468 +msgid "invalid destination index" +msgstr "" + +#: src/engine/engine.cpp:2636 +#, c-format +msgid "Instrument %d" +msgstr "Instrument %d" + +#: src/engine/engine.cpp:2710 src/engine/engine.cpp:2727 +#: src/gui/doAction.cpp:825 src/gui/doAction.cpp:843 src/gui/doAction.cpp:1634 +#: src/gui/gui.cpp:6159 src/gui/insEdit.cpp:6860 +msgid "too many wavetables!" +msgstr "te veel wavetables!" + +#: src/engine/engine.cpp:2752 +#, c-format +msgid "could not seek to end: %s" +msgstr "" + +#: src/engine/engine.cpp:2758 +#, c-format +msgid "could not determine file size: %s" +msgstr "" + +#: src/engine/engine.cpp:2763 +msgid "file size is invalid!" +msgstr "" + +#: src/engine/engine.cpp:2773 +#, c-format +msgid "could not seek to beginning: %s" +msgstr "" + +#: src/engine/engine.cpp:2780 +#, c-format +msgid "could not read entire file: %s" +msgstr "" + +#: src/engine/engine.cpp:2806 +msgid "invalid wavetable header/data!" +msgstr "" + +#: src/engine/engine.cpp:2877 +msgid "premature end of file" +msgstr "" + +#: src/engine/engine.cpp:2904 src/engine/engine.cpp:2926 +#: src/gui/doAction.cpp:909 src/gui/doAction.cpp:921 +msgid "too many samples!" +msgstr "te veel samples!" + +#: src/engine/engine.cpp:2911 +#, c-format +msgid "Sample %d" +msgstr "Sample %d" + +#: src/engine/engine.cpp:3056 +#, c-format +msgid "no free patterns in channel %d!" +msgstr "" + +#: src/gui/mixer.cpp:28 src/gui/insEdit.cpp:484 +msgid "left" +msgstr "" + +#: src/gui/mixer.cpp:29 src/gui/insEdit.cpp:483 +msgid "right" +msgstr "" + +#: src/gui/mixer.cpp:128 +msgid "input" +msgstr "" + +#: src/gui/mixer.cpp:168 +msgid "output" +msgstr "" + +#: src/gui/mixer.cpp:226 src/gui/mixer.cpp:228 src/gui/editControls.cpp:454 +#: src/gui/guiConst.cpp:593 +msgid "Mixer" +msgstr "" + +#: src/gui/mixer.cpp:229 +msgid "Master Volume" +msgstr "" + +#: src/gui/mixer.cpp:250 src/gui/exportOptions.cpp:90 +#: src/gui/userPresets.cpp:393 src/gui/userPresets.cpp:405 +#: src/gui/settings.cpp:1080 src/gui/settings.cpp:1094 +#: src/gui/waveEdit.cpp:1096 src/gui/sampleEdit.cpp:1128 +#: src/gui/insEdit.cpp:519 +msgid "Invert" +msgstr "" + +#: src/gui/mixer.cpp:268 src/gui/chanOsc.cpp:37 src/gui/userPresets.cpp:417 +#: src/gui/settings.cpp:263 src/gui/settings.cpp:1109 src/gui/settings.cpp:1492 +#: src/gui/settings.cpp:1504 src/gui/settings.cpp:3369 +#: src/gui/settings.cpp:4015 src/gui/findReplace.cpp:687 +#: src/gui/findReplace.cpp:943 src/gui/guiConst.cpp:228 +#: src/gui/sampleEdit.cpp:1003 src/gui/insEdit.cpp:5575 +#: src/gui/insEdit.cpp:5660 src/gui/insEdit.cpp:6920 src/gui/insEdit.cpp:6928 +#: src/gui/insEdit.cpp:6936 src/gui/insEdit.cpp:6946 src/gui/insEdit.cpp:6961 +#: src/gui/insEdit.cpp:6975 src/gui/insEdit.cpp:6987 src/gui/insEdit.cpp:7000 +#: src/gui/insEdit.cpp:7016 src/gui/insEdit.cpp:7022 src/gui/insEdit.cpp:7032 +#: src/gui/insEdit.cpp:7039 src/gui/insEdit.cpp:7045 src/gui/insEdit.cpp:7058 +#: src/gui/insEdit.cpp:7065 src/gui/insEdit.cpp:7072 src/gui/insEdit.cpp:7081 +#: src/gui/insEdit.cpp:7091 src/gui/insEdit.cpp:7099 src/gui/insEdit.cpp:7105 +#: src/gui/insEdit.cpp:7113 src/gui/insEdit.cpp:7120 src/gui/insEdit.cpp:7126 +#: src/gui/insEdit.cpp:7136 src/gui/insEdit.cpp:7148 src/gui/insEdit.cpp:7156 +#: src/gui/insEdit.cpp:7172 src/gui/insEdit.cpp:7177 src/gui/insEdit.cpp:7190 +#: src/gui/insEdit.cpp:7197 src/gui/insEdit.cpp:7208 src/gui/insEdit.cpp:7221 +#: src/gui/insEdit.cpp:7230 src/gui/insEdit.cpp:7237 src/gui/insEdit.cpp:7245 +#: src/gui/insEdit.cpp:7258 src/gui/insEdit.cpp:7263 src/gui/insEdit.cpp:7269 +#: src/gui/insEdit.cpp:7276 src/gui/insEdit.cpp:7284 src/gui/insEdit.cpp:7295 +#: src/gui/insEdit.cpp:7302 src/gui/insEdit.cpp:7310 src/gui/insEdit.cpp:7318 +#: src/gui/insEdit.cpp:7327 src/gui/insEdit.cpp:7335 src/gui/insEdit.cpp:7341 +#: src/gui/insEdit.cpp:7347 src/gui/insEdit.cpp:7353 src/gui/insEdit.cpp:7358 +#: src/gui/insEdit.cpp:7365 src/gui/insEdit.cpp:7372 src/gui/insEdit.cpp:7380 +#: src/gui/insEdit.cpp:7389 src/gui/insEdit.cpp:7397 src/gui/insEdit.cpp:7409 +#: src/gui/insEdit.cpp:7422 src/gui/insEdit.cpp:7433 src/gui/insEdit.cpp:7443 +#: src/gui/insEdit.cpp:7451 src/gui/insEdit.cpp:7461 src/gui/insEdit.cpp:7470 +msgid "Volume" +msgstr "" + +#: src/gui/mixer.cpp:279 src/gui/userPresets.cpp:427 src/gui/settings.cpp:1120 +#: src/gui/guiConst.cpp:229 src/gui/insEdit.cpp:6923 src/gui/insEdit.cpp:6930 +#: src/gui/insEdit.cpp:6941 src/gui/insEdit.cpp:6965 src/gui/insEdit.cpp:7067 +#: src/gui/insEdit.cpp:7108 src/gui/insEdit.cpp:7152 src/gui/insEdit.cpp:7192 +#: src/gui/insEdit.cpp:7212 src/gui/insEdit.cpp:7232 src/gui/insEdit.cpp:7240 +#: src/gui/insEdit.cpp:7253 src/gui/insEdit.cpp:7265 src/gui/insEdit.cpp:7271 +#: src/gui/insEdit.cpp:7287 src/gui/insEdit.cpp:7297 src/gui/insEdit.cpp:7360 +#: src/gui/insEdit.cpp:7392 src/gui/insEdit.cpp:7438 src/gui/insEdit.cpp:7446 +msgid "Panning" +msgstr "" + +#: src/gui/mixer.cpp:290 src/gui/userPresets.cpp:433 src/gui/settings.cpp:1127 +msgid "Front/Rear" +msgstr "" + +#: src/gui/mixer.cpp:299 src/gui/settings.cpp:4208 +msgid "Patchbay" +msgstr "Patchbaai" + +#: src/gui/mixer.cpp:305 +msgid "Automatic patchbay" +msgstr "Automatisch patchbaai" + +#: src/gui/mixer.cpp:310 +msgid "Display hidden ports" +msgstr "" + +#: src/gui/mixer.cpp:312 +msgid "Display internal" +msgstr "" + +#: src/gui/mixer.cpp:322 src/gui/mixer.cpp:383 src/gui/settings.cpp:1901 +#: src/gui/settings.cpp:2089 src/gui/songInfo.cpp:69 +msgid "System" +msgstr "Systeem" + +#: src/gui/mixer.cpp:354 +msgid "Sample Preview" +msgstr "Voorproef een sample" + +#: src/gui/mixer.cpp:367 src/gui/editControls.cpp:745 +#: src/gui/editControls.cpp:837 src/gui/editControls.cpp:953 +#: src/gui/editControls.cpp:1093 src/gui/settings.cpp:1490 +#: src/gui/guiConst.cpp:558 +msgid "Metronome" +msgstr "" + +#: src/gui/mixer.cpp:446 +msgid "disconnect all" +msgstr "" + +#: src/gui/editing.cpp:200 +#, c-format +msgid "no data in oldPatMap for channel %d!" +msgstr "" + +#: src/gui/editing.cpp:664 src/gui/editing.cpp:1203 +#, c-format +msgid "invalid clipboard data! failed at line %d char %d" +msgstr "" + +#: src/gui/editing.cpp:1565 src/gui/editing.cpp:1669 +msgid "can't collapse any further!" +msgstr "kan niet meer instorten!" + +#: src/gui/editing.cpp:1749 +msgid "can't expand any further!" +msgstr "kan niet meer uitbreiden!" + +#: src/gui/editing.cpp:1836 src/gui/editing.cpp:1851 +#, c-format +msgid "copy: %s" +msgstr "" + +#: src/gui/memory.cpp:35 src/gui/settings.cpp:3696 src/gui/settings.cpp:4217 +#: src/gui/guiConst.cpp:613 +msgid "Memory Composition" +msgstr "" + +#: src/gui/memory.cpp:146 +#, c-format +msgid "bank %d" +msgstr "" + +#: src/gui/memory.cpp:175 src/gui/memory.cpp:176 +msgid "no chips with memory" +msgstr "geen chips met geheugen" + +#: src/gui/intro.cpp:89 src/gui/gui.cpp:2345 src/gui/gui.cpp:3746 +#: src/gui/gui.cpp:5019 src/gui/gui.cpp:5041 src/gui/gui.cpp:5479 +#: src/gui/gui.cpp:5781 src/gui/gui.cpp:5791 +#, c-format +msgid "Error while loading file! (%s)" +msgstr "Fout tijdens laden bestand! (%s)" + +#: src/gui/intro.cpp:122 +msgid "IntroMon X" +msgstr "" + +#: src/gui/intro.cpp:122 +msgid "Intro" +msgstr "" + +#: src/gui/intro.cpp:124 +msgid "Preview" +msgstr "" + +#: src/gui/intro.cpp:176 src/gui/intro.cpp:177 src/gui/intro.cpp:178 +msgid "SORRY NOTHING" +msgstr "SORRY NIETS" + +#: src/gui/intro.cpp:310 +msgid "hold to skip" +msgstr "" + +#: src/gui/dataList.cpp:76 +msgid "Bug!" +msgstr "" + +#: src/gui/dataList.cpp:79 src/gui/util.cpp:107 src/gui/util.cpp:109 +#: src/gui/settings.cpp:4220 src/gui/insEdit.cpp:5334 +msgid "Unknown" +msgstr "" + +#: src/gui/dataList.cpp:136 src/gui/dataList.cpp:260 +msgid "duplicate" +msgstr "" + +#: src/gui/dataList.cpp:139 src/gui/dataList.cpp:263 src/gui/dataList.cpp:388 +#: src/gui/dataList.cpp:731 src/gui/dataList.cpp:867 +msgid "replace..." +msgstr "" + +#: src/gui/dataList.cpp:142 src/gui/dataList.cpp:266 src/gui/gui.cpp:4232 +msgid "save" +msgstr "opslaan" + +#: src/gui/dataList.cpp:145 +msgid "save (.dmp)" +msgstr "opslaan (.dmp)" + +#: src/gui/dataList.cpp:148 src/gui/dataList.cpp:269 src/gui/dataList.cpp:617 +#: src/gui/dataList.cpp:994 src/gui/dataList.cpp:1040 +#: src/gui/editControls.cpp:50 src/gui/gui.cpp:2767 src/gui/gui.cpp:2776 +msgid "delete" +msgstr "" + +#: src/gui/dataList.cpp:243 +msgid "out of memory for this sample!" +msgstr "geen geheugen meer vor dit sample!" + +#: src/gui/dataList.cpp:254 +msgid "make instrument" +msgstr "instrument maken" + +#: src/gui/dataList.cpp:257 +msgid "make me a drum kit" +msgstr "maak voor me een drumstel" + +#: src/gui/dataList.cpp:290 src/gui/dataList.cpp:593 src/gui/gui.cpp:5914 +msgid "Instruments" +msgstr "Instruments" + +#: src/gui/dataList.cpp:312 src/gui/dataList.cpp:714 src/gui/dataList.cpp:846 +#: src/gui/subSongs.cpp:88 src/gui/insEdit.cpp:520 +msgid "Add" +msgstr "" + +#: src/gui/dataList.cpp:338 src/gui/dataList.cpp:721 src/gui/dataList.cpp:853 +#: src/gui/subSongs.cpp:108 +msgid "Duplicate" +msgstr "" + +#: src/gui/dataList.cpp:359 src/gui/dataList.cpp:728 src/gui/dataList.cpp:860 +#: src/gui/editControls.cpp:497 src/gui/waveEdit.cpp:435 +#: src/gui/waveEdit.cpp:467 src/gui/sampleEdit.cpp:122 +#: src/gui/sampleEdit.cpp:171 src/gui/insEdit.cpp:5239 src/gui/insEdit.cpp:5304 +msgid "Open" +msgstr "" + +#: src/gui/dataList.cpp:363 +msgid "replace instrument..." +msgstr "" + +#: src/gui/dataList.cpp:366 +msgid "load instrument from TX81Z" +msgstr "" + +#: src/gui/dataList.cpp:372 +msgid "replace wavetable..." +msgstr "" + +#: src/gui/dataList.cpp:378 +msgid "replace sample..." +msgstr "" + +#: src/gui/dataList.cpp:381 +msgid "import raw sample..." +msgstr "" + +#: src/gui/dataList.cpp:384 +msgid "import raw sample (replace)..." +msgstr "" + +#: src/gui/dataList.cpp:392 +msgid "load from TX81Z" +msgstr "" + +#: src/gui/dataList.cpp:399 +msgid "Open (insert; right-click to replace)" +msgstr "" + +#: src/gui/dataList.cpp:420 src/gui/dataList.cpp:741 src/gui/dataList.cpp:884 +#: src/gui/editControls.cpp:502 src/gui/waveEdit.cpp:474 +#: src/gui/sampleEdit.cpp:184 src/gui/insEdit.cpp:5311 +msgid "Save" +msgstr "" + +#: src/gui/dataList.cpp:424 +msgid "save instrument as .dmp..." +msgstr "" + +#: src/gui/dataList.cpp:430 +msgid "save wavetable as .dmw..." +msgstr "" + +#: src/gui/dataList.cpp:433 +msgid "save raw wavetable..." +msgstr "" + +#: src/gui/dataList.cpp:439 +msgid "save raw sample..." +msgstr "" + +#: src/gui/dataList.cpp:443 src/gui/insEdit.cpp:5314 +msgid "save as .dmp..." +msgstr "" + +#: src/gui/dataList.cpp:456 src/gui/dataList.cpp:761 src/gui/dataList.cpp:903 +msgid "Toggle folders/standard view" +msgstr "" + +#: src/gui/dataList.cpp:478 src/gui/dataList.cpp:769 src/gui/dataList.cpp:911 +#: src/gui/subSongs.cpp:55 +msgid "Move up" +msgstr "" + +#: src/gui/dataList.cpp:499 src/gui/dataList.cpp:776 src/gui/dataList.cpp:918 +#: src/gui/subSongs.cpp:62 +msgid "Move down" +msgstr "" + +#: src/gui/dataList.cpp:510 src/gui/dataList.cpp:787 src/gui/dataList.cpp:929 +msgid "Create" +msgstr "" + +#: src/gui/dataList.cpp:540 src/gui/dataList.cpp:797 src/gui/dataList.cpp:939 +msgid "New folder" +msgstr "" + +#: src/gui/dataList.cpp:549 src/gui/dataList.cpp:947 +msgid "Preview (right click to stop)" +msgstr "" + +#: src/gui/dataList.cpp:576 src/gui/dataList.cpp:807 src/gui/dataList.cpp:959 +#: src/gui/guiConst.cpp:666 src/gui/sampleEdit.cpp:1105 +msgid "Delete" +msgstr "Verwijder" + +#: src/gui/dataList.cpp:608 src/gui/dataList.cpp:985 src/gui/dataList.cpp:1031 +msgid "" +msgstr "" + +#: src/gui/dataList.cpp:614 src/gui/dataList.cpp:991 src/gui/dataList.cpp:1037 +msgid "rename..." +msgstr "" + +#: src/gui/dataList.cpp:663 src/gui/dataList.cpp:707 src/gui/gui.cpp:5923 +msgid "Wavetables" +msgstr "" + +#: src/gui/dataList.cpp:674 src/gui/dataList.cpp:839 src/gui/xyOsc.cpp:68 +#: src/gui/sampleEdit.cpp:898 src/gui/sampleEdit.cpp:1072 src/gui/gui.cpp:5932 +msgid "Samples" +msgstr "" + +#: src/gui/dataList.cpp:745 src/gui/waveEdit.cpp:477 +msgid "save as .dmw..." +msgstr "" + +#: src/gui/dataList.cpp:748 src/gui/dataList.cpp:891 src/gui/waveEdit.cpp:480 +#: src/gui/sampleEdit.cpp:187 +msgid "save raw..." +msgstr "opslaan onbewerkt..." + +#: src/gui/dataList.cpp:871 src/gui/sampleEdit.cpp:174 +msgid "import raw..." +msgstr "importeer onbewerkt..." + +#: src/gui/dataList.cpp:874 +msgid "import raw (replace)..." +msgstr "importeer onbewerkt (xxxxxx)..." + +#: src/gui/exportOptions.cpp:29 +msgid "Export type:" +msgstr "" + +#: src/gui/exportOptions.cpp:32 +msgid "one file" +msgstr "één bestand" + +#: src/gui/exportOptions.cpp:35 +msgid "multiple files (one per chip)" +msgstr "menige bestanden (een per chip)" + +#: src/gui/exportOptions.cpp:38 +msgid "multiple files (one per channel)" +msgstr "menige bestanden (een per kanaal)" + +#: src/gui/exportOptions.cpp:44 +msgid "Bit depth:" +msgstr "" + +#: src/gui/exportOptions.cpp:46 +msgid "16-bit integer" +msgstr "" + +#: src/gui/exportOptions.cpp:49 +msgid "32-bit float" +msgstr "" + +#: src/gui/exportOptions.cpp:55 src/gui/settings.cpp:1352 src/gui/gui.cpp:6270 +msgid "Sample rate" +msgstr "" + +#: src/gui/exportOptions.cpp:61 +msgid "Channels in file" +msgstr "Kanaals in bestand" + +#: src/gui/exportOptions.cpp:67 src/gui/settings.cpp:930 +msgid "Loops" +msgstr "" + +#: src/gui/exportOptions.cpp:70 src/gui/settings.cpp:935 +msgid "Fade out (seconds)" +msgstr "" + +#: src/gui/exportOptions.cpp:76 +msgid "Channels to export:" +msgstr "" + +#: src/gui/exportOptions.cpp:78 src/gui/effectList.cpp:32 src/gui/gui.cpp:6186 +msgid "All" +msgstr "Alle" + +#: src/gui/exportOptions.cpp:84 src/gui/sysConf.cpp:1870 +#: src/gui/effectList.cpp:34 src/gui/compatFlags.cpp:219 +#: src/gui/waveEdit.cpp:37 src/gui/gui.cpp:6192 src/gui/insEdit.cpp:518 +msgid "None" +msgstr "" + +#: src/gui/exportOptions.cpp:110 src/gui/exportOptions.cpp:214 +#: src/gui/exportOptions.cpp:225 src/gui/exportOptions.cpp:243 +#: src/gui/exportOptions.cpp:266 src/gui/exportOptions.cpp:297 +#: src/gui/exportOptions.cpp:318 src/gui/exportOptions.cpp:341 +#: src/gui/commandPalette.cpp:199 src/gui/settings.cpp:6673 +#: src/gui/newSong.cpp:273 src/gui/gui.cpp:5669 src/gui/gui.cpp:5693 +#: src/gui/gui.cpp:5717 src/gui/gui.cpp:5741 src/gui/gui.cpp:5765 +#: src/gui/gui.cpp:5796 src/gui/gui.cpp:5855 src/gui/gui.cpp:6229 +#: src/gui/gui.cpp:6353 +msgid "Cancel" +msgstr "" + +#: src/gui/exportOptions.cpp:115 src/gui/exportOptions.cpp:217 +#: src/gui/exportOptions.cpp:246 src/gui/exportOptions.cpp:300 +#: src/gui/exportOptions.cpp:321 src/gui/exportOptions.cpp:344 +#: src/gui/editControls.cpp:512 src/gui/userPresets.cpp:523 +#: src/gui/settings.cpp:1242 src/gui/settings.cpp:2165 +#: src/gui/settings.cpp:2557 src/gui/settings.cpp:3800 src/gui/guiConst.cpp:536 +#: src/gui/gui.cpp:5578 src/gui/gui.cpp:5630 +msgid "Export" +msgstr "" + +#: src/gui/exportOptions.cpp:130 +msgid "select at least one channel" +msgstr "tenminste één kanal selecteren" + +#: src/gui/exportOptions.cpp:137 +msgid "settings:" +msgstr "" + +#: src/gui/exportOptions.cpp:138 +msgid "format version" +msgstr "opmaakversie" + +#: src/gui/exportOptions.cpp:146 src/gui/exportOptions.cpp:238 +#: src/gui/insEdit.cpp:362 +msgid "loop" +msgstr "" + +#: src/gui/exportOptions.cpp:148 +msgid "loop trail:" +msgstr "" + +#: src/gui/exportOptions.cpp:150 +msgid "auto-detect" +msgstr "" + +#: src/gui/exportOptions.cpp:153 +msgid "add one loop" +msgstr "" + +#: src/gui/exportOptions.cpp:156 +msgid "custom" +msgstr "" + +#: src/gui/exportOptions.cpp:167 +msgid "add pattern change hints" +msgstr "" + +#: src/gui/exportOptions.cpp:170 +msgid "" +"inserts data blocks on pattern changes.\n" +"useful if you are writing a playback routine.\n" +"\n" +"the format of a pattern change data block is:\n" +"67 66 FE ll ll ll ll 01 oo rr pp pp pp ...\n" +"- ll: length, a 32-bit little-endian number\n" +"- oo: order\n" +"- rr: initial row (a 0Dxx effect is able to select a different row)\n" +"- pp: pattern index (one per channel)\n" +"\n" +"pattern indexes are ordered as they appear in the song." +msgstr "" + +#: src/gui/exportOptions.cpp:183 +msgid "direct stream mode" +msgstr "" + +#: src/gui/exportOptions.cpp:186 +msgid "" +"required for DualPCM and MSM6258 export.\n" +"\n" +"allows for volume/direction changes when playing samples,\n" +"at the cost of a massive increase in file size." +msgstr "" + +#: src/gui/exportOptions.cpp:191 +msgid "chips to export:" +msgstr "" + +#: src/gui/exportOptions.cpp:200 +#, c-format +msgid "this chip is only available in VGM %d.%.2x and higher!" +msgstr "" + +#: src/gui/exportOptions.cpp:204 +msgid "this chip is not supported by the VGM format!" +msgstr "" + +#: src/gui/exportOptions.cpp:210 +#, c-format +msgid "select the chip you wish to export, but only up to %d of each type." +msgstr "" + +#: src/gui/exportOptions.cpp:222 +msgid "nothing to export" +msgstr "" + +#: src/gui/exportOptions.cpp:233 +msgid "Commander X16 Zsound Music File" +msgstr "" + +#: src/gui/exportOptions.cpp:234 +msgid "Tick Rate (Hz)" +msgstr "" + +#: src/gui/exportOptions.cpp:240 +msgid "optimize size" +msgstr "" + +#: src/gui/exportOptions.cpp:256 src/gui/editControls.cpp:630 +msgid "" +"this is NOT ROM export! only use for making sure the\n" +"Furnace Amiga emulator is working properly by\n" +"comparing it with real Amiga output." +msgstr "" + +#: src/gui/exportOptions.cpp:261 src/gui/editControls.cpp:635 +#: src/gui/settings.cpp:3925 +msgid "Directory" +msgstr "" + +#: src/gui/exportOptions.cpp:269 src/gui/editControls.cpp:638 +msgid "Bake Data" +msgstr "" + +#: src/gui/exportOptions.cpp:284 src/gui/editControls.cpp:653 +#, c-format +msgid "Done! Baked %d files." +msgstr "" + +#: src/gui/exportOptions.cpp:293 +msgid "this option exports the song to a text file.\n" +msgstr "" + +#: src/gui/exportOptions.cpp:310 +msgid "" +"this option exports a text or binary file which\n" +"contains a dump of the internal command stream\n" +"produced when playing the song.\n" +"\n" +"technical/development use only!" +msgstr "" + +#: src/gui/exportOptions.cpp:331 +msgid "" +"export in DefleMask module format.\n" +"only do it if you really, really need to, or are downgrading an existing ." +"dmf." +msgstr "" + +#: src/gui/exportOptions.cpp:335 +msgid "format version:" +msgstr "opmaakversie:" + +#: src/gui/exportOptions.cpp:336 +msgid "1.1.3 and higher" +msgstr "" + +#: src/gui/exportOptions.cpp:337 +msgid "1.0/legacy (0.12)" +msgstr "" + +#: src/gui/exportOptions.cpp:357 src/gui/settings.cpp:1253 +#: src/gui/settings.cpp:3929 +msgid "Audio" +msgstr "" + +#: src/gui/exportOptions.cpp:361 src/gui/settings.cpp:3931 +msgid "VGM" +msgstr "" + +#: src/gui/exportOptions.cpp:370 src/gui/settings.cpp:3932 +msgid "ZSM" +msgstr "" + +#: src/gui/exportOptions.cpp:380 +msgid "Amiga Validation" +msgstr "" + +#: src/gui/exportOptions.cpp:385 src/gui/settings.cpp:2959 +#: src/gui/settings.cpp:3891 +msgid "Text" +msgstr "" + +#: src/gui/exportOptions.cpp:389 +msgid "Command Stream" +msgstr "" + +#: src/gui/exportOptions.cpp:393 +msgid "DMF" +msgstr "" + +#: src/gui/exportOptions.cpp:422 +msgid "congratulations! you've unlocked a secret panel." +msgstr "" + +#: src/gui/exportOptions.cpp:423 +msgid "Toggle hidden systems" +msgstr "" + +#: src/gui/exportOptions.cpp:427 +msgid "Toggle all instrument types" +msgstr "" + +#: src/gui/exportOptions.cpp:431 +msgid "Set pitch linearity to Partial" +msgstr "" + +#: src/gui/exportOptions.cpp:435 +msgid "Enable multi-threading settings" +msgstr "" + +#: src/gui/exportOptions.cpp:439 +msgid "Set fat to max" +msgstr "" + +#: src/gui/exportOptions.cpp:446 +msgid "Set muscle and fat to zero" +msgstr "" + +#: src/gui/exportOptions.cpp:453 +msgid "Tell tildearrow this must be a mistake" +msgstr "" + +#: src/gui/exportOptions.cpp:454 +msgid "" +"yeah, it's a bug. write a bug report in the GitHub page and tell me how did " +"you get here." +msgstr "" + +#: src/gui/speed.cpp:32 src/gui/speed.cpp:102 src/gui/editControls.cpp:532 +#: src/gui/sysConf.cpp:2148 src/gui/guiConst.cpp:232 src/gui/guiConst.cpp:581 +#: src/gui/insEdit.cpp:2028 src/gui/insEdit.cpp:5693 src/gui/insEdit.cpp:6885 +msgid "Speed" +msgstr "" + +#: src/gui/speed.cpp:41 +msgid "Base Tempo##TempoOrHz" +msgstr "" + +#: src/gui/speed.cpp:41 +msgid "Tick Rate##TempoOrHz" +msgstr "" + +#: src/gui/speed.cpp:46 +msgid "click to display tick rate" +msgstr "" + +#: src/gui/speed.cpp:48 +msgid "click to display base tempo" +msgstr "" + +#: src/gui/speed.cpp:80 +msgid "Groove" +msgstr "" + +#: src/gui/speed.cpp:87 +msgid "click for one speed" +msgstr "" + +#: src/gui/speed.cpp:90 +msgid "Speeds" +msgstr "" + +#: src/gui/speed.cpp:99 +msgid "click for groove pattern" +msgstr "" + +#: src/gui/speed.cpp:110 +msgid "click for two (alternating) speeds" +msgstr "" + +#: src/gui/speed.cpp:168 +msgid "Virtual Tempo" +msgstr "" + +#: src/gui/speed.cpp:177 +msgid "Numerator" +msgstr "" + +#: src/gui/speed.cpp:187 +msgid "Denominator (set to base tempo)" +msgstr "" + +#: src/gui/speed.cpp:193 +msgid "Divider" +msgstr "" + +#: src/gui/speed.cpp:208 +msgid "Highlight" +msgstr "" + +#: src/gui/speed.cpp:231 +msgid "Pattern Length" +msgstr "" + +#: src/gui/speed.cpp:245 +msgid "Song Length" +msgstr "" + +#: src/gui/channels.cpp:40 src/gui/editControls.cpp:446 +#: src/gui/guiConst.cpp:601 src/gui/gui.cpp:6280 +msgid "Channels" +msgstr "" + +#: src/gui/channels.cpp:49 +msgid "Pat" +msgstr "" + +#: src/gui/channels.cpp:51 src/gui/editControls.cpp:550 +msgid "Osc" +msgstr "" + +#: src/gui/channels.cpp:53 +msgid "Swap" +msgstr "" + +#: src/gui/channels.cpp:55 src/gui/userPresets.cpp:368 +#: src/gui/effectList.cpp:45 src/gui/subSongs.cpp:125 src/gui/settings.cpp:1060 +#: src/gui/settings.cpp:4383 src/gui/sampleEdit.cpp:195 src/gui/songInfo.cpp:40 +#: src/gui/sysManager.cpp:54 src/gui/insEdit.cpp:5288 +msgid "Name" +msgstr "" + +#: src/gui/channels.cpp:64 +msgid "Show in pattern" +msgstr "" + +#: src/gui/channels.cpp:71 +msgid "Show in per-channel oscilloscope" +msgstr "" + +#: src/gui/channels.cpp:82 +#, c-format +msgid "" +"%s #%d\n" +"(drag to swap channels)" +msgstr "" + +#: src/gui/commandPalette.cpp:51 src/gui/sysPicker.cpp:35 +#: src/gui/newSong.cpp:133 +msgid "Search..." +msgstr "" + +#: src/gui/commandPalette.cpp:54 +msgid "Search recent files..." +msgstr "" + +#: src/gui/commandPalette.cpp:57 +msgid "Search instruments..." +msgstr "" + +#: src/gui/commandPalette.cpp:60 +msgid "Search samples..." +msgstr "" + +#: src/gui/commandPalette.cpp:63 +msgid "Search instruments (to change to)..." +msgstr "" + +#: src/gui/commandPalette.cpp:66 +msgid "Search chip (to add)..." +msgstr "" + +#: src/gui/commandPalette.cpp:93 src/gui/commandPalette.cpp:167 +msgid "- None -" +msgstr "" + +#: src/gui/commandPalette.cpp:123 src/gui/commandPalette.cpp:179 +#: src/gui/commandPalette.cpp:241 +msgid "invalid command palette type" +msgstr "" + +#: src/gui/regView.cpp:30 src/gui/guiConst.cpp:604 +msgid "Register View" +msgstr "" + +#: src/gui/regView.cpp:38 +msgid "- no register pool available" +msgstr "" + +#: src/gui/log.cpp:25 src/gui/effectList.cpp:84 +msgid "ERROR" +msgstr "" + +#: src/gui/log.cpp:26 +msgid "warning" +msgstr "" + +#: src/gui/log.cpp:27 +msgid "info" +msgstr "" + +#: src/gui/log.cpp:28 src/gui/gui.cpp:4513 +msgid "debug" +msgstr "" + +#: src/gui/log.cpp:29 +msgid "trace" +msgstr "" + +#: src/gui/log.cpp:47 src/gui/settings.cpp:4243 src/gui/guiConst.cpp:605 +msgid "Log Viewer" +msgstr "" + +#: src/gui/log.cpp:48 src/gui/editControls.cpp:750 src/gui/editControls.cpp:883 +#: src/gui/editControls.cpp:1000 +msgid "Follow" +msgstr "" + +#: src/gui/log.cpp:50 src/gui/waveEdit.cpp:681 src/gui/insEdit.cpp:50 +msgid "Level" +msgstr "" + +#: src/gui/log.cpp:68 +msgid "time" +msgstr "" + +#: src/gui/log.cpp:70 +msgid "level" +msgstr "" + +#: src/gui/log.cpp:72 +msgid "message" +msgstr "" + +#: src/gui/pattern.cpp:433 src/gui/editControls.cpp:421 +#: src/gui/editControls.cpp:754 src/gui/editControls.cpp:887 +#: src/gui/editControls.cpp:1015 src/gui/settings.cpp:2344 +#: src/gui/settings.cpp:3297 src/gui/settings.cpp:4100 +#: src/gui/findReplace.cpp:794 src/gui/guiConst.cpp:582 src/gui/gui.cpp:5899 +msgid "Pattern" +msgstr "" + +#: src/gui/pattern.cpp:468 +msgid "there aren't any channels to show." +msgstr "" + +#: src/gui/pattern.cpp:492 +msgid "click for pattern options (effect columns/pattern names/visualizer)" +msgstr "" + +#: src/gui/pattern.cpp:504 +msgid "Options:" +msgstr "" + +#: src/gui/pattern.cpp:506 +msgid "Effect columns/collapse" +msgstr "" + +#: src/gui/pattern.cpp:507 +msgid "Pattern names" +msgstr "" + +#: src/gui/pattern.cpp:508 +msgid "Channel group hints" +msgstr "" + +#: src/gui/pattern.cpp:509 +msgid "Visualizer" +msgstr "" + +#: src/gui/pattern.cpp:517 +msgid "Channel status:" +msgstr "" + +#: src/gui/pattern.cpp:519 +msgid "No##_PCS0" +msgstr "" + +#: src/gui/pattern.cpp:522 +msgid "Yes##_PCS1" +msgstr "" + +#: src/gui/pattern.cpp:1420 src/gui/pattern.cpp:1452 +msgid "WARNING!!" +msgstr "" + +#: src/gui/pattern.cpp:1422 src/gui/pattern.cpp:1459 +msgid "this instrument cannot be previewed because" +msgstr "" + +#: src/gui/pattern.cpp:1423 src/gui/pattern.cpp:1466 +msgid "none of the chips can play it" +msgstr "" + +#: src/gui/pattern.cpp:1424 src/gui/pattern.cpp:1473 +msgid "your instrument is in peril!! be careful..." +msgstr "" + +#: src/gui/osc.cpp:169 src/gui/settings.cpp:3710 src/gui/settings.cpp:3937 +msgid "Oscilloscope" +msgstr "" + +#: src/gui/osc.cpp:176 +#, c-format +msgid "zoom: %.2fx (%.1fdB)" +msgstr "" + +#: src/gui/osc.cpp:187 +#, c-format +msgid "window size: %.1fms" +msgstr "" + +#: src/gui/osc.cpp:385 +msgid "(-Infinity)dB" +msgstr "" + +#: src/gui/debugWindow.cpp:66 src/gui/editControls.cpp:610 +msgid "Debug" +msgstr "" + +#: src/gui/debugWindow.cpp:663 +msgid "This is a language test." +msgstr "" + +#: src/gui/debugWindow.cpp:664 +msgid "This is another language test." +msgstr "" + +#: src/gui/debugWindow.cpp:720 +#, c-format +msgid "%d apple" +msgid_plural "%d apples" +msgstr[0] "" +msgstr[1] "" + +#: src/gui/chanOsc.cpp:32 +msgid "None (0%)" +msgstr "" + +#: src/gui/chanOsc.cpp:33 +msgid "None (50%)" +msgstr "" + +#: src/gui/chanOsc.cpp:34 +msgid "None (100%)" +msgstr "" + +#: src/gui/chanOsc.cpp:36 +msgid "Frequency" +msgstr "" + +#: src/gui/chanOsc.cpp:38 src/gui/settings.cpp:1667 src/gui/settings.cpp:3406 +#: src/gui/settings.cpp:4088 +msgid "Channel" +msgstr "Kanaal" + +#: src/gui/chanOsc.cpp:39 +msgid "Brightness" +msgstr "" + +#: src/gui/chanOsc.cpp:41 +msgid "Note Trigger" +msgstr "" + +#: src/gui/chanOsc.cpp:45 +msgid "Off" +msgstr "" + +#: src/gui/chanOsc.cpp:46 +msgid "Mode 1" +msgstr "" + +#: src/gui/chanOsc.cpp:47 +msgid "Mode 2" +msgstr "" + +#: src/gui/chanOsc.cpp:48 +msgid "Mode 3" +msgstr "" + +#: src/gui/chanOsc.cpp:135 src/gui/guiConst.cpp:607 +msgid "Oscilloscope (per-channel)" +msgstr "" + +#: src/gui/chanOsc.cpp:143 +msgid "Columns" +msgstr "" + +#: src/gui/chanOsc.cpp:152 +msgid "Size (ms)" +msgstr "" + +#: src/gui/chanOsc.cpp:163 +msgid "Automatic columns" +msgstr "" + +#: src/gui/chanOsc.cpp:177 +msgid "Center waveform" +msgstr "" + +#: src/gui/chanOsc.cpp:183 +msgid "Randomize phase on note" +msgstr "" + +#: src/gui/chanOsc.cpp:189 +msgid "Amplitude" +msgstr "" + +#: src/gui/chanOsc.cpp:199 src/gui/settings.cpp:3747 +msgid "Line size" +msgstr "" + +#: src/gui/chanOsc.cpp:211 +msgid "Gradient" +msgstr "" + +#: src/gui/chanOsc.cpp:218 +msgid "error while creating gradient texture!" +msgstr "" + +#: src/gui/chanOsc.cpp:236 +msgid "error while updating gradient texture!" +msgstr "" + +#: src/gui/chanOsc.cpp:292 src/gui/chanOsc.cpp:348 src/gui/settings.cpp:3793 +msgid "Color" +msgstr "" + +#: src/gui/chanOsc.cpp:296 +msgid "Distance" +msgstr "" + +#: src/gui/chanOsc.cpp:305 +msgid "Spread" +msgstr "" + +#: src/gui/chanOsc.cpp:314 src/gui/userPresets.cpp:370 src/gui/subSongs.cpp:121 +#: src/gui/settings.cpp:2281 src/gui/sysManager.cpp:124 +msgid "Remove" +msgstr "" + +#: src/gui/chanOsc.cpp:338 src/gui/settings.cpp:3885 src/gui/settings.cpp:4165 +#: src/gui/settings.cpp:4192 src/gui/settings.cpp:4218 +msgid "Background" +msgstr "" + +#: src/gui/chanOsc.cpp:341 +msgid "X Axis##AxisX" +msgstr "" + +#: src/gui/chanOsc.cpp:342 +msgid "Y Axis##AxisY" +msgstr "" + +#: src/gui/chanOsc.cpp:352 +msgid "Text format:" +msgstr "" + +#: src/gui/chanOsc.cpp:358 +msgid "" +"format guide:\n" +"- %c: channel name\n" +"- %C: channel short name\n" +"- %d: channel number (starting from 0)\n" +"- %D: channel number (starting from 1)\n" +"- %n: channel note\n" +"- %i: instrument name\n" +"- %I: instrument number (decimal)\n" +"- %x: instrument number (hex)\n" +"- %s: chip name\n" +"- %p: chip part number\n" +"- %S: chip ID\n" +"- %v: volume (decimal)\n" +"- %V: volume (percentage)\n" +"- %b: volume (hex)\n" +"- %l: new line\n" +"- %%: percent sign" +msgstr "" + +#: src/gui/chanOsc.cpp:380 +msgid "Text color" +msgstr "" + +#: src/gui/chanOsc.cpp:382 src/gui/xyOsc.cpp:80 src/gui/settings.cpp:6672 +#: src/gui/tutorial.cpp:689 src/gui/gui.cpp:5639 src/gui/gui.cpp:6055 +#: src/gui/gui.cpp:6223 src/gui/gui.cpp:6322 src/gui/gui.cpp:6371 +msgid "OK" +msgstr "" + +#: src/gui/chanOsc.cpp:400 +msgid "creating chan osc work pool" +msgstr "" + +#: src/gui/chanOsc.cpp:429 +#, c-format +msgid "creating FFT plan for channel %d" +msgstr "" + +#: src/gui/chanOsc.cpp:436 +msgid "failed to create plan!" +msgstr "" + +#: src/gui/chanOsc.cpp:438 +msgid "failed to create inverse plan!" +msgstr "" + +#: src/gui/chanOsc.cpp:440 +msgid "failed to create FFT buffers" +msgstr "" + +#: src/gui/chanOsc.cpp:585 +msgid "Error!" +msgstr "" + +#: src/gui/editControls.cpp:47 src/gui/sampleEdit.cpp:1736 src/gui/gui.cpp:2733 +#: src/gui/insEdit.cpp:363 +msgid "cut" +msgstr "" + +#: src/gui/editControls.cpp:48 src/gui/sampleEdit.cpp:1740 src/gui/gui.cpp:2734 +#: src/gui/insEdit.cpp:7538 +msgid "copy" +msgstr "" + +#: src/gui/editControls.cpp:49 src/gui/sampleEdit.cpp:1744 src/gui/gui.cpp:2735 +#: src/gui/gui.cpp:2788 src/gui/insEdit.cpp:7543 +msgid "paste" +msgstr "" + +#: src/gui/editControls.cpp:51 +msgid "" +"select\n" +"all" +msgstr "" + +#: src/gui/editControls.cpp:52 +msgid "piano" +msgstr "" + +#: src/gui/editControls.cpp:53 src/gui/gui.cpp:4429 +msgid "undo" +msgstr "" + +#: src/gui/editControls.cpp:54 src/gui/gui.cpp:4430 +msgid "redo" +msgstr "" + +#: src/gui/editControls.cpp:57 +msgid "" +"paste\n" +"mix" +msgstr "" + +#: src/gui/editControls.cpp:58 +msgid "" +"paste\n" +"mix bg" +msgstr "" + +#: src/gui/editControls.cpp:59 +msgid "" +"paste\n" +"ins" +msgstr "" + +#: src/gui/editControls.cpp:60 +msgid "" +"paste\n" +"ins bg" +msgstr "" + +#: src/gui/editControls.cpp:61 +msgid "" +"paste\n" +"flood" +msgstr "" + +#: src/gui/editControls.cpp:62 +msgid "" +"paste\n" +"overflow" +msgstr "" + +#: src/gui/editControls.cpp:63 +msgid "" +"transpose\n" +"notes" +msgstr "" + +#: src/gui/editControls.cpp:64 +msgid "" +"transpose\n" +"values" +msgstr "" + +#: src/gui/editControls.cpp:67 +msgid "" +"change\n" +"ins" +msgstr "" + +#: src/gui/editControls.cpp:68 +msgid "" +"find/\n" +"replace" +msgstr "" + +#: src/gui/editControls.cpp:69 src/gui/gui.cpp:3063 +msgid "collapse" +msgstr "" + +#: src/gui/editControls.cpp:70 src/gui/gui.cpp:3064 +msgid "expand" +msgstr "" + +#: src/gui/editControls.cpp:71 src/gui/gui.cpp:2820 +msgid "flip" +msgstr "" + +#: src/gui/editControls.cpp:72 src/gui/insEdit.cpp:430 +msgid "invert" +msgstr "" + +#: src/gui/editControls.cpp:73 src/gui/gui.cpp:2800 src/gui/gui.cpp:2960 +msgid "interpolate" +msgstr "" + +#: src/gui/editControls.cpp:74 src/gui/gui.cpp:2812 src/gui/insEdit.cpp:7610 +msgid "scale" +msgstr "" + +#: src/gui/editControls.cpp:77 src/gui/gui.cpp:2804 +msgid "fade" +msgstr "" + +#: src/gui/editControls.cpp:78 src/gui/gui.cpp:2816 src/gui/insEdit.cpp:7639 +msgid "randomize" +msgstr "" + +#: src/gui/editControls.cpp:79 +msgid "opmask" +msgstr "" + +#: src/gui/editControls.cpp:80 +msgid "" +"scroll\n" +"mode" +msgstr "" + +#: src/gui/editControls.cpp:81 +msgid "" +"input\n" +"latch" +msgstr "" + +#: src/gui/editControls.cpp:82 +msgid "" +"set\n" +"latch" +msgstr "" + +#: src/gui/editControls.cpp:83 +msgid "" +"clear\n" +"latch" +msgstr "" + +#: src/gui/editControls.cpp:84 src/gui/findReplace.cpp:43 +#: src/gui/insEdit.cpp:7557 +msgid "clear" +msgstr "" + +#: src/gui/editControls.cpp:333 +msgid "Mobile Controls" +msgstr "" + +#: src/gui/editControls.cpp:408 +msgid "Mobile Menu" +msgstr "" + +#: src/gui/editControls.cpp:425 src/gui/editControls.cpp:752 +#: src/gui/editControls.cpp:885 src/gui/editControls.cpp:1007 +#: src/gui/settings.cpp:2485 src/gui/settings.cpp:3271 +#: src/gui/settings.cpp:3975 src/gui/orders.cpp:232 src/gui/guiConst.cpp:577 +#: src/gui/gui.cpp:5888 +msgid "Orders" +msgstr "" + +#: src/gui/editControls.cpp:429 src/gui/findReplace.cpp:669 +#: src/gui/findReplace.cpp:914 +msgid "Ins" +msgstr "" + +#: src/gui/editControls.cpp:442 src/gui/findReplace.cpp:788 +#: src/gui/guiConst.cpp:230 +msgid "Song" +msgstr "" + +#: src/gui/editControls.cpp:450 src/gui/sampleEdit.cpp:494 +msgid "Chips" +msgstr "" + +#: src/gui/editControls.cpp:458 src/gui/settings.cpp:2117 +#: src/gui/settings.cpp:3934 src/gui/settings.cpp:4018 +#: src/gui/compatFlags.cpp:319 +msgid "Other" +msgstr "" + +#: src/gui/editControls.cpp:487 src/gui/guiConst.cpp:531 +msgid "New" +msgstr "" + +#: src/gui/editControls.cpp:491 src/gui/doAction.cpp:38 src/gui/gui.cpp:4194 +msgid "Unsaved changes! Save changes before creating a new song?" +msgstr "" + +#: src/gui/editControls.cpp:507 +msgid "Save as..." +msgstr "" + +#: src/gui/editControls.cpp:516 src/gui/gui.cpp:1680 +msgid "Restore Backup" +msgstr "" + +#: src/gui/editControls.cpp:524 +msgid "Song Info" +msgstr "" + +#: src/gui/editControls.cpp:528 src/gui/subSongs.cpp:17 +#: src/gui/guiConst.cpp:608 +msgid "Subsongs" +msgstr "" + +#: src/gui/editControls.cpp:541 +msgid "Channels here..." +msgstr "" + +#: src/gui/editControls.cpp:544 +msgid "Chips here..." +msgstr "" + +#: src/gui/editControls.cpp:547 +msgid "What the hell..." +msgstr "" + +#: src/gui/editControls.cpp:554 +msgid "ChanOsc" +msgstr "" + +#: src/gui/editControls.cpp:558 +msgid "RegView" +msgstr "" + +#: src/gui/editControls.cpp:562 +msgid "Stats" +msgstr "" + +#: src/gui/editControls.cpp:566 src/gui/guiConst.cpp:611 src/gui/grooves.cpp:35 +msgid "Grooves" +msgstr "" + +#: src/gui/editControls.cpp:569 +msgid "Compat Flags" +msgstr "" + +#: src/gui/editControls.cpp:573 +msgid "XYOsc" +msgstr "" + +#: src/gui/editControls.cpp:577 +msgid "Meter" +msgstr "" + +#: src/gui/editControls.cpp:581 +msgid "Memory" +msgstr "" + +#: src/gui/editControls.cpp:585 +msgid "CV" +msgstr "" + +#: src/gui/editControls.cpp:589 +msgid "Presets" +msgstr "" + +#: src/gui/editControls.cpp:593 +msgid "PatManager" +msgstr "" + +#: src/gui/editControls.cpp:599 src/gui/guiConst.cpp:564 +msgid "Panic" +msgstr "" + +#: src/gui/editControls.cpp:601 src/gui/settings.cpp:560 +#: src/gui/guiConst.cpp:589 src/gui/guiConst.cpp:591 src/gui/gui.cpp:4439 +msgid "Settings" +msgstr "Voorkeuren" + +#: src/gui/editControls.cpp:606 +msgid "Log" +msgstr "" + +#: src/gui/editControls.cpp:614 src/gui/guiConst.cpp:587 +msgid "About" +msgstr "Over" + +#: src/gui/editControls.cpp:619 +msgid "Switch to Desktop Mode" +msgstr "" + +#: src/gui/editControls.cpp:673 src/gui/editControls.cpp:784 +#: src/gui/editControls.cpp:904 +msgid "Play/Edit Controls" +msgstr "" + +#: src/gui/editControls.cpp:681 src/gui/editControls.cpp:842 +#: src/gui/editControls.cpp:959 src/gui/editControls.cpp:1125 +msgid "Octave" +msgstr "" + +#: src/gui/editControls.cpp:698 src/gui/editControls.cpp:857 +msgid "Coarse Step" +msgstr "" + +#: src/gui/editControls.cpp:698 src/gui/editControls.cpp:857 +msgid "Edit Step" +msgstr "" + +#: src/gui/editControls.cpp:731 src/gui/editControls.cpp:797 +#: src/gui/editControls.cpp:911 src/gui/editControls.cpp:1048 +#: src/gui/guiConst.cpp:545 +msgid "Play" +msgstr "" + +#: src/gui/editControls.cpp:739 src/gui/editControls.cpp:789 +#: src/gui/editControls.cpp:918 src/gui/editControls.cpp:1040 +#: src/gui/guiConst.cpp:546 +msgid "Stop" +msgstr "" + +#: src/gui/editControls.cpp:742 src/gui/editControls.cpp:826 +#: src/gui/editControls.cpp:943 src/gui/editControls.cpp:1082 +#: src/gui/gui.cpp:4426 +msgid "Edit" +msgstr "Bewerken" + +#: src/gui/editControls.cpp:757 src/gui/editControls.cpp:816 +#: src/gui/editControls.cpp:934 src/gui/editControls.cpp:1104 +msgid "Repeat pattern" +msgstr "" + +#: src/gui/editControls.cpp:766 src/gui/editControls.cpp:806 +#: src/gui/editControls.cpp:925 src/gui/editControls.cpp:1073 +msgid "Step one row" +msgstr "" + +#: src/gui/editControls.cpp:771 src/gui/editControls.cpp:891 +#: src/gui/editControls.cpp:1020 src/gui/editControls.cpp:1110 +msgid "Poly##PolyInput" +msgstr "" + +#: src/gui/editControls.cpp:771 src/gui/editControls.cpp:891 +#: src/gui/editControls.cpp:1020 src/gui/editControls.cpp:1110 +msgid "Mono##PolyInput" +msgstr "" + +#: src/gui/editControls.cpp:776 src/gui/editControls.cpp:896 +#: src/gui/editControls.cpp:1025 src/gui/editControls.cpp:1115 +msgid "Polyphony" +msgstr "" + +#: src/gui/editControls.cpp:957 +msgid "Oct." +msgstr "" + +#: src/gui/editControls.cpp:974 src/gui/editControls.cpp:1142 +msgid "Coarse" +msgstr "" + +#: src/gui/editControls.cpp:974 src/gui/editControls.cpp:1142 +msgid "Step" +msgstr "" + +#: src/gui/editControls.cpp:998 +msgid "Foll." +msgstr "" + +#: src/gui/editControls.cpp:1003 +msgid "Ord##FollowOrders" +msgstr "" + +#: src/gui/editControls.cpp:1011 +msgid "Pat##FollowPattern" +msgstr "" + +#: src/gui/editControls.cpp:1033 +msgid "Play Controls" +msgstr "" + +#: src/gui/editControls.cpp:1057 +msgid "Play from the beginning of this pattern" +msgstr "" + +#: src/gui/editControls.cpp:1065 +msgid "Repeat from the beginning of this pattern" +msgstr "" + +#: src/gui/editControls.cpp:1122 src/gui/guiConst.cpp:576 +msgid "Edit Controls" +msgstr "" + +#: src/gui/editControls.cpp:1169 src/gui/guiConst.cpp:560 +msgid "Follow orders" +msgstr "" + +#: src/gui/editControls.cpp:1170 src/gui/guiConst.cpp:561 +msgid "Follow pattern" +msgstr "" + +#: src/gui/songNotes.cpp:32 src/gui/guiConst.cpp:600 +msgid "Song Comments" +msgstr "" + +#: src/gui/util.cpp:93 +msgid "" +msgstr "" + +#: src/gui/util.cpp:97 +msgid "Ctrl-" +msgstr "" + +#: src/gui/util.cpp:99 +msgid "Alt-" +msgstr "" + +#: src/gui/util.cpp:100 +msgid "Shift-" +msgstr "" + +#: src/gui/stats.cpp:31 src/gui/guiConst.cpp:597 +msgid "Statistics" +msgstr "" + +#: src/gui/stats.cpp:36 +msgid "Audio load" +msgstr "" + +#: src/gui/xyOsc.cpp:40 src/gui/guiConst.cpp:612 +msgid "Oscilloscope (X-Y)" +msgstr "" + +#: src/gui/xyOsc.cpp:45 +msgid "X Channel" +msgstr "" + +#: src/gui/xyOsc.cpp:51 +msgid "Invert##X" +msgstr "" + +#: src/gui/xyOsc.cpp:52 +msgid "Y Channel" +msgstr "" + +#: src/gui/xyOsc.cpp:58 +msgid "Invert##Y" +msgstr "" + +#: src/gui/xyOsc.cpp:59 src/gui/sampleEdit.cpp:1353 +msgid "Zoom" +msgstr "" + +#: src/gui/xyOsc.cpp:71 +msgid "Decay Time (ms)" +msgstr "" + +#: src/gui/xyOsc.cpp:74 +msgid "Intensity" +msgstr "" + +#: src/gui/xyOsc.cpp:77 +msgid "Line Thickness" +msgstr "" + +#: src/gui/xyOsc.cpp:213 +msgid "(-Infinity)dB,(-Infinity)dB" +msgstr "" + +#: src/gui/xyOsc.cpp:215 +#, c-format +msgid "(-Infinity)dB,%.1fdB" +msgstr "" + +#: src/gui/xyOsc.cpp:217 +#, c-format +msgid "%.1fdB,(-Infinity)dB" +msgstr "" + +#: src/gui/xyOsc.cpp:219 +#, c-format +msgid "%.1fdB,%.1fdB" +msgstr "" + +#: src/gui/sysConf.cpp:49 src/gui/sysConf.cpp:121 src/gui/sysConf.cpp:486 +#: src/gui/sysConf.cpp:604 src/gui/sysConf.cpp:647 src/gui/sysConf.cpp:684 +#: src/gui/sysConf.cpp:843 src/gui/sysConf.cpp:1098 src/gui/sysConf.cpp:1181 +#: src/gui/sysConf.cpp:1220 src/gui/sysConf.cpp:1294 src/gui/sysConf.cpp:1380 +#: src/gui/sysConf.cpp:1444 src/gui/sysConf.cpp:1482 src/gui/sysConf.cpp:1572 +#: src/gui/sysConf.cpp:1668 src/gui/sysConf.cpp:1716 src/gui/sysConf.cpp:1757 +#: src/gui/sysConf.cpp:1810 src/gui/sysConf.cpp:2284 src/gui/sysConf.cpp:2307 +msgid "Clock rate:" +msgstr "" + +#: src/gui/sysConf.cpp:73 src/gui/sysConf.cpp:152 src/gui/sysConf.cpp:911 +#: src/gui/sysConf.cpp:1459 src/gui/sysConf.cpp:1783 +msgid "Chip type:" +msgstr "" + +#: src/gui/sysConf.cpp:75 +msgid "YM3438 (9-bit DAC)" +msgstr "" + +#: src/gui/sysConf.cpp:79 +msgid "YM2612 (9-bit DAC with distortion)" +msgstr "" + +#: src/gui/sysConf.cpp:83 +msgid "YMF276 (external DAC)" +msgstr "" + +#: src/gui/sysConf.cpp:90 src/gui/sysConf.cpp:804 src/gui/sysConf.cpp:1350 +#: src/gui/sysConf.cpp:1420 +msgid "Disable ExtCh FM macros (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:93 src/gui/sysConf.cpp:807 src/gui/sysConf.cpp:1353 +#: src/gui/sysConf.cpp:1423 +msgid "Ins change in ExtCh operator 2-4 affects FB (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:99 +msgid "Modified sine wave (joke)" +msgstr "" + +#: src/gui/sysConf.cpp:123 src/gui/sysConf.cpp:1296 src/gui/sysConf.cpp:1718 +#: src/gui/sysConf.cpp:2286 +msgid "3.58MHz (NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:127 +msgid "3.55MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:131 +msgid "4MHz (BBC Micro)" +msgstr "" + +#: src/gui/sysConf.cpp:135 +msgid "1.79MHz (Half NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:139 +msgid "3MHz (Exed Exes)" +msgstr "" + +#: src/gui/sysConf.cpp:143 +msgid "2MHz (Sega System 1)" +msgstr "" + +#: src/gui/sysConf.cpp:147 +msgid "447KHz (TI-99/4A)" +msgstr "" + +#: src/gui/sysConf.cpp:154 +msgid "Sega VDP/Master System" +msgstr "" + +#: src/gui/sysConf.cpp:162 +msgid "TI SN76489 with Atari-like short noise" +msgstr "" + +#: src/gui/sysConf.cpp:166 +msgid "Game Gear" +msgstr "" + +#: src/gui/sysConf.cpp:170 +msgid "TI SN76489A" +msgstr "" + +#: src/gui/sysConf.cpp:174 +msgid "TI SN76496" +msgstr "" + +#: src/gui/sysConf.cpp:178 +msgid "NCR 8496" +msgstr "" + +#: src/gui/sysConf.cpp:182 +msgid "Tandy PSSJ 3-voice sound" +msgstr "" + +#: src/gui/sysConf.cpp:186 +msgid "TI SN94624" +msgstr "" + +#: src/gui/sysConf.cpp:190 +msgid "TI SN76494" +msgstr "" + +#: src/gui/sysConf.cpp:196 +msgid "Disable noise period change phase reset" +msgstr "" + +#: src/gui/sysConf.cpp:200 src/gui/sysConf.cpp:2190 +msgid "Disable easy period to note mapping on upper octaves" +msgstr "" + +#: src/gui/sysConf.cpp:219 src/gui/sysConf.cpp:583 +msgid "Pseudo-PAL" +msgstr "" + +#: src/gui/sysConf.cpp:222 src/gui/sysConf.cpp:342 +msgid "Disable anti-click" +msgstr "" + +#: src/gui/sysConf.cpp:225 src/gui/sysConf.cpp:345 +msgid "Chip revision:" +msgstr "" + +#: src/gui/sysConf.cpp:227 +msgid "HuC6280 (original)" +msgstr "" + +#: src/gui/sysConf.cpp:231 +msgid "HuC6280A (SuperGrafx)" +msgstr "" + +#: src/gui/sysConf.cpp:257 +msgid "CPU rate:" +msgstr "" + +#: src/gui/sysConf.cpp:259 +msgid "6.18MHz (NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:263 +msgid "5.95MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:268 +msgid "Sample memory:" +msgstr "" + +#: src/gui/sysConf.cpp:270 +msgid "8K (rev A/B/E)" +msgstr "" + +#: src/gui/sysConf.cpp:274 +msgid "64K (rev D/F)" +msgstr "" + +#: src/gui/sysConf.cpp:279 +msgid "DAC resolution:" +msgstr "" + +#: src/gui/sysConf.cpp:281 +msgid "16-bit (rev A/B/D/F)" +msgstr "" + +#: src/gui/sysConf.cpp:285 +msgid "8-bit + TDM (rev C/E)" +msgstr "" + +#: src/gui/sysConf.cpp:290 src/gui/sysConf.cpp:1931 +msgid "Enable echo" +msgstr "" + +#: src/gui/sysConf.cpp:293 +msgid "Swap echo channels" +msgstr "" + +#: src/gui/sysConf.cpp:296 src/gui/sysConf.cpp:1151 +msgid "Echo delay:" +msgstr "" + +#: src/gui/sysConf.cpp:302 +msgid "Echo resolution:" +msgstr "" + +#: src/gui/sysConf.cpp:308 src/gui/sysConf.cpp:1159 +msgid "Echo feedback:" +msgstr "" + +#: src/gui/sysConf.cpp:314 src/gui/sysConf.cpp:1967 +msgid "Echo volume:" +msgstr "" + +#: src/gui/sysConf.cpp:347 +msgid "Original (DMG)" +msgstr "" + +#: src/gui/sysConf.cpp:351 +msgid "Game Boy Color (rev C)" +msgstr "" + +#: src/gui/sysConf.cpp:355 +msgid "Game Boy Color (rev E)" +msgstr "" + +#: src/gui/sysConf.cpp:359 +msgid "Game Boy Advance" +msgstr "" + +#: src/gui/sysConf.cpp:364 +msgid "Wave channel orientation:" +msgstr "" + +#: src/gui/sysConf.cpp:367 src/gui/compatFlags.cpp:298 src/gui/gui.cpp:6067 +#: src/gui/insEdit.cpp:217 src/gui/insEdit.cpp:231 +msgid "Normal" +msgstr "" + +#: src/gui/sysConf.cpp:371 +msgid "Inverted" +msgstr "" + +#: src/gui/sysConf.cpp:378 +msgid "Exact data (inverted)" +msgstr "" + +#: src/gui/sysConf.cpp:382 +msgid "Exact output (normal)" +msgstr "" + +#: src/gui/sysConf.cpp:388 +msgid "" +"Pretty please one more compat flag when I use arpeggio and my sound length" +msgstr "" + +#: src/gui/sysConf.cpp:405 src/gui/sysConf.cpp:438 +msgid "DAC bit depth (reduces output rate):" +msgstr "" + +#: src/gui/sysConf.cpp:426 src/gui/sysConf.cpp:1268 src/gui/sysConf.cpp:1919 +msgid "Volume scale:" +msgstr "" + +#: src/gui/sysConf.cpp:432 +msgid "Mix buffers (allows longer echo delay):" +msgstr "" + +#: src/gui/sysConf.cpp:444 +msgid "Channel limit:" +msgstr "" + +#: src/gui/sysConf.cpp:450 +msgid "Sample rate:" +msgstr "" + +#: src/gui/sysConf.cpp:460 +#, c-format +msgid "Actual sample rate: %d Hz" +msgstr "" + +#: src/gui/sysConf.cpp:462 +#, c-format +msgid "Max mixer CPU usage: %.0f%%" +msgstr "" + +#: src/gui/sysConf.cpp:488 +msgid "NTSC (3.58MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:492 src/gui/sysConf.cpp:557 +msgid "PAL (3.55MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:496 +msgid "Arcade (4MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:500 +msgid "Half NTSC (1.79MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:506 +msgid "Patch set:" +msgstr "" + +#: src/gui/sysConf.cpp:528 +msgid "Ignore top/hi-hat frequency changes" +msgstr "" + +#: src/gui/sysConf.cpp:531 +msgid "Apply fixed frequency to all drums at once" +msgstr "" + +#: src/gui/sysConf.cpp:553 +msgid "NTSC/X16 (3.58MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:561 +msgid "X1/X68000 (4MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:567 src/gui/sysConf.cpp:587 +msgid "Broken pitch macro/slides (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:607 src/gui/sysConf.cpp:650 src/gui/sysConf.cpp:1222 +#: src/gui/sysConf.cpp:2310 +msgid "NTSC (1.79MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:611 src/gui/sysConf.cpp:654 src/gui/sysConf.cpp:1226 +msgid "PAL (1.67MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:615 src/gui/sysConf.cpp:658 src/gui/sysConf.cpp:1230 +msgid "Dendy (1.77MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:621 +msgid "DPCM channel mode:" +msgstr "" + +#: src/gui/sysConf.cpp:624 +msgid "DPCM (muffled samples; low CPU usage)" +msgstr "" + +#: src/gui/sysConf.cpp:628 +msgid "PCM (crisp samples; high CPU usage)" +msgstr "" + +#: src/gui/sysConf.cpp:687 +msgid "NTSC (1.02MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:691 +msgid "PAL (0.99MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:695 +msgid "SSI 2001 (0.89MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:701 src/gui/sysConf.cpp:2320 +msgid "Global parameter priority:" +msgstr "" + +#: src/gui/sysConf.cpp:704 src/gui/sysConf.cpp:2323 +msgid "Left to right" +msgstr "" + +#: src/gui/sysConf.cpp:708 src/gui/sysConf.cpp:2327 +msgid "Last used channel" +msgstr "" + +#: src/gui/sysConf.cpp:714 +msgid "Hard reset envelope:" +msgstr "" + +#: src/gui/sysConf.cpp:716 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:1920 +#: src/gui/insEdit.cpp:6955 src/gui/insEdit.cpp:7481 +msgid "Attack" +msgstr "" + +#: src/gui/sysConf.cpp:721 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:1960 +#: src/gui/insEdit.cpp:6956 src/gui/insEdit.cpp:7482 +msgid "Decay" +msgstr "" + +#: src/gui/sysConf.cpp:726 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:1929 +#: src/gui/insEdit.cpp:6957 src/gui/insEdit.cpp:7483 +msgid "Sustain" +msgstr "" + +#: src/gui/sysConf.cpp:731 src/gui/settings.cpp:3987 src/gui/insEdit.cpp:50 +#: src/gui/insEdit.cpp:604 src/gui/insEdit.cpp:1983 src/gui/insEdit.cpp:6958 +#: src/gui/insEdit.cpp:7484 +msgid "Release" +msgstr "" + +#: src/gui/sysConf.cpp:737 +msgid "Envelope reset time:" +msgstr "" + +#: src/gui/sysConf.cpp:747 +msgid "" +"- 0 disables envelope reset. not recommended!\n" +"- 1 may trigger SID envelope bugs.\n" +"- values that are too high may result in notes being skipped." +msgstr "" + +#: src/gui/sysConf.cpp:749 +msgid "Disable 1Exy env update (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:753 +msgid "Relative duty and cutoff macros are coarse (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:757 +msgid "Cutoff macro race conditions (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:793 +msgid "8MHz (Neo Geo MVS)" +msgstr "" + +#: src/gui/sysConf.cpp:797 +msgid "8.06MHz (Neo Geo AES)" +msgstr "" + +#: src/gui/sysConf.cpp:812 src/gui/sysConf.cpp:1337 src/gui/sysConf.cpp:1407 +msgid "SSG Volume" +msgstr "" + +#: src/gui/sysConf.cpp:818 src/gui/sysConf.cpp:1413 +msgid "FM/ADPCM Volume" +msgstr "" + +#: src/gui/sysConf.cpp:845 +msgid "1.79MHz (ZX Spectrum NTSC/MSX)" +msgstr "" + +#: src/gui/sysConf.cpp:849 +msgid "1.77MHz (ZX Spectrum PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:853 +msgid "0.83MHz (Pre-divided Sunsoft 5B on PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:857 +msgid "0.89MHz (Pre-divided Sunsoft 5B)" +msgstr "" + +#: src/gui/sysConf.cpp:861 +msgid "1MHz (Amstrad CPC)" +msgstr "" + +#: src/gui/sysConf.cpp:865 +msgid "1.10MHz (Gamate/VIC-20 PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:869 +msgid "1.25MHz (Mag Max)" +msgstr "" + +#: src/gui/sysConf.cpp:873 +msgid "1.5MHz (Vectrex)" +msgstr "" + +#: src/gui/sysConf.cpp:877 +msgid "1.536MHz (Kyugo)" +msgstr "" + +#: src/gui/sysConf.cpp:881 +msgid "1.67MHz (?)" +msgstr "" + +#: src/gui/sysConf.cpp:885 +msgid "1.75MHz (ZX Spectrum 48K)" +msgstr "" + +#: src/gui/sysConf.cpp:889 +msgid "1.99MHz (PC-88)" +msgstr "" + +#: src/gui/sysConf.cpp:893 +msgid "2MHz (Atari ST/Sharp X1)" +msgstr "" + +#: src/gui/sysConf.cpp:897 +msgid "2^21Hz (Game Boy)" +msgstr "" + +#: src/gui/sysConf.cpp:901 +msgid "3.58MHz (Darky)" +msgstr "" + +#: src/gui/sysConf.cpp:905 +msgid "3.6MHz (Darky)" +msgstr "" + +#: src/gui/sysConf.cpp:917 +msgid "YM2149(F)" +msgstr "" + +#: src/gui/sysConf.cpp:921 +msgid "Sunsoft 5B" +msgstr "" + +#: src/gui/sysConf.cpp:925 +msgid "AY-3-8914" +msgstr "" + +#: src/gui/sysConf.cpp:931 +msgid "note: AY-3-8914 is not supported by the VGM format!" +msgstr "" + +#: src/gui/sysConf.cpp:935 +msgid "Stereo##_AY_STEREO" +msgstr "" + +#: src/gui/sysConf.cpp:940 +msgid "Separation" +msgstr "" + +#: src/gui/sysConf.cpp:949 +msgid "Half Clock divider##_AY_CLKSEL" +msgstr "" + +#: src/gui/sysConf.cpp:971 +msgid "SAM Coupé (8MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:975 +msgid "NTSC (7.15MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:979 +msgid "PAL (7.09MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:999 +msgid "Stereo separation:" +msgstr "" + +#: src/gui/sysConf.cpp:1006 src/gui/sysConf.cpp:2412 +msgid "Model:" +msgstr "" + +#: src/gui/sysConf.cpp:1008 +msgid "Amiga 500 (OCS)" +msgstr "" + +#: src/gui/sysConf.cpp:1012 +msgid "Amiga 1200 (AGA)" +msgstr "" + +#: src/gui/sysConf.cpp:1018 +msgid "Chip memory:" +msgstr "" + +#: src/gui/sysConf.cpp:1020 +msgid "2MB (ECS/AGA max)" +msgstr "" + +#: src/gui/sysConf.cpp:1030 +msgid "512KB (OCS max)" +msgstr "" + +#: src/gui/sysConf.cpp:1043 src/gui/sysConf.cpp:1081 src/gui/sysConf.cpp:2395 +#: src/gui/sysConf.cpp:2449 +msgid "PAL" +msgstr "" + +#: src/gui/sysConf.cpp:1046 +msgid "Bypass frequency limits" +msgstr "" + +#: src/gui/sysConf.cpp:1065 +msgid "Mixing mode:" +msgstr "" + +#: src/gui/sysConf.cpp:1067 src/gui/settings.cpp:3724 +msgid "Mono" +msgstr "" + +#: src/gui/sysConf.cpp:1071 +msgid "Mono (no distortion)" +msgstr "" + +#: src/gui/sysConf.cpp:1075 src/gui/sysConf.cpp:1197 src/gui/sysConf.cpp:1864 +#: src/gui/sysConf.cpp:2204 +msgid "Stereo" +msgstr "" + +#: src/gui/sysConf.cpp:1100 +msgid "1.19MHz (PC)" +msgstr "" + +#: src/gui/sysConf.cpp:1104 +msgid "1.99MHz (PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1108 +msgid "2.46MHz (PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1114 +msgid "Speaker type:" +msgstr "" + +#: src/gui/sysConf.cpp:1116 +msgid "Unfiltered" +msgstr "" + +#: src/gui/sysConf.cpp:1120 +msgid "Cone" +msgstr "" + +#: src/gui/sysConf.cpp:1124 +msgid "Piezo" +msgstr "" + +#: src/gui/sysConf.cpp:1128 +msgid "Use system beeper (Linux only!)" +msgstr "" + +#: src/gui/sysConf.cpp:1134 +msgid "Reset phase on frequency change" +msgstr "" + +#: src/gui/sysConf.cpp:1183 +msgid "16MHz (Seta 1)" +msgstr "" + +#: src/gui/sysConf.cpp:1187 +msgid "16.67MHz (Seta 2)" +msgstr "" + +#: src/gui/sysConf.cpp:1191 src/gui/sysConf.cpp:1759 +msgid "14.32MHz (NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:1201 +msgid "Bankswitched (Seta 2)" +msgstr "" + +#: src/gui/sysConf.cpp:1235 src/gui/sysConf.cpp:1261 +msgid "Initial channel limit:" +msgstr "" + +#: src/gui/sysConf.cpp:1241 src/gui/sysConf.cpp:2398 +msgid "Disable hissing" +msgstr "" + +#: src/gui/sysConf.cpp:1244 +msgid "Scale frequency to wave length" +msgstr "" + +#: src/gui/sysConf.cpp:1300 src/gui/sysConf.cpp:1722 +msgid "3.54MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:1304 src/gui/sysConf.cpp:1726 src/gui/sysConf.cpp:2290 +msgid "4MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1308 src/gui/sysConf.cpp:1730 +msgid "3MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1312 src/gui/sysConf.cpp:1734 +msgid "3.9936MHz (PC-88/PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1316 +msgid "1.5MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1321 src/gui/sysConf.cpp:1391 src/gui/sysConf.cpp:1639 +#: src/gui/sysConf.cpp:1852 +msgid "Output rate:" +msgstr "" + +#: src/gui/sysConf.cpp:1323 src/gui/sysConf.cpp:1397 +msgid "FM: clock / 72, SSG: clock / 16" +msgstr "" + +#: src/gui/sysConf.cpp:1327 +msgid "FM: clock / 36, SSG: clock / 8" +msgstr "" + +#: src/gui/sysConf.cpp:1331 +msgid "FM: clock / 24, SSG: clock / 4" +msgstr "" + +#: src/gui/sysConf.cpp:1343 +msgid "FM Volume" +msgstr "" + +#: src/gui/sysConf.cpp:1382 +msgid "8MHz (Arcade)" +msgstr "" + +#: src/gui/sysConf.cpp:1386 +msgid "7.987MHz (PC-88/PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1393 +msgid "FM: clock / 144, SSG: clock / 32" +msgstr "" + +#: src/gui/sysConf.cpp:1401 +msgid "FM: clock / 48, SSG: clock / 8" +msgstr "" + +#: src/gui/sysConf.cpp:1446 +msgid "8MHz (FM Towns)" +msgstr "" + +#: src/gui/sysConf.cpp:1450 +msgid "10MHz (Sega System 18)" +msgstr "" + +#: src/gui/sysConf.cpp:1454 +msgid "12.5MHz (Sega CD/System 32)" +msgstr "" + +#: src/gui/sysConf.cpp:1461 +msgid "RF5C68 (10-bit output)" +msgstr "" + +#: src/gui/sysConf.cpp:1465 +msgid "RF5C164 (16-bit output)" +msgstr "" + +#: src/gui/sysConf.cpp:1520 +msgid "Sample rate table:" +msgstr "" + +#: src/gui/sysConf.cpp:1524 +msgid "divider \\ clock" +msgstr "" + +#: src/gui/sysConf.cpp:1526 +msgid "full" +msgstr "" + +#: src/gui/sysConf.cpp:1528 +msgid "half" +msgstr "" + +#: src/gui/sysConf.cpp:1641 +msgid "clock / 132" +msgstr "" + +#: src/gui/sysConf.cpp:1645 +msgid "clock / 165" +msgstr "" + +#: src/gui/sysConf.cpp:1651 +msgid "Bankswitched (NMK112)" +msgstr "" + +#: src/gui/sysConf.cpp:1670 +msgid "1.79MHz (NTSC/MSX)" +msgstr "" + +#: src/gui/sysConf.cpp:1674 +msgid "1.77MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:1678 +msgid "1.5MHz (Arcade)" +msgstr "" + +#: src/gui/sysConf.cpp:1682 +msgid "2MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1697 +msgid "Consistent frequency across all duties" +msgstr "" + +#: src/gui/sysConf.cpp:1704 +msgid "note: only works for an initial LFSR value of 0!" +msgstr "" + +#: src/gui/sysConf.cpp:1738 +msgid "3.5MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1763 +msgid "14.19MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:1767 +msgid "14MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1771 +msgid "16MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1775 +msgid "15MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1779 +msgid "33.8688MHz (OPL3-L)" +msgstr "" + +#: src/gui/sysConf.cpp:1784 +msgid "OPL3 (YMF262)" +msgstr "" + +#: src/gui/sysConf.cpp:1788 +msgid "OPL3-L (YMF289B)" +msgstr "" + +#: src/gui/sysConf.cpp:1794 +msgid "Compatible panning (0800)" +msgstr "" + +#: src/gui/sysConf.cpp:1858 +msgid "Output bit depth:" +msgstr "" + +#: src/gui/sysConf.cpp:1868 +msgid "Interpolation:" +msgstr "" + +#: src/gui/sysConf.cpp:1874 src/gui/waveEdit.cpp:38 +msgid "Linear" +msgstr "" + +#: src/gui/sysConf.cpp:1878 src/gui/waveEdit.cpp:40 +msgid "Cubic" +msgstr "" + +#: src/gui/sysConf.cpp:1882 +msgid "Sinc" +msgstr "" + +#: src/gui/sysConf.cpp:1920 +msgid "Left##VolScaleL" +msgstr "" + +#: src/gui/sysConf.cpp:1925 +msgid "Right##VolScaleL" +msgstr "" + +#: src/gui/sysConf.cpp:1935 +msgid "Initial echo state:" +msgstr "" + +#: src/gui/sysConf.cpp:1955 +msgid "Delay##EchoDelay" +msgstr "" + +#: src/gui/sysConf.cpp:1961 +msgid "Feedback##EchoFeedback" +msgstr "" + +#: src/gui/sysConf.cpp:1968 +msgid "Left##EchoVolL" +msgstr "" + +#: src/gui/sysConf.cpp:1973 +msgid "Right##EchoVolL" +msgstr "" + +#: src/gui/sysConf.cpp:1979 +msgid "Echo filter:" +msgstr "" + +#: src/gui/sysConf.cpp:1989 +msgid "Hex##SNESFHex" +msgstr "" + +#: src/gui/sysConf.cpp:1989 +msgid "Dec##SNESFHex" +msgstr "" + +#: src/gui/sysConf.cpp:2031 +#, c-format +msgid "sum: %d" +msgstr "" + +#: src/gui/sysConf.cpp:2086 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:63 +#: src/gui/insEdit.cpp:75 +msgid "Detune" +msgstr "" + +#: src/gui/sysConf.cpp:2092 +msgid "Capacitor values (nF):" +msgstr "" + +#: src/gui/sysConf.cpp:2102 +msgid "Initial part volume (channel 1-4):" +msgstr "" + +#: src/gui/sysConf.cpp:2112 +msgid "Initial part volume (channel 5-8):" +msgstr "" + +#: src/gui/sysConf.cpp:2122 +msgid "Envelope mode (channel 1-4):" +msgstr "" + +#: src/gui/sysConf.cpp:2124 +msgid "Capacitor (attack/decay)##EM00" +msgstr "" + +#: src/gui/sysConf.cpp:2128 +msgid "External (volume macro)##EM01" +msgstr "" + +#: src/gui/sysConf.cpp:2134 +msgid "Envelope mode (channel 5-8):" +msgstr "" + +#: src/gui/sysConf.cpp:2136 +msgid "Capacitor (attack/decay)##EM10" +msgstr "" + +#: src/gui/sysConf.cpp:2140 +msgid "External (volume macro)##EM11" +msgstr "" + +#: src/gui/sysConf.cpp:2146 +msgid "Global vibrato:" +msgstr "" + +#: src/gui/sysConf.cpp:2153 +msgid "Depth" +msgstr "" + +#: src/gui/sysConf.cpp:2219 src/gui/sysConf.cpp:2373 +msgid "Waveform storage mode:" +msgstr "" + +#: src/gui/sysConf.cpp:2221 +msgid "RAM" +msgstr "" + +#: src/gui/sysConf.cpp:2225 +msgid "ROM (up to 8 waves)" +msgstr "" + +#: src/gui/sysConf.cpp:2241 +msgid "Compatible noise frequencies" +msgstr "" + +#: src/gui/sysConf.cpp:2256 +msgid "Legacy slides and pitch (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:2314 +msgid "PAL (1.77MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:2344 +msgid "Banking style:" +msgstr "" + +#: src/gui/sysConf.cpp:2346 +msgid "Namco System 2 (2MB)" +msgstr "" + +#: src/gui/sysConf.cpp:2351 +msgid "Namco System 21 (4MB)" +msgstr "" + +#: src/gui/sysConf.cpp:2356 +msgid "Raw (16MB; no VGM export!)" +msgstr "" + +#: src/gui/sysConf.cpp:2375 +msgid "Dynamic (unconfirmed)" +msgstr "" + +#: src/gui/sysConf.cpp:2379 +msgid "Static (up to 5 waves)" +msgstr "" + +#: src/gui/sysConf.cpp:2414 +msgid "DS (4MB RAM)" +msgstr "" + +#: src/gui/sysConf.cpp:2418 +msgid "DSi (16MB RAM)" +msgstr "" + +#: src/gui/sysConf.cpp:2444 src/gui/settings.cpp:727 +msgid "nothing to configure" +msgstr "" + +#: src/gui/sysConf.cpp:2467 +msgid "Custom clock rate" +msgstr "" + +#: src/gui/volMeter.cpp:36 src/gui/settings.cpp:3969 src/gui/guiConst.cpp:596 +msgid "Volume Meter" +msgstr "" + +#: src/gui/userPresets.cpp:325 +msgid "User Systems" +msgstr "" + +#: src/gui/userPresets.cpp:337 +msgid "Error! User category does not exist!" +msgstr "" + +#: src/gui/userPresets.cpp:346 src/gui/newSong.cpp:181 +msgid "Systems" +msgstr "" + +#: src/gui/userPresets.cpp:349 +msgid "New Preset" +msgstr "" + +#: src/gui/userPresets.cpp:361 +msgid "select a preset" +msgstr "" + +#: src/gui/userPresets.cpp:374 +msgid "Remove##UPresetRemove" +msgstr "" + +#: src/gui/userPresets.cpp:439 src/gui/settings.cpp:1135 +msgid "Configure" +msgstr "" + +#: src/gui/userPresets.cpp:470 +msgid "Advanced" +msgstr "" + +#: src/gui/userPresets.cpp:476 +msgid "" +"insert additional settings in `option=value` format.\n" +"available options:\n" +"- tickRate" +msgstr "" + +#: src/gui/userPresets.cpp:509 +msgid "Save and Close" +msgstr "" + +#: src/gui/userPresets.cpp:515 src/gui/settings.cpp:1238 +#: src/gui/settings.cpp:2161 src/gui/settings.cpp:2553 +#: src/gui/settings.cpp:3796 +msgid "Import" +msgstr "" + +#: src/gui/userPresets.cpp:519 +msgid "Import (replace)" +msgstr "" + +#: src/gui/effectList.cpp:14 src/gui/guiConst.cpp:606 +msgid "Effect List" +msgstr "" + +#: src/gui/effectList.cpp:18 +#, c-format +msgid "Chip at cursor: %s" +msgstr "" + +#: src/gui/effectList.cpp:21 src/gui/settings.cpp:6674 +msgid "Search" +msgstr "" + +#: src/gui/effectList.cpp:25 +msgid "Effect types to show:" +msgstr "" + +#: src/gui/effectList.cpp:47 +msgid "Description" +msgstr "" + +#: src/gui/subSongs.cpp:22 src/gui/subSongs.cpp:32 +#, c-format +msgid "%d. " +msgstr "%d " + +#: src/gui/subSongs.cpp:73 src/gui/subSongs.cpp:93 +msgid "too many subsongs!" +msgstr "te veel subsongs!" + +#: src/gui/subSongs.cpp:114 +msgid "this is the only subsong!" +msgstr "" + +#: src/gui/subSongs.cpp:116 +msgid "are you sure you want to remove this subsong?" +msgstr "" + +#: src/gui/spoiler.cpp:30 +msgid "Spoiler" +msgstr "" + +#: src/gui/spoiler.cpp:32 +msgid "SPOILER" +msgstr "" + +#: src/gui/settings.cpp:104 src/gui/settings.cpp:114 src/gui/settings.cpp:124 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:105 src/gui/settings.cpp:115 src/gui/settings.cpp:125 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:168 +msgid "ASAP (C++ port)" +msgstr "" + +#: src/gui/settings.cpp:191 +msgid "ESFMu (fast)" +msgstr "" + +#: src/gui/settings.cpp:205 +msgid "Lower" +msgstr "" + +#: src/gui/settings.cpp:207 +msgid "Medium" +msgstr "" + +#: src/gui/settings.cpp:209 +msgid "Ultra" +msgstr "" + +#: src/gui/settings.cpp:210 +msgid "Ultimate" +msgstr "" + +#: src/gui/settings.cpp:214 +msgid "evdev SND_TONE" +msgstr "" + +#: src/gui/settings.cpp:215 +msgid "KIOCSOUND on /dev/tty1" +msgstr "" + +#: src/gui/settings.cpp:216 +msgid "/dev/port" +msgstr "" + +#: src/gui/settings.cpp:217 +msgid "KIOCSOUND on standard output" +msgstr "" + +#: src/gui/settings.cpp:218 +msgid "outb()" +msgstr "" + +#: src/gui/settings.cpp:222 src/gui/settings.cpp:232 +msgid "Disabled/custom" +msgstr "" + +#: src/gui/settings.cpp:223 +msgid "Two octaves (0 is C-4, F is D#5)" +msgstr "" + +#: src/gui/settings.cpp:224 +msgid "Raw (note number is value)" +msgstr "" + +#: src/gui/settings.cpp:225 +msgid "Two octaves alternate (lower keys are 0-9, upper keys are A-F)" +msgstr "" + +#: src/gui/settings.cpp:226 src/gui/settings.cpp:233 +msgid "Use dual control change (one for each nibble)" +msgstr "" + +#: src/gui/settings.cpp:227 src/gui/settings.cpp:234 +msgid "Use 14-bit control change" +msgstr "" + +#: src/gui/settings.cpp:228 src/gui/settings.cpp:235 +msgid "Use single control change (imprecise)" +msgstr "" + +#: src/gui/settings.cpp:239 +msgid "--select--" +msgstr "" + +#: src/gui/settings.cpp:240 src/gui/settings.cpp:241 src/gui/settings.cpp:242 +#: src/gui/settings.cpp:243 src/gui/settings.cpp:244 src/gui/settings.cpp:245 +#: src/gui/settings.cpp:246 +msgid "???" +msgstr "" + +#: src/gui/settings.cpp:247 +msgid "Note Off" +msgstr "" + +#: src/gui/settings.cpp:248 +msgid "Note On" +msgstr "" + +#: src/gui/settings.cpp:249 +msgid "Aftertouch" +msgstr "" + +#: src/gui/settings.cpp:250 src/gui/insEdit.cpp:7187 src/gui/insEdit.cpp:7217 +#: src/gui/insEdit.cpp:7382 src/gui/insEdit.cpp:7403 src/gui/insEdit.cpp:7415 +#: src/gui/insEdit.cpp:7430 +msgid "Control" +msgstr "" + +#: src/gui/settings.cpp:251 src/gui/settings.cpp:573 src/gui/settings.cpp:3177 +msgid "Program" +msgstr "" + +#: src/gui/settings.cpp:252 +msgid "ChanPressure" +msgstr "" + +#: src/gui/settings.cpp:253 +msgid "Pitch Bend" +msgstr "" + +#: src/gui/settings.cpp:254 +msgid "SysEx" +msgstr "" + +#: src/gui/settings.cpp:258 src/gui/settings.cpp:1713 src/gui/settings.cpp:1723 +#: src/gui/settings.cpp:1743 src/gui/settings.cpp:1749 +#, c-format +msgid "Any" +msgstr "" + +#: src/gui/settings.cpp:262 src/gui/settings.cpp:3363 src/gui/settings.cpp:3928 +#: src/gui/settings.cpp:4121 +msgid "Instrument" +msgstr "" + +#: src/gui/settings.cpp:264 +msgid "Effect 1 type" +msgstr "" + +#: src/gui/settings.cpp:265 +msgid "Effect 1 value" +msgstr "" + +#: src/gui/settings.cpp:266 +msgid "Effect 2 type" +msgstr "" + +#: src/gui/settings.cpp:267 +msgid "Effect 2 value" +msgstr "" + +#: src/gui/settings.cpp:268 +msgid "Effect 3 type" +msgstr "" + +#: src/gui/settings.cpp:269 +msgid "Effect 3 value" +msgstr "" + +#: src/gui/settings.cpp:270 +msgid "Effect 4 type" +msgstr "" + +#: src/gui/settings.cpp:271 +msgid "Effect 4 value" +msgstr "" + +#: src/gui/settings.cpp:272 +msgid "Effect 5 type" +msgstr "" + +#: src/gui/settings.cpp:273 +msgid "Effect 5 value" +msgstr "" + +#: src/gui/settings.cpp:274 +msgid "Effect 6 type" +msgstr "" + +#: src/gui/settings.cpp:275 +msgid "Effect 6 value" +msgstr "" + +#: src/gui/settings.cpp:276 +msgid "Effect 7 type" +msgstr "" + +#: src/gui/settings.cpp:277 +msgid "Effect 7 value" +msgstr "" + +#: src/gui/settings.cpp:278 +msgid "Effect 8 type" +msgstr "" + +#: src/gui/settings.cpp:279 +msgid "Effect 8 value" +msgstr "" + +#: src/gui/settings.cpp:315 +msgid "Press key..." +msgstr "" + +#: src/gui/settings.cpp:564 +msgid "Do you want to save your settings?" +msgstr "" + +#: src/gui/settings.cpp:571 +msgid "General" +msgstr "Algemeen" + +#: src/gui/settings.cpp:588 +msgid "Language" +msgstr "" + +#: src/gui/settings.cpp:606 +msgid "Render backend" +msgstr "" + +#: src/gui/settings.cpp:661 src/gui/settings.cpp:680 src/gui/settings.cpp:1312 +msgid "you may need to restart Furnace for this setting to take effect." +msgstr "" + +#: src/gui/settings.cpp:664 +msgid "Advanced render backend settings" +msgstr "" + +#: src/gui/settings.cpp:666 +msgid "Render driver" +msgstr "" + +#: src/gui/settings.cpp:666 src/gui/settings.cpp:667 src/gui/settings.cpp:1298 +#: src/gui/settings.cpp:1299 src/gui/piano.cpp:108 +msgid "Automatic" +msgstr "" + +#: src/gui/settings.cpp:683 +msgid "" +"beware: changing these settings may render Furnace unusable! do so at your " +"own risk.\n" +"start Furnace with -safemode if you mess something up." +msgstr "" + +#: src/gui/settings.cpp:684 +msgid "Red bits" +msgstr "Rode bitten" + +#: src/gui/settings.cpp:689 +msgid "Green bits" +msgstr "Groene bitten" + +#: src/gui/settings.cpp:694 +msgid "Blue bits" +msgstr "Blauwe bitten" + +#: src/gui/settings.cpp:699 +msgid "Alpha bits" +msgstr "Alpha bitten" + +#: src/gui/settings.cpp:704 +msgid "Color depth" +msgstr "Kleurdiepte" + +#: src/gui/settings.cpp:709 +msgid "Stencil buffer size" +msgstr "" + +#: src/gui/settings.cpp:714 src/gui/settings.cpp:1385 +msgid "Buffer size" +msgstr "" + +#: src/gui/settings.cpp:720 +msgid "Double buffer" +msgstr "" + +#: src/gui/settings.cpp:725 +msgid "" +"the following values are common (in red, green, blue, alpha order):\n" +"- 24 bits: 8, 8, 8, 0\n" +"- 16 bits: 5, 6, 5, 0\n" +"- 32 bits (with alpha): 8, 8, 8, 8\n" +"- 30 bits (deep): 10, 10, 10, 0" +msgstr "" + +#: src/gui/settings.cpp:732 +#, c-format +msgid "" +"current backend: %s\n" +"%s\n" +"%s\n" +"%s" +msgstr "" + +#: src/gui/settings.cpp:735 +msgid "VSync" +msgstr "" + +#: src/gui/settings.cpp:743 +msgid "Frame rate limit" +msgstr "" + +#: src/gui/settings.cpp:743 +msgid "Unlimited" +msgstr "" + +#: src/gui/settings.cpp:749 +msgid "only applies when VSync is disabled." +msgstr "" + +#: src/gui/settings.cpp:753 +msgid "Display render time" +msgstr "" + +#: src/gui/settings.cpp:760 +msgid "Late render clear" +msgstr "" + +#: src/gui/settings.cpp:765 +msgid "" +"calls rend->clear() after rend->present(). might reduce UI latency by one " +"frame in some drivers." +msgstr "" + +#: src/gui/settings.cpp:770 +msgid "Power-saving mode" +msgstr "" + +#: src/gui/settings.cpp:775 +msgid "" +"saves power by lowering the frame rate to 2fps when idle.\n" +"may cause issues under Mesa drivers!" +msgstr "" + +#: src/gui/settings.cpp:780 +msgid "Disable threaded input (restart after changing!)" +msgstr "" + +#: src/gui/settings.cpp:785 +msgid "" +"threaded input processes key presses for note preview on a separate thread " +"(on supported platforms), which reduces latency.\n" +"however, crashes have been reported when threaded input is on. enable this " +"option if that is the case." +msgstr "" + +#: src/gui/settings.cpp:790 +msgid "Enable event delay" +msgstr "" + +#: src/gui/settings.cpp:796 +msgid "may cause issues with high-polling-rate mice when previewing notes." +msgstr "" + +#: src/gui/settings.cpp:800 +msgid "Per-channel oscilloscope threads" +msgstr "" + +#: src/gui/settings.cpp:808 +msgid "you're being silly, aren't you? that's enough." +msgstr "" + +#: src/gui/settings.cpp:812 +msgid "what are you doing? stop!" +msgstr "" + +#: src/gui/settings.cpp:816 +#, c-format +msgid "" +"it is a bad idea to set this number higher than your CPU core count (%d)!" +msgstr "" + +#: src/gui/settings.cpp:821 +msgid "Oscilloscope rendering engine:" +msgstr "" + +#: src/gui/settings.cpp:823 +msgid "ImGui line plot" +msgstr "" + +#: src/gui/settings.cpp:827 +msgid "render using Dear ImGui's built-in line drawing functions." +msgstr "" + +#: src/gui/settings.cpp:829 +msgid "GLSL (if available)" +msgstr "" + +#: src/gui/settings.cpp:834 +msgid "" +"render using shaders that run on the graphics card.\n" +"only available in OpenGL ES 2.0 render backend." +msgstr "" + +#: src/gui/settings.cpp:836 +msgid "" +"render using shaders that run on the graphics card.\n" +"only available in OpenGL 3.0 render backend." +msgstr "" + +#: src/gui/settings.cpp:843 +msgid "Vibration" +msgstr "" + +#: src/gui/settings.cpp:845 +msgid "Strength" +msgstr "" + +#: src/gui/settings.cpp:851 src/gui/insEdit.cpp:2284 src/gui/insEdit.cpp:2382 +#: src/gui/insEdit.cpp:5582 src/gui/insEdit.cpp:6241 +msgid "Length" +msgstr "" + +#: src/gui/settings.cpp:859 src/gui/gui.cpp:4191 +msgid "File" +msgstr "Bestand" + +#: src/gui/settings.cpp:862 +msgid "Use system file picker" +msgstr "" + +#: src/gui/settings.cpp:867 +msgid "Number of recent files" +msgstr "Nummer van recente bestanden" + +#: src/gui/settings.cpp:874 +msgid "Compress when saving" +msgstr "" + +#: src/gui/settings.cpp:879 +msgid "use zlib to compress saved songs." +msgstr "" + +#: src/gui/settings.cpp:883 +msgid "Save unused patterns" +msgstr "" + +#: src/gui/settings.cpp:889 +msgid "Use new pattern format when saving" +msgstr "" + +#: src/gui/settings.cpp:894 +msgid "" +"use a packed format which saves space when saving songs.\n" +"disable if you need compatibility with older Furnace and/or tools\n" +"which do not support this format." +msgstr "" + +#: src/gui/settings.cpp:898 +msgid "Don't apply compatibility flags when loading .dmf" +msgstr "" + +#: src/gui/settings.cpp:903 +msgid "do not report any issues arising from the use of this option!" +msgstr "" + +#: src/gui/settings.cpp:906 +msgid "Play after opening song:" +msgstr "" + +#: src/gui/settings.cpp:908 +msgid "No##pol0" +msgstr "" + +#: src/gui/settings.cpp:912 +msgid "Only if already playing##pol1" +msgstr "" + +#: src/gui/settings.cpp:916 +msgid "Yes##pol0" +msgstr "" + +#: src/gui/settings.cpp:922 +msgid "Audio export loop/fade out time:" +msgstr "" + +#: src/gui/settings.cpp:924 +msgid "Set to these values on start-up:##fot0" +msgstr "" + +#: src/gui/settings.cpp:942 +msgid "Remember last values##fot1" +msgstr "" + +#: src/gui/settings.cpp:949 +msgid "Store instrument name in .fui" +msgstr "" + +#: src/gui/settings.cpp:954 +msgid "" +"when enabled, saving an instrument will store its name.\n" +"this may increase file size." +msgstr "" + +#: src/gui/settings.cpp:958 +msgid "Load instrument name from .fui" +msgstr "" + +#: src/gui/settings.cpp:963 +msgid "" +"when enabled, loading an instrument will use the stored name (if present).\n" +"otherwise, it will use the file name." +msgstr "" + +#: src/gui/settings.cpp:967 +msgid "Auto-fill file name when saving" +msgstr "" + +#: src/gui/settings.cpp:972 +msgid "" +"fill the file name field with an appropriate file name when saving or " +"exporting." +msgstr "" + +#: src/gui/settings.cpp:976 src/gui/gui.cpp:5563 src/gui/gui.cpp:5613 +msgid "New Song" +msgstr "Nieuwe lied" + +#: src/gui/settings.cpp:978 +msgid "Initial system:" +msgstr "" + +#: src/gui/settings.cpp:980 +msgid "Current system" +msgstr "" + +#: src/gui/settings.cpp:993 src/gui/waveEdit.cpp:1149 src/gui/gui.cpp:3046 +msgid "Randomize" +msgstr "" + +#: src/gui/settings.cpp:1043 +msgid "Reset to defaults" +msgstr "" + +#: src/gui/settings.cpp:1178 +msgid "When creating new song:" +msgstr "" + +#: src/gui/settings.cpp:1180 +msgid "Display system preset selector##NSB0" +msgstr "" + +#: src/gui/settings.cpp:1184 +msgid "Start with initial system##NSB1" +msgstr "" + +#: src/gui/settings.cpp:1188 +msgid "Default author name" +msgstr "" + +#: src/gui/settings.cpp:1192 +msgid "Start-up" +msgstr "" + +#: src/gui/settings.cpp:1193 +msgid "Play intro on start-up:" +msgstr "" + +#: src/gui/settings.cpp:1195 +msgid "No##pis0" +msgstr "" + +#: src/gui/settings.cpp:1199 +msgid "Short##pis1" +msgstr "" + +#: src/gui/settings.cpp:1203 +msgid "Full (short when loading song)##pis2" +msgstr "" + +#: src/gui/settings.cpp:1207 +msgid "Full (always)##pis3" +msgstr "" + +#: src/gui/settings.cpp:1214 +msgid "Disable fade-in during start-up" +msgstr "" + +#: src/gui/settings.cpp:1220 +msgid "About screen party time" +msgstr "" + +#: src/gui/settings.cpp:1225 +msgid "Warning: may cause epileptic seizures." +msgstr "" + +#: src/gui/settings.cpp:1229 +msgid "Behavior" +msgstr "" + +#: src/gui/settings.cpp:1231 +msgid "New instruments are blank" +msgstr "" + +#: src/gui/settings.cpp:1237 src/gui/settings.cpp:4255 +msgid "Configuration" +msgstr "" + +#: src/gui/settings.cpp:1246 +msgid "Factory Reset" +msgstr "" + +#: src/gui/settings.cpp:1247 +msgid "" +"Are you sure you want to reset all Furnace settings?\n" +"You must restart Furnace after doing so." +msgstr "" + +#: src/gui/settings.cpp:1255 +msgid "Output" +msgstr "" + +#: src/gui/settings.cpp:1263 +msgid "Backend" +msgstr "" + +#: src/gui/settings.cpp:1296 +msgid "Driver" +msgstr "" + +#: src/gui/settings.cpp:1319 +msgid "Device" +msgstr "" + +#: src/gui/settings.cpp:1323 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:1324 +msgid "ALERT - TRESPASSER DETECTED" +msgstr "" + +#: src/gui/settings.cpp:1326 +msgid "you have been arrested for trying to engage with a disabled combo box." +msgstr "" + +#: src/gui/settings.cpp:1333 src/gui/settings.cpp:1335 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:1371 src/gui/insEdit.cpp:7186 +msgid "Outputs" +msgstr "" + +#: src/gui/settings.cpp:1379 +msgid "" +"common values:\n" +"- 1 for mono\n" +"- 2 for stereo\n" +"- 4 for quadraphonic\n" +"- 6 for 5.1 surround\n" +"- 8 for 7.1 surround" +msgstr "" + +#: src/gui/settings.cpp:1387 +#, c-format +msgid "%d (latency: ~%.1fms)" +msgstr "" + +#: src/gui/settings.cpp:1402 +msgid "Multi-threaded (EXPERIMENTAL)" +msgstr "" + +#: src/gui/settings.cpp:1411 +msgid "" +"runs chip emulation on separate threads.\n" +"may increase performance when using heavy emulation cores.\n" +"\n" +"warnings:\n" +"- experimental!\n" +"- only useful on multi-chip songs." +msgstr "" + +#: src/gui/settings.cpp:1416 +msgid "Number of threads" +msgstr "" + +#: src/gui/settings.cpp:1423 +msgid "that's the limit!" +msgstr "" + +#: src/gui/settings.cpp:1427 +#, c-format +msgid "" +"it is a VERY bad idea to set this number higher than your CPU core count " +"(%d)!" +msgstr "" + +#: src/gui/settings.cpp:1435 +msgid "Low-latency mode" +msgstr "" + +#: src/gui/settings.cpp:1440 +msgid "" +"reduces latency by running the engine faster than the tick rate.\n" +"useful for live playback/jam mode.\n" +"\n" +"warning: only enable if your buffer size is small (10ms or less)." +msgstr "" + +#: src/gui/settings.cpp:1444 +msgid "Force mono audio" +msgstr "" + +#: src/gui/settings.cpp:1452 +msgid "Exclusive mode" +msgstr "" + +#: src/gui/settings.cpp:1463 +#, c-format +msgid "want: %d samples @ %.0fHz (%d channel)" +msgid_plural "want: %d samples @ %.0fHz (%d channels)" +msgstr[0] "" +msgstr[1] "" + +#: src/gui/settings.cpp:1464 +#, c-format +msgid "got: %d samples @ %.0fHz (%d channel)" +msgid_plural "got: %d samples @ %.0fHz (%d channels)" +msgstr[0] "" +msgstr[1] "" + +#: src/gui/settings.cpp:1471 +msgid "Mixing" +msgstr "" + +#: src/gui/settings.cpp:1473 src/gui/settings.cpp:2082 +msgid "Quality" +msgstr "" + +#: src/gui/settings.cpp:1478 +msgid "Software clipping" +msgstr "" + +#: src/gui/settings.cpp:1484 +msgid "DC offset correction" +msgstr "" + +#: src/gui/settings.cpp:1502 src/gui/guiConst.cpp:740 +msgid "Sample preview" +msgstr "" + +#: src/gui/settings.cpp:1515 +msgid "MIDI" +msgstr "" + +#: src/gui/settings.cpp:1517 src/gui/settings.cpp:1519 +msgid "MIDI input" +msgstr "" + +#: src/gui/settings.cpp:1521 src/gui/settings.cpp:1524 +#: src/gui/settings.cpp:1815 src/gui/settings.cpp:1817 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:1540 +msgid "Re-scan MIDI devices" +msgstr "" + +#: src/gui/settings.cpp:1551 src/gui/settings.cpp:2258 +msgid "Note input" +msgstr "" + +#: src/gui/settings.cpp:1552 +msgid "Velocity input" +msgstr "" + +#: src/gui/settings.cpp:1556 +msgid "Map MIDI channels to direct channels" +msgstr "" + +#: src/gui/settings.cpp:1562 +msgid "Program change pass-through" +msgstr "" + +#: src/gui/settings.cpp:1567 +msgid "Map Yamaha FM voice data to instruments" +msgstr "" + +#: src/gui/settings.cpp:1569 +msgid "Program change is instrument selection" +msgstr "" + +#: src/gui/settings.cpp:1573 +msgid "Value input style" +msgstr "" + +#: src/gui/settings.cpp:1576 src/gui/settings.cpp:1601 +msgid "Control##valueCCS" +msgstr "" + +#: src/gui/settings.cpp:1582 src/gui/settings.cpp:1607 +msgid "CC of upper nibble##valueCC1" +msgstr "" + +#: src/gui/settings.cpp:1582 src/gui/settings.cpp:1607 +msgid "MSB CC##valueCC1" +msgstr "" + +#: src/gui/settings.cpp:1587 src/gui/settings.cpp:1612 +msgid "CC of lower nibble##valueCC2" +msgstr "" + +#: src/gui/settings.cpp:1587 src/gui/settings.cpp:1612 +msgid "LSB CC##valueCC2" +msgstr "" + +#: src/gui/settings.cpp:1594 +msgid "Per-column control change" +msgstr "" + +#: src/gui/settings.cpp:1624 src/gui/settings.cpp:1634 +msgid "Volume curve" +msgstr "" + +#: src/gui/settings.cpp:1637 +msgid "Actions:" +msgstr "" + +#: src/gui/settings.cpp:1651 +msgid "" +"(learning! press a button or move a slider/knob/something on your device.)" +msgstr "" + +#: src/gui/settings.cpp:1665 src/gui/settings.cpp:2277 +#: src/gui/settings.cpp:6687 src/gui/sampleEdit.cpp:501 +#: src/gui/insEdit.cpp:5321 +msgid "Type" +msgstr "" + +#: src/gui/settings.cpp:1669 +msgid "Note/Control" +msgstr "" + +#: src/gui/settings.cpp:1671 +msgid "Velocity/Value" +msgstr "" + +#: src/gui/settings.cpp:1673 +msgid "Action" +msgstr "" + +#: src/gui/settings.cpp:1765 src/gui/settings.cpp:1766 +msgid "--none--" +msgstr "" + +#: src/gui/settings.cpp:1787 +msgid "waiting...##BLearn" +msgstr "" + +#: src/gui/settings.cpp:1787 +msgid "Learn##BLearn" +msgstr "" + +#: src/gui/settings.cpp:1811 src/gui/settings.cpp:1813 +msgid "MIDI output" +msgstr "" + +#: src/gui/settings.cpp:1830 +msgid "Output mode:" +msgstr "" + +#: src/gui/settings.cpp:1832 +msgid "Off (use for TX81Z)" +msgstr "" + +#: src/gui/settings.cpp:1836 +msgid "Melodic" +msgstr "" + +#: src/gui/settings.cpp:1847 +msgid "Send Program Change" +msgstr "" + +#: src/gui/settings.cpp:1853 +msgid "Send MIDI clock" +msgstr "" + +#: src/gui/settings.cpp:1859 +msgid "Send MIDI timecode" +msgstr "" + +#: src/gui/settings.cpp:1865 +msgid "Timecode frame rate:" +msgstr "" + +#: src/gui/settings.cpp:1867 +msgid "Closest to Tick Rate" +msgstr "" + +#: src/gui/settings.cpp:1871 +msgid "Film (24fps)" +msgstr "" + +#: src/gui/settings.cpp:1875 +msgid "PAL (25fps)" +msgstr "" + +#: src/gui/settings.cpp:1879 +msgid "NTSC drop (29.97fps)" +msgstr "" + +#: src/gui/settings.cpp:1883 +msgid "NTSC non-drop (30fps)" +msgstr "" + +#: src/gui/settings.cpp:1892 +msgid "Emulation" +msgstr "" + +#: src/gui/settings.cpp:1894 +msgid "Cores" +msgstr "" + +#: src/gui/settings.cpp:1903 +msgid "Playback Core(s)" +msgstr "" + +#: src/gui/settings.cpp:1905 src/gui/settings.cpp:2093 +msgid "used for playback" +msgstr "" + +#: src/gui/settings.cpp:1908 +msgid "Render Core(s)" +msgstr "" + +#: src/gui/settings.cpp:1910 src/gui/settings.cpp:2098 +msgid "used in audio export" +msgstr "" + +#: src/gui/settings.cpp:2091 +msgid "Playback" +msgstr "" + +#: src/gui/settings.cpp:2096 +msgid "Render" +msgstr "" + +#: src/gui/settings.cpp:2120 +msgid "PC Speaker strategy" +msgstr "" + +#: src/gui/settings.cpp:2158 src/gui/settings.cpp:2160 +msgid "Keyboard" +msgstr "" + +#: src/gui/settings.cpp:2169 src/gui/settings.cpp:3804 +msgid "Reset defaults" +msgstr "" + +#: src/gui/settings.cpp:2170 +msgid "Are you sure you want to reset the keyboard settings?" +msgstr "" + +#: src/gui/settings.cpp:2172 +msgid "Global hotkeys" +msgstr "" + +#: src/gui/settings.cpp:2209 +msgid "Window activation" +msgstr "" + +#: src/gui/settings.cpp:2275 +msgid "Key" +msgstr "" + +#: src/gui/settings.cpp:2279 src/gui/findReplace.cpp:725 +#: src/gui/findReplace.cpp:1003 +msgid "Value" +msgstr "" + +#: src/gui/settings.cpp:2289 +#, c-format +msgid "Macro release##SNType_%d" +msgstr "" + +#: src/gui/settings.cpp:2294 +#, c-format +msgid "Note release##SNType_%d" +msgstr "" + +#: src/gui/settings.cpp:2299 +#, c-format +msgid "Note off##SNType_%d" +msgstr "" + +#: src/gui/settings.cpp:2304 +#, c-format +msgid "Note##SNType_%d" +msgstr "" + +#: src/gui/settings.cpp:2328 +msgid "Add..." +msgstr "" + +#: src/gui/settings.cpp:2418 +msgid "Instrument list" +msgstr "" + +#: src/gui/settings.cpp:2438 +msgid "Wavetable list" +msgstr "" + +#: src/gui/settings.cpp:2459 +msgid "Sample list" +msgstr "" + +#: src/gui/settings.cpp:2509 +msgid "Sample editor" +msgstr "" + +#: src/gui/settings.cpp:2547 src/gui/settings.cpp:3814 +#: src/gui/settings.cpp:3844 +msgid "Interface" +msgstr "" + +#: src/gui/settings.cpp:2549 +msgid "Layout" +msgstr "" + +#: src/gui/settings.cpp:2551 +msgid "Workspace layout:" +msgstr "" + +#: src/gui/settings.cpp:2561 src/gui/gui.cpp:2920 +msgid "Reset" +msgstr "" + +#: src/gui/settings.cpp:2562 src/gui/gui.cpp:4455 +msgid "Are you sure you want to reset the workspace layout?" +msgstr "" + +#: src/gui/settings.cpp:2566 +msgid "Allow docking editors" +msgstr "" + +#: src/gui/settings.cpp:2573 +msgid "Remember window position" +msgstr "" + +#: src/gui/settings.cpp:2578 +msgid "remembers the window's last position on start-up." +msgstr "" + +#: src/gui/settings.cpp:2583 +msgid "Only allow window movement when clicking on title bar" +msgstr "" + +#: src/gui/settings.cpp:2590 +msgid "Center pop-up windows" +msgstr "" + +#: src/gui/settings.cpp:2595 +msgid "Play/edit controls layout:" +msgstr "" + +#: src/gui/settings.cpp:2597 +msgid "Classic##ecl0" +msgstr "" + +#: src/gui/settings.cpp:2601 +msgid "Compact##ecl1" +msgstr "" + +#: src/gui/settings.cpp:2605 +msgid "Compact (vertical)##ecl2" +msgstr "" + +#: src/gui/settings.cpp:2609 +msgid "Split##ecl3" +msgstr "" + +#: src/gui/settings.cpp:2615 +msgid "Position of buttons in Orders:" +msgstr "" + +#: src/gui/settings.cpp:2617 +msgid "Top##obp0" +msgstr "" + +#: src/gui/settings.cpp:2621 +msgid "Left##obp1" +msgstr "" + +#: src/gui/settings.cpp:2625 +msgid "Right##obp2" +msgstr "" + +#: src/gui/settings.cpp:2632 +msgid "Mouse" +msgstr "" + +#: src/gui/settings.cpp:2634 +msgid "Double-click time (seconds)" +msgstr "" + +#: src/gui/settings.cpp:2643 +msgid "Don't raise pattern editor on click" +msgstr "" + +#: src/gui/settings.cpp:2649 +msgid "Focus pattern editor when selecting instrument" +msgstr "" + +#: src/gui/settings.cpp:2654 +msgid "Note preview behavior:" +msgstr "" + +#: src/gui/settings.cpp:2656 +msgid "Never##npb0" +msgstr "" + +#: src/gui/settings.cpp:2660 +msgid "When cursor is in Note column##npb1" +msgstr "" + +#: src/gui/settings.cpp:2664 +msgid "When cursor is in Note column or not in edit mode##npb2" +msgstr "" + +#: src/gui/settings.cpp:2668 +msgid "Always##npb3" +msgstr "" + +#: src/gui/settings.cpp:2674 +msgid "Allow dragging selection:" +msgstr "" + +#: src/gui/settings.cpp:2676 +msgid "No##dms0" +msgstr "" + +#: src/gui/settings.cpp:2680 +msgid "Yes##dms1" +msgstr "" + +#: src/gui/settings.cpp:2684 +msgid "Yes (while holding Ctrl only)##dms2" +msgstr "" + +#: src/gui/settings.cpp:2690 +msgid "Toggle channel solo on:" +msgstr "" + +#: src/gui/settings.cpp:2692 +msgid "Right-click or double-click##soloA" +msgstr "" + +#: src/gui/settings.cpp:2696 +msgid "Right-click##soloR" +msgstr "" + +#: src/gui/settings.cpp:2700 +msgid "Double-click##soloD" +msgstr "" + +#: src/gui/settings.cpp:2707 +msgid "Double click selects entire column" +msgstr "" + +#: src/gui/settings.cpp:2713 +msgid "Cursor behavior" +msgstr "" + +#: src/gui/settings.cpp:2715 +msgid "Insert pushes entire channel row" +msgstr "" + +#: src/gui/settings.cpp:2721 +msgid "Pull delete affects entire channel row" +msgstr "" + +#: src/gui/settings.cpp:2727 +msgid "Push value when overwriting instead of clearing it" +msgstr "" + +#: src/gui/settings.cpp:2733 +msgid "Keyboard note/value input repeat (hold key to input continuously)" +msgstr "" + +#: src/gui/settings.cpp:2738 +msgid "Effect input behavior:" +msgstr "" + +#: src/gui/settings.cpp:2740 +msgid "Move down##eicb0" +msgstr "" + +#: src/gui/settings.cpp:2744 +msgid "Move to effect value (otherwise move down)##eicb1" +msgstr "" + +#: src/gui/settings.cpp:2748 +msgid "Move to effect value/next effect and wrap around##eicb2" +msgstr "" + +#: src/gui/settings.cpp:2755 +msgid "Delete effect value when deleting effect" +msgstr "" + +#: src/gui/settings.cpp:2761 +msgid "Change current instrument when changing instrument column (absorb)" +msgstr "" + +#: src/gui/settings.cpp:2767 +msgid "Remove instrument value when inserting note off/release" +msgstr "" + +#: src/gui/settings.cpp:2773 +msgid "Remove volume value when inserting note off/release" +msgstr "" + +#: src/gui/settings.cpp:2779 +msgid "Cursor movement" +msgstr "" + +#: src/gui/settings.cpp:2781 +msgid "Wrap horizontally:" +msgstr "" + +#: src/gui/settings.cpp:2783 +msgid "No##wrapH0" +msgstr "" + +#: src/gui/settings.cpp:2787 +msgid "Yes##wrapH1" +msgstr "" + +#: src/gui/settings.cpp:2791 +msgid "Yes, and move to next/prev row##wrapH2" +msgstr "" + +#: src/gui/settings.cpp:2797 +msgid "Wrap vertically:" +msgstr "" + +#: src/gui/settings.cpp:2799 +msgid "No##wrapV0" +msgstr "" + +#: src/gui/settings.cpp:2803 +msgid "Yes##wrapV1" +msgstr "" + +#: src/gui/settings.cpp:2807 +msgid "Yes, and move to next/prev pattern##wrapV2" +msgstr "" + +#: src/gui/settings.cpp:2811 +msgid "Yes, and move to next/prev pattern (wrap around)##wrapV2" +msgstr "" + +#: src/gui/settings.cpp:2817 +msgid "Cursor movement keys behavior:" +msgstr "" + +#: src/gui/settings.cpp:2819 +msgid "Move by one##cmk0" +msgstr "" + +#: src/gui/settings.cpp:2823 +msgid "Move by Edit Step##cmk1" +msgstr "" + +#: src/gui/settings.cpp:2830 +msgid "Move cursor by edit step on delete" +msgstr "" + +#: src/gui/settings.cpp:2836 +msgid "Move cursor by edit step on insert (push)" +msgstr "" + +#: src/gui/settings.cpp:2842 +msgid "Move cursor up on backspace-delete" +msgstr "" + +#: src/gui/settings.cpp:2848 +msgid "Move cursor to end of clipboard content when pasting" +msgstr "" + +#: src/gui/settings.cpp:2854 +msgid "Scrolling" +msgstr "" + +#: src/gui/settings.cpp:2856 +msgid "Change order when scrolling outside of pattern bounds:" +msgstr "" + +#: src/gui/settings.cpp:2858 +msgid "No##pscroll0" +msgstr "" + +#: src/gui/settings.cpp:2862 +msgid "Yes##pscroll1" +msgstr "" + +#: src/gui/settings.cpp:2866 +msgid "Yes, and wrap around song##pscroll2" +msgstr "" + +#: src/gui/settings.cpp:2873 +msgid "Cursor follows current order when moving it" +msgstr "" + +#: src/gui/settings.cpp:2878 +msgid "applies when playback is stopped." +msgstr "" + +#: src/gui/settings.cpp:2882 +msgid "Don't scroll when moving cursor" +msgstr "" + +#: src/gui/settings.cpp:2887 +msgid "Move cursor with scroll wheel:" +msgstr "" + +#: src/gui/settings.cpp:2889 +msgid "No##csw0" +msgstr "" + +#: src/gui/settings.cpp:2893 +msgid "Yes##csw1" +msgstr "" + +#: src/gui/settings.cpp:2897 +msgid "Inverted##csw2" +msgstr "" + +#: src/gui/settings.cpp:2904 +msgid "How many steps to move with each scroll wheel step?" +msgstr "" + +#: src/gui/settings.cpp:2905 +msgid "One##cws0" +msgstr "" + +#: src/gui/settings.cpp:2909 +msgid "Edit Step##cws1" +msgstr "" + +#: src/gui/settings.cpp:2916 src/gui/settings.cpp:3531 +msgid "Assets" +msgstr "" + +#: src/gui/settings.cpp:2919 +msgid "Display instrument type menu when adding instrument" +msgstr "" + +#: src/gui/settings.cpp:2925 +msgid "Select asset after opening one" +msgstr "" + +#: src/gui/settings.cpp:2932 +msgid "Appearance" +msgstr "" + +#: src/gui/settings.cpp:2934 +msgid "Scaling" +msgstr "" + +#: src/gui/settings.cpp:2936 +msgid "Automatic UI scaling factor" +msgstr "" + +#: src/gui/settings.cpp:2945 +msgid "UI scaling factor" +msgstr "" + +#: src/gui/settings.cpp:2952 +msgid "Icon size" +msgstr "" + +#: src/gui/settings.cpp:2967 +msgid "Font renderer" +msgstr "" + +#: src/gui/settings.cpp:2977 +msgid "Main font" +msgstr "" + +#: src/gui/settings.cpp:2988 +msgid "Size##MainFontSize" +msgstr "" + +#: src/gui/settings.cpp:2996 +msgid "Header font" +msgstr "" + +#: src/gui/settings.cpp:3007 +msgid "Size##HeadFontSize" +msgstr "" + +#: src/gui/settings.cpp:3015 +msgid "Pattern font" +msgstr "" + +#: src/gui/settings.cpp:3026 +msgid "Size##PatFontSize" +msgstr "" + +#: src/gui/settings.cpp:3036 +msgid "Anti-aliased fonts" +msgstr "" + +#: src/gui/settings.cpp:3042 +msgid "Support bitmap fonts" +msgstr "" + +#: src/gui/settings.cpp:3047 +msgid "Hinting:" +msgstr "" + +#: src/gui/settings.cpp:3049 +msgid "Off (soft)##fh0" +msgstr "" + +#: src/gui/settings.cpp:3053 +msgid "Slight##fh1" +msgstr "" + +#: src/gui/settings.cpp:3057 +msgid "Normal##fh2" +msgstr "" + +#: src/gui/settings.cpp:3061 +msgid "Full (hard)##fh3" +msgstr "" + +#: src/gui/settings.cpp:3067 +msgid "Auto-hinter:" +msgstr "" + +#: src/gui/settings.cpp:3069 +msgid "Disable##fah0" +msgstr "" + +#: src/gui/settings.cpp:3073 +msgid "Enable##fah1" +msgstr "" + +#: src/gui/settings.cpp:3077 +msgid "Force##fah2" +msgstr "" + +#: src/gui/settings.cpp:3084 +msgid "Oversample" +msgstr "" + +#: src/gui/settings.cpp:3087 +msgid "1×##fos1" +msgstr "" + +#: src/gui/settings.cpp:3092 +msgid "" +"saves video memory. reduces font rendering quality.\n" +"use for pixel/bitmap fonts." +msgstr "" + +#: src/gui/settings.cpp:3095 +msgid "2×##fos2" +msgstr "" + +#: src/gui/settings.cpp:3100 +msgid "default." +msgstr "" + +#: src/gui/settings.cpp:3103 +msgid "3×##fos3" +msgstr "" + +#: src/gui/settings.cpp:3108 +msgid "" +"slightly better font rendering quality.\n" +"uses more video memory." +msgstr "" + +#: src/gui/settings.cpp:3112 +msgid "Load fallback font" +msgstr "" + +#: src/gui/settings.cpp:3117 +msgid "disable to save video memory." +msgstr "" + +#: src/gui/settings.cpp:3121 +msgid "Display Japanese characters" +msgstr "" + +#: src/gui/settings.cpp:3127 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"このオプションは、十分なグラフィックメモリがある場合にのみ切り替えてくださ" +"い。\n" +"これは、Dear ImGuiにダイナミックフォントアトラスが実装されるまでの一時的な解" +"決策です。" +msgstr "" + +#: src/gui/settings.cpp:3135 +msgid "Display Chinese (Simplified) characters" +msgstr "" + +#: src/gui/settings.cpp:3141 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"请在确保你有足够的显存后再启动此设定\n" +"这是一个在ImGui实现动态字体加载之前的临时解决方案" +msgstr "" + +#: src/gui/settings.cpp:3149 +msgid "Display Chinese (Traditional) characters" +msgstr "" + +#: src/gui/settings.cpp:3155 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"請在確保你有足夠的顯存后再啟動此設定\n" +"這是一個在ImGui實現動態字體加載之前的臨時解決方案" +msgstr "" + +#: src/gui/settings.cpp:3163 +msgid "Display Korean characters" +msgstr "" + +#: src/gui/settings.cpp:3169 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"그래픽 메모리가 충분한 경우에만 이 옵션을 선택하십시오.\n" +"이 옵션은 Dear ImGui에 동적 글꼴 아틀라스가 구현될 때까지 임시 솔루션입니다." +msgstr "" + +#: src/gui/settings.cpp:3178 +msgid "Title bar:" +msgstr "" + +#: src/gui/settings.cpp:3180 +msgid "Furnace##tbar0" +msgstr "" + +#: src/gui/settings.cpp:3185 +msgid "Song Name - Furnace##tbar1" +msgstr "" + +#: src/gui/settings.cpp:3190 +msgid "file_name.fur - Furnace##tbar2" +msgstr "" + +#: src/gui/settings.cpp:3195 +msgid "/path/to/file.fur - Furnace##tbar3" +msgstr "" + +#: src/gui/settings.cpp:3203 +msgid "Display system name on title bar" +msgstr "" + +#: src/gui/settings.cpp:3210 +msgid "Display chip names instead of \"multi-system\" in title bar" +msgstr "" + +#: src/gui/settings.cpp:3216 +msgid "Status bar:" +msgstr "" + +#: src/gui/settings.cpp:3218 +msgid "Cursor details##sbar0" +msgstr "" + +#: src/gui/settings.cpp:3222 +msgid "File path##sbar1" +msgstr "" + +#: src/gui/settings.cpp:3226 +msgid "Cursor details or file path##sbar2" +msgstr "" + +#: src/gui/settings.cpp:3230 +msgid "Nothing##sbar3" +msgstr "" + +#: src/gui/settings.cpp:3237 +msgid "Display playback status when playing" +msgstr "" + +#: src/gui/settings.cpp:3242 +msgid "Export options layout:" +msgstr "" + +#: src/gui/settings.cpp:3244 +msgid "Sub-menus in File menu##eol0" +msgstr "" + +#: src/gui/settings.cpp:3248 +msgid "Modal window with tabs##eol1" +msgstr "" + +#: src/gui/settings.cpp:3252 +msgid "Modal windows with options in File menu##eol2" +msgstr "" + +#: src/gui/settings.cpp:3259 +msgid "Capitalize menu bar" +msgstr "" + +#: src/gui/settings.cpp:3265 +msgid "Display add/configure/change/remove chip menus in File menu" +msgstr "" + +#: src/gui/settings.cpp:3279 +msgid "Highlight channel at cursor in Orders" +msgstr "" + +#: src/gui/settings.cpp:3284 +msgid "Orders row number format:" +msgstr "" + +#: src/gui/settings.cpp:3286 +msgid "Decimal##orbD" +msgstr "" + +#: src/gui/settings.cpp:3290 +msgid "Hexadecimal##orbH" +msgstr "" + +#: src/gui/settings.cpp:3299 +msgid "Center pattern view" +msgstr "" + +#: src/gui/settings.cpp:3305 +msgid "Overflow pattern highlights" +msgstr "" + +#: src/gui/settings.cpp:3311 +msgid "Display previous/next pattern" +msgstr "" + +#: src/gui/settings.cpp:3316 +msgid "Pattern row number format:" +msgstr "" + +#: src/gui/settings.cpp:3318 +msgid "Decimal##prbD" +msgstr "" + +#: src/gui/settings.cpp:3322 +msgid "Hexadecimal##prbH" +msgstr "" + +#: src/gui/settings.cpp:3328 +msgid "Pattern view labels:" +msgstr "" + +#: src/gui/settings.cpp:3333 +msgid "Note off (3-char)" +msgstr "" + +#: src/gui/settings.cpp:3338 +msgid "Note release (3-char)" +msgstr "" + +#: src/gui/settings.cpp:3343 +msgid "Macro release (3-char)" +msgstr "" + +#: src/gui/settings.cpp:3348 +msgid "Empty field (3-char)" +msgstr "" + +#: src/gui/settings.cpp:3353 +msgid "Empty field (2-char)" +msgstr "" + +#: src/gui/settings.cpp:3355 +msgid "Pattern view spacing after:" +msgstr "" + +#: src/gui/settings.cpp:3357 src/gui/settings.cpp:4115 +#: src/gui/findReplace.cpp:601 src/gui/findReplace.cpp:864 +#: src/gui/sampleEdit.cpp:590 +msgid "Note" +msgstr "" + +#: src/gui/settings.cpp:3375 src/gui/findReplace.cpp:707 +#: src/gui/findReplace.cpp:974 +msgid "Effect" +msgstr "" + +#: src/gui/settings.cpp:3381 +msgid "Effect value" +msgstr "" + +#: src/gui/settings.cpp:3388 +msgid "Single-digit effects for 00-0F" +msgstr "" + +#: src/gui/settings.cpp:3394 +msgid "Use flats instead of sharps" +msgstr "" + +#: src/gui/settings.cpp:3400 +msgid "Use German notation" +msgstr "" + +#: src/gui/settings.cpp:3408 +msgid "Channel style:" +msgstr "" + +#: src/gui/settings.cpp:3410 +msgid "Classic##CHS0" +msgstr "" + +#: src/gui/settings.cpp:3414 +msgid "Line##CHS1" +msgstr "" + +#: src/gui/settings.cpp:3418 +msgid "Round##CHS2" +msgstr "" + +#: src/gui/settings.cpp:3422 +msgid "Split button##CHS3" +msgstr "" + +#: src/gui/settings.cpp:3426 +msgid "Square border##CH42" +msgstr "" + +#: src/gui/settings.cpp:3430 +msgid "Round border##CHS5" +msgstr "" + +#: src/gui/settings.cpp:3436 +msgid "Channel volume bar:" +msgstr "" + +#: src/gui/settings.cpp:3438 +msgid "None##CHV0" +msgstr "" + +#: src/gui/settings.cpp:3442 +msgid "Simple##CHV1" +msgstr "" + +#: src/gui/settings.cpp:3446 +msgid "Stereo##CHV2" +msgstr "" + +#: src/gui/settings.cpp:3450 +msgid "Real##CHV3" +msgstr "" + +#: src/gui/settings.cpp:3454 +msgid "Real (stereo)##CHV4" +msgstr "" + +#: src/gui/settings.cpp:3460 +msgid "Channel feedback style:" +msgstr "" + +#: src/gui/settings.cpp:3462 +msgid "Off##CHF0" +msgstr "" + +#: src/gui/settings.cpp:3466 +msgid "Note##CHF1" +msgstr "" + +#: src/gui/settings.cpp:3470 +msgid "Volume##CHF2" +msgstr "" + +#: src/gui/settings.cpp:3474 +msgid "Active##CHF3" +msgstr "" + +#: src/gui/settings.cpp:3480 +msgid "Channel font:" +msgstr "" + +#: src/gui/settings.cpp:3482 +msgid "Regular##CHFont0" +msgstr "" + +#: src/gui/settings.cpp:3486 +msgid "Monospace##CHFont1" +msgstr "" + +#: src/gui/settings.cpp:3493 +msgid "Center channel name" +msgstr "" + +#: src/gui/settings.cpp:3498 +msgid "Channel colors:" +msgstr "" + +#: src/gui/settings.cpp:3500 +msgid "Single##CHC0" +msgstr "" + +#: src/gui/settings.cpp:3504 +msgid "Channel type##CHC1" +msgstr "" + +#: src/gui/settings.cpp:3508 +msgid "Instrument type##CHC2" +msgstr "" + +#: src/gui/settings.cpp:3514 +msgid "Channel name colors:" +msgstr "" + +#: src/gui/settings.cpp:3516 +msgid "Single##CTC0" +msgstr "" + +#: src/gui/settings.cpp:3520 +msgid "Channel type##CTC1" +msgstr "" + +#: src/gui/settings.cpp:3524 +msgid "Instrument type##CTC2" +msgstr "" + +#: src/gui/settings.cpp:3533 +msgid "Unified instrument/wavetable/sample list" +msgstr "" + +#: src/gui/settings.cpp:3543 +msgid "Horizontal instrument list" +msgstr "" + +#: src/gui/settings.cpp:3549 +msgid "Instrument list icon style:" +msgstr "" + +#: src/gui/settings.cpp:3551 +msgid "None##iis0" +msgstr "" + +#: src/gui/settings.cpp:3555 +msgid "Graphical icons##iis1" +msgstr "" + +#: src/gui/settings.cpp:3559 +msgid "Letter icons##iis2" +msgstr "" + +#: src/gui/settings.cpp:3566 +msgid "Colorize instrument editor using instrument type" +msgstr "" + +#: src/gui/settings.cpp:3572 src/gui/settings.cpp:4014 +msgid "Macro Editor" +msgstr "" + +#: src/gui/settings.cpp:3573 +msgid "Macro editor layout:" +msgstr "" + +#: src/gui/settings.cpp:3575 +msgid "Unified##mel0" +msgstr "" + +#: src/gui/settings.cpp:3585 +msgid "Grid##mel2" +msgstr "" + +#: src/gui/settings.cpp:3589 +msgid "Single (with list)##mel3" +msgstr "" + +#: src/gui/settings.cpp:3602 +msgid "Use classic macro editor vertical slider" +msgstr "" + +#: src/gui/settings.cpp:3608 +msgid "Wave Editor" +msgstr "" + +#: src/gui/settings.cpp:3610 +msgid "Use compact wave editor" +msgstr "" + +#: src/gui/settings.cpp:3616 src/gui/settings.cpp:3991 +msgid "FM Editor" +msgstr "" + +#: src/gui/settings.cpp:3617 +msgid "FM parameter names:" +msgstr "" + +#: src/gui/settings.cpp:3619 +msgid "Friendly##fmn0" +msgstr "" + +#: src/gui/settings.cpp:3623 +msgid "Technical##fmn1" +msgstr "" + +#: src/gui/settings.cpp:3627 +msgid "Technical (alternate)##fmn2" +msgstr "" + +#: src/gui/settings.cpp:3634 +msgid "Use standard OPL waveform names" +msgstr "" + +#: src/gui/settings.cpp:3639 +msgid "FM parameter editor layout:" +msgstr "" + +#: src/gui/settings.cpp:3641 +msgid "Modern##fml0" +msgstr "" + +#: src/gui/settings.cpp:3645 +msgid "Compact (2x2, classic)##fml1" +msgstr "" + +#: src/gui/settings.cpp:3649 +msgid "Compact (1x4)##fml2" +msgstr "" + +#: src/gui/settings.cpp:3653 +msgid "Compact (4x1)##fml3" +msgstr "" + +#: src/gui/settings.cpp:3657 +msgid "Alternate (2x2)##fml4" +msgstr "" + +#: src/gui/settings.cpp:3661 +msgid "Alternate (1x4)##fml5" +msgstr "" + +#: src/gui/settings.cpp:3665 +msgid "Alternate (4x1)##fml5" +msgstr "" + +#: src/gui/settings.cpp:3671 +msgid "Position of Sustain in FM editor:" +msgstr "" + +#: src/gui/settings.cpp:3673 +msgid "Between Decay and Sustain Rate##susp0" +msgstr "" + +#: src/gui/settings.cpp:3677 +msgid "After Release Rate##susp1" +msgstr "" + +#: src/gui/settings.cpp:3684 +msgid "Use separate colors for carriers/modulators in FM editor" +msgstr "" + +#: src/gui/settings.cpp:3690 +msgid "Unsigned FM detune values" +msgstr "" + +#: src/gui/settings.cpp:3697 +msgid "Chip memory usage unit:" +msgstr "" + +#: src/gui/settings.cpp:3699 +msgid "Bytes##MUU0" +msgstr "" + +#: src/gui/settings.cpp:3703 +msgid "Kilobytes##MUU1" +msgstr "" + +#: src/gui/settings.cpp:3712 +msgid "Rounded corners" +msgstr "" + +#: src/gui/settings.cpp:3718 src/gui/settings.cpp:3896 +#: src/gui/settings.cpp:3938 +msgid "Border" +msgstr "" + +#: src/gui/settings.cpp:3730 +msgid "Anti-aliased" +msgstr "" + +#: src/gui/settings.cpp:3736 +msgid "Fill entire window" +msgstr "" + +#: src/gui/settings.cpp:3742 +msgid "Waveform goes out of bounds" +msgstr "" + +#: src/gui/settings.cpp:3754 +msgid "Windows" +msgstr "" + +#: src/gui/settings.cpp:3756 +msgid "Rounded window corners" +msgstr "" + +#: src/gui/settings.cpp:3762 +msgid "Rounded buttons" +msgstr "" + +#: src/gui/settings.cpp:3768 +msgid "Rounded menu corners" +msgstr "" + +#: src/gui/settings.cpp:3774 +msgid "Rounded tabs" +msgstr "" + +#: src/gui/settings.cpp:3780 +msgid "Rounded scrollbars" +msgstr "" + +#: src/gui/settings.cpp:3786 +msgid "Borders around widgets" +msgstr "" + +#: src/gui/settings.cpp:3795 +msgid "Color scheme" +msgstr "" + +#: src/gui/settings.cpp:3805 +msgid "Are you sure you want to reset the color scheme?" +msgstr "" + +#: src/gui/settings.cpp:3808 +msgid "Guru mode" +msgstr "" + +#: src/gui/settings.cpp:3815 src/gui/settings.cpp:3845 +msgid "Frame shading" +msgstr "" + +#: src/gui/settings.cpp:3821 +msgid "Color scheme type:" +msgstr "" + +#: src/gui/settings.cpp:3823 +msgid "Dark##gcb0" +msgstr "" + +#: src/gui/settings.cpp:3828 +msgid "Light##gcb1" +msgstr "" + +#: src/gui/settings.cpp:3835 +msgid "Accent colors:" +msgstr "" + +#: src/gui/settings.cpp:3837 +msgid "Primary" +msgstr "" + +#: src/gui/settings.cpp:3838 +msgid "Secondary" +msgstr "" + +#: src/gui/settings.cpp:3852 +msgid "Button" +msgstr "" + +#: src/gui/settings.cpp:3853 +msgid "Button (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3854 +msgid "Button (active)" +msgstr "" + +#: src/gui/settings.cpp:3855 +msgid "Tab" +msgstr "" + +#: src/gui/settings.cpp:3856 +msgid "Tab (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3857 +msgid "Tab (active)" +msgstr "" + +#: src/gui/settings.cpp:3858 +msgid "Tab (unfocused)" +msgstr "" + +#: src/gui/settings.cpp:3859 +msgid "Tab (unfocused and active)" +msgstr "" + +#: src/gui/settings.cpp:3860 +msgid "ImGui header" +msgstr "" + +#: src/gui/settings.cpp:3861 +msgid "ImGui header (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3862 +msgid "ImGui header (active)" +msgstr "" + +#: src/gui/settings.cpp:3863 +msgid "Resize grip" +msgstr "" + +#: src/gui/settings.cpp:3864 +msgid "Resize grip (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3865 +msgid "Resize grip (active)" +msgstr "" + +#: src/gui/settings.cpp:3866 +msgid "Widget background" +msgstr "" + +#: src/gui/settings.cpp:3867 +msgid "Widget background (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3868 +msgid "Widget background (active)" +msgstr "" + +#: src/gui/settings.cpp:3869 +msgid "Slider grab" +msgstr "" + +#: src/gui/settings.cpp:3870 +msgid "Slider grab (active)" +msgstr "" + +#: src/gui/settings.cpp:3871 +msgid "Title background (active)" +msgstr "" + +#: src/gui/settings.cpp:3872 +msgid "Checkbox/radio button mark" +msgstr "" + +#: src/gui/settings.cpp:3873 +msgid "Text selection" +msgstr "" + +#: src/gui/settings.cpp:3874 +msgid "Line plot" +msgstr "" + +#: src/gui/settings.cpp:3875 +msgid "Line plot (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3876 +msgid "Histogram plot" +msgstr "" + +#: src/gui/settings.cpp:3877 +msgid "Histogram plot (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3878 +msgid "Table row (even)" +msgstr "" + +#: src/gui/settings.cpp:3879 +msgid "Table row (odd)" +msgstr "" + +#: src/gui/settings.cpp:3884 +msgid "Interface (other)" +msgstr "" + +#: src/gui/settings.cpp:3886 +msgid "Window background" +msgstr "" + +#: src/gui/settings.cpp:3887 +msgid "Sub-window background" +msgstr "" + +#: src/gui/settings.cpp:3888 +msgid "Pop-up background" +msgstr "" + +#: src/gui/settings.cpp:3889 +msgid "Modal backdrop" +msgstr "" + +#: src/gui/settings.cpp:3890 +msgid "Header" +msgstr "" + +#: src/gui/settings.cpp:3892 +msgid "Text (disabled)" +msgstr "" + +#: src/gui/settings.cpp:3893 +msgid "Title bar (inactive)" +msgstr "" + +#: src/gui/settings.cpp:3894 +msgid "Title bar (collapsed)" +msgstr "" + +#: src/gui/settings.cpp:3895 +msgid "Menu bar" +msgstr "" + +#: src/gui/settings.cpp:3897 +msgid "Border shadow" +msgstr "" + +#: src/gui/settings.cpp:3898 +msgid "Scroll bar" +msgstr "" + +#: src/gui/settings.cpp:3899 +msgid "Scroll bar (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3900 +msgid "Scroll bar (clicked)" +msgstr "" + +#: src/gui/settings.cpp:3901 +msgid "Scroll bar background" +msgstr "" + +#: src/gui/settings.cpp:3902 +msgid "Separator" +msgstr "" + +#: src/gui/settings.cpp:3903 +msgid "Separator (hover)" +msgstr "" + +#: src/gui/settings.cpp:3904 +msgid "Separator (active)" +msgstr "" + +#: src/gui/settings.cpp:3905 +msgid "Docking preview" +msgstr "" + +#: src/gui/settings.cpp:3906 +msgid "Docking empty" +msgstr "" + +#: src/gui/settings.cpp:3907 +msgid "Table header" +msgstr "" + +#: src/gui/settings.cpp:3908 +msgid "Table border (hard)" +msgstr "" + +#: src/gui/settings.cpp:3909 +msgid "Table border (soft)" +msgstr "" + +#: src/gui/settings.cpp:3910 +msgid "Drag and drop target" +msgstr "" + +#: src/gui/settings.cpp:3911 +msgid "Window switcher (highlight)" +msgstr "" + +#: src/gui/settings.cpp:3912 +msgid "Window switcher backdrop" +msgstr "" + +#: src/gui/settings.cpp:3915 src/gui/settings.cpp:4136 src/gui/guiConst.cpp:235 +msgid "Miscellaneous" +msgstr "" + +#: src/gui/settings.cpp:3916 +msgid "Toggle on" +msgstr "" + +#: src/gui/settings.cpp:3917 +msgid "Toggle off" +msgstr "" + +#: src/gui/settings.cpp:3918 +msgid "Playback status" +msgstr "" + +#: src/gui/settings.cpp:3919 +msgid "Destructive hint" +msgstr "" + +#: src/gui/settings.cpp:3920 +msgid "Warning hint" +msgstr "" + +#: src/gui/settings.cpp:3921 +msgid "Error hint" +msgstr "" + +#: src/gui/settings.cpp:3924 +msgid "File Picker (built-in)" +msgstr "" + +#: src/gui/settings.cpp:3926 +msgid "Song (native)" +msgstr "" + +#: src/gui/settings.cpp:3927 +msgid "Song (import)" +msgstr "" + +#: src/gui/settings.cpp:3933 +msgid "Font" +msgstr "" + +#: src/gui/settings.cpp:3939 +msgid "Background (top-left)" +msgstr "" + +#: src/gui/settings.cpp:3940 +msgid "Background (top-right)" +msgstr "" + +#: src/gui/settings.cpp:3941 +msgid "Background (bottom-left)" +msgstr "" + +#: src/gui/settings.cpp:3942 +msgid "Background (bottom-right)" +msgstr "" + +#: src/gui/settings.cpp:3943 src/gui/settings.cpp:3998 +#: src/gui/settings.cpp:4166 src/gui/waveEdit.cpp:730 src/gui/insEdit.cpp:50 +#: src/gui/insEdit.cpp:4148 src/gui/insEdit.cpp:5812 src/gui/insEdit.cpp:6940 +#: src/gui/insEdit.cpp:6949 src/gui/insEdit.cpp:6963 src/gui/insEdit.cpp:6980 +#: src/gui/insEdit.cpp:6991 src/gui/insEdit.cpp:7004 src/gui/insEdit.cpp:7018 +#: src/gui/insEdit.cpp:7025 src/gui/insEdit.cpp:7035 src/gui/insEdit.cpp:7041 +#: src/gui/insEdit.cpp:7050 src/gui/insEdit.cpp:7074 src/gui/insEdit.cpp:7084 +#: src/gui/insEdit.cpp:7094 src/gui/insEdit.cpp:7101 src/gui/insEdit.cpp:7116 +#: src/gui/insEdit.cpp:7131 src/gui/insEdit.cpp:7151 src/gui/insEdit.cpp:7158 +#: src/gui/insEdit.cpp:7200 src/gui/insEdit.cpp:7211 src/gui/insEdit.cpp:7224 +#: src/gui/insEdit.cpp:7349 src/gui/insEdit.cpp:7425 src/gui/insEdit.cpp:7445 +#: src/gui/insEdit.cpp:7453 src/gui/insEdit.cpp:7473 +msgid "Waveform" +msgstr "" + +#: src/gui/settings.cpp:3944 +msgid "Waveform (clip)" +msgstr "" + +#: src/gui/settings.cpp:3945 +msgid "Reference" +msgstr "" + +#: src/gui/settings.cpp:3946 +msgid "Guide" +msgstr "" + +#: src/gui/settings.cpp:3948 +msgid "Wave (non-mono)" +msgstr "" + +#: src/gui/settings.cpp:3949 +msgid "Waveform (1)" +msgstr "" + +#: src/gui/settings.cpp:3950 +msgid "Waveform (2)" +msgstr "" + +#: src/gui/settings.cpp:3951 +msgid "Waveform (3)" +msgstr "" + +#: src/gui/settings.cpp:3952 +msgid "Waveform (4)" +msgstr "" + +#: src/gui/settings.cpp:3953 +msgid "Waveform (5)" +msgstr "" + +#: src/gui/settings.cpp:3954 +msgid "Waveform (6)" +msgstr "" + +#: src/gui/settings.cpp:3955 +msgid "Waveform (7)" +msgstr "" + +#: src/gui/settings.cpp:3956 +msgid "Waveform (8)" +msgstr "" + +#: src/gui/settings.cpp:3957 +msgid "Waveform (9)" +msgstr "" + +#: src/gui/settings.cpp:3958 +msgid "Waveform (10)" +msgstr "" + +#: src/gui/settings.cpp:3959 +msgid "Waveform (11)" +msgstr "" + +#: src/gui/settings.cpp:3960 +msgid "Waveform (12)" +msgstr "" + +#: src/gui/settings.cpp:3961 +msgid "Waveform (13)" +msgstr "" + +#: src/gui/settings.cpp:3962 +msgid "Waveform (14)" +msgstr "" + +#: src/gui/settings.cpp:3963 +msgid "Waveform (15)" +msgstr "" + +#: src/gui/settings.cpp:3964 +msgid "Waveform (16)" +msgstr "" + +#: src/gui/settings.cpp:3972 +msgid "Clip" +msgstr "" + +#: src/gui/settings.cpp:3976 +msgid "Order number" +msgstr "" + +#: src/gui/settings.cpp:3977 +msgid "Playing order background" +msgstr "" + +#: src/gui/settings.cpp:3978 +msgid "Song loop" +msgstr "" + +#: src/gui/settings.cpp:3979 +msgid "Selected order" +msgstr "" + +#: src/gui/settings.cpp:3980 +msgid "Similar patterns" +msgstr "" + +#: src/gui/settings.cpp:3981 +msgid "Inactive patterns" +msgstr "" + +#: src/gui/settings.cpp:3984 +msgid "Envelope View" +msgstr "" + +#: src/gui/settings.cpp:3985 src/gui/insEdit.cpp:540 src/gui/insEdit.cpp:3547 +#: src/gui/insEdit.cpp:3548 src/gui/insEdit.cpp:4081 src/gui/insEdit.cpp:4151 +#: src/gui/insEdit.cpp:4790 src/gui/insEdit.cpp:5861 src/gui/insEdit.cpp:5862 +#: src/gui/insEdit.cpp:6487 src/gui/insEdit.cpp:6488 src/gui/insEdit.cpp:6555 +#: src/gui/insEdit.cpp:6556 src/gui/insEdit.cpp:6995 src/gui/insEdit.cpp:7009 +#: src/gui/insEdit.cpp:7029 src/gui/insEdit.cpp:7166 +#, c-format +msgid "Envelope" +msgstr "" + +#: src/gui/settings.cpp:3986 +msgid "Sustain guide" +msgstr "" + +#: src/gui/settings.cpp:3992 +msgid "Algorithm background" +msgstr "" + +#: src/gui/settings.cpp:3993 +msgid "Algorithm lines" +msgstr "" + +#: src/gui/settings.cpp:3994 +msgid "Modulator" +msgstr "" + +#: src/gui/settings.cpp:3995 +msgid "Carrier" +msgstr "" + +#: src/gui/settings.cpp:3997 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:4146 +msgid "SSG-EG" +msgstr "" + +#: src/gui/settings.cpp:4000 +msgid "" +"(the following colors only apply when \"Use separate colors for carriers/" +"modulators in FM editor\" is on!)" +msgstr "" + +#: src/gui/settings.cpp:4002 +msgid "Mod. accent (primary)" +msgstr "" + +#: src/gui/settings.cpp:4003 +msgid "Mod. accent (secondary)" +msgstr "" + +#: src/gui/settings.cpp:4004 +msgid "Mod. border" +msgstr "" + +#: src/gui/settings.cpp:4005 +msgid "Mod. border shadow" +msgstr "" + +#: src/gui/settings.cpp:4007 +msgid "Car. accent (primary)" +msgstr "" + +#: src/gui/settings.cpp:4008 +msgid "Car. accent (secondary)" +msgstr "" + +#: src/gui/settings.cpp:4009 +msgid "Car. border" +msgstr "" + +#: src/gui/settings.cpp:4010 +msgid "Car. border shadow" +msgstr "" + +#: src/gui/settings.cpp:4016 src/gui/guiConst.cpp:227 src/gui/insEdit.cpp:6924 +#: src/gui/insEdit.cpp:6931 src/gui/insEdit.cpp:6942 src/gui/insEdit.cpp:6950 +#: src/gui/insEdit.cpp:6971 src/gui/insEdit.cpp:6983 src/gui/insEdit.cpp:6993 +#: src/gui/insEdit.cpp:7006 src/gui/insEdit.cpp:7019 src/gui/insEdit.cpp:7028 +#: src/gui/insEdit.cpp:7036 src/gui/insEdit.cpp:7042 src/gui/insEdit.cpp:7052 +#: src/gui/insEdit.cpp:7061 src/gui/insEdit.cpp:7068 src/gui/insEdit.cpp:7075 +#: src/gui/insEdit.cpp:7087 src/gui/insEdit.cpp:7095 src/gui/insEdit.cpp:7102 +#: src/gui/insEdit.cpp:7109 src/gui/insEdit.cpp:7117 src/gui/insEdit.cpp:7123 +#: src/gui/insEdit.cpp:7132 src/gui/insEdit.cpp:7143 src/gui/insEdit.cpp:7153 +#: src/gui/insEdit.cpp:7161 src/gui/insEdit.cpp:7174 src/gui/insEdit.cpp:7182 +#: src/gui/insEdit.cpp:7193 src/gui/insEdit.cpp:7203 src/gui/insEdit.cpp:7213 +#: src/gui/insEdit.cpp:7227 src/gui/insEdit.cpp:7233 src/gui/insEdit.cpp:7241 +#: src/gui/insEdit.cpp:7248 src/gui/insEdit.cpp:7272 src/gui/insEdit.cpp:7280 +#: src/gui/insEdit.cpp:7289 src/gui/insEdit.cpp:7298 src/gui/insEdit.cpp:7306 +#: src/gui/insEdit.cpp:7323 src/gui/insEdit.cpp:7331 src/gui/insEdit.cpp:7337 +#: src/gui/insEdit.cpp:7344 src/gui/insEdit.cpp:7350 src/gui/insEdit.cpp:7355 +#: src/gui/insEdit.cpp:7361 src/gui/insEdit.cpp:7368 src/gui/insEdit.cpp:7376 +#: src/gui/insEdit.cpp:7385 src/gui/insEdit.cpp:7393 src/gui/insEdit.cpp:7401 +#: src/gui/insEdit.cpp:7413 src/gui/insEdit.cpp:7428 src/gui/insEdit.cpp:7439 +#: src/gui/insEdit.cpp:7447 src/gui/insEdit.cpp:7456 src/gui/insEdit.cpp:7466 +#: src/gui/insEdit.cpp:7474 +msgid "Pitch" +msgstr "" + +#: src/gui/settings.cpp:4021 +msgid "Instrument Types" +msgstr "" + +#: src/gui/settings.cpp:4022 +msgid "FM (OPN)" +msgstr "" + +#: src/gui/settings.cpp:4023 +msgid "SN76489/Sega PSG" +msgstr "" + +#: src/gui/settings.cpp:4026 +msgid "C64" +msgstr "" + +#: src/gui/settings.cpp:4027 +msgid "Amiga/Generic Sample" +msgstr "" + +#: src/gui/settings.cpp:4028 +msgid "PC Engine" +msgstr "" + +#: src/gui/settings.cpp:4029 +msgid "AY-3-8910/SSG" +msgstr "" + +#: src/gui/settings.cpp:4030 +msgid "AY8930" +msgstr "" + +#: src/gui/settings.cpp:4031 +msgid "TIA" +msgstr "" + +#: src/gui/settings.cpp:4032 +msgid "SAA1099" +msgstr "" + +#: src/gui/settings.cpp:4033 +msgid "VIC" +msgstr "" + +#: src/gui/settings.cpp:4034 +msgid "PET" +msgstr "" + +#: src/gui/settings.cpp:4035 +msgid "VRC6" +msgstr "" + +#: src/gui/settings.cpp:4036 src/gui/guiConst.cpp:149 +msgid "VRC6 (saw)" +msgstr "" + +#: src/gui/settings.cpp:4037 +msgid "FM (OPLL)" +msgstr "" + +#: src/gui/settings.cpp:4038 +msgid "FM (OPL)" +msgstr "" + +#: src/gui/settings.cpp:4043 +msgid "FM (OPZ)" +msgstr "" + +#: src/gui/settings.cpp:4045 +msgid "PC Beeper" +msgstr "" + +#: src/gui/settings.cpp:4047 +msgid "Lynx" +msgstr "" + +#: src/gui/settings.cpp:4049 +msgid "X1-010" +msgstr "" + +#: src/gui/settings.cpp:4050 +msgid "ES5506" +msgstr "" + +#: src/gui/settings.cpp:4053 +msgid "Sound Unit" +msgstr "" + +#: src/gui/settings.cpp:4055 +msgid "FM (OPL Drums)" +msgstr "" + +#: src/gui/settings.cpp:4056 +msgid "FM (OPM)" +msgstr "" + +#: src/gui/settings.cpp:4057 +msgid "NES" +msgstr "" + +#: src/gui/settings.cpp:4058 +msgid "MSM6258" +msgstr "" + +#: src/gui/settings.cpp:4059 +msgid "MSM6295" +msgstr "" + +#: src/gui/settings.cpp:4060 +msgid "ADPCM-A" +msgstr "" + +#: src/gui/settings.cpp:4062 +msgid "Sega PCM" +msgstr "" + +#: src/gui/settings.cpp:4063 +msgid "QSound" +msgstr "" + +#: src/gui/settings.cpp:4064 +msgid "YMZ280B" +msgstr "" + +#: src/gui/settings.cpp:4065 +msgid "RF5C68" +msgstr "" + +#: src/gui/settings.cpp:4066 +msgid "MSM5232" +msgstr "" + +#: src/gui/settings.cpp:4067 +msgid "K007232" +msgstr "" + +#: src/gui/settings.cpp:4068 +msgid "GA20" +msgstr "" + +#: src/gui/settings.cpp:4070 +msgid "SM8521" +msgstr "" + +#: src/gui/settings.cpp:4071 +msgid "PV-1000" +msgstr "" + +#: src/gui/settings.cpp:4072 +msgid "K053260" +msgstr "" + +#: src/gui/settings.cpp:4073 +msgid "TED" +msgstr "" + +#: src/gui/settings.cpp:4074 +msgid "C140" +msgstr "" + +#: src/gui/settings.cpp:4075 +msgid "C219" +msgstr "" + +#: src/gui/settings.cpp:4076 +msgid "ESFM" +msgstr "" + +#: src/gui/settings.cpp:4077 src/gui/guiConst.cpp:179 +msgid "PowerNoise (noise)" +msgstr "" + +#: src/gui/settings.cpp:4078 src/gui/guiConst.cpp:180 +msgid "PowerNoise (slope)" +msgstr "" + +#: src/gui/settings.cpp:4081 +msgid "GBA DMA" +msgstr "" + +#: src/gui/settings.cpp:4082 +msgid "GBA MinMod" +msgstr "" + +#: src/gui/settings.cpp:4085 +msgid "Other/Unknown" +msgstr "" + +#: src/gui/settings.cpp:4089 +msgid "Single color (background)" +msgstr "" + +#: src/gui/settings.cpp:4090 +msgid "Single color (text)" +msgstr "" + +#: src/gui/settings.cpp:4091 src/gui/guiConst.cpp:1393 src/gui/waveEdit.cpp:668 +msgid "FM" +msgstr "" + +#: src/gui/settings.cpp:4096 +msgid "FM operator" +msgstr "FM-operator" + +#: src/gui/settings.cpp:4097 +msgid "Muted" +msgstr "" + +#: src/gui/settings.cpp:4101 +msgid "Playhead" +msgstr "" + +#: src/gui/settings.cpp:4102 +msgid "Editing" +msgstr "" + +#: src/gui/settings.cpp:4103 +msgid "Editing (will clone)" +msgstr "" + +#: src/gui/settings.cpp:4104 +msgid "Cursor" +msgstr "" + +#: src/gui/settings.cpp:4105 +msgid "Cursor (hovered)" +msgstr "" + +#: src/gui/settings.cpp:4106 +msgid "Cursor (clicked)" +msgstr "" + +#: src/gui/settings.cpp:4107 src/gui/settings.cpp:4172 +#: src/gui/findReplace.cpp:791 +msgid "Selection" +msgstr "" + +#: src/gui/settings.cpp:4108 +msgid "Selection (hovered)" +msgstr "" + +#: src/gui/settings.cpp:4109 +msgid "Selection (clicked)" +msgstr "" + +#: src/gui/settings.cpp:4110 +msgid "Highlight 1" +msgstr "" + +#: src/gui/settings.cpp:4111 +msgid "Highlight 2" +msgstr "" + +#: src/gui/settings.cpp:4112 +msgid "Row number" +msgstr "" + +#: src/gui/settings.cpp:4113 +msgid "Row number (highlight 1)" +msgstr "" + +#: src/gui/settings.cpp:4114 +msgid "Row number (highlight 2)" +msgstr "" + +#: src/gui/settings.cpp:4116 +msgid "Note (highlight 1)" +msgstr "" + +#: src/gui/settings.cpp:4117 +msgid "Note (highlight 2)" +msgstr "" + +#: src/gui/settings.cpp:4118 +msgid "Blank" +msgstr "" + +#: src/gui/settings.cpp:4119 +msgid "Blank (highlight 1)" +msgstr "" + +#: src/gui/settings.cpp:4120 +msgid "Blank (highlight 2)" +msgstr "" + +#: src/gui/settings.cpp:4122 +msgid "Instrument (invalid type)" +msgstr "" + +#: src/gui/settings.cpp:4123 +msgid "Instrument (out of range)" +msgstr "" + +#: src/gui/settings.cpp:4124 +msgid "Volume (0%)" +msgstr "" + +#: src/gui/settings.cpp:4125 +msgid "Volume (50%)" +msgstr "" + +#: src/gui/settings.cpp:4126 +msgid "Volume (100%)" +msgstr "" + +#: src/gui/settings.cpp:4128 +msgid "Pitch effect" +msgstr "" + +#: src/gui/settings.cpp:4129 +msgid "Volume effect" +msgstr "" + +#: src/gui/settings.cpp:4130 +msgid "Panning effect" +msgstr "" + +#: src/gui/settings.cpp:4131 +msgid "Song effect" +msgstr "" + +#: src/gui/settings.cpp:4132 +msgid "Time effect" +msgstr "" + +#: src/gui/settings.cpp:4133 +msgid "Speed effect" +msgstr "" + +#: src/gui/settings.cpp:4134 +msgid "Primary specific effect" +msgstr "" + +#: src/gui/settings.cpp:4135 +msgid "Secondary specific effect" +msgstr "" + +#: src/gui/settings.cpp:4137 +msgid "External command output" +msgstr "" + +#: src/gui/settings.cpp:4138 +msgid "Status: off/disabled" +msgstr "" + +#: src/gui/settings.cpp:4139 +msgid "Status: off + macro rel" +msgstr "" + +#: src/gui/settings.cpp:4140 +msgid "Status: on + macro rel" +msgstr "" + +#: src/gui/settings.cpp:4141 +msgid "Status: on" +msgstr "" + +#: src/gui/settings.cpp:4142 +msgid "Status: volume" +msgstr "" + +#: src/gui/settings.cpp:4143 +msgid "Status: pitch" +msgstr "" + +#: src/gui/settings.cpp:4144 +msgid "Status: panning" +msgstr "" + +#: src/gui/settings.cpp:4145 +msgid "Status: chip (primary)" +msgstr "" + +#: src/gui/settings.cpp:4146 +msgid "Status: chip (secondary)" +msgstr "" + +#: src/gui/settings.cpp:4147 +msgid "Status: mixing" +msgstr "" + +#: src/gui/settings.cpp:4148 +msgid "Status: DSP effect" +msgstr "" + +#: src/gui/settings.cpp:4149 +msgid "Status: note altering" +msgstr "" + +#: src/gui/settings.cpp:4150 +msgid "Status: misc color 1" +msgstr "" + +#: src/gui/settings.cpp:4151 +msgid "Status: misc color 2" +msgstr "" + +#: src/gui/settings.cpp:4152 +msgid "Status: misc color 3" +msgstr "" + +#: src/gui/settings.cpp:4153 +msgid "Status: attack" +msgstr "" + +#: src/gui/settings.cpp:4154 +msgid "Status: decay" +msgstr "" + +#: src/gui/settings.cpp:4155 +msgid "Status: sustain" +msgstr "" + +#: src/gui/settings.cpp:4156 +msgid "Status: release" +msgstr "" + +#: src/gui/settings.cpp:4157 +msgid "Status: decrease linear" +msgstr "" + +#: src/gui/settings.cpp:4158 +msgid "Status: decrease exp" +msgstr "" + +#: src/gui/settings.cpp:4159 +msgid "Status: increase" +msgstr "" + +#: src/gui/settings.cpp:4160 +msgid "Status: bent" +msgstr "" + +#: src/gui/settings.cpp:4161 +msgid "Status: direct" +msgstr "" + +#: src/gui/settings.cpp:4164 src/gui/guiConst.cpp:586 src/gui/sampleEdit.cpp:96 +msgid "Sample Editor" +msgstr "" + +#: src/gui/settings.cpp:4167 +msgid "Time background" +msgstr "" + +#: src/gui/settings.cpp:4168 +msgid "Time text" +msgstr "" + +#: src/gui/settings.cpp:4169 +msgid "Loop region" +msgstr "" + +#: src/gui/settings.cpp:4170 +msgid "Center guide" +msgstr "" + +#: src/gui/settings.cpp:4171 +msgid "Grid" +msgstr "" + +#: src/gui/settings.cpp:4173 +msgid "Selection points" +msgstr "" + +#: src/gui/settings.cpp:4174 +msgid "Preview needle" +msgstr "" + +#: src/gui/settings.cpp:4175 +msgid "Playing needles" +msgstr "" + +#: src/gui/settings.cpp:4176 +msgid "Loop markers" +msgstr "" + +#: src/gui/settings.cpp:4177 +msgid "Chip select: disabled" +msgstr "" + +#: src/gui/settings.cpp:4178 +msgid "Chip select: enabled" +msgstr "" + +#: src/gui/settings.cpp:4179 +msgid "Chip select: enabled (failure)" +msgstr "" + +#: src/gui/settings.cpp:4182 src/gui/guiConst.cpp:602 src/gui/patManager.cpp:35 +msgid "Pattern Manager" +msgstr "" + +#: src/gui/settings.cpp:4183 +msgid "Unallocated" +msgstr "" + +#: src/gui/settings.cpp:4184 +msgid "Unused" +msgstr "" + +#: src/gui/settings.cpp:4185 +msgid "Used" +msgstr "" + +#: src/gui/settings.cpp:4186 +msgid "Overused" +msgstr "" + +#: src/gui/settings.cpp:4187 +msgid "Really overused" +msgstr "" + +#: src/gui/settings.cpp:4188 +msgid "Combo Breaker" +msgstr "" + +#: src/gui/settings.cpp:4191 src/gui/guiConst.cpp:599 src/gui/piano.cpp:63 +msgid "Piano" +msgstr "" + +#: src/gui/settings.cpp:4193 +msgid "Upper key" +msgstr "" + +#: src/gui/settings.cpp:4194 +msgid "Upper key (feedback)" +msgstr "" + +#: src/gui/settings.cpp:4195 +msgid "Upper key (pressed)" +msgstr "" + +#: src/gui/settings.cpp:4196 +msgid "Lower key" +msgstr "" + +#: src/gui/settings.cpp:4197 +msgid "Lower key (feedback)" +msgstr "" + +#: src/gui/settings.cpp:4198 +msgid "Lower key (pressed)" +msgstr "" + +#: src/gui/settings.cpp:4201 src/gui/clock.cpp:31 src/gui/guiConst.cpp:610 +msgid "Clock" +msgstr "" + +#: src/gui/settings.cpp:4202 +msgid "Clock text" +msgstr "" + +#: src/gui/settings.cpp:4203 +msgid "Beat (off)" +msgstr "" + +#: src/gui/settings.cpp:4204 +msgid "Beat (on)" +msgstr "" + +#: src/gui/settings.cpp:4209 +msgid "PortSet" +msgstr "" + +#: src/gui/settings.cpp:4210 +msgid "Port" +msgstr "" + +#: src/gui/settings.cpp:4211 +msgid "Port (hidden/unavailable)" +msgstr "" + +#: src/gui/settings.cpp:4212 +msgid "Connection (selected)" +msgstr "" + +#: src/gui/settings.cpp:4213 +msgid "Connection (other)" +msgstr "" + +#: src/gui/settings.cpp:4219 +msgid "Waveform data" +msgstr "" + +#: src/gui/settings.cpp:4222 +msgid "Reserved" +msgstr "" + +#: src/gui/settings.cpp:4224 +msgid "Sample (alternate 1)" +msgstr "" + +#: src/gui/settings.cpp:4225 +msgid "Sample (alternate 2)" +msgstr "" + +#: src/gui/settings.cpp:4226 +msgid "Sample (alternate 3)" +msgstr "" + +#: src/gui/settings.cpp:4227 +msgid "Wave RAM" +msgstr "" + +#: src/gui/settings.cpp:4228 +msgid "Wavetable (static)" +msgstr "" + +#: src/gui/settings.cpp:4229 +msgid "Echo buffer" +msgstr "" + +#: src/gui/settings.cpp:4230 +msgid "Namco 163 load pos" +msgstr "" + +#: src/gui/settings.cpp:4231 +msgid "Namco 163 play pos" +msgstr "" + +#: src/gui/settings.cpp:4232 +msgid "Sample (bank 0)" +msgstr "" + +#: src/gui/settings.cpp:4233 +msgid "Sample (bank 1)" +msgstr "" + +#: src/gui/settings.cpp:4234 +msgid "Sample (bank 2)" +msgstr "" + +#: src/gui/settings.cpp:4235 +msgid "Sample (bank 3)" +msgstr "" + +#: src/gui/settings.cpp:4236 +msgid "Sample (bank 4)" +msgstr "" + +#: src/gui/settings.cpp:4237 +msgid "Sample (bank 5)" +msgstr "" + +#: src/gui/settings.cpp:4238 +msgid "Sample (bank 6)" +msgstr "" + +#: src/gui/settings.cpp:4239 +msgid "Sample (bank 7)" +msgstr "" + +#: src/gui/settings.cpp:4244 +msgid "Log level: Error" +msgstr "" + +#: src/gui/settings.cpp:4245 +msgid "Log level: Warning" +msgstr "" + +#: src/gui/settings.cpp:4246 +msgid "Log level: Info" +msgstr "" + +#: src/gui/settings.cpp:4247 +msgid "Log level: Debug" +msgstr "" + +#: src/gui/settings.cpp:4248 +msgid "Log level: Trace/Verbose" +msgstr "" + +#: src/gui/settings.cpp:4253 +msgid "Backup" +msgstr "" + +#: src/gui/settings.cpp:4258 +msgid "Enable backup system" +msgstr "" + +#: src/gui/settings.cpp:4263 +msgid "Interval (in seconds)" +msgstr "" + +#: src/gui/settings.cpp:4268 +msgid "Backups per file" +msgstr "" + +#: src/gui/settings.cpp:4274 +msgid "Backup Management" +msgstr "" + +#: src/gui/settings.cpp:4278 +msgid "Purge before:" +msgstr "" + +#: src/gui/settings.cpp:4352 +msgid "Go##PDate" +msgstr "" + +#: src/gui/settings.cpp:4359 +#, c-format +msgid "%PB used" +msgstr "" + +#: src/gui/settings.cpp:4361 +#, c-format +msgid "%TB used" +msgstr "" + +#: src/gui/settings.cpp:4363 +#, c-format +msgid "%GB used" +msgstr "" + +#: src/gui/settings.cpp:4365 +#, c-format +msgid "%MB used" +msgstr "" + +#: src/gui/settings.cpp:4367 +#, c-format +msgid "%KB used" +msgstr "" + +#: src/gui/settings.cpp:4369 +#, c-format +msgid "% bytes used" +msgstr "" + +#: src/gui/settings.cpp:4374 +msgid "Refresh" +msgstr "" + +#: src/gui/settings.cpp:4378 +msgid "Delete all" +msgstr "" + +#: src/gui/settings.cpp:4384 src/gui/settings.cpp:6688 +msgid "Size" +msgstr "" + +#: src/gui/settings.cpp:4385 +msgid "Latest" +msgstr "" + +#: src/gui/settings.cpp:4395 +#, c-format +msgid "%P" +msgstr "" + +#: src/gui/settings.cpp:4397 +#, c-format +msgid "%T" +msgstr "" + +#: src/gui/settings.cpp:4399 +#, c-format +msgid "%G" +msgstr "" + +#: src/gui/settings.cpp:4401 +#, c-format +msgid "%M" +msgstr "" + +#: src/gui/settings.cpp:4403 +#, c-format +msgid "%K" +msgstr "" + +#: src/gui/settings.cpp:4405 +#, c-format +msgid "%" +msgstr "" + +#: src/gui/settings.cpp:4529 +msgid "Cheat Codes" +msgstr "" + +#: src/gui/settings.cpp:4531 +msgid "Enter code:" +msgstr "" + +#: src/gui/settings.cpp:4533 +msgid "Submit" +msgstr "" + +#: src/gui/settings.cpp:4537 +msgid "invalid code" +msgstr "" + +#: src/gui/settings.cpp:4547 +msgid "toggled alternate UI" +msgstr "" + +#: src/gui/settings.cpp:4551 +msgid ":smile: :star_struck: :sunglasses: :ok_hand:" +msgstr "" + +#: src/gui/settings.cpp:4555 +msgid "enabled all instrument types" +msgstr "" + +#: src/gui/settings.cpp:4559 +msgid "OK, if I bring your Partial pitch linearity will you stop bothering me?" +msgstr "" + +#: src/gui/settings.cpp:4563 +msgid "unlocked audio multi-threading options!" +msgstr "" + +#: src/gui/settings.cpp:4567 +msgid "enabled \"comfortable\" mode" +msgstr "" + +#: src/gui/settings.cpp:4585 +msgid "OK##SettingsOK" +msgstr "" + +#: src/gui/settings.cpp:4591 +msgid "Cancel##SettingsCancel" +msgstr "" + +#: src/gui/settings.cpp:4599 +msgid "Apply##SettingsApply" +msgstr "" + +#: src/gui/settings.cpp:5673 +msgid "could not initialize audio!" +msgstr "" + +#: src/gui/settings.cpp:5683 src/gui/gui.cpp:4067 src/gui/gui.cpp:6662 +#: src/gui/gui.cpp:7088 +msgid "error while loading fonts! please check your settings." +msgstr "" + +#: src/gui/settings.cpp:5862 +#, c-format +msgid "error while loading config! (%s)" +msgstr "" + +#: src/gui/settings.cpp:6675 +msgid "[Dir]" +msgstr "" + +#: src/gui/settings.cpp:6676 +msgid "[Link]" +msgstr "" + +#: src/gui/settings.cpp:6677 +#, fuzzy +msgid "[File]" +msgstr "Bestand" + +#: src/gui/settings.cpp:6678 +msgid "Name:" +msgstr "" + +#: src/gui/settings.cpp:6679 +msgid "Path:" +msgstr "" + +#: src/gui/settings.cpp:6680 +msgid "Reset search" +msgstr "" + +#: src/gui/settings.cpp:6681 +msgid "Drives" +msgstr "" + +#: src/gui/settings.cpp:6682 +msgid "" +"Edit path\n" +"You can also right click on path buttons" +msgstr "" + +#: src/gui/settings.cpp:6683 +msgid "Go to home directory" +msgstr "" + +#: src/gui/settings.cpp:6684 +msgid "Go to parent directory" +msgstr "" + +#: src/gui/settings.cpp:6685 +msgid "Create Directory" +msgstr "" + +#: src/gui/settings.cpp:6686 +#, fuzzy +msgid "File name" +msgstr "Bestand" + +#: src/gui/settings.cpp:6689 +msgid "Date" +msgstr "" + +#: src/gui/settings.cpp:6690 src/gui/gui.cpp:5510 src/gui/gui.cpp:5645 +#: src/gui/gui.cpp:5646 +msgid "Warning" +msgstr "" + +#: src/gui/settings.cpp:6691 +msgid "The file you selected already exists! Would you like to overwrite it?" +msgstr "" + +#: src/gui/settings.cpp:6692 src/gui/gui.cpp:5650 src/gui/gui.cpp:5674 +#: src/gui/gui.cpp:5698 src/gui/gui.cpp:5722 src/gui/gui.cpp:5746 +#: src/gui/gui.cpp:5770 src/gui/gui.cpp:5802 src/gui/gui.cpp:5818 +#: src/gui/gui.cpp:5829 src/gui/gui.cpp:5841 src/gui/gui.cpp:5995 +#: src/gui/gui.cpp:6017 src/gui/gui.cpp:6032 src/gui/gui.cpp:6043 +msgid "Yes" +msgstr "" + +#: src/gui/settings.cpp:6693 src/gui/findReplace.cpp:828 src/gui/gui.cpp:5664 +#: src/gui/gui.cpp:5688 src/gui/gui.cpp:5712 src/gui/gui.cpp:5736 +#: src/gui/gui.cpp:5760 src/gui/gui.cpp:5788 src/gui/gui.cpp:5813 +#: src/gui/gui.cpp:5824 src/gui/gui.cpp:5836 src/gui/gui.cpp:5848 +#: src/gui/gui.cpp:6012 src/gui/gui.cpp:6027 src/gui/gui.cpp:6037 +#: src/gui/gui.cpp:6050 +msgid "No" +msgstr "" + +#: src/gui/settings.cpp:6694 +msgid "%Y/%m/%d %H:%M" +msgstr "" + +#: src/gui/orders.cpp:114 +msgid "Add new order" +msgstr "" + +#: src/gui/orders.cpp:125 src/gui/guiConst.cpp:794 +msgid "Remove order" +msgstr "" + +#: src/gui/orders.cpp:137 +msgid "Duplicate order (right-click to deep clone)" +msgstr "" + +#: src/gui/orders.cpp:146 src/gui/guiConst.cpp:795 +msgid "Move order up" +msgstr "" + +#: src/gui/orders.cpp:155 src/gui/guiConst.cpp:796 +msgid "Move order down" +msgstr "" + +#: src/gui/orders.cpp:167 +msgid "Place copy of current order at end of song (right-click to deep clone)" +msgstr "" + +#: src/gui/orders.cpp:177 +msgid "Order change mode: entire row" +msgstr "" + +#: src/gui/orders.cpp:179 +msgid "Order change mode: one" +msgstr "" + +#: src/gui/orders.cpp:205 +msgid "Order edit mode: Select and type (scroll vertically)" +msgstr "" + +#: src/gui/orders.cpp:207 +msgid "Order edit mode: Select and type (scroll horizontally)" +msgstr "" + +#: src/gui/orders.cpp:209 +msgid "Order edit mode: Select and type (don't scroll)" +msgstr "" + +#: src/gui/orders.cpp:211 +msgid "Order edit mode: Click to change" +msgstr "" + +#: src/gui/findReplace.cpp:29 +msgid "ignore" +msgstr "" + +#: src/gui/findReplace.cpp:30 +msgid "equals" +msgstr "" + +#: src/gui/findReplace.cpp:31 +msgid "not equal" +msgstr "" + +#: src/gui/findReplace.cpp:32 +msgid "between" +msgstr "" + +#: src/gui/findReplace.cpp:33 +msgid "not between" +msgstr "" + +#: src/gui/findReplace.cpp:34 +msgid "any" +msgstr "" + +#: src/gui/findReplace.cpp:35 src/gui/guiConst.cpp:217 +msgid "none" +msgstr "" + +#: src/gui/findReplace.cpp:39 +msgid "set" +msgstr "" + +#: src/gui/findReplace.cpp:40 +msgid "add" +msgstr "" + +#: src/gui/findReplace.cpp:41 +msgid "add (overflow)" +msgstr "" + +#: src/gui/findReplace.cpp:42 +msgid "scale %" +msgstr "" + +#: src/gui/findReplace.cpp:512 src/gui/guiConst.cpp:609 +msgid "Find/Replace" +msgstr "" + +#: src/gui/findReplace.cpp:520 src/gui/findReplace.cpp:850 +msgid "Find" +msgstr "" + +#: src/gui/findReplace.cpp:526 src/gui/findReplace.cpp:535 +msgid "order" +msgstr "" + +#: src/gui/findReplace.cpp:527 src/gui/findReplace.cpp:537 +msgid "row" +msgstr "" + +#: src/gui/findReplace.cpp:539 src/gui/csPlayer.cpp:146 +msgid "channel" +msgstr "" + +#: src/gui/findReplace.cpp:541 +msgid "go" +msgstr "" + +#: src/gui/findReplace.cpp:585 +msgid "no matches found!" +msgstr "" + +#: src/gui/findReplace.cpp:587 +msgid "Back" +msgstr "" + +#: src/gui/findReplace.cpp:750 +msgid "Delete query" +msgstr "" + +#: src/gui/findReplace.cpp:754 src/gui/findReplace.cpp:1037 +msgid "Add effect" +msgstr "" + +#: src/gui/findReplace.cpp:761 src/gui/findReplace.cpp:1044 +msgid "Remove effect" +msgstr "" + +#: src/gui/findReplace.cpp:786 +msgid "Search range:" +msgstr "" + +#: src/gui/findReplace.cpp:799 +msgid "Confine to channels" +msgstr "" + +#: src/gui/findReplace.cpp:803 src/gui/sampleEdit.cpp:1152 +msgid "From" +msgstr "" + +#: src/gui/findReplace.cpp:814 src/gui/sampleEdit.cpp:1156 +msgid "To" +msgstr "" + +#: src/gui/findReplace.cpp:826 +msgid "Match effect position:" +msgstr "" + +#: src/gui/findReplace.cpp:832 +msgid "match effects regardless of position." +msgstr "" + +#: src/gui/findReplace.cpp:834 src/gui/compatFlags.cpp:288 +msgid "Lax" +msgstr "" + +#: src/gui/findReplace.cpp:838 +msgid "match effects only if they appear in-order." +msgstr "" + +#: src/gui/findReplace.cpp:840 src/gui/compatFlags.cpp:276 +msgid "Strict" +msgstr "" + +#: src/gui/findReplace.cpp:844 +msgid "match effects only if they appear exactly as specified." +msgstr "" + +#: src/gui/findReplace.cpp:856 +msgid "Replace" +msgstr "" + +#: src/gui/findReplace.cpp:908 +msgid "INVALID" +msgstr "" + +#: src/gui/findReplace.cpp:1052 +msgid "Effect replace mode:" +msgstr "" + +#: src/gui/findReplace.cpp:1053 +msgid "Replace matches only" +msgstr "" + +#: src/gui/findReplace.cpp:1056 +msgid "Replace matches, then free spaces" +msgstr "" + +#: src/gui/findReplace.cpp:1059 +msgid "Clear effects" +msgstr "" + +#: src/gui/findReplace.cpp:1062 +msgid "Insert in free spaces" +msgstr "" + +#: src/gui/findReplace.cpp:1065 +msgid "Replace##QueryReplace" +msgstr "" + +#: src/gui/about.cpp:26 +msgid "is proud to present" +msgstr "" + +#: src/gui/about.cpp:30 +msgid "the biggest multi-system chiptune tracker!" +msgstr "" + +#: src/gui/about.cpp:31 +msgid "featuring DefleMask song compatibility." +msgstr "" + +#: src/gui/about.cpp:33 +msgid "> CREDITS <" +msgstr "" + +#: src/gui/about.cpp:35 +msgid "-- program --" +msgstr "" + +#: src/gui/about.cpp:37 +msgid "A M 4 N (intro tune)" +msgstr "" + +#: src/gui/about.cpp:52 +msgid "-- graphics/UI design --" +msgstr "" + +#: src/gui/about.cpp:59 +msgid "-- documentation --" +msgstr "" + +#: src/gui/about.cpp:69 +msgid "-- localization/translation team --" +msgstr "" + +#: src/gui/about.cpp:81 +msgid "-- demo songs --" +msgstr "" + +#: src/gui/about.cpp:207 +msgid "-- additional feedback/fixes --" +msgstr "" + +#: src/gui/about.cpp:218 +msgid "-- Metal backend test team --" +msgstr "" + +#: src/gui/about.cpp:224 +msgid "-- DirectX 9 backend test team --" +msgstr "" + +#: src/gui/about.cpp:231 +msgid "powered by:" +msgstr "" + +#: src/gui/about.cpp:232 +msgid "Dear ImGui by Omar Cornut" +msgstr "" + +#: src/gui/about.cpp:233 +msgid "SDL2 by Sam Lantinga" +msgstr "" + +#: src/gui/about.cpp:237 +msgid "zlib by Jean-loup Gailly" +msgstr "" + +#: src/gui/about.cpp:238 +msgid "and Mark Adler" +msgstr "" + +#: src/gui/about.cpp:239 +msgid "libsndfile by Erik de Castro Lopo" +msgstr "" + +#: src/gui/about.cpp:240 +msgid "Portable File Dialogs by Sam Hocevar" +msgstr "" + +#: src/gui/about.cpp:241 +msgid "Native File Dialog by Frogtoss Games" +msgstr "" + +#: src/gui/about.cpp:243 +msgid "Weak-JACK by x42" +msgstr "" + +#: src/gui/about.cpp:244 +msgid "RtMidi by Gary P. Scavone" +msgstr "" + +#: src/gui/about.cpp:245 +msgid "FFTW by Matteo Frigo and Steven G. Johnson" +msgstr "" + +#: src/gui/about.cpp:246 +msgid "backward-cpp by Google" +msgstr "" + +#: src/gui/about.cpp:247 +msgid "adpcm by superctr" +msgstr "" + +#: src/gui/about.cpp:248 +msgid "adpcm-xq by David Bryant" +msgstr "" + +#: src/gui/about.cpp:249 +msgid "Nuked-OPL3/OPLL/OPM/OPN2/PSG by nukeykt" +msgstr "" + +#: src/gui/about.cpp:250 +msgid "YM3812-LLE, YMF262-LLE, YMF276-LLE and YM2608-LLE by nukeykt" +msgstr "" + +#: src/gui/about.cpp:251 +msgid "ESFMu (modified version) by Kagamiin~" +msgstr "" + +#: src/gui/about.cpp:252 +msgid "ymfm by Aaron Giles" +msgstr "" + +#: src/gui/about.cpp:253 +msgid "emu2413 by Digital Sound Antiques" +msgstr "" + +#: src/gui/about.cpp:254 +msgid "MAME SN76496 by Nicola Salmoria" +msgstr "" + +#: src/gui/about.cpp:255 +msgid "MAME AY-3-8910 by Couriersud" +msgstr "" + +#: src/gui/about.cpp:256 +msgid "with AY8930 fixes by Eulous, cam900 and Grauw" +msgstr "" + +#: src/gui/about.cpp:257 +msgid "MAME SAA1099 by Juergen Buchmueller and Manuel Abadia" +msgstr "" + +#: src/gui/about.cpp:258 +msgid "MAME Namco WSG by Nicola Salmoria and Aaron Giles" +msgstr "" + +#: src/gui/about.cpp:259 +msgid "MAME RF5C68 core by Olivier Galibert and Aaron Giles" +msgstr "" + +#: src/gui/about.cpp:260 +msgid "MAME MSM5232 core by Jarek Burczynski and Hiromitsu Shioya" +msgstr "" + +#: src/gui/about.cpp:261 +msgid "MAME MSM6258 core by Barry Rodewald" +msgstr "" + +#: src/gui/about.cpp:262 +msgid "MAME YMZ280B core by Aaron Giles" +msgstr "" + +#: src/gui/about.cpp:263 +msgid "MAME GA20 core by Acho A. Tang and R. Belmont" +msgstr "" + +#: src/gui/about.cpp:264 +msgid "MAME SegaPCM core by Hiromitsu Shioya and Olivier Galibert" +msgstr "" + +#: src/gui/about.cpp:265 +msgid "SAASound by Dave Hooper and Simon Owen" +msgstr "" + +#: src/gui/about.cpp:266 +msgid "SameBoy by Lior Halphon" +msgstr "" + +#: src/gui/about.cpp:267 +msgid "Mednafen PCE, WonderSwan, T6W28 and Virtual Boy audio cores" +msgstr "" + +#: src/gui/about.cpp:268 +msgid "SNES DSP core by Blargg" +msgstr "" + +#: src/gui/about.cpp:269 +msgid "puNES (NES, MMC5 and FDS) by FHorse" +msgstr "" + +#: src/gui/about.cpp:270 +msgid "NSFPlay (NES and FDS) by Brad Smith and Brezza" +msgstr "" + +#: src/gui/about.cpp:271 +msgid "reSID by Dag Lem" +msgstr "" + +#: src/gui/about.cpp:272 +msgid "reSIDfp by Dag Lem, Antti Lankila" +msgstr "" + +#: src/gui/about.cpp:273 +msgid "and Leandro Nini" +msgstr "" + +#: src/gui/about.cpp:274 +msgid "dSID by DefleMask Team based on jsSID" +msgstr "" + +#: src/gui/about.cpp:275 +msgid "Stella by Stella Team" +msgstr "" + +#: src/gui/about.cpp:276 +msgid "QSound emulator by superctr and Valley Bell" +msgstr "" + +#: src/gui/about.cpp:277 +msgid "VICE VIC-20 sound core by Rami Rasanen and viznut" +msgstr "" + +#: src/gui/about.cpp:278 +msgid "VICE TED sound core by Andreas Boose, Tibor Biczo" +msgstr "" + +#: src/gui/about.cpp:279 +msgid "and Marco van den Heuvel" +msgstr "" + +#: src/gui/about.cpp:280 +msgid "VERA sound core by Frank van den Hoef" +msgstr "" + +#: src/gui/about.cpp:281 +msgid "mzpokeysnd POKEY emulator by Michael Borisov" +msgstr "" + +#: src/gui/about.cpp:282 +msgid "ASAP POKEY emulator by Piotr Fusik" +msgstr "" + +#: src/gui/about.cpp:283 +msgid "ported by laoo to C++" +msgstr "" + +#: src/gui/about.cpp:284 +msgid "vgsound_emu (second version, modified version) by cam900" +msgstr "" + +#: src/gui/about.cpp:285 +msgid "SM8521 emulator (modified version) by cam900" +msgstr "" + +#: src/gui/about.cpp:286 +msgid "D65010G031 emulator (modified version) by cam900" +msgstr "" + +#: src/gui/about.cpp:287 +msgid "Namco C140/C219 emulator (modified version) by cam900" +msgstr "" + +#: src/gui/about.cpp:288 +msgid "PowerNoise emulator by scratchminer" +msgstr "" + +#: src/gui/about.cpp:289 +msgid "ep128emu by Istvan Varga" +msgstr "" + +#: src/gui/about.cpp:290 +msgid "NDS sound emulator by cam900" +msgstr "" + +#: src/gui/about.cpp:292 +msgid "greetings to:" +msgstr "" + +#: src/gui/about.cpp:295 +msgid "all members of Deflers of Noice!" +msgstr "" + +#: src/gui/about.cpp:301 +msgid "copyright © 2021-2024 tildearrow" +msgstr "" + +#: src/gui/about.cpp:302 +msgid "(and contributors)." +msgstr "" + +#: src/gui/about.cpp:303 +msgid "licensed under GPLv2+! see" +msgstr "" + +#: src/gui/about.cpp:304 +msgid "LICENSE for more information." +msgstr "" + +#: src/gui/about.cpp:306 +#, fuzzy +msgid "help Furnace grow:" +msgstr "Oude Furnace" + +#: src/gui/about.cpp:309 +msgid "contact tildearrow at:" +msgstr "" + +#: src/gui/about.cpp:312 +msgid "disclaimer:" +msgstr "" + +#: src/gui/about.cpp:313 +msgid "despite the fact this program works" +msgstr "" + +#: src/gui/about.cpp:314 +msgid "with the .dmf file format, it is NOT" +msgstr "" + +#: src/gui/about.cpp:315 +msgid "affiliated with Delek or DefleMask in" +msgstr "" + +#: src/gui/about.cpp:316 +msgid "any way, nor it is a replacement for" +msgstr "" + +#: src/gui/about.cpp:317 +msgid "the original program." +msgstr "" + +#: src/gui/about.cpp:319 +msgid "it also comes with ABSOLUTELY NO WARRANTY." +msgstr "" + +#: src/gui/about.cpp:321 +msgid "thanks to all contributors/bug reporters!" +msgstr "" + +#: src/gui/about.cpp:328 +msgid "About Furnace" +msgstr "Over Furnace" + +#: src/gui/about.cpp:418 +msgid "Unsaved changes! Save changes before playing?" +msgstr "" + +#: src/gui/compatFlags.cpp:31 src/gui/guiConst.cpp:598 +msgid "Compatibility Flags" +msgstr "Compatibiliteitsvlaggen" + +#: src/gui/compatFlags.cpp:32 +msgid "" +"these flags are designed to provide better DefleMask/older Furnace " +"compatibility.\n" +"it is recommended to disable most of these unless you rely on specific " +"quirks." +msgstr "" + +#: src/gui/compatFlags.cpp:34 src/gui/compatFlags.cpp:310 +msgid "DefleMask" +msgstr "" + +#: src/gui/compatFlags.cpp:35 +msgid "Limit slide range" +msgstr "" + +#: src/gui/compatFlags.cpp:37 +msgid "" +"when enabled, slides are limited to a compatible range.\n" +"may cause problems with slides in negative octaves." +msgstr "" + +#: src/gui/compatFlags.cpp:39 +msgid "Compatible noise layout on NES and PC Engine" +msgstr "" + +#: src/gui/compatFlags.cpp:41 +msgid "" +"use a rather unusual compatible noise frequency layout.\n" +"removes some noise frequencies on PC Engine." +msgstr "" + +#: src/gui/compatFlags.cpp:43 +msgid "Game Boy instrument duty is wave volume" +msgstr "" + +#: src/gui/compatFlags.cpp:45 +msgid "" +"if enabled, an instrument with duty macro in the wave channel will be mapped " +"to wavetable volume." +msgstr "" + +#: src/gui/compatFlags.cpp:48 +msgid "Restart macro on portamento" +msgstr "" + +#: src/gui/compatFlags.cpp:50 +msgid "" +"when enabled, a portamento effect will reset the channel's macro if used in " +"combination with a note." +msgstr "" + +#: src/gui/compatFlags.cpp:52 +msgid "Legacy volume slides" +msgstr "" + +#: src/gui/compatFlags.cpp:54 +msgid "" +"simulate glitchy volume slide behavior by silently overflowing the volume " +"when the slide goes below 0." +msgstr "" + +#: src/gui/compatFlags.cpp:56 +msgid "Compatible arpeggio" +msgstr "" + +#: src/gui/compatFlags.cpp:58 +msgid "delay arpeggio by one tick on every new note." +msgstr "" + +#: src/gui/compatFlags.cpp:60 +msgid "Disable DAC when sample ends" +msgstr "" + +#: src/gui/compatFlags.cpp:62 +msgid "" +"when enabled, the DAC in YM2612 will be disabled if there isn't any sample " +"playing." +msgstr "" + +#: src/gui/compatFlags.cpp:64 +msgid "Broken speed alternation" +msgstr "" + +#: src/gui/compatFlags.cpp:66 +msgid "" +"determines next speed based on whether the row is odd/even instead of " +"alternating between speeds." +msgstr "" + +#: src/gui/compatFlags.cpp:68 +msgid "Ignore duplicate slide effects" +msgstr "" + +#: src/gui/compatFlags.cpp:70 +msgid "" +"if this is on, only the first slide of a row in a channel will be considered." +msgstr "" + +#: src/gui/compatFlags.cpp:72 +msgid "Ignore 0Dxx on the last order" +msgstr "" + +#: src/gui/compatFlags.cpp:74 +msgid "" +"if this is on, a jump to next row effect will not take place when it is on " +"the last order of a song." +msgstr "" + +#: src/gui/compatFlags.cpp:76 +msgid "Buggy portamento after pitch slide" +msgstr "" + +#: src/gui/compatFlags.cpp:78 +msgid "simulates a bug in where portamento does not work after sliding." +msgstr "" + +#: src/gui/compatFlags.cpp:80 +msgid "FM pitch slide octave boundary odd behavior" +msgstr "" + +#: src/gui/compatFlags.cpp:82 +msgid "" +"if this is on, a pitch slide that crosses the octave boundary will stop for " +"one tick and then continue from the nearest octave boundary.\n" +"for .dmf compatibility." +msgstr "" + +#: src/gui/compatFlags.cpp:84 +msgid "Don't apply Game Boy envelope on note-less instrument change" +msgstr "" + +#: src/gui/compatFlags.cpp:86 +msgid "if this is on, an instrument change will not affect the envelope." +msgstr "" + +#: src/gui/compatFlags.cpp:88 +msgid "Ignore DAC mode change outside of intended channel in ExtCh mode" +msgstr "" + +#: src/gui/compatFlags.cpp:90 +msgid "if this is on, 17xx has no effect on the operator channels in YM2612." +msgstr "" + +#: src/gui/compatFlags.cpp:92 +msgid "E1xy/E2xy also take priority over slide stops" +msgstr "" + +#: src/gui/compatFlags.cpp:94 +msgid "does this make any sense by now?" +msgstr "" + +#: src/gui/compatFlags.cpp:96 +msgid "E1xy/E2xy stop when repeating the same note" +msgstr "" + +#: src/gui/compatFlags.cpp:98 +msgid "ugh, if only this wasn't a thing..." +msgstr "" + +#: src/gui/compatFlags.cpp:100 +msgid "SN76489 duty macro always resets phase" +msgstr "" + +#: src/gui/compatFlags.cpp:102 +msgid "" +"when enabled, duty macro will always reset phase, even if its value hasn't " +"changed." +msgstr "" + +#: src/gui/compatFlags.cpp:104 +msgid "Broken volume scaling strategy" +msgstr "" + +#: src/gui/compatFlags.cpp:106 +msgid "" +"when enabled:\n" +"- log scaling: multiply\n" +"- linear scaling: subtract\n" +"when disabled:\n" +"- log scaling: subtract\n" +"- linear scaling: multiply" +msgstr "" + +#: src/gui/compatFlags.cpp:108 +msgid "Don't persist volume macro after it finishes" +msgstr "" + +#: src/gui/compatFlags.cpp:110 +msgid "" +"when enabled, a value in the volume column that happens after the volume " +"macro is done will disregard the macro." +msgstr "" + +#: src/gui/compatFlags.cpp:112 +msgid "Broken output volume on instrument change" +msgstr "Defect uitvoersvolume bij verandering van instrument" + +#: src/gui/compatFlags.cpp:114 +msgid "" +"if enabled, no checks for the presence of a volume macro will be made.\n" +"this will cause the last macro value to linger unless a value in the volume " +"column is present." +msgstr "" + +#: src/gui/compatFlags.cpp:116 +msgid "Broken output volume - Episode 2 (PLEASE KEEP ME DISABLED)" +msgstr "Defect uitvoersvolume - deel 2 (UITGESCHAKELD HOUDEN)" + +#: src/gui/compatFlags.cpp:118 +msgid "" +"these compatibility flags are getting SO damn ridiculous and out of " +"control.\n" +"as you may have guessed, this one exists due to yet ANOTHER DefleMask-" +"specific behavior.\n" +"please keep this off at all costs, because I will not support it when ROM " +"export comes.\n" +"oh, and don't start an argument out of it. Furnace isn't a DefleMask " +"replacement, and no,\n" +"I am not trying to make it look like one with all these flags.\n" +"\n" +"oh, and what about the other flags that don't have to do with DefleMask?\n" +"those are for .mod import, future FamiTracker import and personal taste!\n" +"\n" +"end of rant" +msgstr "" +"niet gebruiken. defect DefleMask NES driehoek volume gedrag.\n" +"Noot van de vertaler: tildearrow ranted in het engels en ik wilde het niet " +"vertalen,\n" +"dus ik zei wat het doet" + +#: src/gui/compatFlags.cpp:120 +msgid "Treat SN76489 periods under 8 as 1" +msgstr "" + +#: src/gui/compatFlags.cpp:122 +msgid "" +"when enabled, any SN period under 8 will be written as 1 instead.\n" +"this replicates DefleMask behavior, but reduces available period range." +msgstr "" + +#: src/gui/compatFlags.cpp:126 src/gui/compatFlags.cpp:304 +msgid "Old Furnace" +msgstr "Oude Furnace" + +#: src/gui/compatFlags.cpp:127 +msgid "Arpeggio inhibits non-porta slides" +msgstr "" + +#: src/gui/compatFlags.cpp:129 src/gui/compatFlags.cpp:133 +msgid "behavior changed in 0.5.5" +msgstr "" + +#: src/gui/compatFlags.cpp:131 +msgid "Wack FM algorithm macro" +msgstr "" + +#: src/gui/compatFlags.cpp:135 +msgid "Broken shortcut slides (E1xy/E2xy)" +msgstr "" + +#: src/gui/compatFlags.cpp:137 +msgid "behavior changed in 0.5.7" +msgstr "" + +#: src/gui/compatFlags.cpp:139 +msgid "Stop portamento on note off" +msgstr "" + +#: src/gui/compatFlags.cpp:141 src/gui/compatFlags.cpp:145 +#: src/gui/compatFlags.cpp:149 src/gui/compatFlags.cpp:153 +#: src/gui/compatFlags.cpp:157 src/gui/compatFlags.cpp:161 +#: src/gui/compatFlags.cpp:165 +msgid "behavior changed in 0.6pre1" +msgstr "" + +#: src/gui/compatFlags.cpp:143 +msgid "Don't allow instrument change during slides" +msgstr "" + +#: src/gui/compatFlags.cpp:147 +msgid "Don't reset note to base on arpeggio stop" +msgstr "" + +#: src/gui/compatFlags.cpp:151 +msgid "ExtCh channel status is not shared among operators" +msgstr "" + +#: src/gui/compatFlags.cpp:155 +msgid "Disable new SegaPCM features (macros and better panning)" +msgstr "" + +#: src/gui/compatFlags.cpp:159 +msgid "Old FM octave boundary behavior" +msgstr "" + +#: src/gui/compatFlags.cpp:163 +msgid "Disable OPN2 DAC volume control" +msgstr "" + +#: src/gui/compatFlags.cpp:167 +msgid "Broken initial position of portamento after arpeggio" +msgstr "" + +#: src/gui/compatFlags.cpp:169 +msgid "behavior changed in 0.6pre1.5" +msgstr "" + +#: src/gui/compatFlags.cpp:171 +msgid "Disable new sample features" +msgstr "" + +#: src/gui/compatFlags.cpp:173 src/gui/compatFlags.cpp:177 +msgid "behavior changed in 0.6pre2" +msgstr "" + +#: src/gui/compatFlags.cpp:175 +msgid "Old arpeggio macro + pitch slide strategy" +msgstr "" + +#: src/gui/compatFlags.cpp:179 +msgid "Broken portamento during legato" +msgstr "" + +#: src/gui/compatFlags.cpp:181 +msgid "behavior changed in 0.6pre4" +msgstr "" + +#: src/gui/compatFlags.cpp:183 +msgid "Broken macros in some FM chips after note off" +msgstr "" + +#: src/gui/compatFlags.cpp:185 +msgid "behavior changed in 0.6pre5" +msgstr "" + +#: src/gui/compatFlags.cpp:187 +msgid "Pre-note does not take effects into consideration" +msgstr "" + +#: src/gui/compatFlags.cpp:189 +msgid "behavior changed in 0.6pre9" +msgstr "" + +#: src/gui/compatFlags.cpp:191 +msgid "Disable new NES DPCM features" +msgstr "" + +#: src/gui/compatFlags.cpp:193 +msgid "behavior changed in 0.6.1" +msgstr "" + +#: src/gui/compatFlags.cpp:195 +msgid "Legacy technical ALWAYS_SET_VOLUME behavior" +msgstr "" + +#: src/gui/compatFlags.cpp:197 +msgid "" +"behavior changed in 0.6.1\n" +"this flag will be removed if I find out that none of the songs break after " +"disabling it." +msgstr "" + +#: src/gui/compatFlags.cpp:199 +msgid "Old sample offset effect" +msgstr "" + +#: src/gui/compatFlags.cpp:201 +msgid "behavior changed in 0.6.3" +msgstr "" + +#: src/gui/compatFlags.cpp:205 +msgid ".mod import" +msgstr "" + +#: src/gui/compatFlags.cpp:206 +msgid "Don't slide on the first tick of a row" +msgstr "" + +#: src/gui/compatFlags.cpp:208 +msgid "" +"simulates ProTracker's behavior of not applying volume/pitch slides on the " +"first tick of a row." +msgstr "" + +#: src/gui/compatFlags.cpp:210 +msgid "Reset arpeggio position on row change" +msgstr "" + +#: src/gui/compatFlags.cpp:212 +msgid "" +"simulates ProTracker's behavior of arpeggio being bound to the current tick " +"of a row." +msgstr "" + +#: src/gui/compatFlags.cpp:216 +msgid "Pitch/Playback" +msgstr "" + +#: src/gui/compatFlags.cpp:217 +msgid "Pitch linearity:" +msgstr "" + +#: src/gui/compatFlags.cpp:223 +msgid "like ProTracker/FamiTracker" +msgstr "" + +#: src/gui/compatFlags.cpp:227 +msgid "Partial (only 04xy/E5xx)" +msgstr "" + +#: src/gui/compatFlags.cpp:231 +msgid "" +"like DefleMask\n" +"\n" +"this pitch linearity mode is deprecated due to:\n" +"- excessive complexity\n" +"- lack of possible optimization\n" +"\n" +"it is recommended to change it now because I will remove this option in the " +"future!" +msgstr "" + +#: src/gui/compatFlags.cpp:235 +msgid "Full" +msgstr "" + +#: src/gui/compatFlags.cpp:239 +msgid "like Impulse Tracker" +msgstr "" + +#: src/gui/compatFlags.cpp:246 +msgid "Pitch slide speed multiplier" +msgstr "" + +#: src/gui/compatFlags.cpp:252 +msgid "Loop modality:" +msgstr "" + +#: src/gui/compatFlags.cpp:254 +msgid "Reset channels" +msgstr "" + +#: src/gui/compatFlags.cpp:258 +msgid "" +"select to reset channels on loop. may trigger a voltage click on every loop!" +msgstr "" + +#: src/gui/compatFlags.cpp:260 +msgid "Soft reset channels" +msgstr "" + +#: src/gui/compatFlags.cpp:264 +msgid "select to turn channels off on loop." +msgstr "" + +#: src/gui/compatFlags.cpp:266 +msgid "Do nothing" +msgstr "Niets doen" + +#: src/gui/compatFlags.cpp:270 +msgid "select to not reset channels on loop." +msgstr "" + +#: src/gui/compatFlags.cpp:274 +msgid "Cut/delay effect policy:" +msgstr "" + +#: src/gui/compatFlags.cpp:280 +msgid "only when time is less than speed (like DefleMask/ProTracker)" +msgstr "" + +#: src/gui/compatFlags.cpp:282 +msgid "Strict (old)" +msgstr "" + +#: src/gui/compatFlags.cpp:286 +msgid "only when time is less than or equal to speed (original buggy behavior)" +msgstr "" + +#: src/gui/compatFlags.cpp:292 +msgid "no checks" +msgstr "" + +#: src/gui/compatFlags.cpp:296 +msgid "Simultaneous jump (0B+0D) treatment:" +msgstr "" + +#: src/gui/compatFlags.cpp:302 +msgid "accept 0B+0D to jump to a specific row of an order" +msgstr "" + +#: src/gui/compatFlags.cpp:308 +msgid "only accept the first jump effect" +msgstr "" + +#: src/gui/compatFlags.cpp:314 +msgid "only accept 0Dxx" +msgstr "" + +#: src/gui/compatFlags.cpp:320 +msgid "Auto-insert one tick gap between notes" +msgstr "" + +#: src/gui/compatFlags.cpp:322 +msgid "" +"when enabled, a one-tick note cut will be inserted between non-legato/non-" +"portamento notes.\n" +"this simulates the behavior of some Amiga/SNES music engines.\n" +"\n" +"ineffective on C64." +msgstr "" + +#: src/gui/compatFlags.cpp:327 +msgid "Don't reset slides after note off" +msgstr "" + +#: src/gui/compatFlags.cpp:329 +msgid "when enabled, note off will not reset the channel's slide effect." +msgstr "" + +#: src/gui/compatFlags.cpp:331 +msgid "Don't reset portamento after reaching target" +msgstr "" + +#: src/gui/compatFlags.cpp:333 +msgid "" +"when enabled, the slide effect will not be disabled after it reaches its " +"target." +msgstr "" + +#: src/gui/compatFlags.cpp:335 +msgid "Continuous vibrato" +msgstr "" + +#: src/gui/compatFlags.cpp:337 +msgid "when enabled, vibrato phase/position will not be reset on a new note." +msgstr "" + +#: src/gui/compatFlags.cpp:339 +msgid "Pitch macro is not linear" +msgstr "" + +#: src/gui/compatFlags.cpp:341 +msgid "" +"when enabled, the pitch macro of an instrument is in frequency/period space." +msgstr "" + +#: src/gui/compatFlags.cpp:343 +msgid "Reset arpeggio effect position on new note" +msgstr "" + +#: src/gui/compatFlags.cpp:345 +msgid "when enabled, arpeggio effect (00xy) position is reset on a new note." +msgstr "" + +#: src/gui/compatFlags.cpp:347 +msgid "Volume scaling rounds up" +msgstr "" + +#: src/gui/compatFlags.cpp:349 +msgid "" +"when enabled, volume macros round up when applied\n" +"this prevents volume scaling from causing vol=0, which is silent on some " +"chips\n" +"\n" +"ineffective on logarithmic channels" +msgstr "" + +#: src/gui/guiConst.cpp:127 +msgid "Generic Sample" +msgstr "" + +#: src/gui/guiConst.cpp:155 +msgid "OPL (drums)" +msgstr "" + +#: src/gui/guiConst.cpp:191 +msgid "Forward" +msgstr "" + +#: src/gui/guiConst.cpp:192 +msgid "Backward" +msgstr "" + +#: src/gui/guiConst.cpp:193 +msgid "Ping pong" +msgstr "" + +#: src/gui/guiConst.cpp:218 +msgid "linear" +msgstr "" + +#: src/gui/guiConst.cpp:219 +msgid "cubic spline" +msgstr "" + +#: src/gui/guiConst.cpp:220 +msgid "blep synthesis" +msgstr "" + +#: src/gui/guiConst.cpp:221 +msgid "sinc" +msgstr "" + +#: src/gui/guiConst.cpp:222 +msgid "best possible" +msgstr "" + +#: src/gui/guiConst.cpp:226 src/gui/sampleEdit.cpp:137 +#: src/gui/sampleEdit.cpp:143 +msgid "Invalid" +msgstr "" + +#: src/gui/guiConst.cpp:231 +msgid "Time" +msgstr "" + +#: src/gui/guiConst.cpp:233 +msgid "System (Primary)" +msgstr "" + +#: src/gui/guiConst.cpp:234 +msgid "System (Secondary)" +msgstr "" + +#: src/gui/guiConst.cpp:530 +msgid "---Global" +msgstr "" + +#: src/gui/guiConst.cpp:532 +msgid "Open file" +msgstr "Open bestand" + +#: src/gui/guiConst.cpp:533 +msgid "Restore backup" +msgstr "" + +#: src/gui/guiConst.cpp:534 +msgid "Save file" +msgstr "Opslaan bestand" + +#: src/gui/guiConst.cpp:535 +msgid "Save as" +msgstr "Opslaan als" + +#: src/gui/guiConst.cpp:537 src/gui/sampleEdit.cpp:982 +msgid "Undo" +msgstr "" + +#: src/gui/guiConst.cpp:539 src/gui/guiConst.cpp:541 src/gui/sampleEdit.cpp:989 +msgid "Redo" +msgstr "" + +#: src/gui/guiConst.cpp:543 +msgid "Exit" +msgstr "Afsluiten" + +#: src/gui/guiConst.cpp:544 +msgid "Play/Stop (toggle)" +msgstr "" + +#: src/gui/guiConst.cpp:547 +msgid "Play (from beginning)" +msgstr "" + +#: src/gui/guiConst.cpp:548 +msgid "Play (repeat pattern)" +msgstr "" + +#: src/gui/guiConst.cpp:549 +msgid "Play from cursor" +msgstr "" + +#: src/gui/guiConst.cpp:550 +msgid "Step row" +msgstr "" + +#: src/gui/guiConst.cpp:551 +msgid "Octave up" +msgstr "" + +#: src/gui/guiConst.cpp:552 +msgid "Octave down" +msgstr "" + +#: src/gui/guiConst.cpp:553 +msgid "Previous instrument" +msgstr "" + +#: src/gui/guiConst.cpp:554 +msgid "Next instrument" +msgstr "" + +#: src/gui/guiConst.cpp:555 +msgid "Increase edit step" +msgstr "" + +#: src/gui/guiConst.cpp:556 +msgid "Decrease edit step" +msgstr "" + +#: src/gui/guiConst.cpp:557 +msgid "Toggle edit mode" +msgstr "" + +#: src/gui/guiConst.cpp:559 +msgid "Toggle repeat pattern" +msgstr "" + +#: src/gui/guiConst.cpp:562 +msgid "Toggle full-screen" +msgstr "" + +#: src/gui/guiConst.cpp:563 +msgid "Request voice from TX81Z" +msgstr "" + +#: src/gui/guiConst.cpp:565 +msgid "Clear song data" +msgstr "" + +#: src/gui/guiConst.cpp:567 src/gui/gui.cpp:5573 src/gui/gui.cpp:5625 +msgid "Command Palette" +msgstr "" + +#: src/gui/guiConst.cpp:569 +msgid "Recent files (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:570 +msgid "Instruments (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:571 +msgid "Samples (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:572 +msgid "Change instrument (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:573 +msgid "Add chip (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:578 +msgid "Instrument List" +msgstr "" + +#: src/gui/guiConst.cpp:579 src/gui/insEdit.cpp:5203 +msgid "Instrument Editor" +msgstr "" + +#: src/gui/guiConst.cpp:580 +msgid "Song Information" +msgstr "" + +#: src/gui/guiConst.cpp:583 +msgid "Wavetable List" +msgstr "" + +#: src/gui/guiConst.cpp:584 src/gui/waveEdit.cpp:409 +msgid "Wavetable Editor" +msgstr "" + +#: src/gui/guiConst.cpp:585 +msgid "Sample List" +msgstr "" + +#: src/gui/guiConst.cpp:594 +msgid "Debug Menu" +msgstr "" + +#: src/gui/guiConst.cpp:595 +msgid "Oscilloscope (master)" +msgstr "" + +#: src/gui/guiConst.cpp:603 src/gui/sysManager.cpp:41 +msgid "Chip Manager" +msgstr "Chipbeheer" + +#: src/gui/guiConst.cpp:614 src/gui/csPlayer.cpp:112 +msgid "Command Stream Player" +msgstr "" + +#: src/gui/guiConst.cpp:615 +msgid "User Presets" +msgstr "" + +#: src/gui/guiConst.cpp:617 +msgid "Collapse/expand current window" +msgstr "" + +#: src/gui/guiConst.cpp:618 +msgid "Close current window" +msgstr "" + +#: src/gui/guiConst.cpp:621 +msgid "---Pattern" +msgstr "" + +#: src/gui/guiConst.cpp:622 +msgid "Transpose (+1)" +msgstr "" + +#: src/gui/guiConst.cpp:623 +msgid "Transpose (-1)" +msgstr "" + +#: src/gui/guiConst.cpp:624 +msgid "Transpose (+1 octave)" +msgstr "" + +#: src/gui/guiConst.cpp:625 +msgid "Transpose (-1 octave)" +msgstr "" + +#: src/gui/guiConst.cpp:626 +msgid "Increase values (+1)" +msgstr "" + +#: src/gui/guiConst.cpp:627 +msgid "Increase values (-1)" +msgstr "" + +#: src/gui/guiConst.cpp:628 +msgid "Increase values (+16)" +msgstr "" + +#: src/gui/guiConst.cpp:629 +msgid "Increase values (-16)" +msgstr "" + +#: src/gui/guiConst.cpp:630 +msgid "Select all" +msgstr "" + +#: src/gui/guiConst.cpp:631 +msgid "Cut" +msgstr "" + +#: src/gui/guiConst.cpp:632 +msgid "Copy" +msgstr "" + +#: src/gui/guiConst.cpp:633 +msgid "Paste" +msgstr "" + +#: src/gui/guiConst.cpp:634 +msgid "Paste Mix (foreground)" +msgstr "" + +#: src/gui/guiConst.cpp:635 +msgid "Paste Mix (background)" +msgstr "" + +#: src/gui/guiConst.cpp:636 +msgid "Paste Flood" +msgstr "" + +#: src/gui/guiConst.cpp:637 +msgid "Paste Overflow" +msgstr "" + +#: src/gui/guiConst.cpp:638 +msgid "Move cursor up" +msgstr "" + +#: src/gui/guiConst.cpp:639 +msgid "Move cursor down" +msgstr "" + +#: src/gui/guiConst.cpp:640 +msgid "Move cursor left" +msgstr "" + +#: src/gui/guiConst.cpp:641 +msgid "Move cursor right" +msgstr "" + +#: src/gui/guiConst.cpp:642 +msgid "Move cursor up by one (override Edit Step)" +msgstr "" + +#: src/gui/guiConst.cpp:643 +msgid "Move cursor down by one (override Edit Step)" +msgstr "" + +#: src/gui/guiConst.cpp:644 +msgid "Move cursor to previous channel" +msgstr "" + +#: src/gui/guiConst.cpp:645 +msgid "Move cursor to next channel" +msgstr "" + +#: src/gui/guiConst.cpp:646 +msgid "Move cursor to next channel (overflow)" +msgstr "" + +#: src/gui/guiConst.cpp:647 +msgid "Move cursor to previous channel (overflow)" +msgstr "" + +#: src/gui/guiConst.cpp:648 +msgid "Move cursor to beginning of pattern" +msgstr "" + +#: src/gui/guiConst.cpp:649 +msgid "Move cursor to end of pattern" +msgstr "" + +#: src/gui/guiConst.cpp:650 +msgid "Move cursor up (coarse)" +msgstr "" + +#: src/gui/guiConst.cpp:651 +msgid "Move cursor down (coarse)" +msgstr "" + +#: src/gui/guiConst.cpp:652 +msgid "Expand selection upwards" +msgstr "" + +#: src/gui/guiConst.cpp:653 +msgid "Expand selection downwards" +msgstr "" + +#: src/gui/guiConst.cpp:654 +msgid "Expand selection to the left" +msgstr "" + +#: src/gui/guiConst.cpp:655 +msgid "Expand selection to the right" +msgstr "" + +#: src/gui/guiConst.cpp:656 +msgid "Expand selection upwards by one (override Edit Step)" +msgstr "" + +#: src/gui/guiConst.cpp:657 +msgid "Expand selection downwards by one (override Edit Step)" +msgstr "" + +#: src/gui/guiConst.cpp:658 +msgid "Expand selection to beginning of pattern" +msgstr "" + +#: src/gui/guiConst.cpp:659 +msgid "Expand selection to end of pattern" +msgstr "" + +#: src/gui/guiConst.cpp:660 +msgid "Expand selection upwards (coarse)" +msgstr "" + +#: src/gui/guiConst.cpp:661 +msgid "Expand selection downwards (coarse)" +msgstr "" + +#: src/gui/guiConst.cpp:662 +msgid "Move selection up" +msgstr "" + +#: src/gui/guiConst.cpp:663 +msgid "Move selection down" +msgstr "" + +#: src/gui/guiConst.cpp:664 +msgid "Move selection to previous channel" +msgstr "" + +#: src/gui/guiConst.cpp:665 +msgid "Move selection to next channel" +msgstr "" + +#: src/gui/guiConst.cpp:667 +msgid "Pull delete" +msgstr "" + +#: src/gui/guiConst.cpp:668 +msgid "Insert" +msgstr "" + +#: src/gui/guiConst.cpp:669 +msgid "Mute channel at cursor" +msgstr "" + +#: src/gui/guiConst.cpp:670 +msgid "Solo channel at cursor" +msgstr "" + +#: src/gui/guiConst.cpp:671 +msgid "Unmute all channels" +msgstr "" + +#: src/gui/guiConst.cpp:672 +msgid "Go to next order" +msgstr "" + +#: src/gui/guiConst.cpp:673 +msgid "Go to previous order" +msgstr "" + +#: src/gui/guiConst.cpp:674 +msgid "Collapse channel at cursor" +msgstr "" + +#: src/gui/guiConst.cpp:675 +msgid "Increase effect columns" +msgstr "" + +#: src/gui/guiConst.cpp:676 +msgid "Decrease effect columns" +msgstr "" + +#: src/gui/guiConst.cpp:677 +msgid "Interpolate" +msgstr "" + +#: src/gui/guiConst.cpp:678 src/gui/insEdit.cpp:530 +msgid "Fade" +msgstr "" + +#: src/gui/guiConst.cpp:679 +msgid "Invert values" +msgstr "" + +#: src/gui/guiConst.cpp:680 +msgid "Flip selection" +msgstr "" + +#: src/gui/guiConst.cpp:681 +msgid "Collapse rows" +msgstr "" + +#: src/gui/guiConst.cpp:682 +msgid "Expand rows" +msgstr "" + +#: src/gui/guiConst.cpp:683 +msgid "Collapse pattern" +msgstr "" + +#: src/gui/guiConst.cpp:684 +msgid "Expand pattern" +msgstr "" + +#: src/gui/guiConst.cpp:685 +msgid "Collapse song" +msgstr "" + +#: src/gui/guiConst.cpp:686 +msgid "Expand song" +msgstr "" + +#: src/gui/guiConst.cpp:687 +msgid "Set note input latch" +msgstr "" + +#: src/gui/guiConst.cpp:688 +msgid "Change mobile scroll mode" +msgstr "" + +#: src/gui/guiConst.cpp:689 +msgid "Clear note input latch" +msgstr "" + +#: src/gui/guiConst.cpp:692 +msgid "---Instrument list" +msgstr "" + +#: src/gui/guiConst.cpp:693 +msgid "Add instrument" +msgstr "" + +#: src/gui/guiConst.cpp:694 +msgid "Duplicate instrument" +msgstr "" + +#: src/gui/guiConst.cpp:695 +msgid "Open instrument" +msgstr "" + +#: src/gui/guiConst.cpp:696 +msgid "Open instrument (replace current)" +msgstr "" + +#: src/gui/guiConst.cpp:697 +msgid "Save instrument" +msgstr "" + +#: src/gui/guiConst.cpp:698 +msgid "Save instrument (.dmp)" +msgstr "" + +#: src/gui/guiConst.cpp:699 +msgid "Move instrument up in list" +msgstr "" + +#: src/gui/guiConst.cpp:700 +msgid "Move instrument down in list" +msgstr "" + +#: src/gui/guiConst.cpp:701 +msgid "Delete instrument" +msgstr "" + +#: src/gui/guiConst.cpp:702 +msgid "Edit instrument" +msgstr "" + +#: src/gui/guiConst.cpp:703 +msgid "Instrument cursor up" +msgstr "" + +#: src/gui/guiConst.cpp:704 +msgid "Instrument cursor down" +msgstr "" + +#: src/gui/guiConst.cpp:705 +msgid "Instruments: toggle folders/standard view" +msgstr "" + +#: src/gui/guiConst.cpp:708 +msgid "---Wavetable list" +msgstr "" + +#: src/gui/guiConst.cpp:709 +msgid "Add wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:710 +msgid "Duplicate wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:711 +msgid "Open wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:712 +msgid "Open wavetable (replace current)" +msgstr "" + +#: src/gui/guiConst.cpp:713 +msgid "Save wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:714 +msgid "Save wavetable (.dmw)" +msgstr "" + +#: src/gui/guiConst.cpp:715 +msgid "Save wavetable (raw)" +msgstr "" + +#: src/gui/guiConst.cpp:716 +msgid "Move wavetable up in list" +msgstr "" + +#: src/gui/guiConst.cpp:717 +msgid "Move wavetable down in list" +msgstr "" + +#: src/gui/guiConst.cpp:718 +msgid "Delete wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:719 +msgid "Edit wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:720 +msgid "Wavetable cursor up" +msgstr "" + +#: src/gui/guiConst.cpp:721 +msgid "Wavetable cursor down" +msgstr "" + +#: src/gui/guiConst.cpp:722 +msgid "Wavetables: toggle folders/standard view" +msgstr "" + +#: src/gui/guiConst.cpp:725 +msgid "---Sample list" +msgstr "" + +#: src/gui/guiConst.cpp:726 +msgid "Add sample" +msgstr "" + +#: src/gui/guiConst.cpp:727 +msgid "Duplicate sample" +msgstr "" + +#: src/gui/guiConst.cpp:728 +msgid "Open sample" +msgstr "" + +#: src/gui/guiConst.cpp:729 +msgid "Open sample (replace current)" +msgstr "" + +#: src/gui/guiConst.cpp:730 +msgid "Import raw sample data" +msgstr "" + +#: src/gui/guiConst.cpp:731 +msgid "Import raw sample data (replace current)" +msgstr "" + +#: src/gui/guiConst.cpp:732 +msgid "Save sample" +msgstr "" + +#: src/gui/guiConst.cpp:733 +msgid "Save sample (raw)" +msgstr "" + +#: src/gui/guiConst.cpp:734 +msgid "Move sample up in list" +msgstr "" + +#: src/gui/guiConst.cpp:735 +msgid "Move sample down in list" +msgstr "" + +#: src/gui/guiConst.cpp:736 +msgid "Delete sample" +msgstr "" + +#: src/gui/guiConst.cpp:737 +msgid "Edit sample" +msgstr "" + +#: src/gui/guiConst.cpp:738 +msgid "Sample cursor up" +msgstr "" + +#: src/gui/guiConst.cpp:739 +msgid "Sample cursor down" +msgstr "" + +#: src/gui/guiConst.cpp:741 src/gui/sampleEdit.cpp:1339 +msgid "Stop sample preview" +msgstr "" + +#: src/gui/guiConst.cpp:742 +msgid "Samples: Toggle folders/standard view" +msgstr "" + +#: src/gui/guiConst.cpp:743 +msgid "Samples: Make me a drum kit" +msgstr "" + +#: src/gui/guiConst.cpp:746 +msgid "---Sample editor" +msgstr "" + +#: src/gui/guiConst.cpp:747 +msgid "Sample editor mode: Select" +msgstr "" + +#: src/gui/guiConst.cpp:748 +msgid "Sample editor mode: Draw" +msgstr "" + +#: src/gui/guiConst.cpp:749 +msgid "Sample editor: Cut" +msgstr "" + +#: src/gui/guiConst.cpp:750 +msgid "Sample editor: Copy" +msgstr "" + +#: src/gui/guiConst.cpp:751 +msgid "Sample editor: Paste" +msgstr "" + +#: src/gui/guiConst.cpp:752 +msgid "Sample editor: Paste replace" +msgstr "" + +#: src/gui/guiConst.cpp:753 +msgid "Sample editor: Paste mix" +msgstr "" + +#: src/gui/guiConst.cpp:754 +msgid "Sample editor: Select all" +msgstr "" + +#: src/gui/guiConst.cpp:755 +msgid "Sample editor: Resize" +msgstr "" + +#: src/gui/guiConst.cpp:756 +msgid "Sample editor: Resample" +msgstr "" + +#: src/gui/guiConst.cpp:757 +msgid "Sample editor: Amplify" +msgstr "" + +#: src/gui/guiConst.cpp:758 +msgid "Sample editor: Normalize" +msgstr "" + +#: src/gui/guiConst.cpp:759 +msgid "Sample editor: Fade in" +msgstr "" + +#: src/gui/guiConst.cpp:760 +msgid "Sample editor: Fade out" +msgstr "" + +#: src/gui/guiConst.cpp:761 +msgid "Sample editor: Apply silence" +msgstr "" + +#: src/gui/guiConst.cpp:762 +msgid "Sample editor: Insert silence" +msgstr "" + +#: src/gui/guiConst.cpp:763 +msgid "Sample editor: Delete" +msgstr "" + +#: src/gui/guiConst.cpp:764 +msgid "Sample editor: Trim" +msgstr "" + +#: src/gui/guiConst.cpp:765 +msgid "Sample editor: Reverse" +msgstr "" + +#: src/gui/guiConst.cpp:766 +msgid "Sample editor: Invert" +msgstr "" + +#: src/gui/guiConst.cpp:767 +msgid "Sample editor: Signed/unsigned exchange" +msgstr "" + +#: src/gui/guiConst.cpp:768 +msgid "Sample editor: Apply filter" +msgstr "" + +#: src/gui/guiConst.cpp:769 +msgid "Sample editor: Crossfade loop points" +msgstr "" + +#: src/gui/guiConst.cpp:770 +msgid "Sample editor: Preview sample" +msgstr "" + +#: src/gui/guiConst.cpp:771 +msgid "Sample editor: Stop sample preview" +msgstr "" + +#: src/gui/guiConst.cpp:772 +msgid "Sample editor: Zoom in" +msgstr "" + +#: src/gui/guiConst.cpp:773 +msgid "Sample editor: Zoom out" +msgstr "" + +#: src/gui/guiConst.cpp:774 +msgid "Sample editor: Toggle auto-zoom" +msgstr "" + +#: src/gui/guiConst.cpp:775 +msgid "Sample editor: Create instrument from sample" +msgstr "" + +#: src/gui/guiConst.cpp:776 +msgid "Sample editor: Set loop to selection" +msgstr "" + +#: src/gui/guiConst.cpp:777 +msgid "Sample editor: Create wavetable from selection" +msgstr "" + +#: src/gui/guiConst.cpp:780 +msgid "---Orders" +msgstr "" + +#: src/gui/guiConst.cpp:781 +msgid "Previous order" +msgstr "" + +#: src/gui/guiConst.cpp:782 +msgid "Next order" +msgstr "" + +#: src/gui/guiConst.cpp:783 +msgid "Order cursor left" +msgstr "" + +#: src/gui/guiConst.cpp:784 +msgid "Order cursor right" +msgstr "" + +#: src/gui/guiConst.cpp:785 +msgid "Increase order value" +msgstr "" + +#: src/gui/guiConst.cpp:786 +msgid "Decrease order value" +msgstr "" + +#: src/gui/guiConst.cpp:787 +msgid "Switch order edit mode" +msgstr "" + +#: src/gui/guiConst.cpp:788 +msgid "Order: toggle alter entire row" +msgstr "" + +#: src/gui/guiConst.cpp:789 +msgid "Add order" +msgstr "" + +#: src/gui/guiConst.cpp:790 +msgid "Duplicate order" +msgstr "" + +#: src/gui/guiConst.cpp:791 +msgid "Deep clone order" +msgstr "" + +#: src/gui/guiConst.cpp:792 +msgid "Copy current order to end of song" +msgstr "" + +#: src/gui/guiConst.cpp:793 +msgid "Deep clone current order to end of song" +msgstr "" + +#: src/gui/guiConst.cpp:797 +msgid "Replay order" +msgstr "" + +#: src/gui/guiConst.cpp:1392 +msgid "All chips" +msgstr "" + +#: src/gui/guiConst.cpp:1396 src/gui/insEdit.cpp:6954 src/gui/insEdit.cpp:7204 +#: src/gui/insEdit.cpp:7458 src/gui/insEdit.cpp:7480 +msgid "Special" +msgstr "" + +#: src/gui/piano.cpp:103 +msgid "Options" +msgstr "" + +#: src/gui/piano.cpp:106 +msgid "Key layout:" +msgstr "" + +#: src/gui/piano.cpp:111 +msgid "Standard" +msgstr "" + +#: src/gui/piano.cpp:114 +msgid "Continuous" +msgstr "" + +#: src/gui/piano.cpp:118 +msgid "Value input pad:" +msgstr "" + +#: src/gui/piano.cpp:120 +msgid "Disabled" +msgstr "" + +#: src/gui/piano.cpp:123 +msgid "Replace piano" +msgstr "" + +#: src/gui/piano.cpp:126 +msgid "Split (automatic)" +msgstr "" + +#: src/gui/piano.cpp:129 +msgid "Split (always visible)" +msgstr "" + +#: src/gui/piano.cpp:133 +msgid "Share play/edit offset/range" +msgstr "" + +#: src/gui/piano.cpp:134 +msgid "Read-only (can't input notes)" +msgstr "" + +#: src/gui/waveEdit.cpp:30 src/gui/waveEdit.cpp:192 src/gui/insEdit.cpp:177 +#: src/gui/insEdit.cpp:188 src/gui/insEdit.cpp:199 +msgid "Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:32 src/gui/waveEdit.cpp:202 src/gui/insEdit.cpp:325 +#: src/gui/insEdit.cpp:654 +msgid "Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:39 +msgid "Cosine" +msgstr "" + +#: src/gui/waveEdit.cpp:193 +msgid "Rect. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:194 +msgid "Abs. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:195 +msgid "Quart. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:196 +msgid "Squish. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:197 +msgid "Abs. Squish. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:200 +msgid "rectSquare" +msgstr "" + +#: src/gui/waveEdit.cpp:203 +msgid "Rect. Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:204 +msgid "Abs. Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:206 +msgid "Cubed Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:207 +msgid "Rect. Cubed Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:208 +msgid "Abs. Cubed Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:210 +msgid "Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:211 +msgid "Rect. Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:212 +msgid "Abs. Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:213 +msgid "Quart. Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:214 +msgid "Squish. Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:215 +msgid "Squish. Abs. Cub. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:218 +msgid "Rect. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:219 +msgid "Abs. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:220 +msgid "Quart. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:221 +msgid "Squish. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:222 +msgid "Abs. Squish. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:224 +msgid "Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:225 +msgid "Rect. Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:226 +msgid "Abs. Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:227 +msgid "Quart. Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:228 +msgid "Squish. Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:229 +msgid "Squish. Abs. Cub. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:412 src/gui/waveEdit.cpp:413 +msgid "no wavetable selected" +msgstr "" + +#: src/gui/waveEdit.cpp:424 src/gui/sampleEdit.cpp:111 src/gui/insEdit.cpp:5223 +msgid "select one..." +msgstr "" + +#: src/gui/waveEdit.cpp:432 src/gui/waveEdit.cpp:439 src/gui/sampleEdit.cpp:119 +#: src/gui/sampleEdit.cpp:126 src/gui/insEdit.cpp:5236 src/gui/insEdit.cpp:5243 +msgid "or" +msgstr "" + +#: src/gui/waveEdit.cpp:441 src/gui/sampleEdit.cpp:128 src/gui/insEdit.cpp:5245 +msgid "Create New" +msgstr "" + +#: src/gui/waveEdit.cpp:487 +msgid "Steps" +msgstr "" + +#: src/gui/waveEdit.cpp:491 +msgid "Lines" +msgstr "" + +#: src/gui/waveEdit.cpp:496 src/gui/insEdit.cpp:2687 +msgid "Width" +msgstr "" + +#: src/gui/waveEdit.cpp:498 +msgid "" +"use a width of:\n" +"- any on Amiga/N163\n" +"- 32 on Game Boy, PC Engine, SCC, Konami Bubble System, Namco WSG, Virtual " +"Boy and WonderSwan\n" +"- 64 on FDS\n" +"- 128 on X1-010\n" +"any other widths will be scaled during playback." +msgstr "" + +#: src/gui/waveEdit.cpp:510 +msgid "Height" +msgstr "" + +#: src/gui/waveEdit.cpp:512 +msgid "" +"use a height of:\n" +"- 16 for Game Boy, WonderSwan, Namco WSG, Konami Bubble System, X1-010 " +"Envelope shape and N163\n" +"- 32 for PC Engine\n" +"- 64 for FDS and Virtual Boy\n" +"- 256 for X1-010 and SCC\n" +"any other heights will be scaled during playback." +msgstr "" + +#: src/gui/waveEdit.cpp:578 +msgid "Shapes" +msgstr "" + +#: src/gui/waveEdit.cpp:597 src/gui/insEdit.cpp:5879 src/gui/insEdit.cpp:6922 +#: src/gui/insEdit.cpp:6948 src/gui/insEdit.cpp:7008 src/gui/insEdit.cpp:7048 +#: src/gui/insEdit.cpp:7150 src/gui/insEdit.cpp:7436 src/gui/insEdit.cpp:7472 +msgid "Duty" +msgstr "" + +#: src/gui/waveEdit.cpp:607 +msgid "Exponent" +msgstr "" + +#: src/gui/waveEdit.cpp:617 +msgid "XOR Point" +msgstr "" + +#: src/gui/waveEdit.cpp:627 +msgid "Amplitude/Phase" +msgstr "" + +#: src/gui/waveEdit.cpp:679 src/gui/waveEdit.cpp:723 src/gui/waveEdit.cpp:728 +msgid "Op" +msgstr "" + +#: src/gui/waveEdit.cpp:683 +msgid "Mult" +msgstr "" + +#: src/gui/waveEdit.cpp:685 +msgid "FB" +msgstr "" + +#: src/gui/waveEdit.cpp:749 src/gui/waveEdit.cpp:750 +msgid "Connection Diagram" +msgstr "" + +#: src/gui/waveEdit.cpp:765 +msgid "Out" +msgstr "" + +#: src/gui/waveEdit.cpp:872 +msgid "WaveTools" +msgstr "" + +#: src/gui/waveEdit.cpp:890 +msgid "Scale X" +msgstr "" + +#: src/gui/waveEdit.cpp:896 +msgid "wavetable longer than 256 samples!" +msgstr "" + +#: src/gui/waveEdit.cpp:960 +msgid "Scale Y" +msgstr "" + +#: src/gui/waveEdit.cpp:978 +msgid "Offset X" +msgstr "" + +#: src/gui/waveEdit.cpp:1000 +msgid "Offset Y" +msgstr "" + +#: src/gui/waveEdit.cpp:1017 +msgid "Smooth" +msgstr "" + +#: src/gui/waveEdit.cpp:1045 src/gui/sampleEdit.cpp:996 +msgid "Amplify" +msgstr "" + +#: src/gui/waveEdit.cpp:1063 src/gui/sampleEdit.cpp:1046 +msgid "Normalize" +msgstr "" + +#: src/gui/waveEdit.cpp:1105 src/gui/sampleEdit.cpp:1121 +msgid "Reverse" +msgstr "" + +#: src/gui/waveEdit.cpp:1117 +msgid "Half" +msgstr "" + +#: src/gui/waveEdit.cpp:1127 +msgid "Double" +msgstr "" + +#: src/gui/waveEdit.cpp:1137 +msgid "Convert Signed/Unsigned" +msgstr "" + +#: src/gui/waveEdit.cpp:1167 +msgid "Dec" +msgstr "" + +#: src/gui/waveEdit.cpp:1171 src/gui/csPlayer.cpp:247 +msgid "Hex" +msgstr "" + +#: src/gui/waveEdit.cpp:1179 +msgid "Signed/Unsigned" +msgstr "" + +#: src/gui/sampleEdit.cpp:65 +#, c-format +msgid "%s: maximum sample rate is %d" +msgstr "" + +#: src/gui/sampleEdit.cpp:72 +#, c-format +msgid "%s: minimum sample rate is %d" +msgstr "" + +#: src/gui/sampleEdit.cpp:79 +#, c-format +msgid "%s: sample rate must be %d" +msgstr "" + +#: src/gui/sampleEdit.cpp:99 src/gui/sampleEdit.cpp:100 +msgid "no sample selected" +msgstr "" + +#: src/gui/sampleEdit.cpp:229 +#, c-format +msgid "SNES: loop start must be a multiple of 16 (try with %d)" +msgstr "" + +#: src/gui/sampleEdit.cpp:235 +#, c-format +msgid "SNES: loop end must be a multiple of 16 (try with %d)" +msgstr "" + +#: src/gui/sampleEdit.cpp:240 +msgid "SNES: sample length will be padded to multiple of 16" +msgstr "" + +#: src/gui/sampleEdit.cpp:249 +msgid "QSound: loop cannot be longer than 32767 samples" +msgstr "" + +#: src/gui/sampleEdit.cpp:259 +msgid "NES: loop point ignored on DPCM (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:263 +msgid "NES: maximum DPCM sample length is 32648" +msgstr "" + +#: src/gui/sampleEdit.cpp:268 +msgid "X1-010: samples can't loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:271 +msgid "X1-010: maximum sample length is 131072" +msgstr "" + +#: src/gui/sampleEdit.cpp:276 +msgid "GA20: samples can't loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:287 +msgid "YM2608: loop point ignored on ADPCM (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:290 +msgid "YM2608: sample length will be padded to multiple of 512" +msgstr "" + +#: src/gui/sampleEdit.cpp:300 +msgid "YM2610: ADPCM-A samples can't loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:302 +msgid "YM2610: loop point ignored on ADPCM-B (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:305 +msgid "YM2610: sample length will be padded to multiple of 512" +msgstr "" + +#: src/gui/sampleEdit.cpp:309 +msgid "YM2610: maximum ADPCM-A sample length is 2097152" +msgstr "" + +#: src/gui/sampleEdit.cpp:318 +msgid "Y8950: loop point ignored on ADPCM (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:321 +msgid "Y8950: sample length will be padded to multiple of 512" +msgstr "" + +#: src/gui/sampleEdit.cpp:328 +msgid "Amiga: loop start must be a multiple of 2" +msgstr "" + +#: src/gui/sampleEdit.cpp:331 +msgid "Amiga: loop end must be a multiple of 2" +msgstr "" + +#: src/gui/sampleEdit.cpp:335 +msgid "Amiga: maximum sample length is 131070" +msgstr "" + +#: src/gui/sampleEdit.cpp:344 +msgid "SegaPCM: maximum sample length is 65280" +msgstr "" + +#: src/gui/sampleEdit.cpp:353 +msgid "K053260: loop point ignored (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:357 +msgid "K053260: maximum sample length is 65535" +msgstr "" + +#: src/gui/sampleEdit.cpp:362 +msgid "C140: maximum sample length is 65535" +msgstr "" + +#: src/gui/sampleEdit.cpp:371 +msgid "C219: loop start must be a multiple of 2" +msgstr "" + +#: src/gui/sampleEdit.cpp:374 +msgid "C219: loop end must be a multiple of 2" +msgstr "" + +#: src/gui/sampleEdit.cpp:378 +msgid "C219: maximum sample length is 131072" +msgstr "" + +#: src/gui/sampleEdit.cpp:386 +msgid "MSM6295: samples can't loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:389 +msgid "MSM6295: maximum bankswitched sample length is 129024" +msgstr "" + +#: src/gui/sampleEdit.cpp:395 +msgid "GBA DMA: loop start must be a multiple of 4" +msgstr "" + +#: src/gui/sampleEdit.cpp:398 +msgid "GBA DMA: loop length must be a multiple of 16" +msgstr "" + +#: src/gui/sampleEdit.cpp:402 +msgid "GBA DMA: sample length will be padded to multiple of 16" +msgstr "" + +#: src/gui/sampleEdit.cpp:411 +msgid "ES5506: backward loop mode isn't supported" +msgstr "" + +#: src/gui/sampleEdit.cpp:414 +msgid "" +"backward/ping-pong only supported in Generic PCM DAC\n" +"ping-pong also on ES5506" +msgstr "" + +#: src/gui/sampleEdit.cpp:444 +msgid "Info" +msgstr "" + +#: src/gui/sampleEdit.cpp:447 src/gui/sampleEdit.cpp:933 +msgid "Rate" +msgstr "" + +#: src/gui/sampleEdit.cpp:453 +msgid "Compat Rate" +msgstr "" + +#: src/gui/sampleEdit.cpp:457 +msgid "" +"used in DefleMask-compatible sample mode (17xx), in where samples are mapped " +"to an octave." +msgstr "" + +#: src/gui/sampleEdit.cpp:463 +#, c-format +msgid "Loop (length: %d)##Loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:463 src/gui/insEdit.cpp:544 src/gui/insEdit.cpp:554 +#: src/gui/insEdit.cpp:605 src/gui/insEdit.cpp:6017 +msgid "Loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:487 src/gui/sampleEdit.cpp:716 +#: src/gui/sampleEdit.cpp:752 +msgid "changing the loop in a BRR sample may result in glitches!" +msgstr "" + +#: src/gui/sampleEdit.cpp:529 +msgid "BRR emphasis" +msgstr "" + +#: src/gui/sampleEdit.cpp:538 +msgid "" +"this is a BRR sample.\n" +"enabling this option will muffle it (only affects non-SNES chips)." +msgstr "" + +#: src/gui/sampleEdit.cpp:540 +msgid "" +"enable this option to slightly boost high frequencies\n" +"to compensate for the SNES' Gaussian filter's muffle." +msgstr "" + +#: src/gui/sampleEdit.cpp:546 +msgid "8-bit dither" +msgstr "" + +#: src/gui/sampleEdit.cpp:554 +msgid "dither the sample when used on a chip that only supports 8-bit samples." +msgstr "" + +#: src/gui/sampleEdit.cpp:695 src/gui/gui.cpp:2975 +msgid "Start" +msgstr "" + +#: src/gui/sampleEdit.cpp:731 src/gui/gui.cpp:2983 +msgid "End" +msgstr "" + +#: src/gui/sampleEdit.cpp:841 +#, c-format +msgid "" +"%s\n" +"%d bytes free" +msgstr "" + +#: src/gui/sampleEdit.cpp:843 +#, c-format +msgid "" +"%s (%s)\n" +"%d bytes free" +msgstr "" + +#: src/gui/sampleEdit.cpp:847 +msgid "" +"\n" +"\n" +"not enough memory for this sample!" +msgstr "" + +#: src/gui/sampleEdit.cpp:871 +msgid "Edit mode: Select" +msgstr "" + +#: src/gui/sampleEdit.cpp:880 +msgid "Edit mode: Draw" +msgstr "" + +#: src/gui/sampleEdit.cpp:891 src/gui/sampleEdit.cpp:902 +msgid "Resize" +msgstr "" + +#: src/gui/sampleEdit.cpp:906 +msgid "couldn't resize! make sure your sample is 8 or 16-bit." +msgstr "" + +#: src/gui/sampleEdit.cpp:926 src/gui/sampleEdit.cpp:957 +msgid "Resample" +msgstr "" + +#: src/gui/sampleEdit.cpp:951 +msgid "Factor" +msgstr "" + +#: src/gui/sampleEdit.cpp:956 +msgid "Filter" +msgstr "" + +#: src/gui/sampleEdit.cpp:961 +msgid "couldn't resample! make sure your sample is 8 or 16-bit." +msgstr "" + +#: src/gui/sampleEdit.cpp:1010 src/gui/sampleEdit.cpp:1197 +#: src/gui/sampleEdit.cpp:1281 +msgid "Apply" +msgstr "" + +#: src/gui/sampleEdit.cpp:1053 +msgid "Fade in" +msgstr "" + +#: src/gui/sampleEdit.cpp:1060 +msgid "Fade out" +msgstr "" + +#: src/gui/sampleEdit.cpp:1065 +msgid "Insert silence" +msgstr "" + +#: src/gui/sampleEdit.cpp:1076 +msgid "Go" +msgstr "" + +#: src/gui/sampleEdit.cpp:1081 +msgid "couldn't insert! make sure your sample is 8 or 16-bit." +msgstr "" + +#: src/gui/sampleEdit.cpp:1098 +msgid "Apply silence" +msgstr "" + +#: src/gui/sampleEdit.cpp:1112 +msgid "Trim" +msgstr "" + +#: src/gui/sampleEdit.cpp:1135 +msgid "Signed/unsigned exchange" +msgstr "" + +#: src/gui/sampleEdit.cpp:1140 +msgid "Apply filter" +msgstr "" + +#: src/gui/sampleEdit.cpp:1151 +msgid "Cutoff:" +msgstr "" + +#: src/gui/sampleEdit.cpp:1161 src/gui/insEdit.cpp:5895 +#: src/gui/insEdit.cpp:5898 src/gui/insEdit.cpp:6953 src/gui/insEdit.cpp:7216 +#: src/gui/insEdit.cpp:7478 +msgid "Resonance" +msgstr "" + +#: src/gui/sampleEdit.cpp:1167 src/gui/insEdit.cpp:6897 +msgid "Power" +msgstr "" + +#: src/gui/sampleEdit.cpp:1181 +msgid "Low-pass" +msgstr "" + +#: src/gui/sampleEdit.cpp:1186 +msgid "Band-pass" +msgstr "" + +#: src/gui/sampleEdit.cpp:1191 +msgid "High-pass" +msgstr "" + +#: src/gui/sampleEdit.cpp:1262 +msgid "Crossfade loop points" +msgstr "" + +#: src/gui/sampleEdit.cpp:1271 +msgid "Number of samples" +msgstr "" + +#: src/gui/sampleEdit.cpp:1277 +msgid "Linear <-> Equal power" +msgstr "" + +#: src/gui/sampleEdit.cpp:1283 +msgid "Crossfade: length would go out of bounds. Aborted..." +msgstr "" + +#: src/gui/sampleEdit.cpp:1286 +msgid "Crossfade: length would overflow loopStart. Try a smaller random value." +msgstr "" + +#: src/gui/sampleEdit.cpp:1332 +msgid "Preview sample" +msgstr "" + +#: src/gui/sampleEdit.cpp:1346 +msgid "Create instrument from sample" +msgstr "" + +#: src/gui/sampleEdit.cpp:1747 +msgid "paste (replace)" +msgstr "" + +#: src/gui/sampleEdit.cpp:1750 +msgid "paste (mix)" +msgstr "" + +#: src/gui/sampleEdit.cpp:1754 src/gui/gui.cpp:2769 +msgid "select all" +msgstr "" + +#: src/gui/sampleEdit.cpp:1758 +msgid "set loop to selection" +msgstr "" + +#: src/gui/sampleEdit.cpp:1761 +msgid "create wavetable from selection" +msgstr "" + +#: src/gui/sampleEdit.cpp:1767 +msgid "Draw" +msgstr "" + +#: src/gui/sampleEdit.cpp:1767 +msgid "Select" +msgstr "" + +#: src/gui/sampleEdit.cpp:1769 +#, c-format +msgid "%d samples, %d bytes" +msgstr "" + +#: src/gui/sampleEdit.cpp:1784 +#, c-format +msgid " (%d-%d: %d samples)" +msgstr "" + +#: src/gui/sampleEdit.cpp:1976 +msgid "Non-8/16-bit samples cannot be edited without prior conversion." +msgstr "" + +#: src/gui/newSong.cpp:122 src/gui/newSong.cpp:123 +msgid "Choose a System!" +msgstr "" + +#: src/gui/newSong.cpp:179 +msgid "Categories" +msgstr "" + +#: src/gui/newSong.cpp:210 +msgid "no systems here yet!" +msgstr "" + +#: src/gui/newSong.cpp:212 +msgid "no results" +msgstr "" + +#: src/gui/newSong.cpp:228 +msgid "I'm feeling lucky" +msgstr "" + +#: src/gui/newSong.cpp:230 +msgid "no categories available! what in the world." +msgstr "" + +#: src/gui/newSong.cpp:265 +msgid "it appears you're extremely lucky today!" +msgstr "" + +#: src/gui/cursor.cpp:205 +#, c-format +msgid "finish selection: %d.%d,%d - %d.%d,%d" +msgstr "" + +#: src/gui/tutorial.cpp:487 +msgid "" +"Play demo songs?\n" +"- Down: Play current song\n" +"- Up: Play demo songs" +msgstr "" + +#: src/gui/tutorial.cpp:491 +msgid "" +"Welcome to Combat Vehicle!\n" +"\n" +"Controls:\n" +"X - Shoot Arrow Key - Move\n" +"Z - Special Esc - Quit" +msgstr "" + +#: src/gui/tutorial.cpp:496 +msgid "GAME OVER" +msgstr "" + +#: src/gui/tutorial.cpp:498 +msgid "High Score!" +msgstr "" + +#: src/gui/tutorial.cpp:658 +msgid "Welcome!" +msgstr "" + +#: src/gui/tutorial.cpp:661 +msgid "welcome to Furnace, the biggest open-source chiptune tracker!" +msgstr "" + +#: src/gui/tutorial.cpp:665 +msgid "here are some tips to get you started:" +msgstr "" + +#: src/gui/tutorial.cpp:668 +msgid "" +"- add an instrument by clicking on + in Instruments\n" +"- click on the pattern view to focus it\n" +"- channel columns have the following, in this order: note, instrument, " +"volume and effects\n" +"- hit space bar while on the pattern to toggle Edit Mode\n" +"- click on the pattern or use arrow keys to move the cursor\n" +"- values (instrument, volume, effects and effect values) are in hexadecimal\n" +"- hit enter to play/stop the song\n" +"- extend the song by adding more orders in the Orders window\n" +"- click on the Orders matrix to change the patterns of a channel (left click " +"increases; right click decreases)" +msgstr "" + +#: src/gui/tutorial.cpp:680 +msgid "" +"if you need help, you may:\n" +"- read the manual (a file called manual.pdf)\n" +"- ask for help in Discussions (https://github.com/tildearrow/furnace/" +"discussions), the Furnace Discord (https://discord.gg/EfrwT2wq7z) or Furnace " +"in Revolt (official: https://rvlt.gg/GRPS6tmc)" +msgstr "" + +#: src/gui/tutorial.cpp:687 +msgid "" +"if you find any issues, be sure to report them! the issue tracker is here: " +"https://github.com/tildearrow/furnace/issues" +msgstr "" + +#: src/gui/tutorial.cpp:1428 +#, c-format +msgid "STAGE %d" +msgstr "" + +#: src/gui/songInfo.cpp:32 +msgid "Song Info##Song Information" +msgstr "" + +#: src/gui/songInfo.cpp:50 +msgid "Author" +msgstr "" + +#: src/gui/songInfo.cpp:60 +msgid "Album" +msgstr "" + +#: src/gui/songInfo.cpp:79 +msgid "Auto" +msgstr "" + +#: src/gui/songInfo.cpp:100 +msgid "Tuning (A-4)" +msgstr "" + +#: src/gui/grooves.cpp:38 +msgid "use effect 09xx to select a groove pattern." +msgstr "" + +#: src/gui/grooves.cpp:48 src/gui/gui.cpp:4480 +msgid "pattern" +msgstr "" + +#: src/gui/grooves.cpp:132 +msgid "remove" +msgstr "" + +#: src/gui/doAction.cpp:45 src/gui/gui.cpp:4201 +msgid "Unsaved changes! Save changes before opening another file?" +msgstr "" + +#: src/gui/doAction.cpp:52 +msgid "Unsaved changes! Save changes before opening backup?" +msgstr "" + +#: src/gui/doAction.cpp:62 src/gui/gui.cpp:4237 src/gui/gui.cpp:5025 +#: src/gui/gui.cpp:5063 src/gui/gui.cpp:5069 src/gui/gui.cpp:5657 +#: src/gui/gui.cpp:5681 src/gui/gui.cpp:5705 src/gui/gui.cpp:5729 +#: src/gui/gui.cpp:5753 src/gui/gui.cpp:5777 +#, c-format +msgid "Error while saving file! (%s)" +msgstr "" + +#: src/gui/doAction.cpp:189 +msgid "Error while sending request (MIDI output not configured?)" +msgstr "" + +#: src/gui/doAction.cpp:197 +msgid "Select an option: (cannot be undone!)" +msgstr "" + +#: src/gui/doAction.cpp:691 src/gui/doAction.cpp:720 src/gui/doAction.cpp:1593 +#: src/gui/gui.cpp:6091 +msgid "too many instruments!" +msgstr "te veel instrumenten!" + +#: src/gui/doAction.cpp:1124 +msgid "couldn't paste! make sure your sample is 8 or 16-bit." +msgstr "" + +#: src/gui/doAction.cpp:1628 +msgid "select at least one sample!" +msgstr "" + +#: src/gui/doAction.cpp:1630 +msgid "maximum size is 256 samples!" +msgstr "" + +#: src/gui/csPlayer.cpp:113 +msgid "Load" +msgstr "Laden" + +#: src/gui/csPlayer.cpp:117 +msgid "Kill" +msgstr "" + +#: src/gui/csPlayer.cpp:119 +msgid "Kikai wa mou shindeiru!" +msgstr "" + +#: src/gui/csPlayer.cpp:123 +msgid "Burn Current Song" +msgstr "" + +#: src/gui/csPlayer.cpp:141 +msgid "Status" +msgstr "" + +#: src/gui/csPlayer.cpp:148 +msgid "start" +msgstr "" + +#: src/gui/csPlayer.cpp:150 +msgid "PC" +msgstr "" + +#: src/gui/csPlayer.cpp:152 +msgid "wait" +msgstr "" + +#: src/gui/csPlayer.cpp:154 +msgid "SP" +msgstr "" + +#: src/gui/csPlayer.cpp:156 src/gui/insEdit.cpp:2733 +msgid "note" +msgstr "" + +#: src/gui/csPlayer.cpp:158 src/gui/insEdit.cpp:2728 +msgid "pitch" +msgstr "" + +#: src/gui/csPlayer.cpp:160 +msgid "vol" +msgstr "" + +#: src/gui/csPlayer.cpp:162 +msgid "vols" +msgstr "" + +#: src/gui/csPlayer.cpp:164 +msgid "vib" +msgstr "" + +#: src/gui/csPlayer.cpp:166 +msgid "porta" +msgstr "" + +#: src/gui/csPlayer.cpp:168 +msgid "arp" +msgstr "" + +#: src/gui/csPlayer.cpp:203 +msgid "Trace" +msgstr "" + +#: src/gui/csPlayer.cpp:244 +msgid "Disassemble" +msgstr "" + +#: src/gui/gui.cpp:1136 src/gui/gui.cpp:1140 +msgid "the song is over!" +msgstr "de lied is over!" + +#: src/gui/gui.cpp:1667 +msgid "Open File" +msgstr "Open Bestand" + +#: src/gui/gui.cpp:1668 src/gui/gui.cpp:1798 src/gui/gui.cpp:1838 +#: src/gui/gui.cpp:1953 src/gui/gui.cpp:1962 src/gui/gui.cpp:1971 +#: src/gui/gui.cpp:2073 src/gui/gui.cpp:2093 src/gui/gui.cpp:2111 +msgid "compatible files" +msgstr "" + +#: src/gui/gui.cpp:1669 src/gui/gui.cpp:1743 src/gui/gui.cpp:1799 +#: src/gui/gui.cpp:1839 src/gui/gui.cpp:1851 src/gui/gui.cpp:1870 +#: src/gui/gui.cpp:2074 src/gui/gui.cpp:2084 src/gui/gui.cpp:2095 +#: src/gui/gui.cpp:2113 +msgid "all files" +msgstr "alle bestanden" + +#: src/gui/gui.cpp:1676 +msgid "no backups made yet!" +msgstr "geen backups gemaakt toch!" + +#: src/gui/gui.cpp:1681 src/gui/gui.cpp:1690 src/gui/gui.cpp:2130 +msgid "Furnace song" +msgstr "Furnace-lied" + +#: src/gui/gui.cpp:1689 +msgid "Save File" +msgstr "Opslaan Bestand" + +#: src/gui/gui.cpp:1698 src/gui/gui.cpp:1708 +msgid "Export DMF" +msgstr "DMF Exporteer" + +#: src/gui/gui.cpp:1699 +msgid "DefleMask 1.1.3 module" +msgstr "" + +#: src/gui/gui.cpp:1709 +msgid "DefleMask 1.0/legacy module" +msgstr "" + +#: src/gui/gui.cpp:1726 +msgid "Load Instrument" +msgstr "" + +#: src/gui/gui.cpp:1727 +msgid "all compatible files" +msgstr "alle compatibel bestanden" + +#: src/gui/gui.cpp:1728 src/gui/gui.cpp:1777 +msgid "Furnace instrument" +msgstr "" + +#: src/gui/gui.cpp:1729 src/gui/gui.cpp:1787 +msgid "DefleMask preset" +msgstr "" + +#: src/gui/gui.cpp:1730 +msgid "TFM Music Maker instrument" +msgstr "" + +#: src/gui/gui.cpp:1731 +msgid "VGM Music Maker instrument" +msgstr "" + +#: src/gui/gui.cpp:1732 +msgid "Scream Tracker 3 instrument" +msgstr "" + +#: src/gui/gui.cpp:1733 +msgid "SoundBlaster instrument" +msgstr "" + +#: src/gui/gui.cpp:1734 +msgid "Wohlstand OPL instrument" +msgstr "" + +#: src/gui/gui.cpp:1735 +msgid "Wohlstand OPN instrument" +msgstr "" + +#: src/gui/gui.cpp:1736 +msgid "Gens KMod patch dump" +msgstr "" + +#: src/gui/gui.cpp:1737 +msgid "BNK file (AdLib)" +msgstr "BNK bestand (AdLib)" + +#: src/gui/gui.cpp:1738 +msgid "FF preset bank" +msgstr "" + +#: src/gui/gui.cpp:1739 +msgid "2612edit GYB preset bank" +msgstr "" + +#: src/gui/gui.cpp:1740 +msgid "VOPM preset bank" +msgstr "" + +#: src/gui/gui.cpp:1741 +msgid "Wohlstand WOPL bank" +msgstr "" + +#: src/gui/gui.cpp:1742 +msgid "Wohlstand WOPN bank" +msgstr "" + +#: src/gui/gui.cpp:1776 src/gui/gui.cpp:1786 +msgid "Save Instrument" +msgstr "Opslaan Instrument" + +#: src/gui/gui.cpp:1797 +msgid "Load Wavetable" +msgstr "" + +#: src/gui/gui.cpp:1809 src/gui/gui.cpp:1818 src/gui/gui.cpp:1827 +msgid "Save Wavetable" +msgstr "Opslaan Wavetable" + +#: src/gui/gui.cpp:1810 +msgid "Furnace wavetable" +msgstr "" + +#: src/gui/gui.cpp:1819 +msgid "DefleMask wavetable" +msgstr "" + +#: src/gui/gui.cpp:1828 +msgid "raw data" +msgstr "ruwe data" + +#: src/gui/gui.cpp:1837 +msgid "Load Sample" +msgstr "" + +#: src/gui/gui.cpp:1850 +msgid "Load Raw Sample" +msgstr "" + +#: src/gui/gui.cpp:1859 +msgid "Save Sample" +msgstr "" + +#: src/gui/gui.cpp:1860 src/gui/gui.cpp:1880 src/gui/gui.cpp:1890 +#: src/gui/gui.cpp:1900 +msgid "Wave file" +msgstr "" + +#: src/gui/gui.cpp:1869 +msgid "Save Raw Sample" +msgstr "" + +#: src/gui/gui.cpp:1879 src/gui/gui.cpp:1889 src/gui/gui.cpp:1899 +msgid "Export Audio" +msgstr "" + +#: src/gui/gui.cpp:1909 +msgid "Export VGM" +msgstr "" + +#: src/gui/gui.cpp:1910 +msgid "VGM file" +msgstr "" + +#: src/gui/gui.cpp:1919 +msgid "Export ZSM" +msgstr "" + +#: src/gui/gui.cpp:1920 +msgid "ZSM file" +msgstr "" + +#: src/gui/gui.cpp:1929 src/gui/gui.cpp:1939 +msgid "Export Command Stream" +msgstr "" + +#: src/gui/gui.cpp:1930 +msgid "text file" +msgstr "tekstbestand" + +#: src/gui/gui.cpp:1940 +msgid "binary file" +msgstr "binaire bestand" + +#: src/gui/gui.cpp:1947 src/gui/gui.cpp:5376 +msgid "Coming soon!" +msgstr "Binnenkort beschikbaar!" + +#: src/gui/gui.cpp:1952 src/gui/gui.cpp:1961 src/gui/gui.cpp:1970 +msgid "Select Font" +msgstr "Selecteer Lettertype" + +#: src/gui/gui.cpp:1979 +msgid "Select Color File" +msgstr "" + +#: src/gui/gui.cpp:1980 src/gui/gui.cpp:1989 src/gui/gui.cpp:2008 +#: src/gui/gui.cpp:2017 src/gui/gui.cpp:2026 src/gui/gui.cpp:2035 +#: src/gui/gui.cpp:2053 src/gui/gui.cpp:2062 +msgid "configuration files" +msgstr "" + +#: src/gui/gui.cpp:1988 +msgid "Select Keybind File" +msgstr "" + +#: src/gui/gui.cpp:1997 +msgid "Select Layout File" +msgstr "" + +#: src/gui/gui.cpp:1998 src/gui/gui.cpp:2044 +msgid ".ini files" +msgstr ".ini bestanden" + +#: src/gui/gui.cpp:2007 +msgid "Select User Presets File" +msgstr "" + +#: src/gui/gui.cpp:2016 +msgid "Select Settings File" +msgstr "" + +#: src/gui/gui.cpp:2025 +msgid "Export Colors" +msgstr "" + +#: src/gui/gui.cpp:2034 +msgid "Export Keybinds" +msgstr "" + +#: src/gui/gui.cpp:2043 +msgid "Export Layout" +msgstr "" + +#: src/gui/gui.cpp:2052 +msgid "Export User Presets" +msgstr "" + +#: src/gui/gui.cpp:2061 +msgid "Export Settings" +msgstr "" + +#: src/gui/gui.cpp:2072 +msgid "Load ROM" +msgstr "" + +#: src/gui/gui.cpp:2082 +msgid "Play Command Stream" +msgstr "" + +#: src/gui/gui.cpp:2083 +msgid "command stream" +msgstr "" + +#: src/gui/gui.cpp:2092 +msgid "Open Test" +msgstr "" + +#: src/gui/gui.cpp:2094 src/gui/gui.cpp:2112 +msgid "another option" +msgstr "" + +#: src/gui/gui.cpp:2110 +msgid "Open Test (Multi)" +msgstr "" + +#: src/gui/gui.cpp:2129 +msgid "Save Test" +msgstr "" + +#: src/gui/gui.cpp:2131 +msgid "DefleMask module" +msgstr "" + +#: src/gui/gui.cpp:2171 +msgid "compression error" +msgstr "" + +#: src/gui/gui.cpp:2183 +msgid "zlib stream error" +msgstr "" + +#: src/gui/gui.cpp:2205 +msgid "zlib finish stream error" +msgstr "" + +#: src/gui/gui.cpp:2316 +msgid "everything OK" +msgstr "" + +#: src/gui/gui.cpp:2334 +msgid "" +"you have loaded a backup!\n" +"if you need to, please save it somewhere.\n" +"\n" +"DO NOT RELY ON THE BACKUP SYSTEM FOR AUTO-SAVE!\n" +"Furnace will not save backups of backups." +msgstr "" + +#: src/gui/gui.cpp:2342 src/gui/gui.cpp:3743 src/gui/gui.cpp:4213 +msgid "Unsaved changes! Save changes before opening file?" +msgstr "" + +#: src/gui/gui.cpp:2736 +msgid "paste special..." +msgstr "" + +#: src/gui/gui.cpp:2737 +msgid "paste mix" +msgstr "" + +#: src/gui/gui.cpp:2738 +msgid "paste mix (background)" +msgstr "" + +#: src/gui/gui.cpp:2739 +msgid "paste with ins (foreground)" +msgstr "" + +#: src/gui/gui.cpp:2741 src/gui/gui.cpp:2753 src/gui/gui.cpp:2963 +msgid "no instruments available" +msgstr "" + +#: src/gui/gui.cpp:2751 +msgid "paste with ins (background)" +msgstr "" + +#: src/gui/gui.cpp:2763 +msgid "paste flood" +msgstr "" + +#: src/gui/gui.cpp:2764 +msgid "paste overflow" +msgstr "" + +#: src/gui/gui.cpp:2773 +msgid "operation mask..." +msgstr "" + +#: src/gui/gui.cpp:2780 +msgid "pull delete" +msgstr "" + +#: src/gui/gui.cpp:2784 +msgid "insert" +msgstr "" + +#: src/gui/gui.cpp:2792 +msgid "transpose (note)" +msgstr "" + +#: src/gui/gui.cpp:2796 +msgid "transpose (value)" +msgstr "" + +#: src/gui/gui.cpp:2808 src/gui/gui.cpp:3052 +msgid "invert values" +msgstr "" + +#: src/gui/gui.cpp:2824 +msgid "collapse/expand" +msgstr "" + +#: src/gui/gui.cpp:2829 +msgid "input latch" +msgstr "" + +#: src/gui/gui.cpp:2856 +msgid "" +"&&: selected instrument\n" +"..: no instrument" +msgstr "" + +#: src/gui/gui.cpp:2910 +msgid "Set" +msgstr "" + +#: src/gui/gui.cpp:2930 +msgid "note up" +msgstr "" + +#: src/gui/gui.cpp:2931 +msgid "note down" +msgstr "" + +#: src/gui/gui.cpp:2932 +msgid "octave up" +msgstr "" + +#: src/gui/gui.cpp:2933 +msgid "octave down" +msgstr "" + +#: src/gui/gui.cpp:2935 +msgid "values up" +msgstr "" + +#: src/gui/gui.cpp:2936 +msgid "values down" +msgstr "" + +#: src/gui/gui.cpp:2937 +msgid "values up (+16)" +msgstr "" + +#: src/gui/gui.cpp:2938 +msgid "values down (-16)" +msgstr "" + +#: src/gui/gui.cpp:2941 +msgid "transpose" +msgstr "" + +#: src/gui/gui.cpp:2949 +msgid "Notes" +msgstr "" + +#: src/gui/gui.cpp:2954 +msgid "Values" +msgstr "" + +#: src/gui/gui.cpp:2961 +msgid "change instrument..." +msgstr "" + +#: src/gui/gui.cpp:2974 +msgid "gradient/fade..." +msgstr "" + +#: src/gui/gui.cpp:2991 src/gui/gui.cpp:3036 +msgid "Nibble mode" +msgstr "" + +#: src/gui/gui.cpp:3000 +msgid "Go ahead" +msgstr "" + +#: src/gui/gui.cpp:3006 src/gui/insEdit.cpp:7604 +msgid "scale..." +msgstr "" + +#: src/gui/gui.cpp:3011 +msgid "Scale" +msgstr "" + +#: src/gui/gui.cpp:3017 src/gui/insEdit.cpp:7632 +msgid "randomize..." +msgstr "" + +#: src/gui/gui.cpp:3018 +msgid "Minimum" +msgstr "" + +#: src/gui/gui.cpp:3027 +msgid "Maximum" +msgstr "" + +#: src/gui/gui.cpp:3056 +msgid "flip selection" +msgstr "" + +#: src/gui/gui.cpp:3059 +msgid "collapse/expand amount##CollapseAmount" +msgstr "" + +#: src/gui/gui.cpp:3068 +msgid "collapse pattern" +msgstr "" + +#: src/gui/gui.cpp:3069 +msgid "expand pattern" +msgstr "" + +#: src/gui/gui.cpp:3074 +msgid "collapse song" +msgstr "" + +#: src/gui/gui.cpp:3075 +msgid "expand song" +msgstr "" + +#: src/gui/gui.cpp:3080 +msgid "find/replace" +msgstr "" + +#: src/gui/gui.cpp:3094 src/gui/gui.cpp:5807 src/gui/gui.cpp:7362 +#, c-format +msgid "could NOT save layout! %s" +msgstr "" + +#: src/gui/gui.cpp:3106 +#, c-format +msgid "could NOT load layout! %s" +msgstr "" + +#: src/gui/gui.cpp:3568 +msgid "" +"Furnace has been started in Safe Mode.\n" +"this means that:\n" +"\n" +"- software rendering is being used\n" +"- audio output may not work\n" +"- font loading is disabled\n" +"\n" +"check any settings which may have made Furnace start up in this mode.\n" +"font loading is one of these." +msgstr "" + +#: src/gui/gui.cpp:4053 +msgid "can't keep going without graphics! Furnace will quit now." +msgstr "" + +#: src/gui/gui.cpp:4191 +msgid "file" +msgstr "bestanden" + +#: src/gui/gui.cpp:4192 +msgid "new..." +msgstr "nieuwe..." + +#: src/gui/gui.cpp:4199 +msgid "open..." +msgstr "open..." + +#: src/gui/gui.cpp:4206 +msgid "open recent" +msgstr "open recent" + +#: src/gui/gui.cpp:4222 +msgid "nothing here yet" +msgstr "" + +#: src/gui/gui.cpp:4225 +msgid "clear history" +msgstr "" + +#: src/gui/gui.cpp:4226 +msgid "Are you sure you want to clear the recent file list?" +msgstr "" + +#: src/gui/gui.cpp:4241 +msgid "save as..." +msgstr "opslaan als..." + +#: src/gui/gui.cpp:4246 src/gui/gui.cpp:4287 +msgid "export audio..." +msgstr "" + +#: src/gui/gui.cpp:4250 src/gui/gui.cpp:4291 +msgid "export VGM..." +msgstr "" + +#: src/gui/gui.cpp:4259 src/gui/gui.cpp:4300 +msgid "export ZSM..." +msgstr "" + +#: src/gui/gui.cpp:4269 src/gui/gui.cpp:4310 +msgid "export Amiga validation data..." +msgstr "" + +#: src/gui/gui.cpp:4274 src/gui/gui.cpp:4315 +msgid "export text..." +msgstr "" + +#: src/gui/gui.cpp:4278 src/gui/gui.cpp:4319 +msgid "export command stream..." +msgstr "" + +#: src/gui/gui.cpp:4282 src/gui/gui.cpp:4323 +msgid "export .dmf..." +msgstr "" + +#: src/gui/gui.cpp:4328 +msgid "export..." +msgstr "" + +#: src/gui/gui.cpp:4334 +msgid "manage chips" +msgstr "chipbeheer" + +#: src/gui/gui.cpp:4338 +msgid "add chip..." +msgstr "chip toevoegen..." + +#: src/gui/gui.cpp:4343 src/gui/sysManager.cpp:138 +#, c-format +msgid "cannot add chip! (%s)" +msgstr "fout bij het toevoegen van chip! (%s)" + +#: src/gui/gui.cpp:4355 +msgid "configure chip..." +msgstr "" + +#: src/gui/gui.cpp:4365 +msgid "change chip..." +msgstr "" + +#: src/gui/gui.cpp:4367 src/gui/gui.cpp:4390 +msgid "Preserve channel positions" +msgstr "" + +#: src/gui/gui.cpp:4379 src/gui/sysManager.cpp:109 +#, c-format +msgid "cannot change chip! (%s)" +msgstr "" + +#: src/gui/gui.cpp:4388 +msgid "remove chip..." +msgstr "" + +#: src/gui/gui.cpp:4394 +#, c-format +msgid "cannot remove chip! (%s)" +msgstr "" + +#: src/gui/gui.cpp:4408 +msgid "open built-in assets directory" +msgstr "" + +#: src/gui/gui.cpp:4414 +msgid "restore backup" +msgstr "" + +#: src/gui/gui.cpp:4418 +msgid "exit..." +msgstr "alfsluiten..." + +#: src/gui/gui.cpp:4426 +msgid "edit" +msgstr "" + +#: src/gui/gui.cpp:4434 +msgid "clear..." +msgstr "" + +#: src/gui/gui.cpp:4439 +msgid "settings" +msgstr "" + +#: src/gui/gui.cpp:4441 +msgid "full screen" +msgstr "" + +#: src/gui/gui.cpp:4445 +msgid "lock layout" +msgstr "" + +#: src/gui/gui.cpp:4448 +msgid "pattern visualizer" +msgstr "" + +#: src/gui/gui.cpp:4454 +msgid "reset layout" +msgstr "" + +#: src/gui/gui.cpp:4458 +msgid "switch to mobile view" +msgstr "" + +#: src/gui/gui.cpp:4462 +msgid "user systems..." +msgstr "" + +#: src/gui/gui.cpp:4465 +msgid "settings..." +msgstr "" + +#: src/gui/gui.cpp:4471 +msgid "Window" +msgstr "" + +#: src/gui/gui.cpp:4471 +msgid "window" +msgstr "" + +#: src/gui/gui.cpp:4472 +msgid "song" +msgstr "" + +#: src/gui/gui.cpp:4473 +msgid "song comments" +msgstr "" + +#: src/gui/gui.cpp:4474 +msgid "song information" +msgstr "" + +#: src/gui/gui.cpp:4475 +msgid "subsongs" +msgstr "" + +#: src/gui/gui.cpp:4477 +msgid "channels" +msgstr "" + +#: src/gui/gui.cpp:4478 +msgid "chip manager" +msgstr "chipbeheer" + +#: src/gui/gui.cpp:4479 +msgid "orders" +msgstr "" + +#: src/gui/gui.cpp:4481 +msgid "pattern manager" +msgstr "patroonbeheer" + +#: src/gui/gui.cpp:4482 +msgid "mixer" +msgstr "" + +#: src/gui/gui.cpp:4483 +msgid "compatibility flags" +msgstr "compatibiliteitsvlaggen" + +#: src/gui/gui.cpp:4486 src/gui/gui.cpp:4488 +msgid "assets" +msgstr "" + +#: src/gui/gui.cpp:4490 +msgid "instruments" +msgstr "instruments" + +#: src/gui/gui.cpp:4491 +msgid "samples" +msgstr "samples" + +#: src/gui/gui.cpp:4492 +msgid "wavetables" +msgstr "wavetables" + +#: src/gui/gui.cpp:4495 +msgid "instrument editor" +msgstr "instrument editor" + +#: src/gui/gui.cpp:4496 +msgid "sample editor" +msgstr "sample editor" + +#: src/gui/gui.cpp:4497 +msgid "wavetable editor" +msgstr "wavetable editor" + +#: src/gui/gui.cpp:4500 +msgid "visualizers" +msgstr "visualiseren" + +#: src/gui/gui.cpp:4501 +msgid "oscilloscope (master)" +msgstr "oscilloscoop (meester)" + +#: src/gui/gui.cpp:4502 +msgid "oscilloscope (per-channel)" +msgstr "" + +#: src/gui/gui.cpp:4503 +msgid "oscilloscope (X-Y)" +msgstr "" + +#: src/gui/gui.cpp:4504 +msgid "volume meter" +msgstr "" + +#: src/gui/gui.cpp:4507 +msgid "tempo" +msgstr "" + +#: src/gui/gui.cpp:4508 +msgid "clock" +msgstr "" + +#: src/gui/gui.cpp:4509 +msgid "grooves" +msgstr "" + +#: src/gui/gui.cpp:4510 +msgid "speed" +msgstr "" + +#: src/gui/gui.cpp:4514 +msgid "log viewer" +msgstr "" + +#: src/gui/gui.cpp:4515 +msgid "register view" +msgstr "" + +#: src/gui/gui.cpp:4516 +msgid "statistics" +msgstr "" + +#: src/gui/gui.cpp:4517 +msgid "memory composition" +msgstr "" + +#: src/gui/gui.cpp:4521 src/gui/gui.cpp:4529 +msgid "effect list" +msgstr "" + +#: src/gui/gui.cpp:4522 +msgid "play/edit controls" +msgstr "" + +#: src/gui/gui.cpp:4523 +msgid "piano/input pad" +msgstr "" + +#: src/gui/gui.cpp:4524 +msgid "spoiler" +msgstr "" + +#: src/gui/gui.cpp:4528 +msgid "Help" +msgstr "" + +#: src/gui/gui.cpp:4528 +msgid "help" +msgstr "" + +#: src/gui/gui.cpp:4530 +msgid "debug menu" +msgstr "" + +#: src/gui/gui.cpp:4531 +msgid "inspector" +msgstr "" + +#: src/gui/gui.cpp:4532 +msgid "panic" +msgstr "" + +#: src/gui/gui.cpp:4533 +msgid "about..." +msgstr "" + +#: src/gui/gui.cpp:4548 +#, c-format +msgid "| Speed %d:%d" +msgstr "" + +#: src/gui/gui.cpp:4550 +#, c-format +msgid "| Speed %d" +msgstr "" + +#: src/gui/gui.cpp:4552 +msgid "| Groove" +msgstr "" + +#: src/gui/gui.cpp:4555 +#, c-format +msgid " @ %gHz (%g BPM) " +msgstr "" + +#: src/gui/gui.cpp:4558 +#, c-format +msgid "| Order %.2X/%.2X " +msgstr "" + +#: src/gui/gui.cpp:4560 +#, c-format +msgid "| Order %d/%d " +msgstr "" + +#: src/gui/gui.cpp:4564 +#, c-format +msgid "| Row %.2X/%.2X " +msgstr "" + +#: src/gui/gui.cpp:4566 +#, c-format +msgid "| Row %d/%d " +msgstr "" + +#: src/gui/gui.cpp:4569 +msgid "| " +msgstr "" + +#: src/gui/gui.cpp:4572 +msgid "Don't you have anything better to do?" +msgstr "" + +#: src/gui/gui.cpp:4582 +#, c-format +msgid "%d year " +msgid_plural "%d years " +msgstr[0] "" +msgstr[1] "" + +#: src/gui/gui.cpp:4583 +#, c-format +msgid "%d month " +msgid_plural "%d months " +msgstr[0] "" +msgstr[1] "" + +#: src/gui/gui.cpp:4584 +#, c-format +msgid "%d day " +msgid_plural "%d days " +msgstr[0] "" +msgstr[1] "" + +#: src/gui/gui.cpp:4609 +msgid "Note off (cut)" +msgstr "" + +#: src/gui/gui.cpp:4611 +msgid "Note off (release)" +msgstr "" + +#: src/gui/gui.cpp:4613 +msgid "Macro release only" +msgstr "" + +#: src/gui/gui.cpp:4615 +#, c-format +msgid "Note on: %s" +msgstr "" + +#: src/gui/gui.cpp:4623 +#, c-format +msgid "Ins %d: " +msgstr "" + +#: src/gui/gui.cpp:4626 +#, c-format +msgid "Ins %d: %s" +msgstr "" + +#: src/gui/gui.cpp:4635 +#, c-format +msgid "Set volume: %d (%.2X, INVALID!)" +msgstr "" + +#: src/gui/gui.cpp:4638 +#, c-format +msgid "Set volume: %d (%.2X, %d%%)" +msgstr "" + +#: src/gui/gui.cpp:4660 +msgid "| modified" +msgstr "" + +#: src/gui/gui.cpp:4825 src/gui/gui.cpp:4828 +msgid "System File Dialog Pending" +msgstr "" + +#: src/gui/gui.cpp:4941 +msgid "" +"there was an error in the file dialog! you may want to report this issue " +"to:\n" +"https://github.com/tildearrow/furnace/issues\n" +"check the Log Viewer (window > log viewer) for more information.\n" +"\n" +"for now please disable the system file picker in Settings > General." +msgstr "" + +#: src/gui/gui.cpp:4944 +msgid "can't do anything without Storage permissions!" +msgstr "" + +#: src/gui/gui.cpp:4946 +msgid "" +"Zenity/KDialog not available!\n" +"please install one of these, or disable the system file picker in Settings > " +"General." +msgstr "" + +#: src/gui/gui.cpp:5082 +msgid "" +"error while saving instrument! only the following instrument types are " +"supported:\n" +"- FM (OPN)\n" +"- SN76489/Sega PSG\n" +"- Game Boy\n" +"- PC Engine\n" +"- NES\n" +"- C64\n" +"- FM (OPLL)\n" +"- FDS" +msgstr "" + +#: src/gui/gui.cpp:5110 +msgid "there were some errors while loading samples:\n" +msgstr "" + +#: src/gui/gui.cpp:5155 src/gui/gui.cpp:6339 +msgid "...but you haven't selected a sample!" +msgstr "" + +#: src/gui/gui.cpp:5170 src/gui/gui.cpp:5179 +msgid "could not save sample! open Log Viewer for more information." +msgstr "" + +#: src/gui/gui.cpp:5198 +msgid "there were some warnings/errors while loading instruments:\n" +msgstr "" + +#: src/gui/gui.cpp:5204 +#, c-format +msgid "> %s: cannot load instrument! (%s)\n" +msgstr "" + +#: src/gui/gui.cpp:5222 src/gui/gui.cpp:5276 +#, c-format +msgid "cannot load instrument! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5228 +msgid "" +"congratulations! you managed to load nothing.\n" +"you are entitled to a bug report." +msgstr "" + +#: src/gui/gui.cpp:5269 src/gui/gui.cpp:6243 +msgid "...but you haven't selected an instrument!" +msgstr "" + +#: src/gui/gui.cpp:5281 +msgid "there were some errors while loading wavetables:\n" +msgstr "" + +#: src/gui/gui.cpp:5290 src/gui/gui.cpp:5300 src/gui/gui.cpp:5319 +#, c-format +msgid "cannot load wavetable! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5327 +msgid "...but you haven't selected a wavetable!" +msgstr "" + +#: src/gui/gui.cpp:5342 src/gui/gui.cpp:5363 src/gui/gui.cpp:5387 +#: src/gui/gui.cpp:5408 +msgid "could not open file!" +msgstr "" + +#: src/gui/gui.cpp:5350 +#, c-format +msgid "could not write VGM! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5371 +#, c-format +msgid "Could not write ZSM! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5395 +#, c-format +msgid "could not write text! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5416 +#, c-format +msgid "could not write command stream! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5440 +msgid "could not import user presets!" +msgstr "" + +#: src/gui/gui.cpp:5445 src/gui/gui.cpp:5462 +#, c-format +msgid "could not import user presets! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5483 +#, c-format +msgid "You opened: %s" +msgstr "" + +#: src/gui/gui.cpp:5486 +msgid "You opened:" +msgstr "" + +#: src/gui/gui.cpp:5494 +#, c-format +msgid "You saved: %s" +msgstr "" + +#: src/gui/gui.cpp:5515 src/gui/gui.cpp:5636 src/gui/gui.cpp:5637 +#: src/gui/insEdit.cpp:7520 +msgid "Error" +msgstr "" + +#: src/gui/gui.cpp:5520 src/gui/gui.cpp:6177 src/gui/gui.cpp:6178 +msgid "Select Instrument" +msgstr "" + +#: src/gui/gui.cpp:5525 src/gui/gui.cpp:6256 src/gui/gui.cpp:6257 +msgid "Import Raw Sample" +msgstr "" + +#: src/gui/gui.cpp:5540 src/gui/gui.cpp:5593 src/gui/gui.cpp:5594 +msgid "Rendering..." +msgstr "" + +#: src/gui/gui.cpp:5595 +msgid "Please wait..." +msgstr "" + +#: src/gui/gui.cpp:5596 +msgid "Abort" +msgstr "" + +#: src/gui/gui.cpp:5638 +#, c-format +msgid "%s" +msgstr "" + +#: src/gui/gui.cpp:5868 +msgid "Erasing" +msgstr "" + +#: src/gui/gui.cpp:5871 +msgid "All subsongs" +msgstr "" + +#: src/gui/gui.cpp:5878 +msgid "Current subsong" +msgstr "" + +#: src/gui/gui.cpp:5945 +msgid "Optimization" +msgstr "" + +#: src/gui/gui.cpp:5948 src/gui/patManager.cpp:36 +msgid "De-duplicate patterns" +msgstr "" + +#: src/gui/gui.cpp:5957 +msgid "Remove unused instruments" +msgstr "" + +#: src/gui/gui.cpp:5970 +msgid "Remove unused samples" +msgstr "" + +#: src/gui/gui.cpp:5987 +msgid "Never mind! Cancel" +msgstr "" + +#: src/gui/gui.cpp:6066 +msgid "Drum kit mode:" +msgstr "" + +#: src/gui/gui.cpp:6070 +msgid "12 samples per octave" +msgstr "" + +#: src/gui/gui.cpp:6075 +msgid "Starting octave" +msgstr "" + +#: src/gui/gui.cpp:6095 +msgid "Drum Kit" +msgstr "" + +#: src/gui/gui.cpp:6181 +msgid "this is an instrument bank! select which one to use:" +msgstr "" + +#: src/gui/gui.cpp:6184 +msgid "this is an instrument bank! select which ones to load:" +msgstr "" + +#: src/gui/gui.cpp:6258 +msgid "Data type:" +msgstr "" + +#: src/gui/gui.cpp:6285 +msgid "(will be mixed down to mono)" +msgstr "" + +#: src/gui/gui.cpp:6286 +msgid "Unsigned" +msgstr "" + +#: src/gui/gui.cpp:6290 +msgid "Big endian" +msgstr "" + +#: src/gui/gui.cpp:6298 +msgid "Swap nibbles" +msgstr "" + +#: src/gui/gui.cpp:6302 +msgid "Swap words" +msgstr "" + +#: src/gui/gui.cpp:6306 +msgid "Encoding:" +msgstr "" + +#: src/gui/gui.cpp:6319 +msgid "Reverse bit order" +msgstr "" + +#: src/gui/gui.cpp:6361 +msgid "Error! No string provided!" +msgstr "" + +#: src/gui/gui.cpp:6683 +msgid "it appears I couldn't load these fonts. any setting you can check?" +msgstr "" + +#: src/gui/gui.cpp:6863 src/gui/gui.cpp:6971 +msgid "" +"could not init renderer!\n" +"falling back to software renderer. please restart Furnace." +msgstr "" + +#: src/gui/gui.cpp:6865 src/gui/gui.cpp:6973 +#, c-format +msgid "" +"could not init renderer! %s\n" +"falling back to software renderer. please restart Furnace." +msgstr "" + +#: src/gui/gui.cpp:6870 src/gui/gui.cpp:6978 +msgid "could not init renderer!" +msgstr "" + +#: src/gui/gui.cpp:6881 +#, c-format +msgid "could not open window! %s" +msgstr "" + +#: src/gui/gui.cpp:6886 +msgid "" +"\n" +"falling back to software renderer. please restart Furnace." +msgstr "" + +#: src/gui/gui.cpp:7034 +msgid "Size column to fit###SizeOne" +msgstr "" + +#: src/gui/gui.cpp:7036 +msgid "Size all columns to fit###SizeAll" +msgstr "" + +#: src/gui/gui.cpp:7038 +msgid "Size all columns to default###SizeAll" +msgstr "" + +#: src/gui/gui.cpp:7040 +msgid "Reset order###ResetOrder" +msgstr "" + +#: src/gui/gui.cpp:7042 +msgid "(Main menu bar)" +msgstr "" + +#: src/gui/gui.cpp:7044 +msgid "(Popup)" +msgstr "" + +#: src/gui/gui.cpp:7046 +msgid "(Untitled)" +msgstr "" + +#: src/gui/gui.cpp:7048 +msgid "Hide tab bar###HideTabBar" +msgstr "" + +#: src/gui/gui.cpp:7052 +msgid "LocaleSettings: ccjk" +msgstr "" + +#: src/gui/gui.cpp:7564 +msgid "Unsaved changes! Save changes before quitting?" +msgstr "" + +#: src/gui/sysManager.cpp:42 +msgid "Preserve channel order" +msgstr "" + +#: src/gui/sysManager.cpp:44 +msgid "Clone channel data" +msgstr "" + +#: src/gui/sysManager.cpp:46 +msgid "Clone at end" +msgstr "" + +#: src/gui/sysManager.cpp:56 +msgid "Actions" +msgstr "" + +#: src/gui/sysManager.cpp:69 +msgid "(drag to swap chips)" +msgstr "" + +#: src/gui/sysManager.cpp:90 +msgid "Clone##SysDup" +msgstr "" + +#: src/gui/sysManager.cpp:92 +#, c-format +msgid "cannot clone chip! (%s)" +msgstr "" + +#: src/gui/sysManager.cpp:98 +msgid "Change##SysChange" +msgstr "" + +#: src/gui/sysManager.cpp:120 +msgid "Are you sure you want to remove this chip?" +msgstr "" + +#: src/gui/patManager.cpp:43 +msgid "Re-arrange patterns" +msgstr "" + +#: src/gui/patManager.cpp:50 +msgid "Sort orders" +msgstr "" + +#: src/gui/patManager.cpp:57 +msgid "Make patterns unique" +msgstr "" + +#: src/gui/patManager.cpp:103 +#, c-format +msgid "" +"Pattern %.2X\n" +"- not allocated" +msgstr "" + +#: src/gui/patManager.cpp:105 +#, c-format +msgid "" +"Pattern %.2X\n" +"- use count: %d (%.0f%%)\n" +"\n" +"right-click to erase" +msgstr "" + +#: src/gui/insEdit.cpp:39 +msgid "Down Down Down" +msgstr "" + +#: src/gui/insEdit.cpp:40 +msgid "Down." +msgstr "" + +#: src/gui/insEdit.cpp:41 +msgid "Down Up Down Up" +msgstr "" + +#: src/gui/insEdit.cpp:42 +msgid "Down UP" +msgstr "" + +#: src/gui/insEdit.cpp:43 +msgid "Up Up Up" +msgstr "" + +#: src/gui/insEdit.cpp:44 +msgid "Up." +msgstr "" + +#: src/gui/insEdit.cpp:45 +msgid "Up Down Up Down" +msgstr "" + +#: src/gui/insEdit.cpp:46 +msgid "Up DOWN" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Algorithm" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Feedback" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "LFO > Freq" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "LFO > Amp" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Decay 2" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "EnvScale" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Multiplier" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Detune 2" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "AM" +msgstr "" + +#: src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:5438 src/gui/insEdit.cpp:6516 +msgid "AM Depth" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Vibrato Depth" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Sustained" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Level Scaling" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Vibrato" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Scale Rate" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "OP2 Half Sine" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "OP1 Half Sine" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "EnvShift" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Reverb" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Fine" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "LFO2 > Freq" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "LFO2 > Amp" +msgstr "" + +#: src/gui/insEdit.cpp:56 src/gui/insEdit.cpp:68 src/gui/insEdit.cpp:7391 +msgid "OP4 Noise Mode" +msgstr "" + +#: src/gui/insEdit.cpp:57 +msgid "Envelope Delay" +msgstr "" + +#: src/gui/insEdit.cpp:58 src/gui/insEdit.cpp:70 +msgid "Output Level" +msgstr "" + +#: src/gui/insEdit.cpp:59 +msgid "Modulation Input Level" +msgstr "" + +#: src/gui/insEdit.cpp:60 +msgid "Left Output" +msgstr "" + +#: src/gui/insEdit.cpp:61 +msgid "Right Output" +msgstr "" + +#: src/gui/insEdit.cpp:62 +msgid "Coarse Tune (semitones)" +msgstr "" + +#: src/gui/insEdit.cpp:64 +msgid "Fixed Frequency Mode" +msgstr "" + +#: src/gui/insEdit.cpp:69 +msgid "Env. Delay" +msgstr "" + +#: src/gui/insEdit.cpp:71 +msgid "ModInput" +msgstr "" + +#: src/gui/insEdit.cpp:72 +msgid "Left" +msgstr "" + +#: src/gui/insEdit.cpp:73 +msgid "Right" +msgstr "" + +#: src/gui/insEdit.cpp:74 +msgid "Tune" +msgstr "" + +#: src/gui/insEdit.cpp:76 src/gui/insEdit.cpp:610 src/gui/insEdit.cpp:3792 +#: src/gui/insEdit.cpp:4554 src/gui/insEdit.cpp:4848 +msgid "Fixed" +msgstr "" + +#: src/gui/insEdit.cpp:98 src/gui/insEdit.cpp:117 src/gui/insEdit.cpp:136 +#: src/gui/insEdit.cpp:156 +msgid "User" +msgstr "" + +#: src/gui/insEdit.cpp:99 +msgid "1. Violin" +msgstr "" + +#: src/gui/insEdit.cpp:100 src/gui/insEdit.cpp:138 src/gui/insEdit.cpp:158 +msgid "2. Guitar" +msgstr "" + +#: src/gui/insEdit.cpp:101 src/gui/insEdit.cpp:159 +msgid "3. Piano" +msgstr "" + +#: src/gui/insEdit.cpp:102 src/gui/insEdit.cpp:160 +msgid "4. Flute" +msgstr "" + +#: src/gui/insEdit.cpp:103 src/gui/insEdit.cpp:122 src/gui/insEdit.cpp:161 +msgid "5. Clarinet" +msgstr "" + +#: src/gui/insEdit.cpp:104 +msgid "6. Oboe" +msgstr "" + +#: src/gui/insEdit.cpp:105 src/gui/insEdit.cpp:124 src/gui/insEdit.cpp:143 +#: src/gui/insEdit.cpp:163 +msgid "7. Trumpet" +msgstr "" + +#: src/gui/insEdit.cpp:106 +msgid "8. Organ" +msgstr "" + +#: src/gui/insEdit.cpp:107 +msgid "9. Horn" +msgstr "" + +#: src/gui/insEdit.cpp:108 +msgid "10. Synth" +msgstr "" + +#: src/gui/insEdit.cpp:109 +msgid "11. Harpsichord" +msgstr "" + +#: src/gui/insEdit.cpp:110 src/gui/insEdit.cpp:129 src/gui/insEdit.cpp:148 +msgid "12. Vibraphone" +msgstr "" + +#: src/gui/insEdit.cpp:111 +msgid "13. Synth Bass" +msgstr "" + +#: src/gui/insEdit.cpp:112 +msgid "14. Acoustic Bass" +msgstr "" + +#: src/gui/insEdit.cpp:113 +msgid "15. Electric Guitar" +msgstr "" + +#: src/gui/insEdit.cpp:114 src/gui/insEdit.cpp:133 src/gui/insEdit.cpp:152 +#: src/gui/insEdit.cpp:172 src/gui/insEdit.cpp:3176 +msgid "Drums" +msgstr "" + +#: src/gui/insEdit.cpp:118 +msgid "1. Electric String" +msgstr "" + +#: src/gui/insEdit.cpp:119 +msgid "2. Bow wow" +msgstr "" + +#: src/gui/insEdit.cpp:120 src/gui/insEdit.cpp:139 +msgid "3. Electric Guitar" +msgstr "" + +#: src/gui/insEdit.cpp:121 +msgid "4. Organ" +msgstr "" + +#: src/gui/insEdit.cpp:123 +msgid "6. Saxophone" +msgstr "" + +#: src/gui/insEdit.cpp:125 +msgid "8. Street Organ" +msgstr "" + +#: src/gui/insEdit.cpp:126 +msgid "9. Synth Brass" +msgstr "" + +#: src/gui/insEdit.cpp:127 +msgid "10. Electric Piano" +msgstr "" + +#: src/gui/insEdit.cpp:128 +msgid "11. Bass" +msgstr "" + +#: src/gui/insEdit.cpp:130 +msgid "13. Chime" +msgstr "" + +#: src/gui/insEdit.cpp:131 +msgid "14. Tom Tom II" +msgstr "" + +#: src/gui/insEdit.cpp:132 +msgid "15. Noise" +msgstr "" + +#: src/gui/insEdit.cpp:137 +msgid "1. Strings" +msgstr "" + +#: src/gui/insEdit.cpp:140 +msgid "4. Electric Piano" +msgstr "" + +#: src/gui/insEdit.cpp:141 +msgid "5. Flute" +msgstr "" + +#: src/gui/insEdit.cpp:142 +msgid "6. Marimba" +msgstr "" + +#: src/gui/insEdit.cpp:144 +msgid "8. Harmonica" +msgstr "" + +#: src/gui/insEdit.cpp:145 +msgid "9. Tuba" +msgstr "" + +#: src/gui/insEdit.cpp:146 +msgid "10. Synth Brass" +msgstr "" + +#: src/gui/insEdit.cpp:147 +msgid "11. Short Saw" +msgstr "" + +#: src/gui/insEdit.cpp:149 +msgid "13. Electric Guitar 2" +msgstr "" + +#: src/gui/insEdit.cpp:150 +msgid "14. Synth Bass" +msgstr "" + +#: src/gui/insEdit.cpp:151 +msgid "15. Sitar" +msgstr "" + +#: src/gui/insEdit.cpp:157 +msgid "1. Bell" +msgstr "" + +#: src/gui/insEdit.cpp:162 +msgid "6. Rattling Bell" +msgstr "" + +#: src/gui/insEdit.cpp:164 +msgid "8. Reed Organ" +msgstr "" + +#: src/gui/insEdit.cpp:165 +msgid "9. Soft Bell" +msgstr "" + +#: src/gui/insEdit.cpp:166 +msgid "10. Xylophone" +msgstr "" + +#: src/gui/insEdit.cpp:167 +msgid "11. Vibraphone" +msgstr "" + +#: src/gui/insEdit.cpp:168 +msgid "12. Brass" +msgstr "" + +#: src/gui/insEdit.cpp:169 +msgid "13. Bass Guitar" +msgstr "" + +#: src/gui/insEdit.cpp:170 +msgid "14. Synth" +msgstr "" + +#: src/gui/insEdit.cpp:171 +msgid "15. Chorus" +msgstr "" + +#: src/gui/insEdit.cpp:178 src/gui/insEdit.cpp:189 +msgid "Half Sine" +msgstr "" + +#: src/gui/insEdit.cpp:179 src/gui/insEdit.cpp:190 +msgid "Absolute Sine" +msgstr "" + +#: src/gui/insEdit.cpp:180 +msgid "Quarter Sine" +msgstr "" + +#: src/gui/insEdit.cpp:181 src/gui/insEdit.cpp:203 +msgid "Squished Sine" +msgstr "" + +#: src/gui/insEdit.cpp:182 src/gui/insEdit.cpp:205 +msgid "Squished AbsSine" +msgstr "" + +#: src/gui/insEdit.cpp:184 src/gui/insEdit.cpp:195 +msgid "Derived Square" +msgstr "" + +#: src/gui/insEdit.cpp:191 +msgid "Pulse Sine" +msgstr "" + +#: src/gui/insEdit.cpp:192 +msgid "Sine (Even Periods)" +msgstr "" + +#: src/gui/insEdit.cpp:193 +msgid "AbsSine (Even Periods)" +msgstr "" + +#: src/gui/insEdit.cpp:201 +msgid "Cut Sine" +msgstr "" + +#: src/gui/insEdit.cpp:202 +msgid "Cut Triangle" +msgstr "" + +#: src/gui/insEdit.cpp:204 +msgid "Squished Triangle" +msgstr "" + +#: src/gui/insEdit.cpp:206 +msgid "Squished AbsTriangle" +msgstr "" + +#: src/gui/insEdit.cpp:224 +msgid "Noise disabled" +msgstr "" + +#: src/gui/insEdit.cpp:225 +msgid "Square + noise" +msgstr "" + +#: src/gui/insEdit.cpp:226 +msgid "Ringmod from OP3 + noise" +msgstr "" + +#: src/gui/insEdit.cpp:227 +msgid "" +"Ringmod from OP3 + double pitch ModInput\n" +"WARNING - has emulation issues; subject to change" +msgstr "" + +#: src/gui/insEdit.cpp:232 +msgid "Bitwise AND" +msgstr "" + +#: src/gui/insEdit.cpp:233 +msgid "Bitwise OR" +msgstr "" + +#: src/gui/insEdit.cpp:234 +msgid "Bitwise XOR" +msgstr "" + +#: src/gui/insEdit.cpp:239 src/gui/insEdit.cpp:390 +msgid "gate" +msgstr "" + +#: src/gui/insEdit.cpp:240 src/gui/insEdit.cpp:391 +msgid "sync" +msgstr "" + +#: src/gui/insEdit.cpp:241 src/gui/insEdit.cpp:392 +msgid "ring" +msgstr "" + +#: src/gui/insEdit.cpp:327 +msgid "How did you even" +msgstr "" + +#: src/gui/insEdit.cpp:335 +msgid "triangle" +msgstr "" + +#: src/gui/insEdit.cpp:336 src/gui/insEdit.cpp:5821 +msgid "saw" +msgstr "" + +#: src/gui/insEdit.cpp:337 src/gui/insEdit.cpp:5827 +msgid "pulse" +msgstr "" + +#: src/gui/insEdit.cpp:338 src/gui/insEdit.cpp:344 src/gui/insEdit.cpp:373 +#: src/gui/insEdit.cpp:424 src/gui/insEdit.cpp:429 src/gui/insEdit.cpp:5833 +msgid "noise" +msgstr "" + +#: src/gui/insEdit.cpp:343 +msgid "tone" +msgstr "" + +#: src/gui/insEdit.cpp:345 +msgid "envelope" +msgstr "" + +#: src/gui/insEdit.cpp:350 +msgid "hold" +msgstr "" + +#: src/gui/insEdit.cpp:351 +msgid "alternate" +msgstr "" + +#: src/gui/insEdit.cpp:352 src/gui/insEdit.cpp:364 +msgid "direction" +msgstr "" + +#: src/gui/insEdit.cpp:353 src/gui/insEdit.cpp:436 +msgid "enable" +msgstr "" + +#: src/gui/insEdit.cpp:357 src/gui/insEdit.cpp:368 +msgid "enabled" +msgstr "" + +#: src/gui/insEdit.cpp:361 +msgid "mirror" +msgstr "" + +#: src/gui/insEdit.cpp:365 +msgid "resolution" +msgstr "" + +#: src/gui/insEdit.cpp:366 +msgid "fixed" +msgstr "" + +#: src/gui/insEdit.cpp:367 +msgid "N/A" +msgstr "" + +#: src/gui/insEdit.cpp:374 +msgid "echo" +msgstr "" + +#: src/gui/insEdit.cpp:375 +msgid "pitch mod" +msgstr "" + +#: src/gui/insEdit.cpp:376 src/gui/insEdit.cpp:508 +msgid "invert right" +msgstr "" + +#: src/gui/insEdit.cpp:377 src/gui/insEdit.cpp:509 +msgid "invert left" +msgstr "" + +#: src/gui/insEdit.cpp:382 src/gui/insEdit.cpp:5905 +msgid "low" +msgstr "" + +#: src/gui/insEdit.cpp:383 src/gui/insEdit.cpp:5911 +msgid "band" +msgstr "" + +#: src/gui/insEdit.cpp:384 src/gui/insEdit.cpp:5917 +msgid "high" +msgstr "" + +#: src/gui/insEdit.cpp:385 src/gui/insEdit.cpp:5924 +msgid "ch3off" +msgstr "" + +#: src/gui/insEdit.cpp:393 +msgid "test" +msgstr "" + +#: src/gui/insEdit.cpp:398 +msgid "15KHz" +msgstr "" + +#: src/gui/insEdit.cpp:399 +msgid "filter 2+4" +msgstr "" + +#: src/gui/insEdit.cpp:400 +msgid "filter 1+3" +msgstr "" + +#: src/gui/insEdit.cpp:401 +msgid "16-bit 3+4" +msgstr "" + +#: src/gui/insEdit.cpp:402 +msgid "16-bit 1+2" +msgstr "" + +#: src/gui/insEdit.cpp:403 +msgid "high3" +msgstr "" + +#: src/gui/insEdit.cpp:404 +msgid "high1" +msgstr "" + +#: src/gui/insEdit.cpp:405 +msgid "poly9" +msgstr "" + +#: src/gui/insEdit.cpp:414 +msgid "16'" +msgstr "" + +#: src/gui/insEdit.cpp:415 +msgid "8'" +msgstr "" + +#: src/gui/insEdit.cpp:416 +msgid "4'" +msgstr "" + +#: src/gui/insEdit.cpp:417 +msgid "2'" +msgstr "" + +#: src/gui/insEdit.cpp:418 +msgid "sustain" +msgstr "" + +#: src/gui/insEdit.cpp:423 +msgid "square" +msgstr "" + +#: src/gui/insEdit.cpp:431 +msgid "surround" +msgstr "" + +#: src/gui/insEdit.cpp:437 +msgid "oneshot" +msgstr "" + +#: src/gui/insEdit.cpp:438 +msgid "split L/R" +msgstr "" + +#: src/gui/insEdit.cpp:439 +msgid "HinvR" +msgstr "" + +#: src/gui/insEdit.cpp:440 +msgid "VinvR" +msgstr "" + +#: src/gui/insEdit.cpp:441 +msgid "HinvL" +msgstr "" + +#: src/gui/insEdit.cpp:442 +msgid "VinvL" +msgstr "" + +#: src/gui/insEdit.cpp:447 src/gui/insEdit.cpp:476 +msgid "ring mod" +msgstr "" + +#: src/gui/insEdit.cpp:448 +msgid "low pass" +msgstr "" + +#: src/gui/insEdit.cpp:449 src/gui/insEdit.cpp:475 +msgid "high pass" +msgstr "" + +#: src/gui/insEdit.cpp:450 +msgid "band pass" +msgstr "" + +#: src/gui/insEdit.cpp:459 +msgid "enable tap B" +msgstr "" + +#: src/gui/insEdit.cpp:460 +msgid "AM with slope" +msgstr "" + +#: src/gui/insEdit.cpp:465 +msgid "invert B" +msgstr "" + +#: src/gui/insEdit.cpp:466 +msgid "invert A" +msgstr "" + +#: src/gui/insEdit.cpp:467 +msgid "reset B" +msgstr "" + +#: src/gui/insEdit.cpp:468 +msgid "reset A" +msgstr "" + +#: src/gui/insEdit.cpp:469 +msgid "clip B" +msgstr "" + +#: src/gui/insEdit.cpp:470 +msgid "clip A" +msgstr "" + +#: src/gui/insEdit.cpp:477 +msgid "swap counters (noise)" +msgstr "" + +#: src/gui/insEdit.cpp:478 +msgid "low pass (noise)" +msgstr "" + +#: src/gui/insEdit.cpp:485 +msgid "rear right" +msgstr "" + +#: src/gui/insEdit.cpp:486 +msgid "rear left" +msgstr "" + +#: src/gui/insEdit.cpp:491 +msgid "on" +msgstr "" + +#: src/gui/insEdit.cpp:496 +msgid "k1 slowdown" +msgstr "" + +#: src/gui/insEdit.cpp:497 +msgid "k2 slowdown" +msgstr "" + +#: src/gui/insEdit.cpp:502 +msgid "pause" +msgstr "" + +#: src/gui/insEdit.cpp:503 +msgid "reverse" +msgstr "" + +#: src/gui/insEdit.cpp:521 +msgid "Subtract" +msgstr "" + +#: src/gui/insEdit.cpp:522 +msgid "Average" +msgstr "" + +#: src/gui/insEdit.cpp:523 src/gui/insEdit.cpp:2037 +msgid "Phase" +msgstr "" + +#: src/gui/insEdit.cpp:524 +msgid "Chorus" +msgstr "" + +#: src/gui/insEdit.cpp:528 +msgid "None (dual)" +msgstr "" + +#: src/gui/insEdit.cpp:529 +msgid "Wipe" +msgstr "" + +#: src/gui/insEdit.cpp:531 +msgid "Fade (ping-pong)" +msgstr "" + +#: src/gui/insEdit.cpp:532 +msgid "Overlay" +msgstr "" + +#: src/gui/insEdit.cpp:533 +msgid "Negative Overlay" +msgstr "" + +#: src/gui/insEdit.cpp:534 +msgid "Slide" +msgstr "" + +#: src/gui/insEdit.cpp:535 +msgid "Mix Chorus" +msgstr "" + +#: src/gui/insEdit.cpp:536 +msgid "Phase Modulation" +msgstr "" + +#: src/gui/insEdit.cpp:541 +msgid "Sweep" +msgstr "" + +#: src/gui/insEdit.cpp:542 src/gui/insEdit.cpp:552 +msgid "Wait" +msgstr "" + +#: src/gui/insEdit.cpp:543 src/gui/insEdit.cpp:553 +msgid "Wait for Release" +msgstr "" + +#: src/gui/insEdit.cpp:545 src/gui/insEdit.cpp:555 +msgid "Loop until Release" +msgstr "" + +#: src/gui/insEdit.cpp:549 +msgid "Volume Sweep" +msgstr "" + +#: src/gui/insEdit.cpp:550 +msgid "Frequency Sweep" +msgstr "" + +#: src/gui/insEdit.cpp:551 +msgid "Cutoff Sweep" +msgstr "" + +#: src/gui/insEdit.cpp:559 src/gui/insEdit.cpp:6604 +msgid "Direct" +msgstr "" + +#: src/gui/insEdit.cpp:560 src/gui/insEdit.cpp:6608 +msgid "Decrease (linear)" +msgstr "" + +#: src/gui/insEdit.cpp:561 src/gui/insEdit.cpp:6612 +msgid "Decrease (logarithmic)" +msgstr "" + +#: src/gui/insEdit.cpp:562 src/gui/insEdit.cpp:6616 +msgid "Increase (linear)" +msgstr "" + +#: src/gui/insEdit.cpp:563 src/gui/insEdit.cpp:6620 +msgid "Increase (bent line)" +msgstr "" + +#: src/gui/insEdit.cpp:611 +msgid "Relative" +msgstr "" + +#: src/gui/insEdit.cpp:616 +#, c-format +msgid "%d: +%d (exponential)" +msgstr "" + +#: src/gui/insEdit.cpp:619 +#, c-format +msgid "%d: +%d (linear)" +msgstr "" + +#: src/gui/insEdit.cpp:622 +#, c-format +msgid "%d: -%d (exponential)" +msgstr "" + +#: src/gui/insEdit.cpp:625 +#, c-format +msgid "%d: -%d (linear)" +msgstr "" + +#: src/gui/insEdit.cpp:627 +#, c-format +msgid "%d: %d (direct)" +msgstr "" + +#: src/gui/insEdit.cpp:660 +msgid "Random" +msgstr "" + +#: src/gui/insEdit.cpp:1610 +msgid "" +"left click to restart\n" +"middle click to pause\n" +"right click to see algorithm" +msgstr "" + +#: src/gui/insEdit.cpp:1620 +msgid "" +"left click to configure TL scaling\n" +"right click to see FM preview" +msgstr "" + +#: src/gui/insEdit.cpp:1624 +msgid "right click to see FM preview" +msgstr "" + +#: src/gui/insEdit.cpp:1639 +msgid "operator level changes with volume?" +msgstr "" + +#: src/gui/insEdit.cpp:1648 +msgid "AUTO##OPKVS" +msgstr "" + +#: src/gui/insEdit.cpp:1650 +msgid "NO##OPKVS" +msgstr "" + +#: src/gui/insEdit.cpp:1652 +msgid "YES##OPKVS" +msgstr "" + +#: src/gui/insEdit.cpp:1900 src/gui/insEdit.cpp:2005 +msgid "Bottom" +msgstr "" + +#: src/gui/insEdit.cpp:1940 +msgid "Hold" +msgstr "" + +#: src/gui/insEdit.cpp:1949 +msgid "SusTime" +msgstr "" + +#: src/gui/insEdit.cpp:1969 +msgid "SusDecay" +msgstr "" + +#: src/gui/insEdit.cpp:2047 +msgid "Shape" +msgstr "" + +#: src/gui/insEdit.cpp:2100 +msgid "Macro type: Sequence" +msgstr "" + +#: src/gui/insEdit.cpp:2103 +msgid "Macro type: ADSR" +msgstr "" + +#: src/gui/insEdit.cpp:2106 +msgid "Macro type: LFO" +msgstr "" + +#: src/gui/insEdit.cpp:2109 +msgid "Macro type: What's going on here?" +msgstr "" + +#: src/gui/insEdit.cpp:2122 +msgid "Delay/Step Length" +msgstr "" + +#: src/gui/insEdit.cpp:2125 +msgid "Step Length (ticks)##IMacroSpeed" +msgstr "" + +#: src/gui/insEdit.cpp:2129 +msgid "Delay##IMacroDelay" +msgstr "" + +#: src/gui/insEdit.cpp:2142 +msgid "Release mode: Active (jump to release pos)" +msgstr "" + +#: src/gui/insEdit.cpp:2144 +msgid "Release mode: Passive (delayed release)" +msgstr "" + +#: src/gui/insEdit.cpp:2393 +msgid "StepLen" +msgstr "" + +#: src/gui/insEdit.cpp:2401 +msgid "Delay" +msgstr "" + +#: src/gui/insEdit.cpp:2425 +msgid "The heck? No, this isn't even working correctly..." +msgstr "" + +#: src/gui/insEdit.cpp:2428 +msgid "The only problem with that selectedMacro is that it's a bug..." +msgstr "" + +#: src/gui/insEdit.cpp:2589 +msgid "(copying)" +msgstr "" + +#: src/gui/insEdit.cpp:2591 +msgid "(swapping)" +msgstr "" + +#: src/gui/insEdit.cpp:2595 +msgid "" +"- drag to swap operator\n" +"- shift-drag to copy operator" +msgstr "" + +#: src/gui/insEdit.cpp:2632 +msgid "new DPCM features disabled (compatibility)!" +msgstr "" + +#: src/gui/insEdit.cpp:2633 +msgid "click here to enable them." +msgstr "" + +#: src/gui/insEdit.cpp:2644 +msgid "none selected" +msgstr "" + +#: src/gui/insEdit.cpp:2657 +msgid "Use sample" +msgstr "" + +#: src/gui/insEdit.cpp:2659 +msgid "Sample bank slot##BANKSLOT" +msgstr "" + +#: src/gui/insEdit.cpp:2681 +msgid "Use wavetable (Amiga/Generic DAC only)" +msgstr "" + +#: src/gui/insEdit.cpp:2681 +msgid "Use wavetable" +msgstr "" + +#: src/gui/insEdit.cpp:2708 +msgid "Use sample map" +msgstr "" + +#: src/gui/insEdit.cpp:2730 +msgid "delta" +msgstr "" + +#: src/gui/insEdit.cpp:2736 +msgid "sample name" +msgstr "" + +#: src/gui/insEdit.cpp:3001 +msgid "set entire map to this pitch" +msgstr "" + +#: src/gui/insEdit.cpp:3009 +msgid "set entire map to this delta counter value" +msgstr "" + +#: src/gui/insEdit.cpp:3018 +msgid "set entire map to this note" +msgstr "" + +#: src/gui/insEdit.cpp:3027 +msgid "set entire map to this sample" +msgstr "" + +#: src/gui/insEdit.cpp:3037 +msgid "reset pitches" +msgstr "" + +#: src/gui/insEdit.cpp:3042 +msgid "clear delta counter values" +msgstr "" + +#: src/gui/insEdit.cpp:3048 +msgid "reset notes" +msgstr "" + +#: src/gui/insEdit.cpp:3054 +msgid "clear map samples" +msgstr "" + +#: src/gui/insEdit.cpp:3148 +msgid "Request from TX81Z" +msgstr "" + +#: src/gui/insEdit.cpp:3234 +#, c-format +msgid "%s name" +msgstr "" + +#: src/gui/insEdit.cpp:3286 +msgid "Fixed frequency mode" +msgstr "" + +#: src/gui/insEdit.cpp:3288 +msgid "" +"when enabled, drums will be set to the specified frequencies, ignoring the " +"note." +msgstr "" + +#: src/gui/insEdit.cpp:3296 +msgid "Drum" +msgstr "" + +#: src/gui/insEdit.cpp:3298 src/gui/insEdit.cpp:3798 src/gui/insEdit.cpp:3904 +#: src/gui/insEdit.cpp:4404 src/gui/insEdit.cpp:4468 src/gui/insEdit.cpp:5068 +#: src/gui/insEdit.cpp:5518 +msgid "Block" +msgstr "" + +#: src/gui/insEdit.cpp:3300 src/gui/insEdit.cpp:3803 src/gui/insEdit.cpp:3909 +#: src/gui/insEdit.cpp:4993 src/gui/insEdit.cpp:5079 src/gui/insEdit.cpp:5519 +msgid "FreqNum" +msgstr "" + +#: src/gui/insEdit.cpp:3303 +msgid "Snare/Hi-hat" +msgstr "" + +#: src/gui/insEdit.cpp:3304 +msgid "Tom/Top" +msgstr "" + +#: src/gui/insEdit.cpp:3314 +msgid "Volume##TL" +msgstr "" + +#: src/gui/insEdit.cpp:3316 +msgid "this volume slider only works in compatibility (non-drums) system." +msgstr "" + +#: src/gui/insEdit.cpp:3626 +msgid "Env" +msgstr "" + +#: src/gui/insEdit.cpp:3980 src/gui/insEdit.cpp:4346 src/gui/insEdit.cpp:4396 +#: src/gui/insEdit.cpp:5104 +msgid "OPL2/3 only (last 4 waveforms are OPL3 only)" +msgstr "" + +#: src/gui/insEdit.cpp:4079 src/gui/insEdit.cpp:4788 +#, c-format +msgid "Envelope 2 (kick only)" +msgstr "" + +#: src/gui/insEdit.cpp:4084 +#, c-format +msgid "Operator %d" +msgstr "" + +#: src/gui/insEdit.cpp:4414 +msgid "Freq" +msgstr "" + +#: src/gui/insEdit.cpp:4443 +msgid "Only on YM2151 (OPM)" +msgstr "" + +#: src/gui/insEdit.cpp:4466 +msgid "Blk" +msgstr "" + +#: src/gui/insEdit.cpp:4479 +msgid "F" +msgstr "" + +#: src/gui/insEdit.cpp:4481 +msgid "Frequency (F-Num)" +msgstr "" + +#: src/gui/insEdit.cpp:4833 +msgid "SSG On" +msgstr "" + +#: src/gui/insEdit.cpp:5206 src/gui/insEdit.cpp:5207 +msgid "waiting..." +msgstr "" + +#: src/gui/insEdit.cpp:5210 src/gui/insEdit.cpp:5211 +msgid "no instrument selected" +msgstr "" + +#: src/gui/insEdit.cpp:5393 +msgid "" +"none of the currently present chips are able to play this instrument type!" +msgstr "" + +#: src/gui/insEdit.cpp:5413 +msgid "FM Macros" +msgstr "" + +#: src/gui/insEdit.cpp:5435 src/gui/insEdit.cpp:5440 +msgid "LFO Speed" +msgstr "" + +#: src/gui/insEdit.cpp:5439 src/gui/insEdit.cpp:6514 +msgid "PM Depth" +msgstr "" + +#: src/gui/insEdit.cpp:5441 +msgid "LFO Shape" +msgstr "" + +#: src/gui/insEdit.cpp:5444 +msgid "OpMask" +msgstr "" + +#: src/gui/insEdit.cpp:5446 +msgid "AM Depth 2" +msgstr "" + +#: src/gui/insEdit.cpp:5447 +msgid "PM Depth 2" +msgstr "" + +#: src/gui/insEdit.cpp:5448 +msgid "LFO2 Speed" +msgstr "" + +#: src/gui/insEdit.cpp:5449 +msgid "LFO2 Shape" +msgstr "" + +#: src/gui/insEdit.cpp:5458 +#, c-format +msgid "Operator Macros" +msgstr "" + +#: src/gui/insEdit.cpp:5460 +#, c-format +msgid "OP%d Macros" +msgstr "" + +#: src/gui/insEdit.cpp:5521 +msgid "Op. Arpeggio" +msgstr "" + +#: src/gui/insEdit.cpp:5522 +msgid "Op. Pitch" +msgstr "" + +#: src/gui/insEdit.cpp:5531 +msgid "Op. Panning" +msgstr "" + +#: src/gui/insEdit.cpp:5558 +msgid "Use software envelope" +msgstr "" + +#: src/gui/insEdit.cpp:5559 +msgid "Initialize envelope on every note" +msgstr "" + +#: src/gui/insEdit.cpp:5560 +msgid "Double wave length (GBA only)" +msgstr "" + +#: src/gui/insEdit.cpp:5589 src/gui/insEdit.cpp:5666 +msgid "Sound Length" +msgstr "" + +#: src/gui/insEdit.cpp:5592 src/gui/insEdit.cpp:5666 +msgid "Infinity" +msgstr "" + +#: src/gui/insEdit.cpp:5596 +msgid "Direction" +msgstr "" + +#: src/gui/insEdit.cpp:5599 src/gui/insEdit.cpp:5669 src/gui/insEdit.cpp:5697 +#: src/gui/insEdit.cpp:6008 src/gui/insEdit.cpp:6051 +msgid "Up" +msgstr "" + +#: src/gui/insEdit.cpp:5604 src/gui/insEdit.cpp:5674 src/gui/insEdit.cpp:5702 +#: src/gui/insEdit.cpp:6013 src/gui/insEdit.cpp:6056 +msgid "Down" +msgstr "" + +#: src/gui/insEdit.cpp:5620 src/gui/insEdit.cpp:5953 +msgid "Hardware Sequence" +msgstr "" + +#: src/gui/insEdit.cpp:5630 src/gui/insEdit.cpp:5963 +msgid "Tick" +msgstr "" + +#: src/gui/insEdit.cpp:5632 src/gui/insEdit.cpp:5965 +msgid "Command" +msgstr "" + +#: src/gui/insEdit.cpp:5634 src/gui/insEdit.cpp:5967 +msgid "Move/Remove" +msgstr "" + +#: src/gui/insEdit.cpp:5663 +msgid "Env Length" +msgstr "" + +#: src/gui/insEdit.cpp:5690 +msgid "Shift" +msgstr "" + +#: src/gui/insEdit.cpp:5717 src/gui/insEdit.cpp:6073 +msgid "Ticks" +msgstr "" + +#: src/gui/insEdit.cpp:5736 src/gui/insEdit.cpp:6092 src/gui/insEdit.cpp:6239 +msgid "Position" +msgstr "" + +#: src/gui/insEdit.cpp:5815 +msgid "tri" +msgstr "" + +#: src/gui/insEdit.cpp:5882 +msgid "Ring Modulation" +msgstr "" + +#: src/gui/insEdit.cpp:5886 +msgid "Oscillator Sync" +msgstr "" + +#: src/gui/insEdit.cpp:5890 +msgid "Enable filter" +msgstr "" + +#: src/gui/insEdit.cpp:5891 +msgid "Initialize filter" +msgstr "" + +#: src/gui/insEdit.cpp:5894 src/gui/insEdit.cpp:5897 src/gui/insEdit.cpp:6951 +#: src/gui/insEdit.cpp:7215 src/gui/insEdit.cpp:7476 +msgid "Cutoff" +msgstr "" + +#: src/gui/insEdit.cpp:5902 src/gui/insEdit.cpp:6408 src/gui/insEdit.cpp:6952 +#: src/gui/insEdit.cpp:7179 src/gui/insEdit.cpp:7477 +msgid "Filter Mode" +msgstr "" + +#: src/gui/insEdit.cpp:5931 src/gui/insEdit.cpp:7485 +msgid "Noise Mode" +msgstr "" + +#: src/gui/insEdit.cpp:5932 +msgid "Wave Mix Mode" +msgstr "" + +#: src/gui/insEdit.cpp:5935 +msgid "Absolute Cutoff Macro" +msgstr "" + +#: src/gui/insEdit.cpp:5939 +msgid "Absolute Duty Macro" +msgstr "" + +#: src/gui/insEdit.cpp:5945 +msgid "Don't test before new note" +msgstr "" + +#: src/gui/insEdit.cpp:5950 +msgid "Switch roles of frequency and phase reset timer" +msgstr "" + +#: src/gui/insEdit.cpp:5997 src/gui/insEdit.cpp:6040 +msgid "Period" +msgstr "" + +#: src/gui/insEdit.cpp:6002 src/gui/insEdit.cpp:6045 src/gui/insEdit.cpp:6892 +msgid "Amount" +msgstr "" + +#: src/gui/insEdit.cpp:6005 src/gui/insEdit.cpp:6048 +msgid "Bound" +msgstr "" + +#: src/gui/insEdit.cpp:6021 +msgid "Flip" +msgstr "" + +#: src/gui/insEdit.cpp:6210 +msgid "Load waveform" +msgstr "" + +#: src/gui/insEdit.cpp:6215 +msgid "" +"when enabled, a waveform will be loaded into RAM.\n" +"when disabled, only the offset and length change." +msgstr "" + +#: src/gui/insEdit.cpp:6219 +msgid "Waveform##WAVE" +msgstr "" + +#: src/gui/insEdit.cpp:6227 +msgid "Per-channel wave position/length" +msgstr "" + +#: src/gui/insEdit.cpp:6237 +msgid "Ch" +msgstr "" + +#: src/gui/insEdit.cpp:6286 +msgid "Compatibility mode" +msgstr "" + +#: src/gui/insEdit.cpp:6288 +msgid "" +"only use for compatibility with .dmf modules!\n" +"- initializes modulation table with first wavetable\n" +"- does not alter modulation parameters on instrument change" +msgstr "" + +#: src/gui/insEdit.cpp:6290 +msgid "Modulation depth" +msgstr "" + +#: src/gui/insEdit.cpp:6294 +msgid "Modulation speed" +msgstr "" + +#: src/gui/insEdit.cpp:6298 +msgid "Modulation table" +msgstr "" + +#: src/gui/insEdit.cpp:6347 +msgid "Set modulation table (channel 5 only)" +msgstr "" + +#: src/gui/insEdit.cpp:6411 src/gui/insEdit.cpp:7184 +msgid "Filter K1" +msgstr "" + +#: src/gui/insEdit.cpp:6413 src/gui/insEdit.cpp:7185 +msgid "Filter K2" +msgstr "" + +#: src/gui/insEdit.cpp:6417 +msgid "Envelope length" +msgstr "" + +#: src/gui/insEdit.cpp:6420 +msgid "Left Volume Ramp" +msgstr "" + +#: src/gui/insEdit.cpp:6422 +msgid "Right Volume Ramp" +msgstr "" + +#: src/gui/insEdit.cpp:6425 +msgid "Filter K1 Ramp" +msgstr "" + +#: src/gui/insEdit.cpp:6427 +msgid "Filter K2 Ramp" +msgstr "" + +#: src/gui/insEdit.cpp:6430 +msgid "K1 Ramp Slowdown" +msgstr "" + +#: src/gui/insEdit.cpp:6432 +msgid "K2 Ramp Slowdown" +msgstr "" + +#: src/gui/insEdit.cpp:6454 +msgid "Attack Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6460 +msgid "Decay 1 Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6466 +msgid "Decay Level" +msgstr "" + +#: src/gui/insEdit.cpp:6472 +msgid "Decay 2 Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6478 +msgid "Release Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6484 +msgid "Rate Correction" +msgstr "" + +#: src/gui/insEdit.cpp:6512 +msgid "LFO Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6523 +msgid "Use envelope" +msgstr "" + +#: src/gui/insEdit.cpp:6576 +msgid "Sustain/release mode:" +msgstr "" + +#: src/gui/insEdit.cpp:6577 +msgid "Direct (cut on release)" +msgstr "" + +#: src/gui/insEdit.cpp:6580 +msgid "Effective (linear decrease)" +msgstr "" + +#: src/gui/insEdit.cpp:6583 +msgid "Effective (exponential decrease)" +msgstr "" + +#: src/gui/insEdit.cpp:6586 +msgid "Delayed (write R on release)" +msgstr "" + +#: src/gui/insEdit.cpp:6596 src/gui/insEdit.cpp:6597 +msgid "Gain Mode" +msgstr "" + +#: src/gui/insEdit.cpp:6599 src/gui/insEdit.cpp:6600 src/gui/insEdit.cpp:7205 +msgid "Gain" +msgstr "" + +#: src/gui/insEdit.cpp:6633 +msgid "" +"using decrease modes will not produce any sound at all, unless you know what " +"you are doing.\n" +"it is recommended to use the Gain macro for decrease instead." +msgstr "" + +#: src/gui/insEdit.cpp:6703 +msgid "Enable synthesizer" +msgstr "" + +#: src/gui/insEdit.cpp:6721 +msgid "Single-waveform" +msgstr "" + +#: src/gui/insEdit.cpp:6730 +msgid "Dual-waveform" +msgstr "" + +#: src/gui/insEdit.cpp:6803 src/gui/insEdit.cpp:6812 +msgid "Wave 1" +msgstr "" + +#: src/gui/insEdit.cpp:6808 src/gui/insEdit.cpp:6823 +msgid "" +"waveform macro is controlling wave 1!\n" +"this value will be ineffective." +msgstr "" + +#: src/gui/insEdit.cpp:6829 +msgid "Wave 2" +msgstr "" + +#: src/gui/insEdit.cpp:6844 +msgid "Resume preview" +msgstr "" + +#: src/gui/insEdit.cpp:6846 +msgid "Pause preview" +msgstr "" + +#: src/gui/insEdit.cpp:6854 +msgid "Restart preview" +msgstr "" + +#: src/gui/insEdit.cpp:6874 +msgid "Copy to new wavetable" +msgstr "" + +#: src/gui/insEdit.cpp:6881 +msgid "Update Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6902 +msgid "Global" +msgstr "" + +#: src/gui/insEdit.cpp:6906 +msgid "" +"wavetable synthesizer disabled.\n" +"use the Waveform macro to set the wave for this instrument." +msgstr "" + +#: src/gui/insEdit.cpp:6912 +msgid "Macros" +msgstr "" + +#: src/gui/insEdit.cpp:6921 src/gui/insEdit.cpp:6929 src/gui/insEdit.cpp:6938 +#: src/gui/insEdit.cpp:6947 src/gui/insEdit.cpp:6962 src/gui/insEdit.cpp:6976 +#: src/gui/insEdit.cpp:6988 src/gui/insEdit.cpp:7001 src/gui/insEdit.cpp:7017 +#: src/gui/insEdit.cpp:7023 src/gui/insEdit.cpp:7033 src/gui/insEdit.cpp:7040 +#: src/gui/insEdit.cpp:7046 src/gui/insEdit.cpp:7059 src/gui/insEdit.cpp:7066 +#: src/gui/insEdit.cpp:7073 src/gui/insEdit.cpp:7082 src/gui/insEdit.cpp:7092 +#: src/gui/insEdit.cpp:7100 src/gui/insEdit.cpp:7106 src/gui/insEdit.cpp:7114 +#: src/gui/insEdit.cpp:7121 src/gui/insEdit.cpp:7127 src/gui/insEdit.cpp:7137 +#: src/gui/insEdit.cpp:7149 src/gui/insEdit.cpp:7157 src/gui/insEdit.cpp:7173 +#: src/gui/insEdit.cpp:7178 src/gui/insEdit.cpp:7191 src/gui/insEdit.cpp:7198 +#: src/gui/insEdit.cpp:7209 src/gui/insEdit.cpp:7222 src/gui/insEdit.cpp:7231 +#: src/gui/insEdit.cpp:7238 src/gui/insEdit.cpp:7246 src/gui/insEdit.cpp:7270 +#: src/gui/insEdit.cpp:7277 src/gui/insEdit.cpp:7285 src/gui/insEdit.cpp:7296 +#: src/gui/insEdit.cpp:7303 src/gui/insEdit.cpp:7311 src/gui/insEdit.cpp:7319 +#: src/gui/insEdit.cpp:7328 src/gui/insEdit.cpp:7336 src/gui/insEdit.cpp:7342 +#: src/gui/insEdit.cpp:7348 src/gui/insEdit.cpp:7354 src/gui/insEdit.cpp:7359 +#: src/gui/insEdit.cpp:7366 src/gui/insEdit.cpp:7373 src/gui/insEdit.cpp:7381 +#: src/gui/insEdit.cpp:7390 src/gui/insEdit.cpp:7398 src/gui/insEdit.cpp:7410 +#: src/gui/insEdit.cpp:7423 src/gui/insEdit.cpp:7434 src/gui/insEdit.cpp:7444 +#: src/gui/insEdit.cpp:7452 src/gui/insEdit.cpp:7462 src/gui/insEdit.cpp:7471 +msgid "Arpeggio" +msgstr "" + +#: src/gui/insEdit.cpp:6925 src/gui/insEdit.cpp:6932 src/gui/insEdit.cpp:6943 +#: src/gui/insEdit.cpp:6972 src/gui/insEdit.cpp:6984 src/gui/insEdit.cpp:6994 +#: src/gui/insEdit.cpp:7007 src/gui/insEdit.cpp:7054 src/gui/insEdit.cpp:7062 +#: src/gui/insEdit.cpp:7069 src/gui/insEdit.cpp:7088 src/gui/insEdit.cpp:7110 +#: src/gui/insEdit.cpp:7133 src/gui/insEdit.cpp:7144 src/gui/insEdit.cpp:7163 +#: src/gui/insEdit.cpp:7183 src/gui/insEdit.cpp:7194 src/gui/insEdit.cpp:7214 +#: src/gui/insEdit.cpp:7234 src/gui/insEdit.cpp:7242 src/gui/insEdit.cpp:7249 +#: src/gui/insEdit.cpp:7254 src/gui/insEdit.cpp:7260 src/gui/insEdit.cpp:7266 +#: src/gui/insEdit.cpp:7273 src/gui/insEdit.cpp:7281 src/gui/insEdit.cpp:7290 +#: src/gui/insEdit.cpp:7299 src/gui/insEdit.cpp:7307 src/gui/insEdit.cpp:7324 +#: src/gui/insEdit.cpp:7332 src/gui/insEdit.cpp:7338 src/gui/insEdit.cpp:7362 +#: src/gui/insEdit.cpp:7369 src/gui/insEdit.cpp:7377 src/gui/insEdit.cpp:7386 +#: src/gui/insEdit.cpp:7394 src/gui/insEdit.cpp:7402 src/gui/insEdit.cpp:7414 +#: src/gui/insEdit.cpp:7429 src/gui/insEdit.cpp:7440 src/gui/insEdit.cpp:7448 +#: src/gui/insEdit.cpp:7457 src/gui/insEdit.cpp:7475 +msgid "Phase Reset" +msgstr "" + +#: src/gui/insEdit.cpp:6939 src/gui/insEdit.cpp:7024 src/gui/insEdit.cpp:7210 +#: src/gui/insEdit.cpp:7247 +msgid "Duty/Noise" +msgstr "" + +#: src/gui/insEdit.cpp:6966 src/gui/insEdit.cpp:7288 +msgid "Surround" +msgstr "" + +#: src/gui/insEdit.cpp:6968 src/gui/insEdit.cpp:6981 src/gui/insEdit.cpp:7026 +#: src/gui/insEdit.cpp:7085 src/gui/insEdit.cpp:7141 src/gui/insEdit.cpp:7159 +#: src/gui/insEdit.cpp:7180 src/gui/insEdit.cpp:7201 src/gui/insEdit.cpp:7225 +#: src/gui/insEdit.cpp:7278 src/gui/insEdit.cpp:7304 src/gui/insEdit.cpp:7321 +#: src/gui/insEdit.cpp:7329 src/gui/insEdit.cpp:7374 src/gui/insEdit.cpp:7383 +#: src/gui/insEdit.cpp:7399 src/gui/insEdit.cpp:7411 src/gui/insEdit.cpp:7426 +#: src/gui/insEdit.cpp:7454 src/gui/insEdit.cpp:7464 +msgid "Panning (left)" +msgstr "" + +#: src/gui/insEdit.cpp:6969 src/gui/insEdit.cpp:6982 src/gui/insEdit.cpp:7027 +#: src/gui/insEdit.cpp:7086 src/gui/insEdit.cpp:7142 src/gui/insEdit.cpp:7160 +#: src/gui/insEdit.cpp:7181 src/gui/insEdit.cpp:7202 src/gui/insEdit.cpp:7226 +#: src/gui/insEdit.cpp:7279 src/gui/insEdit.cpp:7305 src/gui/insEdit.cpp:7322 +#: src/gui/insEdit.cpp:7330 src/gui/insEdit.cpp:7375 src/gui/insEdit.cpp:7384 +#: src/gui/insEdit.cpp:7400 src/gui/insEdit.cpp:7412 src/gui/insEdit.cpp:7427 +#: src/gui/insEdit.cpp:7455 src/gui/insEdit.cpp:7465 +msgid "Panning (right)" +msgstr "" + +#: src/gui/insEdit.cpp:6990 src/gui/insEdit.cpp:7003 src/gui/insEdit.cpp:7107 +#: src/gui/insEdit.cpp:7199 src/gui/insEdit.cpp:7239 src/gui/insEdit.cpp:7424 +msgid "Noise Freq" +msgstr "" + +#: src/gui/insEdit.cpp:6996 src/gui/insEdit.cpp:7010 src/gui/insEdit.cpp:7167 +msgid "AutoEnv Num" +msgstr "" + +#: src/gui/insEdit.cpp:6997 src/gui/insEdit.cpp:7011 src/gui/insEdit.cpp:7168 +msgid "AutoEnv Den" +msgstr "" + +#: src/gui/insEdit.cpp:7012 +msgid "Noise AND Mask" +msgstr "" + +#: src/gui/insEdit.cpp:7013 +msgid "Noise OR Mask" +msgstr "" + +#: src/gui/insEdit.cpp:7034 +msgid "On/Off" +msgstr "" + +#: src/gui/insEdit.cpp:7060 +msgid "Patch" +msgstr "" + +#: src/gui/insEdit.cpp:7076 +msgid "Mod Depth" +msgstr "" + +#: src/gui/insEdit.cpp:7077 +msgid "Mod Speed" +msgstr "" + +#: src/gui/insEdit.cpp:7078 +msgid "Mod Position" +msgstr "" + +#: src/gui/insEdit.cpp:7083 +msgid "Noise Length" +msgstr "" + +#: src/gui/insEdit.cpp:7093 +msgid "Wave Pos" +msgstr "" + +#: src/gui/insEdit.cpp:7096 +msgid "Wave Length" +msgstr "" + +#: src/gui/insEdit.cpp:7115 +msgid "AUDCTL" +msgstr "" + +#: src/gui/insEdit.cpp:7122 src/gui/insEdit.cpp:7343 +msgid "Pulse Width" +msgstr "" + +#: src/gui/insEdit.cpp:7139 +msgid "Duty/Int" +msgstr "" + +#: src/gui/insEdit.cpp:7145 src/gui/insEdit.cpp:7406 +msgid "Load LFSR" +msgstr "" + +#: src/gui/insEdit.cpp:7165 +msgid "Envelope Mode" +msgstr "" + +#: src/gui/insEdit.cpp:7218 +msgid "Phase Reset Timer" +msgstr "" + +#: src/gui/insEdit.cpp:7252 src/gui/insEdit.cpp:7259 +msgid "Freq Divider" +msgstr "" + +#: src/gui/insEdit.cpp:7255 +msgid "Clock Divider" +msgstr "" + +#: src/gui/insEdit.cpp:7264 +msgid "Global Volume" +msgstr "" + +#: src/gui/insEdit.cpp:7286 +msgid "Echo Level" +msgstr "" + +#: src/gui/insEdit.cpp:7291 +msgid "Echo Feedback" +msgstr "" + +#: src/gui/insEdit.cpp:7292 +msgid "Echo Length" +msgstr "" + +#: src/gui/insEdit.cpp:7312 +msgid "Group Ctrl" +msgstr "" + +#: src/gui/insEdit.cpp:7313 +msgid "Group Attack" +msgstr "" + +#: src/gui/insEdit.cpp:7314 +msgid "Group Decay" +msgstr "" + +#: src/gui/insEdit.cpp:7320 +msgid "Noise Type" +msgstr "" + +#: src/gui/insEdit.cpp:7367 +msgid "Square/Noise" +msgstr "" + +#: src/gui/insEdit.cpp:7404 +msgid "Tap A Location" +msgstr "" + +#: src/gui/insEdit.cpp:7405 +msgid "Tap B Location" +msgstr "" + +#: src/gui/insEdit.cpp:7416 +msgid "Portion A Length" +msgstr "" + +#: src/gui/insEdit.cpp:7417 +msgid "Portion B Length" +msgstr "" + +#: src/gui/insEdit.cpp:7418 +msgid "Portion A Offset" +msgstr "" + +#: src/gui/insEdit.cpp:7419 +msgid "Portion B Offset" +msgstr "" + +#: src/gui/insEdit.cpp:7463 +msgid "Parameter" +msgstr "" + +#: src/gui/insEdit.cpp:7467 +msgid "Load Value" +msgstr "" + +#: src/gui/insEdit.cpp:7479 +msgid "Filter Toggle" +msgstr "" + +#: src/gui/insEdit.cpp:7486 +msgid "Wave Mix" +msgstr "" + +#: src/gui/insEdit.cpp:7500 +msgid "Octave offset" +msgstr "" + +#: src/gui/insEdit.cpp:7505 +msgid "go to Macros for other parameters." +msgstr "" + +#: src/gui/insEdit.cpp:7521 +msgid "invalid instrument type! change it first." +msgstr "" + +#: src/gui/insEdit.cpp:7565 +msgid "clear contents" +msgstr "" + +#: src/gui/insEdit.cpp:7571 +msgid "offset..." +msgstr "" + +#: src/gui/insEdit.cpp:7572 src/gui/insEdit.cpp:7605 +msgid "X" +msgstr "X" + +#: src/gui/insEdit.cpp:7573 src/gui/insEdit.cpp:7609 +msgid "Y" +msgstr "" + +#: src/gui/insEdit.cpp:7574 +msgid "offset" +msgstr "" + +#: src/gui/insEdit.cpp:7637 +msgid "Min" +msgstr "" + +#: src/gui/insEdit.cpp:7638 +msgid "Max" +msgstr "" diff --git a/po/pl.po b/po/pl.po new file mode 100644 index 000000000..ffc760194 --- /dev/null +++ b/po/pl.po @@ -0,0 +1,20742 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: furnace 0.6.3\n" +"Last-Translator: Automatically generated\n" +"Language-Team: freq-mod, PoznańskiSzybkowiec\n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" + +#: src/engine/sysDef.cpp:428 src/engine/sysDef.cpp:441 +msgid "20xx: Set channel mode (bit 0: square; bit 1: noise; bit 2: envelope)" +msgstr "" +"20xx: Ustaw tryb kanału (bit 0: fala kwadratowa; bit 1: szum; bit 2: " +"obwiednia)" + +#: src/engine/sysDef.cpp:429 +msgid "21xx: Set noise frequency (0 to 1F)" +msgstr "21xx: Ustaw częstotliwość szumu (0-1F)" + +#: src/engine/sysDef.cpp:430 src/engine/sysDef.cpp:443 +msgid "22xy: Set envelope mode (x: shape, y: enable for this channel)" +msgstr "22xy: Ustaw tryb obwiedni (x: kształt, y: włącz dla tego kanału)" + +#: src/engine/sysDef.cpp:431 src/engine/sysDef.cpp:444 +msgid "23xx: Set envelope period low byte" +msgstr "23xx: Ustaw niski bajt okresu obwiedni" + +#: src/engine/sysDef.cpp:432 src/engine/sysDef.cpp:445 +msgid "24xx: Set envelope period high byte" +msgstr "24xx: Ustaw wysoki bajt okresu obwiedni" + +#: src/engine/sysDef.cpp:433 src/engine/sysDef.cpp:446 +#: src/engine/sysDef.cpp:1599 +msgid "25xx: Envelope slide up" +msgstr "25xx: Portamento obwiedni w górę" + +#: src/engine/sysDef.cpp:434 src/engine/sysDef.cpp:447 +#: src/engine/sysDef.cpp:1600 +msgid "26xx: Envelope slide down" +msgstr "26xx: Portamento obwiedni w dół" + +#: src/engine/sysDef.cpp:435 src/engine/sysDef.cpp:448 +#: src/engine/sysDef.cpp:1601 +msgid "29xy: Set auto-envelope (x: numerator; y: denominator)" +msgstr "29xy: Ustaw auto-obwiednię (x: licznik; y: mianownik)" + +#: src/engine/sysDef.cpp:436 src/engine/sysDef.cpp:449 +msgid "2Exx: Write to I/O port A" +msgstr "2Exx: Zapisz do portu A I/O" + +#: src/engine/sysDef.cpp:437 src/engine/sysDef.cpp:450 +msgid "2Fxx: Write to I/O port B" +msgstr "2Fxx: Zapisz do portu B I/O" + +#: src/engine/sysDef.cpp:442 +msgid "21xx: Set noise frequency (0 to FF)" +msgstr "21xx: Ustaw częstotliwość szumu (0 do FF)" + +#: src/engine/sysDef.cpp:451 +msgid "12xx: Set duty cycle (0 to 8)" +msgstr "12xx: Ustaw szerokość fali prostokątnej (0-8)" + +#: src/engine/sysDef.cpp:453 +msgid "27xx: Set noise AND mask" +msgstr "27xx: Maska szumu (logiczne OR)" + +#: src/engine/sysDef.cpp:454 +msgid "28xx: Set noise OR mask" +msgstr "28xx: Maska szumu (logiczne OR)" + +#: src/engine/sysDef.cpp:455 +msgid "" +"2Cxy: Automatic noise frequency (x: mode (0: disable, 1: freq, 2: freq + OR " +"mask); y: offset)" +msgstr "" +"Automatyczna częstotliwość szumu (x: tryb (0: wyłączony, 1: częstotlwość, 2: " +"częstotliwość + maska \"OR\"); y: odchylenie" + +#: src/engine/sysDef.cpp:456 +msgid "2Dxx: NOT TO BE EMPLOYED BY THE COMPOSER" +msgstr "2Dxx: NIE DO UŻYTKU PRZEZ KOMPOZYTORA" + +#: src/engine/sysDef.cpp:460 +msgid "30xx: Toggle hard envelope reset on new notes" +msgstr "30xx: Włącz twardy reset obwiedni przy nowych nutach" + +#: src/engine/sysDef.cpp:465 +msgid "18xx: Toggle extended channel 3 mode" +msgstr "18xx: Włącz rozszerzony kanał 3" + +#: src/engine/sysDef.cpp:470 src/engine/sysDef.cpp:766 +#: src/engine/sysDef.cpp:1025 src/engine/sysDef.cpp:1272 +#: src/engine/sysDef.cpp:1593 +msgid "17xx: Toggle PCM mode (LEGACY)" +msgstr "17xx: Włącz tryb PCM (PRZESTARZAŁE)" + +#: src/engine/sysDef.cpp:471 src/engine/sysDef.cpp:1653 +#: src/engine/sysDef.cpp:1963 +msgid "DFxx: Set sample playback direction (0: normal; 1: reverse)" +msgstr "DFxx: Ustaw kierunek odtwarzania sampli (0: normalny; 1: odwrotny)" + +#: src/engine/sysDef.cpp:476 +msgid "18xx: Toggle drums mode (1: enabled; 0: disabled)" +msgstr "18xx: Włącz tryb perkusji (1: włączone; 0: wyłączone)" + +#: src/engine/sysDef.cpp:480 src/engine/sysDef.cpp:554 +#: src/engine/sysDef.cpp:575 +msgid "11xx: Set feedback (0 to 7)" +msgstr "11xx: Ustaw feedback (0-7)" + +#: src/engine/sysDef.cpp:481 +msgid "12xx: Set level of operator 1 (0 highest, 7F lowest)" +msgstr "12xx: Ustaw poziom operatora 1 (0 najwyższy, 7F najniższy)" + +#: src/engine/sysDef.cpp:482 +msgid "13xx: Set level of operator 2 (0 highest, 7F lowest)" +msgstr "13xx: Ustaw poziom operatora 2 (0 najwyższy, 7F najniższy)" + +#: src/engine/sysDef.cpp:483 +msgid "14xx: Set level of operator 3 (0 highest, 7F lowest)" +msgstr "14xx: Ustaw poziom operatora 3 (0 najwyższy, 7F najniższy)" + +#: src/engine/sysDef.cpp:484 +msgid "15xx: Set level of operator 4 (0 highest, 7F lowest)" +msgstr "15xx: Ustaw poziom operatora 4 (0 najwyższy, 7F najniższy)" + +#: src/engine/sysDef.cpp:485 src/engine/sysDef.cpp:580 +#: src/engine/sysDef.cpp:635 +msgid "16xy: Set operator multiplier (x: operator from 1 to 4; y: multiplier)" +msgstr "" +"16xy: Ustaw mnożnik częst. operatora (x: operator od 1 do 4; y: mnożnik)" + +#: src/engine/sysDef.cpp:486 +msgid "19xx: Set attack of all operators (0 to 1F)" +msgstr "19xx: Ustaw narastanie na wszystkich operatorach (0-1F)" + +#: src/engine/sysDef.cpp:487 +msgid "1Axx: Set attack of operator 1 (0 to 1F)" +msgstr "1Axx: Ustaw narastanie operatora 1 (0-1F)" + +#: src/engine/sysDef.cpp:488 +msgid "1Bxx: Set attack of operator 2 (0 to 1F)" +msgstr "1Bxx: Ustaw narastanie operatora 2 (0-1F)" + +#: src/engine/sysDef.cpp:489 +msgid "1Cxx: Set attack of operator 3 (0 to 1F)" +msgstr "1Cxx: Ustaw narastanie operatora 3 (0-1F)" + +#: src/engine/sysDef.cpp:490 +msgid "1Dxx: Set attack of operator 4 (0 to 1F)" +msgstr "1Dxx: Ustaw narastanie operatora 4 (0-1F)" + +#: src/engine/sysDef.cpp:491 src/engine/sysDef.cpp:588 +#: src/engine/sysDef.cpp:656 +msgid "50xy: Set AM (x: operator from 1 to 4 (0 for all ops); y: AM)" +msgstr "50xy: Ustaw AM (x: operatory 1-4 (0 dla wszystkich operatorów); y: AM)" + +#: src/engine/sysDef.cpp:492 src/engine/sysDef.cpp:589 +#: src/engine/sysDef.cpp:657 +msgid "" +"51xy: Set sustain level (x: operator from 1 to 4 (0 for all ops); y: sustain)" +msgstr "" +"51xy: Ustaw poziom podtrzymania (x: operatory 1-4 (0 dla wszystkich " +"operatorów); y: poziom)" + +#: src/engine/sysDef.cpp:493 src/engine/sysDef.cpp:590 +#: src/engine/sysDef.cpp:658 +msgid "52xy: Set release (x: operator from 1 to 4 (0 for all ops); y: release)" +msgstr "" +"52xy: Ustaw opadanie (x: operatory 1-4 (0 dla wszystkich operatorów); y: " +"opadanie)" + +#: src/engine/sysDef.cpp:494 +msgid "" +"53xy: Set detune (x: operator from 1 to 4 (0 for all ops); y: detune where 3 " +"is center)" +msgstr "" +"53xy: Ustaw rozstrojenie (x: operatory 1-4 (0 dla wszystkich operatorów); y: " +"rozstrojenie (3 - brak rozstrojenia))" + +#: src/engine/sysDef.cpp:495 src/engine/sysDef.cpp:592 +#: src/engine/sysDef.cpp:660 +msgid "" +"54xy: Set envelope scale (x: operator from 1 to 4 (0 for all ops); y: scale " +"from 0 to 3)" +msgstr "" +"54xy: Ustaw skalowanie obwiedni (x: operatory 1-4 (0 dla wszystkich " +"operatorów); y: maks. 0-3)" + +#: src/engine/sysDef.cpp:496 +msgid "56xx: Set decay of all operators (0 to 1F)" +msgstr "56xx: Ustaw opadanie wszystkich operatorów (0-1F)" + +#: src/engine/sysDef.cpp:497 +msgid "57xx: Set decay of operator 1 (0 to 1F)" +msgstr "57xx: Ustaw opadanie operatora 1 (0-1F)" + +#: src/engine/sysDef.cpp:498 +msgid "58xx: Set decay of operator 2 (0 to 1F)" +msgstr "58xx: Ustaw opadanie operatora 2 (0-1F)" + +#: src/engine/sysDef.cpp:499 +msgid "59xx: Set decay of operator 3 (0 to 1F)" +msgstr "59xx: Ustaw opadanie operatora 3 (0-1F)" + +#: src/engine/sysDef.cpp:500 +msgid "5Axx: Set decay of operator 4 (0 to 1F)" +msgstr "5Axx: Ustaw opadanie operatora 4 (0-1F)" + +#: src/engine/sysDef.cpp:501 +msgid "5Bxx: Set decay 2 of all operators (0 to 1F)" +msgstr "5Bxx: Ustaw wtórne opadanie wszystkich operatorów (0-1F)" + +#: src/engine/sysDef.cpp:502 +msgid "5Cxx: Set decay 2 of operator 1 (0 to 1F)" +msgstr "5Cxx: Ustaw wtórne opadanie operatora 1 (0-1F)" + +#: src/engine/sysDef.cpp:503 +msgid "5Dxx: Set decay 2 of operator 2 (0 to 1F)" +msgstr "5Dxx: Ustaw wtórne opadanie operatora 2 (0-1F)" + +#: src/engine/sysDef.cpp:504 +msgid "5Exx: Set decay 2 of operator 3 (0 to 1F)" +msgstr "5Exx: Ustaw wtórne opadanie operatora 3 (0-1F)" + +#: src/engine/sysDef.cpp:505 +msgid "5Fxx: Set decay 2 of operator 4 (0 to 1F)" +msgstr "5Fxx: Ustaw wtórne opadanie operatora 4 (0-1F)" + +#: src/engine/sysDef.cpp:510 +msgid "10xx: Set noise frequency (xx: value; 0 disables noise)" +msgstr "10xx: Ustaw częstotliwość szumu (xx: wartość; 0 wyłącza szum)" + +#: src/engine/sysDef.cpp:511 +msgid "17xx: Set LFO speed" +msgstr "17xx: Ustaw prędkość LFO" + +#: src/engine/sysDef.cpp:512 +msgid "18xx: Set LFO waveform (0 saw, 1 square, 2 triangle, 3 noise)" +msgstr "" +"18xx: Ustaw kształt fali LFO (0 fala piłokształtna, 1 fala kwadratowa, 2 " +"fala trójkątna, 3 szum)" + +#: src/engine/sysDef.cpp:513 +msgid "1Exx: Set AM depth (0 to 7F)" +msgstr "1Exx: Ustaw głębokość AM (0-7F)" + +#: src/engine/sysDef.cpp:514 +msgid "1Fxx: Set PM depth (0 to 7F)" +msgstr "1Fxx: Ustaw głębokość PM (0-7F)" + +#: src/engine/sysDef.cpp:515 +msgid "" +"55xy: Set detune 2 (x: operator from 1 to 4 (0 for all ops); y: detune from " +"0 to 3)" +msgstr "" +"55xy: Ustaw roztrojenie 2 (x: operator 1-4 (0 dla wszystkich operatorów); y: " +"roztrojenie 0-3)" + +#: src/engine/sysDef.cpp:520 +msgid "24xx: Set LFO 2 speed" +msgstr "24xx: Ustaw prędkość LFO 2" + +#: src/engine/sysDef.cpp:521 +msgid "25xx: Set LFO 2 waveform (0 saw, 1 square, 2 triangle, 3 noise)" +msgstr "" +"25xx: Ustaw kształt fali LF0 2 (0 piłokształtna, 1 kwadratowa, 2 trójkątna, " +"3 szum)" + +#: src/engine/sysDef.cpp:522 +msgid "26xx: Set AM 2 depth (0 to 7F)" +msgstr "26xx: Ustaw głębokość AM 2" + +#: src/engine/sysDef.cpp:523 +msgid "27xx: Set PM 2 depth (0 to 7F)" +msgstr "27xx: Ustaw głębokość PM 2" + +#: src/engine/sysDef.cpp:524 +msgid "" +"28xy: Set reverb (x: operator from 1 to 4 (0 for all ops); y: reverb from 0 " +"to 7)" +msgstr "" +"28xy: Ustaw pogłos (x: operatory 1-4 (0 dla wszystkich operatorów); y: " +"pogłos 0-7)" + +#: src/engine/sysDef.cpp:525 src/engine/sysDef.cpp:650 +msgid "" +"2Axy: Set waveform (x: operator from 1 to 4 (0 for all ops); y: waveform " +"from 0 to 7)" +msgstr "" +"2Axy: Ustaw kształt fali (x: operator 1-4 (0 dla wszystkich operatorów); y: " +"kształt fali 0-7)" + +#: src/engine/sysDef.cpp:526 +msgid "" +"2Bxy: Set envelope generator shift (x: operator from 1 to 4 (0 for all ops); " +"y: shift from 0 to 3)" +msgstr "" +"2Bxy: Ustaw przesunięcie generatora obwiedni (x: operator 1-4 (0 dla " +"wszystkich operatorów); y: przesunięcie" + +#: src/engine/sysDef.cpp:527 +msgid "" +"2Cxy: Set fine multiplier (x: operator from 1 to 4 (0 for all ops); y: fine)" +msgstr "" +"2Cxy: Ustaw dokładny mnożnik(x: operator 1-4 (0 dla wszystkich operatorów); " +"y: mnożnik)" + +#: src/engine/sysDef.cpp:530 +msgid "" +"3xyy: Set fixed frequency of operator 1 (x: octave from 0 to 7; y: frequency)" +msgstr "" +"3xyy: Ustaw stałą częstotliwość operatora 1 (x: oktawa 0-7; y: częstotliwość)" + +#: src/engine/sysDef.cpp:531 +msgid "" +"3xyy: Set fixed frequency of operator 2 (x: octave from 8 to F; y: frequency)" +msgstr "" +"3xyy: Ustaw stałą częstotliwość operatora 2 (x: oktawa 0-7; y: częstotliwość)" + +#: src/engine/sysDef.cpp:532 +msgid "" +"4xyy: Set fixed frequency of operator 3 (x: octave from 0 to 7; y: frequency)" +msgstr "" +"4xyy: Ustaw stałą częstotliwość operatora 3 (x: oktawa 0-7; y: częstotliwość)" + +#: src/engine/sysDef.cpp:533 +msgid "" +"4xyy: Set fixed frequency of operator 4 (x: octave from 8 to F; y: frequency)" +msgstr "" +"4xyy: Ustaw stałą częstotliwość operatora operatora 4 (x: oktawa 8-F; y: " +"częstotliwość)" + +#: src/engine/sysDef.cpp:540 +msgid "10xy: Setup LFO (x: enable; y: speed)" +msgstr "10xy: Ustaw LFO (x: włączone; y: szybkość)" + +#: src/engine/sysDef.cpp:541 +msgid "" +"55xy: Set SSG envelope (x: operator from 1 to 4 (0 for all ops); y: 0-7 on, " +"8 off)" +msgstr "" +"55xy: Ustaw obwiednię SSG (x: operator 1-4 (0 dla wszystkich operatorów); y: " +"0-7 wł., 8 wył.)" + +#: src/engine/sysDef.cpp:549 +msgid "1Fxx: Set ADPCM-A global volume (0 to 3F)" +msgstr "1Fxx: Ustaw globalną głośność ADPCM-A (0-3F)" + +#: src/engine/sysDef.cpp:553 +msgid "10xx: Set patch (0 to F)" +msgstr "Ustaw instrument (0-F)" + +#: src/engine/sysDef.cpp:555 src/engine/sysDef.cpp:576 +#: src/engine/sysDef.cpp:631 +msgid "12xx: Set level of operator 1 (0 highest, 3F lowest)" +msgstr "12xx: Ustaw poziom operatora 1 (0 maks., 3F min.)" + +#: src/engine/sysDef.cpp:556 src/engine/sysDef.cpp:577 +#: src/engine/sysDef.cpp:632 +msgid "13xx: Set level of operator 2 (0 highest, 3F lowest)" +msgstr "13xx: Ustaw poziom operatora 2 (0 maks., 3F min.)" + +#: src/engine/sysDef.cpp:557 +msgid "16xy: Set operator multiplier (x: operator from 1 to 2; y: multiplier)" +msgstr "16xy: Ustaw mnożnik częst. operatora (x: operator 1-2; y: mnożnik)" + +#: src/engine/sysDef.cpp:558 src/engine/sysDef.cpp:582 +#: src/engine/sysDef.cpp:637 +msgid "19xx: Set attack of all operators (0 to F)" +msgstr "19xx: Ustaw narastanie wszystkich operatorów (0-F)" + +#: src/engine/sysDef.cpp:559 src/engine/sysDef.cpp:583 +#: src/engine/sysDef.cpp:638 +msgid "1Axx: Set attack of operator 1 (0 to F)" +msgstr "1Axx: Ustaw narastanie operatora 1 (0-F)" + +#: src/engine/sysDef.cpp:560 src/engine/sysDef.cpp:584 +#: src/engine/sysDef.cpp:639 +msgid "1Bxx: Set attack of operator 2 (0 to F)" +msgstr "1Bxx: Ustaw narastanie operatora 2 (0-F)" + +#: src/engine/sysDef.cpp:561 +msgid "50xy: Set AM (x: operator from 1 to 2 (0 for all ops); y: AM)" +msgstr "Włącz AM (x: operator 1-2 (0 dla wszystkich operatorów); y: AM)" + +#: src/engine/sysDef.cpp:562 +msgid "" +"51xy: Set sustain level (x: operator from 1 to 2 (0 for all ops); y: sustain)" +msgstr "" +"51xy: Ustaw poziom podtrzymania (x: operator 1-2 (0 dla wszystkich " +"operatorów); y: podtrzymanie)" + +#: src/engine/sysDef.cpp:563 +msgid "52xy: Set release (x: operator from 1 to 2 (0 for all ops); y: release)" +msgstr "" +"52xy: Ustaw zwolnienie (x: operator 1-2 (0 dla wszystkich operatorów); y: " +"zwolnienie)" + +#: src/engine/sysDef.cpp:564 +msgid "53xy: Set vibrato (x: operator from 1 to 2 (0 for all ops); y: enabled)" +msgstr "53xy: Vibrato (x: operator 1-2 (0 dla wszystkich operatorów); y: wł.)" + +#: src/engine/sysDef.cpp:565 +msgid "" +"54xy: Set envelope scale (x: operator from 1 to 2 (0 for all ops); y: scale " +"from 0 to 3)" +msgstr "" +"54xy: Ustaw skalowanie obwiedni (x: operator 1-2 (0 dla wszystkich " +"operatorów); y: skala 0-3)" + +#: src/engine/sysDef.cpp:566 +msgid "" +"55xy: Set envelope sustain (x: operator from 1 to 2 (0 for all ops); y: " +"enabled)" +msgstr "" +"55xy: Ustaw podtrzymanie obwiedni (x: operator 1-2 (0 dla wszystkich " +"operatorów); y: wł.)" + +#: src/engine/sysDef.cpp:567 src/engine/sysDef.cpp:594 +#: src/engine/sysDef.cpp:662 +msgid "56xx: Set decay of all operators (0 to F)" +msgstr "56xx: Ustaw opadanie wszystkich operatorów (0-F)" + +#: src/engine/sysDef.cpp:568 src/engine/sysDef.cpp:595 +#: src/engine/sysDef.cpp:663 +msgid "57xx: Set decay of operator 1 (0 to F)" +msgstr "57xx: Ustaw opadanie operatora 1 (0-F)" + +#: src/engine/sysDef.cpp:569 src/engine/sysDef.cpp:596 +#: src/engine/sysDef.cpp:664 +msgid "58xx: Set decay of operator 2 (0 to F)" +msgstr "58xx: Ustaw opadanie operatora 2 (0-F)" + +#: src/engine/sysDef.cpp:570 +msgid "" +"5Bxy: Set whether key will scale envelope (x: operator from 1 to 2 (0 for " +"all ops); y: enabled)" +msgstr "" +"5Bxy: Ustaw skalowanie obwiedni wg. nuty (x: operator 1-2 (0 dla wszystkich " +"operatorów); y: wł.)" + +#: src/engine/sysDef.cpp:574 +msgid "10xx: Set global AM depth (0: 1dB, 1: 4.8dB)" +msgstr "10xx: Ustaw globalną głebokość AM (0: 1 dB, 1: 4.8 dB)" + +#: src/engine/sysDef.cpp:578 src/engine/sysDef.cpp:633 +msgid "14xx: Set level of operator 3 (0 highest, 3F lowest)" +msgstr "14xx: Ustaw poziom operatora 3 (0 maks., 3F min.)" + +#: src/engine/sysDef.cpp:579 src/engine/sysDef.cpp:634 +msgid "15xx: Set level of operator 4 (0 highest, 3F lowest)" +msgstr "15xx: Ustaw poziom operatora 4 (0 maks., 3F min.)" + +#: src/engine/sysDef.cpp:581 +msgid "17xx: Set global vibrato depth (0: normal, 1: double)" +msgstr "17xx: Ustaw globalną głębokość vibrato (0: normalna, 1: podwójna)" + +#: src/engine/sysDef.cpp:585 src/engine/sysDef.cpp:640 +msgid "1Cxx: Set attack of operator 3 (0 to F)" +msgstr "1Cxx: Ustaw narastanie operatora 3 (0-F)" + +#: src/engine/sysDef.cpp:586 src/engine/sysDef.cpp:641 +msgid "1Dxx: Set attack of operator 4 (0 to F)" +msgstr "1Dxx: Ustaw narastanie operatora 4 (0-F)" + +#: src/engine/sysDef.cpp:587 +msgid "" +"2Axy: Set waveform (x: operator from 1 to 4 (0 for all ops); y: waveform " +"from 0 to 3 in OPL2 and 0 to 7 in OPL3)" +msgstr "" +"2Axy: Ustaw kształt fali (x: operator 1-4 (0 dla wszystkich operatorów); y: " +"kształt fali 0-3 dla OPL2 i 0-7 dla OPL3)" + +#: src/engine/sysDef.cpp:591 src/engine/sysDef.cpp:659 +msgid "53xy: Set vibrato (x: operator from 1 to 4 (0 for all ops); y: enabled)" +msgstr "" +"53xy: Ustaw vibrato (x: operator 1-4 (0 dla wszystkich operatorów); y: wł.)" + +#: src/engine/sysDef.cpp:593 src/engine/sysDef.cpp:661 +msgid "" +"55xy: Set envelope sustain (x: operator from 1 to 4 (0 for all ops); y: " +"enabled)" +msgstr "" +"55xy: Ustaw podtrzymanie obwiedni (x: operator 1-4 (0 dla wszystkich " +"operatorów); y: wł.)" + +#: src/engine/sysDef.cpp:597 src/engine/sysDef.cpp:665 +msgid "59xx: Set decay of operator 3 (0 to F)" +msgstr "59xx: Ustaw opadanie operatora 3 (0-F)" + +#: src/engine/sysDef.cpp:598 src/engine/sysDef.cpp:666 +msgid "5Axx: Set decay of operator 4 (0 to F)" +msgstr "5Axx: Ustaw opadanie operatora 4 (0-F)" + +#: src/engine/sysDef.cpp:599 src/engine/sysDef.cpp:667 +msgid "" +"5Bxy: Set whether key will scale envelope (x: operator from 1 to 4 (0 for " +"all ops); y: enabled)" +msgstr "" +"5Bxy: Ustaw skalowanie obwiedni wg. nuty (x: operator 1-4 (0 dla wszystkich " +"operatorów); y: wł.)" + +#: src/engine/sysDef.cpp:603 src/engine/sysDef.cpp:680 +msgid "" +"10xx: Set waveform (bit 0: triangle; bit 1: saw; bit 2: pulse; bit 3: noise)" +msgstr "" +"10xx: Ustaw kształt fali (bit 0: trójkątna; bit 1: piłokształtna; bit 2: " +"prostokątna; bit 3: szum)" + +#: src/engine/sysDef.cpp:604 +msgid "11xx: Set coarse cutoff (not recommended; use 4xxx instead)" +msgstr "" +"11xx: Ustaw przybliżony punkt odcięcia (niezalecane, proszę używać 4xxx)" + +#: src/engine/sysDef.cpp:605 +msgid "12xx: Set coarse pulse width (not recommended; use 3xxx instead)" +msgstr "" +"12xx: Ustaw przybliżoną szerokość fali prostokątnej (niezalecane, proszę " +"używać 3xxx)" + +#: src/engine/sysDef.cpp:606 +msgid "13xx: Set resonance (0 to F)" +msgstr "13xx: Ustaw rezonans (0-F)" + +#: src/engine/sysDef.cpp:607 +msgid "" +"14xx: Set filter mode (bit 0: low pass; bit 1: band pass; bit 2: high pass)" +msgstr "" +"14xx: Ustaw tryb filtra (bit 0: dolnoprzepustowy; bit 1: " +"środkowoprzepustowy; bit 2: górnoprzepustowy)" + +#: src/engine/sysDef.cpp:608 +msgid "15xx: Set envelope reset time" +msgstr "15xx: Ustaw czas resetu obwiedni" + +#: src/engine/sysDef.cpp:609 +msgid "1Axx: Disable envelope reset for this channel (1 disables; 0 enables)" +msgstr "1Axx: Wyłącz reset obwiedni dla tego kanału (1 wył.; 0 wł.)" + +#: src/engine/sysDef.cpp:610 +msgid "1Bxy: Reset cutoff (x: on new note; y: now)" +msgstr "1Bxy: Zresetuj punkt odcięcia (x: od nowej nuty; y: teraz)" + +#: src/engine/sysDef.cpp:611 +msgid "1Cxy: Reset pulse width (x: on new note; y: now)" +msgstr "1Cxy: Zresetuj szerokość fali prost. (x: od nowej nuty; y: teraz)" + +#: src/engine/sysDef.cpp:612 +msgid "1Exy: Change other parameters (LEGACY)" +msgstr "1Exy: Zmień inne parametry (PRZESTARZAŁE)" + +#: src/engine/sysDef.cpp:613 +msgid "20xy: Set attack/decay (x: attack; y: decay)" +msgstr "20xy: Ustaw narastanie/opadanie (x: narastanie; y: opadanie)" + +#: src/engine/sysDef.cpp:614 +msgid "21xy: Set sustain/release (x: sustain; y: release)" +msgstr "21xy: Ustaw podtrzymanie/zwolnienie (x: podtrzymanie; y: zwolnienie)" + +#: src/engine/sysDef.cpp:616 src/engine/sysDef.cpp:688 +msgid "3xxx: Set pulse width (0 to FFF)" +msgstr "3xxx: Ustaw szerokość fali prostokątnej (0-FFF)" + +#: src/engine/sysDef.cpp:617 +msgid "4xxx: Set cutoff (0 to 7FF)" +msgstr "4xxx: Ustaw punkt odcięcia (0-7FF)" + +#: src/engine/sysDef.cpp:622 src/engine/sysDef.cpp:745 +#: src/engine/sysDef.cpp:762 src/engine/sysDef.cpp:1000 +#: src/engine/sysDef.cpp:1050 src/engine/sysDef.cpp:1268 +#: src/engine/sysDef.cpp:1320 src/engine/sysDef.cpp:1590 +#: src/engine/sysDef.cpp:1788 src/engine/sysDef.cpp:1792 +#: src/engine/sysDef.cpp:1893 src/engine/sysDef.cpp:2063 +#: src/engine/sysDef.cpp:2077 +msgid "10xx: Set waveform" +msgstr "10xx: Ustaw kształt fali" + +#: src/engine/sysDef.cpp:626 +msgid "20xx: Set PCM frequency" +msgstr "20xx: Ustaw częstotliwość PCM" + +#: src/engine/sysDef.cpp:630 +msgid "" +"10xy: Set AM depth (x: operator from 1 to 4 (0 for all ops); y: depth (0: " +"1dB, 1: 4.8dB))" +msgstr "" +"10xy: Ustaw głębokość AM (x: operator 1-4 (0 dla wszystkich operatorów); y: " +"głębokość (0: 1 dB, 1: 4.8 dB))" + +#: src/engine/sysDef.cpp:636 +msgid "" +"17xy: Set vibrato depth (x: operator from 1 to 4 (0 for all ops); y: depth " +"(0: normal, 1: double))" +msgstr "" +"17xy: Ustaw głębokość vibrato (x: operator 1-4 (0 dla wszystkich " +"operatorów); y: głębokość (0: normalna, 1: podwójna))" + +#: src/engine/sysDef.cpp:642 +msgid "20xy: Set panning of operator 1 (x: left; y: right)" +msgstr "20xy: Ustaw panning operatora 1 (x: lewo; y: prawo)" + +#: src/engine/sysDef.cpp:643 +msgid "21xy: Set panning of operator 2 (x: left; y: right)" +msgstr "21xy: Ustaw panning operatora 2 (x: lewo; y: prawo)" + +#: src/engine/sysDef.cpp:644 +msgid "22xy: Set panning of operator 3 (x: left; y: right)" +msgstr "22xy: Ustaw panning operatora 3 (x: lewo; y: prawo)" + +#: src/engine/sysDef.cpp:645 +msgid "23xy: Set panning of operator 4 (x: left; y: right)" +msgstr "23xy: Ustaw panning operatora 4 (x: lewo; y: prawo)" + +#: src/engine/sysDef.cpp:646 +msgid "" +"24xy: Set output level register (x: operator from 1 to 4 (0 for all ops); y: " +"level from 0 to 7)" +msgstr "" +"24xy: Ustaw rejestr poziomu sygnału wyjściowego (głośności) (x: operator 1-4 " +"(0 dla wszystkich operatorów); y: poziom 0-7)" + +#: src/engine/sysDef.cpp:647 +msgid "" +"25xy: Set modulation input level (x: operator from 1 to 4 (0 for all ops); " +"y: level from 0 to 7)" +msgstr "" +"25xy: Ustaw poziom sygnału wejściowego modulacji (x: operator 1-4 (0 dla " +"wszystkich operatorów); y: poziom 0-7)" + +#: src/engine/sysDef.cpp:648 +msgid "" +"26xy: Set envelope delay (x: operator from 1 to 4 (0 for all ops); y: delay " +"from 0 to 7)" +msgstr "" +"26xy: Ustaw opóźnienie obwiedni (x: operator 1-4 (0 dla wszystkich " +"operatorów); y: opóźnienie 0-7)" + +#: src/engine/sysDef.cpp:649 +msgid "27xx: Set noise mode for operator 4 (x: mode from 0 to 3)" +msgstr "27xx: Ustaw tryb szumu na operatorze 4 (x: tryby 0-3)" + +#: src/engine/sysDef.cpp:651 +msgid "" +"2Fxy: Set fixed frequency block (x: operator from 1 to 4; y: octave from 0 " +"to 7)" +msgstr "2Fxy: Ustaw blok stałej częstotiwości (x: operator 1-4; y: oktawa 0-7)" + +#: src/engine/sysDef.cpp:652 +msgid "40xx: Set detune of operator 1 (80: center)" +msgstr "40xx: Ustaw rozstrojenie operatora 1 (80: brak rozstrojenia)" + +#: src/engine/sysDef.cpp:653 +msgid "41xx: Set detune of operator 2 (80: center)" +msgstr "41xx: Ustaw rozstrojenie operatora 2 (80: brak rozstrojenia)" + +#: src/engine/sysDef.cpp:654 +msgid "42xx: Set detune of operator 3 (80: center)" +msgstr "42xx: Ustaw rozstrojenie operatora 3 (80: brak rozstrojenia)" + +#: src/engine/sysDef.cpp:655 +msgid "43xx: Set detune of operator 4 (80: center)" +msgstr "43xx: Ustaw rozstrojenie operatora 4 (80: brak rozstrojenia)" + +#: src/engine/sysDef.cpp:670 +msgid "" +"3xyy: Set fixed frequency F-num of operator 1 (x: high 2 bits from 0 to 3; " +"y: low 8 bits of F-num)" +msgstr "" +"3xyy: Ustaw F-Num stałej częstotliwości dla operatora 1 (x: dwa wysokie bity " +"0-3; y: 8 niskich bitów F-num)" + +#: src/engine/sysDef.cpp:671 +msgid "" +"3xyy: Set fixed frequency F-num of operator 2 (x: high 2 bits from 4 to 7; " +"y: low 8 bits of F-num)" +msgstr "" +"3xyy: Ustaw F-Num stałej częstotliwości dla operatora 2 (x: dwa wysokie bity " +"4-7; y: 8 niskich bitów F-num)" + +#: src/engine/sysDef.cpp:672 +msgid "" +"3xyy: Set fixed frequency F-num of operator 3 (x: high 2 bits from 8 to B; " +"y: low 8 bits of F-num)" +msgstr "" +"3xyy: Ustaw F-Num stałej częstotliwości dla operatora 3 (x: dwa wysokie bity " +"8-B; y: 8 niskich bitów F-num)" + +#: src/engine/sysDef.cpp:673 +msgid "" +"3xyy: Set fixed frequency F-num of operator 4 (x: high 2 bits from C to F; " +"y: low 8 bits of F-num)" +msgstr "" +"3xyy: Ustaw F-Num stałej częstotliwości dla operatora 4 (x:dwa wysokie bity " +"C-F; y: 8 niskich bitów F-num)" + +#: src/engine/sysDef.cpp:681 +msgid "11xx: Set resonance (0 to FF)" +msgstr "11xx: Ustaw rezonans (0-FF)" + +#: src/engine/sysDef.cpp:682 +msgid "" +"12xx: Set filter mode (bit 0: low pass; bit 1: band pass; bit 2: high pass)" +msgstr "" +"12xx: Ustaw tryb filtra (bit 0: dolnoprzespustowy; bit 1: " +"środkowoprzepustowy; bit 2: górnoprzepustowy)" + +#: src/engine/sysDef.cpp:683 +msgid "13xx: Disable envelope reset for this channel (1 disables; 0 enables)" +msgstr "13xx: Wyłącz reset obwiedni dla tego kanału (1 wył.; 0 wł.)" + +#: src/engine/sysDef.cpp:684 +msgid "14xy: Reset cutoff (x: on new note; y: now)" +msgstr "14xy: Resetuj punkt odcięcia (x: od nowej nuty; y: teraz)" + +#: src/engine/sysDef.cpp:685 +msgid "15xy: Reset pulse width (x: on new note; y: now)" +msgstr "15xy: Resetuj szerokość fali prostokątnej (x: od nowej nuty; y: teraz)" + +#: src/engine/sysDef.cpp:686 +msgid "16xy: Change other parameters" +msgstr "16xy: Zmień inne parametry" + +#: src/engine/sysDef.cpp:689 src/engine/sysDef.cpp:1733 +msgid "4xxx: Set cutoff (0 to FFF)" +msgstr "4xxx: Ustaw punkt odcięcia (0-FFF)" + +#: src/engine/sysDef.cpp:697 +msgid "Yamaha YMU759 (MA-2)" +msgstr "" + +#: src/engine/sysDef.cpp:698 +msgid "" +"a chip which found its way inside mobile phones in the 2000's.\n" +"as proprietary as it is, it passed away after losing to MP3 in the mobile " +"hardware battle." +msgstr "" +"układ, który zaczął pojawiać się w telefonach komórkowych w 2000 r.\n" +" jako iż wykorzystwał zastreżony format, przegrał z formatem MP3 podczas " +"rywalizacji między różnymi typami sprzętu mobilnego." + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:807 src/engine/sysDef.cpp:819 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:915 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1237 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1314 src/engine/sysDef.cpp:1356 +#: src/engine/sysDef.cpp:1396 src/engine/sysDef.cpp:1499 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1572 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1608 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1799 src/engine/sysDef.cpp:1810 +#: src/engine/sysDef.cpp:1821 src/engine/sysDef.cpp:1832 +#: src/engine/sysDef.cpp:1900 src/engine/sysDef.cpp:1910 +#: src/engine/sysDef.cpp:1920 src/engine/sysDef.cpp:1944 +#: src/engine/sysDef.cpp:1957 src/engine/sysDef.cpp:1970 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2037 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2122 +#: src/engine/sysDef.cpp:2138 src/engine/sysDef.cpp:2150 +msgid "Channel 1" +msgstr "Kanał 1" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:807 src/engine/sysDef.cpp:819 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:915 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1237 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1314 src/engine/sysDef.cpp:1356 +#: src/engine/sysDef.cpp:1396 src/engine/sysDef.cpp:1499 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1572 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1608 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1799 src/engine/sysDef.cpp:1810 +#: src/engine/sysDef.cpp:1821 src/engine/sysDef.cpp:1832 +#: src/engine/sysDef.cpp:1900 src/engine/sysDef.cpp:1910 +#: src/engine/sysDef.cpp:1920 src/engine/sysDef.cpp:1944 +#: src/engine/sysDef.cpp:1957 src/engine/sysDef.cpp:1970 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2037 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2122 +#: src/engine/sysDef.cpp:2138 src/engine/sysDef.cpp:2150 +msgid "Channel 2" +msgstr "Kanał 2" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:807 src/engine/sysDef.cpp:819 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1237 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1314 +#: src/engine/sysDef.cpp:1356 src/engine/sysDef.cpp:1396 +#: src/engine/sysDef.cpp:1499 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1572 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1799 src/engine/sysDef.cpp:1810 +#: src/engine/sysDef.cpp:1821 src/engine/sysDef.cpp:1832 +#: src/engine/sysDef.cpp:1910 src/engine/sysDef.cpp:1944 +#: src/engine/sysDef.cpp:1957 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2037 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +#: src/engine/sysDef.cpp:2122 src/engine/sysDef.cpp:2138 +#: src/engine/sysDef.cpp:2150 +msgid "Channel 3" +msgstr "Kanał 3" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1237 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1314 +#: src/engine/sysDef.cpp:1356 src/engine/sysDef.cpp:1396 +#: src/engine/sysDef.cpp:1499 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1572 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1910 +#: src/engine/sysDef.cpp:1944 src/engine/sysDef.cpp:1957 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +#: src/engine/sysDef.cpp:2122 src/engine/sysDef.cpp:2150 +msgid "Channel 4" +msgstr "Kanał 4" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1314 +#: src/engine/sysDef.cpp:1356 src/engine/sysDef.cpp:1396 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1572 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1705 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 5" +msgstr "Kanał 5" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1356 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 6" +msgstr "Kanał 6" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 7" +msgstr "Kanał 7" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 8" +msgstr "Kanał 8" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 9" +msgstr "Kanał 9" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 10" +msgstr "Kanał 10" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 11" +msgstr "Kanał 11" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 12" +msgstr "Kanał 12" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 13" +msgstr "Kanał 13" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 14" +msgstr "Kanał 14" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 15" +msgstr "Kanał 15" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 16" +msgstr "Kanał 16" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:700 +#: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1767 src/engine/sysDef.cpp:1888 +#: src/engine/sysDef.cpp:1944 src/engine/sysDef.cpp:1945 +#: src/gui/settings.cpp:4094 +msgid "PCM" +msgstr "PCM" + +#: src/engine/sysDef.cpp:706 +msgid "Sega Genesis/Mega Drive" +msgstr "Sega Mega Drive" + +#: src/engine/sysDef.cpp:712 +msgid "Sega Genesis Extended Channel 3" +msgstr "Sega Mega Drive z rozszerzonym kanałem 3" + +#: src/engine/sysDef.cpp:718 src/gui/sysConf.cpp:158 +msgid "TI SN76489" +msgstr "TI SN76489" + +#: src/engine/sysDef.cpp:719 +msgid "" +"a square/noise sound chip found on the Sega Master System, ColecoVision, " +"Tandy, TI's own 99/4A and a few other places." +msgstr "" +"układ generujący falę prostokątną i szum, który został zastosowany w Sega " +"Master System, ColecoVision, Tandy, własnym urządzeniu 99/4A firmy TI i " +"kilku innych urządzeniach" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 +msgid "Square 1" +msgstr "Kwadrat 1" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 +msgid "Square 2" +msgstr "Kwadrat 2" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 +msgid "Square 3" +msgstr "Kwadrat 3" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:739 +#: src/engine/sysDef.cpp:773 src/engine/sysDef.cpp:955 +#: src/engine/sysDef.cpp:1314 src/engine/sysDef.cpp:1874 +#: src/engine/sysDef.cpp:1920 src/engine/sysDef.cpp:2037 +#: src/engine/sysDef.cpp:2100 src/gui/settings.cpp:4093 +#: src/gui/insEdit.cpp:6978 src/gui/insEdit.cpp:7129 src/gui/insEdit.cpp:7223 +#: src/gui/insEdit.cpp:7315 +msgid "Noise" +msgstr "Szum" + +#: src/engine/sysDef.cpp:726 +msgid "20xy: Set noise mode (x: preset freq/ch3 freq; y: thin pulse/noise)" +msgstr "" +"20xy: Ustaw tryb szumu (x: predefiniowane częstotliwości/częstostliwość z 3-" +"go kanału; y: \"cienka\" fala prostokątna/szum)" + +#: src/engine/sysDef.cpp:731 +msgid "Sega Master System + FM Expansion" +msgstr "Sega Master System z rozszerzeniem FM" + +#: src/engine/sysDef.cpp:737 src/gui/settings.cpp:4025 +msgid "Game Boy" +msgstr "Game Boy" + +#: src/engine/sysDef.cpp:738 +msgid "the most popular portable game console of the era." +msgstr "najbardziej popularna przenośna konsola tamtych czasów." + +#: src/engine/sysDef.cpp:739 src/engine/sysDef.cpp:773 +#: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:2100 +msgid "Pulse 1" +msgstr "Prostokąt 1" + +#: src/engine/sysDef.cpp:739 src/engine/sysDef.cpp:773 +#: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:2100 +msgid "Pulse 2" +msgstr "Prostokąt 2" + +#: src/engine/sysDef.cpp:739 src/gui/settings.cpp:3930 +#: src/gui/guiConst.cpp:1395 src/gui/insEdit.cpp:6652 +msgid "Wavetable" +msgstr "Synteza tablicowa" + +#: src/engine/sysDef.cpp:746 +msgid "11xx: Set noise length (0: long; 1: short)" +msgstr "11xx: Ustaw długość szumu (0: długi; 1: krótki)" + +#: src/engine/sysDef.cpp:747 +msgid "12xx: Set duty cycle (0 to 3)" +msgstr "12xx: Ustaw szerokość fali prostokątnej (0-3)" + +#: src/engine/sysDef.cpp:748 +msgid "13xy: Setup sweep (x: time; y: shift)" +msgstr "" +"13xy: Skonfiguruj sprzętowe portamento (x: okres trwania; y: przesunięcie)" + +#: src/engine/sysDef.cpp:749 +msgid "14xx: Set sweep direction (0: up; 1: down)" +msgstr "14xx: Ustaw kierunek sprzętowego portamento (0: w górę; 1: w dół)" + +#: src/engine/sysDef.cpp:754 +msgid "PC Engine/TurboGrafx-16" +msgstr "PC Engine" + +#: src/engine/sysDef.cpp:755 +msgid "an '80s game console with a wavetable sound chip, popular in Japan." +msgstr "" +"konsola do gier z lat 80. z syntezatorem tablicowym. była popularna w " +"Japonii." + +#: src/engine/sysDef.cpp:763 src/engine/sysDef.cpp:1001 +#: src/engine/sysDef.cpp:1793 +msgid "11xx: Toggle noise mode" +msgstr "11xx: Włącz tryb szumu" + +#: src/engine/sysDef.cpp:764 +msgid "12xx: Setup LFO (0: disabled; 1: 1x depth; 2: 16x depth; 3: 256x depth)" +msgstr "" +"12xx: Ustaw LFO (0: wł.; 1: głębokość 1x; 2: głębokość 16x; 3: głębokość " +"256x)" + +#: src/engine/sysDef.cpp:765 +msgid "13xx: Set LFO speed" +msgstr "13xx: Ustaw szybkość LFO" + +#: src/engine/sysDef.cpp:771 +msgid "NES (Ricoh 2A03)" +msgstr "" + +#: src/engine/sysDef.cpp:772 +msgid "" +"also known as Famicom in Japan, it's the most well-known game console of the " +"'80s." +msgstr "" +"także znana w Japonii jako Famicom. to najbardziej znana konsola lat 80-tych." + +#: src/engine/sysDef.cpp:773 src/gui/waveEdit.cpp:31 src/gui/waveEdit.cpp:217 +#: src/gui/insEdit.cpp:200 src/gui/insEdit.cpp:324 src/gui/insEdit.cpp:658 +msgid "Triangle" +msgstr "Fala trójkątna" + +#: src/engine/sysDef.cpp:773 src/engine/sysDef.cpp:2100 +#: src/gui/insEdit.cpp:2629 +msgid "DPCM" +msgstr "DPCM" + +#: src/engine/sysDef.cpp:779 src/engine/sysDef.cpp:2106 +msgid "11xx: Write to delta modulation counter (0 to 7F)" +msgstr "11xx: Zapisz do licznika modulacji delta (0-7F)" + +#: src/engine/sysDef.cpp:780 src/engine/sysDef.cpp:1068 +msgid "12xx: Set duty cycle/noise mode (pulse: 0 to 3; noise: 0 or 1)" +msgstr "" +"12xx: Ustaw szerokość fali prostokątnej/tryb szumu (fala prostokątna: 0-3; " +"szum: 0 lub 1)" + +#: src/engine/sysDef.cpp:781 src/engine/sysDef.cpp:2108 +msgid "13xy: Sweep up (x: time; y: shift)" +msgstr "13xy: Sprzętowe portamento w górę (x: czas; y: przesunięcie)" + +#: src/engine/sysDef.cpp:782 src/engine/sysDef.cpp:2109 +msgid "14xy: Sweep down (x: time; y: shift)" +msgstr "14xy: Sprzętowe portamento w dół (x: czas; y: przesunięcie)" + +#: src/engine/sysDef.cpp:783 src/engine/sysDef.cpp:2110 +msgid "" +"15xx: Set envelope mode (0: envelope, 1: length, 2: looping, 3: constant)" +msgstr "" +"15xx: Ustaw tryb obwiedni (0: obwiednia, 1: długość, 2: zapętla, 3: stały)" + +#: src/engine/sysDef.cpp:784 src/engine/sysDef.cpp:2111 +msgid "16xx: Set length counter (refer to manual for a list of values)" +msgstr "16xx: Ustaw długość licznika (lista wartości w instrukcji)" + +#: src/engine/sysDef.cpp:785 src/engine/sysDef.cpp:2112 +msgid "17xx: Set frame counter mode (0: 4-step, 1: 5-step)" +msgstr "17xx: Tryb licznika klatek (0: 4 kroki, 1: 5 kroków)" + +#: src/engine/sysDef.cpp:786 src/engine/sysDef.cpp:2113 +msgid "18xx: Select PCM/DPCM mode (0: PCM; 1: DPCM)" +msgstr "18xx: Wybierz tryb PCM/DPCM (0: PCM; 1: DPCM)" + +#: src/engine/sysDef.cpp:787 src/engine/sysDef.cpp:2114 +msgid "19xx: Set triangle linear counter (0 to 7F; 80 and higher halt)" +msgstr "" +"19xx: Ustaw liniowy licznik kanały fali trójk. (0-7F; 80 w wyżej zatrzymują " +"falę" + +#: src/engine/sysDef.cpp:788 src/engine/sysDef.cpp:2115 +msgid "20xx: Set DPCM frequency (0 to F)" +msgstr "20xx: Ustaw częstotliwość DPCM (0-F)" + +#: src/engine/sysDef.cpp:793 +msgid "NES + Konami VRC7" +msgstr "" + +#: src/engine/sysDef.cpp:799 +msgid "Famicom Disk System" +msgstr "" + +#: src/engine/sysDef.cpp:805 +msgid "Commodore 64 (SID 6581)" +msgstr "" + +#: src/engine/sysDef.cpp:806 +msgid "" +"this computer is powered by the SID chip, which had synthesizer features " +"like a filter and ADSR." +msgstr "" +"ten komputer ma układ SID, który ma zaawansowane funkcje typowe dla " +"syntezatorów, takie jak filtr i obwiednia ADSR." + +#: src/engine/sysDef.cpp:817 +msgid "Commodore 64 (SID 8580)" +msgstr "" + +#: src/engine/sysDef.cpp:818 +msgid "" +"this computer is powered by the SID chip, which had synthesizer features " +"like a filter and ADSR.\n" +"this is the newer revision of the chip." +msgstr "" +"ten komputer ma układ SID, który ma zaawansowane funkcje typowe dla " +"syntezatorów, takie jak filtr i obwiednia ADSR.\n" +"to nowsza wersja układu." + +#: src/engine/sysDef.cpp:829 +msgid "DefleCade" +msgstr "" + +#: src/engine/sysDef.cpp:835 +msgid "Neo Geo CD" +msgstr "" + +#: src/engine/sysDef.cpp:836 +msgid "" +"like Neo Geo, but lacking the ADPCM-B channel since they couldn't connect " +"the pins." +msgstr "" +"to samo co Neo Geo, ale bez kanału ADPCM-B, ponieważ podłączenie pinów ich " +"przerosło." + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1173 +#: src/engine/sysDef.cpp:1185 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1443 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +#: src/engine/sysDef.cpp:2006 +msgid "FM 1" +msgstr "FM 1" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:891 +#: src/engine/sysDef.cpp:903 src/engine/sysDef.cpp:1032 +#: src/engine/sysDef.cpp:1097 src/engine/sysDef.cpp:1109 +#: src/engine/sysDef.cpp:1122 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1546 +#: src/engine/sysDef.cpp:1559 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:1693 src/engine/sysDef.cpp:1849 +#: src/engine/sysDef.cpp:1861 src/engine/sysDef.cpp:2006 +msgid "FM 2" +msgstr "FM 2" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1173 +#: src/engine/sysDef.cpp:1185 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1443 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:2006 +msgid "FM 3" +msgstr "FM 3" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1546 +#: src/engine/sysDef.cpp:1559 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:1693 src/engine/sysDef.cpp:1849 +#: src/engine/sysDef.cpp:1861 src/engine/sysDef.cpp:2006 +msgid "FM 4" +msgstr "FM 4" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:862 src/engine/sysDef.cpp:927 +#: src/engine/sysDef.cpp:943 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "PSG 1" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:862 src/engine/sysDef.cpp:927 +#: src/engine/sysDef.cpp:943 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "PSG 2" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:862 src/engine/sysDef.cpp:927 +#: src/engine/sysDef.cpp:943 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "PSG 3" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 1" +msgstr "ADPCM-A 1" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 2" +msgstr "ADPCM-A 2" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 3" +msgstr "ADPCM-A 3" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 4" +msgstr "ADPCM-A 4" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 5" +msgstr "ADPCM-A 5" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 6" +msgstr "ADPCM-A 6" + +#: src/engine/sysDef.cpp:847 +msgid "Neo Geo CD Extended Channel 2" +msgstr "Neo Geo CD z rozszerzonym kanałem 2" + +#: src/engine/sysDef.cpp:848 +msgid "" +"like Neo Geo, but lacking the ADPCM-B channel since they couldn't connect " +"the pins.\n" +"this one is in Extended Channel mode, which turns the second FM channel into " +"four operators with independent notes/frequencies." +msgstr "" +"to samo co Neo Geo, ale bez kanału ADPCM-B, ponieważ podłaczenie pinów ich " +"przerosło.\n" +"jest to układ w trybie rozszerzonego kanału, który zamienia drugi kanał FM w " +"cztery operatory z niezależnymi nutami/częstotliwościami." + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP1" +msgstr "" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP2" +msgstr "" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP3" +msgstr "" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP4" +msgstr "" + +#: src/engine/sysDef.cpp:860 src/gui/sysConf.cpp:913 +msgid "AY-3-8910" +msgstr "" + +#: src/engine/sysDef.cpp:861 +msgid "" +"this chip is everywhere! ZX Spectrum, MSX, Amstrad CPC, Intellivision, " +"Vectrex...\n" +"the discovery of envelope bass helped it beat the SN76489 with ease." +msgstr "" +"ten układ był wszędzie! ZX Spectrum, MSX, Amstrad CPC, Intellivision, " +"Vectrex...\n" +"odkrycie metody wykorzystania obwiedni dla basów pozwoliło temu układowi z " +"łatwością pokonać SN76489." + +#: src/engine/sysDef.cpp:872 +msgid "Amiga" +msgstr "" + +#: src/engine/sysDef.cpp:873 +msgid "" +"a computer from the '80s with full sampling capabilities, giving it a sound " +"ahead of its time." +msgstr "" +"komputer z lat 80-tych z pełnymi możliwościami samplingu, nadający mu " +"brzmienie wyprzedzające swoją epokę." + +#: src/engine/sysDef.cpp:881 +msgid "10xx: Toggle filter (0 disables; 1 enables)" +msgstr "10xx: Włącz filtr (0 wył.; 1 wł.)" + +#: src/engine/sysDef.cpp:882 +msgid "11xx: Toggle AM with next channel" +msgstr "11xx: Włącz AM z następnym kanałem" + +#: src/engine/sysDef.cpp:883 +msgid "12xx: Toggle period modulation with next channel" +msgstr "12xx: Włącz modulację okresu z następnym kanałem" + +#: src/engine/sysDef.cpp:884 +msgid "13xx: Set waveform" +msgstr "13xx: Ustaw kształt fali" + +#: src/engine/sysDef.cpp:889 +msgid "Yamaha YM2151 (OPM)" +msgstr "Yamaha YM2151 (OPM)" + +#: src/engine/sysDef.cpp:890 +msgid "" +"this was Yamaha's first integrated FM chip.\n" +"it was used in several synthesizers, computers and arcade boards." +msgstr "" +"układ ten był pierwszym jednoukładowym syntezatorem FM Yamahy\n" +"był używany w kilku syntezatorach, komputerach i automatach do gier." + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1279 src/engine/sysDef.cpp:1332 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1370 +#: src/engine/sysDef.cpp:1383 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +#: src/engine/sysDef.cpp:2006 +msgid "FM 5" +msgstr "" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:2006 +msgid "FM 6" +msgstr "" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:1032 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1279 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:2006 +msgid "FM 7" +msgstr "" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:1032 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:2006 +msgid "FM 8" +msgstr "" + +#: src/engine/sysDef.cpp:901 +msgid "Yamaha YM2612 (OPN2)" +msgstr "" + +#: src/engine/sysDef.cpp:902 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer)." +msgstr "" +"układ ten jest głównie znany z konsoli Sega Mega Drive (ale był również " +"używany w komputerze FM Towns)." + +#: src/engine/sysDef.cpp:913 +msgid "Atari TIA" +msgstr "" + +#: src/engine/sysDef.cpp:914 +msgid "" +"it's a challenge to make music on this chip which barely has musical " +"capabilities..." +msgstr "" +"jest to pewne wyzwanie tworzyć komozycje pod układ który praktycznie nie " +"posiada możliwości muzycznych..." + +#: src/engine/sysDef.cpp:925 +msgid "Philips SAA1099" +msgstr "" + +#: src/engine/sysDef.cpp:926 +msgid "" +"supposedly an upgrade from the AY-3-8910, this was present on the Creative " +"Music System (Game Blaster) and SAM Coupé." +msgstr "" +"ten układ, rzekomo ulepszona wersja AY-3-8910, był używany w Creative Music " +"System (Game Blaster) i SAM Coupé." + +#: src/engine/sysDef.cpp:927 +msgid "PSG 4" +msgstr "" + +#: src/engine/sysDef.cpp:927 +msgid "PSG 5" +msgstr "" + +#: src/engine/sysDef.cpp:927 +msgid "PSG 6" +msgstr "" + +#: src/engine/sysDef.cpp:934 +msgid "10xy: Set channel mode (x: noise; y: tone)" +msgstr "10xy: Ustaw tryb kanału (x: szum; y: ton)" + +#: src/engine/sysDef.cpp:935 +msgid "11xx: Set noise frequency" +msgstr "11xx: Częstotliwość szumu" + +#: src/engine/sysDef.cpp:936 +msgid "12xx: Setup envelope (refer to docs for more information)" +msgstr "12xx: Konfiguruj obwiednię (patrz: instrukcja)" + +#: src/engine/sysDef.cpp:941 +msgid "Microchip AY8930" +msgstr "" + +#: src/engine/sysDef.cpp:942 +msgid "" +"an improved version of the AY-3-8910 with a bigger frequency range, duty " +"cycles, configurable noise and per-channel envelopes!" +msgstr "" +"ulepszona wersja AY-3-8910 z większym zakresem częstotliwości, regulowaną " +"szerokością fali prostokątnej, regulowanym szumem i osobnymi obwiedniami na " +"każdy kanał!" + +#: src/engine/sysDef.cpp:953 +msgid "Commodore VIC-20" +msgstr "" + +#: src/engine/sysDef.cpp:954 +msgid "" +"Commodore's successor to the PET.\n" +"its square wave channels are more than just square..." +msgstr "" +"komputer Commodore, który ukazał się po PET.\n" +"jego kanały fal prostokątnych mogą generować coś więcej niż tylko fale " +"prostokątne..." + +#: src/engine/sysDef.cpp:955 src/gui/settings.cpp:136 src/gui/settings.cpp:206 +#: src/gui/settings.cpp:3970 +msgid "Low" +msgstr "Niskie" + +#: src/engine/sysDef.cpp:955 +msgid "Mid" +msgstr "" + +#: src/engine/sysDef.cpp:955 src/gui/settings.cpp:135 src/gui/settings.cpp:208 +#: src/gui/settings.cpp:3971 +msgid "High" +msgstr "Wysokie" + +#: src/engine/sysDef.cpp:964 +msgid "Commodore PET" +msgstr "" + +#: src/engine/sysDef.cpp:965 +msgid "" +"one channel of 1-bit wavetable which is better (and worse) than the PC " +"Speaker." +msgstr "" +"1-kanałowy 1-bitow syntezator tablicowy, która jest lepszy (lub gorszy) niż " +"PC Speaker (brzęczyk)." + +#: src/engine/sysDef.cpp:966 src/engine/sysDef.cpp:1262 +#: src/engine/sysDef.cpp:2100 src/gui/editControls.cpp:433 +#: src/gui/settings.cpp:4017 src/gui/settings.cpp:4095 +msgid "Wave" +msgstr "Fala" + +#: src/engine/sysDef.cpp:975 src/gui/settings.cpp:4052 +msgid "SNES" +msgstr "SNES" + +#: src/engine/sysDef.cpp:976 +msgid "FM? nah... samples! Nintendo's answer to Sega." +msgstr "FM? nieee, sample! Odpowiedź Nintendo na sukces Segi." + +#: src/engine/sysDef.cpp:983 +msgid "18xx: Enable echo buffer" +msgstr "18xx: Włącz bufor echo" + +#: src/engine/sysDef.cpp:984 +msgid "19xx: Set echo delay (0 to F)" +msgstr "19xx: Ustaw opóźnienie echo (0-F)" + +#: src/engine/sysDef.cpp:985 +msgid "1Axx: Set left echo volume" +msgstr "1Axx: Ustaw głośność echo na lewym kanale" + +#: src/engine/sysDef.cpp:986 +msgid "1Bxx: Set right echo volume" +msgstr "1Bxx: Ustaw głośność echo na prawym kanale" + +#: src/engine/sysDef.cpp:987 +msgid "1Cxx: Set echo feedback" +msgstr "1Cxx: Ustaw feedback echo" + +#: src/engine/sysDef.cpp:988 +msgid "1Exx: Set dry output volume (left)" +msgstr "1Exx: Ustaw głośność suchego sygnału wyjściowego (kanał lewy)" + +#: src/engine/sysDef.cpp:989 +msgid "1Fxx: Set dry output volume (right)" +msgstr "1Fxx: Ustaw głośność suchego sygnału wejściowego (kanał prawy)" + +#: src/engine/sysDef.cpp:990 +msgid "30xx: Set echo filter coefficient 0" +msgstr "30xx: Ustaw współczynnik 0 filtra echo" + +#: src/engine/sysDef.cpp:991 +msgid "31xx: Set echo filter coefficient 1" +msgstr "31xx: Ustaw współczynnik 1 filtra echo" + +#: src/engine/sysDef.cpp:992 +msgid "32xx: Set echo filter coefficient 2" +msgstr "32xx: Ustaw współczynnik 2 filtra echo" + +#: src/engine/sysDef.cpp:993 +msgid "33xx: Set echo filter coefficient 3" +msgstr "33xx: Ustaw współczynnik 3 filtra echo" + +#: src/engine/sysDef.cpp:994 +msgid "34xx: Set echo filter coefficient 4" +msgstr "34xx: Ustaw współczynnik 4 filtra echo" + +#: src/engine/sysDef.cpp:995 +msgid "35xx: Set echo filter coefficient 5" +msgstr "35xx: Ustaw współczynnik 5 filtra echo" + +#: src/engine/sysDef.cpp:996 +msgid "36xx: Set echo filter coefficient 6" +msgstr "36xx: Ustaw współczynnik 6 filtra echo" + +#: src/engine/sysDef.cpp:997 +msgid "37xx: Set echo filter coefficient 7" +msgstr "37xx: Ustaw współczynnik 7 filtra echo" + +#: src/engine/sysDef.cpp:1002 +msgid "12xx: Toggle echo on this channel" +msgstr "12xx: Włącz echo na tym kanale" + +#: src/engine/sysDef.cpp:1003 +msgid "13xx: Toggle pitch modulation" +msgstr "13xx: Włącz modulację wysokości dźwięku" + +#: src/engine/sysDef.cpp:1004 +msgid "14xy: Toggle invert (x: left; y: right)" +msgstr "14xy: Włacz odwrócenie sygnału (x: lewo; y: prawo)" + +#: src/engine/sysDef.cpp:1005 +msgid "" +"15xx: Set envelope mode (0: ADSR, 1: gain/direct, 2: dec, 3: exp, 4: inc, 5: " +"bent)" +msgstr "" +"15xx: Tryb obwiedni (0: ADSR, 1: wzmocnienie/bezpośredni, 2: opadający 3: " +"wykładniczy, 4: wzrastający 5: zakrzywiony)" + +#: src/engine/sysDef.cpp:1006 +msgid "16xx: Set gain (00 to 7F if direct; 00 to 1F otherwise)" +msgstr "16xx: Ustaw wzmocnienie (00-7F w bezpośrednim trrybie; inaczej 00-1F)" + +#: src/engine/sysDef.cpp:1007 +msgid "1Dxx: Set noise frequency (00 to 1F)" +msgstr "1Dxx: Ustaw częstotliwość szumu (00-1F)" + +#: src/engine/sysDef.cpp:1008 +msgid "20xx: Set attack (0 to F)" +msgstr "20xx: Ustaw narastanie (0-F)" + +#: src/engine/sysDef.cpp:1009 +msgid "21xx: Set decay (0 to 7)" +msgstr "21xx: Ustaw opadanie (0-7)" + +#: src/engine/sysDef.cpp:1010 +msgid "22xx: Set sustain (0 to 7)" +msgstr "22xx: Ustaw podtrzymanie (0-7)" + +#: src/engine/sysDef.cpp:1011 +msgid "23xx: Set release (00 to 1F)" +msgstr "23xx: Ustaw zwolnienie (00-1F)" + +#: src/engine/sysDef.cpp:1016 +msgid "Konami VRC6" +msgstr "" + +#: src/engine/sysDef.cpp:1017 +msgid "an expansion chip for the Famicom, featuring a quirky sawtooth channel." +msgstr "" +"rozszerzenie dla Famicoma, zawierający bardzo nietypowy kanał fali " +"piłokształtnej." + +#: src/engine/sysDef.cpp:1018 +msgid "VRC6 1" +msgstr "VRC6 1" + +#: src/engine/sysDef.cpp:1018 +msgid "VRC6 2" +msgstr "VRC6 2" + +#: src/engine/sysDef.cpp:1018 +msgid "VRC6 Saw" +msgstr "Piła VRC6" + +#: src/engine/sysDef.cpp:1024 src/engine/sysDef.cpp:2092 +msgid "12xx: Set duty cycle (pulse: 0 to 7)" +msgstr "12xx: Ustaw szerokość fali prostokątnej (fala prostokątna: 0-7)" + +#: src/engine/sysDef.cpp:1030 +msgid "Yamaha YM2413 (OPLL)" +msgstr "Yamaha YM2413 (OPLL)" + +#: src/engine/sysDef.cpp:1031 +msgid "" +"cost-reduced version of the OPL with 16 patches and only one of them is user-" +"configurable." +msgstr "" +"odchudzona wersja OPL z 16 wbudowanymi instrumentami, z których tylko jeden " +"jest konfigurowalny przez użytkownika." + +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1173 +#: src/engine/sysDef.cpp:1185 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:2006 +msgid "FM 9" +msgstr "FM 9" + +#: src/engine/sysDef.cpp:1042 +msgid "Famicom Disk System (chip)" +msgstr "Famicom Disk System (sam uklad)" + +#: src/engine/sysDef.cpp:1043 +msgid "a disk drive for the Famicom which also contains one wavetable channel." +msgstr "" +"stacja dyskietek dla Famicoma, która przy okazji dostarcza jeden kanał " +"syntezy tablicowej" + +#: src/engine/sysDef.cpp:1044 src/gui/settings.cpp:4039 +msgid "FDS" +msgstr "" + +#: src/engine/sysDef.cpp:1051 +msgid "11xx: Set modulation depth" +msgstr "11xx: Ustaw głębokość modulacji" + +#: src/engine/sysDef.cpp:1052 +msgid "12xy: Set modulation speed high byte (x: enable; y: value)" +msgstr "12xy: Ustaw wysoki bajt szybkości modulacji (x: wł.; y: wartość)" + +#: src/engine/sysDef.cpp:1053 +msgid "13xx: Set modulation speed low byte" +msgstr "13xx: Ustaw niski bajt szybkości modulacji" + +#: src/engine/sysDef.cpp:1054 +msgid "14xx: Set modulator position" +msgstr "14xx: Położenie modulatora" + +#: src/engine/sysDef.cpp:1055 +msgid "15xx: Set modulator table to waveform" +msgstr "15xx: Ustaw tablicę modulacji na dany kształt fali" + +#: src/engine/sysDef.cpp:1060 +msgid "MMC5" +msgstr "" + +#: src/engine/sysDef.cpp:1061 +msgid "" +"an expansion chip for the Famicom, featuring a little-known PCM channel." +msgstr "rozszerzenie dla Famicoma, posiadający mało znany kanał PCM" + +#: src/engine/sysDef.cpp:1073 src/gui/settings.cpp:4041 +msgid "Namco 163" +msgstr "Namco 163" + +#: src/engine/sysDef.cpp:1074 +msgid "an expansion chip for the Famicom, with full wavetable." +msgstr "" +"rozszerzenie dla Famicoma, który jest pełnoprawnym syntezatorem tablicowym." + +#: src/engine/sysDef.cpp:1081 +msgid "18xx: Change channel limits (0 to 7, x + 1)" +msgstr "18xx: Zmień ilość kanałów (0-7, x + 1)" + +#: src/engine/sysDef.cpp:1082 +msgid "20xx: Load a waveform into memory" +msgstr "20xx: Wczytaj falę do pamięci" + +#: src/engine/sysDef.cpp:1083 +msgid "21xx: Set position for wave load" +msgstr "21xx: Ustaw początkowe przesunięcie załadowania fali" + +#: src/engine/sysDef.cpp:1086 +msgid "10xx: Select waveform" +msgstr "10xx: Wybierz kształt fali" + +#: src/engine/sysDef.cpp:1087 +msgid "11xx: Set waveform position in RAM" +msgstr "11xx: Ustaw pozycję fali w RAM-ie" + +#: src/engine/sysDef.cpp:1088 +msgid "12xx: Set waveform length in RAM (04 to FC in steps of 4)" +msgstr "12xx: Ustaw długość fali w RAM-ie (04-FC w odstępach 4)" + +#: src/engine/sysDef.cpp:1089 +msgid "15xx: Set waveform load position" +msgstr "15xx: Ustaw pozycję ładowania fali" + +#: src/engine/sysDef.cpp:1090 +msgid "16xx: Set waveform load length (04 to FC in steps of 4)" +msgstr "16xx: Ustaw długość fali do wczytania (04-FC w odstępach 4)" + +#: src/engine/sysDef.cpp:1095 +msgid "Yamaha YM2203 (OPN)" +msgstr "" + +#: src/engine/sysDef.cpp:1096 +msgid "" +"cost-reduced version of the OPM with a different register layout and no " +"stereo...\n" +"...but it has a built-in AY-3-8910! (actually an YM2149)" +msgstr "" +"tańsza wersja OPM z innym układem rejestrów i bez stereo...\n" +"...ale za to z wbudowanym AY-3-8910! (tak naprawdę YM2149)" + +#: src/engine/sysDef.cpp:1107 +msgid "Yamaha YM2203 (OPN) Extended Channel 3" +msgstr "Yamaha YM2203 (OPN) z rozszerzonym kanałem 3" + +#: src/engine/sysDef.cpp:1108 +msgid "" +"cost-reduced version of the OPM with a different register layout and no " +"stereo...\n" +"...but it has a built-in AY-3-8910! (actually an YM2149)\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies" +msgstr "" +"tańsza wersja OPM z innym układem rejestrów i bez stereo...\n" +"...ale za to z wbudowanym AY-3-8910! (tak naprawdę YM2149)\n" +"jest to układ w trybie rozszerzonego kanału, która zamienia trzeci kanał FM " +"w cztery operatory z niezależnymi nutami/częstotliwościami" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP1" +msgstr "FM 3 OP1" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP2" +msgstr "FM 3 OP2" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP3" +msgstr "FM 3 OP3" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP4" +msgstr "FM 3 OP4" + +#: src/engine/sysDef.cpp:1120 +msgid "Yamaha YM2203 (OPN) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1121 +msgid "" +"cost-reduced version of the OPM with a different register layout and no " +"stereo...\n" +"...but it has a built-in AY-3-8910! (actually an YM2149)\n" +"CSM blah blah" +msgstr "" +"tańsza wersja OPM z innym układem rejestrów i bez stereo...\n" +"...ale za to z wbudowanym AY-3-8910! (tak naprawdę YM2149)\n" +"jest to układ w trybie rozszerzonego kanału, która zamienia trzeci kanał FM " +"w cztery operatory z niezależnymi nutami/częstotliwościami\n" +"ten układ posiada kontrolę trybu CSM dla efektów specjalnych na trzecim " +"kanale." + +#: src/engine/sysDef.cpp:1122 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1383 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1559 src/engine/sysDef.cpp:1861 +msgid "CSM Timer" +msgstr "Timer CSM" + +#: src/engine/sysDef.cpp:1133 +msgid "Yamaha YM2608 (OPNA)" +msgstr "" + +#: src/engine/sysDef.cpp:1134 +msgid "" +"OPN but twice the FM channels, stereo makes a come-back and has rhythm and " +"ADPCM channels." +msgstr "" +"OPN, ale z dwa razy większą ilością kanałów FM, stereo powraca, są też " +"kanały perkusji i ADPCM." + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1481 +#: src/gui/insEdit.cpp:3302 src/gui/insEdit.cpp:3624 +msgid "Kick" +msgstr "Bęben basowy" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:210 src/gui/insEdit.cpp:218 +msgid "Snare" +msgstr "Werbel" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:212 src/gui/insEdit.cpp:220 +#: src/gui/insEdit.cpp:1909 src/gui/insEdit.cpp:2014 +msgid "Top" +msgstr "Talerz" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:213 src/gui/insEdit.cpp:219 +msgid "HiHat" +msgstr "Hi-hat" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:211 +msgid "Tom" +msgstr "Tom-tom" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 +msgid "Rim" +msgstr "Rimshot" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:1693 +msgid "ADPCM" +msgstr "ADPCM" + +#: src/engine/sysDef.cpp:1145 +msgid "Yamaha YM2608 (OPNA) Extended Channel 3" +msgstr "Yamaha YM2608 (OPNA) z rozszerzonym kanałem 3" + +#: src/engine/sysDef.cpp:1146 +msgid "" +"OPN but twice the FM channels, stereo makes a come-back and has rhythm and " +"ADPCM channels.\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies" +msgstr "" +"OPN, ale z dwa razy większą ilością kanałów FM, stereo powrca, są też kanały " +"perkusji i ADPCM.\n" +"jest to układ w trybie rozszerzonego kanału, która zamienia trzeci kanał FM " +"w cztery operatory z niezależnymi nutami/częstotliwościami." + +#: src/engine/sysDef.cpp:1158 +msgid "Yamaha YM2608 (OPNA) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1159 +msgid "" +"OPN but twice the FM channels, stereo makes a come-back and has rhythm and " +"ADPCM channels.\n" +"CSM blah blah" +msgstr "" +"OPN, ale z dwa razy większą ilością kanałów FM, stereo powrca, są też kanały " +"perkusji i ADPCM.\n" +"jest to układ w trybie rozszerzonego kanału, która zamienia trzeci kanał FM " +"w cztery operatory z niezależnymi nutami/częstotliwościami.\n" +"ten układ posiada kontrolę trybu CSM dla efektów specjalnych na trzecim " +"kanale." + +#: src/engine/sysDef.cpp:1171 +msgid "Yamaha YM3526 (OPL)" +msgstr "" + +#: src/engine/sysDef.cpp:1172 +msgid "" +"OPN, but what if you only had two operators, no stereo, no detune and a " +"lower ADSR parameter range?" +msgstr "" +"OPN, ale co gdybyś miał tylko 2 operatory, bez stereo, bez rostrajenia " +"operatorów i niższy zakres parametrów ADSR?" + +#: src/engine/sysDef.cpp:1183 +msgid "Yamaha YM3812 (OPL2)" +msgstr "" + +#: src/engine/sysDef.cpp:1184 +msgid "OPL, but what if you had more waveforms to choose than the normal sine?" +msgstr "" +"OPL, ale co gdybyś miał więcej kształtów fali do wybrania niż tylko " +"sinusoidę?" + +#: src/engine/sysDef.cpp:1195 +msgid "Yamaha YMF262 (OPL3)" +msgstr "" + +#: src/engine/sysDef.cpp:1196 +msgid "" +"OPL2, but what if you had twice the channels, 4-op mode, stereo and even " +"more waveforms?" +msgstr "" +"OPL2, ale co gdybyś miał 2 razy więcej kanałów, tryb 4-operatorowy, stereo i " +"jeszcze więcej kształtów fali?" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 1" +msgstr "4OP 1" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 3" +msgstr "4OP 3" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 5" +msgstr "4OP 5" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 7" +msgstr "4OP 7" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 9" +msgstr "4OP 9" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 10" +msgstr "FM 10" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 11" +msgstr "4OP 11" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 12" +msgstr "FM 12" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 13" +msgstr "FM 13" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 14" +msgstr "FM 14" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 15" +msgstr "FM 15" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:2006 +msgid "FM 16" +msgstr "FM 16" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:2006 +msgid "FM 17" +msgstr "FM 17" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:2006 +msgid "FM 18" +msgstr "FM 18" + +#: src/engine/sysDef.cpp:1208 src/gui/settings.cpp:4051 +msgid "MultiPCM" +msgstr "MultiPCM" + +#: src/engine/sysDef.cpp:1209 +msgid "" +"how many channels of PCM do you want?\n" +"MultiPCM: yes" +msgstr "" +"ile kanałów PCM chcesz?\n" +"MultiPCM: tak" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 17" +msgstr "Kanał 17" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 18" +msgstr "Kanał 18" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 19" +msgstr "Kanał 19" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 20" +msgstr "Kanał 20" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 21" +msgstr "Kanał 21" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 22" +msgstr "Kanał 22" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 23" +msgstr "Kanał 23" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 24" +msgstr "Kanał 24" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 25" +msgstr "Kanał 25" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 26" +msgstr "Kanał 26" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 27" +msgstr "Kanał 27" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 28" +msgstr "Kanał 28" + +#: src/engine/sysDef.cpp:1217 +msgid "PC Speaker" +msgstr "PC Speaker (brzeczyk)" + +#: src/engine/sysDef.cpp:1218 +msgid "good luck! you get one square and no volume control." +msgstr "" +"powodzenia! masz jeden kanał fali kwadratowej i zero regulacji głośności." + +#: src/engine/sysDef.cpp:1219 src/engine/sysDef.cpp:1228 +#: src/gui/guiConst.cpp:1394 src/gui/waveEdit.cpp:199 src/gui/insEdit.cpp:183 +#: src/gui/insEdit.cpp:194 src/gui/insEdit.cpp:326 src/gui/insEdit.cpp:656 +msgid "Square" +msgstr "PSG" + +#: src/engine/sysDef.cpp:1226 +msgid "Pong" +msgstr "" + +#: src/engine/sysDef.cpp:1227 +msgid "please don't use this chip. it was added as a joke." +msgstr "nie używaj tego układu. został dodany jako żart." + +#: src/engine/sysDef.cpp:1235 src/gui/settings.cpp:4044 +msgid "POKEY" +msgstr "" + +#: src/engine/sysDef.cpp:1236 +msgid "" +"TIA, but better and more flexible.\n" +"used in the Atari 8-bit family of computers (400/800/XL/XE)." +msgstr "" +"TIA, ale lepsze i prostsze w obsłudze\n" +"był używany w rodzinie 8-bitowych komputerów Atari (400/800/XL/XE)." + +#: src/engine/sysDef.cpp:1243 src/engine/sysDef.cpp:1714 +msgid "10xx: Set waveform (0 to 7)" +msgstr "10xx: Ustaw kształt fali (0-7)" + +#: src/engine/sysDef.cpp:1244 +msgid "11xx: Set AUDCTL" +msgstr "11xx: Ustaw AUDCTL" + +#: src/engine/sysDef.cpp:1245 +msgid "12xx: Toggle two-tone mode" +msgstr "12xx: Włącz tryb dwóch głosów" + +#: src/engine/sysDef.cpp:1250 +msgid "Ricoh RF5C68" +msgstr "" + +#: src/engine/sysDef.cpp:1251 +msgid "" +"this is like SNES' sound chip but without interpolation and the rest of nice " +"bits." +msgstr "" +"podobny do układu dźwiękowego SNES, ale bez interpolacji i innych fajnych " +"ficzerów" + +#: src/engine/sysDef.cpp:1260 src/gui/settings.cpp:4046 +msgid "WonderSwan" +msgstr "" + +#: src/engine/sysDef.cpp:1261 +msgid "developed by the makers of the Game Boy and the Virtual Boy..." +msgstr "zaprojektowany przez twórców Game Boy'a i Virtual Boy'a..." + +#: src/engine/sysDef.cpp:1262 +msgid "Wave/PCM" +msgstr "Fala/PCM" + +#: src/engine/sysDef.cpp:1262 +msgid "Wave/Sweep" +msgstr "Fala/ Sprz. portamento" + +#: src/engine/sysDef.cpp:1262 +msgid "Wave/Noise" +msgstr "Fala/Szum" + +#: src/engine/sysDef.cpp:1269 +msgid "11xx: Setup noise mode (0: disabled; 1-8: enabled/tap)" +msgstr "11xx: Skonfiguruj tryb szumu (0: wył.; 1-8: wł./przełączniki)" + +#: src/engine/sysDef.cpp:1270 +msgid "12xx: Setup sweep period (0: disabled; 1-20: enabled/period)" +msgstr "12xx: Włącz okres sprętowego portamento (0: wył.; 1-20: wł./okres)" + +#: src/engine/sysDef.cpp:1271 +msgid "13xx: Set sweep amount" +msgstr "13xx: Ustaw zakres sprzętowego portamento" + +#: src/engine/sysDef.cpp:1277 +msgid "Yamaha YM2414 (OPZ)" +msgstr "" + +#: src/engine/sysDef.cpp:1278 +msgid "" +"like OPM, but with more waveforms, fixed frequency mode and totally... " +"undocumented.\n" +"used in the Yamaha TX81Z and some other synthesizers." +msgstr "" +"jak OPM, ale z większą liczbą fal, trybem stałej częstotliwości i " +"całkowitym... brakiem informacji o jego konstrukcji.\n" +"używany w Yamaha TX81Z i niektórych innych syntezatorach." + +#: src/engine/sysDef.cpp:1285 +msgid "2Fxx: Toggle hard envelope reset on new notes" +msgstr "2Fxx: Włącz twardy reset obwiedni przy nowych nutach" + +#: src/engine/sysDef.cpp:1291 src/gui/settings.cpp:4069 +msgid "Pokémon Mini" +msgstr "" + +#: src/engine/sysDef.cpp:1292 +msgid "this one is like PC Speaker but has duty cycles." +msgstr "" +"ten układ jest podobny do PC Speakera, ale ma zmienną szerokość fali " +"prostokątnej" + +#: src/engine/sysDef.cpp:1293 src/gui/settings.cpp:4092 src/gui/waveEdit.cpp:33 +msgid "Pulse" +msgstr "Fala kwadratowa" + +#: src/engine/sysDef.cpp:1300 +msgid "SegaPCM" +msgstr "" + +#: src/engine/sysDef.cpp:1301 +msgid "" +"used in some Sega arcade boards (like OutRun), and usually paired with a " +"YM2151." +msgstr "" +"był używany w niektórych automatach do gier Segi (np. OutRun) i był zwykle " +"używany w połączeniu z YM2151." + +#: src/engine/sysDef.cpp:1312 src/gui/settings.cpp:4040 +msgid "Virtual Boy" +msgstr "" + +#: src/engine/sysDef.cpp:1313 +msgid "" +"a console which failed to sell well due to its headache-inducing features." +msgstr "" +"konsola, która się nie sprzedawała, ponieważ jej funkcje przyprawiały graczy " +"o ból głowy." + +#: src/engine/sysDef.cpp:1321 +msgid "11xx: Set noise length (0 to 7)" +msgstr "11xx: Ustaw długość szumu (0-7)" + +#: src/engine/sysDef.cpp:1322 +msgid "" +"12xy: Setup envelope (x: enabled/loop (1: enable, 3: enable+loop); y: speed/" +"direction (0-7: down, 8-F: up))" +msgstr "" +"12xy: Skonfiguruj obwiednię (x: wł./zapętla (1: wł., 3: wł.i zapętla); y: " +"prędkość/kierunek (0-7: w dół, 8-F: w górę))" + +#: src/engine/sysDef.cpp:1323 +msgid "13xy: Setup sweep (x: speed; y: shift; channel 5 only)" +msgstr "" +"13xy: Skonfiguruj sprzętowe portamento (x: szybkość; y: zakres; tylko kanał " +"5)" + +#: src/engine/sysDef.cpp:1324 +msgid "" +"14xy: Setup modulation (x: enabled/loop (1: enable, 3: enable+loop); y: " +"speed; channel 5 only)" +msgstr "" +"14xy: Skonfiguruj modulację (x: wł./zapętlenie (1: wł, 3: wł.i zapętla); y: " +"szybkość; tylko kanał 5)" + +#: src/engine/sysDef.cpp:1325 +msgid "15xx: Set modulation waveform (x: wavetable; channel 5 only)" +msgstr "15xx: Ustaw kształt fali modulatora (x: tablica fal; tylko kanał 5)" + +#: src/engine/sysDef.cpp:1330 +msgid "Konami VRC7" +msgstr "" + +#: src/engine/sysDef.cpp:1331 +msgid "" +"like OPLL, but even more cost reductions applied. three FM channels went " +"missing, and drums mode did as well..." +msgstr "" +"podobny do OPLL, ale w ruch poszło więcej cięć kosztów. trzy kanały FM " +"zniknęły, w tym też tryb perkusji..." + +#: src/engine/sysDef.cpp:1342 +msgid "Yamaha YM2610B (OPNB2)" +msgstr "" + +#: src/engine/sysDef.cpp:1343 +msgid "" +"so Taito asked Yamaha if they could get the two missing FM channels back, " +"and Yamaha gladly provided them with this chip." +msgstr "" +"a więc Taito poprosiło Yamahę o dodanie do YM2610 dwóch brakujących kanałów " +"FM, a Yamaha z przyjemnością dostarczyła ów układ." + +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/gui/settings.cpp:4061 +msgid "ADPCM-B" +msgstr "ADPCM-B" + +#: src/engine/sysDef.cpp:1354 +msgid "ZX Spectrum Beeper" +msgstr "Brzęczyk ZX Spectrum" + +#: src/engine/sysDef.cpp:1355 +msgid "" +"the ZX Spectrum only had a basic beeper capable of...\n" +"...a bunch of thin pulses and tons of other interesting stuff!\n" +"Furnace provides a thin pulse system." +msgstr "" +"ZX Spectrum miał tylko prosty brzęczyk zdolny do generowania\n" +"...kilku \"wąskich\" fal prostokątnych i wielu innych ciekawych dźwięków!\n" +"Furnace dostarcza system z \"wąskimi\" falami prostokątnymi." + +#: src/engine/sysDef.cpp:1362 src/engine/sysDef.cpp:1950 +msgid "12xx: Set pulse width" +msgstr "12xx: Ustaw szerokość fali prostokątnej" + +#: src/engine/sysDef.cpp:1363 +msgid "17xx: Trigger overlay drum" +msgstr "17xx: Uruchom nakładkę perkusyjną" + +#: src/engine/sysDef.cpp:1368 +msgid "Yamaha YM2612 (OPN2) Extended Channel 3" +msgstr "Yamaha YM2612 (OPN2) z rozszerzonym kanałem 3" + +#: src/engine/sysDef.cpp:1369 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies." +msgstr "" +"układ ten znany jest głównie z tego, że znajduje się w Sega Mega Drive (ale " +"był również używany w komputerze FM Towns).\n" +"jest to układ w trybie rozszerzonego kanału, która zamienia trzeci kanał FM " +"w cztery operatory z niezależnymi nutami/częstotliwościami." + +#: src/engine/sysDef.cpp:1381 +msgid "Yamaha YM2612 (OPN2) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1382 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this one includes CSM mode control for special effects on Channel 3." +msgstr "" +"układ ten znany jest głównie z tego, że znajduje się w Sega Mega Drive (ale " +"był również używany w komputerze FM Towns).\n" +"ten układ posiada kontrolę trybu CSM dla efektów specjalnych na trzecim " +"kanale." + +#: src/engine/sysDef.cpp:1394 src/gui/settings.cpp:4042 +msgid "Konami SCC" +msgstr "" + +#: src/engine/sysDef.cpp:1395 +msgid "" +"a wavetable chip made by Konami for use with the MSX.\n" +"the last channel shares its wavetable with the previous one though." +msgstr "" +"syntezator tablicowy wyprodukowany przez Konami do użytku z MSX.\n" +"ostatni i przedostatni kanał korzystają z tej samej tablicy fal." + +#: src/engine/sysDef.cpp:1405 +msgid "Yamaha YM3526 (OPL) with drums" +msgstr "Yamaha YM3526 (OPL) (tryb perkusji)" + +#: src/engine/sysDef.cpp:1406 +msgid "the OPL chip but with drums mode enabled." +msgstr "układ OPL z włączonym trybem perkusji." + +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1693 +msgid "Kick/FM 7" +msgstr "Stopa/FM7" + +#: src/engine/sysDef.cpp:1417 +msgid "Yamaha YM3812 (OPL2) with drums" +msgstr "Yamaha YM3812 (OPL2) (tryb perkusji)" + +#: src/engine/sysDef.cpp:1418 +msgid "the OPL2 chip but with drums mode enabled." +msgstr "układ OPL2 z włączonym trybem perkusji." + +#: src/engine/sysDef.cpp:1429 +msgid "Yamaha YMF262 (OPL3) with drums" +msgstr "Yamaha YMF262 (OPL3) (tryb perkusji)" + +#: src/engine/sysDef.cpp:1430 +msgid "the OPL3 chip but with drums mode enabled." +msgstr "układ OPL3 z włączonym trybem perkusji." + +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1631 +msgid "Kick/FM 16" +msgstr "Stopa/FM16" + +#: src/engine/sysDef.cpp:1441 +msgid "Yamaha YM2610 (OPNB)" +msgstr "" + +#: src/engine/sysDef.cpp:1442 +msgid "" +"this chip was used in SNK's Neo Geo arcade board and video game console.\n" +"it's like OPNA but the rhythm channels are ADPCM channels and two FM " +"channels went missing." +msgstr "" +"układ ten był używany w automatach i konsolach do gier Neo Geo firmy SNK.\n" +"jest podobny do OPNA, ale kanały perkusyjne są teraz kanałami ADPCM i " +"brakuje dwóch kanałów FM." + +#: src/engine/sysDef.cpp:1453 +msgid "Yamaha YM2610 (OPNB) Extended Channel 2" +msgstr "Yamaha YM2610 (OPNB) z rozszerzonym kanałem 2" + +#: src/engine/sysDef.cpp:1454 +msgid "" +"this chip was used in SNK's Neo Geo arcade board and video game console.\n" +"it's like OPNA but the rhythm channels are ADPCM channels and two FM " +"channels went missing.\n" +"this one is in Extended Channel mode, which turns the second FM channel into " +"four operators with independent notes/frequencies." +msgstr "" +"układ ten był używany w automatach i konsolach do gier Neo Geo firmy SNK.\n" +"jest podobny do OPNA, ale kanały perkusyjne są teraz kanałami ADPCM i " +"brakuje dwóch kanałów FM.\n" +"jest to układ w trybie rozszerzonego kanału, która zamienia drugi kanał FM w " +"cztery operatory z niezależnymi nutami/częstotliwościami." + +#: src/engine/sysDef.cpp:1466 +msgid "Yamaha YM2610 (OPNB) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1467 +msgid "" +"this chip was used in SNK's Neo Geo arcade board and video game console.\n" +"it's like OPNA but the rhythm channels are ADPCM channels and two FM " +"channels went missing.\n" +"this one includes CSM mode control for special effects on Channel 2." +msgstr "" +"układ ten był używany w automatach i konsolach do gier Neo Geo firmy SNK.\n" +"jest podobny do OPNA, ale kanały perkusyjne są teraz kanałami ADPCM i " +"brakuje dwóch kanałów FM.\n" +"jest to układ w trybie rozszerzonego kanału, która zamienia drugi kanał FM w " +"cztery operatory z niezależnymi nutami/częstotliwościami.\n" +"ten układ posiada kontrolę trybu CSM dla efektów specjalnych na trzecim " +"kanale." + +#: src/engine/sysDef.cpp:1479 +msgid "Yamaha YM2413 (OPLL) with drums" +msgstr "=Yamaha YM2413 (OPLL) (tryb perkusji)" + +#: src/engine/sysDef.cpp:1480 +msgid "the OPLL chips but with drums mode turned on." +msgstr "układ OPLL ale z włączonym trybem perkusji" + +#: src/engine/sysDef.cpp:1491 +msgid "3xxx: Load LFSR (0 to FFF)" +msgstr "3xxx: Załaduj LFSR (0-FFF)" + +#: src/engine/sysDef.cpp:1497 +msgid "Atari Lynx" +msgstr "" + +#: src/engine/sysDef.cpp:1498 +msgid "" +"a portable console made by Atari. it has all of Atari's trademark waveforms." +msgstr "" +"przenośna konsola do gier od Atari. posiada wszystkie charakterystyczne dla " +"Atari kształty fal" + +#: src/engine/sysDef.cpp:1509 +msgid "10xx: Set echo feedback level (00 to FF)" +msgstr "10xx: Ustaw poziom sprzężenia zwrotnego echa (00-FF)" + +#: src/engine/sysDef.cpp:1510 +msgid "11xx: Set channel echo level (00 to FF)" +msgstr "11xx: Ustaw poziom echa kanału (00-FF)" + +#: src/engine/sysDef.cpp:1511 +msgid "12xx: Toggle QSound algorithm (0: disabled; 1: enabled)" +msgstr "12xx: Włącz algorytm QSound (0: wył.; 1: wł.)" + +#: src/engine/sysDef.cpp:1513 +msgid "3xxx: Set echo delay buffer length (000 to AA5)" +msgstr "3xxx: Ustaw długość bufora opóźnienia echo (000-AA5)" + +#: src/engine/sysDef.cpp:1519 +msgid "Capcom QSound" +msgstr "" + +#: src/engine/sysDef.cpp:1520 +msgid "" +"used in some of Capcom's arcade boards. surround-like sampled sound with " +"echo." +msgstr "" +"używany w niektórych automatach do gier Capcomu. samplowany dźwięk z echem i " +"efektami dźwięku przestrzennego." + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +#: src/engine/sysDef.cpp:2056 +msgid "PCM 1" +msgstr "PCM 1" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +#: src/engine/sysDef.cpp:2056 +msgid "PCM 2" +msgstr "PCM 2" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 3" +msgstr "PCM 3" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 4" +msgstr "PCM 4" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 5" +msgstr "PCM 5" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 6" +msgstr "PCM 6" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 7" +msgstr "PCM 7" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 8" +msgstr "PCM 8" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 9" +msgstr "PCM 9" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 10" +msgstr "PCM 10" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 11" +msgstr "PCM 11" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 12" +msgstr "PCM 12" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 13" +msgstr "PCM 13" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 14" +msgstr "PCM 14" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 15" +msgstr "PCM 15" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 16" +msgstr "PCM 16" + +#: src/engine/sysDef.cpp:1521 +msgid "ADPCM 1" +msgstr "ADPCM 1" + +#: src/engine/sysDef.cpp:1521 +msgid "ADPCM 2" +msgstr "ADPCM 2" + +#: src/engine/sysDef.cpp:1521 +msgid "ADPCM 3" +msgstr "ADPCM 3" + +#: src/engine/sysDef.cpp:1530 src/gui/settings.cpp:4048 +msgid "VERA" +msgstr "" + +#: src/engine/sysDef.cpp:1531 +msgid "the chip used in a computer design created by The 8-Bit Guy." +msgstr "układ używany w projekcie komputera opracowanym przez 8-Bit Guy'a." + +#: src/engine/sysDef.cpp:1538 +msgid "20xx: Set waveform" +msgstr "20xx: Ustaw kształt fali" + +#: src/engine/sysDef.cpp:1539 +msgid "22xx: Set duty cycle (0 to 3F)" +msgstr "22xx: Ustaw szerokość fali prostokątnej (0-3F)" + +#: src/engine/sysDef.cpp:1544 +msgid "Yamaha YM2610B (OPNB2) Extended Channel 3" +msgstr "Yamaha YM2610B (OPNB2) z rozszerzonym kanałem 3" + +#: src/engine/sysDef.cpp:1545 +msgid "" +"so Taito asked Yamaha if they could get the two missing FM channels back, " +"and Yamaha gladly provided them with this chip.\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies." +msgstr "" +"a więc Taito poprosiło Yamahę o dodanie do YM2610 dwóch brakujących kanałów " +"FM, a Yamaha z przyjemnością dostarczyła ów układ.\n" +"jest to układ w trybie rozszerzonego kanału, która zamienia trzeci kanał FM " +"w cztery operatory z niezależnymi nutami/częstotliwościami." + +#: src/engine/sysDef.cpp:1557 +msgid "Yamaha YM2610B (OPNB2) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1558 +msgid "" +"so Taito asked Yamaha if they could get the two missing FM channels back, " +"and Yamaha gladly provided them with this chip.\n" +"CSM blah blah" +msgstr "" +"a więc Taito poprosiło Yamahę o dodanie do YM2610 dwóch brakujących kanałów " +"FM, a Yamaha z przyjemnością dostarczyła ów układ.\n" +"jest to układ w trybie rozszerzonego kanału, która zamienia trzeci kanał FM " +"w cztery operatory z niezależnymi nutami/częstotliwościami.\n" +"ten układ posiada kontrolę trybu CSM dla efektów specjalnych na trzecim " +"kanale." + +#: src/engine/sysDef.cpp:1570 +msgid "SegaPCM (compatible 5-channel mode)" +msgstr "SegaPCM (kompatybilny tryb 5-kanałowy)" + +#: src/engine/sysDef.cpp:1571 +msgid "" +"this is the same thing as SegaPCM, but only exposes 5 of the channels for " +"compatibility with DefleMask." +msgstr "" +"jest to to samo co SegaPCM, ale tylko pięć kanałów jest dostępnych dla " +"kompatybilności z DefleMaskiem." + +#: src/engine/sysDef.cpp:1582 +msgid "Seta/Allumer X1-010" +msgstr "" + +#: src/engine/sysDef.cpp:1583 +msgid "" +"a sound chip used in several Seta/Allumer-manufactured arcade boards with " +"too many channels of wavetable sound, which also are capable of sampled " +"sound." +msgstr "" +"układ dźwiękowy używany w kilku automatach go gier firmy Seta/Allumer. " +"posiada stanowczo za dużo kanałów syntezy tablicowej, zdolny również do " +"odtwarzania sampli." + +#: src/engine/sysDef.cpp:1591 +msgid "11xx: Set envelope shape" +msgstr "11xx: Ustaw kształt obwiedni" + +#: src/engine/sysDef.cpp:1592 +msgid "12xx: Set sample bank slot (0 to 7)" +msgstr "12xx: Ustaw slot banków sampli (0-7)" + +#: src/engine/sysDef.cpp:1596 +msgid "20xx: Set PCM frequency (1 to FF)" +msgstr "20xx: Ustaw częstotliwość PCM (1-FF)" + +#: src/engine/sysDef.cpp:1597 +msgid "" +"22xx: Set envelope mode (bit 0: enable; bit 1: one-shot; bit 2: split shape " +"to L/R; bit 3/5: H.invert right/left; bit 4/6: V.invert right/left)" +msgstr "" +"22xx: Ustaw tryb obwiedni (bit 0: wł.; bit 1: jednokrotny.; bit 2: rozdziel " +"kształt fali na lewo/prawo; bity 3/5: odwróć pionowo na prawo/lewo; bity " +"4/6: odwróć poziomo na prawo/lewo)" + +#: src/engine/sysDef.cpp:1598 +msgid "23xx: Set envelope period" +msgstr "23xx: Ustaw okres obwiedni" + +#: src/engine/sysDef.cpp:1606 +msgid "Konami Bubble System WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1607 +msgid "" +"this is the wavetable part of the Bubble System, which also had two " +"AY-3-8910s." +msgstr "" +"jest syntezatorową częścią Bubble Systemu, który również posiadał dwa " +"AY-3-8910." + +#: src/engine/sysDef.cpp:1619 +msgid "Yamaha YMF278B (OPL4)" +msgstr "" + +#: src/engine/sysDef.cpp:1620 +msgid "like OPL3, but this time it also has a 24-channel version of MultiPCM." +msgstr "to samo co OPL3, ale z 24 kanałami PCM na bazie układu MultiPCM." + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 17" +msgstr "PCM 17" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 18" +msgstr "PCM 18" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 19" +msgstr "PCM 19" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 20" +msgstr "PCM 20" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 21" +msgstr "PCM 21" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 22" +msgstr "PCM 22" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 23" +msgstr "PCM 23" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 24" +msgstr "PCM 24" + +#: src/engine/sysDef.cpp:1629 +msgid "Yamaha YMF278B (OPL4) with drums" +msgstr "Yamaha YMF278B (OPL4) (tryb perkusji)" + +#: src/engine/sysDef.cpp:1630 +msgid "the OPL4 but with drums mode turned on." +msgstr "OPL4 z włączonym trybem perkusji." + +#: src/engine/sysDef.cpp:1638 +msgid "11xx: Set filter mode (00 to 03)" +msgstr "11xx: Ustaw tryb filtra (00-03)" + +#: src/engine/sysDef.cpp:1639 +msgid "14xx: Set filter coefficient K1 low byte (00 to FF)" +msgstr "14xx: Ustaw niski bit współczynnika filtra K1 (00-FF)" + +#: src/engine/sysDef.cpp:1640 +msgid "15xx: Set filter coefficient K1 high byte (00 to FF)" +msgstr "15xx: Ustaw wysoki bit współczynnika filtra K1 (00-FF)" + +#: src/engine/sysDef.cpp:1641 +msgid "16xx: Set filter coefficient K2 low byte (00 to FF)" +msgstr "16xx: Ustaw niski bit współczynnika filtra K2 (00-FF)" + +#: src/engine/sysDef.cpp:1642 +msgid "17xx: Set filter coefficient K2 high byte (00 to FF)" +msgstr "17xx: Ustaw wysoki bit współczynnika filtra K2 (00-FF)" + +#: src/engine/sysDef.cpp:1643 +msgid "18xx: Set filter coefficient K1 slide up (00 to FF)" +msgstr "18xx: Ustaw portamento spółczynnika filtra K1 w górę (00-FF)" + +#: src/engine/sysDef.cpp:1644 +msgid "19xx: Set filter coefficient K1 slide down (00 to FF)" +msgstr "19xx: Ustaw portamento spółczynnika filtra K1 w dół (00-FF)" + +#: src/engine/sysDef.cpp:1645 +msgid "1Axx: Set filter coefficient K2 slide up (00 to FF)" +msgstr "1Axx: Ustaw portamento spółczynnika filtra K2 w górę (00-FF)" + +#: src/engine/sysDef.cpp:1646 +msgid "1Bxx: Set filter coefficient K2 slide down (00 to FF)" +msgstr "1Bxx: Ustaw portamento spółczynnika filtra K1 w dół (00 to FF)" + +#: src/engine/sysDef.cpp:1647 +msgid "22xx: Set envelope left volume ramp (signed) (00 to FF)" +msgstr "" +"22xx: Ustaw narastanie obwiedni głośności lewej strony (ze znakiem) (00-FF)" + +#: src/engine/sysDef.cpp:1648 +msgid "23xx: Set envelope right volume ramp (signed) (00 to FF)" +msgstr "" +"23xx: Ustaw narastanie obwiedni głośności prawej strony (ze znakiem) (00-FF)" + +#: src/engine/sysDef.cpp:1649 +msgid "24xx: Set envelope filter coefficient k1 ramp (signed) (00 to FF)" +msgstr "" +"24xx: Ustaw narastanie obwiedni wspólczynnika filtra K1 (ze znakiem) (00-FF)" + +#: src/engine/sysDef.cpp:1650 +msgid "" +"25xx: Set envelope filter coefficient k1 ramp (signed, slower) (00 to FF)" +msgstr "" +"25xx: Ustaw narastanie obwiedni wspólczynnika filtra K1 (ze znakiem, " +"wolniej) (00-FF)" + +#: src/engine/sysDef.cpp:1651 +msgid "26xx: Set envelope filter coefficient k2 ramp (signed) (00 to FF)" +msgstr "" +"26xx: Ustaw narastanie obwiedni wspólczynnika filtra K2 (ze znakiem) (00-FF)" + +#: src/engine/sysDef.cpp:1652 +msgid "" +"27xx: Set envelope filter coefficient k2 ramp (signed, slower) (00 to FF)" +msgstr "" +"27xx: Ustaw narastanie obwiedni wspólczynnika filtra K2 (ze znakiem, " +"wolniej) (00-FF)" + +#: src/engine/sysDef.cpp:1656 +msgid "120x: Set pause (bit 0)" +msgstr "120x: Ustaw pauzę (bit 0)" + +#: src/engine/sysDef.cpp:1658 +msgid "2xxx: Set envelope count (000 to 1FF)" +msgstr "2xxx: Ustaw długość obwiedni (000-1FF)" + +#: src/engine/sysDef.cpp:1659 +msgid "3xxx: Set filter coefficient K1 (000 to FFF)" +msgstr "3xxx: Ustaw współczynnik filtra K1 (000-FFF)" + +#: src/engine/sysDef.cpp:1660 +msgid "4xxx: Set filter coefficient K2 (000 to FFF)" +msgstr "4xxx: Ustaw współczynnik filtra K2 (000-FFF)" + +#: src/engine/sysDef.cpp:1667 +msgid "Ensoniq ES5506" +msgstr "" + +#: src/engine/sysDef.cpp:1668 +msgid "" +"a sample chip made by Ensoniq, which is the basis for the GF1 chip found in " +"Gravis' Ultrasound cards." +msgstr "" +"sampler Ensoniqa, który był podstawą układu GF1 używanego w kartach " +"dźwiękowych Gravis Ultrasound." + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 29" +msgstr "Kanał 29" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 30" +msgstr "Kanał 30" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 31" +msgstr "Kanał 31" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 32" +msgstr "Kanał 32" + +#: src/engine/sysDef.cpp:1679 +msgid "Yamaha Y8950" +msgstr "" + +#: src/engine/sysDef.cpp:1680 +msgid "like OPL but with an ADPCM channel." +msgstr "OPL, ale z dodatkowym kanałem ADPCM." + +#: src/engine/sysDef.cpp:1691 +msgid "Yamaha Y8950 with drums" +msgstr "Yamaha Y8950 (tryb perkusji)" + +#: src/engine/sysDef.cpp:1692 +msgid "the Y8950 chip, in drums mode." +msgstr "układ Y8950 w trybie perkusji." + +#: src/engine/sysDef.cpp:1703 +msgid "Konami SCC+" +msgstr "Konami SCC1.1" + +#: src/engine/sysDef.cpp:1704 +msgid "" +"this is a variant of Konami's SCC chip with the last channel's wavetable " +"being independent." +msgstr "" +"wariant układu SCC firmy Konami z niezależną tablicą fal na ostatniem kanale." + +#: src/engine/sysDef.cpp:1715 +msgid "12xx: Set pulse width (0 to 7F)" +msgstr "12xx: Ustaw szerokość fali prostokątnej (0-7F)" + +#: src/engine/sysDef.cpp:1716 +msgid "13xx: Set resonance (0 to FF)" +msgstr "13xx: Ustaw rezonans (0-FF)" + +#: src/engine/sysDef.cpp:1717 +msgid "" +"14xx: Set filter mode (bit 0: ring mod; bit 1: low pass; bit 2: high pass; " +"bit 3: band pass)" +msgstr "" +"14xx: Ustaw tryb filtra (bit 0: modulacja kołowa; bit 1: dolno-; bit 2: " +"środkowo-; bit 3: górnoprzepustowy)" + +#: src/engine/sysDef.cpp:1718 +msgid "15xx: Set frequency sweep period low byte" +msgstr "15xx: Ustaw wysoki bajt okresu sprzętowego portamento" + +#: src/engine/sysDef.cpp:1719 +msgid "16xx: Set frequency sweep period high byte" +msgstr "16xx: Ustaw niski bajt okresu sprzętowego portamento" + +#: src/engine/sysDef.cpp:1720 +msgid "17xx: Set volume sweep period low byte" +msgstr "17xx: Ustaw wysoki bajt okresu sprzętowej zmiany głośniości" + +#: src/engine/sysDef.cpp:1721 +msgid "18xx: Set volume sweep period high byte" +msgstr "18xx: Ustaw niski bajt okresu sprzętowej zmiany głośniości" + +#: src/engine/sysDef.cpp:1722 +msgid "19xx: Set cutoff sweep period low byte" +msgstr "" +"19xx: Ustaw wysoki bajt okresu sprzętowej zmiany punktu odcięcia filtra" + +#: src/engine/sysDef.cpp:1723 +msgid "1Axx: Set cutoff sweep period high byte" +msgstr "1Axx: Ustaw niski bajt okresu sprzętowej zmiany punktu odcięcia filtra" + +#: src/engine/sysDef.cpp:1724 +msgid "1Bxx: Set frequency sweep boundary" +msgstr "1Bxx: Ustaw granicę sprzętowego poprtamento" + +#: src/engine/sysDef.cpp:1725 +msgid "1Cxx: Set volume sweep boundary" +msgstr "1Cxx: Ustaw granicę sprzętowej zmiany głośniości" + +#: src/engine/sysDef.cpp:1726 +msgid "1Dxx: Set cutoff sweep boundary" +msgstr "1Dxx: Granica sprzętowej zmiany punktu odcięcia filtra" + +#: src/engine/sysDef.cpp:1727 +msgid "1Exx: Set phase reset period low byte" +msgstr "1Exx: Ustaw niski bajt okresu resetu fazy" + +#: src/engine/sysDef.cpp:1728 +msgid "1Fxx: Set phase reset period high byte" +msgstr "1Fxx: Ustaw wysoki bajt okresu resetu fazy" + +#: src/engine/sysDef.cpp:1729 +msgid "20xx: Toggle frequency sweep (bit 0-6: speed; bit 7: direction is up)" +msgstr "" +"20xx: Ustaw sprzętowe portamento (bity 0-6: szybkość; bit 7: kierunek w górę)" + +#: src/engine/sysDef.cpp:1730 +msgid "" +"21xx: Toggle volume sweep (bit 0-4: speed; bit 5: direction is up; bit 6: " +"loop; bit 7: alternate)" +msgstr "" +"21xx: Włącz sprzętową zmianę głośności (bity 0-4: szybkość; bit 5: kierunek " +"w górę; bit 6: zapętl; bit 7: naprzemiennie góra-dół)" + +#: src/engine/sysDef.cpp:1731 +msgid "22xx: Toggle cutoff sweep (bit 0-6: speed; bit 7: direction is up)" +msgstr "" +"22xx: Włącz sprzętową zmianę punktu odcięcia filtra (bit 0-6: szybkość; bit " +"7: kierunek w górę)" + +#: src/engine/sysDef.cpp:1739 +msgid "tildearrow Sound Unit" +msgstr "" + +#: src/engine/sysDef.cpp:1740 +msgid "" +"tildearrow's fantasy sound chip. put SID, AY and VERA in a blender, and you " +"get this!" +msgstr "" +"fikcyjny układ dźwiękowy tildearrowa. wsadź SIDa, AY i VERA do blendera i " +"otrzymasz ten układ!" + +#: src/engine/sysDef.cpp:1751 +msgid "OKI MSM6295" +msgstr "" + +#: src/engine/sysDef.cpp:1752 +msgid "an ADPCM sound chip manufactured by OKI and used in many arcade boards." +msgstr "" +"układ dźwiękowy ADPCM wyprodukowany przez firmę OKI. używany był w wielu " +"maszynach arcade." + +#: src/engine/sysDef.cpp:1759 +msgid "20xx: Set chip output rate (0: clock/132; 1: clock/165)" +msgstr "" +"20xx: Częstotliwość samplowania układu (0: Taktowanie zegara/132; 1: " +"Taktowanie zegara/165)" + +#: src/engine/sysDef.cpp:1764 +msgid "OKI MSM6258" +msgstr "" + +#: src/engine/sysDef.cpp:1765 +msgid "an ADPCM sound chip manufactured by OKI and used in the Sharp X68000." +msgstr "układ dźwiękowy ADPCM firmy OKI, używany w Sharpie X68000." + +#: src/engine/sysDef.cpp:1766 src/engine/sysDef.cpp:1887 +#: src/gui/editControls.cpp:437 src/gui/settings.cpp:4223 +#: src/gui/guiConst.cpp:1397 src/gui/insEdit.cpp:2628 src/gui/insEdit.cpp:2666 +msgid "Sample" +msgstr "Samplery" + +#: src/engine/sysDef.cpp:1772 +msgid "20xx: Set frequency divider (0-2)" +msgstr "20xx: Ustaw dzielnik częstotliwości (0-2)" + +#: src/engine/sysDef.cpp:1773 +msgid "21xx: Select clock rate (0: full; 1: half)" +msgstr "21xx: Taktowanie zegara (0: pełne; 1: połowiczne)" + +#: src/engine/sysDef.cpp:1778 +msgid "Yamaha YMZ280B (PCMD8)" +msgstr "" + +#: src/engine/sysDef.cpp:1779 +msgid "" +"used in some arcade boards. Can play back either 4-bit ADPCM, 8-bit PCM or " +"16-bit PCM." +msgstr "" +"używany w niektórych automatach do gier. może odtwarzać 4-bitowe sample " +"ADPCM, a także 8-bitowe i 16-bitowe sample PCM" + +#: src/engine/sysDef.cpp:1797 src/gui/settings.cpp:4054 +msgid "Namco WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1798 +msgid "" +"a wavetable sound chip used in Pac-Man, among other early Namco arcade games." +msgstr "" +"prosty syntezator tablicowy używany w automacie Pac-Mana i innych wczesnych " +"grach Namco." + +#: src/engine/sysDef.cpp:1808 +msgid "Namco C15 WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1809 +msgid "" +"successor of the original Namco WSG chip, used in later Namco arcade games." +msgstr "" +"kolejny model po Namco WSG, używany w późniejszych automatach do gier Namco." + +#: src/engine/sysDef.cpp:1819 +msgid "Namco C30 WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1820 +msgid "like Namco C15 but with stereo sound." +msgstr "to samo co Namco C15, ale z dźwiękiem stereo." + +#: src/engine/sysDef.cpp:1830 +msgid "OKI MSM5232" +msgstr "" + +#: src/engine/sysDef.cpp:1831 +msgid "" +"a square wave additive synthesis chip made by OKI. used in some arcade " +"machines and instruments." +msgstr "" +"układ syntezy addytywnej firmy OKI. używany w niektórych automatach do gier " +"i instrumentach muzycznych." + +#: src/engine/sysDef.cpp:1839 +msgid "10xy: Set group control (x: sustain; y: part toggle bitmask)" +msgstr "10xy: Ustaw kontrolę grupy (x: podtrzymanie; y: maska bitowa części)" + +#: src/engine/sysDef.cpp:1840 src/engine/sysDef.cpp:1998 +msgid "11xx: Set noise mode" +msgstr "11xx: Ustaw tryb szumu" + +#: src/engine/sysDef.cpp:1841 +msgid "12xx: Set group attack (0 to 5)" +msgstr "12xx: Ustaw narastanie grupy (0-5)" + +#: src/engine/sysDef.cpp:1842 +msgid "13xx: Set group decay (0 to 11)" +msgstr "13xx: Ustaw opadanie grupy (0-11)" + +#: src/engine/sysDef.cpp:1847 +msgid "Yamaha YM2612 (OPN2) with DualPCM" +msgstr "Yamaha YM2612 (OPN2) z DualPCM" + +#: src/engine/sysDef.cpp:1848 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this system uses software mixing to provide two sample channels." +msgstr "" +"układ ten znany jest głównie z tego, że znajduje się w Sega Mega Drive (ale " +"był również używany w komputerze FM Towns).\n" +"w ta wersja wykorzystuje programowe miksowanie sampli, dzięki czemu można " +"odtwarzać dwa kanały sampli na raz." + +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +msgid "FM 6/PCM 1" +msgstr "FM 6/PCM 1" + +#: src/engine/sysDef.cpp:1859 +msgid "Yamaha YM2612 (OPN2) Extended Channel 3 with DualPCM and CSM" +msgstr "Yamaha YM2612 (OPN2) z rozszerzonym kanałem 3, DualPCM i CSM" + +#: src/engine/sysDef.cpp:1860 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this system uses software mixing to provide two sample channels.\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:1872 src/gui/settings.cpp:4024 +msgid "T6W28" +msgstr "" + +#: src/engine/sysDef.cpp:1873 +msgid "" +"an SN76489 derivative used in Neo Geo Pocket, has independent stereo volume " +"and noise channel frequency." +msgstr "" +"wariant SN76489 używany w Neo Geo Pocket. Posiada niezależną kontrolę " +"głośności, częstotliwości kanału szumów i wyjścia stereo." + +#: src/engine/sysDef.cpp:1880 +msgid "20xx: Set noise length (0: short, 1: long)" +msgstr "20xx: Ustaw długość szumu (0: krótki, 1: długi)" + +#: src/engine/sysDef.cpp:1885 +msgid "Generic PCM DAC" +msgstr "Typowy przetwornik C/A" + +#: src/engine/sysDef.cpp:1886 +msgid "as generic sample playback as it gets." +msgstr "proste do bólu urządzenie do odtwarzania sampli." + +#: src/engine/sysDef.cpp:1898 +msgid "Konami K007232" +msgstr "" + +#: src/engine/sysDef.cpp:1899 +msgid "this PCM chip was widely used at Konami arcade boards in 1986-1990." +msgstr "" +"ten układ PCM był szeroko stosowany w automatach do gier Konami w latach " +"1986-1990." + +#: src/engine/sysDef.cpp:1908 +msgid "Irem GA20" +msgstr "" + +#: src/engine/sysDef.cpp:1909 +msgid "" +"yet another PCM chip from Irem. like Amiga, but less pitch resolution and no " +"sample loop." +msgstr "" +"kolejny układ PCM od firmy Irem. podobny do tego z Amigi, ale z mniejszą " +"rozdzielczością kontroli częstotliwości i bez zapętlania sampli." + +#: src/engine/sysDef.cpp:1918 +msgid "Sharp SM8521" +msgstr "" + +#: src/engine/sysDef.cpp:1919 +msgid "a SoC with wavetable sound hardware." +msgstr "CPU z syntezatorem tablicowym." + +#: src/engine/sysDef.cpp:1929 +msgid "Casio PV-1000" +msgstr "" + +#: src/engine/sysDef.cpp:1930 +msgid "" +"a game console with 3 channels of square wave. it's what happens after " +"fusing TIA and VIC together." +msgstr "" +"konsola do gier z trzema kanałami fali kwadratowej. oto, co otrzymujesz po " +"skrzyżowaniu TIA i VIC." + +#: src/engine/sysDef.cpp:1937 +msgid "10xx: Set ring modulation (0: disable, 1: enable)" +msgstr "10xx: Ustaw modulację kołową (0: wył., 1: wł.)" + +#: src/engine/sysDef.cpp:1942 +msgid "ZX Spectrum Beeper (QuadTone Engine)" +msgstr "Brzęczyk ZX Spectrum (silnik QuadTone)" + +#: src/engine/sysDef.cpp:1943 +msgid "" +"another ZX Spectrum beeper system with full PWM pulses and 3-level volume " +"per channel. it also has a pitchable overlay sample channel." +msgstr "" +"kolejny system brzęczyka ZX Spectrum, tym razem zawierający pełnoprawne fale " +"prostokątne z regulowaną szerokością i trzema poziomami głośności dla " +"każdego kanału. ma również nakładający się ma inne kanały kanał sampli z " +"kontrolą częstotliwości." + +#: src/engine/sysDef.cpp:1955 +msgid "Konami K053260" +msgstr "" + +#: src/engine/sysDef.cpp:1956 +msgid "this PCM chip was widely used at Konami arcade boards in 1990-1992." +msgstr "" +"ten układ PCM był szeroko stosowany w automatach do gier Konami w latach " +"1990-1992." + +#: src/engine/sysDef.cpp:1968 +msgid "MOS Technology TED" +msgstr "" + +#: src/engine/sysDef.cpp:1969 +msgid "" +"two square waves (one may be turned into noise). used in the Commodore " +"Plus/4, 16 and 116." +msgstr "" +"dwa kanały fali kwadratowej (jeden z nich może odtwarzać szum). używany w " +"Commodore Plus/4, 16 i 116." + +#: src/engine/sysDef.cpp:1978 +msgid "Namco C140" +msgstr "" + +#: src/engine/sysDef.cpp:1979 +msgid "Namco's first PCM chip from 1987. it's pretty good for being so." +msgstr "" +"pierwszy układ PCM Namco z 1987r. Całkiem przyzwoity jak na swoje czasy." + +#: src/engine/sysDef.cpp:1989 +msgid "Namco C219" +msgstr "" + +#: src/engine/sysDef.cpp:1990 +msgid "" +"Namco's PCM chip used in their NA-1/2 hardware.\n" +"very similar to C140, but has noise generator." +msgstr "" +"Układ PCM firmy Namco używany w urządzeniach NA-1/2.\n" +"bardzo podobny do C140, ale ma generator szumu." + +#: src/engine/sysDef.cpp:1999 +msgid "12xy: Set invert mode (x: surround; y: invert)" +msgstr "12xy: Ustawia tryb odwrotny (x: dźwięk przestrzenny; y: odwrotny)" + +#: src/engine/sysDef.cpp:2004 +msgid "ESS ES1xxx series (ESFM)" +msgstr "ESS serii ES1xxx (ESFM)" + +#: src/engine/sysDef.cpp:2005 +msgid "" +"a unique FM synth featured in PC sound cards.\n" +"based on the OPL3 design, but with lots of its features extended." +msgstr "" +"unikalny układ syntezy FM stosowany w kartach dźwiękowych dla komputerów " +"PC.\n" +"opiera się na OPL3, ale ma znacznie rozszerzone możliwości syntezy." + +#: src/engine/sysDef.cpp:2006 +msgid "FM 11" +msgstr "" + +#: src/engine/sysDef.cpp:2012 +msgid "2Exx: Toggle hard envelope reset on new notes" +msgstr "2Exx: Włącz twardy reset obwiedni przy nowej nucie" + +#: src/engine/sysDef.cpp:2018 +msgid "PowerNoise" +msgstr "" + +#: src/engine/sysDef.cpp:2019 +msgid "" +"a fantasy sound chip designed by jvsTSX and The Beesh-Spweesh!\n" +"used in the Hexheld fantasy console." +msgstr "" +"fikcyjny układ dźwiękowy opracowany przez jvsTSX i The Beesh-Spweesh!\n" +"używany w fikcyjnej konsoli do gier Hexheld." + +#: src/engine/sysDef.cpp:2020 +msgid "Noise 1" +msgstr "Szum 1" + +#: src/engine/sysDef.cpp:2020 +msgid "Noise 2" +msgstr "Szum 2" + +#: src/engine/sysDef.cpp:2020 +msgid "Noise 3" +msgstr "Szum 3" + +#: src/engine/sysDef.cpp:2020 +msgid "Slope" +msgstr "Spadek" + +#: src/engine/sysDef.cpp:2026 +msgid "" +"20xx: Load low byte of noise channel LFSR (00 to FF) or slope channel " +"accumulator (00 to 7F)" +msgstr "" +"20xx: Załaduj najmniej znaczący bajt do LFSRa kanału szumu (00-FF) lub " +"akumulatora kanału spadka (00-7F)" + +#: src/engine/sysDef.cpp:2027 +msgid "21xx: Load high byte of noise channel LFSR (00 to FF)" +msgstr "21xx: Załaduj wysoki bajt do LFSR kanału szumu (00-FF)" + +#: src/engine/sysDef.cpp:2028 +msgid "22xx: Write to I/O port A" +msgstr "22xx: Zapisz do prtu I/O A" + +#: src/engine/sysDef.cpp:2029 +msgid "23xx: Write to I/O port B" +msgstr "23xx: Zapisz do portu I/O B" + +#: src/engine/sysDef.cpp:2035 src/gui/settings.cpp:4079 +msgid "Dave" +msgstr "" + +#: src/engine/sysDef.cpp:2036 +msgid "" +"this chip was featured in the Enterprise 128 computer. it is similar to " +"POKEY, but with stereo output." +msgstr "" + +#: src/engine/sysDef.cpp:2037 +msgid "DAC Left" +msgstr "DAC Lewy" + +#: src/engine/sysDef.cpp:2037 +msgid "DAC Right" +msgstr "DAC Prawy" + +#: src/engine/sysDef.cpp:2043 +msgid "10xx: Set waveform (0 to 4; 0 to 3 on noise)" +msgstr "10xx: Ustaw kształt fali (0-4; 0-3 na kanale szumu)" + +#: src/engine/sysDef.cpp:2044 +msgid "11xx: Set noise frequency source (0: fixed; 1-3: channels 1 to 3)" +msgstr "11xx: Ustaw źródło częstotliwości szumu(0: stały, 1-3: kanały 1-3)" + +#: src/engine/sysDef.cpp:2045 +msgid "12xx: Toggle high-pass with next channel" +msgstr "12xx: Włącz filtr gornoprzepustowy na następnym kanale" + +#: src/engine/sysDef.cpp:2046 +msgid "13xx: Toggle ring modulation with channel+2" +msgstr "13xx: Włącz modulację kołową na kanale +2" + +#: src/engine/sysDef.cpp:2047 +msgid "14xx: Toggle swap counters (noise only)" +msgstr "14xx: Włącz zamianę liczników (tylko szum)" + +#: src/engine/sysDef.cpp:2048 +msgid "15xx: Toggle low pass (noise only)" +msgstr "15xx: Włącz filtr dolnoprzep. (tylko szum)" + +#: src/engine/sysDef.cpp:2049 +msgid "16xx: Set clock divider (0: /2; 1: /3)" +msgstr "16xx: Ustaw dzielnik zegara (0: /2; 1: /3)" + +#: src/engine/sysDef.cpp:2054 +msgid "Game Boy Advance DMA Sound" +msgstr "" + +#: src/engine/sysDef.cpp:2055 +msgid "" +"additional PCM FIFO channels in Game Boy Advance driven directly by its DMA " +"hardware." +msgstr "" +"dodatkowe kanały PCM typu FIFO znajdujące się w Game Boy'u Advance sterowane " +"bezpośrednio przez własne, sprzętowe DMA" + +#: src/engine/sysDef.cpp:2068 +msgid "Game Boy Advance MinMod" +msgstr "" + +#: src/engine/sysDef.cpp:2069 +msgid "" +"additional PCM FIFO channels in Game Boy Advance driven by software mixing " +"to provide up to sixteen sample channels" +msgstr "" + +#: src/engine/sysDef.cpp:2078 +msgid "11xy: Set echo channel (x: left/right source; y: delay (0 disables))" +msgstr "" +"11xy: Ustaw kanał echo (x: lewe/prawe źródło; y: opóźnienie (0 wyłącza))" + +#: src/engine/sysDef.cpp:2079 +msgid "12xy: Toggle invert (x: left; y: right)" +msgstr "12xy: Włącz odwrócenie sygnału (x: lewo; y: prawo)" + +#: src/engine/sysDef.cpp:2084 src/gui/settings.cpp:4080 +msgid "Nintendo DS" +msgstr "" + +#: src/engine/sysDef.cpp:2085 +msgid "a handheld video game console with two screens. it uses a stylus." +msgstr "przenośna konsola do gier z dwoma ekranami. w zestawie był rysik" + +#: src/engine/sysDef.cpp:2093 +msgid "1Fxx: Set global volume (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:2098 +msgid "5E01" +msgstr "" + +#: src/engine/sysDef.cpp:2099 +msgid "" +"a fantasy sound chip created by Euly. it is based on Ricoh 2A03, adding a " +"couple features such as 32 noise pitches, an extra duty cycle, and three " +"waveforms (besides triangle)." +msgstr "" + +#: src/engine/sysDef.cpp:2107 +msgid "" +"12xx: Set duty cycle/noise mode/waveform (pulse/wave: 0 to 3; noise: 0 or 1)" +msgstr "" + +#: src/engine/sysDef.cpp:2120 src/gui/settings.cpp:4083 +msgid "Bifurcator" +msgstr "" + +#: src/engine/sysDef.cpp:2121 +msgid "a fantasy sound chip using logistic map iterations to generate sound." +msgstr "" +"fikcyjny układ audio wykorzystujący ciąg iteracji odwzorowania logistycznego " +"do synteszy dźwięku " + +#: src/engine/sysDef.cpp:2128 +msgid "10xx: Load low byte of channel sample state" +msgstr "10xx: Załaduj niski bajt stanu samplowania kanału" + +#: src/engine/sysDef.cpp:2129 +msgid "11xx: Load high byte of channel sample state" +msgstr "11xx: Załaduj wysoki bajt stanu samplowania kanału" + +#: src/engine/sysDef.cpp:2130 +msgid "12xx: Set low byte of channel parameter" +msgstr "12xx: Ustaw niski bajt parametru kanału" + +#: src/engine/sysDef.cpp:2131 +msgid "13xx: Set high byte of channel parameter" +msgstr "13xx: Ustaw wysoki bajt parametru kanału" + +#: src/engine/sysDef.cpp:2136 src/gui/settings.cpp:4084 +msgid "SID2" +msgstr "" + +#: src/engine/sysDef.cpp:2137 +msgid "" +"a fantasy sound chip created by LTVA. it is similar to the SID chip, but " +"with many of its problems fixed." +msgstr "" + +#: src/engine/sysDef.cpp:2148 +msgid "Dummy System" +msgstr "System-wydmuszka" + +#: src/engine/sysDef.cpp:2149 +msgid "this is a system designed for testing purposes." +msgstr "ten system jest przeznaczony do testowania." + +#: src/engine/engine.cpp:51 +msgid "00xy: Arpeggio" +msgstr "00xy: Arpeggio" + +#: src/engine/engine.cpp:53 +msgid "01xx: Pitch slide up" +msgstr "01xx: Portamento w górę" + +#: src/engine/engine.cpp:55 +msgid "02xx: Pitch slide down" +msgstr "02xx: Portamento w dół" + +#: src/engine/engine.cpp:57 +msgid "03xx: Portamento" +msgstr "Auto-portamento (do wskazanej nuty)" + +#: src/engine/engine.cpp:59 +msgid "04xy: Vibrato (x: speed; y: depth)" +msgstr "Vibrato (x: szybkość; y: głebokość)" + +#: src/engine/engine.cpp:61 +msgid "05xy: Volume slide + vibrato (compatibility only!)" +msgstr "05xy: Zjazd głośności + vibrato (dla kompatybilności!)" + +#: src/engine/engine.cpp:63 +msgid "06xy: Volume slide + portamento (compatibility only!)" +msgstr "06xy: Zjazd głośności + portamento (dla kompatybilności!)" + +#: src/engine/engine.cpp:65 +msgid "07xy: Tremolo (x: speed; y: depth)" +msgstr "07xy: Tremolo (x: szybkość; y: głębokość)" + +#: src/engine/engine.cpp:67 +msgid "08xy: Set panning (x: left; y: right)" +msgstr "08xy: Ustaw panning (x: lewo; y: prawo)" + +#: src/engine/engine.cpp:69 +msgid "09xx: Set groove pattern (speed 1 if no grooves exist)" +msgstr "09xx: Ustaw wzór rytmu (prędkość nr.1 w przypadku ich nieobecności)" + +#: src/engine/engine.cpp:71 +msgid "0Axy: Volume slide (0y: down; x0: up)" +msgstr "0Axy: Zjazd głośności (0y: góra; x0: dół)" + +#: src/engine/engine.cpp:73 +msgid "0Bxx: Jump to pattern" +msgstr "0Bxx: Przeskocz do wzorca" + +#: src/engine/engine.cpp:75 +msgid "0Cxx: Retrigger" +msgstr "0Cxx: Cykliczny restart nuty" + +#: src/engine/engine.cpp:77 +msgid "0Dxx: Jump to next pattern" +msgstr "0Dxx: Przeskocz do nast. wzorca" + +#: src/engine/engine.cpp:79 +msgid "0Fxx: Set speed (speed 2 if no grooves exist)" +msgstr "0Fxx: Ustaw prędkość (prędkość 2 jeśli nie zdefiniowano wzoru rytmu)" + +#: src/engine/engine.cpp:81 +msgid "80xx: Set panning (00: left; 80: center; FF: right)" +msgstr "80xx: Ustaw panning (00: lewo; 80: środek; FF: prawo)" + +#: src/engine/engine.cpp:83 +msgid "81xx: Set panning (left channel)" +msgstr "81xx: Ustaw panning (lewy kanał)" + +#: src/engine/engine.cpp:85 +msgid "82xx: Set panning (right channel)" +msgstr "82xx: Ustaw panning (prawy kanał" + +#: src/engine/engine.cpp:87 +msgid "88xy: Set panning (rear channels; x: left; y: right)" +msgstr "88xy: Ustaw panning (tylne kanały; x: lewy; y: prawy)" + +#: src/engine/engine.cpp:90 +msgid "89xx: Set panning (rear left channel)" +msgstr "89xx: Ustaw panning (tylny lewy kanał)" + +#: src/engine/engine.cpp:93 +msgid "8Axx: Set panning (rear right channel)" +msgstr "8Axx: Ustaw panning (tylny prawy kanał)" + +#: src/engine/engine.cpp:96 +msgid "Cxxx: Set tick rate (hz)" +msgstr "Cxxx: Ustaw częstotliwość odświeżania utworu (Hz)" + +#: src/engine/engine.cpp:98 +msgid "E0xx: Set arp speed" +msgstr "E0xx: Ustaw sszybkość arpeggio" + +#: src/engine/engine.cpp:100 +msgid "E1xy: Note slide up (x: speed; y: semitones)" +msgstr "E1xy: Portamento nuty w górę (x: szybkość; y: półtony)" + +#: src/engine/engine.cpp:102 +msgid "E2xy: Note slide down (x: speed; y: semitones)" +msgstr "E2xy: Portamento nuty w dół (x: szybkość; y: półtony)" + +#: src/engine/engine.cpp:104 +msgid "E3xx: Set vibrato shape (0: up/down; 1: up only; 2: down only)" +msgstr "E3xx: Ustaw typ vibrato (0: góra/dół; 1: tylko w górę; 2: tylko w dół)" + +#: src/engine/engine.cpp:106 +msgid "E4xx: Set vibrato range" +msgstr "E4xx: Ustaw zakres vibrato" + +#: src/engine/engine.cpp:108 +msgid "E5xx: Set pitch (80: center)" +msgstr "E5xx: Ustaw rozstrojenie (80: brak rozstrojenia)" + +#: src/engine/engine.cpp:110 +msgid "E6xy: Quick legato (x: time (0-7 up; 8-F down); y: semitones)" +msgstr "" +"E6xy: Uproszczone legato (x: 0-7 = w górę, 8-F = w dół (po (x % 7) krokach); " +"y: półtony)" + +#: src/engine/engine.cpp:112 +msgid "E7xx: Macro release" +msgstr "E7xx: Zwolnienie makra" + +#: src/engine/engine.cpp:114 +msgid "E8xy: Quick legato up (x: time; y: semitones)" +msgstr "E8xy: Uproszczone legato w górę (x: kroki; y: półtony)" + +#: src/engine/engine.cpp:116 +msgid "E9xy: Quick legato down (x: time; y: semitones)" +msgstr "E9xy: OUproszczone legato w dół (x: kroki; y: półtony)" + +#: src/engine/engine.cpp:118 +msgid "EAxx: Legato" +msgstr "EAxx: Legato" + +#: src/engine/engine.cpp:120 +msgid "EBxx: Set LEGACY sample mode bank" +msgstr "EBxx: (PRZESTARZAŁE) Zdefiniuj bank sampli" + +#: src/engine/engine.cpp:122 +msgid "ECxx: Note cut" +msgstr "ECxx: Obcięcie nuty" + +#: src/engine/engine.cpp:124 +msgid "EDxx: Note delay" +msgstr "EDxx: Opóźnienie nuty" + +#: src/engine/engine.cpp:126 +msgid "EExx: Send external command" +msgstr "EExx: Wyślij zewnętrzną komendę" + +#: src/engine/engine.cpp:128 +msgid "F0xx: Set tick rate (bpm)" +msgstr "F0xx: Ustaw tempo utworu (BPM)" + +#: src/engine/engine.cpp:130 +msgid "F1xx: Single tick note slide up" +msgstr "F1xx: Portamento w górę (jeden krok)" + +#: src/engine/engine.cpp:132 +msgid "F2xx: Single tick note slide down" +msgstr "F2xx: Portamento w dół (jeden krok)" + +#: src/engine/engine.cpp:134 +msgid "F3xx: Fine volume slide up" +msgstr "F3xx: Precyzyjny wzrost głośności" + +#: src/engine/engine.cpp:136 +msgid "F4xx: Fine volume slide down" +msgstr "F4xx: Precyzyjny zjazd głośności" + +#: src/engine/engine.cpp:138 +msgid "F5xx: Disable macro (see manual)" +msgstr "F5xx: Wyłącz makro (patrz: instrukcja)" + +#: src/engine/engine.cpp:140 +msgid "F6xx: Enable macro (see manual)" +msgstr "F6xx: Włącz makro (patrz: instrukcja)" + +#: src/engine/engine.cpp:142 +msgid "F7xx: Restart macro (see manual)" +msgstr "F7xx: Zrestartuj makro (patrz: instrukcja)" + +#: src/engine/engine.cpp:144 +msgid "F8xx: Single tick volume slide up" +msgstr "F8xx: Wzrost głośności w górę (jeden krok)" + +#: src/engine/engine.cpp:146 +msgid "F9xx: Single tick volume slide down" +msgstr "F9xx: Zjazd głośności w dół (jeden krok)" + +#: src/engine/engine.cpp:148 +msgid "FAxx: Fast volume slide (0y: down; x0: up)" +msgstr "FAxx: Szybki zjazd głośności (0y: w górę; x0: w dół)" + +#: src/engine/engine.cpp:150 +msgid "FCxx: Note release" +msgstr "FCxx: Zwolnienie nuty" + +#: src/engine/engine.cpp:152 +msgid "FDxx: Set virtual tempo numerator" +msgstr "FDxx: Ustaw licznik wirtualnego tempa" + +#: src/engine/engine.cpp:154 +msgid "FExx: Set virtual tempo denominator" +msgstr "FExx: Ustaw mianownik wirtualnego tempa" + +#: src/engine/engine.cpp:156 +msgid "FFxx: Stop song" +msgstr "FFxx: Zatrzymaj utwór" + +#: src/engine/engine.cpp:160 +msgid "9xxx: Set sample offset*256" +msgstr "9xxx: Ustaw przesunięcie pocz. sampla (xxx*256 kroków)" + +#: src/engine/engine.cpp:164 +msgid "90xx: Set sample offset (first byte)" +msgstr "90xx: Ustaw przesunięcie sampla (pierwszy bajt)" + +#: src/engine/engine.cpp:166 +msgid "91xx: Set sample offset (second byte, ×256)" +msgstr "Ustaw przesunięcie sampla (drugi bajt x 256)" + +#: src/engine/engine.cpp:168 +msgid "92xx: Set sample offset (third byte, ×65536)" +msgstr "Ustaw przesunięcie sampla (trzeci bajt x 65536" + +#: src/engine/engine.cpp:187 src/gui/settings.cpp:4127 +msgid "Invalid effect" +msgstr "nieprawidłowy efekt" + +#: src/engine/engine.cpp:354 src/gui/gui.cpp:2259 src/gui/gui.cpp:2422 +#, c-format +msgid "on seek: %s" +msgstr "podczas przejścia po pliku: %s" + +#: src/engine/engine.cpp:361 src/gui/gui.cpp:2266 src/gui/gui.cpp:2429 +#, c-format +msgid "on pre tell: %s" +msgstr "przed zażądaniem pozycji w pliku: %s" + +#: src/engine/engine.cpp:368 src/engine/engine.cpp:2768 +#: src/gui/settings.cpp:5811 src/gui/gui.cpp:2273 src/gui/gui.cpp:2436 +msgid "file is empty" +msgstr "pusty plik" + +#: src/engine/engine.cpp:371 src/gui/gui.cpp:2276 src/gui/gui.cpp:2439 +#, c-format +msgid "on tell: %s" +msgstr "podczas żądania pozycji w pliku: %s" + +#: src/engine/engine.cpp:378 +#, c-format +msgid "ROM size mismatch, expected: %d bytes, was: %d" +msgstr "niezgodność rozmiaru pliku ROM, oczekiwano: %d bajtów, faktycznie: %d" + +#: src/engine/engine.cpp:383 src/gui/settings.cpp:5820 src/gui/gui.cpp:2283 +#: src/gui/gui.cpp:2446 +#, c-format +msgid "on get size: %s" +msgstr "przy pobraniu rozmiaru: %s" + +#: src/engine/engine.cpp:390 src/gui/settings.cpp:5827 src/gui/gui.cpp:2290 +#: src/gui/gui.cpp:2453 +#, c-format +msgid "on read: %s" +msgstr "przy odczycie: %s" + +#: src/engine/engine.cpp:1076 src/engine/engine.cpp:1181 +#: src/engine/engine.cpp:1290 +msgid "invalid index" +msgstr "nieprawidłowy indeks" + +#: src/engine/engine.cpp:1080 src/engine/engine.cpp:1135 +#: src/engine/engine.cpp:1189 +#, c-format +msgid "max number of total channels is %d" +msgstr "maksymalna ilość kanałów to %d" + +#: src/engine/engine.cpp:1131 src/engine/engine.cpp:1185 +#, c-format +msgid "max number of systems is %d" +msgstr "maksymalna ilość systemów to %d" + +#: src/engine/engine.cpp:1286 +msgid "cannot remove the last one" +msgstr "nie można usunąć ostatniego" + +#: src/engine/engine.cpp:1460 +msgid "source and destination are equal" +msgstr "systemy są takie same" + +#: src/engine/engine.cpp:1464 +msgid "invalid source index" +msgstr "nieprawidłowy indeks oryginalnego systemu" + +#: src/engine/engine.cpp:1468 +msgid "invalid destination index" +msgstr "nieprawidłowy indeks systemu docelowego" + +#: src/engine/engine.cpp:2636 +#, c-format +msgid "Instrument %d" +msgstr "Instrument %d" + +#: src/engine/engine.cpp:2710 src/engine/engine.cpp:2727 +#: src/gui/doAction.cpp:825 src/gui/doAction.cpp:843 src/gui/doAction.cpp:1634 +#: src/gui/gui.cpp:6159 src/gui/insEdit.cpp:6860 +msgid "too many wavetables!" +msgstr "zbyt wiele tablic fal!" + +#: src/engine/engine.cpp:2752 +#, c-format +msgid "could not seek to end: %s" +msgstr "nie udało się przejść do końca pliku: %s" + +#: src/engine/engine.cpp:2758 +#, c-format +msgid "could not determine file size: %s" +msgstr "nie udało się określić rozmiaru pliku: %s" + +#: src/engine/engine.cpp:2763 +msgid "file size is invalid!" +msgstr "rozmiar pliku jest nieprawidłowy!" + +#: src/engine/engine.cpp:2773 +#, c-format +msgid "could not seek to beginning: %s" +msgstr "nie udało się przejść do początku pliku: %s" + +#: src/engine/engine.cpp:2780 +#, c-format +msgid "could not read entire file: %s" +msgstr "nie udało się wczytać całego pliku: %s" + +#: src/engine/engine.cpp:2806 +msgid "invalid wavetable header/data!" +msgstr "nieprawidłowy nagłówek/dane tablicy fal!" + +#: src/engine/engine.cpp:2877 +msgid "premature end of file" +msgstr "przedwczesny koniec pliku" + +#: src/engine/engine.cpp:2904 src/engine/engine.cpp:2926 +#: src/gui/doAction.cpp:909 src/gui/doAction.cpp:921 +msgid "too many samples!" +msgstr "zbyt wiele sampli!" + +#: src/engine/engine.cpp:2911 +#, c-format +msgid "Sample %d" +msgstr "Sampel %d" + +#: src/engine/engine.cpp:3056 +#, c-format +msgid "no free patterns in channel %d!" +msgstr "brak wolnych wzorców na kanale %d!" + +#: src/gui/mixer.cpp:28 src/gui/insEdit.cpp:484 +msgid "left" +msgstr "lewo" + +#: src/gui/mixer.cpp:29 src/gui/insEdit.cpp:483 +msgid "right" +msgstr "prawo" + +#: src/gui/mixer.cpp:128 +msgid "input" +msgstr "wejście" + +#: src/gui/mixer.cpp:168 +msgid "output" +msgstr "wyjście" + +#: src/gui/mixer.cpp:226 src/gui/mixer.cpp:228 src/gui/editControls.cpp:454 +#: src/gui/guiConst.cpp:593 +msgid "Mixer" +msgstr "Mikser" + +#: src/gui/mixer.cpp:229 +msgid "Master Volume" +msgstr "Główna głośność" + +#: src/gui/mixer.cpp:250 src/gui/exportOptions.cpp:90 +#: src/gui/userPresets.cpp:393 src/gui/userPresets.cpp:405 +#: src/gui/settings.cpp:1080 src/gui/settings.cpp:1094 +#: src/gui/waveEdit.cpp:1096 src/gui/sampleEdit.cpp:1128 +#: src/gui/insEdit.cpp:519 +msgid "Invert" +msgstr "Odwr." + +#: src/gui/mixer.cpp:268 src/gui/chanOsc.cpp:37 src/gui/userPresets.cpp:417 +#: src/gui/settings.cpp:263 src/gui/settings.cpp:1109 src/gui/settings.cpp:1492 +#: src/gui/settings.cpp:1504 src/gui/settings.cpp:3369 +#: src/gui/settings.cpp:4015 src/gui/findReplace.cpp:687 +#: src/gui/findReplace.cpp:943 src/gui/guiConst.cpp:228 +#: src/gui/sampleEdit.cpp:1003 src/gui/insEdit.cpp:5575 +#: src/gui/insEdit.cpp:5660 src/gui/insEdit.cpp:6920 src/gui/insEdit.cpp:6928 +#: src/gui/insEdit.cpp:6936 src/gui/insEdit.cpp:6946 src/gui/insEdit.cpp:6961 +#: src/gui/insEdit.cpp:6975 src/gui/insEdit.cpp:6987 src/gui/insEdit.cpp:7000 +#: src/gui/insEdit.cpp:7016 src/gui/insEdit.cpp:7022 src/gui/insEdit.cpp:7032 +#: src/gui/insEdit.cpp:7039 src/gui/insEdit.cpp:7045 src/gui/insEdit.cpp:7058 +#: src/gui/insEdit.cpp:7065 src/gui/insEdit.cpp:7072 src/gui/insEdit.cpp:7081 +#: src/gui/insEdit.cpp:7091 src/gui/insEdit.cpp:7099 src/gui/insEdit.cpp:7105 +#: src/gui/insEdit.cpp:7113 src/gui/insEdit.cpp:7120 src/gui/insEdit.cpp:7126 +#: src/gui/insEdit.cpp:7136 src/gui/insEdit.cpp:7148 src/gui/insEdit.cpp:7156 +#: src/gui/insEdit.cpp:7172 src/gui/insEdit.cpp:7177 src/gui/insEdit.cpp:7190 +#: src/gui/insEdit.cpp:7197 src/gui/insEdit.cpp:7208 src/gui/insEdit.cpp:7221 +#: src/gui/insEdit.cpp:7230 src/gui/insEdit.cpp:7237 src/gui/insEdit.cpp:7245 +#: src/gui/insEdit.cpp:7258 src/gui/insEdit.cpp:7263 src/gui/insEdit.cpp:7269 +#: src/gui/insEdit.cpp:7276 src/gui/insEdit.cpp:7284 src/gui/insEdit.cpp:7295 +#: src/gui/insEdit.cpp:7302 src/gui/insEdit.cpp:7310 src/gui/insEdit.cpp:7318 +#: src/gui/insEdit.cpp:7327 src/gui/insEdit.cpp:7335 src/gui/insEdit.cpp:7341 +#: src/gui/insEdit.cpp:7347 src/gui/insEdit.cpp:7353 src/gui/insEdit.cpp:7358 +#: src/gui/insEdit.cpp:7365 src/gui/insEdit.cpp:7372 src/gui/insEdit.cpp:7380 +#: src/gui/insEdit.cpp:7389 src/gui/insEdit.cpp:7397 src/gui/insEdit.cpp:7409 +#: src/gui/insEdit.cpp:7422 src/gui/insEdit.cpp:7433 src/gui/insEdit.cpp:7443 +#: src/gui/insEdit.cpp:7451 src/gui/insEdit.cpp:7461 src/gui/insEdit.cpp:7470 +msgid "Volume" +msgstr "Głośność" + +#: src/gui/mixer.cpp:279 src/gui/userPresets.cpp:427 src/gui/settings.cpp:1120 +#: src/gui/guiConst.cpp:229 src/gui/insEdit.cpp:6923 src/gui/insEdit.cpp:6930 +#: src/gui/insEdit.cpp:6941 src/gui/insEdit.cpp:6965 src/gui/insEdit.cpp:7067 +#: src/gui/insEdit.cpp:7108 src/gui/insEdit.cpp:7152 src/gui/insEdit.cpp:7192 +#: src/gui/insEdit.cpp:7212 src/gui/insEdit.cpp:7232 src/gui/insEdit.cpp:7240 +#: src/gui/insEdit.cpp:7253 src/gui/insEdit.cpp:7265 src/gui/insEdit.cpp:7271 +#: src/gui/insEdit.cpp:7287 src/gui/insEdit.cpp:7297 src/gui/insEdit.cpp:7360 +#: src/gui/insEdit.cpp:7392 src/gui/insEdit.cpp:7438 src/gui/insEdit.cpp:7446 +msgid "Panning" +msgstr "Panning" + +#: src/gui/mixer.cpp:290 src/gui/userPresets.cpp:433 src/gui/settings.cpp:1127 +msgid "Front/Rear" +msgstr "Przód/tył" + +#: src/gui/mixer.cpp:299 src/gui/settings.cpp:4208 +msgid "Patchbay" +msgstr "Połączenie kanałów" + +#: src/gui/mixer.cpp:305 +msgid "Automatic patchbay" +msgstr "Automatyczna krosownica" + +#: src/gui/mixer.cpp:310 +msgid "Display hidden ports" +msgstr "Wyświetl ukryte porty" + +#: src/gui/mixer.cpp:312 +msgid "Display internal" +msgstr "Wyświetl wewnętrzne porty" + +#: src/gui/mixer.cpp:322 src/gui/mixer.cpp:383 src/gui/settings.cpp:1901 +#: src/gui/settings.cpp:2089 src/gui/songInfo.cpp:69 +msgid "System" +msgstr "System" + +#: src/gui/mixer.cpp:354 +msgid "Sample Preview" +msgstr "Podgląd sampla" + +#: src/gui/mixer.cpp:367 src/gui/editControls.cpp:745 +#: src/gui/editControls.cpp:837 src/gui/editControls.cpp:953 +#: src/gui/editControls.cpp:1093 src/gui/settings.cpp:1490 +#: src/gui/guiConst.cpp:558 +msgid "Metronome" +msgstr "Metronom" + +#: src/gui/mixer.cpp:446 +msgid "disconnect all" +msgstr "rozłącz wszystkie" + +#: src/gui/editing.cpp:200 +#, c-format +msgid "no data in oldPatMap for channel %d!" +msgstr "nie znaleziono danych w oldPatMap dla kanału %d!" + +#: src/gui/editing.cpp:664 src/gui/editing.cpp:1203 +#, c-format +msgid "invalid clipboard data! failed at line %d char %d" +msgstr "niepoprawne dane schowka? błąd przy linii %d, znaku %d" + +#: src/gui/editing.cpp:1565 src/gui/editing.cpp:1669 +msgid "can't collapse any further!" +msgstr "nie da się skrócić jeszcze bardziej!" + +#: src/gui/editing.cpp:1749 +msgid "can't expand any further!" +msgstr "nie da się rozszerzyć jeszcze bardziej!" + +#: src/gui/editing.cpp:1836 src/gui/editing.cpp:1851 +#, c-format +msgid "copy: %s" +msgstr "kopiuj: %s" + +#: src/gui/memory.cpp:35 src/gui/settings.cpp:3696 src/gui/settings.cpp:4217 +#: src/gui/guiConst.cpp:613 +msgid "Memory Composition" +msgstr "Zawartość pamięci" + +#: src/gui/memory.cpp:146 +#, c-format +msgid "bank %d" +msgstr "bank %d" + +#: src/gui/memory.cpp:175 src/gui/memory.cpp:176 +msgid "no chips with memory" +msgstr "brak układów z pamięcią" + +#: src/gui/intro.cpp:89 src/gui/gui.cpp:2345 src/gui/gui.cpp:3746 +#: src/gui/gui.cpp:5019 src/gui/gui.cpp:5041 src/gui/gui.cpp:5479 +#: src/gui/gui.cpp:5781 src/gui/gui.cpp:5791 +#, c-format +msgid "Error while loading file! (%s)" +msgstr "Błąd podczas wczytywania pliku! (%s)" + +#: src/gui/intro.cpp:122 +msgid "IntroMon X" +msgstr "IntroMon X" + +#: src/gui/intro.cpp:122 +msgid "Intro" +msgstr "Intro" + +#: src/gui/intro.cpp:124 +msgid "Preview" +msgstr "Podgląd" + +#: src/gui/intro.cpp:176 src/gui/intro.cpp:177 src/gui/intro.cpp:178 +msgid "SORRY NOTHING" +msgstr "SORRY NOTHING" + +#: src/gui/intro.cpp:310 +msgid "hold to skip" +msgstr "przytrzymaj by pominąć" + +#: src/gui/dataList.cpp:76 +msgid "Bug!" +msgstr "Błąd!" + +#: src/gui/dataList.cpp:79 src/gui/util.cpp:107 src/gui/util.cpp:109 +#: src/gui/settings.cpp:4220 src/gui/insEdit.cpp:5334 +msgid "Unknown" +msgstr "Nieznany typ instrumentu" + +#: src/gui/dataList.cpp:136 src/gui/dataList.cpp:260 +msgid "duplicate" +msgstr "duplikuj" + +#: src/gui/dataList.cpp:139 src/gui/dataList.cpp:263 src/gui/dataList.cpp:388 +#: src/gui/dataList.cpp:731 src/gui/dataList.cpp:867 +msgid "replace..." +msgstr "zamień..." + +#: src/gui/dataList.cpp:142 src/gui/dataList.cpp:266 src/gui/gui.cpp:4232 +msgid "save" +msgstr "zapisz" + +#: src/gui/dataList.cpp:145 +msgid "save (.dmp)" +msgstr "zapisz (.dmp)" + +#: src/gui/dataList.cpp:148 src/gui/dataList.cpp:269 src/gui/dataList.cpp:617 +#: src/gui/dataList.cpp:994 src/gui/dataList.cpp:1040 +#: src/gui/editControls.cpp:50 src/gui/gui.cpp:2767 src/gui/gui.cpp:2776 +msgid "delete" +msgstr "usuń" + +#: src/gui/dataList.cpp:243 +msgid "out of memory for this sample!" +msgstr "brak miejsca w pamięci dla tego sampla!" + +#: src/gui/dataList.cpp:254 +msgid "make instrument" +msgstr "stwórz instrument" + +#: src/gui/dataList.cpp:257 +msgid "make me a drum kit" +msgstr "stwórz zestaw perkusji" + +#: src/gui/dataList.cpp:290 src/gui/dataList.cpp:593 src/gui/gui.cpp:5914 +msgid "Instruments" +msgstr "Instrumenty" + +#: src/gui/dataList.cpp:312 src/gui/dataList.cpp:714 src/gui/dataList.cpp:846 +#: src/gui/subSongs.cpp:88 src/gui/insEdit.cpp:520 +msgid "Add" +msgstr "Dodaj" + +#: src/gui/dataList.cpp:338 src/gui/dataList.cpp:721 src/gui/dataList.cpp:853 +#: src/gui/subSongs.cpp:108 +msgid "Duplicate" +msgstr "Sklonuj" + +#: src/gui/dataList.cpp:359 src/gui/dataList.cpp:728 src/gui/dataList.cpp:860 +#: src/gui/editControls.cpp:497 src/gui/waveEdit.cpp:435 +#: src/gui/waveEdit.cpp:467 src/gui/sampleEdit.cpp:122 +#: src/gui/sampleEdit.cpp:171 src/gui/insEdit.cpp:5239 src/gui/insEdit.cpp:5304 +msgid "Open" +msgstr "Otwórz" + +#: src/gui/dataList.cpp:363 +msgid "replace instrument..." +msgstr "zamień instrument..." + +#: src/gui/dataList.cpp:366 +msgid "load instrument from TX81Z" +msgstr "załaduj instrument z TX81Z" + +#: src/gui/dataList.cpp:372 +msgid "replace wavetable..." +msgstr "zamień tablice fal..." + +#: src/gui/dataList.cpp:378 +msgid "replace sample..." +msgstr "zamień sampel..." + +#: src/gui/dataList.cpp:381 +msgid "import raw sample..." +msgstr "importuj surowy sampel..." + +#: src/gui/dataList.cpp:384 +msgid "import raw sample (replace)..." +msgstr "importuj surowy sampel (zamień)..." + +#: src/gui/dataList.cpp:392 +msgid "load from TX81Z" +msgstr "zaladuj z TX81Z" + +#: src/gui/dataList.cpp:399 +msgid "Open (insert; right-click to replace)" +msgstr "Otwórz (wstaw; PPM by zastapic)" + +#: src/gui/dataList.cpp:420 src/gui/dataList.cpp:741 src/gui/dataList.cpp:884 +#: src/gui/editControls.cpp:502 src/gui/waveEdit.cpp:474 +#: src/gui/sampleEdit.cpp:184 src/gui/insEdit.cpp:5311 +msgid "Save" +msgstr "Zapisz" + +#: src/gui/dataList.cpp:424 +msgid "save instrument as .dmp..." +msgstr "zapisz instrument jako .dmp..." + +#: src/gui/dataList.cpp:430 +msgid "save wavetable as .dmw..." +msgstr "zapisz tablicę fal jako .dmw..." + +#: src/gui/dataList.cpp:433 +msgid "save raw wavetable..." +msgstr "zapisz surową tablice fal..." + +#: src/gui/dataList.cpp:439 +msgid "save raw sample..." +msgstr "zapisz surowy sampel" + +#: src/gui/dataList.cpp:443 src/gui/insEdit.cpp:5314 +msgid "save as .dmp..." +msgstr "zapisz jako .dmp..." + +#: src/gui/dataList.cpp:456 src/gui/dataList.cpp:761 src/gui/dataList.cpp:903 +msgid "Toggle folders/standard view" +msgstr "Przełącz między widokiem złożonym i normalnym" + +#: src/gui/dataList.cpp:478 src/gui/dataList.cpp:769 src/gui/dataList.cpp:911 +#: src/gui/subSongs.cpp:55 +msgid "Move up" +msgstr "Przesuń w górę o jedną pozycję" + +#: src/gui/dataList.cpp:499 src/gui/dataList.cpp:776 src/gui/dataList.cpp:918 +#: src/gui/subSongs.cpp:62 +msgid "Move down" +msgstr "Przesuń w dół o jedną pozycję" + +#: src/gui/dataList.cpp:510 src/gui/dataList.cpp:787 src/gui/dataList.cpp:929 +msgid "Create" +msgstr "Stwórz" + +#: src/gui/dataList.cpp:540 src/gui/dataList.cpp:797 src/gui/dataList.cpp:939 +msgid "New folder" +msgstr "Nowy folder" + +#: src/gui/dataList.cpp:549 src/gui/dataList.cpp:947 +msgid "Preview (right click to stop)" +msgstr "Podgląd (PPM aby zatrzymać)" + +#: src/gui/dataList.cpp:576 src/gui/dataList.cpp:807 src/gui/dataList.cpp:959 +#: src/gui/guiConst.cpp:666 src/gui/sampleEdit.cpp:1105 +msgid "Delete" +msgstr "Usuń" + +#: src/gui/dataList.cpp:608 src/gui/dataList.cpp:985 src/gui/dataList.cpp:1031 +msgid "" +msgstr "" + +#: src/gui/dataList.cpp:614 src/gui/dataList.cpp:991 src/gui/dataList.cpp:1037 +msgid "rename..." +msgstr "zmień nazwę..." + +#: src/gui/dataList.cpp:663 src/gui/dataList.cpp:707 src/gui/gui.cpp:5923 +msgid "Wavetables" +msgstr "Tablice fal" + +#: src/gui/dataList.cpp:674 src/gui/dataList.cpp:839 src/gui/xyOsc.cpp:68 +#: src/gui/sampleEdit.cpp:898 src/gui/sampleEdit.cpp:1072 src/gui/gui.cpp:5932 +msgid "Samples" +msgstr "Sample" + +#: src/gui/dataList.cpp:745 src/gui/waveEdit.cpp:477 +msgid "save as .dmw..." +msgstr "zapisz jako .dmw..." + +#: src/gui/dataList.cpp:748 src/gui/dataList.cpp:891 src/gui/waveEdit.cpp:480 +#: src/gui/sampleEdit.cpp:187 +msgid "save raw..." +msgstr "zapisz dane surowe..." + +#: src/gui/dataList.cpp:871 src/gui/sampleEdit.cpp:174 +msgid "import raw..." +msgstr "importuj dane surowe..." + +#: src/gui/dataList.cpp:874 +msgid "import raw (replace)..." +msgstr "importuj dane surowe (zamień)..." + +#: src/gui/exportOptions.cpp:29 +msgid "Export type:" +msgstr "Typ eksportu:" + +#: src/gui/exportOptions.cpp:32 +msgid "one file" +msgstr "jeden plik" + +#: src/gui/exportOptions.cpp:35 +msgid "multiple files (one per chip)" +msgstr "wiele plików (po jednym na układ)" + +#: src/gui/exportOptions.cpp:38 +msgid "multiple files (one per channel)" +msgstr "wiele plików (po jednym na kanał)" + +#: src/gui/exportOptions.cpp:44 +msgid "Bit depth:" +msgstr "Rozdzielczość:" + +#: src/gui/exportOptions.cpp:46 +msgid "16-bit integer" +msgstr "16-bitowa liczba całkowita" + +#: src/gui/exportOptions.cpp:49 +msgid "32-bit float" +msgstr "32-bitowa liczba zmiennoprzecinkowa" + +#: src/gui/exportOptions.cpp:55 src/gui/settings.cpp:1352 src/gui/gui.cpp:6270 +msgid "Sample rate" +msgstr "Częstotliwość samplowania" + +#: src/gui/exportOptions.cpp:61 +msgid "Channels in file" +msgstr "Kanały audio w pliku" + +#: src/gui/exportOptions.cpp:67 src/gui/settings.cpp:930 +msgid "Loops" +msgstr "Ilość powtórzeń" + +#: src/gui/exportOptions.cpp:70 src/gui/settings.cpp:935 +msgid "Fade out (seconds)" +msgstr "Zanikanie (w sekundach)" + +#: src/gui/exportOptions.cpp:76 +msgid "Channels to export:" +msgstr "Kanały do eksportu:" + +#: src/gui/exportOptions.cpp:78 src/gui/effectList.cpp:32 src/gui/gui.cpp:6186 +msgid "All" +msgstr "Wszystkie" + +#: src/gui/exportOptions.cpp:84 src/gui/sysConf.cpp:1870 +#: src/gui/effectList.cpp:34 src/gui/compatFlags.cpp:219 +#: src/gui/waveEdit.cpp:37 src/gui/gui.cpp:6192 src/gui/insEdit.cpp:518 +msgid "None" +msgstr "Brak (bezpośrednia)" + +#: src/gui/exportOptions.cpp:110 src/gui/exportOptions.cpp:214 +#: src/gui/exportOptions.cpp:225 src/gui/exportOptions.cpp:243 +#: src/gui/exportOptions.cpp:266 src/gui/exportOptions.cpp:297 +#: src/gui/exportOptions.cpp:318 src/gui/exportOptions.cpp:341 +#: src/gui/commandPalette.cpp:199 src/gui/settings.cpp:6673 +#: src/gui/newSong.cpp:273 src/gui/gui.cpp:5669 src/gui/gui.cpp:5693 +#: src/gui/gui.cpp:5717 src/gui/gui.cpp:5741 src/gui/gui.cpp:5765 +#: src/gui/gui.cpp:5796 src/gui/gui.cpp:5855 src/gui/gui.cpp:6229 +#: src/gui/gui.cpp:6353 +msgid "Cancel" +msgstr "Anuluj" + +#: src/gui/exportOptions.cpp:115 src/gui/exportOptions.cpp:217 +#: src/gui/exportOptions.cpp:246 src/gui/exportOptions.cpp:300 +#: src/gui/exportOptions.cpp:321 src/gui/exportOptions.cpp:344 +#: src/gui/editControls.cpp:512 src/gui/userPresets.cpp:523 +#: src/gui/settings.cpp:1242 src/gui/settings.cpp:2165 +#: src/gui/settings.cpp:2557 src/gui/settings.cpp:3800 src/gui/guiConst.cpp:536 +#: src/gui/gui.cpp:5578 src/gui/gui.cpp:5630 +msgid "Export" +msgstr "Eksportuj" + +#: src/gui/exportOptions.cpp:130 +msgid "select at least one channel" +msgstr "wybierz co najmniej jeden kanał" + +#: src/gui/exportOptions.cpp:137 +msgid "settings:" +msgstr "ustawienia:" + +#: src/gui/exportOptions.cpp:138 +msgid "format version" +msgstr "wersja formatu" + +#: src/gui/exportOptions.cpp:146 src/gui/exportOptions.cpp:238 +#: src/gui/insEdit.cpp:362 +msgid "loop" +msgstr "zapętlenie" + +#: src/gui/exportOptions.cpp:148 +msgid "loop trail:" +msgstr "znacznik końca pętli:" + +#: src/gui/exportOptions.cpp:150 +msgid "auto-detect" +msgstr "automatyczny" + +#: src/gui/exportOptions.cpp:153 +msgid "add one loop" +msgstr "dodaj jedną pętlę" + +#: src/gui/exportOptions.cpp:156 +msgid "custom" +msgstr "niestandardowy" + +#: src/gui/exportOptions.cpp:167 +msgid "add pattern change hints" +msgstr "dodaj znaczniki końca wzorca" + +#: src/gui/exportOptions.cpp:170 +msgid "" +"inserts data blocks on pattern changes.\n" +"useful if you are writing a playback routine.\n" +"\n" +"the format of a pattern change data block is:\n" +"67 66 FE ll ll ll ll 01 oo rr pp pp pp ...\n" +"- ll: length, a 32-bit little-endian number\n" +"- oo: order\n" +"- rr: initial row (a 0Dxx effect is able to select a different row)\n" +"- pp: pattern index (one per channel)\n" +"\n" +"pattern indexes are ordered as they appear in the song." +msgstr "" +"wstawia bloki danych przy zmianie wzorca.\n" +"przydatne podczas pisania programu do odtwarzania.\n" +"\n" +"format bloku danych zmiany wzorca:\n" +"67 66 FE ll ll ll ll 01 oo rr pp pp pp ...\n" +"- ll: długość, liczba 32-bitowa, bezpośrednia kolejność bajtów (little " +"endian)\n" +"- oo: wiersz matrycy wzorców\n" +"- rr: początkowy wiersz wzorca (efekt 0Dxx może go zmienić)\n" +"- pp: indeks wzorca (jeden na kanał)\n" +"\n" +"indeksy wzorców są posortowane w kolejności, w jakiej się znajdują\n" +"w piosence" + +#: src/gui/exportOptions.cpp:183 +msgid "direct stream mode" +msgstr "tryb bezpośredniego strumienia" + +#: src/gui/exportOptions.cpp:186 +msgid "" +"required for DualPCM and MSM6258 export.\n" +"\n" +"allows for volume/direction changes when playing samples,\n" +"at the cost of a massive increase in file size." +msgstr "" +"wymagany do eksportu DualPCM i MSM6258.\n" +"\n" +"umożliwia zmiany głośności/kierunku odtwarzania sampla\n" +"kosztem znacznego zwiększenia rozmiaru pliku." + +#: src/gui/exportOptions.cpp:191 +msgid "chips to export:" +msgstr "eksportuj następujące układy:" + +#: src/gui/exportOptions.cpp:200 +#, c-format +msgid "this chip is only available in VGM %d.%.2x and higher!" +msgstr "ten układ jest dostępny tylko w formacie VGM wersji %d.%.2x i wyższej!" + +#: src/gui/exportOptions.cpp:204 +msgid "this chip is not supported by the VGM format!" +msgstr "ten uklad nie jest wspierany przez format VGM!" + +#: src/gui/exportOptions.cpp:210 +#, c-format +msgid "select the chip you wish to export, but only up to %d of each type." +msgstr "" +"wybierz układy, których dane chcesz wyeskportować, ale nie więcej niż %d " +"układ każdego typu." + +#: src/gui/exportOptions.cpp:222 +msgid "nothing to export" +msgstr "nic do eksportu" + +#: src/gui/exportOptions.cpp:233 +msgid "Commander X16 Zsound Music File" +msgstr "Commander X16 Zsound Music File" + +#: src/gui/exportOptions.cpp:234 +msgid "Tick Rate (Hz)" +msgstr "Częstotliwość kroku (Hz)" + +#: src/gui/exportOptions.cpp:240 +msgid "optimize size" +msgstr "optymalizuj rozmiar" + +#: src/gui/exportOptions.cpp:256 src/gui/editControls.cpp:630 +msgid "" +"this is NOT ROM export! only use for making sure the\n" +"Furnace Amiga emulator is working properly by\n" +"comparing it with real Amiga output." +msgstr "" +"to NIE jest opcja eksportu do ROM! używaj tylko by\n" +"upewnić się, że emulator Amigi w Furnace działa poprawnie,\n" +"porównując dźwięk prawdziwej Amigi i Furnace." + +#: src/gui/exportOptions.cpp:261 src/gui/editControls.cpp:635 +#: src/gui/settings.cpp:3925 +msgid "Directory" +msgstr "Folder" + +#: src/gui/exportOptions.cpp:269 src/gui/editControls.cpp:638 +msgid "Bake Data" +msgstr "Wstaw dane" + +#: src/gui/exportOptions.cpp:284 src/gui/editControls.cpp:653 +#, c-format +msgid "Done! Baked %d files." +msgstr "Gotowe! Wstawiono %d piku." + +#: src/gui/exportOptions.cpp:293 +msgid "this option exports the song to a text file.\n" +msgstr "ta opcja eksportuje piosenkę do pliku tekstowego\n" + +#: src/gui/exportOptions.cpp:310 +msgid "" +"this option exports a text or binary file which\n" +"contains a dump of the internal command stream\n" +"produced when playing the song.\n" +"\n" +"technical/development use only!" +msgstr "" +"ta opcja umożliwia utworzenie pliku tekstowego lub binarnego,\n" +"który zawiera zrzut wewnętrznego strumienia komend,\n" +"utworzone podczas odtwarzania utworu.\n" +"\n" +"używać tylko do celów technicznych/programowania!" + +#: src/gui/exportOptions.cpp:331 +msgid "" +"export in DefleMask module format.\n" +"only do it if you really, really need to, or are downgrading an existing ." +"dmf." +msgstr "" + +#: src/gui/exportOptions.cpp:335 +msgid "format version:" +msgstr "wersja formatu:" + +#: src/gui/exportOptions.cpp:336 +msgid "1.1.3 and higher" +msgstr "1.1.3 i nowsze" + +#: src/gui/exportOptions.cpp:337 +msgid "1.0/legacy (0.12)" +msgstr "1.0/0.12" + +#: src/gui/exportOptions.cpp:357 src/gui/settings.cpp:1253 +#: src/gui/settings.cpp:3929 +msgid "Audio" +msgstr "Audio" + +#: src/gui/exportOptions.cpp:361 src/gui/settings.cpp:3931 +msgid "VGM" +msgstr "" + +#: src/gui/exportOptions.cpp:370 src/gui/settings.cpp:3932 +msgid "ZSM" +msgstr "" + +#: src/gui/exportOptions.cpp:380 +msgid "Amiga Validation" +msgstr "Walidacja Amigi" + +#: src/gui/exportOptions.cpp:385 src/gui/settings.cpp:2959 +#: src/gui/settings.cpp:3891 +msgid "Text" +msgstr "Tekst" + +#: src/gui/exportOptions.cpp:389 +msgid "Command Stream" +msgstr "Strumień komend" + +#: src/gui/exportOptions.cpp:393 +msgid "DMF" +msgstr "" + +#: src/gui/exportOptions.cpp:422 +msgid "congratulations! you've unlocked a secret panel." +msgstr "gratulacje! odkryłeś tajny panel." + +#: src/gui/exportOptions.cpp:423 +msgid "Toggle hidden systems" +msgstr "Włącz ukryhte systemy" + +#: src/gui/exportOptions.cpp:427 +msgid "Toggle all instrument types" +msgstr "Włącz wszystkie typy instrumentów" + +#: src/gui/exportOptions.cpp:431 +msgid "Set pitch linearity to Partial" +msgstr "Ustaw częściową liniowość wysokości dźwięku" + +#: src/gui/exportOptions.cpp:435 +msgid "Enable multi-threading settings" +msgstr "Włącz ustawienia wielo-wątkowości" + +#: src/gui/exportOptions.cpp:439 +msgid "Set fat to max" +msgstr "Ustaw poizom tłuszczu na maks." + +#: src/gui/exportOptions.cpp:446 +msgid "Set muscle and fat to zero" +msgstr "Pozbądź się wszystkich mięśni i tłuszczu" + +#: src/gui/exportOptions.cpp:453 +msgid "Tell tildearrow this must be a mistake" +msgstr "Powiedz tildearrowowi, że to musi być błąd" + +#: src/gui/exportOptions.cpp:454 +msgid "" +"yeah, it's a bug. write a bug report in the GitHub page and tell me how did " +"you get here." +msgstr "" +"Tak, to błąd. Wypełnij ticket na githubie i powiedz mi, jak się tu dostałeś." + +#: src/gui/speed.cpp:32 src/gui/speed.cpp:102 src/gui/editControls.cpp:532 +#: src/gui/sysConf.cpp:2148 src/gui/guiConst.cpp:232 src/gui/guiConst.cpp:581 +#: src/gui/insEdit.cpp:2028 src/gui/insEdit.cpp:5693 src/gui/insEdit.cpp:6885 +msgid "Speed" +msgstr "Prędkość" + +#: src/gui/speed.cpp:41 +msgid "Base Tempo##TempoOrHz" +msgstr "Tempo bazowe##TempoOrHz" + +#: src/gui/speed.cpp:41 +msgid "Tick Rate##TempoOrHz" +msgstr "Częstotliwość odświeżania##TempoOrHz" + +#: src/gui/speed.cpp:46 +msgid "click to display tick rate" +msgstr "kliknij aby wyświetlić częstotliwość odświeżania" + +#: src/gui/speed.cpp:48 +msgid "click to display base tempo" +msgstr "kliknuj aby wyświetlić tempo bazowe" + +#: src/gui/speed.cpp:80 +msgid "Groove" +msgstr "Wzór rytmu" + +#: src/gui/speed.cpp:87 +msgid "click for one speed" +msgstr "nnaciśnij, aby wyświetlić jedną prędkość" + +#: src/gui/speed.cpp:90 +msgid "Speeds" +msgstr "Prędkości" + +#: src/gui/speed.cpp:99 +msgid "click for groove pattern" +msgstr "naciśnij, aby wyświetlić wzory rytmu" + +#: src/gui/speed.cpp:110 +msgid "click for two (alternating) speeds" +msgstr "naciśnij, aby wyświetlić dwie (naprzemienne) prędkości" + +#: src/gui/speed.cpp:168 +msgid "Virtual Tempo" +msgstr "Wirtualne tempo" + +#: src/gui/speed.cpp:177 +msgid "Numerator" +msgstr "Licznik" + +#: src/gui/speed.cpp:187 +msgid "Denominator (set to base tempo)" +msgstr "Mianownik (ustaw na równe tempu podstawowemu)" + +#: src/gui/speed.cpp:193 +msgid "Divider" +msgstr "Dzielnik" + +#: src/gui/speed.cpp:208 +msgid "Highlight" +msgstr "Podświetlenie" + +#: src/gui/speed.cpp:231 +msgid "Pattern Length" +msgstr "Długość wzorca" + +#: src/gui/speed.cpp:245 +msgid "Song Length" +msgstr "Długość utworu" + +#: src/gui/channels.cpp:40 src/gui/editControls.cpp:446 +#: src/gui/guiConst.cpp:601 src/gui/gui.cpp:6280 +msgid "Channels" +msgstr "Ilość kanałów" + +#: src/gui/channels.cpp:49 +msgid "Pat" +msgstr "Wz." + +#: src/gui/channels.cpp:51 src/gui/editControls.cpp:550 +msgid "Osc" +msgstr "Osc." + +#: src/gui/channels.cpp:53 +msgid "Swap" +msgstr "Zamień" + +#: src/gui/channels.cpp:55 src/gui/userPresets.cpp:368 +#: src/gui/effectList.cpp:45 src/gui/subSongs.cpp:125 src/gui/settings.cpp:1060 +#: src/gui/settings.cpp:4383 src/gui/sampleEdit.cpp:195 src/gui/songInfo.cpp:40 +#: src/gui/sysManager.cpp:54 src/gui/insEdit.cpp:5288 +msgid "Name" +msgstr "Nazwa" + +#: src/gui/channels.cpp:64 +msgid "Show in pattern" +msgstr "Pokaż w oknie wzorców" + +#: src/gui/channels.cpp:71 +msgid "Show in per-channel oscilloscope" +msgstr "Pokaż w oknie oscyloskopu dla poszczególnych kanałów" + +#: src/gui/channels.cpp:82 +#, c-format +msgid "" +"%s #%d\n" +"(drag to swap channels)" +msgstr "" +"%s #%d\n" +"(przeciągnij by zamienić miejscami kanały)" + +#: src/gui/commandPalette.cpp:51 src/gui/sysPicker.cpp:35 +#: src/gui/newSong.cpp:133 +msgid "Search..." +msgstr "Wyszukuj..." + +#: src/gui/commandPalette.cpp:54 +msgid "Search recent files..." +msgstr "Wyszukuj w ostatnio otwartych..." + +#: src/gui/commandPalette.cpp:57 +msgid "Search instruments..." +msgstr "Wyszukuj instrumenty..." + +#: src/gui/commandPalette.cpp:60 +msgid "Search samples..." +msgstr "Wyszukuj sample..." + +#: src/gui/commandPalette.cpp:63 +msgid "Search instruments (to change to)..." +msgstr "Wyszukuj instrumenty (aby zmienić na)..." + +#: src/gui/commandPalette.cpp:66 +msgid "Search chip (to add)..." +msgstr "Wyszukuj układ (aby dodać)..." + +#: src/gui/commandPalette.cpp:93 src/gui/commandPalette.cpp:167 +msgid "- None -" +msgstr "- Brak -" + +#: src/gui/commandPalette.cpp:123 src/gui/commandPalette.cpp:179 +#: src/gui/commandPalette.cpp:241 +msgid "invalid command palette type" +msgstr "niepoprawny typ palety komend" + +#: src/gui/regView.cpp:30 src/gui/guiConst.cpp:604 +msgid "Register View" +msgstr "Podgląd rejestrów" + +#: src/gui/regView.cpp:38 +msgid "- no register pool available" +msgstr "- lista rejestrów niedostępna" + +#: src/gui/log.cpp:25 src/gui/effectList.cpp:84 +msgid "ERROR" +msgstr "BŁĄD" + +#: src/gui/log.cpp:26 +msgid "warning" +msgstr "ostrzeżenie" + +#: src/gui/log.cpp:27 +msgid "info" +msgstr "info" + +#: src/gui/log.cpp:28 src/gui/gui.cpp:4513 +msgid "debug" +msgstr "debugowanie" + +#: src/gui/log.cpp:29 +msgid "trace" +msgstr "szczegóły" + +#: src/gui/log.cpp:47 src/gui/settings.cpp:4243 src/gui/guiConst.cpp:605 +msgid "Log Viewer" +msgstr "Podgląd logów" + +#: src/gui/log.cpp:48 src/gui/editControls.cpp:750 src/gui/editControls.cpp:883 +#: src/gui/editControls.cpp:1000 +msgid "Follow" +msgstr "Podążaj" + +#: src/gui/log.cpp:50 src/gui/waveEdit.cpp:681 src/gui/insEdit.cpp:50 +msgid "Level" +msgstr "Głośność" + +#: src/gui/log.cpp:68 +msgid "time" +msgstr "godzina" + +#: src/gui/log.cpp:70 +msgid "level" +msgstr "poziom" + +#: src/gui/log.cpp:72 +msgid "message" +msgstr "wiadomość" + +#: src/gui/pattern.cpp:433 src/gui/editControls.cpp:421 +#: src/gui/editControls.cpp:754 src/gui/editControls.cpp:887 +#: src/gui/editControls.cpp:1015 src/gui/settings.cpp:2344 +#: src/gui/settings.cpp:3297 src/gui/settings.cpp:4100 +#: src/gui/findReplace.cpp:794 src/gui/guiConst.cpp:582 src/gui/gui.cpp:5899 +msgid "Pattern" +msgstr "Wzorzec" + +#: src/gui/pattern.cpp:468 +msgid "there aren't any channels to show." +msgstr "brak kanałów do wyświetlenia." + +#: src/gui/pattern.cpp:492 +msgid "click for pattern options (effect columns/pattern names/visualizer)" +msgstr "" +"naciśnij, aby otworzyć menu ustawień (kolumny efektów/nazwy wzorców/" +"wizualizator efektów)" + +#: src/gui/pattern.cpp:504 +msgid "Options:" +msgstr "Opcje:" + +#: src/gui/pattern.cpp:506 +msgid "Effect columns/collapse" +msgstr "Roszerzanie kolumn efektów" + +#: src/gui/pattern.cpp:507 +msgid "Pattern names" +msgstr "Nazwy wzorców" + +#: src/gui/pattern.cpp:508 +msgid "Channel group hints" +msgstr "Wskazówki dotyczące grupowania kanałów" + +#: src/gui/pattern.cpp:509 +msgid "Visualizer" +msgstr "Wizualizator" + +#: src/gui/pattern.cpp:517 +msgid "Channel status:" +msgstr "Status kanału:" + +#: src/gui/pattern.cpp:519 +msgid "No##_PCS0" +msgstr "Nie" + +#: src/gui/pattern.cpp:522 +msgid "Yes##_PCS1" +msgstr "Tak" + +#: src/gui/pattern.cpp:1420 src/gui/pattern.cpp:1452 +msgid "WARNING!!" +msgstr "UWAGA!!!" + +#: src/gui/pattern.cpp:1422 src/gui/pattern.cpp:1459 +msgid "this instrument cannot be previewed because" +msgstr "ten instrument ne może zostać użyty z powodu:" + +#: src/gui/pattern.cpp:1423 src/gui/pattern.cpp:1466 +msgid "none of the chips can play it" +msgstr "żaden układ nie jest w stanie tego zagrać" + +#: src/gui/pattern.cpp:1424 src/gui/pattern.cpp:1473 +msgid "your instrument is in peril!! be careful..." +msgstr "twój instrument jest w niebezpieczeństwie!!! bądź ostrożny!..." + +#: src/gui/osc.cpp:169 src/gui/settings.cpp:3710 src/gui/settings.cpp:3937 +msgid "Oscilloscope" +msgstr "Oscyloskop" + +#: src/gui/osc.cpp:176 +#, c-format +msgid "zoom: %.2fx (%.1fdB)" +msgstr "powiększenie: %.2fx (%.1f dB)" + +#: src/gui/osc.cpp:187 +#, c-format +msgid "window size: %.1fms" +msgstr "rozmiar okna: %.1f ms" + +#: src/gui/osc.cpp:385 +msgid "(-Infinity)dB" +msgstr "(-nieskończoność) dB" + +#: src/gui/debugWindow.cpp:66 src/gui/editControls.cpp:610 +msgid "Debug" +msgstr "Menu debugowania" + +#: src/gui/debugWindow.cpp:663 +msgid "This is a language test." +msgstr "To jest test systemu tłumaczeń." + +#: src/gui/debugWindow.cpp:664 +msgid "This is another language test." +msgstr "To jest kolejny test systemu tłumaczeń." + +#: src/gui/debugWindow.cpp:720 +#, c-format +msgid "%d apple" +msgid_plural "%d apples" +msgstr[0] "%d jabłko" +msgstr[1] "%d jabłka" +msgstr[2] "%d jabłek" + +#: src/gui/chanOsc.cpp:32 +msgid "None (0%)" +msgstr "Brak (0%)" + +#: src/gui/chanOsc.cpp:33 +msgid "None (50%)" +msgstr "Brak (50%)" + +#: src/gui/chanOsc.cpp:34 +msgid "None (100%)" +msgstr "Brak (100%)" + +#: src/gui/chanOsc.cpp:36 +msgid "Frequency" +msgstr "Częstotliwość" + +#: src/gui/chanOsc.cpp:38 src/gui/settings.cpp:1667 src/gui/settings.cpp:3406 +#: src/gui/settings.cpp:4088 +msgid "Channel" +msgstr "Kanał" + +#: src/gui/chanOsc.cpp:39 +msgid "Brightness" +msgstr "Jasność" + +#: src/gui/chanOsc.cpp:41 +msgid "Note Trigger" +msgstr "Nowa nuta" + +#: src/gui/chanOsc.cpp:45 +msgid "Off" +msgstr "Wył." + +#: src/gui/chanOsc.cpp:46 +msgid "Mode 1" +msgstr "Tryb 1" + +#: src/gui/chanOsc.cpp:47 +msgid "Mode 2" +msgstr "Tryb 2" + +#: src/gui/chanOsc.cpp:48 +msgid "Mode 3" +msgstr "Tryb 3" + +#: src/gui/chanOsc.cpp:135 src/gui/guiConst.cpp:607 +msgid "Oscilloscope (per-channel)" +msgstr "Oscyloskop (dla poszczególnych kanałów)" + +#: src/gui/chanOsc.cpp:143 +msgid "Columns" +msgstr "Kolumny" + +#: src/gui/chanOsc.cpp:152 +msgid "Size (ms)" +msgstr "Rozmiar (w ms)" + +#: src/gui/chanOsc.cpp:163 +msgid "Automatic columns" +msgstr "Automatyczna ilość kolumn" + +#: src/gui/chanOsc.cpp:177 +msgid "Center waveform" +msgstr "Centruj falę" + +#: src/gui/chanOsc.cpp:183 +msgid "Randomize phase on note" +msgstr "Losowa faza przy nowej nucie" + +#: src/gui/chanOsc.cpp:189 +msgid "Amplitude" +msgstr "Amplituda" + +#: src/gui/chanOsc.cpp:199 src/gui/settings.cpp:3747 +msgid "Line size" +msgstr "Grubość linii" + +#: src/gui/chanOsc.cpp:211 +msgid "Gradient" +msgstr "Gradient" + +#: src/gui/chanOsc.cpp:218 +msgid "error while creating gradient texture!" +msgstr "błąd podczas tworzenia tekstury gradientu!" + +#: src/gui/chanOsc.cpp:236 +msgid "error while updating gradient texture!" +msgstr "błąd podczas odświeżania tekstury gradientu!" + +#: src/gui/chanOsc.cpp:292 src/gui/chanOsc.cpp:348 src/gui/settings.cpp:3793 +msgid "Color" +msgstr "Kolor" + +#: src/gui/chanOsc.cpp:296 +msgid "Distance" +msgstr "Dystans" + +#: src/gui/chanOsc.cpp:305 +msgid "Spread" +msgstr "Rozmycie" + +#: src/gui/chanOsc.cpp:314 src/gui/userPresets.cpp:370 src/gui/subSongs.cpp:121 +#: src/gui/settings.cpp:2281 src/gui/sysManager.cpp:124 +msgid "Remove" +msgstr "Usuń" + +#: src/gui/chanOsc.cpp:338 src/gui/settings.cpp:3885 src/gui/settings.cpp:4165 +#: src/gui/settings.cpp:4192 src/gui/settings.cpp:4218 +msgid "Background" +msgstr "Kolor tła" + +#: src/gui/chanOsc.cpp:341 +msgid "X Axis##AxisX" +msgstr "Oś X##AxisX" + +#: src/gui/chanOsc.cpp:342 +msgid "Y Axis##AxisY" +msgstr "Oś Y##AxisY" + +#: src/gui/chanOsc.cpp:352 +msgid "Text format:" +msgstr "Formatowanie tekstu:" + +#: src/gui/chanOsc.cpp:358 +msgid "" +"format guide:\n" +"- %c: channel name\n" +"- %C: channel short name\n" +"- %d: channel number (starting from 0)\n" +"- %D: channel number (starting from 1)\n" +"- %n: channel note\n" +"- %i: instrument name\n" +"- %I: instrument number (decimal)\n" +"- %x: instrument number (hex)\n" +"- %s: chip name\n" +"- %p: chip part number\n" +"- %S: chip ID\n" +"- %v: volume (decimal)\n" +"- %V: volume (percentage)\n" +"- %b: volume (hex)\n" +"- %l: new line\n" +"- %%: percent sign" +msgstr "" +"instrukcja formatowania:\n" +"- %c: nazwa kanału\n" +"- %C: krotka nazwa kanału\n" +"- %d: numer kanału (zaczynając od 0)\n" +"- %D: numer kanału (zaczynając od 1)\n" +"- %n: nuta kanału\n" +"- %i: nazwa instrumentu\n" +"- %I: numer instrumentu (dziesietny)\n" +"- %x: numer instrumentu (szesnastkowy)\n" +"- %s: nazwa ukladu\n" +"- %p: numer wewnetrzny ukladu\n" +"- %S: ID ukladu\n" +"- %v: Głośność (dziesiętna)\n" +"- %V: Głośność (w procentach)\n" +"- %b: Głośność (szesnastkowa)\n" +"- %l: nowy wiersz\n" +"- %%: znak procenta" + +#: src/gui/chanOsc.cpp:380 +msgid "Text color" +msgstr "Kolor tekstu" + +#: src/gui/chanOsc.cpp:382 src/gui/xyOsc.cpp:80 src/gui/settings.cpp:6672 +#: src/gui/tutorial.cpp:689 src/gui/gui.cpp:5639 src/gui/gui.cpp:6055 +#: src/gui/gui.cpp:6223 src/gui/gui.cpp:6322 src/gui/gui.cpp:6371 +msgid "OK" +msgstr "OK" + +#: src/gui/chanOsc.cpp:400 +msgid "creating chan osc work pool" +msgstr "" + +#: src/gui/chanOsc.cpp:429 +#, c-format +msgid "creating FFT plan for channel %d" +msgstr "" + +#: src/gui/chanOsc.cpp:436 +msgid "failed to create plan!" +msgstr "" + +#: src/gui/chanOsc.cpp:438 +msgid "failed to create inverse plan!" +msgstr "" + +#: src/gui/chanOsc.cpp:440 +msgid "failed to create FFT buffers" +msgstr "" + +#: src/gui/chanOsc.cpp:585 +msgid "Error!" +msgstr "Błąd!" + +#: src/gui/editControls.cpp:47 src/gui/sampleEdit.cpp:1736 src/gui/gui.cpp:2733 +#: src/gui/insEdit.cpp:363 +msgid "cut" +msgstr "wytnij" + +#: src/gui/editControls.cpp:48 src/gui/sampleEdit.cpp:1740 src/gui/gui.cpp:2734 +#: src/gui/insEdit.cpp:7538 +msgid "copy" +msgstr "kopiuj" + +#: src/gui/editControls.cpp:49 src/gui/sampleEdit.cpp:1744 src/gui/gui.cpp:2735 +#: src/gui/gui.cpp:2788 src/gui/insEdit.cpp:7543 +msgid "paste" +msgstr "wklej" + +#: src/gui/editControls.cpp:51 +msgid "" +"select\n" +"all" +msgstr "" + +#: src/gui/editControls.cpp:52 +msgid "piano" +msgstr "pianino" + +#: src/gui/editControls.cpp:53 src/gui/gui.cpp:4429 +msgid "undo" +msgstr "cofnij" + +#: src/gui/editControls.cpp:54 src/gui/gui.cpp:4430 +msgid "redo" +msgstr "ponów" + +#: src/gui/editControls.cpp:57 +msgid "" +"paste\n" +"mix" +msgstr "" + +#: src/gui/editControls.cpp:58 +msgid "" +"paste\n" +"mix bg" +msgstr "" + +#: src/gui/editControls.cpp:59 +msgid "" +"paste\n" +"ins" +msgstr "" + +#: src/gui/editControls.cpp:60 +msgid "" +"paste\n" +"ins bg" +msgstr "" + +#: src/gui/editControls.cpp:61 +msgid "" +"paste\n" +"flood" +msgstr "" + +#: src/gui/editControls.cpp:62 +msgid "" +"paste\n" +"overflow" +msgstr "" + +#: src/gui/editControls.cpp:63 +msgid "" +"transpose\n" +"notes" +msgstr "" + +#: src/gui/editControls.cpp:64 +msgid "" +"transpose\n" +"values" +msgstr "" + +#: src/gui/editControls.cpp:67 +msgid "" +"change\n" +"ins" +msgstr "" + +#: src/gui/editControls.cpp:68 +msgid "" +"find/\n" +"replace" +msgstr "" + +#: src/gui/editControls.cpp:69 src/gui/gui.cpp:3063 +msgid "collapse" +msgstr "skroc" + +#: src/gui/editControls.cpp:70 src/gui/gui.cpp:3064 +msgid "expand" +msgstr "rozszerz" + +#: src/gui/editControls.cpp:71 src/gui/gui.cpp:2820 +msgid "flip" +msgstr "odwróć" + +#: src/gui/editControls.cpp:72 src/gui/insEdit.cpp:430 +msgid "invert" +msgstr "" + +#: src/gui/editControls.cpp:73 src/gui/gui.cpp:2800 src/gui/gui.cpp:2960 +msgid "interpolate" +msgstr "interpoluj" + +#: src/gui/editControls.cpp:74 src/gui/gui.cpp:2812 src/gui/insEdit.cpp:7610 +msgid "scale" +msgstr "skaluj" + +#: src/gui/editControls.cpp:77 src/gui/gui.cpp:2804 +msgid "fade" +msgstr "zanikaj" + +#: src/gui/editControls.cpp:78 src/gui/gui.cpp:2816 src/gui/insEdit.cpp:7639 +msgid "randomize" +msgstr "wypełnij losowymi wartościami" + +#: src/gui/editControls.cpp:79 +msgid "opmask" +msgstr "maska op." + +#: src/gui/editControls.cpp:80 +msgid "" +"scroll\n" +"mode" +msgstr "" + +#: src/gui/editControls.cpp:81 +msgid "" +"input\n" +"latch" +msgstr "" + +#: src/gui/editControls.cpp:82 +msgid "" +"set\n" +"latch" +msgstr "" + +#: src/gui/editControls.cpp:83 +msgid "" +"clear\n" +"latch" +msgstr "" + +#: src/gui/editControls.cpp:84 src/gui/findReplace.cpp:43 +#: src/gui/insEdit.cpp:7557 +msgid "clear" +msgstr "wyczyść" + +#: src/gui/editControls.cpp:333 +msgid "Mobile Controls" +msgstr "Mobilne menu ustawień" + +#: src/gui/editControls.cpp:408 +msgid "Mobile Menu" +msgstr "Menu mobilne" + +#: src/gui/editControls.cpp:425 src/gui/editControls.cpp:752 +#: src/gui/editControls.cpp:885 src/gui/editControls.cpp:1007 +#: src/gui/settings.cpp:2485 src/gui/settings.cpp:3271 +#: src/gui/settings.cpp:3975 src/gui/orders.cpp:232 src/gui/guiConst.cpp:577 +#: src/gui/gui.cpp:5888 +msgid "Orders" +msgstr "Matryca wzorców" + +#: src/gui/editControls.cpp:429 src/gui/findReplace.cpp:669 +#: src/gui/findReplace.cpp:914 +msgid "Ins" +msgstr "Instr." + +#: src/gui/editControls.cpp:442 src/gui/findReplace.cpp:788 +#: src/gui/guiConst.cpp:230 +msgid "Song" +msgstr "Utwór" + +#: src/gui/editControls.cpp:450 src/gui/sampleEdit.cpp:494 +msgid "Chips" +msgstr "Układy" + +#: src/gui/editControls.cpp:458 src/gui/settings.cpp:2117 +#: src/gui/settings.cpp:3934 src/gui/settings.cpp:4018 +#: src/gui/compatFlags.cpp:319 +msgid "Other" +msgstr "Inne" + +#: src/gui/editControls.cpp:487 src/gui/guiConst.cpp:531 +msgid "New" +msgstr "Nowy" + +#: src/gui/editControls.cpp:491 src/gui/doAction.cpp:38 src/gui/gui.cpp:4194 +msgid "Unsaved changes! Save changes before creating a new song?" +msgstr "Niezapisane zmiany! Zapisać zmiany przed srtworzeniem nowego utworu?" + +#: src/gui/editControls.cpp:507 +msgid "Save as..." +msgstr "Zapisz jako..." + +#: src/gui/editControls.cpp:516 src/gui/gui.cpp:1680 +msgid "Restore Backup" +msgstr "Wczytaj kopię zapasową" + +#: src/gui/editControls.cpp:524 +msgid "Song Info" +msgstr "O utworze" + +#: src/gui/editControls.cpp:528 src/gui/subSongs.cpp:17 +#: src/gui/guiConst.cpp:608 +msgid "Subsongs" +msgstr "Podutwory" + +#: src/gui/editControls.cpp:541 +msgid "Channels here..." +msgstr "Tutaj są kanały..." + +#: src/gui/editControls.cpp:544 +msgid "Chips here..." +msgstr "Tutaj są układy..." + +#: src/gui/editControls.cpp:547 +msgid "What the hell..." +msgstr "Co do kurwy..." + +#: src/gui/editControls.cpp:554 +msgid "ChanOsc" +msgstr "Osc. na kanał" + +#: src/gui/editControls.cpp:558 +msgid "RegView" +msgstr "Rejestry" + +#: src/gui/editControls.cpp:562 +msgid "Stats" +msgstr "Statsy" + +#: src/gui/editControls.cpp:566 src/gui/guiConst.cpp:611 src/gui/grooves.cpp:35 +msgid "Grooves" +msgstr "Wzory rytmów" + +#: src/gui/editControls.cpp:569 +msgid "Compat Flags" +msgstr "Flagi kompat." + +#: src/gui/editControls.cpp:573 +msgid "XYOsc" +msgstr "Osc. XY" + +#: src/gui/editControls.cpp:577 +msgid "Meter" +msgstr "Miernik" + +#: src/gui/editControls.cpp:581 +msgid "Memory" +msgstr "Pamięć" + +#: src/gui/editControls.cpp:585 +msgid "CV" +msgstr "CV" + +#: src/gui/editControls.cpp:589 +msgid "Presets" +msgstr "Presety" + +#: src/gui/editControls.cpp:593 +msgid "PatManager" +msgstr "Men. wzorców" + +#: src/gui/editControls.cpp:599 src/gui/guiConst.cpp:564 +msgid "Panic" +msgstr "Panika" + +#: src/gui/editControls.cpp:601 src/gui/settings.cpp:560 +#: src/gui/guiConst.cpp:589 src/gui/guiConst.cpp:591 src/gui/gui.cpp:4439 +msgid "Settings" +msgstr "Ustawienia" + +#: src/gui/editControls.cpp:606 +msgid "Log" +msgstr "Logi" + +#: src/gui/editControls.cpp:614 src/gui/guiConst.cpp:587 +msgid "About" +msgstr "O programie" + +#: src/gui/editControls.cpp:619 +msgid "Switch to Desktop Mode" +msgstr "Przełącz na tryb komputerowy" + +#: src/gui/editControls.cpp:673 src/gui/editControls.cpp:784 +#: src/gui/editControls.cpp:904 +msgid "Play/Edit Controls" +msgstr "Sterowanie odtwarzaniem/edycją" + +#: src/gui/editControls.cpp:681 src/gui/editControls.cpp:842 +#: src/gui/editControls.cpp:959 src/gui/editControls.cpp:1125 +msgid "Octave" +msgstr "Oktawa" + +#: src/gui/editControls.cpp:698 src/gui/editControls.cpp:857 +msgid "Coarse Step" +msgstr "Większy krok edycji" + +#: src/gui/editControls.cpp:698 src/gui/editControls.cpp:857 +msgid "Edit Step" +msgstr "Krok edycji" + +#: src/gui/editControls.cpp:731 src/gui/editControls.cpp:797 +#: src/gui/editControls.cpp:911 src/gui/editControls.cpp:1048 +#: src/gui/guiConst.cpp:545 +msgid "Play" +msgstr "Odtwarzaj" + +#: src/gui/editControls.cpp:739 src/gui/editControls.cpp:789 +#: src/gui/editControls.cpp:918 src/gui/editControls.cpp:1040 +#: src/gui/guiConst.cpp:546 +msgid "Stop" +msgstr "Stop" + +#: src/gui/editControls.cpp:742 src/gui/editControls.cpp:826 +#: src/gui/editControls.cpp:943 src/gui/editControls.cpp:1082 +#: src/gui/gui.cpp:4426 +msgid "Edit" +msgstr "Edytuj" + +#: src/gui/editControls.cpp:757 src/gui/editControls.cpp:816 +#: src/gui/editControls.cpp:934 src/gui/editControls.cpp:1104 +msgid "Repeat pattern" +msgstr "Zapętl wzorzec" + +#: src/gui/editControls.cpp:766 src/gui/editControls.cpp:806 +#: src/gui/editControls.cpp:925 src/gui/editControls.cpp:1073 +msgid "Step one row" +msgstr "Zrób jeden krok we wzorcu" + +#: src/gui/editControls.cpp:771 src/gui/editControls.cpp:891 +#: src/gui/editControls.cpp:1020 src/gui/editControls.cpp:1110 +msgid "Poly##PolyInput" +msgstr "Polifonia##PolyInput" + +#: src/gui/editControls.cpp:771 src/gui/editControls.cpp:891 +#: src/gui/editControls.cpp:1020 src/gui/editControls.cpp:1110 +msgid "Mono##PolyInput" +msgstr "Mono##PolyInput" + +#: src/gui/editControls.cpp:776 src/gui/editControls.cpp:896 +#: src/gui/editControls.cpp:1025 src/gui/editControls.cpp:1115 +msgid "Polyphony" +msgstr "Polifonia podglądu" + +#: src/gui/editControls.cpp:957 +msgid "Oct." +msgstr "Okt." + +#: src/gui/editControls.cpp:974 src/gui/editControls.cpp:1142 +msgid "Coarse" +msgstr "Większy krok" + +#: src/gui/editControls.cpp:974 src/gui/editControls.cpp:1142 +msgid "Step" +msgstr "Krok" + +#: src/gui/editControls.cpp:998 +msgid "Foll." +msgstr "Pod." + +#: src/gui/editControls.cpp:1003 +msgid "Ord##FollowOrders" +msgstr "Matr.##FollowOrders" + +#: src/gui/editControls.cpp:1011 +msgid "Pat##FollowPattern" +msgstr "Wz.##FollowPattern" + +#: src/gui/editControls.cpp:1033 +msgid "Play Controls" +msgstr "Sterowanie odtwarzaniem" + +#: src/gui/editControls.cpp:1057 +msgid "Play from the beginning of this pattern" +msgstr "Odtwarzaj od początku wzorca" + +#: src/gui/editControls.cpp:1065 +msgid "Repeat from the beginning of this pattern" +msgstr "Zapętlaj od początku tego wzorca" + +#: src/gui/editControls.cpp:1122 src/gui/guiConst.cpp:576 +msgid "Edit Controls" +msgstr "Edycja" + +#: src/gui/editControls.cpp:1169 src/gui/guiConst.cpp:560 +msgid "Follow orders" +msgstr "Podążaj za matrycą wzorców" + +#: src/gui/editControls.cpp:1170 src/gui/guiConst.cpp:561 +msgid "Follow pattern" +msgstr "Podążaj za wzorcem" + +#: src/gui/songNotes.cpp:32 src/gui/guiConst.cpp:600 +msgid "Song Comments" +msgstr "Komentarze do utworu" + +#: src/gui/util.cpp:93 +msgid "" +msgstr "" + +#: src/gui/util.cpp:97 +msgid "Ctrl-" +msgstr "" + +#: src/gui/util.cpp:99 +msgid "Alt-" +msgstr "" + +#: src/gui/util.cpp:100 +msgid "Shift-" +msgstr "" + +#: src/gui/stats.cpp:31 src/gui/guiConst.cpp:597 +msgid "Statistics" +msgstr "Statystyki" + +#: src/gui/stats.cpp:36 +msgid "Audio load" +msgstr "Obciążenie audio" + +#: src/gui/xyOsc.cpp:40 src/gui/guiConst.cpp:612 +msgid "Oscilloscope (X-Y)" +msgstr "Oscyloskop (X-Y)" + +#: src/gui/xyOsc.cpp:45 +msgid "X Channel" +msgstr "Kanał osi X" + +#: src/gui/xyOsc.cpp:51 +msgid "Invert##X" +msgstr "Odwróć" + +#: src/gui/xyOsc.cpp:52 +msgid "Y Channel" +msgstr "Kanał osi Y" + +#: src/gui/xyOsc.cpp:58 +msgid "Invert##Y" +msgstr "Odwróć" + +#: src/gui/xyOsc.cpp:59 src/gui/sampleEdit.cpp:1353 +msgid "Zoom" +msgstr "Powiększ" + +#: src/gui/xyOsc.cpp:71 +msgid "Decay Time (ms)" +msgstr "Czas opadania (ms)" + +#: src/gui/xyOsc.cpp:74 +msgid "Intensity" +msgstr "Natężenie" + +#: src/gui/xyOsc.cpp:77 +msgid "Line Thickness" +msgstr "Grubość linii" + +#: src/gui/xyOsc.cpp:213 +msgid "(-Infinity)dB,(-Infinity)dB" +msgstr "(-Nieskończoność) dB,(-Nieskończoność) dB" + +#: src/gui/xyOsc.cpp:215 +#, c-format +msgid "(-Infinity)dB,%.1fdB" +msgstr "(-Nieskończoność) dB,%.1f db" + +#: src/gui/xyOsc.cpp:217 +#, c-format +msgid "%.1fdB,(-Infinity)dB" +msgstr "%.1f dB,(-Nieskończoność) dB" + +#: src/gui/xyOsc.cpp:219 +#, c-format +msgid "%.1fdB,%.1fdB" +msgstr "" + +#: src/gui/sysConf.cpp:49 src/gui/sysConf.cpp:121 src/gui/sysConf.cpp:486 +#: src/gui/sysConf.cpp:604 src/gui/sysConf.cpp:647 src/gui/sysConf.cpp:684 +#: src/gui/sysConf.cpp:843 src/gui/sysConf.cpp:1098 src/gui/sysConf.cpp:1181 +#: src/gui/sysConf.cpp:1220 src/gui/sysConf.cpp:1294 src/gui/sysConf.cpp:1380 +#: src/gui/sysConf.cpp:1444 src/gui/sysConf.cpp:1482 src/gui/sysConf.cpp:1572 +#: src/gui/sysConf.cpp:1668 src/gui/sysConf.cpp:1716 src/gui/sysConf.cpp:1757 +#: src/gui/sysConf.cpp:1810 src/gui/sysConf.cpp:2284 src/gui/sysConf.cpp:2307 +msgid "Clock rate:" +msgstr "Taktowanie zegara:" + +#: src/gui/sysConf.cpp:73 src/gui/sysConf.cpp:152 src/gui/sysConf.cpp:911 +#: src/gui/sysConf.cpp:1459 src/gui/sysConf.cpp:1783 +msgid "Chip type:" +msgstr "Typ układu:" + +#: src/gui/sysConf.cpp:75 +msgid "YM3438 (9-bit DAC)" +msgstr "YM3438 (9-bitowy DAC)" + +#: src/gui/sysConf.cpp:79 +msgid "YM2612 (9-bit DAC with distortion)" +msgstr "YM2612 (9-bitowy DAC ze zniekształceniami)" + +#: src/gui/sysConf.cpp:83 +msgid "YMF276 (external DAC)" +msgstr "YMF276 (zewnętrzny DAC)" + +#: src/gui/sysConf.cpp:90 src/gui/sysConf.cpp:804 src/gui/sysConf.cpp:1350 +#: src/gui/sysConf.cpp:1420 +msgid "Disable ExtCh FM macros (compatibility)" +msgstr "Wyłącz makra rozszerzonych kanałów FM (dla kompatybilności)" + +#: src/gui/sysConf.cpp:93 src/gui/sysConf.cpp:807 src/gui/sysConf.cpp:1353 +#: src/gui/sysConf.cpp:1423 +msgid "Ins change in ExtCh operator 2-4 affects FB (compatibility)" +msgstr "" +"Zmiana instr. na operatorach 2-4 rozsz. kanału ma wpływ na FB (dla " +"kompatybilności)" + +#: src/gui/sysConf.cpp:99 +msgid "Modified sine wave (joke)" +msgstr "Zmodyfikowana sinusoida (żart)" + +#: src/gui/sysConf.cpp:123 src/gui/sysConf.cpp:1296 src/gui/sysConf.cpp:1718 +#: src/gui/sysConf.cpp:2286 +msgid "3.58MHz (NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:127 +msgid "3.55MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:131 +msgid "4MHz (BBC Micro)" +msgstr "" + +#: src/gui/sysConf.cpp:135 +msgid "1.79MHz (Half NTSC)" +msgstr "1.79 MHz (połowa NTSC)" + +#: src/gui/sysConf.cpp:139 +msgid "3MHz (Exed Exes)" +msgstr "" + +#: src/gui/sysConf.cpp:143 +msgid "2MHz (Sega System 1)" +msgstr "" + +#: src/gui/sysConf.cpp:147 +msgid "447KHz (TI-99/4A)" +msgstr "" + +#: src/gui/sysConf.cpp:154 +msgid "Sega VDP/Master System" +msgstr "" + +#: src/gui/sysConf.cpp:162 +msgid "TI SN76489 with Atari-like short noise" +msgstr "TI SN76489 z krótkim szumem podobnym do Atari" + +#: src/gui/sysConf.cpp:166 +msgid "Game Gear" +msgstr "" + +#: src/gui/sysConf.cpp:170 +msgid "TI SN76489A" +msgstr "" + +#: src/gui/sysConf.cpp:174 +msgid "TI SN76496" +msgstr "" + +#: src/gui/sysConf.cpp:178 +msgid "NCR 8496" +msgstr "" + +#: src/gui/sysConf.cpp:182 +msgid "Tandy PSSJ 3-voice sound" +msgstr "Tandy PSSJ trzykanałowy syntezator dzwieku" + +#: src/gui/sysConf.cpp:186 +msgid "TI SN94624" +msgstr "" + +#: src/gui/sysConf.cpp:190 +msgid "TI SN76494" +msgstr "" + +#: src/gui/sysConf.cpp:196 +msgid "Disable noise period change phase reset" +msgstr "Wyłącz reset fazy podczas zmiany okresu szumu" + +#: src/gui/sysConf.cpp:200 src/gui/sysConf.cpp:2190 +msgid "Disable easy period to note mapping on upper octaves" +msgstr "Wyłącz uproszczone mapowanie okresu na nutę na wyższych oktawach" + +#: src/gui/sysConf.cpp:219 src/gui/sysConf.cpp:583 +msgid "Pseudo-PAL" +msgstr "Pseudo-PAL" + +#: src/gui/sysConf.cpp:222 src/gui/sysConf.cpp:342 +msgid "Disable anti-click" +msgstr "Wyłącz anty-stukanie" + +#: src/gui/sysConf.cpp:225 src/gui/sysConf.cpp:345 +msgid "Chip revision:" +msgstr "Rewizja układu:" + +#: src/gui/sysConf.cpp:227 +msgid "HuC6280 (original)" +msgstr "HuC6280 (oryginalny)" + +#: src/gui/sysConf.cpp:231 +msgid "HuC6280A (SuperGrafx)" +msgstr "" + +#: src/gui/sysConf.cpp:257 +msgid "CPU rate:" +msgstr "Taktowanie CPU:" + +#: src/gui/sysConf.cpp:259 +msgid "6.18MHz (NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:263 +msgid "5.95MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:268 +msgid "Sample memory:" +msgstr "Pamięć na sample:" + +#: src/gui/sysConf.cpp:270 +msgid "8K (rev A/B/E)" +msgstr "8kB (wersje A/B/E)" + +#: src/gui/sysConf.cpp:274 +msgid "64K (rev D/F)" +msgstr "64kB (wersje D/F)" + +#: src/gui/sysConf.cpp:279 +msgid "DAC resolution:" +msgstr "Rozdzielczość DAC:" + +#: src/gui/sysConf.cpp:281 +msgid "16-bit (rev A/B/D/F)" +msgstr "16-bit (wersje A/B/D/F)" + +#: src/gui/sysConf.cpp:285 +msgid "8-bit + TDM (rev C/E)" +msgstr "8-bit + multipleksowanie z podziałem czasu (wersje C/E)" + +#: src/gui/sysConf.cpp:290 src/gui/sysConf.cpp:1931 +msgid "Enable echo" +msgstr "Włącz echo" + +#: src/gui/sysConf.cpp:293 +msgid "Swap echo channels" +msgstr "Zamień miejscami kanały echo" + +#: src/gui/sysConf.cpp:296 src/gui/sysConf.cpp:1151 +msgid "Echo delay:" +msgstr "Opóźnienie echo:" + +#: src/gui/sysConf.cpp:302 +msgid "Echo resolution:" +msgstr "Rozdzielczość echo:" + +#: src/gui/sysConf.cpp:308 src/gui/sysConf.cpp:1159 +msgid "Echo feedback:" +msgstr "Feedback echo:" + +#: src/gui/sysConf.cpp:314 src/gui/sysConf.cpp:1967 +msgid "Echo volume:" +msgstr "Głośność echo:" + +#: src/gui/sysConf.cpp:347 +msgid "Original (DMG)" +msgstr "Oryginalny (DMG)" + +#: src/gui/sysConf.cpp:351 +msgid "Game Boy Color (rev C)" +msgstr "Game Boy Color (wersja C)" + +#: src/gui/sysConf.cpp:355 +msgid "Game Boy Color (rev E)" +msgstr "Game Boy Color (wersja E)" + +#: src/gui/sysConf.cpp:359 +msgid "Game Boy Advance" +msgstr "" + +#: src/gui/sysConf.cpp:364 +msgid "Wave channel orientation:" +msgstr "Orientacja kanału syntezy tablicowej" + +#: src/gui/sysConf.cpp:367 src/gui/compatFlags.cpp:298 src/gui/gui.cpp:6067 +#: src/gui/insEdit.cpp:217 src/gui/insEdit.cpp:231 +msgid "Normal" +msgstr "Normalne" + +#: src/gui/sysConf.cpp:371 +msgid "Inverted" +msgstr "Odwrócona" + +#: src/gui/sysConf.cpp:378 +msgid "Exact data (inverted)" +msgstr "Te same dane (odwrócona)" + +#: src/gui/sysConf.cpp:382 +msgid "Exact output (normal)" +msgstr "Ten sam dźwięk (normalna)" + +#: src/gui/sysConf.cpp:388 +msgid "" +"Pretty please one more compat flag when I use arpeggio and my sound length" +msgstr "" +"Cóż, proszę o kolejną flagę kompatybilności, gdy używam arpeggio i małej " +"długości dźwięku na kanale szumu" + +#: src/gui/sysConf.cpp:405 src/gui/sysConf.cpp:438 +msgid "DAC bit depth (reduces output rate):" +msgstr "Rozdzielczość DAC (zmniejsza częstotliwość samplowania):" + +#: src/gui/sysConf.cpp:426 src/gui/sysConf.cpp:1268 src/gui/sysConf.cpp:1919 +msgid "Volume scale:" +msgstr "Głośność:" + +#: src/gui/sysConf.cpp:432 +msgid "Mix buffers (allows longer echo delay):" +msgstr "Bufory miksowania (pozwala na dłuższe opóźnienie echa):" + +#: src/gui/sysConf.cpp:444 +msgid "Channel limit:" +msgstr "Limit ilości kanałów:" + +#: src/gui/sysConf.cpp:450 +msgid "Sample rate:" +msgstr "Częstotliwość samplowania:" + +#: src/gui/sysConf.cpp:460 +#, c-format +msgid "Actual sample rate: %d Hz" +msgstr "Rzeczywista częstotliwość: %d Hz" + +#: src/gui/sysConf.cpp:462 +#, c-format +msgid "Max mixer CPU usage: %.0f%%" +msgstr "Maksymalne użycie CPU podczas miksowania: %.0f%%" + +#: src/gui/sysConf.cpp:488 +msgid "NTSC (3.58MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:492 src/gui/sysConf.cpp:557 +msgid "PAL (3.55MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:496 +msgid "Arcade (4MHz)" +msgstr "Arcade (4 MHz)" + +#: src/gui/sysConf.cpp:500 +msgid "Half NTSC (1.79MHz)" +msgstr "Połowa NTSC (1.79 MHz)" + +#: src/gui/sysConf.cpp:506 +msgid "Patch set:" +msgstr "Zestaw instrumentów:" + +#: src/gui/sysConf.cpp:528 +msgid "Ignore top/hi-hat frequency changes" +msgstr "Ignoruj zmiany częstotliwości talerzy i hi-hatów" + +#: src/gui/sysConf.cpp:531 +msgid "Apply fixed frequency to all drums at once" +msgstr "Stosuj stałą częstotliwość do wszystich instrumentów perkusyjnych" + +#: src/gui/sysConf.cpp:553 +msgid "NTSC/X16 (3.58MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:561 +msgid "X1/X68000 (4MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:567 src/gui/sysConf.cpp:587 +msgid "Broken pitch macro/slides (compatibility)" +msgstr "Uszkodzone efekty portamento i makra (kompatybilność)" + +#: src/gui/sysConf.cpp:607 src/gui/sysConf.cpp:650 src/gui/sysConf.cpp:1222 +#: src/gui/sysConf.cpp:2310 +msgid "NTSC (1.79MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:611 src/gui/sysConf.cpp:654 src/gui/sysConf.cpp:1226 +msgid "PAL (1.67MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:615 src/gui/sysConf.cpp:658 src/gui/sysConf.cpp:1230 +msgid "Dendy (1.77MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:621 +msgid "DPCM channel mode:" +msgstr "Tryb kanału DPCM:" + +#: src/gui/sysConf.cpp:624 +msgid "DPCM (muffled samples; low CPU usage)" +msgstr "DPCM (przytłumione sample, niskie zużycie CPU)" + +#: src/gui/sysConf.cpp:628 +msgid "PCM (crisp samples; high CPU usage)" +msgstr "PCM (czyste sample, wysokie zużycie CPU)" + +#: src/gui/sysConf.cpp:687 +msgid "NTSC (1.02MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:691 +msgid "PAL (0.99MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:695 +msgid "SSI 2001 (0.89MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:701 src/gui/sysConf.cpp:2320 +msgid "Global parameter priority:" +msgstr "Priorytek globalnych parametrów:" + +#: src/gui/sysConf.cpp:704 src/gui/sysConf.cpp:2323 +msgid "Left to right" +msgstr "Z lewej do prawej" + +#: src/gui/sysConf.cpp:708 src/gui/sysConf.cpp:2327 +msgid "Last used channel" +msgstr "Ostatni używany kanał" + +#: src/gui/sysConf.cpp:714 +msgid "Hard reset envelope:" +msgstr "OTwardy reset obwiedni:" + +#: src/gui/sysConf.cpp:716 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:1920 +#: src/gui/insEdit.cpp:6955 src/gui/insEdit.cpp:7481 +msgid "Attack" +msgstr "Narastanie" + +#: src/gui/sysConf.cpp:721 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:1960 +#: src/gui/insEdit.cpp:6956 src/gui/insEdit.cpp:7482 +msgid "Decay" +msgstr "Opadanie" + +#: src/gui/sysConf.cpp:726 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:1929 +#: src/gui/insEdit.cpp:6957 src/gui/insEdit.cpp:7483 +msgid "Sustain" +msgstr "Poodtrzymanie" + +#: src/gui/sysConf.cpp:731 src/gui/settings.cpp:3987 src/gui/insEdit.cpp:50 +#: src/gui/insEdit.cpp:604 src/gui/insEdit.cpp:1983 src/gui/insEdit.cpp:6958 +#: src/gui/insEdit.cpp:7484 +msgid "Release" +msgstr "Zwolnienie" + +#: src/gui/sysConf.cpp:737 +msgid "Envelope reset time:" +msgstr "Czas resetowania obwiedni:" + +#: src/gui/sysConf.cpp:747 +msgid "" +"- 0 disables envelope reset. not recommended!\n" +"- 1 may trigger SID envelope bugs.\n" +"- values that are too high may result in notes being skipped." +msgstr "" +"- 0 wyłącza reset obwiedni. nie zalecane!\n" +"- 1 może wywołać błędy obwiedni SIDa.\n" +"- zbyt wysokie wartości mogą powodować pomijanie krótkich nut." + +#: src/gui/sysConf.cpp:749 +msgid "Disable 1Exy env update (compatibility)" +msgstr "" +"Wyłącz aktualizację obwiedni podczas stosowania efektu 1Exy (kompatybilność)" + +#: src/gui/sysConf.cpp:753 +msgid "Relative duty and cutoff macros are coarse (compatibility)" +msgstr "" +"Makra szerokości fali prostokątnej i punktu odcięcia w trybie względnym mają " +"niższą rozdzielczość (kompatybilność)" + +#: src/gui/sysConf.cpp:757 +msgid "Cutoff macro race conditions (compatibility)" +msgstr "Wyścig wątków przy makrze punktu odcięcia (dla kompatybiności)" + +#: src/gui/sysConf.cpp:793 +msgid "8MHz (Neo Geo MVS)" +msgstr "" + +#: src/gui/sysConf.cpp:797 +msgid "8.06MHz (Neo Geo AES)" +msgstr "" + +#: src/gui/sysConf.cpp:812 src/gui/sysConf.cpp:1337 src/gui/sysConf.cpp:1407 +msgid "SSG Volume" +msgstr "Głośność SSG" + +#: src/gui/sysConf.cpp:818 src/gui/sysConf.cpp:1413 +msgid "FM/ADPCM Volume" +msgstr "Głośność FM/ADPCM" + +#: src/gui/sysConf.cpp:845 +msgid "1.79MHz (ZX Spectrum NTSC/MSX)" +msgstr "" + +#: src/gui/sysConf.cpp:849 +msgid "1.77MHz (ZX Spectrum PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:853 +msgid "0.83MHz (Pre-divided Sunsoft 5B on PAL)" +msgstr "0.83 MHz (Sunsoft 5B z już podzielonym taktowaniem, PAL)" + +#: src/gui/sysConf.cpp:857 +msgid "0.89MHz (Pre-divided Sunsoft 5B)" +msgstr "0.89 MHz (Sunsoft 5B z już podzielonym taktowaniem)" + +#: src/gui/sysConf.cpp:861 +msgid "1MHz (Amstrad CPC)" +msgstr "" + +#: src/gui/sysConf.cpp:865 +msgid "1.10MHz (Gamate/VIC-20 PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:869 +msgid "1.25MHz (Mag Max)" +msgstr "" + +#: src/gui/sysConf.cpp:873 +msgid "1.5MHz (Vectrex)" +msgstr "" + +#: src/gui/sysConf.cpp:877 +msgid "1.536MHz (Kyugo)" +msgstr "" + +#: src/gui/sysConf.cpp:881 +msgid "1.67MHz (?)" +msgstr "" + +#: src/gui/sysConf.cpp:885 +msgid "1.75MHz (ZX Spectrum 48K)" +msgstr "" + +#: src/gui/sysConf.cpp:889 +msgid "1.99MHz (PC-88)" +msgstr "" + +#: src/gui/sysConf.cpp:893 +msgid "2MHz (Atari ST/Sharp X1)" +msgstr "" + +#: src/gui/sysConf.cpp:897 +msgid "2^21Hz (Game Boy)" +msgstr "" + +#: src/gui/sysConf.cpp:901 +msgid "3.58MHz (Darky)" +msgstr "" + +#: src/gui/sysConf.cpp:905 +msgid "3.6MHz (Darky)" +msgstr "" + +#: src/gui/sysConf.cpp:917 +msgid "YM2149(F)" +msgstr "" + +#: src/gui/sysConf.cpp:921 +msgid "Sunsoft 5B" +msgstr "" + +#: src/gui/sysConf.cpp:925 +msgid "AY-3-8914" +msgstr "" + +#: src/gui/sysConf.cpp:931 +msgid "note: AY-3-8914 is not supported by the VGM format!" +msgstr "uwaga: AY-3-8914 nie jest wspieramy przez format VGM!" + +#: src/gui/sysConf.cpp:935 +msgid "Stereo##_AY_STEREO" +msgstr "Stereo##_AY_STEREO" + +#: src/gui/sysConf.cpp:940 +msgid "Separation" +msgstr "Rozdzielenie" + +#: src/gui/sysConf.cpp:949 +msgid "Half Clock divider##_AY_CLKSEL" +msgstr "Podziel taktowania zegara przez 2##_AY_CLKSEL" + +#: src/gui/sysConf.cpp:971 +msgid "SAM Coupé (8MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:975 +msgid "NTSC (7.15MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:979 +msgid "PAL (7.09MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:999 +msgid "Stereo separation:" +msgstr "Rozdzielenie stereo:" + +#: src/gui/sysConf.cpp:1006 src/gui/sysConf.cpp:2412 +msgid "Model:" +msgstr "Model:" + +#: src/gui/sysConf.cpp:1008 +msgid "Amiga 500 (OCS)" +msgstr "" + +#: src/gui/sysConf.cpp:1012 +msgid "Amiga 1200 (AGA)" +msgstr "" + +#: src/gui/sysConf.cpp:1018 +msgid "Chip memory:" +msgstr "Pamiec ukladu:" + +#: src/gui/sysConf.cpp:1020 +msgid "2MB (ECS/AGA max)" +msgstr "2 MB (maksimum dla ECS/AGA)" + +#: src/gui/sysConf.cpp:1030 +msgid "512KB (OCS max)" +msgstr "512 kB (maksimum dla OCS)" + +#: src/gui/sysConf.cpp:1043 src/gui/sysConf.cpp:1081 src/gui/sysConf.cpp:2395 +#: src/gui/sysConf.cpp:2449 +msgid "PAL" +msgstr "" + +#: src/gui/sysConf.cpp:1046 +msgid "Bypass frequency limits" +msgstr "Ignoruj limity częstotliwości" + +#: src/gui/sysConf.cpp:1065 +msgid "Mixing mode:" +msgstr "Tryb miksowania:" + +#: src/gui/sysConf.cpp:1067 src/gui/settings.cpp:3724 +msgid "Mono" +msgstr "Mono" + +#: src/gui/sysConf.cpp:1071 +msgid "Mono (no distortion)" +msgstr "Mono (bez zakłóceń)" + +#: src/gui/sysConf.cpp:1075 src/gui/sysConf.cpp:1197 src/gui/sysConf.cpp:1864 +#: src/gui/sysConf.cpp:2204 +msgid "Stereo" +msgstr "Stereo" + +#: src/gui/sysConf.cpp:1100 +msgid "1.19MHz (PC)" +msgstr "" + +#: src/gui/sysConf.cpp:1104 +msgid "1.99MHz (PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1108 +msgid "2.46MHz (PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1114 +msgid "Speaker type:" +msgstr "Typ brzęczyka:" + +#: src/gui/sysConf.cpp:1116 +msgid "Unfiltered" +msgstr "Bez filtrowania" + +#: src/gui/sysConf.cpp:1120 +msgid "Cone" +msgstr "Stożek" + +#: src/gui/sysConf.cpp:1124 +msgid "Piezo" +msgstr "Piezo" + +#: src/gui/sysConf.cpp:1128 +msgid "Use system beeper (Linux only!)" +msgstr "Używaj prawdziwego brzęczyka systemowego (tylko na Linuxie!)" + +#: src/gui/sysConf.cpp:1134 +msgid "Reset phase on frequency change" +msgstr "Resetuj fazę podczas zmiany częstotliwości" + +#: src/gui/sysConf.cpp:1183 +msgid "16MHz (Seta 1)" +msgstr "" + +#: src/gui/sysConf.cpp:1187 +msgid "16.67MHz (Seta 2)" +msgstr "" + +#: src/gui/sysConf.cpp:1191 src/gui/sysConf.cpp:1759 +msgid "14.32MHz (NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:1201 +msgid "Bankswitched (Seta 2)" +msgstr "Ze zmieniarką banków (Seta 2)" + +#: src/gui/sysConf.cpp:1235 src/gui/sysConf.cpp:1261 +msgid "Initial channel limit:" +msgstr "Początkowy limit ilości kanałów:" + +#: src/gui/sysConf.cpp:1241 src/gui/sysConf.cpp:2398 +msgid "Disable hissing" +msgstr "Wyłącz trzeszczenie" + +#: src/gui/sysConf.cpp:1244 +msgid "Scale frequency to wave length" +msgstr "Skaluj częstotliwość względem długości fali" + +#: src/gui/sysConf.cpp:1300 src/gui/sysConf.cpp:1722 +msgid "3.54MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:1304 src/gui/sysConf.cpp:1726 src/gui/sysConf.cpp:2290 +msgid "4MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1308 src/gui/sysConf.cpp:1730 +msgid "3MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1312 src/gui/sysConf.cpp:1734 +msgid "3.9936MHz (PC-88/PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1316 +msgid "1.5MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1321 src/gui/sysConf.cpp:1391 src/gui/sysConf.cpp:1639 +#: src/gui/sysConf.cpp:1852 +msgid "Output rate:" +msgstr "Częstotliwość audio na wyjściu:" + +#: src/gui/sysConf.cpp:1323 src/gui/sysConf.cpp:1397 +msgid "FM: clock / 72, SSG: clock / 16" +msgstr "FM: takt. zegara / 72, SSG: takt. zegara / 16" + +#: src/gui/sysConf.cpp:1327 +msgid "FM: clock / 36, SSG: clock / 8" +msgstr "FM: takt. zegara / 36, SSG: takt. zegara / 8" + +#: src/gui/sysConf.cpp:1331 +msgid "FM: clock / 24, SSG: clock / 4" +msgstr "FM: takt. zegara / 24, SSG: takt. zegara / 4" + +#: src/gui/sysConf.cpp:1343 +msgid "FM Volume" +msgstr "Głośność FM" + +#: src/gui/sysConf.cpp:1382 +msgid "8MHz (Arcade)" +msgstr "8 MHz (Arcade)" + +#: src/gui/sysConf.cpp:1386 +msgid "7.987MHz (PC-88/PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1393 +msgid "FM: clock / 144, SSG: clock / 32" +msgstr "FM: takt. zegara / 144, SSG: takt. zegara / 32" + +#: src/gui/sysConf.cpp:1401 +msgid "FM: clock / 48, SSG: clock / 8" +msgstr "FM: takt. zegara / 48, SSG: takt. zegara / 8" + +#: src/gui/sysConf.cpp:1446 +msgid "8MHz (FM Towns)" +msgstr "" + +#: src/gui/sysConf.cpp:1450 +msgid "10MHz (Sega System 18)" +msgstr "" + +#: src/gui/sysConf.cpp:1454 +msgid "12.5MHz (Sega CD/System 32)" +msgstr "" + +#: src/gui/sysConf.cpp:1461 +msgid "RF5C68 (10-bit output)" +msgstr "RF5C68 (10-bitowe audio)" + +#: src/gui/sysConf.cpp:1465 +msgid "RF5C164 (16-bit output)" +msgstr "RF5C164 (16-bitowe audio)" + +#: src/gui/sysConf.cpp:1520 +msgid "Sample rate table:" +msgstr "Tablica częstotliwości audio:" + +#: src/gui/sysConf.cpp:1524 +msgid "divider \\ clock" +msgstr "dzielnik zegara" + +#: src/gui/sysConf.cpp:1526 +msgid "full" +msgstr "pełna" + +#: src/gui/sysConf.cpp:1528 +msgid "half" +msgstr "połowiczna" + +#: src/gui/sysConf.cpp:1641 +msgid "clock / 132" +msgstr "takt. zegara / 132" + +#: src/gui/sysConf.cpp:1645 +msgid "clock / 165" +msgstr "takt. zegara / 165" + +#: src/gui/sysConf.cpp:1651 +msgid "Bankswitched (NMK112)" +msgstr "Ze zmieniarką banków (NMK112)" + +#: src/gui/sysConf.cpp:1670 +msgid "1.79MHz (NTSC/MSX)" +msgstr "" + +#: src/gui/sysConf.cpp:1674 +msgid "1.77MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:1678 +msgid "1.5MHz (Arcade)" +msgstr "1.5 MHz (Automaty do gier)" + +#: src/gui/sysConf.cpp:1682 +msgid "2MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1697 +msgid "Consistent frequency across all duties" +msgstr "Stabilna częstotliwości dla wszystkich szerokości fali prostokątnej" + +#: src/gui/sysConf.cpp:1704 +msgid "note: only works for an initial LFSR value of 0!" +msgstr "" +"uwaga: działa tylko w przypadku ustawienia początkowej wartości LFSR na 0!" + +#: src/gui/sysConf.cpp:1738 +msgid "3.5MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1763 +msgid "14.19MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:1767 +msgid "14MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1771 +msgid "16MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1775 +msgid "15MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1779 +msgid "33.8688MHz (OPL3-L)" +msgstr "" + +#: src/gui/sysConf.cpp:1784 +msgid "OPL3 (YMF262)" +msgstr "" + +#: src/gui/sysConf.cpp:1788 +msgid "OPL3-L (YMF289B)" +msgstr "" + +#: src/gui/sysConf.cpp:1794 +msgid "Compatible panning (0800)" +msgstr "Kompatybilny panning (0800)" + +#: src/gui/sysConf.cpp:1858 +msgid "Output bit depth:" +msgstr "Rozdzielczość audio na wyjściu:" + +#: src/gui/sysConf.cpp:1868 +msgid "Interpolation:" +msgstr "Interpolacja:" + +#: src/gui/sysConf.cpp:1874 src/gui/waveEdit.cpp:38 +msgid "Linear" +msgstr "Liniowa" + +#: src/gui/sysConf.cpp:1878 src/gui/waveEdit.cpp:40 +msgid "Cubic" +msgstr "Sześcienna" + +#: src/gui/sysConf.cpp:1882 +msgid "Sinc" +msgstr "Sinc" + +#: src/gui/sysConf.cpp:1920 +msgid "Left##VolScaleL" +msgstr "Lewo##VolScaleL" + +#: src/gui/sysConf.cpp:1925 +msgid "Right##VolScaleL" +msgstr "Prawo##VolScaleL" + +#: src/gui/sysConf.cpp:1935 +msgid "Initial echo state:" +msgstr "Początkowy stan echo:" + +#: src/gui/sysConf.cpp:1955 +msgid "Delay##EchoDelay" +msgstr "Opóźnienie##EchoDelay" + +#: src/gui/sysConf.cpp:1961 +msgid "Feedback##EchoFeedback" +msgstr "Sprz. zwrotne##EchoFeedback" + +#: src/gui/sysConf.cpp:1968 +msgid "Left##EchoVolL" +msgstr "Lewe##EchoVolL" + +#: src/gui/sysConf.cpp:1973 +msgid "Right##EchoVolL" +msgstr "Prawe##EchoVolL" + +#: src/gui/sysConf.cpp:1979 +msgid "Echo filter:" +msgstr "Filtr echo:" + +#: src/gui/sysConf.cpp:1989 +msgid "Hex##SNESFHex" +msgstr "Heks.##SNESFHex" + +#: src/gui/sysConf.cpp:1989 +msgid "Dec##SNESFHex" +msgstr "Dzies.##SNESFHex" + +#: src/gui/sysConf.cpp:2031 +#, c-format +msgid "sum: %d" +msgstr "suma: %d" + +#: src/gui/sysConf.cpp:2086 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:63 +#: src/gui/insEdit.cpp:75 +msgid "Detune" +msgstr "Rozstrojenie" + +#: src/gui/sysConf.cpp:2092 +msgid "Capacitor values (nF):" +msgstr "Pojemność kondensatorów (nF):" + +#: src/gui/sysConf.cpp:2102 +msgid "Initial part volume (channel 1-4):" +msgstr "Głośnośc początkowa (kanały 1-4):" + +#: src/gui/sysConf.cpp:2112 +msgid "Initial part volume (channel 5-8):" +msgstr "Głośnośc początkowa (kanały 5-8):" + +#: src/gui/sysConf.cpp:2122 +msgid "Envelope mode (channel 1-4):" +msgstr "Tryb obwiedni(kanały 1-4):" + +#: src/gui/sysConf.cpp:2124 +msgid "Capacitor (attack/decay)##EM00" +msgstr "Kondensator (narastanie/opadanie)" + +#: src/gui/sysConf.cpp:2128 +msgid "External (volume macro)##EM01" +msgstr "Zewnętrzny (makro głośności)" + +#: src/gui/sysConf.cpp:2134 +msgid "Envelope mode (channel 5-8):" +msgstr "Tryb obwiedni(kanały 5-8):" + +#: src/gui/sysConf.cpp:2136 +msgid "Capacitor (attack/decay)##EM10" +msgstr "Kondensator (narastanie/opadanie)" + +#: src/gui/sysConf.cpp:2140 +msgid "External (volume macro)##EM11" +msgstr "Zewnętrzny (makro głośności)" + +#: src/gui/sysConf.cpp:2146 +msgid "Global vibrato:" +msgstr "Globalne vibrato:" + +#: src/gui/sysConf.cpp:2153 +msgid "Depth" +msgstr "Głębokość" + +#: src/gui/sysConf.cpp:2219 src/gui/sysConf.cpp:2373 +msgid "Waveform storage mode:" +msgstr "Sposób przechowywania fal:" + +#: src/gui/sysConf.cpp:2221 +msgid "RAM" +msgstr "RAM" + +#: src/gui/sysConf.cpp:2225 +msgid "ROM (up to 8 waves)" +msgstr "RAM (maks. 8 fal)" + +#: src/gui/sysConf.cpp:2241 +msgid "Compatible noise frequencies" +msgstr "Kompatybilne częstotliwości szumu" + +#: src/gui/sysConf.cpp:2256 +msgid "Legacy slides and pitch (compatibility)" +msgstr "Przestarzałe wysokości dźwięku i portamento (kompatybilność)" + +#: src/gui/sysConf.cpp:2314 +msgid "PAL (1.77MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:2344 +msgid "Banking style:" +msgstr "Sposób przełączania banków:" + +#: src/gui/sysConf.cpp:2346 +msgid "Namco System 2 (2MB)" +msgstr "Namco System 2 (2 MB)" + +#: src/gui/sysConf.cpp:2351 +msgid "Namco System 21 (4MB)" +msgstr "Namco System 21 (4 MB)" + +#: src/gui/sysConf.cpp:2356 +msgid "Raw (16MB; no VGM export!)" +msgstr "Surowy (16 MB; brak możliwości eksportu do VGM!)" + +#: src/gui/sysConf.cpp:2375 +msgid "Dynamic (unconfirmed)" +msgstr "Dynamiczny (niezweryfikowany)" + +#: src/gui/sysConf.cpp:2379 +msgid "Static (up to 5 waves)" +msgstr "Statyczny (maks. 5 fal)" + +#: src/gui/sysConf.cpp:2414 +msgid "DS (4MB RAM)" +msgstr "DS (4 MB RAM)" + +#: src/gui/sysConf.cpp:2418 +msgid "DSi (16MB RAM)" +msgstr "DSi (16 MB RAM)" + +#: src/gui/sysConf.cpp:2444 src/gui/settings.cpp:727 +msgid "nothing to configure" +msgstr "nic do skonfigurowania" + +#: src/gui/sysConf.cpp:2467 +msgid "Custom clock rate" +msgstr "Niestandardowe taktowanie zegara" + +#: src/gui/volMeter.cpp:36 src/gui/settings.cpp:3969 src/gui/guiConst.cpp:596 +msgid "Volume Meter" +msgstr "Miernik poziomu głośności" + +#: src/gui/userPresets.cpp:325 +msgid "User Systems" +msgstr "Systemy uźytkownika" + +#: src/gui/userPresets.cpp:337 +msgid "Error! User category does not exist!" +msgstr "Błąd Kategoria użytkownika nie istnieje!" + +#: src/gui/userPresets.cpp:346 src/gui/newSong.cpp:181 +msgid "Systems" +msgstr "Systemy" + +#: src/gui/userPresets.cpp:349 +msgid "New Preset" +msgstr "Nowy preset" + +#: src/gui/userPresets.cpp:361 +msgid "select a preset" +msgstr "wybierz preset" + +#: src/gui/userPresets.cpp:374 +msgid "Remove##UPresetRemove" +msgstr "Usuń##UPresetRemove" + +#: src/gui/userPresets.cpp:439 src/gui/settings.cpp:1135 +msgid "Configure" +msgstr "Konfiguruj" + +#: src/gui/userPresets.cpp:470 +msgid "Advanced" +msgstr "Zaawansowane" + +#: src/gui/userPresets.cpp:476 +msgid "" +"insert additional settings in `option=value` format.\n" +"available options:\n" +"- tickRate" +msgstr "" +"ustaw dodatkowe parametry w formacie opcja=wartość`.\n" +"dostepne opcje:\n" +"- tickRate (częstotliwość silnika trackera)" + +#: src/gui/userPresets.cpp:509 +msgid "Save and Close" +msgstr "Zapisz i zamknij" + +#: src/gui/userPresets.cpp:515 src/gui/settings.cpp:1238 +#: src/gui/settings.cpp:2161 src/gui/settings.cpp:2553 +#: src/gui/settings.cpp:3796 +msgid "Import" +msgstr "Importuj" + +#: src/gui/userPresets.cpp:519 +msgid "Import (replace)" +msgstr "Importuj i zamień" + +#: src/gui/effectList.cpp:14 src/gui/guiConst.cpp:606 +msgid "Effect List" +msgstr "Lista efektów" + +#: src/gui/effectList.cpp:18 +#, c-format +msgid "Chip at cursor: %s" +msgstr "Zazanaczony uklad: %s" + +#: src/gui/effectList.cpp:21 src/gui/settings.cpp:6674 +msgid "Search" +msgstr "Szukaj" + +#: src/gui/effectList.cpp:25 +msgid "Effect types to show:" +msgstr "Wyświetlanie typów efektów:" + +#: src/gui/effectList.cpp:47 +msgid "Description" +msgstr "Opis" + +#: src/gui/subSongs.cpp:22 src/gui/subSongs.cpp:32 +#, c-format +msgid "%d. " +msgstr "%d. " + +#: src/gui/subSongs.cpp:73 src/gui/subSongs.cpp:93 +msgid "too many subsongs!" +msgstr "zbyt wiele podutworów!" + +#: src/gui/subSongs.cpp:114 +msgid "this is the only subsong!" +msgstr "to jest jedyny podutwór!" + +#: src/gui/subSongs.cpp:116 +msgid "are you sure you want to remove this subsong?" +msgstr "czy jesteś pewien że chcesz usuąć ten podutwór?" + +#: src/gui/spoiler.cpp:30 +msgid "Spoiler" +msgstr "" + +#: src/gui/spoiler.cpp:32 +msgid "SPOILER" +msgstr "" + +#: src/gui/settings.cpp:104 src/gui/settings.cpp:114 src/gui/settings.cpp:124 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:105 src/gui/settings.cpp:115 src/gui/settings.cpp:125 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:168 +msgid "ASAP (C++ port)" +msgstr "ASAP (przepisany na C++)" + +#: src/gui/settings.cpp:191 +msgid "ESFMu (fast)" +msgstr "ESFMu (szybki)" + +#: src/gui/settings.cpp:205 +msgid "Lower" +msgstr "Bardzo niski" + +#: src/gui/settings.cpp:207 +msgid "Medium" +msgstr "Średni" + +#: src/gui/settings.cpp:209 +msgid "Ultra" +msgstr "Ultra" + +#: src/gui/settings.cpp:210 +msgid "Ultimate" +msgstr "Maksymalny" + +#: src/gui/settings.cpp:214 +msgid "evdev SND_TONE" +msgstr "" + +#: src/gui/settings.cpp:215 +msgid "KIOCSOUND on /dev/tty1" +msgstr "" + +#: src/gui/settings.cpp:216 +msgid "/dev/port" +msgstr "" + +#: src/gui/settings.cpp:217 +msgid "KIOCSOUND on standard output" +msgstr "KIOCSOUND na standardowym wyjściu" + +#: src/gui/settings.cpp:218 +msgid "outb()" +msgstr "" + +#: src/gui/settings.cpp:222 src/gui/settings.cpp:232 +msgid "Disabled/custom" +msgstr "Wył./niestandardowy" + +#: src/gui/settings.cpp:223 +msgid "Two octaves (0 is C-4, F is D#5)" +msgstr "Dwie oktawy (0 = C-4, F = D#5)" + +#: src/gui/settings.cpp:224 +msgid "Raw (note number is value)" +msgstr "Tryb surowy (numer nuty jest wartością)" + +#: src/gui/settings.cpp:225 +msgid "Two octaves alternate (lower keys are 0-9, upper keys are A-F)" +msgstr "" +"Alternatywne wprowadzanie dwóch oktaw (dolne klawisze 0-9, górne klawisze A-" +"F)" + +#: src/gui/settings.cpp:226 src/gui/settings.cpp:233 +msgid "Use dual control change (one for each nibble)" +msgstr "Użyj podwójnej komendy CC (jedna na półbajt)" + +#: src/gui/settings.cpp:227 src/gui/settings.cpp:234 +msgid "Use 14-bit control change" +msgstr "Użyj 14-bitowej komendy CC" + +#: src/gui/settings.cpp:228 src/gui/settings.cpp:235 +msgid "Use single control change (imprecise)" +msgstr "Użyj pojedynczej komendy CC (niska dokładność)" + +#: src/gui/settings.cpp:239 +msgid "--select--" +msgstr "--wybierz--" + +#: src/gui/settings.cpp:240 src/gui/settings.cpp:241 src/gui/settings.cpp:242 +#: src/gui/settings.cpp:243 src/gui/settings.cpp:244 src/gui/settings.cpp:245 +#: src/gui/settings.cpp:246 +msgid "???" +msgstr "" + +#: src/gui/settings.cpp:247 +msgid "Note Off" +msgstr "Puszczenie klawisza" + +#: src/gui/settings.cpp:248 +msgid "Note On" +msgstr "Wciśnięcie klawisza" + +#: src/gui/settings.cpp:249 +msgid "Aftertouch" +msgstr "Aftertouch" + +#: src/gui/settings.cpp:250 src/gui/insEdit.cpp:7187 src/gui/insEdit.cpp:7217 +#: src/gui/insEdit.cpp:7382 src/gui/insEdit.cpp:7403 src/gui/insEdit.cpp:7415 +#: src/gui/insEdit.cpp:7430 +msgid "Control" +msgstr "Wartość CC" + +#: src/gui/settings.cpp:251 src/gui/settings.cpp:573 src/gui/settings.cpp:3177 +msgid "Program" +msgstr "Program" + +#: src/gui/settings.cpp:252 +msgid "ChanPressure" +msgstr "Równe naciskanie na kanał MIDI" + +#: src/gui/settings.cpp:253 +msgid "Pitch Bend" +msgstr "Zmiana wysokości dźwięku" + +#: src/gui/settings.cpp:254 +msgid "SysEx" +msgstr "SysEx" + +#: src/gui/settings.cpp:258 src/gui/settings.cpp:1713 src/gui/settings.cpp:1723 +#: src/gui/settings.cpp:1743 src/gui/settings.cpp:1749 +#, c-format +msgid "Any" +msgstr "Każdy" + +#: src/gui/settings.cpp:262 src/gui/settings.cpp:3363 src/gui/settings.cpp:3928 +#: src/gui/settings.cpp:4121 +msgid "Instrument" +msgstr "Instrument" + +#: src/gui/settings.cpp:264 +msgid "Effect 1 type" +msgstr "Indeks efektu №1" + +#: src/gui/settings.cpp:265 +msgid "Effect 1 value" +msgstr "Fala Parametr efektu №1" + +#: src/gui/settings.cpp:266 +msgid "Effect 2 type" +msgstr "Indeks efektu №2" + +#: src/gui/settings.cpp:267 +msgid "Effect 2 value" +msgstr "Fala Parametr efektu №2" + +#: src/gui/settings.cpp:268 +msgid "Effect 3 type" +msgstr "Indeks efektu №3" + +#: src/gui/settings.cpp:269 +msgid "Effect 3 value" +msgstr "Fala Parametr efektu №3" + +#: src/gui/settings.cpp:270 +msgid "Effect 4 type" +msgstr "Indeks efektu №4" + +#: src/gui/settings.cpp:271 +msgid "Effect 4 value" +msgstr "Fala Parametr efektu №4" + +#: src/gui/settings.cpp:272 +msgid "Effect 5 type" +msgstr "Indeks efektu №5" + +#: src/gui/settings.cpp:273 +msgid "Effect 5 value" +msgstr "Fala Parametr efektu №5" + +#: src/gui/settings.cpp:274 +msgid "Effect 6 type" +msgstr "Indeks efektu №6" + +#: src/gui/settings.cpp:275 +msgid "Effect 6 value" +msgstr "Fala Parametr efektu №6" + +#: src/gui/settings.cpp:276 +msgid "Effect 7 type" +msgstr "Indeks efektu №7" + +#: src/gui/settings.cpp:277 +msgid "Effect 7 value" +msgstr "Fala Parametr efektu №7" + +#: src/gui/settings.cpp:278 +msgid "Effect 8 type" +msgstr "Indeks efektu №8" + +#: src/gui/settings.cpp:279 +msgid "Effect 8 value" +msgstr "Fala Parametr efektu №8" + +#: src/gui/settings.cpp:315 +msgid "Press key..." +msgstr "Naciśnij klawisz..." + +#: src/gui/settings.cpp:564 +msgid "Do you want to save your settings?" +msgstr "Czy chcesz zapisać swoje ustawienia?" + +#: src/gui/settings.cpp:571 +msgid "General" +msgstr "Ogólne" + +#: src/gui/settings.cpp:588 +msgid "Language" +msgstr "Język" + +#: src/gui/settings.cpp:606 +msgid "Render backend" +msgstr "Biblioteka renderownaia" + +#: src/gui/settings.cpp:661 src/gui/settings.cpp:680 src/gui/settings.cpp:1312 +msgid "you may need to restart Furnace for this setting to take effect." +msgstr "" +"może być konieczne ponowne uruchomienie Furnace, aby ta opcja została " +"zastosowana." + +#: src/gui/settings.cpp:664 +msgid "Advanced render backend settings" +msgstr "Zaawansowane ustawienia biblioteki renderowania" + +#: src/gui/settings.cpp:666 +msgid "Render driver" +msgstr "Sterownik renderowania" + +#: src/gui/settings.cpp:666 src/gui/settings.cpp:667 src/gui/settings.cpp:1298 +#: src/gui/settings.cpp:1299 src/gui/piano.cpp:108 +msgid "Automatic" +msgstr "Automatyczny" + +#: src/gui/settings.cpp:683 +msgid "" +"beware: changing these settings may render Furnace unusable! do so at your " +"own risk.\n" +"start Furnace with -safemode if you mess something up." +msgstr "" +"uwaga: zmiana tych ustawień może sprawić, że Furnace będzie niezdatny do " +"dalszego użytkowania! działasz na własną odpowiedzialność\n" +"możesz uruchomić Furnace z parametrem -safemode, jeśli coś zepsujesz" + +#: src/gui/settings.cpp:684 +msgid "Red bits" +msgstr "Bity czerwonej składowej" + +#: src/gui/settings.cpp:689 +msgid "Green bits" +msgstr "Bity zielonej składowej" + +#: src/gui/settings.cpp:694 +msgid "Blue bits" +msgstr "Bity niebieskiej składowej" + +#: src/gui/settings.cpp:699 +msgid "Alpha bits" +msgstr "Bity przeźroczystości" + +#: src/gui/settings.cpp:704 +msgid "Color depth" +msgstr "Głębia kolorów" + +#: src/gui/settings.cpp:709 +msgid "Stencil buffer size" +msgstr "Rozmiar bufora szablonu" + +#: src/gui/settings.cpp:714 src/gui/settings.cpp:1385 +msgid "Buffer size" +msgstr "Rozmiar bufora" + +#: src/gui/settings.cpp:720 +msgid "Double buffer" +msgstr "Podwójne buforowanie" + +#: src/gui/settings.cpp:725 +msgid "" +"the following values are common (in red, green, blue, alpha order):\n" +"- 24 bits: 8, 8, 8, 0\n" +"- 16 bits: 5, 6, 5, 0\n" +"- 32 bits (with alpha): 8, 8, 8, 8\n" +"- 30 bits (deep): 10, 10, 10, 0" +msgstr "" +"powszechne są następujące wartości (w kolejności czerwony, zielony, " +"niebieski, przeźroczysty):\n" +"- 24 bity: 8, 8, 8, 0\n" +"- 16 bitów: 5, 6, 5, 0\n" +"- 32 bity (z przeźroczystością): 8, 8, 8, 8\n" +"- 30 bitów (głęboka kwantyzacja): 10, 10, 10, 0" + +#: src/gui/settings.cpp:732 +#, c-format +msgid "" +"current backend: %s\n" +"%s\n" +"%s\n" +"%s" +msgstr "" +"obecna biblioteka renderowania: %s\n" +"%s\n" +"%s\n" +"%s" + +#: src/gui/settings.cpp:735 +msgid "VSync" +msgstr "Synchronizacja pionowa" + +#: src/gui/settings.cpp:743 +msgid "Frame rate limit" +msgstr "Limit częstotliwośći generowania klatek" + +#: src/gui/settings.cpp:743 +msgid "Unlimited" +msgstr "Bez limitu" + +#: src/gui/settings.cpp:749 +msgid "only applies when VSync is disabled." +msgstr "ma zastosowanie tylko wtedy, gdy synchr. pionowa jest wyłączona" + +#: src/gui/settings.cpp:753 +msgid "Display render time" +msgstr "Wyświetlaj czas renderowania" + +#: src/gui/settings.cpp:760 +msgid "Late render clear" +msgstr "Opóźnione czyszczenie bufora renderowania" + +#: src/gui/settings.cpp:765 +msgid "" +"calls rend->clear() after rend->present(). might reduce UI latency by one " +"frame in some drivers." +msgstr "" +"Wywołuje rend->clear() po rend->present(). Może wyeliminować opóźnienie o " +"jedną klatkę w renderowaniu interfejsu przy niektórych sterownikach." + +#: src/gui/settings.cpp:770 +msgid "Power-saving mode" +msgstr "Tryb oszczędzania energii" + +#: src/gui/settings.cpp:775 +msgid "" +"saves power by lowering the frame rate to 2fps when idle.\n" +"may cause issues under Mesa drivers!" +msgstr "" +"zmniejsza zużycie energii, redukując szybkość renderowania do dwóch klatek " +"na sekundę w trybie czuwania.\n" +"może powodować problemy pod sterownikami Mesa!" + +#: src/gui/settings.cpp:780 +msgid "Disable threaded input (restart after changing!)" +msgstr "" +"Wyłącz przetwarzanie naciśnięć klawiszy w osobnych wątkach (uruchom ponownie " +"program po zmianie!)." + +#: src/gui/settings.cpp:785 +msgid "" +"threaded input processes key presses for note preview on a separate thread " +"(on supported platforms), which reduces latency.\n" +"however, crashes have been reported when threaded input is on. enable this " +"option if that is the case." +msgstr "" +"przetwarzanie naciśnięć klawiszy dla podglądu instrumentów odbywa się " +"wielowątkowo (na obsługiwanych platformach), co zmniejsza opóźnienia.\n" +"są jednak doniesienia o zawieszaniu się programu po wyłączeniu tej opcji, w " +"takim przypadku włącz ją." + +#: src/gui/settings.cpp:790 +msgid "Enable event delay" +msgstr "Włącz opóźnienie zdarzeń" + +#: src/gui/settings.cpp:796 +msgid "may cause issues with high-polling-rate mice when previewing notes." +msgstr "" +"może powodować problemy podczas podglądu instrumentów, jeśli podłączona jest " +"mysz o wysokiej częstotliwości odświeżania." + +#: src/gui/settings.cpp:800 +msgid "Per-channel oscilloscope threads" +msgstr "Wielowątkowość oscyloskopu dla poszczególnych kanałów" + +#: src/gui/settings.cpp:808 +msgid "you're being silly, aren't you? that's enough." +msgstr "wystarczy." + +#: src/gui/settings.cpp:812 +msgid "what are you doing? stop!" +msgstr "stop!" + +#: src/gui/settings.cpp:816 +#, c-format +msgid "" +"it is a bad idea to set this number higher than your CPU core count (%d)!" +msgstr "" +" ustawianie tej wartości na wyższą niż ilość rdzeni twojego CPU to bardzo " +"zły pomysł (%d)!" + +#: src/gui/settings.cpp:821 +msgid "Oscilloscope rendering engine:" +msgstr "Silnik renderowania oscyloskopu:" + +#: src/gui/settings.cpp:823 +msgid "ImGui line plot" +msgstr "Rysunek linii z ImGui" + +#: src/gui/settings.cpp:827 +msgid "render using Dear ImGui's built-in line drawing functions." +msgstr "renderuj przy pomocy wbudowanych funkcji Dear ImGui." + +#: src/gui/settings.cpp:829 +msgid "GLSL (if available)" +msgstr "GLSL (jeśli dostępne)" + +#: src/gui/settings.cpp:834 +msgid "" +"render using shaders that run on the graphics card.\n" +"only available in OpenGL ES 2.0 render backend." +msgstr "" +"renderowanie przy użyciu shaderów wykonywanych na GPU.\n" +"dostępny wyłącznie na bibliotece renderowania OpenGL ES 2.0" + +#: src/gui/settings.cpp:836 +msgid "" +"render using shaders that run on the graphics card.\n" +"only available in OpenGL 3.0 render backend." +msgstr "" +"renderowanie przy użyciu shaderów wykonywanych na GPU.\n" +"dostępny wyłącznie na bibliotece renderowania OpenGL 3.0" + +#: src/gui/settings.cpp:843 +msgid "Vibration" +msgstr "Wibracje" + +#: src/gui/settings.cpp:845 +msgid "Strength" +msgstr "Siła wibracji" + +#: src/gui/settings.cpp:851 src/gui/insEdit.cpp:2284 src/gui/insEdit.cpp:2382 +#: src/gui/insEdit.cpp:5582 src/gui/insEdit.cpp:6241 +msgid "Length" +msgstr "Długość wibracji" + +#: src/gui/settings.cpp:859 src/gui/gui.cpp:4191 +msgid "File" +msgstr "Plik" + +#: src/gui/settings.cpp:862 +msgid "Use system file picker" +msgstr "Użyj systemowego okna wyboru plików" + +#: src/gui/settings.cpp:867 +msgid "Number of recent files" +msgstr "Ilość ostatnich plików" + +#: src/gui/settings.cpp:874 +msgid "Compress when saving" +msgstr "Kompresuj podczas zapisu" + +#: src/gui/settings.cpp:879 +msgid "use zlib to compress saved songs." +msgstr "иużywaj biblioteki zlib do kompresji utworów." + +#: src/gui/settings.cpp:883 +msgid "Save unused patterns" +msgstr "Zapisuj nieużywane wzorce" + +#: src/gui/settings.cpp:889 +msgid "Use new pattern format when saving" +msgstr "Używaj nowego formatu wzorców podczas zapisywania" + +#: src/gui/settings.cpp:894 +msgid "" +"use a packed format which saves space when saving songs.\n" +"disable if you need compatibility with older Furnace and/or tools\n" +"which do not support this format." +msgstr "" +"użyj skompresowanego formatu do zapisywania wzorców, co zmniejsza rozmiar " +"pliku modułu.\n" +"wyłącz tę opcję, jeśli chcesz zachować kompatybilność ze starszymi wersjami " +"Furnace\n" +" i/lub innymi programami, które nie obsługują nowego formatu." + +#: src/gui/settings.cpp:898 +msgid "Don't apply compatibility flags when loading .dmf" +msgstr "Nie stosuj flag kompatybilności podczas wczytywania pliku .dmf" + +#: src/gui/settings.cpp:903 +msgid "do not report any issues arising from the use of this option!" +msgstr "nie zgłaszaj żadnych problemów występujących po włączeniu tej opcji!" + +#: src/gui/settings.cpp:906 +msgid "Play after opening song:" +msgstr "Odtawrzaj po otwarciu utworu:" + +#: src/gui/settings.cpp:908 +msgid "No##pol0" +msgstr "Nie" + +#: src/gui/settings.cpp:912 +msgid "Only if already playing##pol1" +msgstr "Tylko jeśli już jest odtwarzany" + +#: src/gui/settings.cpp:916 +msgid "Yes##pol0" +msgstr "Tak" + +#: src/gui/settings.cpp:922 +msgid "Audio export loop/fade out time:" +msgstr "" +"Liczba cykli odtwarzania i czas wyciszania podczas eksportowania dźwięku:" + +#: src/gui/settings.cpp:924 +msgid "Set to these values on start-up:##fot0" +msgstr "Ustaw te wartości podczas uruchamiania:" + +#: src/gui/settings.cpp:942 +msgid "Remember last values##fot1" +msgstr "Zapamiętuj ostatnie wartości" + +#: src/gui/settings.cpp:949 +msgid "Store instrument name in .fui" +msgstr "Przechowuj nazwę instrumentu w pliku .fui" + +#: src/gui/settings.cpp:954 +msgid "" +"when enabled, saving an instrument will store its name.\n" +"this may increase file size." +msgstr "" +"po włączeniu tej opcji nazwa instrumentu zostanie zapisana w pliku, co może " +"zwiększyć jego rozmiar." + +#: src/gui/settings.cpp:958 +msgid "Load instrument name from .fui" +msgstr "Wczytaj nazwę instrumentu z pliku .fui" + +#: src/gui/settings.cpp:963 +msgid "" +"when enabled, loading an instrument will use the stored name (if present).\n" +"otherwise, it will use the file name." +msgstr "" +"gdy opcja ta jest włączona, nazwa instrumentu zostanie wczytana z pliku " +"(jeśli w pliku znajduje się nazwa).\n" +"w przeciwnym razie użyta zostanie nazwa pliku." + +#: src/gui/settings.cpp:967 +msgid "Auto-fill file name when saving" +msgstr "Autouzupełnianie nazwy pliku podczas zapisywania" + +#: src/gui/settings.cpp:972 +msgid "" +"fill the file name field with an appropriate file name when saving or " +"exporting." +msgstr "" +"uzpełnia pole nazwy pliku z odpowiednią nazwą podczas zapisu lub eksportu." + +#: src/gui/settings.cpp:976 src/gui/gui.cpp:5563 src/gui/gui.cpp:5613 +msgid "New Song" +msgstr "Nowa piosenka" + +#: src/gui/settings.cpp:978 +msgid "Initial system:" +msgstr "System domyślny:" + +#: src/gui/settings.cpp:980 +msgid "Current system" +msgstr "Bieżący" + +#: src/gui/settings.cpp:993 src/gui/waveEdit.cpp:1149 src/gui/gui.cpp:3046 +msgid "Randomize" +msgstr "Losuj" + +#: src/gui/settings.cpp:1043 +msgid "Reset to defaults" +msgstr "Resetuj ustawienia" + +#: src/gui/settings.cpp:1178 +msgid "When creating new song:" +msgstr "Przy tworzeniu nowego utworu:" + +#: src/gui/settings.cpp:1180 +msgid "Display system preset selector##NSB0" +msgstr "Wyświetlaj okno wyboru domyślnego systemu" + +#: src/gui/settings.cpp:1184 +msgid "Start with initial system##NSB1" +msgstr "Rozpocznij od systemu domyślnego" + +#: src/gui/settings.cpp:1188 +msgid "Default author name" +msgstr "Domyślna nazwa autora" + +#: src/gui/settings.cpp:1192 +msgid "Start-up" +msgstr "Uruchamianie" + +#: src/gui/settings.cpp:1193 +msgid "Play intro on start-up:" +msgstr "Odtwarzaj intro podczas staru programu:" + +#: src/gui/settings.cpp:1195 +msgid "No##pis0" +msgstr "Nigdy" + +#: src/gui/settings.cpp:1199 +msgid "Short##pis1" +msgstr "Wersję krótką" + +#: src/gui/settings.cpp:1203 +msgid "Full (short when loading song)##pis2" +msgstr "Wersję pełną (krótką przy wczytywania piosenki)" + +#: src/gui/settings.cpp:1207 +msgid "Full (always)##pis3" +msgstr "Wersję pełną (zawsze)" + +#: src/gui/settings.cpp:1214 +msgid "Disable fade-in during start-up" +msgstr "Wyłącz fade-in interfejsu podczas uruchamiania" + +#: src/gui/settings.cpp:1220 +msgid "About screen party time" +msgstr "Impreza na ekranie \"O programie\"" + +#: src/gui/settings.cpp:1225 +msgid "Warning: may cause epileptic seizures." +msgstr "Uwaga: może wywoływać ataki padaczki." + +#: src/gui/settings.cpp:1229 +msgid "Behavior" +msgstr "Zachowanie programu" + +#: src/gui/settings.cpp:1231 +msgid "New instruments are blank" +msgstr "Nowe instrumnty są wyzerowane" + +#: src/gui/settings.cpp:1237 src/gui/settings.cpp:4255 +msgid "Configuration" +msgstr "Konfiguracja programu" + +#: src/gui/settings.cpp:1246 +msgid "Factory Reset" +msgstr "Resetuj do ustawień fabrycznych" + +#: src/gui/settings.cpp:1247 +msgid "" +"Are you sure you want to reset all Furnace settings?\n" +"You must restart Furnace after doing so." +msgstr "" +"Czy jeśteś pewien że chcesz zresetować wszystkie ustawienia Furnace?\n" +"Będzie niezbędne ponowne uruchomienie Furnace." + +#: src/gui/settings.cpp:1255 +msgid "Output" +msgstr "Wyjście" + +#: src/gui/settings.cpp:1263 +msgid "Backend" +msgstr "Interfejs" + +#: src/gui/settings.cpp:1296 +msgid "Driver" +msgstr "Sterownik" + +#: src/gui/settings.cpp:1319 +msgid "Device" +msgstr "Urządzenie wyjściowe" + +#: src/gui/settings.cpp:1323 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:1324 +msgid "ALERT - TRESPASSER DETECTED" +msgstr "UWAGA - WYKRYTO INTRUZA" + +#: src/gui/settings.cpp:1326 +msgid "you have been arrested for trying to engage with a disabled combo box." +msgstr "zostałeś aresztowany za próbę interakcji z wyłączoną listą rozwijaną." + +#: src/gui/settings.cpp:1333 src/gui/settings.cpp:1335 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:1371 src/gui/insEdit.cpp:7186 +msgid "Outputs" +msgstr "Wyjścia" + +#: src/gui/settings.cpp:1379 +msgid "" +"common values:\n" +"- 1 for mono\n" +"- 2 for stereo\n" +"- 4 for quadraphonic\n" +"- 6 for 5.1 surround\n" +"- 8 for 7.1 surround" +msgstr "" +"powszechne wartości:\n" +"- 1: mono\n" +"- 2: stereo\n" +"- 4: dźwięk kwadrofoniczny\n" +"- 6: dźwięk przestrzenny 5.1\n" +"- 8: dźwięk przestrzenny 7.1" + +#: src/gui/settings.cpp:1387 +#, c-format +msgid "%d (latency: ~%.1fms)" +msgstr "%d (latencja: ~%.1f ms)" + +#: src/gui/settings.cpp:1402 +msgid "Multi-threaded (EXPERIMENTAL)" +msgstr "Wielowątkowość (EKSPERYMENTALNA)" + +#: src/gui/settings.cpp:1411 +msgid "" +"runs chip emulation on separate threads.\n" +"may increase performance when using heavy emulation cores.\n" +"\n" +"warnings:\n" +"- experimental!\n" +"- only useful on multi-chip songs." +msgstr "" +"wykonuje emulatory układów w oddzielnych wątkach.\n" +"może poprawić wydajność podczas korzystania z ciężkich emulatorów.\n" +"\n" +"ostrzeżenie:\n" +"- funkcja eksperymentalna!\n" +"- użyteczna tylko dla utworów, które wykorzystują wiele układów." + +#: src/gui/settings.cpp:1416 +msgid "Number of threads" +msgstr "Ilość wątków" + +#: src/gui/settings.cpp:1423 +msgid "that's the limit!" +msgstr "to już limit!" + +#: src/gui/settings.cpp:1427 +#, c-format +msgid "" +"it is a VERY bad idea to set this number higher than your CPU core count " +"(%d)!" +msgstr "" +"BARDZO złym pomysłem jest ustawianie tej wartości na wyższą niż liczba " +"rdzeni procesora. (%d)!" + +#: src/gui/settings.cpp:1435 +msgid "Low-latency mode" +msgstr "Tryb niskiej latencji" + +#: src/gui/settings.cpp:1440 +msgid "" +"reduces latency by running the engine faster than the tick rate.\n" +"useful for live playback/jam mode.\n" +"\n" +"warning: only enable if your buffer size is small (10ms or less)." +msgstr "" +"zmniejsza latencję, wykonując kod silnika trackera szybciej niż określono w " +"ustawieniach. \n" +"przydatne w trybie wykonywania w czasie rzeczywistym.\n" +"\n" +" uwaga: włącz tylko wtedy, gdy rozmiar bufora audio jest mały (10 ms lub " +"mniej)." + +#: src/gui/settings.cpp:1444 +msgid "Force mono audio" +msgstr "Wymuś dźwięk mono" + +#: src/gui/settings.cpp:1452 +msgid "Exclusive mode" +msgstr "Tryb wyjątkowy" + +#: src/gui/settings.cpp:1463 +#, c-format +msgid "want: %d samples @ %.0fHz (%d channel)" +msgid_plural "want: %d samples @ %.0fHz (%d channels)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/gui/settings.cpp:1464 +#, c-format +msgid "got: %d samples @ %.0fHz (%d channel)" +msgid_plural "got: %d samples @ %.0fHz (%d channels)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/gui/settings.cpp:1471 +msgid "Mixing" +msgstr "Miksing" + +#: src/gui/settings.cpp:1473 src/gui/settings.cpp:2082 +msgid "Quality" +msgstr "Jakość" + +#: src/gui/settings.cpp:1478 +msgid "Software clipping" +msgstr "Programowe ograniczenie sygnału" + +#: src/gui/settings.cpp:1484 +msgid "DC offset correction" +msgstr "Korekta przesunięcia DC" + +#: src/gui/settings.cpp:1502 src/gui/guiConst.cpp:740 +msgid "Sample preview" +msgstr "Podgląd sampla" + +#: src/gui/settings.cpp:1515 +msgid "MIDI" +msgstr "MIDI" + +#: src/gui/settings.cpp:1517 src/gui/settings.cpp:1519 +msgid "MIDI input" +msgstr "Wyjście MIDI" + +#: src/gui/settings.cpp:1521 src/gui/settings.cpp:1524 +#: src/gui/settings.cpp:1815 src/gui/settings.cpp:1817 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:1540 +msgid "Re-scan MIDI devices" +msgstr "Skanuj urządzenia MIDI ponownie" + +#: src/gui/settings.cpp:1551 src/gui/settings.cpp:2258 +msgid "Note input" +msgstr "Wprowadzanie nut" + +#: src/gui/settings.cpp:1552 +msgid "Velocity input" +msgstr "Wprowadzanie prędkości" + +#: src/gui/settings.cpp:1556 +msgid "Map MIDI channels to direct channels" +msgstr "Przypisz kanały MIDI do bezpośrednich kanałów" + +#: src/gui/settings.cpp:1562 +msgid "Program change pass-through" +msgstr "Przekazywanie komunikatów o zmianie programu do wyjścia" + +#: src/gui/settings.cpp:1567 +msgid "Map Yamaha FM voice data to instruments" +msgstr "Przypisz dane głosu FM do instrumentu" + +#: src/gui/settings.cpp:1569 +msgid "Program change is instrument selection" +msgstr "Zmiana programu to wyubór instrumentu" + +#: src/gui/settings.cpp:1573 +msgid "Value input style" +msgstr "Styl wprowadzania wartości" + +#: src/gui/settings.cpp:1576 src/gui/settings.cpp:1601 +msgid "Control##valueCCS" +msgstr "Sterowanie##valueCCS" + +#: src/gui/settings.cpp:1582 src/gui/settings.cpp:1607 +msgid "CC of upper nibble##valueCC1" +msgstr "CC wyższego półbajta" + +#: src/gui/settings.cpp:1582 src/gui/settings.cpp:1607 +msgid "MSB CC##valueCC1" +msgstr "" + +#: src/gui/settings.cpp:1587 src/gui/settings.cpp:1612 +msgid "CC of lower nibble##valueCC2" +msgstr "CC niższego półbajta" + +#: src/gui/settings.cpp:1587 src/gui/settings.cpp:1612 +msgid "LSB CC##valueCC2" +msgstr "" + +#: src/gui/settings.cpp:1594 +msgid "Per-column control change" +msgstr "Zmiana sterowania dla każdej kolumny" + +#: src/gui/settings.cpp:1624 src/gui/settings.cpp:1634 +msgid "Volume curve" +msgstr "Krzywa głośności" + +#: src/gui/settings.cpp:1637 +msgid "Actions:" +msgstr "Działania:" + +#: src/gui/settings.cpp:1651 +msgid "" +"(learning! press a button or move a slider/knob/something on your device.)" +msgstr "(nasłuchiwanie! naciśnij przycisk lub przesuń coś na urządzeniu.)" + +#: src/gui/settings.cpp:1665 src/gui/settings.cpp:2277 +#: src/gui/settings.cpp:6687 src/gui/sampleEdit.cpp:501 +#: src/gui/insEdit.cpp:5321 +msgid "Type" +msgstr "Typ" + +#: src/gui/settings.cpp:1669 +msgid "Note/Control" +msgstr "Nuta/sterowanie" + +#: src/gui/settings.cpp:1671 +msgid "Velocity/Value" +msgstr "Szybkość/Parametr" + +#: src/gui/settings.cpp:1673 +msgid "Action" +msgstr "Działania" + +#: src/gui/settings.cpp:1765 src/gui/settings.cpp:1766 +msgid "--none--" +msgstr "--żaden--" + +#: src/gui/settings.cpp:1787 +msgid "waiting...##BLearn" +msgstr "czekaj...##BLearn" + +#: src/gui/settings.cpp:1787 +msgid "Learn##BLearn" +msgstr "Pamięć MIDI##BLearn" + +#: src/gui/settings.cpp:1811 src/gui/settings.cpp:1813 +msgid "MIDI output" +msgstr "Wyjście MIDI" + +#: src/gui/settings.cpp:1830 +msgid "Output mode:" +msgstr "Tryb wyjścia:" + +#: src/gui/settings.cpp:1832 +msgid "Off (use for TX81Z)" +msgstr "Wył. (używać przy TX81Z)" + +#: src/gui/settings.cpp:1836 +msgid "Melodic" +msgstr "Melodyczny" + +#: src/gui/settings.cpp:1847 +msgid "Send Program Change" +msgstr "Wyślij komendę zmiany programu" + +#: src/gui/settings.cpp:1853 +msgid "Send MIDI clock" +msgstr "Wyślij częstotliwość zegara MIDI" + +#: src/gui/settings.cpp:1859 +msgid "Send MIDI timecode" +msgstr "Wyślij kod czasowy MIDI" + +#: src/gui/settings.cpp:1865 +msgid "Timecode frame rate:" +msgstr "Framerate kodu czasowego:" + +#: src/gui/settings.cpp:1867 +msgid "Closest to Tick Rate" +msgstr "Najbliższy częstotliwości silnika trackera" + +#: src/gui/settings.cpp:1871 +msgid "Film (24fps)" +msgstr "Filmowy (24 fps)" + +#: src/gui/settings.cpp:1875 +msgid "PAL (25fps)" +msgstr "PAL (25 fps)" + +#: src/gui/settings.cpp:1879 +msgid "NTSC drop (29.97fps)" +msgstr "Niestabilne NTSC (29.97 fps" + +#: src/gui/settings.cpp:1883 +msgid "NTSC non-drop (30fps)" +msgstr "Stabilne NTSC (30 fps)" + +#: src/gui/settings.cpp:1892 +msgid "Emulation" +msgstr "Emulacja" + +#: src/gui/settings.cpp:1894 +msgid "Cores" +msgstr "Rdzenie emulacji" + +#: src/gui/settings.cpp:1903 +msgid "Playback Core(s)" +msgstr "Rdzenie odtwarzania" + +#: src/gui/settings.cpp:1905 src/gui/settings.cpp:2093 +msgid "used for playback" +msgstr "używane do odtwarzania" + +#: src/gui/settings.cpp:1908 +msgid "Render Core(s)" +msgstr "Rdzenie renderowania" + +#: src/gui/settings.cpp:1910 src/gui/settings.cpp:2098 +msgid "used in audio export" +msgstr "używane do eksportowania audio" + +#: src/gui/settings.cpp:2091 +msgid "Playback" +msgstr "ВOdtwarzanie" + +#: src/gui/settings.cpp:2096 +msgid "Render" +msgstr "Renderowanie" + +#: src/gui/settings.cpp:2120 +msgid "PC Speaker strategy" +msgstr "Działanie PC Speaker'a" + +#: src/gui/settings.cpp:2158 src/gui/settings.cpp:2160 +msgid "Keyboard" +msgstr "Klawiatura" + +#: src/gui/settings.cpp:2169 src/gui/settings.cpp:3804 +msgid "Reset defaults" +msgstr "Resetuj do wart. domyślnych" + +#: src/gui/settings.cpp:2170 +msgid "Are you sure you want to reset the keyboard settings?" +msgstr "Czy jesteś pewien że chcesz zresetować ustawienia klawiszy?" + +#: src/gui/settings.cpp:2172 +msgid "Global hotkeys" +msgstr "Globalne skróty klawiszowe" + +#: src/gui/settings.cpp:2209 +msgid "Window activation" +msgstr "Aktywacja okien" + +#: src/gui/settings.cpp:2275 +msgid "Key" +msgstr "Klawisz" + +#: src/gui/settings.cpp:2279 src/gui/findReplace.cpp:725 +#: src/gui/findReplace.cpp:1003 +msgid "Value" +msgstr "Parametr" + +#: src/gui/settings.cpp:2289 +#, c-format +msgid "Macro release##SNType_%d" +msgstr "Puszczenie klawisza (tylko makra)##SNType_%d" + +#: src/gui/settings.cpp:2294 +#, c-format +msgid "Note release##SNType_%d" +msgstr "Puszczenie klawisza z zanikaniem obwiedni##SNType_%d" + +#: src/gui/settings.cpp:2299 +#, c-format +msgid "Note off##SNType_%d" +msgstr "Puszczenie klawisza##SNType_%d" + +#: src/gui/settings.cpp:2304 +#, c-format +msgid "Note##SNType_%d" +msgstr "Nuta##SNType_%d" + +#: src/gui/settings.cpp:2328 +msgid "Add..." +msgstr "Dodaj..." + +#: src/gui/settings.cpp:2418 +msgid "Instrument list" +msgstr "Lista instrumentów" + +#: src/gui/settings.cpp:2438 +msgid "Wavetable list" +msgstr "Lista tablic fal" + +#: src/gui/settings.cpp:2459 +msgid "Sample list" +msgstr "Lista sampli" + +#: src/gui/settings.cpp:2509 +msgid "Sample editor" +msgstr "Edytor sampli" + +#: src/gui/settings.cpp:2547 src/gui/settings.cpp:3814 +#: src/gui/settings.cpp:3844 +msgid "Interface" +msgstr "Interfejs" + +#: src/gui/settings.cpp:2549 +msgid "Layout" +msgstr "Rozmieszczenie" + +#: src/gui/settings.cpp:2551 +msgid "Workspace layout:" +msgstr "Układ okien interfejsu:" + +#: src/gui/settings.cpp:2561 src/gui/gui.cpp:2920 +msgid "Reset" +msgstr "Resetuj" + +#: src/gui/settings.cpp:2562 src/gui/gui.cpp:4455 +msgid "Are you sure you want to reset the workspace layout?" +msgstr "Czy jesteś pewien że chcesz zresetować układ okna?" + +#: src/gui/settings.cpp:2566 +msgid "Allow docking editors" +msgstr "Pozwalaj na dokowanie edytorów" + +#: src/gui/settings.cpp:2573 +msgid "Remember window position" +msgstr "Pamiętaj położenie okien" + +#: src/gui/settings.cpp:2578 +msgid "remembers the window's last position on start-up." +msgstr "przywraca ostatnią pozycję każdego okna po uruchomieniu programu." + +#: src/gui/settings.cpp:2583 +msgid "Only allow window movement when clicking on title bar" +msgstr "Zezwalaj na przesuwanie okien tylko po kliknięciu ich paska tytułu." + +#: src/gui/settings.cpp:2590 +msgid "Center pop-up windows" +msgstr "Centruj wyskakujące okna" + +#: src/gui/settings.cpp:2595 +msgid "Play/edit controls layout:" +msgstr "Układ kontrolek odtwarzania/edycji:" + +#: src/gui/settings.cpp:2597 +msgid "Classic##ecl0" +msgstr "Klasyczny" + +#: src/gui/settings.cpp:2601 +msgid "Compact##ecl1" +msgstr "Kompaktowy" + +#: src/gui/settings.cpp:2605 +msgid "Compact (vertical)##ecl2" +msgstr "Kompaktowy(pionowy)" + +#: src/gui/settings.cpp:2609 +msgid "Split##ecl3" +msgstr "Podzielony" + +#: src/gui/settings.cpp:2615 +msgid "Position of buttons in Orders:" +msgstr "Pozycja przycisków w matrycy wzorców:" + +#: src/gui/settings.cpp:2617 +msgid "Top##obp0" +msgstr "Na górze" + +#: src/gui/settings.cpp:2621 +msgid "Left##obp1" +msgstr "Po lewej" + +#: src/gui/settings.cpp:2625 +msgid "Right##obp2" +msgstr "Po prawej" + +#: src/gui/settings.cpp:2632 +msgid "Mouse" +msgstr "Mysz" + +#: src/gui/settings.cpp:2634 +msgid "Double-click time (seconds)" +msgstr "Czas dwukrotnego kliknięcia myszą (w sekundach)" + +#: src/gui/settings.cpp:2643 +msgid "Don't raise pattern editor on click" +msgstr "Nie wywołuj edytora wzorców po naciśnięciu przycisku" + +#: src/gui/settings.cpp:2649 +msgid "Focus pattern editor when selecting instrument" +msgstr "UStaw skupienie na edyorze wzorców podczas wyboru instrumentu" + +#: src/gui/settings.cpp:2654 +msgid "Note preview behavior:" +msgstr "Ustawienia podglądu nut:" + +#: src/gui/settings.cpp:2656 +msgid "Never##npb0" +msgstr "Nigdy" + +#: src/gui/settings.cpp:2660 +msgid "When cursor is in Note column##npb1" +msgstr "Kiedy kursor jest na kolumnie nut" + +#: src/gui/settings.cpp:2664 +msgid "When cursor is in Note column or not in edit mode##npb2" +msgstr "Kiedy kursor jest na kolumnie nut albo nie w trybie edycji" + +#: src/gui/settings.cpp:2668 +msgid "Always##npb3" +msgstr "Zawsze" + +#: src/gui/settings.cpp:2674 +msgid "Allow dragging selection:" +msgstr "Zezwól na przeniesienie zaznaczenia:" + +#: src/gui/settings.cpp:2676 +msgid "No##dms0" +msgstr "Nie" + +#: src/gui/settings.cpp:2680 +msgid "Yes##dms1" +msgstr "Tak" + +#: src/gui/settings.cpp:2684 +msgid "Yes (while holding Ctrl only)##dms2" +msgstr "Tak (tylko przy wciśniętym klawiuszu Ctrl)" + +#: src/gui/settings.cpp:2690 +msgid "Toggle channel solo on:" +msgstr "Włącz tryb solo dla kanału:" + +#: src/gui/settings.cpp:2692 +msgid "Right-click or double-click##soloA" +msgstr "PPM alko podwójne kliknięcie" + +#: src/gui/settings.cpp:2696 +msgid "Right-click##soloR" +msgstr "PPM" + +#: src/gui/settings.cpp:2700 +msgid "Double-click##soloD" +msgstr "Podwójne kliknięcie" + +#: src/gui/settings.cpp:2707 +msgid "Double click selects entire column" +msgstr "Podwójne kliknięcie wybiera całą kolumnę" + +#: src/gui/settings.cpp:2713 +msgid "Cursor behavior" +msgstr "Zachowanie kursora" + +#: src/gui/settings.cpp:2715 +msgid "Insert pushes entire channel row" +msgstr "Klawisz Insert przesuwa wiersz całego kanału" + +#: src/gui/settings.cpp:2721 +msgid "Pull delete affects entire channel row" +msgstr "" +"Usunięcie z podciąganiem następujących linii wpływa na cały wiersz kanału" + +#: src/gui/settings.cpp:2727 +msgid "Push value when overwriting instead of clearing it" +msgstr "" +"Przenieś wartość komórki do sąsiedniej komórki zamiast ją usuwać podczas " +"nadpisywania" + +#: src/gui/settings.cpp:2733 +msgid "Keyboard note/value input repeat (hold key to input continuously)" +msgstr "" +"Powtarzanie wprowadzania nut/wartości z klawiatury (przytrzymaj klawisz dla " +"ciągłego wpisywania)" + +#: src/gui/settings.cpp:2738 +msgid "Effect input behavior:" +msgstr "Wprowadzanie efektów:" + +#: src/gui/settings.cpp:2740 +msgid "Move down##eicb0" +msgstr "Przesuń w dół" + +#: src/gui/settings.cpp:2744 +msgid "Move to effect value (otherwise move down)##eicb1" +msgstr "Przejdź do parametru efektu (w przeciwnym razie przejdź w dół)" + +#: src/gui/settings.cpp:2748 +msgid "Move to effect value/next effect and wrap around##eicb2" +msgstr "" +"Przeskocz do parametru efektu/następnego efektu i przeskocz do początku linii" + +#: src/gui/settings.cpp:2755 +msgid "Delete effect value when deleting effect" +msgstr "Usuń parametr efektu podczas usuwania efektu" + +#: src/gui/settings.cpp:2761 +msgid "Change current instrument when changing instrument column (absorb)" +msgstr "Zmień wybranego instrumentu podczas edycji kolumny instrumentu" + +#: src/gui/settings.cpp:2767 +msgid "Remove instrument value when inserting note off/release" +msgstr "Usuń wartość instrumentu podczas wstawiania nut OFF/===" + +#: src/gui/settings.cpp:2773 +msgid "Remove volume value when inserting note off/release" +msgstr "Usuń wartość głośności podczas wstawiania nut OFF/===" + +#: src/gui/settings.cpp:2779 +msgid "Cursor movement" +msgstr "Przemieszczanie kursora" + +#: src/gui/settings.cpp:2781 +msgid "Wrap horizontally:" +msgstr "Przenoszenie w poziomie:" + +#: src/gui/settings.cpp:2783 +msgid "No##wrapH0" +msgstr "Nie" + +#: src/gui/settings.cpp:2787 +msgid "Yes##wrapH1" +msgstr "Tak" + +#: src/gui/settings.cpp:2791 +msgid "Yes, and move to next/prev row##wrapH2" +msgstr "Tak, i przejdź do następnego wiersza" + +#: src/gui/settings.cpp:2797 +msgid "Wrap vertically:" +msgstr "Przenoszenie w pionie:" + +#: src/gui/settings.cpp:2799 +msgid "No##wrapV0" +msgstr "Nie" + +#: src/gui/settings.cpp:2803 +msgid "Yes##wrapV1" +msgstr "Tak" + +#: src/gui/settings.cpp:2807 +msgid "Yes, and move to next/prev pattern##wrapV2" +msgstr "Tak, i przejdź do następnego/poprzedniego wzorca" + +#: src/gui/settings.cpp:2811 +msgid "Yes, and move to next/prev pattern (wrap around)##wrapV2" +msgstr "" +"Tak, i przejdź do następnego/poprzedniego wzorca (z przeniesieniem na " +"początek/koniec)" + +#: src/gui/settings.cpp:2817 +msgid "Cursor movement keys behavior:" +msgstr "Zachowanie przesuwanie kursora:" + +#: src/gui/settings.cpp:2819 +msgid "Move by one##cmk0" +msgstr "Przesuwaj o jeden" + +#: src/gui/settings.cpp:2823 +msgid "Move by Edit Step##cmk1" +msgstr "Przesuwaj o krok edycji" + +#: src/gui/settings.cpp:2830 +msgid "Move cursor by edit step on delete" +msgstr "Przesuń kursor o krok edycji podczas usuwania" + +#: src/gui/settings.cpp:2836 +msgid "Move cursor by edit step on insert (push)" +msgstr "Przesuń kursor o krok edycji podczas wklejania" + +#: src/gui/settings.cpp:2842 +msgid "Move cursor up on backspace-delete" +msgstr "Przesuń kursor do góry po naciśnięciu Backspace" + +#: src/gui/settings.cpp:2848 +msgid "Move cursor to end of clipboard content when pasting" +msgstr "Przesuń kursor do końca wklejanej zawartości" + +#: src/gui/settings.cpp:2854 +msgid "Scrolling" +msgstr "Przewijanie" + +#: src/gui/settings.cpp:2856 +msgid "Change order when scrolling outside of pattern bounds:" +msgstr "Zmień pozycję w matrycy wzorców podczas przewijania poza wzorcami:" + +#: src/gui/settings.cpp:2858 +msgid "No##pscroll0" +msgstr "Nie" + +#: src/gui/settings.cpp:2862 +msgid "Yes##pscroll1" +msgstr "Tak" + +#: src/gui/settings.cpp:2866 +msgid "Yes, and wrap around song##pscroll2" +msgstr "Tak, i przenieś go na początek/koniec utworu." + +#: src/gui/settings.cpp:2873 +msgid "Cursor follows current order when moving it" +msgstr "Kursor podąża za wierszem matrycy wzorca, gdy ten jest przesuwany" + +#: src/gui/settings.cpp:2878 +msgid "applies when playback is stopped." +msgstr "jest ważne tylko wtedy, gdy odtwarzanie jest zatrzymane." + +#: src/gui/settings.cpp:2882 +msgid "Don't scroll when moving cursor" +msgstr "Nie przewijaj podczas przesuwania kursora" + +#: src/gui/settings.cpp:2887 +msgid "Move cursor with scroll wheel:" +msgstr "Przesuwaj kursor za pomocą kółka myszy:" + +#: src/gui/settings.cpp:2889 +msgid "No##csw0" +msgstr "Nie##csw0" + +#: src/gui/settings.cpp:2893 +msgid "Yes##csw1" +msgstr "Tak##csw1" + +#: src/gui/settings.cpp:2897 +msgid "Inverted##csw2" +msgstr "" + +#: src/gui/settings.cpp:2904 +msgid "How many steps to move with each scroll wheel step?" +msgstr "O ile kroków ma się przesuwać przy każdym ruchu kółkiem myszy?" + +#: src/gui/settings.cpp:2905 +msgid "One##cws0" +msgstr "" + +#: src/gui/settings.cpp:2909 +msgid "Edit Step##cws1" +msgstr "" + +#: src/gui/settings.cpp:2916 src/gui/settings.cpp:3531 +msgid "Assets" +msgstr "Zasoby" + +#: src/gui/settings.cpp:2919 +msgid "Display instrument type menu when adding instrument" +msgstr "Wyświetlaj menu wyboru typu instrumentu podczas dodawania instrumentu" + +#: src/gui/settings.cpp:2925 +msgid "Select asset after opening one" +msgstr "Wybierz obiekt po jego otwarciu" + +#: src/gui/settings.cpp:2932 +msgid "Appearance" +msgstr "Wygląd" + +#: src/gui/settings.cpp:2934 +msgid "Scaling" +msgstr "Skalowanie" + +#: src/gui/settings.cpp:2936 +msgid "Automatic UI scaling factor" +msgstr "Automatyczny współczynnik skalowania UI" + +#: src/gui/settings.cpp:2945 +msgid "UI scaling factor" +msgstr "Współczynnik skalowania UI" + +#: src/gui/settings.cpp:2952 +msgid "Icon size" +msgstr "Rozmiar ikon" + +#: src/gui/settings.cpp:2967 +msgid "Font renderer" +msgstr "Renderer czcionki" + +#: src/gui/settings.cpp:2977 +msgid "Main font" +msgstr "Główna czcionka" + +#: src/gui/settings.cpp:2988 +msgid "Size##MainFontSize" +msgstr "Rozmiar##MainFontSize" + +#: src/gui/settings.cpp:2996 +msgid "Header font" +msgstr "Czcionka nagłówków" + +#: src/gui/settings.cpp:3007 +msgid "Size##HeadFontSize" +msgstr "Rozmiar##HeadFontSize" + +#: src/gui/settings.cpp:3015 +msgid "Pattern font" +msgstr "Czcionka wzorców" + +#: src/gui/settings.cpp:3026 +msgid "Size##PatFontSize" +msgstr "Rozmiar##PatFontSize" + +#: src/gui/settings.cpp:3036 +msgid "Anti-aliased fonts" +msgstr "Wygladzanie czcionek" + +#: src/gui/settings.cpp:3042 +msgid "Support bitmap fonts" +msgstr "Wspieraj bitmapowe czcionki" + +#: src/gui/settings.cpp:3047 +msgid "Hinting:" +msgstr "hINTOWANIE" + +#: src/gui/settings.cpp:3049 +msgid "Off (soft)##fh0" +msgstr "" + +#: src/gui/settings.cpp:3053 +msgid "Slight##fh1" +msgstr "" + +#: src/gui/settings.cpp:3057 +msgid "Normal##fh2" +msgstr "" + +#: src/gui/settings.cpp:3061 +msgid "Full (hard)##fh3" +msgstr "" + +#: src/gui/settings.cpp:3067 +msgid "Auto-hinter:" +msgstr "Autohintowanie" + +#: src/gui/settings.cpp:3069 +msgid "Disable##fah0" +msgstr "" + +#: src/gui/settings.cpp:3073 +msgid "Enable##fah1" +msgstr "" + +#: src/gui/settings.cpp:3077 +msgid "Force##fah2" +msgstr "" + +#: src/gui/settings.cpp:3084 +msgid "Oversample" +msgstr "Supersampling" + +#: src/gui/settings.cpp:3087 +msgid "1×##fos1" +msgstr "" + +#: src/gui/settings.cpp:3092 +msgid "" +"saves video memory. reduces font rendering quality.\n" +"use for pixel/bitmap fonts." +msgstr "" +"oszczędza pamięć VRAM, obniża jakość renderowania czcionek\n" +"używaj przy czcionkach bitmapowych." + +#: src/gui/settings.cpp:3095 +msgid "2×##fos2" +msgstr "2x" + +#: src/gui/settings.cpp:3100 +msgid "default." +msgstr "domyślny." + +#: src/gui/settings.cpp:3103 +msgid "3×##fos3" +msgstr "" + +#: src/gui/settings.cpp:3108 +msgid "" +"slightly better font rendering quality.\n" +"uses more video memory." +msgstr "" +"nieco lepsza jakość renderowania\n" +"użuwa więcej pamięci VRAM." + +#: src/gui/settings.cpp:3112 +msgid "Load fallback font" +msgstr "Wczytaj zapasową czcionkę" + +#: src/gui/settings.cpp:3117 +msgid "disable to save video memory." +msgstr "wyłącz by oszczędzić pamięć VRAM." + +#: src/gui/settings.cpp:3121 +msgid "Display Japanese characters" +msgstr "Wyświetlaj japońskie znaki" + +#: src/gui/settings.cpp:3127 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"このオプションは、十分なグラフィックメモリがある場合にのみ切り替えてくださ" +"い。\n" +"これは、Dear ImGuiにダイナミックフォントアトラスが実装されるまでの一時的な解" +"決策です。" +msgstr "" +"Włącz tą opcję tylko wtedy, gdy masz wystarczającą ilość VRAM-u.\n" +"Jest to rozwiązanie tymczasowe, ponieważ Dear ImGui nie obsługuje obecnie " +"dynamicznego atlasu czcionek.\n" +"\n" +"このオプションは、十分なグラフィックメモリがある場合にのみ切り替えてくださ" +"い。\n" +"これは、Dear ImGuiにダイナミックフォントアトラスが実装されるまでの一時的な解" +"決策です。" + +#: src/gui/settings.cpp:3135 +msgid "Display Chinese (Simplified) characters" +msgstr "Wyświetlaj chińskie znaki (uproszczone)" + +#: src/gui/settings.cpp:3141 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"请在确保你有足够的显存后再启动此设定\n" +"这是一个在ImGui实现动态字体加载之前的临时解决方案" +msgstr "" +"Włącz tą opcję tylko wtedy, gdy masz wystarczającą ilość VRAM-u.\n" +"Jest to rozwiązanie tymczasowe, ponieważ Dear ImGui nie obsługuje obecnie " +"dynamicznego atlasu czcionek.\n" +"\n" +"请在确保你有足够的显存后再启动此设定\n" +"这是一个在ImGui实现动态字体加载之前的临时解决方案" + +#: src/gui/settings.cpp:3149 +msgid "Display Chinese (Traditional) characters" +msgstr "Wyświetlaj chińskie znaki (tradycyjne)" + +#: src/gui/settings.cpp:3155 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"請在確保你有足夠的顯存后再啟動此設定\n" +"這是一個在ImGui實現動態字體加載之前的臨時解決方案" +msgstr "" +"Włącz tą opcję tylko wtedy, gdy masz wystarczającą ilość VRAM-u.\n" +"Jest to rozwiązanie tymczasowe, ponieważ Dear ImGui nie obsługuje obecnie " +"dynamicznego atlasu czcionek.\n" +"\n" +"請在確保你有足夠的顯存后再啟動此設定\n" +"這是一個在ImGui實現動態字體加載之前的臨時解決方案" + +#: src/gui/settings.cpp:3163 +msgid "Display Korean characters" +msgstr "Wyświetlaj koreańskie znaki" + +#: src/gui/settings.cpp:3169 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"그래픽 메모리가 충분한 경우에만 이 옵션을 선택하십시오.\n" +"이 옵션은 Dear ImGui에 동적 글꼴 아틀라스가 구현될 때까지 임시 솔루션입니다." +msgstr "" +"Włącz tą opcję tylko wtedy, gdy masz wystarczającą ilość VRAM-u.\n" +"Jest to rozwiązanie tymczasowe, ponieważ Dear ImGui nie obsługuje obecnie " +"dynamicznego atlasu czcionek.\n" +"\n" +"그래픽 메모리가 충분한 경우에만 이 옵션을 선택하십시오.\n" +"이 옵션은 Dear ImGui에 동적 글꼴 아틀라스가 구현될 때까지 임시 솔루션입니다." + +#: src/gui/settings.cpp:3178 +msgid "Title bar:" +msgstr "Pasek tytułu okna" + +#: src/gui/settings.cpp:3180 +msgid "Furnace##tbar0" +msgstr "Furnace##tbar0" + +#: src/gui/settings.cpp:3185 +msgid "Song Name - Furnace##tbar1" +msgstr "Nazwa utworu - Furnace##tbar1" + +#: src/gui/settings.cpp:3190 +msgid "file_name.fur - Furnace##tbar2" +msgstr "nazwa_pliku.fur - Furnace##tbar2" + +#: src/gui/settings.cpp:3195 +msgid "/path/to/file.fur - Furnace##tbar3" +msgstr "/scieżka/do/pliku.fur - Furnace##tbar3" + +#: src/gui/settings.cpp:3203 +msgid "Display system name on title bar" +msgstr "Wyświetlaj nazwę układu/systemu na pasku tytułu okna" + +#: src/gui/settings.cpp:3210 +msgid "Display chip names instead of \"multi-system\" in title bar" +msgstr "" +"Wyświetlaj nazwy układów/systemów zamiast \"multi-system\" na pasku tytułu " +"okna" + +#: src/gui/settings.cpp:3216 +msgid "Status bar:" +msgstr "Pasek stanu:" + +#: src/gui/settings.cpp:3218 +msgid "Cursor details##sbar0" +msgstr "" + +#: src/gui/settings.cpp:3222 +msgid "File path##sbar1" +msgstr "" + +#: src/gui/settings.cpp:3226 +msgid "Cursor details or file path##sbar2" +msgstr "" + +#: src/gui/settings.cpp:3230 +msgid "Nothing##sbar3" +msgstr "" + +#: src/gui/settings.cpp:3237 +msgid "Display playback status when playing" +msgstr "Wyświetlanie stanu odtwarzania podczas odtwarzania" + +#: src/gui/settings.cpp:3242 +msgid "Export options layout:" +msgstr "Układ opcji eksportu:" + +#: src/gui/settings.cpp:3244 +msgid "Sub-menus in File menu##eol0" +msgstr "" + +#: src/gui/settings.cpp:3248 +msgid "Modal window with tabs##eol1" +msgstr "" + +#: src/gui/settings.cpp:3252 +msgid "Modal windows with options in File menu##eol2" +msgstr "" + +#: src/gui/settings.cpp:3259 +msgid "Capitalize menu bar" +msgstr "Pozycje paska menu zaczynają się od wielkiej litery" + +#: src/gui/settings.cpp:3265 +msgid "Display add/configure/change/remove chip menus in File menu" +msgstr "Wyświetlanie pozycji: Dodaj/Zmień/Usuń Chip w menu \"Plik\"." + +#: src/gui/settings.cpp:3279 +msgid "Highlight channel at cursor in Orders" +msgstr "Podświetl kanał, na którym znajduje się kursor w matrycy wzorców." + +#: src/gui/settings.cpp:3284 +msgid "Orders row number format:" +msgstr "Format wyświetlania numeru wiersza matrycy wzorców:" + +#: src/gui/settings.cpp:3286 +msgid "Decimal##orbD" +msgstr "Dziesiętny##orbD" + +#: src/gui/settings.cpp:3290 +msgid "Hexadecimal##orbH" +msgstr "Szesnastkowy##orbH" + +#: src/gui/settings.cpp:3299 +msgid "Center pattern view" +msgstr "Wyśrodkuj wyświetlane wzorce w oknie" + +#: src/gui/settings.cpp:3305 +msgid "Overflow pattern highlights" +msgstr "Kontynuuj podświetlenie pasków wzorza poza samymi wzorcami" + +#: src/gui/settings.cpp:3311 +msgid "Display previous/next pattern" +msgstr "Wyświetlaj porzedni/następny wozrzec" + +#: src/gui/settings.cpp:3316 +msgid "Pattern row number format:" +msgstr "Format wyświetlania numeru wiersza wzorca:" + +#: src/gui/settings.cpp:3318 +msgid "Decimal##prbD" +msgstr "Dziesiętny##prbD" + +#: src/gui/settings.cpp:3322 +msgid "Hexadecimal##prbH" +msgstr "Szesnastkowy##prbH" + +#: src/gui/settings.cpp:3328 +msgid "Pattern view labels:" +msgstr "Etykiety komórek wzorca:" + +#: src/gui/settings.cpp:3333 +msgid "Note off (3-char)" +msgstr "Puszczenie klawisza (3 znaki)" + +#: src/gui/settings.cpp:3338 +msgid "Note release (3-char)" +msgstr "Zwolnienie nuty (3 znaki)" + +#: src/gui/settings.cpp:3343 +msgid "Macro release (3-char)" +msgstr "Zwolnienie makra (3 znaki)" + +#: src/gui/settings.cpp:3348 +msgid "Empty field (3-char)" +msgstr "Pusta komórka (3 znaki)" + +#: src/gui/settings.cpp:3353 +msgid "Empty field (2-char)" +msgstr "Pusta komórka (2 znaki)" + +#: src/gui/settings.cpp:3355 +msgid "Pattern view spacing after:" +msgstr "Podział na widoku wzorca po:" + +#: src/gui/settings.cpp:3357 src/gui/settings.cpp:4115 +#: src/gui/findReplace.cpp:601 src/gui/findReplace.cpp:864 +#: src/gui/sampleEdit.cpp:590 +msgid "Note" +msgstr "Nuta" + +#: src/gui/settings.cpp:3375 src/gui/findReplace.cpp:707 +#: src/gui/findReplace.cpp:974 +msgid "Effect" +msgstr "Efekt" + +#: src/gui/settings.cpp:3381 +msgid "Effect value" +msgstr "Parametr efektu" + +#: src/gui/settings.cpp:3388 +msgid "Single-digit effects for 00-0F" +msgstr "Jednocyfrowe parametry efektów 00-0F" + +#: src/gui/settings.cpp:3394 +msgid "Use flats instead of sharps" +msgstr "Używaj bemoli zamiast krzyżyków" + +#: src/gui/settings.cpp:3400 +msgid "Use German notation" +msgstr "Używaj niemieckich nazw nut" + +#: src/gui/settings.cpp:3408 +msgid "Channel style:" +msgstr "Styl nagłówka kanału:" + +#: src/gui/settings.cpp:3410 +msgid "Classic##CHS0" +msgstr "" + +#: src/gui/settings.cpp:3414 +msgid "Line##CHS1" +msgstr "" + +#: src/gui/settings.cpp:3418 +msgid "Round##CHS2" +msgstr "" + +#: src/gui/settings.cpp:3422 +msgid "Split button##CHS3" +msgstr "" + +#: src/gui/settings.cpp:3426 +msgid "Square border##CH42" +msgstr "" + +#: src/gui/settings.cpp:3430 +msgid "Round border##CHS5" +msgstr "" + +#: src/gui/settings.cpp:3436 +msgid "Channel volume bar:" +msgstr "Pasek głośności kanału:" + +#: src/gui/settings.cpp:3438 +msgid "None##CHV0" +msgstr "" + +#: src/gui/settings.cpp:3442 +msgid "Simple##CHV1" +msgstr "" + +#: src/gui/settings.cpp:3446 +msgid "Stereo##CHV2" +msgstr "" + +#: src/gui/settings.cpp:3450 +msgid "Real##CHV3" +msgstr "" + +#: src/gui/settings.cpp:3454 +msgid "Real (stereo)##CHV4" +msgstr "" + +#: src/gui/settings.cpp:3460 +msgid "Channel feedback style:" +msgstr "Tryb podświetlenia nagłowka kanału" + +#: src/gui/settings.cpp:3462 +msgid "Off##CHF0" +msgstr "" + +#: src/gui/settings.cpp:3466 +msgid "Note##CHF1" +msgstr "" + +#: src/gui/settings.cpp:3470 +msgid "Volume##CHF2" +msgstr "" + +#: src/gui/settings.cpp:3474 +msgid "Active##CHF3" +msgstr "" + +#: src/gui/settings.cpp:3480 +msgid "Channel font:" +msgstr "Czcionka nagłówka kanału:" + +#: src/gui/settings.cpp:3482 +msgid "Regular##CHFont0" +msgstr "" + +#: src/gui/settings.cpp:3486 +msgid "Monospace##CHFont1" +msgstr "" + +#: src/gui/settings.cpp:3493 +msgid "Center channel name" +msgstr "Wyśrodkuj nazwę kanału" + +#: src/gui/settings.cpp:3498 +msgid "Channel colors:" +msgstr "Kolory nagłówków kanałów" + +#: src/gui/settings.cpp:3500 +msgid "Single##CHC0" +msgstr "" + +#: src/gui/settings.cpp:3504 +msgid "Channel type##CHC1" +msgstr "" + +#: src/gui/settings.cpp:3508 +msgid "Instrument type##CHC2" +msgstr "" + +#: src/gui/settings.cpp:3514 +msgid "Channel name colors:" +msgstr "Kolory nazwy kanału:" + +#: src/gui/settings.cpp:3516 +msgid "Single##CTC0" +msgstr "" + +#: src/gui/settings.cpp:3520 +msgid "Channel type##CTC1" +msgstr "" + +#: src/gui/settings.cpp:3524 +msgid "Instrument type##CTC2" +msgstr "" + +#: src/gui/settings.cpp:3533 +msgid "Unified instrument/wavetable/sample list" +msgstr "Połączona lista instrumentów, tablic fal i sampli" + +#: src/gui/settings.cpp:3543 +msgid "Horizontal instrument list" +msgstr "Pozioma lista instrumentów" + +#: src/gui/settings.cpp:3549 +msgid "Instrument list icon style:" +msgstr "Styl ikon listy instrumentów:" + +#: src/gui/settings.cpp:3551 +msgid "None##iis0" +msgstr "" + +#: src/gui/settings.cpp:3555 +msgid "Graphical icons##iis1" +msgstr "" + +#: src/gui/settings.cpp:3559 +msgid "Letter icons##iis2" +msgstr "" + +#: src/gui/settings.cpp:3566 +msgid "Colorize instrument editor using instrument type" +msgstr "Zmień kolory edytora instrumentów zgodnie z typem instrumentu" + +#: src/gui/settings.cpp:3572 src/gui/settings.cpp:4014 +msgid "Macro Editor" +msgstr "Edytor makr" + +#: src/gui/settings.cpp:3573 +msgid "Macro editor layout:" +msgstr "Układ edytora makr:" + +#: src/gui/settings.cpp:3575 +msgid "Unified##mel0" +msgstr "" + +#: src/gui/settings.cpp:3585 +msgid "Grid##mel2" +msgstr "" + +#: src/gui/settings.cpp:3589 +msgid "Single (with list)##mel3" +msgstr "" + +#: src/gui/settings.cpp:3602 +msgid "Use classic macro editor vertical slider" +msgstr "Użyj klasycznego pionowego paska przewijania" + +#: src/gui/settings.cpp:3608 +msgid "Wave Editor" +msgstr "Edytor fal" + +#: src/gui/settings.cpp:3610 +msgid "Use compact wave editor" +msgstr "Używaj zwartego edyora fal" + +#: src/gui/settings.cpp:3616 src/gui/settings.cpp:3991 +msgid "FM Editor" +msgstr "Edytor instrumentów FM" + +#: src/gui/settings.cpp:3617 +msgid "FM parameter names:" +msgstr "Nazwy parametrów FM:" + +#: src/gui/settings.cpp:3619 +msgid "Friendly##fmn0" +msgstr "" + +#: src/gui/settings.cpp:3623 +msgid "Technical##fmn1" +msgstr "" + +#: src/gui/settings.cpp:3627 +msgid "Technical (alternate)##fmn2" +msgstr "" + +#: src/gui/settings.cpp:3634 +msgid "Use standard OPL waveform names" +msgstr "Używaj standardowych nazw kształtów fal OPL" + +#: src/gui/settings.cpp:3639 +msgid "FM parameter editor layout:" +msgstr "Układ edytora parametrów FM" + +#: src/gui/settings.cpp:3641 +msgid "Modern##fml0" +msgstr "" + +#: src/gui/settings.cpp:3645 +msgid "Compact (2x2, classic)##fml1" +msgstr "" + +#: src/gui/settings.cpp:3649 +msgid "Compact (1x4)##fml2" +msgstr "" + +#: src/gui/settings.cpp:3653 +msgid "Compact (4x1)##fml3" +msgstr "" + +#: src/gui/settings.cpp:3657 +msgid "Alternate (2x2)##fml4" +msgstr "" + +#: src/gui/settings.cpp:3661 +msgid "Alternate (1x4)##fml5" +msgstr "" + +#: src/gui/settings.cpp:3665 +msgid "Alternate (4x1)##fml5" +msgstr "" + +#: src/gui/settings.cpp:3671 +msgid "Position of Sustain in FM editor:" +msgstr "Pozycja parametru \"Podtrzymanie\" w edytorze:" + +#: src/gui/settings.cpp:3673 +msgid "Between Decay and Sustain Rate##susp0" +msgstr "" + +#: src/gui/settings.cpp:3677 +msgid "After Release Rate##susp1" +msgstr "" + +#: src/gui/settings.cpp:3684 +msgid "Use separate colors for carriers/modulators in FM editor" +msgstr "Używaj odmiennych kolorów dla fali nośnych/modulatorów w edytorze FM" + +#: src/gui/settings.cpp:3690 +msgid "Unsigned FM detune values" +msgstr "Bezznakowe wartości rozstrojenia FM" + +#: src/gui/settings.cpp:3697 +msgid "Chip memory usage unit:" +msgstr "Jednostki wyświatlania obciążenia pamięci układu:" + +#: src/gui/settings.cpp:3699 +msgid "Bytes##MUU0" +msgstr "" + +#: src/gui/settings.cpp:3703 +msgid "Kilobytes##MUU1" +msgstr "" + +#: src/gui/settings.cpp:3712 +msgid "Rounded corners" +msgstr "Zaokrąglone rogi" + +#: src/gui/settings.cpp:3718 src/gui/settings.cpp:3896 +#: src/gui/settings.cpp:3938 +msgid "Border" +msgstr "Krawędź" + +#: src/gui/settings.cpp:3730 +msgid "Anti-aliased" +msgstr "Z wygładzaniem" + +#: src/gui/settings.cpp:3736 +msgid "Fill entire window" +msgstr "Wypełń całe okno" + +#: src/gui/settings.cpp:3742 +msgid "Waveform goes out of bounds" +msgstr "Fala wychodzi poza okno" + +#: src/gui/settings.cpp:3754 +msgid "Windows" +msgstr "Okna" + +#: src/gui/settings.cpp:3756 +msgid "Rounded window corners" +msgstr "Zaokrąglone krawędzie okien" + +#: src/gui/settings.cpp:3762 +msgid "Rounded buttons" +msgstr "Zaokrąglone przyciski" + +#: src/gui/settings.cpp:3768 +msgid "Rounded menu corners" +msgstr "Zaokrąglone krawędzie menu" + +#: src/gui/settings.cpp:3774 +msgid "Rounded tabs" +msgstr "Zaokrąglone krawędzie zakładek" + +#: src/gui/settings.cpp:3780 +msgid "Rounded scrollbars" +msgstr "Zaokrąglone paski przewijania" + +#: src/gui/settings.cpp:3786 +msgid "Borders around widgets" +msgstr "Obrawowania wokół widżetów" + +#: src/gui/settings.cpp:3795 +msgid "Color scheme" +msgstr "Schemat kolorów" + +#: src/gui/settings.cpp:3805 +msgid "Are you sure you want to reset the color scheme?" +msgstr "Czy jesteś pewien że chcesz zresetować schemat kolorów?" + +#: src/gui/settings.cpp:3808 +msgid "Guru mode" +msgstr "" + +#: src/gui/settings.cpp:3815 src/gui/settings.cpp:3845 +msgid "Frame shading" +msgstr "Cieniowanie ramki" + +#: src/gui/settings.cpp:3821 +msgid "Color scheme type:" +msgstr "" + +#: src/gui/settings.cpp:3823 +msgid "Dark##gcb0" +msgstr "" + +#: src/gui/settings.cpp:3828 +msgid "Light##gcb1" +msgstr "" + +#: src/gui/settings.cpp:3835 +msgid "Accent colors:" +msgstr "" + +#: src/gui/settings.cpp:3837 +msgid "Primary" +msgstr "" + +#: src/gui/settings.cpp:3838 +msgid "Secondary" +msgstr "" + +#: src/gui/settings.cpp:3852 +msgid "Button" +msgstr "" + +#: src/gui/settings.cpp:3853 +msgid "Button (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3854 +msgid "Button (active)" +msgstr "" + +#: src/gui/settings.cpp:3855 +msgid "Tab" +msgstr "" + +#: src/gui/settings.cpp:3856 +msgid "Tab (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3857 +msgid "Tab (active)" +msgstr "" + +#: src/gui/settings.cpp:3858 +msgid "Tab (unfocused)" +msgstr "" + +#: src/gui/settings.cpp:3859 +msgid "Tab (unfocused and active)" +msgstr "" + +#: src/gui/settings.cpp:3860 +msgid "ImGui header" +msgstr "" + +#: src/gui/settings.cpp:3861 +msgid "ImGui header (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3862 +msgid "ImGui header (active)" +msgstr "" + +#: src/gui/settings.cpp:3863 +msgid "Resize grip" +msgstr "" + +#: src/gui/settings.cpp:3864 +msgid "Resize grip (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3865 +msgid "Resize grip (active)" +msgstr "" + +#: src/gui/settings.cpp:3866 +msgid "Widget background" +msgstr "" + +#: src/gui/settings.cpp:3867 +msgid "Widget background (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3868 +msgid "Widget background (active)" +msgstr "" + +#: src/gui/settings.cpp:3869 +msgid "Slider grab" +msgstr "" + +#: src/gui/settings.cpp:3870 +msgid "Slider grab (active)" +msgstr "" + +#: src/gui/settings.cpp:3871 +msgid "Title background (active)" +msgstr "" + +#: src/gui/settings.cpp:3872 +msgid "Checkbox/radio button mark" +msgstr "" + +#: src/gui/settings.cpp:3873 +msgid "Text selection" +msgstr "" + +#: src/gui/settings.cpp:3874 +msgid "Line plot" +msgstr "" + +#: src/gui/settings.cpp:3875 +msgid "Line plot (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3876 +msgid "Histogram plot" +msgstr "" + +#: src/gui/settings.cpp:3877 +msgid "Histogram plot (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3878 +msgid "Table row (even)" +msgstr "" + +#: src/gui/settings.cpp:3879 +msgid "Table row (odd)" +msgstr "" + +#: src/gui/settings.cpp:3884 +msgid "Interface (other)" +msgstr "Interfejs (inne)" + +#: src/gui/settings.cpp:3886 +msgid "Window background" +msgstr "" + +#: src/gui/settings.cpp:3887 +msgid "Sub-window background" +msgstr "" + +#: src/gui/settings.cpp:3888 +msgid "Pop-up background" +msgstr "" + +#: src/gui/settings.cpp:3889 +msgid "Modal backdrop" +msgstr "" + +#: src/gui/settings.cpp:3890 +msgid "Header" +msgstr "" + +#: src/gui/settings.cpp:3892 +msgid "Text (disabled)" +msgstr "" + +#: src/gui/settings.cpp:3893 +msgid "Title bar (inactive)" +msgstr "" + +#: src/gui/settings.cpp:3894 +msgid "Title bar (collapsed)" +msgstr "" + +#: src/gui/settings.cpp:3895 +msgid "Menu bar" +msgstr "" + +#: src/gui/settings.cpp:3897 +msgid "Border shadow" +msgstr "" + +#: src/gui/settings.cpp:3898 +msgid "Scroll bar" +msgstr "" + +#: src/gui/settings.cpp:3899 +msgid "Scroll bar (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3900 +msgid "Scroll bar (clicked)" +msgstr "" + +#: src/gui/settings.cpp:3901 +msgid "Scroll bar background" +msgstr "" + +#: src/gui/settings.cpp:3902 +msgid "Separator" +msgstr "" + +#: src/gui/settings.cpp:3903 +msgid "Separator (hover)" +msgstr "" + +#: src/gui/settings.cpp:3904 +msgid "Separator (active)" +msgstr "" + +#: src/gui/settings.cpp:3905 +msgid "Docking preview" +msgstr "" + +#: src/gui/settings.cpp:3906 +msgid "Docking empty" +msgstr "" + +#: src/gui/settings.cpp:3907 +msgid "Table header" +msgstr "" + +#: src/gui/settings.cpp:3908 +msgid "Table border (hard)" +msgstr "" + +#: src/gui/settings.cpp:3909 +msgid "Table border (soft)" +msgstr "" + +#: src/gui/settings.cpp:3910 +msgid "Drag and drop target" +msgstr "" + +#: src/gui/settings.cpp:3911 +msgid "Window switcher (highlight)" +msgstr "" + +#: src/gui/settings.cpp:3912 +msgid "Window switcher backdrop" +msgstr "" + +#: src/gui/settings.cpp:3915 src/gui/settings.cpp:4136 src/gui/guiConst.cpp:235 +msgid "Miscellaneous" +msgstr "Inne" + +#: src/gui/settings.cpp:3916 +msgid "Toggle on" +msgstr "" + +#: src/gui/settings.cpp:3917 +msgid "Toggle off" +msgstr "" + +#: src/gui/settings.cpp:3918 +msgid "Playback status" +msgstr "" + +#: src/gui/settings.cpp:3919 +msgid "Destructive hint" +msgstr "" + +#: src/gui/settings.cpp:3920 +msgid "Warning hint" +msgstr "" + +#: src/gui/settings.cpp:3921 +msgid "Error hint" +msgstr "" + +#: src/gui/settings.cpp:3924 +msgid "File Picker (built-in)" +msgstr "Wbudowany wybierak plików" + +#: src/gui/settings.cpp:3926 +msgid "Song (native)" +msgstr "" + +#: src/gui/settings.cpp:3927 +msgid "Song (import)" +msgstr "" + +#: src/gui/settings.cpp:3933 +msgid "Font" +msgstr "" + +#: src/gui/settings.cpp:3939 +msgid "Background (top-left)" +msgstr "" + +#: src/gui/settings.cpp:3940 +msgid "Background (top-right)" +msgstr "" + +#: src/gui/settings.cpp:3941 +msgid "Background (bottom-left)" +msgstr "" + +#: src/gui/settings.cpp:3942 +msgid "Background (bottom-right)" +msgstr "" + +#: src/gui/settings.cpp:3943 src/gui/settings.cpp:3998 +#: src/gui/settings.cpp:4166 src/gui/waveEdit.cpp:730 src/gui/insEdit.cpp:50 +#: src/gui/insEdit.cpp:4148 src/gui/insEdit.cpp:5812 src/gui/insEdit.cpp:6940 +#: src/gui/insEdit.cpp:6949 src/gui/insEdit.cpp:6963 src/gui/insEdit.cpp:6980 +#: src/gui/insEdit.cpp:6991 src/gui/insEdit.cpp:7004 src/gui/insEdit.cpp:7018 +#: src/gui/insEdit.cpp:7025 src/gui/insEdit.cpp:7035 src/gui/insEdit.cpp:7041 +#: src/gui/insEdit.cpp:7050 src/gui/insEdit.cpp:7074 src/gui/insEdit.cpp:7084 +#: src/gui/insEdit.cpp:7094 src/gui/insEdit.cpp:7101 src/gui/insEdit.cpp:7116 +#: src/gui/insEdit.cpp:7131 src/gui/insEdit.cpp:7151 src/gui/insEdit.cpp:7158 +#: src/gui/insEdit.cpp:7200 src/gui/insEdit.cpp:7211 src/gui/insEdit.cpp:7224 +#: src/gui/insEdit.cpp:7349 src/gui/insEdit.cpp:7425 src/gui/insEdit.cpp:7445 +#: src/gui/insEdit.cpp:7453 src/gui/insEdit.cpp:7473 +msgid "Waveform" +msgstr "Kształt fali" + +#: src/gui/settings.cpp:3944 +msgid "Waveform (clip)" +msgstr "" + +#: src/gui/settings.cpp:3945 +msgid "Reference" +msgstr "" + +#: src/gui/settings.cpp:3946 +msgid "Guide" +msgstr "" + +#: src/gui/settings.cpp:3948 +msgid "Wave (non-mono)" +msgstr "Fala (nie mono)" + +#: src/gui/settings.cpp:3949 +msgid "Waveform (1)" +msgstr "" + +#: src/gui/settings.cpp:3950 +msgid "Waveform (2)" +msgstr "" + +#: src/gui/settings.cpp:3951 +msgid "Waveform (3)" +msgstr "" + +#: src/gui/settings.cpp:3952 +msgid "Waveform (4)" +msgstr "" + +#: src/gui/settings.cpp:3953 +msgid "Waveform (5)" +msgstr "" + +#: src/gui/settings.cpp:3954 +msgid "Waveform (6)" +msgstr "" + +#: src/gui/settings.cpp:3955 +msgid "Waveform (7)" +msgstr "" + +#: src/gui/settings.cpp:3956 +msgid "Waveform (8)" +msgstr "" + +#: src/gui/settings.cpp:3957 +msgid "Waveform (9)" +msgstr "" + +#: src/gui/settings.cpp:3958 +msgid "Waveform (10)" +msgstr "" + +#: src/gui/settings.cpp:3959 +msgid "Waveform (11)" +msgstr "" + +#: src/gui/settings.cpp:3960 +msgid "Waveform (12)" +msgstr "" + +#: src/gui/settings.cpp:3961 +msgid "Waveform (13)" +msgstr "" + +#: src/gui/settings.cpp:3962 +msgid "Waveform (14)" +msgstr "" + +#: src/gui/settings.cpp:3963 +msgid "Waveform (15)" +msgstr "" + +#: src/gui/settings.cpp:3964 +msgid "Waveform (16)" +msgstr "" + +#: src/gui/settings.cpp:3972 +msgid "Clip" +msgstr "" + +#: src/gui/settings.cpp:3976 +msgid "Order number" +msgstr "" + +#: src/gui/settings.cpp:3977 +msgid "Playing order background" +msgstr "" + +#: src/gui/settings.cpp:3978 +msgid "Song loop" +msgstr "" + +#: src/gui/settings.cpp:3979 +msgid "Selected order" +msgstr "" + +#: src/gui/settings.cpp:3980 +msgid "Similar patterns" +msgstr "" + +#: src/gui/settings.cpp:3981 +msgid "Inactive patterns" +msgstr "" + +#: src/gui/settings.cpp:3984 +msgid "Envelope View" +msgstr "Podgląd obwiedni" + +#: src/gui/settings.cpp:3985 src/gui/insEdit.cpp:540 src/gui/insEdit.cpp:3547 +#: src/gui/insEdit.cpp:3548 src/gui/insEdit.cpp:4081 src/gui/insEdit.cpp:4151 +#: src/gui/insEdit.cpp:4790 src/gui/insEdit.cpp:5861 src/gui/insEdit.cpp:5862 +#: src/gui/insEdit.cpp:6487 src/gui/insEdit.cpp:6488 src/gui/insEdit.cpp:6555 +#: src/gui/insEdit.cpp:6556 src/gui/insEdit.cpp:6995 src/gui/insEdit.cpp:7009 +#: src/gui/insEdit.cpp:7029 src/gui/insEdit.cpp:7166 +#, c-format +msgid "Envelope" +msgstr "Obwiednia" + +#: src/gui/settings.cpp:3986 +msgid "Sustain guide" +msgstr "" + +#: src/gui/settings.cpp:3992 +msgid "Algorithm background" +msgstr "" + +#: src/gui/settings.cpp:3993 +msgid "Algorithm lines" +msgstr "" + +#: src/gui/settings.cpp:3994 +msgid "Modulator" +msgstr "" + +#: src/gui/settings.cpp:3995 +msgid "Carrier" +msgstr "Fala nośna" + +#: src/gui/settings.cpp:3997 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:4146 +msgid "SSG-EG" +msgstr "SSG-EG" + +#: src/gui/settings.cpp:4000 +msgid "" +"(the following colors only apply when \"Use separate colors for carriers/" +"modulators in FM editor\" is on!)" +msgstr "" + +#: src/gui/settings.cpp:4002 +msgid "Mod. accent (primary)" +msgstr "" + +#: src/gui/settings.cpp:4003 +msgid "Mod. accent (secondary)" +msgstr "" + +#: src/gui/settings.cpp:4004 +msgid "Mod. border" +msgstr "" + +#: src/gui/settings.cpp:4005 +msgid "Mod. border shadow" +msgstr "" + +#: src/gui/settings.cpp:4007 +msgid "Car. accent (primary)" +msgstr "" + +#: src/gui/settings.cpp:4008 +msgid "Car. accent (secondary)" +msgstr "" + +#: src/gui/settings.cpp:4009 +msgid "Car. border" +msgstr "" + +#: src/gui/settings.cpp:4010 +msgid "Car. border shadow" +msgstr "" + +#: src/gui/settings.cpp:4016 src/gui/guiConst.cpp:227 src/gui/insEdit.cpp:6924 +#: src/gui/insEdit.cpp:6931 src/gui/insEdit.cpp:6942 src/gui/insEdit.cpp:6950 +#: src/gui/insEdit.cpp:6971 src/gui/insEdit.cpp:6983 src/gui/insEdit.cpp:6993 +#: src/gui/insEdit.cpp:7006 src/gui/insEdit.cpp:7019 src/gui/insEdit.cpp:7028 +#: src/gui/insEdit.cpp:7036 src/gui/insEdit.cpp:7042 src/gui/insEdit.cpp:7052 +#: src/gui/insEdit.cpp:7061 src/gui/insEdit.cpp:7068 src/gui/insEdit.cpp:7075 +#: src/gui/insEdit.cpp:7087 src/gui/insEdit.cpp:7095 src/gui/insEdit.cpp:7102 +#: src/gui/insEdit.cpp:7109 src/gui/insEdit.cpp:7117 src/gui/insEdit.cpp:7123 +#: src/gui/insEdit.cpp:7132 src/gui/insEdit.cpp:7143 src/gui/insEdit.cpp:7153 +#: src/gui/insEdit.cpp:7161 src/gui/insEdit.cpp:7174 src/gui/insEdit.cpp:7182 +#: src/gui/insEdit.cpp:7193 src/gui/insEdit.cpp:7203 src/gui/insEdit.cpp:7213 +#: src/gui/insEdit.cpp:7227 src/gui/insEdit.cpp:7233 src/gui/insEdit.cpp:7241 +#: src/gui/insEdit.cpp:7248 src/gui/insEdit.cpp:7272 src/gui/insEdit.cpp:7280 +#: src/gui/insEdit.cpp:7289 src/gui/insEdit.cpp:7298 src/gui/insEdit.cpp:7306 +#: src/gui/insEdit.cpp:7323 src/gui/insEdit.cpp:7331 src/gui/insEdit.cpp:7337 +#: src/gui/insEdit.cpp:7344 src/gui/insEdit.cpp:7350 src/gui/insEdit.cpp:7355 +#: src/gui/insEdit.cpp:7361 src/gui/insEdit.cpp:7368 src/gui/insEdit.cpp:7376 +#: src/gui/insEdit.cpp:7385 src/gui/insEdit.cpp:7393 src/gui/insEdit.cpp:7401 +#: src/gui/insEdit.cpp:7413 src/gui/insEdit.cpp:7428 src/gui/insEdit.cpp:7439 +#: src/gui/insEdit.cpp:7447 src/gui/insEdit.cpp:7456 src/gui/insEdit.cpp:7466 +#: src/gui/insEdit.cpp:7474 +msgid "Pitch" +msgstr "Wysokość" + +#: src/gui/settings.cpp:4021 +msgid "Instrument Types" +msgstr "Typy instrumentów" + +#: src/gui/settings.cpp:4022 +msgid "FM (OPN)" +msgstr "" + +#: src/gui/settings.cpp:4023 +msgid "SN76489/Sega PSG" +msgstr "" + +#: src/gui/settings.cpp:4026 +msgid "C64" +msgstr "" + +#: src/gui/settings.cpp:4027 +msgid "Amiga/Generic Sample" +msgstr "" + +#: src/gui/settings.cpp:4028 +msgid "PC Engine" +msgstr "" + +#: src/gui/settings.cpp:4029 +msgid "AY-3-8910/SSG" +msgstr "" + +#: src/gui/settings.cpp:4030 +msgid "AY8930" +msgstr "" + +#: src/gui/settings.cpp:4031 +msgid "TIA" +msgstr "" + +#: src/gui/settings.cpp:4032 +msgid "SAA1099" +msgstr "" + +#: src/gui/settings.cpp:4033 +msgid "VIC" +msgstr "" + +#: src/gui/settings.cpp:4034 +msgid "PET" +msgstr "" + +#: src/gui/settings.cpp:4035 +msgid "VRC6" +msgstr "" + +#: src/gui/settings.cpp:4036 src/gui/guiConst.cpp:149 +msgid "VRC6 (saw)" +msgstr "VRC6 (fala piłokształtna)" + +#: src/gui/settings.cpp:4037 +msgid "FM (OPLL)" +msgstr "" + +#: src/gui/settings.cpp:4038 +msgid "FM (OPL)" +msgstr "" + +#: src/gui/settings.cpp:4043 +msgid "FM (OPZ)" +msgstr "" + +#: src/gui/settings.cpp:4045 +msgid "PC Beeper" +msgstr "" + +#: src/gui/settings.cpp:4047 +msgid "Lynx" +msgstr "" + +#: src/gui/settings.cpp:4049 +msgid "X1-010" +msgstr "" + +#: src/gui/settings.cpp:4050 +msgid "ES5506" +msgstr "" + +#: src/gui/settings.cpp:4053 +msgid "Sound Unit" +msgstr "Sound Unit" + +#: src/gui/settings.cpp:4055 +msgid "FM (OPL Drums)" +msgstr "" + +#: src/gui/settings.cpp:4056 +msgid "FM (OPM)" +msgstr "" + +#: src/gui/settings.cpp:4057 +msgid "NES" +msgstr "" + +#: src/gui/settings.cpp:4058 +msgid "MSM6258" +msgstr "" + +#: src/gui/settings.cpp:4059 +msgid "MSM6295" +msgstr "" + +#: src/gui/settings.cpp:4060 +msgid "ADPCM-A" +msgstr "" + +#: src/gui/settings.cpp:4062 +msgid "Sega PCM" +msgstr "" + +#: src/gui/settings.cpp:4063 +msgid "QSound" +msgstr "QSound" + +#: src/gui/settings.cpp:4064 +msgid "YMZ280B" +msgstr "" + +#: src/gui/settings.cpp:4065 +msgid "RF5C68" +msgstr "" + +#: src/gui/settings.cpp:4066 +msgid "MSM5232" +msgstr "" + +#: src/gui/settings.cpp:4067 +msgid "K007232" +msgstr "" + +#: src/gui/settings.cpp:4068 +msgid "GA20" +msgstr "" + +#: src/gui/settings.cpp:4070 +msgid "SM8521" +msgstr "" + +#: src/gui/settings.cpp:4071 +msgid "PV-1000" +msgstr "" + +#: src/gui/settings.cpp:4072 +msgid "K053260" +msgstr "" + +#: src/gui/settings.cpp:4073 +msgid "TED" +msgstr "" + +#: src/gui/settings.cpp:4074 +msgid "C140" +msgstr "" + +#: src/gui/settings.cpp:4075 +msgid "C219" +msgstr "" + +#: src/gui/settings.cpp:4076 +msgid "ESFM" +msgstr "" + +#: src/gui/settings.cpp:4077 src/gui/guiConst.cpp:179 +msgid "PowerNoise (noise)" +msgstr "PowerNoise (szum)" + +#: src/gui/settings.cpp:4078 src/gui/guiConst.cpp:180 +msgid "PowerNoise (slope)" +msgstr "PowerNoise (spadek)" + +#: src/gui/settings.cpp:4081 +msgid "GBA DMA" +msgstr "" + +#: src/gui/settings.cpp:4082 +msgid "GBA MinMod" +msgstr "" + +#: src/gui/settings.cpp:4085 +msgid "Other/Unknown" +msgstr "" + +#: src/gui/settings.cpp:4089 +msgid "Single color (background)" +msgstr "" + +#: src/gui/settings.cpp:4090 +msgid "Single color (text)" +msgstr "" + +#: src/gui/settings.cpp:4091 src/gui/guiConst.cpp:1393 src/gui/waveEdit.cpp:668 +msgid "FM" +msgstr "" + +#: src/gui/settings.cpp:4096 +msgid "FM operator" +msgstr "" + +#: src/gui/settings.cpp:4097 +msgid "Muted" +msgstr "" + +#: src/gui/settings.cpp:4101 +msgid "Playhead" +msgstr "" + +#: src/gui/settings.cpp:4102 +msgid "Editing" +msgstr "" + +#: src/gui/settings.cpp:4103 +msgid "Editing (will clone)" +msgstr "" + +#: src/gui/settings.cpp:4104 +msgid "Cursor" +msgstr "" + +#: src/gui/settings.cpp:4105 +msgid "Cursor (hovered)" +msgstr "" + +#: src/gui/settings.cpp:4106 +msgid "Cursor (clicked)" +msgstr "" + +#: src/gui/settings.cpp:4107 src/gui/settings.cpp:4172 +#: src/gui/findReplace.cpp:791 +msgid "Selection" +msgstr "Zaznaczenie" + +#: src/gui/settings.cpp:4108 +msgid "Selection (hovered)" +msgstr "" + +#: src/gui/settings.cpp:4109 +msgid "Selection (clicked)" +msgstr "" + +#: src/gui/settings.cpp:4110 +msgid "Highlight 1" +msgstr "" + +#: src/gui/settings.cpp:4111 +msgid "Highlight 2" +msgstr "" + +#: src/gui/settings.cpp:4112 +msgid "Row number" +msgstr "" + +#: src/gui/settings.cpp:4113 +msgid "Row number (highlight 1)" +msgstr "" + +#: src/gui/settings.cpp:4114 +msgid "Row number (highlight 2)" +msgstr "" + +#: src/gui/settings.cpp:4116 +msgid "Note (highlight 1)" +msgstr "" + +#: src/gui/settings.cpp:4117 +msgid "Note (highlight 2)" +msgstr "" + +#: src/gui/settings.cpp:4118 +msgid "Blank" +msgstr "" + +#: src/gui/settings.cpp:4119 +msgid "Blank (highlight 1)" +msgstr "" + +#: src/gui/settings.cpp:4120 +msgid "Blank (highlight 2)" +msgstr "" + +#: src/gui/settings.cpp:4122 +msgid "Instrument (invalid type)" +msgstr "" + +#: src/gui/settings.cpp:4123 +msgid "Instrument (out of range)" +msgstr "" + +#: src/gui/settings.cpp:4124 +msgid "Volume (0%)" +msgstr "" + +#: src/gui/settings.cpp:4125 +msgid "Volume (50%)" +msgstr "" + +#: src/gui/settings.cpp:4126 +msgid "Volume (100%)" +msgstr "" + +#: src/gui/settings.cpp:4128 +msgid "Pitch effect" +msgstr "" + +#: src/gui/settings.cpp:4129 +msgid "Volume effect" +msgstr "" + +#: src/gui/settings.cpp:4130 +msgid "Panning effect" +msgstr "" + +#: src/gui/settings.cpp:4131 +msgid "Song effect" +msgstr "" + +#: src/gui/settings.cpp:4132 +msgid "Time effect" +msgstr "" + +#: src/gui/settings.cpp:4133 +msgid "Speed effect" +msgstr "" + +#: src/gui/settings.cpp:4134 +msgid "Primary specific effect" +msgstr "" + +#: src/gui/settings.cpp:4135 +msgid "Secondary specific effect" +msgstr "" + +#: src/gui/settings.cpp:4137 +msgid "External command output" +msgstr "" + +#: src/gui/settings.cpp:4138 +msgid "Status: off/disabled" +msgstr "" + +#: src/gui/settings.cpp:4139 +msgid "Status: off + macro rel" +msgstr "" + +#: src/gui/settings.cpp:4140 +msgid "Status: on + macro rel" +msgstr "" + +#: src/gui/settings.cpp:4141 +msgid "Status: on" +msgstr "" + +#: src/gui/settings.cpp:4142 +msgid "Status: volume" +msgstr "" + +#: src/gui/settings.cpp:4143 +msgid "Status: pitch" +msgstr "" + +#: src/gui/settings.cpp:4144 +msgid "Status: panning" +msgstr "" + +#: src/gui/settings.cpp:4145 +msgid "Status: chip (primary)" +msgstr "" + +#: src/gui/settings.cpp:4146 +msgid "Status: chip (secondary)" +msgstr "" + +#: src/gui/settings.cpp:4147 +msgid "Status: mixing" +msgstr "" + +#: src/gui/settings.cpp:4148 +msgid "Status: DSP effect" +msgstr "" + +#: src/gui/settings.cpp:4149 +msgid "Status: note altering" +msgstr "" + +#: src/gui/settings.cpp:4150 +msgid "Status: misc color 1" +msgstr "" + +#: src/gui/settings.cpp:4151 +msgid "Status: misc color 2" +msgstr "" + +#: src/gui/settings.cpp:4152 +msgid "Status: misc color 3" +msgstr "" + +#: src/gui/settings.cpp:4153 +msgid "Status: attack" +msgstr "" + +#: src/gui/settings.cpp:4154 +msgid "Status: decay" +msgstr "" + +#: src/gui/settings.cpp:4155 +msgid "Status: sustain" +msgstr "" + +#: src/gui/settings.cpp:4156 +msgid "Status: release" +msgstr "" + +#: src/gui/settings.cpp:4157 +msgid "Status: decrease linear" +msgstr "" + +#: src/gui/settings.cpp:4158 +msgid "Status: decrease exp" +msgstr "" + +#: src/gui/settings.cpp:4159 +msgid "Status: increase" +msgstr "" + +#: src/gui/settings.cpp:4160 +msgid "Status: bent" +msgstr "" + +#: src/gui/settings.cpp:4161 +msgid "Status: direct" +msgstr "" + +#: src/gui/settings.cpp:4164 src/gui/guiConst.cpp:586 src/gui/sampleEdit.cpp:96 +msgid "Sample Editor" +msgstr "Edytor sampli" + +#: src/gui/settings.cpp:4167 +msgid "Time background" +msgstr "" + +#: src/gui/settings.cpp:4168 +msgid "Time text" +msgstr "" + +#: src/gui/settings.cpp:4169 +msgid "Loop region" +msgstr "" + +#: src/gui/settings.cpp:4170 +msgid "Center guide" +msgstr "" + +#: src/gui/settings.cpp:4171 +msgid "Grid" +msgstr "" + +#: src/gui/settings.cpp:4173 +msgid "Selection points" +msgstr "" + +#: src/gui/settings.cpp:4174 +msgid "Preview needle" +msgstr "" + +#: src/gui/settings.cpp:4175 +msgid "Playing needles" +msgstr "" + +#: src/gui/settings.cpp:4176 +msgid "Loop markers" +msgstr "" + +#: src/gui/settings.cpp:4177 +msgid "Chip select: disabled" +msgstr "" + +#: src/gui/settings.cpp:4178 +msgid "Chip select: enabled" +msgstr "" + +#: src/gui/settings.cpp:4179 +msgid "Chip select: enabled (failure)" +msgstr "" + +#: src/gui/settings.cpp:4182 src/gui/guiConst.cpp:602 src/gui/patManager.cpp:35 +msgid "Pattern Manager" +msgstr "Menedżer wzorców" + +#: src/gui/settings.cpp:4183 +msgid "Unallocated" +msgstr "Nieprzypisany" + +#: src/gui/settings.cpp:4184 +msgid "Unused" +msgstr "Nieużywany" + +#: src/gui/settings.cpp:4185 +msgid "Used" +msgstr "Używany" + +#: src/gui/settings.cpp:4186 +msgid "Overused" +msgstr "Nadużywany" + +#: src/gui/settings.cpp:4187 +msgid "Really overused" +msgstr "Bardzo nadużywany" + +#: src/gui/settings.cpp:4188 +msgid "Combo Breaker" +msgstr "Combo Breaker" + +#: src/gui/settings.cpp:4191 src/gui/guiConst.cpp:599 src/gui/piano.cpp:63 +msgid "Piano" +msgstr "Klawiatura fortepianu" + +#: src/gui/settings.cpp:4193 +msgid "Upper key" +msgstr "Górny klawisz" + +#: src/gui/settings.cpp:4194 +msgid "Upper key (feedback)" +msgstr "" + +#: src/gui/settings.cpp:4195 +msgid "Upper key (pressed)" +msgstr "" + +#: src/gui/settings.cpp:4196 +msgid "Lower key" +msgstr "Dolny klawisz" + +#: src/gui/settings.cpp:4197 +msgid "Lower key (feedback)" +msgstr "" + +#: src/gui/settings.cpp:4198 +msgid "Lower key (pressed)" +msgstr "Dolny klawisz (naciśnięty)" + +#: src/gui/settings.cpp:4201 src/gui/clock.cpp:31 src/gui/guiConst.cpp:610 +msgid "Clock" +msgstr "Zegar" + +#: src/gui/settings.cpp:4202 +msgid "Clock text" +msgstr "Napisy na zegarze" + +#: src/gui/settings.cpp:4203 +msgid "Beat (off)" +msgstr "" + +#: src/gui/settings.cpp:4204 +msgid "Beat (on)" +msgstr "" + +#: src/gui/settings.cpp:4209 +msgid "PortSet" +msgstr "" + +#: src/gui/settings.cpp:4210 +msgid "Port" +msgstr "Port" + +#: src/gui/settings.cpp:4211 +msgid "Port (hidden/unavailable)" +msgstr "Port (ukryty/niedostępny)" + +#: src/gui/settings.cpp:4212 +msgid "Connection (selected)" +msgstr "Połączenie (wybrane)" + +#: src/gui/settings.cpp:4213 +msgid "Connection (other)" +msgstr "Połączenie (inne)" + +#: src/gui/settings.cpp:4219 +msgid "Waveform data" +msgstr "Dane fali" + +#: src/gui/settings.cpp:4222 +msgid "Reserved" +msgstr "Zarezerwowane" + +#: src/gui/settings.cpp:4224 +msgid "Sample (alternate 1)" +msgstr "" + +#: src/gui/settings.cpp:4225 +msgid "Sample (alternate 2)" +msgstr "" + +#: src/gui/settings.cpp:4226 +msgid "Sample (alternate 3)" +msgstr "" + +#: src/gui/settings.cpp:4227 +msgid "Wave RAM" +msgstr "RAM na fale" + +#: src/gui/settings.cpp:4228 +msgid "Wavetable (static)" +msgstr "Tablica fal (statyczna)" + +#: src/gui/settings.cpp:4229 +msgid "Echo buffer" +msgstr "Bufor echo" + +#: src/gui/settings.cpp:4230 +msgid "Namco 163 load pos" +msgstr "Pozycja wczytywania Namco 163" + +#: src/gui/settings.cpp:4231 +msgid "Namco 163 play pos" +msgstr "Pozycja odtwarzania Namco 163" + +#: src/gui/settings.cpp:4232 +msgid "Sample (bank 0)" +msgstr "Sampel (bank 0)" + +#: src/gui/settings.cpp:4233 +msgid "Sample (bank 1)" +msgstr "Sampel (bank 1)" + +#: src/gui/settings.cpp:4234 +msgid "Sample (bank 2)" +msgstr "Sampel (bank 2)" + +#: src/gui/settings.cpp:4235 +msgid "Sample (bank 3)" +msgstr "Sampel (bank 3)" + +#: src/gui/settings.cpp:4236 +msgid "Sample (bank 4)" +msgstr "Sampel (bank 4)" + +#: src/gui/settings.cpp:4237 +msgid "Sample (bank 5)" +msgstr "Sampel (bank 5)" + +#: src/gui/settings.cpp:4238 +msgid "Sample (bank 6)" +msgstr "Sampel (bank 6)" + +#: src/gui/settings.cpp:4239 +msgid "Sample (bank 7)" +msgstr "Sampel (bank 7)" + +#: src/gui/settings.cpp:4244 +msgid "Log level: Error" +msgstr "Poziom wpisu w logu: Błąd" + +#: src/gui/settings.cpp:4245 +msgid "Log level: Warning" +msgstr "Poziom wpisu w logu: Ostrzeżenie" + +#: src/gui/settings.cpp:4246 +msgid "Log level: Info" +msgstr "Poziom wpisu w logu: Informacja" + +#: src/gui/settings.cpp:4247 +msgid "Log level: Debug" +msgstr "Poziom wpisu w logu: Debug" + +#: src/gui/settings.cpp:4248 +msgid "Log level: Trace/Verbose" +msgstr "Poziom wpisu w logu: Diagnostyka/Szczegóły" + +#: src/gui/settings.cpp:4253 +msgid "Backup" +msgstr "Kopia zapasowa" + +#: src/gui/settings.cpp:4258 +msgid "Enable backup system" +msgstr "Włącz tworzenie kopii zapasowych" + +#: src/gui/settings.cpp:4263 +msgid "Interval (in seconds)" +msgstr "Przerwa (w sekundach)" + +#: src/gui/settings.cpp:4268 +msgid "Backups per file" +msgstr "Ilość kopii zapasowych na plik" + +#: src/gui/settings.cpp:4274 +msgid "Backup Management" +msgstr "Zarządzanie kopiami zapasowymi" + +#: src/gui/settings.cpp:4278 +msgid "Purge before:" +msgstr "Usuń wszystkie przed:" + +#: src/gui/settings.cpp:4352 +msgid "Go##PDate" +msgstr "Start##PDate" + +#: src/gui/settings.cpp:4359 +#, c-format +msgid "%PB used" +msgstr "%PB użytych" + +#: src/gui/settings.cpp:4361 +#, c-format +msgid "%TB used" +msgstr "%TB użytych" + +#: src/gui/settings.cpp:4363 +#, c-format +msgid "%GB used" +msgstr "%GB użytych" + +#: src/gui/settings.cpp:4365 +#, c-format +msgid "%MB used" +msgstr "%MB użytych" + +#: src/gui/settings.cpp:4367 +#, c-format +msgid "%KB used" +msgstr "%KB użytych" + +#: src/gui/settings.cpp:4369 +#, c-format +msgid "% bytes used" +msgstr "%bajtów użytych" + +#: src/gui/settings.cpp:4374 +msgid "Refresh" +msgstr "Odśwież" + +#: src/gui/settings.cpp:4378 +msgid "Delete all" +msgstr "Usuń wszystkie" + +#: src/gui/settings.cpp:4384 src/gui/settings.cpp:6688 +msgid "Size" +msgstr "Rozmiar" + +#: src/gui/settings.cpp:4385 +msgid "Latest" +msgstr "Ostatnie" + +#: src/gui/settings.cpp:4395 +#, c-format +msgid "%P" +msgstr "%P" + +#: src/gui/settings.cpp:4397 +#, c-format +msgid "%T" +msgstr "%T" + +#: src/gui/settings.cpp:4399 +#, c-format +msgid "%G" +msgstr "%G" + +#: src/gui/settings.cpp:4401 +#, c-format +msgid "%M" +msgstr "%M" + +#: src/gui/settings.cpp:4403 +#, c-format +msgid "%K" +msgstr "%K" + +#: src/gui/settings.cpp:4405 +#, c-format +msgid "%" +msgstr "%" + +#: src/gui/settings.cpp:4529 +msgid "Cheat Codes" +msgstr "Kody" + +#: src/gui/settings.cpp:4531 +msgid "Enter code:" +msgstr "Wpisz kod" + +#: src/gui/settings.cpp:4533 +msgid "Submit" +msgstr "Zatwierdź" + +#: src/gui/settings.cpp:4537 +msgid "invalid code" +msgstr "kod niepoprawny" + +#: src/gui/settings.cpp:4547 +msgid "toggled alternate UI" +msgstr "włączono alternatywne GUI" + +#: src/gui/settings.cpp:4551 +msgid ":smile: :star_struck: :sunglasses: :ok_hand:" +msgstr ":smile: :star_struck: :sunglasses: :ok_hand:" + +#: src/gui/settings.cpp:4555 +msgid "enabled all instrument types" +msgstr "włączono wszystkie typy instrumentów" + +#: src/gui/settings.cpp:4559 +msgid "OK, if I bring your Partial pitch linearity will you stop bothering me?" +msgstr "" + +#: src/gui/settings.cpp:4563 +msgid "unlocked audio multi-threading options!" +msgstr "odblokowano opcje wielowątkowości!" + +#: src/gui/settings.cpp:4567 +msgid "enabled \"comfortable\" mode" +msgstr "właczono tryb \"komfortowy\"" + +#: src/gui/settings.cpp:4585 +msgid "OK##SettingsOK" +msgstr "OK##SettingsOK" + +#: src/gui/settings.cpp:4591 +msgid "Cancel##SettingsCancel" +msgstr "Anuluj##SettingsCancel" + +#: src/gui/settings.cpp:4599 +msgid "Apply##SettingsApply" +msgstr "Zastosuj##SettingsApply" + +#: src/gui/settings.cpp:5673 +msgid "could not initialize audio!" +msgstr "nie udało się zainicjować dźwięku!" + +#: src/gui/settings.cpp:5683 src/gui/gui.cpp:4067 src/gui/gui.cpp:6662 +#: src/gui/gui.cpp:7088 +msgid "error while loading fonts! please check your settings." +msgstr "błąd podczas ładowania czcionek! sprawdź swoje ustawienia." + +#: src/gui/settings.cpp:5862 +#, c-format +msgid "error while loading config! (%s)" +msgstr "оbłąd podczas wczytywania ustawień (%s)" + +#: src/gui/settings.cpp:6675 +msgid "[Dir]" +msgstr "" + +#: src/gui/settings.cpp:6676 +msgid "[Link]" +msgstr "" + +#: src/gui/settings.cpp:6677 +#, fuzzy +msgid "[File]" +msgstr "Plik" + +#: src/gui/settings.cpp:6678 +#, fuzzy +msgid "Name:" +msgstr "Nazwa" + +#: src/gui/settings.cpp:6679 +msgid "Path:" +msgstr "" + +#: src/gui/settings.cpp:6680 +#, fuzzy +msgid "Reset search" +msgstr "Resetuj do wart. domyślnych" + +#: src/gui/settings.cpp:6681 +#, fuzzy +msgid "Drives" +msgstr "Sterownik" + +#: src/gui/settings.cpp:6682 +msgid "" +"Edit path\n" +"You can also right click on path buttons" +msgstr "" + +#: src/gui/settings.cpp:6683 +#, fuzzy +msgid "Go to home directory" +msgstr "Sekcja sampli" + +#: src/gui/settings.cpp:6684 +#, fuzzy +msgid "Go to parent directory" +msgstr "otwórz wbudowany folder z zasobami" + +#: src/gui/settings.cpp:6685 +#, fuzzy +msgid "Create Directory" +msgstr "Sekcja sampli" + +#: src/gui/settings.cpp:6686 +#, fuzzy +msgid "File name" +msgstr "nazwa sampla" + +#: src/gui/settings.cpp:6689 +#, fuzzy +msgid "Date" +msgstr "Start##PDate" + +#: src/gui/settings.cpp:6690 src/gui/gui.cpp:5510 src/gui/gui.cpp:5645 +#: src/gui/gui.cpp:5646 +msgid "Warning" +msgstr "" + +#: src/gui/settings.cpp:6691 +msgid "The file you selected already exists! Would you like to overwrite it?" +msgstr "" + +#: src/gui/settings.cpp:6692 src/gui/gui.cpp:5650 src/gui/gui.cpp:5674 +#: src/gui/gui.cpp:5698 src/gui/gui.cpp:5722 src/gui/gui.cpp:5746 +#: src/gui/gui.cpp:5770 src/gui/gui.cpp:5802 src/gui/gui.cpp:5818 +#: src/gui/gui.cpp:5829 src/gui/gui.cpp:5841 src/gui/gui.cpp:5995 +#: src/gui/gui.cpp:6017 src/gui/gui.cpp:6032 src/gui/gui.cpp:6043 +msgid "Yes" +msgstr "Tak" + +#: src/gui/settings.cpp:6693 src/gui/findReplace.cpp:828 src/gui/gui.cpp:5664 +#: src/gui/gui.cpp:5688 src/gui/gui.cpp:5712 src/gui/gui.cpp:5736 +#: src/gui/gui.cpp:5760 src/gui/gui.cpp:5788 src/gui/gui.cpp:5813 +#: src/gui/gui.cpp:5824 src/gui/gui.cpp:5836 src/gui/gui.cpp:5848 +#: src/gui/gui.cpp:6012 src/gui/gui.cpp:6027 src/gui/gui.cpp:6037 +#: src/gui/gui.cpp:6050 +msgid "No" +msgstr "Nie" + +#: src/gui/settings.cpp:6694 +msgid "%Y/%m/%d %H:%M" +msgstr "" + +#: src/gui/orders.cpp:114 +msgid "Add new order" +msgstr "Dodaj nowy wiersz matrycy" + +#: src/gui/orders.cpp:125 src/gui/guiConst.cpp:794 +msgid "Remove order" +msgstr "Usuń" + +#: src/gui/orders.cpp:137 +msgid "Duplicate order (right-click to deep clone)" +msgstr "Sklonuj wiersz (PPM by glęboko sklonować)" + +#: src/gui/orders.cpp:146 src/gui/guiConst.cpp:795 +msgid "Move order up" +msgstr "Przesuń w górę" + +#: src/gui/orders.cpp:155 src/gui/guiConst.cpp:796 +msgid "Move order down" +msgstr "Przesuń w dół" + +#: src/gui/orders.cpp:167 +msgid "Place copy of current order at end of song (right-click to deep clone)" +msgstr "Sklonuj wiersz i wstaw na koniec utworu (PPM by glęboko sklonować)" + +#: src/gui/orders.cpp:177 +msgid "Order change mode: entire row" +msgstr "Tryb zmiany: cały wiersz" + +#: src/gui/orders.cpp:179 +msgid "Order change mode: one" +msgstr "Tryb zmiany: jedna komórka" + +#: src/gui/orders.cpp:205 +msgid "Order edit mode: Select and type (scroll vertically)" +msgstr "Tryb edycji: Wybierz i wpisz (przewiń w pionie)" + +#: src/gui/orders.cpp:207 +msgid "Order edit mode: Select and type (scroll horizontally)" +msgstr "Tryb edycji: Wybierz i wpisz (przewiń w poziomie)" + +#: src/gui/orders.cpp:209 +msgid "Order edit mode: Select and type (don't scroll)" +msgstr "Tryb edycji: Wybierz i wpisz" + +#: src/gui/orders.cpp:211 +msgid "Order edit mode: Click to change" +msgstr "Tryb edycji: kliknij by zmienić" + +#: src/gui/findReplace.cpp:29 +msgid "ignore" +msgstr "ignoruj" + +#: src/gui/findReplace.cpp:30 +msgid "equals" +msgstr "równe" + +#: src/gui/findReplace.cpp:31 +msgid "not equal" +msgstr "nie równe" + +#: src/gui/findReplace.cpp:32 +msgid "between" +msgstr "między" + +#: src/gui/findReplace.cpp:33 +msgid "not between" +msgstr "za wyjątkiem przedziału" + +#: src/gui/findReplace.cpp:34 +msgid "any" +msgstr "każdy" + +#: src/gui/findReplace.cpp:35 src/gui/guiConst.cpp:217 +msgid "none" +msgstr "brak" + +#: src/gui/findReplace.cpp:39 +msgid "set" +msgstr "ustaw" + +#: src/gui/findReplace.cpp:40 +msgid "add" +msgstr "dodaj" + +#: src/gui/findReplace.cpp:41 +msgid "add (overflow)" +msgstr "dodaj z przepełnieniem)" + +#: src/gui/findReplace.cpp:42 +msgid "scale %" +msgstr "skaluj (w %)" + +#: src/gui/findReplace.cpp:512 src/gui/guiConst.cpp:609 +msgid "Find/Replace" +msgstr "Znajdź/zamień" + +#: src/gui/findReplace.cpp:520 src/gui/findReplace.cpp:850 +msgid "Find" +msgstr "znajdź" + +#: src/gui/findReplace.cpp:526 src/gui/findReplace.cpp:535 +msgid "order" +msgstr "wiersz matrycy wzorców" + +#: src/gui/findReplace.cpp:527 src/gui/findReplace.cpp:537 +msgid "row" +msgstr "wiersz" + +#: src/gui/findReplace.cpp:539 src/gui/csPlayer.cpp:146 +msgid "channel" +msgstr "kanał" + +#: src/gui/findReplace.cpp:541 +msgid "go" +msgstr "start" + +#: src/gui/findReplace.cpp:585 +msgid "no matches found!" +msgstr "nie znaleziono żadnych dopasowań!" + +#: src/gui/findReplace.cpp:587 +msgid "Back" +msgstr "Wstecz" + +#: src/gui/findReplace.cpp:750 +msgid "Delete query" +msgstr "Usuń zapytanie" + +#: src/gui/findReplace.cpp:754 src/gui/findReplace.cpp:1037 +msgid "Add effect" +msgstr "Dodaj efekt" + +#: src/gui/findReplace.cpp:761 src/gui/findReplace.cpp:1044 +msgid "Remove effect" +msgstr "Usuń efekt" + +#: src/gui/findReplace.cpp:786 +msgid "Search range:" +msgstr "Zakres wyszukiwania:" + +#: src/gui/findReplace.cpp:799 +msgid "Confine to channels" +msgstr "Tylko na wybranych kanałach" + +#: src/gui/findReplace.cpp:803 src/gui/sampleEdit.cpp:1152 +msgid "From" +msgstr "Od" + +#: src/gui/findReplace.cpp:814 src/gui/sampleEdit.cpp:1156 +msgid "To" +msgstr "Do" + +#: src/gui/findReplace.cpp:826 +msgid "Match effect position:" +msgstr "Dopasuj położenie efektu:" + +#: src/gui/findReplace.cpp:832 +msgid "match effects regardless of position." +msgstr "dopasuj efekty niezależnie od położenia." + +#: src/gui/findReplace.cpp:834 src/gui/compatFlags.cpp:288 +msgid "Lax" +msgstr "Luźne" + +#: src/gui/findReplace.cpp:838 +msgid "match effects only if they appear in-order." +msgstr "efekty są wykrywane, jeśli są we właściwej kolejności" + +#: src/gui/findReplace.cpp:840 src/gui/compatFlags.cpp:276 +msgid "Strict" +msgstr "Ścisłe" + +#: src/gui/findReplace.cpp:844 +msgid "match effects only if they appear exactly as specified." +msgstr "efekty są wykrywane, jeśli są w pełni zgodne z żądaniem." + +#: src/gui/findReplace.cpp:856 +msgid "Replace" +msgstr "Zamień" + +#: src/gui/findReplace.cpp:908 +msgid "INVALID" +msgstr "NIEPOPRAWNY." + +#: src/gui/findReplace.cpp:1052 +msgid "Effect replace mode:" +msgstr "Tryb zastępowania efektów:" + +#: src/gui/findReplace.cpp:1053 +msgid "Replace matches only" +msgstr "Zastąp tylko dopasowania" + +#: src/gui/findReplace.cpp:1056 +msgid "Replace matches, then free spaces" +msgstr "Zastąp dopasowania i wypełń wolne komórki" + +#: src/gui/findReplace.cpp:1059 +msgid "Clear effects" +msgstr "Wyczyść efekty" + +#: src/gui/findReplace.cpp:1062 +msgid "Insert in free spaces" +msgstr "Wstaw w wolne miejsca" + +#: src/gui/findReplace.cpp:1065 +msgid "Replace##QueryReplace" +msgstr "Zamień##QueryReplace" + +#: src/gui/about.cpp:26 +msgid "is proud to present" +msgstr "" + +#: src/gui/about.cpp:30 +msgid "the biggest multi-system chiptune tracker!" +msgstr "największy multi-platformowy tracker muzyczny!" + +#: src/gui/about.cpp:31 +msgid "featuring DefleMask song compatibility." +msgstr "kompatybilny z Deflemaskiem." + +#: src/gui/about.cpp:33 +msgid "> CREDITS <" +msgstr "> TWÓRCY <" + +#: src/gui/about.cpp:35 +msgid "-- program --" +msgstr "-- program właściwy --" + +#: src/gui/about.cpp:37 +msgid "A M 4 N (intro tune)" +msgstr "A M 4 N (muzyka w intro)" + +#: src/gui/about.cpp:52 +msgid "-- graphics/UI design --" +msgstr "-- grafika/projekt interfejsu użytkownika --" + +#: src/gui/about.cpp:59 +msgid "-- documentation --" +msgstr "-- dokumentacja --" + +#: src/gui/about.cpp:69 +msgid "-- localization/translation team --" +msgstr "" + +#: src/gui/about.cpp:81 +msgid "-- demo songs --" +msgstr "-- utwory demonstracyjne --" + +#: src/gui/about.cpp:207 +msgid "-- additional feedback/fixes --" +msgstr "-- dodatkowe opinie/poprawki --" + +#: src/gui/about.cpp:218 +msgid "-- Metal backend test team --" +msgstr "-- Zespół testujący bibliotekę renderowania Metal --" + +#: src/gui/about.cpp:224 +msgid "-- DirectX 9 backend test team --" +msgstr "" + +#: src/gui/about.cpp:231 +msgid "powered by:" +msgstr "z użyciem następujących komponentów:" + +#: src/gui/about.cpp:232 +msgid "Dear ImGui by Omar Cornut" +msgstr "Dear ImGui autorstwa Omara Cornuta" + +#: src/gui/about.cpp:233 +msgid "SDL2 by Sam Lantinga" +msgstr "SDL2 autorstwa Sama Lantingi" + +#: src/gui/about.cpp:237 +msgid "zlib by Jean-loup Gailly" +msgstr "zlib autorstwa Jean-loupa Gailly'ego" + +#: src/gui/about.cpp:238 +msgid "and Mark Adler" +msgstr "i Marka Adlera" + +#: src/gui/about.cpp:239 +msgid "libsndfile by Erik de Castro Lopo" +msgstr "libsndfile autorstwa Erika de Castro Lopo" + +#: src/gui/about.cpp:240 +msgid "Portable File Dialogs by Sam Hocevar" +msgstr "Portable File Dialogs autorstwa Sama Hocevara" + +#: src/gui/about.cpp:241 +msgid "Native File Dialog by Frogtoss Games" +msgstr "Native File Dialog autorstwa Frogtoss Games" + +#: src/gui/about.cpp:243 +msgid "Weak-JACK by x42" +msgstr "" + +#: src/gui/about.cpp:244 +msgid "RtMidi by Gary P. Scavone" +msgstr "RtMidi autorstwa Gary'ego P. Scavone" + +#: src/gui/about.cpp:245 +msgid "FFTW by Matteo Frigo and Steven G. Johnson" +msgstr "FFTW autorstwa Matteo Frigo i Stevena G. Johnsona" + +#: src/gui/about.cpp:246 +msgid "backward-cpp by Google" +msgstr "backward-cpp autorstwa Google" + +#: src/gui/about.cpp:247 +msgid "adpcm by superctr" +msgstr "adpcm autorstwa superctr" + +#: src/gui/about.cpp:248 +msgid "adpcm-xq by David Bryant" +msgstr "adpcm-xq autorstwa Davida Bryanta" + +#: src/gui/about.cpp:249 +msgid "Nuked-OPL3/OPLL/OPM/OPN2/PSG by nukeykt" +msgstr "Nuked-OPL3/OPLL/OPM/OPN2/PSG autorstwa nukeykt" + +#: src/gui/about.cpp:250 +msgid "YM3812-LLE, YMF262-LLE, YMF276-LLE and YM2608-LLE by nukeykt" +msgstr "" + +#: src/gui/about.cpp:251 +msgid "ESFMu (modified version) by Kagamiin~" +msgstr "" + +#: src/gui/about.cpp:252 +msgid "ymfm by Aaron Giles" +msgstr "ymfm autorstwa Aarona Gilesa" + +#: src/gui/about.cpp:253 +msgid "emu2413 by Digital Sound Antiques" +msgstr "emu2413 autorstwa Digital Sound Antiques" + +#: src/gui/about.cpp:254 +msgid "MAME SN76496 by Nicola Salmoria" +msgstr "MAME SN76496 autorstwa Nicoli Salmorii" + +#: src/gui/about.cpp:255 +msgid "MAME AY-3-8910 by Couriersud" +msgstr "MAME AY-3-8910 autorstwa Couriersud" + +#: src/gui/about.cpp:256 +msgid "with AY8930 fixes by Eulous, cam900 and Grauw" +msgstr "z poprawkami dla AY8930 autorstwa Eulousa, cam900 i Grauwa" + +#: src/gui/about.cpp:257 +msgid "MAME SAA1099 by Juergen Buchmueller and Manuel Abadia" +msgstr "MAME SAA1099 autorstwa Juergena Buchmuellera i Manuela Abadii" + +#: src/gui/about.cpp:258 +msgid "MAME Namco WSG by Nicola Salmoria and Aaron Giles" +msgstr "MAME Namco WSG autorstwa Nicoli Salmorii i Aarona Gilesa" + +#: src/gui/about.cpp:259 +msgid "MAME RF5C68 core by Olivier Galibert and Aaron Giles" +msgstr "rdzeń MAME RF5C68 autorstwa Oliviera Galiberta i Aarona Gilesa" + +#: src/gui/about.cpp:260 +msgid "MAME MSM5232 core by Jarek Burczynski and Hiromitsu Shioya" +msgstr "rdzeń MAME MSM5232 autorstwa Jarka Burczyńskiego i Hiromitsu Shioyi" + +#: src/gui/about.cpp:261 +msgid "MAME MSM6258 core by Barry Rodewald" +msgstr "rdzeń MAME MSM6258 autorstwa Barry'ego Rodewalda" + +#: src/gui/about.cpp:262 +msgid "MAME YMZ280B core by Aaron Giles" +msgstr "rdzeń MAME YMZ280B autorstwa Aarona Gilesa" + +#: src/gui/about.cpp:263 +msgid "MAME GA20 core by Acho A. Tang and R. Belmont" +msgstr "rdzeń MAME GA20 autorstwa Acho A. Tanga i R. Belmonta" + +#: src/gui/about.cpp:264 +msgid "MAME SegaPCM core by Hiromitsu Shioya and Olivier Galibert" +msgstr "rdzeń MAME SegaPCM autorstwa Hiromitsu Shioyi i Oliviera Galiberta" + +#: src/gui/about.cpp:265 +msgid "SAASound by Dave Hooper and Simon Owen" +msgstr "SAASound autorstwa Dave'a Hoopera i Simona Owena" + +#: src/gui/about.cpp:266 +msgid "SameBoy by Lior Halphon" +msgstr "SameBoy autorstwa Liora Halphona" + +#: src/gui/about.cpp:267 +msgid "Mednafen PCE, WonderSwan, T6W28 and Virtual Boy audio cores" +msgstr "Rdzenie emulacji Mednafen PCE, WonderSwan, T6W28 i Virtual Boy" + +#: src/gui/about.cpp:268 +msgid "SNES DSP core by Blargg" +msgstr "rdzeń SNES DSP autorstwa Blargga" + +#: src/gui/about.cpp:269 +msgid "puNES (NES, MMC5 and FDS) by FHorse" +msgstr "puNES (NES, MMC5 i FDS) autorstwa FHorse" + +#: src/gui/about.cpp:270 +msgid "NSFPlay (NES and FDS) by Brad Smith and Brezza" +msgstr "NSFPlay (NES i FDS) autorstwa Brada Smitha i Brezza" + +#: src/gui/about.cpp:271 +msgid "reSID by Dag Lem" +msgstr "reSID autorstwa Daga Lema" + +#: src/gui/about.cpp:272 +msgid "reSIDfp by Dag Lem, Antti Lankila" +msgstr "reSIDfp autorstwa Daga Lema, Antti Lankili" + +#: src/gui/about.cpp:273 +msgid "and Leandro Nini" +msgstr "i Leandro Nini" + +#: src/gui/about.cpp:274 +msgid "dSID by DefleMask Team based on jsSID" +msgstr "dSID autorstwa ekipy DefleMaska (oparty o jsSID)" + +#: src/gui/about.cpp:275 +msgid "Stella by Stella Team" +msgstr "Stella autorstwa Stella Team" + +#: src/gui/about.cpp:276 +msgid "QSound emulator by superctr and Valley Bell" +msgstr "Emulator QSound-a autorstwa superctr i Valley Bella" + +#: src/gui/about.cpp:277 +msgid "VICE VIC-20 sound core by Rami Rasanen and viznut" +msgstr "Rdzeń emulacji VICE VIC-20 autorstwa Rami Rasanena i viznuta" + +#: src/gui/about.cpp:278 +msgid "VICE TED sound core by Andreas Boose, Tibor Biczo" +msgstr "Rdzeń emulacji VICE TED autorstwa Andreasa Boose;a, Tibora Biczo" + +#: src/gui/about.cpp:279 +msgid "and Marco van den Heuvel" +msgstr "i Marco van den Heuvela" + +#: src/gui/about.cpp:280 +msgid "VERA sound core by Frank van den Hoef" +msgstr "Rdzeń emulacji VERA autorstwa Franka van den Hoefa" + +#: src/gui/about.cpp:281 +msgid "mzpokeysnd POKEY emulator by Michael Borisov" +msgstr "mzpokeysnd (emulator POKEY-a) autorstwa Michaela Borisowa" + +#: src/gui/about.cpp:282 +msgid "ASAP POKEY emulator by Piotr Fusik" +msgstr "ASAP (emulator POKEY-a) autorstwa Piotra Fusika" + +#: src/gui/about.cpp:283 +msgid "ported by laoo to C++" +msgstr "przepisany na C++ przez laoo" + +#: src/gui/about.cpp:284 +msgid "vgsound_emu (second version, modified version) by cam900" +msgstr "vgsound_emu (wersja druga, zmodyfikowana) autorstwa cam900" + +#: src/gui/about.cpp:285 +msgid "SM8521 emulator (modified version) by cam900" +msgstr "" + +#: src/gui/about.cpp:286 +msgid "D65010G031 emulator (modified version) by cam900" +msgstr "" + +#: src/gui/about.cpp:287 +msgid "Namco C140/C219 emulator (modified version) by cam900" +msgstr "" + +#: src/gui/about.cpp:288 +msgid "PowerNoise emulator by scratchminer" +msgstr "Emulator PowerNoise autorstwa scratchminera" + +#: src/gui/about.cpp:289 +msgid "ep128emu by Istvan Varga" +msgstr "ep128emu autorstwa Istvana Vargi" + +#: src/gui/about.cpp:290 +msgid "NDS sound emulator by cam900" +msgstr "" + +#: src/gui/about.cpp:292 +msgid "greetings to:" +msgstr "z pozdrowieniami dla:" + +#: src/gui/about.cpp:295 +msgid "all members of Deflers of Noice!" +msgstr "wszystkich członków Deflers of Noice!" + +#: src/gui/about.cpp:301 +msgid "copyright © 2021-2024 tildearrow" +msgstr "Wszelkie prawa zastrzeżone © 2021-2024 tildearrow" + +#: src/gui/about.cpp:302 +msgid "(and contributors)." +msgstr "(i innych współautorów)." + +#: src/gui/about.cpp:303 +msgid "licensed under GPLv2+! see" +msgstr "program na licencji GPLv2+!" + +#: src/gui/about.cpp:304 +msgid "LICENSE for more information." +msgstr "więcej informacji w pliku LICENSE" + +#: src/gui/about.cpp:306 +msgid "help Furnace grow:" +msgstr "wesprzyj rozwój Furnace:" + +#: src/gui/about.cpp:309 +msgid "contact tildearrow at:" +msgstr "skontaktuj się z tildearrow poprzez:" + +#: src/gui/about.cpp:312 +msgid "disclaimer:" +msgstr "uwaga:" + +#: src/gui/about.cpp:313 +msgid "despite the fact this program works" +msgstr "pomimo tego, że program działa" + +#: src/gui/about.cpp:314 +msgid "with the .dmf file format, it is NOT" +msgstr "na plikach formatu .dmf, NIE JEST" + +#: src/gui/about.cpp:315 +msgid "affiliated with Delek or DefleMask in" +msgstr "w żaden sposób powiązany z Delkiem bądź Deflemaskiem," + +#: src/gui/about.cpp:316 +msgid "any way, nor it is a replacement for" +msgstr "nie jest również zamiennikiem" + +#: src/gui/about.cpp:317 +msgid "the original program." +msgstr "oryginalnego programu." + +#: src/gui/about.cpp:319 +msgid "it also comes with ABSOLUTELY NO WARRANTY." +msgstr "jest również udostępniany BEZ JAKIELKOWIEK FORMY GWARANCJI." + +#: src/gui/about.cpp:321 +msgid "thanks to all contributors/bug reporters!" +msgstr "dziękujemy wszystkim współautorom i testerom!" + +#: src/gui/about.cpp:328 +msgid "About Furnace" +msgstr "O Furnace" + +#: src/gui/about.cpp:418 +msgid "Unsaved changes! Save changes before playing?" +msgstr "" + +#: src/gui/compatFlags.cpp:31 src/gui/guiConst.cpp:598 +msgid "Compatibility Flags" +msgstr "Flagi kompatybilności" + +#: src/gui/compatFlags.cpp:32 +msgid "" +"these flags are designed to provide better DefleMask/older Furnace " +"compatibility.\n" +"it is recommended to disable most of these unless you rely on specific " +"quirks." +msgstr "" +"flagi te zostały zaprojektowane dla lepszej kompatybilności z DefleMaskiem/" +"starszymi wersjami Furnace.\n" +"znaleca się wyłączenie większości z nich, chyba że polegasz na specyfice " +"działania programu, który zapewniają." + +#: src/gui/compatFlags.cpp:34 src/gui/compatFlags.cpp:310 +msgid "DefleMask" +msgstr "DefleMask" + +#: src/gui/compatFlags.cpp:35 +msgid "Limit slide range" +msgstr "" + +#: src/gui/compatFlags.cpp:37 +msgid "" +"when enabled, slides are limited to a compatible range.\n" +"may cause problems with slides in negative octaves." +msgstr "" + +#: src/gui/compatFlags.cpp:39 +msgid "Compatible noise layout on NES and PC Engine" +msgstr "" + +#: src/gui/compatFlags.cpp:41 +msgid "" +"use a rather unusual compatible noise frequency layout.\n" +"removes some noise frequencies on PC Engine." +msgstr "" + +#: src/gui/compatFlags.cpp:43 +msgid "Game Boy instrument duty is wave volume" +msgstr "" +"Makro szerokości fali prostokątnej Game Boy'a kontroluje głośność kanału " +"syntezy tablicowej" + +#: src/gui/compatFlags.cpp:45 +msgid "" +"if enabled, an instrument with duty macro in the wave channel will be mapped " +"to wavetable volume." +msgstr " " + +#: src/gui/compatFlags.cpp:48 +msgid "Restart macro on portamento" +msgstr "Restartuj makro podczas portamento" + +#: src/gui/compatFlags.cpp:50 +msgid "" +"when enabled, a portamento effect will reset the channel's macro if used in " +"combination with a note." +msgstr "" +"gdy ta flaga jest włączona, efekt portamento umieszczony obok nuty spowoduje " +"ponowne uruchomienie makr instrumentu." + +#: src/gui/compatFlags.cpp:52 +msgid "Legacy volume slides" +msgstr "" + +#: src/gui/compatFlags.cpp:54 +msgid "" +"simulate glitchy volume slide behavior by silently overflowing the volume " +"when the slide goes below 0." +msgstr "" + +#: src/gui/compatFlags.cpp:56 +msgid "Compatible arpeggio" +msgstr "" + +#: src/gui/compatFlags.cpp:58 +msgid "delay arpeggio by one tick on every new note." +msgstr "" + +#: src/gui/compatFlags.cpp:60 +msgid "Disable DAC when sample ends" +msgstr "" + +#: src/gui/compatFlags.cpp:62 +msgid "" +"when enabled, the DAC in YM2612 will be disabled if there isn't any sample " +"playing." +msgstr "" + +#: src/gui/compatFlags.cpp:64 +msgid "Broken speed alternation" +msgstr "" + +#: src/gui/compatFlags.cpp:66 +msgid "" +"determines next speed based on whether the row is odd/even instead of " +"alternating between speeds." +msgstr "" + +#: src/gui/compatFlags.cpp:68 +msgid "Ignore duplicate slide effects" +msgstr "Ignoruj powtarzające się efekty płynnej zmiany parametrów" + +#: src/gui/compatFlags.cpp:70 +msgid "" +"if this is on, only the first slide of a row in a channel will be considered." +msgstr "" +"gdy ta flaga jest włączona, tylko pierwszy efekt płynnej zmiany parametru w " +"danym wierszu będzie skuteczny." + +#: src/gui/compatFlags.cpp:72 +msgid "Ignore 0Dxx on the last order" +msgstr "Ignoruj 0Dxx w ostatnim wierszu macierzy wzorca" + +#: src/gui/compatFlags.cpp:74 +msgid "" +"if this is on, a jump to next row effect will not take place when it is on " +"the last order of a song." +msgstr "" +"jeśli flaga jest włączona, efekt przeskoczenia do następnego wzorca nie " +"zadziała, jeśli jest odtwarzany ostatni wiersz matrycy wzorców." + +#: src/gui/compatFlags.cpp:76 +msgid "Buggy portamento after pitch slide" +msgstr "" + +#: src/gui/compatFlags.cpp:78 +msgid "simulates a bug in where portamento does not work after sliding." +msgstr "" + +#: src/gui/compatFlags.cpp:80 +msgid "FM pitch slide octave boundary odd behavior" +msgstr "" + +#: src/gui/compatFlags.cpp:82 +msgid "" +"if this is on, a pitch slide that crosses the octave boundary will stop for " +"one tick and then continue from the nearest octave boundary.\n" +"for .dmf compatibility." +msgstr "" + +#: src/gui/compatFlags.cpp:84 +msgid "Don't apply Game Boy envelope on note-less instrument change" +msgstr "nie uzywaj obwiedni Game Boya przy zmianie instrumentu bez nuty" + +#: src/gui/compatFlags.cpp:86 +msgid "if this is on, an instrument change will not affect the envelope." +msgstr "" +"gdy ta flaga jest włączona, zmiana instrumentu bez zmiany nuty nie będzie " +"miała wpływu na obwiednię." + +#: src/gui/compatFlags.cpp:88 +msgid "Ignore DAC mode change outside of intended channel in ExtCh mode" +msgstr "" +"Ignoruj przełączanie trybu DAC, poza odpowiednim kanałem, w trybie " +"rozszerzonego kanału 3" + +#: src/gui/compatFlags.cpp:90 +msgid "if this is on, 17xx has no effect on the operator channels in YM2612." +msgstr "" +"gdy ta flaga jest włączona, 17xx nie działa, jeśli jest umieszczony na " +"operatorach rozszerzonego kanału 3 (dla YM2612)." + +#: src/gui/compatFlags.cpp:92 +msgid "E1xy/E2xy also take priority over slide stops" +msgstr "" + +#: src/gui/compatFlags.cpp:94 +msgid "does this make any sense by now?" +msgstr "" + +#: src/gui/compatFlags.cpp:96 +msgid "E1xy/E2xy stop when repeating the same note" +msgstr "" + +#: src/gui/compatFlags.cpp:98 +msgid "ugh, if only this wasn't a thing..." +msgstr "" + +#: src/gui/compatFlags.cpp:100 +msgid "SN76489 duty macro always resets phase" +msgstr "Makro szumu SN76489 zawsze resetuje faze" + +#: src/gui/compatFlags.cpp:102 +msgid "" +"when enabled, duty macro will always reset phase, even if its value hasn't " +"changed." +msgstr "" +"jeśli ta flaga jest włączona, makro szumu zawsze zresetuje fazę, nawet jeśli " +"wartość makra szumu nie ulegnie zmianie." + +#: src/gui/compatFlags.cpp:104 +msgid "Broken volume scaling strategy" +msgstr "" + +#: src/gui/compatFlags.cpp:106 +msgid "" +"when enabled:\n" +"- log scaling: multiply\n" +"- linear scaling: subtract\n" +"when disabled:\n" +"- log scaling: subtract\n" +"- linear scaling: multiply" +msgstr "" + +#: src/gui/compatFlags.cpp:108 +msgid "Don't persist volume macro after it finishes" +msgstr "Nie podtrzymuj wartości makra głośności po jego zakończeniu" + +#: src/gui/compatFlags.cpp:110 +msgid "" +"when enabled, a value in the volume column that happens after the volume " +"macro is done will disregard the macro." +msgstr "" +"gdy ta flaga jest włączona, wartość w kolumnie głośności wysatępująca po " +"zakończeniu makra głośności nie będzie uwzględniać wartości makra." + +#: src/gui/compatFlags.cpp:112 +msgid "Broken output volume on instrument change" +msgstr "" + +#: src/gui/compatFlags.cpp:114 +msgid "" +"if enabled, no checks for the presence of a volume macro will be made.\n" +"this will cause the last macro value to linger unless a value in the volume " +"column is present." +msgstr "" + +#: src/gui/compatFlags.cpp:116 +msgid "Broken output volume - Episode 2 (PLEASE KEEP ME DISABLED)" +msgstr "" + +#: src/gui/compatFlags.cpp:118 +msgid "" +"these compatibility flags are getting SO damn ridiculous and out of " +"control.\n" +"as you may have guessed, this one exists due to yet ANOTHER DefleMask-" +"specific behavior.\n" +"please keep this off at all costs, because I will not support it when ROM " +"export comes.\n" +"oh, and don't start an argument out of it. Furnace isn't a DefleMask " +"replacement, and no,\n" +"I am not trying to make it look like one with all these flags.\n" +"\n" +"oh, and what about the other flags that don't have to do with DefleMask?\n" +"those are for .mod import, future FamiTracker import and personal taste!\n" +"\n" +"end of rant" +msgstr "" + +#: src/gui/compatFlags.cpp:120 +msgid "Treat SN76489 periods under 8 as 1" +msgstr "" + +#: src/gui/compatFlags.cpp:122 +msgid "" +"when enabled, any SN period under 8 will be written as 1 instead.\n" +"this replicates DefleMask behavior, but reduces available period range." +msgstr "" + +#: src/gui/compatFlags.cpp:126 src/gui/compatFlags.cpp:304 +msgid "Old Furnace" +msgstr "" + +#: src/gui/compatFlags.cpp:127 +msgid "Arpeggio inhibits non-porta slides" +msgstr "" + +#: src/gui/compatFlags.cpp:129 src/gui/compatFlags.cpp:133 +msgid "behavior changed in 0.5.5" +msgstr "" + +#: src/gui/compatFlags.cpp:131 +msgid "Wack FM algorithm macro" +msgstr "" + +#: src/gui/compatFlags.cpp:135 +msgid "Broken shortcut slides (E1xy/E2xy)" +msgstr "" + +#: src/gui/compatFlags.cpp:137 +msgid "behavior changed in 0.5.7" +msgstr "" + +#: src/gui/compatFlags.cpp:139 +msgid "Stop portamento on note off" +msgstr "" + +#: src/gui/compatFlags.cpp:141 src/gui/compatFlags.cpp:145 +#: src/gui/compatFlags.cpp:149 src/gui/compatFlags.cpp:153 +#: src/gui/compatFlags.cpp:157 src/gui/compatFlags.cpp:161 +#: src/gui/compatFlags.cpp:165 +msgid "behavior changed in 0.6pre1" +msgstr "" + +#: src/gui/compatFlags.cpp:143 +msgid "Don't allow instrument change during slides" +msgstr "" + +#: src/gui/compatFlags.cpp:147 +msgid "Don't reset note to base on arpeggio stop" +msgstr "" + +#: src/gui/compatFlags.cpp:151 +msgid "ExtCh channel status is not shared among operators" +msgstr "" + +#: src/gui/compatFlags.cpp:155 +msgid "Disable new SegaPCM features (macros and better panning)" +msgstr "" + +#: src/gui/compatFlags.cpp:159 +msgid "Old FM octave boundary behavior" +msgstr "" + +#: src/gui/compatFlags.cpp:163 +msgid "Disable OPN2 DAC volume control" +msgstr "" + +#: src/gui/compatFlags.cpp:167 +msgid "Broken initial position of portamento after arpeggio" +msgstr "" + +#: src/gui/compatFlags.cpp:169 +msgid "behavior changed in 0.6pre1.5" +msgstr "" + +#: src/gui/compatFlags.cpp:171 +msgid "Disable new sample features" +msgstr "" + +#: src/gui/compatFlags.cpp:173 src/gui/compatFlags.cpp:177 +msgid "behavior changed in 0.6pre2" +msgstr "" + +#: src/gui/compatFlags.cpp:175 +msgid "Old arpeggio macro + pitch slide strategy" +msgstr "" + +#: src/gui/compatFlags.cpp:179 +msgid "Broken portamento during legato" +msgstr "" + +#: src/gui/compatFlags.cpp:181 +msgid "behavior changed in 0.6pre4" +msgstr "" + +#: src/gui/compatFlags.cpp:183 +msgid "Broken macros in some FM chips after note off" +msgstr "" + +#: src/gui/compatFlags.cpp:185 +msgid "behavior changed in 0.6pre5" +msgstr "" + +#: src/gui/compatFlags.cpp:187 +msgid "Pre-note does not take effects into consideration" +msgstr "" + +#: src/gui/compatFlags.cpp:189 +msgid "behavior changed in 0.6pre9" +msgstr "" + +#: src/gui/compatFlags.cpp:191 +msgid "Disable new NES DPCM features" +msgstr "" + +#: src/gui/compatFlags.cpp:193 +msgid "behavior changed in 0.6.1" +msgstr "" + +#: src/gui/compatFlags.cpp:195 +msgid "Legacy technical ALWAYS_SET_VOLUME behavior" +msgstr "" + +#: src/gui/compatFlags.cpp:197 +msgid "" +"behavior changed in 0.6.1\n" +"this flag will be removed if I find out that none of the songs break after " +"disabling it." +msgstr "" + +#: src/gui/compatFlags.cpp:199 +msgid "Old sample offset effect" +msgstr "Stary efekt przesunięcia sampla" + +#: src/gui/compatFlags.cpp:201 +msgid "behavior changed in 0.6.3" +msgstr "" + +#: src/gui/compatFlags.cpp:205 +msgid ".mod import" +msgstr "import .mod" + +#: src/gui/compatFlags.cpp:206 +msgid "Don't slide on the first tick of a row" +msgstr "" +"Nie wykonuj płynnej zmiany wysokości w pierwszym kroku silnika danego " +"wiersza." + +#: src/gui/compatFlags.cpp:208 +msgid "" +"simulates ProTracker's behavior of not applying volume/pitch slides on the " +"first tick of a row." +msgstr "" +"symuluje zachowanie ProTrackera, który nie wykonuje zmian głośności i " +"wysokości w pierwszym kroku kolumny." + +#: src/gui/compatFlags.cpp:210 +msgid "Reset arpeggio position on row change" +msgstr "Zresetuj pozycję arpeggio przy zmianie wiersza wzorca." + +#: src/gui/compatFlags.cpp:212 +msgid "" +"simulates ProTracker's behavior of arpeggio being bound to the current tick " +"of a row." +msgstr "" +"symuluje zachowanie programu ProTracker, który wiąże arpeggio z obecnym " +"skokiem silnika w danym wierszu wzorca." + +#: src/gui/compatFlags.cpp:216 +msgid "Pitch/Playback" +msgstr "Wysokość dźwięku/odtwarzanie" + +#: src/gui/compatFlags.cpp:217 +msgid "Pitch linearity:" +msgstr "Liniowość wysokości dźwięku:" + +#: src/gui/compatFlags.cpp:223 +msgid "like ProTracker/FamiTracker" +msgstr "tak jak ProTracker/FamiTracker" + +#: src/gui/compatFlags.cpp:227 +msgid "Partial (only 04xy/E5xx)" +msgstr "" + +#: src/gui/compatFlags.cpp:231 +msgid "" +"like DefleMask\n" +"\n" +"this pitch linearity mode is deprecated due to:\n" +"- excessive complexity\n" +"- lack of possible optimization\n" +"\n" +"it is recommended to change it now because I will remove this option in the " +"future!" +msgstr "" + +#: src/gui/compatFlags.cpp:235 +msgid "Full" +msgstr "Pełna" + +#: src/gui/compatFlags.cpp:239 +msgid "like Impulse Tracker" +msgstr "tak jak Impulse Tracker" + +#: src/gui/compatFlags.cpp:246 +msgid "Pitch slide speed multiplier" +msgstr "Mnożnik prędkości płynnej zmiany wysokości" + +#: src/gui/compatFlags.cpp:252 +msgid "Loop modality:" +msgstr "Metoda zapętlania:" + +#: src/gui/compatFlags.cpp:254 +msgid "Reset channels" +msgstr "Reset kanałów" + +#: src/gui/compatFlags.cpp:258 +msgid "" +"select to reset channels on loop. may trigger a voltage click on every loop!" +msgstr "" +"wybierz, aby ponownie uruchomić kanały za każdym razem na początku cyklu. " +"może powodować klikanie przy każdym rozpoczęciu cyklu z powodu zmian " +"napięcia!" + +#: src/gui/compatFlags.cpp:260 +msgid "Soft reset channels" +msgstr "Miękki reset kanałów" + +#: src/gui/compatFlags.cpp:264 +msgid "select to turn channels off on loop." +msgstr "wybierz aby wyłączyć kanały na początku cyklu." + +#: src/gui/compatFlags.cpp:266 +msgid "Do nothing" +msgstr "Nie rób nic" + +#: src/gui/compatFlags.cpp:270 +msgid "select to not reset channels on loop." +msgstr "wybierz aby nie wyłączać kanałów na początku cyklu." + +#: src/gui/compatFlags.cpp:274 +msgid "Cut/delay effect policy:" +msgstr "Zachowanie efektów odcinania/opóźniania nut:" + +#: src/gui/compatFlags.cpp:280 +msgid "only when time is less than speed (like DefleMask/ProTracker)" +msgstr "" +"tylko wtedy, gdy parametr jest mniejszy niż prędkość (tak jak DefleMask/" +"ProTracker)" + +#: src/gui/compatFlags.cpp:282 +msgid "Strict (old)" +msgstr "" + +#: src/gui/compatFlags.cpp:286 +msgid "only when time is less than or equal to speed (original buggy behavior)" +msgstr "" + +#: src/gui/compatFlags.cpp:292 +msgid "no checks" +msgstr "bez sprawdzania" + +#: src/gui/compatFlags.cpp:296 +msgid "Simultaneous jump (0B+0D) treatment:" +msgstr "Traktowanie równoczesnego skoku (0B+0D):" + +#: src/gui/compatFlags.cpp:302 +msgid "accept 0B+0D to jump to a specific row of an order" +msgstr "" +"przyjmuje 0B+0D jako skok do określonego wiersza wzorca w określonej pozycji " +"macierzy wzorca" + +#: src/gui/compatFlags.cpp:308 +msgid "only accept the first jump effect" +msgstr "" + +#: src/gui/compatFlags.cpp:314 +msgid "only accept 0Dxx" +msgstr "" + +#: src/gui/compatFlags.cpp:320 +msgid "Auto-insert one tick gap between notes" +msgstr "" +"Automatycznie wstawia pauzę o długości 1 skoku silnika pomiędzy nutami." + +#: src/gui/compatFlags.cpp:322 +msgid "" +"when enabled, a one-tick note cut will be inserted between non-legato/non-" +"portamento notes.\n" +"this simulates the behavior of some Amiga/SNES music engines.\n" +"\n" +"ineffective on C64." +msgstr "" +"dy ta flaga jest włączona, pomiędzy nutami zostanie wstawiona nuta " +"wyciszenia o długości jednego kroku bez efektu legato i portamento. Jest to " +"symulacja zachowania niektórych sterowników muzycznych Amigi/SNES.\n" +"\n" +"nie działa na C64" + +#: src/gui/compatFlags.cpp:327 +msgid "Don't reset slides after note off" +msgstr "Nie inicjuj ponownie portamento po puszczeniu nuty" + +#: src/gui/compatFlags.cpp:329 +msgid "when enabled, note off will not reset the channel's slide effect." +msgstr "" +"dy ta flaga jest włączona, puszczenie nuty nie zatrzyma portamento na tym " +"kanale." + +#: src/gui/compatFlags.cpp:331 +msgid "Don't reset portamento after reaching target" +msgstr "Nie resetuj portamento po osiągnięciu celu." + +#: src/gui/compatFlags.cpp:333 +msgid "" +"when enabled, the slide effect will not be disabled after it reaches its " +"target." +msgstr "" +"jeśli ta flaga jest włączona, efekt portamento nie będzie ponownie " +"inicjowany po osiągnięciu wysokości docelowej." + +#: src/gui/compatFlags.cpp:335 +msgid "Continuous vibrato" +msgstr "Ciągłe vibrato" + +#: src/gui/compatFlags.cpp:337 +msgid "when enabled, vibrato phase/position will not be reset on a new note." +msgstr "" +"gdy ta flaga jest włączona, faza/pozycja vibrato nie będzie resetowana przy " +"nowej nucie." + +#: src/gui/compatFlags.cpp:339 +msgid "Pitch macro is not linear" +msgstr "Makro wysokości dźwięku jest nieliniowe" + +#: src/gui/compatFlags.cpp:341 +msgid "" +"when enabled, the pitch macro of an instrument is in frequency/period space." +msgstr "" +"jeśli ta flaga jest włączona, makro częstotliwości będzie działać w " +"odniesieniu do okresu/częstotliwości, a nie ułamków półtonu." + +#: src/gui/compatFlags.cpp:343 +msgid "Reset arpeggio effect position on new note" +msgstr "Reset pozycji efektu arpeggio dla nowej nuty" + +#: src/gui/compatFlags.cpp:345 +msgid "when enabled, arpeggio effect (00xy) position is reset on a new note." +msgstr "" +"włączenie tej flagi resetuje pozycję efektu arpeggio (00xy) dla nowej nuty." + +#: src/gui/compatFlags.cpp:347 +msgid "Volume scaling rounds up" +msgstr "Skalowanie głośności zaokrągla w górę" + +#: src/gui/compatFlags.cpp:349 +msgid "" +"when enabled, volume macros round up when applied\n" +"this prevents volume scaling from causing vol=0, which is silent on some " +"chips\n" +"\n" +"ineffective on logarithmic channels" +msgstr "" +"gdy ta flaga jest włączona, wartości makra głośności są zaokrąglane w górę\n" +"zapobiega to sytuacji gdy vol=0 podczas skalowania, która powoduje " +"wyciszenie na niektórych układach.\n" +"\n" +"nie działa na układach z logarytmiczną regulacją głośności" + +#: src/gui/guiConst.cpp:127 +msgid "Generic Sample" +msgstr "Zwykły sampel" + +#: src/gui/guiConst.cpp:155 +msgid "OPL (drums)" +msgstr "OPL (perkusja)" + +#: src/gui/guiConst.cpp:191 +msgid "Forward" +msgstr "Do przodu" + +#: src/gui/guiConst.cpp:192 +msgid "Backward" +msgstr "Do tyłu" + +#: src/gui/guiConst.cpp:193 +msgid "Ping pong" +msgstr "W obie strony" + +#: src/gui/guiConst.cpp:218 +msgid "linear" +msgstr "liniowy" + +#: src/gui/guiConst.cpp:219 +msgid "cubic spline" +msgstr "sześcienny spline" + +#: src/gui/guiConst.cpp:220 +msgid "blep synthesis" +msgstr "synteza BLEP" + +#: src/gui/guiConst.cpp:221 +msgid "sinc" +msgstr "sinc" + +#: src/gui/guiConst.cpp:222 +msgid "best possible" +msgstr "najlepszy" + +#: src/gui/guiConst.cpp:226 src/gui/sampleEdit.cpp:137 +#: src/gui/sampleEdit.cpp:143 +msgid "Invalid" +msgstr "Nieaktywne" + +#: src/gui/guiConst.cpp:231 +msgid "Time" +msgstr "Czas" + +#: src/gui/guiConst.cpp:233 +msgid "System (Primary)" +msgstr "" + +#: src/gui/guiConst.cpp:234 +msgid "System (Secondary)" +msgstr "" + +#: src/gui/guiConst.cpp:530 +msgid "---Global" +msgstr "---Globalny" + +#: src/gui/guiConst.cpp:532 +msgid "Open file" +msgstr "Otwórz plik" + +#: src/gui/guiConst.cpp:533 +msgid "Restore backup" +msgstr "Przywróć kopię zapasową" + +#: src/gui/guiConst.cpp:534 +msgid "Save file" +msgstr "Zapisz plik" + +#: src/gui/guiConst.cpp:535 +msgid "Save as" +msgstr "Zapisz jako" + +#: src/gui/guiConst.cpp:537 src/gui/sampleEdit.cpp:982 +msgid "Undo" +msgstr "Cofnij" + +#: src/gui/guiConst.cpp:539 src/gui/guiConst.cpp:541 src/gui/sampleEdit.cpp:989 +msgid "Redo" +msgstr "Ponów" + +#: src/gui/guiConst.cpp:543 +msgid "Exit" +msgstr "Wyjdź" + +#: src/gui/guiConst.cpp:544 +msgid "Play/Stop (toggle)" +msgstr "Start/stop (przełącznik)" + +#: src/gui/guiConst.cpp:547 +msgid "Play (from beginning)" +msgstr "Odtwarzaj (od początku)" + +#: src/gui/guiConst.cpp:548 +msgid "Play (repeat pattern)" +msgstr "Odtwarzaj (zapętl bieżący wzorzec)" + +#: src/gui/guiConst.cpp:549 +msgid "Play from cursor" +msgstr "Odtwarzaj od kursora" + +#: src/gui/guiConst.cpp:550 +msgid "Step row" +msgstr "Zrób jeden krok we wzorzcu" + +#: src/gui/guiConst.cpp:551 +msgid "Octave up" +msgstr "Oktawa do góry" + +#: src/gui/guiConst.cpp:552 +msgid "Octave down" +msgstr "Oktawa w dół" + +#: src/gui/guiConst.cpp:553 +msgid "Previous instrument" +msgstr "Poprzedni instrument" + +#: src/gui/guiConst.cpp:554 +msgid "Next instrument" +msgstr "Następny instrument" + +#: src/gui/guiConst.cpp:555 +msgid "Increase edit step" +msgstr "Zwiększ krok edtownai" + +#: src/gui/guiConst.cpp:556 +msgid "Decrease edit step" +msgstr "Zwiększ krok edytowania" + +#: src/gui/guiConst.cpp:557 +msgid "Toggle edit mode" +msgstr "Włącz tryb edytowania" + +#: src/gui/guiConst.cpp:559 +msgid "Toggle repeat pattern" +msgstr "Włącz powtarzanie wzorca" + +#: src/gui/guiConst.cpp:562 +msgid "Toggle full-screen" +msgstr "Włącz tryb pełnoekranowy" + +#: src/gui/guiConst.cpp:563 +msgid "Request voice from TX81Z" +msgstr "Poproś o kanał od TX81Z" + +#: src/gui/guiConst.cpp:565 +msgid "Clear song data" +msgstr "Wyczyść dane utworu" + +#: src/gui/guiConst.cpp:567 src/gui/gui.cpp:5573 src/gui/gui.cpp:5625 +msgid "Command Palette" +msgstr "Paleta komend" + +#: src/gui/guiConst.cpp:569 +msgid "Recent files (Palette)" +msgstr "Ostatnio otawrte pliki (paleta)" + +#: src/gui/guiConst.cpp:570 +msgid "Instruments (Palette)" +msgstr "Instrumenty (paleta)" + +#: src/gui/guiConst.cpp:571 +msgid "Samples (Palette)" +msgstr "Sample (paleta)" + +#: src/gui/guiConst.cpp:572 +msgid "Change instrument (Palette)" +msgstr "Zmień instrument (paleta)" + +#: src/gui/guiConst.cpp:573 +msgid "Add chip (Palette)" +msgstr "Dodaj układ (paleta)" + +#: src/gui/guiConst.cpp:578 +msgid "Instrument List" +msgstr "Lista instrumentów" + +#: src/gui/guiConst.cpp:579 src/gui/insEdit.cpp:5203 +msgid "Instrument Editor" +msgstr "Edytor instrumentów" + +#: src/gui/guiConst.cpp:580 +msgid "Song Information" +msgstr "Informacje o utworze" + +#: src/gui/guiConst.cpp:583 +msgid "Wavetable List" +msgstr "Lista tablic fal" + +#: src/gui/guiConst.cpp:584 src/gui/waveEdit.cpp:409 +msgid "Wavetable Editor" +msgstr "Edytor tablic fal" + +#: src/gui/guiConst.cpp:585 +msgid "Sample List" +msgstr "Lista sampli" + +#: src/gui/guiConst.cpp:594 +msgid "Debug Menu" +msgstr "Menu debugowania" + +#: src/gui/guiConst.cpp:595 +msgid "Oscilloscope (master)" +msgstr "Oscyloskop" + +#: src/gui/guiConst.cpp:603 src/gui/sysManager.cpp:41 +msgid "Chip Manager" +msgstr "Menedżer układów" + +#: src/gui/guiConst.cpp:614 src/gui/csPlayer.cpp:112 +msgid "Command Stream Player" +msgstr "Odtwarzacz strumienia komend" + +#: src/gui/guiConst.cpp:615 +msgid "User Presets" +msgstr "Presety użytkownika" + +#: src/gui/guiConst.cpp:617 +msgid "Collapse/expand current window" +msgstr "Maksymalizuj/minimalizuj obecne okno" + +#: src/gui/guiConst.cpp:618 +msgid "Close current window" +msgstr "Zamknij obecne okno" + +#: src/gui/guiConst.cpp:621 +msgid "---Pattern" +msgstr "---Pattern" + +#: src/gui/guiConst.cpp:622 +msgid "Transpose (+1)" +msgstr "Transponuj (+1)" + +#: src/gui/guiConst.cpp:623 +msgid "Transpose (-1)" +msgstr "Transponuj (-1)" + +#: src/gui/guiConst.cpp:624 +msgid "Transpose (+1 octave)" +msgstr "Transponuj (+1 oktawa)" + +#: src/gui/guiConst.cpp:625 +msgid "Transpose (-1 octave)" +msgstr "Transponuj (-1 oktawa)" + +#: src/gui/guiConst.cpp:626 +msgid "Increase values (+1)" +msgstr "Zwieksz wartości (+1)" + +#: src/gui/guiConst.cpp:627 +msgid "Increase values (-1)" +msgstr "Zmniejsz wartości (-1)" + +#: src/gui/guiConst.cpp:628 +msgid "Increase values (+16)" +msgstr "Zwieksz wartości (+16)" + +#: src/gui/guiConst.cpp:629 +msgid "Increase values (-16)" +msgstr "Zmniejsz wartości (-16)" + +#: src/gui/guiConst.cpp:630 +msgid "Select all" +msgstr "Wybierz wszystko" + +#: src/gui/guiConst.cpp:631 +msgid "Cut" +msgstr "Wytnij" + +#: src/gui/guiConst.cpp:632 +msgid "Copy" +msgstr "Kopiuj" + +#: src/gui/guiConst.cpp:633 +msgid "Paste" +msgstr "Wklej" + +#: src/gui/guiConst.cpp:634 +msgid "Paste Mix (foreground)" +msgstr "Wklej ponad zawartość" + +#: src/gui/guiConst.cpp:635 +msgid "Paste Mix (background)" +msgstr "Wklej nad zawartość (zastąp komórki z zaw.)" + +#: src/gui/guiConst.cpp:636 +msgid "Paste Flood" +msgstr "Wstawić z buforem powtarzając cykl (do końca wzorca)" + +#: src/gui/guiConst.cpp:637 +msgid "Paste Overflow" +msgstr "Wklej z przepełnieniem" + +#: src/gui/guiConst.cpp:638 +msgid "Move cursor up" +msgstr "Kursor w górę" + +#: src/gui/guiConst.cpp:639 +msgid "Move cursor down" +msgstr "Kursor w dół" + +#: src/gui/guiConst.cpp:640 +msgid "Move cursor left" +msgstr "Kursor w lewo" + +#: src/gui/guiConst.cpp:641 +msgid "Move cursor right" +msgstr "Kursor w prawo" + +#: src/gui/guiConst.cpp:642 +msgid "Move cursor up by one (override Edit Step)" +msgstr "Przesuń kursor w górę o jeden (ignoruj krok edycji)" + +#: src/gui/guiConst.cpp:643 +msgid "Move cursor down by one (override Edit Step)" +msgstr "Przesuń kursor w dół o jeden (ignoruj krok edycji)" + +#: src/gui/guiConst.cpp:644 +msgid "Move cursor to previous channel" +msgstr "Przesuń kursor do poprzedniego kanału" + +#: src/gui/guiConst.cpp:645 +msgid "Move cursor to next channel" +msgstr "Przesuń kursor do następnego kanału" + +#: src/gui/guiConst.cpp:646 +msgid "Move cursor to next channel (overflow)" +msgstr "Przesuń kursor do następnego kanału (z przepełnieniem)" + +#: src/gui/guiConst.cpp:647 +msgid "Move cursor to previous channel (overflow)" +msgstr "Przesuń kursor do poprzedniego kanału (z przepełnieniem)" + +#: src/gui/guiConst.cpp:648 +msgid "Move cursor to beginning of pattern" +msgstr "Przesuń kursor na początek wzorca" + +#: src/gui/guiConst.cpp:649 +msgid "Move cursor to end of pattern" +msgstr "Przesuń kursor na koniec wzorca" + +#: src/gui/guiConst.cpp:650 +msgid "Move cursor up (coarse)" +msgstr "Kursor w górę (w przybliżeniu)" + +#: src/gui/guiConst.cpp:651 +msgid "Move cursor down (coarse)" +msgstr "Kursor w dół (w przybliżeniu)" + +#: src/gui/guiConst.cpp:652 +msgid "Expand selection upwards" +msgstr "Rozszerz zaznaczenie w górę" + +#: src/gui/guiConst.cpp:653 +msgid "Expand selection downwards" +msgstr "Rozszerz zaznaczenie w dół" + +#: src/gui/guiConst.cpp:654 +msgid "Expand selection to the left" +msgstr "Rozszerz zaznaczenie w lewo" + +#: src/gui/guiConst.cpp:655 +msgid "Expand selection to the right" +msgstr "Rozszerz zaznaczenie w prawo" + +#: src/gui/guiConst.cpp:656 +msgid "Expand selection upwards by one (override Edit Step)" +msgstr "Rozszerz zaznaczenie w górę o jeden (ignoruj krok edycji)" + +#: src/gui/guiConst.cpp:657 +msgid "Expand selection downwards by one (override Edit Step)" +msgstr "Rozszerz zaznaczenie w dół o jeden (ignoruj krok edycji)" + +#: src/gui/guiConst.cpp:658 +msgid "Expand selection to beginning of pattern" +msgstr "Rozszerz zaznaczenie do początku wzorca" + +#: src/gui/guiConst.cpp:659 +msgid "Expand selection to end of pattern" +msgstr "Rozszerz zaznaczenie do końca wzorca" + +#: src/gui/guiConst.cpp:660 +msgid "Expand selection upwards (coarse)" +msgstr "Rozszerz zaznaczenie w górę (z grubsza)" + +#: src/gui/guiConst.cpp:661 +msgid "Expand selection downwards (coarse)" +msgstr "Rozszerz zaznaczenie w dół (z grubsza)" + +#: src/gui/guiConst.cpp:662 +msgid "Move selection up" +msgstr "Przesuń zaznaczenie w górę" + +#: src/gui/guiConst.cpp:663 +msgid "Move selection down" +msgstr "Przesuń zaznaczenie w dół" + +#: src/gui/guiConst.cpp:664 +msgid "Move selection to previous channel" +msgstr "Przenieś zaznaczenie na poprzedni kanał" + +#: src/gui/guiConst.cpp:665 +msgid "Move selection to next channel" +msgstr "Przenieś zaznaczenie na następny kanał" + +#: src/gui/guiConst.cpp:667 +msgid "Pull delete" +msgstr "Usuń z zaciągnięciem następujących rzędów" + +#: src/gui/guiConst.cpp:668 +msgid "Insert" +msgstr "Wstaw z wierszami przesuniętymi w dół" + +#: src/gui/guiConst.cpp:669 +msgid "Mute channel at cursor" +msgstr "Wycisz zaznaczony kanał" + +#: src/gui/guiConst.cpp:670 +msgid "Solo channel at cursor" +msgstr "Wyizoluj zaznaczony kanał" + +#: src/gui/guiConst.cpp:671 +msgid "Unmute all channels" +msgstr "Włącz ponownie wszystkie kanały" + +#: src/gui/guiConst.cpp:672 +msgid "Go to next order" +msgstr "Przeskocz do następnego wiersza matrycy wzorców" + +#: src/gui/guiConst.cpp:673 +msgid "Go to previous order" +msgstr "Przeskocz do poprzedniego wiersza matrycy wzorców" + +#: src/gui/guiConst.cpp:674 +msgid "Collapse channel at cursor" +msgstr "Skróc zaznaczony kursor" + +#: src/gui/guiConst.cpp:675 +msgid "Increase effect columns" +msgstr "Dodaj kolumnę efektów" + +#: src/gui/guiConst.cpp:676 +msgid "Decrease effect columns" +msgstr "Usuń kolumnę efektów" + +#: src/gui/guiConst.cpp:677 +msgid "Interpolate" +msgstr "Interpoluj" + +#: src/gui/guiConst.cpp:678 src/gui/insEdit.cpp:530 +msgid "Fade" +msgstr "Gradient" + +#: src/gui/guiConst.cpp:679 +msgid "Invert values" +msgstr "Odwróć wartości" + +#: src/gui/guiConst.cpp:680 +msgid "Flip selection" +msgstr "Odwróć wybrany obszar" + +#: src/gui/guiConst.cpp:681 +msgid "Collapse rows" +msgstr "Skróć wiersze" + +#: src/gui/guiConst.cpp:682 +msgid "Expand rows" +msgstr "Rozszerz wiersze" + +#: src/gui/guiConst.cpp:683 +msgid "Collapse pattern" +msgstr "Skróć wzorzec" + +#: src/gui/guiConst.cpp:684 +msgid "Expand pattern" +msgstr "Rozszerz wzorzec" + +#: src/gui/guiConst.cpp:685 +msgid "Collapse song" +msgstr "Skróć utwór" + +#: src/gui/guiConst.cpp:686 +msgid "Expand song" +msgstr "Rozszerz utwór" + +#: src/gui/guiConst.cpp:687 +msgid "Set note input latch" +msgstr "Ustaw bufor wejściowy nut" + +#: src/gui/guiConst.cpp:688 +msgid "Change mobile scroll mode" +msgstr "Przełącz na mobilny tryb przewijania" + +#: src/gui/guiConst.cpp:689 +msgid "Clear note input latch" +msgstr "Wyczyść bufor wejściowy nut" + +#: src/gui/guiConst.cpp:692 +msgid "---Instrument list" +msgstr "---Instrument list" + +#: src/gui/guiConst.cpp:693 +msgid "Add instrument" +msgstr "Dodaj" + +#: src/gui/guiConst.cpp:694 +msgid "Duplicate instrument" +msgstr "Sklonuj" + +#: src/gui/guiConst.cpp:695 +msgid "Open instrument" +msgstr "Otwórz" + +#: src/gui/guiConst.cpp:696 +msgid "Open instrument (replace current)" +msgstr "" + +#: src/gui/guiConst.cpp:697 +msgid "Save instrument" +msgstr "Zapisz" + +#: src/gui/guiConst.cpp:698 +msgid "Save instrument (.dmp)" +msgstr "" + +#: src/gui/guiConst.cpp:699 +msgid "Move instrument up in list" +msgstr "Przesuń w górę" + +#: src/gui/guiConst.cpp:700 +msgid "Move instrument down in list" +msgstr "Przesuń w dół" + +#: src/gui/guiConst.cpp:701 +msgid "Delete instrument" +msgstr "Usuń" + +#: src/gui/guiConst.cpp:702 +msgid "Edit instrument" +msgstr "Edycja" + +#: src/gui/guiConst.cpp:703 +msgid "Instrument cursor up" +msgstr "Kursor w górę" + +#: src/gui/guiConst.cpp:704 +msgid "Instrument cursor down" +msgstr "Kursor w dół" + +#: src/gui/guiConst.cpp:705 +msgid "Instruments: toggle folders/standard view" +msgstr "" + +#: src/gui/guiConst.cpp:708 +msgid "---Wavetable list" +msgstr "---Wavetable list" + +#: src/gui/guiConst.cpp:709 +msgid "Add wavetable" +msgstr "Dodaj" + +#: src/gui/guiConst.cpp:710 +msgid "Duplicate wavetable" +msgstr "Sklonuj" + +#: src/gui/guiConst.cpp:711 +msgid "Open wavetable" +msgstr "Otwórz" + +#: src/gui/guiConst.cpp:712 +msgid "Open wavetable (replace current)" +msgstr "Otwórz (z zamianą obecnego)" + +#: src/gui/guiConst.cpp:713 +msgid "Save wavetable" +msgstr "Zapisz" + +#: src/gui/guiConst.cpp:714 +msgid "Save wavetable (.dmw)" +msgstr "Zapisz (.dmw)" + +#: src/gui/guiConst.cpp:715 +msgid "Save wavetable (raw)" +msgstr "Zapisz (dane surowe)" + +#: src/gui/guiConst.cpp:716 +msgid "Move wavetable up in list" +msgstr "Przesuń w górę" + +#: src/gui/guiConst.cpp:717 +msgid "Move wavetable down in list" +msgstr "Przesuń w dół" + +#: src/gui/guiConst.cpp:718 +msgid "Delete wavetable" +msgstr "Usuń" + +#: src/gui/guiConst.cpp:719 +msgid "Edit wavetable" +msgstr "Edytuj" + +#: src/gui/guiConst.cpp:720 +msgid "Wavetable cursor up" +msgstr "Kursor do góry" + +#: src/gui/guiConst.cpp:721 +msgid "Wavetable cursor down" +msgstr "Kursur w dół" + +#: src/gui/guiConst.cpp:722 +msgid "Wavetables: toggle folders/standard view" +msgstr "" + +#: src/gui/guiConst.cpp:725 +msgid "---Sample list" +msgstr "---Sample list" + +#: src/gui/guiConst.cpp:726 +msgid "Add sample" +msgstr "Dodaj sampel" + +#: src/gui/guiConst.cpp:727 +msgid "Duplicate sample" +msgstr "Klonuj sampel" + +#: src/gui/guiConst.cpp:728 +msgid "Open sample" +msgstr "Klonuj sampel" + +#: src/gui/guiConst.cpp:729 +msgid "Open sample (replace current)" +msgstr "Otwórz sampel (zamień obecny)" + +#: src/gui/guiConst.cpp:730 +msgid "Import raw sample data" +msgstr "Importuj surowe dane" + +#: src/gui/guiConst.cpp:731 +msgid "Import raw sample data (replace current)" +msgstr "Importuj surowe dane (zamień obecny)" + +#: src/gui/guiConst.cpp:732 +msgid "Save sample" +msgstr "Zapisz sampel" + +#: src/gui/guiConst.cpp:733 +msgid "Save sample (raw)" +msgstr "Zapisz sampel (surowy)" + +#: src/gui/guiConst.cpp:734 +msgid "Move sample up in list" +msgstr "Przesuń sampel w górę na liście" + +#: src/gui/guiConst.cpp:735 +msgid "Move sample down in list" +msgstr "Przesuń sampel w dół na liście" + +#: src/gui/guiConst.cpp:736 +msgid "Delete sample" +msgstr "Usuń sampel" + +#: src/gui/guiConst.cpp:737 +msgid "Edit sample" +msgstr "Edytuj sampel" + +#: src/gui/guiConst.cpp:738 +msgid "Sample cursor up" +msgstr "Kursor w górę" + +#: src/gui/guiConst.cpp:739 +msgid "Sample cursor down" +msgstr "Kursor w dół" + +#: src/gui/guiConst.cpp:741 src/gui/sampleEdit.cpp:1339 +msgid "Stop sample preview" +msgstr "Zatrzymaj podgląd sampla" + +#: src/gui/guiConst.cpp:742 +msgid "Samples: Toggle folders/standard view" +msgstr "=Sample: Przełączaj pomiędzy widokiem standardowym/folderami" + +#: src/gui/guiConst.cpp:743 +msgid "Samples: Make me a drum kit" +msgstr "=Sample: Stwórz mapę perkusyjną" + +#: src/gui/guiConst.cpp:746 +msgid "---Sample editor" +msgstr "---Edytor sampli" + +#: src/gui/guiConst.cpp:747 +msgid "Sample editor mode: Select" +msgstr "Tryb edytora sampli: Zaznacz" + +#: src/gui/guiConst.cpp:748 +msgid "Sample editor mode: Draw" +msgstr "Tryb edytora sampli: Rysuj" + +#: src/gui/guiConst.cpp:749 +msgid "Sample editor: Cut" +msgstr "Edytor sampli: Wytnij" + +#: src/gui/guiConst.cpp:750 +msgid "Sample editor: Copy" +msgstr "Edytor sampli: Kopiuj" + +#: src/gui/guiConst.cpp:751 +msgid "Sample editor: Paste" +msgstr "Edytor sampli: Wklej" + +#: src/gui/guiConst.cpp:752 +msgid "Sample editor: Paste replace" +msgstr "Edytor sampli: Wklej i zamień" + +#: src/gui/guiConst.cpp:753 +msgid "Sample editor: Paste mix" +msgstr "Edytor sampli: Wklej ponad zawartość" + +#: src/gui/guiConst.cpp:754 +msgid "Sample editor: Select all" +msgstr "Edytor sampli: Wybierz wszystko" + +#: src/gui/guiConst.cpp:755 +msgid "Sample editor: Resize" +msgstr "Edytor sampli: Zmień rozmiar" + +#: src/gui/guiConst.cpp:756 +msgid "Sample editor: Resample" +msgstr "Edytor sampli: Resample" + +#: src/gui/guiConst.cpp:757 +msgid "Sample editor: Amplify" +msgstr "Edytor sampli: Wzmocnij" + +#: src/gui/guiConst.cpp:758 +msgid "Sample editor: Normalize" +msgstr "Edytor sampli: Normalizuj" + +#: src/gui/guiConst.cpp:759 +msgid "Sample editor: Fade in" +msgstr "Edytor sampli: Fade in" + +#: src/gui/guiConst.cpp:760 +msgid "Sample editor: Fade out" +msgstr "Edytor sampli: Fade out" + +#: src/gui/guiConst.cpp:761 +msgid "Sample editor: Apply silence" +msgstr "Edytor sampli: Zastosuj ciszę" + +#: src/gui/guiConst.cpp:762 +msgid "Sample editor: Insert silence" +msgstr "Edytor sampli: Wstaw ciszę" + +#: src/gui/guiConst.cpp:763 +msgid "Sample editor: Delete" +msgstr "Edytor sampli: Usuń" + +#: src/gui/guiConst.cpp:764 +msgid "Sample editor: Trim" +msgstr "Edytor sampli: Przytnij" + +#: src/gui/guiConst.cpp:765 +msgid "Sample editor: Reverse" +msgstr "Edytor sampli: Zamień początek z końcem" + +#: src/gui/guiConst.cpp:766 +msgid "Sample editor: Invert" +msgstr "Edytor sampli: Odrwóć" + +#: src/gui/guiConst.cpp:767 +msgid "Sample editor: Signed/unsigned exchange" +msgstr "Edytor sampli: Konwersja na ze znakiem/bez znaku" + +#: src/gui/guiConst.cpp:768 +msgid "Sample editor: Apply filter" +msgstr "Edytor sampli: Zastosuj filtr" + +#: src/gui/guiConst.cpp:769 +msgid "Sample editor: Crossfade loop points" +msgstr "Edytor sampli: Crossfade loop points" + +#: src/gui/guiConst.cpp:770 +msgid "Sample editor: Preview sample" +msgstr "Edytor sampli: Podgląd sampla" + +#: src/gui/guiConst.cpp:771 +msgid "Sample editor: Stop sample preview" +msgstr "Edytor sampli: Zatrzymaj podgląd sampla" + +#: src/gui/guiConst.cpp:772 +msgid "Sample editor: Zoom in" +msgstr "Edytor sampli: Przybliż" + +#: src/gui/guiConst.cpp:773 +msgid "Sample editor: Zoom out" +msgstr "Edytor sampli: Oddal" + +#: src/gui/guiConst.cpp:774 +msgid "Sample editor: Toggle auto-zoom" +msgstr "Edytor sampli: Włącz auto-zoom" + +#: src/gui/guiConst.cpp:775 +msgid "Sample editor: Create instrument from sample" +msgstr "Edytor sampli: Stwórz instrument z sampla" + +#: src/gui/guiConst.cpp:776 +msgid "Sample editor: Set loop to selection" +msgstr "Edytor sampli: Ustaw pętlę na zaznaczenie" + +#: src/gui/guiConst.cpp:777 +msgid "Sample editor: Create wavetable from selection" +msgstr "Edytor sampli: Stwórz tablicę fal z zaznaczenia" + +#: src/gui/guiConst.cpp:780 +msgid "---Orders" +msgstr "---Orders" + +#: src/gui/guiConst.cpp:781 +msgid "Previous order" +msgstr "Poprzedni wiersz matrycy wzorców" + +#: src/gui/guiConst.cpp:782 +msgid "Next order" +msgstr "Następny wiersz matrycy wzorców" + +#: src/gui/guiConst.cpp:783 +msgid "Order cursor left" +msgstr "Kursor w lewo" + +#: src/gui/guiConst.cpp:784 +msgid "Order cursor right" +msgstr "Kursor w prawo" + +#: src/gui/guiConst.cpp:785 +msgid "Increase order value" +msgstr "Zwieksz wartość" + +#: src/gui/guiConst.cpp:786 +msgid "Decrease order value" +msgstr "Zmniejsz wartość" + +#: src/gui/guiConst.cpp:787 +msgid "Switch order edit mode" +msgstr "Włącz tryb edytowania" + +#: src/gui/guiConst.cpp:788 +msgid "Order: toggle alter entire row" +msgstr "Włącz tryb zmiany całego rzędu" + +#: src/gui/guiConst.cpp:789 +msgid "Add order" +msgstr "Dodaj" + +#: src/gui/guiConst.cpp:790 +msgid "Duplicate order" +msgstr "Sklonuj" + +#: src/gui/guiConst.cpp:791 +msgid "Deep clone order" +msgstr "Sklonuj gleboko" + +#: src/gui/guiConst.cpp:792 +msgid "Copy current order to end of song" +msgstr "" + +#: src/gui/guiConst.cpp:793 +msgid "Deep clone current order to end of song" +msgstr "" + +#: src/gui/guiConst.cpp:797 +msgid "Replay order" +msgstr "Powtórz" + +#: src/gui/guiConst.cpp:1392 +msgid "All chips" +msgstr "Wszystkie uklady" + +#: src/gui/guiConst.cpp:1396 src/gui/insEdit.cpp:6954 src/gui/insEdit.cpp:7204 +#: src/gui/insEdit.cpp:7458 src/gui/insEdit.cpp:7480 +msgid "Special" +msgstr "Specjalne" + +#: src/gui/piano.cpp:103 +msgid "Options" +msgstr "Opcje" + +#: src/gui/piano.cpp:106 +msgid "Key layout:" +msgstr "Uklad klawiszy:" + +#: src/gui/piano.cpp:111 +msgid "Standard" +msgstr "Standardowy" + +#: src/gui/piano.cpp:114 +msgid "Continuous" +msgstr "Ciągły" + +#: src/gui/piano.cpp:118 +msgid "Value input pad:" +msgstr "Panel wprowadzania wartości:" + +#: src/gui/piano.cpp:120 +msgid "Disabled" +msgstr "Wyłączony" + +#: src/gui/piano.cpp:123 +msgid "Replace piano" +msgstr "Zastąp klawiaturę" + +#: src/gui/piano.cpp:126 +msgid "Split (automatic)" +msgstr "Podzielony (automatyczny)" + +#: src/gui/piano.cpp:129 +msgid "Split (always visible)" +msgstr "Podzielony (zawsze widoczny)" + +#: src/gui/piano.cpp:133 +msgid "Share play/edit offset/range" +msgstr "" +"Po wyłączeniu przesunięcie/zakres pianina jest inny podczas grania/edycji." + +#: src/gui/piano.cpp:134 +msgid "Read-only (can't input notes)" +msgstr "Tylko do odczytu (bez możliwości wprowadzania nut)" + +#: src/gui/waveEdit.cpp:30 src/gui/waveEdit.cpp:192 src/gui/insEdit.cpp:177 +#: src/gui/insEdit.cpp:188 src/gui/insEdit.cpp:199 +msgid "Sine" +msgstr "Sinusoida" + +#: src/gui/waveEdit.cpp:32 src/gui/waveEdit.cpp:202 src/gui/insEdit.cpp:325 +#: src/gui/insEdit.cpp:654 +msgid "Saw" +msgstr "Fala piłokształtna" + +#: src/gui/waveEdit.cpp:39 +msgid "Cosine" +msgstr "Kosinusoidalny" + +#: src/gui/waveEdit.cpp:193 +msgid "Rect. Sine" +msgstr "Sinusoida rekt." + +#: src/gui/waveEdit.cpp:194 +msgid "Abs. Sine" +msgstr "Moduł sinusoidy" + +#: src/gui/waveEdit.cpp:195 +msgid "Quart. Sine" +msgstr "Ćwierć sinusoidy" + +#: src/gui/waveEdit.cpp:196 +msgid "Squish. Sine" +msgstr "Spłaszczona sinusoida" + +#: src/gui/waveEdit.cpp:197 +msgid "Abs. Squish. Sine" +msgstr "Spł. moduł sinusoidy" + +#: src/gui/waveEdit.cpp:200 +msgid "rectSquare" +msgstr "Pochodna fali kwadratowej" + +#: src/gui/waveEdit.cpp:203 +msgid "Rect. Saw" +msgstr "Pochodna fali piłokształtnej" + +#: src/gui/waveEdit.cpp:204 +msgid "Abs. Saw" +msgstr "Moduł fali piłokształtnej" + +#: src/gui/waveEdit.cpp:206 +msgid "Cubed Saw" +msgstr "Fala piłokształtna^3" + +#: src/gui/waveEdit.cpp:207 +msgid "Rect. Cubed Saw" +msgstr "Pochodna fali piłokształtnej^3" + +#: src/gui/waveEdit.cpp:208 +msgid "Abs. Cubed Saw" +msgstr "Moduł fali piłokształtnej^3" + +#: src/gui/waveEdit.cpp:210 +msgid "Cubed Sine" +msgstr "Sinusoida^3" + +#: src/gui/waveEdit.cpp:211 +msgid "Rect. Cubed Sine" +msgstr "Pochodna sinusoidy^3" + +#: src/gui/waveEdit.cpp:212 +msgid "Abs. Cubed Sine" +msgstr "Moduł sinusoidy^3" + +#: src/gui/waveEdit.cpp:213 +msgid "Quart. Cubed Sine" +msgstr "Ćwierć sinusoidy^3" + +#: src/gui/waveEdit.cpp:214 +msgid "Squish. Cubed Sine" +msgstr "Spłaszczona sinusoida^3" + +#: src/gui/waveEdit.cpp:215 +msgid "Squish. Abs. Cub. Sine" +msgstr "Spł moduł sinusoidy^3" + +#: src/gui/waveEdit.cpp:218 +msgid "Rect. Triangle" +msgstr "Pochodna fali trójkątnej" + +#: src/gui/waveEdit.cpp:219 +msgid "Abs. Triangle" +msgstr "Moduł fali trójkątnej" + +#: src/gui/waveEdit.cpp:220 +msgid "Quart. Triangle" +msgstr "Ćwierć fali trójkątnej" + +#: src/gui/waveEdit.cpp:221 +msgid "Squish. Triangle" +msgstr "Spłaszczona fala trójkątna" + +#: src/gui/waveEdit.cpp:222 +msgid "Abs. Squish. Triangle" +msgstr "Spł. moduł. fali trójkątnej" + +#: src/gui/waveEdit.cpp:224 +msgid "Cubed Triangle" +msgstr "Fala trójkątna^3" + +#: src/gui/waveEdit.cpp:225 +msgid "Rect. Cubed Triangle" +msgstr "Pochodna fali trójkątnej^3" + +#: src/gui/waveEdit.cpp:226 +msgid "Abs. Cubed Triangle" +msgstr "Moduł fali trójkątnej^3" + +#: src/gui/waveEdit.cpp:227 +msgid "Quart. Cubed Triangle" +msgstr "Ćwierć fali trójkątnej^3" + +#: src/gui/waveEdit.cpp:228 +msgid "Squish. Cubed Triangle" +msgstr "Spł. fala trójkątna^3" + +#: src/gui/waveEdit.cpp:229 +msgid "Squish. Abs. Cub. Triangle" +msgstr "Spł. moduł fali trójkątnej^3" + +#: src/gui/waveEdit.cpp:412 src/gui/waveEdit.cpp:413 +msgid "no wavetable selected" +msgstr "nie wybrano tablicy fal" + +#: src/gui/waveEdit.cpp:424 src/gui/sampleEdit.cpp:111 src/gui/insEdit.cpp:5223 +msgid "select one..." +msgstr "wybierz jeden..." + +#: src/gui/waveEdit.cpp:432 src/gui/waveEdit.cpp:439 src/gui/sampleEdit.cpp:119 +#: src/gui/sampleEdit.cpp:126 src/gui/insEdit.cpp:5236 src/gui/insEdit.cpp:5243 +msgid "or" +msgstr "albo" + +#: src/gui/waveEdit.cpp:441 src/gui/sampleEdit.cpp:128 src/gui/insEdit.cpp:5245 +msgid "Create New" +msgstr "Stwórz nowy" + +#: src/gui/waveEdit.cpp:487 +msgid "Steps" +msgstr "Kroki" + +#: src/gui/waveEdit.cpp:491 +msgid "Lines" +msgstr "Linie" + +#: src/gui/waveEdit.cpp:496 src/gui/insEdit.cpp:2687 +msgid "Width" +msgstr "Szerokość" + +#: src/gui/waveEdit.cpp:498 +msgid "" +"use a width of:\n" +"- any on Amiga/N163\n" +"- 32 on Game Boy, PC Engine, SCC, Konami Bubble System, Namco WSG, Virtual " +"Boy and WonderSwan\n" +"- 64 on FDS\n" +"- 128 on X1-010\n" +"any other widths will be scaled during playback." +msgstr "" + +#: src/gui/waveEdit.cpp:510 +msgid "Height" +msgstr "Wysokość" + +#: src/gui/waveEdit.cpp:512 +msgid "" +"use a height of:\n" +"- 16 for Game Boy, WonderSwan, Namco WSG, Konami Bubble System, X1-010 " +"Envelope shape and N163\n" +"- 32 for PC Engine\n" +"- 64 for FDS and Virtual Boy\n" +"- 256 for X1-010 and SCC\n" +"any other heights will be scaled during playback." +msgstr "" + +#: src/gui/waveEdit.cpp:578 +msgid "Shapes" +msgstr "Kształty fal" + +#: src/gui/waveEdit.cpp:597 src/gui/insEdit.cpp:5879 src/gui/insEdit.cpp:6922 +#: src/gui/insEdit.cpp:6948 src/gui/insEdit.cpp:7008 src/gui/insEdit.cpp:7048 +#: src/gui/insEdit.cpp:7150 src/gui/insEdit.cpp:7436 src/gui/insEdit.cpp:7472 +msgid "Duty" +msgstr "Szerokość fali prostokątnej" + +#: src/gui/waveEdit.cpp:607 +msgid "Exponent" +msgstr "Stopień" + +#: src/gui/waveEdit.cpp:617 +msgid "XOR Point" +msgstr "Punkt XOR" + +#: src/gui/waveEdit.cpp:627 +msgid "Amplitude/Phase" +msgstr "Amplituda/faza" + +#: src/gui/waveEdit.cpp:679 src/gui/waveEdit.cpp:723 src/gui/waveEdit.cpp:728 +msgid "Op" +msgstr "Op" + +#: src/gui/waveEdit.cpp:683 +msgid "Mult" +msgstr "Mnoznik" + +#: src/gui/waveEdit.cpp:685 +msgid "FB" +msgstr "FB" + +#: src/gui/waveEdit.cpp:749 src/gui/waveEdit.cpp:750 +msgid "Connection Diagram" +msgstr "Matryca połączeń" + +#: src/gui/waveEdit.cpp:765 +msgid "Out" +msgstr "Wyjście" + +#: src/gui/waveEdit.cpp:872 +msgid "WaveTools" +msgstr "Narzędzia tablic fal" + +#: src/gui/waveEdit.cpp:890 +msgid "Scale X" +msgstr "Skaluj oś X" + +#: src/gui/waveEdit.cpp:896 +msgid "wavetable longer than 256 samples!" +msgstr "tablica fal powyżej 256 sampli!" + +#: src/gui/waveEdit.cpp:960 +msgid "Scale Y" +msgstr "Skaluj oś Y" + +#: src/gui/waveEdit.cpp:978 +msgid "Offset X" +msgstr "Przesuń X" + +#: src/gui/waveEdit.cpp:1000 +msgid "Offset Y" +msgstr "Przesuń Y" + +#: src/gui/waveEdit.cpp:1017 +msgid "Smooth" +msgstr "Wygładź" + +#: src/gui/waveEdit.cpp:1045 src/gui/sampleEdit.cpp:996 +msgid "Amplify" +msgstr "Wzmocnij" + +#: src/gui/waveEdit.cpp:1063 src/gui/sampleEdit.cpp:1046 +msgid "Normalize" +msgstr "Normalizuj" + +#: src/gui/waveEdit.cpp:1105 src/gui/sampleEdit.cpp:1121 +msgid "Reverse" +msgstr "Odwrotność" + +#: src/gui/waveEdit.cpp:1117 +msgid "Half" +msgstr "Zmniejsz 2x" + +#: src/gui/waveEdit.cpp:1127 +msgid "Double" +msgstr "Powiększ 2x" + +#: src/gui/waveEdit.cpp:1137 +msgid "Convert Signed/Unsigned" +msgstr "Konwersja ze znakiem/bez znaku" + +#: src/gui/waveEdit.cpp:1167 +msgid "Dec" +msgstr "Dec." + +#: src/gui/waveEdit.cpp:1171 src/gui/csPlayer.cpp:247 +msgid "Hex" +msgstr "Hex." + +#: src/gui/waveEdit.cpp:1179 +msgid "Signed/Unsigned" +msgstr "Ze znakiem <-> bez znaku" + +#: src/gui/sampleEdit.cpp:65 +#, c-format +msgid "%s: maximum sample rate is %d" +msgstr "%s: maksymalna częstotliwość samplowania to %d" + +#: src/gui/sampleEdit.cpp:72 +#, c-format +msgid "%s: minimum sample rate is %d" +msgstr "%s: minimalna częstotliwość samplowania to %d" + +#: src/gui/sampleEdit.cpp:79 +#, c-format +msgid "%s: sample rate must be %d" +msgstr "%s: częstotliwość samplowania musi wynosić %d" + +#: src/gui/sampleEdit.cpp:99 src/gui/sampleEdit.cpp:100 +msgid "no sample selected" +msgstr "nie wybrano sampla" + +#: src/gui/sampleEdit.cpp:229 +#, c-format +msgid "SNES: loop start must be a multiple of 16 (try with %d)" +msgstr "SNES: początek pętli musi być wielokrotnością 16 (spróbuj %d)" + +#: src/gui/sampleEdit.cpp:235 +#, c-format +msgid "SNES: loop end must be a multiple of 16 (try with %d)" +msgstr "SNES: koniec pętli musi być wielokrotnością 16 (spróbuj %d)" + +#: src/gui/sampleEdit.cpp:240 +msgid "SNES: sample length will be padded to multiple of 16" +msgstr "SNES: długość sampla zostanie dostosowana do wielokrotności 16" + +#: src/gui/sampleEdit.cpp:249 +msgid "QSound: loop cannot be longer than 32767 samples" +msgstr "QSound: pętla nie może być dłuższa niż 32767 sampli" + +#: src/gui/sampleEdit.cpp:259 +msgid "NES: loop point ignored on DPCM (may only loop entire sample)" +msgstr "" +"NES: punkt pętli jest ignorowany dla sampli DPCM (tylko cały sampel może być " +"zapętlony)" + +#: src/gui/sampleEdit.cpp:263 +msgid "NES: maximum DPCM sample length is 32648" +msgstr "NES: maksymalna długość sampla DPCM wynosi 32648" + +#: src/gui/sampleEdit.cpp:268 +msgid "X1-010: samples can't loop" +msgstr "X1-010: zapętlanie sampli niewspierane" + +#: src/gui/sampleEdit.cpp:271 +msgid "X1-010: maximum sample length is 131072" +msgstr "X1-010: maksymalna długość sampla wynosi 131072" + +#: src/gui/sampleEdit.cpp:276 +msgid "GA20: samples can't loop" +msgstr "GA20: zapętlanie sampli niewspierane" + +#: src/gui/sampleEdit.cpp:287 +msgid "YM2608: loop point ignored on ADPCM (may only loop entire sample)" +msgstr "" +"YM2608: punkt pętli jest ignorowany dla ADPCM (tylko cały sampel może być " +"zapętlony)" + +#: src/gui/sampleEdit.cpp:290 +msgid "YM2608: sample length will be padded to multiple of 512" +msgstr "YM2608: długość sampla zostanie dostosowana do wielokrotności 512" + +#: src/gui/sampleEdit.cpp:300 +msgid "YM2610: ADPCM-A samples can't loop" +msgstr "YM2610: ADPCM-A zapętlanie sampli niewspierane" + +#: src/gui/sampleEdit.cpp:302 +msgid "YM2610: loop point ignored on ADPCM-B (may only loop entire sample)" +msgstr "" +"YM2610: punkt pętli jest ignorowany dla ADPCM-B (tylko cały sampel może być " +"zapętlony)" + +#: src/gui/sampleEdit.cpp:305 +msgid "YM2610: sample length will be padded to multiple of 512" +msgstr "YM2610: długość sampla zostanie dostosowana do wielokrotności 512" + +#: src/gui/sampleEdit.cpp:309 +msgid "YM2610: maximum ADPCM-A sample length is 2097152" +msgstr "YM2610: maksymalna długość sampla ADPCM-A wynosi 2097152" + +#: src/gui/sampleEdit.cpp:318 +msgid "Y8950: loop point ignored on ADPCM (may only loop entire sample)" +msgstr "" +"Y8950: punkt pętli jest ignorowany dla ADPCM (tylko cały sampel może być " +"zapętlony)" + +#: src/gui/sampleEdit.cpp:321 +msgid "Y8950: sample length will be padded to multiple of 512" +msgstr "Y8950: długość sampla zostanie dostosowana do wielokrotności 512" + +#: src/gui/sampleEdit.cpp:328 +msgid "Amiga: loop start must be a multiple of 2" +msgstr "Amiga: początek pętli musi być wielokrotnością 2" + +#: src/gui/sampleEdit.cpp:331 +msgid "Amiga: loop end must be a multiple of 2" +msgstr "Amiga: koniec pętli musi być wielokrotnością 2" + +#: src/gui/sampleEdit.cpp:335 +msgid "Amiga: maximum sample length is 131070" +msgstr "Amiga: maksymalna długość sampla wynosi 131070" + +#: src/gui/sampleEdit.cpp:344 +msgid "SegaPCM: maximum sample length is 65280" +msgstr "SegaPCM: maksymalna długość sampla wynosi 65280" + +#: src/gui/sampleEdit.cpp:353 +msgid "K053260: loop point ignored (may only loop entire sample)" +msgstr "" +"K053260: punkt pętli jest ignorowany (tylko cały sampel może być zapętlony)" + +#: src/gui/sampleEdit.cpp:357 +msgid "K053260: maximum sample length is 65535" +msgstr "K053260: maksymalna długość sampla wynosi 65535" + +#: src/gui/sampleEdit.cpp:362 +msgid "C140: maximum sample length is 65535" +msgstr "C140: maksymalna długość sampla wynosi 65535" + +#: src/gui/sampleEdit.cpp:371 +msgid "C219: loop start must be a multiple of 2" +msgstr "C219: początek pętli musi być wielokrotnością 2" + +#: src/gui/sampleEdit.cpp:374 +msgid "C219: loop end must be a multiple of 2" +msgstr "C219: koniec pętli musi być wielokrotnością 2" + +#: src/gui/sampleEdit.cpp:378 +msgid "C219: maximum sample length is 131072" +msgstr "C219: maksymalna długość sampla wynosi 131072" + +#: src/gui/sampleEdit.cpp:386 +msgid "MSM6295: samples can't loop" +msgstr "MSM6295: zapętlanie sampli niewspierane" + +#: src/gui/sampleEdit.cpp:389 +msgid "MSM6295: maximum bankswitched sample length is 129024" +msgstr "MSM6295: maksymalna długość sampla przy zmianie banków wynosi 129024" + +#: src/gui/sampleEdit.cpp:395 +msgid "GBA DMA: loop start must be a multiple of 4" +msgstr "GBA DMA: punkt początku pętli musi być wielokrotnością 4" + +#: src/gui/sampleEdit.cpp:398 +msgid "GBA DMA: loop length must be a multiple of 16" +msgstr "GBA DMA: dłogość pętli musi być wielokrotnością 16" + +#: src/gui/sampleEdit.cpp:402 +msgid "GBA DMA: sample length will be padded to multiple of 16" +msgstr "GBA DMA: długość sampla zostanie przeskalowana do wielokrotności 16" + +#: src/gui/sampleEdit.cpp:411 +msgid "ES5506: backward loop mode isn't supported" +msgstr "ES5506: tryb pętli odwrotnej nie jest obsługiwany" + +#: src/gui/sampleEdit.cpp:414 +msgid "" +"backward/ping-pong only supported in Generic PCM DAC\n" +"ping-pong also on ES5506" +msgstr "" +"Tryb odwrócony jest obsługiwany tylko przez uniwersalny przetwornik C/A, a " +"także przez ES5506." + +#: src/gui/sampleEdit.cpp:444 +msgid "Info" +msgstr "Info" + +#: src/gui/sampleEdit.cpp:447 src/gui/sampleEdit.cpp:933 +msgid "Rate" +msgstr "Częstotliwość" + +#: src/gui/sampleEdit.cpp:453 +msgid "Compat Rate" +msgstr "Kompat. częstotliwość" + +#: src/gui/sampleEdit.cpp:457 +msgid "" +"used in DefleMask-compatible sample mode (17xx), in where samples are mapped " +"to an octave." +msgstr "" +"jest używana podczas odtwarzania w trybie zgodności z DefleMaskiem (17xx), w " +"którym sample odpowiadają oktawie." + +#: src/gui/sampleEdit.cpp:463 +#, c-format +msgid "Loop (length: %d)##Loop" +msgstr "Pętla (długość: %d)##Loop" + +#: src/gui/sampleEdit.cpp:463 src/gui/insEdit.cpp:544 src/gui/insEdit.cpp:554 +#: src/gui/insEdit.cpp:605 src/gui/insEdit.cpp:6017 +msgid "Loop" +msgstr "Pętla" + +#: src/gui/sampleEdit.cpp:487 src/gui/sampleEdit.cpp:716 +#: src/gui/sampleEdit.cpp:752 +msgid "changing the loop in a BRR sample may result in glitches!" +msgstr "zmiana pętli sampla BRR może powodować problemy!" + +#: src/gui/sampleEdit.cpp:529 +msgid "BRR emphasis" +msgstr "Przetwarzanie końcowe BRR" + +#: src/gui/sampleEdit.cpp:538 +msgid "" +"this is a BRR sample.\n" +"enabling this option will muffle it (only affects non-SNES chips)." +msgstr "" +"jest to sampel BRR.\n" +"włączenie tej funkcji przytłumi go (na wszystkich układach poza SNES)." + +#: src/gui/sampleEdit.cpp:540 +msgid "" +"enable this option to slightly boost high frequencies\n" +"to compensate for the SNES' Gaussian filter's muffle." +msgstr "" +"włącz tę opcję, aby lekko podbić wysokie częstotliwości.\n" +"aby skompensować filtrowanie interpolacji gaussowskiej, które powoduje, że " +"sampel jest stłumiony." + +#: src/gui/sampleEdit.cpp:546 +msgid "8-bit dither" +msgstr "8-bitowy dithering" + +#: src/gui/sampleEdit.cpp:554 +msgid "dither the sample when used on a chip that only supports 8-bit samples." +msgstr "" +"dithering sampla, gdy jest on używany na układzie obsługującym tylko 8-" +"bitowe sample." + +#: src/gui/sampleEdit.cpp:695 src/gui/gui.cpp:2975 +msgid "Start" +msgstr "Poczatek" + +#: src/gui/sampleEdit.cpp:731 src/gui/gui.cpp:2983 +msgid "End" +msgstr "Koniec" + +#: src/gui/sampleEdit.cpp:841 +#, c-format +msgid "" +"%s\n" +"%d bytes free" +msgstr "" +"%s\n" +"wolny %d bajt" + +#: src/gui/sampleEdit.cpp:843 +#, c-format +msgid "" +"%s (%s)\n" +"%d bytes free" +msgstr "" +"%s (%s)\n" +"wolny %d bajy" + +#: src/gui/sampleEdit.cpp:847 +msgid "" +"\n" +"\n" +"not enough memory for this sample!" +msgstr "" +"\n" +"\n" +"za mało miejsca w pamięci na tego sampla!" + +#: src/gui/sampleEdit.cpp:871 +msgid "Edit mode: Select" +msgstr "Tryb edycji: zaznaczanie" + +#: src/gui/sampleEdit.cpp:880 +msgid "Edit mode: Draw" +msgstr "Tryb edycji: rysowanie" + +#: src/gui/sampleEdit.cpp:891 src/gui/sampleEdit.cpp:902 +msgid "Resize" +msgstr "Skaluj" + +#: src/gui/sampleEdit.cpp:906 +msgid "couldn't resize! make sure your sample is 8 or 16-bit." +msgstr "" +"nie udało się zmienić rozmiaru! upewnij się, że sample są 8 lub 16-bitowe." + +#: src/gui/sampleEdit.cpp:926 src/gui/sampleEdit.cpp:957 +msgid "Resample" +msgstr "Zmień częstotliwość samplowania" + +#: src/gui/sampleEdit.cpp:951 +msgid "Factor" +msgstr "Współczynnik" + +#: src/gui/sampleEdit.cpp:956 +msgid "Filter" +msgstr "Filtr" + +#: src/gui/sampleEdit.cpp:961 +msgid "couldn't resample! make sure your sample is 8 or 16-bit." +msgstr "" +"nie udało się zmienić częstotliwości samplowania! upewnij się, że sampel " +"jest 8- lub 16-bitowy." + +#: src/gui/sampleEdit.cpp:1010 src/gui/sampleEdit.cpp:1197 +#: src/gui/sampleEdit.cpp:1281 +msgid "Apply" +msgstr "Zastosuj" + +#: src/gui/sampleEdit.cpp:1053 +msgid "Fade in" +msgstr "Płynny wzrost" + +#: src/gui/sampleEdit.cpp:1060 +msgid "Fade out" +msgstr "Płynne tłumienie" + +#: src/gui/sampleEdit.cpp:1065 +msgid "Insert silence" +msgstr "Wstaw ciszę" + +#: src/gui/sampleEdit.cpp:1076 +msgid "Go" +msgstr "Zastosuj" + +#: src/gui/sampleEdit.cpp:1081 +msgid "couldn't insert! make sure your sample is 8 or 16-bit." +msgstr "nie udało się wstawić! upewnij się że sampel jest 8- lub 16-bitowy." + +#: src/gui/sampleEdit.cpp:1098 +msgid "Apply silence" +msgstr "Dodaj ciszę" + +#: src/gui/sampleEdit.cpp:1112 +msgid "Trim" +msgstr "Obetnij" + +#: src/gui/sampleEdit.cpp:1135 +msgid "Signed/unsigned exchange" +msgstr "Ze znakiem <-> Bez znaku" + +#: src/gui/sampleEdit.cpp:1140 +msgid "Apply filter" +msgstr "Zastosuj filtr" + +#: src/gui/sampleEdit.cpp:1151 +msgid "Cutoff:" +msgstr "Pukt odcięcia:" + +#: src/gui/sampleEdit.cpp:1161 src/gui/insEdit.cpp:5895 +#: src/gui/insEdit.cpp:5898 src/gui/insEdit.cpp:6953 src/gui/insEdit.cpp:7216 +#: src/gui/insEdit.cpp:7478 +msgid "Resonance" +msgstr "Rezonans" + +#: src/gui/sampleEdit.cpp:1167 src/gui/insEdit.cpp:6897 +msgid "Power" +msgstr "Moc filtra" + +#: src/gui/sampleEdit.cpp:1181 +msgid "Low-pass" +msgstr "dolno-przepustowy" + +#: src/gui/sampleEdit.cpp:1186 +msgid "Band-pass" +msgstr "środkowo-przepustowy" + +#: src/gui/sampleEdit.cpp:1191 +msgid "High-pass" +msgstr "górno-przepustowy" + +#: src/gui/sampleEdit.cpp:1262 +msgid "Crossfade loop points" +msgstr "Punkty zapętlenia crossfade-u" + +#: src/gui/sampleEdit.cpp:1271 +msgid "Number of samples" +msgstr "Ilość sampli" + +#: src/gui/sampleEdit.cpp:1277 +msgid "Linear <-> Equal power" +msgstr "Liniowy <-> Ten sam stopień" + +#: src/gui/sampleEdit.cpp:1283 +msgid "Crossfade: length would go out of bounds. Aborted..." +msgstr "Crossfade: długość wyjdzie poza granice. Akcja anulowana." + +#: src/gui/sampleEdit.cpp:1286 +msgid "Crossfade: length would overflow loopStart. Try a smaller random value." +msgstr "" +"Crossfade: długość wykracza poza początek cyklu. Spróbuj użyć mniejszej " +"wartości losowej." + +#: src/gui/sampleEdit.cpp:1332 +msgid "Preview sample" +msgstr "Poglad sampla" + +#: src/gui/sampleEdit.cpp:1346 +msgid "Create instrument from sample" +msgstr "Stwórz instrument z sampla" + +#: src/gui/sampleEdit.cpp:1747 +msgid "paste (replace)" +msgstr "wklej i zamień" + +#: src/gui/sampleEdit.cpp:1750 +msgid "paste (mix)" +msgstr "wstaw ze zmieszaniem" + +#: src/gui/sampleEdit.cpp:1754 src/gui/gui.cpp:2769 +msgid "select all" +msgstr "wybierz wszystko" + +#: src/gui/sampleEdit.cpp:1758 +msgid "set loop to selection" +msgstr "ustaw pętlę na zaznaczeniu" + +#: src/gui/sampleEdit.cpp:1761 +msgid "create wavetable from selection" +msgstr "stwórz tablicę fal z zaznaczenia" + +#: src/gui/sampleEdit.cpp:1767 +msgid "Draw" +msgstr "Rysuj" + +#: src/gui/sampleEdit.cpp:1767 +msgid "Select" +msgstr "Wybierz" + +#: src/gui/sampleEdit.cpp:1769 +#, c-format +msgid "%d samples, %d bytes" +msgstr "" + +#: src/gui/sampleEdit.cpp:1784 +#, c-format +msgid " (%d-%d: %d samples)" +msgstr " (%d-%d: %d sampel)" + +#: src/gui/sampleEdit.cpp:1976 +msgid "Non-8/16-bit samples cannot be edited without prior conversion." +msgstr "" +"Sample w formacie innym niż 8-bitowy lub 16-bitowy PCM nie mogą być " +"edytowane bez uprzedniej konwersji do jednego z tych formatów." + +#: src/gui/newSong.cpp:122 src/gui/newSong.cpp:123 +msgid "Choose a System!" +msgstr "Wybierz system!" + +#: src/gui/newSong.cpp:179 +msgid "Categories" +msgstr "Kategorie" + +#: src/gui/newSong.cpp:210 +msgid "no systems here yet!" +msgstr "nie ma tu jeszcze żadnego systemu!" + +#: src/gui/newSong.cpp:212 +msgid "no results" +msgstr "nie znaleziono" + +#: src/gui/newSong.cpp:228 +msgid "I'm feeling lucky" +msgstr "Szczęśliwy traf" + +#: src/gui/newSong.cpp:230 +msgid "no categories available! what in the world." +msgstr "żadna z kategorii nie jest dostępna! co do kurwy" + +#: src/gui/newSong.cpp:265 +msgid "it appears you're extremely lucky today!" +msgstr "" + +#: src/gui/cursor.cpp:205 +#, c-format +msgid "finish selection: %d.%d,%d - %d.%d,%d" +msgstr "" + +#: src/gui/tutorial.cpp:487 +msgid "" +"Play demo songs?\n" +"- Down: Play current song\n" +"- Up: Play demo songs" +msgstr "" + +#: src/gui/tutorial.cpp:491 +msgid "" +"Welcome to Combat Vehicle!\n" +"\n" +"Controls:\n" +"X - Shoot Arrow Key - Move\n" +"Z - Special Esc - Quit" +msgstr "" + +#: src/gui/tutorial.cpp:496 +msgid "GAME OVER" +msgstr "" + +#: src/gui/tutorial.cpp:498 +msgid "High Score!" +msgstr "" + +#: src/gui/tutorial.cpp:658 +msgid "Welcome!" +msgstr "" + +#: src/gui/tutorial.cpp:661 +msgid "welcome to Furnace, the biggest open-source chiptune tracker!" +msgstr "" + +#: src/gui/tutorial.cpp:665 +msgid "here are some tips to get you started:" +msgstr "" + +#: src/gui/tutorial.cpp:668 +msgid "" +"- add an instrument by clicking on + in Instruments\n" +"- click on the pattern view to focus it\n" +"- channel columns have the following, in this order: note, instrument, " +"volume and effects\n" +"- hit space bar while on the pattern to toggle Edit Mode\n" +"- click on the pattern or use arrow keys to move the cursor\n" +"- values (instrument, volume, effects and effect values) are in hexadecimal\n" +"- hit enter to play/stop the song\n" +"- extend the song by adding more orders in the Orders window\n" +"- click on the Orders matrix to change the patterns of a channel (left click " +"increases; right click decreases)" +msgstr "" + +#: src/gui/tutorial.cpp:680 +msgid "" +"if you need help, you may:\n" +"- read the manual (a file called manual.pdf)\n" +"- ask for help in Discussions (https://github.com/tildearrow/furnace/" +"discussions), the Furnace Discord (https://discord.gg/EfrwT2wq7z) or Furnace " +"in Revolt (official: https://rvlt.gg/GRPS6tmc)" +msgstr "" + +#: src/gui/tutorial.cpp:687 +msgid "" +"if you find any issues, be sure to report them! the issue tracker is here: " +"https://github.com/tildearrow/furnace/issues" +msgstr "" + +#: src/gui/tutorial.cpp:1428 +#, c-format +msgid "STAGE %d" +msgstr "" + +#: src/gui/songInfo.cpp:32 +msgid "Song Info##Song Information" +msgstr "" + +#: src/gui/songInfo.cpp:50 +msgid "Author" +msgstr "Autor" + +#: src/gui/songInfo.cpp:60 +msgid "Album" +msgstr "Album" + +#: src/gui/songInfo.cpp:79 +msgid "Auto" +msgstr "Automatyczny" + +#: src/gui/songInfo.cpp:100 +msgid "Tuning (A-4)" +msgstr "Tuning (A-4)" + +#: src/gui/grooves.cpp:38 +msgid "use effect 09xx to select a groove pattern." +msgstr "użyj efektu 09xx, aby wybrać wzór rytmu." + +#: src/gui/grooves.cpp:48 src/gui/gui.cpp:4480 +msgid "pattern" +msgstr "wzorzec" + +#: src/gui/grooves.cpp:132 +msgid "remove" +msgstr "usuń" + +#: src/gui/doAction.cpp:45 src/gui/gui.cpp:4201 +msgid "Unsaved changes! Save changes before opening another file?" +msgstr "Niezapisane zmiany! Zapisać zmiany przed otwarciem innego pliku?" + +#: src/gui/doAction.cpp:52 +msgid "Unsaved changes! Save changes before opening backup?" +msgstr "Niezapisane zmiany! Zapisać je przed otwarciem kopii zapasowej?" + +#: src/gui/doAction.cpp:62 src/gui/gui.cpp:4237 src/gui/gui.cpp:5025 +#: src/gui/gui.cpp:5063 src/gui/gui.cpp:5069 src/gui/gui.cpp:5657 +#: src/gui/gui.cpp:5681 src/gui/gui.cpp:5705 src/gui/gui.cpp:5729 +#: src/gui/gui.cpp:5753 src/gui/gui.cpp:5777 +#, c-format +msgid "Error while saving file! (%s)" +msgstr "Błąd podczas zapisu pliku! (%s)" + +#: src/gui/doAction.cpp:189 +msgid "Error while sending request (MIDI output not configured?)" +msgstr "Błąd podczas wysyłania żądania (wyjście MIDI nie jest ustawione?)" + +#: src/gui/doAction.cpp:197 +msgid "Select an option: (cannot be undone!)" +msgstr "Wybierz opcję: (akcji nie można cofnąć!)" + +#: src/gui/doAction.cpp:691 src/gui/doAction.cpp:720 src/gui/doAction.cpp:1593 +#: src/gui/gui.cpp:6091 +msgid "too many instruments!" +msgstr "zbyt wiele instrumentów!" + +#: src/gui/doAction.cpp:1124 +msgid "couldn't paste! make sure your sample is 8 or 16-bit." +msgstr "nie udało się wkleić! upewnij się że twój sampel jest 8 lub 16-bitowy." + +#: src/gui/doAction.cpp:1628 +msgid "select at least one sample!" +msgstr "wybierz co najmniej jeden sampel!" + +#: src/gui/doAction.cpp:1630 +msgid "maximum size is 256 samples!" +msgstr "maksymalny rozmiar to 256 sampli!" + +#: src/gui/csPlayer.cpp:113 +msgid "Load" +msgstr "Wczytaj" + +#: src/gui/csPlayer.cpp:117 +msgid "Kill" +msgstr "Zniszcz" + +#: src/gui/csPlayer.cpp:119 +msgid "Kikai wa mou shindeiru!" +msgstr "Mašina jau negyva!" + +#: src/gui/csPlayer.cpp:123 +msgid "Burn Current Song" +msgstr "Wypal obecny utwór" + +#: src/gui/csPlayer.cpp:141 +msgid "Status" +msgstr "Status" + +#: src/gui/csPlayer.cpp:148 +msgid "start" +msgstr "" + +#: src/gui/csPlayer.cpp:150 +msgid "PC" +msgstr "" + +#: src/gui/csPlayer.cpp:152 +msgid "wait" +msgstr "" + +#: src/gui/csPlayer.cpp:154 +msgid "SP" +msgstr "" + +#: src/gui/csPlayer.cpp:156 src/gui/insEdit.cpp:2733 +msgid "note" +msgstr "nuta" + +#: src/gui/csPlayer.cpp:158 src/gui/insEdit.cpp:2728 +msgid "pitch" +msgstr "wysokość dźwięku" + +#: src/gui/csPlayer.cpp:160 +msgid "vol" +msgstr "" + +#: src/gui/csPlayer.cpp:162 +msgid "vols" +msgstr "" + +#: src/gui/csPlayer.cpp:164 +msgid "vib" +msgstr "" + +#: src/gui/csPlayer.cpp:166 +msgid "porta" +msgstr "" + +#: src/gui/csPlayer.cpp:168 +msgid "arp" +msgstr "" + +#: src/gui/csPlayer.cpp:203 +msgid "Trace" +msgstr "" + +#: src/gui/csPlayer.cpp:244 +msgid "Disassemble" +msgstr "" + +#: src/gui/gui.cpp:1136 src/gui/gui.cpp:1140 +msgid "the song is over!" +msgstr "koniec utworu!" + +#: src/gui/gui.cpp:1667 +msgid "Open File" +msgstr "Otwórz plik" + +#: src/gui/gui.cpp:1668 src/gui/gui.cpp:1798 src/gui/gui.cpp:1838 +#: src/gui/gui.cpp:1953 src/gui/gui.cpp:1962 src/gui/gui.cpp:1971 +#: src/gui/gui.cpp:2073 src/gui/gui.cpp:2093 src/gui/gui.cpp:2111 +msgid "compatible files" +msgstr "kompatybilne pliki" + +#: src/gui/gui.cpp:1669 src/gui/gui.cpp:1743 src/gui/gui.cpp:1799 +#: src/gui/gui.cpp:1839 src/gui/gui.cpp:1851 src/gui/gui.cpp:1870 +#: src/gui/gui.cpp:2074 src/gui/gui.cpp:2084 src/gui/gui.cpp:2095 +#: src/gui/gui.cpp:2113 +msgid "all files" +msgstr "wszystkie pliki" + +#: src/gui/gui.cpp:1676 +msgid "no backups made yet!" +msgstr "nie utworzono jeszcze żadnych kopii zapasowych" + +#: src/gui/gui.cpp:1681 src/gui/gui.cpp:1690 src/gui/gui.cpp:2130 +msgid "Furnace song" +msgstr "Utwór Furnace" + +#: src/gui/gui.cpp:1689 +msgid "Save File" +msgstr "Zapisz plik" + +#: src/gui/gui.cpp:1698 src/gui/gui.cpp:1708 +msgid "Export DMF" +msgstr "" + +#: src/gui/gui.cpp:1699 +msgid "DefleMask 1.1.3 module" +msgstr "moduł DefleMaska 1.1.3" + +#: src/gui/gui.cpp:1709 +msgid "DefleMask 1.0/legacy module" +msgstr "moduł DefleMaska 1.0/legacy" + +#: src/gui/gui.cpp:1726 +msgid "Load Instrument" +msgstr "Wczytaj instrument" + +#: src/gui/gui.cpp:1727 +msgid "all compatible files" +msgstr "wszystkie kompatybilne pliki" + +#: src/gui/gui.cpp:1728 src/gui/gui.cpp:1777 +msgid "Furnace instrument" +msgstr "instrument Furnace" + +#: src/gui/gui.cpp:1729 src/gui/gui.cpp:1787 +msgid "DefleMask preset" +msgstr "preset DefleMaska" + +#: src/gui/gui.cpp:1730 +msgid "TFM Music Maker instrument" +msgstr "instrument programu TFM Music Maker" + +#: src/gui/gui.cpp:1731 +msgid "VGM Music Maker instrument" +msgstr "instrument programu VGM Music Maker" + +#: src/gui/gui.cpp:1732 +msgid "Scream Tracker 3 instrument" +msgstr "instrument programu Scream Tracker 3" + +#: src/gui/gui.cpp:1733 +msgid "SoundBlaster instrument" +msgstr "instrument SoundBlaster" + +#: src/gui/gui.cpp:1734 +msgid "Wohlstand OPL instrument" +msgstr "instrument typu Wohlstand OPL" + +#: src/gui/gui.cpp:1735 +msgid "Wohlstand OPN instrument" +msgstr "instrument typu Wohlstand OPN" + +#: src/gui/gui.cpp:1736 +msgid "Gens KMod patch dump" +msgstr "zrzut z Gens KMod" + +#: src/gui/gui.cpp:1737 +msgid "BNK file (AdLib)" +msgstr "bank brzmien BNK (AdLib)" + +#: src/gui/gui.cpp:1738 +msgid "FF preset bank" +msgstr "bank presetow FF" + +#: src/gui/gui.cpp:1739 +msgid "2612edit GYB preset bank" +msgstr "bank presetow 2612edit GYB" + +#: src/gui/gui.cpp:1740 +msgid "VOPM preset bank" +msgstr "bank presetow VOPM" + +#: src/gui/gui.cpp:1741 +msgid "Wohlstand WOPL bank" +msgstr "bank brzmien Wohlstand WOPL" + +#: src/gui/gui.cpp:1742 +msgid "Wohlstand WOPN bank" +msgstr "bank brzmien Wohlstand WOPN" + +#: src/gui/gui.cpp:1776 src/gui/gui.cpp:1786 +msgid "Save Instrument" +msgstr "Zapisz instrument" + +#: src/gui/gui.cpp:1797 +msgid "Load Wavetable" +msgstr "Wczytaj tablice fal" + +#: src/gui/gui.cpp:1809 src/gui/gui.cpp:1818 src/gui/gui.cpp:1827 +msgid "Save Wavetable" +msgstr "Zapisz tablice fal" + +#: src/gui/gui.cpp:1810 +msgid "Furnace wavetable" +msgstr "Tablica fal Furnace" + +#: src/gui/gui.cpp:1819 +msgid "DefleMask wavetable" +msgstr "Tablica fal DefleMaska" + +#: src/gui/gui.cpp:1828 +msgid "raw data" +msgstr "surowe dane" + +#: src/gui/gui.cpp:1837 +msgid "Load Sample" +msgstr "Wczytaj sampel" + +#: src/gui/gui.cpp:1850 +msgid "Load Raw Sample" +msgstr "Wczytaj surowy sampel" + +#: src/gui/gui.cpp:1859 +msgid "Save Sample" +msgstr "Zapisz sampel" + +#: src/gui/gui.cpp:1860 src/gui/gui.cpp:1880 src/gui/gui.cpp:1890 +#: src/gui/gui.cpp:1900 +msgid "Wave file" +msgstr "plik WAV" + +#: src/gui/gui.cpp:1869 +msgid "Save Raw Sample" +msgstr "Zapisz surowy sampel" + +#: src/gui/gui.cpp:1879 src/gui/gui.cpp:1889 src/gui/gui.cpp:1899 +msgid "Export Audio" +msgstr "Eksportuj audio" + +#: src/gui/gui.cpp:1909 +msgid "Export VGM" +msgstr "Eksportuj VGM" + +#: src/gui/gui.cpp:1910 +msgid "VGM file" +msgstr "plik VGM" + +#: src/gui/gui.cpp:1919 +msgid "Export ZSM" +msgstr "Eksportuj ZSM" + +#: src/gui/gui.cpp:1920 +msgid "ZSM file" +msgstr "plik ZSM" + +#: src/gui/gui.cpp:1929 src/gui/gui.cpp:1939 +msgid "Export Command Stream" +msgstr "Eksportuj strumień komend" + +#: src/gui/gui.cpp:1930 +msgid "text file" +msgstr "plik tekstowy" + +#: src/gui/gui.cpp:1940 +msgid "binary file" +msgstr "plik binarny" + +#: src/gui/gui.cpp:1947 src/gui/gui.cpp:5376 +msgid "Coming soon!" +msgstr "Już wkrótce!" + +#: src/gui/gui.cpp:1952 src/gui/gui.cpp:1961 src/gui/gui.cpp:1970 +msgid "Select Font" +msgstr "Wybierz czcionkę" + +#: src/gui/gui.cpp:1979 +msgid "Select Color File" +msgstr "Wybierz plik z ustawieniami kolorów" + +#: src/gui/gui.cpp:1980 src/gui/gui.cpp:1989 src/gui/gui.cpp:2008 +#: src/gui/gui.cpp:2017 src/gui/gui.cpp:2026 src/gui/gui.cpp:2035 +#: src/gui/gui.cpp:2053 src/gui/gui.cpp:2062 +msgid "configuration files" +msgstr "pliki konfiguracji" + +#: src/gui/gui.cpp:1988 +msgid "Select Keybind File" +msgstr "Wybierz plik z przypisaniami klawiszy" + +#: src/gui/gui.cpp:1997 +msgid "Select Layout File" +msgstr "Wybierz plik z ustawieniami układu okna" + +#: src/gui/gui.cpp:1998 src/gui/gui.cpp:2044 +msgid ".ini files" +msgstr "pliki .ini" + +#: src/gui/gui.cpp:2007 +msgid "Select User Presets File" +msgstr "Wybierz plik z presetami użytkownika" + +#: src/gui/gui.cpp:2016 +msgid "Select Settings File" +msgstr "Wybierz plik ustawień" + +#: src/gui/gui.cpp:2025 +msgid "Export Colors" +msgstr "eksportuj ustawienia kolorów" + +#: src/gui/gui.cpp:2034 +msgid "Export Keybinds" +msgstr "Eksportuj przypisania klawiszy" + +#: src/gui/gui.cpp:2043 +msgid "Export Layout" +msgstr "Eksportuj uklad okna" + +#: src/gui/gui.cpp:2052 +msgid "Export User Presets" +msgstr "Eksportuj presety użytkownika" + +#: src/gui/gui.cpp:2061 +msgid "Export Settings" +msgstr "Eksportuj ustawienia" + +#: src/gui/gui.cpp:2072 +msgid "Load ROM" +msgstr "Wczytaj ROM" + +#: src/gui/gui.cpp:2082 +msgid "Play Command Stream" +msgstr "Odtwarzaj strumień komend" + +#: src/gui/gui.cpp:2083 +msgid "command stream" +msgstr "strumień komend" + +#: src/gui/gui.cpp:2092 +msgid "Open Test" +msgstr "Otwórz test" + +#: src/gui/gui.cpp:2094 src/gui/gui.cpp:2112 +msgid "another option" +msgstr "inna opcja" + +#: src/gui/gui.cpp:2110 +msgid "Open Test (Multi)" +msgstr "Otwórz test (wiele plików)" + +#: src/gui/gui.cpp:2129 +msgid "Save Test" +msgstr "Zapisz test" + +#: src/gui/gui.cpp:2131 +msgid "DefleMask module" +msgstr "modul DefleMask" + +#: src/gui/gui.cpp:2171 +msgid "compression error" +msgstr "" + +#: src/gui/gui.cpp:2183 +msgid "zlib stream error" +msgstr "" + +#: src/gui/gui.cpp:2205 +msgid "zlib finish stream error" +msgstr "" + +#: src/gui/gui.cpp:2316 +msgid "everything OK" +msgstr "wszystko OK" + +#: src/gui/gui.cpp:2334 +msgid "" +"you have loaded a backup!\n" +"if you need to, please save it somewhere.\n" +"\n" +"DO NOT RELY ON THE BACKUP SYSTEM FOR AUTO-SAVE!\n" +"Furnace will not save backups of backups." +msgstr "" +"wczytano kopie zapasowa!\n" +"jeśli to konieczne, zapisz ją w innym miejscu.\n" +"\n" +"SYSTEM KOPII ZAPASOWYCH NIE JEST SYSTEMEM ZAPISU AUTOMATYCZNEGO!\n" +"Furnace nie zapisuje kopii zapasowych kopii zapasowych." + +#: src/gui/gui.cpp:2342 src/gui/gui.cpp:3743 src/gui/gui.cpp:4213 +msgid "Unsaved changes! Save changes before opening file?" +msgstr "Niezapisano zmiany! Zapisać je przed wczytaniem pliku?" + +#: src/gui/gui.cpp:2736 +msgid "paste special..." +msgstr "wklej specjalne..." + +#: src/gui/gui.cpp:2737 +msgid "paste mix" +msgstr "wstaw i nałóż" + +#: src/gui/gui.cpp:2738 +msgid "paste mix (background)" +msgstr "wklej (zastąp istniejący)" + +#: src/gui/gui.cpp:2739 +msgid "paste with ins (foreground)" +msgstr "wklej na wierzch instrument (bez zastępowania istniejącego)" + +#: src/gui/gui.cpp:2741 src/gui/gui.cpp:2753 src/gui/gui.cpp:2963 +msgid "no instruments available" +msgstr "brak dostepnych instrumentów" + +#: src/gui/gui.cpp:2751 +msgid "paste with ins (background)" +msgstr "wklej instrumet na wierzch (zastępując istniejący)" + +#: src/gui/gui.cpp:2763 +msgid "paste flood" +msgstr "wstaw z buforem, powtarzając cykl (do końca wzorca)" + +#: src/gui/gui.cpp:2764 +msgid "paste overflow" +msgstr "wstaw (z możliwym przejściem do następnego wzorca)" + +#: src/gui/gui.cpp:2773 +msgid "operation mask..." +msgstr "maska operacji..." + +#: src/gui/gui.cpp:2780 +msgid "pull delete" +msgstr "usuń z zaciągnięciem następujących wierszy" + +#: src/gui/gui.cpp:2784 +msgid "insert" +msgstr "wstaw pusty wiersz" + +#: src/gui/gui.cpp:2792 +msgid "transpose (note)" +msgstr "transponuj nutę" + +#: src/gui/gui.cpp:2796 +msgid "transpose (value)" +msgstr "transponuj (parametry)" + +#: src/gui/gui.cpp:2808 src/gui/gui.cpp:3052 +msgid "invert values" +msgstr "odwróć parametry" + +#: src/gui/gui.cpp:2824 +msgid "collapse/expand" +msgstr "skróć/rozszerz" + +#: src/gui/gui.cpp:2829 +msgid "input latch" +msgstr "bufor wejścia" + +#: src/gui/gui.cpp:2856 +msgid "" +"&&: selected instrument\n" +"..: no instrument" +msgstr "" +"&&: wybrany instrument\n" +"..: brak instrumentu" + +#: src/gui/gui.cpp:2910 +msgid "Set" +msgstr "Ustaw" + +#: src/gui/gui.cpp:2930 +msgid "note up" +msgstr "półton wyżej" + +#: src/gui/gui.cpp:2931 +msgid "note down" +msgstr "półton niżej" + +#: src/gui/gui.cpp:2932 +msgid "octave up" +msgstr "oktawa wyżej" + +#: src/gui/gui.cpp:2933 +msgid "octave down" +msgstr "oktawa niżej" + +#: src/gui/gui.cpp:2935 +msgid "values up" +msgstr "parametr wyżej" + +#: src/gui/gui.cpp:2936 +msgid "values down" +msgstr "parametr niżej" + +#: src/gui/gui.cpp:2937 +msgid "values up (+16)" +msgstr "parametr wyżej (+16)" + +#: src/gui/gui.cpp:2938 +msgid "values down (-16)" +msgstr "parametr niżej (-16)" + +#: src/gui/gui.cpp:2941 +msgid "transpose" +msgstr "transponuj" + +#: src/gui/gui.cpp:2949 +msgid "Notes" +msgstr "Nuty" + +#: src/gui/gui.cpp:2954 +msgid "Values" +msgstr "Parametry" + +#: src/gui/gui.cpp:2961 +msgid "change instrument..." +msgstr "zmień instrument..." + +#: src/gui/gui.cpp:2974 +msgid "gradient/fade..." +msgstr "gradient/zanikanie..." + +#: src/gui/gui.cpp:2991 src/gui/gui.cpp:3036 +msgid "Nibble mode" +msgstr "Tryb półbajtów" + +#: src/gui/gui.cpp:3000 +msgid "Go ahead" +msgstr "Zastosuj" + +#: src/gui/gui.cpp:3006 src/gui/insEdit.cpp:7604 +msgid "scale..." +msgstr "skaluj..." + +#: src/gui/gui.cpp:3011 +msgid "Scale" +msgstr "Skaluj" + +#: src/gui/gui.cpp:3017 src/gui/insEdit.cpp:7632 +msgid "randomize..." +msgstr "wypełnij losowymi wartościami..." + +#: src/gui/gui.cpp:3018 +msgid "Minimum" +msgstr "Dolna granica" + +#: src/gui/gui.cpp:3027 +msgid "Maximum" +msgstr "Górna granica" + +#: src/gui/gui.cpp:3056 +msgid "flip selection" +msgstr "odwróć wybrany obszar" + +#: src/gui/gui.cpp:3059 +msgid "collapse/expand amount##CollapseAmount" +msgstr "współczynnik skracania/rozszerzania##CollapseAmount" + +#: src/gui/gui.cpp:3068 +msgid "collapse pattern" +msgstr "skróć wzorzec" + +#: src/gui/gui.cpp:3069 +msgid "expand pattern" +msgstr "rozszerz wzorzec" + +#: src/gui/gui.cpp:3074 +msgid "collapse song" +msgstr "skróć utwór" + +#: src/gui/gui.cpp:3075 +msgid "expand song" +msgstr "rozszerz utwór" + +#: src/gui/gui.cpp:3080 +msgid "find/replace" +msgstr "znajdź/zamień" + +#: src/gui/gui.cpp:3094 src/gui/gui.cpp:5807 src/gui/gui.cpp:7362 +#, c-format +msgid "could NOT save layout! %s" +msgstr "nie udało się zapisać układu okna! %s" + +#: src/gui/gui.cpp:3106 +#, c-format +msgid "could NOT load layout! %s" +msgstr "nie udało się wczytać układu okna! %s" + +#: src/gui/gui.cpp:3568 +msgid "" +"Furnace has been started in Safe Mode.\n" +"this means that:\n" +"\n" +"- software rendering is being used\n" +"- audio output may not work\n" +"- font loading is disabled\n" +"\n" +"check any settings which may have made Furnace start up in this mode.\n" +"font loading is one of these." +msgstr "" +"Furnace został uruchomiony w trybie awaryjnym.\n" +"oznacza to, że:\n" +"\n" +"- używane jest renderowanie programowe\n" +"- wyjście dźwięku może nie działać\n" +"- wczytywanie czcionek jest wyłączone\n" +"\n" +"należy sprawdzić, jakie ustawienia mogły spowodować, że program działa w tym " +"trybie.\n" +"czytanie czcionki mogło być jednym z nich." + +#: src/gui/gui.cpp:4053 +msgid "can't keep going without graphics! Furnace will quit now." +msgstr "nie da się działać bez grafiki! Furnace się teraz wyłączy." + +#: src/gui/gui.cpp:4191 +msgid "file" +msgstr "plik" + +#: src/gui/gui.cpp:4192 +msgid "new..." +msgstr "nowy..." + +#: src/gui/gui.cpp:4199 +msgid "open..." +msgstr "otwórz..." + +#: src/gui/gui.cpp:4206 +msgid "open recent" +msgstr "otwórz ostatnie" + +#: src/gui/gui.cpp:4222 +msgid "nothing here yet" +msgstr "na razie nic tu nie ma" + +#: src/gui/gui.cpp:4225 +msgid "clear history" +msgstr "wyczyść historię" + +#: src/gui/gui.cpp:4226 +msgid "Are you sure you want to clear the recent file list?" +msgstr "Czy jestes pewien ze chcesz usunąć listę ostatnio wczytanych plików?" + +#: src/gui/gui.cpp:4241 +msgid "save as..." +msgstr "zapisz jako..." + +#: src/gui/gui.cpp:4246 src/gui/gui.cpp:4287 +msgid "export audio..." +msgstr "eksportuj audio..." + +#: src/gui/gui.cpp:4250 src/gui/gui.cpp:4291 +msgid "export VGM..." +msgstr "eksportuj VGM..." + +#: src/gui/gui.cpp:4259 src/gui/gui.cpp:4300 +msgid "export ZSM..." +msgstr "eksportuj ZSM..." + +#: src/gui/gui.cpp:4269 src/gui/gui.cpp:4310 +msgid "export Amiga validation data..." +msgstr "eksportuj plik kontrolny dla Amigi..." + +#: src/gui/gui.cpp:4274 src/gui/gui.cpp:4315 +msgid "export text..." +msgstr "eksportuj tekst..." + +#: src/gui/gui.cpp:4278 src/gui/gui.cpp:4319 +msgid "export command stream..." +msgstr "eksportuj strumień komend..." + +#: src/gui/gui.cpp:4282 src/gui/gui.cpp:4323 +msgid "export .dmf..." +msgstr "eksportuj plik .dmf..." + +#: src/gui/gui.cpp:4328 +msgid "export..." +msgstr "eksportuj..." + +#: src/gui/gui.cpp:4334 +msgid "manage chips" +msgstr "menedżer układów" + +#: src/gui/gui.cpp:4338 +msgid "add chip..." +msgstr "dodaj układ..." + +#: src/gui/gui.cpp:4343 src/gui/sysManager.cpp:138 +#, c-format +msgid "cannot add chip! (%s)" +msgstr "nie można dodać układu! (%s)" + +#: src/gui/gui.cpp:4355 +msgid "configure chip..." +msgstr "konfiguruj układ..." + +#: src/gui/gui.cpp:4365 +msgid "change chip..." +msgstr "zmień układ..." + +#: src/gui/gui.cpp:4367 src/gui/gui.cpp:4390 +msgid "Preserve channel positions" +msgstr "Zachowaj pozycję kanałów" + +#: src/gui/gui.cpp:4379 src/gui/sysManager.cpp:109 +#, c-format +msgid "cannot change chip! (%s)" +msgstr "nie można zmienić układu (%s)" + +#: src/gui/gui.cpp:4388 +msgid "remove chip..." +msgstr "usuń układ..." + +#: src/gui/gui.cpp:4394 +#, c-format +msgid "cannot remove chip! (%s)" +msgstr "nie można usunąć układu (%s)" + +#: src/gui/gui.cpp:4408 +msgid "open built-in assets directory" +msgstr "otwórz wbudowany folder z zasobami" + +#: src/gui/gui.cpp:4414 +msgid "restore backup" +msgstr "przywróć kopię zapasową" + +#: src/gui/gui.cpp:4418 +msgid "exit..." +msgstr "wyjdź..." + +#: src/gui/gui.cpp:4426 +msgid "edit" +msgstr "edytuj" + +#: src/gui/gui.cpp:4434 +msgid "clear..." +msgstr "wyczyść..." + +#: src/gui/gui.cpp:4439 +msgid "settings" +msgstr "ustawienia" + +#: src/gui/gui.cpp:4441 +msgid "full screen" +msgstr "tryb pełnoekranowy" + +#: src/gui/gui.cpp:4445 +msgid "lock layout" +msgstr "zablokuj układ okna" + +#: src/gui/gui.cpp:4448 +msgid "pattern visualizer" +msgstr "wizualizator wzorca" + +#: src/gui/gui.cpp:4454 +msgid "reset layout" +msgstr "resetuj układ okna" + +#: src/gui/gui.cpp:4458 +msgid "switch to mobile view" +msgstr "przełącz na tryb mobilny" + +#: src/gui/gui.cpp:4462 +msgid "user systems..." +msgstr "systemy użytkownika..." + +#: src/gui/gui.cpp:4465 +msgid "settings..." +msgstr "ustawienia..." + +#: src/gui/gui.cpp:4471 +msgid "Window" +msgstr "Okno" + +#: src/gui/gui.cpp:4471 +msgid "window" +msgstr "okno" + +#: src/gui/gui.cpp:4472 +msgid "song" +msgstr "utwór" + +#: src/gui/gui.cpp:4473 +msgid "song comments" +msgstr "komentarze do utworu" + +#: src/gui/gui.cpp:4474 +msgid "song information" +msgstr "o utworze" + +#: src/gui/gui.cpp:4475 +msgid "subsongs" +msgstr "podutwory" + +#: src/gui/gui.cpp:4477 +msgid "channels" +msgstr "kanały" + +#: src/gui/gui.cpp:4478 +msgid "chip manager" +msgstr "menedżer ukladów" + +#: src/gui/gui.cpp:4479 +msgid "orders" +msgstr "matryca wzorców" + +#: src/gui/gui.cpp:4481 +msgid "pattern manager" +msgstr "menedżer wzorców" + +#: src/gui/gui.cpp:4482 +msgid "mixer" +msgstr "mikser" + +#: src/gui/gui.cpp:4483 +msgid "compatibility flags" +msgstr "flagi kompatybilności" + +#: src/gui/gui.cpp:4486 src/gui/gui.cpp:4488 +msgid "assets" +msgstr "zasoby" + +#: src/gui/gui.cpp:4490 +msgid "instruments" +msgstr "instrumenty" + +#: src/gui/gui.cpp:4491 +msgid "samples" +msgstr "sample" + +#: src/gui/gui.cpp:4492 +msgid "wavetables" +msgstr "fale tablic" + +#: src/gui/gui.cpp:4495 +msgid "instrument editor" +msgstr "edytor instrumentów" + +#: src/gui/gui.cpp:4496 +msgid "sample editor" +msgstr "edytor sampli" + +#: src/gui/gui.cpp:4497 +msgid "wavetable editor" +msgstr "edytor tablic fal" + +#: src/gui/gui.cpp:4500 +msgid "visualizers" +msgstr "wizualizator" + +#: src/gui/gui.cpp:4501 +msgid "oscilloscope (master)" +msgstr "oscyloskop" + +#: src/gui/gui.cpp:4502 +msgid "oscilloscope (per-channel)" +msgstr "oscyloskop (dla poszczególnych kanałów)" + +#: src/gui/gui.cpp:4503 +msgid "oscilloscope (X-Y)" +msgstr "oscyloskop (X-Y)" + +#: src/gui/gui.cpp:4504 +msgid "volume meter" +msgstr "poziom głośności" + +#: src/gui/gui.cpp:4507 +msgid "tempo" +msgstr "tempo" + +#: src/gui/gui.cpp:4508 +msgid "clock" +msgstr "zegar" + +#: src/gui/gui.cpp:4509 +msgid "grooves" +msgstr "wzór rytmu" + +#: src/gui/gui.cpp:4510 +msgid "speed" +msgstr "prędkość" + +#: src/gui/gui.cpp:4514 +msgid "log viewer" +msgstr "podglad logów" + +#: src/gui/gui.cpp:4515 +msgid "register view" +msgstr "podgląd rejestrów" + +#: src/gui/gui.cpp:4516 +msgid "statistics" +msgstr "statystyki" + +#: src/gui/gui.cpp:4517 +msgid "memory composition" +msgstr "zawartość pamięci" + +#: src/gui/gui.cpp:4521 src/gui/gui.cpp:4529 +msgid "effect list" +msgstr "lista efektów" + +#: src/gui/gui.cpp:4522 +msgid "play/edit controls" +msgstr "kontrola edycji/odtwarzania" + +#: src/gui/gui.cpp:4523 +msgid "piano/input pad" +msgstr "klawiatura pianina/panel wejściowy" + +#: src/gui/gui.cpp:4524 +msgid "spoiler" +msgstr "spoiler" + +#: src/gui/gui.cpp:4528 +msgid "Help" +msgstr "Pomoc" + +#: src/gui/gui.cpp:4528 +msgid "help" +msgstr "pomoc" + +#: src/gui/gui.cpp:4530 +msgid "debug menu" +msgstr "menu debugowania" + +#: src/gui/gui.cpp:4531 +msgid "inspector" +msgstr "menu debugowania ImGUI" + +#: src/gui/gui.cpp:4532 +msgid "panic" +msgstr "panika" + +#: src/gui/gui.cpp:4533 +msgid "about..." +msgstr "o programie..." + +#: src/gui/gui.cpp:4548 +#, c-format +msgid "| Speed %d:%d" +msgstr "| Prędkość %d:%d" + +#: src/gui/gui.cpp:4550 +#, c-format +msgid "| Speed %d" +msgstr "| Prędkość %d" + +#: src/gui/gui.cpp:4552 +msgid "| Groove" +msgstr "| Wzór rytmu" + +#: src/gui/gui.cpp:4555 +#, c-format +msgid " @ %gHz (%g BPM) " +msgstr " @ %gHz (%g BPM) " + +#: src/gui/gui.cpp:4558 +#, c-format +msgid "| Order %.2X/%.2X " +msgstr "| Wiersz matrycy wzorców %.2X/%.2X " + +#: src/gui/gui.cpp:4560 +#, c-format +msgid "| Order %d/%d " +msgstr "| Wiersz matrycy wzorców. %d/%d " + +#: src/gui/gui.cpp:4564 +#, c-format +msgid "| Row %.2X/%.2X " +msgstr "| Wiersz %.2X/%.2X " + +#: src/gui/gui.cpp:4566 +#, c-format +msgid "| Row %d/%d " +msgstr "| Wiersz %d/%d " + +#: src/gui/gui.cpp:4569 +msgid "| " +msgstr "| " + +#: src/gui/gui.cpp:4572 +msgid "Don't you have anything better to do?" +msgstr "Serio nie masz nic lepszego do roboty?" + +#: src/gui/gui.cpp:4582 +#, c-format +msgid "%d year " +msgid_plural "%d years " +msgstr[0] "%d rok " +msgstr[1] "%d roku " +msgstr[2] "%d lat " + +#: src/gui/gui.cpp:4583 +#, c-format +msgid "%d month " +msgid_plural "%d months " +msgstr[0] "%d miesiąc " +msgstr[1] "%d miesiąca " +msgstr[2] "%d miesięcy " + +#: src/gui/gui.cpp:4584 +#, c-format +msgid "%d day " +msgid_plural "%d days " +msgstr[0] "%d dzień " +msgstr[1] "%d dnia " +msgstr[2] "%d dni " + +#: src/gui/gui.cpp:4609 +msgid "Note off (cut)" +msgstr "Odcięcie nuty (nagłe)" + +#: src/gui/gui.cpp:4611 +msgid "Note off (release)" +msgstr "Odcięcie nuty (z włączoną fazą zanikania obwiedni)" + +#: src/gui/gui.cpp:4613 +msgid "Macro release only" +msgstr "Odcięcie nuty (tylko dla makr)" + +#: src/gui/gui.cpp:4615 +#, c-format +msgid "Note on: %s" +msgstr "Nuta: %s" + +#: src/gui/gui.cpp:4623 +#, c-format +msgid "Ins %d: " +msgstr "Instrument %d: " + +#: src/gui/gui.cpp:4626 +#, c-format +msgid "Ins %d: %s" +msgstr "Instrument %d: %s" + +#: src/gui/gui.cpp:4635 +#, c-format +msgid "Set volume: %d (%.2X, INVALID!)" +msgstr "Głośność: %d (%.2X, NIEPOPRAWNA!)" + +#: src/gui/gui.cpp:4638 +#, c-format +msgid "Set volume: %d (%.2X, %d%%)" +msgstr "Głośność: %d (%.2X, %d%%)" + +#: src/gui/gui.cpp:4660 +msgid "| modified" +msgstr "| zmodyfikowany" + +#: src/gui/gui.cpp:4825 src/gui/gui.cpp:4828 +msgid "System File Dialog Pending" +msgstr "" + +#: src/gui/gui.cpp:4941 +msgid "" +"there was an error in the file dialog! you may want to report this issue " +"to:\n" +"https://github.com/tildearrow/furnace/issues\n" +"check the Log Viewer (window > log viewer) for more information.\n" +"\n" +"for now please disable the system file picker in Settings > General." +msgstr "" +"wystąpił błąd w oknie dialogowym pliku!możesz chcieć zgłosić błąd:\n" +"https://github.com/tildearrow/furnace/issues\n" +"Aby uzyskać więcej informacji, można otworzyć podgląd logów (okno > podgląd " +"logów).\n" +"\n" +"na razie można wyłączyć systemowe okno dialogowe plików w ustawieniach > " +"podstawowe." + +#: src/gui/gui.cpp:4944 +msgid "can't do anything without Storage permissions!" +msgstr "nie da się zrobić niczego bez pozwolenia na zapis" + +#: src/gui/gui.cpp:4946 +msgid "" +"Zenity/KDialog not available!\n" +"please install one of these, or disable the system file picker in Settings > " +"General." +msgstr "" +"nie znaleziono Zenity/KDialog!\n" +"zainstaluj jedno z nich lub wyłącz systemowe okno dialogowe w ustawieniach > " +"podstawowe." + +#: src/gui/gui.cpp:5082 +msgid "" +"error while saving instrument! only the following instrument types are " +"supported:\n" +"- FM (OPN)\n" +"- SN76489/Sega PSG\n" +"- Game Boy\n" +"- PC Engine\n" +"- NES\n" +"- C64\n" +"- FM (OPLL)\n" +"- FDS" +msgstr "" +"błąd podczas zapisywania! tylko następujące typy instrumentów są wspierane:\n" +"- FM (OPN)\n" +"- SN76489/Sega PSG\n" +"- Game Boy\n" +"- PC Engine\n" +"- NES\n" +"- C64\n" +"- FM (OPLL)\n" +"- FDS" + +#: src/gui/gui.cpp:5110 +msgid "there were some errors while loading samples:\n" +msgstr "" + +#: src/gui/gui.cpp:5155 src/gui/gui.cpp:6339 +msgid "...but you haven't selected a sample!" +msgstr "...ale nie wybrano sampla!" + +#: src/gui/gui.cpp:5170 src/gui/gui.cpp:5179 +msgid "could not save sample! open Log Viewer for more information." +msgstr "" +"nie udało się zapisać sampla! otwoórz podgląd logów aby uzyskać więcej " +"informacji." + +#: src/gui/gui.cpp:5198 +msgid "there were some warnings/errors while loading instruments:\n" +msgstr "" + +#: src/gui/gui.cpp:5204 +#, c-format +msgid "> %s: cannot load instrument! (%s)\n" +msgstr "" + +#: src/gui/gui.cpp:5222 src/gui/gui.cpp:5276 +#, c-format +msgid "cannot load instrument! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5228 +msgid "" +"congratulations! you managed to load nothing.\n" +"you are entitled to a bug report." +msgstr "" +"Gratulacje! Nie udało ci się nic wczytać.\n" +"możesz spokojnie zgłosić błąd w programie." + +#: src/gui/gui.cpp:5269 src/gui/gui.cpp:6243 +msgid "...but you haven't selected an instrument!" +msgstr "...ale nie wybrano instrumentu!" + +#: src/gui/gui.cpp:5281 +msgid "there were some errors while loading wavetables:\n" +msgstr "wystapily problemy podczas wczytywania tablic fal:\n" + +#: src/gui/gui.cpp:5290 src/gui/gui.cpp:5300 src/gui/gui.cpp:5319 +#, c-format +msgid "cannot load wavetable! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5327 +msgid "...but you haven't selected a wavetable!" +msgstr "...ale nie wybrano tablicy!" + +#: src/gui/gui.cpp:5342 src/gui/gui.cpp:5363 src/gui/gui.cpp:5387 +#: src/gui/gui.cpp:5408 +msgid "could not open file!" +msgstr "nie udało się otworzyć pliku!" + +#: src/gui/gui.cpp:5350 +#, c-format +msgid "could not write VGM! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5371 +#, c-format +msgid "Could not write ZSM! (%s)" +msgstr "nie udało się zapisać pliku ZSM! (%s)" + +#: src/gui/gui.cpp:5395 +#, c-format +msgid "could not write text! (%s)" +msgstr "nie udało się zapisać pliku tekstowego! (%s)" + +#: src/gui/gui.cpp:5416 +#, c-format +msgid "could not write command stream! (%s)" +msgstr "nie udało się zapisać strumienia komend! (%s)" + +#: src/gui/gui.cpp:5440 +msgid "could not import user presets!" +msgstr "nie udało się importować presetów użytkownika!" + +#: src/gui/gui.cpp:5445 src/gui/gui.cpp:5462 +#, c-format +msgid "could not import user presets! (%s)" +msgstr "nie udało się importować presetów użytkownika! (%s)" + +#: src/gui/gui.cpp:5483 +#, c-format +msgid "You opened: %s" +msgstr "Otwarto: %s" + +#: src/gui/gui.cpp:5486 +msgid "You opened:" +msgstr "Otwarto:" + +#: src/gui/gui.cpp:5494 +#, c-format +msgid "You saved: %s" +msgstr "Zapisano: %s" + +#: src/gui/gui.cpp:5515 src/gui/gui.cpp:5636 src/gui/gui.cpp:5637 +#: src/gui/insEdit.cpp:7520 +msgid "Error" +msgstr "Błąd" + +#: src/gui/gui.cpp:5520 src/gui/gui.cpp:6177 src/gui/gui.cpp:6178 +msgid "Select Instrument" +msgstr "" + +#: src/gui/gui.cpp:5525 src/gui/gui.cpp:6256 src/gui/gui.cpp:6257 +msgid "Import Raw Sample" +msgstr "" + +#: src/gui/gui.cpp:5540 src/gui/gui.cpp:5593 src/gui/gui.cpp:5594 +msgid "Rendering..." +msgstr "" + +#: src/gui/gui.cpp:5595 +msgid "Please wait..." +msgstr "Proszę czekać..." + +#: src/gui/gui.cpp:5596 +msgid "Abort" +msgstr "Przerwij" + +#: src/gui/gui.cpp:5638 +#, c-format +msgid "%s" +msgstr "%s" + +#: src/gui/gui.cpp:5868 +msgid "Erasing" +msgstr "Usuwanie:" + +#: src/gui/gui.cpp:5871 +msgid "All subsongs" +msgstr "Wszystkie podutwory" + +#: src/gui/gui.cpp:5878 +msgid "Current subsong" +msgstr "Obecny podutwór" + +#: src/gui/gui.cpp:5945 +msgid "Optimization" +msgstr "Optymalizuj:" + +#: src/gui/gui.cpp:5948 src/gui/patManager.cpp:36 +msgid "De-duplicate patterns" +msgstr "Usuń powtarzające się wzorce" + +#: src/gui/gui.cpp:5957 +msgid "Remove unused instruments" +msgstr "Usuń nieużywane instrumenty" + +#: src/gui/gui.cpp:5970 +msgid "Remove unused samples" +msgstr "Usuń nieużywane sample" + +#: src/gui/gui.cpp:5987 +msgid "Never mind! Cancel" +msgstr "Nie ważne! Anuluj" + +#: src/gui/gui.cpp:6066 +msgid "Drum kit mode:" +msgstr "Tryb zestawu perkusji:" + +#: src/gui/gui.cpp:6070 +msgid "12 samples per octave" +msgstr "12 sampli na oktawę" + +#: src/gui/gui.cpp:6075 +msgid "Starting octave" +msgstr "Oktawa początkowa" + +#: src/gui/gui.cpp:6095 +msgid "Drum Kit" +msgstr "" + +#: src/gui/gui.cpp:6181 +msgid "this is an instrument bank! select which one to use:" +msgstr "to jest bank brzmień! wybierz instrument który checsz użyć:" + +#: src/gui/gui.cpp:6184 +msgid "this is an instrument bank! select which ones to load:" +msgstr "to jest bank brzmień! wybierz instrument który checsz wczytać" + +#: src/gui/gui.cpp:6258 +msgid "Data type:" +msgstr "Typ danych:" + +#: src/gui/gui.cpp:6285 +msgid "(will be mixed down to mono)" +msgstr "(zostanie zmiksowany do mono)" + +#: src/gui/gui.cpp:6286 +msgid "Unsigned" +msgstr "Bez znaku" + +#: src/gui/gui.cpp:6290 +msgid "Big endian" +msgstr "Big endian" + +#: src/gui/gui.cpp:6298 +msgid "Swap nibbles" +msgstr "Zamień miejscami półbajty" + +#: src/gui/gui.cpp:6302 +msgid "Swap words" +msgstr "Zamień miejscami słowa maszynowe" + +#: src/gui/gui.cpp:6306 +msgid "Encoding:" +msgstr "Kodowanie:" + +#: src/gui/gui.cpp:6319 +msgid "Reverse bit order" +msgstr "Odwrotna kolejność bitów" + +#: src/gui/gui.cpp:6361 +msgid "Error! No string provided!" +msgstr "Błąd! Nie podano ciągu znaków!" + +#: src/gui/gui.cpp:6683 +msgid "it appears I couldn't load these fonts. any setting you can check?" +msgstr "" +"wygląda na to że nie mogę wczytać tych czcionek. czy możesz sprawdzić " +"ustawienia?" + +#: src/gui/gui.cpp:6863 src/gui/gui.cpp:6971 +msgid "" +"could not init renderer!\n" +"falling back to software renderer. please restart Furnace." +msgstr "" +"nie udało się uruchomić silnika renderowania!\n" +"przechodzę na renderowanie programowe. proszę uruchomić Furnace ponownie." + +#: src/gui/gui.cpp:6865 src/gui/gui.cpp:6973 +#, c-format +msgid "" +"could not init renderer! %s\n" +"falling back to software renderer. please restart Furnace." +msgstr "" +"nie udało się uruchomić silnika renderowania! %s\n" +"przechodzę na renderowanie programowe. proszę uruchomić Furnace ponownie." + +#: src/gui/gui.cpp:6870 src/gui/gui.cpp:6978 +msgid "could not init renderer!" +msgstr "" + +#: src/gui/gui.cpp:6881 +#, c-format +msgid "could not open window! %s" +msgstr "" + +#: src/gui/gui.cpp:6886 +msgid "" +"\n" +"falling back to software renderer. please restart Furnace." +msgstr "" +"\n" +"przechodzę na renderowanie programowe. proszę uruchomić Furnace ponownie." + +#: src/gui/gui.cpp:7034 +msgid "Size column to fit###SizeOne" +msgstr "Skaluj kolumnę według rozmiaru###SizeOne" + +#: src/gui/gui.cpp:7036 +msgid "Size all columns to fit###SizeAll" +msgstr "Skaluj wszystkie kolumny według rozmiaru###SizeAll" + +#: src/gui/gui.cpp:7038 +msgid "Size all columns to default###SizeAll" +msgstr "Domyuślnie skaluj wszystkie kolumny###SizeAll" + +#: src/gui/gui.cpp:7040 +msgid "Reset order###ResetOrder" +msgstr "Resetuj kolejność###ResetOrder" + +#: src/gui/gui.cpp:7042 +msgid "(Main menu bar)" +msgstr "(Pasek głównego menu)" + +#: src/gui/gui.cpp:7044 +msgid "(Popup)" +msgstr "(Wyskakujące okno)" + +#: src/gui/gui.cpp:7046 +msgid "(Untitled)" +msgstr "(Bez tytułu)" + +#: src/gui/gui.cpp:7048 +msgid "Hide tab bar###HideTabBar" +msgstr "Ukryj pasek zakładek###HideTabBar" + +#: src/gui/gui.cpp:7052 +msgid "LocaleSettings: ccjk" +msgstr "" + +#: src/gui/gui.cpp:7564 +msgid "Unsaved changes! Save changes before quitting?" +msgstr "Niezapisane zmiany! Czy chcesz je zapisać przed wyjściem?" + +#: src/gui/sysManager.cpp:42 +msgid "Preserve channel order" +msgstr "Zachowaj kolejność kanałów" + +#: src/gui/sysManager.cpp:44 +msgid "Clone channel data" +msgstr "Klonuj dane kanału" + +#: src/gui/sysManager.cpp:46 +msgid "Clone at end" +msgstr "Sklonuj i wstaw na koniec" + +#: src/gui/sysManager.cpp:56 +msgid "Actions" +msgstr "Działania" + +#: src/gui/sysManager.cpp:69 +msgid "(drag to swap chips)" +msgstr "(przeciągnij aby zamienić miejscami układy)" + +#: src/gui/sysManager.cpp:90 +msgid "Clone##SysDup" +msgstr "Klonuj##SysDup" + +#: src/gui/sysManager.cpp:92 +#, c-format +msgid "cannot clone chip! (%s)" +msgstr "" + +#: src/gui/sysManager.cpp:98 +msgid "Change##SysChange" +msgstr "Zmień##SysChange" + +#: src/gui/sysManager.cpp:120 +msgid "Are you sure you want to remove this chip?" +msgstr "Czy jesteś pewien że chcesz usunąć ten układ?" + +#: src/gui/patManager.cpp:43 +msgid "Re-arrange patterns" +msgstr "Sortuj wzorce" + +#: src/gui/patManager.cpp:50 +msgid "Sort orders" +msgstr "Sortuj wiesze matrycy wzorców" + +#: src/gui/patManager.cpp:57 +msgid "Make patterns unique" +msgstr "Uczyń wzorce unikalnymi" + +#: src/gui/patManager.cpp:103 +#, c-format +msgid "" +"Pattern %.2X\n" +"- not allocated" +msgstr "" +"Wzorzec %.2X\n" +"- niewykorzystywany" + +#: src/gui/patManager.cpp:105 +#, c-format +msgid "" +"Pattern %.2X\n" +"- use count: %d (%.0f%%)\n" +"\n" +"right-click to erase" +msgstr "" +"Wzorzec %.2X\n" +"- ile razy pojawia się w utworze: %d (%.0f%%)\n" +"\n" +"PPM, aby usunąć" + +#: src/gui/insEdit.cpp:39 +msgid "Down Down Down" +msgstr "Dół Dół Dół" + +#: src/gui/insEdit.cpp:40 +msgid "Down." +msgstr "Dół." + +#: src/gui/insEdit.cpp:41 +msgid "Down Up Down Up" +msgstr "Dół Góra Dół Góra" + +#: src/gui/insEdit.cpp:42 +msgid "Down UP" +msgstr "Dół GÓRA" + +#: src/gui/insEdit.cpp:43 +msgid "Up Up Up" +msgstr "Góra Góra Góra" + +#: src/gui/insEdit.cpp:44 +msgid "Up." +msgstr "Góra." + +#: src/gui/insEdit.cpp:45 +msgid "Up Down Up Down" +msgstr "Góra Dół Góra Dół" + +#: src/gui/insEdit.cpp:46 +msgid "Up DOWN" +msgstr "Góra DÓŁ" + +#: src/gui/insEdit.cpp:50 +msgid "Algorithm" +msgstr "Algorytm" + +#: src/gui/insEdit.cpp:50 +msgid "Feedback" +msgstr "Sprz. zwrotne" + +#: src/gui/insEdit.cpp:50 +msgid "LFO > Freq" +msgstr "LFO > częst." + +#: src/gui/insEdit.cpp:50 +msgid "LFO > Amp" +msgstr "LFO > ampl." + +#: src/gui/insEdit.cpp:50 +msgid "Decay 2" +msgstr "Opadanie 2" + +#: src/gui/insEdit.cpp:50 +msgid "EnvScale" +msgstr "Skala obw." + +#: src/gui/insEdit.cpp:50 +msgid "Multiplier" +msgstr "Mnożnik" + +#: src/gui/insEdit.cpp:50 +msgid "Detune 2" +msgstr "Rozstrój 2" + +#: src/gui/insEdit.cpp:50 +msgid "AM" +msgstr "AM" + +#: src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:5438 src/gui/insEdit.cpp:6516 +msgid "AM Depth" +msgstr "Głębokość AM" + +#: src/gui/insEdit.cpp:50 +msgid "Vibrato Depth" +msgstr "Głębokość Vibrato" + +#: src/gui/insEdit.cpp:50 +msgid "Sustained" +msgstr "Podtrzymany" + +#: src/gui/insEdit.cpp:50 +msgid "Level Scaling" +msgstr "Skalowanie poziomu" + +#: src/gui/insEdit.cpp:50 +msgid "Vibrato" +msgstr "Vibrato" + +#: src/gui/insEdit.cpp:50 +msgid "Scale Rate" +msgstr "Skalowanie stosunku częst." + +#: src/gui/insEdit.cpp:50 +msgid "OP2 Half Sine" +msgstr "Pół-sinusoida na OP2" + +#: src/gui/insEdit.cpp:50 +msgid "OP1 Half Sine" +msgstr "Pół-sinusoida na OP1" + +#: src/gui/insEdit.cpp:50 +msgid "EnvShift" +msgstr "Przes. obwiedni" + +#: src/gui/insEdit.cpp:50 +msgid "Reverb" +msgstr "Reverb" + +#: src/gui/insEdit.cpp:50 +msgid "Fine" +msgstr "Rozstrojenie" + +#: src/gui/insEdit.cpp:50 +msgid "LFO2 > Freq" +msgstr "LFO2 > częst." + +#: src/gui/insEdit.cpp:50 +msgid "LFO2 > Amp" +msgstr "LFO2 > ampl." + +#: src/gui/insEdit.cpp:56 src/gui/insEdit.cpp:68 src/gui/insEdit.cpp:7391 +msgid "OP4 Noise Mode" +msgstr "Tryb szumu OP4" + +#: src/gui/insEdit.cpp:57 +msgid "Envelope Delay" +msgstr "Opóżnienie obwiedni" + +#: src/gui/insEdit.cpp:58 src/gui/insEdit.cpp:70 +msgid "Output Level" +msgstr "Głośność na wyjściu" + +#: src/gui/insEdit.cpp:59 +msgid "Modulation Input Level" +msgstr "Poziom modulacji wyjścia" + +#: src/gui/insEdit.cpp:60 +msgid "Left Output" +msgstr "Lewy kanał" + +#: src/gui/insEdit.cpp:61 +msgid "Right Output" +msgstr "Prawy kanał" + +#: src/gui/insEdit.cpp:62 +msgid "Coarse Tune (semitones)" +msgstr "Przybliżone rozstrojenie (w półtonach)" + +#: src/gui/insEdit.cpp:64 +msgid "Fixed Frequency Mode" +msgstr "Tryb stałej częstotliwości" + +#: src/gui/insEdit.cpp:69 +msgid "Env. Delay" +msgstr "Opóżnienie obw." + +#: src/gui/insEdit.cpp:71 +msgid "ModInput" +msgstr "ModInput" + +#: src/gui/insEdit.cpp:72 +msgid "Left" +msgstr "Lewo" + +#: src/gui/insEdit.cpp:73 +msgid "Right" +msgstr "Prawo" + +#: src/gui/insEdit.cpp:74 +msgid "Tune" +msgstr "Strojenie" + +#: src/gui/insEdit.cpp:76 src/gui/insEdit.cpp:610 src/gui/insEdit.cpp:3792 +#: src/gui/insEdit.cpp:4554 src/gui/insEdit.cpp:4848 +msgid "Fixed" +msgstr "Stały" + +#: src/gui/insEdit.cpp:98 src/gui/insEdit.cpp:117 src/gui/insEdit.cpp:136 +#: src/gui/insEdit.cpp:156 +msgid "User" +msgstr "Użytkownika" + +#: src/gui/insEdit.cpp:99 +msgid "1. Violin" +msgstr "1. Skrzypce" + +#: src/gui/insEdit.cpp:100 src/gui/insEdit.cpp:138 src/gui/insEdit.cpp:158 +msgid "2. Guitar" +msgstr "2. Gitara" + +#: src/gui/insEdit.cpp:101 src/gui/insEdit.cpp:159 +msgid "3. Piano" +msgstr "3. Pianino" + +#: src/gui/insEdit.cpp:102 src/gui/insEdit.cpp:160 +msgid "4. Flute" +msgstr "4. Flet" + +#: src/gui/insEdit.cpp:103 src/gui/insEdit.cpp:122 src/gui/insEdit.cpp:161 +msgid "5. Clarinet" +msgstr "5. Klarnet" + +#: src/gui/insEdit.cpp:104 +msgid "6. Oboe" +msgstr "6. Obój" + +#: src/gui/insEdit.cpp:105 src/gui/insEdit.cpp:124 src/gui/insEdit.cpp:143 +#: src/gui/insEdit.cpp:163 +msgid "7. Trumpet" +msgstr "7. Trąbka" + +#: src/gui/insEdit.cpp:106 +msgid "8. Organ" +msgstr "8. Organy" + +#: src/gui/insEdit.cpp:107 +msgid "9. Horn" +msgstr "9. Róg" + +#: src/gui/insEdit.cpp:108 +msgid "10. Synth" +msgstr "10. Syntezator" + +#: src/gui/insEdit.cpp:109 +msgid "11. Harpsichord" +msgstr "11. Klawesyn" + +#: src/gui/insEdit.cpp:110 src/gui/insEdit.cpp:129 src/gui/insEdit.cpp:148 +msgid "12. Vibraphone" +msgstr "12. Wibrafon" + +#: src/gui/insEdit.cpp:111 +msgid "13. Synth Bass" +msgstr "13. Syntetyczny Bas" + +#: src/gui/insEdit.cpp:112 +msgid "14. Acoustic Bass" +msgstr "14. Akustyczny Bas" + +#: src/gui/insEdit.cpp:113 +msgid "15. Electric Guitar" +msgstr "15. Gitara Elektryczna" + +#: src/gui/insEdit.cpp:114 src/gui/insEdit.cpp:133 src/gui/insEdit.cpp:152 +#: src/gui/insEdit.cpp:172 src/gui/insEdit.cpp:3176 +msgid "Drums" +msgstr "Perkusja" + +#: src/gui/insEdit.cpp:118 +msgid "1. Electric String" +msgstr "1. Elektryczny Instr. Strunowy" + +#: src/gui/insEdit.cpp:119 +msgid "2. Bow wow" +msgstr "2. Bow wow" + +#: src/gui/insEdit.cpp:120 src/gui/insEdit.cpp:139 +msgid "3. Electric Guitar" +msgstr "3. Gitara Elektryczna" + +#: src/gui/insEdit.cpp:121 +msgid "4. Organ" +msgstr "4. Organy" + +#: src/gui/insEdit.cpp:123 +msgid "6. Saxophone" +msgstr "6. Saksofon" + +#: src/gui/insEdit.cpp:125 +msgid "8. Street Organ" +msgstr "8. Katarynka" + +#: src/gui/insEdit.cpp:126 +msgid "9. Synth Brass" +msgstr "9. Syntetyczny instrument dęty" + +#: src/gui/insEdit.cpp:127 +msgid "10. Electric Piano" +msgstr "10. Pianino Elektryczne" + +#: src/gui/insEdit.cpp:128 +msgid "11. Bass" +msgstr "Bas" + +#: src/gui/insEdit.cpp:130 +msgid "13. Chime" +msgstr "13. Dzwonki" + +#: src/gui/insEdit.cpp:131 +msgid "14. Tom Tom II" +msgstr "Tom-tom II" + +#: src/gui/insEdit.cpp:132 +msgid "15. Noise" +msgstr "Szum" + +#: src/gui/insEdit.cpp:137 +msgid "1. Strings" +msgstr "1. Smyczki" + +#: src/gui/insEdit.cpp:140 +msgid "4. Electric Piano" +msgstr "" + +#: src/gui/insEdit.cpp:141 +msgid "5. Flute" +msgstr "5. Flet" + +#: src/gui/insEdit.cpp:142 +msgid "6. Marimba" +msgstr "6. Marimba" + +#: src/gui/insEdit.cpp:144 +msgid "8. Harmonica" +msgstr "8. Harmonijka" + +#: src/gui/insEdit.cpp:145 +msgid "9. Tuba" +msgstr "9. Puzon" + +#: src/gui/insEdit.cpp:146 +msgid "10. Synth Brass" +msgstr "10. Syntetyczny instrument dęty" + +#: src/gui/insEdit.cpp:147 +msgid "11. Short Saw" +msgstr "11. Krótka piła" + +#: src/gui/insEdit.cpp:149 +msgid "13. Electric Guitar 2" +msgstr "13. Gitara Elektryczna 2" + +#: src/gui/insEdit.cpp:150 +msgid "14. Synth Bass" +msgstr "14. Syntetyczny Bas" + +#: src/gui/insEdit.cpp:151 +msgid "15. Sitar" +msgstr "15. Sitar" + +#: src/gui/insEdit.cpp:157 +msgid "1. Bell" +msgstr "1. Dzwon" + +#: src/gui/insEdit.cpp:162 +msgid "6. Rattling Bell" +msgstr "6. Grzechoczący dzwon" + +#: src/gui/insEdit.cpp:164 +msgid "8. Reed Organ" +msgstr "8. Fisharmonia" + +#: src/gui/insEdit.cpp:165 +msgid "9. Soft Bell" +msgstr "9. \"Miękki\" dzwon" + +#: src/gui/insEdit.cpp:166 +msgid "10. Xylophone" +msgstr "10. Ksylofon" + +#: src/gui/insEdit.cpp:167 +msgid "11. Vibraphone" +msgstr "11. Wibrafon" + +#: src/gui/insEdit.cpp:168 +msgid "12. Brass" +msgstr "12. Instrument dęty" + +#: src/gui/insEdit.cpp:169 +msgid "13. Bass Guitar" +msgstr "13. Gitara basowa" + +#: src/gui/insEdit.cpp:170 +msgid "14. Synth" +msgstr "14. Syntezator" + +#: src/gui/insEdit.cpp:171 +msgid "15. Chorus" +msgstr "15. Chór" + +#: src/gui/insEdit.cpp:178 src/gui/insEdit.cpp:189 +msgid "Half Sine" +msgstr "Połowa sinusoidy" + +#: src/gui/insEdit.cpp:179 src/gui/insEdit.cpp:190 +msgid "Absolute Sine" +msgstr "Moduł sinusoidy" + +#: src/gui/insEdit.cpp:180 +msgid "Quarter Sine" +msgstr "Ćwierć sinusoidy" + +#: src/gui/insEdit.cpp:181 src/gui/insEdit.cpp:203 +msgid "Squished Sine" +msgstr "Spłaszczona sinusoida" + +#: src/gui/insEdit.cpp:182 src/gui/insEdit.cpp:205 +msgid "Squished AbsSine" +msgstr "Spłaszczony moduł sinusoidy" + +#: src/gui/insEdit.cpp:184 src/gui/insEdit.cpp:195 +msgid "Derived Square" +msgstr "Pochodna fali kwadratowej" + +#: src/gui/insEdit.cpp:191 +msgid "Pulse Sine" +msgstr "Puls sinusoidalny" + +#: src/gui/insEdit.cpp:192 +msgid "Sine (Even Periods)" +msgstr "Sinusoida (parzyste okresy)" + +#: src/gui/insEdit.cpp:193 +msgid "AbsSine (Even Periods)" +msgstr "Moduł sinusoidy (parzyste okresy)" + +#: src/gui/insEdit.cpp:201 +msgid "Cut Sine" +msgstr "Obcięta sinusoida" + +#: src/gui/insEdit.cpp:202 +msgid "Cut Triangle" +msgstr "Obc. fala trójkątna" + +#: src/gui/insEdit.cpp:204 +msgid "Squished Triangle" +msgstr "Spłaszczona fala trójkątna" + +#: src/gui/insEdit.cpp:206 +msgid "Squished AbsTriangle" +msgstr "Spł. moduł fali trójk." + +#: src/gui/insEdit.cpp:224 +msgid "Noise disabled" +msgstr "Szum wyłączony" + +#: src/gui/insEdit.cpp:225 +msgid "Square + noise" +msgstr "Fala kwadratowa + szum" + +#: src/gui/insEdit.cpp:226 +msgid "Ringmod from OP3 + noise" +msgstr "Modulacja kołowa op.3 + szum" + +#: src/gui/insEdit.cpp:227 +msgid "" +"Ringmod from OP3 + double pitch ModInput\n" +"WARNING - has emulation issues; subject to change" +msgstr "" +"Modulacja kołowa OP3 + ModInput z podwojoną wysokością dźwięku\n" +"nUWAGA - występują problemy z emulacją tego trybu, może on ulec zmianie" + +#: src/gui/insEdit.cpp:232 +msgid "Bitwise AND" +msgstr "Bitowe AND" + +#: src/gui/insEdit.cpp:233 +msgid "Bitwise OR" +msgstr "Bitowe OR" + +#: src/gui/insEdit.cpp:234 +msgid "Bitwise XOR" +msgstr "Bitowe XOR" + +#: src/gui/insEdit.cpp:239 src/gui/insEdit.cpp:390 +msgid "gate" +msgstr "bramka obw." + +#: src/gui/insEdit.cpp:240 src/gui/insEdit.cpp:391 +msgid "sync" +msgstr "synchro" + +#: src/gui/insEdit.cpp:241 src/gui/insEdit.cpp:392 +msgid "ring" +msgstr "kołowa" + +#: src/gui/insEdit.cpp:327 +msgid "How did you even" +msgstr "Jak ci się to w ogóle udało?" + +#: src/gui/insEdit.cpp:335 +msgid "triangle" +msgstr "fala trójk." + +#: src/gui/insEdit.cpp:336 src/gui/insEdit.cpp:5821 +msgid "saw" +msgstr "piłokształtna" + +#: src/gui/insEdit.cpp:337 src/gui/insEdit.cpp:5827 +msgid "pulse" +msgstr "prostokątna" + +#: src/gui/insEdit.cpp:338 src/gui/insEdit.cpp:344 src/gui/insEdit.cpp:373 +#: src/gui/insEdit.cpp:424 src/gui/insEdit.cpp:429 src/gui/insEdit.cpp:5833 +msgid "noise" +msgstr "szum" + +#: src/gui/insEdit.cpp:343 +msgid "tone" +msgstr "ton" + +#: src/gui/insEdit.cpp:345 +msgid "envelope" +msgstr "obwiednia" + +#: src/gui/insEdit.cpp:350 +msgid "hold" +msgstr "podtrzymanie" + +#: src/gui/insEdit.cpp:351 +msgid "alternate" +msgstr "zmiana" + +#: src/gui/insEdit.cpp:352 src/gui/insEdit.cpp:364 +msgid "direction" +msgstr "kierunek" + +#: src/gui/insEdit.cpp:353 src/gui/insEdit.cpp:436 +msgid "enable" +msgstr "włącz" + +#: src/gui/insEdit.cpp:357 src/gui/insEdit.cpp:368 +msgid "enabled" +msgstr "włączony" + +#: src/gui/insEdit.cpp:361 +msgid "mirror" +msgstr "odbicie" + +#: src/gui/insEdit.cpp:365 +msgid "resolution" +msgstr "rozdzielczość" + +#: src/gui/insEdit.cpp:366 +msgid "fixed" +msgstr "stały" + +#: src/gui/insEdit.cpp:367 +msgid "N/A" +msgstr "brak" + +#: src/gui/insEdit.cpp:374 +msgid "echo" +msgstr "echo" + +#: src/gui/insEdit.cpp:375 +msgid "pitch mod" +msgstr "mod. wysokości dźw." + +#: src/gui/insEdit.cpp:376 src/gui/insEdit.cpp:508 +msgid "invert right" +msgstr "odwróć prawo" + +#: src/gui/insEdit.cpp:377 src/gui/insEdit.cpp:509 +msgid "invert left" +msgstr "odwróć lewo" + +#: src/gui/insEdit.cpp:382 src/gui/insEdit.cpp:5905 +msgid "low" +msgstr "dolno" + +#: src/gui/insEdit.cpp:383 src/gui/insEdit.cpp:5911 +msgid "band" +msgstr "środk." + +#: src/gui/insEdit.cpp:384 src/gui/insEdit.cpp:5917 +msgid "high" +msgstr "górno" + +#: src/gui/insEdit.cpp:385 src/gui/insEdit.cpp:5924 +msgid "ch3off" +msgstr "wył. kanał 3" + +#: src/gui/insEdit.cpp:393 +msgid "test" +msgstr "test" + +#: src/gui/insEdit.cpp:398 +msgid "15KHz" +msgstr "15KHz" + +#: src/gui/insEdit.cpp:399 +msgid "filter 2+4" +msgstr "filtr 2+4" + +#: src/gui/insEdit.cpp:400 +msgid "filter 1+3" +msgstr "filtr 1+3" + +#: src/gui/insEdit.cpp:401 +msgid "16-bit 3+4" +msgstr "16-bitowy 3+4" + +#: src/gui/insEdit.cpp:402 +msgid "16-bit 1+2" +msgstr "16-bitowy 1+2" + +#: src/gui/insEdit.cpp:403 +msgid "high3" +msgstr "górno3" + +#: src/gui/insEdit.cpp:404 +msgid "high1" +msgstr "górno1" + +#: src/gui/insEdit.cpp:405 +msgid "poly9" +msgstr "wielomian 9" + +#: src/gui/insEdit.cpp:414 +msgid "16'" +msgstr "16'" + +#: src/gui/insEdit.cpp:415 +msgid "8'" +msgstr "8'" + +#: src/gui/insEdit.cpp:416 +msgid "4'" +msgstr "4'" + +#: src/gui/insEdit.cpp:417 +msgid "2'" +msgstr "2'" + +#: src/gui/insEdit.cpp:418 +msgid "sustain" +msgstr "podtrzymanie" + +#: src/gui/insEdit.cpp:423 +msgid "square" +msgstr "fala kwadratowa" + +#: src/gui/insEdit.cpp:431 +msgid "surround" +msgstr "przestrzenny" + +#: src/gui/insEdit.cpp:437 +msgid "oneshot" +msgstr "jednokrotny" + +#: src/gui/insEdit.cpp:438 +msgid "split L/R" +msgstr "rozdzielenie L/P" + +#: src/gui/insEdit.cpp:439 +msgid "HinvR" +msgstr "HinvR" + +#: src/gui/insEdit.cpp:440 +msgid "VinvR" +msgstr "VinvR" + +#: src/gui/insEdit.cpp:441 +msgid "HinvL" +msgstr "HinvL" + +#: src/gui/insEdit.cpp:442 +msgid "VinvL" +msgstr "VinvL" + +#: src/gui/insEdit.cpp:447 src/gui/insEdit.cpp:476 +msgid "ring mod" +msgstr "mod. kołowa" + +#: src/gui/insEdit.cpp:448 +msgid "low pass" +msgstr "dolnoprzepustowy" + +#: src/gui/insEdit.cpp:449 src/gui/insEdit.cpp:475 +msgid "high pass" +msgstr "górnoprzepustowy" + +#: src/gui/insEdit.cpp:450 +msgid "band pass" +msgstr "środkowoprzepustowy" + +#: src/gui/insEdit.cpp:459 +msgid "enable tap B" +msgstr "wł. przełącznik B" + +#: src/gui/insEdit.cpp:460 +msgid "AM with slope" +msgstr "AM ze spadkiem" + +#: src/gui/insEdit.cpp:465 +msgid "invert B" +msgstr "odwróć B" + +#: src/gui/insEdit.cpp:466 +msgid "invert A" +msgstr "odwróć A" + +#: src/gui/insEdit.cpp:467 +msgid "reset B" +msgstr "resetuj B" + +#: src/gui/insEdit.cpp:468 +msgid "reset A" +msgstr "resetuj a" + +#: src/gui/insEdit.cpp:469 +msgid "clip B" +msgstr "przytnij B" + +#: src/gui/insEdit.cpp:470 +msgid "clip A" +msgstr "przytnij A" + +#: src/gui/insEdit.cpp:477 +msgid "swap counters (noise)" +msgstr "zamień liczniki (szum)" + +#: src/gui/insEdit.cpp:478 +msgid "low pass (noise)" +msgstr "filtr dolnop. (szum)" + +#: src/gui/insEdit.cpp:485 +msgid "rear right" +msgstr "tylny prawy" + +#: src/gui/insEdit.cpp:486 +msgid "rear left" +msgstr "tylny lewy" + +#: src/gui/insEdit.cpp:491 +msgid "on" +msgstr "wł." + +#: src/gui/insEdit.cpp:496 +msgid "k1 slowdown" +msgstr "spowolnienie k1" + +#: src/gui/insEdit.cpp:497 +msgid "k2 slowdown" +msgstr "spowolnienie k2" + +#: src/gui/insEdit.cpp:502 +msgid "pause" +msgstr "stop" + +#: src/gui/insEdit.cpp:503 +msgid "reverse" +msgstr "odwr. kierunek" + +#: src/gui/insEdit.cpp:521 +msgid "Subtract" +msgstr "Odejmij" + +#: src/gui/insEdit.cpp:522 +msgid "Average" +msgstr "Uśrednij" + +#: src/gui/insEdit.cpp:523 src/gui/insEdit.cpp:2037 +msgid "Phase" +msgstr "Faza" + +#: src/gui/insEdit.cpp:524 +msgid "Chorus" +msgstr "Chór" + +#: src/gui/insEdit.cpp:528 +msgid "None (dual)" +msgstr "Brak (podwójna tablica)" + +#: src/gui/insEdit.cpp:529 +msgid "Wipe" +msgstr "Wzajemne wymazywanie" + +#: src/gui/insEdit.cpp:531 +msgid "Fade (ping-pong)" +msgstr "Transformacja (tam i z powr.)" + +#: src/gui/insEdit.cpp:532 +msgid "Overlay" +msgstr "Nakładanie" + +#: src/gui/insEdit.cpp:533 +msgid "Negative Overlay" +msgstr "Odwrotne nakładanie" + +#: src/gui/insEdit.cpp:534 +msgid "Slide" +msgstr "Zjazd" + +#: src/gui/insEdit.cpp:535 +msgid "Mix Chorus" +msgstr "Miksowanie (chór)" + +#: src/gui/insEdit.cpp:536 +msgid "Phase Modulation" +msgstr "Modulacja fazy" + +#: src/gui/insEdit.cpp:541 +msgid "Sweep" +msgstr "Sprz. portamento" + +#: src/gui/insEdit.cpp:542 src/gui/insEdit.cpp:552 +msgid "Wait" +msgstr "Czekaj" + +#: src/gui/insEdit.cpp:543 src/gui/insEdit.cpp:553 +msgid "Wait for Release" +msgstr "Czekaj na zwolnienie" + +#: src/gui/insEdit.cpp:545 src/gui/insEdit.cpp:555 +msgid "Loop until Release" +msgstr "Zapętlaj aż do zwolnienie" + +#: src/gui/insEdit.cpp:549 +msgid "Volume Sweep" +msgstr "Płynna zmiana głośności" + +#: src/gui/insEdit.cpp:550 +msgid "Frequency Sweep" +msgstr "Płynna zmiana częstotliwości" + +#: src/gui/insEdit.cpp:551 +msgid "Cutoff Sweep" +msgstr "Płynna zmiana punktu odcięcia" + +#: src/gui/insEdit.cpp:559 src/gui/insEdit.cpp:6604 +msgid "Direct" +msgstr "Bezpośrednie" + +#: src/gui/insEdit.cpp:560 src/gui/insEdit.cpp:6608 +msgid "Decrease (linear)" +msgstr "Opadanie (liniowe)" + +#: src/gui/insEdit.cpp:561 src/gui/insEdit.cpp:6612 +msgid "Decrease (logarithmic)" +msgstr "Opadanie (logarytmiczne)" + +#: src/gui/insEdit.cpp:562 src/gui/insEdit.cpp:6616 +msgid "Increase (linear)" +msgstr "Wzrost (liniowy)" + +#: src/gui/insEdit.cpp:563 src/gui/insEdit.cpp:6620 +msgid "Increase (bent line)" +msgstr "Wzrost (zakrzywiony)" + +#: src/gui/insEdit.cpp:611 +msgid "Relative" +msgstr "Względne" + +#: src/gui/insEdit.cpp:616 +#, c-format +msgid "%d: +%d (exponential)" +msgstr "" + +#: src/gui/insEdit.cpp:619 +#, c-format +msgid "%d: +%d (linear)" +msgstr "" + +#: src/gui/insEdit.cpp:622 +#, c-format +msgid "%d: -%d (exponential)" +msgstr "" + +#: src/gui/insEdit.cpp:625 +#, c-format +msgid "%d: -%d (linear)" +msgstr "" + +#: src/gui/insEdit.cpp:627 +#, c-format +msgid "%d: %d (direct)" +msgstr "" + +#: src/gui/insEdit.cpp:660 +msgid "Random" +msgstr "Szum" + +#: src/gui/insEdit.cpp:1610 +msgid "" +"left click to restart\n" +"middle click to pause\n" +"right click to see algorithm" +msgstr "" +"LPM aby zrestartować\n" +"SPM żeby zatrzymać\n" +"PPM, aby przełączyć na podgląd algorytmu" + +#: src/gui/insEdit.cpp:1620 +msgid "" +"left click to configure TL scaling\n" +"right click to see FM preview" +msgstr "" +"LPM by skonfigurować skalowanie TL operatora\n" +"PPM, aby przełączyć na podgląd sygnału FM" + +#: src/gui/insEdit.cpp:1624 +msgid "right click to see FM preview" +msgstr "PPM, aby przełączyć na podgląd sygnału FM" + +#: src/gui/insEdit.cpp:1639 +msgid "operator level changes with volume?" +msgstr "poziom operatora ma się zmieniać wraz z głośnością?" + +#: src/gui/insEdit.cpp:1648 +msgid "AUTO##OPKVS" +msgstr "AUTO##OPKVS" + +#: src/gui/insEdit.cpp:1650 +msgid "NO##OPKVS" +msgstr "NIE##OPKVS" + +#: src/gui/insEdit.cpp:1652 +msgid "YES##OPKVS" +msgstr "TAK##OPKVS" + +#: src/gui/insEdit.cpp:1900 src/gui/insEdit.cpp:2005 +msgid "Bottom" +msgstr "Min." + +#: src/gui/insEdit.cpp:1940 +msgid "Hold" +msgstr "Opóźnienie po czasie narastania" + +#: src/gui/insEdit.cpp:1949 +msgid "SusTime" +msgstr "Długość podtrzymania" + +#: src/gui/insEdit.cpp:1969 +msgid "SusDecay" +msgstr "Opadanie podtrzymania" + +#: src/gui/insEdit.cpp:2047 +msgid "Shape" +msgstr "Kształt fali" + +#: src/gui/insEdit.cpp:2100 +msgid "Macro type: Sequence" +msgstr "Typ makra: Sekwencja" + +#: src/gui/insEdit.cpp:2103 +msgid "Macro type: ADSR" +msgstr "Typ makra: obwiednia ADSR" + +#: src/gui/insEdit.cpp:2106 +msgid "Macro type: LFO" +msgstr "Typ makra: LFO" + +#: src/gui/insEdit.cpp:2109 +msgid "Macro type: What's going on here?" +msgstr "Typ makra: Co tu się dzieje?" + +#: src/gui/insEdit.cpp:2122 +msgid "Delay/Step Length" +msgstr "Opóźnienie/Długość kroku" + +#: src/gui/insEdit.cpp:2125 +msgid "Step Length (ticks)##IMacroSpeed" +msgstr "Długość kroku (w krokach silnika trackera)##IMacroSpeed" + +#: src/gui/insEdit.cpp:2129 +msgid "Delay##IMacroDelay" +msgstr "Opóźnienie##IMacroDelay" + +#: src/gui/insEdit.cpp:2142 +msgid "Release mode: Active (jump to release pos)" +msgstr "Typ zwolnienia: aktywny (skok do pozycji zwolnienia)" + +#: src/gui/insEdit.cpp:2144 +msgid "Release mode: Passive (delayed release)" +msgstr "Typ zwolnienia: pasywny (opóźnione zwolnienie)" + +#: src/gui/insEdit.cpp:2393 +msgid "StepLen" +msgstr "Dł. kroku" + +#: src/gui/insEdit.cpp:2401 +msgid "Delay" +msgstr "Opóźnienie" + +#: src/gui/insEdit.cpp:2425 +msgid "The heck? No, this isn't even working correctly..." +msgstr "Co do kurwy?.. Nie, to w ogóle nie działa jak należy..." + +#: src/gui/insEdit.cpp:2428 +msgid "The only problem with that selectedMacro is that it's a bug..." +msgstr "Jedyny problem z tym selectedMacro jest to, że jest to błąd..." + +#: src/gui/insEdit.cpp:2589 +msgid "(copying)" +msgstr "(kopiowanie)" + +#: src/gui/insEdit.cpp:2591 +msgid "(swapping)" +msgstr "(zamiana)" + +#: src/gui/insEdit.cpp:2595 +msgid "" +"- drag to swap operator\n" +"- shift-drag to copy operator" +msgstr "" +"- przeciągnij i upuść, aby zamienić parametry operatora miesjcami\n" +"- przeciągnij i upuść z wciśniętym SHIFT, aby skopiować parametry operatora" + +#: src/gui/insEdit.cpp:2632 +msgid "new DPCM features disabled (compatibility)!" +msgstr "nowe funkcje DPCM wyłączone (kompatybilność)!" + +#: src/gui/insEdit.cpp:2633 +msgid "click here to enable them." +msgstr "klinij tutaj aby je włączyć." + +#: src/gui/insEdit.cpp:2644 +msgid "none selected" +msgstr "nie wybrano" + +#: src/gui/insEdit.cpp:2657 +msgid "Use sample" +msgstr "Użyj sampla" + +#: src/gui/insEdit.cpp:2659 +msgid "Sample bank slot##BANKSLOT" +msgstr "Numer banka sampli##BANKSLOT" + +#: src/gui/insEdit.cpp:2681 +msgid "Use wavetable (Amiga/Generic DAC only)" +msgstr "Użyj tablicy fal (tylko dla Amigi/przetwornika A/C)" + +#: src/gui/insEdit.cpp:2681 +msgid "Use wavetable" +msgstr "Używaj tablicy fal" + +#: src/gui/insEdit.cpp:2708 +msgid "Use sample map" +msgstr "Użyj mapy sampli" + +#: src/gui/insEdit.cpp:2730 +msgid "delta" +msgstr "delta" + +#: src/gui/insEdit.cpp:2736 +msgid "sample name" +msgstr "nazwa sampla" + +#: src/gui/insEdit.cpp:3001 +msgid "set entire map to this pitch" +msgstr "ustaw tą wysokość sampla dla całej mapy" + +#: src/gui/insEdit.cpp:3009 +msgid "set entire map to this delta counter value" +msgstr "ustaw tą wartość licznika delta dla całej mapy" + +#: src/gui/insEdit.cpp:3018 +msgid "set entire map to this note" +msgstr "ustaw tą nutę dla całej mapy" + +#: src/gui/insEdit.cpp:3027 +msgid "set entire map to this sample" +msgstr "ustaw ten sampel dla całej mapy" + +#: src/gui/insEdit.cpp:3037 +msgid "reset pitches" +msgstr "zresetuj wysokości dźwięku" + +#: src/gui/insEdit.cpp:3042 +msgid "clear delta counter values" +msgstr "wyczyść wartośći licznika delta" + +#: src/gui/insEdit.cpp:3048 +msgid "reset notes" +msgstr "resetuj nuty" + +#: src/gui/insEdit.cpp:3054 +msgid "clear map samples" +msgstr "wyczyść sample z mapy" + +#: src/gui/insEdit.cpp:3148 +msgid "Request from TX81Z" +msgstr "Żądaj dane od TX81Z" + +#: src/gui/insEdit.cpp:3234 +#, c-format +msgid "%s name" +msgstr "nazwa %s" + +#: src/gui/insEdit.cpp:3286 +msgid "Fixed frequency mode" +msgstr "Tryb stałej częstotliwości" + +#: src/gui/insEdit.cpp:3288 +msgid "" +"when enabled, drums will be set to the specified frequencies, ignoring the " +"note." +msgstr "" +"gdy tryb ten jest włączony, instrumenty perkusji będą grane na określonych " +"częstotliwościach. Wartości nut będą ignorowane." + +#: src/gui/insEdit.cpp:3296 +msgid "Drum" +msgstr "Perkusja" + +#: src/gui/insEdit.cpp:3298 src/gui/insEdit.cpp:3798 src/gui/insEdit.cpp:3904 +#: src/gui/insEdit.cpp:4404 src/gui/insEdit.cpp:4468 src/gui/insEdit.cpp:5068 +#: src/gui/insEdit.cpp:5518 +msgid "Block" +msgstr "Blok" + +#: src/gui/insEdit.cpp:3300 src/gui/insEdit.cpp:3803 src/gui/insEdit.cpp:3909 +#: src/gui/insEdit.cpp:4993 src/gui/insEdit.cpp:5079 src/gui/insEdit.cpp:5519 +msgid "FreqNum" +msgstr "FreqNum" + +#: src/gui/insEdit.cpp:3303 +msgid "Snare/Hi-hat" +msgstr "Werbel/Hi-hat" + +#: src/gui/insEdit.cpp:3304 +msgid "Tom/Top" +msgstr "Tom/Talerz" + +#: src/gui/insEdit.cpp:3314 +msgid "Volume##TL" +msgstr "Głośność##TL" + +#: src/gui/insEdit.cpp:3316 +msgid "this volume slider only works in compatibility (non-drums) system." +msgstr "" +"ta regulacja głośności działa tylko w kompatybilnym (nie-perkusyjnym) " +"systemie." + +#: src/gui/insEdit.cpp:3626 +msgid "Env" +msgstr "Obw." + +#: src/gui/insEdit.cpp:3980 src/gui/insEdit.cpp:4346 src/gui/insEdit.cpp:4396 +#: src/gui/insEdit.cpp:5104 +msgid "OPL2/3 only (last 4 waveforms are OPL3 only)" +msgstr "Tylko OPL2/3 (ostanie 4 kształty fal sa dostepne tylko na OPL3)" + +#: src/gui/insEdit.cpp:4079 src/gui/insEdit.cpp:4788 +#, c-format +msgid "Envelope 2 (kick only)" +msgstr "Obwiednia 2 (tylko dla bebna basowego)" + +#: src/gui/insEdit.cpp:4084 +#, c-format +msgid "Operator %d" +msgstr "Operator %d" + +#: src/gui/insEdit.cpp:4414 +msgid "Freq" +msgstr "Częst." + +#: src/gui/insEdit.cpp:4443 +msgid "Only on YM2151 (OPM)" +msgstr "Tylko na YM2151 OPM)" + +#: src/gui/insEdit.cpp:4466 +msgid "Blk" +msgstr "Blk" + +#: src/gui/insEdit.cpp:4479 +msgid "F" +msgstr "F" + +#: src/gui/insEdit.cpp:4481 +msgid "Frequency (F-Num)" +msgstr "Częstotliwość (F-Num)" + +#: src/gui/insEdit.cpp:4833 +msgid "SSG On" +msgstr "Wł. SSG" + +#: src/gui/insEdit.cpp:5206 src/gui/insEdit.cpp:5207 +msgid "waiting..." +msgstr "czekaj..." + +#: src/gui/insEdit.cpp:5210 src/gui/insEdit.cpp:5211 +msgid "no instrument selected" +msgstr "nie wybrano żadnego instrumentu" + +#: src/gui/insEdit.cpp:5393 +msgid "" +"none of the currently present chips are able to play this instrument type!" +msgstr "żaden z obecnych układów nie obsługuje instrumentu tego typu !" + +#: src/gui/insEdit.cpp:5413 +msgid "FM Macros" +msgstr "Makra FM" + +#: src/gui/insEdit.cpp:5435 src/gui/insEdit.cpp:5440 +msgid "LFO Speed" +msgstr "Prędkość LFO" + +#: src/gui/insEdit.cpp:5439 src/gui/insEdit.cpp:6514 +msgid "PM Depth" +msgstr "Głębokość PM" + +#: src/gui/insEdit.cpp:5441 +msgid "LFO Shape" +msgstr "Kształt fali LFO" + +#: src/gui/insEdit.cpp:5444 +msgid "OpMask" +msgstr "Maska operatorów" + +#: src/gui/insEdit.cpp:5446 +msgid "AM Depth 2" +msgstr "Głębokość AM 2" + +#: src/gui/insEdit.cpp:5447 +msgid "PM Depth 2" +msgstr "Głębokość PM 2" + +#: src/gui/insEdit.cpp:5448 +msgid "LFO2 Speed" +msgstr "Prędkość LFO 2" + +#: src/gui/insEdit.cpp:5449 +msgid "LFO2 Shape" +msgstr "Kształt fali 2" + +#: src/gui/insEdit.cpp:5458 +#, c-format +msgid "Operator Macros" +msgstr "Makra operatorów" + +#: src/gui/insEdit.cpp:5460 +#, c-format +msgid "OP%d Macros" +msgstr "Makra op.%d" + +#: src/gui/insEdit.cpp:5521 +msgid "Op. Arpeggio" +msgstr "Arpeggio operatora" + +#: src/gui/insEdit.cpp:5522 +msgid "Op. Pitch" +msgstr "Wysokość operatora" + +#: src/gui/insEdit.cpp:5531 +msgid "Op. Panning" +msgstr "Panning operatora" + +#: src/gui/insEdit.cpp:5558 +msgid "Use software envelope" +msgstr "Używaj obwiedni programowej" + +#: src/gui/insEdit.cpp:5559 +msgid "Initialize envelope on every note" +msgstr "Inicjalizuj obwiednię przy każdej nucie" + +#: src/gui/insEdit.cpp:5560 +msgid "Double wave length (GBA only)" +msgstr "Podwójna długość fali (tylko na GBA)" + +#: src/gui/insEdit.cpp:5589 src/gui/insEdit.cpp:5666 +msgid "Sound Length" +msgstr "Dlugość dzwięku" + +#: src/gui/insEdit.cpp:5592 src/gui/insEdit.cpp:5666 +msgid "Infinity" +msgstr "Nieskończoność" + +#: src/gui/insEdit.cpp:5596 +msgid "Direction" +msgstr "Kierunek" + +#: src/gui/insEdit.cpp:5599 src/gui/insEdit.cpp:5669 src/gui/insEdit.cpp:5697 +#: src/gui/insEdit.cpp:6008 src/gui/insEdit.cpp:6051 +msgid "Up" +msgstr "Góra" + +#: src/gui/insEdit.cpp:5604 src/gui/insEdit.cpp:5674 src/gui/insEdit.cpp:5702 +#: src/gui/insEdit.cpp:6013 src/gui/insEdit.cpp:6056 +msgid "Down" +msgstr "Dół" + +#: src/gui/insEdit.cpp:5620 src/gui/insEdit.cpp:5953 +msgid "Hardware Sequence" +msgstr "Sekwencja sprzętowa" + +#: src/gui/insEdit.cpp:5630 src/gui/insEdit.cpp:5963 +msgid "Tick" +msgstr "Skok" + +#: src/gui/insEdit.cpp:5632 src/gui/insEdit.cpp:5965 +msgid "Command" +msgstr "Komenda" + +#: src/gui/insEdit.cpp:5634 src/gui/insEdit.cpp:5967 +msgid "Move/Remove" +msgstr "Przenieś/usuń" + +#: src/gui/insEdit.cpp:5663 +msgid "Env Length" +msgstr "Długość obwiedni" + +#: src/gui/insEdit.cpp:5690 +msgid "Shift" +msgstr "Jak bardzo" + +#: src/gui/insEdit.cpp:5717 src/gui/insEdit.cpp:6073 +msgid "Ticks" +msgstr "Kroki" + +#: src/gui/insEdit.cpp:5736 src/gui/insEdit.cpp:6092 src/gui/insEdit.cpp:6239 +msgid "Position" +msgstr "Położenie" + +#: src/gui/insEdit.cpp:5815 +msgid "tri" +msgstr "trojkatna" + +#: src/gui/insEdit.cpp:5882 +msgid "Ring Modulation" +msgstr "Modulacja kołowa" + +#: src/gui/insEdit.cpp:5886 +msgid "Oscillator Sync" +msgstr "Synchronizacja oscylotorów" + +#: src/gui/insEdit.cpp:5890 +msgid "Enable filter" +msgstr "Włącz filtr" + +#: src/gui/insEdit.cpp:5891 +msgid "Initialize filter" +msgstr "Inicjalizuj filtr" + +#: src/gui/insEdit.cpp:5894 src/gui/insEdit.cpp:5897 src/gui/insEdit.cpp:6951 +#: src/gui/insEdit.cpp:7215 src/gui/insEdit.cpp:7476 +msgid "Cutoff" +msgstr "Punkt odcięcia" + +#: src/gui/insEdit.cpp:5902 src/gui/insEdit.cpp:6408 src/gui/insEdit.cpp:6952 +#: src/gui/insEdit.cpp:7179 src/gui/insEdit.cpp:7477 +msgid "Filter Mode" +msgstr "typ filtra" + +#: src/gui/insEdit.cpp:5931 src/gui/insEdit.cpp:7485 +msgid "Noise Mode" +msgstr "Tryb szumu" + +#: src/gui/insEdit.cpp:5932 +msgid "Wave Mix Mode" +msgstr "Tryb mieszania fali" + +#: src/gui/insEdit.cpp:5935 +msgid "Absolute Cutoff Macro" +msgstr "Absolutne makro punktu odcięcia" + +#: src/gui/insEdit.cpp:5939 +msgid "Absolute Duty Macro" +msgstr "Absolutne makro szerokości fali prostokątnej" + +#: src/gui/insEdit.cpp:5945 +msgid "Don't test before new note" +msgstr "Nie włączaj bitu testowego przed nową nutą" + +#: src/gui/insEdit.cpp:5950 +msgid "Switch roles of frequency and phase reset timer" +msgstr "Zamień rolw częstotliwośći i timera resetu fazy " + +#: src/gui/insEdit.cpp:5997 src/gui/insEdit.cpp:6040 +msgid "Period" +msgstr "Okres" + +#: src/gui/insEdit.cpp:6002 src/gui/insEdit.cpp:6045 src/gui/insEdit.cpp:6892 +msgid "Amount" +msgstr "Ilość" + +#: src/gui/insEdit.cpp:6005 src/gui/insEdit.cpp:6048 +msgid "Bound" +msgstr "Granica" + +#: src/gui/insEdit.cpp:6021 +msgid "Flip" +msgstr "W obie strony" + +#: src/gui/insEdit.cpp:6210 +msgid "Load waveform" +msgstr "Wczytaj falę" + +#: src/gui/insEdit.cpp:6215 +msgid "" +"when enabled, a waveform will be loaded into RAM.\n" +"when disabled, only the offset and length change." +msgstr "" +"gdy ta opcja jest włączona, fala zostanie załadowana do pamięci RAM.\n" +"w przeciwnym razie, zmieni się tylko przesunięcie i długość fali." + +#: src/gui/insEdit.cpp:6219 +msgid "Waveform##WAVE" +msgstr "Fala##WAVE" + +#: src/gui/insEdit.cpp:6227 +msgid "Per-channel wave position/length" +msgstr "Położenie i długość fali oddzielnie dla każdego kanału" + +#: src/gui/insEdit.cpp:6237 +msgid "Ch" +msgstr "Kanał" + +#: src/gui/insEdit.cpp:6286 +msgid "Compatibility mode" +msgstr "Tryb kompatybilności" + +#: src/gui/insEdit.cpp:6288 +msgid "" +"only use for compatibility with .dmf modules!\n" +"- initializes modulation table with first wavetable\n" +"- does not alter modulation parameters on instrument change" +msgstr "" +"tylko dla kompatybilności z modułami .dmf!\n" +"- inicjalizuje tablice modulatora wraz z pierwszą tablica fal\n" +"- nie zmienia parametrów modulacji przy zmianie instrumentu" + +#: src/gui/insEdit.cpp:6290 +msgid "Modulation depth" +msgstr "Głębokość modulacji" + +#: src/gui/insEdit.cpp:6294 +msgid "Modulation speed" +msgstr "Szybkość modulacji" + +#: src/gui/insEdit.cpp:6298 +msgid "Modulation table" +msgstr "Tabela modulacji" + +#: src/gui/insEdit.cpp:6347 +msgid "Set modulation table (channel 5 only)" +msgstr "Ustaw tablicę modulacji (tylko dla piątego kanału)" + +#: src/gui/insEdit.cpp:6411 src/gui/insEdit.cpp:7184 +msgid "Filter K1" +msgstr "K1 filtra" + +#: src/gui/insEdit.cpp:6413 src/gui/insEdit.cpp:7185 +msgid "Filter K2" +msgstr "K2 filtra" + +#: src/gui/insEdit.cpp:6417 +msgid "Envelope length" +msgstr "Długość obwiedni" + +#: src/gui/insEdit.cpp:6420 +msgid "Left Volume Ramp" +msgstr "Zwiększenie głośności lewej strony." + +#: src/gui/insEdit.cpp:6422 +msgid "Right Volume Ramp" +msgstr "Zwiększenie głośności prawej strony." + +#: src/gui/insEdit.cpp:6425 +msgid "Filter K1 Ramp" +msgstr "Narastanie obw. K1 filtra" + +#: src/gui/insEdit.cpp:6427 +msgid "Filter K2 Ramp" +msgstr "Narastanie obw. K2 filtra" + +#: src/gui/insEdit.cpp:6430 +msgid "K1 Ramp Slowdown" +msgstr "Spowolnienie obw. K1" + +#: src/gui/insEdit.cpp:6432 +msgid "K2 Ramp Slowdown" +msgstr "Spowolnienie obw. K2" + +#: src/gui/insEdit.cpp:6454 +msgid "Attack Rate" +msgstr "Skala narastania" + +#: src/gui/insEdit.cpp:6460 +msgid "Decay 1 Rate" +msgstr "Skala opadania 1" + +#: src/gui/insEdit.cpp:6466 +msgid "Decay Level" +msgstr "Poziom opadania" + +#: src/gui/insEdit.cpp:6472 +msgid "Decay 2 Rate" +msgstr "Skala opadania 2" + +#: src/gui/insEdit.cpp:6478 +msgid "Release Rate" +msgstr "Skala zwolnienia" + +#: src/gui/insEdit.cpp:6484 +msgid "Rate Correction" +msgstr "Korekcja skali" + +#: src/gui/insEdit.cpp:6512 +msgid "LFO Rate" +msgstr "Skala LFO" + +#: src/gui/insEdit.cpp:6523 +msgid "Use envelope" +msgstr "Użyj obwiedni" + +#: src/gui/insEdit.cpp:6576 +msgid "Sustain/release mode:" +msgstr "Tryb podtrzymania/zwolnienia:" + +#: src/gui/insEdit.cpp:6577 +msgid "Direct (cut on release)" +msgstr "Bezpośredni (zatrzymaj przy zwolnieniu)" + +#: src/gui/insEdit.cpp:6580 +msgid "Effective (linear decrease)" +msgstr "Efektywny (liniowe opadanie)" + +#: src/gui/insEdit.cpp:6583 +msgid "Effective (exponential decrease)" +msgstr "Efektywny (wykładnicze opadanie)" + +#: src/gui/insEdit.cpp:6586 +msgid "Delayed (write R on release)" +msgstr "Opóźniony (zapis R podczas zwolnienia)" + +#: src/gui/insEdit.cpp:6596 src/gui/insEdit.cpp:6597 +msgid "Gain Mode" +msgstr "Tryb wzmocnienia" + +#: src/gui/insEdit.cpp:6599 src/gui/insEdit.cpp:6600 src/gui/insEdit.cpp:7205 +msgid "Gain" +msgstr "Wzmocnienie" + +#: src/gui/insEdit.cpp:6633 +msgid "" +"using decrease modes will not produce any sound at all, unless you know what " +"you are doing.\n" +"it is recommended to use the Gain macro for decrease instead." +msgstr "" +"korzystanie z trybów opadania wywoła brak dźwięku, jeśli nie rozumiesz, jak " +"to wszystko działa.\n" +"zaleca się użycie makra wzmocnienia dla opadania." + +#: src/gui/insEdit.cpp:6703 +msgid "Enable synthesizer" +msgstr "Włącz syntezator" + +#: src/gui/insEdit.cpp:6721 +msgid "Single-waveform" +msgstr "Pojedyncza fala" + +#: src/gui/insEdit.cpp:6730 +msgid "Dual-waveform" +msgstr "Podwójne fale" + +#: src/gui/insEdit.cpp:6803 src/gui/insEdit.cpp:6812 +msgid "Wave 1" +msgstr "Fala 1" + +#: src/gui/insEdit.cpp:6808 src/gui/insEdit.cpp:6823 +msgid "" +"waveform macro is controlling wave 1!\n" +"this value will be ineffective." +msgstr "" +"makro kształtu fali steruje falą 1!\n" +"ta wartość zostanie zignorowana" + +#: src/gui/insEdit.cpp:6829 +msgid "Wave 2" +msgstr "Fala 2" + +#: src/gui/insEdit.cpp:6844 +msgid "Resume preview" +msgstr "Wznów podgląd" + +#: src/gui/insEdit.cpp:6846 +msgid "Pause preview" +msgstr "Zatrzymaj podgląd" + +#: src/gui/insEdit.cpp:6854 +msgid "Restart preview" +msgstr "Zrestartuj podgląd" + +#: src/gui/insEdit.cpp:6874 +msgid "Copy to new wavetable" +msgstr "Kopiuj do nowej tablicy fal" + +#: src/gui/insEdit.cpp:6881 +msgid "Update Rate" +msgstr "Współczynnik odświeżania" + +#: src/gui/insEdit.cpp:6902 +msgid "Global" +msgstr "Globalne" + +#: src/gui/insEdit.cpp:6906 +msgid "" +"wavetable synthesizer disabled.\n" +"use the Waveform macro to set the wave for this instrument." +msgstr "" +"syntezator tablicowy wyłączony\n" +"użyj makra fali, aby ustawić tablicę fal dla tego instrumentu" + +#: src/gui/insEdit.cpp:6912 +msgid "Macros" +msgstr "Makra" + +#: src/gui/insEdit.cpp:6921 src/gui/insEdit.cpp:6929 src/gui/insEdit.cpp:6938 +#: src/gui/insEdit.cpp:6947 src/gui/insEdit.cpp:6962 src/gui/insEdit.cpp:6976 +#: src/gui/insEdit.cpp:6988 src/gui/insEdit.cpp:7001 src/gui/insEdit.cpp:7017 +#: src/gui/insEdit.cpp:7023 src/gui/insEdit.cpp:7033 src/gui/insEdit.cpp:7040 +#: src/gui/insEdit.cpp:7046 src/gui/insEdit.cpp:7059 src/gui/insEdit.cpp:7066 +#: src/gui/insEdit.cpp:7073 src/gui/insEdit.cpp:7082 src/gui/insEdit.cpp:7092 +#: src/gui/insEdit.cpp:7100 src/gui/insEdit.cpp:7106 src/gui/insEdit.cpp:7114 +#: src/gui/insEdit.cpp:7121 src/gui/insEdit.cpp:7127 src/gui/insEdit.cpp:7137 +#: src/gui/insEdit.cpp:7149 src/gui/insEdit.cpp:7157 src/gui/insEdit.cpp:7173 +#: src/gui/insEdit.cpp:7178 src/gui/insEdit.cpp:7191 src/gui/insEdit.cpp:7198 +#: src/gui/insEdit.cpp:7209 src/gui/insEdit.cpp:7222 src/gui/insEdit.cpp:7231 +#: src/gui/insEdit.cpp:7238 src/gui/insEdit.cpp:7246 src/gui/insEdit.cpp:7270 +#: src/gui/insEdit.cpp:7277 src/gui/insEdit.cpp:7285 src/gui/insEdit.cpp:7296 +#: src/gui/insEdit.cpp:7303 src/gui/insEdit.cpp:7311 src/gui/insEdit.cpp:7319 +#: src/gui/insEdit.cpp:7328 src/gui/insEdit.cpp:7336 src/gui/insEdit.cpp:7342 +#: src/gui/insEdit.cpp:7348 src/gui/insEdit.cpp:7354 src/gui/insEdit.cpp:7359 +#: src/gui/insEdit.cpp:7366 src/gui/insEdit.cpp:7373 src/gui/insEdit.cpp:7381 +#: src/gui/insEdit.cpp:7390 src/gui/insEdit.cpp:7398 src/gui/insEdit.cpp:7410 +#: src/gui/insEdit.cpp:7423 src/gui/insEdit.cpp:7434 src/gui/insEdit.cpp:7444 +#: src/gui/insEdit.cpp:7452 src/gui/insEdit.cpp:7462 src/gui/insEdit.cpp:7471 +msgid "Arpeggio" +msgstr "Arpeggio" + +#: src/gui/insEdit.cpp:6925 src/gui/insEdit.cpp:6932 src/gui/insEdit.cpp:6943 +#: src/gui/insEdit.cpp:6972 src/gui/insEdit.cpp:6984 src/gui/insEdit.cpp:6994 +#: src/gui/insEdit.cpp:7007 src/gui/insEdit.cpp:7054 src/gui/insEdit.cpp:7062 +#: src/gui/insEdit.cpp:7069 src/gui/insEdit.cpp:7088 src/gui/insEdit.cpp:7110 +#: src/gui/insEdit.cpp:7133 src/gui/insEdit.cpp:7144 src/gui/insEdit.cpp:7163 +#: src/gui/insEdit.cpp:7183 src/gui/insEdit.cpp:7194 src/gui/insEdit.cpp:7214 +#: src/gui/insEdit.cpp:7234 src/gui/insEdit.cpp:7242 src/gui/insEdit.cpp:7249 +#: src/gui/insEdit.cpp:7254 src/gui/insEdit.cpp:7260 src/gui/insEdit.cpp:7266 +#: src/gui/insEdit.cpp:7273 src/gui/insEdit.cpp:7281 src/gui/insEdit.cpp:7290 +#: src/gui/insEdit.cpp:7299 src/gui/insEdit.cpp:7307 src/gui/insEdit.cpp:7324 +#: src/gui/insEdit.cpp:7332 src/gui/insEdit.cpp:7338 src/gui/insEdit.cpp:7362 +#: src/gui/insEdit.cpp:7369 src/gui/insEdit.cpp:7377 src/gui/insEdit.cpp:7386 +#: src/gui/insEdit.cpp:7394 src/gui/insEdit.cpp:7402 src/gui/insEdit.cpp:7414 +#: src/gui/insEdit.cpp:7429 src/gui/insEdit.cpp:7440 src/gui/insEdit.cpp:7448 +#: src/gui/insEdit.cpp:7457 src/gui/insEdit.cpp:7475 +msgid "Phase Reset" +msgstr "Reset fazy" + +#: src/gui/insEdit.cpp:6939 src/gui/insEdit.cpp:7024 src/gui/insEdit.cpp:7210 +#: src/gui/insEdit.cpp:7247 +msgid "Duty/Noise" +msgstr "Szerokość fali prostokątnej/tryb szumu" + +#: src/gui/insEdit.cpp:6966 src/gui/insEdit.cpp:7288 +msgid "Surround" +msgstr "Dzwiek przestrzenny" + +#: src/gui/insEdit.cpp:6968 src/gui/insEdit.cpp:6981 src/gui/insEdit.cpp:7026 +#: src/gui/insEdit.cpp:7085 src/gui/insEdit.cpp:7141 src/gui/insEdit.cpp:7159 +#: src/gui/insEdit.cpp:7180 src/gui/insEdit.cpp:7201 src/gui/insEdit.cpp:7225 +#: src/gui/insEdit.cpp:7278 src/gui/insEdit.cpp:7304 src/gui/insEdit.cpp:7321 +#: src/gui/insEdit.cpp:7329 src/gui/insEdit.cpp:7374 src/gui/insEdit.cpp:7383 +#: src/gui/insEdit.cpp:7399 src/gui/insEdit.cpp:7411 src/gui/insEdit.cpp:7426 +#: src/gui/insEdit.cpp:7454 src/gui/insEdit.cpp:7464 +msgid "Panning (left)" +msgstr "Panning (lewo)" + +#: src/gui/insEdit.cpp:6969 src/gui/insEdit.cpp:6982 src/gui/insEdit.cpp:7027 +#: src/gui/insEdit.cpp:7086 src/gui/insEdit.cpp:7142 src/gui/insEdit.cpp:7160 +#: src/gui/insEdit.cpp:7181 src/gui/insEdit.cpp:7202 src/gui/insEdit.cpp:7226 +#: src/gui/insEdit.cpp:7279 src/gui/insEdit.cpp:7305 src/gui/insEdit.cpp:7322 +#: src/gui/insEdit.cpp:7330 src/gui/insEdit.cpp:7375 src/gui/insEdit.cpp:7384 +#: src/gui/insEdit.cpp:7400 src/gui/insEdit.cpp:7412 src/gui/insEdit.cpp:7427 +#: src/gui/insEdit.cpp:7455 src/gui/insEdit.cpp:7465 +msgid "Panning (right)" +msgstr "Panning (prawo)" + +#: src/gui/insEdit.cpp:6990 src/gui/insEdit.cpp:7003 src/gui/insEdit.cpp:7107 +#: src/gui/insEdit.cpp:7199 src/gui/insEdit.cpp:7239 src/gui/insEdit.cpp:7424 +msgid "Noise Freq" +msgstr "Częstotliwość szumu" + +#: src/gui/insEdit.cpp:6996 src/gui/insEdit.cpp:7010 src/gui/insEdit.cpp:7167 +msgid "AutoEnv Num" +msgstr "Licznik częst. auto-obw." + +#: src/gui/insEdit.cpp:6997 src/gui/insEdit.cpp:7011 src/gui/insEdit.cpp:7168 +msgid "AutoEnv Den" +msgstr "Mianownik częst. auto-obw." + +#: src/gui/insEdit.cpp:7012 +msgid "Noise AND Mask" +msgstr "Maska szumu (logiczne AND)" + +#: src/gui/insEdit.cpp:7013 +msgid "Noise OR Mask" +msgstr "Maska szumu (logiczne OR)" + +#: src/gui/insEdit.cpp:7034 +msgid "On/Off" +msgstr "Wł./wył." + +#: src/gui/insEdit.cpp:7060 +msgid "Patch" +msgstr "Instrument" + +#: src/gui/insEdit.cpp:7076 +msgid "Mod Depth" +msgstr "Głębokość mod." + +#: src/gui/insEdit.cpp:7077 +msgid "Mod Speed" +msgstr "Szybkość mod." + +#: src/gui/insEdit.cpp:7078 +msgid "Mod Position" +msgstr "Położenie mod." + +#: src/gui/insEdit.cpp:7083 +msgid "Noise Length" +msgstr "Długość szumu" + +#: src/gui/insEdit.cpp:7093 +msgid "Wave Pos" +msgstr "Poz. fali" + +#: src/gui/insEdit.cpp:7096 +msgid "Wave Length" +msgstr "Długość" + +#: src/gui/insEdit.cpp:7115 +msgid "AUDCTL" +msgstr "AUDCTL" + +#: src/gui/insEdit.cpp:7122 src/gui/insEdit.cpp:7343 +msgid "Pulse Width" +msgstr "Szerokość fali prostokątnej" + +#: src/gui/insEdit.cpp:7139 +msgid "Duty/Int" +msgstr "Szerokość fali prostokątnej/int." + +#: src/gui/insEdit.cpp:7145 src/gui/insEdit.cpp:7406 +msgid "Load LFSR" +msgstr "Załaduj LFSR" + +#: src/gui/insEdit.cpp:7165 +msgid "Envelope Mode" +msgstr "Tryb obwiedni" + +#: src/gui/insEdit.cpp:7218 +msgid "Phase Reset Timer" +msgstr "Timer resetu fazy" + +#: src/gui/insEdit.cpp:7252 src/gui/insEdit.cpp:7259 +msgid "Freq Divider" +msgstr "Dzielnik częst." + +#: src/gui/insEdit.cpp:7255 +msgid "Clock Divider" +msgstr "Dzielnik taktowania zegara" + +#: src/gui/insEdit.cpp:7264 +msgid "Global Volume" +msgstr "Globalna głośność" + +#: src/gui/insEdit.cpp:7286 +msgid "Echo Level" +msgstr "Poziom echo" + +#: src/gui/insEdit.cpp:7291 +msgid "Echo Feedback" +msgstr "Feedback echo" + +#: src/gui/insEdit.cpp:7292 +msgid "Echo Length" +msgstr "Długość echo" + +#: src/gui/insEdit.cpp:7312 +msgid "Group Ctrl" +msgstr "Sterowanie grupą" + +#: src/gui/insEdit.cpp:7313 +msgid "Group Attack" +msgstr "Narastanie grupy" + +#: src/gui/insEdit.cpp:7314 +msgid "Group Decay" +msgstr "Opadanie grupy" + +#: src/gui/insEdit.cpp:7320 +msgid "Noise Type" +msgstr "Typ szumu" + +#: src/gui/insEdit.cpp:7367 +msgid "Square/Noise" +msgstr "Kwadrat/szum" + +#: src/gui/insEdit.cpp:7404 +msgid "Tap A Location" +msgstr "Pozycja przełącznika A" + +#: src/gui/insEdit.cpp:7405 +msgid "Tap B Location" +msgstr "Pozycja przełącznika B" + +#: src/gui/insEdit.cpp:7416 +msgid "Portion A Length" +msgstr "Długość części A" + +#: src/gui/insEdit.cpp:7417 +msgid "Portion B Length" +msgstr "Długość części B" + +#: src/gui/insEdit.cpp:7418 +msgid "Portion A Offset" +msgstr "Przesunięcie części A" + +#: src/gui/insEdit.cpp:7419 +msgid "Portion B Offset" +msgstr "Przesunięcie części B" + +#: src/gui/insEdit.cpp:7463 +msgid "Parameter" +msgstr "Parametr" + +#: src/gui/insEdit.cpp:7467 +msgid "Load Value" +msgstr "Załaduj wartość" + +#: src/gui/insEdit.cpp:7479 +msgid "Filter Toggle" +msgstr "Wł./Wył. filtr" + +#: src/gui/insEdit.cpp:7486 +msgid "Wave Mix" +msgstr "Łączenie fali" + +#: src/gui/insEdit.cpp:7500 +msgid "Octave offset" +msgstr "Przesunięcie oktawy" + +#: src/gui/insEdit.cpp:7505 +msgid "go to Macros for other parameters." +msgstr "Otwórz kartę makr, aby kontrolować inne parametry." + +#: src/gui/insEdit.cpp:7521 +msgid "invalid instrument type! change it first." +msgstr "nieprawidłowy typ instrumentu! zmień go najpierw." + +#: src/gui/insEdit.cpp:7565 +msgid "clear contents" +msgstr "wyczyść zawartość" + +#: src/gui/insEdit.cpp:7571 +msgid "offset..." +msgstr "przesunięcie..." + +#: src/gui/insEdit.cpp:7572 src/gui/insEdit.cpp:7605 +msgid "X" +msgstr "X" + +#: src/gui/insEdit.cpp:7573 src/gui/insEdit.cpp:7609 +msgid "Y" +msgstr "Y" + +#: src/gui/insEdit.cpp:7574 +msgid "offset" +msgstr "przesunięcie" + +#: src/gui/insEdit.cpp:7637 +msgid "Min" +msgstr "mininum" + +#: src/gui/insEdit.cpp:7638 +msgid "Max" +msgstr "maksimum" + +#~ msgid "About Furnace###About Furnace" +#~ msgstr "O Furnace" + +#~ msgid "are proud to present" +#~ msgstr "z dumą prezentują" + +#~ msgid "-- translations and related work --" +#~ msgstr "-- tłumaczenia --" + +#~ msgid "LTVA1 (Russian translation)" +#~ msgstr "LTVA1 (tłumaczenie na język rosyjski)" + +#~ msgid "Kagamiin~ (Portuguese translation)" +#~ msgstr "Kagamiin~ (tłumaczenie na język portugalski)" + +#~ msgid "freq-mod (Polish translation)" +#~ msgstr "freq-mod (tłumaczenie na język polski)" + +#~ msgid "Weak-JACK by x4" +#~ msgstr "Weak-JACK autorstwa x42" + +#~ msgid "YM3812-LLE, YMF262-LLE and YMF276-LLE by nukeykt" +#~ msgstr "YM3812-LLE, YMF262-LLE i YMF276-LLE autorstwa nukeykt" + +#~ msgid "SM8521 emulator (modified version) by cam90" +#~ msgstr "Emulator SM8521 (wersja zmodyfikowana) autorstwa cam900" + +#~ msgid "D65010G031 emulator (modified version) by cam90" +#~ msgstr "Emulator D65010G031 (wersja zmodyfikowana) autorstwa cam900" + +#~ msgid "Namco C140/C219 emulator (modified version) by cam90" +#~ msgstr "Emulator C140/C219 (wersja zmodyfikowana) autorstwa cam900" + +#~ msgid "ESFMu emulator by Kagamiin~" +#~ msgstr "Emulator ESFMu autorstwa Kagamiin~" + +#~ msgid "SID2 emulator (modification of reSID) by LTVA" +#~ msgstr "emulator SID2 (modyfikacja reSID) autorstwa LTVA" + +#~ msgid "5E01 emulator (modification of NSFPlay) by Euly" +#~ msgstr "emulator 5E01 (modyfikacja NSFPlay) autorstwa Euly" + +#~ msgid "NDS sound emulator by cam90" +#~ msgstr "NDS sound emulator autorstwa cam900" + +#~ msgid "NEOART Costa Rica" +#~ msgstr "NEOART Costa Rica" + +#~ msgid "Xenium Demoparty" +#~ msgstr "Demoparty Xenium" + +#~ msgid "" +#~ "\n" +#~ "quiet" +#~ msgstr "" +#~ "\n" +#~ "cicho" + +#~ msgid "Clock###Clock" +#~ msgstr "Zegar###Clock" + +#~ msgid "cannot add chip! (" +#~ msgstr "nie udało się dodać układu! (" + +#~ msgid "Compatibility Flags###Compatibility Flags" +#~ msgstr "Flagi kompatybilności###Compatibility Flags" + +#~ msgid "behavior changed in 0.6." +#~ msgstr "zachowanie zostało zmienione w wersji 0.6.3" + +#~ msgid "Stop NES pulse channels hardware sweep on new note" +#~ msgstr "" +#~ "Zatrzymaj sprzętowe portamento na kanałach fal prostokątnych NESa przy " +#~ "nowej nucie" + +#~ msgid "Do not stop volume slide after reaching zero or full volume" +#~ msgstr "" +#~ "Nie zatrzymuj efektu płynnej zmiany głośności po osiągnięciu zerowej lub " +#~ "pełnej głośności" + +#~ msgid "Stop E1xy/E2xy effects on new note" +#~ msgstr "Zatrymuj efekty E1xy/E2xy przy nowej nucie" + +#~ msgid "Slower 0Axy volume slide" +#~ msgstr "Wolniejsza płynna zmiana głośności 0Axy" + +#~ msgid "Command Stream Player###Command Stream Player" +#~ msgstr "Odtwarzacz strumienia komend###Command Stream Player" + +#~ msgid "export (.dmp)" +#~ msgstr "eksportuj .dmp" + +#~ msgid "%.2X: " +#~ msgstr "%.2X: " + +#~ msgid "Export Furnace song" +#~ msgstr "Eksportuj utwór Furnace" + +#~ msgid "clone pattern" +#~ msgstr "klonuj wzorzec" + +#~ msgid "File##menubar" +#~ msgstr "Plik##menubar" + +#~ msgid "file##menubar" +#~ msgstr "plik##menubar" + +#~ msgid "export .dmf (1.1.3+)..." +#~ msgstr "eksportuj .dmf (1.1.3+)..." + +#~ msgid "export .dmf (1.0/legacy)..." +#~ msgstr "eksportuj .dmf (1.0/legacy)..." + +#~ msgid "export Furnace module..." +#~ msgstr "eksportuj moduł Furnace..." + +#~ msgid "cannot remove chip! (" +#~ msgstr "nie mozna usunąć ukladu! (" + +#~ msgid "cannot change chip! (" +#~ msgstr "nie można zmienić układu (" + +#~ msgid "exit" +#~ msgstr "wyjdź" + +#~ msgid "Unsaved changes! Save before quitting?" +#~ msgstr "Niezapisane zmiany! Czy zapisać je przed wyjściem?" + +#~ msgid "Edit##menubar" +#~ msgstr "Edytuj##menubar" + +#~ msgid "edit##menubar" +#~ msgstr "edytuj##menubar" + +#~ msgid "Settings##menubar" +#~ msgstr "Ustawienia##menubar" + +#~ msgid "settings##menubar" +#~ msgstr "ustawienia##menubar" + +#~ msgid "Window##menubar" +#~ msgstr "Okno##menubar" + +#~ msgid "window##menubar" +#~ msgstr "okno##menubar" + +#~ msgid "Help##menubar" +#~ msgstr "Pomoc##menubar" + +#~ msgid "help##menubar" +#~ msgstr "pomoc##menubar" + +#~ msgid "" +#~ "there were some errors while loading samples:\n" +#~ "#sggu" +#~ msgstr "podczas ładowania sampli wystąpiły następujące błędy:\n" + +#~ msgid "" +#~ "there were some warnings/errors while loading instruments:\n" +#~ "#sggu" +#~ msgstr "" +#~ "podczas wczytywania instrumentów wystąpiły następujące błędy i " +#~ "ostrzeżenia:\n" + +#~ msgid "" +#~ "> %s: cannot load instrument! (%s)\n" +#~ "#sggu" +#~ msgstr "> %s: nie można wczytać instrumentu! (%s)\n" + +#~ msgid "cannot load instrument! (" +#~ msgstr "nie można wczytać instrumentu!" + +#~ msgid "cannot load wavetable! (" +#~ msgstr "nie mozna wczytać tablicy fal! (" + +#~ msgid "could not write tildearrow version Furnace module! (%s)" +#~ msgstr "nie udało się zapisać moduło dla wersji od tildearrowa! (%s)" + +#~ msgid "Rendering...###Rendering..." +#~ msgstr "Renderowanie...###Rendering..." + +#~ msgid "New Song###New Song" +#~ msgstr "Nowy Utwór###New Song" + +#~ msgid "Export###Export" +#~ msgstr "Eksportuj###Export" + +#~ msgid "Error###Error" +#~ msgstr "Błąd###Error" + +#~ msgid "Warning###Warning" +#~ msgstr "Uwaga###Warning" + +#~ msgid "Yes1" +#~ msgstr "Tak" + +#~ msgid "No1" +#~ msgstr "Nie" + +#~ msgid "Select Instrument###Select Instrument" +#~ msgstr "Wybierz instrument###Select Instrument" + +#~ msgid "Import Raw Sample###Import Raw Sample" +#~ msgstr "Importuj surowy sampel###Import Raw Sample" + +#~ msgid "%.0fµs" +#~ msgstr "%.0f µs" + +#~ msgid "could not init renderer! %s" +#~ msgstr "nie udało się uruchomić silnika renderowania %s" + +#~ msgid "" +#~ "\n" +#~ "the render driver has been set to a safe value. please restart Furnace." +#~ msgstr "" +#~ "\n" +#~ "silnik renderowania został zresetowany do stanu bezpiecznego. proszę " +#~ "uruchomić Furnace ponownie." + +#~ msgid "Beeper" +#~ msgstr "Brzęczyk" + +#~ msgid "1-bit PCM" +#~ msgstr "1-bitowy PCM" + +#~ msgid "1-bit DPCM" +#~ msgstr "1-bitowy DPCM" + +#~ msgid "8-bit PCM" +#~ msgstr "8-bitowy PCM" + +#~ msgid "8-bit µ-law PCM" +#~ msgstr "8-bitowy PCM (µ-prawo)" + +#~ msgid "16-bit PCM" +#~ msgstr "16-bitowy PCM" + +#~ msgid "System Primary" +#~ msgstr "Główne efekty układu" + +#~ msgid "System Secondary" +#~ msgstr "Poboczne efekty układu" + +#~ msgid "Clone pattern" +#~ msgstr "Klonuj wzorzec" + +#~ msgid "Open (replace current instrument)" +#~ msgstr "Otwórz (z zamianą obecnego)" + +#~ msgid "Export instrument (.dmp)" +#~ msgstr "Eksportuj (.dmp)" + +#~ msgid "Instrument: toggle folders/standard view" +#~ msgstr "Przełączaj między widokiem złożonym i normalnym" + +#~ msgid "Wavetable: toggle folders/standard view" +#~ msgstr "Przełączaj między widokiem złożonym i normalnym" + +#~ msgid "Paste wavetables from clipboard" +#~ msgstr "Wklej tablice fal ze schowka" + +#~ msgid "Paste local wavetables from clipboard" +#~ msgstr "Wklej lokalne tablice fal ze schowka" + +#~ msgid "Duplicate order to end of song" +#~ msgstr "Sklonuj i wstaw na koniec utworu" + +#~ msgid "Deep clone order to end of song" +#~ msgstr "Głęboko sklouj i wstaw na koniec utworu" + +#~ msgid "Modern/fantasy" +#~ msgstr "Nowoczesne/nieistniejace" + +#~ msgid "Mobile Edit###MobileEdit" +#~ msgstr "Mobilne menu edytowania###MobileEdit" + +#~ msgid "Mobile Controls###Mobile Controls" +#~ msgstr "Mobilne menu ustawień###Mobile Controls" + +#~ msgid "Mobile Menu###Mobile Menu" +#~ msgstr "Mobilne menu###Mobile Menu" + +#~ msgid "Legacy .dmf" +#~ msgstr ".dmf (legacy)" + +#~ msgid "Play/Edit Controls###Play/Edit Controls" +#~ msgstr "Sterowanie odtw./edycją###Play/Edit Controls" + +#~ msgid "Play Controls###Play Controls" +#~ msgstr "Sterowanie odtwarzaniem###Play Controls" + +#~ msgid "Edit Controls###Edit Controls" +#~ msgstr "Sterowanie edytowaniem###Edit Controls" + +#~ msgid "Effect List###Effect List" +#~ msgstr "Lista efektów###Effect List" + +#~ msgid "DefleMask file (1.1.3+)" +#~ msgstr "plik DefleMaska (1.1.3+)" + +#~ msgid "DefleMask file (1.0/legacy)" +#~ msgstr "plik DefleMaskq (1.0/legacy)" + +#~ msgid "DMF (1.0/legacy)" +#~ msgstr "DMF (1.0/legacy)" + +#~ msgid "Furnace" +#~ msgstr "Furnace" + +#~ msgid "Find/Replace###Find/Replace" +#~ msgstr "znajdź/zamień###Find/Replace" + +#~ msgid "Grooves###Grooves" +#~ msgstr "Wzor rytmu###Grooves" + +#~ msgid "export .dmp..." +#~ msgstr "eksportuj .dmp..." + +#~ msgid "Instrument Editor###Instrument Editor" +#~ msgstr "Edytor instrumentów###Instrument Editor" + +#~ msgid "Memory Composition###Memory Composition" +#~ msgstr "Zawartość pamięci###Memory Composition" + +#~ msgid "%d-%d ($%x-$%x): %d bytes ($%x)" +#~ msgstr "%d-%d ($%x-$%x): %d bajty ($%x)" + +#~ msgid "click to open sample editor" +#~ msgstr "kliknij aby otoworzyć edytor sampli" + +#~ msgid "Duplicate order at end of song (right-click to deep clone)" +#~ msgstr "Sklonuj wiersz i wstaw na koniec utworu (PPM by glęboko sklonować)" + +#~ msgid "Oscilloscope###Oscilloscope" +#~ msgstr "Oscyloskop###Oscilloscope" + +#~ msgid "Pattern Manager###Pattern Manager" +#~ msgstr "Menedżer wzorców###Pattern Manager" + +#~ msgid "Pattern###Pattern" +#~ msgstr "Wzorzec###Pattern" + +#~ msgid "No##_PCS" +#~ msgstr "Nie##_PCS0" + +#~ msgid "Yes##_PCS" +#~ msgstr "Tak##_PCS1" + +#~ msgid "Piano###Piano" +#~ msgstr "Klawiatura pianina###Piano" + +#~ msgid "Input Pad###Input Pad" +#~ msgstr "Panel wprowadzania###Input Pad" + +#~ msgid "Game consoles" +#~ msgstr "Konsole do gier wideo" + +#~ msgid "let's play some chiptune making games!" +#~ msgstr "Zagrajmy w tworzenie chiptunów!" + +#~ msgid "Sega Genesis (extended channel 3)" +#~ msgstr "Sega Mega Drive z rozszerzonym kanałem 3" + +#~ msgid "Sega Genesis (DualPCM, extended channel 3)" +#~ msgstr "Sega Mega Drive (DualPCM, z rozszerzonym kanałem 3)" + +#~ msgid "Sega Genesis (with Sega CD)" +#~ msgstr "Sega Mega Drive (z Sega Mega-CD)" + +#~ msgid "Sega Genesis (extended channel 3 with Sega CD)" +#~ msgstr "Sega Mega Drive (z rozszerzonym kanałem 3 i Sega Mega-CD)" + +#~ msgid "Sega Genesis (CSM with Sega CD)" +#~ msgstr "Sega Mega Drive (CSM i Sega Mega-CD)" + +#~ msgid "Sega Master System (with FM expansion)" +#~ msgstr "Sega Master System (z rozszerzeniem FM)" + +#~ msgid "Sega Master System (with FM expansion in drums mode)" +#~ msgstr "Sega Master System (z rozszerzeniem FM w trybie perkusji)" + +#~ msgid "Game Boy Advance (no software mixing)" +#~ msgstr "Game Boy Advance (bez programowego miksowania)" + +#~ msgid "Game Boy Advance (with MinMod)" +#~ msgstr "Game Boy Advance (z MinModem)" + +#~ msgid "Famicom with Konami VRC6" +#~ msgstr "Famicom z Konami VRC6" + +#~ msgid "Famicom with Konami VRC7" +#~ msgstr "Famicom z Konami VRC7" + +#~ msgid "Famicom with MMC5" +#~ msgstr "Famicom z MMC5" + +#~ msgid "Famicom with Sunsoft 5B" +#~ msgstr "Famicom z Sunsoft 5B" + +#~ msgid "Famicom with Namco 163" +#~ msgstr "Famicom z Namco 163" + +#~ msgid "Neo Geo AES (extended channel 2)" +#~ msgstr "Neo Geo AES z rozszerzonym kanałem 2" + +#~ msgid "Neo Geo AES (extended channel 2 and CSM)" +#~ msgstr "Neo Geo AES z rozszerzonym kanałem 2 i CSM" + +#~ msgid "Computers" +#~ msgstr "Komputery" + +#~ msgid "let's get to work on chiptune today." +#~ msgstr "popracujmy dziś nad chiptunami." + +#~ msgid "Commodore 64 (C64, 6581 SID + Sound Expander in drums mode)" +#~ msgstr "Commodore 64 (C64, 6581 SID + Sound Expander w trybie perkusji)" + +#~ msgid "Commodore 64 (C64, 8580 SID + Sound Expander in drums mode)" +#~ msgstr "Commodore 64 (C64, 8580 SID + Sound Expander w trybie perkusji)" + +#~ msgid "Commodore 64 (C64, 6581 SID + FM-YAM in drums mode)" +#~ msgstr "Commodore 64 (C64, 6581 SID + FM-YAM w trybie perkusji)" + +#~ msgid "Commodore 64 (C64, 8580 SID + FM-YAM in drums mode)" +#~ msgstr "Commodore 64 (C64, 8580 SID + FM-YAM w trybie perkusji)" + +#~ msgid "MSX + MSX-AUDIO (drums mode)" +#~ msgstr "MSX + MSX-AUDIO (tryb perkusji)" + +#~ msgid "MSX + MSX-MUSIC (drums mode)" +#~ msgstr "MSX + MSX-MUSIC (tryb perkusji)" + +#~ msgid "MSX + Neotron (extended channel 2)" +#~ msgstr "MSX + Neotron z rozszerzonym kanałem 2" + +#~ msgid "MSX + Neotron (extended channel 2 and CSM)" +#~ msgstr "MSX + Neotron z rozszerzonym kanałem 2 i CSM" + +#~ msgid "MSX + Neotron (with YM2610B)" +#~ msgstr "MSX + Neotron (z YM2610B)" + +#~ msgid "MSX + Neotron (with YM2610B; extended channel 3)" +#~ msgstr "MSX + Neotron (z YM2610B; z rozszerzonym kanałem 3 3)" + +#~ msgid "MSX + Neotron (with YM2610B; extended channel 3 and CSM)" +#~ msgstr "MSX + Neotron (z YM2610B; z rozszerzonym kanałem 3 i CSM)" + +#~ msgid "NEC PC-88 (with PC-8801-10)" +#~ msgstr "NEC PC-88 (z PC-8801-10)" + +#~ msgid "NEC PC-88 (with PC-8801-11)" +#~ msgstr "NEC PC-88 (z PC-8801-11)" + +#~ msgid "NEC PC-88 (with PC-8801-11; extended channel 3)" +#~ msgstr "NEC PC-88 (z PC-8801-11; z rozszerzonym kanałem 3)" + +#~ msgid "NEC PC-88 (with PC-8801-11; extended channel 3 and CSM)" +#~ msgstr "NEC PC-88 (z PC-8801-11; z rozszerzonym kanałem 3 i CSM)" + +#~ msgid "NEC PC-88 (with PC-8801-23)" +#~ msgstr "NEC PC-88 (z PC-8801-23)" + +#~ msgid "NEC PC-88 (with PC-8801-23; extended channel 3)" +#~ msgstr "NEC PC-88 (z PC-8801-23; z rozszerzonym kanałem 3)" + +#~ msgid "NEC PC-88 (with PC-8801-23; extended channel 3 and CSM)" +#~ msgstr "NEC PC-88 (z PC-8801-23; z rozszerzonym kanałem 3 i CSM)" + +#~ msgid "NEC PC-88 (with HMB-20 HIBIKI-8800)" +#~ msgstr "NEC PC-88 (z HMB-20 HIBIKI-8800)" + +#~ msgid "NEC PC-8801mk2SR (with PC-8801-10)" +#~ msgstr "NEC PC-8801mk2SR (z PC-8801-10)" + +#~ msgid "NEC PC-8801mk2SR (with PC-8801-10; extended channel 3)" +#~ msgstr "NEC PC-8801mk2SR (z PC-8801-10; z rozszerzonym kanałem 3)" + +#~ msgid "NEC PC-8801mk2SR (with PC-8801-10; extended channel 3 and CSM)" +#~ msgstr "NEC PC-8801mk2SR (z PC-8801-10; z rozszerzonym kanałem 3 i CSM)" + +#~ msgid "NEC PC-8801mk2SR (with PC-8801-11)" +#~ msgstr "NEC PC-8801mk2SR (z PC-8801-11)" + +#~ msgid "" +#~ "NEC PC-8801mk2SR (with PC-8801-11; extended channel 3 on internal OPN)" +#~ msgstr "" +#~ "NEC PC-8801mk2SR (z PC-8801-11; z rozszerzonym kanałem 3 na wbudowanym " +#~ "OPN-ie)" + +#~ msgid "" +#~ "NEC PC-8801mk2SR (with PC-8801-11; extended channel 3 on external OPN)" +#~ msgstr "" +#~ "NEC PC-8801mk2SR (z PC-8801-11; z rozszerzonym kanałem 3 na dodatkowym " +#~ "OPN-ie)" + +#~ msgid "NEC PC-8801mk2SR (with PC-8801-11; extended channel 3 on both OPNs)" +#~ msgstr "" +#~ "NEC PC-8801mk2SR (z PC-8801-11; z rozszerzonym kanałem 3 na obydwu OPN-" +#~ "ach)" + +#~ msgid "" +#~ "NEC PC-8801mk2SR (with PC-8801-11; extended channel 3 and CSM on both " +#~ "OPNs)" +#~ msgstr "" +#~ "NEC PC-8801mk2SR (z PC-8801-11; z rozszerzonym kanałem 3 i CSM na obydwu " +#~ "OPN-ach)" + +#~ msgid "NEC PC-8801mk2SR (with PC-8801-23)" +#~ msgstr "NEC PC-8801mk2SR (z PC-8801-23)" + +#~ msgid "" +#~ "NEC PC-8801mk2SR (with PC-8801-23; extended channel 3 on internal OPN)" +#~ msgstr "" +#~ "NEC PC-8801mk2SR (z PC-8801-23; z rozszerzonym kanałem 3 na wbudowanym " +#~ "OPN-ie)" + +#~ msgid "" +#~ "NEC PC-8801mk2SR (with PC-8801-23; extended channel 3 and CSM on internal " +#~ "OPN)" +#~ msgstr "" +#~ "NEC PC-8801mk2SR (z PC-8801-23; z rozszerzonym kanałem 3 i CSM na " +#~ "wbudowanym OPN-ie)" + +#~ msgid "" +#~ "NEC PC-8801mk2SR (with PC-8801-23; extended channel 3 on external OPN)" +#~ msgstr "" +#~ "NEC PC-8801mk2SR (z PC-8801-23; z rozszerzonym kanałem 3 na dodatkowym " +#~ "OPN-ie)" + +#~ msgid "" +#~ "NEC PC-8801mk2SR (with PC-8801-23; extended channel 3 and CSM on external " +#~ "OPN)" +#~ msgstr "" +#~ "NEC PC-8801mk2SR (z PC-8801-23; z rozszerzonym kanałem 3 i CSM na " +#~ "dodatkowym OPN-ie)" + +#~ msgid "NEC PC-8801mk2SR (with PC-8801-23; extended channel 3 on both OPNs)" +#~ msgstr "" +#~ "NEC PC-8801mk2SR (z PC-8801-23; extended channel 3 na obydwu OPN-ach)" + +#~ msgid "" +#~ "NEC PC-8801mk2SR (with PC-8801-23; extended channel 3 and CSM on both " +#~ "OPNs)" +#~ msgstr "" +#~ "NEC PC-8801mk2SR (z PC-8801-23; z rozszerzonym kanałem 3 i CSM na obydwu " +#~ "OPN-ach)" + +#~ msgid "NEC PC-8801mk2SR (with HMB-20 HIBIKI-8800)" +#~ msgstr "NEC PC-8801mk2SR (z HMB-20 HIBIKI-8800)" + +#~ msgid "NEC PC-8801mk2SR (with HMB-20 HIBIKI-8800; extended channel 3)" +#~ msgstr "NEC PC-8801mk2SR z HMB-20 HIBIKI-8800; z rozszerzonym kanałem 3)" + +#~ msgid "" +#~ "NEC PC-8801mk2SR (with HMB-20 HIBIKI-8800; extended channel 3 and CSM)" +#~ msgstr "" +#~ "NEC PC-8801mk2SR (z HMB-20 HIBIKI-8800; z rozszerzonym kanałem 3 i CSM)" + +#~ msgid "NEC PC-8801FA (with PC-8801-10)" +#~ msgstr "NEC PC-8801FA (z PC-8801-10)" + +#~ msgid "NEC PC-8801FA (with PC-8801-10; extended channel 3)" +#~ msgstr "NEC PC-8801FA (z PC-8801-10; z rozszerzonym kanałem 3)" + +#~ msgid "NEC PC-8801FA (with PC-8801-11)" +#~ msgstr "NEC PC-8801FA (z PC-8801-11)" + +#~ msgid "NEC PC-8801FA (with PC-8801-11; extended channel 3 on internal OPN)" +#~ msgstr "" +#~ "NEC PC-8801FA (z PC-8801-11; z rozszerzonym kanałem 3 na wbudowanym OPN-" +#~ "ie)" + +#~ msgid "NEC PC-8801FA (with PC-8801-11; extended channel 3 on external OPN)" +#~ msgstr "" +#~ "NEC PC-8801FA (z PC-8801-11; z rozszerzonym kanałem 3 na dodatkowym OPN-" +#~ "ie)" + +#~ msgid "" +#~ "NEC PC-8801FA (with PC-8801-11; extended channel 3 and CSM on external " +#~ "OPN)" +#~ msgstr "" +#~ "NEC PC-8801FA (z PC-8801-11; z rozszerzonym kanałem 3 i CSM na dodatkowym " +#~ "OPN-ie)" + +#~ msgid "NEC PC-8801FA (with PC-8801-11; extended channel 3 on both OPNs)" +#~ msgstr "" +#~ "NEC PC-8801FA (z PC-8801-11; z rozszerzonym kanałem 3 na obydwu OPN-ach)" + +#~ msgid "" +#~ "NEC PC-8801FA (with PC-8801-11; extended channel 3 and CSM on both OPNs)" +#~ msgstr "" +#~ "NEC PC-8801FA (z PC-8801-11; z rozszerzonym kanałem 3 i CSM na obydwu OPN-" +#~ "ach)" + +#~ msgid "NEC PC-8801FA (with PC-8801-23)" +#~ msgstr "NEC PC-8801FA (z PC-8801-23)" + +#~ msgid "NEC PC-8801FA (with PC-8801-23; extended channel 3 on internal OPN)" +#~ msgstr "" +#~ "NEC PC-8801FA (z PC-8801-23; z rozszerzonym kanałem 3 na wbudowanym OPN-" +#~ "ie)" + +#~ msgid "" +#~ "NEC PC-8801FA (with PC-8801-23; extended channel 3 and CSM on internal " +#~ "OPN)" +#~ msgstr "" +#~ "NEC PC-8801FA (z PC-8801-23; z rozszerzonym kanałem 3 i CSM na wbudowanym " +#~ "OPN-ie)" + +#~ msgid "NEC PC-8801FA (with PC-8801-23; extended channel 3 on external OPN)" +#~ msgstr "" +#~ "NEC PC-8801FA (z PC-8801-23; z rozszerzonym kanałem 3 na dodatkowym OPN-" +#~ "ie)" + +#~ msgid "" +#~ "NEC PC-8801FA (with PC-8801-23; extended channel 3 and CSM on external " +#~ "OPN)" +#~ msgstr "" +#~ "NEC PC-8801FA (z PC-8801-23; z rozszerzonym kanałem 3 i CSM na dodatkowym " +#~ "OPN-ie)" + +#~ msgid "NEC PC-8801FA (with PC-8801-23; extended channel 3 on both OPNs)" +#~ msgstr "" +#~ "NEC PC-8801FA (z PC-8801-23; z rozszerzonym kanałem 3 na obydwu OPN-ach)" + +#~ msgid "" +#~ "NEC PC-8801FA (with PC-8801-23; extended channel 3 and CSM on both OPNs)" +#~ msgstr "" +#~ "NEC PC-8801FA (z PC-8801-23; z rozszerzonym kanałem 3 i CSM na obydwu OPN-" +#~ "ach)" + +#~ msgid "NEC PC-8801FA (with HMB-20 HIBIKI-8800)" +#~ msgstr "NEC PC-8801FA (z HMB-20 HIBIKI-8800)" + +#~ msgid "NEC PC-8801FA (with HMB-20 HIBIKI-8800; extended channel 3)" +#~ msgstr "NEC PC-8801FA (z HMB-20 HIBIKI-8800; z rozszerzonym kanałem 3)" + +#~ msgid "NEC PC-8801FA (with HMB-20 HIBIKI-8800; extended channel 3 and CSM)" +#~ msgstr "" +#~ "NEC PC-8801FA (z HMB-20 HIBIKI-8800; z rozszerzonym kanałem 3 i CSM)" + +#~ msgid "NEC PC-98 (with PC-9801-26/K)" +#~ msgstr "NEC PC-98 (z PC-9801-26/K)" + +#~ msgid "NEC PC-98 (with PC-9801-26/K; extended channel 3)" +#~ msgstr "NEC PC-98 (z PC-9801-26/K; z rozszerzonym kanałem 3)" + +#~ msgid "NEC PC-98 (with PC-9801-26/K; extended channel 3 and CSM)" +#~ msgstr "NEC PC-98 (z PC-9801-26/K; z rozszerzonym kanałem 3 i CSM)" + +#~ msgid "NEC PC-98 (with Sound Orchestra)" +#~ msgstr "NEC PC-98 (z Sound Orchestra)" + +#~ msgid "NEC PC-98 (with Sound Orchestra; extended channel 3)" +#~ msgstr "NEC PC-98 (z Sound Orchestra; z rozszerzonym kanałem 3)" + +#~ msgid "NEC PC-98 (with Sound Orchestra; extended channel 3 and CSM)" +#~ msgstr "NEC PC-98 (z Sound Orchestra; z rozszerzonym kanałem 3 i CSM)" + +#~ msgid "NEC PC-98 (with Sound Orchestra in drums mode)" +#~ msgstr "NEC PC-98 (z Sound Orchestra w trybie perkusji)" + +#~ msgid "NEC PC-98 (with Sound Orchestra in drums mode; extended channel 3)" +#~ msgstr "" +#~ "NEC PC-98 (z Sound Orchestra w trybie perkusji; z rozszerzonym kanałem 3)" + +#~ msgid "" +#~ "NEC PC-98 (with Sound Orchestra in drums mode; extended channel 3 and CSM)" +#~ msgstr "" +#~ "NEC PC-98 (z Sound Orchestra w trybie perkusji; z rozszerzonym kanałem 3 " +#~ "i CSM)" + +#~ msgid "NEC PC-98 (with Sound Orchestra V)" +#~ msgstr "NEC PC-98 (z Sound Orchestra V)" + +#~ msgid "NEC PC-98 (with Sound Orchestra V; extended channel 3)" +#~ msgstr "NEC PC-98 (z Sound Orchestra V; z rozszerzonym kanałem 3)" + +#~ msgid "NEC PC-98 (with Sound Orchestra V; extended channel 3 and CSM)" +#~ msgstr "NEC PC-98 (z Sound Orchestra V; z rozszerzonym kanałem 3 i CSM)" + +#~ msgid "NEC PC-98 (with Sound Orchestra V in drums mode)" +#~ msgstr "NEC PC-98 (z Sound Orchestra V w trybie perkusji)" + +#~ msgid "NEC PC-98 (with Sound Orchestra V in drums mode; extended channel 3)" +#~ msgstr "" +#~ "NEC PC-98 (z Sound Orchestra V w trybie perkusji; z rozszerzonym kanałem " +#~ "3)" + +#~ msgid "" +#~ "NEC PC-98 (with Sound Orchestra V in drums mode; extended channel 3 and " +#~ "CSM)" +#~ msgstr "" +#~ "NEC PC-98 (z Sound Orchestra V w trybie perkusji; z rozszerzonym kanałem " +#~ "3 i CSM)" + +#~ msgid "NEC PC-98 (with PC-9801-86)" +#~ msgstr "NEC PC-98 (z PC-9801-86)" + +#~ msgid "NEC PC-98 (with PC-9801-86; extended channel 3)" +#~ msgstr "NEC PC-98 (z PC-9801-86; z rozszerzonym kanałem 3)" + +#~ msgid "NEC PC-98 (with PC-9801-86; extended channel 3 and CSM)" +#~ msgstr "NEC PC-98 (z PC-9801-86; z rozszerzonym kanałem 3 i CSM)" + +#~ msgid "NEC PC-98 (with PC-9801-86) stereo" +#~ msgstr "NEC PC-98 (z PC-9801-86) stereo" + +#~ msgid "NEC PC-98 (with PC-9801-86; extended channel 3) stereo" +#~ msgstr "NEC PC-98 (z PC-9801-86; z rozszerzonym kanałem 3) stereo" + +#~ msgid "NEC PC-98 (with PC-9801-86; extended channel 3 and CSM) stereo" +#~ msgstr "NEC PC-98 (z PC-9801-86; z rozszerzonym kanałem 3 i CSM) stereo" + +#~ msgid "NEC PC-98 (with PC-9801-73)" +#~ msgstr "NEC PC-98 (z PC-9801-73)" + +#~ msgid "NEC PC-98 (with PC-9801-73; extended channel 3)" +#~ msgstr "NEC PC-98 (z PC-9801-73; z rozszerzonym kanałem 3)" + +#~ msgid "NEC PC-98 (with PC-9801-73; extended channel 3 and CSM)" +#~ msgstr "NEC PC-98 (z PC-9801-73; z rozszerzonym kanałem 3 i CSM)" + +#~ msgid "" +#~ "NEC PC-98 (with Sound Blaster 16 for PC-9800 w/PC-9801-26/K compatible)" +#~ msgstr "" +#~ "NEC PC-98 (z Sound Blaster 16 dla PC-9800, kompatybilny z PC-9801-26/K)" + +#~ msgid "" +#~ "NEC PC-98 (with Sound Blaster 16 for PC-9800 w/PC-9801-26/K compatible; " +#~ "extended channel 3)" +#~ msgstr "" +#~ "NEC PC-98 (z Sound Blaster 16 dla PC-9800, kompatybilny z PC-9801-26/K; z " +#~ "rozszerzonym kanałem 3)" + +#~ msgid "" +#~ "NEC PC-98 (with Sound Blaster 16 for PC-9800 w/PC-9801-26/K compatible; " +#~ "extended channel 3 and CSM)" +#~ msgstr "" +#~ "NEC PC-98 (z Sound Blasterem 16 dla PC-9800, kompatybilny z PC-9801-26/K; " +#~ "z rozszerzonym kanałem 3 i CSM)" + +#~ msgid "" +#~ "NEC PC-98 (with Sound Blaster 16 for PC-9800 w/PC-9801-26/K compatible in " +#~ "drums mode)" +#~ msgstr "" +#~ "NEC PC-98 (z Sound Blasterem 16 dla PC-9800, kompatybilny z PC-9801-26/K " +#~ "w trybie perkusji)" + +#~ msgid "" +#~ "NEC PC-98 (with Sound Blaster 16 for PC-9800 w/PC-9801-26/K compatible in " +#~ "drums mode; extended channel 3)" +#~ msgstr "" +#~ "NEC PC-98 (z Sound Blasterem 16 dla PC-9800, kompatybilny z PC-9801-26/K " +#~ "w trybie perkusji; z rozszerzonym kanałem 3)" + +#~ msgid "" +#~ "NEC PC-98 (with Sound Blaster 16 for PC-9800 w/PC-9801-26/K compatible in " +#~ "drums mode; extended channel 3 and CSM)" +#~ msgstr "" +#~ "NEC PC-98 (z Sound Blasterem 16 dla PC-9800, kompatybilny z PC-9801-26/K " +#~ "w trybie perkusji; z rozszerzonym kanałem 3 i CSM)" + +#~ msgid "ZX Spectrum (48K, SFX-like engine)" +#~ msgstr "ZX Spectrum (48K, silnik pokroju SFX)" + +#~ msgid "ZX Spectrum (48K, QuadTone engine)" +#~ msgstr "ZX Spectrum (48K, silnik QuadTone)" + +#~ msgid "ZX Spectrum (128K) with TurboSound" +#~ msgstr "ZX Spectrum (128K) z TurboSound" + +#~ msgid "ZX Spectrum (128K) with TurboSound FM" +#~ msgstr "ZX Spectrum (128K) z TurboSound FM" + +#~ msgid "" +#~ "ZX Spectrum (128K) with TurboSound FM (extended channel 3 on first OPN)" +#~ msgstr "" +#~ "ZX Spectrum (128K) z TurboSound FM z rozszerzonym kanałem 3 na pierwszym " +#~ "OPN-ie)" + +#~ msgid "" +#~ "ZX Spectrum (128K) with TurboSound FM (extended channel 3 and CSM on " +#~ "first OPN)" +#~ msgstr "" +#~ "ZX Spectrum (128K) z TurboSound FM z rozszerzonym kanałem 3 i CSM na " +#~ "pierwszym OPNie" + +#~ msgid "" +#~ "ZX Spectrum (128K) with TurboSound FM (extended channel 3 on second OPN)" +#~ msgstr "" +#~ "ZX Spectrum (128K) z TurboSound FM z rozszerzonym kanałem 3 da drugim OPN-" +#~ "ie" + +#~ msgid "" +#~ "ZX Spectrum (128K) with TurboSound FM (extended channel 3 and CSM on " +#~ "second OPN)" +#~ msgstr "" +#~ "ZX Spectrum (128K) z TurboSound FM (z rozszerzonym kanałem 3 i CSM na " +#~ "drugim OPN-ie" + +#~ msgid "" +#~ "ZX Spectrum (128K) with TurboSound FM (extended channel 3 on both OPNs)" +#~ msgstr "" +#~ "ZX Spectrum (128K) z TurboSound FM (z rozszerzonym kanałem 3 na obydwu " +#~ "OPN-ach" + +#~ msgid "" +#~ "ZX Spectrum (128K) with TurboSound FM (extended channel 3 and CSM on both " +#~ "OPNs)" +#~ msgstr "" +#~ "ZX Spectrum (128K) z TurboSound FM (z rozszerzonym kanałem 3 i CSM na " +#~ "obydwu OPN-ach" + +#~ msgid "Atari 800 (stereo)" +#~ msgstr "Atari 800 (stereo)" + +#~ msgid "PC (beeper)" +#~ msgstr "PC (brzęczyk)" + +#~ msgid "PC + AdLib (drums mode)" +#~ msgstr "PC + AdLib (tryb perkusji)" + +#~ msgid "PC + Sound Blaster (drums mode)" +#~ msgstr "PC + Sound Blaster (tryb perkusji)" + +#~ msgid "PC + Sound Blaster w/Game Blaster Compatible" +#~ msgstr "PC + Sound Blaster komp. z Game Blaster" + +#~ msgid "PC + Sound Blaster w/Game Blaster Compatible (drums mode)" +#~ msgstr "PC + Sound Blaster komp. z Game Blaster (tryb perkusji)" + +#~ msgid "PC + Sound Blaster Pro (drums mode)" +#~ msgstr "PC + Sound Blaster Pro (tryb perkusji)" + +#~ msgid "PC + Sound Blaster Pro 2 (drums mode)" +#~ msgstr "PC + Sound Blaster Pro 2 (tryb perkusji)" + +#~ msgid "PC + ESS AudioDrive ES1488 (native ESFM mode)" +#~ msgstr "PC + ESS AudioDrive ES1488 (natywny tryb ESFM)" + +#~ msgid "Sharp X1 + FM addon" +#~ msgstr "Sharp X1 + rozszerzenie FM" + +#~ msgid "FM Towns (extended channel 3)" +#~ msgstr "FM Towns z rozszerzonym kanałem 3" + +#~ msgid "Commander X16 (VERA only)" +#~ msgstr "Commander X16 (tylko VERA)" + +#~ msgid "Commander X16 (with OPM)" +#~ msgstr "Commander X16 (z OPM)" + +#~ msgid "Commander X16 (with Twin OPL3)" +#~ msgstr "Commander X16 (z podwójnym OPL3)" + +#~ msgid "Arcade systems" +#~ msgstr "Automaty do gier" + +#~ msgid "INSERT COIN" +#~ msgstr "WRZUĆ MONETĘ" + +#~ msgid "Williams/Midway Y/T unit w/ADPCM sound board" +#~ msgstr "Automat Williams/Midway Y/T z kartą dźwiękową ADPCM" + +#~ msgid "Konami Battlantis (drums mode on first OPL2)" +#~ msgstr "Konami Battlantis (pierwszy OPL2 w trybie perkusji)" + +#~ msgid "Konami Battlantis (drums mode on second OPL2)" +#~ msgstr "Konami Battlantis (drugi OPL2 w trybie perkusji)" + +#~ msgid "Konami Battlantis (drums mode on both OPL2s)" +#~ msgstr "Konami Battlantis (obydwa OPL2 w trybie perkusji)" + +#~ msgid "Konami Haunted Castle (drums mode)" +#~ msgstr "Konami Haunted Castle (tryb perkusji)" + +#~ msgid "Konami S.P.Y. (drums mode)" +#~ msgstr "Konami S.P.Y. (tryb perkusji)" + +#~ msgid "Konami Rollergames (drums mode)" +#~ msgstr "Konami Rollergames (tryb perkusji)" + +#~ msgid "Sega System E (with FM expansion)" +#~ msgstr "Sega System E (z rozszerzeniem FM)" + +#~ msgid "Sega System E (with FM expansion in drums mode)" +#~ msgstr "Sega System E (z rozszerzeniem FM i trybem perkusji)" + +#~ msgid "Sega Hang-On (extended channel 3)" +#~ msgstr "Sega Hang-On z rozszerzonym kanałem 3" + +#~ msgid "Sega Hang-On (extended channel 3 and CSM)" +#~ msgstr "Sega Hang-On z rozszerzonym kanałem 3 i CSM)" + +#~ msgid "Sega System 18 (extended channel 3 on first OPN2C)" +#~ msgstr "Sega System 18 z rozszerzonym kanałem 3 na pierwszym OPN2C" + +#~ msgid "Sega System 18 (extended channel 3 and CSM on first OPN2C)" +#~ msgstr "Sega System 18 z rozszerzonym kanałem 3 i CSM na pierwszym OPN2C" + +#~ msgid "Sega System 18 (extended channel 3 on second OPN2C)" +#~ msgstr "Sega System 18 z rozszerzonym kanałem 3 na drugim OPN2C" + +#~ msgid "Sega System 18 (extended channel 3 and CSM on second OPN2C)" +#~ msgstr "Sega System 18 z rozszerzonym kanałem 3 i CSM na drugim OPN2C" + +#~ msgid "Sega System 18 (extended channel 3 on both OPN2Cs)" +#~ msgstr "Sega System 18 z rozszerzonym kanałem 3 na obydwu OPN2C" + +#~ msgid "Sega System 18 (extended channel 3 and CSM on both OPN2Cs)" +#~ msgstr "Sega System 18 z rozszerzonym kanałem 3 i CSM na obydwu OPN2C" + +#~ msgid "Sega System 32 (extended channel 3 on first OPN2C)" +#~ msgstr "Sega System 32 z rozszerzonym kanałem 3 na pierwszym OPN2C" + +#~ msgid "Sega System 32 (extended channel 3 and CSM on first OPN2C)" +#~ msgstr "Sega System 32 z rozszerzonym kanałem 3 i CSM na pierwszym OPN2C" + +#~ msgid "Sega System 32 (extended channel 3 on second OPN2C)" +#~ msgstr "Sega System 32 z rozszerzonym kanałem 3 na drugim OPN2C" + +#~ msgid "Sega System 32 (extended channel 3 and CSM on second OPN2C)" +#~ msgstr "Sega System 32 z rozszerzonym kanałem 3 i CSM na drugim OPN2C" + +#~ msgid "Sega System 32 (extended channel 3 on both OPN2Cs)" +#~ msgstr "Sega System 32 z rozszerzonym kanałem 3 na obydwu OPN2C" + +#~ msgid "Sega System 32 (extended channel 3 and CSM on both OPN2Cs)" +#~ msgstr "Sega System 32 z rozszerzonym kanałem 3 i CSM na obydwu OPN2C" + +#~ msgid "Capcom Arcade" +#~ msgstr "Capcom Arcade" + +#~ msgid "Capcom Arcade (extended channel 3 on first OPN)" +#~ msgstr "Capcom Arcade z rozszerzonym kanałem 3 na pierwszym OPN-ie" + +#~ msgid "Capcom Arcade (extended channel 3 and CSM on first OPN)" +#~ msgstr "Capcom Arcade z rozszerzonym kanałem 3 i CSM na pierwszym OPN-ie" + +#~ msgid "Capcom Arcade (extended channel 3 on second OPN)" +#~ msgstr "Capcom Arcade z rozszerzonym kanałem 3 na drugim OPN-ie" + +#~ msgid "Capcom Arcade (extended channel 3 and CSM on second OPN)" +#~ msgstr "Capcom Arcade z rozszerzonym kanałem 3 i CSM na drugim OPN-ie" + +#~ msgid "Capcom Arcade (extended channel 3 on both OPNs)" +#~ msgstr "Capcom Arcade z rozszerzonym kanałem 3 na obydwu OPN-ach" + +#~ msgid "Capcom Arcade (extended channel 3 and CSM on both OPNs)" +#~ msgstr "Capcom Arcade z rozszerzonym kanałem 3 i CSM na obydwu OPN-ach" + +#~ msgid "Jaleco Ginga NinkyouDen (drums mode)" +#~ msgstr "Jaleco Ginga NinkyouDen (tryb perkusji)" + +#~ msgid "NMK 16-bit Arcade" +#~ msgstr "NMK 16-bit Arcade" + +#~ msgid "NMK 16-bit Arcade (extended channel 3)" +#~ msgstr "NMK 16-bit Arcade z rozszerzonym kanałem 3" + +#~ msgid "NMK 16-bit Arcade (extended channel 3 and CSM)" +#~ msgstr "NMK 16-bit Arcade z rozszerzonym kanałem 3 i CSM)" + +#~ msgid "NMK 16-bit Arcade (w/NMK112 bankswitching)" +#~ msgstr "NMK 16-bit Arcade (ze zmieniarką banków NMK112)" + +#~ msgid "NMK 16-bit Arcade (w/NMK112 bankswitching, extended channel 3)" +#~ msgstr "" +#~ "NMK 16-bit Arcade (ze zmieniarką banków NMK112 i rozszerzonym kanałem 3" + +#~ msgid "" +#~ "NMK 16-bit Arcade (w/NMK112 bankswitching, extended channel 3 and CSM)" +#~ msgstr "" +#~ "NMK 16-bit Arcade ze zmieniarką banków NMK112, rozszerzonym kanałem 3 i " +#~ "CSM)" + +#~ msgid "Atlus Power Instinct 2 (extended channel 3)" +#~ msgstr "Atlus Power Instinct 2 z rozszerzonym kanałem 3" + +#~ msgid "Atlus Power Instinct 2 (extended channel 3 and CSM)" +#~ msgstr "Atlus Power Instinct 2 z rozszerzonym kanałem 3 i CSM)" + +#~ msgid "Kaneko DJ Boy (extended channel 3)" +#~ msgstr "Kaneko DJ Boy z rozszerzonym kanałem 3" + +#~ msgid "Kaneko DJ Boy (extended channel 3 and CSM)" +#~ msgstr "Kaneko DJ Boy z rozszerzonym kanałem 3 i CSM)" + +#~ msgid "Kaneko Air Buster (extended channel 3)" +#~ msgstr "Kaneko Air Buster z rozszerzonym kanałem 3" + +#~ msgid "Kaneko Air Buster (extended channel 3 and CSM)" +#~ msgstr "Kaneko Air Buster z rozszerzonym kanałem 3 i CSM)" + +#~ msgid "Tecmo Ninja Gaiden (extended channel 3 on first OPN)" +#~ msgstr "Tecmo Ninja Gaiden z rozszerzonym kanałem 3 na pierwszym OPN-ie" + +#~ msgid "Tecmo Ninja Gaiden (extended channel 3 and CSM on first OPN)" +#~ msgstr "" +#~ "Tecmo Ninja Gaiden z rozszerzonym kanałem 3 i CSM na pierwszym OPN-ie" + +#~ msgid "Tecmo Ninja Gaiden (extended channel 3 on second OPN)" +#~ msgstr "Tecmo Ninja Gaiden z rozszerzonym kanałem 3 na drugim OPN-ie)" + +#~ msgid "Tecmo Ninja Gaiden (extended channel 3 and CSM on second OPN)" +#~ msgstr "Tecmo Ninja Gaiden z rozszerzonym kanałem 3 i CSM na drugim OPN-ie)" + +#~ msgid "Tecmo Ninja Gaiden (extended channel 3 on both OPNs)" +#~ msgstr "Tecmo Ninja Gaiden z rozszerzonym kanałem 3 na obydwu OPN-ach)" + +#~ msgid "Tecmo Ninja Gaiden (extended channel 3 and CSM on both OPNs)" +#~ msgstr "Tecmo Ninja Gaiden z rozszerzonym kanałem 3 i CSM na obydwu OPN-ach" + +#~ msgid "Tecmo System (drums mode)" +#~ msgstr "Tecmo System (tryb perkusji)" + +#~ msgid "Seibu Kaihatsu Raiden (drums mode)" +#~ msgstr "Seibu Kaihatsu Raiden (tryb perkusji)" + +#~ msgid "Sunsoft Arcade" +#~ msgstr "Sunsoft Arcade" + +#~ msgid "Sunsoft Arcade (extended channel 3)" +#~ msgstr "Sunsoft Arcade z rozszerzonym kanałem 3" + +#~ msgid "Sunsoft Arcade (extended channel 3 and CSM)" +#~ msgstr "Sunsoft Arcade (z rozszerzonym kanałem 3 i CSM)" + +#~ msgid "Atari Rampart (drums mode)" +#~ msgstr "Atari Rampart (tryb perkusji)" + +#~ msgid "Data East Karnov (extended channel 3)" +#~ msgstr "Data East Karnov (z rozszerzonym kanałem 3 3)" + +#~ msgid "Data East Karnov (extended channel 3 and CSM)" +#~ msgstr "Data East Karnov (z rozszerzonym kanałem 3 i CSM)" + +#~ msgid "Data East Karnov (drums mode)" +#~ msgstr "Data East Karnov (tryb perkusji)" + +#~ msgid "Data East Karnov (extended channel 3; drums mode)" +#~ msgstr "Data East Karnov (z rozszerzonym kanałem 3; tryb perkusji)" + +#~ msgid "Data East Karnov (extended channel 3 and CSM; drums mode)" +#~ msgstr "Data East Karnov (z rozszerzonym kanałem 3 i CSM; tryb perkusji)" + +#~ msgid "Data East Arcade" +#~ msgstr "Data East Arcade" + +#~ msgid "Data East Arcade (extended channel 3)" +#~ msgstr "Data East Arcade z rozszerzonym kanałem 3" + +#~ msgid "Data East Arcade (extended channel 3 and CSM)" +#~ msgstr "Data East Arcade (z rozszerzonym kanałem 3 i CSM)" + +#~ msgid "Data East Arcade (drums mode)" +#~ msgstr "Data East Arcade (tryb perkusji)" + +#~ msgid "Data East Arcade (extended channel 3; drums mode)" +#~ msgstr "Data East Arcade (z rozszerzonym kanałem 3; tryb perkusji)" + +#~ msgid "Data East Arcade (extended channel 3 and CSM; drums mode)" +#~ msgstr "Data East Arcade (z rozszerzonym kanałem 3 i CSM; tryb perkusji)" + +#~ msgid "Data East PCX (extended channel 3)" +#~ msgstr "Data East PCX z rozszerzonym kanałem 3" + +#~ msgid "Data East PCX (extended channel 3 and CSM)" +#~ msgstr "Data East PCX (z rozszerzonym kanałem 3 i CSM)" + +#~ msgid "Data East Dark Seal (extended channel 3)" +#~ msgstr "Data East Dark Seal z rozszerzonym kanałem 3" + +#~ msgid "Data East Dark Seal (extended channel 3 and CSM)" +#~ msgstr "Data East Dark Seal (z rozszerzonym kanałem 3 i CSM)" + +#~ msgid "SNK Ikari Warriors (drums mode on first OPL)" +#~ msgstr "SNK Ikari Warriors (pierwszy OPL w trybie perkusji)" + +#~ msgid "SNK Ikari Warriors (drums mode on second OPL)" +#~ msgstr "SNK Ikari Warriors (drugi OPL w trybie perkusji)" + +#~ msgid "SNK Ikari Warriors (drums mode on both OPLs)" +#~ msgstr "SNK Ikari Warriors (obydwa OPL-e w trybie perkusji)" + +#~ msgid "SNK Triple Z80 (drums mode on Y8950)" +#~ msgstr "SNK Triple Z80 (Y8950 w trybie perkusji)" + +#~ msgid "SNK Triple Z80 (drums mode on OPL)" +#~ msgstr "SNK Triple Z80 (OPL w trybie perkusji)" + +#~ msgid "SNK Triple Z80 (drums mode on Y8950 and OPL)" +#~ msgstr "SNK Triple Z80 (Y8950 i OPL w trybie perkusji)" + +#~ msgid "SNK Chopper I (drums mode on Y8950)" +#~ msgstr "SNK Chopper I (Y8950 w trybie perkusji)" + +#~ msgid "SNK Chopper I (drums mode on OPL2)" +#~ msgstr "SNK Chopper I (OPL2 w trybie perkusji)" + +#~ msgid "SNK Chopper I (drums mode on Y8950 and OPL2)" +#~ msgstr "SNK Chopper I (Y8950 i OPL2 w trybie perkusji)" + +#~ msgid "SNK Touchdown Fever (drums mode on OPL)" +#~ msgstr "SNK Touchdown Fever (OPL w trybie perkusji)" + +#~ msgid "SNK Touchdown Fever (drums mode on Y8950)" +#~ msgstr "SNK Touchdown Fever (Y8950 w trybie perkusji)" + +#~ msgid "SNK Touchdown Fever (drums mode on OPL and Y8950)" +#~ msgstr "SNK Touchdown Fever (Y8950 i OPL2 w trybie perkusji)" + +#~ msgid "Alpha denshi Alpha-68K (extended channel 3)" +#~ msgstr "Alpha denshi Alpha-68K z rozszerzonym kanałem 3" + +#~ msgid "Alpha denshi Alpha-68K (extended channel 3 and CSM)" +#~ msgstr "Alpha denshi Alpha-68K (z rozszerzonym kanałem 3 i CSM)" + +#~ msgid "Alpha denshi Alpha-68K (drums mode)" +#~ msgstr "Alpha denshi Alpha-68K (tryb perkusji)" + +#~ msgid "Alpha denshi Alpha-68K (extended channel 3; drums mode)" +#~ msgstr "Alpha denshi Alpha-68K (z rozszerzonym kanałem 3; tryb perkusji)" + +#~ msgid "Alpha denshi Alpha-68K (extended channel 3 and CSM; drums mode)" +#~ msgstr "" +#~ "Alpha denshi Alpha-68K (z rozszerzonym kanałem 3 i CSM; tryb perkusji)" + +#~ msgid "Neo Geo MVS (extended channel 2)" +#~ msgstr "Neo Geo MVS z rozszerzonym kanałem 2" + +#~ msgid "Neo Geo MVS (extended channel 2 and CSM)" +#~ msgstr "Neo Geo MVS z rozszerzonym kanałem 2 i CSM" + +#~ msgid "Namco (3-channel WSG)" +#~ msgstr "Namco (3-kanałowy syntezator tablicowy)" + +#~ msgid "Taito Arcade" +#~ msgstr "Taito Arcade" + +#~ msgid "Taito Arcade (extended channel 3)" +#~ msgstr "Taito Arcade z rozszerzonym kanałem 3" + +#~ msgid "Taito Arcade (extended channel 3 and CSM)" +#~ msgstr "Taito Arcade (z rozszerzonym kanałem 3 i CSM)" + +#~ msgid "Seta 1 + FM addon" +#~ msgstr "Seta 1 + rozszerzenie FM" + +#~ msgid "Seta 1 + FM addon (extended channel 3)" +#~ msgstr "Seta 1 + rozszerzenie FM z rozszerzonym kanałem 3" + +#~ msgid "Seta 1 + FM addon (extended channel 3 and CSM)" +#~ msgstr "Seta 1 + rozszerzenie FM (z rozszerzonym kanałem 3 i CSM)" + +#~ msgid "Coreland Cyber Tank (drums mode)" +#~ msgstr "Coreland Cyber Tank (tryb perkusji)" + +#~ msgid "Toaplan 1 (drums mode)" +#~ msgstr "Toaplan 1 (tryb perkusji)" + +#~ msgid "Dynax/Nakanihon 3rd generation hardware" +#~ msgstr "Trzecia generacja sprzetu Dynax/Nakanihon" + +#~ msgid "Dynax/Nakanihon 3rd generation hardware (drums mode)" +#~ msgstr "Trzecia generacja sprzetu Dynax/Nakanihon (tryb perkusji)" + +#~ msgid "Dynax/Nakanihon Real Break (drums mode)" +#~ msgstr "Dynax/Nakanihon Real Break (tryb perkusji)" + +#~ msgid "system presets that you have saved." +#~ msgstr "uprzednio zapisane presety systemów." + +#~ msgid "" +#~ "chips which use frequency modulation (FM) to generate sound.\n" +#~ "some of these also pack more (like square and sample channels).\n" +#~ "Actually \"FM\" here stands for phase modulation,\n" +#~ "but these two are indistinguishable\n" +#~ "if you use sine waves." +#~ msgstr "" +#~ "układy wykorzystujące modulację częstotliwości (syntezę FM) do " +#~ "generowania dźwięku\n" +#~ "w niektorych z nich stosowane sa również inne metody syntezy dźwięku " +#~ "(kanały fali prostokątnej lub sample).\n" +#~ "W rzeczywistości \"FM\" oznacza tutaj modulację fazy, ale są one nie do " +#~ "odróżnienia od siebie, gdy używają fal sinusoidalnych." + +#~ msgid "Yamaha YM2203 (extended channel 3)" +#~ msgstr "Yamaha YM2203 z rozszerzonym kanałem 3" + +#~ msgid "Yamaha YM2203 (extended channel 3 and CSM)" +#~ msgstr "Yamaha YM2203 z rozszerzonym kanałem 3 i CSM)" + +#~ msgid "Yamaha YM2608 (extended channel 3)" +#~ msgstr "Yamaha YM2608 z rozszerzonym kanałem 3" + +#~ msgid "Yamaha YM2608 (extended channel 3 and CSM)" +#~ msgstr "Yamaha YM2608 z rozszerzonym kanałem 3 i CSM)" + +#~ msgid "Yamaha YM2610 (extended channel 2)" +#~ msgstr "Yamaha YM2610 z rozszerzonym kanałem 2" + +#~ msgid "Yamaha YM2610 (extended channel 2 and CSM)" +#~ msgstr "Yamaha YM2610 z rozszerzonym kanałem 2 i CSM)" + +#~ msgid "Yamaha YM2610B (extended channel 3)" +#~ msgstr "Yamaha YM2610B z rozszerzonym kanałem 3" + +#~ msgid "Yamaha YM2610B (extended channel 3 and CSM)" +#~ msgstr "Yamaha YM2610B z rozszerzonym kanałem 3 i CSM)" + +#~ msgid "Yamaha YM2612 (extended channel 3)" +#~ msgstr "Yamaha YM2612 z rozszerzonym kanałem 3" + +#~ msgid "Yamaha YM2612 (extended channel 3) with DualPCM and CSM" +#~ msgstr "Yamaha YM2612 z rozszerzonym kanałem 3, DualPCM i CSM" + +#~ msgid "Yamaha YMF276 (extended channel 3)" +#~ msgstr "Yamaha YMF276 z rozszerzonym kanałem 3" + +#~ msgid "Yamaha YMF276 with DualPCM" +#~ msgstr "Yamaha YMF276 (OPN2L) z DualPCM" + +#~ msgid "Yamaha YMF276 (extended channel 3) with DualPCM and CSM" +#~ msgstr "Yamaha YMF276 z rozszerzonym kanałem 3, DualPCM i CSM" + +#~ msgid "Yamaha YM2413 (drums mode)" +#~ msgstr "Yamaha YM2413 (tryb perkusji)" + +#~ msgid "Yamaha YM3438 (extended channel 3)" +#~ msgstr "Yamaha YM3438 z rozszerzonym kanałem 3" + +#~ msgid "Yamaha YM3438 (OPN2C) with DualPCM" +#~ msgstr "Yamaha YM3438 (OPN2C) z DualPCM" + +#~ msgid "Yamaha YM3438 (extended channel 3) with DualPCM and CSM" +#~ msgstr "Yamaha YM3438 z rozszerzonym kanałem 3, DualPCM i CSM" + +#~ msgid "Yamaha YM3526 (drums mode)" +#~ msgstr "Yamaha YM3526 (tryb perkusji)" + +#~ msgid "Yamaha Y8950 (drums mode)" +#~ msgstr "Yamaha Y8950 (tryb perkusji)" + +#~ msgid "Yamaha YM3812 (drums mode)" +#~ msgstr "Yamaha YM3812 (tryb perkusji)" + +#~ msgid "Yamaha YMF262 (drums mode)" +#~ msgstr "Yamaha YMF262 (tryb perkusji)" + +#~ msgid "Yamaha YMF289B (drums mode)" +#~ msgstr "Yamaha YMF289B (tryb perkusji)" + +#~ msgid "" +#~ "these chips generate square/pulse tones only (but may include noise)." +#~ msgstr "" +#~ "Układy te są w stanie generować tylko fale kwadratowe/prostokątne (ale " +#~ "mogą również generować szum)." + +#~ msgid "Sega PSG (SN76489-like)" +#~ msgstr "Sega PSG (pochodna SN76489)" + +#~ msgid "Sega PSG (SN76489-like, Stereo)" +#~ msgstr "Sega PSG (pochodna SN76489, stereo)" + +#~ msgid "chips/systems which use PCM or ADPCM samples for sound synthesis." +#~ msgstr "" +#~ "uklady/systemy wykorzystujące sample formatu PCM lub ADPCM do odtwarzania " +#~ "dźwięku." + +#~ msgid "chips which use user-specified waveforms to generate sound." +#~ msgstr "" +#~ "chipy wykorzystujące fale zdefiniowane przez użytkownika do syntezy " +#~ "dźwięku." + +#~ msgid "Namco C15 (8-channel mono)" +#~ msgstr "Namco C15 (8-kanałowy, mono)" + +#~ msgid "Namco C30 (8-channel stereo)" +#~ msgstr "Namco C30 (8-kanałowy, stereo)" + +#~ msgid "Specialized" +#~ msgstr "Wyspecjalizowane" + +#~ msgid "chips/systems with unique sound synthesis methods." +#~ msgstr "Uklady/systemy z unikalnymi technikami syntezy dźwięku." + +#~ msgid "Commodore PET (pseudo-wavetable)" +#~ msgstr "Commodore PET (pseudo synteza tablicowa)" + +#~ msgid "ZX Spectrum (beeper only, SFX-like engine)" +#~ msgstr "ZX Spectrum (tylko brzęczyk, silnik pokroju SFX)" + +#~ msgid "ZX Spectrum (beeper only, QuadTone engine)" +#~ msgstr "ZX Spectrum (tylko brzęczyk, silnik QuadTone)" + +#~ msgid "" +#~ "chips/systems which do not exist in reality or were made just several " +#~ "years ago." +#~ msgstr "" +#~ "Uklady/systemy, które nie wystepuja w fizycznej postaci lub zostały " +#~ "wyprodukowane zaledwie kilka lat temu." + +#~ msgid "DefleMask-compatible" +#~ msgstr "Zgodne z DefleMaskiem" + +#~ msgid "" +#~ "these configurations are compatible with DefleMask.\n" +#~ "select this if you need to save as .dmf or work with that program." +#~ msgstr "" +#~ "Te presety są kompatybilne z DefleMask. Wybierz je, jeśli chcesz " +#~ "wyeksportować moduł do .dmf lub pracować z tym programem." + +#~ msgid "Arcade (YM2151 and SegaPCM)" +#~ msgstr "Arcade (YM2151 i SegaPCM)" + +#~ msgid "Neo Geo CD (extended channel 2)" +#~ msgstr "Neo Geo CD z rozszerzonym kanałem 2" + +#~ msgid "Register View###Register View" +#~ msgstr "Podglad rejestrów###Register View" + +#~ msgid "Sample Editor###Sample Editor" +#~ msgstr "Edytor sampli###Sample Editor" + +#~ msgid "%d: %s" +#~ msgstr "%d: %s" + +#~ msgid "QSound: maximum sample length is 65535" +#~ msgstr "QSound: maksymalna długość sampla: 65535" + +#~ msgid "NES: loop start must be a multiple of 512 (try with %d)" +#~ msgstr "NES: początek pętli musi być wielokrotnością 512 (spróbuj %d)" + +#~ msgid "Hz" +#~ msgstr "Hz" + +#~ msgid "Mode" +#~ msgstr "Tryb" + +#~ msgid "%dms" +#~ msgstr "%d ms" + +#~ msgid "%d samples" +#~ msgid_plural "%d samples" +#~ msgstr[0] "%d sampel" +#~ msgstr[1] "%d sample" +#~ msgstr[2] "%d sampli" + +#~ msgid "%d bytes" +#~ msgid_plural "%d bytes" +#~ msgstr[0] "%d bajt" +#~ msgstr[1] "%d bajty" +#~ msgstr[2] "%d bajtów" + +#~ msgid "%.2fHz" +#~ msgstr "%.2f Hz" + +#~ msgid "Song Info###Song Information" +#~ msgstr "O utworze###Song Information" + +#~ msgid "Song Comments###Song Comments" +#~ msgstr "Komentarze do utworu###Song Comments" + +#~ msgid "Speed###Speed" +#~ msgstr "Prędkość###Speed" + +#~ msgid "Statistics###Statistics" +#~ msgstr "Statystyki###Statistics" + +#~ msgid "Subsongs###Subsongs" +#~ msgstr "Podutwory###Subsongs" + +#~ msgid "Capacitor (attack/decay)##EM0" +#~ msgstr "Kondensator (narastanie/opadanie)##EM00" + +#~ msgid "External (volume macro)##EM0" +#~ msgstr "Zewnętrzna (makro głośności)##EM01" + +#~ msgid "Capacitor (attack/decay)##EM1" +#~ msgstr "Kondensator (narastanie/opadanie)##EM10" + +#~ msgid "External (volume macro)##EM1" +#~ msgstr "Zewnętrzna (makro głośności)##EM11" + +#~ msgid "Downmix chip output to mono" +#~ msgstr "Miksuj dźwięk układu do mono" + +#~ msgid "Reserved blocks for wavetables:" +#~ msgstr "Zarezerwowane bloki dla tablic fal:" + +#~ msgid "" +#~ "Reserve this many blocks 256 bytes each in sample memory.\n" +#~ "Each block holds one wavetable (is used for one wavetable channel),\n" +#~ "so reserve as many as you need." +#~ msgstr "" +#~ "Zarezerwuj tyle bloków, każdy po 256 bajtów, w pamięci na sample.\n" +#~ "W każdym bloku znajduje się jedna tablica fal (jest ona używana dla " +#~ "jednego kanału w trybie tablic fal),\n" +#~ "więc zarezerwuj ich tyle, ile potrzebujesz." + +#~ msgid "1MB" +#~ msgstr "1 MB" + +#~ msgid "256KB" +#~ msgstr "256 kB" + +#~ msgid "Chip Manager###Chip Manager" +#~ msgstr "Menedżer układów###Chip Manager" + +#~ msgid "cannot duplicate chip! (" +#~ msgstr "nie udało się sklonować układu!" + +#~ msgid "ZXS Beeper" +#~ msgstr "ZXS (brzęczyk)" + +#~ msgid "Volume Meter###Volume Meter" +#~ msgstr "Miernik glośności###Volume Meter" + +#~ msgid "Wavetable Editor###Wavetable Editor" +#~ msgstr "Ebytor tablic fal###Wavetable Editor" + +#~ msgid "export .dmw..." +#~ msgstr "eksportuj do .dmw..." + +#~ msgid "export raw..." +#~ msgstr "eksportuj dane surowe..." + +#~ msgid "" +#~ "use a width of:\n" +#~ "- any on Amiga/N163\n" +#~ "- 32 on Game Boy, PC Engine, SCC, Konami Bubble System, Namco WSG, " +#~ "Virtual Boy and WonderSwan\n" +#~ "- 64 on FDS\n" +#~ "- 128 on X1-010\n" +#~ "- 256 for ES5503\n" +#~ "any other widths will be scaled during playback." +#~ msgstr "" +#~ "stosuj długości fal:\n" +#~ "- dowolna dla Amigi/N163\n" +#~ "- 32 dla Game Boy, PC Engine, SCC, Konami Bubble System, Namco WSG, " +#~ "Virtual Boy i WonderSwan\n" +#~ "- 64 dla FDS\n" +#~ "- 128 dla X1-010\n" +#~ "- 256 dla ES5503\n" +#~ "wszystkie inne długości będą przeskalowane do właściwych podczas " +#~ "odtwarzania." + +#~ msgid "" +#~ "use a height of:\n" +#~ "- 16 for Game Boy, WonderSwan, Namco WSG, Konami Bubble System, X1-010 " +#~ "Envelope shape and N163\n" +#~ "- 32 for PC Engine\n" +#~ "- 64 for FDS and Virtual Boy\n" +#~ "- 256 for X1-010, SCC and ES5503\n" +#~ "any other heights will be scaled during playback." +#~ msgstr "" +#~ "stosuj wysokości fal:\n" +#~ "- 16 dla Game Boy, WonderSwan, Namco WSG, Konami Bubble System, kształtu " +#~ "obwiedni X1-010 i N163\n" +#~ "- 32 dla PC Engine\n" +#~ "- 64 dla FDS и Virtual Boy\n" +#~ "- 256 dla X1-010, SCC и ES5503\n" +#~ "szystkie inne wyskokości będą przeskalowane do właściwych podczas " +#~ "odtwarzania." + +#~ msgid "Oscilloscope (X-Y)###Oscilloscope (X-Y)" +#~ msgstr "Oscyloskop (X-Y)###Oscilloscope (X-Y)" + +#~ msgid "Orders###Orders" +#~ msgstr "Matryca wzorców###Orders" + +#~ msgid "Channels###Channels" +#~ msgstr "Kanały###Channels" + +#~ msgid "Oscilloscope (per-channel)###Oscilloscope (per-channel)" +#~ msgstr "Oscyloskop (na poscz. kanał)###Oscilloscope (per-channel)" + +#~ msgid "Instruments###Instruments" +#~ msgstr "Instrumenty###Instruments" + +#~ msgid "Wavetables###Wavetables" +#~ msgstr "Tablice fal###Wavetables" + +#~ msgid "Debug###Debug" +#~ msgstr "Menu Debugowania###Debug" + +#~ msgid "Samples###Samples" +#~ msgstr "Sample###Samples" + +#~ msgid "MobileEdit###MobileEdit" +#~ msgstr "Mobilne menu edycji###MobileEdit" + +#~ msgid "Log Viewer###Log Viewer" +#~ msgstr "Podgląd logów###Log Viewer" + +#~ msgid "Mixer###Mixer" +#~ msgstr "Mikser###Mixer" + +#~ msgid "OrderSel###OrderSel" +#~ msgstr "Wybór matr. wzorców###OrderSel" + +#~ msgid "Spoiler###Spoiler" +#~ msgstr "Spoiler###Spoiler" + +#~ msgid "exponential" +#~ msgstr "wykładnicze" + +#~ msgid "direct" +#~ msgstr "bezpośrednie" + +#~ msgid "HP/K2, HP/K2" +#~ msgstr "HP/K2, HP/K2" + +#~ msgid "HP/K2, LP/K1" +#~ msgstr "HP/K2, LP/K1" + +#~ msgid "LP/K2, LP/K2" +#~ msgstr "LP/K2, LP/K2" + +#~ msgid "LP/K2, LP/K1" +#~ msgstr "LP/K2, LP/K1" + +#~ msgid "KIOCSOUND on /dev/tty" +#~ msgstr "KIOCSOUND na /dev/tty1" + +#~ msgid "Settings###Settings" +#~ msgstr "Ustawienia###Settings" + +#~ msgid "Software" +#~ msgstr "Programowa" + +#~ msgid "" +#~ "the following values are common (in red, green, blue, alpha order):\n" +#~ "- 24 bits: 8, 8, 8, 0\n" +#~ "- 16 bits: 5, 6, 5, 0\n" +#~ "- 32 bits (with alpha): 8, 8, 8, 8\n" +#~ "- 30 bits (deep): 10, 10, 10, " +#~ msgstr "" +#~ "powszechne są następujące wartości (w kolejności czerwony, zielony, " +#~ "niebieski, przeźroczysty):\n" +#~ "- 24 bity: 8, 8, 8, 0\n" +#~ "- 16 bitów: 5, 6, 5, 0\n" +#~ "- 32 bity (z przeźroczystością): 8, 8, 8, 8\n" +#~ "- 30 bitów (głęboka kwantyzacja): 10, 10, 10, 0" + +#~ msgid "No##pol" +#~ msgstr "Nie##pol0" + +#~ msgid "Only if already playing##pol" +#~ msgstr "Tylko jeśli już jest odtwarzany##pol1" + +#~ msgid "Yes##pol" +#~ msgstr "Tak##pol0" + +#~ msgid "Set to these values on start-up:##fot" +#~ msgstr "Ustaw te wartości podczas uruchamiania:##fot0" + +#~ msgid "Remember last values##fot" +#~ msgstr "Zapamiętuj ostatnie wartości##fot1" + +#~ msgid "Display system preset selector##NSB" +#~ msgstr "Wyświetlaj okno wyboru domyślnego systemu##NSB0" + +#~ msgid "Start with initial system##NSB" +#~ msgstr "Rozpocznij od systemu domyślnego##NSB1" + +#~ msgid "GUI language" +#~ msgstr "Język GUI" + +#~ msgid "Translate channel names in pattern header" +#~ msgstr "Tłumacz nazwy kanałów w nagłówku wzorca" + +#~ msgid "Translate channel names in channel oscilloscope label" +#~ msgstr "Tłumacz nazwy kanałów na oscyloskopie" + +#~ msgid "Translate short channel names (in orders and other places)" +#~ msgstr "Tłumacz nazwy kanałów (w matrycy wzorców i innych miejscach)" + +#~ msgid "What?" +#~ msgstr "Co?" + +#~ msgid "want: %d samples @ %.0fHz (%d %s)" +#~ msgstr "potrzeba: %d sampli @ %.0f Hz (%d %s)" + +#~ msgid "got: %d samples @ %.0fHz (%d %s)" +#~ msgstr "otrzymano: %d sampli @ %.0f Hz (%d %s)" + +#~ msgid "Listen to MIDI clock" +#~ msgstr "Monitoruj częst. zegara MIDI" + +#~ msgid "Listen to MIDI time code" +#~ msgstr "Monitoruj kod czasowy MIDI" + +#~ msgid "CC of upper nibble##valueCC" +#~ msgstr "CC wyższego półbajta##valueCC1" + +#~ msgid "MSB CC##valueCC" +#~ msgstr "MSB CC##valueCC1" + +#~ msgid "CC of lower nibble##valueCC" +#~ msgstr "CC niższego półbajta##valueCC2" + +#~ msgid "LSB CC##valueCC" +#~ msgstr "LSB CC##valueCC2" + +#~ msgid "Sample ROMs:" +#~ msgstr "Obrazy ROM sampli:" + +#~ msgid "OPL4 YRW801 path" +#~ msgstr "Sćieżka do OPL4 YRW801" + +#~ msgid "MultiPCM TG100 path" +#~ msgstr "Sćieżka do OPL4 MultiPCM TG100" + +#~ msgid "MultiPCM MU5 path" +#~ msgstr "Sćieżka do OPL4 MultiPCM MU5" + +#~ msgid "Local wavetables list" +#~ msgstr "Lista lokalnych tablic fal" + +#~ msgid "Classic##ecl" +#~ msgstr "Klasyczny##ecl0" + +#~ msgid "Compact##ecl" +#~ msgstr "Kompatowy##ecl1" + +#~ msgid "Compact (vertical)##ecl" +#~ msgstr "Kompaktowy (pionowy)##ecl2" + +#~ msgid "Split##ecl" +#~ msgstr "Podzielony na dwa okna##ecl3" + +#~ msgid "Top##obp" +#~ msgstr "Na górze##obp0" + +#~ msgid "Left##obp" +#~ msgstr "Z lewej##obp1" + +#~ msgid "Right##obp" +#~ msgstr "Z prawej##obp2" + +#~ msgid "Never##npb" +#~ msgstr "Nigdy##npb0" + +#~ msgid "When cursor is in Note column##npb" +#~ msgstr "Gdy kursor znajduje się w kolumnie nuty##npb1" + +#~ msgid "When cursor is in Note column or not in edit mode##npb" +#~ msgstr "" +#~ "Gdy kursor znajduje się w kolumnie nut lub tryb edycji nie jest " +#~ "włączony##npb2" + +#~ msgid "Always##npb" +#~ msgstr "Zawsze##npb3" + +#~ msgid "No##dms" +#~ msgstr "Nie##dms0" + +#~ msgid "Yes##dms" +#~ msgstr "Tak##dms1" + +#~ msgid "Yes (while holding Ctrl only)##dms" +#~ msgstr "Tak (tylko przy wciśniętym klawiuszu Ctrl)##dms2" + +#~ msgid "Right-click or double-click" +#~ msgstr "PPM alko podwójne kliknięcie" + +#~ msgid "Right-click" +#~ msgstr "PPM" + +#~ msgid "Double-click" +#~ msgstr "Podwójne kliknięcie" + +#~ msgid "Move down##eicb" +#~ msgstr "Przesuń w dół##eicb0" + +#~ msgid "Move to effect value (otherwise move down)##eicb" +#~ msgstr "" +#~ "Przejdź do parametru efektu (w przeciwnym razie przejdź w dół)##eicb1" + +#~ msgid "Move to effect value/next effect and wrap around##eicb" +#~ msgstr "" +#~ "Przeskocz do parametru efektu/następnego efektu i przeskocz do początku " +#~ "linii##eicb2" + +#~ msgid "No##wrapH" +#~ msgstr "Nie##wrapH0" + +#~ msgid "Yes##wrapH" +#~ msgstr "Tak##wrapH1" + +#~ msgid "Yes, and move to next/prev row##wrapH" +#~ msgstr "Tak, i przejdź do następnego wiersza##wrapH2" + +#~ msgid "No##wrapV" +#~ msgstr "Nie##wrapV0" + +#~ msgid "Yes##wrapV" +#~ msgstr "Tak##wrapV1" + +#~ msgid "Yes, and move to next/prev pattern##wrapV" +#~ msgstr "Tak, i przejdź do następnego/poprzedniego wzorca##wrapV2" + +#~ msgid "Yes, and move to next/prev pattern (wrap around)##wrapV" +#~ msgstr "" +#~ "Tak, i przejdź do następnego/poprzedniego wzorca (z przeniesieniem na " +#~ "początek/koniec).##wrapV2" + +#~ msgid "Move by one##cmk" +#~ msgstr "Przesuwaj o jeden##cmk0" + +#~ msgid "Move by Edit Step##cmk" +#~ msgstr "Przesuń o krok edycji##cmk1" + +#~ msgid "No##pscroll" +#~ msgstr "Nie##pscroll0" + +#~ msgid "Yes##pscroll" +#~ msgstr "Tak##pscroll1" + +#~ msgid "Yes, and wrap around song##pscroll" +#~ msgstr "Tak, i przenieś go na początek/koniec utworu.##pscroll2" + +#~ msgid "No##csw" +#~ msgstr "Nie##csw0" + +#~ msgid "Yes##csw" +#~ msgstr "Tak##csw1" + +#~ msgid "Inverted##csw" +#~ msgstr "Tak, ale w przeciwnym kierunku##csw2" + +#~ msgid "One##cws" +#~ msgstr "O jeden##cws0" + +#~ msgid "Edit Step##cws" +#~ msgstr "O krok edycji##cws1" + +#~ msgid "Off (soft)##fh" +#~ msgstr "Wył. (słabe)##fh0" + +#~ msgid "Slight##fh" +#~ msgstr "Lekkie##fh1" + +#~ msgid "Normal##fh" +#~ msgstr "Normalne##fh2" + +#~ msgid "Full (hard)##fh" +#~ msgstr "Pełne##fh3" + +#~ msgid "Disable##fah" +#~ msgstr "Wyłącz##fah0" + +#~ msgid "Enable##fah" +#~ msgstr "Włącz##fah1" + +#~ msgid "Force##fah" +#~ msgstr "Wymuś##fah2" + +#~ msgid "Cursor details" +#~ msgstr "Informacje o wybranym elemencie" + +#~ msgid "File path" +#~ msgstr "Ścieżka do pliku" + +#~ msgid "Cursor details or file path" +#~ msgstr "Informacje o wybranym elemencie czy ścieżce pliku" + +#~ msgid "Nothing" +#~ msgstr "Brak" + +#~ msgid "Sub-menus in File menu##eol" +#~ msgstr "Menu podrzędne w menu \"Plik\"##eol0" + +#~ msgid "Modal window with tabs##eol" +#~ msgstr "Modalne okno z zakładkami##eol1" + +#~ msgid "Modal windows with options in File menu##eol" +#~ msgstr "Okno modalne z ustawieniami w menu \"Plik\"" + +#~ msgid "Classic##CHS" +#~ msgstr "Klasyczny##CHS0" + +#~ msgid "Line##CHS" +#~ msgstr "Linia##CHS1" + +#~ msgid "Round##CHS" +#~ msgstr "Zaokrąglony##CHS2" + +#~ msgid "Split button##CHS" +#~ msgstr "Oddzielny przycik wyciszenia##CHS3" + +#~ msgid "Square border##CHS" +#~ msgstr "Prostokątne krawędzie##CHS4" + +#~ msgid "Round border##CHS" +#~ msgstr "Zaokrąglone krawędzie##CHS5" + +#~ msgid "Non##CHV" +#~ msgstr "Brak##CHV0" + +#~ msgid "Simple##CHV" +#~ msgstr "Prosty##CHV1" + +#~ msgid "Stereo##CHV" +#~ msgstr "Stereo##CHV2" + +#~ msgid "Real##CHV" +#~ msgstr "Rzeczywisty##CHV3" + +#~ msgid "Real (stereo)##CHV" +#~ msgstr "Rzeczywisty (stereo)##CHV4" + +#~ msgid "Off##CHF" +#~ msgstr "Wył.##CHF0" + +#~ msgid "Note##CHF" +#~ msgstr "Nuta##CHF1" + +#~ msgid "Volume##CHF" +#~ msgstr "Głośność##CHF2" + +#~ msgid "Active##CHF" +#~ msgstr "Przy aktywnym kanale##CHF3" + +#~ msgid "Regular##CHFont" +#~ msgstr "Zwykła#CHFont0" + +#~ msgid "Monospace##CHFont" +#~ msgstr "Monospace##CHFont1" + +#~ msgid "Single##CHC" +#~ msgstr "Jednolite##CHC0" + +#~ msgid "Channel type##CHC" +#~ msgstr "Zgodne z typem kanału##CHC1" + +#~ msgid "Instrument type##CHC" +#~ msgstr "Zgodne z typem instrumentu##CHC2" + +#~ msgid "Single##CTC" +#~ msgstr "Jednolite##CTC0" + +#~ msgid "Channel type##CTC" +#~ msgstr "Zgodnie z typem kanału##CTC1" + +#~ msgid "Instrument type##CTC" +#~ msgstr "Zgodnie z typem instrumentu##CTC2" + +#~ msgid "None##iis" +#~ msgstr "Nie pokazuj##iis0" + +#~ msgid "Graphical icons##iis" +#~ msgstr "Graficzne ikonki##iis1" + +#~ msgid "Letter icons##iis" +#~ msgstr "Ikony liter##iis2" + +#~ msgid "Unified##mel" +#~ msgstr "Połączony##mel0" + +#~ msgid "Grid##mel" +#~ msgstr "Siatka##mel2" + +#~ msgid "Single (with list)##mel" +#~ msgstr "Pojedyncze okno (z listą)##mel3" + +#~ msgid "Friendly##fmn" +#~ msgstr "Przyjazne##fmn0" + +#~ msgid "Technical##fmn" +#~ msgstr "Techniczne##fmn1" + +#~ msgid "Technical (alternate)##fmn" +#~ msgstr "Techniczne (alternatywne)##fmn2" + +#~ msgid "Modern##fml" +#~ msgstr "Nowoczesny##fml0" + +#~ msgid "Compact (2x2, classic)##fml" +#~ msgstr "Kompaktowy (2x2, klasyczny)##fml1" + +#~ msgid "Compact (1x4)##fml" +#~ msgstr "Kompaktowy (1x4)##fml2" + +#~ msgid "Compact (4x1)##fml" +#~ msgstr "Kompaktowy (4x1)##fml3" + +#~ msgid "Alternate (2x2)##fml" +#~ msgstr "Alternatywny (2x2)##fml4" + +#~ msgid "Alternate (1x4)##fml" +#~ msgstr "Alternatywny (1x4)##fml5" + +#~ msgid "Alternate (4x1)##fml" +#~ msgstr "Alternatywny (4x1)##fml6" + +#~ msgid "Between Decay and Sustain Rate" +#~ msgstr "Między parametrami opadania i zwolnienia" + +#~ msgid "After Release Rate" +#~ msgstr "Po parametrze zwolnienia" + +#~ msgid "Bytes##MUU" +#~ msgstr "Bajty##MUU0" + +#~ msgid "Kilobytes##MUU" +#~ msgstr "Kilobajty##MUU1" + +#~ msgid "Misc" +#~ msgstr "Inne" + +#~ msgid "Wrap text" +#~ msgstr "Zawijaj wiersze" + +#~ msgid "Wrap text in song/subsong comments window." +#~ msgstr "Zawijaj wiersz w oknach komentarzy do utworu/podutworu" + +#~ msgid "Frame shading in text windows" +#~ msgstr "Cieniowanie ramek w oknach tekstowych" + +#~ msgid "" +#~ "Apply frame shading to the multiline text fields\n" +#~ "such as song/subsong info/comments." +#~ msgstr "Zastosuj gradient w oknie informacji o utworze/komentarzach." + +#~ msgid "Show chip info in chip manager" +#~ msgstr "Pokazuj informacje o układzie w menedżerze ukłądów" + +#~ msgid "" +#~ "Display tooltip in chip manager when hovering over the chip. Tooltip " +#~ "shows chip name and description." +#~ msgstr "" +#~ "Wyświetla podpowiedź po najechaniu kursorem na układ. Podpowiedź " +#~ "wyświetla nazwę i opis układu." + +#~ msgid "Button##CC_GUI_COLOR_BUTTON" +#~ msgstr "Przycisk##CC_GUI_COLOR_BUTTON" + +#~ msgid "Button (hovered)##CC_GUI_COLOR_BUTTON_HOVER" +#~ msgstr "Przycisk (zazn. kursorem)##CC_GUI_COLOR_BUTTON_HOVER" + +#~ msgid "Button (active)##CC_GUI_COLOR_BUTTON_ACTIVE" +#~ msgstr "Przycisk (aktywny)##CC_GUI_COLOR_BUTTON_ACTIVE" + +#~ msgid "Tab##CC_GUI_COLOR_TAB" +#~ msgstr "Zakładka##CC_GUI_COLOR_TAB" + +#~ msgid "Tab (hovered)##CC_GUI_COLOR_TAB_HOVER" +#~ msgstr "Zakładka (zazn. kursorem)##CC_GUI_COLOR_TAB_HOVER" + +#~ msgid "Tab (active)##CC_GUI_COLOR_TAB_ACTIVE" +#~ msgstr "Zakładka (aktywna)##CC_GUI_COLOR_TAB_ACTIVE" + +#~ msgid "Tab (unfocused)##CC_GUI_COLOR_TAB_UNFOCUSED" +#~ msgstr "Zakładka (nieskupiona)##CC_GUI_COLOR_TAB_UNFOCUSED" + +#~ msgid "Tab (unfocused and active)##CC_GUI_COLOR_TAB_UNFOCUSED_ACTIVE" +#~ msgstr "Zakładka (nieskupiona, aktywna)##CC_GUI_COLOR_TAB_UNFOCUSED_ACTIVE" + +#~ msgid "ImGui header##CC_GUI_COLOR_IMGUI_HEADER" +#~ msgstr "Nagłówek ImGui##CC_GUI_COLOR_IMGUI_HEADER" + +#~ msgid "ImGui header (hovered)##CC_GUI_COLOR_IMGUI_HEADER_HOVER" +#~ msgstr "Nagłówek ImGui (zazn. kursorem)##CC_GUI_COLOR_IMGUI_HEADER_HOVER" + +#~ msgid "ImGui header (active)##CC_GUI_COLOR_IMGUI_HEADER_ACTIVE" +#~ msgstr "Nagłówek ImGui (aktywny)##CC_GUI_COLOR_IMGUI_HEADER_ACTIVE" + +#~ msgid "Resize grip##CC_GUI_COLOR_RESIZE_GRIP" +#~ msgstr "Uchwyt zmiany rozmiaru##CC_GUI_COLOR_RESIZE_GRIP" + +#~ msgid "Resize grip (hovered)##CC_GUI_COLOR_RESIZE_GRIP_HOVER" +#~ msgstr "" +#~ "Uchwyt zmiany rozmiaru (zazn. kursorem)##CC_GUI_COLOR_RESIZE_GRIP_HOVER" + +#~ msgid "Resize grip (active)##CC_GUI_COLOR_RESIZE_GRIP_ACTIVE" +#~ msgstr "Uchwyt zmiany rozmiaru (aktywny)##CC_GUI_COLOR_RESIZE_GRIP_ACTIVE" + +#~ msgid "Widget background##CC_GUI_COLOR_WIDGET_BACKGROUND" +#~ msgstr "Tło widżetu##CC_GUI_COLOR_WIDGET_BACKGROUND" + +#~ msgid "Widget background (hovered)##CC_GUI_COLOR_WIDGET_BACKGROUND_HOVER" +#~ msgstr "Tło widżetu (zazn. kursorem)##CC_GUI_COLOR_WIDGET_BACKGROUND_HOVER" + +#~ msgid "Widget background (active)##CC_GUI_COLOR_WIDGET_BACKGROUND_ACTIVE" +#~ msgstr "Tło widżetu (aktywne)##CC_GUI_COLOR_WIDGET_BACKGROUND_ACTIVE" + +#~ msgid "Slider grab##CC_GUI_COLOR_SLIDER_GRAB" +#~ msgstr "Chwyt paska przewijania##CC_GUI_COLOR_SLIDER_GRAB" + +#~ msgid "Slider grab (active)##CC_GUI_COLOR_SLIDER_GRAB_ACTIVE" +#~ msgstr "Chwyt paska przewijania (aktywny)##CC_GUI_COLOR_SLIDER_GRAB_ACTIVE" + +#~ msgid "Title background (active)##CC_GUI_COLOR_TITLE_BACKGROUND_ACTIVE" +#~ msgstr "" +#~ "Tło paska tytułowego (aktywne)##CC_GUI_COLOR_TITLE_BACKGROUND_ACTIVE" + +#~ msgid "Checkbox/radio button mark##CC_GUI_COLOR_CHECK_MARK" +#~ msgstr "Oznaczenie pola wyboru i przycisku opcji##CC_GUI_COLOR_CHECK_MARK" + +#~ msgid "Text selection##CC_GUI_COLOR_TEXT_SELECTION" +#~ msgstr "Zaznaczenie tekstu##CC_GUI_COLOR_TEXT_SELECTION" + +#~ msgid "Line plot##CC_GUI_COLOR_PLOT_LINES" +#~ msgstr "Wykres liniowy##CC_GUI_COLOR_PLOT_LINES" + +#~ msgid "Line plot (hovered)##CC_GUI_COLOR_PLOT_LINES_HOVER" +#~ msgstr "Wykres liniowy (zaznaczony)##CC_GUI_COLOR_PLOT_LINES_HOVER" + +#~ msgid "Histogram plot##CC_GUI_COLOR_PLOT_HISTOGRAM" +#~ msgstr "Wykres słupkowy##CC_GUI_COLOR_PLOT_HISTOGRAM" + +#~ msgid "Histogram plot (hovered)##CC_GUI_COLOR_PLOT_HISTOGRAM_HOVER" +#~ msgstr "Wykres słupkowy (zaznaczony)##CC_GUI_COLOR_PLOT_HISTOGRAM_HOVER" + +#~ msgid "Table row (even)##CC_GUI_COLOR_TABLE_ROW_EVEN" +#~ msgstr "Wiersz tabeli (parzysty)##CC_GUI_COLOR_TABLE_ROW_EVEN" + +#~ msgid "Table row (odd)##CC_GUI_COLOR_TABLE_ROW_ODD" +#~ msgstr "Wiersz tabeli (nieparzysty)##CC_GUI_COLOR_TABLE_ROW_ODD" + +#~ msgid "Background##CC_GUI_COLOR_BACKGROUND" +#~ msgstr "Tło##CC_GUI_COLOR_BACKGROUND" + +#~ msgid "Window background##CC_GUI_COLOR_FRAME_BACKGROUND" +#~ msgstr "Tło okna##CC_GUI_COLOR_FRAME_BACKGROUND" + +#~ msgid "Sub-window background##CC_GUI_COLOR_FRAME_BACKGROUND_CHILD" +#~ msgstr "Tło podokna##CC_GUI_COLOR_FRAME_BACKGROUND_CHILD" + +#~ msgid "Pop-up background##CC_GUI_COLOR_FRAME_BACKGROUND_POPUP" +#~ msgstr "Tło wyskakujących okien##CC_GUI_COLOR_FRAME_BACKGROUND_POPUP" + +#~ msgid "Modal backdrop##CC_GUI_COLOR_MODAL_BACKDROP" +#~ msgstr "" +#~ "Cieniowanie po pojawieniu się okna modalnego##CC_GUI_COLOR_MODAL_BACKDROP" + +#~ msgid "Header##CC_GUI_COLOR_HEADER" +#~ msgstr "Nagłówek##CC_GUI_COLOR_HEADER" + +#~ msgid "Text##CC_GUI_COLOR_TEXT" +#~ msgstr "Tekst##CC_GUI_COLOR_TEXT" + +#~ msgid "Text (disabled)##CC_GUI_COLOR_TEXT_DISABLED" +#~ msgstr "Tekst (wyłączony)##CC_GUI_COLOR_TEXT_DISABLED" + +#~ msgid "Title bar (inactive)##CC_GUI_COLOR_TITLE_INACTIVE" +#~ msgstr "Pasek tytułowy (nieaktywny)##CC_GUI_COLOR_TITLE_INACTIVE" + +#~ msgid "Title bar (collapsed)##CC_GUI_COLOR_TITLE_COLLAPSED" +#~ msgstr "Pasek tytułowy (zwinięty)##CC_GUI_COLOR_TITLE_COLLAPSED" + +#~ msgid "Menu bar##CC_GUI_COLOR_MENU_BAR" +#~ msgstr "Pasek menu##CC_GUI_COLOR_MENU_BAR" + +#~ msgid "Border##CC_GUI_COLOR_BORDER" +#~ msgstr "Krawędź##CC_GUI_COLOR_BORDER" + +#~ msgid "Border shadow##CC_GUI_COLOR_BORDER_SHADOW" +#~ msgstr "Cień krawędzi##CC_GUI_COLOR_BORDER_SHADOW" + +#~ msgid "Scroll bar##CC_GUI_COLOR_SCROLL" +#~ msgstr "Pasek przewijania##CC_GUI_COLOR_SCROLL" + +#~ msgid "Scroll bar (hovered)##CC_GUI_COLOR_SCROLL_HOVER" +#~ msgstr "Pasek przewijania (zazn. kursorem)##CC_GUI_COLOR_SCROLL_HOVER" + +#~ msgid "Scroll bar (clicked)##CC_GUI_COLOR_SCROLL_ACTIVE" +#~ msgstr "Pasek przewijania (wciśnięty)##CC_GUI_COLOR_SCROLL_ACTIVE" + +#~ msgid "Scroll bar background##CC_GUI_COLOR_SCROLL_BACKGROUND" +#~ msgstr "Tło paska przewijania##CC_GUI_COLOR_SCROLL_BACKGROUND" + +#~ msgid "Separator##CC_GUI_COLOR_SEPARATOR" +#~ msgstr "Separator ##CC_GUI_COLOR_SEPARATOR" + +#~ msgid "Separator (hover)##CC_GUI_COLOR_SEPARATOR_HOVER" +#~ msgstr "Separator (zaznaczony)##CC_GUI_COLOR_SEPARATOR_HOVER" + +#~ msgid "Separator (active)##CC_GUI_COLOR_SEPARATOR_ACTIVE" +#~ msgstr "Separator (aktywny)##CC_GUI_COLOR_SEPARATOR_ACTIVE" + +#~ msgid "Docking preview##CC_GUI_COLOR_DOCKING_PREVIEW" +#~ msgstr "Podgląd dokowania okien##CC_GUI_COLOR_DOCKING_PREVIEW" + +#~ msgid "Docking empty##CC_GUI_COLOR_DOCKING_EMPTY" +#~ msgstr "Puste pole dokowania okien##CC_GUI_COLOR_DOCKING_EMPTY" + +#~ msgid "Table header##CC_GUI_COLOR_TABLE_HEADER" +#~ msgstr "Nagłówek tabeli##CC_GUI_COLOR_TABLE_HEADER" + +#~ msgid "Table border (hard)##CC_GUI_COLOR_TABLE_BORDER_HARD" +#~ msgstr "Krawędź tabeli (twarda)##CC_GUI_COLOR_TABLE_BORDER_HARD" + +#~ msgid "Table border (soft)##CC_GUI_COLOR_TABLE_BORDER_SOFT" +#~ msgstr "Krawędź tabeli (miękka)##CC_GUI_COLOR_TABLE_BORDER_SOFT" + +#~ msgid "Drag and drop target##CC_GUI_COLOR_DRAG_DROP_TARGET" +#~ msgstr "Cel upuszczania##CC_GUI_COLOR_DRAG_DROP_TARGET" + +#~ msgid "Window switcher (highlight)##CC_GUI_COLOR_NAV_WIN_HIGHLIGHT" +#~ msgstr "Przełącznik okien (podświetlony)##CC_GUI_COLOR_NAV_WIN_HIGHLIGHT" + +#~ msgid "Window switcher backdrop##CC_GUI_COLOR_NAV_WIN_BACKDROP" +#~ msgstr "" +#~ "Przełącznik okien (kolor cieniowania reszty " +#~ "interfejsu)##CC_GUI_COLOR_NAV_WIN_BACKDROP" + +#~ msgid "Toggle on##CC_GUI_COLOR_TOGGLE_ON" +#~ msgstr "Włącznik##CC_GUI_COLOR_TOGGLE_ON" + +#~ msgid "Toggle off##CC_GUI_COLOR_TOGGLE_OFF" +#~ msgstr "Wyłącznik##CC_GUI_COLOR_TOGGLE_OFF" + +#~ msgid "Playback status##CC_GUI_COLOR_PLAYBACK_STAT" +#~ msgstr "Status odtwarzania##CC_GUI_COLOR_PLAYBACK_STAT" + +#~ msgid "Destructive hint##CC_GUI_COLOR_DESTRUCTIVE" +#~ msgstr "Wskazówka usuwania##CC_GUI_COLOR_DESTRUCTIVE" + +#~ msgid "Warning hint##CC_GUI_COLOR_WARNING" +#~ msgstr "Wskazówka ostrzeżenia##CC_GUI_COLOR_WARNING" + +#~ msgid "Error hint##CC_GUI_COLOR_ERROR" +#~ msgstr "Wskazówka dot. błędu##CC_GUI_COLOR_ERROR" + +#~ msgid "Directory##CC_GUI_COLOR_FILE_DIR" +#~ msgstr "Folder##CC_GUI_COLOR_FILE_DIR" + +#~ msgid "Song (native)##CC_GUI_COLOR_FILE_SONG_NATIVE" +#~ msgstr "Utwór (natywny)##CC_GUI_COLOR_FILE_SONG_NATIVE" + +#~ msgid "Song (import)##CC_GUI_COLOR_FILE_SONG_IMPORT" +#~ msgstr "Utwór (importowany)##CC_GUI_COLOR_FILE_SONG_IMPORT" + +#~ msgid "Instrument##CC_GUI_COLOR_FILE_INSTR" +#~ msgstr "Instrument##CC_GUI_COLOR_FILE_INSTR" + +#~ msgid "Audio##CC_GUI_COLOR_FILE_AUDIO" +#~ msgstr "Audio##CC_GUI_COLOR_FILE_AUDIO" + +#~ msgid "Wavetable##CC_GUI_COLOR_FILE_WAVE" +#~ msgstr "Tablica fal##CC_GUI_COLOR_FILE_WAVE" + +#~ msgid "VGM##CC_GUI_COLOR_FILE_VGM" +#~ msgstr "VGM##CC_GUI_COLOR_FILE_VGM" + +#~ msgid "ZSM##CC_GUI_COLOR_FILE_ZSM" +#~ msgstr "ZSM##CC_GUI_COLOR_FILE_ZSM" + +#~ msgid "Font##CC_GUI_COLOR_FILE_FONT" +#~ msgstr "Czcionka##CC_GUI_COLOR_FILE_FONT" + +#~ msgid "Other##CC_GUI_COLOR_FILE_OTHER" +#~ msgstr "Inne##CC_GUI_COLOR_FILE_OTHER" + +#~ msgid "Border##CC_GUI_COLOR_OSC_BORDER" +#~ msgstr "Krawędź oscyloskopu##CC_GUI_COLOR_OSC_BORDER" + +#~ msgid "Background (top-left)##CC_GUI_COLOR_OSC_BG" +#~ msgstr "Tło (lewy górny róg)##CC_GUI_COLOR_OSC_BG1" + +#~ msgid "Background (top-right)##CC_GUI_COLOR_OSC_BG" +#~ msgstr "Tło (prawy górny róg)##CC_GUI_COLOR_OSC_BG2" + +#~ msgid "Background (bottom-left)##CC_GUI_COLOR_OSC_BG" +#~ msgstr "Tło (lewy dolny róg)##CC_GUI_COLOR_OSC_BG3" + +#~ msgid "Background (bottom-right)##CC_GUI_COLOR_OSC_BG" +#~ msgstr "Tło (prawy dolny róg)##CC_GUI_COLOR_OSC_BG4" + +#~ msgid "Waveform##CC_GUI_COLOR_OSC_WAVE" +#~ msgstr "Kształt fali##CC_GUI_COLOR_OSC_WAVE" + +#~ msgid "Waveform (clip)##CC_GUI_COLOR_OSC_WAVE_PEAK" +#~ msgstr "Fala (poza skalą)##CC_GUI_COLOR_OSC_WAVE_PEAK" + +#~ msgid "Reference##CC_GUI_COLOR_OSC_REF" +#~ msgstr "Przykład##CC_GUI_COLOR_OSC_REF" + +#~ msgid "Guide##CC_GUI_COLOR_OSC_GUIDE" +#~ msgstr "Przewodnik##CC_GUI_COLOR_OSC_GUIDE" + +#~ msgid "Waveform (1)##CC_GUI_COLOR_OSC_WAVE_CH" +#~ msgstr "Kształt fali (1)##CC_GUI_COLOR_OSC_WAVE_CH0" + +#~ msgid "Waveform (2)##CC_GUI_COLOR_OSC_WAVE_CH" +#~ msgstr "Kształt fali (2)##CC_GUI_COLOR_OSC_WAVE_CH1" + +#~ msgid "Waveform (3)##CC_GUI_COLOR_OSC_WAVE_CH" +#~ msgstr "Kształt fali (3)##CC_GUI_COLOR_OSC_WAVE_CH2" + +#~ msgid "Waveform (4)##CC_GUI_COLOR_OSC_WAVE_CH" +#~ msgstr "Kształt fali (4)##CC_GUI_COLOR_OSC_WAVE_CH3" + +#~ msgid "Waveform (5)##CC_GUI_COLOR_OSC_WAVE_CH" +#~ msgstr "Kształt fali (5)##CC_GUI_COLOR_OSC_WAVE_CH4" + +#~ msgid "Waveform (6)##CC_GUI_COLOR_OSC_WAVE_CH" +#~ msgstr "Kształt fali (6)##CC_GUI_COLOR_OSC_WAVE_CH5" + +#~ msgid "Waveform (7)##CC_GUI_COLOR_OSC_WAVE_CH" +#~ msgstr "Kształt fali (7)##CC_GUI_COLOR_OSC_WAVE_CH6" + +#~ msgid "Waveform (8)##CC_GUI_COLOR_OSC_WAVE_CH" +#~ msgstr "Kształt fali (8)##CC_GUI_COLOR_OSC_WAVE_CH7" + +#~ msgid "Waveform (9)##CC_GUI_COLOR_OSC_WAVE_CH" +#~ msgstr "Kształt fali (9)##CC_GUI_COLOR_OSC_WAVE_CH8" + +#~ msgid "Waveform (10)##CC_GUI_COLOR_OSC_WAVE_CH" +#~ msgstr "Kształt fali (10)##CC_GUI_COLOR_OSC_WAVE_CH9" + +#~ msgid "Waveform (11)##CC_GUI_COLOR_OSC_WAVE_CH1" +#~ msgstr "Kształt fali (11)##CC_GUI_COLOR_OSC_WAVE_CH10" + +#~ msgid "Waveform (12)##CC_GUI_COLOR_OSC_WAVE_CH1" +#~ msgstr "Kształt fali (12)##CC_GUI_COLOR_OSC_WAVE_CH11" + +#~ msgid "Waveform (13)##CC_GUI_COLOR_OSC_WAVE_CH1" +#~ msgstr "Kształt fali (13)##CC_GUI_COLOR_OSC_WAVE_CH12" + +#~ msgid "Waveform (14)##CC_GUI_COLOR_OSC_WAVE_CH1" +#~ msgstr "Kształt fali (14)##CC_GUI_COLOR_OSC_WAVE_CH13" + +#~ msgid "Waveform (15)##CC_GUI_COLOR_OSC_WAVE_CH1" +#~ msgstr "Kształt fali (15)##CC_GUI_COLOR_OSC_WAVE_CH14" + +#~ msgid "Waveform (16)##CC_GUI_COLOR_OSC_WAVE_CH1" +#~ msgstr "Kształt fali (16)##CC_GUI_COLOR_OSC_WAVE_CH15" + +#~ msgid "Low##CC_GUI_COLOR_VOLMETER_LOW" +#~ msgstr "Niski poziom##CC_GUI_COLOR_VOLMETER_LOW" + +#~ msgid "High##CC_GUI_COLOR_VOLMETER_HIGH" +#~ msgstr "Wysoki poziom##CC_GUI_COLOR_VOLMETER_HIGH" + +#~ msgid "Clip##CC_GUI_COLOR_VOLMETER_PEAK" +#~ msgstr "Poza skalą##CC_GUI_COLOR_VOLMETER_PEAK" + +#~ msgid "Order number##CC_GUI_COLOR_ORDER_ROW_INDEX" +#~ msgstr "Numer wiersza matrycy wz.##CC_GUI_COLOR_ORDER_ROW_INDEX" + +#~ msgid "Playing order background##CC_GUI_COLOR_ORDER_ACTIVE" +#~ msgstr "Tło odtwarzaniego wiersza matrycy##CC_GUI_COLOR_ORDER_ACTIVE" + +#~ msgid "Song loop##CC_GUI_COLOR_SONG_LOOP" +#~ msgstr "Pętla piosenki##CC_GUI_COLOR_SONG_LOOP" + +#~ msgid "Selected order##CC_GUI_COLOR_ORDER_SELECTED" +#~ msgstr "Wybrany wiersz##CC_GUI_COLOR_ORDER_SELECTED" + +#~ msgid "Similar patterns##CC_GUI_COLOR_ORDER_SIMILAR" +#~ msgstr "Podobne wzorce##CC_GUI_COLOR_ORDER_SIMILAR" + +#~ msgid "Inactive patterns##CC_GUI_COLOR_ORDER_INACTIVE" +#~ msgstr "Nieaktywne wzorce##CC_GUI_COLOR_ORDER_INACTIVE" + +#~ msgid "Envelope##CC_GUI_COLOR_FM_ENVELOPE" +#~ msgstr "Obwiednia##CC_GUI_COLOR_FM_ENVELOPE" + +#~ msgid "Sustain guide##CC_GUI_COLOR_FM_ENVELOPE_SUS_GUIDE" +#~ msgstr "Wizualizacja podtrzymania##CC_GUI_COLOR_FM_ENVELOPE_SUS_GUIDE" + +#~ msgid "Release##CC_GUI_COLOR_FM_ENVELOPE_RELEASE" +#~ msgstr "Zwolnienie##CC_GUI_COLOR_FM_ENVELOPE_RELEASE" + +#~ msgid "Algorithm background##CC_GUI_COLOR_FM_ALG_BG" +#~ msgstr "Tło schematu algorytmu##CC_GUI_COLOR_FM_ALG_BG" + +#~ msgid "Algorithm lines##CC_GUI_COLOR_FM_ALG_LINE" +#~ msgstr "Linie schematu algorytmu##CC_GUI_COLOR_FM_ALG_LINE" + +#~ msgid "Modulator##CC_GUI_COLOR_FM_MOD" +#~ msgstr "Modulator##CC_GUI_COLOR_FM_MOD" + +#~ msgid "Carrier##CC_GUI_COLOR_FM_CAR" +#~ msgstr "Fala nośna##CC_GUI_COLOR_FM_CAR" + +#~ msgid "SSG-EG##CC_GUI_COLOR_FM_SSG" +#~ msgstr "SSG-EG##CC_GUI_COLOR_FM_SSG" + +#~ msgid "Waveform##CC_GUI_COLOR_FM_WAVE" +#~ msgstr "Kształt fali##CC_GUI_COLOR_FM_WAVE" + +#~ msgid "Mod. accent (primary)##CC_GUI_COLOR_FM_PRIMARY_MOD" +#~ msgstr "Odcień modulatora (główny)##CC_GUI_COLOR_FM_PRIMARY_MOD" + +#~ msgid "Mod. accent (secondary)##CC_GUI_COLOR_FM_SECONDARY_MOD" +#~ msgstr "Odcień modulatora (poboczny)##CC_GUI_COLOR_FM_SECONDARY_MOD" + +#~ msgid "Mod. border##CC_GUI_COLOR_FM_BORDER_MOD" +#~ msgstr "Krawędź modulatora##CC_GUI_COLOR_FM_BORDER_MOD" + +#~ msgid "Mod. border shadow##CC_GUI_COLOR_FM_BORDER_SHADOW_MOD" +#~ msgstr "Cień krawędzi modulatora##CC_GUI_COLOR_FM_BORDER_SHADOW_MOD" + +#~ msgid "Car. accent (primary)##CC_GUI_COLOR_FM_PRIMARY_CAR" +#~ msgstr "Odcień fali nośnej (główny)##CC_GUI_COLOR_FM_PRIMARY_CAR" + +#~ msgid "Car. accent (secondary)##CC_GUI_COLOR_FM_SECONDARY_CAR" +#~ msgstr "Odcień fali nośnej (poboczny)##CC_GUI_COLOR_FM_SECONDARY_CAR" + +#~ msgid "Car. border##CC_GUI_COLOR_FM_BORDER_CAR" +#~ msgstr "Krawędź fali nośnej##CC_GUI_COLOR_FM_BORDER_CAR" + +#~ msgid "Car. border shadow##CC_GUI_COLOR_FM_BORDER_SHADOW_CAR" +#~ msgstr "Cień krawędzi fali nośnej##CC_GUI_COLOR_FM_BORDER_SHADOW_CAR" + +#~ msgid "Volume##CC_GUI_COLOR_MACRO_VOLUME" +#~ msgstr "Głośność##CC_GUI_COLOR_MACRO_VOLUME" + +#~ msgid "Pitch##CC_GUI_COLOR_MACRO_PITCH" +#~ msgstr "Wysokość##CC_GUI_COLOR_MACRO_PITCH" + +#~ msgid "Wave##CC_GUI_COLOR_MACRO_WAVE" +#~ msgstr "Fala##CC_GUI_COLOR_MACRO_WAVE" + +#~ msgid "Other##CC_GUI_COLOR_MACRO_OTHER" +#~ msgstr "Inne##CC_GUI_COLOR_MACRO_OTHER" + +#~ msgid "FM (OPN)##CC_GUI_COLOR_INSTR_FM" +#~ msgstr "FM (OPN)##CC_GUI_COLOR_INSTR_FM" + +#~ msgid "SN76489/Sega PSG##CC_GUI_COLOR_INSTR_STD" +#~ msgstr "SN76489/Sega PSG##CC_GUI_COLOR_INSTR_STD" + +#~ msgid "T6W28##CC_GUI_COLOR_INSTR_T6W2" +#~ msgstr "T6W28##CC_GUI_COLOR_INSTR_T6W28" + +#~ msgid "Game Boy##CC_GUI_COLOR_INSTR_GB" +#~ msgstr "Game Boy##CC_GUI_COLOR_INSTR_GB" + +#~ msgid "C64##CC_GUI_COLOR_INSTR_C6" +#~ msgstr "C64##CC_GUI_COLOR_INSTR_C64" + +#~ msgid "Amiga/Generic Sample##CC_GUI_COLOR_INSTR_AMIGA" +#~ msgstr "Amiga/Zwykły sampel##CC_GUI_COLOR_INSTR_AMIGA" + +#~ msgid "PC Engine##CC_GUI_COLOR_INSTR_PCE" +#~ msgstr "PC Engine##CC_GUI_COLOR_INSTR_PCE" + +#~ msgid "AY-3-8910/SSG##CC_GUI_COLOR_INSTR_AY" +#~ msgstr "AY-3-8910/SSG##CC_GUI_COLOR_INSTR_AY" + +#~ msgid "AY8930##CC_GUI_COLOR_INSTR_AY893" +#~ msgstr "AY8930##CC_GUI_COLOR_INSTR_AY8930" + +#~ msgid "TIA##CC_GUI_COLOR_INSTR_TIA" +#~ msgstr "TIA##CC_GUI_COLOR_INSTR_TIA" + +#~ msgid "SAA1099##CC_GUI_COLOR_INSTR_SAA109" +#~ msgstr "SAA1099##CC_GUI_COLOR_INSTR_SAA1099" + +#~ msgid "VIC##CC_GUI_COLOR_INSTR_VIC" +#~ msgstr "VIC##CC_GUI_COLOR_INSTR_VIC" + +#~ msgid "PET##CC_GUI_COLOR_INSTR_PET" +#~ msgstr "PET##CC_GUI_COLOR_INSTR_PET" + +#~ msgid "VRC6##CC_GUI_COLOR_INSTR_VRC" +#~ msgstr "VRC6##CC_GUI_COLOR_INSTR_VRC6" + +#~ msgid "VRC6 (saw)##CC_GUI_COLOR_INSTR_VRC6_SAW" +#~ msgstr "VRC6 (piła)##CC_GUI_COLOR_INSTR_VRC6_SAW" + +#~ msgid "FM (OPLL)##CC_GUI_COLOR_INSTR_OPLL" +#~ msgstr "FM (OPLL)##CC_GUI_COLOR_INSTR_OPLL" + +#~ msgid "FM (OPL)##CC_GUI_COLOR_INSTR_OPL" +#~ msgstr "FM (OPL)##CC_GUI_COLOR_INSTR_OPL" + +#~ msgid "FDS##CC_GUI_COLOR_INSTR_FDS" +#~ msgstr "FDS##CC_GUI_COLOR_INSTR_FDS" + +#~ msgid "Virtual Boy##CC_GUI_COLOR_INSTR_VBOY" +#~ msgstr "Virtual Boy##CC_GUI_COLOR_INSTR_VBOY" + +#~ msgid "Namco 163##CC_GUI_COLOR_INSTR_N16" +#~ msgstr "Namco 163##CC_GUI_COLOR_INSTR_N163" + +#~ msgid "Konami SCC##CC_GUI_COLOR_INSTR_SCC" +#~ msgstr "Konami SCC##CC_GUI_COLOR_INSTR_SCC" + +#~ msgid "FM (OPZ)##CC_GUI_COLOR_INSTR_OPZ" +#~ msgstr "FM (OPZ)##CC_GUI_COLOR_INSTR_OPZ" + +#~ msgid "POKEY##CC_GUI_COLOR_INSTR_POKEY" +#~ msgstr "POKEY##CC_GUI_COLOR_INSTR_POKEY" + +#~ msgid "PC Beeper##CC_GUI_COLOR_INSTR_BEEPER" +#~ msgstr "PC Beeper##CC_GUI_COLOR_INSTR_BEEPER" + +#~ msgid "WonderSwan##CC_GUI_COLOR_INSTR_SWAN" +#~ msgstr "WonderSwan##CC_GUI_COLOR_INSTR_SWAN" + +#~ msgid "Lynx##CC_GUI_COLOR_INSTR_MIKEY" +#~ msgstr "Lynx##CC_GUI_COLOR_INSTR_MIKEY" + +#~ msgid "VERA##CC_GUI_COLOR_INSTR_VERA" +#~ msgstr "VERA##CC_GUI_COLOR_INSTR_VERA" + +#~ msgid "X1-010##CC_GUI_COLOR_INSTR_X1_01" +#~ msgstr "X1-010##CC_GUI_COLOR_INSTR_X1_010" + +#~ msgid "ES5506##CC_GUI_COLOR_INSTR_ES550" +#~ msgstr "ES5506##CC_GUI_COLOR_INSTR_ES5506" + +#~ msgid "MultiPCM##CC_GUI_COLOR_INSTR_MULTIPCM" +#~ msgstr "MultiPCM##CC_GUI_COLOR_INSTR_MULTIPCM" + +#~ msgid "SNES##CC_GUI_COLOR_INSTR_SNES" +#~ msgstr "SNES##CC_GUI_COLOR_INSTR_SNES" + +#~ msgid "Sound Unit##CC_GUI_COLOR_INSTR_SU" +#~ msgstr "SoundUnit##CC_GUI_COLOR_INSTR_SU" + +#~ msgid "Namco WSG##CC_GUI_COLOR_INSTR_NAMCO" +#~ msgstr "Namco WSG##CC_GUI_COLOR_INSTR_NAMCO" + +#~ msgid "FM (OPL Drums)##CC_GUI_COLOR_INSTR_OPL_DRUMS" +#~ msgstr "FM (OPL, tryub perkusji)##CC_GUI_COLOR_INSTR_OPL_DRUMS" + +#~ msgid "FM (OPM)##CC_GUI_COLOR_INSTR_OPM" +#~ msgstr "FM (OPM)##CC_GUI_COLOR_INSTR_OPM" + +#~ msgid "NES##CC_GUI_COLOR_INSTR_NES" +#~ msgstr "NES##CC_GUI_COLOR_INSTR_NES" + +#~ msgid "MSM6258##CC_GUI_COLOR_INSTR_MSM625" +#~ msgstr "MSM6258##CC_GUI_COLOR_INSTR_MSM6258" + +#~ msgid "MSM6295##CC_GUI_COLOR_INSTR_MSM629" +#~ msgstr "MSM6295##CC_GUI_COLOR_INSTR_MSM6295" + +#~ msgid "ADPCM-A##CC_GUI_COLOR_INSTR_ADPCMA" +#~ msgstr "ADPCM-A##CC_GUI_COLOR_INSTR_ADPCMA" + +#~ msgid "ADPCM-B##CC_GUI_COLOR_INSTR_ADPCMB" +#~ msgstr "ADPCM-B##CC_GUI_COLOR_INSTR_ADPCMB" + +#~ msgid "Sega PCM##CC_GUI_COLOR_INSTR_SEGAPCM" +#~ msgstr "Sega PCM##CC_GUI_COLOR_INSTR_SEGAPCM" + +#~ msgid "QSound##CC_GUI_COLOR_INSTR_QSOUND" +#~ msgstr "QSound##CC_GUI_COLOR_INSTR_QSOUND" + +#~ msgid "YMZ280B##CC_GUI_COLOR_INSTR_YMZ280B" +#~ msgstr "YMZ280B##CC_GUI_COLOR_INSTR_YMZ280B" + +#~ msgid "RF5C68##CC_GUI_COLOR_INSTR_RF5C6" +#~ msgstr "RF5C68##CC_GUI_COLOR_INSTR_RF5C68" + +#~ msgid "MSM5232##CC_GUI_COLOR_INSTR_MSM523" +#~ msgstr "MSM5232##CC_GUI_COLOR_INSTR_MSM5232" + +#~ msgid "K007232##CC_GUI_COLOR_INSTR_K00723" +#~ msgstr "K007232##CC_GUI_COLOR_INSTR_K007232" + +#~ msgid "GA20##CC_GUI_COLOR_INSTR_GA2" +#~ msgstr "GA20##CC_GUI_COLOR_INSTR_GA20" + +#~ msgid "Pokémon Mini##CC_GUI_COLOR_INSTR_POKEMINI" +#~ msgstr "Pokémon Mini##CC_GUI_COLOR_INSTR_POKEMINI" + +#~ msgid "SM8521##CC_GUI_COLOR_INSTR_SM852" +#~ msgstr "SM8521##CC_GUI_COLOR_INSTR_SM8521" + +#~ msgid "PV-1000##CC_GUI_COLOR_INSTR_PV100" +#~ msgstr "PV-1000##CC_GUI_COLOR_INSTR_PV1000" + +#~ msgid "K053260##CC_GUI_COLOR_INSTR_K05326" +#~ msgstr "K053260##CC_GUI_COLOR_INSTR_K053260" + +#~ msgid "C140##CC_GUI_COLOR_INSTR_C14" +#~ msgstr "C140##CC_GUI_COLOR_INSTR_C140" + +#~ msgid "C219##CC_GUI_COLOR_INSTR_C21" +#~ msgstr "C219##CC_GUI_COLOR_INSTR_C219" + +#~ msgid "ESFM##CC_GUI_COLOR_INSTR_ESFM" +#~ msgstr "ESFM##CC_GUI_COLOR_INSTR_ESFM" + +#~ msgid "ES5503##CC_GUI_COLOR_INSTR_ES550" +#~ msgstr "ES5503##CC_GUI_COLOR_INSTR_ES5503" + +#~ msgid "PowerNoise (noise)##CC_GUI_COLOR_INSTR_POWERNOISE" +#~ msgstr "PowerNoise (szum)##CC_GUI_COLOR_INSTR_POWERNOISE" + +#~ msgid "PowerNoise (slope)##CC_GUI_COLOR_INSTR_POWERNOISE_SLOPE" +#~ msgstr "PowerNoise (spadek)##CC_GUI_COLOR_INSTR_POWERNOISE_SLOPE" + +#~ msgid "Other/Unknown##CC_GUI_COLOR_INSTR_UNKNOWN" +#~ msgstr "Inny/nieznany##CC_GUI_COLOR_INSTR_UNKNOWN" + +#~ msgid "Single color (background)##CC_GUI_COLOR_CHANNEL_BG" +#~ msgstr "Jednolity kolor (tło)##CC_GUI_COLOR_CHANNEL_BG" + +#~ msgid "Single color (text)##CC_GUI_COLOR_CHANNEL_FG" +#~ msgstr "Jednolity kolor (tekst)##CC_GUI_COLOR_CHANNEL_FG" + +#~ msgid "FM##CC_GUI_COLOR_CHANNEL_FM" +#~ msgstr "FM##CC_GUI_COLOR_CHANNEL_FM" + +#~ msgid "Pulse##CC_GUI_COLOR_CHANNEL_PULSE" +#~ msgstr "Fala prostokątna##CC_GUI_COLOR_CHANNEL_PULSE" + +#~ msgid "Noise##CC_GUI_COLOR_CHANNEL_NOISE" +#~ msgstr "Szum##CC_GUI_COLOR_CHANNEL_NOISE" + +#~ msgid "PCM##CC_GUI_COLOR_CHANNEL_PCM" +#~ msgstr "PCM##CC_GUI_COLOR_CHANNEL_PCM" + +#~ msgid "Wave##CC_GUI_COLOR_CHANNEL_WAVE" +#~ msgstr "Fala##CC_GUI_COLOR_CHANNEL_WAVE" + +#~ msgid "FM operator##CC_GUI_COLOR_CHANNEL_OP" +#~ msgstr "Operator FM##CC_GUI_COLOR_CHANNEL_OP" + +#~ msgid "Muted##CC_GUI_COLOR_CHANNEL_MUTED" +#~ msgstr "Wyciszony##CC_GUI_COLOR_CHANNEL_MUTED" + +#~ msgid "Playhead##CC_GUI_COLOR_PATTERN_PLAY_HEAD" +#~ msgstr "Wskaźnik odtwarzania##CC_GUI_COLOR_PATTERN_PLAY_HEAD" + +#~ msgid "Editing##CC_GUI_COLOR_EDITING" +#~ msgstr "Edytowanie##CC_GUI_COLOR_EDITING" + +#~ msgid "Editing (will clone)##CC_GUI_COLOR_EDITING_CLONE" +#~ msgstr "Edytowanie (zostanie sklonowane)##CC_GUI_COLOR_EDITING_CLONE" + +#~ msgid "Cursor##CC_GUI_COLOR_PATTERN_CURSOR" +#~ msgstr "Kursor##CC_GUI_COLOR_PATTERN_CURSOR" + +#~ msgid "Cursor (hovered)##CC_GUI_COLOR_PATTERN_CURSOR_HOVER" +#~ msgstr "Kursor (zaznaczony)##CC_GUI_COLOR_PATTERN_CURSOR_HOVER" + +#~ msgid "Cursor (clicked)##CC_GUI_COLOR_PATTERN_CURSOR_ACTIVE" +#~ msgstr "Kursor (wciśnięty)##CC_GUI_COLOR_PATTERN_CURSOR_ACTIVE" + +#~ msgid "Selection##CC_GUI_COLOR_PATTERN_SELECTION" +#~ msgstr "Zaznaczenie##CC_GUI_COLOR_PATTERN_SELECTION" + +#~ msgid "Selection (hovered)##CC_GUI_COLOR_PATTERN_SELECTION_HOVER" +#~ msgstr "" +#~ "Zaznaczenie (kursor myszy na " +#~ "zaznaczeniu)##CC_GUI_COLOR_PATTERN_SELECTION_HOVER" + +#~ msgid "Selection (clicked)##CC_GUI_COLOR_PATTERN_SELECTION_ACTIVE" +#~ msgstr "Zaznaczenie (wciśnięte)##CC_GUI_COLOR_PATTERN_SELECTION_ACTIVE" + +#~ msgid "Highlight 1##CC_GUI_COLOR_PATTERN_HI_" +#~ msgstr "Podkreślenie 1##CC_GUI_COLOR_PATTERN_HI_1" + +#~ msgid "Highlight 2##CC_GUI_COLOR_PATTERN_HI_" +#~ msgstr "Podkreślenie 2##CC_GUI_COLOR_PATTERN_HI_2" + +#~ msgid "Row number##CC_GUI_COLOR_PATTERN_ROW_INDEX" +#~ msgstr "Numer wiersza##CC_GUI_COLOR_PATTERN_ROW_INDEX" + +#~ msgid "Row number (highlight 1)##CC_GUI_COLOR_PATTERN_ROW_INDEX_HI" +#~ msgstr "Numer wiersza (podkreślenie 1)##CC_GUI_COLOR_PATTERN_ROW_INDEX_HI1" + +#~ msgid "Row number (highlight 2)##CC_GUI_COLOR_PATTERN_ROW_INDEX_HI" +#~ msgstr "Numer wiersza (podkreślenie 2)##CC_GUI_COLOR_PATTERN_ROW_INDEX_HI2" + +#~ msgid "Note##CC_GUI_COLOR_PATTERN_ACTIVE" +#~ msgstr "Nuta##CC_GUI_COLOR_PATTERN_ACTIVE" + +#~ msgid "Note (highlight 1)##CC_GUI_COLOR_PATTERN_ACTIVE_HI" +#~ msgstr "Nuta (podkreślenie 1)##CC_GUI_COLOR_PATTERN_ACTIVE_HI1" + +#~ msgid "Note (highlight 2)##CC_GUI_COLOR_PATTERN_ACTIVE_HI" +#~ msgstr "Nuta (podkreślenie 2)##CC_GUI_COLOR_PATTERN_ACTIVE_HI2" + +#~ msgid "Blank##CC_GUI_COLOR_PATTERN_INACTIVE" +#~ msgstr "Pusta komórka##CC_GUI_COLOR_PATTERN_INACTIVE" + +#~ msgid "Blank (highlight 1)##CC_GUI_COLOR_PATTERN_INACTIVE_HI" +#~ msgstr "Pusta komórka (podkreślenie 1)##CC_GUI_COLOR_PATTERN_INACTIVE_HI1" + +#~ msgid "Blank (highlight 2)##CC_GUI_COLOR_PATTERN_INACTIVE_HI" +#~ msgstr "Pusta komórka (podkreślenie 2)##CC_GUI_COLOR_PATTERN_INACTIVE_HI2" + +#~ msgid "Instrument##CC_GUI_COLOR_PATTERN_INS" +#~ msgstr "Instrument##CC_GUI_COLOR_PATTERN_INS" + +#~ msgid "Instrument (invalid type)##CC_GUI_COLOR_PATTERN_INS_WARN" +#~ msgstr "Instrument (nieprawidłowy typ)##CC_GUI_COLOR_PATTERN_INS_WARN" + +#~ msgid "Instrument (out of range)##CC_GUI_COLOR_PATTERN_INS_ERROR" +#~ msgstr "Instrument (niepoprawny indeks)##CC_GUI_COLOR_PATTERN_INS_ERROR" + +#~ msgid "Volume (0%)##CC_GUI_COLOR_PATTERN_VOLUME_MIN" +#~ msgstr "Głośność (0%)##CC_GUI_COLOR_PATTERN_VOLUME_MIN" + +#~ msgid "Volume (50%)##CC_GUI_COLOR_PATTERN_VOLUME_HALF" +#~ msgstr "Głośność (50%)##CC_GUI_COLOR_PATTERN_VOLUME_HALF" + +#~ msgid "Volume (100%)##CC_GUI_COLOR_PATTERN_VOLUME_MAX" +#~ msgstr "Głośność (100%)##CC_GUI_COLOR_PATTERN_VOLUME_MAX" + +#~ msgid "Invalid effect##CC_GUI_COLOR_PATTERN_EFFECT_INVALID" +#~ msgstr "Niepoprawny efekt##CC_GUI_COLOR_PATTERN_EFFECT_INVALID" + +#~ msgid "Pitch effect##CC_GUI_COLOR_PATTERN_EFFECT_PITCH" +#~ msgstr "Efekt (wysokość dźwięku)##CC_GUI_COLOR_PATTERN_EFFECT_PITCH" + +#~ msgid "Volume effect##CC_GUI_COLOR_PATTERN_EFFECT_VOLUME" +#~ msgstr "Efekt (głośność)##CC_GUI_COLOR_PATTERN_EFFECT_VOLUME" + +#~ msgid "Panning effect##CC_GUI_COLOR_PATTERN_EFFECT_PANNING" +#~ msgstr "Efekt (panning)##CC_GUI_COLOR_PATTERN_EFFECT_PANNING" + +#~ msgid "Song effect##CC_GUI_COLOR_PATTERN_EFFECT_SONG" +#~ msgstr "Efekt (utwór)##CC_GUI_COLOR_PATTERN_EFFECT_SONG" + +#~ msgid "Time effect##CC_GUI_COLOR_PATTERN_EFFECT_TIME" +#~ msgstr "Efekt (czas)##CC_GUI_COLOR_PATTERN_EFFECT_TIME" + +#~ msgid "Speed effect##CC_GUI_COLOR_PATTERN_EFFECT_SPEED" +#~ msgstr "Efekt (prędkość)##CC_GUI_COLOR_PATTERN_EFFECT_SPEED" + +#~ msgid "Primary specific effect##CC_GUI_COLOR_PATTERN_EFFECT_SYS_PRIMARY" +#~ msgstr "Główny efekt układu##CC_GUI_COLOR_PATTERN_EFFECT_SYS_PRIMARY" + +#~ msgid "Secondary specific effect##CC_GUI_COLOR_PATTERN_EFFECT_SYS_SECONDARY" +#~ msgstr "Poboczny efekt układu##CC_GUI_COLOR_PATTERN_EFFECT_SYS_SECONDARY" + +#~ msgid "Miscellaneous##CC_GUI_COLOR_PATTERN_EFFECT_MISC" +#~ msgstr "Efekt (inne)##CC_GUI_COLOR_PATTERN_EFFECT_MISC" + +#~ msgid "External command output##CC_GUI_COLOR_EE_VALUE" +#~ msgstr "Wyświetlanie zewnętrznych komend##CC_GUI_COLOR_EE_VALUE" + +#~ msgid "Status: off/disabled##CC_GUI_COLOR_PATTERN_STATUS_OFF" +#~ msgstr "Status: wyłączony##CC_GUI_COLOR_PATTERN_STATUS_OFF" + +#~ msgid "Status: off + macro rel##CC_GUI_COLOR_PATTERN_STATUS_REL" +#~ msgstr "Status: wył. + zwolnienie makra##CC_GUI_COLOR_PATTERN_STATUS_REL" + +#~ msgid "Status: on + macro rel##CC_GUI_COLOR_PATTERN_STATUS_REL_ON" +#~ msgstr "Status: wł. + zwolnienie makra##CC_GUI_COLOR_PATTERN_STATUS_REL_ON" + +#~ msgid "Status: on##CC_GUI_COLOR_PATTERN_STATUS_ON" +#~ msgstr "Status: wł.##CC_GUI_COLOR_PATTERN_STATUS_ON" + +#~ msgid "Status: volume##CC_GUI_COLOR_PATTERN_STATUS_VOLUME" +#~ msgstr "Status: głośność##CC_GUI_COLOR_PATTERN_STATUS_VOLUME" + +#~ msgid "Status: pitch##CC_GUI_COLOR_PATTERN_STATUS_PITCH" +#~ msgstr "Status: wysokość dźwięku##CC_GUI_COLOR_PATTERN_STATUS_PITCH" + +#~ msgid "Status: panning##CC_GUI_COLOR_PATTERN_STATUS_PANNING" +#~ msgstr "Status: panning##CC_GUI_COLOR_PATTERN_STATUS_PANNING" + +#~ msgid "Status: chip (primary)##CC_GUI_COLOR_PATTERN_STATUS_SYS" +#~ msgstr "Status: układ (główny)##CC_GUI_COLOR_PATTERN_STATUS_SYS1" + +#~ msgid "Status: chip (secondary)##CC_GUI_COLOR_PATTERN_STATUS_SYS" +#~ msgstr "Status: układ (poboczny)##CC_GUI_COLOR_PATTERN_STATUS_SYS2" + +#~ msgid "Status: mixing##CC_GUI_COLOR_PATTERN_STATUS_MIXING" +#~ msgstr "Status: miksowanie##CC_GUI_COLOR_PATTERN_STATUS_MIXING" + +#~ msgid "Status: DSP effect##CC_GUI_COLOR_PATTERN_STATUS_DSP" +#~ msgstr "Status: efekt DSP##CC_GUI_COLOR_PATTERN_STATUS_DSP" + +#~ msgid "Status: note altering##CC_GUI_COLOR_PATTERN_STATUS_NOTE" +#~ msgstr "Status: zmiana nuty##CC_GUI_COLOR_PATTERN_STATUS_NOTE" + +#~ msgid "Status: misc color 1##CC_GUI_COLOR_PATTERN_STATUS_MISC" +#~ msgstr "Status: inne (kolor 1)##CC_GUI_COLOR_PATTERN_STATUS_MISC1" + +#~ msgid "Status: misc color 2##CC_GUI_COLOR_PATTERN_STATUS_MISC" +#~ msgstr "Status: inne (kolor 2)##CC_GUI_COLOR_PATTERN_STATUS_MISC2" + +#~ msgid "Status: misc color 3##CC_GUI_COLOR_PATTERN_STATUS_MISC" +#~ msgstr "Status: inne (kolor 3)##CC_GUI_COLOR_PATTERN_STATUS_MISC3" + +#~ msgid "Status: attack##CC_GUI_COLOR_PATTERN_STATUS_ATTACK" +#~ msgstr "Status: narastanie##CC_GUI_COLOR_PATTERN_STATUS_ATTACK" + +#~ msgid "Status: decay##CC_GUI_COLOR_PATTERN_STATUS_DECAY" +#~ msgstr "Status: opadanie##CC_GUI_COLOR_PATTERN_STATUS_DECAY" + +#~ msgid "Status: sustain##CC_GUI_COLOR_PATTERN_STATUS_SUSTAIN" +#~ msgstr "Status: podtrzymanie##CC_GUI_COLOR_PATTERN_STATUS_SUSTAIN" + +#~ msgid "Status: release##CC_GUI_COLOR_PATTERN_STATUS_RELEASE" +#~ msgstr "Status: zwolnienie##CC_GUI_COLOR_PATTERN_STATUS_RELEASE" + +#~ msgid "Status: decrease linear##CC_GUI_COLOR_PATTERN_STATUS_DEC_LINEAR" +#~ msgstr "Status: liniowe opadanie##CC_GUI_COLOR_PATTERN_STATUS_DEC_LINEAR" + +#~ msgid "Status: decrease exp##CC_GUI_COLOR_PATTERN_STATUS_DEC_EXP" +#~ msgstr "Status: wykładnicze opadanie##CC_GUI_COLOR_PATTERN_STATUS_DEC_EXP" + +#~ msgid "Status: increase##CC_GUI_COLOR_PATTERN_STATUS_INC" +#~ msgstr "Status: wzrost##CC_GUI_COLOR_PATTERN_STATUS_INC" + +#~ msgid "Status: bent##CC_GUI_COLOR_PATTERN_STATUS_BENT" +#~ msgstr "Status: zakrzywiony##CC_GUI_COLOR_PATTERN_STATUS_BENT" + +#~ msgid "Status: direct##CC_GUI_COLOR_PATTERN_STATUS_DIRECT" +#~ msgstr "Status: bezpośreni##CC_GUI_COLOR_PATTERN_STATUS_DIRECT" + +#~ msgid "Background##CC_GUI_COLOR_SAMPLE_BG" +#~ msgstr "Tło##CC_GUI_COLOR_SAMPLE_BG" + +#~ msgid "Waveform##CC_GUI_COLOR_SAMPLE_FG" +#~ msgstr "Kształt fali##CC_GUI_COLOR_SAMPLE_FG" + +#~ msgid "Time background##CC_GUI_COLOR_SAMPLE_TIME_BG" +#~ msgstr "Tło pola czasu##CC_GUI_COLOR_SAMPLE_TIME_BG" + +#~ msgid "Time text##CC_GUI_COLOR_SAMPLE_TIME_FG" +#~ msgstr "Tekst pola czasu##CC_GUI_COLOR_SAMPLE_TIME_FG" + +#~ msgid "Loop region##CC_GUI_COLOR_SAMPLE_LOOP" +#~ msgstr "Zapętlony region##CC_GUI_COLOR_SAMPLE_LOOP" + +#~ msgid "Center guide##CC_GUI_COLOR_SAMPLE_CENTER" +#~ msgstr "Linia środkowa##CC_GUI_COLOR_SAMPLE_CENTER" + +#~ msgid "Grid##CC_GUI_COLOR_SAMPLE_GRID" +#~ msgstr "Siatka##CC_GUI_COLOR_SAMPLE_GRID" + +#~ msgid "Selection##CC_GUI_COLOR_SAMPLE_SEL" +#~ msgstr "Zaznaczenie##CC_GUI_COLOR_SAMPLE_SEL" + +#~ msgid "Selection points##CC_GUI_COLOR_SAMPLE_SEL_POINT" +#~ msgstr "Krawędzie zaznaczenia##CC_GUI_COLOR_SAMPLE_SEL_POINT" + +#~ msgid "Preview needle##CC_GUI_COLOR_SAMPLE_NEEDLE" +#~ msgstr "Kursor podglądu odtwarzania##CC_GUI_COLOR_SAMPLE_NEEDLE" + +#~ msgid "Playing needles##CC_GUI_COLOR_SAMPLE_NEEDLE_PLAYING" +#~ msgstr "Kursory podglądu odtwarzania##CC_GUI_COLOR_SAMPLE_NEEDLE_PLAYING" + +#~ msgid "Loop markers##CC_GUI_COLOR_SAMPLE_LOOP_POINT" +#~ msgstr "Znaczniki zapętlenia##CC_GUI_COLOR_SAMPLE_LOOP_POINT" + +#~ msgid "Chip select: disabled##CC_GUI_COLOR_SAMPLE_CHIP_DISABLED" +#~ msgstr "Wybór układu: wył.##CC_GUI_COLOR_SAMPLE_CHIP_DISABLED" + +#~ msgid "Chip select: enabled##CC_GUI_COLOR_SAMPLE_CHIP_ENABLED" +#~ msgstr "Wybór układu: wł.##CC_GUI_COLOR_SAMPLE_CHIP_ENABLED" + +#~ msgid "Chip select: enabled (failure)##CC_GUI_COLOR_SAMPLE_CHIP_WARNING" +#~ msgstr "Wybór układu: wł. (błąd)##CC_GUI_COLOR_SAMPLE_CHIP_WARNING" + +#~ msgid "Unallocated##CC_GUI_COLOR_PAT_MANAGER_NULL" +#~ msgstr "Nieprzypisany##CC_GUI_COLOR_PAT_MANAGER_NULL" + +#~ msgid "Unused##CC_GUI_COLOR_PAT_MANAGER_UNUSED" +#~ msgstr "Nieużywany##CC_GUI_COLOR_PAT_MANAGER_UNUSED" + +#~ msgid "Used##CC_GUI_COLOR_PAT_MANAGER_USED" +#~ msgstr "Używany##CC_GUI_COLOR_PAT_MANAGER_USED" + +#~ msgid "Overused##CC_GUI_COLOR_PAT_MANAGER_OVERUSED" +#~ msgstr "Nadużywany##CC_GUI_COLOR_PAT_MANAGER_OVERUSED" + +#~ msgid "Really overused##CC_GUI_COLOR_PAT_MANAGER_EXTREMELY_OVERUSED" +#~ msgstr "Bardzo nadużywany##CC_GUI_COLOR_PAT_MANAGER_EXTREMELY_OVERUSED" + +#~ msgid "Combo Breaker##CC_GUI_COLOR_PAT_MANAGER_COMBO_BREAKER" +#~ msgstr "COMBO BREAKER##CC_GUI_COLOR_PAT_MANAGER_COMBO_BREAKER" + +#~ msgid "Background##CC_GUI_COLOR_PIANO_BACKGROUND" +#~ msgstr "Tło##CC_GUI_COLOR_PIANO_BACKGROUND" + +#~ msgid "Upper key##CC_GUI_COLOR_PIANO_KEY_TOP" +#~ msgstr "Górny klawisz##CC_GUI_COLOR_PIANO_KEY_TOP" + +#~ msgid "Upper key (feedback)##CC_GUI_COLOR_PIANO_KEY_TOP_HIT" +#~ msgstr "Górny klawisz (feedback)##CC_GUI_COLOR_PIANO_KEY_TOP_HIT" + +#~ msgid "Upper key (pressed)##CC_GUI_COLOR_PIANO_KEY_TOP_ACTIVE" +#~ msgstr "Górny klawisz (wciśnięty)##CC_GUI_COLOR_PIANO_KEY_TOP_ACTIVE" + +#~ msgid "Lower key##CC_GUI_COLOR_PIANO_KEY_BOTTOM" +#~ msgstr "Dolny klawisz##CC_GUI_COLOR_PIANO_KEY_BOTTOM" + +#~ msgid "Lower key (feedback)##CC_GUI_COLOR_PIANO_KEY_BOTTOM_HIT" +#~ msgstr "Dolny klawisz (feedback)##CC_GUI_COLOR_PIANO_KEY_BOTTOM_HIT" + +#~ msgid "Lower key (pressed)##CC_GUI_COLOR_PIANO_KEY_BOTTOM_ACTIVE" +#~ msgstr "Dolny klawisz (wciśnięty)##CC_GUI_COLOR_PIANO_KEY_BOTTOM_ACTIVE" + +#~ msgid "Clock text##CC_GUI_COLOR_CLOCK_TEXT" +#~ msgstr "Tekst zegara##CC_GUI_COLOR_CLOCK_TEXT" + +#~ msgid "Beat (off)##CC_GUI_COLOR_CLOCK_BEAT_LOW" +#~ msgstr "Beat wył.##CC_GUI_COLOR_CLOCK_BEAT_LOW" + +#~ msgid "Beat (on)##CC_GUI_COLOR_CLOCK_BEAT_HIGH" +#~ msgstr "Beat wł.##CC_GUI_COLOR_CLOCK_BEAT_HIGH" + +#~ msgid "PortSet##CC_GUI_COLOR_PATCHBAY_PORTSET" +#~ msgstr "Grupa portów##CC_GUI_COLOR_PATCHBAY_PORTSET" + +#~ msgid "Port##CC_GUI_COLOR_PATCHBAY_PORT" +#~ msgstr "Port##CC_GUI_COLOR_PATCHBAY_PORT" + +#~ msgid "Port (hidden/unavailable)##CC_GUI_COLOR_PATCHBAY_PORT_HIDDEN" +#~ msgstr "Port (ukryty/niedostępny)##CC_GUI_COLOR_PATCHBAY_PORT_HIDDEN" + +#~ msgid "Connection (selected)##CC_GUI_COLOR_PATCHBAY_CONNECTION" +#~ msgstr "Połączenie (zaznaczone)##CC_GUI_COLOR_PATCHBAY_CONNECTION" + +#~ msgid "Connection (other)##CC_GUI_COLOR_PATCHBAY_CONNECTION_BG" +#~ msgstr "Połączenie (inne)##CC_GUI_COLOR_PATCHBAY_CONNECTION_BG" + +#~ msgid "Background##CC_GUI_COLOR_MEMORY_BG" +#~ msgstr "Tło##CC_GUI_COLOR_MEMORY_BG" + +#~ msgid "Unknown##CC_GUI_COLOR_MEMORY_FREE" +#~ msgstr "Nieznany##CC_GUI_COLOR_MEMORY_FREE" + +#~ msgid "Reserved##CC_GUI_COLOR_MEMORY_RESERVED" +#~ msgstr "Zarezerwowany##CC_GUI_COLOR_MEMORY_RESERVED" + +#~ msgid "Sample##CC_GUI_COLOR_MEMORY_SAMPLE" +#~ msgstr "Sampel##CC_GUI_COLOR_MEMORY_SAMPLE" + +#~ msgid "Sample (alternate 1)##CC_GUI_COLOR_MEMORY_SAMPLE_ALT" +#~ msgstr "Sampel (alternatywny 1)##CC_GUI_COLOR_MEMORY_SAMPLE_ALT1" + +#~ msgid "Sample (alternate 2)##CC_GUI_COLOR_MEMORY_SAMPLE_ALT" +#~ msgstr "Sampel (alternatywny 2)##CC_GUI_COLOR_MEMORY_SAMPLE_ALT2" + +#~ msgid "Sample (alternate 3)##CC_GUI_COLOR_MEMORY_SAMPLE_ALT" +#~ msgstr "Sampel (alternatywny 3)##CC_GUI_COLOR_MEMORY_SAMPLE_ALT3" + +#~ msgid "Wave RAM##CC_GUI_COLOR_MEMORY_WAVE_RAM" +#~ msgstr "Pamięć na fale##CC_GUI_COLOR_MEMORY_WAVE_RAM" + +#~ msgid "Wavetable (static)##CC_GUI_COLOR_MEMORY_WAVE_STATIC" +#~ msgstr "Tablica fal (statyczna)##CC_GUI_COLOR_MEMORY_WAVE_STATIC" + +#~ msgid "Echo buffer##CC_GUI_COLOR_MEMORY_ECHO" +#~ msgstr "Bufor echo##CC_GUI_COLOR_MEMORY_ECHO" + +#~ msgid "Namco 163 load pos##CC_GUI_COLOR_MEMORY_N163_LOAD" +#~ msgstr "(Namco 163) pozycja wczytywania##CC_GUI_COLOR_MEMORY_N163_LOAD" + +#~ msgid "Namco 163 play pos##CC_GUI_COLOR_MEMORY_N163_PLAY" +#~ msgstr "(Namco 163) pozycja odtwarzania##CC_GUI_COLOR_MEMORY_N163_PLAY" + +#~ msgid "Sample (bank 0)##CC_GUI_COLOR_MEMORY_BANK" +#~ msgstr "Sampel (bank 0)##CC_GUI_COLOR_MEMORY_BANK0" + +#~ msgid "Sample (bank 1)##CC_GUI_COLOR_MEMORY_BANK" +#~ msgstr "Sampel (bank 1)##CC_GUI_COLOR_MEMORY_BANK1" + +#~ msgid "Sample (bank 2)##CC_GUI_COLOR_MEMORY_BANK" +#~ msgstr "Sampel (bank 2)##CC_GUI_COLOR_MEMORY_BANK2" + +#~ msgid "Sample (bank 3)##CC_GUI_COLOR_MEMORY_BANK" +#~ msgstr "Sampel (bank 3)##CC_GUI_COLOR_MEMORY_BANK3" + +#~ msgid "Sample (bank 4)##CC_GUI_COLOR_MEMORY_BANK" +#~ msgstr "Sampel (bank 4)##CC_GUI_COLOR_MEMORY_BANK4" + +#~ msgid "Sample (bank 5)##CC_GUI_COLOR_MEMORY_BANK" +#~ msgstr "Sampel (bank 5)##CC_GUI_COLOR_MEMORY_BANK5" + +#~ msgid "Sample (bank 6)##CC_GUI_COLOR_MEMORY_BANK" +#~ msgstr "Sampel (bank 6)##CC_GUI_COLOR_MEMORY_BANK6" + +#~ msgid "Sample (bank 7)##CC_GUI_COLOR_MEMORY_BANK" +#~ msgstr "Sampel (bank 7)##CC_GUI_COLOR_MEMORY_BANK7" + +#~ msgid "Log level: Error##CC_GUI_COLOR_LOGLEVEL_ERROR" +#~ msgstr "Poziom wpisu dziennika: Błąd##CC_GUI_COLOR_LOGLEVEL_ERROR" + +#~ msgid "Log level: Warning##CC_GUI_COLOR_LOGLEVEL_WARNING" +#~ msgstr "Poziom wpisu dziennika: Ostrzeżenie##CC_GUI_COLOR_LOGLEVEL_WARNING" + +#~ msgid "Log level: Info##CC_GUI_COLOR_LOGLEVEL_INFO" +#~ msgstr "Poziom wpisu dziennika: Info##CC_GUI_COLOR_LOGLEVEL_INFO" + +#~ msgid "Log level: Debug##CC_GUI_COLOR_LOGLEVEL_DEBUG" +#~ msgstr "Poziom wpisu dziennika: Debug##CC_GUI_COLOR_LOGLEVEL_DEBUG" + +#~ msgid "Log level: Trace/Verbose##CC_GUI_COLOR_LOGLEVEL_TRACE" +#~ msgstr "" +#~ "Poziom wpisu dziennika: Diagnostyka/Szczegóły##CC_GUI_COLOR_LOGLEVEL_TRACE" + +#~ msgid "PB used" +#~ msgstr " PB użytych" + +#~ msgid "TB used" +#~ msgstr " TB użytych" + +#~ msgid "GB used" +#~ msgstr " GB użytych" + +#~ msgid "MB used" +#~ msgstr " MB użytych" + +#~ msgid "KB used" +#~ msgstr " KB użytych" + +#~ msgid " bytes used" +#~ msgid_plural " bytes used" +#~ msgstr[0] " bajt użyty" +#~ msgstr[1] " bajty użyte" +#~ msgstr[2] " bajtów użytych" + +#~ msgid "P" +#~ msgstr " P" + +#~ msgid "T" +#~ msgstr " T" + +#~ msgid "G" +#~ msgstr " G" + +#~ msgid "M" +#~ msgstr " M" + +#~ msgid "K" +#~ msgstr " K" + +#~ msgid "Raw Period" +#~ msgstr "Okres (absolutny)" + +#~ msgid "Raw Envelope Period" +#~ msgstr "Okres obwiedni (absolutny)" + +#~ msgid "A" +#~ msgstr "A" + +#~ msgid "D" +#~ msgstr "D" + +#~ msgid "S" +#~ msgstr "S" + +#~ msgid "R" +#~ msgstr "R" + +#~ msgid "Raw Frequency" +#~ msgstr "Wysokość (absolutna)" + +#~ msgid "Oscillator mode:" +#~ msgstr "Tryb oscylatora:" + +#~ msgid "Freerun" +#~ msgstr "Swobodny" + +#~ msgid "Oneshot" +#~ msgstr "Jednokrotny" + +#~ msgid "Sync/AM" +#~ msgstr "Synchro./AM" + +#~ msgid "Virtual softpan channel" +#~ msgstr "Wirtualny kanał stereo" + +#~ msgid "" +#~ "Combines odd and next even channel into one virtual channel with 256-step " +#~ "panning.\n" +#~ "Instrument, volume and effects need to be placed on the odd channel (e.g. " +#~ "1st, 3rd, 5th etc.)" +#~ msgstr "" +#~ "Wykorzystuje kanał nieparzysty i następujący po nim kanał parzysty do " +#~ "utworzenia kanału wirtualnego z możliwością płynnego panningu (256 " +#~ "kroków).\n" +#~ "Nuty, instrumenty, polecenia głośności i efekty powinny być umieszczane w " +#~ "kanałach o numerach nieparzystych (1., 3. itd.)." + +#~ msgid "Phase reset on key-on" +#~ msgstr "Reset fazy przy nowej nucie" + +#~ msgid "Osc. mode" +#~ msgstr "Tryb oscyl." + +#~ msgid "Wave/sample pos." +#~ msgstr "Pozycja fali/sampla" + +#~ msgid "Osc. output" +#~ msgstr "Wyjście oscyl." + +#~ msgid "Envelope count" +#~ msgstr "Szybkość obw." + +#~ msgid "op%d" +#~ msgstr "op%d" + +#~ msgid "OP%d" +#~ msgstr "OP%d" + +#~ msgid "Detune in semitones" +#~ msgstr "Rozstrojenie w półtonach" + +#~ msgid "" +#~ "Detune in fractions of semitone.\n" +#~ "128 = +1 semitone, -128 = -1 semitone." +#~ msgstr "" +#~ "Rozstrojenie w ułamkach półtonu.\n" +#~ "128 = +1 półton, -128 = -1 półton." + +#~ msgid "If operator outputs sound, enable left channel output." +#~ msgstr "włącz wyjście audio dla lewego kanału." + +#~ msgid "If operator outputs sound, enable right channel output." +#~ msgstr "włącz wyjście audio dla prawego kanału." + +#~ msgid "Tabs" +#~ msgstr "Zakladki" + +#~ msgid "Single (combo box)" +#~ msgstr "Pojedynczy (lista rozwijana)" + +#~ msgid "Frequency Divider" +#~ msgstr "Dzielnik częstotliwości" + +#~ msgid "AR" +#~ msgstr "AR" + +#~ msgid "D1R" +#~ msgstr "D1R" + +#~ msgid "DL" +#~ msgstr "DL" + +#~ msgid "D2R" +#~ msgstr "D2R" + +#~ msgid "RR" +#~ msgstr "RR" + +#~ msgid "RC" +#~ msgstr "RC" + +#~ msgid "Position##WAVEPOS" +#~ msgstr "Położenie##WAVEPOS" + +#~ msgid "Length##WAVELEN" +#~ msgstr "Długość##WAVELEN" + +#~ msgid "4-op" +#~ msgstr "4-op" + +#~ msgid "16-bit raw period macro" +#~ msgstr "16-bitowe makro absolutnego okresu" + +#~ msgid "Use wavetable (Amiga/SNES/Generic DAC only)" +#~ msgstr "Używaj tablicy fal (tylko dla Amiga/SNES/typowego przetwornika C/A)" + +#~ msgid "L##L%d" +#~ msgstr "L##L%d" + +#~ msgid "VOL" +#~ msgstr "Gł." + +#~ msgid "Envelope Reset/Key Control" +#~ msgstr "Reset obwiedni" + +#~ msgid "op1" +#~ msgstr "op1" + +#~ msgid "op2" +#~ msgstr "op2" + +#~ msgid "op3" +#~ msgstr "op3" + +#~ msgid "op4" +#~ msgstr "op4" + +#~ msgid "Bug" +#~ msgstr "Błąd" + +#~ msgid "Local" +#~ msgstr "Lokalne" + +#~ msgid "Hex##MTHex" +#~ msgstr "Hex.##MTHex" + +#~ msgid "Dec##MTHex" +#~ msgstr "Dec.##MTHex" + +#~ msgid "Result" +#~ msgstr "Rezultat" + +#~ msgid "Wave 1 " +#~ msgstr "Fala 1 " + +#~ msgid "Local Waves" +#~ msgstr "Lokalne tablice fal" + +#~ msgid "not a command stream" +#~ msgstr "nie jest to strumień komend" + +#~ msgid "this module was created with a more recent version of Furnace!" +#~ msgstr "ten moduł został stworzony w nowszej wersji Furnace!" + +#~ msgid "couldn't seek to info header!" +#~ msgstr "nie udało się przejść do nagłówka informacji o pliku!" + +#~ msgid "invalid info header!" +#~ msgstr "nieprawidłowy nagłówek informacjio o pliku!" + +#~ msgid "pattern length is negative!" +#~ msgstr "długość wzorca jest ujemna!" + +#~ msgid "pattern length is too large!" +#~ msgstr "długość wzorca jest zbyt duża!" + +#~ msgid "song length is negative!" +#~ msgstr "długość utworu jest ujemna!" + +#~ msgid "song is too long!" +#~ msgstr "utwór jest za długi!" + +#~ msgid "invalid instrument count!" +#~ msgstr "nieprawidłowa ilość instrumentów!" + +#~ msgid "invalid wavetable count!" +#~ msgstr "nieprawidłowa ilość tablic fal!" + +#~ msgid "invalid sample count!" +#~ msgstr "nieprawidłowa ilość sampli!" + +#~ msgid "invalid pattern count!" +#~ msgstr "nieprawidłowa ilość wzorców!" + +#~ msgid "unrecognized system ID %.2x!" +#~ msgstr "nierozpoznany indeks systemu %.2x!" + +#~ msgid "zero chips!" +#~ msgstr "zero układów!" + +#~ msgid "channel %d has too many effect columns! (%d)" +#~ msgstr "kanał %d ma zbyt wiele kolumn efektów! (%d)" + +#~ msgid "couldn't seek to chip %d flags!" +#~ msgstr "nie udało się przejść do falg układu %d!" + +#~ msgid "invalid flag header!" +#~ msgstr "nieprawidłowy nagłówek flag!" + +#~ msgid "couldn't read instrument directory" +#~ msgstr "nie udało się wczytać folderu z instrumentami" + +#~ msgid "invalid instrument directory data!" +#~ msgstr "nieprawidłowe dane folderu z instrumentami!!" + +#~ msgid "couldn't read wavetable directory" +#~ msgstr "nie udało się wczytać folderu z tablicami fal" + +#~ msgid "invalid wavetable directory data!" +#~ msgstr "nieprawidłowe dane folderu z tablicami fal!" + +#~ msgid "couldn't read sample directory" +#~ msgstr "nie udało się wczytać folderu z samplami" + +#~ msgid "invalid sample directory data!" +#~ msgstr "nieprawidłowe dane folderu z samplami!" + +#~ msgid "couldn't seek to subsong %d!" +#~ msgstr "nie udało się przejść do podutworu %d!" + +#~ msgid "invalid subsong header!" +#~ msgstr "nieprawidłowy nagłówek podutworu!" + +#~ msgid "couldn't seek to instrument %d!" +#~ msgstr "nie udało się przejść do instrumentu %d!" + +#~ msgid "invalid instrument header/data!" +#~ msgstr "nieprawidłowy nagłowek/dane instrumentu!" + +#~ msgid "couldn't seek to wavetable %d!" +#~ msgstr "nie udało się przejść do tablicy fal %d!" + +#~ msgid "couldn't seek to sample %d!" +#~ msgstr "nie udało się przejść do sampla %d!" + +#~ msgid "invalid sample header/data!" +#~ msgstr "nieprawidłowy nagłowek/dane sampla!" + +#~ msgid "couldn't seek to pattern in %x!" +#~ msgstr "nie udało się przejść do wzorca w %x!" + +#~ msgid "invalid pattern header!" +#~ msgstr "nieprawidłowy nagłówek wzorca!" + +#~ msgid "pattern channel out of range!" +#~ msgstr "kanał wzorca poza zakresem!" + +#~ msgid "pattern index out of range!" +#~ msgstr "indeks wzorca poza zakresem!" + +#~ msgid "pattern subsong out of range!" +#~ msgstr "wzorzec podutworu poza zakresem!" + +#~ msgid "incomplete file" +#~ msgstr "niepełny plik" + +#~ msgid "file is too small" +#~ msgstr "plik jest za mały" + +#~ msgid "not a .dmf/.fur/.fub song" +#~ msgstr "nie jest to plik .dmf/.fur/.fub" + +#~ msgid "unknown decompression error" +#~ msgstr "nieznany błąd dekompresji" + +#~ msgid "decompression error: %s" +#~ msgstr "błąd dekompresji: %s" + +#~ msgid "unknown decompression finish error" +#~ msgstr "nieznany błąd podczas zakończenia dekompresji" + +#~ msgid "decompression finish error: %s" +#~ msgstr "błąd podczas zakończenia dekompresji: %s" + +#~ msgid "not a compatible song/instrument" +#~ msgstr "nie jest to kompatybilny instrument/plik utworu" + +#~ msgid "maximum number of instruments is 25" +#~ msgstr "maksymalna ilość instrumentów wynosi 256" + +#~ msgid "maximum number of wavetables is 25" +#~ msgstr "maksymalna ilość tablic fal wynosi 256" + +#~ msgid "maximum number of samples is 25" +#~ msgstr "maksymalna ilość sampli wynosi 256" + +#~ msgid "did not read entire instrument file!" +#~ msgstr "nie wczytano całego pliku instrumentu!" + +#~ msgid "this instrument is made with a more recent version of Furnace!" +#~ msgstr "ten instrument został stworzony w nowszej wersji Furnace!" + +#~ msgid "unknown instrument format" +#~ msgstr "nieznany format instrumentu" + +#~ msgid "there is more data at the end of the file! what happened here!" +#~ msgstr "na końcu pliku znajduje się więcej danych! o co chodzi" + +#~ msgid "exactly %d bytes, if you are curious" +#~ msgstr "dokładnie %d bajtów, jeśli cię to ciekawi" + +#~ msgid "could not open file! (%s)" +#~ msgstr "nie udało się otworzyć pliku! (%s)" + +#~ msgid "could not get file length! (%s)" +#~ msgstr "nie udało się pobrać długości pliku! (%s)" + +#~ msgid "file is empty!" +#~ msgstr "plik jest pusty!" + +#~ msgid "file is invalid!" +#~ msgstr "plik jest niepoprawny!" + +#~ msgid "could not seek to beginning of file! (%s)" +#~ msgstr "nie udało się przejść do początku pliku! (%s)" + +#~ msgid "wait... is that right? no I don't think so..." +#~ msgstr "czekaj... to ma być w porządku? nie wydaje mi się..." + +#~ msgid "BRR sample is empty!" +#~ msgstr "sampel BRR jest pusty!" + +#~ msgid "possibly corrupt BRR sample!" +#~ msgstr "samplel BRR najprawdopodobniej jest uszkodzony!" + +#~ msgid "could not read file! (%s)" +#~ msgstr "nie udało się wczytać pliku! (%s)" + +#~ msgid "Furnace was not compiled with libsndfile!" +#~ msgstr "Furnace nie był skompliowanyz uzyciem libsndfile!" + +#~ msgid "could not open file! (%s %s)" +#~ msgstr "nie udało się otworzyć pliku! (%s %s)" + +#~ msgid "" +#~ "could not open file! (%s)\n" +#~ "if this is raw sample data, you may import it by right-clicking the Load " +#~ "Sample icon and selecting \"import raw\"." +#~ msgstr "" +#~ "nie udało się otworzyć pliku! (%s)\n" +#~ "Jeśli są to surowe dane PCM, spróbuj je zaimportować: kliknij ikonę " +#~ "\"Otwórz\" na liście sampli i wybierz opcję \"Importuj dane surowe\"." + +#~ msgid "this sample is too big! max sample size is 16777215." +#~ msgstr "" +#~ "ten samplel jest za duży! maksymalny rozmiar sampla wynosi 16777215." + +#~ msgid "GEMS BNK currently not supported." +#~ msgstr "GEMS BNK aktualnie nie jest wspierany" + +#~ msgid "this version is not supported by Furnace yet" +#~ msgstr "ta wersja jeszcze nie jest wspierana przez Furnace" + +#~ msgid "system not supported. running old version?" +#~ msgstr "niewspierany system. czy uruchomiona jest stara wersja programu?" + +#~ msgid "" +#~ "Yamaha YMU759 emulation is incomplete! please migrate your song to the " +#~ "OPL3 system." +#~ msgstr "" +#~ "Emulacja Yamaha YMU759 jest niekompletna! przenieś swój utwór na OPL3." + +#~ msgid "order at %d, %d out of range! (%d)" +#~ msgstr "wartość w macierzy wzorców %d, %d jest nieprawidłowa! (%d)" + +#~ msgid "file is corrupt or unreadable at operators" +#~ msgstr "plik jest uszkodzony bądź nieczytelny w sekcji operatorów" + +#~ msgid "file is corrupt or unreadable at wavetables" +#~ msgstr "plik jest uszkodzony bądź nieczytelny w sekcji tablic fal" + +#~ msgid "file is corrupt or unreadable at effect columns" +#~ msgstr "plik jest uszkodzony bądź nieczytelny w sekcji kolumn efektów" + +#~ msgid "file is corrupt or unreadable at samples" +#~ msgstr "plik jest uszkodzony bądź nieczytelny w sekcji sampli" + +#~ msgid "invalid version to save in! this is a bug!" +#~ msgstr "nieprawidłowa wersja do zapisywania! to jest błąd!" + +#~ msgid "multiple systems not possible on .dmf" +#~ msgstr "" +#~ "utwory wykorzystujące wiele systemów nie są wspierane przez format .dmf" + +#~ msgid "YMU759 song saving is not supported" +#~ msgstr "Zapisywania piosenek YMU759 nie jest wspierane" + +#~ msgid "Master System FM expansion not supported in 1.0/legacy .dmf!" +#~ msgstr "" +#~ "Rozszerzenie FM Master Systema nie jest wspierane w 1.0/legacy .dmf!" + +#~ msgid "NES + VRC7 not supported in 1.0/legacy .dmf!" +#~ msgstr "NES + VRC7 nie jest wspierany w 1.0/legacy .dmf!" + +#~ msgid "FDS not supported in 1.0/legacy .dmf!" +#~ msgstr "FDS nie jest wspierany w 1.0/legacy .dmf!" + +#~ msgid "this system is not possible on .dmf" +#~ msgstr "ten system jest niewspierany przez format .dmf" + +#~ msgid "maximum .dmf song length is 12" +#~ msgstr "мmaksymalna długość utworu .dmf wynosi 127" + +#~ msgid "maximum number of instruments in .dmf is 12" +#~ msgstr "maksymalna ilość instrumentów w .dmf wynosi 128" + +#~ msgid "maximum number of wavetables in .dmf is 6" +#~ msgstr "maksymalna ilość tablic fal w .dmf wynosi 64" + +#~ msgid "order %d, %d is out of range (0-127)" +#~ msgstr "wiersz matrycy wzorców %d, %d jest poza zakresem (0-127)" + +#~ msgid "only the currently selected subsong will be saved" +#~ msgstr "tylko obecnie wybrany podutwór zostanie zapisany" + +#~ msgid "grooves will not be saved" +#~ msgstr "wzory rytmów nie zostaną zapisane" + +#~ msgid "only the first two speeds will be effective" +#~ msgstr "zastosowane zostaną tylko dwie pierwsze wartości prędkości" + +#~ msgid ".dmf format does not support virtual tempo" +#~ msgstr "format .dmf nie wspier wirtualnego tempa" + +#~ msgid ".dmf format does not support tuning" +#~ msgstr "format .dmf nie wspiera strojenia (częstotliwośći nuty A-4)" + +#~ msgid "absolute duty/cutoff macro not available in .dmf!" +#~ msgstr "" +#~ "absolutne makra szerokości fali prostokątnej/punktu odcięcia nie są " +#~ "dostępne w .dmf!" + +#~ msgid "duty precision will be lost" +#~ msgstr "precyzja szerokoścui fal prostokątnych zostanie utracona" + +#~ msgid ".dmf format does not support arbitrary-pitch sample mode" +#~ msgstr "format .dmf nie wspiera trybu dowolnych wysokości sampli" + +#~ msgid "no FM macros in .dmf format" +#~ msgstr "format .dmf nie wspiera makr FM" + +#~ msgid "" +#~ ".dmf only supports volume or cutoff macro in C64, but not both. volume " +#~ "macro will be lost." +#~ msgstr "" +#~ "format .dmf wspiera makra głośności lub punktu odcięcia, ale nie na raz. " +#~ "makro głośności zostanie utracone." + +#~ msgid "note/macro release will be converted to note off!" +#~ msgstr "" +#~ "nuty zwolnienia/zwolnienia makr zostaną przekonwertowane na nuty " +#~ "puszczenia!" + +#~ msgid "samples' rates will be rounded to nearest compatible value" +#~ msgstr "" +#~ "częstotliwości sampli będą zaokrąglone do najbliższej, kompatybilnej " +#~ "wartości" + +#~ msgid "unknown instrument type %d!" +#~ msgstr "nieznany typ instrumentu %d!" + +#~ msgid "invalid header!" +#~ msgstr "niepoprawny nagłówek!" + +#~ msgid "incompatible version" +#~ msgstr "niekompatybilna wersja" + +#~ msgid "channel counts do not match" +#~ msgstr "ilości kanałów się nie zgadzają" + +#~ msgid "too many instruments/out of range" +#~ msgstr "zbyt wiele instrumentów/poza zakresem" + +#~ msgid "invalid instrument type" +#~ msgstr "nieprawidłowy typ instrumentu" + +#~ msgid "too many sequences" +#~ msgstr "zbyt wiele sekwencji (makr)" + +#~ msgid "sequences block version is too old" +#~ msgstr "wersja bloku sekwencji jest zbyt stara" + +#~ msgid "unknown block " +#~ msgstr "nieznany blok " + +#~ msgid "incomplete block " +#~ msgstr "niekompletny blok " + +#~ msgid " [VRC6 copy]" +#~ msgstr " [kopia dla VRC6]" + +#~ msgid " [VRC6 saw copy]" +#~ msgstr " [kopia dla piły VRC6]" + +#~ msgid " [NES copy]" +#~ msgstr " [kopia dla NES]" + +#~ msgid "GYBv3 file appears to have invalid data offsets." +#~ msgstr "Plik GTBv3 najpewniej zawiera niprawidłowe wskaźniki danych" + +#~ msgid "Invalid value found in patch file. %s" +#~ msgstr "Niepoprawne wartości znalezione w pliku %s" + +#~ msgid "S3I PCM samples currently not supported." +#~ msgstr "S3I: Sample PCM aktualnie są niewspierane" + +#~ msgid "VGM version is too low" +#~ msgstr "Wersja VGM jest zbyt niska" + +#~ msgid "Chip Memory" +#~ msgstr "Pamięć układu" + +#~ msgid "Sample ROM" +#~ msgstr "ROM na sample" + +#~ msgid "Sample Memory" +#~ msgstr "Pamięć na sample" + +#~ msgid "SPC/DSP Memory" +#~ msgstr "Pamięć SPC/DSP" + +#~ msgid "Sample RAM" +#~ msgstr "RAM na sample" + +#~ msgid "End of Sample" +#~ msgstr "Koniec sampla" + +#~ msgid "Wavetable RAM" +#~ msgstr "RAM na tablice fal" + +#~ msgid "Reserved wavetable RAM" +#~ msgstr "Zarezerwowany RAM na tablice fal" + +#~ msgid "Phrase Book" +#~ msgstr "Księga fraz" + +#~ msgid "Channel %d (load)" +#~ msgstr "Kanał %d (wczytywanie)" + +#~ msgid "Channel %d (play)" +#~ msgstr "Kanał %d (odtwarzanie)" + +#~ msgid "Channel %d" +#~ msgstr "Kanał %d" + +#~ msgid "Buffer %d Left" +#~ msgstr "Bufor %d lewy" + +#~ msgid "Buffer %d Right" +#~ msgstr "Bufor %d prawy" + +#~ msgid "Registers" +#~ msgstr "Rejestry" + +#~ msgid "State" +#~ msgstr "Status" + +#~ msgid "Echo Buffer" +#~ msgstr "Bufor echo" + +#~ msgid "Mix/Echo Buffer" +#~ msgstr "Bufor miksowania/echo" + +#~ msgid "Main Memory" +#~ msgstr "Główna pamięć" + +#~ msgid "16xx: Set raw period higher byte" +#~ msgstr "16xx: Ustaw wysoki bajt absolutnego okresu" + +#~ msgid "22xx: Pulse width slide up" +#~ msgstr "22xx: Narastanie szerokości fali prostokątnej" + +#~ msgid "23xx: Pulse width slide down" +#~ msgstr "23xx: Opadanie szerokości fali prostokątnej" + +#~ msgid "24xx: Cutoff slide up" +#~ msgstr "24xx: Narastanie punktu odcięcia" + +#~ msgid "25xx: Cutoff slide down" +#~ msgstr "25xx: Opadanie punktu odcięcia" + +#~ msgid "13xx: Set waveform (local)" +#~ msgstr "13xx: Ustaw kształt fali (lokalny)" + +#~ msgid "11xx: Set raw period (0-1F)" +#~ msgstr "11xx: Ustaw absolutny okres (0-1F)" + +#~ msgid "11xx: Set waveform (local)" +#~ msgstr "11xx: Ustaw kształt fali (lokalny)" + +#~ msgid "17xx: Pulse width slide up" +#~ msgstr "17xx: Narastanie szerokości fali prostokątnej" + +#~ msgid "18xx: Pulse width slide down" +#~ msgstr "18xx: Opadanie szerokości fali prostokątnej" + +#~ msgid "19xx: Cutoff slide up" +#~ msgstr "19xx: Narastanie punktu odcięcia" + +#~ msgid "1Axx: Cutoff slide down" +#~ msgstr "1Axx: Opadanie punktu odcięcia" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "15xx: Set waveform (local)" +#~ msgstr "15xx: Ustaw kształt fali (lokalny)" + +#~ msgid "18xx: Set waveform (local)" +#~ msgstr "18xx: Ustaw kształt fali (lokalny)" + +#~ msgid "14xx: Set waveform (local)" +#~ msgstr "14xx: Ustaw kształt fali (lokalny)" + +#~ msgid "17xx: Set waveform (local)" +#~ msgstr "17xx: Ustaw kształt fali (lokalny)" + +#~ msgid "16xx: Set waveform (local)" +#~ msgstr "16xx: Ustaw kształt fali (lokalny)" + +#~ msgid "17xx: Select waveform (local)" +#~ msgstr "17xx: Ustaw kształt fali (lokalny)" + +#~ msgid "" +#~ "cost-reduced version of the OPM with a different register layout and no " +#~ "stereo...\n" +#~ "...but it has a built-in AY-3-8910! (actually an YM2149)\n" +#~ "this one is in Extended Channel mode, which turns the third FM channel " +#~ "into four operators with independent notes/frequencies.\n" +#~ "this one includes CSM mode control for special effects on Channel 3." +#~ msgstr "" +#~ "tańsza wersja OPM z innym układem rejestrów i bez stereo...\n" +#~ "...ale za to z wbudowanym AY-3-8910! (tak naprawdę YM2149)\n" +#~ "jest to układ w trybie rozszerzonego kanału, która zamienia trzeci kanał " +#~ "FM w cztery operatory z niezależnymi nutami/częstotliwościami\n" +#~ "ten układ posiada kontrolę trybu CSM dla efektów specjalnych na trzecim " +#~ "kanale." + +#~ msgid "" +#~ "OPN but twice the FM channels, stereo makes a come-back and has rhythm " +#~ "and ADPCM channels.\n" +#~ "this one is in Extended Channel mode, which turns the third FM channel " +#~ "into four operators with independent notes/frequencies.\n" +#~ "this one includes CSM mode control for special effects on Channel 3." +#~ msgstr "" +#~ "OPN, ale z dwa razy większą ilością kanałów FM, stereo powrca, są też " +#~ "kanały perkusji i ADPCM.\n" +#~ "Эjest to układ w trybie rozszerzonego kanału, która zamienia trzeci kanał " +#~ "FM w cztery operatory z niezależnymi nutami/częstotliwościami.\n" +#~ "ten układ posiada kontrolę trybu CSM dla efektów specjalnych na trzecim " +#~ "kanale." + +#~ msgid "13xx: Set raw period" +#~ msgstr "13xx: Ustaw absolutny okres" + +#~ msgid "14xx: Set raw period (higher byte; only for 16-bit mode)" +#~ msgstr "" +#~ "14xx: Ustaw absolutny okres (wysoki bajt; tylko w trybie 16-bitowym)" + +#~ msgid "" +#~ "like OPLL, but even more cost reductions applied. three less FM channels, " +#~ "and no drums mode..." +#~ msgstr "" +#~ "jak OPLL, ale jeszcze bardziej wykastrowany. trzy kanały mniej, brak " +#~ "trybu perkusyjnego..." + +#~ msgid "" +#~ "this chip was used in SNK's Neo Geo arcade board and video game console.\n" +#~ "it's like OPNA but the rhythm channels are ADPCM channels and two FM " +#~ "channels went missing.\n" +#~ "this one is in Extended Channel mode, which turns the second FM channel " +#~ "into four operators with independent notes/frequencies.\n" +#~ "this one includes CSM mode control for special effects on Channel 2." +#~ msgstr "" +#~ "układ ten był używany w automatach i konsolach do gier Neo Geo firmy " +#~ "SNK.\n" +#~ "jest podobny do OPNA, ale kanały perkusyjne są teraz kanałami ADPCM i " +#~ "brakuje dwóch kanałów FM.\n" +#~ "jest to układ w trybie rozszerzonego kanału, która zamienia drugi kanał " +#~ "FM w cztery operatory z niezależnymi nutami/częstotliwościami.\n" +#~ "ten układ posiada kontrolę trybu CSM dla efektów specjalnych na trzecim " +#~ "kanale." + +#~ msgid "the OPLL chip but with drums mode turned on." +#~ msgstr "układ OPLL z włączonym trybem perkusji." + +#~ msgid "" +#~ "so Taito asked Yamaha if they could get the two missing FM channels back, " +#~ "and Yamaha gladly provided them with this chip.\n" +#~ "this one is in Extended Channel mode, which turns the third FM channel " +#~ "into four operators with independent notes/frequencies.\n" +#~ "this one includes CSM mode control for special effects on Channel 3." +#~ msgstr "" +#~ "a więc Taito poprosiło Yamahę o dodanie do YM2610 dwóch brakujących " +#~ "kanałów FM, a Yamaha z przyjemnością dostarczyła ów układ.\n" +#~ "jest to układ w trybie rozszerzonego kanału, która zamienia trzeci kanał " +#~ "FM w cztery operatory z niezależnymi nutami/częstotliwościami.\n" +#~ "ten układ posiada kontrolę trybu CSM dla efektów specjalnych na trzecim " +#~ "kanale." + +#~ msgid "11xx: Select waveform (local)" +#~ msgstr "11xx: Ustaw kształt fali (lokalny)" + +#~ msgid "" +#~ "this chip is mostly known for being in the Sega Genesis (but it also was " +#~ "on the FM Towns computer).\n" +#~ "this system uses software mixing to provide two sample channels.\n" +#~ "this one is in Extended Channel mode, which turns the third FM channel " +#~ "into four operators with independent notes/frequencies.\n" +#~ "this one includes CSM mode control for special effects on Channel 3." +#~ msgstr "" +#~ "układ ten znany jest głównie z tego, że znajduje się w Sega Mega Drive " +#~ "(ale był również używany w komputerze FM Towns).\n" +#~ "w ta wersja wykorzystuje programowe miksowanie sampli, dzięki czemu można " +#~ "odtwarzać dwa kanały sampli na raz.\n" +#~ "jest to wersja która zamienia trzeci kanał FM w cztery operatory z " +#~ "niezależnymi nutami/częstotliwościami.\n" +#~ "ta wersja posiada kontrolę trybu CSM dla efektów specjalnych na trzecim " +#~ "kanale" + +#~ msgid "11xx: Raw frequency (0-3E)" +#~ msgstr "11xx: Absulutna częstotliwość (0-3E)" + +#~ msgid "" +#~ "first Ensoniq chip used in their synths and Apple IIGS computer. Has 32 " +#~ "hard-panned 8-bit wavetable/sample channels, can do oscillator sync (like " +#~ "SID) and amplitude modulation. Can have up to 128 KiB (2 banks of 64 KiB) " +#~ "of memory for wavetables/samples.\n" +#~ "As Robert Yannes (SID chip creator) said, it's more or less what SID chip " +#~ "could be if he was given enough time for its development." +#~ msgstr "" +#~ "pierwszy układ scalony firmy Ensoniq, wykorzystywany w syntezatorach i " +#~ "komputerze Apple IIGS. Posiada 32 kanały syntezy tablicowej / sampli z " +#~ "twardym panningiem, synchronizacją oscylatorów (tak jak SID) i modulacją " +#~ "amplitudy. Może mieć do 128 KiB (2 banki po 64 KiB każdy) pamięci na " +#~ "tablice fal/sample.\n" +#~ "Jak powiedział Robert Yannes (twórca układu SID), ES5503 jest mniej " +#~ "więcej tym, czym mógłby być układ SID, gdyby miał wystarczająco dużo " +#~ "czasu na jego opracowanie." + +#~ msgid "11xx: Set number of enabled oscillators (2-1F)" +#~ msgstr "11xx: Ustaw ilość włączonych oscylatorów (2-1F)" + +#~ msgid "12xx: Set oscillator output (0-7, 0=left, 1=right)" +#~ msgstr "12xx: Ustaw wyjście sygnału oscylatora (0-7, 0=lewo, 1=prawo)" + +#~ msgid "13xx: Set wave/sample length (0-7, 0=256, 1=512, 2=1024, etc.)" +#~ msgstr "13xx: Ustaw długości fali/sampla (0-7, 0=256, 1=512, 2=1024 i.t.d.)" + +#~ msgid "14xx: Set wave/sample position in memory (xx*256 offset)" +#~ msgstr "14xx: Ustaw położenie fali/sampla w pamięci (przesunięcie xx*256)" + +#~ msgid "15xx: Set oscillator mode (0-3)" +#~ msgstr "15xx: Ustaw tryb oscylatora (0-3)" + +#~ msgid "" +#~ "this chip was featured in the Enterprise 128 computer. it is similar to " +#~ "POKEY, but with stereo output, more features and frequency precision and " +#~ "the ability to turn left or right (or both) channel into a 6-bit DAC for " +#~ "sample playback." +#~ msgstr "" +#~ "Układ ten znajdował się w komputerze Enterprise 128. Jest podobny do " +#~ "POKEY, ale ma dźwięk stereo, więcej funkcji, dokładniejsze dostrajanie " +#~ "częstotliwości i możliwość zamiany lewego lub prawego (lub obu) kanału w " +#~ "6-bitowy przetwornik cyfrowo-analogowy do odtwarzania sampli." + +#~ msgid "" +#~ "a fictional sound chip by LTVA. like SID, but with many of its problems " +#~ "fixed. also features extended functionality like more wave mixing modes, " +#~ "tonal noise, filter and volume per channel." +#~ msgstr "" +#~ "fikcyjny układ dźwiękowy stworzony przez LTVA. podobny do SID, ale z " +#~ "wieloma naprawionymi problemami. ten układ ma również dodatkowe funkcje, " +#~ "takie jak nowe metody miksowania fal, melodyjny szum, oddzielna regulacja " +#~ "głośności i filtr na każdym kanale." + +#~ msgid "" +#~ "a fictional sound chip by Euly. similar to Ricoh 2A03, but all the duty " +#~ "cycles are different, noise has 32 pitches instead of 16 and you have " +#~ "four hard-coded waveforms on triangle channel." +#~ msgstr "" +#~ "fikcyjny układ dźwiękowy stworzony przez Euly. podobny do Ricoh 2A03, ale " +#~ "wszytskie szerokości fali prostokątnej są inne, szum ma 32 możliwe " +#~ "częstotliwości do wyboru (zamiast 16), masz też również 4 pre-definiowany " +#~ "kształty fal na kanale 3." + +#~ msgid "" +#~ "12xx: Set duty cycle/noise mode (pulse: 0 to 3; noise: 0 or 1, wave: 0 to " +#~ "3)" +#~ msgstr "" +#~ "12xx: Ustaw szerokość fali prostokątnej/tryb szumu (fala prosokątna.: " +#~ "0-3; szum: 0 lub 1; fala: 0-3)" + +#~ msgid "19xx: Set wave linear counter (0 to 7F; 80 and higher halt)" +#~ msgstr "19xx: Ustaw liniowy licznik fali (0-7F; 80 i wyższe zatrzymują)" + +#~ msgid "" +#~ "additional PCM FIFO channels in Game Boy Advance driven by software " +#~ "mixing to provide up to sixteen sample channels." +#~ msgstr "" +#~ "dodatkowe kanały PCM typu FIFO znajdujące się w Game Boy'u Advance " +#~ "sterowane przez główny procesor, aby uzyskać 16 kanałów PCM." + +#~ msgid "1Fxx: Set ume (0 to 7F)" +#~ msgstr "1Fxx: Ustaw globalną głośność (0-7F)" + +#~ msgid "" +#~ "10xx: Set wave (bits: 0: noise, 1: pulse, 2: triangle, 3: sawtooth, 4: " +#~ "metallic noise, 5: sine)" +#~ msgstr "" +#~ "10xx: Ustaw kształt fali (bity: 0: szum, 1: fala prostokątna, 2: fala " +#~ "trójkątna, 3: piłokształtna, 4: \"metaliczny\" szum, 5: sinusoida)" + +#~ msgid "11xy: PWM (pulsolo) with speed x and depth y" +#~ msgstr "11xy: PWM (pulsolo) z szybkością (x) i głębokością (y)" + +#~ msgid "13xx: Pulse width up" +#~ msgstr "13xx: Szerokość fali prostokątnej w górę" + +#~ msgid "14xx: Pulse width down" +#~ msgstr "14xx: Szerokość fali prostokątnej w dół" + +#~ msgid "15xx: Set filter cutoff" +#~ msgstr "15xx: Ustaw punkt odcięcia filtra" + +#~ msgid "16xx: Set volume" +#~ msgstr "16xx: Ustaw głośność" + +#~ msgid "17xx: Toggle filter" +#~ msgstr "17xx: Wł./wył filtr" + +#~ msgid "18xx: Set filter mode" +#~ msgstr "18xx: Ustaw tryb filtra" + +#~ msgid "19xx: Phase reset" +#~ msgstr "19xx: Reset fazy" + +#~ msgid "1Axx: Filter cutoff up" +#~ msgstr "1Axx: Punkt odcięcia filtra w górę" + +#~ msgid "1Bxx: Filter cutoff down" +#~ msgstr "1Bxx: unkt odcięcia filtra w dół" + +#~ msgid "1Cxx: Set filter resonance" +#~ msgstr "1Cxx: Ustaw rezonans filtra" + +#~ msgid "1Dxx: Filter resonance up" +#~ msgstr "1Dxx: Rezonans w górę" + +#~ msgid "1Exx: Filter resonance down" +#~ msgstr "1Exx: Rezonans w górę" + +#~ msgid "1Fxx: Ring mod source (FF = self)" +#~ msgstr "1Fxx: Ustaw sygnał źródłowy modulacji kołowej (FF = automodulacja)" + +#~ msgid "20xx: Hard sync source (FF = self)" +#~ msgstr "20xx: Ustaw źródło synchronizacji oscylatora (FF = automodulacja)" + +#~ msgid "21xx: Set attack speed" +#~ msgstr "21xx: Ustaw czas narastania" + +#~ msgid "22xx: Set decay speed" +#~ msgstr "22xx: Ustaw czas opadania" + +#~ msgid "23xx: Set sustain level" +#~ msgstr "23xx: Ustaw poziom podtrzymania" + +#~ msgid "24xx: Set release rate" +#~ msgstr "24xx: Ustaw prędkość zwolnienia" + +#~ msgid "25xx: Restart instrument program" +#~ msgstr "25xx: Zrestartuj parametry instrumentu" + +#~ msgid "26xx: Portamento up (semitones)" +#~ msgstr "26xx: Portamento w górę (w półtonach)" + +#~ msgid "27xx: Portamento down (semitones)" +#~ msgstr "27xx: Portamento w dół (w półtonach)" + +#~ msgid "28xx: Absolute arpeggio note" +#~ msgstr "28xx: Absolutna nuta arpeggio" + +#~ msgid "29xx: Trigger envelope release" +#~ msgstr "29xx: Wywołaj zwolnienie obwiedni" + +#~ msgid "help! what's going on!" +#~ msgstr "pomocy! co się dzieje?" + +#~ msgid "Sunsoft 5B standalone" +#~ msgstr "Sunsoft 5B oddzielnie" + +#~ msgid "Sunsoft 5B standalone (PAL)" +#~ msgstr "Sunsoft 5B oddzielnie (PAL)" + +#~ msgid "Overclocked Sunsoft 5B" +#~ msgstr "Podkręcony Sunsoft 5B" + +#~ msgid "NTSC-J Sega Master System + drums" +#~ msgstr "NTSC-J Sega Master System + perkusja" + +#~ msgid "MSX-MUSIC + drums" +#~ msgstr "MSX-MUSIC + perkusja" + +#~ msgid "Commodore 64 with dual 6581" +#~ msgstr "Commodore 64 z dwoma 6581" + +#~ msgid "Commodore 64 with dual 8580" +#~ msgstr "Commodore 64 z dwoma 8580" + +#~ msgid "YM2151 + SegaPCM Arcade (compatibility)" +#~ msgstr "YM2151 + SegaPCM Arcade (kompatybilny)" + +#~ msgid "YM2151 + SegaPCM Arcade" +#~ msgstr "YM2151 + SegaPCM Arcade" + +#~ msgid "Game Boy with AY expansion" +#~ msgstr "Game Boy z rozszerzeniem AY" + +#~ msgid "multi-system" +#~ msgstr "muti-system" + +#~ msgid "15xx: Set raw period" +#~ msgstr "15xx: Ustaw absolutny okres" + +#~ msgid "16xx: Set raw period higher nybble (0-F)" +#~ msgstr "16xx: Ustaw wyższy półbajt absolutnego okresu (0-F)" + +#~ msgid "Yamaha YM2608 (OPNA) Extended Channel 3 and CSM" +#~ msgstr "Yamaha YM2608 (OPNA) z rozszerzonym kanałem 3 i CSM" + +#~ msgid "CH1" +#~ msgstr "KN1" + +#~ msgid "CH2" +#~ msgstr "KN2" + +#~ msgid "CH3" +#~ msgstr "KN3" + +#~ msgid "CH4" +#~ msgstr "KN4" + +#~ msgid "CH5" +#~ msgstr "KN5" + +#~ msgid "CH6" +#~ msgstr "KN6" + +#~ msgid "CH7" +#~ msgstr "KN7" + +#~ msgid "CH8" +#~ msgstr "KN8" + +#~ msgid "CH9" +#~ msgstr "KN9" + +#~ msgid "NO" +#~ msgstr "SZ" + +#~ msgid "N1" +#~ msgstr "SZ1" + +#~ msgid "N2" +#~ msgstr "SZ2" + +#~ msgid "N3" +#~ msgstr "SZ3" + +#~ msgid "SL" +#~ msgstr "SP" + +#~ msgid "S1" +#~ msgstr "P1" + +#~ msgid "S2" +#~ msgstr "P2" + +#~ msgid "S3" +#~ msgstr "P3" + +#~ msgid "S4" +#~ msgstr "P4" + +#~ msgid "S5" +#~ msgstr "P5" + +#~ msgid "S6" +#~ msgstr "P6" + +#~ msgid "P1" +#~ msgstr "SA1" + +#~ msgid "P2" +#~ msgstr "SA2" + +#~ msgid "P3" +#~ msgstr "SA3" + +#~ msgid "P4" +#~ msgstr "SA4" + +#~ msgid "P5" +#~ msgstr "SA5" + +#~ msgid "P6" +#~ msgstr "SA6" + +#~ msgid "P7" +#~ msgstr "SA7" + +#~ msgid "P8" +#~ msgstr "SA8" + +#~ msgid "P9" +#~ msgstr "SA9" + +#~ msgid "P10" +#~ msgstr "SA10" + +#~ msgid "P11" +#~ msgstr "SA11" + +#~ msgid "P12" +#~ msgstr "SA12" + +#~ msgid "P13" +#~ msgstr "SA13" + +#~ msgid "P14" +#~ msgstr "SA14" + +#~ msgid "P15" +#~ msgstr "SA15" + +#~ msgid "P16" +#~ msgstr "SA16" + +#~ msgid "P17" +#~ msgstr "SA17" + +#~ msgid "P18" +#~ msgstr "SA18" + +#~ msgid "P19" +#~ msgstr "SA19" + +#~ msgid "P20" +#~ msgstr "SA20" + +#~ msgid "P21" +#~ msgstr "SA21" + +#~ msgid "P22" +#~ msgstr "SA22" + +#~ msgid "P23" +#~ msgstr "SA23" + +#~ msgid "P24" +#~ msgstr "SA24" + +#~ msgid "BD" +#~ msgstr "BB" + +#~ msgid "SD" +#~ msgstr "WB" + +#~ msgid "TP" +#~ msgstr "TL" + +#~ msgid "HH" +#~ msgstr "HH" + +#~ msgid "TM" +#~ msgstr "TM" + +#~ msgid "RM" +#~ msgstr "RM" + +#~ msgid "VS" +#~ msgstr "VS" + +#~ msgid "TR" +#~ msgstr "TR" + +#~ msgid "DMC" +#~ msgstr "DMC" + +#~ msgid "WA" +#~ msgstr "FA" diff --git a/po/pt_BR.po b/po/pt_BR.po new file mode 100644 index 000000000..7465be613 --- /dev/null +++ b/po/pt_BR.po @@ -0,0 +1,20169 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: furnace 0.6.3\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: src/engine/sysDef.cpp:428 src/engine/sysDef.cpp:441 +msgid "20xx: Set channel mode (bit 0: square; bit 1: noise; bit 2: envelope)" +msgstr "" +"20xx: Definir modo do canal (bit 0: onda quadrada; bit 1: ruído; bit 2: " +"envelope)" + +#: src/engine/sysDef.cpp:429 +msgid "21xx: Set noise frequency (0 to 1F)" +msgstr "21xx: Definir frequência do ruído (0 a 1F)" + +#: src/engine/sysDef.cpp:430 src/engine/sysDef.cpp:443 +msgid "22xy: Set envelope mode (x: shape, y: enable for this channel)" +msgstr "" +"22xy: Definir modo do envelope (x: formato, y: habilitar para este canal)" + +#: src/engine/sysDef.cpp:431 src/engine/sysDef.cpp:444 +msgid "23xx: Set envelope period low byte" +msgstr "23xx: Definir byte inferior do período do envelope" + +#: src/engine/sysDef.cpp:432 src/engine/sysDef.cpp:445 +msgid "24xx: Set envelope period high byte" +msgstr "24xx: Definir byte superior do período do envelope" + +#: src/engine/sysDef.cpp:433 src/engine/sysDef.cpp:446 +#: src/engine/sysDef.cpp:1599 +msgid "25xx: Envelope slide up" +msgstr "25xx: Slide de envelope para cima" + +#: src/engine/sysDef.cpp:434 src/engine/sysDef.cpp:447 +#: src/engine/sysDef.cpp:1600 +msgid "26xx: Envelope slide down" +msgstr "26xx: Slide de envelope para baixo" + +#: src/engine/sysDef.cpp:435 src/engine/sysDef.cpp:448 +#: src/engine/sysDef.cpp:1601 +msgid "29xy: Set auto-envelope (x: numerator; y: denominator)" +msgstr "29xy: Definir envelope automático (x: numerador; y: denominador)" + +#: src/engine/sysDef.cpp:436 src/engine/sysDef.cpp:449 +msgid "2Exx: Write to I/O port A" +msgstr "2Exx: Escrever na porta E/S A" + +#: src/engine/sysDef.cpp:437 src/engine/sysDef.cpp:450 +msgid "2Fxx: Write to I/O port B" +msgstr "2Fxx: Escrever na porta E/S B" + +#: src/engine/sysDef.cpp:442 +msgid "21xx: Set noise frequency (0 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:451 +msgid "12xx: Set duty cycle (0 to 8)" +msgstr "12xx: Definir ciclo de trabalho (0 a 8)" + +#: src/engine/sysDef.cpp:453 +msgid "27xx: Set noise AND mask" +msgstr "27xx: Definir máscara AND do ruído" + +#: src/engine/sysDef.cpp:454 +msgid "28xx: Set noise OR mask" +msgstr "28xx: Definir máscara OR do ruído" + +#: src/engine/sysDef.cpp:455 +msgid "" +"2Cxy: Automatic noise frequency (x: mode (0: disable, 1: freq, 2: freq + OR " +"mask); y: offset)" +msgstr "" + +#: src/engine/sysDef.cpp:456 +msgid "2Dxx: NOT TO BE EMPLOYED BY THE COMPOSER" +msgstr "2Dxx: NÃO É PARA SER USADO PELO COMPOSITOR" + +#: src/engine/sysDef.cpp:460 +msgid "30xx: Toggle hard envelope reset on new notes" +msgstr "30xx: Alternar reinício brusco do envelope em novas notas" + +#: src/engine/sysDef.cpp:465 +msgid "18xx: Toggle extended channel 3 mode" +msgstr "18xx: Alternar modo de canal 3 estendido" + +#: src/engine/sysDef.cpp:470 src/engine/sysDef.cpp:766 +#: src/engine/sysDef.cpp:1025 src/engine/sysDef.cpp:1272 +#: src/engine/sysDef.cpp:1593 +msgid "17xx: Toggle PCM mode (LEGACY)" +msgstr "17xx: Alternar modo PCM (LEGADO)" + +#: src/engine/sysDef.cpp:471 src/engine/sysDef.cpp:1653 +#: src/engine/sysDef.cpp:1963 +msgid "DFxx: Set sample playback direction (0: normal; 1: reverse)" +msgstr "DFxx: Definir direção da reprodução de samples (0: normal; 1: reversa)" + +#: src/engine/sysDef.cpp:476 +msgid "18xx: Toggle drums mode (1: enabled; 0: disabled)" +msgstr "18xx: Alternar modo bateria (1: habilitado; 0: desabilitado)" + +#: src/engine/sysDef.cpp:480 src/engine/sysDef.cpp:554 +#: src/engine/sysDef.cpp:575 +msgid "11xx: Set feedback (0 to 7)" +msgstr "11xx: Definir feedback (0 a 7)" + +#: src/engine/sysDef.cpp:481 +msgid "12xx: Set level of operator 1 (0 highest, 7F lowest)" +msgstr "12xx: Definir nível do operador 1 (0 é o mais alto, 7F o mais baixo)" + +#: src/engine/sysDef.cpp:482 +msgid "13xx: Set level of operator 2 (0 highest, 7F lowest)" +msgstr "13xx: Definir nível do operador 2 (0 é o mais alto, 7F o mais baixo)" + +#: src/engine/sysDef.cpp:483 +msgid "14xx: Set level of operator 3 (0 highest, 7F lowest)" +msgstr "14xx: Definir nível do operador 3 (0 é o mais alto, 7F o mais baixo)" + +#: src/engine/sysDef.cpp:484 +msgid "15xx: Set level of operator 4 (0 highest, 7F lowest)" +msgstr "15xx: Definir nível do operador 4 (0 é o mais alto, 7F o mais baixo)" + +#: src/engine/sysDef.cpp:485 src/engine/sysDef.cpp:580 +#: src/engine/sysDef.cpp:635 +msgid "16xy: Set operator multiplier (x: operator from 1 to 4; y: multiplier)" +msgstr "" +"16xy: Definir multiplicador do operador (x: operador de 1 a 4; y: " +"multiplicador)" + +#: src/engine/sysDef.cpp:486 +msgid "19xx: Set attack of all operators (0 to 1F)" +msgstr "19xx: Definir ataque de todos os operadores (0 a 1F)" + +#: src/engine/sysDef.cpp:487 +msgid "1Axx: Set attack of operator 1 (0 to 1F)" +msgstr "1Axx: Definir ataque do operador 1 (0 a 1F)" + +#: src/engine/sysDef.cpp:488 +msgid "1Bxx: Set attack of operator 2 (0 to 1F)" +msgstr "1Bxx: Definir ataque do operador 2 (0 a 1F)" + +#: src/engine/sysDef.cpp:489 +msgid "1Cxx: Set attack of operator 3 (0 to 1F)" +msgstr "1Cxx: Definir ataque do operador 3 (0 a 1F)" + +#: src/engine/sysDef.cpp:490 +msgid "1Dxx: Set attack of operator 4 (0 to 1F)" +msgstr "1Dxx: Definir ataque do operador 4 (0 a 1F)" + +#: src/engine/sysDef.cpp:491 src/engine/sysDef.cpp:588 +#: src/engine/sysDef.cpp:656 +msgid "50xy: Set AM (x: operator from 1 to 4 (0 for all ops); y: AM)" +msgstr "50xy: Definir AM (x: operador de 1 a 4 (0 para todos os ops.); y: AM)" + +#: src/engine/sysDef.cpp:492 src/engine/sysDef.cpp:589 +#: src/engine/sysDef.cpp:657 +msgid "" +"51xy: Set sustain level (x: operator from 1 to 4 (0 for all ops); y: sustain)" +msgstr "" +"51xy: Definir nível de sustentação (x: operador de 1 a 4 (0 para todos os " +"ops.); y: sustentação)" + +#: src/engine/sysDef.cpp:493 src/engine/sysDef.cpp:590 +#: src/engine/sysDef.cpp:658 +msgid "52xy: Set release (x: operator from 1 to 4 (0 for all ops); y: release)" +msgstr "" +"52xy: Definir repouso (x: operador de 1 a 4 (0 para todos os ops.); y: " +"repouso)" + +#: src/engine/sysDef.cpp:494 +msgid "" +"53xy: Set detune (x: operator from 1 to 4 (0 for all ops); y: detune where 3 " +"is center)" +msgstr "" +"53xy: Definir desafinação (x: operador de 1 a 4 (0 para todos os ops.); y: " +"desafinação, onde 3 é o centro)" + +#: src/engine/sysDef.cpp:495 src/engine/sysDef.cpp:592 +#: src/engine/sysDef.cpp:660 +msgid "" +"54xy: Set envelope scale (x: operator from 1 to 4 (0 for all ops); y: scale " +"from 0 to 3)" +msgstr "" +"54xy: Definir escalonamento do envelope (x: operador de 1 a 4 (0 para todos " +"os ops.); y: escala de 0 a 3)" + +#: src/engine/sysDef.cpp:496 +msgid "56xx: Set decay of all operators (0 to 1F)" +msgstr "56xx: Definir decaimento de todos os operadores (0 a 1F)" + +#: src/engine/sysDef.cpp:497 +msgid "57xx: Set decay of operator 1 (0 to 1F)" +msgstr "57xx: Definir decaimento do operador 1 (0 a 1F)" + +#: src/engine/sysDef.cpp:498 +msgid "58xx: Set decay of operator 2 (0 to 1F)" +msgstr "58xx: Definir decaimento do operador 2 (0 a 1F)" + +#: src/engine/sysDef.cpp:499 +msgid "59xx: Set decay of operator 3 (0 to 1F)" +msgstr "59xx: Definir decaimento do operador 3 (0 a 1F)" + +#: src/engine/sysDef.cpp:500 +msgid "5Axx: Set decay of operator 4 (0 to 1F)" +msgstr "5Axx: Definir decaimento do operador 4 (0 a 1F)" + +#: src/engine/sysDef.cpp:501 +msgid "5Bxx: Set decay 2 of all operators (0 to 1F)" +msgstr "5Bxx: Definir decaimento 2 de todos os operadores (0 a 1F)" + +#: src/engine/sysDef.cpp:502 +msgid "5Cxx: Set decay 2 of operator 1 (0 to 1F)" +msgstr "5Cxx: Definir decaimento 2 do operador 1 (0 a 1F)" + +#: src/engine/sysDef.cpp:503 +msgid "5Dxx: Set decay 2 of operator 2 (0 to 1F)" +msgstr "5Dxx: Definir decaimento 2 do operador 2 (0 a 1F)" + +#: src/engine/sysDef.cpp:504 +msgid "5Exx: Set decay 2 of operator 3 (0 to 1F)" +msgstr "5Exx: Definir decaimento 2 do operador 3 (0 a 1F)" + +#: src/engine/sysDef.cpp:505 +msgid "5Fxx: Set decay 2 of operator 4 (0 to 1F)" +msgstr "5Fxx: Definir decaimento 2 do operador 4 (0 a 1F)" + +#: src/engine/sysDef.cpp:510 +msgid "10xx: Set noise frequency (xx: value; 0 disables noise)" +msgstr "10xx: Definir frequência do ruído (xx: valor; 0 desabilita o ruído)" + +#: src/engine/sysDef.cpp:511 +msgid "17xx: Set LFO speed" +msgstr "17xx: Definir velocidade do LFO" + +#: src/engine/sysDef.cpp:512 +msgid "18xx: Set LFO waveform (0 saw, 1 square, 2 triangle, 3 noise)" +msgstr "" +"18xx: Definir forma de onda do LFO (0 serra, 1 quadrada, 2 triângulo, 3 " +"ruído)" + +#: src/engine/sysDef.cpp:513 +msgid "1Exx: Set AM depth (0 to 7F)" +msgstr "1Exx: Definir profundidade do AM (0 a 7F)" + +#: src/engine/sysDef.cpp:514 +msgid "1Fxx: Set PM depth (0 to 7F)" +msgstr "1Fxx: Definir profundidade do PM (0 a 7F)" + +#: src/engine/sysDef.cpp:515 +msgid "" +"55xy: Set detune 2 (x: operator from 1 to 4 (0 for all ops); y: detune from " +"0 to 3)" +msgstr "" +"55xy: Definir desafinação 2 (x: operador de 1 a 4 (0 para todos os ops.); y: " +"desafinação de 0 a 3)" + +#: src/engine/sysDef.cpp:520 +msgid "24xx: Set LFO 2 speed" +msgstr "24xx: Definir velocidade do LFO 2" + +#: src/engine/sysDef.cpp:521 +msgid "25xx: Set LFO 2 waveform (0 saw, 1 square, 2 triangle, 3 noise)" +msgstr "" +"25xx: Definir forma de onda do LFO 2 (0 serra, 1 quadrada, 2 triângulo, 3 " +"ruído)" + +#: src/engine/sysDef.cpp:522 +msgid "26xx: Set AM 2 depth (0 to 7F)" +msgstr "26xx: Definir profundidade do AM 2 (0 ta 7F)" + +#: src/engine/sysDef.cpp:523 +msgid "27xx: Set PM 2 depth (0 to 7F)" +msgstr "27xx: Definir profundidade do PM 2 (0 ta 7F)" + +#: src/engine/sysDef.cpp:524 +msgid "" +"28xy: Set reverb (x: operator from 1 to 4 (0 for all ops); y: reverb from 0 " +"to 7)" +msgstr "" +"28xy: Definir reverb (x: operador de 1 a 4 (0 para todos os ops.); y: reverb " +"de 0 a 7)" + +#: src/engine/sysDef.cpp:525 src/engine/sysDef.cpp:650 +msgid "" +"2Axy: Set waveform (x: operator from 1 to 4 (0 for all ops); y: waveform " +"from 0 to 7)" +msgstr "" +"2Axy: Definir forma de onda (x: operador de 1 a 4 (0 para todos os ops.); y: " +"forma de onda de 0 a 7)" + +#: src/engine/sysDef.cpp:526 +msgid "" +"2Bxy: Set envelope generator shift (x: operator from 1 to 4 (0 for all ops); " +"y: shift from 0 to 3)" +msgstr "" +"2Bxy: Definir deslocamento do gerador de envelope x: operador de 1 a 4 (0 " +"para todos os ops.); y: deslocamento de 0 a 3)" + +#: src/engine/sysDef.cpp:527 +msgid "" +"2Cxy: Set fine multiplier (x: operator from 1 to 4 (0 for all ops); y: fine)" +msgstr "" +"2Cxy: Definir multiplicador fino (x: operador de 1 a 4 (0 para todos os " +"ops.); y: multiplicador fino)" + +#: src/engine/sysDef.cpp:530 +msgid "" +"3xyy: Set fixed frequency of operator 1 (x: octave from 0 to 7; y: frequency)" +msgstr "" +"3xyy: Definir frequência fixa do operador 1 (x: oitava de 0 a 7; y: " +"frequência)" + +#: src/engine/sysDef.cpp:531 +msgid "" +"3xyy: Set fixed frequency of operator 2 (x: octave from 8 to F; y: frequency)" +msgstr "" +"3xyy: Definir frequência fixa do operador 2 (x: oitava de 8 a F; y: " +"frequência)" + +#: src/engine/sysDef.cpp:532 +msgid "" +"4xyy: Set fixed frequency of operator 3 (x: octave from 0 to 7; y: frequency)" +msgstr "" +"4xyy: Definir frequência fixa do operador 3 (x: oitava de 0 a 7; y: " +"frequência)" + +#: src/engine/sysDef.cpp:533 +msgid "" +"4xyy: Set fixed frequency of operator 4 (x: octave from 8 to F; y: frequency)" +msgstr "" +"4xyy: Definir frequência fixa do operador 4 (x: oitava de 8 a F; y: " +"frequência)" + +#: src/engine/sysDef.cpp:540 +msgid "10xy: Setup LFO (x: enable; y: speed)" +msgstr "10xy: Configurar LFO (x: habilitar; y: velocidade)" + +#: src/engine/sysDef.cpp:541 +msgid "" +"55xy: Set SSG envelope (x: operator from 1 to 4 (0 for all ops); y: 0-7 on, " +"8 off)" +msgstr "" +"55xy: Definir envelope SSG (x: operador de 1 a 4 (0 para todos os ops.); y: " +"0-7 ligado, 8 desligado)" + +#: src/engine/sysDef.cpp:549 +msgid "1Fxx: Set ADPCM-A global volume (0 to 3F)" +msgstr "1Fxx: Definir volume global do ADPCM-A (0 a 3F)" + +#: src/engine/sysDef.cpp:553 +msgid "10xx: Set patch (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:555 src/engine/sysDef.cpp:576 +#: src/engine/sysDef.cpp:631 +msgid "12xx: Set level of operator 1 (0 highest, 3F lowest)" +msgstr "12xx: Definir nível do operador 1 (0 é o mais alto, 3F o mais baixo)" + +#: src/engine/sysDef.cpp:556 src/engine/sysDef.cpp:577 +#: src/engine/sysDef.cpp:632 +msgid "13xx: Set level of operator 2 (0 highest, 3F lowest)" +msgstr "13xx: Definir nível do operador 2 (0 é o mais alto, 3F o mais baixo)" + +#: src/engine/sysDef.cpp:557 +msgid "16xy: Set operator multiplier (x: operator from 1 to 2; y: multiplier)" +msgstr "" +"16xy: Definir multiplicador do operador (x: operator de 1 a 2; y: " +"multiplicador)" + +#: src/engine/sysDef.cpp:558 src/engine/sysDef.cpp:582 +#: src/engine/sysDef.cpp:637 +msgid "19xx: Set attack of all operators (0 to F)" +msgstr "19xx: Definir ataque de todos os operadores (0 a F)" + +#: src/engine/sysDef.cpp:559 src/engine/sysDef.cpp:583 +#: src/engine/sysDef.cpp:638 +msgid "1Axx: Set attack of operator 1 (0 to F)" +msgstr "1Axx: Definir ataque do operador 1 (0 a F)" + +#: src/engine/sysDef.cpp:560 src/engine/sysDef.cpp:584 +#: src/engine/sysDef.cpp:639 +msgid "1Bxx: Set attack of operator 2 (0 to F)" +msgstr "1Bxx: Definir ataque do operador 2 (0 a F)" + +#: src/engine/sysDef.cpp:561 +msgid "50xy: Set AM (x: operator from 1 to 2 (0 for all ops); y: AM)" +msgstr "50xy: Definir AM (x: operador de 1 a 2 (0 para todos os ops.); y: AM)" + +#: src/engine/sysDef.cpp:562 +msgid "" +"51xy: Set sustain level (x: operator from 1 to 2 (0 for all ops); y: sustain)" +msgstr "" +"51xy: Definir nível de sustentação (x: operador de 1 a 2 (0 para todos os " +"ops.); y: sustentação)" + +#: src/engine/sysDef.cpp:563 +msgid "52xy: Set release (x: operator from 1 to 2 (0 for all ops); y: release)" +msgstr "" +"52xy: Definir repouso (x: operador de 1 a 2 (0 para todos os ops.); y: " +"repouso)" + +#: src/engine/sysDef.cpp:564 +msgid "53xy: Set vibrato (x: operator from 1 to 2 (0 for all ops); y: enabled)" +msgstr "" +"53xy: Definir vibrato (x: operador de 1 a 2 (0 para todos os ops.); y: " +"habilitado)" + +#: src/engine/sysDef.cpp:565 +msgid "" +"54xy: Set envelope scale (x: operator from 1 to 2 (0 for all ops); y: scale " +"from 0 to 3)" +msgstr "" +"54xy: Definir escalonamento de envelope (x: operador de 1 a 2 (0 para todos " +"os ops.); y: escala de 0 a 3)" + +#: src/engine/sysDef.cpp:566 +msgid "" +"55xy: Set envelope sustain (x: operator from 1 to 2 (0 for all ops); y: " +"enabled)" +msgstr "" +"55xy: Definir modo de sustentação de envelope (x: operador de 1 a 2 (0 para " +"todos os ops.); y: habilitado)" + +#: src/engine/sysDef.cpp:567 src/engine/sysDef.cpp:594 +#: src/engine/sysDef.cpp:662 +msgid "56xx: Set decay of all operators (0 to F)" +msgstr "56xx: Definir decaimento de todos os operadores (0 a F)" + +#: src/engine/sysDef.cpp:568 src/engine/sysDef.cpp:595 +#: src/engine/sysDef.cpp:663 +msgid "57xx: Set decay of operator 1 (0 to F)" +msgstr "57xx: Definir decaimento do operador 1 (0 a F)" + +#: src/engine/sysDef.cpp:569 src/engine/sysDef.cpp:596 +#: src/engine/sysDef.cpp:664 +msgid "58xx: Set decay of operator 2 (0 to F)" +msgstr "58xx: Definir decaimento do operador 2 (0 a F)" + +#: src/engine/sysDef.cpp:570 +msgid "" +"5Bxy: Set whether key will scale envelope (x: operator from 1 to 2 (0 for " +"all ops); y: enabled)" +msgstr "" +"5Bxy: Definir se a nota irá escalonar a taxa do envelope (x: operador de 1 a " +"2 (0 para todos os ops.); y: habilitado)" + +#: src/engine/sysDef.cpp:574 +msgid "10xx: Set global AM depth (0: 1dB, 1: 4.8dB)" +msgstr "10xx: Definir profundidade de AM global (0: 1dB, 1: 4.8dB)" + +#: src/engine/sysDef.cpp:578 src/engine/sysDef.cpp:633 +msgid "14xx: Set level of operator 3 (0 highest, 3F lowest)" +msgstr "14xx: Definir nível do operador 3 (0 é o mais alto, 3F o mais baixo)" + +#: src/engine/sysDef.cpp:579 src/engine/sysDef.cpp:634 +msgid "15xx: Set level of operator 4 (0 highest, 3F lowest)" +msgstr "15xx: Definir nível do operador 4 (0 é o mais alto, 3F o mais baixo)" + +#: src/engine/sysDef.cpp:581 +msgid "17xx: Set global vibrato depth (0: normal, 1: double)" +msgstr "17xx: Definir profundidade de vibrato global (0: normal, 1: dobro)" + +#: src/engine/sysDef.cpp:585 src/engine/sysDef.cpp:640 +msgid "1Cxx: Set attack of operator 3 (0 to F)" +msgstr "1Cxx: Definir ataque do operador 3 (0 a F)" + +#: src/engine/sysDef.cpp:586 src/engine/sysDef.cpp:641 +msgid "1Dxx: Set attack of operator 4 (0 to F)" +msgstr "1Dxx: Definir ataque do operador 4 (0 a F)" + +#: src/engine/sysDef.cpp:587 +msgid "" +"2Axy: Set waveform (x: operator from 1 to 4 (0 for all ops); y: waveform " +"from 0 to 3 in OPL2 and 0 to 7 in OPL3)" +msgstr "" +"2Axy: Definir forma de onda (x: operador de 1 a 4 (0 para todos os ops.); y: " +"forma de onda de 0 a 3 no OPL2 e 0 a 7 no OPL3)" + +#: src/engine/sysDef.cpp:591 src/engine/sysDef.cpp:659 +msgid "53xy: Set vibrato (x: operator from 1 to 4 (0 for all ops); y: enabled)" +msgstr "" +"53xy: Definir vibrato (x: operador de 1 a 4 (0 para todos os ops.); y: " +"habilitado)" + +#: src/engine/sysDef.cpp:593 src/engine/sysDef.cpp:661 +msgid "" +"55xy: Set envelope sustain (x: operator from 1 to 4 (0 for all ops); y: " +"enabled)" +msgstr "" +"55xy: Definir modo de sustentação de envelope (x: operador de 1 a 4 (0 para " +"todos os ops.); y: habilitado)" + +#: src/engine/sysDef.cpp:597 src/engine/sysDef.cpp:665 +msgid "59xx: Set decay of operator 3 (0 to F)" +msgstr "59xx: Definir decaimento do operador 3 (0 a F)" + +#: src/engine/sysDef.cpp:598 src/engine/sysDef.cpp:666 +msgid "5Axx: Set decay of operator 4 (0 to F)" +msgstr "5Axx: Definir decaimento do operador 4 (0 a F)" + +#: src/engine/sysDef.cpp:599 src/engine/sysDef.cpp:667 +msgid "" +"5Bxy: Set whether key will scale envelope (x: operator from 1 to 4 (0 for " +"all ops); y: enabled)" +msgstr "" +"5Bxy: Definir se a nota irá escalonar a taxa do envelope (x: operador de 1 a " +"4 (0 para todos os ops.); y: habilitado)" + +#: src/engine/sysDef.cpp:603 src/engine/sysDef.cpp:680 +msgid "" +"10xx: Set waveform (bit 0: triangle; bit 1: saw; bit 2: pulse; bit 3: noise)" +msgstr "" +"10xx: Definir forma de onda (bit 0: triângulo; bit 1: serra; bit 2: pulso; " +"bit 3: ruído)" + +#: src/engine/sysDef.cpp:604 +msgid "11xx: Set coarse cutoff (not recommended; use 4xxx instead)" +msgstr "" +"11xx: Definir ponto de corte grosso (não recomendado; use o 4xxx ao invés " +"desse)" + +#: src/engine/sysDef.cpp:605 +msgid "12xx: Set coarse pulse width (not recommended; use 3xxx instead)" +msgstr "" +"12xx: Definir largura de pulso grossa (não recomendado, use o 3xxx ao invés " +"desse)" + +#: src/engine/sysDef.cpp:606 +msgid "13xx: Set resonance (0 to F)" +msgstr "13xx: Definir ressonância (0 a F)" + +#: src/engine/sysDef.cpp:607 +msgid "" +"14xx: Set filter mode (bit 0: low pass; bit 1: band pass; bit 2: high pass)" +msgstr "" +"14xx: Definir modo de filtro (bit 0: passa baixa; bit 1: passa banda; bit 2: " +"passa alta)" + +#: src/engine/sysDef.cpp:608 +msgid "15xx: Set envelope reset time" +msgstr "15xx: Definir tempo de reinício do envelope" + +#: src/engine/sysDef.cpp:609 +msgid "1Axx: Disable envelope reset for this channel (1 disables; 0 enables)" +msgstr "" +"1Axx: Desabilitar reinício do envelope para este canal (1 desabilita; 0 " +"habilita)" + +#: src/engine/sysDef.cpp:610 +msgid "1Bxy: Reset cutoff (x: on new note; y: now)" +msgstr "1Bxy: Redefinir ponto de corte (x: em nova nota; y: agora)" + +#: src/engine/sysDef.cpp:611 +msgid "1Cxy: Reset pulse width (x: on new note; y: now)" +msgstr "1Cxy: Redefinir largura de pulso (x: em nova nota; y: agora)" + +#: src/engine/sysDef.cpp:612 +msgid "1Exy: Change other parameters (LEGACY)" +msgstr "1Exy: Alterar outros parâmetros (LEGADO)" + +#: src/engine/sysDef.cpp:613 +msgid "20xy: Set attack/decay (x: attack; y: decay)" +msgstr "20xy: Definir ataque/decaimento (x: ataque; y: decaimento)" + +#: src/engine/sysDef.cpp:614 +msgid "21xy: Set sustain/release (x: sustain; y: release)" +msgstr "21xy: Definir sustentação/repouso (x: sustentação; y: repouso)" + +#: src/engine/sysDef.cpp:616 src/engine/sysDef.cpp:688 +msgid "3xxx: Set pulse width (0 to FFF)" +msgstr "3xxx: Definir largura de pulso (0 a FFF)" + +#: src/engine/sysDef.cpp:617 +msgid "4xxx: Set cutoff (0 to 7FF)" +msgstr "4xxx: Definir ponto de corte (0 to 7FF)" + +#: src/engine/sysDef.cpp:622 src/engine/sysDef.cpp:745 +#: src/engine/sysDef.cpp:762 src/engine/sysDef.cpp:1000 +#: src/engine/sysDef.cpp:1050 src/engine/sysDef.cpp:1268 +#: src/engine/sysDef.cpp:1320 src/engine/sysDef.cpp:1590 +#: src/engine/sysDef.cpp:1788 src/engine/sysDef.cpp:1792 +#: src/engine/sysDef.cpp:1893 src/engine/sysDef.cpp:2063 +#: src/engine/sysDef.cpp:2077 +msgid "10xx: Set waveform" +msgstr "10xx: Definir forma de onda" + +#: src/engine/sysDef.cpp:626 +msgid "20xx: Set PCM frequency" +msgstr "20xx: Definir frequência do PCM" + +#: src/engine/sysDef.cpp:630 +msgid "" +"10xy: Set AM depth (x: operator from 1 to 4 (0 for all ops); y: depth (0: " +"1dB, 1: 4.8dB))" +msgstr "" +"10xy: Definir profundidade do AM (x: operador de 1 a 4 (0 para todos os " +"ops.); y: profundidade (0: 1dB, 1: 4.8dB))" + +#: src/engine/sysDef.cpp:636 +msgid "" +"17xy: Set vibrato depth (x: operator from 1 to 4 (0 for all ops); y: depth " +"(0: normal, 1: double))" +msgstr "" +"17xy: Definir profundidade do vibrato (x: operador de 1 a 4 (0 para todos os " +"ops.); y: profundidade (0: normal, 1: dobro))" + +#: src/engine/sysDef.cpp:642 +msgid "20xy: Set panning of operator 1 (x: left; y: right)" +msgstr "20xy: Definir balanço do operador 1 (x: esquerda; y: direita)" + +#: src/engine/sysDef.cpp:643 +msgid "21xy: Set panning of operator 2 (x: left; y: right)" +msgstr "21xy: Definir balanço do operador 2 (x: esquerda; y: direita)" + +#: src/engine/sysDef.cpp:644 +msgid "22xy: Set panning of operator 3 (x: left; y: right)" +msgstr "22xy: Definir balanço do operador 3 (x: esquerda; y: direita)" + +#: src/engine/sysDef.cpp:645 +msgid "23xy: Set panning of operator 4 (x: left; y: right)" +msgstr "23xy: Definir balanço do operador 4 (x: esquerda; y: direita)" + +#: src/engine/sysDef.cpp:646 +msgid "" +"24xy: Set output level register (x: operator from 1 to 4 (0 for all ops); y: " +"level from 0 to 7)" +msgstr "" +"24xy: Definir registrador de nível de saída (x: operador de 1 a 4 (0 para " +"todos os ops.); y: nível de 0 a 7)" + +#: src/engine/sysDef.cpp:647 +msgid "" +"25xy: Set modulation input level (x: operator from 1 to 4 (0 for all ops); " +"y: level from 0 to 7)" +msgstr "" +"25xy: Definir nível de entrada de modulação (x: operador de 1 a 4 (0 para " +"todos os ops.); y: nível de 0 a 7)" + +#: src/engine/sysDef.cpp:648 +msgid "" +"26xy: Set envelope delay (x: operator from 1 to 4 (0 for all ops); y: delay " +"from 0 to 7)" +msgstr "" +"26xy: Definir atraso de envelope (x: operador de 1 a 4 (0 para todos os " +"ops.); y: atraso de 0 a 7)" + +#: src/engine/sysDef.cpp:649 +msgid "27xx: Set noise mode for operator 4 (x: mode from 0 to 3)" +msgstr "27xx: Definir modo de ruído do operador 4 (x: modo de 0 a 3)" + +#: src/engine/sysDef.cpp:651 +msgid "" +"2Fxy: Set fixed frequency block (x: operator from 1 to 4; y: octave from 0 " +"to 7)" +msgstr "" +"2Fxy: Definir bloco da frequência fixa (x: operador de 1 a 4; y: oitava de 0 " +"a 7)" + +#: src/engine/sysDef.cpp:652 +msgid "40xx: Set detune of operator 1 (80: center)" +msgstr "40xx: Definir desafinação do operador 1 (80: centro)" + +#: src/engine/sysDef.cpp:653 +msgid "41xx: Set detune of operator 2 (80: center)" +msgstr "41xx: Definir desafinação do operador 2 (80: centro)" + +#: src/engine/sysDef.cpp:654 +msgid "42xx: Set detune of operator 3 (80: center)" +msgstr "42xx: Definir desafinação do operador 3 (80: centro)" + +#: src/engine/sysDef.cpp:655 +msgid "43xx: Set detune of operator 4 (80: center)" +msgstr "43xx: Definir desafinação do operador 4 (80: centro)" + +#: src/engine/sysDef.cpp:670 +msgid "" +"3xyy: Set fixed frequency F-num of operator 1 (x: high 2 bits from 0 to 3; " +"y: low 8 bits of F-num)" +msgstr "" +"3xyy: Definir Número-Frequência da frequência fixa do operador 1 (x: 2 bits " +"superiores de 0 a 3; y: 8 bits inferiores)" + +#: src/engine/sysDef.cpp:671 +msgid "" +"3xyy: Set fixed frequency F-num of operator 2 (x: high 2 bits from 4 to 7; " +"y: low 8 bits of F-num)" +msgstr "" +"3xyy: Definir Número-Frequência da frequência fixa do operador 2 (x: 2 bits " +"superiores de 4 a 7; y: 8 bits inferiores)" + +#: src/engine/sysDef.cpp:672 +msgid "" +"3xyy: Set fixed frequency F-num of operator 3 (x: high 2 bits from 8 to B; " +"y: low 8 bits of F-num)" +msgstr "" +"3xyy: Definir Número-Frequência da frequência fixa do operador 3 (x: 2 bits " +"superiores de 8 a B; y: 8 bits inferiores)" + +#: src/engine/sysDef.cpp:673 +msgid "" +"3xyy: Set fixed frequency F-num of operator 4 (x: high 2 bits from C to F; " +"y: low 8 bits of F-num)" +msgstr "" +"3xyy: Definir Número-Frequência da frequência fixa do operador 4 (x: 2 bits " +"superiores de C a F; y: 8 bits inferiores)" + +#: src/engine/sysDef.cpp:681 +msgid "11xx: Set resonance (0 to FF)" +msgstr "11xx: Definir ressonância (0 a FF)" + +#: src/engine/sysDef.cpp:682 +msgid "" +"12xx: Set filter mode (bit 0: low pass; bit 1: band pass; bit 2: high pass)" +msgstr "" +"12xx: Definir modo de filtro (bit 0: passa baixa; bit 1: passa banda; bit 2: " +"passa alta)" + +#: src/engine/sysDef.cpp:683 +msgid "13xx: Disable envelope reset for this channel (1 disables; 0 enables)" +msgstr "" +"13xx: Desabilitar reinício do envelope para este canal (1 desabilita; 0 " +"habilita)" + +#: src/engine/sysDef.cpp:684 +msgid "14xy: Reset cutoff (x: on new note; y: now)" +msgstr "14xy: Redefinir ponto de corte (x: em nova nota; y: agora)" + +#: src/engine/sysDef.cpp:685 +msgid "15xy: Reset pulse width (x: on new note; y: now)" +msgstr "15xy: Redefinir largura de pulso (x: em nova nota; y: agora)" + +#: src/engine/sysDef.cpp:686 +msgid "16xy: Change other parameters" +msgstr "16xy: Alterar outros parâmetros" + +#: src/engine/sysDef.cpp:689 src/engine/sysDef.cpp:1733 +msgid "4xxx: Set cutoff (0 to FFF)" +msgstr "4xxx: Definir ponto de corte (0 a FFF)" + +#: src/engine/sysDef.cpp:697 +msgid "Yamaha YMU759 (MA-2)" +msgstr "" + +#: src/engine/sysDef.cpp:698 +msgid "" +"a chip which found its way inside mobile phones in the 2000's.\n" +"as proprietary as it is, it passed away after losing to MP3 in the mobile " +"hardware battle." +msgstr "" +"um chip que encontrou seu lugar dentro de celulares nos anos 2000.\n" +"proprietário como era, ele faleceu após perder para o MP3 na batalha de " +"hardware móvel." + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:807 src/engine/sysDef.cpp:819 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:915 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1237 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1314 src/engine/sysDef.cpp:1356 +#: src/engine/sysDef.cpp:1396 src/engine/sysDef.cpp:1499 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1572 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1608 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1799 src/engine/sysDef.cpp:1810 +#: src/engine/sysDef.cpp:1821 src/engine/sysDef.cpp:1832 +#: src/engine/sysDef.cpp:1900 src/engine/sysDef.cpp:1910 +#: src/engine/sysDef.cpp:1920 src/engine/sysDef.cpp:1944 +#: src/engine/sysDef.cpp:1957 src/engine/sysDef.cpp:1970 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2037 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2122 +#: src/engine/sysDef.cpp:2138 src/engine/sysDef.cpp:2150 +msgid "Channel 1" +msgstr "Canal 1" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:807 src/engine/sysDef.cpp:819 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:915 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1237 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1314 src/engine/sysDef.cpp:1356 +#: src/engine/sysDef.cpp:1396 src/engine/sysDef.cpp:1499 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1572 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1608 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1799 src/engine/sysDef.cpp:1810 +#: src/engine/sysDef.cpp:1821 src/engine/sysDef.cpp:1832 +#: src/engine/sysDef.cpp:1900 src/engine/sysDef.cpp:1910 +#: src/engine/sysDef.cpp:1920 src/engine/sysDef.cpp:1944 +#: src/engine/sysDef.cpp:1957 src/engine/sysDef.cpp:1970 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2037 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2122 +#: src/engine/sysDef.cpp:2138 src/engine/sysDef.cpp:2150 +msgid "Channel 2" +msgstr "Canal 2" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:807 src/engine/sysDef.cpp:819 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1237 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1314 +#: src/engine/sysDef.cpp:1356 src/engine/sysDef.cpp:1396 +#: src/engine/sysDef.cpp:1499 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1572 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1799 src/engine/sysDef.cpp:1810 +#: src/engine/sysDef.cpp:1821 src/engine/sysDef.cpp:1832 +#: src/engine/sysDef.cpp:1910 src/engine/sysDef.cpp:1944 +#: src/engine/sysDef.cpp:1957 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2037 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +#: src/engine/sysDef.cpp:2122 src/engine/sysDef.cpp:2138 +#: src/engine/sysDef.cpp:2150 +msgid "Channel 3" +msgstr "Canal 3" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1237 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1314 +#: src/engine/sysDef.cpp:1356 src/engine/sysDef.cpp:1396 +#: src/engine/sysDef.cpp:1499 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1572 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1910 +#: src/engine/sysDef.cpp:1944 src/engine/sysDef.cpp:1957 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +#: src/engine/sysDef.cpp:2122 src/engine/sysDef.cpp:2150 +msgid "Channel 4" +msgstr "Canal 4" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1314 +#: src/engine/sysDef.cpp:1356 src/engine/sysDef.cpp:1396 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1572 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1705 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 5" +msgstr "Canal 5" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1356 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 6" +msgstr "Canal 6" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 7" +msgstr "Canal 7" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 8" +msgstr "Canal 8" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 9" +msgstr "Canal 9" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 10" +msgstr "Canal 10" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 11" +msgstr "Canal 11" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 12" +msgstr "Canal 12" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 13" +msgstr "Canal 13" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 14" +msgstr "Canal 14" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 15" +msgstr "Canal 15" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 16" +msgstr "Canal 16" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:700 +#: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1767 src/engine/sysDef.cpp:1888 +#: src/engine/sysDef.cpp:1944 src/engine/sysDef.cpp:1945 +#: src/gui/settings.cpp:4094 +msgid "PCM" +msgstr "PCM" + +#: src/engine/sysDef.cpp:706 +msgid "Sega Genesis/Mega Drive" +msgstr "" + +#: src/engine/sysDef.cpp:712 +msgid "Sega Genesis Extended Channel 3" +msgstr "Sega Mega Drive com Canal 3 Estendido" + +#: src/engine/sysDef.cpp:718 src/gui/sysConf.cpp:158 +msgid "TI SN76489" +msgstr "" + +#: src/engine/sysDef.cpp:719 +msgid "" +"a square/noise sound chip found on the Sega Master System, ColecoVision, " +"Tandy, TI's own 99/4A and a few other places." +msgstr "" +"um chip de som de onda quadrada e ruído encontrado no Sega Master System, " +"ColecoVision, PCs Tandy, o próprio 99/4A da TI e alguns outros lugares." + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 +msgid "Square 1" +msgstr "Quadrado 1" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 +msgid "Square 2" +msgstr "Quadrado 2" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 +msgid "Square 3" +msgstr "Quadrado 3" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:739 +#: src/engine/sysDef.cpp:773 src/engine/sysDef.cpp:955 +#: src/engine/sysDef.cpp:1314 src/engine/sysDef.cpp:1874 +#: src/engine/sysDef.cpp:1920 src/engine/sysDef.cpp:2037 +#: src/engine/sysDef.cpp:2100 src/gui/settings.cpp:4093 +#: src/gui/insEdit.cpp:6978 src/gui/insEdit.cpp:7129 src/gui/insEdit.cpp:7223 +#: src/gui/insEdit.cpp:7315 +msgid "Noise" +msgstr "Ruído" + +#: src/engine/sysDef.cpp:726 +msgid "20xy: Set noise mode (x: preset freq/ch3 freq; y: thin pulse/noise)" +msgstr "" +"20xy: Definir modo de ruído (x: freq. predefinidas/freq. canal 3; y: pulso " +"fino/ruído)" + +#: src/engine/sysDef.cpp:731 +msgid "Sega Master System + FM Expansion" +msgstr "" + +#: src/engine/sysDef.cpp:737 src/gui/settings.cpp:4025 +msgid "Game Boy" +msgstr "Game Boy" + +#: src/engine/sysDef.cpp:738 +msgid "the most popular portable game console of the era." +msgstr "o console de games portátil mais popular da sua época." + +#: src/engine/sysDef.cpp:739 src/engine/sysDef.cpp:773 +#: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:2100 +msgid "Pulse 1" +msgstr "Pulso 1" + +#: src/engine/sysDef.cpp:739 src/engine/sysDef.cpp:773 +#: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:2100 +msgid "Pulse 2" +msgstr "Pulso 2" + +#: src/engine/sysDef.cpp:739 src/gui/settings.cpp:3930 +#: src/gui/guiConst.cpp:1395 src/gui/insEdit.cpp:6652 +msgid "Wavetable" +msgstr "Wavetable" + +#: src/engine/sysDef.cpp:746 +msgid "11xx: Set noise length (0: long; 1: short)" +msgstr "11xx: Definir comprimento do ruído (0: longo; 1: curto)" + +#: src/engine/sysDef.cpp:747 +msgid "12xx: Set duty cycle (0 to 3)" +msgstr "12xx: Definir ciclo de trabalho (0 a 3)" + +#: src/engine/sysDef.cpp:748 +msgid "13xy: Setup sweep (x: time; y: shift)" +msgstr "13xy: Configurar sweep (x: tempo; y: deslocamento)" + +#: src/engine/sysDef.cpp:749 +msgid "14xx: Set sweep direction (0: up; 1: down)" +msgstr "14xx: Definir direção do sweep (0: para cima; 1: para baixo)" + +#: src/engine/sysDef.cpp:754 +msgid "PC Engine/TurboGrafx-16" +msgstr "" + +#: src/engine/sysDef.cpp:755 +msgid "an '80s game console with a wavetable sound chip, popular in Japan." +msgstr "" +"um console de games dos anos 80 com um chip de som wavetable, popular no " +"Japão." + +#: src/engine/sysDef.cpp:763 src/engine/sysDef.cpp:1001 +#: src/engine/sysDef.cpp:1793 +msgid "11xx: Toggle noise mode" +msgstr "11xx: Alternar modo de rúido" + +#: src/engine/sysDef.cpp:764 +msgid "12xx: Setup LFO (0: disabled; 1: 1x depth; 2: 16x depth; 3: 256x depth)" +msgstr "" +"12xx: Configurar LFO (0: desabilitado; 1: profundidade 1x; 2: profundidade " +"16x; 3: profundidade 256x)" + +#: src/engine/sysDef.cpp:765 +msgid "13xx: Set LFO speed" +msgstr "13xx: Definir velocidade do LFO" + +#: src/engine/sysDef.cpp:771 +msgid "NES (Ricoh 2A03)" +msgstr "" + +#: src/engine/sysDef.cpp:772 +msgid "" +"also known as Famicom in Japan, it's the most well-known game console of the " +"'80s." +msgstr "" +"também conhecido como Famicom no Japão, e também conhecido como Phantom " +"System, Top Game, Turbo Game, Dynavision, Bit System e Polystation no " +"Brasil, é o console de jogos mais conhecido dos anos 80." + +#: src/engine/sysDef.cpp:773 src/gui/waveEdit.cpp:31 src/gui/waveEdit.cpp:217 +#: src/gui/insEdit.cpp:200 src/gui/insEdit.cpp:324 src/gui/insEdit.cpp:658 +msgid "Triangle" +msgstr "Triângulo" + +#: src/engine/sysDef.cpp:773 src/engine/sysDef.cpp:2100 +#: src/gui/insEdit.cpp:2629 +msgid "DPCM" +msgstr "DPCM" + +#: src/engine/sysDef.cpp:779 src/engine/sysDef.cpp:2106 +msgid "11xx: Write to delta modulation counter (0 to 7F)" +msgstr "11xx: Escrever no contador de modulação delta (DAC) (0 a 7F)" + +#: src/engine/sysDef.cpp:780 src/engine/sysDef.cpp:1068 +msgid "12xx: Set duty cycle/noise mode (pulse: 0 to 3; noise: 0 or 1)" +msgstr "" +"12xx: Definir ciclo de trabalho/modo de ruído (pulso: 0 a 3; ruído: 0 ou 1)" + +#: src/engine/sysDef.cpp:781 src/engine/sysDef.cpp:2108 +msgid "13xy: Sweep up (x: time; y: shift)" +msgstr "13xy: Realizar sweep de tom para cima (x: tempo; y: deslocamento)" + +#: src/engine/sysDef.cpp:782 src/engine/sysDef.cpp:2109 +msgid "14xy: Sweep down (x: time; y: shift)" +msgstr "14xy: Realizar sweep de tom para baixo (x: tempo; y: deslocamento)" + +#: src/engine/sysDef.cpp:783 src/engine/sysDef.cpp:2110 +msgid "" +"15xx: Set envelope mode (0: envelope, 1: length, 2: looping, 3: constant)" +msgstr "" +"15xx: Definir modo de envelope (0: envelope, 1: comprimento, 2: repetir, 3: " +"constante)" + +#: src/engine/sysDef.cpp:784 src/engine/sysDef.cpp:2111 +msgid "16xx: Set length counter (refer to manual for a list of values)" +msgstr "" +"16xx: Definir contador de comprimento (veja o manual para uma lista de " +"valores)" + +#: src/engine/sysDef.cpp:785 src/engine/sysDef.cpp:2112 +msgid "17xx: Set frame counter mode (0: 4-step, 1: 5-step)" +msgstr "17xx: Definir modo do contador de quadros (0: 4 passos, 1: 5 passos)" + +#: src/engine/sysDef.cpp:786 src/engine/sysDef.cpp:2113 +msgid "18xx: Select PCM/DPCM mode (0: PCM; 1: DPCM)" +msgstr "18xx: Selecionar modo PCM/DPCM (0: PCM; 1: DPCM)" + +#: src/engine/sysDef.cpp:787 src/engine/sysDef.cpp:2114 +msgid "19xx: Set triangle linear counter (0 to 7F; 80 and higher halt)" +msgstr "" +"19xx: Definir contador linear do canal triângulo (0 a 7F; valores 80 e " +"superiores interrompem)" + +#: src/engine/sysDef.cpp:788 src/engine/sysDef.cpp:2115 +msgid "20xx: Set DPCM frequency (0 to F)" +msgstr "20xx: Definir frequência DPCM (0 a F)" + +#: src/engine/sysDef.cpp:793 +msgid "NES + Konami VRC7" +msgstr "" + +#: src/engine/sysDef.cpp:799 +msgid "Famicom Disk System" +msgstr "" + +#: src/engine/sysDef.cpp:805 +msgid "Commodore 64 (SID 6581)" +msgstr "" + +#: src/engine/sysDef.cpp:806 +msgid "" +"this computer is powered by the SID chip, which had synthesizer features " +"like a filter and ADSR." +msgstr "" +"este computador possui o chip de som SID, que possui recursos de " +"sintetizador como um filtro e ADSR." + +#: src/engine/sysDef.cpp:817 +msgid "Commodore 64 (SID 8580)" +msgstr "" + +#: src/engine/sysDef.cpp:818 +msgid "" +"this computer is powered by the SID chip, which had synthesizer features " +"like a filter and ADSR.\n" +"this is the newer revision of the chip." +msgstr "" +"este computador possui o chip de som SID, que possui recursos de " +"sintetizador como um filtro e ADSR.\n" +"essa é uma revisão mais nova do chip." + +#: src/engine/sysDef.cpp:829 +msgid "DefleCade" +msgstr "" + +#: src/engine/sysDef.cpp:835 +msgid "Neo Geo CD" +msgstr "" + +#: src/engine/sysDef.cpp:836 +msgid "" +"like Neo Geo, but lacking the ADPCM-B channel since they couldn't connect " +"the pins." +msgstr "" +"como o Neo Geo, mas faltando o canal ADPCM-B já que eles não puderam " +"conectar os pinos." + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1173 +#: src/engine/sysDef.cpp:1185 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1443 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +#: src/engine/sysDef.cpp:2006 +msgid "FM 1" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:891 +#: src/engine/sysDef.cpp:903 src/engine/sysDef.cpp:1032 +#: src/engine/sysDef.cpp:1097 src/engine/sysDef.cpp:1109 +#: src/engine/sysDef.cpp:1122 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1546 +#: src/engine/sysDef.cpp:1559 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:1693 src/engine/sysDef.cpp:1849 +#: src/engine/sysDef.cpp:1861 src/engine/sysDef.cpp:2006 +msgid "FM 2" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1173 +#: src/engine/sysDef.cpp:1185 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1443 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:2006 +msgid "FM 3" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1546 +#: src/engine/sysDef.cpp:1559 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:1693 src/engine/sysDef.cpp:1849 +#: src/engine/sysDef.cpp:1861 src/engine/sysDef.cpp:2006 +msgid "FM 4" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:862 src/engine/sysDef.cpp:927 +#: src/engine/sysDef.cpp:943 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "PSG 1" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:862 src/engine/sysDef.cpp:927 +#: src/engine/sysDef.cpp:943 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "PSG 2" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:862 src/engine/sysDef.cpp:927 +#: src/engine/sysDef.cpp:943 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "PSG 3" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 1" +msgstr "ADPCM-A 1" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 2" +msgstr "ADPCM-A 2" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 3" +msgstr "ADPCM-A 3" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 4" +msgstr "ADPCM-A 4" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 5" +msgstr "ADPCM-A 5" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 6" +msgstr "ADPCM-A 6" + +#: src/engine/sysDef.cpp:847 +msgid "Neo Geo CD Extended Channel 2" +msgstr "Neo Geo CD com Canal 2 estendido" + +#: src/engine/sysDef.cpp:848 +msgid "" +"like Neo Geo, but lacking the ADPCM-B channel since they couldn't connect " +"the pins.\n" +"this one is in Extended Channel mode, which turns the second FM channel into " +"four operators with independent notes/frequencies." +msgstr "" +"como o Neo Geo, mas faltando o canal ADPCM-B já que eles não puderam " +"conectar os pinos.\n" +"esse está no modo de Canal Estendido, que transforma o segundo canal FM em " +"quatro operadores com notas/frequências independentes." + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP1" +msgstr "" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP2" +msgstr "" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP3" +msgstr "" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP4" +msgstr "" + +#: src/engine/sysDef.cpp:860 src/gui/sysConf.cpp:913 +msgid "AY-3-8910" +msgstr "" + +#: src/engine/sysDef.cpp:861 +msgid "" +"this chip is everywhere! ZX Spectrum, MSX, Amstrad CPC, Intellivision, " +"Vectrex...\n" +"the discovery of envelope bass helped it beat the SN76489 with ease." +msgstr "" +"esse chip está em todo lugar! ZX Spectrum, MSX, Amstrad CPC, Intellivision, " +"Vectrex...\n" +"a descoberta do baixo com o envelope ajudou ele a ganhar do SN76489 " +"facilmente." + +#: src/engine/sysDef.cpp:872 +msgid "Amiga" +msgstr "" + +#: src/engine/sysDef.cpp:873 +msgid "" +"a computer from the '80s with full sampling capabilities, giving it a sound " +"ahead of its time." +msgstr "" +"um computador dos anos 80 com capacidade completa de amostragem (sampling), " +"dando a ele um som à frente do seu tempo." + +#: src/engine/sysDef.cpp:881 +msgid "10xx: Toggle filter (0 disables; 1 enables)" +msgstr "10xx: Alternar filtro (0 desabilita; 1 habilita)" + +#: src/engine/sysDef.cpp:882 +msgid "11xx: Toggle AM with next channel" +msgstr "11xx: Alternar AM com o canal à direita" + +#: src/engine/sysDef.cpp:883 +msgid "12xx: Toggle period modulation with next channel" +msgstr "12xx: Alternar modulação de período com o canal à direita" + +#: src/engine/sysDef.cpp:884 +msgid "13xx: Set waveform" +msgstr "13xx: Definir forma de onda" + +#: src/engine/sysDef.cpp:889 +msgid "Yamaha YM2151 (OPM)" +msgstr "" + +#: src/engine/sysDef.cpp:890 +msgid "" +"this was Yamaha's first integrated FM chip.\n" +"it was used in several synthesizers, computers and arcade boards." +msgstr "" +"esse foi o primeiro chip FM integrado da Yamaha.\n" +"ele foi usado em vários sintetizadores, computadores e placas de fliperama." + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1279 src/engine/sysDef.cpp:1332 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1370 +#: src/engine/sysDef.cpp:1383 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +#: src/engine/sysDef.cpp:2006 +msgid "FM 5" +msgstr "" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:2006 +msgid "FM 6" +msgstr "" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:1032 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1279 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:2006 +msgid "FM 7" +msgstr "" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:1032 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:2006 +msgid "FM 8" +msgstr "" + +#: src/engine/sysDef.cpp:901 +msgid "Yamaha YM2612 (OPN2)" +msgstr "" + +#: src/engine/sysDef.cpp:902 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer)." +msgstr "" +"esse chip é mais conhecido por ter sido utilizado no Sega Mega Drive (mas " +"ele também foi usado no computador FM Towns)." + +#: src/engine/sysDef.cpp:913 +msgid "Atari TIA" +msgstr "" + +#: src/engine/sysDef.cpp:914 +msgid "" +"it's a challenge to make music on this chip which barely has musical " +"capabilities..." +msgstr "" +"é um desafio fazer música nesse chip que mal tem capacidades musicais..." + +#: src/engine/sysDef.cpp:925 +msgid "Philips SAA1099" +msgstr "" + +#: src/engine/sysDef.cpp:926 +msgid "" +"supposedly an upgrade from the AY-3-8910, this was present on the Creative " +"Music System (Game Blaster) and SAM Coupé." +msgstr "" +"supostamente um upgrade do AY-3-8910, esse chip estava presente na placa " +"Creative Music System (Game Blaster) e no computador SAM Coupé." + +#: src/engine/sysDef.cpp:927 +msgid "PSG 4" +msgstr "" + +#: src/engine/sysDef.cpp:927 +msgid "PSG 5" +msgstr "" + +#: src/engine/sysDef.cpp:927 +msgid "PSG 6" +msgstr "" + +#: src/engine/sysDef.cpp:934 +msgid "10xy: Set channel mode (x: noise; y: tone)" +msgstr "10xy: Definir modo do canal (x: ruído; y: tom)" + +#: src/engine/sysDef.cpp:935 +msgid "11xx: Set noise frequency" +msgstr "11xx: Definir frequência do ruído" + +#: src/engine/sysDef.cpp:936 +msgid "12xx: Setup envelope (refer to docs for more information)" +msgstr "12xx: Configurar envelope (confira o manual para mais informações)" + +#: src/engine/sysDef.cpp:941 +msgid "Microchip AY8930" +msgstr "" + +#: src/engine/sysDef.cpp:942 +msgid "" +"an improved version of the AY-3-8910 with a bigger frequency range, duty " +"cycles, configurable noise and per-channel envelopes!" +msgstr "" +"uma versão melhorada do AY-3-8910 com uma faixa de frequências maior, ciclos " +"de trabalho, ruído configurável e envelopes por canal!" + +#: src/engine/sysDef.cpp:953 +msgid "Commodore VIC-20" +msgstr "" + +#: src/engine/sysDef.cpp:954 +msgid "" +"Commodore's successor to the PET.\n" +"its square wave channels are more than just square..." +msgstr "" +"o sucessor da Commodore para o PET.\n" +"seus canais de onda quadrada são mais do que apenas ondas quadradas..." + +#: src/engine/sysDef.cpp:955 src/gui/settings.cpp:136 src/gui/settings.cpp:206 +#: src/gui/settings.cpp:3970 +msgid "Low" +msgstr "Baixa" + +#: src/engine/sysDef.cpp:955 +msgid "Mid" +msgstr "" + +#: src/engine/sysDef.cpp:955 src/gui/settings.cpp:135 src/gui/settings.cpp:208 +#: src/gui/settings.cpp:3971 +msgid "High" +msgstr "Alta" + +#: src/engine/sysDef.cpp:964 +msgid "Commodore PET" +msgstr "" + +#: src/engine/sysDef.cpp:965 +msgid "" +"one channel of 1-bit wavetable which is better (and worse) than the PC " +"Speaker." +msgstr "um canal de wavetable 1-bit que é melhor (e pior) que o PC Speaker." + +#: src/engine/sysDef.cpp:966 src/engine/sysDef.cpp:1262 +#: src/engine/sysDef.cpp:2100 src/gui/editControls.cpp:433 +#: src/gui/settings.cpp:4017 src/gui/settings.cpp:4095 +msgid "Wave" +msgstr "Wave" + +#: src/engine/sysDef.cpp:975 src/gui/settings.cpp:4052 +msgid "SNES" +msgstr "" + +#: src/engine/sysDef.cpp:976 +msgid "FM? nah... samples! Nintendo's answer to Sega." +msgstr "FM? nah... samples! a resposta da Nintendo para a Sega." + +#: src/engine/sysDef.cpp:983 +msgid "18xx: Enable echo buffer" +msgstr "18xx: Habilitar buffer de eco" + +#: src/engine/sysDef.cpp:984 +msgid "19xx: Set echo delay (0 to F)" +msgstr "19xx: Definir atraso de eco (0 a F)" + +#: src/engine/sysDef.cpp:985 +msgid "1Axx: Set left echo volume" +msgstr "1Axx: Definir volume esquerdo do eco" + +#: src/engine/sysDef.cpp:986 +msgid "1Bxx: Set right echo volume" +msgstr "1Bxx: Definir volume direito do eco" + +#: src/engine/sysDef.cpp:987 +msgid "1Cxx: Set echo feedback" +msgstr "1Cxx: Definir retorno do eco" + +#: src/engine/sysDef.cpp:988 +msgid "1Exx: Set dry output volume (left)" +msgstr "1Exx: Definir volume de saída não-processado (esquerda)" + +#: src/engine/sysDef.cpp:989 +msgid "1Fxx: Set dry output volume (right)" +msgstr "1Fxx: Definir volume de saída não-processado (direita)" + +#: src/engine/sysDef.cpp:990 +msgid "30xx: Set echo filter coefficient 0" +msgstr "30xx: Definir coeficiente de filtro do eco 0" + +#: src/engine/sysDef.cpp:991 +msgid "31xx: Set echo filter coefficient 1" +msgstr "31xx: Definir coeficiente de filtro do eco 1" + +#: src/engine/sysDef.cpp:992 +msgid "32xx: Set echo filter coefficient 2" +msgstr "32xx: Definir coeficiente de filtro do eco 2" + +#: src/engine/sysDef.cpp:993 +msgid "33xx: Set echo filter coefficient 3" +msgstr "33xx: Definir coeficiente de filtro do eco 3" + +#: src/engine/sysDef.cpp:994 +msgid "34xx: Set echo filter coefficient 4" +msgstr "34xx: Definir coeficiente de filtro do eco 4" + +#: src/engine/sysDef.cpp:995 +msgid "35xx: Set echo filter coefficient 5" +msgstr "35xx: Definir coeficiente de filtro do eco 5" + +#: src/engine/sysDef.cpp:996 +msgid "36xx: Set echo filter coefficient 6" +msgstr "36xx: Definir coeficiente de filtro do eco 6" + +#: src/engine/sysDef.cpp:997 +msgid "37xx: Set echo filter coefficient 7" +msgstr "37xx: Definir coeficiente de filtro do eco 7" + +#: src/engine/sysDef.cpp:1002 +msgid "12xx: Toggle echo on this channel" +msgstr "12xx: Alternar eco neste canal" + +#: src/engine/sysDef.cpp:1003 +msgid "13xx: Toggle pitch modulation" +msgstr "13xx: Alternar modulação de tom" + +#: src/engine/sysDef.cpp:1004 +msgid "14xy: Toggle invert (x: left; y: right)" +msgstr "14xy: Alternar inversão de onda (x: esquerda; y: direita)" + +#: src/engine/sysDef.cpp:1005 +msgid "" +"15xx: Set envelope mode (0: ADSR, 1: gain/direct, 2: dec, 3: exp, 4: inc, 5: " +"bent)" +msgstr "" +"15xx: Definir modo de envelope (0: ADSR, 1: ganho/direto, 2: decr., 3: exp., " +"4: incr., 5: linha torta)" + +#: src/engine/sysDef.cpp:1006 +msgid "16xx: Set gain (00 to 7F if direct; 00 to 1F otherwise)" +msgstr "16xx: Definir ganho (00 a 7F se for direto; 00 a 1F caso contrário)" + +#: src/engine/sysDef.cpp:1007 +msgid "1Dxx: Set noise frequency (00 to 1F)" +msgstr "1Dxx: Definir frequência do ruído (00 a 1F)" + +#: src/engine/sysDef.cpp:1008 +msgid "20xx: Set attack (0 to F)" +msgstr "20xx: Definir ataque (0 a F)" + +#: src/engine/sysDef.cpp:1009 +msgid "21xx: Set decay (0 to 7)" +msgstr "21xx: Definir decaimento (0 a 7)" + +#: src/engine/sysDef.cpp:1010 +msgid "22xx: Set sustain (0 to 7)" +msgstr "22xx: Definir sustentação (0 a 7)" + +#: src/engine/sysDef.cpp:1011 +msgid "23xx: Set release (00 to 1F)" +msgstr "23xx: Definir repouso (00 a 1F)" + +#: src/engine/sysDef.cpp:1016 +msgid "Konami VRC6" +msgstr "" + +#: src/engine/sysDef.cpp:1017 +msgid "an expansion chip for the Famicom, featuring a quirky sawtooth channel." +msgstr "" +"um chip de expansão para o Famicom, contendo um canal dente-de-serra " +"peculiar." + +#: src/engine/sysDef.cpp:1018 +msgid "VRC6 1" +msgstr "" + +#: src/engine/sysDef.cpp:1018 +msgid "VRC6 2" +msgstr "" + +#: src/engine/sysDef.cpp:1018 +msgid "VRC6 Saw" +msgstr "Serra VRC6" + +#: src/engine/sysDef.cpp:1024 src/engine/sysDef.cpp:2092 +msgid "12xx: Set duty cycle (pulse: 0 to 7)" +msgstr "12xx: Definir ciclo de trabalho (pulso: 0 a 7)" + +#: src/engine/sysDef.cpp:1030 +msgid "Yamaha YM2413 (OPLL)" +msgstr "" + +#: src/engine/sysDef.cpp:1031 +msgid "" +"cost-reduced version of the OPL with 16 patches and only one of them is user-" +"configurable." +msgstr "" +"versão de custo reduzido do chip OPL com 16 timbres selecionáveis, e apenas " +"um deles é configurável pelo usuário." + +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1173 +#: src/engine/sysDef.cpp:1185 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:2006 +msgid "FM 9" +msgstr "" + +#: src/engine/sysDef.cpp:1042 +msgid "Famicom Disk System (chip)" +msgstr "Famicom Disk System (chip)" + +#: src/engine/sysDef.cpp:1043 +msgid "a disk drive for the Famicom which also contains one wavetable channel." +msgstr "" +"um drive de disquete para o Famicom que também contém um canal de wavetable." + +#: src/engine/sysDef.cpp:1044 src/gui/settings.cpp:4039 +msgid "FDS" +msgstr "" + +#: src/engine/sysDef.cpp:1051 +msgid "11xx: Set modulation depth" +msgstr "11xx: Definir profundidade de modulação" + +#: src/engine/sysDef.cpp:1052 +msgid "12xy: Set modulation speed high byte (x: enable; y: value)" +msgstr "" +"12xy: Definir byte superior da velocidade de modulação (x: habilitar; y: " +"valor)" + +#: src/engine/sysDef.cpp:1053 +msgid "13xx: Set modulation speed low byte" +msgstr "13xx: Definir byte inferior da velocidade de modulação" + +#: src/engine/sysDef.cpp:1054 +msgid "14xx: Set modulator position" +msgstr "14xx: Definir posição do modulador" + +#: src/engine/sysDef.cpp:1055 +msgid "15xx: Set modulator table to waveform" +msgstr "15xx: Definir tabela do modulador para uma forma de onda" + +#: src/engine/sysDef.cpp:1060 +msgid "MMC5" +msgstr "" + +#: src/engine/sysDef.cpp:1061 +msgid "" +"an expansion chip for the Famicom, featuring a little-known PCM channel." +msgstr "" +"um chip de expansão para o Famicom, contendo um canal PCM pouco conhecido." + +#: src/engine/sysDef.cpp:1073 src/gui/settings.cpp:4041 +msgid "Namco 163" +msgstr "Namco 163" + +#: src/engine/sysDef.cpp:1074 +msgid "an expansion chip for the Famicom, with full wavetable." +msgstr "um chip de expansão para o Famicom, com vários canais de wavetable." + +#: src/engine/sysDef.cpp:1081 +msgid "18xx: Change channel limits (0 to 7, x + 1)" +msgstr "18xx: Mudar limite de canais (0 a 7, x + 1)" + +#: src/engine/sysDef.cpp:1082 +msgid "20xx: Load a waveform into memory" +msgstr "20xx: Carregar uma forma de onda na memória" + +#: src/engine/sysDef.cpp:1083 +msgid "21xx: Set position for wave load" +msgstr "21xx: Definir posição para carregar onda na memória" + +#: src/engine/sysDef.cpp:1086 +msgid "10xx: Select waveform" +msgstr "10xx: Selecionar forma de onda" + +#: src/engine/sysDef.cpp:1087 +msgid "11xx: Set waveform position in RAM" +msgstr "11xx: Definir posição da forma de onda na RAM" + +#: src/engine/sysDef.cpp:1088 +msgid "12xx: Set waveform length in RAM (04 to FC in steps of 4)" +msgstr "" +"12xx: Definir comprimento da forma de onda na RAM (04 a FC em incrementos de " +"4)" + +#: src/engine/sysDef.cpp:1089 +msgid "15xx: Set waveform load position" +msgstr "15xx: Definir posição de carregamento de forma de onda" + +#: src/engine/sysDef.cpp:1090 +msgid "16xx: Set waveform load length (04 to FC in steps of 4)" +msgstr "" +"16xx: Definir comprimento do carregamento da forma de onda (04 a FC em " +"incrementos de 4)" + +#: src/engine/sysDef.cpp:1095 +msgid "Yamaha YM2203 (OPN)" +msgstr "" + +#: src/engine/sysDef.cpp:1096 +msgid "" +"cost-reduced version of the OPM with a different register layout and no " +"stereo...\n" +"...but it has a built-in AY-3-8910! (actually an YM2149)" +msgstr "" +"versão de custo reduzido do OPM com um leiaute de registradores diferentes e " +"sem estéreo...\n" +"...mas ele tem um AY-3-8910 embutido! (na verdade é um YM2149)" + +#: src/engine/sysDef.cpp:1107 +msgid "Yamaha YM2203 (OPN) Extended Channel 3" +msgstr "Yamaha YM2203 (OPN) com Canal 3 Estendido" + +#: src/engine/sysDef.cpp:1108 +msgid "" +"cost-reduced version of the OPM with a different register layout and no " +"stereo...\n" +"...but it has a built-in AY-3-8910! (actually an YM2149)\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies" +msgstr "" +"versão de custo reduzido do OPM com um leiaute de registradores diferentes e " +"sem estéreo...\n" +"...mas ele tem um AY-3-8910 embutido! (na verdade é um YM2149)\n" +"esse está em modo de Canal Estendido, que transforma o terceiro canal FM em " +"quatro operadores com notas/frequências independentes." + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP1" +msgstr "" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP2" +msgstr "" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP3" +msgstr "" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP4" +msgstr "" + +#: src/engine/sysDef.cpp:1120 +msgid "Yamaha YM2203 (OPN) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1121 +msgid "" +"cost-reduced version of the OPM with a different register layout and no " +"stereo...\n" +"...but it has a built-in AY-3-8910! (actually an YM2149)\n" +"CSM blah blah" +msgstr "" + +#: src/engine/sysDef.cpp:1122 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1383 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1559 src/engine/sysDef.cpp:1861 +msgid "CSM Timer" +msgstr "Timer CSM" + +#: src/engine/sysDef.cpp:1133 +msgid "Yamaha YM2608 (OPNA)" +msgstr "" + +#: src/engine/sysDef.cpp:1134 +msgid "" +"OPN but twice the FM channels, stereo makes a come-back and has rhythm and " +"ADPCM channels." +msgstr "" +"OPN mas com o dobro dos canais FM, o estéreo está de volta e possui canais " +"de bateria e um canal ADPCM." + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1481 +#: src/gui/insEdit.cpp:3302 src/gui/insEdit.cpp:3624 +msgid "Kick" +msgstr "Bumbo" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:210 src/gui/insEdit.cpp:218 +msgid "Snare" +msgstr "Caixa" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:212 src/gui/insEdit.cpp:220 +#: src/gui/insEdit.cpp:1909 src/gui/insEdit.cpp:2014 +msgid "Top" +msgstr "Topo" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:213 src/gui/insEdit.cpp:219 +msgid "HiHat" +msgstr "Chimbal" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:211 +msgid "Tom" +msgstr "Surdo" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 +msgid "Rim" +msgstr "Aro" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:1693 +msgid "ADPCM" +msgstr "ADPCM" + +#: src/engine/sysDef.cpp:1145 +msgid "Yamaha YM2608 (OPNA) Extended Channel 3" +msgstr "Yamaha YM2608 (OPNA) com Canal 3 Estendido" + +#: src/engine/sysDef.cpp:1146 +msgid "" +"OPN but twice the FM channels, stereo makes a come-back and has rhythm and " +"ADPCM channels.\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies" +msgstr "" + +#: src/engine/sysDef.cpp:1158 +msgid "Yamaha YM2608 (OPNA) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1159 +msgid "" +"OPN but twice the FM channels, stereo makes a come-back and has rhythm and " +"ADPCM channels.\n" +"CSM blah blah" +msgstr "" + +#: src/engine/sysDef.cpp:1171 +msgid "Yamaha YM3526 (OPL)" +msgstr "" + +#: src/engine/sysDef.cpp:1172 +msgid "" +"OPN, but what if you only had two operators, no stereo, no detune and a " +"lower ADSR parameter range?" +msgstr "" +"OPN, mas e se você só tivesse dois operadores, não tivesse estéreo, nem " +"desafinação e tivesse um alcance menor nos parâmetros ADSR?" + +#: src/engine/sysDef.cpp:1183 +msgid "Yamaha YM3812 (OPL2)" +msgstr "" + +#: src/engine/sysDef.cpp:1184 +msgid "OPL, but what if you had more waveforms to choose than the normal sine?" +msgstr "" +"OPL, mas e se você tivesse mais formas de onda pra escolher do que apenas o " +"seno normal?" + +#: src/engine/sysDef.cpp:1195 +msgid "Yamaha YMF262 (OPL3)" +msgstr "" + +#: src/engine/sysDef.cpp:1196 +msgid "" +"OPL2, but what if you had twice the channels, 4-op mode, stereo and even " +"more waveforms?" +msgstr "" +"OPL2, mas e se você tivesse o dobro de canais, modo de 4 operadores, estéreo " +"e ainda mais formas de onda?" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 1" +msgstr "4OP 1" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 3" +msgstr "4OP 3" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 5" +msgstr "4OP 5" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 7" +msgstr "4OP 7" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 9" +msgstr "4OP 9" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 10" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 11" +msgstr "4OP 11" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 12" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 13" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 14" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 15" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:2006 +msgid "FM 16" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:2006 +msgid "FM 17" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:2006 +msgid "FM 18" +msgstr "" + +#: src/engine/sysDef.cpp:1208 src/gui/settings.cpp:4051 +msgid "MultiPCM" +msgstr "MultiPCM" + +#: src/engine/sysDef.cpp:1209 +msgid "" +"how many channels of PCM do you want?\n" +"MultiPCM: yes" +msgstr "" +"quantos canais de PCM você quer?\n" +"MultiPCM: sim" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 17" +msgstr "Canal 17" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 18" +msgstr "Canal 18" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 19" +msgstr "Canal 19" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 20" +msgstr "Canal 20" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 21" +msgstr "Canal 21" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 22" +msgstr "Canal 22" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 23" +msgstr "Canal 23" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 24" +msgstr "Canal 24" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 25" +msgstr "Canal 25" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 26" +msgstr "Canal 26" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 27" +msgstr "Canal 27" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 28" +msgstr "Canal 28" + +#: src/engine/sysDef.cpp:1217 +msgid "PC Speaker" +msgstr "PC Speaker" + +#: src/engine/sysDef.cpp:1218 +msgid "good luck! you get one square and no volume control." +msgstr "boa sorte! você tem uma onda quadrada e nenhum controle de volume." + +#: src/engine/sysDef.cpp:1219 src/engine/sysDef.cpp:1228 +#: src/gui/guiConst.cpp:1394 src/gui/waveEdit.cpp:199 src/gui/insEdit.cpp:183 +#: src/gui/insEdit.cpp:194 src/gui/insEdit.cpp:326 src/gui/insEdit.cpp:656 +msgid "Square" +msgstr "Onda quadrada" + +#: src/engine/sysDef.cpp:1226 +msgid "Pong" +msgstr "" + +#: src/engine/sysDef.cpp:1227 +msgid "please don't use this chip. it was added as a joke." +msgstr "" +"por favor não use esse chip. ele foi adicionado por causa de uma brincadeira." + +#: src/engine/sysDef.cpp:1235 src/gui/settings.cpp:4044 +msgid "POKEY" +msgstr "" + +#: src/engine/sysDef.cpp:1236 +msgid "" +"TIA, but better and more flexible.\n" +"used in the Atari 8-bit family of computers (400/800/XL/XE)." +msgstr "" +"TIA, só que melhor e mais flexível.\n" +"utilizado na família de computadores Atari 8-bit (400/800/XL/XE)." + +#: src/engine/sysDef.cpp:1243 src/engine/sysDef.cpp:1714 +msgid "10xx: Set waveform (0 to 7)" +msgstr "10xx: Definir forma de onda (0 a 7)" + +#: src/engine/sysDef.cpp:1244 +msgid "11xx: Set AUDCTL" +msgstr "11xx: Definir AUDCTL" + +#: src/engine/sysDef.cpp:1245 +msgid "12xx: Toggle two-tone mode" +msgstr "12xx: Alternar modo de dois tons" + +#: src/engine/sysDef.cpp:1250 +msgid "Ricoh RF5C68" +msgstr "" + +#: src/engine/sysDef.cpp:1251 +msgid "" +"this is like SNES' sound chip but without interpolation and the rest of nice " +"bits." +msgstr "" +"esse é como o chip de som do SNES só que sem interpolação e o resto das " +"coisas legais." + +#: src/engine/sysDef.cpp:1260 src/gui/settings.cpp:4046 +msgid "WonderSwan" +msgstr "" + +#: src/engine/sysDef.cpp:1261 +msgid "developed by the makers of the Game Boy and the Virtual Boy..." +msgstr "desenvolvido pelos criadores do Game Boy e do Virtual Boy..." + +#: src/engine/sysDef.cpp:1262 +msgid "Wave/PCM" +msgstr "" + +#: src/engine/sysDef.cpp:1262 +msgid "Wave/Sweep" +msgstr "" + +#: src/engine/sysDef.cpp:1262 +msgid "Wave/Noise" +msgstr "" + +#: src/engine/sysDef.cpp:1269 +msgid "11xx: Setup noise mode (0: disabled; 1-8: enabled/tap)" +msgstr "11xx: Configurar modo de ruído (0: desabilitado; 1-8: habilitado/tap)" + +#: src/engine/sysDef.cpp:1270 +msgid "12xx: Setup sweep period (0: disabled; 1-20: enabled/period)" +msgstr "" +"12xx: Configurar período de sweep (0: desabilitado; 1-20: habilitado/período)" + +#: src/engine/sysDef.cpp:1271 +msgid "13xx: Set sweep amount" +msgstr "13xx: Definir quantidade de sweep" + +#: src/engine/sysDef.cpp:1277 +msgid "Yamaha YM2414 (OPZ)" +msgstr "" + +#: src/engine/sysDef.cpp:1278 +msgid "" +"like OPM, but with more waveforms, fixed frequency mode and totally... " +"undocumented.\n" +"used in the Yamaha TX81Z and some other synthesizers." +msgstr "" +"como o OPM, mas com mais formas de onda, modo de frequência fixa e " +"completamente... não documentado.\n" +"utilizado no Yamaha TX81Z e alguns outros sintetizadores." + +#: src/engine/sysDef.cpp:1285 +msgid "2Fxx: Toggle hard envelope reset on new notes" +msgstr "2Fxx: Alternar reinício brusco do envelope em novas notas" + +#: src/engine/sysDef.cpp:1291 src/gui/settings.cpp:4069 +msgid "Pokémon Mini" +msgstr "" + +#: src/engine/sysDef.cpp:1292 +msgid "this one is like PC Speaker but has duty cycles." +msgstr "esse é parecido com o PC Speaker só que tem ciclos de trabalho." + +#: src/engine/sysDef.cpp:1293 src/gui/settings.cpp:4092 src/gui/waveEdit.cpp:33 +msgid "Pulse" +msgstr "Pulsada" + +#: src/engine/sysDef.cpp:1300 +msgid "SegaPCM" +msgstr "" + +#: src/engine/sysDef.cpp:1301 +msgid "" +"used in some Sega arcade boards (like OutRun), and usually paired with a " +"YM2151." +msgstr "" +"utilizado em algumas placas de fliperama da Sega (como OutRun), e geralmente " +"pareado com um YM2151 (OPM)." + +#: src/engine/sysDef.cpp:1312 src/gui/settings.cpp:4040 +msgid "Virtual Boy" +msgstr "" + +#: src/engine/sysDef.cpp:1313 +msgid "" +"a console which failed to sell well due to its headache-inducing features." +msgstr "" +"um console que foi um desastre de vendas por conta dos seus recursos que " +"causavam dores de cabeça." + +#: src/engine/sysDef.cpp:1321 +msgid "11xx: Set noise length (0 to 7)" +msgstr "11xx: Definir comprimento do ruído (0 a 7)" + +#: src/engine/sysDef.cpp:1322 +msgid "" +"12xy: Setup envelope (x: enabled/loop (1: enable, 3: enable+loop); y: speed/" +"direction (0-7: down, 8-F: up))" +msgstr "" +"12xy: Definir envelope (x: habilitado/repetir (1: habilitado, 3: habilitado" +"+repetir); y: velocidade/direção (0-7: para baixo, 8-F: para cima))" + +#: src/engine/sysDef.cpp:1323 +msgid "13xy: Setup sweep (x: speed; y: shift; channel 5 only)" +msgstr "" +"13xy: Configurar sweep (x: velocidade; y: deslocamento; apenas no canal 5)" + +#: src/engine/sysDef.cpp:1324 +msgid "" +"14xy: Setup modulation (x: enabled/loop (1: enable, 3: enable+loop); y: " +"speed; channel 5 only)" +msgstr "" +"14xy: Configurar modulação (x: habilitada/repetir (1: habilitada, 3: " +"habilitada+repetir); y: velocidade; canal 5 somente)" + +#: src/engine/sysDef.cpp:1325 +msgid "15xx: Set modulation waveform (x: wavetable; channel 5 only)" +msgstr "" +"15xx: Definir forma de onda de modulação (x: wavetable; canal 5 somente)" + +#: src/engine/sysDef.cpp:1330 +msgid "Konami VRC7" +msgstr "" + +#: src/engine/sysDef.cpp:1331 +msgid "" +"like OPLL, but even more cost reductions applied. three FM channels went " +"missing, and drums mode did as well..." +msgstr "" + +#: src/engine/sysDef.cpp:1342 +msgid "Yamaha YM2610B (OPNB2)" +msgstr "" + +#: src/engine/sysDef.cpp:1343 +msgid "" +"so Taito asked Yamaha if they could get the two missing FM channels back, " +"and Yamaha gladly provided them with this chip." +msgstr "" +"então a Taito pediu à Yamaha se eles poderiam ter os 2 canais FM faltantes " +"de volta, e a Yamaha lhes providenciou de bom grado com este chip." + +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/gui/settings.cpp:4061 +msgid "ADPCM-B" +msgstr "ADPCM-B" + +#: src/engine/sysDef.cpp:1354 +msgid "ZX Spectrum Beeper" +msgstr "Beeper do ZX Spectrum" + +#: src/engine/sysDef.cpp:1355 +msgid "" +"the ZX Spectrum only had a basic beeper capable of...\n" +"...a bunch of thin pulses and tons of other interesting stuff!\n" +"Furnace provides a thin pulse system." +msgstr "" +"o ZX Spectrum só tinha um beeper básico capaz de...\n" +"...um monte de pulsos finos e um monte de outras coisas interessantes!\n" +"Furnace provê um sistema de pulsos finos." + +#: src/engine/sysDef.cpp:1362 src/engine/sysDef.cpp:1950 +msgid "12xx: Set pulse width" +msgstr "12xx: Definir largura de pulso" + +#: src/engine/sysDef.cpp:1363 +msgid "17xx: Trigger overlay drum" +msgstr "17xx: Disparar tambor sobreposto" + +#: src/engine/sysDef.cpp:1368 +msgid "Yamaha YM2612 (OPN2) Extended Channel 3" +msgstr "Yamaha YM2612 (OPN2) com Canal 3 Estendido" + +#: src/engine/sysDef.cpp:1369 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies." +msgstr "" +"esse chip é mais conhecido por ter sido utilizado no Sega Mega Drive (mas " +"ele também foi usado no computador FM Towns).\n" +"esse está em modo de Canal Estendido, que transforma o terceiro canal FM em " +"quatro operadores com notas/frequências independentes." + +#: src/engine/sysDef.cpp:1381 +msgid "Yamaha YM2612 (OPN2) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1382 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this one includes CSM mode control for special effects on Channel 3." +msgstr "" +"esse chip é mais conhecido por ter sido utilizado no Sega Mega Drive (mas " +"ele também foi usado no computador FM Towns).\n" +"esse inclui controle do modo CSM para efeitos especiais no Canal 3." + +#: src/engine/sysDef.cpp:1394 src/gui/settings.cpp:4042 +msgid "Konami SCC" +msgstr "" + +#: src/engine/sysDef.cpp:1395 +msgid "" +"a wavetable chip made by Konami for use with the MSX.\n" +"the last channel shares its wavetable with the previous one though." +msgstr "" +"um chip wavetable feito pela Konami para ser utilizado com o MSX.\n" +"o último canal compartilha sua wavetable com o anterior, porém." + +#: src/engine/sysDef.cpp:1405 +msgid "Yamaha YM3526 (OPL) with drums" +msgstr "Yamaha YM3526 (OPL) em modo bateria" + +#: src/engine/sysDef.cpp:1406 +msgid "the OPL chip but with drums mode enabled." +msgstr "o chip OPL mas com modo bateria habilitado." + +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1693 +msgid "Kick/FM 7" +msgstr "Bumbo/FM 7" + +#: src/engine/sysDef.cpp:1417 +msgid "Yamaha YM3812 (OPL2) with drums" +msgstr "Yamaha YM3812 (OPL2) em modo bateria" + +#: src/engine/sysDef.cpp:1418 +msgid "the OPL2 chip but with drums mode enabled." +msgstr "o chip OPL2 mas com modo bateria habilitado." + +#: src/engine/sysDef.cpp:1429 +msgid "Yamaha YMF262 (OPL3) with drums" +msgstr "Yamaha YMF262 (OPL3) em modo bateria" + +#: src/engine/sysDef.cpp:1430 +msgid "the OPL3 chip but with drums mode enabled." +msgstr "o chip OPL3 mas com modo bateria habilitado." + +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1631 +msgid "Kick/FM 16" +msgstr "Bumbo/FM 16" + +#: src/engine/sysDef.cpp:1441 +msgid "Yamaha YM2610 (OPNB)" +msgstr "" + +#: src/engine/sysDef.cpp:1442 +msgid "" +"this chip was used in SNK's Neo Geo arcade board and video game console.\n" +"it's like OPNA but the rhythm channels are ADPCM channels and two FM " +"channels went missing." +msgstr "" +"esse chip foi usado no Neo Geo, placa de fliperama e console de videogame da " +"SNK.\n" +"é como o OPNA mas os canais de bateria são canais de ADPCM e dois canais de " +"FM foram removidos." + +#: src/engine/sysDef.cpp:1453 +msgid "Yamaha YM2610 (OPNB) Extended Channel 2" +msgstr "Yamaha YM2610 (OPNB) com Canal 2 Estendido" + +#: src/engine/sysDef.cpp:1454 +msgid "" +"this chip was used in SNK's Neo Geo arcade board and video game console.\n" +"it's like OPNA but the rhythm channels are ADPCM channels and two FM " +"channels went missing.\n" +"this one is in Extended Channel mode, which turns the second FM channel into " +"four operators with independent notes/frequencies." +msgstr "" +"esse chip foi usado no Neo Geo, placa de fliperama e console de videogame da " +"SNK.\n" +"é como o OPNA mas os canais de bateria são canais de ADPCM e dois canais de " +"FM foram removidos.\n" +"esse está em modo de Canal Estendido, que transforma o segundo canal FM em " +"quatro operadores com notas/frequências independentes." + +#: src/engine/sysDef.cpp:1466 +msgid "Yamaha YM2610 (OPNB) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1467 +msgid "" +"this chip was used in SNK's Neo Geo arcade board and video game console.\n" +"it's like OPNA but the rhythm channels are ADPCM channels and two FM " +"channels went missing.\n" +"this one includes CSM mode control for special effects on Channel 2." +msgstr "" + +#: src/engine/sysDef.cpp:1479 +msgid "Yamaha YM2413 (OPLL) with drums" +msgstr "Yamaha YM2413 (OPLL) em modo bateria" + +#: src/engine/sysDef.cpp:1480 +msgid "the OPLL chips but with drums mode turned on." +msgstr "" + +#: src/engine/sysDef.cpp:1491 +msgid "3xxx: Load LFSR (0 to FFF)" +msgstr "3xxx: Carregar LFSR (0 a FFF)" + +#: src/engine/sysDef.cpp:1497 +msgid "Atari Lynx" +msgstr "" + +#: src/engine/sysDef.cpp:1498 +msgid "" +"a portable console made by Atari. it has all of Atari's trademark waveforms." +msgstr "" +"um console portátil feito pela Atari. ele possui todas as formas de onda " +"conhecidíssimas dos consoles Atari." + +#: src/engine/sysDef.cpp:1509 +msgid "10xx: Set echo feedback level (00 to FF)" +msgstr "10xx: Definir nível de retorno do Eco (00 a FF)" + +#: src/engine/sysDef.cpp:1510 +msgid "11xx: Set channel echo level (00 to FF)" +msgstr "11xx: Definir nível de eco do canal (00 a FF)" + +#: src/engine/sysDef.cpp:1511 +msgid "12xx: Toggle QSound algorithm (0: disabled; 1: enabled)" +msgstr "12xx: Alternar algoritmo QSound (0: desabilitado; 1: habilitado)" + +#: src/engine/sysDef.cpp:1513 +msgid "3xxx: Set echo delay buffer length (000 to AA5)" +msgstr "3xxx: Definir tamanho do buffer de atraso do eco (000 a AA5)" + +#: src/engine/sysDef.cpp:1519 +msgid "Capcom QSound" +msgstr "" + +#: src/engine/sysDef.cpp:1520 +msgid "" +"used in some of Capcom's arcade boards. surround-like sampled sound with " +"echo." +msgstr "" +"utilizado em algumas das placas de fliperama da Capcom. som amostrado estilo " +"surround com eco." + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +#: src/engine/sysDef.cpp:2056 +msgid "PCM 1" +msgstr "PCM 1" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +#: src/engine/sysDef.cpp:2056 +msgid "PCM 2" +msgstr "PCM 2" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 3" +msgstr "PCM 3" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 4" +msgstr "PCM 4" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 5" +msgstr "PCM 5" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 6" +msgstr "PCM 6" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 7" +msgstr "PCM 7" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 8" +msgstr "PCM 8" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 9" +msgstr "PCM 9" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 10" +msgstr "PCM 10" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 11" +msgstr "PCM 11" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 12" +msgstr "PCM 12" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 13" +msgstr "PCM 13" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 14" +msgstr "PCM 14" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 15" +msgstr "PCM 15" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 16" +msgstr "PCM 16" + +#: src/engine/sysDef.cpp:1521 +msgid "ADPCM 1" +msgstr "ADPCM 1" + +#: src/engine/sysDef.cpp:1521 +msgid "ADPCM 2" +msgstr "ADPCM 2" + +#: src/engine/sysDef.cpp:1521 +msgid "ADPCM 3" +msgstr "ADPCM 3" + +#: src/engine/sysDef.cpp:1530 src/gui/settings.cpp:4048 +msgid "VERA" +msgstr "" + +#: src/engine/sysDef.cpp:1531 +msgid "the chip used in a computer design created by The 8-Bit Guy." +msgstr "o chip utilizado em um computador criado pelo The 8-Bit Guy." + +#: src/engine/sysDef.cpp:1538 +msgid "20xx: Set waveform" +msgstr "20xx: Definir forma de onda" + +#: src/engine/sysDef.cpp:1539 +msgid "22xx: Set duty cycle (0 to 3F)" +msgstr "22xx: Definir ciclo de trabalho (0 a 3F)" + +#: src/engine/sysDef.cpp:1544 +msgid "Yamaha YM2610B (OPNB2) Extended Channel 3" +msgstr "Yamaha YM2610B (OPNB2) com Canal 3 Estendido" + +#: src/engine/sysDef.cpp:1545 +msgid "" +"so Taito asked Yamaha if they could get the two missing FM channels back, " +"and Yamaha gladly provided them with this chip.\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies." +msgstr "" +"então a Taito pediu à Yamaha se eles poderiam ter os 2 canais FM faltantes " +"de volta, e a Yamaha lhes providenciou de bom grado com este chip.\n" +"esse está em modo de Canal Estendido, que transforma o terceiro canal FM em " +"quatro operadores com notas/frequências independentes." + +#: src/engine/sysDef.cpp:1557 +msgid "Yamaha YM2610B (OPNB2) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1558 +msgid "" +"so Taito asked Yamaha if they could get the two missing FM channels back, " +"and Yamaha gladly provided them with this chip.\n" +"CSM blah blah" +msgstr "" + +#: src/engine/sysDef.cpp:1570 +msgid "SegaPCM (compatible 5-channel mode)" +msgstr "SegaPCM (modo de compatibilidade de 5 canais)" + +#: src/engine/sysDef.cpp:1571 +msgid "" +"this is the same thing as SegaPCM, but only exposes 5 of the channels for " +"compatibility with DefleMask." +msgstr "" +"esse é a mesma coisa que o SegaPCM, mas só expões 5 dos canais para " +"compatibilidade com o DefleMask." + +#: src/engine/sysDef.cpp:1582 +msgid "Seta/Allumer X1-010" +msgstr "" + +#: src/engine/sysDef.cpp:1583 +msgid "" +"a sound chip used in several Seta/Allumer-manufactured arcade boards with " +"too many channels of wavetable sound, which also are capable of sampled " +"sound." +msgstr "" +"um chip de som utilizado em várias placa de fliperama fabricadas pela Seta/" +"Allumer, com muitos canais de wavetable que também são capazes de tocar " +"samples." + +#: src/engine/sysDef.cpp:1591 +msgid "11xx: Set envelope shape" +msgstr "11xx: Definir formato do envelope" + +#: src/engine/sysDef.cpp:1592 +msgid "12xx: Set sample bank slot (0 to 7)" +msgstr "12xx: Definir vaga do banco de samples (0 to 7)" + +#: src/engine/sysDef.cpp:1596 +msgid "20xx: Set PCM frequency (1 to FF)" +msgstr "20xx: Definir frequência PCM (1 a FF)" + +#: src/engine/sysDef.cpp:1597 +msgid "" +"22xx: Set envelope mode (bit 0: enable; bit 1: one-shot; bit 2: split shape " +"to L/R; bit 3/5: H.invert right/left; bit 4/6: V.invert right/left)" +msgstr "" +"22xx: Definir modo do envelope (bit 0: habilitar; bit 1: uma vez; bit 2: " +"dividir formato para esquerda/direita; bit 3/5: inverter hor. direita/" +"esquerda; bit 4/6: inverter vert. direita/esquerda)" + +#: src/engine/sysDef.cpp:1598 +msgid "23xx: Set envelope period" +msgstr "23xx: Definir período do envelope" + +#: src/engine/sysDef.cpp:1606 +msgid "Konami Bubble System WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1607 +msgid "" +"this is the wavetable part of the Bubble System, which also had two " +"AY-3-8910s." +msgstr "" +"essa é a parte wavetable do Bubble System, que também possuía dois AY-3-8910." + +#: src/engine/sysDef.cpp:1619 +msgid "Yamaha YMF278B (OPL4)" +msgstr "" + +#: src/engine/sysDef.cpp:1620 +msgid "like OPL3, but this time it also has a 24-channel version of MultiPCM." +msgstr "" +"como o OPL3, mas dessa vez ele também possui uma versão de 24 canais do " +"MultiPCM." + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 17" +msgstr "PCM 17" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 18" +msgstr "PCM 18" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 19" +msgstr "PCM 19" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 20" +msgstr "PCM 20" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 21" +msgstr "PCM 21" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 22" +msgstr "PCM 22" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 23" +msgstr "PCM 23" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 24" +msgstr "PCM 24" + +#: src/engine/sysDef.cpp:1629 +msgid "Yamaha YMF278B (OPL4) with drums" +msgstr "Yamaha YMF278B (OPL4) em modo bateria" + +#: src/engine/sysDef.cpp:1630 +msgid "the OPL4 but with drums mode turned on." +msgstr "o chip OPL4 mas com modo bateria habilitado." + +#: src/engine/sysDef.cpp:1638 +msgid "11xx: Set filter mode (00 to 03)" +msgstr "11xx: Definir modo de filtro (00 to 03)" + +#: src/engine/sysDef.cpp:1639 +msgid "14xx: Set filter coefficient K1 low byte (00 to FF)" +msgstr "14xx: Definir byte inferior do coeficiente do filtro K1 (00 a FF)" + +#: src/engine/sysDef.cpp:1640 +msgid "15xx: Set filter coefficient K1 high byte (00 to FF)" +msgstr "15xx: Definir byte superior do coeficiente do filtro K1 (00 a FF)" + +#: src/engine/sysDef.cpp:1641 +msgid "16xx: Set filter coefficient K2 low byte (00 to FF)" +msgstr "16xx: Definir byte inferior do coeficiente do filtro K2 (00 a FF)" + +#: src/engine/sysDef.cpp:1642 +msgid "17xx: Set filter coefficient K2 high byte (00 to FF)" +msgstr "17xx: Definir byte superior do coeficiente do filtro K2 (00 a FF)" + +#: src/engine/sysDef.cpp:1643 +msgid "18xx: Set filter coefficient K1 slide up (00 to FF)" +msgstr "18xx: Definir slide para cima do coeficiente do filtro K1 (00 a FF)" + +#: src/engine/sysDef.cpp:1644 +msgid "19xx: Set filter coefficient K1 slide down (00 to FF)" +msgstr "19xx: Definir slide para baixo do coeficiente do filtro K1 (00 a FF)" + +#: src/engine/sysDef.cpp:1645 +msgid "1Axx: Set filter coefficient K2 slide up (00 to FF)" +msgstr "1Axx: Definir slide para cima do coeficiente do filtro K2 (00 a FF)" + +#: src/engine/sysDef.cpp:1646 +msgid "1Bxx: Set filter coefficient K2 slide down (00 to FF)" +msgstr "1Bxx: Definir slide para baixo do coeficiente do filtro K2 (00 a FF)" + +#: src/engine/sysDef.cpp:1647 +msgid "22xx: Set envelope left volume ramp (signed) (00 to FF)" +msgstr "" +"22xx: Definir rampa de volume esquerdo do envelope (sinalizado) (00 a FF)" + +#: src/engine/sysDef.cpp:1648 +msgid "23xx: Set envelope right volume ramp (signed) (00 to FF)" +msgstr "" +"23xx: Definir rampa de volume direito do envelope (sinalizado) (00 a FF)" + +#: src/engine/sysDef.cpp:1649 +msgid "24xx: Set envelope filter coefficient k1 ramp (signed) (00 to FF)" +msgstr "24xx: Definir rampa do coeficiente do filtro K1 (sinalizado) (00 a FF)" + +#: src/engine/sysDef.cpp:1650 +msgid "" +"25xx: Set envelope filter coefficient k1 ramp (signed, slower) (00 to FF)" +msgstr "" +"25xx: Definir rampa do coeficiente do filtro K1 (sinalizado, mais lento) (00 " +"a FF)" + +#: src/engine/sysDef.cpp:1651 +msgid "26xx: Set envelope filter coefficient k2 ramp (signed) (00 to FF)" +msgstr "26xx: Definir rampa do coeficiente do filtro K2 (sinalizado) (00 a FF)" + +#: src/engine/sysDef.cpp:1652 +msgid "" +"27xx: Set envelope filter coefficient k2 ramp (signed, slower) (00 to FF)" +msgstr "" +"27xx: Definir rampa do coeficiente do filtro K2 (sinalizado, mais lento) (00 " +"a FF)" + +#: src/engine/sysDef.cpp:1656 +msgid "120x: Set pause (bit 0)" +msgstr "120x: Definir pausa (bit 0)" + +#: src/engine/sysDef.cpp:1658 +msgid "2xxx: Set envelope count (000 to 1FF)" +msgstr "2xxx: Definir contagem do envelope (000 a 1FF)" + +#: src/engine/sysDef.cpp:1659 +msgid "3xxx: Set filter coefficient K1 (000 to FFF)" +msgstr "3xxx: Definir coeficiente do filtro K1 (000 a FFF)" + +#: src/engine/sysDef.cpp:1660 +msgid "4xxx: Set filter coefficient K2 (000 to FFF)" +msgstr "4xxx: Definir coeficiente do filtro K2 (000 a FFF)" + +#: src/engine/sysDef.cpp:1667 +msgid "Ensoniq ES5506" +msgstr "" + +#: src/engine/sysDef.cpp:1668 +msgid "" +"a sample chip made by Ensoniq, which is the basis for the GF1 chip found in " +"Gravis' Ultrasound cards." +msgstr "" +"um chip de sample feito pela Ensoniq, que é a base para o chip GF1 " +"encontrado nas placas Gravis Ultrasound." + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 29" +msgstr "Canal 29" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 30" +msgstr "Canal 30" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 31" +msgstr "Canal 31" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 32" +msgstr "Canal 32" + +#: src/engine/sysDef.cpp:1679 +msgid "Yamaha Y8950" +msgstr "" + +#: src/engine/sysDef.cpp:1680 +msgid "like OPL but with an ADPCM channel." +msgstr "como o OPL, mas com um canal ADPCM." + +#: src/engine/sysDef.cpp:1691 +msgid "Yamaha Y8950 with drums" +msgstr "Yamaha Y8950 em modo bateria" + +#: src/engine/sysDef.cpp:1692 +msgid "the Y8950 chip, in drums mode." +msgstr "o chip Y8950 mas com modo bateria habilitado." + +#: src/engine/sysDef.cpp:1703 +msgid "Konami SCC+" +msgstr "" + +#: src/engine/sysDef.cpp:1704 +msgid "" +"this is a variant of Konami's SCC chip with the last channel's wavetable " +"being independent." +msgstr "" +"essa é uma variante do chip Konami SCC com a wavetable do último canal sendo " +"independente." + +#: src/engine/sysDef.cpp:1715 +msgid "12xx: Set pulse width (0 to 7F)" +msgstr "12xx: Definir largura de pulso (0 a 7F)" + +#: src/engine/sysDef.cpp:1716 +msgid "13xx: Set resonance (0 to FF)" +msgstr "13xx: Definir ressonância (0 a FF)" + +#: src/engine/sysDef.cpp:1717 +msgid "" +"14xx: Set filter mode (bit 0: ring mod; bit 1: low pass; bit 2: high pass; " +"bit 3: band pass)" +msgstr "" +"14xx: Definir modo de filtro (bit 0: modulação anel; bit 1: passa baixa; bit " +"2: passa alta; bit 3: passa banda)" + +#: src/engine/sysDef.cpp:1718 +msgid "15xx: Set frequency sweep period low byte" +msgstr "15xx: Definir byte inferior do período do sweep de frequência" + +#: src/engine/sysDef.cpp:1719 +msgid "16xx: Set frequency sweep period high byte" +msgstr "16xx: Definir byte superior do período de sweep de frequência" + +#: src/engine/sysDef.cpp:1720 +msgid "17xx: Set volume sweep period low byte" +msgstr "17xx: Definir byte inferior do período do sweep de volume" + +#: src/engine/sysDef.cpp:1721 +msgid "18xx: Set volume sweep period high byte" +msgstr "18xx: Definir byte superior do período do sweep de volume" + +#: src/engine/sysDef.cpp:1722 +msgid "19xx: Set cutoff sweep period low byte" +msgstr "19xx: Definir byte inferior do período do sweep de ponto de corte" + +#: src/engine/sysDef.cpp:1723 +msgid "1Axx: Set cutoff sweep period high byte" +msgstr "1Axx: Definir byte superior do período do sweep de ponto de corte" + +#: src/engine/sysDef.cpp:1724 +msgid "1Bxx: Set frequency sweep boundary" +msgstr "1Bxx: Definir limite do sweep de frequência" + +#: src/engine/sysDef.cpp:1725 +msgid "1Cxx: Set volume sweep boundary" +msgstr "1Cxx: Definir limite do sweep de volume" + +#: src/engine/sysDef.cpp:1726 +msgid "1Dxx: Set cutoff sweep boundary" +msgstr "1Dxx: Definir limite do sweep de ponto de corte" + +#: src/engine/sysDef.cpp:1727 +msgid "1Exx: Set phase reset period low byte" +msgstr "1Exx: Definir byte inferior do período de redefinição de fase" + +#: src/engine/sysDef.cpp:1728 +msgid "1Fxx: Set phase reset period high byte" +msgstr "1Fxx: Definir byte superior do período de redefinição de fase" + +#: src/engine/sysDef.cpp:1729 +msgid "20xx: Toggle frequency sweep (bit 0-6: speed; bit 7: direction is up)" +msgstr "" +"20xx: Alternar sweep de frequência (bit 0-6: velocidade; bit 7: direção é " +"para cima)" + +#: src/engine/sysDef.cpp:1730 +msgid "" +"21xx: Toggle volume sweep (bit 0-4: speed; bit 5: direction is up; bit 6: " +"loop; bit 7: alternate)" +msgstr "" +"21xx: Alternar sweep de volume (bit 0-4: velocidade; bit 5: direção é para " +"cima; bit 6: repetir; bit 7: alternar)" + +#: src/engine/sysDef.cpp:1731 +msgid "22xx: Toggle cutoff sweep (bit 0-6: speed; bit 7: direction is up)" +msgstr "" +"22xx: Alternar sweep de ponto de corte (bit 0-6: velocidade; bit 7: direção " +"é para cima)" + +#: src/engine/sysDef.cpp:1739 +msgid "tildearrow Sound Unit" +msgstr "" + +#: src/engine/sysDef.cpp:1740 +msgid "" +"tildearrow's fantasy sound chip. put SID, AY and VERA in a blender, and you " +"get this!" +msgstr "" +"chip de som de fantasia do tildearrow. coloque o SID, AY e VERA num " +"liquidificador, e você obtém isso!" + +#: src/engine/sysDef.cpp:1751 +msgid "OKI MSM6295" +msgstr "" + +#: src/engine/sysDef.cpp:1752 +msgid "an ADPCM sound chip manufactured by OKI and used in many arcade boards." +msgstr "" +"um chip de som ADPCM fabricado pela OKI e utilizado em muitas placas de " +"fliperama." + +#: src/engine/sysDef.cpp:1759 +msgid "20xx: Set chip output rate (0: clock/132; 1: clock/165)" +msgstr "20xx: Definir taxa de amostragem do chip (0: clock/132; 1: clock/165)" + +#: src/engine/sysDef.cpp:1764 +msgid "OKI MSM6258" +msgstr "" + +#: src/engine/sysDef.cpp:1765 +msgid "an ADPCM sound chip manufactured by OKI and used in the Sharp X68000." +msgstr "um chip de som ADPCM fabricado pela OKI e utilizado no Sharp X68000." + +#: src/engine/sysDef.cpp:1766 src/engine/sysDef.cpp:1887 +#: src/gui/editControls.cpp:437 src/gui/settings.cpp:4223 +#: src/gui/guiConst.cpp:1397 src/gui/insEdit.cpp:2628 src/gui/insEdit.cpp:2666 +msgid "Sample" +msgstr "Sample" + +#: src/engine/sysDef.cpp:1772 +msgid "20xx: Set frequency divider (0-2)" +msgstr "20xx: Definir divisor de frequência (0-2)" + +#: src/engine/sysDef.cpp:1773 +msgid "21xx: Select clock rate (0: full; 1: half)" +msgstr "21xx: Definir taxa de clock (0: 100%; 1: 50%)" + +#: src/engine/sysDef.cpp:1778 +msgid "Yamaha YMZ280B (PCMD8)" +msgstr "" + +#: src/engine/sysDef.cpp:1779 +msgid "" +"used in some arcade boards. Can play back either 4-bit ADPCM, 8-bit PCM or " +"16-bit PCM." +msgstr "" +"utilizado em algumas placas de fliperama. Pode tocar ADPCM 4-bit, PCM 8-bit " +"ou PCM 16-bit." + +#: src/engine/sysDef.cpp:1797 src/gui/settings.cpp:4054 +msgid "Namco WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1798 +msgid "" +"a wavetable sound chip used in Pac-Man, among other early Namco arcade games." +msgstr "" +"um chip de som wavetable utilizado no fliperama Pac-Man, juntamente com " +"outros dos primeiros fliperamas da Namco." + +#: src/engine/sysDef.cpp:1808 +msgid "Namco C15 WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1809 +msgid "" +"successor of the original Namco WSG chip, used in later Namco arcade games." +msgstr "" +"sucessos do chip Namco WSG original, utilizado em fliperamas Namco " +"posteriores." + +#: src/engine/sysDef.cpp:1819 +msgid "Namco C30 WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1820 +msgid "like Namco C15 but with stereo sound." +msgstr "similar ao Namco C15 mas com som estéreo." + +#: src/engine/sysDef.cpp:1830 +msgid "OKI MSM5232" +msgstr "" + +#: src/engine/sysDef.cpp:1831 +msgid "" +"a square wave additive synthesis chip made by OKI. used in some arcade " +"machines and instruments." +msgstr "" +"um chip de síntese aditiva de ondas quadradas feito pela OKI. utilizado em " +"algumas máquinas de fliperama e instrumentos.." + +#: src/engine/sysDef.cpp:1839 +msgid "10xy: Set group control (x: sustain; y: part toggle bitmask)" +msgstr "" +"10xy: Definir controle de grupo (x: sustentação; y: máscara de bits para " +"alternar partes)" + +#: src/engine/sysDef.cpp:1840 src/engine/sysDef.cpp:1998 +msgid "11xx: Set noise mode" +msgstr "11xx: Definir modo de ruído" + +#: src/engine/sysDef.cpp:1841 +msgid "12xx: Set group attack (0 to 5)" +msgstr "12xx: Definir ataque do grupo (0 a 5)" + +#: src/engine/sysDef.cpp:1842 +msgid "13xx: Set group decay (0 to 11)" +msgstr "13xx: Definir decaimento do grupo (0 a 11)" + +#: src/engine/sysDef.cpp:1847 +msgid "Yamaha YM2612 (OPN2) with DualPCM" +msgstr "Yamaha YM2612 (OPN2) com DualPCM" + +#: src/engine/sysDef.cpp:1848 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this system uses software mixing to provide two sample channels." +msgstr "" +"esse chip é mais conhecido por ter sido utilizado no Sega Mega Drive (mas " +"ele também foi usado no computador FM Towns).\n" +"esse sistema utiliza mistura de samples em software para prover dois canais " +"de sample." + +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +msgid "FM 6/PCM 1" +msgstr "FM 6/PCM 1" + +#: src/engine/sysDef.cpp:1859 +msgid "Yamaha YM2612 (OPN2) Extended Channel 3 with DualPCM and CSM" +msgstr "Yamaha YM2612 (OPN2) Extended Channel 3 com DualPCM e CSM" + +#: src/engine/sysDef.cpp:1860 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this system uses software mixing to provide two sample channels.\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:1872 src/gui/settings.cpp:4024 +msgid "T6W28" +msgstr "" + +#: src/engine/sysDef.cpp:1873 +msgid "" +"an SN76489 derivative used in Neo Geo Pocket, has independent stereo volume " +"and noise channel frequency." +msgstr "" +"uma derivativa do SN76489 utilizada no Neo Geo Pocket que possui volume " +"estéreo independente e frequência independente para o canal de ruído." + +#: src/engine/sysDef.cpp:1880 +msgid "20xx: Set noise length (0: short, 1: long)" +msgstr "20xx: Definir comprimento do ruído (0: curto, 1: longo)" + +#: src/engine/sysDef.cpp:1885 +msgid "Generic PCM DAC" +msgstr "DAC PCM Genérico" + +#: src/engine/sysDef.cpp:1886 +msgid "as generic sample playback as it gets." +msgstr "simplesmente reprodução de samples, o mais genérico possível." + +#: src/engine/sysDef.cpp:1898 +msgid "Konami K007232" +msgstr "" + +#: src/engine/sysDef.cpp:1899 +msgid "this PCM chip was widely used at Konami arcade boards in 1986-1990." +msgstr "" +"esse chip PCM foi amplamente utilizado em placas de fliperama da Konami " +"entre 1986 e 1990." + +#: src/engine/sysDef.cpp:1908 +msgid "Irem GA20" +msgstr "" + +#: src/engine/sysDef.cpp:1909 +msgid "" +"yet another PCM chip from Irem. like Amiga, but less pitch resolution and no " +"sample loop." +msgstr "" +"mais um chip PCM da Irem. similar ao Amiga, mas com menos resolução de tom e " +"sem repetição de samples." + +#: src/engine/sysDef.cpp:1918 +msgid "Sharp SM8521" +msgstr "" + +#: src/engine/sysDef.cpp:1919 +msgid "a SoC with wavetable sound hardware." +msgstr "um SoC com hardware de som wavetable." + +#: src/engine/sysDef.cpp:1929 +msgid "Casio PV-1000" +msgstr "" + +#: src/engine/sysDef.cpp:1930 +msgid "" +"a game console with 3 channels of square wave. it's what happens after " +"fusing TIA and VIC together." +msgstr "" +"um console de jogo com 3 canais de onda quadrada. é o que acontece quando se " +"funde a TIA e o VIC juntos." + +#: src/engine/sysDef.cpp:1937 +msgid "10xx: Set ring modulation (0: disable, 1: enable)" +msgstr "10xx: Alternar modulação anel (0: desabilitar, 1: habilitar)" + +#: src/engine/sysDef.cpp:1942 +msgid "ZX Spectrum Beeper (QuadTone Engine)" +msgstr "Beeper do ZX Spectrum (Motor QuadTone)" + +#: src/engine/sysDef.cpp:1943 +msgid "" +"another ZX Spectrum beeper system with full PWM pulses and 3-level volume " +"per channel. it also has a pitchable overlay sample channel." +msgstr "" +"outro sistema de beeper do ZX Spectrum, dessa vez com pulsos PWM completos e " +"volume de 3 níveis por canal. ele também possui um canal de sobreposição de " +"sample com tom controlável." + +#: src/engine/sysDef.cpp:1955 +msgid "Konami K053260" +msgstr "" + +#: src/engine/sysDef.cpp:1956 +msgid "this PCM chip was widely used at Konami arcade boards in 1990-1992." +msgstr "" +"esse chip PCM foi largamente utilizado em placas de fliperama da Konami " +"entre 1990 e 1992." + +#: src/engine/sysDef.cpp:1968 +msgid "MOS Technology TED" +msgstr "" + +#: src/engine/sysDef.cpp:1969 +msgid "" +"two square waves (one may be turned into noise). used in the Commodore " +"Plus/4, 16 and 116." +msgstr "" +"duas ondas quadradas (uma pode ser transformada em ruído). utilizado no " +"Commodore Plus/4, 16 e 116." + +#: src/engine/sysDef.cpp:1978 +msgid "Namco C140" +msgstr "" + +#: src/engine/sysDef.cpp:1979 +msgid "Namco's first PCM chip from 1987. it's pretty good for being so." +msgstr "o primeiro chip PCM da Namco de 1987. é muito bom pelo que é." + +#: src/engine/sysDef.cpp:1989 +msgid "Namco C219" +msgstr "" + +#: src/engine/sysDef.cpp:1990 +msgid "" +"Namco's PCM chip used in their NA-1/2 hardware.\n" +"very similar to C140, but has noise generator." +msgstr "" +"chip de som PCM da Namco utilizado em suas placas de fliperama NA-1/2.\n" +"muito similar ao C140, porém contém um gerador de ruído." + +#: src/engine/sysDef.cpp:1999 +msgid "12xy: Set invert mode (x: surround; y: invert)" +msgstr "12xy: Definir modo de inversão (x: surround; y: inverter)" + +#: src/engine/sysDef.cpp:2004 +msgid "ESS ES1xxx series (ESFM)" +msgstr "ESS série ES1xxx (ESFM)" + +#: src/engine/sysDef.cpp:2005 +msgid "" +"a unique FM synth featured in PC sound cards.\n" +"based on the OPL3 design, but with lots of its features extended." +msgstr "" +"um sintetizador FM único encontrado em placas de som de PC.\n" +"baseado no design do OPL3, mas com muitos de seus recursos estendidos." + +#: src/engine/sysDef.cpp:2006 +msgid "FM 11" +msgstr "" + +#: src/engine/sysDef.cpp:2012 +msgid "2Exx: Toggle hard envelope reset on new notes" +msgstr "2Exx: Alternar reinício brusco do envelope em novas notas" + +#: src/engine/sysDef.cpp:2018 +msgid "PowerNoise" +msgstr "" + +#: src/engine/sysDef.cpp:2019 +msgid "" +"a fantasy sound chip designed by jvsTSX and The Beesh-Spweesh!\n" +"used in the Hexheld fantasy console." +msgstr "" +"um chip de som fantasia desenvolvido por jvsTSX e The Beesh-Spweesh!\n" +"utilizado no console fantasia Hexheld." + +#: src/engine/sysDef.cpp:2020 +msgid "Noise 1" +msgstr "Ruído 1" + +#: src/engine/sysDef.cpp:2020 +msgid "Noise 2" +msgstr "Ruído 2" + +#: src/engine/sysDef.cpp:2020 +msgid "Noise 3" +msgstr "Ruído 3" + +#: src/engine/sysDef.cpp:2020 +msgid "Slope" +msgstr "Rampa" + +#: src/engine/sysDef.cpp:2026 +msgid "" +"20xx: Load low byte of noise channel LFSR (00 to FF) or slope channel " +"accumulator (00 to 7F)" +msgstr "" +"20xx: Carregar byte inferior do LFSR do canal de ruído (00 a FF) ou " +"acumulador do canal de rampa (00 a 7F)" + +#: src/engine/sysDef.cpp:2027 +msgid "21xx: Load high byte of noise channel LFSR (00 to FF)" +msgstr "21xx: Carregar byte superior do LFSR do canal de ruído (00 to FF)" + +#: src/engine/sysDef.cpp:2028 +msgid "22xx: Write to I/O port A" +msgstr "22xx: Escrever na porta E/S A" + +#: src/engine/sysDef.cpp:2029 +msgid "23xx: Write to I/O port B" +msgstr "23xx: Escrever na porta E/S B" + +#: src/engine/sysDef.cpp:2035 src/gui/settings.cpp:4079 +msgid "Dave" +msgstr "" + +#: src/engine/sysDef.cpp:2036 +msgid "" +"this chip was featured in the Enterprise 128 computer. it is similar to " +"POKEY, but with stereo output." +msgstr "" + +#: src/engine/sysDef.cpp:2037 +msgid "DAC Left" +msgstr "DAC Esquerdo" + +#: src/engine/sysDef.cpp:2037 +msgid "DAC Right" +msgstr "DAC Direito" + +#: src/engine/sysDef.cpp:2043 +msgid "10xx: Set waveform (0 to 4; 0 to 3 on noise)" +msgstr "10xx: Definir forma de onda (0 a 4; 0 a 3 no canal de ruído)" + +#: src/engine/sysDef.cpp:2044 +msgid "11xx: Set noise frequency source (0: fixed; 1-3: channels 1 to 3)" +msgstr "" +"11xx: Definir fonte da frequência do ruído (0: fixa; 1-3: canais 1 a 3)" + +#: src/engine/sysDef.cpp:2045 +msgid "12xx: Toggle high-pass with next channel" +msgstr "12xx: Alternar passa alta com o próximo canal" + +#: src/engine/sysDef.cpp:2046 +msgid "13xx: Toggle ring modulation with channel+2" +msgstr "13xx: Alternar modulação anel com o canal+2" + +#: src/engine/sysDef.cpp:2047 +msgid "14xx: Toggle swap counters (noise only)" +msgstr "14xx: Alternar trocar contadores (somente ruído)" + +#: src/engine/sysDef.cpp:2048 +msgid "15xx: Toggle low pass (noise only)" +msgstr "15xx: Alternar passa baixa (somente ruído)" + +#: src/engine/sysDef.cpp:2049 +msgid "16xx: Set clock divider (0: /2; 1: /3)" +msgstr "16xx: Definir divisor de clock (0: /2; 1: /3)" + +#: src/engine/sysDef.cpp:2054 +msgid "Game Boy Advance DMA Sound" +msgstr "" + +#: src/engine/sysDef.cpp:2055 +msgid "" +"additional PCM FIFO channels in Game Boy Advance driven directly by its DMA " +"hardware." +msgstr "" +"canais PCM FIFO adicionais no Game Boy Advance controlados diretamente por " +"seu hardware de DMA." + +#: src/engine/sysDef.cpp:2068 +msgid "Game Boy Advance MinMod" +msgstr "" + +#: src/engine/sysDef.cpp:2069 +msgid "" +"additional PCM FIFO channels in Game Boy Advance driven by software mixing " +"to provide up to sixteen sample channels" +msgstr "" + +#: src/engine/sysDef.cpp:2078 +msgid "11xy: Set echo channel (x: left/right source; y: delay (0 disables))" +msgstr "" +"11xy: Definir canal de eco (x: fonte esquerda/direita; y: atraso (0 " +"desabilita))" + +#: src/engine/sysDef.cpp:2079 +msgid "12xy: Toggle invert (x: left; y: right)" +msgstr "12xy: Alternar inversão (x: lado esquerdo; y: lado direito)" + +#: src/engine/sysDef.cpp:2084 src/gui/settings.cpp:4080 +msgid "Nintendo DS" +msgstr "" + +#: src/engine/sysDef.cpp:2085 +msgid "a handheld video game console with two screens. it uses a stylus." +msgstr "" +"um console de videogame portátil com duas telas. ele usa uma canetinha." + +#: src/engine/sysDef.cpp:2093 +msgid "1Fxx: Set global volume (0 to 7F)" +msgstr "1Fxx: Definir volume global (0 a 7F)" + +#: src/engine/sysDef.cpp:2098 +msgid "5E01" +msgstr "" + +#: src/engine/sysDef.cpp:2099 +msgid "" +"a fantasy sound chip created by Euly. it is based on Ricoh 2A03, adding a " +"couple features such as 32 noise pitches, an extra duty cycle, and three " +"waveforms (besides triangle)." +msgstr "" + +#: src/engine/sysDef.cpp:2107 +msgid "" +"12xx: Set duty cycle/noise mode/waveform (pulse/wave: 0 to 3; noise: 0 or 1)" +msgstr "" + +#: src/engine/sysDef.cpp:2120 src/gui/settings.cpp:4083 +msgid "Bifurcator" +msgstr "" + +#: src/engine/sysDef.cpp:2121 +msgid "a fantasy sound chip using logistic map iterations to generate sound." +msgstr "" + +#: src/engine/sysDef.cpp:2128 +msgid "10xx: Load low byte of channel sample state" +msgstr "" + +#: src/engine/sysDef.cpp:2129 +msgid "11xx: Load high byte of channel sample state" +msgstr "" + +#: src/engine/sysDef.cpp:2130 +msgid "12xx: Set low byte of channel parameter" +msgstr "" + +#: src/engine/sysDef.cpp:2131 +msgid "13xx: Set high byte of channel parameter" +msgstr "" + +#: src/engine/sysDef.cpp:2136 src/gui/settings.cpp:4084 +msgid "SID2" +msgstr "" + +#: src/engine/sysDef.cpp:2137 +msgid "" +"a fantasy sound chip created by LTVA. it is similar to the SID chip, but " +"with many of its problems fixed." +msgstr "" + +#: src/engine/sysDef.cpp:2148 +msgid "Dummy System" +msgstr "Sistema Fantoche" + +#: src/engine/sysDef.cpp:2149 +msgid "this is a system designed for testing purposes." +msgstr "este é um sistema desenvolvido para propósito de testes." + +#: src/engine/engine.cpp:51 +msgid "00xy: Arpeggio" +msgstr "00xy: Arpejo" + +#: src/engine/engine.cpp:53 +msgid "01xx: Pitch slide up" +msgstr "01xx: Slide de tom para cima" + +#: src/engine/engine.cpp:55 +msgid "02xx: Pitch slide down" +msgstr "02xx: Slide de tom para baixo" + +#: src/engine/engine.cpp:57 +msgid "03xx: Portamento" +msgstr "03xx: Portamento" + +#: src/engine/engine.cpp:59 +msgid "04xy: Vibrato (x: speed; y: depth)" +msgstr "04xy: Vibrato (x: velocidade; y: profundidade)" + +#: src/engine/engine.cpp:61 +msgid "05xy: Volume slide + vibrato (compatibility only!)" +msgstr "05xy: Slide de volume + vibrato (apenas para compatibilidade!)" + +#: src/engine/engine.cpp:63 +msgid "06xy: Volume slide + portamento (compatibility only!)" +msgstr "06xy: Slide de volume + portamento (apenas para compatibilidade!)" + +#: src/engine/engine.cpp:65 +msgid "07xy: Tremolo (x: speed; y: depth)" +msgstr "07xy: Tremolo (x: velocidade; y: profundidade)" + +#: src/engine/engine.cpp:67 +msgid "08xy: Set panning (x: left; y: right)" +msgstr "08xy: Definir balanço (x: esquerda; y: direita)" + +#: src/engine/engine.cpp:69 +msgid "09xx: Set groove pattern (speed 1 if no grooves exist)" +msgstr "09xx: Escolher padrão de groove (velocidade 1 se não houverem grooves)" + +#: src/engine/engine.cpp:71 +msgid "0Axy: Volume slide (0y: down; x0: up)" +msgstr "0Axy: Slide de volume (0y: para baixo; x0: para cima)" + +#: src/engine/engine.cpp:73 +msgid "0Bxx: Jump to pattern" +msgstr "0Bxx: Pular para sequência" + +#: src/engine/engine.cpp:75 +msgid "0Cxx: Retrigger" +msgstr "0Cxx: Reacionar nota" + +#: src/engine/engine.cpp:77 +msgid "0Dxx: Jump to next pattern" +msgstr "0Dxx: Pular para a próxima sequência" + +#: src/engine/engine.cpp:79 +msgid "0Fxx: Set speed (speed 2 if no grooves exist)" +msgstr "" +"0Fxx: Definir velocidade (define a velocidade 2 se não houverem grooves)" + +#: src/engine/engine.cpp:81 +msgid "80xx: Set panning (00: left; 80: center; FF: right)" +msgstr "80xx: Definir balanço (00: esquerda; 80: centro; FF: direita)" + +#: src/engine/engine.cpp:83 +msgid "81xx: Set panning (left channel)" +msgstr "81xx: Definir balanço (canal esquerdo)" + +#: src/engine/engine.cpp:85 +msgid "82xx: Set panning (right channel)" +msgstr "82xx: Definir balanço (canal direito)" + +#: src/engine/engine.cpp:87 +msgid "88xy: Set panning (rear channels; x: left; y: right)" +msgstr "88xy: Definir balanço (canais traseiros; x: esquerda; y: direita)" + +#: src/engine/engine.cpp:90 +msgid "89xx: Set panning (rear left channel)" +msgstr "89xx: Definir balanço (canal traseiro esquerdo)" + +#: src/engine/engine.cpp:93 +msgid "8Axx: Set panning (rear right channel)" +msgstr "8Axx: Definir balanço (canal traseiro direito)" + +#: src/engine/engine.cpp:96 +msgid "Cxxx: Set tick rate (hz)" +msgstr "Cxxx: Definir taxa de ticks (Hz)" + +#: src/engine/engine.cpp:98 +msgid "E0xx: Set arp speed" +msgstr "E0xx: Definir velocidade do arpejo" + +#: src/engine/engine.cpp:100 +msgid "E1xy: Note slide up (x: speed; y: semitones)" +msgstr "E1xy: Slide de nota para cima (x: velocidade; y: semitons)" + +#: src/engine/engine.cpp:102 +msgid "E2xy: Note slide down (x: speed; y: semitones)" +msgstr "E2xy: Slide de nota para baixo (x: velocidae; y: semitons)" + +#: src/engine/engine.cpp:104 +msgid "E3xx: Set vibrato shape (0: up/down; 1: up only; 2: down only)" +msgstr "" +"E3xx: Definir formato do vibrato (0: cima/baixo; 1: cima somente; 2: baixo " +"somente)" + +#: src/engine/engine.cpp:106 +msgid "E4xx: Set vibrato range" +msgstr "E4xx: Definir alcance do vibrato" + +#: src/engine/engine.cpp:108 +msgid "E5xx: Set pitch (80: center)" +msgstr "E5xx: Definir tom (desafinação; 80: centro)" + +#: src/engine/engine.cpp:110 +msgid "E6xy: Quick legato (x: time (0-7 up; 8-F down); y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:112 +msgid "E7xx: Macro release" +msgstr "E7xx: Repouso de macro atrasado (x: ticks)" + +#: src/engine/engine.cpp:114 +msgid "E8xy: Quick legato up (x: time; y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:116 +msgid "E9xy: Quick legato down (x: time; y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:118 +msgid "EAxx: Legato" +msgstr "EAxx: Legato" + +#: src/engine/engine.cpp:120 +msgid "EBxx: Set LEGACY sample mode bank" +msgstr "EBxx: Definir banco de samples modo LEGADO" + +#: src/engine/engine.cpp:122 +msgid "ECxx: Note cut" +msgstr "ECxx: Corte de nota" + +#: src/engine/engine.cpp:124 +msgid "EDxx: Note delay" +msgstr "EDxx: Atraso de nota" + +#: src/engine/engine.cpp:126 +msgid "EExx: Send external command" +msgstr "EExx: Enviar comando externo" + +#: src/engine/engine.cpp:128 +msgid "F0xx: Set tick rate (bpm)" +msgstr "F0xx: Definir taxa de ticks (bpm)" + +#: src/engine/engine.cpp:130 +msgid "F1xx: Single tick note slide up" +msgstr "F1xx: Slide de um tick de nota para cima" + +#: src/engine/engine.cpp:132 +msgid "F2xx: Single tick note slide down" +msgstr "F2xx: Slide de um tick de nota para baixo" + +#: src/engine/engine.cpp:134 +msgid "F3xx: Fine volume slide up" +msgstr "F3xx: Slide fino de volume para cima" + +#: src/engine/engine.cpp:136 +msgid "F4xx: Fine volume slide down" +msgstr "F4xx: Slide fino de volume para baixo" + +#: src/engine/engine.cpp:138 +msgid "F5xx: Disable macro (see manual)" +msgstr "F5xx: Desabilitar macro (veja o manual)" + +#: src/engine/engine.cpp:140 +msgid "F6xx: Enable macro (see manual)" +msgstr "F6xx: Habilitar macro (veja o manual)" + +#: src/engine/engine.cpp:142 +msgid "F7xx: Restart macro (see manual)" +msgstr "F7xx: Reiniciar macro (veja o manual)" + +#: src/engine/engine.cpp:144 +msgid "F8xx: Single tick volume slide up" +msgstr "F8xx: Slide de um tick de volume para cima" + +#: src/engine/engine.cpp:146 +msgid "F9xx: Single tick volume slide down" +msgstr "F9xx: Slide de um tick de volume para baixo" + +#: src/engine/engine.cpp:148 +msgid "FAxx: Fast volume slide (0y: down; x0: up)" +msgstr "FAxx: Slide rápido de volume (0y: para baixo; x0: para cima)" + +#: src/engine/engine.cpp:150 +msgid "FCxx: Note release" +msgstr "FCxx: Repouso de nota atrasado (x: ticks)" + +#: src/engine/engine.cpp:152 +msgid "FDxx: Set virtual tempo numerator" +msgstr "FDxx: Definir numerador do tempo virtual" + +#: src/engine/engine.cpp:154 +msgid "FExx: Set virtual tempo denominator" +msgstr "FExx: Definir denominador do tempo virtual" + +#: src/engine/engine.cpp:156 +msgid "FFxx: Stop song" +msgstr "FFxx: Parar música" + +#: src/engine/engine.cpp:160 +msgid "9xxx: Set sample offset*256" +msgstr "9xxx: Definir deslocamento de sample*256" + +#: src/engine/engine.cpp:164 +msgid "90xx: Set sample offset (first byte)" +msgstr "" + +#: src/engine/engine.cpp:166 +msgid "91xx: Set sample offset (second byte, ×256)" +msgstr "" + +#: src/engine/engine.cpp:168 +msgid "92xx: Set sample offset (third byte, ×65536)" +msgstr "" + +#: src/engine/engine.cpp:187 src/gui/settings.cpp:4127 +msgid "Invalid effect" +msgstr "" + +#: src/engine/engine.cpp:354 src/gui/gui.cpp:2259 src/gui/gui.cpp:2422 +#, c-format +msgid "on seek: %s" +msgstr "ao avançar: %s" + +#: src/engine/engine.cpp:361 src/gui/gui.cpp:2266 src/gui/gui.cpp:2429 +#, c-format +msgid "on pre tell: %s" +msgstr "ao predeterminar posição: %s" + +#: src/engine/engine.cpp:368 src/engine/engine.cpp:2768 +#: src/gui/settings.cpp:5811 src/gui/gui.cpp:2273 src/gui/gui.cpp:2436 +msgid "file is empty" +msgstr "o arquivo está vazio" + +#: src/engine/engine.cpp:371 src/gui/gui.cpp:2276 src/gui/gui.cpp:2439 +#, c-format +msgid "on tell: %s" +msgstr "ao determinar posição: %s" + +#: src/engine/engine.cpp:378 +#, c-format +msgid "ROM size mismatch, expected: %d bytes, was: %d" +msgstr "divergência de tamanho da ROM, esperado: %d bytes, encontrado: %d" + +#: src/engine/engine.cpp:383 src/gui/settings.cpp:5820 src/gui/gui.cpp:2283 +#: src/gui/gui.cpp:2446 +#, c-format +msgid "on get size: %s" +msgstr "ao obter tamanho: %s" + +#: src/engine/engine.cpp:390 src/gui/settings.cpp:5827 src/gui/gui.cpp:2290 +#: src/gui/gui.cpp:2453 +#, c-format +msgid "on read: %s" +msgstr "ao ler: %s" + +#: src/engine/engine.cpp:1076 src/engine/engine.cpp:1181 +#: src/engine/engine.cpp:1290 +msgid "invalid index" +msgstr "índice inválido" + +#: src/engine/engine.cpp:1080 src/engine/engine.cpp:1135 +#: src/engine/engine.cpp:1189 +#, c-format +msgid "max number of total channels is %d" +msgstr "o número máximo total de canais é %d" + +#: src/engine/engine.cpp:1131 src/engine/engine.cpp:1185 +#, c-format +msgid "max number of systems is %d" +msgstr "o número máximo de sistemas é %d" + +#: src/engine/engine.cpp:1286 +msgid "cannot remove the last one" +msgstr "não pode remover o último" + +#: src/engine/engine.cpp:1460 +msgid "source and destination are equal" +msgstr "a origem e o destino são os mesmos" + +#: src/engine/engine.cpp:1464 +msgid "invalid source index" +msgstr "índice de origem inválido" + +#: src/engine/engine.cpp:1468 +msgid "invalid destination index" +msgstr "índice de destino inválido" + +#: src/engine/engine.cpp:2636 +#, c-format +msgid "Instrument %d" +msgstr "Instrumento %d" + +#: src/engine/engine.cpp:2710 src/engine/engine.cpp:2727 +#: src/gui/doAction.cpp:825 src/gui/doAction.cpp:843 src/gui/doAction.cpp:1634 +#: src/gui/gui.cpp:6159 src/gui/insEdit.cpp:6860 +msgid "too many wavetables!" +msgstr "há muitas wavetables!" + +#: src/engine/engine.cpp:2752 +#, c-format +msgid "could not seek to end: %s" +msgstr "não pôde avançar até o final: %s" + +#: src/engine/engine.cpp:2758 +#, c-format +msgid "could not determine file size: %s" +msgstr "não pode determinar o tamanho do arquivo: %s" + +#: src/engine/engine.cpp:2763 +msgid "file size is invalid!" +msgstr "o tamanho do arquivo é inválido!" + +#: src/engine/engine.cpp:2773 +#, c-format +msgid "could not seek to beginning: %s" +msgstr "não pode rebobinar até o começo: %s" + +#: src/engine/engine.cpp:2780 +#, c-format +msgid "could not read entire file: %s" +msgstr "não pôde ler o arquivo inteiro: %s" + +#: src/engine/engine.cpp:2806 +msgid "invalid wavetable header/data!" +msgstr "cabeçalho/dados da wavetable inválidos!" + +#: src/engine/engine.cpp:2877 +msgid "premature end of file" +msgstr "fim prematuro do arquivo" + +#: src/engine/engine.cpp:2904 src/engine/engine.cpp:2926 +#: src/gui/doAction.cpp:909 src/gui/doAction.cpp:921 +msgid "too many samples!" +msgstr "há muitas samples!" + +#: src/engine/engine.cpp:2911 +#, c-format +msgid "Sample %d" +msgstr "Sample %d" + +#: src/engine/engine.cpp:3056 +#, c-format +msgid "no free patterns in channel %d!" +msgstr "não há sequências livres no canal %d!" + +#: src/gui/mixer.cpp:28 src/gui/insEdit.cpp:484 +msgid "left" +msgstr "esquerda" + +#: src/gui/mixer.cpp:29 src/gui/insEdit.cpp:483 +msgid "right" +msgstr "direita" + +#: src/gui/mixer.cpp:128 +msgid "input" +msgstr "entrada" + +#: src/gui/mixer.cpp:168 +msgid "output" +msgstr "saída" + +#: src/gui/mixer.cpp:226 src/gui/mixer.cpp:228 src/gui/editControls.cpp:454 +#: src/gui/guiConst.cpp:593 +msgid "Mixer" +msgstr "Mixer" + +#: src/gui/mixer.cpp:229 +msgid "Master Volume" +msgstr "Volume Mestre" + +#: src/gui/mixer.cpp:250 src/gui/exportOptions.cpp:90 +#: src/gui/userPresets.cpp:393 src/gui/userPresets.cpp:405 +#: src/gui/settings.cpp:1080 src/gui/settings.cpp:1094 +#: src/gui/waveEdit.cpp:1096 src/gui/sampleEdit.cpp:1128 +#: src/gui/insEdit.cpp:519 +msgid "Invert" +msgstr "Inverter" + +#: src/gui/mixer.cpp:268 src/gui/chanOsc.cpp:37 src/gui/userPresets.cpp:417 +#: src/gui/settings.cpp:263 src/gui/settings.cpp:1109 src/gui/settings.cpp:1492 +#: src/gui/settings.cpp:1504 src/gui/settings.cpp:3369 +#: src/gui/settings.cpp:4015 src/gui/findReplace.cpp:687 +#: src/gui/findReplace.cpp:943 src/gui/guiConst.cpp:228 +#: src/gui/sampleEdit.cpp:1003 src/gui/insEdit.cpp:5575 +#: src/gui/insEdit.cpp:5660 src/gui/insEdit.cpp:6920 src/gui/insEdit.cpp:6928 +#: src/gui/insEdit.cpp:6936 src/gui/insEdit.cpp:6946 src/gui/insEdit.cpp:6961 +#: src/gui/insEdit.cpp:6975 src/gui/insEdit.cpp:6987 src/gui/insEdit.cpp:7000 +#: src/gui/insEdit.cpp:7016 src/gui/insEdit.cpp:7022 src/gui/insEdit.cpp:7032 +#: src/gui/insEdit.cpp:7039 src/gui/insEdit.cpp:7045 src/gui/insEdit.cpp:7058 +#: src/gui/insEdit.cpp:7065 src/gui/insEdit.cpp:7072 src/gui/insEdit.cpp:7081 +#: src/gui/insEdit.cpp:7091 src/gui/insEdit.cpp:7099 src/gui/insEdit.cpp:7105 +#: src/gui/insEdit.cpp:7113 src/gui/insEdit.cpp:7120 src/gui/insEdit.cpp:7126 +#: src/gui/insEdit.cpp:7136 src/gui/insEdit.cpp:7148 src/gui/insEdit.cpp:7156 +#: src/gui/insEdit.cpp:7172 src/gui/insEdit.cpp:7177 src/gui/insEdit.cpp:7190 +#: src/gui/insEdit.cpp:7197 src/gui/insEdit.cpp:7208 src/gui/insEdit.cpp:7221 +#: src/gui/insEdit.cpp:7230 src/gui/insEdit.cpp:7237 src/gui/insEdit.cpp:7245 +#: src/gui/insEdit.cpp:7258 src/gui/insEdit.cpp:7263 src/gui/insEdit.cpp:7269 +#: src/gui/insEdit.cpp:7276 src/gui/insEdit.cpp:7284 src/gui/insEdit.cpp:7295 +#: src/gui/insEdit.cpp:7302 src/gui/insEdit.cpp:7310 src/gui/insEdit.cpp:7318 +#: src/gui/insEdit.cpp:7327 src/gui/insEdit.cpp:7335 src/gui/insEdit.cpp:7341 +#: src/gui/insEdit.cpp:7347 src/gui/insEdit.cpp:7353 src/gui/insEdit.cpp:7358 +#: src/gui/insEdit.cpp:7365 src/gui/insEdit.cpp:7372 src/gui/insEdit.cpp:7380 +#: src/gui/insEdit.cpp:7389 src/gui/insEdit.cpp:7397 src/gui/insEdit.cpp:7409 +#: src/gui/insEdit.cpp:7422 src/gui/insEdit.cpp:7433 src/gui/insEdit.cpp:7443 +#: src/gui/insEdit.cpp:7451 src/gui/insEdit.cpp:7461 src/gui/insEdit.cpp:7470 +msgid "Volume" +msgstr "Volume" + +#: src/gui/mixer.cpp:279 src/gui/userPresets.cpp:427 src/gui/settings.cpp:1120 +#: src/gui/guiConst.cpp:229 src/gui/insEdit.cpp:6923 src/gui/insEdit.cpp:6930 +#: src/gui/insEdit.cpp:6941 src/gui/insEdit.cpp:6965 src/gui/insEdit.cpp:7067 +#: src/gui/insEdit.cpp:7108 src/gui/insEdit.cpp:7152 src/gui/insEdit.cpp:7192 +#: src/gui/insEdit.cpp:7212 src/gui/insEdit.cpp:7232 src/gui/insEdit.cpp:7240 +#: src/gui/insEdit.cpp:7253 src/gui/insEdit.cpp:7265 src/gui/insEdit.cpp:7271 +#: src/gui/insEdit.cpp:7287 src/gui/insEdit.cpp:7297 src/gui/insEdit.cpp:7360 +#: src/gui/insEdit.cpp:7392 src/gui/insEdit.cpp:7438 src/gui/insEdit.cpp:7446 +msgid "Panning" +msgstr "Balanço" + +#: src/gui/mixer.cpp:290 src/gui/userPresets.cpp:433 src/gui/settings.cpp:1127 +msgid "Front/Rear" +msgstr "Frontal/Traseira" + +#: src/gui/mixer.cpp:299 src/gui/settings.cpp:4208 +msgid "Patchbay" +msgstr "Patchbay" + +#: src/gui/mixer.cpp:305 +msgid "Automatic patchbay" +msgstr "Patchbay automático" + +#: src/gui/mixer.cpp:310 +msgid "Display hidden ports" +msgstr "Mostrar portas ocultas" + +#: src/gui/mixer.cpp:312 +msgid "Display internal" +msgstr "Mostrar portas internas" + +#: src/gui/mixer.cpp:322 src/gui/mixer.cpp:383 src/gui/settings.cpp:1901 +#: src/gui/settings.cpp:2089 src/gui/songInfo.cpp:69 +msgid "System" +msgstr "Sistema" + +#: src/gui/mixer.cpp:354 +msgid "Sample Preview" +msgstr "Previsão de amostras" + +#: src/gui/mixer.cpp:367 src/gui/editControls.cpp:745 +#: src/gui/editControls.cpp:837 src/gui/editControls.cpp:953 +#: src/gui/editControls.cpp:1093 src/gui/settings.cpp:1490 +#: src/gui/guiConst.cpp:558 +msgid "Metronome" +msgstr "Metrônomo" + +#: src/gui/mixer.cpp:446 +msgid "disconnect all" +msgstr "desconectar todas" + +#: src/gui/editing.cpp:200 +#, c-format +msgid "no data in oldPatMap for channel %d!" +msgstr "" + +#: src/gui/editing.cpp:664 src/gui/editing.cpp:1203 +#, c-format +msgid "invalid clipboard data! failed at line %d char %d" +msgstr "" + +#: src/gui/editing.cpp:1565 src/gui/editing.cpp:1669 +msgid "can't collapse any further!" +msgstr "impossível contrair mais!" + +#: src/gui/editing.cpp:1749 +msgid "can't expand any further!" +msgstr "impossível expandir mais!" + +#: src/gui/editing.cpp:1836 src/gui/editing.cpp:1851 +#, c-format +msgid "copy: %s" +msgstr "" + +#: src/gui/memory.cpp:35 src/gui/settings.cpp:3696 src/gui/settings.cpp:4217 +#: src/gui/guiConst.cpp:613 +msgid "Memory Composition" +msgstr "Composição da Memória" + +#: src/gui/memory.cpp:146 +#, c-format +msgid "bank %d" +msgstr "banco %d" + +#: src/gui/memory.cpp:175 src/gui/memory.cpp:176 +msgid "no chips with memory" +msgstr "nenhum chip com memória" + +#: src/gui/intro.cpp:89 src/gui/gui.cpp:2345 src/gui/gui.cpp:3746 +#: src/gui/gui.cpp:5019 src/gui/gui.cpp:5041 src/gui/gui.cpp:5479 +#: src/gui/gui.cpp:5781 src/gui/gui.cpp:5791 +#, c-format +msgid "Error while loading file! (%s)" +msgstr "Erro ao abrir o arquivo! (%s)" + +#: src/gui/intro.cpp:122 +msgid "IntroMon X" +msgstr "" + +#: src/gui/intro.cpp:122 +msgid "Intro" +msgstr "" + +#: src/gui/intro.cpp:124 +msgid "Preview" +msgstr "" + +#: src/gui/intro.cpp:176 src/gui/intro.cpp:177 src/gui/intro.cpp:178 +msgid "SORRY NOTHING" +msgstr "" + +#: src/gui/intro.cpp:310 +msgid "hold to skip" +msgstr "" + +#: src/gui/dataList.cpp:76 +msgid "Bug!" +msgstr "Bug!" + +#: src/gui/dataList.cpp:79 src/gui/util.cpp:107 src/gui/util.cpp:109 +#: src/gui/settings.cpp:4220 src/gui/insEdit.cpp:5334 +msgid "Unknown" +msgstr "Desconhecido" + +#: src/gui/dataList.cpp:136 src/gui/dataList.cpp:260 +msgid "duplicate" +msgstr "duplicado" + +#: src/gui/dataList.cpp:139 src/gui/dataList.cpp:263 src/gui/dataList.cpp:388 +#: src/gui/dataList.cpp:731 src/gui/dataList.cpp:867 +msgid "replace..." +msgstr "trocar..." + +#: src/gui/dataList.cpp:142 src/gui/dataList.cpp:266 src/gui/gui.cpp:4232 +msgid "save" +msgstr "salvar" + +#: src/gui/dataList.cpp:145 +msgid "save (.dmp)" +msgstr "" + +#: src/gui/dataList.cpp:148 src/gui/dataList.cpp:269 src/gui/dataList.cpp:617 +#: src/gui/dataList.cpp:994 src/gui/dataList.cpp:1040 +#: src/gui/editControls.cpp:50 src/gui/gui.cpp:2767 src/gui/gui.cpp:2776 +msgid "delete" +msgstr "excluir" + +#: src/gui/dataList.cpp:243 +msgid "out of memory for this sample!" +msgstr "sem memória para esta sample!" + +#: src/gui/dataList.cpp:254 +msgid "make instrument" +msgstr "criar instrumento" + +#: src/gui/dataList.cpp:257 +msgid "make me a drum kit" +msgstr "faça um kit de bateria para mim" + +#: src/gui/dataList.cpp:290 src/gui/dataList.cpp:593 src/gui/gui.cpp:5914 +msgid "Instruments" +msgstr "Instrumentos" + +#: src/gui/dataList.cpp:312 src/gui/dataList.cpp:714 src/gui/dataList.cpp:846 +#: src/gui/subSongs.cpp:88 src/gui/insEdit.cpp:520 +msgid "Add" +msgstr "Adicionar" + +#: src/gui/dataList.cpp:338 src/gui/dataList.cpp:721 src/gui/dataList.cpp:853 +#: src/gui/subSongs.cpp:108 +msgid "Duplicate" +msgstr "Duplicar" + +#: src/gui/dataList.cpp:359 src/gui/dataList.cpp:728 src/gui/dataList.cpp:860 +#: src/gui/editControls.cpp:497 src/gui/waveEdit.cpp:435 +#: src/gui/waveEdit.cpp:467 src/gui/sampleEdit.cpp:122 +#: src/gui/sampleEdit.cpp:171 src/gui/insEdit.cpp:5239 src/gui/insEdit.cpp:5304 +msgid "Open" +msgstr "Abrir" + +#: src/gui/dataList.cpp:363 +msgid "replace instrument..." +msgstr "trocar instrumento..." + +#: src/gui/dataList.cpp:366 +msgid "load instrument from TX81Z" +msgstr "carregar instrumento do TX81Z" + +#: src/gui/dataList.cpp:372 +msgid "replace wavetable..." +msgstr "trocar wavetable..." + +#: src/gui/dataList.cpp:378 +msgid "replace sample..." +msgstr "trocar sample..." + +#: src/gui/dataList.cpp:381 +msgid "import raw sample..." +msgstr "importar sample em formato raw..." + +#: src/gui/dataList.cpp:384 +msgid "import raw sample (replace)..." +msgstr "importar sample em formato raw (trocar)..." + +#: src/gui/dataList.cpp:392 +msgid "load from TX81Z" +msgstr "carregar do TX81Z" + +#: src/gui/dataList.cpp:399 +msgid "Open (insert; right-click to replace)" +msgstr "Abrir (inserir; botão direito para trocar)" + +#: src/gui/dataList.cpp:420 src/gui/dataList.cpp:741 src/gui/dataList.cpp:884 +#: src/gui/editControls.cpp:502 src/gui/waveEdit.cpp:474 +#: src/gui/sampleEdit.cpp:184 src/gui/insEdit.cpp:5311 +msgid "Save" +msgstr "Salvar" + +#: src/gui/dataList.cpp:424 +msgid "save instrument as .dmp..." +msgstr "salvar instrumento como .dmp..." + +#: src/gui/dataList.cpp:430 +msgid "save wavetable as .dmw..." +msgstr "salvar wavetable como .dmw..." + +#: src/gui/dataList.cpp:433 +msgid "save raw wavetable..." +msgstr "salvar wavetable em formato raw..." + +#: src/gui/dataList.cpp:439 +msgid "save raw sample..." +msgstr "salvar sample em formato raw..." + +#: src/gui/dataList.cpp:443 src/gui/insEdit.cpp:5314 +msgid "save as .dmp..." +msgstr "salvar como .dmp..." + +#: src/gui/dataList.cpp:456 src/gui/dataList.cpp:761 src/gui/dataList.cpp:903 +msgid "Toggle folders/standard view" +msgstr "Alternar entre pastas e visão padrão" + +#: src/gui/dataList.cpp:478 src/gui/dataList.cpp:769 src/gui/dataList.cpp:911 +#: src/gui/subSongs.cpp:55 +msgid "Move up" +msgstr "Mover para cima" + +#: src/gui/dataList.cpp:499 src/gui/dataList.cpp:776 src/gui/dataList.cpp:918 +#: src/gui/subSongs.cpp:62 +msgid "Move down" +msgstr "Mover para baixo" + +#: src/gui/dataList.cpp:510 src/gui/dataList.cpp:787 src/gui/dataList.cpp:929 +msgid "Create" +msgstr "Criar" + +#: src/gui/dataList.cpp:540 src/gui/dataList.cpp:797 src/gui/dataList.cpp:939 +msgid "New folder" +msgstr "Nova pasta" + +#: src/gui/dataList.cpp:549 src/gui/dataList.cpp:947 +msgid "Preview (right click to stop)" +msgstr "Pré-visualização (clique com o botão direito para parar)" + +#: src/gui/dataList.cpp:576 src/gui/dataList.cpp:807 src/gui/dataList.cpp:959 +#: src/gui/guiConst.cpp:666 src/gui/sampleEdit.cpp:1105 +msgid "Delete" +msgstr "Excluir" + +#: src/gui/dataList.cpp:608 src/gui/dataList.cpp:985 src/gui/dataList.cpp:1031 +msgid "" +msgstr "" + +#: src/gui/dataList.cpp:614 src/gui/dataList.cpp:991 src/gui/dataList.cpp:1037 +msgid "rename..." +msgstr "renomear..." + +#: src/gui/dataList.cpp:663 src/gui/dataList.cpp:707 src/gui/gui.cpp:5923 +msgid "Wavetables" +msgstr "Wavetables" + +#: src/gui/dataList.cpp:674 src/gui/dataList.cpp:839 src/gui/xyOsc.cpp:68 +#: src/gui/sampleEdit.cpp:898 src/gui/sampleEdit.cpp:1072 src/gui/gui.cpp:5932 +msgid "Samples" +msgstr "Samples" + +#: src/gui/dataList.cpp:745 src/gui/waveEdit.cpp:477 +msgid "save as .dmw..." +msgstr "salvar como .dmw..." + +#: src/gui/dataList.cpp:748 src/gui/dataList.cpp:891 src/gui/waveEdit.cpp:480 +#: src/gui/sampleEdit.cpp:187 +msgid "save raw..." +msgstr "salvar em formato raw..." + +#: src/gui/dataList.cpp:871 src/gui/sampleEdit.cpp:174 +msgid "import raw..." +msgstr "importar em formato raw..." + +#: src/gui/dataList.cpp:874 +msgid "import raw (replace)..." +msgstr "importar em formato raw (trocar)..." + +#: src/gui/exportOptions.cpp:29 +msgid "Export type:" +msgstr "" + +#: src/gui/exportOptions.cpp:32 +msgid "one file" +msgstr "um arquivo" + +#: src/gui/exportOptions.cpp:35 +msgid "multiple files (one per chip)" +msgstr "múltiplos arquivos (um por chip)" + +#: src/gui/exportOptions.cpp:38 +msgid "multiple files (one per channel)" +msgstr "múltiplos arquivos (um por canal)" + +#: src/gui/exportOptions.cpp:44 +msgid "Bit depth:" +msgstr "" + +#: src/gui/exportOptions.cpp:46 +msgid "16-bit integer" +msgstr "" + +#: src/gui/exportOptions.cpp:49 +msgid "32-bit float" +msgstr "" + +#: src/gui/exportOptions.cpp:55 src/gui/settings.cpp:1352 src/gui/gui.cpp:6270 +msgid "Sample rate" +msgstr "Taxa de amostragem" + +#: src/gui/exportOptions.cpp:61 +msgid "Channels in file" +msgstr "" + +#: src/gui/exportOptions.cpp:67 src/gui/settings.cpp:930 +msgid "Loops" +msgstr "Loops" + +#: src/gui/exportOptions.cpp:70 src/gui/settings.cpp:935 +msgid "Fade out (seconds)" +msgstr "Tempo de fade out (segundos)" + +#: src/gui/exportOptions.cpp:76 +msgid "Channels to export:" +msgstr "" + +#: src/gui/exportOptions.cpp:78 src/gui/effectList.cpp:32 src/gui/gui.cpp:6186 +msgid "All" +msgstr "Todos" + +#: src/gui/exportOptions.cpp:84 src/gui/sysConf.cpp:1870 +#: src/gui/effectList.cpp:34 src/gui/compatFlags.cpp:219 +#: src/gui/waveEdit.cpp:37 src/gui/gui.cpp:6192 src/gui/insEdit.cpp:518 +msgid "None" +msgstr "Nenhuma" + +#: src/gui/exportOptions.cpp:110 src/gui/exportOptions.cpp:214 +#: src/gui/exportOptions.cpp:225 src/gui/exportOptions.cpp:243 +#: src/gui/exportOptions.cpp:266 src/gui/exportOptions.cpp:297 +#: src/gui/exportOptions.cpp:318 src/gui/exportOptions.cpp:341 +#: src/gui/commandPalette.cpp:199 src/gui/settings.cpp:6673 +#: src/gui/newSong.cpp:273 src/gui/gui.cpp:5669 src/gui/gui.cpp:5693 +#: src/gui/gui.cpp:5717 src/gui/gui.cpp:5741 src/gui/gui.cpp:5765 +#: src/gui/gui.cpp:5796 src/gui/gui.cpp:5855 src/gui/gui.cpp:6229 +#: src/gui/gui.cpp:6353 +msgid "Cancel" +msgstr "Cancelar" + +#: src/gui/exportOptions.cpp:115 src/gui/exportOptions.cpp:217 +#: src/gui/exportOptions.cpp:246 src/gui/exportOptions.cpp:300 +#: src/gui/exportOptions.cpp:321 src/gui/exportOptions.cpp:344 +#: src/gui/editControls.cpp:512 src/gui/userPresets.cpp:523 +#: src/gui/settings.cpp:1242 src/gui/settings.cpp:2165 +#: src/gui/settings.cpp:2557 src/gui/settings.cpp:3800 src/gui/guiConst.cpp:536 +#: src/gui/gui.cpp:5578 src/gui/gui.cpp:5630 +msgid "Export" +msgstr "Exportar" + +#: src/gui/exportOptions.cpp:130 +msgid "select at least one channel" +msgstr "" + +#: src/gui/exportOptions.cpp:137 +msgid "settings:" +msgstr "opções:" + +#: src/gui/exportOptions.cpp:138 +msgid "format version" +msgstr "versão do formato:" + +#: src/gui/exportOptions.cpp:146 src/gui/exportOptions.cpp:238 +#: src/gui/insEdit.cpp:362 +msgid "loop" +msgstr "loop" + +#: src/gui/exportOptions.cpp:148 +msgid "loop trail:" +msgstr "loops ao final:" + +#: src/gui/exportOptions.cpp:150 +msgid "auto-detect" +msgstr "detectar automaticamente" + +#: src/gui/exportOptions.cpp:153 +msgid "add one loop" +msgstr "adicionar um loop" + +#: src/gui/exportOptions.cpp:156 +msgid "custom" +msgstr "personalizado" + +#: src/gui/exportOptions.cpp:167 +msgid "add pattern change hints" +msgstr "adicionar dicas de mudança de sequência" + +#: src/gui/exportOptions.cpp:170 +msgid "" +"inserts data blocks on pattern changes.\n" +"useful if you are writing a playback routine.\n" +"\n" +"the format of a pattern change data block is:\n" +"67 66 FE ll ll ll ll 01 oo rr pp pp pp ...\n" +"- ll: length, a 32-bit little-endian number\n" +"- oo: order\n" +"- rr: initial row (a 0Dxx effect is able to select a different row)\n" +"- pp: pattern index (one per channel)\n" +"\n" +"pattern indexes are ordered as they appear in the song." +msgstr "" +"insere blocos de dados a cada mudança de sequência.\n" +"útil se você estiver escrevendo uma rotina de reprodução.\n" +"\n" +"o formato do bloco de dados de mudança de sequência é:\n" +"67 66 FE ll ll ll ll 01 oo rr pp pp pp ...\n" +"- ll: comprimento, um número 32-bit little-endian\n" +"- oo: ordem\n" +"- rr: linha inicial (um efeito 0Dxx é capaz de selecionar uma linha " +"diferente de zero)\n" +"- pp: índice da sequência (uma por canal)\n" +"\n" +"os índices da sequência são ordenados conforme elas aparecem na música." + +#: src/gui/exportOptions.cpp:183 +msgid "direct stream mode" +msgstr "modo de fluxo direto" + +#: src/gui/exportOptions.cpp:186 +msgid "" +"required for DualPCM and MSM6258 export.\n" +"\n" +"allows for volume/direction changes when playing samples,\n" +"at the cost of a massive increase in file size." +msgstr "" +"requerido para exportação de DualPCM e MSM6258.\n" +"\n" +"permite alterações de volume e direção ao reproduzir samples,\n" +"ao custo de um enorme aumento de tamanho de arquivo." + +#: src/gui/exportOptions.cpp:191 +msgid "chips to export:" +msgstr "chips a exportar:" + +#: src/gui/exportOptions.cpp:200 +#, c-format +msgid "this chip is only available in VGM %d.%.2x and higher!" +msgstr "este chip só está disponível no VGM versão %d.%.2x e superior!" + +#: src/gui/exportOptions.cpp:204 +msgid "this chip is not supported by the VGM format!" +msgstr "este chip não é suportado pelo formato VGM!" + +#: src/gui/exportOptions.cpp:210 +#, fuzzy, c-format +msgid "select the chip you wish to export, but only up to %d of each type." +msgstr "" +"selecione o chip que você quer exportar, mas no máximo %d de cada tipo." + +#: src/gui/exportOptions.cpp:222 +msgid "nothing to export" +msgstr "nada a ser exportado" + +#: src/gui/exportOptions.cpp:233 +msgid "Commander X16 Zsound Music File" +msgstr "Arquivo de Música ZSound do Commander X16" + +#: src/gui/exportOptions.cpp:234 +msgid "Tick Rate (Hz)" +msgstr "Taxa de Ticks (Hz)" + +#: src/gui/exportOptions.cpp:240 +msgid "optimize size" +msgstr "otimizar tamanho" + +#: src/gui/exportOptions.cpp:256 src/gui/editControls.cpp:630 +msgid "" +"this is NOT ROM export! only use for making sure the\n" +"Furnace Amiga emulator is working properly by\n" +"comparing it with real Amiga output." +msgstr "" +"esta opção não serve para exportar ROM! use apenas para garantir\n" +"que o emulador de Amiga do Furnace está funcionando corretamente\n" +"comparando-o com a saída de um Amiga de verdade." + +#: src/gui/exportOptions.cpp:261 src/gui/editControls.cpp:635 +#: src/gui/settings.cpp:3925 +msgid "Directory" +msgstr "Diretório" + +#: src/gui/exportOptions.cpp:269 src/gui/editControls.cpp:638 +msgid "Bake Data" +msgstr "Precalcular dados" + +#: src/gui/exportOptions.cpp:284 src/gui/editControls.cpp:653 +#, fuzzy, c-format +msgid "Done! Baked %d files." +msgstr "Concluído! %d arquivo precalculado." + +#: src/gui/exportOptions.cpp:293 +msgid "this option exports the song to a text file.\n" +msgstr "essa opção exporta a música para um arquivo texto.\n" + +#: src/gui/exportOptions.cpp:310 +msgid "" +"this option exports a text or binary file which\n" +"contains a dump of the internal command stream\n" +"produced when playing the song.\n" +"\n" +"technical/development use only!" +msgstr "" + +#: src/gui/exportOptions.cpp:331 +msgid "" +"export in DefleMask module format.\n" +"only do it if you really, really need to, or are downgrading an existing ." +"dmf." +msgstr "" + +#: src/gui/exportOptions.cpp:335 +msgid "format version:" +msgstr "" + +#: src/gui/exportOptions.cpp:336 +msgid "1.1.3 and higher" +msgstr "" + +#: src/gui/exportOptions.cpp:337 +msgid "1.0/legacy (0.12)" +msgstr "" + +#: src/gui/exportOptions.cpp:357 src/gui/settings.cpp:1253 +#: src/gui/settings.cpp:3929 +msgid "Audio" +msgstr "Áudio" + +#: src/gui/exportOptions.cpp:361 src/gui/settings.cpp:3931 +msgid "VGM" +msgstr "" + +#: src/gui/exportOptions.cpp:370 src/gui/settings.cpp:3932 +msgid "ZSM" +msgstr "" + +#: src/gui/exportOptions.cpp:380 +msgid "Amiga Validation" +msgstr "Dados de Validação Amiga" + +#: src/gui/exportOptions.cpp:385 src/gui/settings.cpp:2959 +#: src/gui/settings.cpp:3891 +msgid "Text" +msgstr "Texto" + +#: src/gui/exportOptions.cpp:389 +msgid "Command Stream" +msgstr "Fluxo de Comandos" + +#: src/gui/exportOptions.cpp:393 +msgid "DMF" +msgstr "" + +#: src/gui/exportOptions.cpp:422 +msgid "congratulations! you've unlocked a secret panel." +msgstr "parabéns! você desbloqueou um painel secreto." + +#: src/gui/exportOptions.cpp:423 +msgid "Toggle hidden systems" +msgstr "Habilitar/desabilitar sistemas escondidos" + +#: src/gui/exportOptions.cpp:427 +msgid "Toggle all instrument types" +msgstr "Habilitar/desabilitar todos os tipos de instrumentos" + +#: src/gui/exportOptions.cpp:431 +msgid "Set pitch linearity to Partial" +msgstr "Definir linearidade de tom para Parcial" + +#: src/gui/exportOptions.cpp:435 +msgid "Enable multi-threading settings" +msgstr "Habilitar opções de multithreading" + +#: src/gui/exportOptions.cpp:439 +msgid "Set fat to max" +msgstr "Definir gordura para máximo" + +#: src/gui/exportOptions.cpp:446 +msgid "Set muscle and fat to zero" +msgstr "Definir músculo e gordura para zero" + +#: src/gui/exportOptions.cpp:453 +msgid "Tell tildearrow this must be a mistake" +msgstr "Dizer para o tildearrow que isso só pode ser um engano" + +#: src/gui/exportOptions.cpp:454 +msgid "" +"yeah, it's a bug. write a bug report in the GitHub page and tell me how did " +"you get here." +msgstr "" +"é, isso é um bug. abra um bug report na página do GitHub e diga-nos como " +"você chegou aqui." + +#: src/gui/speed.cpp:32 src/gui/speed.cpp:102 src/gui/editControls.cpp:532 +#: src/gui/sysConf.cpp:2148 src/gui/guiConst.cpp:232 src/gui/guiConst.cpp:581 +#: src/gui/insEdit.cpp:2028 src/gui/insEdit.cpp:5693 src/gui/insEdit.cpp:6885 +msgid "Speed" +msgstr "Velocidade" + +#: src/gui/speed.cpp:41 +msgid "Base Tempo##TempoOrHz" +msgstr "Tempo Base##TempoOrHz" + +#: src/gui/speed.cpp:41 +msgid "Tick Rate##TempoOrHz" +msgstr "Taxa de Ticks##TempoOrHz" + +#: src/gui/speed.cpp:46 +msgid "click to display tick rate" +msgstr "clique para mostrar a taxa de ticks" + +#: src/gui/speed.cpp:48 +msgid "click to display base tempo" +msgstr "clique para mostrar o tempo base" + +#: src/gui/speed.cpp:80 +msgid "Groove" +msgstr "Groove" + +#: src/gui/speed.cpp:87 +msgid "click for one speed" +msgstr "clique para uma velocidade" + +#: src/gui/speed.cpp:90 +msgid "Speeds" +msgstr "Velocidades" + +#: src/gui/speed.cpp:99 +msgid "click for groove pattern" +msgstr "clique para padrão \"groove\"" + +#: src/gui/speed.cpp:110 +msgid "click for two (alternating) speeds" +msgstr "clique para duas velocidades alternantes" + +#: src/gui/speed.cpp:168 +msgid "Virtual Tempo" +msgstr "Tempo Virtual" + +#: src/gui/speed.cpp:177 +msgid "Numerator" +msgstr "Numerador" + +#: src/gui/speed.cpp:187 +msgid "Denominator (set to base tempo)" +msgstr "Denominador (definido para o tempo base)" + +#: src/gui/speed.cpp:193 +msgid "Divider" +msgstr "Divisor" + +#: src/gui/speed.cpp:208 +msgid "Highlight" +msgstr "Destaque" + +#: src/gui/speed.cpp:231 +msgid "Pattern Length" +msgstr "Tamanho da Sequência" + +#: src/gui/speed.cpp:245 +msgid "Song Length" +msgstr "Tamanho da Música" + +#: src/gui/channels.cpp:40 src/gui/editControls.cpp:446 +#: src/gui/guiConst.cpp:601 src/gui/gui.cpp:6280 +msgid "Channels" +msgstr "Canais" + +#: src/gui/channels.cpp:49 +msgid "Pat" +msgstr "Seq" + +#: src/gui/channels.cpp:51 src/gui/editControls.cpp:550 +msgid "Osc" +msgstr "Osc" + +#: src/gui/channels.cpp:53 +msgid "Swap" +msgstr "Trocar" + +#: src/gui/channels.cpp:55 src/gui/userPresets.cpp:368 +#: src/gui/effectList.cpp:45 src/gui/subSongs.cpp:125 src/gui/settings.cpp:1060 +#: src/gui/settings.cpp:4383 src/gui/sampleEdit.cpp:195 src/gui/songInfo.cpp:40 +#: src/gui/sysManager.cpp:54 src/gui/insEdit.cpp:5288 +msgid "Name" +msgstr "Nome" + +#: src/gui/channels.cpp:64 +msgid "Show in pattern" +msgstr "Mostrar na sequência" + +#: src/gui/channels.cpp:71 +msgid "Show in per-channel oscilloscope" +msgstr "Mostrar no osciloscópio por canal" + +#: src/gui/channels.cpp:82 +#, c-format +msgid "" +"%s #%d\n" +"(drag to swap channels)" +msgstr "" +"%s #%d\n" +"(arraste para trocar os canais)" + +#: src/gui/commandPalette.cpp:51 src/gui/sysPicker.cpp:35 +#: src/gui/newSong.cpp:133 +msgid "Search..." +msgstr "Procurar..." + +#: src/gui/commandPalette.cpp:54 +msgid "Search recent files..." +msgstr "Buscar em arquivos recentes..." + +#: src/gui/commandPalette.cpp:57 +msgid "Search instruments..." +msgstr "Procurar instrumentos..." + +#: src/gui/commandPalette.cpp:60 +msgid "Search samples..." +msgstr "Procurar samples..." + +#: src/gui/commandPalette.cpp:63 +msgid "Search instruments (to change to)..." +msgstr "Procurar insatrumentos (para selecionar)..." + +#: src/gui/commandPalette.cpp:66 +msgid "Search chip (to add)..." +msgstr "Procurar chip (para adicionar)..." + +#: src/gui/commandPalette.cpp:93 src/gui/commandPalette.cpp:167 +msgid "- None -" +msgstr "- Nenhum -" + +#: src/gui/commandPalette.cpp:123 src/gui/commandPalette.cpp:179 +#: src/gui/commandPalette.cpp:241 +msgid "invalid command palette type" +msgstr "" + +#: src/gui/regView.cpp:30 src/gui/guiConst.cpp:604 +msgid "Register View" +msgstr "Visualização de Registradores" + +#: src/gui/regView.cpp:38 +msgid "- no register pool available" +msgstr "- nenhum mapa de registradores disponível" + +#: src/gui/log.cpp:25 src/gui/effectList.cpp:84 +msgid "ERROR" +msgstr "ERRO" + +#: src/gui/log.cpp:26 +msgid "warning" +msgstr "" + +#: src/gui/log.cpp:27 +msgid "info" +msgstr "" + +#: src/gui/log.cpp:28 src/gui/gui.cpp:4513 +msgid "debug" +msgstr "depuração" + +#: src/gui/log.cpp:29 +msgid "trace" +msgstr "" + +#: src/gui/log.cpp:47 src/gui/settings.cpp:4243 src/gui/guiConst.cpp:605 +msgid "Log Viewer" +msgstr "Visualizador de Logs" + +#: src/gui/log.cpp:48 src/gui/editControls.cpp:750 src/gui/editControls.cpp:883 +#: src/gui/editControls.cpp:1000 +msgid "Follow" +msgstr "Seguir" + +#: src/gui/log.cpp:50 src/gui/waveEdit.cpp:681 src/gui/insEdit.cpp:50 +msgid "Level" +msgstr "Nível" + +#: src/gui/log.cpp:68 +msgid "time" +msgstr "" + +#: src/gui/log.cpp:70 +msgid "level" +msgstr "" + +#: src/gui/log.cpp:72 +msgid "message" +msgstr "" + +#: src/gui/pattern.cpp:433 src/gui/editControls.cpp:421 +#: src/gui/editControls.cpp:754 src/gui/editControls.cpp:887 +#: src/gui/editControls.cpp:1015 src/gui/settings.cpp:2344 +#: src/gui/settings.cpp:3297 src/gui/settings.cpp:4100 +#: src/gui/findReplace.cpp:794 src/gui/guiConst.cpp:582 src/gui/gui.cpp:5899 +msgid "Pattern" +msgstr "Sequência" + +#: src/gui/pattern.cpp:468 +msgid "there aren't any channels to show." +msgstr "não há nenhum canal a ser exibido." + +#: src/gui/pattern.cpp:492 +msgid "click for pattern options (effect columns/pattern names/visualizer)" +msgstr "" +"clique para opções de sequência (colunas de efeito/nomes das faixas/" +"visualizador)" + +#: src/gui/pattern.cpp:504 +msgid "Options:" +msgstr "Opções:" + +#: src/gui/pattern.cpp:506 +msgid "Effect columns/collapse" +msgstr "Botões de colunas de efeito/contrair faixa" + +#: src/gui/pattern.cpp:507 +msgid "Pattern names" +msgstr "Nomes das faixas" + +#: src/gui/pattern.cpp:508 +msgid "Channel group hints" +msgstr "Dicas de agrupamento de canais" + +#: src/gui/pattern.cpp:509 +msgid "Visualizer" +msgstr "Visualizador" + +#: src/gui/pattern.cpp:517 +msgid "Channel status:" +msgstr "Estado do canal:" + +#: src/gui/pattern.cpp:519 +msgid "No##_PCS0" +msgstr "Não##_PCS0" + +#: src/gui/pattern.cpp:522 +msgid "Yes##_PCS1" +msgstr "Sim##_PCS1" + +#: src/gui/pattern.cpp:1420 src/gui/pattern.cpp:1452 +msgid "WARNING!!" +msgstr "AVISO!!" + +#: src/gui/pattern.cpp:1422 src/gui/pattern.cpp:1459 +msgid "this instrument cannot be previewed because" +msgstr "este instrumento não pode ser previsto pois" + +#: src/gui/pattern.cpp:1423 src/gui/pattern.cpp:1466 +msgid "none of the chips can play it" +msgstr "nenhum dos chips pode tocá-lo" + +#: src/gui/pattern.cpp:1424 src/gui/pattern.cpp:1473 +msgid "your instrument is in peril!! be careful..." +msgstr "seu instrumento está em perigo! cuidado..." + +#: src/gui/osc.cpp:169 src/gui/settings.cpp:3710 src/gui/settings.cpp:3937 +msgid "Oscilloscope" +msgstr "Osciloscópio" + +#: src/gui/osc.cpp:176 +#, c-format +msgid "zoom: %.2fx (%.1fdB)" +msgstr "zoom: %.2fx (%.1fdB)" + +#: src/gui/osc.cpp:187 +#, c-format +msgid "window size: %.1fms" +msgstr "tamanho da janela: %.1fms" + +#: src/gui/osc.cpp:385 +msgid "(-Infinity)dB" +msgstr "(-Infinito)dB" + +#: src/gui/debugWindow.cpp:66 src/gui/editControls.cpp:610 +msgid "Debug" +msgstr "Debug" + +#: src/gui/debugWindow.cpp:663 +msgid "This is a language test." +msgstr "" + +#: src/gui/debugWindow.cpp:664 +msgid "This is another language test." +msgstr "" + +#: src/gui/debugWindow.cpp:720 +#, c-format +msgid "%d apple" +msgid_plural "%d apples" +msgstr[0] "" +msgstr[1] "" + +#: src/gui/chanOsc.cpp:32 +msgid "None (0%)" +msgstr "Nenhum (0%)" + +#: src/gui/chanOsc.cpp:33 +msgid "None (50%)" +msgstr "Nenhum (50%)" + +#: src/gui/chanOsc.cpp:34 +msgid "None (100%)" +msgstr "Nenhum (100%)" + +#: src/gui/chanOsc.cpp:36 +msgid "Frequency" +msgstr "Frequência" + +#: src/gui/chanOsc.cpp:38 src/gui/settings.cpp:1667 src/gui/settings.cpp:3406 +#: src/gui/settings.cpp:4088 +msgid "Channel" +msgstr "Canal" + +#: src/gui/chanOsc.cpp:39 +msgid "Brightness" +msgstr "Brilho" + +#: src/gui/chanOsc.cpp:41 +msgid "Note Trigger" +msgstr "Toque da Nota" + +#: src/gui/chanOsc.cpp:45 +msgid "Off" +msgstr "Desativado" + +#: src/gui/chanOsc.cpp:46 +msgid "Mode 1" +msgstr "Modo 1" + +#: src/gui/chanOsc.cpp:47 +msgid "Mode 2" +msgstr "Modo 2" + +#: src/gui/chanOsc.cpp:48 +msgid "Mode 3" +msgstr "Modo 3" + +#: src/gui/chanOsc.cpp:135 src/gui/guiConst.cpp:607 +msgid "Oscilloscope (per-channel)" +msgstr "Osciloscópio (por canal)" + +#: src/gui/chanOsc.cpp:143 +msgid "Columns" +msgstr "Colunas" + +#: src/gui/chanOsc.cpp:152 +msgid "Size (ms)" +msgstr "Tamanho (ms)" + +#: src/gui/chanOsc.cpp:163 +msgid "Automatic columns" +msgstr "Colunas automáticas" + +#: src/gui/chanOsc.cpp:177 +msgid "Center waveform" +msgstr "Centralizar onda" + +#: src/gui/chanOsc.cpp:183 +msgid "Randomize phase on note" +msgstr "Aleatorizar fase a cada nota" + +#: src/gui/chanOsc.cpp:189 +msgid "Amplitude" +msgstr "Amplitude" + +#: src/gui/chanOsc.cpp:199 src/gui/settings.cpp:3747 +msgid "Line size" +msgstr "Espessura da linha" + +#: src/gui/chanOsc.cpp:211 +msgid "Gradient" +msgstr "Gradiente" + +#: src/gui/chanOsc.cpp:218 +msgid "error while creating gradient texture!" +msgstr "" + +#: src/gui/chanOsc.cpp:236 +msgid "error while updating gradient texture!" +msgstr "" + +#: src/gui/chanOsc.cpp:292 src/gui/chanOsc.cpp:348 src/gui/settings.cpp:3793 +msgid "Color" +msgstr "Cor" + +#: src/gui/chanOsc.cpp:296 +msgid "Distance" +msgstr "Distância" + +#: src/gui/chanOsc.cpp:305 +msgid "Spread" +msgstr "Espalhamento" + +#: src/gui/chanOsc.cpp:314 src/gui/userPresets.cpp:370 src/gui/subSongs.cpp:121 +#: src/gui/settings.cpp:2281 src/gui/sysManager.cpp:124 +msgid "Remove" +msgstr "Remover" + +#: src/gui/chanOsc.cpp:338 src/gui/settings.cpp:3885 src/gui/settings.cpp:4165 +#: src/gui/settings.cpp:4192 src/gui/settings.cpp:4218 +msgid "Background" +msgstr "Fundo" + +#: src/gui/chanOsc.cpp:341 +msgid "X Axis##AxisX" +msgstr "Eixo X##AxisX" + +#: src/gui/chanOsc.cpp:342 +msgid "Y Axis##AxisY" +msgstr "Eixo Y##AxisY" + +#: src/gui/chanOsc.cpp:352 +msgid "Text format:" +msgstr "Formato do texto:" + +#: src/gui/chanOsc.cpp:358 +msgid "" +"format guide:\n" +"- %c: channel name\n" +"- %C: channel short name\n" +"- %d: channel number (starting from 0)\n" +"- %D: channel number (starting from 1)\n" +"- %n: channel note\n" +"- %i: instrument name\n" +"- %I: instrument number (decimal)\n" +"- %x: instrument number (hex)\n" +"- %s: chip name\n" +"- %p: chip part number\n" +"- %S: chip ID\n" +"- %v: volume (decimal)\n" +"- %V: volume (percentage)\n" +"- %b: volume (hex)\n" +"- %l: new line\n" +"- %%: percent sign" +msgstr "" +"guia de formatação:\n" +"- %c: nome do canal\n" +"- %C: nome curto do canal\n" +"- %d: número do canal (começando em 0)\n" +"- %D: número do canal (começando em 1)\n" +"- %n: nota do canal\n" +"- %i: nome do instrumento\n" +"- %I: número do instrumento (decimal)\n" +"- %x: número do instrumento (hex)\n" +"- %s: nome do chip\n" +"- %p: numeração do chip\n" +"- %S: ID do chip\n" +"- %v: volume (decimal)\n" +"- %V: volume (porcentagem)\n" +"- %b: volume (hex)\n" +"- %l: nova linha\n" +"- %%: símbolo de porcentagem" + +#: src/gui/chanOsc.cpp:380 +msgid "Text color" +msgstr "Cor do texto" + +#: src/gui/chanOsc.cpp:382 src/gui/xyOsc.cpp:80 src/gui/settings.cpp:6672 +#: src/gui/tutorial.cpp:689 src/gui/gui.cpp:5639 src/gui/gui.cpp:6055 +#: src/gui/gui.cpp:6223 src/gui/gui.cpp:6322 src/gui/gui.cpp:6371 +msgid "OK" +msgstr "OK" + +#: src/gui/chanOsc.cpp:400 +msgid "creating chan osc work pool" +msgstr "" + +#: src/gui/chanOsc.cpp:429 +#, c-format +msgid "creating FFT plan for channel %d" +msgstr "" + +#: src/gui/chanOsc.cpp:436 +msgid "failed to create plan!" +msgstr "" + +#: src/gui/chanOsc.cpp:438 +msgid "failed to create inverse plan!" +msgstr "" + +#: src/gui/chanOsc.cpp:440 +msgid "failed to create FFT buffers" +msgstr "" + +#: src/gui/chanOsc.cpp:585 +msgid "Error!" +msgstr "Erro!" + +#: src/gui/editControls.cpp:47 src/gui/sampleEdit.cpp:1736 src/gui/gui.cpp:2733 +#: src/gui/insEdit.cpp:363 +msgid "cut" +msgstr "recortar" + +#: src/gui/editControls.cpp:48 src/gui/sampleEdit.cpp:1740 src/gui/gui.cpp:2734 +#: src/gui/insEdit.cpp:7538 +msgid "copy" +msgstr "copiar" + +#: src/gui/editControls.cpp:49 src/gui/sampleEdit.cpp:1744 src/gui/gui.cpp:2735 +#: src/gui/gui.cpp:2788 src/gui/insEdit.cpp:7543 +msgid "paste" +msgstr "colar" + +#: src/gui/editControls.cpp:51 +msgid "" +"select\n" +"all" +msgstr "" + +#: src/gui/editControls.cpp:52 +msgid "piano" +msgstr "" + +#: src/gui/editControls.cpp:53 src/gui/gui.cpp:4429 +msgid "undo" +msgstr "desfazer" + +#: src/gui/editControls.cpp:54 src/gui/gui.cpp:4430 +msgid "redo" +msgstr "refazer" + +#: src/gui/editControls.cpp:57 +msgid "" +"paste\n" +"mix" +msgstr "" + +#: src/gui/editControls.cpp:58 +msgid "" +"paste\n" +"mix bg" +msgstr "" + +#: src/gui/editControls.cpp:59 +msgid "" +"paste\n" +"ins" +msgstr "" + +#: src/gui/editControls.cpp:60 +msgid "" +"paste\n" +"ins bg" +msgstr "" + +#: src/gui/editControls.cpp:61 +msgid "" +"paste\n" +"flood" +msgstr "" + +#: src/gui/editControls.cpp:62 +msgid "" +"paste\n" +"overflow" +msgstr "" + +#: src/gui/editControls.cpp:63 +msgid "" +"transpose\n" +"notes" +msgstr "" + +#: src/gui/editControls.cpp:64 +msgid "" +"transpose\n" +"values" +msgstr "" + +#: src/gui/editControls.cpp:67 +msgid "" +"change\n" +"ins" +msgstr "" + +#: src/gui/editControls.cpp:68 +msgid "" +"find/\n" +"replace" +msgstr "" + +#: src/gui/editControls.cpp:69 src/gui/gui.cpp:3063 +msgid "collapse" +msgstr "contrair" + +#: src/gui/editControls.cpp:70 src/gui/gui.cpp:3064 +msgid "expand" +msgstr "expandir" + +#: src/gui/editControls.cpp:71 src/gui/gui.cpp:2820 +msgid "flip" +msgstr "reverter" + +#: src/gui/editControls.cpp:72 src/gui/insEdit.cpp:430 +msgid "invert" +msgstr "inverter" + +#: src/gui/editControls.cpp:73 src/gui/gui.cpp:2800 src/gui/gui.cpp:2960 +msgid "interpolate" +msgstr "interpolar" + +#: src/gui/editControls.cpp:74 src/gui/gui.cpp:2812 src/gui/insEdit.cpp:7610 +msgid "scale" +msgstr "escalonar" + +#: src/gui/editControls.cpp:77 src/gui/gui.cpp:2804 +msgid "fade" +msgstr "degradê" + +#: src/gui/editControls.cpp:78 src/gui/gui.cpp:2816 src/gui/insEdit.cpp:7639 +msgid "randomize" +msgstr "aleatorizar" + +#: src/gui/editControls.cpp:79 +msgid "opmask" +msgstr "" + +#: src/gui/editControls.cpp:80 +msgid "" +"scroll\n" +"mode" +msgstr "" + +#: src/gui/editControls.cpp:81 +msgid "" +"input\n" +"latch" +msgstr "" + +#: src/gui/editControls.cpp:82 +msgid "" +"set\n" +"latch" +msgstr "" + +#: src/gui/editControls.cpp:83 +msgid "" +"clear\n" +"latch" +msgstr "" + +#: src/gui/editControls.cpp:84 src/gui/findReplace.cpp:43 +#: src/gui/insEdit.cpp:7557 +msgid "clear" +msgstr "limpar" + +#: src/gui/editControls.cpp:333 +msgid "Mobile Controls" +msgstr "" + +#: src/gui/editControls.cpp:408 +msgid "Mobile Menu" +msgstr "" + +#: src/gui/editControls.cpp:425 src/gui/editControls.cpp:752 +#: src/gui/editControls.cpp:885 src/gui/editControls.cpp:1007 +#: src/gui/settings.cpp:2485 src/gui/settings.cpp:3271 +#: src/gui/settings.cpp:3975 src/gui/orders.cpp:232 src/gui/guiConst.cpp:577 +#: src/gui/gui.cpp:5888 +msgid "Orders" +msgstr "Ordens" + +#: src/gui/editControls.cpp:429 src/gui/findReplace.cpp:669 +#: src/gui/findReplace.cpp:914 +msgid "Ins" +msgstr "Ins" + +#: src/gui/editControls.cpp:442 src/gui/findReplace.cpp:788 +#: src/gui/guiConst.cpp:230 +msgid "Song" +msgstr "Música" + +#: src/gui/editControls.cpp:450 src/gui/sampleEdit.cpp:494 +msgid "Chips" +msgstr "Chips" + +#: src/gui/editControls.cpp:458 src/gui/settings.cpp:2117 +#: src/gui/settings.cpp:3934 src/gui/settings.cpp:4018 +#: src/gui/compatFlags.cpp:319 +msgid "Other" +msgstr "Outro" + +#: src/gui/editControls.cpp:487 src/gui/guiConst.cpp:531 +msgid "New" +msgstr "Novo" + +#: src/gui/editControls.cpp:491 src/gui/doAction.cpp:38 src/gui/gui.cpp:4194 +msgid "Unsaved changes! Save changes before creating a new song?" +msgstr "" +"Há mudanças não salvas! Salvar mudanças antes de criar uma nova música?" + +#: src/gui/editControls.cpp:507 +msgid "Save as..." +msgstr "Salvar como..." + +#: src/gui/editControls.cpp:516 src/gui/gui.cpp:1680 +msgid "Restore Backup" +msgstr "Restaurar Backup" + +#: src/gui/editControls.cpp:524 +msgid "Song Info" +msgstr "Inform. Música" + +#: src/gui/editControls.cpp:528 src/gui/subSongs.cpp:17 +#: src/gui/guiConst.cpp:608 +msgid "Subsongs" +msgstr "Subfaixas" + +#: src/gui/editControls.cpp:541 +msgid "Channels here..." +msgstr "Canais aqui..." + +#: src/gui/editControls.cpp:544 +msgid "Chips here..." +msgstr "Chips aqui..." + +#: src/gui/editControls.cpp:547 +msgid "What the hell..." +msgstr "Mas que porcaria?!" + +#: src/gui/editControls.cpp:554 +msgid "ChanOsc" +msgstr "ChanOsc" + +#: src/gui/editControls.cpp:558 +msgid "RegView" +msgstr "RegView" + +#: src/gui/editControls.cpp:562 +msgid "Stats" +msgstr "Stats" + +#: src/gui/editControls.cpp:566 src/gui/guiConst.cpp:611 src/gui/grooves.cpp:35 +msgid "Grooves" +msgstr "Grooves" + +#: src/gui/editControls.cpp:569 +msgid "Compat Flags" +msgstr "Opçs. Compat." + +#: src/gui/editControls.cpp:573 +msgid "XYOsc" +msgstr "XYOsc" + +#: src/gui/editControls.cpp:577 +msgid "Meter" +msgstr "" + +#: src/gui/editControls.cpp:581 +msgid "Memory" +msgstr "" + +#: src/gui/editControls.cpp:585 +msgid "CV" +msgstr "" + +#: src/gui/editControls.cpp:589 +msgid "Presets" +msgstr "" + +#: src/gui/editControls.cpp:593 +msgid "PatManager" +msgstr "" + +#: src/gui/editControls.cpp:599 src/gui/guiConst.cpp:564 +msgid "Panic" +msgstr "Pânico" + +#: src/gui/editControls.cpp:601 src/gui/settings.cpp:560 +#: src/gui/guiConst.cpp:589 src/gui/guiConst.cpp:591 src/gui/gui.cpp:4439 +msgid "Settings" +msgstr "Configurações" + +#: src/gui/editControls.cpp:606 +msgid "Log" +msgstr "Log" + +#: src/gui/editControls.cpp:614 src/gui/guiConst.cpp:587 +msgid "About" +msgstr "Sobre" + +#: src/gui/editControls.cpp:619 +msgid "Switch to Desktop Mode" +msgstr "Trocar para o modo Desktop" + +#: src/gui/editControls.cpp:673 src/gui/editControls.cpp:784 +#: src/gui/editControls.cpp:904 +msgid "Play/Edit Controls" +msgstr "" + +#: src/gui/editControls.cpp:681 src/gui/editControls.cpp:842 +#: src/gui/editControls.cpp:959 src/gui/editControls.cpp:1125 +msgid "Octave" +msgstr "Oitava" + +#: src/gui/editControls.cpp:698 src/gui/editControls.cpp:857 +msgid "Coarse Step" +msgstr "" + +#: src/gui/editControls.cpp:698 src/gui/editControls.cpp:857 +msgid "Edit Step" +msgstr "Passo de Edição" + +#: src/gui/editControls.cpp:731 src/gui/editControls.cpp:797 +#: src/gui/editControls.cpp:911 src/gui/editControls.cpp:1048 +#: src/gui/guiConst.cpp:545 +msgid "Play" +msgstr "Reproduzir" + +#: src/gui/editControls.cpp:739 src/gui/editControls.cpp:789 +#: src/gui/editControls.cpp:918 src/gui/editControls.cpp:1040 +#: src/gui/guiConst.cpp:546 +msgid "Stop" +msgstr "Parar" + +#: src/gui/editControls.cpp:742 src/gui/editControls.cpp:826 +#: src/gui/editControls.cpp:943 src/gui/editControls.cpp:1082 +#: src/gui/gui.cpp:4426 +msgid "Edit" +msgstr "Editar" + +#: src/gui/editControls.cpp:757 src/gui/editControls.cpp:816 +#: src/gui/editControls.cpp:934 src/gui/editControls.cpp:1104 +msgid "Repeat pattern" +msgstr "Repetir sequência" + +#: src/gui/editControls.cpp:766 src/gui/editControls.cpp:806 +#: src/gui/editControls.cpp:925 src/gui/editControls.cpp:1073 +msgid "Step one row" +msgstr "Mover uma linha" + +#: src/gui/editControls.cpp:771 src/gui/editControls.cpp:891 +#: src/gui/editControls.cpp:1020 src/gui/editControls.cpp:1110 +msgid "Poly##PolyInput" +msgstr "Polif.##PolyInput" + +#: src/gui/editControls.cpp:771 src/gui/editControls.cpp:891 +#: src/gui/editControls.cpp:1020 src/gui/editControls.cpp:1110 +msgid "Mono##PolyInput" +msgstr "Monof.##PolyInput" + +#: src/gui/editControls.cpp:776 src/gui/editControls.cpp:896 +#: src/gui/editControls.cpp:1025 src/gui/editControls.cpp:1115 +msgid "Polyphony" +msgstr "Polifonia" + +#: src/gui/editControls.cpp:957 +msgid "Oct." +msgstr "8va." + +#: src/gui/editControls.cpp:974 src/gui/editControls.cpp:1142 +msgid "Coarse" +msgstr "" + +#: src/gui/editControls.cpp:974 src/gui/editControls.cpp:1142 +msgid "Step" +msgstr "Passo" + +#: src/gui/editControls.cpp:998 +msgid "Foll." +msgstr "Seguir" + +#: src/gui/editControls.cpp:1003 +msgid "Ord##FollowOrders" +msgstr "Ord.##FollowOrders" + +#: src/gui/editControls.cpp:1011 +msgid "Pat##FollowPattern" +msgstr "Seq.##FollowPattern" + +#: src/gui/editControls.cpp:1033 +msgid "Play Controls" +msgstr "" + +#: src/gui/editControls.cpp:1057 +msgid "Play from the beginning of this pattern" +msgstr "Reproduzir do início desta sequência" + +#: src/gui/editControls.cpp:1065 +msgid "Repeat from the beginning of this pattern" +msgstr "Repetir do início desta sequência" + +#: src/gui/editControls.cpp:1122 src/gui/guiConst.cpp:576 +msgid "Edit Controls" +msgstr "Controles de Edição" + +#: src/gui/editControls.cpp:1169 src/gui/guiConst.cpp:560 +msgid "Follow orders" +msgstr "Seguir ordens" + +#: src/gui/editControls.cpp:1170 src/gui/guiConst.cpp:561 +msgid "Follow pattern" +msgstr "Seguir sequência" + +#: src/gui/songNotes.cpp:32 src/gui/guiConst.cpp:600 +msgid "Song Comments" +msgstr "Comentários da Música" + +#: src/gui/util.cpp:93 +msgid "" +msgstr "" + +#: src/gui/util.cpp:97 +msgid "Ctrl-" +msgstr "" + +#: src/gui/util.cpp:99 +msgid "Alt-" +msgstr "" + +#: src/gui/util.cpp:100 +msgid "Shift-" +msgstr "" + +#: src/gui/stats.cpp:31 src/gui/guiConst.cpp:597 +msgid "Statistics" +msgstr "Estatísticas" + +#: src/gui/stats.cpp:36 +msgid "Audio load" +msgstr "Carga de áudio" + +#: src/gui/xyOsc.cpp:40 src/gui/guiConst.cpp:612 +msgid "Oscilloscope (X-Y)" +msgstr "Osciloscópio (X-Y)" + +#: src/gui/xyOsc.cpp:45 +msgid "X Channel" +msgstr "Canal X" + +#: src/gui/xyOsc.cpp:51 +msgid "Invert##X" +msgstr "Inverter" + +#: src/gui/xyOsc.cpp:52 +msgid "Y Channel" +msgstr "Canal Y" + +#: src/gui/xyOsc.cpp:58 +msgid "Invert##Y" +msgstr "Inverter" + +#: src/gui/xyOsc.cpp:59 src/gui/sampleEdit.cpp:1353 +msgid "Zoom" +msgstr "Zoom" + +#: src/gui/xyOsc.cpp:71 +msgid "Decay Time (ms)" +msgstr "Tempo de decaimento (ms)" + +#: src/gui/xyOsc.cpp:74 +msgid "Intensity" +msgstr "Intensidade" + +#: src/gui/xyOsc.cpp:77 +msgid "Line Thickness" +msgstr "Espessura da linha" + +#: src/gui/xyOsc.cpp:213 +msgid "(-Infinity)dB,(-Infinity)dB" +msgstr "(-Infinito)dB,(-Infinito)dB" + +#: src/gui/xyOsc.cpp:215 +#, c-format +msgid "(-Infinity)dB,%.1fdB" +msgstr "(-Infinito)dB,%.1fdB" + +#: src/gui/xyOsc.cpp:217 +#, c-format +msgid "%.1fdB,(-Infinity)dB" +msgstr "%.1fdB,(-Infinito)dB" + +#: src/gui/xyOsc.cpp:219 +#, c-format +msgid "%.1fdB,%.1fdB" +msgstr "" + +#: src/gui/sysConf.cpp:49 src/gui/sysConf.cpp:121 src/gui/sysConf.cpp:486 +#: src/gui/sysConf.cpp:604 src/gui/sysConf.cpp:647 src/gui/sysConf.cpp:684 +#: src/gui/sysConf.cpp:843 src/gui/sysConf.cpp:1098 src/gui/sysConf.cpp:1181 +#: src/gui/sysConf.cpp:1220 src/gui/sysConf.cpp:1294 src/gui/sysConf.cpp:1380 +#: src/gui/sysConf.cpp:1444 src/gui/sysConf.cpp:1482 src/gui/sysConf.cpp:1572 +#: src/gui/sysConf.cpp:1668 src/gui/sysConf.cpp:1716 src/gui/sysConf.cpp:1757 +#: src/gui/sysConf.cpp:1810 src/gui/sysConf.cpp:2284 src/gui/sysConf.cpp:2307 +msgid "Clock rate:" +msgstr "Taxa de clock:" + +#: src/gui/sysConf.cpp:73 src/gui/sysConf.cpp:152 src/gui/sysConf.cpp:911 +#: src/gui/sysConf.cpp:1459 src/gui/sysConf.cpp:1783 +msgid "Chip type:" +msgstr "Tipo de chip:" + +#: src/gui/sysConf.cpp:75 +msgid "YM3438 (9-bit DAC)" +msgstr "YM3438 (DAC de 9-bit)" + +#: src/gui/sysConf.cpp:79 +msgid "YM2612 (9-bit DAC with distortion)" +msgstr "YM2612 (DAC de 9-bit com distorção)" + +#: src/gui/sysConf.cpp:83 +msgid "YMF276 (external DAC)" +msgstr "YMF276 (DAC externo)" + +#: src/gui/sysConf.cpp:90 src/gui/sysConf.cpp:804 src/gui/sysConf.cpp:1350 +#: src/gui/sysConf.cpp:1420 +msgid "Disable ExtCh FM macros (compatibility)" +msgstr "Desabilitar macros FM ExtCh (compatibilidade)" + +#: src/gui/sysConf.cpp:93 src/gui/sysConf.cpp:807 src/gui/sysConf.cpp:1353 +#: src/gui/sysConf.cpp:1423 +msgid "Ins change in ExtCh operator 2-4 affects FB (compatibility)" +msgstr "Mudança de inst. no operador ExtCh 2-4 afeta FB (compatibilidade)" + +#: src/gui/sysConf.cpp:99 +msgid "Modified sine wave (joke)" +msgstr "" + +#: src/gui/sysConf.cpp:123 src/gui/sysConf.cpp:1296 src/gui/sysConf.cpp:1718 +#: src/gui/sysConf.cpp:2286 +msgid "3.58MHz (NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:127 +msgid "3.55MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:131 +msgid "4MHz (BBC Micro)" +msgstr "" + +#: src/gui/sysConf.cpp:135 +msgid "1.79MHz (Half NTSC)" +msgstr "1.79MHz (Metade do NTSC)" + +#: src/gui/sysConf.cpp:139 +msgid "3MHz (Exed Exes)" +msgstr "" + +#: src/gui/sysConf.cpp:143 +msgid "2MHz (Sega System 1)" +msgstr "" + +#: src/gui/sysConf.cpp:147 +msgid "447KHz (TI-99/4A)" +msgstr "" + +#: src/gui/sysConf.cpp:154 +msgid "Sega VDP/Master System" +msgstr "" + +#: src/gui/sysConf.cpp:162 +msgid "TI SN76489 with Atari-like short noise" +msgstr "TI SN76489 com ruído curto estilo Atari" + +#: src/gui/sysConf.cpp:166 +msgid "Game Gear" +msgstr "" + +#: src/gui/sysConf.cpp:170 +msgid "TI SN76489A" +msgstr "" + +#: src/gui/sysConf.cpp:174 +msgid "TI SN76496" +msgstr "" + +#: src/gui/sysConf.cpp:178 +msgid "NCR 8496" +msgstr "" + +#: src/gui/sysConf.cpp:182 +msgid "Tandy PSSJ 3-voice sound" +msgstr "Som integrado Tandy PSSJ de 3 canais" + +#: src/gui/sysConf.cpp:186 +msgid "TI SN94624" +msgstr "" + +#: src/gui/sysConf.cpp:190 +msgid "TI SN76494" +msgstr "" + +#: src/gui/sysConf.cpp:196 +msgid "Disable noise period change phase reset" +msgstr "Desabilitar redefinição de fase na mudança do período do ruído" + +#: src/gui/sysConf.cpp:200 src/gui/sysConf.cpp:2190 +msgid "Disable easy period to note mapping on upper octaves" +msgstr "Desabilitar mapeamento fácil de período para nota nas oitavas altas" + +#: src/gui/sysConf.cpp:219 src/gui/sysConf.cpp:583 +msgid "Pseudo-PAL" +msgstr "Pseudo-PAL" + +#: src/gui/sysConf.cpp:222 src/gui/sysConf.cpp:342 +msgid "Disable anti-click" +msgstr "Desabilitar anti-click" + +#: src/gui/sysConf.cpp:225 src/gui/sysConf.cpp:345 +msgid "Chip revision:" +msgstr "Revisão do chip:" + +#: src/gui/sysConf.cpp:227 +msgid "HuC6280 (original)" +msgstr "HuC6280 (original)" + +#: src/gui/sysConf.cpp:231 +msgid "HuC6280A (SuperGrafx)" +msgstr "" + +#: src/gui/sysConf.cpp:257 +msgid "CPU rate:" +msgstr "Taxa da CPU:" + +#: src/gui/sysConf.cpp:259 +msgid "6.18MHz (NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:263 +msgid "5.95MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:268 +msgid "Sample memory:" +msgstr "Memória de sample:" + +#: src/gui/sysConf.cpp:270 +msgid "8K (rev A/B/E)" +msgstr "8K (rev A/B/E)" + +#: src/gui/sysConf.cpp:274 +msgid "64K (rev D/F)" +msgstr "64K (rev D/F)" + +#: src/gui/sysConf.cpp:279 +msgid "DAC resolution:" +msgstr "Resolução do DAC:" + +#: src/gui/sysConf.cpp:281 +msgid "16-bit (rev A/B/D/F)" +msgstr "16-bit (rev A/B/D/F)" + +#: src/gui/sysConf.cpp:285 +msgid "8-bit + TDM (rev C/E)" +msgstr "8-bit + TDM (rev C/E)" + +#: src/gui/sysConf.cpp:290 src/gui/sysConf.cpp:1931 +msgid "Enable echo" +msgstr "Habilitar eco" + +#: src/gui/sysConf.cpp:293 +msgid "Swap echo channels" +msgstr "Trocar canais de eco" + +#: src/gui/sysConf.cpp:296 src/gui/sysConf.cpp:1151 +msgid "Echo delay:" +msgstr "Atraso do eco:" + +#: src/gui/sysConf.cpp:302 +msgid "Echo resolution:" +msgstr "Resolução do eco:" + +#: src/gui/sysConf.cpp:308 src/gui/sysConf.cpp:1159 +msgid "Echo feedback:" +msgstr "Retorno (feedback) do eco:" + +#: src/gui/sysConf.cpp:314 src/gui/sysConf.cpp:1967 +msgid "Echo volume:" +msgstr "Volume do eco:" + +#: src/gui/sysConf.cpp:347 +msgid "Original (DMG)" +msgstr "Original (DMG)" + +#: src/gui/sysConf.cpp:351 +msgid "Game Boy Color (rev C)" +msgstr "Game Boy Color (rev C)" + +#: src/gui/sysConf.cpp:355 +msgid "Game Boy Color (rev E)" +msgstr "Game Boy Color (rev E)" + +#: src/gui/sysConf.cpp:359 +msgid "Game Boy Advance" +msgstr "" + +#: src/gui/sysConf.cpp:364 +msgid "Wave channel orientation:" +msgstr "Orientação do canal de onda:" + +#: src/gui/sysConf.cpp:367 src/gui/compatFlags.cpp:298 src/gui/gui.cpp:6067 +#: src/gui/insEdit.cpp:217 src/gui/insEdit.cpp:231 +msgid "Normal" +msgstr "Normal" + +#: src/gui/sysConf.cpp:371 +msgid "Inverted" +msgstr "Invertido" + +#: src/gui/sysConf.cpp:378 +msgid "Exact data (inverted)" +msgstr "Dados exatos (inverted)" + +#: src/gui/sysConf.cpp:382 +msgid "Exact output (normal)" +msgstr "Saída exata (normal)" + +#: src/gui/sysConf.cpp:388 +msgid "" +"Pretty please one more compat flag when I use arpeggio and my sound length" +msgstr "" +"Porfavorzinho mais uma opção de compatibilidade quando eu usar arpejo e meu " +"comprimento de som" + +#: src/gui/sysConf.cpp:405 src/gui/sysConf.cpp:438 +msgid "DAC bit depth (reduces output rate):" +msgstr "Profundidade de bits do DAC (reduz a taxa de amostragem):" + +#: src/gui/sysConf.cpp:426 src/gui/sysConf.cpp:1268 src/gui/sysConf.cpp:1919 +msgid "Volume scale:" +msgstr "Escala de volume:" + +#: src/gui/sysConf.cpp:432 +msgid "Mix buffers (allows longer echo delay):" +msgstr "Quantidade de buffers de mixing (permite atraso de eco mais longo):" + +#: src/gui/sysConf.cpp:444 +msgid "Channel limit:" +msgstr "Limite de canais:" + +#: src/gui/sysConf.cpp:450 +msgid "Sample rate:" +msgstr "Taxa de amostragem:" + +#: src/gui/sysConf.cpp:460 +#, c-format +msgid "Actual sample rate: %d Hz" +msgstr "Taxa de amostragem real: %d Hz" + +#: src/gui/sysConf.cpp:462 +#, c-format +msgid "Max mixer CPU usage: %.0f%%" +msgstr "Uso de CPU máximo do mixer: %.0f%%" + +#: src/gui/sysConf.cpp:488 +msgid "NTSC (3.58MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:492 src/gui/sysConf.cpp:557 +msgid "PAL (3.55MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:496 +msgid "Arcade (4MHz)" +msgstr "Arcade (4MHz)" + +#: src/gui/sysConf.cpp:500 +msgid "Half NTSC (1.79MHz)" +msgstr "Metade do NTSC (1.79MHz)" + +#: src/gui/sysConf.cpp:506 +msgid "Patch set:" +msgstr "Conjunto de timbres:" + +#: src/gui/sysConf.cpp:528 +msgid "Ignore top/hi-hat frequency changes" +msgstr "Ignorar mudanças de frequência no chimbal/prato" + +#: src/gui/sysConf.cpp:531 +msgid "Apply fixed frequency to all drums at once" +msgstr "Aplicar frequência fixa em todos os canais de bateria ao mesmo tempo" + +#: src/gui/sysConf.cpp:553 +msgid "NTSC/X16 (3.58MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:561 +msgid "X1/X68000 (4MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:567 src/gui/sysConf.cpp:587 +msgid "Broken pitch macro/slides (compatibility)" +msgstr "Macros/slide de tom quebrados (compatibilidade)" + +#: src/gui/sysConf.cpp:607 src/gui/sysConf.cpp:650 src/gui/sysConf.cpp:1222 +#: src/gui/sysConf.cpp:2310 +msgid "NTSC (1.79MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:611 src/gui/sysConf.cpp:654 src/gui/sysConf.cpp:1226 +msgid "PAL (1.67MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:615 src/gui/sysConf.cpp:658 src/gui/sysConf.cpp:1230 +msgid "Dendy (1.77MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:621 +msgid "DPCM channel mode:" +msgstr "Modo de canal DPCM:" + +#: src/gui/sysConf.cpp:624 +msgid "DPCM (muffled samples; low CPU usage)" +msgstr "DPCM (samples abafadas; baixo uso de CPU)" + +#: src/gui/sysConf.cpp:628 +msgid "PCM (crisp samples; high CPU usage)" +msgstr "PCM (samples nítidas; alto uso de CPU)" + +#: src/gui/sysConf.cpp:687 +msgid "NTSC (1.02MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:691 +msgid "PAL (0.99MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:695 +msgid "SSI 2001 (0.89MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:701 src/gui/sysConf.cpp:2320 +msgid "Global parameter priority:" +msgstr "Prioridade de parâmetros globais:" + +#: src/gui/sysConf.cpp:704 src/gui/sysConf.cpp:2323 +msgid "Left to right" +msgstr "Da esquerda para a direita" + +#: src/gui/sysConf.cpp:708 src/gui/sysConf.cpp:2327 +msgid "Last used channel" +msgstr "Último canal usado" + +#: src/gui/sysConf.cpp:714 +msgid "Hard reset envelope:" +msgstr "Reiniciar envelope bruscamente:" + +#: src/gui/sysConf.cpp:716 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:1920 +#: src/gui/insEdit.cpp:6955 src/gui/insEdit.cpp:7481 +msgid "Attack" +msgstr "Ataque" + +#: src/gui/sysConf.cpp:721 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:1960 +#: src/gui/insEdit.cpp:6956 src/gui/insEdit.cpp:7482 +msgid "Decay" +msgstr "Decaimento" + +#: src/gui/sysConf.cpp:726 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:1929 +#: src/gui/insEdit.cpp:6957 src/gui/insEdit.cpp:7483 +msgid "Sustain" +msgstr "Sustentação" + +#: src/gui/sysConf.cpp:731 src/gui/settings.cpp:3987 src/gui/insEdit.cpp:50 +#: src/gui/insEdit.cpp:604 src/gui/insEdit.cpp:1983 src/gui/insEdit.cpp:6958 +#: src/gui/insEdit.cpp:7484 +msgid "Release" +msgstr "Repouso" + +#: src/gui/sysConf.cpp:737 +msgid "Envelope reset time:" +msgstr "Tempo de reinício do envelope:" + +#: src/gui/sysConf.cpp:747 +msgid "" +"- 0 disables envelope reset. not recommended!\n" +"- 1 may trigger SID envelope bugs.\n" +"- values that are too high may result in notes being skipped." +msgstr "" +"- 0 desabilita o reinício do envelope. não recomendado!\n" +"- 1 pode causar bugs de envelope do SID.\n" +"- valores muito altos podem resultar em notas sendo puladas." + +#: src/gui/sysConf.cpp:749 +msgid "Disable 1Exy env update (compatibility)" +msgstr "Desabilitar atualização de envelope via 1Exy (compatibilidade)" + +#: src/gui/sysConf.cpp:753 +msgid "Relative duty and cutoff macros are coarse (compatibility)" +msgstr "" +"Macros de ciclo de trabalho e ponto de corte relativos são grossas " +"(compatibilidade)" + +#: src/gui/sysConf.cpp:757 +msgid "Cutoff macro race conditions (compatibility)" +msgstr "Condições de corrida nas macros de ponto de corte (compatibilidade)" + +#: src/gui/sysConf.cpp:793 +msgid "8MHz (Neo Geo MVS)" +msgstr "" + +#: src/gui/sysConf.cpp:797 +msgid "8.06MHz (Neo Geo AES)" +msgstr "" + +#: src/gui/sysConf.cpp:812 src/gui/sysConf.cpp:1337 src/gui/sysConf.cpp:1407 +msgid "SSG Volume" +msgstr "Volume do SSG" + +#: src/gui/sysConf.cpp:818 src/gui/sysConf.cpp:1413 +msgid "FM/ADPCM Volume" +msgstr "Volume do FM/ADPCM" + +#: src/gui/sysConf.cpp:845 +msgid "1.79MHz (ZX Spectrum NTSC/MSX)" +msgstr "" + +#: src/gui/sysConf.cpp:849 +msgid "1.77MHz (ZX Spectrum PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:853 +msgid "0.83MHz (Pre-divided Sunsoft 5B on PAL)" +msgstr "0.83MHz (Sunsoft 5B pré-dividido no PAL)" + +#: src/gui/sysConf.cpp:857 +msgid "0.89MHz (Pre-divided Sunsoft 5B)" +msgstr "0.89MHz (Sunsoft 5B pré-dividido)" + +#: src/gui/sysConf.cpp:861 +msgid "1MHz (Amstrad CPC)" +msgstr "" + +#: src/gui/sysConf.cpp:865 +msgid "1.10MHz (Gamate/VIC-20 PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:869 +msgid "1.25MHz (Mag Max)" +msgstr "" + +#: src/gui/sysConf.cpp:873 +msgid "1.5MHz (Vectrex)" +msgstr "" + +#: src/gui/sysConf.cpp:877 +msgid "1.536MHz (Kyugo)" +msgstr "" + +#: src/gui/sysConf.cpp:881 +msgid "1.67MHz (?)" +msgstr "" + +#: src/gui/sysConf.cpp:885 +msgid "1.75MHz (ZX Spectrum 48K)" +msgstr "" + +#: src/gui/sysConf.cpp:889 +msgid "1.99MHz (PC-88)" +msgstr "" + +#: src/gui/sysConf.cpp:893 +msgid "2MHz (Atari ST/Sharp X1)" +msgstr "" + +#: src/gui/sysConf.cpp:897 +msgid "2^21Hz (Game Boy)" +msgstr "" + +#: src/gui/sysConf.cpp:901 +msgid "3.58MHz (Darky)" +msgstr "" + +#: src/gui/sysConf.cpp:905 +msgid "3.6MHz (Darky)" +msgstr "" + +#: src/gui/sysConf.cpp:917 +msgid "YM2149(F)" +msgstr "" + +#: src/gui/sysConf.cpp:921 +msgid "Sunsoft 5B" +msgstr "" + +#: src/gui/sysConf.cpp:925 +msgid "AY-3-8914" +msgstr "" + +#: src/gui/sysConf.cpp:931 +msgid "note: AY-3-8914 is not supported by the VGM format!" +msgstr "nota: o AY-3-8914 não é suportado pelo formato VGM!" + +#: src/gui/sysConf.cpp:935 +msgid "Stereo##_AY_STEREO" +msgstr "Estéreo##_AY_STEREO" + +#: src/gui/sysConf.cpp:940 +msgid "Separation" +msgstr "Separação" + +#: src/gui/sysConf.cpp:949 +msgid "Half Clock divider##_AY_CLKSEL" +msgstr "Divisor de Clock pela Metade##_AY_CLKSEL" + +#: src/gui/sysConf.cpp:971 +msgid "SAM Coupé (8MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:975 +msgid "NTSC (7.15MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:979 +msgid "PAL (7.09MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:999 +msgid "Stereo separation:" +msgstr "Separação estéreo:" + +#: src/gui/sysConf.cpp:1006 src/gui/sysConf.cpp:2412 +msgid "Model:" +msgstr "Modelo:" + +#: src/gui/sysConf.cpp:1008 +msgid "Amiga 500 (OCS)" +msgstr "" + +#: src/gui/sysConf.cpp:1012 +msgid "Amiga 1200 (AGA)" +msgstr "" + +#: src/gui/sysConf.cpp:1018 +msgid "Chip memory:" +msgstr "Memória do chip:" + +#: src/gui/sysConf.cpp:1020 +msgid "2MB (ECS/AGA max)" +msgstr "2MB (máx. ECS/AGA)" + +#: src/gui/sysConf.cpp:1030 +msgid "512KB (OCS max)" +msgstr "512KB (máx. OCS)" + +#: src/gui/sysConf.cpp:1043 src/gui/sysConf.cpp:1081 src/gui/sysConf.cpp:2395 +#: src/gui/sysConf.cpp:2449 +msgid "PAL" +msgstr "" + +#: src/gui/sysConf.cpp:1046 +msgid "Bypass frequency limits" +msgstr "Ultrapassar limites de frequência" + +#: src/gui/sysConf.cpp:1065 +msgid "Mixing mode:" +msgstr "Modo de mixing:" + +#: src/gui/sysConf.cpp:1067 src/gui/settings.cpp:3724 +msgid "Mono" +msgstr "Mono" + +#: src/gui/sysConf.cpp:1071 +msgid "Mono (no distortion)" +msgstr "Mono (sem distorção)" + +#: src/gui/sysConf.cpp:1075 src/gui/sysConf.cpp:1197 src/gui/sysConf.cpp:1864 +#: src/gui/sysConf.cpp:2204 +msgid "Stereo" +msgstr "Estéreo" + +#: src/gui/sysConf.cpp:1100 +msgid "1.19MHz (PC)" +msgstr "" + +#: src/gui/sysConf.cpp:1104 +msgid "1.99MHz (PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1108 +msgid "2.46MHz (PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1114 +msgid "Speaker type:" +msgstr "Tipo de speaker:" + +#: src/gui/sysConf.cpp:1116 +msgid "Unfiltered" +msgstr "Não-filtrado" + +#: src/gui/sysConf.cpp:1120 +msgid "Cone" +msgstr "Cone" + +#: src/gui/sysConf.cpp:1124 +msgid "Piezo" +msgstr "Piezo" + +#: src/gui/sysConf.cpp:1128 +msgid "Use system beeper (Linux only!)" +msgstr "Usar beeper do sistema (somente Linux!)" + +#: src/gui/sysConf.cpp:1134 +msgid "Reset phase on frequency change" +msgstr "Reiniciar fase em mudança de frequência" + +#: src/gui/sysConf.cpp:1183 +msgid "16MHz (Seta 1)" +msgstr "" + +#: src/gui/sysConf.cpp:1187 +msgid "16.67MHz (Seta 2)" +msgstr "" + +#: src/gui/sysConf.cpp:1191 src/gui/sysConf.cpp:1759 +msgid "14.32MHz (NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:1201 +msgid "Bankswitched (Seta 2)" +msgstr "Usar Bankswitching (Seta 2)" + +#: src/gui/sysConf.cpp:1235 src/gui/sysConf.cpp:1261 +msgid "Initial channel limit:" +msgstr "Limite de canais inicial:" + +#: src/gui/sysConf.cpp:1241 src/gui/sysConf.cpp:2398 +msgid "Disable hissing" +msgstr "Desabilitar chiado" + +#: src/gui/sysConf.cpp:1244 +msgid "Scale frequency to wave length" +msgstr "Escalonar frequência para tamanho da onda" + +#: src/gui/sysConf.cpp:1300 src/gui/sysConf.cpp:1722 +msgid "3.54MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:1304 src/gui/sysConf.cpp:1726 src/gui/sysConf.cpp:2290 +msgid "4MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1308 src/gui/sysConf.cpp:1730 +msgid "3MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1312 src/gui/sysConf.cpp:1734 +msgid "3.9936MHz (PC-88/PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1316 +msgid "1.5MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1321 src/gui/sysConf.cpp:1391 src/gui/sysConf.cpp:1639 +#: src/gui/sysConf.cpp:1852 +msgid "Output rate:" +msgstr "Taxa de saída:" + +#: src/gui/sysConf.cpp:1323 src/gui/sysConf.cpp:1397 +msgid "FM: clock / 72, SSG: clock / 16" +msgstr "FM: clock / 72, SSG: clock / 16" + +#: src/gui/sysConf.cpp:1327 +msgid "FM: clock / 36, SSG: clock / 8" +msgstr "FM: clock / 36, SSG: clock / 8" + +#: src/gui/sysConf.cpp:1331 +msgid "FM: clock / 24, SSG: clock / 4" +msgstr "FM: clock / 24, SSG: clock / 4" + +#: src/gui/sysConf.cpp:1343 +msgid "FM Volume" +msgstr "Volume do FM" + +#: src/gui/sysConf.cpp:1382 +msgid "8MHz (Arcade)" +msgstr "8MHz (Arcade)" + +#: src/gui/sysConf.cpp:1386 +msgid "7.987MHz (PC-88/PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1393 +msgid "FM: clock / 144, SSG: clock / 32" +msgstr "FM: clock / 144, SSG: clock / 32" + +#: src/gui/sysConf.cpp:1401 +msgid "FM: clock / 48, SSG: clock / 8" +msgstr "FM: clock / 48, SSG: clock / 8" + +#: src/gui/sysConf.cpp:1446 +msgid "8MHz (FM Towns)" +msgstr "" + +#: src/gui/sysConf.cpp:1450 +msgid "10MHz (Sega System 18)" +msgstr "" + +#: src/gui/sysConf.cpp:1454 +msgid "12.5MHz (Sega CD/System 32)" +msgstr "" + +#: src/gui/sysConf.cpp:1461 +msgid "RF5C68 (10-bit output)" +msgstr "RF5C68 (saída 10-bit)" + +#: src/gui/sysConf.cpp:1465 +msgid "RF5C164 (16-bit output)" +msgstr "RF5C164 (saída 16-bit)" + +#: src/gui/sysConf.cpp:1520 +msgid "Sample rate table:" +msgstr "Tabela de taxa de amostragem:" + +#: src/gui/sysConf.cpp:1524 +msgid "divider \\ clock" +msgstr "divisor \\ clock" + +#: src/gui/sysConf.cpp:1526 +msgid "full" +msgstr "completo" + +#: src/gui/sysConf.cpp:1528 +msgid "half" +msgstr "metade" + +#: src/gui/sysConf.cpp:1641 +msgid "clock / 132" +msgstr "clock / 132" + +#: src/gui/sysConf.cpp:1645 +msgid "clock / 165" +msgstr "clock / 165" + +#: src/gui/sysConf.cpp:1651 +msgid "Bankswitched (NMK112)" +msgstr "Usar Bankswitching (NMK112)" + +#: src/gui/sysConf.cpp:1670 +msgid "1.79MHz (NTSC/MSX)" +msgstr "" + +#: src/gui/sysConf.cpp:1674 +msgid "1.77MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:1678 +msgid "1.5MHz (Arcade)" +msgstr "1.5MHz (Arcade)" + +#: src/gui/sysConf.cpp:1682 +msgid "2MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1697 +msgid "Consistent frequency across all duties" +msgstr "Frequência consistente ao longo de todos os ciclos de trabalho" + +#: src/gui/sysConf.cpp:1704 +msgid "note: only works for an initial LFSR value of 0!" +msgstr "nota: só funciona para um valor inicial de LFSR igual a 0!" + +#: src/gui/sysConf.cpp:1738 +msgid "3.5MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1763 +msgid "14.19MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:1767 +msgid "14MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1771 +msgid "16MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1775 +msgid "15MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1779 +msgid "33.8688MHz (OPL3-L)" +msgstr "" + +#: src/gui/sysConf.cpp:1784 +msgid "OPL3 (YMF262)" +msgstr "" + +#: src/gui/sysConf.cpp:1788 +msgid "OPL3-L (YMF289B)" +msgstr "" + +#: src/gui/sysConf.cpp:1794 +msgid "Compatible panning (0800)" +msgstr "Balanço compatível (0800)" + +#: src/gui/sysConf.cpp:1858 +msgid "Output bit depth:" +msgstr "Profundidade de bits de saída:" + +#: src/gui/sysConf.cpp:1868 +msgid "Interpolation:" +msgstr "Interpolação:" + +#: src/gui/sysConf.cpp:1874 src/gui/waveEdit.cpp:38 +msgid "Linear" +msgstr "Linear" + +#: src/gui/sysConf.cpp:1878 src/gui/waveEdit.cpp:40 +msgid "Cubic" +msgstr "Cúbica" + +#: src/gui/sysConf.cpp:1882 +msgid "Sinc" +msgstr "Sinc" + +#: src/gui/sysConf.cpp:1920 +msgid "Left##VolScaleL" +msgstr "Esquerdo##VolScaleL" + +#: src/gui/sysConf.cpp:1925 +msgid "Right##VolScaleL" +msgstr "Direito##VolScaleL" + +#: src/gui/sysConf.cpp:1935 +msgid "Initial echo state:" +msgstr "Estado inicial do eco:" + +#: src/gui/sysConf.cpp:1955 +msgid "Delay##EchoDelay" +msgstr "Atraso##EchoDelay" + +#: src/gui/sysConf.cpp:1961 +msgid "Feedback##EchoFeedback" +msgstr "Retorno (feedback)##EchoFeedback" + +#: src/gui/sysConf.cpp:1968 +msgid "Left##EchoVolL" +msgstr "Esquerdo##EchoVolL" + +#: src/gui/sysConf.cpp:1973 +msgid "Right##EchoVolL" +msgstr "Direito##EchoVolL" + +#: src/gui/sysConf.cpp:1979 +msgid "Echo filter:" +msgstr "Filtro do eco:" + +#: src/gui/sysConf.cpp:1989 +msgid "Hex##SNESFHex" +msgstr "Hex##SNESFHex" + +#: src/gui/sysConf.cpp:1989 +msgid "Dec##SNESFHex" +msgstr "Dec##SNESFHex" + +#: src/gui/sysConf.cpp:2031 +#, c-format +msgid "sum: %d" +msgstr "soma: %d" + +#: src/gui/sysConf.cpp:2086 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:63 +#: src/gui/insEdit.cpp:75 +msgid "Detune" +msgstr "Desafinação" + +#: src/gui/sysConf.cpp:2092 +msgid "Capacitor values (nF):" +msgstr "Valores dos capacitores (nF):" + +#: src/gui/sysConf.cpp:2102 +msgid "Initial part volume (channel 1-4):" +msgstr "Volume inicial das partes (canais 1-4):" + +#: src/gui/sysConf.cpp:2112 +msgid "Initial part volume (channel 5-8):" +msgstr "Volume inicial das partes (canais 5-8):" + +#: src/gui/sysConf.cpp:2122 +msgid "Envelope mode (channel 1-4):" +msgstr "Modo de envelope (canais 1-4):" + +#: src/gui/sysConf.cpp:2124 +msgid "Capacitor (attack/decay)##EM00" +msgstr "Capacitor (ataque/decaimento)##EM00" + +#: src/gui/sysConf.cpp:2128 +msgid "External (volume macro)##EM01" +msgstr "Externo (macro de volume)##EM01" + +#: src/gui/sysConf.cpp:2134 +msgid "Envelope mode (channel 5-8):" +msgstr "Modo de envelope (canais 5-8):" + +#: src/gui/sysConf.cpp:2136 +msgid "Capacitor (attack/decay)##EM10" +msgstr "Capacitor (ataque/decaimento)##EM10" + +#: src/gui/sysConf.cpp:2140 +msgid "External (volume macro)##EM11" +msgstr "Externo (macro de volume)##EM11" + +#: src/gui/sysConf.cpp:2146 +msgid "Global vibrato:" +msgstr "Vibrato global:" + +#: src/gui/sysConf.cpp:2153 +msgid "Depth" +msgstr "Profundidade" + +#: src/gui/sysConf.cpp:2219 src/gui/sysConf.cpp:2373 +msgid "Waveform storage mode:" +msgstr "Modo de armazenamento das waveforms:" + +#: src/gui/sysConf.cpp:2221 +msgid "RAM" +msgstr "RAM" + +#: src/gui/sysConf.cpp:2225 +msgid "ROM (up to 8 waves)" +msgstr "ROM (até 8 ondas)" + +#: src/gui/sysConf.cpp:2241 +msgid "Compatible noise frequencies" +msgstr "Frequências de ruído compatíveis" + +#: src/gui/sysConf.cpp:2256 +msgid "Legacy slides and pitch (compatibility)" +msgstr "Slides e tom legados (compatibilidade)" + +#: src/gui/sysConf.cpp:2314 +msgid "PAL (1.77MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:2344 +msgid "Banking style:" +msgstr "Estilo de gerenciamento de bancos" + +#: src/gui/sysConf.cpp:2346 +msgid "Namco System 2 (2MB)" +msgstr "Namco System 2 (2MB)" + +#: src/gui/sysConf.cpp:2351 +msgid "Namco System 21 (4MB)" +msgstr "Namco System 21 (4MB)" + +#: src/gui/sysConf.cpp:2356 +msgid "Raw (16MB; no VGM export!)" +msgstr "Cru (16MB; não é possível exportar VGM!)" + +#: src/gui/sysConf.cpp:2375 +msgid "Dynamic (unconfirmed)" +msgstr "Dinâmico (não confirmado)" + +#: src/gui/sysConf.cpp:2379 +msgid "Static (up to 5 waves)" +msgstr "Estático (até 5 ondas)" + +#: src/gui/sysConf.cpp:2414 +msgid "DS (4MB RAM)" +msgstr "DS (4MB RAM)" + +#: src/gui/sysConf.cpp:2418 +msgid "DSi (16MB RAM)" +msgstr "DSi (16MB RAM)" + +#: src/gui/sysConf.cpp:2444 src/gui/settings.cpp:727 +msgid "nothing to configure" +msgstr "nada para configurar" + +#: src/gui/sysConf.cpp:2467 +msgid "Custom clock rate" +msgstr "Taxa de clock personalizada" + +#: src/gui/volMeter.cpp:36 src/gui/settings.cpp:3969 src/gui/guiConst.cpp:596 +msgid "Volume Meter" +msgstr "Medidor de Volume" + +#: src/gui/userPresets.cpp:325 +msgid "User Systems" +msgstr "" + +#: src/gui/userPresets.cpp:337 +msgid "Error! User category does not exist!" +msgstr "" + +#: src/gui/userPresets.cpp:346 src/gui/newSong.cpp:181 +msgid "Systems" +msgstr "Sistemas" + +#: src/gui/userPresets.cpp:349 +msgid "New Preset" +msgstr "" + +#: src/gui/userPresets.cpp:361 +msgid "select a preset" +msgstr "" + +#: src/gui/userPresets.cpp:374 +msgid "Remove##UPresetRemove" +msgstr "" + +#: src/gui/userPresets.cpp:439 src/gui/settings.cpp:1135 +msgid "Configure" +msgstr "Configurar" + +#: src/gui/userPresets.cpp:470 +msgid "Advanced" +msgstr "" + +#: src/gui/userPresets.cpp:476 +msgid "" +"insert additional settings in `option=value` format.\n" +"available options:\n" +"- tickRate" +msgstr "" + +#: src/gui/userPresets.cpp:509 +msgid "Save and Close" +msgstr "" + +#: src/gui/userPresets.cpp:515 src/gui/settings.cpp:1238 +#: src/gui/settings.cpp:2161 src/gui/settings.cpp:2553 +#: src/gui/settings.cpp:3796 +msgid "Import" +msgstr "Importar" + +#: src/gui/userPresets.cpp:519 +msgid "Import (replace)" +msgstr "" + +#: src/gui/effectList.cpp:14 src/gui/guiConst.cpp:606 +msgid "Effect List" +msgstr "Lista de Efeitos" + +#: src/gui/effectList.cpp:18 +#, c-format +msgid "Chip at cursor: %s" +msgstr "Chip sob o cursor: %s" + +#: src/gui/effectList.cpp:21 src/gui/settings.cpp:6674 +msgid "Search" +msgstr "Procurar" + +#: src/gui/effectList.cpp:25 +msgid "Effect types to show:" +msgstr "Tipos de efeitos a serem exibidos:" + +#: src/gui/effectList.cpp:47 +msgid "Description" +msgstr "Descrição" + +#: src/gui/subSongs.cpp:22 src/gui/subSongs.cpp:32 +#, c-format +msgid "%d. " +msgstr "%d. " + +#: src/gui/subSongs.cpp:73 src/gui/subSongs.cpp:93 +msgid "too many subsongs!" +msgstr "há muitas subfaixas!" + +#: src/gui/subSongs.cpp:114 +msgid "this is the only subsong!" +msgstr "essa é a única subfaixa!" + +#: src/gui/subSongs.cpp:116 +msgid "are you sure you want to remove this subsong?" +msgstr "tem certeza de que quer remover esta subfaixa?" + +#: src/gui/spoiler.cpp:30 +msgid "Spoiler" +msgstr "" + +#: src/gui/spoiler.cpp:32 +msgid "SPOILER" +msgstr "" + +#: src/gui/settings.cpp:104 src/gui/settings.cpp:114 src/gui/settings.cpp:124 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:105 src/gui/settings.cpp:115 src/gui/settings.cpp:125 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:168 +msgid "ASAP (C++ port)" +msgstr "ASAP (conversão para C++)" + +#: src/gui/settings.cpp:191 +msgid "ESFMu (fast)" +msgstr "ESFMu (rápido)" + +#: src/gui/settings.cpp:205 +msgid "Lower" +msgstr "" + +#: src/gui/settings.cpp:207 +msgid "Medium" +msgstr "" + +#: src/gui/settings.cpp:209 +msgid "Ultra" +msgstr "" + +#: src/gui/settings.cpp:210 +msgid "Ultimate" +msgstr "" + +#: src/gui/settings.cpp:214 +msgid "evdev SND_TONE" +msgstr "" + +#: src/gui/settings.cpp:215 +msgid "KIOCSOUND on /dev/tty1" +msgstr "KIOCSOUND em /dev/tty1" + +#: src/gui/settings.cpp:216 +msgid "/dev/port" +msgstr "" + +#: src/gui/settings.cpp:217 +msgid "KIOCSOUND on standard output" +msgstr "KIOCSOUND na saída padrão" + +#: src/gui/settings.cpp:218 +msgid "outb()" +msgstr "" + +#: src/gui/settings.cpp:222 src/gui/settings.cpp:232 +msgid "Disabled/custom" +msgstr "Desabilitado/personalizado" + +#: src/gui/settings.cpp:223 +msgid "Two octaves (0 is C-4, F is D#5)" +msgstr "Duas oitavas (0 é C-4, F é D#5)" + +#: src/gui/settings.cpp:224 +msgid "Raw (note number is value)" +msgstr "Cru (número da nota é o valor)" + +#: src/gui/settings.cpp:225 +msgid "Two octaves alternate (lower keys are 0-9, upper keys are A-F)" +msgstr "" +"Duas oitavas alternativo (teclas brancas são 0-9, teclas pretas são A-F)" + +#: src/gui/settings.cpp:226 src/gui/settings.cpp:233 +msgid "Use dual control change (one for each nibble)" +msgstr "Utilizar dois MIDI CC separados (um para cada nibble)" + +#: src/gui/settings.cpp:227 src/gui/settings.cpp:234 +msgid "Use 14-bit control change" +msgstr "Utilizar um MIDI CC de 14 bits" + +#: src/gui/settings.cpp:228 src/gui/settings.cpp:235 +msgid "Use single control change (imprecise)" +msgstr "Utilizar um único MIDI CC (impreciso)" + +#: src/gui/settings.cpp:239 +msgid "--select--" +msgstr "--selecione--" + +#: src/gui/settings.cpp:240 src/gui/settings.cpp:241 src/gui/settings.cpp:242 +#: src/gui/settings.cpp:243 src/gui/settings.cpp:244 src/gui/settings.cpp:245 +#: src/gui/settings.cpp:246 +msgid "???" +msgstr "" + +#: src/gui/settings.cpp:247 +msgid "Note Off" +msgstr "Note Off" + +#: src/gui/settings.cpp:248 +msgid "Note On" +msgstr "Note On" + +#: src/gui/settings.cpp:249 +msgid "Aftertouch" +msgstr "Aftertouch" + +#: src/gui/settings.cpp:250 src/gui/insEdit.cpp:7187 src/gui/insEdit.cpp:7217 +#: src/gui/insEdit.cpp:7382 src/gui/insEdit.cpp:7403 src/gui/insEdit.cpp:7415 +#: src/gui/insEdit.cpp:7430 +msgid "Control" +msgstr "Controle" + +#: src/gui/settings.cpp:251 src/gui/settings.cpp:573 src/gui/settings.cpp:3177 +msgid "Program" +msgstr "Mudança de Programa" + +#: src/gui/settings.cpp:252 +msgid "ChanPressure" +msgstr "Pressão do Canal" + +#: src/gui/settings.cpp:253 +msgid "Pitch Bend" +msgstr "Pitch Bend" + +#: src/gui/settings.cpp:254 +msgid "SysEx" +msgstr "SysEx" + +#: src/gui/settings.cpp:258 src/gui/settings.cpp:1713 src/gui/settings.cpp:1723 +#: src/gui/settings.cpp:1743 src/gui/settings.cpp:1749 +#, c-format +msgid "Any" +msgstr "Qualquer" + +#: src/gui/settings.cpp:262 src/gui/settings.cpp:3363 src/gui/settings.cpp:3928 +#: src/gui/settings.cpp:4121 +msgid "Instrument" +msgstr "Instrumento" + +#: src/gui/settings.cpp:264 +msgid "Effect 1 type" +msgstr "Tipo do Efeito 1" + +#: src/gui/settings.cpp:265 +msgid "Effect 1 value" +msgstr "Valor do Efeito 1" + +#: src/gui/settings.cpp:266 +msgid "Effect 2 type" +msgstr "Tipo do Efeito 2" + +#: src/gui/settings.cpp:267 +msgid "Effect 2 value" +msgstr "Valor do Efeito 2" + +#: src/gui/settings.cpp:268 +msgid "Effect 3 type" +msgstr "Tipo do Efeito 3" + +#: src/gui/settings.cpp:269 +msgid "Effect 3 value" +msgstr "Valor do Efeito 3" + +#: src/gui/settings.cpp:270 +msgid "Effect 4 type" +msgstr "Tipo do Efeito 4" + +#: src/gui/settings.cpp:271 +msgid "Effect 4 value" +msgstr "Valor do Efeito 4" + +#: src/gui/settings.cpp:272 +msgid "Effect 5 type" +msgstr "Tipo do Efeito 5" + +#: src/gui/settings.cpp:273 +msgid "Effect 5 value" +msgstr "Valor do Efeito 5" + +#: src/gui/settings.cpp:274 +msgid "Effect 6 type" +msgstr "Tipo do Efeito 6" + +#: src/gui/settings.cpp:275 +msgid "Effect 6 value" +msgstr "Valor do Efeito 6" + +#: src/gui/settings.cpp:276 +msgid "Effect 7 type" +msgstr "Tipo do Efeito 7" + +#: src/gui/settings.cpp:277 +msgid "Effect 7 value" +msgstr "Valor do Efeito 7" + +#: src/gui/settings.cpp:278 +msgid "Effect 8 type" +msgstr "Tipo do Efeito 8" + +#: src/gui/settings.cpp:279 +msgid "Effect 8 value" +msgstr "Valor do Efeito 8" + +#: src/gui/settings.cpp:315 +msgid "Press key..." +msgstr "Pressione uma tecla..." + +#: src/gui/settings.cpp:564 +msgid "Do you want to save your settings?" +msgstr "Você quer salvar suas configurações?" + +#: src/gui/settings.cpp:571 +msgid "General" +msgstr "Geral" + +#: src/gui/settings.cpp:588 +msgid "Language" +msgstr "Linguagem" + +#: src/gui/settings.cpp:606 +msgid "Render backend" +msgstr "Back-end de renderização" + +#: src/gui/settings.cpp:661 src/gui/settings.cpp:680 src/gui/settings.cpp:1312 +msgid "you may need to restart Furnace for this setting to take effect." +msgstr "" +"você pode ter que reiniciar o Furnace para essa configuração fazer efeito." + +#: src/gui/settings.cpp:664 +msgid "Advanced render backend settings" +msgstr "" + +#: src/gui/settings.cpp:666 +msgid "Render driver" +msgstr "Driver de renderização" + +#: src/gui/settings.cpp:666 src/gui/settings.cpp:667 src/gui/settings.cpp:1298 +#: src/gui/settings.cpp:1299 src/gui/piano.cpp:108 +msgid "Automatic" +msgstr "Automático" + +#: src/gui/settings.cpp:683 +msgid "" +"beware: changing these settings may render Furnace unusable! do so at your " +"own risk.\n" +"start Furnace with -safemode if you mess something up." +msgstr "" + +#: src/gui/settings.cpp:684 +msgid "Red bits" +msgstr "" + +#: src/gui/settings.cpp:689 +msgid "Green bits" +msgstr "" + +#: src/gui/settings.cpp:694 +msgid "Blue bits" +msgstr "" + +#: src/gui/settings.cpp:699 +msgid "Alpha bits" +msgstr "" + +#: src/gui/settings.cpp:704 +msgid "Color depth" +msgstr "" + +#: src/gui/settings.cpp:709 +msgid "Stencil buffer size" +msgstr "" + +#: src/gui/settings.cpp:714 src/gui/settings.cpp:1385 +msgid "Buffer size" +msgstr "Tamanho de buffer" + +#: src/gui/settings.cpp:720 +msgid "Double buffer" +msgstr "" + +#: src/gui/settings.cpp:725 +msgid "" +"the following values are common (in red, green, blue, alpha order):\n" +"- 24 bits: 8, 8, 8, 0\n" +"- 16 bits: 5, 6, 5, 0\n" +"- 32 bits (with alpha): 8, 8, 8, 8\n" +"- 30 bits (deep): 10, 10, 10, 0" +msgstr "" + +#: src/gui/settings.cpp:732 +#, c-format +msgid "" +"current backend: %s\n" +"%s\n" +"%s\n" +"%s" +msgstr "" + +#: src/gui/settings.cpp:735 +msgid "VSync" +msgstr "" + +#: src/gui/settings.cpp:743 +msgid "Frame rate limit" +msgstr "" + +#: src/gui/settings.cpp:743 +msgid "Unlimited" +msgstr "" + +#: src/gui/settings.cpp:749 +msgid "only applies when VSync is disabled." +msgstr "" + +#: src/gui/settings.cpp:753 +msgid "Display render time" +msgstr "" + +#: src/gui/settings.cpp:760 +msgid "Late render clear" +msgstr "Limpeza de renderização atrasada" + +#: src/gui/settings.cpp:765 +msgid "" +"calls rend->clear() after rend->present(). might reduce UI latency by one " +"frame in some drivers." +msgstr "" +"chama rend->clear() depois de rend->present(). pode reduzir o atraso da " +"interface gráfica por um quadro em alguns drivers." + +#: src/gui/settings.cpp:770 +msgid "Power-saving mode" +msgstr "Modo de economia de energia" + +#: src/gui/settings.cpp:775 +msgid "" +"saves power by lowering the frame rate to 2fps when idle.\n" +"may cause issues under Mesa drivers!" +msgstr "" +"economiza energia diminuindo a taxa de quadros para 2 FPS quando ocioso.\n" +"pode causar problemas com alguns drivers Mesa!" + +#: src/gui/settings.cpp:780 +msgid "Disable threaded input (restart after changing!)" +msgstr "Desabilitar entrada em threads (reinicie após alterar!)" + +#: src/gui/settings.cpp:785 +msgid "" +"threaded input processes key presses for note preview on a separate thread " +"(on supported platforms), which reduces latency.\n" +"however, crashes have been reported when threaded input is on. enable this " +"option if that is the case." +msgstr "" +"entrada em threads processa pressionamentos de tecla para previsão de notas " +"em uma thread separada (em plataformas suportadas), o que reduz o atraso.\n" +"porém, crashes já foram relatados quando a entrada em threads estava " +"ativada. habilite esta opção se isso acontecer." + +#: src/gui/settings.cpp:790 +msgid "Enable event delay" +msgstr "Habilitar atraso de eventos" + +#: src/gui/settings.cpp:796 +msgid "may cause issues with high-polling-rate mice when previewing notes." +msgstr "" +"pode causar problemas com mouses de alta taxa de amostragem ao prever notas." + +#: src/gui/settings.cpp:800 +msgid "Per-channel oscilloscope threads" +msgstr "Threads de osciloscópio por canal" + +#: src/gui/settings.cpp:808 +msgid "you're being silly, aren't you? that's enough." +msgstr "você tá de brincadeira, né? isso é mais do que suficiente." + +#: src/gui/settings.cpp:812 +msgid "what are you doing? stop!" +msgstr "o que você tá fazendo? para!" + +#: src/gui/settings.cpp:816 +#, c-format +msgid "" +"it is a bad idea to set this number higher than your CPU core count (%d)!" +msgstr "" +"é uma má ideia definir esse número pra um valor mais alto do que o número de " +"núcleos da sua CPU (%d)!" + +#: src/gui/settings.cpp:821 +msgid "Oscilloscope rendering engine:" +msgstr "Motor de renderização de osciloscópio:" + +#: src/gui/settings.cpp:823 +msgid "ImGui line plot" +msgstr "Plotagem de linhas do ImGui" + +#: src/gui/settings.cpp:827 +msgid "render using Dear ImGui's built-in line drawing functions." +msgstr "" +"desenha o osciloscópio utilizando as funções embutidas de desenho de linha " +"do Dear ImGui." + +#: src/gui/settings.cpp:829 +msgid "GLSL (if available)" +msgstr "GLSL (se disponível)" + +#: src/gui/settings.cpp:834 +msgid "" +"render using shaders that run on the graphics card.\n" +"only available in OpenGL ES 2.0 render backend." +msgstr "" + +#: src/gui/settings.cpp:836 +msgid "" +"render using shaders that run on the graphics card.\n" +"only available in OpenGL 3.0 render backend." +msgstr "" +"renderiza utilizando sombreadores que executam na placa de vídeo.\n" +"somente disponível no backend de renderização OpenGL 3.0." + +#: src/gui/settings.cpp:843 +msgid "Vibration" +msgstr "" + +#: src/gui/settings.cpp:845 +msgid "Strength" +msgstr "" + +#: src/gui/settings.cpp:851 src/gui/insEdit.cpp:2284 src/gui/insEdit.cpp:2382 +#: src/gui/insEdit.cpp:5582 src/gui/insEdit.cpp:6241 +msgid "Length" +msgstr "Comprimento" + +#: src/gui/settings.cpp:859 src/gui/gui.cpp:4191 +msgid "File" +msgstr "Arquivo" + +#: src/gui/settings.cpp:862 +msgid "Use system file picker" +msgstr "Usar diálogo de arquivos do sistema" + +#: src/gui/settings.cpp:867 +msgid "Number of recent files" +msgstr "Número de arquivos recentes" + +#: src/gui/settings.cpp:874 +msgid "Compress when saving" +msgstr "Comprimir ao salvar" + +#: src/gui/settings.cpp:879 +msgid "use zlib to compress saved songs." +msgstr "usar zlib para comprimir músicas salvas." + +#: src/gui/settings.cpp:883 +msgid "Save unused patterns" +msgstr "Salvar sequências não utilizadas" + +#: src/gui/settings.cpp:889 +msgid "Use new pattern format when saving" +msgstr "Utilizar novo formato de padrão ao salvar" + +#: src/gui/settings.cpp:894 +msgid "" +"use a packed format which saves space when saving songs.\n" +"disable if you need compatibility with older Furnace and/or tools\n" +"which do not support this format." +msgstr "" +"utilizar um formato empacotado que economiza espaço ao salvar músicas.\n" +"desabilite se você precisa de compatibilidade com versões antigas do Furnace " +"e/ou ferramentas\n" +"que não suportam esse formato." + +#: src/gui/settings.cpp:898 +msgid "Don't apply compatibility flags when loading .dmf" +msgstr "Não aplicar opções de compatibilidade ao carregar .dmf" + +#: src/gui/settings.cpp:903 +msgid "do not report any issues arising from the use of this option!" +msgstr "favor não relatar nenhum problema vindo do uso dessa opção!" + +#: src/gui/settings.cpp:906 +msgid "Play after opening song:" +msgstr "Reproduzir após abrir música:" + +#: src/gui/settings.cpp:908 +msgid "No##pol0" +msgstr "Não##pol0" + +#: src/gui/settings.cpp:912 +msgid "Only if already playing##pol1" +msgstr "Somente se já estiver reproduzindo##pol1" + +#: src/gui/settings.cpp:916 +msgid "Yes##pol0" +msgstr "Sim##pol0" + +#: src/gui/settings.cpp:922 +msgid "Audio export loop/fade out time:" +msgstr "Tempo de repetição/fade out da exportação de áudio:" + +#: src/gui/settings.cpp:924 +msgid "Set to these values on start-up:##fot0" +msgstr "Definir para estes valores na inicialização:##fot0" + +#: src/gui/settings.cpp:942 +msgid "Remember last values##fot1" +msgstr "Lembrar últimos valores##fot1" + +#: src/gui/settings.cpp:949 +msgid "Store instrument name in .fui" +msgstr "Armazenar nome do instrumento no .fui" + +#: src/gui/settings.cpp:954 +msgid "" +"when enabled, saving an instrument will store its name.\n" +"this may increase file size." +msgstr "" +"quando habilitado, ao salvar um instrumento será armazenado o seu nome.\n" +" isso pode aumentar o tamanho do arquivo." + +#: src/gui/settings.cpp:958 +msgid "Load instrument name from .fui" +msgstr "Carregar nome do instrumento do .fui" + +#: src/gui/settings.cpp:963 +msgid "" +"when enabled, loading an instrument will use the stored name (if present).\n" +"otherwise, it will use the file name." +msgstr "" +"quando habilitado, ao carregar um instrumento será utilizado o nome " +"armazenado, se presente.\n" +"caso contrário, será utilizado o nome do arquivo." + +#: src/gui/settings.cpp:967 +msgid "Auto-fill file name when saving" +msgstr "" + +#: src/gui/settings.cpp:972 +msgid "" +"fill the file name field with an appropriate file name when saving or " +"exporting." +msgstr "" + +#: src/gui/settings.cpp:976 src/gui/gui.cpp:5563 src/gui/gui.cpp:5613 +msgid "New Song" +msgstr "Nova Música" + +#: src/gui/settings.cpp:978 +msgid "Initial system:" +msgstr "Sistema inicial:" + +#: src/gui/settings.cpp:980 +msgid "Current system" +msgstr "Sistema atual" + +#: src/gui/settings.cpp:993 src/gui/waveEdit.cpp:1149 src/gui/gui.cpp:3046 +msgid "Randomize" +msgstr "Aleatorizar" + +#: src/gui/settings.cpp:1043 +msgid "Reset to defaults" +msgstr "Reiniciar aos padrões" + +#: src/gui/settings.cpp:1178 +msgid "When creating new song:" +msgstr "Ao criar uma nova música:" + +#: src/gui/settings.cpp:1180 +msgid "Display system preset selector##NSB0" +msgstr "Mostrar seletor de predefinições de sistema##NSB0" + +#: src/gui/settings.cpp:1184 +msgid "Start with initial system##NSB1" +msgstr "Começar com o sistema inicial##NSB1" + +#: src/gui/settings.cpp:1188 +msgid "Default author name" +msgstr "Nome do autor padrão" + +#: src/gui/settings.cpp:1192 +msgid "Start-up" +msgstr "Inicialização" + +#: src/gui/settings.cpp:1193 +msgid "Play intro on start-up:" +msgstr "" + +#: src/gui/settings.cpp:1195 +msgid "No##pis0" +msgstr "" + +#: src/gui/settings.cpp:1199 +msgid "Short##pis1" +msgstr "" + +#: src/gui/settings.cpp:1203 +msgid "Full (short when loading song)##pis2" +msgstr "" + +#: src/gui/settings.cpp:1207 +msgid "Full (always)##pis3" +msgstr "" + +#: src/gui/settings.cpp:1214 +msgid "Disable fade-in during start-up" +msgstr "Desabilitar transição fade-in durante inicialização" + +#: src/gui/settings.cpp:1220 +msgid "About screen party time" +msgstr "\"Hora da Festa\" na tela \"Sobre...\"" + +#: src/gui/settings.cpp:1225 +msgid "Warning: may cause epileptic seizures." +msgstr "Aviso: pode causar ataques epiléticos." + +#: src/gui/settings.cpp:1229 +msgid "Behavior" +msgstr "Comportamento" + +#: src/gui/settings.cpp:1231 +msgid "New instruments are blank" +msgstr "Novos instrumentos começam em branco" + +#: src/gui/settings.cpp:1237 src/gui/settings.cpp:4255 +msgid "Configuration" +msgstr "" + +#: src/gui/settings.cpp:1246 +msgid "Factory Reset" +msgstr "" + +#: src/gui/settings.cpp:1247 +msgid "" +"Are you sure you want to reset all Furnace settings?\n" +"You must restart Furnace after doing so." +msgstr "" + +#: src/gui/settings.cpp:1255 +msgid "Output" +msgstr "Saída" + +#: src/gui/settings.cpp:1263 +msgid "Backend" +msgstr "Back-end" + +#: src/gui/settings.cpp:1296 +msgid "Driver" +msgstr "Driver" + +#: src/gui/settings.cpp:1319 +msgid "Device" +msgstr "Dispositivo" + +#: src/gui/settings.cpp:1323 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:1324 +msgid "ALERT - TRESPASSER DETECTED" +msgstr "ALERTA - INVASOR DETECTADO" + +#: src/gui/settings.cpp:1326 +msgid "you have been arrested for trying to engage with a disabled combo box." +msgstr "" +"você foi preso por tentar interagir com uma caixa de combinação desabilitada." + +#: src/gui/settings.cpp:1333 src/gui/settings.cpp:1335 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:1371 src/gui/insEdit.cpp:7186 +msgid "Outputs" +msgstr "Saídas" + +#: src/gui/settings.cpp:1379 +msgid "" +"common values:\n" +"- 1 for mono\n" +"- 2 for stereo\n" +"- 4 for quadraphonic\n" +"- 6 for 5.1 surround\n" +"- 8 for 7.1 surround" +msgstr "" + +#: src/gui/settings.cpp:1387 +#, c-format +msgid "%d (latency: ~%.1fms)" +msgstr "%d (atraso: ~%.1fms)" + +#: src/gui/settings.cpp:1402 +msgid "Multi-threaded (EXPERIMENTAL)" +msgstr "Multissegmentado (EXPERIMENTAL)" + +#: src/gui/settings.cpp:1411 +msgid "" +"runs chip emulation on separate threads.\n" +"may increase performance when using heavy emulation cores.\n" +"\n" +"warnings:\n" +"- experimental!\n" +"- only useful on multi-chip songs." +msgstr "" +"roda a emulação de chips em threads separadas.\n" +"pode aumentar a performance ao utilizar núcleos de emulação pesados.\n" +"\n" +"avisos:\n" +"- experimental!\n" +"- só é útil em músicas com múltiplos chips." + +#: src/gui/settings.cpp:1416 +msgid "Number of threads" +msgstr "Número de threads:" + +#: src/gui/settings.cpp:1423 +msgid "that's the limit!" +msgstr "esse é o limite!" + +#: src/gui/settings.cpp:1427 +#, c-format +msgid "" +"it is a VERY bad idea to set this number higher than your CPU core count " +"(%d)!" +msgstr "" +"é uma PÉSSIMA ideia definir esse número pra um valor mais alto do que o " +"número de núcleos da sua CPU (%d)!" + +#: src/gui/settings.cpp:1435 +msgid "Low-latency mode" +msgstr "Modo de baixo atraso" + +#: src/gui/settings.cpp:1440 +msgid "" +"reduces latency by running the engine faster than the tick rate.\n" +"useful for live playback/jam mode.\n" +"\n" +"warning: only enable if your buffer size is small (10ms or less)." +msgstr "" +"reduz o atraso rodando o motor mais rápido que a taxa de ticks.\n" +"útil para tocar ao vivo/\"modo jam\".\n" +"\n" +"aviso: só habilite se o seu tamanho de buffer for pequeno (10ms ou menor)." + +#: src/gui/settings.cpp:1444 +msgid "Force mono audio" +msgstr "Forçar áudio mono" + +#: src/gui/settings.cpp:1452 +msgid "Exclusive mode" +msgstr "Modo exclusivo" + +#: src/gui/settings.cpp:1463 +#, c-format +msgid "want: %d samples @ %.0fHz (%d channel)" +msgid_plural "want: %d samples @ %.0fHz (%d channels)" +msgstr[0] "" +msgstr[1] "" + +#: src/gui/settings.cpp:1464 +#, c-format +msgid "got: %d samples @ %.0fHz (%d channel)" +msgid_plural "got: %d samples @ %.0fHz (%d channels)" +msgstr[0] "" +msgstr[1] "" + +#: src/gui/settings.cpp:1471 +msgid "Mixing" +msgstr "Mixing" + +#: src/gui/settings.cpp:1473 src/gui/settings.cpp:2082 +msgid "Quality" +msgstr "Qualidade" + +#: src/gui/settings.cpp:1478 +msgid "Software clipping" +msgstr "Clipping em software" + +#: src/gui/settings.cpp:1484 +msgid "DC offset correction" +msgstr "Correção de deslocamento DC" + +#: src/gui/settings.cpp:1502 src/gui/guiConst.cpp:740 +msgid "Sample preview" +msgstr "Previsão de sample" + +#: src/gui/settings.cpp:1515 +msgid "MIDI" +msgstr "MIDI" + +#: src/gui/settings.cpp:1517 src/gui/settings.cpp:1519 +msgid "MIDI input" +msgstr "Entrada MIDI" + +#: src/gui/settings.cpp:1521 src/gui/settings.cpp:1524 +#: src/gui/settings.cpp:1815 src/gui/settings.cpp:1817 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:1540 +msgid "Re-scan MIDI devices" +msgstr "Procurar novamente por dispositivos MIDI" + +#: src/gui/settings.cpp:1551 src/gui/settings.cpp:2258 +msgid "Note input" +msgstr "Entrada de notas" + +#: src/gui/settings.cpp:1552 +msgid "Velocity input" +msgstr "Entrada de velocidade" + +#: src/gui/settings.cpp:1556 +msgid "Map MIDI channels to direct channels" +msgstr "Mapear canais MIDI a canais diretos" + +#: src/gui/settings.cpp:1562 +msgid "Program change pass-through" +msgstr "Passagem de mudança de programa" + +#: src/gui/settings.cpp:1567 +msgid "Map Yamaha FM voice data to instruments" +msgstr "Mapear dados de timbre FM Yamaha aos instrumentos" + +#: src/gui/settings.cpp:1569 +msgid "Program change is instrument selection" +msgstr "Mudança de programa é seleção de instrumento" + +#: src/gui/settings.cpp:1573 +msgid "Value input style" +msgstr "Estilo de entrada de valor" + +#: src/gui/settings.cpp:1576 src/gui/settings.cpp:1601 +msgid "Control##valueCCS" +msgstr "Controle##valueCCS" + +#: src/gui/settings.cpp:1582 src/gui/settings.cpp:1607 +msgid "CC of upper nibble##valueCC1" +msgstr "CC do nibble superior##valueCC1" + +#: src/gui/settings.cpp:1582 src/gui/settings.cpp:1607 +msgid "MSB CC##valueCC1" +msgstr "CC do byte mais significativo##valueCC1" + +#: src/gui/settings.cpp:1587 src/gui/settings.cpp:1612 +msgid "CC of lower nibble##valueCC2" +msgstr "CC do nibble inferior##valueCC2" + +#: src/gui/settings.cpp:1587 src/gui/settings.cpp:1612 +msgid "LSB CC##valueCC2" +msgstr "CC do byte menos significativo##valueCC2" + +#: src/gui/settings.cpp:1594 +msgid "Per-column control change" +msgstr "Mudança de controle por coluna" + +#: src/gui/settings.cpp:1624 src/gui/settings.cpp:1634 +msgid "Volume curve" +msgstr "Curva de volume" + +#: src/gui/settings.cpp:1637 +msgid "Actions:" +msgstr "Ações:" + +#: src/gui/settings.cpp:1651 +msgid "" +"(learning! press a button or move a slider/knob/something on your device.)" +msgstr "" +"(aprendendo! pressione, gire um botão, mova um controle deslizante ou outra " +"coisa em seu dispositivo.)" + +#: src/gui/settings.cpp:1665 src/gui/settings.cpp:2277 +#: src/gui/settings.cpp:6687 src/gui/sampleEdit.cpp:501 +#: src/gui/insEdit.cpp:5321 +msgid "Type" +msgstr "Tipo" + +#: src/gui/settings.cpp:1669 +msgid "Note/Control" +msgstr "Nota/Controle" + +#: src/gui/settings.cpp:1671 +msgid "Velocity/Value" +msgstr "Velocidade/Valor" + +#: src/gui/settings.cpp:1673 +msgid "Action" +msgstr "Ação" + +#: src/gui/settings.cpp:1765 src/gui/settings.cpp:1766 +msgid "--none--" +msgstr "--nenhuma--" + +#: src/gui/settings.cpp:1787 +msgid "waiting...##BLearn" +msgstr "aguardando...##BLearn" + +#: src/gui/settings.cpp:1787 +msgid "Learn##BLearn" +msgstr "Aprender##BLearn" + +#: src/gui/settings.cpp:1811 src/gui/settings.cpp:1813 +msgid "MIDI output" +msgstr "Saída MIDI" + +#: src/gui/settings.cpp:1830 +msgid "Output mode:" +msgstr "Modo de saída:" + +#: src/gui/settings.cpp:1832 +msgid "Off (use for TX81Z)" +msgstr "Desabilitada (use para TX81Z)" + +#: src/gui/settings.cpp:1836 +msgid "Melodic" +msgstr "Melódica" + +#: src/gui/settings.cpp:1847 +msgid "Send Program Change" +msgstr "Enviar Mudança de Programa" + +#: src/gui/settings.cpp:1853 +msgid "Send MIDI clock" +msgstr "Enviar Clock MIDI" + +#: src/gui/settings.cpp:1859 +msgid "Send MIDI timecode" +msgstr "Enviar Timecode MIDI" + +#: src/gui/settings.cpp:1865 +msgid "Timecode frame rate:" +msgstr "Taxa de quadros do timecode:" + +#: src/gui/settings.cpp:1867 +msgid "Closest to Tick Rate" +msgstr "Mais próxima da taxa de ticks" + +#: src/gui/settings.cpp:1871 +msgid "Film (24fps)" +msgstr "Filme (24fps)" + +#: src/gui/settings.cpp:1875 +msgid "PAL (25fps)" +msgstr "PAL (25fps)" + +#: src/gui/settings.cpp:1879 +msgid "NTSC drop (29.97fps)" +msgstr "NTSC drop (29.97fps)" + +#: src/gui/settings.cpp:1883 +msgid "NTSC non-drop (30fps)" +msgstr "NTSC não-drop (30fps)" + +#: src/gui/settings.cpp:1892 +msgid "Emulation" +msgstr "Emulação" + +#: src/gui/settings.cpp:1894 +msgid "Cores" +msgstr "Núcleos" + +#: src/gui/settings.cpp:1903 +msgid "Playback Core(s)" +msgstr "Núcleo(s) de reprodução" + +#: src/gui/settings.cpp:1905 src/gui/settings.cpp:2093 +msgid "used for playback" +msgstr "utilizados para reprodução" + +#: src/gui/settings.cpp:1908 +msgid "Render Core(s)" +msgstr "Núcleo(s) de renderização" + +#: src/gui/settings.cpp:1910 src/gui/settings.cpp:2098 +msgid "used in audio export" +msgstr "utilizados para exportação de áudio" + +#: src/gui/settings.cpp:2091 +msgid "Playback" +msgstr "" + +#: src/gui/settings.cpp:2096 +msgid "Render" +msgstr "" + +#: src/gui/settings.cpp:2120 +msgid "PC Speaker strategy" +msgstr "Estratégia de PC Speaker" + +#: src/gui/settings.cpp:2158 src/gui/settings.cpp:2160 +msgid "Keyboard" +msgstr "Teclado" + +#: src/gui/settings.cpp:2169 src/gui/settings.cpp:3804 +msgid "Reset defaults" +msgstr "Redefinir padrões" + +#: src/gui/settings.cpp:2170 +msgid "Are you sure you want to reset the keyboard settings?" +msgstr "Tem certeza de que quer redefinir as configurações de teclado?" + +#: src/gui/settings.cpp:2172 +msgid "Global hotkeys" +msgstr "Atalhos globais" + +#: src/gui/settings.cpp:2209 +msgid "Window activation" +msgstr "Ativação de janela" + +#: src/gui/settings.cpp:2275 +msgid "Key" +msgstr "Tecla" + +#: src/gui/settings.cpp:2279 src/gui/findReplace.cpp:725 +#: src/gui/findReplace.cpp:1003 +msgid "Value" +msgstr "Valor" + +#: src/gui/settings.cpp:2289 +#, c-format +msgid "Macro release##SNType_%d" +msgstr "Repouso de macro##SNType_%d" + +#: src/gui/settings.cpp:2294 +#, c-format +msgid "Note release##SNType_%d" +msgstr "Repouso de nota##SNType_%d" + +#: src/gui/settings.cpp:2299 +#, c-format +msgid "Note off##SNType_%d" +msgstr "Note off##SNType_%d" + +#: src/gui/settings.cpp:2304 +#, c-format +msgid "Note##SNType_%d" +msgstr "Nota##SNType_%d" + +#: src/gui/settings.cpp:2328 +msgid "Add..." +msgstr "Adicionar..." + +#: src/gui/settings.cpp:2418 +msgid "Instrument list" +msgstr "Lista de instrumentos" + +#: src/gui/settings.cpp:2438 +msgid "Wavetable list" +msgstr "Lista de wavetables" + +#: src/gui/settings.cpp:2459 +msgid "Sample list" +msgstr "Lista de samples" + +#: src/gui/settings.cpp:2509 +msgid "Sample editor" +msgstr "Editor de samples" + +#: src/gui/settings.cpp:2547 src/gui/settings.cpp:3814 +#: src/gui/settings.cpp:3844 +msgid "Interface" +msgstr "Interface" + +#: src/gui/settings.cpp:2549 +msgid "Layout" +msgstr "Leiaute" + +#: src/gui/settings.cpp:2551 +msgid "Workspace layout:" +msgstr "Leiaute do espaço de trabalho:" + +#: src/gui/settings.cpp:2561 src/gui/gui.cpp:2920 +msgid "Reset" +msgstr "Redefinir" + +#: src/gui/settings.cpp:2562 src/gui/gui.cpp:4455 +msgid "Are you sure you want to reset the workspace layout?" +msgstr "Tem certeza de que quer redefinir o leiaute do espaço de trabalho?" + +#: src/gui/settings.cpp:2566 +msgid "Allow docking editors" +msgstr "Permitir ancorar editores" + +#: src/gui/settings.cpp:2573 +msgid "Remember window position" +msgstr "Lembrar posição da janela" + +#: src/gui/settings.cpp:2578 +msgid "remembers the window's last position on start-up." +msgstr "memoriza a última posição da janela no início do programa." + +#: src/gui/settings.cpp:2583 +msgid "Only allow window movement when clicking on title bar" +msgstr "Permitir movimentação da janela somente ao clicar na barra de título" + +#: src/gui/settings.cpp:2590 +msgid "Center pop-up windows" +msgstr "Centralizar janelas flutuantes" + +#: src/gui/settings.cpp:2595 +msgid "Play/edit controls layout:" +msgstr "Leiaute de controles de reprodução/edição:" + +#: src/gui/settings.cpp:2597 +msgid "Classic##ecl0" +msgstr "Clássico##ecl0" + +#: src/gui/settings.cpp:2601 +msgid "Compact##ecl1" +msgstr "Compacto##ecl1" + +#: src/gui/settings.cpp:2605 +msgid "Compact (vertical)##ecl2" +msgstr "Compacto (vertical)##ecl2" + +#: src/gui/settings.cpp:2609 +msgid "Split##ecl3" +msgstr "Dividido##ecl3" + +#: src/gui/settings.cpp:2615 +msgid "Position of buttons in Orders:" +msgstr "Posição dos botões na janela Ordens:" + +#: src/gui/settings.cpp:2617 +msgid "Top##obp0" +msgstr "Topo##obp0" + +#: src/gui/settings.cpp:2621 +msgid "Left##obp1" +msgstr "Esquerda##obp1" + +#: src/gui/settings.cpp:2625 +msgid "Right##obp2" +msgstr "Direita##obp2" + +#: src/gui/settings.cpp:2632 +msgid "Mouse" +msgstr "Mouse" + +#: src/gui/settings.cpp:2634 +msgid "Double-click time (seconds)" +msgstr "Tempo de duplo clique (segundos)" + +#: src/gui/settings.cpp:2643 +msgid "Don't raise pattern editor on click" +msgstr "Não levantar o editor de sequência ao clicar" + +#: src/gui/settings.cpp:2649 +msgid "Focus pattern editor when selecting instrument" +msgstr "Focar editor de sequência ao selecionar instrumento" + +#: src/gui/settings.cpp:2654 +msgid "Note preview behavior:" +msgstr "Comportamento de previsão de nota:" + +#: src/gui/settings.cpp:2656 +msgid "Never##npb0" +msgstr "Nunca##npb0" + +#: src/gui/settings.cpp:2660 +msgid "When cursor is in Note column##npb1" +msgstr "Quando o cursor estiver na coluna de Nota##npb1" + +#: src/gui/settings.cpp:2664 +msgid "When cursor is in Note column or not in edit mode##npb2" +msgstr "" +"Quando o cursor estiver na coluna de Nota ou não estiver no modo de " +"edição##npb2" + +#: src/gui/settings.cpp:2668 +msgid "Always##npb3" +msgstr "Sempre##npb3" + +#: src/gui/settings.cpp:2674 +msgid "Allow dragging selection:" +msgstr "Permitir arrastar seleção:" + +#: src/gui/settings.cpp:2676 +msgid "No##dms0" +msgstr "Não##dms0" + +#: src/gui/settings.cpp:2680 +msgid "Yes##dms1" +msgstr "Sim##dms1" + +#: src/gui/settings.cpp:2684 +msgid "Yes (while holding Ctrl only)##dms2" +msgstr "Sim (somente quando segurando Ctrl)##dms2" + +#: src/gui/settings.cpp:2690 +msgid "Toggle channel solo on:" +msgstr "Alternar isolamento de canal ao:" + +#: src/gui/settings.cpp:2692 +msgid "Right-click or double-click##soloA" +msgstr "" + +#: src/gui/settings.cpp:2696 +msgid "Right-click##soloR" +msgstr "" + +#: src/gui/settings.cpp:2700 +msgid "Double-click##soloD" +msgstr "" + +#: src/gui/settings.cpp:2707 +msgid "Double click selects entire column" +msgstr "Duplo clique seleciona a coluna inteira" + +#: src/gui/settings.cpp:2713 +msgid "Cursor behavior" +msgstr "Comportamento do cursor" + +#: src/gui/settings.cpp:2715 +msgid "Insert pushes entire channel row" +msgstr "Inserção empurra a linha do canal inteiro" + +#: src/gui/settings.cpp:2721 +msgid "Pull delete affects entire channel row" +msgstr "Excluir e puxar afeta a linha do canal inteiro" + +#: src/gui/settings.cpp:2727 +msgid "Push value when overwriting instead of clearing it" +msgstr "Empurrar valor ao sobrescrever ao invés de limpá-lo" + +#: src/gui/settings.cpp:2733 +msgid "Keyboard note/value input repeat (hold key to input continuously)" +msgstr "" + +#: src/gui/settings.cpp:2738 +msgid "Effect input behavior:" +msgstr "Comportamento de inserção de efeitos:" + +#: src/gui/settings.cpp:2740 +msgid "Move down##eicb0" +msgstr "Mover para baixo##eicb0" + +#: src/gui/settings.cpp:2744 +msgid "Move to effect value (otherwise move down)##eicb1" +msgstr "Mover para valor do efeito (caso contrário mover para baixo)##eicb1" + +#: src/gui/settings.cpp:2748 +msgid "Move to effect value/next effect and wrap around##eicb2" +msgstr "Mover para valor do efeito/próximo efeito e dar a volta##eicb2" + +#: src/gui/settings.cpp:2755 +msgid "Delete effect value when deleting effect" +msgstr "Excluir valor do efeito ao excluir efeito" + +#: src/gui/settings.cpp:2761 +msgid "Change current instrument when changing instrument column (absorb)" +msgstr "Alterar instrumento atual ao alterar coluna de instrumento (absorver)" + +#: src/gui/settings.cpp:2767 +msgid "Remove instrument value when inserting note off/release" +msgstr "Remover valor do instrumento ao inserir note off/repouso" + +#: src/gui/settings.cpp:2773 +msgid "Remove volume value when inserting note off/release" +msgstr "Remover valor do volume ao inserir note off/repouso" + +#: src/gui/settings.cpp:2779 +msgid "Cursor movement" +msgstr "Movimentação do cursor" + +#: src/gui/settings.cpp:2781 +msgid "Wrap horizontally:" +msgstr "Dar a volta horizontalmente:" + +#: src/gui/settings.cpp:2783 +msgid "No##wrapH0" +msgstr "Não##wrapH0" + +#: src/gui/settings.cpp:2787 +msgid "Yes##wrapH1" +msgstr "Sim##wrapH1" + +#: src/gui/settings.cpp:2791 +msgid "Yes, and move to next/prev row##wrapH2" +msgstr "Sim, e mover para a próxima linha/anterior##wrapH2" + +#: src/gui/settings.cpp:2797 +msgid "Wrap vertically:" +msgstr "Dar a volta verticalmente:" + +#: src/gui/settings.cpp:2799 +msgid "No##wrapV0" +msgstr "Não##wrapV0" + +#: src/gui/settings.cpp:2803 +msgid "Yes##wrapV1" +msgstr "Sim##wrapV1" + +#: src/gui/settings.cpp:2807 +msgid "Yes, and move to next/prev pattern##wrapV2" +msgstr "Sim, e mover para a próxima sequência/anterior##wrapV2" + +#: src/gui/settings.cpp:2811 +msgid "Yes, and move to next/prev pattern (wrap around)##wrapV2" +msgstr "" +"Sim, e mover para a próxima sequência/anterior (dando a volta pela " +"música)##wrapV2" + +#: src/gui/settings.cpp:2817 +msgid "Cursor movement keys behavior:" +msgstr "Comportamento das teclas de movimentação do cursor:" + +#: src/gui/settings.cpp:2819 +msgid "Move by one##cmk0" +msgstr "Mover uma célula##cmk0" + +#: src/gui/settings.cpp:2823 +msgid "Move by Edit Step##cmk1" +msgstr "Mover pelo Passo de Edição##cmk1" + +#: src/gui/settings.cpp:2830 +msgid "Move cursor by edit step on delete" +msgstr "Mover cursor pelo Passo de Edição ao excluir" + +#: src/gui/settings.cpp:2836 +msgid "Move cursor by edit step on insert (push)" +msgstr "Mover cursor pelo Passo de Edição ao inserir (empurrar)" + +#: src/gui/settings.cpp:2842 +msgid "Move cursor up on backspace-delete" +msgstr "Mover cursor para cima ao excluir-backspace" + +#: src/gui/settings.cpp:2848 +msgid "Move cursor to end of clipboard content when pasting" +msgstr "Mover cursor ao final do conteúdo da área de transferência ao colar" + +#: src/gui/settings.cpp:2854 +msgid "Scrolling" +msgstr "Rolagem" + +#: src/gui/settings.cpp:2856 +msgid "Change order when scrolling outside of pattern bounds:" +msgstr "Trocar ordem ao rolar fora dos limites da sequência:" + +#: src/gui/settings.cpp:2858 +msgid "No##pscroll0" +msgstr "Não##pscroll0" + +#: src/gui/settings.cpp:2862 +msgid "Yes##pscroll1" +msgstr "Sim##pscroll1" + +#: src/gui/settings.cpp:2866 +msgid "Yes, and wrap around song##pscroll2" +msgstr "Sim, e dar a volta pela música##pscroll2" + +#: src/gui/settings.cpp:2873 +msgid "Cursor follows current order when moving it" +msgstr "Cursor segue a ordem atual ao movê-lo" + +#: src/gui/settings.cpp:2878 +msgid "applies when playback is stopped." +msgstr "aplica-se quando a reprodução está parada." + +#: src/gui/settings.cpp:2882 +msgid "Don't scroll when moving cursor" +msgstr "Não rolar ao mover cursor" + +#: src/gui/settings.cpp:2887 +msgid "Move cursor with scroll wheel:" +msgstr "Mover cursor com o scroll do mouse:" + +#: src/gui/settings.cpp:2889 +msgid "No##csw0" +msgstr "Não##csw0" + +#: src/gui/settings.cpp:2893 +msgid "Yes##csw1" +msgstr "Sim##csw1" + +#: src/gui/settings.cpp:2897 +msgid "Inverted##csw2" +msgstr "Invertido##csw2" + +#: src/gui/settings.cpp:2904 +msgid "How many steps to move with each scroll wheel step?" +msgstr "Quantos passos mover com cada passo do scroll do mouse?" + +#: src/gui/settings.cpp:2905 +msgid "One##cws0" +msgstr "Um a um##cws0" + +#: src/gui/settings.cpp:2909 +msgid "Edit Step##cws1" +msgstr "Passo de edição##cws1" + +#: src/gui/settings.cpp:2916 src/gui/settings.cpp:3531 +msgid "Assets" +msgstr "Recursos" + +#: src/gui/settings.cpp:2919 +msgid "Display instrument type menu when adding instrument" +msgstr "Mostrar menu de tipo de instrumento ao adicionar instrumento" + +#: src/gui/settings.cpp:2925 +msgid "Select asset after opening one" +msgstr "Selecionar recurso após abrir um" + +#: src/gui/settings.cpp:2932 +msgid "Appearance" +msgstr "Aparência" + +#: src/gui/settings.cpp:2934 +msgid "Scaling" +msgstr "Escala" + +#: src/gui/settings.cpp:2936 +msgid "Automatic UI scaling factor" +msgstr "Fator de escala de interface automático" + +#: src/gui/settings.cpp:2945 +msgid "UI scaling factor" +msgstr "Fator de escala de interface" + +#: src/gui/settings.cpp:2952 +msgid "Icon size" +msgstr "Tamanho dos ícones" + +#: src/gui/settings.cpp:2967 +msgid "Font renderer" +msgstr "Renderizador de fonte" + +#: src/gui/settings.cpp:2977 +msgid "Main font" +msgstr "Fonte principal" + +#: src/gui/settings.cpp:2988 +msgid "Size##MainFontSize" +msgstr "Tamanho##MainFontSize" + +#: src/gui/settings.cpp:2996 +msgid "Header font" +msgstr "Fonte do cabeçalho" + +#: src/gui/settings.cpp:3007 +msgid "Size##HeadFontSize" +msgstr "Tamanho##HeadFontSize" + +#: src/gui/settings.cpp:3015 +msgid "Pattern font" +msgstr "Fonte da sequência" + +#: src/gui/settings.cpp:3026 +msgid "Size##PatFontSize" +msgstr "Tamanho##PatFontSize" + +#: src/gui/settings.cpp:3036 +msgid "Anti-aliased fonts" +msgstr "Fontes suavizadas" + +#: src/gui/settings.cpp:3042 +msgid "Support bitmap fonts" +msgstr "Suporte a fontes bitmap" + +#: src/gui/settings.cpp:3047 +msgid "Hinting:" +msgstr "Hinting:" + +#: src/gui/settings.cpp:3049 +msgid "Off (soft)##fh0" +msgstr "Desligado (suave)##fh0" + +#: src/gui/settings.cpp:3053 +msgid "Slight##fh1" +msgstr "Leve##fh1" + +#: src/gui/settings.cpp:3057 +msgid "Normal##fh2" +msgstr "Normal##fh2" + +#: src/gui/settings.cpp:3061 +msgid "Full (hard)##fh3" +msgstr "Completo (duro)##fh3" + +#: src/gui/settings.cpp:3067 +msgid "Auto-hinter:" +msgstr "Auto-hinter:" + +#: src/gui/settings.cpp:3069 +msgid "Disable##fah0" +msgstr "Desabilitado##fah0" + +#: src/gui/settings.cpp:3073 +msgid "Enable##fah1" +msgstr "Habilitado##fah1" + +#: src/gui/settings.cpp:3077 +msgid "Force##fah2" +msgstr "Forçado##fah2" + +#: src/gui/settings.cpp:3084 +msgid "Oversample" +msgstr "" + +#: src/gui/settings.cpp:3087 +msgid "1×##fos1" +msgstr "" + +#: src/gui/settings.cpp:3092 +msgid "" +"saves video memory. reduces font rendering quality.\n" +"use for pixel/bitmap fonts." +msgstr "" + +#: src/gui/settings.cpp:3095 +msgid "2×##fos2" +msgstr "" + +#: src/gui/settings.cpp:3100 +msgid "default." +msgstr "" + +#: src/gui/settings.cpp:3103 +msgid "3×##fos3" +msgstr "" + +#: src/gui/settings.cpp:3108 +msgid "" +"slightly better font rendering quality.\n" +"uses more video memory." +msgstr "" + +#: src/gui/settings.cpp:3112 +msgid "Load fallback font" +msgstr "" + +#: src/gui/settings.cpp:3117 +msgid "disable to save video memory." +msgstr "" + +#: src/gui/settings.cpp:3121 +msgid "Display Japanese characters" +msgstr "Exibir caracteres Japoneses" + +#: src/gui/settings.cpp:3127 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"このオプションは、十分なグラフィックメモリがある場合にのみ切り替えてくださ" +"い。\n" +"これは、Dear ImGuiにダイナミックフォントアトラスが実装されるまでの一時的な解" +"決策です。" +msgstr "" +"Somente habilite esta opção se você tiver memória gráfica suficiente.\n" +"Isto é uma solução temporária até que atlas de fonte dinâmico seja " +"implementado no Dear ImGui.\n" +"\n" +"このオプションは、十分なグラフィックメモリがある場合にのみ切り替えてくださ" +"い。\n" +"これは、Dear ImGuiにダイナミックフォントアトラスが実装されるまでの一時的な解" +"決策です。" + +#: src/gui/settings.cpp:3135 +msgid "Display Chinese (Simplified) characters" +msgstr "Exibir caracteres Chineses (Simplificado)" + +#: src/gui/settings.cpp:3141 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"请在确保你有足够的显存后再启动此设定\n" +"这是一个在ImGui实现动态字体加载之前的临时解决方案" +msgstr "" +"Somente habilite esta opção se você tiver memória gráfica suficiente.\n" +"Isto é uma solução temporária até que atlas de fonte dinâmico seja " +"implementado no Dear ImGui.\n" +"\n" +"请在确保你有足够的显存后再启动此设定\n" +"这是一个在ImGui实现动态字体加载之前的临时解决方案" + +#: src/gui/settings.cpp:3149 +msgid "Display Chinese (Traditional) characters" +msgstr "Exibir caracteres Chineses (Simplificado)" + +#: src/gui/settings.cpp:3155 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"請在確保你有足夠的顯存后再啟動此設定\n" +"這是一個在ImGui實現動態字體加載之前的臨時解決方案" +msgstr "" +"Somente habilite esta opção se você tiver memória gráfica suficiente.\n" +"Isto é uma solução temporária até que atlas de fonte dinâmico seja " +"implementado no Dear ImGui.\n" +"\n" +"請在確保你有足夠的顯存后再啟動此設定\n" +"這是一個在ImGui實現動態字體加載之前的臨時解決方案" + +#: src/gui/settings.cpp:3163 +msgid "Display Korean characters" +msgstr "Exibir caracteres Coreanos" + +#: src/gui/settings.cpp:3169 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"그래픽 메모리가 충분한 경우에만 이 옵션을 선택하십시오.\n" +"이 옵션은 Dear ImGui에 동적 글꼴 아틀라스가 구현될 때까지 임시 솔루션입니다." +msgstr "" +"Somente habilite esta opção se você tiver memória gráfica suficiente.\n" +"Isto é uma solução temporária até que atlas de fonte dinâmico seja " +"implementado no Dear ImGui.\n" +"\n" +"그래픽 메모리가 충분한 경우에만 이 옵션을 선택하십시오.\n" +"이 옵션은 Dear ImGui에 동적 글꼴 아틀라스가 구현될 때까지 임시 솔루션입니다." + +#: src/gui/settings.cpp:3178 +msgid "Title bar:" +msgstr "Barra de título:" + +#: src/gui/settings.cpp:3180 +msgid "Furnace##tbar0" +msgstr "Furnace##tbar0" + +#: src/gui/settings.cpp:3185 +msgid "Song Name - Furnace##tbar1" +msgstr "Nome da Música - Furnace##tbar1" + +#: src/gui/settings.cpp:3190 +msgid "file_name.fur - Furnace##tbar2" +msgstr "nome_do_arquivo.fur - Furnace##tbar2" + +#: src/gui/settings.cpp:3195 +msgid "/path/to/file.fur - Furnace##tbar3" +msgstr "/caminho/para/o/arquivo.fur - Furnace##tbar3" + +#: src/gui/settings.cpp:3203 +msgid "Display system name on title bar" +msgstr "Mostrar nome do sistema na barra de título" + +#: src/gui/settings.cpp:3210 +msgid "Display chip names instead of \"multi-system\" in title bar" +msgstr "" +"Mostrar nomes dos chips ao invés de \"multi-sistema\" na barra de título" + +#: src/gui/settings.cpp:3216 +msgid "Status bar:" +msgstr "Barra de status:" + +#: src/gui/settings.cpp:3218 +msgid "Cursor details##sbar0" +msgstr "" + +#: src/gui/settings.cpp:3222 +msgid "File path##sbar1" +msgstr "" + +#: src/gui/settings.cpp:3226 +msgid "Cursor details or file path##sbar2" +msgstr "" + +#: src/gui/settings.cpp:3230 +msgid "Nothing##sbar3" +msgstr "" + +#: src/gui/settings.cpp:3237 +msgid "Display playback status when playing" +msgstr "Exibir status da reprodução enquanto reproduz" + +#: src/gui/settings.cpp:3242 +msgid "Export options layout:" +msgstr "Leiaute das opções de exportação:" + +#: src/gui/settings.cpp:3244 +msgid "Sub-menus in File menu##eol0" +msgstr "Sub-menus no menu Arquivo##eol0" + +#: src/gui/settings.cpp:3248 +msgid "Modal window with tabs##eol1" +msgstr "Janela modal com abas##eol1" + +#: src/gui/settings.cpp:3252 +msgid "Modal windows with options in File menu##eol2" +msgstr "Janela modal com opções no menu Arquivo##eol2" + +#: src/gui/settings.cpp:3259 +msgid "Capitalize menu bar" +msgstr "Capitalizar barra de menus" + +#: src/gui/settings.cpp:3265 +msgid "Display add/configure/change/remove chip menus in File menu" +msgstr "" +"Exibir menus para adicionar/configurar/alterar/remover chip no menu Arquivo" + +#: src/gui/settings.cpp:3279 +msgid "Highlight channel at cursor in Orders" +msgstr "Realçar canal sob o cursor na janela Ordens" + +#: src/gui/settings.cpp:3284 +msgid "Orders row number format:" +msgstr "Formato de número de linha da ordem:" + +#: src/gui/settings.cpp:3286 +msgid "Decimal##orbD" +msgstr "Decimal##orbD" + +#: src/gui/settings.cpp:3290 +msgid "Hexadecimal##orbH" +msgstr "Hexadecimal##orbH" + +#: src/gui/settings.cpp:3299 +msgid "Center pattern view" +msgstr "Centralizar visualização da sequência" + +#: src/gui/settings.cpp:3305 +msgid "Overflow pattern highlights" +msgstr "Preencher destaques da sequência por todo o fundo" + +#: src/gui/settings.cpp:3311 +msgid "Display previous/next pattern" +msgstr "Exibir sequência anterior/próxima" + +#: src/gui/settings.cpp:3316 +msgid "Pattern row number format:" +msgstr "Formato de número de linha da sequência:" + +#: src/gui/settings.cpp:3318 +msgid "Decimal##prbD" +msgstr "Decimal##prbD" + +#: src/gui/settings.cpp:3322 +msgid "Hexadecimal##prbH" +msgstr "Hexadecimal##prbH" + +#: src/gui/settings.cpp:3328 +msgid "Pattern view labels:" +msgstr "Rótulos da visualização da sequência:" + +#: src/gui/settings.cpp:3333 +msgid "Note off (3-char)" +msgstr "Note off (3 caracteres)" + +#: src/gui/settings.cpp:3338 +msgid "Note release (3-char)" +msgstr "Repouso de nota (3 carac.)" + +#: src/gui/settings.cpp:3343 +msgid "Macro release (3-char)" +msgstr "Repouso de macro (3 carac.)" + +#: src/gui/settings.cpp:3348 +msgid "Empty field (3-char)" +msgstr "Campo vazio (3 carac.)" + +#: src/gui/settings.cpp:3353 +msgid "Empty field (2-char)" +msgstr "Campo vazio (2 carac.)" + +#: src/gui/settings.cpp:3355 +msgid "Pattern view spacing after:" +msgstr "Espaçamento da visualização de sequência após:" + +#: src/gui/settings.cpp:3357 src/gui/settings.cpp:4115 +#: src/gui/findReplace.cpp:601 src/gui/findReplace.cpp:864 +#: src/gui/sampleEdit.cpp:590 +msgid "Note" +msgstr "Nota" + +#: src/gui/settings.cpp:3375 src/gui/findReplace.cpp:707 +#: src/gui/findReplace.cpp:974 +msgid "Effect" +msgstr "Efeito" + +#: src/gui/settings.cpp:3381 +msgid "Effect value" +msgstr "Valor do efeito" + +#: src/gui/settings.cpp:3388 +msgid "Single-digit effects for 00-0F" +msgstr "Efeitos de digito único para 00-0F" + +#: src/gui/settings.cpp:3394 +msgid "Use flats instead of sharps" +msgstr "Usar bemóis ao invés de sustenidos" + +#: src/gui/settings.cpp:3400 +msgid "Use German notation" +msgstr "Usar notação alemã" + +#: src/gui/settings.cpp:3408 +msgid "Channel style:" +msgstr "Estilo de vanal:" + +#: src/gui/settings.cpp:3410 +msgid "Classic##CHS0" +msgstr "Clássico##CHS0" + +#: src/gui/settings.cpp:3414 +msgid "Line##CHS1" +msgstr "Linha##CHS1" + +#: src/gui/settings.cpp:3418 +msgid "Round##CHS2" +msgstr "Redondo##CHS2" + +#: src/gui/settings.cpp:3422 +msgid "Split button##CHS3" +msgstr "Botão dividido##CHS3" + +#: src/gui/settings.cpp:3426 +msgid "Square border##CH42" +msgstr "" + +#: src/gui/settings.cpp:3430 +msgid "Round border##CHS5" +msgstr "Borda arredondada##CHS5" + +#: src/gui/settings.cpp:3436 +msgid "Channel volume bar:" +msgstr "Barra de volume do canal:" + +#: src/gui/settings.cpp:3438 +msgid "None##CHV0" +msgstr "" + +#: src/gui/settings.cpp:3442 +msgid "Simple##CHV1" +msgstr "Simples##CHV1" + +#: src/gui/settings.cpp:3446 +msgid "Stereo##CHV2" +msgstr "Estéreo##CHV2" + +#: src/gui/settings.cpp:3450 +msgid "Real##CHV3" +msgstr "Real##CHV3" + +#: src/gui/settings.cpp:3454 +msgid "Real (stereo)##CHV4" +msgstr "Real (estéreo)##CHV4" + +#: src/gui/settings.cpp:3460 +msgid "Channel feedback style:" +msgstr "Estilo de feedback do canal:" + +#: src/gui/settings.cpp:3462 +msgid "Off##CHF0" +msgstr "Desativado##CHF0" + +#: src/gui/settings.cpp:3466 +msgid "Note##CHF1" +msgstr "Nota##CHF1" + +#: src/gui/settings.cpp:3470 +msgid "Volume##CHF2" +msgstr "Volume##CHF2" + +#: src/gui/settings.cpp:3474 +msgid "Active##CHF3" +msgstr "Ativo##CHF3" + +#: src/gui/settings.cpp:3480 +msgid "Channel font:" +msgstr "Fonte do canal:" + +#: src/gui/settings.cpp:3482 +msgid "Regular##CHFont0" +msgstr "Regular##CHFont0" + +#: src/gui/settings.cpp:3486 +msgid "Monospace##CHFont1" +msgstr "Monoespaçada##CHFont1" + +#: src/gui/settings.cpp:3493 +msgid "Center channel name" +msgstr "Centralizar nome do canal" + +#: src/gui/settings.cpp:3498 +msgid "Channel colors:" +msgstr "Cores dos canais:" + +#: src/gui/settings.cpp:3500 +msgid "Single##CHC0" +msgstr "Única##CHC0" + +#: src/gui/settings.cpp:3504 +msgid "Channel type##CHC1" +msgstr "Tipo de canal##CHC1" + +#: src/gui/settings.cpp:3508 +msgid "Instrument type##CHC2" +msgstr "Tipo de instrumento##CHC2" + +#: src/gui/settings.cpp:3514 +msgid "Channel name colors:" +msgstr "Cores dos nomes dos canais:" + +#: src/gui/settings.cpp:3516 +msgid "Single##CTC0" +msgstr "Única##CTC0" + +#: src/gui/settings.cpp:3520 +msgid "Channel type##CTC1" +msgstr "Tipo de canal##CTC1" + +#: src/gui/settings.cpp:3524 +msgid "Instrument type##CTC2" +msgstr "Tipo de instrumento##CTC2" + +#: src/gui/settings.cpp:3533 +msgid "Unified instrument/wavetable/sample list" +msgstr "Lista unificada de instrumentos/wavetables/samples" + +#: src/gui/settings.cpp:3543 +msgid "Horizontal instrument list" +msgstr "Lista de instrumentos horizontal" + +#: src/gui/settings.cpp:3549 +msgid "Instrument list icon style:" +msgstr "Estilo de ícone da lista de instrumentos:" + +#: src/gui/settings.cpp:3551 +msgid "None##iis0" +msgstr "Nenhum##iis0" + +#: src/gui/settings.cpp:3555 +msgid "Graphical icons##iis1" +msgstr "Ícones gráficos##iis1" + +#: src/gui/settings.cpp:3559 +msgid "Letter icons##iis2" +msgstr "Ícones de letras##iis2" + +#: src/gui/settings.cpp:3566 +msgid "Colorize instrument editor using instrument type" +msgstr "Colorizar editor de instrumentos utilizando tipo de instrumento" + +#: src/gui/settings.cpp:3572 src/gui/settings.cpp:4014 +msgid "Macro Editor" +msgstr "Editor de Macro" + +#: src/gui/settings.cpp:3573 +msgid "Macro editor layout:" +msgstr "Leiaute do editor de macro:" + +#: src/gui/settings.cpp:3575 +msgid "Unified##mel0" +msgstr "Unificado##mel0" + +#: src/gui/settings.cpp:3585 +msgid "Grid##mel2" +msgstr "Grade##mel2" + +#: src/gui/settings.cpp:3589 +msgid "Single (with list)##mel3" +msgstr "Único (com lista)##mel3" + +#: src/gui/settings.cpp:3602 +msgid "Use classic macro editor vertical slider" +msgstr "Utilizar slider vertical clássico do editor de macro" + +#: src/gui/settings.cpp:3608 +msgid "Wave Editor" +msgstr "Editor de wavetable" + +#: src/gui/settings.cpp:3610 +msgid "Use compact wave editor" +msgstr "Utilizar editor de wavetable compacto" + +#: src/gui/settings.cpp:3616 src/gui/settings.cpp:3991 +msgid "FM Editor" +msgstr "Editor de FM" + +#: src/gui/settings.cpp:3617 +msgid "FM parameter names:" +msgstr "Nomes dos parâmetros FM:" + +#: src/gui/settings.cpp:3619 +msgid "Friendly##fmn0" +msgstr "Amigáveis##fmn0" + +#: src/gui/settings.cpp:3623 +msgid "Technical##fmn1" +msgstr "Técnicos##fmn1" + +#: src/gui/settings.cpp:3627 +msgid "Technical (alternate)##fmn2" +msgstr "Técnicos (alternativos)##fmn2" + +#: src/gui/settings.cpp:3634 +msgid "Use standard OPL waveform names" +msgstr "Utilizar nomes padrão de formas de onda OPL" + +#: src/gui/settings.cpp:3639 +msgid "FM parameter editor layout:" +msgstr "Leiaute do editor de parâmetros FM:" + +#: src/gui/settings.cpp:3641 +msgid "Modern##fml0" +msgstr "Moderno##fml0" + +#: src/gui/settings.cpp:3645 +msgid "Compact (2x2, classic)##fml1" +msgstr "Compacto (2x2, clássico)##fml1" + +#: src/gui/settings.cpp:3649 +msgid "Compact (1x4)##fml2" +msgstr "Compacto (1x4)##fml2" + +#: src/gui/settings.cpp:3653 +msgid "Compact (4x1)##fml3" +msgstr "Compacto (4x1)##fml3" + +#: src/gui/settings.cpp:3657 +msgid "Alternate (2x2)##fml4" +msgstr "Alternativo (2x2)##fml4" + +#: src/gui/settings.cpp:3661 +msgid "Alternate (1x4)##fml5" +msgstr "Alternativo (1x4)##fml5" + +#: src/gui/settings.cpp:3665 +msgid "Alternate (4x1)##fml5" +msgstr "" + +#: src/gui/settings.cpp:3671 +msgid "Position of Sustain in FM editor:" +msgstr "Posição do Nível de Sustentação no editor de FM:" + +#: src/gui/settings.cpp:3673 +msgid "Between Decay and Sustain Rate##susp0" +msgstr "" + +#: src/gui/settings.cpp:3677 +msgid "After Release Rate##susp1" +msgstr "" + +#: src/gui/settings.cpp:3684 +msgid "Use separate colors for carriers/modulators in FM editor" +msgstr "Utilizar cores separadas para portadoras/moduladoras no editor FM" + +#: src/gui/settings.cpp:3690 +msgid "Unsigned FM detune values" +msgstr "Valores de desafinação FM sem sinal (unsigned)" + +#: src/gui/settings.cpp:3697 +msgid "Chip memory usage unit:" +msgstr "Unidade de uso de memória dos chips:" + +#: src/gui/settings.cpp:3699 +msgid "Bytes##MUU0" +msgstr "Bytes##MUU0" + +#: src/gui/settings.cpp:3703 +msgid "Kilobytes##MUU1" +msgstr "Kilobytes##MUU1" + +#: src/gui/settings.cpp:3712 +msgid "Rounded corners" +msgstr "Cantos arredondados" + +#: src/gui/settings.cpp:3718 src/gui/settings.cpp:3896 +#: src/gui/settings.cpp:3938 +msgid "Border" +msgstr "Borda" + +#: src/gui/settings.cpp:3730 +msgid "Anti-aliased" +msgstr "Suavizado" + +#: src/gui/settings.cpp:3736 +msgid "Fill entire window" +msgstr "Preencher toda a janela" + +#: src/gui/settings.cpp:3742 +msgid "Waveform goes out of bounds" +msgstr "Forma de onda ultrapassa as bordas" + +#: src/gui/settings.cpp:3754 +msgid "Windows" +msgstr "Janelas" + +#: src/gui/settings.cpp:3756 +msgid "Rounded window corners" +msgstr "Cantos das janelas arredondados" + +#: src/gui/settings.cpp:3762 +msgid "Rounded buttons" +msgstr "Botões arredondados" + +#: src/gui/settings.cpp:3768 +msgid "Rounded menu corners" +msgstr "Cantos de menu arredondados" + +#: src/gui/settings.cpp:3774 +msgid "Rounded tabs" +msgstr "Abas arredondadas" + +#: src/gui/settings.cpp:3780 +msgid "Rounded scrollbars" +msgstr "Barras de rolagem arredondadas" + +#: src/gui/settings.cpp:3786 +msgid "Borders around widgets" +msgstr "Bordas em volta dos widgets" + +#: src/gui/settings.cpp:3795 +msgid "Color scheme" +msgstr "Esquema de cores" + +#: src/gui/settings.cpp:3805 +msgid "Are you sure you want to reset the color scheme?" +msgstr "Tem certeza de que quer redefinir o esquema de cores?" + +#: src/gui/settings.cpp:3808 +msgid "Guru mode" +msgstr "" + +#: src/gui/settings.cpp:3815 src/gui/settings.cpp:3845 +msgid "Frame shading" +msgstr "Sombreamento de quadro" + +#: src/gui/settings.cpp:3821 +msgid "Color scheme type:" +msgstr "" + +#: src/gui/settings.cpp:3823 +msgid "Dark##gcb0" +msgstr "" + +#: src/gui/settings.cpp:3828 +msgid "Light##gcb1" +msgstr "" + +#: src/gui/settings.cpp:3835 +msgid "Accent colors:" +msgstr "" + +#: src/gui/settings.cpp:3837 +msgid "Primary" +msgstr "" + +#: src/gui/settings.cpp:3838 +msgid "Secondary" +msgstr "" + +#: src/gui/settings.cpp:3852 +msgid "Button" +msgstr "" + +#: src/gui/settings.cpp:3853 +msgid "Button (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3854 +msgid "Button (active)" +msgstr "" + +#: src/gui/settings.cpp:3855 +msgid "Tab" +msgstr "" + +#: src/gui/settings.cpp:3856 +msgid "Tab (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3857 +msgid "Tab (active)" +msgstr "" + +#: src/gui/settings.cpp:3858 +msgid "Tab (unfocused)" +msgstr "" + +#: src/gui/settings.cpp:3859 +msgid "Tab (unfocused and active)" +msgstr "" + +#: src/gui/settings.cpp:3860 +msgid "ImGui header" +msgstr "" + +#: src/gui/settings.cpp:3861 +msgid "ImGui header (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3862 +msgid "ImGui header (active)" +msgstr "" + +#: src/gui/settings.cpp:3863 +msgid "Resize grip" +msgstr "" + +#: src/gui/settings.cpp:3864 +msgid "Resize grip (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3865 +msgid "Resize grip (active)" +msgstr "" + +#: src/gui/settings.cpp:3866 +msgid "Widget background" +msgstr "" + +#: src/gui/settings.cpp:3867 +msgid "Widget background (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3868 +msgid "Widget background (active)" +msgstr "" + +#: src/gui/settings.cpp:3869 +msgid "Slider grab" +msgstr "" + +#: src/gui/settings.cpp:3870 +msgid "Slider grab (active)" +msgstr "" + +#: src/gui/settings.cpp:3871 +msgid "Title background (active)" +msgstr "" + +#: src/gui/settings.cpp:3872 +msgid "Checkbox/radio button mark" +msgstr "" + +#: src/gui/settings.cpp:3873 +msgid "Text selection" +msgstr "" + +#: src/gui/settings.cpp:3874 +msgid "Line plot" +msgstr "" + +#: src/gui/settings.cpp:3875 +msgid "Line plot (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3876 +msgid "Histogram plot" +msgstr "" + +#: src/gui/settings.cpp:3877 +msgid "Histogram plot (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3878 +msgid "Table row (even)" +msgstr "" + +#: src/gui/settings.cpp:3879 +msgid "Table row (odd)" +msgstr "" + +#: src/gui/settings.cpp:3884 +msgid "Interface (other)" +msgstr "Interface (outros)" + +#: src/gui/settings.cpp:3886 +msgid "Window background" +msgstr "" + +#: src/gui/settings.cpp:3887 +msgid "Sub-window background" +msgstr "" + +#: src/gui/settings.cpp:3888 +msgid "Pop-up background" +msgstr "" + +#: src/gui/settings.cpp:3889 +msgid "Modal backdrop" +msgstr "" + +#: src/gui/settings.cpp:3890 +msgid "Header" +msgstr "" + +#: src/gui/settings.cpp:3892 +msgid "Text (disabled)" +msgstr "" + +#: src/gui/settings.cpp:3893 +msgid "Title bar (inactive)" +msgstr "" + +#: src/gui/settings.cpp:3894 +msgid "Title bar (collapsed)" +msgstr "" + +#: src/gui/settings.cpp:3895 +msgid "Menu bar" +msgstr "" + +#: src/gui/settings.cpp:3897 +msgid "Border shadow" +msgstr "" + +#: src/gui/settings.cpp:3898 +msgid "Scroll bar" +msgstr "" + +#: src/gui/settings.cpp:3899 +msgid "Scroll bar (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3900 +msgid "Scroll bar (clicked)" +msgstr "" + +#: src/gui/settings.cpp:3901 +msgid "Scroll bar background" +msgstr "" + +#: src/gui/settings.cpp:3902 +msgid "Separator" +msgstr "" + +#: src/gui/settings.cpp:3903 +msgid "Separator (hover)" +msgstr "" + +#: src/gui/settings.cpp:3904 +msgid "Separator (active)" +msgstr "" + +#: src/gui/settings.cpp:3905 +msgid "Docking preview" +msgstr "" + +#: src/gui/settings.cpp:3906 +msgid "Docking empty" +msgstr "" + +#: src/gui/settings.cpp:3907 +msgid "Table header" +msgstr "" + +#: src/gui/settings.cpp:3908 +msgid "Table border (hard)" +msgstr "" + +#: src/gui/settings.cpp:3909 +msgid "Table border (soft)" +msgstr "" + +#: src/gui/settings.cpp:3910 +msgid "Drag and drop target" +msgstr "" + +#: src/gui/settings.cpp:3911 +msgid "Window switcher (highlight)" +msgstr "" + +#: src/gui/settings.cpp:3912 +msgid "Window switcher backdrop" +msgstr "" + +#: src/gui/settings.cpp:3915 src/gui/settings.cpp:4136 src/gui/guiConst.cpp:235 +msgid "Miscellaneous" +msgstr "Miscelânea" + +#: src/gui/settings.cpp:3916 +msgid "Toggle on" +msgstr "" + +#: src/gui/settings.cpp:3917 +msgid "Toggle off" +msgstr "" + +#: src/gui/settings.cpp:3918 +msgid "Playback status" +msgstr "" + +#: src/gui/settings.cpp:3919 +msgid "Destructive hint" +msgstr "" + +#: src/gui/settings.cpp:3920 +msgid "Warning hint" +msgstr "" + +#: src/gui/settings.cpp:3921 +msgid "Error hint" +msgstr "" + +#: src/gui/settings.cpp:3924 +msgid "File Picker (built-in)" +msgstr "Diálogo de arquivos (embutido)" + +#: src/gui/settings.cpp:3926 +msgid "Song (native)" +msgstr "" + +#: src/gui/settings.cpp:3927 +msgid "Song (import)" +msgstr "" + +#: src/gui/settings.cpp:3933 +msgid "Font" +msgstr "" + +#: src/gui/settings.cpp:3939 +msgid "Background (top-left)" +msgstr "" + +#: src/gui/settings.cpp:3940 +msgid "Background (top-right)" +msgstr "" + +#: src/gui/settings.cpp:3941 +msgid "Background (bottom-left)" +msgstr "" + +#: src/gui/settings.cpp:3942 +msgid "Background (bottom-right)" +msgstr "" + +#: src/gui/settings.cpp:3943 src/gui/settings.cpp:3998 +#: src/gui/settings.cpp:4166 src/gui/waveEdit.cpp:730 src/gui/insEdit.cpp:50 +#: src/gui/insEdit.cpp:4148 src/gui/insEdit.cpp:5812 src/gui/insEdit.cpp:6940 +#: src/gui/insEdit.cpp:6949 src/gui/insEdit.cpp:6963 src/gui/insEdit.cpp:6980 +#: src/gui/insEdit.cpp:6991 src/gui/insEdit.cpp:7004 src/gui/insEdit.cpp:7018 +#: src/gui/insEdit.cpp:7025 src/gui/insEdit.cpp:7035 src/gui/insEdit.cpp:7041 +#: src/gui/insEdit.cpp:7050 src/gui/insEdit.cpp:7074 src/gui/insEdit.cpp:7084 +#: src/gui/insEdit.cpp:7094 src/gui/insEdit.cpp:7101 src/gui/insEdit.cpp:7116 +#: src/gui/insEdit.cpp:7131 src/gui/insEdit.cpp:7151 src/gui/insEdit.cpp:7158 +#: src/gui/insEdit.cpp:7200 src/gui/insEdit.cpp:7211 src/gui/insEdit.cpp:7224 +#: src/gui/insEdit.cpp:7349 src/gui/insEdit.cpp:7425 src/gui/insEdit.cpp:7445 +#: src/gui/insEdit.cpp:7453 src/gui/insEdit.cpp:7473 +msgid "Waveform" +msgstr "Forma de onda" + +#: src/gui/settings.cpp:3944 +msgid "Waveform (clip)" +msgstr "" + +#: src/gui/settings.cpp:3945 +msgid "Reference" +msgstr "" + +#: src/gui/settings.cpp:3946 +msgid "Guide" +msgstr "" + +#: src/gui/settings.cpp:3948 +msgid "Wave (non-mono)" +msgstr "Onda (não-mono)" + +#: src/gui/settings.cpp:3949 +msgid "Waveform (1)" +msgstr "" + +#: src/gui/settings.cpp:3950 +msgid "Waveform (2)" +msgstr "" + +#: src/gui/settings.cpp:3951 +msgid "Waveform (3)" +msgstr "" + +#: src/gui/settings.cpp:3952 +msgid "Waveform (4)" +msgstr "" + +#: src/gui/settings.cpp:3953 +msgid "Waveform (5)" +msgstr "" + +#: src/gui/settings.cpp:3954 +msgid "Waveform (6)" +msgstr "" + +#: src/gui/settings.cpp:3955 +msgid "Waveform (7)" +msgstr "" + +#: src/gui/settings.cpp:3956 +msgid "Waveform (8)" +msgstr "" + +#: src/gui/settings.cpp:3957 +msgid "Waveform (9)" +msgstr "" + +#: src/gui/settings.cpp:3958 +msgid "Waveform (10)" +msgstr "" + +#: src/gui/settings.cpp:3959 +msgid "Waveform (11)" +msgstr "" + +#: src/gui/settings.cpp:3960 +msgid "Waveform (12)" +msgstr "" + +#: src/gui/settings.cpp:3961 +msgid "Waveform (13)" +msgstr "" + +#: src/gui/settings.cpp:3962 +msgid "Waveform (14)" +msgstr "" + +#: src/gui/settings.cpp:3963 +msgid "Waveform (15)" +msgstr "" + +#: src/gui/settings.cpp:3964 +msgid "Waveform (16)" +msgstr "" + +#: src/gui/settings.cpp:3972 +msgid "Clip" +msgstr "" + +#: src/gui/settings.cpp:3976 +msgid "Order number" +msgstr "" + +#: src/gui/settings.cpp:3977 +msgid "Playing order background" +msgstr "" + +#: src/gui/settings.cpp:3978 +msgid "Song loop" +msgstr "" + +#: src/gui/settings.cpp:3979 +msgid "Selected order" +msgstr "" + +#: src/gui/settings.cpp:3980 +msgid "Similar patterns" +msgstr "" + +#: src/gui/settings.cpp:3981 +msgid "Inactive patterns" +msgstr "" + +#: src/gui/settings.cpp:3984 +msgid "Envelope View" +msgstr "Visualização de envelope" + +#: src/gui/settings.cpp:3985 src/gui/insEdit.cpp:540 src/gui/insEdit.cpp:3547 +#: src/gui/insEdit.cpp:3548 src/gui/insEdit.cpp:4081 src/gui/insEdit.cpp:4151 +#: src/gui/insEdit.cpp:4790 src/gui/insEdit.cpp:5861 src/gui/insEdit.cpp:5862 +#: src/gui/insEdit.cpp:6487 src/gui/insEdit.cpp:6488 src/gui/insEdit.cpp:6555 +#: src/gui/insEdit.cpp:6556 src/gui/insEdit.cpp:6995 src/gui/insEdit.cpp:7009 +#: src/gui/insEdit.cpp:7029 src/gui/insEdit.cpp:7166 +#, c-format +msgid "Envelope" +msgstr "Envelope" + +#: src/gui/settings.cpp:3986 +msgid "Sustain guide" +msgstr "" + +#: src/gui/settings.cpp:3992 +msgid "Algorithm background" +msgstr "" + +#: src/gui/settings.cpp:3993 +msgid "Algorithm lines" +msgstr "" + +#: src/gui/settings.cpp:3994 +msgid "Modulator" +msgstr "" + +#: src/gui/settings.cpp:3995 +msgid "Carrier" +msgstr "" + +#: src/gui/settings.cpp:3997 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:4146 +msgid "SSG-EG" +msgstr "SSG-EG" + +#: src/gui/settings.cpp:4000 +msgid "" +"(the following colors only apply when \"Use separate colors for carriers/" +"modulators in FM editor\" is on!)" +msgstr "" + +#: src/gui/settings.cpp:4002 +msgid "Mod. accent (primary)" +msgstr "" + +#: src/gui/settings.cpp:4003 +msgid "Mod. accent (secondary)" +msgstr "" + +#: src/gui/settings.cpp:4004 +msgid "Mod. border" +msgstr "" + +#: src/gui/settings.cpp:4005 +msgid "Mod. border shadow" +msgstr "" + +#: src/gui/settings.cpp:4007 +msgid "Car. accent (primary)" +msgstr "" + +#: src/gui/settings.cpp:4008 +msgid "Car. accent (secondary)" +msgstr "" + +#: src/gui/settings.cpp:4009 +msgid "Car. border" +msgstr "" + +#: src/gui/settings.cpp:4010 +msgid "Car. border shadow" +msgstr "" + +#: src/gui/settings.cpp:4016 src/gui/guiConst.cpp:227 src/gui/insEdit.cpp:6924 +#: src/gui/insEdit.cpp:6931 src/gui/insEdit.cpp:6942 src/gui/insEdit.cpp:6950 +#: src/gui/insEdit.cpp:6971 src/gui/insEdit.cpp:6983 src/gui/insEdit.cpp:6993 +#: src/gui/insEdit.cpp:7006 src/gui/insEdit.cpp:7019 src/gui/insEdit.cpp:7028 +#: src/gui/insEdit.cpp:7036 src/gui/insEdit.cpp:7042 src/gui/insEdit.cpp:7052 +#: src/gui/insEdit.cpp:7061 src/gui/insEdit.cpp:7068 src/gui/insEdit.cpp:7075 +#: src/gui/insEdit.cpp:7087 src/gui/insEdit.cpp:7095 src/gui/insEdit.cpp:7102 +#: src/gui/insEdit.cpp:7109 src/gui/insEdit.cpp:7117 src/gui/insEdit.cpp:7123 +#: src/gui/insEdit.cpp:7132 src/gui/insEdit.cpp:7143 src/gui/insEdit.cpp:7153 +#: src/gui/insEdit.cpp:7161 src/gui/insEdit.cpp:7174 src/gui/insEdit.cpp:7182 +#: src/gui/insEdit.cpp:7193 src/gui/insEdit.cpp:7203 src/gui/insEdit.cpp:7213 +#: src/gui/insEdit.cpp:7227 src/gui/insEdit.cpp:7233 src/gui/insEdit.cpp:7241 +#: src/gui/insEdit.cpp:7248 src/gui/insEdit.cpp:7272 src/gui/insEdit.cpp:7280 +#: src/gui/insEdit.cpp:7289 src/gui/insEdit.cpp:7298 src/gui/insEdit.cpp:7306 +#: src/gui/insEdit.cpp:7323 src/gui/insEdit.cpp:7331 src/gui/insEdit.cpp:7337 +#: src/gui/insEdit.cpp:7344 src/gui/insEdit.cpp:7350 src/gui/insEdit.cpp:7355 +#: src/gui/insEdit.cpp:7361 src/gui/insEdit.cpp:7368 src/gui/insEdit.cpp:7376 +#: src/gui/insEdit.cpp:7385 src/gui/insEdit.cpp:7393 src/gui/insEdit.cpp:7401 +#: src/gui/insEdit.cpp:7413 src/gui/insEdit.cpp:7428 src/gui/insEdit.cpp:7439 +#: src/gui/insEdit.cpp:7447 src/gui/insEdit.cpp:7456 src/gui/insEdit.cpp:7466 +#: src/gui/insEdit.cpp:7474 +msgid "Pitch" +msgstr "Tom" + +#: src/gui/settings.cpp:4021 +msgid "Instrument Types" +msgstr "Tipos de Instrumento" + +#: src/gui/settings.cpp:4022 +msgid "FM (OPN)" +msgstr "" + +#: src/gui/settings.cpp:4023 +msgid "SN76489/Sega PSG" +msgstr "" + +#: src/gui/settings.cpp:4026 +msgid "C64" +msgstr "" + +#: src/gui/settings.cpp:4027 +msgid "Amiga/Generic Sample" +msgstr "" + +#: src/gui/settings.cpp:4028 +msgid "PC Engine" +msgstr "" + +#: src/gui/settings.cpp:4029 +msgid "AY-3-8910/SSG" +msgstr "" + +#: src/gui/settings.cpp:4030 +msgid "AY8930" +msgstr "" + +#: src/gui/settings.cpp:4031 +msgid "TIA" +msgstr "" + +#: src/gui/settings.cpp:4032 +msgid "SAA1099" +msgstr "" + +#: src/gui/settings.cpp:4033 +msgid "VIC" +msgstr "" + +#: src/gui/settings.cpp:4034 +msgid "PET" +msgstr "" + +#: src/gui/settings.cpp:4035 +msgid "VRC6" +msgstr "" + +#: src/gui/settings.cpp:4036 src/gui/guiConst.cpp:149 +msgid "VRC6 (saw)" +msgstr "VRC6 (dente-de-serra)" + +#: src/gui/settings.cpp:4037 +msgid "FM (OPLL)" +msgstr "" + +#: src/gui/settings.cpp:4038 +msgid "FM (OPL)" +msgstr "" + +#: src/gui/settings.cpp:4043 +msgid "FM (OPZ)" +msgstr "" + +#: src/gui/settings.cpp:4045 +msgid "PC Beeper" +msgstr "" + +#: src/gui/settings.cpp:4047 +msgid "Lynx" +msgstr "" + +#: src/gui/settings.cpp:4049 +msgid "X1-010" +msgstr "" + +#: src/gui/settings.cpp:4050 +msgid "ES5506" +msgstr "" + +#: src/gui/settings.cpp:4053 +msgid "Sound Unit" +msgstr "Unidade de Som" + +#: src/gui/settings.cpp:4055 +msgid "FM (OPL Drums)" +msgstr "" + +#: src/gui/settings.cpp:4056 +msgid "FM (OPM)" +msgstr "" + +#: src/gui/settings.cpp:4057 +msgid "NES" +msgstr "" + +#: src/gui/settings.cpp:4058 +msgid "MSM6258" +msgstr "" + +#: src/gui/settings.cpp:4059 +msgid "MSM6295" +msgstr "" + +#: src/gui/settings.cpp:4060 +msgid "ADPCM-A" +msgstr "" + +#: src/gui/settings.cpp:4062 +msgid "Sega PCM" +msgstr "" + +#: src/gui/settings.cpp:4063 +msgid "QSound" +msgstr "QSound" + +#: src/gui/settings.cpp:4064 +msgid "YMZ280B" +msgstr "" + +#: src/gui/settings.cpp:4065 +msgid "RF5C68" +msgstr "" + +#: src/gui/settings.cpp:4066 +msgid "MSM5232" +msgstr "" + +#: src/gui/settings.cpp:4067 +msgid "K007232" +msgstr "" + +#: src/gui/settings.cpp:4068 +msgid "GA20" +msgstr "" + +#: src/gui/settings.cpp:4070 +msgid "SM8521" +msgstr "" + +#: src/gui/settings.cpp:4071 +msgid "PV-1000" +msgstr "" + +#: src/gui/settings.cpp:4072 +msgid "K053260" +msgstr "" + +#: src/gui/settings.cpp:4073 +msgid "TED" +msgstr "" + +#: src/gui/settings.cpp:4074 +msgid "C140" +msgstr "" + +#: src/gui/settings.cpp:4075 +msgid "C219" +msgstr "" + +#: src/gui/settings.cpp:4076 +msgid "ESFM" +msgstr "" + +#: src/gui/settings.cpp:4077 src/gui/guiConst.cpp:179 +msgid "PowerNoise (noise)" +msgstr "PowerNoise (ruído)" + +#: src/gui/settings.cpp:4078 src/gui/guiConst.cpp:180 +msgid "PowerNoise (slope)" +msgstr "PowerNoise (rampa)" + +#: src/gui/settings.cpp:4081 +msgid "GBA DMA" +msgstr "" + +#: src/gui/settings.cpp:4082 +msgid "GBA MinMod" +msgstr "" + +#: src/gui/settings.cpp:4085 +msgid "Other/Unknown" +msgstr "" + +#: src/gui/settings.cpp:4089 +msgid "Single color (background)" +msgstr "" + +#: src/gui/settings.cpp:4090 +msgid "Single color (text)" +msgstr "" + +#: src/gui/settings.cpp:4091 src/gui/guiConst.cpp:1393 src/gui/waveEdit.cpp:668 +msgid "FM" +msgstr "" + +#: src/gui/settings.cpp:4096 +msgid "FM operator" +msgstr "" + +#: src/gui/settings.cpp:4097 +msgid "Muted" +msgstr "" + +#: src/gui/settings.cpp:4101 +msgid "Playhead" +msgstr "" + +#: src/gui/settings.cpp:4102 +msgid "Editing" +msgstr "" + +#: src/gui/settings.cpp:4103 +msgid "Editing (will clone)" +msgstr "" + +#: src/gui/settings.cpp:4104 +msgid "Cursor" +msgstr "" + +#: src/gui/settings.cpp:4105 +msgid "Cursor (hovered)" +msgstr "" + +#: src/gui/settings.cpp:4106 +msgid "Cursor (clicked)" +msgstr "" + +#: src/gui/settings.cpp:4107 src/gui/settings.cpp:4172 +#: src/gui/findReplace.cpp:791 +msgid "Selection" +msgstr "Seleção" + +#: src/gui/settings.cpp:4108 +msgid "Selection (hovered)" +msgstr "" + +#: src/gui/settings.cpp:4109 +msgid "Selection (clicked)" +msgstr "" + +#: src/gui/settings.cpp:4110 +msgid "Highlight 1" +msgstr "" + +#: src/gui/settings.cpp:4111 +msgid "Highlight 2" +msgstr "" + +#: src/gui/settings.cpp:4112 +msgid "Row number" +msgstr "" + +#: src/gui/settings.cpp:4113 +msgid "Row number (highlight 1)" +msgstr "" + +#: src/gui/settings.cpp:4114 +msgid "Row number (highlight 2)" +msgstr "" + +#: src/gui/settings.cpp:4116 +msgid "Note (highlight 1)" +msgstr "" + +#: src/gui/settings.cpp:4117 +msgid "Note (highlight 2)" +msgstr "" + +#: src/gui/settings.cpp:4118 +msgid "Blank" +msgstr "" + +#: src/gui/settings.cpp:4119 +msgid "Blank (highlight 1)" +msgstr "" + +#: src/gui/settings.cpp:4120 +msgid "Blank (highlight 2)" +msgstr "" + +#: src/gui/settings.cpp:4122 +msgid "Instrument (invalid type)" +msgstr "" + +#: src/gui/settings.cpp:4123 +msgid "Instrument (out of range)" +msgstr "" + +#: src/gui/settings.cpp:4124 +msgid "Volume (0%)" +msgstr "" + +#: src/gui/settings.cpp:4125 +msgid "Volume (50%)" +msgstr "" + +#: src/gui/settings.cpp:4126 +msgid "Volume (100%)" +msgstr "" + +#: src/gui/settings.cpp:4128 +msgid "Pitch effect" +msgstr "" + +#: src/gui/settings.cpp:4129 +msgid "Volume effect" +msgstr "" + +#: src/gui/settings.cpp:4130 +msgid "Panning effect" +msgstr "" + +#: src/gui/settings.cpp:4131 +msgid "Song effect" +msgstr "" + +#: src/gui/settings.cpp:4132 +msgid "Time effect" +msgstr "" + +#: src/gui/settings.cpp:4133 +msgid "Speed effect" +msgstr "" + +#: src/gui/settings.cpp:4134 +msgid "Primary specific effect" +msgstr "" + +#: src/gui/settings.cpp:4135 +msgid "Secondary specific effect" +msgstr "" + +#: src/gui/settings.cpp:4137 +msgid "External command output" +msgstr "" + +#: src/gui/settings.cpp:4138 +msgid "Status: off/disabled" +msgstr "" + +#: src/gui/settings.cpp:4139 +msgid "Status: off + macro rel" +msgstr "" + +#: src/gui/settings.cpp:4140 +msgid "Status: on + macro rel" +msgstr "" + +#: src/gui/settings.cpp:4141 +msgid "Status: on" +msgstr "" + +#: src/gui/settings.cpp:4142 +msgid "Status: volume" +msgstr "" + +#: src/gui/settings.cpp:4143 +msgid "Status: pitch" +msgstr "" + +#: src/gui/settings.cpp:4144 +msgid "Status: panning" +msgstr "" + +#: src/gui/settings.cpp:4145 +msgid "Status: chip (primary)" +msgstr "" + +#: src/gui/settings.cpp:4146 +msgid "Status: chip (secondary)" +msgstr "" + +#: src/gui/settings.cpp:4147 +msgid "Status: mixing" +msgstr "" + +#: src/gui/settings.cpp:4148 +msgid "Status: DSP effect" +msgstr "" + +#: src/gui/settings.cpp:4149 +msgid "Status: note altering" +msgstr "" + +#: src/gui/settings.cpp:4150 +msgid "Status: misc color 1" +msgstr "" + +#: src/gui/settings.cpp:4151 +msgid "Status: misc color 2" +msgstr "" + +#: src/gui/settings.cpp:4152 +msgid "Status: misc color 3" +msgstr "" + +#: src/gui/settings.cpp:4153 +msgid "Status: attack" +msgstr "" + +#: src/gui/settings.cpp:4154 +msgid "Status: decay" +msgstr "" + +#: src/gui/settings.cpp:4155 +msgid "Status: sustain" +msgstr "" + +#: src/gui/settings.cpp:4156 +msgid "Status: release" +msgstr "" + +#: src/gui/settings.cpp:4157 +msgid "Status: decrease linear" +msgstr "" + +#: src/gui/settings.cpp:4158 +msgid "Status: decrease exp" +msgstr "" + +#: src/gui/settings.cpp:4159 +msgid "Status: increase" +msgstr "" + +#: src/gui/settings.cpp:4160 +msgid "Status: bent" +msgstr "" + +#: src/gui/settings.cpp:4161 +msgid "Status: direct" +msgstr "" + +#: src/gui/settings.cpp:4164 src/gui/guiConst.cpp:586 src/gui/sampleEdit.cpp:96 +msgid "Sample Editor" +msgstr "Editor de Sample" + +#: src/gui/settings.cpp:4167 +msgid "Time background" +msgstr "" + +#: src/gui/settings.cpp:4168 +msgid "Time text" +msgstr "" + +#: src/gui/settings.cpp:4169 +msgid "Loop region" +msgstr "" + +#: src/gui/settings.cpp:4170 +msgid "Center guide" +msgstr "" + +#: src/gui/settings.cpp:4171 +msgid "Grid" +msgstr "" + +#: src/gui/settings.cpp:4173 +msgid "Selection points" +msgstr "" + +#: src/gui/settings.cpp:4174 +msgid "Preview needle" +msgstr "" + +#: src/gui/settings.cpp:4175 +msgid "Playing needles" +msgstr "" + +#: src/gui/settings.cpp:4176 +msgid "Loop markers" +msgstr "" + +#: src/gui/settings.cpp:4177 +msgid "Chip select: disabled" +msgstr "" + +#: src/gui/settings.cpp:4178 +msgid "Chip select: enabled" +msgstr "" + +#: src/gui/settings.cpp:4179 +msgid "Chip select: enabled (failure)" +msgstr "" + +#: src/gui/settings.cpp:4182 src/gui/guiConst.cpp:602 src/gui/patManager.cpp:35 +msgid "Pattern Manager" +msgstr "Gerenciador de Sequências" + +#: src/gui/settings.cpp:4183 +msgid "Unallocated" +msgstr "" + +#: src/gui/settings.cpp:4184 +msgid "Unused" +msgstr "" + +#: src/gui/settings.cpp:4185 +msgid "Used" +msgstr "" + +#: src/gui/settings.cpp:4186 +msgid "Overused" +msgstr "" + +#: src/gui/settings.cpp:4187 +msgid "Really overused" +msgstr "" + +#: src/gui/settings.cpp:4188 +msgid "Combo Breaker" +msgstr "" + +#: src/gui/settings.cpp:4191 src/gui/guiConst.cpp:599 src/gui/piano.cpp:63 +msgid "Piano" +msgstr "Piano" + +#: src/gui/settings.cpp:4193 +msgid "Upper key" +msgstr "" + +#: src/gui/settings.cpp:4194 +msgid "Upper key (feedback)" +msgstr "" + +#: src/gui/settings.cpp:4195 +msgid "Upper key (pressed)" +msgstr "" + +#: src/gui/settings.cpp:4196 +msgid "Lower key" +msgstr "" + +#: src/gui/settings.cpp:4197 +msgid "Lower key (feedback)" +msgstr "" + +#: src/gui/settings.cpp:4198 +msgid "Lower key (pressed)" +msgstr "" + +#: src/gui/settings.cpp:4201 src/gui/clock.cpp:31 src/gui/guiConst.cpp:610 +msgid "Clock" +msgstr "Clock" + +#: src/gui/settings.cpp:4202 +msgid "Clock text" +msgstr "" + +#: src/gui/settings.cpp:4203 +msgid "Beat (off)" +msgstr "" + +#: src/gui/settings.cpp:4204 +msgid "Beat (on)" +msgstr "" + +#: src/gui/settings.cpp:4209 +msgid "PortSet" +msgstr "" + +#: src/gui/settings.cpp:4210 +msgid "Port" +msgstr "" + +#: src/gui/settings.cpp:4211 +msgid "Port (hidden/unavailable)" +msgstr "" + +#: src/gui/settings.cpp:4212 +msgid "Connection (selected)" +msgstr "" + +#: src/gui/settings.cpp:4213 +msgid "Connection (other)" +msgstr "" + +#: src/gui/settings.cpp:4219 +msgid "Waveform data" +msgstr "" + +#: src/gui/settings.cpp:4222 +msgid "Reserved" +msgstr "" + +#: src/gui/settings.cpp:4224 +msgid "Sample (alternate 1)" +msgstr "" + +#: src/gui/settings.cpp:4225 +msgid "Sample (alternate 2)" +msgstr "" + +#: src/gui/settings.cpp:4226 +msgid "Sample (alternate 3)" +msgstr "" + +#: src/gui/settings.cpp:4227 +msgid "Wave RAM" +msgstr "RAM de Onda" + +#: src/gui/settings.cpp:4228 +msgid "Wavetable (static)" +msgstr "" + +#: src/gui/settings.cpp:4229 +msgid "Echo buffer" +msgstr "" + +#: src/gui/settings.cpp:4230 +msgid "Namco 163 load pos" +msgstr "" + +#: src/gui/settings.cpp:4231 +msgid "Namco 163 play pos" +msgstr "" + +#: src/gui/settings.cpp:4232 +msgid "Sample (bank 0)" +msgstr "" + +#: src/gui/settings.cpp:4233 +msgid "Sample (bank 1)" +msgstr "" + +#: src/gui/settings.cpp:4234 +msgid "Sample (bank 2)" +msgstr "" + +#: src/gui/settings.cpp:4235 +msgid "Sample (bank 3)" +msgstr "" + +#: src/gui/settings.cpp:4236 +msgid "Sample (bank 4)" +msgstr "" + +#: src/gui/settings.cpp:4237 +msgid "Sample (bank 5)" +msgstr "" + +#: src/gui/settings.cpp:4238 +msgid "Sample (bank 6)" +msgstr "" + +#: src/gui/settings.cpp:4239 +msgid "Sample (bank 7)" +msgstr "" + +#: src/gui/settings.cpp:4244 +msgid "Log level: Error" +msgstr "" + +#: src/gui/settings.cpp:4245 +msgid "Log level: Warning" +msgstr "" + +#: src/gui/settings.cpp:4246 +msgid "Log level: Info" +msgstr "" + +#: src/gui/settings.cpp:4247 +msgid "Log level: Debug" +msgstr "" + +#: src/gui/settings.cpp:4248 +msgid "Log level: Trace/Verbose" +msgstr "" + +#: src/gui/settings.cpp:4253 +msgid "Backup" +msgstr "" + +#: src/gui/settings.cpp:4258 +msgid "Enable backup system" +msgstr "" + +#: src/gui/settings.cpp:4263 +msgid "Interval (in seconds)" +msgstr "" + +#: src/gui/settings.cpp:4268 +msgid "Backups per file" +msgstr "" + +#: src/gui/settings.cpp:4274 +msgid "Backup Management" +msgstr "" + +#: src/gui/settings.cpp:4278 +msgid "Purge before:" +msgstr "" + +#: src/gui/settings.cpp:4352 +msgid "Go##PDate" +msgstr "" + +#: src/gui/settings.cpp:4359 +#, c-format +msgid "%PB used" +msgstr "" + +#: src/gui/settings.cpp:4361 +#, c-format +msgid "%TB used" +msgstr "" + +#: src/gui/settings.cpp:4363 +#, c-format +msgid "%GB used" +msgstr "" + +#: src/gui/settings.cpp:4365 +#, c-format +msgid "%MB used" +msgstr "" + +#: src/gui/settings.cpp:4367 +#, c-format +msgid "%KB used" +msgstr "" + +#: src/gui/settings.cpp:4369 +#, c-format +msgid "% bytes used" +msgstr "" + +#: src/gui/settings.cpp:4374 +msgid "Refresh" +msgstr "" + +#: src/gui/settings.cpp:4378 +msgid "Delete all" +msgstr "" + +#: src/gui/settings.cpp:4384 src/gui/settings.cpp:6688 +msgid "Size" +msgstr "" + +#: src/gui/settings.cpp:4385 +msgid "Latest" +msgstr "" + +#: src/gui/settings.cpp:4395 +#, c-format +msgid "%P" +msgstr "" + +#: src/gui/settings.cpp:4397 +#, c-format +msgid "%T" +msgstr "" + +#: src/gui/settings.cpp:4399 +#, c-format +msgid "%G" +msgstr "" + +#: src/gui/settings.cpp:4401 +#, c-format +msgid "%M" +msgstr "" + +#: src/gui/settings.cpp:4403 +#, c-format +msgid "%K" +msgstr "" + +#: src/gui/settings.cpp:4405 +#, c-format +msgid "%" +msgstr "" + +#: src/gui/settings.cpp:4529 +msgid "Cheat Codes" +msgstr "" + +#: src/gui/settings.cpp:4531 +msgid "Enter code:" +msgstr "" + +#: src/gui/settings.cpp:4533 +msgid "Submit" +msgstr "" + +#: src/gui/settings.cpp:4537 +msgid "invalid code" +msgstr "" + +#: src/gui/settings.cpp:4547 +msgid "toggled alternate UI" +msgstr "" + +#: src/gui/settings.cpp:4551 +msgid ":smile: :star_struck: :sunglasses: :ok_hand:" +msgstr "" + +#: src/gui/settings.cpp:4555 +msgid "enabled all instrument types" +msgstr "" + +#: src/gui/settings.cpp:4559 +msgid "OK, if I bring your Partial pitch linearity will you stop bothering me?" +msgstr "" + +#: src/gui/settings.cpp:4563 +msgid "unlocked audio multi-threading options!" +msgstr "" + +#: src/gui/settings.cpp:4567 +msgid "enabled \"comfortable\" mode" +msgstr "" + +#: src/gui/settings.cpp:4585 +msgid "OK##SettingsOK" +msgstr "OK##SettingsOK" + +#: src/gui/settings.cpp:4591 +msgid "Cancel##SettingsCancel" +msgstr "Cancelar##SettingsCancel" + +#: src/gui/settings.cpp:4599 +msgid "Apply##SettingsApply" +msgstr "Aplicar##SettingsApply" + +#: src/gui/settings.cpp:5673 +msgid "could not initialize audio!" +msgstr "" + +#: src/gui/settings.cpp:5683 src/gui/gui.cpp:4067 src/gui/gui.cpp:6662 +#: src/gui/gui.cpp:7088 +msgid "error while loading fonts! please check your settings." +msgstr "erro ao carregar fontes! por favor cheque suas configurações." + +#: src/gui/settings.cpp:5862 +#, c-format +msgid "error while loading config! (%s)" +msgstr "" + +#: src/gui/settings.cpp:6675 +msgid "[Dir]" +msgstr "" + +#: src/gui/settings.cpp:6676 +msgid "[Link]" +msgstr "" + +#: src/gui/settings.cpp:6677 +#, fuzzy +msgid "[File]" +msgstr "Arquivo" + +#: src/gui/settings.cpp:6678 +#, fuzzy +msgid "Name:" +msgstr "Nome" + +#: src/gui/settings.cpp:6679 +msgid "Path:" +msgstr "" + +#: src/gui/settings.cpp:6680 +#, fuzzy +msgid "Reset search" +msgstr "Redefinir padrões" + +#: src/gui/settings.cpp:6681 +#, fuzzy +msgid "Drives" +msgstr "Driver" + +#: src/gui/settings.cpp:6682 +msgid "" +"Edit path\n" +"You can also right click on path buttons" +msgstr "" + +#: src/gui/settings.cpp:6683 +#, fuzzy +msgid "Go to home directory" +msgstr "Diretório de Sample" + +#: src/gui/settings.cpp:6684 +#, fuzzy +msgid "Go to parent directory" +msgstr "abrir diretório de recursos embutidos" + +#: src/gui/settings.cpp:6685 +#, fuzzy +msgid "Create Directory" +msgstr "Diretório de Sample" + +#: src/gui/settings.cpp:6686 +#, fuzzy +msgid "File name" +msgstr "nome da sample" + +#: src/gui/settings.cpp:6689 +msgid "Date" +msgstr "" + +#: src/gui/settings.cpp:6690 src/gui/gui.cpp:5510 src/gui/gui.cpp:5645 +#: src/gui/gui.cpp:5646 +msgid "Warning" +msgstr "" + +#: src/gui/settings.cpp:6691 +msgid "The file you selected already exists! Would you like to overwrite it?" +msgstr "" + +#: src/gui/settings.cpp:6692 src/gui/gui.cpp:5650 src/gui/gui.cpp:5674 +#: src/gui/gui.cpp:5698 src/gui/gui.cpp:5722 src/gui/gui.cpp:5746 +#: src/gui/gui.cpp:5770 src/gui/gui.cpp:5802 src/gui/gui.cpp:5818 +#: src/gui/gui.cpp:5829 src/gui/gui.cpp:5841 src/gui/gui.cpp:5995 +#: src/gui/gui.cpp:6017 src/gui/gui.cpp:6032 src/gui/gui.cpp:6043 +msgid "Yes" +msgstr "Sim" + +#: src/gui/settings.cpp:6693 src/gui/findReplace.cpp:828 src/gui/gui.cpp:5664 +#: src/gui/gui.cpp:5688 src/gui/gui.cpp:5712 src/gui/gui.cpp:5736 +#: src/gui/gui.cpp:5760 src/gui/gui.cpp:5788 src/gui/gui.cpp:5813 +#: src/gui/gui.cpp:5824 src/gui/gui.cpp:5836 src/gui/gui.cpp:5848 +#: src/gui/gui.cpp:6012 src/gui/gui.cpp:6027 src/gui/gui.cpp:6037 +#: src/gui/gui.cpp:6050 +msgid "No" +msgstr "Não" + +#: src/gui/settings.cpp:6694 +msgid "%Y/%m/%d %H:%M" +msgstr "" + +#: src/gui/orders.cpp:114 +msgid "Add new order" +msgstr "Adicionar nova ordem" + +#: src/gui/orders.cpp:125 src/gui/guiConst.cpp:794 +msgid "Remove order" +msgstr "Excluir ordem" + +#: src/gui/orders.cpp:137 +msgid "Duplicate order (right-click to deep clone)" +msgstr "Duplicar ordem (clique com o botão direito para um clone profundo)" + +#: src/gui/orders.cpp:146 src/gui/guiConst.cpp:795 +msgid "Move order up" +msgstr "Mover ordem para cima" + +#: src/gui/orders.cpp:155 src/gui/guiConst.cpp:796 +msgid "Move order down" +msgstr "Mover ordem para baixo" + +#: src/gui/orders.cpp:167 +msgid "Place copy of current order at end of song (right-click to deep clone)" +msgstr "" +"Adicionar cópia da ordem atual ao final da música (clique com o botão " +"direito para um clone profundo)" + +#: src/gui/orders.cpp:177 +msgid "Order change mode: entire row" +msgstr "Modo de mudança da ordem: linha inteira" + +#: src/gui/orders.cpp:179 +msgid "Order change mode: one" +msgstr "Modo de mudança da ordem: uma célula" + +#: src/gui/orders.cpp:205 +msgid "Order edit mode: Select and type (scroll vertically)" +msgstr "Modo de edição de ordem: selecionar e digitar (rolagem vertical)" + +#: src/gui/orders.cpp:207 +msgid "Order edit mode: Select and type (scroll horizontally)" +msgstr "Modo de edição de ordem: selecionar e digitar (rolagem horizontal)" + +#: src/gui/orders.cpp:209 +msgid "Order edit mode: Select and type (don't scroll)" +msgstr "Modo de edição de ordem: selecionar e digitar (não rolar)" + +#: src/gui/orders.cpp:211 +msgid "Order edit mode: Click to change" +msgstr "Modo de edição de ordem: clicar para mudar" + +#: src/gui/findReplace.cpp:29 +msgid "ignore" +msgstr "ignorar" + +#: src/gui/findReplace.cpp:30 +msgid "equals" +msgstr "é igual a" + +#: src/gui/findReplace.cpp:31 +msgid "not equal" +msgstr "é diferente de" + +#: src/gui/findReplace.cpp:32 +msgid "between" +msgstr "está entre" + +#: src/gui/findReplace.cpp:33 +msgid "not between" +msgstr "não está entre" + +#: src/gui/findReplace.cpp:34 +msgid "any" +msgstr "qualquer" + +#: src/gui/findReplace.cpp:35 src/gui/guiConst.cpp:217 +msgid "none" +msgstr "nenhuma" + +#: src/gui/findReplace.cpp:39 +msgid "set" +msgstr "definir" + +#: src/gui/findReplace.cpp:40 +msgid "add" +msgstr "somar" + +#: src/gui/findReplace.cpp:41 +msgid "add (overflow)" +msgstr "somar (com transbordo)" + +#: src/gui/findReplace.cpp:42 +msgid "scale %" +msgstr "escalonar %" + +#: src/gui/findReplace.cpp:512 src/gui/guiConst.cpp:609 +msgid "Find/Replace" +msgstr "Localizar/Substituir" + +#: src/gui/findReplace.cpp:520 src/gui/findReplace.cpp:850 +msgid "Find" +msgstr "Localizar" + +#: src/gui/findReplace.cpp:526 src/gui/findReplace.cpp:535 +msgid "order" +msgstr "ordem" + +#: src/gui/findReplace.cpp:527 src/gui/findReplace.cpp:537 +msgid "row" +msgstr "linha" + +#: src/gui/findReplace.cpp:539 src/gui/csPlayer.cpp:146 +msgid "channel" +msgstr "canal" + +#: src/gui/findReplace.cpp:541 +msgid "go" +msgstr "ir" + +#: src/gui/findReplace.cpp:585 +msgid "no matches found!" +msgstr "nenhum resultado encontrado!" + +#: src/gui/findReplace.cpp:587 +msgid "Back" +msgstr "Voltar" + +#: src/gui/findReplace.cpp:750 +msgid "Delete query" +msgstr "Excluir consulta" + +#: src/gui/findReplace.cpp:754 src/gui/findReplace.cpp:1037 +msgid "Add effect" +msgstr "Adicionar efeito" + +#: src/gui/findReplace.cpp:761 src/gui/findReplace.cpp:1044 +msgid "Remove effect" +msgstr "Remover efeito" + +#: src/gui/findReplace.cpp:786 +msgid "Search range:" +msgstr "Intervalo de pesquisa:" + +#: src/gui/findReplace.cpp:799 +msgid "Confine to channels" +msgstr "Confinar aos canais" + +#: src/gui/findReplace.cpp:803 src/gui/sampleEdit.cpp:1152 +msgid "From" +msgstr "De" + +#: src/gui/findReplace.cpp:814 src/gui/sampleEdit.cpp:1156 +msgid "To" +msgstr "Até" + +#: src/gui/findReplace.cpp:826 +msgid "Match effect position:" +msgstr "Correspondência com posição de efeitos:" + +#: src/gui/findReplace.cpp:832 +msgid "match effects regardless of position." +msgstr "corresponder com efeitos independente da posição." + +#: src/gui/findReplace.cpp:834 src/gui/compatFlags.cpp:288 +msgid "Lax" +msgstr "Relaxada" + +#: src/gui/findReplace.cpp:838 +msgid "match effects only if they appear in-order." +msgstr "corresponder com efeitos somente se eles aparecerem em ordem." + +#: src/gui/findReplace.cpp:840 src/gui/compatFlags.cpp:276 +msgid "Strict" +msgstr "Estrita" + +#: src/gui/findReplace.cpp:844 +msgid "match effects only if they appear exactly as specified." +msgstr "" +"corresponder com efeitos somente se eles aparecerem exatamente como " +"especificados." + +#: src/gui/findReplace.cpp:856 +msgid "Replace" +msgstr "Substituir" + +#: src/gui/findReplace.cpp:908 +msgid "INVALID" +msgstr "INVÁLIDO" + +#: src/gui/findReplace.cpp:1052 +msgid "Effect replace mode:" +msgstr "Modo de substituição de efeito:" + +#: src/gui/findReplace.cpp:1053 +msgid "Replace matches only" +msgstr "Substituir correspondências somente" + +#: src/gui/findReplace.cpp:1056 +msgid "Replace matches, then free spaces" +msgstr "Substituir correspondências, e então espaços livres" + +#: src/gui/findReplace.cpp:1059 +msgid "Clear effects" +msgstr "Limpar efeitos" + +#: src/gui/findReplace.cpp:1062 +msgid "Insert in free spaces" +msgstr "Inserir em espaços livres" + +#: src/gui/findReplace.cpp:1065 +msgid "Replace##QueryReplace" +msgstr "Substituir##QueryReplace" + +#: src/gui/about.cpp:26 +msgid "is proud to present" +msgstr "" + +#: src/gui/about.cpp:30 +msgid "the biggest multi-system chiptune tracker!" +msgstr "o maior tracker chiptune multi-sistema!" + +#: src/gui/about.cpp:31 +msgid "featuring DefleMask song compatibility." +msgstr "com compatibilidade para músicas do DefleMask." + +#: src/gui/about.cpp:33 +msgid "> CREDITS <" +msgstr "> CRÉDITOS <" + +#: src/gui/about.cpp:35 +msgid "-- program --" +msgstr "-- programa --" + +#: src/gui/about.cpp:37 +msgid "A M 4 N (intro tune)" +msgstr "A M 4 N (tema de introdução)" + +#: src/gui/about.cpp:52 +msgid "-- graphics/UI design --" +msgstr "-- gráficos/design de UI --" + +#: src/gui/about.cpp:59 +msgid "-- documentation --" +msgstr "-- documentação --" + +#: src/gui/about.cpp:69 +msgid "-- localization/translation team --" +msgstr "" + +#: src/gui/about.cpp:81 +msgid "-- demo songs --" +msgstr "-- músicas de demonstração --" + +#: src/gui/about.cpp:207 +msgid "-- additional feedback/fixes --" +msgstr "-- feedback/soluções adicionais --" + +#: src/gui/about.cpp:218 +msgid "-- Metal backend test team --" +msgstr "" + +#: src/gui/about.cpp:224 +msgid "-- DirectX 9 backend test team --" +msgstr "" + +#: src/gui/about.cpp:231 +msgid "powered by:" +msgstr "bibliotecas utilizadas:" + +#: src/gui/about.cpp:232 +msgid "Dear ImGui by Omar Cornut" +msgstr "Dear ImGui por Omar Cornut" + +#: src/gui/about.cpp:233 +msgid "SDL2 by Sam Lantinga" +msgstr "SDL2 por Sam Lantinga" + +#: src/gui/about.cpp:237 +msgid "zlib by Jean-loup Gailly" +msgstr "zlib por Jean-loup Gailly" + +#: src/gui/about.cpp:238 +msgid "and Mark Adler" +msgstr "e Mark Adler" + +#: src/gui/about.cpp:239 +msgid "libsndfile by Erik de Castro Lopo" +msgstr "libsndfile por Erik de Castro Lopo" + +#: src/gui/about.cpp:240 +msgid "Portable File Dialogs by Sam Hocevar" +msgstr "Portable File Dialogs por Sam Hocevar" + +#: src/gui/about.cpp:241 +msgid "Native File Dialog by Frogtoss Games" +msgstr "Native File Dialog por Frogtoss Games" + +#: src/gui/about.cpp:243 +msgid "Weak-JACK by x42" +msgstr "Weak-JACK por x42" + +#: src/gui/about.cpp:244 +msgid "RtMidi by Gary P. Scavone" +msgstr "RtMidi por Gary P. Scavone" + +#: src/gui/about.cpp:245 +msgid "FFTW by Matteo Frigo and Steven G. Johnson" +msgstr "FFTW por Matteo Frigo and Steven G. Johnson" + +#: src/gui/about.cpp:246 +msgid "backward-cpp by Google" +msgstr "backward-cpp da Google" + +#: src/gui/about.cpp:247 +msgid "adpcm by superctr" +msgstr "adpcm por superctr" + +#: src/gui/about.cpp:248 +msgid "adpcm-xq by David Bryant" +msgstr "adpcm-xq por David Bryant" + +#: src/gui/about.cpp:249 +msgid "Nuked-OPL3/OPLL/OPM/OPN2/PSG by nukeykt" +msgstr "Nuked-OPL3/OPLL/OPM/OPN2/PSG por nukeykt" + +#: src/gui/about.cpp:250 +msgid "YM3812-LLE, YMF262-LLE, YMF276-LLE and YM2608-LLE by nukeykt" +msgstr "" + +#: src/gui/about.cpp:251 +msgid "ESFMu (modified version) by Kagamiin~" +msgstr "ESFMu (versão modificada) por Kagamiin~" + +#: src/gui/about.cpp:252 +msgid "ymfm by Aaron Giles" +msgstr "ymfm por Aaron Giles" + +#: src/gui/about.cpp:253 +msgid "emu2413 by Digital Sound Antiques" +msgstr "" + +#: src/gui/about.cpp:254 +msgid "MAME SN76496 by Nicola Salmoria" +msgstr "MAME SN76496 por Nicola Salmoria" + +#: src/gui/about.cpp:255 +msgid "MAME AY-3-8910 by Couriersud" +msgstr "MAME AY-3-8910 por Couriersud" + +#: src/gui/about.cpp:256 +msgid "with AY8930 fixes by Eulous, cam900 and Grauw" +msgstr "com melhorias de AY8930 por Eulous, cam900 e Grauw" + +#: src/gui/about.cpp:257 +msgid "MAME SAA1099 by Juergen Buchmueller and Manuel Abadia" +msgstr "MAME SAA1099 por Juergen Buchmueller e Manuel Abadia" + +#: src/gui/about.cpp:258 +msgid "MAME Namco WSG by Nicola Salmoria and Aaron Giles" +msgstr "MAME Namco WSG por Nicola Salmoria e Aaron Giles" + +#: src/gui/about.cpp:259 +msgid "MAME RF5C68 core by Olivier Galibert and Aaron Giles" +msgstr "núcleo MAME RF5C68 por Olivier Galibert e Aaron Giles" + +#: src/gui/about.cpp:260 +msgid "MAME MSM5232 core by Jarek Burczynski and Hiromitsu Shioya" +msgstr "núcleo MAME MSM5232 core por Jarek Burczynski e Hiromitsu Shioya" + +#: src/gui/about.cpp:261 +msgid "MAME MSM6258 core by Barry Rodewald" +msgstr "núcleo MAME MSM6258 por Barry Rodewald" + +#: src/gui/about.cpp:262 +msgid "MAME YMZ280B core by Aaron Giles" +msgstr "núcleo MAME YMZ280B por Aaron Giles" + +#: src/gui/about.cpp:263 +msgid "MAME GA20 core by Acho A. Tang and R. Belmont" +msgstr "núcleo MAME GA20 por Acho A. Tang e R. Belmont" + +#: src/gui/about.cpp:264 +msgid "MAME SegaPCM core by Hiromitsu Shioya and Olivier Galibert" +msgstr "núcleo MAME SegaPCM por Hiromitsu Shioya e Olivier Galibert" + +#: src/gui/about.cpp:265 +msgid "SAASound by Dave Hooper and Simon Owen" +msgstr "Sand AASound por Dave Hooper e Simon Owen" + +#: src/gui/about.cpp:266 +msgid "SameBoy by Lior Halphon" +msgstr "SameBoy por Lior Halphon" + +#: src/gui/about.cpp:267 +msgid "Mednafen PCE, WonderSwan, T6W28 and Virtual Boy audio cores" +msgstr "núcleos de áudio Mednafen PCE, WonderSwan, T6W28 e Virtual Boy" + +#: src/gui/about.cpp:268 +msgid "SNES DSP core by Blargg" +msgstr "núcleo SNES DSP por Blargg" + +#: src/gui/about.cpp:269 +msgid "puNES (NES, MMC5 and FDS) by FHorse" +msgstr "puNES (NES, MMC5 e FDS) por FHorse" + +#: src/gui/about.cpp:270 +msgid "NSFPlay (NES and FDS) by Brad Smith and Brezza" +msgstr "NSFPlay (NES e FDS) por Brad Smith e Brezza" + +#: src/gui/about.cpp:271 +msgid "reSID by Dag Lem" +msgstr "reSID por Dag Lem" + +#: src/gui/about.cpp:272 +msgid "reSIDfp by Dag Lem, Antti Lankila" +msgstr "reSIDfp por Dag Lem, Antti Lankila" + +#: src/gui/about.cpp:273 +msgid "and Leandro Nini" +msgstr "e Leandro Nini" + +#: src/gui/about.cpp:274 +msgid "dSID by DefleMask Team based on jsSID" +msgstr "dSID pelo Time DefleMask baseado no jsSID" + +#: src/gui/about.cpp:275 +msgid "Stella by Stella Team" +msgstr "Stella pelo Time Stella" + +#: src/gui/about.cpp:276 +msgid "QSound emulator by superctr and Valley Bell" +msgstr "emulador QSound por superctr e Valley Bell" + +#: src/gui/about.cpp:277 +msgid "VICE VIC-20 sound core by Rami Rasanen and viznut" +msgstr "núcleo de som VICE VIC-20 por Rami Rasanen e viznut" + +#: src/gui/about.cpp:278 +msgid "VICE TED sound core by Andreas Boose, Tibor Biczo" +msgstr "núcleo de som VICE TED por Andreas Boose, Tibor Biczo" + +#: src/gui/about.cpp:279 +msgid "and Marco van den Heuvel" +msgstr "e Marco van den Heuvel" + +#: src/gui/about.cpp:280 +msgid "VERA sound core by Frank van den Hoef" +msgstr "núcleo de som VERA por Frank van den Hoef" + +#: src/gui/about.cpp:281 +msgid "mzpokeysnd POKEY emulator by Michael Borisov" +msgstr "emulador POKEY mzpokeysnd por Michael Borisov" + +#: src/gui/about.cpp:282 +msgid "ASAP POKEY emulator by Piotr Fusik" +msgstr "emulador POKEY ASAP por Piotr Fusik" + +#: src/gui/about.cpp:283 +msgid "ported by laoo to C++" +msgstr "traduzido para C++ por laoo" + +#: src/gui/about.cpp:284 +msgid "vgsound_emu (second version, modified version) by cam900" +msgstr "vgsound_emu (segunda versão, modificada) por cam900" + +#: src/gui/about.cpp:285 +msgid "SM8521 emulator (modified version) by cam900" +msgstr "emulador de SM8521 (versão modificada) by cam900" + +#: src/gui/about.cpp:286 +msgid "D65010G031 emulator (modified version) by cam900" +msgstr "emulador de D65010G031 (versão modificada) by cam900" + +#: src/gui/about.cpp:287 +msgid "Namco C140/C219 emulator (modified version) by cam900" +msgstr "emulador de Namco C140/C219 (versão modificada) by cam900" + +#: src/gui/about.cpp:288 +msgid "PowerNoise emulator by scratchminer" +msgstr "emulador PowerNoise por scratchminer" + +#: src/gui/about.cpp:289 +msgid "ep128emu by Istvan Varga" +msgstr "ep128emu por Istvan Varga" + +#: src/gui/about.cpp:290 +msgid "NDS sound emulator by cam900" +msgstr "emulador de áudio de NDS por cam900" + +#: src/gui/about.cpp:292 +msgid "greetings to:" +msgstr "saudações a:" + +#: src/gui/about.cpp:295 +msgid "all members of Deflers of Noice!" +msgstr "todos os membros de Deflers of Noice!" + +#: src/gui/about.cpp:301 +msgid "copyright © 2021-2024 tildearrow" +msgstr "copyright © 2021-2024 tildearrow" + +#: src/gui/about.cpp:302 +msgid "(and contributors)." +msgstr "(e contribuidores)." + +#: src/gui/about.cpp:303 +msgid "licensed under GPLv2+! see" +msgstr "licenciado sob a GPLv2+! veja o" + +#: src/gui/about.cpp:304 +msgid "LICENSE for more information." +msgstr "arquivo LICENSE para mais informações." + +#: src/gui/about.cpp:306 +msgid "help Furnace grow:" +msgstr "ajude o Furnace a crescer:" + +#: src/gui/about.cpp:309 +msgid "contact tildearrow at:" +msgstr "entre em contato com tildearrow em:" + +#: src/gui/about.cpp:312 +msgid "disclaimer:" +msgstr "aviso:" + +#: src/gui/about.cpp:313 +msgid "despite the fact this program works" +msgstr "apesar do fato de este programa funcionar" + +#: src/gui/about.cpp:314 +msgid "with the .dmf file format, it is NOT" +msgstr "com o formato de arquivo .dmf, ele NÃO é" + +#: src/gui/about.cpp:315 +msgid "affiliated with Delek or DefleMask in" +msgstr "afiliado com Delek ou o DefleMask de forma" + +#: src/gui/about.cpp:316 +msgid "any way, nor it is a replacement for" +msgstr "alguma, assim como também não é um substituto" + +#: src/gui/about.cpp:317 +msgid "the original program." +msgstr "para o programa original." + +#: src/gui/about.cpp:319 +msgid "it also comes with ABSOLUTELY NO WARRANTY." +msgstr "ele também não vem com ABSOLUTAMENTE NENHUMA GARANTIA." + +#: src/gui/about.cpp:321 +msgid "thanks to all contributors/bug reporters!" +msgstr "agradecemos a todos os contribuidores e bug reporters!" + +#: src/gui/about.cpp:328 +msgid "About Furnace" +msgstr "" + +#: src/gui/about.cpp:418 +msgid "Unsaved changes! Save changes before playing?" +msgstr "" + +#: src/gui/compatFlags.cpp:31 src/gui/guiConst.cpp:598 +msgid "Compatibility Flags" +msgstr "Opções de Compatibilidade" + +#: src/gui/compatFlags.cpp:32 +msgid "" +"these flags are designed to provide better DefleMask/older Furnace " +"compatibility.\n" +"it is recommended to disable most of these unless you rely on specific " +"quirks." +msgstr "" +"estas opções são desenvolvidas para prover melhor compatibilidade ao " +"Deflemask ou versões antigas do Furnace.\n" +"é recomendado desabilitar a maior parte delas a não ser que você dependa de " +"peculiaridades específicas." + +#: src/gui/compatFlags.cpp:34 src/gui/compatFlags.cpp:310 +msgid "DefleMask" +msgstr "" + +#: src/gui/compatFlags.cpp:35 +msgid "Limit slide range" +msgstr "" + +#: src/gui/compatFlags.cpp:37 +msgid "" +"when enabled, slides are limited to a compatible range.\n" +"may cause problems with slides in negative octaves." +msgstr "" + +#: src/gui/compatFlags.cpp:39 +msgid "Compatible noise layout on NES and PC Engine" +msgstr "" + +#: src/gui/compatFlags.cpp:41 +msgid "" +"use a rather unusual compatible noise frequency layout.\n" +"removes some noise frequencies on PC Engine." +msgstr "" + +#: src/gui/compatFlags.cpp:43 +msgid "Game Boy instrument duty is wave volume" +msgstr "" +"Ciclo de trabalho do instrumento do Game Boy é o volume do canal de onda" + +#: src/gui/compatFlags.cpp:45 +msgid "" +"if enabled, an instrument with duty macro in the wave channel will be mapped " +"to wavetable volume." +msgstr "" +"se habilitado, um instrumento com macro de ciclo de trabalho no canal de " +"onda será mapeado para o volume da wavetable." + +#: src/gui/compatFlags.cpp:48 +msgid "Restart macro on portamento" +msgstr "Reiniciar macro quando houver portamento" + +#: src/gui/compatFlags.cpp:50 +msgid "" +"when enabled, a portamento effect will reset the channel's macro if used in " +"combination with a note." +msgstr "" +"quando habilitado, um efeito de portamento irá reiniciar a macro do canal se " +"utilizado em combinação com uma nota." + +#: src/gui/compatFlags.cpp:52 +msgid "Legacy volume slides" +msgstr "" + +#: src/gui/compatFlags.cpp:54 +msgid "" +"simulate glitchy volume slide behavior by silently overflowing the volume " +"when the slide goes below 0." +msgstr "" + +#: src/gui/compatFlags.cpp:56 +msgid "Compatible arpeggio" +msgstr "" + +#: src/gui/compatFlags.cpp:58 +msgid "delay arpeggio by one tick on every new note." +msgstr "" + +#: src/gui/compatFlags.cpp:60 +msgid "Disable DAC when sample ends" +msgstr "" + +#: src/gui/compatFlags.cpp:62 +msgid "" +"when enabled, the DAC in YM2612 will be disabled if there isn't any sample " +"playing." +msgstr "" + +#: src/gui/compatFlags.cpp:64 +msgid "Broken speed alternation" +msgstr "" + +#: src/gui/compatFlags.cpp:66 +msgid "" +"determines next speed based on whether the row is odd/even instead of " +"alternating between speeds." +msgstr "" + +#: src/gui/compatFlags.cpp:68 +msgid "Ignore duplicate slide effects" +msgstr "Ignorar efeitos de slide duplicados" + +#: src/gui/compatFlags.cpp:70 +msgid "" +"if this is on, only the first slide of a row in a channel will be considered." +msgstr "" +"se habilitado, apenas o primeiro slide de uma linha em um canal será " +"considerado." + +#: src/gui/compatFlags.cpp:72 +msgid "Ignore 0Dxx on the last order" +msgstr "Ignorar 0Dxx na última ordem" + +#: src/gui/compatFlags.cpp:74 +msgid "" +"if this is on, a jump to next row effect will not take place when it is on " +"the last order of a song." +msgstr "" +"se isto estiver habilitado, o efeito para pular para a próxima ordem não irá " +"funcionar quando estiver na última ordem de uma música." + +#: src/gui/compatFlags.cpp:76 +msgid "Buggy portamento after pitch slide" +msgstr "" + +#: src/gui/compatFlags.cpp:78 +msgid "simulates a bug in where portamento does not work after sliding." +msgstr "" + +#: src/gui/compatFlags.cpp:80 +msgid "FM pitch slide octave boundary odd behavior" +msgstr "" + +#: src/gui/compatFlags.cpp:82 +msgid "" +"if this is on, a pitch slide that crosses the octave boundary will stop for " +"one tick and then continue from the nearest octave boundary.\n" +"for .dmf compatibility." +msgstr "" + +#: src/gui/compatFlags.cpp:84 +msgid "Don't apply Game Boy envelope on note-less instrument change" +msgstr "Não aplicar envelope do Game Boy em mudança de instrumento sem nota" + +#: src/gui/compatFlags.cpp:86 +msgid "if this is on, an instrument change will not affect the envelope." +msgstr "" +"se isto estiver habilitado, uma mudança de instrumento não irá afetar o " +"envelope." + +#: src/gui/compatFlags.cpp:88 +msgid "Ignore DAC mode change outside of intended channel in ExtCh mode" +msgstr "Ignorar mudança de modo DAC fora do canal correto no modo ExtCh" + +#: src/gui/compatFlags.cpp:90 +msgid "if this is on, 17xx has no effect on the operator channels in YM2612." +msgstr "" +"se isso estiver habilitado, 17xx não tem nenhum efeito nos canais de " +"operador no YM2612." + +#: src/gui/compatFlags.cpp:92 +msgid "E1xy/E2xy also take priority over slide stops" +msgstr "" + +#: src/gui/compatFlags.cpp:94 +msgid "does this make any sense by now?" +msgstr "" + +#: src/gui/compatFlags.cpp:96 +msgid "E1xy/E2xy stop when repeating the same note" +msgstr "" + +#: src/gui/compatFlags.cpp:98 +msgid "ugh, if only this wasn't a thing..." +msgstr "" + +#: src/gui/compatFlags.cpp:100 +msgid "SN76489 duty macro always resets phase" +msgstr "Macro de ciclo de trabalho do SN76489 sempre reinicia a fase" + +#: src/gui/compatFlags.cpp:102 +msgid "" +"when enabled, duty macro will always reset phase, even if its value hasn't " +"changed." +msgstr "" +"quando habilitado, a macro de ciclo de trabalho sempre irá reiniciar a fase " +"do canal, mesmo que o seu valor não tenha sido alterado." + +#: src/gui/compatFlags.cpp:104 +msgid "Broken volume scaling strategy" +msgstr "" + +#: src/gui/compatFlags.cpp:106 +msgid "" +"when enabled:\n" +"- log scaling: multiply\n" +"- linear scaling: subtract\n" +"when disabled:\n" +"- log scaling: subtract\n" +"- linear scaling: multiply" +msgstr "" + +#: src/gui/compatFlags.cpp:108 +msgid "Don't persist volume macro after it finishes" +msgstr "Não persistir macro de volume depois que ela terminar" + +#: src/gui/compatFlags.cpp:110 +msgid "" +"when enabled, a value in the volume column that happens after the volume " +"macro is done will disregard the macro." +msgstr "" +"quando habilitado, um valor na coluna de volume que aparece depois que a " +"macro de volume termina irá desconsiderar o valor da macro." + +#: src/gui/compatFlags.cpp:112 +msgid "Broken output volume on instrument change" +msgstr "" + +#: src/gui/compatFlags.cpp:114 +msgid "" +"if enabled, no checks for the presence of a volume macro will be made.\n" +"this will cause the last macro value to linger unless a value in the volume " +"column is present." +msgstr "" + +#: src/gui/compatFlags.cpp:116 +msgid "Broken output volume - Episode 2 (PLEASE KEEP ME DISABLED)" +msgstr "" + +#: src/gui/compatFlags.cpp:118 +msgid "" +"these compatibility flags are getting SO damn ridiculous and out of " +"control.\n" +"as you may have guessed, this one exists due to yet ANOTHER DefleMask-" +"specific behavior.\n" +"please keep this off at all costs, because I will not support it when ROM " +"export comes.\n" +"oh, and don't start an argument out of it. Furnace isn't a DefleMask " +"replacement, and no,\n" +"I am not trying to make it look like one with all these flags.\n" +"\n" +"oh, and what about the other flags that don't have to do with DefleMask?\n" +"those are for .mod import, future FamiTracker import and personal taste!\n" +"\n" +"end of rant" +msgstr "" + +#: src/gui/compatFlags.cpp:120 +msgid "Treat SN76489 periods under 8 as 1" +msgstr "" + +#: src/gui/compatFlags.cpp:122 +msgid "" +"when enabled, any SN period under 8 will be written as 1 instead.\n" +"this replicates DefleMask behavior, but reduces available period range." +msgstr "" + +#: src/gui/compatFlags.cpp:126 src/gui/compatFlags.cpp:304 +msgid "Old Furnace" +msgstr "" + +#: src/gui/compatFlags.cpp:127 +msgid "Arpeggio inhibits non-porta slides" +msgstr "" + +#: src/gui/compatFlags.cpp:129 src/gui/compatFlags.cpp:133 +msgid "behavior changed in 0.5.5" +msgstr "" + +#: src/gui/compatFlags.cpp:131 +msgid "Wack FM algorithm macro" +msgstr "" + +#: src/gui/compatFlags.cpp:135 +msgid "Broken shortcut slides (E1xy/E2xy)" +msgstr "" + +#: src/gui/compatFlags.cpp:137 +msgid "behavior changed in 0.5.7" +msgstr "" + +#: src/gui/compatFlags.cpp:139 +msgid "Stop portamento on note off" +msgstr "" + +#: src/gui/compatFlags.cpp:141 src/gui/compatFlags.cpp:145 +#: src/gui/compatFlags.cpp:149 src/gui/compatFlags.cpp:153 +#: src/gui/compatFlags.cpp:157 src/gui/compatFlags.cpp:161 +#: src/gui/compatFlags.cpp:165 +msgid "behavior changed in 0.6pre1" +msgstr "" + +#: src/gui/compatFlags.cpp:143 +msgid "Don't allow instrument change during slides" +msgstr "" + +#: src/gui/compatFlags.cpp:147 +msgid "Don't reset note to base on arpeggio stop" +msgstr "" + +#: src/gui/compatFlags.cpp:151 +msgid "ExtCh channel status is not shared among operators" +msgstr "" + +#: src/gui/compatFlags.cpp:155 +msgid "Disable new SegaPCM features (macros and better panning)" +msgstr "" + +#: src/gui/compatFlags.cpp:159 +msgid "Old FM octave boundary behavior" +msgstr "" + +#: src/gui/compatFlags.cpp:163 +msgid "Disable OPN2 DAC volume control" +msgstr "" + +#: src/gui/compatFlags.cpp:167 +msgid "Broken initial position of portamento after arpeggio" +msgstr "" + +#: src/gui/compatFlags.cpp:169 +msgid "behavior changed in 0.6pre1.5" +msgstr "" + +#: src/gui/compatFlags.cpp:171 +msgid "Disable new sample features" +msgstr "" + +#: src/gui/compatFlags.cpp:173 src/gui/compatFlags.cpp:177 +msgid "behavior changed in 0.6pre2" +msgstr "" + +#: src/gui/compatFlags.cpp:175 +msgid "Old arpeggio macro + pitch slide strategy" +msgstr "" + +#: src/gui/compatFlags.cpp:179 +msgid "Broken portamento during legato" +msgstr "" + +#: src/gui/compatFlags.cpp:181 +msgid "behavior changed in 0.6pre4" +msgstr "" + +#: src/gui/compatFlags.cpp:183 +msgid "Broken macros in some FM chips after note off" +msgstr "" + +#: src/gui/compatFlags.cpp:185 +msgid "behavior changed in 0.6pre5" +msgstr "" + +#: src/gui/compatFlags.cpp:187 +msgid "Pre-note does not take effects into consideration" +msgstr "" + +#: src/gui/compatFlags.cpp:189 +msgid "behavior changed in 0.6pre9" +msgstr "" + +#: src/gui/compatFlags.cpp:191 +msgid "Disable new NES DPCM features" +msgstr "" + +#: src/gui/compatFlags.cpp:193 +msgid "behavior changed in 0.6.1" +msgstr "" + +#: src/gui/compatFlags.cpp:195 +msgid "Legacy technical ALWAYS_SET_VOLUME behavior" +msgstr "" + +#: src/gui/compatFlags.cpp:197 +msgid "" +"behavior changed in 0.6.1\n" +"this flag will be removed if I find out that none of the songs break after " +"disabling it." +msgstr "" + +#: src/gui/compatFlags.cpp:199 +msgid "Old sample offset effect" +msgstr "" + +#: src/gui/compatFlags.cpp:201 +msgid "behavior changed in 0.6.3" +msgstr "" + +#: src/gui/compatFlags.cpp:205 +msgid ".mod import" +msgstr "importação de .mod" + +#: src/gui/compatFlags.cpp:206 +msgid "Don't slide on the first tick of a row" +msgstr "Não fazer slide no primeiro tick de uma linha" + +#: src/gui/compatFlags.cpp:208 +msgid "" +"simulates ProTracker's behavior of not applying volume/pitch slides on the " +"first tick of a row." +msgstr "" +"simula o comportamento do ProTracker de não aplicar slides de volume/tom no " +"primeiro tick de uma linha." + +#: src/gui/compatFlags.cpp:210 +msgid "Reset arpeggio position on row change" +msgstr "Reiniciar posição do arpejo em mudança de linha" + +#: src/gui/compatFlags.cpp:212 +msgid "" +"simulates ProTracker's behavior of arpeggio being bound to the current tick " +"of a row." +msgstr "" +"simula o comportamento do ProTracker em que o arpejo é ligado ao tick atual " +"de uma linha." + +#: src/gui/compatFlags.cpp:216 +msgid "Pitch/Playback" +msgstr "Tom/Reprodução" + +#: src/gui/compatFlags.cpp:217 +msgid "Pitch linearity:" +msgstr "Linearidade de frequências:" + +#: src/gui/compatFlags.cpp:223 +msgid "like ProTracker/FamiTracker" +msgstr "como ProTracker/FamiTracker" + +#: src/gui/compatFlags.cpp:227 +msgid "Partial (only 04xy/E5xx)" +msgstr "" + +#: src/gui/compatFlags.cpp:231 +msgid "" +"like DefleMask\n" +"\n" +"this pitch linearity mode is deprecated due to:\n" +"- excessive complexity\n" +"- lack of possible optimization\n" +"\n" +"it is recommended to change it now because I will remove this option in the " +"future!" +msgstr "" + +#: src/gui/compatFlags.cpp:235 +msgid "Full" +msgstr "Completa" + +#: src/gui/compatFlags.cpp:239 +msgid "like Impulse Tracker" +msgstr "como Impulse Tracker" + +#: src/gui/compatFlags.cpp:246 +msgid "Pitch slide speed multiplier" +msgstr "Multiplicador de velocidade de slide de frequência" + +#: src/gui/compatFlags.cpp:252 +msgid "Loop modality:" +msgstr "Modalidade de loop:" + +#: src/gui/compatFlags.cpp:254 +msgid "Reset channels" +msgstr "Reiniciar canais" + +#: src/gui/compatFlags.cpp:258 +msgid "" +"select to reset channels on loop. may trigger a voltage click on every loop!" +msgstr "" +"escolha para reiniciar bruscamente os canais a cada loop. pode causar " +"cliques de tensão em todos os loops!" + +#: src/gui/compatFlags.cpp:260 +msgid "Soft reset channels" +msgstr "Desativar canais" + +#: src/gui/compatFlags.cpp:264 +msgid "select to turn channels off on loop." +msgstr "selecione para desligar os canais a cada loop." + +#: src/gui/compatFlags.cpp:266 +msgid "Do nothing" +msgstr "Não fazer nada" + +#: src/gui/compatFlags.cpp:270 +msgid "select to not reset channels on loop." +msgstr "selecione para não reiniciar os canais a cada loop." + +#: src/gui/compatFlags.cpp:274 +msgid "Cut/delay effect policy:" +msgstr "Política de efeito de corte/atraso:" + +#: src/gui/compatFlags.cpp:280 +msgid "only when time is less than speed (like DefleMask/ProTracker)" +msgstr "" +"somente quando o tempo é menor que a velocidade (como DefleMask/ProTracker)" + +#: src/gui/compatFlags.cpp:282 +msgid "Strict (old)" +msgstr "" + +#: src/gui/compatFlags.cpp:286 +msgid "only when time is less than or equal to speed (original buggy behavior)" +msgstr "" + +#: src/gui/compatFlags.cpp:292 +msgid "no checks" +msgstr "sem checagens" + +#: src/gui/compatFlags.cpp:296 +msgid "Simultaneous jump (0B+0D) treatment:" +msgstr "Tratamento de pulos simultâneos (0B+0D):" + +#: src/gui/compatFlags.cpp:302 +msgid "accept 0B+0D to jump to a specific row of an order" +msgstr "aceitar 0B+0D para pular para uma linha específica de uma ordem" + +#: src/gui/compatFlags.cpp:308 +msgid "only accept the first jump effect" +msgstr "" + +#: src/gui/compatFlags.cpp:314 +msgid "only accept 0Dxx" +msgstr "" + +#: src/gui/compatFlags.cpp:320 +msgid "Auto-insert one tick gap between notes" +msgstr "Automaticamente inserir intervalo de um tick entre notas" + +#: src/gui/compatFlags.cpp:322 +msgid "" +"when enabled, a one-tick note cut will be inserted between non-legato/non-" +"portamento notes.\n" +"this simulates the behavior of some Amiga/SNES music engines.\n" +"\n" +"ineffective on C64." +msgstr "" +"quando habilitado, um corte de nota de um tick será inserido entre notas não-" +"legato/não-portamento.\n" +"isso simula o comportamento de alguns motores de música de Amiga e SNES.\n" +"Não tem efeito no C64." + +#: src/gui/compatFlags.cpp:327 +msgid "Don't reset slides after note off" +msgstr "Não reiniciar slides após \"note-off\"" + +#: src/gui/compatFlags.cpp:329 +msgid "when enabled, note off will not reset the channel's slide effect." +msgstr "" +"quando habilitado, a desativação de nota não irá reiniciar o efeito de slide " +"do canal." + +#: src/gui/compatFlags.cpp:331 +msgid "Don't reset portamento after reaching target" +msgstr "Não reiniciar portamento ao atingir nota alvo" + +#: src/gui/compatFlags.cpp:333 +msgid "" +"when enabled, the slide effect will not be disabled after it reaches its " +"target." +msgstr "" +"quando habilitado, o efeito portamento não será desligado após atingir sua " +"nota alvo." + +#: src/gui/compatFlags.cpp:335 +msgid "Continuous vibrato" +msgstr "Vibrato contínuo" + +#: src/gui/compatFlags.cpp:337 +msgid "when enabled, vibrato phase/position will not be reset on a new note." +msgstr "" +"quando habilitado, a fase/posição do vibrato não será reiniciada em novas " +"notas." + +#: src/gui/compatFlags.cpp:339 +msgid "Pitch macro is not linear" +msgstr "Macro de tom não é linear" + +#: src/gui/compatFlags.cpp:341 +msgid "" +"when enabled, the pitch macro of an instrument is in frequency/period space." +msgstr "" +"quando habilitado, a macro de tom de um instrumento é aplicada em domínio de " +"frequência/período." + +#: src/gui/compatFlags.cpp:343 +msgid "Reset arpeggio effect position on new note" +msgstr "Reiniciar posição do efeito de arpejo em novas notas" + +#: src/gui/compatFlags.cpp:345 +msgid "when enabled, arpeggio effect (00xy) position is reset on a new note." +msgstr "" +"quando habilitado, a posição do efeito de arpejo (00xy) é reiniciada quando " +"uma nova nota é tocada." + +#: src/gui/compatFlags.cpp:347 +msgid "Volume scaling rounds up" +msgstr "Escalonamento de volume arredonda para cima" + +#: src/gui/compatFlags.cpp:349 +msgid "" +"when enabled, volume macros round up when applied\n" +"this prevents volume scaling from causing vol=0, which is silent on some " +"chips\n" +"\n" +"ineffective on logarithmic channels" +msgstr "" +"quando habilitado, macros de volume arredondam para cima ao serem aplicadas\n" +"isso previne que o escalonamento de volume gere um volume igual a 0, que " +"gera silêncio em alguns chips\n" +"\n" +"não tem efeito em canais com volume logarítmico" + +#: src/gui/guiConst.cpp:127 +msgid "Generic Sample" +msgstr "Sample Genérica" + +#: src/gui/guiConst.cpp:155 +msgid "OPL (drums)" +msgstr "OPL (bateria)" + +#: src/gui/guiConst.cpp:191 +msgid "Forward" +msgstr "Para frente" + +#: src/gui/guiConst.cpp:192 +msgid "Backward" +msgstr "Para trás" + +#: src/gui/guiConst.cpp:193 +msgid "Ping pong" +msgstr "Pingue pongue" + +#: src/gui/guiConst.cpp:218 +msgid "linear" +msgstr "linear" + +#: src/gui/guiConst.cpp:219 +msgid "cubic spline" +msgstr "spline cúbica" + +#: src/gui/guiConst.cpp:220 +msgid "blep synthesis" +msgstr "síntese blep" + +#: src/gui/guiConst.cpp:221 +msgid "sinc" +msgstr "sinc" + +#: src/gui/guiConst.cpp:222 +msgid "best possible" +msgstr "melhor possível" + +#: src/gui/guiConst.cpp:226 src/gui/sampleEdit.cpp:137 +#: src/gui/sampleEdit.cpp:143 +msgid "Invalid" +msgstr "Inválido" + +#: src/gui/guiConst.cpp:231 +msgid "Time" +msgstr "Tempo" + +#: src/gui/guiConst.cpp:233 +msgid "System (Primary)" +msgstr "Sistema (Primário)" + +#: src/gui/guiConst.cpp:234 +msgid "System (Secondary)" +msgstr "Sistema (Secundário)" + +#: src/gui/guiConst.cpp:530 +msgid "---Global" +msgstr "---Global" + +#: src/gui/guiConst.cpp:532 +msgid "Open file" +msgstr "Abrir arquivo" + +#: src/gui/guiConst.cpp:533 +msgid "Restore backup" +msgstr "Restaurar backup" + +#: src/gui/guiConst.cpp:534 +msgid "Save file" +msgstr "Salvar arquivo" + +#: src/gui/guiConst.cpp:535 +msgid "Save as" +msgstr "Salvar como" + +#: src/gui/guiConst.cpp:537 src/gui/sampleEdit.cpp:982 +msgid "Undo" +msgstr "Desfazer" + +#: src/gui/guiConst.cpp:539 src/gui/guiConst.cpp:541 src/gui/sampleEdit.cpp:989 +msgid "Redo" +msgstr "Refazer" + +#: src/gui/guiConst.cpp:543 +msgid "Exit" +msgstr "Sair" + +#: src/gui/guiConst.cpp:544 +msgid "Play/Stop (toggle)" +msgstr "Reproduzir/Parar (alternar)" + +#: src/gui/guiConst.cpp:547 +msgid "Play (from beginning)" +msgstr "Reproduzir (do início)" + +#: src/gui/guiConst.cpp:548 +msgid "Play (repeat pattern)" +msgstr "Reproduzir (repetir sequência)" + +#: src/gui/guiConst.cpp:549 +msgid "Play from cursor" +msgstr "Reproduzir do cursor" + +#: src/gui/guiConst.cpp:550 +msgid "Step row" +msgstr "Pular linha" + +#: src/gui/guiConst.cpp:551 +msgid "Octave up" +msgstr "Subir uma oitava" + +#: src/gui/guiConst.cpp:552 +msgid "Octave down" +msgstr "Descer uma oitava" + +#: src/gui/guiConst.cpp:553 +msgid "Previous instrument" +msgstr "Instrumento anterior" + +#: src/gui/guiConst.cpp:554 +msgid "Next instrument" +msgstr "Próximo instrumento" + +#: src/gui/guiConst.cpp:555 +msgid "Increase edit step" +msgstr "Aumentar passo de edição" + +#: src/gui/guiConst.cpp:556 +msgid "Decrease edit step" +msgstr "Diminuir passo de edição" + +#: src/gui/guiConst.cpp:557 +msgid "Toggle edit mode" +msgstr "Alternar modo de edição" + +#: src/gui/guiConst.cpp:559 +msgid "Toggle repeat pattern" +msgstr "Alternar repetição de sequência" + +#: src/gui/guiConst.cpp:562 +msgid "Toggle full-screen" +msgstr "Alternar tela cheia" + +#: src/gui/guiConst.cpp:563 +msgid "Request voice from TX81Z" +msgstr "Requisitar timbre do TX81Z" + +#: src/gui/guiConst.cpp:565 +msgid "Clear song data" +msgstr "Apagar dados da música" + +#: src/gui/guiConst.cpp:567 src/gui/gui.cpp:5573 src/gui/gui.cpp:5625 +msgid "Command Palette" +msgstr "Paleta de Comandos" + +#: src/gui/guiConst.cpp:569 +msgid "Recent files (Palette)" +msgstr "Arquivos recentes (Paleta)" + +#: src/gui/guiConst.cpp:570 +msgid "Instruments (Palette)" +msgstr "Instrumentos (Paleta)" + +#: src/gui/guiConst.cpp:571 +msgid "Samples (Palette)" +msgstr "Samples (Paleta)" + +#: src/gui/guiConst.cpp:572 +msgid "Change instrument (Palette)" +msgstr "Trocar instrumento (Paleta)" + +#: src/gui/guiConst.cpp:573 +msgid "Add chip (Palette)" +msgstr "Adicionar chip (Paleta)" + +#: src/gui/guiConst.cpp:578 +msgid "Instrument List" +msgstr "Lista de Instrumentos" + +#: src/gui/guiConst.cpp:579 src/gui/insEdit.cpp:5203 +msgid "Instrument Editor" +msgstr "Editor de Instrumentos" + +#: src/gui/guiConst.cpp:580 +msgid "Song Information" +msgstr "Informações da Música" + +#: src/gui/guiConst.cpp:583 +msgid "Wavetable List" +msgstr "Lista de Wavetables" + +#: src/gui/guiConst.cpp:584 src/gui/waveEdit.cpp:409 +msgid "Wavetable Editor" +msgstr "Editor de Wavetable" + +#: src/gui/guiConst.cpp:585 +msgid "Sample List" +msgstr "Lista de Samples" + +#: src/gui/guiConst.cpp:594 +msgid "Debug Menu" +msgstr "Menu de Depuração" + +#: src/gui/guiConst.cpp:595 +msgid "Oscilloscope (master)" +msgstr "Osciloscópio (mestre)" + +#: src/gui/guiConst.cpp:603 src/gui/sysManager.cpp:41 +msgid "Chip Manager" +msgstr "Gerenciador de Chips" + +#: src/gui/guiConst.cpp:614 src/gui/csPlayer.cpp:112 +msgid "Command Stream Player" +msgstr "Reprodutor de Fluxo de Comandos" + +#: src/gui/guiConst.cpp:615 +msgid "User Presets" +msgstr "" + +#: src/gui/guiConst.cpp:617 +msgid "Collapse/expand current window" +msgstr "Contrair/expandir janela atual" + +#: src/gui/guiConst.cpp:618 +msgid "Close current window" +msgstr "Fechar janela atual" + +#: src/gui/guiConst.cpp:621 +msgid "---Pattern" +msgstr "---Sequência" + +#: src/gui/guiConst.cpp:622 +msgid "Transpose (+1)" +msgstr "Transpor (+1)" + +#: src/gui/guiConst.cpp:623 +msgid "Transpose (-1)" +msgstr "Transpor (-1)" + +#: src/gui/guiConst.cpp:624 +msgid "Transpose (+1 octave)" +msgstr "Transpor (+1 oitava)" + +#: src/gui/guiConst.cpp:625 +msgid "Transpose (-1 octave)" +msgstr "Transpor (-1 oitava)" + +#: src/gui/guiConst.cpp:626 +msgid "Increase values (+1)" +msgstr "Alterar valores (+1)" + +#: src/gui/guiConst.cpp:627 +msgid "Increase values (-1)" +msgstr "Alterar valores (-1)" + +#: src/gui/guiConst.cpp:628 +msgid "Increase values (+16)" +msgstr "Alterar valores (+16)" + +#: src/gui/guiConst.cpp:629 +msgid "Increase values (-16)" +msgstr "Alterar valores (-16)" + +#: src/gui/guiConst.cpp:630 +msgid "Select all" +msgstr "Selecionar tudo" + +#: src/gui/guiConst.cpp:631 +msgid "Cut" +msgstr "Recortar" + +#: src/gui/guiConst.cpp:632 +msgid "Copy" +msgstr "Copiar" + +#: src/gui/guiConst.cpp:633 +msgid "Paste" +msgstr "Colar" + +#: src/gui/guiConst.cpp:634 +msgid "Paste Mix (foreground)" +msgstr "Colar e Mesclar (pela frente)" + +#: src/gui/guiConst.cpp:635 +msgid "Paste Mix (background)" +msgstr "Colar e Mesclar (por trás)" + +#: src/gui/guiConst.cpp:636 +msgid "Paste Flood" +msgstr "Colar e Repetir" + +#: src/gui/guiConst.cpp:637 +msgid "Paste Overflow" +msgstr "Colar Através das Bordas" + +#: src/gui/guiConst.cpp:638 +msgid "Move cursor up" +msgstr "Mover cursor para cima" + +#: src/gui/guiConst.cpp:639 +msgid "Move cursor down" +msgstr "Mover cursor para baixo" + +#: src/gui/guiConst.cpp:640 +msgid "Move cursor left" +msgstr "Mover cursor para a esquerda" + +#: src/gui/guiConst.cpp:641 +msgid "Move cursor right" +msgstr "Mover cursor para a direita" + +#: src/gui/guiConst.cpp:642 +msgid "Move cursor up by one (override Edit Step)" +msgstr "Mover cursor uma célula para cima (ignora o Passo de Edição)" + +#: src/gui/guiConst.cpp:643 +msgid "Move cursor down by one (override Edit Step)" +msgstr "Mover cursor uma célula para baixo (ignora o Passo de Edição)" + +#: src/gui/guiConst.cpp:644 +msgid "Move cursor to previous channel" +msgstr "Mover cursor para o canal anterior" + +#: src/gui/guiConst.cpp:645 +msgid "Move cursor to next channel" +msgstr "Mover cursor para o próximo canal" + +#: src/gui/guiConst.cpp:646 +msgid "Move cursor to next channel (overflow)" +msgstr "Mover cursor para o próximo canal (através da borda)" + +#: src/gui/guiConst.cpp:647 +msgid "Move cursor to previous channel (overflow)" +msgstr "Mover cursor para o canal anterior (através da borda)" + +#: src/gui/guiConst.cpp:648 +msgid "Move cursor to beginning of pattern" +msgstr "Mover cursor para o começo da sequência" + +#: src/gui/guiConst.cpp:649 +msgid "Move cursor to end of pattern" +msgstr "Mover cursor para o fim da sequência" + +#: src/gui/guiConst.cpp:650 +msgid "Move cursor up (coarse)" +msgstr "Mover cursor para cima (grosso)" + +#: src/gui/guiConst.cpp:651 +msgid "Move cursor down (coarse)" +msgstr "Mover cursor para baixo (grosso)" + +#: src/gui/guiConst.cpp:652 +msgid "Expand selection upwards" +msgstr "Expandir seleção para cima" + +#: src/gui/guiConst.cpp:653 +msgid "Expand selection downwards" +msgstr "Expandir seleção para baixo" + +#: src/gui/guiConst.cpp:654 +msgid "Expand selection to the left" +msgstr "Expandir seleção para a esquerda" + +#: src/gui/guiConst.cpp:655 +msgid "Expand selection to the right" +msgstr "Expandir seleção para a direita" + +#: src/gui/guiConst.cpp:656 +msgid "Expand selection upwards by one (override Edit Step)" +msgstr "Expandir seleção uma célula para cima (ignora o Passo de Edição)" + +#: src/gui/guiConst.cpp:657 +msgid "Expand selection downwards by one (override Edit Step)" +msgstr "Expandir seleção uma célula para baixo (ignora o Passo de Edição)" + +#: src/gui/guiConst.cpp:658 +msgid "Expand selection to beginning of pattern" +msgstr "Expandir seleção para o começo da sequência" + +#: src/gui/guiConst.cpp:659 +msgid "Expand selection to end of pattern" +msgstr "Expandir seleção para o fim da sequência" + +#: src/gui/guiConst.cpp:660 +msgid "Expand selection upwards (coarse)" +msgstr "Expandir seleção para cima (grosso)" + +#: src/gui/guiConst.cpp:661 +msgid "Expand selection downwards (coarse)" +msgstr "Expandir seleção para baixo (grosso)" + +#: src/gui/guiConst.cpp:662 +msgid "Move selection up" +msgstr "" + +#: src/gui/guiConst.cpp:663 +msgid "Move selection down" +msgstr "" + +#: src/gui/guiConst.cpp:664 +msgid "Move selection to previous channel" +msgstr "" + +#: src/gui/guiConst.cpp:665 +msgid "Move selection to next channel" +msgstr "" + +#: src/gui/guiConst.cpp:667 +msgid "Pull delete" +msgstr "Excluir e puxar" + +#: src/gui/guiConst.cpp:668 +msgid "Insert" +msgstr "Inserir" + +#: src/gui/guiConst.cpp:669 +msgid "Mute channel at cursor" +msgstr "Silenciar canal sob o cursor" + +#: src/gui/guiConst.cpp:670 +msgid "Solo channel at cursor" +msgstr "Isolar canal sob o cursor" + +#: src/gui/guiConst.cpp:671 +msgid "Unmute all channels" +msgstr "Reativar todos os canais" + +#: src/gui/guiConst.cpp:672 +msgid "Go to next order" +msgstr "Ir para a próxima ordem" + +#: src/gui/guiConst.cpp:673 +msgid "Go to previous order" +msgstr "Ir para a ordem anterior" + +#: src/gui/guiConst.cpp:674 +msgid "Collapse channel at cursor" +msgstr "Minimizar canal sob o cursor" + +#: src/gui/guiConst.cpp:675 +msgid "Increase effect columns" +msgstr "Aumentar número de colunas de efeito" + +#: src/gui/guiConst.cpp:676 +msgid "Decrease effect columns" +msgstr "Diminuir número de colunas de efeito" + +#: src/gui/guiConst.cpp:677 +msgid "Interpolate" +msgstr "Interpolar" + +#: src/gui/guiConst.cpp:678 src/gui/insEdit.cpp:530 +msgid "Fade" +msgstr "Degradê" + +#: src/gui/guiConst.cpp:679 +msgid "Invert values" +msgstr "Inverter valores" + +#: src/gui/guiConst.cpp:680 +msgid "Flip selection" +msgstr "Reverter seleção" + +#: src/gui/guiConst.cpp:681 +msgid "Collapse rows" +msgstr "Contrair linhas" + +#: src/gui/guiConst.cpp:682 +msgid "Expand rows" +msgstr "Expandir linhas" + +#: src/gui/guiConst.cpp:683 +msgid "Collapse pattern" +msgstr "Contrair sequência" + +#: src/gui/guiConst.cpp:684 +msgid "Expand pattern" +msgstr "Expandir sequência" + +#: src/gui/guiConst.cpp:685 +msgid "Collapse song" +msgstr "Contrair música" + +#: src/gui/guiConst.cpp:686 +msgid "Expand song" +msgstr "Expandir música" + +#: src/gui/guiConst.cpp:687 +msgid "Set note input latch" +msgstr "Limpar máscara de entrada de nota" + +#: src/gui/guiConst.cpp:688 +msgid "Change mobile scroll mode" +msgstr "Alterar modo de rolagem para dispositivos móveis" + +#: src/gui/guiConst.cpp:689 +msgid "Clear note input latch" +msgstr "Redefinir máscara de entrada de nota" + +#: src/gui/guiConst.cpp:692 +msgid "---Instrument list" +msgstr "---Lista de instrumentos" + +#: src/gui/guiConst.cpp:693 +msgid "Add instrument" +msgstr "Adicionar instrumento" + +#: src/gui/guiConst.cpp:694 +msgid "Duplicate instrument" +msgstr "Duplicar instrumento" + +#: src/gui/guiConst.cpp:695 +msgid "Open instrument" +msgstr "Abrir instrumento" + +#: src/gui/guiConst.cpp:696 +msgid "Open instrument (replace current)" +msgstr "Abrir instrumento (substituir o atual)" + +#: src/gui/guiConst.cpp:697 +msgid "Save instrument" +msgstr "Salvar instrumento" + +#: src/gui/guiConst.cpp:698 +msgid "Save instrument (.dmp)" +msgstr "" + +#: src/gui/guiConst.cpp:699 +msgid "Move instrument up in list" +msgstr "Mover instrumento para cima na lista" + +#: src/gui/guiConst.cpp:700 +msgid "Move instrument down in list" +msgstr "Mover instrumento para baixo na lista" + +#: src/gui/guiConst.cpp:701 +msgid "Delete instrument" +msgstr "Excluir instrumento" + +#: src/gui/guiConst.cpp:702 +msgid "Edit instrument" +msgstr "Editar instrumento" + +#: src/gui/guiConst.cpp:703 +msgid "Instrument cursor up" +msgstr "Mover cursor de instrumentos para cima" + +#: src/gui/guiConst.cpp:704 +msgid "Instrument cursor down" +msgstr "Mover cursor de instrumentos para baixo" + +#: src/gui/guiConst.cpp:705 +msgid "Instruments: toggle folders/standard view" +msgstr "Instrumentos: Alternar entre pastas e visão padrão" + +#: src/gui/guiConst.cpp:708 +msgid "---Wavetable list" +msgstr "---Lista de wavetables" + +#: src/gui/guiConst.cpp:709 +msgid "Add wavetable" +msgstr "Adicionar wavetable" + +#: src/gui/guiConst.cpp:710 +msgid "Duplicate wavetable" +msgstr "Duplicar wavetable" + +#: src/gui/guiConst.cpp:711 +msgid "Open wavetable" +msgstr "Abrir wavetable" + +#: src/gui/guiConst.cpp:712 +msgid "Open wavetable (replace current)" +msgstr "Abrir wavetable (substituir a atual)" + +#: src/gui/guiConst.cpp:713 +msgid "Save wavetable" +msgstr "Salvar wavetable" + +#: src/gui/guiConst.cpp:714 +msgid "Save wavetable (.dmw)" +msgstr "Salvar wavetable (.dmw)" + +#: src/gui/guiConst.cpp:715 +msgid "Save wavetable (raw)" +msgstr "Salvar wavetable (formato raw)" + +#: src/gui/guiConst.cpp:716 +msgid "Move wavetable up in list" +msgstr "Mover wavetable para cima na lista" + +#: src/gui/guiConst.cpp:717 +msgid "Move wavetable down in list" +msgstr "Mover wavetable para baixo na lista" + +#: src/gui/guiConst.cpp:718 +msgid "Delete wavetable" +msgstr "Excluir wavetable" + +#: src/gui/guiConst.cpp:719 +msgid "Edit wavetable" +msgstr "Editar wavetable" + +#: src/gui/guiConst.cpp:720 +msgid "Wavetable cursor up" +msgstr "Mover cursor de wavetables para cima" + +#: src/gui/guiConst.cpp:721 +msgid "Wavetable cursor down" +msgstr "Mover cursor de wavetables para baixo" + +#: src/gui/guiConst.cpp:722 +msgid "Wavetables: toggle folders/standard view" +msgstr "Wavetables: Alternar entre pastas e visão padrão" + +#: src/gui/guiConst.cpp:725 +msgid "---Sample list" +msgstr "---Lista de samples" + +#: src/gui/guiConst.cpp:726 +msgid "Add sample" +msgstr "Adicionar sample" + +#: src/gui/guiConst.cpp:727 +msgid "Duplicate sample" +msgstr "Duplicar sample" + +#: src/gui/guiConst.cpp:728 +msgid "Open sample" +msgstr "Abrir sample" + +#: src/gui/guiConst.cpp:729 +msgid "Open sample (replace current)" +msgstr "Abrir sample (substituir a atual)" + +#: src/gui/guiConst.cpp:730 +msgid "Import raw sample data" +msgstr "Importar dados de sample em formato raw" + +#: src/gui/guiConst.cpp:731 +msgid "Import raw sample data (replace current)" +msgstr "Importar dados de sample em formato raw (substituir a atual)" + +#: src/gui/guiConst.cpp:732 +msgid "Save sample" +msgstr "Salvar sample" + +#: src/gui/guiConst.cpp:733 +msgid "Save sample (raw)" +msgstr "Salvar sample (formato raw)" + +#: src/gui/guiConst.cpp:734 +msgid "Move sample up in list" +msgstr "" + +#: src/gui/guiConst.cpp:735 +msgid "Move sample down in list" +msgstr "" + +#: src/gui/guiConst.cpp:736 +msgid "Delete sample" +msgstr "Excluir sample" + +#: src/gui/guiConst.cpp:737 +msgid "Edit sample" +msgstr "Editar sample" + +#: src/gui/guiConst.cpp:738 +msgid "Sample cursor up" +msgstr "Mover cursor de samples para cima" + +#: src/gui/guiConst.cpp:739 +msgid "Sample cursor down" +msgstr "Mover cursor de samples para baixo" + +#: src/gui/guiConst.cpp:741 src/gui/sampleEdit.cpp:1339 +msgid "Stop sample preview" +msgstr "Interromper previsão de sample" + +#: src/gui/guiConst.cpp:742 +msgid "Samples: Toggle folders/standard view" +msgstr "" + +#: src/gui/guiConst.cpp:743 +msgid "Samples: Make me a drum kit" +msgstr "" + +#: src/gui/guiConst.cpp:746 +msgid "---Sample editor" +msgstr "---Editor de sample" + +#: src/gui/guiConst.cpp:747 +msgid "Sample editor mode: Select" +msgstr "Modo de edição: Selecionar" + +#: src/gui/guiConst.cpp:748 +msgid "Sample editor mode: Draw" +msgstr "Modo de edição: Desenhar" + +#: src/gui/guiConst.cpp:749 +msgid "Sample editor: Cut" +msgstr "Editor de sample: Recortar" + +#: src/gui/guiConst.cpp:750 +msgid "Sample editor: Copy" +msgstr "Editor de sample: Copiar" + +#: src/gui/guiConst.cpp:751 +msgid "Sample editor: Paste" +msgstr "Editor de sample: Colar" + +#: src/gui/guiConst.cpp:752 +msgid "Sample editor: Paste replace" +msgstr "Editor de sample: Colar e substituir" + +#: src/gui/guiConst.cpp:753 +msgid "Sample editor: Paste mix" +msgstr "Editor de sample: Colar e mesclar" + +#: src/gui/guiConst.cpp:754 +msgid "Sample editor: Select all" +msgstr "Editor de sample: Selecionar tudo" + +#: src/gui/guiConst.cpp:755 +msgid "Sample editor: Resize" +msgstr "Editor de sample: Redimensionar" + +#: src/gui/guiConst.cpp:756 +msgid "Sample editor: Resample" +msgstr "Editor de sample: Reamostrar" + +#: src/gui/guiConst.cpp:757 +msgid "Sample editor: Amplify" +msgstr "Editor de sample: Amplificar" + +#: src/gui/guiConst.cpp:758 +msgid "Sample editor: Normalize" +msgstr "Editor de sample: Normalizar" + +#: src/gui/guiConst.cpp:759 +msgid "Sample editor: Fade in" +msgstr "Editor de sample: Fade in" + +#: src/gui/guiConst.cpp:760 +msgid "Sample editor: Fade out" +msgstr "Editor de sample: Fade out" + +#: src/gui/guiConst.cpp:761 +msgid "Sample editor: Apply silence" +msgstr "Editor de sample: Aplicar silêncio" + +#: src/gui/guiConst.cpp:762 +msgid "Sample editor: Insert silence" +msgstr "Editor de sample: Inserir silêncio" + +#: src/gui/guiConst.cpp:763 +msgid "Sample editor: Delete" +msgstr "Editor de sample: Excluir" + +#: src/gui/guiConst.cpp:764 +msgid "Sample editor: Trim" +msgstr "Editor de sample: Cortar" + +#: src/gui/guiConst.cpp:765 +msgid "Sample editor: Reverse" +msgstr "Editor de sample: Reverter" + +#: src/gui/guiConst.cpp:766 +msgid "Sample editor: Invert" +msgstr "Editor de sample: Inverter" + +#: src/gui/guiConst.cpp:767 +msgid "Sample editor: Signed/unsigned exchange" +msgstr "Editor de sample: Alternar sinalização (signed/unsigned)" + +#: src/gui/guiConst.cpp:768 +msgid "Sample editor: Apply filter" +msgstr "Editor de sample: Aplicar filtro" + +#: src/gui/guiConst.cpp:769 +msgid "Sample editor: Crossfade loop points" +msgstr "Editor de sample: Aplicar crossfade nos pontos de loop" + +#: src/gui/guiConst.cpp:770 +msgid "Sample editor: Preview sample" +msgstr "Editor de sample: Prever sample" + +#: src/gui/guiConst.cpp:771 +msgid "Sample editor: Stop sample preview" +msgstr "Editor de sample: Interromper previsão da sample" + +#: src/gui/guiConst.cpp:772 +msgid "Sample editor: Zoom in" +msgstr "Editor de sample: Aumentar zoom" + +#: src/gui/guiConst.cpp:773 +msgid "Sample editor: Zoom out" +msgstr "Editor de sample: Diminuir zoom" + +#: src/gui/guiConst.cpp:774 +msgid "Sample editor: Toggle auto-zoom" +msgstr "Editor de sample: Alternar zoom automático" + +#: src/gui/guiConst.cpp:775 +msgid "Sample editor: Create instrument from sample" +msgstr "Editor de sample: Criar instrumento a partir da sample" + +#: src/gui/guiConst.cpp:776 +msgid "Sample editor: Set loop to selection" +msgstr "Editor de sample: Definir loop a partir da seleção" + +#: src/gui/guiConst.cpp:777 +msgid "Sample editor: Create wavetable from selection" +msgstr "Editor de sample: Criar wavetable a partir da seleção" + +#: src/gui/guiConst.cpp:780 +msgid "---Orders" +msgstr "---Ordens" + +#: src/gui/guiConst.cpp:781 +msgid "Previous order" +msgstr "Ordem anterior" + +#: src/gui/guiConst.cpp:782 +msgid "Next order" +msgstr "Próxima ordem" + +#: src/gui/guiConst.cpp:783 +msgid "Order cursor left" +msgstr "Mover cursor de ordem para a esquerda" + +#: src/gui/guiConst.cpp:784 +msgid "Order cursor right" +msgstr "Mover cursor de ordem para a direita" + +#: src/gui/guiConst.cpp:785 +msgid "Increase order value" +msgstr "Aumentar valor da ordem" + +#: src/gui/guiConst.cpp:786 +msgid "Decrease order value" +msgstr "Diminuir valor da ordem" + +#: src/gui/guiConst.cpp:787 +msgid "Switch order edit mode" +msgstr "Alternar modo de edição da ordem" + +#: src/gui/guiConst.cpp:788 +msgid "Order: toggle alter entire row" +msgstr "Ordem: alternar modo de alteração na linha inteira" + +#: src/gui/guiConst.cpp:789 +msgid "Add order" +msgstr "Adicionar ordem" + +#: src/gui/guiConst.cpp:790 +msgid "Duplicate order" +msgstr "Duplicar ordem" + +#: src/gui/guiConst.cpp:791 +msgid "Deep clone order" +msgstr "Fazer clone profundo da ordem" + +#: src/gui/guiConst.cpp:792 +msgid "Copy current order to end of song" +msgstr "Copiar ordem atual para o final da música" + +#: src/gui/guiConst.cpp:793 +msgid "Deep clone current order to end of song" +msgstr "Fazer clone profundo da ordem ao final da música" + +#: src/gui/guiConst.cpp:797 +msgid "Replay order" +msgstr "Reiniciar reprodução da ordem atual" + +#: src/gui/guiConst.cpp:1392 +msgid "All chips" +msgstr "Todos os chips" + +#: src/gui/guiConst.cpp:1396 src/gui/insEdit.cpp:6954 src/gui/insEdit.cpp:7204 +#: src/gui/insEdit.cpp:7458 src/gui/insEdit.cpp:7480 +msgid "Special" +msgstr "Especial" + +#: src/gui/piano.cpp:103 +msgid "Options" +msgstr "Opções" + +#: src/gui/piano.cpp:106 +msgid "Key layout:" +msgstr "Leiaute das teclas:" + +#: src/gui/piano.cpp:111 +msgid "Standard" +msgstr "Padrão" + +#: src/gui/piano.cpp:114 +msgid "Continuous" +msgstr "Contínuo" + +#: src/gui/piano.cpp:118 +msgid "Value input pad:" +msgstr "Teclado numérico:" + +#: src/gui/piano.cpp:120 +msgid "Disabled" +msgstr "Desabilitado" + +#: src/gui/piano.cpp:123 +msgid "Replace piano" +msgstr "Substituir piano" + +#: src/gui/piano.cpp:126 +msgid "Split (automatic)" +msgstr "Dividido (automático)" + +#: src/gui/piano.cpp:129 +msgid "Split (always visible)" +msgstr "Dividido (sempre visível)" + +#: src/gui/piano.cpp:133 +msgid "Share play/edit offset/range" +msgstr "Compartilhar intervalo/deslocamento entre modo de edição e reprodução" + +#: src/gui/piano.cpp:134 +msgid "Read-only (can't input notes)" +msgstr "Somente leitura (não permite tocar notas)" + +#: src/gui/waveEdit.cpp:30 src/gui/waveEdit.cpp:192 src/gui/insEdit.cpp:177 +#: src/gui/insEdit.cpp:188 src/gui/insEdit.cpp:199 +msgid "Sine" +msgstr "Senoide" + +#: src/gui/waveEdit.cpp:32 src/gui/waveEdit.cpp:202 src/gui/insEdit.cpp:325 +#: src/gui/insEdit.cpp:654 +msgid "Saw" +msgstr "Dente de serra" + +#: src/gui/waveEdit.cpp:39 +msgid "Cosine" +msgstr "Cosseno" + +#: src/gui/waveEdit.cpp:193 +msgid "Rect. Sine" +msgstr "Seno Retif." + +#: src/gui/waveEdit.cpp:194 +msgid "Abs. Sine" +msgstr "Seno Abs." + +#: src/gui/waveEdit.cpp:195 +msgid "Quart. Sine" +msgstr "Seno 1/4" + +#: src/gui/waveEdit.cpp:196 +msgid "Squish. Sine" +msgstr "Seno Espr." + +#: src/gui/waveEdit.cpp:197 +msgid "Abs. Squish. Sine" +msgstr "Seno Abs. Espr." + +#: src/gui/waveEdit.cpp:200 +msgid "rectSquare" +msgstr "Serra Logarítm." + +#: src/gui/waveEdit.cpp:203 +msgid "Rect. Saw" +msgstr "Serra Retif." + +#: src/gui/waveEdit.cpp:204 +msgid "Abs. Saw" +msgstr "Serra Abs." + +#: src/gui/waveEdit.cpp:206 +msgid "Cubed Saw" +msgstr "Serra ao Cubo" + +#: src/gui/waveEdit.cpp:207 +msgid "Rect. Cubed Saw" +msgstr "Serra ao Cubo Retif." + +#: src/gui/waveEdit.cpp:208 +msgid "Abs. Cubed Saw" +msgstr "Serra ao Cubo Abs." + +#: src/gui/waveEdit.cpp:210 +msgid "Cubed Sine" +msgstr "Seno ao Cubo" + +#: src/gui/waveEdit.cpp:211 +msgid "Rect. Cubed Sine" +msgstr "Seno ao Cubo Retif." + +#: src/gui/waveEdit.cpp:212 +msgid "Abs. Cubed Sine" +msgstr "Seno ao Cubo Abs." + +#: src/gui/waveEdit.cpp:213 +msgid "Quart. Cubed Sine" +msgstr "Seno ao Cubo 1/4" + +#: src/gui/waveEdit.cpp:214 +msgid "Squish. Cubed Sine" +msgstr "Seno ao Cubo Espr." + +#: src/gui/waveEdit.cpp:215 +msgid "Squish. Abs. Cub. Sine" +msgstr "Seno Cubo Espr. Abs." + +#: src/gui/waveEdit.cpp:218 +msgid "Rect. Triangle" +msgstr "Triângulo Retif." + +#: src/gui/waveEdit.cpp:219 +msgid "Abs. Triangle" +msgstr "Triângulo Abs." + +#: src/gui/waveEdit.cpp:220 +msgid "Quart. Triangle" +msgstr "Triângulo 1/4" + +#: src/gui/waveEdit.cpp:221 +msgid "Squish. Triangle" +msgstr "Triângulo Espr." + +#: src/gui/waveEdit.cpp:222 +msgid "Abs. Squish. Triangle" +msgstr "Triângulo Abs. Espr." + +#: src/gui/waveEdit.cpp:224 +msgid "Cubed Triangle" +msgstr "Triângulo ao Cubo" + +#: src/gui/waveEdit.cpp:225 +msgid "Rect. Cubed Triangle" +msgstr "Triângulo ao Cubo Retif." + +#: src/gui/waveEdit.cpp:226 +msgid "Abs. Cubed Triangle" +msgstr "Triângulo ao Cubo Abs." + +#: src/gui/waveEdit.cpp:227 +msgid "Quart. Cubed Triangle" +msgstr "Triângulo ao Cubo 1/4" + +#: src/gui/waveEdit.cpp:228 +msgid "Squish. Cubed Triangle" +msgstr "Triângulo ao Cubo Espr." + +#: src/gui/waveEdit.cpp:229 +msgid "Squish. Abs. Cub. Triangle" +msgstr "Triângulo Cubo Espr. Abs." + +#: src/gui/waveEdit.cpp:412 src/gui/waveEdit.cpp:413 +msgid "no wavetable selected" +msgstr "nenhuma wavetable selecionada" + +#: src/gui/waveEdit.cpp:424 src/gui/sampleEdit.cpp:111 src/gui/insEdit.cpp:5223 +msgid "select one..." +msgstr "selecione um..." + +#: src/gui/waveEdit.cpp:432 src/gui/waveEdit.cpp:439 src/gui/sampleEdit.cpp:119 +#: src/gui/sampleEdit.cpp:126 src/gui/insEdit.cpp:5236 src/gui/insEdit.cpp:5243 +msgid "or" +msgstr "ou" + +#: src/gui/waveEdit.cpp:441 src/gui/sampleEdit.cpp:128 src/gui/insEdit.cpp:5245 +msgid "Create New" +msgstr "Criar um novo" + +#: src/gui/waveEdit.cpp:487 +msgid "Steps" +msgstr "Degraus" + +#: src/gui/waveEdit.cpp:491 +msgid "Lines" +msgstr "Linhas" + +#: src/gui/waveEdit.cpp:496 src/gui/insEdit.cpp:2687 +msgid "Width" +msgstr "Largura" + +#: src/gui/waveEdit.cpp:498 +msgid "" +"use a width of:\n" +"- any on Amiga/N163\n" +"- 32 on Game Boy, PC Engine, SCC, Konami Bubble System, Namco WSG, Virtual " +"Boy and WonderSwan\n" +"- 64 on FDS\n" +"- 128 on X1-010\n" +"any other widths will be scaled during playback." +msgstr "" + +#: src/gui/waveEdit.cpp:510 +msgid "Height" +msgstr "Altura" + +#: src/gui/waveEdit.cpp:512 +msgid "" +"use a height of:\n" +"- 16 for Game Boy, WonderSwan, Namco WSG, Konami Bubble System, X1-010 " +"Envelope shape and N163\n" +"- 32 for PC Engine\n" +"- 64 for FDS and Virtual Boy\n" +"- 256 for X1-010 and SCC\n" +"any other heights will be scaled during playback." +msgstr "" + +#: src/gui/waveEdit.cpp:578 +msgid "Shapes" +msgstr "Formas" + +#: src/gui/waveEdit.cpp:597 src/gui/insEdit.cpp:5879 src/gui/insEdit.cpp:6922 +#: src/gui/insEdit.cpp:6948 src/gui/insEdit.cpp:7008 src/gui/insEdit.cpp:7048 +#: src/gui/insEdit.cpp:7150 src/gui/insEdit.cpp:7436 src/gui/insEdit.cpp:7472 +msgid "Duty" +msgstr "Ciclo de trabalho" + +#: src/gui/waveEdit.cpp:607 +msgid "Exponent" +msgstr "Exponente" + +#: src/gui/waveEdit.cpp:617 +msgid "XOR Point" +msgstr "Ponto de XOR" + +#: src/gui/waveEdit.cpp:627 +msgid "Amplitude/Phase" +msgstr "Amplitude/Fase" + +#: src/gui/waveEdit.cpp:679 src/gui/waveEdit.cpp:723 src/gui/waveEdit.cpp:728 +msgid "Op" +msgstr "Op" + +#: src/gui/waveEdit.cpp:683 +msgid "Mult" +msgstr "Mult" + +#: src/gui/waveEdit.cpp:685 +msgid "FB" +msgstr "FB" + +#: src/gui/waveEdit.cpp:749 src/gui/waveEdit.cpp:750 +msgid "Connection Diagram" +msgstr "Diagrama de Conexão" + +#: src/gui/waveEdit.cpp:765 +msgid "Out" +msgstr "Saída" + +#: src/gui/waveEdit.cpp:872 +msgid "WaveTools" +msgstr "Ferramentas de Onda" + +#: src/gui/waveEdit.cpp:890 +msgid "Scale X" +msgstr "Escala X" + +#: src/gui/waveEdit.cpp:896 +msgid "wavetable longer than 256 samples!" +msgstr "wavetable mais longa que 256 amostras!" + +#: src/gui/waveEdit.cpp:960 +msgid "Scale Y" +msgstr "Escala Y" + +#: src/gui/waveEdit.cpp:978 +msgid "Offset X" +msgstr "Deslocamento X" + +#: src/gui/waveEdit.cpp:1000 +msgid "Offset Y" +msgstr "Deslocamento Y" + +#: src/gui/waveEdit.cpp:1017 +msgid "Smooth" +msgstr "Suavizar" + +#: src/gui/waveEdit.cpp:1045 src/gui/sampleEdit.cpp:996 +msgid "Amplify" +msgstr "Amplificar" + +#: src/gui/waveEdit.cpp:1063 src/gui/sampleEdit.cpp:1046 +msgid "Normalize" +msgstr "Normalizar" + +#: src/gui/waveEdit.cpp:1105 src/gui/sampleEdit.cpp:1121 +msgid "Reverse" +msgstr "Reverter" + +#: src/gui/waveEdit.cpp:1117 +msgid "Half" +msgstr "Cortar pela metade" + +#: src/gui/waveEdit.cpp:1127 +msgid "Double" +msgstr "Dobrar" + +#: src/gui/waveEdit.cpp:1137 +msgid "Convert Signed/Unsigned" +msgstr "Converter sinalização (signed/unsigned)" + +#: src/gui/waveEdit.cpp:1167 +msgid "Dec" +msgstr "Dec" + +#: src/gui/waveEdit.cpp:1171 src/gui/csPlayer.cpp:247 +msgid "Hex" +msgstr "Hex" + +#: src/gui/waveEdit.cpp:1179 +msgid "Signed/Unsigned" +msgstr "Sinalização (signed/unsigned)" + +#: src/gui/sampleEdit.cpp:65 +#, c-format +msgid "%s: maximum sample rate is %d" +msgstr "%s: a taxa de amostragem máxima é %d" + +#: src/gui/sampleEdit.cpp:72 +#, c-format +msgid "%s: minimum sample rate is %d" +msgstr "%s: a taxa de amostragem mínima é %d" + +#: src/gui/sampleEdit.cpp:79 +#, c-format +msgid "%s: sample rate must be %d" +msgstr "%s: a taxa de amostragem deve ser %d" + +#: src/gui/sampleEdit.cpp:99 src/gui/sampleEdit.cpp:100 +msgid "no sample selected" +msgstr "nenhuma sample selecionada" + +#: src/gui/sampleEdit.cpp:229 +#, c-format +msgid "SNES: loop start must be a multiple of 16 (try with %d)" +msgstr "SNES: início do loop precisa ser múltiplo de 16 (tente com %d)" + +#: src/gui/sampleEdit.cpp:235 +#, c-format +msgid "SNES: loop end must be a multiple of 16 (try with %d)" +msgstr "SNES: fim do loop precisa ser múltiplo de 16 (tente com %d)" + +#: src/gui/sampleEdit.cpp:240 +msgid "SNES: sample length will be padded to multiple of 16" +msgstr "SNES: tamanho da sample precisa ser preenchida até um múltiplo de 16" + +#: src/gui/sampleEdit.cpp:249 +msgid "QSound: loop cannot be longer than 32767 samples" +msgstr "QSound: loop não pode ser mais longo que 32767" + +#: src/gui/sampleEdit.cpp:259 +msgid "NES: loop point ignored on DPCM (may only loop entire sample)" +msgstr "" +"NES: o ponto de repetição (loop) é ignorado no DPCM (só é possível repetir a " +"sample inteira)" + +#: src/gui/sampleEdit.cpp:263 +msgid "NES: maximum DPCM sample length is 32648" +msgstr "NES: o tamanho máximo de uma sample DPCM é 32648" + +#: src/gui/sampleEdit.cpp:268 +msgid "X1-010: samples can't loop" +msgstr "X1-010: não é possível repetir (loop) samples" + +#: src/gui/sampleEdit.cpp:271 +msgid "X1-010: maximum sample length is 131072" +msgstr "X1-010: o tamanho máximo de uma sample é 131072" + +#: src/gui/sampleEdit.cpp:276 +msgid "GA20: samples can't loop" +msgstr "GA20: samples não podem repetir (loop)" + +#: src/gui/sampleEdit.cpp:287 +msgid "YM2608: loop point ignored on ADPCM (may only loop entire sample)" +msgstr "" +"YM2608: o ponto de repetição (loop) é ignorado no ADPCM (só é possível " +"repetir a sample inteira)" + +#: src/gui/sampleEdit.cpp:290 +msgid "YM2608: sample length will be padded to multiple of 512" +msgstr "YM2608: o comprimento da sample será preenchida até um múltiplo de 512" + +#: src/gui/sampleEdit.cpp:300 +msgid "YM2610: ADPCM-A samples can't loop" +msgstr "YM2610: samples ADPCM-A não podem repetir (loop)" + +#: src/gui/sampleEdit.cpp:302 +msgid "YM2610: loop point ignored on ADPCM-B (may only loop entire sample)" +msgstr "" +"YM2610: o ponto de repetição (loop) é ignorado no ADPCM-B (só é possível " +"repetir a sample inteira)" + +#: src/gui/sampleEdit.cpp:305 +msgid "YM2610: sample length will be padded to multiple of 512" +msgstr "YM2610: o comprimento da sample será preenchida até um múltiplo de 512" + +#: src/gui/sampleEdit.cpp:309 +msgid "YM2610: maximum ADPCM-A sample length is 2097152" +msgstr "YM2610: o comprimento máximo de uma sample ADPCM-A é 2097152" + +#: src/gui/sampleEdit.cpp:318 +msgid "Y8950: loop point ignored on ADPCM (may only loop entire sample)" +msgstr "" +"Y8950: o ponto de repetição (loop) é ignorado no ADPCM (só é possível " +"repetir a sample inteira)" + +#: src/gui/sampleEdit.cpp:321 +msgid "Y8950: sample length will be padded to multiple of 512" +msgstr "Y8950: o comprimento da sample será preenchida até um múltiplo de 512" + +#: src/gui/sampleEdit.cpp:328 +msgid "Amiga: loop start must be a multiple of 2" +msgstr "Amiga: o início do loop precisa ser um múltiplo de 2" + +#: src/gui/sampleEdit.cpp:331 +msgid "Amiga: loop end must be a multiple of 2" +msgstr "Amiga: o final do loop precisa ser um múltiplo de 2" + +#: src/gui/sampleEdit.cpp:335 +msgid "Amiga: maximum sample length is 131070" +msgstr "Amiga: o comprimento máximo da sample é 131070" + +#: src/gui/sampleEdit.cpp:344 +msgid "SegaPCM: maximum sample length is 65280" +msgstr "SegaPCM: o comprimento máximo da sample é 65280" + +#: src/gui/sampleEdit.cpp:353 +msgid "K053260: loop point ignored (may only loop entire sample)" +msgstr "" +"K053260: o ponto de repetição (loop) é ignorado (só é possível repetir a " +"sample inteira)" + +#: src/gui/sampleEdit.cpp:357 +msgid "K053260: maximum sample length is 65535" +msgstr "K053260: o comprimento máximo da sample é 65535" + +#: src/gui/sampleEdit.cpp:362 +msgid "C140: maximum sample length is 65535" +msgstr "C140: o comprimento máximo da sample é 65535" + +#: src/gui/sampleEdit.cpp:371 +msgid "C219: loop start must be a multiple of 2" +msgstr "C219: o início do loop precisa ser um múltiplo de 2" + +#: src/gui/sampleEdit.cpp:374 +msgid "C219: loop end must be a multiple of 2" +msgstr "C219: o final do loop precisa ser um múltiplo de 2" + +#: src/gui/sampleEdit.cpp:378 +msgid "C219: maximum sample length is 131072" +msgstr "C219: o comprimento máximo da sample é 131072" + +#: src/gui/sampleEdit.cpp:386 +msgid "MSM6295: samples can't loop" +msgstr "MSM6295: não é possível repetir (loop) samples" + +#: src/gui/sampleEdit.cpp:389 +msgid "MSM6295: maximum bankswitched sample length is 129024" +msgstr "MSM6295: o comprimento máximo da sample com bankswitching é 129024" + +#: src/gui/sampleEdit.cpp:395 +msgid "GBA DMA: loop start must be a multiple of 4" +msgstr "GBA DMA: o início do loop precisa ser um múltiplo de 4" + +#: src/gui/sampleEdit.cpp:398 +msgid "GBA DMA: loop length must be a multiple of 16" +msgstr "GBA DMA: o comprimento do loop precisa ser um múltiplo de 16" + +#: src/gui/sampleEdit.cpp:402 +msgid "GBA DMA: sample length will be padded to multiple of 16" +msgstr "GBA DMA: o comprimento da sample será preenchida até um múltiplo de 16" + +#: src/gui/sampleEdit.cpp:411 +msgid "ES5506: backward loop mode isn't supported" +msgstr "ES5506: modo de repetição (loop) reverso não é suportado" + +#: src/gui/sampleEdit.cpp:414 +msgid "" +"backward/ping-pong only supported in Generic PCM DAC\n" +"ping-pong also on ES5506" +msgstr "" +"reverso/pingue-pongue suportado somente no DAC PCM Genérico\n" +"pingue-pongue também suportado no ES5506" + +#: src/gui/sampleEdit.cpp:444 +msgid "Info" +msgstr "Informações" + +#: src/gui/sampleEdit.cpp:447 src/gui/sampleEdit.cpp:933 +msgid "Rate" +msgstr "Taxa" + +#: src/gui/sampleEdit.cpp:453 +msgid "Compat Rate" +msgstr "Taxa de Compatibilidade" + +#: src/gui/sampleEdit.cpp:457 +msgid "" +"used in DefleMask-compatible sample mode (17xx), in where samples are mapped " +"to an octave." +msgstr "" +"usado no modo de sample compatível com Deflemask (17xx), em que samples são " +"mapeadas a uma oitava." + +#: src/gui/sampleEdit.cpp:463 +#, c-format +msgid "Loop (length: %d)##Loop" +msgstr "Loop (comprimento: %d)" + +#: src/gui/sampleEdit.cpp:463 src/gui/insEdit.cpp:544 src/gui/insEdit.cpp:554 +#: src/gui/insEdit.cpp:605 src/gui/insEdit.cpp:6017 +msgid "Loop" +msgstr "Loop (repetição)" + +#: src/gui/sampleEdit.cpp:487 src/gui/sampleEdit.cpp:716 +#: src/gui/sampleEdit.cpp:752 +msgid "changing the loop in a BRR sample may result in glitches!" +msgstr "alterar o loop em uma sample BRR pode resultar em falhas!" + +#: src/gui/sampleEdit.cpp:529 +msgid "BRR emphasis" +msgstr "Ênfase BRR" + +#: src/gui/sampleEdit.cpp:538 +msgid "" +"this is a BRR sample.\n" +"enabling this option will muffle it (only affects non-SNES chips)." +msgstr "" +"esta é uma sample BRR.\n" +"habilitar essa opção irá abafá-la (afeta somente chips além do SNES)." + +#: src/gui/sampleEdit.cpp:540 +msgid "" +"enable this option to slightly boost high frequencies\n" +"to compensate for the SNES' Gaussian filter's muffle." +msgstr "" +"habilite essa opção para enfatizar levemente as frequências altas\n" +"para compensar pelo abafamento do filtro gaussiano do SNES." + +#: src/gui/sampleEdit.cpp:546 +msgid "8-bit dither" +msgstr "Aplicar dither 8-bit" + +#: src/gui/sampleEdit.cpp:554 +msgid "dither the sample when used on a chip that only supports 8-bit samples." +msgstr "" +"Aplicar dithering 8-bit na sample quando utilizada em um chip que só suporta " +"samples 8-bit." + +#: src/gui/sampleEdit.cpp:695 src/gui/gui.cpp:2975 +msgid "Start" +msgstr "Início" + +#: src/gui/sampleEdit.cpp:731 src/gui/gui.cpp:2983 +msgid "End" +msgstr "Fim" + +#: src/gui/sampleEdit.cpp:841 +#, fuzzy, c-format +msgid "" +"%s\n" +"%d bytes free" +msgstr "" +"%s\n" +"%d byte disponível" + +#: src/gui/sampleEdit.cpp:843 +#, fuzzy, c-format +msgid "" +"%s (%s)\n" +"%d bytes free" +msgstr "" +"%s (%s)\n" +"%d byte disponível" + +#: src/gui/sampleEdit.cpp:847 +msgid "" +"\n" +"\n" +"not enough memory for this sample!" +msgstr "" +"\n" +"\n" +"não há memória suficiente para esta sample!" + +#: src/gui/sampleEdit.cpp:871 +msgid "Edit mode: Select" +msgstr "Modo de edição: Selecionar" + +#: src/gui/sampleEdit.cpp:880 +msgid "Edit mode: Draw" +msgstr "Modo de edição: Desenhar" + +#: src/gui/sampleEdit.cpp:891 src/gui/sampleEdit.cpp:902 +msgid "Resize" +msgstr "Redimensionar" + +#: src/gui/sampleEdit.cpp:906 +msgid "couldn't resize! make sure your sample is 8 or 16-bit." +msgstr "não pôde redimensionar! verifique se sua sample é 8 or 16-bit." + +#: src/gui/sampleEdit.cpp:926 src/gui/sampleEdit.cpp:957 +msgid "Resample" +msgstr "Reamostrar" + +#: src/gui/sampleEdit.cpp:951 +msgid "Factor" +msgstr "Razão" + +#: src/gui/sampleEdit.cpp:956 +msgid "Filter" +msgstr "Filtro" + +#: src/gui/sampleEdit.cpp:961 +msgid "couldn't resample! make sure your sample is 8 or 16-bit." +msgstr "não pôde redimensionar! verifique se sua sample é 8 or 16-bit." + +#: src/gui/sampleEdit.cpp:1010 src/gui/sampleEdit.cpp:1197 +#: src/gui/sampleEdit.cpp:1281 +msgid "Apply" +msgstr "Aplicar" + +#: src/gui/sampleEdit.cpp:1053 +msgid "Fade in" +msgstr "Fade in" + +#: src/gui/sampleEdit.cpp:1060 +msgid "Fade out" +msgstr "Fade out" + +#: src/gui/sampleEdit.cpp:1065 +msgid "Insert silence" +msgstr "Inserir silêncio" + +#: src/gui/sampleEdit.cpp:1076 +msgid "Go" +msgstr "Aplicar" + +#: src/gui/sampleEdit.cpp:1081 +msgid "couldn't insert! make sure your sample is 8 or 16-bit." +msgstr "não pôde inserir! verifique se sua sample é 8 or 16-bit." + +#: src/gui/sampleEdit.cpp:1098 +msgid "Apply silence" +msgstr "Aplicar silêncio" + +#: src/gui/sampleEdit.cpp:1112 +msgid "Trim" +msgstr "Cortar" + +#: src/gui/sampleEdit.cpp:1135 +msgid "Signed/unsigned exchange" +msgstr "Alternar sinalização (signed/unsigned)" + +#: src/gui/sampleEdit.cpp:1140 +msgid "Apply filter" +msgstr "Aplicar filtro" + +#: src/gui/sampleEdit.cpp:1151 +msgid "Cutoff:" +msgstr "Ponto de corte:" + +#: src/gui/sampleEdit.cpp:1161 src/gui/insEdit.cpp:5895 +#: src/gui/insEdit.cpp:5898 src/gui/insEdit.cpp:6953 src/gui/insEdit.cpp:7216 +#: src/gui/insEdit.cpp:7478 +msgid "Resonance" +msgstr "Ressonância" + +#: src/gui/sampleEdit.cpp:1167 src/gui/insEdit.cpp:6897 +msgid "Power" +msgstr "Potência" + +#: src/gui/sampleEdit.cpp:1181 +msgid "Low-pass" +msgstr "Passa-baixa" + +#: src/gui/sampleEdit.cpp:1186 +msgid "Band-pass" +msgstr "Passa-banda" + +#: src/gui/sampleEdit.cpp:1191 +msgid "High-pass" +msgstr "Passa-alta" + +#: src/gui/sampleEdit.cpp:1262 +msgid "Crossfade loop points" +msgstr "Aplicar crossfade nos pontos de loop" + +#: src/gui/sampleEdit.cpp:1271 +msgid "Number of samples" +msgstr "Número de amostras" + +#: src/gui/sampleEdit.cpp:1277 +msgid "Linear <-> Equal power" +msgstr "Linear <-> Equipotente" + +#: src/gui/sampleEdit.cpp:1283 +msgid "Crossfade: length would go out of bounds. Aborted..." +msgstr "" +"Crossfade: o comprimento estaria fora dos limites da sample. Abortado..." + +#: src/gui/sampleEdit.cpp:1286 +msgid "Crossfade: length would overflow loopStart. Try a smaller random value." +msgstr "" +"Crossfade: o comprimento ultrapassaria o começo do loop. Tente um valor " +"menor aleatório." + +#: src/gui/sampleEdit.cpp:1332 +msgid "Preview sample" +msgstr "Prever sample" + +#: src/gui/sampleEdit.cpp:1346 +msgid "Create instrument from sample" +msgstr "Criar instrumento a partir da sample" + +#: src/gui/sampleEdit.cpp:1747 +msgid "paste (replace)" +msgstr "colar (substituir)" + +#: src/gui/sampleEdit.cpp:1750 +msgid "paste (mix)" +msgstr "colar (mesclar)" + +#: src/gui/sampleEdit.cpp:1754 src/gui/gui.cpp:2769 +msgid "select all" +msgstr "selecionar tudo" + +#: src/gui/sampleEdit.cpp:1758 +msgid "set loop to selection" +msgstr "definir loop para seleção" + +#: src/gui/sampleEdit.cpp:1761 +msgid "create wavetable from selection" +msgstr "criar wavetable a partir da seleção" + +#: src/gui/sampleEdit.cpp:1767 +msgid "Draw" +msgstr "Desenhar" + +#: src/gui/sampleEdit.cpp:1767 +msgid "Select" +msgstr "Selecionar" + +#: src/gui/sampleEdit.cpp:1769 +#, c-format +msgid "%d samples, %d bytes" +msgstr "" + +#: src/gui/sampleEdit.cpp:1784 +#, fuzzy, c-format +msgid " (%d-%d: %d samples)" +msgstr " (%d-%d: %d sample)" + +#: src/gui/sampleEdit.cpp:1976 +msgid "Non-8/16-bit samples cannot be edited without prior conversion." +msgstr "" +"Samples que não são 8/16-bit não podem ser editadas sem ser convertidas " +"primeiro." + +#: src/gui/newSong.cpp:122 src/gui/newSong.cpp:123 +msgid "Choose a System!" +msgstr "Escolha um Sistema!" + +#: src/gui/newSong.cpp:179 +msgid "Categories" +msgstr "Categorias" + +#: src/gui/newSong.cpp:210 +msgid "no systems here yet!" +msgstr "nenhum sistema aqui ainda!" + +#: src/gui/newSong.cpp:212 +msgid "no results" +msgstr "nenhum resultado" + +#: src/gui/newSong.cpp:228 +msgid "I'm feeling lucky" +msgstr "Estou com sorte" + +#: src/gui/newSong.cpp:230 +msgid "no categories available! what in the world." +msgstr "nenhuma categoria disponível! que país é esse..." + +#: src/gui/newSong.cpp:265 +msgid "it appears you're extremely lucky today!" +msgstr "" + +#: src/gui/cursor.cpp:205 +#, c-format +msgid "finish selection: %d.%d,%d - %d.%d,%d" +msgstr "" + +#: src/gui/tutorial.cpp:487 +msgid "" +"Play demo songs?\n" +"- Down: Play current song\n" +"- Up: Play demo songs" +msgstr "" + +#: src/gui/tutorial.cpp:491 +msgid "" +"Welcome to Combat Vehicle!\n" +"\n" +"Controls:\n" +"X - Shoot Arrow Key - Move\n" +"Z - Special Esc - Quit" +msgstr "" + +#: src/gui/tutorial.cpp:496 +msgid "GAME OVER" +msgstr "" + +#: src/gui/tutorial.cpp:498 +msgid "High Score!" +msgstr "" + +#: src/gui/tutorial.cpp:658 +msgid "Welcome!" +msgstr "" + +#: src/gui/tutorial.cpp:661 +msgid "welcome to Furnace, the biggest open-source chiptune tracker!" +msgstr "" + +#: src/gui/tutorial.cpp:665 +msgid "here are some tips to get you started:" +msgstr "" + +#: src/gui/tutorial.cpp:668 +msgid "" +"- add an instrument by clicking on + in Instruments\n" +"- click on the pattern view to focus it\n" +"- channel columns have the following, in this order: note, instrument, " +"volume and effects\n" +"- hit space bar while on the pattern to toggle Edit Mode\n" +"- click on the pattern or use arrow keys to move the cursor\n" +"- values (instrument, volume, effects and effect values) are in hexadecimal\n" +"- hit enter to play/stop the song\n" +"- extend the song by adding more orders in the Orders window\n" +"- click on the Orders matrix to change the patterns of a channel (left click " +"increases; right click decreases)" +msgstr "" + +#: src/gui/tutorial.cpp:680 +msgid "" +"if you need help, you may:\n" +"- read the manual (a file called manual.pdf)\n" +"- ask for help in Discussions (https://github.com/tildearrow/furnace/" +"discussions), the Furnace Discord (https://discord.gg/EfrwT2wq7z) or Furnace " +"in Revolt (official: https://rvlt.gg/GRPS6tmc)" +msgstr "" + +#: src/gui/tutorial.cpp:687 +msgid "" +"if you find any issues, be sure to report them! the issue tracker is here: " +"https://github.com/tildearrow/furnace/issues" +msgstr "" + +#: src/gui/tutorial.cpp:1428 +#, c-format +msgid "STAGE %d" +msgstr "" + +#: src/gui/songInfo.cpp:32 +msgid "Song Info##Song Information" +msgstr "" + +#: src/gui/songInfo.cpp:50 +msgid "Author" +msgstr "Autor" + +#: src/gui/songInfo.cpp:60 +msgid "Album" +msgstr "Álbum" + +#: src/gui/songInfo.cpp:79 +msgid "Auto" +msgstr "Automático" + +#: src/gui/songInfo.cpp:100 +msgid "Tuning (A-4)" +msgstr "Afinação (A-4)" + +#: src/gui/grooves.cpp:38 +msgid "use effect 09xx to select a groove pattern." +msgstr "use o efeito 09xx para selecionar um padrão de groove." + +#: src/gui/grooves.cpp:48 src/gui/gui.cpp:4480 +msgid "pattern" +msgstr "sequência" + +#: src/gui/grooves.cpp:132 +msgid "remove" +msgstr "excluir" + +#: src/gui/doAction.cpp:45 src/gui/gui.cpp:4201 +msgid "Unsaved changes! Save changes before opening another file?" +msgstr "Há mudanças não salvas! Salvar mudanças antes de abrir outro arquivo?" + +#: src/gui/doAction.cpp:52 +msgid "Unsaved changes! Save changes before opening backup?" +msgstr "Há mudanças não salvas! Salvar mudanças antes de abrir o backup?" + +#: src/gui/doAction.cpp:62 src/gui/gui.cpp:4237 src/gui/gui.cpp:5025 +#: src/gui/gui.cpp:5063 src/gui/gui.cpp:5069 src/gui/gui.cpp:5657 +#: src/gui/gui.cpp:5681 src/gui/gui.cpp:5705 src/gui/gui.cpp:5729 +#: src/gui/gui.cpp:5753 src/gui/gui.cpp:5777 +#, c-format +msgid "Error while saving file! (%s)" +msgstr "Erro ao salvar o arquivo! (%s)" + +#: src/gui/doAction.cpp:189 +msgid "Error while sending request (MIDI output not configured?)" +msgstr "Erro ao enviar a requisição (a saída MIDI não está configurada?)" + +#: src/gui/doAction.cpp:197 +msgid "Select an option: (cannot be undone!)" +msgstr "Selecione uma opção: (não pode ser desfeita!)" + +#: src/gui/doAction.cpp:691 src/gui/doAction.cpp:720 src/gui/doAction.cpp:1593 +#: src/gui/gui.cpp:6091 +msgid "too many instruments!" +msgstr "há muitos instrumentos!" + +#: src/gui/doAction.cpp:1124 +msgid "couldn't paste! make sure your sample is 8 or 16-bit." +msgstr "não pôde colar! tenha certeza de que sua sample é 8 ou 16-bit." + +#: src/gui/doAction.cpp:1628 +msgid "select at least one sample!" +msgstr "selecione pelo menos uma sample!" + +#: src/gui/doAction.cpp:1630 +msgid "maximum size is 256 samples!" +msgstr "o tamanho máximo é de 256 amostras!" + +#: src/gui/csPlayer.cpp:113 +msgid "Load" +msgstr "Carregar" + +#: src/gui/csPlayer.cpp:117 +msgid "Kill" +msgstr "Matar" + +#: src/gui/csPlayer.cpp:119 +msgid "Kikai wa mou shindeiru!" +msgstr "¡La máquina ya está muerta!" + +#: src/gui/csPlayer.cpp:123 +msgid "Burn Current Song" +msgstr "Destruir Música Atual" + +#: src/gui/csPlayer.cpp:141 +msgid "Status" +msgstr "Estado" + +#: src/gui/csPlayer.cpp:148 +msgid "start" +msgstr "" + +#: src/gui/csPlayer.cpp:150 +msgid "PC" +msgstr "" + +#: src/gui/csPlayer.cpp:152 +msgid "wait" +msgstr "" + +#: src/gui/csPlayer.cpp:154 +msgid "SP" +msgstr "" + +#: src/gui/csPlayer.cpp:156 src/gui/insEdit.cpp:2733 +msgid "note" +msgstr "nota" + +#: src/gui/csPlayer.cpp:158 src/gui/insEdit.cpp:2728 +msgid "pitch" +msgstr "tom" + +#: src/gui/csPlayer.cpp:160 +msgid "vol" +msgstr "" + +#: src/gui/csPlayer.cpp:162 +msgid "vols" +msgstr "" + +#: src/gui/csPlayer.cpp:164 +msgid "vib" +msgstr "" + +#: src/gui/csPlayer.cpp:166 +msgid "porta" +msgstr "" + +#: src/gui/csPlayer.cpp:168 +msgid "arp" +msgstr "" + +#: src/gui/csPlayer.cpp:203 +msgid "Trace" +msgstr "" + +#: src/gui/csPlayer.cpp:244 +msgid "Disassemble" +msgstr "" + +#: src/gui/gui.cpp:1136 src/gui/gui.cpp:1140 +msgid "the song is over!" +msgstr "a música terminou!" + +#: src/gui/gui.cpp:1667 +msgid "Open File" +msgstr "Abrir arquivo" + +#: src/gui/gui.cpp:1668 src/gui/gui.cpp:1798 src/gui/gui.cpp:1838 +#: src/gui/gui.cpp:1953 src/gui/gui.cpp:1962 src/gui/gui.cpp:1971 +#: src/gui/gui.cpp:2073 src/gui/gui.cpp:2093 src/gui/gui.cpp:2111 +msgid "compatible files" +msgstr "arquivos compatíveis" + +#: src/gui/gui.cpp:1669 src/gui/gui.cpp:1743 src/gui/gui.cpp:1799 +#: src/gui/gui.cpp:1839 src/gui/gui.cpp:1851 src/gui/gui.cpp:1870 +#: src/gui/gui.cpp:2074 src/gui/gui.cpp:2084 src/gui/gui.cpp:2095 +#: src/gui/gui.cpp:2113 +msgid "all files" +msgstr "todos os arquivos" + +#: src/gui/gui.cpp:1676 +msgid "no backups made yet!" +msgstr "nenhum backup realizado ainda!" + +#: src/gui/gui.cpp:1681 src/gui/gui.cpp:1690 src/gui/gui.cpp:2130 +msgid "Furnace song" +msgstr "Música do Furnace" + +#: src/gui/gui.cpp:1689 +msgid "Save File" +msgstr "Salvar Arquivo" + +#: src/gui/gui.cpp:1698 src/gui/gui.cpp:1708 +msgid "Export DMF" +msgstr "" + +#: src/gui/gui.cpp:1699 +msgid "DefleMask 1.1.3 module" +msgstr "Módulo do DefleMask 1.1.3" + +#: src/gui/gui.cpp:1709 +msgid "DefleMask 1.0/legacy module" +msgstr "Módulo do DefleMask 1.0/legado" + +#: src/gui/gui.cpp:1726 +msgid "Load Instrument" +msgstr "Carregar Instrumento" + +#: src/gui/gui.cpp:1727 +msgid "all compatible files" +msgstr "todos os arquivos compatíveis" + +#: src/gui/gui.cpp:1728 src/gui/gui.cpp:1777 +msgid "Furnace instrument" +msgstr "Instrumento do Furnace" + +#: src/gui/gui.cpp:1729 src/gui/gui.cpp:1787 +msgid "DefleMask preset" +msgstr "Predefinição do DefleMask" + +#: src/gui/gui.cpp:1730 +msgid "TFM Music Maker instrument" +msgstr "Instrumento do TFM Music Maker" + +#: src/gui/gui.cpp:1731 +msgid "VGM Music Maker instrument" +msgstr "Instrumento do VGM Music Maker" + +#: src/gui/gui.cpp:1732 +msgid "Scream Tracker 3 instrument" +msgstr "Instrumento do Scream Tracker 3" + +#: src/gui/gui.cpp:1733 +msgid "SoundBlaster instrument" +msgstr "Instrumento SoundBlaster" + +#: src/gui/gui.cpp:1734 +msgid "Wohlstand OPL instrument" +msgstr "Instrumento Wohlstand OPL" + +#: src/gui/gui.cpp:1735 +msgid "Wohlstand OPN instrument" +msgstr "Instrumento Wohlstand OPN" + +#: src/gui/gui.cpp:1736 +msgid "Gens KMod patch dump" +msgstr "Extrato de patch Gens KMod" + +#: src/gui/gui.cpp:1737 +msgid "BNK file (AdLib)" +msgstr "Arquivo BNK (AdLib)" + +#: src/gui/gui.cpp:1738 +msgid "FF preset bank" +msgstr "Banco de predefinições do FF" + +#: src/gui/gui.cpp:1739 +msgid "2612edit GYB preset bank" +msgstr "Banco de predefinições GYB do 2612edit" + +#: src/gui/gui.cpp:1740 +msgid "VOPM preset bank" +msgstr "Banco de predefinições do VOPM" + +#: src/gui/gui.cpp:1741 +msgid "Wohlstand WOPL bank" +msgstr "Banco de predefinições Wohlstand WOPL" + +#: src/gui/gui.cpp:1742 +msgid "Wohlstand WOPN bank" +msgstr "Banco de predefinições Wohlstand WOPN" + +#: src/gui/gui.cpp:1776 src/gui/gui.cpp:1786 +msgid "Save Instrument" +msgstr "Salvar Instrumento" + +#: src/gui/gui.cpp:1797 +msgid "Load Wavetable" +msgstr "Carregar Wavetable" + +#: src/gui/gui.cpp:1809 src/gui/gui.cpp:1818 src/gui/gui.cpp:1827 +msgid "Save Wavetable" +msgstr "Salvar Wavetable" + +#: src/gui/gui.cpp:1810 +msgid "Furnace wavetable" +msgstr "Wavetable do Furnace" + +#: src/gui/gui.cpp:1819 +msgid "DefleMask wavetable" +msgstr "Wavetable do DefleMask" + +#: src/gui/gui.cpp:1828 +msgid "raw data" +msgstr "dados raw" + +#: src/gui/gui.cpp:1837 +msgid "Load Sample" +msgstr "Carregar Sample" + +#: src/gui/gui.cpp:1850 +msgid "Load Raw Sample" +msgstr "Carregar Sample em Formato Raw" + +#: src/gui/gui.cpp:1859 +msgid "Save Sample" +msgstr "Salvar Sample" + +#: src/gui/gui.cpp:1860 src/gui/gui.cpp:1880 src/gui/gui.cpp:1890 +#: src/gui/gui.cpp:1900 +msgid "Wave file" +msgstr "Arquivo Wave" + +#: src/gui/gui.cpp:1869 +msgid "Save Raw Sample" +msgstr "Salvar Sample em Formato Raw" + +#: src/gui/gui.cpp:1879 src/gui/gui.cpp:1889 src/gui/gui.cpp:1899 +msgid "Export Audio" +msgstr "Exportar Áudio" + +#: src/gui/gui.cpp:1909 +msgid "Export VGM" +msgstr "Exportar VGM" + +#: src/gui/gui.cpp:1910 +msgid "VGM file" +msgstr "Arquivo VGM" + +#: src/gui/gui.cpp:1919 +msgid "Export ZSM" +msgstr "Exportar ZSM" + +#: src/gui/gui.cpp:1920 +msgid "ZSM file" +msgstr "Arquivo ZSM" + +#: src/gui/gui.cpp:1929 src/gui/gui.cpp:1939 +msgid "Export Command Stream" +msgstr "Exportar Fluxo de Comandos" + +#: src/gui/gui.cpp:1930 +msgid "text file" +msgstr "arquivo de texto" + +#: src/gui/gui.cpp:1940 +msgid "binary file" +msgstr "arquivo binário" + +#: src/gui/gui.cpp:1947 src/gui/gui.cpp:5376 +msgid "Coming soon!" +msgstr "em breve!" + +#: src/gui/gui.cpp:1952 src/gui/gui.cpp:1961 src/gui/gui.cpp:1970 +msgid "Select Font" +msgstr "Selecione a Fonte" + +#: src/gui/gui.cpp:1979 +msgid "Select Color File" +msgstr "Selecione o Arquivo de Cores" + +#: src/gui/gui.cpp:1980 src/gui/gui.cpp:1989 src/gui/gui.cpp:2008 +#: src/gui/gui.cpp:2017 src/gui/gui.cpp:2026 src/gui/gui.cpp:2035 +#: src/gui/gui.cpp:2053 src/gui/gui.cpp:2062 +msgid "configuration files" +msgstr "arquivos de configuração" + +#: src/gui/gui.cpp:1988 +msgid "Select Keybind File" +msgstr "Selecione o Arquivo de Teclas de Atalho" + +#: src/gui/gui.cpp:1997 +msgid "Select Layout File" +msgstr "Selecione o Arquivo de Leiaute" + +#: src/gui/gui.cpp:1998 src/gui/gui.cpp:2044 +msgid ".ini files" +msgstr "arquivos .ini" + +#: src/gui/gui.cpp:2007 +msgid "Select User Presets File" +msgstr "" + +#: src/gui/gui.cpp:2016 +msgid "Select Settings File" +msgstr "" + +#: src/gui/gui.cpp:2025 +msgid "Export Colors" +msgstr "Exportar Cores" + +#: src/gui/gui.cpp:2034 +msgid "Export Keybinds" +msgstr "Exportar Teclas de Atalho" + +#: src/gui/gui.cpp:2043 +msgid "Export Layout" +msgstr "Exportar Leiaute" + +#: src/gui/gui.cpp:2052 +msgid "Export User Presets" +msgstr "" + +#: src/gui/gui.cpp:2061 +msgid "Export Settings" +msgstr "" + +#: src/gui/gui.cpp:2072 +msgid "Load ROM" +msgstr "Carregar ROM" + +#: src/gui/gui.cpp:2082 +msgid "Play Command Stream" +msgstr "Reproduzir Fluxo de Comandos" + +#: src/gui/gui.cpp:2083 +msgid "command stream" +msgstr "fluxo de comandos" + +#: src/gui/gui.cpp:2092 +msgid "Open Test" +msgstr "Abrir Teste" + +#: src/gui/gui.cpp:2094 src/gui/gui.cpp:2112 +msgid "another option" +msgstr "outra opção" + +#: src/gui/gui.cpp:2110 +msgid "Open Test (Multi)" +msgstr "Abrir Teste (Multi)" + +#: src/gui/gui.cpp:2129 +msgid "Save Test" +msgstr "Salvar Teste" + +#: src/gui/gui.cpp:2131 +msgid "DefleMask module" +msgstr "Módulo do DefleMask" + +#: src/gui/gui.cpp:2171 +msgid "compression error" +msgstr "" + +#: src/gui/gui.cpp:2183 +msgid "zlib stream error" +msgstr "" + +#: src/gui/gui.cpp:2205 +msgid "zlib finish stream error" +msgstr "" + +#: src/gui/gui.cpp:2316 +msgid "everything OK" +msgstr "" + +#: src/gui/gui.cpp:2334 +msgid "" +"you have loaded a backup!\n" +"if you need to, please save it somewhere.\n" +"\n" +"DO NOT RELY ON THE BACKUP SYSTEM FOR AUTO-SAVE!\n" +"Furnace will not save backups of backups." +msgstr "" +"você carregou um backup!\n" +"se você precisar, por favor salve-o em algum lugar.\n" +"\n" +"NÃO CONFIE NO SISTEMA DE BACKUP PARA SALVAMENTO AUTOMÁTICO!\n" +"O Furnace não irá realizar backups de backups." + +#: src/gui/gui.cpp:2342 src/gui/gui.cpp:3743 src/gui/gui.cpp:4213 +msgid "Unsaved changes! Save changes before opening file?" +msgstr "Há mudanças não salvas! Salvar mudanças antes de abrir o arquivo?" + +#: src/gui/gui.cpp:2736 +msgid "paste special..." +msgstr "colar especial..." + +#: src/gui/gui.cpp:2737 +msgid "paste mix" +msgstr "colar e mesclar" + +#: src/gui/gui.cpp:2738 +msgid "paste mix (background)" +msgstr "colar e mesclar (por trás)" + +#: src/gui/gui.cpp:2739 +msgid "paste with ins (foreground)" +msgstr "colar+mesclar com instrumento (pela frente)" + +#: src/gui/gui.cpp:2741 src/gui/gui.cpp:2753 src/gui/gui.cpp:2963 +msgid "no instruments available" +msgstr "nenhum instrumento disponível" + +#: src/gui/gui.cpp:2751 +msgid "paste with ins (background)" +msgstr "colar+mesclar com instrumento (por trás)" + +#: src/gui/gui.cpp:2763 +msgid "paste flood" +msgstr "colar e repetir" + +#: src/gui/gui.cpp:2764 +msgid "paste overflow" +msgstr "colar através das bordas" + +#: src/gui/gui.cpp:2773 +msgid "operation mask..." +msgstr "máscara de operação..." + +#: src/gui/gui.cpp:2780 +msgid "pull delete" +msgstr "excluir e puxar" + +#: src/gui/gui.cpp:2784 +msgid "insert" +msgstr "inserir" + +#: src/gui/gui.cpp:2792 +msgid "transpose (note)" +msgstr "transpor (nota)" + +#: src/gui/gui.cpp:2796 +msgid "transpose (value)" +msgstr "transpor (valor)" + +#: src/gui/gui.cpp:2808 src/gui/gui.cpp:3052 +msgid "invert values" +msgstr "inverter valores" + +#: src/gui/gui.cpp:2824 +msgid "collapse/expand" +msgstr "contrair/expandir" + +#: src/gui/gui.cpp:2829 +msgid "input latch" +msgstr "máscara de entrada" + +#: src/gui/gui.cpp:2856 +msgid "" +"&&: selected instrument\n" +"..: no instrument" +msgstr "" +"&&: instrumento selecionado\n" +"..: nenhum instrumento" + +#: src/gui/gui.cpp:2910 +msgid "Set" +msgstr "Limpar" + +#: src/gui/gui.cpp:2930 +msgid "note up" +msgstr "nota acima" + +#: src/gui/gui.cpp:2931 +msgid "note down" +msgstr "nota abaixo" + +#: src/gui/gui.cpp:2932 +msgid "octave up" +msgstr "oitava acima" + +#: src/gui/gui.cpp:2933 +msgid "octave down" +msgstr "oitava abaixo" + +#: src/gui/gui.cpp:2935 +msgid "values up" +msgstr "valores acima" + +#: src/gui/gui.cpp:2936 +msgid "values down" +msgstr "valores abaixo" + +#: src/gui/gui.cpp:2937 +msgid "values up (+16)" +msgstr "valores acima (+16)" + +#: src/gui/gui.cpp:2938 +msgid "values down (-16)" +msgstr "valores abaixo (-16)" + +#: src/gui/gui.cpp:2941 +msgid "transpose" +msgstr "transpor" + +#: src/gui/gui.cpp:2949 +msgid "Notes" +msgstr "Notas" + +#: src/gui/gui.cpp:2954 +msgid "Values" +msgstr "Valores" + +#: src/gui/gui.cpp:2961 +msgid "change instrument..." +msgstr "mudar instrumento..." + +#: src/gui/gui.cpp:2974 +msgid "gradient/fade..." +msgstr "degradê..." + +#: src/gui/gui.cpp:2991 src/gui/gui.cpp:3036 +msgid "Nibble mode" +msgstr "Modo nibble" + +#: src/gui/gui.cpp:3000 +msgid "Go ahead" +msgstr "Vá em frente" + +#: src/gui/gui.cpp:3006 src/gui/insEdit.cpp:7604 +msgid "scale..." +msgstr "escalonar..." + +#: src/gui/gui.cpp:3011 +msgid "Scale" +msgstr "Escalonar" + +#: src/gui/gui.cpp:3017 src/gui/insEdit.cpp:7632 +msgid "randomize..." +msgstr "aleatorizar..." + +#: src/gui/gui.cpp:3018 +msgid "Minimum" +msgstr "Mínimo" + +#: src/gui/gui.cpp:3027 +msgid "Maximum" +msgstr "Máximo" + +#: src/gui/gui.cpp:3056 +msgid "flip selection" +msgstr "reverter seleção" + +#: src/gui/gui.cpp:3059 +msgid "collapse/expand amount##CollapseAmount" +msgstr "contrair/expandir por quantidade##CollapseAmount" + +#: src/gui/gui.cpp:3068 +msgid "collapse pattern" +msgstr "contrair sequência" + +#: src/gui/gui.cpp:3069 +msgid "expand pattern" +msgstr "expandir sequência" + +#: src/gui/gui.cpp:3074 +msgid "collapse song" +msgstr "contrair música" + +#: src/gui/gui.cpp:3075 +msgid "expand song" +msgstr "expandir música" + +#: src/gui/gui.cpp:3080 +msgid "find/replace" +msgstr "localizar/substituir" + +#: src/gui/gui.cpp:3094 src/gui/gui.cpp:5807 src/gui/gui.cpp:7362 +#, c-format +msgid "could NOT save layout! %s" +msgstr "não pôde salvar o layout! %s" + +#: src/gui/gui.cpp:3106 +#, c-format +msgid "could NOT load layout! %s" +msgstr "" + +#: src/gui/gui.cpp:3568 +msgid "" +"Furnace has been started in Safe Mode.\n" +"this means that:\n" +"\n" +"- software rendering is being used\n" +"- audio output may not work\n" +"- font loading is disabled\n" +"\n" +"check any settings which may have made Furnace start up in this mode.\n" +"font loading is one of these." +msgstr "" +"Furnace foi inicializado no Modo de Segurança.\n" +"isso significa que:\n" +"\n" +"- renderização via software está sendo utilizada\n" +"- a saída de áudio pode não funcionar\n" +"- o carregamento de fontes está desabilitado\n" +"\n" +"confira quaisquer opções que podem ter feito o Furnace iniciar nesse modo.\n" +"o carregamento de fontes é uma delas." + +#: src/gui/gui.cpp:4053 +msgid "can't keep going without graphics! Furnace will quit now." +msgstr "" + +#: src/gui/gui.cpp:4191 +msgid "file" +msgstr "" + +#: src/gui/gui.cpp:4192 +msgid "new..." +msgstr "novo..." + +#: src/gui/gui.cpp:4199 +msgid "open..." +msgstr "abrir..." + +#: src/gui/gui.cpp:4206 +msgid "open recent" +msgstr "abrir recente" + +#: src/gui/gui.cpp:4222 +msgid "nothing here yet" +msgstr "nada aqui ainda" + +#: src/gui/gui.cpp:4225 +msgid "clear history" +msgstr "limpar histórico" + +#: src/gui/gui.cpp:4226 +msgid "Are you sure you want to clear the recent file list?" +msgstr "Tem certeza que quer limpar o histórico de arquivos recentes?" + +#: src/gui/gui.cpp:4241 +msgid "save as..." +msgstr "salvar como..." + +#: src/gui/gui.cpp:4246 src/gui/gui.cpp:4287 +msgid "export audio..." +msgstr "exportar áudio..." + +#: src/gui/gui.cpp:4250 src/gui/gui.cpp:4291 +msgid "export VGM..." +msgstr "exportar VGM..." + +#: src/gui/gui.cpp:4259 src/gui/gui.cpp:4300 +msgid "export ZSM..." +msgstr "exportar ZSM..." + +#: src/gui/gui.cpp:4269 src/gui/gui.cpp:4310 +msgid "export Amiga validation data..." +msgstr "exportar dados de validação do Amiga..." + +#: src/gui/gui.cpp:4274 src/gui/gui.cpp:4315 +msgid "export text..." +msgstr "exportar texto..." + +#: src/gui/gui.cpp:4278 src/gui/gui.cpp:4319 +msgid "export command stream..." +msgstr "exportar fluxo de comandos..." + +#: src/gui/gui.cpp:4282 src/gui/gui.cpp:4323 +msgid "export .dmf..." +msgstr "" + +#: src/gui/gui.cpp:4328 +msgid "export..." +msgstr "exportar..." + +#: src/gui/gui.cpp:4334 +msgid "manage chips" +msgstr "gerenciar chips" + +#: src/gui/gui.cpp:4338 +msgid "add chip..." +msgstr "adicionar chip..." + +#: src/gui/gui.cpp:4343 src/gui/sysManager.cpp:138 +#, c-format +msgid "cannot add chip! (%s)" +msgstr "" + +#: src/gui/gui.cpp:4355 +msgid "configure chip..." +msgstr "configurar chip..." + +#: src/gui/gui.cpp:4365 +msgid "change chip..." +msgstr "trocar chip..." + +#: src/gui/gui.cpp:4367 src/gui/gui.cpp:4390 +msgid "Preserve channel positions" +msgstr "Preservar posições dos canais" + +#: src/gui/gui.cpp:4379 src/gui/sysManager.cpp:109 +#, c-format +msgid "cannot change chip! (%s)" +msgstr "" + +#: src/gui/gui.cpp:4388 +msgid "remove chip..." +msgstr "remover chip..." + +#: src/gui/gui.cpp:4394 +#, c-format +msgid "cannot remove chip! (%s)" +msgstr "" + +#: src/gui/gui.cpp:4408 +msgid "open built-in assets directory" +msgstr "abrir diretório de recursos embutidos" + +#: src/gui/gui.cpp:4414 +msgid "restore backup" +msgstr "restaurar backup" + +#: src/gui/gui.cpp:4418 +msgid "exit..." +msgstr "sair..." + +#: src/gui/gui.cpp:4426 +msgid "edit" +msgstr "" + +#: src/gui/gui.cpp:4434 +msgid "clear..." +msgstr "apagar..." + +#: src/gui/gui.cpp:4439 +msgid "settings" +msgstr "" + +#: src/gui/gui.cpp:4441 +msgid "full screen" +msgstr "tela cheia" + +#: src/gui/gui.cpp:4445 +msgid "lock layout" +msgstr "travar leiaute" + +#: src/gui/gui.cpp:4448 +msgid "pattern visualizer" +msgstr "visualizador de sequência" + +#: src/gui/gui.cpp:4454 +msgid "reset layout" +msgstr "redefinir leiaute" + +#: src/gui/gui.cpp:4458 +msgid "switch to mobile view" +msgstr "trocar para leiaute otimizado para dispositivos móveis" + +#: src/gui/gui.cpp:4462 +msgid "user systems..." +msgstr "" + +#: src/gui/gui.cpp:4465 +msgid "settings..." +msgstr "configurações..." + +#: src/gui/gui.cpp:4471 +msgid "Window" +msgstr "" + +#: src/gui/gui.cpp:4471 +msgid "window" +msgstr "" + +#: src/gui/gui.cpp:4472 +msgid "song" +msgstr "música" + +#: src/gui/gui.cpp:4473 +msgid "song comments" +msgstr "comentários da música" + +#: src/gui/gui.cpp:4474 +msgid "song information" +msgstr "informações da música" + +#: src/gui/gui.cpp:4475 +msgid "subsongs" +msgstr "subfaixas" + +#: src/gui/gui.cpp:4477 +msgid "channels" +msgstr "canais" + +#: src/gui/gui.cpp:4478 +msgid "chip manager" +msgstr "gerenciador de chips" + +#: src/gui/gui.cpp:4479 +msgid "orders" +msgstr "ordens" + +#: src/gui/gui.cpp:4481 +msgid "pattern manager" +msgstr "gerenciador de sequências" + +#: src/gui/gui.cpp:4482 +msgid "mixer" +msgstr "mixer" + +#: src/gui/gui.cpp:4483 +msgid "compatibility flags" +msgstr "opções de compatibilidade" + +#: src/gui/gui.cpp:4486 src/gui/gui.cpp:4488 +msgid "assets" +msgstr "recursos" + +#: src/gui/gui.cpp:4490 +msgid "instruments" +msgstr "instrumentos" + +#: src/gui/gui.cpp:4491 +msgid "samples" +msgstr "samples" + +#: src/gui/gui.cpp:4492 +msgid "wavetables" +msgstr "wavetables" + +#: src/gui/gui.cpp:4495 +msgid "instrument editor" +msgstr "editor de instrumentos" + +#: src/gui/gui.cpp:4496 +msgid "sample editor" +msgstr "editor de samples" + +#: src/gui/gui.cpp:4497 +msgid "wavetable editor" +msgstr "editor de wavetables" + +#: src/gui/gui.cpp:4500 +msgid "visualizers" +msgstr "visualizadores" + +#: src/gui/gui.cpp:4501 +msgid "oscilloscope (master)" +msgstr "osciloscópio (mestre)" + +#: src/gui/gui.cpp:4502 +msgid "oscilloscope (per-channel)" +msgstr "osciloscópio (por canal)" + +#: src/gui/gui.cpp:4503 +msgid "oscilloscope (X-Y)" +msgstr "osciloscópio (X-Y)" + +#: src/gui/gui.cpp:4504 +msgid "volume meter" +msgstr "medidor de volume" + +#: src/gui/gui.cpp:4507 +msgid "tempo" +msgstr "tempo" + +#: src/gui/gui.cpp:4508 +msgid "clock" +msgstr "clock" + +#: src/gui/gui.cpp:4509 +msgid "grooves" +msgstr "grooves" + +#: src/gui/gui.cpp:4510 +msgid "speed" +msgstr "velocidade" + +#: src/gui/gui.cpp:4514 +msgid "log viewer" +msgstr "visualizador de logs" + +#: src/gui/gui.cpp:4515 +msgid "register view" +msgstr "visualização de registradores" + +#: src/gui/gui.cpp:4516 +msgid "statistics" +msgstr "estatísticas" + +#: src/gui/gui.cpp:4517 +msgid "memory composition" +msgstr "composição da memória" + +#: src/gui/gui.cpp:4521 src/gui/gui.cpp:4529 +msgid "effect list" +msgstr "lista de efeitos" + +#: src/gui/gui.cpp:4522 +msgid "play/edit controls" +msgstr "controles de reprodução/edição" + +#: src/gui/gui.cpp:4523 +msgid "piano/input pad" +msgstr "piano/teclado virtual" + +#: src/gui/gui.cpp:4524 +msgid "spoiler" +msgstr "spoiler" + +#: src/gui/gui.cpp:4528 +msgid "Help" +msgstr "" + +#: src/gui/gui.cpp:4528 +msgid "help" +msgstr "" + +#: src/gui/gui.cpp:4530 +msgid "debug menu" +msgstr "menu de depuração" + +#: src/gui/gui.cpp:4531 +msgid "inspector" +msgstr "inspetor" + +#: src/gui/gui.cpp:4532 +msgid "panic" +msgstr "pânico" + +#: src/gui/gui.cpp:4533 +msgid "about..." +msgstr "sobre..." + +#: src/gui/gui.cpp:4548 +#, c-format +msgid "| Speed %d:%d" +msgstr "| Velocidade %d:%d" + +#: src/gui/gui.cpp:4550 +#, c-format +msgid "| Speed %d" +msgstr "| Velocidade %d" + +#: src/gui/gui.cpp:4552 +msgid "| Groove" +msgstr "| Groove" + +#: src/gui/gui.cpp:4555 +#, c-format +msgid " @ %gHz (%g BPM) " +msgstr " em %gHz (%g BPM) " + +#: src/gui/gui.cpp:4558 +#, c-format +msgid "| Order %.2X/%.2X " +msgstr "| Ordem %.2X/%.2X " + +#: src/gui/gui.cpp:4560 +#, c-format +msgid "| Order %d/%d " +msgstr "| Ordem %d/%d " + +#: src/gui/gui.cpp:4564 +#, c-format +msgid "| Row %.2X/%.2X " +msgstr "| Linha %.2X/%.2X " + +#: src/gui/gui.cpp:4566 +#, c-format +msgid "| Row %d/%d " +msgstr "| Linha %d/%d " + +#: src/gui/gui.cpp:4569 +msgid "| " +msgstr "" + +#: src/gui/gui.cpp:4572 +msgid "Don't you have anything better to do?" +msgstr "Não tem mais o que fazer não?" + +#: src/gui/gui.cpp:4582 +#, c-format +msgid "%d year " +msgid_plural "%d years " +msgstr[0] "%d ano " +msgstr[1] "%d anos " + +#: src/gui/gui.cpp:4583 +#, c-format +msgid "%d month " +msgid_plural "%d months " +msgstr[0] "%d mês " +msgstr[1] "%d meses " + +#: src/gui/gui.cpp:4584 +#, c-format +msgid "%d day " +msgid_plural "%d days " +msgstr[0] "" +msgstr[1] "" + +#: src/gui/gui.cpp:4609 +msgid "Note off (cut)" +msgstr "Note off (corte)" + +#: src/gui/gui.cpp:4611 +msgid "Note off (release)" +msgstr "Note off (repouso)" + +#: src/gui/gui.cpp:4613 +msgid "Macro release only" +msgstr "Repouso de macro somente" + +#: src/gui/gui.cpp:4615 +#, c-format +msgid "Note on: %s" +msgstr "Note on: %s" + +#: src/gui/gui.cpp:4623 +#, c-format +msgid "Ins %d: " +msgstr "Ins %d: " + +#: src/gui/gui.cpp:4626 +#, c-format +msgid "Ins %d: %s" +msgstr "Ins %d: %s" + +#: src/gui/gui.cpp:4635 +#, c-format +msgid "Set volume: %d (%.2X, INVALID!)" +msgstr "Definir volume: %d (%.2X, INVÁLIDO!)" + +#: src/gui/gui.cpp:4638 +#, c-format +msgid "Set volume: %d (%.2X, %d%%)" +msgstr "Definir volume: %d (%.2X, %d%%)" + +#: src/gui/gui.cpp:4660 +msgid "| modified" +msgstr "| modificado" + +#: src/gui/gui.cpp:4825 src/gui/gui.cpp:4828 +msgid "System File Dialog Pending" +msgstr "" + +#: src/gui/gui.cpp:4941 +msgid "" +"there was an error in the file dialog! you may want to report this issue " +"to:\n" +"https://github.com/tildearrow/furnace/issues\n" +"check the Log Viewer (window > log viewer) for more information.\n" +"\n" +"for now please disable the system file picker in Settings > General." +msgstr "" + +#: src/gui/gui.cpp:4944 +msgid "can't do anything without Storage permissions!" +msgstr "impossível fazer algo sem permissões de Armazenamento!" + +#: src/gui/gui.cpp:4946 +msgid "" +"Zenity/KDialog not available!\n" +"please install one of these, or disable the system file picker in Settings > " +"General." +msgstr "" +"Zenity/KDialog indisponíveis!\n" +"por favor instale uma dessas bibliotecas, ou desabilite o diálogo de " +"arquivos do sistema em Configurações > Geral." + +#: src/gui/gui.cpp:5082 +msgid "" +"error while saving instrument! only the following instrument types are " +"supported:\n" +"- FM (OPN)\n" +"- SN76489/Sega PSG\n" +"- Game Boy\n" +"- PC Engine\n" +"- NES\n" +"- C64\n" +"- FM (OPLL)\n" +"- FDS" +msgstr "" +"erro ao salvar o instrumento! somente os seguintes tipos de instrumento são " +"suportados:\n" +"- FM (OPN)\n" +"- SN76489/Sega PSG\n" +"- Game Boy\n" +"- PC Engine\n" +"- NES\n" +"- C64\n" +"- FM (OPLL)\n" +"- FDS" + +#: src/gui/gui.cpp:5110 +msgid "there were some errors while loading samples:\n" +msgstr "" + +#: src/gui/gui.cpp:5155 src/gui/gui.cpp:6339 +msgid "...but you haven't selected a sample!" +msgstr "...mas você não selecionou uma sample!" + +#: src/gui/gui.cpp:5170 src/gui/gui.cpp:5179 +msgid "could not save sample! open Log Viewer for more information." +msgstr "" +"não foi possível salvar a sample! abra o Visualizador de Logs para mais " +"informações." + +#: src/gui/gui.cpp:5198 +msgid "there were some warnings/errors while loading instruments:\n" +msgstr "" + +#: src/gui/gui.cpp:5204 +#, c-format +msgid "> %s: cannot load instrument! (%s)\n" +msgstr "" + +#: src/gui/gui.cpp:5222 src/gui/gui.cpp:5276 +#, c-format +msgid "cannot load instrument! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5228 +msgid "" +"congratulations! you managed to load nothing.\n" +"you are entitled to a bug report." +msgstr "" +"parabéns! você foi capaz de carregar um monte de nada.\n" +"você tem direito a um bug report." + +#: src/gui/gui.cpp:5269 src/gui/gui.cpp:6243 +msgid "...but you haven't selected an instrument!" +msgstr "...mas você não selecionou um instrumento!" + +#: src/gui/gui.cpp:5281 +msgid "there were some errors while loading wavetables:\n" +msgstr "ocorreram erros ao carregar as wavetables:\n" + +#: src/gui/gui.cpp:5290 src/gui/gui.cpp:5300 src/gui/gui.cpp:5319 +#, c-format +msgid "cannot load wavetable! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5327 +msgid "...but you haven't selected a wavetable!" +msgstr "...mas você não selecionou uma wavetable!" + +#: src/gui/gui.cpp:5342 src/gui/gui.cpp:5363 src/gui/gui.cpp:5387 +#: src/gui/gui.cpp:5408 +msgid "could not open file!" +msgstr "não pôde abrir o arquivo!" + +#: src/gui/gui.cpp:5350 +#, c-format +msgid "could not write VGM! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5371 +#, c-format +msgid "Could not write ZSM! (%s)" +msgstr "Não pôde escrever ZSM! (%s)" + +#: src/gui/gui.cpp:5395 +#, c-format +msgid "could not write text! (%s)" +msgstr "não pôde escrever texto! (%s)" + +#: src/gui/gui.cpp:5416 +#, c-format +msgid "could not write command stream! (%s)" +msgstr "não pôde escrever fluxo de comandos! (%s)" + +#: src/gui/gui.cpp:5440 +msgid "could not import user presets!" +msgstr "" + +#: src/gui/gui.cpp:5445 src/gui/gui.cpp:5462 +#, c-format +msgid "could not import user presets! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5483 +#, c-format +msgid "You opened: %s" +msgstr "Você abriu: %s" + +#: src/gui/gui.cpp:5486 +msgid "You opened:" +msgstr "Você abriu:" + +#: src/gui/gui.cpp:5494 +#, c-format +msgid "You saved: %s" +msgstr "Você salvou: %s" + +#: src/gui/gui.cpp:5515 src/gui/gui.cpp:5636 src/gui/gui.cpp:5637 +#: src/gui/insEdit.cpp:7520 +msgid "Error" +msgstr "Erro" + +#: src/gui/gui.cpp:5520 src/gui/gui.cpp:6177 src/gui/gui.cpp:6178 +msgid "Select Instrument" +msgstr "" + +#: src/gui/gui.cpp:5525 src/gui/gui.cpp:6256 src/gui/gui.cpp:6257 +msgid "Import Raw Sample" +msgstr "" + +#: src/gui/gui.cpp:5540 src/gui/gui.cpp:5593 src/gui/gui.cpp:5594 +msgid "Rendering..." +msgstr "" + +#: src/gui/gui.cpp:5595 +msgid "Please wait..." +msgstr "Por favor aguarde..." + +#: src/gui/gui.cpp:5596 +msgid "Abort" +msgstr "Abortar" + +#: src/gui/gui.cpp:5638 +#, c-format +msgid "%s" +msgstr "%s" + +#: src/gui/gui.cpp:5868 +msgid "Erasing" +msgstr "Apagando" + +#: src/gui/gui.cpp:5871 +msgid "All subsongs" +msgstr "Todas as subfaixas" + +#: src/gui/gui.cpp:5878 +msgid "Current subsong" +msgstr "Subfaixa atual" + +#: src/gui/gui.cpp:5945 +msgid "Optimization" +msgstr "Otimização" + +#: src/gui/gui.cpp:5948 src/gui/patManager.cpp:36 +msgid "De-duplicate patterns" +msgstr "Deduplicar sequências" + +#: src/gui/gui.cpp:5957 +msgid "Remove unused instruments" +msgstr "Remover instrumentos não utilizados" + +#: src/gui/gui.cpp:5970 +msgid "Remove unused samples" +msgstr "Remover samples não utilizadas" + +#: src/gui/gui.cpp:5987 +msgid "Never mind! Cancel" +msgstr "Deixa pra lá! Cancelar" + +#: src/gui/gui.cpp:6066 +msgid "Drum kit mode:" +msgstr "Modo de kit de bateria:" + +#: src/gui/gui.cpp:6070 +msgid "12 samples per octave" +msgstr "12 samples por oitava" + +#: src/gui/gui.cpp:6075 +msgid "Starting octave" +msgstr "Oitava inicial" + +#: src/gui/gui.cpp:6095 +msgid "Drum Kit" +msgstr "" + +#: src/gui/gui.cpp:6181 +msgid "this is an instrument bank! select which one to use:" +msgstr "" +"isto é um banco de instrumentos! selecione quais instrumentos carregar:" + +#: src/gui/gui.cpp:6184 +msgid "this is an instrument bank! select which ones to load:" +msgstr "" +"isto é um banco de instrumentos! selecione quais instrumentos carregar:" + +#: src/gui/gui.cpp:6258 +msgid "Data type:" +msgstr "Tipo de dado:" + +#: src/gui/gui.cpp:6285 +msgid "(will be mixed down to mono)" +msgstr "(será misturado para mono)" + +#: src/gui/gui.cpp:6286 +msgid "Unsigned" +msgstr "Sem sinal" + +#: src/gui/gui.cpp:6290 +msgid "Big endian" +msgstr "Big endian" + +#: src/gui/gui.cpp:6298 +msgid "Swap nibbles" +msgstr "Trocar nibbles" + +#: src/gui/gui.cpp:6302 +msgid "Swap words" +msgstr "Trocar palavras" + +#: src/gui/gui.cpp:6306 +msgid "Encoding:" +msgstr "Codificação:" + +#: src/gui/gui.cpp:6319 +msgid "Reverse bit order" +msgstr "Trocar ordem dos bits" + +#: src/gui/gui.cpp:6361 +msgid "Error! No string provided!" +msgstr "Erro! Não foi passada uma string!" + +#: src/gui/gui.cpp:6683 +msgid "it appears I couldn't load these fonts. any setting you can check?" +msgstr "" +"parece que eu não pude carregar essas fontes. alguma configuração que você " +"poderia checar?" + +#: src/gui/gui.cpp:6863 src/gui/gui.cpp:6971 +msgid "" +"could not init renderer!\n" +"falling back to software renderer. please restart Furnace." +msgstr "" + +#: src/gui/gui.cpp:6865 src/gui/gui.cpp:6973 +#, c-format +msgid "" +"could not init renderer! %s\n" +"falling back to software renderer. please restart Furnace." +msgstr "" + +#: src/gui/gui.cpp:6870 src/gui/gui.cpp:6978 +msgid "could not init renderer!" +msgstr "" + +#: src/gui/gui.cpp:6881 +#, c-format +msgid "could not open window! %s" +msgstr "não pôde abrir a janela! %s" + +#: src/gui/gui.cpp:6886 +msgid "" +"\n" +"falling back to software renderer. please restart Furnace." +msgstr "" + +#: src/gui/gui.cpp:7034 +msgid "Size column to fit###SizeOne" +msgstr "Ajustar largura da coluna###SizeOne" + +#: src/gui/gui.cpp:7036 +msgid "Size all columns to fit###SizeAll" +msgstr "Ajustar largura de todas as colunas###SizeAll" + +#: src/gui/gui.cpp:7038 +msgid "Size all columns to default###SizeAll" +msgstr "Redefinir largura de todas as colunas para o padrão###SizeAll" + +#: src/gui/gui.cpp:7040 +msgid "Reset order###ResetOrder" +msgstr "Redefinir ordem###ResetOrder" + +#: src/gui/gui.cpp:7042 +msgid "(Main menu bar)" +msgstr "(Barra de menu principal)" + +#: src/gui/gui.cpp:7044 +msgid "(Popup)" +msgstr "(Popup)" + +#: src/gui/gui.cpp:7046 +msgid "(Untitled)" +msgstr "(Sem título)" + +#: src/gui/gui.cpp:7048 +msgid "Hide tab bar###HideTabBar" +msgstr "Esconder barra de abas###HideTabBar" + +#: src/gui/gui.cpp:7052 +msgid "LocaleSettings: ccjk" +msgstr "" + +#: src/gui/gui.cpp:7564 +msgid "Unsaved changes! Save changes before quitting?" +msgstr "Há mudanças não salvas! Salvar mudanças antes de sair?" + +#: src/gui/sysManager.cpp:42 +msgid "Preserve channel order" +msgstr "Preservar ordem dos canais" + +#: src/gui/sysManager.cpp:44 +msgid "Clone channel data" +msgstr "Clonar dados dos canais" + +#: src/gui/sysManager.cpp:46 +msgid "Clone at end" +msgstr "Clonar ao final" + +#: src/gui/sysManager.cpp:56 +msgid "Actions" +msgstr "Ações" + +#: src/gui/sysManager.cpp:69 +msgid "(drag to swap chips)" +msgstr "(arraste para trocar chips)" + +#: src/gui/sysManager.cpp:90 +msgid "Clone##SysDup" +msgstr "Clonar##SysDup" + +#: src/gui/sysManager.cpp:92 +#, c-format +msgid "cannot clone chip! (%s)" +msgstr "" + +#: src/gui/sysManager.cpp:98 +msgid "Change##SysChange" +msgstr "Trocar##SysChange" + +#: src/gui/sysManager.cpp:120 +msgid "Are you sure you want to remove this chip?" +msgstr "Tem certeza de que quer remover este chip?" + +#: src/gui/patManager.cpp:43 +msgid "Re-arrange patterns" +msgstr "Reordenar sequências" + +#: src/gui/patManager.cpp:50 +msgid "Sort orders" +msgstr "Ordenar ordens" + +#: src/gui/patManager.cpp:57 +msgid "Make patterns unique" +msgstr "Tornar sequências únicas" + +#: src/gui/patManager.cpp:103 +#, c-format +msgid "" +"Pattern %.2X\n" +"- not allocated" +msgstr "" +"Sequência %.2X\n" +"- não alocada" + +#: src/gui/patManager.cpp:105 +#, c-format +msgid "" +"Pattern %.2X\n" +"- use count: %d (%.0f%%)\n" +"\n" +"right-click to erase" +msgstr "" +"Sequência %.2X\n" +"- usada %d vezes (%.0f%%)\n" +"\n" +"clique com o botão direito para excluir" + +#: src/gui/insEdit.cpp:39 +msgid "Down Down Down" +msgstr "Baixo Baixo Baixo" + +#: src/gui/insEdit.cpp:40 +msgid "Down." +msgstr "Baixo." + +#: src/gui/insEdit.cpp:41 +msgid "Down Up Down Up" +msgstr "Baixo Cima Baixo Cima" + +#: src/gui/insEdit.cpp:42 +msgid "Down UP" +msgstr "Baixo CIMA" + +#: src/gui/insEdit.cpp:43 +msgid "Up Up Up" +msgstr "Cima Cima Cima" + +#: src/gui/insEdit.cpp:44 +msgid "Up." +msgstr "Cima." + +#: src/gui/insEdit.cpp:45 +msgid "Up Down Up Down" +msgstr "Cima Baixo Cima Baixo" + +#: src/gui/insEdit.cpp:46 +msgid "Up DOWN" +msgstr "Cima BAIXO" + +#: src/gui/insEdit.cpp:50 +msgid "Algorithm" +msgstr "Algoritmo" + +#: src/gui/insEdit.cpp:50 +msgid "Feedback" +msgstr "Feedback" + +#: src/gui/insEdit.cpp:50 +msgid "LFO > Freq" +msgstr "LFO > Freq" + +#: src/gui/insEdit.cpp:50 +msgid "LFO > Amp" +msgstr "LFO > Amp" + +#: src/gui/insEdit.cpp:50 +msgid "Decay 2" +msgstr "Decaimento 2" + +#: src/gui/insEdit.cpp:50 +msgid "EnvScale" +msgstr "EscalaEnv" + +#: src/gui/insEdit.cpp:50 +msgid "Multiplier" +msgstr "Multiplicador" + +#: src/gui/insEdit.cpp:50 +msgid "Detune 2" +msgstr "Desafinação 2" + +#: src/gui/insEdit.cpp:50 +msgid "AM" +msgstr "" + +#: src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:5438 src/gui/insEdit.cpp:6516 +msgid "AM Depth" +msgstr "Profundidade de AM" + +#: src/gui/insEdit.cpp:50 +msgid "Vibrato Depth" +msgstr "Profundidade Vibrato" + +#: src/gui/insEdit.cpp:50 +msgid "Sustained" +msgstr "Env. Sustentado" + +#: src/gui/insEdit.cpp:50 +msgid "Level Scaling" +msgstr "Escalonamento de Nível" + +#: src/gui/insEdit.cpp:50 +msgid "Vibrato" +msgstr "Vibrato" + +#: src/gui/insEdit.cpp:50 +msgid "Scale Rate" +msgstr "Escala de Taxas" + +#: src/gui/insEdit.cpp:50 +msgid "OP2 Half Sine" +msgstr "OP2 Meio Seno" + +#: src/gui/insEdit.cpp:50 +msgid "OP1 Half Sine" +msgstr "OP1 Meio Seno" + +#: src/gui/insEdit.cpp:50 +msgid "EnvShift" +msgstr "DeslocEnv" + +#: src/gui/insEdit.cpp:50 +msgid "Reverb" +msgstr "Reverb" + +#: src/gui/insEdit.cpp:50 +msgid "Fine" +msgstr "Ajuste fino" + +#: src/gui/insEdit.cpp:50 +msgid "LFO2 > Freq" +msgstr "LFO2 > Freq" + +#: src/gui/insEdit.cpp:50 +msgid "LFO2 > Amp" +msgstr "LFO2 > Amp" + +#: src/gui/insEdit.cpp:56 src/gui/insEdit.cpp:68 src/gui/insEdit.cpp:7391 +msgid "OP4 Noise Mode" +msgstr "Modo de Ruído do OP4" + +#: src/gui/insEdit.cpp:57 +msgid "Envelope Delay" +msgstr "Atraso de Envelope" + +#: src/gui/insEdit.cpp:58 src/gui/insEdit.cpp:70 +msgid "Output Level" +msgstr "Nível de Saída" + +#: src/gui/insEdit.cpp:59 +msgid "Modulation Input Level" +msgstr "Nível de Entrada de Modulação" + +#: src/gui/insEdit.cpp:60 +msgid "Left Output" +msgstr "Saída Esquerda" + +#: src/gui/insEdit.cpp:61 +msgid "Right Output" +msgstr "Saída Direita" + +#: src/gui/insEdit.cpp:62 +msgid "Coarse Tune (semitones)" +msgstr "Afinação Grossa (semitons)" + +#: src/gui/insEdit.cpp:64 +msgid "Fixed Frequency Mode" +msgstr "Modo de Frequência Fixa" + +#: src/gui/insEdit.cpp:69 +msgid "Env. Delay" +msgstr "Atraso Env." + +#: src/gui/insEdit.cpp:71 +msgid "ModInput" +msgstr "EntraMod." + +#: src/gui/insEdit.cpp:72 +msgid "Left" +msgstr "Esq." + +#: src/gui/insEdit.cpp:73 +msgid "Right" +msgstr "Dir." + +#: src/gui/insEdit.cpp:74 +msgid "Tune" +msgstr "Afin." + +#: src/gui/insEdit.cpp:76 src/gui/insEdit.cpp:610 src/gui/insEdit.cpp:3792 +#: src/gui/insEdit.cpp:4554 src/gui/insEdit.cpp:4848 +msgid "Fixed" +msgstr "F.Fixa" + +#: src/gui/insEdit.cpp:98 src/gui/insEdit.cpp:117 src/gui/insEdit.cpp:136 +#: src/gui/insEdit.cpp:156 +msgid "User" +msgstr "Usuário" + +#: src/gui/insEdit.cpp:99 +msgid "1. Violin" +msgstr "1. Violino" + +#: src/gui/insEdit.cpp:100 src/gui/insEdit.cpp:138 src/gui/insEdit.cpp:158 +msgid "2. Guitar" +msgstr "2. Violão" + +#: src/gui/insEdit.cpp:101 src/gui/insEdit.cpp:159 +msgid "3. Piano" +msgstr "3. Piano" + +#: src/gui/insEdit.cpp:102 src/gui/insEdit.cpp:160 +msgid "4. Flute" +msgstr "4. Flauta" + +#: src/gui/insEdit.cpp:103 src/gui/insEdit.cpp:122 src/gui/insEdit.cpp:161 +msgid "5. Clarinet" +msgstr "5. Clarinete" + +#: src/gui/insEdit.cpp:104 +msgid "6. Oboe" +msgstr "6. Oboé" + +#: src/gui/insEdit.cpp:105 src/gui/insEdit.cpp:124 src/gui/insEdit.cpp:143 +#: src/gui/insEdit.cpp:163 +msgid "7. Trumpet" +msgstr "7. Trompete" + +#: src/gui/insEdit.cpp:106 +msgid "8. Organ" +msgstr "8. Órgão" + +#: src/gui/insEdit.cpp:107 +msgid "9. Horn" +msgstr "9. Trompa" + +#: src/gui/insEdit.cpp:108 +msgid "10. Synth" +msgstr "10. Sintetizador" + +#: src/gui/insEdit.cpp:109 +msgid "11. Harpsichord" +msgstr "11. Cravo" + +#: src/gui/insEdit.cpp:110 src/gui/insEdit.cpp:129 src/gui/insEdit.cpp:148 +msgid "12. Vibraphone" +msgstr "12. Vibrafone" + +#: src/gui/insEdit.cpp:111 +msgid "13. Synth Bass" +msgstr "13. Baixo Sintético" + +#: src/gui/insEdit.cpp:112 +msgid "14. Acoustic Bass" +msgstr "14. Baixo Acústico" + +#: src/gui/insEdit.cpp:113 +msgid "15. Electric Guitar" +msgstr "15. Guitarra Elétrica" + +#: src/gui/insEdit.cpp:114 src/gui/insEdit.cpp:133 src/gui/insEdit.cpp:152 +#: src/gui/insEdit.cpp:172 src/gui/insEdit.cpp:3176 +msgid "Drums" +msgstr "Bateria" + +#: src/gui/insEdit.cpp:118 +msgid "1. Electric String" +msgstr "1. Cordas Elétricas" + +#: src/gui/insEdit.cpp:119 +msgid "2. Bow wow" +msgstr "2. Bow wow" + +#: src/gui/insEdit.cpp:120 src/gui/insEdit.cpp:139 +msgid "3. Electric Guitar" +msgstr "3. Guitarra Elétrica" + +#: src/gui/insEdit.cpp:121 +msgid "4. Organ" +msgstr "4. Órgão" + +#: src/gui/insEdit.cpp:123 +msgid "6. Saxophone" +msgstr "6. Saxofone" + +#: src/gui/insEdit.cpp:125 +msgid "8. Street Organ" +msgstr "8. Órgão de Rua" + +#: src/gui/insEdit.cpp:126 +msgid "9. Synth Brass" +msgstr "9. Synth Brass" + +#: src/gui/insEdit.cpp:127 +msgid "10. Electric Piano" +msgstr "10. Piano Elétrico" + +#: src/gui/insEdit.cpp:128 +msgid "11. Bass" +msgstr "11. Baixo" + +#: src/gui/insEdit.cpp:130 +msgid "13. Chime" +msgstr "13. Campainha" + +#: src/gui/insEdit.cpp:131 +msgid "14. Tom Tom II" +msgstr "14. Surdo 2" + +#: src/gui/insEdit.cpp:132 +msgid "15. Noise" +msgstr "15. Ruído" + +#: src/gui/insEdit.cpp:137 +msgid "1. Strings" +msgstr "1. Cordas" + +#: src/gui/insEdit.cpp:140 +msgid "4. Electric Piano" +msgstr "4. Piano Elétrico" + +#: src/gui/insEdit.cpp:141 +msgid "5. Flute" +msgstr "5. Flauta" + +#: src/gui/insEdit.cpp:142 +msgid "6. Marimba" +msgstr "6. Marimba" + +#: src/gui/insEdit.cpp:144 +msgid "8. Harmonica" +msgstr "8. Gaita" + +#: src/gui/insEdit.cpp:145 +msgid "9. Tuba" +msgstr "9. Tuba" + +#: src/gui/insEdit.cpp:146 +msgid "10. Synth Brass" +msgstr "10. Synth Brass" + +#: src/gui/insEdit.cpp:147 +msgid "11. Short Saw" +msgstr "11. Serra Curta" + +#: src/gui/insEdit.cpp:149 +msgid "13. Electric Guitar 2" +msgstr "13. Guitarra Elétrica 2" + +#: src/gui/insEdit.cpp:150 +msgid "14. Synth Bass" +msgstr "14. Baixo Sintético" + +#: src/gui/insEdit.cpp:151 +msgid "15. Sitar" +msgstr "15. Cítara" + +#: src/gui/insEdit.cpp:157 +msgid "1. Bell" +msgstr "1. Sino" + +#: src/gui/insEdit.cpp:162 +msgid "6. Rattling Bell" +msgstr "6. Sino Chacoalhante" + +#: src/gui/insEdit.cpp:164 +msgid "8. Reed Organ" +msgstr "8. Órgão de Palheta" + +#: src/gui/insEdit.cpp:165 +msgid "9. Soft Bell" +msgstr "9. Sino Suave" + +#: src/gui/insEdit.cpp:166 +msgid "10. Xylophone" +msgstr "10. Xilofone" + +#: src/gui/insEdit.cpp:167 +msgid "11. Vibraphone" +msgstr "11. Vibrafone" + +#: src/gui/insEdit.cpp:168 +msgid "12. Brass" +msgstr "12. Metais" + +#: src/gui/insEdit.cpp:169 +msgid "13. Bass Guitar" +msgstr "13. Baixo" + +#: src/gui/insEdit.cpp:170 +msgid "14. Synth" +msgstr "14. Sintetizador" + +#: src/gui/insEdit.cpp:171 +msgid "15. Chorus" +msgstr "15. Coro" + +#: src/gui/insEdit.cpp:178 src/gui/insEdit.cpp:189 +msgid "Half Sine" +msgstr "Meio Seno" + +#: src/gui/insEdit.cpp:179 src/gui/insEdit.cpp:190 +msgid "Absolute Sine" +msgstr "Seno Absoluto" + +#: src/gui/insEdit.cpp:180 +msgid "Quarter Sine" +msgstr "1/4 Seno" + +#: src/gui/insEdit.cpp:181 src/gui/insEdit.cpp:203 +msgid "Squished Sine" +msgstr "Seno Espremido" + +#: src/gui/insEdit.cpp:182 src/gui/insEdit.cpp:205 +msgid "Squished AbsSine" +msgstr "Seno Absoluto Espremido" + +#: src/gui/insEdit.cpp:184 src/gui/insEdit.cpp:195 +msgid "Derived Square" +msgstr "Dente de Serra Logarítmica" + +#: src/gui/insEdit.cpp:191 +msgid "Pulse Sine" +msgstr "Seno Pulsado" + +#: src/gui/insEdit.cpp:192 +msgid "Sine (Even Periods)" +msgstr "Seno (Períodos Pares)" + +#: src/gui/insEdit.cpp:193 +msgid "AbsSine (Even Periods)" +msgstr "Seno Absoluto (Períodos Pares)" + +#: src/gui/insEdit.cpp:201 +msgid "Cut Sine" +msgstr "Seno Cortado" + +#: src/gui/insEdit.cpp:202 +msgid "Cut Triangle" +msgstr "Triângulo Cortado" + +#: src/gui/insEdit.cpp:204 +msgid "Squished Triangle" +msgstr "Triângulo Espremido" + +#: src/gui/insEdit.cpp:206 +msgid "Squished AbsTriangle" +msgstr "Triângulo Absoluto Espremido" + +#: src/gui/insEdit.cpp:224 +msgid "Noise disabled" +msgstr "Ruído desabilitado" + +#: src/gui/insEdit.cpp:225 +msgid "Square + noise" +msgstr "Onda quadrada + ruído" + +#: src/gui/insEdit.cpp:226 +msgid "Ringmod from OP3 + noise" +msgstr "Modulação anel do OP3 + ruído" + +#: src/gui/insEdit.cpp:227 +msgid "" +"Ringmod from OP3 + double pitch ModInput\n" +"WARNING - has emulation issues; subject to change" +msgstr "" + +#: src/gui/insEdit.cpp:232 +msgid "Bitwise AND" +msgstr "" + +#: src/gui/insEdit.cpp:233 +msgid "Bitwise OR" +msgstr "" + +#: src/gui/insEdit.cpp:234 +msgid "Bitwise XOR" +msgstr "" + +#: src/gui/insEdit.cpp:239 src/gui/insEdit.cpp:390 +msgid "gate" +msgstr "gate" + +#: src/gui/insEdit.cpp:240 src/gui/insEdit.cpp:391 +msgid "sync" +msgstr "sincron." + +#: src/gui/insEdit.cpp:241 src/gui/insEdit.cpp:392 +msgid "ring" +msgstr "anel" + +#: src/gui/insEdit.cpp:327 +msgid "How did you even" +msgstr "Como diabos você..." + +#: src/gui/insEdit.cpp:335 +msgid "triangle" +msgstr "triângulo" + +#: src/gui/insEdit.cpp:336 src/gui/insEdit.cpp:5821 +msgid "saw" +msgstr "serra" + +#: src/gui/insEdit.cpp:337 src/gui/insEdit.cpp:5827 +msgid "pulse" +msgstr "pulso" + +#: src/gui/insEdit.cpp:338 src/gui/insEdit.cpp:344 src/gui/insEdit.cpp:373 +#: src/gui/insEdit.cpp:424 src/gui/insEdit.cpp:429 src/gui/insEdit.cpp:5833 +msgid "noise" +msgstr "ruído" + +#: src/gui/insEdit.cpp:343 +msgid "tone" +msgstr "tom" + +#: src/gui/insEdit.cpp:345 +msgid "envelope" +msgstr "envelope" + +#: src/gui/insEdit.cpp:350 +msgid "hold" +msgstr "segurar" + +#: src/gui/insEdit.cpp:351 +msgid "alternate" +msgstr "alternar" + +#: src/gui/insEdit.cpp:352 src/gui/insEdit.cpp:364 +msgid "direction" +msgstr "direção" + +#: src/gui/insEdit.cpp:353 src/gui/insEdit.cpp:436 +msgid "enable" +msgstr "habilitar" + +#: src/gui/insEdit.cpp:357 src/gui/insEdit.cpp:368 +msgid "enabled" +msgstr "habilitado" + +#: src/gui/insEdit.cpp:361 +msgid "mirror" +msgstr "espelhar" + +#: src/gui/insEdit.cpp:365 +msgid "resolution" +msgstr "resolução" + +#: src/gui/insEdit.cpp:366 +msgid "fixed" +msgstr "fixo" + +#: src/gui/insEdit.cpp:367 +msgid "N/A" +msgstr "N/A" + +#: src/gui/insEdit.cpp:374 +msgid "echo" +msgstr "eco" + +#: src/gui/insEdit.cpp:375 +msgid "pitch mod" +msgstr "mod. de tom" + +#: src/gui/insEdit.cpp:376 src/gui/insEdit.cpp:508 +msgid "invert right" +msgstr "inverter direita" + +#: src/gui/insEdit.cpp:377 src/gui/insEdit.cpp:509 +msgid "invert left" +msgstr "inverter esquerda" + +#: src/gui/insEdit.cpp:382 src/gui/insEdit.cpp:5905 +msgid "low" +msgstr "baixa" + +#: src/gui/insEdit.cpp:383 src/gui/insEdit.cpp:5911 +msgid "band" +msgstr "banda" + +#: src/gui/insEdit.cpp:384 src/gui/insEdit.cpp:5917 +msgid "high" +msgstr "alta" + +#: src/gui/insEdit.cpp:385 src/gui/insEdit.cpp:5924 +msgid "ch3off" +msgstr "cn3desl" + +#: src/gui/insEdit.cpp:393 +msgid "test" +msgstr "teste" + +#: src/gui/insEdit.cpp:398 +msgid "15KHz" +msgstr "" + +#: src/gui/insEdit.cpp:399 +msgid "filter 2+4" +msgstr "filtrar 2+4" + +#: src/gui/insEdit.cpp:400 +msgid "filter 1+3" +msgstr "filtrar 1+3" + +#: src/gui/insEdit.cpp:401 +msgid "16-bit 3+4" +msgstr "16-bit 3+4" + +#: src/gui/insEdit.cpp:402 +msgid "16-bit 1+2" +msgstr "16-bit 1+2" + +#: src/gui/insEdit.cpp:403 +msgid "high3" +msgstr "altafreq3" + +#: src/gui/insEdit.cpp:404 +msgid "high1" +msgstr "altafreq1" + +#: src/gui/insEdit.cpp:405 +msgid "poly9" +msgstr "poly9" + +#: src/gui/insEdit.cpp:414 +msgid "16'" +msgstr "" + +#: src/gui/insEdit.cpp:415 +msgid "8'" +msgstr "" + +#: src/gui/insEdit.cpp:416 +msgid "4'" +msgstr "" + +#: src/gui/insEdit.cpp:417 +msgid "2'" +msgstr "" + +#: src/gui/insEdit.cpp:418 +msgid "sustain" +msgstr "sustentação" + +#: src/gui/insEdit.cpp:423 +msgid "square" +msgstr "quadrada" + +#: src/gui/insEdit.cpp:431 +msgid "surround" +msgstr "surround" + +#: src/gui/insEdit.cpp:437 +msgid "oneshot" +msgstr "oneshot" + +#: src/gui/insEdit.cpp:438 +msgid "split L/R" +msgstr "separar esq/dir" + +#: src/gui/insEdit.cpp:439 +msgid "HinvR" +msgstr "HinvR" + +#: src/gui/insEdit.cpp:440 +msgid "VinvR" +msgstr "VinvR" + +#: src/gui/insEdit.cpp:441 +msgid "HinvL" +msgstr "HinvL" + +#: src/gui/insEdit.cpp:442 +msgid "VinvL" +msgstr "VinvL" + +#: src/gui/insEdit.cpp:447 src/gui/insEdit.cpp:476 +msgid "ring mod" +msgstr "mod anel" + +#: src/gui/insEdit.cpp:448 +msgid "low pass" +msgstr "passa baixa" + +#: src/gui/insEdit.cpp:449 src/gui/insEdit.cpp:475 +msgid "high pass" +msgstr "passa alta" + +#: src/gui/insEdit.cpp:450 +msgid "band pass" +msgstr "passa banda" + +#: src/gui/insEdit.cpp:459 +msgid "enable tap B" +msgstr "habilitar tap B" + +#: src/gui/insEdit.cpp:460 +msgid "AM with slope" +msgstr "AM com rampa" + +#: src/gui/insEdit.cpp:465 +msgid "invert B" +msgstr "inverter B" + +#: src/gui/insEdit.cpp:466 +msgid "invert A" +msgstr "inverter A" + +#: src/gui/insEdit.cpp:467 +msgid "reset B" +msgstr "reiniciar B" + +#: src/gui/insEdit.cpp:468 +msgid "reset A" +msgstr "reiniciar A" + +#: src/gui/insEdit.cpp:469 +msgid "clip B" +msgstr "cortar B" + +#: src/gui/insEdit.cpp:470 +msgid "clip A" +msgstr "cortar A" + +#: src/gui/insEdit.cpp:477 +msgid "swap counters (noise)" +msgstr "trocar contadores (ruído)" + +#: src/gui/insEdit.cpp:478 +msgid "low pass (noise)" +msgstr "passa baixa (ruído)" + +#: src/gui/insEdit.cpp:485 +msgid "rear right" +msgstr "traseira direita" + +#: src/gui/insEdit.cpp:486 +msgid "rear left" +msgstr "traseira esquerda" + +#: src/gui/insEdit.cpp:491 +msgid "on" +msgstr "ligado" + +#: src/gui/insEdit.cpp:496 +msgid "k1 slowdown" +msgstr "desacelerar k1" + +#: src/gui/insEdit.cpp:497 +msgid "k2 slowdown" +msgstr "desacelerar k2" + +#: src/gui/insEdit.cpp:502 +msgid "pause" +msgstr "pausar" + +#: src/gui/insEdit.cpp:503 +msgid "reverse" +msgstr "reverter" + +#: src/gui/insEdit.cpp:521 +msgid "Subtract" +msgstr "Subtrair" + +#: src/gui/insEdit.cpp:522 +msgid "Average" +msgstr "Média" + +#: src/gui/insEdit.cpp:523 src/gui/insEdit.cpp:2037 +msgid "Phase" +msgstr "Fase" + +#: src/gui/insEdit.cpp:524 +msgid "Chorus" +msgstr "Coro" + +#: src/gui/insEdit.cpp:528 +msgid "None (dual)" +msgstr "Nenhum (dupla)" + +#: src/gui/insEdit.cpp:529 +msgid "Wipe" +msgstr "Wipe" + +#: src/gui/insEdit.cpp:531 +msgid "Fade (ping-pong)" +msgstr "Misturar (ping-pong)" + +#: src/gui/insEdit.cpp:532 +msgid "Overlay" +msgstr "Sobrepor" + +#: src/gui/insEdit.cpp:533 +msgid "Negative Overlay" +msgstr "Sobreposição Negativa" + +#: src/gui/insEdit.cpp:534 +msgid "Slide" +msgstr "Deslizar" + +#: src/gui/insEdit.cpp:535 +msgid "Mix Chorus" +msgstr "Coro Misto" + +#: src/gui/insEdit.cpp:536 +msgid "Phase Modulation" +msgstr "Modulação de Fase" + +#: src/gui/insEdit.cpp:541 +msgid "Sweep" +msgstr "Sweep" + +#: src/gui/insEdit.cpp:542 src/gui/insEdit.cpp:552 +msgid "Wait" +msgstr "Aguardar" + +#: src/gui/insEdit.cpp:543 src/gui/insEdit.cpp:553 +msgid "Wait for Release" +msgstr "Aguardar pelo Repouso" + +#: src/gui/insEdit.cpp:545 src/gui/insEdit.cpp:555 +msgid "Loop until Release" +msgstr "Repetir até o Repouso" + +#: src/gui/insEdit.cpp:549 +msgid "Volume Sweep" +msgstr "Sweep de Volume" + +#: src/gui/insEdit.cpp:550 +msgid "Frequency Sweep" +msgstr "Sweep de Frequência" + +#: src/gui/insEdit.cpp:551 +msgid "Cutoff Sweep" +msgstr "Sweep de Ponto de Corte" + +#: src/gui/insEdit.cpp:559 src/gui/insEdit.cpp:6604 +msgid "Direct" +msgstr "Direto" + +#: src/gui/insEdit.cpp:560 src/gui/insEdit.cpp:6608 +msgid "Decrease (linear)" +msgstr "Diminuir (linear)" + +#: src/gui/insEdit.cpp:561 src/gui/insEdit.cpp:6612 +msgid "Decrease (logarithmic)" +msgstr "Diminuir (logarítmico)" + +#: src/gui/insEdit.cpp:562 src/gui/insEdit.cpp:6616 +msgid "Increase (linear)" +msgstr "Aumentar (linear)" + +#: src/gui/insEdit.cpp:563 src/gui/insEdit.cpp:6620 +msgid "Increase (bent line)" +msgstr "Aumentar (linha torta)" + +#: src/gui/insEdit.cpp:611 +msgid "Relative" +msgstr "Relativo" + +#: src/gui/insEdit.cpp:616 +#, c-format +msgid "%d: +%d (exponential)" +msgstr "" + +#: src/gui/insEdit.cpp:619 +#, c-format +msgid "%d: +%d (linear)" +msgstr "" + +#: src/gui/insEdit.cpp:622 +#, c-format +msgid "%d: -%d (exponential)" +msgstr "" + +#: src/gui/insEdit.cpp:625 +#, c-format +msgid "%d: -%d (linear)" +msgstr "" + +#: src/gui/insEdit.cpp:627 +#, c-format +msgid "%d: %d (direct)" +msgstr "" + +#: src/gui/insEdit.cpp:660 +msgid "Random" +msgstr "Aleatório" + +#: src/gui/insEdit.cpp:1610 +msgid "" +"left click to restart\n" +"middle click to pause\n" +"right click to see algorithm" +msgstr "" +"clique com o botão esquerdo para reiniciar\n" +"clique com o botão do meio para pausar\n" +"clique com o botão direito para ver o algoritmo" + +#: src/gui/insEdit.cpp:1620 +msgid "" +"left click to configure TL scaling\n" +"right click to see FM preview" +msgstr "" +"clique com o botão esquerdo para configurar o escalonamento de TL\n" +"clique com o botão direito para ver a previsão da onda FM" + +#: src/gui/insEdit.cpp:1624 +msgid "right click to see FM preview" +msgstr "clique com o botão direito para ver a previsão da onda FM" + +#: src/gui/insEdit.cpp:1639 +msgid "operator level changes with volume?" +msgstr "nível do operador muda com o volume?" + +#: src/gui/insEdit.cpp:1648 +msgid "AUTO##OPKVS" +msgstr "AUTO##OPKVS" + +#: src/gui/insEdit.cpp:1650 +msgid "NO##OPKVS" +msgstr "NÃO##OPKVS" + +#: src/gui/insEdit.cpp:1652 +msgid "YES##OPKVS" +msgstr "SIM##OPKVS" + +#: src/gui/insEdit.cpp:1900 src/gui/insEdit.cpp:2005 +msgid "Bottom" +msgstr "Base" + +#: src/gui/insEdit.cpp:1940 +msgid "Hold" +msgstr "Retenção" + +#: src/gui/insEdit.cpp:1949 +msgid "SusTime" +msgstr "Tempo Sust." + +#: src/gui/insEdit.cpp:1969 +msgid "SusDecay" +msgstr "Decaim. Sust." + +#: src/gui/insEdit.cpp:2047 +msgid "Shape" +msgstr "Formato" + +#: src/gui/insEdit.cpp:2100 +msgid "Macro type: Sequence" +msgstr "Tipo de macro: Sequência" + +#: src/gui/insEdit.cpp:2103 +msgid "Macro type: ADSR" +msgstr "Tipo de macro: ADSR" + +#: src/gui/insEdit.cpp:2106 +msgid "Macro type: LFO" +msgstr "Tipo de macro: LFO" + +#: src/gui/insEdit.cpp:2109 +msgid "Macro type: What's going on here?" +msgstr "Tipo de macro: Que porcaria tá acontecendo aqui?" + +#: src/gui/insEdit.cpp:2122 +msgid "Delay/Step Length" +msgstr "Atraso/Tamanho do passo" + +#: src/gui/insEdit.cpp:2125 +msgid "Step Length (ticks)##IMacroSpeed" +msgstr "Tamanho do passo (ticks)##IMacroSpeed" + +#: src/gui/insEdit.cpp:2129 +msgid "Delay##IMacroDelay" +msgstr "Atraso##IMacroDelay" + +#: src/gui/insEdit.cpp:2142 +msgid "Release mode: Active (jump to release pos)" +msgstr "Modo de repouso: Ativo (pula para a posição de repouso)" + +#: src/gui/insEdit.cpp:2144 +msgid "Release mode: Passive (delayed release)" +msgstr "Modo de repouso: Passivo (repouso atrasado)" + +#: src/gui/insEdit.cpp:2393 +msgid "StepLen" +msgstr "Compr. Passo" + +#: src/gui/insEdit.cpp:2401 +msgid "Delay" +msgstr "Atraso" + +#: src/gui/insEdit.cpp:2425 +msgid "The heck? No, this isn't even working correctly..." +msgstr "Cacildis? Não, não, isso aí tá com problema..." + +#: src/gui/insEdit.cpp:2428 +msgid "The only problem with that selectedMacro is that it's a bug..." +msgstr "O único problema com aquela \"selectedMacro\" é que ela é um bug..." + +#: src/gui/insEdit.cpp:2589 +msgid "(copying)" +msgstr "(copiando)" + +#: src/gui/insEdit.cpp:2591 +msgid "(swapping)" +msgstr "(trocando)" + +#: src/gui/insEdit.cpp:2595 +msgid "" +"- drag to swap operator\n" +"- shift-drag to copy operator" +msgstr "" +"- arraste para trocar operadores\n" +"- shift+arraste para copiar operador" + +#: src/gui/insEdit.cpp:2632 +msgid "new DPCM features disabled (compatibility)!" +msgstr "novos recursos de DPCM desabilitados (compatibilidade)!" + +#: src/gui/insEdit.cpp:2633 +msgid "click here to enable them." +msgstr "clique aqui para habilitá-los." + +#: src/gui/insEdit.cpp:2644 +msgid "none selected" +msgstr "nenhuma selecionada" + +#: src/gui/insEdit.cpp:2657 +msgid "Use sample" +msgstr "Usar amostra" + +#: src/gui/insEdit.cpp:2659 +msgid "Sample bank slot##BANKSLOT" +msgstr "Vaga do banco de samples##BANKSLOT" + +#: src/gui/insEdit.cpp:2681 +msgid "Use wavetable (Amiga/Generic DAC only)" +msgstr "Utilizar wavetable (Amiga/DAC Genérico somente)" + +#: src/gui/insEdit.cpp:2681 +msgid "Use wavetable" +msgstr "Utilizar wavetable" + +#: src/gui/insEdit.cpp:2708 +msgid "Use sample map" +msgstr "Utilizar mapa de samples" + +#: src/gui/insEdit.cpp:2730 +msgid "delta" +msgstr "delta" + +#: src/gui/insEdit.cpp:2736 +msgid "sample name" +msgstr "nome da sample" + +#: src/gui/insEdit.cpp:3001 +msgid "set entire map to this pitch" +msgstr "definir mapa inteiro para esse tom" + +#: src/gui/insEdit.cpp:3009 +msgid "set entire map to this delta counter value" +msgstr "definir mapa inteiro para esse valor de contador delta" + +#: src/gui/insEdit.cpp:3018 +msgid "set entire map to this note" +msgstr "definir mapa inteiro para essa nota" + +#: src/gui/insEdit.cpp:3027 +msgid "set entire map to this sample" +msgstr "definir mapa inteiro para essa sample" + +#: src/gui/insEdit.cpp:3037 +msgid "reset pitches" +msgstr "redefinir tons" + +#: src/gui/insEdit.cpp:3042 +msgid "clear delta counter values" +msgstr "limpar valores de contador delta" + +#: src/gui/insEdit.cpp:3048 +msgid "reset notes" +msgstr "redefinir notas" + +#: src/gui/insEdit.cpp:3054 +msgid "clear map samples" +msgstr "limpar samples do mapa" + +#: src/gui/insEdit.cpp:3148 +msgid "Request from TX81Z" +msgstr "Requisitar do TX81Z" + +#: src/gui/insEdit.cpp:3234 +#, c-format +msgid "%s name" +msgstr "Nomes do %s" + +#: src/gui/insEdit.cpp:3286 +msgid "Fixed frequency mode" +msgstr "Modo de frequência fixa" + +#: src/gui/insEdit.cpp:3288 +msgid "" +"when enabled, drums will be set to the specified frequencies, ignoring the " +"note." +msgstr "" +"quando habilitado, os canais de bateria serão definidos para as frequências " +"especificadas, ignorando a nota." + +#: src/gui/insEdit.cpp:3296 +msgid "Drum" +msgstr "Tambor" + +#: src/gui/insEdit.cpp:3298 src/gui/insEdit.cpp:3798 src/gui/insEdit.cpp:3904 +#: src/gui/insEdit.cpp:4404 src/gui/insEdit.cpp:4468 src/gui/insEdit.cpp:5068 +#: src/gui/insEdit.cpp:5518 +msgid "Block" +msgstr "Bloco" + +#: src/gui/insEdit.cpp:3300 src/gui/insEdit.cpp:3803 src/gui/insEdit.cpp:3909 +#: src/gui/insEdit.cpp:4993 src/gui/insEdit.cpp:5079 src/gui/insEdit.cpp:5519 +msgid "FreqNum" +msgstr "NúmFreq." + +#: src/gui/insEdit.cpp:3303 +msgid "Snare/Hi-hat" +msgstr "Caixa/Chimbal" + +#: src/gui/insEdit.cpp:3304 +msgid "Tom/Top" +msgstr "Surdo/Prato" + +#: src/gui/insEdit.cpp:3314 +msgid "Volume##TL" +msgstr "Volume##TL" + +#: src/gui/insEdit.cpp:3316 +msgid "this volume slider only works in compatibility (non-drums) system." +msgstr "" +"este slider de volume só funciona no sistema de compatibilidade (não-" +"bateria)." + +#: src/gui/insEdit.cpp:3626 +msgid "Env" +msgstr "Env" + +#: src/gui/insEdit.cpp:3980 src/gui/insEdit.cpp:4346 src/gui/insEdit.cpp:4396 +#: src/gui/insEdit.cpp:5104 +msgid "OPL2/3 only (last 4 waveforms are OPL3 only)" +msgstr "OPL2/OPL3 somente (as últimas 4 ondas são somente para o OPL3)" + +#: src/gui/insEdit.cpp:4079 src/gui/insEdit.cpp:4788 +#, c-format +msgid "Envelope 2 (kick only)" +msgstr "Envelope 2 (bumbo somente)" + +#: src/gui/insEdit.cpp:4084 +#, c-format +msgid "Operator %d" +msgstr "Operador %d" + +#: src/gui/insEdit.cpp:4414 +msgid "Freq" +msgstr "Freq." + +#: src/gui/insEdit.cpp:4443 +msgid "Only on YM2151 (OPM)" +msgstr "" + +#: src/gui/insEdit.cpp:4466 +msgid "Blk" +msgstr "Blc" + +#: src/gui/insEdit.cpp:4479 +msgid "F" +msgstr "F" + +#: src/gui/insEdit.cpp:4481 +msgid "Frequency (F-Num)" +msgstr "Frequência (Núm-F)" + +#: src/gui/insEdit.cpp:4833 +msgid "SSG On" +msgstr "Env. Sust." + +#: src/gui/insEdit.cpp:5206 src/gui/insEdit.cpp:5207 +msgid "waiting..." +msgstr "aguardando..." + +#: src/gui/insEdit.cpp:5210 src/gui/insEdit.cpp:5211 +msgid "no instrument selected" +msgstr "nenhum instrumento selecionado" + +#: src/gui/insEdit.cpp:5393 +msgid "" +"none of the currently present chips are able to play this instrument type!" +msgstr "" +"nenhum dos chips atualmente presentes são capazes de reproduzir esse tipo de " +"instrumento!" + +#: src/gui/insEdit.cpp:5413 +msgid "FM Macros" +msgstr "Macros FM" + +#: src/gui/insEdit.cpp:5435 src/gui/insEdit.cpp:5440 +msgid "LFO Speed" +msgstr "Velocidade do LFO" + +#: src/gui/insEdit.cpp:5439 src/gui/insEdit.cpp:6514 +msgid "PM Depth" +msgstr "Profundidade de PM" + +#: src/gui/insEdit.cpp:5441 +msgid "LFO Shape" +msgstr "Formato do LFO" + +#: src/gui/insEdit.cpp:5444 +msgid "OpMask" +msgstr "Máscara de Op." + +#: src/gui/insEdit.cpp:5446 +msgid "AM Depth 2" +msgstr "Profundidade do AM 2" + +#: src/gui/insEdit.cpp:5447 +msgid "PM Depth 2" +msgstr "Profundidade do PM 2" + +#: src/gui/insEdit.cpp:5448 +msgid "LFO2 Speed" +msgstr "Velocidade do LFO2" + +#: src/gui/insEdit.cpp:5449 +msgid "LFO2 Shape" +msgstr "Formato do LFO2" + +#: src/gui/insEdit.cpp:5458 +#, c-format +msgid "Operator Macros" +msgstr "" + +#: src/gui/insEdit.cpp:5460 +#, c-format +msgid "OP%d Macros" +msgstr "Macros OP%d" + +#: src/gui/insEdit.cpp:5521 +msgid "Op. Arpeggio" +msgstr "Arpejo Op." + +#: src/gui/insEdit.cpp:5522 +msgid "Op. Pitch" +msgstr "Tom Op." + +#: src/gui/insEdit.cpp:5531 +msgid "Op. Panning" +msgstr "Balanço Op." + +#: src/gui/insEdit.cpp:5558 +msgid "Use software envelope" +msgstr "Utilizar envelope em software" + +#: src/gui/insEdit.cpp:5559 +msgid "Initialize envelope on every note" +msgstr "Inicializar envelope em cada nota" + +#: src/gui/insEdit.cpp:5560 +msgid "Double wave length (GBA only)" +msgstr "" + +#: src/gui/insEdit.cpp:5589 src/gui/insEdit.cpp:5666 +msgid "Sound Length" +msgstr "Comprimento do som" + +#: src/gui/insEdit.cpp:5592 src/gui/insEdit.cpp:5666 +msgid "Infinity" +msgstr "Infinito" + +#: src/gui/insEdit.cpp:5596 +msgid "Direction" +msgstr "Direção" + +#: src/gui/insEdit.cpp:5599 src/gui/insEdit.cpp:5669 src/gui/insEdit.cpp:5697 +#: src/gui/insEdit.cpp:6008 src/gui/insEdit.cpp:6051 +msgid "Up" +msgstr "Cima" + +#: src/gui/insEdit.cpp:5604 src/gui/insEdit.cpp:5674 src/gui/insEdit.cpp:5702 +#: src/gui/insEdit.cpp:6013 src/gui/insEdit.cpp:6056 +msgid "Down" +msgstr "Baixo" + +#: src/gui/insEdit.cpp:5620 src/gui/insEdit.cpp:5953 +msgid "Hardware Sequence" +msgstr "Sequência de Hardware" + +#: src/gui/insEdit.cpp:5630 src/gui/insEdit.cpp:5963 +msgid "Tick" +msgstr "Tick" + +#: src/gui/insEdit.cpp:5632 src/gui/insEdit.cpp:5965 +msgid "Command" +msgstr "Comando" + +#: src/gui/insEdit.cpp:5634 src/gui/insEdit.cpp:5967 +msgid "Move/Remove" +msgstr "Mover/Remover" + +#: src/gui/insEdit.cpp:5663 +msgid "Env Length" +msgstr "Comprimento do Envelope" + +#: src/gui/insEdit.cpp:5690 +msgid "Shift" +msgstr "Deslocar" + +#: src/gui/insEdit.cpp:5717 src/gui/insEdit.cpp:6073 +msgid "Ticks" +msgstr "Ticks" + +#: src/gui/insEdit.cpp:5736 src/gui/insEdit.cpp:6092 src/gui/insEdit.cpp:6239 +msgid "Position" +msgstr "Posição" + +#: src/gui/insEdit.cpp:5815 +msgid "tri" +msgstr "tri" + +#: src/gui/insEdit.cpp:5882 +msgid "Ring Modulation" +msgstr "Modulação de Anel" + +#: src/gui/insEdit.cpp:5886 +msgid "Oscillator Sync" +msgstr "Sincronização de Osciladores" + +#: src/gui/insEdit.cpp:5890 +msgid "Enable filter" +msgstr "Habilitar filtro" + +#: src/gui/insEdit.cpp:5891 +msgid "Initialize filter" +msgstr "Inicializar filtro" + +#: src/gui/insEdit.cpp:5894 src/gui/insEdit.cpp:5897 src/gui/insEdit.cpp:6951 +#: src/gui/insEdit.cpp:7215 src/gui/insEdit.cpp:7476 +msgid "Cutoff" +msgstr "Ponto de corte" + +#: src/gui/insEdit.cpp:5902 src/gui/insEdit.cpp:6408 src/gui/insEdit.cpp:6952 +#: src/gui/insEdit.cpp:7179 src/gui/insEdit.cpp:7477 +msgid "Filter Mode" +msgstr "Modo de filtro" + +#: src/gui/insEdit.cpp:5931 src/gui/insEdit.cpp:7485 +msgid "Noise Mode" +msgstr "Modo de Ruído" + +#: src/gui/insEdit.cpp:5932 +msgid "Wave Mix Mode" +msgstr "Modo de Mistura de Ondas" + +#: src/gui/insEdit.cpp:5935 +msgid "Absolute Cutoff Macro" +msgstr "Macro de Corte Absoluta" + +#: src/gui/insEdit.cpp:5939 +msgid "Absolute Duty Macro" +msgstr "Macro de Ciclo de Trab. Absoluta" + +#: src/gui/insEdit.cpp:5945 +msgid "Don't test before new note" +msgstr "Não testar antes de uma nova nota" + +#: src/gui/insEdit.cpp:5950 +msgid "Switch roles of frequency and phase reset timer" +msgstr "Trocar papéis dos temporizadores de frequência e redefinição de fase" + +#: src/gui/insEdit.cpp:5997 src/gui/insEdit.cpp:6040 +msgid "Period" +msgstr "Período" + +#: src/gui/insEdit.cpp:6002 src/gui/insEdit.cpp:6045 src/gui/insEdit.cpp:6892 +msgid "Amount" +msgstr "Quantidade" + +#: src/gui/insEdit.cpp:6005 src/gui/insEdit.cpp:6048 +msgid "Bound" +msgstr "Limite" + +#: src/gui/insEdit.cpp:6021 +msgid "Flip" +msgstr "Virar" + +#: src/gui/insEdit.cpp:6210 +msgid "Load waveform" +msgstr "Carregar wavetable" + +#: src/gui/insEdit.cpp:6215 +msgid "" +"when enabled, a waveform will be loaded into RAM.\n" +"when disabled, only the offset and length change." +msgstr "" +"quando habilitado, uma wavetable será carregada em RAM.\n" +"quando desabilitado, somente o deslocamento e comprimento serão alterados." + +#: src/gui/insEdit.cpp:6219 +msgid "Waveform##WAVE" +msgstr "Forma de onda##WAVE" + +#: src/gui/insEdit.cpp:6227 +msgid "Per-channel wave position/length" +msgstr "Posição/comprimento de onda por canal" + +#: src/gui/insEdit.cpp:6237 +msgid "Ch" +msgstr "Can" + +#: src/gui/insEdit.cpp:6286 +msgid "Compatibility mode" +msgstr "Modo de compatibilidade" + +#: src/gui/insEdit.cpp:6288 +msgid "" +"only use for compatibility with .dmf modules!\n" +"- initializes modulation table with first wavetable\n" +"- does not alter modulation parameters on instrument change" +msgstr "" +"use apenas para compatibilidade com módulos .dmf!\n" +"- inicializa a tabela de modulação com a primeira wavetable\n" +"- não altera os parâmetros de modulação com mudança de instrumento" + +#: src/gui/insEdit.cpp:6290 +msgid "Modulation depth" +msgstr "Profundidade de modulação" + +#: src/gui/insEdit.cpp:6294 +msgid "Modulation speed" +msgstr "Velocidade de modulação" + +#: src/gui/insEdit.cpp:6298 +msgid "Modulation table" +msgstr "Tabela de modulação" + +#: src/gui/insEdit.cpp:6347 +msgid "Set modulation table (channel 5 only)" +msgstr "Definir tabela de modulação (somente canal 5)" + +#: src/gui/insEdit.cpp:6411 src/gui/insEdit.cpp:7184 +msgid "Filter K1" +msgstr "Coef. K1 do filtro" + +#: src/gui/insEdit.cpp:6413 src/gui/insEdit.cpp:7185 +msgid "Filter K2" +msgstr "Coef. K2 do filtro" + +#: src/gui/insEdit.cpp:6417 +msgid "Envelope length" +msgstr "Comprimento do envelope" + +#: src/gui/insEdit.cpp:6420 +msgid "Left Volume Ramp" +msgstr "Rampa do volume esquerdo" + +#: src/gui/insEdit.cpp:6422 +msgid "Right Volume Ramp" +msgstr "Rampa do volume direito" + +#: src/gui/insEdit.cpp:6425 +msgid "Filter K1 Ramp" +msgstr "Rampa do coef. K1 do filtro" + +#: src/gui/insEdit.cpp:6427 +msgid "Filter K2 Ramp" +msgstr "Rampa do coef. K2 do filtro" + +#: src/gui/insEdit.cpp:6430 +msgid "K1 Ramp Slowdown" +msgstr "Desaceleração da rampa do K1" + +#: src/gui/insEdit.cpp:6432 +msgid "K2 Ramp Slowdown" +msgstr "Desaceleração da rampa do K2" + +#: src/gui/insEdit.cpp:6454 +msgid "Attack Rate" +msgstr "Taxa de Ataque" + +#: src/gui/insEdit.cpp:6460 +msgid "Decay 1 Rate" +msgstr "Taxa de Decaimento 1" + +#: src/gui/insEdit.cpp:6466 +msgid "Decay Level" +msgstr "Nível de Decaimento" + +#: src/gui/insEdit.cpp:6472 +msgid "Decay 2 Rate" +msgstr "Taxa de Decaimento 2" + +#: src/gui/insEdit.cpp:6478 +msgid "Release Rate" +msgstr "Taxa de Repouso" + +#: src/gui/insEdit.cpp:6484 +msgid "Rate Correction" +msgstr "Correção de Taxa" + +#: src/gui/insEdit.cpp:6512 +msgid "LFO Rate" +msgstr "Taxa de LFO" + +#: src/gui/insEdit.cpp:6523 +msgid "Use envelope" +msgstr "Usar envelope" + +#: src/gui/insEdit.cpp:6576 +msgid "Sustain/release mode:" +msgstr "Modo de sustentação/repouso:" + +#: src/gui/insEdit.cpp:6577 +msgid "Direct (cut on release)" +msgstr "Direto (cortar no repouso)" + +#: src/gui/insEdit.cpp:6580 +msgid "Effective (linear decrease)" +msgstr "Efetivo (redução linear)" + +#: src/gui/insEdit.cpp:6583 +msgid "Effective (exponential decrease)" +msgstr "Efetivo (redução exponencial)" + +#: src/gui/insEdit.cpp:6586 +msgid "Delayed (write R on release)" +msgstr "Atrasado (escrever R no momento do repouso)" + +#: src/gui/insEdit.cpp:6596 src/gui/insEdit.cpp:6597 +msgid "Gain Mode" +msgstr "Modo de Ganho" + +#: src/gui/insEdit.cpp:6599 src/gui/insEdit.cpp:6600 src/gui/insEdit.cpp:7205 +msgid "Gain" +msgstr "Ganho" + +#: src/gui/insEdit.cpp:6633 +msgid "" +"using decrease modes will not produce any sound at all, unless you know what " +"you are doing.\n" +"it is recommended to use the Gain macro for decrease instead." +msgstr "" +"utilizar modos de diminuição não irá produzir som nenhum, a não ser que você " +"saiba o que está fazendo.\n" +"é recomendado utilizar a macro de Ganho para diminuição ao invés disso." + +#: src/gui/insEdit.cpp:6703 +msgid "Enable synthesizer" +msgstr "Habilitar sintetizador" + +#: src/gui/insEdit.cpp:6721 +msgid "Single-waveform" +msgstr "Forma de onda única" + +#: src/gui/insEdit.cpp:6730 +msgid "Dual-waveform" +msgstr "Forma de onda dupla" + +#: src/gui/insEdit.cpp:6803 src/gui/insEdit.cpp:6812 +msgid "Wave 1" +msgstr "Onda 1" + +#: src/gui/insEdit.cpp:6808 src/gui/insEdit.cpp:6823 +msgid "" +"waveform macro is controlling wave 1!\n" +"this value will be ineffective." +msgstr "" +"a macro de forma de onda está controlando a onda 1! este valor não será " +"efetivo." + +#: src/gui/insEdit.cpp:6829 +msgid "Wave 2" +msgstr "Onda 2" + +#: src/gui/insEdit.cpp:6844 +msgid "Resume preview" +msgstr "Continuar previsão" + +#: src/gui/insEdit.cpp:6846 +msgid "Pause preview" +msgstr "Pausar previsão" + +#: src/gui/insEdit.cpp:6854 +msgid "Restart preview" +msgstr "Reiniciar previsão" + +#: src/gui/insEdit.cpp:6874 +msgid "Copy to new wavetable" +msgstr "Copiar para nova wavetable" + +#: src/gui/insEdit.cpp:6881 +msgid "Update Rate" +msgstr "Taxa de Atualização" + +#: src/gui/insEdit.cpp:6902 +msgid "Global" +msgstr "Global" + +#: src/gui/insEdit.cpp:6906 +msgid "" +"wavetable synthesizer disabled.\n" +"use the Waveform macro to set the wave for this instrument." +msgstr "" +"sintetizador de wavetable desabilitado.\n" +"use a macro de Forma de Onda para definir a onda para este instrumento." + +#: src/gui/insEdit.cpp:6912 +msgid "Macros" +msgstr "Macros" + +#: src/gui/insEdit.cpp:6921 src/gui/insEdit.cpp:6929 src/gui/insEdit.cpp:6938 +#: src/gui/insEdit.cpp:6947 src/gui/insEdit.cpp:6962 src/gui/insEdit.cpp:6976 +#: src/gui/insEdit.cpp:6988 src/gui/insEdit.cpp:7001 src/gui/insEdit.cpp:7017 +#: src/gui/insEdit.cpp:7023 src/gui/insEdit.cpp:7033 src/gui/insEdit.cpp:7040 +#: src/gui/insEdit.cpp:7046 src/gui/insEdit.cpp:7059 src/gui/insEdit.cpp:7066 +#: src/gui/insEdit.cpp:7073 src/gui/insEdit.cpp:7082 src/gui/insEdit.cpp:7092 +#: src/gui/insEdit.cpp:7100 src/gui/insEdit.cpp:7106 src/gui/insEdit.cpp:7114 +#: src/gui/insEdit.cpp:7121 src/gui/insEdit.cpp:7127 src/gui/insEdit.cpp:7137 +#: src/gui/insEdit.cpp:7149 src/gui/insEdit.cpp:7157 src/gui/insEdit.cpp:7173 +#: src/gui/insEdit.cpp:7178 src/gui/insEdit.cpp:7191 src/gui/insEdit.cpp:7198 +#: src/gui/insEdit.cpp:7209 src/gui/insEdit.cpp:7222 src/gui/insEdit.cpp:7231 +#: src/gui/insEdit.cpp:7238 src/gui/insEdit.cpp:7246 src/gui/insEdit.cpp:7270 +#: src/gui/insEdit.cpp:7277 src/gui/insEdit.cpp:7285 src/gui/insEdit.cpp:7296 +#: src/gui/insEdit.cpp:7303 src/gui/insEdit.cpp:7311 src/gui/insEdit.cpp:7319 +#: src/gui/insEdit.cpp:7328 src/gui/insEdit.cpp:7336 src/gui/insEdit.cpp:7342 +#: src/gui/insEdit.cpp:7348 src/gui/insEdit.cpp:7354 src/gui/insEdit.cpp:7359 +#: src/gui/insEdit.cpp:7366 src/gui/insEdit.cpp:7373 src/gui/insEdit.cpp:7381 +#: src/gui/insEdit.cpp:7390 src/gui/insEdit.cpp:7398 src/gui/insEdit.cpp:7410 +#: src/gui/insEdit.cpp:7423 src/gui/insEdit.cpp:7434 src/gui/insEdit.cpp:7444 +#: src/gui/insEdit.cpp:7452 src/gui/insEdit.cpp:7462 src/gui/insEdit.cpp:7471 +msgid "Arpeggio" +msgstr "Arpejo" + +#: src/gui/insEdit.cpp:6925 src/gui/insEdit.cpp:6932 src/gui/insEdit.cpp:6943 +#: src/gui/insEdit.cpp:6972 src/gui/insEdit.cpp:6984 src/gui/insEdit.cpp:6994 +#: src/gui/insEdit.cpp:7007 src/gui/insEdit.cpp:7054 src/gui/insEdit.cpp:7062 +#: src/gui/insEdit.cpp:7069 src/gui/insEdit.cpp:7088 src/gui/insEdit.cpp:7110 +#: src/gui/insEdit.cpp:7133 src/gui/insEdit.cpp:7144 src/gui/insEdit.cpp:7163 +#: src/gui/insEdit.cpp:7183 src/gui/insEdit.cpp:7194 src/gui/insEdit.cpp:7214 +#: src/gui/insEdit.cpp:7234 src/gui/insEdit.cpp:7242 src/gui/insEdit.cpp:7249 +#: src/gui/insEdit.cpp:7254 src/gui/insEdit.cpp:7260 src/gui/insEdit.cpp:7266 +#: src/gui/insEdit.cpp:7273 src/gui/insEdit.cpp:7281 src/gui/insEdit.cpp:7290 +#: src/gui/insEdit.cpp:7299 src/gui/insEdit.cpp:7307 src/gui/insEdit.cpp:7324 +#: src/gui/insEdit.cpp:7332 src/gui/insEdit.cpp:7338 src/gui/insEdit.cpp:7362 +#: src/gui/insEdit.cpp:7369 src/gui/insEdit.cpp:7377 src/gui/insEdit.cpp:7386 +#: src/gui/insEdit.cpp:7394 src/gui/insEdit.cpp:7402 src/gui/insEdit.cpp:7414 +#: src/gui/insEdit.cpp:7429 src/gui/insEdit.cpp:7440 src/gui/insEdit.cpp:7448 +#: src/gui/insEdit.cpp:7457 src/gui/insEdit.cpp:7475 +msgid "Phase Reset" +msgstr "Redef. de Fase" + +#: src/gui/insEdit.cpp:6939 src/gui/insEdit.cpp:7024 src/gui/insEdit.cpp:7210 +#: src/gui/insEdit.cpp:7247 +msgid "Duty/Noise" +msgstr "Ciclo de Trab./Ruído" + +#: src/gui/insEdit.cpp:6966 src/gui/insEdit.cpp:7288 +msgid "Surround" +msgstr "Surround" + +#: src/gui/insEdit.cpp:6968 src/gui/insEdit.cpp:6981 src/gui/insEdit.cpp:7026 +#: src/gui/insEdit.cpp:7085 src/gui/insEdit.cpp:7141 src/gui/insEdit.cpp:7159 +#: src/gui/insEdit.cpp:7180 src/gui/insEdit.cpp:7201 src/gui/insEdit.cpp:7225 +#: src/gui/insEdit.cpp:7278 src/gui/insEdit.cpp:7304 src/gui/insEdit.cpp:7321 +#: src/gui/insEdit.cpp:7329 src/gui/insEdit.cpp:7374 src/gui/insEdit.cpp:7383 +#: src/gui/insEdit.cpp:7399 src/gui/insEdit.cpp:7411 src/gui/insEdit.cpp:7426 +#: src/gui/insEdit.cpp:7454 src/gui/insEdit.cpp:7464 +msgid "Panning (left)" +msgstr "Balanço (esquerda)" + +#: src/gui/insEdit.cpp:6969 src/gui/insEdit.cpp:6982 src/gui/insEdit.cpp:7027 +#: src/gui/insEdit.cpp:7086 src/gui/insEdit.cpp:7142 src/gui/insEdit.cpp:7160 +#: src/gui/insEdit.cpp:7181 src/gui/insEdit.cpp:7202 src/gui/insEdit.cpp:7226 +#: src/gui/insEdit.cpp:7279 src/gui/insEdit.cpp:7305 src/gui/insEdit.cpp:7322 +#: src/gui/insEdit.cpp:7330 src/gui/insEdit.cpp:7375 src/gui/insEdit.cpp:7384 +#: src/gui/insEdit.cpp:7400 src/gui/insEdit.cpp:7412 src/gui/insEdit.cpp:7427 +#: src/gui/insEdit.cpp:7455 src/gui/insEdit.cpp:7465 +msgid "Panning (right)" +msgstr "Balanço (direita)" + +#: src/gui/insEdit.cpp:6990 src/gui/insEdit.cpp:7003 src/gui/insEdit.cpp:7107 +#: src/gui/insEdit.cpp:7199 src/gui/insEdit.cpp:7239 src/gui/insEdit.cpp:7424 +msgid "Noise Freq" +msgstr "Freq. Ruído" + +#: src/gui/insEdit.cpp:6996 src/gui/insEdit.cpp:7010 src/gui/insEdit.cpp:7167 +msgid "AutoEnv Num" +msgstr "Num. EnvAuto" + +#: src/gui/insEdit.cpp:6997 src/gui/insEdit.cpp:7011 src/gui/insEdit.cpp:7168 +msgid "AutoEnv Den" +msgstr "Den. EnvAuto" + +#: src/gui/insEdit.cpp:7012 +msgid "Noise AND Mask" +msgstr "Máscara AND Ruído" + +#: src/gui/insEdit.cpp:7013 +msgid "Noise OR Mask" +msgstr "Máscara OR Ruído" + +#: src/gui/insEdit.cpp:7034 +msgid "On/Off" +msgstr "Liga/Desl." + +#: src/gui/insEdit.cpp:7060 +msgid "Patch" +msgstr "Timbre" + +#: src/gui/insEdit.cpp:7076 +msgid "Mod Depth" +msgstr "Profundidade Mod." + +#: src/gui/insEdit.cpp:7077 +msgid "Mod Speed" +msgstr "Velocidade Mod." + +#: src/gui/insEdit.cpp:7078 +msgid "Mod Position" +msgstr "Posição Mod." + +#: src/gui/insEdit.cpp:7083 +msgid "Noise Length" +msgstr "Comprimento do Ruído" + +#: src/gui/insEdit.cpp:7093 +msgid "Wave Pos" +msgstr "Posição da onda" + +#: src/gui/insEdit.cpp:7096 +msgid "Wave Length" +msgstr "Comprimento da onda" + +#: src/gui/insEdit.cpp:7115 +msgid "AUDCTL" +msgstr "" + +#: src/gui/insEdit.cpp:7122 src/gui/insEdit.cpp:7343 +msgid "Pulse Width" +msgstr "Largura de Pulso" + +#: src/gui/insEdit.cpp:7139 +msgid "Duty/Int" +msgstr "Coeficientes/Integ." + +#: src/gui/insEdit.cpp:7145 src/gui/insEdit.cpp:7406 +msgid "Load LFSR" +msgstr "Carregar LFSR" + +#: src/gui/insEdit.cpp:7165 +msgid "Envelope Mode" +msgstr "Modo de Envelope" + +#: src/gui/insEdit.cpp:7218 +msgid "Phase Reset Timer" +msgstr "Temporizador de Redef. de Fase" + +#: src/gui/insEdit.cpp:7252 src/gui/insEdit.cpp:7259 +msgid "Freq Divider" +msgstr "" + +#: src/gui/insEdit.cpp:7255 +msgid "Clock Divider" +msgstr "Divisor de Clock" + +#: src/gui/insEdit.cpp:7264 +msgid "Global Volume" +msgstr "Volume Global" + +#: src/gui/insEdit.cpp:7286 +msgid "Echo Level" +msgstr "Nível de Eco" + +#: src/gui/insEdit.cpp:7291 +msgid "Echo Feedback" +msgstr "Retorno do Eco" + +#: src/gui/insEdit.cpp:7292 +msgid "Echo Length" +msgstr "Atraso do Eco" + +#: src/gui/insEdit.cpp:7312 +msgid "Group Ctrl" +msgstr "Controle de Grupo" + +#: src/gui/insEdit.cpp:7313 +msgid "Group Attack" +msgstr "Ataque de Grupo" + +#: src/gui/insEdit.cpp:7314 +msgid "Group Decay" +msgstr "Decaimento de Grupo" + +#: src/gui/insEdit.cpp:7320 +msgid "Noise Type" +msgstr "Tipo de Ruído" + +#: src/gui/insEdit.cpp:7367 +msgid "Square/Noise" +msgstr "Quadrado/Ruído" + +#: src/gui/insEdit.cpp:7404 +msgid "Tap A Location" +msgstr "Local do Tap A" + +#: src/gui/insEdit.cpp:7405 +msgid "Tap B Location" +msgstr "Local do Tap B" + +#: src/gui/insEdit.cpp:7416 +msgid "Portion A Length" +msgstr "Comprimento da Porção A" + +#: src/gui/insEdit.cpp:7417 +msgid "Portion B Length" +msgstr "Comprimento da Porção B" + +#: src/gui/insEdit.cpp:7418 +msgid "Portion A Offset" +msgstr "Deslocamento da Porção A" + +#: src/gui/insEdit.cpp:7419 +msgid "Portion B Offset" +msgstr "Deslocamento da Porção B" + +#: src/gui/insEdit.cpp:7463 +msgid "Parameter" +msgstr "" + +#: src/gui/insEdit.cpp:7467 +msgid "Load Value" +msgstr "" + +#: src/gui/insEdit.cpp:7479 +msgid "Filter Toggle" +msgstr "Alternar Filtro" + +#: src/gui/insEdit.cpp:7486 +msgid "Wave Mix" +msgstr "" + +#: src/gui/insEdit.cpp:7500 +msgid "Octave offset" +msgstr "Compensação de oitava" + +#: src/gui/insEdit.cpp:7505 +msgid "go to Macros for other parameters." +msgstr "vá para Macros para outros parâmetros." + +#: src/gui/insEdit.cpp:7521 +msgid "invalid instrument type! change it first." +msgstr "tipo de instrumento inválido! troque-o primeiro." + +#: src/gui/insEdit.cpp:7565 +msgid "clear contents" +msgstr "limpar conteúdo" + +#: src/gui/insEdit.cpp:7571 +msgid "offset..." +msgstr "deslocar..." + +#: src/gui/insEdit.cpp:7572 src/gui/insEdit.cpp:7605 +msgid "X" +msgstr "" + +#: src/gui/insEdit.cpp:7573 src/gui/insEdit.cpp:7609 +msgid "Y" +msgstr "" + +#: src/gui/insEdit.cpp:7574 +msgid "offset" +msgstr "deslocar" + +#: src/gui/insEdit.cpp:7637 +msgid "Min" +msgstr "Mín." + +#: src/gui/insEdit.cpp:7638 +msgid "Max" +msgstr "Máx." + +#~ msgid "About Furnace###About Furnace" +#~ msgstr "Sobre o Furnace###About Furnace" + +#~ msgid "are proud to present" +#~ msgstr "apresentam orgulhosamente" + +#~ msgid "-- translations and related work --" +#~ msgstr "-- traduções e trabalho relacionado --" + +#~ msgid "LTVA1 (Russian translation)" +#~ msgstr "LTVA1 (tradução em Russo)" + +#~ msgid "Kagamiin~ (Portuguese translation)" +#~ msgstr "Kagamiin~ (tradução em Português)" + +#~ msgid "freq-mod (Polish translation)" +#~ msgstr "freq-mod (tradução em Polonês)" + +#~ msgid "YM3812-LLE, YMF262-LLE and YMF276-LLE by nukeykt" +#~ msgstr "YM3812-LLE, YMF262-LLE e YMF276-LLE por nukeykt" + +#~ msgid "SID2 emulator (modification of reSID) by LTVA" +#~ msgstr "emulador SID2 (modificação do reSID) por LTVA" + +#~ msgid "5E01 emulator (modification of NSFPlay) by Euly" +#~ msgstr "emulador 5E01 (modificação do NSFPlay) por Euly" + +#~ msgid "NEOART Costa Rica" +#~ msgstr "NEOART Costa Rica" + +#~ msgid "Xenium Demoparty" +#~ msgstr "Xenium Demoparty" + +#~ msgid "Channels###Channels" +#~ msgstr "Canais###Channels" + +#~ msgid "Oscilloscope (per-channel)###Oscilloscope (per-channel)" +#~ msgstr "Osciloscópio (por canal)###Oscilloscope (per-channel)" + +#~ msgid "" +#~ "\n" +#~ "quiet" +#~ msgstr "" +#~ "\n" +#~ "silenciado" + +#~ msgid "Clock###Clock" +#~ msgstr "Clock###Clock" + +#~ msgid "cannot add chip! (" +#~ msgstr "não pôde adicionar chip! (" + +#~ msgid "Compatibility Flags###Compatibility Flags" +#~ msgstr "Opções de Compatibilidade###Compatibility Flags" + +#~ msgid "Stop NES pulse channels hardware sweep on new note" +#~ msgstr "" +#~ "Interromper sweep de hardware dos canais de pulso do NES em nova nota" + +#~ msgid "Do not stop volume slide after reaching zero or full volume" +#~ msgstr "Não interromper slide de volume após alcançar volume zero ou máximo" + +#~ msgid "Stop E1xy/E2xy effects on new note" +#~ msgstr "Interromper efeitos E1xy/E2xy em nova nota" + +#~ msgid "Slower 0Axy volume slide" +#~ msgstr "Slide de volume 0Axy é mais lento" + +#~ msgid "Command Stream Player###Command Stream Player" +#~ msgstr "Reprodutor de fluxo de comandos###Command Stream Player" + +#~ msgid "export (.dmp)" +#~ msgstr "exportar (.dmp)" + +#~ msgid "%.2X: " +#~ msgstr "%.2X: " + +#~ msgid "Instruments###Instruments" +#~ msgstr "Instrumentos###Instruments" + +#~ msgid "Wavetables###Wavetables" +#~ msgstr "Wavetables###Wavetables" + +#~ msgid "Samples###Samples" +#~ msgstr "Samples###Samples" + +#~ msgid "Export Furnace song" +#~ msgstr "Exportar Música do Furnace" + +#~ msgid "File##menubar" +#~ msgstr "Arquivo##menubar" + +#~ msgid "file##menubar" +#~ msgstr "arquivo##menubar" + +#~ msgid "export .dmf (1.1.3+)..." +#~ msgstr "exportar .dmf (1.1.3+)..." + +#~ msgid "export .dmf (1.0/legacy)..." +#~ msgstr "exportar .dmf (1.0/legado)..." + +#~ msgid "export Furnace module..." +#~ msgstr "exportar módulo do Furnace..." + +#~ msgid "cannot remove chip! (" +#~ msgstr "não pôde remover chip! (" + +#~ msgid "cannot change chip! (" +#~ msgstr "não pôde trocar chip! (" + +#~ msgid "Unsaved changes! Save before quitting?" +#~ msgstr "Há mudanças não salvas! Salvar antes de sair?" + +#~ msgid "Edit##menubar" +#~ msgstr "Editar##menubar" + +#~ msgid "edit##menubar" +#~ msgstr "editar##menubar" + +#~ msgid "Settings##menubar" +#~ msgstr "Opções##menubar" + +#~ msgid "settings##menubar" +#~ msgstr "opções##menubar" + +#~ msgid "Window##menubar" +#~ msgstr "Janela##menubar" + +#~ msgid "window##menubar" +#~ msgstr "janela##menubar" + +#~ msgid "Help##menubar" +#~ msgstr "Ajuda##menubar" + +#~ msgid "help##menubar" +#~ msgstr "ajuda##menubar" + +#~ msgid "%d days " +#~ msgid_plural "%d days " +#~ msgstr[0] "%d dia " +#~ msgstr[1] "%d dias " + +#~ msgid "" +#~ "there were some errors while loading samples:\n" +#~ "#sggu" +#~ msgstr "ocorreram erros ao carregar as samples:\n" + +#~ msgid "" +#~ "there were some warnings/errors while loading instruments:\n" +#~ "#sggu" +#~ msgstr "ocorreram alguns erros/avisos ao carregar os instrumentos:\n" + +#~ msgid "" +#~ "> %s: cannot load instrument! (%s)\n" +#~ "#sggu" +#~ msgstr "> %s: não pôde carregar o instrumento! (%s)\n" + +#~ msgid "cannot load instrument! (" +#~ msgstr "não pôde carregar o instrumento! (" + +#~ msgid "cannot load wavetable! (" +#~ msgstr "não pôde carregar a wavetable! (" + +#~ msgid "could not write tildearrow version Furnace module! (%s)" +#~ msgstr "não pôde escrever módulo do Furnace versão tildearrow! (%s)" + +#~ msgid "Rendering...###Rendering..." +#~ msgstr "Renderizando...###Rendering..." + +#~ msgid "New Song###New Song" +#~ msgstr "Nova Música###New Song" + +#~ msgid "Export###Export" +#~ msgstr "Exportar###Export" + +#~ msgid "Error###Error" +#~ msgstr "Erro###Error" + +#~ msgid "Warning###Warning" +#~ msgstr "Aviso###Warning" + +#~ msgid "Select Instrument###Select Instrument" +#~ msgstr "Selecionar Instrumento###Select Instrument" + +#~ msgid "Import Raw Sample###Import Raw Sample" +#~ msgstr "Importar Sample em Formato Raw###Import Raw Sample" + +#~ msgid "could not init renderer! %s" +#~ msgstr "não pôde inicializar o renderizador! %s" + +#~ msgid "" +#~ "\n" +#~ "the render driver has been set to a safe value. please restart Furnace." +#~ msgstr "" +#~ "\n" +#~ "o driver de renderização foi definido para um valor seguro. por favor " +#~ "reinicie o Furnace." + +#~ msgid "Beeper" +#~ msgstr "Beeper" + +#~ msgid "1-bit PCM" +#~ msgstr "PCM 1-bit" + +#~ msgid "1-bit DPCM" +#~ msgstr "DPCM 1-bit" + +#~ msgid "8-bit PCM" +#~ msgstr "PCM 8-bit" + +#~ msgid "8-bit µ-law PCM" +#~ msgstr "PCM µ-law 8-bit" + +#~ msgid "16-bit PCM" +#~ msgstr "PCM 16-bit" + +#~ msgid "Export instrument (.dmp)" +#~ msgstr "Exportar instrumento (.dmp)" + +#~ msgid "Paste wavetables from clipboard" +#~ msgstr "Colar wavetables da área de transferência" + +#~ msgid "Paste local wavetables from clipboard" +#~ msgstr "Colar wavetables locais da área de transferência" + +#~ msgid "Move sample up" +#~ msgstr "Mover sample para cima" + +#~ msgid "Move sample down" +#~ msgstr "Mover sample para baixo" + +#~ msgid "Sample review" +#~ msgstr "Prever sample" + +#~ msgid "Make me a drum kit" +#~ msgstr "Samples: Faça um kit de bateria para mim" + +#~ msgid "Modern/fantasy" +#~ msgstr "Moderno/fantasia" + +#~ msgid "Mobile Edit###MobileEdit" +#~ msgstr "Edição em dispositivos móveis###MobileEdit" + +#~ msgid "Mobile Controls###Mobile Controls" +#~ msgstr "Controles para dispositivos móveis###Mobile Controls" + +#~ msgid "Mobile Menu###Mobile Menu" +#~ msgstr "Menu para dispositivos móveis###Mobile Menu" + +#~ msgid "Legacy .dmf" +#~ msgstr ".dmf legado" + +#~ msgid "Play/Edit Controls###Play/Edit Controls" +#~ msgstr "Controles de Reprodução/Edição###Play/Edit Controls" + +#~ msgid "Play Controls###Play Controls" +#~ msgstr "Controles de Reprodução###Play Controls" + +#~ msgid "Edit Controls###Edit Controls" +#~ msgstr "Controles de edição###Edit Controls" + +#~ msgid "Effect List###Effect List" +#~ msgstr "Lista de Efeitos###Effect List" + +#~ msgid "DefleMask file (1.1.3+)" +#~ msgstr "Arquivo do DefleMask (1.1.3+)" + +#~ msgid "DefleMask file (1.0/legacy)" +#~ msgstr "Arquivo do DefleMask (1.0/legado)" + +#~ msgid "" +#~ "this option exports a binary file which\n" +#~ "contains a dump of the internal command stream\n" +#~ "produced when playing the song.\n" +#~ "\n" +#~ "technical/development use only!" +#~ msgstr "" +#~ "essa opção exporta um arquivo binário que\n" +#~ "contém um despejo do fluxo de comandos interno\n" +#~ "produzido ao reproduzir a música.\n" +#~ "\n" +#~ "somente para uso técnico ou para desenvolvimento!" + +#~ msgid "DMF (1.0/legacy)" +#~ msgstr "DMF (1.0/legado)" + +#~ msgid "Furnace" +#~ msgstr "Furnace" + +#~ msgid "Find/Replace###Find/Replace" +#~ msgstr "Localizar/Substituir###Find/Replace" + +#~ msgid "Grooves###Grooves" +#~ msgstr "Grooves###Grooves" + +#~ msgid "export .dmp..." +#~ msgstr "exportar .dmp..." + +#~ msgid "Instrument Editor###Instrument Editor" +#~ msgstr "Editor de Instrumento###Instrument Editor" + +#~ msgid "Memory Composition###Memory Composition" +#~ msgstr "Composição da Memória###Memory Composition" + +#~ msgid "%d-%d ($%x-$%x): %d bytes ($%x)" +#~ msgstr "%d-%d ($%x-$%x): %d bytes ($%x)" + +#~ msgid "click to open sample editor" +#~ msgstr "clique para abrir o editor de samples" + +#~ msgid "Orders###Orders" +#~ msgstr "Ordens###Orders" + +#~ msgid "Oscilloscope###Oscilloscope" +#~ msgstr "Osciloscópio###Oscilloscope" + +#~ msgid "Pattern Manager###Pattern Manager" +#~ msgstr "Gerenciador de Sequências###Pattern Manager" + +#~ msgid "Pattern###Pattern" +#~ msgstr "Sequência###Pattern" + +#~ msgid "Piano###Piano" +#~ msgstr "Piano###Piano" + +#~ msgid "Input Pad###Input Pad" +#~ msgstr "Teclado Virtual###Input Pad" + +#~ msgid "Game consoles" +#~ msgstr "Consoles de videogame" + +#~ msgid "let's play some chiptune making games!" +#~ msgstr "vamos jogar um pouco de chiptune fazendo jogos!" + +#~ msgid "Sega Genesis (extended channel 3)" +#~ msgstr "Sega Mega Drive (canal 3 estendido)" + +#~ msgid "Sega Genesis (DualPCM, extended channel 3)" +#~ msgstr "Sega Mega Drive (DualPCM, canal 3 estendido)" + +#~ msgid "Sega Genesis (with Sega CD)" +#~ msgstr "Sega Mega Drive (com Mega CD)" + +#~ msgid "Sega Genesis (extended channel 3 with Sega CD)" +#~ msgstr "Sega Mega Drive (canal 3 estendido com Mega CD)" + +#~ msgid "Sega Genesis (CSM with Sega CD)" +#~ msgstr "Sega Mega Drive (CSM, com Mega CD)" + +#~ msgid "Sega Master System (with FM expansion)" +#~ msgstr "Sega Master System (with expansão FM)" + +#~ msgid "Sega Master System (with FM expansion in drums mode)" +#~ msgstr "Sega Master System (with expansão FM em modo bateria)" + +#~ msgid "Game Boy Advance (no software mixing)" +#~ msgstr "Game Boy Advance (sem mixing em software)" + +#~ msgid "Game Boy Advance (with MinMod)" +#~ msgstr "Game Boy Advance (com MinMod)" + +#~ msgid "Famicom with Konami VRC6" +#~ msgstr "Famicom com Konami VRC6" + +#~ msgid "Famicom with Konami VRC7" +#~ msgstr "Famicom com Konami VRC7" + +#~ msgid "Famicom with MMC5" +#~ msgstr "Famicom com MMC5" + +#~ msgid "Famicom with Sunsoft 5B" +#~ msgstr "Famicom com Sunsoft 5B" + +#~ msgid "Famicom with Namco 163" +#~ msgstr "Famicom com Namco 163" + +#~ msgid "Neo Geo AES (extended channel 2)" +#~ msgstr "Neo Geo AES (canal 2 estendido)" + +#~ msgid "Neo Geo AES (extended channel 2 and CSM)" +#~ msgstr "Neo Geo AES (canal 2 estendido e CSM)" + +#~ msgid "Computers" +#~ msgstr "Computadores" + +#~ msgid "let's get to work on chiptune today." +#~ msgstr "porque hoje é dia de trabalhar em chiptune." + +#~ msgid "Commodore 64 (C64, 6581 SID + Sound Expander in drums mode)" +#~ msgstr "Commodore 64 (C64, SID 6581 + Sound Expander em modo bateria)" + +#~ msgid "Commodore 64 (C64, 8580 SID + Sound Expander in drums mode)" +#~ msgstr "Commodore 64 (C64, SID 8580 + Sound Expander em modo bateria)" + +#~ msgid "Commodore 64 (C64, 6581 SID + FM-YAM in drums mode)" +#~ msgstr "Commodore 64 (C64, SID 6581 + FM-YAM em modo bateria)" + +#~ msgid "Commodore 64 (C64, 8580 SID + FM-YAM in drums mode)" +#~ msgstr "Commodore 64 (C64, SID 8580 + FM-YAM em modo bateria)" + +#~ msgid "MSX + MSX-AUDIO (drums mode)" +#~ msgstr "MSX + MSX-AUDIO (modo bateria)" + +#~ msgid "MSX + MSX-MUSIC (drums mode)" +#~ msgstr "MSX + MSX-MUSIC (modo bateria)" + +#~ msgid "MSX + Neotron (extended channel 2)" +#~ msgstr "MSX + Neotron (canal 2 estendido)" + +#~ msgid "MSX + Neotron (extended channel 2 and CSM)" +#~ msgstr "MSX + Neotron (canal 2 estendido e CSM)" + +#~ msgid "MSX + Neotron (with YM2610B)" +#~ msgstr "MSX + Neotron (com YM2610B)" + +#~ msgid "MSX + Neotron (with YM2610B; extended channel 3)" +#~ msgstr "MSX + Neotron (com YM2610B; canal 3 estendido)" + +#~ msgid "MSX + Neotron (with YM2610B; extended channel 3 and CSM)" +#~ msgstr "MSX + Neotron (com YM2610B; canal 3 estendido e CSM)" + +#~ msgid "NEC PC-88 (with PC-8801-10)" +#~ msgstr "NEC PC-88 (com PC-8801-10)" + +#~ msgid "NEC PC-88 (with PC-8801-11)" +#~ msgstr "NEC PC-88 (com PC-8801-11)" + +#~ msgid "NEC PC-88 (with PC-8801-11; extended channel 3)" +#~ msgstr "NEC PC-88 (com PC-8801-11; canal 3 estendido)" + +#~ msgid "NEC PC-88 (with PC-8801-11; extended channel 3 and CSM)" +#~ msgstr "NEC PC-88 (com PC-8801-11; canal 3 estendido e CSM)" + +#~ msgid "NEC PC-88 (with PC-8801-23)" +#~ msgstr "NEC PC-88 (com PC-8801-23)" + +#~ msgid "NEC PC-88 (with PC-8801-23; extended channel 3)" +#~ msgstr "NEC PC-88 (com PC-8801-23; canal 3 estendido)" + +#~ msgid "NEC PC-88 (with PC-8801-23; extended channel 3 and CSM)" +#~ msgstr "NEC PC-88 (com PC-8801-23; canal 3 estendido e CSM)" + +#~ msgid "NEC PC-88 (with HMB-20 HIBIKI-8800)" +#~ msgstr "NEC PC-88 (com HMB-20 HIBIKI-8800)" + +#~ msgid "NEC PC-8801mk2SR (with PC-8801-10)" +#~ msgstr "NEC PC-8801mk2SR (com PC-8801-10)" + +#~ msgid "NEC PC-8801mk2SR (with PC-8801-10; extended channel 3)" +#~ msgstr "NEC PC-8801mk2SR (com PC-8801-10; canal 3 estendido)" + +#~ msgid "NEC PC-8801mk2SR (with PC-8801-10; extended channel 3 and CSM)" +#~ msgstr "NEC PC-8801mk2SR (with PC-8801-10; canal 3 estendido e CSM)" + +#~ msgid "NEC PC-8801mk2SR (with PC-8801-11)" +#~ msgstr "NEC PC-8801mk2SR (com PC-8801-11)" + +#~ msgid "" +#~ "NEC PC-8801mk2SR (with PC-8801-11; extended channel 3 on internal OPN)" +#~ msgstr "NEC PC-8801mk2SR (com PC-8801-11; canal 3 estendido no OPN interno)" + +#~ msgid "" +#~ "NEC PC-8801mk2SR (with PC-8801-11; extended channel 3 on external OPN)" +#~ msgstr "NEC PC-8801mk2SR (com PC-8801-11; canal 3 estendido no OPN externo)" + +#~ msgid "NEC PC-8801mk2SR (with PC-8801-11; extended channel 3 on both OPNs)" +#~ msgstr "" +#~ "NEC PC-8801mk2SR (com PC-8801-11; canal 3 estendido em ambos os OPNs)" + +#~ msgid "" +#~ "NEC PC-8801mk2SR (with PC-8801-11; extended channel 3 and CSM on both " +#~ "OPNs)" +#~ msgstr "" +#~ "NEC PC-8801mk2SR (com PC-8801-11; canal 3 estendido e CSM em ambos os " +#~ "OPNs)" + +#~ msgid "NEC PC-8801mk2SR (with PC-8801-23)" +#~ msgstr "NEC PC-8801mk2SR (com PC-8801-23)" + +#~ msgid "" +#~ "NEC PC-8801mk2SR (with PC-8801-23; extended channel 3 on internal OPN)" +#~ msgstr "NEC PC-8801mk2SR (com PC-8801-23; canal 3 estendido no OPN interno)" + +#~ msgid "" +#~ "NEC PC-8801mk2SR (with PC-8801-23; extended channel 3 and CSM on internal " +#~ "OPN)" +#~ msgstr "" +#~ "NEC PC-8801mk2SR (com PC-8801-23; canal 3 estendido e CSM no OPN interno)" + +#~ msgid "" +#~ "NEC PC-8801mk2SR (with PC-8801-23; extended channel 3 on external OPN)" +#~ msgstr "NEC PC-8801mk2SR (com PC-8801-23; canal 3 estendido no OPN externo)" + +#~ msgid "" +#~ "NEC PC-8801mk2SR (with PC-8801-23; extended channel 3 and CSM on external " +#~ "OPN)" +#~ msgstr "" +#~ "NEC PC-8801mk2SR (com PC-8801-23; canal 3 estendido e CSM no OPN externo)" + +#~ msgid "NEC PC-8801mk2SR (with PC-8801-23; extended channel 3 on both OPNs)" +#~ msgstr "" +#~ "NEC PC-8801mk2SR (com PC-8801-23; canal 3 estendido em ambos os OPNs)" + +#~ msgid "" +#~ "NEC PC-8801mk2SR (with PC-8801-23; extended channel 3 and CSM on both " +#~ "OPNs)" +#~ msgstr "" +#~ "NEC PC-8801mk2SR (com PC-8801-23; canal 3 estendido e CSM em ambos os " +#~ "OPNs)" + +#~ msgid "NEC PC-8801mk2SR (with HMB-20 HIBIKI-8800)" +#~ msgstr "NEC PC-8801mk2SR (com HMB-20 HIBIKI-8800)" + +#~ msgid "NEC PC-8801mk2SR (with HMB-20 HIBIKI-8800; extended channel 3)" +#~ msgstr "NEC PC-8801mk2SR (com HMB-20 HIBIKI-8800; canal 3 estendido)" + +#~ msgid "" +#~ "NEC PC-8801mk2SR (with HMB-20 HIBIKI-8800; extended channel 3 and CSM)" +#~ msgstr "NEC PC-8801mk2SR (com HMB-20 HIBIKI-8800; canal 3 estendido e CSM)" + +#~ msgid "NEC PC-8801FA (with PC-8801-10)" +#~ msgstr "NEC PC-8801FA (com PC-8801-10)" + +#~ msgid "NEC PC-8801FA (with PC-8801-10; extended channel 3)" +#~ msgstr "NEC PC-8801FA (com PC-8801-10; canal 3 estendido)" + +#~ msgid "NEC PC-8801FA (with PC-8801-11)" +#~ msgstr "NEC PC-8801FA (com PC-8801-11)" + +#~ msgid "NEC PC-8801FA (with PC-8801-11; extended channel 3 on internal OPN)" +#~ msgstr "NEC PC-8801FA (com PC-8801-11; canal 3 estendido no OPN interno)" + +#~ msgid "NEC PC-8801FA (with PC-8801-11; extended channel 3 on external OPN)" +#~ msgstr "NEC PC-8801FA (com PC-8801-11; canal 3 estendido no OPN externo)" + +#~ msgid "" +#~ "NEC PC-8801FA (with PC-8801-11; extended channel 3 and CSM on external " +#~ "OPN)" +#~ msgstr "" +#~ "NEC PC-8801FA (com PC-8801-11; canal 3 estendido e CSM no OPN externo)" + +#~ msgid "NEC PC-8801FA (with PC-8801-11; extended channel 3 on both OPNs)" +#~ msgstr "NEC PC-8801FA (com PC-8801-11; canal 3 estendido em ambos os OPNs)" + +#~ msgid "" +#~ "NEC PC-8801FA (with PC-8801-11; extended channel 3 and CSM on both OPNs)" +#~ msgstr "" +#~ "NEC PC-8801FA (com PC-8801-11; canal 3 estendido e CSM em ambos os OPNs)" + +#~ msgid "NEC PC-8801FA (with PC-8801-23)" +#~ msgstr "NEC PC-8801FA (com PC-8801-23)" + +#~ msgid "NEC PC-8801FA (with PC-8801-23; extended channel 3 on internal OPN)" +#~ msgstr "NEC PC-8801FA (com PC-8801-23; canal 3 estendido no OPN interno)" + +#~ msgid "" +#~ "NEC PC-8801FA (with PC-8801-23; extended channel 3 and CSM on internal " +#~ "OPN)" +#~ msgstr "" +#~ "NEC PC-8801FA (com PC-8801-23; canal 3 estendido e CSM no OPN interno)" + +#~ msgid "NEC PC-8801FA (with PC-8801-23; extended channel 3 on external OPN)" +#~ msgstr "NEC PC-8801FA (com PC-8801-23; canal 3 estendido no OPN externo)" + +#~ msgid "" +#~ "NEC PC-8801FA (with PC-8801-23; extended channel 3 and CSM on external " +#~ "OPN)" +#~ msgstr "" +#~ "NEC PC-8801FA (com PC-8801-23; canal 3 estendido e CSM no OPN externo)" + +#~ msgid "NEC PC-8801FA (with PC-8801-23; extended channel 3 on both OPNs)" +#~ msgstr "NEC PC-8801FA (com PC-8801-23; canal 3 estendido em ambos os OPNs)" + +#~ msgid "" +#~ "NEC PC-8801FA (with PC-8801-23; extended channel 3 and CSM on both OPNs)" +#~ msgstr "" +#~ "NEC PC-8801FA (com PC-8801-23; canal 3 estendido e CSM em ambos os OPNs)" + +#~ msgid "NEC PC-8801FA (with HMB-20 HIBIKI-8800)" +#~ msgstr "NEC PC-8801FA (com HMB-20 HIBIKI-8800)" + +#~ msgid "NEC PC-8801FA (with HMB-20 HIBIKI-8800; extended channel 3)" +#~ msgstr "NEC PC-8801FA (com HMB-20 HIBIKI-8800; canal 3 estendido)" + +#~ msgid "NEC PC-8801FA (with HMB-20 HIBIKI-8800; extended channel 3 and CSM)" +#~ msgstr "NEC PC-8801FA (com HMB-20 HIBIKI-8800; canal 3 estendido e CSM)" + +#~ msgid "NEC PC-98 (with PC-9801-26/K)" +#~ msgstr "NEC PC-98 (com PC-9801-26/K)" + +#~ msgid "NEC PC-98 (with PC-9801-26/K; extended channel 3)" +#~ msgstr "NEC PC-98 (com PC-9801-26/K; canal 3 estendido)" + +#~ msgid "NEC PC-98 (with PC-9801-26/K; extended channel 3 and CSM)" +#~ msgstr "NEC PC-98 (com PC-9801-26/K; canal 3 estendido e CSM)" + +#~ msgid "NEC PC-98 (with Sound Orchestra)" +#~ msgstr "NEC PC-98 (com Sound Orchestra)" + +#~ msgid "NEC PC-98 (with Sound Orchestra; extended channel 3)" +#~ msgstr "NEC PC-98 (com Sound Orchestra; canal 3 estendido)" + +#~ msgid "NEC PC-98 (with Sound Orchestra; extended channel 3 and CSM)" +#~ msgstr "NEC PC-98 (com Sound Orchestra; canal 3 estendido e CSM)" + +#~ msgid "NEC PC-98 (with Sound Orchestra in drums mode)" +#~ msgstr "NEC PC-98 (com Sound Orchestra em modo bateria)" + +#~ msgid "NEC PC-98 (with Sound Orchestra in drums mode; extended channel 3)" +#~ msgstr "NEC PC-98 (com Sound Orchestra em modo bateria; canal 3 estendido)" + +#~ msgid "" +#~ "NEC PC-98 (with Sound Orchestra in drums mode; extended channel 3 and CSM)" +#~ msgstr "" +#~ "NEC PC-98 (com Sound Orchestra em modo bateria; canal 3 estendido e CSM)" + +#~ msgid "NEC PC-98 (with Sound Orchestra V)" +#~ msgstr "NEC PC-98 (com Sound Orchestra V)" + +#~ msgid "NEC PC-98 (with Sound Orchestra V; extended channel 3)" +#~ msgstr "NEC PC-98 (com Sound Orchestra V; canal 3 estendido)" + +#~ msgid "NEC PC-98 (with Sound Orchestra V; extended channel 3 and CSM)" +#~ msgstr "NEC PC-98 (com Sound Orchestra V; canal 3 estendido e CSM)" + +#~ msgid "NEC PC-98 (with Sound Orchestra V in drums mode)" +#~ msgstr "NEC PC-98 (com Sound Orchestra V em modo bateria)" + +#~ msgid "NEC PC-98 (with Sound Orchestra V in drums mode; extended channel 3)" +#~ msgstr "" +#~ "NEC PC-98 (com Sound Orchestra V em modo bateria; canal 3 estendido)" + +#~ msgid "" +#~ "NEC PC-98 (with Sound Orchestra V in drums mode; extended channel 3 and " +#~ "CSM)" +#~ msgstr "" +#~ "NEC PC-98 (com Sound Orchestra V em modo bateria; canal 3 estendido e CSM)" + +#~ msgid "NEC PC-98 (with PC-9801-86)" +#~ msgstr "NEC PC-98 (com PC-9801-86)" + +#~ msgid "NEC PC-98 (with PC-9801-86; extended channel 3)" +#~ msgstr "NEC PC-98 (com PC-9801-86; canal 3 estendido)" + +#~ msgid "NEC PC-98 (with PC-9801-86; extended channel 3 and CSM)" +#~ msgstr "NEC PC-98 (com PC-9801-86; canal 3 estendido e CSM)" + +#~ msgid "NEC PC-98 (with PC-9801-86) stereo" +#~ msgstr "NEC PC-98 (com PC-9801-86) stereo" + +#~ msgid "NEC PC-98 (with PC-9801-86; extended channel 3) stereo" +#~ msgstr "NEC PC-98 (com PC-9801-86; canal 3 estendido) stereo" + +#~ msgid "NEC PC-98 (with PC-9801-86; extended channel 3 and CSM) stereo" +#~ msgstr "NEC PC-98 (com PC-9801-86; canal 3 estendido e CSM) stereo" + +#~ msgid "NEC PC-98 (with PC-9801-73)" +#~ msgstr "NEC PC-98 (com PC-9801-73)" + +#~ msgid "NEC PC-98 (with PC-9801-73; extended channel 3)" +#~ msgstr "NEC PC-98 (com PC-9801-73; canal 3 estendido)" + +#~ msgid "NEC PC-98 (with PC-9801-73; extended channel 3 and CSM)" +#~ msgstr "NEC PC-98 (com PC-9801-73; canal 3 estendido e CSM)" + +#~ msgid "" +#~ "NEC PC-98 (with Sound Blaster 16 for PC-9800 w/PC-9801-26/K compatible)" +#~ msgstr "" +#~ "NEC PC-98 (com Sound Blaster 16 para PC-9800 com PC-9801-26/K compatível)" + +#~ msgid "" +#~ "NEC PC-98 (with Sound Blaster 16 for PC-9800 w/PC-9801-26/K compatible; " +#~ "extended channel 3)" +#~ msgstr "" +#~ "NEC PC-98 (com Sound Blaster 16 para PC-9800 com PC-9801-26/K compatível; " +#~ "canal 3 estendido)" + +#~ msgid "" +#~ "NEC PC-98 (with Sound Blaster 16 for PC-9800 w/PC-9801-26/K compatible; " +#~ "extended channel 3 and CSM)" +#~ msgstr "" +#~ "NEC PC-98 (com Sound Blaster 16 para PC-9800 com PC-9801-26/K compatível; " +#~ "canal 3 estendido e CSM)" + +#~ msgid "" +#~ "NEC PC-98 (with Sound Blaster 16 for PC-9800 w/PC-9801-26/K compatible in " +#~ "drums mode)" +#~ msgstr "" +#~ "NEC PC-98 (com Sound Blaster 16 para PC-9800 com PC-9801-26/K compatível " +#~ "em modo bateria)" + +#~ msgid "" +#~ "NEC PC-98 (with Sound Blaster 16 for PC-9800 w/PC-9801-26/K compatible in " +#~ "drums mode; extended channel 3)" +#~ msgstr "" +#~ "NEC PC-98 (com Sound Blaster 16 para PC-9800 com PC-9801-26/K compatível " +#~ "em modo bateria; canal 3 estendido)" + +#~ msgid "" +#~ "NEC PC-98 (with Sound Blaster 16 for PC-9800 w/PC-9801-26/K compatible in " +#~ "drums mode; extended channel 3 and CSM)" +#~ msgstr "" +#~ "NEC PC-98 (com Sound Blaster 16 para PC-9800 com PC-9801-26/K compatível " +#~ "em modo bateria; canal 3 estendido e CSM)" + +#~ msgid "ZX Spectrum (48K, SFX-like engine)" +#~ msgstr "ZX Spectrum (48K, motor estilo SFX)" + +#~ msgid "ZX Spectrum (48K, QuadTone engine)" +#~ msgstr "ZX Spectrum (48K, motor QuadTone)" + +#~ msgid "ZX Spectrum (128K) with TurboSound" +#~ msgstr "ZX Spectrum (128K) com TurboSound" + +#~ msgid "ZX Spectrum (128K) with TurboSound FM" +#~ msgstr "ZX Spectrum (128K) com TurboSound FM" + +#~ msgid "" +#~ "ZX Spectrum (128K) with TurboSound FM (extended channel 3 on first OPN)" +#~ msgstr "" +#~ "ZX Spectrum (128K) com TurboSound FM (canal 3 estendido no primeiro OPN)" + +#~ msgid "" +#~ "ZX Spectrum (128K) with TurboSound FM (extended channel 3 and CSM on " +#~ "first OPN)" +#~ msgstr "" +#~ "ZX Spectrum (128K) com TurboSound FM (canal 3 estendido e CSM no primeiro " +#~ "OPN)" + +#~ msgid "" +#~ "ZX Spectrum (128K) with TurboSound FM (extended channel 3 on second OPN)" +#~ msgstr "" +#~ "ZX Spectrum (128K) com TurboSound FM (canal 3 estendido no segundo OPN)" + +#~ msgid "" +#~ "ZX Spectrum (128K) with TurboSound FM (extended channel 3 and CSM on " +#~ "second OPN)" +#~ msgstr "" +#~ "ZX Spectrum (128K) com TurboSound FM (canal 3 estendido e CSM no segundo " +#~ "OPN)" + +#~ msgid "" +#~ "ZX Spectrum (128K) with TurboSound FM (extended channel 3 on both OPNs)" +#~ msgstr "" +#~ "ZX Spectrum (128K) com TurboSound FM (canal 3 estendido em ambos os OPNs)" + +#~ msgid "" +#~ "ZX Spectrum (128K) with TurboSound FM (extended channel 3 and CSM on both " +#~ "OPNs)" +#~ msgstr "" +#~ "ZX Spectrum (128K) com TurboSound FM (canal 3 estendido em ambos os OPNs)" + +#~ msgid "Atari 800 (stereo)" +#~ msgstr "Atari 800 (estéreo)" + +#~ msgid "PC (beeper)" +#~ msgstr "PC (beeper)" + +#~ msgid "PC + AdLib (drums mode)" +#~ msgstr "PC + AdLib (modo bateria)" + +#~ msgid "PC + Sound Blaster (drums mode)" +#~ msgstr "PC + Sound Blaster (modo bateria)" + +#~ msgid "PC + Sound Blaster w/Game Blaster Compatible" +#~ msgstr "PC + Sound Blaster com compatibilidade Game Blaster" + +#~ msgid "PC + Sound Blaster w/Game Blaster Compatible (drums mode)" +#~ msgstr "PC + Sound Blaster com compatibilidade Game Blaster (modo bateria)" + +#~ msgid "PC + Sound Blaster Pro (drums mode)" +#~ msgstr "PC + Sound Blaster Pro (modo bateria)" + +#~ msgid "PC + Sound Blaster Pro 2 (drums mode)" +#~ msgstr "PC + Sound Blaster Pro 2 (modo bateria)" + +#~ msgid "PC + ESS AudioDrive ES1488 (native ESFM mode)" +#~ msgstr "PC + ESS AudioDrive ES1488 (modo ESFM nativo)" + +#~ msgid "Sharp X1 + FM addon" +#~ msgstr "Sharp X1 + acessório FM" + +#~ msgid "FM Towns (extended channel 3)" +#~ msgstr "FM Towns (canal 3 estendido)" + +#~ msgid "Commander X16 (VERA only)" +#~ msgstr "Commander X16 (VERA apenas)" + +#~ msgid "Commander X16 (with OPM)" +#~ msgstr "Commander X16 (com OPM)" + +#~ msgid "Commander X16 (with Twin OPL3)" +#~ msgstr "Commander X16 (com 2x OPL3)" + +#~ msgid "Arcade systems" +#~ msgstr "Sistemas Arcade" + +#~ msgid "INSERT COIN" +#~ msgstr "Ô tio, me vê uma ficha aí!" + +#~ msgid "Williams/Midway Y/T unit w/ADPCM sound board" +#~ msgstr "Placa Williams/Midway Y/T com placa de som ADPCM" + +#~ msgid "Konami Battlantis (drums mode on first OPL2)" +#~ msgstr "Konami Battlantis (modo bateria no primeiro OPL2)" + +#~ msgid "Konami Battlantis (drums mode on second OPL2)" +#~ msgstr "Konami Battlantis (modo bateria no segundo OPL2)" + +#~ msgid "Konami Battlantis (drums mode on both OPL2s)" +#~ msgstr "Konami Battlantis (modo bateria em ambos os OPL2s)" + +#~ msgid "Konami Haunted Castle (drums mode)" +#~ msgstr "Konami Haunted Castle (modo bateria)" + +#~ msgid "Konami S.P.Y. (drums mode)" +#~ msgstr "Konami S.P.Y. (modo bateria)" + +#~ msgid "Konami Rollergames (drums mode)" +#~ msgstr "Konami Rollergames (modo bateria)" + +#~ msgid "Sega System E (with FM expansion)" +#~ msgstr "Sega System E (com expansão FM)" + +#~ msgid "Sega System E (with FM expansion in drums mode)" +#~ msgstr "Sega System E (com expansão FM em modo bateria)" + +#~ msgid "Sega Hang-On (extended channel 3)" +#~ msgstr "Sega Hang-On (canal 3 estendido)" + +#~ msgid "Sega Hang-On (extended channel 3 and CSM)" +#~ msgstr "Sega Hang-On (canal 3 estendido e CSM)" + +#~ msgid "Sega System 18 (extended channel 3 on first OPN2C)" +#~ msgstr "Sega System 18 (canal 3 estendido no primeiro OPN2C)" + +#~ msgid "Sega System 18 (extended channel 3 and CSM on first OPN2C)" +#~ msgstr "Sega System 18 (canal 3 estendido e CSM no primeiro OPN2C)" + +#~ msgid "Sega System 18 (extended channel 3 on second OPN2C)" +#~ msgstr "Sega System 18 (canal 3 estendido no segundo OPN2C)" + +#~ msgid "Sega System 18 (extended channel 3 and CSM on second OPN2C)" +#~ msgstr "Sega System 18 (canal 3 estendido e CSM no segundo OPN2C)" + +#~ msgid "Sega System 18 (extended channel 3 on both OPN2Cs)" +#~ msgstr "Sega System 18 (canal 3 estendido em ambos os OPN2Cs)" + +#~ msgid "Sega System 18 (extended channel 3 and CSM on both OPN2Cs)" +#~ msgstr "Sega System 18 (canal 3 estendido e CSM em ambos os OPN2Cs)" + +#~ msgid "Sega System 32 (extended channel 3 on first OPN2C)" +#~ msgstr "Sega System 32 (canal 3 estendido no primeiro OPN2C)" + +#~ msgid "Sega System 32 (extended channel 3 and CSM on first OPN2C)" +#~ msgstr "Sega System 32 (canal 3 estendido e CSM no primeiro OPN2C)" + +#~ msgid "Sega System 32 (extended channel 3 on second OPN2C)" +#~ msgstr "Sega System 32 (canal 3 estendido no segundo OPN2C)" + +#~ msgid "Sega System 32 (extended channel 3 and CSM on second OPN2C)" +#~ msgstr "Sega System 32 (canal 3 estendido e CSM no segundo OPN2C)" + +#~ msgid "Sega System 32 (extended channel 3 on both OPN2Cs)" +#~ msgstr "Sega System 32 (canal 3 estendido em ambos os OPN2Cs)" + +#~ msgid "Sega System 32 (extended channel 3 and CSM on both OPN2Cs)" +#~ msgstr "Sega System 32 (canal 3 estendido e CSM em ambos os OPN2Cs)" + +#~ msgid "Capcom Arcade" +#~ msgstr "Capcom Arcade" + +#~ msgid "Capcom Arcade (extended channel 3 on first OPN)" +#~ msgstr "Capcom Arcade (canal 3 estendido no primeiro OPN)" + +#~ msgid "Capcom Arcade (extended channel 3 and CSM on first OPN)" +#~ msgstr "Capcom Arcade (canal 3 estendido e CSM no primeiro OPN)" + +#~ msgid "Capcom Arcade (extended channel 3 on second OPN)" +#~ msgstr "Capcom Arcade (canal 3 estendido no segundo OPN)" + +#~ msgid "Capcom Arcade (extended channel 3 and CSM on second OPN)" +#~ msgstr "Capcom Arcade (canal 3 estendido e CSM no segundo OPN)" + +#~ msgid "Capcom Arcade (extended channel 3 on both OPNs)" +#~ msgstr "Capcom Arcade (canal 3 estendido em ambos os OPNs)" + +#~ msgid "Capcom Arcade (extended channel 3 and CSM on both OPNs)" +#~ msgstr "Capcom Arcade (canal 3 estendido e CSM em ambos os OPNs)" + +#~ msgid "Jaleco Ginga NinkyouDen (drums mode)" +#~ msgstr "Jaleco Ginga NinkyouDen (modo bateria)" + +#~ msgid "NMK 16-bit Arcade" +#~ msgstr "NMK Arcade 16-bit" + +#~ msgid "NMK 16-bit Arcade (extended channel 3)" +#~ msgstr "NMK Arcade 16-bit (canal 3 estendido)" + +#~ msgid "NMK 16-bit Arcade (extended channel 3 and CSM)" +#~ msgstr "NMK Arcade 16-bit (canal 3 estendido e CSM)" + +#~ msgid "NMK 16-bit Arcade (w/NMK112 bankswitching)" +#~ msgstr "NMK Arcade 16-bit (com bankswitching NMK112)" + +#~ msgid "NMK 16-bit Arcade (w/NMK112 bankswitching, extended channel 3)" +#~ msgstr "NMK Arcade 16-bit (com bankswitching NMK112, canal 3 estendido)" + +#~ msgid "" +#~ "NMK 16-bit Arcade (w/NMK112 bankswitching, extended channel 3 and CSM)" +#~ msgstr "" +#~ "NMK 16-bit Arcade (com bankswitching NMK112, canal 3 estendido e CSM)" + +#~ msgid "Atlus Power Instinct 2 (extended channel 3)" +#~ msgstr "Atlus Power Instinct 2 (canal 3 estendido)" + +#~ msgid "Atlus Power Instinct 2 (extended channel 3 and CSM)" +#~ msgstr "Atlus Power Instinct 2 (canal 3 estendido e CSM)" + +#~ msgid "Kaneko DJ Boy (extended channel 3)" +#~ msgstr "Kaneko DJ Boy (canal 3 estendido)" + +#~ msgid "Kaneko DJ Boy (extended channel 3 and CSM)" +#~ msgstr "Kaneko DJ Boy (canal 3 estendido e CSM)" + +#~ msgid "Kaneko Air Buster (extended channel 3)" +#~ msgstr "Kaneko Air Buster (canal 3 estendido)" + +#~ msgid "Kaneko Air Buster (extended channel 3 and CSM)" +#~ msgstr "Kaneko Air Buster (canal 3 estendido e CSM)" + +#~ msgid "Tecmo Ninja Gaiden (extended channel 3 on first OPN)" +#~ msgstr "Tecmo Ninja Gaiden (canal 3 estendido no primeiro OPN)" + +#~ msgid "Tecmo Ninja Gaiden (extended channel 3 and CSM on first OPN)" +#~ msgstr "Tecmo Ninja Gaiden (canal 3 estendido e CSM no primeiro OPN)" + +#~ msgid "Tecmo Ninja Gaiden (extended channel 3 on second OPN)" +#~ msgstr "Tecmo Ninja Gaiden (canal 3 estendido no segundo OPN)" + +#~ msgid "Tecmo Ninja Gaiden (extended channel 3 and CSM on second OPN)" +#~ msgstr "Tecmo Ninja Gaiden (canal 3 estendido e CSM no segundo OPN)" + +#~ msgid "Tecmo Ninja Gaiden (extended channel 3 on both OPNs)" +#~ msgstr "Tecmo Ninja Gaiden (canal 3 estendido em ambos os OPNs)" + +#~ msgid "Tecmo Ninja Gaiden (extended channel 3 and CSM on both OPNs)" +#~ msgstr "Tecmo Ninja Gaiden (canal 3 estendido e CSM em ambos os OPNs)" + +#~ msgid "Tecmo System (drums mode)" +#~ msgstr "Tecmo System (modo bateria)" + +#~ msgid "Seibu Kaihatsu Raiden (drums mode)" +#~ msgstr "Seibu Kaihatsu Raiden (modo bateria)" + +#~ msgid "Sunsoft Arcade" +#~ msgstr "Sunsoft Arcade" + +#~ msgid "Sunsoft Arcade (extended channel 3)" +#~ msgstr "Sunsoft Arcade (canal 3 estendido)" + +#~ msgid "Sunsoft Arcade (extended channel 3 and CSM)" +#~ msgstr "Sunsoft Arcade (canal 3 estendido e CSM)" + +#~ msgid "Atari Rampart (drums mode)" +#~ msgstr "Atari Rampart (modo bateria)" + +#~ msgid "Data East Karnov (extended channel 3)" +#~ msgstr "Data East Karnov (canal 3 estendido)" + +#~ msgid "Data East Karnov (extended channel 3 and CSM)" +#~ msgstr "Data East Karnov (canal 3 estendido e CSM)" + +#~ msgid "Data East Karnov (drums mode)" +#~ msgstr "Data East Karnov (modo bateria)" + +#~ msgid "Data East Karnov (extended channel 3; drums mode)" +#~ msgstr "Data East Karnov (canal 3 estendido; modo bateria)" + +#~ msgid "Data East Karnov (extended channel 3 and CSM; drums mode)" +#~ msgstr "Data East Karnov (canal 3 estendido e CSM; modo bateria)" + +#~ msgid "Data East Arcade" +#~ msgstr "Data East Arcade" + +#~ msgid "Data East Arcade (extended channel 3)" +#~ msgstr "Data East Arcade (canal 3 estendido)" + +#~ msgid "Data East Arcade (extended channel 3 and CSM)" +#~ msgstr "Data East Arcade (canal 3 estendido e CSM)" + +#~ msgid "Data East Arcade (drums mode)" +#~ msgstr "Data East Arcade (modo bateria)" + +#~ msgid "Data East Arcade (extended channel 3; drums mode)" +#~ msgstr "Data East Arcade (canal 3 estendido; modo bateria)" + +#~ msgid "Data East Arcade (extended channel 3 and CSM; drums mode)" +#~ msgstr "Data East Arcade (canal 3 estendido e CSM; modo bateria)" + +#~ msgid "Data East PCX (extended channel 3)" +#~ msgstr "Data East PCX (canal 3 estendido)" + +#~ msgid "Data East PCX (extended channel 3 and CSM)" +#~ msgstr "Data East PCX (canal 3 estendido e CSM)" + +#~ msgid "Data East Dark Seal (extended channel 3)" +#~ msgstr "Data East Dark Seal (canal 3 estendido)" + +#~ msgid "Data East Dark Seal (extended channel 3 and CSM)" +#~ msgstr "Data East Dark Seal (canal 3 estendido e CSM)" + +#~ msgid "SNK Ikari Warriors (drums mode on first OPL)" +#~ msgstr "SNK Ikari Warriors (modo bateria no primeiro OPL)" + +#~ msgid "SNK Ikari Warriors (drums mode on second OPL)" +#~ msgstr "SNK Ikari Warriors (modo bateria no segundo OPL)" + +#~ msgid "SNK Ikari Warriors (drums mode on both OPLs)" +#~ msgstr "SNK Ikari Warriors (modo bateria em ambos OPLs)" + +#~ msgid "SNK Triple Z80 (drums mode on Y8950)" +#~ msgstr "SNK Triple Z80 (modo bateria no Y8950)" + +#~ msgid "SNK Triple Z80 (drums mode on OPL)" +#~ msgstr "SNK Triple Z80 (modo bateria no OPL)" + +#~ msgid "SNK Triple Z80 (drums mode on Y8950 and OPL)" +#~ msgstr "SNK Triple Z80 (modo bateria no Y8950 e no OPL)" + +#~ msgid "SNK Chopper I (drums mode on Y8950)" +#~ msgstr "SNK Chopper I (modo bateria no Y8950)" + +#~ msgid "SNK Chopper I (drums mode on OPL2)" +#~ msgstr "SNK Chopper I (modo bateria no OPL2)" + +#~ msgid "SNK Chopper I (drums mode on Y8950 and OPL2)" +#~ msgstr "SNK Chopper I (modo bateria no Y8950 e no OPL2)" + +#~ msgid "SNK Touchdown Fever (drums mode on OPL)" +#~ msgstr "SNK Touchdown Fever (modo bateria no OPL)" + +#~ msgid "SNK Touchdown Fever (drums mode on Y8950)" +#~ msgstr "SNK Touchdown Fever (modo bateria no Y8950)" + +#~ msgid "SNK Touchdown Fever (drums mode on OPL and Y8950)" +#~ msgstr "SNK Touchdown Fever (modo bateria no OPL e no Y8950)" + +#~ msgid "Alpha denshi Alpha-68K (extended channel 3)" +#~ msgstr "Alpha denshi Alpha-68K (canal 3 estendido)" + +#~ msgid "Alpha denshi Alpha-68K (extended channel 3 and CSM)" +#~ msgstr "Alpha denshi Alpha-68K (canal 3 estendido e CSM)" + +#~ msgid "Alpha denshi Alpha-68K (drums mode)" +#~ msgstr "Alpha denshi Alpha-68K (modo bateria)" + +#~ msgid "Alpha denshi Alpha-68K (extended channel 3; drums mode)" +#~ msgstr "Alpha denshi Alpha-68K (canal 3 estendido; modo bateria)" + +#~ msgid "Alpha denshi Alpha-68K (extended channel 3 and CSM; drums mode)" +#~ msgstr "Alpha denshi Alpha-68K (canal 3 estendido e CSM; modo bateria)" + +#~ msgid "Neo Geo MVS (extended channel 2)" +#~ msgstr "Neo Geo MVS (canal 2 estendido)" + +#~ msgid "Neo Geo MVS (extended channel 2 and CSM)" +#~ msgstr "Neo Geo MVS (canal 2 estendido e CSM)" + +#~ msgid "Namco (3-channel WSG)" +#~ msgstr "Namco (WSG de 3 canais)" + +#~ msgid "Taito Arcade" +#~ msgstr "Taito Arcade" + +#~ msgid "Taito Arcade (extended channel 3)" +#~ msgstr "Taito Arcade (canal 3 estendido)" + +#~ msgid "Taito Arcade (extended channel 3 and CSM)" +#~ msgstr "Taito Arcade (canal 3 estendido e CSM)" + +#~ msgid "Seta 1 + FM addon" +#~ msgstr "Seta 1 + acessório FM" + +#~ msgid "Seta 1 + FM addon (extended channel 3)" +#~ msgstr "Seta 1 + acessório FM (canal 3 estendido)" + +#~ msgid "Seta 1 + FM addon (extended channel 3 and CSM)" +#~ msgstr "Seta 1 + acessório FM (canal 3 estendido e CSM)" + +#~ msgid "Coreland Cyber Tank (drums mode)" +#~ msgstr "Coreland Cyber Tank (modo bateria)" + +#~ msgid "Toaplan 1 (drums mode)" +#~ msgstr "Toaplan 1 (modo bateria)" + +#~ msgid "Dynax/Nakanihon 3rd generation hardware" +#~ msgstr "Hardware Dynax/Nakanihon de 3ª geração" + +#~ msgid "Dynax/Nakanihon 3rd generation hardware (drums mode)" +#~ msgstr "Hardware Dynax/Nakanihon de 3ª geração (modo bateria)" + +#~ msgid "Dynax/Nakanihon Real Break (drums mode)" +#~ msgstr "Dynax/Nakanihon Real Break (modo bateria)" + +#~ msgid "system presets that you have saved." +#~ msgstr "predefinições de sistema que você salvou." + +#~ msgid "" +#~ "chips which use frequency modulation (FM) to generate sound.\n" +#~ "some of these also pack more (like square and sample channels).\n" +#~ "Actually \"FM\" here stands for phase modulation,\n" +#~ "but these two are indistinguishable\n" +#~ "if you use sine waves." +#~ msgstr "" +#~ "chips que utilizam modulação de frequência (FM) para gerar som.\n" +#~ "alguns destes também possuem mais recursos (como canais de onda quadrada " +#~ "e samples).\n" +#~ "Na verdade, \"FM\" aqui significa modulação de fase,\n" +#~ "mas as duas técnicas são indistinguíveis\n" +#~ "se você utilizar ondas senoidais." + +#~ msgid "Yamaha YM2203 (extended channel 3)" +#~ msgstr "Yamaha YM2203 (canal 3 estendido)" + +#~ msgid "Yamaha YM2203 (extended channel 3 and CSM)" +#~ msgstr "Yamaha YM2203 (canal 3 estendido e CSM)" + +#~ msgid "Yamaha YM2608 (extended channel 3)" +#~ msgstr "Yamaha YM2608 (canal 3 estendido e CSM)" + +#~ msgid "Yamaha YM2608 (extended channel 3 and CSM)" +#~ msgstr "Yamaha YM2608 (canal 3 estendido e CSM)" + +#~ msgid "Yamaha YM2610 (extended channel 2)" +#~ msgstr "Yamaha YM2610 (canal 2 estendido)" + +#~ msgid "Yamaha YM2610 (extended channel 2 and CSM)" +#~ msgstr "Yamaha YM2610 (canal 2 estendido e CSM)" + +#~ msgid "Yamaha YM2610B (extended channel 3)" +#~ msgstr "Yamaha YM2610B (canal 3 estendido)" + +#~ msgid "Yamaha YM2610B (extended channel 3 and CSM)" +#~ msgstr "Yamaha YM2610B (canal 3 estendido e CSM)" + +#~ msgid "Yamaha YM2612 (extended channel 3)" +#~ msgstr "Yamaha YM2612 (canal 3 estendido)" + +#~ msgid "Yamaha YM2612 (extended channel 3) with DualPCM and CSM" +#~ msgstr "Yamaha YM2612 (canal 3 estendido) com DualPCM e CSM" + +#~ msgid "Yamaha YMF276 (extended channel 3)" +#~ msgstr "Yamaha YMF276 (canal 3 estendido)" + +#~ msgid "Yamaha YMF276 with DualPCM" +#~ msgstr "Yamaha YMF276 com DualPCM" + +#~ msgid "Yamaha YMF276 (extended channel 3) with DualPCM and CSM" +#~ msgstr "Yamaha YMF276 (canal 3 estendido) com DualPCM e CSM" + +#~ msgid "Yamaha YM2413 (drums mode)" +#~ msgstr "Yamaha YM2413 (modo bateria)" + +#~ msgid "Yamaha YM3438 (extended channel 3)" +#~ msgstr "Yamaha YM3438 (canal 3 estendido)" + +#~ msgid "Yamaha YM3438 (OPN2C) with DualPCM" +#~ msgstr "Yamaha YM3438 (OPN2C) com DualPCM" + +#~ msgid "Yamaha YM3438 (extended channel 3) with DualPCM and CSM" +#~ msgstr "Yamaha YM3438 (canal 3 estendido) com DualPCM e CSM" + +#~ msgid "Yamaha YM3526 (drums mode)" +#~ msgstr "Yamaha YM3526 (modo bateria)" + +#~ msgid "Yamaha Y8950 (drums mode)" +#~ msgstr "Yamaha Y8950 (modo bateria)" + +#~ msgid "Yamaha YM3812 (drums mode)" +#~ msgstr "Yamaha YM3812 (modo bateria)" + +#~ msgid "Yamaha YMF262 (drums mode)" +#~ msgstr "Yamaha YMF262 (modo bateria)" + +#~ msgid "Yamaha YMF289B (drums mode)" +#~ msgstr "Yamaha YMF289B (modo bateria)" + +#~ msgid "" +#~ "these chips generate square/pulse tones only (but may include noise)." +#~ msgstr "" +#~ "esses chips geram tons de onda quadrada/pulsada somente (mas podem " +#~ "incluir ruído)." + +#~ msgid "Sega PSG (SN76489-like)" +#~ msgstr "Sega PSG (similar ao SN76489)" + +#~ msgid "Sega PSG (SN76489-like, Stereo)" +#~ msgstr "Sega PSG (similar ao SN76489, Estéreo)" + +#~ msgid "chips/systems which use PCM or ADPCM samples for sound synthesis." +#~ msgstr "chips/sistemas que usam samples PCM ou ADPCM para geração de som." + +#~ msgid "chips which use user-specified waveforms to generate sound." +#~ msgstr "" +#~ "chips que usam formas de onda especificadas pelo usuários para gerar som." + +#~ msgid "Namco C15 (8-channel mono)" +#~ msgstr "Namco C15 (mono, 8 canais)" + +#~ msgid "Namco C30 (8-channel stereo)" +#~ msgstr "Namco C30 (estéreo, 8 canais)" + +#~ msgid "Specialized" +#~ msgstr "Especializado" + +#~ msgid "chips/systems with unique sound synthesis methods." +#~ msgstr "chips/sistemas com métodos únicos de geração/síntese de som." + +#~ msgid "Commodore PET (pseudo-wavetable)" +#~ msgstr "Commodore PET (pseudo-wavetable)" + +#~ msgid "ZX Spectrum (beeper only, SFX-like engine)" +#~ msgstr "ZX Spectrum (beeper apenas, motor estilo SFX)" + +#~ msgid "ZX Spectrum (beeper only, QuadTone engine)" +#~ msgstr "ZX Spectrum (beeper apenas, motor QuadTone)" + +#~ msgid "" +#~ "chips/systems which do not exist in reality or were made just several " +#~ "years ago." +#~ msgstr "" +#~ "chips/sistemas que não existem fisicamente ou foram feitos apenas alguns " +#~ "anos atrás." + +#~ msgid "DefleMask-compatible" +#~ msgstr "Compatível com DefleMask" + +#~ msgid "" +#~ "these configurations are compatible with DefleMask.\n" +#~ "select this if you need to save as .dmf or work with that program." +#~ msgstr "" +#~ "essas configurações são compatíveis com o DefleMask.\n" +#~ "selecione uma delas se você precisar salvar no formato .dmf ou trabalhar " +#~ "com este programa." + +#~ msgid "Arcade (YM2151 and SegaPCM)" +#~ msgstr "Arcade (YM2151 e SegaPCM)" + +#~ msgid "Neo Geo CD (extended channel 2)" +#~ msgstr "Neo Geo CD (canal 2 estendido)" + +#~ msgid "Register View###Register View" +#~ msgstr "Visualização de Registradores###Register View" + +#~ msgid "Sample Editor###Sample Editor" +#~ msgstr "Editor de Sample###Sample Editor" + +#~ msgid "%d: %s" +#~ msgstr "%d: %s" + +#~ msgid "QSound: maximum sample length is 65535" +#~ msgstr "QSound: o tamanho máximo de uma sample é 65535" + +#~ msgid "Mode" +#~ msgstr "Modo" + +#~ msgid "%d samples" +#~ msgid_plural "%d samples" +#~ msgstr[0] "%d sample" +#~ msgstr[1] "%d samples" + +#~ msgid "%d bytes" +#~ msgid_plural "%d bytes" +#~ msgstr[0] "%d byte" +#~ msgstr[1] "%d bytes" + +#~ msgid "Song Info###Song Information" +#~ msgstr "Informações da Música###Song Information" + +#~ msgid "Song Comments###Song Comments" +#~ msgstr "Comentários da Música###Song Comments" + +#~ msgid "Speed###Speed" +#~ msgstr "Velocidade###Speed" + +#~ msgid "Statistics###Statistics" +#~ msgstr "Estatísticas###Statistics" + +#~ msgid "Subsongs###Subsongs" +#~ msgstr "Subfaixas###Subsongs" + +#~ msgid "Downmix chip output to mono" +#~ msgstr "Misturar saída do chip para mono" + +#~ msgid "Reserved blocks for wavetables:" +#~ msgstr "Blocos reservados para wavetables:" + +#~ msgid "" +#~ "Reserve this many blocks 256 bytes each in sample memory.\n" +#~ "Each block holds one wavetable (is used for one wavetable channel),\n" +#~ "so reserve as many as you need." +#~ msgstr "" +#~ "Reserva tal quantidade de blocos, 256 bytes cada, na memória de sample.\n" +#~ "Cada bloco irá conter uma wavetable (será usado para um canal " +#~ "wavetable),\n" +#~ "então reserve tantos quanto você precisar." + +#~ msgid "Hz" +#~ msgstr "Hz" + +#~ msgid "1MB" +#~ msgstr "1MB" + +#~ msgid "256KB" +#~ msgstr "256KB" + +#~ msgid "Chip Manager###Chip Manager" +#~ msgstr "Gerenciador de Chips###Chip Manager" + +#~ msgid "cannot duplicate chip! (" +#~ msgstr "não pôde duplicar chip! (" + +#~ msgid "ZXS Beeper" +#~ msgstr "Beeper do ZX Spectrum" + +#~ msgid "Volume Meter###Volume Meter" +#~ msgstr "Medidor de Volume###Volume Meter" + +#~ msgid "Wavetable Editor###Wavetable Editor" +#~ msgstr "Editor de Wavetable###Wavetable Editor" + +#~ msgid "export .dmw..." +#~ msgstr "exportar .dmw..." + +#~ msgid "export raw..." +#~ msgstr "exportar em formato raw..." + +#~ msgid "" +#~ "use a width of:\n" +#~ "- any on Amiga/N163\n" +#~ "- 32 on Game Boy, PC Engine, SCC, Konami Bubble System, Namco WSG, " +#~ "Virtual Boy and WonderSwan\n" +#~ "- 64 on FDS\n" +#~ "- 128 on X1-010\n" +#~ "- 256 for ES5503\n" +#~ "any other widths will be scaled during playback." +#~ msgstr "" +#~ "use uma largura de:\n" +#~ "- qualquer uma no Amiga/N163\n" +#~ "- 32 no Game Boy, PC Engine, SCC, Konami Bubble System, Namco WSG, " +#~ "Virtual Boy e WonderSwan\n" +#~ "- 64 no FDS\n" +#~ "- 128 no X1-010\n" +#~ "- 256 para o ES5503\n" +#~ "quaisquer outras larguras serão escalonadas no momento da reprodução." + +#~ msgid "" +#~ "use a height of:\n" +#~ "- 16 for Game Boy, WonderSwan, Namco WSG, Konami Bubble System, X1-010 " +#~ "Envelope shape and N163\n" +#~ "- 32 for PC Engine\n" +#~ "- 64 for FDS and Virtual Boy\n" +#~ "- 256 for X1-010, SCC and ES5503\n" +#~ "any other heights will be scaled during playback." +#~ msgstr "" +#~ "use uma altura de:\n" +#~ "- 16 para Game Boy, WonderSwan, Namco WSG, Konami Bubble System, forma do " +#~ "Envelope do X1-010 e N163\n" +#~ "- 32 para PC Engine\n" +#~ "- 64 para FDS e Virtual Boy\n" +#~ "- 256 para X1-010, SCC e ES5503\n" +#~ "quaisquer outras alturas serão escalonadas no momento da reprodução." + +#~ msgid "Oscilloscope (X-Y)###Oscilloscope (X-Y)" +#~ msgstr "Osciloscópio (X-Y)###Oscilloscope (X-Y)" + +#~ msgid "exponential" +#~ msgstr "exponencial" + +#~ msgid "direct" +#~ msgstr "direto" + +#~ msgid "HP/K2, HP/K2" +#~ msgstr "HP/K2, HP/K2" + +#~ msgid "HP/K2, LP/K1" +#~ msgstr "HP/K2, LP/K1" + +#~ msgid "LP/K2, LP/K2" +#~ msgstr "LP/K2, LP/K2" + +#~ msgid "LP/K2, LP/K1" +#~ msgstr "LP/K2, LP/K1" + +#~ msgid "Settings###Settings" +#~ msgstr "Configurações###Settings" + +#~ msgid "GUI language" +#~ msgstr "Linguagem da interface" + +#~ msgid "Translate channel names in pattern header" +#~ msgstr "Traduzir nomes dos canais no cabeçalho da sequência" + +#~ msgid "Translate channel names in channel oscilloscope label" +#~ msgstr "Traduzir nomes dos canais no rótulo do osciloscópio por canal" + +#~ msgid "Translate short channel names (in orders and other places)" +#~ msgstr "Traduzir nomes curtos dos canais (nas ordens e em outros lugares)" + +#~ msgid "iulserghiueshgui" +#~ msgstr "kcjsghçzxjcmfgag" + +#~ msgid "What?" +#~ msgstr "O quê?" + +#~ msgid "want: %d samples @ %.0fHz (%d %s)" +#~ msgstr "queria: %d amostras a %.0fHz (%d %s)" + +#~ msgid "got: %d samples @ %.0fHz (%d %s)" +#~ msgstr "conseguiu: %d amostras @ %.0fHz (%d %s)" + +#~ msgid "Listen to MIDI clock" +#~ msgstr "Escutar clock MIDI" + +#~ msgid "Listen to MIDI time code" +#~ msgstr "Escutar timecode MIDI" + +#~ msgid "Light Show (use for Launchpad)" +#~ msgstr "Show de luzes (use para o Launchpad)" + +#~ msgid "Sample ROMs:" +#~ msgstr "ROMs de Sample:" + +#~ msgid "OPL4 YRW801 path" +#~ msgstr "Caminho da YRW801 do OPL4" + +#~ msgid "MultiPCM TG100 path" +#~ msgstr "Caminho da TG100 do MultiPCM" + +#~ msgid "MultiPCM MU5 path" +#~ msgstr "Caminho da MU5 do MultiPCM" + +#~ msgid "Local wavetables list" +#~ msgstr "Lista de wavetables locais" + +#~ msgid "Right-click or double-click" +#~ msgstr "Clicar com o botão direito ou duplo clique" + +#~ msgid "Right-click" +#~ msgstr "Clicar com o botão direito" + +#~ msgid "Double-click" +#~ msgstr "Duplo clique" + +#~ msgid "Cursor details" +#~ msgstr "Detalhes do cursor" + +#~ msgid "File path" +#~ msgstr "Caminho do arquivo" + +#~ msgid "Cursor details or file path" +#~ msgstr "Detalhes do cursor ou caminho do arquivo" + +#~ msgid "Nothing" +#~ msgstr "Nada" + +#~ msgid "Square border##CHS4" +#~ msgstr "Borda quadrada##CHS4" + +#~ msgid "Non##CHV0" +#~ msgstr "Nenhuma##CHV0" + +#~ msgid "Alternate (4x1)##fml6" +#~ msgstr "Alternativo (4x1)##fml6" + +#~ msgid "Between Decay and Sustain Rate" +#~ msgstr "Entre Decaimento e Taxa de Sustentação" + +#~ msgid "After Release Rate" +#~ msgstr "Após Taxa de Repouso" + +#~ msgid "Misc" +#~ msgstr "Miscelânea" + +#~ msgid "Wrap text" +#~ msgstr "Quebrar texto" + +#~ msgid "Wrap text in song/subsong comments window." +#~ msgstr "" +#~ "Quebrar automaticamente texto na janela de comentários da música/subfaixa." + +#~ msgid "Frame shading in text windows" +#~ msgstr "Sombreamento do quadro nas janelas de texto" + +#~ msgid "" +#~ "Apply frame shading to the multiline text fields\n" +#~ "such as song/subsong info/comments." +#~ msgstr "" +#~ "Aplicar sombreamento de quadro para os campos de texto multilinha\n" +#~ "como na janela de comentários da música/subfaixa." + +#~ msgid "Show chip info in chip manager" +#~ msgstr "Mostrar informações do chip no gerenciador de chips" + +#~ msgid "" +#~ "Display tooltip in chip manager when hovering over the chip. Tooltip " +#~ "shows chip name and description." +#~ msgstr "" +#~ "Mostra uma dica de contexto no gerenciador de chips ao passar o mouse " +#~ "sobre o chip. A dica de contexto mostra o nome do chip e a descrição." + +#~ msgid "Button##CC_GUI_COLOR_BUTTON" +#~ msgstr "Botão##CC_GUI_COLOR_BUTTON" + +#~ msgid "Button (hovered)##CC_GUI_COLOR_BUTTON_HOVER" +#~ msgstr "Botão (flutuando sobre)##CC_GUI_COLOR_BUTTON_HOVER" + +#~ msgid "Button (active)##CC_GUI_COLOR_BUTTON_ACTIVE" +#~ msgstr "Botão (ativado)##CC_GUI_COLOR_BUTTON_ACTIVE" + +#~ msgid "Tab##CC_GUI_COLOR_TAB" +#~ msgstr "Aba##CC_GUI_COLOR_TAB" + +#~ msgid "Tab (hovered)##CC_GUI_COLOR_TAB_HOVER" +#~ msgstr "Aba (flutuando sobre)##CC_GUI_COLOR_TAB_HOVER" + +#~ msgid "Tab (active)##CC_GUI_COLOR_TAB_ACTIVE" +#~ msgstr "Aba (ativada)##CC_GUI_COLOR_TAB_ACTIVE" + +#~ msgid "Tab (unfocused)##CC_GUI_COLOR_TAB_UNFOCUSED" +#~ msgstr "Aba (desfocada)##CC_GUI_COLOR_TAB_UNFOCUSED" + +#~ msgid "Tab (unfocused and active)##CC_GUI_COLOR_TAB_UNFOCUSED_ACTIVE" +#~ msgstr "Aba (desfocada e ativada)##CC_GUI_COLOR_TAB_UNFOCUSED_ACTIVE" + +#~ msgid "ImGui header##CC_GUI_COLOR_IMGUI_HEADER" +#~ msgstr "Cabeçalho ImGui##CC_GUI_COLOR_IMGUI_HEADER" + +#~ msgid "ImGui header (hovered)##CC_GUI_COLOR_IMGUI_HEADER_HOVER" +#~ msgstr "Cabeçalho ImGui (flutuando sobre)##CC_GUI_COLOR_IMGUI_HEADER_HOVER" + +#~ msgid "ImGui header (active)##CC_GUI_COLOR_IMGUI_HEADER_ACTIVE" +#~ msgstr "Cabeçalho ImGui (ativado)##CC_GUI_COLOR_IMGUI_HEADER_ACTIVE" + +#~ msgid "Resize grip##CC_GUI_COLOR_RESIZE_GRIP" +#~ msgstr "Aba de redimensionamento##CC_GUI_COLOR_RESIZE_GRIP" + +#~ msgid "Resize grip (hovered)##CC_GUI_COLOR_RESIZE_GRIP_HOVER" +#~ msgstr "" +#~ "Aba de redimensionamento (flutuando sobre)##CC_GUI_COLOR_RESIZE_GRIP_HOVER" + +#~ msgid "Resize grip (active)##CC_GUI_COLOR_RESIZE_GRIP_ACTIVE" +#~ msgstr "Aba de redimensionamento (ativada)##CC_GUI_COLOR_RESIZE_GRIP_ACTIVE" + +#~ msgid "Widget background##CC_GUI_COLOR_WIDGET_BACKGROUND" +#~ msgstr "Fundo de elemento##CC_GUI_COLOR_WIDGET_BACKGROUND" + +#~ msgid "Widget background (hovered)##CC_GUI_COLOR_WIDGET_BACKGROUND_HOVER" +#~ msgstr "" +#~ "Fundo de elemento (flutuando sobre)##CC_GUI_COLOR_WIDGET_BACKGROUND_HOVER" + +#~ msgid "Widget background (active)##CC_GUI_COLOR_WIDGET_BACKGROUND_ACTIVE" +#~ msgstr "Fundo de elemento (ativado)##CC_GUI_COLOR_WIDGET_BACKGROUND_ACTIVE" + +#~ msgid "Slider grab##CC_GUI_COLOR_SLIDER_GRAB" +#~ msgstr "Botão deslizante##CC_GUI_COLOR_SLIDER_GRAB" + +#~ msgid "Slider grab (active)##CC_GUI_COLOR_SLIDER_GRAB_ACTIVE" +#~ msgstr "Botão deslizante (ativado)##CC_GUI_COLOR_SLIDER_GRAB_ACTIVE" + +#~ msgid "Title background (active)##CC_GUI_COLOR_TITLE_BACKGROUND_ACTIVE" +#~ msgstr "Fundo de título (ativado)##CC_GUI_COLOR_TITLE_BACKGROUND_ACTIVE" + +#~ msgid "Checkbox/radio button mark##CC_GUI_COLOR_CHECK_MARK" +#~ msgstr "Marca de caixa de checagem/botão de rádio##CC_GUI_COLOR_CHECK_MARK" + +#~ msgid "Text selection##CC_GUI_COLOR_TEXT_SELECTION" +#~ msgstr "Seleção de texto##CC_GUI_COLOR_TEXT_SELECTION" + +#~ msgid "Line plot##CC_GUI_COLOR_PLOT_LINES" +#~ msgstr "Traçado de linha##CC_GUI_COLOR_PLOT_LINES" + +#~ msgid "Line plot (hovered)##CC_GUI_COLOR_PLOT_LINES_HOVER" +#~ msgstr "Traçado de linha (flutuando sobre)##CC_GUI_COLOR_PLOT_LINES_HOVER" + +#~ msgid "Histogram plot##CC_GUI_COLOR_PLOT_HISTOGRAM" +#~ msgstr "Desenho de histograma##CC_GUI_COLOR_PLOT_HISTOGRAM" + +#~ msgid "Histogram plot (hovered)##CC_GUI_COLOR_PLOT_HISTOGRAM_HOVER" +#~ msgstr "" +#~ "Desenho de histograma (flutuando sobre)##CC_GUI_COLOR_PLOT_HISTOGRAM_HOVER" + +#~ msgid "Table row (even)##CC_GUI_COLOR_TABLE_ROW_EVEN" +#~ msgstr "Linha de tabela (par)##CC_GUI_COLOR_TABLE_ROW_EVEN" + +#~ msgid "Table row (odd)##CC_GUI_COLOR_TABLE_ROW_ODD" +#~ msgstr "Linha de tabela (ímpar)##CC_GUI_COLOR_TABLE_ROW_ODD" + +#~ msgid "Background##CC_GUI_COLOR_BACKGROUND" +#~ msgstr "Fundo##CC_GUI_COLOR_BACKGROUND" + +#~ msgid "Window background##CC_GUI_COLOR_FRAME_BACKGROUND" +#~ msgstr "Fundo de janela##CC_GUI_COLOR_FRAME_BACKGROUND" + +#~ msgid "Sub-window background##CC_GUI_COLOR_FRAME_BACKGROUND_CHILD" +#~ msgstr "Fundo de sub-janela##CC_GUI_COLOR_FRAME_BACKGROUND_CHILD" + +#~ msgid "Pop-up background##CC_GUI_COLOR_FRAME_BACKGROUND_POPUP" +#~ msgstr "Fundo de diálogo pop-up##CC_GUI_COLOR_FRAME_BACKGROUND_POPUP" + +#~ msgid "Modal backdrop##CC_GUI_COLOR_MODAL_BACKDROP" +#~ msgstr "Fundo de diálogo modal##CC_GUI_COLOR_MODAL_BACKDROP" + +#~ msgid "Header##CC_GUI_COLOR_HEADER" +#~ msgstr "Cabeçalho##CC_GUI_COLOR_HEADER" + +#~ msgid "Text##CC_GUI_COLOR_TEXT" +#~ msgstr "Texto##CC_GUI_COLOR_TEXT" + +#~ msgid "Text (disabled)##CC_GUI_COLOR_TEXT_DISABLED" +#~ msgstr "Texto (desabilitado)##CC_GUI_COLOR_TEXT_DISABLED" + +#~ msgid "Title bar (inactive)##CC_GUI_COLOR_TITLE_INACTIVE" +#~ msgstr "Barra de título (inativa)##CC_GUI_COLOR_TITLE_INACTIVE" + +#~ msgid "Title bar (collapsed)##CC_GUI_COLOR_TITLE_COLLAPSED" +#~ msgstr "Barra de título (contraída)##CC_GUI_COLOR_TITLE_COLLAPSED" + +#~ msgid "Menu bar##CC_GUI_COLOR_MENU_BAR" +#~ msgstr "Barra de menu##CC_GUI_COLOR_MENU_BAR" + +#~ msgid "Border##CC_GUI_COLOR_BORDER" +#~ msgstr "Borda##CC_GUI_COLOR_BORDER" + +#~ msgid "Border shadow##CC_GUI_COLOR_BORDER_SHADOW" +#~ msgstr "Sombra de borda##CC_GUI_COLOR_BORDER_SHADOW" + +#~ msgid "Scroll bar##CC_GUI_COLOR_SCROLL" +#~ msgstr "Barra de rolagem##CC_GUI_COLOR_SCROLL" + +#~ msgid "Scroll bar (hovered)##CC_GUI_COLOR_SCROLL_HOVER" +#~ msgstr "Barra de rolagem (flutuando sobre)##CC_GUI_COLOR_SCROLL_HOVER" + +#~ msgid "Scroll bar (clicked)##CC_GUI_COLOR_SCROLL_ACTIVE" +#~ msgstr "Barra de rolagem (clicada)##CC_GUI_COLOR_SCROLL_ACTIVE" + +#~ msgid "Scroll bar background##CC_GUI_COLOR_SCROLL_BACKGROUND" +#~ msgstr "Fundo da barra de rolagem##CC_GUI_COLOR_SCROLL_BACKGROUND" + +#~ msgid "Separator##CC_GUI_COLOR_SEPARATOR" +#~ msgstr "Separador##CC_GUI_COLOR_SEPARATOR" + +#~ msgid "Separator (hover)##CC_GUI_COLOR_SEPARATOR_HOVER" +#~ msgstr "Separador (flutuando sobre)##CC_GUI_COLOR_SEPARATOR_HOVER" + +#~ msgid "Separator (active)##CC_GUI_COLOR_SEPARATOR_ACTIVE" +#~ msgstr "Separador (ativado)##CC_GUI_COLOR_SEPARATOR_ACTIVE" + +#~ msgid "Docking preview##CC_GUI_COLOR_DOCKING_PREVIEW" +#~ msgstr "Previsão de ancoragem##CC_GUI_COLOR_DOCKING_PREVIEW" + +#~ msgid "Docking empty##CC_GUI_COLOR_DOCKING_EMPTY" +#~ msgstr "Ancoragem vazia##CC_GUI_COLOR_DOCKING_EMPTY" + +#~ msgid "Table header##CC_GUI_COLOR_TABLE_HEADER" +#~ msgstr "Cabeçalho de tabela##CC_GUI_COLOR_TABLE_HEADER" + +#~ msgid "Table border (hard)##CC_GUI_COLOR_TABLE_BORDER_HARD" +#~ msgstr "Borda de tabela (dura)##CC_GUI_COLOR_TABLE_BORDER_HARD" + +#~ msgid "Table border (soft)##CC_GUI_COLOR_TABLE_BORDER_SOFT" +#~ msgstr "Borda de tabela (suave)##CC_GUI_COLOR_TABLE_BORDER_SOFT" + +#~ msgid "Drag and drop target##CC_GUI_COLOR_DRAG_DROP_TARGET" +#~ msgstr "Alvo de arrastar e soltar##CC_GUI_COLOR_DRAG_DROP_TARGET" + +#~ msgid "Window switcher (highlight)##CC_GUI_COLOR_NAV_WIN_HIGHLIGHT" +#~ msgstr "Seletor de janelas (realce)##CC_GUI_COLOR_NAV_WIN_HIGHLIGHT" + +#~ msgid "Window switcher backdrop##CC_GUI_COLOR_NAV_WIN_BACKDROP" +#~ msgstr "Fundo do seletor de janelas##CC_GUI_COLOR_NAV_WIN_BACKDROP" + +#~ msgid "Toggle on##CC_GUI_COLOR_TOGGLE_ON" +#~ msgstr "Alternativa ligada##CC_GUI_COLOR_TOGGLE_ON" + +#~ msgid "Toggle off##CC_GUI_COLOR_TOGGLE_OFF" +#~ msgstr "Alternativa desligada##CC_GUI_COLOR_TOGGLE_OFF" + +#~ msgid "Playback status##CC_GUI_COLOR_PLAYBACK_STAT" +#~ msgstr "Estado de reprodução##CC_GUI_COLOR_PLAYBACK_STAT" + +#~ msgid "Destructive hint##CC_GUI_COLOR_DESTRUCTIVE" +#~ msgstr "Destaque destrutivo##CC_GUI_COLOR_DESTRUCTIVE" + +#~ msgid "Warning hint##CC_GUI_COLOR_WARNING" +#~ msgstr "Destaque de aviso##CC_GUI_COLOR_WARNING" + +#~ msgid "Error hint##CC_GUI_COLOR_ERROR" +#~ msgstr "Destaque de erro##CC_GUI_COLOR_ERROR" + +#~ msgid "Directory##CC_GUI_COLOR_FILE_DIR" +#~ msgstr "Diretório##CC_GUI_COLOR_FILE_DIR" + +#~ msgid "Song (native)##CC_GUI_COLOR_FILE_SONG_NATIVE" +#~ msgstr "Música (nativa)##CC_GUI_COLOR_FILE_SONG_NATIVE" + +#~ msgid "Song (import)##CC_GUI_COLOR_FILE_SONG_IMPORT" +#~ msgstr "Música (importada)##CC_GUI_COLOR_FILE_SONG_IMPORT" + +#~ msgid "Instrument##CC_GUI_COLOR_FILE_INSTR" +#~ msgstr "Instrumento##CC_GUI_COLOR_FILE_INSTR" + +#~ msgid "Audio##CC_GUI_COLOR_FILE_AUDIO" +#~ msgstr "Áudio##CC_GUI_COLOR_FILE_AUDIO" + +#~ msgid "Wavetable##CC_GUI_COLOR_FILE_WAVE" +#~ msgstr "Wavetable##CC_GUI_COLOR_FILE_WAVE" + +#~ msgid "VGM##CC_GUI_COLOR_FILE_VGM" +#~ msgstr "VGM##CC_GUI_COLOR_FILE_VGM" + +#~ msgid "ZSM##CC_GUI_COLOR_FILE_ZSM" +#~ msgstr "ZSM##CC_GUI_COLOR_FILE_ZSM" + +#~ msgid "Font##CC_GUI_COLOR_FILE_FONT" +#~ msgstr "Fonte##CC_GUI_COLOR_FILE_FONT" + +#~ msgid "Other##CC_GUI_COLOR_FILE_OTHER" +#~ msgstr "Outro##CC_GUI_COLOR_FILE_OTHER" + +#~ msgid "Border##CC_GUI_COLOR_OSC_BORDER" +#~ msgstr "Borda##CC_GUI_COLOR_OSC_BORDER" + +#~ msgid "Background (top-left)##CC_GUI_COLOR_OSC_BG1" +#~ msgstr "Fundo (superior esquerdo)##CC_GUI_COLOR_OSC_BG1" + +#~ msgid "Background (top-right)##CC_GUI_COLOR_OSC_BG2" +#~ msgstr "Fundo (superior direito)##CC_GUI_COLOR_OSC_BG2" + +#~ msgid "Background (bottom-left)##CC_GUI_COLOR_OSC_BG3" +#~ msgstr "Fundo (inferior esquerdo)##CC_GUI_COLOR_OSC_BG3" + +#~ msgid "Background (bottom-right)##CC_GUI_COLOR_OSC_BG4" +#~ msgstr "Fundo (inferior direito)##CC_GUI_COLOR_OSC_BG4" + +#~ msgid "Waveform##CC_GUI_COLOR_OSC_WAVE" +#~ msgstr "Forma de onda##CC_GUI_COLOR_OSC_WAVE" + +#~ msgid "Waveform (clip)##CC_GUI_COLOR_OSC_WAVE_PEAK" +#~ msgstr "Forma de onda (corte/clip)##CC_GUI_COLOR_OSC_WAVE_PEAK" + +#~ msgid "Reference##CC_GUI_COLOR_OSC_REF" +#~ msgstr "Referência##CC_GUI_COLOR_OSC_REF" + +#~ msgid "Guide##CC_GUI_COLOR_OSC_GUIDE" +#~ msgstr "Guia##CC_GUI_COLOR_OSC_GUIDE" + +#~ msgid "Waveform (1)##CC_GUI_COLOR_OSC_WAVE_CH0" +#~ msgstr "Forma de onda (1)##CC_GUI_COLOR_OSC_WAVE_CH0" + +#~ msgid "Waveform (2)##CC_GUI_COLOR_OSC_WAVE_CH1" +#~ msgstr "Forma de onda (2)##CC_GUI_COLOR_OSC_WAVE_CH1" + +#~ msgid "Waveform (3)##CC_GUI_COLOR_OSC_WAVE_CH2" +#~ msgstr "Forma de onda (3)##CC_GUI_COLOR_OSC_WAVE_CH2" + +#~ msgid "Waveform (4)##CC_GUI_COLOR_OSC_WAVE_CH3" +#~ msgstr "Forma de onda (4)##CC_GUI_COLOR_OSC_WAVE_CH3" + +#~ msgid "Waveform (5)##CC_GUI_COLOR_OSC_WAVE_CH4" +#~ msgstr "Forma de onda (5)##CC_GUI_COLOR_OSC_WAVE_CH4" + +#~ msgid "Waveform (6)##CC_GUI_COLOR_OSC_WAVE_CH5" +#~ msgstr "Forma de onda (6)##CC_GUI_COLOR_OSC_WAVE_CH5" + +#~ msgid "Waveform (7)##CC_GUI_COLOR_OSC_WAVE_CH6" +#~ msgstr "Forma de onda (7)##CC_GUI_COLOR_OSC_WAVE_CH6" + +#~ msgid "Waveform (8)##CC_GUI_COLOR_OSC_WAVE_CH7" +#~ msgstr "Forma de onda (8)##CC_GUI_COLOR_OSC_WAVE_CH7" + +#~ msgid "Waveform (9)##CC_GUI_COLOR_OSC_WAVE_CH8" +#~ msgstr "Forma de onda (9)##CC_GUI_COLOR_OSC_WAVE_CH8" + +#~ msgid "Waveform (10)##CC_GUI_COLOR_OSC_WAVE_CH9" +#~ msgstr "Forma de onda (10)##CC_GUI_COLOR_OSC_WAVE_CH9" + +#~ msgid "Waveform (11)##CC_GUI_COLOR_OSC_WAVE_CH10" +#~ msgstr "Forma de onda (11)##CC_GUI_COLOR_OSC_WAVE_CH10" + +#~ msgid "Waveform (12)##CC_GUI_COLOR_OSC_WAVE_CH11" +#~ msgstr "Forma de onda (12)##CC_GUI_COLOR_OSC_WAVE_CH11" + +#~ msgid "Waveform (13)##CC_GUI_COLOR_OSC_WAVE_CH12" +#~ msgstr "Forma de onda (13)##CC_GUI_COLOR_OSC_WAVE_CH12" + +#~ msgid "Waveform (14)##CC_GUI_COLOR_OSC_WAVE_CH13" +#~ msgstr "Forma de onda (14)##CC_GUI_COLOR_OSC_WAVE_CH13" + +#~ msgid "Waveform (15)##CC_GUI_COLOR_OSC_WAVE_CH14" +#~ msgstr "Forma de onda (15)##CC_GUI_COLOR_OSC_WAVE_CH14" + +#~ msgid "Waveform (16)##CC_GUI_COLOR_OSC_WAVE_CH15" +#~ msgstr "Forma de onda (16)##CC_GUI_COLOR_OSC_WAVE_CH15" + +#~ msgid "Low##CC_GUI_COLOR_VOLMETER_LOW" +#~ msgstr "Baixo##CC_GUI_COLOR_VOLMETER_LOW" + +#~ msgid "High##CC_GUI_COLOR_VOLMETER_HIGH" +#~ msgstr "Alto##CC_GUI_COLOR_VOLMETER_HIGH" + +#~ msgid "Clip##CC_GUI_COLOR_VOLMETER_PEAK" +#~ msgstr "Corte (clip)##CC_GUI_COLOR_VOLMETER_PEAK" + +#~ msgid "Order number##CC_GUI_COLOR_ORDER_ROW_INDEX" +#~ msgstr "Número da ordem##CC_GUI_COLOR_ORDER_ROW_INDEX" + +#~ msgid "Playing order background##CC_GUI_COLOR_ORDER_ACTIVE" +#~ msgstr "Fundo da ordem sendo reproduzida##CC_GUI_COLOR_ORDER_ACTIVE" + +#~ msgid "Song loop##CC_GUI_COLOR_SONG_LOOP" +#~ msgstr "Loop da música##CC_GUI_COLOR_SONG_LOOP" + +#~ msgid "Selected order##CC_GUI_COLOR_ORDER_SELECTED" +#~ msgstr "Ordem selecionada##CC_GUI_COLOR_ORDER_SELECTED" + +#~ msgid "Similar patterns##CC_GUI_COLOR_ORDER_SIMILAR" +#~ msgstr "Sequências similares##CC_GUI_COLOR_ORDER_SIMILAR" + +#~ msgid "Inactive patterns##CC_GUI_COLOR_ORDER_INACTIVE" +#~ msgstr "Sequências inativas##CC_GUI_COLOR_ORDER_INACTIVE" + +#~ msgid "Envelope##CC_GUI_COLOR_FM_ENVELOPE" +#~ msgstr "Envelope##CC_GUI_COLOR_FM_ENVELOPE" + +#~ msgid "Sustain guide##CC_GUI_COLOR_FM_ENVELOPE_SUS_GUIDE" +#~ msgstr "Guia de sustentação##CC_GUI_COLOR_FM_ENVELOPE_SUS_GUIDE" + +#~ msgid "Release##CC_GUI_COLOR_FM_ENVELOPE_RELEASE" +#~ msgstr "Repouso##CC_GUI_COLOR_FM_ENVELOPE_RELEASE" + +#~ msgid "Algorithm background##CC_GUI_COLOR_FM_ALG_BG" +#~ msgstr "Fundo do algoritmo##CC_GUI_COLOR_FM_ALG_BG" + +#~ msgid "Algorithm lines##CC_GUI_COLOR_FM_ALG_LINE" +#~ msgstr "Linhas do algoritmo##CC_GUI_COLOR_FM_ALG_LINE" + +#~ msgid "Modulator##CC_GUI_COLOR_FM_MOD" +#~ msgstr "Moduladora##CC_GUI_COLOR_FM_MOD" + +#~ msgid "Carrier##CC_GUI_COLOR_FM_CAR" +#~ msgstr "Portadora##CC_GUI_COLOR_FM_CAR" + +#~ msgid "SSG-EG##CC_GUI_COLOR_FM_SSG" +#~ msgstr "SSG-EG##CC_GUI_COLOR_FM_SSG" + +#~ msgid "Waveform##CC_GUI_COLOR_FM_WAVE" +#~ msgstr "Forma de onda##CC_GUI_COLOR_FM_WAVE" + +#~ msgid "Mod. accent (primary)##CC_GUI_COLOR_FM_PRIMARY_MOD" +#~ msgstr "Realce mod. (primário)##CC_GUI_COLOR_FM_PRIMARY_MOD" + +#~ msgid "Mod. accent (secondary)##CC_GUI_COLOR_FM_SECONDARY_MOD" +#~ msgstr "Realce mod. (secundário)##CC_GUI_COLOR_FM_SECONDARY_MOD" + +#~ msgid "Mod. border##CC_GUI_COLOR_FM_BORDER_MOD" +#~ msgstr "Borda mod.##CC_GUI_COLOR_FM_BORDER_MOD" + +#~ msgid "Mod. border shadow##CC_GUI_COLOR_FM_BORDER_SHADOW_MOD" +#~ msgstr "Sombra borda mod.##CC_GUI_COLOR_FM_BORDER_SHADOW_MOD" + +#~ msgid "Car. accent (primary)##CC_GUI_COLOR_FM_PRIMARY_CAR" +#~ msgstr "Realce port. (primário)##CC_GUI_COLOR_FM_PRIMARY_CAR" + +#~ msgid "Car. accent (secondary)##CC_GUI_COLOR_FM_SECONDARY_CAR" +#~ msgstr "Realce port. (secundário)##CC_GUI_COLOR_FM_SECONDARY_CAR" + +#~ msgid "Car. border##CC_GUI_COLOR_FM_BORDER_CAR" +#~ msgstr "Borda port.##CC_GUI_COLOR_FM_BORDER_CAR" + +#~ msgid "Car. border shadow##CC_GUI_COLOR_FM_BORDER_SHADOW_CAR" +#~ msgstr "Sombra borda port.##CC_GUI_COLOR_FM_BORDER_SHADOW_CAR" + +#~ msgid "Volume##CC_GUI_COLOR_MACRO_VOLUME" +#~ msgstr "Volume##CC_GUI_COLOR_MACRO_VOLUME" + +#~ msgid "Pitch##CC_GUI_COLOR_MACRO_PITCH" +#~ msgstr "Tom##CC_GUI_COLOR_MACRO_PITCH" + +#~ msgid "Wave##CC_GUI_COLOR_MACRO_WAVE" +#~ msgstr "Onda##CC_GUI_COLOR_MACRO_WAVE" + +#~ msgid "Other##CC_GUI_COLOR_MACRO_OTHER" +#~ msgstr "Outro##CC_GUI_COLOR_MACRO_OTHER" + +#~ msgid "FM (OPN)##CC_GUI_COLOR_INSTR_FM" +#~ msgstr "FM (OPN)##CC_GUI_COLOR_INSTR_FM" + +#~ msgid "SN76489/Sega PSG##CC_GUI_COLOR_INSTR_STD" +#~ msgstr "SN76489/Sega PSG##CC_GUI_COLOR_INSTR_STD" + +#~ msgid "T6W28##CC_GUI_COLOR_INSTR_T6W28" +#~ msgstr "T6W28##CC_GUI_COLOR_INSTR_T6W28" + +#~ msgid "Game Boy##CC_GUI_COLOR_INSTR_GB" +#~ msgstr "Game Boy##CC_GUI_COLOR_INSTR_GB" + +#~ msgid "C64##CC_GUI_COLOR_INSTR_C64" +#~ msgstr "C64##CC_GUI_COLOR_INSTR_C64" + +#~ msgid "Amiga/Generic Sample##CC_GUI_COLOR_INSTR_AMIGA" +#~ msgstr "Amiga/Sample Genérica##CC_GUI_COLOR_INSTR_AMIGA" + +#~ msgid "PC Engine##CC_GUI_COLOR_INSTR_PCE" +#~ msgstr "PC Engine##CC_GUI_COLOR_INSTR_PCE" + +#~ msgid "AY-3-8910/SSG##CC_GUI_COLOR_INSTR_AY" +#~ msgstr "AY-3-8910/SSG##CC_GUI_COLOR_INSTR_AY" + +#~ msgid "AY8930##CC_GUI_COLOR_INSTR_AY8930" +#~ msgstr "AY8930##CC_GUI_COLOR_INSTR_AY8930" + +#~ msgid "TIA##CC_GUI_COLOR_INSTR_TIA" +#~ msgstr "TIA##CC_GUI_COLOR_INSTR_TIA" + +#~ msgid "SAA1099##CC_GUI_COLOR_INSTR_SAA1099" +#~ msgstr "SAA1099##CC_GUI_COLOR_INSTR_SAA1099" + +#~ msgid "VIC##CC_GUI_COLOR_INSTR_VIC" +#~ msgstr "VIC##CC_GUI_COLOR_INSTR_VIC" + +#~ msgid "PET##CC_GUI_COLOR_INSTR_PET" +#~ msgstr "PET##CC_GUI_COLOR_INSTR_PET" + +#~ msgid "VRC6##CC_GUI_COLOR_INSTR_VRC6" +#~ msgstr "VRC6##CC_GUI_COLOR_INSTR_VRC6" + +#~ msgid "VRC6 (saw)##CC_GUI_COLOR_INSTR_VRC6_SAW" +#~ msgstr "VRC6 (serra)##CC_GUI_COLOR_INSTR_VRC6_SAW" + +#~ msgid "FM (OPLL)##CC_GUI_COLOR_INSTR_OPLL" +#~ msgstr "FM (OPLL)##CC_GUI_COLOR_INSTR_OPLL" + +#~ msgid "FM (OPL)##CC_GUI_COLOR_INSTR_OPL" +#~ msgstr "FM (OPL)##CC_GUI_COLOR_INSTR_OPL" + +#~ msgid "FDS##CC_GUI_COLOR_INSTR_FDS" +#~ msgstr "FDS##CC_GUI_COLOR_INSTR_FDS" + +#~ msgid "Virtual Boy##CC_GUI_COLOR_INSTR_VBOY" +#~ msgstr "Virtual Boy##CC_GUI_COLOR_INSTR_VBOY" + +#~ msgid "Namco 163##CC_GUI_COLOR_INSTR_N163" +#~ msgstr "Namco 163##CC_GUI_COLOR_INSTR_N163" + +#~ msgid "Konami SCC##CC_GUI_COLOR_INSTR_SCC" +#~ msgstr "Konami SCC##CC_GUI_COLOR_INSTR_SCC" + +#~ msgid "FM (OPZ)##CC_GUI_COLOR_INSTR_OPZ" +#~ msgstr "FM (OPZ)##CC_GUI_COLOR_INSTR_OPZ" + +#~ msgid "POKEY##CC_GUI_COLOR_INSTR_POKEY" +#~ msgstr "POKEY##CC_GUI_COLOR_INSTR_POKEY" + +#~ msgid "PC Beeper##CC_GUI_COLOR_INSTR_BEEPER" +#~ msgstr "Beeper PC##CC_GUI_COLOR_INSTR_BEEPER" + +#~ msgid "WonderSwan##CC_GUI_COLOR_INSTR_SWAN" +#~ msgstr "WonderSwan##CC_GUI_COLOR_INSTR_SWAN" + +#~ msgid "Lynx##CC_GUI_COLOR_INSTR_MIKEY" +#~ msgstr "Lynx##CC_GUI_COLOR_INSTR_MIKEY" + +#~ msgid "VERA##CC_GUI_COLOR_INSTR_VERA" +#~ msgstr "VERA##CC_GUI_COLOR_INSTR_VERA" + +#~ msgid "X1-010##CC_GUI_COLOR_INSTR_X1_010" +#~ msgstr "X1-010##CC_GUI_COLOR_INSTR_X1_010" + +#~ msgid "ES5506##CC_GUI_COLOR_INSTR_ES5506" +#~ msgstr "ES5506##CC_GUI_COLOR_INSTR_ES5506" + +#~ msgid "MultiPCM##CC_GUI_COLOR_INSTR_MULTIPCM" +#~ msgstr "MultiPCM##CC_GUI_COLOR_INSTR_MULTIPCM" + +#~ msgid "SNES##CC_GUI_COLOR_INSTR_SNES" +#~ msgstr "SNES##CC_GUI_COLOR_INSTR_SNES" + +#~ msgid "Sound Unit##CC_GUI_COLOR_INSTR_SU" +#~ msgstr "Sound Unit##CC_GUI_COLOR_INSTR_SU" + +#~ msgid "Namco WSG##CC_GUI_COLOR_INSTR_NAMCO" +#~ msgstr "Namco WSG##CC_GUI_COLOR_INSTR_NAMCO" + +#~ msgid "FM (OPL Drums)##CC_GUI_COLOR_INSTR_OPL_DRUMS" +#~ msgstr "FM (OPL Bateria)##CC_GUI_COLOR_INSTR_OPL_DRUMS" + +#~ msgid "FM (OPM)##CC_GUI_COLOR_INSTR_OPM" +#~ msgstr "FM (OPM)##CC_GUI_COLOR_INSTR_OPM" + +#~ msgid "NES##CC_GUI_COLOR_INSTR_NES" +#~ msgstr "NES##CC_GUI_COLOR_INSTR_NES" + +#~ msgid "MSM6258##CC_GUI_COLOR_INSTR_MSM6258" +#~ msgstr "MSM6258##CC_GUI_COLOR_INSTR_MSM6258" + +#~ msgid "MSM6295##CC_GUI_COLOR_INSTR_MSM6295" +#~ msgstr "MSM6295##CC_GUI_COLOR_INSTR_MSM6295" + +#~ msgid "ADPCM-A##CC_GUI_COLOR_INSTR_ADPCMA" +#~ msgstr "ADPCM-A##CC_GUI_COLOR_INSTR_ADPCMA" + +#~ msgid "ADPCM-B##CC_GUI_COLOR_INSTR_ADPCMB" +#~ msgstr "ADPCM-B##CC_GUI_COLOR_INSTR_ADPCMB" + +#~ msgid "Sega PCM##CC_GUI_COLOR_INSTR_SEGAPCM" +#~ msgstr "Sega PCM##CC_GUI_COLOR_INSTR_SEGAPCM" + +#~ msgid "QSound##CC_GUI_COLOR_INSTR_QSOUND" +#~ msgstr "QSound##CC_GUI_COLOR_INSTR_QSOUND" + +#~ msgid "YMZ280B##CC_GUI_COLOR_INSTR_YMZ280B" +#~ msgstr "YMZ280B##CC_GUI_COLOR_INSTR_YMZ280B" + +#~ msgid "RF5C68##CC_GUI_COLOR_INSTR_RF5C68" +#~ msgstr "RF5C68##CC_GUI_COLOR_INSTR_RF5C68" + +#~ msgid "MSM5232##CC_GUI_COLOR_INSTR_MSM5232" +#~ msgstr "MSM5232##CC_GUI_COLOR_INSTR_MSM5232" + +#~ msgid "K007232##CC_GUI_COLOR_INSTR_K007232" +#~ msgstr "K007232##CC_GUI_COLOR_INSTR_K007232" + +#~ msgid "GA20##CC_GUI_COLOR_INSTR_GA20" +#~ msgstr "GA20##CC_GUI_COLOR_INSTR_GA20" + +#~ msgid "Pokémon Mini##CC_GUI_COLOR_INSTR_POKEMINI" +#~ msgstr "Pokémon Mini##CC_GUI_COLOR_INSTR_POKEMINI" + +#~ msgid "SM8521##CC_GUI_COLOR_INSTR_SM8521" +#~ msgstr "SM8521##CC_GUI_COLOR_INSTR_SM8521" + +#~ msgid "PV-1000##CC_GUI_COLOR_INSTR_PV1000" +#~ msgstr "PV-1000##CC_GUI_COLOR_INSTR_PV1000" + +#~ msgid "K053260##CC_GUI_COLOR_INSTR_K053260" +#~ msgstr "K053260##CC_GUI_COLOR_INSTR_K053260" + +#~ msgid "C140##CC_GUI_COLOR_INSTR_C140" +#~ msgstr "C140##CC_GUI_COLOR_INSTR_C140" + +#~ msgid "C219##CC_GUI_COLOR_INSTR_C219" +#~ msgstr "C219##CC_GUI_COLOR_INSTR_C219" + +#~ msgid "ESFM##CC_GUI_COLOR_INSTR_ESFM" +#~ msgstr "ESFM##CC_GUI_COLOR_INSTR_ESFM" + +#~ msgid "ES5503##CC_GUI_COLOR_INSTR_ES5503" +#~ msgstr "ES5503##CC_GUI_COLOR_INSTR_ES5503" + +#~ msgid "PowerNoise (noise)##CC_GUI_COLOR_INSTR_POWERNOISE" +#~ msgstr "PowerNoise (ruído)##CC_GUI_COLOR_INSTR_POWERNOISE" + +#~ msgid "PowerNoise (slope)##CC_GUI_COLOR_INSTR_POWERNOISE_SLOPE" +#~ msgstr "PowerNoise (rampa)##CC_GUI_COLOR_INSTR_POWERNOISE_SLOPE" + +#~ msgid "Other/Unknown##CC_GUI_COLOR_INSTR_UNKNOWN" +#~ msgstr "Outro/Desconhecido##CC_GUI_COLOR_INSTR_UNKNOWN" + +#~ msgid "Single color (background)##CC_GUI_COLOR_CHANNEL_BG" +#~ msgstr "Cor única (fundo)##CC_GUI_COLOR_CHANNEL_BG" + +#~ msgid "Single color (text)##CC_GUI_COLOR_CHANNEL_FG" +#~ msgstr "Cor única (texto)##CC_GUI_COLOR_CHANNEL_FG" + +#~ msgid "FM##CC_GUI_COLOR_CHANNEL_FM" +#~ msgstr "FM##CC_GUI_COLOR_CHANNEL_FM" + +#~ msgid "Pulse##CC_GUI_COLOR_CHANNEL_PULSE" +#~ msgstr "Pulsada##CC_GUI_COLOR_CHANNEL_PULSE" + +#~ msgid "Noise##CC_GUI_COLOR_CHANNEL_NOISE" +#~ msgstr "Ruído##CC_GUI_COLOR_CHANNEL_NOISE" + +#~ msgid "PCM##CC_GUI_COLOR_CHANNEL_PCM" +#~ msgstr "PCM##CC_GUI_COLOR_CHANNEL_PCM" + +#~ msgid "Wave##CC_GUI_COLOR_CHANNEL_WAVE" +#~ msgstr "Onda##CC_GUI_COLOR_CHANNEL_WAVE" + +#~ msgid "FM operator##CC_GUI_COLOR_CHANNEL_OP" +#~ msgstr "Operador FM##CC_GUI_COLOR_CHANNEL_OP" + +#~ msgid "Muted##CC_GUI_COLOR_CHANNEL_MUTED" +#~ msgstr "Mudo##CC_GUI_COLOR_CHANNEL_MUTED" + +#~ msgid "Playhead##CC_GUI_COLOR_PATTERN_PLAY_HEAD" +#~ msgstr "Cabeçote de reprodução##CC_GUI_COLOR_PATTERN_PLAY_HEAD" + +#~ msgid "Editing##CC_GUI_COLOR_EDITING" +#~ msgstr "Edição##CC_GUI_COLOR_EDITING" + +#~ msgid "Editing (will clone)##CC_GUI_COLOR_EDITING_CLONE" +#~ msgstr "Edição (modo de clone)##CC_GUI_COLOR_EDITING_CLONE" + +#~ msgid "Cursor##CC_GUI_COLOR_PATTERN_CURSOR" +#~ msgstr "Cursor##CC_GUI_COLOR_PATTERN_CURSOR" + +#~ msgid "Cursor (hovered)##CC_GUI_COLOR_PATTERN_CURSOR_HOVER" +#~ msgstr "Cursor (flutuando sobre)##CC_GUI_COLOR_PATTERN_CURSOR_HOVER" + +#~ msgid "Cursor (clicked)##CC_GUI_COLOR_PATTERN_CURSOR_ACTIVE" +#~ msgstr "Cursor (clicado)##CC_GUI_COLOR_PATTERN_CURSOR_ACTIVE" + +#~ msgid "Selection##CC_GUI_COLOR_PATTERN_SELECTION" +#~ msgstr "Seleção##CC_GUI_COLOR_PATTERN_SELECTION" + +#~ msgid "Selection (hovered)##CC_GUI_COLOR_PATTERN_SELECTION_HOVER" +#~ msgstr "Seleção (flutuando sobre)##CC_GUI_COLOR_PATTERN_SELECTION_HOVER" + +#~ msgid "Selection (clicked)##CC_GUI_COLOR_PATTERN_SELECTION_ACTIVE" +#~ msgstr "Seleção (clicada)##CC_GUI_COLOR_PATTERN_SELECTION_ACTIVE" + +#~ msgid "Highlight 1##CC_GUI_COLOR_PATTERN_HI_1" +#~ msgstr "Destaque 1##CC_GUI_COLOR_PATTERN_HI_1" + +#~ msgid "Highlight 2##CC_GUI_COLOR_PATTERN_HI_2" +#~ msgstr "Destaque 2##CC_GUI_COLOR_PATTERN_HI_2" + +#~ msgid "Row number##CC_GUI_COLOR_PATTERN_ROW_INDEX" +#~ msgstr "Número da linha##CC_GUI_COLOR_PATTERN_ROW_INDEX" + +#~ msgid "Row number (highlight 1)##CC_GUI_COLOR_PATTERN_ROW_INDEX_HI1" +#~ msgstr "Número da linha (destaque 1)##CC_GUI_COLOR_PATTERN_ROW_INDEX_HI1" + +#~ msgid "Row number (highlight 2)##CC_GUI_COLOR_PATTERN_ROW_INDEX_HI2" +#~ msgstr "Número da linha (destaque 2)##CC_GUI_COLOR_PATTERN_ROW_INDEX_HI2" + +#~ msgid "Note##CC_GUI_COLOR_PATTERN_ACTIVE" +#~ msgstr "Nota##CC_GUI_COLOR_PATTERN_ACTIVE" + +#~ msgid "Note (highlight 1)##CC_GUI_COLOR_PATTERN_ACTIVE_HI1" +#~ msgstr "Nota (destaque 1)##CC_GUI_COLOR_PATTERN_ACTIVE_HI1" + +#~ msgid "Note (highlight 2)##CC_GUI_COLOR_PATTERN_ACTIVE_HI2" +#~ msgstr "Nota (destaque 2)##CC_GUI_COLOR_PATTERN_ACTIVE_HI2" + +#~ msgid "Blank##CC_GUI_COLOR_PATTERN_INACTIVE" +#~ msgstr "Em branco##CC_GUI_COLOR_PATTERN_INACTIVE" + +#~ msgid "Blank (highlight 1)##CC_GUI_COLOR_PATTERN_INACTIVE_HI1" +#~ msgstr "Em branco (destaque 1)##CC_GUI_COLOR_PATTERN_INACTIVE_HI1" + +#~ msgid "Blank (highlight 2)##CC_GUI_COLOR_PATTERN_INACTIVE_HI2" +#~ msgstr "Em branco (destaque 2)##CC_GUI_COLOR_PATTERN_INACTIVE_HI2" + +#~ msgid "Instrument##CC_GUI_COLOR_PATTERN_INS" +#~ msgstr "Instrumento##CC_GUI_COLOR_PATTERN_INS" + +#~ msgid "Instrument (invalid type)##CC_GUI_COLOR_PATTERN_INS_WARN" +#~ msgstr "Instrumento (tipo inválido)##CC_GUI_COLOR_PATTERN_INS_WARN" + +#~ msgid "Instrument (out of range)##CC_GUI_COLOR_PATTERN_INS_ERROR" +#~ msgstr "Instrumento (fora de faixa)##CC_GUI_COLOR_PATTERN_INS_ERROR" + +#~ msgid "Volume (0%)##CC_GUI_COLOR_PATTERN_VOLUME_MIN" +#~ msgstr "Volume (0%)##CC_GUI_COLOR_PATTERN_VOLUME_MIN" + +#~ msgid "Volume (50%)##CC_GUI_COLOR_PATTERN_VOLUME_HALF" +#~ msgstr "Volume (50%)##CC_GUI_COLOR_PATTERN_VOLUME_HALF" + +#~ msgid "Volume (100%)##CC_GUI_COLOR_PATTERN_VOLUME_MAX" +#~ msgstr "Volume (100%)##CC_GUI_COLOR_PATTERN_VOLUME_MAX" + +#~ msgid "Invalid effect##CC_GUI_COLOR_PATTERN_EFFECT_INVALID" +#~ msgstr "Efeito inválido##CC_GUI_COLOR_PATTERN_EFFECT_INVALID" + +#~ msgid "Pitch effect##CC_GUI_COLOR_PATTERN_EFFECT_PITCH" +#~ msgstr "Efeito de tom##CC_GUI_COLOR_PATTERN_EFFECT_PITCH" + +#~ msgid "Volume effect##CC_GUI_COLOR_PATTERN_EFFECT_VOLUME" +#~ msgstr "Efeito de volume##CC_GUI_COLOR_PATTERN_EFFECT_VOLUME" + +#~ msgid "Panning effect##CC_GUI_COLOR_PATTERN_EFFECT_PANNING" +#~ msgstr "Efeito de balanço##CC_GUI_COLOR_PATTERN_EFFECT_PANNING" + +#~ msgid "Song effect##CC_GUI_COLOR_PATTERN_EFFECT_SONG" +#~ msgstr "Efeito de música##CC_GUI_COLOR_PATTERN_EFFECT_SONG" + +#~ msgid "Time effect##CC_GUI_COLOR_PATTERN_EFFECT_TIME" +#~ msgstr "Efeito de tempo##CC_GUI_COLOR_PATTERN_EFFECT_TIME" + +#~ msgid "Speed effect##CC_GUI_COLOR_PATTERN_EFFECT_SPEED" +#~ msgstr "Efeito de velocidade##CC_GUI_COLOR_PATTERN_EFFECT_SPEED" + +#~ msgid "Primary specific effect##CC_GUI_COLOR_PATTERN_EFFECT_SYS_PRIMARY" +#~ msgstr "Efeito específico primário##CC_GUI_COLOR_PATTERN_EFFECT_SYS_PRIMARY" + +#~ msgid "Secondary specific effect##CC_GUI_COLOR_PATTERN_EFFECT_SYS_SECONDARY" +#~ msgstr "" +#~ "Efeito específico secundário##CC_GUI_COLOR_PATTERN_EFFECT_SYS_SECONDARY" + +#~ msgid "Miscellaneous##CC_GUI_COLOR_PATTERN_EFFECT_MISC" +#~ msgstr "Miscelânea##CC_GUI_COLOR_PATTERN_EFFECT_MISC" + +#~ msgid "External command output##CC_GUI_COLOR_EE_VALUE" +#~ msgstr "Saída de comandos externos##CC_GUI_COLOR_EE_VALUE" + +#~ msgid "Status: off/disabled##CC_GUI_COLOR_PATTERN_STATUS_OFF" +#~ msgstr "" +#~ "Estado do canal: desligado/desabilitado##CC_GUI_COLOR_PATTERN_STATUS_OFF" + +#~ msgid "Status: off + macro rel##CC_GUI_COLOR_PATTERN_STATUS_REL" +#~ msgstr "" +#~ "Estado do canal: desligado + repouso de " +#~ "macro##CC_GUI_COLOR_PATTERN_STATUS_REL" + +#~ msgid "Status: on + macro rel##CC_GUI_COLOR_PATTERN_STATUS_REL_ON" +#~ msgstr "" +#~ "Estado do canal: ligado + repouso de " +#~ "macro##CC_GUI_COLOR_PATTERN_STATUS_REL_ON" + +#~ msgid "Status: on##CC_GUI_COLOR_PATTERN_STATUS_ON" +#~ msgstr "Estado do canal: ligado##CC_GUI_COLOR_PATTERN_STATUS_ON" + +#~ msgid "Status: volume##CC_GUI_COLOR_PATTERN_STATUS_VOLUME" +#~ msgstr "Estado do canal: volume##CC_GUI_COLOR_PATTERN_STATUS_VOLUME" + +#~ msgid "Status: pitch##CC_GUI_COLOR_PATTERN_STATUS_PITCH" +#~ msgstr "Estado do canal: tom##CC_GUI_COLOR_PATTERN_STATUS_PITCH" + +#~ msgid "Status: panning##CC_GUI_COLOR_PATTERN_STATUS_PANNING" +#~ msgstr "Estado do canal: balanço##CC_GUI_COLOR_PATTERN_STATUS_PANNING" + +#~ msgid "Status: chip (primary)##CC_GUI_COLOR_PATTERN_STATUS_SYS1" +#~ msgstr "Estado do canal: chip (primário)##CC_GUI_COLOR_PATTERN_STATUS_SYS1" + +#~ msgid "Status: chip (secondary)##CC_GUI_COLOR_PATTERN_STATUS_SYS2" +#~ msgstr "" +#~ "Estado do canal: chip (secundário)##CC_GUI_COLOR_PATTERN_STATUS_SYS2" + +#~ msgid "Status: mixing##CC_GUI_COLOR_PATTERN_STATUS_MIXING" +#~ msgstr "Estado do canal: mixing##CC_GUI_COLOR_PATTERN_STATUS_MIXING" + +#~ msgid "Status: DSP effect##CC_GUI_COLOR_PATTERN_STATUS_DSP" +#~ msgstr "Estado do canal: efeito DSP##CC_GUI_COLOR_PATTERN_STATUS_DSP" + +#~ msgid "Status: note altering##CC_GUI_COLOR_PATTERN_STATUS_NOTE" +#~ msgstr "" +#~ "Estado do canal: alteração de nota##CC_GUI_COLOR_PATTERN_STATUS_NOTE" + +#~ msgid "Status: misc color 1##CC_GUI_COLOR_PATTERN_STATUS_MISC1" +#~ msgstr "" +#~ "Estado do canal: cor miscelânea 1##CC_GUI_COLOR_PATTERN_STATUS_MISC1" + +#~ msgid "Status: misc color 2##CC_GUI_COLOR_PATTERN_STATUS_MISC2" +#~ msgstr "" +#~ "Estado do canal: cor miscelânea 2##CC_GUI_COLOR_PATTERN_STATUS_MISC2" + +#~ msgid "Status: misc color 3##CC_GUI_COLOR_PATTERN_STATUS_MISC3" +#~ msgstr "" +#~ "Estado do canal: cor miscelânea 3##CC_GUI_COLOR_PATTERN_STATUS_MISC3" + +#~ msgid "Status: attack##CC_GUI_COLOR_PATTERN_STATUS_ATTACK" +#~ msgstr "Estado do canal: ataque##CC_GUI_COLOR_PATTERN_STATUS_ATTACK" + +#~ msgid "Status: decay##CC_GUI_COLOR_PATTERN_STATUS_DECAY" +#~ msgstr "Estado do canal: decaimento##CC_GUI_COLOR_PATTERN_STATUS_DECAY" + +#~ msgid "Status: sustain##CC_GUI_COLOR_PATTERN_STATUS_SUSTAIN" +#~ msgstr "Estado do canal: sustentação##CC_GUI_COLOR_PATTERN_STATUS_SUSTAIN" + +#~ msgid "Status: release##CC_GUI_COLOR_PATTERN_STATUS_RELEASE" +#~ msgstr "Estado do canal: repouso##CC_GUI_COLOR_PATTERN_STATUS_RELEASE" + +#~ msgid "Status: decrease linear##CC_GUI_COLOR_PATTERN_STATUS_DEC_LINEAR" +#~ msgstr "" +#~ "Estado do canal: redução linear##CC_GUI_COLOR_PATTERN_STATUS_DEC_LINEAR" + +#~ msgid "Status: decrease exp##CC_GUI_COLOR_PATTERN_STATUS_DEC_EXP" +#~ msgstr "" +#~ "Estado do canal: redução exponencial##CC_GUI_COLOR_PATTERN_STATUS_DEC_EXP" + +#~ msgid "Status: increase##CC_GUI_COLOR_PATTERN_STATUS_INC" +#~ msgstr "Estado do canal: aumento##CC_GUI_COLOR_PATTERN_STATUS_INC" + +#~ msgid "Status: bent##CC_GUI_COLOR_PATTERN_STATUS_BENT" +#~ msgstr "Estado do canal: pitchbend##CC_GUI_COLOR_PATTERN_STATUS_BENT" + +#~ msgid "Status: direct##CC_GUI_COLOR_PATTERN_STATUS_DIRECT" +#~ msgstr "Estado do canal: direto##CC_GUI_COLOR_PATTERN_STATUS_DIRECT" + +#~ msgid "Background##CC_GUI_COLOR_SAMPLE_BG" +#~ msgstr "Fundo##CC_GUI_COLOR_SAMPLE_BG" + +#~ msgid "Waveform##CC_GUI_COLOR_SAMPLE_FG" +#~ msgstr "Forma de onda##CC_GUI_COLOR_SAMPLE_FG" + +#~ msgid "Time background##CC_GUI_COLOR_SAMPLE_TIME_BG" +#~ msgstr "Fundo do tempo##CC_GUI_COLOR_SAMPLE_TIME_BG" + +#~ msgid "Time text##CC_GUI_COLOR_SAMPLE_TIME_FG" +#~ msgstr "Texto do tempo##CC_GUI_COLOR_SAMPLE_TIME_FG" + +#~ msgid "Loop region##CC_GUI_COLOR_SAMPLE_LOOP" +#~ msgstr "Região de repetição##CC_GUI_COLOR_SAMPLE_LOOP" + +#~ msgid "Center guide##CC_GUI_COLOR_SAMPLE_CENTER" +#~ msgstr "Guia do centro##CC_GUI_COLOR_SAMPLE_CENTER" + +#~ msgid "Grid##CC_GUI_COLOR_SAMPLE_GRID" +#~ msgstr "Grade##CC_GUI_COLOR_SAMPLE_GRID" + +#~ msgid "Selection##CC_GUI_COLOR_SAMPLE_SEL" +#~ msgstr "Seleção##CC_GUI_COLOR_SAMPLE_SEL" + +#~ msgid "Selection points##CC_GUI_COLOR_SAMPLE_SEL_POINT" +#~ msgstr "Pontos de seleção##CC_GUI_COLOR_SAMPLE_SEL_POINT" + +#~ msgid "Preview needle##CC_GUI_COLOR_SAMPLE_NEEDLE" +#~ msgstr "Agulha de previsão##CC_GUI_COLOR_SAMPLE_NEEDLE" + +#~ msgid "Playing needles##CC_GUI_COLOR_SAMPLE_NEEDLE_PLAYING" +#~ msgstr "Agulhas de reprodução##CC_GUI_COLOR_SAMPLE_NEEDLE_PLAYING" + +#~ msgid "Loop markers##CC_GUI_COLOR_SAMPLE_LOOP_POINT" +#~ msgstr "Marcadores de repetição##CC_GUI_COLOR_SAMPLE_LOOP_POINT" + +#~ msgid "Chip select: disabled##CC_GUI_COLOR_SAMPLE_CHIP_DISABLED" +#~ msgstr "Seleção de chip: desabilitada##CC_GUI_COLOR_SAMPLE_CHIP_DISABLED" + +#~ msgid "Chip select: enabled##CC_GUI_COLOR_SAMPLE_CHIP_ENABLED" +#~ msgstr "Seleção de chip: habilitada##CC_GUI_COLOR_SAMPLE_CHIP_ENABLED" + +#~ msgid "Chip select: enabled (failure)##CC_GUI_COLOR_SAMPLE_CHIP_WARNING" +#~ msgstr "" +#~ "Seleção de chip: habilitada (falha)##CC_GUI_COLOR_SAMPLE_CHIP_WARNING" + +#~ msgid "Unallocated##CC_GUI_COLOR_PAT_MANAGER_NULL" +#~ msgstr "Não alocado##CC_GUI_COLOR_PAT_MANAGER_NULL" + +#~ msgid "Unused##CC_GUI_COLOR_PAT_MANAGER_UNUSED" +#~ msgstr "Não utilizado##CC_GUI_COLOR_PAT_MANAGER_UNUSED" + +#~ msgid "Used##CC_GUI_COLOR_PAT_MANAGER_USED" +#~ msgstr "Utilizado##CC_GUI_COLOR_PAT_MANAGER_USED" + +#~ msgid "Overused##CC_GUI_COLOR_PAT_MANAGER_OVERUSED" +#~ msgstr "Muito utilizado##CC_GUI_COLOR_PAT_MANAGER_OVERUSED" + +#~ msgid "Really overused##CC_GUI_COLOR_PAT_MANAGER_EXTREMELY_OVERUSED" +#~ msgstr "Extremamente utilizado##CC_GUI_COLOR_PAT_MANAGER_EXTREMELY_OVERUSED" + +#~ msgid "Combo Breaker##CC_GUI_COLOR_PAT_MANAGER_COMBO_BREAKER" +#~ msgstr "Combo Breaker##CC_GUI_COLOR_PAT_MANAGER_COMBO_BREAKER" + +#~ msgid "Background##CC_GUI_COLOR_PIANO_BACKGROUND" +#~ msgstr "Fundo##CC_GUI_COLOR_PIANO_BACKGROUND" + +#~ msgid "Upper key##CC_GUI_COLOR_PIANO_KEY_TOP" +#~ msgstr "Tecla preta##CC_GUI_COLOR_PIANO_KEY_TOP" + +#~ msgid "Upper key (feedback)##CC_GUI_COLOR_PIANO_KEY_TOP_HIT" +#~ msgstr "Tecla preta (feedback)##CC_GUI_COLOR_PIANO_KEY_TOP_HIT" + +#~ msgid "Upper key (pressed)##CC_GUI_COLOR_PIANO_KEY_TOP_ACTIVE" +#~ msgstr "Tecla preta (pressionada)##CC_GUI_COLOR_PIANO_KEY_TOP_ACTIVE" + +#~ msgid "Lower key##CC_GUI_COLOR_PIANO_KEY_BOTTOM" +#~ msgstr "Tecla branca##CC_GUI_COLOR_PIANO_KEY_BOTTOM" + +#~ msgid "Lower key (feedback)##CC_GUI_COLOR_PIANO_KEY_BOTTOM_HIT" +#~ msgstr "Tecla branca (feedback)##CC_GUI_COLOR_PIANO_KEY_BOTTOM_HIT" + +#~ msgid "Lower key (pressed)##CC_GUI_COLOR_PIANO_KEY_BOTTOM_ACTIVE" +#~ msgstr "Tecla branca (pressionada)##CC_GUI_COLOR_PIANO_KEY_BOTTOM_ACTIVE" + +#~ msgid "Clock text##CC_GUI_COLOR_CLOCK_TEXT" +#~ msgstr "Texto do clock##CC_GUI_COLOR_CLOCK_TEXT" + +#~ msgid "Beat (off)##CC_GUI_COLOR_CLOCK_BEAT_LOW" +#~ msgstr "Batida (secundária)##CC_GUI_COLOR_CLOCK_BEAT_LOW" + +#~ msgid "Beat (on)##CC_GUI_COLOR_CLOCK_BEAT_HIGH" +#~ msgstr "Batida (primária)##CC_GUI_COLOR_CLOCK_BEAT_HIGH" + +#~ msgid "PortSet##CC_GUI_COLOR_PATCHBAY_PORTSET" +#~ msgstr "Conjunto de portas##CC_GUI_COLOR_PATCHBAY_PORTSET" + +#~ msgid "Port##CC_GUI_COLOR_PATCHBAY_PORT" +#~ msgstr "Porta##CC_GUI_COLOR_PATCHBAY_PORT" + +#~ msgid "Port (hidden/unavailable)##CC_GUI_COLOR_PATCHBAY_PORT_HIDDEN" +#~ msgstr "Porta (escondida/indisponível)##CC_GUI_COLOR_PATCHBAY_PORT_HIDDEN" + +#~ msgid "Connection (selected)##CC_GUI_COLOR_PATCHBAY_CONNECTION" +#~ msgstr "Conexão (selecionada)##CC_GUI_COLOR_PATCHBAY_CONNECTION" + +#~ msgid "Connection (other)##CC_GUI_COLOR_PATCHBAY_CONNECTION_BG" +#~ msgstr "Conexão (outra)##CC_GUI_COLOR_PATCHBAY_CONNECTION_BG" + +#~ msgid "Background##CC_GUI_COLOR_MEMORY_BG" +#~ msgstr "Fundo##CC_GUI_COLOR_MEMORY_BG" + +#~ msgid "Unknown##CC_GUI_COLOR_MEMORY_FREE" +#~ msgstr "Desconhecido##CC_GUI_COLOR_MEMORY_FREE" + +#~ msgid "Reserved##CC_GUI_COLOR_MEMORY_RESERVED" +#~ msgstr "Reservado##CC_GUI_COLOR_MEMORY_RESERVED" + +#~ msgid "Sample##CC_GUI_COLOR_MEMORY_SAMPLE" +#~ msgstr "Sample##CC_GUI_COLOR_MEMORY_SAMPLE" + +#~ msgid "Sample (alternate 1)##CC_GUI_COLOR_MEMORY_SAMPLE_ALT1" +#~ msgstr "Sample (alternativo 1)##CC_GUI_COLOR_MEMORY_SAMPLE_ALT1" + +#~ msgid "Sample (alternate 2)##CC_GUI_COLOR_MEMORY_SAMPLE_ALT2" +#~ msgstr "Sample (alternativo 2)##CC_GUI_COLOR_MEMORY_SAMPLE_ALT2" + +#~ msgid "Sample (alternate 3)##CC_GUI_COLOR_MEMORY_SAMPLE_ALT3" +#~ msgstr "Sample (alternativo 3)##CC_GUI_COLOR_MEMORY_SAMPLE_ALT3" + +#~ msgid "Wave RAM##CC_GUI_COLOR_MEMORY_WAVE_RAM" +#~ msgstr "Memória RAM de Onda##CC_GUI_COLOR_MEMORY_WAVE_RAM" + +#~ msgid "Wavetable (static)##CC_GUI_COLOR_MEMORY_WAVE_STATIC" +#~ msgstr "Wavetable (estática)##CC_GUI_COLOR_MEMORY_WAVE_STATIC" + +#~ msgid "Echo buffer##CC_GUI_COLOR_MEMORY_ECHO" +#~ msgstr "Buffer de Eco##CC_GUI_COLOR_MEMORY_ECHO" + +#~ msgid "Namco 163 load pos##CC_GUI_COLOR_MEMORY_N163_LOAD" +#~ msgstr "" +#~ "Posição de carga de onda do Namco 163##CC_GUI_COLOR_MEMORY_N163_LOAD" + +#~ msgid "Namco 163 play pos##CC_GUI_COLOR_MEMORY_N163_PLAY" +#~ msgstr "" +#~ "Posição de reprodução de onda do Namco 163##CC_GUI_COLOR_MEMORY_N163_PLAY" + +#~ msgid "Sample (bank 0)##CC_GUI_COLOR_MEMORY_BANK0" +#~ msgstr "Sample (banco 0)##CC_GUI_COLOR_MEMORY_BANK0" + +#~ msgid "Sample (bank 1)##CC_GUI_COLOR_MEMORY_BANK1" +#~ msgstr "Sample (banco 1)##CC_GUI_COLOR_MEMORY_BANK1" + +#~ msgid "Sample (bank 2)##CC_GUI_COLOR_MEMORY_BANK2" +#~ msgstr "Sample (banco 2)##CC_GUI_COLOR_MEMORY_BANK2" + +#~ msgid "Sample (bank 3)##CC_GUI_COLOR_MEMORY_BANK3" +#~ msgstr "Sample (banco 3)##CC_GUI_COLOR_MEMORY_BANK3" + +#~ msgid "Sample (bank 4)##CC_GUI_COLOR_MEMORY_BANK4" +#~ msgstr "Sample (banco 4)##CC_GUI_COLOR_MEMORY_BANK4" + +#~ msgid "Sample (bank 5)##CC_GUI_COLOR_MEMORY_BANK5" +#~ msgstr "Sample (banco 5)##CC_GUI_COLOR_MEMORY_BANK5" + +#~ msgid "Sample (bank 6)##CC_GUI_COLOR_MEMORY_BANK6" +#~ msgstr "Sample (banco 6)##CC_GUI_COLOR_MEMORY_BANK6" + +#~ msgid "Sample (bank 7)##CC_GUI_COLOR_MEMORY_BANK7" +#~ msgstr "Sample (banco 7)##CC_GUI_COLOR_MEMORY_BANK7" + +#~ msgid "Log level: Error##CC_GUI_COLOR_LOGLEVEL_ERROR" +#~ msgstr "Nível de log: Erro##CC_GUI_COLOR_LOGLEVEL_ERROR" + +#~ msgid "Log level: Warning##CC_GUI_COLOR_LOGLEVEL_WARNING" +#~ msgstr "Nível de log: Aviso##CC_GUI_COLOR_LOGLEVEL_WARNING" + +#~ msgid "Log level: Info##CC_GUI_COLOR_LOGLEVEL_INFO" +#~ msgstr "Nível de log: Informação##CC_GUI_COLOR_LOGLEVEL_INFO" + +#~ msgid "Log level: Debug##CC_GUI_COLOR_LOGLEVEL_DEBUG" +#~ msgstr "Nível de log: Depuração##CC_GUI_COLOR_LOGLEVEL_DEBUG" + +#~ msgid "Log level: Trace/Verbose##CC_GUI_COLOR_LOGLEVEL_TRACE" +#~ msgstr "Nível de log: Traço/Verboso##CC_GUI_COLOR_LOGLEVEL_TRACE" + +#~ msgid "Raw Period" +#~ msgstr "Período (val. registrador)" + +#~ msgid "Raw Envelope Period" +#~ msgstr "Período do Envelope (val. registrador)" + +#~ msgid "A" +#~ msgstr "A" + +#~ msgid "D" +#~ msgstr "D" + +#~ msgid "S" +#~ msgstr "S" + +#~ msgid "R" +#~ msgstr "R" + +#~ msgid "Raw Frequency" +#~ msgstr "Frequência (val. registrador)" + +#~ msgid "Oscillator mode:" +#~ msgstr "Modo de Oscilador:" + +#~ msgid "Freerun" +#~ msgstr "Livre/independente" + +#~ msgid "Oneshot" +#~ msgstr "Uma vez" + +#~ msgid "Sync/AM" +#~ msgstr "Sincronizado/AM" + +#~ msgid "Virtual softpan channel" +#~ msgstr "Balanço suave virtual" + +#~ msgid "" +#~ "Combines odd and next even channel into one virtual channel with 256-step " +#~ "panning.\n" +#~ "Instrument, volume and effects need to be placed on the odd channel (e.g. " +#~ "1st, 3rd, 5th etc.)" +#~ msgstr "" +#~ "Combina um canal ímpar com o próximo canal par em um canal virtual com " +#~ "balanço de 256 passos.\n" +#~ "Instrumento, volume e efeitos precisam ser colocados em um canal ímpar " +#~ "(ex: 1º, 3º, 5º etc.)" + +#~ msgid "Phase reset on key-on" +#~ msgstr "Realizar redefinição de fase em nova nota" + +#~ msgid "Osc. mode" +#~ msgstr "Modo de Oscilador" + +#~ msgid "Wave/sample pos." +#~ msgstr "Pos. onda/sample" + +#~ msgid "Osc. output" +#~ msgstr "Saída osc." + +#~ msgid "op%d" +#~ msgstr "op%d" + +#~ msgid "OP%d" +#~ msgstr "OP%d" + +#~ msgid "Detune in semitones" +#~ msgstr "Desafinação em semitons" + +#~ msgid "" +#~ "Detune in fractions of semitone.\n" +#~ "128 = +1 semitone, -128 = -1 semitone." +#~ msgstr "" +#~ "Desafinação em frações de semitom.\n" +#~ "128 = +1 semitom, -128 = -1 semitom." + +#~ msgid "If operator outputs sound, enable left channel output." +#~ msgstr "Se o operador emite som, habilita a sua saída pelo canal esquerdo." + +#~ msgid "If operator outputs sound, enable right channel output." +#~ msgstr "Se o operador emite som, habilita a sua saída pelo canal direito." + +#~ msgid "Tabs" +#~ msgstr "Abas" + +#~ msgid "Single (combo box)" +#~ msgstr "Única (caixa de combinação)" + +#~ msgid "Frequency Divider" +#~ msgstr "Divisor de Frequência" + +#~ msgid "AR" +#~ msgstr "AR" + +#~ msgid "D1R" +#~ msgstr "D1R" + +#~ msgid "DL" +#~ msgstr "DL" + +#~ msgid "D2R" +#~ msgstr "D2R" + +#~ msgid "RR" +#~ msgstr "RR" + +#~ msgid "RC" +#~ msgstr "RC" + +#~ msgid "Position##WAVEPOS" +#~ msgstr "Posição##WAVEPOS" + +#~ msgid "Length##WAVELEN" +#~ msgstr "Comprimento##WAVELEN" + +#~ msgid "4-op" +#~ msgstr "4-op" + +#~ msgid "16-bit raw period macro" +#~ msgstr "Macro de período 16-bit (val. registrador)" + +#~ msgid "L##L%d" +#~ msgstr "R##L%d" + +#~ msgid "VOL" +#~ msgstr "VOL" + +#~ msgid "Envelope Reset/Key Control" +#~ msgstr "Reinício de Envelope/Controle de Chaveamento" + +#~ msgid "" +#~ "Ringmod from OP3 + double pitch ModInput\n" +#~ "WARNING - has emulation issues, subject to change" +#~ msgstr "" +#~ "Modulação anel do OP3 + EntraMod com tom dobrado\n" +#~ "AVISO - há problemas na emulação desse modo, está sujeito a mudanças" + +#~ msgid "op1" +#~ msgstr "op1" + +#~ msgid "op2" +#~ msgstr "op2" + +#~ msgid "op3" +#~ msgstr "op3" + +#~ msgid "op4" +#~ msgstr "op4" + +#~ msgid "15kHz" +#~ msgstr "15kHz" + +#~ msgid "int" +#~ msgstr "int" + +#~ msgid "8580 SID" +#~ msgstr "SID 8580" + +#~ msgid "bitwise AND" +#~ msgstr "AND bit a bit" + +#~ msgid "bitwise OR" +#~ msgstr "OR bit a bit" + +#~ msgid "bitwise XOR" +#~ msgstr "XOR bit a bit" + +#~ msgid "Bug" +#~ msgstr "Bug" + +#~ msgid "Local" +#~ msgstr "Local" + +#~ msgid "Hex##MTHex" +#~ msgstr "Hex##MTHex" + +#~ msgid "Dec##MTHex" +#~ msgstr "Dec##MTHex" + +#~ msgid "Result" +#~ msgstr "Resultado" + +#~ msgid "Wave 1 " +#~ msgstr "Onda 1 " + +#~ msgid "Local Waves" +#~ msgstr "Ondas Locais" + +#~ msgid "not a command stream" +#~ msgstr "não é um fluxo de comandos" + +#~ msgid "" +#~ "E6xy: Delayed note transpose (x: 0-7 = up, 8-F = down (after (x % 7) " +#~ "ticks); y: semitones)" +#~ msgstr "" +#~ "E6xy: Transposição atrasada de nota (x: 0-7 = para cima, 8-F = para baixo " +#~ "(após (x % 7) ticks); y: semitons)" + +#~ msgid "E8xy: Delayed note transpose up (x: ticks; y: semitones)" +#~ msgstr "" +#~ "E8xy: Transposição de nota atrasada para cima (x: ticks; y: semitons)" + +#~ msgid "E9xy: Delayed note transpose down (x: ticks; y: semitones)" +#~ msgstr "" +#~ "E9xy: Transposição de nota atrasada para baixo (x: ticks; y: semitons)" + +#~ msgid "this module was created with a more recent version of Furnace!" +#~ msgstr "este módulo foi criado com uma versão mais recente do Furnace!" + +#~ msgid "couldn't seek to info header!" +#~ msgstr "não pôde avançar até o header \"info\"!" + +#~ msgid "invalid info header!" +#~ msgstr "header \"info\" inválido!" + +#~ msgid "pattern length is negative!" +#~ msgstr "o comprimento da sequência é negativo!" + +#~ msgid "pattern length is too large!" +#~ msgstr "o comprimento da sequência é muito longo!" + +#~ msgid "song length is negative!" +#~ msgstr "o comprimento da música é negativo!" + +#~ msgid "song is too long!" +#~ msgstr "a música é muito longa!" + +#~ msgid "invalid instrument count!" +#~ msgstr "quantidade de instrumentos inválida!" + +#~ msgid "invalid wavetable count!" +#~ msgstr "quantidade de wavetables inválida!" + +#~ msgid "invalid sample count!" +#~ msgstr "quantidade de samples inválida!" + +#~ msgid "invalid pattern count!" +#~ msgstr "quantidade de sequências inválida!" + +#~ msgid "unrecognized system ID %.2x!" +#~ msgstr "identificador de sistema %.2x não reconhecido!" + +#~ msgid "zero chips!" +#~ msgstr "zero chips!" + +#~ msgid "channel %d has too many effect columns! (%d)" +#~ msgstr "o canal %d contém muitas colunas de efeito! (%d)" + +#~ msgid "couldn't seek to chip %d flags!" +#~ msgstr "não pôde avançar até as opções do chip %d!" + +#~ msgid "invalid flag header!" +#~ msgstr "cabeçalho \"flag\" inválido!" + +#~ msgid "couldn't read instrument directory" +#~ msgstr "não pôde ler o diretório de instrumentos" + +#~ msgid "invalid instrument directory data!" +#~ msgstr "dados do diretório de instrumentos inválidos!" + +#~ msgid "couldn't read wavetable directory" +#~ msgstr "não pôde ler o diretório de wavetables" + +#~ msgid "invalid wavetable directory data!" +#~ msgstr "dados do diretório de wavetables inválidos!" + +#~ msgid "couldn't read sample directory" +#~ msgstr "não pôde ler o diretório de samples" + +#~ msgid "invalid sample directory data!" +#~ msgstr "dados do diretório de samples inválidos!" + +#~ msgid "couldn't seek to subsong %d!" +#~ msgstr "não pôde avançar até a subfaixa %d!" + +#~ msgid "invalid subsong header!" +#~ msgstr "cabeçalho da subfaixa inválido!" + +#~ msgid "couldn't seek to instrument %d!" +#~ msgstr "não pôde avançar até o instrumento %d!" + +#~ msgid "invalid instrument header/data!" +#~ msgstr "cabeçalho/dados do instrumento inválidos!" + +#~ msgid "couldn't seek to wavetable %d!" +#~ msgstr "não pôde avançar até a wavetable %d!" + +#~ msgid "couldn't seek to sample %d!" +#~ msgstr "não pôde avançar até a sample %d!" + +#~ msgid "invalid sample header/data!" +#~ msgstr "cabeçalho/dados da sample inválidos!" + +#~ msgid "couldn't seek to pattern in %x!" +#~ msgstr "não pôde avançar até a sequência em %x!" + +#~ msgid "invalid pattern header!" +#~ msgstr "cabeçalho da sequência inválido!" + +#~ msgid "pattern channel out of range!" +#~ msgstr "canal da sequência fora do intervalo!" + +#~ msgid "pattern index out of range!" +#~ msgstr "índice da sequência fora do intervalo!" + +#~ msgid "pattern subsong out of range!" +#~ msgstr "subfaixa da sequência fora do intervalo!" + +#~ msgid "incomplete file" +#~ msgstr "arquivo incompleto" + +#~ msgid "file is too small" +#~ msgstr "o arquivo é muito pequeno" + +#~ msgid "not a .dmf/.fur/.fub song" +#~ msgstr "esta não é uma música .dmf/.fur/.fub" + +#~ msgid "unknown decompression error" +#~ msgstr "erro desconhecido de descompressõa" + +#~ msgid "decompression error: %s" +#~ msgstr "erro de descompressão: %s" + +#~ msgid "unknown decompression finish error" +#~ msgstr "erro desconhecido ao final da descompressão" + +#~ msgid "decompression finish error: %s" +#~ msgstr "erro ao final da descompressão: %s" + +#~ msgid "not a compatible song/instrument" +#~ msgstr "esta não é uma música/instrumento compatível" + +#~ msgid "maximum number of instruments is 256" +#~ msgstr "o número máximo de instrumentos é 256" + +#~ msgid "maximum number of wavetables is 256" +#~ msgstr "o número máximo de wavetables é 256" + +#~ msgid "maximum number of samples is 256" +#~ msgstr "o número máximo de samples é 256" + +#~ msgid "did not read entire instrument file!" +#~ msgstr "o arquivo de instrumento não foi lido por completo!" + +#~ msgid "this instrument is made with a more recent version of Furnace!" +#~ msgstr "este instrumento foi feito com uma versão mais recente do Furnace!" + +#~ msgid "unknown instrument format" +#~ msgstr "formato de instrumento desconhecido" + +#~ msgid "there is more data at the end of the file! what happened here!" +#~ msgstr "há mais dados ao final do arquivo! que diacho é esse!?" + +#~ msgid "exactly %d bytes, if you are curious" +#~ msgstr "exatamente %d bytes, caso você tenha a curiosidade" + +#~ msgid "could not open file! (%s)" +#~ msgstr "não pôde abrir o arquivo! (%s)" + +#~ msgid "could not get file length! (%s)" +#~ msgstr "não pôde obter o tamanho do arquivo! (%s)" + +#~ msgid "file is empty!" +#~ msgstr "o arquivo está vazio!" + +#~ msgid "file is invalid!" +#~ msgstr "o arquivo é inválido!" + +#~ msgid "could not seek to beginning of file! (%s)" +#~ msgstr "não pôde localizar o início do arquivo! (%s)" + +#~ msgid "wait... is that right? no I don't think so..." +#~ msgstr "peraí... isso está certo? não, eu não acho que esteja..." + +#~ msgid "BRR sample is empty!" +#~ msgstr "a sample BRR está vazia!" + +#~ msgid "possibly corrupt BRR sample!" +#~ msgstr "a sample BRR pode estar corrompida!" + +#~ msgid "could not read file! (%s)" +#~ msgstr "não pôde ler o arquivo! (%s)" + +#~ msgid "Furnace was not compiled with libsndfile!" +#~ msgstr "Furnace não foi compilado com a biblioteca libsndfile!" + +#~ msgid "could not open file! (%s %s)" +#~ msgstr "não pôde abrir o arquivo! (%s %s)" + +#~ msgid "" +#~ "could not open file! (%s)\n" +#~ "if this is raw sample data, you may import it by right-clicking the Load " +#~ "Sample icon and selecting \"import raw\"." +#~ msgstr "" +#~ "não pôde abrir o arquivo! (%s)\n" +#~ "se isso for uma sample em formato \"raw\", você pode importá-la clicando " +#~ "com o botão direito no ícone Abrir e selecionando \"importar em formato " +#~ "raw\"." + +#~ msgid "this sample is too big! max sample size is 16777215." +#~ msgstr "" +#~ "esta sample é muito grande! o tamanho máximo de uma sample é 16777215." + +#~ msgid "GEMS BNK currently not supported." +#~ msgstr "O formato BNK do GEMS atualmente não é suportado." + +#~ msgid "this version is not supported by Furnace yet" +#~ msgstr "esta versão ainda não é suportada pelo Furnace" + +#~ msgid "system not supported. running old version?" +#~ msgstr "sistema não suportado. usando uma versão antiga?" + +#~ msgid "" +#~ "Yamaha YMU759 emulation is incomplete! please migrate your song to the " +#~ "OPL3 system." +#~ msgstr "" +#~ "a emulação do Yamaha YMU759 é incompleta! por favor migre sua música para " +#~ "o sistema OPL3." + +#~ msgid "order at %d, %d out of range! (%d)" +#~ msgstr "ordem em %d, %d fora do intervalo! (%d)" + +#~ msgid "file is corrupt or unreadable at operators" +#~ msgstr "o arquivo está corrompido ou ilegível nos operadores" + +#~ msgid "file is corrupt or unreadable at wavetables" +#~ msgstr "o arquivo está corrompido ou ilegível nas wavetables" + +#~ msgid "file is corrupt or unreadable at effect columns" +#~ msgstr "o arquivo está corrompido ou ilegível nas colunas de efeito" + +#~ msgid "file is corrupt or unreadable at samples" +#~ msgstr "o arquivo está corrompido ou ilegível nas samples" + +#~ msgid "invalid version to save in! this is a bug!" +#~ msgstr "versão inválida para salvar! isso é um bug!" + +#~ msgid "multiple systems not possible on .dmf" +#~ msgstr "não é possível ter múltiplos sistemas em um arquivo .dmf" + +#~ msgid "YMU759 song saving is not supported" +#~ msgstr "salvar músicas do YMU759 não é suportado" + +#~ msgid "Master System FM expansion not supported in 1.0/legacy .dmf!" +#~ msgstr "" +#~ "a expansão FM do Master System não é suportada na versão 1.0/legada do " +#~ "formato .dmf!" + +#~ msgid "NES + VRC7 not supported in 1.0/legacy .dmf!" +#~ msgstr "NES + VRC7 não é suportado na versão 1.0/legada do formato .dmf!" + +#~ msgid "FDS not supported in 1.0/legacy .dmf!" +#~ msgstr "FDS não é suportado na versão 1.0/legada do formato .dmf!" + +#~ msgid "this system is not possible on .dmf" +#~ msgstr "esse sistema não é possível no formato .dmf" + +#~ msgid "maximum .dmf song length is 127" +#~ msgstr "o comprimento máximo da música no formato .dmf é 127" + +#~ msgid "maximum number of instruments in .dmf is 128" +#~ msgstr "o número máximo de instrumentos no formato .dmf é 128" + +#~ msgid "maximum number of wavetables in .dmf is 64" +#~ msgstr "o número máximo de wavetables no formato .dmf é 64" + +#~ msgid "order %d, %d is out of range (0-127)" +#~ msgstr "a ordem %d, %d está fora do intervalo (0-127)" + +#~ msgid "only the currently selected subsong will be saved" +#~ msgstr "somente a subfaixa atualmente selecionada será salva" + +#~ msgid "grooves will not be saved" +#~ msgstr "grooves não serão salvos" + +#~ msgid "only the first two speeds will be effective" +#~ msgstr "somente as primeiras duas velocidades serão efetivas" + +#~ msgid ".dmf format does not support virtual tempo" +#~ msgstr "o formato .dmf não suporta tempo virtual" + +#~ msgid ".dmf format does not support tuning" +#~ msgstr "o formato .dmf não suporta afinação" + +#~ msgid "absolute duty/cutoff macro not available in .dmf!" +#~ msgstr "" +#~ "a macro de ponto de corte/ciclo de trabalho absoluto não está disponível " +#~ "no formato .dmf" + +#~ msgid "duty precision will be lost" +#~ msgstr "haverá perda de precisão de ciclo de trabalho" + +#~ msgid ".dmf format does not support arbitrary-pitch sample mode" +#~ msgstr "o formato .dmf não suporta modo de sample de tom arbitrário" + +#~ msgid "no FM macros in .dmf format" +#~ msgstr "não há macros FM no formato .dmf" + +#~ msgid "" +#~ ".dmf only supports volume or cutoff macro in C64, but not both. volume " +#~ "macro will be lost." +#~ msgstr "" +#~ ".dmf só suporta macros de volume ou ponto de corte no C64, não ambas ao " +#~ "mesmo tempo. a macro de volume será perdida." + +#~ msgid "note/macro release will be converted to note off!" +#~ msgstr "repouso de nota/macro serão convertidas pra note-off!" + +#~ msgid "samples' rates will be rounded to nearest compatible value" +#~ msgstr "" +#~ "as taxas das samples serão arredondadas para os valores compatíveis mais " +#~ "próximos" + +#~ msgid "unknown instrument type %d!" +#~ msgstr "tipo de instrumento %d desconhecido!" + +#~ msgid "invalid header!" +#~ msgstr "cabeçalho inválido!" + +#~ msgid "incompatible version" +#~ msgstr "versão incompatível" + +#~ msgid "channel counts do not match" +#~ msgstr "a quantidade de canais não corresponde ao esperado" + +#~ msgid "too many instruments/out of range" +#~ msgstr "há muitos instrumentos/fora do intervalo" + +#~ msgid "invalid instrument type" +#~ msgstr "tipo de instrumento inválido" + +#~ msgid "too many sequences" +#~ msgstr "há muitas macros" + +#~ msgid "sequences block version is too old" +#~ msgstr "a versão do bloco de macros é muito antiga" + +#~ msgid "unknown block " +#~ msgstr "bloco desconhecido: " + +#~ msgid "incomplete block " +#~ msgstr "bloco incompleto: " + +#~ msgid " [VRC6 copy]" +#~ msgstr " [cópia do VRC6]" + +#~ msgid " [VRC6 saw copy]" +#~ msgstr " [cópia do VRC6 serra]" + +#~ msgid " [NES copy]" +#~ msgstr " [cópia do NES]" + +#~ msgid "GYBv3 file appears to have invalid data offsets." +#~ msgstr "o arquivo GYBv3 parece ter ponteiros de dados inválidos." + +#~ msgid "Invalid value found in patch file. %s" +#~ msgstr "Dados inválidos encontrados no arquivo de timbre. %s" + +#~ msgid "S3I PCM samples currently not supported." +#~ msgstr "samples PCM S3I atualmente não são suportadas." + +#~ msgid "VGM version is too low" +#~ msgstr "a versão do VGM é muito antiga" + +#~ msgid "Chip Memory" +#~ msgstr "Memória do Chip" + +#~ msgid "Sample ROM" +#~ msgstr "ROM de Sample" + +#~ msgid "Sample Memory" +#~ msgstr "Memória de Sample" + +#~ msgid "SPC/DSP Memory" +#~ msgstr "Memória do S-SMP/DSP" + +#~ msgid "Sample RAM" +#~ msgstr "RAM de Sample" + +#~ msgid "End of Sample" +#~ msgstr "Final da Sample" + +#~ msgid "Wavetable RAM" +#~ msgstr "RAM de Wavetable" + +#~ msgid "Reserved wavetable RAM" +#~ msgstr "RAM de wavetable reservada" + +#~ msgid "Phrase Book" +#~ msgstr "Livro de Frases" + +#~ msgid "Channel %d (load)" +#~ msgstr "Canal %d (carregar)" + +#~ msgid "Channel %d (play)" +#~ msgstr "Canal %d (reproduzir)" + +#~ msgid "Channel %d" +#~ msgstr "Canal %d" + +#~ msgid "Buffer %d Left" +#~ msgstr "Buffer %d Esquerdo" + +#~ msgid "Buffer %d Right" +#~ msgstr "Buffer %d Direito" + +#~ msgid "Registers" +#~ msgstr "Registradores" + +#~ msgid "State" +#~ msgstr "Estado" + +#~ msgid "Echo Buffer" +#~ msgstr "Buffer de Eco" + +#~ msgid "Mix/Echo Buffer" +#~ msgstr "Buffer de Mix/Eco" + +#~ msgid "Main Memory" +#~ msgstr "Memória Principal" + +#~ msgid "help! what's going on!" +#~ msgstr "socorro! o que está acontecendo?!" + +#~ msgid "Sunsoft 5B standalone" +#~ msgstr "Sunsoft 5B independente" + +#~ msgid "Sunsoft 5B standalone (PAL)" +#~ msgstr "Sunsoft 5B independente (PAL)" + +#~ msgid "Overclocked Sunsoft 5B" +#~ msgstr "Sunsoft 5B (com overclock)" + +#~ msgid "NTSC-J Sega Master System + drums" +#~ msgstr "Sega Master System NTSC-J + bateria" + +#~ msgid "MSX-MUSIC + drums" +#~ msgstr "MSX-MUSIC + bateria" + +#~ msgid "Commodore 64 with dual 6581" +#~ msgstr "Commodore 64 com dois 6581" + +#~ msgid "Commodore 64 with dual 8580" +#~ msgstr "Commodore 64 com dois 8580" + +#~ msgid "YM2151 + SegaPCM Arcade (compatibility)" +#~ msgstr "Arcade com YM2151 + SegaPCM (compatibilidade)" + +#~ msgid "YM2151 + SegaPCM Arcade" +#~ msgstr "Arcade com YM2151 + SegaPCM" + +#~ msgid "Game Boy with AY expansion" +#~ msgstr "Game Boy with expansão AY" + +#~ msgid "multi-system" +#~ msgstr "multi-sistema" + +#~ msgid "15xx: Set raw period" +#~ msgstr "15xx: Definir período (val. registrador)" + +#~ msgid "16xx: Set raw period higher nybble (0-F)" +#~ msgstr "16xx: Definir nibble superior do período (val. registrador) (0-F)" + +#~ msgid "16xx: Set raw period higher byte" +#~ msgstr "16xx: Definir byte superior do período (val. registrador)" + +#~ msgid "22xx: Pulse width slide up" +#~ msgstr "22xx: Slide de largura de pulso para cima" + +#~ msgid "23xx: Pulse width slide down" +#~ msgstr "23xx: Slide de largura de pulso para baixo" + +#~ msgid "24xx: Cutoff slide up" +#~ msgstr "24xx: Slide de ponto de corte para cima" + +#~ msgid "25xx: Cutoff slide down" +#~ msgstr "25xx: Slide de ponto de corte para baixo" + +#~ msgid "13xx: Set waveform (local)" +#~ msgstr "13xx: Definir forma de onda (local)" + +#~ msgid "11xx: Set raw period" +#~ msgstr "11xx: Definir período (val. registrador) (0-1F)" + +#~ msgid "11xx: Set waveform (local)" +#~ msgstr "11xx: Definir forma de onda (local)" + +#~ msgid "17xx: Pulse width slide up" +#~ msgstr "17xx: Slide de largura de pulso para cima" + +#~ msgid "18xx: Pulse width slide down" +#~ msgstr "18xx: Slide de largura de pulso para baixo" + +#~ msgid "19xx: Cutoff slide up" +#~ msgstr "19xx: Slide de ponto de corte para cima" + +#~ msgid "1Axx: Cutoff slide down" +#~ msgstr "1Axx: Slide de ponto de corte para baixo" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "15xx: Set waveform (local)" +#~ msgstr "15xx: Definir forma de onda (local)" + +#~ msgid "18xx: Set waveform (local)" +#~ msgstr "18xx: Definir forma de onda (local)" + +#~ msgid "14xx: Set waveform (local)" +#~ msgstr "14xx: Definir forma de onda (local)" + +#~ msgid "17xx: Set waveform (local)" +#~ msgstr "17xx: Definir forma de onda (local)" + +#~ msgid "16xx: Set waveform (local)" +#~ msgstr "16xx: Definir forma de onda (local)" + +#~ msgid "17xx: Select waveform (local)" +#~ msgstr "17xx: Selecionar forma de onda (local)" + +#~ msgid "" +#~ "cost-reduced version of the OPM with a different register layout and no " +#~ "stereo...\n" +#~ "...but it has a built-in AY-3-8910! (actually an YM2149)\n" +#~ "this one is in Extended Channel mode, which turns the third FM channel " +#~ "into four operators with independent notes/frequencies.\n" +#~ "this one includes CSM mode control for special effects on Channel 3." +#~ msgstr "" +#~ "versão de custo reduzido do OPM com um leiaute de registradores " +#~ "diferentes e sem estéreo...\n" +#~ "...mas ele tem um AY-3-8910 embutido! (na verdade é um YM2149)\n" +#~ "esse está em modo de Canal Estendido, que transforma o terceiro canal FM " +#~ "em quatro operadores com notas/frequências independentes.\n" +#~ "esse inclui controle do modo CSM para efeitos especiais no Canal 3." + +#~ msgid "" +#~ "OPN but twice the FM channels, stereo makes a come-back and has rhythm " +#~ "and ADPCM channels.\n" +#~ "this one is in Extended Channel mode, which turns the third FM channel " +#~ "into four operators with independent notes/frequencies." +#~ msgstr "" +#~ "OPN mas com o dobro dos canais FM, o estéreo está de volta e possui " +#~ "canais de bateria e um canal ADPCM.\n" +#~ "esse está em modo de Canal Estendido, que transforma o terceiro canal FM " +#~ "em quatro operadores com notas/frequências independentes." + +#~ msgid "Yamaha YM2608 (OPNA) Extended Channel 3 and CSM" +#~ msgstr "Yamaha YM2608 (OPNA) com Canal 3 Estendido e CSM" + +#~ msgid "" +#~ "OPN but twice the FM channels, stereo makes a come-back and has rhythm " +#~ "and ADPCM channels.\n" +#~ "this one is in Extended Channel mode, which turns the third FM channel " +#~ "into four operators with independent notes/frequencies.\n" +#~ "this one includes CSM mode control for special effects on Channel 3." +#~ msgstr "" +#~ "OPN mas com o dobro dos canais FM, o estéreo está de volta e possui " +#~ "canais de bateria e um canal ADPCM.\n" +#~ "esse está em modo de Canal Estendido, que transforma o terceiro canal FM " +#~ "em quatro operadores com notas/frequências independentes.\n" +#~ "esse inclui controle do modo CSM para efeitos especiais no Canal 3." + +#~ msgid "13xx: Set raw period" +#~ msgstr "13xx: Definir período (val. registrador)" + +#~ msgid "14xx: Set raw period (higher byte; only for 16-bit mode)" +#~ msgstr "" +#~ "14xx: Definir byte superior do período (val. registrador) (somente para o " +#~ "modo 16-bit)" + +#~ msgid "" +#~ "like OPLL, but even more cost reductions applied. three less FM channels, " +#~ "and no drums mode..." +#~ msgstr "" +#~ "como o OPLL, mas com ainda mais reduções de custo aplicadas: três canais " +#~ "FM a menos, e sem o modo bateria..." + +#~ msgid "" +#~ "this chip was used in SNK's Neo Geo arcade board and video game console.\n" +#~ "it's like OPNA but the rhythm channels are ADPCM channels and two FM " +#~ "channels went missing.\n" +#~ "this one is in Extended Channel mode, which turns the second FM channel " +#~ "into four operators with independent notes/frequencies.\n" +#~ "this one includes CSM mode control for special effects on Channel 2." +#~ msgstr "" +#~ "esse chip foi usado no Neo Geo, placa de fliperama e console de videogame " +#~ "da SNK.\n" +#~ "é como o OPNA mas os canais de bateria são canais de ADPCM e dois canais " +#~ "de FM foram removidos.\n" +#~ "esse está em modo de Canal Estendido, que transforma o segundo canal FM " +#~ "em quatro operadores com notas/frequências independentes.\n" +#~ "esse inclui controle do modo CSM para efeitos especiais no Canal 2." + +#~ msgid "the OPLL chip but with drums mode turned on." +#~ msgstr "o chip OPLL mas com modo bateria habilitado." + +#~ msgid "" +#~ "so Taito asked Yamaha if they could get the two missing FM channels back, " +#~ "and Yamaha gladly provided them with this chip.\n" +#~ "this one is in Extended Channel mode, which turns the third FM channel " +#~ "into four operators with independent notes/frequencies.\n" +#~ "this one includes CSM mode control for special effects on Channel 3." +#~ msgstr "" +#~ "então a Taito pediu à Yamaha se eles poderiam ter os 2 canais FM " +#~ "faltantes de volta, e a Yamaha lhes providenciou de bom grado com este " +#~ "chip.\n" +#~ "esse está em modo de Canal Estendido, que transforma o terceiro canal FM " +#~ "em quatro operadores com notas/frequências independentes.\n" +#~ "esse inclui controle do modo CSM para efeitos especiais no Canal 3." + +#~ msgid "11xx: Select waveform (local)" +#~ msgstr "11xx: Selecionar forma de onda (local)" + +#~ msgid "" +#~ "this chip is mostly known for being in the Sega Genesis (but it also was " +#~ "on the FM Towns computer).\n" +#~ "this system uses software mixing to provide two sample channels.\n" +#~ "this one is in Extended Channel mode, which turns the third FM channel " +#~ "into four operators with independent notes/frequencies.\n" +#~ "this one includes CSM mode control for special effects on Channel 3." +#~ msgstr "" +#~ "esse chip é mais conhecido por ter sido utilizado no Sega Mega Drive (mas " +#~ "ele também foi usado no computador FM Towns).\n" +#~ "esse sistema utiliza mistura de samples em software para prover dois " +#~ "canais de sample.\n" +#~ "esse está em modo de Canal Estendido, que transforma o terceiro canal FM " +#~ "em quatro operadores com notas/frequências independentes.\n" +#~ "esse inclui controle do modo CSM para efeitos especiais no Canal 3." + +#~ msgid "11xx: Raw frequency (0-3E)" +#~ msgstr "11xx: Definir frequência (valor do registrador, 0-3E)" + +#~ msgid "" +#~ "first Ensoniq chip used in their synths and Apple IIGS computer. Has 32 " +#~ "hard-panned 8-bit wavetable/sample channels, can do oscillator sync (like " +#~ "SID) and amplitude modulation. Can have up to 128 KiB (2 banks of 64 KiB) " +#~ "of memory for wavetables/samples.\n" +#~ "As Robert Yannes (SID chip creator) said, it's more or less what SID chip " +#~ "could be if he was given enough time for its development." +#~ msgstr "" +#~ "o primeiro chip da Ensoniq utilizado em seus sintetizadores e no " +#~ "computador Apple IIGS. Contém 32 canais de sample/wavetable 8-bit com " +#~ "balanço binário, é capaz de sincronizar osciladores (como o SID) e " +#~ "realizar modulação de amplitude. Pode endereçar até 128 KiB (2 bancos de " +#~ "64 KiB) de memória para wavetables/samples.\n" +#~ "Como Robert Yannes (criador do chip SID) disse, é mais ou menos o que o " +#~ "chip SID poderia ter sido se ele tivesse tido tempo suficiente para o seu " +#~ "desenvolvimento." + +#~ msgid "11xx: Set number of enabled oscillators (2-1F)" +#~ msgstr "11xx: Definir número de osciladores habilitados (2-1F)" + +#~ msgid "12xx: Set oscillator output (0-7, 0=left, 1=right)" +#~ msgstr "12xx: Definir saída do oscilador (0-7, 0=esquerda, 1=direita)" + +#~ msgid "13xx: Set wave/sample length (0-7, 0=256, 1=512, 2=1024, etc.)" +#~ msgstr "" +#~ "13xx: Definir tamanho da onda/sample (0-7, 0=256, 1=512, 2=1024, etc.)" + +#~ msgid "14xx: Set wave/sample position in memory (xx*256 offset)" +#~ msgstr "" +#~ "14xx: Definir posição na memória da onda/sample (deslocamento em xx*256)" + +#~ msgid "15xx: Set oscillator mode (0-3)" +#~ msgstr "15xx: Definir modo do oscilador (0-3)" + +#~ msgid "" +#~ "this chip was featured in the Enterprise 128 computer. it is similar to " +#~ "POKEY, but with stereo output, more features and frequency precision and " +#~ "the ability to turn left or right (or both) channel into a 6-bit DAC for " +#~ "sample playback." +#~ msgstr "" +#~ "esse chip foi utilizado no computador Enterprise 128. ele é similar ao " +#~ "POKEY, mas com saída estéreo, mais recursos, mais precisão de frequência " +#~ "e com a possibilidade de transformar o canal esquerdo, direito ou ambos " +#~ "em um DAC 6-bit para reprodução de samples." + +#~ msgid "" +#~ "a fictional sound chip by LTVA. like SID, but with many of its problems " +#~ "fixed. also features extended functionality like more wave mixing modes, " +#~ "tonal noise, filter and volume per channel." +#~ msgstr "" +#~ "um chip de som fictício por LTVA. como o SID, mas com muitos de seus " +#~ "problemas consertados. também possui recursos estendidos como mais modos " +#~ "de mistura de formas de onda, ruído tonal, filtro e volume por canal." + +#~ msgid "" +#~ "a fictional sound chip by Euly. similar to Ricoh 2A03, but all the duty " +#~ "cycles are different, noise has 32 pitches instead of 16 and you have " +#~ "four hard-coded waveforms on triangle channel." +#~ msgstr "" +#~ "um chip de som fictício por Euly. similar ao Ricoh 2A03, mas todos os " +#~ "ciclos de trabalho são diferentes, o ruído tem 32 tons ao invés de 16 e " +#~ "você possui 4 formas de onda predefinidas no lugar do canal de triângulo." + +#~ msgid "" +#~ "12xx: Set duty cycle/noise mode (pulse: 0 to 3; noise: 0 or 1, wave: 0 to " +#~ "3)" +#~ msgstr "" +#~ "12xx: Definir ciclo de trabalho/modo de ruído/onda (pulso: 0 a 3; ruído: " +#~ "0 ou 1, onda: 0 a 3)" + +#~ msgid "19xx: Set wave linear counter (0 to 7F; 80 and higher halt)" +#~ msgstr "" +#~ "19xx: Definir contador linear do canal de onda (0 a 7F; valores 80 e " +#~ "superiores interrompem)" + +#~ msgid "" +#~ "additional PCM FIFO channels in Game Boy Advance driven by software " +#~ "mixing to provide up to sixteen sample channels." +#~ msgstr "" +#~ "canais PCM FIFO adicionais no Game Boy Advance controlados por mixing em " +#~ "software para prover até 16 canais de sample." + +#~ msgid "CH1" +#~ msgstr "CN1" + +#~ msgid "CH2" +#~ msgstr "CN2" + +#~ msgid "CH3" +#~ msgstr "CN3" + +#~ msgid "CH4" +#~ msgstr "CN4" + +#~ msgid "CH5" +#~ msgstr "CN5" + +#~ msgid "CH6" +#~ msgstr "CN6" + +#~ msgid "CH7" +#~ msgstr "CN7" + +#~ msgid "CH8" +#~ msgstr "CN8" + +#~ msgid "CH9" +#~ msgstr "CN9" + +#~ msgid "NO" +#~ msgstr "RU" + +#~ msgid "N1" +#~ msgstr "R1" + +#~ msgid "N2" +#~ msgstr "R2" + +#~ msgid "N3" +#~ msgstr "R3" + +#~ msgid "SL" +#~ msgstr "RA" + +#~ msgid "S1" +#~ msgstr "Q1" + +#~ msgid "S2" +#~ msgstr "Q2" + +#~ msgid "S3" +#~ msgstr "Q3" + +#~ msgid "S4" +#~ msgstr "Q4" + +#~ msgid "S5" +#~ msgstr "Q5" + +#~ msgid "S6" +#~ msgstr "Q6" + +#~ msgid "P1" +#~ msgstr "S1" + +#~ msgid "P2" +#~ msgstr "S2" + +#~ msgid "P3" +#~ msgstr "S3" + +#~ msgid "P4" +#~ msgstr "S4" + +#~ msgid "P5" +#~ msgstr "S5" + +#~ msgid "P6" +#~ msgstr "S6" + +#~ msgid "P7" +#~ msgstr "S7" + +#~ msgid "P8" +#~ msgstr "S8" + +#~ msgid "P9" +#~ msgstr "S9" + +#~ msgid "P10" +#~ msgstr "S10" + +#~ msgid "P11" +#~ msgstr "S11" + +#~ msgid "P12" +#~ msgstr "S12" + +#~ msgid "P13" +#~ msgstr "S13" + +#~ msgid "P14" +#~ msgstr "S14" + +#~ msgid "P15" +#~ msgstr "S15" + +#~ msgid "P16" +#~ msgstr "S16" + +#~ msgid "P17" +#~ msgstr "S17" + +#~ msgid "P18" +#~ msgstr "S18" + +#~ msgid "P19" +#~ msgstr "S19" + +#~ msgid "P20" +#~ msgstr "S20" + +#~ msgid "P21" +#~ msgstr "S21" + +#~ msgid "P22" +#~ msgstr "S22" + +#~ msgid "P23" +#~ msgstr "S23" + +#~ msgid "P24" +#~ msgstr "S24" + +#~ msgid "BD" +#~ msgstr "BU" + +#~ msgid "SD" +#~ msgstr "CX" + +#~ msgid "TP" +#~ msgstr "PR" + +#~ msgid "HH" +#~ msgstr "CH" + +#~ msgid "TM" +#~ msgstr "SU" + +#~ msgid "RM" +#~ msgstr "AR" + +#~ msgid "P" +#~ msgstr "S" + +#~ msgid "VS" +#~ msgstr "VS" + +#~ msgid "TR" +#~ msgstr "TR" + +#~ msgid "DMC" +#~ msgstr "DMC" + +#~ msgid "WA" +#~ msgstr "ON" diff --git a/po/ru.po b/po/ru.po new file mode 100644 index 000000000..f45b01770 --- /dev/null +++ b/po/ru.po @@ -0,0 +1,20672 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: furnace 0.6.3\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#: src/engine/sysDef.cpp:428 src/engine/sysDef.cpp:441 +msgid "20xx: Set channel mode (bit 0: square; bit 1: noise; bit 2: envelope)" +msgstr "20xx: Режим канала (бит 0: меандр; бит 1: шум; бит 2: огибающая)" + +#: src/engine/sysDef.cpp:429 +msgid "21xx: Set noise frequency (0 to 1F)" +msgstr "21xx: Частота шума (0-1F)" + +#: src/engine/sysDef.cpp:430 src/engine/sysDef.cpp:443 +msgid "22xy: Set envelope mode (x: shape, y: enable for this channel)" +msgstr "22xy: Режим огибающей (x: форма, y: включить для этого канала)" + +#: src/engine/sysDef.cpp:431 src/engine/sysDef.cpp:444 +msgid "23xx: Set envelope period low byte" +msgstr "23xx: Младший байт периода огибающей" + +#: src/engine/sysDef.cpp:432 src/engine/sysDef.cpp:445 +msgid "24xx: Set envelope period high byte" +msgstr "24xx: Старший байт периода огибающей" + +#: src/engine/sysDef.cpp:433 src/engine/sysDef.cpp:446 +#: src/engine/sysDef.cpp:1599 +msgid "25xx: Envelope slide up" +msgstr "25xx: Портаменто огибающей вверх" + +#: src/engine/sysDef.cpp:434 src/engine/sysDef.cpp:447 +#: src/engine/sysDef.cpp:1600 +msgid "26xx: Envelope slide down" +msgstr "26xx: Портаменто огибающей вниз" + +#: src/engine/sysDef.cpp:435 src/engine/sysDef.cpp:448 +#: src/engine/sysDef.cpp:1601 +msgid "29xy: Set auto-envelope (x: numerator; y: denominator)" +msgstr "29xy: Авто-огибающая (x: числитель; y: знаменатель)" + +#: src/engine/sysDef.cpp:436 src/engine/sysDef.cpp:449 +msgid "2Exx: Write to I/O port A" +msgstr "2Exx: Запись в порт ввода-вывода A" + +#: src/engine/sysDef.cpp:437 src/engine/sysDef.cpp:450 +msgid "2Fxx: Write to I/O port B" +msgstr "2Fxx: Запись в порт ввода-вывода B" + +#: src/engine/sysDef.cpp:442 +msgid "21xx: Set noise frequency (0 to FF)" +msgstr "21xx: Частота шума (0-FF)" + +#: src/engine/sysDef.cpp:451 +msgid "12xx: Set duty cycle (0 to 8)" +msgstr "12xx: Скважность (0-8)" + +#: src/engine/sysDef.cpp:453 +msgid "27xx: Set noise AND mask" +msgstr "27xx: Маска шума И" + +#: src/engine/sysDef.cpp:454 +msgid "28xx: Set noise OR mask" +msgstr "28xx: Маска шума ИЛИ" + +#: src/engine/sysDef.cpp:455 +msgid "" +"2Cxy: Automatic noise frequency (x: mode (0: disable, 1: freq, 2: freq + OR " +"mask); y: offset)" +msgstr "" + +#: src/engine/sysDef.cpp:456 +msgid "2Dxx: NOT TO BE EMPLOYED BY THE COMPOSER" +msgstr "2Dxx: НЕ ДЛЯ ИСПОЛЬЗОВАНИЯ КОМПОЗИТОРОМ" + +#: src/engine/sysDef.cpp:460 +msgid "30xx: Toggle hard envelope reset on new notes" +msgstr "30xx: Переключить жёсткий перезапуск огибающей на новой ноте" + +#: src/engine/sysDef.cpp:465 +msgid "18xx: Toggle extended channel 3 mode" +msgstr "18xx: Переключить расширенный режим 3-го канала" + +#: src/engine/sysDef.cpp:470 src/engine/sysDef.cpp:766 +#: src/engine/sysDef.cpp:1025 src/engine/sysDef.cpp:1272 +#: src/engine/sysDef.cpp:1593 +msgid "17xx: Toggle PCM mode (LEGACY)" +msgstr "17xx: Переключить режим ИКМ (СОВМЕСТИМОСТЬ)" + +#: src/engine/sysDef.cpp:471 src/engine/sysDef.cpp:1653 +#: src/engine/sysDef.cpp:1963 +msgid "DFxx: Set sample playback direction (0: normal; 1: reverse)" +msgstr "DFxx: Направление проигрывания сэмпла (0: обычное; 1: обратное)" + +#: src/engine/sysDef.cpp:476 +msgid "18xx: Toggle drums mode (1: enabled; 0: disabled)" +msgstr "18xx: Переключить режим ударных (1: включить; 0: выключить)" + +#: src/engine/sysDef.cpp:480 src/engine/sysDef.cpp:554 +#: src/engine/sysDef.cpp:575 +msgid "11xx: Set feedback (0 to 7)" +msgstr "11xx: Обратная связь (0-7)" + +#: src/engine/sysDef.cpp:481 +msgid "12xx: Set level of operator 1 (0 highest, 7F lowest)" +msgstr "12xx: Уровень оператора 1 (0 макс., 7F мин.)" + +#: src/engine/sysDef.cpp:482 +msgid "13xx: Set level of operator 2 (0 highest, 7F lowest)" +msgstr "13xx: Уровень оператора 2 (0 макс., 7F мин.)" + +#: src/engine/sysDef.cpp:483 +msgid "14xx: Set level of operator 3 (0 highest, 7F lowest)" +msgstr "14xx: Уровень оператора 3 (0 макс., 7F мин.)" + +#: src/engine/sysDef.cpp:484 +msgid "15xx: Set level of operator 4 (0 highest, 7F lowest)" +msgstr "15xx: Уровень оператора 4 (0 макс., 7F мин.)" + +#: src/engine/sysDef.cpp:485 src/engine/sysDef.cpp:580 +#: src/engine/sysDef.cpp:635 +msgid "16xy: Set operator multiplier (x: operator from 1 to 4; y: multiplier)" +msgstr "16xy: Множитель частоты (x: оператор (1-4); y: множитель)" + +#: src/engine/sysDef.cpp:486 +msgid "19xx: Set attack of all operators (0 to 1F)" +msgstr "19xx: Атака всех операторов (0-1F)" + +#: src/engine/sysDef.cpp:487 +msgid "1Axx: Set attack of operator 1 (0 to 1F)" +msgstr "1Axx: Атака оператора 1 (0-1F)" + +#: src/engine/sysDef.cpp:488 +msgid "1Bxx: Set attack of operator 2 (0 to 1F)" +msgstr "1Bxx: Атака оператора 2 (0-1F)" + +#: src/engine/sysDef.cpp:489 +msgid "1Cxx: Set attack of operator 3 (0 to 1F)" +msgstr "1Cxx: Атака оператора 3 (0-1F)" + +#: src/engine/sysDef.cpp:490 +msgid "1Dxx: Set attack of operator 4 (0 to 1F)" +msgstr "1Dxx: Атака оператора 4 (0-1F)" + +#: src/engine/sysDef.cpp:491 src/engine/sysDef.cpp:588 +#: src/engine/sysDef.cpp:656 +msgid "50xy: Set AM (x: operator from 1 to 4 (0 for all ops); y: AM)" +msgstr "50xy: Включить АМ (x: оператор 1-4 (0 для всех операторов); y: АМ)" + +#: src/engine/sysDef.cpp:492 src/engine/sysDef.cpp:589 +#: src/engine/sysDef.cpp:657 +msgid "" +"51xy: Set sustain level (x: operator from 1 to 4 (0 for all ops); y: sustain)" +msgstr "" +"51xy: Уровень сустейна (x: оператор 1-4 (0 для всех операторов); y: уровень)" + +#: src/engine/sysDef.cpp:493 src/engine/sysDef.cpp:590 +#: src/engine/sysDef.cpp:658 +msgid "52xy: Set release (x: operator from 1 to 4 (0 for all ops); y: release)" +msgstr "52xy: Релиз (x: оператор 1-4 (0 для всех операторов); y: релиз)" + +#: src/engine/sysDef.cpp:494 +msgid "" +"53xy: Set detune (x: operator from 1 to 4 (0 for all ops); y: detune where 3 " +"is center)" +msgstr "" +"53xy: Расстройка (x: оператор 1-4 (0 для всех операторов); y: расстройка (3 " +"- без расстройки))" + +#: src/engine/sysDef.cpp:495 src/engine/sysDef.cpp:592 +#: src/engine/sysDef.cpp:660 +msgid "" +"54xy: Set envelope scale (x: operator from 1 to 4 (0 for all ops); y: scale " +"from 0 to 3)" +msgstr "" +"54xy: Масш. огиб. (x: оператор 1-4 (0 для всех операторов); y: масш. 0-3)" + +#: src/engine/sysDef.cpp:496 +msgid "56xx: Set decay of all operators (0 to 1F)" +msgstr "56xx: Спад всех операторов (0-1F)" + +#: src/engine/sysDef.cpp:497 +msgid "57xx: Set decay of operator 1 (0 to 1F)" +msgstr "57xx: Спад оператора 1 (0-1F)" + +#: src/engine/sysDef.cpp:498 +msgid "58xx: Set decay of operator 2 (0 to 1F)" +msgstr "58xx: Спад оператора 2 (0-1F)" + +#: src/engine/sysDef.cpp:499 +msgid "59xx: Set decay of operator 3 (0 to 1F)" +msgstr "59xx: Спад оператора 3 (0-1F)" + +#: src/engine/sysDef.cpp:500 +msgid "5Axx: Set decay of operator 4 (0 to 1F)" +msgstr "5Axx: Спад оператора 4 (0-1F)" + +#: src/engine/sysDef.cpp:501 +msgid "5Bxx: Set decay 2 of all operators (0 to 1F)" +msgstr "5Bxx: Спад 2 всех операторов (0-1F)" + +#: src/engine/sysDef.cpp:502 +msgid "5Cxx: Set decay 2 of operator 1 (0 to 1F)" +msgstr "5Cxx: Спад 2 оператора 1 (0-1F)" + +#: src/engine/sysDef.cpp:503 +msgid "5Dxx: Set decay 2 of operator 2 (0 to 1F)" +msgstr "5Dxx: Спад 2 оператора 2 (0-1F)" + +#: src/engine/sysDef.cpp:504 +msgid "5Exx: Set decay 2 of operator 3 (0 to 1F)" +msgstr "5Exx: Спад 2 оператора 3 (0-1F)" + +#: src/engine/sysDef.cpp:505 +msgid "5Fxx: Set decay 2 of operator 4 (0 to 1F)" +msgstr "5Fxx: Спад 2 оператора 4 (0-1F)" + +#: src/engine/sysDef.cpp:510 +msgid "10xx: Set noise frequency (xx: value; 0 disables noise)" +msgstr "10xx: Частота шума (xx: частота; 0 отключает шум)" + +#: src/engine/sysDef.cpp:511 +msgid "17xx: Set LFO speed" +msgstr "17xx: Установить частоту ГНЧ" + +#: src/engine/sysDef.cpp:512 +msgid "18xx: Set LFO waveform (0 saw, 1 square, 2 triangle, 3 noise)" +msgstr "18xx: Форма волны ГНЧ (0 пила, 1 меандр, 2 треуг., 3 шум)" + +#: src/engine/sysDef.cpp:513 +msgid "1Exx: Set AM depth (0 to 7F)" +msgstr "1Exx: Глубина АМ (0-7F)" + +#: src/engine/sysDef.cpp:514 +msgid "1Fxx: Set PM depth (0 to 7F)" +msgstr "1Fxx: Глубина ФМ (0-7F)" + +#: src/engine/sysDef.cpp:515 +msgid "" +"55xy: Set detune 2 (x: operator from 1 to 4 (0 for all ops); y: detune from " +"0 to 3)" +msgstr "" +"55xy: Расстройка 2 (x: оператор 1-4 (0 для всех операторов); y: расстройка " +"0-3)" + +#: src/engine/sysDef.cpp:520 +msgid "24xx: Set LFO 2 speed" +msgstr "24xx: Установить частоту ГНЧ 2" + +#: src/engine/sysDef.cpp:521 +msgid "25xx: Set LFO 2 waveform (0 saw, 1 square, 2 triangle, 3 noise)" +msgstr "25xx: Форма волны ГНЧ 2 (0 пила, 1 меандр, 2 треуг., 3 шум)" + +#: src/engine/sysDef.cpp:522 +msgid "26xx: Set AM 2 depth (0 to 7F)" +msgstr "26xx: Глубина АМ 2 (0-7F)" + +#: src/engine/sysDef.cpp:523 +msgid "27xx: Set PM 2 depth (0 to 7F)" +msgstr "27xx: Глубина ФМ 2 (0-7F)" + +#: src/engine/sysDef.cpp:524 +msgid "" +"28xy: Set reverb (x: operator from 1 to 4 (0 for all ops); y: reverb from 0 " +"to 7)" +msgstr "28xy: Реверб (x: оператор 1-4 (0 для всех операторов); y: реверб 0-7)" + +#: src/engine/sysDef.cpp:525 src/engine/sysDef.cpp:650 +msgid "" +"2Axy: Set waveform (x: operator from 1 to 4 (0 for all ops); y: waveform " +"from 0 to 7)" +msgstr "" +"2Axy: Форма волны (x: оператор 1-4 (0 для всех операторов); y: форма волны " +"0-7)" + +#: src/engine/sysDef.cpp:526 +msgid "" +"2Bxy: Set envelope generator shift (x: operator from 1 to 4 (0 for all ops); " +"y: shift from 0 to 3)" +msgstr "" +"2Bxy: Сдвиг генератора огибающей (x: оператор 1-4 (0 для всех операторов); " +"y: сдвиг 0-3)" + +#: src/engine/sysDef.cpp:527 +msgid "" +"2Cxy: Set fine multiplier (x: operator from 1 to 4 (0 for all ops); y: fine)" +msgstr "" +"2Cxy: Точный множитель (x: оператор 1-4 (0 для всех операторов); y: " +"множитель)" + +#: src/engine/sysDef.cpp:530 +msgid "" +"3xyy: Set fixed frequency of operator 1 (x: octave from 0 to 7; y: frequency)" +msgstr "" +"3xyy: Установить фиксированную частоту оператора 1 (x: октава 0-7; y: " +"частота)" + +#: src/engine/sysDef.cpp:531 +msgid "" +"3xyy: Set fixed frequency of operator 2 (x: octave from 8 to F; y: frequency)" +msgstr "" +"3xyy: Установить фиксированную частоту оператора 2 (x: октава 8-F; y: " +"частота)" + +#: src/engine/sysDef.cpp:532 +msgid "" +"4xyy: Set fixed frequency of operator 3 (x: octave from 0 to 7; y: frequency)" +msgstr "" +"4xyy: Установить фиксированную частоту оператора 3 (x: октава 0-7; y: " +"частота)" + +#: src/engine/sysDef.cpp:533 +msgid "" +"4xyy: Set fixed frequency of operator 4 (x: octave from 8 to F; y: frequency)" +msgstr "" +"4xyy: Установить фиксированную частоту оператора 4 (x: октава 8-F; y: " +"частота)" + +#: src/engine/sysDef.cpp:540 +msgid "10xy: Setup LFO (x: enable; y: speed)" +msgstr "10xy: Настройка ГНЧ (x: включить; y: скорость)" + +#: src/engine/sysDef.cpp:541 +msgid "" +"55xy: Set SSG envelope (x: operator from 1 to 4 (0 for all ops); y: 0-7 on, " +"8 off)" +msgstr "" +"55xy: Огибающая SSG (x: оператор 1-4 (0 для всех операторов); y: 0-7 вкл., 8 " +"выкл.)" + +#: src/engine/sysDef.cpp:549 +msgid "1Fxx: Set ADPCM-A global volume (0 to 3F)" +msgstr "1Fxx: Глобальная громкость ADPCM-A (0-3F)" + +#: src/engine/sysDef.cpp:553 +msgid "10xx: Set patch (0 to F)" +msgstr "10xx: Патч (0-F)" + +#: src/engine/sysDef.cpp:555 src/engine/sysDef.cpp:576 +#: src/engine/sysDef.cpp:631 +msgid "12xx: Set level of operator 1 (0 highest, 3F lowest)" +msgstr "12xx: Уровень оператора 1 (0 макс., 3F мин.)" + +#: src/engine/sysDef.cpp:556 src/engine/sysDef.cpp:577 +#: src/engine/sysDef.cpp:632 +msgid "13xx: Set level of operator 2 (0 highest, 3F lowest)" +msgstr "13xx: Уровень оператора 2 (0 макс., 3F мин.)" + +#: src/engine/sysDef.cpp:557 +msgid "16xy: Set operator multiplier (x: operator from 1 to 2; y: multiplier)" +msgstr "16xy: Множитель частоты (x: оператор 1-2; y: множитель)" + +#: src/engine/sysDef.cpp:558 src/engine/sysDef.cpp:582 +#: src/engine/sysDef.cpp:637 +msgid "19xx: Set attack of all operators (0 to F)" +msgstr "19xx: Атака всех операторов (0-F)" + +#: src/engine/sysDef.cpp:559 src/engine/sysDef.cpp:583 +#: src/engine/sysDef.cpp:638 +msgid "1Axx: Set attack of operator 1 (0 to F)" +msgstr "1Axx: Атака оператора 1 (0-F)" + +#: src/engine/sysDef.cpp:560 src/engine/sysDef.cpp:584 +#: src/engine/sysDef.cpp:639 +msgid "1Bxx: Set attack of operator 2 (0 to F)" +msgstr "1Bxx: Атака оператора 2 (0-F)" + +#: src/engine/sysDef.cpp:561 +msgid "50xy: Set AM (x: operator from 1 to 2 (0 for all ops); y: AM)" +msgstr "50xy: Включить АМ (x: оператор 1-2 (0 для всех операторов); y: АМ)" + +#: src/engine/sysDef.cpp:562 +msgid "" +"51xy: Set sustain level (x: operator from 1 to 2 (0 for all ops); y: sustain)" +msgstr "" +"51xy: Уровень сустейна (x: оператор 1-2 (0 для всех операторов); y: сустейн)" + +#: src/engine/sysDef.cpp:563 +msgid "52xy: Set release (x: operator from 1 to 2 (0 for all ops); y: release)" +msgstr "52xy: Релиз (x: оператор 1-2 (0 для всех операторов); y: релиз)" + +#: src/engine/sysDef.cpp:564 +msgid "53xy: Set vibrato (x: operator from 1 to 2 (0 for all ops); y: enabled)" +msgstr "53xy: Вибрато (x: оператор 1-2 (0 для всех операторов); y: вкл.)" + +#: src/engine/sysDef.cpp:565 +msgid "" +"54xy: Set envelope scale (x: operator from 1 to 2 (0 for all ops); y: scale " +"from 0 to 3)" +msgstr "" +"54xy: Масш. огиб. (x: оператор 1-2 (0 для всех операторов); y: масш. 0-3)" + +#: src/engine/sysDef.cpp:566 +msgid "" +"55xy: Set envelope sustain (x: operator from 1 to 2 (0 for all ops); y: " +"enabled)" +msgstr "" +"55xy: Сустейн огибающей (x: оператор 1-2 (0 для всех операторов); y: вкл.)" + +#: src/engine/sysDef.cpp:567 src/engine/sysDef.cpp:594 +#: src/engine/sysDef.cpp:662 +msgid "56xx: Set decay of all operators (0 to F)" +msgstr "56xx: Спад всех операторов (0-F)" + +#: src/engine/sysDef.cpp:568 src/engine/sysDef.cpp:595 +#: src/engine/sysDef.cpp:663 +msgid "57xx: Set decay of operator 1 (0 to F)" +msgstr "57xx: Спад оператора 1 (0-F)" + +#: src/engine/sysDef.cpp:569 src/engine/sysDef.cpp:596 +#: src/engine/sysDef.cpp:664 +msgid "58xx: Set decay of operator 2 (0 to F)" +msgstr "58xx: Спад оператора 2 (0-F)" + +#: src/engine/sysDef.cpp:570 +msgid "" +"5Bxy: Set whether key will scale envelope (x: operator from 1 to 2 (0 for " +"all ops); y: enabled)" +msgstr "" +"5Bxy: Масштаб. огиб. в зав. от ноты (x: оператор 1-2 (0 для всех " +"операторов); y: вкл.)" + +#: src/engine/sysDef.cpp:574 +msgid "10xx: Set global AM depth (0: 1dB, 1: 4.8dB)" +msgstr "10xx: Глобальная глубина АМ (0: 1 дБ, 1: 4.8 дБ)" + +#: src/engine/sysDef.cpp:578 src/engine/sysDef.cpp:633 +msgid "14xx: Set level of operator 3 (0 highest, 3F lowest)" +msgstr "14xx: Уровень оператора 3 (0 макс., 3F мин.)" + +#: src/engine/sysDef.cpp:579 src/engine/sysDef.cpp:634 +msgid "15xx: Set level of operator 4 (0 highest, 3F lowest)" +msgstr "15xx: Уровень оператора 4 (0 макс., 3F мин.)" + +#: src/engine/sysDef.cpp:581 +msgid "17xx: Set global vibrato depth (0: normal, 1: double)" +msgstr "17xx: Глобальная глубина вибрато (0: нормальная, 1: двойная)" + +#: src/engine/sysDef.cpp:585 src/engine/sysDef.cpp:640 +msgid "1Cxx: Set attack of operator 3 (0 to F)" +msgstr "1Cxx: Атака оператора 3 (0-F)" + +#: src/engine/sysDef.cpp:586 src/engine/sysDef.cpp:641 +msgid "1Dxx: Set attack of operator 4 (0 to F)" +msgstr "1Dxx: Атака оператора 4 (0-F)" + +#: src/engine/sysDef.cpp:587 +msgid "" +"2Axy: Set waveform (x: operator from 1 to 4 (0 for all ops); y: waveform " +"from 0 to 3 in OPL2 and 0 to 7 in OPL3)" +msgstr "" +"2Axy: Форма волны (x: оператор 1-4 (0 для всех операторов); y: форма волны " +"0-3 для OPL2 и 0-7 для OPL3)" + +#: src/engine/sysDef.cpp:591 src/engine/sysDef.cpp:659 +msgid "53xy: Set vibrato (x: operator from 1 to 4 (0 for all ops); y: enabled)" +msgstr "53xy: Вибрато (x: оператор 1-4 (0 для всех операторов); y: вкл.)" + +#: src/engine/sysDef.cpp:593 src/engine/sysDef.cpp:661 +msgid "" +"55xy: Set envelope sustain (x: operator from 1 to 4 (0 for all ops); y: " +"enabled)" +msgstr "" +"55xy: Сустейн огибающей (x: оператор 1-4 (0 для всех операторов); y: вкл.)" + +#: src/engine/sysDef.cpp:597 src/engine/sysDef.cpp:665 +msgid "59xx: Set decay of operator 3 (0 to F)" +msgstr "59xx: Спад оператора 3 (0-F)" + +#: src/engine/sysDef.cpp:598 src/engine/sysDef.cpp:666 +msgid "5Axx: Set decay of operator 4 (0 to F)" +msgstr "5Axx: Спад оператора 4 (0-F)" + +#: src/engine/sysDef.cpp:599 src/engine/sysDef.cpp:667 +msgid "" +"5Bxy: Set whether key will scale envelope (x: operator from 1 to 4 (0 for " +"all ops); y: enabled)" +msgstr "" +"5Bxy: Масштаб. огиб. в зав. от ноты (x: оператор 1-4 (0 для всех " +"операторов); y: вкл.)" + +#: src/engine/sysDef.cpp:603 src/engine/sysDef.cpp:680 +msgid "" +"10xx: Set waveform (bit 0: triangle; bit 1: saw; bit 2: pulse; bit 3: noise)" +msgstr "" +"10xx: Форма волны (бит 0: треуг.; бит 1: пила; бит 2: прямоуг.; бит 3: шум)" + +#: src/engine/sysDef.cpp:604 +msgid "11xx: Set coarse cutoff (not recommended; use 4xxx instead)" +msgstr "11xx: Грубая частота среза (не рекомендуется; используйте 4xxx)" + +#: src/engine/sysDef.cpp:605 +msgid "12xx: Set coarse pulse width (not recommended; use 3xxx instead)" +msgstr "12xx: Грубая скважность (не рекомендуется; используйте 3xxx)" + +#: src/engine/sysDef.cpp:606 +msgid "13xx: Set resonance (0 to F)" +msgstr "13xx: Резонанс (0-F)" + +#: src/engine/sysDef.cpp:607 +msgid "" +"14xx: Set filter mode (bit 0: low pass; bit 1: band pass; bit 2: high pass)" +msgstr "14xx: Режим фильтра (бит 0: ФНЧ; бит 1: ППФ; бит 2: ФВЧ)" + +#: src/engine/sysDef.cpp:608 +msgid "15xx: Set envelope reset time" +msgstr "15xx: Установить время ресета огибающей" + +#: src/engine/sysDef.cpp:609 +msgid "1Axx: Disable envelope reset for this channel (1 disables; 0 enables)" +msgstr "1Axx: Отключить ресет огибающей для этого канала (1 выкл.; 0 вкл.)" + +#: src/engine/sysDef.cpp:610 +msgid "1Bxy: Reset cutoff (x: on new note; y: now)" +msgstr "1Bxy: Сбросить частоту среза (x: на след. ноте; y: сейчас)" + +#: src/engine/sysDef.cpp:611 +msgid "1Cxy: Reset pulse width (x: on new note; y: now)" +msgstr "1Cxy: Сбросить скважность (x: на след. ноте; y: сейчас)" + +#: src/engine/sysDef.cpp:612 +msgid "1Exy: Change other parameters (LEGACY)" +msgstr "1Exy: Изменить другие параметры (СОВМЕСТИМОСТЬ)" + +#: src/engine/sysDef.cpp:613 +msgid "20xy: Set attack/decay (x: attack; y: decay)" +msgstr "20xy: Установить атаку/спад (x: атака; y: спад)" + +#: src/engine/sysDef.cpp:614 +msgid "21xy: Set sustain/release (x: sustain; y: release)" +msgstr "21xy: Установить сустейн/релиз (x: сустейн; y: релиз)" + +#: src/engine/sysDef.cpp:616 src/engine/sysDef.cpp:688 +msgid "3xxx: Set pulse width (0 to FFF)" +msgstr "3xxx: Скважность (0-FFF)" + +#: src/engine/sysDef.cpp:617 +msgid "4xxx: Set cutoff (0 to 7FF)" +msgstr "4xxx: Частота среза (0-7FF)" + +#: src/engine/sysDef.cpp:622 src/engine/sysDef.cpp:745 +#: src/engine/sysDef.cpp:762 src/engine/sysDef.cpp:1000 +#: src/engine/sysDef.cpp:1050 src/engine/sysDef.cpp:1268 +#: src/engine/sysDef.cpp:1320 src/engine/sysDef.cpp:1590 +#: src/engine/sysDef.cpp:1788 src/engine/sysDef.cpp:1792 +#: src/engine/sysDef.cpp:1893 src/engine/sysDef.cpp:2063 +#: src/engine/sysDef.cpp:2077 +msgid "10xx: Set waveform" +msgstr "10xx: Волна" + +#: src/engine/sysDef.cpp:626 +msgid "20xx: Set PCM frequency" +msgstr "20xx: Частота ИКМ" + +#: src/engine/sysDef.cpp:630 +msgid "" +"10xy: Set AM depth (x: operator from 1 to 4 (0 for all ops); y: depth (0: " +"1dB, 1: 4.8dB))" +msgstr "" +"10xy: Глубина АМ (x: оператор 1-4 (0 для всех операторов); y: глубина (0: 1 " +"дБ, 1: 4.8 дБ))" + +#: src/engine/sysDef.cpp:636 +msgid "" +"17xy: Set vibrato depth (x: operator from 1 to 4 (0 for all ops); y: depth " +"(0: normal, 1: double))" +msgstr "" +"17xy: Глубина вибрато (x: оператор 1-4 (0 для всех операторов); y: глубина " +"(0: нормальная, 1: удвоенная))" + +#: src/engine/sysDef.cpp:642 +msgid "20xy: Set panning of operator 1 (x: left; y: right)" +msgstr "20xy: Панорамирование оператора 1 (x: лево; y: право)" + +#: src/engine/sysDef.cpp:643 +msgid "21xy: Set panning of operator 2 (x: left; y: right)" +msgstr "21xy: Панорамирование оператора 2 (x: лево; y: право)" + +#: src/engine/sysDef.cpp:644 +msgid "22xy: Set panning of operator 3 (x: left; y: right)" +msgstr "22xy: Панорамирование оператора 3 (x: лево; y: право)" + +#: src/engine/sysDef.cpp:645 +msgid "23xy: Set panning of operator 4 (x: left; y: right)" +msgstr "23xy: Панорамирование оператора 4 (x: лево; y: право)" + +#: src/engine/sysDef.cpp:646 +msgid "" +"24xy: Set output level register (x: operator from 1 to 4 (0 for all ops); y: " +"level from 0 to 7)" +msgstr "" +"24xy: Регистр выходного уровня (громкости) (x: оператор 1-4 (0 для всех " +"операторов); y: уровень 0-7)" + +#: src/engine/sysDef.cpp:647 +msgid "" +"25xy: Set modulation input level (x: operator from 1 to 4 (0 for all ops); " +"y: level from 0 to 7)" +msgstr "" +"25xy: Уровень входной модуляции (x: оператор 1-4 (0 для всех операторов); y: " +"уровень 0-7)" + +#: src/engine/sysDef.cpp:648 +msgid "" +"26xy: Set envelope delay (x: operator from 1 to 4 (0 for all ops); y: delay " +"from 0 to 7)" +msgstr "" +"26xy: Задержка огибающей (x: оператор 1-4 (0 для всех операторов); y: " +"задержка 0-7)" + +#: src/engine/sysDef.cpp:649 +msgid "27xx: Set noise mode for operator 4 (x: mode from 0 to 3)" +msgstr "27xx: Режим шума для оператора 4 (x: режим 0-3)" + +#: src/engine/sysDef.cpp:651 +msgid "" +"2Fxy: Set fixed frequency block (x: operator from 1 to 4; y: octave from 0 " +"to 7)" +msgstr "" +"2Fxy: Блок в режиме фиксированной частоты (x: оператор 1-4; y: октава 0-7)" + +#: src/engine/sysDef.cpp:652 +msgid "40xx: Set detune of operator 1 (80: center)" +msgstr "40xx: Расстройка оператора 1 (80: без расстройки)" + +#: src/engine/sysDef.cpp:653 +msgid "41xx: Set detune of operator 2 (80: center)" +msgstr "41xx: Расстройка оператора 2 (80: без расстройки)" + +#: src/engine/sysDef.cpp:654 +msgid "42xx: Set detune of operator 3 (80: center)" +msgstr "42xx: Расстройка оператора 3 (80: без расстройки)" + +#: src/engine/sysDef.cpp:655 +msgid "43xx: Set detune of operator 4 (80: center)" +msgstr "43xx: Расстройка оператора 4 (80: без расстройки)" + +#: src/engine/sysDef.cpp:670 +msgid "" +"3xyy: Set fixed frequency F-num of operator 1 (x: high 2 bits from 0 to 3; " +"y: low 8 bits of F-num)" +msgstr "" +"3xyy: Частота в режиме фиксированной частоты для оператора 1 (x: два старших " +"бита 0-3; y: 8 младших битов частоты)" + +#: src/engine/sysDef.cpp:671 +msgid "" +"3xyy: Set fixed frequency F-num of operator 2 (x: high 2 bits from 4 to 7; " +"y: low 8 bits of F-num)" +msgstr "" +"3xyy: Частота в режиме фиксированной частоты для оператора 2 (x: два старших " +"бита 4-7; y: 8 младших битов частоты)" + +#: src/engine/sysDef.cpp:672 +msgid "" +"3xyy: Set fixed frequency F-num of operator 3 (x: high 2 bits from 8 to B; " +"y: low 8 bits of F-num)" +msgstr "" +"3xyy: Частота в режиме фиксированной частоты для оператора 3 (x: два старших " +"бита 8-B; y: 8 младших битов частоты)" + +#: src/engine/sysDef.cpp:673 +msgid "" +"3xyy: Set fixed frequency F-num of operator 4 (x: high 2 bits from C to F; " +"y: low 8 bits of F-num)" +msgstr "" +"3xyy: Частота в режиме фиксированной частоты для оператора 4 (x: два старших " +"бита C-F; y: 8 младших битов частоты)" + +#: src/engine/sysDef.cpp:681 +msgid "11xx: Set resonance (0 to FF)" +msgstr "11xx: Резонанс (0-FF)" + +#: src/engine/sysDef.cpp:682 +msgid "" +"12xx: Set filter mode (bit 0: low pass; bit 1: band pass; bit 2: high pass)" +msgstr "12xx: Режим фильтра (бит 0: ФНЧ; бит 1: ППФ; бит 2: ФВЧ)" + +#: src/engine/sysDef.cpp:683 +msgid "13xx: Disable envelope reset for this channel (1 disables; 0 enables)" +msgstr "13xx: Отключить ресет огибающей для этого канала (1 выкл.; 0 вкл.)" + +#: src/engine/sysDef.cpp:684 +msgid "14xy: Reset cutoff (x: on new note; y: now)" +msgstr "14xy: Сбросить частоту среза (x: на след. ноте; y: сейчас)" + +#: src/engine/sysDef.cpp:685 +msgid "15xy: Reset pulse width (x: on new note; y: now)" +msgstr "15xy: Сбросить скважность (x: на след. ноте; y: сейчас)" + +#: src/engine/sysDef.cpp:686 +msgid "16xy: Change other parameters" +msgstr "16xy: Изменить другие параметры" + +#: src/engine/sysDef.cpp:689 src/engine/sysDef.cpp:1733 +msgid "4xxx: Set cutoff (0 to FFF)" +msgstr "4xxx: Частота среза (0-FFF)" + +#: src/engine/sysDef.cpp:697 +msgid "Yamaha YMU759 (MA-2)" +msgstr "" + +#: src/engine/sysDef.cpp:698 +msgid "" +"a chip which found its way inside mobile phones in the 2000's.\n" +"as proprietary as it is, it passed away after losing to MP3 in the mobile " +"hardware battle." +msgstr "" +"чип, начавший появляться в мобильных телефонах в 2000-ые.\n" +"несмотря на проприетарность, он проиграл формату MP3 во время соперничества " +"разных видов мобильного железа." + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:807 src/engine/sysDef.cpp:819 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:915 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1237 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1314 src/engine/sysDef.cpp:1356 +#: src/engine/sysDef.cpp:1396 src/engine/sysDef.cpp:1499 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1572 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1608 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1799 src/engine/sysDef.cpp:1810 +#: src/engine/sysDef.cpp:1821 src/engine/sysDef.cpp:1832 +#: src/engine/sysDef.cpp:1900 src/engine/sysDef.cpp:1910 +#: src/engine/sysDef.cpp:1920 src/engine/sysDef.cpp:1944 +#: src/engine/sysDef.cpp:1957 src/engine/sysDef.cpp:1970 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2037 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2122 +#: src/engine/sysDef.cpp:2138 src/engine/sysDef.cpp:2150 +msgid "Channel 1" +msgstr "Канал 1" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:807 src/engine/sysDef.cpp:819 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:915 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1237 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1314 src/engine/sysDef.cpp:1356 +#: src/engine/sysDef.cpp:1396 src/engine/sysDef.cpp:1499 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1572 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1608 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1799 src/engine/sysDef.cpp:1810 +#: src/engine/sysDef.cpp:1821 src/engine/sysDef.cpp:1832 +#: src/engine/sysDef.cpp:1900 src/engine/sysDef.cpp:1910 +#: src/engine/sysDef.cpp:1920 src/engine/sysDef.cpp:1944 +#: src/engine/sysDef.cpp:1957 src/engine/sysDef.cpp:1970 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2037 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2122 +#: src/engine/sysDef.cpp:2138 src/engine/sysDef.cpp:2150 +msgid "Channel 2" +msgstr "Канал 2" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:807 src/engine/sysDef.cpp:819 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1237 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1314 +#: src/engine/sysDef.cpp:1356 src/engine/sysDef.cpp:1396 +#: src/engine/sysDef.cpp:1499 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1572 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1799 src/engine/sysDef.cpp:1810 +#: src/engine/sysDef.cpp:1821 src/engine/sysDef.cpp:1832 +#: src/engine/sysDef.cpp:1910 src/engine/sysDef.cpp:1944 +#: src/engine/sysDef.cpp:1957 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2037 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +#: src/engine/sysDef.cpp:2122 src/engine/sysDef.cpp:2138 +#: src/engine/sysDef.cpp:2150 +msgid "Channel 3" +msgstr "Канал 3" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1237 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1314 +#: src/engine/sysDef.cpp:1356 src/engine/sysDef.cpp:1396 +#: src/engine/sysDef.cpp:1499 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1572 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1910 +#: src/engine/sysDef.cpp:1944 src/engine/sysDef.cpp:1957 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +#: src/engine/sysDef.cpp:2122 src/engine/sysDef.cpp:2150 +msgid "Channel 4" +msgstr "Канал 4" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1314 +#: src/engine/sysDef.cpp:1356 src/engine/sysDef.cpp:1396 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1572 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1705 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 5" +msgstr "Канал 5" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1356 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 6" +msgstr "Канал 6" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 7" +msgstr "Канал 7" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 8" +msgstr "Канал 8" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 9" +msgstr "Канал 9" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 10" +msgstr "Канал 10" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 11" +msgstr "Канал 11" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 12" +msgstr "Канал 12" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 13" +msgstr "Канал 13" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 14" +msgstr "Канал 14" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 15" +msgstr "Канал 15" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 16" +msgstr "Канал 16" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:700 +#: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1767 src/engine/sysDef.cpp:1888 +#: src/engine/sysDef.cpp:1944 src/engine/sysDef.cpp:1945 +#: src/gui/settings.cpp:4094 +msgid "PCM" +msgstr "ИКМ" + +#: src/engine/sysDef.cpp:706 +msgid "Sega Genesis/Mega Drive" +msgstr "" + +#: src/engine/sysDef.cpp:712 +msgid "Sega Genesis Extended Channel 3" +msgstr "Sega Genesis расширенный 3-ий канал" + +#: src/engine/sysDef.cpp:718 src/gui/sysConf.cpp:158 +msgid "TI SN76489" +msgstr "" + +#: src/engine/sysDef.cpp:719 +msgid "" +"a square/noise sound chip found on the Sega Master System, ColecoVision, " +"Tandy, TI's own 99/4A and a few other places." +msgstr "" +"чип с квадратными волнами и шумом, который был установлен в Sega Master " +"System, ColecoVision, Tandy, собственном устройстве TI 99/4A и некоторых " +"других местах." + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 +msgid "Square 1" +msgstr "Меандр 1" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 +msgid "Square 2" +msgstr "Меандр 2" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 +msgid "Square 3" +msgstr "Меандр 3" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:739 +#: src/engine/sysDef.cpp:773 src/engine/sysDef.cpp:955 +#: src/engine/sysDef.cpp:1314 src/engine/sysDef.cpp:1874 +#: src/engine/sysDef.cpp:1920 src/engine/sysDef.cpp:2037 +#: src/engine/sysDef.cpp:2100 src/gui/settings.cpp:4093 +#: src/gui/insEdit.cpp:6978 src/gui/insEdit.cpp:7129 src/gui/insEdit.cpp:7223 +#: src/gui/insEdit.cpp:7315 +msgid "Noise" +msgstr "Шум" + +#: src/engine/sysDef.cpp:726 +msgid "20xy: Set noise mode (x: preset freq/ch3 freq; y: thin pulse/noise)" +msgstr "" +"20xy: Режим шума (x: фикс. част./част. 3-го кан.; y: \"тонкая\" прямоуг. " +"аолна/шум)" + +#: src/engine/sysDef.cpp:731 +msgid "Sega Master System + FM Expansion" +msgstr "" + +#: src/engine/sysDef.cpp:737 src/gui/settings.cpp:4025 +msgid "Game Boy" +msgstr "Game Boy" + +#: src/engine/sysDef.cpp:738 +msgid "the most popular portable game console of the era." +msgstr "самая популярная портативная игровая консоль той эпохи." + +#: src/engine/sysDef.cpp:739 src/engine/sysDef.cpp:773 +#: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:2100 +msgid "Pulse 1" +msgstr "Прямоуг. 1" + +#: src/engine/sysDef.cpp:739 src/engine/sysDef.cpp:773 +#: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:2100 +msgid "Pulse 2" +msgstr "Прямоуг. 2" + +#: src/engine/sysDef.cpp:739 src/gui/settings.cpp:3930 +#: src/gui/guiConst.cpp:1395 src/gui/insEdit.cpp:6652 +msgid "Wavetable" +msgstr "Волн. табл." + +#: src/engine/sysDef.cpp:746 +msgid "11xx: Set noise length (0: long; 1: short)" +msgstr "11xx: Длина шума (0: длинный; 1: короткий)" + +#: src/engine/sysDef.cpp:747 +msgid "12xx: Set duty cycle (0 to 3)" +msgstr "12xx: Скважность (0-3)" + +#: src/engine/sysDef.cpp:748 +msgid "13xy: Setup sweep (x: time; y: shift)" +msgstr "" +"13xy: Сконфигурировать аппаратное портаменто (x: длительность; y: расстояние)" + +#: src/engine/sysDef.cpp:749 +msgid "14xx: Set sweep direction (0: up; 1: down)" +msgstr "14xx: Направление аппаратного портаменто (0: вверх; 1: вниз)" + +#: src/engine/sysDef.cpp:754 +msgid "PC Engine/TurboGrafx-16" +msgstr "" + +#: src/engine/sysDef.cpp:755 +msgid "an '80s game console with a wavetable sound chip, popular in Japan." +msgstr "" +"игровая консоль из 80-ых с чипом на волновых таблицах. Была популярна в " +"Японии." + +#: src/engine/sysDef.cpp:763 src/engine/sysDef.cpp:1001 +#: src/engine/sysDef.cpp:1793 +msgid "11xx: Toggle noise mode" +msgstr "11xx: Переключить режим шума" + +#: src/engine/sysDef.cpp:764 +msgid "12xx: Setup LFO (0: disabled; 1: 1x depth; 2: 16x depth; 3: 256x depth)" +msgstr "" +"12xx: Настроить ГНЧ (0: выкл.; 1: глубина 1x; 2: глубина 16x; 3: глубина " +"256x)" + +#: src/engine/sysDef.cpp:765 +msgid "13xx: Set LFO speed" +msgstr "13xx: Частота ГНЧ" + +#: src/engine/sysDef.cpp:771 +msgid "NES (Ricoh 2A03)" +msgstr "" + +#: src/engine/sysDef.cpp:772 +msgid "" +"also known as Famicom in Japan, it's the most well-known game console of the " +"'80s." +msgstr "" +"также известная в Японии как Famicom. Самая известная игровая консоль 80-ых." + +#: src/engine/sysDef.cpp:773 src/gui/waveEdit.cpp:31 src/gui/waveEdit.cpp:217 +#: src/gui/insEdit.cpp:200 src/gui/insEdit.cpp:324 src/gui/insEdit.cpp:658 +msgid "Triangle" +msgstr "Треуг. волна" + +#: src/engine/sysDef.cpp:773 src/engine/sysDef.cpp:2100 +#: src/gui/insEdit.cpp:2629 +msgid "DPCM" +msgstr "ДИКМ" + +#: src/engine/sysDef.cpp:779 src/engine/sysDef.cpp:2106 +msgid "11xx: Write to delta modulation counter (0 to 7F)" +msgstr "11xx: Запись в регистр дельта-счётчика (0-7F)" + +#: src/engine/sysDef.cpp:780 src/engine/sysDef.cpp:1068 +msgid "12xx: Set duty cycle/noise mode (pulse: 0 to 3; noise: 0 or 1)" +msgstr "12xx: Скважность/режим шума (меандр: 0-3; шум: 0 или 1)" + +#: src/engine/sysDef.cpp:781 src/engine/sysDef.cpp:2108 +msgid "13xy: Sweep up (x: time; y: shift)" +msgstr "13xy: Аппаратное портаменто вверх (x: время; y: сдвиг)" + +#: src/engine/sysDef.cpp:782 src/engine/sysDef.cpp:2109 +msgid "14xy: Sweep down (x: time; y: shift)" +msgstr "14xy: Аппаратное портаменто вниз (x: время; y: сдвиг)" + +#: src/engine/sysDef.cpp:783 src/engine/sysDef.cpp:2110 +msgid "" +"15xx: Set envelope mode (0: envelope, 1: length, 2: looping, 3: constant)" +msgstr "15xx: Режим огибающей (0: огибающая, 1: длина, 2: цикл, 3: постоянная)" + +#: src/engine/sysDef.cpp:784 src/engine/sysDef.cpp:2111 +msgid "16xx: Set length counter (refer to manual for a list of values)" +msgstr "16xx: Счётчик длины (список значений см. в инструкции)" + +#: src/engine/sysDef.cpp:785 src/engine/sysDef.cpp:2112 +msgid "17xx: Set frame counter mode (0: 4-step, 1: 5-step)" +msgstr "17xx: Режим счётчика кадров (0: 4 шага, 1: 5 шагов)" + +#: src/engine/sysDef.cpp:786 src/engine/sysDef.cpp:2113 +msgid "18xx: Select PCM/DPCM mode (0: PCM; 1: DPCM)" +msgstr "18xx: Выбрать режим ИКМ/ДИКМ (0: ИКМ; 1: ДИКМ)" + +#: src/engine/sysDef.cpp:787 src/engine/sysDef.cpp:2114 +msgid "19xx: Set triangle linear counter (0 to 7F; 80 and higher halt)" +msgstr "" +"19xx: Линейный счётчик треуг. волны (0-7F; 80 и выше мгновенно останавливают " +"волну)" + +#: src/engine/sysDef.cpp:788 src/engine/sysDef.cpp:2115 +msgid "20xx: Set DPCM frequency (0 to F)" +msgstr "20xx: Частота ДИКМ (0-F)" + +#: src/engine/sysDef.cpp:793 +msgid "NES + Konami VRC7" +msgstr "" + +#: src/engine/sysDef.cpp:799 +msgid "Famicom Disk System" +msgstr "" + +#: src/engine/sysDef.cpp:805 +msgid "Commodore 64 (SID 6581)" +msgstr "" + +#: src/engine/sysDef.cpp:806 +msgid "" +"this computer is powered by the SID chip, which had synthesizer features " +"like a filter and ADSR." +msgstr "" +"в этом компьютере стоит чип SID, который имеет продвинутый функционал, " +"присущий синтезаторам, например, фильтр и ADSR-огибающую." + +#: src/engine/sysDef.cpp:817 +msgid "Commodore 64 (SID 8580)" +msgstr "" + +#: src/engine/sysDef.cpp:818 +msgid "" +"this computer is powered by the SID chip, which had synthesizer features " +"like a filter and ADSR.\n" +"this is the newer revision of the chip." +msgstr "" +"в этом компьютере стоит чип SID, который имеет продвинутый функционал, " +"присущий синтезаторам, например, фильтр и ADSR-огибающую.\n" +"Это более новая ревизия чипа." + +#: src/engine/sysDef.cpp:829 +msgid "DefleCade" +msgstr "" + +#: src/engine/sysDef.cpp:835 +msgid "Neo Geo CD" +msgstr "" + +#: src/engine/sysDef.cpp:836 +msgid "" +"like Neo Geo, but lacking the ADPCM-B channel since they couldn't connect " +"the pins." +msgstr "" +"как Neo Geo, но без канала АДИКМ-B, потому что они не смогли подключить пины." + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1173 +#: src/engine/sysDef.cpp:1185 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1443 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +#: src/engine/sysDef.cpp:2006 +msgid "FM 1" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:891 +#: src/engine/sysDef.cpp:903 src/engine/sysDef.cpp:1032 +#: src/engine/sysDef.cpp:1097 src/engine/sysDef.cpp:1109 +#: src/engine/sysDef.cpp:1122 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1546 +#: src/engine/sysDef.cpp:1559 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:1693 src/engine/sysDef.cpp:1849 +#: src/engine/sysDef.cpp:1861 src/engine/sysDef.cpp:2006 +msgid "FM 2" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1173 +#: src/engine/sysDef.cpp:1185 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1443 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:2006 +msgid "FM 3" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1546 +#: src/engine/sysDef.cpp:1559 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:1693 src/engine/sysDef.cpp:1849 +#: src/engine/sysDef.cpp:1861 src/engine/sysDef.cpp:2006 +msgid "FM 4" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:862 src/engine/sysDef.cpp:927 +#: src/engine/sysDef.cpp:943 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "PSG 1" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:862 src/engine/sysDef.cpp:927 +#: src/engine/sysDef.cpp:943 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "PSG 2" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:862 src/engine/sysDef.cpp:927 +#: src/engine/sysDef.cpp:943 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "PSG 3" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 1" +msgstr "АДИКМ-A 1" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 2" +msgstr "АДИКМ-A 2" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 3" +msgstr "АДИКМ-A 3" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 4" +msgstr "АДИКМ-A 4" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 5" +msgstr "АДИКМ-A 5" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 6" +msgstr "АДИКМ-A 6" + +#: src/engine/sysDef.cpp:847 +msgid "Neo Geo CD Extended Channel 2" +msgstr "Neo Geo CD расширенный 2-ой канал" + +#: src/engine/sysDef.cpp:848 +msgid "" +"like Neo Geo, but lacking the ADPCM-B channel since they couldn't connect " +"the pins.\n" +"this one is in Extended Channel mode, which turns the second FM channel into " +"four operators with independent notes/frequencies." +msgstr "" +"как Neo Geo, но без канала АДИКМ-B, потому что они не смогли подключить " +"пины.\n" +"Это версия в режиме расширенного канала, который превращает второй FM-канал " +"в четыре оператора с независимыми нотами/частотами." + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP1" +msgstr "" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP2" +msgstr "" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP3" +msgstr "" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP4" +msgstr "" + +#: src/engine/sysDef.cpp:860 src/gui/sysConf.cpp:913 +msgid "AY-3-8910" +msgstr "" + +#: src/engine/sysDef.cpp:861 +msgid "" +"this chip is everywhere! ZX Spectrum, MSX, Amstrad CPC, Intellivision, " +"Vectrex...\n" +"the discovery of envelope bass helped it beat the SN76489 with ease." +msgstr "" +"этот чип везде! ZX Spectrum, MSX, Amstrad CPC, Intellivision, Vectrex...\n" +"Открытие метода использования огибающей для баса легко позволило этому чипу " +"победить SN76489." + +#: src/engine/sysDef.cpp:872 +msgid "Amiga" +msgstr "" + +#: src/engine/sysDef.cpp:873 +msgid "" +"a computer from the '80s with full sampling capabilities, giving it a sound " +"ahead of its time." +msgstr "" +"компьютер из 80-ых с полноценными возможностями сэмплирования, что давало " +"ему звучание, опережавшее его эпоху." + +#: src/engine/sysDef.cpp:881 +msgid "10xx: Toggle filter (0 disables; 1 enables)" +msgstr "10xx: Переключить фильтр (0 выкл.; 1 вкл.)" + +#: src/engine/sysDef.cpp:882 +msgid "11xx: Toggle AM with next channel" +msgstr "11xx: Переключить АМ со следующим каналом" + +#: src/engine/sysDef.cpp:883 +msgid "12xx: Toggle period modulation with next channel" +msgstr "12xx: Переключить модуляцию периода со следующим каналом" + +#: src/engine/sysDef.cpp:884 +msgid "13xx: Set waveform" +msgstr "13xx: Волна" + +#: src/engine/sysDef.cpp:889 +msgid "Yamaha YM2151 (OPM)" +msgstr "" + +#: src/engine/sysDef.cpp:890 +msgid "" +"this was Yamaha's first integrated FM chip.\n" +"it was used in several synthesizers, computers and arcade boards." +msgstr "" +"этот чип был первой интегральной микросхемой Yamaha.\n" +"Он использовался в нескольких синтезаторах, компьютерах и аркадных автоматах." + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1279 src/engine/sysDef.cpp:1332 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1370 +#: src/engine/sysDef.cpp:1383 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +#: src/engine/sysDef.cpp:2006 +msgid "FM 5" +msgstr "" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:2006 +msgid "FM 6" +msgstr "" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:1032 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1279 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:2006 +msgid "FM 7" +msgstr "" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:1032 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:2006 +msgid "FM 8" +msgstr "" + +#: src/engine/sysDef.cpp:901 +msgid "Yamaha YM2612 (OPN2)" +msgstr "" + +#: src/engine/sysDef.cpp:902 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer)." +msgstr "" +"этот чип в основном известен по причине того, что он находился в Sega " +"Genesis (но он также использовался в компьютере FM Towns)." + +#: src/engine/sysDef.cpp:913 +msgid "Atari TIA" +msgstr "" + +#: src/engine/sysDef.cpp:914 +msgid "" +"it's a challenge to make music on this chip which barely has musical " +"capabilities..." +msgstr "" +"на этом чипе очень сложно писать музыку, ведь он едва ли обладает " +"музыкальными возможностями..." + +#: src/engine/sysDef.cpp:925 +msgid "Philips SAA1099" +msgstr "" + +#: src/engine/sysDef.cpp:926 +msgid "" +"supposedly an upgrade from the AY-3-8910, this was present on the Creative " +"Music System (Game Blaster) and SAM Coupé." +msgstr "" +"этот чип, судя по всему, улучшенная версия AY-3-8910, использовался в " +"Creative Music System (Game Blaster) и SAM Coupé." + +#: src/engine/sysDef.cpp:927 +msgid "PSG 4" +msgstr "" + +#: src/engine/sysDef.cpp:927 +msgid "PSG 5" +msgstr "" + +#: src/engine/sysDef.cpp:927 +msgid "PSG 6" +msgstr "" + +#: src/engine/sysDef.cpp:934 +msgid "10xy: Set channel mode (x: noise; y: tone)" +msgstr "10xy: Режим канала (x: шум; y: тон)" + +#: src/engine/sysDef.cpp:935 +msgid "11xx: Set noise frequency" +msgstr "11xx: Частота шума" + +#: src/engine/sysDef.cpp:936 +msgid "12xx: Setup envelope (refer to docs for more information)" +msgstr "12xx: Настройка огибающей (см. инструкцию)" + +#: src/engine/sysDef.cpp:941 +msgid "Microchip AY8930" +msgstr "" + +#: src/engine/sysDef.cpp:942 +msgid "" +"an improved version of the AY-3-8910 with a bigger frequency range, duty " +"cycles, configurable noise and per-channel envelopes!" +msgstr "" +"улучшенная версия AY-3-8910 с большим диапазоном частот, настройкой " +"скважности, настраиваемым шумом и огибающей на каждый канал!" + +#: src/engine/sysDef.cpp:953 +msgid "Commodore VIC-20" +msgstr "" + +#: src/engine/sysDef.cpp:954 +msgid "" +"Commodore's successor to the PET.\n" +"its square wave channels are more than just square..." +msgstr "" +"Компьютер Commodore, вышедший после PET.\n" +"его каналы квадратных волн могут играть не только лишь квадратные волны..." + +#: src/engine/sysDef.cpp:955 src/gui/settings.cpp:136 src/gui/settings.cpp:206 +#: src/gui/settings.cpp:3970 +msgid "Low" +msgstr "Низкое" + +#: src/engine/sysDef.cpp:955 +msgid "Mid" +msgstr "" + +#: src/engine/sysDef.cpp:955 src/gui/settings.cpp:135 src/gui/settings.cpp:208 +#: src/gui/settings.cpp:3971 +msgid "High" +msgstr "Высокое" + +#: src/engine/sysDef.cpp:964 +msgid "Commodore PET" +msgstr "" + +#: src/engine/sysDef.cpp:965 +msgid "" +"one channel of 1-bit wavetable which is better (and worse) than the PC " +"Speaker." +msgstr "" +"один канал 1-битной волновой таблицы, что лучше (или хуже), чем PC Speaker " +"(пищалка)." + +#: src/engine/sysDef.cpp:966 src/engine/sysDef.cpp:1262 +#: src/engine/sysDef.cpp:2100 src/gui/editControls.cpp:433 +#: src/gui/settings.cpp:4017 src/gui/settings.cpp:4095 +msgid "Wave" +msgstr "Волн. табл." + +#: src/engine/sysDef.cpp:975 src/gui/settings.cpp:4052 +msgid "SNES" +msgstr "" + +#: src/engine/sysDef.cpp:976 +msgid "FM? nah... samples! Nintendo's answer to Sega." +msgstr "FM? не... сэмплы! Ответ Nintendo в сторону Sega." + +#: src/engine/sysDef.cpp:983 +msgid "18xx: Enable echo buffer" +msgstr "18xx: Включить эхо-буфер" + +#: src/engine/sysDef.cpp:984 +msgid "19xx: Set echo delay (0 to F)" +msgstr "19xx: Задержка эхо (0-F)" + +#: src/engine/sysDef.cpp:985 +msgid "1Axx: Set left echo volume" +msgstr "1Axx: Громкость эхо на левом канале" + +#: src/engine/sysDef.cpp:986 +msgid "1Bxx: Set right echo volume" +msgstr "1Bxx: Громкость эхо на правом канале" + +#: src/engine/sysDef.cpp:987 +msgid "1Cxx: Set echo feedback" +msgstr "1Cxx: Обратная связь эхо" + +#: src/engine/sysDef.cpp:988 +msgid "1Exx: Set dry output volume (left)" +msgstr "1Exx: Громкость канала (лево)" + +#: src/engine/sysDef.cpp:989 +msgid "1Fxx: Set dry output volume (right)" +msgstr "1Fxx: Громкость канала (право)" + +#: src/engine/sysDef.cpp:990 +msgid "30xx: Set echo filter coefficient 0" +msgstr "30xx: Коэффициент 0 фильтра эхо" + +#: src/engine/sysDef.cpp:991 +msgid "31xx: Set echo filter coefficient 1" +msgstr "31xx: Коэффициент 1 фильтра эхо" + +#: src/engine/sysDef.cpp:992 +msgid "32xx: Set echo filter coefficient 2" +msgstr "32xx: Коэффициент 2 фильтра эхо" + +#: src/engine/sysDef.cpp:993 +msgid "33xx: Set echo filter coefficient 3" +msgstr "33xx: Коэффициент 3 фильтра эхо" + +#: src/engine/sysDef.cpp:994 +msgid "34xx: Set echo filter coefficient 4" +msgstr "34xx: Коэффициент 4 фильтра эхо" + +#: src/engine/sysDef.cpp:995 +msgid "35xx: Set echo filter coefficient 5" +msgstr "35xx: Коэффициент 5 фильтра эхо" + +#: src/engine/sysDef.cpp:996 +msgid "36xx: Set echo filter coefficient 6" +msgstr "36xx: Коэффициент 6 фильтра эхо" + +#: src/engine/sysDef.cpp:997 +msgid "37xx: Set echo filter coefficient 7" +msgstr "37xx: Коэффициент 7 фильтра эхо" + +#: src/engine/sysDef.cpp:1002 +msgid "12xx: Toggle echo on this channel" +msgstr "12xx: Переключить эхо наэтом канале" + +#: src/engine/sysDef.cpp:1003 +msgid "13xx: Toggle pitch modulation" +msgstr "13xx: Переключить частотную модуляцию" + +#: src/engine/sysDef.cpp:1004 +msgid "14xy: Toggle invert (x: left; y: right)" +msgstr "14xy: Переключить инвертирование сигнала (x: левый; y: правый)" + +#: src/engine/sysDef.cpp:1005 +msgid "" +"15xx: Set envelope mode (0: ADSR, 1: gain/direct, 2: dec, 3: exp, 4: inc, 5: " +"bent)" +msgstr "" +"15xx: Режим огибающей (0: ADSR, 1: усиление/прямой, 2: спад, 3: " +"экспоненциальная, 4: нарастание, 5: изогн.)" + +#: src/engine/sysDef.cpp:1006 +msgid "16xx: Set gain (00 to 7F if direct; 00 to 1F otherwise)" +msgstr "16xx: Усиление (00-7F в прямом режиме; иначе 00-1F)" + +#: src/engine/sysDef.cpp:1007 +msgid "1Dxx: Set noise frequency (00 to 1F)" +msgstr "1Dxx: Частота шума (00-1F)" + +#: src/engine/sysDef.cpp:1008 +msgid "20xx: Set attack (0 to F)" +msgstr "20xx: Атака (0-F)" + +#: src/engine/sysDef.cpp:1009 +msgid "21xx: Set decay (0 to 7)" +msgstr "21xx: Спад (0-7)" + +#: src/engine/sysDef.cpp:1010 +msgid "22xx: Set sustain (0 to 7)" +msgstr "22xx: Сустейн (0-7)" + +#: src/engine/sysDef.cpp:1011 +msgid "23xx: Set release (00 to 1F)" +msgstr "23xx: Релиз (00-1F)" + +#: src/engine/sysDef.cpp:1016 +msgid "Konami VRC6" +msgstr "" + +#: src/engine/sysDef.cpp:1017 +msgid "an expansion chip for the Famicom, featuring a quirky sawtooth channel." +msgstr "" +"чип расширения для Famicom, содержащий своеобразный канал пилообразной волны." + +#: src/engine/sysDef.cpp:1018 +msgid "VRC6 1" +msgstr "" + +#: src/engine/sysDef.cpp:1018 +msgid "VRC6 2" +msgstr "" + +#: src/engine/sysDef.cpp:1018 +msgid "VRC6 Saw" +msgstr "VRC6 пила" + +#: src/engine/sysDef.cpp:1024 src/engine/sysDef.cpp:2092 +msgid "12xx: Set duty cycle (pulse: 0 to 7)" +msgstr "12xx: Скважность (меандр: 0-7)" + +#: src/engine/sysDef.cpp:1030 +msgid "Yamaha YM2413 (OPLL)" +msgstr "" + +#: src/engine/sysDef.cpp:1031 +msgid "" +"cost-reduced version of the OPL with 16 patches and only one of them is user-" +"configurable." +msgstr "" +"удешевлённая версия OPL с 16-ю патчами, причём только один из них доступен " +"для настройки пользователем." + +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1173 +#: src/engine/sysDef.cpp:1185 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:2006 +msgid "FM 9" +msgstr "" + +#: src/engine/sysDef.cpp:1042 +msgid "Famicom Disk System (chip)" +msgstr "Famicom Disk System (чип)" + +#: src/engine/sysDef.cpp:1043 +msgid "a disk drive for the Famicom which also contains one wavetable channel." +msgstr "" +"дисковый привод для Famicom, также содержащий один канал волновых таблиц." + +#: src/engine/sysDef.cpp:1044 src/gui/settings.cpp:4039 +msgid "FDS" +msgstr "" + +#: src/engine/sysDef.cpp:1051 +msgid "11xx: Set modulation depth" +msgstr "11xx: Глубина модуляции" + +#: src/engine/sysDef.cpp:1052 +msgid "12xy: Set modulation speed high byte (x: enable; y: value)" +msgstr "12xy: Старший байт скорости модуляции (x: вкл.; y: значение)" + +#: src/engine/sysDef.cpp:1053 +msgid "13xx: Set modulation speed low byte" +msgstr "13xx: Младший байт скорости модуляции" + +#: src/engine/sysDef.cpp:1054 +msgid "14xx: Set modulator position" +msgstr "14xx: Положение модулятора" + +#: src/engine/sysDef.cpp:1055 +msgid "15xx: Set modulator table to waveform" +msgstr "15xx: Назначить таблицу модуляции волны" + +#: src/engine/sysDef.cpp:1060 +msgid "MMC5" +msgstr "" + +#: src/engine/sysDef.cpp:1061 +msgid "" +"an expansion chip for the Famicom, featuring a little-known PCM channel." +msgstr "чип расширения для Famicom, имеющий малоизвестный канал ИКМ-сэмплов." + +#: src/engine/sysDef.cpp:1073 src/gui/settings.cpp:4041 +msgid "Namco 163" +msgstr "Namco 163" + +#: src/engine/sysDef.cpp:1074 +msgid "an expansion chip for the Famicom, with full wavetable." +msgstr "чип расширения для Famicom, полностью на волновых таблицах." + +#: src/engine/sysDef.cpp:1081 +msgid "18xx: Change channel limits (0 to 7, x + 1)" +msgstr "18xx: Изменить лимит каналов (0-7, x + 1)" + +#: src/engine/sysDef.cpp:1082 +msgid "20xx: Load a waveform into memory" +msgstr "20xx: Загрузить волну в память" + +#: src/engine/sysDef.cpp:1083 +msgid "21xx: Set position for wave load" +msgstr "21xx: Задать начальное смещение для загрузки волны" + +#: src/engine/sysDef.cpp:1086 +msgid "10xx: Select waveform" +msgstr "10xx: Выбрать волну" + +#: src/engine/sysDef.cpp:1087 +msgid "11xx: Set waveform position in RAM" +msgstr "11xx: Задать положение волны в ОЗУ" + +#: src/engine/sysDef.cpp:1088 +msgid "12xx: Set waveform length in RAM (04 to FC in steps of 4)" +msgstr "12xx: Задать длину волны в ОЗУ (04-FC с шагом 4)" + +#: src/engine/sysDef.cpp:1089 +msgid "15xx: Set waveform load position" +msgstr "15xx: Задать положение для загрузки волны" + +#: src/engine/sysDef.cpp:1090 +msgid "16xx: Set waveform load length (04 to FC in steps of 4)" +msgstr "16xx: Задать длину загружаемой волны (04-FC с шагом 4)" + +#: src/engine/sysDef.cpp:1095 +msgid "Yamaha YM2203 (OPN)" +msgstr "" + +#: src/engine/sysDef.cpp:1096 +msgid "" +"cost-reduced version of the OPM with a different register layout and no " +"stereo...\n" +"...but it has a built-in AY-3-8910! (actually an YM2149)" +msgstr "" +"удешевлённая версия OPM с другим расположением регистров и отсутствием " +"стерео...\n" +"...но у неё внутри AY-3-8910! (на самом деле YM2149)" + +#: src/engine/sysDef.cpp:1107 +msgid "Yamaha YM2203 (OPN) Extended Channel 3" +msgstr "Yamaha YM2203 (OPN) расширенный 3-ий канал" + +#: src/engine/sysDef.cpp:1108 +msgid "" +"cost-reduced version of the OPM with a different register layout and no " +"stereo...\n" +"...but it has a built-in AY-3-8910! (actually an YM2149)\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies" +msgstr "" +"удешевлённая версия OPM с другим расположением регистров и отсутствием " +"стерео...\n" +"...но у неё внутри AY-3-8910! (на самом деле YM2149)\n" +"Это версия в режиме расширенного канала, который превращает третий FM-канал " +"в четыре оператора с независимыми нотами/частотами." + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP1" +msgstr "" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP2" +msgstr "" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP3" +msgstr "" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP4" +msgstr "" + +#: src/engine/sysDef.cpp:1120 +msgid "Yamaha YM2203 (OPN) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1121 +msgid "" +"cost-reduced version of the OPM with a different register layout and no " +"stereo...\n" +"...but it has a built-in AY-3-8910! (actually an YM2149)\n" +"CSM blah blah" +msgstr "" + +#: src/engine/sysDef.cpp:1122 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1383 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1559 src/engine/sysDef.cpp:1861 +msgid "CSM Timer" +msgstr "CSM таймер" + +#: src/engine/sysDef.cpp:1133 +msgid "Yamaha YM2608 (OPNA)" +msgstr "" + +#: src/engine/sysDef.cpp:1134 +msgid "" +"OPN but twice the FM channels, stereo makes a come-back and has rhythm and " +"ADPCM channels." +msgstr "" +"OPN, но вдвое больше FM-каналов, возвращённое стерео, ритм- и АДИКМ каналы." + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1481 +#: src/gui/insEdit.cpp:3302 src/gui/insEdit.cpp:3624 +msgid "Kick" +msgstr "Бас-барабан" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:210 src/gui/insEdit.cpp:218 +msgid "Snare" +msgstr "Рабочий барабан" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:212 src/gui/insEdit.cpp:220 +#: src/gui/insEdit.cpp:1909 src/gui/insEdit.cpp:2014 +msgid "Top" +msgstr "Макс." + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:213 src/gui/insEdit.cpp:219 +msgid "HiHat" +msgstr "Хай-хэт" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:211 +msgid "Tom" +msgstr "Там-там" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 +msgid "Rim" +msgstr "Римшот" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:1693 +msgid "ADPCM" +msgstr "АДИКМ" + +#: src/engine/sysDef.cpp:1145 +msgid "Yamaha YM2608 (OPNA) Extended Channel 3" +msgstr "Yamaha YM2608 (OPNA) расширенный 3-ий канал" + +#: src/engine/sysDef.cpp:1146 +msgid "" +"OPN but twice the FM channels, stereo makes a come-back and has rhythm and " +"ADPCM channels.\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies" +msgstr "" +"OPN, но вдвое больше FM-каналов, возвращённое стерео, ритм- и АДИКМ каналы.\n" +"Это версия в режиме расширенного канала, который превращает третий FM-канал " +"в четыре оператора с независимыми нотами/частотами." + +#: src/engine/sysDef.cpp:1158 +msgid "Yamaha YM2608 (OPNA) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1159 +msgid "" +"OPN but twice the FM channels, stereo makes a come-back and has rhythm and " +"ADPCM channels.\n" +"CSM blah blah" +msgstr "" + +#: src/engine/sysDef.cpp:1171 +msgid "Yamaha YM3526 (OPL)" +msgstr "" + +#: src/engine/sysDef.cpp:1172 +msgid "" +"OPN, but what if you only had two operators, no stereo, no detune and a " +"lower ADSR parameter range?" +msgstr "" +"OPN, но что если у него всего два оператора, нет стерео, нет расстройки и " +"меньший диапазон регулировки параметров ADSR?" + +#: src/engine/sysDef.cpp:1183 +msgid "Yamaha YM3812 (OPL2)" +msgstr "" + +#: src/engine/sysDef.cpp:1184 +msgid "OPL, but what if you had more waveforms to choose than the normal sine?" +msgstr "OPL, но что если у него есть ещё волны, помимо синусоиды?" + +#: src/engine/sysDef.cpp:1195 +msgid "Yamaha YMF262 (OPL3)" +msgstr "" + +#: src/engine/sysDef.cpp:1196 +msgid "" +"OPL2, but what if you had twice the channels, 4-op mode, stereo and even " +"more waveforms?" +msgstr "" +"OPL2, но что если у него вдвое больше каналов, 4-оп режим, стерео и ещё " +"больше волн?" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 1" +msgstr "4ОП 1" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 3" +msgstr "4ОП 3" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 5" +msgstr "4ОП 5" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 7" +msgstr "4ОП 7" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 9" +msgstr "4ОП 9" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 10" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 11" +msgstr "4ОП 11" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 12" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 13" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 14" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 15" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:2006 +msgid "FM 16" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:2006 +msgid "FM 17" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:2006 +msgid "FM 18" +msgstr "" + +#: src/engine/sysDef.cpp:1208 src/gui/settings.cpp:4051 +msgid "MultiPCM" +msgstr "MultiPCM" + +#: src/engine/sysDef.cpp:1209 +msgid "" +"how many channels of PCM do you want?\n" +"MultiPCM: yes" +msgstr "" +"Сколько каналов ИКМ-сэмплов вам нужно?\n" +"MultiPCM: да" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 17" +msgstr "Канал 17" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 18" +msgstr "Канал 18" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 19" +msgstr "Канал 19" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 20" +msgstr "Канал 20" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 21" +msgstr "Канал 21" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 22" +msgstr "Канал 22" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 23" +msgstr "Канал 23" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 24" +msgstr "Канал 24" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 25" +msgstr "Канал 25" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 26" +msgstr "Канал 26" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 27" +msgstr "Канал 27" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 28" +msgstr "Канал 28" + +#: src/engine/sysDef.cpp:1217 +msgid "PC Speaker" +msgstr "PC Speaker (пищалка)" + +#: src/engine/sysDef.cpp:1218 +msgid "good luck! you get one square and no volume control." +msgstr "удачи! у вас один канал меандра и нет регулировки громкости." + +#: src/engine/sysDef.cpp:1219 src/engine/sysDef.cpp:1228 +#: src/gui/guiConst.cpp:1394 src/gui/waveEdit.cpp:199 src/gui/insEdit.cpp:183 +#: src/gui/insEdit.cpp:194 src/gui/insEdit.cpp:326 src/gui/insEdit.cpp:656 +msgid "Square" +msgstr "Меандр" + +#: src/engine/sysDef.cpp:1226 +msgid "Pong" +msgstr "" + +#: src/engine/sysDef.cpp:1227 +msgid "please don't use this chip. it was added as a joke." +msgstr "пожалуйста, не используйте этот чип. он был добавлен в качестве шутки." + +#: src/engine/sysDef.cpp:1235 src/gui/settings.cpp:4044 +msgid "POKEY" +msgstr "" + +#: src/engine/sysDef.cpp:1236 +msgid "" +"TIA, but better and more flexible.\n" +"used in the Atari 8-bit family of computers (400/800/XL/XE)." +msgstr "" +"TIA, но лучше и более гибкий.\n" +"использовался в семействе 8-битных компьютеров Atari (400/800/XL/XE)." + +#: src/engine/sysDef.cpp:1243 src/engine/sysDef.cpp:1714 +msgid "10xx: Set waveform (0 to 7)" +msgstr "10xx: Волна (0-7)" + +#: src/engine/sysDef.cpp:1244 +msgid "11xx: Set AUDCTL" +msgstr "11xx: Установить AUDCTL" + +#: src/engine/sysDef.cpp:1245 +msgid "12xx: Toggle two-tone mode" +msgstr "12xx: Переключить двухголосый режим" + +#: src/engine/sysDef.cpp:1250 +msgid "Ricoh RF5C68" +msgstr "" + +#: src/engine/sysDef.cpp:1251 +msgid "" +"this is like SNES' sound chip but without interpolation and the rest of nice " +"bits." +msgstr "" +"похоже на звуковой чип SNES, но без интерполяции и других приятных вещей." + +#: src/engine/sysDef.cpp:1260 src/gui/settings.cpp:4046 +msgid "WonderSwan" +msgstr "" + +#: src/engine/sysDef.cpp:1261 +msgid "developed by the makers of the Game Boy and the Virtual Boy..." +msgstr "от создателей Game Boy и Virtual Boy..." + +#: src/engine/sysDef.cpp:1262 +msgid "Wave/PCM" +msgstr "" + +#: src/engine/sysDef.cpp:1262 +msgid "Wave/Sweep" +msgstr "" + +#: src/engine/sysDef.cpp:1262 +msgid "Wave/Noise" +msgstr "" + +#: src/engine/sysDef.cpp:1269 +msgid "11xx: Setup noise mode (0: disabled; 1-8: enabled/tap)" +msgstr "11xx: Настроить режим шума (0: выкл.; 1-8: вкл./отвод)" + +#: src/engine/sysDef.cpp:1270 +msgid "12xx: Setup sweep period (0: disabled; 1-20: enabled/period)" +msgstr "" +"12xx: Настроить период аппаратного портаменто (0: выкл.; 1-20: вкл./период)" + +#: src/engine/sysDef.cpp:1271 +msgid "13xx: Set sweep amount" +msgstr "13xx: Скорость аппаратного портаменто" + +#: src/engine/sysDef.cpp:1277 +msgid "Yamaha YM2414 (OPZ)" +msgstr "" + +#: src/engine/sysDef.cpp:1278 +msgid "" +"like OPM, but with more waveforms, fixed frequency mode and totally... " +"undocumented.\n" +"used in the Yamaha TX81Z and some other synthesizers." +msgstr "" +"как OPM, но с большим количеством волн, режимом фиксированной частоты, и " +"полным... отсутствием сведений о его устройстве.\n" +"использовался в Yamaha TX81Z и некоторых других синтезаторах." + +#: src/engine/sysDef.cpp:1285 +msgid "2Fxx: Toggle hard envelope reset on new notes" +msgstr "2Fxx: Переключить жёсткий перезапуск огибающей на новой ноте" + +#: src/engine/sysDef.cpp:1291 src/gui/settings.cpp:4069 +msgid "Pokémon Mini" +msgstr "" + +#: src/engine/sysDef.cpp:1292 +msgid "this one is like PC Speaker but has duty cycles." +msgstr "Похож на PC Speaker, но имеет настройку скважности." + +#: src/engine/sysDef.cpp:1293 src/gui/settings.cpp:4092 src/gui/waveEdit.cpp:33 +msgid "Pulse" +msgstr "Меандр" + +#: src/engine/sysDef.cpp:1300 +msgid "SegaPCM" +msgstr "" + +#: src/engine/sysDef.cpp:1301 +msgid "" +"used in some Sega arcade boards (like OutRun), and usually paired with a " +"YM2151." +msgstr "" +"использовался в некоторых аркадных автоматах Sega (например, OutRun), и " +"обычно использовался в связке с YM2151." + +#: src/engine/sysDef.cpp:1312 src/gui/settings.cpp:4040 +msgid "Virtual Boy" +msgstr "" + +#: src/engine/sysDef.cpp:1313 +msgid "" +"a console which failed to sell well due to its headache-inducing features." +msgstr "" +"консоль, продажи которой не удались из-за того, что её особенности вызывали " +"головную боль у игроков." + +#: src/engine/sysDef.cpp:1321 +msgid "11xx: Set noise length (0 to 7)" +msgstr "11xx: Длина шума (0-7)" + +#: src/engine/sysDef.cpp:1322 +msgid "" +"12xy: Setup envelope (x: enabled/loop (1: enable, 3: enable+loop); y: speed/" +"direction (0-7: down, 8-F: up))" +msgstr "" +"12xy: Настройка огибающей (x: вкл./цикл (1: вкл., 3: вкл.+цикл); y: скорость/" +"направление (0-7: вниз, 8-F: вверх))" + +#: src/engine/sysDef.cpp:1323 +msgid "13xy: Setup sweep (x: speed; y: shift; channel 5 only)" +msgstr "" +"13xy: Настройка аппаратного портаменто (x: скорость; y: количество; только " +"для 5-го канала)" + +#: src/engine/sysDef.cpp:1324 +msgid "" +"14xy: Setup modulation (x: enabled/loop (1: enable, 3: enable+loop); y: " +"speed; channel 5 only)" +msgstr "" +"14xy: Настроить модуляцию (x: вкл./цикл (1: вкл., 3: вкл.+цикл); y: " +"скорость; только для 5-го канала)" + +#: src/engine/sysDef.cpp:1325 +msgid "15xx: Set modulation waveform (x: wavetable; channel 5 only)" +msgstr "" +"15xx: Настройка волны модулятора (x: волновая таблица; только для 5-го " +"канала)" + +#: src/engine/sysDef.cpp:1330 +msgid "Konami VRC7" +msgstr "" + +#: src/engine/sysDef.cpp:1331 +msgid "" +"like OPLL, but even more cost reductions applied. three FM channels went " +"missing, and drums mode did as well..." +msgstr "" + +#: src/engine/sysDef.cpp:1342 +msgid "Yamaha YM2610B (OPNB2)" +msgstr "" + +#: src/engine/sysDef.cpp:1343 +msgid "" +"so Taito asked Yamaha if they could get the two missing FM channels back, " +"and Yamaha gladly provided them with this chip." +msgstr "" +"Taito попросили Yamaha вернуть два отсутствующих FM-канала, и Yamaha с " +"радостью предоставила им этот чип." + +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/gui/settings.cpp:4061 +msgid "ADPCM-B" +msgstr "АДИКМ-B" + +#: src/engine/sysDef.cpp:1354 +msgid "ZX Spectrum Beeper" +msgstr "ZX Spectrum пищалка" + +#: src/engine/sysDef.cpp:1355 +msgid "" +"the ZX Spectrum only had a basic beeper capable of...\n" +"...a bunch of thin pulses and tons of other interesting stuff!\n" +"Furnace provides a thin pulse system." +msgstr "" +"ZX Spectrum имел только пищалку, способную на...\n" +"...несколько \"тонких\" прямоугольных волн и множество других интересных " +"вещей!\n" +"Furnace предоставляет систему с \"тонкими\" прямоугольными волнами." + +#: src/engine/sysDef.cpp:1362 src/engine/sysDef.cpp:1950 +msgid "12xx: Set pulse width" +msgstr "12xx: Скважность" + +#: src/engine/sysDef.cpp:1363 +msgid "17xx: Trigger overlay drum" +msgstr "17xx: Запуск перекрывающего ударного инструмента" + +#: src/engine/sysDef.cpp:1368 +msgid "Yamaha YM2612 (OPN2) Extended Channel 3" +msgstr "Yamaha YM2612 (OPN2) расширенный 3-ий канал" + +#: src/engine/sysDef.cpp:1369 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies." +msgstr "" +"этот чип в основном известен по причине того, что он находился в Sega " +"Genesis (но он также использовался в компьютере FM Towns).\n" +"Это версия в режиме расширенного канала, который превращает третий FM-канал " +"в четыре оператора с независимыми нотами/частотами." + +#: src/engine/sysDef.cpp:1381 +msgid "Yamaha YM2612 (OPN2) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1382 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this one includes CSM mode control for special effects on Channel 3." +msgstr "" +"этот чип в основном известен по причине того, что он находился в Sega " +"Genesis (но он также использовался в компьютере FM Towns).\n" +"У этой версии есть контроль режима CSM для специальных эффектов на третьем " +"канале." + +#: src/engine/sysDef.cpp:1394 src/gui/settings.cpp:4042 +msgid "Konami SCC" +msgstr "" + +#: src/engine/sysDef.cpp:1395 +msgid "" +"a wavetable chip made by Konami for use with the MSX.\n" +"the last channel shares its wavetable with the previous one though." +msgstr "" +"чип с волновыми таблицами, сделанный Konami для использования с MSX.\n" +"правда, последний и предпоследний каналы используют одну и ту же таблицу." + +#: src/engine/sysDef.cpp:1405 +msgid "Yamaha YM3526 (OPL) with drums" +msgstr "Yamaha YM3526 (OPL) с ударными" + +#: src/engine/sysDef.cpp:1406 +msgid "the OPL chip but with drums mode enabled." +msgstr "чип OPL, но с включённым режимом ударных." + +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1693 +msgid "Kick/FM 7" +msgstr "Бочка/FM7" + +#: src/engine/sysDef.cpp:1417 +msgid "Yamaha YM3812 (OPL2) with drums" +msgstr "Yamaha YM3812 (OPL2) с ударными" + +#: src/engine/sysDef.cpp:1418 +msgid "the OPL2 chip but with drums mode enabled." +msgstr "чип OPL2, но с включённым режимом ударных." + +#: src/engine/sysDef.cpp:1429 +msgid "Yamaha YMF262 (OPL3) with drums" +msgstr "Yamaha YMF262 (OPL3) с ударными" + +#: src/engine/sysDef.cpp:1430 +msgid "the OPL3 chip but with drums mode enabled." +msgstr "чип OPL3, но с включённым режимом ударных." + +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1631 +msgid "Kick/FM 16" +msgstr "Бочка/FM16" + +#: src/engine/sysDef.cpp:1441 +msgid "Yamaha YM2610 (OPNB)" +msgstr "" + +#: src/engine/sysDef.cpp:1442 +msgid "" +"this chip was used in SNK's Neo Geo arcade board and video game console.\n" +"it's like OPNA but the rhythm channels are ADPCM channels and two FM " +"channels went missing." +msgstr "" +"этот чип использовался в аркадном автомате и игровой консоли Neo Geo от " +"SNK.\n" +"похож на OPNA, но ритм-каналы теперь стали АДИКМ-каналами, и пропали два FM-" +"канала." + +#: src/engine/sysDef.cpp:1453 +msgid "Yamaha YM2610 (OPNB) Extended Channel 2" +msgstr "Yamaha YM2610 (OPNB) расширенный 2-ой канал" + +#: src/engine/sysDef.cpp:1454 +msgid "" +"this chip was used in SNK's Neo Geo arcade board and video game console.\n" +"it's like OPNA but the rhythm channels are ADPCM channels and two FM " +"channels went missing.\n" +"this one is in Extended Channel mode, which turns the second FM channel into " +"four operators with independent notes/frequencies." +msgstr "" +"этот чип использовался в аркадном автомате и игровой консоли Neo Geo от " +"SNK.\n" +"похож на OPNA, но ритм-каналы теперь стали АДИКМ-каналами, и пропали два FM-" +"канала.\n" +"Это версия в режиме расширенного канала, который превращает второй FM-канал " +"в четыре оператора с независимыми нотами/частотами." + +#: src/engine/sysDef.cpp:1466 +msgid "Yamaha YM2610 (OPNB) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1467 +msgid "" +"this chip was used in SNK's Neo Geo arcade board and video game console.\n" +"it's like OPNA but the rhythm channels are ADPCM channels and two FM " +"channels went missing.\n" +"this one includes CSM mode control for special effects on Channel 2." +msgstr "" + +#: src/engine/sysDef.cpp:1479 +msgid "Yamaha YM2413 (OPLL) with drums" +msgstr "Yamaha YM2413 (OPLL) с ударными" + +#: src/engine/sysDef.cpp:1480 +msgid "the OPLL chips but with drums mode turned on." +msgstr "" + +#: src/engine/sysDef.cpp:1491 +msgid "3xxx: Load LFSR (0 to FFF)" +msgstr "3xxx: Загрузить в РСЛОС (0-FFF)" + +#: src/engine/sysDef.cpp:1497 +msgid "Atari Lynx" +msgstr "" + +#: src/engine/sysDef.cpp:1498 +msgid "" +"a portable console made by Atari. it has all of Atari's trademark waveforms." +msgstr "" +"портативная игровая консоль от Atari. у неё есть все фирменные волны Atari." + +#: src/engine/sysDef.cpp:1509 +msgid "10xx: Set echo feedback level (00 to FF)" +msgstr "10xx: Уровень обратной связи эхо (00-FF)" + +#: src/engine/sysDef.cpp:1510 +msgid "11xx: Set channel echo level (00 to FF)" +msgstr "11xx: Уровень эхо на канале (00-FF)" + +#: src/engine/sysDef.cpp:1511 +msgid "12xx: Toggle QSound algorithm (0: disabled; 1: enabled)" +msgstr "12xx: Переключить алгоритм QSound (0: выкл.; 1: вкл.)" + +#: src/engine/sysDef.cpp:1513 +msgid "3xxx: Set echo delay buffer length (000 to AA5)" +msgstr "3xxx: Длина буфера задержки эхо (000-AA5)" + +#: src/engine/sysDef.cpp:1519 +msgid "Capcom QSound" +msgstr "" + +#: src/engine/sysDef.cpp:1520 +msgid "" +"used in some of Capcom's arcade boards. surround-like sampled sound with " +"echo." +msgstr "" +"использовался в некоторых аркадных автоматах Capcom. сэмпилрованный звук с " +"эхо и эффектом окружающего звучания." + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +#: src/engine/sysDef.cpp:2056 +msgid "PCM 1" +msgstr "ИКМ 1" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +#: src/engine/sysDef.cpp:2056 +msgid "PCM 2" +msgstr "ИКМ 2" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 3" +msgstr "ИКМ 3" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 4" +msgstr "ИКМ 4" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 5" +msgstr "ИКМ 5" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 6" +msgstr "ИКМ 6" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 7" +msgstr "ИКМ 7" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 8" +msgstr "ИКМ 8" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 9" +msgstr "ИКМ 9" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 10" +msgstr "ИКМ 10" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 11" +msgstr "ИКМ 11" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 12" +msgstr "ИКМ 12" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 13" +msgstr "ИКМ 13" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 14" +msgstr "ИКМ 14" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 15" +msgstr "ИКМ 15" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 16" +msgstr "ИКМ 16" + +#: src/engine/sysDef.cpp:1521 +msgid "ADPCM 1" +msgstr "АДИКМ 1" + +#: src/engine/sysDef.cpp:1521 +msgid "ADPCM 2" +msgstr "АДИКМ 2" + +#: src/engine/sysDef.cpp:1521 +msgid "ADPCM 3" +msgstr "АДИКМ 3" + +#: src/engine/sysDef.cpp:1530 src/gui/settings.cpp:4048 +msgid "VERA" +msgstr "" + +#: src/engine/sysDef.cpp:1531 +msgid "the chip used in a computer design created by The 8-Bit Guy." +msgstr "чип, используемый в модели компьютера, разработанного 8-Bit Guy." + +#: src/engine/sysDef.cpp:1538 +msgid "20xx: Set waveform" +msgstr "20xx: Волна" + +#: src/engine/sysDef.cpp:1539 +msgid "22xx: Set duty cycle (0 to 3F)" +msgstr "22xx: Скважность (0-3F)" + +#: src/engine/sysDef.cpp:1544 +msgid "Yamaha YM2610B (OPNB2) Extended Channel 3" +msgstr "Yamaha YM2610B (OPNB2) расширенный 3-ий канал" + +#: src/engine/sysDef.cpp:1545 +msgid "" +"so Taito asked Yamaha if they could get the two missing FM channels back, " +"and Yamaha gladly provided them with this chip.\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies." +msgstr "" +"Taito попросили Yamaha вернуть два отсутствующих FM-канала, и Yamaha с " +"радостью предоставила им этот чип.\n" +"Это версия в режиме расширенного канала, который превращает третий FM-канал " +"в четыре оператора с независимыми нотами/частотами." + +#: src/engine/sysDef.cpp:1557 +msgid "Yamaha YM2610B (OPNB2) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1558 +msgid "" +"so Taito asked Yamaha if they could get the two missing FM channels back, " +"and Yamaha gladly provided them with this chip.\n" +"CSM blah blah" +msgstr "" + +#: src/engine/sysDef.cpp:1570 +msgid "SegaPCM (compatible 5-channel mode)" +msgstr "SegaPCM (совместимый 5-канальный режим)" + +#: src/engine/sysDef.cpp:1571 +msgid "" +"this is the same thing as SegaPCM, but only exposes 5 of the channels for " +"compatibility with DefleMask." +msgstr "" +"это то же самое, что и SegaPCM, но доступно всего пять каналов для " +"совместимости с DefleMask." + +#: src/engine/sysDef.cpp:1582 +msgid "Seta/Allumer X1-010" +msgstr "" + +#: src/engine/sysDef.cpp:1583 +msgid "" +"a sound chip used in several Seta/Allumer-manufactured arcade boards with " +"too many channels of wavetable sound, which also are capable of sampled " +"sound." +msgstr "" +"звуковой чип, использовавшийся в нескольких аркадных автоматах Seta/Allumer. " +"имеет слишком много каналов волновых таблиц, способных так же воспроизводить " +"сэмплы." + +#: src/engine/sysDef.cpp:1591 +msgid "11xx: Set envelope shape" +msgstr "11xx: Форма огибающей" + +#: src/engine/sysDef.cpp:1592 +msgid "12xx: Set sample bank slot (0 to 7)" +msgstr "12xx: Слот банка сэмплов (0-7)" + +#: src/engine/sysDef.cpp:1596 +msgid "20xx: Set PCM frequency (1 to FF)" +msgstr "20xx: Частота ИКМ (1-FF)" + +#: src/engine/sysDef.cpp:1597 +msgid "" +"22xx: Set envelope mode (bit 0: enable; bit 1: one-shot; bit 2: split shape " +"to L/R; bit 3/5: H.invert right/left; bit 4/6: V.invert right/left)" +msgstr "" +"22xx: Режим огибающей (бит 0: вкл.; бит 1: однокр.; бит 2: разделить форму " +"на лево/право; биты 3/5: Г.инвертир. право/лево; бит 4/6: В.инвертир. право/" +"лево)" + +#: src/engine/sysDef.cpp:1598 +msgid "23xx: Set envelope period" +msgstr "23xx: Период огибающей" + +#: src/engine/sysDef.cpp:1606 +msgid "Konami Bubble System WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1607 +msgid "" +"this is the wavetable part of the Bubble System, which also had two " +"AY-3-8910s." +msgstr "" +"это таблично-волновая часть Bubble System, которая так же имела два " +"AY-3-8910." + +#: src/engine/sysDef.cpp:1619 +msgid "Yamaha YMF278B (OPL4)" +msgstr "" + +#: src/engine/sysDef.cpp:1620 +msgid "like OPL3, but this time it also has a 24-channel version of MultiPCM." +msgstr "как OPL3, но на этот раз также имеется 24-канальная версия MultiPCM." + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 17" +msgstr "ИКМ 17" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 18" +msgstr "ИКМ 18" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 19" +msgstr "ИКМ 19" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 20" +msgstr "ИКМ 20" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 21" +msgstr "ИКМ 21" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 22" +msgstr "ИКМ 22" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 23" +msgstr "ИКМ 23" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 24" +msgstr "ИКМ 24" + +#: src/engine/sysDef.cpp:1629 +msgid "Yamaha YMF278B (OPL4) with drums" +msgstr "Yamaha YMF278B (OPL4) с ударными" + +#: src/engine/sysDef.cpp:1630 +msgid "the OPL4 but with drums mode turned on." +msgstr "OPL4 с включёным режимом ударных." + +#: src/engine/sysDef.cpp:1638 +msgid "11xx: Set filter mode (00 to 03)" +msgstr "11xx: Режим фильтра (00-03)" + +#: src/engine/sysDef.cpp:1639 +msgid "14xx: Set filter coefficient K1 low byte (00 to FF)" +msgstr "14xx: Младший байт коэффициента фильтра K1 (00-FF)" + +#: src/engine/sysDef.cpp:1640 +msgid "15xx: Set filter coefficient K1 high byte (00 to FF)" +msgstr "15xx: Старыший байт коэффициента фильтра K1 (00-FF)" + +#: src/engine/sysDef.cpp:1641 +msgid "16xx: Set filter coefficient K2 low byte (00 to FF)" +msgstr "16xx: Младший байт коэффициента фильтра K2 (00-FF)" + +#: src/engine/sysDef.cpp:1642 +msgid "17xx: Set filter coefficient K2 high byte (00 to FF)" +msgstr "17xx: Старыший байт коэффициента фильтра K2 (00-FF)" + +#: src/engine/sysDef.cpp:1643 +msgid "18xx: Set filter coefficient K1 slide up (00 to FF)" +msgstr "18xx: Нарастание коэффициента фильтра K1 (00-FF)" + +#: src/engine/sysDef.cpp:1644 +msgid "19xx: Set filter coefficient K1 slide down (00 to FF)" +msgstr "19xx: Уменьшение коэффициента фильтра K1 (00-FF)" + +#: src/engine/sysDef.cpp:1645 +msgid "1Axx: Set filter coefficient K2 slide up (00 to FF)" +msgstr "1Axx: Нарастание коэффициента фильтра K2 (00-FF)" + +#: src/engine/sysDef.cpp:1646 +msgid "1Bxx: Set filter coefficient K2 slide down (00 to FF)" +msgstr "1Bxx: Уменьшение коэффициента фильтра K2 (00 to FF)" + +#: src/engine/sysDef.cpp:1647 +msgid "22xx: Set envelope left volume ramp (signed) (00 to FF)" +msgstr "22xx: Нарастание огибающей громкости левого канала (знаковое) (00-FF)" + +#: src/engine/sysDef.cpp:1648 +msgid "23xx: Set envelope right volume ramp (signed) (00 to FF)" +msgstr "23xx: Нарастание огибающей громкости правого канала (знаковое) (00-FF)" + +#: src/engine/sysDef.cpp:1649 +msgid "24xx: Set envelope filter coefficient k1 ramp (signed) (00 to FF)" +msgstr "24xx: Нарастание огибающей коэффициента фильтра K1 (знаковое) (00-FF)" + +#: src/engine/sysDef.cpp:1650 +msgid "" +"25xx: Set envelope filter coefficient k1 ramp (signed, slower) (00 to FF)" +msgstr "" +"25xx: Нарастание огибающей коэффициента фильтра K1 (знаковое, медленнее) (00-" +"FF)" + +#: src/engine/sysDef.cpp:1651 +msgid "26xx: Set envelope filter coefficient k2 ramp (signed) (00 to FF)" +msgstr "26xx: Нарастание огибающей коэффициента фильтра K2 (знаковое) (00-FF)" + +#: src/engine/sysDef.cpp:1652 +msgid "" +"27xx: Set envelope filter coefficient k2 ramp (signed, slower) (00 to FF)" +msgstr "" +"27xx: 25xx: Нарастание огибающей коэффициента фильтра K2 (знаковое, " +"медленнее) (00-FF)" + +#: src/engine/sysDef.cpp:1656 +msgid "120x: Set pause (bit 0)" +msgstr "120x: Пауза (бит 0)" + +#: src/engine/sysDef.cpp:1658 +msgid "2xxx: Set envelope count (000 to 1FF)" +msgstr "2xxx: Отсчёт огибающей (000-1FF)" + +#: src/engine/sysDef.cpp:1659 +msgid "3xxx: Set filter coefficient K1 (000 to FFF)" +msgstr "3xxx: Коэффициент фильтра K1 (000-FFF)" + +#: src/engine/sysDef.cpp:1660 +msgid "4xxx: Set filter coefficient K2 (000 to FFF)" +msgstr "4xxx: Коэффициент фильтра K2 (000-FFF)" + +#: src/engine/sysDef.cpp:1667 +msgid "Ensoniq ES5506" +msgstr "" + +#: src/engine/sysDef.cpp:1668 +msgid "" +"a sample chip made by Ensoniq, which is the basis for the GF1 chip found in " +"Gravis' Ultrasound cards." +msgstr "" +"сэмплерный чип от Ensoniq, на основе которго была сделан чип GF1, " +"применявшийся в звуковых картах Gravis Ultrasound." + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 29" +msgstr "Канал 29" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 30" +msgstr "Канал 30" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 31" +msgstr "Канал 31" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 32" +msgstr "Канал 32" + +#: src/engine/sysDef.cpp:1679 +msgid "Yamaha Y8950" +msgstr "" + +#: src/engine/sysDef.cpp:1680 +msgid "like OPL but with an ADPCM channel." +msgstr "как OPL, но с каналом АДИКМ-сэмплов." + +#: src/engine/sysDef.cpp:1691 +msgid "Yamaha Y8950 with drums" +msgstr "Yamaha Y8950 с ударными" + +#: src/engine/sysDef.cpp:1692 +msgid "the Y8950 chip, in drums mode." +msgstr "Чип Y8950 в режиме ударных." + +#: src/engine/sysDef.cpp:1703 +msgid "Konami SCC+" +msgstr "" + +#: src/engine/sysDef.cpp:1704 +msgid "" +"this is a variant of Konami's SCC chip with the last channel's wavetable " +"being independent." +msgstr "" +"вариант чипа Konami SCC с независимой волновой таблицей последнего канала." + +#: src/engine/sysDef.cpp:1715 +msgid "12xx: Set pulse width (0 to 7F)" +msgstr "12xx: Скважность (0-7F)" + +#: src/engine/sysDef.cpp:1716 +msgid "13xx: Set resonance (0 to FF)" +msgstr "13xx: Резонанс (0-FF)" + +#: src/engine/sysDef.cpp:1717 +msgid "" +"14xx: Set filter mode (bit 0: ring mod; bit 1: low pass; bit 2: high pass; " +"bit 3: band pass)" +msgstr "" +"14xx: Режим фильтра (бит 0: кольцевая модуляция; бит 1: ФНЧ; бит 2: ФВЧ; бит " +"3: ППФ)" + +#: src/engine/sysDef.cpp:1718 +msgid "15xx: Set frequency sweep period low byte" +msgstr "15xx: Младший байт аппаратного портаменто" + +#: src/engine/sysDef.cpp:1719 +msgid "16xx: Set frequency sweep period high byte" +msgstr "16xx: Старший байт аппаратного портаменто" + +#: src/engine/sysDef.cpp:1720 +msgid "17xx: Set volume sweep period low byte" +msgstr "17xx: Младший байт аппаратного изменения громкости" + +#: src/engine/sysDef.cpp:1721 +msgid "18xx: Set volume sweep period high byte" +msgstr "18xx: Старший байт аппаратного изменения громкости" + +#: src/engine/sysDef.cpp:1722 +msgid "19xx: Set cutoff sweep period low byte" +msgstr "19xx: Младший байт аппаратного изменения частоты среза" + +#: src/engine/sysDef.cpp:1723 +msgid "1Axx: Set cutoff sweep period high byte" +msgstr "1Axx: Старший байт аппаратного изменения частоты среза" + +#: src/engine/sysDef.cpp:1724 +msgid "1Bxx: Set frequency sweep boundary" +msgstr "1Bxx: Граница аппаратного портаменто" + +#: src/engine/sysDef.cpp:1725 +msgid "1Cxx: Set volume sweep boundary" +msgstr "1Cxx: Граница аппаратного изменения громкости" + +#: src/engine/sysDef.cpp:1726 +msgid "1Dxx: Set cutoff sweep boundary" +msgstr "1Dxx: Граница аппаратного изменения частоты среза" + +#: src/engine/sysDef.cpp:1727 +msgid "1Exx: Set phase reset period low byte" +msgstr "1Exx: Младший байт периода сброса фазы" + +#: src/engine/sysDef.cpp:1728 +msgid "1Fxx: Set phase reset period high byte" +msgstr "1Fxx: Старший байт периода сброса фазы" + +#: src/engine/sysDef.cpp:1729 +msgid "20xx: Toggle frequency sweep (bit 0-6: speed; bit 7: direction is up)" +msgstr "" +"20xx: Переключить аппаратное портаменто (биты 0-6: скорость; бит 7: " +"направление вверх)" + +#: src/engine/sysDef.cpp:1730 +msgid "" +"21xx: Toggle volume sweep (bit 0-4: speed; bit 5: direction is up; bit 6: " +"loop; bit 7: alternate)" +msgstr "" +"21xx: Переключить аппаратное изменение громкости (биты 0-4: скорость; бит 5: " +"направление вверх; бит 6: цикл; бит 7: вверх-вниз)" + +#: src/engine/sysDef.cpp:1731 +msgid "22xx: Toggle cutoff sweep (bit 0-6: speed; bit 7: direction is up)" +msgstr "" +"22xx: Переключить аппаратное изменение частоты среза фильтра (бит 0-6: " +"скорость; бит 7: направление вверх)" + +#: src/engine/sysDef.cpp:1739 +msgid "tildearrow Sound Unit" +msgstr "" + +#: src/engine/sysDef.cpp:1740 +msgid "" +"tildearrow's fantasy sound chip. put SID, AY and VERA in a blender, and you " +"get this!" +msgstr "" +"вымышленный звуковой чип tildearrow. загрузите в блендер SID, AY и VERA, и " +"вы получите этот чип!" + +#: src/engine/sysDef.cpp:1751 +msgid "OKI MSM6295" +msgstr "" + +#: src/engine/sysDef.cpp:1752 +msgid "an ADPCM sound chip manufactured by OKI and used in many arcade boards." +msgstr "" +"АДИКМ звуковой чип фирмы OKI. Использовался во многих аркадных автоматах." + +#: src/engine/sysDef.cpp:1759 +msgid "20xx: Set chip output rate (0: clock/132; 1: clock/165)" +msgstr "" +"20xx: Частота дискретизации выходного сигнала (0: тактовая частота/132; 1: " +"тактовая частота/165)" + +#: src/engine/sysDef.cpp:1764 +msgid "OKI MSM6258" +msgstr "" + +#: src/engine/sysDef.cpp:1765 +msgid "an ADPCM sound chip manufactured by OKI and used in the Sharp X68000." +msgstr "АДИКМ звуковой чип фирмы OKI, использовавшийся в Sharp X68000." + +#: src/engine/sysDef.cpp:1766 src/engine/sysDef.cpp:1887 +#: src/gui/editControls.cpp:437 src/gui/settings.cpp:4223 +#: src/gui/guiConst.cpp:1397 src/gui/insEdit.cpp:2628 src/gui/insEdit.cpp:2666 +msgid "Sample" +msgstr "Сэмплеры" + +#: src/engine/sysDef.cpp:1772 +msgid "20xx: Set frequency divider (0-2)" +msgstr "20xx: Делитель частоты (0-2)" + +#: src/engine/sysDef.cpp:1773 +msgid "21xx: Select clock rate (0: full; 1: half)" +msgstr "21xx: Тактовая частота (0: полная; 1: половинная)" + +#: src/engine/sysDef.cpp:1778 +msgid "Yamaha YMZ280B (PCMD8)" +msgstr "" + +#: src/engine/sysDef.cpp:1779 +msgid "" +"used in some arcade boards. Can play back either 4-bit ADPCM, 8-bit PCM or " +"16-bit PCM." +msgstr "" +"использовался в некоторых аркадных автоматах. Может воспроизводить 4-битные " +"АДИКМ, 8- и 16-битные ИКМ сэмплы." + +#: src/engine/sysDef.cpp:1797 src/gui/settings.cpp:4054 +msgid "Namco WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1798 +msgid "" +"a wavetable sound chip used in Pac-Man, among other early Namco arcade games." +msgstr "" +"таблично-волновой чип, использовавшийся в игровом автомате Pac-Man и других " +"ранних автоматах Namco." + +#: src/engine/sysDef.cpp:1808 +msgid "Namco C15 WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1809 +msgid "" +"successor of the original Namco WSG chip, used in later Namco arcade games." +msgstr "" +"следующая модель после Namco WSG, использовался в поздних игровых автоматах " +"Namco." + +#: src/engine/sysDef.cpp:1819 +msgid "Namco C30 WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1820 +msgid "like Namco C15 but with stereo sound." +msgstr "похож на Namco C15, но с поддержкой стерео." + +#: src/engine/sysDef.cpp:1830 +msgid "OKI MSM5232" +msgstr "" + +#: src/engine/sysDef.cpp:1831 +msgid "" +"a square wave additive synthesis chip made by OKI. used in some arcade " +"machines and instruments." +msgstr "" +"чип с меандрами и аддитивным синтезом от фирмы OKI. использовался в " +"некоторых игровых автоматах и инструментах." + +#: src/engine/sysDef.cpp:1839 +msgid "10xy: Set group control (x: sustain; y: part toggle bitmask)" +msgstr "10xy: Контроль группы (x: сустейн; y: битовая маска частей)" + +#: src/engine/sysDef.cpp:1840 src/engine/sysDef.cpp:1998 +msgid "11xx: Set noise mode" +msgstr "11xx: Режим шума" + +#: src/engine/sysDef.cpp:1841 +msgid "12xx: Set group attack (0 to 5)" +msgstr "12xx: Атака группы (0-5)" + +#: src/engine/sysDef.cpp:1842 +msgid "13xx: Set group decay (0 to 11)" +msgstr "13xx: Спад группы (0-11)" + +#: src/engine/sysDef.cpp:1847 +msgid "Yamaha YM2612 (OPN2) with DualPCM" +msgstr "Yamaha YM2612 (OPN2) с DualPCM" + +#: src/engine/sysDef.cpp:1848 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this system uses software mixing to provide two sample channels." +msgstr "" +"этот чип в основном известен по причине того, что он находился в Sega " +"Genesis (но он также использовался в компьютере FM Towns).\n" +"эта версия использует программное смешение сигналов, за счёт чего возможно " +"использование двух каналов сэмплов." + +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +msgid "FM 6/PCM 1" +msgstr "FM 6/ИКМ 1" + +#: src/engine/sysDef.cpp:1859 +msgid "Yamaha YM2612 (OPN2) Extended Channel 3 with DualPCM and CSM" +msgstr "Yamaha YM2612 (OPN2) расширенный 3-ий канал с DualPCM и CSM" + +#: src/engine/sysDef.cpp:1860 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this system uses software mixing to provide two sample channels.\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:1872 src/gui/settings.cpp:4024 +msgid "T6W28" +msgstr "" + +#: src/engine/sysDef.cpp:1873 +msgid "" +"an SN76489 derivative used in Neo Geo Pocket, has independent stereo volume " +"and noise channel frequency." +msgstr "" +"вариант SN76489, использовавшийся в Neo Geo Pocket. Имеет независимую " +"регулировку громкости стереоканалов и частоты канала шума." + +#: src/engine/sysDef.cpp:1880 +msgid "20xx: Set noise length (0: short, 1: long)" +msgstr "20xx: Длина шума (0: короткий, 1: длинный)" + +#: src/engine/sysDef.cpp:1885 +msgid "Generic PCM DAC" +msgstr "Типичный ИКМ ЦАП" + +#: src/engine/sysDef.cpp:1886 +msgid "as generic sample playback as it gets." +msgstr "настолько типичное воспроизведение сэмплов, насколько это возможно." + +#: src/engine/sysDef.cpp:1898 +msgid "Konami K007232" +msgstr "" + +#: src/engine/sysDef.cpp:1899 +msgid "this PCM chip was widely used at Konami arcade boards in 1986-1990." +msgstr "" +"этот ИКМ чип широко использовался в игровых автоматах Konami с 1986 по 1990 " +"год." + +#: src/engine/sysDef.cpp:1908 +msgid "Irem GA20" +msgstr "" + +#: src/engine/sysDef.cpp:1909 +msgid "" +"yet another PCM chip from Irem. like Amiga, but less pitch resolution and no " +"sample loop." +msgstr "" +"ещё один ИКМ чип от Irem. как Amiga, но с меньшим разрешением регулировки " +"частоты и без зацикливания сэмплов." + +#: src/engine/sysDef.cpp:1918 +msgid "Sharp SM8521" +msgstr "" + +#: src/engine/sysDef.cpp:1919 +msgid "a SoC with wavetable sound hardware." +msgstr "СнК с таблично-волновым синтезатором звука." + +#: src/engine/sysDef.cpp:1929 +msgid "Casio PV-1000" +msgstr "" + +#: src/engine/sysDef.cpp:1930 +msgid "" +"a game console with 3 channels of square wave. it's what happens after " +"fusing TIA and VIC together." +msgstr "" +"игровая консоль с тремя каналами квадратных волн. вот что получается, если " +"скрестить TIA и VIC." + +#: src/engine/sysDef.cpp:1937 +msgid "10xx: Set ring modulation (0: disable, 1: enable)" +msgstr "10xx: Кольцевая модуляция (0: выкл., 1: вкл.)" + +#: src/engine/sysDef.cpp:1942 +msgid "ZX Spectrum Beeper (QuadTone Engine)" +msgstr "ZX Spectrum пищалка (движок QuadTone)" + +#: src/engine/sysDef.cpp:1943 +msgid "" +"another ZX Spectrum beeper system with full PWM pulses and 3-level volume " +"per channel. it also has a pitchable overlay sample channel." +msgstr "" +"ещё одна система с пищалкой ZX Spectrum, на этот раз содержащая полноценные " +"прямоугольные волны с регулировкой скважности и тремя уровнями громкости для " +"каждого канала. Также имеется перекрывающий канал сэмплов с регулировкой " +"частоты." + +#: src/engine/sysDef.cpp:1955 +msgid "Konami K053260" +msgstr "" + +#: src/engine/sysDef.cpp:1956 +msgid "this PCM chip was widely used at Konami arcade boards in 1990-1992." +msgstr "" +"этот ИКМ чип широко использовался в игровых автоматах Konami с 1990 по 1992." + +#: src/engine/sysDef.cpp:1968 +msgid "MOS Technology TED" +msgstr "" + +#: src/engine/sysDef.cpp:1969 +msgid "" +"two square waves (one may be turned into noise). used in the Commodore " +"Plus/4, 16 and 116." +msgstr "" +"два канала квадратных волн (один из них может играть шум). использовался в " +"Commodore Plus/4, 16 и 116." + +#: src/engine/sysDef.cpp:1978 +msgid "Namco C140" +msgstr "" + +#: src/engine/sysDef.cpp:1979 +msgid "Namco's first PCM chip from 1987. it's pretty good for being so." +msgstr "" +"первый ИКМ чип Namco из 1987 года. для своего времени он весьма неплох." + +#: src/engine/sysDef.cpp:1989 +msgid "Namco C219" +msgstr "" + +#: src/engine/sysDef.cpp:1990 +msgid "" +"Namco's PCM chip used in their NA-1/2 hardware.\n" +"very similar to C140, but has noise generator." +msgstr "" +"ИКМ чип Namco, использовавшийся в их устройствах NA-1/2.\n" +"очень похож на C140, но имеет генератор шума." + +#: src/engine/sysDef.cpp:1999 +msgid "12xy: Set invert mode (x: surround; y: invert)" +msgstr "12xy: Режим инвертирования (x: окруж. звук; y: инверт.)" + +#: src/engine/sysDef.cpp:2004 +msgid "ESS ES1xxx series (ESFM)" +msgstr "ESS серия ES1xxx (ESFM)" + +#: src/engine/sysDef.cpp:2005 +msgid "" +"a unique FM synth featured in PC sound cards.\n" +"based on the OPL3 design, but with lots of its features extended." +msgstr "" +"уникальный чип с FM-синтезом, применявшийся в звуковых картах для PC.\n" +"основан на OPL3, но с сильно расширенным функционалом." + +#: src/engine/sysDef.cpp:2006 +msgid "FM 11" +msgstr "" + +#: src/engine/sysDef.cpp:2012 +msgid "2Exx: Toggle hard envelope reset on new notes" +msgstr "2Exx: Переключить жёсткий перезапуск огибающей на новой ноте" + +#: src/engine/sysDef.cpp:2018 +msgid "PowerNoise" +msgstr "" + +#: src/engine/sysDef.cpp:2019 +msgid "" +"a fantasy sound chip designed by jvsTSX and The Beesh-Spweesh!\n" +"used in the Hexheld fantasy console." +msgstr "" +"вымышленный звуковой чип, разработанный jvsTSX и The Beesh-Spweesh!\n" +"используется в вымышленной игровой консоли Hexheld." + +#: src/engine/sysDef.cpp:2020 +msgid "Noise 1" +msgstr "Шум 1" + +#: src/engine/sysDef.cpp:2020 +msgid "Noise 2" +msgstr "Шум 2" + +#: src/engine/sysDef.cpp:2020 +msgid "Noise 3" +msgstr "Шум 3" + +#: src/engine/sysDef.cpp:2020 +msgid "Slope" +msgstr "Скат" + +#: src/engine/sysDef.cpp:2026 +msgid "" +"20xx: Load low byte of noise channel LFSR (00 to FF) or slope channel " +"accumulator (00 to 7F)" +msgstr "" +"20xx: Загрузить младший байт в РСЛОС канала шума (00-FF) или в аккумулятор " +"канала ската (00-7F)" + +#: src/engine/sysDef.cpp:2027 +msgid "21xx: Load high byte of noise channel LFSR (00 to FF)" +msgstr "21xx: Загрузить старший байт в РСЛОС канала шума (00-FF)" + +#: src/engine/sysDef.cpp:2028 +msgid "22xx: Write to I/O port A" +msgstr "22xx: Записать в порт ввода-вывода A" + +#: src/engine/sysDef.cpp:2029 +msgid "23xx: Write to I/O port B" +msgstr "23xx: Записать в порт ввода-вывода B" + +#: src/engine/sysDef.cpp:2035 src/gui/settings.cpp:4079 +msgid "Dave" +msgstr "" + +#: src/engine/sysDef.cpp:2036 +msgid "" +"this chip was featured in the Enterprise 128 computer. it is similar to " +"POKEY, but with stereo output." +msgstr "" + +#: src/engine/sysDef.cpp:2037 +msgid "DAC Left" +msgstr "ЦАП левый" + +#: src/engine/sysDef.cpp:2037 +msgid "DAC Right" +msgstr "ЦАП правый" + +#: src/engine/sysDef.cpp:2043 +msgid "10xx: Set waveform (0 to 4; 0 to 3 on noise)" +msgstr "10xx: Волна (0-4; 0-3 на канале шума)" + +#: src/engine/sysDef.cpp:2044 +msgid "11xx: Set noise frequency source (0: fixed; 1-3: channels 1 to 3)" +msgstr "11xx: Источник частоты шума (0: фикс.; 1-3: каналы 1-3)" + +#: src/engine/sysDef.cpp:2045 +msgid "12xx: Toggle high-pass with next channel" +msgstr "12xx: Переключить ФВЧ от следующего канала" + +#: src/engine/sysDef.cpp:2046 +msgid "13xx: Toggle ring modulation with channel+2" +msgstr "13xx: Переключить кольцевую модуляцию от канал+2" + +#: src/engine/sysDef.cpp:2047 +msgid "14xx: Toggle swap counters (noise only)" +msgstr "14xx: Переключить смену счётчиков (только шум)" + +#: src/engine/sysDef.cpp:2048 +msgid "15xx: Toggle low pass (noise only)" +msgstr "15xx: Переключить ФНЧ (только шум)" + +#: src/engine/sysDef.cpp:2049 +msgid "16xx: Set clock divider (0: /2; 1: /3)" +msgstr "16xx: Делитель частоты (0: /2; 1: /3)" + +#: src/engine/sysDef.cpp:2054 +msgid "Game Boy Advance DMA Sound" +msgstr "" + +#: src/engine/sysDef.cpp:2055 +msgid "" +"additional PCM FIFO channels in Game Boy Advance driven directly by its DMA " +"hardware." +msgstr "" +"дополнительные ИКМ FIFO-каналы в Game Boy Advance с сигналом напрямую от " +"аппаратного контроллера DMA." + +#: src/engine/sysDef.cpp:2068 +msgid "Game Boy Advance MinMod" +msgstr "" + +#: src/engine/sysDef.cpp:2069 +msgid "" +"additional PCM FIFO channels in Game Boy Advance driven by software mixing " +"to provide up to sixteen sample channels" +msgstr "" + +#: src/engine/sysDef.cpp:2078 +msgid "11xy: Set echo channel (x: left/right source; y: delay (0 disables))" +msgstr "11xy: Канал эхо (x: левый/правый источник; y: задержка (0 отключает))" + +#: src/engine/sysDef.cpp:2079 +msgid "12xy: Toggle invert (x: left; y: right)" +msgstr "12xy: Инверсия сигнала (x: лево; y: право)" + +#: src/engine/sysDef.cpp:2084 src/gui/settings.cpp:4080 +msgid "Nintendo DS" +msgstr "" + +#: src/engine/sysDef.cpp:2085 +msgid "a handheld video game console with two screens. it uses a stylus." +msgstr "портативная игровая консоль с двумя экранами. необходим стилус." + +#: src/engine/sysDef.cpp:2093 +msgid "1Fxx: Set global volume (0 to 7F)" +msgstr "1Fxx: Глобальная громкость (0-7F)" + +#: src/engine/sysDef.cpp:2098 +msgid "5E01" +msgstr "" + +#: src/engine/sysDef.cpp:2099 +msgid "" +"a fantasy sound chip created by Euly. it is based on Ricoh 2A03, adding a " +"couple features such as 32 noise pitches, an extra duty cycle, and three " +"waveforms (besides triangle)." +msgstr "" + +#: src/engine/sysDef.cpp:2107 +msgid "" +"12xx: Set duty cycle/noise mode/waveform (pulse/wave: 0 to 3; noise: 0 or 1)" +msgstr "" + +#: src/engine/sysDef.cpp:2120 src/gui/settings.cpp:4083 +msgid "Bifurcator" +msgstr "" + +#: src/engine/sysDef.cpp:2121 +msgid "a fantasy sound chip using logistic map iterations to generate sound." +msgstr "" +"вымышленный звуковой чип, использующий итерации логистического отображения " +"для генерации звука." + +#: src/engine/sysDef.cpp:2128 +msgid "10xx: Load low byte of channel sample state" +msgstr "10xx: Загрузить младший байт сэмплового состояния канала" + +#: src/engine/sysDef.cpp:2129 +msgid "11xx: Load high byte of channel sample state" +msgstr "11xx: Загрузить старший байт сэмплового состояния канала" + +#: src/engine/sysDef.cpp:2130 +msgid "12xx: Set low byte of channel parameter" +msgstr "12xx: Младший байт параметра канала" + +#: src/engine/sysDef.cpp:2131 +msgid "13xx: Set high byte of channel parameter" +msgstr "13xx: Старший байт параметра канала" + +#: src/engine/sysDef.cpp:2136 src/gui/settings.cpp:4084 +msgid "SID2" +msgstr "" + +#: src/engine/sysDef.cpp:2137 +msgid "" +"a fantasy sound chip created by LTVA. it is similar to the SID chip, but " +"with many of its problems fixed." +msgstr "" + +#: src/engine/sysDef.cpp:2148 +msgid "Dummy System" +msgstr "Система-болванка" + +#: src/engine/sysDef.cpp:2149 +msgid "this is a system designed for testing purposes." +msgstr "это система, разработанная для тестирования." + +#: src/engine/engine.cpp:51 +msgid "00xy: Arpeggio" +msgstr "00xy: Арпеджио" + +#: src/engine/engine.cpp:53 +msgid "01xx: Pitch slide up" +msgstr "01xx: Портаменто вверх" + +#: src/engine/engine.cpp:55 +msgid "02xx: Pitch slide down" +msgstr "02xx: Портаменто вниз" + +#: src/engine/engine.cpp:57 +msgid "03xx: Portamento" +msgstr "03xx: Авто-портаменто (до указ. ноты)" + +#: src/engine/engine.cpp:59 +msgid "04xy: Vibrato (x: speed; y: depth)" +msgstr "04xy: Вибрато (x: скорость; y: глубина)" + +#: src/engine/engine.cpp:61 +msgid "05xy: Volume slide + vibrato (compatibility only!)" +msgstr "" +"05xy: Изменение громкости + вибрато (исключительно в целях совместимости!)" + +#: src/engine/engine.cpp:63 +msgid "06xy: Volume slide + portamento (compatibility only!)" +msgstr "" +"06xy: Изменение громкости + портаменто (исключительно в целях совместимости!)" + +#: src/engine/engine.cpp:65 +msgid "07xy: Tremolo (x: speed; y: depth)" +msgstr "07xy: Тремоло (x: скорость; y: глубина)" + +#: src/engine/engine.cpp:67 +msgid "08xy: Set panning (x: left; y: right)" +msgstr "08xy: Панорамирование (x: лево; y: право)" + +#: src/engine/engine.cpp:69 +msgid "09xx: Set groove pattern (speed 1 if no grooves exist)" +msgstr "09xx: Установить ритм-паттерн (скорость 1 при их отсутствии)" + +#: src/engine/engine.cpp:71 +msgid "0Axy: Volume slide (0y: down; x0: up)" +msgstr "0Axy: Изменение громкости (0y: вниз; x0: вверх)" + +#: src/engine/engine.cpp:73 +msgid "0Bxx: Jump to pattern" +msgstr "0Bxx: Прыжок на паттерн" + +#: src/engine/engine.cpp:75 +msgid "0Cxx: Retrigger" +msgstr "0Cxx: Циклич. перезапуск" + +#: src/engine/engine.cpp:77 +msgid "0Dxx: Jump to next pattern" +msgstr "0Dxx: Прыжок на след. паттерн" + +#: src/engine/engine.cpp:79 +msgid "0Fxx: Set speed (speed 2 if no grooves exist)" +msgstr "0Fxx: Установить скорость (скорость 2 при отсутствии ритм-паттернов)" + +#: src/engine/engine.cpp:81 +msgid "80xx: Set panning (00: left; 80: center; FF: right)" +msgstr "80xx: Панорамирование (00: лево; 80: центр; FF: право)" + +#: src/engine/engine.cpp:83 +msgid "81xx: Set panning (left channel)" +msgstr "81xx: Панорамирование (левый канал)" + +#: src/engine/engine.cpp:85 +msgid "82xx: Set panning (right channel)" +msgstr "82xx: Панорамирование (правый канал)" + +#: src/engine/engine.cpp:87 +msgid "88xy: Set panning (rear channels; x: left; y: right)" +msgstr "88xy: Панорамирование (задние каналы; x: левый; y: правый)" + +#: src/engine/engine.cpp:90 +msgid "89xx: Set panning (rear left channel)" +msgstr "89xx: Панорамирование (задний левый канал)" + +#: src/engine/engine.cpp:93 +msgid "8Axx: Set panning (rear right channel)" +msgstr "8Axx: Панорамирование (задний правый канал)" + +#: src/engine/engine.cpp:96 +msgid "Cxxx: Set tick rate (hz)" +msgstr "Cxxx: Установить частоту движка трекера (Гц)" + +#: src/engine/engine.cpp:98 +msgid "E0xx: Set arp speed" +msgstr "E0xx: Установить скорость арпеджио" + +#: src/engine/engine.cpp:100 +msgid "E1xy: Note slide up (x: speed; y: semitones)" +msgstr "E1xy: Портаменто вверх (x: скорость; y: полутонов)" + +#: src/engine/engine.cpp:102 +msgid "E2xy: Note slide down (x: speed; y: semitones)" +msgstr "E2xy: Портаменто вниз (x: скорость; y: полутонов)" + +#: src/engine/engine.cpp:104 +msgid "E3xx: Set vibrato shape (0: up/down; 1: up only; 2: down only)" +msgstr "E3xx: Тип вибрато (0: вверх/вниз; 1: только вверх; 2: только вниз)" + +#: src/engine/engine.cpp:106 +msgid "E4xx: Set vibrato range" +msgstr "E4xx: Установить глубину вибрато" + +#: src/engine/engine.cpp:108 +msgid "E5xx: Set pitch (80: center)" +msgstr "E5xx: Расстройка (80: без расстройки)" + +#: src/engine/engine.cpp:110 +msgid "E6xy: Quick legato (x: time (0-7 up; 8-F down); y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:112 +msgid "E7xx: Macro release" +msgstr "E7xx: Релиз макросов" + +#: src/engine/engine.cpp:114 +msgid "E8xy: Quick legato up (x: time; y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:116 +msgid "E9xy: Quick legato down (x: time; y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:118 +msgid "EAxx: Legato" +msgstr "EAxx: Легато" + +#: src/engine/engine.cpp:120 +msgid "EBxx: Set LEGACY sample mode bank" +msgstr "EBxx: (СОВМЕСТИМОСТЬ) Установить банк сэмплов" + +#: src/engine/engine.cpp:122 +msgid "ECxx: Note cut" +msgstr "ECxx: Заглушить ноту" + +#: src/engine/engine.cpp:124 +msgid "EDxx: Note delay" +msgstr "EDxx: Задержать ноту" + +#: src/engine/engine.cpp:126 +msgid "EExx: Send external command" +msgstr "EExx: Послать внешнюю команду" + +#: src/engine/engine.cpp:128 +msgid "F0xx: Set tick rate (bpm)" +msgstr "F0xx: Установить частоту движка трекера (BPM)" + +#: src/engine/engine.cpp:130 +msgid "F1xx: Single tick note slide up" +msgstr "F1xx: Портаменто вверх (один шаг движка)" + +#: src/engine/engine.cpp:132 +msgid "F2xx: Single tick note slide down" +msgstr "F2xx: Портаменто вниз (один шаг движка)" + +#: src/engine/engine.cpp:134 +msgid "F3xx: Fine volume slide up" +msgstr "F3xx: Точное изменение громкости вверх" + +#: src/engine/engine.cpp:136 +msgid "F4xx: Fine volume slide down" +msgstr "F4xx: Точное изменение громкости вниз" + +#: src/engine/engine.cpp:138 +msgid "F5xx: Disable macro (see manual)" +msgstr "F5xx: Отключить макрос (см. инструкцию)" + +#: src/engine/engine.cpp:140 +msgid "F6xx: Enable macro (see manual)" +msgstr "F6xx: Включить макрос (см. инструкцию)" + +#: src/engine/engine.cpp:142 +msgid "F7xx: Restart macro (see manual)" +msgstr "F7xx: Перезапустить макрос (см. инструкцию)" + +#: src/engine/engine.cpp:144 +msgid "F8xx: Single tick volume slide up" +msgstr "F8xx: Изменение громкости вверх (один шаг движка)" + +#: src/engine/engine.cpp:146 +msgid "F9xx: Single tick volume slide down" +msgstr "F9xx: Изменение громкости вниз (один шаг движка)" + +#: src/engine/engine.cpp:148 +msgid "FAxx: Fast volume slide (0y: down; x0: up)" +msgstr "FAxx: Быстрое изменение громкости (0y: вниз; x0: вверх)" + +#: src/engine/engine.cpp:150 +msgid "FCxx: Note release" +msgstr "FCxx: Релиз ноты" + +#: src/engine/engine.cpp:152 +msgid "FDxx: Set virtual tempo numerator" +msgstr "FDxx: Числитель виртуального темпа" + +#: src/engine/engine.cpp:154 +msgid "FExx: Set virtual tempo denominator" +msgstr "FExx: Знаменатель виртуального темпа" + +#: src/engine/engine.cpp:156 +msgid "FFxx: Stop song" +msgstr "FFxx: Остановить трек" + +#: src/engine/engine.cpp:160 +msgid "9xxx: Set sample offset*256" +msgstr "9xxx: Начальное смещение сэмпла (xxx*256 шагов)" + +#: src/engine/engine.cpp:164 +msgid "90xx: Set sample offset (first byte)" +msgstr "90xx: Начальное смещение сэмпла (младший байт)" + +#: src/engine/engine.cpp:166 +msgid "91xx: Set sample offset (second byte, ×256)" +msgstr "91xx: Начальное смещение сэмпла (средний байт, ×256)" + +#: src/engine/engine.cpp:168 +msgid "92xx: Set sample offset (third byte, ×65536)" +msgstr "92xx: Начальное смещение сэмпла (старший байт, ×65536)" + +#: src/engine/engine.cpp:187 src/gui/settings.cpp:4127 +msgid "Invalid effect" +msgstr "" + +#: src/engine/engine.cpp:354 src/gui/gui.cpp:2259 src/gui/gui.cpp:2422 +#, c-format +msgid "on seek: %s" +msgstr "во время перехода по файлу: %s" + +#: src/engine/engine.cpp:361 src/gui/gui.cpp:2266 src/gui/gui.cpp:2429 +#, c-format +msgid "on pre tell: %s" +msgstr "перед запросом положения в файле: %s" + +#: src/engine/engine.cpp:368 src/engine/engine.cpp:2768 +#: src/gui/settings.cpp:5811 src/gui/gui.cpp:2273 src/gui/gui.cpp:2436 +msgid "file is empty" +msgstr "пустой файл" + +#: src/engine/engine.cpp:371 src/gui/gui.cpp:2276 src/gui/gui.cpp:2439 +#, c-format +msgid "on tell: %s" +msgstr "во время запроса положения в файле: %s" + +#: src/engine/engine.cpp:378 +#, c-format +msgid "ROM size mismatch, expected: %d bytes, was: %d" +msgstr "несоответствие размера ROM, ожидалось: %d байт, на самом деле: %d" + +#: src/engine/engine.cpp:383 src/gui/settings.cpp:5820 src/gui/gui.cpp:2283 +#: src/gui/gui.cpp:2446 +#, c-format +msgid "on get size: %s" +msgstr "при запросе размера: %s" + +#: src/engine/engine.cpp:390 src/gui/settings.cpp:5827 src/gui/gui.cpp:2290 +#: src/gui/gui.cpp:2453 +#, c-format +msgid "on read: %s" +msgstr "при чтении: %s" + +#: src/engine/engine.cpp:1076 src/engine/engine.cpp:1181 +#: src/engine/engine.cpp:1290 +msgid "invalid index" +msgstr "недействительный индекс" + +#: src/engine/engine.cpp:1080 src/engine/engine.cpp:1135 +#: src/engine/engine.cpp:1189 +#, c-format +msgid "max number of total channels is %d" +msgstr "максимальное общее число каналов не может превышать %d" + +#: src/engine/engine.cpp:1131 src/engine/engine.cpp:1185 +#, c-format +msgid "max number of systems is %d" +msgstr "максимальное число чипов/систем не может превышать %d" + +#: src/engine/engine.cpp:1286 +msgid "cannot remove the last one" +msgstr "не могу удалить последнюю" + +#: src/engine/engine.cpp:1460 +msgid "source and destination are equal" +msgstr "системы совпадают" + +#: src/engine/engine.cpp:1464 +msgid "invalid source index" +msgstr "недействительный индекс исходной системы" + +#: src/engine/engine.cpp:1468 +msgid "invalid destination index" +msgstr "недействительный индекс системы назначения" + +#: src/engine/engine.cpp:2636 +#, c-format +msgid "Instrument %d" +msgstr "Инструмент %d" + +#: src/engine/engine.cpp:2710 src/engine/engine.cpp:2727 +#: src/gui/doAction.cpp:825 src/gui/doAction.cpp:843 src/gui/doAction.cpp:1634 +#: src/gui/gui.cpp:6159 src/gui/insEdit.cpp:6860 +msgid "too many wavetables!" +msgstr "слишком много волновых таблиц!" + +#: src/engine/engine.cpp:2752 +#, c-format +msgid "could not seek to end: %s" +msgstr "не смог перейти в конец файла: %s" + +#: src/engine/engine.cpp:2758 +#, c-format +msgid "could not determine file size: %s" +msgstr "не смог определить размер файла: %s" + +#: src/engine/engine.cpp:2763 +msgid "file size is invalid!" +msgstr "недействительный размер файла!" + +#: src/engine/engine.cpp:2773 +#, c-format +msgid "could not seek to beginning: %s" +msgstr "не смог перейти в начало файла: %s" + +#: src/engine/engine.cpp:2780 +#, c-format +msgid "could not read entire file: %s" +msgstr "не смог прочитать весь файл: %s" + +#: src/engine/engine.cpp:2806 +msgid "invalid wavetable header/data!" +msgstr "неправильный заголовок/данные волновой таблицы!" + +#: src/engine/engine.cpp:2877 +msgid "premature end of file" +msgstr "преждевременный конец файла" + +#: src/engine/engine.cpp:2904 src/engine/engine.cpp:2926 +#: src/gui/doAction.cpp:909 src/gui/doAction.cpp:921 +msgid "too many samples!" +msgstr "слишком много сэмплов!" + +#: src/engine/engine.cpp:2911 +#, c-format +msgid "Sample %d" +msgstr "Сэмпл %d" + +#: src/engine/engine.cpp:3056 +#, c-format +msgid "no free patterns in channel %d!" +msgstr "нет свободных паттернов для канала %d!" + +#: src/gui/mixer.cpp:28 src/gui/insEdit.cpp:484 +msgid "left" +msgstr "левый" + +#: src/gui/mixer.cpp:29 src/gui/insEdit.cpp:483 +msgid "right" +msgstr "правый" + +#: src/gui/mixer.cpp:128 +msgid "input" +msgstr "вход" + +#: src/gui/mixer.cpp:168 +msgid "output" +msgstr "выход" + +#: src/gui/mixer.cpp:226 src/gui/mixer.cpp:228 src/gui/editControls.cpp:454 +#: src/gui/guiConst.cpp:593 +msgid "Mixer" +msgstr "Микшер" + +#: src/gui/mixer.cpp:229 +msgid "Master Volume" +msgstr "Общая громкость" + +#: src/gui/mixer.cpp:250 src/gui/exportOptions.cpp:90 +#: src/gui/userPresets.cpp:393 src/gui/userPresets.cpp:405 +#: src/gui/settings.cpp:1080 src/gui/settings.cpp:1094 +#: src/gui/waveEdit.cpp:1096 src/gui/sampleEdit.cpp:1128 +#: src/gui/insEdit.cpp:519 +msgid "Invert" +msgstr "Инвертировать" + +#: src/gui/mixer.cpp:268 src/gui/chanOsc.cpp:37 src/gui/userPresets.cpp:417 +#: src/gui/settings.cpp:263 src/gui/settings.cpp:1109 src/gui/settings.cpp:1492 +#: src/gui/settings.cpp:1504 src/gui/settings.cpp:3369 +#: src/gui/settings.cpp:4015 src/gui/findReplace.cpp:687 +#: src/gui/findReplace.cpp:943 src/gui/guiConst.cpp:228 +#: src/gui/sampleEdit.cpp:1003 src/gui/insEdit.cpp:5575 +#: src/gui/insEdit.cpp:5660 src/gui/insEdit.cpp:6920 src/gui/insEdit.cpp:6928 +#: src/gui/insEdit.cpp:6936 src/gui/insEdit.cpp:6946 src/gui/insEdit.cpp:6961 +#: src/gui/insEdit.cpp:6975 src/gui/insEdit.cpp:6987 src/gui/insEdit.cpp:7000 +#: src/gui/insEdit.cpp:7016 src/gui/insEdit.cpp:7022 src/gui/insEdit.cpp:7032 +#: src/gui/insEdit.cpp:7039 src/gui/insEdit.cpp:7045 src/gui/insEdit.cpp:7058 +#: src/gui/insEdit.cpp:7065 src/gui/insEdit.cpp:7072 src/gui/insEdit.cpp:7081 +#: src/gui/insEdit.cpp:7091 src/gui/insEdit.cpp:7099 src/gui/insEdit.cpp:7105 +#: src/gui/insEdit.cpp:7113 src/gui/insEdit.cpp:7120 src/gui/insEdit.cpp:7126 +#: src/gui/insEdit.cpp:7136 src/gui/insEdit.cpp:7148 src/gui/insEdit.cpp:7156 +#: src/gui/insEdit.cpp:7172 src/gui/insEdit.cpp:7177 src/gui/insEdit.cpp:7190 +#: src/gui/insEdit.cpp:7197 src/gui/insEdit.cpp:7208 src/gui/insEdit.cpp:7221 +#: src/gui/insEdit.cpp:7230 src/gui/insEdit.cpp:7237 src/gui/insEdit.cpp:7245 +#: src/gui/insEdit.cpp:7258 src/gui/insEdit.cpp:7263 src/gui/insEdit.cpp:7269 +#: src/gui/insEdit.cpp:7276 src/gui/insEdit.cpp:7284 src/gui/insEdit.cpp:7295 +#: src/gui/insEdit.cpp:7302 src/gui/insEdit.cpp:7310 src/gui/insEdit.cpp:7318 +#: src/gui/insEdit.cpp:7327 src/gui/insEdit.cpp:7335 src/gui/insEdit.cpp:7341 +#: src/gui/insEdit.cpp:7347 src/gui/insEdit.cpp:7353 src/gui/insEdit.cpp:7358 +#: src/gui/insEdit.cpp:7365 src/gui/insEdit.cpp:7372 src/gui/insEdit.cpp:7380 +#: src/gui/insEdit.cpp:7389 src/gui/insEdit.cpp:7397 src/gui/insEdit.cpp:7409 +#: src/gui/insEdit.cpp:7422 src/gui/insEdit.cpp:7433 src/gui/insEdit.cpp:7443 +#: src/gui/insEdit.cpp:7451 src/gui/insEdit.cpp:7461 src/gui/insEdit.cpp:7470 +msgid "Volume" +msgstr "Громкость" + +#: src/gui/mixer.cpp:279 src/gui/userPresets.cpp:427 src/gui/settings.cpp:1120 +#: src/gui/guiConst.cpp:229 src/gui/insEdit.cpp:6923 src/gui/insEdit.cpp:6930 +#: src/gui/insEdit.cpp:6941 src/gui/insEdit.cpp:6965 src/gui/insEdit.cpp:7067 +#: src/gui/insEdit.cpp:7108 src/gui/insEdit.cpp:7152 src/gui/insEdit.cpp:7192 +#: src/gui/insEdit.cpp:7212 src/gui/insEdit.cpp:7232 src/gui/insEdit.cpp:7240 +#: src/gui/insEdit.cpp:7253 src/gui/insEdit.cpp:7265 src/gui/insEdit.cpp:7271 +#: src/gui/insEdit.cpp:7287 src/gui/insEdit.cpp:7297 src/gui/insEdit.cpp:7360 +#: src/gui/insEdit.cpp:7392 src/gui/insEdit.cpp:7438 src/gui/insEdit.cpp:7446 +msgid "Panning" +msgstr "Панорамирование" + +#: src/gui/mixer.cpp:290 src/gui/userPresets.cpp:433 src/gui/settings.cpp:1127 +msgid "Front/Rear" +msgstr "Передн./задн." + +#: src/gui/mixer.cpp:299 src/gui/settings.cpp:4208 +msgid "Patchbay" +msgstr "Соединение каналов" + +#: src/gui/mixer.cpp:305 +msgid "Automatic patchbay" +msgstr "Автоматически" + +#: src/gui/mixer.cpp:310 +msgid "Display hidden ports" +msgstr "Отобразить скрытые порты" + +#: src/gui/mixer.cpp:312 +msgid "Display internal" +msgstr "Внутренние порты" + +#: src/gui/mixer.cpp:322 src/gui/mixer.cpp:383 src/gui/settings.cpp:1901 +#: src/gui/settings.cpp:2089 src/gui/songInfo.cpp:69 +msgid "System" +msgstr "Система" + +#: src/gui/mixer.cpp:354 +msgid "Sample Preview" +msgstr "Превью сэмпла" + +#: src/gui/mixer.cpp:367 src/gui/editControls.cpp:745 +#: src/gui/editControls.cpp:837 src/gui/editControls.cpp:953 +#: src/gui/editControls.cpp:1093 src/gui/settings.cpp:1490 +#: src/gui/guiConst.cpp:558 +msgid "Metronome" +msgstr "Метроном" + +#: src/gui/mixer.cpp:446 +msgid "disconnect all" +msgstr "отсоединить все" + +#: src/gui/editing.cpp:200 +#, c-format +msgid "no data in oldPatMap for channel %d!" +msgstr "" + +#: src/gui/editing.cpp:664 src/gui/editing.cpp:1203 +#, c-format +msgid "invalid clipboard data! failed at line %d char %d" +msgstr "" + +#: src/gui/editing.cpp:1565 src/gui/editing.cpp:1669 +msgid "can't collapse any further!" +msgstr "дальнейшее сжатие невозможно!" + +#: src/gui/editing.cpp:1749 +msgid "can't expand any further!" +msgstr "дальнейшее расширение невозможно!" + +#: src/gui/editing.cpp:1836 src/gui/editing.cpp:1851 +#, c-format +msgid "copy: %s" +msgstr "" + +#: src/gui/memory.cpp:35 src/gui/settings.cpp:3696 src/gui/settings.cpp:4217 +#: src/gui/guiConst.cpp:613 +msgid "Memory Composition" +msgstr "Содержание памяти" + +#: src/gui/memory.cpp:146 +#, c-format +msgid "bank %d" +msgstr "банк %d" + +#: src/gui/memory.cpp:175 src/gui/memory.cpp:176 +msgid "no chips with memory" +msgstr "нет чипов с памятью" + +#: src/gui/intro.cpp:89 src/gui/gui.cpp:2345 src/gui/gui.cpp:3746 +#: src/gui/gui.cpp:5019 src/gui/gui.cpp:5041 src/gui/gui.cpp:5479 +#: src/gui/gui.cpp:5781 src/gui/gui.cpp:5791 +#, c-format +msgid "Error while loading file! (%s)" +msgstr "Ошибка при загрузке файла! (%s)" + +#: src/gui/intro.cpp:122 +msgid "IntroMon X" +msgstr "" + +#: src/gui/intro.cpp:122 +msgid "Intro" +msgstr "" + +#: src/gui/intro.cpp:124 +msgid "Preview" +msgstr "" + +#: src/gui/intro.cpp:176 src/gui/intro.cpp:177 src/gui/intro.cpp:178 +msgid "SORRY NOTHING" +msgstr "" + +#: src/gui/intro.cpp:310 +msgid "hold to skip" +msgstr "" + +#: src/gui/dataList.cpp:76 +msgid "Bug!" +msgstr "Баг!" + +#: src/gui/dataList.cpp:79 src/gui/util.cpp:107 src/gui/util.cpp:109 +#: src/gui/settings.cpp:4220 src/gui/insEdit.cpp:5334 +msgid "Unknown" +msgstr "Неизвестен" + +#: src/gui/dataList.cpp:136 src/gui/dataList.cpp:260 +msgid "duplicate" +msgstr "клонировать" + +#: src/gui/dataList.cpp:139 src/gui/dataList.cpp:263 src/gui/dataList.cpp:388 +#: src/gui/dataList.cpp:731 src/gui/dataList.cpp:867 +msgid "replace..." +msgstr "заменить..." + +#: src/gui/dataList.cpp:142 src/gui/dataList.cpp:266 src/gui/gui.cpp:4232 +msgid "save" +msgstr "сохранить" + +#: src/gui/dataList.cpp:145 +msgid "save (.dmp)" +msgstr "экспортировать в .dmp" + +#: src/gui/dataList.cpp:148 src/gui/dataList.cpp:269 src/gui/dataList.cpp:617 +#: src/gui/dataList.cpp:994 src/gui/dataList.cpp:1040 +#: src/gui/editControls.cpp:50 src/gui/gui.cpp:2767 src/gui/gui.cpp:2776 +msgid "delete" +msgstr "удалить" + +#: src/gui/dataList.cpp:243 +msgid "out of memory for this sample!" +msgstr "недостаточно памяти для этого сэмпла!" + +#: src/gui/dataList.cpp:254 +msgid "make instrument" +msgstr "создать инструмент" + +#: src/gui/dataList.cpp:257 +msgid "make me a drum kit" +msgstr "создать инструмент с набором ударных" + +#: src/gui/dataList.cpp:290 src/gui/dataList.cpp:593 src/gui/gui.cpp:5914 +msgid "Instruments" +msgstr "Инструменты" + +#: src/gui/dataList.cpp:312 src/gui/dataList.cpp:714 src/gui/dataList.cpp:846 +#: src/gui/subSongs.cpp:88 src/gui/insEdit.cpp:520 +msgid "Add" +msgstr "Добавить" + +#: src/gui/dataList.cpp:338 src/gui/dataList.cpp:721 src/gui/dataList.cpp:853 +#: src/gui/subSongs.cpp:108 +msgid "Duplicate" +msgstr "Клонировать" + +#: src/gui/dataList.cpp:359 src/gui/dataList.cpp:728 src/gui/dataList.cpp:860 +#: src/gui/editControls.cpp:497 src/gui/waveEdit.cpp:435 +#: src/gui/waveEdit.cpp:467 src/gui/sampleEdit.cpp:122 +#: src/gui/sampleEdit.cpp:171 src/gui/insEdit.cpp:5239 src/gui/insEdit.cpp:5304 +msgid "Open" +msgstr "Открыть" + +#: src/gui/dataList.cpp:363 +msgid "replace instrument..." +msgstr "заменить инструмент..." + +#: src/gui/dataList.cpp:366 +msgid "load instrument from TX81Z" +msgstr "загрузить инструмент с TX81Z" + +#: src/gui/dataList.cpp:372 +msgid "replace wavetable..." +msgstr "заменить волновую таблицу..." + +#: src/gui/dataList.cpp:378 +msgid "replace sample..." +msgstr "заменить сэмпл..." + +#: src/gui/dataList.cpp:381 +msgid "import raw sample..." +msgstr "загрузить сырые данные сэмпла..." + +#: src/gui/dataList.cpp:384 +msgid "import raw sample (replace)..." +msgstr "загрузить сырые данные сэмпла (заменить)..." + +#: src/gui/dataList.cpp:392 +msgid "load from TX81Z" +msgstr "загрузить с TX81Z" + +#: src/gui/dataList.cpp:399 +msgid "Open (insert; right-click to replace)" +msgstr "Открыть (вставить; ПКМ для замены)" + +#: src/gui/dataList.cpp:420 src/gui/dataList.cpp:741 src/gui/dataList.cpp:884 +#: src/gui/editControls.cpp:502 src/gui/waveEdit.cpp:474 +#: src/gui/sampleEdit.cpp:184 src/gui/insEdit.cpp:5311 +msgid "Save" +msgstr "Сохранить" + +#: src/gui/dataList.cpp:424 +msgid "save instrument as .dmp..." +msgstr "сохранить инструмент как .dmp..." + +#: src/gui/dataList.cpp:430 +msgid "save wavetable as .dmw..." +msgstr "сохранить волновую таблицу как .dmw..." + +#: src/gui/dataList.cpp:433 +msgid "save raw wavetable..." +msgstr "сохранить сырые данные волновой таблицы..." + +#: src/gui/dataList.cpp:439 +msgid "save raw sample..." +msgstr "сохранить сырые данные сэмпла..." + +#: src/gui/dataList.cpp:443 src/gui/insEdit.cpp:5314 +msgid "save as .dmp..." +msgstr "сохранить как .dmp..." + +#: src/gui/dataList.cpp:456 src/gui/dataList.cpp:761 src/gui/dataList.cpp:903 +msgid "Toggle folders/standard view" +msgstr "Переключиться между видом с разбиением по папкам и обычным видом" + +#: src/gui/dataList.cpp:478 src/gui/dataList.cpp:769 src/gui/dataList.cpp:911 +#: src/gui/subSongs.cpp:55 +msgid "Move up" +msgstr "Переместить на одну позицию вверх" + +#: src/gui/dataList.cpp:499 src/gui/dataList.cpp:776 src/gui/dataList.cpp:918 +#: src/gui/subSongs.cpp:62 +msgid "Move down" +msgstr "Переместить на одну позицию вниз" + +#: src/gui/dataList.cpp:510 src/gui/dataList.cpp:787 src/gui/dataList.cpp:929 +msgid "Create" +msgstr "Создать" + +#: src/gui/dataList.cpp:540 src/gui/dataList.cpp:797 src/gui/dataList.cpp:939 +msgid "New folder" +msgstr "Новая папка" + +#: src/gui/dataList.cpp:549 src/gui/dataList.cpp:947 +msgid "Preview (right click to stop)" +msgstr "Превью (ПКМ для остановки)" + +#: src/gui/dataList.cpp:576 src/gui/dataList.cpp:807 src/gui/dataList.cpp:959 +#: src/gui/guiConst.cpp:666 src/gui/sampleEdit.cpp:1105 +msgid "Delete" +msgstr "Удалить" + +#: src/gui/dataList.cpp:608 src/gui/dataList.cpp:985 src/gui/dataList.cpp:1031 +msgid "" +msgstr "<нерассортированные>" + +#: src/gui/dataList.cpp:614 src/gui/dataList.cpp:991 src/gui/dataList.cpp:1037 +msgid "rename..." +msgstr "переименовать..." + +#: src/gui/dataList.cpp:663 src/gui/dataList.cpp:707 src/gui/gui.cpp:5923 +msgid "Wavetables" +msgstr "Волновые таблицы" + +#: src/gui/dataList.cpp:674 src/gui/dataList.cpp:839 src/gui/xyOsc.cpp:68 +#: src/gui/sampleEdit.cpp:898 src/gui/sampleEdit.cpp:1072 src/gui/gui.cpp:5932 +msgid "Samples" +msgstr "Сэмплы" + +#: src/gui/dataList.cpp:745 src/gui/waveEdit.cpp:477 +msgid "save as .dmw..." +msgstr "сохранить как .dmw..." + +#: src/gui/dataList.cpp:748 src/gui/dataList.cpp:891 src/gui/waveEdit.cpp:480 +#: src/gui/sampleEdit.cpp:187 +msgid "save raw..." +msgstr "сохранить сырые данные..." + +#: src/gui/dataList.cpp:871 src/gui/sampleEdit.cpp:174 +msgid "import raw..." +msgstr "импорт сырых данных..." + +#: src/gui/dataList.cpp:874 +msgid "import raw (replace)..." +msgstr "импорт сырых данных (заменить)..." + +#: src/gui/exportOptions.cpp:29 +msgid "Export type:" +msgstr "Тип экспорта:" + +#: src/gui/exportOptions.cpp:32 +msgid "one file" +msgstr "один файл" + +#: src/gui/exportOptions.cpp:35 +msgid "multiple files (one per chip)" +msgstr "файлы (по одному на чип)" + +#: src/gui/exportOptions.cpp:38 +msgid "multiple files (one per channel)" +msgstr "файлы (по одному на канал)" + +#: src/gui/exportOptions.cpp:44 +msgid "Bit depth:" +msgstr "Глубина квантования:" + +#: src/gui/exportOptions.cpp:46 +msgid "16-bit integer" +msgstr "16-битное целое число" + +#: src/gui/exportOptions.cpp:49 +msgid "32-bit float" +msgstr "32-битное число с плавающей запятой" + +#: src/gui/exportOptions.cpp:55 src/gui/settings.cpp:1352 src/gui/gui.cpp:6270 +msgid "Sample rate" +msgstr "Частота квантования" + +#: src/gui/exportOptions.cpp:61 +msgid "Channels in file" +msgstr "Каналов аудио в файле" + +#: src/gui/exportOptions.cpp:67 src/gui/settings.cpp:930 +msgid "Loops" +msgstr "Циклы" + +#: src/gui/exportOptions.cpp:70 src/gui/settings.cpp:935 +msgid "Fade out (seconds)" +msgstr "Затухание (в секундах)" + +#: src/gui/exportOptions.cpp:76 +msgid "Channels to export:" +msgstr "" + +#: src/gui/exportOptions.cpp:78 src/gui/effectList.cpp:32 src/gui/gui.cpp:6186 +msgid "All" +msgstr "Все" + +#: src/gui/exportOptions.cpp:84 src/gui/sysConf.cpp:1870 +#: src/gui/effectList.cpp:34 src/gui/compatFlags.cpp:219 +#: src/gui/waveEdit.cpp:37 src/gui/gui.cpp:6192 src/gui/insEdit.cpp:518 +msgid "None" +msgstr "Нет (прямая работа с частотой)" + +#: src/gui/exportOptions.cpp:110 src/gui/exportOptions.cpp:214 +#: src/gui/exportOptions.cpp:225 src/gui/exportOptions.cpp:243 +#: src/gui/exportOptions.cpp:266 src/gui/exportOptions.cpp:297 +#: src/gui/exportOptions.cpp:318 src/gui/exportOptions.cpp:341 +#: src/gui/commandPalette.cpp:199 src/gui/settings.cpp:6673 +#: src/gui/newSong.cpp:273 src/gui/gui.cpp:5669 src/gui/gui.cpp:5693 +#: src/gui/gui.cpp:5717 src/gui/gui.cpp:5741 src/gui/gui.cpp:5765 +#: src/gui/gui.cpp:5796 src/gui/gui.cpp:5855 src/gui/gui.cpp:6229 +#: src/gui/gui.cpp:6353 +msgid "Cancel" +msgstr "Отмена" + +#: src/gui/exportOptions.cpp:115 src/gui/exportOptions.cpp:217 +#: src/gui/exportOptions.cpp:246 src/gui/exportOptions.cpp:300 +#: src/gui/exportOptions.cpp:321 src/gui/exportOptions.cpp:344 +#: src/gui/editControls.cpp:512 src/gui/userPresets.cpp:523 +#: src/gui/settings.cpp:1242 src/gui/settings.cpp:2165 +#: src/gui/settings.cpp:2557 src/gui/settings.cpp:3800 src/gui/guiConst.cpp:536 +#: src/gui/gui.cpp:5578 src/gui/gui.cpp:5630 +msgid "Export" +msgstr "Экспорт" + +#: src/gui/exportOptions.cpp:130 +msgid "select at least one channel" +msgstr "" + +#: src/gui/exportOptions.cpp:137 +msgid "settings:" +msgstr "настройки:" + +#: src/gui/exportOptions.cpp:138 +msgid "format version" +msgstr "версия формата" + +#: src/gui/exportOptions.cpp:146 src/gui/exportOptions.cpp:238 +#: src/gui/insEdit.cpp:362 +msgid "loop" +msgstr "зациклить" + +#: src/gui/exportOptions.cpp:148 +msgid "loop trail:" +msgstr "маркер конца цикла:" + +#: src/gui/exportOptions.cpp:150 +msgid "auto-detect" +msgstr "автоматически" + +#: src/gui/exportOptions.cpp:153 +msgid "add one loop" +msgstr "добавить один цикл" + +#: src/gui/exportOptions.cpp:156 +msgid "custom" +msgstr "пользовательский" + +#: src/gui/exportOptions.cpp:167 +msgid "add pattern change hints" +msgstr "добавить метки концов паттернов" + +#: src/gui/exportOptions.cpp:170 +msgid "" +"inserts data blocks on pattern changes.\n" +"useful if you are writing a playback routine.\n" +"\n" +"the format of a pattern change data block is:\n" +"67 66 FE ll ll ll ll 01 oo rr pp pp pp ...\n" +"- ll: length, a 32-bit little-endian number\n" +"- oo: order\n" +"- rr: initial row (a 0Dxx effect is able to select a different row)\n" +"- pp: pattern index (one per channel)\n" +"\n" +"pattern indexes are ordered as they appear in the song." +msgstr "" +"вставляет блоки данных в местах смены паттернов.\n" +"полезно, если вы пишете программу для воспроизведения.\n" +"\n" +"формат блока данных при смене паттерна:\n" +"67 66 FE ll ll ll ll 01 oo rr pp pp pp ...\n" +"- ll: длина, 32-битное число, прямой порядок байтов (little endian)\n" +"- oo: строка матрицы паттернов\n" +"- rr: начальная строка паттерна (эффект 0Dxx может её поменять)\n" +"- pp: индекс паттерна (один на канал)\n" +"\n" +"индексы паттернов рассортированы в том порядке, в котором они\n" +"встречаются в треке" + +#: src/gui/exportOptions.cpp:183 +msgid "direct stream mode" +msgstr "запись прямого потока" + +#: src/gui/exportOptions.cpp:186 +msgid "" +"required for DualPCM and MSM6258 export.\n" +"\n" +"allows for volume/direction changes when playing samples,\n" +"at the cost of a massive increase in file size." +msgstr "" +"необходим для экспорта DualPCM и MSM6258.\n" +"\n" +"повзоляет записывать изменение громкости/направления воспроизведения " +"сэмплов\n" +"ценой сильного увеличения размера файла." + +#: src/gui/exportOptions.cpp:191 +msgid "chips to export:" +msgstr "экспорт следующих чипов:" + +#: src/gui/exportOptions.cpp:200 +#, c-format +msgid "this chip is only available in VGM %d.%.2x and higher!" +msgstr "этот чип доступен только в файле VGM версии %d.%.2x и выше!" + +#: src/gui/exportOptions.cpp:204 +msgid "this chip is not supported by the VGM format!" +msgstr "этот чип не поддерживается форматом VGM!" + +#: src/gui/exportOptions.cpp:210 +#, c-format +msgid "select the chip you wish to export, but only up to %d of each type." +msgstr "" +"выберите чипы, данные для которых вы хотите включить в файл, но не более %d " +"чипа каждого типа." + +#: src/gui/exportOptions.cpp:222 +msgid "nothing to export" +msgstr "нечего экспортировать" + +#: src/gui/exportOptions.cpp:233 +msgid "Commander X16 Zsound Music File" +msgstr "Commander X16 Zsound Music File" + +#: src/gui/exportOptions.cpp:234 +msgid "Tick Rate (Hz)" +msgstr "Частота движка (Гц)" + +#: src/gui/exportOptions.cpp:240 +msgid "optimize size" +msgstr "оптимизировать размер" + +#: src/gui/exportOptions.cpp:256 src/gui/editControls.cpp:630 +msgid "" +"this is NOT ROM export! only use for making sure the\n" +"Furnace Amiga emulator is working properly by\n" +"comparing it with real Amiga output." +msgstr "" +"это НЕ экспорт в файл ROM! используйте только для\n" +"проверки того, что эмулятор Amiga в Furnace работает правильно,\n" +"сравнивая звук настоящей Amiga и Furnace." + +#: src/gui/exportOptions.cpp:261 src/gui/editControls.cpp:635 +#: src/gui/settings.cpp:3925 +msgid "Directory" +msgstr "Папка" + +#: src/gui/exportOptions.cpp:269 src/gui/editControls.cpp:638 +msgid "Bake Data" +msgstr "Создать данные" + +#: src/gui/exportOptions.cpp:284 src/gui/editControls.cpp:653 +#, c-format +msgid "Done! Baked %d files." +msgstr "" + +#: src/gui/exportOptions.cpp:293 +msgid "this option exports the song to a text file.\n" +msgstr "эта опция позволяет экспортировать трек в текстовый файл.\n" + +#: src/gui/exportOptions.cpp:310 +msgid "" +"this option exports a text or binary file which\n" +"contains a dump of the internal command stream\n" +"produced when playing the song.\n" +"\n" +"technical/development use only!" +msgstr "" +"эта опция позволяет создать бинарный файл,\n" +"в котором содержится дамп внутренних команд,\n" +"созданных во время проигрыаания трека.\n" +"\n" +"используйте только при разработке!" + +#: src/gui/exportOptions.cpp:331 +msgid "" +"export in DefleMask module format.\n" +"only do it if you really, really need to, or are downgrading an existing ." +"dmf." +msgstr "" + +#: src/gui/exportOptions.cpp:335 +msgid "format version:" +msgstr "" + +#: src/gui/exportOptions.cpp:336 +msgid "1.1.3 and higher" +msgstr "" + +#: src/gui/exportOptions.cpp:337 +msgid "1.0/legacy (0.12)" +msgstr "" + +#: src/gui/exportOptions.cpp:357 src/gui/settings.cpp:1253 +#: src/gui/settings.cpp:3929 +msgid "Audio" +msgstr "Аудио" + +#: src/gui/exportOptions.cpp:361 src/gui/settings.cpp:3931 +msgid "VGM" +msgstr "" + +#: src/gui/exportOptions.cpp:370 src/gui/settings.cpp:3932 +msgid "ZSM" +msgstr "" + +#: src/gui/exportOptions.cpp:380 +msgid "Amiga Validation" +msgstr "Проверка Amiga" + +#: src/gui/exportOptions.cpp:385 src/gui/settings.cpp:2959 +#: src/gui/settings.cpp:3891 +msgid "Text" +msgstr "Текст" + +#: src/gui/exportOptions.cpp:389 +msgid "Command Stream" +msgstr "Поток команд" + +#: src/gui/exportOptions.cpp:393 +msgid "DMF" +msgstr "" + +#: src/gui/exportOptions.cpp:422 +msgid "congratulations! you've unlocked a secret panel." +msgstr "поздравляю! вы открыли секретную панель." + +#: src/gui/exportOptions.cpp:423 +msgid "Toggle hidden systems" +msgstr "Включить скрытые системы" + +#: src/gui/exportOptions.cpp:427 +msgid "Toggle all instrument types" +msgstr "Включить все типы инструментов" + +#: src/gui/exportOptions.cpp:431 +msgid "Set pitch linearity to Partial" +msgstr "Выставить частичную линейность высоты тона" + +#: src/gui/exportOptions.cpp:435 +msgid "Enable multi-threading settings" +msgstr "Открыть настройки многопоточности" + +#: src/gui/exportOptions.cpp:439 +msgid "Set fat to max" +msgstr "Выкрутить жирность на максимум" + +#: src/gui/exportOptions.cpp:446 +msgid "Set muscle and fat to zero" +msgstr "Убрать все мышцы и жир" + +#: src/gui/exportOptions.cpp:453 +msgid "Tell tildearrow this must be a mistake" +msgstr "Сказать tildearrow, что, возможно, это ошибка" + +#: src/gui/exportOptions.cpp:454 +msgid "" +"yeah, it's a bug. write a bug report in the GitHub page and tell me how did " +"you get here." +msgstr "" +"да, это баг. заполните отчёт на гитхабе и скажите мне, как вы сюда добрались." + +#: src/gui/speed.cpp:32 src/gui/speed.cpp:102 src/gui/editControls.cpp:532 +#: src/gui/sysConf.cpp:2148 src/gui/guiConst.cpp:232 src/gui/guiConst.cpp:581 +#: src/gui/insEdit.cpp:2028 src/gui/insEdit.cpp:5693 src/gui/insEdit.cpp:6885 +msgid "Speed" +msgstr "Скорость" + +#: src/gui/speed.cpp:41 +msgid "Base Tempo##TempoOrHz" +msgstr "Основной темп##TempoOrHz" + +#: src/gui/speed.cpp:41 +msgid "Tick Rate##TempoOrHz" +msgstr "Частота движка##TempoOrHz" + +#: src/gui/speed.cpp:46 +msgid "click to display tick rate" +msgstr "нажмите для отображения частоты движка" + +#: src/gui/speed.cpp:48 +msgid "click to display base tempo" +msgstr "нажмите для отображения основного темпа" + +#: src/gui/speed.cpp:80 +msgid "Groove" +msgstr "Ритм-паттерн" + +#: src/gui/speed.cpp:87 +msgid "click for one speed" +msgstr "Нажмите для отображения одной скорости" + +#: src/gui/speed.cpp:90 +msgid "Speeds" +msgstr "Скорости" + +#: src/gui/speed.cpp:99 +msgid "click for groove pattern" +msgstr "Нажмите для отображения ритм-паттернов" + +#: src/gui/speed.cpp:110 +msgid "click for two (alternating) speeds" +msgstr "Нажмите для отображения двух (чередующихся) скоростей" + +#: src/gui/speed.cpp:168 +msgid "Virtual Tempo" +msgstr "Виртуальный темп" + +#: src/gui/speed.cpp:177 +msgid "Numerator" +msgstr "Числитель" + +#: src/gui/speed.cpp:187 +msgid "Denominator (set to base tempo)" +msgstr "Знаменатель (установите равным основному темпу)" + +#: src/gui/speed.cpp:193 +msgid "Divider" +msgstr "Делитель" + +#: src/gui/speed.cpp:208 +msgid "Highlight" +msgstr "Подсветка" + +#: src/gui/speed.cpp:231 +msgid "Pattern Length" +msgstr "Длина паттерна" + +#: src/gui/speed.cpp:245 +msgid "Song Length" +msgstr "Длина трека" + +#: src/gui/channels.cpp:40 src/gui/editControls.cpp:446 +#: src/gui/guiConst.cpp:601 src/gui/gui.cpp:6280 +msgid "Channels" +msgstr "Число каналов" + +#: src/gui/channels.cpp:49 +msgid "Pat" +msgstr "Пат." + +#: src/gui/channels.cpp:51 src/gui/editControls.cpp:550 +msgid "Osc" +msgstr "Осц." + +#: src/gui/channels.cpp:53 +msgid "Swap" +msgstr "Смена" + +#: src/gui/channels.cpp:55 src/gui/userPresets.cpp:368 +#: src/gui/effectList.cpp:45 src/gui/subSongs.cpp:125 src/gui/settings.cpp:1060 +#: src/gui/settings.cpp:4383 src/gui/sampleEdit.cpp:195 src/gui/songInfo.cpp:40 +#: src/gui/sysManager.cpp:54 src/gui/insEdit.cpp:5288 +msgid "Name" +msgstr "Имя" + +#: src/gui/channels.cpp:64 +msgid "Show in pattern" +msgstr "Показывать в окне паттернов" + +#: src/gui/channels.cpp:71 +msgid "Show in per-channel oscilloscope" +msgstr "Показывать в окне осциллографов (для отдельных каналов)" + +#: src/gui/channels.cpp:82 +#, c-format +msgid "" +"%s #%d\n" +"(drag to swap channels)" +msgstr "" +"%s #%d\n" +"(перетащите, чтобы поменять местами каналы)" + +#: src/gui/commandPalette.cpp:51 src/gui/sysPicker.cpp:35 +#: src/gui/newSong.cpp:133 +msgid "Search..." +msgstr "Поиск..." + +#: src/gui/commandPalette.cpp:54 +msgid "Search recent files..." +msgstr "Искать в недавних файлах..." + +#: src/gui/commandPalette.cpp:57 +msgid "Search instruments..." +msgstr "Искать инструменты..." + +#: src/gui/commandPalette.cpp:60 +msgid "Search samples..." +msgstr "Искать сэмплы..." + +#: src/gui/commandPalette.cpp:63 +msgid "Search instruments (to change to)..." +msgstr "Искать инструменты (для замены)..." + +#: src/gui/commandPalette.cpp:66 +msgid "Search chip (to add)..." +msgstr "Искать чипы (для добавления)..." + +#: src/gui/commandPalette.cpp:93 src/gui/commandPalette.cpp:167 +msgid "- None -" +msgstr "- Нет -" + +#: src/gui/commandPalette.cpp:123 src/gui/commandPalette.cpp:179 +#: src/gui/commandPalette.cpp:241 +msgid "invalid command palette type" +msgstr "" + +#: src/gui/regView.cpp:30 src/gui/guiConst.cpp:604 +msgid "Register View" +msgstr "Регистры" + +#: src/gui/regView.cpp:38 +msgid "- no register pool available" +msgstr "- список регистров недоступен" + +#: src/gui/log.cpp:25 src/gui/effectList.cpp:84 +msgid "ERROR" +msgstr "ОШИБКА" + +#: src/gui/log.cpp:26 +msgid "warning" +msgstr "" + +#: src/gui/log.cpp:27 +msgid "info" +msgstr "" + +#: src/gui/log.cpp:28 src/gui/gui.cpp:4513 +msgid "debug" +msgstr "отладка" + +#: src/gui/log.cpp:29 +msgid "trace" +msgstr "" + +#: src/gui/log.cpp:47 src/gui/settings.cpp:4243 src/gui/guiConst.cpp:605 +msgid "Log Viewer" +msgstr "Просмотр логов" + +#: src/gui/log.cpp:48 src/gui/editControls.cpp:750 src/gui/editControls.cpp:883 +#: src/gui/editControls.cpp:1000 +msgid "Follow" +msgstr "Следовать за прогрессом воспроизведения" + +#: src/gui/log.cpp:50 src/gui/waveEdit.cpp:681 src/gui/insEdit.cpp:50 +msgid "Level" +msgstr "Громкость" + +#: src/gui/log.cpp:68 +msgid "time" +msgstr "" + +#: src/gui/log.cpp:70 +msgid "level" +msgstr "" + +#: src/gui/log.cpp:72 +msgid "message" +msgstr "" + +#: src/gui/pattern.cpp:433 src/gui/editControls.cpp:421 +#: src/gui/editControls.cpp:754 src/gui/editControls.cpp:887 +#: src/gui/editControls.cpp:1015 src/gui/settings.cpp:2344 +#: src/gui/settings.cpp:3297 src/gui/settings.cpp:4100 +#: src/gui/findReplace.cpp:794 src/gui/guiConst.cpp:582 src/gui/gui.cpp:5899 +msgid "Pattern" +msgstr "Паттерны" + +#: src/gui/pattern.cpp:468 +msgid "there aren't any channels to show." +msgstr "нет каналов для отображения." + +#: src/gui/pattern.cpp:492 +msgid "click for pattern options (effect columns/pattern names/visualizer)" +msgstr "" +"нажмите для открытия меню настроек (столбцы эффектов/названия паттернов/" +"визуализатор эффектов)" + +#: src/gui/pattern.cpp:504 +msgid "Options:" +msgstr "Настройки:" + +#: src/gui/pattern.cpp:506 +msgid "Effect columns/collapse" +msgstr "Столбцы эффектов и свёртка канала" + +#: src/gui/pattern.cpp:507 +msgid "Pattern names" +msgstr "Названия паттернов" + +#: src/gui/pattern.cpp:508 +msgid "Channel group hints" +msgstr "Подсказки о группировке каналов" + +#: src/gui/pattern.cpp:509 +msgid "Visualizer" +msgstr "Визуализатор эффектов" + +#: src/gui/pattern.cpp:517 +msgid "Channel status:" +msgstr "Статус канала:" + +#: src/gui/pattern.cpp:519 +msgid "No##_PCS0" +msgstr "Нет##_PCS0" + +#: src/gui/pattern.cpp:522 +msgid "Yes##_PCS1" +msgstr "Да##_PCS1" + +#: src/gui/pattern.cpp:1420 src/gui/pattern.cpp:1452 +msgid "WARNING!!" +msgstr "ВНИМАНИЕ!!!" + +#: src/gui/pattern.cpp:1422 src/gui/pattern.cpp:1459 +msgid "this instrument cannot be previewed because" +msgstr "превью этого инструмента невозможно, потому что" + +#: src/gui/pattern.cpp:1423 src/gui/pattern.cpp:1466 +msgid "none of the chips can play it" +msgstr "ни один из чипов не совместим с ним" + +#: src/gui/pattern.cpp:1424 src/gui/pattern.cpp:1473 +msgid "your instrument is in peril!! be careful..." +msgstr "ваш инструмент под угрозой!! будьте осторожны..." + +#: src/gui/osc.cpp:169 src/gui/settings.cpp:3710 src/gui/settings.cpp:3937 +msgid "Oscilloscope" +msgstr "Осциллограф" + +#: src/gui/osc.cpp:176 +#, c-format +msgid "zoom: %.2fx (%.1fdB)" +msgstr "увеличение: %.2fx (%.1f дБ)" + +#: src/gui/osc.cpp:187 +#, c-format +msgid "window size: %.1fms" +msgstr "ширина окна: %.1f мс" + +#: src/gui/osc.cpp:385 +msgid "(-Infinity)dB" +msgstr "(минус бесконечность) дБ" + +#: src/gui/debugWindow.cpp:66 src/gui/editControls.cpp:610 +msgid "Debug" +msgstr "Отладка" + +#: src/gui/debugWindow.cpp:663 +msgid "This is a language test." +msgstr "" + +#: src/gui/debugWindow.cpp:664 +msgid "This is another language test." +msgstr "" + +#: src/gui/debugWindow.cpp:720 +#, c-format +msgid "%d apple" +msgid_plural "%d apples" +msgstr[0] "%d яблоко" +msgstr[1] "%d яблока" +msgstr[2] "%d яблок" + +#: src/gui/chanOsc.cpp:32 +msgid "None (0%)" +msgstr "Нет (0%)" + +#: src/gui/chanOsc.cpp:33 +msgid "None (50%)" +msgstr "Нет (50%)" + +#: src/gui/chanOsc.cpp:34 +msgid "None (100%)" +msgstr "Нет (100%)" + +#: src/gui/chanOsc.cpp:36 +msgid "Frequency" +msgstr "Частота" + +#: src/gui/chanOsc.cpp:38 src/gui/settings.cpp:1667 src/gui/settings.cpp:3406 +#: src/gui/settings.cpp:4088 +msgid "Channel" +msgstr "Канал" + +#: src/gui/chanOsc.cpp:39 +msgid "Brightness" +msgstr "Яркость" + +#: src/gui/chanOsc.cpp:41 +msgid "Note Trigger" +msgstr "Новая нота" + +#: src/gui/chanOsc.cpp:45 +msgid "Off" +msgstr "Выкл." + +#: src/gui/chanOsc.cpp:46 +msgid "Mode 1" +msgstr "Режим 1" + +#: src/gui/chanOsc.cpp:47 +msgid "Mode 2" +msgstr "Режим 2" + +#: src/gui/chanOsc.cpp:48 +msgid "Mode 3" +msgstr "Режим 3" + +#: src/gui/chanOsc.cpp:135 src/gui/guiConst.cpp:607 +msgid "Oscilloscope (per-channel)" +msgstr "Осциллографы (для отдельных каналов)" + +#: src/gui/chanOsc.cpp:143 +msgid "Columns" +msgstr "Столбцов" + +#: src/gui/chanOsc.cpp:152 +msgid "Size (ms)" +msgstr "Ширина (в мс)" + +#: src/gui/chanOsc.cpp:163 +msgid "Automatic columns" +msgstr "Автоматическое число столбцов" + +#: src/gui/chanOsc.cpp:177 +msgid "Center waveform" +msgstr "Центрировать сигнал" + +#: src/gui/chanOsc.cpp:183 +msgid "Randomize phase on note" +msgstr "Случайная фаза при запуске ноты" + +#: src/gui/chanOsc.cpp:189 +msgid "Amplitude" +msgstr "Амплитуда" + +#: src/gui/chanOsc.cpp:199 src/gui/settings.cpp:3747 +msgid "Line size" +msgstr "Толщина линии" + +#: src/gui/chanOsc.cpp:211 +msgid "Gradient" +msgstr "Градиент" + +#: src/gui/chanOsc.cpp:218 +msgid "error while creating gradient texture!" +msgstr "" + +#: src/gui/chanOsc.cpp:236 +msgid "error while updating gradient texture!" +msgstr "" + +#: src/gui/chanOsc.cpp:292 src/gui/chanOsc.cpp:348 src/gui/settings.cpp:3793 +msgid "Color" +msgstr "Цвет" + +#: src/gui/chanOsc.cpp:296 +msgid "Distance" +msgstr "Расстояние" + +#: src/gui/chanOsc.cpp:305 +msgid "Spread" +msgstr "Размыть" + +#: src/gui/chanOsc.cpp:314 src/gui/userPresets.cpp:370 src/gui/subSongs.cpp:121 +#: src/gui/settings.cpp:2281 src/gui/sysManager.cpp:124 +msgid "Remove" +msgstr "Удалить" + +#: src/gui/chanOsc.cpp:338 src/gui/settings.cpp:3885 src/gui/settings.cpp:4165 +#: src/gui/settings.cpp:4192 src/gui/settings.cpp:4218 +msgid "Background" +msgstr "Цвет фона" + +#: src/gui/chanOsc.cpp:341 +msgid "X Axis##AxisX" +msgstr "Ось X##AxisX" + +#: src/gui/chanOsc.cpp:342 +msgid "Y Axis##AxisY" +msgstr "Ось Y##AxisY" + +#: src/gui/chanOsc.cpp:352 +msgid "Text format:" +msgstr "Форматирование текста:" + +#: src/gui/chanOsc.cpp:358 +msgid "" +"format guide:\n" +"- %c: channel name\n" +"- %C: channel short name\n" +"- %d: channel number (starting from 0)\n" +"- %D: channel number (starting from 1)\n" +"- %n: channel note\n" +"- %i: instrument name\n" +"- %I: instrument number (decimal)\n" +"- %x: instrument number (hex)\n" +"- %s: chip name\n" +"- %p: chip part number\n" +"- %S: chip ID\n" +"- %v: volume (decimal)\n" +"- %V: volume (percentage)\n" +"- %b: volume (hex)\n" +"- %l: new line\n" +"- %%: percent sign" +msgstr "" +"инструкция по форматированию:\n" +"- %c: имя канала\n" +"- %C: короткое имя канала\n" +"- %d: номер канала (начиная с 0)\n" +"- %D: номер канала (начиная с 1)\n" +"- %n: нота канала\n" +"- %i: название инструмента\n" +"- %I: номер инструмента (десятеричный)\n" +"- %x: номер инструмента (шестнадцатеричный)\n" +"- %s: название чипа\n" +"- %p: настоящее название чипа\n" +"- %S: идентификатор чипа\n" +"- %v: громкость (десятеричная)\n" +"- %V: громкость (в процентах)\n" +"- %b: громкость (шестнадцатеричная)\n" +"- %l: перенос на новую строку\n" +"- %%: знак процента" + +#: src/gui/chanOsc.cpp:380 +msgid "Text color" +msgstr "Цвет текста" + +#: src/gui/chanOsc.cpp:382 src/gui/xyOsc.cpp:80 src/gui/settings.cpp:6672 +#: src/gui/tutorial.cpp:689 src/gui/gui.cpp:5639 src/gui/gui.cpp:6055 +#: src/gui/gui.cpp:6223 src/gui/gui.cpp:6322 src/gui/gui.cpp:6371 +msgid "OK" +msgstr "ОК" + +#: src/gui/chanOsc.cpp:400 +msgid "creating chan osc work pool" +msgstr "" + +#: src/gui/chanOsc.cpp:429 +#, c-format +msgid "creating FFT plan for channel %d" +msgstr "" + +#: src/gui/chanOsc.cpp:436 +msgid "failed to create plan!" +msgstr "" + +#: src/gui/chanOsc.cpp:438 +msgid "failed to create inverse plan!" +msgstr "" + +#: src/gui/chanOsc.cpp:440 +msgid "failed to create FFT buffers" +msgstr "" + +#: src/gui/chanOsc.cpp:585 +msgid "Error!" +msgstr "Ошибка!" + +#: src/gui/editControls.cpp:47 src/gui/sampleEdit.cpp:1736 src/gui/gui.cpp:2733 +#: src/gui/insEdit.cpp:363 +msgid "cut" +msgstr "вырезать" + +#: src/gui/editControls.cpp:48 src/gui/sampleEdit.cpp:1740 src/gui/gui.cpp:2734 +#: src/gui/insEdit.cpp:7538 +msgid "copy" +msgstr "копировать" + +#: src/gui/editControls.cpp:49 src/gui/sampleEdit.cpp:1744 src/gui/gui.cpp:2735 +#: src/gui/gui.cpp:2788 src/gui/insEdit.cpp:7543 +msgid "paste" +msgstr "вставить" + +#: src/gui/editControls.cpp:51 +msgid "" +"select\n" +"all" +msgstr "" + +#: src/gui/editControls.cpp:52 +msgid "piano" +msgstr "" + +#: src/gui/editControls.cpp:53 src/gui/gui.cpp:4429 +msgid "undo" +msgstr "отменить" + +#: src/gui/editControls.cpp:54 src/gui/gui.cpp:4430 +msgid "redo" +msgstr "вернуть" + +#: src/gui/editControls.cpp:57 +msgid "" +"paste\n" +"mix" +msgstr "" + +#: src/gui/editControls.cpp:58 +msgid "" +"paste\n" +"mix bg" +msgstr "" + +#: src/gui/editControls.cpp:59 +msgid "" +"paste\n" +"ins" +msgstr "" + +#: src/gui/editControls.cpp:60 +msgid "" +"paste\n" +"ins bg" +msgstr "" + +#: src/gui/editControls.cpp:61 +msgid "" +"paste\n" +"flood" +msgstr "" + +#: src/gui/editControls.cpp:62 +msgid "" +"paste\n" +"overflow" +msgstr "" + +#: src/gui/editControls.cpp:63 +msgid "" +"transpose\n" +"notes" +msgstr "" + +#: src/gui/editControls.cpp:64 +msgid "" +"transpose\n" +"values" +msgstr "" + +#: src/gui/editControls.cpp:67 +msgid "" +"change\n" +"ins" +msgstr "" + +#: src/gui/editControls.cpp:68 +msgid "" +"find/\n" +"replace" +msgstr "" + +#: src/gui/editControls.cpp:69 src/gui/gui.cpp:3063 +msgid "collapse" +msgstr "сжать" + +#: src/gui/editControls.cpp:70 src/gui/gui.cpp:3064 +msgid "expand" +msgstr "расширить" + +#: src/gui/editControls.cpp:71 src/gui/gui.cpp:2820 +msgid "flip" +msgstr "переворот" + +#: src/gui/editControls.cpp:72 src/gui/insEdit.cpp:430 +msgid "invert" +msgstr "инверт." + +#: src/gui/editControls.cpp:73 src/gui/gui.cpp:2800 src/gui/gui.cpp:2960 +msgid "interpolate" +msgstr "интерполяция" + +#: src/gui/editControls.cpp:74 src/gui/gui.cpp:2812 src/gui/insEdit.cpp:7610 +msgid "scale" +msgstr "масштабирование" + +#: src/gui/editControls.cpp:77 src/gui/gui.cpp:2804 +msgid "fade" +msgstr "градиент/затухание" + +#: src/gui/editControls.cpp:78 src/gui/gui.cpp:2816 src/gui/insEdit.cpp:7639 +msgid "randomize" +msgstr "заполнение случайными значениями" + +#: src/gui/editControls.cpp:79 +msgid "opmask" +msgstr "" + +#: src/gui/editControls.cpp:80 +msgid "" +"scroll\n" +"mode" +msgstr "" + +#: src/gui/editControls.cpp:81 +msgid "" +"input\n" +"latch" +msgstr "" + +#: src/gui/editControls.cpp:82 +msgid "" +"set\n" +"latch" +msgstr "" + +#: src/gui/editControls.cpp:83 +msgid "" +"clear\n" +"latch" +msgstr "" + +#: src/gui/editControls.cpp:84 src/gui/findReplace.cpp:43 +#: src/gui/insEdit.cpp:7557 +msgid "clear" +msgstr "удалить" + +#: src/gui/editControls.cpp:333 +msgid "Mobile Controls" +msgstr "" + +#: src/gui/editControls.cpp:408 +msgid "Mobile Menu" +msgstr "" + +#: src/gui/editControls.cpp:425 src/gui/editControls.cpp:752 +#: src/gui/editControls.cpp:885 src/gui/editControls.cpp:1007 +#: src/gui/settings.cpp:2485 src/gui/settings.cpp:3271 +#: src/gui/settings.cpp:3975 src/gui/orders.cpp:232 src/gui/guiConst.cpp:577 +#: src/gui/gui.cpp:5888 +msgid "Orders" +msgstr "Матрицу паттернов" + +#: src/gui/editControls.cpp:429 src/gui/findReplace.cpp:669 +#: src/gui/findReplace.cpp:914 +msgid "Ins" +msgstr "Инстр." + +#: src/gui/editControls.cpp:442 src/gui/findReplace.cpp:788 +#: src/gui/guiConst.cpp:230 +msgid "Song" +msgstr "Трек" + +#: src/gui/editControls.cpp:450 src/gui/sampleEdit.cpp:494 +msgid "Chips" +msgstr "Чипы" + +#: src/gui/editControls.cpp:458 src/gui/settings.cpp:2117 +#: src/gui/settings.cpp:3934 src/gui/settings.cpp:4018 +#: src/gui/compatFlags.cpp:319 +msgid "Other" +msgstr "Другое" + +#: src/gui/editControls.cpp:487 src/gui/guiConst.cpp:531 +msgid "New" +msgstr "Новый" + +#: src/gui/editControls.cpp:491 src/gui/doAction.cpp:38 src/gui/gui.cpp:4194 +msgid "Unsaved changes! Save changes before creating a new song?" +msgstr "" +"Остались несохранённые изменения! Сохранить их перед созданием нового трека?" + +#: src/gui/editControls.cpp:507 +msgid "Save as..." +msgstr "Сохранить как..." + +#: src/gui/editControls.cpp:516 src/gui/gui.cpp:1680 +msgid "Restore Backup" +msgstr "Загрузить резервную копию" + +#: src/gui/editControls.cpp:524 +msgid "Song Info" +msgstr "О треке" + +#: src/gui/editControls.cpp:528 src/gui/subSongs.cpp:17 +#: src/gui/guiConst.cpp:608 +msgid "Subsongs" +msgstr "Подпесни" + +#: src/gui/editControls.cpp:541 +msgid "Channels here..." +msgstr "Каналы здесь..." + +#: src/gui/editControls.cpp:544 +msgid "Chips here..." +msgstr "Чипы здесь..." + +#: src/gui/editControls.cpp:547 +msgid "What the hell..." +msgstr "Что за хрень..." + +#: src/gui/editControls.cpp:554 +msgid "ChanOsc" +msgstr "Осц-фы кан." + +#: src/gui/editControls.cpp:558 +msgid "RegView" +msgstr "Регистры" + +#: src/gui/editControls.cpp:562 +msgid "Stats" +msgstr "Стат." + +#: src/gui/editControls.cpp:566 src/gui/guiConst.cpp:611 src/gui/grooves.cpp:35 +msgid "Grooves" +msgstr "Ритм-паттерны" + +#: src/gui/editControls.cpp:569 +msgid "Compat Flags" +msgstr "Флаги совм." + +#: src/gui/editControls.cpp:573 +msgid "XYOsc" +msgstr "Осц. XY" + +#: src/gui/editControls.cpp:577 +msgid "Meter" +msgstr "" + +#: src/gui/editControls.cpp:581 +msgid "Memory" +msgstr "" + +#: src/gui/editControls.cpp:585 +msgid "CV" +msgstr "" + +#: src/gui/editControls.cpp:589 +msgid "Presets" +msgstr "" + +#: src/gui/editControls.cpp:593 +msgid "PatManager" +msgstr "" + +#: src/gui/editControls.cpp:599 src/gui/guiConst.cpp:564 +msgid "Panic" +msgstr "Паника" + +#: src/gui/editControls.cpp:601 src/gui/settings.cpp:560 +#: src/gui/guiConst.cpp:589 src/gui/guiConst.cpp:591 src/gui/gui.cpp:4439 +msgid "Settings" +msgstr "Настройки" + +#: src/gui/editControls.cpp:606 +msgid "Log" +msgstr "Логи" + +#: src/gui/editControls.cpp:614 src/gui/guiConst.cpp:587 +msgid "About" +msgstr "О программе" + +#: src/gui/editControls.cpp:619 +msgid "Switch to Desktop Mode" +msgstr "Переключ. на интерфейс ПК" + +#: src/gui/editControls.cpp:673 src/gui/editControls.cpp:784 +#: src/gui/editControls.cpp:904 +msgid "Play/Edit Controls" +msgstr "" + +#: src/gui/editControls.cpp:681 src/gui/editControls.cpp:842 +#: src/gui/editControls.cpp:959 src/gui/editControls.cpp:1125 +msgid "Octave" +msgstr "Октава" + +#: src/gui/editControls.cpp:698 src/gui/editControls.cpp:857 +msgid "Coarse Step" +msgstr "Грубый шаг редактирования" + +#: src/gui/editControls.cpp:698 src/gui/editControls.cpp:857 +msgid "Edit Step" +msgstr "Шаг редактирования" + +#: src/gui/editControls.cpp:731 src/gui/editControls.cpp:797 +#: src/gui/editControls.cpp:911 src/gui/editControls.cpp:1048 +#: src/gui/guiConst.cpp:545 +msgid "Play" +msgstr "Воспроизведение" + +#: src/gui/editControls.cpp:739 src/gui/editControls.cpp:789 +#: src/gui/editControls.cpp:918 src/gui/editControls.cpp:1040 +#: src/gui/guiConst.cpp:546 +msgid "Stop" +msgstr "Стоп" + +#: src/gui/editControls.cpp:742 src/gui/editControls.cpp:826 +#: src/gui/editControls.cpp:943 src/gui/editControls.cpp:1082 +#: src/gui/gui.cpp:4426 +msgid "Edit" +msgstr "Режим редактирования" + +#: src/gui/editControls.cpp:757 src/gui/editControls.cpp:816 +#: src/gui/editControls.cpp:934 src/gui/editControls.cpp:1104 +msgid "Repeat pattern" +msgstr "Зациклить текущий паттерн" + +#: src/gui/editControls.cpp:766 src/gui/editControls.cpp:806 +#: src/gui/editControls.cpp:925 src/gui/editControls.cpp:1073 +msgid "Step one row" +msgstr "Сделать один шаг по паттерну" + +#: src/gui/editControls.cpp:771 src/gui/editControls.cpp:891 +#: src/gui/editControls.cpp:1020 src/gui/editControls.cpp:1110 +msgid "Poly##PolyInput" +msgstr "Полифония##PolyInput" + +#: src/gui/editControls.cpp:771 src/gui/editControls.cpp:891 +#: src/gui/editControls.cpp:1020 src/gui/editControls.cpp:1110 +msgid "Mono##PolyInput" +msgstr "Моно##PolyInput" + +#: src/gui/editControls.cpp:776 src/gui/editControls.cpp:896 +#: src/gui/editControls.cpp:1025 src/gui/editControls.cpp:1115 +msgid "Polyphony" +msgstr "Полифония превью" + +#: src/gui/editControls.cpp:957 +msgid "Oct." +msgstr "Окт." + +#: src/gui/editControls.cpp:974 src/gui/editControls.cpp:1142 +msgid "Coarse" +msgstr "Грубый шаг" + +#: src/gui/editControls.cpp:974 src/gui/editControls.cpp:1142 +msgid "Step" +msgstr "Шаг" + +#: src/gui/editControls.cpp:998 +msgid "Foll." +msgstr "След." + +#: src/gui/editControls.cpp:1003 +msgid "Ord##FollowOrders" +msgstr "Матр.##FollowOrders" + +#: src/gui/editControls.cpp:1011 +msgid "Pat##FollowPattern" +msgstr "Патт.##FollowPattern" + +#: src/gui/editControls.cpp:1033 +msgid "Play Controls" +msgstr "" + +#: src/gui/editControls.cpp:1057 +msgid "Play from the beginning of this pattern" +msgstr "Воспроизвести с начала этого паттерна" + +#: src/gui/editControls.cpp:1065 +msgid "Repeat from the beginning of this pattern" +msgstr "Воспроизвести с начала этого паттерна с зацикливанием паттерна" + +#: src/gui/editControls.cpp:1122 src/gui/guiConst.cpp:576 +msgid "Edit Controls" +msgstr "Редактирование" + +#: src/gui/editControls.cpp:1169 src/gui/guiConst.cpp:560 +msgid "Follow orders" +msgstr "След. за воспр. в матр. патт." + +#: src/gui/editControls.cpp:1170 src/gui/guiConst.cpp:561 +msgid "Follow pattern" +msgstr "След. за воспр. в патт." + +#: src/gui/songNotes.cpp:32 src/gui/guiConst.cpp:600 +msgid "Song Comments" +msgstr "Комментарии трека" + +#: src/gui/util.cpp:93 +msgid "" +msgstr "<ничего>" + +#: src/gui/util.cpp:97 +msgid "Ctrl-" +msgstr "" + +#: src/gui/util.cpp:99 +msgid "Alt-" +msgstr "" + +#: src/gui/util.cpp:100 +msgid "Shift-" +msgstr "" + +#: src/gui/stats.cpp:31 src/gui/guiConst.cpp:597 +msgid "Statistics" +msgstr "Статистика" + +#: src/gui/stats.cpp:36 +msgid "Audio load" +msgstr "Нагрузка от аудио" + +#: src/gui/xyOsc.cpp:40 src/gui/guiConst.cpp:612 +msgid "Oscilloscope (X-Y)" +msgstr "Осциллограф (X-Y)" + +#: src/gui/xyOsc.cpp:45 +msgid "X Channel" +msgstr "Канал оси X" + +#: src/gui/xyOsc.cpp:51 +msgid "Invert##X" +msgstr "Инвертировать" + +#: src/gui/xyOsc.cpp:52 +msgid "Y Channel" +msgstr "Канал оси Y" + +#: src/gui/xyOsc.cpp:58 +msgid "Invert##Y" +msgstr "Инвертировать" + +#: src/gui/xyOsc.cpp:59 src/gui/sampleEdit.cpp:1353 +msgid "Zoom" +msgstr "Масштаб" + +#: src/gui/xyOsc.cpp:71 +msgid "Decay Time (ms)" +msgstr "Время затухания (мс)" + +#: src/gui/xyOsc.cpp:74 +msgid "Intensity" +msgstr "Яркость" + +#: src/gui/xyOsc.cpp:77 +msgid "Line Thickness" +msgstr "Толщина линий" + +#: src/gui/xyOsc.cpp:213 +msgid "(-Infinity)dB,(-Infinity)dB" +msgstr "(минус бесконечность) дБ,(минус бесконечность) дБ" + +#: src/gui/xyOsc.cpp:215 +#, c-format +msgid "(-Infinity)dB,%.1fdB" +msgstr "(минус бесконечность) дБ,%.1f дБ" + +#: src/gui/xyOsc.cpp:217 +#, c-format +msgid "%.1fdB,(-Infinity)dB" +msgstr "%.1f дБ,(минус бесконечность) дБ" + +#: src/gui/xyOsc.cpp:219 +#, c-format +msgid "%.1fdB,%.1fdB" +msgstr "" + +#: src/gui/sysConf.cpp:49 src/gui/sysConf.cpp:121 src/gui/sysConf.cpp:486 +#: src/gui/sysConf.cpp:604 src/gui/sysConf.cpp:647 src/gui/sysConf.cpp:684 +#: src/gui/sysConf.cpp:843 src/gui/sysConf.cpp:1098 src/gui/sysConf.cpp:1181 +#: src/gui/sysConf.cpp:1220 src/gui/sysConf.cpp:1294 src/gui/sysConf.cpp:1380 +#: src/gui/sysConf.cpp:1444 src/gui/sysConf.cpp:1482 src/gui/sysConf.cpp:1572 +#: src/gui/sysConf.cpp:1668 src/gui/sysConf.cpp:1716 src/gui/sysConf.cpp:1757 +#: src/gui/sysConf.cpp:1810 src/gui/sysConf.cpp:2284 src/gui/sysConf.cpp:2307 +msgid "Clock rate:" +msgstr "Тактовая частота:" + +#: src/gui/sysConf.cpp:73 src/gui/sysConf.cpp:152 src/gui/sysConf.cpp:911 +#: src/gui/sysConf.cpp:1459 src/gui/sysConf.cpp:1783 +msgid "Chip type:" +msgstr "Тип чипа:" + +#: src/gui/sysConf.cpp:75 +msgid "YM3438 (9-bit DAC)" +msgstr "YM3438 (9-битный ЦАП)" + +#: src/gui/sysConf.cpp:79 +msgid "YM2612 (9-bit DAC with distortion)" +msgstr "YM2612 (9-битный ЦАП с искажениями)" + +#: src/gui/sysConf.cpp:83 +msgid "YMF276 (external DAC)" +msgstr "YMF276 (внешний ЦАП)" + +#: src/gui/sysConf.cpp:90 src/gui/sysConf.cpp:804 src/gui/sysConf.cpp:1350 +#: src/gui/sysConf.cpp:1420 +msgid "Disable ExtCh FM macros (compatibility)" +msgstr "Отключить FM-макросы для расширенного канала (совместимость)" + +#: src/gui/sysConf.cpp:93 src/gui/sysConf.cpp:807 src/gui/sysConf.cpp:1353 +#: src/gui/sysConf.cpp:1423 +msgid "Ins change in ExtCh operator 2-4 affects FB (compatibility)" +msgstr "" +"Смена инструмента на операторах 2-4 расш. канала меняет FB (совместимость)" + +#: src/gui/sysConf.cpp:99 +msgid "Modified sine wave (joke)" +msgstr "" + +#: src/gui/sysConf.cpp:123 src/gui/sysConf.cpp:1296 src/gui/sysConf.cpp:1718 +#: src/gui/sysConf.cpp:2286 +msgid "3.58MHz (NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:127 +msgid "3.55MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:131 +msgid "4MHz (BBC Micro)" +msgstr "" + +#: src/gui/sysConf.cpp:135 +msgid "1.79MHz (Half NTSC)" +msgstr "1.79 МГц (половина NTSC)" + +#: src/gui/sysConf.cpp:139 +msgid "3MHz (Exed Exes)" +msgstr "" + +#: src/gui/sysConf.cpp:143 +msgid "2MHz (Sega System 1)" +msgstr "" + +#: src/gui/sysConf.cpp:147 +msgid "447KHz (TI-99/4A)" +msgstr "" + +#: src/gui/sysConf.cpp:154 +msgid "Sega VDP/Master System" +msgstr "" + +#: src/gui/sysConf.cpp:162 +msgid "TI SN76489 with Atari-like short noise" +msgstr "TI SN76489 с коротким шумом, похожим на Atari" + +#: src/gui/sysConf.cpp:166 +msgid "Game Gear" +msgstr "" + +#: src/gui/sysConf.cpp:170 +msgid "TI SN76489A" +msgstr "" + +#: src/gui/sysConf.cpp:174 +msgid "TI SN76496" +msgstr "" + +#: src/gui/sysConf.cpp:178 +msgid "NCR 8496" +msgstr "" + +#: src/gui/sysConf.cpp:182 +msgid "Tandy PSSJ 3-voice sound" +msgstr "Tandy PSSJ трёхканальный генератор звука" + +#: src/gui/sysConf.cpp:186 +msgid "TI SN94624" +msgstr "" + +#: src/gui/sysConf.cpp:190 +msgid "TI SN76494" +msgstr "" + +#: src/gui/sysConf.cpp:196 +msgid "Disable noise period change phase reset" +msgstr "Отключить сброс фазы при изменении периода шума" + +#: src/gui/sysConf.cpp:200 src/gui/sysConf.cpp:2190 +msgid "Disable easy period to note mapping on upper octaves" +msgstr "Отключить простое преобразование периода в ноту на верхних октавах" + +#: src/gui/sysConf.cpp:219 src/gui/sysConf.cpp:583 +msgid "Pseudo-PAL" +msgstr "Псевдо-PAL" + +#: src/gui/sysConf.cpp:222 src/gui/sysConf.cpp:342 +msgid "Disable anti-click" +msgstr "Отключить анти-щелчок" + +#: src/gui/sysConf.cpp:225 src/gui/sysConf.cpp:345 +msgid "Chip revision:" +msgstr "Ревизия чипа:" + +#: src/gui/sysConf.cpp:227 +msgid "HuC6280 (original)" +msgstr "HuC6280 (оригинальный)" + +#: src/gui/sysConf.cpp:231 +msgid "HuC6280A (SuperGrafx)" +msgstr "" + +#: src/gui/sysConf.cpp:257 +msgid "CPU rate:" +msgstr "Частота ЦП:" + +#: src/gui/sysConf.cpp:259 +msgid "6.18MHz (NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:263 +msgid "5.95MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:268 +msgid "Sample memory:" +msgstr "Память сэмплов:" + +#: src/gui/sysConf.cpp:270 +msgid "8K (rev A/B/E)" +msgstr "8 КиБ (версия A/B/E)" + +#: src/gui/sysConf.cpp:274 +msgid "64K (rev D/F)" +msgstr "64 КиБ (версия D/F)" + +#: src/gui/sysConf.cpp:279 +msgid "DAC resolution:" +msgstr "Разрешение ЦАП:" + +#: src/gui/sysConf.cpp:281 +msgid "16-bit (rev A/B/D/F)" +msgstr "16 бит (версия A/B/D/F)" + +#: src/gui/sysConf.cpp:285 +msgid "8-bit + TDM (rev C/E)" +msgstr "8 бит + мультиплексирование с разделением по времени (версия C/E)" + +#: src/gui/sysConf.cpp:290 src/gui/sysConf.cpp:1931 +msgid "Enable echo" +msgstr "Включить эхо" + +#: src/gui/sysConf.cpp:293 +msgid "Swap echo channels" +msgstr "Поменять местами каналы эхо" + +#: src/gui/sysConf.cpp:296 src/gui/sysConf.cpp:1151 +msgid "Echo delay:" +msgstr "Задержка эхо:" + +#: src/gui/sysConf.cpp:302 +msgid "Echo resolution:" +msgstr "Разрешение эхо:" + +#: src/gui/sysConf.cpp:308 src/gui/sysConf.cpp:1159 +msgid "Echo feedback:" +msgstr "Обратная связь эхо:" + +#: src/gui/sysConf.cpp:314 src/gui/sysConf.cpp:1967 +msgid "Echo volume:" +msgstr "Громкость эхо:" + +#: src/gui/sysConf.cpp:347 +msgid "Original (DMG)" +msgstr "Оригинальный (DMG)" + +#: src/gui/sysConf.cpp:351 +msgid "Game Boy Color (rev C)" +msgstr "Game Boy Color (версия C)" + +#: src/gui/sysConf.cpp:355 +msgid "Game Boy Color (rev E)" +msgstr "Game Boy Color (версия E)" + +#: src/gui/sysConf.cpp:359 +msgid "Game Boy Advance" +msgstr "" + +#: src/gui/sysConf.cpp:364 +msgid "Wave channel orientation:" +msgstr "Канал волновых таблиц" + +#: src/gui/sysConf.cpp:367 src/gui/compatFlags.cpp:298 src/gui/gui.cpp:6067 +#: src/gui/insEdit.cpp:217 src/gui/insEdit.cpp:231 +msgid "Normal" +msgstr "Нормальное" + +#: src/gui/sysConf.cpp:371 +msgid "Inverted" +msgstr "Инвертирован" + +#: src/gui/sysConf.cpp:378 +msgid "Exact data (inverted)" +msgstr "Точные данные (инвертирован)" + +#: src/gui/sysConf.cpp:382 +msgid "Exact output (normal)" +msgstr "Точный вывод (нормально)" + +#: src/gui/sysConf.cpp:388 +msgid "" +"Pretty please one more compat flag when I use arpeggio and my sound length" +msgstr "" +"Ну пожалуйста ещё один флаг совместимости когда я использую арпеджио и малую " +"длину звука на шумовом канале" + +#: src/gui/sysConf.cpp:405 src/gui/sysConf.cpp:438 +msgid "DAC bit depth (reduces output rate):" +msgstr "Глубина квантования ЦАП (уменьшает частоту дискретизации):" + +#: src/gui/sysConf.cpp:426 src/gui/sysConf.cpp:1268 src/gui/sysConf.cpp:1919 +msgid "Volume scale:" +msgstr "Громкость:" + +#: src/gui/sysConf.cpp:432 +msgid "Mix buffers (allows longer echo delay):" +msgstr "Буферы микширования (позволяет делать более долгую задержку эха):" + +#: src/gui/sysConf.cpp:444 +msgid "Channel limit:" +msgstr "Лимит числа каналов:" + +#: src/gui/sysConf.cpp:450 +msgid "Sample rate:" +msgstr "Частота дискретизации:" + +#: src/gui/sysConf.cpp:460 +#, c-format +msgid "Actual sample rate: %d Hz" +msgstr "Настоящая частота дискретизации: %d Гц" + +#: src/gui/sysConf.cpp:462 +#, c-format +msgid "Max mixer CPU usage: %.0f%%" +msgstr "Максимальное использование ЦП микшером: %.0f%%" + +#: src/gui/sysConf.cpp:488 +msgid "NTSC (3.58MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:492 src/gui/sysConf.cpp:557 +msgid "PAL (3.55MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:496 +msgid "Arcade (4MHz)" +msgstr "Arcade (4 МГц)" + +#: src/gui/sysConf.cpp:500 +msgid "Half NTSC (1.79MHz)" +msgstr "Половина NTSC (1.79 МГц)" + +#: src/gui/sysConf.cpp:506 +msgid "Patch set:" +msgstr "Набор патчей:" + +#: src/gui/sysConf.cpp:528 +msgid "Ignore top/hi-hat frequency changes" +msgstr "Игнорировать смену частоты тарелок/хай-хэтов" + +#: src/gui/sysConf.cpp:531 +msgid "Apply fixed frequency to all drums at once" +msgstr "Применять режим фиксированной частоты ко всем ударным" + +#: src/gui/sysConf.cpp:553 +msgid "NTSC/X16 (3.58MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:561 +msgid "X1/X68000 (4MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:567 src/gui/sysConf.cpp:587 +msgid "Broken pitch macro/slides (compatibility)" +msgstr "Сломанное портаменто эффектов и макросов (совместимость)" + +#: src/gui/sysConf.cpp:607 src/gui/sysConf.cpp:650 src/gui/sysConf.cpp:1222 +#: src/gui/sysConf.cpp:2310 +msgid "NTSC (1.79MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:611 src/gui/sysConf.cpp:654 src/gui/sysConf.cpp:1226 +msgid "PAL (1.67MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:615 src/gui/sysConf.cpp:658 src/gui/sysConf.cpp:1230 +msgid "Dendy (1.77MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:621 +msgid "DPCM channel mode:" +msgstr "Режим ДИКМ-канала:" + +#: src/gui/sysConf.cpp:624 +msgid "DPCM (muffled samples; low CPU usage)" +msgstr "ДИКМ (приглушённые сэмплы; малая нагрузка на ЦП)" + +#: src/gui/sysConf.cpp:628 +msgid "PCM (crisp samples; high CPU usage)" +msgstr "ИКМ (чёткие сэмплы; большая нагрузка на ЦП)" + +#: src/gui/sysConf.cpp:687 +msgid "NTSC (1.02MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:691 +msgid "PAL (0.99MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:695 +msgid "SSI 2001 (0.89MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:701 src/gui/sysConf.cpp:2320 +msgid "Global parameter priority:" +msgstr "Приоритет глобальных параметров:" + +#: src/gui/sysConf.cpp:704 src/gui/sysConf.cpp:2323 +msgid "Left to right" +msgstr "Слева направо" + +#: src/gui/sysConf.cpp:708 src/gui/sysConf.cpp:2327 +msgid "Last used channel" +msgstr "Последний использованный канал" + +#: src/gui/sysConf.cpp:714 +msgid "Hard reset envelope:" +msgstr "Огибающая при жёстком перезапуске:" + +#: src/gui/sysConf.cpp:716 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:1920 +#: src/gui/insEdit.cpp:6955 src/gui/insEdit.cpp:7481 +msgid "Attack" +msgstr "Атака" + +#: src/gui/sysConf.cpp:721 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:1960 +#: src/gui/insEdit.cpp:6956 src/gui/insEdit.cpp:7482 +msgid "Decay" +msgstr "Спад" + +#: src/gui/sysConf.cpp:726 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:1929 +#: src/gui/insEdit.cpp:6957 src/gui/insEdit.cpp:7483 +msgid "Sustain" +msgstr "Сустейн" + +#: src/gui/sysConf.cpp:731 src/gui/settings.cpp:3987 src/gui/insEdit.cpp:50 +#: src/gui/insEdit.cpp:604 src/gui/insEdit.cpp:1983 src/gui/insEdit.cpp:6958 +#: src/gui/insEdit.cpp:7484 +msgid "Release" +msgstr "Релиз" + +#: src/gui/sysConf.cpp:737 +msgid "Envelope reset time:" +msgstr "Время сброса огибающей:" + +#: src/gui/sysConf.cpp:747 +msgid "" +"- 0 disables envelope reset. not recommended!\n" +"- 1 may trigger SID envelope bugs.\n" +"- values that are too high may result in notes being skipped." +msgstr "" +"- 0 отключает сброс огибающей. не рекомендуется!\n" +"- 1 может привести к появлению сбоев огибающей SID.\n" +"- слишком большие значения могут привести к пропуску коротких нот." + +#: src/gui/sysConf.cpp:749 +msgid "Disable 1Exy env update (compatibility)" +msgstr "" +"Отключить обновление огибающей при применении эффекта 1Exy (совместимость)" + +#: src/gui/sysConf.cpp:753 +msgid "Relative duty and cutoff macros are coarse (compatibility)" +msgstr "" +"Макросы скважности и частоты среза в относительном режиме имеют меньшее " +"разрешение (совместимость)" + +#: src/gui/sysConf.cpp:757 +msgid "Cutoff macro race conditions (compatibility)" +msgstr "Состояние гонки макроса скважности (совместимость)" + +#: src/gui/sysConf.cpp:793 +msgid "8MHz (Neo Geo MVS)" +msgstr "" + +#: src/gui/sysConf.cpp:797 +msgid "8.06MHz (Neo Geo AES)" +msgstr "" + +#: src/gui/sysConf.cpp:812 src/gui/sysConf.cpp:1337 src/gui/sysConf.cpp:1407 +msgid "SSG Volume" +msgstr "Громкость SSG" + +#: src/gui/sysConf.cpp:818 src/gui/sysConf.cpp:1413 +msgid "FM/ADPCM Volume" +msgstr "Громкость FM/АДИКМ" + +#: src/gui/sysConf.cpp:845 +msgid "1.79MHz (ZX Spectrum NTSC/MSX)" +msgstr "" + +#: src/gui/sysConf.cpp:849 +msgid "1.77MHz (ZX Spectrum PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:853 +msgid "0.83MHz (Pre-divided Sunsoft 5B on PAL)" +msgstr "0.83 МГц (Sunsoft 5B с предварительным делителем частоты, PAL)" + +#: src/gui/sysConf.cpp:857 +msgid "0.89MHz (Pre-divided Sunsoft 5B)" +msgstr "0.89 МГц (Sunsoft 5B с предварительным делителем частоты)" + +#: src/gui/sysConf.cpp:861 +msgid "1MHz (Amstrad CPC)" +msgstr "" + +#: src/gui/sysConf.cpp:865 +msgid "1.10MHz (Gamate/VIC-20 PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:869 +msgid "1.25MHz (Mag Max)" +msgstr "" + +#: src/gui/sysConf.cpp:873 +msgid "1.5MHz (Vectrex)" +msgstr "" + +#: src/gui/sysConf.cpp:877 +msgid "1.536MHz (Kyugo)" +msgstr "" + +#: src/gui/sysConf.cpp:881 +msgid "1.67MHz (?)" +msgstr "" + +#: src/gui/sysConf.cpp:885 +msgid "1.75MHz (ZX Spectrum 48K)" +msgstr "" + +#: src/gui/sysConf.cpp:889 +msgid "1.99MHz (PC-88)" +msgstr "" + +#: src/gui/sysConf.cpp:893 +msgid "2MHz (Atari ST/Sharp X1)" +msgstr "" + +#: src/gui/sysConf.cpp:897 +msgid "2^21Hz (Game Boy)" +msgstr "" + +#: src/gui/sysConf.cpp:901 +msgid "3.58MHz (Darky)" +msgstr "" + +#: src/gui/sysConf.cpp:905 +msgid "3.6MHz (Darky)" +msgstr "" + +#: src/gui/sysConf.cpp:917 +msgid "YM2149(F)" +msgstr "" + +#: src/gui/sysConf.cpp:921 +msgid "Sunsoft 5B" +msgstr "" + +#: src/gui/sysConf.cpp:925 +msgid "AY-3-8914" +msgstr "" + +#: src/gui/sysConf.cpp:931 +msgid "note: AY-3-8914 is not supported by the VGM format!" +msgstr "примечание: AY-3-8914 не поддерживается в формате VGM!" + +#: src/gui/sysConf.cpp:935 +msgid "Stereo##_AY_STEREO" +msgstr "Стерео##_AY_STEREO" + +#: src/gui/sysConf.cpp:940 +msgid "Separation" +msgstr "Разделение в стерео" + +#: src/gui/sysConf.cpp:949 +msgid "Half Clock divider##_AY_CLKSEL" +msgstr "Делить тактовую частоту на 2##_AY_CLKSEL" + +#: src/gui/sysConf.cpp:971 +msgid "SAM Coupé (8MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:975 +msgid "NTSC (7.15MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:979 +msgid "PAL (7.09MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:999 +msgid "Stereo separation:" +msgstr "Разделение в стерео:" + +#: src/gui/sysConf.cpp:1006 src/gui/sysConf.cpp:2412 +msgid "Model:" +msgstr "Модель:" + +#: src/gui/sysConf.cpp:1008 +msgid "Amiga 500 (OCS)" +msgstr "" + +#: src/gui/sysConf.cpp:1012 +msgid "Amiga 1200 (AGA)" +msgstr "" + +#: src/gui/sysConf.cpp:1018 +msgid "Chip memory:" +msgstr "Память чипа:" + +#: src/gui/sysConf.cpp:1020 +msgid "2MB (ECS/AGA max)" +msgstr "2 МиБ (максимум для ECS/AGA)" + +#: src/gui/sysConf.cpp:1030 +msgid "512KB (OCS max)" +msgstr "512 КиБ (максимум для OCS)" + +#: src/gui/sysConf.cpp:1043 src/gui/sysConf.cpp:1081 src/gui/sysConf.cpp:2395 +#: src/gui/sysConf.cpp:2449 +msgid "PAL" +msgstr "" + +#: src/gui/sysConf.cpp:1046 +msgid "Bypass frequency limits" +msgstr "Игнорировать ограничения частоты" + +#: src/gui/sysConf.cpp:1065 +msgid "Mixing mode:" +msgstr "Режим микширования:" + +#: src/gui/sysConf.cpp:1067 src/gui/settings.cpp:3724 +msgid "Mono" +msgstr "Моно" + +#: src/gui/sysConf.cpp:1071 +msgid "Mono (no distortion)" +msgstr "Моно (без искажений)" + +#: src/gui/sysConf.cpp:1075 src/gui/sysConf.cpp:1197 src/gui/sysConf.cpp:1864 +#: src/gui/sysConf.cpp:2204 +msgid "Stereo" +msgstr "Стерео" + +#: src/gui/sysConf.cpp:1100 +msgid "1.19MHz (PC)" +msgstr "" + +#: src/gui/sysConf.cpp:1104 +msgid "1.99MHz (PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1108 +msgid "2.46MHz (PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1114 +msgid "Speaker type:" +msgstr "Тип пищалки:" + +#: src/gui/sysConf.cpp:1116 +msgid "Unfiltered" +msgstr "Без фильтрации" + +#: src/gui/sysConf.cpp:1120 +msgid "Cone" +msgstr "Диффузор" + +#: src/gui/sysConf.cpp:1124 +msgid "Piezo" +msgstr "Пьезопищалка" + +#: src/gui/sysConf.cpp:1128 +msgid "Use system beeper (Linux only!)" +msgstr "Использовать пищалку на материнской плате (только для Linux!)" + +#: src/gui/sysConf.cpp:1134 +msgid "Reset phase on frequency change" +msgstr "Сбор фазы при изменении частоты" + +#: src/gui/sysConf.cpp:1183 +msgid "16MHz (Seta 1)" +msgstr "" + +#: src/gui/sysConf.cpp:1187 +msgid "16.67MHz (Seta 2)" +msgstr "" + +#: src/gui/sysConf.cpp:1191 src/gui/sysConf.cpp:1759 +msgid "14.32MHz (NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:1201 +msgid "Bankswitched (Seta 2)" +msgstr "Со сменой банков памяти (Seta 2)" + +#: src/gui/sysConf.cpp:1235 src/gui/sysConf.cpp:1261 +msgid "Initial channel limit:" +msgstr "Изначальный лимит числа каналов:" + +#: src/gui/sysConf.cpp:1241 src/gui/sysConf.cpp:2398 +msgid "Disable hissing" +msgstr "Отключить высокочастотное пищание" + +#: src/gui/sysConf.cpp:1244 +msgid "Scale frequency to wave length" +msgstr "Масштабировать частоту под длину волны" + +#: src/gui/sysConf.cpp:1300 src/gui/sysConf.cpp:1722 +msgid "3.54MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:1304 src/gui/sysConf.cpp:1726 src/gui/sysConf.cpp:2290 +msgid "4MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1308 src/gui/sysConf.cpp:1730 +msgid "3MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1312 src/gui/sysConf.cpp:1734 +msgid "3.9936MHz (PC-88/PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1316 +msgid "1.5MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1321 src/gui/sysConf.cpp:1391 src/gui/sysConf.cpp:1639 +#: src/gui/sysConf.cpp:1852 +msgid "Output rate:" +msgstr "Частота квантования на выходе:" + +#: src/gui/sysConf.cpp:1323 src/gui/sysConf.cpp:1397 +msgid "FM: clock / 72, SSG: clock / 16" +msgstr "FM: такт. част. / 72, SSG: такт. част. / 16" + +#: src/gui/sysConf.cpp:1327 +msgid "FM: clock / 36, SSG: clock / 8" +msgstr "FM: такт. част. / 36, SSG: такт. част. / 8" + +#: src/gui/sysConf.cpp:1331 +msgid "FM: clock / 24, SSG: clock / 4" +msgstr "FM: такт. част. / 24, SSG: такт. част. / 4" + +#: src/gui/sysConf.cpp:1343 +msgid "FM Volume" +msgstr "Громкость FM" + +#: src/gui/sysConf.cpp:1382 +msgid "8MHz (Arcade)" +msgstr "8 МГц (Arcade)" + +#: src/gui/sysConf.cpp:1386 +msgid "7.987MHz (PC-88/PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1393 +msgid "FM: clock / 144, SSG: clock / 32" +msgstr "FM: такт. част. / 144, SSG: такт. част. / 32" + +#: src/gui/sysConf.cpp:1401 +msgid "FM: clock / 48, SSG: clock / 8" +msgstr "FM: такт. част. / 48, SSG: такт. част. / 8" + +#: src/gui/sysConf.cpp:1446 +msgid "8MHz (FM Towns)" +msgstr "" + +#: src/gui/sysConf.cpp:1450 +msgid "10MHz (Sega System 18)" +msgstr "" + +#: src/gui/sysConf.cpp:1454 +msgid "12.5MHz (Sega CD/System 32)" +msgstr "" + +#: src/gui/sysConf.cpp:1461 +msgid "RF5C68 (10-bit output)" +msgstr "RF5C68 (10-битный звук)" + +#: src/gui/sysConf.cpp:1465 +msgid "RF5C164 (16-bit output)" +msgstr "RF5C164 (16-битный звук)" + +#: src/gui/sysConf.cpp:1520 +msgid "Sample rate table:" +msgstr "Таблица частот квантования:" + +#: src/gui/sysConf.cpp:1524 +msgid "divider \\ clock" +msgstr "Делитель тактовой частоты" + +#: src/gui/sysConf.cpp:1526 +msgid "full" +msgstr "полная" + +#: src/gui/sysConf.cpp:1528 +msgid "half" +msgstr "половина" + +#: src/gui/sysConf.cpp:1641 +msgid "clock / 132" +msgstr "такт. част. / 132" + +#: src/gui/sysConf.cpp:1645 +msgid "clock / 165" +msgstr "такт. част. / 165" + +#: src/gui/sysConf.cpp:1651 +msgid "Bankswitched (NMK112)" +msgstr "Смена банков (NMK112)" + +#: src/gui/sysConf.cpp:1670 +msgid "1.79MHz (NTSC/MSX)" +msgstr "" + +#: src/gui/sysConf.cpp:1674 +msgid "1.77MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:1678 +msgid "1.5MHz (Arcade)" +msgstr "1.5 МГц (Arcade)" + +#: src/gui/sysConf.cpp:1682 +msgid "2MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1697 +msgid "Consistent frequency across all duties" +msgstr "Стабильная частота для всех скважностей" + +#: src/gui/sysConf.cpp:1704 +msgid "note: only works for an initial LFSR value of 0!" +msgstr "примечание: работает только для нулевого начального состояния РСЛОС!" + +#: src/gui/sysConf.cpp:1738 +msgid "3.5MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1763 +msgid "14.19MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:1767 +msgid "14MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1771 +msgid "16MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1775 +msgid "15MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1779 +msgid "33.8688MHz (OPL3-L)" +msgstr "" + +#: src/gui/sysConf.cpp:1784 +msgid "OPL3 (YMF262)" +msgstr "" + +#: src/gui/sysConf.cpp:1788 +msgid "OPL3-L (YMF289B)" +msgstr "" + +#: src/gui/sysConf.cpp:1794 +msgid "Compatible panning (0800)" +msgstr "Совместимое панорамирование (0800)" + +#: src/gui/sysConf.cpp:1858 +msgid "Output bit depth:" +msgstr "Глубина квантования на выходе:" + +#: src/gui/sysConf.cpp:1868 +msgid "Interpolation:" +msgstr "Интерполяция:" + +#: src/gui/sysConf.cpp:1874 src/gui/waveEdit.cpp:38 +msgid "Linear" +msgstr "Линейная" + +#: src/gui/sysConf.cpp:1878 src/gui/waveEdit.cpp:40 +msgid "Cubic" +msgstr "Кубическая" + +#: src/gui/sysConf.cpp:1882 +msgid "Sinc" +msgstr "Sinc" + +#: src/gui/sysConf.cpp:1920 +msgid "Left##VolScaleL" +msgstr "Слева##VolScaleL" + +#: src/gui/sysConf.cpp:1925 +msgid "Right##VolScaleL" +msgstr "Справа##VolScaleL" + +#: src/gui/sysConf.cpp:1935 +msgid "Initial echo state:" +msgstr "Начальное состояние эхо:" + +#: src/gui/sysConf.cpp:1955 +msgid "Delay##EchoDelay" +msgstr "Задержка##EchoDelay" + +#: src/gui/sysConf.cpp:1961 +msgid "Feedback##EchoFeedback" +msgstr "Обр. связь##EchoFeedback" + +#: src/gui/sysConf.cpp:1968 +msgid "Left##EchoVolL" +msgstr "Слева##EchoVolL" + +#: src/gui/sysConf.cpp:1973 +msgid "Right##EchoVolL" +msgstr "Справа##EchoVolL" + +#: src/gui/sysConf.cpp:1979 +msgid "Echo filter:" +msgstr "Фильтр эхо:" + +#: src/gui/sysConf.cpp:1989 +msgid "Hex##SNESFHex" +msgstr "Шест.##SNESFHex" + +#: src/gui/sysConf.cpp:1989 +msgid "Dec##SNESFHex" +msgstr "Дес.##SNESFHex" + +#: src/gui/sysConf.cpp:2031 +#, c-format +msgid "sum: %d" +msgstr "сумма: %d" + +#: src/gui/sysConf.cpp:2086 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:63 +#: src/gui/insEdit.cpp:75 +msgid "Detune" +msgstr "Расстройка" + +#: src/gui/sysConf.cpp:2092 +msgid "Capacitor values (nF):" +msgstr "Ёмкость конденсаторов (нФ):" + +#: src/gui/sysConf.cpp:2102 +msgid "Initial part volume (channel 1-4):" +msgstr "Начальная громкость (каналы 1-4):" + +#: src/gui/sysConf.cpp:2112 +msgid "Initial part volume (channel 5-8):" +msgstr "Начальная громкость (каналы 5-8):" + +#: src/gui/sysConf.cpp:2122 +msgid "Envelope mode (channel 1-4):" +msgstr "Режим огибающей (каналы 1-4):" + +#: src/gui/sysConf.cpp:2124 +msgid "Capacitor (attack/decay)##EM00" +msgstr "Конденсатор (атака/спад)##EM00" + +#: src/gui/sysConf.cpp:2128 +msgid "External (volume macro)##EM01" +msgstr "Внешняя (макрос громкости)##EM01" + +#: src/gui/sysConf.cpp:2134 +msgid "Envelope mode (channel 5-8):" +msgstr "Режим огибающей (каналы 5-8):" + +#: src/gui/sysConf.cpp:2136 +msgid "Capacitor (attack/decay)##EM10" +msgstr "Конденсатор (атака/спад)##EM10" + +#: src/gui/sysConf.cpp:2140 +msgid "External (volume macro)##EM11" +msgstr "Внешняя (макрос громкости)##EM11" + +#: src/gui/sysConf.cpp:2146 +msgid "Global vibrato:" +msgstr "Глобальное вибрато:" + +#: src/gui/sysConf.cpp:2153 +msgid "Depth" +msgstr "Глубина" + +#: src/gui/sysConf.cpp:2219 src/gui/sysConf.cpp:2373 +msgid "Waveform storage mode:" +msgstr "Способ хранения волн:" + +#: src/gui/sysConf.cpp:2221 +msgid "RAM" +msgstr "ОЗУ" + +#: src/gui/sysConf.cpp:2225 +msgid "ROM (up to 8 waves)" +msgstr "ПЗУ (до 8 волн)" + +#: src/gui/sysConf.cpp:2241 +msgid "Compatible noise frequencies" +msgstr "Совместимые частоты шума" + +#: src/gui/sysConf.cpp:2256 +msgid "Legacy slides and pitch (compatibility)" +msgstr "Старые частоты и портаменто (совместимость)" + +#: src/gui/sysConf.cpp:2314 +msgid "PAL (1.77MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:2344 +msgid "Banking style:" +msgstr "Стиль переключения банков:" + +#: src/gui/sysConf.cpp:2346 +msgid "Namco System 2 (2MB)" +msgstr "Namco System 2 (2 МиБ)" + +#: src/gui/sysConf.cpp:2351 +msgid "Namco System 21 (4MB)" +msgstr "Namco System 21 (4 МиБ)" + +#: src/gui/sysConf.cpp:2356 +msgid "Raw (16MB; no VGM export!)" +msgstr "Сырой (16 МиБ; не поддерживается при экспорте в VGM!)" + +#: src/gui/sysConf.cpp:2375 +msgid "Dynamic (unconfirmed)" +msgstr "Динамический (не подтверждён)" + +#: src/gui/sysConf.cpp:2379 +msgid "Static (up to 5 waves)" +msgstr "Статический (до 5 волн)" + +#: src/gui/sysConf.cpp:2414 +msgid "DS (4MB RAM)" +msgstr "DS (4 МиБ ОЗУ)" + +#: src/gui/sysConf.cpp:2418 +msgid "DSi (16MB RAM)" +msgstr "DSi (16 МиБ ОЗУ)" + +#: src/gui/sysConf.cpp:2444 src/gui/settings.cpp:727 +msgid "nothing to configure" +msgstr "настраивать нечего" + +#: src/gui/sysConf.cpp:2467 +msgid "Custom clock rate" +msgstr "Пользовательская тактовая частота" + +#: src/gui/volMeter.cpp:36 src/gui/settings.cpp:3969 src/gui/guiConst.cpp:596 +msgid "Volume Meter" +msgstr "Измеритель громкости" + +#: src/gui/userPresets.cpp:325 +msgid "User Systems" +msgstr "Пользовательские системы" + +#: src/gui/userPresets.cpp:337 +msgid "Error! User category does not exist!" +msgstr "Ошибка! Категория пользовательских пресетов не существует!" + +#: src/gui/userPresets.cpp:346 src/gui/newSong.cpp:181 +msgid "Systems" +msgstr "Системы" + +#: src/gui/userPresets.cpp:349 +msgid "New Preset" +msgstr "Новый пресет" + +#: src/gui/userPresets.cpp:361 +msgid "select a preset" +msgstr "выберите пресет" + +#: src/gui/userPresets.cpp:374 +msgid "Remove##UPresetRemove" +msgstr "Убрать##UPresetRemove" + +#: src/gui/userPresets.cpp:439 src/gui/settings.cpp:1135 +msgid "Configure" +msgstr "Настроить" + +#: src/gui/userPresets.cpp:470 +msgid "Advanced" +msgstr "Дополнительно" + +#: src/gui/userPresets.cpp:476 +msgid "" +"insert additional settings in `option=value` format.\n" +"available options:\n" +"- tickRate" +msgstr "" +"вставьте дополнительные настройки в формате `параметр=значение`.\n" +"доступные параметры:\n" +"- tickRate (частота движка трекера)" + +#: src/gui/userPresets.cpp:509 +msgid "Save and Close" +msgstr "Сохранить и закрыть" + +#: src/gui/userPresets.cpp:515 src/gui/settings.cpp:1238 +#: src/gui/settings.cpp:2161 src/gui/settings.cpp:2553 +#: src/gui/settings.cpp:3796 +msgid "Import" +msgstr "Импорт" + +#: src/gui/userPresets.cpp:519 +msgid "Import (replace)" +msgstr "Импорт (с заменой)" + +#: src/gui/effectList.cpp:14 src/gui/guiConst.cpp:606 +msgid "Effect List" +msgstr "Список эффектов" + +#: src/gui/effectList.cpp:18 +#, c-format +msgid "Chip at cursor: %s" +msgstr "Курсор на канале чипа: %s" + +#: src/gui/effectList.cpp:21 src/gui/settings.cpp:6674 +msgid "Search" +msgstr "Поиск" + +#: src/gui/effectList.cpp:25 +msgid "Effect types to show:" +msgstr "Показывать типы эффектов:" + +#: src/gui/effectList.cpp:47 +msgid "Description" +msgstr "Описание" + +#: src/gui/subSongs.cpp:22 src/gui/subSongs.cpp:32 +#, c-format +msgid "%d. " +msgstr "%d. <без названия>" + +#: src/gui/subSongs.cpp:73 src/gui/subSongs.cpp:93 +msgid "too many subsongs!" +msgstr "слишком много подпесен!" + +#: src/gui/subSongs.cpp:114 +msgid "this is the only subsong!" +msgstr "это единственная подпесня!" + +#: src/gui/subSongs.cpp:116 +msgid "are you sure you want to remove this subsong?" +msgstr "вы действительно хотите удалить эту подпесню?" + +#: src/gui/spoiler.cpp:30 +msgid "Spoiler" +msgstr "" + +#: src/gui/spoiler.cpp:32 +msgid "SPOILER" +msgstr "" + +#: src/gui/settings.cpp:104 src/gui/settings.cpp:114 src/gui/settings.cpp:124 +msgid "" +msgstr "<Использовать системный шрифт>" + +#: src/gui/settings.cpp:105 src/gui/settings.cpp:115 src/gui/settings.cpp:125 +msgid "" +msgstr "<Внешний...>" + +#: src/gui/settings.cpp:168 +msgid "ASAP (C++ port)" +msgstr "ASAP (портирован на C++)" + +#: src/gui/settings.cpp:191 +msgid "ESFMu (fast)" +msgstr "ESFMu (быстрый)" + +#: src/gui/settings.cpp:205 +msgid "Lower" +msgstr "Очень низкое" + +#: src/gui/settings.cpp:207 +msgid "Medium" +msgstr "Среднее" + +#: src/gui/settings.cpp:209 +msgid "Ultra" +msgstr "Очень высокое" + +#: src/gui/settings.cpp:210 +msgid "Ultimate" +msgstr "Максимальное" + +#: src/gui/settings.cpp:214 +msgid "evdev SND_TONE" +msgstr "" + +#: src/gui/settings.cpp:215 +msgid "KIOCSOUND on /dev/tty1" +msgstr "KIOCSOUND в /dev/tty1" + +#: src/gui/settings.cpp:216 +msgid "/dev/port" +msgstr "" + +#: src/gui/settings.cpp:217 +msgid "KIOCSOUND on standard output" +msgstr "KIOCSOUND в стандартном выводе" + +#: src/gui/settings.cpp:218 +msgid "outb()" +msgstr "" + +#: src/gui/settings.cpp:222 src/gui/settings.cpp:232 +msgid "Disabled/custom" +msgstr "Выкл./пользовательский" + +#: src/gui/settings.cpp:223 +msgid "Two octaves (0 is C-4, F is D#5)" +msgstr "Две октавы (0 = C-4, F = D#5)" + +#: src/gui/settings.cpp:224 +msgid "Raw (note number is value)" +msgstr "Сырой ввод (номер ноты - само значение)" + +#: src/gui/settings.cpp:225 +msgid "Two octaves alternate (lower keys are 0-9, upper keys are A-F)" +msgstr "Альтернативный ввод двух октав (нижние клавиши 0-9, верхние - A-F)" + +#: src/gui/settings.cpp:226 src/gui/settings.cpp:233 +msgid "Use dual control change (one for each nibble)" +msgstr "Использовать двойную смену значения контроллера (по одному на тетраду)" + +#: src/gui/settings.cpp:227 src/gui/settings.cpp:234 +msgid "Use 14-bit control change" +msgstr "Использовать 14-битную смену значения контроллера" + +#: src/gui/settings.cpp:228 src/gui/settings.cpp:235 +msgid "Use single control change (imprecise)" +msgstr "Использовать однократную смену значения контроллера (малая точность)" + +#: src/gui/settings.cpp:239 +msgid "--select--" +msgstr "--выберите--" + +#: src/gui/settings.cpp:240 src/gui/settings.cpp:241 src/gui/settings.cpp:242 +#: src/gui/settings.cpp:243 src/gui/settings.cpp:244 src/gui/settings.cpp:245 +#: src/gui/settings.cpp:246 +msgid "???" +msgstr "" + +#: src/gui/settings.cpp:247 +msgid "Note Off" +msgstr "Отпускание клавиши" + +#: src/gui/settings.cpp:248 +msgid "Note On" +msgstr "Нажатие клавиши" + +#: src/gui/settings.cpp:249 +msgid "Aftertouch" +msgstr "Давление на клавишу после нажатия" + +#: src/gui/settings.cpp:250 src/gui/insEdit.cpp:7187 src/gui/insEdit.cpp:7217 +#: src/gui/insEdit.cpp:7382 src/gui/insEdit.cpp:7403 src/gui/insEdit.cpp:7415 +#: src/gui/insEdit.cpp:7430 +msgid "Control" +msgstr "Значение контроллера" + +#: src/gui/settings.cpp:251 src/gui/settings.cpp:573 src/gui/settings.cpp:3177 +msgid "Program" +msgstr "Программа" + +#: src/gui/settings.cpp:252 +msgid "ChanPressure" +msgstr "Одинаковое давление на все нажатые клавиши в одном канале" + +#: src/gui/settings.cpp:253 +msgid "Pitch Bend" +msgstr "Смена высоты тона" + +#: src/gui/settings.cpp:254 +msgid "SysEx" +msgstr "SysEx" + +#: src/gui/settings.cpp:258 src/gui/settings.cpp:1713 src/gui/settings.cpp:1723 +#: src/gui/settings.cpp:1743 src/gui/settings.cpp:1749 +#, c-format +msgid "Any" +msgstr "Любой" + +#: src/gui/settings.cpp:262 src/gui/settings.cpp:3363 src/gui/settings.cpp:3928 +#: src/gui/settings.cpp:4121 +msgid "Instrument" +msgstr "Инструмент" + +#: src/gui/settings.cpp:264 +msgid "Effect 1 type" +msgstr "Индекс эффекта №1" + +#: src/gui/settings.cpp:265 +msgid "Effect 1 value" +msgstr "Параметр эффекта №1" + +#: src/gui/settings.cpp:266 +msgid "Effect 2 type" +msgstr "Индекс эффекта №2" + +#: src/gui/settings.cpp:267 +msgid "Effect 2 value" +msgstr "Параметр эффекта №2" + +#: src/gui/settings.cpp:268 +msgid "Effect 3 type" +msgstr "Индекс эффекта №3" + +#: src/gui/settings.cpp:269 +msgid "Effect 3 value" +msgstr "Параметр эффекта №3" + +#: src/gui/settings.cpp:270 +msgid "Effect 4 type" +msgstr "Индекс эффекта №4" + +#: src/gui/settings.cpp:271 +msgid "Effect 4 value" +msgstr "Параметр эффекта №4" + +#: src/gui/settings.cpp:272 +msgid "Effect 5 type" +msgstr "Индекс эффекта №5" + +#: src/gui/settings.cpp:273 +msgid "Effect 5 value" +msgstr "Параметр эффекта №5" + +#: src/gui/settings.cpp:274 +msgid "Effect 6 type" +msgstr "Индекс эффекта №6" + +#: src/gui/settings.cpp:275 +msgid "Effect 6 value" +msgstr "Параметр эффекта №6" + +#: src/gui/settings.cpp:276 +msgid "Effect 7 type" +msgstr "Индекс эффекта №7" + +#: src/gui/settings.cpp:277 +msgid "Effect 7 value" +msgstr "Параметр эффекта №7" + +#: src/gui/settings.cpp:278 +msgid "Effect 8 type" +msgstr "Индекс эффекта №8" + +#: src/gui/settings.cpp:279 +msgid "Effect 8 value" +msgstr "Параметр эффекта №8" + +#: src/gui/settings.cpp:315 +msgid "Press key..." +msgstr "Нажмите клавишу..." + +#: src/gui/settings.cpp:564 +msgid "Do you want to save your settings?" +msgstr "Вы хотите сохранить свои настройки?" + +#: src/gui/settings.cpp:571 +msgid "General" +msgstr "Основные" + +#: src/gui/settings.cpp:588 +msgid "Language" +msgstr "Язык" + +#: src/gui/settings.cpp:606 +msgid "Render backend" +msgstr "Библиотека отрисовки" + +#: src/gui/settings.cpp:661 src/gui/settings.cpp:680 src/gui/settings.cpp:1312 +msgid "you may need to restart Furnace for this setting to take effect." +msgstr "" + +#: src/gui/settings.cpp:664 +msgid "Advanced render backend settings" +msgstr "Продвинутые настройки библиотеки отрисовки" + +#: src/gui/settings.cpp:666 +msgid "Render driver" +msgstr "Драйвер отрисовки" + +#: src/gui/settings.cpp:666 src/gui/settings.cpp:667 src/gui/settings.cpp:1298 +#: src/gui/settings.cpp:1299 src/gui/piano.cpp:108 +msgid "Automatic" +msgstr "Автоматически" + +#: src/gui/settings.cpp:683 +msgid "" +"beware: changing these settings may render Furnace unusable! do so at your " +"own risk.\n" +"start Furnace with -safemode if you mess something up." +msgstr "" +"внимание: изменение этих настроек может нарушить работу Furnace! изменяйте " +"их на свой страх и риск.\n" +"вы можете перезапустить Furnace с опцией -safemode, если вы что-то сломали." + +#: src/gui/settings.cpp:684 +msgid "Red bits" +msgstr "Биты красной составляющей" + +#: src/gui/settings.cpp:689 +msgid "Green bits" +msgstr "Биты зелёной составляющей" + +#: src/gui/settings.cpp:694 +msgid "Blue bits" +msgstr "Биты синей составляющей" + +#: src/gui/settings.cpp:699 +msgid "Alpha bits" +msgstr "Биты составляющей прозрачности" + +#: src/gui/settings.cpp:704 +msgid "Color depth" +msgstr "Глубина цвета" + +#: src/gui/settings.cpp:709 +msgid "Stencil buffer size" +msgstr "Размер трафаретного буфера" + +#: src/gui/settings.cpp:714 src/gui/settings.cpp:1385 +msgid "Buffer size" +msgstr "Размер буфера" + +#: src/gui/settings.cpp:720 +msgid "Double buffer" +msgstr "Двойная буферизация" + +#: src/gui/settings.cpp:725 +msgid "" +"the following values are common (in red, green, blue, alpha order):\n" +"- 24 bits: 8, 8, 8, 0\n" +"- 16 bits: 5, 6, 5, 0\n" +"- 32 bits (with alpha): 8, 8, 8, 8\n" +"- 30 bits (deep): 10, 10, 10, 0" +msgstr "" +"распространёнными являются следующие значения (в порядке красный, зелёный, " +"синий, прозрачность):\n" +"- 24 бита: 8, 8, 8, 0\n" +"- 16 бит: 5, 6, 5, 0\n" +"- 32 бита (с прозрачностью): 8, 8, 8, 8\n" +"- 30 бит (глубокое квантование цвета): 10, 10, 10, 0" + +#: src/gui/settings.cpp:732 +#, c-format +msgid "" +"current backend: %s\n" +"%s\n" +"%s\n" +"%s" +msgstr "" +"текущая библиотека отрисовки: %s\n" +"%s\n" +"%s\n" +"%s" + +#: src/gui/settings.cpp:735 +msgid "VSync" +msgstr "Вертикальная синхронизация" + +#: src/gui/settings.cpp:743 +msgid "Frame rate limit" +msgstr "Ограничение частоты кадров" + +#: src/gui/settings.cpp:743 +msgid "Unlimited" +msgstr "" + +#: src/gui/settings.cpp:749 +msgid "only applies when VSync is disabled." +msgstr "применяется только при отключённой вертикальной синхронизации." + +#: src/gui/settings.cpp:753 +msgid "Display render time" +msgstr "Отображать время отрисовки" + +#: src/gui/settings.cpp:760 +msgid "Late render clear" +msgstr "Запаздывающая очистка буфера отрисовщика" + +#: src/gui/settings.cpp:765 +msgid "" +"calls rend->clear() after rend->present(). might reduce UI latency by one " +"frame in some drivers." +msgstr "" +"вызывает rend->clear() после rend->present(). может устранить запаздывание " +"отрисовки интерфейса на один кадр для некоторых драйверов." + +#: src/gui/settings.cpp:770 +msgid "Power-saving mode" +msgstr "Режим энергосбережения" + +#: src/gui/settings.cpp:775 +msgid "" +"saves power by lowering the frame rate to 2fps when idle.\n" +"may cause issues under Mesa drivers!" +msgstr "" +"уменьшает энергопотребление при помощи уменьшения частоты отрисовки до двух " +"кадров в секунду в режиме ожидания.\n" +"может приводить к проблемам на драйверах Mesa!" + +#: src/gui/settings.cpp:780 +msgid "Disable threaded input (restart after changing!)" +msgstr "" +"Отключить обработку нажатий для превью инструмента в отдельном потоке " +"(перезагрузите программу после изменения!)" + +#: src/gui/settings.cpp:785 +msgid "" +"threaded input processes key presses for note preview on a separate thread " +"(on supported platforms), which reduces latency.\n" +"however, crashes have been reported when threaded input is on. enable this " +"option if that is the case." +msgstr "" +"обработка нажатий клавиш для превью инструмента происходит в отдельном " +"потоке (на поддерживаемых платформах), что позволяет уменьшить задержку " +"ввода.\n" +"тем не менее, есть сообщения о вылетах программы при выключённой настройке. " +"включите её, если у вас программа вылетает." + +#: src/gui/settings.cpp:790 +msgid "Enable event delay" +msgstr "Включить задержку событий" + +#: src/gui/settings.cpp:796 +msgid "may cause issues with high-polling-rate mice when previewing notes." +msgstr "" +"может привести к проблемам во время превью инструмента, если подключена мышь " +"с большой частотой обновления." + +#: src/gui/settings.cpp:800 +msgid "Per-channel oscilloscope threads" +msgstr "Потоки исполнения осциллографов для отдельных каналов" + +#: src/gui/settings.cpp:808 +msgid "you're being silly, aren't you? that's enough." +msgstr "может, хватит уже хернёй страдать? этого достаточно." + +#: src/gui/settings.cpp:812 +msgid "what are you doing? stop!" +msgstr "ты чё делаешь? хватит!" + +#: src/gui/settings.cpp:816 +#, c-format +msgid "" +"it is a bad idea to set this number higher than your CPU core count (%d)!" +msgstr "" +"не рекомендуется выставлять здесь значение, большее количества ядер вашего " +"ЦП (%d)!" + +#: src/gui/settings.cpp:821 +msgid "Oscilloscope rendering engine:" +msgstr "Движок отрисовки осциллографов:" + +#: src/gui/settings.cpp:823 +msgid "ImGui line plot" +msgstr "Отрисовка линий от ImGui" + +#: src/gui/settings.cpp:827 +msgid "render using Dear ImGui's built-in line drawing functions." +msgstr "отрисовывать при помощи встроенных функций отрисовки линий Dear ImGui." + +#: src/gui/settings.cpp:829 +msgid "GLSL (if available)" +msgstr "GLSL (при наличии)" + +#: src/gui/settings.cpp:834 +msgid "" +"render using shaders that run on the graphics card.\n" +"only available in OpenGL ES 2.0 render backend." +msgstr "" +"отрисовывать при помощи шейдеров, исполняемых на ГП.\n" +"работает только при выборе OpenGL ES 2.0 в качестве библиотеки отрисовки." + +#: src/gui/settings.cpp:836 +msgid "" +"render using shaders that run on the graphics card.\n" +"only available in OpenGL 3.0 render backend." +msgstr "" +"отрисовывать при помощи шейдеров, исполняемых на ГП.\n" +"работает только при выборе OpenGL 3.0 в качестве библиотеки отрисовки." + +#: src/gui/settings.cpp:843 +msgid "Vibration" +msgstr "Вибрация" + +#: src/gui/settings.cpp:845 +msgid "Strength" +msgstr "Сила вибрации" + +#: src/gui/settings.cpp:851 src/gui/insEdit.cpp:2284 src/gui/insEdit.cpp:2382 +#: src/gui/insEdit.cpp:5582 src/gui/insEdit.cpp:6241 +msgid "Length" +msgstr "Длина вибрации" + +#: src/gui/settings.cpp:859 src/gui/gui.cpp:4191 +msgid "File" +msgstr "Файл" + +#: src/gui/settings.cpp:862 +msgid "Use system file picker" +msgstr "Использовать диалоговое окно выбора файлов ОС" + +#: src/gui/settings.cpp:867 +msgid "Number of recent files" +msgstr "Количество недавних файлов" + +#: src/gui/settings.cpp:874 +msgid "Compress when saving" +msgstr "Сжимать сохраняемые файлы" + +#: src/gui/settings.cpp:879 +msgid "use zlib to compress saved songs." +msgstr "использовать библиотеку zlib для сжатия сохраняемых модулей." + +#: src/gui/settings.cpp:883 +msgid "Save unused patterns" +msgstr "Сохранять неиспользуемые паттерны" + +#: src/gui/settings.cpp:889 +msgid "Use new pattern format when saving" +msgstr "Использовать новый формат сохранения паттернов" + +#: src/gui/settings.cpp:894 +msgid "" +"use a packed format which saves space when saving songs.\n" +"disable if you need compatibility with older Furnace and/or tools\n" +"which do not support this format." +msgstr "" +"использовать сжатый формат сохранения паттернов, что позволяет уменьшить " +"размер файла с модулем.\n" +"отключите, если нужна совместимость со старыми версиями Furnace и/или " +"другими программами,\n" +"которые не поддерживают новый формат." + +#: src/gui/settings.cpp:898 +msgid "Don't apply compatibility flags when loading .dmf" +msgstr "Не применять флаги совместимости при загрузке .dmf" + +#: src/gui/settings.cpp:903 +msgid "do not report any issues arising from the use of this option!" +msgstr "" +"не жалуйтесь на проблемы, которые возникнут после включения этой настройки!" + +#: src/gui/settings.cpp:906 +msgid "Play after opening song:" +msgstr "Проигрывание модуля после его загрузки:" + +#: src/gui/settings.cpp:908 +msgid "No##pol0" +msgstr "Нет##pol0" + +#: src/gui/settings.cpp:912 +msgid "Only if already playing##pol1" +msgstr "Только если до этого уже играл##pol1" + +#: src/gui/settings.cpp:916 +msgid "Yes##pol0" +msgstr "Да##pol0" + +#: src/gui/settings.cpp:922 +msgid "Audio export loop/fade out time:" +msgstr "Количество циклов проигрывания и время затухания при экспорте аудио:" + +#: src/gui/settings.cpp:924 +msgid "Set to these values on start-up:##fot0" +msgstr "Выставить эти значения при запуске:##fot0" + +#: src/gui/settings.cpp:942 +msgid "Remember last values##fot1" +msgstr "Запоминать предыдущие значения##fot1" + +#: src/gui/settings.cpp:949 +msgid "Store instrument name in .fui" +msgstr "Сохранять название инструмента в файле .fui" + +#: src/gui/settings.cpp:954 +msgid "" +"when enabled, saving an instrument will store its name.\n" +"this may increase file size." +msgstr "" +"При включении имя инструмента будет сохраняться в файле.\n" +"это может увеличить размер файла." + +#: src/gui/settings.cpp:958 +msgid "Load instrument name from .fui" +msgstr "Загружать имя инструмента из файла .fui" + +#: src/gui/settings.cpp:963 +msgid "" +"when enabled, loading an instrument will use the stored name (if present).\n" +"otherwise, it will use the file name." +msgstr "" +"При включении имя инструмента будет загружаться из файла (при наличии имени " +"в файле).\n" +"В противном случае будет использоваться имя файла." + +#: src/gui/settings.cpp:967 +msgid "Auto-fill file name when saving" +msgstr "Автоматически подставлять имя файла при сохранении" + +#: src/gui/settings.cpp:972 +msgid "" +"fill the file name field with an appropriate file name when saving or " +"exporting." +msgstr "подставлять соответствующее имя файла при экспорте или сохранении." + +#: src/gui/settings.cpp:976 src/gui/gui.cpp:5563 src/gui/gui.cpp:5613 +msgid "New Song" +msgstr "Новая композиция" + +#: src/gui/settings.cpp:978 +msgid "Initial system:" +msgstr "Система по умолчанию:" + +#: src/gui/settings.cpp:980 +msgid "Current system" +msgstr "Текущая" + +#: src/gui/settings.cpp:993 src/gui/waveEdit.cpp:1149 src/gui/gui.cpp:3046 +msgid "Randomize" +msgstr "Заполнить" + +#: src/gui/settings.cpp:1043 +msgid "Reset to defaults" +msgstr "Устан. по умолчанию" + +#: src/gui/settings.cpp:1178 +msgid "When creating new song:" +msgstr "При создании новой композиции:" + +#: src/gui/settings.cpp:1180 +msgid "Display system preset selector##NSB0" +msgstr "Отобразить окно выбора пресета системы##NSB0" + +#: src/gui/settings.cpp:1184 +msgid "Start with initial system##NSB1" +msgstr "Начать с системы по умолчанию##NSB1" + +#: src/gui/settings.cpp:1188 +msgid "Default author name" +msgstr "Имя автора по умолчанию" + +#: src/gui/settings.cpp:1192 +msgid "Start-up" +msgstr "Запуск" + +#: src/gui/settings.cpp:1193 +msgid "Play intro on start-up:" +msgstr "" + +#: src/gui/settings.cpp:1195 +msgid "No##pis0" +msgstr "" + +#: src/gui/settings.cpp:1199 +msgid "Short##pis1" +msgstr "" + +#: src/gui/settings.cpp:1203 +msgid "Full (short when loading song)##pis2" +msgstr "" + +#: src/gui/settings.cpp:1207 +msgid "Full (always)##pis3" +msgstr "" + +#: src/gui/settings.cpp:1214 +msgid "Disable fade-in during start-up" +msgstr "Отключить плавное появление интерфейса при запуске" + +#: src/gui/settings.cpp:1220 +msgid "About screen party time" +msgstr "Вечеринка на экране \"О программе\"" + +#: src/gui/settings.cpp:1225 +msgid "Warning: may cause epileptic seizures." +msgstr "Внимание: может вызвать эпилептические приступы." + +#: src/gui/settings.cpp:1229 +msgid "Behavior" +msgstr "Поведение программы" + +#: src/gui/settings.cpp:1231 +msgid "New instruments are blank" +msgstr "Пустые новые инструменты" + +#: src/gui/settings.cpp:1237 src/gui/settings.cpp:4255 +msgid "Configuration" +msgstr "Настройки программы" + +#: src/gui/settings.cpp:1246 +msgid "Factory Reset" +msgstr "Сброс на заводские настройки" + +#: src/gui/settings.cpp:1247 +msgid "" +"Are you sure you want to reset all Furnace settings?\n" +"You must restart Furnace after doing so." +msgstr "" +"Вы уверены, что хотите сбросить все настройки Furnace?\n" +"Вам нужно будет перезапустить Furnace после этого." + +#: src/gui/settings.cpp:1255 +msgid "Output" +msgstr "Вывод" + +#: src/gui/settings.cpp:1263 +msgid "Backend" +msgstr "Интерфейс" + +#: src/gui/settings.cpp:1296 +msgid "Driver" +msgstr "Драйвер" + +#: src/gui/settings.cpp:1319 +msgid "Device" +msgstr "Устройство вывода" + +#: src/gui/settings.cpp:1323 +msgid "" +msgstr "<сначала нажмите на кнопки \"ОК\" или \"Применить\">" + +#: src/gui/settings.cpp:1324 +msgid "ALERT - TRESPASSER DETECTED" +msgstr "ВНИМАНИЕ - ОБНАРУЖЕН НАРУШИТЕЛЬ" + +#: src/gui/settings.cpp:1326 +msgid "you have been arrested for trying to engage with a disabled combo box." +msgstr "" +"вы были арестованы за попытку взаимодействия с выключенным выпадающим " +"списком." + +#: src/gui/settings.cpp:1333 src/gui/settings.cpp:1335 +msgid "" +msgstr "<По умолчанию>" + +#: src/gui/settings.cpp:1371 src/gui/insEdit.cpp:7186 +msgid "Outputs" +msgstr "Выводы" + +#: src/gui/settings.cpp:1379 +msgid "" +"common values:\n" +"- 1 for mono\n" +"- 2 for stereo\n" +"- 4 for quadraphonic\n" +"- 6 for 5.1 surround\n" +"- 8 for 7.1 surround" +msgstr "" +"распространённые значения:\n" +"- 1 для моно\n" +"- 2 для стерео\n" +"- 4 для квадрафонического звука\n" +"- 6 для 5.1 объёмного звука\n" +"- 8 для 7.1 объёмного звука" + +#: src/gui/settings.cpp:1387 +#, c-format +msgid "%d (latency: ~%.1fms)" +msgstr "%d (задержка: ~%.1f мс)" + +#: src/gui/settings.cpp:1402 +msgid "Multi-threaded (EXPERIMENTAL)" +msgstr "Многопоточность (ЭКСПЕРИМЕНТАЛЬНАЯ)" + +#: src/gui/settings.cpp:1411 +msgid "" +"runs chip emulation on separate threads.\n" +"may increase performance when using heavy emulation cores.\n" +"\n" +"warnings:\n" +"- experimental!\n" +"- only useful on multi-chip songs." +msgstr "" +"исполняет эмуляторы чипов в отдельных потоках.\n" +"может повысить производительность при использовании тяжёлых эмуляторов.\n" +"\n" +"внимание:\n" +"- экспериментальная функция!\n" +"- полезна только для композиций, использующих несколько чипов." + +#: src/gui/settings.cpp:1416 +msgid "Number of threads" +msgstr "Количество потоков" + +#: src/gui/settings.cpp:1423 +msgid "that's the limit!" +msgstr "это предел!" + +#: src/gui/settings.cpp:1427 +#, c-format +msgid "" +"it is a VERY bad idea to set this number higher than your CPU core count " +"(%d)!" +msgstr "" +"это ОЧЕНЬ плохая идея - устанавливать это значение большим, чем колчество " +"ядер ЦП (%d)!" + +#: src/gui/settings.cpp:1435 +msgid "Low-latency mode" +msgstr "Режим малой задержки" + +#: src/gui/settings.cpp:1440 +msgid "" +"reduces latency by running the engine faster than the tick rate.\n" +"useful for live playback/jam mode.\n" +"\n" +"warning: only enable if your buffer size is small (10ms or less)." +msgstr "" +"уменьшает задержку, исполняя код движка трекера быстрее, чем указано в " +"настройках.\n" +"полезно для режима исполнения в реальном времени.\n" +"\n" +"внимание: включайте только если размер вашего аудиобуфера мал (10 мс или " +"меньше)." + +#: src/gui/settings.cpp:1444 +msgid "Force mono audio" +msgstr "Принудительно сводить в моно" + +#: src/gui/settings.cpp:1452 +msgid "Exclusive mode" +msgstr "Исключительный режим" + +#: src/gui/settings.cpp:1463 +#, c-format +msgid "want: %d samples @ %.0fHz (%d channel)" +msgid_plural "want: %d samples @ %.0fHz (%d channels)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/gui/settings.cpp:1464 +#, c-format +msgid "got: %d samples @ %.0fHz (%d channel)" +msgid_plural "got: %d samples @ %.0fHz (%d channels)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/gui/settings.cpp:1471 +msgid "Mixing" +msgstr "Микширование" + +#: src/gui/settings.cpp:1473 src/gui/settings.cpp:2082 +msgid "Quality" +msgstr "Качество" + +#: src/gui/settings.cpp:1478 +msgid "Software clipping" +msgstr "Программное ограничение сигнала" + +#: src/gui/settings.cpp:1484 +msgid "DC offset correction" +msgstr "Коррекция смещения пост. составляющей" + +#: src/gui/settings.cpp:1502 src/gui/guiConst.cpp:740 +msgid "Sample preview" +msgstr "Превью сэмпла" + +#: src/gui/settings.cpp:1515 +msgid "MIDI" +msgstr "MIDI" + +#: src/gui/settings.cpp:1517 src/gui/settings.cpp:1519 +msgid "MIDI input" +msgstr "Ввод MIDI" + +#: src/gui/settings.cpp:1521 src/gui/settings.cpp:1524 +#: src/gui/settings.cpp:1815 src/gui/settings.cpp:1817 +msgid "" +msgstr "<выкл.>" + +#: src/gui/settings.cpp:1540 +msgid "Re-scan MIDI devices" +msgstr "Перезап. скан. для обнаруж. MIDI-устройств" + +#: src/gui/settings.cpp:1551 src/gui/settings.cpp:2258 +msgid "Note input" +msgstr "Ввод нот" + +#: src/gui/settings.cpp:1552 +msgid "Velocity input" +msgstr "Ввод скорости нажатия" + +#: src/gui/settings.cpp:1556 +msgid "Map MIDI channels to direct channels" +msgstr "Привязать MIDI-каналы к прямым каналам" + +#: src/gui/settings.cpp:1562 +msgid "Program change pass-through" +msgstr "Пропускать на выход сообщения об изменении программы" + +#: src/gui/settings.cpp:1567 +msgid "Map Yamaha FM voice data to instruments" +msgstr "Привязать данные тембров Yamaha FM к инструментам" + +#: src/gui/settings.cpp:1569 +msgid "Program change is instrument selection" +msgstr "Смена программы = выбор инструмента" + +#: src/gui/settings.cpp:1573 +msgid "Value input style" +msgstr "Стиль ввода значений" + +#: src/gui/settings.cpp:1576 src/gui/settings.cpp:1601 +msgid "Control##valueCCS" +msgstr "Управление##valueCCS" + +#: src/gui/settings.cpp:1582 src/gui/settings.cpp:1607 +msgid "CC of upper nibble##valueCC1" +msgstr "Управляющая команда для верхней тетрады##valueCC1" + +#: src/gui/settings.cpp:1582 src/gui/settings.cpp:1607 +msgid "MSB CC##valueCC1" +msgstr "Управл. ком. для старш. бита##valueCC1" + +#: src/gui/settings.cpp:1587 src/gui/settings.cpp:1612 +msgid "CC of lower nibble##valueCC2" +msgstr "Управляющая команда для нижней тетрады##valueCC2" + +#: src/gui/settings.cpp:1587 src/gui/settings.cpp:1612 +msgid "LSB CC##valueCC2" +msgstr "Управл. ком. для младш. бита##valueCC2" + +#: src/gui/settings.cpp:1594 +msgid "Per-column control change" +msgstr "Изменение управления для каждого столбца" + +#: src/gui/settings.cpp:1624 src/gui/settings.cpp:1634 +msgid "Volume curve" +msgstr "Кривая громкости" + +#: src/gui/settings.cpp:1637 +msgid "Actions:" +msgstr "Действия:" + +#: src/gui/settings.cpp:1651 +msgid "" +"(learning! press a button or move a slider/knob/something on your device.)" +msgstr "(обучение! нажмите кнопку или подвигайте что-то на вашем устройстве.)" + +#: src/gui/settings.cpp:1665 src/gui/settings.cpp:2277 +#: src/gui/settings.cpp:6687 src/gui/sampleEdit.cpp:501 +#: src/gui/insEdit.cpp:5321 +msgid "Type" +msgstr "Тип" + +#: src/gui/settings.cpp:1669 +msgid "Note/Control" +msgstr "Нота/управление" + +#: src/gui/settings.cpp:1671 +msgid "Velocity/Value" +msgstr "Скор. наж./парам." + +#: src/gui/settings.cpp:1673 +msgid "Action" +msgstr "Действие" + +#: src/gui/settings.cpp:1765 src/gui/settings.cpp:1766 +msgid "--none--" +msgstr "--нет--" + +#: src/gui/settings.cpp:1787 +msgid "waiting...##BLearn" +msgstr "ожидание...##BLearn" + +#: src/gui/settings.cpp:1787 +msgid "Learn##BLearn" +msgstr "Запомнить##BLearn" + +#: src/gui/settings.cpp:1811 src/gui/settings.cpp:1813 +msgid "MIDI output" +msgstr "MIDI вывод" + +#: src/gui/settings.cpp:1830 +msgid "Output mode:" +msgstr "Режим вывода:" + +#: src/gui/settings.cpp:1832 +msgid "Off (use for TX81Z)" +msgstr "Выкл. (используйте для TX81Z)" + +#: src/gui/settings.cpp:1836 +msgid "Melodic" +msgstr "Мелодия" + +#: src/gui/settings.cpp:1847 +msgid "Send Program Change" +msgstr "Посылать команду изменения программы" + +#: src/gui/settings.cpp:1853 +msgid "Send MIDI clock" +msgstr "Посылать тактовую частоту MIDI" + +#: src/gui/settings.cpp:1859 +msgid "Send MIDI timecode" +msgstr "Посылать временной код MIDI" + +#: src/gui/settings.cpp:1865 +msgid "Timecode frame rate:" +msgstr "Частота посылок временного кода:" + +#: src/gui/settings.cpp:1867 +msgid "Closest to Tick Rate" +msgstr "Ближайшая к частоте движка трекера" + +#: src/gui/settings.cpp:1871 +msgid "Film (24fps)" +msgstr "Киноплёнка (24 кадра в секунду)" + +#: src/gui/settings.cpp:1875 +msgid "PAL (25fps)" +msgstr "PAL (25 кадров в секунду)" + +#: src/gui/settings.cpp:1879 +msgid "NTSC drop (29.97fps)" +msgstr "NTSC с выпадением кадров (29.97 кадров в секунду)" + +#: src/gui/settings.cpp:1883 +msgid "NTSC non-drop (30fps)" +msgstr "NTSC без выпадения кадров (30 кадров в секунду)" + +#: src/gui/settings.cpp:1892 +msgid "Emulation" +msgstr "Эмуляция" + +#: src/gui/settings.cpp:1894 +msgid "Cores" +msgstr "Ядра эмуляции" + +#: src/gui/settings.cpp:1903 +msgid "Playback Core(s)" +msgstr "Ядро(-а) воспроизведения" + +#: src/gui/settings.cpp:1905 src/gui/settings.cpp:2093 +msgid "used for playback" +msgstr "используется(-ются) для воспроизведения" + +#: src/gui/settings.cpp:1908 +msgid "Render Core(s)" +msgstr "Ядро(-а) рендера" + +#: src/gui/settings.cpp:1910 src/gui/settings.cpp:2098 +msgid "used in audio export" +msgstr "используется(-ются) при рендере звука в аудиофайл" + +#: src/gui/settings.cpp:2091 +msgid "Playback" +msgstr "Воспроизведение" + +#: src/gui/settings.cpp:2096 +msgid "Render" +msgstr "Рендер" + +#: src/gui/settings.cpp:2120 +msgid "PC Speaker strategy" +msgstr "Взаимодействие с PC Speaker" + +#: src/gui/settings.cpp:2158 src/gui/settings.cpp:2160 +msgid "Keyboard" +msgstr "Клавиатура" + +#: src/gui/settings.cpp:2169 src/gui/settings.cpp:3804 +msgid "Reset defaults" +msgstr "Сбросить до настроек по умолчанию" + +#: src/gui/settings.cpp:2170 +msgid "Are you sure you want to reset the keyboard settings?" +msgstr "Вы действительно хотите сбросить настройки привязки клавиш?" + +#: src/gui/settings.cpp:2172 +msgid "Global hotkeys" +msgstr "Глобальные горячие клавиши" + +#: src/gui/settings.cpp:2209 +msgid "Window activation" +msgstr "Активация окон" + +#: src/gui/settings.cpp:2275 +msgid "Key" +msgstr "Клавиша" + +#: src/gui/settings.cpp:2279 src/gui/findReplace.cpp:725 +#: src/gui/findReplace.cpp:1003 +msgid "Value" +msgstr "Параметр" + +#: src/gui/settings.cpp:2289 +#, c-format +msgid "Macro release##SNType_%d" +msgstr "\"Отпускание клавиши\" (только для макросов)##SNType_%d" + +#: src/gui/settings.cpp:2294 +#, c-format +msgid "Note release##SNType_%d" +msgstr "" +"\"Отпускание клавиши\" (с включением фазы затухания огибающей)##SNType_%d" + +#: src/gui/settings.cpp:2299 +#, c-format +msgid "Note off##SNType_%d" +msgstr "\"Отпускание клавиши\" (резкое)##SNType_%d" + +#: src/gui/settings.cpp:2304 +#, c-format +msgid "Note##SNType_%d" +msgstr "Нота##SNType_%d" + +#: src/gui/settings.cpp:2328 +msgid "Add..." +msgstr "Добавить..." + +#: src/gui/settings.cpp:2418 +msgid "Instrument list" +msgstr "Список инструментов" + +#: src/gui/settings.cpp:2438 +msgid "Wavetable list" +msgstr "Список волновых таблиц" + +#: src/gui/settings.cpp:2459 +msgid "Sample list" +msgstr "Список сэмплов" + +#: src/gui/settings.cpp:2509 +msgid "Sample editor" +msgstr "Редактор сэмплов" + +#: src/gui/settings.cpp:2547 src/gui/settings.cpp:3814 +#: src/gui/settings.cpp:3844 +msgid "Interface" +msgstr "Интерфейс" + +#: src/gui/settings.cpp:2549 +msgid "Layout" +msgstr "Компоновка интерфейса" + +#: src/gui/settings.cpp:2551 +msgid "Workspace layout:" +msgstr "Расположение окон интерфейса:" + +#: src/gui/settings.cpp:2561 src/gui/gui.cpp:2920 +msgid "Reset" +msgstr "Сбросить" + +#: src/gui/settings.cpp:2562 src/gui/gui.cpp:4455 +msgid "Are you sure you want to reset the workspace layout?" +msgstr "Вы уверены, что хотите сброить компоновку окон интерфейса?" + +#: src/gui/settings.cpp:2566 +msgid "Allow docking editors" +msgstr "Разрешить стыковать окна редакторов" + +#: src/gui/settings.cpp:2573 +msgid "Remember window position" +msgstr "Запоминать положение окон" + +#: src/gui/settings.cpp:2578 +msgid "remembers the window's last position on start-up." +msgstr "" +"при запуске программы восстанавливает последнее положение каждого окна." + +#: src/gui/settings.cpp:2583 +msgid "Only allow window movement when clicking on title bar" +msgstr "Разрешать перемещение окон только при нажатии на их полосу заголовка" + +#: src/gui/settings.cpp:2590 +msgid "Center pop-up windows" +msgstr "Центрировать всплывающие окна" + +#: src/gui/settings.cpp:2595 +msgid "Play/edit controls layout:" +msgstr "Компоновка управления воспроизведением/редактированием:" + +#: src/gui/settings.cpp:2597 +msgid "Classic##ecl0" +msgstr "Классическая##ecl0" + +#: src/gui/settings.cpp:2601 +msgid "Compact##ecl1" +msgstr "Компактная##ecl1" + +#: src/gui/settings.cpp:2605 +msgid "Compact (vertical)##ecl2" +msgstr "Компактная (вертикальная)##ecl2" + +#: src/gui/settings.cpp:2609 +msgid "Split##ecl3" +msgstr "С разделением на два окна##ecl3" + +#: src/gui/settings.cpp:2615 +msgid "Position of buttons in Orders:" +msgstr "Позиция кнопок в редакторе матрицы паттернов:" + +#: src/gui/settings.cpp:2617 +msgid "Top##obp0" +msgstr "Сверху##obp0" + +#: src/gui/settings.cpp:2621 +msgid "Left##obp1" +msgstr "Слева##obp1" + +#: src/gui/settings.cpp:2625 +msgid "Right##obp2" +msgstr "Справа##obp2" + +#: src/gui/settings.cpp:2632 +msgid "Mouse" +msgstr "Мышь" + +#: src/gui/settings.cpp:2634 +msgid "Double-click time (seconds)" +msgstr "Время двойного нажатия (в секундах)" + +#: src/gui/settings.cpp:2643 +msgid "Don't raise pattern editor on click" +msgstr "Не поднимать редактор паттернов при нажатии" + +#: src/gui/settings.cpp:2649 +msgid "Focus pattern editor when selecting instrument" +msgstr "Переместить фокус на редактор паттернов при выборе инструмента" + +#: src/gui/settings.cpp:2654 +msgid "Note preview behavior:" +msgstr "Превью нот:" + +#: src/gui/settings.cpp:2656 +msgid "Never##npb0" +msgstr "Никогда##npb0" + +#: src/gui/settings.cpp:2660 +msgid "When cursor is in Note column##npb1" +msgstr "Когда курсор находится в столбце нот##npb1" + +#: src/gui/settings.cpp:2664 +msgid "When cursor is in Note column or not in edit mode##npb2" +msgstr "" +"Когда курсор находится в столбце нот или не включён режим " +"редактирования##npb2" + +#: src/gui/settings.cpp:2668 +msgid "Always##npb3" +msgstr "Всегда##npb3" + +#: src/gui/settings.cpp:2674 +msgid "Allow dragging selection:" +msgstr "Разрешить перемещение выделенного фрагмента:" + +#: src/gui/settings.cpp:2676 +msgid "No##dms0" +msgstr "Нет##dms0" + +#: src/gui/settings.cpp:2680 +msgid "Yes##dms1" +msgstr "Да##dms1" + +#: src/gui/settings.cpp:2684 +msgid "Yes (while holding Ctrl only)##dms2" +msgstr "Да (только при нажатой клавише Ctrl)##dms2" + +#: src/gui/settings.cpp:2690 +msgid "Toggle channel solo on:" +msgstr "Включать режим соло для канала:" + +#: src/gui/settings.cpp:2692 +msgid "Right-click or double-click##soloA" +msgstr "ПКМ или двойное нажатие##soloA" + +#: src/gui/settings.cpp:2696 +msgid "Right-click##soloR" +msgstr "ПКМ##soloR" + +#: src/gui/settings.cpp:2700 +msgid "Double-click##soloD" +msgstr "Двойное нажатие##soloD" + +#: src/gui/settings.cpp:2707 +msgid "Double click selects entire column" +msgstr "Двойное нажатие выделяет весь столбец" + +#: src/gui/settings.cpp:2713 +msgid "Cursor behavior" +msgstr "Поведение курсора" + +#: src/gui/settings.cpp:2715 +msgid "Insert pushes entire channel row" +msgstr "Клавиша Insert сдвигает паттерны на всех каналах" + +#: src/gui/settings.cpp:2721 +msgid "Pull delete affects entire channel row" +msgstr "" +"Удаление с подтягиванием следующих строк сдвигает паттерны на всех каналах" + +#: src/gui/settings.cpp:2727 +msgid "Push value when overwriting instead of clearing it" +msgstr "" +"Отодвинуть значение ячейки в соседнюю вместо удаления при перезаписи ячейки" + +#: src/gui/settings.cpp:2733 +msgid "Keyboard note/value input repeat (hold key to input continuously)" +msgstr "" +"Повторяющийся ввод нот/значений с клавиатуры (удерживайте клавишу для " +"постоянного ввода" + +#: src/gui/settings.cpp:2738 +msgid "Effect input behavior:" +msgstr "Ввод эффектов:" + +#: src/gui/settings.cpp:2740 +msgid "Move down##eicb0" +msgstr "перемещаться вниз##eicb0" + +#: src/gui/settings.cpp:2744 +msgid "Move to effect value (otherwise move down)##eicb1" +msgstr "Перепрыгнуть на параметр эффекта (иначе перемещаться вниз)##eicb1" + +#: src/gui/settings.cpp:2748 +msgid "Move to effect value/next effect and wrap around##eicb2" +msgstr "" +"Перепрыгнуть на параметр эффекта/следующий эффект, в конце строки " +"перепрыгнуть в начало строки эффектов##eicb2" + +#: src/gui/settings.cpp:2755 +msgid "Delete effect value when deleting effect" +msgstr "Удалять параметр эффекта при удалении эффекта" + +#: src/gui/settings.cpp:2761 +msgid "Change current instrument when changing instrument column (absorb)" +msgstr "Изменять выделенный инструмент при редактировании столбца инструмента" + +#: src/gui/settings.cpp:2767 +msgid "Remove instrument value when inserting note off/release" +msgstr "Удалять значение столбца инструмента при вводе ноты OFF/===" + +#: src/gui/settings.cpp:2773 +msgid "Remove volume value when inserting note off/release" +msgstr "Удалять значение столбца громкости при вводе ноты OFF/===" + +#: src/gui/settings.cpp:2779 +msgid "Cursor movement" +msgstr "Передвижение курсора" + +#: src/gui/settings.cpp:2781 +msgid "Wrap horizontally:" +msgstr "Переносить по горизонтали:" + +#: src/gui/settings.cpp:2783 +msgid "No##wrapH0" +msgstr "Нет##wrapH0" + +#: src/gui/settings.cpp:2787 +msgid "Yes##wrapH1" +msgstr "Да##wrapH1" + +#: src/gui/settings.cpp:2791 +msgid "Yes, and move to next/prev row##wrapH2" +msgstr "Да, и переходить на следующую/предыдущую строку##wrapH2" + +#: src/gui/settings.cpp:2797 +msgid "Wrap vertically:" +msgstr "Переносить по вертикали:" + +#: src/gui/settings.cpp:2799 +msgid "No##wrapV0" +msgstr "Нет##wrapV0" + +#: src/gui/settings.cpp:2803 +msgid "Yes##wrapV1" +msgstr "Да##wrapV1" + +#: src/gui/settings.cpp:2807 +msgid "Yes, and move to next/prev pattern##wrapV2" +msgstr "Да, и переходить на следующий/предыдущий паттерн##wrapV2" + +#: src/gui/settings.cpp:2811 +msgid "Yes, and move to next/prev pattern (wrap around)##wrapV2" +msgstr "" +"Да, и переходить на следующий/предыдущий паттерн (с переносом в начало/" +"конец)##wrapV2" + +#: src/gui/settings.cpp:2817 +msgid "Cursor movement keys behavior:" +msgstr "Передвижение курсора при помощи клавиш:" + +#: src/gui/settings.cpp:2819 +msgid "Move by one##cmk0" +msgstr "Сдвигать на одну позицию##cmk0" + +#: src/gui/settings.cpp:2823 +msgid "Move by Edit Step##cmk1" +msgstr "Сдвигать на шаг редактирования##cmk1" + +#: src/gui/settings.cpp:2830 +msgid "Move cursor by edit step on delete" +msgstr "Сдвигать курсор на шаг редактирования при удалении" + +#: src/gui/settings.cpp:2836 +msgid "Move cursor by edit step on insert (push)" +msgstr "Сдвигать курсор на шаг редактирования при вставке" + +#: src/gui/settings.cpp:2842 +msgid "Move cursor up on backspace-delete" +msgstr "Сдвигать курсор вверх при удалении по нажатию Backspace" + +#: src/gui/settings.cpp:2848 +msgid "Move cursor to end of clipboard content when pasting" +msgstr "Сдвигать курсор в конец вставленного фрагмента при вставке" + +#: src/gui/settings.cpp:2854 +msgid "Scrolling" +msgstr "Прокрутка" + +#: src/gui/settings.cpp:2856 +msgid "Change order when scrolling outside of pattern bounds:" +msgstr "" +"Менять положение в матрице паттернов при прокрутке за пределы паттернов:" + +#: src/gui/settings.cpp:2858 +msgid "No##pscroll0" +msgstr "Нет##pscroll0" + +#: src/gui/settings.cpp:2862 +msgid "Yes##pscroll1" +msgstr "Да##pscroll1" + +#: src/gui/settings.cpp:2866 +msgid "Yes, and wrap around song##pscroll2" +msgstr "Да, и переносить в начало/конец трека##pscroll2" + +#: src/gui/settings.cpp:2873 +msgid "Cursor follows current order when moving it" +msgstr "" +"Курсор остаётся на строке матрицы паттернов при перемещении этой строки" + +#: src/gui/settings.cpp:2878 +msgid "applies when playback is stopped." +msgstr "действительно только при остановленном воспроизведении." + +#: src/gui/settings.cpp:2882 +msgid "Don't scroll when moving cursor" +msgstr "Не прокручивать при перемещении курсора" + +#: src/gui/settings.cpp:2887 +msgid "Move cursor with scroll wheel:" +msgstr "Перемещать курсор при помощи колёсика мыши:" + +#: src/gui/settings.cpp:2889 +msgid "No##csw0" +msgstr "Нет##csw0" + +#: src/gui/settings.cpp:2893 +msgid "Yes##csw1" +msgstr "Да##csw1" + +#: src/gui/settings.cpp:2897 +msgid "Inverted##csw2" +msgstr "Да, но в обратном направлении##csw2" + +#: src/gui/settings.cpp:2904 +msgid "How many steps to move with each scroll wheel step?" +msgstr "На сколько позиций свдигаться при каждом шаге колёсика мыши?" + +#: src/gui/settings.cpp:2905 +msgid "One##cws0" +msgstr "На одну##cws0" + +#: src/gui/settings.cpp:2909 +msgid "Edit Step##cws1" +msgstr "На шаг редактирования##cws1" + +#: src/gui/settings.cpp:2916 src/gui/settings.cpp:3531 +msgid "Assets" +msgstr "Ресурсы" + +#: src/gui/settings.cpp:2919 +msgid "Display instrument type menu when adding instrument" +msgstr "Отображать тип инструмента при добавлении инструмента" + +#: src/gui/settings.cpp:2925 +msgid "Select asset after opening one" +msgstr "Выделять объект после открытия" + +#: src/gui/settings.cpp:2932 +msgid "Appearance" +msgstr "Внешний вид" + +#: src/gui/settings.cpp:2934 +msgid "Scaling" +msgstr "Масштаб" + +#: src/gui/settings.cpp:2936 +msgid "Automatic UI scaling factor" +msgstr "Автоматическое масштабирование интерфейса" + +#: src/gui/settings.cpp:2945 +msgid "UI scaling factor" +msgstr "Масштаб интерфейса" + +#: src/gui/settings.cpp:2952 +msgid "Icon size" +msgstr "Размер иконок" + +#: src/gui/settings.cpp:2967 +msgid "Font renderer" +msgstr "Отрисовщик шрифта" + +#: src/gui/settings.cpp:2977 +msgid "Main font" +msgstr "Основной шрифт" + +#: src/gui/settings.cpp:2988 +msgid "Size##MainFontSize" +msgstr "Размер##MainFontSize" + +#: src/gui/settings.cpp:2996 +msgid "Header font" +msgstr "Шрифт заголовков" + +#: src/gui/settings.cpp:3007 +msgid "Size##HeadFontSize" +msgstr "Размер##HeadFontSize" + +#: src/gui/settings.cpp:3015 +msgid "Pattern font" +msgstr "Шрифт паттернов" + +#: src/gui/settings.cpp:3026 +msgid "Size##PatFontSize" +msgstr "Размер##PatFontSize" + +#: src/gui/settings.cpp:3036 +msgid "Anti-aliased fonts" +msgstr "Сглаживание шрифтов" + +#: src/gui/settings.cpp:3042 +msgid "Support bitmap fonts" +msgstr "Поддерживать растровые шрифты" + +#: src/gui/settings.cpp:3047 +msgid "Hinting:" +msgstr "Хинтование" + +#: src/gui/settings.cpp:3049 +msgid "Off (soft)##fh0" +msgstr "Нет (слабое)##fh0" + +#: src/gui/settings.cpp:3053 +msgid "Slight##fh1" +msgstr "Небольшое##fh1" + +#: src/gui/settings.cpp:3057 +msgid "Normal##fh2" +msgstr "Нормальное##fh2" + +#: src/gui/settings.cpp:3061 +msgid "Full (hard)##fh3" +msgstr "Полное (жёсткое)##fh3" + +#: src/gui/settings.cpp:3067 +msgid "Auto-hinter:" +msgstr "Автоматическое хинтирование" + +#: src/gui/settings.cpp:3069 +msgid "Disable##fah0" +msgstr "Отключить##fah0" + +#: src/gui/settings.cpp:3073 +msgid "Enable##fah1" +msgstr "Включить##fah1" + +#: src/gui/settings.cpp:3077 +msgid "Force##fah2" +msgstr "Принудительное##fah2" + +#: src/gui/settings.cpp:3084 +msgid "Oversample" +msgstr "Супердискретизация" + +#: src/gui/settings.cpp:3087 +msgid "1×##fos1" +msgstr "" + +#: src/gui/settings.cpp:3092 +msgid "" +"saves video memory. reduces font rendering quality.\n" +"use for pixel/bitmap fonts." +msgstr "" +"уменьшенное использование видеопамяти, ухудшенная отрисовка шрифтов.\n" +"используйте для пиксельных/растровых шрифтов." + +#: src/gui/settings.cpp:3095 +msgid "2×##fos2" +msgstr "" + +#: src/gui/settings.cpp:3100 +msgid "default." +msgstr "настройка по умолчанию." + +#: src/gui/settings.cpp:3103 +msgid "3×##fos3" +msgstr "" + +#: src/gui/settings.cpp:3108 +msgid "" +"slightly better font rendering quality.\n" +"uses more video memory." +msgstr "" +"незначительно улучшенная отрисовка шрифтов.\n" +"использует больше видеопамяти." + +#: src/gui/settings.cpp:3112 +msgid "Load fallback font" +msgstr "Загружать резервный шрифт" + +#: src/gui/settings.cpp:3117 +msgid "disable to save video memory." +msgstr "отключите, если хотите уменьшить использование видеопамяти." + +#: src/gui/settings.cpp:3121 +msgid "Display Japanese characters" +msgstr "Отображать японские символы (вкл. иероглифы)" + +#: src/gui/settings.cpp:3127 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"このオプションは、十分なグラフィックメモリがある場合にのみ切り替えてくださ" +"い。\n" +"これは、Dear ImGuiにダイナミックフォントアトラスが実装されるまでの一時的な解" +"決策です。" +msgstr "" +"Включайте эту настройку только в случае наличия достаточного количества " +"графической памяти.\n" +"Это временное решение, поскольку пока Dear ImGui не поддерживает " +"динамический атлас шрифтов.\n" +"\n" +"このオプションは、十分なグラフィックメモリがある場合にのみ切り替えてくださ" +"い。\n" +"これは、Dear ImGuiにダイナミックフォントアトラスが実装されるまでの一時的な解" +"決策です。" + +#: src/gui/settings.cpp:3135 +msgid "Display Chinese (Simplified) characters" +msgstr "Отображать китайские иероглифы (упрощённые)" + +#: src/gui/settings.cpp:3141 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"请在确保你有足够的显存后再启动此设定\n" +"这是一个在ImGui实现动态字体加载之前的临时解决方案" +msgstr "" +"Включайте эту настройку только в случае наличия достаточного количества " +"графической памяти.\n" +"Это временное решение, поскольку пока Dear ImGui не поддерживает " +"динамический атлас шрифтов.\n" +"\n" +"请在确保你有足够的显存后再启动此设定\n" +"这是一个在ImGui实现动态字体加载之前的临时解决方案" + +#: src/gui/settings.cpp:3149 +msgid "Display Chinese (Traditional) characters" +msgstr "Отображать китайские иероглифы (традиционные)" + +#: src/gui/settings.cpp:3155 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"請在確保你有足夠的顯存后再啟動此設定\n" +"這是一個在ImGui實現動態字體加載之前的臨時解決方案" +msgstr "" +"Включайте эту настройку только в случае наличия достаточного количества " +"графической памяти.\n" +"Это временное решение, поскольку пока Dear ImGui не поддерживает " +"динамический атлас шрифтов.\n" +"\n" +"請在確保你有足夠的顯存后再啟動此設定\n" +"這是一個在ImGui實現動態字體加載之前的臨時解決方案" + +#: src/gui/settings.cpp:3163 +msgid "Display Korean characters" +msgstr "Отображать корейские иероглифы" + +#: src/gui/settings.cpp:3169 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"그래픽 메모리가 충분한 경우에만 이 옵션을 선택하십시오.\n" +"이 옵션은 Dear ImGui에 동적 글꼴 아틀라스가 구현될 때까지 임시 솔루션입니다." +msgstr "" +"Включайте эту настройку только в случае наличия достаточного количества " +"графической памяти.\n" +"Это временное решение, поскольку пока Dear ImGui не поддерживает " +"динамический атлас шрифтов.\n" +"\n" +"그래픽 메모리가 충분한 경우에만 이 옵션을 선택하십시오.\n" +"이 옵션은 Dear ImGui에 동적 글꼴 아틀라스가 구현될 때까지 임시 솔루션입니다." + +#: src/gui/settings.cpp:3178 +msgid "Title bar:" +msgstr "Полоса заголовка окна" + +#: src/gui/settings.cpp:3180 +msgid "Furnace##tbar0" +msgstr "Furnace##tbar0" + +#: src/gui/settings.cpp:3185 +msgid "Song Name - Furnace##tbar1" +msgstr "Название композиции - Furnace##tbar1" + +#: src/gui/settings.cpp:3190 +msgid "file_name.fur - Furnace##tbar2" +msgstr "название_файла.fur - Furnace##tbar2" + +#: src/gui/settings.cpp:3195 +msgid "/path/to/file.fur - Furnace##tbar3" +msgstr "/путь/к/файлу.fur - Furnace##tbar3" + +#: src/gui/settings.cpp:3203 +msgid "Display system name on title bar" +msgstr "Отображать название чипа/системы в полосе заголовка окна" + +#: src/gui/settings.cpp:3210 +msgid "Display chip names instead of \"multi-system\" in title bar" +msgstr "" +"Отображать названия чипов/систем вместо \"мульти-система\" в полосе " +"заголовка окна" + +#: src/gui/settings.cpp:3216 +msgid "Status bar:" +msgstr "Строка состояния:" + +#: src/gui/settings.cpp:3218 +msgid "Cursor details##sbar0" +msgstr "Информация о выделенном элементе##sbar0" + +#: src/gui/settings.cpp:3222 +msgid "File path##sbar1" +msgstr "Путь к файлу##sbar1" + +#: src/gui/settings.cpp:3226 +msgid "Cursor details or file path##sbar2" +msgstr "Информация о выделенном элементе или путь к файлу##sbar2" + +#: src/gui/settings.cpp:3230 +msgid "Nothing##sbar3" +msgstr "Ничего##sbar3" + +#: src/gui/settings.cpp:3237 +msgid "Display playback status when playing" +msgstr "Отображать статус проигрывания во время воспроизведения" + +#: src/gui/settings.cpp:3242 +msgid "Export options layout:" +msgstr "Вид настроек экспорта:" + +#: src/gui/settings.cpp:3244 +msgid "Sub-menus in File menu##eol0" +msgstr "Подпункты в меню \"Файл\"##eol0" + +#: src/gui/settings.cpp:3248 +msgid "Modal window with tabs##eol1" +msgstr "Модальное окно с вкладками##eol1" + +#: src/gui/settings.cpp:3252 +msgid "Modal windows with options in File menu##eol2" +msgstr "Модальное окно с настройками в меню \"Файл\"##eol2" + +#: src/gui/settings.cpp:3259 +msgid "Capitalize menu bar" +msgstr "Названия пунктов в горизонтальном меню с большой буквы" + +#: src/gui/settings.cpp:3265 +msgid "Display add/configure/change/remove chip menus in File menu" +msgstr "" +"Отображать в меню \"Файл\" пункты: добавить/настроить/изменить/убрать чип" + +#: src/gui/settings.cpp:3279 +msgid "Highlight channel at cursor in Orders" +msgstr "Выделить в матрице паттернов канал, на котором находится курсор" + +#: src/gui/settings.cpp:3284 +msgid "Orders row number format:" +msgstr "Формат отображения номера строки матрицы паттернов:" + +#: src/gui/settings.cpp:3286 +msgid "Decimal##orbD" +msgstr "Десятеричный##orbD" + +#: src/gui/settings.cpp:3290 +msgid "Hexadecimal##orbH" +msgstr "Шестнадцатеричный##orbH" + +#: src/gui/settings.cpp:3299 +msgid "Center pattern view" +msgstr "Центрировать отображаемые паттерны внутри окна" + +#: src/gui/settings.cpp:3305 +msgid "Overflow pattern highlights" +msgstr "Продолжать полосы подсветки строк паттернов за пределы самих паттернов" + +#: src/gui/settings.cpp:3311 +msgid "Display previous/next pattern" +msgstr "Отображать предыдущий/следующий паттерн" + +#: src/gui/settings.cpp:3316 +msgid "Pattern row number format:" +msgstr "Формат отображения номера строки паттерна:" + +#: src/gui/settings.cpp:3318 +msgid "Decimal##prbD" +msgstr "Десятеричный##prbD" + +#: src/gui/settings.cpp:3322 +msgid "Hexadecimal##prbH" +msgstr "Шестнадцатеричный##prbH" + +#: src/gui/settings.cpp:3328 +msgid "Pattern view labels:" +msgstr "Маркировка ячеек в паттерне" + +#: src/gui/settings.cpp:3333 +msgid "Note off (3-char)" +msgstr "\"Отпускание клавиши\" (резкое) (3 символа)" + +#: src/gui/settings.cpp:3338 +msgid "Note release (3-char)" +msgstr "" +"\"Отпускание клавиши\" (с включением фазы затухания огибающей) (3 символа)" + +#: src/gui/settings.cpp:3343 +msgid "Macro release (3-char)" +msgstr "\"Отпускание клавиши\" (только для макросов (3 символа))" + +#: src/gui/settings.cpp:3348 +msgid "Empty field (3-char)" +msgstr "Пустая ячейка (3 символа)" + +#: src/gui/settings.cpp:3353 +msgid "Empty field (2-char)" +msgstr "Пустая ячейка (2 символа)" + +#: src/gui/settings.cpp:3355 +msgid "Pattern view spacing after:" +msgstr "Разбивка в отображении паттерна:" + +#: src/gui/settings.cpp:3357 src/gui/settings.cpp:4115 +#: src/gui/findReplace.cpp:601 src/gui/findReplace.cpp:864 +#: src/gui/sampleEdit.cpp:590 +msgid "Note" +msgstr "Нота" + +#: src/gui/settings.cpp:3375 src/gui/findReplace.cpp:707 +#: src/gui/findReplace.cpp:974 +msgid "Effect" +msgstr "Эффект" + +#: src/gui/settings.cpp:3381 +msgid "Effect value" +msgstr "Параметр эффекта" + +#: src/gui/settings.cpp:3388 +msgid "Single-digit effects for 00-0F" +msgstr "Отображать одной цифрой индекс эффекта для индексов 00-0F" + +#: src/gui/settings.cpp:3394 +msgid "Use flats instead of sharps" +msgstr "Отображать бемоли вместо диезов" + +#: src/gui/settings.cpp:3400 +msgid "Use German notation" +msgstr "Использовать немецкие имена нот" + +#: src/gui/settings.cpp:3408 +msgid "Channel style:" +msgstr "Стиль заголовка:" + +#: src/gui/settings.cpp:3410 +msgid "Classic##CHS0" +msgstr "Классический##CHS0" + +#: src/gui/settings.cpp:3414 +msgid "Line##CHS1" +msgstr "Линия##CHS1" + +#: src/gui/settings.cpp:3418 +msgid "Round##CHS2" +msgstr "Со скруглениями##CHS2" + +#: src/gui/settings.cpp:3422 +msgid "Split button##CHS3" +msgstr "С отдельной кнопкой отключения звука##CHS3" + +#: src/gui/settings.cpp:3426 +msgid "Square border##CH42" +msgstr "" + +#: src/gui/settings.cpp:3430 +msgid "Round border##CHS5" +msgstr "Со скруглённой границей вокруг названия##CHS5" + +#: src/gui/settings.cpp:3436 +msgid "Channel volume bar:" +msgstr "Полоска громкости в заголовке канала:" + +#: src/gui/settings.cpp:3438 +msgid "None##CHV0" +msgstr "" + +#: src/gui/settings.cpp:3442 +msgid "Simple##CHV1" +msgstr "Простая##CHV1" + +#: src/gui/settings.cpp:3446 +msgid "Stereo##CHV2" +msgstr "Стерео##CHV2" + +#: src/gui/settings.cpp:3450 +msgid "Real##CHV3" +msgstr "Настоящая громкость##CHV3" + +#: src/gui/settings.cpp:3454 +msgid "Real (stereo)##CHV4" +msgstr "Настоящая громкость (стерео)##CHV4" + +#: src/gui/settings.cpp:3460 +msgid "Channel feedback style:" +msgstr "Подсветка заголовка канала:" + +#: src/gui/settings.cpp:3462 +msgid "Off##CHF0" +msgstr "Выкл.##CHF0" + +#: src/gui/settings.cpp:3466 +msgid "Note##CHF1" +msgstr "Начало ноты##CHF1" + +#: src/gui/settings.cpp:3470 +msgid "Volume##CHF2" +msgstr "Пропорционально громкости##CHF2" + +#: src/gui/settings.cpp:3474 +msgid "Active##CHF3" +msgstr "При активности канала##CHF3" + +#: src/gui/settings.cpp:3480 +msgid "Channel font:" +msgstr "Шрифт заголовка канала:" + +#: src/gui/settings.cpp:3482 +msgid "Regular##CHFont0" +msgstr "Обычный##CHFont0" + +#: src/gui/settings.cpp:3486 +msgid "Monospace##CHFont1" +msgstr "Моноширинный##CHFont1" + +#: src/gui/settings.cpp:3493 +msgid "Center channel name" +msgstr "Центрировать название канала" + +#: src/gui/settings.cpp:3498 +msgid "Channel colors:" +msgstr "Цвета заголовка канала" + +#: src/gui/settings.cpp:3500 +msgid "Single##CHC0" +msgstr "Единый цвет##CHC0" + +#: src/gui/settings.cpp:3504 +msgid "Channel type##CHC1" +msgstr "Согласно типу канала##CHC1" + +#: src/gui/settings.cpp:3508 +msgid "Instrument type##CHC2" +msgstr "Согласно типу инструмента##CHC2" + +#: src/gui/settings.cpp:3514 +msgid "Channel name colors:" +msgstr "Цвета названия канала:" + +#: src/gui/settings.cpp:3516 +msgid "Single##CTC0" +msgstr "Единый цвет##CTC0" + +#: src/gui/settings.cpp:3520 +msgid "Channel type##CTC1" +msgstr "Согласно типу канала##CTC1" + +#: src/gui/settings.cpp:3524 +msgid "Instrument type##CTC2" +msgstr "Согласно типу инструмента##CTC2" + +#: src/gui/settings.cpp:3533 +msgid "Unified instrument/wavetable/sample list" +msgstr "Единый список инструментов, волновых таблиц и сэмплов" + +#: src/gui/settings.cpp:3543 +msgid "Horizontal instrument list" +msgstr "Горизонтальный список инструментов" + +#: src/gui/settings.cpp:3549 +msgid "Instrument list icon style:" +msgstr "Стиль иконок в списке инструментов:" + +#: src/gui/settings.cpp:3551 +msgid "None##iis0" +msgstr "Не показывать##iis0" + +#: src/gui/settings.cpp:3555 +msgid "Graphical icons##iis1" +msgstr "Графические иконки##iis1" + +#: src/gui/settings.cpp:3559 +msgid "Letter icons##iis2" +msgstr "Иконки с буквами##iis2" + +#: src/gui/settings.cpp:3566 +msgid "Colorize instrument editor using instrument type" +msgstr "" +"Изменять оттенки цветов редактора инструмента согласно типу инструмента" + +#: src/gui/settings.cpp:3572 src/gui/settings.cpp:4014 +msgid "Macro Editor" +msgstr "Редактор макросов" + +#: src/gui/settings.cpp:3573 +msgid "Macro editor layout:" +msgstr "Компоновка редактора макросов:" + +#: src/gui/settings.cpp:3575 +msgid "Unified##mel0" +msgstr "Общий список##mel0" + +#: src/gui/settings.cpp:3585 +msgid "Grid##mel2" +msgstr "Прямоугольная сетка##mel2" + +#: src/gui/settings.cpp:3589 +msgid "Single (with list)##mel3" +msgstr "Окно редактирования одного макроса + список##mel3" + +#: src/gui/settings.cpp:3602 +msgid "Use classic macro editor vertical slider" +msgstr "Использовать классическую вертикальную полосу прокрутки" + +#: src/gui/settings.cpp:3608 +msgid "Wave Editor" +msgstr "Редактор волновых таблиц" + +#: src/gui/settings.cpp:3610 +msgid "Use compact wave editor" +msgstr "Использовать компактный редактор волновых таблиц" + +#: src/gui/settings.cpp:3616 src/gui/settings.cpp:3991 +msgid "FM Editor" +msgstr "Редактор FM-инструментов" + +#: src/gui/settings.cpp:3617 +msgid "FM parameter names:" +msgstr "Названия параметров:" + +#: src/gui/settings.cpp:3619 +msgid "Friendly##fmn0" +msgstr "Понятные##fmn0" + +#: src/gui/settings.cpp:3623 +msgid "Technical##fmn1" +msgstr "Исходные формальные##fmn1" + +#: src/gui/settings.cpp:3627 +msgid "Technical (alternate)##fmn2" +msgstr "Исходные формальные (альтернативные)##fmn2" + +#: src/gui/settings.cpp:3634 +msgid "Use standard OPL waveform names" +msgstr "Использовать стандартные названия волн для чипов серии OPL" + +#: src/gui/settings.cpp:3639 +msgid "FM parameter editor layout:" +msgstr "Компоновка редактора FM-инструментов" + +#: src/gui/settings.cpp:3641 +msgid "Modern##fml0" +msgstr "Современная##fml0" + +#: src/gui/settings.cpp:3645 +msgid "Compact (2x2, classic)##fml1" +msgstr "Компактная (2x2, классическая)##fml1" + +#: src/gui/settings.cpp:3649 +msgid "Compact (1x4)##fml2" +msgstr "Компактная (1x4)##fml2" + +#: src/gui/settings.cpp:3653 +msgid "Compact (4x1)##fml3" +msgstr "Компактная (4x1)##fml3" + +#: src/gui/settings.cpp:3657 +msgid "Alternate (2x2)##fml4" +msgstr "Альтернативная (2x2)##fml4" + +#: src/gui/settings.cpp:3661 +msgid "Alternate (1x4)##fml5" +msgstr "Альтернативная (1x4)##fml5" + +#: src/gui/settings.cpp:3665 +msgid "Alternate (4x1)##fml5" +msgstr "" + +#: src/gui/settings.cpp:3671 +msgid "Position of Sustain in FM editor:" +msgstr "Позиция параметра \"Сустейн\" в редакторе:" + +#: src/gui/settings.cpp:3673 +msgid "Between Decay and Sustain Rate##susp0" +msgstr "" + +#: src/gui/settings.cpp:3677 +msgid "After Release Rate##susp1" +msgstr "" + +#: src/gui/settings.cpp:3684 +msgid "Use separate colors for carriers/modulators in FM editor" +msgstr "Использовать различные цвета для модулирующих и несущих операторов" + +#: src/gui/settings.cpp:3690 +msgid "Unsigned FM detune values" +msgstr "Беззнаковое значение параметра расстройки" + +#: src/gui/settings.cpp:3697 +msgid "Chip memory usage unit:" +msgstr "Единицы измерения использования памяти чипа:" + +#: src/gui/settings.cpp:3699 +msgid "Bytes##MUU0" +msgstr "Байты##MUU0" + +#: src/gui/settings.cpp:3703 +msgid "Kilobytes##MUU1" +msgstr "Килобайты##MUU1" + +#: src/gui/settings.cpp:3712 +msgid "Rounded corners" +msgstr "Закруглённые края" + +#: src/gui/settings.cpp:3718 src/gui/settings.cpp:3896 +#: src/gui/settings.cpp:3938 +msgid "Border" +msgstr "Граница" + +#: src/gui/settings.cpp:3730 +msgid "Anti-aliased" +msgstr "Со сглаживанием" + +#: src/gui/settings.cpp:3736 +msgid "Fill entire window" +msgstr "Полностью заполняет окно" + +#: src/gui/settings.cpp:3742 +msgid "Waveform goes out of bounds" +msgstr "Волна может выходить за пределы окна" + +#: src/gui/settings.cpp:3754 +msgid "Windows" +msgstr "Окна" + +#: src/gui/settings.cpp:3756 +msgid "Rounded window corners" +msgstr "Закруглённые края окон" + +#: src/gui/settings.cpp:3762 +msgid "Rounded buttons" +msgstr "Закруглённые края кнопок" + +#: src/gui/settings.cpp:3768 +msgid "Rounded menu corners" +msgstr "Закруглённые края выпадающих меню" + +#: src/gui/settings.cpp:3774 +msgid "Rounded tabs" +msgstr "Закруглённые края заголовков вкладок" + +#: src/gui/settings.cpp:3780 +msgid "Rounded scrollbars" +msgstr "Закруглённые края ползунка полосы прокрутки" + +#: src/gui/settings.cpp:3786 +msgid "Borders around widgets" +msgstr "Границы вокруг кнопок, списков и т.д." + +#: src/gui/settings.cpp:3795 +msgid "Color scheme" +msgstr "Цветовая схема" + +#: src/gui/settings.cpp:3805 +msgid "Are you sure you want to reset the color scheme?" +msgstr "Вы действительно хотите сбросить цветовую схему?" + +#: src/gui/settings.cpp:3808 +msgid "Guru mode" +msgstr "" + +#: src/gui/settings.cpp:3815 src/gui/settings.cpp:3845 +msgid "Frame shading" +msgstr "Затенение рамок" + +#: src/gui/settings.cpp:3821 +msgid "Color scheme type:" +msgstr "" + +#: src/gui/settings.cpp:3823 +msgid "Dark##gcb0" +msgstr "" + +#: src/gui/settings.cpp:3828 +msgid "Light##gcb1" +msgstr "" + +#: src/gui/settings.cpp:3835 +msgid "Accent colors:" +msgstr "" + +#: src/gui/settings.cpp:3837 +msgid "Primary" +msgstr "" + +#: src/gui/settings.cpp:3838 +msgid "Secondary" +msgstr "" + +#: src/gui/settings.cpp:3852 +msgid "Button" +msgstr "" + +#: src/gui/settings.cpp:3853 +msgid "Button (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3854 +msgid "Button (active)" +msgstr "" + +#: src/gui/settings.cpp:3855 +msgid "Tab" +msgstr "" + +#: src/gui/settings.cpp:3856 +msgid "Tab (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3857 +msgid "Tab (active)" +msgstr "" + +#: src/gui/settings.cpp:3858 +msgid "Tab (unfocused)" +msgstr "" + +#: src/gui/settings.cpp:3859 +msgid "Tab (unfocused and active)" +msgstr "" + +#: src/gui/settings.cpp:3860 +msgid "ImGui header" +msgstr "" + +#: src/gui/settings.cpp:3861 +msgid "ImGui header (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3862 +msgid "ImGui header (active)" +msgstr "" + +#: src/gui/settings.cpp:3863 +msgid "Resize grip" +msgstr "" + +#: src/gui/settings.cpp:3864 +msgid "Resize grip (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3865 +msgid "Resize grip (active)" +msgstr "" + +#: src/gui/settings.cpp:3866 +msgid "Widget background" +msgstr "" + +#: src/gui/settings.cpp:3867 +msgid "Widget background (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3868 +msgid "Widget background (active)" +msgstr "" + +#: src/gui/settings.cpp:3869 +msgid "Slider grab" +msgstr "" + +#: src/gui/settings.cpp:3870 +msgid "Slider grab (active)" +msgstr "" + +#: src/gui/settings.cpp:3871 +msgid "Title background (active)" +msgstr "" + +#: src/gui/settings.cpp:3872 +msgid "Checkbox/radio button mark" +msgstr "" + +#: src/gui/settings.cpp:3873 +msgid "Text selection" +msgstr "" + +#: src/gui/settings.cpp:3874 +msgid "Line plot" +msgstr "" + +#: src/gui/settings.cpp:3875 +msgid "Line plot (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3876 +msgid "Histogram plot" +msgstr "" + +#: src/gui/settings.cpp:3877 +msgid "Histogram plot (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3878 +msgid "Table row (even)" +msgstr "" + +#: src/gui/settings.cpp:3879 +msgid "Table row (odd)" +msgstr "" + +#: src/gui/settings.cpp:3884 +msgid "Interface (other)" +msgstr "Интерфейс (другое)" + +#: src/gui/settings.cpp:3886 +msgid "Window background" +msgstr "" + +#: src/gui/settings.cpp:3887 +msgid "Sub-window background" +msgstr "" + +#: src/gui/settings.cpp:3888 +msgid "Pop-up background" +msgstr "" + +#: src/gui/settings.cpp:3889 +msgid "Modal backdrop" +msgstr "" + +#: src/gui/settings.cpp:3890 +msgid "Header" +msgstr "" + +#: src/gui/settings.cpp:3892 +msgid "Text (disabled)" +msgstr "" + +#: src/gui/settings.cpp:3893 +msgid "Title bar (inactive)" +msgstr "" + +#: src/gui/settings.cpp:3894 +msgid "Title bar (collapsed)" +msgstr "" + +#: src/gui/settings.cpp:3895 +msgid "Menu bar" +msgstr "" + +#: src/gui/settings.cpp:3897 +msgid "Border shadow" +msgstr "" + +#: src/gui/settings.cpp:3898 +msgid "Scroll bar" +msgstr "" + +#: src/gui/settings.cpp:3899 +msgid "Scroll bar (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3900 +msgid "Scroll bar (clicked)" +msgstr "" + +#: src/gui/settings.cpp:3901 +msgid "Scroll bar background" +msgstr "" + +#: src/gui/settings.cpp:3902 +msgid "Separator" +msgstr "" + +#: src/gui/settings.cpp:3903 +msgid "Separator (hover)" +msgstr "" + +#: src/gui/settings.cpp:3904 +msgid "Separator (active)" +msgstr "" + +#: src/gui/settings.cpp:3905 +msgid "Docking preview" +msgstr "" + +#: src/gui/settings.cpp:3906 +msgid "Docking empty" +msgstr "" + +#: src/gui/settings.cpp:3907 +msgid "Table header" +msgstr "" + +#: src/gui/settings.cpp:3908 +msgid "Table border (hard)" +msgstr "" + +#: src/gui/settings.cpp:3909 +msgid "Table border (soft)" +msgstr "" + +#: src/gui/settings.cpp:3910 +msgid "Drag and drop target" +msgstr "" + +#: src/gui/settings.cpp:3911 +msgid "Window switcher (highlight)" +msgstr "" + +#: src/gui/settings.cpp:3912 +msgid "Window switcher backdrop" +msgstr "" + +#: src/gui/settings.cpp:3915 src/gui/settings.cpp:4136 src/gui/guiConst.cpp:235 +msgid "Miscellaneous" +msgstr "Разное" + +#: src/gui/settings.cpp:3916 +msgid "Toggle on" +msgstr "" + +#: src/gui/settings.cpp:3917 +msgid "Toggle off" +msgstr "" + +#: src/gui/settings.cpp:3918 +msgid "Playback status" +msgstr "" + +#: src/gui/settings.cpp:3919 +msgid "Destructive hint" +msgstr "" + +#: src/gui/settings.cpp:3920 +msgid "Warning hint" +msgstr "" + +#: src/gui/settings.cpp:3921 +msgid "Error hint" +msgstr "" + +#: src/gui/settings.cpp:3924 +msgid "File Picker (built-in)" +msgstr "Меню выбора файлов (встроенное)" + +#: src/gui/settings.cpp:3926 +msgid "Song (native)" +msgstr "" + +#: src/gui/settings.cpp:3927 +msgid "Song (import)" +msgstr "" + +#: src/gui/settings.cpp:3933 +msgid "Font" +msgstr "" + +#: src/gui/settings.cpp:3939 +msgid "Background (top-left)" +msgstr "" + +#: src/gui/settings.cpp:3940 +msgid "Background (top-right)" +msgstr "" + +#: src/gui/settings.cpp:3941 +msgid "Background (bottom-left)" +msgstr "" + +#: src/gui/settings.cpp:3942 +msgid "Background (bottom-right)" +msgstr "" + +#: src/gui/settings.cpp:3943 src/gui/settings.cpp:3998 +#: src/gui/settings.cpp:4166 src/gui/waveEdit.cpp:730 src/gui/insEdit.cpp:50 +#: src/gui/insEdit.cpp:4148 src/gui/insEdit.cpp:5812 src/gui/insEdit.cpp:6940 +#: src/gui/insEdit.cpp:6949 src/gui/insEdit.cpp:6963 src/gui/insEdit.cpp:6980 +#: src/gui/insEdit.cpp:6991 src/gui/insEdit.cpp:7004 src/gui/insEdit.cpp:7018 +#: src/gui/insEdit.cpp:7025 src/gui/insEdit.cpp:7035 src/gui/insEdit.cpp:7041 +#: src/gui/insEdit.cpp:7050 src/gui/insEdit.cpp:7074 src/gui/insEdit.cpp:7084 +#: src/gui/insEdit.cpp:7094 src/gui/insEdit.cpp:7101 src/gui/insEdit.cpp:7116 +#: src/gui/insEdit.cpp:7131 src/gui/insEdit.cpp:7151 src/gui/insEdit.cpp:7158 +#: src/gui/insEdit.cpp:7200 src/gui/insEdit.cpp:7211 src/gui/insEdit.cpp:7224 +#: src/gui/insEdit.cpp:7349 src/gui/insEdit.cpp:7425 src/gui/insEdit.cpp:7445 +#: src/gui/insEdit.cpp:7453 src/gui/insEdit.cpp:7473 +msgid "Waveform" +msgstr "Волна" + +#: src/gui/settings.cpp:3944 +msgid "Waveform (clip)" +msgstr "" + +#: src/gui/settings.cpp:3945 +msgid "Reference" +msgstr "" + +#: src/gui/settings.cpp:3946 +msgid "Guide" +msgstr "" + +#: src/gui/settings.cpp:3948 +msgid "Wave (non-mono)" +msgstr "Волна (не моно)" + +#: src/gui/settings.cpp:3949 +msgid "Waveform (1)" +msgstr "" + +#: src/gui/settings.cpp:3950 +msgid "Waveform (2)" +msgstr "" + +#: src/gui/settings.cpp:3951 +msgid "Waveform (3)" +msgstr "" + +#: src/gui/settings.cpp:3952 +msgid "Waveform (4)" +msgstr "" + +#: src/gui/settings.cpp:3953 +msgid "Waveform (5)" +msgstr "" + +#: src/gui/settings.cpp:3954 +msgid "Waveform (6)" +msgstr "" + +#: src/gui/settings.cpp:3955 +msgid "Waveform (7)" +msgstr "" + +#: src/gui/settings.cpp:3956 +msgid "Waveform (8)" +msgstr "" + +#: src/gui/settings.cpp:3957 +msgid "Waveform (9)" +msgstr "" + +#: src/gui/settings.cpp:3958 +msgid "Waveform (10)" +msgstr "" + +#: src/gui/settings.cpp:3959 +msgid "Waveform (11)" +msgstr "" + +#: src/gui/settings.cpp:3960 +msgid "Waveform (12)" +msgstr "" + +#: src/gui/settings.cpp:3961 +msgid "Waveform (13)" +msgstr "" + +#: src/gui/settings.cpp:3962 +msgid "Waveform (14)" +msgstr "" + +#: src/gui/settings.cpp:3963 +msgid "Waveform (15)" +msgstr "" + +#: src/gui/settings.cpp:3964 +msgid "Waveform (16)" +msgstr "" + +#: src/gui/settings.cpp:3972 +msgid "Clip" +msgstr "" + +#: src/gui/settings.cpp:3976 +msgid "Order number" +msgstr "" + +#: src/gui/settings.cpp:3977 +msgid "Playing order background" +msgstr "" + +#: src/gui/settings.cpp:3978 +msgid "Song loop" +msgstr "" + +#: src/gui/settings.cpp:3979 +msgid "Selected order" +msgstr "" + +#: src/gui/settings.cpp:3980 +msgid "Similar patterns" +msgstr "" + +#: src/gui/settings.cpp:3981 +msgid "Inactive patterns" +msgstr "" + +#: src/gui/settings.cpp:3984 +msgid "Envelope View" +msgstr "Визуализатор огибающей" + +#: src/gui/settings.cpp:3985 src/gui/insEdit.cpp:540 src/gui/insEdit.cpp:3547 +#: src/gui/insEdit.cpp:3548 src/gui/insEdit.cpp:4081 src/gui/insEdit.cpp:4151 +#: src/gui/insEdit.cpp:4790 src/gui/insEdit.cpp:5861 src/gui/insEdit.cpp:5862 +#: src/gui/insEdit.cpp:6487 src/gui/insEdit.cpp:6488 src/gui/insEdit.cpp:6555 +#: src/gui/insEdit.cpp:6556 src/gui/insEdit.cpp:6995 src/gui/insEdit.cpp:7009 +#: src/gui/insEdit.cpp:7029 src/gui/insEdit.cpp:7166 +#, c-format +msgid "Envelope" +msgstr "Огибающая" + +#: src/gui/settings.cpp:3986 +msgid "Sustain guide" +msgstr "" + +#: src/gui/settings.cpp:3992 +msgid "Algorithm background" +msgstr "" + +#: src/gui/settings.cpp:3993 +msgid "Algorithm lines" +msgstr "" + +#: src/gui/settings.cpp:3994 +msgid "Modulator" +msgstr "" + +#: src/gui/settings.cpp:3995 +msgid "Carrier" +msgstr "" + +#: src/gui/settings.cpp:3997 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:4146 +msgid "SSG-EG" +msgstr "SSG-EG" + +#: src/gui/settings.cpp:4000 +msgid "" +"(the following colors only apply when \"Use separate colors for carriers/" +"modulators in FM editor\" is on!)" +msgstr "" + +#: src/gui/settings.cpp:4002 +msgid "Mod. accent (primary)" +msgstr "" + +#: src/gui/settings.cpp:4003 +msgid "Mod. accent (secondary)" +msgstr "" + +#: src/gui/settings.cpp:4004 +msgid "Mod. border" +msgstr "" + +#: src/gui/settings.cpp:4005 +msgid "Mod. border shadow" +msgstr "" + +#: src/gui/settings.cpp:4007 +msgid "Car. accent (primary)" +msgstr "" + +#: src/gui/settings.cpp:4008 +msgid "Car. accent (secondary)" +msgstr "" + +#: src/gui/settings.cpp:4009 +msgid "Car. border" +msgstr "" + +#: src/gui/settings.cpp:4010 +msgid "Car. border shadow" +msgstr "" + +#: src/gui/settings.cpp:4016 src/gui/guiConst.cpp:227 src/gui/insEdit.cpp:6924 +#: src/gui/insEdit.cpp:6931 src/gui/insEdit.cpp:6942 src/gui/insEdit.cpp:6950 +#: src/gui/insEdit.cpp:6971 src/gui/insEdit.cpp:6983 src/gui/insEdit.cpp:6993 +#: src/gui/insEdit.cpp:7006 src/gui/insEdit.cpp:7019 src/gui/insEdit.cpp:7028 +#: src/gui/insEdit.cpp:7036 src/gui/insEdit.cpp:7042 src/gui/insEdit.cpp:7052 +#: src/gui/insEdit.cpp:7061 src/gui/insEdit.cpp:7068 src/gui/insEdit.cpp:7075 +#: src/gui/insEdit.cpp:7087 src/gui/insEdit.cpp:7095 src/gui/insEdit.cpp:7102 +#: src/gui/insEdit.cpp:7109 src/gui/insEdit.cpp:7117 src/gui/insEdit.cpp:7123 +#: src/gui/insEdit.cpp:7132 src/gui/insEdit.cpp:7143 src/gui/insEdit.cpp:7153 +#: src/gui/insEdit.cpp:7161 src/gui/insEdit.cpp:7174 src/gui/insEdit.cpp:7182 +#: src/gui/insEdit.cpp:7193 src/gui/insEdit.cpp:7203 src/gui/insEdit.cpp:7213 +#: src/gui/insEdit.cpp:7227 src/gui/insEdit.cpp:7233 src/gui/insEdit.cpp:7241 +#: src/gui/insEdit.cpp:7248 src/gui/insEdit.cpp:7272 src/gui/insEdit.cpp:7280 +#: src/gui/insEdit.cpp:7289 src/gui/insEdit.cpp:7298 src/gui/insEdit.cpp:7306 +#: src/gui/insEdit.cpp:7323 src/gui/insEdit.cpp:7331 src/gui/insEdit.cpp:7337 +#: src/gui/insEdit.cpp:7344 src/gui/insEdit.cpp:7350 src/gui/insEdit.cpp:7355 +#: src/gui/insEdit.cpp:7361 src/gui/insEdit.cpp:7368 src/gui/insEdit.cpp:7376 +#: src/gui/insEdit.cpp:7385 src/gui/insEdit.cpp:7393 src/gui/insEdit.cpp:7401 +#: src/gui/insEdit.cpp:7413 src/gui/insEdit.cpp:7428 src/gui/insEdit.cpp:7439 +#: src/gui/insEdit.cpp:7447 src/gui/insEdit.cpp:7456 src/gui/insEdit.cpp:7466 +#: src/gui/insEdit.cpp:7474 +msgid "Pitch" +msgstr "Частота" + +#: src/gui/settings.cpp:4021 +msgid "Instrument Types" +msgstr "Типы инструментов" + +#: src/gui/settings.cpp:4022 +msgid "FM (OPN)" +msgstr "" + +#: src/gui/settings.cpp:4023 +msgid "SN76489/Sega PSG" +msgstr "" + +#: src/gui/settings.cpp:4026 +msgid "C64" +msgstr "" + +#: src/gui/settings.cpp:4027 +msgid "Amiga/Generic Sample" +msgstr "" + +#: src/gui/settings.cpp:4028 +msgid "PC Engine" +msgstr "" + +#: src/gui/settings.cpp:4029 +msgid "AY-3-8910/SSG" +msgstr "" + +#: src/gui/settings.cpp:4030 +msgid "AY8930" +msgstr "" + +#: src/gui/settings.cpp:4031 +msgid "TIA" +msgstr "" + +#: src/gui/settings.cpp:4032 +msgid "SAA1099" +msgstr "" + +#: src/gui/settings.cpp:4033 +msgid "VIC" +msgstr "" + +#: src/gui/settings.cpp:4034 +msgid "PET" +msgstr "" + +#: src/gui/settings.cpp:4035 +msgid "VRC6" +msgstr "" + +#: src/gui/settings.cpp:4036 src/gui/guiConst.cpp:149 +msgid "VRC6 (saw)" +msgstr "VRC6 (пила)" + +#: src/gui/settings.cpp:4037 +msgid "FM (OPLL)" +msgstr "" + +#: src/gui/settings.cpp:4038 +msgid "FM (OPL)" +msgstr "" + +#: src/gui/settings.cpp:4043 +msgid "FM (OPZ)" +msgstr "" + +#: src/gui/settings.cpp:4045 +msgid "PC Beeper" +msgstr "" + +#: src/gui/settings.cpp:4047 +msgid "Lynx" +msgstr "" + +#: src/gui/settings.cpp:4049 +msgid "X1-010" +msgstr "" + +#: src/gui/settings.cpp:4050 +msgid "ES5506" +msgstr "" + +#: src/gui/settings.cpp:4053 +msgid "Sound Unit" +msgstr "Sound Unit" + +#: src/gui/settings.cpp:4055 +msgid "FM (OPL Drums)" +msgstr "" + +#: src/gui/settings.cpp:4056 +msgid "FM (OPM)" +msgstr "" + +#: src/gui/settings.cpp:4057 +msgid "NES" +msgstr "" + +#: src/gui/settings.cpp:4058 +msgid "MSM6258" +msgstr "" + +#: src/gui/settings.cpp:4059 +msgid "MSM6295" +msgstr "" + +#: src/gui/settings.cpp:4060 +msgid "ADPCM-A" +msgstr "" + +#: src/gui/settings.cpp:4062 +msgid "Sega PCM" +msgstr "" + +#: src/gui/settings.cpp:4063 +msgid "QSound" +msgstr "QSound" + +#: src/gui/settings.cpp:4064 +msgid "YMZ280B" +msgstr "" + +#: src/gui/settings.cpp:4065 +msgid "RF5C68" +msgstr "" + +#: src/gui/settings.cpp:4066 +msgid "MSM5232" +msgstr "" + +#: src/gui/settings.cpp:4067 +msgid "K007232" +msgstr "" + +#: src/gui/settings.cpp:4068 +msgid "GA20" +msgstr "" + +#: src/gui/settings.cpp:4070 +msgid "SM8521" +msgstr "" + +#: src/gui/settings.cpp:4071 +msgid "PV-1000" +msgstr "" + +#: src/gui/settings.cpp:4072 +msgid "K053260" +msgstr "" + +#: src/gui/settings.cpp:4073 +msgid "TED" +msgstr "" + +#: src/gui/settings.cpp:4074 +msgid "C140" +msgstr "" + +#: src/gui/settings.cpp:4075 +msgid "C219" +msgstr "" + +#: src/gui/settings.cpp:4076 +msgid "ESFM" +msgstr "" + +#: src/gui/settings.cpp:4077 src/gui/guiConst.cpp:179 +msgid "PowerNoise (noise)" +msgstr "PowerNoise (шум)" + +#: src/gui/settings.cpp:4078 src/gui/guiConst.cpp:180 +msgid "PowerNoise (slope)" +msgstr "PowerNoise (скат)" + +#: src/gui/settings.cpp:4081 +msgid "GBA DMA" +msgstr "" + +#: src/gui/settings.cpp:4082 +msgid "GBA MinMod" +msgstr "" + +#: src/gui/settings.cpp:4085 +msgid "Other/Unknown" +msgstr "" + +#: src/gui/settings.cpp:4089 +msgid "Single color (background)" +msgstr "" + +#: src/gui/settings.cpp:4090 +msgid "Single color (text)" +msgstr "" + +#: src/gui/settings.cpp:4091 src/gui/guiConst.cpp:1393 src/gui/waveEdit.cpp:668 +msgid "FM" +msgstr "" + +#: src/gui/settings.cpp:4096 +msgid "FM operator" +msgstr "" + +#: src/gui/settings.cpp:4097 +msgid "Muted" +msgstr "" + +#: src/gui/settings.cpp:4101 +msgid "Playhead" +msgstr "" + +#: src/gui/settings.cpp:4102 +msgid "Editing" +msgstr "" + +#: src/gui/settings.cpp:4103 +msgid "Editing (will clone)" +msgstr "" + +#: src/gui/settings.cpp:4104 +msgid "Cursor" +msgstr "" + +#: src/gui/settings.cpp:4105 +msgid "Cursor (hovered)" +msgstr "" + +#: src/gui/settings.cpp:4106 +msgid "Cursor (clicked)" +msgstr "" + +#: src/gui/settings.cpp:4107 src/gui/settings.cpp:4172 +#: src/gui/findReplace.cpp:791 +msgid "Selection" +msgstr "Выделенное" + +#: src/gui/settings.cpp:4108 +msgid "Selection (hovered)" +msgstr "" + +#: src/gui/settings.cpp:4109 +msgid "Selection (clicked)" +msgstr "" + +#: src/gui/settings.cpp:4110 +msgid "Highlight 1" +msgstr "" + +#: src/gui/settings.cpp:4111 +msgid "Highlight 2" +msgstr "" + +#: src/gui/settings.cpp:4112 +msgid "Row number" +msgstr "" + +#: src/gui/settings.cpp:4113 +msgid "Row number (highlight 1)" +msgstr "" + +#: src/gui/settings.cpp:4114 +msgid "Row number (highlight 2)" +msgstr "" + +#: src/gui/settings.cpp:4116 +msgid "Note (highlight 1)" +msgstr "" + +#: src/gui/settings.cpp:4117 +msgid "Note (highlight 2)" +msgstr "" + +#: src/gui/settings.cpp:4118 +msgid "Blank" +msgstr "" + +#: src/gui/settings.cpp:4119 +msgid "Blank (highlight 1)" +msgstr "" + +#: src/gui/settings.cpp:4120 +msgid "Blank (highlight 2)" +msgstr "" + +#: src/gui/settings.cpp:4122 +msgid "Instrument (invalid type)" +msgstr "" + +#: src/gui/settings.cpp:4123 +msgid "Instrument (out of range)" +msgstr "" + +#: src/gui/settings.cpp:4124 +msgid "Volume (0%)" +msgstr "" + +#: src/gui/settings.cpp:4125 +msgid "Volume (50%)" +msgstr "" + +#: src/gui/settings.cpp:4126 +msgid "Volume (100%)" +msgstr "" + +#: src/gui/settings.cpp:4128 +msgid "Pitch effect" +msgstr "" + +#: src/gui/settings.cpp:4129 +msgid "Volume effect" +msgstr "" + +#: src/gui/settings.cpp:4130 +msgid "Panning effect" +msgstr "" + +#: src/gui/settings.cpp:4131 +msgid "Song effect" +msgstr "" + +#: src/gui/settings.cpp:4132 +msgid "Time effect" +msgstr "" + +#: src/gui/settings.cpp:4133 +msgid "Speed effect" +msgstr "" + +#: src/gui/settings.cpp:4134 +msgid "Primary specific effect" +msgstr "" + +#: src/gui/settings.cpp:4135 +msgid "Secondary specific effect" +msgstr "" + +#: src/gui/settings.cpp:4137 +msgid "External command output" +msgstr "" + +#: src/gui/settings.cpp:4138 +msgid "Status: off/disabled" +msgstr "" + +#: src/gui/settings.cpp:4139 +msgid "Status: off + macro rel" +msgstr "" + +#: src/gui/settings.cpp:4140 +msgid "Status: on + macro rel" +msgstr "" + +#: src/gui/settings.cpp:4141 +msgid "Status: on" +msgstr "" + +#: src/gui/settings.cpp:4142 +msgid "Status: volume" +msgstr "" + +#: src/gui/settings.cpp:4143 +msgid "Status: pitch" +msgstr "" + +#: src/gui/settings.cpp:4144 +msgid "Status: panning" +msgstr "" + +#: src/gui/settings.cpp:4145 +msgid "Status: chip (primary)" +msgstr "" + +#: src/gui/settings.cpp:4146 +msgid "Status: chip (secondary)" +msgstr "" + +#: src/gui/settings.cpp:4147 +msgid "Status: mixing" +msgstr "" + +#: src/gui/settings.cpp:4148 +msgid "Status: DSP effect" +msgstr "" + +#: src/gui/settings.cpp:4149 +msgid "Status: note altering" +msgstr "" + +#: src/gui/settings.cpp:4150 +msgid "Status: misc color 1" +msgstr "" + +#: src/gui/settings.cpp:4151 +msgid "Status: misc color 2" +msgstr "" + +#: src/gui/settings.cpp:4152 +msgid "Status: misc color 3" +msgstr "" + +#: src/gui/settings.cpp:4153 +msgid "Status: attack" +msgstr "" + +#: src/gui/settings.cpp:4154 +msgid "Status: decay" +msgstr "" + +#: src/gui/settings.cpp:4155 +msgid "Status: sustain" +msgstr "" + +#: src/gui/settings.cpp:4156 +msgid "Status: release" +msgstr "" + +#: src/gui/settings.cpp:4157 +msgid "Status: decrease linear" +msgstr "" + +#: src/gui/settings.cpp:4158 +msgid "Status: decrease exp" +msgstr "" + +#: src/gui/settings.cpp:4159 +msgid "Status: increase" +msgstr "" + +#: src/gui/settings.cpp:4160 +msgid "Status: bent" +msgstr "" + +#: src/gui/settings.cpp:4161 +msgid "Status: direct" +msgstr "" + +#: src/gui/settings.cpp:4164 src/gui/guiConst.cpp:586 src/gui/sampleEdit.cpp:96 +msgid "Sample Editor" +msgstr "Редактор сэмплов" + +#: src/gui/settings.cpp:4167 +msgid "Time background" +msgstr "" + +#: src/gui/settings.cpp:4168 +msgid "Time text" +msgstr "" + +#: src/gui/settings.cpp:4169 +msgid "Loop region" +msgstr "" + +#: src/gui/settings.cpp:4170 +msgid "Center guide" +msgstr "" + +#: src/gui/settings.cpp:4171 +msgid "Grid" +msgstr "" + +#: src/gui/settings.cpp:4173 +msgid "Selection points" +msgstr "" + +#: src/gui/settings.cpp:4174 +msgid "Preview needle" +msgstr "" + +#: src/gui/settings.cpp:4175 +msgid "Playing needles" +msgstr "" + +#: src/gui/settings.cpp:4176 +msgid "Loop markers" +msgstr "" + +#: src/gui/settings.cpp:4177 +msgid "Chip select: disabled" +msgstr "" + +#: src/gui/settings.cpp:4178 +msgid "Chip select: enabled" +msgstr "" + +#: src/gui/settings.cpp:4179 +msgid "Chip select: enabled (failure)" +msgstr "" + +#: src/gui/settings.cpp:4182 src/gui/guiConst.cpp:602 src/gui/patManager.cpp:35 +msgid "Pattern Manager" +msgstr "Менеджер паттернов" + +#: src/gui/settings.cpp:4183 +msgid "Unallocated" +msgstr "" + +#: src/gui/settings.cpp:4184 +msgid "Unused" +msgstr "" + +#: src/gui/settings.cpp:4185 +msgid "Used" +msgstr "" + +#: src/gui/settings.cpp:4186 +msgid "Overused" +msgstr "" + +#: src/gui/settings.cpp:4187 +msgid "Really overused" +msgstr "" + +#: src/gui/settings.cpp:4188 +msgid "Combo Breaker" +msgstr "" + +#: src/gui/settings.cpp:4191 src/gui/guiConst.cpp:599 src/gui/piano.cpp:63 +msgid "Piano" +msgstr "Клавиатура пианино" + +#: src/gui/settings.cpp:4193 +msgid "Upper key" +msgstr "" + +#: src/gui/settings.cpp:4194 +msgid "Upper key (feedback)" +msgstr "" + +#: src/gui/settings.cpp:4195 +msgid "Upper key (pressed)" +msgstr "" + +#: src/gui/settings.cpp:4196 +msgid "Lower key" +msgstr "" + +#: src/gui/settings.cpp:4197 +msgid "Lower key (feedback)" +msgstr "" + +#: src/gui/settings.cpp:4198 +msgid "Lower key (pressed)" +msgstr "" + +#: src/gui/settings.cpp:4201 src/gui/clock.cpp:31 src/gui/guiConst.cpp:610 +msgid "Clock" +msgstr "Часы" + +#: src/gui/settings.cpp:4202 +msgid "Clock text" +msgstr "" + +#: src/gui/settings.cpp:4203 +msgid "Beat (off)" +msgstr "" + +#: src/gui/settings.cpp:4204 +msgid "Beat (on)" +msgstr "" + +#: src/gui/settings.cpp:4209 +msgid "PortSet" +msgstr "" + +#: src/gui/settings.cpp:4210 +msgid "Port" +msgstr "" + +#: src/gui/settings.cpp:4211 +msgid "Port (hidden/unavailable)" +msgstr "" + +#: src/gui/settings.cpp:4212 +msgid "Connection (selected)" +msgstr "" + +#: src/gui/settings.cpp:4213 +msgid "Connection (other)" +msgstr "" + +#: src/gui/settings.cpp:4219 +msgid "Waveform data" +msgstr "" + +#: src/gui/settings.cpp:4222 +msgid "Reserved" +msgstr "" + +#: src/gui/settings.cpp:4224 +msgid "Sample (alternate 1)" +msgstr "" + +#: src/gui/settings.cpp:4225 +msgid "Sample (alternate 2)" +msgstr "" + +#: src/gui/settings.cpp:4226 +msgid "Sample (alternate 3)" +msgstr "" + +#: src/gui/settings.cpp:4227 +msgid "Wave RAM" +msgstr "ОЗУ волн" + +#: src/gui/settings.cpp:4228 +msgid "Wavetable (static)" +msgstr "" + +#: src/gui/settings.cpp:4229 +msgid "Echo buffer" +msgstr "" + +#: src/gui/settings.cpp:4230 +msgid "Namco 163 load pos" +msgstr "" + +#: src/gui/settings.cpp:4231 +msgid "Namco 163 play pos" +msgstr "" + +#: src/gui/settings.cpp:4232 +msgid "Sample (bank 0)" +msgstr "" + +#: src/gui/settings.cpp:4233 +msgid "Sample (bank 1)" +msgstr "" + +#: src/gui/settings.cpp:4234 +msgid "Sample (bank 2)" +msgstr "" + +#: src/gui/settings.cpp:4235 +msgid "Sample (bank 3)" +msgstr "" + +#: src/gui/settings.cpp:4236 +msgid "Sample (bank 4)" +msgstr "" + +#: src/gui/settings.cpp:4237 +msgid "Sample (bank 5)" +msgstr "" + +#: src/gui/settings.cpp:4238 +msgid "Sample (bank 6)" +msgstr "" + +#: src/gui/settings.cpp:4239 +msgid "Sample (bank 7)" +msgstr "" + +#: src/gui/settings.cpp:4244 +msgid "Log level: Error" +msgstr "" + +#: src/gui/settings.cpp:4245 +msgid "Log level: Warning" +msgstr "" + +#: src/gui/settings.cpp:4246 +msgid "Log level: Info" +msgstr "" + +#: src/gui/settings.cpp:4247 +msgid "Log level: Debug" +msgstr "" + +#: src/gui/settings.cpp:4248 +msgid "Log level: Trace/Verbose" +msgstr "" + +#: src/gui/settings.cpp:4253 +msgid "Backup" +msgstr "Резервное копирование" + +#: src/gui/settings.cpp:4258 +msgid "Enable backup system" +msgstr "Включить резервное копирование" + +#: src/gui/settings.cpp:4263 +msgid "Interval (in seconds)" +msgstr "Интервал (в секундах)" + +#: src/gui/settings.cpp:4268 +msgid "Backups per file" +msgstr "Резервных копий каждого файла" + +#: src/gui/settings.cpp:4274 +msgid "Backup Management" +msgstr "Управление резервными копиями" + +#: src/gui/settings.cpp:4278 +msgid "Purge before:" +msgstr "Удалить все до даты:" + +#: src/gui/settings.cpp:4352 +msgid "Go##PDate" +msgstr "Удалить##PDate" + +#: src/gui/settings.cpp:4359 +#, c-format +msgid "%PB used" +msgstr "" + +#: src/gui/settings.cpp:4361 +#, c-format +msgid "%TB used" +msgstr "" + +#: src/gui/settings.cpp:4363 +#, c-format +msgid "%GB used" +msgstr "" + +#: src/gui/settings.cpp:4365 +#, c-format +msgid "%MB used" +msgstr "" + +#: src/gui/settings.cpp:4367 +#, c-format +msgid "%KB used" +msgstr "" + +#: src/gui/settings.cpp:4369 +#, c-format +msgid "% bytes used" +msgstr "" + +#: src/gui/settings.cpp:4374 +msgid "Refresh" +msgstr "Обновить список" + +#: src/gui/settings.cpp:4378 +msgid "Delete all" +msgstr "Удалить все" + +#: src/gui/settings.cpp:4384 src/gui/settings.cpp:6688 +msgid "Size" +msgstr "Размер посл. рез. копии" + +#: src/gui/settings.cpp:4385 +msgid "Latest" +msgstr "Посл. рез. копия" + +#: src/gui/settings.cpp:4395 +#, c-format +msgid "%P" +msgstr "" + +#: src/gui/settings.cpp:4397 +#, c-format +msgid "%T" +msgstr "" + +#: src/gui/settings.cpp:4399 +#, c-format +msgid "%G" +msgstr "" + +#: src/gui/settings.cpp:4401 +#, c-format +msgid "%M" +msgstr "" + +#: src/gui/settings.cpp:4403 +#, c-format +msgid "%K" +msgstr "" + +#: src/gui/settings.cpp:4405 +#, c-format +msgid "%" +msgstr "" + +#: src/gui/settings.cpp:4529 +msgid "Cheat Codes" +msgstr "" + +#: src/gui/settings.cpp:4531 +msgid "Enter code:" +msgstr "" + +#: src/gui/settings.cpp:4533 +msgid "Submit" +msgstr "" + +#: src/gui/settings.cpp:4537 +msgid "invalid code" +msgstr "" + +#: src/gui/settings.cpp:4547 +msgid "toggled alternate UI" +msgstr "" + +#: src/gui/settings.cpp:4551 +msgid ":smile: :star_struck: :sunglasses: :ok_hand:" +msgstr "" + +#: src/gui/settings.cpp:4555 +msgid "enabled all instrument types" +msgstr "" + +#: src/gui/settings.cpp:4559 +msgid "OK, if I bring your Partial pitch linearity will you stop bothering me?" +msgstr "" + +#: src/gui/settings.cpp:4563 +msgid "unlocked audio multi-threading options!" +msgstr "" + +#: src/gui/settings.cpp:4567 +msgid "enabled \"comfortable\" mode" +msgstr "" + +#: src/gui/settings.cpp:4585 +msgid "OK##SettingsOK" +msgstr "ОК##SettingsOK" + +#: src/gui/settings.cpp:4591 +msgid "Cancel##SettingsCancel" +msgstr "Отмена##SettingsCancel" + +#: src/gui/settings.cpp:4599 +msgid "Apply##SettingsApply" +msgstr "Применить##SettingsApply" + +#: src/gui/settings.cpp:5673 +msgid "could not initialize audio!" +msgstr "не смог инициализировать аудио!" + +#: src/gui/settings.cpp:5683 src/gui/gui.cpp:4067 src/gui/gui.cpp:6662 +#: src/gui/gui.cpp:7088 +msgid "error while loading fonts! please check your settings." +msgstr "Ошибка при загрузке шрифтов! Проверьте свои настройки." + +#: src/gui/settings.cpp:5862 +#, c-format +msgid "error while loading config! (%s)" +msgstr "ошибка при загрузке файла настроек! (%s)" + +#: src/gui/settings.cpp:6675 +msgid "[Dir]" +msgstr "" + +#: src/gui/settings.cpp:6676 +msgid "[Link]" +msgstr "" + +#: src/gui/settings.cpp:6677 +#, fuzzy +msgid "[File]" +msgstr "Файл" + +#: src/gui/settings.cpp:6678 +#, fuzzy +msgid "Name:" +msgstr "Имя" + +#: src/gui/settings.cpp:6679 +msgid "Path:" +msgstr "" + +#: src/gui/settings.cpp:6680 +#, fuzzy +msgid "Reset search" +msgstr "Сбросить до настроек по умолчанию" + +#: src/gui/settings.cpp:6681 +#, fuzzy +msgid "Drives" +msgstr "Драйвер" + +#: src/gui/settings.cpp:6682 +msgid "" +"Edit path\n" +"You can also right click on path buttons" +msgstr "" + +#: src/gui/settings.cpp:6683 +#, fuzzy +msgid "Go to home directory" +msgstr "Секция сэмплов" + +#: src/gui/settings.cpp:6684 +#, fuzzy +msgid "Go to parent directory" +msgstr "открыть внутреннюю папку с ресурсами" + +#: src/gui/settings.cpp:6685 +#, fuzzy +msgid "Create Directory" +msgstr "Секция сэмплов" + +#: src/gui/settings.cpp:6686 +#, fuzzy +msgid "File name" +msgstr "название сэмпла" + +#: src/gui/settings.cpp:6689 +#, fuzzy +msgid "Date" +msgstr "Удалить##PDate" + +#: src/gui/settings.cpp:6690 src/gui/gui.cpp:5510 src/gui/gui.cpp:5645 +#: src/gui/gui.cpp:5646 +msgid "Warning" +msgstr "" + +#: src/gui/settings.cpp:6691 +msgid "The file you selected already exists! Would you like to overwrite it?" +msgstr "" + +#: src/gui/settings.cpp:6692 src/gui/gui.cpp:5650 src/gui/gui.cpp:5674 +#: src/gui/gui.cpp:5698 src/gui/gui.cpp:5722 src/gui/gui.cpp:5746 +#: src/gui/gui.cpp:5770 src/gui/gui.cpp:5802 src/gui/gui.cpp:5818 +#: src/gui/gui.cpp:5829 src/gui/gui.cpp:5841 src/gui/gui.cpp:5995 +#: src/gui/gui.cpp:6017 src/gui/gui.cpp:6032 src/gui/gui.cpp:6043 +msgid "Yes" +msgstr "Да" + +#: src/gui/settings.cpp:6693 src/gui/findReplace.cpp:828 src/gui/gui.cpp:5664 +#: src/gui/gui.cpp:5688 src/gui/gui.cpp:5712 src/gui/gui.cpp:5736 +#: src/gui/gui.cpp:5760 src/gui/gui.cpp:5788 src/gui/gui.cpp:5813 +#: src/gui/gui.cpp:5824 src/gui/gui.cpp:5836 src/gui/gui.cpp:5848 +#: src/gui/gui.cpp:6012 src/gui/gui.cpp:6027 src/gui/gui.cpp:6037 +#: src/gui/gui.cpp:6050 +msgid "No" +msgstr "Нет" + +#: src/gui/settings.cpp:6694 +msgid "%Y/%m/%d %H:%M" +msgstr "" + +#: src/gui/orders.cpp:114 +msgid "Add new order" +msgstr "Добавить строку" + +#: src/gui/orders.cpp:125 src/gui/guiConst.cpp:794 +msgid "Remove order" +msgstr "Удалить строку матрицы паттернов" + +#: src/gui/orders.cpp:137 +msgid "Duplicate order (right-click to deep clone)" +msgstr "Клонировать строку (ПКМ для клонирования с выделением новых индексов)" + +#: src/gui/orders.cpp:146 src/gui/guiConst.cpp:795 +msgid "Move order up" +msgstr "Сдвинуть строку матрицы паттернов вверх" + +#: src/gui/orders.cpp:155 src/gui/guiConst.cpp:796 +msgid "Move order down" +msgstr "Сдвинуть строку матрицы паттернов вниз" + +#: src/gui/orders.cpp:167 +msgid "Place copy of current order at end of song (right-click to deep clone)" +msgstr "" +"Поместить копию строки (ПКМ для копирования с выделением новых индексов) в " +"конец трека" + +#: src/gui/orders.cpp:177 +msgid "Order change mode: entire row" +msgstr "Режим изменения: вся строка" + +#: src/gui/orders.cpp:179 +msgid "Order change mode: one" +msgstr "Режим изменения: ячейка" + +#: src/gui/orders.cpp:205 +msgid "Order edit mode: Select and type (scroll vertically)" +msgstr "Режим редактирования: Выбрать и печатать (вертикальная прокрутка)" + +#: src/gui/orders.cpp:207 +msgid "Order edit mode: Select and type (scroll horizontally)" +msgstr "Режим редактирования: Выбрать и печатать (горизонтальная прокрутка)" + +#: src/gui/orders.cpp:209 +msgid "Order edit mode: Select and type (don't scroll)" +msgstr "Режим редактирования: Выбрать и печатать (без прокрутки)" + +#: src/gui/orders.cpp:211 +msgid "Order edit mode: Click to change" +msgstr "Режим редактирования: нажмите для изменения" + +#: src/gui/findReplace.cpp:29 +msgid "ignore" +msgstr "игнорировать" + +#: src/gui/findReplace.cpp:30 +msgid "equals" +msgstr "равно" + +#: src/gui/findReplace.cpp:31 +msgid "not equal" +msgstr "не равно" + +#: src/gui/findReplace.cpp:32 +msgid "between" +msgstr "между" + +#: src/gui/findReplace.cpp:33 +msgid "not between" +msgstr "за пределами интервала" + +#: src/gui/findReplace.cpp:34 +msgid "any" +msgstr "любой" + +#: src/gui/findReplace.cpp:35 src/gui/guiConst.cpp:217 +msgid "none" +msgstr "нет" + +#: src/gui/findReplace.cpp:39 +msgid "set" +msgstr "выставить значение" + +#: src/gui/findReplace.cpp:40 +msgid "add" +msgstr "добавить" + +#: src/gui/findReplace.cpp:41 +msgid "add (overflow)" +msgstr "добавить (с переполнением)" + +#: src/gui/findReplace.cpp:42 +msgid "scale %" +msgstr "масштабировать (в %)" + +#: src/gui/findReplace.cpp:512 src/gui/guiConst.cpp:609 +msgid "Find/Replace" +msgstr "Найти/Заменить" + +#: src/gui/findReplace.cpp:520 src/gui/findReplace.cpp:850 +msgid "Find" +msgstr "Найти" + +#: src/gui/findReplace.cpp:526 src/gui/findReplace.cpp:535 +msgid "order" +msgstr "строка матрицы паттернов" + +#: src/gui/findReplace.cpp:527 src/gui/findReplace.cpp:537 +msgid "row" +msgstr "строка" + +#: src/gui/findReplace.cpp:539 src/gui/csPlayer.cpp:146 +msgid "channel" +msgstr "канал" + +#: src/gui/findReplace.cpp:541 +msgid "go" +msgstr "запустить" + +#: src/gui/findReplace.cpp:585 +msgid "no matches found!" +msgstr "совпадений не найдено!" + +#: src/gui/findReplace.cpp:587 +msgid "Back" +msgstr "Назад" + +#: src/gui/findReplace.cpp:750 +msgid "Delete query" +msgstr "Удалить строку" + +#: src/gui/findReplace.cpp:754 src/gui/findReplace.cpp:1037 +msgid "Add effect" +msgstr "Добавить эффект" + +#: src/gui/findReplace.cpp:761 src/gui/findReplace.cpp:1044 +msgid "Remove effect" +msgstr "Удалить эффект" + +#: src/gui/findReplace.cpp:786 +msgid "Search range:" +msgstr "Диапазон поиска:" + +#: src/gui/findReplace.cpp:799 +msgid "Confine to channels" +msgstr "Только выбранные каналы" + +#: src/gui/findReplace.cpp:803 src/gui/sampleEdit.cpp:1152 +msgid "From" +msgstr "От" + +#: src/gui/findReplace.cpp:814 src/gui/sampleEdit.cpp:1156 +msgid "To" +msgstr "До" + +#: src/gui/findReplace.cpp:826 +msgid "Match effect position:" +msgstr "Совпадение с положением эффекта:" + +#: src/gui/findReplace.cpp:832 +msgid "match effects regardless of position." +msgstr "эффекты обнаруживаются вне зависимости от положения." + +#: src/gui/findReplace.cpp:834 src/gui/compatFlags.cpp:288 +msgid "Lax" +msgstr "Нестрогое" + +#: src/gui/findReplace.cpp:838 +msgid "match effects only if they appear in-order." +msgstr "эффекты обнаруживаются, если они идут в правильном порядке." + +#: src/gui/findReplace.cpp:840 src/gui/compatFlags.cpp:276 +msgid "Strict" +msgstr "Строгое" + +#: src/gui/findReplace.cpp:844 +msgid "match effects only if they appear exactly as specified." +msgstr "эффекты обнаруживаются, если они полностью соответствуют запросу." + +#: src/gui/findReplace.cpp:856 +msgid "Replace" +msgstr "Заменить" + +#: src/gui/findReplace.cpp:908 +msgid "INVALID" +msgstr "НЕДЕЙСТВ." + +#: src/gui/findReplace.cpp:1052 +msgid "Effect replace mode:" +msgstr "Режим замены эффектов:" + +#: src/gui/findReplace.cpp:1053 +msgid "Replace matches only" +msgstr "Заменять только совпадения" + +#: src/gui/findReplace.cpp:1056 +msgid "Replace matches, then free spaces" +msgstr "Заменять совпадения, заполнять пустые ячейки" + +#: src/gui/findReplace.cpp:1059 +msgid "Clear effects" +msgstr "Заменять эффекты" + +#: src/gui/findReplace.cpp:1062 +msgid "Insert in free spaces" +msgstr "Вставлять эффекты в пустых ячейках" + +#: src/gui/findReplace.cpp:1065 +msgid "Replace##QueryReplace" +msgstr "Заменить##QueryReplace" + +# TODO: this reads "are". should be "is". +#: src/gui/about.cpp:26 +msgid "is proud to present" +msgstr "с гордостью представляют" + +#: src/gui/about.cpp:30 +msgid "the biggest multi-system chiptune tracker!" +msgstr "самый большой мультисистемный чиптюн-трекер!" + +#: src/gui/about.cpp:31 +msgid "featuring DefleMask song compatibility." +msgstr "совместим с файлами Deflemask." + +#: src/gui/about.cpp:33 +msgid "> CREDITS <" +msgstr "> ТИТРЫ <" + +#: src/gui/about.cpp:35 +msgid "-- program --" +msgstr "-- код --" + +#: src/gui/about.cpp:37 +msgid "A M 4 N (intro tune)" +msgstr "A M 4 N (музыка в интро)" + +#: src/gui/about.cpp:52 +msgid "-- graphics/UI design --" +msgstr "-- графика/дизайн интерфейса --" + +#: src/gui/about.cpp:59 +msgid "-- documentation --" +msgstr "-- документация --" + +#: src/gui/about.cpp:69 +msgid "-- localization/translation team --" +msgstr "" + +#: src/gui/about.cpp:81 +msgid "-- demo songs --" +msgstr "-- демо-модули --" + +#: src/gui/about.cpp:207 +msgid "-- additional feedback/fixes --" +msgstr "-- обратная связь/фиксы --" + +#: src/gui/about.cpp:218 +msgid "-- Metal backend test team --" +msgstr "-- Команда тестирования библиотеки отрисовки Metal --" + +#: src/gui/about.cpp:224 +msgid "-- DirectX 9 backend test team --" +msgstr "-- Команда тестирования библиотеки отрисовки DirectX 9 --" + +#: src/gui/about.cpp:231 +msgid "powered by:" +msgstr "программа использует:" + +#: src/gui/about.cpp:232 +msgid "Dear ImGui by Omar Cornut" +msgstr "Dear ImGui за авторством Omar Cornut" + +#: src/gui/about.cpp:233 +msgid "SDL2 by Sam Lantinga" +msgstr "SDL2 за авторством Sam Lantinga" + +#: src/gui/about.cpp:237 +msgid "zlib by Jean-loup Gailly" +msgstr "zlib за авторством Jean-loup Gailly" + +#: src/gui/about.cpp:238 +msgid "and Mark Adler" +msgstr "и Mark Adler" + +#: src/gui/about.cpp:239 +msgid "libsndfile by Erik de Castro Lopo" +msgstr "libsndfile за авторством Erik de Castro Lopo" + +#: src/gui/about.cpp:240 +msgid "Portable File Dialogs by Sam Hocevar" +msgstr "Portable File Dialogs за авторством Sam Hocevar" + +#: src/gui/about.cpp:241 +msgid "Native File Dialog by Frogtoss Games" +msgstr "Native File Dialog за авторством Frogtoss Games" + +#: src/gui/about.cpp:243 +msgid "Weak-JACK by x42" +msgstr "Weak-JACK за авторством x42" + +#: src/gui/about.cpp:244 +msgid "RtMidi by Gary P. Scavone" +msgstr "RtMidi за авторством Gary P. Scavone" + +#: src/gui/about.cpp:245 +msgid "FFTW by Matteo Frigo and Steven G. Johnson" +msgstr "FFTW за авторством Matteo Frigo и Steven G. Johnson" + +#: src/gui/about.cpp:246 +msgid "backward-cpp by Google" +msgstr "backward-cpp за авторством Google" + +#: src/gui/about.cpp:247 +msgid "adpcm by superctr" +msgstr "adpcm за авторством superctr" + +#: src/gui/about.cpp:248 +msgid "adpcm-xq by David Bryant" +msgstr "adpcm-xq за авторством David Bryant" + +#: src/gui/about.cpp:249 +msgid "Nuked-OPL3/OPLL/OPM/OPN2/PSG by nukeykt" +msgstr "Nuked-OPL3/OPLL/OPM/OPN2/PSG за авторством nukeykt" + +#: src/gui/about.cpp:250 +msgid "YM3812-LLE, YMF262-LLE, YMF276-LLE and YM2608-LLE by nukeykt" +msgstr "YM3812-LLE, YMF262-LLE, YMF276-LLE и YM2608-LLE за авторством nukeykt" + +#: src/gui/about.cpp:251 +msgid "ESFMu (modified version) by Kagamiin~" +msgstr "Эмулятор ESFMu (модифицированная версия) за авторством Kagamiin~" + +#: src/gui/about.cpp:252 +msgid "ymfm by Aaron Giles" +msgstr "ymfm за авторством Aaron Giles" + +#: src/gui/about.cpp:253 +msgid "emu2413 by Digital Sound Antiques" +msgstr "emu2413 за авторством Digital Sound Antiques" + +#: src/gui/about.cpp:254 +msgid "MAME SN76496 by Nicola Salmoria" +msgstr "MAME SN76496 за авторством Nicola Salmoria" + +#: src/gui/about.cpp:255 +msgid "MAME AY-3-8910 by Couriersud" +msgstr "MAME AY-3-8910 за авторством Couriersud" + +#: src/gui/about.cpp:256 +msgid "with AY8930 fixes by Eulous, cam900 and Grauw" +msgstr "с исправлениями для AY8930 за авторством Eulous, cam900 и Grauw" + +#: src/gui/about.cpp:257 +msgid "MAME SAA1099 by Juergen Buchmueller and Manuel Abadia" +msgstr "MAME SAA1099 за авторством Juergen Buchmueller и Manuel Abadia" + +#: src/gui/about.cpp:258 +msgid "MAME Namco WSG by Nicola Salmoria and Aaron Giles" +msgstr "MAME Namco WSG за авторством Nicola Salmoria и Aaron Giles" + +#: src/gui/about.cpp:259 +msgid "MAME RF5C68 core by Olivier Galibert and Aaron Giles" +msgstr "MAME RF5C68 core за авторством Olivier Galibert и Aaron Giles" + +#: src/gui/about.cpp:260 +msgid "MAME MSM5232 core by Jarek Burczynski and Hiromitsu Shioya" +msgstr "MAME MSM5232 core за авторством Jarek Burczynski и Hiromitsu Shioya" + +#: src/gui/about.cpp:261 +msgid "MAME MSM6258 core by Barry Rodewald" +msgstr "MAME MSM6258 core за авторством Barry Rodewald" + +#: src/gui/about.cpp:262 +msgid "MAME YMZ280B core by Aaron Giles" +msgstr "MAME YMZ280B core за авторством Aaron Giles" + +#: src/gui/about.cpp:263 +msgid "MAME GA20 core by Acho A. Tang and R. Belmont" +msgstr "MAME GA20 core за авторством Acho A. Tang и R. Belmont" + +#: src/gui/about.cpp:264 +msgid "MAME SegaPCM core by Hiromitsu Shioya and Olivier Galibert" +msgstr "MAME SegaPCM core за авторством Hiromitsu Shioya и Olivier Galibert" + +#: src/gui/about.cpp:265 +msgid "SAASound by Dave Hooper and Simon Owen" +msgstr "SAASound за авторством Dave Hooper и Simon Owen" + +#: src/gui/about.cpp:266 +msgid "SameBoy by Lior Halphon" +msgstr "SameBoy за авторством Lior Halphon" + +#: src/gui/about.cpp:267 +msgid "Mednafen PCE, WonderSwan, T6W28 and Virtual Boy audio cores" +msgstr "Ядра эмуляции Mednafen PCE, WonderSwan, T6W28 и Virtual Boy" + +#: src/gui/about.cpp:268 +msgid "SNES DSP core by Blargg" +msgstr "SNES DSP core за авторством Blargg" + +#: src/gui/about.cpp:269 +msgid "puNES (NES, MMC5 and FDS) by FHorse" +msgstr "puNES (NES, MMC5 и FDS) за авторством FHorse" + +#: src/gui/about.cpp:270 +msgid "NSFPlay (NES and FDS) by Brad Smith and Brezza" +msgstr "NSFPlay (NES and FDS) за авторством Brad Smith и Brezza" + +#: src/gui/about.cpp:271 +msgid "reSID by Dag Lem" +msgstr "reSID за авторством Dag Lem" + +#: src/gui/about.cpp:272 +msgid "reSIDfp by Dag Lem, Antti Lankila" +msgstr "reSIDfp за авторством Dag Lem, Antti Lankila" + +#: src/gui/about.cpp:273 +msgid "and Leandro Nini" +msgstr "и Leandro Nini" + +#: src/gui/about.cpp:274 +msgid "dSID by DefleMask Team based on jsSID" +msgstr "dSID за авторством команды DefleMask (на основе jsSID)" + +#: src/gui/about.cpp:275 +msgid "Stella by Stella Team" +msgstr "Stella за авторством Stella Team" + +#: src/gui/about.cpp:276 +msgid "QSound emulator by superctr and Valley Bell" +msgstr "Эмулятор QSound за авторством superctr и Valley Bell" + +#: src/gui/about.cpp:277 +msgid "VICE VIC-20 sound core by Rami Rasanen and viznut" +msgstr "Ядро эмуляции VICE VIC-20 за авторством Rami Rasanen и viznut" + +#: src/gui/about.cpp:278 +msgid "VICE TED sound core by Andreas Boose, Tibor Biczo" +msgstr "Ядро эмуляции VICE TED за авторством Andreas Boose, Tibor Biczo" + +#: src/gui/about.cpp:279 +msgid "and Marco van den Heuvel" +msgstr "и Marco van den Heuvel" + +#: src/gui/about.cpp:280 +msgid "VERA sound core by Frank van den Hoef" +msgstr "Ядро эмуляции VERA за авторством Frank van den Hoef" + +#: src/gui/about.cpp:281 +msgid "mzpokeysnd POKEY emulator by Michael Borisov" +msgstr "mzpokeysnd (эмулятор POKEY) за авторством Michael Borisov" + +#: src/gui/about.cpp:282 +msgid "ASAP POKEY emulator by Piotr Fusik" +msgstr "ASAP (эмулятор POKEY) за авторством Piotr Fusik" + +#: src/gui/about.cpp:283 +msgid "ported by laoo to C++" +msgstr "портирован на C++ laoo" + +#: src/gui/about.cpp:284 +msgid "vgsound_emu (second version, modified version) by cam900" +msgstr "vgsound_emu (версия вторая, модифицированная) за авторством cam900" + +#: src/gui/about.cpp:285 +msgid "SM8521 emulator (modified version) by cam900" +msgstr "Эмулятор SM8521 (модифицированная версия) за авторством cam900" + +#: src/gui/about.cpp:286 +msgid "D65010G031 emulator (modified version) by cam900" +msgstr "Эмулятор D65010G031 (модифицированная версия) за авторством cam900" + +#: src/gui/about.cpp:287 +msgid "Namco C140/C219 emulator (modified version) by cam900" +msgstr "Эмулятор C140/C219 (модифицированная версия) за авторством cam900" + +#: src/gui/about.cpp:288 +msgid "PowerNoise emulator by scratchminer" +msgstr "Эмулятор PowerNoise за авторством scratchminer" + +#: src/gui/about.cpp:289 +msgid "ep128emu by Istvan Varga" +msgstr "ep128emu за авторством Istvan Varga" + +#: src/gui/about.cpp:290 +msgid "NDS sound emulator by cam900" +msgstr "NDS sound emulator за авторством cam900" + +#: src/gui/about.cpp:292 +msgid "greetings to:" +msgstr "передаём привет:" + +#: src/gui/about.cpp:295 +msgid "all members of Deflers of Noice!" +msgstr "всем участникам Deflers of Noice!" + +#: src/gui/about.cpp:301 +msgid "copyright © 2021-2024 tildearrow" +msgstr "Все права защищены © 2021-2024 tildearrow" + +#: src/gui/about.cpp:302 +msgid "(and contributors)." +msgstr "(и участники разработки)." + +#: src/gui/about.cpp:303 +msgid "licensed under GPLv2+! see" +msgstr "лицензировано по GPLv2+! см." + +#: src/gui/about.cpp:304 +msgid "LICENSE for more information." +msgstr "LICENSE для доп. информации." + +#: src/gui/about.cpp:306 +msgid "help Furnace grow:" +msgstr "помогите в развитии Furnace:" + +#: src/gui/about.cpp:309 +msgid "contact tildearrow at:" +msgstr "вы можете связаться с tildearrow:" + +#: src/gui/about.cpp:312 +msgid "disclaimer:" +msgstr "внимание:" + +#: src/gui/about.cpp:313 +msgid "despite the fact this program works" +msgstr "несмотря на то что эта программа работает" + +#: src/gui/about.cpp:314 +msgid "with the .dmf file format, it is NOT" +msgstr "с файлами формата .dmf, она НЕ" + +#: src/gui/about.cpp:315 +msgid "affiliated with Delek or DefleMask in" +msgstr "связана с Delek'ом или программой DefleMask," + +#: src/gui/about.cpp:316 +msgid "any way, nor it is a replacement for" +msgstr "и не является заменой" + +#: src/gui/about.cpp:317 +msgid "the original program." +msgstr "оригинальной программы." + +#: src/gui/about.cpp:319 +msgid "it also comes with ABSOLUTELY NO WARRANTY." +msgstr "она также предоставляется БЕЗ КАКИХ-ЛИБО ГАРАНТИЙ." + +#: src/gui/about.cpp:321 +msgid "thanks to all contributors/bug reporters!" +msgstr "спасибо всем, кто помогает с разработкой и сообщает о багах!" + +#: src/gui/about.cpp:328 +msgid "About Furnace" +msgstr "О Furnace" + +#: src/gui/about.cpp:418 +msgid "Unsaved changes! Save changes before playing?" +msgstr "" + +#: src/gui/compatFlags.cpp:31 src/gui/guiConst.cpp:598 +msgid "Compatibility Flags" +msgstr "Флаги совместимости" + +#: src/gui/compatFlags.cpp:32 +msgid "" +"these flags are designed to provide better DefleMask/older Furnace " +"compatibility.\n" +"it is recommended to disable most of these unless you rely on specific " +"quirks." +msgstr "" +"эти флаги предназначены для лучшей совместимости с DefleMask/старыми " +"версиями Furnace.\n" +"рекомендуется отключать большинство из них, если вы не полагаетесь на " +"специфику работы программы, которую они обеспечивают." + +#: src/gui/compatFlags.cpp:34 src/gui/compatFlags.cpp:310 +msgid "DefleMask" +msgstr "" + +#: src/gui/compatFlags.cpp:35 +msgid "Limit slide range" +msgstr "" + +#: src/gui/compatFlags.cpp:37 +msgid "" +"when enabled, slides are limited to a compatible range.\n" +"may cause problems with slides in negative octaves." +msgstr "" + +#: src/gui/compatFlags.cpp:39 +msgid "Compatible noise layout on NES and PC Engine" +msgstr "" + +#: src/gui/compatFlags.cpp:41 +msgid "" +"use a rather unusual compatible noise frequency layout.\n" +"removes some noise frequencies on PC Engine." +msgstr "" + +#: src/gui/compatFlags.cpp:43 +msgid "Game Boy instrument duty is wave volume" +msgstr "" +"Макрос скважности инструмента Game Boy контролирует громкость канала " +"волновых таблиц" + +#: src/gui/compatFlags.cpp:45 +msgid "" +"if enabled, an instrument with duty macro in the wave channel will be mapped " +"to wavetable volume." +msgstr "" +"при включении макрос скважности инструмента будет назначен для контроля " +"громкости канала волновых таблиц." + +#: src/gui/compatFlags.cpp:48 +msgid "Restart macro on portamento" +msgstr "Перезапуск макроса при портаменто" + +#: src/gui/compatFlags.cpp:50 +msgid "" +"when enabled, a portamento effect will reset the channel's macro if used in " +"combination with a note." +msgstr "" +"при включении этого флага эффект портаменто, будучи размещённым рядом с " +"нотой, будет перезапускать макросы инструмента." + +#: src/gui/compatFlags.cpp:52 +msgid "Legacy volume slides" +msgstr "" + +#: src/gui/compatFlags.cpp:54 +msgid "" +"simulate glitchy volume slide behavior by silently overflowing the volume " +"when the slide goes below 0." +msgstr "" + +#: src/gui/compatFlags.cpp:56 +msgid "Compatible arpeggio" +msgstr "" + +#: src/gui/compatFlags.cpp:58 +msgid "delay arpeggio by one tick on every new note." +msgstr "" + +#: src/gui/compatFlags.cpp:60 +msgid "Disable DAC when sample ends" +msgstr "" + +#: src/gui/compatFlags.cpp:62 +msgid "" +"when enabled, the DAC in YM2612 will be disabled if there isn't any sample " +"playing." +msgstr "" + +#: src/gui/compatFlags.cpp:64 +msgid "Broken speed alternation" +msgstr "" + +#: src/gui/compatFlags.cpp:66 +msgid "" +"determines next speed based on whether the row is odd/even instead of " +"alternating between speeds." +msgstr "" + +#: src/gui/compatFlags.cpp:68 +msgid "Ignore duplicate slide effects" +msgstr "Игнорировать дублирующиеся эффекты авто-портаменто" + +#: src/gui/compatFlags.cpp:70 +msgid "" +"if this is on, only the first slide of a row in a channel will be considered." +msgstr "" +"при включении этого флага только первый эффект авто-портаменто в данной " +"строке будет эффективен." + +#: src/gui/compatFlags.cpp:72 +msgid "Ignore 0Dxx on the last order" +msgstr "Игнорировать 0Dxx на последней строке матрицы паттернов" + +#: src/gui/compatFlags.cpp:74 +msgid "" +"if this is on, a jump to next row effect will not take place when it is on " +"the last order of a song." +msgstr "" +"при включении флага эффект прыжка на следующий паттерн не будет работать, " +"если паттерн проигрывается в последней строке матрицы паттернов." + +#: src/gui/compatFlags.cpp:76 +msgid "Buggy portamento after pitch slide" +msgstr "" + +#: src/gui/compatFlags.cpp:78 +msgid "simulates a bug in where portamento does not work after sliding." +msgstr "" + +#: src/gui/compatFlags.cpp:80 +msgid "FM pitch slide octave boundary odd behavior" +msgstr "" + +#: src/gui/compatFlags.cpp:82 +msgid "" +"if this is on, a pitch slide that crosses the octave boundary will stop for " +"one tick and then continue from the nearest octave boundary.\n" +"for .dmf compatibility." +msgstr "" + +#: src/gui/compatFlags.cpp:84 +msgid "Don't apply Game Boy envelope on note-less instrument change" +msgstr "Не применять огибающую Game Boy при смене инструмента без ноты" + +#: src/gui/compatFlags.cpp:86 +msgid "if this is on, an instrument change will not affect the envelope." +msgstr "" +"при включении этого флага смена инструмента без смены ноты не будет влиять " +"на огибающую." + +#: src/gui/compatFlags.cpp:88 +msgid "Ignore DAC mode change outside of intended channel in ExtCh mode" +msgstr "" +"Игнорировать переключение режима ЦАП, если оно не происходит на " +"соответствующем канале, в режиме расширенного канала" + +#: src/gui/compatFlags.cpp:90 +msgid "if this is on, 17xx has no effect on the operator channels in YM2612." +msgstr "" +"при включении этого флага 17xx не работает, если размещён на каналах " +"операторов расширенного канала (для YM2612)." + +#: src/gui/compatFlags.cpp:92 +msgid "E1xy/E2xy also take priority over slide stops" +msgstr "" + +#: src/gui/compatFlags.cpp:94 +msgid "does this make any sense by now?" +msgstr "" + +#: src/gui/compatFlags.cpp:96 +msgid "E1xy/E2xy stop when repeating the same note" +msgstr "" + +#: src/gui/compatFlags.cpp:98 +msgid "ugh, if only this wasn't a thing..." +msgstr "" + +#: src/gui/compatFlags.cpp:100 +msgid "SN76489 duty macro always resets phase" +msgstr "Макрос скважности SN76489 всегда сбрасывает фазу" + +#: src/gui/compatFlags.cpp:102 +msgid "" +"when enabled, duty macro will always reset phase, even if its value hasn't " +"changed." +msgstr "" +"при включении этого флага макрос скважности всегда будет сбрасывать фазу, " +"даже если значение скважности не меняется." + +#: src/gui/compatFlags.cpp:104 +msgid "Broken volume scaling strategy" +msgstr "" + +#: src/gui/compatFlags.cpp:106 +msgid "" +"when enabled:\n" +"- log scaling: multiply\n" +"- linear scaling: subtract\n" +"when disabled:\n" +"- log scaling: subtract\n" +"- linear scaling: multiply" +msgstr "" + +#: src/gui/compatFlags.cpp:108 +msgid "Don't persist volume macro after it finishes" +msgstr "Не удерживать значение макроса громкости после его завершения" + +#: src/gui/compatFlags.cpp:110 +msgid "" +"when enabled, a value in the volume column that happens after the volume " +"macro is done will disregard the macro." +msgstr "" +"при включении этого флага значение в столбце громкости, расположенное после " +"завершения макроса громкости, не будет учитывать значение макроса." + +#: src/gui/compatFlags.cpp:112 +msgid "Broken output volume on instrument change" +msgstr "" + +#: src/gui/compatFlags.cpp:114 +msgid "" +"if enabled, no checks for the presence of a volume macro will be made.\n" +"this will cause the last macro value to linger unless a value in the volume " +"column is present." +msgstr "" + +#: src/gui/compatFlags.cpp:116 +msgid "Broken output volume - Episode 2 (PLEASE KEEP ME DISABLED)" +msgstr "" + +#: src/gui/compatFlags.cpp:118 +msgid "" +"these compatibility flags are getting SO damn ridiculous and out of " +"control.\n" +"as you may have guessed, this one exists due to yet ANOTHER DefleMask-" +"specific behavior.\n" +"please keep this off at all costs, because I will not support it when ROM " +"export comes.\n" +"oh, and don't start an argument out of it. Furnace isn't a DefleMask " +"replacement, and no,\n" +"I am not trying to make it look like one with all these flags.\n" +"\n" +"oh, and what about the other flags that don't have to do with DefleMask?\n" +"those are for .mod import, future FamiTracker import and personal taste!\n" +"\n" +"end of rant" +msgstr "" + +#: src/gui/compatFlags.cpp:120 +msgid "Treat SN76489 periods under 8 as 1" +msgstr "" + +#: src/gui/compatFlags.cpp:122 +msgid "" +"when enabled, any SN period under 8 will be written as 1 instead.\n" +"this replicates DefleMask behavior, but reduces available period range." +msgstr "" + +#: src/gui/compatFlags.cpp:126 src/gui/compatFlags.cpp:304 +msgid "Old Furnace" +msgstr "" + +#: src/gui/compatFlags.cpp:127 +msgid "Arpeggio inhibits non-porta slides" +msgstr "" + +#: src/gui/compatFlags.cpp:129 src/gui/compatFlags.cpp:133 +msgid "behavior changed in 0.5.5" +msgstr "" + +#: src/gui/compatFlags.cpp:131 +msgid "Wack FM algorithm macro" +msgstr "" + +#: src/gui/compatFlags.cpp:135 +msgid "Broken shortcut slides (E1xy/E2xy)" +msgstr "" + +#: src/gui/compatFlags.cpp:137 +msgid "behavior changed in 0.5.7" +msgstr "" + +#: src/gui/compatFlags.cpp:139 +msgid "Stop portamento on note off" +msgstr "" + +#: src/gui/compatFlags.cpp:141 src/gui/compatFlags.cpp:145 +#: src/gui/compatFlags.cpp:149 src/gui/compatFlags.cpp:153 +#: src/gui/compatFlags.cpp:157 src/gui/compatFlags.cpp:161 +#: src/gui/compatFlags.cpp:165 +msgid "behavior changed in 0.6pre1" +msgstr "" + +#: src/gui/compatFlags.cpp:143 +msgid "Don't allow instrument change during slides" +msgstr "" + +#: src/gui/compatFlags.cpp:147 +msgid "Don't reset note to base on arpeggio stop" +msgstr "" + +#: src/gui/compatFlags.cpp:151 +msgid "ExtCh channel status is not shared among operators" +msgstr "" + +#: src/gui/compatFlags.cpp:155 +msgid "Disable new SegaPCM features (macros and better panning)" +msgstr "" + +#: src/gui/compatFlags.cpp:159 +msgid "Old FM octave boundary behavior" +msgstr "" + +#: src/gui/compatFlags.cpp:163 +msgid "Disable OPN2 DAC volume control" +msgstr "" + +#: src/gui/compatFlags.cpp:167 +msgid "Broken initial position of portamento after arpeggio" +msgstr "" + +#: src/gui/compatFlags.cpp:169 +msgid "behavior changed in 0.6pre1.5" +msgstr "" + +#: src/gui/compatFlags.cpp:171 +msgid "Disable new sample features" +msgstr "" + +#: src/gui/compatFlags.cpp:173 src/gui/compatFlags.cpp:177 +msgid "behavior changed in 0.6pre2" +msgstr "" + +#: src/gui/compatFlags.cpp:175 +msgid "Old arpeggio macro + pitch slide strategy" +msgstr "" + +#: src/gui/compatFlags.cpp:179 +msgid "Broken portamento during legato" +msgstr "" + +#: src/gui/compatFlags.cpp:181 +msgid "behavior changed in 0.6pre4" +msgstr "" + +#: src/gui/compatFlags.cpp:183 +msgid "Broken macros in some FM chips after note off" +msgstr "" + +#: src/gui/compatFlags.cpp:185 +msgid "behavior changed in 0.6pre5" +msgstr "" + +#: src/gui/compatFlags.cpp:187 +msgid "Pre-note does not take effects into consideration" +msgstr "" + +#: src/gui/compatFlags.cpp:189 +msgid "behavior changed in 0.6pre9" +msgstr "" + +#: src/gui/compatFlags.cpp:191 +msgid "Disable new NES DPCM features" +msgstr "" + +#: src/gui/compatFlags.cpp:193 +msgid "behavior changed in 0.6.1" +msgstr "" + +#: src/gui/compatFlags.cpp:195 +msgid "Legacy technical ALWAYS_SET_VOLUME behavior" +msgstr "" + +#: src/gui/compatFlags.cpp:197 +msgid "" +"behavior changed in 0.6.1\n" +"this flag will be removed if I find out that none of the songs break after " +"disabling it." +msgstr "" + +#: src/gui/compatFlags.cpp:199 +msgid "Old sample offset effect" +msgstr "Старый эффект начального смещения сэмпла" + +#: src/gui/compatFlags.cpp:201 +msgid "behavior changed in 0.6.3" +msgstr "поведение изменено в версии 0.6.3" + +#: src/gui/compatFlags.cpp:205 +msgid ".mod import" +msgstr "импорт .mod" + +#: src/gui/compatFlags.cpp:206 +msgid "Don't slide on the first tick of a row" +msgstr "Не исполнять авто-портаменто в первый шаг движка трекера каждой строки" + +#: src/gui/compatFlags.cpp:208 +msgid "" +"simulates ProTracker's behavior of not applying volume/pitch slides on the " +"first tick of a row." +msgstr "" +"симулирует поведение программы ProTracker, которая не исполняет изменения " +"громкости и частоты на первом шаге движка каждого столбца." + +#: src/gui/compatFlags.cpp:210 +msgid "Reset arpeggio position on row change" +msgstr "Перезапуск позиции арпеджио при продвижении по строкам паттерна" + +#: src/gui/compatFlags.cpp:212 +msgid "" +"simulates ProTracker's behavior of arpeggio being bound to the current tick " +"of a row." +msgstr "" +"симулирует поведение программы ProTracker, которая привязывает исполнение " +"арпеджио к номеру шага движка в каждой строке паттерна." + +#: src/gui/compatFlags.cpp:216 +msgid "Pitch/Playback" +msgstr "Частота/Воспроизведение" + +#: src/gui/compatFlags.cpp:217 +msgid "Pitch linearity:" +msgstr "Линейность частоты (в долях полутонов):" + +#: src/gui/compatFlags.cpp:223 +msgid "like ProTracker/FamiTracker" +msgstr "как ProTracker/FamiTracker" + +#: src/gui/compatFlags.cpp:227 +msgid "Partial (only 04xy/E5xx)" +msgstr "" + +#: src/gui/compatFlags.cpp:231 +msgid "" +"like DefleMask\n" +"\n" +"this pitch linearity mode is deprecated due to:\n" +"- excessive complexity\n" +"- lack of possible optimization\n" +"\n" +"it is recommended to change it now because I will remove this option in the " +"future!" +msgstr "" + +#: src/gui/compatFlags.cpp:235 +msgid "Full" +msgstr "Полная" + +#: src/gui/compatFlags.cpp:239 +msgid "like Impulse Tracker" +msgstr "как Impulse Tracker" + +#: src/gui/compatFlags.cpp:246 +msgid "Pitch slide speed multiplier" +msgstr "Множитель скорости команды авто-портаменто" + +#: src/gui/compatFlags.cpp:252 +msgid "Loop modality:" +msgstr "Работа зацикливания:" + +#: src/gui/compatFlags.cpp:254 +msgid "Reset channels" +msgstr "Перезапуск каналов" + +#: src/gui/compatFlags.cpp:258 +msgid "" +"select to reset channels on loop. may trigger a voltage click on every loop!" +msgstr "" +"выберите для перезапуска каналов каждый раз в начале цикла. может вызывать " +"щелчок в каждом начале цикла из-за смены напряжения!" + +#: src/gui/compatFlags.cpp:260 +msgid "Soft reset channels" +msgstr "Мягкий перезапуск каналов" + +#: src/gui/compatFlags.cpp:264 +msgid "select to turn channels off on loop." +msgstr "выберите для отключения каналов в начале цикла." + +#: src/gui/compatFlags.cpp:266 +msgid "Do nothing" +msgstr "Ничего не делать" + +#: src/gui/compatFlags.cpp:270 +msgid "select to not reset channels on loop." +msgstr "выберите, чтобы отключить перезапуск каналов в начале цикла." + +#: src/gui/compatFlags.cpp:274 +msgid "Cut/delay effect policy:" +msgstr "Поведение эффектов заглушения/задержки ноты:" + +#: src/gui/compatFlags.cpp:280 +msgid "only when time is less than speed (like DefleMask/ProTracker)" +msgstr "" +"только в случае, когда параметр меньше скорости (как DefleMask/ProTracker)" + +#: src/gui/compatFlags.cpp:282 +msgid "Strict (old)" +msgstr "" + +#: src/gui/compatFlags.cpp:286 +msgid "only when time is less than or equal to speed (original buggy behavior)" +msgstr "" + +#: src/gui/compatFlags.cpp:292 +msgid "no checks" +msgstr "без проверок" + +#: src/gui/compatFlags.cpp:296 +msgid "Simultaneous jump (0B+0D) treatment:" +msgstr "Поведение при одновременном прыжке (0B+0D):" + +#: src/gui/compatFlags.cpp:302 +msgid "accept 0B+0D to jump to a specific row of an order" +msgstr "" +"принять 0B+0D как прыжок на конкретную строку паттерна на конкретной позиции " +"матрицы паттернов" + +#: src/gui/compatFlags.cpp:308 +msgid "only accept the first jump effect" +msgstr "" + +#: src/gui/compatFlags.cpp:314 +msgid "only accept 0Dxx" +msgstr "" + +#: src/gui/compatFlags.cpp:320 +msgid "Auto-insert one tick gap between notes" +msgstr "Автоматически вставлять паузу в 1 шаг движка между нотами" + +#: src/gui/compatFlags.cpp:322 +msgid "" +"when enabled, a one-tick note cut will be inserted between non-legato/non-" +"portamento notes.\n" +"this simulates the behavior of some Amiga/SNES music engines.\n" +"\n" +"ineffective on C64." +msgstr "" +"при включении этого флага между нотами без эффекта легато и авто-портаменто " +"будет вставлено заглушение ноты длиной в один шаг движка.\n" +"это симуляция повдения некоторых музыкальных драйверов Amiga/SNES.\n" +"\n" +"ничего не меняет для C64." + +#: src/gui/compatFlags.cpp:327 +msgid "Don't reset slides after note off" +msgstr "Не переинициализировать авто-портаменто после окончания ноты" + +#: src/gui/compatFlags.cpp:329 +msgid "when enabled, note off will not reset the channel's slide effect." +msgstr "" +"при включении этого флага окончание ноты не будет останавливать авто-" +"портаменто на этом канале." + +#: src/gui/compatFlags.cpp:331 +msgid "Don't reset portamento after reaching target" +msgstr "Не переинициализировать авто-портаменто после достижения цели" + +#: src/gui/compatFlags.cpp:333 +msgid "" +"when enabled, the slide effect will not be disabled after it reaches its " +"target." +msgstr "" +"при включении этого флага эффект авто-портаменто не будет " +"переинициализирован при достижении целевой частоты." + +#: src/gui/compatFlags.cpp:335 +msgid "Continuous vibrato" +msgstr "Непрерывное вибрато" + +#: src/gui/compatFlags.cpp:337 +msgid "when enabled, vibrato phase/position will not be reset on a new note." +msgstr "" +"при включении этого флага фаза/положение вибрато не будут сбрасываться на " +"новой ноте." + +#: src/gui/compatFlags.cpp:339 +msgid "Pitch macro is not linear" +msgstr "Нелинейный макрос частоты" + +#: src/gui/compatFlags.cpp:341 +msgid "" +"when enabled, the pitch macro of an instrument is in frequency/period space." +msgstr "" +"при включении этого флага макрос частоты будет работать относительно периода/" +"частоты, а не долей полутона." + +#: src/gui/compatFlags.cpp:343 +msgid "Reset arpeggio effect position on new note" +msgstr "Сбрасывать положение эффекта арпеджио на новой ноте" + +#: src/gui/compatFlags.cpp:345 +msgid "when enabled, arpeggio effect (00xy) position is reset on a new note." +msgstr "" +"при включении этого флага положение эффекта арпеджио (00xy) сбрасывается на " +"новой ноте." + +#: src/gui/compatFlags.cpp:347 +msgid "Volume scaling rounds up" +msgstr "Масштабирование громкости округляется вверх" + +#: src/gui/compatFlags.cpp:349 +msgid "" +"when enabled, volume macros round up when applied\n" +"this prevents volume scaling from causing vol=0, which is silent on some " +"chips\n" +"\n" +"ineffective on logarithmic channels" +msgstr "" +"при включении этого флага значения макросов громкости округляются вверх\n" +"это предотвращает возникновение ситуации vol=0 при масштабировании " +"громкости, что приводит к заглушению на некоторых чипах\n" +"\n" +"не эффективно на чипах с логарифмическим контролем громкости" + +#: src/gui/guiConst.cpp:127 +msgid "Generic Sample" +msgstr "Типичный сэмпл" + +#: src/gui/guiConst.cpp:155 +msgid "OPL (drums)" +msgstr "OPL (ударные)" + +#: src/gui/guiConst.cpp:191 +msgid "Forward" +msgstr "Вперёд" + +#: src/gui/guiConst.cpp:192 +msgid "Backward" +msgstr "Назад" + +#: src/gui/guiConst.cpp:193 +msgid "Ping pong" +msgstr "Туда-обратно" + +#: src/gui/guiConst.cpp:218 +msgid "linear" +msgstr "линейная" + +#: src/gui/guiConst.cpp:219 +msgid "cubic spline" +msgstr "кубический сплайн" + +#: src/gui/guiConst.cpp:220 +msgid "blep synthesis" +msgstr "BLEP-синтез" + +#: src/gui/guiConst.cpp:221 +msgid "sinc" +msgstr "sinc" + +#: src/gui/guiConst.cpp:222 +msgid "best possible" +msgstr "наилучший" + +#: src/gui/guiConst.cpp:226 src/gui/sampleEdit.cpp:137 +#: src/gui/sampleEdit.cpp:143 +msgid "Invalid" +msgstr "Недейств." + +#: src/gui/guiConst.cpp:231 +msgid "Time" +msgstr "Время" + +#: src/gui/guiConst.cpp:233 +msgid "System (Primary)" +msgstr "Основные эффекты чипа" + +#: src/gui/guiConst.cpp:234 +msgid "System (Secondary)" +msgstr "Вспомогательные эффекты чипа" + +#: src/gui/guiConst.cpp:530 +msgid "---Global" +msgstr "---Global" + +#: src/gui/guiConst.cpp:532 +msgid "Open file" +msgstr "Открыть файл" + +#: src/gui/guiConst.cpp:533 +msgid "Restore backup" +msgstr "Загрузить резервную копию" + +#: src/gui/guiConst.cpp:534 +msgid "Save file" +msgstr "Сохранить файл" + +#: src/gui/guiConst.cpp:535 +msgid "Save as" +msgstr "Сохранить как" + +#: src/gui/guiConst.cpp:537 src/gui/sampleEdit.cpp:982 +msgid "Undo" +msgstr "Отменить" + +#: src/gui/guiConst.cpp:539 src/gui/guiConst.cpp:541 src/gui/sampleEdit.cpp:989 +msgid "Redo" +msgstr "Вернуть" + +#: src/gui/guiConst.cpp:543 +msgid "Exit" +msgstr "Выход" + +#: src/gui/guiConst.cpp:544 +msgid "Play/Stop (toggle)" +msgstr "Старт/стоп (переключение)" + +#: src/gui/guiConst.cpp:547 +msgid "Play (from beginning)" +msgstr "Воспроизведение (с начала)" + +#: src/gui/guiConst.cpp:548 +msgid "Play (repeat pattern)" +msgstr "Воспроизведение (зациклить текущий паттерн)" + +#: src/gui/guiConst.cpp:549 +msgid "Play from cursor" +msgstr "Воспроизведение с курсора" + +#: src/gui/guiConst.cpp:550 +msgid "Step row" +msgstr "Сделать один шаг по паттерну" + +#: src/gui/guiConst.cpp:551 +msgid "Octave up" +msgstr "На октаву вверх" + +#: src/gui/guiConst.cpp:552 +msgid "Octave down" +msgstr "На октаву вниз" + +#: src/gui/guiConst.cpp:553 +msgid "Previous instrument" +msgstr "Предыдущий инструмент" + +#: src/gui/guiConst.cpp:554 +msgid "Next instrument" +msgstr "Следующий инструмент" + +#: src/gui/guiConst.cpp:555 +msgid "Increase edit step" +msgstr "Увеличить шаг редактирования" + +#: src/gui/guiConst.cpp:556 +msgid "Decrease edit step" +msgstr "Уменьшить шаг редактирования" + +#: src/gui/guiConst.cpp:557 +msgid "Toggle edit mode" +msgstr "Переключить режим редактирования" + +#: src/gui/guiConst.cpp:559 +msgid "Toggle repeat pattern" +msgstr "Переключить режим зацикливания паттерна" + +#: src/gui/guiConst.cpp:562 +msgid "Toggle full-screen" +msgstr "Перключить полноэкранный режим" + +#: src/gui/guiConst.cpp:563 +msgid "Request voice from TX81Z" +msgstr "Запросить канал у TX81Z" + +#: src/gui/guiConst.cpp:565 +msgid "Clear song data" +msgstr "Удалить данные трека" + +#: src/gui/guiConst.cpp:567 src/gui/gui.cpp:5573 src/gui/gui.cpp:5625 +msgid "Command Palette" +msgstr "Палитра команд" + +#: src/gui/guiConst.cpp:569 +msgid "Recent files (Palette)" +msgstr "Недавние файлы (палитра)" + +#: src/gui/guiConst.cpp:570 +msgid "Instruments (Palette)" +msgstr "Инструменты (палитра)" + +#: src/gui/guiConst.cpp:571 +msgid "Samples (Palette)" +msgstr "Сэмплы (палитра)" + +#: src/gui/guiConst.cpp:572 +msgid "Change instrument (Palette)" +msgstr "Сменить инструмент (палитра)" + +#: src/gui/guiConst.cpp:573 +msgid "Add chip (Palette)" +msgstr "Добавить чип (палитра)" + +#: src/gui/guiConst.cpp:578 +msgid "Instrument List" +msgstr "Список инструментов" + +#: src/gui/guiConst.cpp:579 src/gui/insEdit.cpp:5203 +msgid "Instrument Editor" +msgstr "Редактор инструментов" + +#: src/gui/guiConst.cpp:580 +msgid "Song Information" +msgstr "Информация о треке" + +#: src/gui/guiConst.cpp:583 +msgid "Wavetable List" +msgstr "Список волновых таблиц" + +#: src/gui/guiConst.cpp:584 src/gui/waveEdit.cpp:409 +msgid "Wavetable Editor" +msgstr "Редактор волновых таблиц" + +#: src/gui/guiConst.cpp:585 +msgid "Sample List" +msgstr "Список сэмплов" + +#: src/gui/guiConst.cpp:594 +msgid "Debug Menu" +msgstr "Отладка" + +#: src/gui/guiConst.cpp:595 +msgid "Oscilloscope (master)" +msgstr "Осциллограф" + +#: src/gui/guiConst.cpp:603 src/gui/sysManager.cpp:41 +msgid "Chip Manager" +msgstr "Менеджер чипов" + +#: src/gui/guiConst.cpp:614 src/gui/csPlayer.cpp:112 +msgid "Command Stream Player" +msgstr "Проигрыватель потока команд" + +#: src/gui/guiConst.cpp:615 +msgid "User Presets" +msgstr "Пользовательские пресеты" + +#: src/gui/guiConst.cpp:617 +msgid "Collapse/expand current window" +msgstr "Свернуть/развернуть текущее окно" + +#: src/gui/guiConst.cpp:618 +msgid "Close current window" +msgstr "Закрыть текущее окно" + +#: src/gui/guiConst.cpp:621 +msgid "---Pattern" +msgstr "---Pattern" + +#: src/gui/guiConst.cpp:622 +msgid "Transpose (+1)" +msgstr "Транспонировать (+1)" + +#: src/gui/guiConst.cpp:623 +msgid "Transpose (-1)" +msgstr "Транспонировать (-1)" + +#: src/gui/guiConst.cpp:624 +msgid "Transpose (+1 octave)" +msgstr "Транспонировать (+1 октава)" + +#: src/gui/guiConst.cpp:625 +msgid "Transpose (-1 octave)" +msgstr "Транспонировать (-1 октава)" + +#: src/gui/guiConst.cpp:626 +msgid "Increase values (+1)" +msgstr "Увеличить значения (+1)" + +#: src/gui/guiConst.cpp:627 +msgid "Increase values (-1)" +msgstr "Уменьшить значения (-1)" + +#: src/gui/guiConst.cpp:628 +msgid "Increase values (+16)" +msgstr "Увеличить значения (+16)" + +#: src/gui/guiConst.cpp:629 +msgid "Increase values (-16)" +msgstr "Уменьшить значения (-16)" + +#: src/gui/guiConst.cpp:630 +msgid "Select all" +msgstr "Выбрать всё" + +#: src/gui/guiConst.cpp:631 +msgid "Cut" +msgstr "Вырезать" + +#: src/gui/guiConst.cpp:632 +msgid "Copy" +msgstr "Копировать" + +#: src/gui/guiConst.cpp:633 +msgid "Paste" +msgstr "Вставить" + +#: src/gui/guiConst.cpp:634 +msgid "Paste Mix (foreground)" +msgstr "Вставить поверх" + +#: src/gui/guiConst.cpp:635 +msgid "Paste Mix (background)" +msgstr "Вставить поверх (с заменой существующего)" + +#: src/gui/guiConst.cpp:636 +msgid "Paste Flood" +msgstr "Вставить с цикл. повт. буфера (до конца патт.)" + +#: src/gui/guiConst.cpp:637 +msgid "Paste Overflow" +msgstr "Вставить (с возможным переходом в след. паттерн)" + +#: src/gui/guiConst.cpp:638 +msgid "Move cursor up" +msgstr "Курсор вверх" + +#: src/gui/guiConst.cpp:639 +msgid "Move cursor down" +msgstr "Курсор вниз" + +#: src/gui/guiConst.cpp:640 +msgid "Move cursor left" +msgstr "Курсор влево" + +#: src/gui/guiConst.cpp:641 +msgid "Move cursor right" +msgstr "Курсор вправо" + +#: src/gui/guiConst.cpp:642 +msgid "Move cursor up by one (override Edit Step)" +msgstr "Курсор вверх на один шаг (игнорировать шаг редактирования)" + +#: src/gui/guiConst.cpp:643 +msgid "Move cursor down by one (override Edit Step)" +msgstr "Курсор вниз на один шаг (игнорировать шаг редактирования)" + +#: src/gui/guiConst.cpp:644 +msgid "Move cursor to previous channel" +msgstr "Сдвинуть курсор на предыдущий канал" + +#: src/gui/guiConst.cpp:645 +msgid "Move cursor to next channel" +msgstr "Сдвинуть курсор на следующий канал" + +#: src/gui/guiConst.cpp:646 +msgid "Move cursor to next channel (overflow)" +msgstr "Сдвинуть курсор на предыдущий канал (с переполнением)" + +#: src/gui/guiConst.cpp:647 +msgid "Move cursor to previous channel (overflow)" +msgstr "Сдвинуть курсор на следующий канал (с переполнением)" + +#: src/gui/guiConst.cpp:648 +msgid "Move cursor to beginning of pattern" +msgstr "Сдвинуть курсор в начало паттерна" + +#: src/gui/guiConst.cpp:649 +msgid "Move cursor to end of pattern" +msgstr "Сдвинуть курсор в конец паттерна" + +#: src/gui/guiConst.cpp:650 +msgid "Move cursor up (coarse)" +msgstr "Курсор вверх (грубо)" + +#: src/gui/guiConst.cpp:651 +msgid "Move cursor down (coarse)" +msgstr "Курсор вниз (грубо)" + +#: src/gui/guiConst.cpp:652 +msgid "Expand selection upwards" +msgstr "Расширить выделенную область вверх" + +#: src/gui/guiConst.cpp:653 +msgid "Expand selection downwards" +msgstr "Расширить выделенную область вниз" + +#: src/gui/guiConst.cpp:654 +msgid "Expand selection to the left" +msgstr "Расширить выделенную область влево" + +#: src/gui/guiConst.cpp:655 +msgid "Expand selection to the right" +msgstr "Расширить выделенную область вправо" + +#: src/gui/guiConst.cpp:656 +msgid "Expand selection upwards by one (override Edit Step)" +msgstr "Расширить выделенную область вверх (игнорировать шаг редактирования)" + +#: src/gui/guiConst.cpp:657 +msgid "Expand selection downwards by one (override Edit Step)" +msgstr "Расширить выделенную область вниз (игнорировать шаг редактирования)" + +#: src/gui/guiConst.cpp:658 +msgid "Expand selection to beginning of pattern" +msgstr "Расширить выделенную область до начала паттерна" + +#: src/gui/guiConst.cpp:659 +msgid "Expand selection to end of pattern" +msgstr "Расширить выделенную область до конца паттерна" + +#: src/gui/guiConst.cpp:660 +msgid "Expand selection upwards (coarse)" +msgstr "Расширить выделенную область вверх (грубо)" + +#: src/gui/guiConst.cpp:661 +msgid "Expand selection downwards (coarse)" +msgstr "Расширить выделенную область вниз (грубо)" + +#: src/gui/guiConst.cpp:662 +msgid "Move selection up" +msgstr "Передвинуть выделенную область вверх" + +#: src/gui/guiConst.cpp:663 +msgid "Move selection down" +msgstr "Передвинуть выделенную область вниз" + +#: src/gui/guiConst.cpp:664 +msgid "Move selection to previous channel" +msgstr "Передвинуть выделенную область на предыдущий канал" + +#: src/gui/guiConst.cpp:665 +msgid "Move selection to next channel" +msgstr "Передвинуть выделенную область на следующий канал" + +#: src/gui/guiConst.cpp:667 +msgid "Pull delete" +msgstr "Удалить с подтягиванием следующих строк" + +#: src/gui/guiConst.cpp:668 +msgid "Insert" +msgstr "Вставить с сдвигом строк вниз" + +#: src/gui/guiConst.cpp:669 +msgid "Mute channel at cursor" +msgstr "Заглушить выделенный канал" + +#: src/gui/guiConst.cpp:670 +msgid "Solo channel at cursor" +msgstr "Соло выделенного канала" + +#: src/gui/guiConst.cpp:671 +msgid "Unmute all channels" +msgstr "Включить все каналы" + +#: src/gui/guiConst.cpp:672 +msgid "Go to next order" +msgstr "Перейти на следующую строку матрицы паттернов" + +#: src/gui/guiConst.cpp:673 +msgid "Go to previous order" +msgstr "Перейти на предыдущую строку матрицы паттернов" + +#: src/gui/guiConst.cpp:674 +msgid "Collapse channel at cursor" +msgstr "Сжать текущий канал" + +#: src/gui/guiConst.cpp:675 +msgid "Increase effect columns" +msgstr "Добавить столбец эффектов" + +#: src/gui/guiConst.cpp:676 +msgid "Decrease effect columns" +msgstr "Убрать столбец эффектов" + +#: src/gui/guiConst.cpp:677 +msgid "Interpolate" +msgstr "Интерполировать" + +#: src/gui/guiConst.cpp:678 src/gui/insEdit.cpp:530 +msgid "Fade" +msgstr "Затухание/градиент" + +#: src/gui/guiConst.cpp:679 +msgid "Invert values" +msgstr "Инвертировать параметры" + +#: src/gui/guiConst.cpp:680 +msgid "Flip selection" +msgstr "Перевернуть выделенную область" + +#: src/gui/guiConst.cpp:681 +msgid "Collapse rows" +msgstr "Сжать строки" + +#: src/gui/guiConst.cpp:682 +msgid "Expand rows" +msgstr "Расширить строки" + +#: src/gui/guiConst.cpp:683 +msgid "Collapse pattern" +msgstr "Сжать паттерн" + +#: src/gui/guiConst.cpp:684 +msgid "Expand pattern" +msgstr "Расширить паттерн" + +#: src/gui/guiConst.cpp:685 +msgid "Collapse song" +msgstr "Сжать трек" + +#: src/gui/guiConst.cpp:686 +msgid "Expand song" +msgstr "Расширить трек" + +#: src/gui/guiConst.cpp:687 +msgid "Set note input latch" +msgstr "Задать буфер ввода для нот" + +#: src/gui/guiConst.cpp:688 +msgid "Change mobile scroll mode" +msgstr "Переключить режим мобильной прокрутки" + +#: src/gui/guiConst.cpp:689 +msgid "Clear note input latch" +msgstr "Очистить буфер ввода для нот" + +#: src/gui/guiConst.cpp:692 +msgid "---Instrument list" +msgstr "---Instrument list" + +#: src/gui/guiConst.cpp:693 +msgid "Add instrument" +msgstr "Добавить инструмент" + +#: src/gui/guiConst.cpp:694 +msgid "Duplicate instrument" +msgstr "Клонировать инструмент" + +#: src/gui/guiConst.cpp:695 +msgid "Open instrument" +msgstr "Открыть инструмент" + +#: src/gui/guiConst.cpp:696 +msgid "Open instrument (replace current)" +msgstr "Открыть инструмент (с заменой выделенного)" + +#: src/gui/guiConst.cpp:697 +msgid "Save instrument" +msgstr "Сохранить инструмент" + +#: src/gui/guiConst.cpp:698 +msgid "Save instrument (.dmp)" +msgstr "" + +#: src/gui/guiConst.cpp:699 +msgid "Move instrument up in list" +msgstr "Сдвинуть инструмент вверх в списке" + +#: src/gui/guiConst.cpp:700 +msgid "Move instrument down in list" +msgstr "Сдвинуть инструмент вниз в списке" + +#: src/gui/guiConst.cpp:701 +msgid "Delete instrument" +msgstr "Удалить инструмент" + +#: src/gui/guiConst.cpp:702 +msgid "Edit instrument" +msgstr "Редактировать инструмент" + +#: src/gui/guiConst.cpp:703 +msgid "Instrument cursor up" +msgstr "Курсор в списке инструментов вверх" + +#: src/gui/guiConst.cpp:704 +msgid "Instrument cursor down" +msgstr "Курсор в списке инструментов вниз" + +#: src/gui/guiConst.cpp:705 +msgid "Instruments: toggle folders/standard view" +msgstr "" +"Инструменты: переключиться между видом с разбиением по папкам и обычным видом" + +#: src/gui/guiConst.cpp:708 +msgid "---Wavetable list" +msgstr "---Wavetable list" + +#: src/gui/guiConst.cpp:709 +msgid "Add wavetable" +msgstr "Добавить волновую таблицу" + +#: src/gui/guiConst.cpp:710 +msgid "Duplicate wavetable" +msgstr "Клонировать волновую таблицу" + +#: src/gui/guiConst.cpp:711 +msgid "Open wavetable" +msgstr "Открыть волновую таблицу" + +#: src/gui/guiConst.cpp:712 +msgid "Open wavetable (replace current)" +msgstr "Открыть волновую таблицу (с заменой выделенной)" + +#: src/gui/guiConst.cpp:713 +msgid "Save wavetable" +msgstr "Сохранить волновую таблицу" + +#: src/gui/guiConst.cpp:714 +msgid "Save wavetable (.dmw)" +msgstr "Сохранить волновую таблицу (.dmw)" + +#: src/gui/guiConst.cpp:715 +msgid "Save wavetable (raw)" +msgstr "Сохранить волновую таблицу (сырые данные)" + +#: src/gui/guiConst.cpp:716 +msgid "Move wavetable up in list" +msgstr "Сдвинуть волновую таблицу вверх в списке" + +#: src/gui/guiConst.cpp:717 +msgid "Move wavetable down in list" +msgstr "Сдвинуть волновую таблицу вниз в списке" + +#: src/gui/guiConst.cpp:718 +msgid "Delete wavetable" +msgstr "Удалить волновую таблицу" + +#: src/gui/guiConst.cpp:719 +msgid "Edit wavetable" +msgstr "Редактировать волновую таблицу" + +#: src/gui/guiConst.cpp:720 +msgid "Wavetable cursor up" +msgstr "Курсор в списке волновых таблиц вверх" + +#: src/gui/guiConst.cpp:721 +msgid "Wavetable cursor down" +msgstr "Курсор в списке волновых таблиц вниз" + +#: src/gui/guiConst.cpp:722 +msgid "Wavetables: toggle folders/standard view" +msgstr "" +"Волновые таблицы: переключиться между видом с разбиением по папкам и обычным " +"видом" + +#: src/gui/guiConst.cpp:725 +msgid "---Sample list" +msgstr "---Sample list" + +#: src/gui/guiConst.cpp:726 +msgid "Add sample" +msgstr "Добавить сэмпл" + +#: src/gui/guiConst.cpp:727 +msgid "Duplicate sample" +msgstr "Клонировать сэмпл" + +#: src/gui/guiConst.cpp:728 +msgid "Open sample" +msgstr "Открыть сэмпл" + +#: src/gui/guiConst.cpp:729 +msgid "Open sample (replace current)" +msgstr "Открыть сэмпл (с заменой выделенного)" + +#: src/gui/guiConst.cpp:730 +msgid "Import raw sample data" +msgstr "Импорт сырых данных сэмпла" + +#: src/gui/guiConst.cpp:731 +msgid "Import raw sample data (replace current)" +msgstr "Импорт сырых данных сэмпла (с заменой выделенного)" + +#: src/gui/guiConst.cpp:732 +msgid "Save sample" +msgstr "Сохранить сэмпл" + +#: src/gui/guiConst.cpp:733 +msgid "Save sample (raw)" +msgstr "Сохранить сэмпл (сырые данные)" + +#: src/gui/guiConst.cpp:734 +msgid "Move sample up in list" +msgstr "Сдвинуть сэмпл вверх в списке" + +#: src/gui/guiConst.cpp:735 +msgid "Move sample down in list" +msgstr "Сдвинуть сэмпл вниз в списке" + +#: src/gui/guiConst.cpp:736 +msgid "Delete sample" +msgstr "Удалить сэмпл" + +#: src/gui/guiConst.cpp:737 +msgid "Edit sample" +msgstr "Редатировать сэмпл" + +#: src/gui/guiConst.cpp:738 +msgid "Sample cursor up" +msgstr "Курсор в списке сэмплов вверх" + +#: src/gui/guiConst.cpp:739 +msgid "Sample cursor down" +msgstr "Курсор в списке сэмплов вниз" + +#: src/gui/guiConst.cpp:741 src/gui/sampleEdit.cpp:1339 +msgid "Stop sample preview" +msgstr "Остановить превью сэмпла" + +#: src/gui/guiConst.cpp:742 +msgid "Samples: Toggle folders/standard view" +msgstr "" +"Сэмплы: переключиться между видом с разбиением по папкам и обычным видом" + +#: src/gui/guiConst.cpp:743 +msgid "Samples: Make me a drum kit" +msgstr "Сэмплы: сделать набор ударных" + +#: src/gui/guiConst.cpp:746 +msgid "---Sample editor" +msgstr "---Sample editor" + +#: src/gui/guiConst.cpp:747 +msgid "Sample editor mode: Select" +msgstr "Режим редактирования сэмпла: выделение" + +#: src/gui/guiConst.cpp:748 +msgid "Sample editor mode: Draw" +msgstr "Режим редактирования сэмпла: рисование" + +#: src/gui/guiConst.cpp:749 +msgid "Sample editor: Cut" +msgstr "Редактор сэмплов: Вырезать" + +#: src/gui/guiConst.cpp:750 +msgid "Sample editor: Copy" +msgstr "Редактор сэмплов: Копировать" + +#: src/gui/guiConst.cpp:751 +msgid "Sample editor: Paste" +msgstr "Редактор сэмплов: Вставить" + +#: src/gui/guiConst.cpp:752 +msgid "Sample editor: Paste replace" +msgstr "Редактор сэмплов: Вставить с заменой" + +#: src/gui/guiConst.cpp:753 +msgid "Sample editor: Paste mix" +msgstr "Редактор сэмплов: Вставить со смешением" + +#: src/gui/guiConst.cpp:754 +msgid "Sample editor: Select all" +msgstr "Редактор сэмплов: Выбрать всё" + +#: src/gui/guiConst.cpp:755 +msgid "Sample editor: Resize" +msgstr "Редактор сэмплов: Изменить размер" + +#: src/gui/guiConst.cpp:756 +msgid "Sample editor: Resample" +msgstr "Редактор сэмплов: Изменить частоту дискретизации" + +#: src/gui/guiConst.cpp:757 +msgid "Sample editor: Amplify" +msgstr "Редактор сэмплов: Усилить" + +#: src/gui/guiConst.cpp:758 +msgid "Sample editor: Normalize" +msgstr "Редактор сэмплов: Нормализовать" + +#: src/gui/guiConst.cpp:759 +msgid "Sample editor: Fade in" +msgstr "Редактор сэмплов: Плавное нарастание" + +#: src/gui/guiConst.cpp:760 +msgid "Sample editor: Fade out" +msgstr "Редактор сэмплов: Плавное затухание" + +#: src/gui/guiConst.cpp:761 +msgid "Sample editor: Apply silence" +msgstr "Редактор сэмплов: Применить тишину" + +#: src/gui/guiConst.cpp:762 +msgid "Sample editor: Insert silence" +msgstr "Редактор сэмплов: Вставить тишину" + +#: src/gui/guiConst.cpp:763 +msgid "Sample editor: Delete" +msgstr "Редактор сэмплов: Удалить" + +#: src/gui/guiConst.cpp:764 +msgid "Sample editor: Trim" +msgstr "Редактор сэмплов: Обрезать" + +#: src/gui/guiConst.cpp:765 +msgid "Sample editor: Reverse" +msgstr "Редактор сэмплов: Реверс" + +#: src/gui/guiConst.cpp:766 +msgid "Sample editor: Invert" +msgstr "Редактор сэмплов: Инверсия" + +#: src/gui/guiConst.cpp:767 +msgid "Sample editor: Signed/unsigned exchange" +msgstr "Редактор сэмплов: Знаковый <-> беззнаковый" + +#: src/gui/guiConst.cpp:768 +msgid "Sample editor: Apply filter" +msgstr "Редактор сэмплов: Применить фильтр" + +#: src/gui/guiConst.cpp:769 +msgid "Sample editor: Crossfade loop points" +msgstr "" +"Редактор сэмплов: Сделать плавный переход между началом и концом зацикленной " +"части" + +#: src/gui/guiConst.cpp:770 +msgid "Sample editor: Preview sample" +msgstr "Редактор сэмплов: Превью" + +#: src/gui/guiConst.cpp:771 +msgid "Sample editor: Stop sample preview" +msgstr "Редактор сэмплов: Остановить превью" + +#: src/gui/guiConst.cpp:772 +msgid "Sample editor: Zoom in" +msgstr "Редактор сэмплов: Увеличить масштаб" + +#: src/gui/guiConst.cpp:773 +msgid "Sample editor: Zoom out" +msgstr "Редактор сэмплов: Уменьшить масштаб" + +#: src/gui/guiConst.cpp:774 +msgid "Sample editor: Toggle auto-zoom" +msgstr "Редактор сэмплов: Переключить авто-увеличение" + +#: src/gui/guiConst.cpp:775 +msgid "Sample editor: Create instrument from sample" +msgstr "Редактор сэмплов: Создать инструмент из сэмпла" + +#: src/gui/guiConst.cpp:776 +msgid "Sample editor: Set loop to selection" +msgstr "Редактор сэмплов: Зациклить выделенную часть" + +#: src/gui/guiConst.cpp:777 +msgid "Sample editor: Create wavetable from selection" +msgstr "Редактор сэмплов: Создать волновую таблицу из выделенной части" + +#: src/gui/guiConst.cpp:780 +msgid "---Orders" +msgstr "---Orders" + +#: src/gui/guiConst.cpp:781 +msgid "Previous order" +msgstr "Предыдущая строка матрицы паттернов" + +#: src/gui/guiConst.cpp:782 +msgid "Next order" +msgstr "Следующая строка матрицы паттернов" + +#: src/gui/guiConst.cpp:783 +msgid "Order cursor left" +msgstr "Курсор матрицы паттернов влево" + +#: src/gui/guiConst.cpp:784 +msgid "Order cursor right" +msgstr "Курсор матрицы паттернов вправо" + +#: src/gui/guiConst.cpp:785 +msgid "Increase order value" +msgstr "Увеличить значение строки матрицы паттернов" + +#: src/gui/guiConst.cpp:786 +msgid "Decrease order value" +msgstr "Уменьшить значение строки матрицы паттернов" + +#: src/gui/guiConst.cpp:787 +msgid "Switch order edit mode" +msgstr "Переключить режим редактирования матрицы паттернов" + +#: src/gui/guiConst.cpp:788 +msgid "Order: toggle alter entire row" +msgstr "Матрица паттернов: Переключить режим изменения всей строки" + +#: src/gui/guiConst.cpp:789 +msgid "Add order" +msgstr "Добавить строку матрицы паттернов" + +#: src/gui/guiConst.cpp:790 +msgid "Duplicate order" +msgstr "Клонировать строку матрицы паттернов" + +#: src/gui/guiConst.cpp:791 +msgid "Deep clone order" +msgstr "Клонировать строку матрицы паттернов с выделением новых индексов" + +#: src/gui/guiConst.cpp:792 +msgid "Copy current order to end of song" +msgstr "Клонировать текущую строку матрицы паттернов в конец трека" + +#: src/gui/guiConst.cpp:793 +msgid "Deep clone current order to end of song" +msgstr "" +"Клонировать текущую строку матрицы паттернов в конец трека с выделением " +"новых индексов" + +#: src/gui/guiConst.cpp:797 +msgid "Replay order" +msgstr "Воспроизвести строку матрицы паттернов" + +#: src/gui/guiConst.cpp:1392 +msgid "All chips" +msgstr "Все чипы" + +#: src/gui/guiConst.cpp:1396 src/gui/insEdit.cpp:6954 src/gui/insEdit.cpp:7204 +#: src/gui/insEdit.cpp:7458 src/gui/insEdit.cpp:7480 +msgid "Special" +msgstr "Особые" + +#: src/gui/piano.cpp:103 +msgid "Options" +msgstr "Настройки" + +#: src/gui/piano.cpp:106 +msgid "Key layout:" +msgstr "Компоновка клавиш:" + +#: src/gui/piano.cpp:111 +msgid "Standard" +msgstr "Стандартная" + +#: src/gui/piano.cpp:114 +msgid "Continuous" +msgstr "Непрерывная" + +#: src/gui/piano.cpp:118 +msgid "Value input pad:" +msgstr "Панель ввода значений:" + +#: src/gui/piano.cpp:120 +msgid "Disabled" +msgstr "Выкл." + +#: src/gui/piano.cpp:123 +msgid "Replace piano" +msgstr "Заменяет пианино" + +#: src/gui/piano.cpp:126 +msgid "Split (automatic)" +msgstr "Разделённая (автоматически)" + +#: src/gui/piano.cpp:129 +msgid "Split (always visible)" +msgstr "Разделённая (всегда отображать)" + +#: src/gui/piano.cpp:133 +msgid "Share play/edit offset/range" +msgstr "Соблюдать настройки из окна настроек воспроизв./ред." + +#: src/gui/piano.cpp:134 +msgid "Read-only (can't input notes)" +msgstr "Только чтение (нельзя вводить ноты)" + +#: src/gui/waveEdit.cpp:30 src/gui/waveEdit.cpp:192 src/gui/insEdit.cpp:177 +#: src/gui/insEdit.cpp:188 src/gui/insEdit.cpp:199 +msgid "Sine" +msgstr "Синус" + +#: src/gui/waveEdit.cpp:32 src/gui/waveEdit.cpp:202 src/gui/insEdit.cpp:325 +#: src/gui/insEdit.cpp:654 +msgid "Saw" +msgstr "Пила" + +#: src/gui/waveEdit.cpp:39 +msgid "Cosine" +msgstr "Косинусоидная" + +#: src/gui/waveEdit.cpp:193 +msgid "Rect. Sine" +msgstr "Выпрямл. синус" + +#: src/gui/waveEdit.cpp:194 +msgid "Abs. Sine" +msgstr "Модуль синуса" + +#: src/gui/waveEdit.cpp:195 +msgid "Quart. Sine" +msgstr "Четвертинки синуса" + +#: src/gui/waveEdit.cpp:196 +msgid "Squish. Sine" +msgstr "Сжатый синус" + +#: src/gui/waveEdit.cpp:197 +msgid "Abs. Squish. Sine" +msgstr "Модуль сж. синуса" + +#: src/gui/waveEdit.cpp:200 +msgid "rectSquare" +msgstr "Выпрямл. меандр" + +#: src/gui/waveEdit.cpp:203 +msgid "Rect. Saw" +msgstr "Выпрямл. пила" + +#: src/gui/waveEdit.cpp:204 +msgid "Abs. Saw" +msgstr "Модуль пилы" + +#: src/gui/waveEdit.cpp:206 +msgid "Cubed Saw" +msgstr "Пила в кубе" + +#: src/gui/waveEdit.cpp:207 +msgid "Rect. Cubed Saw" +msgstr "Выпрямл. пила в кубе" + +#: src/gui/waveEdit.cpp:208 +msgid "Abs. Cubed Saw" +msgstr "Модуль пилы в кубе" + +#: src/gui/waveEdit.cpp:210 +msgid "Cubed Sine" +msgstr "Куб синуса" + +#: src/gui/waveEdit.cpp:211 +msgid "Rect. Cubed Sine" +msgstr "Выпрямл. куб синуса" + +#: src/gui/waveEdit.cpp:212 +msgid "Abs. Cubed Sine" +msgstr "Модуль куба синуса" + +#: src/gui/waveEdit.cpp:213 +msgid "Quart. Cubed Sine" +msgstr "Четвертинки куба синуса" + +#: src/gui/waveEdit.cpp:214 +msgid "Squish. Cubed Sine" +msgstr "Сжатый куб синуса" + +#: src/gui/waveEdit.cpp:215 +msgid "Squish. Abs. Cub. Sine" +msgstr "Модуль сж. куба синуса" + +#: src/gui/waveEdit.cpp:218 +msgid "Rect. Triangle" +msgstr "Выпрямл. треуг. волна" + +#: src/gui/waveEdit.cpp:219 +msgid "Abs. Triangle" +msgstr "Модуль треуг. волны" + +#: src/gui/waveEdit.cpp:220 +msgid "Quart. Triangle" +msgstr "Четвертинки треуг. волны" + +#: src/gui/waveEdit.cpp:221 +msgid "Squish. Triangle" +msgstr "Сжатая треуг. волна" + +#: src/gui/waveEdit.cpp:222 +msgid "Abs. Squish. Triangle" +msgstr "Модуль сж. треуг. волны" + +#: src/gui/waveEdit.cpp:224 +msgid "Cubed Triangle" +msgstr "Куб треуг. волны" + +#: src/gui/waveEdit.cpp:225 +msgid "Rect. Cubed Triangle" +msgstr "Выпрямл. куб треуг. волны" + +#: src/gui/waveEdit.cpp:226 +msgid "Abs. Cubed Triangle" +msgstr "Модуль куба треуг. волны" + +#: src/gui/waveEdit.cpp:227 +msgid "Quart. Cubed Triangle" +msgstr "Четвертинки куба треуг. волны" + +#: src/gui/waveEdit.cpp:228 +msgid "Squish. Cubed Triangle" +msgstr "Сжатый куб треуг. волны" + +#: src/gui/waveEdit.cpp:229 +msgid "Squish. Abs. Cub. Triangle" +msgstr "Сжатый модуль куба треуг. волны" + +#: src/gui/waveEdit.cpp:412 src/gui/waveEdit.cpp:413 +msgid "no wavetable selected" +msgstr "не выбрано ни одной волновой таблицы" + +#: src/gui/waveEdit.cpp:424 src/gui/sampleEdit.cpp:111 src/gui/insEdit.cpp:5223 +msgid "select one..." +msgstr "выберите один..." + +#: src/gui/waveEdit.cpp:432 src/gui/waveEdit.cpp:439 src/gui/sampleEdit.cpp:119 +#: src/gui/sampleEdit.cpp:126 src/gui/insEdit.cpp:5236 src/gui/insEdit.cpp:5243 +msgid "or" +msgstr "или" + +#: src/gui/waveEdit.cpp:441 src/gui/sampleEdit.cpp:128 src/gui/insEdit.cpp:5245 +msgid "Create New" +msgstr "Создайте новый" + +#: src/gui/waveEdit.cpp:487 +msgid "Steps" +msgstr "Уровни" + +#: src/gui/waveEdit.cpp:491 +msgid "Lines" +msgstr "Линии" + +#: src/gui/waveEdit.cpp:496 src/gui/insEdit.cpp:2687 +msgid "Width" +msgstr "Длина" + +#: src/gui/waveEdit.cpp:498 +msgid "" +"use a width of:\n" +"- any on Amiga/N163\n" +"- 32 on Game Boy, PC Engine, SCC, Konami Bubble System, Namco WSG, Virtual " +"Boy and WonderSwan\n" +"- 64 on FDS\n" +"- 128 on X1-010\n" +"any other widths will be scaled during playback." +msgstr "" + +#: src/gui/waveEdit.cpp:510 +msgid "Height" +msgstr "Высота" + +#: src/gui/waveEdit.cpp:512 +msgid "" +"use a height of:\n" +"- 16 for Game Boy, WonderSwan, Namco WSG, Konami Bubble System, X1-010 " +"Envelope shape and N163\n" +"- 32 for PC Engine\n" +"- 64 for FDS and Virtual Boy\n" +"- 256 for X1-010 and SCC\n" +"any other heights will be scaled during playback." +msgstr "" + +#: src/gui/waveEdit.cpp:578 +msgid "Shapes" +msgstr "Волны" + +#: src/gui/waveEdit.cpp:597 src/gui/insEdit.cpp:5879 src/gui/insEdit.cpp:6922 +#: src/gui/insEdit.cpp:6948 src/gui/insEdit.cpp:7008 src/gui/insEdit.cpp:7048 +#: src/gui/insEdit.cpp:7150 src/gui/insEdit.cpp:7436 src/gui/insEdit.cpp:7472 +msgid "Duty" +msgstr "Скважность" + +#: src/gui/waveEdit.cpp:607 +msgid "Exponent" +msgstr "Пок. степени" + +#: src/gui/waveEdit.cpp:617 +msgid "XOR Point" +msgstr "Точка XOR" + +#: src/gui/waveEdit.cpp:627 +msgid "Amplitude/Phase" +msgstr "Амплитуда/фаза" + +#: src/gui/waveEdit.cpp:679 src/gui/waveEdit.cpp:723 src/gui/waveEdit.cpp:728 +msgid "Op" +msgstr "Опер." + +#: src/gui/waveEdit.cpp:683 +msgid "Mult" +msgstr "Множитель" + +#: src/gui/waveEdit.cpp:685 +msgid "FB" +msgstr "Обр. св." + +#: src/gui/waveEdit.cpp:749 src/gui/waveEdit.cpp:750 +msgid "Connection Diagram" +msgstr "Матрица модуляции" + +#: src/gui/waveEdit.cpp:765 +msgid "Out" +msgstr "Вывод" + +#: src/gui/waveEdit.cpp:872 +msgid "WaveTools" +msgstr "Инструменты" + +#: src/gui/waveEdit.cpp:890 +msgid "Scale X" +msgstr "Масштаб X" + +#: src/gui/waveEdit.cpp:896 +msgid "wavetable longer than 256 samples!" +msgstr "волновая таблица длинее 256 шагов!" + +#: src/gui/waveEdit.cpp:960 +msgid "Scale Y" +msgstr "Масштаб Y" + +#: src/gui/waveEdit.cpp:978 +msgid "Offset X" +msgstr "Сдвиг X" + +#: src/gui/waveEdit.cpp:1000 +msgid "Offset Y" +msgstr "Сдвиг Y" + +#: src/gui/waveEdit.cpp:1017 +msgid "Smooth" +msgstr "Сгладить" + +#: src/gui/waveEdit.cpp:1045 src/gui/sampleEdit.cpp:996 +msgid "Amplify" +msgstr "Усилить" + +#: src/gui/waveEdit.cpp:1063 src/gui/sampleEdit.cpp:1046 +msgid "Normalize" +msgstr "Нормализовать" + +#: src/gui/waveEdit.cpp:1105 src/gui/sampleEdit.cpp:1121 +msgid "Reverse" +msgstr "Реверс" + +#: src/gui/waveEdit.cpp:1117 +msgid "Half" +msgstr "Сократить 2х" + +#: src/gui/waveEdit.cpp:1127 +msgid "Double" +msgstr "Растянуть 2х" + +#: src/gui/waveEdit.cpp:1137 +msgid "Convert Signed/Unsigned" +msgstr "Конверт. знаковая <-> беззнаковая" + +#: src/gui/waveEdit.cpp:1167 +msgid "Dec" +msgstr "Дес." + +#: src/gui/waveEdit.cpp:1171 src/gui/csPlayer.cpp:247 +msgid "Hex" +msgstr "Шест." + +#: src/gui/waveEdit.cpp:1179 +msgid "Signed/Unsigned" +msgstr "Знаковая <-> беззнаковая" + +#: src/gui/sampleEdit.cpp:65 +#, c-format +msgid "%s: maximum sample rate is %d" +msgstr "%s: максимальная частота квантования равна %d" + +#: src/gui/sampleEdit.cpp:72 +#, c-format +msgid "%s: minimum sample rate is %d" +msgstr "%s: минимальная частота квантования равна %d" + +#: src/gui/sampleEdit.cpp:79 +#, c-format +msgid "%s: sample rate must be %d" +msgstr "%s: частота квантования должна быть равна %d" + +#: src/gui/sampleEdit.cpp:99 src/gui/sampleEdit.cpp:100 +msgid "no sample selected" +msgstr "сэмпл не выбран" + +#: src/gui/sampleEdit.cpp:229 +#, c-format +msgid "SNES: loop start must be a multiple of 16 (try with %d)" +msgstr "SNES: начало цикла должно быть кратно 16 (попробуйте %d)" + +#: src/gui/sampleEdit.cpp:235 +#, c-format +msgid "SNES: loop end must be a multiple of 16 (try with %d)" +msgstr "SNES: конец цикла должен быть кратен 16 (попробуйте %d)" + +#: src/gui/sampleEdit.cpp:240 +msgid "SNES: sample length will be padded to multiple of 16" +msgstr "SNES: длина сэмпла будет скорректирована до кратности 16" + +#: src/gui/sampleEdit.cpp:249 +msgid "QSound: loop cannot be longer than 32767 samples" +msgstr "QSound: цикл не может быть длиннее 32767 сэмплов" + +#: src/gui/sampleEdit.cpp:259 +msgid "NES: loop point ignored on DPCM (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:263 +msgid "NES: maximum DPCM sample length is 32648" +msgstr "NES: максимальная длина ДИКМ-сэмпла равна 32648" + +#: src/gui/sampleEdit.cpp:268 +msgid "X1-010: samples can't loop" +msgstr "X1-010: сэмплы не могут быть зациклены" + +#: src/gui/sampleEdit.cpp:271 +msgid "X1-010: maximum sample length is 131072" +msgstr "X1-010: максимальная длина сэмпла равна 131072" + +#: src/gui/sampleEdit.cpp:276 +msgid "GA20: samples can't loop" +msgstr "GA20: сэмплы не могут быть зациклены" + +#: src/gui/sampleEdit.cpp:287 +msgid "YM2608: loop point ignored on ADPCM (may only loop entire sample)" +msgstr "" +"YM2608: точка зацикливания игнорируется для АДИКМ (зациклить можно только " +"сэмпл целиком)" + +#: src/gui/sampleEdit.cpp:290 +msgid "YM2608: sample length will be padded to multiple of 512" +msgstr "YM2608: длина сэмпла будет скорректирована до кратности 512" + +#: src/gui/sampleEdit.cpp:300 +msgid "YM2610: ADPCM-A samples can't loop" +msgstr "YM2610: ADPCM-A сэмплы не могут быть зациклены" + +#: src/gui/sampleEdit.cpp:302 +msgid "YM2610: loop point ignored on ADPCM-B (may only loop entire sample)" +msgstr "" +"YM2610: точка зацикливания игнорируется для АДИКМ-B (зациклить можно только " +"сэмпл целиком)" + +#: src/gui/sampleEdit.cpp:305 +msgid "YM2610: sample length will be padded to multiple of 512" +msgstr "YM2610: длина сэмпла будет скорректирована до кратности 512" + +#: src/gui/sampleEdit.cpp:309 +msgid "YM2610: maximum ADPCM-A sample length is 2097152" +msgstr "YM2610: максимальная длина АДИКМ-A сэмпла равна 2097152" + +#: src/gui/sampleEdit.cpp:318 +msgid "Y8950: loop point ignored on ADPCM (may only loop entire sample)" +msgstr "" +"Y8950: точка зацикливания игнорируется для АДИКМ (зациклить можно только " +"сэмпл целиком)" + +#: src/gui/sampleEdit.cpp:321 +msgid "Y8950: sample length will be padded to multiple of 512" +msgstr "Y8950: длина сэмпла будет скорректирована до кратности 512" + +#: src/gui/sampleEdit.cpp:328 +msgid "Amiga: loop start must be a multiple of 2" +msgstr "Amiga: начало зацикливания должно быть кратно 2" + +#: src/gui/sampleEdit.cpp:331 +msgid "Amiga: loop end must be a multiple of 2" +msgstr "Amiga: конец зацикливания должен быть кратен 2" + +#: src/gui/sampleEdit.cpp:335 +msgid "Amiga: maximum sample length is 131070" +msgstr "Amiga: максимальная длина сэмпла равна 131070" + +#: src/gui/sampleEdit.cpp:344 +msgid "SegaPCM: maximum sample length is 65280" +msgstr "SegaPCM: максимальная длина сэмпла равна 65280" + +#: src/gui/sampleEdit.cpp:353 +msgid "K053260: loop point ignored (may only loop entire sample)" +msgstr "" +"K053260: точка зацикливания игнорируется (зациклить можно только сэмпл " +"целиком)" + +#: src/gui/sampleEdit.cpp:357 +msgid "K053260: maximum sample length is 65535" +msgstr "K053260: максимальная длина сэмпла равна 65535" + +#: src/gui/sampleEdit.cpp:362 +msgid "C140: maximum sample length is 65535" +msgstr "C140: максимальная длина сэмпла равна 65535" + +#: src/gui/sampleEdit.cpp:371 +msgid "C219: loop start must be a multiple of 2" +msgstr "C219: начало зацикливания должно быть кратно 2" + +#: src/gui/sampleEdit.cpp:374 +msgid "C219: loop end must be a multiple of 2" +msgstr "C219: конец зацикливания должен быть кратен 2" + +#: src/gui/sampleEdit.cpp:378 +msgid "C219: maximum sample length is 131072" +msgstr "C219: максимальная длина сэмпла равна 131072" + +#: src/gui/sampleEdit.cpp:386 +msgid "MSM6295: samples can't loop" +msgstr "MSM6295: сэмплы не могут быть зациклены" + +#: src/gui/sampleEdit.cpp:389 +msgid "MSM6295: maximum bankswitched sample length is 129024" +msgstr "MSM6295: максимальная длина сэмпла с заменой банков равна 129024" + +#: src/gui/sampleEdit.cpp:395 +msgid "GBA DMA: loop start must be a multiple of 4" +msgstr "GBA DMA: начало цикла должно быть кратно 4" + +#: src/gui/sampleEdit.cpp:398 +msgid "GBA DMA: loop length must be a multiple of 16" +msgstr "GBA DMA: длина зацикленной части должна быть кратна 16" + +#: src/gui/sampleEdit.cpp:402 +msgid "GBA DMA: sample length will be padded to multiple of 16" +msgstr "GBA DMA: длина сэмпла будет скорректирована до кратности 16" + +#: src/gui/sampleEdit.cpp:411 +msgid "ES5506: backward loop mode isn't supported" +msgstr "ES5506: режим обратного зацикливания не поддерживается" + +#: src/gui/sampleEdit.cpp:414 +msgid "" +"backward/ping-pong only supported in Generic PCM DAC\n" +"ping-pong also on ES5506" +msgstr "" +"режим обратного и \"туда-обратно\" зацикливания поддерживается только для " +"универсального ИКМ ЦАП\n" +"\"туда-обратно\" также поддерживается для ES5506" + +#: src/gui/sampleEdit.cpp:444 +msgid "Info" +msgstr "Информация" + +#: src/gui/sampleEdit.cpp:447 src/gui/sampleEdit.cpp:933 +msgid "Rate" +msgstr "Частота" + +#: src/gui/sampleEdit.cpp:453 +msgid "Compat Rate" +msgstr "Совместимая частота" + +#: src/gui/sampleEdit.cpp:457 +msgid "" +"used in DefleMask-compatible sample mode (17xx), in where samples are mapped " +"to an octave." +msgstr "" +"используется при воспроизведении в режиме совместимости с DefleMask (17xx), " +"в котором сэмплы соответствуют октаве." + +#: src/gui/sampleEdit.cpp:463 +#, c-format +msgid "Loop (length: %d)##Loop" +msgstr "Цикл (длина: %d)##Loop" + +#: src/gui/sampleEdit.cpp:463 src/gui/insEdit.cpp:544 src/gui/insEdit.cpp:554 +#: src/gui/insEdit.cpp:605 src/gui/insEdit.cpp:6017 +msgid "Loop" +msgstr "Цикл" + +#: src/gui/sampleEdit.cpp:487 src/gui/sampleEdit.cpp:716 +#: src/gui/sampleEdit.cpp:752 +msgid "changing the loop in a BRR sample may result in glitches!" +msgstr "Смена зацикленной части в сэмпле BRR может привести к сбоям!" + +#: src/gui/sampleEdit.cpp:529 +msgid "BRR emphasis" +msgstr "Постобработка для BRR" + +#: src/gui/sampleEdit.cpp:538 +msgid "" +"this is a BRR sample.\n" +"enabling this option will muffle it (only affects non-SNES chips)." +msgstr "" +"это сэмпл BRR.\n" +"включение этой опции \"приглушит\" его (на всех чипах кроме SNES)." + +#: src/gui/sampleEdit.cpp:540 +msgid "" +"enable this option to slightly boost high frequencies\n" +"to compensate for the SNES' Gaussian filter's muffle." +msgstr "" +"включите эту опцию для небольшого усиления высоких частот\n" +"для компенсации фильтрующего свойства гауссовой интерполяции, из-за которого " +"сэмпл \"приглушается\"." + +#: src/gui/sampleEdit.cpp:546 +msgid "8-bit dither" +msgstr "8-битный дизеринг" + +#: src/gui/sampleEdit.cpp:554 +msgid "dither the sample when used on a chip that only supports 8-bit samples." +msgstr "" +"произвести дизеринг для сэмпла при его использовании для чипа, " +"поддерживающего только 8-битные сэмплы." + +#: src/gui/sampleEdit.cpp:695 src/gui/gui.cpp:2975 +msgid "Start" +msgstr "Начало" + +#: src/gui/sampleEdit.cpp:731 src/gui/gui.cpp:2983 +msgid "End" +msgstr "Конец" + +#: src/gui/sampleEdit.cpp:841 +#, c-format +msgid "" +"%s\n" +"%d bytes free" +msgstr "" +"%s\n" +"свободен %d байт" + +#: src/gui/sampleEdit.cpp:843 +#, c-format +msgid "" +"%s (%s)\n" +"%d bytes free" +msgstr "" +"%s (%s)\n" +"свободен %d байт" + +#: src/gui/sampleEdit.cpp:847 +msgid "" +"\n" +"\n" +"not enough memory for this sample!" +msgstr "" +"\n" +"\n" +"недостаточно памяти для этого сэмпла!" + +#: src/gui/sampleEdit.cpp:871 +msgid "Edit mode: Select" +msgstr "Режим редактирования: выделение" + +#: src/gui/sampleEdit.cpp:880 +msgid "Edit mode: Draw" +msgstr "Режим редактирования: рисование" + +#: src/gui/sampleEdit.cpp:891 src/gui/sampleEdit.cpp:902 +msgid "Resize" +msgstr "Масштабировать" + +#: src/gui/sampleEdit.cpp:906 +msgid "couldn't resize! make sure your sample is 8 or 16-bit." +msgstr "" +"не получилось отмасштабировать! убедитесь, что это 8- или 16-битный сэмпл." + +#: src/gui/sampleEdit.cpp:926 src/gui/sampleEdit.cpp:957 +msgid "Resample" +msgstr "Изменить частоту дискретизации" + +#: src/gui/sampleEdit.cpp:951 +msgid "Factor" +msgstr "Коэффициент" + +#: src/gui/sampleEdit.cpp:956 +msgid "Filter" +msgstr "Фильтр" + +#: src/gui/sampleEdit.cpp:961 +msgid "couldn't resample! make sure your sample is 8 or 16-bit." +msgstr "" +"не получилось изменить частоту дискретизации! убедитесь, что это 8- или 16-" +"битный сэмпл." + +#: src/gui/sampleEdit.cpp:1010 src/gui/sampleEdit.cpp:1197 +#: src/gui/sampleEdit.cpp:1281 +msgid "Apply" +msgstr "Применить" + +#: src/gui/sampleEdit.cpp:1053 +msgid "Fade in" +msgstr "Плавное нарастание" + +#: src/gui/sampleEdit.cpp:1060 +msgid "Fade out" +msgstr "Плавное затухание" + +#: src/gui/sampleEdit.cpp:1065 +msgid "Insert silence" +msgstr "Вставить тишину" + +#: src/gui/sampleEdit.cpp:1076 +msgid "Go" +msgstr "Применить" + +#: src/gui/sampleEdit.cpp:1081 +msgid "couldn't insert! make sure your sample is 8 or 16-bit." +msgstr "не получилось вставить! убедитесь, что это 8- или 16-битный сэмпл." + +#: src/gui/sampleEdit.cpp:1098 +msgid "Apply silence" +msgstr "Применить тишину" + +#: src/gui/sampleEdit.cpp:1112 +msgid "Trim" +msgstr "Обрезать" + +#: src/gui/sampleEdit.cpp:1135 +msgid "Signed/unsigned exchange" +msgstr "Знаковый <-> беззнаковый" + +#: src/gui/sampleEdit.cpp:1140 +msgid "Apply filter" +msgstr "Применить фильтр" + +#: src/gui/sampleEdit.cpp:1151 +msgid "Cutoff:" +msgstr "Частота среза:" + +#: src/gui/sampleEdit.cpp:1161 src/gui/insEdit.cpp:5895 +#: src/gui/insEdit.cpp:5898 src/gui/insEdit.cpp:6953 src/gui/insEdit.cpp:7216 +#: src/gui/insEdit.cpp:7478 +msgid "Resonance" +msgstr "Резонанс (добротность)" + +#: src/gui/sampleEdit.cpp:1167 src/gui/insEdit.cpp:6897 +msgid "Power" +msgstr "Порядок фильтра" + +#: src/gui/sampleEdit.cpp:1181 +msgid "Low-pass" +msgstr "ФНЧ" + +#: src/gui/sampleEdit.cpp:1186 +msgid "Band-pass" +msgstr "ППФ" + +#: src/gui/sampleEdit.cpp:1191 +msgid "High-pass" +msgstr "ФВЧ" + +#: src/gui/sampleEdit.cpp:1262 +msgid "Crossfade loop points" +msgstr "Сделать плавный переход между началом и концом зацикленной части" + +#: src/gui/sampleEdit.cpp:1271 +msgid "Number of samples" +msgstr "Число сэмплов" + +#: src/gui/sampleEdit.cpp:1277 +msgid "Linear <-> Equal power" +msgstr "Линейный <-> Одинаковая степень" + +#: src/gui/sampleEdit.cpp:1283 +msgid "Crossfade: length would go out of bounds. Aborted..." +msgstr "Плавный переход: длина выйдет за границы. Действие отменено." + +#: src/gui/sampleEdit.cpp:1286 +msgid "Crossfade: length would overflow loopStart. Try a smaller random value." +msgstr "" +"Плавный переход: длина выйдет за пределы начала цикла. Попробуйте с меньшим " +"случайным значением." + +#: src/gui/sampleEdit.cpp:1332 +msgid "Preview sample" +msgstr "Превью сэмпла" + +#: src/gui/sampleEdit.cpp:1346 +msgid "Create instrument from sample" +msgstr "Создать инструмент из сэмпла" + +#: src/gui/sampleEdit.cpp:1747 +msgid "paste (replace)" +msgstr "вставить (с заменой)" + +#: src/gui/sampleEdit.cpp:1750 +msgid "paste (mix)" +msgstr "вставить со смешением" + +#: src/gui/sampleEdit.cpp:1754 src/gui/gui.cpp:2769 +msgid "select all" +msgstr "выбрать всё" + +#: src/gui/sampleEdit.cpp:1758 +msgid "set loop to selection" +msgstr "зациклить по выделенной части" + +#: src/gui/sampleEdit.cpp:1761 +msgid "create wavetable from selection" +msgstr "создать волновую таблицу из выделенной части" + +#: src/gui/sampleEdit.cpp:1767 +msgid "Draw" +msgstr "Рисовать" + +#: src/gui/sampleEdit.cpp:1767 +msgid "Select" +msgstr "Выделить" + +#: src/gui/sampleEdit.cpp:1769 +#, c-format +msgid "%d samples, %d bytes" +msgstr "" + +#: src/gui/sampleEdit.cpp:1784 +#, c-format +msgid " (%d-%d: %d samples)" +msgstr " (%d-%d: %d сэмпл)" + +#: src/gui/sampleEdit.cpp:1976 +msgid "Non-8/16-bit samples cannot be edited without prior conversion." +msgstr "" +"Сэмплы в формате, отличающемся от 8- или 16-битной ИКМ, невозможно " +"редактировать\n" +"без предварительной конвертации в один из этих форматов." + +#: src/gui/newSong.cpp:122 src/gui/newSong.cpp:123 +msgid "Choose a System!" +msgstr "Выберите систему!" + +#: src/gui/newSong.cpp:179 +msgid "Categories" +msgstr "Категории" + +#: src/gui/newSong.cpp:210 +msgid "no systems here yet!" +msgstr "пока здесь нет ни одной системы!" + +#: src/gui/newSong.cpp:212 +msgid "no results" +msgstr "ничего не найдено" + +#: src/gui/newSong.cpp:228 +msgid "I'm feeling lucky" +msgstr "Мне повезёт!" + +#: src/gui/newSong.cpp:230 +msgid "no categories available! what in the world." +msgstr "нет доступных категорий! что происходит..." + +#: src/gui/newSong.cpp:265 +msgid "it appears you're extremely lucky today!" +msgstr "похоже, что вам сегодня очень повезло!" + +#: src/gui/cursor.cpp:205 +#, c-format +msgid "finish selection: %d.%d,%d - %d.%d,%d" +msgstr "" + +#: src/gui/tutorial.cpp:487 +msgid "" +"Play demo songs?\n" +"- Down: Play current song\n" +"- Up: Play demo songs" +msgstr "" + +#: src/gui/tutorial.cpp:491 +msgid "" +"Welcome to Combat Vehicle!\n" +"\n" +"Controls:\n" +"X - Shoot Arrow Key - Move\n" +"Z - Special Esc - Quit" +msgstr "" + +#: src/gui/tutorial.cpp:496 +msgid "GAME OVER" +msgstr "" + +#: src/gui/tutorial.cpp:498 +msgid "High Score!" +msgstr "" + +#: src/gui/tutorial.cpp:658 +msgid "Welcome!" +msgstr "" + +#: src/gui/tutorial.cpp:661 +msgid "welcome to Furnace, the biggest open-source chiptune tracker!" +msgstr "" + +#: src/gui/tutorial.cpp:665 +msgid "here are some tips to get you started:" +msgstr "" + +#: src/gui/tutorial.cpp:668 +msgid "" +"- add an instrument by clicking on + in Instruments\n" +"- click on the pattern view to focus it\n" +"- channel columns have the following, in this order: note, instrument, " +"volume and effects\n" +"- hit space bar while on the pattern to toggle Edit Mode\n" +"- click on the pattern or use arrow keys to move the cursor\n" +"- values (instrument, volume, effects and effect values) are in hexadecimal\n" +"- hit enter to play/stop the song\n" +"- extend the song by adding more orders in the Orders window\n" +"- click on the Orders matrix to change the patterns of a channel (left click " +"increases; right click decreases)" +msgstr "" + +#: src/gui/tutorial.cpp:680 +msgid "" +"if you need help, you may:\n" +"- read the manual (a file called manual.pdf)\n" +"- ask for help in Discussions (https://github.com/tildearrow/furnace/" +"discussions), the Furnace Discord (https://discord.gg/EfrwT2wq7z) or Furnace " +"in Revolt (official: https://rvlt.gg/GRPS6tmc)" +msgstr "" + +#: src/gui/tutorial.cpp:687 +msgid "" +"if you find any issues, be sure to report them! the issue tracker is here: " +"https://github.com/tildearrow/furnace/issues" +msgstr "" + +#: src/gui/tutorial.cpp:1428 +#, c-format +msgid "STAGE %d" +msgstr "" + +#: src/gui/songInfo.cpp:32 +msgid "Song Info##Song Information" +msgstr "" + +#: src/gui/songInfo.cpp:50 +msgid "Author" +msgstr "Автор" + +#: src/gui/songInfo.cpp:60 +msgid "Album" +msgstr "Альбом" + +#: src/gui/songInfo.cpp:79 +msgid "Auto" +msgstr "Автоматически" + +#: src/gui/songInfo.cpp:100 +msgid "Tuning (A-4)" +msgstr "Частота (ля 4-ой октавы)" + +#: src/gui/grooves.cpp:38 +msgid "use effect 09xx to select a groove pattern." +msgstr "используйте эффект 09xx для выбора ритм-паттерна." + +#: src/gui/grooves.cpp:48 src/gui/gui.cpp:4480 +msgid "pattern" +msgstr "паттерны" + +#: src/gui/grooves.cpp:132 +msgid "remove" +msgstr "удалить" + +#: src/gui/doAction.cpp:45 src/gui/gui.cpp:4201 +msgid "Unsaved changes! Save changes before opening another file?" +msgstr "" +"Остались несохранённые изменения! Сохранить их перед открытием другого файла?" + +#: src/gui/doAction.cpp:52 +msgid "Unsaved changes! Save changes before opening backup?" +msgstr "" +"Остались несохранённые изменения! Сохранить их перед открытием резервной " +"копии?" + +#: src/gui/doAction.cpp:62 src/gui/gui.cpp:4237 src/gui/gui.cpp:5025 +#: src/gui/gui.cpp:5063 src/gui/gui.cpp:5069 src/gui/gui.cpp:5657 +#: src/gui/gui.cpp:5681 src/gui/gui.cpp:5705 src/gui/gui.cpp:5729 +#: src/gui/gui.cpp:5753 src/gui/gui.cpp:5777 +#, c-format +msgid "Error while saving file! (%s)" +msgstr "Ошибка при сохранении файла! (%s)" + +#: src/gui/doAction.cpp:189 +msgid "Error while sending request (MIDI output not configured?)" +msgstr "Ошибка при посылке запроса (MIDI вывод не настроен?)" + +#: src/gui/doAction.cpp:197 +msgid "Select an option: (cannot be undone!)" +msgstr "Выберите опцию: (действие не может быть отменено!)" + +#: src/gui/doAction.cpp:691 src/gui/doAction.cpp:720 src/gui/doAction.cpp:1593 +#: src/gui/gui.cpp:6091 +msgid "too many instruments!" +msgstr "слишком много инструментов!" + +#: src/gui/doAction.cpp:1124 +msgid "couldn't paste! make sure your sample is 8 or 16-bit." +msgstr "" +"Не получилось вставить сэмпл! убедитесь, что это 8- или 16-битный сэмпл." + +#: src/gui/doAction.cpp:1628 +msgid "select at least one sample!" +msgstr "выберите хотя бы один сэмпл!" + +#: src/gui/doAction.cpp:1630 +msgid "maximum size is 256 samples!" +msgstr "максимальный размер равен 256 сэмплам!" + +#: src/gui/csPlayer.cpp:113 +msgid "Load" +msgstr "Загрузить" + +#: src/gui/csPlayer.cpp:117 +msgid "Kill" +msgstr "Остановить" + +# korean: 기계는 이미 죽었습니다! +#: src/gui/csPlayer.cpp:119 +msgid "Kikai wa mou shindeiru!" +msgstr "Кикенын ими чукотсыпнида!" + +#: src/gui/csPlayer.cpp:123 +msgid "Burn Current Song" +msgstr "Сохранить текущий трек" + +#: src/gui/csPlayer.cpp:141 +msgid "Status" +msgstr "Статус" + +#: src/gui/csPlayer.cpp:148 +msgid "start" +msgstr "" + +#: src/gui/csPlayer.cpp:150 +msgid "PC" +msgstr "" + +#: src/gui/csPlayer.cpp:152 +msgid "wait" +msgstr "" + +#: src/gui/csPlayer.cpp:154 +msgid "SP" +msgstr "" + +#: src/gui/csPlayer.cpp:156 src/gui/insEdit.cpp:2733 +msgid "note" +msgstr "нота" + +#: src/gui/csPlayer.cpp:158 src/gui/insEdit.cpp:2728 +msgid "pitch" +msgstr "частота" + +#: src/gui/csPlayer.cpp:160 +msgid "vol" +msgstr "" + +#: src/gui/csPlayer.cpp:162 +msgid "vols" +msgstr "" + +#: src/gui/csPlayer.cpp:164 +msgid "vib" +msgstr "" + +#: src/gui/csPlayer.cpp:166 +msgid "porta" +msgstr "" + +#: src/gui/csPlayer.cpp:168 +msgid "arp" +msgstr "" + +#: src/gui/csPlayer.cpp:203 +msgid "Trace" +msgstr "" + +#: src/gui/csPlayer.cpp:244 +msgid "Disassemble" +msgstr "" + +#: src/gui/gui.cpp:1136 src/gui/gui.cpp:1140 +msgid "the song is over!" +msgstr "трек закончился!" + +#: src/gui/gui.cpp:1667 +msgid "Open File" +msgstr "Открыть файл" + +#: src/gui/gui.cpp:1668 src/gui/gui.cpp:1798 src/gui/gui.cpp:1838 +#: src/gui/gui.cpp:1953 src/gui/gui.cpp:1962 src/gui/gui.cpp:1971 +#: src/gui/gui.cpp:2073 src/gui/gui.cpp:2093 src/gui/gui.cpp:2111 +msgid "compatible files" +msgstr "совместимые файлы" + +#: src/gui/gui.cpp:1669 src/gui/gui.cpp:1743 src/gui/gui.cpp:1799 +#: src/gui/gui.cpp:1839 src/gui/gui.cpp:1851 src/gui/gui.cpp:1870 +#: src/gui/gui.cpp:2074 src/gui/gui.cpp:2084 src/gui/gui.cpp:2095 +#: src/gui/gui.cpp:2113 +msgid "all files" +msgstr "все файлы" + +#: src/gui/gui.cpp:1676 +msgid "no backups made yet!" +msgstr "резервных копий пока нет!" + +#: src/gui/gui.cpp:1681 src/gui/gui.cpp:1690 src/gui/gui.cpp:2130 +msgid "Furnace song" +msgstr "модуль Furnace" + +#: src/gui/gui.cpp:1689 +msgid "Save File" +msgstr "Сохранить файл" + +#: src/gui/gui.cpp:1698 src/gui/gui.cpp:1708 +msgid "Export DMF" +msgstr "" + +#: src/gui/gui.cpp:1699 +msgid "DefleMask 1.1.3 module" +msgstr "модуль DefleMask 1.1.3" + +#: src/gui/gui.cpp:1709 +msgid "DefleMask 1.0/legacy module" +msgstr "модуль DefleMask 1.0/legacy" + +#: src/gui/gui.cpp:1726 +msgid "Load Instrument" +msgstr "загрузить инструмент" + +#: src/gui/gui.cpp:1727 +msgid "all compatible files" +msgstr "все совместимые файлы" + +#: src/gui/gui.cpp:1728 src/gui/gui.cpp:1777 +msgid "Furnace instrument" +msgstr "инструмент Furnace" + +#: src/gui/gui.cpp:1729 src/gui/gui.cpp:1787 +msgid "DefleMask preset" +msgstr "пресет DefleMask" + +#: src/gui/gui.cpp:1730 +msgid "TFM Music Maker instrument" +msgstr "инструмент из программы TFM Music Maker" + +#: src/gui/gui.cpp:1731 +msgid "VGM Music Maker instrument" +msgstr "инструмент из программы VGM Music Maker" + +#: src/gui/gui.cpp:1732 +msgid "Scream Tracker 3 instrument" +msgstr "инструмент из программы Scream Tracker 3" + +#: src/gui/gui.cpp:1733 +msgid "SoundBlaster instrument" +msgstr "инструмент SoundBlaster" + +#: src/gui/gui.cpp:1734 +msgid "Wohlstand OPL instrument" +msgstr "инструмент из программы Wohlstand OPL" + +#: src/gui/gui.cpp:1735 +msgid "Wohlstand OPN instrument" +msgstr "инструмент из программы Wohlstand OPN" + +#: src/gui/gui.cpp:1736 +msgid "Gens KMod patch dump" +msgstr "дамп патчей Gens KMod" + +#: src/gui/gui.cpp:1737 +msgid "BNK file (AdLib)" +msgstr "файл BNK (AdLib)" + +#: src/gui/gui.cpp:1738 +msgid "FF preset bank" +msgstr "банк пресетов FF" + +#: src/gui/gui.cpp:1739 +msgid "2612edit GYB preset bank" +msgstr "банк пресетов 2612edit GYB" + +#: src/gui/gui.cpp:1740 +msgid "VOPM preset bank" +msgstr "банк пресетов VOPM" + +#: src/gui/gui.cpp:1741 +msgid "Wohlstand WOPL bank" +msgstr "банк Wohlstand WOPL" + +#: src/gui/gui.cpp:1742 +msgid "Wohlstand WOPN bank" +msgstr "банк Wohlstand WOPN" + +#: src/gui/gui.cpp:1776 src/gui/gui.cpp:1786 +msgid "Save Instrument" +msgstr "Сохранить инструмент" + +#: src/gui/gui.cpp:1797 +msgid "Load Wavetable" +msgstr "Загрузить волновую таблицу" + +#: src/gui/gui.cpp:1809 src/gui/gui.cpp:1818 src/gui/gui.cpp:1827 +msgid "Save Wavetable" +msgstr "Сохранить волновую таблицу" + +#: src/gui/gui.cpp:1810 +msgid "Furnace wavetable" +msgstr "волновая таблица Furnace" + +#: src/gui/gui.cpp:1819 +msgid "DefleMask wavetable" +msgstr "волновая таблица DefleMask" + +#: src/gui/gui.cpp:1828 +msgid "raw data" +msgstr "сырые данные" + +#: src/gui/gui.cpp:1837 +msgid "Load Sample" +msgstr "Загрузить сэмпл" + +#: src/gui/gui.cpp:1850 +msgid "Load Raw Sample" +msgstr "Загрузить сырые данные сэмпла" + +#: src/gui/gui.cpp:1859 +msgid "Save Sample" +msgstr "Сохранить сэмпл" + +#: src/gui/gui.cpp:1860 src/gui/gui.cpp:1880 src/gui/gui.cpp:1890 +#: src/gui/gui.cpp:1900 +msgid "Wave file" +msgstr "файл WAV" + +#: src/gui/gui.cpp:1869 +msgid "Save Raw Sample" +msgstr "Сохранить сырые данные сэмпла" + +#: src/gui/gui.cpp:1879 src/gui/gui.cpp:1889 src/gui/gui.cpp:1899 +msgid "Export Audio" +msgstr "Экспорт аудио" + +#: src/gui/gui.cpp:1909 +msgid "Export VGM" +msgstr "Экспорт VGM" + +#: src/gui/gui.cpp:1910 +msgid "VGM file" +msgstr "Файл VGM" + +#: src/gui/gui.cpp:1919 +msgid "Export ZSM" +msgstr "Экспорт ZSM" + +#: src/gui/gui.cpp:1920 +msgid "ZSM file" +msgstr "Файл ZSM" + +#: src/gui/gui.cpp:1929 src/gui/gui.cpp:1939 +msgid "Export Command Stream" +msgstr "Экспорт потока команд" + +#: src/gui/gui.cpp:1930 +msgid "text file" +msgstr "текстовый файл" + +#: src/gui/gui.cpp:1940 +msgid "binary file" +msgstr "бинарный файл" + +#: src/gui/gui.cpp:1947 src/gui/gui.cpp:5376 +msgid "Coming soon!" +msgstr "скоро появится!" + +#: src/gui/gui.cpp:1952 src/gui/gui.cpp:1961 src/gui/gui.cpp:1970 +msgid "Select Font" +msgstr "Выберите шрифт" + +#: src/gui/gui.cpp:1979 +msgid "Select Color File" +msgstr "Выберите файл с настройками цветов" + +#: src/gui/gui.cpp:1980 src/gui/gui.cpp:1989 src/gui/gui.cpp:2008 +#: src/gui/gui.cpp:2017 src/gui/gui.cpp:2026 src/gui/gui.cpp:2035 +#: src/gui/gui.cpp:2053 src/gui/gui.cpp:2062 +msgid "configuration files" +msgstr "файлы конфигурации" + +#: src/gui/gui.cpp:1988 +msgid "Select Keybind File" +msgstr "Выберите файл с настройками клавиатуры" + +#: src/gui/gui.cpp:1997 +msgid "Select Layout File" +msgstr "Выберите файл с настройками компоновки окон интерфейса" + +#: src/gui/gui.cpp:1998 src/gui/gui.cpp:2044 +msgid ".ini files" +msgstr "файлы .ini" + +#: src/gui/gui.cpp:2007 +msgid "Select User Presets File" +msgstr "Выберите файл пользовательских пресетов" + +#: src/gui/gui.cpp:2016 +msgid "Select Settings File" +msgstr "Выберите файл с настройками" + +#: src/gui/gui.cpp:2025 +msgid "Export Colors" +msgstr "Экспортировать настройки цветов" + +#: src/gui/gui.cpp:2034 +msgid "Export Keybinds" +msgstr "Экспортировать настройки клавиатуры" + +#: src/gui/gui.cpp:2043 +msgid "Export Layout" +msgstr "Экспортировать компоновку окон интерфейса" + +#: src/gui/gui.cpp:2052 +msgid "Export User Presets" +msgstr "Экспортировать пользовательские пресеты" + +#: src/gui/gui.cpp:2061 +msgid "Export Settings" +msgstr "Экспортировать настройки" + +#: src/gui/gui.cpp:2072 +msgid "Load ROM" +msgstr "Загрузить ROM" + +#: src/gui/gui.cpp:2082 +msgid "Play Command Stream" +msgstr "Воспроизвести поток команд" + +#: src/gui/gui.cpp:2083 +msgid "command stream" +msgstr "поток команд" + +#: src/gui/gui.cpp:2092 +msgid "Open Test" +msgstr "Открыть (тест)" + +#: src/gui/gui.cpp:2094 src/gui/gui.cpp:2112 +msgid "another option" +msgstr "другая опция" + +#: src/gui/gui.cpp:2110 +msgid "Open Test (Multi)" +msgstr "Открыть (тест, несколько файлов)" + +#: src/gui/gui.cpp:2129 +msgid "Save Test" +msgstr "Сохранить (тест)" + +#: src/gui/gui.cpp:2131 +msgid "DefleMask module" +msgstr "Модуль DefleMask" + +#: src/gui/gui.cpp:2171 +msgid "compression error" +msgstr "" + +#: src/gui/gui.cpp:2183 +msgid "zlib stream error" +msgstr "" + +#: src/gui/gui.cpp:2205 +msgid "zlib finish stream error" +msgstr "" + +#: src/gui/gui.cpp:2316 +msgid "everything OK" +msgstr "" + +#: src/gui/gui.cpp:2334 +msgid "" +"you have loaded a backup!\n" +"if you need to, please save it somewhere.\n" +"\n" +"DO NOT RELY ON THE BACKUP SYSTEM FOR AUTO-SAVE!\n" +"Furnace will not save backups of backups." +msgstr "" +"вы загрузили резервную копию!\n" +"если необходимо, сохраните её где-то ещё.\n" +"\n" +"СИСТЕМА РЕЗЕРВНОГО КОПИРОВАНИЯ НЕ ЯВЛЯЕТСЯ СИСТЕМОЙ АВТОСОХРАНЕНИЯ!\n" +"Furnace не сохраняет резервные копии резервных копий." + +#: src/gui/gui.cpp:2342 src/gui/gui.cpp:3743 src/gui/gui.cpp:4213 +msgid "Unsaved changes! Save changes before opening file?" +msgstr "Остались несохранённые изменения! Сохранить их перед открытием файла?" + +#: src/gui/gui.cpp:2736 +msgid "paste special..." +msgstr "вставить..." + +#: src/gui/gui.cpp:2737 +msgid "paste mix" +msgstr "вставить поверх" + +#: src/gui/gui.cpp:2738 +msgid "paste mix (background)" +msgstr "вставить поверх (с заменой существующего)" + +#: src/gui/gui.cpp:2739 +msgid "paste with ins (foreground)" +msgstr "вставить поверх с инстр. (без замены существующего)" + +#: src/gui/gui.cpp:2741 src/gui/gui.cpp:2753 src/gui/gui.cpp:2963 +msgid "no instruments available" +msgstr "нет доступных инструментов" + +#: src/gui/gui.cpp:2751 +msgid "paste with ins (background)" +msgstr "вставить поверх с инстр. (с заменой существующего)" + +#: src/gui/gui.cpp:2763 +msgid "paste flood" +msgstr "вставить с цикл. повт. буфера (до конца патт.)" + +#: src/gui/gui.cpp:2764 +msgid "paste overflow" +msgstr "вставить (с возможным переходом в след. паттерн)" + +#: src/gui/gui.cpp:2773 +msgid "operation mask..." +msgstr "маска операций..." + +#: src/gui/gui.cpp:2780 +msgid "pull delete" +msgstr "удал. с подтяг. след. строк" + +#: src/gui/gui.cpp:2784 +msgid "insert" +msgstr "вставка пустой строки" + +#: src/gui/gui.cpp:2792 +msgid "transpose (note)" +msgstr "транспонирование (нота)" + +#: src/gui/gui.cpp:2796 +msgid "transpose (value)" +msgstr "транспонирование (других параметров)" + +#: src/gui/gui.cpp:2808 src/gui/gui.cpp:3052 +msgid "invert values" +msgstr "инверсия значений" + +#: src/gui/gui.cpp:2824 +msgid "collapse/expand" +msgstr "сжать/расширить" + +#: src/gui/gui.cpp:2829 +msgid "input latch" +msgstr "буфер ввода" + +#: src/gui/gui.cpp:2856 +msgid "" +"&&: selected instrument\n" +"..: no instrument" +msgstr "" +"&&: выбранный инструмент\n" +"..: без инструмента" + +#: src/gui/gui.cpp:2910 +msgid "Set" +msgstr "Очистить" + +#: src/gui/gui.cpp:2930 +msgid "note up" +msgstr "на полутон вверх" + +#: src/gui/gui.cpp:2931 +msgid "note down" +msgstr "на полутон вниз" + +#: src/gui/gui.cpp:2932 +msgid "octave up" +msgstr "на октаву вверх" + +#: src/gui/gui.cpp:2933 +msgid "octave down" +msgstr "на октаву вниз" + +#: src/gui/gui.cpp:2935 +msgid "values up" +msgstr "параметры вверх" + +#: src/gui/gui.cpp:2936 +msgid "values down" +msgstr "параметры вниз" + +#: src/gui/gui.cpp:2937 +msgid "values up (+16)" +msgstr "параметры вверх (+16)" + +#: src/gui/gui.cpp:2938 +msgid "values down (-16)" +msgstr "параметры вниз (-16)" + +#: src/gui/gui.cpp:2941 +msgid "transpose" +msgstr "транспонировать" + +#: src/gui/gui.cpp:2949 +msgid "Notes" +msgstr "Ноты" + +#: src/gui/gui.cpp:2954 +msgid "Values" +msgstr "Параметры" + +#: src/gui/gui.cpp:2961 +msgid "change instrument..." +msgstr "заменить инструмент..." + +#: src/gui/gui.cpp:2974 +msgid "gradient/fade..." +msgstr "градиент/затухание..." + +#: src/gui/gui.cpp:2991 src/gui/gui.cpp:3036 +msgid "Nibble mode" +msgstr "Режим тетрад" + +#: src/gui/gui.cpp:3000 +msgid "Go ahead" +msgstr "Применить" + +#: src/gui/gui.cpp:3006 src/gui/insEdit.cpp:7604 +msgid "scale..." +msgstr "масштабировать..." + +#: src/gui/gui.cpp:3011 +msgid "Scale" +msgstr "Масштабировать" + +#: src/gui/gui.cpp:3017 src/gui/insEdit.cpp:7632 +msgid "randomize..." +msgstr "заполнить случайными значениями..." + +#: src/gui/gui.cpp:3018 +msgid "Minimum" +msgstr "Нижняя граница" + +#: src/gui/gui.cpp:3027 +msgid "Maximum" +msgstr "Верхняя граница" + +#: src/gui/gui.cpp:3056 +msgid "flip selection" +msgstr "перевернуть выделенную область" + +#: src/gui/gui.cpp:3059 +msgid "collapse/expand amount##CollapseAmount" +msgstr "коэффициент сжатия/расширения##CollapseAmount" + +#: src/gui/gui.cpp:3068 +msgid "collapse pattern" +msgstr "сжать паттерн" + +#: src/gui/gui.cpp:3069 +msgid "expand pattern" +msgstr "расширить паттерн" + +#: src/gui/gui.cpp:3074 +msgid "collapse song" +msgstr "сжать трек" + +#: src/gui/gui.cpp:3075 +msgid "expand song" +msgstr "расширить трек" + +#: src/gui/gui.cpp:3080 +msgid "find/replace" +msgstr "найти/заменить" + +#: src/gui/gui.cpp:3094 src/gui/gui.cpp:5807 src/gui/gui.cpp:7362 +#, c-format +msgid "could NOT save layout! %s" +msgstr "Не получилось сохранить компоновку окон! %s" + +#: src/gui/gui.cpp:3106 +#, c-format +msgid "could NOT load layout! %s" +msgstr "" + +#: src/gui/gui.cpp:3568 +msgid "" +"Furnace has been started in Safe Mode.\n" +"this means that:\n" +"\n" +"- software rendering is being used\n" +"- audio output may not work\n" +"- font loading is disabled\n" +"\n" +"check any settings which may have made Furnace start up in this mode.\n" +"font loading is one of these." +msgstr "" +"Furnace был запущен в безопасном режиме.\n" +"это означает:\n" +"\n" +"- используется программная отрисовка\n" +"- может не работать вывод звука\n" +"- отключена загрузка шрифтов\n" +"\n" +"проверьте, какие настройки могли привести к запуску программы в этом " +"режиме.\n" +"загрузка шрифтов может быть одной из таких." + +#: src/gui/gui.cpp:4053 +msgid "can't keep going without graphics! Furnace will quit now." +msgstr "" + +#: src/gui/gui.cpp:4191 +msgid "file" +msgstr "" + +#: src/gui/gui.cpp:4192 +msgid "new..." +msgstr "новый..." + +#: src/gui/gui.cpp:4199 +msgid "open..." +msgstr "открыть..." + +#: src/gui/gui.cpp:4206 +msgid "open recent" +msgstr "открыть недавние" + +#: src/gui/gui.cpp:4222 +msgid "nothing here yet" +msgstr "пока здесь ничего нет" + +#: src/gui/gui.cpp:4225 +msgid "clear history" +msgstr "очистить историю" + +#: src/gui/gui.cpp:4226 +msgid "Are you sure you want to clear the recent file list?" +msgstr "Вы уверены, что хотите очистить список недавних файлов?" + +#: src/gui/gui.cpp:4241 +msgid "save as..." +msgstr "сохранить как..." + +#: src/gui/gui.cpp:4246 src/gui/gui.cpp:4287 +msgid "export audio..." +msgstr "экспорт аудио..." + +#: src/gui/gui.cpp:4250 src/gui/gui.cpp:4291 +msgid "export VGM..." +msgstr "экспорт VGM..." + +#: src/gui/gui.cpp:4259 src/gui/gui.cpp:4300 +msgid "export ZSM..." +msgstr "экспорт ZSM..." + +#: src/gui/gui.cpp:4269 src/gui/gui.cpp:4310 +msgid "export Amiga validation data..." +msgstr "экспорт проверочного файла для компьютера Amiga..." + +#: src/gui/gui.cpp:4274 src/gui/gui.cpp:4315 +msgid "export text..." +msgstr "экспорт текста..." + +#: src/gui/gui.cpp:4278 src/gui/gui.cpp:4319 +msgid "export command stream..." +msgstr "экспорт потока команд..." + +#: src/gui/gui.cpp:4282 src/gui/gui.cpp:4323 +msgid "export .dmf..." +msgstr "" + +#: src/gui/gui.cpp:4328 +msgid "export..." +msgstr "экспорт..." + +#: src/gui/gui.cpp:4334 +msgid "manage chips" +msgstr "менеджер чипов" + +#: src/gui/gui.cpp:4338 +msgid "add chip..." +msgstr "добавить чип..." + +#: src/gui/gui.cpp:4343 src/gui/sysManager.cpp:138 +#, c-format +msgid "cannot add chip! (%s)" +msgstr "не могу добавить чип! (%s)" + +#: src/gui/gui.cpp:4355 +msgid "configure chip..." +msgstr "настроить чип..." + +#: src/gui/gui.cpp:4365 +msgid "change chip..." +msgstr "сменить чип..." + +#: src/gui/gui.cpp:4367 src/gui/gui.cpp:4390 +msgid "Preserve channel positions" +msgstr "Сохранить положение каналов" + +#: src/gui/gui.cpp:4379 src/gui/sysManager.cpp:109 +#, c-format +msgid "cannot change chip! (%s)" +msgstr "" + +#: src/gui/gui.cpp:4388 +msgid "remove chip..." +msgstr "убрать чип..." + +#: src/gui/gui.cpp:4394 +#, c-format +msgid "cannot remove chip! (%s)" +msgstr "" + +#: src/gui/gui.cpp:4408 +msgid "open built-in assets directory" +msgstr "открыть внутреннюю папку с ресурсами" + +#: src/gui/gui.cpp:4414 +msgid "restore backup" +msgstr "загрузить резервную копию" + +#: src/gui/gui.cpp:4418 +msgid "exit..." +msgstr "выйти..." + +#: src/gui/gui.cpp:4426 +msgid "edit" +msgstr "" + +#: src/gui/gui.cpp:4434 +msgid "clear..." +msgstr "очистить..." + +#: src/gui/gui.cpp:4439 +msgid "settings" +msgstr "" + +#: src/gui/gui.cpp:4441 +msgid "full screen" +msgstr "полноэкранный режим" + +#: src/gui/gui.cpp:4445 +msgid "lock layout" +msgstr "зафиксировать компоновку окон" + +#: src/gui/gui.cpp:4448 +msgid "pattern visualizer" +msgstr "визуализатор эффектов в паттерне" + +#: src/gui/gui.cpp:4454 +msgid "reset layout" +msgstr "сбросить компоновку окон" + +#: src/gui/gui.cpp:4458 +msgid "switch to mobile view" +msgstr "переключиться на мобильный интерфейс" + +#: src/gui/gui.cpp:4462 +msgid "user systems..." +msgstr "пользовательские системы..." + +#: src/gui/gui.cpp:4465 +msgid "settings..." +msgstr "настройки..." + +#: src/gui/gui.cpp:4471 +msgid "Window" +msgstr "" + +#: src/gui/gui.cpp:4471 +msgid "window" +msgstr "" + +#: src/gui/gui.cpp:4472 +msgid "song" +msgstr "трек" + +#: src/gui/gui.cpp:4473 +msgid "song comments" +msgstr "комментарии трека" + +#: src/gui/gui.cpp:4474 +msgid "song information" +msgstr "о треке" + +#: src/gui/gui.cpp:4475 +msgid "subsongs" +msgstr "подпесни" + +#: src/gui/gui.cpp:4477 +msgid "channels" +msgstr "каналы" + +#: src/gui/gui.cpp:4478 +msgid "chip manager" +msgstr "менеджер чипов" + +#: src/gui/gui.cpp:4479 +msgid "orders" +msgstr "матрица паттернов" + +#: src/gui/gui.cpp:4481 +msgid "pattern manager" +msgstr "менеджер паттернов" + +#: src/gui/gui.cpp:4482 +msgid "mixer" +msgstr "микшер" + +#: src/gui/gui.cpp:4483 +msgid "compatibility flags" +msgstr "флаги совместимости" + +#: src/gui/gui.cpp:4486 src/gui/gui.cpp:4488 +msgid "assets" +msgstr "ресурсы" + +#: src/gui/gui.cpp:4490 +msgid "instruments" +msgstr "инструменты" + +#: src/gui/gui.cpp:4491 +msgid "samples" +msgstr "сэмплы" + +#: src/gui/gui.cpp:4492 +msgid "wavetables" +msgstr "волновые таблицы" + +#: src/gui/gui.cpp:4495 +msgid "instrument editor" +msgstr "редактор инструментов" + +#: src/gui/gui.cpp:4496 +msgid "sample editor" +msgstr "редактор сэмплов" + +#: src/gui/gui.cpp:4497 +msgid "wavetable editor" +msgstr "редактор волновых таблиц" + +#: src/gui/gui.cpp:4500 +msgid "visualizers" +msgstr "визуализаторы" + +#: src/gui/gui.cpp:4501 +msgid "oscilloscope (master)" +msgstr "осциллограф" + +#: src/gui/gui.cpp:4502 +msgid "oscilloscope (per-channel)" +msgstr "осциллографы (для отдельных каналов)" + +#: src/gui/gui.cpp:4503 +msgid "oscilloscope (X-Y)" +msgstr "осциллограф (X-Y)" + +#: src/gui/gui.cpp:4504 +msgid "volume meter" +msgstr "измеритель громкости" + +#: src/gui/gui.cpp:4507 +msgid "tempo" +msgstr "темп" + +#: src/gui/gui.cpp:4508 +msgid "clock" +msgstr "часы" + +#: src/gui/gui.cpp:4509 +msgid "grooves" +msgstr "ритм-паттерны" + +#: src/gui/gui.cpp:4510 +msgid "speed" +msgstr "скорость" + +#: src/gui/gui.cpp:4514 +msgid "log viewer" +msgstr "просмотр логов" + +#: src/gui/gui.cpp:4515 +msgid "register view" +msgstr "регистры" + +#: src/gui/gui.cpp:4516 +msgid "statistics" +msgstr "статистика" + +#: src/gui/gui.cpp:4517 +msgid "memory composition" +msgstr "содержание памяти" + +#: src/gui/gui.cpp:4521 src/gui/gui.cpp:4529 +msgid "effect list" +msgstr "список эффектов" + +#: src/gui/gui.cpp:4522 +msgid "play/edit controls" +msgstr "управление редактированием/воспроизведением" + +#: src/gui/gui.cpp:4523 +msgid "piano/input pad" +msgstr "клавиатура пианино/панель ввода" + +#: src/gui/gui.cpp:4524 +msgid "spoiler" +msgstr "спойлер" + +#: src/gui/gui.cpp:4528 +msgid "Help" +msgstr "" + +#: src/gui/gui.cpp:4528 +msgid "help" +msgstr "" + +#: src/gui/gui.cpp:4530 +msgid "debug menu" +msgstr "отладка" + +#: src/gui/gui.cpp:4531 +msgid "inspector" +msgstr "отладка ImGUI" + +#: src/gui/gui.cpp:4532 +msgid "panic" +msgstr "паника" + +#: src/gui/gui.cpp:4533 +msgid "about..." +msgstr "о программе..." + +#: src/gui/gui.cpp:4548 +#, c-format +msgid "| Speed %d:%d" +msgstr "| Скорость %d:%d" + +#: src/gui/gui.cpp:4550 +#, c-format +msgid "| Speed %d" +msgstr "| Скорость %d" + +#: src/gui/gui.cpp:4552 +msgid "| Groove" +msgstr "| Ритм-паттерн" + +#: src/gui/gui.cpp:4555 +#, c-format +msgid " @ %gHz (%g BPM) " +msgstr " @ %g Гц (%g BPM) " + +#: src/gui/gui.cpp:4558 +#, c-format +msgid "| Order %.2X/%.2X " +msgstr "| Строка матр. патт. %.2X/%.2X " + +#: src/gui/gui.cpp:4560 +#, c-format +msgid "| Order %d/%d " +msgstr "| Строка матр. патт. %d/%d " + +#: src/gui/gui.cpp:4564 +#, c-format +msgid "| Row %.2X/%.2X " +msgstr "| Строка %.2X/%.2X " + +#: src/gui/gui.cpp:4566 +#, c-format +msgid "| Row %d/%d " +msgstr "| Строка %d/%d " + +#: src/gui/gui.cpp:4569 +msgid "| " +msgstr "" + +#: src/gui/gui.cpp:4572 +msgid "Don't you have anything better to do?" +msgstr "Вам точно больше нечем заняться?" + +#: src/gui/gui.cpp:4582 +#, c-format +msgid "%d year " +msgid_plural "%d years " +msgstr[0] "%d год " +msgstr[1] "%d года " +msgstr[2] "%d лет " + +#: src/gui/gui.cpp:4583 +#, c-format +msgid "%d month " +msgid_plural "%d months " +msgstr[0] "%d месяц " +msgstr[1] "%d месяца " +msgstr[2] "%d месяцев " + +#: src/gui/gui.cpp:4584 +#, c-format +msgid "%d day " +msgid_plural "%d days " +msgstr[0] "%d день " +msgstr[1] "%d дня " +msgstr[2] "%d дней " + +#: src/gui/gui.cpp:4609 +msgid "Note off (cut)" +msgstr "\"Отпускание клавиши\" (резкое)" + +#: src/gui/gui.cpp:4611 +msgid "Note off (release)" +msgstr "\"Отпускание клавиши\" (с включением фазы затухания огибающей)" + +#: src/gui/gui.cpp:4613 +msgid "Macro release only" +msgstr "\"Отпускание клавиши\" (только для макросов)" + +#: src/gui/gui.cpp:4615 +#, c-format +msgid "Note on: %s" +msgstr "Нота: %s" + +#: src/gui/gui.cpp:4623 +#, c-format +msgid "Ins %d: " +msgstr "Инструмент %d: <недейств.>" + +#: src/gui/gui.cpp:4626 +#, c-format +msgid "Ins %d: %s" +msgstr "Инструмент %d: %s" + +#: src/gui/gui.cpp:4635 +#, c-format +msgid "Set volume: %d (%.2X, INVALID!)" +msgstr "Громкость: %d (%.2X, НЕДЕЙСТВИТЕЛЬНА!)" + +#: src/gui/gui.cpp:4638 +#, c-format +msgid "Set volume: %d (%.2X, %d%%)" +msgstr "Громкость: %d (%.2X, %d%%)" + +#: src/gui/gui.cpp:4660 +msgid "| modified" +msgstr "| изменено" + +#: src/gui/gui.cpp:4825 src/gui/gui.cpp:4828 +msgid "System File Dialog Pending" +msgstr "" + +#: src/gui/gui.cpp:4941 +msgid "" +"there was an error in the file dialog! you may want to report this issue " +"to:\n" +"https://github.com/tildearrow/furnace/issues\n" +"check the Log Viewer (window > log viewer) for more information.\n" +"\n" +"for now please disable the system file picker in Settings > General." +msgstr "" +"возникла ошибка в окне файлового диалога! возможно, вы захотите сообщить об " +"ошибке:\n" +"https://github.com/tildearrow/furnace/issues\n" +"вы можете открыть просмотр логов (окно > просмотр логов) для получения " +"дополнительной информации.\n" +"\n" +"пока можете отключить файловый диалог ОС в настройки > основные." + +#: src/gui/gui.cpp:4944 +msgid "can't do anything without Storage permissions!" +msgstr "не могу ничего сделать без разрешения \"Хранилище\"!" + +#: src/gui/gui.cpp:4946 +msgid "" +"Zenity/KDialog not available!\n" +"please install one of these, or disable the system file picker in Settings > " +"General." +msgstr "" +"Zenity/KDialog недоступны!\n" +"пожалуйста, установите один из них, или отключите файловый диалог ОС в " +"настройки > основные." + +#: src/gui/gui.cpp:5082 +msgid "" +"error while saving instrument! only the following instrument types are " +"supported:\n" +"- FM (OPN)\n" +"- SN76489/Sega PSG\n" +"- Game Boy\n" +"- PC Engine\n" +"- NES\n" +"- C64\n" +"- FM (OPLL)\n" +"- FDS" +msgstr "" +"ошибка при сохранении инструмента! поддерживаются только следующие типы " +"инструментов:\n" +"- FM (OPN)\n" +"- SN76489/Sega PSG\n" +"- Game Boy\n" +"- PC Engine\n" +"- NES\n" +"- C64\n" +"- FM (OPLL)\n" +"- FDS" + +#: src/gui/gui.cpp:5110 +msgid "there were some errors while loading samples:\n" +msgstr "" + +#: src/gui/gui.cpp:5155 src/gui/gui.cpp:6339 +msgid "...but you haven't selected a sample!" +msgstr "...но вы не выбрали сэмпл!" + +#: src/gui/gui.cpp:5170 src/gui/gui.cpp:5179 +msgid "could not save sample! open Log Viewer for more information." +msgstr "" +"не удалось сохранить сэмпл! откройте просмотрщик логов для получения " +"дополнительной информации." + +#: src/gui/gui.cpp:5198 +msgid "there were some warnings/errors while loading instruments:\n" +msgstr "" + +#: src/gui/gui.cpp:5204 +#, c-format +msgid "> %s: cannot load instrument! (%s)\n" +msgstr "" + +#: src/gui/gui.cpp:5222 src/gui/gui.cpp:5276 +#, c-format +msgid "cannot load instrument! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5228 +msgid "" +"congratulations! you managed to load nothing.\n" +"you are entitled to a bug report." +msgstr "" +"поздравляю! вам удалось загрузить ничто.\n" +"вы приглашаетесь к написанию отчёта об ошибке." + +#: src/gui/gui.cpp:5269 src/gui/gui.cpp:6243 +msgid "...but you haven't selected an instrument!" +msgstr "...но вы не выбрали инструмент!" + +#: src/gui/gui.cpp:5281 +msgid "there were some errors while loading wavetables:\n" +msgstr "при загрузке волновых таблиц возникли следующие ошибки:\n" + +#: src/gui/gui.cpp:5290 src/gui/gui.cpp:5300 src/gui/gui.cpp:5319 +#, c-format +msgid "cannot load wavetable! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5327 +msgid "...but you haven't selected a wavetable!" +msgstr "...но вы не выбрали волновую таблицу!" + +#: src/gui/gui.cpp:5342 src/gui/gui.cpp:5363 src/gui/gui.cpp:5387 +#: src/gui/gui.cpp:5408 +msgid "could not open file!" +msgstr "не удалось открыть файл!" + +#: src/gui/gui.cpp:5350 +#, c-format +msgid "could not write VGM! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5371 +#, c-format +msgid "Could not write ZSM! (%s)" +msgstr "Не удалось записать файл ZSM! (%s)" + +#: src/gui/gui.cpp:5395 +#, c-format +msgid "could not write text! (%s)" +msgstr "не удалось записать текстовый файл! (%s)" + +#: src/gui/gui.cpp:5416 +#, c-format +msgid "could not write command stream! (%s)" +msgstr "не удалось записать файл с потоком команд! (%s)" + +#: src/gui/gui.cpp:5440 +msgid "could not import user presets!" +msgstr "не удалось импортировать пользовательские пресеты!" + +#: src/gui/gui.cpp:5445 src/gui/gui.cpp:5462 +#, c-format +msgid "could not import user presets! (%s)" +msgstr "не удалось импортировать пользовательские пресеты! (%s)" + +#: src/gui/gui.cpp:5483 +#, c-format +msgid "You opened: %s" +msgstr "Вы открыли: %s" + +#: src/gui/gui.cpp:5486 +msgid "You opened:" +msgstr "Вы открыли:" + +#: src/gui/gui.cpp:5494 +#, c-format +msgid "You saved: %s" +msgstr "Вы сохранили: %s" + +#: src/gui/gui.cpp:5515 src/gui/gui.cpp:5636 src/gui/gui.cpp:5637 +#: src/gui/insEdit.cpp:7520 +msgid "Error" +msgstr "Ошибка" + +#: src/gui/gui.cpp:5520 src/gui/gui.cpp:6177 src/gui/gui.cpp:6178 +msgid "Select Instrument" +msgstr "" + +#: src/gui/gui.cpp:5525 src/gui/gui.cpp:6256 src/gui/gui.cpp:6257 +msgid "Import Raw Sample" +msgstr "" + +#: src/gui/gui.cpp:5540 src/gui/gui.cpp:5593 src/gui/gui.cpp:5594 +msgid "Rendering..." +msgstr "" + +#: src/gui/gui.cpp:5595 +msgid "Please wait..." +msgstr "Пожалуйста, подождите..." + +#: src/gui/gui.cpp:5596 +msgid "Abort" +msgstr "Прервать" + +#: src/gui/gui.cpp:5638 +#, c-format +msgid "%s" +msgstr "%s" + +#: src/gui/gui.cpp:5868 +msgid "Erasing" +msgstr "Удалить:" + +#: src/gui/gui.cpp:5871 +msgid "All subsongs" +msgstr "Все подпесни" + +#: src/gui/gui.cpp:5878 +msgid "Current subsong" +msgstr "Текущую подпесню" + +#: src/gui/gui.cpp:5945 +msgid "Optimization" +msgstr "Оптимизировать:" + +#: src/gui/gui.cpp:5948 src/gui/patManager.cpp:36 +msgid "De-duplicate patterns" +msgstr "Удалить дубликаты паттернов" + +#: src/gui/gui.cpp:5957 +msgid "Remove unused instruments" +msgstr "Удалить неиспользуемые инструменты" + +#: src/gui/gui.cpp:5970 +msgid "Remove unused samples" +msgstr "Удалить неиспользуемые сэмплы" + +#: src/gui/gui.cpp:5987 +msgid "Never mind! Cancel" +msgstr "Не надо! Отмена" + +#: src/gui/gui.cpp:6066 +msgid "Drum kit mode:" +msgstr "Режим создания набора ударных:" + +#: src/gui/gui.cpp:6070 +msgid "12 samples per octave" +msgstr "12 сэмплов на октаву" + +#: src/gui/gui.cpp:6075 +msgid "Starting octave" +msgstr "Начальная октава" + +#: src/gui/gui.cpp:6095 +msgid "Drum Kit" +msgstr "" + +#: src/gui/gui.cpp:6181 +msgid "this is an instrument bank! select which one to use:" +msgstr "это банк инструментов! выберите, какой вы хотите использовать:" + +#: src/gui/gui.cpp:6184 +msgid "this is an instrument bank! select which ones to load:" +msgstr "это банк инструментов! выберите, какой вы хотите загрузить" + +#: src/gui/gui.cpp:6258 +msgid "Data type:" +msgstr "Тип данных:" + +#: src/gui/gui.cpp:6285 +msgid "(will be mixed down to mono)" +msgstr "(будет сведено в моно)" + +#: src/gui/gui.cpp:6286 +msgid "Unsigned" +msgstr "Беззнаковый" + +#: src/gui/gui.cpp:6290 +msgid "Big endian" +msgstr "Обратный порядок байтов (Big endian)" + +#: src/gui/gui.cpp:6298 +msgid "Swap nibbles" +msgstr "Поменять местами тетрады" + +#: src/gui/gui.cpp:6302 +msgid "Swap words" +msgstr "Поменять местами машинные слова" + +#: src/gui/gui.cpp:6306 +msgid "Encoding:" +msgstr "Кодировка:" + +#: src/gui/gui.cpp:6319 +msgid "Reverse bit order" +msgstr "Обратный порядок битов" + +#: src/gui/gui.cpp:6361 +msgid "Error! No string provided!" +msgstr "Ошибка! Не предоставлена строка!" + +#: src/gui/gui.cpp:6683 +msgid "it appears I couldn't load these fonts. any setting you can check?" +msgstr "кажется, я не могу загрузить эти шрифты. проверьте настройки?" + +#: src/gui/gui.cpp:6863 src/gui/gui.cpp:6971 +msgid "" +"could not init renderer!\n" +"falling back to software renderer. please restart Furnace." +msgstr "" +"не получилось инициализировать движок отрисовки!\n" +"перехожу на программную отрисовку. пожалуйста, перезапустите Furnace." + +#: src/gui/gui.cpp:6865 src/gui/gui.cpp:6973 +#, c-format +msgid "" +"could not init renderer! %s\n" +"falling back to software renderer. please restart Furnace." +msgstr "" +"не получилось инициализировать движок отрисовки! %s\n" +"перехожу на программную отрисовку. пожалуйста, перезапустите Furnace." + +#: src/gui/gui.cpp:6870 src/gui/gui.cpp:6978 +msgid "could not init renderer!" +msgstr "" + +#: src/gui/gui.cpp:6881 +#, c-format +msgid "could not open window! %s" +msgstr "не удалось открыть окно! %s" + +#: src/gui/gui.cpp:6886 +msgid "" +"\n" +"falling back to software renderer. please restart Furnace." +msgstr "" +"\n" +"перехожу на программную отрисовку. пожалуйста, перезапустите Furnace." + +#: src/gui/gui.cpp:7034 +msgid "Size column to fit###SizeOne" +msgstr "Масштабировать столбец по размеру###SizeOne" + +#: src/gui/gui.cpp:7036 +msgid "Size all columns to fit###SizeAll" +msgstr "Масштабировать все столбцы по размеру###SizeAll" + +#: src/gui/gui.cpp:7038 +msgid "Size all columns to default###SizeAll" +msgstr "Масштабировать все столбцы по умолчанию###SizeAll" + +#: src/gui/gui.cpp:7040 +msgid "Reset order###ResetOrder" +msgstr "Сбросить порядок###ResetOrder" + +#: src/gui/gui.cpp:7042 +msgid "(Main menu bar)" +msgstr "(полоса главного меню)" + +#: src/gui/gui.cpp:7044 +msgid "(Popup)" +msgstr "(Всплывающее окно)" + +#: src/gui/gui.cpp:7046 +msgid "(Untitled)" +msgstr "(Без названия)" + +#: src/gui/gui.cpp:7048 +msgid "Hide tab bar###HideTabBar" +msgstr "Скрыть полосу с вкладками###HideTabBar" + +#: src/gui/gui.cpp:7052 +msgid "LocaleSettings: ccjk" +msgstr "" + +#: src/gui/gui.cpp:7564 +msgid "Unsaved changes! Save changes before quitting?" +msgstr "Остались несохранённые изменения! Сохранить их перед выходом?" + +#: src/gui/sysManager.cpp:42 +msgid "Preserve channel order" +msgstr "Сохранить порядок каналов" + +#: src/gui/sysManager.cpp:44 +msgid "Clone channel data" +msgstr "Клонировать данные каналов" + +#: src/gui/sysManager.cpp:46 +msgid "Clone at end" +msgstr "Клонировать в конец" + +#: src/gui/sysManager.cpp:56 +msgid "Actions" +msgstr "Действия" + +#: src/gui/sysManager.cpp:69 +msgid "(drag to swap chips)" +msgstr "(перетащите, чтобы поменять местами каналы)" + +#: src/gui/sysManager.cpp:90 +msgid "Clone##SysDup" +msgstr "Клонировать##SysDup" + +#: src/gui/sysManager.cpp:92 +#, c-format +msgid "cannot clone chip! (%s)" +msgstr "" + +#: src/gui/sysManager.cpp:98 +msgid "Change##SysChange" +msgstr "Сменить##SysChange" + +#: src/gui/sysManager.cpp:120 +msgid "Are you sure you want to remove this chip?" +msgstr "Вы действительно хотите удалить этот чип?" + +#: src/gui/patManager.cpp:43 +msgid "Re-arrange patterns" +msgstr "Отсортировать паттерны" + +#: src/gui/patManager.cpp:50 +msgid "Sort orders" +msgstr "Отсортировать столбцы матрицы паттернов" + +#: src/gui/patManager.cpp:57 +msgid "Make patterns unique" +msgstr "Сделать паттерны уникальными" + +#: src/gui/patManager.cpp:103 +#, c-format +msgid "" +"Pattern %.2X\n" +"- not allocated" +msgstr "" +"Паттерн %.2X\n" +"- не используется" + +#: src/gui/patManager.cpp:105 +#, c-format +msgid "" +"Pattern %.2X\n" +"- use count: %d (%.0f%%)\n" +"\n" +"right-click to erase" +msgstr "" +"Паттерн %.2X\n" +"- сколько раз встречается в треке: %d (%.0f%%)\n" +"\n" +"ПКМ, чтобы удалить" + +#: src/gui/insEdit.cpp:39 +msgid "Down Down Down" +msgstr "Вниз Вниз Вниз" + +#: src/gui/insEdit.cpp:40 +msgid "Down." +msgstr "Вниз." + +#: src/gui/insEdit.cpp:41 +msgid "Down Up Down Up" +msgstr "Вниз Вверх Вниз Вверх" + +#: src/gui/insEdit.cpp:42 +msgid "Down UP" +msgstr "Вниз ВВЕРХ" + +#: src/gui/insEdit.cpp:43 +msgid "Up Up Up" +msgstr "Вверх Вверх Вверх" + +#: src/gui/insEdit.cpp:44 +msgid "Up." +msgstr "Вверх." + +#: src/gui/insEdit.cpp:45 +msgid "Up Down Up Down" +msgstr "Вверх Вниз Вверх Вниз" + +#: src/gui/insEdit.cpp:46 +msgid "Up DOWN" +msgstr "Вверх ВНИЗ" + +#: src/gui/insEdit.cpp:50 +msgid "Algorithm" +msgstr "Алгоритм" + +#: src/gui/insEdit.cpp:50 +msgid "Feedback" +msgstr "Обр. связь." + +#: src/gui/insEdit.cpp:50 +msgid "LFO > Freq" +msgstr "ГНЧ > част." + +#: src/gui/insEdit.cpp:50 +msgid "LFO > Amp" +msgstr "ГНЧ > ампл." + +#: src/gui/insEdit.cpp:50 +msgid "Decay 2" +msgstr "Спад 2" + +#: src/gui/insEdit.cpp:50 +msgid "EnvScale" +msgstr "Масш. огиб." + +#: src/gui/insEdit.cpp:50 +msgid "Multiplier" +msgstr "Множитель" + +#: src/gui/insEdit.cpp:50 +msgid "Detune 2" +msgstr "Расстройка 2" + +#: src/gui/insEdit.cpp:50 +msgid "AM" +msgstr "" + +#: src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:5438 src/gui/insEdit.cpp:6516 +msgid "AM Depth" +msgstr "Глубина АМ" + +#: src/gui/insEdit.cpp:50 +msgid "Vibrato Depth" +msgstr "Глубина вибрато" + +#: src/gui/insEdit.cpp:50 +msgid "Sustained" +msgstr "Сустейн" + +#: src/gui/insEdit.cpp:50 +msgid "Level Scaling" +msgstr "Масштаб. громкости" + +#: src/gui/insEdit.cpp:50 +msgid "Vibrato" +msgstr "Вибрато" + +#: src/gui/insEdit.cpp:50 +msgid "Scale Rate" +msgstr "Измен. коэфф. масш. в зав. от част." + +#: src/gui/insEdit.cpp:50 +msgid "OP2 Half Sine" +msgstr "полу-синус для ОП2" + +#: src/gui/insEdit.cpp:50 +msgid "OP1 Half Sine" +msgstr "полу-синус для ОП1" + +#: src/gui/insEdit.cpp:50 +msgid "EnvShift" +msgstr "Сдвиг огиб." + +#: src/gui/insEdit.cpp:50 +msgid "Reverb" +msgstr "Реверб" + +#: src/gui/insEdit.cpp:50 +msgid "Fine" +msgstr "Расстройка" + +#: src/gui/insEdit.cpp:50 +msgid "LFO2 > Freq" +msgstr "ОНЧ2 > част." + +#: src/gui/insEdit.cpp:50 +msgid "LFO2 > Amp" +msgstr "ОНЧ2 > част." + +#: src/gui/insEdit.cpp:56 src/gui/insEdit.cpp:68 src/gui/insEdit.cpp:7391 +msgid "OP4 Noise Mode" +msgstr "Режим шума ОП4" + +#: src/gui/insEdit.cpp:57 +msgid "Envelope Delay" +msgstr "Задержка огибающей" + +#: src/gui/insEdit.cpp:58 src/gui/insEdit.cpp:70 +msgid "Output Level" +msgstr "Громкость вывода" + +#: src/gui/insEdit.cpp:59 +msgid "Modulation Input Level" +msgstr "Сила модуляции на входе" + +#: src/gui/insEdit.cpp:60 +msgid "Left Output" +msgstr "Вывод звука влево" + +#: src/gui/insEdit.cpp:61 +msgid "Right Output" +msgstr "Вывод звука вправо" + +#: src/gui/insEdit.cpp:62 +msgid "Coarse Tune (semitones)" +msgstr "Грубая расстройка (полутоны)" + +#: src/gui/insEdit.cpp:64 +msgid "Fixed Frequency Mode" +msgstr "Режим фиксированной частоты" + +#: src/gui/insEdit.cpp:69 +msgid "Env. Delay" +msgstr "Задержка огибающей" + +#: src/gui/insEdit.cpp:71 +msgid "ModInput" +msgstr "Мод. на входе" + +#: src/gui/insEdit.cpp:72 +msgid "Left" +msgstr "Лево" + +#: src/gui/insEdit.cpp:73 +msgid "Right" +msgstr "Право" + +#: src/gui/insEdit.cpp:74 +msgid "Tune" +msgstr "Груб. расстр." + +#: src/gui/insEdit.cpp:76 src/gui/insEdit.cpp:610 src/gui/insEdit.cpp:3792 +#: src/gui/insEdit.cpp:4554 src/gui/insEdit.cpp:4848 +msgid "Fixed" +msgstr "Фикс." + +#: src/gui/insEdit.cpp:98 src/gui/insEdit.cpp:117 src/gui/insEdit.cpp:136 +#: src/gui/insEdit.cpp:156 +msgid "User" +msgstr "Пользовательские" + +#: src/gui/insEdit.cpp:99 +msgid "1. Violin" +msgstr "1. Скрипка" + +#: src/gui/insEdit.cpp:100 src/gui/insEdit.cpp:138 src/gui/insEdit.cpp:158 +msgid "2. Guitar" +msgstr "2. Гитара" + +#: src/gui/insEdit.cpp:101 src/gui/insEdit.cpp:159 +msgid "3. Piano" +msgstr "3. Пианино" + +#: src/gui/insEdit.cpp:102 src/gui/insEdit.cpp:160 +msgid "4. Flute" +msgstr "4. Флейта" + +#: src/gui/insEdit.cpp:103 src/gui/insEdit.cpp:122 src/gui/insEdit.cpp:161 +msgid "5. Clarinet" +msgstr "5. Кларнет" + +#: src/gui/insEdit.cpp:104 +msgid "6. Oboe" +msgstr "6. Гобой" + +#: src/gui/insEdit.cpp:105 src/gui/insEdit.cpp:124 src/gui/insEdit.cpp:143 +#: src/gui/insEdit.cpp:163 +msgid "7. Trumpet" +msgstr "7. Тромбон" + +#: src/gui/insEdit.cpp:106 +msgid "8. Organ" +msgstr "8. Орган" + +#: src/gui/insEdit.cpp:107 +msgid "9. Horn" +msgstr "9. Рог" + +#: src/gui/insEdit.cpp:108 +msgid "10. Synth" +msgstr "10. Синтезатор" + +#: src/gui/insEdit.cpp:109 +msgid "11. Harpsichord" +msgstr "11. Клавесин" + +#: src/gui/insEdit.cpp:110 src/gui/insEdit.cpp:129 src/gui/insEdit.cpp:148 +msgid "12. Vibraphone" +msgstr "12. Вибрафон" + +#: src/gui/insEdit.cpp:111 +msgid "13. Synth Bass" +msgstr "13. Синтезаторный бас" + +#: src/gui/insEdit.cpp:112 +msgid "14. Acoustic Bass" +msgstr "14. Акустический бас" + +#: src/gui/insEdit.cpp:113 +msgid "15. Electric Guitar" +msgstr "15. Электрогитара" + +#: src/gui/insEdit.cpp:114 src/gui/insEdit.cpp:133 src/gui/insEdit.cpp:152 +#: src/gui/insEdit.cpp:172 src/gui/insEdit.cpp:3176 +msgid "Drums" +msgstr "Ударные" + +#: src/gui/insEdit.cpp:118 +msgid "1. Electric String" +msgstr "1. Электронный струнный инструмент" + +#: src/gui/insEdit.cpp:119 +msgid "2. Bow wow" +msgstr "2. Гам-гам" + +#: src/gui/insEdit.cpp:120 src/gui/insEdit.cpp:139 +msgid "3. Electric Guitar" +msgstr "3. Электрогитара" + +#: src/gui/insEdit.cpp:121 +msgid "4. Organ" +msgstr "4. Орган" + +#: src/gui/insEdit.cpp:123 +msgid "6. Saxophone" +msgstr "6. Саксофон" + +#: src/gui/insEdit.cpp:125 +msgid "8. Street Organ" +msgstr "8. Шарманка" + +#: src/gui/insEdit.cpp:126 +msgid "9. Synth Brass" +msgstr "9. Синтезаторный медный духовой" + +#: src/gui/insEdit.cpp:127 +msgid "10. Electric Piano" +msgstr "10. Электронное пианино" + +#: src/gui/insEdit.cpp:128 +msgid "11. Bass" +msgstr "11. Бас" + +#: src/gui/insEdit.cpp:130 +msgid "13. Chime" +msgstr "13. Колокольчик" + +#: src/gui/insEdit.cpp:131 +msgid "14. Tom Tom II" +msgstr "14. Там-там №2" + +#: src/gui/insEdit.cpp:132 +msgid "15. Noise" +msgstr "15. Шум" + +#: src/gui/insEdit.cpp:137 +msgid "1. Strings" +msgstr "1. Струнные" + +#: src/gui/insEdit.cpp:140 +msgid "4. Electric Piano" +msgstr "4. Электронное пианино" + +#: src/gui/insEdit.cpp:141 +msgid "5. Flute" +msgstr "5. Флейта" + +#: src/gui/insEdit.cpp:142 +msgid "6. Marimba" +msgstr "6. Маримба" + +#: src/gui/insEdit.cpp:144 +msgid "8. Harmonica" +msgstr "8. Гармоника" + +#: src/gui/insEdit.cpp:145 +msgid "9. Tuba" +msgstr "9. Туба" + +#: src/gui/insEdit.cpp:146 +msgid "10. Synth Brass" +msgstr "10. Синтезаторный медный духовой" + +#: src/gui/insEdit.cpp:147 +msgid "11. Short Saw" +msgstr "11. Короткая пила" + +#: src/gui/insEdit.cpp:149 +msgid "13. Electric Guitar 2" +msgstr "13. Электрогитара 2" + +#: src/gui/insEdit.cpp:150 +msgid "14. Synth Bass" +msgstr "14. Синтезаторный бас" + +#: src/gui/insEdit.cpp:151 +msgid "15. Sitar" +msgstr "15. Ситар" + +#: src/gui/insEdit.cpp:157 +msgid "1. Bell" +msgstr "1. Колокол" + +#: src/gui/insEdit.cpp:162 +msgid "6. Rattling Bell" +msgstr "6. Дребезжащий колокол" + +#: src/gui/insEdit.cpp:164 +msgid "8. Reed Organ" +msgstr "8. Свирель" + +#: src/gui/insEdit.cpp:165 +msgid "9. Soft Bell" +msgstr "9. \"Мягкий\" колокол" + +#: src/gui/insEdit.cpp:166 +msgid "10. Xylophone" +msgstr "10. Ксилофон" + +#: src/gui/insEdit.cpp:167 +msgid "11. Vibraphone" +msgstr "11. Вибрафон" + +#: src/gui/insEdit.cpp:168 +msgid "12. Brass" +msgstr "12. Медный духовой инструмент" + +#: src/gui/insEdit.cpp:169 +msgid "13. Bass Guitar" +msgstr "13. Бас-гитара" + +#: src/gui/insEdit.cpp:170 +msgid "14. Synth" +msgstr "14. Синтезатор" + +#: src/gui/insEdit.cpp:171 +msgid "15. Chorus" +msgstr "15. Хорус" + +#: src/gui/insEdit.cpp:178 src/gui/insEdit.cpp:189 +msgid "Half Sine" +msgstr "Половинка синуса" + +#: src/gui/insEdit.cpp:179 src/gui/insEdit.cpp:190 +msgid "Absolute Sine" +msgstr "Модуль синуса" + +#: src/gui/insEdit.cpp:180 +msgid "Quarter Sine" +msgstr "Четверть синуса" + +#: src/gui/insEdit.cpp:181 src/gui/insEdit.cpp:203 +msgid "Squished Sine" +msgstr "Сжатый синус" + +#: src/gui/insEdit.cpp:182 src/gui/insEdit.cpp:205 +msgid "Squished AbsSine" +msgstr "Сж. модуль синуса" + +#: src/gui/insEdit.cpp:184 src/gui/insEdit.cpp:195 +msgid "Derived Square" +msgstr "Производная от меандра" + +#: src/gui/insEdit.cpp:191 +msgid "Pulse Sine" +msgstr "Синус-меандр" + +#: src/gui/insEdit.cpp:192 +msgid "Sine (Even Periods)" +msgstr "Синус (чётные периоды)" + +#: src/gui/insEdit.cpp:193 +msgid "AbsSine (Even Periods)" +msgstr "Мод. синуса (чётн. пер.)" + +#: src/gui/insEdit.cpp:201 +msgid "Cut Sine" +msgstr "Обрезанный синус" + +#: src/gui/insEdit.cpp:202 +msgid "Cut Triangle" +msgstr "Обрез. треуг. волна" + +#: src/gui/insEdit.cpp:204 +msgid "Squished Triangle" +msgstr "Сжатая треуг. волна" + +#: src/gui/insEdit.cpp:206 +msgid "Squished AbsTriangle" +msgstr "Сж. мод. треуг. волны" + +#: src/gui/insEdit.cpp:224 +msgid "Noise disabled" +msgstr "Шум выключен" + +#: src/gui/insEdit.cpp:225 +msgid "Square + noise" +msgstr "Меандр + шум" + +#: src/gui/insEdit.cpp:226 +msgid "Ringmod from OP3 + noise" +msgstr "Кольцевая модуляция от ОП3 + шум" + +#: src/gui/insEdit.cpp:227 +msgid "" +"Ringmod from OP3 + double pitch ModInput\n" +"WARNING - has emulation issues; subject to change" +msgstr "" + +#: src/gui/insEdit.cpp:232 +msgid "Bitwise AND" +msgstr "" + +#: src/gui/insEdit.cpp:233 +msgid "Bitwise OR" +msgstr "" + +#: src/gui/insEdit.cpp:234 +msgid "Bitwise XOR" +msgstr "" + +#: src/gui/insEdit.cpp:239 src/gui/insEdit.cpp:390 +msgid "gate" +msgstr "старт/стоп огиб." + +#: src/gui/insEdit.cpp:240 src/gui/insEdit.cpp:391 +msgid "sync" +msgstr "синхр." + +#: src/gui/insEdit.cpp:241 src/gui/insEdit.cpp:392 +msgid "ring" +msgstr "кольц." + +#: src/gui/insEdit.cpp:327 +msgid "How did you even" +msgstr "Как вы вообще смогли" + +#: src/gui/insEdit.cpp:335 +msgid "triangle" +msgstr "треуг." + +#: src/gui/insEdit.cpp:336 src/gui/insEdit.cpp:5821 +msgid "saw" +msgstr "пила" + +#: src/gui/insEdit.cpp:337 src/gui/insEdit.cpp:5827 +msgid "pulse" +msgstr "прямоуг." + +#: src/gui/insEdit.cpp:338 src/gui/insEdit.cpp:344 src/gui/insEdit.cpp:373 +#: src/gui/insEdit.cpp:424 src/gui/insEdit.cpp:429 src/gui/insEdit.cpp:5833 +msgid "noise" +msgstr "шум" + +#: src/gui/insEdit.cpp:343 +msgid "tone" +msgstr "тон" + +#: src/gui/insEdit.cpp:345 +msgid "envelope" +msgstr "огибающая" + +#: src/gui/insEdit.cpp:350 +msgid "hold" +msgstr "удержание" + +#: src/gui/insEdit.cpp:351 +msgid "alternate" +msgstr "изм. направл." + +#: src/gui/insEdit.cpp:352 src/gui/insEdit.cpp:364 +msgid "direction" +msgstr "направление" + +#: src/gui/insEdit.cpp:353 src/gui/insEdit.cpp:436 +msgid "enable" +msgstr "вкл." + +#: src/gui/insEdit.cpp:357 src/gui/insEdit.cpp:368 +msgid "enabled" +msgstr "вкл." + +#: src/gui/insEdit.cpp:361 +msgid "mirror" +msgstr "отраж." + +#: src/gui/insEdit.cpp:365 +msgid "resolution" +msgstr "разрешение" + +#: src/gui/insEdit.cpp:366 +msgid "fixed" +msgstr "фиксир." + +#: src/gui/insEdit.cpp:367 +msgid "N/A" +msgstr "-" + +#: src/gui/insEdit.cpp:374 +msgid "echo" +msgstr "эхо" + +#: src/gui/insEdit.cpp:375 +msgid "pitch mod" +msgstr "част. мод." + +#: src/gui/insEdit.cpp:376 src/gui/insEdit.cpp:508 +msgid "invert right" +msgstr "инв. справа" + +#: src/gui/insEdit.cpp:377 src/gui/insEdit.cpp:509 +msgid "invert left" +msgstr "инв. слева" + +#: src/gui/insEdit.cpp:382 src/gui/insEdit.cpp:5905 +msgid "low" +msgstr "ФНЧ" + +#: src/gui/insEdit.cpp:383 src/gui/insEdit.cpp:5911 +msgid "band" +msgstr "ППФ" + +#: src/gui/insEdit.cpp:384 src/gui/insEdit.cpp:5917 +msgid "high" +msgstr "ФВЧ" + +#: src/gui/insEdit.cpp:385 src/gui/insEdit.cpp:5924 +msgid "ch3off" +msgstr "выкл. 3 кан." + +#: src/gui/insEdit.cpp:393 +msgid "test" +msgstr "тест" + +#: src/gui/insEdit.cpp:398 +msgid "15KHz" +msgstr "" + +#: src/gui/insEdit.cpp:399 +msgid "filter 2+4" +msgstr "фильтр 2+4" + +#: src/gui/insEdit.cpp:400 +msgid "filter 1+3" +msgstr "фильтр 1+3" + +#: src/gui/insEdit.cpp:401 +msgid "16-bit 3+4" +msgstr "16-битн. 3+4" + +#: src/gui/insEdit.cpp:402 +msgid "16-bit 1+2" +msgstr "16-битн. 1+2" + +#: src/gui/insEdit.cpp:403 +msgid "high3" +msgstr "ФВЧ 3" + +#: src/gui/insEdit.cpp:404 +msgid "high1" +msgstr "ФВЧ 1" + +#: src/gui/insEdit.cpp:405 +msgid "poly9" +msgstr "полином 9" + +#: src/gui/insEdit.cpp:414 +msgid "16'" +msgstr "" + +#: src/gui/insEdit.cpp:415 +msgid "8'" +msgstr "" + +#: src/gui/insEdit.cpp:416 +msgid "4'" +msgstr "" + +#: src/gui/insEdit.cpp:417 +msgid "2'" +msgstr "" + +#: src/gui/insEdit.cpp:418 +msgid "sustain" +msgstr "сустейн" + +#: src/gui/insEdit.cpp:423 +msgid "square" +msgstr "прямоуг." + +#: src/gui/insEdit.cpp:431 +msgid "surround" +msgstr "окр. звуч." + +#: src/gui/insEdit.cpp:437 +msgid "oneshot" +msgstr "однокр." + +#: src/gui/insEdit.cpp:438 +msgid "split L/R" +msgstr "разд. лев/прав" + +#: src/gui/insEdit.cpp:439 +msgid "HinvR" +msgstr "HинвR" + +#: src/gui/insEdit.cpp:440 +msgid "VinvR" +msgstr "VинвR" + +#: src/gui/insEdit.cpp:441 +msgid "HinvL" +msgstr "HинвL" + +#: src/gui/insEdit.cpp:442 +msgid "VinvL" +msgstr "VинвL" + +#: src/gui/insEdit.cpp:447 src/gui/insEdit.cpp:476 +msgid "ring mod" +msgstr "кольц. мод." + +#: src/gui/insEdit.cpp:448 +msgid "low pass" +msgstr "ФНЧ" + +#: src/gui/insEdit.cpp:449 src/gui/insEdit.cpp:475 +msgid "high pass" +msgstr "ФВЧ" + +#: src/gui/insEdit.cpp:450 +msgid "band pass" +msgstr "ППФ" + +#: src/gui/insEdit.cpp:459 +msgid "enable tap B" +msgstr "вкл. отвод B" + +#: src/gui/insEdit.cpp:460 +msgid "AM with slope" +msgstr "АМ со скатом" + +#: src/gui/insEdit.cpp:465 +msgid "invert B" +msgstr "инв. B" + +#: src/gui/insEdit.cpp:466 +msgid "invert A" +msgstr "инв. A" + +#: src/gui/insEdit.cpp:467 +msgid "reset B" +msgstr "перезап. B" + +#: src/gui/insEdit.cpp:468 +msgid "reset A" +msgstr "перезап. A" + +#: src/gui/insEdit.cpp:469 +msgid "clip B" +msgstr "огран. B" + +#: src/gui/insEdit.cpp:470 +msgid "clip A" +msgstr "огран. A" + +#: src/gui/insEdit.cpp:477 +msgid "swap counters (noise)" +msgstr "помен. счётч. (шум)" + +#: src/gui/insEdit.cpp:478 +msgid "low pass (noise)" +msgstr "ФНЧ (шум)" + +#: src/gui/insEdit.cpp:485 +msgid "rear right" +msgstr "задний правый" + +#: src/gui/insEdit.cpp:486 +msgid "rear left" +msgstr "задний левый" + +#: src/gui/insEdit.cpp:491 +msgid "on" +msgstr "вкл." + +#: src/gui/insEdit.cpp:496 +msgid "k1 slowdown" +msgstr "замедл. k1" + +#: src/gui/insEdit.cpp:497 +msgid "k2 slowdown" +msgstr "замедл. k2" + +#: src/gui/insEdit.cpp:502 +msgid "pause" +msgstr "стоп" + +#: src/gui/insEdit.cpp:503 +msgid "reverse" +msgstr "реверс" + +#: src/gui/insEdit.cpp:521 +msgid "Subtract" +msgstr "Вычесть" + +#: src/gui/insEdit.cpp:522 +msgid "Average" +msgstr "Усреднить" + +#: src/gui/insEdit.cpp:523 src/gui/insEdit.cpp:2037 +msgid "Phase" +msgstr "Фаза" + +#: src/gui/insEdit.cpp:524 +msgid "Chorus" +msgstr "Хорус" + +#: src/gui/insEdit.cpp:528 +msgid "None (dual)" +msgstr "Нет (две таблицы)" + +#: src/gui/insEdit.cpp:529 +msgid "Wipe" +msgstr "Замена" + +#: src/gui/insEdit.cpp:531 +msgid "Fade (ping-pong)" +msgstr "Плавный переход (туда-обратно)" + +#: src/gui/insEdit.cpp:532 +msgid "Overlay" +msgstr "Наложение" + +#: src/gui/insEdit.cpp:533 +msgid "Negative Overlay" +msgstr "Наложение с обратным знаком" + +#: src/gui/insEdit.cpp:534 +msgid "Slide" +msgstr "Сдвиг" + +#: src/gui/insEdit.cpp:535 +msgid "Mix Chorus" +msgstr "Микширование с хорусом" + +#: src/gui/insEdit.cpp:536 +msgid "Phase Modulation" +msgstr "Фазовая модуляция" + +#: src/gui/insEdit.cpp:541 +msgid "Sweep" +msgstr "Аппаратное портаменто" + +#: src/gui/insEdit.cpp:542 src/gui/insEdit.cpp:552 +msgid "Wait" +msgstr "Ждать" + +#: src/gui/insEdit.cpp:543 src/gui/insEdit.cpp:553 +msgid "Wait for Release" +msgstr "Ждать релиз" + +#: src/gui/insEdit.cpp:545 src/gui/insEdit.cpp:555 +msgid "Loop until Release" +msgstr "Цикл до релиза" + +#: src/gui/insEdit.cpp:549 +msgid "Volume Sweep" +msgstr "Изменение громкости" + +#: src/gui/insEdit.cpp:550 +msgid "Frequency Sweep" +msgstr "Изменение частоты" + +#: src/gui/insEdit.cpp:551 +msgid "Cutoff Sweep" +msgstr "Изменение частоты среза" + +#: src/gui/insEdit.cpp:559 src/gui/insEdit.cpp:6604 +msgid "Direct" +msgstr "Прямое" + +#: src/gui/insEdit.cpp:560 src/gui/insEdit.cpp:6608 +msgid "Decrease (linear)" +msgstr "Спад (линейный)" + +#: src/gui/insEdit.cpp:561 src/gui/insEdit.cpp:6612 +msgid "Decrease (logarithmic)" +msgstr "Спад (логарифмический)" + +#: src/gui/insEdit.cpp:562 src/gui/insEdit.cpp:6616 +msgid "Increase (linear)" +msgstr "Нарастание (линейное)" + +#: src/gui/insEdit.cpp:563 src/gui/insEdit.cpp:6620 +msgid "Increase (bent line)" +msgstr "Нарастание (изогн. линия)" + +#: src/gui/insEdit.cpp:611 +msgid "Relative" +msgstr "Относительное" + +#: src/gui/insEdit.cpp:616 +#, c-format +msgid "%d: +%d (exponential)" +msgstr "" + +#: src/gui/insEdit.cpp:619 +#, c-format +msgid "%d: +%d (linear)" +msgstr "" + +#: src/gui/insEdit.cpp:622 +#, c-format +msgid "%d: -%d (exponential)" +msgstr "" + +#: src/gui/insEdit.cpp:625 +#, c-format +msgid "%d: -%d (linear)" +msgstr "" + +#: src/gui/insEdit.cpp:627 +#, c-format +msgid "%d: %d (direct)" +msgstr "" + +#: src/gui/insEdit.cpp:660 +msgid "Random" +msgstr "Шум" + +#: src/gui/insEdit.cpp:1610 +msgid "" +"left click to restart\n" +"middle click to pause\n" +"right click to see algorithm" +msgstr "" +"ЛКМ для перезапуска\n" +"Нажмите колёсико, чтобы поставить на паузу\n" +"ПКМ для переключения на визуализацию алгоритма" + +#: src/gui/insEdit.cpp:1620 +msgid "" +"left click to configure TL scaling\n" +"right click to see FM preview" +msgstr "" +"ЛКМ для конфигурации масштабирования громкости операторов\n" +"ПКМ для переключения на превью FM-сигнала" + +#: src/gui/insEdit.cpp:1624 +msgid "right click to see FM preview" +msgstr "ПКМ для переключения на превью FM-сигнала" + +#: src/gui/insEdit.cpp:1639 +msgid "operator level changes with volume?" +msgstr "Громкость оператора зависит от общей громкости?" + +#: src/gui/insEdit.cpp:1648 +msgid "AUTO##OPKVS" +msgstr "АВТО##OPKVS" + +#: src/gui/insEdit.cpp:1650 +msgid "NO##OPKVS" +msgstr "НЕТ##OPKVS" + +#: src/gui/insEdit.cpp:1652 +msgid "YES##OPKVS" +msgstr "ДА##OPKVS" + +#: src/gui/insEdit.cpp:1900 src/gui/insEdit.cpp:2005 +msgid "Bottom" +msgstr "Мин." + +#: src/gui/insEdit.cpp:1940 +msgid "Hold" +msgstr "Задержка после атаки" + +#: src/gui/insEdit.cpp:1949 +msgid "SusTime" +msgstr "Время сустейна" + +#: src/gui/insEdit.cpp:1969 +msgid "SusDecay" +msgstr "Спад сустейна" + +#: src/gui/insEdit.cpp:2047 +msgid "Shape" +msgstr "Форма волны" + +#: src/gui/insEdit.cpp:2100 +msgid "Macro type: Sequence" +msgstr "Тип макроса: последовательность" + +#: src/gui/insEdit.cpp:2103 +msgid "Macro type: ADSR" +msgstr "Тип макроса: ADSR-огибающая" + +#: src/gui/insEdit.cpp:2106 +msgid "Macro type: LFO" +msgstr "Тип макроса: ГНЧ" + +#: src/gui/insEdit.cpp:2109 +msgid "Macro type: What's going on here?" +msgstr "Тип макроса: Что здесь происходит?" + +#: src/gui/insEdit.cpp:2122 +msgid "Delay/Step Length" +msgstr "Задержка/длина шага" + +#: src/gui/insEdit.cpp:2125 +msgid "Step Length (ticks)##IMacroSpeed" +msgstr "Длина шага (в шагах движка трекера)##IMacroSpeed" + +#: src/gui/insEdit.cpp:2129 +msgid "Delay##IMacroDelay" +msgstr "Задержка##IMacroDelay" + +#: src/gui/insEdit.cpp:2142 +msgid "Release mode: Active (jump to release pos)" +msgstr "Тип релиза: активный (прыгнуть на позицию релиза)" + +#: src/gui/insEdit.cpp:2144 +msgid "Release mode: Passive (delayed release)" +msgstr "Тип релиза: пассивный (отложенный релиз)" + +#: src/gui/insEdit.cpp:2393 +msgid "StepLen" +msgstr "Дл. шага" + +#: src/gui/insEdit.cpp:2401 +msgid "Delay" +msgstr "Задержка" + +#: src/gui/insEdit.cpp:2425 +msgid "The heck? No, this isn't even working correctly..." +msgstr "Что за?.. Нет, оно ведь работает неправильно..." + +#: src/gui/insEdit.cpp:2428 +msgid "The only problem with that selectedMacro is that it's a bug..." +msgstr "Единственная проблема с тем selectedMacro в том, что это не сбой..." + +#: src/gui/insEdit.cpp:2589 +msgid "(copying)" +msgstr "(копирование)" + +#: src/gui/insEdit.cpp:2591 +msgid "(swapping)" +msgstr "(замена)" + +#: src/gui/insEdit.cpp:2595 +msgid "" +"- drag to swap operator\n" +"- shift-drag to copy operator" +msgstr "" +"- перетащите, чтобы поменять настройки операторов местами\n" +"- перетащите с зажатой клавишей SHIFT, чтобы скопировать настройки оператора" + +#: src/gui/insEdit.cpp:2632 +msgid "new DPCM features disabled (compatibility)!" +msgstr "новые функции ДИКМ отключены (совместимость)!" + +#: src/gui/insEdit.cpp:2633 +msgid "click here to enable them." +msgstr "нажмите сюда, чтобы включить их." + +#: src/gui/insEdit.cpp:2644 +msgid "none selected" +msgstr "не выбран" + +#: src/gui/insEdit.cpp:2657 +msgid "Use sample" +msgstr "Использовать сэмпл" + +#: src/gui/insEdit.cpp:2659 +msgid "Sample bank slot##BANKSLOT" +msgstr "Номер банка сэмплов##BANKSLOT" + +#: src/gui/insEdit.cpp:2681 +msgid "Use wavetable (Amiga/Generic DAC only)" +msgstr "Использовать волновую таблицу (только для Amiga/типичного ЦАП)" + +#: src/gui/insEdit.cpp:2681 +msgid "Use wavetable" +msgstr "Использовать волновую таблицу" + +#: src/gui/insEdit.cpp:2708 +msgid "Use sample map" +msgstr "Использовать карту сэмплов" + +#: src/gui/insEdit.cpp:2730 +msgid "delta" +msgstr "нач. знач." + +#: src/gui/insEdit.cpp:2736 +msgid "sample name" +msgstr "название сэмпла" + +#: src/gui/insEdit.cpp:3001 +msgid "set entire map to this pitch" +msgstr "установить эту частоту для всей карты" + +#: src/gui/insEdit.cpp:3009 +msgid "set entire map to this delta counter value" +msgstr "установить это нач. знач. дельта-счётчика для всей карты" + +#: src/gui/insEdit.cpp:3018 +msgid "set entire map to this note" +msgstr "установить эту ноту для всей карты" + +#: src/gui/insEdit.cpp:3027 +msgid "set entire map to this sample" +msgstr "установить этот сэмпл для всей карты" + +#: src/gui/insEdit.cpp:3037 +msgid "reset pitches" +msgstr "сбросить частоты" + +#: src/gui/insEdit.cpp:3042 +msgid "clear delta counter values" +msgstr "очистить нач. знач. дельта-счётчика" + +#: src/gui/insEdit.cpp:3048 +msgid "reset notes" +msgstr "сбросить ноты" + +#: src/gui/insEdit.cpp:3054 +msgid "clear map samples" +msgstr "сбросить сэмплы карты" + +#: src/gui/insEdit.cpp:3148 +msgid "Request from TX81Z" +msgstr "Запросить у TX81Z" + +#: src/gui/insEdit.cpp:3234 +#, c-format +msgid "%s name" +msgstr "название %s" + +#: src/gui/insEdit.cpp:3286 +msgid "Fixed frequency mode" +msgstr "Режим фиксированной частоты" + +#: src/gui/insEdit.cpp:3288 +msgid "" +"when enabled, drums will be set to the specified frequencies, ignoring the " +"note." +msgstr "" +"при включении режима ударные будут звучать на указанных частотах. Значения " +"нот будут игнорироваться." + +#: src/gui/insEdit.cpp:3296 +msgid "Drum" +msgstr "Ударный" + +#: src/gui/insEdit.cpp:3298 src/gui/insEdit.cpp:3798 src/gui/insEdit.cpp:3904 +#: src/gui/insEdit.cpp:4404 src/gui/insEdit.cpp:4468 src/gui/insEdit.cpp:5068 +#: src/gui/insEdit.cpp:5518 +msgid "Block" +msgstr "Блок" + +#: src/gui/insEdit.cpp:3300 src/gui/insEdit.cpp:3803 src/gui/insEdit.cpp:3909 +#: src/gui/insEdit.cpp:4993 src/gui/insEdit.cpp:5079 src/gui/insEdit.cpp:5519 +msgid "FreqNum" +msgstr "Частота" + +#: src/gui/insEdit.cpp:3303 +msgid "Snare/Hi-hat" +msgstr "Рабочий барабан/хай-хэт" + +#: src/gui/insEdit.cpp:3304 +msgid "Tom/Top" +msgstr "Там-там/тарелка" + +#: src/gui/insEdit.cpp:3314 +msgid "Volume##TL" +msgstr "Громкость##TL" + +#: src/gui/insEdit.cpp:3316 +msgid "this volume slider only works in compatibility (non-drums) system." +msgstr "" +"эта регулировка громкости работает только в совместимой (без ударных) " +"системе." + +#: src/gui/insEdit.cpp:3626 +msgid "Env" +msgstr "Огиб." + +#: src/gui/insEdit.cpp:3980 src/gui/insEdit.cpp:4346 src/gui/insEdit.cpp:4396 +#: src/gui/insEdit.cpp:5104 +msgid "OPL2/3 only (last 4 waveforms are OPL3 only)" +msgstr "Только OPL2/3 (последние 4 волны только для OPL3)" + +#: src/gui/insEdit.cpp:4079 src/gui/insEdit.cpp:4788 +#, c-format +msgid "Envelope 2 (kick only)" +msgstr "Огибающая 2 (только бочка)" + +#: src/gui/insEdit.cpp:4084 +#, c-format +msgid "Operator %d" +msgstr "Оператор %d" + +#: src/gui/insEdit.cpp:4414 +msgid "Freq" +msgstr "Част." + +#: src/gui/insEdit.cpp:4443 +msgid "Only on YM2151 (OPM)" +msgstr "" + +#: src/gui/insEdit.cpp:4466 +msgid "Blk" +msgstr "Блк" + +#: src/gui/insEdit.cpp:4479 +msgid "F" +msgstr "Ч" + +#: src/gui/insEdit.cpp:4481 +msgid "Frequency (F-Num)" +msgstr "Частота (F-Num)" + +#: src/gui/insEdit.cpp:4833 +msgid "SSG On" +msgstr "Вкл. SSG" + +#: src/gui/insEdit.cpp:5206 src/gui/insEdit.cpp:5207 +msgid "waiting..." +msgstr "ожидание..." + +#: src/gui/insEdit.cpp:5210 src/gui/insEdit.cpp:5211 +msgid "no instrument selected" +msgstr "не выбрано ни одного инструмента" + +#: src/gui/insEdit.cpp:5393 +msgid "" +"none of the currently present chips are able to play this instrument type!" +msgstr "ни один из добавленных чипов не поддерживает этот тип инструмента!" + +#: src/gui/insEdit.cpp:5413 +msgid "FM Macros" +msgstr "Макросы FM" + +#: src/gui/insEdit.cpp:5435 src/gui/insEdit.cpp:5440 +msgid "LFO Speed" +msgstr "Частота ГНЧ" + +#: src/gui/insEdit.cpp:5439 src/gui/insEdit.cpp:6514 +msgid "PM Depth" +msgstr "Глубина ФМ" + +#: src/gui/insEdit.cpp:5441 +msgid "LFO Shape" +msgstr "Форма волны ГНЧ" + +#: src/gui/insEdit.cpp:5444 +msgid "OpMask" +msgstr "Маска операторов" + +#: src/gui/insEdit.cpp:5446 +msgid "AM Depth 2" +msgstr "Глубина АМ 2" + +#: src/gui/insEdit.cpp:5447 +msgid "PM Depth 2" +msgstr "Глубина ФМ 2" + +#: src/gui/insEdit.cpp:5448 +msgid "LFO2 Speed" +msgstr "Скорость ГНЧ 2" + +#: src/gui/insEdit.cpp:5449 +msgid "LFO2 Shape" +msgstr "Форма волны ГНЧ 2" + +#: src/gui/insEdit.cpp:5458 +#, c-format +msgid "Operator Macros" +msgstr "" + +#: src/gui/insEdit.cpp:5460 +#, c-format +msgid "OP%d Macros" +msgstr "Макросы ОП%d" + +#: src/gui/insEdit.cpp:5521 +msgid "Op. Arpeggio" +msgstr "Арпеджио оператора" + +#: src/gui/insEdit.cpp:5522 +msgid "Op. Pitch" +msgstr "Частота оператора" + +#: src/gui/insEdit.cpp:5531 +msgid "Op. Panning" +msgstr "Панорамирование оператора" + +#: src/gui/insEdit.cpp:5558 +msgid "Use software envelope" +msgstr "Использовать программную огибающую громкости" + +#: src/gui/insEdit.cpp:5559 +msgid "Initialize envelope on every note" +msgstr "Инициализировать огибающую на каждой ноте" + +#: src/gui/insEdit.cpp:5560 +msgid "Double wave length (GBA only)" +msgstr "" + +#: src/gui/insEdit.cpp:5589 src/gui/insEdit.cpp:5666 +msgid "Sound Length" +msgstr "Длина звука" + +#: src/gui/insEdit.cpp:5592 src/gui/insEdit.cpp:5666 +msgid "Infinity" +msgstr "Бесконечность" + +#: src/gui/insEdit.cpp:5596 +msgid "Direction" +msgstr "Направление" + +#: src/gui/insEdit.cpp:5599 src/gui/insEdit.cpp:5669 src/gui/insEdit.cpp:5697 +#: src/gui/insEdit.cpp:6008 src/gui/insEdit.cpp:6051 +msgid "Up" +msgstr "Вверх" + +#: src/gui/insEdit.cpp:5604 src/gui/insEdit.cpp:5674 src/gui/insEdit.cpp:5702 +#: src/gui/insEdit.cpp:6013 src/gui/insEdit.cpp:6056 +msgid "Down" +msgstr "Вниз" + +#: src/gui/insEdit.cpp:5620 src/gui/insEdit.cpp:5953 +msgid "Hardware Sequence" +msgstr "Аппаратная последовательность" + +#: src/gui/insEdit.cpp:5630 src/gui/insEdit.cpp:5963 +msgid "Tick" +msgstr "Шаг" + +#: src/gui/insEdit.cpp:5632 src/gui/insEdit.cpp:5965 +msgid "Command" +msgstr "Команда" + +#: src/gui/insEdit.cpp:5634 src/gui/insEdit.cpp:5967 +msgid "Move/Remove" +msgstr "Перем./Удал." + +#: src/gui/insEdit.cpp:5663 +msgid "Env Length" +msgstr "Длина огибающей" + +#: src/gui/insEdit.cpp:5690 +msgid "Shift" +msgstr "На сколько" + +#: src/gui/insEdit.cpp:5717 src/gui/insEdit.cpp:6073 +msgid "Ticks" +msgstr "Шагов" + +#: src/gui/insEdit.cpp:5736 src/gui/insEdit.cpp:6092 src/gui/insEdit.cpp:6239 +msgid "Position" +msgstr "Положение" + +#: src/gui/insEdit.cpp:5815 +msgid "tri" +msgstr "треуг." + +#: src/gui/insEdit.cpp:5882 +msgid "Ring Modulation" +msgstr "Кольцевая модуляция" + +#: src/gui/insEdit.cpp:5886 +msgid "Oscillator Sync" +msgstr "Синхронизация осцилляторов" + +#: src/gui/insEdit.cpp:5890 +msgid "Enable filter" +msgstr "Включить фильтр" + +#: src/gui/insEdit.cpp:5891 +msgid "Initialize filter" +msgstr "Инициализировать фильтр" + +#: src/gui/insEdit.cpp:5894 src/gui/insEdit.cpp:5897 src/gui/insEdit.cpp:6951 +#: src/gui/insEdit.cpp:7215 src/gui/insEdit.cpp:7476 +msgid "Cutoff" +msgstr "Частота среза" + +#: src/gui/insEdit.cpp:5902 src/gui/insEdit.cpp:6408 src/gui/insEdit.cpp:6952 +#: src/gui/insEdit.cpp:7179 src/gui/insEdit.cpp:7477 +msgid "Filter Mode" +msgstr "Тип фильтра" + +#: src/gui/insEdit.cpp:5931 src/gui/insEdit.cpp:7485 +msgid "Noise Mode" +msgstr "Режим шума" + +#: src/gui/insEdit.cpp:5932 +msgid "Wave Mix Mode" +msgstr "Режим смешения волн" + +#: src/gui/insEdit.cpp:5935 +msgid "Absolute Cutoff Macro" +msgstr "Абсолютный макрос частоты среза" + +#: src/gui/insEdit.cpp:5939 +msgid "Absolute Duty Macro" +msgstr "Абсолютный макрос скважности" + +#: src/gui/insEdit.cpp:5945 +msgid "Don't test before new note" +msgstr "Не включать тестовый бит перед новой нотой" + +#: src/gui/insEdit.cpp:5950 +msgid "Switch roles of frequency and phase reset timer" +msgstr "Поменять роли таймера сброса фазы и таймера изменения частоты" + +#: src/gui/insEdit.cpp:5997 src/gui/insEdit.cpp:6040 +msgid "Period" +msgstr "Период" + +#: src/gui/insEdit.cpp:6002 src/gui/insEdit.cpp:6045 src/gui/insEdit.cpp:6892 +msgid "Amount" +msgstr "Количество" + +#: src/gui/insEdit.cpp:6005 src/gui/insEdit.cpp:6048 +msgid "Bound" +msgstr "Граница" + +#: src/gui/insEdit.cpp:6021 +msgid "Flip" +msgstr "Туда-обратно" + +#: src/gui/insEdit.cpp:6210 +msgid "Load waveform" +msgstr "Загрузить волну" + +#: src/gui/insEdit.cpp:6215 +msgid "" +"when enabled, a waveform will be loaded into RAM.\n" +"when disabled, only the offset and length change." +msgstr "" +"при включении этой опции олна будет загружена в ОЗУ.\n" +"если опция выключена, меняться будут только смещение и длина волны." + +#: src/gui/insEdit.cpp:6219 +msgid "Waveform##WAVE" +msgstr "Волна##WAVE" + +#: src/gui/insEdit.cpp:6227 +msgid "Per-channel wave position/length" +msgstr "Позиционирование и длина волны отдельно для каждого канала" + +#: src/gui/insEdit.cpp:6237 +msgid "Ch" +msgstr "Кан." + +#: src/gui/insEdit.cpp:6286 +msgid "Compatibility mode" +msgstr "Режим совместимости" + +#: src/gui/insEdit.cpp:6288 +msgid "" +"only use for compatibility with .dmf modules!\n" +"- initializes modulation table with first wavetable\n" +"- does not alter modulation parameters on instrument change" +msgstr "" +"только для совместимости с модулями .dmf!\n" +"- инициализирует волновую таблицу модулятора первой волновой таблицей\n" +"- не изменяет параметры модуляции при смене инструмента" + +#: src/gui/insEdit.cpp:6290 +msgid "Modulation depth" +msgstr "Глубина модуляции" + +#: src/gui/insEdit.cpp:6294 +msgid "Modulation speed" +msgstr "Скорость модуляции" + +#: src/gui/insEdit.cpp:6298 +msgid "Modulation table" +msgstr "Волновая таблица модуляции" + +#: src/gui/insEdit.cpp:6347 +msgid "Set modulation table (channel 5 only)" +msgstr "Выставить таблицу модуляции (только для 5-го канала)" + +#: src/gui/insEdit.cpp:6411 src/gui/insEdit.cpp:7184 +msgid "Filter K1" +msgstr "K1 фильтра" + +#: src/gui/insEdit.cpp:6413 src/gui/insEdit.cpp:7185 +msgid "Filter K2" +msgstr "K2 фильтра" + +#: src/gui/insEdit.cpp:6417 +msgid "Envelope length" +msgstr "Длина огиб." + +#: src/gui/insEdit.cpp:6420 +msgid "Left Volume Ramp" +msgstr "Нараст. лев. громк." + +#: src/gui/insEdit.cpp:6422 +msgid "Right Volume Ramp" +msgstr "Нараст. прав. громк." + +#: src/gui/insEdit.cpp:6425 +msgid "Filter K1 Ramp" +msgstr "Нараст. K1 фильтра" + +#: src/gui/insEdit.cpp:6427 +msgid "Filter K2 Ramp" +msgstr "Нараст. K2 фильтра" + +#: src/gui/insEdit.cpp:6430 +msgid "K1 Ramp Slowdown" +msgstr "Замедл. нараст. K1" + +#: src/gui/insEdit.cpp:6432 +msgid "K2 Ramp Slowdown" +msgstr "Замедл. нараст. K2" + +#: src/gui/insEdit.cpp:6454 +msgid "Attack Rate" +msgstr "Скорость атаки" + +#: src/gui/insEdit.cpp:6460 +msgid "Decay 1 Rate" +msgstr "Скорость спада 1" + +#: src/gui/insEdit.cpp:6466 +msgid "Decay Level" +msgstr "Уровень спада" + +#: src/gui/insEdit.cpp:6472 +msgid "Decay 2 Rate" +msgstr "Скорость спада 2" + +#: src/gui/insEdit.cpp:6478 +msgid "Release Rate" +msgstr "Скорость релиза" + +#: src/gui/insEdit.cpp:6484 +msgid "Rate Correction" +msgstr "Коррекция скорости" + +#: src/gui/insEdit.cpp:6512 +msgid "LFO Rate" +msgstr "Скорость ГНЧ" + +#: src/gui/insEdit.cpp:6523 +msgid "Use envelope" +msgstr "Использовать огибающую" + +#: src/gui/insEdit.cpp:6576 +msgid "Sustain/release mode:" +msgstr "Режим сустейна/релиза:" + +#: src/gui/insEdit.cpp:6577 +msgid "Direct (cut on release)" +msgstr "Прямой (заглушить на релизе)" + +#: src/gui/insEdit.cpp:6580 +msgid "Effective (linear decrease)" +msgstr "Эффективный (линейный спад)" + +#: src/gui/insEdit.cpp:6583 +msgid "Effective (exponential decrease)" +msgstr "Эффективный (экспоненциальный спад)" + +#: src/gui/insEdit.cpp:6586 +msgid "Delayed (write R on release)" +msgstr "Отложенный (записать R на релизе)" + +#: src/gui/insEdit.cpp:6596 src/gui/insEdit.cpp:6597 +msgid "Gain Mode" +msgstr "Режим усиления" + +#: src/gui/insEdit.cpp:6599 src/gui/insEdit.cpp:6600 src/gui/insEdit.cpp:7205 +msgid "Gain" +msgstr "Усиление" + +#: src/gui/insEdit.cpp:6633 +msgid "" +"using decrease modes will not produce any sound at all, unless you know what " +"you are doing.\n" +"it is recommended to use the Gain macro for decrease instead." +msgstr "" +"использование режимов спада приведёт к отсутствию звука, если вы не " +"понимаете, как это всё работает.\n" +"рекомендуется использовать макрос усиления для спада." + +#: src/gui/insEdit.cpp:6703 +msgid "Enable synthesizer" +msgstr "Включить синтезатор" + +#: src/gui/insEdit.cpp:6721 +msgid "Single-waveform" +msgstr "Одна волна" + +#: src/gui/insEdit.cpp:6730 +msgid "Dual-waveform" +msgstr "Две волны" + +#: src/gui/insEdit.cpp:6803 src/gui/insEdit.cpp:6812 +msgid "Wave 1" +msgstr "Волна 1" + +#: src/gui/insEdit.cpp:6808 src/gui/insEdit.cpp:6823 +msgid "" +"waveform macro is controlling wave 1!\n" +"this value will be ineffective." +msgstr "" +"макрос волны контролирует волну 1!\n" +"это значение не даст результата." + +#: src/gui/insEdit.cpp:6829 +msgid "Wave 2" +msgstr "Волна 2" + +#: src/gui/insEdit.cpp:6844 +msgid "Resume preview" +msgstr "Возобовить превью" + +#: src/gui/insEdit.cpp:6846 +msgid "Pause preview" +msgstr "Приостановить превью" + +#: src/gui/insEdit.cpp:6854 +msgid "Restart preview" +msgstr "Перезапустить превью" + +#: src/gui/insEdit.cpp:6874 +msgid "Copy to new wavetable" +msgstr "Копировать в новую волновую таблицу" + +#: src/gui/insEdit.cpp:6881 +msgid "Update Rate" +msgstr "Частота обновления" + +#: src/gui/insEdit.cpp:6902 +msgid "Global" +msgstr "Глобальная" + +#: src/gui/insEdit.cpp:6906 +msgid "" +"wavetable synthesizer disabled.\n" +"use the Waveform macro to set the wave for this instrument." +msgstr "" +"синтезатор волновых таблиц выключен.\n" +"используйте макрос волны для задания волновой таблицы для этого инструмента." + +#: src/gui/insEdit.cpp:6912 +msgid "Macros" +msgstr "Макросы" + +#: src/gui/insEdit.cpp:6921 src/gui/insEdit.cpp:6929 src/gui/insEdit.cpp:6938 +#: src/gui/insEdit.cpp:6947 src/gui/insEdit.cpp:6962 src/gui/insEdit.cpp:6976 +#: src/gui/insEdit.cpp:6988 src/gui/insEdit.cpp:7001 src/gui/insEdit.cpp:7017 +#: src/gui/insEdit.cpp:7023 src/gui/insEdit.cpp:7033 src/gui/insEdit.cpp:7040 +#: src/gui/insEdit.cpp:7046 src/gui/insEdit.cpp:7059 src/gui/insEdit.cpp:7066 +#: src/gui/insEdit.cpp:7073 src/gui/insEdit.cpp:7082 src/gui/insEdit.cpp:7092 +#: src/gui/insEdit.cpp:7100 src/gui/insEdit.cpp:7106 src/gui/insEdit.cpp:7114 +#: src/gui/insEdit.cpp:7121 src/gui/insEdit.cpp:7127 src/gui/insEdit.cpp:7137 +#: src/gui/insEdit.cpp:7149 src/gui/insEdit.cpp:7157 src/gui/insEdit.cpp:7173 +#: src/gui/insEdit.cpp:7178 src/gui/insEdit.cpp:7191 src/gui/insEdit.cpp:7198 +#: src/gui/insEdit.cpp:7209 src/gui/insEdit.cpp:7222 src/gui/insEdit.cpp:7231 +#: src/gui/insEdit.cpp:7238 src/gui/insEdit.cpp:7246 src/gui/insEdit.cpp:7270 +#: src/gui/insEdit.cpp:7277 src/gui/insEdit.cpp:7285 src/gui/insEdit.cpp:7296 +#: src/gui/insEdit.cpp:7303 src/gui/insEdit.cpp:7311 src/gui/insEdit.cpp:7319 +#: src/gui/insEdit.cpp:7328 src/gui/insEdit.cpp:7336 src/gui/insEdit.cpp:7342 +#: src/gui/insEdit.cpp:7348 src/gui/insEdit.cpp:7354 src/gui/insEdit.cpp:7359 +#: src/gui/insEdit.cpp:7366 src/gui/insEdit.cpp:7373 src/gui/insEdit.cpp:7381 +#: src/gui/insEdit.cpp:7390 src/gui/insEdit.cpp:7398 src/gui/insEdit.cpp:7410 +#: src/gui/insEdit.cpp:7423 src/gui/insEdit.cpp:7434 src/gui/insEdit.cpp:7444 +#: src/gui/insEdit.cpp:7452 src/gui/insEdit.cpp:7462 src/gui/insEdit.cpp:7471 +msgid "Arpeggio" +msgstr "Арпеджио" + +#: src/gui/insEdit.cpp:6925 src/gui/insEdit.cpp:6932 src/gui/insEdit.cpp:6943 +#: src/gui/insEdit.cpp:6972 src/gui/insEdit.cpp:6984 src/gui/insEdit.cpp:6994 +#: src/gui/insEdit.cpp:7007 src/gui/insEdit.cpp:7054 src/gui/insEdit.cpp:7062 +#: src/gui/insEdit.cpp:7069 src/gui/insEdit.cpp:7088 src/gui/insEdit.cpp:7110 +#: src/gui/insEdit.cpp:7133 src/gui/insEdit.cpp:7144 src/gui/insEdit.cpp:7163 +#: src/gui/insEdit.cpp:7183 src/gui/insEdit.cpp:7194 src/gui/insEdit.cpp:7214 +#: src/gui/insEdit.cpp:7234 src/gui/insEdit.cpp:7242 src/gui/insEdit.cpp:7249 +#: src/gui/insEdit.cpp:7254 src/gui/insEdit.cpp:7260 src/gui/insEdit.cpp:7266 +#: src/gui/insEdit.cpp:7273 src/gui/insEdit.cpp:7281 src/gui/insEdit.cpp:7290 +#: src/gui/insEdit.cpp:7299 src/gui/insEdit.cpp:7307 src/gui/insEdit.cpp:7324 +#: src/gui/insEdit.cpp:7332 src/gui/insEdit.cpp:7338 src/gui/insEdit.cpp:7362 +#: src/gui/insEdit.cpp:7369 src/gui/insEdit.cpp:7377 src/gui/insEdit.cpp:7386 +#: src/gui/insEdit.cpp:7394 src/gui/insEdit.cpp:7402 src/gui/insEdit.cpp:7414 +#: src/gui/insEdit.cpp:7429 src/gui/insEdit.cpp:7440 src/gui/insEdit.cpp:7448 +#: src/gui/insEdit.cpp:7457 src/gui/insEdit.cpp:7475 +msgid "Phase Reset" +msgstr "Сброс фазы" + +#: src/gui/insEdit.cpp:6939 src/gui/insEdit.cpp:7024 src/gui/insEdit.cpp:7210 +#: src/gui/insEdit.cpp:7247 +msgid "Duty/Noise" +msgstr "Скважность/режим шума" + +#: src/gui/insEdit.cpp:6966 src/gui/insEdit.cpp:7288 +msgid "Surround" +msgstr "Окружающее звучание" + +#: src/gui/insEdit.cpp:6968 src/gui/insEdit.cpp:6981 src/gui/insEdit.cpp:7026 +#: src/gui/insEdit.cpp:7085 src/gui/insEdit.cpp:7141 src/gui/insEdit.cpp:7159 +#: src/gui/insEdit.cpp:7180 src/gui/insEdit.cpp:7201 src/gui/insEdit.cpp:7225 +#: src/gui/insEdit.cpp:7278 src/gui/insEdit.cpp:7304 src/gui/insEdit.cpp:7321 +#: src/gui/insEdit.cpp:7329 src/gui/insEdit.cpp:7374 src/gui/insEdit.cpp:7383 +#: src/gui/insEdit.cpp:7399 src/gui/insEdit.cpp:7411 src/gui/insEdit.cpp:7426 +#: src/gui/insEdit.cpp:7454 src/gui/insEdit.cpp:7464 +msgid "Panning (left)" +msgstr "Панорамирование (левый)" + +#: src/gui/insEdit.cpp:6969 src/gui/insEdit.cpp:6982 src/gui/insEdit.cpp:7027 +#: src/gui/insEdit.cpp:7086 src/gui/insEdit.cpp:7142 src/gui/insEdit.cpp:7160 +#: src/gui/insEdit.cpp:7181 src/gui/insEdit.cpp:7202 src/gui/insEdit.cpp:7226 +#: src/gui/insEdit.cpp:7279 src/gui/insEdit.cpp:7305 src/gui/insEdit.cpp:7322 +#: src/gui/insEdit.cpp:7330 src/gui/insEdit.cpp:7375 src/gui/insEdit.cpp:7384 +#: src/gui/insEdit.cpp:7400 src/gui/insEdit.cpp:7412 src/gui/insEdit.cpp:7427 +#: src/gui/insEdit.cpp:7455 src/gui/insEdit.cpp:7465 +msgid "Panning (right)" +msgstr "Панорамирование (правый)" + +#: src/gui/insEdit.cpp:6990 src/gui/insEdit.cpp:7003 src/gui/insEdit.cpp:7107 +#: src/gui/insEdit.cpp:7199 src/gui/insEdit.cpp:7239 src/gui/insEdit.cpp:7424 +msgid "Noise Freq" +msgstr "Частота шума" + +#: src/gui/insEdit.cpp:6996 src/gui/insEdit.cpp:7010 src/gui/insEdit.cpp:7167 +msgid "AutoEnv Num" +msgstr "Множ. част. авто-огиб." + +#: src/gui/insEdit.cpp:6997 src/gui/insEdit.cpp:7011 src/gui/insEdit.cpp:7168 +msgid "AutoEnv Den" +msgstr "Дел. част. авто-огиб." + +#: src/gui/insEdit.cpp:7012 +msgid "Noise AND Mask" +msgstr "Маска шума (И)" + +#: src/gui/insEdit.cpp:7013 +msgid "Noise OR Mask" +msgstr "Маска шума (ИЛИ)" + +#: src/gui/insEdit.cpp:7034 +msgid "On/Off" +msgstr "Вкл./выкл." + +#: src/gui/insEdit.cpp:7060 +msgid "Patch" +msgstr "Патч" + +#: src/gui/insEdit.cpp:7076 +msgid "Mod Depth" +msgstr "Глуб. мод." + +#: src/gui/insEdit.cpp:7077 +msgid "Mod Speed" +msgstr "Скор. мод." + +#: src/gui/insEdit.cpp:7078 +msgid "Mod Position" +msgstr "Полож. мод." + +#: src/gui/insEdit.cpp:7083 +msgid "Noise Length" +msgstr "Длина шума" + +#: src/gui/insEdit.cpp:7093 +msgid "Wave Pos" +msgstr "Полож. волны" + +#: src/gui/insEdit.cpp:7096 +msgid "Wave Length" +msgstr "Длина волны" + +#: src/gui/insEdit.cpp:7115 +msgid "AUDCTL" +msgstr "" + +#: src/gui/insEdit.cpp:7122 src/gui/insEdit.cpp:7343 +msgid "Pulse Width" +msgstr "Скважность" + +#: src/gui/insEdit.cpp:7139 +msgid "Duty/Int" +msgstr "Скважность/инт." + +#: src/gui/insEdit.cpp:7145 src/gui/insEdit.cpp:7406 +msgid "Load LFSR" +msgstr "Загрузить в РСЛОС" + +#: src/gui/insEdit.cpp:7165 +msgid "Envelope Mode" +msgstr "Режим огибающей" + +#: src/gui/insEdit.cpp:7218 +msgid "Phase Reset Timer" +msgstr "Таймер сброса фазы" + +#: src/gui/insEdit.cpp:7252 src/gui/insEdit.cpp:7259 +msgid "Freq Divider" +msgstr "" + +#: src/gui/insEdit.cpp:7255 +msgid "Clock Divider" +msgstr "Делитель тактовой частоты" + +#: src/gui/insEdit.cpp:7264 +msgid "Global Volume" +msgstr "Глобальная громкость" + +#: src/gui/insEdit.cpp:7286 +msgid "Echo Level" +msgstr "Уровень эхо" + +#: src/gui/insEdit.cpp:7291 +msgid "Echo Feedback" +msgstr "Обратная связь эхо" + +#: src/gui/insEdit.cpp:7292 +msgid "Echo Length" +msgstr "Длина эхо" + +#: src/gui/insEdit.cpp:7312 +msgid "Group Ctrl" +msgstr "Контроль группы" + +#: src/gui/insEdit.cpp:7313 +msgid "Group Attack" +msgstr "Атака группы" + +#: src/gui/insEdit.cpp:7314 +msgid "Group Decay" +msgstr "Спад группы" + +#: src/gui/insEdit.cpp:7320 +msgid "Noise Type" +msgstr "Режим шума" + +#: src/gui/insEdit.cpp:7367 +msgid "Square/Noise" +msgstr "Меандр/шум" + +#: src/gui/insEdit.cpp:7404 +msgid "Tap A Location" +msgstr "Положение отвода A" + +#: src/gui/insEdit.cpp:7405 +msgid "Tap B Location" +msgstr "Положение отвода B" + +#: src/gui/insEdit.cpp:7416 +msgid "Portion A Length" +msgstr "Длина части A" + +#: src/gui/insEdit.cpp:7417 +msgid "Portion B Length" +msgstr "Длина части B" + +#: src/gui/insEdit.cpp:7418 +msgid "Portion A Offset" +msgstr "Сдвиг части A" + +#: src/gui/insEdit.cpp:7419 +msgid "Portion B Offset" +msgstr "Сдвиг части B" + +#: src/gui/insEdit.cpp:7463 +msgid "Parameter" +msgstr "Параметр" + +#: src/gui/insEdit.cpp:7467 +msgid "Load Value" +msgstr "Загрузить значение" + +#: src/gui/insEdit.cpp:7479 +msgid "Filter Toggle" +msgstr "Вкл./выкл. фильтр" + +#: src/gui/insEdit.cpp:7486 +msgid "Wave Mix" +msgstr "" + +#: src/gui/insEdit.cpp:7500 +msgid "Octave offset" +msgstr "Сдвиг октавы" + +#: src/gui/insEdit.cpp:7505 +msgid "go to Macros for other parameters." +msgstr "Откройте вкладку макросов для управления другими параметрами." + +#: src/gui/insEdit.cpp:7521 +msgid "invalid instrument type! change it first." +msgstr "недопустимый тип инструмента! сначала поменяйте его." + +#: src/gui/insEdit.cpp:7565 +msgid "clear contents" +msgstr "очистить содержимое" + +#: src/gui/insEdit.cpp:7571 +msgid "offset..." +msgstr "сместить..." + +#: src/gui/insEdit.cpp:7572 src/gui/insEdit.cpp:7605 +msgid "X" +msgstr "" + +#: src/gui/insEdit.cpp:7573 src/gui/insEdit.cpp:7609 +msgid "Y" +msgstr "" + +#: src/gui/insEdit.cpp:7574 +msgid "offset" +msgstr "сместить" + +#: src/gui/insEdit.cpp:7637 +msgid "Min" +msgstr "Минимум" + +#: src/gui/insEdit.cpp:7638 +msgid "Max" +msgstr "Максимум" + +#~ msgid "-- translations and related work --" +#~ msgstr "-- переводы и связанное с ними --" + +#~ msgid "LTVA1 (Russian translation)" +#~ msgstr "LTVA1 (перевод на русский язык)" + +#~ msgid "Kagamiin~ (Portuguese translation)" +#~ msgstr "Kagamiin~ (перевод на португальский язык)" + +#~ msgid "freq-mod (Polish translation)" +#~ msgstr "freq-mod (перевод на польский язык)" + +#~ msgid "SID2 emulator (modification of reSID) by LTVA" +#~ msgstr "эмулятор SID2 (модификация reSID) за авторством LTVA" + +#~ msgid "5E01 emulator (modification of NSFPlay) by Euly" +#~ msgstr "эмулятор 5E01 (модификация NSFPlay) за авторством Euly" + +#~ msgid "NEOART Costa Rica" +#~ msgstr "NEOART Costa Rica" + +#~ msgid "Xenium Demoparty" +#~ msgstr "Демопати Xenium" + +#~ msgid "" +#~ "\n" +#~ "quiet" +#~ msgstr "" +#~ "\n" +#~ "тихо" + +#~ msgid "Stop NES pulse channels hardware sweep on new note" +#~ msgstr "" +#~ "Останавливать аппаратное портаменто на каналах импульсов NES при начале " +#~ "новой ноты" + +#~ msgid "Do not stop volume slide after reaching zero or full volume" +#~ msgstr "" +#~ "Не останавливать эффект изменения громкости при достижении нулевой или " +#~ "максимальной громкости" + +#~ msgid "Stop E1xy/E2xy effects on new note" +#~ msgstr "Останавливать эффекты E1xy/E2xy на новой ноте" + +#~ msgid "Slower 0Axy volume slide" +#~ msgstr "Замедление изменения громкости эффектом 0Axy" + +#~ msgid "%.2X: " +#~ msgstr "%.2X: <НЕДЕЙСТВ.>" + +#~ msgid "clone pattern" +#~ msgstr "клонировать паттерн" + +#~ msgid "File##menubar" +#~ msgstr "Файл##menubar" + +#~ msgid "file##menubar" +#~ msgstr "файл##menubar" + +#~ msgid "export .dmf (1.1.3+)..." +#~ msgstr "экспорт .dmf (1.1.3+)..." + +#~ msgid "export .dmf (1.0/legacy)..." +#~ msgstr "экспорт .dmf (1.0/legacy)..." + +#~ msgid "export Furnace module..." +#~ msgstr "экспорт модуля Furnace..." + +#~ msgid "cannot add chip! (" +#~ msgstr "не могу добавить чип! (" + +#~ msgid "cannot remove chip! (" +#~ msgstr "не могу убрать чип! (" + +#~ msgid "cannot change chip! (" +#~ msgstr "не могу сменить чип! (" + +#~ msgid "Unsaved changes! Save before quitting?" +#~ msgstr "Остались несохранённые изменения! Сохранить их перед выходом?" + +#~ msgid "Edit##menubar" +#~ msgstr "Правка##menubar" + +#~ msgid "edit##menubar" +#~ msgstr "правка##menubar" + +#~ msgid "Settings##menubar" +#~ msgstr "Настройки##menubar" + +#~ msgid "settings##menubar" +#~ msgstr "настройки##menubar" + +#~ msgid "Window##menubar" +#~ msgstr "Окно##menubar" + +#~ msgid "window##menubar" +#~ msgstr "окно##menubar" + +#~ msgid "Help##menubar" +#~ msgstr "Справка##menubar" + +#~ msgid "help##menubar" +#~ msgstr "справка##menubar" + +#~ msgid "" +#~ "there were some errors while loading samples:\n" +#~ "#sggu" +#~ msgstr "при загрузке сэмплов возникли следующие ошибки:\n" + +#~ msgid "" +#~ "there were some warnings/errors while loading instruments:\n" +#~ "#sggu" +#~ msgstr "" +#~ "при загрузке инструментов возникли следующие ошибки и предупреждения:\n" + +#~ msgid "" +#~ "> %s: cannot load instrument! (%s)\n" +#~ "#sggu" +#~ msgstr "> %s: не могу загрузить инструмент! (%s)\n" + +#~ msgid "cannot load instrument! (" +#~ msgstr "не могу загрузить инструмент! (" + +#~ msgid "cannot load wavetable! (" +#~ msgstr "не могу загрузить волновую таблицу! (" + +#~ msgid "could not write tildearrow version Furnace module! (%s)" +#~ msgstr "не удалось записать файл модуля для версии tildearrow! (%s)" + +#~ msgid "Rendering...###Rendering..." +#~ msgstr "Рендер...###Rendering..." + +#~ msgid "New Song###New Song" +#~ msgstr "Новый трек###New Song" + +#~ msgid "Export###Export" +#~ msgstr "Экспорт###Export" + +#~ msgid "Error###Error" +#~ msgstr "Ошибка###Error" + +#~ msgid "Warning###Warning" +#~ msgstr "Внимание###Warning" + +#~ msgid "Select Instrument###Select Instrument" +#~ msgstr "Выберите инструмент###Select Instrument" + +#~ msgid "Import Raw Sample###Import Raw Sample" +#~ msgstr "Импортировать сырые данные сэмпла###Import Raw Sample" + +#~ msgid "%.0fµs" +#~ msgstr "%.0f мс" + +#~ msgid "could not init renderer! %s" +#~ msgstr "не получилось инициализировать движок отрисовки! %s" + +#~ msgid "" +#~ "\n" +#~ "the render driver has been set to a safe value. please restart Furnace." +#~ msgstr "" +#~ "\n" +#~ "движок отрисовки был сброшен до безопасного. пожалуйста, перезапустите " +#~ "Furnace." + +#~ msgid "Beeper" +#~ msgstr "Пищалка" + +#~ msgid "1-bit PCM" +#~ msgstr "1-битная ИКМ" + +#~ msgid "1-bit DPCM" +#~ msgstr "1-битная ДИКМ" + +#~ msgid "8-bit PCM" +#~ msgstr "8-битная ИКМ" + +#~ msgid "8-bit µ-law PCM" +#~ msgstr "8-битная ИКМ (µ-закон)" + +#~ msgid "16-bit PCM" +#~ msgstr "16-битная ИКМ" + +#~ msgid "Clone pattern" +#~ msgstr "Клонировать паттерн" + +#~ msgid "Export instrument (.dmp)" +#~ msgstr "Экспорт инструмента (.dmp)" + +#~ msgid "Paste wavetables from clipboard" +#~ msgstr "Вставить волновые таблицы из буфера обмена" + +#~ msgid "Paste local wavetables from clipboard" +#~ msgstr "Вставить локальные волновые таблицы из буфера обмена" + +#~ msgid "Modern/fantasy" +#~ msgstr "Совр./вымышл." + +#~ msgid "Mobile Edit###MobileEdit" +#~ msgstr "Мобильное меню редактирования###MobileEdit" + +#~ msgid "Mobile Controls###Mobile Controls" +#~ msgstr "Мобильное меню управления###Mobile Controls" + +#~ msgid "Mobile Menu###Mobile Menu" +#~ msgstr "Мобильное меню###Mobile Menu" + +#~ msgid "Legacy .dmf" +#~ msgstr ".dmf (legacy)" + +#~ msgid "Done! Baked %d file." +#~ msgid_plural "Done! Baked %d files." +#~ msgstr[0] "Готово! Создан %d файл." +#~ msgstr[1] "Готово! Создано %d файла." +#~ msgstr[2] "Готово! Создано %d файлов." + +#~ msgid "Play/Edit Controls###Play/Edit Controls" +#~ msgstr "Управл. воспр./ред.###Play/Edit Controls" + +#~ msgid "Play Controls###Play Controls" +#~ msgstr "Управление воспроизведением###Play Controls" + +#~ msgid "Edit Controls###Edit Controls" +#~ msgstr "Управление редактированием###Edit Controls" + +#~ msgid "Effect List###Effect List" +#~ msgstr "Список эффектов###Effect List" + +#~ msgid "DefleMask file (1.1.3+)" +#~ msgstr "Файл DefleMask (1.1.3+)" + +#~ msgid "DefleMask file (1.0/legacy)" +#~ msgstr "Файл DefleMask (1.0/legacy)" + +#~ msgid "DMF (1.0/legacy)" +#~ msgstr "DMF (1.0/legacy)" + +#~ msgid "Furnace" +#~ msgstr "Furnace" + +#~ msgid "Find/Replace###Find/Replace" +#~ msgstr "Найти/Заменить###Find/Replace" + +#~ msgid "Grooves###Grooves" +#~ msgstr "Ритм-паттерны###Grooves" + +#~ msgid "export .dmp..." +#~ msgstr "экспорт .dmp..." + +#~ msgid "Instrument Editor###Instrument Editor" +#~ msgstr "Ред. инструментов###Instrument Editor" + +#~ msgid "Memory Composition###Memory Composition" +#~ msgstr "Содержание памяти###Memory Composition" + +#~ msgid "%d-%d ($%x-$%x): %d bytes ($%x)" +#~ msgstr "%d-%d ($%x-$%x): %d байт ($%x)" + +#~ msgid "%d-%d ($%x-$%x): %dK ($%x)" +#~ msgstr "%d-%d ($%x-$%x): %d КиБ ($%x)" + +#~ msgid "Oscilloscope###Oscilloscope" +#~ msgstr "Осциллограф###Oscilloscope" + +#~ msgid "Pattern Manager###Pattern Manager" +#~ msgstr "Менеджер паттернов###Pattern Manager" + +#~ msgid "Pattern###Pattern" +#~ msgstr "Паттерны###Pattern" + +#~ msgid "Piano###Piano" +#~ msgstr "Клав. пианино###Piano" + +#~ msgid "Input Pad###Input Pad" +#~ msgstr "Панель ввода###Input Pad" + +#~ msgid "Game consoles" +#~ msgstr "Игровые консоли" + +#~ msgid "let's play some chiptune making games!" +#~ msgstr "давайте поиграем в создание чиптюнов!" + +#~ msgid "Sega Genesis (extended channel 3)" +#~ msgstr "Sega Genesis (расширенный 3-ий канал)" + +#~ msgid "Sega Genesis (DualPCM, extended channel 3)" +#~ msgstr "Sega Genesis (DualPCM, расширенный 3-ий канал)" + +#~ msgid "Sega Genesis (with Sega CD)" +#~ msgstr "Sega Genesis (с Sega CD)" + +#~ msgid "Sega Genesis (extended channel 3 with Sega CD)" +#~ msgstr "Sega Genesis (расширенный 3-ий канал с Sega CD)" + +#~ msgid "Sega Genesis (CSM with Sega CD)" +#~ msgstr "Sega Genesis (CSM с Sega CD)" + +#~ msgid "Sega Master System (with FM expansion)" +#~ msgstr "Sega Master System (с FM-расширением)" + +#~ msgid "Sega Master System (with FM expansion in drums mode)" +#~ msgstr "Sega Master System (с FM-расширением в режиме ударных)" + +#~ msgid "Game Boy Advance (no software mixing)" +#~ msgstr "Game Boy Advance (без программного микширования)" + +#~ msgid "Game Boy Advance (with MinMod)" +#~ msgstr "Game Boy Advance (с драйвером MinMod)" + +#~ msgid "Famicom with Konami VRC6" +#~ msgstr "Famicom с Konami VRC6" + +#~ msgid "Famicom with Konami VRC7" +#~ msgstr "Famicom с Konami VRC7" + +#~ msgid "Famicom with MMC5" +#~ msgstr "Famicom с MMC5" + +#~ msgid "Famicom with Sunsoft 5B" +#~ msgstr "Famicom с Sunsoft 5B" + +#~ msgid "Famicom with Namco 163" +#~ msgstr "Famicom с Namco 163" + +#~ msgid "Neo Geo AES (extended channel 2)" +#~ msgstr "Neo Geo AES (расширенный 2-ой канал)" + +#~ msgid "Neo Geo AES (extended channel 2 and CSM)" +#~ msgstr "Neo Geo AES (расширенный 2-ой канал и CSM)" + +#~ msgid "Computers" +#~ msgstr "Компьютеры" + +#~ msgid "let's get to work on chiptune today." +#~ msgstr "давайте сегодня поработаем над чиптюнами." + +#~ msgid "Commodore 64 (C64, 6581 SID + Sound Expander in drums mode)" +#~ msgstr "Commodore 64 (C64, 6581 SID + Sound Expander в режиме ударных)" + +#~ msgid "Commodore 64 (C64, 8580 SID + Sound Expander in drums mode)" +#~ msgstr "Commodore 64 (C64, 8580 SID + Sound Expander в режиме ударных)" + +#~ msgid "Commodore 64 (C64, 6581 SID + FM-YAM in drums mode)" +#~ msgstr "Commodore 64 (C64, 6581 SID + FM-YAM в режиме ударных)" + +#~ msgid "Commodore 64 (C64, 8580 SID + FM-YAM in drums mode)" +#~ msgstr "Commodore 64 (C64, 8580 SID + FM-YAM в режиме ударных)" + +#~ msgid "MSX + MSX-AUDIO (drums mode)" +#~ msgstr "MSX + MSX-AUDIO (в режиме ударных)" + +#~ msgid "MSX + MSX-MUSIC (drums mode)" +#~ msgstr "MSX + MSX-MUSIC (в режиме ударных)" + +#~ msgid "MSX + Neotron (extended channel 2)" +#~ msgstr "MSX + Neotron (расширенный 2-ой канал)" + +#~ msgid "MSX + Neotron (extended channel 2 and CSM)" +#~ msgstr "MSX + Neotron (расширенный 2-ой канал и CSM)" + +#~ msgid "MSX + Neotron (with YM2610B)" +#~ msgstr "MSX + Neotron (с YM2610B)" + +#~ msgid "MSX + Neotron (with YM2610B; extended channel 3)" +#~ msgstr "MSX + Neotron (с YM2610B; расширенный 3-ий канал 3)" + +#~ msgid "MSX + Neotron (with YM2610B; extended channel 3 and CSM)" +#~ msgstr "MSX + Neotron (с YM2610B; расширенный 3-ий канал и CSM)" + +#~ msgid "NEC PC-88 (with PC-8801-10)" +#~ msgstr "NEC PC-88 (с PC-8801-10)" + +#~ msgid "NEC PC-88 (with PC-8801-11)" +#~ msgstr "NEC PC-88 (с PC-8801-11)" + +#~ msgid "NEC PC-88 (with PC-8801-11; extended channel 3)" +#~ msgstr "NEC PC-88 (с PC-8801-11; расширенный 3-ий канал)" + +#~ msgid "NEC PC-88 (with PC-8801-11; extended channel 3 and CSM)" +#~ msgstr "NEC PC-88 (с PC-8801-11; расширенный 3-ий канал и CSM)" + +#~ msgid "NEC PC-88 (with PC-8801-23)" +#~ msgstr "NEC PC-88 (с PC-8801-23)" + +#~ msgid "NEC PC-88 (with PC-8801-23; extended channel 3)" +#~ msgstr "NEC PC-88 (с PC-8801-23; расширенный 3-ий канал)" + +#~ msgid "NEC PC-88 (with PC-8801-23; extended channel 3 and CSM)" +#~ msgstr "NEC PC-88 (с PC-8801-23; расширенный 3-ий канал и CSM)" + +#~ msgid "NEC PC-88 (with HMB-20 HIBIKI-8800)" +#~ msgstr "NEC PC-88 (с HMB-20 HIBIKI-8800)" + +#~ msgid "NEC PC-8801mk2SR (with PC-8801-10)" +#~ msgstr "NEC PC-8801mk2SR (с PC-8801-10)" + +#~ msgid "NEC PC-8801mk2SR (with PC-8801-10; extended channel 3)" +#~ msgstr "NEC PC-8801mk2SR (с PC-8801-10; расширенный 3-ий канал)" + +#~ msgid "NEC PC-8801mk2SR (with PC-8801-10; extended channel 3 and CSM)" +#~ msgstr "NEC PC-8801mk2SR (с PC-8801-10; расширенный 3-ий канал и CSM)" + +#~ msgid "NEC PC-8801mk2SR (with PC-8801-11)" +#~ msgstr "NEC PC-8801mk2SR (с PC-8801-11)" + +#~ msgid "" +#~ "NEC PC-8801mk2SR (with PC-8801-11; extended channel 3 on internal OPN)" +#~ msgstr "" +#~ "NEC PC-8801mk2SR (с PC-8801-11; расширенный 3-ий канал на внутреннем чипе " +#~ "OPN)" + +#~ msgid "" +#~ "NEC PC-8801mk2SR (with PC-8801-11; extended channel 3 on external OPN)" +#~ msgstr "" +#~ "NEC PC-8801mk2SR (с PC-8801-11; расширенный 3-ий канал на внешнем чипе " +#~ "OPN)" + +#~ msgid "NEC PC-8801mk2SR (with PC-8801-11; extended channel 3 on both OPNs)" +#~ msgstr "" +#~ "NEC PC-8801mk2SR (с PC-8801-11; расширенный 3-ий канал на обоих чипах OPN)" + +#~ msgid "" +#~ "NEC PC-8801mk2SR (with PC-8801-11; extended channel 3 and CSM on both " +#~ "OPNs)" +#~ msgstr "" +#~ "NEC PC-8801mk2SR (с PC-8801-11; расширенный 3-ий канал и CSM на обоих " +#~ "чипах OPN)" + +#~ msgid "NEC PC-8801mk2SR (with PC-8801-23)" +#~ msgstr "NEC PC-8801mk2SR (с PC-8801-23)" + +#~ msgid "" +#~ "NEC PC-8801mk2SR (with PC-8801-23; extended channel 3 on internal OPN)" +#~ msgstr "" +#~ "NEC PC-8801mk2SR (с PC-8801-23; расширенный 3-ий канал на внутреннем чипе " +#~ "OPN)" + +#~ msgid "" +#~ "NEC PC-8801mk2SR (with PC-8801-23; extended channel 3 and CSM on internal " +#~ "OPN)" +#~ msgstr "" +#~ "NEC PC-8801mk2SR (с PC-8801-23; расширенный 3-ий канал и CSM на " +#~ "внутреннем чипе OPN)" + +#~ msgid "" +#~ "NEC PC-8801mk2SR (with PC-8801-23; extended channel 3 on external OPN)" +#~ msgstr "" +#~ "NEC PC-8801mk2SR (с PC-8801-23; расширенный 3-ий канал на внешнем чипе " +#~ "OPN)" + +#~ msgid "" +#~ "NEC PC-8801mk2SR (with PC-8801-23; extended channel 3 and CSM on external " +#~ "OPN)" +#~ msgstr "" +#~ "NEC PC-8801mk2SR (с PC-8801-23; расширенный 3-ий канал и CSM на внешнем " +#~ "чипе OPN)" + +#~ msgid "NEC PC-8801mk2SR (with PC-8801-23; extended channel 3 on both OPNs)" +#~ msgstr "NEC PC-8801mk2SR (с PC-8801-23; extended channel 3 on both OPNs)" + +#~ msgid "" +#~ "NEC PC-8801mk2SR (with PC-8801-23; extended channel 3 and CSM on both " +#~ "OPNs)" +#~ msgstr "" +#~ "NEC PC-8801mk2SR (с PC-8801-23; расширенный 3-ий канал и CSM на обоих " +#~ "чипах OPN)" + +#~ msgid "NEC PC-8801mk2SR (with HMB-20 HIBIKI-8800)" +#~ msgstr "NEC PC-8801mk2SR (с HMB-20 HIBIKI-8800)" + +#~ msgid "NEC PC-8801mk2SR (with HMB-20 HIBIKI-8800; extended channel 3)" +#~ msgstr "NEC PC-8801mk2SR (с HMB-20 HIBIKI-8800; расширенный 3-ий канал)" + +#~ msgid "" +#~ "NEC PC-8801mk2SR (with HMB-20 HIBIKI-8800; extended channel 3 and CSM)" +#~ msgstr "" +#~ "NEC PC-8801mk2SR (с HMB-20 HIBIKI-8800; расширенный 3-ий канал и CSM)" + +#~ msgid "NEC PC-8801FA (with PC-8801-10)" +#~ msgstr "NEC PC-8801FA (с PC-8801-10)" + +#~ msgid "NEC PC-8801FA (with PC-8801-10; extended channel 3)" +#~ msgstr "NEC PC-8801FA (с PC-8801-10; расширенный 3-ий канал)" + +#~ msgid "NEC PC-8801FA (with PC-8801-11)" +#~ msgstr "NEC PC-8801FA (с PC-8801-11)" + +#~ msgid "NEC PC-8801FA (with PC-8801-11; extended channel 3 on internal OPN)" +#~ msgstr "" +#~ "NEC PC-8801FA (с PC-8801-11; расширенный 3-ий канал на внутреннем чипе " +#~ "OPN)" + +#~ msgid "NEC PC-8801FA (with PC-8801-11; extended channel 3 on external OPN)" +#~ msgstr "" +#~ "NEC PC-8801FA (с PC-8801-11; расширенный 3-ий канал на внешнем чипе OPN)" + +#~ msgid "" +#~ "NEC PC-8801FA (with PC-8801-11; extended channel 3 and CSM on external " +#~ "OPN)" +#~ msgstr "" +#~ "NEC PC-8801FA (с PC-8801-11; расширенный 3-ий канал и CSM на внешнем чипе " +#~ "OPN)" + +#~ msgid "NEC PC-8801FA (with PC-8801-11; extended channel 3 on both OPNs)" +#~ msgstr "" +#~ "NEC PC-8801FA (с PC-8801-11; расширенный 3-ий канал на обоих чипах OPN)" + +#~ msgid "" +#~ "NEC PC-8801FA (with PC-8801-11; extended channel 3 and CSM on both OPNs)" +#~ msgstr "" +#~ "NEC PC-8801FA (с PC-8801-11; расширенный 3-ий канал и CSM на обоих чипах " +#~ "OPN)" + +#~ msgid "NEC PC-8801FA (with PC-8801-23)" +#~ msgstr "NEC PC-8801FA (с PC-8801-23)" + +#~ msgid "NEC PC-8801FA (with PC-8801-23; extended channel 3 on internal OPN)" +#~ msgstr "" +#~ "NEC PC-8801FA (с PC-8801-23; расширенный 3-ий канал на внутреннем чипе " +#~ "OPN)" + +#~ msgid "" +#~ "NEC PC-8801FA (with PC-8801-23; extended channel 3 and CSM on internal " +#~ "OPN)" +#~ msgstr "" +#~ "NEC PC-8801FA (с PC-8801-23; расширенный 3-ий канал и CSM на внутреннем " +#~ "чипе OPN)" + +#~ msgid "NEC PC-8801FA (with PC-8801-23; extended channel 3 on external OPN)" +#~ msgstr "" +#~ "NEC PC-8801FA (с PC-8801-23; расширенный 3-ий канал на внешнем чипе OPN)" + +#~ msgid "" +#~ "NEC PC-8801FA (with PC-8801-23; extended channel 3 and CSM on external " +#~ "OPN)" +#~ msgstr "" +#~ "NEC PC-8801FA (с PC-8801-23; расширенный 3-ий канал и CSM на внешнем чипе " +#~ "OPN)" + +#~ msgid "NEC PC-8801FA (with PC-8801-23; extended channel 3 on both OPNs)" +#~ msgstr "" +#~ "NEC PC-8801FA (с PC-8801-23; расширенный 3-ий канал на обоих чипах OPN)" + +#~ msgid "" +#~ "NEC PC-8801FA (with PC-8801-23; extended channel 3 and CSM on both OPNs)" +#~ msgstr "" +#~ "NEC PC-8801FA (с PC-8801-23; расширенный 3-ий канал и CSM на обоих чипах " +#~ "OPN)" + +#~ msgid "NEC PC-8801FA (with HMB-20 HIBIKI-8800)" +#~ msgstr "NEC PC-8801FA (с HMB-20 HIBIKI-8800)" + +#~ msgid "NEC PC-8801FA (with HMB-20 HIBIKI-8800; extended channel 3)" +#~ msgstr "NEC PC-8801FA (с HMB-20 HIBIKI-8800; расширенный 3-ий канал)" + +#~ msgid "NEC PC-8801FA (with HMB-20 HIBIKI-8800; extended channel 3 and CSM)" +#~ msgstr "NEC PC-8801FA (с HMB-20 HIBIKI-8800; расширенный 3-ий канал и CSM)" + +#~ msgid "NEC PC-98 (with PC-9801-26/K)" +#~ msgstr "NEC PC-98 (с PC-9801-26/K)" + +#~ msgid "NEC PC-98 (with PC-9801-26/K; extended channel 3)" +#~ msgstr "NEC PC-98 (с PC-9801-26/K; расширенный 3-ий канал)" + +#~ msgid "NEC PC-98 (with PC-9801-26/K; extended channel 3 and CSM)" +#~ msgstr "NEC PC-98 (с PC-9801-26/K; расширенный 3-ий канал и CSM)" + +#~ msgid "NEC PC-98 (with Sound Orchestra)" +#~ msgstr "NEC PC-98 (с Sound Orchestra)" + +#~ msgid "NEC PC-98 (with Sound Orchestra; extended channel 3)" +#~ msgstr "NEC PC-98 (с Sound Orchestra; расширенный 3-ий канал)" + +#~ msgid "NEC PC-98 (with Sound Orchestra; extended channel 3 and CSM)" +#~ msgstr "NEC PC-98 (с Sound Orchestra; расширенный 3-ий канал и CSM)" + +#~ msgid "NEC PC-98 (with Sound Orchestra in drums mode)" +#~ msgstr "NEC PC-98 (с Sound Orchestra в режиме ударных)" + +#~ msgid "NEC PC-98 (with Sound Orchestra in drums mode; extended channel 3)" +#~ msgstr "" +#~ "NEC PC-98 (с Sound Orchestra в режиме ударных; расширенный 3-ий канал)" + +#~ msgid "" +#~ "NEC PC-98 (with Sound Orchestra in drums mode; extended channel 3 and CSM)" +#~ msgstr "" +#~ "NEC PC-98 (с Sound Orchestra в режиме ударных; расширенный 3-ий канал и " +#~ "CSM)" + +#~ msgid "NEC PC-98 (with Sound Orchestra V)" +#~ msgstr "NEC PC-98 (с Sound Orchestra V)" + +#~ msgid "NEC PC-98 (with Sound Orchestra V; extended channel 3)" +#~ msgstr "NEC PC-98 (с Sound Orchestra V; расширенный 3-ий канал)" + +#~ msgid "NEC PC-98 (with Sound Orchestra V; extended channel 3 and CSM)" +#~ msgstr "NEC PC-98 (с Sound Orchestra V; расширенный 3-ий канал и CSM)" + +#~ msgid "NEC PC-98 (with Sound Orchestra V in drums mode)" +#~ msgstr "NEC PC-98 (с Sound Orchestra V в режиме ударных)" + +#~ msgid "NEC PC-98 (with Sound Orchestra V in drums mode; extended channel 3)" +#~ msgstr "" +#~ "NEC PC-98 (с Sound Orchestra V в режиме ударных; расширенный 3-ий канал)" + +#~ msgid "" +#~ "NEC PC-98 (with Sound Orchestra V in drums mode; extended channel 3 and " +#~ "CSM)" +#~ msgstr "" +#~ "NEC PC-98 (с Sound Orchestra V в режиме ударных; расширенный 3-ий канал и " +#~ "CSM)" + +#~ msgid "NEC PC-98 (with PC-9801-86)" +#~ msgstr "NEC PC-98 (с PC-9801-86)" + +#~ msgid "NEC PC-98 (with PC-9801-86; extended channel 3)" +#~ msgstr "NEC PC-98 (с PC-9801-86; расширенный 3-ий канал)" + +#~ msgid "NEC PC-98 (with PC-9801-86; extended channel 3 and CSM)" +#~ msgstr "NEC PC-98 (с PC-9801-86; расширенный 3-ий канал и CSM)" + +#~ msgid "NEC PC-98 (with PC-9801-86) stereo" +#~ msgstr "NEC PC-98 (с PC-9801-86) стерео" + +#~ msgid "NEC PC-98 (with PC-9801-86; extended channel 3) stereo" +#~ msgstr "NEC PC-98 (с PC-9801-86; расширенный 3-ий канал) стерео" + +#~ msgid "NEC PC-98 (with PC-9801-86; extended channel 3 and CSM) stereo" +#~ msgstr "NEC PC-98 (с PC-9801-86; расширенный 3-ий канал и CSM) стерео" + +#~ msgid "NEC PC-98 (with PC-9801-73)" +#~ msgstr "NEC PC-98 (с PC-9801-73)" + +#~ msgid "NEC PC-98 (with PC-9801-73; extended channel 3)" +#~ msgstr "NEC PC-98 (с PC-9801-73; расширенный 3-ий канал)" + +#~ msgid "NEC PC-98 (with PC-9801-73; extended channel 3 and CSM)" +#~ msgstr "NEC PC-98 (с PC-9801-73; расширенный 3-ий канал и CSM)" + +#~ msgid "" +#~ "NEC PC-98 (with Sound Blaster 16 for PC-9800 w/PC-9801-26/K compatible)" +#~ msgstr "" +#~ "NEC PC-98 (с Sound Blaster 16 для PC-9800, совместимый с PC-9801-26/K)" + +#~ msgid "" +#~ "NEC PC-98 (with Sound Blaster 16 for PC-9800 w/PC-9801-26/K compatible; " +#~ "extended channel 3)" +#~ msgstr "" +#~ "NEC PC-98 (с Sound Blaster 16 для PC-9800, совместимый с PC-9801-26/K; " +#~ "расширенный 3-ий канал)" + +#~ msgid "" +#~ "NEC PC-98 (with Sound Blaster 16 for PC-9800 w/PC-9801-26/K compatible; " +#~ "extended channel 3 and CSM)" +#~ msgstr "" +#~ "NEC PC-98 (с Sound Blaster 16 для PC-9800, совместимый с PC-9801-26/K; " +#~ "расширенный 3-ий канал и CSM)" + +#~ msgid "" +#~ "NEC PC-98 (with Sound Blaster 16 for PC-9800 w/PC-9801-26/K compatible in " +#~ "drums mode)" +#~ msgstr "" +#~ "NEC PC-98 (с Sound Blaster 16 для PC-9800, совместимый с PC-9801-26/K в " +#~ "режиме ударных)" + +#~ msgid "" +#~ "NEC PC-98 (with Sound Blaster 16 for PC-9800 w/PC-9801-26/K compatible in " +#~ "drums mode; extended channel 3)" +#~ msgstr "" +#~ "NEC PC-98 (с Sound Blaster 16 для PC-9800, совместимый с PC-9801-26/K в " +#~ "режиме ударных; расширенный 3-ий канал)" + +#~ msgid "" +#~ "NEC PC-98 (with Sound Blaster 16 for PC-9800 w/PC-9801-26/K compatible in " +#~ "drums mode; extended channel 3 and CSM)" +#~ msgstr "" +#~ "NEC PC-98 (с Sound Blaster 16 для PC-9800, совместимый с PC-9801-26/K в " +#~ "режиме ударных; расширенный 3-ий канал и CSM)" + +#~ msgid "ZX Spectrum (48K, SFX-like engine)" +#~ msgstr "ZX Spectrum (48K, драйвер типа SFX)" + +#~ msgid "ZX Spectrum (48K, QuadTone engine)" +#~ msgstr "ZX Spectrum (48K, драйвер QuadTone)" + +#~ msgid "ZX Spectrum (128K) with TurboSound" +#~ msgstr "ZX Spectrum (128K) с TurboSound" + +#~ msgid "ZX Spectrum (128K) with TurboSound FM" +#~ msgstr "ZX Spectrum (128K) с TurboSound FM" + +#~ msgid "" +#~ "ZX Spectrum (128K) with TurboSound FM (extended channel 3 on first OPN)" +#~ msgstr "" +#~ "ZX Spectrum (128K) с TurboSound FM (расширенный 3-ий канал на первом чипе " +#~ "OPN)" + +#~ msgid "" +#~ "ZX Spectrum (128K) with TurboSound FM (extended channel 3 and CSM on " +#~ "first OPN)" +#~ msgstr "" +#~ "ZX Spectrum (128K) с TurboSound FM (расширенный 3-ий канал и CSM на " +#~ "первом чипе OPN)" + +#~ msgid "" +#~ "ZX Spectrum (128K) with TurboSound FM (extended channel 3 on second OPN)" +#~ msgstr "" +#~ "ZX Spectrum (128K) с TurboSound FM (расширенный 3-ий канал на втором чипе " +#~ "OPN)" + +#~ msgid "" +#~ "ZX Spectrum (128K) with TurboSound FM (extended channel 3 and CSM on " +#~ "second OPN)" +#~ msgstr "" +#~ "ZX Spectrum (128K) с TurboSound FM (расширенный 3-ий канал и CSM на " +#~ "втором чипе OPN)" + +#~ msgid "" +#~ "ZX Spectrum (128K) with TurboSound FM (extended channel 3 on both OPNs)" +#~ msgstr "" +#~ "ZX Spectrum (128K) с TurboSound FM (расширенный 3-ий канал на обоих чипах " +#~ "OPN)" + +#~ msgid "" +#~ "ZX Spectrum (128K) with TurboSound FM (extended channel 3 and CSM on both " +#~ "OPNs)" +#~ msgstr "" +#~ "ZX Spectrum (128K) с TurboSound FM (расширенный 3-ий канал и CSM на обоих " +#~ "чипах OPN)" + +#~ msgid "Atari 800 (stereo)" +#~ msgstr "Atari 800 (стерео)" + +#~ msgid "PC (beeper)" +#~ msgstr "PC (пищалка)" + +#~ msgid "PC + AdLib (drums mode)" +#~ msgstr "PC + AdLib (в режиме ударных)" + +#~ msgid "PC + Sound Blaster (drums mode)" +#~ msgstr "PC + Sound Blaster (в режиме ударных)" + +#~ msgid "PC + Sound Blaster w/Game Blaster Compatible" +#~ msgstr "PC + Sound Blaster совм. с Game Blaster" + +#~ msgid "PC + Sound Blaster w/Game Blaster Compatible (drums mode)" +#~ msgstr "PC + Sound Blaster совм. с Game Blaster (в режиме ударных)" + +#~ msgid "PC + Sound Blaster Pro (drums mode)" +#~ msgstr "PC + Sound Blaster Pro (в режиме ударных)" + +#~ msgid "PC + Sound Blaster Pro 2 (drums mode)" +#~ msgstr "PC + Sound Blaster Pro 2 (в режиме ударных)" + +#~ msgid "PC + ESS AudioDrive ES1488 (native ESFM mode)" +#~ msgstr "PC + ESS AudioDrive ES1488 (нативный режим ESFM)" + +#~ msgid "Sharp X1 + FM addon" +#~ msgstr "Sharp X1 + FM-дополнение" + +#~ msgid "FM Towns (extended channel 3)" +#~ msgstr "FM Towns (расширенный 3-ий канал)" + +#~ msgid "Commander X16 (VERA only)" +#~ msgstr "Commander X16 (только VERA)" + +#~ msgid "Commander X16 (with OPM)" +#~ msgstr "Commander X16 (с OPM)" + +#~ msgid "Commander X16 (with Twin OPL3)" +#~ msgstr "Commander X16 (с Twin OPL3)" + +#~ msgid "Arcade systems" +#~ msgstr "Аркадные автоматы" + +#~ msgid "INSERT COIN" +#~ msgstr "ВСТАВЬТЕ ЖЕТОН" + +#~ msgid "Williams/Midway Y/T unit w/ADPCM sound board" +#~ msgstr "Автомат Williams/Midway Y/T со звуковой картой АДИКМ" + +#~ msgid "Konami Battlantis (drums mode on first OPL2)" +#~ msgstr "Konami Battlantis (первый OPL2 в режиме ударных)" + +#~ msgid "Konami Battlantis (drums mode on second OPL2)" +#~ msgstr "Konami Battlantis (второй OPL2 в режиме ударных)" + +#~ msgid "Konami Battlantis (drums mode on both OPL2s)" +#~ msgstr "Konami Battlantis (оба OPL2 в режиме ударных)" + +#~ msgid "Konami Haunted Castle (drums mode)" +#~ msgstr "Konami Haunted Castle (в режиме ударных)" + +#~ msgid "Konami S.P.Y. (drums mode)" +#~ msgstr "Konami S.P.Y. (в режиме ударных)" + +#~ msgid "Konami Rollergames (drums mode)" +#~ msgstr "Konami Rollergames (в режиме ударных)" + +#~ msgid "Sega System E (with FM expansion)" +#~ msgstr "Sega System E (с FM-расширением)" + +#~ msgid "Sega System E (with FM expansion in drums mode)" +#~ msgstr "Sega System E (с FM-расширением в режиме ударных)" + +#~ msgid "Sega Hang-On (extended channel 3)" +#~ msgstr "Sega Hang-On (расширенный 3-ий канал)" + +#~ msgid "Sega Hang-On (extended channel 3 and CSM)" +#~ msgstr "Sega Hang-On (расширенный 3-ий канал и CSM)" + +#~ msgid "Sega System 18 (extended channel 3 on first OPN2C)" +#~ msgstr "Sega System 18 (расширенный 3-ий канал на первом OPN2C)" + +#~ msgid "Sega System 18 (extended channel 3 and CSM on first OPN2C)" +#~ msgstr "Sega System 18 (расширенный 3-ий канал и CSM на первом OPN2C)" + +#~ msgid "Sega System 18 (extended channel 3 on second OPN2C)" +#~ msgstr "Sega System 18 (расширенный 3-ий канал на втором OPN2C)" + +#~ msgid "Sega System 18 (extended channel 3 and CSM on second OPN2C)" +#~ msgstr "Sega System 18 (расширенный 3-ий канал и CSM на втором OPN2C)" + +#~ msgid "Sega System 18 (extended channel 3 on both OPN2Cs)" +#~ msgstr "Sega System 18 (расширенный 3-ий канал на обоих чипах OPN2C)" + +#~ msgid "Sega System 18 (extended channel 3 and CSM on both OPN2Cs)" +#~ msgstr "Sega System 18 (расширенный 3-ий канал и CSM на обоих чипах OPN2C)" + +#~ msgid "Sega System 32 (extended channel 3 on first OPN2C)" +#~ msgstr "Sega System 32 (расширенный 3-ий канал на первом OPN2C)" + +#~ msgid "Sega System 32 (extended channel 3 and CSM on first OPN2C)" +#~ msgstr "Sega System 32 (расширенный 3-ий канал и CSM на первом OPN2C)" + +#~ msgid "Sega System 32 (extended channel 3 on second OPN2C)" +#~ msgstr "Sega System 32 (расширенный 3-ий канал на втором OPN2C)" + +#~ msgid "Sega System 32 (extended channel 3 and CSM on second OPN2C)" +#~ msgstr "Sega System 32 (расширенный 3-ий канал и CSM на втором OPN2C)" + +#~ msgid "Sega System 32 (extended channel 3 on both OPN2Cs)" +#~ msgstr "Sega System 32 (расширенный 3-ий канал на обоих чипах OPN2C)" + +#~ msgid "Sega System 32 (extended channel 3 and CSM on both OPN2Cs)" +#~ msgstr "Sega System 32 (расширенный 3-ий канал и CSM на обоих чипах OPN2C)" + +#~ msgid "Capcom Arcade" +#~ msgstr "Capcom Arcade" + +#~ msgid "Capcom Arcade (extended channel 3 on first OPN)" +#~ msgstr "Capcom Arcade (расширенный 3-ий канал на первом OPN)" + +#~ msgid "Capcom Arcade (extended channel 3 and CSM on first OPN)" +#~ msgstr "Capcom Arcade (расширенный 3-ий канал на втором OPN)" + +#~ msgid "Capcom Arcade (extended channel 3 on second OPN)" +#~ msgstr "Capcom Arcade (расширенный 3-ий канал и CSM на втором OPN)" + +#~ msgid "Capcom Arcade (extended channel 3 and CSM on second OPN)" +#~ msgstr "Capcom Arcade (расширенный 3-ий канал и CSM на втором OPN)" + +#~ msgid "Capcom Arcade (extended channel 3 on both OPNs)" +#~ msgstr "Capcom Arcade (расширенный 3-ий канал на обоих чипах OPN)" + +#~ msgid "Capcom Arcade (extended channel 3 and CSM on both OPNs)" +#~ msgstr "Capcom Arcade (расширенный 3-ий канал и CSM на обоих чипах OPN)" + +#~ msgid "Jaleco Ginga NinkyouDen (drums mode)" +#~ msgstr "Jaleco Ginga NinkyouDen (в режиме ударных)" + +#~ msgid "NMK 16-bit Arcade" +#~ msgstr "NMK 16-bit Arcade" + +#~ msgid "NMK 16-bit Arcade (extended channel 3)" +#~ msgstr "NMK 16-bit Arcade (расширенный 3-ий канал)" + +#~ msgid "NMK 16-bit Arcade (extended channel 3 and CSM)" +#~ msgstr "NMK 16-bit Arcade (расширенный 3-ий канал и CSM)" + +#~ msgid "NMK 16-bit Arcade (w/NMK112 bankswitching)" +#~ msgstr "NMK 16-bit Arcade (со сменой банков NMK112)" + +#~ msgid "NMK 16-bit Arcade (w/NMK112 bankswitching, extended channel 3)" +#~ msgstr "NMK 16-bit Arcade (со сменой банков NMK112, расширенный 3-ий канал)" + +#~ msgid "" +#~ "NMK 16-bit Arcade (w/NMK112 bankswitching, extended channel 3 and CSM)" +#~ msgstr "" +#~ "NMK 16-bit Arcade (со сменой банков NMK112, расширенный 3-ий канал и CSM)" + +#~ msgid "Atlus Power Instinct 2 (extended channel 3)" +#~ msgstr "Atlus Power Instinct 2 (расширенный 3-ий канал)" + +#~ msgid "Atlus Power Instinct 2 (extended channel 3 and CSM)" +#~ msgstr "Atlus Power Instinct 2 (расширенный 3-ий канал и CSM)" + +#~ msgid "Kaneko DJ Boy (extended channel 3)" +#~ msgstr "Kaneko DJ Boy (расширенный 3-ий канал)" + +#~ msgid "Kaneko DJ Boy (extended channel 3 and CSM)" +#~ msgstr "Kaneko DJ Boy (расширенный 3-ий канал и CSM)" + +#~ msgid "Kaneko Air Buster (extended channel 3)" +#~ msgstr "Kaneko Air Buster (расширенный 3-ий канал)" + +#~ msgid "Kaneko Air Buster (extended channel 3 and CSM)" +#~ msgstr "Kaneko Air Buster (расширенный 3-ий канал и CSM)" + +#~ msgid "Tecmo Ninja Gaiden (extended channel 3 on first OPN)" +#~ msgstr "Tecmo Ninja Gaiden (расширенный 3-ий канал на первом OPN)" + +#~ msgid "Tecmo Ninja Gaiden (extended channel 3 and CSM on first OPN)" +#~ msgstr "Tecmo Ninja Gaiden (расширенный 3-ий канал и CSM на первом OPN)" + +#~ msgid "Tecmo Ninja Gaiden (extended channel 3 on second OPN)" +#~ msgstr "Tecmo Ninja Gaiden (расширенный 3-ий канал на втором OPN)" + +#~ msgid "Tecmo Ninja Gaiden (extended channel 3 and CSM on second OPN)" +#~ msgstr "Tecmo Ninja Gaiden (расширенный 3-ий канал и CSM на втором OPN)" + +#~ msgid "Tecmo Ninja Gaiden (extended channel 3 on both OPNs)" +#~ msgstr "Tecmo Ninja Gaiden (расширенный 3-ий канал на обоих чипах OPN)" + +#~ msgid "Tecmo Ninja Gaiden (extended channel 3 and CSM on both OPNs)" +#~ msgstr "" +#~ "Tecmo Ninja Gaiden (расширенный 3-ий канал и CSM на обоих чипах OPN)" + +#~ msgid "Tecmo System (drums mode)" +#~ msgstr "Tecmo System (в режиме ударных)" + +#~ msgid "Seibu Kaihatsu Raiden (drums mode)" +#~ msgstr "Seibu Kaihatsu Raiden (в режиме ударных)" + +#~ msgid "Sunsoft Arcade" +#~ msgstr "Sunsoft Arcade" + +#~ msgid "Sunsoft Arcade (extended channel 3)" +#~ msgstr "Sunsoft Arcade (расширенный 3-ий канал)" + +#~ msgid "Sunsoft Arcade (extended channel 3 and CSM)" +#~ msgstr "Sunsoft Arcade (расширенный 3-ий канал и CSM)" + +#~ msgid "Atari Rampart (drums mode)" +#~ msgstr "Atari Rampart (в режиме ударных)" + +#~ msgid "Data East Karnov (extended channel 3)" +#~ msgstr "Data East Karnov (расширенный 3-ий канал 3)" + +#~ msgid "Data East Karnov (extended channel 3 and CSM)" +#~ msgstr "Data East Karnov (расширенный 3-ий канал и CSM)" + +#~ msgid "Data East Karnov (drums mode)" +#~ msgstr "Data East Karnov (в режиме ударных)" + +#~ msgid "Data East Karnov (extended channel 3; drums mode)" +#~ msgstr "Data East Karnov (расширенный 3-ий канал; в режиме ударных)" + +#~ msgid "Data East Karnov (extended channel 3 and CSM; drums mode)" +#~ msgstr "Data East Karnov (расширенный 3-ий канал и CSM; в режиме ударных)" + +#~ msgid "Data East Arcade" +#~ msgstr "Data East Arcade" + +#~ msgid "Data East Arcade (extended channel 3)" +#~ msgstr "Data East Arcade (расширенный 3-ий канал)" + +#~ msgid "Data East Arcade (extended channel 3 and CSM)" +#~ msgstr "Data East Arcade (расширенный 3-ий канал и CSM)" + +#~ msgid "Data East Arcade (drums mode)" +#~ msgstr "Data East Arcade (в режиме ударных)" + +#~ msgid "Data East Arcade (extended channel 3; drums mode)" +#~ msgstr "Data East Arcade (расширенный 3-ий канал; в режиме ударных)" + +#~ msgid "Data East Arcade (extended channel 3 and CSM; drums mode)" +#~ msgstr "Data East Arcade (расширенный 3-ий канал и CSM; в режиме ударных)" + +#~ msgid "Data East PCX (extended channel 3)" +#~ msgstr "Data East PCX (расширенный 3-ий канал)" + +#~ msgid "Data East PCX (extended channel 3 and CSM)" +#~ msgstr "Data East PCX (расширенный 3-ий канал и CSM)" + +#~ msgid "Data East Dark Seal (extended channel 3)" +#~ msgstr "Data East Dark Seal (расширенный 3-ий канал)" + +#~ msgid "Data East Dark Seal (extended channel 3 and CSM)" +#~ msgstr "Data East Dark Seal (расширенный 3-ий канал и CSM)" + +#~ msgid "SNK Ikari Warriors (drums mode on first OPL)" +#~ msgstr "SNK Ikari Warriors (первый OPL в режиме ударных)" + +#~ msgid "SNK Ikari Warriors (drums mode on second OPL)" +#~ msgstr "SNK Ikari Warriors (второй OPL в режиме ударных)" + +#~ msgid "SNK Ikari Warriors (drums mode on both OPLs)" +#~ msgstr "SNK Ikari Warriors (оба чипа OPL в режиме ударных)" + +#~ msgid "SNK Triple Z80 (drums mode on Y8950)" +#~ msgstr "SNK Triple Z80 (Y8950 в режиме ударных)" + +#~ msgid "SNK Triple Z80 (drums mode on OPL)" +#~ msgstr "SNK Triple Z80 (OPL в режиме ударных)" + +#~ msgid "SNK Triple Z80 (drums mode on Y8950 and OPL)" +#~ msgstr "SNK Triple Z80 (Y8950 и OPL в режиме ударных)" + +#~ msgid "SNK Chopper I (drums mode on Y8950)" +#~ msgstr "SNK Chopper I (Y8950 в режиме ударных)" + +#~ msgid "SNK Chopper I (drums mode on OPL2)" +#~ msgstr "SNK Chopper I (OPL2 в режиме ударных)" + +#~ msgid "SNK Chopper I (drums mode on Y8950 and OPL2)" +#~ msgstr "SNK Chopper I (Y8950 и OPL2 в режиме ударных)" + +#~ msgid "SNK Touchdown Fever (drums mode on OPL)" +#~ msgstr "SNK Touchdown Fever (OPL в режиме ударных)" + +#~ msgid "SNK Touchdown Fever (drums mode on Y8950)" +#~ msgstr "SNK Touchdown Fever (Y8950 в режиме ударных)" + +#~ msgid "SNK Touchdown Fever (drums mode on OPL and Y8950)" +#~ msgstr "SNK Touchdown Fever (Y8950 и OPL2 в режиме ударных)" + +#~ msgid "Alpha denshi Alpha-68K (extended channel 3)" +#~ msgstr "Alpha denshi Alpha-68K (расширенный 3-ий канал)" + +#~ msgid "Alpha denshi Alpha-68K (extended channel 3 and CSM)" +#~ msgstr "Alpha denshi Alpha-68K (расширенный 3-ий канал и CSM)" + +#~ msgid "Alpha denshi Alpha-68K (drums mode)" +#~ msgstr "Alpha denshi Alpha-68K (в режиме ударных)" + +#~ msgid "Alpha denshi Alpha-68K (extended channel 3; drums mode)" +#~ msgstr "Alpha denshi Alpha-68K (расширенный 3-ий канал; в режиме ударных)" + +#~ msgid "Alpha denshi Alpha-68K (extended channel 3 and CSM; drums mode)" +#~ msgstr "" +#~ "Alpha denshi Alpha-68K (расширенный 3-ий канал и CSM; в режиме ударных)" + +#~ msgid "Neo Geo MVS (extended channel 2)" +#~ msgstr "Neo Geo MVS (расширенный 2-ой канал)" + +#~ msgid "Neo Geo MVS (extended channel 2 and CSM)" +#~ msgstr "Neo Geo MVS (расширенный 2-ой канал и CSM)" + +#~ msgid "Namco (3-channel WSG)" +#~ msgstr "Namco (3-канальный генератор звука на волновых таблицах)" + +#~ msgid "Taito Arcade" +#~ msgstr "Taito Arcade" + +#~ msgid "Taito Arcade (extended channel 3)" +#~ msgstr "Taito Arcade (расширенный 3-ий канал)" + +#~ msgid "Taito Arcade (extended channel 3 and CSM)" +#~ msgstr "Taito Arcade (расширенный 3-ий канал и CSM)" + +#~ msgid "Seta 1 + FM addon" +#~ msgstr "Seta 1 + FM-дополнение" + +#~ msgid "Seta 1 + FM addon (extended channel 3)" +#~ msgstr "Seta 1 + FM-дополнение (расширенный 3-ий канал)" + +#~ msgid "Seta 1 + FM addon (extended channel 3 and CSM)" +#~ msgstr "Seta 1 + FM-дополнение (расширенный 3-ий канал и CSM)" + +#~ msgid "Coreland Cyber Tank (drums mode)" +#~ msgstr "Coreland Cyber Tank (в режиме ударных)" + +#~ msgid "Toaplan 1 (drums mode)" +#~ msgstr "Toaplan 1 (в режиме ударных)" + +#~ msgid "Dynax/Nakanihon 3rd generation hardware" +#~ msgstr "Аппаратная платформа 3-го поколения Dynax/Nakanihon" + +#~ msgid "Dynax/Nakanihon 3rd generation hardware (drums mode)" +#~ msgstr "" +#~ "Аппаратная платформа 3-го поколения Dynax/Nakanihon (в режиме ударных)" + +#~ msgid "Dynax/Nakanihon Real Break (drums mode)" +#~ msgstr "Dynax/Nakanihon Real Break (в режиме ударных)" + +#~ msgid "system presets that you have saved." +#~ msgstr "пресеты систем, которые вы сохранили." + +#~ msgid "" +#~ "chips which use frequency modulation (FM) to generate sound.\n" +#~ "some of these also pack more (like square and sample channels).\n" +#~ "Actually \"FM\" here stands for phase modulation,\n" +#~ "but these two are indistinguishable\n" +#~ "if you use sine waves." +#~ msgstr "" +#~ "чипы, использующую частотную модуляцию (FM-синтез) для генерации звука.\n" +#~ "в некоторых из них присутствуют и другие способы синтеза звука (каналы с " +#~ "квадратными волнами или сэмплами).\n" +#~ "На самом деле, \"FM\" здесь означает фазовую модуляцию,\n" +#~ "но они неотличимы друг от друга при использовании синусоидальных волн." + +#~ msgid "Yamaha YM2203 (extended channel 3)" +#~ msgstr "Yamaha YM2203 (расширенный 3-ий канал)" + +#~ msgid "Yamaha YM2203 (extended channel 3 and CSM)" +#~ msgstr "Yamaha YM2203 (расширенный 3-ий канал и CSM)" + +#~ msgid "Yamaha YM2608 (extended channel 3)" +#~ msgstr "Yamaha YM2608 (расширенный 3-ий канал)" + +#~ msgid "Yamaha YM2608 (extended channel 3 and CSM)" +#~ msgstr "Yamaha YM2608 (расширенный 3-ий канал и CSM)" + +#~ msgid "Yamaha YM2610 (extended channel 2)" +#~ msgstr "Yamaha YM2610 (расширенный 2-ой канал)" + +#~ msgid "Yamaha YM2610 (extended channel 2 and CSM)" +#~ msgstr "Yamaha YM2610 (расширенный 2-ой канал и CSM)" + +#~ msgid "Yamaha YM2610B (extended channel 3)" +#~ msgstr "Yamaha YM2610B (расширенный 3-ий канал)" + +#~ msgid "Yamaha YM2610B (extended channel 3 and CSM)" +#~ msgstr "Yamaha YM2610B (расширенный 3-ий канал и CSM)" + +#~ msgid "Yamaha YM2612 (extended channel 3)" +#~ msgstr "Yamaha YM2612 (расширенный 3-ий канал)" + +#~ msgid "Yamaha YM2612 (extended channel 3) with DualPCM and CSM" +#~ msgstr "Yamaha YM2612 (расширенный 3-ий канал) с DualPCM и CSM" + +#~ msgid "Yamaha YMF276 (extended channel 3)" +#~ msgstr "Yamaha YMF276 (расширенный 3-ий канал)" + +#~ msgid "Yamaha YMF276 with DualPCM" +#~ msgstr "Yamaha YMF276 с DualPCM" + +#~ msgid "Yamaha YMF276 (extended channel 3) with DualPCM and CSM" +#~ msgstr "Yamaha YMF276 (расширенный 3-ий канал) с DualPCM и CSM" + +#~ msgid "Yamaha YM2413 (drums mode)" +#~ msgstr "Yamaha YM2413 (в режиме ударных)" + +#~ msgid "Yamaha YM3438 (extended channel 3)" +#~ msgstr "Yamaha YM3438 (расширенный 3-ий канал)" + +#~ msgid "Yamaha YM3438 (OPN2C) with DualPCM" +#~ msgstr "Yamaha YM3438 (OPN2C) с DualPCM" + +#~ msgid "Yamaha YM3438 (extended channel 3) with DualPCM and CSM" +#~ msgstr "Yamaha YM3438 (расширенный 3-ий канал) с DualPCM и CSM" + +#~ msgid "Yamaha YM3526 (drums mode)" +#~ msgstr "Yamaha YM3526 (в режиме ударных)" + +#~ msgid "Yamaha Y8950 (drums mode)" +#~ msgstr "Yamaha Y8950 (в режиме ударных)" + +#~ msgid "Yamaha YM3812 (drums mode)" +#~ msgstr "Yamaha YM3812 (в режиме ударных)" + +#~ msgid "Yamaha YMF262 (drums mode)" +#~ msgstr "Yamaha YMF262 (в режиме ударных)" + +#~ msgid "Yamaha YMF289B (drums mode)" +#~ msgstr "Yamaha YMF289B (в режиме ударных)" + +#~ msgid "" +#~ "these chips generate square/pulse tones only (but may include noise)." +#~ msgstr "" +#~ "эти чипы способны генерировать лишь квадратные/прямоугольные волны (но " +#~ "могут также генерировать шум)." + +#~ msgid "Sega PSG (SN76489-like)" +#~ msgstr "Sega PSG (похож на SN76489)" + +#~ msgid "Sega PSG (SN76489-like, Stereo)" +#~ msgstr "Sega PSG (похож на SN76489, стерео)" + +#~ msgid "chips/systems which use PCM or ADPCM samples for sound synthesis." +#~ msgstr "" +#~ "чипы/системы, которые используют ИКМ- или АДИКМ-сэмплы для " +#~ "воспроизведения звука." + +#~ msgid "chips which use user-specified waveforms to generate sound." +#~ msgstr "" +#~ "чипы, которые использует задаваемые пользователем волны для синтеза звука." + +#~ msgid "Namco C15 (8-channel mono)" +#~ msgstr "Namco C15 (8-канальный, моно)" + +#~ msgid "Namco C30 (8-channel stereo)" +#~ msgstr "Namco C30 (8-канальный, стерео)" + +#~ msgid "Specialized" +#~ msgstr "Особые" + +#~ msgid "chips/systems with unique sound synthesis methods." +#~ msgstr "чипы/системы с уникальными методами синтеза звука." + +#~ msgid "Commodore PET (pseudo-wavetable)" +#~ msgstr "Commodore PET (псевдо-волновая таблица)" + +#~ msgid "ZX Spectrum (beeper only, SFX-like engine)" +#~ msgstr "ZX Spectrum (только пищалка, драйвер типа SFX)" + +#~ msgid "ZX Spectrum (beeper only, QuadTone engine)" +#~ msgstr "ZX Spectrum (только пищалка, драйвер QuadTone)" + +#~ msgid "" +#~ "chips/systems which do not exist in reality or were made just several " +#~ "years ago." +#~ msgstr "" +#~ "чипы/системы, не имеющие физического воплощения или сделанные всего " +#~ "несколько лет назад." + +#~ msgid "DefleMask-compatible" +#~ msgstr "Совместимые с DefleMask" + +#~ msgid "" +#~ "these configurations are compatible with DefleMask.\n" +#~ "select this if you need to save as .dmf or work with that program." +#~ msgstr "" +#~ "эти пресеты совместимы с DefleMask.\n" +#~ "выбирайте их, если вам будет нужно будет экспортировать модуль в .dmf или " +#~ "работать с этой программой." + +#~ msgid "Arcade (YM2151 and SegaPCM)" +#~ msgstr "Arcade (YM2151 и SegaPCM)" + +#~ msgid "Neo Geo CD (extended channel 2)" +#~ msgstr "Neo Geo CD (расширенный 2-ой канал)" + +#~ msgid "Register View###Register View" +#~ msgstr "Регистры###Register View" + +#~ msgid "Sample Editor###Sample Editor" +#~ msgstr "Редактор сэмплов###Sample Editor" + +#~ msgid "%d: %s" +#~ msgstr "%d: %s" + +#~ msgid "QSound: maximum sample length is 65535" +#~ msgstr "QSound: максимальная длина сэмпла: 65535" + +#~ msgid "NES: loop start must be a multiple of 512 (try with %d)" +#~ msgstr "NES: начало цикла должно быть кратно 512 (попробуйте %d)" + +#~ msgid "NES: loop end must be a multiple of 128 (try with %d)" +#~ msgstr "NES: конец цикла должен быть кратен 128 (попробуйте %d)" + +#~ msgid "Hz" +#~ msgstr "Гц" + +#~ msgid "Mode" +#~ msgstr "Режим" + +#~ msgid "%dms" +#~ msgstr "%d мс" + +#~ msgid "%d samples" +#~ msgid_plural "%d samples" +#~ msgstr[0] "%d сэмпл" +#~ msgstr[1] "%d сэмпла" +#~ msgstr[2] "%d сэмплов" + +#~ msgid "%d bytes" +#~ msgid_plural "%d bytes" +#~ msgstr[0] "%d байт" +#~ msgstr[1] "%d байта" +#~ msgstr[2] "%d байтов" + +#~ msgid "%.2fHz" +#~ msgstr "%.2f Гц" + +#~ msgid "Song Info###Song Information" +#~ msgstr "О треке###Song Information" + +#~ msgid "Song Comments###Song Comments" +#~ msgstr "Комментарии трека###Song Comments" + +#~ msgid "Speed###Speed" +#~ msgstr "Скорость###Speed" + +#~ msgid "Statistics###Statistics" +#~ msgstr "Статистика###Statistics" + +#~ msgid "Subsongs###Subsongs" +#~ msgstr "Подпесни###Subsongs" + +#~ msgid "Downmix chip output to mono" +#~ msgstr "Свести звук чипа в моно" + +#~ msgid "Reserved blocks for wavetables:" +#~ msgstr "Зарезервированных блоков под волновые таблицы:" + +#~ msgid "" +#~ "Reserve this many blocks 256 bytes each in sample memory.\n" +#~ "Each block holds one wavetable (is used for one wavetable channel),\n" +#~ "so reserve as many as you need." +#~ msgstr "" +#~ "Зарезервировать столько блоков, каждый по 256 байт, в памяти сэмплов.\n" +#~ "В каждый блок помещается одна волновая таблица (он используется для " +#~ "одного канала в режиме волновых таблиц),\n" +#~ "так что выделяйте столько, сколько вам нужно." + +#~ msgid "1MB" +#~ msgstr "1 МиБ" + +#~ msgid "256KB" +#~ msgstr "256 КиБ" + +#~ msgid "Chip Manager###Chip Manager" +#~ msgstr "Менеджер чипов###Chip Manager" + +#~ msgid "cannot duplicate chip! (" +#~ msgstr "не получилось склонировать чип! (" + +#~ msgid "ZXS Beeper" +#~ msgstr "ZXS (пищалка)" + +#~ msgid "Volume Meter###Volume Meter" +#~ msgstr "Измеритель громкости###Volume Meter" + +#~ msgid "Wavetable Editor###Wavetable Editor" +#~ msgstr "Редактор волновых таблиц###Wavetable Editor" + +#~ msgid "export .dmw..." +#~ msgstr "экспорт .dmw..." + +#~ msgid "export raw..." +#~ msgstr "экспорт сырых данных..." + +#~ msgid "" +#~ "use a width of:\n" +#~ "- any on Amiga/N163\n" +#~ "- 32 on Game Boy, PC Engine, SCC, Konami Bubble System, Namco WSG, " +#~ "Virtual Boy and WonderSwan\n" +#~ "- 64 on FDS\n" +#~ "- 128 on X1-010\n" +#~ "- 256 for ES5503\n" +#~ "any other widths will be scaled during playback." +#~ msgstr "" +#~ "используйте следующие длины:\n" +#~ "- любую для Amiga/N163\n" +#~ "- 32 для Game Boy, PC Engine, SCC, Konami Bubble System, Namco WSG, " +#~ "Virtual Boy и WonderSwan\n" +#~ "- 64 для FDS\n" +#~ "- 128 для X1-010\n" +#~ "- 256 для ES5503\n" +#~ "любые другие длины будут отмасштабированы во время воспроизведения." + +#~ msgid "" +#~ "use a height of:\n" +#~ "- 16 for Game Boy, WonderSwan, Namco WSG, Konami Bubble System, X1-010 " +#~ "Envelope shape and N163\n" +#~ "- 32 for PC Engine\n" +#~ "- 64 for FDS and Virtual Boy\n" +#~ "- 256 for X1-010, SCC and ES5503\n" +#~ "any other heights will be scaled during playback." +#~ msgstr "" +#~ "используйте следующие высоты:\n" +#~ "- 16 для Game Boy, WonderSwan, Namco WSG, Konami Bubble System, формы " +#~ "огибающей X1-010 и N163\n" +#~ "- 32 для PC Engine\n" +#~ "- 64 для FDS и Virtual Boy\n" +#~ "- 256 для X1-010, SCC и ES5503\n" +#~ "любые другие высоты будут отмасштабированы во время воспроизведения." + +#~ msgid "Oscilloscope (X-Y)###Oscilloscope (X-Y)" +#~ msgstr "Осциллограф (X-Y)###Oscilloscope (X-Y)" + +#~ msgid "Orders###Orders" +#~ msgstr "Матрица паттернов###Orders" + +#~ msgid "About Furnace###About Furnace" +#~ msgstr "О Furnace###About Furnace" + +#~ msgid "Channels###Channels" +#~ msgstr "Каналы###Channels" + +#~ msgid "Oscilloscope (per-channel)###Oscilloscope (per-channel)" +#~ msgstr "Осциллографы (отд. кан.)###Oscilloscope (per-channel)" + +#~ msgid "Instruments###Instruments" +#~ msgstr "Инструменты###Instruments" + +#~ msgid "Wavetables###Wavetables" +#~ msgstr "Волновые таблицы###Wavetables" + +#~ msgid "Debug###Debug" +#~ msgstr "Отладка###Debug" + +#~ msgid "Samples###Samples" +#~ msgstr "Сэмплы###Samples" + +#~ msgid "MobileEdit###MobileEdit" +#~ msgstr "Моб. меню ред.###MobileEdit" + +#~ msgid "Log Viewer###Log Viewer" +#~ msgstr "Просмотр логов###Log Viewer" + +#~ msgid "Mixer###Mixer" +#~ msgstr "Микшер###Mixer" + +#~ msgid "OrderSel###OrderSel" +#~ msgstr "Выб. матр. пат.###OrderSel" + +#~ msgid "Spoiler###Spoiler" +#~ msgstr "Спойлер###Spoiler" + +#~ msgid "exponential" +#~ msgstr "экспоненциальное" + +#~ msgid "direct" +#~ msgstr "прямое" + +#~ msgid "HP/K2, HP/K2" +#~ msgstr "ФВЧ/K2, ФВЧ/K2" + +#~ msgid "HP/K2, LP/K1" +#~ msgstr "ФВЧ/K2, ФНЧ/K1" + +#~ msgid "LP/K2, LP/K2" +#~ msgstr "ФНЧ/K2, ФНЧ/K2" + +#~ msgid "LP/K2, LP/K1" +#~ msgstr "ФНЧ/K2, ФНЧ/K1" + +#~ msgid "Settings###Settings" +#~ msgstr "Настройки###Settings" + +#~ msgid "Software" +#~ msgstr "Программная отрисовка" + +#~ msgid "GUI language" +#~ msgstr "Язык интерфейса" + +#~ msgid "Translate channel names in pattern header" +#~ msgstr "Переводить имена каналов в заголовках паттернов" + +#~ msgid "Translate channel names in channel oscilloscope label" +#~ msgstr "" +#~ "Переводить имена каналов в надписях на осциллографах отдельных каналов" + +#~ msgid "Translate short channel names (in orders and other places)" +#~ msgstr "" +#~ "Переводить короткие имена каналов (в матрице паттернов и других местах)" + +#~ msgid "What?" +#~ msgstr "Что?" + +#~ msgid "want: %d samples @ %.0fHz (%d %s)" +#~ msgstr "запрошено: %d сэмплов @ %.0f Гц (%d %s)" + +#~ msgid "got: %d samples @ %.0fHz (%d %s)" +#~ msgstr "получено: %d сэмплов @ %.0f Гц (%d %s)" + +#~ msgid "Listen to MIDI clock" +#~ msgstr "Следить за тактовой частотой MIDI" + +#~ msgid "Listen to MIDI time code" +#~ msgstr "Следить за временным кодом MIDI" + +#~ msgid "Sample ROMs:" +#~ msgstr "Образы ROM сэмплов:" + +#~ msgid "OPL4 YRW801 path" +#~ msgstr "Путь к OPL4 YRW801" + +#~ msgid "MultiPCM TG100 path" +#~ msgstr "Путь к MultiPCM TG100" + +#~ msgid "MultiPCM MU5 path" +#~ msgstr "Путь к MultiPCM MU5" + +#~ msgid "Local wavetables list" +#~ msgstr "Список локальных волновых таблиц" + +#~ msgid "Square border##CHS4" +#~ msgstr "С прямоугольной границей вокруг названия##CHS4" + +#~ msgid "Non##CHV0" +#~ msgstr "Нет##CHV0" + +#~ msgid "Alternate (4x1)##fml6" +#~ msgstr "Альтернативная (4x1)##fml6" + +#~ msgid "Between Decay and Sustain Rate" +#~ msgstr "Между спадом и уклоном сустейна" + +#~ msgid "After Release Rate" +#~ msgstr "После уклона релиза" + +#~ msgid "Misc" +#~ msgstr "Разное" + +#~ msgid "Wrap text" +#~ msgstr "Переносить текст на новую строку" + +#~ msgid "Wrap text in song/subsong comments window." +#~ msgstr "" +#~ "Переносить текст на новую строку в окне информации/комментариев к " +#~ "композиции." + +#~ msgid "Frame shading in text windows" +#~ msgstr "Градиент в текстовых окнах" + +#~ msgid "" +#~ "Apply frame shading to the multiline text fields\n" +#~ "such as song/subsong info/comments." +#~ msgstr "Применять градиент в окне информации/комментариев к композиции." + +#~ msgid "Show chip info in chip manager" +#~ msgstr "Отображать информацию о чипе в менеджере чипов" + +#~ msgid "" +#~ "Display tooltip in chip manager when hovering over the chip. Tooltip " +#~ "shows chip name and description." +#~ msgstr "" +#~ "Отображать подсказку при наведении курсора на чип. Подсказка отображает " +#~ "название и описание чипа." + +#~ msgid "Button##CC_GUI_COLOR_BUTTON" +#~ msgstr "Кнопка##CC_GUI_COLOR_BUTTON" + +#~ msgid "Button (hovered)##CC_GUI_COLOR_BUTTON_HOVER" +#~ msgstr "Кнопка (курсор на кнопке)##CC_GUI_COLOR_BUTTON_HOVER" + +#~ msgid "Button (active)##CC_GUI_COLOR_BUTTON_ACTIVE" +#~ msgstr "Кнопка (нажатая)##CC_GUI_COLOR_BUTTON_ACTIVE" + +#~ msgid "Tab##CC_GUI_COLOR_TAB" +#~ msgstr "Вкладка##CC_GUI_COLOR_TAB" + +#~ msgid "Tab (hovered)##CC_GUI_COLOR_TAB_HOVER" +#~ msgstr "Вкладка (курсор на вкладке)##CC_GUI_COLOR_TAB_HOVER" + +#~ msgid "Tab (active)##CC_GUI_COLOR_TAB_ACTIVE" +#~ msgstr "Вкладка (активная)##CC_GUI_COLOR_TAB_ACTIVE" + +#~ msgid "Tab (unfocused)##CC_GUI_COLOR_TAB_UNFOCUSED" +#~ msgstr "Вкладка (не текущая)##CC_GUI_COLOR_TAB_UNFOCUSED" + +#~ msgid "Tab (unfocused and active)##CC_GUI_COLOR_TAB_UNFOCUSED_ACTIVE" +#~ msgstr "" +#~ "Вкладка (курсор на вкладке, текущая)##CC_GUI_COLOR_TAB_UNFOCUSED_ACTIVE" + +#~ msgid "ImGui header##CC_GUI_COLOR_IMGUI_HEADER" +#~ msgstr "Заголовок ImGui##CC_GUI_COLOR_IMGUI_HEADER" + +#~ msgid "ImGui header (hovered)##CC_GUI_COLOR_IMGUI_HEADER_HOVER" +#~ msgstr "" +#~ "Заголовок ImGui (курсор на заголовке)##CC_GUI_COLOR_IMGUI_HEADER_HOVER" + +#~ msgid "ImGui header (active)##CC_GUI_COLOR_IMGUI_HEADER_ACTIVE" +#~ msgstr "Заголовок ImGui (активный)##CC_GUI_COLOR_IMGUI_HEADER_ACTIVE" + +#~ msgid "Resize grip##CC_GUI_COLOR_RESIZE_GRIP" +#~ msgstr "Захват для изменения размера окна##CC_GUI_COLOR_RESIZE_GRIP" + +#~ msgid "Resize grip (hovered)##CC_GUI_COLOR_RESIZE_GRIP_HOVER" +#~ msgstr "" +#~ "Захват для изменения размера окна (курсор на " +#~ "захвате)##CC_GUI_COLOR_RESIZE_GRIP_HOVER" + +#~ msgid "Resize grip (active)##CC_GUI_COLOR_RESIZE_GRIP_ACTIVE" +#~ msgstr "" +#~ "Захват для изменения размера окна " +#~ "(активный)##CC_GUI_COLOR_RESIZE_GRIP_ACTIVE" + +#~ msgid "Widget background##CC_GUI_COLOR_WIDGET_BACKGROUND" +#~ msgstr "Задний фон виджета##CC_GUI_COLOR_WIDGET_BACKGROUND" + +#~ msgid "Widget background (hovered)##CC_GUI_COLOR_WIDGET_BACKGROUND_HOVER" +#~ msgstr "" +#~ "Задний фон виджета (курсор на " +#~ "виджете)##CC_GUI_COLOR_WIDGET_BACKGROUND_HOVER" + +#~ msgid "Widget background (active)##CC_GUI_COLOR_WIDGET_BACKGROUND_ACTIVE" +#~ msgstr "" +#~ "Задний фон виджета (активный)##CC_GUI_COLOR_WIDGET_BACKGROUND_ACTIVE" + +#~ msgid "Slider grab##CC_GUI_COLOR_SLIDER_GRAB" +#~ msgstr "Ползунок выставления значения##CC_GUI_COLOR_SLIDER_GRAB" + +#~ msgid "Slider grab (active)##CC_GUI_COLOR_SLIDER_GRAB_ACTIVE" +#~ msgstr "" +#~ "Ползунок выставления значения (активный)##CC_GUI_COLOR_SLIDER_GRAB_ACTIVE" + +#~ msgid "Title background (active)##CC_GUI_COLOR_TITLE_BACKGROUND_ACTIVE" +#~ msgstr "" +#~ "Задний фон заголовка (активный)##CC_GUI_COLOR_TITLE_BACKGROUND_ACTIVE" + +#~ msgid "Checkbox/radio button mark##CC_GUI_COLOR_CHECK_MARK" +#~ msgstr "" +#~ "Маркировка в поле для галочки и радиокнопке##CC_GUI_COLOR_CHECK_MARK" + +#~ msgid "Text selection##CC_GUI_COLOR_TEXT_SELECTION" +#~ msgstr "Выделение текста##CC_GUI_COLOR_TEXT_SELECTION" + +#~ msgid "Line plot##CC_GUI_COLOR_PLOT_LINES" +#~ msgstr "Цвет линий##CC_GUI_COLOR_PLOT_LINES" + +#~ msgid "Line plot (hovered)##CC_GUI_COLOR_PLOT_LINES_HOVER" +#~ msgstr "Цвет линий (курсор на поле)##CC_GUI_COLOR_PLOT_LINES_HOVER" + +#~ msgid "Histogram plot##CC_GUI_COLOR_PLOT_HISTOGRAM" +#~ msgstr "Столбчатая диаграмма##CC_GUI_COLOR_PLOT_HISTOGRAM" + +#~ msgid "Histogram plot (hovered)##CC_GUI_COLOR_PLOT_HISTOGRAM_HOVER" +#~ msgstr "" +#~ "Столбчатая диаграмма (курсор на " +#~ "диаграмме)##CC_GUI_COLOR_PLOT_HISTOGRAM_HOVER" + +#~ msgid "Table row (even)##CC_GUI_COLOR_TABLE_ROW_EVEN" +#~ msgstr "Строка таблицы (чётная)##CC_GUI_COLOR_TABLE_ROW_EVEN" + +#~ msgid "Table row (odd)##CC_GUI_COLOR_TABLE_ROW_ODD" +#~ msgstr "Строка таблицы (нечётная)##CC_GUI_COLOR_TABLE_ROW_ODD" + +#~ msgid "Background##CC_GUI_COLOR_BACKGROUND" +#~ msgstr "Задний фон##CC_GUI_COLOR_BACKGROUND" + +#~ msgid "Window background##CC_GUI_COLOR_FRAME_BACKGROUND" +#~ msgstr "Фон окон##CC_GUI_COLOR_FRAME_BACKGROUND" + +#~ msgid "Sub-window background##CC_GUI_COLOR_FRAME_BACKGROUND_CHILD" +#~ msgstr "Фон подокн##CC_GUI_COLOR_FRAME_BACKGROUND_CHILD" + +#~ msgid "Pop-up background##CC_GUI_COLOR_FRAME_BACKGROUND_POPUP" +#~ msgstr "Фон всплывающих окон##CC_GUI_COLOR_FRAME_BACKGROUND_POPUP" + +#~ msgid "Modal backdrop##CC_GUI_COLOR_MODAL_BACKDROP" +#~ msgstr "" +#~ "Затенение при возникновении модального окна##CC_GUI_COLOR_MODAL_BACKDROP" + +#~ msgid "Header##CC_GUI_COLOR_HEADER" +#~ msgstr "Заголовок##CC_GUI_COLOR_HEADER" + +#~ msgid "Text##CC_GUI_COLOR_TEXT" +#~ msgstr "Текст##CC_GUI_COLOR_TEXT" + +#~ msgid "Text (disabled)##CC_GUI_COLOR_TEXT_DISABLED" +#~ msgstr "Текст (выключенный)##CC_GUI_COLOR_TEXT_DISABLED" + +#~ msgid "Title bar (inactive)##CC_GUI_COLOR_TITLE_INACTIVE" +#~ msgstr "Полоса заголовка (неактивная)##CC_GUI_COLOR_TITLE_INACTIVE" + +#~ msgid "Title bar (collapsed)##CC_GUI_COLOR_TITLE_COLLAPSED" +#~ msgstr "Полоса заголовка (свёрнутое окно)##CC_GUI_COLOR_TITLE_COLLAPSED" + +#~ msgid "Menu bar##CC_GUI_COLOR_MENU_BAR" +#~ msgstr "Полоса меню##CC_GUI_COLOR_MENU_BAR" + +#~ msgid "Border##CC_GUI_COLOR_BORDER" +#~ msgstr "Граница##CC_GUI_COLOR_BORDER" + +#~ msgid "Border shadow##CC_GUI_COLOR_BORDER_SHADOW" +#~ msgstr "Тень границы##CC_GUI_COLOR_BORDER_SHADOW" + +#~ msgid "Scroll bar##CC_GUI_COLOR_SCROLL" +#~ msgstr "Полоса прокрутки##CC_GUI_COLOR_SCROLL" + +#~ msgid "Scroll bar (hovered)##CC_GUI_COLOR_SCROLL_HOVER" +#~ msgstr "Полоса прокрутки (курсор на полосе)##CC_GUI_COLOR_SCROLL_HOVER" + +#~ msgid "Scroll bar (clicked)##CC_GUI_COLOR_SCROLL_ACTIVE" +#~ msgstr "Полоса прокрутки (нажата)##CC_GUI_COLOR_SCROLL_ACTIVE" + +#~ msgid "Scroll bar background##CC_GUI_COLOR_SCROLL_BACKGROUND" +#~ msgstr "Фон полосы прокрутки##CC_GUI_COLOR_SCROLL_BACKGROUND" + +#~ msgid "Separator##CC_GUI_COLOR_SEPARATOR" +#~ msgstr "Разделитель строк##CC_GUI_COLOR_SEPARATOR" + +#~ msgid "Separator (hover)##CC_GUI_COLOR_SEPARATOR_HOVER" +#~ msgstr "" +#~ "Разделитель строк (курсор на разделителе)##CC_GUI_COLOR_SEPARATOR_HOVER" + +#~ msgid "Separator (active)##CC_GUI_COLOR_SEPARATOR_ACTIVE" +#~ msgstr "Разделитель строк (активный)##CC_GUI_COLOR_SEPARATOR_ACTIVE" + +#~ msgid "Docking preview##CC_GUI_COLOR_DOCKING_PREVIEW" +#~ msgstr "Превью стыковки окон##CC_GUI_COLOR_DOCKING_PREVIEW" + +#~ msgid "Docking empty##CC_GUI_COLOR_DOCKING_EMPTY" +#~ msgstr "Пустое поле стыковки окон##CC_GUI_COLOR_DOCKING_EMPTY" + +#~ msgid "Table header##CC_GUI_COLOR_TABLE_HEADER" +#~ msgstr "Заголовок таблицы##CC_GUI_COLOR_TABLE_HEADER" + +#~ msgid "Table border (hard)##CC_GUI_COLOR_TABLE_BORDER_HARD" +#~ msgstr "Заголовок таблицы (жёсткий)##CC_GUI_COLOR_TABLE_BORDER_HARD" + +#~ msgid "Table border (soft)##CC_GUI_COLOR_TABLE_BORDER_SOFT" +#~ msgstr "Заголовок таблицы (мягкий)##CC_GUI_COLOR_TABLE_BORDER_SOFT" + +#~ msgid "Drag and drop target##CC_GUI_COLOR_DRAG_DROP_TARGET" +#~ msgstr "Цель перетаскивания##CC_GUI_COLOR_DRAG_DROP_TARGET" + +#~ msgid "Window switcher (highlight)##CC_GUI_COLOR_NAV_WIN_HIGHLIGHT" +#~ msgstr "Переключатель окон (подсвечен)##CC_GUI_COLOR_NAV_WIN_HIGHLIGHT" + +#~ msgid "Window switcher backdrop##CC_GUI_COLOR_NAV_WIN_BACKDROP" +#~ msgstr "" +#~ "Переключатель окон (цвет затенения остального " +#~ "интерфейса)##CC_GUI_COLOR_NAV_WIN_BACKDROP" + +#~ msgid "Toggle on##CC_GUI_COLOR_TOGGLE_ON" +#~ msgstr "Переключатель вкл.##CC_GUI_COLOR_TOGGLE_ON" + +#~ msgid "Toggle off##CC_GUI_COLOR_TOGGLE_OFF" +#~ msgstr "Переключатель выкл.##CC_GUI_COLOR_TOGGLE_OFF" + +#~ msgid "Playback status##CC_GUI_COLOR_PLAYBACK_STAT" +#~ msgstr "Статус воспроизведения##CC_GUI_COLOR_PLAYBACK_STAT" + +#~ msgid "Destructive hint##CC_GUI_COLOR_DESTRUCTIVE" +#~ msgstr "Подсказка об удалении##CC_GUI_COLOR_DESTRUCTIVE" + +#~ msgid "Warning hint##CC_GUI_COLOR_WARNING" +#~ msgstr "Подсказка о сообщении##CC_GUI_COLOR_WARNING" + +#~ msgid "Error hint##CC_GUI_COLOR_ERROR" +#~ msgstr "Подсказка об ошибке##CC_GUI_COLOR_ERROR" + +#~ msgid "Directory##CC_GUI_COLOR_FILE_DIR" +#~ msgstr "Папка##CC_GUI_COLOR_FILE_DIR" + +#~ msgid "Song (native)##CC_GUI_COLOR_FILE_SONG_NATIVE" +#~ msgstr "Файл трека (нативно поддерживается)##CC_GUI_COLOR_FILE_SONG_NATIVE" + +#~ msgid "Song (import)##CC_GUI_COLOR_FILE_SONG_IMPORT" +#~ msgstr "Файл трека (импорт)##CC_GUI_COLOR_FILE_SONG_IMPORT" + +#~ msgid "Instrument##CC_GUI_COLOR_FILE_INSTR" +#~ msgstr "Инструмент##CC_GUI_COLOR_FILE_INSTR" + +#~ msgid "Audio##CC_GUI_COLOR_FILE_AUDIO" +#~ msgstr "Аудиофайл##CC_GUI_COLOR_FILE_AUDIO" + +#~ msgid "Wavetable##CC_GUI_COLOR_FILE_WAVE" +#~ msgstr "Волновая таблица##CC_GUI_COLOR_FILE_WAVE" + +#~ msgid "VGM##CC_GUI_COLOR_FILE_VGM" +#~ msgstr "VGM##CC_GUI_COLOR_FILE_VGM" + +#~ msgid "ZSM##CC_GUI_COLOR_FILE_ZSM" +#~ msgstr "ZSM##CC_GUI_COLOR_FILE_ZSM" + +#~ msgid "Font##CC_GUI_COLOR_FILE_FONT" +#~ msgstr "Шрифт##CC_GUI_COLOR_FILE_FONT" + +#~ msgid "Other##CC_GUI_COLOR_FILE_OTHER" +#~ msgstr "Другое##CC_GUI_COLOR_FILE_OTHER" + +#~ msgid "Border##CC_GUI_COLOR_OSC_BORDER" +#~ msgstr "Граница осциллографа##CC_GUI_COLOR_OSC_BORDER" + +#~ msgid "Background (top-left)##CC_GUI_COLOR_OSC_BG1" +#~ msgstr "Фон (верхний левый угол)##CC_GUI_COLOR_OSC_BG1" + +#~ msgid "Background (top-right)##CC_GUI_COLOR_OSC_BG2" +#~ msgstr "Фон (верхний правый угол)##CC_GUI_COLOR_OSC_BG2" + +#~ msgid "Background (bottom-left)##CC_GUI_COLOR_OSC_BG3" +#~ msgstr "Фон (нижний левый угол)##CC_GUI_COLOR_OSC_BG3" + +#~ msgid "Background (bottom-right)##CC_GUI_COLOR_OSC_BG4" +#~ msgstr "Фон (нижний правый угол)##CC_GUI_COLOR_OSC_BG4" + +#~ msgid "Waveform##CC_GUI_COLOR_OSC_WAVE" +#~ msgstr "Волна##CC_GUI_COLOR_OSC_WAVE" + +#~ msgid "Waveform (clip)##CC_GUI_COLOR_OSC_WAVE_PEAK" +#~ msgstr "Волна (зашкал амплитуды)##CC_GUI_COLOR_OSC_WAVE_PEAK" + +#~ msgid "Reference##CC_GUI_COLOR_OSC_REF" +#~ msgstr "Образец##CC_GUI_COLOR_OSC_REF" + +#~ msgid "Guide##CC_GUI_COLOR_OSC_GUIDE" +#~ msgstr "Справка##CC_GUI_COLOR_OSC_GUIDE" + +#~ msgid "Waveform (1)##CC_GUI_COLOR_OSC_WAVE_CH0" +#~ msgstr "Волна (1)##CC_GUI_COLOR_OSC_WAVE_CH0" + +#~ msgid "Waveform (2)##CC_GUI_COLOR_OSC_WAVE_CH1" +#~ msgstr "Волна (2)##CC_GUI_COLOR_OSC_WAVE_CH1" + +#~ msgid "Waveform (3)##CC_GUI_COLOR_OSC_WAVE_CH2" +#~ msgstr "Волна (3)##CC_GUI_COLOR_OSC_WAVE_CH2" + +#~ msgid "Waveform (4)##CC_GUI_COLOR_OSC_WAVE_CH3" +#~ msgstr "Волна (4)##CC_GUI_COLOR_OSC_WAVE_CH3" + +#~ msgid "Waveform (5)##CC_GUI_COLOR_OSC_WAVE_CH4" +#~ msgstr "Волна (5)##CC_GUI_COLOR_OSC_WAVE_CH4" + +#~ msgid "Waveform (6)##CC_GUI_COLOR_OSC_WAVE_CH5" +#~ msgstr "Волна (6)##CC_GUI_COLOR_OSC_WAVE_CH5" + +#~ msgid "Waveform (7)##CC_GUI_COLOR_OSC_WAVE_CH6" +#~ msgstr "Волна (7)##CC_GUI_COLOR_OSC_WAVE_CH6" + +#~ msgid "Waveform (8)##CC_GUI_COLOR_OSC_WAVE_CH7" +#~ msgstr "Волна (8)##CC_GUI_COLOR_OSC_WAVE_CH7" + +#~ msgid "Waveform (9)##CC_GUI_COLOR_OSC_WAVE_CH8" +#~ msgstr "Волна (9)##CC_GUI_COLOR_OSC_WAVE_CH8" + +#~ msgid "Waveform (10)##CC_GUI_COLOR_OSC_WAVE_CH9" +#~ msgstr "Волна (10)##CC_GUI_COLOR_OSC_WAVE_CH9" + +#~ msgid "Waveform (11)##CC_GUI_COLOR_OSC_WAVE_CH10" +#~ msgstr "Волна (11)##CC_GUI_COLOR_OSC_WAVE_CH10" + +#~ msgid "Waveform (12)##CC_GUI_COLOR_OSC_WAVE_CH11" +#~ msgstr "Волна (12)##CC_GUI_COLOR_OSC_WAVE_CH11" + +#~ msgid "Waveform (13)##CC_GUI_COLOR_OSC_WAVE_CH12" +#~ msgstr "Волна (13)##CC_GUI_COLOR_OSC_WAVE_CH12" + +#~ msgid "Waveform (14)##CC_GUI_COLOR_OSC_WAVE_CH13" +#~ msgstr "Волна (14)##CC_GUI_COLOR_OSC_WAVE_CH13" + +#~ msgid "Waveform (15)##CC_GUI_COLOR_OSC_WAVE_CH14" +#~ msgstr "Волна (15)##CC_GUI_COLOR_OSC_WAVE_CH14" + +#~ msgid "Waveform (16)##CC_GUI_COLOR_OSC_WAVE_CH15" +#~ msgstr "Волна (16)##CC_GUI_COLOR_OSC_WAVE_CH15" + +#~ msgid "Low##CC_GUI_COLOR_VOLMETER_LOW" +#~ msgstr "Низкий уровень##CC_GUI_COLOR_VOLMETER_LOW" + +#~ msgid "High##CC_GUI_COLOR_VOLMETER_HIGH" +#~ msgstr "Высокий уровень##CC_GUI_COLOR_VOLMETER_HIGH" + +#~ msgid "Clip##CC_GUI_COLOR_VOLMETER_PEAK" +#~ msgstr "Зашкал##CC_GUI_COLOR_VOLMETER_PEAK" + +#~ msgid "Order number##CC_GUI_COLOR_ORDER_ROW_INDEX" +#~ msgstr "Номер строки##CC_GUI_COLOR_ORDER_ROW_INDEX" + +#~ msgid "Playing order background##CC_GUI_COLOR_ORDER_ACTIVE" +#~ msgstr "Фон текущей строки##CC_GUI_COLOR_ORDER_ACTIVE" + +#~ msgid "Song loop##CC_GUI_COLOR_SONG_LOOP" +#~ msgstr "Место зацикливания трека##CC_GUI_COLOR_SONG_LOOP" + +#~ msgid "Selected order##CC_GUI_COLOR_ORDER_SELECTED" +#~ msgstr "Выделенный столбец##CC_GUI_COLOR_ORDER_SELECTED" + +#~ msgid "Similar patterns##CC_GUI_COLOR_ORDER_SIMILAR" +#~ msgstr "Похожие паттерны##CC_GUI_COLOR_ORDER_SIMILAR" + +#~ msgid "Inactive patterns##CC_GUI_COLOR_ORDER_INACTIVE" +#~ msgstr "Неактивные паттерны##CC_GUI_COLOR_ORDER_INACTIVE" + +#~ msgid "Envelope##CC_GUI_COLOR_FM_ENVELOPE" +#~ msgstr "Огибающая##CC_GUI_COLOR_FM_ENVELOPE" + +#~ msgid "Sustain guide##CC_GUI_COLOR_FM_ENVELOPE_SUS_GUIDE" +#~ msgstr "Визуализация сустейна##CC_GUI_COLOR_FM_ENVELOPE_SUS_GUIDE" + +#~ msgid "Release##CC_GUI_COLOR_FM_ENVELOPE_RELEASE" +#~ msgstr "Релиз##CC_GUI_COLOR_FM_ENVELOPE_RELEASE" + +#~ msgid "Algorithm background##CC_GUI_COLOR_FM_ALG_BG" +#~ msgstr "Задний фон схемы алгоритма##CC_GUI_COLOR_FM_ALG_BG" + +#~ msgid "Algorithm lines##CC_GUI_COLOR_FM_ALG_LINE" +#~ msgstr "Линии схемы алгоритма##CC_GUI_COLOR_FM_ALG_LINE" + +#~ msgid "Modulator##CC_GUI_COLOR_FM_MOD" +#~ msgstr "Модулирующий оператор##CC_GUI_COLOR_FM_MOD" + +#~ msgid "Carrier##CC_GUI_COLOR_FM_CAR" +#~ msgstr "Несущий оператор##CC_GUI_COLOR_FM_CAR" + +#~ msgid "SSG-EG##CC_GUI_COLOR_FM_SSG" +#~ msgstr "SSG-EG##CC_GUI_COLOR_FM_SSG" + +#~ msgid "Waveform##CC_GUI_COLOR_FM_WAVE" +#~ msgstr "Волна##CC_GUI_COLOR_FM_WAVE" + +#~ msgid "Mod. accent (primary)##CC_GUI_COLOR_FM_PRIMARY_MOD" +#~ msgstr "" +#~ "Оттенок модулирующего оператора (основной)##CC_GUI_COLOR_FM_PRIMARY_MOD" + +#~ msgid "Mod. accent (secondary)##CC_GUI_COLOR_FM_SECONDARY_MOD" +#~ msgstr "" +#~ "Оттенок модулирующего оператора " +#~ "(неосновной)##CC_GUI_COLOR_FM_SECONDARY_MOD" + +#~ msgid "Mod. border##CC_GUI_COLOR_FM_BORDER_MOD" +#~ msgstr "Граница модулирующего оператора##CC_GUI_COLOR_FM_BORDER_MOD" + +#~ msgid "Mod. border shadow##CC_GUI_COLOR_FM_BORDER_SHADOW_MOD" +#~ msgstr "" +#~ "Тень границы модулирующего оператора##CC_GUI_COLOR_FM_BORDER_SHADOW_MOD" + +#~ msgid "Car. accent (primary)##CC_GUI_COLOR_FM_PRIMARY_CAR" +#~ msgstr "Оттенок несущего оператора (основной)##CC_GUI_COLOR_FM_PRIMARY_CAR" + +#~ msgid "Car. accent (secondary)##CC_GUI_COLOR_FM_SECONDARY_CAR" +#~ msgstr "" +#~ "Оттенок несущего оператора (неосновной)##CC_GUI_COLOR_FM_SECONDARY_CAR" + +#~ msgid "Car. border##CC_GUI_COLOR_FM_BORDER_CAR" +#~ msgstr "Граница несущего оператора##CC_GUI_COLOR_FM_BORDER_CAR" + +#~ msgid "Car. border shadow##CC_GUI_COLOR_FM_BORDER_SHADOW_CAR" +#~ msgstr "Тень границы несущего оператора##CC_GUI_COLOR_FM_BORDER_SHADOW_CAR" + +#~ msgid "Volume##CC_GUI_COLOR_MACRO_VOLUME" +#~ msgstr "Громкость##CC_GUI_COLOR_MACRO_VOLUME" + +#~ msgid "Pitch##CC_GUI_COLOR_MACRO_PITCH" +#~ msgstr "Частота##CC_GUI_COLOR_MACRO_PITCH" + +#~ msgid "Wave##CC_GUI_COLOR_MACRO_WAVE" +#~ msgstr "Волна##CC_GUI_COLOR_MACRO_WAVE" + +#~ msgid "Other##CC_GUI_COLOR_MACRO_OTHER" +#~ msgstr "Другое##CC_GUI_COLOR_MACRO_OTHER" + +#~ msgid "FM (OPN)##CC_GUI_COLOR_INSTR_FM" +#~ msgstr "FM (OPN)##CC_GUI_COLOR_INSTR_FM" + +#~ msgid "SN76489/Sega PSG##CC_GUI_COLOR_INSTR_STD" +#~ msgstr "SN76489/Sega PSG##CC_GUI_COLOR_INSTR_STD" + +#~ msgid "T6W28##CC_GUI_COLOR_INSTR_T6W28" +#~ msgstr "T6W28##CC_GUI_COLOR_INSTR_T6W28" + +#~ msgid "Game Boy##CC_GUI_COLOR_INSTR_GB" +#~ msgstr "Game Boy##CC_GUI_COLOR_INSTR_GB" + +#~ msgid "C64##CC_GUI_COLOR_INSTR_C64" +#~ msgstr "C64##CC_GUI_COLOR_INSTR_C64" + +#~ msgid "Amiga/Generic Sample##CC_GUI_COLOR_INSTR_AMIGA" +#~ msgstr "Amiga/Типичный сэмпл##CC_GUI_COLOR_INSTR_AMIGA" + +#~ msgid "PC Engine##CC_GUI_COLOR_INSTR_PCE" +#~ msgstr "PC Engine##CC_GUI_COLOR_INSTR_PCE" + +#~ msgid "AY-3-8910/SSG##CC_GUI_COLOR_INSTR_AY" +#~ msgstr "AY-3-8910/SSG##CC_GUI_COLOR_INSTR_AY" + +#~ msgid "AY8930##CC_GUI_COLOR_INSTR_AY8930" +#~ msgstr "AY8930##CC_GUI_COLOR_INSTR_AY8930" + +#~ msgid "TIA##CC_GUI_COLOR_INSTR_TIA" +#~ msgstr "TIA##CC_GUI_COLOR_INSTR_TIA" + +#~ msgid "SAA1099##CC_GUI_COLOR_INSTR_SAA1099" +#~ msgstr "SAA1099##CC_GUI_COLOR_INSTR_SAA1099" + +#~ msgid "VIC##CC_GUI_COLOR_INSTR_VIC" +#~ msgstr "VIC##CC_GUI_COLOR_INSTR_VIC" + +#~ msgid "PET##CC_GUI_COLOR_INSTR_PET" +#~ msgstr "PET##CC_GUI_COLOR_INSTR_PET" + +#~ msgid "VRC6##CC_GUI_COLOR_INSTR_VRC6" +#~ msgstr "VRC6##CC_GUI_COLOR_INSTR_VRC6" + +#~ msgid "VRC6 (saw)##CC_GUI_COLOR_INSTR_VRC6_SAW" +#~ msgstr "VRC6 (пила)##CC_GUI_COLOR_INSTR_VRC6_SAW" + +#~ msgid "FM (OPLL)##CC_GUI_COLOR_INSTR_OPLL" +#~ msgstr "FM (OPLL)##CC_GUI_COLOR_INSTR_OPLL" + +#~ msgid "FM (OPL)##CC_GUI_COLOR_INSTR_OPL" +#~ msgstr "FM (OPL)##CC_GUI_COLOR_INSTR_OPL" + +#~ msgid "FDS##CC_GUI_COLOR_INSTR_FDS" +#~ msgstr "FDS##CC_GUI_COLOR_INSTR_FDS" + +#~ msgid "Virtual Boy##CC_GUI_COLOR_INSTR_VBOY" +#~ msgstr "Virtual Boy##CC_GUI_COLOR_INSTR_VBOY" + +#~ msgid "Namco 163##CC_GUI_COLOR_INSTR_N163" +#~ msgstr "Namco 163##CC_GUI_COLOR_INSTR_N163" + +#~ msgid "Konami SCC##CC_GUI_COLOR_INSTR_SCC" +#~ msgstr "Konami SCC##CC_GUI_COLOR_INSTR_SCC" + +#~ msgid "FM (OPZ)##CC_GUI_COLOR_INSTR_OPZ" +#~ msgstr "FM (OPZ)##CC_GUI_COLOR_INSTR_OPZ" + +#~ msgid "POKEY##CC_GUI_COLOR_INSTR_POKEY" +#~ msgstr "POKEY##CC_GUI_COLOR_INSTR_POKEY" + +#~ msgid "PC Beeper##CC_GUI_COLOR_INSTR_BEEPER" +#~ msgstr "PC Beeper##CC_GUI_COLOR_INSTR_BEEPER" + +#~ msgid "WonderSwan##CC_GUI_COLOR_INSTR_SWAN" +#~ msgstr "WonderSwan##CC_GUI_COLOR_INSTR_SWAN" + +#~ msgid "Lynx##CC_GUI_COLOR_INSTR_MIKEY" +#~ msgstr "Lynx##CC_GUI_COLOR_INSTR_MIKEY" + +#~ msgid "VERA##CC_GUI_COLOR_INSTR_VERA" +#~ msgstr "VERA##CC_GUI_COLOR_INSTR_VERA" + +#~ msgid "X1-010##CC_GUI_COLOR_INSTR_X1_010" +#~ msgstr "X1-010##CC_GUI_COLOR_INSTR_X1_010" + +#~ msgid "ES5506##CC_GUI_COLOR_INSTR_ES5506" +#~ msgstr "ES5506##CC_GUI_COLOR_INSTR_ES5506" + +#~ msgid "MultiPCM##CC_GUI_COLOR_INSTR_MULTIPCM" +#~ msgstr "MultiPCM##CC_GUI_COLOR_INSTR_MULTIPCM" + +#~ msgid "SNES##CC_GUI_COLOR_INSTR_SNES" +#~ msgstr "SNES##CC_GUI_COLOR_INSTR_SNES" + +#~ msgid "Sound Unit##CC_GUI_COLOR_INSTR_SU" +#~ msgstr "Sound Unit##CC_GUI_COLOR_INSTR_SU" + +#~ msgid "Namco WSG##CC_GUI_COLOR_INSTR_NAMCO" +#~ msgstr "Namco WSG##CC_GUI_COLOR_INSTR_NAMCO" + +#~ msgid "FM (OPL Drums)##CC_GUI_COLOR_INSTR_OPL_DRUMS" +#~ msgstr "FM (OPL, ударные)##CC_GUI_COLOR_INSTR_OPL_DRUMS" + +#~ msgid "FM (OPM)##CC_GUI_COLOR_INSTR_OPM" +#~ msgstr "FM (OPM)##CC_GUI_COLOR_INSTR_OPM" + +#~ msgid "NES##CC_GUI_COLOR_INSTR_NES" +#~ msgstr "NES##CC_GUI_COLOR_INSTR_NES" + +#~ msgid "MSM6258##CC_GUI_COLOR_INSTR_MSM6258" +#~ msgstr "MSM6258##CC_GUI_COLOR_INSTR_MSM6258" + +#~ msgid "MSM6295##CC_GUI_COLOR_INSTR_MSM6295" +#~ msgstr "MSM6295##CC_GUI_COLOR_INSTR_MSM6295" + +#~ msgid "ADPCM-A##CC_GUI_COLOR_INSTR_ADPCMA" +#~ msgstr "АДИКМ-A##CC_GUI_COLOR_INSTR_ADPCMA" + +#~ msgid "ADPCM-B##CC_GUI_COLOR_INSTR_ADPCMB" +#~ msgstr "АДИКМ-B##CC_GUI_COLOR_INSTR_ADPCMB" + +#~ msgid "Sega PCM##CC_GUI_COLOR_INSTR_SEGAPCM" +#~ msgstr "Sega PCM##CC_GUI_COLOR_INSTR_SEGAPCM" + +#~ msgid "QSound##CC_GUI_COLOR_INSTR_QSOUND" +#~ msgstr "QSound##CC_GUI_COLOR_INSTR_QSOUND" + +#~ msgid "YMZ280B##CC_GUI_COLOR_INSTR_YMZ280B" +#~ msgstr "YMZ280B##CC_GUI_COLOR_INSTR_YMZ280B" + +#~ msgid "RF5C68##CC_GUI_COLOR_INSTR_RF5C68" +#~ msgstr "RF5C68##CC_GUI_COLOR_INSTR_RF5C68" + +#~ msgid "MSM5232##CC_GUI_COLOR_INSTR_MSM5232" +#~ msgstr "MSM5232##CC_GUI_COLOR_INSTR_MSM5232" + +#~ msgid "K007232##CC_GUI_COLOR_INSTR_K007232" +#~ msgstr "K007232##CC_GUI_COLOR_INSTR_K007232" + +#~ msgid "GA20##CC_GUI_COLOR_INSTR_GA20" +#~ msgstr "GA20##CC_GUI_COLOR_INSTR_GA20" + +#~ msgid "Pokémon Mini##CC_GUI_COLOR_INSTR_POKEMINI" +#~ msgstr "Pokémon Mini##CC_GUI_COLOR_INSTR_POKEMINI" + +#~ msgid "SM8521##CC_GUI_COLOR_INSTR_SM8521" +#~ msgstr "SM8521##CC_GUI_COLOR_INSTR_SM8521" + +#~ msgid "PV-1000##CC_GUI_COLOR_INSTR_PV1000" +#~ msgstr "PV-1000##CC_GUI_COLOR_INSTR_PV1000" + +#~ msgid "K053260##CC_GUI_COLOR_INSTR_K053260" +#~ msgstr "K053260##CC_GUI_COLOR_INSTR_K053260" + +#~ msgid "C140##CC_GUI_COLOR_INSTR_C140" +#~ msgstr "C140##CC_GUI_COLOR_INSTR_C140" + +#~ msgid "C219##CC_GUI_COLOR_INSTR_C219" +#~ msgstr "C219##CC_GUI_COLOR_INSTR_C219" + +#~ msgid "ESFM##CC_GUI_COLOR_INSTR_ESFM" +#~ msgstr "ESFM##CC_GUI_COLOR_INSTR_ESFM" + +#~ msgid "ES5503##CC_GUI_COLOR_INSTR_ES5503" +#~ msgstr "ES5503##CC_GUI_COLOR_INSTR_ES5503" + +#~ msgid "PowerNoise (noise)##CC_GUI_COLOR_INSTR_POWERNOISE" +#~ msgstr "PowerNoise (шум)##CC_GUI_COLOR_INSTR_POWERNOISE" + +#~ msgid "PowerNoise (slope)##CC_GUI_COLOR_INSTR_POWERNOISE_SLOPE" +#~ msgstr "PowerNoise (скат)##CC_GUI_COLOR_INSTR_POWERNOISE_SLOPE" + +#~ msgid "Other/Unknown##CC_GUI_COLOR_INSTR_UNKNOWN" +#~ msgstr "Другой/неизв.##CC_GUI_COLOR_INSTR_UNKNOWN" + +#~ msgid "Single color (background)##CC_GUI_COLOR_CHANNEL_BG" +#~ msgstr "Один цвет (фон)##CC_GUI_COLOR_CHANNEL_BG" + +#~ msgid "Single color (text)##CC_GUI_COLOR_CHANNEL_FG" +#~ msgstr "Один цвет (текст)##CC_GUI_COLOR_CHANNEL_FG" + +#~ msgid "FM##CC_GUI_COLOR_CHANNEL_FM" +#~ msgstr "FM##CC_GUI_COLOR_CHANNEL_FM" + +#~ msgid "Pulse##CC_GUI_COLOR_CHANNEL_PULSE" +#~ msgstr "Меандр##CC_GUI_COLOR_CHANNEL_PULSE" + +#~ msgid "Noise##CC_GUI_COLOR_CHANNEL_NOISE" +#~ msgstr "Шум##CC_GUI_COLOR_CHANNEL_NOISE" + +#~ msgid "PCM##CC_GUI_COLOR_CHANNEL_PCM" +#~ msgstr "ИКМ##CC_GUI_COLOR_CHANNEL_PCM" + +#~ msgid "Wave##CC_GUI_COLOR_CHANNEL_WAVE" +#~ msgstr "Волна##CC_GUI_COLOR_CHANNEL_WAVE" + +#~ msgid "FM operator##CC_GUI_COLOR_CHANNEL_OP" +#~ msgstr "FM-оператор##CC_GUI_COLOR_CHANNEL_OP" + +#~ msgid "Muted##CC_GUI_COLOR_CHANNEL_MUTED" +#~ msgstr "Заглушен##CC_GUI_COLOR_CHANNEL_MUTED" + +#~ msgid "Playhead##CC_GUI_COLOR_PATTERN_PLAY_HEAD" +#~ msgstr "Указатель воспроизведения##CC_GUI_COLOR_PATTERN_PLAY_HEAD" + +#~ msgid "Editing##CC_GUI_COLOR_EDITING" +#~ msgstr "Редактирование##CC_GUI_COLOR_EDITING" + +#~ msgid "Editing (will clone)##CC_GUI_COLOR_EDITING_CLONE" +#~ msgstr "Редактирование (будет клонирован)##CC_GUI_COLOR_EDITING_CLONE" + +#~ msgid "Cursor##CC_GUI_COLOR_PATTERN_CURSOR" +#~ msgstr "Курсор##CC_GUI_COLOR_PATTERN_CURSOR" + +#~ msgid "Cursor (hovered)##CC_GUI_COLOR_PATTERN_CURSOR_HOVER" +#~ msgstr "Курсор (мышь на курсоре)##CC_GUI_COLOR_PATTERN_CURSOR_HOVER" + +#~ msgid "Cursor (clicked)##CC_GUI_COLOR_PATTERN_CURSOR_ACTIVE" +#~ msgstr "Курсор (нажат)##CC_GUI_COLOR_PATTERN_CURSOR_ACTIVE" + +#~ msgid "Selection##CC_GUI_COLOR_PATTERN_SELECTION" +#~ msgstr "Выделение##CC_GUI_COLOR_PATTERN_SELECTION" + +#~ msgid "Selection (hovered)##CC_GUI_COLOR_PATTERN_SELECTION_HOVER" +#~ msgstr "" +#~ "Выделение (курсор мыши на выделении)##CC_GUI_COLOR_PATTERN_SELECTION_HOVER" + +#~ msgid "Selection (clicked)##CC_GUI_COLOR_PATTERN_SELECTION_ACTIVE" +#~ msgstr "Выделение (нажато)##CC_GUI_COLOR_PATTERN_SELECTION_ACTIVE" + +#~ msgid "Highlight 1##CC_GUI_COLOR_PATTERN_HI_1" +#~ msgstr "Подсветка 1##CC_GUI_COLOR_PATTERN_HI_1" + +#~ msgid "Highlight 2##CC_GUI_COLOR_PATTERN_HI_2" +#~ msgstr "Подсветка 2##CC_GUI_COLOR_PATTERN_HI_2" + +#~ msgid "Row number##CC_GUI_COLOR_PATTERN_ROW_INDEX" +#~ msgstr "Номер строки##CC_GUI_COLOR_PATTERN_ROW_INDEX" + +#~ msgid "Row number (highlight 1)##CC_GUI_COLOR_PATTERN_ROW_INDEX_HI1" +#~ msgstr "Номер строки (подсветка 1)##CC_GUI_COLOR_PATTERN_ROW_INDEX_HI1" + +#~ msgid "Row number (highlight 2)##CC_GUI_COLOR_PATTERN_ROW_INDEX_HI2" +#~ msgstr "Номер строки (подсветка 2)##CC_GUI_COLOR_PATTERN_ROW_INDEX_HI2" + +#~ msgid "Note##CC_GUI_COLOR_PATTERN_ACTIVE" +#~ msgstr "Нота##CC_GUI_COLOR_PATTERN_ACTIVE" + +#~ msgid "Note (highlight 1)##CC_GUI_COLOR_PATTERN_ACTIVE_HI1" +#~ msgstr "Нота (подсветка 1)##CC_GUI_COLOR_PATTERN_ACTIVE_HI1" + +#~ msgid "Note (highlight 2)##CC_GUI_COLOR_PATTERN_ACTIVE_HI2" +#~ msgstr "Нота (подсветка 2)##CC_GUI_COLOR_PATTERN_ACTIVE_HI2" + +#~ msgid "Blank##CC_GUI_COLOR_PATTERN_INACTIVE" +#~ msgstr "Пустая ячейка##CC_GUI_COLOR_PATTERN_INACTIVE" + +#~ msgid "Blank (highlight 1)##CC_GUI_COLOR_PATTERN_INACTIVE_HI1" +#~ msgstr "Пустая ячейка (подсветка 1)##CC_GUI_COLOR_PATTERN_INACTIVE_HI1" + +#~ msgid "Blank (highlight 2)##CC_GUI_COLOR_PATTERN_INACTIVE_HI2" +#~ msgstr "Пустая ячейка (подсветка 2)##CC_GUI_COLOR_PATTERN_INACTIVE_HI2" + +#~ msgid "Instrument##CC_GUI_COLOR_PATTERN_INS" +#~ msgstr "Инструмент##CC_GUI_COLOR_PATTERN_INS" + +#~ msgid "Instrument (invalid type)##CC_GUI_COLOR_PATTERN_INS_WARN" +#~ msgstr "Инструмент (неправильный тип)##CC_GUI_COLOR_PATTERN_INS_WARN" + +#~ msgid "Instrument (out of range)##CC_GUI_COLOR_PATTERN_INS_ERROR" +#~ msgstr "" +#~ "Инструмент (индекс не соответствует существующему " +#~ "инструменту)##CC_GUI_COLOR_PATTERN_INS_ERROR" + +#~ msgid "Volume (0%)##CC_GUI_COLOR_PATTERN_VOLUME_MIN" +#~ msgstr "Громкость (0%)##CC_GUI_COLOR_PATTERN_VOLUME_MIN" + +#~ msgid "Volume (50%)##CC_GUI_COLOR_PATTERN_VOLUME_HALF" +#~ msgstr "Громкость (50%)##CC_GUI_COLOR_PATTERN_VOLUME_HALF" + +#~ msgid "Volume (100%)##CC_GUI_COLOR_PATTERN_VOLUME_MAX" +#~ msgstr "Громкость (100%)##CC_GUI_COLOR_PATTERN_VOLUME_MAX" + +#~ msgid "Invalid effect##CC_GUI_COLOR_PATTERN_EFFECT_INVALID" +#~ msgstr "Неправильный индекс эффекта##CC_GUI_COLOR_PATTERN_EFFECT_INVALID" + +#~ msgid "Pitch effect##CC_GUI_COLOR_PATTERN_EFFECT_PITCH" +#~ msgstr "Эффект (частота)##CC_GUI_COLOR_PATTERN_EFFECT_PITCH" + +#~ msgid "Volume effect##CC_GUI_COLOR_PATTERN_EFFECT_VOLUME" +#~ msgstr "Эффект (громкость)##CC_GUI_COLOR_PATTERN_EFFECT_VOLUME" + +#~ msgid "Panning effect##CC_GUI_COLOR_PATTERN_EFFECT_PANNING" +#~ msgstr "Эффект (панорамирование)##CC_GUI_COLOR_PATTERN_EFFECT_PANNING" + +#~ msgid "Song effect##CC_GUI_COLOR_PATTERN_EFFECT_SONG" +#~ msgstr "Эффект (трек)##CC_GUI_COLOR_PATTERN_EFFECT_SONG" + +#~ msgid "Time effect##CC_GUI_COLOR_PATTERN_EFFECT_TIME" +#~ msgstr "Эффект (время)##CC_GUI_COLOR_PATTERN_EFFECT_TIME" + +#~ msgid "Speed effect##CC_GUI_COLOR_PATTERN_EFFECT_SPEED" +#~ msgstr "Эффект (громкость)##CC_GUI_COLOR_PATTERN_EFFECT_SPEED" + +#~ msgid "Primary specific effect##CC_GUI_COLOR_PATTERN_EFFECT_SYS_PRIMARY" +#~ msgstr "Основной эффект чипа##CC_GUI_COLOR_PATTERN_EFFECT_SYS_PRIMARY" + +#~ msgid "Secondary specific effect##CC_GUI_COLOR_PATTERN_EFFECT_SYS_SECONDARY" +#~ msgstr "" +#~ "Вспомогательный эффект чипа##CC_GUI_COLOR_PATTERN_EFFECT_SYS_SECONDARY" + +#~ msgid "Miscellaneous##CC_GUI_COLOR_PATTERN_EFFECT_MISC" +#~ msgstr "Эффект (рзное)##CC_GUI_COLOR_PATTERN_EFFECT_MISC" + +#~ msgid "External command output##CC_GUI_COLOR_EE_VALUE" +#~ msgstr "Вывод внешней команды##CC_GUI_COLOR_EE_VALUE" + +#~ msgid "Status: off/disabled##CC_GUI_COLOR_PATTERN_STATUS_OFF" +#~ msgstr "Статус: выкл./отключён##CC_GUI_COLOR_PATTERN_STATUS_OFF" + +#~ msgid "Status: off + macro rel##CC_GUI_COLOR_PATTERN_STATUS_REL" +#~ msgstr "Статус: выкл. + релиз макроса##CC_GUI_COLOR_PATTERN_STATUS_REL" + +#~ msgid "Status: on + macro rel##CC_GUI_COLOR_PATTERN_STATUS_REL_ON" +#~ msgstr "Статус: вкл. + релиз макроса##CC_GUI_COLOR_PATTERN_STATUS_REL_ON" + +#~ msgid "Status: on##CC_GUI_COLOR_PATTERN_STATUS_ON" +#~ msgstr "Статус: вкл.##CC_GUI_COLOR_PATTERN_STATUS_ON" + +#~ msgid "Status: volume##CC_GUI_COLOR_PATTERN_STATUS_VOLUME" +#~ msgstr "Статус: громкость##CC_GUI_COLOR_PATTERN_STATUS_VOLUME" + +#~ msgid "Status: pitch##CC_GUI_COLOR_PATTERN_STATUS_PITCH" +#~ msgstr "Статус: частота##CC_GUI_COLOR_PATTERN_STATUS_PITCH" + +#~ msgid "Status: panning##CC_GUI_COLOR_PATTERN_STATUS_PANNING" +#~ msgstr "Статус: панорамирование##CC_GUI_COLOR_PATTERN_STATUS_PANNING" + +#~ msgid "Status: chip (primary)##CC_GUI_COLOR_PATTERN_STATUS_SYS1" +#~ msgstr "Статус: основной эффект чипа##CC_GUI_COLOR_PATTERN_STATUS_SYS1" + +#~ msgid "Status: chip (secondary)##CC_GUI_COLOR_PATTERN_STATUS_SYS2" +#~ msgstr "" +#~ "Статус: вспомогательный эффект чипа##CC_GUI_COLOR_PATTERN_STATUS_SYS2" + +#~ msgid "Status: mixing##CC_GUI_COLOR_PATTERN_STATUS_MIXING" +#~ msgstr "Статус: микширование##CC_GUI_COLOR_PATTERN_STATUS_MIXING" + +#~ msgid "Status: DSP effect##CC_GUI_COLOR_PATTERN_STATUS_DSP" +#~ msgstr "Статус: эффект ЦОС##CC_GUI_COLOR_PATTERN_STATUS_DSP" + +#~ msgid "Status: note altering##CC_GUI_COLOR_PATTERN_STATUS_NOTE" +#~ msgstr "Статус: изменение ноты##CC_GUI_COLOR_PATTERN_STATUS_NOTE" + +#~ msgid "Status: misc color 1##CC_GUI_COLOR_PATTERN_STATUS_MISC1" +#~ msgstr "Статус: разное (цвет 1)##CC_GUI_COLOR_PATTERN_STATUS_MISC1" + +#~ msgid "Status: misc color 2##CC_GUI_COLOR_PATTERN_STATUS_MISC2" +#~ msgstr "Статус: разное (цвет 2)##CC_GUI_COLOR_PATTERN_STATUS_MISC2" + +#~ msgid "Status: misc color 3##CC_GUI_COLOR_PATTERN_STATUS_MISC3" +#~ msgstr "Статус: разное (цвет 3)##CC_GUI_COLOR_PATTERN_STATUS_MISC3" + +#~ msgid "Status: attack##CC_GUI_COLOR_PATTERN_STATUS_ATTACK" +#~ msgstr "Статус: атака##CC_GUI_COLOR_PATTERN_STATUS_ATTACK" + +#~ msgid "Status: decay##CC_GUI_COLOR_PATTERN_STATUS_DECAY" +#~ msgstr "Статус: спад##CC_GUI_COLOR_PATTERN_STATUS_DECAY" + +#~ msgid "Status: sustain##CC_GUI_COLOR_PATTERN_STATUS_SUSTAIN" +#~ msgstr "Статус: сустейн##CC_GUI_COLOR_PATTERN_STATUS_SUSTAIN" + +#~ msgid "Status: release##CC_GUI_COLOR_PATTERN_STATUS_RELEASE" +#~ msgstr "Статус: релиз##CC_GUI_COLOR_PATTERN_STATUS_RELEASE" + +#~ msgid "Status: decrease linear##CC_GUI_COLOR_PATTERN_STATUS_DEC_LINEAR" +#~ msgstr "Статус: линейное уменьшение##CC_GUI_COLOR_PATTERN_STATUS_DEC_LINEAR" + +#~ msgid "Status: decrease exp##CC_GUI_COLOR_PATTERN_STATUS_DEC_EXP" +#~ msgstr "" +#~ "Статус: экспоненциальное уменьшение##CC_GUI_COLOR_PATTERN_STATUS_DEC_EXP" + +#~ msgid "Status: increase##CC_GUI_COLOR_PATTERN_STATUS_INC" +#~ msgstr "Статус: увеличение##CC_GUI_COLOR_PATTERN_STATUS_INC" + +#~ msgid "Status: bent##CC_GUI_COLOR_PATTERN_STATUS_BENT" +#~ msgstr "Статус: изменена частота##CC_GUI_COLOR_PATTERN_STATUS_BENT" + +#~ msgid "Status: direct##CC_GUI_COLOR_PATTERN_STATUS_DIRECT" +#~ msgstr "Статус: прямой##CC_GUI_COLOR_PATTERN_STATUS_DIRECT" + +#~ msgid "Background##CC_GUI_COLOR_SAMPLE_BG" +#~ msgstr "Фон##CC_GUI_COLOR_SAMPLE_BG" + +#~ msgid "Waveform##CC_GUI_COLOR_SAMPLE_FG" +#~ msgstr "Волна##CC_GUI_COLOR_SAMPLE_FG" + +#~ msgid "Time background##CC_GUI_COLOR_SAMPLE_TIME_BG" +#~ msgstr "Фон поля времени##CC_GUI_COLOR_SAMPLE_TIME_BG" + +#~ msgid "Time text##CC_GUI_COLOR_SAMPLE_TIME_FG" +#~ msgstr "Текст поля времени##CC_GUI_COLOR_SAMPLE_TIME_FG" + +#~ msgid "Loop region##CC_GUI_COLOR_SAMPLE_LOOP" +#~ msgstr "Зацикленная часть##CC_GUI_COLOR_SAMPLE_LOOP" + +#~ msgid "Center guide##CC_GUI_COLOR_SAMPLE_CENTER" +#~ msgstr "Центральная полоса##CC_GUI_COLOR_SAMPLE_CENTER" + +#~ msgid "Grid##CC_GUI_COLOR_SAMPLE_GRID" +#~ msgstr "Сетка##CC_GUI_COLOR_SAMPLE_GRID" + +#~ msgid "Selection##CC_GUI_COLOR_SAMPLE_SEL" +#~ msgstr "Выделение##CC_GUI_COLOR_SAMPLE_SEL" + +#~ msgid "Selection points##CC_GUI_COLOR_SAMPLE_SEL_POINT" +#~ msgstr "Границы выделения##CC_GUI_COLOR_SAMPLE_SEL_POINT" + +#~ msgid "Preview needle##CC_GUI_COLOR_SAMPLE_NEEDLE" +#~ msgstr "Курсор воспроизведения превью##CC_GUI_COLOR_SAMPLE_NEEDLE" + +#~ msgid "Playing needles##CC_GUI_COLOR_SAMPLE_NEEDLE_PLAYING" +#~ msgstr "Курсоры воспроизведения##CC_GUI_COLOR_SAMPLE_NEEDLE_PLAYING" + +#~ msgid "Loop markers##CC_GUI_COLOR_SAMPLE_LOOP_POINT" +#~ msgstr "Маркеры зацикливания##CC_GUI_COLOR_SAMPLE_LOOP_POINT" + +#~ msgid "Chip select: disabled##CC_GUI_COLOR_SAMPLE_CHIP_DISABLED" +#~ msgstr "Выбор чипа: выкл.##CC_GUI_COLOR_SAMPLE_CHIP_DISABLED" + +#~ msgid "Chip select: enabled##CC_GUI_COLOR_SAMPLE_CHIP_ENABLED" +#~ msgstr "Выбор чипа: вкл.##CC_GUI_COLOR_SAMPLE_CHIP_ENABLED" + +#~ msgid "Chip select: enabled (failure)##CC_GUI_COLOR_SAMPLE_CHIP_WARNING" +#~ msgstr "Выбор чипа: вкл. (ошибка)##CC_GUI_COLOR_SAMPLE_CHIP_WARNING" + +#~ msgid "Unallocated##CC_GUI_COLOR_PAT_MANAGER_NULL" +#~ msgstr "" +#~ "Паттерн не используется и память под него не " +#~ "выделена##CC_GUI_COLOR_PAT_MANAGER_NULL" + +#~ msgid "Unused##CC_GUI_COLOR_PAT_MANAGER_UNUSED" +#~ msgstr "Паттерн не используется##CC_GUI_COLOR_PAT_MANAGER_UNUSED" + +#~ msgid "Used##CC_GUI_COLOR_PAT_MANAGER_USED" +#~ msgstr "Паттерн используется##CC_GUI_COLOR_PAT_MANAGER_USED" + +#~ msgid "Overused##CC_GUI_COLOR_PAT_MANAGER_OVERUSED" +#~ msgstr "Паттерн используется очень часто##CC_GUI_COLOR_PAT_MANAGER_OVERUSED" + +#~ msgid "Really overused##CC_GUI_COLOR_PAT_MANAGER_EXTREMELY_OVERUSED" +#~ msgstr "" +#~ "Паттерн используется крайне " +#~ "часто##CC_GUI_COLOR_PAT_MANAGER_EXTREMELY_OVERUSED" + +#~ msgid "Combo Breaker##CC_GUI_COLOR_PAT_MANAGER_COMBO_BREAKER" +#~ msgstr "" +#~ "Число использований паттерна больше, чем длина трека!" +#~ "##CC_GUI_COLOR_PAT_MANAGER_COMBO_BREAKER" + +#~ msgid "Background##CC_GUI_COLOR_PIANO_BACKGROUND" +#~ msgstr "Фон##CC_GUI_COLOR_PIANO_BACKGROUND" + +#~ msgid "Upper key##CC_GUI_COLOR_PIANO_KEY_TOP" +#~ msgstr "Верхние клавиши##CC_GUI_COLOR_PIANO_KEY_TOP" + +#~ msgid "Upper key (feedback)##CC_GUI_COLOR_PIANO_KEY_TOP_HIT" +#~ msgstr "Верхние клавиши (обратная связь)##CC_GUI_COLOR_PIANO_KEY_TOP_HIT" + +#~ msgid "Upper key (pressed)##CC_GUI_COLOR_PIANO_KEY_TOP_ACTIVE" +#~ msgstr "Верхние клавиши (нажатые)##CC_GUI_COLOR_PIANO_KEY_TOP_ACTIVE" + +#~ msgid "Lower key##CC_GUI_COLOR_PIANO_KEY_BOTTOM" +#~ msgstr "Нижние клавиши##CC_GUI_COLOR_PIANO_KEY_BOTTOM" + +#~ msgid "Lower key (feedback)##CC_GUI_COLOR_PIANO_KEY_BOTTOM_HIT" +#~ msgstr "Нижние клавиши (обратная связь)##CC_GUI_COLOR_PIANO_KEY_BOTTOM_HIT" + +#~ msgid "Lower key (pressed)##CC_GUI_COLOR_PIANO_KEY_BOTTOM_ACTIVE" +#~ msgstr "Нижние клавиши (нажатые)##CC_GUI_COLOR_PIANO_KEY_BOTTOM_ACTIVE" + +#~ msgid "Clock text##CC_GUI_COLOR_CLOCK_TEXT" +#~ msgstr "Текст часов##CC_GUI_COLOR_CLOCK_TEXT" + +#~ msgid "Beat (off)##CC_GUI_COLOR_CLOCK_BEAT_LOW" +#~ msgstr "Слабая доля##CC_GUI_COLOR_CLOCK_BEAT_LOW" + +#~ msgid "Beat (on)##CC_GUI_COLOR_CLOCK_BEAT_HIGH" +#~ msgstr "Сильная доля##CC_GUI_COLOR_CLOCK_BEAT_HIGH" + +#~ msgid "PortSet##CC_GUI_COLOR_PATCHBAY_PORTSET" +#~ msgstr "Группа портов##CC_GUI_COLOR_PATCHBAY_PORTSET" + +#~ msgid "Port##CC_GUI_COLOR_PATCHBAY_PORT" +#~ msgstr "Порт##CC_GUI_COLOR_PATCHBAY_PORT" + +#~ msgid "Port (hidden/unavailable)##CC_GUI_COLOR_PATCHBAY_PORT_HIDDEN" +#~ msgstr "Порт (скрыт/недоступен)##CC_GUI_COLOR_PATCHBAY_PORT_HIDDEN" + +#~ msgid "Connection (selected)##CC_GUI_COLOR_PATCHBAY_CONNECTION" +#~ msgstr "Соединение (выделенное)##CC_GUI_COLOR_PATCHBAY_CONNECTION" + +#~ msgid "Connection (other)##CC_GUI_COLOR_PATCHBAY_CONNECTION_BG" +#~ msgstr "Соединение (обычное)##CC_GUI_COLOR_PATCHBAY_CONNECTION_BG" + +#~ msgid "Background##CC_GUI_COLOR_MEMORY_BG" +#~ msgstr "Фон##CC_GUI_COLOR_MEMORY_BG" + +#~ msgid "Unknown##CC_GUI_COLOR_MEMORY_FREE" +#~ msgstr "Неизв.##CC_GUI_COLOR_MEMORY_FREE" + +#~ msgid "Reserved##CC_GUI_COLOR_MEMORY_RESERVED" +#~ msgstr "Зарезерв.##CC_GUI_COLOR_MEMORY_RESERVED" + +#~ msgid "Sample##CC_GUI_COLOR_MEMORY_SAMPLE" +#~ msgstr "Сэмпл##CC_GUI_COLOR_MEMORY_SAMPLE" + +#~ msgid "Sample (alternate 1)##CC_GUI_COLOR_MEMORY_SAMPLE_ALT1" +#~ msgstr "Сэмпл (альтерн. 1)##CC_GUI_COLOR_MEMORY_SAMPLE_ALT1" + +#~ msgid "Sample (alternate 2)##CC_GUI_COLOR_MEMORY_SAMPLE_ALT2" +#~ msgstr "Сэмпл (альтерн. 2)##CC_GUI_COLOR_MEMORY_SAMPLE_ALT2" + +#~ msgid "Sample (alternate 3)##CC_GUI_COLOR_MEMORY_SAMPLE_ALT3" +#~ msgstr "Сэмпл (альтерн. 3)##CC_GUI_COLOR_MEMORY_SAMPLE_ALT3" + +#~ msgid "Wave RAM##CC_GUI_COLOR_MEMORY_WAVE_RAM" +#~ msgstr "ОЗУ волн##CC_GUI_COLOR_MEMORY_WAVE_RAM" + +#~ msgid "Wavetable (static)##CC_GUI_COLOR_MEMORY_WAVE_STATIC" +#~ msgstr "Волновая таблица (статич.)##CC_GUI_COLOR_MEMORY_WAVE_STATIC" + +#~ msgid "Echo buffer##CC_GUI_COLOR_MEMORY_ECHO" +#~ msgstr "Буфер эхо##CC_GUI_COLOR_MEMORY_ECHO" + +#~ msgid "Namco 163 load pos##CC_GUI_COLOR_MEMORY_N163_LOAD" +#~ msgstr "Namco 163 положение загрузки##CC_GUI_COLOR_MEMORY_N163_LOAD" + +#~ msgid "Namco 163 play pos##CC_GUI_COLOR_MEMORY_N163_PLAY" +#~ msgstr "Namco 163 положение проигрывания##CC_GUI_COLOR_MEMORY_N163_PLAY" + +#~ msgid "Sample (bank 0)##CC_GUI_COLOR_MEMORY_BANK0" +#~ msgstr "Сэмпл (банк 0)##CC_GUI_COLOR_MEMORY_BANK0" + +#~ msgid "Sample (bank 1)##CC_GUI_COLOR_MEMORY_BANK1" +#~ msgstr "Сэмпл (банк 1)##CC_GUI_COLOR_MEMORY_BANK1" + +#~ msgid "Sample (bank 2)##CC_GUI_COLOR_MEMORY_BANK2" +#~ msgstr "Сэмпл (банк 2)##CC_GUI_COLOR_MEMORY_BANK2" + +#~ msgid "Sample (bank 3)##CC_GUI_COLOR_MEMORY_BANK3" +#~ msgstr "Сэмпл (банк 3)##CC_GUI_COLOR_MEMORY_BANK3" + +#~ msgid "Sample (bank 4)##CC_GUI_COLOR_MEMORY_BANK4" +#~ msgstr "Сэмпл (банк 4)##CC_GUI_COLOR_MEMORY_BANK4" + +#~ msgid "Sample (bank 5)##CC_GUI_COLOR_MEMORY_BANK5" +#~ msgstr "Сэмпл (банк 5)##CC_GUI_COLOR_MEMORY_BANK5" + +#~ msgid "Sample (bank 6)##CC_GUI_COLOR_MEMORY_BANK6" +#~ msgstr "Сэмпл (банк 6)##CC_GUI_COLOR_MEMORY_BANK6" + +#~ msgid "Sample (bank 7)##CC_GUI_COLOR_MEMORY_BANK7" +#~ msgstr "Сэмпл (банк 7)##CC_GUI_COLOR_MEMORY_BANK7" + +#~ msgid "Log level: Error##CC_GUI_COLOR_LOGLEVEL_ERROR" +#~ msgstr "Уровень лога: ошибка##CC_GUI_COLOR_LOGLEVEL_ERROR" + +#~ msgid "Log level: Warning##CC_GUI_COLOR_LOGLEVEL_WARNING" +#~ msgstr "Уровень лога: предупреждение##CC_GUI_COLOR_LOGLEVEL_WARNING" + +#~ msgid "Log level: Info##CC_GUI_COLOR_LOGLEVEL_INFO" +#~ msgstr "Уровень лога: информация##CC_GUI_COLOR_LOGLEVEL_INFO" + +#~ msgid "Log level: Debug##CC_GUI_COLOR_LOGLEVEL_DEBUG" +#~ msgstr "Уровень лога: отладка##CC_GUI_COLOR_LOGLEVEL_DEBUG" + +#~ msgid "Log level: Trace/Verbose##CC_GUI_COLOR_LOGLEVEL_TRACE" +#~ msgstr "Уровень лога: диагностика/подробный##CC_GUI_COLOR_LOGLEVEL_TRACE" + +#~ msgid "PB used" +#~ msgstr " ПиБ использовано" + +#~ msgid "TB used" +#~ msgstr " ТиБ использовано" + +#~ msgid "GB used" +#~ msgstr " ГиБ использовано" + +#~ msgid "MB used" +#~ msgstr " МиБ использовано" + +#~ msgid "KB used" +#~ msgstr " КиБ использовано" + +#~ msgid " bytes used" +#~ msgid_plural " bytes used" +#~ msgstr[0] " байт использовано" +#~ msgstr[1] " байта использовано" +#~ msgstr[2] " байтов использовано" + +#~ msgid "P" +#~ msgstr " ПиБ" + +#~ msgid "T" +#~ msgstr " ТиБ" + +#~ msgid "G" +#~ msgstr " ГиБ" + +#~ msgid "M" +#~ msgstr " МиБ" + +#~ msgid "K" +#~ msgstr " КиБ" + +#~ msgid "Raw Period" +#~ msgstr "Период (регистровое знач.)" + +#~ msgid "Raw Envelope Period" +#~ msgstr "Период огиб. (регистровое знач.)" + +#~ msgid "A" +#~ msgstr "А" + +#~ msgid "D" +#~ msgstr "С" + +#~ msgid "S" +#~ msgstr "С" + +#~ msgid "R" +#~ msgstr "Р" + +#~ msgid "Raw Frequency" +#~ msgstr "Частота (регистровое знач.)" + +#~ msgid "Oscillator mode:" +#~ msgstr "Режим осциллятора:" + +#~ msgid "Freerun" +#~ msgstr "Свободн. (зацикл.)" + +#~ msgid "Oneshot" +#~ msgstr "Однократн." + +#~ msgid "Sync/AM" +#~ msgstr "Синхр./АМ" + +#~ msgid "Virtual softpan channel" +#~ msgstr "Виртуальный стерео-канал" + +#~ msgid "" +#~ "Combines odd and next even channel into one virtual channel with 256-step " +#~ "panning.\n" +#~ "Instrument, volume and effects need to be placed on the odd channel (e.g. " +#~ "1st, 3rd, 5th etc.)" +#~ msgstr "" +#~ "Использует нечётный и следующий за ним чётный канал для создания " +#~ "виртуального канала с возможностью плавного панорамирования (256 шагов).\n" +#~ "Ноты, инструменты, команды громкости и эффекты необходимо размещать в " +#~ "нечётном канале (1-ый, 3-ий и т.д.)" + +#~ msgid "Phase reset on key-on" +#~ msgstr "Сброс фазы в начале ноты" + +#~ msgid "Osc. mode" +#~ msgstr "Реж. осцилл." + +#~ msgid "Wave/sample pos." +#~ msgstr "Полож. волны/сэмпла в памяти" + +#~ msgid "Osc. output" +#~ msgstr "Вывод осцилл." + +#~ msgid "Envelope count" +#~ msgstr "Скорость огиб." + +#~ msgid "op%d" +#~ msgstr "оп%d" + +#~ msgid "OP%d" +#~ msgstr "ОП%d" + +#~ msgid "Detune in semitones" +#~ msgstr "Расстройка в полутонах" + +#~ msgid "" +#~ "Detune in fractions of semitone.\n" +#~ "128 = +1 semitone, -128 = -1 semitone." +#~ msgstr "" +#~ "Расстройка в долях полутона.\n" +#~ "128 = +1 полутон, -128 = -1 полутон." + +#~ msgid "If operator outputs sound, enable left channel output." +#~ msgstr "Включить вывод звука в левый канал." + +#~ msgid "If operator outputs sound, enable right channel output." +#~ msgstr "Включить вывод звука в правый канал." + +#~ msgid "Base note" +#~ msgstr "Базовая нота" + +#~ msgid "Finetune" +#~ msgstr "Расстройка" + +#~ msgid "Slide speed" +#~ msgstr "Скорость слайда" + +#~ msgid "Set PW" +#~ msgstr "Уст. скважн." + +#~ msgid "Set pulse width on keydown" +#~ msgstr "Установить скважность на новой ноте" + +#~ msgid "Initial pulse width" +#~ msgstr "Начальная скважность" + +#~ msgid "Set cutoff" +#~ msgstr "Устан. част. среза" + +#~ msgid "Set filter cutoff on keydown" +#~ msgstr "Установить частоту среза фильтра на новой ноте" + +#~ msgid "metal" +#~ msgstr "\"металл.\"" + +#~ msgid "sine" +#~ msgstr "синус" + +#~ msgid "Enable ring modulation" +#~ msgstr "Включить кольцевую модуляцию" + +#~ msgid "Ring mod source" +#~ msgstr "Источник кольцевой модуляции" + +#~ msgid "FF = self-modulation" +#~ msgstr "FF = самомодуляция" + +#~ msgid "Enable hard sync" +#~ msgstr "Включить синхронизацию осцилляторов" + +#~ msgid "Hard sync source" +#~ msgstr "Источник синхронизации" + +#~ msgid "FF = self-sync" +#~ msgstr "FF = самосинхронизация" + +#~ msgid "Retrigger on slide" +#~ msgstr "Перезапуск на слайде" + +#~ msgid "" +#~ "Restart instrument and envelope even if slide command (03xx) is placed " +#~ "with the note." +#~ msgstr "" +#~ "Перезапустить инструмент и огибающую, даже если у ноты стоит эффект " +#~ "слайда (03xx)." + +#~ msgid "Sync osc. on keydown" +#~ msgstr "Синхр. осц. на новой ноте" + +#~ msgid "" +#~ "Reset phase of oscillator each time new note is played.\n" +#~ "Does not happen when slide (03xx) or legato command is placed." +#~ msgstr "" +#~ "Сбросить фазу осциллятора на каждой новой ноте.\n" +#~ "Не выполняется при наличии команды слайда (03xx) или легато." + +#~ msgid "PWM" +#~ msgstr "ШИМ" + +#~ msgid "VOL" +#~ msgstr "ГР" + +#~ msgid "Instrument program" +#~ msgstr "Программа инструмента" + +#~ msgid "Program period" +#~ msgstr "Период программы" + +#~ msgid "Do not restart instrument program on keydown" +#~ msgstr "Не перезапускать программу инструмента на новой ноте" + +#~ msgid "Unite" +#~ msgstr "Объед." + +#~ msgid "Semitones" +#~ msgstr "Полутонов" + +#~ msgid "First external arpeggio note" +#~ msgstr "Первая внешняя нота арпеджио" + +#~ msgid "Second external arpeggio note" +#~ msgstr "Вторая внешняя нота арпеджио" + +#~ msgid "Source channel" +#~ msgstr "Канал-источник" + +#~ msgid "Source is self" +#~ msgstr "Текущий канал является источником" + +#~ msgid "Step to jump to" +#~ msgstr "Шаг программы, на который совершается переход" + +#~ msgid "No operation" +#~ msgstr "Ничего не делать" + +#~ msgid "Program end" +#~ msgstr "Конец программы" + +#~ msgid "Execute next command at the same tick" +#~ msgstr "Выполнить следующую команду в этом же шаге" + +#~ msgid "Envelope Reset/Key Control" +#~ msgstr "Упр. огибающей" + +#~ msgid "Ring mod toggle" +#~ msgstr "Кольц. мод. вкл./выкл." + +#~ msgid "Hard sync toggle" +#~ msgstr "Синхр. осц. вкл./выкл." + +#~ msgid "Tabs" +#~ msgstr "Вкладки" + +#~ msgid "Single (combo box)" +#~ msgstr "Один (выпадающий список)" + +#~ msgid "Frequency Divider" +#~ msgstr "Делитель частоты" + +#~ msgid "AR" +#~ msgstr "СА" + +#~ msgid "D1R" +#~ msgstr "С1С" + +#~ msgid "DL" +#~ msgstr "УС" + +#~ msgid "D2R" +#~ msgstr "С2С" + +#~ msgid "RR" +#~ msgstr "СР" + +#~ msgid "RC" +#~ msgstr "КС" + +#~ msgid "Position##WAVEPOS" +#~ msgstr "Положение##WAVEPOS" + +#~ msgid "Length##WAVELEN" +#~ msgstr "Длина##WAVELEN" + +#~ msgid "4-op" +#~ msgstr "4-оп" + +#~ msgid "16-bit raw period macro" +#~ msgstr "16-битный макрос периода (регистровое знач.)" + +#~ msgid "L##L%d" +#~ msgstr "Ц##L%d" + +#~ msgid "" +#~ "Ringmod from OP3 + double pitch ModInput\n" +#~ "WARNING - has emulation issues, subject to change" +#~ msgstr "" +#~ "Кольцевая модуляция от ОП3 + входная модуляция с удвоенной частотой\n" +#~ "ВНИМАНИЕ - имеются проблемы с эмуляцией этого режима, она может измениться" + +#~ msgid "op1" +#~ msgstr "оп1" + +#~ msgid "op2" +#~ msgstr "оп2" + +#~ msgid "op3" +#~ msgstr "оп3" + +#~ msgid "op4" +#~ msgstr "оп4" + +#~ msgid "15kHz" +#~ msgstr "15 кГц" + +#~ msgid "int" +#~ msgstr "интегр." + +#~ msgid "8580 SID" +#~ msgstr "8580 SID" + +#~ msgid "bitwise AND" +#~ msgstr "побитовое И" + +#~ msgid "bitwise OR" +#~ msgstr "побитовое ИЛИ" + +#~ msgid "bitwise XOR" +#~ msgstr "побитовое искл. ИЛИ" + +#~ msgid "Lowpass" +#~ msgstr "ФНЧ" + +#~ msgid "Highpass" +#~ msgstr "ФВЧ" + +#~ msgid "Bandpass" +#~ msgstr "ППФ" + +#~ msgid "Low + High" +#~ msgstr "ФНЧ + ФВЧ" + +#~ msgid "High + Band" +#~ msgstr "ФВЧ + ППФ" + +#~ msgid "Low + Band" +#~ msgstr "ФНЧ + ППФ" + +#~ msgid "Low + High + Band" +#~ msgstr "ФНЧ + ФВЧ + ППФ" + +#~ msgid "Portamento up" +#~ msgstr "Портаменто вверх" + +#~ msgid "Portamento down" +#~ msgstr "Портаменто вниз" + +#~ msgid "Set pulse width" +#~ msgstr "Скважность" + +#~ msgid "Pulse width down" +#~ msgstr "Скважность вниз" + +#~ msgid "Pulse width up" +#~ msgstr "Скважность вверх" + +#~ msgid "Set filter cutoff" +#~ msgstr "Частота среза" + +#~ msgid "Volume fade" +#~ msgstr "Изменение громкости" + +#~ msgid "Set waveform" +#~ msgstr "Волна" + +#~ msgid "Set volume" +#~ msgstr "Громкость" + +#~ msgid "Toggle filter" +#~ msgstr "Вкл./выкл. фильтр" + +#~ msgid "Fine portamento up" +#~ msgstr "Точное портаменто вверх" + +#~ msgid "Fine portamento down" +#~ msgstr "Точное портаменто вниз" + +#~ msgid "Filter mode" +#~ msgstr "Режим фильтра" + +#~ msgid "Retrigger" +#~ msgstr "Циклич. перезапуск" + +#~ msgid "Fine volume down" +#~ msgstr "Точное изменение громкости вниз" + +#~ msgid "Fine volume up" +#~ msgstr "Точное изменение громкости вверх" + +#~ msgid "Note cut" +#~ msgstr "Заглушить ноту" + +#~ msgid "Phase reset" +#~ msgstr "Сброс фазы" + +#~ msgid "Filter cutoff up" +#~ msgstr "Частота среза вверх" + +#~ msgid "Filter cutoff down" +#~ msgstr "Частота среза вниз" + +#~ msgid "Set filter resonance" +#~ msgstr "Резонанс" + +#~ msgid "Filter resonance up" +#~ msgstr "Резонанс вверх" + +#~ msgid "Filter resonance down" +#~ msgstr "Резонанс вниз" + +#~ msgid "Set attack" +#~ msgstr "Атака" + +#~ msgid "Set decay" +#~ msgstr "Спад" + +#~ msgid "Set sustain" +#~ msgstr "Сустейн" + +#~ msgid "Set release" +#~ msgstr "Релиз" + +#~ msgid "Ring modulation source" +#~ msgstr "Источник кольцевой модуляции" + +#~ msgid "Portamento up (semitones)" +#~ msgstr "Портаменто вверх (полутонов)" + +#~ msgid "Portamento down (semitones)" +#~ msgstr "Портаменто вниз (полутонов)" + +#~ msgid "Absolute arpeggio note" +#~ msgstr "Абсолютная нота арпеджио" + +#~ msgid "Trigger release" +#~ msgstr "Релиз огибающей" + +#~ msgid "Loop begin" +#~ msgstr "Начало цикла" + +#~ msgid "Loop end" +#~ msgstr "Конец цикла" + +#~ msgid "Jump" +#~ msgstr "Переход на шаг" + +#~ msgid "NOP" +#~ msgstr "Ничего не делать" + +#~ msgid "Bug" +#~ msgstr "Сбой" + +#~ msgid "Local" +#~ msgstr "Локальная" + +#~ msgid "Hex##MTHex" +#~ msgstr "Шест.##MTHex" + +#~ msgid "Dec##MTHex" +#~ msgstr "Дес.##MTHex" + +#~ msgid "Result" +#~ msgstr "Результат" + +#~ msgid "Wave 1 " +#~ msgstr "Волна 1 " + +#~ msgid "Local Waves" +#~ msgstr "Локальные волн. табл." + +#~ msgid "not a command stream" +#~ msgstr "не является потоком команд" + +#~ msgid "" +#~ "E6xy: Delayed note transpose (x: 0-7 = up, 8-F = down (after (x % 7) " +#~ "ticks); y: semitones)" +#~ msgstr "" +#~ "E6xy: Отложенное транспонирование ноты (x: 0-7 = вверх, 8-F = вниз (после " +#~ "(x % 7) шагов движка); y: полутонов)" + +#~ msgid "E8xy: Delayed note transpose up (x: ticks; y: semitones)" +#~ msgstr "" +#~ "E8xy: Отложенное транспонирование ноты вверх (x: шагов движка; y: " +#~ "полутонов)" + +#~ msgid "E9xy: Delayed note transpose down (x: ticks; y: semitones)" +#~ msgstr "" +#~ "E9xy: Отложенное транспонирование ноты вниз (x: шагов движка; y: " +#~ "полутонов)" + +#~ msgid "this module was created with a more recent version of Furnace!" +#~ msgstr "этот модуль был создан в более новой версии Furnace!" + +#~ msgid "couldn't seek to info header!" +#~ msgstr "не смог перейти к заголовку с информацией!" + +#~ msgid "invalid info header!" +#~ msgstr "неправильный заголовок с информацией!" + +#~ msgid "pattern length is negative!" +#~ msgstr "отрицательная длина паттерна!" + +#~ msgid "pattern length is too large!" +#~ msgstr "слишком большая длина паттерна!" + +#~ msgid "song length is negative!" +#~ msgstr "отрицательная длина трека!" + +#~ msgid "song is too long!" +#~ msgstr "трек слишком длинный!" + +#~ msgid "invalid instrument count!" +#~ msgstr "неправильное число инструментов!" + +#~ msgid "invalid wavetable count!" +#~ msgstr "неправильное число волновых таблиц!" + +#~ msgid "invalid sample count!" +#~ msgstr "неправильное число сэмплов!" + +#~ msgid "invalid pattern count!" +#~ msgstr "неправильное число паттернов!" + +#~ msgid "unrecognized system ID %.2x!" +#~ msgstr "неизвестный индекс системы %.2x!" + +#~ msgid "zero chips!" +#~ msgstr "нулевое число чипов!" + +#~ msgid "channel %d has too many effect columns! (%d)" +#~ msgstr "канал %d содержит слишком много столбцов эффектов! (%d)" + +#~ msgid "couldn't seek to chip %d flags!" +#~ msgstr "не смог перейти к флагам чипа %d!" + +#~ msgid "invalid flag header!" +#~ msgstr "неправильный заголовок флагов!" + +#~ msgid "couldn't read instrument directory" +#~ msgstr "не смог прочитать папку с инструментами" + +#~ msgid "invalid instrument directory data!" +#~ msgstr "неправильные данные папки с инструментами!" + +#~ msgid "couldn't read wavetable directory" +#~ msgstr "не смог прочитать папку с волновыми таблицами" + +#~ msgid "invalid wavetable directory data!" +#~ msgstr "неправильные данные папки с волновыми таблицами!" + +#~ msgid "couldn't read sample directory" +#~ msgstr "не смог прочитать папку с сэмплами" + +#~ msgid "invalid sample directory data!" +#~ msgstr "неправильные данные папки с сэмплами!" + +#~ msgid "couldn't seek to subsong %d!" +#~ msgstr "не смог перейти к подпесне %d!" + +#~ msgid "invalid subsong header!" +#~ msgstr "неправильный заголовок подпесни!" + +#~ msgid "couldn't seek to instrument %d!" +#~ msgstr "не смог перейти к инструменту %d!" + +#~ msgid "invalid instrument header/data!" +#~ msgstr "неправильный заголовок/данные инструмента!" + +#~ msgid "couldn't seek to wavetable %d!" +#~ msgstr "не смог перейти к волновой таблице %d!" + +#~ msgid "couldn't seek to sample %d!" +#~ msgstr "не смог перейти к сэмплу %d!" + +#~ msgid "invalid sample header/data!" +#~ msgstr "неправильный заголовок/данные сэмпла!" + +#~ msgid "couldn't seek to pattern in %x!" +#~ msgstr "не смог перейти к паттерну в %x!" + +#~ msgid "invalid pattern header!" +#~ msgstr "неправильный заголовок паттерна!" + +#~ msgid "pattern channel out of range!" +#~ msgstr "канал паттерна за пределами числа каналов!" + +#~ msgid "pattern index out of range!" +#~ msgstr "индекс паттерна за пределами числа паттернов!" + +#~ msgid "pattern subsong out of range!" +#~ msgstr "подпесня паттерна за пределами числа подпесен!" + +#~ msgid "incomplete file" +#~ msgstr "неполный файл" + +#~ msgid "file is too small" +#~ msgstr "файл слишком маленький" + +#~ msgid "not a .dmf/.fur/.fub song" +#~ msgstr "не является модулем .dmf/.fur/.fub" + +#~ msgid "unknown decompression error" +#~ msgstr "неизвестная ошибка распаковки" + +#~ msgid "decompression error: %s" +#~ msgstr "ошибка распаковки: %s" + +#~ msgid "unknown decompression finish error" +#~ msgstr "неизвестная ошибка при завершении распаковки" + +#~ msgid "decompression finish error: %s" +#~ msgstr "ошибка при завершении распаковки: %s" + +#~ msgid "not a compatible song/instrument" +#~ msgstr "не является совместимым модулем/файлом инструмента" + +#~ msgid "maximum number of instruments is 256" +#~ msgstr "максимальное число инструментов равно 256" + +#~ msgid "maximum number of wavetables is 256" +#~ msgstr "максимальное число волновых таблиц равно 256" + +#~ msgid "maximum number of samples is 256" +#~ msgstr "максимальное число сэмплов равно 256" + +#~ msgid "did not read entire instrument file!" +#~ msgstr "не смог прочитать весь файл инструмента!" + +#~ msgid "this instrument is made with a more recent version of Furnace!" +#~ msgstr "этот инструмент был создан в более новой версии Furnace!" + +#~ msgid "unknown instrument format" +#~ msgstr "неизвестный формат инструмента" + +#~ msgid "there is more data at the end of the file! what happened here!" +#~ msgstr "в конце файла содержатся ещё данные! что происходит!" + +#~ msgid "exactly %d bytes, if you are curious" +#~ msgstr "а именно %d байт, если вам интересно" + +#~ msgid "could not open file! (%s)" +#~ msgstr "не смог открыть файл! (%s)" + +#~ msgid "could not get file length! (%s)" +#~ msgstr "не смог определить длину файла! (%s)" + +#~ msgid "file is empty!" +#~ msgstr "файл пустой!" + +#~ msgid "file is invalid!" +#~ msgstr "файл повреждён/слишком большой!" + +#~ msgid "could not seek to beginning of file! (%s)" +#~ msgstr "не смог перейти к началу файла! (%s)" + +#~ msgid "wait... is that right? no I don't think so..." +#~ msgstr "подождите... так вообще правильно? нет, я так не думаю..." + +#~ msgid "BRR sample is empty!" +#~ msgstr "BRR-сэмпл пуст!" + +#~ msgid "possibly corrupt BRR sample!" +#~ msgstr "BRR-сэмпл, возможно, повреждён!" + +#~ msgid "could not read file! (%s)" +#~ msgstr "не смог прочитать файл! (%s)" + +#~ msgid "Furnace was not compiled with libsndfile!" +#~ msgstr "Furnace не был скомпилирован с libsndfile!" + +#~ msgid "could not open file! (%s %s)" +#~ msgstr "не смог открыть файл! (%s %s)" + +#~ msgid "" +#~ "could not open file! (%s)\n" +#~ "if this is raw sample data, you may import it by right-clicking the Load " +#~ "Sample icon and selecting \"import raw\"." +#~ msgstr "" +#~ "не смог открыть файл! (%s)\n" +#~ "если это сырые данные сэмпла, попробуйте импортировать их: ПКМ по иконке " +#~ "\"Открыть\" в списке сэмплов, выберите \"импорт сырых данных\"." + +#~ msgid "this sample is too big! max sample size is 16777215." +#~ msgstr "сэмпл слишком большой! максимальный размер сэмпла 16777215." + +#~ msgid "GEMS BNK currently not supported." +#~ msgstr "GEMS BNK пока не поддерживается." + +#~ msgid "" +#~ "You are using %02Xxx effect with param higher than 0xf (channel %d, " +#~ "pattern %d, row %d).\n" +#~ "The effect param will be capped at 0xf.\n" +#~ "\n" +#~ msgstr "" +#~ "Вы используете эффект %02Xxx с параметром, превышающим 0xf (канал %d, " +#~ "паттерн %d, строка %d).\n" +#~ "Параметр эффекта будет уменьшен до 0xf.\n" +#~ "\n" + +#~ msgid "invalid pattern length!" +#~ msgstr "Неправильная длина паттерна!" + +#~ msgid "invalid loop start and loop end!" +#~ msgstr "неправильные начало и конец зацикленной части трека!" + +#~ msgid "invalid orders length!" +#~ msgstr "неправильное число строк матрицы паттернов!" + +#~ msgid "instrument program is too long!" +#~ msgstr "слишком длинная программа инструмента!" + +#~ msgid "couldn't place 0Bxx command to make a loop point" +#~ msgstr "не смог разместить команду 0Bxx для создания точки зацикливания" + +#~ msgid "song contains more than one system." +#~ msgstr "в треке содержится больше одной системы." + +#~ msgid "you have no subsongs in the module." +#~ msgstr "в модуле нет подпесен." + +#~ msgid "you must have at least one instrument in the song." +#~ msgstr "необходимо наличие хотя бы одного инструмента." + +#~ msgid "" +#~ "song name is too long. Only first %d characters will be written.\n" +#~ "\n" +#~ msgstr "" +#~ "слишком длинное название трека. Будут записаны только первые %d " +#~ "символов.\n" +#~ "\n" + +#~ msgid "" +#~ "there are more than %d patterns in the song. only %d patterns will be " +#~ "saved.\n" +#~ "\n" +#~ msgstr "" +#~ "в треке содержится более %d паттернов. только первые %d паттернов будут " +#~ "сохранены.\n" +#~ "\n" + +#~ msgid "" +#~ "You are setting engine rate that is higher than 255 Hz (channel %d, " +#~ "pattern %d, row %d, effect column %d).\n" +#~ "The command(s) will be capped at 255 Hz.\n" +#~ "\n" +#~ msgstr "" +#~ "Вы устанавливаете частоту движка трекера, превышающую 255 Гц (канал %d, " +#~ "паттерн %d, строка %d, столбец эффектов %d).\n" +#~ "Команда(-ы) будет(-ут) ограничены до 255 Гц.\n" +#~ "\n" + +#~ msgid "" +#~ "You are using instrument index that is higher than %02X (channel %d, " +#~ "pattern %d, row %d).\n" +#~ "The index will be capped at %02X.\n" +#~ "\n" +#~ msgstr "" +#~ "Вы используете индекс инструмента, который превышает %02X (канал %d, " +#~ "паттерн %d, строка %d).\n" +#~ "Индекс будет ограничен до %02X.\n" +#~ "\n" + +#~ msgid "this version is not supported by Furnace yet" +#~ msgstr "эта версия пока не поддерживается Furnace" + +#~ msgid "system not supported. running old version?" +#~ msgstr "система не поддерживается. вы на старой версии?" + +#~ msgid "" +#~ "Yamaha YMU759 emulation is incomplete! please migrate your song to the " +#~ "OPL3 system." +#~ msgstr "" +#~ "Эмуляция Yamaha YMU759 неполноценна! переделайте свой трек под OPL3." + +#~ msgid "order at %d, %d out of range! (%d)" +#~ msgstr "значение в матрице паттернов %d, %d недействительно! (%d)" + +#~ msgid "file is corrupt or unreadable at operators" +#~ msgstr "файл повреждён/нечитаем в секции операторов" + +#~ msgid "file is corrupt or unreadable at wavetables" +#~ msgstr "файл повреждён/нечитаем в секции волновых таблиц" + +#~ msgid "file is corrupt or unreadable at effect columns" +#~ msgstr "файл повреждён/нечитаем в секции столбцов эффектов" + +#~ msgid "file is corrupt or unreadable at samples" +#~ msgstr "файл повреждён/нечитаем в секции сэмплов" + +#~ msgid "invalid version to save in! this is a bug!" +#~ msgstr "енправильная версия для сохранения! это баг!" + +#~ msgid "multiple systems not possible on .dmf" +#~ msgstr "несколько чипов/систем невозможно сохранить в .dmf" + +#~ msgid "YMU759 song saving is not supported" +#~ msgstr "Сохранение треков с YMU759 не поддерживается" + +#~ msgid "Master System FM expansion not supported in 1.0/legacy .dmf!" +#~ msgstr "Master System FM расширение не поддерживается в 1.0/legacy .dmf!" + +#~ msgid "NES + VRC7 not supported in 1.0/legacy .dmf!" +#~ msgstr "NES + VRC7 не поддерживаются в 1.0/legacy .dmf!" + +#~ msgid "FDS not supported in 1.0/legacy .dmf!" +#~ msgstr "FDS не поддерживается в 1.0/legacy .dmf!" + +#~ msgid "this system is not possible on .dmf" +#~ msgstr "эта система не поддерживается в .dmf" + +#~ msgid "maximum .dmf song length is 127" +#~ msgstr "маскимальная длина трека .dmf составляет 127" + +#~ msgid "maximum number of instruments in .dmf is 128" +#~ msgstr "максимальное число инструментов в .dmf равно 128" + +#~ msgid "maximum number of wavetables in .dmf is 64" +#~ msgstr "максимальное число волновых таблиц в .dmf равно 64" + +#~ msgid "order %d, %d is out of range (0-127)" +#~ msgstr "значение в матрице паттернов %d, %d недействительно (0-127)" + +#~ msgid "only the currently selected subsong will be saved" +#~ msgstr "будет сохранена только текущая подпесня" + +#~ msgid "grooves will not be saved" +#~ msgstr "ритм-паттерны не будут сохранены" + +#~ msgid "only the first two speeds will be effective" +#~ msgstr "только первые две скорости будут применены" + +#~ msgid ".dmf format does not support virtual tempo" +#~ msgstr ".dmf не поддерживает виртуальный темп" + +#~ msgid ".dmf format does not support tuning" +#~ msgstr ".dmf не поддерживает настройку строя (частоты ноты A-4)" + +#~ msgid "absolute duty/cutoff macro not available in .dmf!" +#~ msgstr "" +#~ "абсолютные макросы частоты среза/скважности не поддерживаются в .dmf!" + +#~ msgid "duty precision will be lost" +#~ msgstr "точность настройки скважности не будет сохранена" + +#~ msgid ".dmf format does not support arbitrary-pitch sample mode" +#~ msgstr ".dmf не поддерживает проигрывание сэмплов с произвольной частотой" + +#~ msgid "no FM macros in .dmf format" +#~ msgstr "формат .dmf не поддерживает FM-макросы" + +#~ msgid "" +#~ ".dmf only supports volume or cutoff macro in C64, but not both. volume " +#~ "macro will be lost." +#~ msgstr "" +#~ ".dmf позволяет применять для C64 либо макрос громкости, либо макрос " +#~ "частоты среза, но не оба одновременно. макрос громкости не будет сохранён." + +#~ msgid "note/macro release will be converted to note off!" +#~ msgstr "" +#~ "ноты релиза макросов или огибающей будут преобразованы в заглушение ноты!" + +#~ msgid "samples' rates will be rounded to nearest compatible value" +#~ msgstr "" +#~ "частоты дискретизации сэмплов будут преобразованы в ближайшие совместимые." + +#~ msgid "unknown instrument type %d!" +#~ msgstr "неизвестный тип инструмента %d!" + +#~ msgid "invalid header!" +#~ msgstr "неправильный заголовок" + +#~ msgid "incompatible version" +#~ msgstr "несовместимая версия" + +#~ msgid "channel counts do not match" +#~ msgstr "количества каналов не совпадают" + +#~ msgid "too many instruments/out of range" +#~ msgstr "слишком много инструментов/недействительное значение" + +#~ msgid "invalid instrument type" +#~ msgstr "неизвестный тип инструмента" + +#~ msgid "too many sequences" +#~ msgstr "слишком много последовательностей (макросов)" + +#~ msgid "sequences block version is too old" +#~ msgstr "слишком старая версия блока последовательностей" + +#~ msgid "unknown block " +#~ msgstr "неизвестный блок " + +#~ msgid "incomplete block " +#~ msgstr "неполный блок " + +#~ msgid " [VRC6 copy]" +#~ msgstr " [копия для VRC6]" + +#~ msgid " [VRC6 saw copy]" +#~ msgstr " [копия для пилы VRC6]" + +#~ msgid " [NES copy]" +#~ msgstr " [копия для NES]" + +#~ msgid "GYBv3 file appears to have invalid data offsets." +#~ msgstr "Похоже, что в файле GYBv3 неверные смещения (указатели на данные)." + +#~ msgid "Invalid value found in patch file. %s" +#~ msgstr "Найдено недействительное значение в файле патча. %s" + +#~ msgid "S3I PCM samples currently not supported." +#~ msgstr "S3I: ИКМ-сэмплы пока не поддерживаются." + +#~ msgid "" +#~ "interleave factor is bigger than 8, speed information may be inaccurate" +#~ msgstr "" +#~ "параметр чередования больше 8, скорость проигрывания трека может быть " +#~ "неправильной" + +#~ msgid "VGM version is too low" +#~ msgstr "Версия VGM слишком старая" + +#~ msgid "Chip Memory" +#~ msgstr "Память чипа" + +#~ msgid "Sample ROM" +#~ msgstr "ПЗУ сэмплов" + +#~ msgid "Sample Memory" +#~ msgstr "Память сэмплов" + +#~ msgid "SPC/DSP Memory" +#~ msgstr "Память SPC/DSP" + +#~ msgid "Sample RAM" +#~ msgstr "ОЗУ сэмплов" + +#~ msgid "End of Sample" +#~ msgstr "Конец сэмпла" + +#~ msgid "Wavetable RAM" +#~ msgstr "ОЗУ под волновую таблицу" + +#~ msgid "Reserved wavetable RAM" +#~ msgstr "ОЗУ, зарезервированная под волновую таблицу" + +#~ msgid "Phrase Book" +#~ msgstr "Книга фраз" + +#~ msgid "Channel %d (load)" +#~ msgstr "Канал %d (загрузка)" + +#~ msgid "Channel %d (play)" +#~ msgstr "Канал %d (проигрывание)" + +#~ msgid "Channel %d" +#~ msgstr "Канал %d" + +#~ msgid "Buffer %d Left" +#~ msgstr "Буфер %d лево" + +#~ msgid "Buffer %d Right" +#~ msgstr "Буфер %d право" + +#~ msgid "Registers" +#~ msgstr "Регистры" + +#~ msgid "State" +#~ msgstr "Состояние" + +#~ msgid "Echo Buffer" +#~ msgstr "Буфер эхо" + +#~ msgid "Mix/Echo Buffer" +#~ msgstr "Буфер микширования/эхо" + +#~ msgid "Main Memory" +#~ msgstr "Основная память" + +#~ msgid "16xx: Set raw period higher byte" +#~ msgstr "16xx: \"Сырое\" значение периода (старший байт)" + +#~ msgid "" +#~ "2Cxy: Automatic noise frequency (auto-PWM) (x: mode (0: disable, 1: freq, " +#~ "2: freq + OR mask); y: offset" +#~ msgstr "" +#~ "2Cxy: Автоматическая частота шума (авто-ШИМ) (x: режим (0: выкл., 1: " +#~ "частота, 2: частота + маска ИЛИ); y: сдвиг" + +#~ msgid "22xx: Pulse width slide up" +#~ msgstr "22xx: Изменение скважности вверх" + +#~ msgid "23xx: Pulse width slide down" +#~ msgstr "23xx: Изменение скважности вниз" + +#~ msgid "24xx: Cutoff slide up" +#~ msgstr "24xx: Изменение частоты среза вверх" + +#~ msgid "25xx: Cutoff slide down" +#~ msgstr "25xx: Изменение частоты среза вниз" + +#~ msgid "13xx: Set waveform (local)" +#~ msgstr "13xx: Волна (локальная)" + +#~ msgid "11xx: Set raw period (0-1F)" +#~ msgstr "11xx: \"Сырое\" значение периода (0-1F)" + +#~ msgid "11xx: Set waveform (local)" +#~ msgstr "11xx: Волна (локальная)" + +#~ msgid "17xx: Pulse width slide up" +#~ msgstr "17xx: Изменение скважности вверх" + +#~ msgid "18xx: Pulse width slide down" +#~ msgstr "18xx: Изменение скважности вниз" + +#~ msgid "19xx: Cutoff slide up" +#~ msgstr "19xx: Изменение частоты среза вверх" + +#~ msgid "1Axx: Cutoff slide down" +#~ msgstr "1Axx: Изменение частоты среза вниз" + +#~ msgid "" +#~ msgstr "<СОСТАВНАЯ СИСТЕМА!>" + +#~ msgid "15xx: Set waveform (local)" +#~ msgstr "15xx: Волна (локальная)" + +#~ msgid "18xx: Set waveform (local)" +#~ msgstr "18xx: Волна (локальная)" + +#~ msgid "14xx: Set waveform (local)" +#~ msgstr "14xx: Волна (локлаьная)" + +#~ msgid "17xx: Set waveform (local)" +#~ msgstr "17xx: Волна (локальная)" + +#~ msgid "16xx: Set waveform (local)" +#~ msgstr "16xx: Волна (локальная)" + +#~ msgid "17xx: Select waveform (local)" +#~ msgstr "17xx: Волна (локальная)" + +#~ msgid "" +#~ "cost-reduced version of the OPM with a different register layout and no " +#~ "stereo...\n" +#~ "...but it has a built-in AY-3-8910! (actually an YM2149)\n" +#~ "this one is in Extended Channel mode, which turns the third FM channel " +#~ "into four operators with independent notes/frequencies.\n" +#~ "this one includes CSM mode control for special effects on Channel 3." +#~ msgstr "" +#~ "удешевлённая версия OPM с другим расположением регистров и отсутствием " +#~ "стерео...\n" +#~ "...но у неё внутри AY-3-8910! (на самом деле YM2149)\n" +#~ "Это версия в режиме расширенного канала, который превращает третий FM-" +#~ "канал в четыре оператора с независимыми нотами/частотами.\n" +#~ "У этой версии есть контроль режима CSM для специальных эффектов на " +#~ "третьем канале." + +#~ msgid "" +#~ "OPN but twice the FM channels, stereo makes a come-back and has rhythm " +#~ "and ADPCM channels.\n" +#~ "this one is in Extended Channel mode, which turns the third FM channel " +#~ "into four operators with independent notes/frequencies.\n" +#~ "this one includes CSM mode control for special effects on Channel 3." +#~ msgstr "" +#~ "OPN, но вдвое больше FM-каналов, возвращённое стерео, ритм- и АДИКМ " +#~ "каналы.\n" +#~ "Это версия в режиме расширенного канала, который превращает третий FM-" +#~ "канал в четыре оператора с независимыми нотами/частотами.\n" +#~ "У этой версии есть контроль режима CSM для специальных эффектов на " +#~ "третьем канале." + +#~ msgid "13xx: Set raw period" +#~ msgstr "13xx: \"Сырое\" значение периода" + +#~ msgid "14xx: Set raw period (higher byte; only for 16-bit mode)" +#~ msgstr "" +#~ "14xx: \"Сырое\" значение периода (старший байт; только для 16-битного " +#~ "режима)" + +#~ msgid "" +#~ "like OPLL, but even more cost reductions applied. three less FM channels, " +#~ "and no drums mode..." +#~ msgstr "" +#~ "как OPLL, но ещё более удешевлённый. на три канала меньше, нет режима " +#~ "ударных..." + +#~ msgid "" +#~ "this chip was used in SNK's Neo Geo arcade board and video game console.\n" +#~ "it's like OPNA but the rhythm channels are ADPCM channels and two FM " +#~ "channels went missing.\n" +#~ "this one is in Extended Channel mode, which turns the second FM channel " +#~ "into four operators with independent notes/frequencies.\n" +#~ "this one includes CSM mode control for special effects on Channel 2." +#~ msgstr "" +#~ "этот чип использовался в аркадном автомате и игровой консоли Neo Geo от " +#~ "SNK.\n" +#~ "похож на OPNA, но ритм-каналы теперь стали АДИКМ-каналами, и пропали два " +#~ "FM-канала.\n" +#~ "Это версия в режиме расширенного канала, который превращает второй FM-" +#~ "канал в четыре оператора с независимыми нотами/частотами.\n" +#~ "У этой версии есть контроль режима CSM для специальных эффектов на втором " +#~ "канале." + +#~ msgid "the OPLL chip but with drums mode turned on." +#~ msgstr "чип OPLL с включённым режимом ударных." + +#~ msgid "" +#~ "so Taito asked Yamaha if they could get the two missing FM channels back, " +#~ "and Yamaha gladly provided them with this chip.\n" +#~ "this one is in Extended Channel mode, which turns the third FM channel " +#~ "into four operators with independent notes/frequencies.\n" +#~ "this one includes CSM mode control for special effects on Channel 3." +#~ msgstr "" +#~ "Taito попросили Yamaha вернуть два отсутствующих FM-канала, и Yamaha с " +#~ "радостью предоставила им этот чип.\n" +#~ "Это версия в режиме расширенного канала, который превращает третий FM-" +#~ "канал в четыре оператора с независимыми нотами/частотами.\n" +#~ "У этой версии есть контроль режима CSM для специальных эффектов на " +#~ "третьем канале." + +#~ msgid "11xx: Select waveform (local)" +#~ msgstr "11xx: Волна (локальная)" + +#~ msgid "" +#~ "this chip is mostly known for being in the Sega Genesis (but it also was " +#~ "on the FM Towns computer).\n" +#~ "this system uses software mixing to provide two sample channels.\n" +#~ "this one is in Extended Channel mode, which turns the third FM channel " +#~ "into four operators with independent notes/frequencies.\n" +#~ "this one includes CSM mode control for special effects on Channel 3." +#~ msgstr "" +#~ "этот чип в основном известен по причине того, что он находился в Sega " +#~ "Genesis (но он также использовался в компьютере FM Towns).\n" +#~ "эта версия использует программное смешение сигналов, за счёт чего " +#~ "возможно использование двух каналов сэмплов.\n" +#~ "Это версия в режиме расширенного канала, который превращает третий FM-" +#~ "канал в четыре оператора с независимыми нотами/частотами.\n" +#~ "У этой версии есть контроль режима CSM для специальных эффектов на " +#~ "третьем канале." + +#~ msgid "11xx: Raw frequency (0-3E)" +#~ msgstr "11xx: Сырая частота (0-3E)" + +#~ msgid "" +#~ "first Ensoniq chip used in their synths and Apple IIGS computer. Has 32 " +#~ "hard-panned 8-bit wavetable/sample channels, can do oscillator sync (like " +#~ "SID) and amplitude modulation. Can have up to 128 KiB (2 banks of 64 KiB) " +#~ "of memory for wavetables/samples.\n" +#~ "As Robert Yannes (SID chip creator) said, it's more or less what SID chip " +#~ "could be if he was given enough time for its development." +#~ msgstr "" +#~ "первый чип Ensoniq, использовавшийся в их синтезаторах и в компьютере " +#~ "Apple IIGS. Имеет 32 канала волновых таблиц/сэмплов с жёстким " +#~ "панорамированием, имеется синхронизация осцилляторов (как SID) и " +#~ "амплитудная модуляция. Может иметь до 128 КиБ (2 банка по 64 КиБ) памяти " +#~ "для волновых таблиц/сэмплов.\n" +#~ "Как сказал Robert Yannes (создатель чипа SID), это более-менее то, чем " +#~ "мог быть чип SID, если бы ему дали достаточно времени для его разработки." + +#~ msgid "11xx: Set number of enabled oscillators (2-1F)" +#~ msgstr "11xx: Количество включённых осцилляторов (2-1F)" + +#~ msgid "12xx: Set oscillator output (0-7, 0=left, 1=right)" +#~ msgstr "12xx: Вывод сигнала осциллятора (0-7, 0=лево, 1=право)" + +#~ msgid "13xx: Set wave/sample length (0-7, 0=256, 1=512, 2=1024, etc.)" +#~ msgstr "13xx: Длина волны/сэмпла (0-7, 0=256, 1=512, 2=1024 и т.д.)" + +#~ msgid "14xx: Set wave/sample position in memory (xx*256 offset)" +#~ msgstr "14xx: Начальное смещение волны/сэмпла в памяти (смещение xx*256)" + +#~ msgid "15xx: Set oscillator mode (0-3)" +#~ msgstr "15xx: Режим осциллятора (0-3)" + +#~ msgid "" +#~ "this chip was featured in the Enterprise 128 computer. it is similar to " +#~ "POKEY, but with stereo output, more features and frequency precision and " +#~ "the ability to turn left or right (or both) channel into a 6-bit DAC for " +#~ "sample playback." +#~ msgstr "" +#~ "этот чип стоял в компьютере Enterprise 128. он похож на POKEY, но имеет " +#~ "стерео звук, больше функций, более точную настройку частоты и возможность " +#~ "превращать левый или правый (или оба) канал в 6-битный ЦАП для " +#~ "проигрывания сэмплов." + +#~ msgid "" +#~ "a fictional sound chip by LTVA. like SID, but with many of its problems " +#~ "fixed. also features extended functionality like more wave mixing modes, " +#~ "tonal noise, filter and volume per channel." +#~ msgstr "" +#~ "вымышленный звуковой чип за авторством LTVA. похож на SID, но в нём " +#~ "исправлены многие его проблемы. также в этом чипе имеется дополнительный " +#~ "функционал, например, новые способы смешения волн, тональный зацикленный " +#~ "шум, отдельные регулировка громкости и фильтр на каждом канале." + +#~ msgid "" +#~ "a fictional sound chip by Euly. similar to Ricoh 2A03, but all the duty " +#~ "cycles are different, noise has 32 pitches instead of 16 and you have " +#~ "four hard-coded waveforms on triangle channel." +#~ msgstr "" +#~ "вымышленный звуковой чип за авторством Euly. почти как Ricoh 2A03, но все " +#~ "четыре скважности разные, у шума 32 частоты вместо 16, а на канале " +#~ "треугольной волны можно играть четыре предопределённые волны." + +#~ msgid "" +#~ "12xx: Set duty cycle/noise mode (pulse: 0 to 3; noise: 0 or 1, wave: 0 to " +#~ "3)" +#~ msgstr "12xx: Скважность/режим шума (меандр: 0-3; шум: 0 или 1; волна: 0-3)" + +#~ msgid "19xx: Set wave linear counter (0 to 7F; 80 and higher halt)" +#~ msgstr "" +#~ "19xx: Линейный счётчик канала волны (0-7F; 80 и выше мгновенно " +#~ "останавливают волну)" + +#~ msgid "" +#~ "additional PCM FIFO channels in Game Boy Advance driven by software " +#~ "mixing to provide up to sixteen sample channels." +#~ msgstr "" +#~ "дополнительные ИКМ FIFO-каналы в Game Boy Advance, управляемые при помощи " +#~ "программного микширования, что даёт до 16 каналов сэмплов." + +#~ msgid "" +#~ "a software synth core by LTVA used in Flizzer Tracker (Flipper Zero " +#~ "chiptune tracker)." +#~ msgstr "" +#~ "ядро программного синтеза за авторством LTVA, используемое в программе " +#~ "Flizzer Tracker (чиптюн-трекер для Flipper Zero)." + +#~ msgid "" +#~ "10xx: Set wave (bits: 0: noise, 1: pulse, 2: triangle, 3: sawtooth, 4: " +#~ "metallic noise, 5: sine)" +#~ msgstr "" +#~ "10xx: Волна (биты: 0: шум, 1: прямоуг., 2: треуг., 3: пила, 4: " +#~ "\"металлический\" шум, 5: синус)" + +#~ msgid "11xy: PWM (pulsolo) with speed x and depth y" +#~ msgstr "11xy: ШИМ (пульсоло) со скоростью x и глубиной y" + +#~ msgid "13xx: Pulse width up" +#~ msgstr "13xx: Изменение скважности вверх" + +#~ msgid "14xx: Pulse width down" +#~ msgstr "14xx: Изменение скважности вниз" + +#~ msgid "15xx: Set filter cutoff" +#~ msgstr "15xx: Частота среза фильтра" + +#~ msgid "16xx: Set volume" +#~ msgstr "16xx: Громкость" + +#~ msgid "17xx: Toggle filter" +#~ msgstr "17xx: Вкл./выкл. фильтр" + +#~ msgid "18xx: Set filter mode" +#~ msgstr "18xx: Режим фильтра" + +#~ msgid "19xx: Phase reset" +#~ msgstr "19xx: Сброс фазы" + +#~ msgid "1Axx: Filter cutoff up" +#~ msgstr "1Axx: Частота среза вверх" + +#~ msgid "1Bxx: Filter cutoff down" +#~ msgstr "1Bxx: Частота среза вниз" + +#~ msgid "1Cxx: Set filter resonance" +#~ msgstr "1Cxx: Резонанс фильтра" + +#~ msgid "1Dxx: Filter resonance up" +#~ msgstr "1Dxx: Резонанс вверх" + +#~ msgid "1Exx: Filter resonance down" +#~ msgstr "1Exx: Резонанс вниз" + +#~ msgid "1Fxx: Ring mod source (FF = self)" +#~ msgstr "1Fxx: Источник кольцевой модуляции (FF = самомодуляция)" + +#~ msgid "20xx: Hard sync source (FF = self)" +#~ msgstr "20xx: Источник синхронизации осцилляторов (FF = самосинхронизация)" + +#~ msgid "21xx: Set attack speed" +#~ msgstr "21xx: Скорость атаки" + +#~ msgid "22xx: Set decay speed" +#~ msgstr "22xx: Скорость спада" + +#~ msgid "23xx: Set sustain level" +#~ msgstr "23xx: Уровень сустейна" + +#~ msgid "24xx: Set release rate" +#~ msgstr "24xx: Скорость релиза" + +#~ msgid "25xx: Restart instrument program" +#~ msgstr "25xx: Перезапустить программу инструмента" + +#~ msgid "26xx: Portamento up (semitones)" +#~ msgstr "26xx: Портаменто вверх (полутонов)" + +#~ msgid "27xx: Portamento down (semitones)" +#~ msgstr "27xx: Портаменто вниз (полутонов)" + +#~ msgid "28xx: Absolute arpeggio note" +#~ msgstr "28xx: Абсолютная нота арпеджио" + +#~ msgid "29xx: Trigger envelope release" +#~ msgstr "29xx: Релиз огибающей" + +#~ msgid "help! what's going on!" +#~ msgstr "помогите! что происходит!" + +#~ msgid "Sunsoft 5B standalone" +#~ msgstr "Sunsoft 5B отдельно" + +#~ msgid "Sunsoft 5B standalone (PAL)" +#~ msgstr "Sunsoft 5B отдельно (PAL)" + +#~ msgid "Overclocked Sunsoft 5B" +#~ msgstr "Разогнанный Sunsoft 5B" + +#~ msgid "NTSC-J Sega Master System + drums" +#~ msgstr "NTSC-J Sega Master System + ударные" + +#~ msgid "MSX-MUSIC + drums" +#~ msgstr "MSX-MUSIC + ударные" + +#~ msgid "Commodore 64 with dual 6581" +#~ msgstr "Commodore 64 с двумя 6581" + +#~ msgid "Commodore 64 with dual 8580" +#~ msgstr "Commodore 64 с двумя 8580" + +#~ msgid "YM2151 + SegaPCM Arcade (compatibility)" +#~ msgstr "YM2151 + SegaPCM Arcade (совместимость)" + +#~ msgid "YM2151 + SegaPCM Arcade" +#~ msgstr "YM2151 + SegaPCM Arcade" + +#~ msgid "Game Boy with AY expansion" +#~ msgstr "Game Boy с расширением AY" + +#~ msgid "multi-system" +#~ msgstr "мульти-система" + +#~ msgid "15xx: Set raw period" +#~ msgstr "15xx: \"Сырое\" значение периода" + +#~ msgid "16xx: Set raw period higher nybble (0-F)" +#~ msgstr "16xx: \"Сырое\" значение периода, старшая тетрада (0-F)" + +#~ msgid "Yamaha YM2608 (OPNA) Extended Channel 3 and CSM" +#~ msgstr "Yamaha YM2608 (OPNA) расширенный 3-ий канал и CSM" + +#~ msgid "CH1" +#~ msgstr "КН1" + +#~ msgid "CH2" +#~ msgstr "КН2" + +#~ msgid "CH3" +#~ msgstr "КН3" + +#~ msgid "CH4" +#~ msgstr "КН4" + +#~ msgid "CH5" +#~ msgstr "КН5" + +#~ msgid "CH6" +#~ msgstr "КН6" + +#~ msgid "CH7" +#~ msgstr "КН7" + +#~ msgid "CH8" +#~ msgstr "КН8" + +#~ msgid "CH9" +#~ msgstr "КН9" + +#~ msgid "NO" +#~ msgstr "ШУ" + +#~ msgid "N1" +#~ msgstr "Ш1" + +#~ msgid "N2" +#~ msgstr "Ш2" + +#~ msgid "N3" +#~ msgstr "Ш3" + +#~ msgid "SL" +#~ msgstr "СК" + +#~ msgid "S1" +#~ msgstr "М1" + +#~ msgid "S2" +#~ msgstr "М2" + +#~ msgid "S3" +#~ msgstr "М3" + +#~ msgid "S4" +#~ msgstr "М4" + +#~ msgid "S5" +#~ msgstr "М5" + +#~ msgid "S6" +#~ msgstr "М6" + +#~ msgid "P1" +#~ msgstr "И1" + +#~ msgid "P2" +#~ msgstr "И2" + +#~ msgid "P3" +#~ msgstr "И3" + +#~ msgid "P4" +#~ msgstr "И4" + +#~ msgid "P5" +#~ msgstr "И5" + +#~ msgid "P6" +#~ msgstr "И6" + +#~ msgid "P7" +#~ msgstr "И7" + +#~ msgid "P8" +#~ msgstr "И8" + +#~ msgid "P9" +#~ msgstr "И9" + +#~ msgid "P10" +#~ msgstr "И10" + +#~ msgid "P11" +#~ msgstr "И11" + +#~ msgid "P12" +#~ msgstr "И12" + +#~ msgid "P13" +#~ msgstr "И13" + +#~ msgid "P14" +#~ msgstr "И14" + +#~ msgid "P15" +#~ msgstr "И15" + +#~ msgid "P16" +#~ msgstr "И16" + +#~ msgid "P17" +#~ msgstr "И17" + +#~ msgid "P18" +#~ msgstr "И18" + +#~ msgid "P19" +#~ msgstr "И19" + +#~ msgid "P20" +#~ msgstr "И20" + +#~ msgid "P21" +#~ msgstr "И21" + +#~ msgid "P22" +#~ msgstr "И22" + +#~ msgid "P23" +#~ msgstr "И23" + +#~ msgid "P24" +#~ msgstr "И24" + +#~ msgid "BD" +#~ msgstr "ББ" + +#~ msgid "SD" +#~ msgstr "РБ" + +#~ msgid "TP" +#~ msgstr "ТР" + +#~ msgid "HH" +#~ msgstr "ХХ" + +#~ msgid "TM" +#~ msgstr "ТМ" + +#~ msgid "RM" +#~ msgstr "РМ" + +#~ msgid "VS" +#~ msgstr "VП" + +#~ msgid "TR" +#~ msgstr "ТР" + +#~ msgid "DMC" +#~ msgstr "ДМК" + +#~ msgid "WA" +#~ msgstr "ВТ" diff --git a/po/sk.po b/po/sk.po new file mode 100644 index 000000000..065cf000b --- /dev/null +++ b/po/sk.po @@ -0,0 +1,16049 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: furnace 0.6.3\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#: src/engine/sysDef.cpp:428 src/engine/sysDef.cpp:441 +msgid "20xx: Set channel mode (bit 0: square; bit 1: noise; bit 2: envelope)" +msgstr "" +"20xx: Nastav režím kanála (bit 0: štvorec; bit 1: biely šum; bit 2: obálka)" + +#: src/engine/sysDef.cpp:429 +msgid "21xx: Set noise frequency (0 to 1F)" +msgstr "21xx: Nastav frekvenciu bielého šumu (od 0 do 1F)" + +#: src/engine/sysDef.cpp:430 src/engine/sysDef.cpp:443 +msgid "22xy: Set envelope mode (x: shape, y: enable for this channel)" +msgstr "22xy: Nastav režím obálky (x: tvar, y: zapni pre tento kanál)" + +#: src/engine/sysDef.cpp:431 src/engine/sysDef.cpp:444 +msgid "23xx: Set envelope period low byte" +msgstr "23xx: Nastav dolný bajt časa obálky" + +#: src/engine/sysDef.cpp:432 src/engine/sysDef.cpp:445 +msgid "24xx: Set envelope period high byte" +msgstr "24xx: Nastav horný bajt časa obálky" + +#: src/engine/sysDef.cpp:433 src/engine/sysDef.cpp:446 +#: src/engine/sysDef.cpp:1599 +msgid "25xx: Envelope slide up" +msgstr "25xx: Šmyk obálky nahor" + +#: src/engine/sysDef.cpp:434 src/engine/sysDef.cpp:447 +#: src/engine/sysDef.cpp:1600 +msgid "26xx: Envelope slide down" +msgstr "26xx: Šmyk obálky nadol" + +#: src/engine/sysDef.cpp:435 src/engine/sysDef.cpp:448 +#: src/engine/sysDef.cpp:1601 +msgid "29xy: Set auto-envelope (x: numerator; y: denominator)" +msgstr "29xy: Nastav automatskú obálku (x: čitateľ; y: činiteľ)" + +#: src/engine/sysDef.cpp:436 src/engine/sysDef.cpp:449 +msgid "2Exx: Write to I/O port A" +msgstr "2Exx: Vpíš do I/O port A" + +#: src/engine/sysDef.cpp:437 src/engine/sysDef.cpp:450 +msgid "2Fxx: Write to I/O port B" +msgstr "2Fxx: Vpíš do I/O port B" + +#: src/engine/sysDef.cpp:442 +msgid "21xx: Set noise frequency (0 to FF)" +msgstr "21xx: Nastav frekvenciu bielého šumu (od 0 do FF)" + +#: src/engine/sysDef.cpp:451 +msgid "12xx: Set duty cycle (0 to 8)" +msgstr "12xx: Nastav striedu štvorcovej vlny (od 0 do 8)" + +#: src/engine/sysDef.cpp:453 +msgid "27xx: Set noise AND mask" +msgstr "27xx: Nastav AND masku bielého šumu" + +#: src/engine/sysDef.cpp:454 +msgid "28xx: Set noise OR mask" +msgstr "28xx: Nastav OR masku bielého šumu" + +#: src/engine/sysDef.cpp:455 +#, fuzzy +msgid "" +"2Cxy: Automatic noise frequency (x: mode (0: disable, 1: freq, 2: freq + OR " +"mask); y: offset)" +msgstr "2Cxy: Automat" + +#: src/engine/sysDef.cpp:456 +msgid "2Dxx: NOT TO BE EMPLOYED BY THE COMPOSER" +msgstr "" + +#: src/engine/sysDef.cpp:460 +msgid "30xx: Toggle hard envelope reset on new notes" +msgstr "" + +#: src/engine/sysDef.cpp:465 +msgid "18xx: Toggle extended channel 3 mode" +msgstr "" + +#: src/engine/sysDef.cpp:470 src/engine/sysDef.cpp:766 +#: src/engine/sysDef.cpp:1025 src/engine/sysDef.cpp:1272 +#: src/engine/sysDef.cpp:1593 +msgid "17xx: Toggle PCM mode (LEGACY)" +msgstr "" + +#: src/engine/sysDef.cpp:471 src/engine/sysDef.cpp:1653 +#: src/engine/sysDef.cpp:1963 +msgid "DFxx: Set sample playback direction (0: normal; 1: reverse)" +msgstr "" + +#: src/engine/sysDef.cpp:476 +msgid "18xx: Toggle drums mode (1: enabled; 0: disabled)" +msgstr "" + +#: src/engine/sysDef.cpp:480 src/engine/sysDef.cpp:554 +#: src/engine/sysDef.cpp:575 +msgid "11xx: Set feedback (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:481 +msgid "12xx: Set level of operator 1 (0 highest, 7F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:482 +msgid "13xx: Set level of operator 2 (0 highest, 7F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:483 +msgid "14xx: Set level of operator 3 (0 highest, 7F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:484 +msgid "15xx: Set level of operator 4 (0 highest, 7F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:485 src/engine/sysDef.cpp:580 +#: src/engine/sysDef.cpp:635 +msgid "16xy: Set operator multiplier (x: operator from 1 to 4; y: multiplier)" +msgstr "" + +#: src/engine/sysDef.cpp:486 +msgid "19xx: Set attack of all operators (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:487 +msgid "1Axx: Set attack of operator 1 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:488 +msgid "1Bxx: Set attack of operator 2 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:489 +msgid "1Cxx: Set attack of operator 3 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:490 +msgid "1Dxx: Set attack of operator 4 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:491 src/engine/sysDef.cpp:588 +#: src/engine/sysDef.cpp:656 +msgid "50xy: Set AM (x: operator from 1 to 4 (0 for all ops); y: AM)" +msgstr "" + +#: src/engine/sysDef.cpp:492 src/engine/sysDef.cpp:589 +#: src/engine/sysDef.cpp:657 +msgid "" +"51xy: Set sustain level (x: operator from 1 to 4 (0 for all ops); y: sustain)" +msgstr "" + +#: src/engine/sysDef.cpp:493 src/engine/sysDef.cpp:590 +#: src/engine/sysDef.cpp:658 +msgid "52xy: Set release (x: operator from 1 to 4 (0 for all ops); y: release)" +msgstr "" + +#: src/engine/sysDef.cpp:494 +msgid "" +"53xy: Set detune (x: operator from 1 to 4 (0 for all ops); y: detune where 3 " +"is center)" +msgstr "" + +#: src/engine/sysDef.cpp:495 src/engine/sysDef.cpp:592 +#: src/engine/sysDef.cpp:660 +msgid "" +"54xy: Set envelope scale (x: operator from 1 to 4 (0 for all ops); y: scale " +"from 0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:496 +msgid "56xx: Set decay of all operators (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:497 +msgid "57xx: Set decay of operator 1 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:498 +msgid "58xx: Set decay of operator 2 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:499 +msgid "59xx: Set decay of operator 3 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:500 +msgid "5Axx: Set decay of operator 4 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:501 +msgid "5Bxx: Set decay 2 of all operators (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:502 +msgid "5Cxx: Set decay 2 of operator 1 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:503 +msgid "5Dxx: Set decay 2 of operator 2 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:504 +msgid "5Exx: Set decay 2 of operator 3 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:505 +msgid "5Fxx: Set decay 2 of operator 4 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:510 +msgid "10xx: Set noise frequency (xx: value; 0 disables noise)" +msgstr "" + +#: src/engine/sysDef.cpp:511 +msgid "17xx: Set LFO speed" +msgstr "" + +#: src/engine/sysDef.cpp:512 +msgid "18xx: Set LFO waveform (0 saw, 1 square, 2 triangle, 3 noise)" +msgstr "" + +#: src/engine/sysDef.cpp:513 +msgid "1Exx: Set AM depth (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:514 +msgid "1Fxx: Set PM depth (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:515 +msgid "" +"55xy: Set detune 2 (x: operator from 1 to 4 (0 for all ops); y: detune from " +"0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:520 +msgid "24xx: Set LFO 2 speed" +msgstr "" + +#: src/engine/sysDef.cpp:521 +msgid "25xx: Set LFO 2 waveform (0 saw, 1 square, 2 triangle, 3 noise)" +msgstr "" + +#: src/engine/sysDef.cpp:522 +msgid "26xx: Set AM 2 depth (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:523 +msgid "27xx: Set PM 2 depth (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:524 +msgid "" +"28xy: Set reverb (x: operator from 1 to 4 (0 for all ops); y: reverb from 0 " +"to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:525 src/engine/sysDef.cpp:650 +msgid "" +"2Axy: Set waveform (x: operator from 1 to 4 (0 for all ops); y: waveform " +"from 0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:526 +msgid "" +"2Bxy: Set envelope generator shift (x: operator from 1 to 4 (0 for all ops); " +"y: shift from 0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:527 +msgid "" +"2Cxy: Set fine multiplier (x: operator from 1 to 4 (0 for all ops); y: fine)" +msgstr "" + +#: src/engine/sysDef.cpp:530 +msgid "" +"3xyy: Set fixed frequency of operator 1 (x: octave from 0 to 7; y: frequency)" +msgstr "" + +#: src/engine/sysDef.cpp:531 +msgid "" +"3xyy: Set fixed frequency of operator 2 (x: octave from 8 to F; y: frequency)" +msgstr "" + +#: src/engine/sysDef.cpp:532 +msgid "" +"4xyy: Set fixed frequency of operator 3 (x: octave from 0 to 7; y: frequency)" +msgstr "" + +#: src/engine/sysDef.cpp:533 +msgid "" +"4xyy: Set fixed frequency of operator 4 (x: octave from 8 to F; y: frequency)" +msgstr "" + +#: src/engine/sysDef.cpp:540 +msgid "10xy: Setup LFO (x: enable; y: speed)" +msgstr "" + +#: src/engine/sysDef.cpp:541 +msgid "" +"55xy: Set SSG envelope (x: operator from 1 to 4 (0 for all ops); y: 0-7 on, " +"8 off)" +msgstr "" + +#: src/engine/sysDef.cpp:549 +msgid "1Fxx: Set ADPCM-A global volume (0 to 3F)" +msgstr "" + +#: src/engine/sysDef.cpp:553 +msgid "10xx: Set patch (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:555 src/engine/sysDef.cpp:576 +#: src/engine/sysDef.cpp:631 +msgid "12xx: Set level of operator 1 (0 highest, 3F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:556 src/engine/sysDef.cpp:577 +#: src/engine/sysDef.cpp:632 +msgid "13xx: Set level of operator 2 (0 highest, 3F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:557 +msgid "16xy: Set operator multiplier (x: operator from 1 to 2; y: multiplier)" +msgstr "" + +#: src/engine/sysDef.cpp:558 src/engine/sysDef.cpp:582 +#: src/engine/sysDef.cpp:637 +msgid "19xx: Set attack of all operators (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:559 src/engine/sysDef.cpp:583 +#: src/engine/sysDef.cpp:638 +msgid "1Axx: Set attack of operator 1 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:560 src/engine/sysDef.cpp:584 +#: src/engine/sysDef.cpp:639 +msgid "1Bxx: Set attack of operator 2 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:561 +msgid "50xy: Set AM (x: operator from 1 to 2 (0 for all ops); y: AM)" +msgstr "" + +#: src/engine/sysDef.cpp:562 +msgid "" +"51xy: Set sustain level (x: operator from 1 to 2 (0 for all ops); y: sustain)" +msgstr "" + +#: src/engine/sysDef.cpp:563 +msgid "52xy: Set release (x: operator from 1 to 2 (0 for all ops); y: release)" +msgstr "" + +#: src/engine/sysDef.cpp:564 +msgid "53xy: Set vibrato (x: operator from 1 to 2 (0 for all ops); y: enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:565 +msgid "" +"54xy: Set envelope scale (x: operator from 1 to 2 (0 for all ops); y: scale " +"from 0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:566 +msgid "" +"55xy: Set envelope sustain (x: operator from 1 to 2 (0 for all ops); y: " +"enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:567 src/engine/sysDef.cpp:594 +#: src/engine/sysDef.cpp:662 +msgid "56xx: Set decay of all operators (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:568 src/engine/sysDef.cpp:595 +#: src/engine/sysDef.cpp:663 +msgid "57xx: Set decay of operator 1 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:569 src/engine/sysDef.cpp:596 +#: src/engine/sysDef.cpp:664 +msgid "58xx: Set decay of operator 2 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:570 +msgid "" +"5Bxy: Set whether key will scale envelope (x: operator from 1 to 2 (0 for " +"all ops); y: enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:574 +msgid "10xx: Set global AM depth (0: 1dB, 1: 4.8dB)" +msgstr "" + +#: src/engine/sysDef.cpp:578 src/engine/sysDef.cpp:633 +msgid "14xx: Set level of operator 3 (0 highest, 3F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:579 src/engine/sysDef.cpp:634 +msgid "15xx: Set level of operator 4 (0 highest, 3F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:581 +msgid "17xx: Set global vibrato depth (0: normal, 1: double)" +msgstr "" + +#: src/engine/sysDef.cpp:585 src/engine/sysDef.cpp:640 +msgid "1Cxx: Set attack of operator 3 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:586 src/engine/sysDef.cpp:641 +msgid "1Dxx: Set attack of operator 4 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:587 +msgid "" +"2Axy: Set waveform (x: operator from 1 to 4 (0 for all ops); y: waveform " +"from 0 to 3 in OPL2 and 0 to 7 in OPL3)" +msgstr "" + +#: src/engine/sysDef.cpp:591 src/engine/sysDef.cpp:659 +msgid "53xy: Set vibrato (x: operator from 1 to 4 (0 for all ops); y: enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:593 src/engine/sysDef.cpp:661 +msgid "" +"55xy: Set envelope sustain (x: operator from 1 to 4 (0 for all ops); y: " +"enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:597 src/engine/sysDef.cpp:665 +msgid "59xx: Set decay of operator 3 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:598 src/engine/sysDef.cpp:666 +msgid "5Axx: Set decay of operator 4 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:599 src/engine/sysDef.cpp:667 +msgid "" +"5Bxy: Set whether key will scale envelope (x: operator from 1 to 4 (0 for " +"all ops); y: enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:603 src/engine/sysDef.cpp:680 +msgid "" +"10xx: Set waveform (bit 0: triangle; bit 1: saw; bit 2: pulse; bit 3: noise)" +msgstr "" + +#: src/engine/sysDef.cpp:604 +msgid "11xx: Set coarse cutoff (not recommended; use 4xxx instead)" +msgstr "" + +#: src/engine/sysDef.cpp:605 +msgid "12xx: Set coarse pulse width (not recommended; use 3xxx instead)" +msgstr "" + +#: src/engine/sysDef.cpp:606 +msgid "13xx: Set resonance (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:607 +msgid "" +"14xx: Set filter mode (bit 0: low pass; bit 1: band pass; bit 2: high pass)" +msgstr "" + +#: src/engine/sysDef.cpp:608 +msgid "15xx: Set envelope reset time" +msgstr "" + +#: src/engine/sysDef.cpp:609 +msgid "1Axx: Disable envelope reset for this channel (1 disables; 0 enables)" +msgstr "" + +#: src/engine/sysDef.cpp:610 +msgid "1Bxy: Reset cutoff (x: on new note; y: now)" +msgstr "" + +#: src/engine/sysDef.cpp:611 +msgid "1Cxy: Reset pulse width (x: on new note; y: now)" +msgstr "" + +#: src/engine/sysDef.cpp:612 +msgid "1Exy: Change other parameters (LEGACY)" +msgstr "" + +#: src/engine/sysDef.cpp:613 +msgid "20xy: Set attack/decay (x: attack; y: decay)" +msgstr "" + +#: src/engine/sysDef.cpp:614 +msgid "21xy: Set sustain/release (x: sustain; y: release)" +msgstr "" + +#: src/engine/sysDef.cpp:616 src/engine/sysDef.cpp:688 +msgid "3xxx: Set pulse width (0 to FFF)" +msgstr "" + +#: src/engine/sysDef.cpp:617 +msgid "4xxx: Set cutoff (0 to 7FF)" +msgstr "" + +#: src/engine/sysDef.cpp:622 src/engine/sysDef.cpp:745 +#: src/engine/sysDef.cpp:762 src/engine/sysDef.cpp:1000 +#: src/engine/sysDef.cpp:1050 src/engine/sysDef.cpp:1268 +#: src/engine/sysDef.cpp:1320 src/engine/sysDef.cpp:1590 +#: src/engine/sysDef.cpp:1788 src/engine/sysDef.cpp:1792 +#: src/engine/sysDef.cpp:1893 src/engine/sysDef.cpp:2063 +#: src/engine/sysDef.cpp:2077 +msgid "10xx: Set waveform" +msgstr "" + +#: src/engine/sysDef.cpp:626 +msgid "20xx: Set PCM frequency" +msgstr "" + +#: src/engine/sysDef.cpp:630 +msgid "" +"10xy: Set AM depth (x: operator from 1 to 4 (0 for all ops); y: depth (0: " +"1dB, 1: 4.8dB))" +msgstr "" + +#: src/engine/sysDef.cpp:636 +msgid "" +"17xy: Set vibrato depth (x: operator from 1 to 4 (0 for all ops); y: depth " +"(0: normal, 1: double))" +msgstr "" + +#: src/engine/sysDef.cpp:642 +msgid "20xy: Set panning of operator 1 (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:643 +msgid "21xy: Set panning of operator 2 (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:644 +msgid "22xy: Set panning of operator 3 (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:645 +msgid "23xy: Set panning of operator 4 (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:646 +msgid "" +"24xy: Set output level register (x: operator from 1 to 4 (0 for all ops); y: " +"level from 0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:647 +msgid "" +"25xy: Set modulation input level (x: operator from 1 to 4 (0 for all ops); " +"y: level from 0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:648 +msgid "" +"26xy: Set envelope delay (x: operator from 1 to 4 (0 for all ops); y: delay " +"from 0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:649 +msgid "27xx: Set noise mode for operator 4 (x: mode from 0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:651 +msgid "" +"2Fxy: Set fixed frequency block (x: operator from 1 to 4; y: octave from 0 " +"to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:652 +msgid "40xx: Set detune of operator 1 (80: center)" +msgstr "" + +#: src/engine/sysDef.cpp:653 +msgid "41xx: Set detune of operator 2 (80: center)" +msgstr "" + +#: src/engine/sysDef.cpp:654 +msgid "42xx: Set detune of operator 3 (80: center)" +msgstr "" + +#: src/engine/sysDef.cpp:655 +msgid "43xx: Set detune of operator 4 (80: center)" +msgstr "" + +#: src/engine/sysDef.cpp:670 +msgid "" +"3xyy: Set fixed frequency F-num of operator 1 (x: high 2 bits from 0 to 3; " +"y: low 8 bits of F-num)" +msgstr "" + +#: src/engine/sysDef.cpp:671 +msgid "" +"3xyy: Set fixed frequency F-num of operator 2 (x: high 2 bits from 4 to 7; " +"y: low 8 bits of F-num)" +msgstr "" + +#: src/engine/sysDef.cpp:672 +msgid "" +"3xyy: Set fixed frequency F-num of operator 3 (x: high 2 bits from 8 to B; " +"y: low 8 bits of F-num)" +msgstr "" + +#: src/engine/sysDef.cpp:673 +msgid "" +"3xyy: Set fixed frequency F-num of operator 4 (x: high 2 bits from C to F; " +"y: low 8 bits of F-num)" +msgstr "" + +#: src/engine/sysDef.cpp:681 +msgid "11xx: Set resonance (0 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:682 +msgid "" +"12xx: Set filter mode (bit 0: low pass; bit 1: band pass; bit 2: high pass)" +msgstr "" + +#: src/engine/sysDef.cpp:683 +msgid "13xx: Disable envelope reset for this channel (1 disables; 0 enables)" +msgstr "" + +#: src/engine/sysDef.cpp:684 +msgid "14xy: Reset cutoff (x: on new note; y: now)" +msgstr "" + +#: src/engine/sysDef.cpp:685 +msgid "15xy: Reset pulse width (x: on new note; y: now)" +msgstr "" + +#: src/engine/sysDef.cpp:686 +msgid "16xy: Change other parameters" +msgstr "" + +#: src/engine/sysDef.cpp:689 src/engine/sysDef.cpp:1733 +msgid "4xxx: Set cutoff (0 to FFF)" +msgstr "" + +#: src/engine/sysDef.cpp:697 +msgid "Yamaha YMU759 (MA-2)" +msgstr "" + +#: src/engine/sysDef.cpp:698 +msgid "" +"a chip which found its way inside mobile phones in the 2000's.\n" +"as proprietary as it is, it passed away after losing to MP3 in the mobile " +"hardware battle." +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:807 src/engine/sysDef.cpp:819 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:915 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1237 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1314 src/engine/sysDef.cpp:1356 +#: src/engine/sysDef.cpp:1396 src/engine/sysDef.cpp:1499 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1572 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1608 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1799 src/engine/sysDef.cpp:1810 +#: src/engine/sysDef.cpp:1821 src/engine/sysDef.cpp:1832 +#: src/engine/sysDef.cpp:1900 src/engine/sysDef.cpp:1910 +#: src/engine/sysDef.cpp:1920 src/engine/sysDef.cpp:1944 +#: src/engine/sysDef.cpp:1957 src/engine/sysDef.cpp:1970 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2037 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2122 +#: src/engine/sysDef.cpp:2138 src/engine/sysDef.cpp:2150 +msgid "Channel 1" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:807 src/engine/sysDef.cpp:819 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:915 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1237 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1314 src/engine/sysDef.cpp:1356 +#: src/engine/sysDef.cpp:1396 src/engine/sysDef.cpp:1499 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1572 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1608 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1799 src/engine/sysDef.cpp:1810 +#: src/engine/sysDef.cpp:1821 src/engine/sysDef.cpp:1832 +#: src/engine/sysDef.cpp:1900 src/engine/sysDef.cpp:1910 +#: src/engine/sysDef.cpp:1920 src/engine/sysDef.cpp:1944 +#: src/engine/sysDef.cpp:1957 src/engine/sysDef.cpp:1970 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2037 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2122 +#: src/engine/sysDef.cpp:2138 src/engine/sysDef.cpp:2150 +msgid "Channel 2" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:807 src/engine/sysDef.cpp:819 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1237 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1314 +#: src/engine/sysDef.cpp:1356 src/engine/sysDef.cpp:1396 +#: src/engine/sysDef.cpp:1499 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1572 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1799 src/engine/sysDef.cpp:1810 +#: src/engine/sysDef.cpp:1821 src/engine/sysDef.cpp:1832 +#: src/engine/sysDef.cpp:1910 src/engine/sysDef.cpp:1944 +#: src/engine/sysDef.cpp:1957 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2037 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +#: src/engine/sysDef.cpp:2122 src/engine/sysDef.cpp:2138 +#: src/engine/sysDef.cpp:2150 +msgid "Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1237 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1314 +#: src/engine/sysDef.cpp:1356 src/engine/sysDef.cpp:1396 +#: src/engine/sysDef.cpp:1499 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1572 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1910 +#: src/engine/sysDef.cpp:1944 src/engine/sysDef.cpp:1957 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +#: src/engine/sysDef.cpp:2122 src/engine/sysDef.cpp:2150 +msgid "Channel 4" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1314 +#: src/engine/sysDef.cpp:1356 src/engine/sysDef.cpp:1396 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1572 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1705 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 5" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1356 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 6" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 7" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 8" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 9" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 10" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 11" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 12" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 13" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 14" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 15" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 16" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:700 +#: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1767 src/engine/sysDef.cpp:1888 +#: src/engine/sysDef.cpp:1944 src/engine/sysDef.cpp:1945 +#: src/gui/settings.cpp:4094 +msgid "PCM" +msgstr "" + +#: src/engine/sysDef.cpp:706 +msgid "Sega Genesis/Mega Drive" +msgstr "Sega Mega Drive" + +#: src/engine/sysDef.cpp:712 +msgid "Sega Genesis Extended Channel 3" +msgstr "Sega Mega Drive zo rošírenim 3. kanálom" + +#: src/engine/sysDef.cpp:718 src/gui/sysConf.cpp:158 +msgid "TI SN76489" +msgstr "TI SN76489" + +#: src/engine/sysDef.cpp:719 +msgid "" +"a square/noise sound chip found on the Sega Master System, ColecoVision, " +"Tandy, TI's own 99/4A and a few other places." +msgstr "" +"štvorcoý/nojsový čip, ktorý sa môže najsť vo Sega Master System-e, " +"ColecoVision-eTandy-ne, TI-ovom 99/4A a ešte na niektorých systémach" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 +msgid "Square 1" +msgstr "Štvorec 1" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 +msgid "Square 2" +msgstr "Štvorec 2" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 +msgid "Square 3" +msgstr "Štvorec 3" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:739 +#: src/engine/sysDef.cpp:773 src/engine/sysDef.cpp:955 +#: src/engine/sysDef.cpp:1314 src/engine/sysDef.cpp:1874 +#: src/engine/sysDef.cpp:1920 src/engine/sysDef.cpp:2037 +#: src/engine/sysDef.cpp:2100 src/gui/settings.cpp:4093 +#: src/gui/insEdit.cpp:6978 src/gui/insEdit.cpp:7129 src/gui/insEdit.cpp:7223 +#: src/gui/insEdit.cpp:7315 +msgid "Noise" +msgstr "Noise" + +#: src/engine/sysDef.cpp:726 +msgid "20xy: Set noise mode (x: preset freq/ch3 freq; y: thin pulse/noise)" +msgstr "" + +#: src/engine/sysDef.cpp:731 +msgid "Sega Master System + FM Expansion" +msgstr "" + +#: src/engine/sysDef.cpp:737 src/gui/settings.cpp:4025 +msgid "Game Boy" +msgstr "" + +#: src/engine/sysDef.cpp:738 +msgid "the most popular portable game console of the era." +msgstr "" + +#: src/engine/sysDef.cpp:739 src/engine/sysDef.cpp:773 +#: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:2100 +msgid "Pulse 1" +msgstr "" + +#: src/engine/sysDef.cpp:739 src/engine/sysDef.cpp:773 +#: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:2100 +msgid "Pulse 2" +msgstr "" + +#: src/engine/sysDef.cpp:739 src/gui/settings.cpp:3930 +#: src/gui/guiConst.cpp:1395 src/gui/insEdit.cpp:6652 +msgid "Wavetable" +msgstr "" + +#: src/engine/sysDef.cpp:746 +msgid "11xx: Set noise length (0: long; 1: short)" +msgstr "" + +#: src/engine/sysDef.cpp:747 +msgid "12xx: Set duty cycle (0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:748 +msgid "13xy: Setup sweep (x: time; y: shift)" +msgstr "" + +#: src/engine/sysDef.cpp:749 +msgid "14xx: Set sweep direction (0: up; 1: down)" +msgstr "" + +#: src/engine/sysDef.cpp:754 +msgid "PC Engine/TurboGrafx-16" +msgstr "" + +#: src/engine/sysDef.cpp:755 +msgid "an '80s game console with a wavetable sound chip, popular in Japan." +msgstr "" + +#: src/engine/sysDef.cpp:763 src/engine/sysDef.cpp:1001 +#: src/engine/sysDef.cpp:1793 +msgid "11xx: Toggle noise mode" +msgstr "" + +#: src/engine/sysDef.cpp:764 +msgid "12xx: Setup LFO (0: disabled; 1: 1x depth; 2: 16x depth; 3: 256x depth)" +msgstr "" + +#: src/engine/sysDef.cpp:765 +msgid "13xx: Set LFO speed" +msgstr "" + +#: src/engine/sysDef.cpp:771 +msgid "NES (Ricoh 2A03)" +msgstr "" + +#: src/engine/sysDef.cpp:772 +msgid "" +"also known as Famicom in Japan, it's the most well-known game console of the " +"'80s." +msgstr "" + +#: src/engine/sysDef.cpp:773 src/gui/waveEdit.cpp:31 src/gui/waveEdit.cpp:217 +#: src/gui/insEdit.cpp:200 src/gui/insEdit.cpp:324 src/gui/insEdit.cpp:658 +msgid "Triangle" +msgstr "" + +#: src/engine/sysDef.cpp:773 src/engine/sysDef.cpp:2100 +#: src/gui/insEdit.cpp:2629 +msgid "DPCM" +msgstr "" + +#: src/engine/sysDef.cpp:779 src/engine/sysDef.cpp:2106 +msgid "11xx: Write to delta modulation counter (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:780 src/engine/sysDef.cpp:1068 +msgid "12xx: Set duty cycle/noise mode (pulse: 0 to 3; noise: 0 or 1)" +msgstr "" + +#: src/engine/sysDef.cpp:781 src/engine/sysDef.cpp:2108 +msgid "13xy: Sweep up (x: time; y: shift)" +msgstr "" + +#: src/engine/sysDef.cpp:782 src/engine/sysDef.cpp:2109 +msgid "14xy: Sweep down (x: time; y: shift)" +msgstr "" + +#: src/engine/sysDef.cpp:783 src/engine/sysDef.cpp:2110 +msgid "" +"15xx: Set envelope mode (0: envelope, 1: length, 2: looping, 3: constant)" +msgstr "" + +#: src/engine/sysDef.cpp:784 src/engine/sysDef.cpp:2111 +msgid "16xx: Set length counter (refer to manual for a list of values)" +msgstr "" + +#: src/engine/sysDef.cpp:785 src/engine/sysDef.cpp:2112 +msgid "17xx: Set frame counter mode (0: 4-step, 1: 5-step)" +msgstr "" + +#: src/engine/sysDef.cpp:786 src/engine/sysDef.cpp:2113 +msgid "18xx: Select PCM/DPCM mode (0: PCM; 1: DPCM)" +msgstr "" + +#: src/engine/sysDef.cpp:787 src/engine/sysDef.cpp:2114 +msgid "19xx: Set triangle linear counter (0 to 7F; 80 and higher halt)" +msgstr "" + +#: src/engine/sysDef.cpp:788 src/engine/sysDef.cpp:2115 +msgid "20xx: Set DPCM frequency (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:793 +msgid "NES + Konami VRC7" +msgstr "" + +#: src/engine/sysDef.cpp:799 +msgid "Famicom Disk System" +msgstr "" + +#: src/engine/sysDef.cpp:805 +msgid "Commodore 64 (SID 6581)" +msgstr "" + +#: src/engine/sysDef.cpp:806 +msgid "" +"this computer is powered by the SID chip, which had synthesizer features " +"like a filter and ADSR." +msgstr "" + +#: src/engine/sysDef.cpp:817 +msgid "Commodore 64 (SID 8580)" +msgstr "" + +#: src/engine/sysDef.cpp:818 +msgid "" +"this computer is powered by the SID chip, which had synthesizer features " +"like a filter and ADSR.\n" +"this is the newer revision of the chip." +msgstr "" + +#: src/engine/sysDef.cpp:829 +msgid "DefleCade" +msgstr "" + +#: src/engine/sysDef.cpp:835 +msgid "Neo Geo CD" +msgstr "" + +#: src/engine/sysDef.cpp:836 +msgid "" +"like Neo Geo, but lacking the ADPCM-B channel since they couldn't connect " +"the pins." +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1173 +#: src/engine/sysDef.cpp:1185 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1443 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +#: src/engine/sysDef.cpp:2006 +msgid "FM 1" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:891 +#: src/engine/sysDef.cpp:903 src/engine/sysDef.cpp:1032 +#: src/engine/sysDef.cpp:1097 src/engine/sysDef.cpp:1109 +#: src/engine/sysDef.cpp:1122 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1546 +#: src/engine/sysDef.cpp:1559 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:1693 src/engine/sysDef.cpp:1849 +#: src/engine/sysDef.cpp:1861 src/engine/sysDef.cpp:2006 +msgid "FM 2" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1173 +#: src/engine/sysDef.cpp:1185 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1443 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:2006 +msgid "FM 3" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1546 +#: src/engine/sysDef.cpp:1559 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:1693 src/engine/sysDef.cpp:1849 +#: src/engine/sysDef.cpp:1861 src/engine/sysDef.cpp:2006 +msgid "FM 4" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:862 src/engine/sysDef.cpp:927 +#: src/engine/sysDef.cpp:943 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "PSG 1" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:862 src/engine/sysDef.cpp:927 +#: src/engine/sysDef.cpp:943 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "PSG 2" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:862 src/engine/sysDef.cpp:927 +#: src/engine/sysDef.cpp:943 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "PSG 3" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 1" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 2" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 3" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 4" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 5" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 6" +msgstr "" + +#: src/engine/sysDef.cpp:847 +msgid "Neo Geo CD Extended Channel 2" +msgstr "" + +#: src/engine/sysDef.cpp:848 +msgid "" +"like Neo Geo, but lacking the ADPCM-B channel since they couldn't connect " +"the pins.\n" +"this one is in Extended Channel mode, which turns the second FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP1" +msgstr "" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP2" +msgstr "" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP3" +msgstr "" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP4" +msgstr "" + +#: src/engine/sysDef.cpp:860 src/gui/sysConf.cpp:913 +msgid "AY-3-8910" +msgstr "" + +#: src/engine/sysDef.cpp:861 +msgid "" +"this chip is everywhere! ZX Spectrum, MSX, Amstrad CPC, Intellivision, " +"Vectrex...\n" +"the discovery of envelope bass helped it beat the SN76489 with ease." +msgstr "" + +#: src/engine/sysDef.cpp:872 +msgid "Amiga" +msgstr "" + +#: src/engine/sysDef.cpp:873 +msgid "" +"a computer from the '80s with full sampling capabilities, giving it a sound " +"ahead of its time." +msgstr "" + +#: src/engine/sysDef.cpp:881 +msgid "10xx: Toggle filter (0 disables; 1 enables)" +msgstr "" + +#: src/engine/sysDef.cpp:882 +msgid "11xx: Toggle AM with next channel" +msgstr "" + +#: src/engine/sysDef.cpp:883 +msgid "12xx: Toggle period modulation with next channel" +msgstr "" + +#: src/engine/sysDef.cpp:884 +msgid "13xx: Set waveform" +msgstr "" + +#: src/engine/sysDef.cpp:889 +msgid "Yamaha YM2151 (OPM)" +msgstr "" + +#: src/engine/sysDef.cpp:890 +msgid "" +"this was Yamaha's first integrated FM chip.\n" +"it was used in several synthesizers, computers and arcade boards." +msgstr "" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1279 src/engine/sysDef.cpp:1332 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1370 +#: src/engine/sysDef.cpp:1383 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +#: src/engine/sysDef.cpp:2006 +msgid "FM 5" +msgstr "" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:2006 +msgid "FM 6" +msgstr "" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:1032 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1279 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:2006 +msgid "FM 7" +msgstr "" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:1032 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:2006 +msgid "FM 8" +msgstr "" + +#: src/engine/sysDef.cpp:901 +msgid "Yamaha YM2612 (OPN2)" +msgstr "" + +#: src/engine/sysDef.cpp:902 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer)." +msgstr "" + +#: src/engine/sysDef.cpp:913 +msgid "Atari TIA" +msgstr "" + +#: src/engine/sysDef.cpp:914 +msgid "" +"it's a challenge to make music on this chip which barely has musical " +"capabilities..." +msgstr "" + +#: src/engine/sysDef.cpp:925 +msgid "Philips SAA1099" +msgstr "" + +#: src/engine/sysDef.cpp:926 +msgid "" +"supposedly an upgrade from the AY-3-8910, this was present on the Creative " +"Music System (Game Blaster) and SAM Coupé." +msgstr "" + +#: src/engine/sysDef.cpp:927 +msgid "PSG 4" +msgstr "" + +#: src/engine/sysDef.cpp:927 +msgid "PSG 5" +msgstr "" + +#: src/engine/sysDef.cpp:927 +msgid "PSG 6" +msgstr "" + +#: src/engine/sysDef.cpp:934 +msgid "10xy: Set channel mode (x: noise; y: tone)" +msgstr "" + +#: src/engine/sysDef.cpp:935 +msgid "11xx: Set noise frequency" +msgstr "" + +#: src/engine/sysDef.cpp:936 +msgid "12xx: Setup envelope (refer to docs for more information)" +msgstr "" + +#: src/engine/sysDef.cpp:941 +msgid "Microchip AY8930" +msgstr "" + +#: src/engine/sysDef.cpp:942 +msgid "" +"an improved version of the AY-3-8910 with a bigger frequency range, duty " +"cycles, configurable noise and per-channel envelopes!" +msgstr "" + +#: src/engine/sysDef.cpp:953 +msgid "Commodore VIC-20" +msgstr "" + +#: src/engine/sysDef.cpp:954 +msgid "" +"Commodore's successor to the PET.\n" +"its square wave channels are more than just square..." +msgstr "" + +#: src/engine/sysDef.cpp:955 src/gui/settings.cpp:136 src/gui/settings.cpp:206 +#: src/gui/settings.cpp:3970 +msgid "Low" +msgstr "" + +#: src/engine/sysDef.cpp:955 +msgid "Mid" +msgstr "" + +#: src/engine/sysDef.cpp:955 src/gui/settings.cpp:135 src/gui/settings.cpp:208 +#: src/gui/settings.cpp:3971 +msgid "High" +msgstr "" + +#: src/engine/sysDef.cpp:964 +msgid "Commodore PET" +msgstr "" + +#: src/engine/sysDef.cpp:965 +msgid "" +"one channel of 1-bit wavetable which is better (and worse) than the PC " +"Speaker." +msgstr "" + +#: src/engine/sysDef.cpp:966 src/engine/sysDef.cpp:1262 +#: src/engine/sysDef.cpp:2100 src/gui/editControls.cpp:433 +#: src/gui/settings.cpp:4017 src/gui/settings.cpp:4095 +msgid "Wave" +msgstr "" + +#: src/engine/sysDef.cpp:975 src/gui/settings.cpp:4052 +msgid "SNES" +msgstr "" + +#: src/engine/sysDef.cpp:976 +msgid "FM? nah... samples! Nintendo's answer to Sega." +msgstr "" + +#: src/engine/sysDef.cpp:983 +msgid "18xx: Enable echo buffer" +msgstr "" + +#: src/engine/sysDef.cpp:984 +msgid "19xx: Set echo delay (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:985 +msgid "1Axx: Set left echo volume" +msgstr "" + +#: src/engine/sysDef.cpp:986 +msgid "1Bxx: Set right echo volume" +msgstr "" + +#: src/engine/sysDef.cpp:987 +msgid "1Cxx: Set echo feedback" +msgstr "" + +#: src/engine/sysDef.cpp:988 +msgid "1Exx: Set dry output volume (left)" +msgstr "" + +#: src/engine/sysDef.cpp:989 +msgid "1Fxx: Set dry output volume (right)" +msgstr "" + +#: src/engine/sysDef.cpp:990 +msgid "30xx: Set echo filter coefficient 0" +msgstr "" + +#: src/engine/sysDef.cpp:991 +msgid "31xx: Set echo filter coefficient 1" +msgstr "" + +#: src/engine/sysDef.cpp:992 +msgid "32xx: Set echo filter coefficient 2" +msgstr "" + +#: src/engine/sysDef.cpp:993 +msgid "33xx: Set echo filter coefficient 3" +msgstr "" + +#: src/engine/sysDef.cpp:994 +msgid "34xx: Set echo filter coefficient 4" +msgstr "" + +#: src/engine/sysDef.cpp:995 +msgid "35xx: Set echo filter coefficient 5" +msgstr "" + +#: src/engine/sysDef.cpp:996 +msgid "36xx: Set echo filter coefficient 6" +msgstr "" + +#: src/engine/sysDef.cpp:997 +msgid "37xx: Set echo filter coefficient 7" +msgstr "" + +#: src/engine/sysDef.cpp:1002 +msgid "12xx: Toggle echo on this channel" +msgstr "" + +#: src/engine/sysDef.cpp:1003 +msgid "13xx: Toggle pitch modulation" +msgstr "" + +#: src/engine/sysDef.cpp:1004 +msgid "14xy: Toggle invert (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:1005 +msgid "" +"15xx: Set envelope mode (0: ADSR, 1: gain/direct, 2: dec, 3: exp, 4: inc, 5: " +"bent)" +msgstr "" + +#: src/engine/sysDef.cpp:1006 +msgid "16xx: Set gain (00 to 7F if direct; 00 to 1F otherwise)" +msgstr "" + +#: src/engine/sysDef.cpp:1007 +msgid "1Dxx: Set noise frequency (00 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:1008 +msgid "20xx: Set attack (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:1009 +msgid "21xx: Set decay (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1010 +msgid "22xx: Set sustain (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1011 +msgid "23xx: Set release (00 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:1016 +msgid "Konami VRC6" +msgstr "" + +#: src/engine/sysDef.cpp:1017 +msgid "an expansion chip for the Famicom, featuring a quirky sawtooth channel." +msgstr "" + +#: src/engine/sysDef.cpp:1018 +msgid "VRC6 1" +msgstr "" + +#: src/engine/sysDef.cpp:1018 +msgid "VRC6 2" +msgstr "" + +#: src/engine/sysDef.cpp:1018 +msgid "VRC6 Saw" +msgstr "" + +#: src/engine/sysDef.cpp:1024 src/engine/sysDef.cpp:2092 +msgid "12xx: Set duty cycle (pulse: 0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1030 +msgid "Yamaha YM2413 (OPLL)" +msgstr "" + +#: src/engine/sysDef.cpp:1031 +msgid "" +"cost-reduced version of the OPL with 16 patches and only one of them is user-" +"configurable." +msgstr "" + +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1173 +#: src/engine/sysDef.cpp:1185 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:2006 +msgid "FM 9" +msgstr "" + +#: src/engine/sysDef.cpp:1042 +msgid "Famicom Disk System (chip)" +msgstr "" + +#: src/engine/sysDef.cpp:1043 +msgid "a disk drive for the Famicom which also contains one wavetable channel." +msgstr "" + +#: src/engine/sysDef.cpp:1044 src/gui/settings.cpp:4039 +msgid "FDS" +msgstr "" + +#: src/engine/sysDef.cpp:1051 +msgid "11xx: Set modulation depth" +msgstr "" + +#: src/engine/sysDef.cpp:1052 +msgid "12xy: Set modulation speed high byte (x: enable; y: value)" +msgstr "" + +#: src/engine/sysDef.cpp:1053 +msgid "13xx: Set modulation speed low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1054 +msgid "14xx: Set modulator position" +msgstr "" + +#: src/engine/sysDef.cpp:1055 +msgid "15xx: Set modulator table to waveform" +msgstr "" + +#: src/engine/sysDef.cpp:1060 +msgid "MMC5" +msgstr "" + +#: src/engine/sysDef.cpp:1061 +msgid "" +"an expansion chip for the Famicom, featuring a little-known PCM channel." +msgstr "" + +#: src/engine/sysDef.cpp:1073 src/gui/settings.cpp:4041 +msgid "Namco 163" +msgstr "" + +#: src/engine/sysDef.cpp:1074 +msgid "an expansion chip for the Famicom, with full wavetable." +msgstr "" + +#: src/engine/sysDef.cpp:1081 +msgid "18xx: Change channel limits (0 to 7, x + 1)" +msgstr "" + +#: src/engine/sysDef.cpp:1082 +msgid "20xx: Load a waveform into memory" +msgstr "" + +#: src/engine/sysDef.cpp:1083 +msgid "21xx: Set position for wave load" +msgstr "" + +#: src/engine/sysDef.cpp:1086 +msgid "10xx: Select waveform" +msgstr "" + +#: src/engine/sysDef.cpp:1087 +msgid "11xx: Set waveform position in RAM" +msgstr "" + +#: src/engine/sysDef.cpp:1088 +msgid "12xx: Set waveform length in RAM (04 to FC in steps of 4)" +msgstr "" + +#: src/engine/sysDef.cpp:1089 +msgid "15xx: Set waveform load position" +msgstr "" + +#: src/engine/sysDef.cpp:1090 +msgid "16xx: Set waveform load length (04 to FC in steps of 4)" +msgstr "" + +#: src/engine/sysDef.cpp:1095 +msgid "Yamaha YM2203 (OPN)" +msgstr "" + +#: src/engine/sysDef.cpp:1096 +msgid "" +"cost-reduced version of the OPM with a different register layout and no " +"stereo...\n" +"...but it has a built-in AY-3-8910! (actually an YM2149)" +msgstr "" + +#: src/engine/sysDef.cpp:1107 +msgid "Yamaha YM2203 (OPN) Extended Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:1108 +msgid "" +"cost-reduced version of the OPM with a different register layout and no " +"stereo...\n" +"...but it has a built-in AY-3-8910! (actually an YM2149)\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies" +msgstr "" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP1" +msgstr "" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP2" +msgstr "" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP3" +msgstr "" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP4" +msgstr "" + +#: src/engine/sysDef.cpp:1120 +msgid "Yamaha YM2203 (OPN) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1121 +msgid "" +"cost-reduced version of the OPM with a different register layout and no " +"stereo...\n" +"...but it has a built-in AY-3-8910! (actually an YM2149)\n" +"CSM blah blah" +msgstr "" + +#: src/engine/sysDef.cpp:1122 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1383 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1559 src/engine/sysDef.cpp:1861 +msgid "CSM Timer" +msgstr "" + +#: src/engine/sysDef.cpp:1133 +msgid "Yamaha YM2608 (OPNA)" +msgstr "" + +#: src/engine/sysDef.cpp:1134 +msgid "" +"OPN but twice the FM channels, stereo makes a come-back and has rhythm and " +"ADPCM channels." +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1481 +#: src/gui/insEdit.cpp:3302 src/gui/insEdit.cpp:3624 +msgid "Kick" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:210 src/gui/insEdit.cpp:218 +msgid "Snare" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:212 src/gui/insEdit.cpp:220 +#: src/gui/insEdit.cpp:1909 src/gui/insEdit.cpp:2014 +msgid "Top" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:213 src/gui/insEdit.cpp:219 +msgid "HiHat" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:211 +msgid "Tom" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 +msgid "Rim" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:1693 +msgid "ADPCM" +msgstr "" + +#: src/engine/sysDef.cpp:1145 +msgid "Yamaha YM2608 (OPNA) Extended Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:1146 +msgid "" +"OPN but twice the FM channels, stereo makes a come-back and has rhythm and " +"ADPCM channels.\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies" +msgstr "" + +#: src/engine/sysDef.cpp:1158 +msgid "Yamaha YM2608 (OPNA) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1159 +msgid "" +"OPN but twice the FM channels, stereo makes a come-back and has rhythm and " +"ADPCM channels.\n" +"CSM blah blah" +msgstr "" + +#: src/engine/sysDef.cpp:1171 +msgid "Yamaha YM3526 (OPL)" +msgstr "" + +#: src/engine/sysDef.cpp:1172 +msgid "" +"OPN, but what if you only had two operators, no stereo, no detune and a " +"lower ADSR parameter range?" +msgstr "" + +#: src/engine/sysDef.cpp:1183 +msgid "Yamaha YM3812 (OPL2)" +msgstr "" + +#: src/engine/sysDef.cpp:1184 +msgid "OPL, but what if you had more waveforms to choose than the normal sine?" +msgstr "" + +#: src/engine/sysDef.cpp:1195 +msgid "Yamaha YMF262 (OPL3)" +msgstr "" + +#: src/engine/sysDef.cpp:1196 +msgid "" +"OPL2, but what if you had twice the channels, 4-op mode, stereo and even " +"more waveforms?" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 1" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 3" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 5" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 7" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 9" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 10" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 11" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 12" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 13" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 14" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 15" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:2006 +msgid "FM 16" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:2006 +msgid "FM 17" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:2006 +msgid "FM 18" +msgstr "" + +#: src/engine/sysDef.cpp:1208 src/gui/settings.cpp:4051 +msgid "MultiPCM" +msgstr "" + +#: src/engine/sysDef.cpp:1209 +msgid "" +"how many channels of PCM do you want?\n" +"MultiPCM: yes" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 17" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 18" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 19" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 20" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 21" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 22" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 23" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 24" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 25" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 26" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 27" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 28" +msgstr "" + +#: src/engine/sysDef.cpp:1217 +msgid "PC Speaker" +msgstr "" + +#: src/engine/sysDef.cpp:1218 +msgid "good luck! you get one square and no volume control." +msgstr "" + +#: src/engine/sysDef.cpp:1219 src/engine/sysDef.cpp:1228 +#: src/gui/guiConst.cpp:1394 src/gui/waveEdit.cpp:199 src/gui/insEdit.cpp:183 +#: src/gui/insEdit.cpp:194 src/gui/insEdit.cpp:326 src/gui/insEdit.cpp:656 +msgid "Square" +msgstr "" + +#: src/engine/sysDef.cpp:1226 +msgid "Pong" +msgstr "" + +#: src/engine/sysDef.cpp:1227 +msgid "please don't use this chip. it was added as a joke." +msgstr "" + +#: src/engine/sysDef.cpp:1235 src/gui/settings.cpp:4044 +msgid "POKEY" +msgstr "" + +#: src/engine/sysDef.cpp:1236 +msgid "" +"TIA, but better and more flexible.\n" +"used in the Atari 8-bit family of computers (400/800/XL/XE)." +msgstr "" + +#: src/engine/sysDef.cpp:1243 src/engine/sysDef.cpp:1714 +msgid "10xx: Set waveform (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1244 +msgid "11xx: Set AUDCTL" +msgstr "" + +#: src/engine/sysDef.cpp:1245 +msgid "12xx: Toggle two-tone mode" +msgstr "" + +#: src/engine/sysDef.cpp:1250 +msgid "Ricoh RF5C68" +msgstr "" + +#: src/engine/sysDef.cpp:1251 +msgid "" +"this is like SNES' sound chip but without interpolation and the rest of nice " +"bits." +msgstr "" + +#: src/engine/sysDef.cpp:1260 src/gui/settings.cpp:4046 +msgid "WonderSwan" +msgstr "" + +#: src/engine/sysDef.cpp:1261 +msgid "developed by the makers of the Game Boy and the Virtual Boy..." +msgstr "" + +#: src/engine/sysDef.cpp:1262 +msgid "Wave/PCM" +msgstr "" + +#: src/engine/sysDef.cpp:1262 +msgid "Wave/Sweep" +msgstr "" + +#: src/engine/sysDef.cpp:1262 +msgid "Wave/Noise" +msgstr "" + +#: src/engine/sysDef.cpp:1269 +msgid "11xx: Setup noise mode (0: disabled; 1-8: enabled/tap)" +msgstr "" + +#: src/engine/sysDef.cpp:1270 +msgid "12xx: Setup sweep period (0: disabled; 1-20: enabled/period)" +msgstr "" + +#: src/engine/sysDef.cpp:1271 +msgid "13xx: Set sweep amount" +msgstr "" + +#: src/engine/sysDef.cpp:1277 +msgid "Yamaha YM2414 (OPZ)" +msgstr "" + +#: src/engine/sysDef.cpp:1278 +msgid "" +"like OPM, but with more waveforms, fixed frequency mode and totally... " +"undocumented.\n" +"used in the Yamaha TX81Z and some other synthesizers." +msgstr "" + +#: src/engine/sysDef.cpp:1285 +msgid "2Fxx: Toggle hard envelope reset on new notes" +msgstr "" + +#: src/engine/sysDef.cpp:1291 src/gui/settings.cpp:4069 +msgid "Pokémon Mini" +msgstr "" + +#: src/engine/sysDef.cpp:1292 +msgid "this one is like PC Speaker but has duty cycles." +msgstr "" + +#: src/engine/sysDef.cpp:1293 src/gui/settings.cpp:4092 src/gui/waveEdit.cpp:33 +msgid "Pulse" +msgstr "" + +#: src/engine/sysDef.cpp:1300 +msgid "SegaPCM" +msgstr "" + +#: src/engine/sysDef.cpp:1301 +msgid "" +"used in some Sega arcade boards (like OutRun), and usually paired with a " +"YM2151." +msgstr "" + +#: src/engine/sysDef.cpp:1312 src/gui/settings.cpp:4040 +msgid "Virtual Boy" +msgstr "" + +#: src/engine/sysDef.cpp:1313 +msgid "" +"a console which failed to sell well due to its headache-inducing features." +msgstr "" + +#: src/engine/sysDef.cpp:1321 +msgid "11xx: Set noise length (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1322 +msgid "" +"12xy: Setup envelope (x: enabled/loop (1: enable, 3: enable+loop); y: speed/" +"direction (0-7: down, 8-F: up))" +msgstr "" + +#: src/engine/sysDef.cpp:1323 +msgid "13xy: Setup sweep (x: speed; y: shift; channel 5 only)" +msgstr "" + +#: src/engine/sysDef.cpp:1324 +msgid "" +"14xy: Setup modulation (x: enabled/loop (1: enable, 3: enable+loop); y: " +"speed; channel 5 only)" +msgstr "" + +#: src/engine/sysDef.cpp:1325 +msgid "15xx: Set modulation waveform (x: wavetable; channel 5 only)" +msgstr "" + +#: src/engine/sysDef.cpp:1330 +msgid "Konami VRC7" +msgstr "" + +#: src/engine/sysDef.cpp:1331 +msgid "" +"like OPLL, but even more cost reductions applied. three FM channels went " +"missing, and drums mode did as well..." +msgstr "" + +#: src/engine/sysDef.cpp:1342 +msgid "Yamaha YM2610B (OPNB2)" +msgstr "" + +#: src/engine/sysDef.cpp:1343 +msgid "" +"so Taito asked Yamaha if they could get the two missing FM channels back, " +"and Yamaha gladly provided them with this chip." +msgstr "" + +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/gui/settings.cpp:4061 +msgid "ADPCM-B" +msgstr "" + +#: src/engine/sysDef.cpp:1354 +msgid "ZX Spectrum Beeper" +msgstr "" + +#: src/engine/sysDef.cpp:1355 +msgid "" +"the ZX Spectrum only had a basic beeper capable of...\n" +"...a bunch of thin pulses and tons of other interesting stuff!\n" +"Furnace provides a thin pulse system." +msgstr "" + +#: src/engine/sysDef.cpp:1362 src/engine/sysDef.cpp:1950 +msgid "12xx: Set pulse width" +msgstr "" + +#: src/engine/sysDef.cpp:1363 +msgid "17xx: Trigger overlay drum" +msgstr "" + +#: src/engine/sysDef.cpp:1368 +msgid "Yamaha YM2612 (OPN2) Extended Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:1369 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:1381 +msgid "Yamaha YM2612 (OPN2) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1382 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this one includes CSM mode control for special effects on Channel 3." +msgstr "" + +#: src/engine/sysDef.cpp:1394 src/gui/settings.cpp:4042 +msgid "Konami SCC" +msgstr "" + +#: src/engine/sysDef.cpp:1395 +msgid "" +"a wavetable chip made by Konami for use with the MSX.\n" +"the last channel shares its wavetable with the previous one though." +msgstr "" + +#: src/engine/sysDef.cpp:1405 +msgid "Yamaha YM3526 (OPL) with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1406 +msgid "the OPL chip but with drums mode enabled." +msgstr "" + +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1693 +msgid "Kick/FM 7" +msgstr "" + +#: src/engine/sysDef.cpp:1417 +msgid "Yamaha YM3812 (OPL2) with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1418 +msgid "the OPL2 chip but with drums mode enabled." +msgstr "" + +#: src/engine/sysDef.cpp:1429 +msgid "Yamaha YMF262 (OPL3) with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1430 +msgid "the OPL3 chip but with drums mode enabled." +msgstr "" + +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1631 +msgid "Kick/FM 16" +msgstr "" + +#: src/engine/sysDef.cpp:1441 +msgid "Yamaha YM2610 (OPNB)" +msgstr "" + +#: src/engine/sysDef.cpp:1442 +msgid "" +"this chip was used in SNK's Neo Geo arcade board and video game console.\n" +"it's like OPNA but the rhythm channels are ADPCM channels and two FM " +"channels went missing." +msgstr "" + +#: src/engine/sysDef.cpp:1453 +msgid "Yamaha YM2610 (OPNB) Extended Channel 2" +msgstr "" + +#: src/engine/sysDef.cpp:1454 +msgid "" +"this chip was used in SNK's Neo Geo arcade board and video game console.\n" +"it's like OPNA but the rhythm channels are ADPCM channels and two FM " +"channels went missing.\n" +"this one is in Extended Channel mode, which turns the second FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:1466 +msgid "Yamaha YM2610 (OPNB) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1467 +msgid "" +"this chip was used in SNK's Neo Geo arcade board and video game console.\n" +"it's like OPNA but the rhythm channels are ADPCM channels and two FM " +"channels went missing.\n" +"this one includes CSM mode control for special effects on Channel 2." +msgstr "" + +#: src/engine/sysDef.cpp:1479 +msgid "Yamaha YM2413 (OPLL) with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1480 +msgid "the OPLL chips but with drums mode turned on." +msgstr "" + +#: src/engine/sysDef.cpp:1491 +msgid "3xxx: Load LFSR (0 to FFF)" +msgstr "" + +#: src/engine/sysDef.cpp:1497 +msgid "Atari Lynx" +msgstr "" + +#: src/engine/sysDef.cpp:1498 +msgid "" +"a portable console made by Atari. it has all of Atari's trademark waveforms." +msgstr "" + +#: src/engine/sysDef.cpp:1509 +msgid "10xx: Set echo feedback level (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1510 +msgid "11xx: Set channel echo level (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1511 +msgid "12xx: Toggle QSound algorithm (0: disabled; 1: enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:1513 +msgid "3xxx: Set echo delay buffer length (000 to AA5)" +msgstr "" + +#: src/engine/sysDef.cpp:1519 +msgid "Capcom QSound" +msgstr "" + +#: src/engine/sysDef.cpp:1520 +msgid "" +"used in some of Capcom's arcade boards. surround-like sampled sound with " +"echo." +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +#: src/engine/sysDef.cpp:2056 +msgid "PCM 1" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +#: src/engine/sysDef.cpp:2056 +msgid "PCM 2" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 3" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 4" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 5" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 6" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 7" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 8" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 9" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 10" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 11" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 12" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 13" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 14" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 15" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 16" +msgstr "" + +#: src/engine/sysDef.cpp:1521 +msgid "ADPCM 1" +msgstr "" + +#: src/engine/sysDef.cpp:1521 +msgid "ADPCM 2" +msgstr "" + +#: src/engine/sysDef.cpp:1521 +msgid "ADPCM 3" +msgstr "" + +#: src/engine/sysDef.cpp:1530 src/gui/settings.cpp:4048 +msgid "VERA" +msgstr "" + +#: src/engine/sysDef.cpp:1531 +msgid "the chip used in a computer design created by The 8-Bit Guy." +msgstr "" + +#: src/engine/sysDef.cpp:1538 +msgid "20xx: Set waveform" +msgstr "" + +#: src/engine/sysDef.cpp:1539 +msgid "22xx: Set duty cycle (0 to 3F)" +msgstr "" + +#: src/engine/sysDef.cpp:1544 +msgid "Yamaha YM2610B (OPNB2) Extended Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:1545 +msgid "" +"so Taito asked Yamaha if they could get the two missing FM channels back, " +"and Yamaha gladly provided them with this chip.\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:1557 +msgid "Yamaha YM2610B (OPNB2) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1558 +msgid "" +"so Taito asked Yamaha if they could get the two missing FM channels back, " +"and Yamaha gladly provided them with this chip.\n" +"CSM blah blah" +msgstr "" + +#: src/engine/sysDef.cpp:1570 +msgid "SegaPCM (compatible 5-channel mode)" +msgstr "" + +#: src/engine/sysDef.cpp:1571 +msgid "" +"this is the same thing as SegaPCM, but only exposes 5 of the channels for " +"compatibility with DefleMask." +msgstr "" + +#: src/engine/sysDef.cpp:1582 +msgid "Seta/Allumer X1-010" +msgstr "" + +#: src/engine/sysDef.cpp:1583 +msgid "" +"a sound chip used in several Seta/Allumer-manufactured arcade boards with " +"too many channels of wavetable sound, which also are capable of sampled " +"sound." +msgstr "" + +#: src/engine/sysDef.cpp:1591 +msgid "11xx: Set envelope shape" +msgstr "" + +#: src/engine/sysDef.cpp:1592 +msgid "12xx: Set sample bank slot (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1596 +msgid "20xx: Set PCM frequency (1 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1597 +msgid "" +"22xx: Set envelope mode (bit 0: enable; bit 1: one-shot; bit 2: split shape " +"to L/R; bit 3/5: H.invert right/left; bit 4/6: V.invert right/left)" +msgstr "" + +#: src/engine/sysDef.cpp:1598 +msgid "23xx: Set envelope period" +msgstr "" + +#: src/engine/sysDef.cpp:1606 +msgid "Konami Bubble System WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1607 +msgid "" +"this is the wavetable part of the Bubble System, which also had two " +"AY-3-8910s." +msgstr "" + +#: src/engine/sysDef.cpp:1619 +msgid "Yamaha YMF278B (OPL4)" +msgstr "" + +#: src/engine/sysDef.cpp:1620 +msgid "like OPL3, but this time it also has a 24-channel version of MultiPCM." +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 17" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 18" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 19" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 20" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 21" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 22" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 23" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 24" +msgstr "" + +#: src/engine/sysDef.cpp:1629 +msgid "Yamaha YMF278B (OPL4) with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1630 +msgid "the OPL4 but with drums mode turned on." +msgstr "" + +#: src/engine/sysDef.cpp:1638 +msgid "11xx: Set filter mode (00 to 03)" +msgstr "" + +#: src/engine/sysDef.cpp:1639 +msgid "14xx: Set filter coefficient K1 low byte (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1640 +msgid "15xx: Set filter coefficient K1 high byte (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1641 +msgid "16xx: Set filter coefficient K2 low byte (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1642 +msgid "17xx: Set filter coefficient K2 high byte (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1643 +msgid "18xx: Set filter coefficient K1 slide up (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1644 +msgid "19xx: Set filter coefficient K1 slide down (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1645 +msgid "1Axx: Set filter coefficient K2 slide up (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1646 +msgid "1Bxx: Set filter coefficient K2 slide down (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1647 +msgid "22xx: Set envelope left volume ramp (signed) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1648 +msgid "23xx: Set envelope right volume ramp (signed) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1649 +msgid "24xx: Set envelope filter coefficient k1 ramp (signed) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1650 +msgid "" +"25xx: Set envelope filter coefficient k1 ramp (signed, slower) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1651 +msgid "26xx: Set envelope filter coefficient k2 ramp (signed) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1652 +msgid "" +"27xx: Set envelope filter coefficient k2 ramp (signed, slower) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1656 +msgid "120x: Set pause (bit 0)" +msgstr "" + +#: src/engine/sysDef.cpp:1658 +msgid "2xxx: Set envelope count (000 to 1FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1659 +msgid "3xxx: Set filter coefficient K1 (000 to FFF)" +msgstr "" + +#: src/engine/sysDef.cpp:1660 +msgid "4xxx: Set filter coefficient K2 (000 to FFF)" +msgstr "" + +#: src/engine/sysDef.cpp:1667 +msgid "Ensoniq ES5506" +msgstr "" + +#: src/engine/sysDef.cpp:1668 +msgid "" +"a sample chip made by Ensoniq, which is the basis for the GF1 chip found in " +"Gravis' Ultrasound cards." +msgstr "" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 29" +msgstr "" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 30" +msgstr "" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 31" +msgstr "" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 32" +msgstr "" + +#: src/engine/sysDef.cpp:1679 +msgid "Yamaha Y8950" +msgstr "" + +#: src/engine/sysDef.cpp:1680 +msgid "like OPL but with an ADPCM channel." +msgstr "" + +#: src/engine/sysDef.cpp:1691 +msgid "Yamaha Y8950 with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1692 +msgid "the Y8950 chip, in drums mode." +msgstr "" + +#: src/engine/sysDef.cpp:1703 +msgid "Konami SCC+" +msgstr "" + +#: src/engine/sysDef.cpp:1704 +msgid "" +"this is a variant of Konami's SCC chip with the last channel's wavetable " +"being independent." +msgstr "" + +#: src/engine/sysDef.cpp:1715 +msgid "12xx: Set pulse width (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:1716 +msgid "13xx: Set resonance (0 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1717 +msgid "" +"14xx: Set filter mode (bit 0: ring mod; bit 1: low pass; bit 2: high pass; " +"bit 3: band pass)" +msgstr "" + +#: src/engine/sysDef.cpp:1718 +msgid "15xx: Set frequency sweep period low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1719 +msgid "16xx: Set frequency sweep period high byte" +msgstr "" + +#: src/engine/sysDef.cpp:1720 +msgid "17xx: Set volume sweep period low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1721 +msgid "18xx: Set volume sweep period high byte" +msgstr "" + +#: src/engine/sysDef.cpp:1722 +msgid "19xx: Set cutoff sweep period low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1723 +msgid "1Axx: Set cutoff sweep period high byte" +msgstr "" + +#: src/engine/sysDef.cpp:1724 +msgid "1Bxx: Set frequency sweep boundary" +msgstr "" + +#: src/engine/sysDef.cpp:1725 +msgid "1Cxx: Set volume sweep boundary" +msgstr "" + +#: src/engine/sysDef.cpp:1726 +msgid "1Dxx: Set cutoff sweep boundary" +msgstr "" + +#: src/engine/sysDef.cpp:1727 +msgid "1Exx: Set phase reset period low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1728 +msgid "1Fxx: Set phase reset period high byte" +msgstr "" + +#: src/engine/sysDef.cpp:1729 +msgid "20xx: Toggle frequency sweep (bit 0-6: speed; bit 7: direction is up)" +msgstr "" + +#: src/engine/sysDef.cpp:1730 +msgid "" +"21xx: Toggle volume sweep (bit 0-4: speed; bit 5: direction is up; bit 6: " +"loop; bit 7: alternate)" +msgstr "" + +#: src/engine/sysDef.cpp:1731 +msgid "22xx: Toggle cutoff sweep (bit 0-6: speed; bit 7: direction is up)" +msgstr "" + +#: src/engine/sysDef.cpp:1739 +msgid "tildearrow Sound Unit" +msgstr "" + +#: src/engine/sysDef.cpp:1740 +msgid "" +"tildearrow's fantasy sound chip. put SID, AY and VERA in a blender, and you " +"get this!" +msgstr "" + +#: src/engine/sysDef.cpp:1751 +msgid "OKI MSM6295" +msgstr "" + +#: src/engine/sysDef.cpp:1752 +msgid "an ADPCM sound chip manufactured by OKI and used in many arcade boards." +msgstr "" + +#: src/engine/sysDef.cpp:1759 +msgid "20xx: Set chip output rate (0: clock/132; 1: clock/165)" +msgstr "" + +#: src/engine/sysDef.cpp:1764 +msgid "OKI MSM6258" +msgstr "" + +#: src/engine/sysDef.cpp:1765 +msgid "an ADPCM sound chip manufactured by OKI and used in the Sharp X68000." +msgstr "" + +#: src/engine/sysDef.cpp:1766 src/engine/sysDef.cpp:1887 +#: src/gui/editControls.cpp:437 src/gui/settings.cpp:4223 +#: src/gui/guiConst.cpp:1397 src/gui/insEdit.cpp:2628 src/gui/insEdit.cpp:2666 +msgid "Sample" +msgstr "" + +#: src/engine/sysDef.cpp:1772 +msgid "20xx: Set frequency divider (0-2)" +msgstr "" + +#: src/engine/sysDef.cpp:1773 +msgid "21xx: Select clock rate (0: full; 1: half)" +msgstr "" + +#: src/engine/sysDef.cpp:1778 +msgid "Yamaha YMZ280B (PCMD8)" +msgstr "" + +#: src/engine/sysDef.cpp:1779 +msgid "" +"used in some arcade boards. Can play back either 4-bit ADPCM, 8-bit PCM or " +"16-bit PCM." +msgstr "" + +#: src/engine/sysDef.cpp:1797 src/gui/settings.cpp:4054 +msgid "Namco WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1798 +msgid "" +"a wavetable sound chip used in Pac-Man, among other early Namco arcade games." +msgstr "" + +#: src/engine/sysDef.cpp:1808 +msgid "Namco C15 WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1809 +msgid "" +"successor of the original Namco WSG chip, used in later Namco arcade games." +msgstr "" + +#: src/engine/sysDef.cpp:1819 +msgid "Namco C30 WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1820 +msgid "like Namco C15 but with stereo sound." +msgstr "" + +#: src/engine/sysDef.cpp:1830 +msgid "OKI MSM5232" +msgstr "" + +#: src/engine/sysDef.cpp:1831 +msgid "" +"a square wave additive synthesis chip made by OKI. used in some arcade " +"machines and instruments." +msgstr "" + +#: src/engine/sysDef.cpp:1839 +msgid "10xy: Set group control (x: sustain; y: part toggle bitmask)" +msgstr "" + +#: src/engine/sysDef.cpp:1840 src/engine/sysDef.cpp:1998 +msgid "11xx: Set noise mode" +msgstr "" + +#: src/engine/sysDef.cpp:1841 +msgid "12xx: Set group attack (0 to 5)" +msgstr "" + +#: src/engine/sysDef.cpp:1842 +msgid "13xx: Set group decay (0 to 11)" +msgstr "" + +#: src/engine/sysDef.cpp:1847 +msgid "Yamaha YM2612 (OPN2) with DualPCM" +msgstr "" + +#: src/engine/sysDef.cpp:1848 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this system uses software mixing to provide two sample channels." +msgstr "" + +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +msgid "FM 6/PCM 1" +msgstr "" + +#: src/engine/sysDef.cpp:1859 +msgid "Yamaha YM2612 (OPN2) Extended Channel 3 with DualPCM and CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1860 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this system uses software mixing to provide two sample channels.\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:1872 src/gui/settings.cpp:4024 +msgid "T6W28" +msgstr "" + +#: src/engine/sysDef.cpp:1873 +msgid "" +"an SN76489 derivative used in Neo Geo Pocket, has independent stereo volume " +"and noise channel frequency." +msgstr "" + +#: src/engine/sysDef.cpp:1880 +msgid "20xx: Set noise length (0: short, 1: long)" +msgstr "" + +#: src/engine/sysDef.cpp:1885 +msgid "Generic PCM DAC" +msgstr "" + +#: src/engine/sysDef.cpp:1886 +msgid "as generic sample playback as it gets." +msgstr "" + +#: src/engine/sysDef.cpp:1898 +msgid "Konami K007232" +msgstr "" + +#: src/engine/sysDef.cpp:1899 +msgid "this PCM chip was widely used at Konami arcade boards in 1986-1990." +msgstr "" + +#: src/engine/sysDef.cpp:1908 +msgid "Irem GA20" +msgstr "" + +#: src/engine/sysDef.cpp:1909 +msgid "" +"yet another PCM chip from Irem. like Amiga, but less pitch resolution and no " +"sample loop." +msgstr "" + +#: src/engine/sysDef.cpp:1918 +msgid "Sharp SM8521" +msgstr "" + +#: src/engine/sysDef.cpp:1919 +msgid "a SoC with wavetable sound hardware." +msgstr "" + +#: src/engine/sysDef.cpp:1929 +msgid "Casio PV-1000" +msgstr "" + +#: src/engine/sysDef.cpp:1930 +msgid "" +"a game console with 3 channels of square wave. it's what happens after " +"fusing TIA and VIC together." +msgstr "" + +#: src/engine/sysDef.cpp:1937 +msgid "10xx: Set ring modulation (0: disable, 1: enable)" +msgstr "" + +#: src/engine/sysDef.cpp:1942 +msgid "ZX Spectrum Beeper (QuadTone Engine)" +msgstr "" + +#: src/engine/sysDef.cpp:1943 +msgid "" +"another ZX Spectrum beeper system with full PWM pulses and 3-level volume " +"per channel. it also has a pitchable overlay sample channel." +msgstr "" + +#: src/engine/sysDef.cpp:1955 +msgid "Konami K053260" +msgstr "" + +#: src/engine/sysDef.cpp:1956 +msgid "this PCM chip was widely used at Konami arcade boards in 1990-1992." +msgstr "" + +#: src/engine/sysDef.cpp:1968 +msgid "MOS Technology TED" +msgstr "" + +#: src/engine/sysDef.cpp:1969 +msgid "" +"two square waves (one may be turned into noise). used in the Commodore " +"Plus/4, 16 and 116." +msgstr "" + +#: src/engine/sysDef.cpp:1978 +msgid "Namco C140" +msgstr "" + +#: src/engine/sysDef.cpp:1979 +msgid "Namco's first PCM chip from 1987. it's pretty good for being so." +msgstr "" + +#: src/engine/sysDef.cpp:1989 +msgid "Namco C219" +msgstr "" + +#: src/engine/sysDef.cpp:1990 +msgid "" +"Namco's PCM chip used in their NA-1/2 hardware.\n" +"very similar to C140, but has noise generator." +msgstr "" + +#: src/engine/sysDef.cpp:1999 +msgid "12xy: Set invert mode (x: surround; y: invert)" +msgstr "" + +#: src/engine/sysDef.cpp:2004 +msgid "ESS ES1xxx series (ESFM)" +msgstr "" + +#: src/engine/sysDef.cpp:2005 +msgid "" +"a unique FM synth featured in PC sound cards.\n" +"based on the OPL3 design, but with lots of its features extended." +msgstr "" + +#: src/engine/sysDef.cpp:2006 +msgid "FM 11" +msgstr "" + +#: src/engine/sysDef.cpp:2012 +msgid "2Exx: Toggle hard envelope reset on new notes" +msgstr "" + +#: src/engine/sysDef.cpp:2018 +msgid "PowerNoise" +msgstr "" + +#: src/engine/sysDef.cpp:2019 +msgid "" +"a fantasy sound chip designed by jvsTSX and The Beesh-Spweesh!\n" +"used in the Hexheld fantasy console." +msgstr "" + +#: src/engine/sysDef.cpp:2020 +msgid "Noise 1" +msgstr "" + +#: src/engine/sysDef.cpp:2020 +msgid "Noise 2" +msgstr "" + +#: src/engine/sysDef.cpp:2020 +msgid "Noise 3" +msgstr "" + +#: src/engine/sysDef.cpp:2020 +msgid "Slope" +msgstr "" + +#: src/engine/sysDef.cpp:2026 +msgid "" +"20xx: Load low byte of noise channel LFSR (00 to FF) or slope channel " +"accumulator (00 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:2027 +msgid "21xx: Load high byte of noise channel LFSR (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:2028 +msgid "22xx: Write to I/O port A" +msgstr "" + +#: src/engine/sysDef.cpp:2029 +msgid "23xx: Write to I/O port B" +msgstr "" + +#: src/engine/sysDef.cpp:2035 src/gui/settings.cpp:4079 +msgid "Dave" +msgstr "" + +#: src/engine/sysDef.cpp:2036 +msgid "" +"this chip was featured in the Enterprise 128 computer. it is similar to " +"POKEY, but with stereo output." +msgstr "" + +#: src/engine/sysDef.cpp:2037 +msgid "DAC Left" +msgstr "" + +#: src/engine/sysDef.cpp:2037 +msgid "DAC Right" +msgstr "" + +#: src/engine/sysDef.cpp:2043 +msgid "10xx: Set waveform (0 to 4; 0 to 3 on noise)" +msgstr "" + +#: src/engine/sysDef.cpp:2044 +msgid "11xx: Set noise frequency source (0: fixed; 1-3: channels 1 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:2045 +msgid "12xx: Toggle high-pass with next channel" +msgstr "" + +#: src/engine/sysDef.cpp:2046 +msgid "13xx: Toggle ring modulation with channel+2" +msgstr "" + +#: src/engine/sysDef.cpp:2047 +msgid "14xx: Toggle swap counters (noise only)" +msgstr "" + +#: src/engine/sysDef.cpp:2048 +msgid "15xx: Toggle low pass (noise only)" +msgstr "" + +#: src/engine/sysDef.cpp:2049 +msgid "16xx: Set clock divider (0: /2; 1: /3)" +msgstr "" + +#: src/engine/sysDef.cpp:2054 +msgid "Game Boy Advance DMA Sound" +msgstr "" + +#: src/engine/sysDef.cpp:2055 +msgid "" +"additional PCM FIFO channels in Game Boy Advance driven directly by its DMA " +"hardware." +msgstr "" + +#: src/engine/sysDef.cpp:2068 +msgid "Game Boy Advance MinMod" +msgstr "" + +#: src/engine/sysDef.cpp:2069 +msgid "" +"additional PCM FIFO channels in Game Boy Advance driven by software mixing " +"to provide up to sixteen sample channels" +msgstr "" + +#: src/engine/sysDef.cpp:2078 +msgid "11xy: Set echo channel (x: left/right source; y: delay (0 disables))" +msgstr "" + +#: src/engine/sysDef.cpp:2079 +msgid "12xy: Toggle invert (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:2084 src/gui/settings.cpp:4080 +msgid "Nintendo DS" +msgstr "" + +#: src/engine/sysDef.cpp:2085 +msgid "a handheld video game console with two screens. it uses a stylus." +msgstr "" + +#: src/engine/sysDef.cpp:2093 +msgid "1Fxx: Set global volume (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:2098 +msgid "5E01" +msgstr "" + +#: src/engine/sysDef.cpp:2099 +msgid "" +"a fantasy sound chip created by Euly. it is based on Ricoh 2A03, adding a " +"couple features such as 32 noise pitches, an extra duty cycle, and three " +"waveforms (besides triangle)." +msgstr "" + +#: src/engine/sysDef.cpp:2107 +msgid "" +"12xx: Set duty cycle/noise mode/waveform (pulse/wave: 0 to 3; noise: 0 or 1)" +msgstr "" + +#: src/engine/sysDef.cpp:2120 src/gui/settings.cpp:4083 +msgid "Bifurcator" +msgstr "" + +#: src/engine/sysDef.cpp:2121 +msgid "a fantasy sound chip using logistic map iterations to generate sound." +msgstr "" + +#: src/engine/sysDef.cpp:2128 +msgid "10xx: Load low byte of channel sample state" +msgstr "" + +#: src/engine/sysDef.cpp:2129 +msgid "11xx: Load high byte of channel sample state" +msgstr "" + +#: src/engine/sysDef.cpp:2130 +msgid "12xx: Set low byte of channel parameter" +msgstr "" + +#: src/engine/sysDef.cpp:2131 +msgid "13xx: Set high byte of channel parameter" +msgstr "" + +#: src/engine/sysDef.cpp:2136 src/gui/settings.cpp:4084 +msgid "SID2" +msgstr "" + +#: src/engine/sysDef.cpp:2137 +msgid "" +"a fantasy sound chip created by LTVA. it is similar to the SID chip, but " +"with many of its problems fixed." +msgstr "" + +#: src/engine/sysDef.cpp:2148 +msgid "Dummy System" +msgstr "" + +#: src/engine/sysDef.cpp:2149 +msgid "this is a system designed for testing purposes." +msgstr "" + +#: src/engine/engine.cpp:51 +msgid "00xy: Arpeggio" +msgstr "00xy Arpeggio" + +#: src/engine/engine.cpp:53 +msgid "01xx: Pitch slide up" +msgstr "01xx Tónovy šmyk nahor" + +#: src/engine/engine.cpp:55 +msgid "02xx: Pitch slide down" +msgstr "02xx Tónovy šmyk nadol" + +#: src/engine/engine.cpp:57 +msgid "03xx: Portamento" +msgstr "03xx Portamento" + +#: src/engine/engine.cpp:59 +msgid "04xy: Vibrato (x: speed; y: depth)" +msgstr "04xy Vibráto (x: rýchlosť; y: hĺbka)" + +#: src/engine/engine.cpp:61 +msgid "05xy: Volume slide + vibrato (compatibility only!)" +msgstr "05xy: Hlasový šmyk + vibráto (iba kompatibilnosť!)" + +#: src/engine/engine.cpp:63 +msgid "06xy: Volume slide + portamento (compatibility only!)" +msgstr "05xy: Hlasový šmyk + portamento (iba kompatibilnosť!)" + +#: src/engine/engine.cpp:65 +msgid "07xy: Tremolo (x: speed; y: depth)" +msgstr "07xy: Tremolo (x: rýchlosť; y: hĺbka)" + +#: src/engine/engine.cpp:67 +msgid "08xy: Set panning (x: left; y: right)" +msgstr "08xy: Nastav stereo (x: ľavý kanál; y: pravý kanál)" + +#: src/engine/engine.cpp:69 +msgid "09xx: Set groove pattern (speed 1 if no grooves exist)" +msgstr "09xx: Nastav gróv obrazca (rýchlosť 1 ak gróv neexistuje)" + +#: src/engine/engine.cpp:71 +msgid "0Axy: Volume slide (0y: down; x0: up)" +msgstr "0Axy: Hlasový šmyk (0y: nadol; x0 nahor)" + +#: src/engine/engine.cpp:73 +msgid "0Bxx: Jump to pattern" +msgstr "0Bxx: Skoč na obrazec" + +#: src/engine/engine.cpp:75 +msgid "0Cxx: Retrigger" +msgstr "0Cxx: Zopakuj" + +#: src/engine/engine.cpp:77 +msgid "0Dxx: Jump to next pattern" +msgstr "0Dxx: Skoč na nasledovný obrazec" + +#: src/engine/engine.cpp:79 +msgid "0Fxx: Set speed (speed 2 if no grooves exist)" +msgstr "0Fxx: Nastav rýchlosť (rýchlosť 2 ak gróv neexistuje)" + +#: src/engine/engine.cpp:81 +msgid "80xx: Set panning (00: left; 80: center; FF: right)" +msgstr "80xx: Nastav stereo (00: ľavý kanál; 80 stred; FF: pravý kanál)" + +#: src/engine/engine.cpp:83 +msgid "81xx: Set panning (left channel)" +msgstr "81xx: Nastav stereo (ľavý kanál)" + +#: src/engine/engine.cpp:85 +msgid "82xx: Set panning (right channel)" +msgstr "82xx: Nastav stereo (pravý kanál)" + +#: src/engine/engine.cpp:87 +msgid "88xy: Set panning (rear channels; x: left; y: right)" +msgstr "88xy: Nastav stereo zadných kanálov (x: ľavý; y: pravý)" + +#: src/engine/engine.cpp:90 +msgid "89xx: Set panning (rear left channel)" +msgstr "89xx: Nastav stereo zadného ľavého kanálu" + +#: src/engine/engine.cpp:93 +msgid "8Axx: Set panning (rear right channel)" +msgstr "8Axx: Nastav stereo zadného pravého kanálu" + +#: src/engine/engine.cpp:96 +msgid "Cxxx: Set tick rate (hz)" +msgstr "Cxxx: Nastav intenzitu čipu (hz)" + +#: src/engine/engine.cpp:98 +msgid "E0xx: Set arp speed" +msgstr "E0xx: Nastav rýchlosť arpeggia" + +#: src/engine/engine.cpp:100 +msgid "E1xy: Note slide up (x: speed; y: semitones)" +msgstr "E1xy: Notovy šmyk nahor (x: rýchlosť; y: poltóny)" + +#: src/engine/engine.cpp:102 +msgid "E2xy: Note slide down (x: speed; y: semitones)" +msgstr "E2xy: Notovy šmyk nadol (x: rýchlosť; y: poltóny )" + +#: src/engine/engine.cpp:104 +msgid "E3xx: Set vibrato shape (0: up/down; 1: up only; 2: down only)" +msgstr "E3xx: Nastav tvar vibráta (0: hore/dolu; 1: iba nahor; 2: iba nadol)" + +#: src/engine/engine.cpp:106 +msgid "E4xx: Set vibrato range" +msgstr "E4xx: Nastav šírku vibráta" + +#: src/engine/engine.cpp:108 +msgid "E5xx: Set pitch (80: center)" +msgstr "E5xx: Nastav Tón (80: stred, pravá nota)" + +#: src/engine/engine.cpp:110 +msgid "E6xy: Quick legato (x: time (0-7 up; 8-F down); y: semitones)" +msgstr "E6xy: Rýchly legato (x: čas (0-7 nahor; 8-F nadol); y: poltóny)" + +#: src/engine/engine.cpp:112 +msgid "E7xx: Macro release" +msgstr "E7xx: Makro uvoľnenie" + +#: src/engine/engine.cpp:114 +msgid "E8xy: Quick legato up (x: time; y: semitones)" +msgstr "E8xy: Rýchly legato nahor (x: čas; y: poltóny)" + +#: src/engine/engine.cpp:116 +msgid "E9xy: Quick legato down (x: time; y: semitones)" +msgstr "E9xy: Rýchly legato nadol (x: čas; y: poltóny)" + +#: src/engine/engine.cpp:118 +msgid "EAxx: Legato" +msgstr "EAxx: Legato" + +#: src/engine/engine.cpp:120 +msgid "EBxx: Set LEGACY sample mode bank" +msgstr "EBxx: Nastav STARÚ zvukovú banku" + +#: src/engine/engine.cpp:122 +msgid "ECxx: Note cut" +msgstr "ECxx: Prestaň hrať notu" + +#: src/engine/engine.cpp:124 +msgid "EDxx: Note delay" +msgstr "EDxx: Odohrať notu neskôr" + +#: src/engine/engine.cpp:126 +msgid "EExx: Send external command" +msgstr "EExx: Odošli vonkajšiu komandu" + +#: src/engine/engine.cpp:128 +msgid "F0xx: Set tick rate (bpm)" +msgstr "F0xx: Nastav rýchlosť piesne (bpm)" + +#: src/engine/engine.cpp:130 +msgid "F1xx: Single tick note slide up" +msgstr "F1xx: jedno-tikovy notový šmyk nahor" + +#: src/engine/engine.cpp:132 +msgid "F2xx: Single tick note slide down" +msgstr "F2xx: jedno-tikovy notový šmyk nadol" + +#: src/engine/engine.cpp:134 +msgid "F3xx: Fine volume slide up" +msgstr "F3xx: Jemný hlasový šmyk nahor" + +#: src/engine/engine.cpp:136 +msgid "F4xx: Fine volume slide down" +msgstr "F4xx: Jemný hlasový šmyk nadol" + +#: src/engine/engine.cpp:138 +msgid "F5xx: Disable macro (see manual)" +msgstr "F5xx: Vypni makro (pozri si príručku)" + +#: src/engine/engine.cpp:140 +msgid "F6xx: Enable macro (see manual)" +msgstr "F6xx: Zapni makro (pozri si príručku)" + +#: src/engine/engine.cpp:142 +msgid "F7xx: Restart macro (see manual)" +msgstr "F6xx: Reštartuj makro (pozri si príručku)" + +#: src/engine/engine.cpp:144 +msgid "F8xx: Single tick volume slide up" +msgstr "F8xx: Jedno-tikový hlasový šmyk nahor" + +#: src/engine/engine.cpp:146 +msgid "F9xx: Single tick volume slide down" +msgstr "F8xx: Jedno-tikový hlasový šmyk nadol" + +#: src/engine/engine.cpp:148 +msgid "FAxx: Fast volume slide (0y: down; x0: up)" +msgstr "FAxx: Fast volume slide (0y: nadol; x0: nahor)" + +#: src/engine/engine.cpp:150 +msgid "FCxx: Note release" +msgstr "FCxx: Uvoľnenie noty" + +#: src/engine/engine.cpp:152 +msgid "FDxx: Set virtual tempo numerator" +msgstr "FDxx: Nastav čitateľa virtualného tempa" + +#: src/engine/engine.cpp:154 +msgid "FExx: Set virtual tempo denominator" +msgstr "FExx: Nastav činiteľa virtualného tempa" + +#: src/engine/engine.cpp:156 +msgid "FFxx: Stop song" +msgstr "FFxx: Zastav pieseň" + +#: src/engine/engine.cpp:160 +msgid "9xxx: Set sample offset*256" +msgstr "9xxx: Posuň začiatok snímky*256" + +#: src/engine/engine.cpp:164 +msgid "90xx: Set sample offset (first byte)" +msgstr "90xx: Posuň začiatok snímky (prví bajt)" + +#: src/engine/engine.cpp:166 +msgid "91xx: Set sample offset (second byte, ×256)" +msgstr "91xx: Posuň začiatok snímky (druhý bajt, x256)" + +#: src/engine/engine.cpp:168 +msgid "92xx: Set sample offset (third byte, ×65536)" +msgstr "92xx: Posuň začiatok snímky (tretí bajt, x65536)" + +#: src/engine/engine.cpp:187 src/gui/settings.cpp:4127 +msgid "Invalid effect" +msgstr "Effekt neexistuje" + +#: src/engine/engine.cpp:354 src/gui/gui.cpp:2259 src/gui/gui.cpp:2422 +#, c-format +msgid "on seek: %s" +msgstr "" + +#: src/engine/engine.cpp:361 src/gui/gui.cpp:2266 src/gui/gui.cpp:2429 +#, c-format +msgid "on pre tell: %s" +msgstr "" + +#: src/engine/engine.cpp:368 src/engine/engine.cpp:2768 +#: src/gui/settings.cpp:5811 src/gui/gui.cpp:2273 src/gui/gui.cpp:2436 +msgid "file is empty" +msgstr "fajl je prazdny" + +#: src/engine/engine.cpp:371 src/gui/gui.cpp:2276 src/gui/gui.cpp:2439 +#, c-format +msgid "on tell: %s" +msgstr "" + +#: src/engine/engine.cpp:378 +#, c-format +msgid "ROM size mismatch, expected: %d bytes, was: %d" +msgstr "" + +#: src/engine/engine.cpp:383 src/gui/settings.cpp:5820 src/gui/gui.cpp:2283 +#: src/gui/gui.cpp:2446 +#, c-format +msgid "on get size: %s" +msgstr "" + +#: src/engine/engine.cpp:390 src/gui/settings.cpp:5827 src/gui/gui.cpp:2290 +#: src/gui/gui.cpp:2453 +#, c-format +msgid "on read: %s" +msgstr "" + +#: src/engine/engine.cpp:1076 src/engine/engine.cpp:1181 +#: src/engine/engine.cpp:1290 +msgid "invalid index" +msgstr "" + +#: src/engine/engine.cpp:1080 src/engine/engine.cpp:1135 +#: src/engine/engine.cpp:1189 +#, c-format +msgid "max number of total channels is %d" +msgstr "" + +#: src/engine/engine.cpp:1131 src/engine/engine.cpp:1185 +#, c-format +msgid "max number of systems is %d" +msgstr "Najviac môžete mať %d čipov" + +#: src/engine/engine.cpp:1286 +msgid "cannot remove the last one" +msgstr "Nemožno vymazať posledný čip" + +#: src/engine/engine.cpp:1460 +msgid "source and destination are equal" +msgstr "" + +#: src/engine/engine.cpp:1464 +msgid "invalid source index" +msgstr "" + +#: src/engine/engine.cpp:1468 +msgid "invalid destination index" +msgstr "" + +#: src/engine/engine.cpp:2636 +#, c-format +msgid "Instrument %d" +msgstr "Instrument %d" + +#: src/engine/engine.cpp:2710 src/engine/engine.cpp:2727 +#: src/gui/doAction.cpp:825 src/gui/doAction.cpp:843 src/gui/doAction.cpp:1634 +#: src/gui/gui.cpp:6159 src/gui/insEdit.cpp:6860 +msgid "too many wavetables!" +msgstr "Priveľa wavetablou!" + +#: src/engine/engine.cpp:2752 +#, c-format +msgid "could not seek to end: %s" +msgstr "" + +#: src/engine/engine.cpp:2758 +#, c-format +msgid "could not determine file size: %s" +msgstr "" + +#: src/engine/engine.cpp:2763 +msgid "file size is invalid!" +msgstr "Nesprávna veľkosť fajla!" + +#: src/engine/engine.cpp:2773 +#, c-format +msgid "could not seek to beginning: %s" +msgstr "" + +#: src/engine/engine.cpp:2780 +#, c-format +msgid "could not read entire file: %s" +msgstr "" + +#: src/engine/engine.cpp:2806 +msgid "invalid wavetable header/data!" +msgstr "Nespravny záhlavie/data wavetabla!" + +#: src/engine/engine.cpp:2877 +msgid "premature end of file" +msgstr "" + +#: src/engine/engine.cpp:2904 src/engine/engine.cpp:2926 +#: src/gui/doAction.cpp:909 src/gui/doAction.cpp:921 +msgid "too many samples!" +msgstr "Priveľa snímkou!" + +#: src/engine/engine.cpp:2911 +#, c-format +msgid "Sample %d" +msgstr "Snímka %d" + +#: src/engine/engine.cpp:3056 +#, c-format +msgid "no free patterns in channel %d!" +msgstr "nieto viacej slobodných obrazcob na kanále %d!" + +#: src/gui/mixer.cpp:28 src/gui/insEdit.cpp:484 +msgid "left" +msgstr "" + +#: src/gui/mixer.cpp:29 src/gui/insEdit.cpp:483 +msgid "right" +msgstr "" + +#: src/gui/mixer.cpp:128 +msgid "input" +msgstr "" + +#: src/gui/mixer.cpp:168 +msgid "output" +msgstr "" + +#: src/gui/mixer.cpp:226 src/gui/mixer.cpp:228 src/gui/editControls.cpp:454 +#: src/gui/guiConst.cpp:593 +msgid "Mixer" +msgstr "" + +#: src/gui/mixer.cpp:229 +msgid "Master Volume" +msgstr "" + +#: src/gui/mixer.cpp:250 src/gui/exportOptions.cpp:90 +#: src/gui/userPresets.cpp:393 src/gui/userPresets.cpp:405 +#: src/gui/settings.cpp:1080 src/gui/settings.cpp:1094 +#: src/gui/waveEdit.cpp:1096 src/gui/sampleEdit.cpp:1128 +#: src/gui/insEdit.cpp:519 +msgid "Invert" +msgstr "" + +#: src/gui/mixer.cpp:268 src/gui/chanOsc.cpp:37 src/gui/userPresets.cpp:417 +#: src/gui/settings.cpp:263 src/gui/settings.cpp:1109 src/gui/settings.cpp:1492 +#: src/gui/settings.cpp:1504 src/gui/settings.cpp:3369 +#: src/gui/settings.cpp:4015 src/gui/findReplace.cpp:687 +#: src/gui/findReplace.cpp:943 src/gui/guiConst.cpp:228 +#: src/gui/sampleEdit.cpp:1003 src/gui/insEdit.cpp:5575 +#: src/gui/insEdit.cpp:5660 src/gui/insEdit.cpp:6920 src/gui/insEdit.cpp:6928 +#: src/gui/insEdit.cpp:6936 src/gui/insEdit.cpp:6946 src/gui/insEdit.cpp:6961 +#: src/gui/insEdit.cpp:6975 src/gui/insEdit.cpp:6987 src/gui/insEdit.cpp:7000 +#: src/gui/insEdit.cpp:7016 src/gui/insEdit.cpp:7022 src/gui/insEdit.cpp:7032 +#: src/gui/insEdit.cpp:7039 src/gui/insEdit.cpp:7045 src/gui/insEdit.cpp:7058 +#: src/gui/insEdit.cpp:7065 src/gui/insEdit.cpp:7072 src/gui/insEdit.cpp:7081 +#: src/gui/insEdit.cpp:7091 src/gui/insEdit.cpp:7099 src/gui/insEdit.cpp:7105 +#: src/gui/insEdit.cpp:7113 src/gui/insEdit.cpp:7120 src/gui/insEdit.cpp:7126 +#: src/gui/insEdit.cpp:7136 src/gui/insEdit.cpp:7148 src/gui/insEdit.cpp:7156 +#: src/gui/insEdit.cpp:7172 src/gui/insEdit.cpp:7177 src/gui/insEdit.cpp:7190 +#: src/gui/insEdit.cpp:7197 src/gui/insEdit.cpp:7208 src/gui/insEdit.cpp:7221 +#: src/gui/insEdit.cpp:7230 src/gui/insEdit.cpp:7237 src/gui/insEdit.cpp:7245 +#: src/gui/insEdit.cpp:7258 src/gui/insEdit.cpp:7263 src/gui/insEdit.cpp:7269 +#: src/gui/insEdit.cpp:7276 src/gui/insEdit.cpp:7284 src/gui/insEdit.cpp:7295 +#: src/gui/insEdit.cpp:7302 src/gui/insEdit.cpp:7310 src/gui/insEdit.cpp:7318 +#: src/gui/insEdit.cpp:7327 src/gui/insEdit.cpp:7335 src/gui/insEdit.cpp:7341 +#: src/gui/insEdit.cpp:7347 src/gui/insEdit.cpp:7353 src/gui/insEdit.cpp:7358 +#: src/gui/insEdit.cpp:7365 src/gui/insEdit.cpp:7372 src/gui/insEdit.cpp:7380 +#: src/gui/insEdit.cpp:7389 src/gui/insEdit.cpp:7397 src/gui/insEdit.cpp:7409 +#: src/gui/insEdit.cpp:7422 src/gui/insEdit.cpp:7433 src/gui/insEdit.cpp:7443 +#: src/gui/insEdit.cpp:7451 src/gui/insEdit.cpp:7461 src/gui/insEdit.cpp:7470 +msgid "Volume" +msgstr "" + +#: src/gui/mixer.cpp:279 src/gui/userPresets.cpp:427 src/gui/settings.cpp:1120 +#: src/gui/guiConst.cpp:229 src/gui/insEdit.cpp:6923 src/gui/insEdit.cpp:6930 +#: src/gui/insEdit.cpp:6941 src/gui/insEdit.cpp:6965 src/gui/insEdit.cpp:7067 +#: src/gui/insEdit.cpp:7108 src/gui/insEdit.cpp:7152 src/gui/insEdit.cpp:7192 +#: src/gui/insEdit.cpp:7212 src/gui/insEdit.cpp:7232 src/gui/insEdit.cpp:7240 +#: src/gui/insEdit.cpp:7253 src/gui/insEdit.cpp:7265 src/gui/insEdit.cpp:7271 +#: src/gui/insEdit.cpp:7287 src/gui/insEdit.cpp:7297 src/gui/insEdit.cpp:7360 +#: src/gui/insEdit.cpp:7392 src/gui/insEdit.cpp:7438 src/gui/insEdit.cpp:7446 +msgid "Panning" +msgstr "" + +#: src/gui/mixer.cpp:290 src/gui/userPresets.cpp:433 src/gui/settings.cpp:1127 +msgid "Front/Rear" +msgstr "" + +#: src/gui/mixer.cpp:299 src/gui/settings.cpp:4208 +msgid "Patchbay" +msgstr "" + +#: src/gui/mixer.cpp:305 +msgid "Automatic patchbay" +msgstr "" + +#: src/gui/mixer.cpp:310 +msgid "Display hidden ports" +msgstr "" + +#: src/gui/mixer.cpp:312 +msgid "Display internal" +msgstr "" + +#: src/gui/mixer.cpp:322 src/gui/mixer.cpp:383 src/gui/settings.cpp:1901 +#: src/gui/settings.cpp:2089 src/gui/songInfo.cpp:69 +msgid "System" +msgstr "" + +#: src/gui/mixer.cpp:354 +msgid "Sample Preview" +msgstr "" + +#: src/gui/mixer.cpp:367 src/gui/editControls.cpp:745 +#: src/gui/editControls.cpp:837 src/gui/editControls.cpp:953 +#: src/gui/editControls.cpp:1093 src/gui/settings.cpp:1490 +#: src/gui/guiConst.cpp:558 +msgid "Metronome" +msgstr "" + +#: src/gui/mixer.cpp:446 +msgid "disconnect all" +msgstr "" + +#: src/gui/editing.cpp:200 +#, c-format +msgid "no data in oldPatMap for channel %d!" +msgstr "" + +#: src/gui/editing.cpp:664 src/gui/editing.cpp:1203 +#, c-format +msgid "invalid clipboard data! failed at line %d char %d" +msgstr "" + +#: src/gui/editing.cpp:1565 src/gui/editing.cpp:1669 +msgid "can't collapse any further!" +msgstr "" + +#: src/gui/editing.cpp:1749 +msgid "can't expand any further!" +msgstr "" + +#: src/gui/editing.cpp:1836 src/gui/editing.cpp:1851 +#, c-format +msgid "copy: %s" +msgstr "" + +#: src/gui/memory.cpp:35 src/gui/settings.cpp:3696 src/gui/settings.cpp:4217 +#: src/gui/guiConst.cpp:613 +msgid "Memory Composition" +msgstr "" + +#: src/gui/memory.cpp:146 +#, c-format +msgid "bank %d" +msgstr "" + +#: src/gui/memory.cpp:175 src/gui/memory.cpp:176 +msgid "no chips with memory" +msgstr "" + +#: src/gui/intro.cpp:89 src/gui/gui.cpp:2345 src/gui/gui.cpp:3746 +#: src/gui/gui.cpp:5019 src/gui/gui.cpp:5041 src/gui/gui.cpp:5479 +#: src/gui/gui.cpp:5781 src/gui/gui.cpp:5791 +#, c-format +msgid "Error while loading file! (%s)" +msgstr "" + +#: src/gui/intro.cpp:122 +msgid "IntroMon X" +msgstr "" + +#: src/gui/intro.cpp:122 +msgid "Intro" +msgstr "" + +#: src/gui/intro.cpp:124 +msgid "Preview" +msgstr "" + +#: src/gui/intro.cpp:176 src/gui/intro.cpp:177 src/gui/intro.cpp:178 +msgid "SORRY NOTHING" +msgstr "" + +#: src/gui/intro.cpp:310 +msgid "hold to skip" +msgstr "" + +#: src/gui/dataList.cpp:76 +msgid "Bug!" +msgstr "" + +#: src/gui/dataList.cpp:79 src/gui/util.cpp:107 src/gui/util.cpp:109 +#: src/gui/settings.cpp:4220 src/gui/insEdit.cpp:5334 +msgid "Unknown" +msgstr "" + +#: src/gui/dataList.cpp:136 src/gui/dataList.cpp:260 +msgid "duplicate" +msgstr "" + +#: src/gui/dataList.cpp:139 src/gui/dataList.cpp:263 src/gui/dataList.cpp:388 +#: src/gui/dataList.cpp:731 src/gui/dataList.cpp:867 +msgid "replace..." +msgstr "" + +#: src/gui/dataList.cpp:142 src/gui/dataList.cpp:266 src/gui/gui.cpp:4232 +msgid "save" +msgstr "" + +#: src/gui/dataList.cpp:145 +msgid "save (.dmp)" +msgstr "" + +#: src/gui/dataList.cpp:148 src/gui/dataList.cpp:269 src/gui/dataList.cpp:617 +#: src/gui/dataList.cpp:994 src/gui/dataList.cpp:1040 +#: src/gui/editControls.cpp:50 src/gui/gui.cpp:2767 src/gui/gui.cpp:2776 +msgid "delete" +msgstr "" + +#: src/gui/dataList.cpp:243 +msgid "out of memory for this sample!" +msgstr "" + +#: src/gui/dataList.cpp:254 +msgid "make instrument" +msgstr "" + +#: src/gui/dataList.cpp:257 +msgid "make me a drum kit" +msgstr "" + +#: src/gui/dataList.cpp:290 src/gui/dataList.cpp:593 src/gui/gui.cpp:5914 +msgid "Instruments" +msgstr "" + +#: src/gui/dataList.cpp:312 src/gui/dataList.cpp:714 src/gui/dataList.cpp:846 +#: src/gui/subSongs.cpp:88 src/gui/insEdit.cpp:520 +msgid "Add" +msgstr "" + +#: src/gui/dataList.cpp:338 src/gui/dataList.cpp:721 src/gui/dataList.cpp:853 +#: src/gui/subSongs.cpp:108 +msgid "Duplicate" +msgstr "" + +#: src/gui/dataList.cpp:359 src/gui/dataList.cpp:728 src/gui/dataList.cpp:860 +#: src/gui/editControls.cpp:497 src/gui/waveEdit.cpp:435 +#: src/gui/waveEdit.cpp:467 src/gui/sampleEdit.cpp:122 +#: src/gui/sampleEdit.cpp:171 src/gui/insEdit.cpp:5239 src/gui/insEdit.cpp:5304 +msgid "Open" +msgstr "" + +#: src/gui/dataList.cpp:363 +msgid "replace instrument..." +msgstr "" + +#: src/gui/dataList.cpp:366 +msgid "load instrument from TX81Z" +msgstr "" + +#: src/gui/dataList.cpp:372 +msgid "replace wavetable..." +msgstr "" + +#: src/gui/dataList.cpp:378 +msgid "replace sample..." +msgstr "" + +#: src/gui/dataList.cpp:381 +msgid "import raw sample..." +msgstr "" + +#: src/gui/dataList.cpp:384 +msgid "import raw sample (replace)..." +msgstr "" + +#: src/gui/dataList.cpp:392 +msgid "load from TX81Z" +msgstr "" + +#: src/gui/dataList.cpp:399 +msgid "Open (insert; right-click to replace)" +msgstr "" + +#: src/gui/dataList.cpp:420 src/gui/dataList.cpp:741 src/gui/dataList.cpp:884 +#: src/gui/editControls.cpp:502 src/gui/waveEdit.cpp:474 +#: src/gui/sampleEdit.cpp:184 src/gui/insEdit.cpp:5311 +msgid "Save" +msgstr "" + +#: src/gui/dataList.cpp:424 +msgid "save instrument as .dmp..." +msgstr "" + +#: src/gui/dataList.cpp:430 +msgid "save wavetable as .dmw..." +msgstr "" + +#: src/gui/dataList.cpp:433 +msgid "save raw wavetable..." +msgstr "" + +#: src/gui/dataList.cpp:439 +msgid "save raw sample..." +msgstr "" + +#: src/gui/dataList.cpp:443 src/gui/insEdit.cpp:5314 +msgid "save as .dmp..." +msgstr "" + +#: src/gui/dataList.cpp:456 src/gui/dataList.cpp:761 src/gui/dataList.cpp:903 +msgid "Toggle folders/standard view" +msgstr "" + +#: src/gui/dataList.cpp:478 src/gui/dataList.cpp:769 src/gui/dataList.cpp:911 +#: src/gui/subSongs.cpp:55 +msgid "Move up" +msgstr "" + +#: src/gui/dataList.cpp:499 src/gui/dataList.cpp:776 src/gui/dataList.cpp:918 +#: src/gui/subSongs.cpp:62 +msgid "Move down" +msgstr "" + +#: src/gui/dataList.cpp:510 src/gui/dataList.cpp:787 src/gui/dataList.cpp:929 +msgid "Create" +msgstr "" + +#: src/gui/dataList.cpp:540 src/gui/dataList.cpp:797 src/gui/dataList.cpp:939 +msgid "New folder" +msgstr "" + +#: src/gui/dataList.cpp:549 src/gui/dataList.cpp:947 +msgid "Preview (right click to stop)" +msgstr "" + +#: src/gui/dataList.cpp:576 src/gui/dataList.cpp:807 src/gui/dataList.cpp:959 +#: src/gui/guiConst.cpp:666 src/gui/sampleEdit.cpp:1105 +msgid "Delete" +msgstr "" + +#: src/gui/dataList.cpp:608 src/gui/dataList.cpp:985 src/gui/dataList.cpp:1031 +msgid "" +msgstr "" + +#: src/gui/dataList.cpp:614 src/gui/dataList.cpp:991 src/gui/dataList.cpp:1037 +msgid "rename..." +msgstr "" + +#: src/gui/dataList.cpp:663 src/gui/dataList.cpp:707 src/gui/gui.cpp:5923 +msgid "Wavetables" +msgstr "" + +#: src/gui/dataList.cpp:674 src/gui/dataList.cpp:839 src/gui/xyOsc.cpp:68 +#: src/gui/sampleEdit.cpp:898 src/gui/sampleEdit.cpp:1072 src/gui/gui.cpp:5932 +msgid "Samples" +msgstr "" + +#: src/gui/dataList.cpp:745 src/gui/waveEdit.cpp:477 +msgid "save as .dmw..." +msgstr "" + +#: src/gui/dataList.cpp:748 src/gui/dataList.cpp:891 src/gui/waveEdit.cpp:480 +#: src/gui/sampleEdit.cpp:187 +msgid "save raw..." +msgstr "" + +#: src/gui/dataList.cpp:871 src/gui/sampleEdit.cpp:174 +msgid "import raw..." +msgstr "" + +#: src/gui/dataList.cpp:874 +msgid "import raw (replace)..." +msgstr "" + +#: src/gui/exportOptions.cpp:29 +msgid "Export type:" +msgstr "" + +#: src/gui/exportOptions.cpp:32 +msgid "one file" +msgstr "" + +#: src/gui/exportOptions.cpp:35 +msgid "multiple files (one per chip)" +msgstr "" + +#: src/gui/exportOptions.cpp:38 +msgid "multiple files (one per channel)" +msgstr "" + +#: src/gui/exportOptions.cpp:44 +msgid "Bit depth:" +msgstr "" + +#: src/gui/exportOptions.cpp:46 +msgid "16-bit integer" +msgstr "" + +#: src/gui/exportOptions.cpp:49 +msgid "32-bit float" +msgstr "" + +#: src/gui/exportOptions.cpp:55 src/gui/settings.cpp:1352 src/gui/gui.cpp:6270 +msgid "Sample rate" +msgstr "" + +#: src/gui/exportOptions.cpp:61 +msgid "Channels in file" +msgstr "" + +#: src/gui/exportOptions.cpp:67 src/gui/settings.cpp:930 +msgid "Loops" +msgstr "" + +#: src/gui/exportOptions.cpp:70 src/gui/settings.cpp:935 +msgid "Fade out (seconds)" +msgstr "" + +#: src/gui/exportOptions.cpp:76 +msgid "Channels to export:" +msgstr "" + +#: src/gui/exportOptions.cpp:78 src/gui/effectList.cpp:32 src/gui/gui.cpp:6186 +msgid "All" +msgstr "" + +#: src/gui/exportOptions.cpp:84 src/gui/sysConf.cpp:1870 +#: src/gui/effectList.cpp:34 src/gui/compatFlags.cpp:219 +#: src/gui/waveEdit.cpp:37 src/gui/gui.cpp:6192 src/gui/insEdit.cpp:518 +msgid "None" +msgstr "" + +#: src/gui/exportOptions.cpp:110 src/gui/exportOptions.cpp:214 +#: src/gui/exportOptions.cpp:225 src/gui/exportOptions.cpp:243 +#: src/gui/exportOptions.cpp:266 src/gui/exportOptions.cpp:297 +#: src/gui/exportOptions.cpp:318 src/gui/exportOptions.cpp:341 +#: src/gui/commandPalette.cpp:199 src/gui/settings.cpp:6673 +#: src/gui/newSong.cpp:273 src/gui/gui.cpp:5669 src/gui/gui.cpp:5693 +#: src/gui/gui.cpp:5717 src/gui/gui.cpp:5741 src/gui/gui.cpp:5765 +#: src/gui/gui.cpp:5796 src/gui/gui.cpp:5855 src/gui/gui.cpp:6229 +#: src/gui/gui.cpp:6353 +msgid "Cancel" +msgstr "" + +#: src/gui/exportOptions.cpp:115 src/gui/exportOptions.cpp:217 +#: src/gui/exportOptions.cpp:246 src/gui/exportOptions.cpp:300 +#: src/gui/exportOptions.cpp:321 src/gui/exportOptions.cpp:344 +#: src/gui/editControls.cpp:512 src/gui/userPresets.cpp:523 +#: src/gui/settings.cpp:1242 src/gui/settings.cpp:2165 +#: src/gui/settings.cpp:2557 src/gui/settings.cpp:3800 src/gui/guiConst.cpp:536 +#: src/gui/gui.cpp:5578 src/gui/gui.cpp:5630 +msgid "Export" +msgstr "" + +#: src/gui/exportOptions.cpp:130 +msgid "select at least one channel" +msgstr "" + +#: src/gui/exportOptions.cpp:137 +msgid "settings:" +msgstr "" + +#: src/gui/exportOptions.cpp:138 +msgid "format version" +msgstr "" + +#: src/gui/exportOptions.cpp:146 src/gui/exportOptions.cpp:238 +#: src/gui/insEdit.cpp:362 +msgid "loop" +msgstr "" + +#: src/gui/exportOptions.cpp:148 +msgid "loop trail:" +msgstr "" + +#: src/gui/exportOptions.cpp:150 +msgid "auto-detect" +msgstr "" + +#: src/gui/exportOptions.cpp:153 +msgid "add one loop" +msgstr "" + +#: src/gui/exportOptions.cpp:156 +msgid "custom" +msgstr "" + +#: src/gui/exportOptions.cpp:167 +msgid "add pattern change hints" +msgstr "" + +#: src/gui/exportOptions.cpp:170 +msgid "" +"inserts data blocks on pattern changes.\n" +"useful if you are writing a playback routine.\n" +"\n" +"the format of a pattern change data block is:\n" +"67 66 FE ll ll ll ll 01 oo rr pp pp pp ...\n" +"- ll: length, a 32-bit little-endian number\n" +"- oo: order\n" +"- rr: initial row (a 0Dxx effect is able to select a different row)\n" +"- pp: pattern index (one per channel)\n" +"\n" +"pattern indexes are ordered as they appear in the song." +msgstr "" + +#: src/gui/exportOptions.cpp:183 +msgid "direct stream mode" +msgstr "" + +#: src/gui/exportOptions.cpp:186 +msgid "" +"required for DualPCM and MSM6258 export.\n" +"\n" +"allows for volume/direction changes when playing samples,\n" +"at the cost of a massive increase in file size." +msgstr "" + +#: src/gui/exportOptions.cpp:191 +msgid "chips to export:" +msgstr "" + +#: src/gui/exportOptions.cpp:200 +#, c-format +msgid "this chip is only available in VGM %d.%.2x and higher!" +msgstr "" + +#: src/gui/exportOptions.cpp:204 +msgid "this chip is not supported by the VGM format!" +msgstr "" + +#: src/gui/exportOptions.cpp:210 +#, c-format +msgid "select the chip you wish to export, but only up to %d of each type." +msgstr "" + +#: src/gui/exportOptions.cpp:222 +msgid "nothing to export" +msgstr "" + +#: src/gui/exportOptions.cpp:233 +msgid "Commander X16 Zsound Music File" +msgstr "" + +#: src/gui/exportOptions.cpp:234 +msgid "Tick Rate (Hz)" +msgstr "" + +#: src/gui/exportOptions.cpp:240 +msgid "optimize size" +msgstr "" + +#: src/gui/exportOptions.cpp:256 src/gui/editControls.cpp:630 +msgid "" +"this is NOT ROM export! only use for making sure the\n" +"Furnace Amiga emulator is working properly by\n" +"comparing it with real Amiga output." +msgstr "" + +#: src/gui/exportOptions.cpp:261 src/gui/editControls.cpp:635 +#: src/gui/settings.cpp:3925 +msgid "Directory" +msgstr "" + +#: src/gui/exportOptions.cpp:269 src/gui/editControls.cpp:638 +msgid "Bake Data" +msgstr "" + +#: src/gui/exportOptions.cpp:284 src/gui/editControls.cpp:653 +#, c-format +msgid "Done! Baked %d files." +msgstr "" + +#: src/gui/exportOptions.cpp:293 +msgid "this option exports the song to a text file.\n" +msgstr "" + +#: src/gui/exportOptions.cpp:310 +msgid "" +"this option exports a text or binary file which\n" +"contains a dump of the internal command stream\n" +"produced when playing the song.\n" +"\n" +"technical/development use only!" +msgstr "" + +#: src/gui/exportOptions.cpp:331 +msgid "" +"export in DefleMask module format.\n" +"only do it if you really, really need to, or are downgrading an existing ." +"dmf." +msgstr "" + +#: src/gui/exportOptions.cpp:335 +msgid "format version:" +msgstr "" + +#: src/gui/exportOptions.cpp:336 +msgid "1.1.3 and higher" +msgstr "" + +#: src/gui/exportOptions.cpp:337 +msgid "1.0/legacy (0.12)" +msgstr "" + +#: src/gui/exportOptions.cpp:357 src/gui/settings.cpp:1253 +#: src/gui/settings.cpp:3929 +msgid "Audio" +msgstr "" + +#: src/gui/exportOptions.cpp:361 src/gui/settings.cpp:3931 +msgid "VGM" +msgstr "" + +#: src/gui/exportOptions.cpp:370 src/gui/settings.cpp:3932 +msgid "ZSM" +msgstr "" + +#: src/gui/exportOptions.cpp:380 +msgid "Amiga Validation" +msgstr "" + +#: src/gui/exportOptions.cpp:385 src/gui/settings.cpp:2959 +#: src/gui/settings.cpp:3891 +msgid "Text" +msgstr "" + +#: src/gui/exportOptions.cpp:389 +msgid "Command Stream" +msgstr "" + +#: src/gui/exportOptions.cpp:393 +msgid "DMF" +msgstr "" + +#: src/gui/exportOptions.cpp:422 +msgid "congratulations! you've unlocked a secret panel." +msgstr "" + +#: src/gui/exportOptions.cpp:423 +msgid "Toggle hidden systems" +msgstr "" + +#: src/gui/exportOptions.cpp:427 +msgid "Toggle all instrument types" +msgstr "" + +#: src/gui/exportOptions.cpp:431 +msgid "Set pitch linearity to Partial" +msgstr "" + +#: src/gui/exportOptions.cpp:435 +msgid "Enable multi-threading settings" +msgstr "" + +#: src/gui/exportOptions.cpp:439 +msgid "Set fat to max" +msgstr "" + +#: src/gui/exportOptions.cpp:446 +msgid "Set muscle and fat to zero" +msgstr "" + +#: src/gui/exportOptions.cpp:453 +msgid "Tell tildearrow this must be a mistake" +msgstr "" + +#: src/gui/exportOptions.cpp:454 +msgid "" +"yeah, it's a bug. write a bug report in the GitHub page and tell me how did " +"you get here." +msgstr "" + +#: src/gui/speed.cpp:32 src/gui/speed.cpp:102 src/gui/editControls.cpp:532 +#: src/gui/sysConf.cpp:2148 src/gui/guiConst.cpp:232 src/gui/guiConst.cpp:581 +#: src/gui/insEdit.cpp:2028 src/gui/insEdit.cpp:5693 src/gui/insEdit.cpp:6885 +msgid "Speed" +msgstr "" + +#: src/gui/speed.cpp:41 +msgid "Base Tempo##TempoOrHz" +msgstr "" + +#: src/gui/speed.cpp:41 +msgid "Tick Rate##TempoOrHz" +msgstr "" + +#: src/gui/speed.cpp:46 +msgid "click to display tick rate" +msgstr "" + +#: src/gui/speed.cpp:48 +msgid "click to display base tempo" +msgstr "" + +#: src/gui/speed.cpp:80 +msgid "Groove" +msgstr "" + +#: src/gui/speed.cpp:87 +msgid "click for one speed" +msgstr "" + +#: src/gui/speed.cpp:90 +msgid "Speeds" +msgstr "" + +#: src/gui/speed.cpp:99 +msgid "click for groove pattern" +msgstr "" + +#: src/gui/speed.cpp:110 +msgid "click for two (alternating) speeds" +msgstr "" + +#: src/gui/speed.cpp:168 +msgid "Virtual Tempo" +msgstr "" + +#: src/gui/speed.cpp:177 +msgid "Numerator" +msgstr "" + +#: src/gui/speed.cpp:187 +msgid "Denominator (set to base tempo)" +msgstr "" + +#: src/gui/speed.cpp:193 +msgid "Divider" +msgstr "" + +#: src/gui/speed.cpp:208 +msgid "Highlight" +msgstr "" + +#: src/gui/speed.cpp:231 +msgid "Pattern Length" +msgstr "" + +#: src/gui/speed.cpp:245 +msgid "Song Length" +msgstr "" + +#: src/gui/channels.cpp:40 src/gui/editControls.cpp:446 +#: src/gui/guiConst.cpp:601 src/gui/gui.cpp:6280 +msgid "Channels" +msgstr "" + +#: src/gui/channels.cpp:49 +msgid "Pat" +msgstr "" + +#: src/gui/channels.cpp:51 src/gui/editControls.cpp:550 +msgid "Osc" +msgstr "" + +#: src/gui/channels.cpp:53 +msgid "Swap" +msgstr "" + +#: src/gui/channels.cpp:55 src/gui/userPresets.cpp:368 +#: src/gui/effectList.cpp:45 src/gui/subSongs.cpp:125 src/gui/settings.cpp:1060 +#: src/gui/settings.cpp:4383 src/gui/sampleEdit.cpp:195 src/gui/songInfo.cpp:40 +#: src/gui/sysManager.cpp:54 src/gui/insEdit.cpp:5288 +msgid "Name" +msgstr "" + +#: src/gui/channels.cpp:64 +msgid "Show in pattern" +msgstr "" + +#: src/gui/channels.cpp:71 +msgid "Show in per-channel oscilloscope" +msgstr "" + +#: src/gui/channels.cpp:82 +#, c-format +msgid "" +"%s #%d\n" +"(drag to swap channels)" +msgstr "" + +#: src/gui/commandPalette.cpp:51 src/gui/sysPicker.cpp:35 +#: src/gui/newSong.cpp:133 +msgid "Search..." +msgstr "" + +#: src/gui/commandPalette.cpp:54 +msgid "Search recent files..." +msgstr "" + +#: src/gui/commandPalette.cpp:57 +msgid "Search instruments..." +msgstr "" + +#: src/gui/commandPalette.cpp:60 +msgid "Search samples..." +msgstr "" + +#: src/gui/commandPalette.cpp:63 +msgid "Search instruments (to change to)..." +msgstr "" + +#: src/gui/commandPalette.cpp:66 +msgid "Search chip (to add)..." +msgstr "" + +#: src/gui/commandPalette.cpp:93 src/gui/commandPalette.cpp:167 +msgid "- None -" +msgstr "" + +#: src/gui/commandPalette.cpp:123 src/gui/commandPalette.cpp:179 +#: src/gui/commandPalette.cpp:241 +msgid "invalid command palette type" +msgstr "" + +#: src/gui/regView.cpp:30 src/gui/guiConst.cpp:604 +msgid "Register View" +msgstr "" + +#: src/gui/regView.cpp:38 +msgid "- no register pool available" +msgstr "" + +#: src/gui/log.cpp:25 src/gui/effectList.cpp:84 +msgid "ERROR" +msgstr "" + +#: src/gui/log.cpp:26 +msgid "warning" +msgstr "" + +#: src/gui/log.cpp:27 +msgid "info" +msgstr "" + +#: src/gui/log.cpp:28 src/gui/gui.cpp:4513 +msgid "debug" +msgstr "" + +#: src/gui/log.cpp:29 +msgid "trace" +msgstr "" + +#: src/gui/log.cpp:47 src/gui/settings.cpp:4243 src/gui/guiConst.cpp:605 +msgid "Log Viewer" +msgstr "" + +#: src/gui/log.cpp:48 src/gui/editControls.cpp:750 src/gui/editControls.cpp:883 +#: src/gui/editControls.cpp:1000 +msgid "Follow" +msgstr "" + +#: src/gui/log.cpp:50 src/gui/waveEdit.cpp:681 src/gui/insEdit.cpp:50 +msgid "Level" +msgstr "" + +#: src/gui/log.cpp:68 +msgid "time" +msgstr "" + +#: src/gui/log.cpp:70 +msgid "level" +msgstr "" + +#: src/gui/log.cpp:72 +msgid "message" +msgstr "" + +#: src/gui/pattern.cpp:433 src/gui/editControls.cpp:421 +#: src/gui/editControls.cpp:754 src/gui/editControls.cpp:887 +#: src/gui/editControls.cpp:1015 src/gui/settings.cpp:2344 +#: src/gui/settings.cpp:3297 src/gui/settings.cpp:4100 +#: src/gui/findReplace.cpp:794 src/gui/guiConst.cpp:582 src/gui/gui.cpp:5899 +msgid "Pattern" +msgstr "" + +#: src/gui/pattern.cpp:468 +msgid "there aren't any channels to show." +msgstr "" + +#: src/gui/pattern.cpp:492 +msgid "click for pattern options (effect columns/pattern names/visualizer)" +msgstr "" + +#: src/gui/pattern.cpp:504 +msgid "Options:" +msgstr "" + +#: src/gui/pattern.cpp:506 +msgid "Effect columns/collapse" +msgstr "" + +#: src/gui/pattern.cpp:507 +msgid "Pattern names" +msgstr "" + +#: src/gui/pattern.cpp:508 +msgid "Channel group hints" +msgstr "" + +#: src/gui/pattern.cpp:509 +msgid "Visualizer" +msgstr "" + +#: src/gui/pattern.cpp:517 +msgid "Channel status:" +msgstr "" + +#: src/gui/pattern.cpp:519 +msgid "No##_PCS0" +msgstr "" + +#: src/gui/pattern.cpp:522 +msgid "Yes##_PCS1" +msgstr "" + +#: src/gui/pattern.cpp:1420 src/gui/pattern.cpp:1452 +msgid "WARNING!!" +msgstr "" + +#: src/gui/pattern.cpp:1422 src/gui/pattern.cpp:1459 +msgid "this instrument cannot be previewed because" +msgstr "" + +#: src/gui/pattern.cpp:1423 src/gui/pattern.cpp:1466 +msgid "none of the chips can play it" +msgstr "" + +#: src/gui/pattern.cpp:1424 src/gui/pattern.cpp:1473 +msgid "your instrument is in peril!! be careful..." +msgstr "" + +#: src/gui/osc.cpp:169 src/gui/settings.cpp:3710 src/gui/settings.cpp:3937 +msgid "Oscilloscope" +msgstr "" + +#: src/gui/osc.cpp:176 +#, c-format +msgid "zoom: %.2fx (%.1fdB)" +msgstr "" + +#: src/gui/osc.cpp:187 +#, c-format +msgid "window size: %.1fms" +msgstr "" + +#: src/gui/osc.cpp:385 +msgid "(-Infinity)dB" +msgstr "" + +#: src/gui/debugWindow.cpp:66 src/gui/editControls.cpp:610 +msgid "Debug" +msgstr "" + +#: src/gui/debugWindow.cpp:663 +msgid "This is a language test." +msgstr "" + +#: src/gui/debugWindow.cpp:664 +msgid "This is another language test." +msgstr "" + +#: src/gui/debugWindow.cpp:720 +#, c-format +msgid "%d apple" +msgid_plural "%d apples" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/gui/chanOsc.cpp:32 +msgid "None (0%)" +msgstr "" + +#: src/gui/chanOsc.cpp:33 +msgid "None (50%)" +msgstr "" + +#: src/gui/chanOsc.cpp:34 +msgid "None (100%)" +msgstr "" + +#: src/gui/chanOsc.cpp:36 +msgid "Frequency" +msgstr "" + +#: src/gui/chanOsc.cpp:38 src/gui/settings.cpp:1667 src/gui/settings.cpp:3406 +#: src/gui/settings.cpp:4088 +msgid "Channel" +msgstr "" + +#: src/gui/chanOsc.cpp:39 +msgid "Brightness" +msgstr "" + +#: src/gui/chanOsc.cpp:41 +msgid "Note Trigger" +msgstr "" + +#: src/gui/chanOsc.cpp:45 +msgid "Off" +msgstr "" + +#: src/gui/chanOsc.cpp:46 +msgid "Mode 1" +msgstr "" + +#: src/gui/chanOsc.cpp:47 +msgid "Mode 2" +msgstr "" + +#: src/gui/chanOsc.cpp:48 +msgid "Mode 3" +msgstr "" + +#: src/gui/chanOsc.cpp:135 src/gui/guiConst.cpp:607 +msgid "Oscilloscope (per-channel)" +msgstr "" + +#: src/gui/chanOsc.cpp:143 +msgid "Columns" +msgstr "" + +#: src/gui/chanOsc.cpp:152 +msgid "Size (ms)" +msgstr "" + +#: src/gui/chanOsc.cpp:163 +msgid "Automatic columns" +msgstr "" + +#: src/gui/chanOsc.cpp:177 +msgid "Center waveform" +msgstr "" + +#: src/gui/chanOsc.cpp:183 +msgid "Randomize phase on note" +msgstr "" + +#: src/gui/chanOsc.cpp:189 +msgid "Amplitude" +msgstr "" + +#: src/gui/chanOsc.cpp:199 src/gui/settings.cpp:3747 +msgid "Line size" +msgstr "" + +#: src/gui/chanOsc.cpp:211 +msgid "Gradient" +msgstr "" + +#: src/gui/chanOsc.cpp:218 +msgid "error while creating gradient texture!" +msgstr "" + +#: src/gui/chanOsc.cpp:236 +msgid "error while updating gradient texture!" +msgstr "" + +#: src/gui/chanOsc.cpp:292 src/gui/chanOsc.cpp:348 src/gui/settings.cpp:3793 +msgid "Color" +msgstr "" + +#: src/gui/chanOsc.cpp:296 +msgid "Distance" +msgstr "" + +#: src/gui/chanOsc.cpp:305 +msgid "Spread" +msgstr "" + +#: src/gui/chanOsc.cpp:314 src/gui/userPresets.cpp:370 src/gui/subSongs.cpp:121 +#: src/gui/settings.cpp:2281 src/gui/sysManager.cpp:124 +msgid "Remove" +msgstr "" + +#: src/gui/chanOsc.cpp:338 src/gui/settings.cpp:3885 src/gui/settings.cpp:4165 +#: src/gui/settings.cpp:4192 src/gui/settings.cpp:4218 +msgid "Background" +msgstr "" + +#: src/gui/chanOsc.cpp:341 +msgid "X Axis##AxisX" +msgstr "" + +#: src/gui/chanOsc.cpp:342 +msgid "Y Axis##AxisY" +msgstr "" + +#: src/gui/chanOsc.cpp:352 +msgid "Text format:" +msgstr "" + +#: src/gui/chanOsc.cpp:358 +msgid "" +"format guide:\n" +"- %c: channel name\n" +"- %C: channel short name\n" +"- %d: channel number (starting from 0)\n" +"- %D: channel number (starting from 1)\n" +"- %n: channel note\n" +"- %i: instrument name\n" +"- %I: instrument number (decimal)\n" +"- %x: instrument number (hex)\n" +"- %s: chip name\n" +"- %p: chip part number\n" +"- %S: chip ID\n" +"- %v: volume (decimal)\n" +"- %V: volume (percentage)\n" +"- %b: volume (hex)\n" +"- %l: new line\n" +"- %%: percent sign" +msgstr "" + +#: src/gui/chanOsc.cpp:380 +msgid "Text color" +msgstr "" + +#: src/gui/chanOsc.cpp:382 src/gui/xyOsc.cpp:80 src/gui/settings.cpp:6672 +#: src/gui/tutorial.cpp:689 src/gui/gui.cpp:5639 src/gui/gui.cpp:6055 +#: src/gui/gui.cpp:6223 src/gui/gui.cpp:6322 src/gui/gui.cpp:6371 +msgid "OK" +msgstr "" + +#: src/gui/chanOsc.cpp:400 +msgid "creating chan osc work pool" +msgstr "" + +#: src/gui/chanOsc.cpp:429 +#, c-format +msgid "creating FFT plan for channel %d" +msgstr "" + +#: src/gui/chanOsc.cpp:436 +msgid "failed to create plan!" +msgstr "" + +#: src/gui/chanOsc.cpp:438 +msgid "failed to create inverse plan!" +msgstr "" + +#: src/gui/chanOsc.cpp:440 +msgid "failed to create FFT buffers" +msgstr "" + +#: src/gui/chanOsc.cpp:585 +msgid "Error!" +msgstr "" + +#: src/gui/editControls.cpp:47 src/gui/sampleEdit.cpp:1736 src/gui/gui.cpp:2733 +#: src/gui/insEdit.cpp:363 +msgid "cut" +msgstr "" + +#: src/gui/editControls.cpp:48 src/gui/sampleEdit.cpp:1740 src/gui/gui.cpp:2734 +#: src/gui/insEdit.cpp:7538 +msgid "copy" +msgstr "" + +#: src/gui/editControls.cpp:49 src/gui/sampleEdit.cpp:1744 src/gui/gui.cpp:2735 +#: src/gui/gui.cpp:2788 src/gui/insEdit.cpp:7543 +msgid "paste" +msgstr "" + +#: src/gui/editControls.cpp:51 +msgid "" +"select\n" +"all" +msgstr "" + +#: src/gui/editControls.cpp:52 +msgid "piano" +msgstr "" + +#: src/gui/editControls.cpp:53 src/gui/gui.cpp:4429 +msgid "undo" +msgstr "" + +#: src/gui/editControls.cpp:54 src/gui/gui.cpp:4430 +msgid "redo" +msgstr "" + +#: src/gui/editControls.cpp:57 +msgid "" +"paste\n" +"mix" +msgstr "" + +#: src/gui/editControls.cpp:58 +msgid "" +"paste\n" +"mix bg" +msgstr "" + +#: src/gui/editControls.cpp:59 +msgid "" +"paste\n" +"ins" +msgstr "" + +#: src/gui/editControls.cpp:60 +msgid "" +"paste\n" +"ins bg" +msgstr "" + +#: src/gui/editControls.cpp:61 +msgid "" +"paste\n" +"flood" +msgstr "" + +#: src/gui/editControls.cpp:62 +msgid "" +"paste\n" +"overflow" +msgstr "" + +#: src/gui/editControls.cpp:63 +msgid "" +"transpose\n" +"notes" +msgstr "" + +#: src/gui/editControls.cpp:64 +msgid "" +"transpose\n" +"values" +msgstr "" + +#: src/gui/editControls.cpp:67 +msgid "" +"change\n" +"ins" +msgstr "" + +#: src/gui/editControls.cpp:68 +msgid "" +"find/\n" +"replace" +msgstr "" + +#: src/gui/editControls.cpp:69 src/gui/gui.cpp:3063 +msgid "collapse" +msgstr "" + +#: src/gui/editControls.cpp:70 src/gui/gui.cpp:3064 +msgid "expand" +msgstr "" + +#: src/gui/editControls.cpp:71 src/gui/gui.cpp:2820 +msgid "flip" +msgstr "" + +#: src/gui/editControls.cpp:72 src/gui/insEdit.cpp:430 +msgid "invert" +msgstr "" + +#: src/gui/editControls.cpp:73 src/gui/gui.cpp:2800 src/gui/gui.cpp:2960 +msgid "interpolate" +msgstr "" + +#: src/gui/editControls.cpp:74 src/gui/gui.cpp:2812 src/gui/insEdit.cpp:7610 +msgid "scale" +msgstr "" + +#: src/gui/editControls.cpp:77 src/gui/gui.cpp:2804 +msgid "fade" +msgstr "" + +#: src/gui/editControls.cpp:78 src/gui/gui.cpp:2816 src/gui/insEdit.cpp:7639 +msgid "randomize" +msgstr "" + +#: src/gui/editControls.cpp:79 +msgid "opmask" +msgstr "" + +#: src/gui/editControls.cpp:80 +msgid "" +"scroll\n" +"mode" +msgstr "" + +#: src/gui/editControls.cpp:81 +msgid "" +"input\n" +"latch" +msgstr "" + +#: src/gui/editControls.cpp:82 +msgid "" +"set\n" +"latch" +msgstr "" + +#: src/gui/editControls.cpp:83 +msgid "" +"clear\n" +"latch" +msgstr "" + +#: src/gui/editControls.cpp:84 src/gui/findReplace.cpp:43 +#: src/gui/insEdit.cpp:7557 +msgid "clear" +msgstr "" + +#: src/gui/editControls.cpp:333 +msgid "Mobile Controls" +msgstr "" + +#: src/gui/editControls.cpp:408 +msgid "Mobile Menu" +msgstr "" + +#: src/gui/editControls.cpp:425 src/gui/editControls.cpp:752 +#: src/gui/editControls.cpp:885 src/gui/editControls.cpp:1007 +#: src/gui/settings.cpp:2485 src/gui/settings.cpp:3271 +#: src/gui/settings.cpp:3975 src/gui/orders.cpp:232 src/gui/guiConst.cpp:577 +#: src/gui/gui.cpp:5888 +msgid "Orders" +msgstr "" + +#: src/gui/editControls.cpp:429 src/gui/findReplace.cpp:669 +#: src/gui/findReplace.cpp:914 +msgid "Ins" +msgstr "" + +#: src/gui/editControls.cpp:442 src/gui/findReplace.cpp:788 +#: src/gui/guiConst.cpp:230 +msgid "Song" +msgstr "" + +#: src/gui/editControls.cpp:450 src/gui/sampleEdit.cpp:494 +msgid "Chips" +msgstr "" + +#: src/gui/editControls.cpp:458 src/gui/settings.cpp:2117 +#: src/gui/settings.cpp:3934 src/gui/settings.cpp:4018 +#: src/gui/compatFlags.cpp:319 +msgid "Other" +msgstr "" + +#: src/gui/editControls.cpp:487 src/gui/guiConst.cpp:531 +msgid "New" +msgstr "" + +#: src/gui/editControls.cpp:491 src/gui/doAction.cpp:38 src/gui/gui.cpp:4194 +msgid "Unsaved changes! Save changes before creating a new song?" +msgstr "" + +#: src/gui/editControls.cpp:507 +msgid "Save as..." +msgstr "" + +#: src/gui/editControls.cpp:516 src/gui/gui.cpp:1680 +msgid "Restore Backup" +msgstr "" + +#: src/gui/editControls.cpp:524 +msgid "Song Info" +msgstr "" + +#: src/gui/editControls.cpp:528 src/gui/subSongs.cpp:17 +#: src/gui/guiConst.cpp:608 +msgid "Subsongs" +msgstr "" + +#: src/gui/editControls.cpp:541 +msgid "Channels here..." +msgstr "" + +#: src/gui/editControls.cpp:544 +msgid "Chips here..." +msgstr "" + +#: src/gui/editControls.cpp:547 +msgid "What the hell..." +msgstr "" + +#: src/gui/editControls.cpp:554 +msgid "ChanOsc" +msgstr "" + +#: src/gui/editControls.cpp:558 +msgid "RegView" +msgstr "" + +#: src/gui/editControls.cpp:562 +msgid "Stats" +msgstr "" + +#: src/gui/editControls.cpp:566 src/gui/guiConst.cpp:611 src/gui/grooves.cpp:35 +msgid "Grooves" +msgstr "" + +#: src/gui/editControls.cpp:569 +msgid "Compat Flags" +msgstr "" + +#: src/gui/editControls.cpp:573 +msgid "XYOsc" +msgstr "" + +#: src/gui/editControls.cpp:577 +msgid "Meter" +msgstr "" + +#: src/gui/editControls.cpp:581 +msgid "Memory" +msgstr "" + +#: src/gui/editControls.cpp:585 +msgid "CV" +msgstr "" + +#: src/gui/editControls.cpp:589 +msgid "Presets" +msgstr "" + +#: src/gui/editControls.cpp:593 +msgid "PatManager" +msgstr "" + +#: src/gui/editControls.cpp:599 src/gui/guiConst.cpp:564 +msgid "Panic" +msgstr "" + +#: src/gui/editControls.cpp:601 src/gui/settings.cpp:560 +#: src/gui/guiConst.cpp:589 src/gui/guiConst.cpp:591 src/gui/gui.cpp:4439 +msgid "Settings" +msgstr "" + +#: src/gui/editControls.cpp:606 +msgid "Log" +msgstr "" + +#: src/gui/editControls.cpp:614 src/gui/guiConst.cpp:587 +msgid "About" +msgstr "" + +#: src/gui/editControls.cpp:619 +msgid "Switch to Desktop Mode" +msgstr "" + +#: src/gui/editControls.cpp:673 src/gui/editControls.cpp:784 +#: src/gui/editControls.cpp:904 +msgid "Play/Edit Controls" +msgstr "" + +#: src/gui/editControls.cpp:681 src/gui/editControls.cpp:842 +#: src/gui/editControls.cpp:959 src/gui/editControls.cpp:1125 +msgid "Octave" +msgstr "" + +#: src/gui/editControls.cpp:698 src/gui/editControls.cpp:857 +msgid "Coarse Step" +msgstr "" + +#: src/gui/editControls.cpp:698 src/gui/editControls.cpp:857 +msgid "Edit Step" +msgstr "" + +#: src/gui/editControls.cpp:731 src/gui/editControls.cpp:797 +#: src/gui/editControls.cpp:911 src/gui/editControls.cpp:1048 +#: src/gui/guiConst.cpp:545 +msgid "Play" +msgstr "" + +#: src/gui/editControls.cpp:739 src/gui/editControls.cpp:789 +#: src/gui/editControls.cpp:918 src/gui/editControls.cpp:1040 +#: src/gui/guiConst.cpp:546 +msgid "Stop" +msgstr "" + +#: src/gui/editControls.cpp:742 src/gui/editControls.cpp:826 +#: src/gui/editControls.cpp:943 src/gui/editControls.cpp:1082 +#: src/gui/gui.cpp:4426 +msgid "Edit" +msgstr "" + +#: src/gui/editControls.cpp:757 src/gui/editControls.cpp:816 +#: src/gui/editControls.cpp:934 src/gui/editControls.cpp:1104 +msgid "Repeat pattern" +msgstr "" + +#: src/gui/editControls.cpp:766 src/gui/editControls.cpp:806 +#: src/gui/editControls.cpp:925 src/gui/editControls.cpp:1073 +msgid "Step one row" +msgstr "" + +#: src/gui/editControls.cpp:771 src/gui/editControls.cpp:891 +#: src/gui/editControls.cpp:1020 src/gui/editControls.cpp:1110 +msgid "Poly##PolyInput" +msgstr "" + +#: src/gui/editControls.cpp:771 src/gui/editControls.cpp:891 +#: src/gui/editControls.cpp:1020 src/gui/editControls.cpp:1110 +msgid "Mono##PolyInput" +msgstr "" + +#: src/gui/editControls.cpp:776 src/gui/editControls.cpp:896 +#: src/gui/editControls.cpp:1025 src/gui/editControls.cpp:1115 +msgid "Polyphony" +msgstr "" + +#: src/gui/editControls.cpp:957 +msgid "Oct." +msgstr "" + +#: src/gui/editControls.cpp:974 src/gui/editControls.cpp:1142 +msgid "Coarse" +msgstr "" + +#: src/gui/editControls.cpp:974 src/gui/editControls.cpp:1142 +msgid "Step" +msgstr "" + +#: src/gui/editControls.cpp:998 +msgid "Foll." +msgstr "" + +#: src/gui/editControls.cpp:1003 +msgid "Ord##FollowOrders" +msgstr "" + +#: src/gui/editControls.cpp:1011 +msgid "Pat##FollowPattern" +msgstr "" + +#: src/gui/editControls.cpp:1033 +msgid "Play Controls" +msgstr "" + +#: src/gui/editControls.cpp:1057 +msgid "Play from the beginning of this pattern" +msgstr "" + +#: src/gui/editControls.cpp:1065 +msgid "Repeat from the beginning of this pattern" +msgstr "" + +#: src/gui/editControls.cpp:1122 src/gui/guiConst.cpp:576 +msgid "Edit Controls" +msgstr "" + +#: src/gui/editControls.cpp:1169 src/gui/guiConst.cpp:560 +msgid "Follow orders" +msgstr "" + +#: src/gui/editControls.cpp:1170 src/gui/guiConst.cpp:561 +msgid "Follow pattern" +msgstr "" + +#: src/gui/songNotes.cpp:32 src/gui/guiConst.cpp:600 +msgid "Song Comments" +msgstr "" + +#: src/gui/util.cpp:93 +msgid "" +msgstr "" + +#: src/gui/util.cpp:97 +msgid "Ctrl-" +msgstr "" + +#: src/gui/util.cpp:99 +msgid "Alt-" +msgstr "" + +#: src/gui/util.cpp:100 +msgid "Shift-" +msgstr "" + +#: src/gui/stats.cpp:31 src/gui/guiConst.cpp:597 +msgid "Statistics" +msgstr "" + +#: src/gui/stats.cpp:36 +msgid "Audio load" +msgstr "" + +#: src/gui/xyOsc.cpp:40 src/gui/guiConst.cpp:612 +msgid "Oscilloscope (X-Y)" +msgstr "" + +#: src/gui/xyOsc.cpp:45 +msgid "X Channel" +msgstr "" + +#: src/gui/xyOsc.cpp:51 +msgid "Invert##X" +msgstr "" + +#: src/gui/xyOsc.cpp:52 +msgid "Y Channel" +msgstr "" + +#: src/gui/xyOsc.cpp:58 +msgid "Invert##Y" +msgstr "" + +#: src/gui/xyOsc.cpp:59 src/gui/sampleEdit.cpp:1353 +msgid "Zoom" +msgstr "" + +#: src/gui/xyOsc.cpp:71 +msgid "Decay Time (ms)" +msgstr "" + +#: src/gui/xyOsc.cpp:74 +msgid "Intensity" +msgstr "" + +#: src/gui/xyOsc.cpp:77 +msgid "Line Thickness" +msgstr "" + +#: src/gui/xyOsc.cpp:213 +msgid "(-Infinity)dB,(-Infinity)dB" +msgstr "" + +#: src/gui/xyOsc.cpp:215 +#, c-format +msgid "(-Infinity)dB,%.1fdB" +msgstr "" + +#: src/gui/xyOsc.cpp:217 +#, c-format +msgid "%.1fdB,(-Infinity)dB" +msgstr "" + +#: src/gui/xyOsc.cpp:219 +#, c-format +msgid "%.1fdB,%.1fdB" +msgstr "" + +#: src/gui/sysConf.cpp:49 src/gui/sysConf.cpp:121 src/gui/sysConf.cpp:486 +#: src/gui/sysConf.cpp:604 src/gui/sysConf.cpp:647 src/gui/sysConf.cpp:684 +#: src/gui/sysConf.cpp:843 src/gui/sysConf.cpp:1098 src/gui/sysConf.cpp:1181 +#: src/gui/sysConf.cpp:1220 src/gui/sysConf.cpp:1294 src/gui/sysConf.cpp:1380 +#: src/gui/sysConf.cpp:1444 src/gui/sysConf.cpp:1482 src/gui/sysConf.cpp:1572 +#: src/gui/sysConf.cpp:1668 src/gui/sysConf.cpp:1716 src/gui/sysConf.cpp:1757 +#: src/gui/sysConf.cpp:1810 src/gui/sysConf.cpp:2284 src/gui/sysConf.cpp:2307 +msgid "Clock rate:" +msgstr "" + +#: src/gui/sysConf.cpp:73 src/gui/sysConf.cpp:152 src/gui/sysConf.cpp:911 +#: src/gui/sysConf.cpp:1459 src/gui/sysConf.cpp:1783 +msgid "Chip type:" +msgstr "" + +#: src/gui/sysConf.cpp:75 +msgid "YM3438 (9-bit DAC)" +msgstr "" + +#: src/gui/sysConf.cpp:79 +msgid "YM2612 (9-bit DAC with distortion)" +msgstr "" + +#: src/gui/sysConf.cpp:83 +msgid "YMF276 (external DAC)" +msgstr "" + +#: src/gui/sysConf.cpp:90 src/gui/sysConf.cpp:804 src/gui/sysConf.cpp:1350 +#: src/gui/sysConf.cpp:1420 +msgid "Disable ExtCh FM macros (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:93 src/gui/sysConf.cpp:807 src/gui/sysConf.cpp:1353 +#: src/gui/sysConf.cpp:1423 +msgid "Ins change in ExtCh operator 2-4 affects FB (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:99 +msgid "Modified sine wave (joke)" +msgstr "" + +#: src/gui/sysConf.cpp:123 src/gui/sysConf.cpp:1296 src/gui/sysConf.cpp:1718 +#: src/gui/sysConf.cpp:2286 +msgid "3.58MHz (NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:127 +msgid "3.55MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:131 +msgid "4MHz (BBC Micro)" +msgstr "" + +#: src/gui/sysConf.cpp:135 +msgid "1.79MHz (Half NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:139 +msgid "3MHz (Exed Exes)" +msgstr "" + +#: src/gui/sysConf.cpp:143 +msgid "2MHz (Sega System 1)" +msgstr "" + +#: src/gui/sysConf.cpp:147 +msgid "447KHz (TI-99/4A)" +msgstr "" + +#: src/gui/sysConf.cpp:154 +msgid "Sega VDP/Master System" +msgstr "" + +#: src/gui/sysConf.cpp:162 +msgid "TI SN76489 with Atari-like short noise" +msgstr "" + +#: src/gui/sysConf.cpp:166 +msgid "Game Gear" +msgstr "" + +#: src/gui/sysConf.cpp:170 +msgid "TI SN76489A" +msgstr "" + +#: src/gui/sysConf.cpp:174 +msgid "TI SN76496" +msgstr "" + +#: src/gui/sysConf.cpp:178 +msgid "NCR 8496" +msgstr "" + +#: src/gui/sysConf.cpp:182 +msgid "Tandy PSSJ 3-voice sound" +msgstr "" + +#: src/gui/sysConf.cpp:186 +msgid "TI SN94624" +msgstr "" + +#: src/gui/sysConf.cpp:190 +msgid "TI SN76494" +msgstr "" + +#: src/gui/sysConf.cpp:196 +msgid "Disable noise period change phase reset" +msgstr "" + +#: src/gui/sysConf.cpp:200 src/gui/sysConf.cpp:2190 +msgid "Disable easy period to note mapping on upper octaves" +msgstr "" + +#: src/gui/sysConf.cpp:219 src/gui/sysConf.cpp:583 +msgid "Pseudo-PAL" +msgstr "" + +#: src/gui/sysConf.cpp:222 src/gui/sysConf.cpp:342 +msgid "Disable anti-click" +msgstr "" + +#: src/gui/sysConf.cpp:225 src/gui/sysConf.cpp:345 +msgid "Chip revision:" +msgstr "" + +#: src/gui/sysConf.cpp:227 +msgid "HuC6280 (original)" +msgstr "" + +#: src/gui/sysConf.cpp:231 +msgid "HuC6280A (SuperGrafx)" +msgstr "" + +#: src/gui/sysConf.cpp:257 +msgid "CPU rate:" +msgstr "" + +#: src/gui/sysConf.cpp:259 +msgid "6.18MHz (NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:263 +msgid "5.95MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:268 +msgid "Sample memory:" +msgstr "" + +#: src/gui/sysConf.cpp:270 +msgid "8K (rev A/B/E)" +msgstr "" + +#: src/gui/sysConf.cpp:274 +msgid "64K (rev D/F)" +msgstr "" + +#: src/gui/sysConf.cpp:279 +msgid "DAC resolution:" +msgstr "" + +#: src/gui/sysConf.cpp:281 +msgid "16-bit (rev A/B/D/F)" +msgstr "" + +#: src/gui/sysConf.cpp:285 +msgid "8-bit + TDM (rev C/E)" +msgstr "" + +#: src/gui/sysConf.cpp:290 src/gui/sysConf.cpp:1931 +msgid "Enable echo" +msgstr "" + +#: src/gui/sysConf.cpp:293 +msgid "Swap echo channels" +msgstr "" + +#: src/gui/sysConf.cpp:296 src/gui/sysConf.cpp:1151 +msgid "Echo delay:" +msgstr "" + +#: src/gui/sysConf.cpp:302 +msgid "Echo resolution:" +msgstr "" + +#: src/gui/sysConf.cpp:308 src/gui/sysConf.cpp:1159 +msgid "Echo feedback:" +msgstr "" + +#: src/gui/sysConf.cpp:314 src/gui/sysConf.cpp:1967 +msgid "Echo volume:" +msgstr "" + +#: src/gui/sysConf.cpp:347 +msgid "Original (DMG)" +msgstr "" + +#: src/gui/sysConf.cpp:351 +msgid "Game Boy Color (rev C)" +msgstr "" + +#: src/gui/sysConf.cpp:355 +msgid "Game Boy Color (rev E)" +msgstr "" + +#: src/gui/sysConf.cpp:359 +msgid "Game Boy Advance" +msgstr "" + +#: src/gui/sysConf.cpp:364 +msgid "Wave channel orientation:" +msgstr "" + +#: src/gui/sysConf.cpp:367 src/gui/compatFlags.cpp:298 src/gui/gui.cpp:6067 +#: src/gui/insEdit.cpp:217 src/gui/insEdit.cpp:231 +msgid "Normal" +msgstr "" + +#: src/gui/sysConf.cpp:371 +msgid "Inverted" +msgstr "" + +#: src/gui/sysConf.cpp:378 +msgid "Exact data (inverted)" +msgstr "" + +#: src/gui/sysConf.cpp:382 +msgid "Exact output (normal)" +msgstr "" + +#: src/gui/sysConf.cpp:388 +msgid "" +"Pretty please one more compat flag when I use arpeggio and my sound length" +msgstr "" + +#: src/gui/sysConf.cpp:405 src/gui/sysConf.cpp:438 +msgid "DAC bit depth (reduces output rate):" +msgstr "" + +#: src/gui/sysConf.cpp:426 src/gui/sysConf.cpp:1268 src/gui/sysConf.cpp:1919 +msgid "Volume scale:" +msgstr "" + +#: src/gui/sysConf.cpp:432 +msgid "Mix buffers (allows longer echo delay):" +msgstr "" + +#: src/gui/sysConf.cpp:444 +msgid "Channel limit:" +msgstr "" + +#: src/gui/sysConf.cpp:450 +msgid "Sample rate:" +msgstr "" + +#: src/gui/sysConf.cpp:460 +#, c-format +msgid "Actual sample rate: %d Hz" +msgstr "" + +#: src/gui/sysConf.cpp:462 +#, c-format +msgid "Max mixer CPU usage: %.0f%%" +msgstr "" + +#: src/gui/sysConf.cpp:488 +msgid "NTSC (3.58MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:492 src/gui/sysConf.cpp:557 +msgid "PAL (3.55MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:496 +msgid "Arcade (4MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:500 +msgid "Half NTSC (1.79MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:506 +msgid "Patch set:" +msgstr "" + +#: src/gui/sysConf.cpp:528 +msgid "Ignore top/hi-hat frequency changes" +msgstr "" + +#: src/gui/sysConf.cpp:531 +msgid "Apply fixed frequency to all drums at once" +msgstr "" + +#: src/gui/sysConf.cpp:553 +msgid "NTSC/X16 (3.58MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:561 +msgid "X1/X68000 (4MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:567 src/gui/sysConf.cpp:587 +msgid "Broken pitch macro/slides (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:607 src/gui/sysConf.cpp:650 src/gui/sysConf.cpp:1222 +#: src/gui/sysConf.cpp:2310 +msgid "NTSC (1.79MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:611 src/gui/sysConf.cpp:654 src/gui/sysConf.cpp:1226 +msgid "PAL (1.67MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:615 src/gui/sysConf.cpp:658 src/gui/sysConf.cpp:1230 +msgid "Dendy (1.77MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:621 +msgid "DPCM channel mode:" +msgstr "" + +#: src/gui/sysConf.cpp:624 +msgid "DPCM (muffled samples; low CPU usage)" +msgstr "" + +#: src/gui/sysConf.cpp:628 +msgid "PCM (crisp samples; high CPU usage)" +msgstr "" + +#: src/gui/sysConf.cpp:687 +msgid "NTSC (1.02MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:691 +msgid "PAL (0.99MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:695 +msgid "SSI 2001 (0.89MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:701 src/gui/sysConf.cpp:2320 +msgid "Global parameter priority:" +msgstr "" + +#: src/gui/sysConf.cpp:704 src/gui/sysConf.cpp:2323 +msgid "Left to right" +msgstr "" + +#: src/gui/sysConf.cpp:708 src/gui/sysConf.cpp:2327 +msgid "Last used channel" +msgstr "" + +#: src/gui/sysConf.cpp:714 +msgid "Hard reset envelope:" +msgstr "" + +#: src/gui/sysConf.cpp:716 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:1920 +#: src/gui/insEdit.cpp:6955 src/gui/insEdit.cpp:7481 +msgid "Attack" +msgstr "" + +#: src/gui/sysConf.cpp:721 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:1960 +#: src/gui/insEdit.cpp:6956 src/gui/insEdit.cpp:7482 +msgid "Decay" +msgstr "" + +#: src/gui/sysConf.cpp:726 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:1929 +#: src/gui/insEdit.cpp:6957 src/gui/insEdit.cpp:7483 +msgid "Sustain" +msgstr "" + +#: src/gui/sysConf.cpp:731 src/gui/settings.cpp:3987 src/gui/insEdit.cpp:50 +#: src/gui/insEdit.cpp:604 src/gui/insEdit.cpp:1983 src/gui/insEdit.cpp:6958 +#: src/gui/insEdit.cpp:7484 +msgid "Release" +msgstr "" + +#: src/gui/sysConf.cpp:737 +msgid "Envelope reset time:" +msgstr "" + +#: src/gui/sysConf.cpp:747 +msgid "" +"- 0 disables envelope reset. not recommended!\n" +"- 1 may trigger SID envelope bugs.\n" +"- values that are too high may result in notes being skipped." +msgstr "" + +#: src/gui/sysConf.cpp:749 +msgid "Disable 1Exy env update (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:753 +msgid "Relative duty and cutoff macros are coarse (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:757 +msgid "Cutoff macro race conditions (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:793 +msgid "8MHz (Neo Geo MVS)" +msgstr "" + +#: src/gui/sysConf.cpp:797 +msgid "8.06MHz (Neo Geo AES)" +msgstr "" + +#: src/gui/sysConf.cpp:812 src/gui/sysConf.cpp:1337 src/gui/sysConf.cpp:1407 +msgid "SSG Volume" +msgstr "" + +#: src/gui/sysConf.cpp:818 src/gui/sysConf.cpp:1413 +msgid "FM/ADPCM Volume" +msgstr "" + +#: src/gui/sysConf.cpp:845 +msgid "1.79MHz (ZX Spectrum NTSC/MSX)" +msgstr "" + +#: src/gui/sysConf.cpp:849 +msgid "1.77MHz (ZX Spectrum PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:853 +msgid "0.83MHz (Pre-divided Sunsoft 5B on PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:857 +msgid "0.89MHz (Pre-divided Sunsoft 5B)" +msgstr "" + +#: src/gui/sysConf.cpp:861 +msgid "1MHz (Amstrad CPC)" +msgstr "" + +#: src/gui/sysConf.cpp:865 +msgid "1.10MHz (Gamate/VIC-20 PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:869 +msgid "1.25MHz (Mag Max)" +msgstr "" + +#: src/gui/sysConf.cpp:873 +msgid "1.5MHz (Vectrex)" +msgstr "" + +#: src/gui/sysConf.cpp:877 +msgid "1.536MHz (Kyugo)" +msgstr "" + +#: src/gui/sysConf.cpp:881 +msgid "1.67MHz (?)" +msgstr "" + +#: src/gui/sysConf.cpp:885 +msgid "1.75MHz (ZX Spectrum 48K)" +msgstr "" + +#: src/gui/sysConf.cpp:889 +msgid "1.99MHz (PC-88)" +msgstr "" + +#: src/gui/sysConf.cpp:893 +msgid "2MHz (Atari ST/Sharp X1)" +msgstr "" + +#: src/gui/sysConf.cpp:897 +msgid "2^21Hz (Game Boy)" +msgstr "" + +#: src/gui/sysConf.cpp:901 +msgid "3.58MHz (Darky)" +msgstr "" + +#: src/gui/sysConf.cpp:905 +msgid "3.6MHz (Darky)" +msgstr "" + +#: src/gui/sysConf.cpp:917 +msgid "YM2149(F)" +msgstr "" + +#: src/gui/sysConf.cpp:921 +msgid "Sunsoft 5B" +msgstr "" + +#: src/gui/sysConf.cpp:925 +msgid "AY-3-8914" +msgstr "" + +#: src/gui/sysConf.cpp:931 +msgid "note: AY-3-8914 is not supported by the VGM format!" +msgstr "" + +#: src/gui/sysConf.cpp:935 +msgid "Stereo##_AY_STEREO" +msgstr "" + +#: src/gui/sysConf.cpp:940 +msgid "Separation" +msgstr "" + +#: src/gui/sysConf.cpp:949 +msgid "Half Clock divider##_AY_CLKSEL" +msgstr "" + +#: src/gui/sysConf.cpp:971 +msgid "SAM Coupé (8MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:975 +msgid "NTSC (7.15MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:979 +msgid "PAL (7.09MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:999 +msgid "Stereo separation:" +msgstr "" + +#: src/gui/sysConf.cpp:1006 src/gui/sysConf.cpp:2412 +msgid "Model:" +msgstr "" + +#: src/gui/sysConf.cpp:1008 +msgid "Amiga 500 (OCS)" +msgstr "" + +#: src/gui/sysConf.cpp:1012 +msgid "Amiga 1200 (AGA)" +msgstr "" + +#: src/gui/sysConf.cpp:1018 +msgid "Chip memory:" +msgstr "" + +#: src/gui/sysConf.cpp:1020 +msgid "2MB (ECS/AGA max)" +msgstr "" + +#: src/gui/sysConf.cpp:1030 +msgid "512KB (OCS max)" +msgstr "" + +#: src/gui/sysConf.cpp:1043 src/gui/sysConf.cpp:1081 src/gui/sysConf.cpp:2395 +#: src/gui/sysConf.cpp:2449 +msgid "PAL" +msgstr "" + +#: src/gui/sysConf.cpp:1046 +msgid "Bypass frequency limits" +msgstr "" + +#: src/gui/sysConf.cpp:1065 +msgid "Mixing mode:" +msgstr "" + +#: src/gui/sysConf.cpp:1067 src/gui/settings.cpp:3724 +msgid "Mono" +msgstr "" + +#: src/gui/sysConf.cpp:1071 +msgid "Mono (no distortion)" +msgstr "" + +#: src/gui/sysConf.cpp:1075 src/gui/sysConf.cpp:1197 src/gui/sysConf.cpp:1864 +#: src/gui/sysConf.cpp:2204 +msgid "Stereo" +msgstr "" + +#: src/gui/sysConf.cpp:1100 +msgid "1.19MHz (PC)" +msgstr "" + +#: src/gui/sysConf.cpp:1104 +msgid "1.99MHz (PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1108 +msgid "2.46MHz (PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1114 +msgid "Speaker type:" +msgstr "" + +#: src/gui/sysConf.cpp:1116 +msgid "Unfiltered" +msgstr "" + +#: src/gui/sysConf.cpp:1120 +msgid "Cone" +msgstr "" + +#: src/gui/sysConf.cpp:1124 +msgid "Piezo" +msgstr "" + +#: src/gui/sysConf.cpp:1128 +msgid "Use system beeper (Linux only!)" +msgstr "" + +#: src/gui/sysConf.cpp:1134 +msgid "Reset phase on frequency change" +msgstr "" + +#: src/gui/sysConf.cpp:1183 +msgid "16MHz (Seta 1)" +msgstr "" + +#: src/gui/sysConf.cpp:1187 +msgid "16.67MHz (Seta 2)" +msgstr "" + +#: src/gui/sysConf.cpp:1191 src/gui/sysConf.cpp:1759 +msgid "14.32MHz (NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:1201 +msgid "Bankswitched (Seta 2)" +msgstr "" + +#: src/gui/sysConf.cpp:1235 src/gui/sysConf.cpp:1261 +msgid "Initial channel limit:" +msgstr "" + +#: src/gui/sysConf.cpp:1241 src/gui/sysConf.cpp:2398 +msgid "Disable hissing" +msgstr "" + +#: src/gui/sysConf.cpp:1244 +msgid "Scale frequency to wave length" +msgstr "" + +#: src/gui/sysConf.cpp:1300 src/gui/sysConf.cpp:1722 +msgid "3.54MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:1304 src/gui/sysConf.cpp:1726 src/gui/sysConf.cpp:2290 +msgid "4MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1308 src/gui/sysConf.cpp:1730 +msgid "3MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1312 src/gui/sysConf.cpp:1734 +msgid "3.9936MHz (PC-88/PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1316 +msgid "1.5MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1321 src/gui/sysConf.cpp:1391 src/gui/sysConf.cpp:1639 +#: src/gui/sysConf.cpp:1852 +msgid "Output rate:" +msgstr "" + +#: src/gui/sysConf.cpp:1323 src/gui/sysConf.cpp:1397 +msgid "FM: clock / 72, SSG: clock / 16" +msgstr "" + +#: src/gui/sysConf.cpp:1327 +msgid "FM: clock / 36, SSG: clock / 8" +msgstr "" + +#: src/gui/sysConf.cpp:1331 +msgid "FM: clock / 24, SSG: clock / 4" +msgstr "" + +#: src/gui/sysConf.cpp:1343 +msgid "FM Volume" +msgstr "" + +#: src/gui/sysConf.cpp:1382 +msgid "8MHz (Arcade)" +msgstr "" + +#: src/gui/sysConf.cpp:1386 +msgid "7.987MHz (PC-88/PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1393 +msgid "FM: clock / 144, SSG: clock / 32" +msgstr "" + +#: src/gui/sysConf.cpp:1401 +msgid "FM: clock / 48, SSG: clock / 8" +msgstr "" + +#: src/gui/sysConf.cpp:1446 +msgid "8MHz (FM Towns)" +msgstr "" + +#: src/gui/sysConf.cpp:1450 +msgid "10MHz (Sega System 18)" +msgstr "" + +#: src/gui/sysConf.cpp:1454 +msgid "12.5MHz (Sega CD/System 32)" +msgstr "" + +#: src/gui/sysConf.cpp:1461 +msgid "RF5C68 (10-bit output)" +msgstr "" + +#: src/gui/sysConf.cpp:1465 +msgid "RF5C164 (16-bit output)" +msgstr "" + +#: src/gui/sysConf.cpp:1520 +msgid "Sample rate table:" +msgstr "" + +#: src/gui/sysConf.cpp:1524 +msgid "divider \\ clock" +msgstr "" + +#: src/gui/sysConf.cpp:1526 +msgid "full" +msgstr "" + +#: src/gui/sysConf.cpp:1528 +msgid "half" +msgstr "" + +#: src/gui/sysConf.cpp:1641 +msgid "clock / 132" +msgstr "" + +#: src/gui/sysConf.cpp:1645 +msgid "clock / 165" +msgstr "" + +#: src/gui/sysConf.cpp:1651 +msgid "Bankswitched (NMK112)" +msgstr "" + +#: src/gui/sysConf.cpp:1670 +msgid "1.79MHz (NTSC/MSX)" +msgstr "" + +#: src/gui/sysConf.cpp:1674 +msgid "1.77MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:1678 +msgid "1.5MHz (Arcade)" +msgstr "" + +#: src/gui/sysConf.cpp:1682 +msgid "2MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1697 +msgid "Consistent frequency across all duties" +msgstr "" + +#: src/gui/sysConf.cpp:1704 +msgid "note: only works for an initial LFSR value of 0!" +msgstr "" + +#: src/gui/sysConf.cpp:1738 +msgid "3.5MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1763 +msgid "14.19MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:1767 +msgid "14MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1771 +msgid "16MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1775 +msgid "15MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1779 +msgid "33.8688MHz (OPL3-L)" +msgstr "" + +#: src/gui/sysConf.cpp:1784 +msgid "OPL3 (YMF262)" +msgstr "" + +#: src/gui/sysConf.cpp:1788 +msgid "OPL3-L (YMF289B)" +msgstr "" + +#: src/gui/sysConf.cpp:1794 +msgid "Compatible panning (0800)" +msgstr "" + +#: src/gui/sysConf.cpp:1858 +msgid "Output bit depth:" +msgstr "" + +#: src/gui/sysConf.cpp:1868 +msgid "Interpolation:" +msgstr "" + +#: src/gui/sysConf.cpp:1874 src/gui/waveEdit.cpp:38 +msgid "Linear" +msgstr "" + +#: src/gui/sysConf.cpp:1878 src/gui/waveEdit.cpp:40 +msgid "Cubic" +msgstr "" + +#: src/gui/sysConf.cpp:1882 +msgid "Sinc" +msgstr "" + +#: src/gui/sysConf.cpp:1920 +msgid "Left##VolScaleL" +msgstr "" + +#: src/gui/sysConf.cpp:1925 +msgid "Right##VolScaleL" +msgstr "" + +#: src/gui/sysConf.cpp:1935 +msgid "Initial echo state:" +msgstr "" + +#: src/gui/sysConf.cpp:1955 +msgid "Delay##EchoDelay" +msgstr "" + +#: src/gui/sysConf.cpp:1961 +msgid "Feedback##EchoFeedback" +msgstr "" + +#: src/gui/sysConf.cpp:1968 +msgid "Left##EchoVolL" +msgstr "" + +#: src/gui/sysConf.cpp:1973 +msgid "Right##EchoVolL" +msgstr "" + +#: src/gui/sysConf.cpp:1979 +msgid "Echo filter:" +msgstr "" + +#: src/gui/sysConf.cpp:1989 +msgid "Hex##SNESFHex" +msgstr "" + +#: src/gui/sysConf.cpp:1989 +msgid "Dec##SNESFHex" +msgstr "" + +#: src/gui/sysConf.cpp:2031 +#, c-format +msgid "sum: %d" +msgstr "" + +#: src/gui/sysConf.cpp:2086 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:63 +#: src/gui/insEdit.cpp:75 +msgid "Detune" +msgstr "" + +#: src/gui/sysConf.cpp:2092 +msgid "Capacitor values (nF):" +msgstr "" + +#: src/gui/sysConf.cpp:2102 +msgid "Initial part volume (channel 1-4):" +msgstr "" + +#: src/gui/sysConf.cpp:2112 +msgid "Initial part volume (channel 5-8):" +msgstr "" + +#: src/gui/sysConf.cpp:2122 +msgid "Envelope mode (channel 1-4):" +msgstr "" + +#: src/gui/sysConf.cpp:2124 +msgid "Capacitor (attack/decay)##EM00" +msgstr "" + +#: src/gui/sysConf.cpp:2128 +msgid "External (volume macro)##EM01" +msgstr "" + +#: src/gui/sysConf.cpp:2134 +msgid "Envelope mode (channel 5-8):" +msgstr "" + +#: src/gui/sysConf.cpp:2136 +msgid "Capacitor (attack/decay)##EM10" +msgstr "" + +#: src/gui/sysConf.cpp:2140 +msgid "External (volume macro)##EM11" +msgstr "" + +#: src/gui/sysConf.cpp:2146 +msgid "Global vibrato:" +msgstr "" + +#: src/gui/sysConf.cpp:2153 +msgid "Depth" +msgstr "" + +#: src/gui/sysConf.cpp:2219 src/gui/sysConf.cpp:2373 +msgid "Waveform storage mode:" +msgstr "" + +#: src/gui/sysConf.cpp:2221 +msgid "RAM" +msgstr "" + +#: src/gui/sysConf.cpp:2225 +msgid "ROM (up to 8 waves)" +msgstr "" + +#: src/gui/sysConf.cpp:2241 +msgid "Compatible noise frequencies" +msgstr "" + +#: src/gui/sysConf.cpp:2256 +msgid "Legacy slides and pitch (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:2314 +msgid "PAL (1.77MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:2344 +msgid "Banking style:" +msgstr "" + +#: src/gui/sysConf.cpp:2346 +msgid "Namco System 2 (2MB)" +msgstr "" + +#: src/gui/sysConf.cpp:2351 +msgid "Namco System 21 (4MB)" +msgstr "" + +#: src/gui/sysConf.cpp:2356 +msgid "Raw (16MB; no VGM export!)" +msgstr "" + +#: src/gui/sysConf.cpp:2375 +msgid "Dynamic (unconfirmed)" +msgstr "" + +#: src/gui/sysConf.cpp:2379 +msgid "Static (up to 5 waves)" +msgstr "" + +#: src/gui/sysConf.cpp:2414 +msgid "DS (4MB RAM)" +msgstr "" + +#: src/gui/sysConf.cpp:2418 +msgid "DSi (16MB RAM)" +msgstr "" + +#: src/gui/sysConf.cpp:2444 src/gui/settings.cpp:727 +msgid "nothing to configure" +msgstr "" + +#: src/gui/sysConf.cpp:2467 +msgid "Custom clock rate" +msgstr "" + +#: src/gui/volMeter.cpp:36 src/gui/settings.cpp:3969 src/gui/guiConst.cpp:596 +msgid "Volume Meter" +msgstr "" + +#: src/gui/userPresets.cpp:325 +msgid "User Systems" +msgstr "" + +#: src/gui/userPresets.cpp:337 +msgid "Error! User category does not exist!" +msgstr "" + +#: src/gui/userPresets.cpp:346 src/gui/newSong.cpp:181 +msgid "Systems" +msgstr "" + +#: src/gui/userPresets.cpp:349 +msgid "New Preset" +msgstr "" + +#: src/gui/userPresets.cpp:361 +msgid "select a preset" +msgstr "" + +#: src/gui/userPresets.cpp:374 +msgid "Remove##UPresetRemove" +msgstr "" + +#: src/gui/userPresets.cpp:439 src/gui/settings.cpp:1135 +msgid "Configure" +msgstr "" + +#: src/gui/userPresets.cpp:470 +msgid "Advanced" +msgstr "" + +#: src/gui/userPresets.cpp:476 +msgid "" +"insert additional settings in `option=value` format.\n" +"available options:\n" +"- tickRate" +msgstr "" + +#: src/gui/userPresets.cpp:509 +msgid "Save and Close" +msgstr "" + +#: src/gui/userPresets.cpp:515 src/gui/settings.cpp:1238 +#: src/gui/settings.cpp:2161 src/gui/settings.cpp:2553 +#: src/gui/settings.cpp:3796 +msgid "Import" +msgstr "" + +#: src/gui/userPresets.cpp:519 +msgid "Import (replace)" +msgstr "" + +#: src/gui/effectList.cpp:14 src/gui/guiConst.cpp:606 +msgid "Effect List" +msgstr "" + +#: src/gui/effectList.cpp:18 +#, c-format +msgid "Chip at cursor: %s" +msgstr "" + +#: src/gui/effectList.cpp:21 src/gui/settings.cpp:6674 +msgid "Search" +msgstr "" + +#: src/gui/effectList.cpp:25 +msgid "Effect types to show:" +msgstr "" + +#: src/gui/effectList.cpp:47 +msgid "Description" +msgstr "" + +#: src/gui/subSongs.cpp:22 src/gui/subSongs.cpp:32 +#, c-format +msgid "%d. " +msgstr "" + +#: src/gui/subSongs.cpp:73 src/gui/subSongs.cpp:93 +msgid "too many subsongs!" +msgstr "" + +#: src/gui/subSongs.cpp:114 +msgid "this is the only subsong!" +msgstr "" + +#: src/gui/subSongs.cpp:116 +msgid "are you sure you want to remove this subsong?" +msgstr "" + +#: src/gui/spoiler.cpp:30 +msgid "Spoiler" +msgstr "" + +#: src/gui/spoiler.cpp:32 +msgid "SPOILER" +msgstr "" + +#: src/gui/settings.cpp:104 src/gui/settings.cpp:114 src/gui/settings.cpp:124 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:105 src/gui/settings.cpp:115 src/gui/settings.cpp:125 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:168 +msgid "ASAP (C++ port)" +msgstr "" + +#: src/gui/settings.cpp:191 +msgid "ESFMu (fast)" +msgstr "" + +#: src/gui/settings.cpp:205 +msgid "Lower" +msgstr "" + +#: src/gui/settings.cpp:207 +msgid "Medium" +msgstr "" + +#: src/gui/settings.cpp:209 +msgid "Ultra" +msgstr "" + +#: src/gui/settings.cpp:210 +msgid "Ultimate" +msgstr "" + +#: src/gui/settings.cpp:214 +msgid "evdev SND_TONE" +msgstr "" + +#: src/gui/settings.cpp:215 +msgid "KIOCSOUND on /dev/tty1" +msgstr "" + +#: src/gui/settings.cpp:216 +msgid "/dev/port" +msgstr "" + +#: src/gui/settings.cpp:217 +msgid "KIOCSOUND on standard output" +msgstr "" + +#: src/gui/settings.cpp:218 +msgid "outb()" +msgstr "" + +#: src/gui/settings.cpp:222 src/gui/settings.cpp:232 +msgid "Disabled/custom" +msgstr "" + +#: src/gui/settings.cpp:223 +msgid "Two octaves (0 is C-4, F is D#5)" +msgstr "" + +#: src/gui/settings.cpp:224 +msgid "Raw (note number is value)" +msgstr "" + +#: src/gui/settings.cpp:225 +msgid "Two octaves alternate (lower keys are 0-9, upper keys are A-F)" +msgstr "" + +#: src/gui/settings.cpp:226 src/gui/settings.cpp:233 +msgid "Use dual control change (one for each nibble)" +msgstr "" + +#: src/gui/settings.cpp:227 src/gui/settings.cpp:234 +msgid "Use 14-bit control change" +msgstr "" + +#: src/gui/settings.cpp:228 src/gui/settings.cpp:235 +msgid "Use single control change (imprecise)" +msgstr "" + +#: src/gui/settings.cpp:239 +msgid "--select--" +msgstr "" + +#: src/gui/settings.cpp:240 src/gui/settings.cpp:241 src/gui/settings.cpp:242 +#: src/gui/settings.cpp:243 src/gui/settings.cpp:244 src/gui/settings.cpp:245 +#: src/gui/settings.cpp:246 +msgid "???" +msgstr "" + +#: src/gui/settings.cpp:247 +msgid "Note Off" +msgstr "" + +#: src/gui/settings.cpp:248 +msgid "Note On" +msgstr "" + +#: src/gui/settings.cpp:249 +msgid "Aftertouch" +msgstr "" + +#: src/gui/settings.cpp:250 src/gui/insEdit.cpp:7187 src/gui/insEdit.cpp:7217 +#: src/gui/insEdit.cpp:7382 src/gui/insEdit.cpp:7403 src/gui/insEdit.cpp:7415 +#: src/gui/insEdit.cpp:7430 +msgid "Control" +msgstr "" + +#: src/gui/settings.cpp:251 src/gui/settings.cpp:573 src/gui/settings.cpp:3177 +msgid "Program" +msgstr "" + +#: src/gui/settings.cpp:252 +msgid "ChanPressure" +msgstr "" + +#: src/gui/settings.cpp:253 +msgid "Pitch Bend" +msgstr "" + +#: src/gui/settings.cpp:254 +msgid "SysEx" +msgstr "" + +#: src/gui/settings.cpp:258 src/gui/settings.cpp:1713 src/gui/settings.cpp:1723 +#: src/gui/settings.cpp:1743 src/gui/settings.cpp:1749 +#, c-format +msgid "Any" +msgstr "" + +#: src/gui/settings.cpp:262 src/gui/settings.cpp:3363 src/gui/settings.cpp:3928 +#: src/gui/settings.cpp:4121 +msgid "Instrument" +msgstr "" + +#: src/gui/settings.cpp:264 +msgid "Effect 1 type" +msgstr "" + +#: src/gui/settings.cpp:265 +msgid "Effect 1 value" +msgstr "" + +#: src/gui/settings.cpp:266 +msgid "Effect 2 type" +msgstr "" + +#: src/gui/settings.cpp:267 +msgid "Effect 2 value" +msgstr "" + +#: src/gui/settings.cpp:268 +msgid "Effect 3 type" +msgstr "" + +#: src/gui/settings.cpp:269 +msgid "Effect 3 value" +msgstr "" + +#: src/gui/settings.cpp:270 +msgid "Effect 4 type" +msgstr "" + +#: src/gui/settings.cpp:271 +msgid "Effect 4 value" +msgstr "" + +#: src/gui/settings.cpp:272 +msgid "Effect 5 type" +msgstr "" + +#: src/gui/settings.cpp:273 +msgid "Effect 5 value" +msgstr "" + +#: src/gui/settings.cpp:274 +msgid "Effect 6 type" +msgstr "" + +#: src/gui/settings.cpp:275 +msgid "Effect 6 value" +msgstr "" + +#: src/gui/settings.cpp:276 +msgid "Effect 7 type" +msgstr "" + +#: src/gui/settings.cpp:277 +msgid "Effect 7 value" +msgstr "" + +#: src/gui/settings.cpp:278 +msgid "Effect 8 type" +msgstr "" + +#: src/gui/settings.cpp:279 +msgid "Effect 8 value" +msgstr "" + +#: src/gui/settings.cpp:315 +msgid "Press key..." +msgstr "" + +#: src/gui/settings.cpp:564 +msgid "Do you want to save your settings?" +msgstr "" + +#: src/gui/settings.cpp:571 +msgid "General" +msgstr "" + +#: src/gui/settings.cpp:588 +msgid "Language" +msgstr "" + +#: src/gui/settings.cpp:606 +msgid "Render backend" +msgstr "" + +#: src/gui/settings.cpp:661 src/gui/settings.cpp:680 src/gui/settings.cpp:1312 +msgid "you may need to restart Furnace for this setting to take effect." +msgstr "" + +#: src/gui/settings.cpp:664 +msgid "Advanced render backend settings" +msgstr "" + +#: src/gui/settings.cpp:666 +msgid "Render driver" +msgstr "" + +#: src/gui/settings.cpp:666 src/gui/settings.cpp:667 src/gui/settings.cpp:1298 +#: src/gui/settings.cpp:1299 src/gui/piano.cpp:108 +msgid "Automatic" +msgstr "" + +#: src/gui/settings.cpp:683 +msgid "" +"beware: changing these settings may render Furnace unusable! do so at your " +"own risk.\n" +"start Furnace with -safemode if you mess something up." +msgstr "" + +#: src/gui/settings.cpp:684 +msgid "Red bits" +msgstr "" + +#: src/gui/settings.cpp:689 +msgid "Green bits" +msgstr "" + +#: src/gui/settings.cpp:694 +msgid "Blue bits" +msgstr "" + +#: src/gui/settings.cpp:699 +msgid "Alpha bits" +msgstr "" + +#: src/gui/settings.cpp:704 +msgid "Color depth" +msgstr "" + +#: src/gui/settings.cpp:709 +msgid "Stencil buffer size" +msgstr "" + +#: src/gui/settings.cpp:714 src/gui/settings.cpp:1385 +msgid "Buffer size" +msgstr "" + +#: src/gui/settings.cpp:720 +msgid "Double buffer" +msgstr "" + +#: src/gui/settings.cpp:725 +msgid "" +"the following values are common (in red, green, blue, alpha order):\n" +"- 24 bits: 8, 8, 8, 0\n" +"- 16 bits: 5, 6, 5, 0\n" +"- 32 bits (with alpha): 8, 8, 8, 8\n" +"- 30 bits (deep): 10, 10, 10, 0" +msgstr "" + +#: src/gui/settings.cpp:732 +#, c-format +msgid "" +"current backend: %s\n" +"%s\n" +"%s\n" +"%s" +msgstr "" + +#: src/gui/settings.cpp:735 +msgid "VSync" +msgstr "" + +#: src/gui/settings.cpp:743 +msgid "Frame rate limit" +msgstr "" + +#: src/gui/settings.cpp:743 +msgid "Unlimited" +msgstr "" + +#: src/gui/settings.cpp:749 +msgid "only applies when VSync is disabled." +msgstr "" + +#: src/gui/settings.cpp:753 +msgid "Display render time" +msgstr "" + +#: src/gui/settings.cpp:760 +msgid "Late render clear" +msgstr "" + +#: src/gui/settings.cpp:765 +msgid "" +"calls rend->clear() after rend->present(). might reduce UI latency by one " +"frame in some drivers." +msgstr "" + +#: src/gui/settings.cpp:770 +msgid "Power-saving mode" +msgstr "" + +#: src/gui/settings.cpp:775 +msgid "" +"saves power by lowering the frame rate to 2fps when idle.\n" +"may cause issues under Mesa drivers!" +msgstr "" + +#: src/gui/settings.cpp:780 +msgid "Disable threaded input (restart after changing!)" +msgstr "" + +#: src/gui/settings.cpp:785 +msgid "" +"threaded input processes key presses for note preview on a separate thread " +"(on supported platforms), which reduces latency.\n" +"however, crashes have been reported when threaded input is on. enable this " +"option if that is the case." +msgstr "" + +#: src/gui/settings.cpp:790 +msgid "Enable event delay" +msgstr "" + +#: src/gui/settings.cpp:796 +msgid "may cause issues with high-polling-rate mice when previewing notes." +msgstr "" + +#: src/gui/settings.cpp:800 +msgid "Per-channel oscilloscope threads" +msgstr "" + +#: src/gui/settings.cpp:808 +msgid "you're being silly, aren't you? that's enough." +msgstr "" + +#: src/gui/settings.cpp:812 +msgid "what are you doing? stop!" +msgstr "" + +#: src/gui/settings.cpp:816 +#, c-format +msgid "" +"it is a bad idea to set this number higher than your CPU core count (%d)!" +msgstr "" + +#: src/gui/settings.cpp:821 +msgid "Oscilloscope rendering engine:" +msgstr "" + +#: src/gui/settings.cpp:823 +msgid "ImGui line plot" +msgstr "" + +#: src/gui/settings.cpp:827 +msgid "render using Dear ImGui's built-in line drawing functions." +msgstr "" + +#: src/gui/settings.cpp:829 +msgid "GLSL (if available)" +msgstr "" + +#: src/gui/settings.cpp:834 +msgid "" +"render using shaders that run on the graphics card.\n" +"only available in OpenGL ES 2.0 render backend." +msgstr "" + +#: src/gui/settings.cpp:836 +msgid "" +"render using shaders that run on the graphics card.\n" +"only available in OpenGL 3.0 render backend." +msgstr "" + +#: src/gui/settings.cpp:843 +msgid "Vibration" +msgstr "" + +#: src/gui/settings.cpp:845 +msgid "Strength" +msgstr "" + +#: src/gui/settings.cpp:851 src/gui/insEdit.cpp:2284 src/gui/insEdit.cpp:2382 +#: src/gui/insEdit.cpp:5582 src/gui/insEdit.cpp:6241 +msgid "Length" +msgstr "" + +#: src/gui/settings.cpp:859 src/gui/gui.cpp:4191 +msgid "File" +msgstr "" + +#: src/gui/settings.cpp:862 +msgid "Use system file picker" +msgstr "" + +#: src/gui/settings.cpp:867 +msgid "Number of recent files" +msgstr "" + +#: src/gui/settings.cpp:874 +msgid "Compress when saving" +msgstr "" + +#: src/gui/settings.cpp:879 +msgid "use zlib to compress saved songs." +msgstr "" + +#: src/gui/settings.cpp:883 +msgid "Save unused patterns" +msgstr "" + +#: src/gui/settings.cpp:889 +msgid "Use new pattern format when saving" +msgstr "" + +#: src/gui/settings.cpp:894 +msgid "" +"use a packed format which saves space when saving songs.\n" +"disable if you need compatibility with older Furnace and/or tools\n" +"which do not support this format." +msgstr "" + +#: src/gui/settings.cpp:898 +msgid "Don't apply compatibility flags when loading .dmf" +msgstr "" + +#: src/gui/settings.cpp:903 +msgid "do not report any issues arising from the use of this option!" +msgstr "" + +#: src/gui/settings.cpp:906 +msgid "Play after opening song:" +msgstr "" + +#: src/gui/settings.cpp:908 +msgid "No##pol0" +msgstr "" + +#: src/gui/settings.cpp:912 +msgid "Only if already playing##pol1" +msgstr "" + +#: src/gui/settings.cpp:916 +msgid "Yes##pol0" +msgstr "" + +#: src/gui/settings.cpp:922 +msgid "Audio export loop/fade out time:" +msgstr "" + +#: src/gui/settings.cpp:924 +msgid "Set to these values on start-up:##fot0" +msgstr "" + +#: src/gui/settings.cpp:942 +msgid "Remember last values##fot1" +msgstr "" + +#: src/gui/settings.cpp:949 +msgid "Store instrument name in .fui" +msgstr "" + +#: src/gui/settings.cpp:954 +msgid "" +"when enabled, saving an instrument will store its name.\n" +"this may increase file size." +msgstr "" + +#: src/gui/settings.cpp:958 +msgid "Load instrument name from .fui" +msgstr "" + +#: src/gui/settings.cpp:963 +msgid "" +"when enabled, loading an instrument will use the stored name (if present).\n" +"otherwise, it will use the file name." +msgstr "" + +#: src/gui/settings.cpp:967 +msgid "Auto-fill file name when saving" +msgstr "" + +#: src/gui/settings.cpp:972 +msgid "" +"fill the file name field with an appropriate file name when saving or " +"exporting." +msgstr "" + +#: src/gui/settings.cpp:976 src/gui/gui.cpp:5563 src/gui/gui.cpp:5613 +msgid "New Song" +msgstr "" + +#: src/gui/settings.cpp:978 +msgid "Initial system:" +msgstr "" + +#: src/gui/settings.cpp:980 +msgid "Current system" +msgstr "" + +#: src/gui/settings.cpp:993 src/gui/waveEdit.cpp:1149 src/gui/gui.cpp:3046 +msgid "Randomize" +msgstr "" + +#: src/gui/settings.cpp:1043 +msgid "Reset to defaults" +msgstr "" + +#: src/gui/settings.cpp:1178 +msgid "When creating new song:" +msgstr "" + +#: src/gui/settings.cpp:1180 +msgid "Display system preset selector##NSB0" +msgstr "" + +#: src/gui/settings.cpp:1184 +msgid "Start with initial system##NSB1" +msgstr "" + +#: src/gui/settings.cpp:1188 +msgid "Default author name" +msgstr "" + +#: src/gui/settings.cpp:1192 +msgid "Start-up" +msgstr "" + +#: src/gui/settings.cpp:1193 +msgid "Play intro on start-up:" +msgstr "" + +#: src/gui/settings.cpp:1195 +msgid "No##pis0" +msgstr "" + +#: src/gui/settings.cpp:1199 +msgid "Short##pis1" +msgstr "" + +#: src/gui/settings.cpp:1203 +msgid "Full (short when loading song)##pis2" +msgstr "" + +#: src/gui/settings.cpp:1207 +msgid "Full (always)##pis3" +msgstr "" + +#: src/gui/settings.cpp:1214 +msgid "Disable fade-in during start-up" +msgstr "" + +#: src/gui/settings.cpp:1220 +msgid "About screen party time" +msgstr "" + +#: src/gui/settings.cpp:1225 +msgid "Warning: may cause epileptic seizures." +msgstr "" + +#: src/gui/settings.cpp:1229 +msgid "Behavior" +msgstr "" + +#: src/gui/settings.cpp:1231 +msgid "New instruments are blank" +msgstr "" + +#: src/gui/settings.cpp:1237 src/gui/settings.cpp:4255 +msgid "Configuration" +msgstr "" + +#: src/gui/settings.cpp:1246 +msgid "Factory Reset" +msgstr "" + +#: src/gui/settings.cpp:1247 +msgid "" +"Are you sure you want to reset all Furnace settings?\n" +"You must restart Furnace after doing so." +msgstr "" + +#: src/gui/settings.cpp:1255 +msgid "Output" +msgstr "" + +#: src/gui/settings.cpp:1263 +msgid "Backend" +msgstr "" + +#: src/gui/settings.cpp:1296 +msgid "Driver" +msgstr "" + +#: src/gui/settings.cpp:1319 +msgid "Device" +msgstr "" + +#: src/gui/settings.cpp:1323 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:1324 +msgid "ALERT - TRESPASSER DETECTED" +msgstr "" + +#: src/gui/settings.cpp:1326 +msgid "you have been arrested for trying to engage with a disabled combo box." +msgstr "" + +#: src/gui/settings.cpp:1333 src/gui/settings.cpp:1335 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:1371 src/gui/insEdit.cpp:7186 +msgid "Outputs" +msgstr "" + +#: src/gui/settings.cpp:1379 +msgid "" +"common values:\n" +"- 1 for mono\n" +"- 2 for stereo\n" +"- 4 for quadraphonic\n" +"- 6 for 5.1 surround\n" +"- 8 for 7.1 surround" +msgstr "" + +#: src/gui/settings.cpp:1387 +#, c-format +msgid "%d (latency: ~%.1fms)" +msgstr "" + +#: src/gui/settings.cpp:1402 +msgid "Multi-threaded (EXPERIMENTAL)" +msgstr "" + +#: src/gui/settings.cpp:1411 +msgid "" +"runs chip emulation on separate threads.\n" +"may increase performance when using heavy emulation cores.\n" +"\n" +"warnings:\n" +"- experimental!\n" +"- only useful on multi-chip songs." +msgstr "" + +#: src/gui/settings.cpp:1416 +msgid "Number of threads" +msgstr "" + +#: src/gui/settings.cpp:1423 +msgid "that's the limit!" +msgstr "" + +#: src/gui/settings.cpp:1427 +#, c-format +msgid "" +"it is a VERY bad idea to set this number higher than your CPU core count " +"(%d)!" +msgstr "" + +#: src/gui/settings.cpp:1435 +msgid "Low-latency mode" +msgstr "" + +#: src/gui/settings.cpp:1440 +msgid "" +"reduces latency by running the engine faster than the tick rate.\n" +"useful for live playback/jam mode.\n" +"\n" +"warning: only enable if your buffer size is small (10ms or less)." +msgstr "" + +#: src/gui/settings.cpp:1444 +msgid "Force mono audio" +msgstr "" + +#: src/gui/settings.cpp:1452 +msgid "Exclusive mode" +msgstr "" + +#: src/gui/settings.cpp:1463 +#, c-format +msgid "want: %d samples @ %.0fHz (%d channel)" +msgid_plural "want: %d samples @ %.0fHz (%d channels)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/gui/settings.cpp:1464 +#, c-format +msgid "got: %d samples @ %.0fHz (%d channel)" +msgid_plural "got: %d samples @ %.0fHz (%d channels)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/gui/settings.cpp:1471 +msgid "Mixing" +msgstr "" + +#: src/gui/settings.cpp:1473 src/gui/settings.cpp:2082 +msgid "Quality" +msgstr "" + +#: src/gui/settings.cpp:1478 +msgid "Software clipping" +msgstr "" + +#: src/gui/settings.cpp:1484 +msgid "DC offset correction" +msgstr "" + +#: src/gui/settings.cpp:1502 src/gui/guiConst.cpp:740 +msgid "Sample preview" +msgstr "" + +#: src/gui/settings.cpp:1515 +msgid "MIDI" +msgstr "" + +#: src/gui/settings.cpp:1517 src/gui/settings.cpp:1519 +msgid "MIDI input" +msgstr "" + +#: src/gui/settings.cpp:1521 src/gui/settings.cpp:1524 +#: src/gui/settings.cpp:1815 src/gui/settings.cpp:1817 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:1540 +msgid "Re-scan MIDI devices" +msgstr "" + +#: src/gui/settings.cpp:1551 src/gui/settings.cpp:2258 +msgid "Note input" +msgstr "" + +#: src/gui/settings.cpp:1552 +msgid "Velocity input" +msgstr "" + +#: src/gui/settings.cpp:1556 +msgid "Map MIDI channels to direct channels" +msgstr "" + +#: src/gui/settings.cpp:1562 +msgid "Program change pass-through" +msgstr "" + +#: src/gui/settings.cpp:1567 +msgid "Map Yamaha FM voice data to instruments" +msgstr "" + +#: src/gui/settings.cpp:1569 +msgid "Program change is instrument selection" +msgstr "" + +#: src/gui/settings.cpp:1573 +msgid "Value input style" +msgstr "" + +#: src/gui/settings.cpp:1576 src/gui/settings.cpp:1601 +msgid "Control##valueCCS" +msgstr "" + +#: src/gui/settings.cpp:1582 src/gui/settings.cpp:1607 +msgid "CC of upper nibble##valueCC1" +msgstr "" + +#: src/gui/settings.cpp:1582 src/gui/settings.cpp:1607 +msgid "MSB CC##valueCC1" +msgstr "" + +#: src/gui/settings.cpp:1587 src/gui/settings.cpp:1612 +msgid "CC of lower nibble##valueCC2" +msgstr "" + +#: src/gui/settings.cpp:1587 src/gui/settings.cpp:1612 +msgid "LSB CC##valueCC2" +msgstr "" + +#: src/gui/settings.cpp:1594 +msgid "Per-column control change" +msgstr "" + +#: src/gui/settings.cpp:1624 src/gui/settings.cpp:1634 +msgid "Volume curve" +msgstr "" + +#: src/gui/settings.cpp:1637 +msgid "Actions:" +msgstr "" + +#: src/gui/settings.cpp:1651 +msgid "" +"(learning! press a button or move a slider/knob/something on your device.)" +msgstr "" + +#: src/gui/settings.cpp:1665 src/gui/settings.cpp:2277 +#: src/gui/settings.cpp:6687 src/gui/sampleEdit.cpp:501 +#: src/gui/insEdit.cpp:5321 +msgid "Type" +msgstr "" + +#: src/gui/settings.cpp:1669 +msgid "Note/Control" +msgstr "" + +#: src/gui/settings.cpp:1671 +msgid "Velocity/Value" +msgstr "" + +#: src/gui/settings.cpp:1673 +msgid "Action" +msgstr "" + +#: src/gui/settings.cpp:1765 src/gui/settings.cpp:1766 +msgid "--none--" +msgstr "" + +#: src/gui/settings.cpp:1787 +msgid "waiting...##BLearn" +msgstr "" + +#: src/gui/settings.cpp:1787 +msgid "Learn##BLearn" +msgstr "" + +#: src/gui/settings.cpp:1811 src/gui/settings.cpp:1813 +msgid "MIDI output" +msgstr "" + +#: src/gui/settings.cpp:1830 +msgid "Output mode:" +msgstr "" + +#: src/gui/settings.cpp:1832 +msgid "Off (use for TX81Z)" +msgstr "" + +#: src/gui/settings.cpp:1836 +msgid "Melodic" +msgstr "" + +#: src/gui/settings.cpp:1847 +msgid "Send Program Change" +msgstr "" + +#: src/gui/settings.cpp:1853 +msgid "Send MIDI clock" +msgstr "" + +#: src/gui/settings.cpp:1859 +msgid "Send MIDI timecode" +msgstr "" + +#: src/gui/settings.cpp:1865 +msgid "Timecode frame rate:" +msgstr "" + +#: src/gui/settings.cpp:1867 +msgid "Closest to Tick Rate" +msgstr "" + +#: src/gui/settings.cpp:1871 +msgid "Film (24fps)" +msgstr "" + +#: src/gui/settings.cpp:1875 +msgid "PAL (25fps)" +msgstr "" + +#: src/gui/settings.cpp:1879 +msgid "NTSC drop (29.97fps)" +msgstr "" + +#: src/gui/settings.cpp:1883 +msgid "NTSC non-drop (30fps)" +msgstr "" + +#: src/gui/settings.cpp:1892 +msgid "Emulation" +msgstr "" + +#: src/gui/settings.cpp:1894 +msgid "Cores" +msgstr "" + +#: src/gui/settings.cpp:1903 +msgid "Playback Core(s)" +msgstr "" + +#: src/gui/settings.cpp:1905 src/gui/settings.cpp:2093 +msgid "used for playback" +msgstr "" + +#: src/gui/settings.cpp:1908 +msgid "Render Core(s)" +msgstr "" + +#: src/gui/settings.cpp:1910 src/gui/settings.cpp:2098 +msgid "used in audio export" +msgstr "" + +#: src/gui/settings.cpp:2091 +msgid "Playback" +msgstr "" + +#: src/gui/settings.cpp:2096 +msgid "Render" +msgstr "" + +#: src/gui/settings.cpp:2120 +msgid "PC Speaker strategy" +msgstr "" + +#: src/gui/settings.cpp:2158 src/gui/settings.cpp:2160 +msgid "Keyboard" +msgstr "" + +#: src/gui/settings.cpp:2169 src/gui/settings.cpp:3804 +msgid "Reset defaults" +msgstr "" + +#: src/gui/settings.cpp:2170 +msgid "Are you sure you want to reset the keyboard settings?" +msgstr "" + +#: src/gui/settings.cpp:2172 +msgid "Global hotkeys" +msgstr "" + +#: src/gui/settings.cpp:2209 +msgid "Window activation" +msgstr "" + +#: src/gui/settings.cpp:2275 +msgid "Key" +msgstr "" + +#: src/gui/settings.cpp:2279 src/gui/findReplace.cpp:725 +#: src/gui/findReplace.cpp:1003 +msgid "Value" +msgstr "" + +#: src/gui/settings.cpp:2289 +#, c-format +msgid "Macro release##SNType_%d" +msgstr "" + +#: src/gui/settings.cpp:2294 +#, c-format +msgid "Note release##SNType_%d" +msgstr "" + +#: src/gui/settings.cpp:2299 +#, c-format +msgid "Note off##SNType_%d" +msgstr "" + +#: src/gui/settings.cpp:2304 +#, c-format +msgid "Note##SNType_%d" +msgstr "" + +#: src/gui/settings.cpp:2328 +msgid "Add..." +msgstr "" + +#: src/gui/settings.cpp:2418 +msgid "Instrument list" +msgstr "" + +#: src/gui/settings.cpp:2438 +msgid "Wavetable list" +msgstr "" + +#: src/gui/settings.cpp:2459 +msgid "Sample list" +msgstr "" + +#: src/gui/settings.cpp:2509 +msgid "Sample editor" +msgstr "" + +#: src/gui/settings.cpp:2547 src/gui/settings.cpp:3814 +#: src/gui/settings.cpp:3844 +msgid "Interface" +msgstr "" + +#: src/gui/settings.cpp:2549 +msgid "Layout" +msgstr "" + +#: src/gui/settings.cpp:2551 +msgid "Workspace layout:" +msgstr "" + +#: src/gui/settings.cpp:2561 src/gui/gui.cpp:2920 +msgid "Reset" +msgstr "" + +#: src/gui/settings.cpp:2562 src/gui/gui.cpp:4455 +msgid "Are you sure you want to reset the workspace layout?" +msgstr "" + +#: src/gui/settings.cpp:2566 +msgid "Allow docking editors" +msgstr "" + +#: src/gui/settings.cpp:2573 +msgid "Remember window position" +msgstr "" + +#: src/gui/settings.cpp:2578 +msgid "remembers the window's last position on start-up." +msgstr "" + +#: src/gui/settings.cpp:2583 +msgid "Only allow window movement when clicking on title bar" +msgstr "" + +#: src/gui/settings.cpp:2590 +msgid "Center pop-up windows" +msgstr "" + +#: src/gui/settings.cpp:2595 +msgid "Play/edit controls layout:" +msgstr "" + +#: src/gui/settings.cpp:2597 +msgid "Classic##ecl0" +msgstr "" + +#: src/gui/settings.cpp:2601 +msgid "Compact##ecl1" +msgstr "" + +#: src/gui/settings.cpp:2605 +msgid "Compact (vertical)##ecl2" +msgstr "" + +#: src/gui/settings.cpp:2609 +msgid "Split##ecl3" +msgstr "" + +#: src/gui/settings.cpp:2615 +msgid "Position of buttons in Orders:" +msgstr "" + +#: src/gui/settings.cpp:2617 +msgid "Top##obp0" +msgstr "" + +#: src/gui/settings.cpp:2621 +msgid "Left##obp1" +msgstr "" + +#: src/gui/settings.cpp:2625 +msgid "Right##obp2" +msgstr "" + +#: src/gui/settings.cpp:2632 +msgid "Mouse" +msgstr "" + +#: src/gui/settings.cpp:2634 +msgid "Double-click time (seconds)" +msgstr "" + +#: src/gui/settings.cpp:2643 +msgid "Don't raise pattern editor on click" +msgstr "" + +#: src/gui/settings.cpp:2649 +msgid "Focus pattern editor when selecting instrument" +msgstr "" + +#: src/gui/settings.cpp:2654 +msgid "Note preview behavior:" +msgstr "" + +#: src/gui/settings.cpp:2656 +msgid "Never##npb0" +msgstr "" + +#: src/gui/settings.cpp:2660 +msgid "When cursor is in Note column##npb1" +msgstr "" + +#: src/gui/settings.cpp:2664 +msgid "When cursor is in Note column or not in edit mode##npb2" +msgstr "" + +#: src/gui/settings.cpp:2668 +msgid "Always##npb3" +msgstr "" + +#: src/gui/settings.cpp:2674 +msgid "Allow dragging selection:" +msgstr "" + +#: src/gui/settings.cpp:2676 +msgid "No##dms0" +msgstr "" + +#: src/gui/settings.cpp:2680 +msgid "Yes##dms1" +msgstr "" + +#: src/gui/settings.cpp:2684 +msgid "Yes (while holding Ctrl only)##dms2" +msgstr "" + +#: src/gui/settings.cpp:2690 +msgid "Toggle channel solo on:" +msgstr "" + +#: src/gui/settings.cpp:2692 +msgid "Right-click or double-click##soloA" +msgstr "" + +#: src/gui/settings.cpp:2696 +msgid "Right-click##soloR" +msgstr "" + +#: src/gui/settings.cpp:2700 +msgid "Double-click##soloD" +msgstr "" + +#: src/gui/settings.cpp:2707 +msgid "Double click selects entire column" +msgstr "" + +#: src/gui/settings.cpp:2713 +msgid "Cursor behavior" +msgstr "" + +#: src/gui/settings.cpp:2715 +msgid "Insert pushes entire channel row" +msgstr "" + +#: src/gui/settings.cpp:2721 +msgid "Pull delete affects entire channel row" +msgstr "" + +#: src/gui/settings.cpp:2727 +msgid "Push value when overwriting instead of clearing it" +msgstr "" + +#: src/gui/settings.cpp:2733 +msgid "Keyboard note/value input repeat (hold key to input continuously)" +msgstr "" + +#: src/gui/settings.cpp:2738 +msgid "Effect input behavior:" +msgstr "" + +#: src/gui/settings.cpp:2740 +msgid "Move down##eicb0" +msgstr "" + +#: src/gui/settings.cpp:2744 +msgid "Move to effect value (otherwise move down)##eicb1" +msgstr "" + +#: src/gui/settings.cpp:2748 +msgid "Move to effect value/next effect and wrap around##eicb2" +msgstr "" + +#: src/gui/settings.cpp:2755 +msgid "Delete effect value when deleting effect" +msgstr "" + +#: src/gui/settings.cpp:2761 +msgid "Change current instrument when changing instrument column (absorb)" +msgstr "" + +#: src/gui/settings.cpp:2767 +msgid "Remove instrument value when inserting note off/release" +msgstr "" + +#: src/gui/settings.cpp:2773 +msgid "Remove volume value when inserting note off/release" +msgstr "" + +#: src/gui/settings.cpp:2779 +msgid "Cursor movement" +msgstr "" + +#: src/gui/settings.cpp:2781 +msgid "Wrap horizontally:" +msgstr "" + +#: src/gui/settings.cpp:2783 +msgid "No##wrapH0" +msgstr "" + +#: src/gui/settings.cpp:2787 +msgid "Yes##wrapH1" +msgstr "" + +#: src/gui/settings.cpp:2791 +msgid "Yes, and move to next/prev row##wrapH2" +msgstr "" + +#: src/gui/settings.cpp:2797 +msgid "Wrap vertically:" +msgstr "" + +#: src/gui/settings.cpp:2799 +msgid "No##wrapV0" +msgstr "" + +#: src/gui/settings.cpp:2803 +msgid "Yes##wrapV1" +msgstr "" + +#: src/gui/settings.cpp:2807 +msgid "Yes, and move to next/prev pattern##wrapV2" +msgstr "" + +#: src/gui/settings.cpp:2811 +msgid "Yes, and move to next/prev pattern (wrap around)##wrapV2" +msgstr "" + +#: src/gui/settings.cpp:2817 +msgid "Cursor movement keys behavior:" +msgstr "" + +#: src/gui/settings.cpp:2819 +msgid "Move by one##cmk0" +msgstr "" + +#: src/gui/settings.cpp:2823 +msgid "Move by Edit Step##cmk1" +msgstr "" + +#: src/gui/settings.cpp:2830 +msgid "Move cursor by edit step on delete" +msgstr "" + +#: src/gui/settings.cpp:2836 +msgid "Move cursor by edit step on insert (push)" +msgstr "" + +#: src/gui/settings.cpp:2842 +msgid "Move cursor up on backspace-delete" +msgstr "" + +#: src/gui/settings.cpp:2848 +msgid "Move cursor to end of clipboard content when pasting" +msgstr "" + +#: src/gui/settings.cpp:2854 +msgid "Scrolling" +msgstr "" + +#: src/gui/settings.cpp:2856 +msgid "Change order when scrolling outside of pattern bounds:" +msgstr "" + +#: src/gui/settings.cpp:2858 +msgid "No##pscroll0" +msgstr "" + +#: src/gui/settings.cpp:2862 +msgid "Yes##pscroll1" +msgstr "" + +#: src/gui/settings.cpp:2866 +msgid "Yes, and wrap around song##pscroll2" +msgstr "" + +#: src/gui/settings.cpp:2873 +msgid "Cursor follows current order when moving it" +msgstr "" + +#: src/gui/settings.cpp:2878 +msgid "applies when playback is stopped." +msgstr "" + +#: src/gui/settings.cpp:2882 +msgid "Don't scroll when moving cursor" +msgstr "" + +#: src/gui/settings.cpp:2887 +msgid "Move cursor with scroll wheel:" +msgstr "" + +#: src/gui/settings.cpp:2889 +msgid "No##csw0" +msgstr "" + +#: src/gui/settings.cpp:2893 +msgid "Yes##csw1" +msgstr "" + +#: src/gui/settings.cpp:2897 +msgid "Inverted##csw2" +msgstr "" + +#: src/gui/settings.cpp:2904 +msgid "How many steps to move with each scroll wheel step?" +msgstr "" + +#: src/gui/settings.cpp:2905 +msgid "One##cws0" +msgstr "" + +#: src/gui/settings.cpp:2909 +msgid "Edit Step##cws1" +msgstr "" + +#: src/gui/settings.cpp:2916 src/gui/settings.cpp:3531 +msgid "Assets" +msgstr "" + +#: src/gui/settings.cpp:2919 +msgid "Display instrument type menu when adding instrument" +msgstr "" + +#: src/gui/settings.cpp:2925 +msgid "Select asset after opening one" +msgstr "" + +#: src/gui/settings.cpp:2932 +msgid "Appearance" +msgstr "" + +#: src/gui/settings.cpp:2934 +msgid "Scaling" +msgstr "" + +#: src/gui/settings.cpp:2936 +msgid "Automatic UI scaling factor" +msgstr "" + +#: src/gui/settings.cpp:2945 +msgid "UI scaling factor" +msgstr "" + +#: src/gui/settings.cpp:2952 +msgid "Icon size" +msgstr "" + +#: src/gui/settings.cpp:2967 +msgid "Font renderer" +msgstr "" + +#: src/gui/settings.cpp:2977 +msgid "Main font" +msgstr "" + +#: src/gui/settings.cpp:2988 +msgid "Size##MainFontSize" +msgstr "" + +#: src/gui/settings.cpp:2996 +msgid "Header font" +msgstr "" + +#: src/gui/settings.cpp:3007 +msgid "Size##HeadFontSize" +msgstr "" + +#: src/gui/settings.cpp:3015 +msgid "Pattern font" +msgstr "" + +#: src/gui/settings.cpp:3026 +msgid "Size##PatFontSize" +msgstr "" + +#: src/gui/settings.cpp:3036 +msgid "Anti-aliased fonts" +msgstr "" + +#: src/gui/settings.cpp:3042 +msgid "Support bitmap fonts" +msgstr "" + +#: src/gui/settings.cpp:3047 +msgid "Hinting:" +msgstr "" + +#: src/gui/settings.cpp:3049 +msgid "Off (soft)##fh0" +msgstr "" + +#: src/gui/settings.cpp:3053 +msgid "Slight##fh1" +msgstr "" + +#: src/gui/settings.cpp:3057 +msgid "Normal##fh2" +msgstr "" + +#: src/gui/settings.cpp:3061 +msgid "Full (hard)##fh3" +msgstr "" + +#: src/gui/settings.cpp:3067 +msgid "Auto-hinter:" +msgstr "" + +#: src/gui/settings.cpp:3069 +msgid "Disable##fah0" +msgstr "" + +#: src/gui/settings.cpp:3073 +msgid "Enable##fah1" +msgstr "" + +#: src/gui/settings.cpp:3077 +msgid "Force##fah2" +msgstr "" + +#: src/gui/settings.cpp:3084 +msgid "Oversample" +msgstr "" + +#: src/gui/settings.cpp:3087 +msgid "1×##fos1" +msgstr "" + +#: src/gui/settings.cpp:3092 +msgid "" +"saves video memory. reduces font rendering quality.\n" +"use for pixel/bitmap fonts." +msgstr "" + +#: src/gui/settings.cpp:3095 +msgid "2×##fos2" +msgstr "" + +#: src/gui/settings.cpp:3100 +msgid "default." +msgstr "" + +#: src/gui/settings.cpp:3103 +msgid "3×##fos3" +msgstr "" + +#: src/gui/settings.cpp:3108 +msgid "" +"slightly better font rendering quality.\n" +"uses more video memory." +msgstr "" + +#: src/gui/settings.cpp:3112 +msgid "Load fallback font" +msgstr "" + +#: src/gui/settings.cpp:3117 +msgid "disable to save video memory." +msgstr "" + +#: src/gui/settings.cpp:3121 +msgid "Display Japanese characters" +msgstr "" + +#: src/gui/settings.cpp:3127 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"このオプションは、十分なグラフィックメモリがある場合にのみ切り替えてくださ" +"い。\n" +"これは、Dear ImGuiにダイナミックフォントアトラスが実装されるまでの一時的な解" +"決策です。" +msgstr "" + +#: src/gui/settings.cpp:3135 +msgid "Display Chinese (Simplified) characters" +msgstr "" + +#: src/gui/settings.cpp:3141 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"请在确保你有足够的显存后再启动此设定\n" +"这是一个在ImGui实现动态字体加载之前的临时解决方案" +msgstr "" + +#: src/gui/settings.cpp:3149 +msgid "Display Chinese (Traditional) characters" +msgstr "" + +#: src/gui/settings.cpp:3155 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"請在確保你有足夠的顯存后再啟動此設定\n" +"這是一個在ImGui實現動態字體加載之前的臨時解決方案" +msgstr "" + +#: src/gui/settings.cpp:3163 +msgid "Display Korean characters" +msgstr "" + +#: src/gui/settings.cpp:3169 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"그래픽 메모리가 충분한 경우에만 이 옵션을 선택하십시오.\n" +"이 옵션은 Dear ImGui에 동적 글꼴 아틀라스가 구현될 때까지 임시 솔루션입니다." +msgstr "" + +#: src/gui/settings.cpp:3178 +msgid "Title bar:" +msgstr "" + +#: src/gui/settings.cpp:3180 +msgid "Furnace##tbar0" +msgstr "" + +#: src/gui/settings.cpp:3185 +msgid "Song Name - Furnace##tbar1" +msgstr "" + +#: src/gui/settings.cpp:3190 +msgid "file_name.fur - Furnace##tbar2" +msgstr "" + +#: src/gui/settings.cpp:3195 +msgid "/path/to/file.fur - Furnace##tbar3" +msgstr "" + +#: src/gui/settings.cpp:3203 +msgid "Display system name on title bar" +msgstr "" + +#: src/gui/settings.cpp:3210 +msgid "Display chip names instead of \"multi-system\" in title bar" +msgstr "" + +#: src/gui/settings.cpp:3216 +msgid "Status bar:" +msgstr "" + +#: src/gui/settings.cpp:3218 +msgid "Cursor details##sbar0" +msgstr "" + +#: src/gui/settings.cpp:3222 +msgid "File path##sbar1" +msgstr "" + +#: src/gui/settings.cpp:3226 +msgid "Cursor details or file path##sbar2" +msgstr "" + +#: src/gui/settings.cpp:3230 +msgid "Nothing##sbar3" +msgstr "" + +#: src/gui/settings.cpp:3237 +msgid "Display playback status when playing" +msgstr "" + +#: src/gui/settings.cpp:3242 +msgid "Export options layout:" +msgstr "" + +#: src/gui/settings.cpp:3244 +msgid "Sub-menus in File menu##eol0" +msgstr "" + +#: src/gui/settings.cpp:3248 +msgid "Modal window with tabs##eol1" +msgstr "" + +#: src/gui/settings.cpp:3252 +msgid "Modal windows with options in File menu##eol2" +msgstr "" + +#: src/gui/settings.cpp:3259 +msgid "Capitalize menu bar" +msgstr "" + +#: src/gui/settings.cpp:3265 +msgid "Display add/configure/change/remove chip menus in File menu" +msgstr "" + +#: src/gui/settings.cpp:3279 +msgid "Highlight channel at cursor in Orders" +msgstr "" + +#: src/gui/settings.cpp:3284 +msgid "Orders row number format:" +msgstr "" + +#: src/gui/settings.cpp:3286 +msgid "Decimal##orbD" +msgstr "" + +#: src/gui/settings.cpp:3290 +msgid "Hexadecimal##orbH" +msgstr "" + +#: src/gui/settings.cpp:3299 +msgid "Center pattern view" +msgstr "" + +#: src/gui/settings.cpp:3305 +msgid "Overflow pattern highlights" +msgstr "" + +#: src/gui/settings.cpp:3311 +msgid "Display previous/next pattern" +msgstr "" + +#: src/gui/settings.cpp:3316 +msgid "Pattern row number format:" +msgstr "" + +#: src/gui/settings.cpp:3318 +msgid "Decimal##prbD" +msgstr "" + +#: src/gui/settings.cpp:3322 +msgid "Hexadecimal##prbH" +msgstr "" + +#: src/gui/settings.cpp:3328 +msgid "Pattern view labels:" +msgstr "" + +#: src/gui/settings.cpp:3333 +msgid "Note off (3-char)" +msgstr "" + +#: src/gui/settings.cpp:3338 +msgid "Note release (3-char)" +msgstr "" + +#: src/gui/settings.cpp:3343 +msgid "Macro release (3-char)" +msgstr "" + +#: src/gui/settings.cpp:3348 +msgid "Empty field (3-char)" +msgstr "" + +#: src/gui/settings.cpp:3353 +msgid "Empty field (2-char)" +msgstr "" + +#: src/gui/settings.cpp:3355 +msgid "Pattern view spacing after:" +msgstr "" + +#: src/gui/settings.cpp:3357 src/gui/settings.cpp:4115 +#: src/gui/findReplace.cpp:601 src/gui/findReplace.cpp:864 +#: src/gui/sampleEdit.cpp:590 +msgid "Note" +msgstr "" + +#: src/gui/settings.cpp:3375 src/gui/findReplace.cpp:707 +#: src/gui/findReplace.cpp:974 +msgid "Effect" +msgstr "" + +#: src/gui/settings.cpp:3381 +msgid "Effect value" +msgstr "" + +#: src/gui/settings.cpp:3388 +msgid "Single-digit effects for 00-0F" +msgstr "" + +#: src/gui/settings.cpp:3394 +msgid "Use flats instead of sharps" +msgstr "" + +#: src/gui/settings.cpp:3400 +msgid "Use German notation" +msgstr "" + +#: src/gui/settings.cpp:3408 +msgid "Channel style:" +msgstr "" + +#: src/gui/settings.cpp:3410 +msgid "Classic##CHS0" +msgstr "" + +#: src/gui/settings.cpp:3414 +msgid "Line##CHS1" +msgstr "" + +#: src/gui/settings.cpp:3418 +msgid "Round##CHS2" +msgstr "" + +#: src/gui/settings.cpp:3422 +msgid "Split button##CHS3" +msgstr "" + +#: src/gui/settings.cpp:3426 +msgid "Square border##CH42" +msgstr "" + +#: src/gui/settings.cpp:3430 +msgid "Round border##CHS5" +msgstr "" + +#: src/gui/settings.cpp:3436 +msgid "Channel volume bar:" +msgstr "" + +#: src/gui/settings.cpp:3438 +msgid "None##CHV0" +msgstr "" + +#: src/gui/settings.cpp:3442 +msgid "Simple##CHV1" +msgstr "" + +#: src/gui/settings.cpp:3446 +msgid "Stereo##CHV2" +msgstr "" + +#: src/gui/settings.cpp:3450 +msgid "Real##CHV3" +msgstr "" + +#: src/gui/settings.cpp:3454 +msgid "Real (stereo)##CHV4" +msgstr "" + +#: src/gui/settings.cpp:3460 +msgid "Channel feedback style:" +msgstr "" + +#: src/gui/settings.cpp:3462 +msgid "Off##CHF0" +msgstr "" + +#: src/gui/settings.cpp:3466 +msgid "Note##CHF1" +msgstr "" + +#: src/gui/settings.cpp:3470 +msgid "Volume##CHF2" +msgstr "" + +#: src/gui/settings.cpp:3474 +msgid "Active##CHF3" +msgstr "" + +#: src/gui/settings.cpp:3480 +msgid "Channel font:" +msgstr "" + +#: src/gui/settings.cpp:3482 +msgid "Regular##CHFont0" +msgstr "" + +#: src/gui/settings.cpp:3486 +msgid "Monospace##CHFont1" +msgstr "" + +#: src/gui/settings.cpp:3493 +msgid "Center channel name" +msgstr "" + +#: src/gui/settings.cpp:3498 +msgid "Channel colors:" +msgstr "" + +#: src/gui/settings.cpp:3500 +msgid "Single##CHC0" +msgstr "" + +#: src/gui/settings.cpp:3504 +msgid "Channel type##CHC1" +msgstr "" + +#: src/gui/settings.cpp:3508 +msgid "Instrument type##CHC2" +msgstr "" + +#: src/gui/settings.cpp:3514 +msgid "Channel name colors:" +msgstr "" + +#: src/gui/settings.cpp:3516 +msgid "Single##CTC0" +msgstr "" + +#: src/gui/settings.cpp:3520 +msgid "Channel type##CTC1" +msgstr "" + +#: src/gui/settings.cpp:3524 +msgid "Instrument type##CTC2" +msgstr "" + +#: src/gui/settings.cpp:3533 +msgid "Unified instrument/wavetable/sample list" +msgstr "" + +#: src/gui/settings.cpp:3543 +msgid "Horizontal instrument list" +msgstr "" + +#: src/gui/settings.cpp:3549 +msgid "Instrument list icon style:" +msgstr "" + +#: src/gui/settings.cpp:3551 +msgid "None##iis0" +msgstr "" + +#: src/gui/settings.cpp:3555 +msgid "Graphical icons##iis1" +msgstr "" + +#: src/gui/settings.cpp:3559 +msgid "Letter icons##iis2" +msgstr "" + +#: src/gui/settings.cpp:3566 +msgid "Colorize instrument editor using instrument type" +msgstr "" + +#: src/gui/settings.cpp:3572 src/gui/settings.cpp:4014 +msgid "Macro Editor" +msgstr "" + +#: src/gui/settings.cpp:3573 +msgid "Macro editor layout:" +msgstr "" + +#: src/gui/settings.cpp:3575 +msgid "Unified##mel0" +msgstr "" + +#: src/gui/settings.cpp:3585 +msgid "Grid##mel2" +msgstr "" + +#: src/gui/settings.cpp:3589 +msgid "Single (with list)##mel3" +msgstr "" + +#: src/gui/settings.cpp:3602 +msgid "Use classic macro editor vertical slider" +msgstr "" + +#: src/gui/settings.cpp:3608 +msgid "Wave Editor" +msgstr "" + +#: src/gui/settings.cpp:3610 +msgid "Use compact wave editor" +msgstr "" + +#: src/gui/settings.cpp:3616 src/gui/settings.cpp:3991 +msgid "FM Editor" +msgstr "" + +#: src/gui/settings.cpp:3617 +msgid "FM parameter names:" +msgstr "" + +#: src/gui/settings.cpp:3619 +msgid "Friendly##fmn0" +msgstr "" + +#: src/gui/settings.cpp:3623 +msgid "Technical##fmn1" +msgstr "" + +#: src/gui/settings.cpp:3627 +msgid "Technical (alternate)##fmn2" +msgstr "" + +#: src/gui/settings.cpp:3634 +msgid "Use standard OPL waveform names" +msgstr "" + +#: src/gui/settings.cpp:3639 +msgid "FM parameter editor layout:" +msgstr "" + +#: src/gui/settings.cpp:3641 +msgid "Modern##fml0" +msgstr "" + +#: src/gui/settings.cpp:3645 +msgid "Compact (2x2, classic)##fml1" +msgstr "" + +#: src/gui/settings.cpp:3649 +msgid "Compact (1x4)##fml2" +msgstr "" + +#: src/gui/settings.cpp:3653 +msgid "Compact (4x1)##fml3" +msgstr "" + +#: src/gui/settings.cpp:3657 +msgid "Alternate (2x2)##fml4" +msgstr "" + +#: src/gui/settings.cpp:3661 +msgid "Alternate (1x4)##fml5" +msgstr "" + +#: src/gui/settings.cpp:3665 +msgid "Alternate (4x1)##fml5" +msgstr "" + +#: src/gui/settings.cpp:3671 +msgid "Position of Sustain in FM editor:" +msgstr "" + +#: src/gui/settings.cpp:3673 +msgid "Between Decay and Sustain Rate##susp0" +msgstr "" + +#: src/gui/settings.cpp:3677 +msgid "After Release Rate##susp1" +msgstr "" + +#: src/gui/settings.cpp:3684 +msgid "Use separate colors for carriers/modulators in FM editor" +msgstr "" + +#: src/gui/settings.cpp:3690 +msgid "Unsigned FM detune values" +msgstr "" + +#: src/gui/settings.cpp:3697 +msgid "Chip memory usage unit:" +msgstr "" + +#: src/gui/settings.cpp:3699 +msgid "Bytes##MUU0" +msgstr "" + +#: src/gui/settings.cpp:3703 +msgid "Kilobytes##MUU1" +msgstr "" + +#: src/gui/settings.cpp:3712 +msgid "Rounded corners" +msgstr "" + +#: src/gui/settings.cpp:3718 src/gui/settings.cpp:3896 +#: src/gui/settings.cpp:3938 +msgid "Border" +msgstr "" + +#: src/gui/settings.cpp:3730 +msgid "Anti-aliased" +msgstr "" + +#: src/gui/settings.cpp:3736 +msgid "Fill entire window" +msgstr "" + +#: src/gui/settings.cpp:3742 +msgid "Waveform goes out of bounds" +msgstr "" + +#: src/gui/settings.cpp:3754 +msgid "Windows" +msgstr "" + +#: src/gui/settings.cpp:3756 +msgid "Rounded window corners" +msgstr "" + +#: src/gui/settings.cpp:3762 +msgid "Rounded buttons" +msgstr "" + +#: src/gui/settings.cpp:3768 +msgid "Rounded menu corners" +msgstr "" + +#: src/gui/settings.cpp:3774 +msgid "Rounded tabs" +msgstr "" + +#: src/gui/settings.cpp:3780 +msgid "Rounded scrollbars" +msgstr "" + +#: src/gui/settings.cpp:3786 +msgid "Borders around widgets" +msgstr "" + +#: src/gui/settings.cpp:3795 +msgid "Color scheme" +msgstr "" + +#: src/gui/settings.cpp:3805 +msgid "Are you sure you want to reset the color scheme?" +msgstr "" + +#: src/gui/settings.cpp:3808 +msgid "Guru mode" +msgstr "" + +#: src/gui/settings.cpp:3815 src/gui/settings.cpp:3845 +msgid "Frame shading" +msgstr "" + +#: src/gui/settings.cpp:3821 +msgid "Color scheme type:" +msgstr "" + +#: src/gui/settings.cpp:3823 +msgid "Dark##gcb0" +msgstr "" + +#: src/gui/settings.cpp:3828 +msgid "Light##gcb1" +msgstr "" + +#: src/gui/settings.cpp:3835 +msgid "Accent colors:" +msgstr "" + +#: src/gui/settings.cpp:3837 +msgid "Primary" +msgstr "" + +#: src/gui/settings.cpp:3838 +msgid "Secondary" +msgstr "" + +#: src/gui/settings.cpp:3852 +msgid "Button" +msgstr "" + +#: src/gui/settings.cpp:3853 +msgid "Button (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3854 +msgid "Button (active)" +msgstr "" + +#: src/gui/settings.cpp:3855 +msgid "Tab" +msgstr "" + +#: src/gui/settings.cpp:3856 +msgid "Tab (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3857 +msgid "Tab (active)" +msgstr "" + +#: src/gui/settings.cpp:3858 +msgid "Tab (unfocused)" +msgstr "" + +#: src/gui/settings.cpp:3859 +msgid "Tab (unfocused and active)" +msgstr "" + +#: src/gui/settings.cpp:3860 +msgid "ImGui header" +msgstr "" + +#: src/gui/settings.cpp:3861 +msgid "ImGui header (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3862 +msgid "ImGui header (active)" +msgstr "" + +#: src/gui/settings.cpp:3863 +msgid "Resize grip" +msgstr "" + +#: src/gui/settings.cpp:3864 +msgid "Resize grip (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3865 +msgid "Resize grip (active)" +msgstr "" + +#: src/gui/settings.cpp:3866 +msgid "Widget background" +msgstr "" + +#: src/gui/settings.cpp:3867 +msgid "Widget background (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3868 +msgid "Widget background (active)" +msgstr "" + +#: src/gui/settings.cpp:3869 +msgid "Slider grab" +msgstr "" + +#: src/gui/settings.cpp:3870 +msgid "Slider grab (active)" +msgstr "" + +#: src/gui/settings.cpp:3871 +msgid "Title background (active)" +msgstr "" + +#: src/gui/settings.cpp:3872 +msgid "Checkbox/radio button mark" +msgstr "" + +#: src/gui/settings.cpp:3873 +msgid "Text selection" +msgstr "" + +#: src/gui/settings.cpp:3874 +msgid "Line plot" +msgstr "" + +#: src/gui/settings.cpp:3875 +msgid "Line plot (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3876 +msgid "Histogram plot" +msgstr "" + +#: src/gui/settings.cpp:3877 +msgid "Histogram plot (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3878 +msgid "Table row (even)" +msgstr "" + +#: src/gui/settings.cpp:3879 +msgid "Table row (odd)" +msgstr "" + +#: src/gui/settings.cpp:3884 +msgid "Interface (other)" +msgstr "" + +#: src/gui/settings.cpp:3886 +msgid "Window background" +msgstr "" + +#: src/gui/settings.cpp:3887 +msgid "Sub-window background" +msgstr "" + +#: src/gui/settings.cpp:3888 +msgid "Pop-up background" +msgstr "" + +#: src/gui/settings.cpp:3889 +msgid "Modal backdrop" +msgstr "" + +#: src/gui/settings.cpp:3890 +msgid "Header" +msgstr "" + +#: src/gui/settings.cpp:3892 +msgid "Text (disabled)" +msgstr "" + +#: src/gui/settings.cpp:3893 +msgid "Title bar (inactive)" +msgstr "" + +#: src/gui/settings.cpp:3894 +msgid "Title bar (collapsed)" +msgstr "" + +#: src/gui/settings.cpp:3895 +msgid "Menu bar" +msgstr "" + +#: src/gui/settings.cpp:3897 +msgid "Border shadow" +msgstr "" + +#: src/gui/settings.cpp:3898 +msgid "Scroll bar" +msgstr "" + +#: src/gui/settings.cpp:3899 +msgid "Scroll bar (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3900 +msgid "Scroll bar (clicked)" +msgstr "" + +#: src/gui/settings.cpp:3901 +msgid "Scroll bar background" +msgstr "" + +#: src/gui/settings.cpp:3902 +msgid "Separator" +msgstr "" + +#: src/gui/settings.cpp:3903 +msgid "Separator (hover)" +msgstr "" + +#: src/gui/settings.cpp:3904 +msgid "Separator (active)" +msgstr "" + +#: src/gui/settings.cpp:3905 +msgid "Docking preview" +msgstr "" + +#: src/gui/settings.cpp:3906 +msgid "Docking empty" +msgstr "" + +#: src/gui/settings.cpp:3907 +msgid "Table header" +msgstr "" + +#: src/gui/settings.cpp:3908 +msgid "Table border (hard)" +msgstr "" + +#: src/gui/settings.cpp:3909 +msgid "Table border (soft)" +msgstr "" + +#: src/gui/settings.cpp:3910 +msgid "Drag and drop target" +msgstr "" + +#: src/gui/settings.cpp:3911 +msgid "Window switcher (highlight)" +msgstr "" + +#: src/gui/settings.cpp:3912 +msgid "Window switcher backdrop" +msgstr "" + +#: src/gui/settings.cpp:3915 src/gui/settings.cpp:4136 src/gui/guiConst.cpp:235 +msgid "Miscellaneous" +msgstr "" + +#: src/gui/settings.cpp:3916 +msgid "Toggle on" +msgstr "" + +#: src/gui/settings.cpp:3917 +msgid "Toggle off" +msgstr "" + +#: src/gui/settings.cpp:3918 +msgid "Playback status" +msgstr "" + +#: src/gui/settings.cpp:3919 +msgid "Destructive hint" +msgstr "" + +#: src/gui/settings.cpp:3920 +msgid "Warning hint" +msgstr "" + +#: src/gui/settings.cpp:3921 +msgid "Error hint" +msgstr "" + +#: src/gui/settings.cpp:3924 +msgid "File Picker (built-in)" +msgstr "" + +#: src/gui/settings.cpp:3926 +msgid "Song (native)" +msgstr "" + +#: src/gui/settings.cpp:3927 +msgid "Song (import)" +msgstr "" + +#: src/gui/settings.cpp:3933 +msgid "Font" +msgstr "" + +#: src/gui/settings.cpp:3939 +msgid "Background (top-left)" +msgstr "" + +#: src/gui/settings.cpp:3940 +msgid "Background (top-right)" +msgstr "" + +#: src/gui/settings.cpp:3941 +msgid "Background (bottom-left)" +msgstr "" + +#: src/gui/settings.cpp:3942 +msgid "Background (bottom-right)" +msgstr "" + +#: src/gui/settings.cpp:3943 src/gui/settings.cpp:3998 +#: src/gui/settings.cpp:4166 src/gui/waveEdit.cpp:730 src/gui/insEdit.cpp:50 +#: src/gui/insEdit.cpp:4148 src/gui/insEdit.cpp:5812 src/gui/insEdit.cpp:6940 +#: src/gui/insEdit.cpp:6949 src/gui/insEdit.cpp:6963 src/gui/insEdit.cpp:6980 +#: src/gui/insEdit.cpp:6991 src/gui/insEdit.cpp:7004 src/gui/insEdit.cpp:7018 +#: src/gui/insEdit.cpp:7025 src/gui/insEdit.cpp:7035 src/gui/insEdit.cpp:7041 +#: src/gui/insEdit.cpp:7050 src/gui/insEdit.cpp:7074 src/gui/insEdit.cpp:7084 +#: src/gui/insEdit.cpp:7094 src/gui/insEdit.cpp:7101 src/gui/insEdit.cpp:7116 +#: src/gui/insEdit.cpp:7131 src/gui/insEdit.cpp:7151 src/gui/insEdit.cpp:7158 +#: src/gui/insEdit.cpp:7200 src/gui/insEdit.cpp:7211 src/gui/insEdit.cpp:7224 +#: src/gui/insEdit.cpp:7349 src/gui/insEdit.cpp:7425 src/gui/insEdit.cpp:7445 +#: src/gui/insEdit.cpp:7453 src/gui/insEdit.cpp:7473 +msgid "Waveform" +msgstr "" + +#: src/gui/settings.cpp:3944 +msgid "Waveform (clip)" +msgstr "" + +#: src/gui/settings.cpp:3945 +msgid "Reference" +msgstr "" + +#: src/gui/settings.cpp:3946 +msgid "Guide" +msgstr "" + +#: src/gui/settings.cpp:3948 +msgid "Wave (non-mono)" +msgstr "" + +#: src/gui/settings.cpp:3949 +msgid "Waveform (1)" +msgstr "" + +#: src/gui/settings.cpp:3950 +msgid "Waveform (2)" +msgstr "" + +#: src/gui/settings.cpp:3951 +msgid "Waveform (3)" +msgstr "" + +#: src/gui/settings.cpp:3952 +msgid "Waveform (4)" +msgstr "" + +#: src/gui/settings.cpp:3953 +msgid "Waveform (5)" +msgstr "" + +#: src/gui/settings.cpp:3954 +msgid "Waveform (6)" +msgstr "" + +#: src/gui/settings.cpp:3955 +msgid "Waveform (7)" +msgstr "" + +#: src/gui/settings.cpp:3956 +msgid "Waveform (8)" +msgstr "" + +#: src/gui/settings.cpp:3957 +msgid "Waveform (9)" +msgstr "" + +#: src/gui/settings.cpp:3958 +msgid "Waveform (10)" +msgstr "" + +#: src/gui/settings.cpp:3959 +msgid "Waveform (11)" +msgstr "" + +#: src/gui/settings.cpp:3960 +msgid "Waveform (12)" +msgstr "" + +#: src/gui/settings.cpp:3961 +msgid "Waveform (13)" +msgstr "" + +#: src/gui/settings.cpp:3962 +msgid "Waveform (14)" +msgstr "" + +#: src/gui/settings.cpp:3963 +msgid "Waveform (15)" +msgstr "" + +#: src/gui/settings.cpp:3964 +msgid "Waveform (16)" +msgstr "" + +#: src/gui/settings.cpp:3972 +msgid "Clip" +msgstr "" + +#: src/gui/settings.cpp:3976 +msgid "Order number" +msgstr "" + +#: src/gui/settings.cpp:3977 +msgid "Playing order background" +msgstr "" + +#: src/gui/settings.cpp:3978 +msgid "Song loop" +msgstr "" + +#: src/gui/settings.cpp:3979 +msgid "Selected order" +msgstr "" + +#: src/gui/settings.cpp:3980 +msgid "Similar patterns" +msgstr "" + +#: src/gui/settings.cpp:3981 +msgid "Inactive patterns" +msgstr "" + +#: src/gui/settings.cpp:3984 +msgid "Envelope View" +msgstr "" + +#: src/gui/settings.cpp:3985 src/gui/insEdit.cpp:540 src/gui/insEdit.cpp:3547 +#: src/gui/insEdit.cpp:3548 src/gui/insEdit.cpp:4081 src/gui/insEdit.cpp:4151 +#: src/gui/insEdit.cpp:4790 src/gui/insEdit.cpp:5861 src/gui/insEdit.cpp:5862 +#: src/gui/insEdit.cpp:6487 src/gui/insEdit.cpp:6488 src/gui/insEdit.cpp:6555 +#: src/gui/insEdit.cpp:6556 src/gui/insEdit.cpp:6995 src/gui/insEdit.cpp:7009 +#: src/gui/insEdit.cpp:7029 src/gui/insEdit.cpp:7166 +#, c-format +msgid "Envelope" +msgstr "" + +#: src/gui/settings.cpp:3986 +msgid "Sustain guide" +msgstr "" + +#: src/gui/settings.cpp:3992 +msgid "Algorithm background" +msgstr "" + +#: src/gui/settings.cpp:3993 +msgid "Algorithm lines" +msgstr "" + +#: src/gui/settings.cpp:3994 +msgid "Modulator" +msgstr "" + +#: src/gui/settings.cpp:3995 +msgid "Carrier" +msgstr "" + +#: src/gui/settings.cpp:3997 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:4146 +msgid "SSG-EG" +msgstr "" + +#: src/gui/settings.cpp:4000 +msgid "" +"(the following colors only apply when \"Use separate colors for carriers/" +"modulators in FM editor\" is on!)" +msgstr "" + +#: src/gui/settings.cpp:4002 +msgid "Mod. accent (primary)" +msgstr "" + +#: src/gui/settings.cpp:4003 +msgid "Mod. accent (secondary)" +msgstr "" + +#: src/gui/settings.cpp:4004 +msgid "Mod. border" +msgstr "" + +#: src/gui/settings.cpp:4005 +msgid "Mod. border shadow" +msgstr "" + +#: src/gui/settings.cpp:4007 +msgid "Car. accent (primary)" +msgstr "" + +#: src/gui/settings.cpp:4008 +msgid "Car. accent (secondary)" +msgstr "" + +#: src/gui/settings.cpp:4009 +msgid "Car. border" +msgstr "" + +#: src/gui/settings.cpp:4010 +msgid "Car. border shadow" +msgstr "" + +#: src/gui/settings.cpp:4016 src/gui/guiConst.cpp:227 src/gui/insEdit.cpp:6924 +#: src/gui/insEdit.cpp:6931 src/gui/insEdit.cpp:6942 src/gui/insEdit.cpp:6950 +#: src/gui/insEdit.cpp:6971 src/gui/insEdit.cpp:6983 src/gui/insEdit.cpp:6993 +#: src/gui/insEdit.cpp:7006 src/gui/insEdit.cpp:7019 src/gui/insEdit.cpp:7028 +#: src/gui/insEdit.cpp:7036 src/gui/insEdit.cpp:7042 src/gui/insEdit.cpp:7052 +#: src/gui/insEdit.cpp:7061 src/gui/insEdit.cpp:7068 src/gui/insEdit.cpp:7075 +#: src/gui/insEdit.cpp:7087 src/gui/insEdit.cpp:7095 src/gui/insEdit.cpp:7102 +#: src/gui/insEdit.cpp:7109 src/gui/insEdit.cpp:7117 src/gui/insEdit.cpp:7123 +#: src/gui/insEdit.cpp:7132 src/gui/insEdit.cpp:7143 src/gui/insEdit.cpp:7153 +#: src/gui/insEdit.cpp:7161 src/gui/insEdit.cpp:7174 src/gui/insEdit.cpp:7182 +#: src/gui/insEdit.cpp:7193 src/gui/insEdit.cpp:7203 src/gui/insEdit.cpp:7213 +#: src/gui/insEdit.cpp:7227 src/gui/insEdit.cpp:7233 src/gui/insEdit.cpp:7241 +#: src/gui/insEdit.cpp:7248 src/gui/insEdit.cpp:7272 src/gui/insEdit.cpp:7280 +#: src/gui/insEdit.cpp:7289 src/gui/insEdit.cpp:7298 src/gui/insEdit.cpp:7306 +#: src/gui/insEdit.cpp:7323 src/gui/insEdit.cpp:7331 src/gui/insEdit.cpp:7337 +#: src/gui/insEdit.cpp:7344 src/gui/insEdit.cpp:7350 src/gui/insEdit.cpp:7355 +#: src/gui/insEdit.cpp:7361 src/gui/insEdit.cpp:7368 src/gui/insEdit.cpp:7376 +#: src/gui/insEdit.cpp:7385 src/gui/insEdit.cpp:7393 src/gui/insEdit.cpp:7401 +#: src/gui/insEdit.cpp:7413 src/gui/insEdit.cpp:7428 src/gui/insEdit.cpp:7439 +#: src/gui/insEdit.cpp:7447 src/gui/insEdit.cpp:7456 src/gui/insEdit.cpp:7466 +#: src/gui/insEdit.cpp:7474 +msgid "Pitch" +msgstr "" + +#: src/gui/settings.cpp:4021 +msgid "Instrument Types" +msgstr "" + +#: src/gui/settings.cpp:4022 +msgid "FM (OPN)" +msgstr "" + +#: src/gui/settings.cpp:4023 +msgid "SN76489/Sega PSG" +msgstr "" + +#: src/gui/settings.cpp:4026 +msgid "C64" +msgstr "" + +#: src/gui/settings.cpp:4027 +msgid "Amiga/Generic Sample" +msgstr "" + +#: src/gui/settings.cpp:4028 +msgid "PC Engine" +msgstr "" + +#: src/gui/settings.cpp:4029 +msgid "AY-3-8910/SSG" +msgstr "" + +#: src/gui/settings.cpp:4030 +msgid "AY8930" +msgstr "" + +#: src/gui/settings.cpp:4031 +msgid "TIA" +msgstr "" + +#: src/gui/settings.cpp:4032 +msgid "SAA1099" +msgstr "" + +#: src/gui/settings.cpp:4033 +msgid "VIC" +msgstr "" + +#: src/gui/settings.cpp:4034 +msgid "PET" +msgstr "" + +#: src/gui/settings.cpp:4035 +msgid "VRC6" +msgstr "" + +#: src/gui/settings.cpp:4036 src/gui/guiConst.cpp:149 +msgid "VRC6 (saw)" +msgstr "" + +#: src/gui/settings.cpp:4037 +msgid "FM (OPLL)" +msgstr "" + +#: src/gui/settings.cpp:4038 +msgid "FM (OPL)" +msgstr "" + +#: src/gui/settings.cpp:4043 +msgid "FM (OPZ)" +msgstr "" + +#: src/gui/settings.cpp:4045 +msgid "PC Beeper" +msgstr "" + +#: src/gui/settings.cpp:4047 +msgid "Lynx" +msgstr "" + +#: src/gui/settings.cpp:4049 +msgid "X1-010" +msgstr "" + +#: src/gui/settings.cpp:4050 +msgid "ES5506" +msgstr "" + +#: src/gui/settings.cpp:4053 +msgid "Sound Unit" +msgstr "" + +#: src/gui/settings.cpp:4055 +msgid "FM (OPL Drums)" +msgstr "" + +#: src/gui/settings.cpp:4056 +msgid "FM (OPM)" +msgstr "" + +#: src/gui/settings.cpp:4057 +msgid "NES" +msgstr "" + +#: src/gui/settings.cpp:4058 +msgid "MSM6258" +msgstr "" + +#: src/gui/settings.cpp:4059 +msgid "MSM6295" +msgstr "" + +#: src/gui/settings.cpp:4060 +msgid "ADPCM-A" +msgstr "" + +#: src/gui/settings.cpp:4062 +msgid "Sega PCM" +msgstr "" + +#: src/gui/settings.cpp:4063 +msgid "QSound" +msgstr "" + +#: src/gui/settings.cpp:4064 +msgid "YMZ280B" +msgstr "" + +#: src/gui/settings.cpp:4065 +msgid "RF5C68" +msgstr "" + +#: src/gui/settings.cpp:4066 +msgid "MSM5232" +msgstr "" + +#: src/gui/settings.cpp:4067 +msgid "K007232" +msgstr "" + +#: src/gui/settings.cpp:4068 +msgid "GA20" +msgstr "" + +#: src/gui/settings.cpp:4070 +msgid "SM8521" +msgstr "" + +#: src/gui/settings.cpp:4071 +msgid "PV-1000" +msgstr "" + +#: src/gui/settings.cpp:4072 +msgid "K053260" +msgstr "" + +#: src/gui/settings.cpp:4073 +msgid "TED" +msgstr "" + +#: src/gui/settings.cpp:4074 +msgid "C140" +msgstr "" + +#: src/gui/settings.cpp:4075 +msgid "C219" +msgstr "" + +#: src/gui/settings.cpp:4076 +msgid "ESFM" +msgstr "" + +#: src/gui/settings.cpp:4077 src/gui/guiConst.cpp:179 +msgid "PowerNoise (noise)" +msgstr "" + +#: src/gui/settings.cpp:4078 src/gui/guiConst.cpp:180 +msgid "PowerNoise (slope)" +msgstr "" + +#: src/gui/settings.cpp:4081 +msgid "GBA DMA" +msgstr "" + +#: src/gui/settings.cpp:4082 +msgid "GBA MinMod" +msgstr "" + +#: src/gui/settings.cpp:4085 +msgid "Other/Unknown" +msgstr "" + +#: src/gui/settings.cpp:4089 +msgid "Single color (background)" +msgstr "" + +#: src/gui/settings.cpp:4090 +msgid "Single color (text)" +msgstr "" + +#: src/gui/settings.cpp:4091 src/gui/guiConst.cpp:1393 src/gui/waveEdit.cpp:668 +msgid "FM" +msgstr "" + +#: src/gui/settings.cpp:4096 +msgid "FM operator" +msgstr "" + +#: src/gui/settings.cpp:4097 +msgid "Muted" +msgstr "" + +#: src/gui/settings.cpp:4101 +msgid "Playhead" +msgstr "" + +#: src/gui/settings.cpp:4102 +msgid "Editing" +msgstr "" + +#: src/gui/settings.cpp:4103 +msgid "Editing (will clone)" +msgstr "" + +#: src/gui/settings.cpp:4104 +msgid "Cursor" +msgstr "" + +#: src/gui/settings.cpp:4105 +msgid "Cursor (hovered)" +msgstr "" + +#: src/gui/settings.cpp:4106 +msgid "Cursor (clicked)" +msgstr "" + +#: src/gui/settings.cpp:4107 src/gui/settings.cpp:4172 +#: src/gui/findReplace.cpp:791 +msgid "Selection" +msgstr "" + +#: src/gui/settings.cpp:4108 +msgid "Selection (hovered)" +msgstr "" + +#: src/gui/settings.cpp:4109 +msgid "Selection (clicked)" +msgstr "" + +#: src/gui/settings.cpp:4110 +msgid "Highlight 1" +msgstr "" + +#: src/gui/settings.cpp:4111 +msgid "Highlight 2" +msgstr "" + +#: src/gui/settings.cpp:4112 +msgid "Row number" +msgstr "" + +#: src/gui/settings.cpp:4113 +msgid "Row number (highlight 1)" +msgstr "" + +#: src/gui/settings.cpp:4114 +msgid "Row number (highlight 2)" +msgstr "" + +#: src/gui/settings.cpp:4116 +msgid "Note (highlight 1)" +msgstr "" + +#: src/gui/settings.cpp:4117 +msgid "Note (highlight 2)" +msgstr "" + +#: src/gui/settings.cpp:4118 +msgid "Blank" +msgstr "" + +#: src/gui/settings.cpp:4119 +msgid "Blank (highlight 1)" +msgstr "" + +#: src/gui/settings.cpp:4120 +msgid "Blank (highlight 2)" +msgstr "" + +#: src/gui/settings.cpp:4122 +msgid "Instrument (invalid type)" +msgstr "" + +#: src/gui/settings.cpp:4123 +msgid "Instrument (out of range)" +msgstr "" + +#: src/gui/settings.cpp:4124 +msgid "Volume (0%)" +msgstr "" + +#: src/gui/settings.cpp:4125 +msgid "Volume (50%)" +msgstr "" + +#: src/gui/settings.cpp:4126 +msgid "Volume (100%)" +msgstr "" + +#: src/gui/settings.cpp:4128 +msgid "Pitch effect" +msgstr "" + +#: src/gui/settings.cpp:4129 +msgid "Volume effect" +msgstr "" + +#: src/gui/settings.cpp:4130 +msgid "Panning effect" +msgstr "" + +#: src/gui/settings.cpp:4131 +msgid "Song effect" +msgstr "" + +#: src/gui/settings.cpp:4132 +msgid "Time effect" +msgstr "" + +#: src/gui/settings.cpp:4133 +msgid "Speed effect" +msgstr "" + +#: src/gui/settings.cpp:4134 +msgid "Primary specific effect" +msgstr "" + +#: src/gui/settings.cpp:4135 +msgid "Secondary specific effect" +msgstr "" + +#: src/gui/settings.cpp:4137 +msgid "External command output" +msgstr "" + +#: src/gui/settings.cpp:4138 +msgid "Status: off/disabled" +msgstr "" + +#: src/gui/settings.cpp:4139 +msgid "Status: off + macro rel" +msgstr "" + +#: src/gui/settings.cpp:4140 +msgid "Status: on + macro rel" +msgstr "" + +#: src/gui/settings.cpp:4141 +msgid "Status: on" +msgstr "" + +#: src/gui/settings.cpp:4142 +msgid "Status: volume" +msgstr "" + +#: src/gui/settings.cpp:4143 +msgid "Status: pitch" +msgstr "" + +#: src/gui/settings.cpp:4144 +msgid "Status: panning" +msgstr "" + +#: src/gui/settings.cpp:4145 +msgid "Status: chip (primary)" +msgstr "" + +#: src/gui/settings.cpp:4146 +msgid "Status: chip (secondary)" +msgstr "" + +#: src/gui/settings.cpp:4147 +msgid "Status: mixing" +msgstr "" + +#: src/gui/settings.cpp:4148 +msgid "Status: DSP effect" +msgstr "" + +#: src/gui/settings.cpp:4149 +msgid "Status: note altering" +msgstr "" + +#: src/gui/settings.cpp:4150 +msgid "Status: misc color 1" +msgstr "" + +#: src/gui/settings.cpp:4151 +msgid "Status: misc color 2" +msgstr "" + +#: src/gui/settings.cpp:4152 +msgid "Status: misc color 3" +msgstr "" + +#: src/gui/settings.cpp:4153 +msgid "Status: attack" +msgstr "" + +#: src/gui/settings.cpp:4154 +msgid "Status: decay" +msgstr "" + +#: src/gui/settings.cpp:4155 +msgid "Status: sustain" +msgstr "" + +#: src/gui/settings.cpp:4156 +msgid "Status: release" +msgstr "" + +#: src/gui/settings.cpp:4157 +msgid "Status: decrease linear" +msgstr "" + +#: src/gui/settings.cpp:4158 +msgid "Status: decrease exp" +msgstr "" + +#: src/gui/settings.cpp:4159 +msgid "Status: increase" +msgstr "" + +#: src/gui/settings.cpp:4160 +msgid "Status: bent" +msgstr "" + +#: src/gui/settings.cpp:4161 +msgid "Status: direct" +msgstr "" + +#: src/gui/settings.cpp:4164 src/gui/guiConst.cpp:586 src/gui/sampleEdit.cpp:96 +msgid "Sample Editor" +msgstr "" + +#: src/gui/settings.cpp:4167 +msgid "Time background" +msgstr "" + +#: src/gui/settings.cpp:4168 +msgid "Time text" +msgstr "" + +#: src/gui/settings.cpp:4169 +msgid "Loop region" +msgstr "" + +#: src/gui/settings.cpp:4170 +msgid "Center guide" +msgstr "" + +#: src/gui/settings.cpp:4171 +msgid "Grid" +msgstr "" + +#: src/gui/settings.cpp:4173 +msgid "Selection points" +msgstr "" + +#: src/gui/settings.cpp:4174 +msgid "Preview needle" +msgstr "" + +#: src/gui/settings.cpp:4175 +msgid "Playing needles" +msgstr "" + +#: src/gui/settings.cpp:4176 +msgid "Loop markers" +msgstr "" + +#: src/gui/settings.cpp:4177 +msgid "Chip select: disabled" +msgstr "" + +#: src/gui/settings.cpp:4178 +msgid "Chip select: enabled" +msgstr "" + +#: src/gui/settings.cpp:4179 +msgid "Chip select: enabled (failure)" +msgstr "" + +#: src/gui/settings.cpp:4182 src/gui/guiConst.cpp:602 src/gui/patManager.cpp:35 +msgid "Pattern Manager" +msgstr "" + +#: src/gui/settings.cpp:4183 +msgid "Unallocated" +msgstr "" + +#: src/gui/settings.cpp:4184 +msgid "Unused" +msgstr "" + +#: src/gui/settings.cpp:4185 +msgid "Used" +msgstr "" + +#: src/gui/settings.cpp:4186 +msgid "Overused" +msgstr "" + +#: src/gui/settings.cpp:4187 +msgid "Really overused" +msgstr "" + +#: src/gui/settings.cpp:4188 +msgid "Combo Breaker" +msgstr "" + +#: src/gui/settings.cpp:4191 src/gui/guiConst.cpp:599 src/gui/piano.cpp:63 +msgid "Piano" +msgstr "" + +#: src/gui/settings.cpp:4193 +msgid "Upper key" +msgstr "" + +#: src/gui/settings.cpp:4194 +msgid "Upper key (feedback)" +msgstr "" + +#: src/gui/settings.cpp:4195 +msgid "Upper key (pressed)" +msgstr "" + +#: src/gui/settings.cpp:4196 +msgid "Lower key" +msgstr "" + +#: src/gui/settings.cpp:4197 +msgid "Lower key (feedback)" +msgstr "" + +#: src/gui/settings.cpp:4198 +msgid "Lower key (pressed)" +msgstr "" + +#: src/gui/settings.cpp:4201 src/gui/clock.cpp:31 src/gui/guiConst.cpp:610 +msgid "Clock" +msgstr "" + +#: src/gui/settings.cpp:4202 +msgid "Clock text" +msgstr "" + +#: src/gui/settings.cpp:4203 +msgid "Beat (off)" +msgstr "" + +#: src/gui/settings.cpp:4204 +msgid "Beat (on)" +msgstr "" + +#: src/gui/settings.cpp:4209 +msgid "PortSet" +msgstr "" + +#: src/gui/settings.cpp:4210 +msgid "Port" +msgstr "" + +#: src/gui/settings.cpp:4211 +msgid "Port (hidden/unavailable)" +msgstr "" + +#: src/gui/settings.cpp:4212 +msgid "Connection (selected)" +msgstr "" + +#: src/gui/settings.cpp:4213 +msgid "Connection (other)" +msgstr "" + +#: src/gui/settings.cpp:4219 +msgid "Waveform data" +msgstr "" + +#: src/gui/settings.cpp:4222 +msgid "Reserved" +msgstr "" + +#: src/gui/settings.cpp:4224 +msgid "Sample (alternate 1)" +msgstr "" + +#: src/gui/settings.cpp:4225 +msgid "Sample (alternate 2)" +msgstr "" + +#: src/gui/settings.cpp:4226 +msgid "Sample (alternate 3)" +msgstr "" + +#: src/gui/settings.cpp:4227 +msgid "Wave RAM" +msgstr "" + +#: src/gui/settings.cpp:4228 +msgid "Wavetable (static)" +msgstr "" + +#: src/gui/settings.cpp:4229 +msgid "Echo buffer" +msgstr "" + +#: src/gui/settings.cpp:4230 +msgid "Namco 163 load pos" +msgstr "" + +#: src/gui/settings.cpp:4231 +msgid "Namco 163 play pos" +msgstr "" + +#: src/gui/settings.cpp:4232 +msgid "Sample (bank 0)" +msgstr "" + +#: src/gui/settings.cpp:4233 +msgid "Sample (bank 1)" +msgstr "" + +#: src/gui/settings.cpp:4234 +msgid "Sample (bank 2)" +msgstr "" + +#: src/gui/settings.cpp:4235 +msgid "Sample (bank 3)" +msgstr "" + +#: src/gui/settings.cpp:4236 +msgid "Sample (bank 4)" +msgstr "" + +#: src/gui/settings.cpp:4237 +msgid "Sample (bank 5)" +msgstr "" + +#: src/gui/settings.cpp:4238 +msgid "Sample (bank 6)" +msgstr "" + +#: src/gui/settings.cpp:4239 +msgid "Sample (bank 7)" +msgstr "" + +#: src/gui/settings.cpp:4244 +msgid "Log level: Error" +msgstr "" + +#: src/gui/settings.cpp:4245 +msgid "Log level: Warning" +msgstr "" + +#: src/gui/settings.cpp:4246 +msgid "Log level: Info" +msgstr "" + +#: src/gui/settings.cpp:4247 +msgid "Log level: Debug" +msgstr "" + +#: src/gui/settings.cpp:4248 +msgid "Log level: Trace/Verbose" +msgstr "" + +#: src/gui/settings.cpp:4253 +msgid "Backup" +msgstr "" + +#: src/gui/settings.cpp:4258 +msgid "Enable backup system" +msgstr "" + +#: src/gui/settings.cpp:4263 +msgid "Interval (in seconds)" +msgstr "" + +#: src/gui/settings.cpp:4268 +msgid "Backups per file" +msgstr "" + +#: src/gui/settings.cpp:4274 +msgid "Backup Management" +msgstr "" + +#: src/gui/settings.cpp:4278 +msgid "Purge before:" +msgstr "" + +#: src/gui/settings.cpp:4352 +msgid "Go##PDate" +msgstr "" + +#: src/gui/settings.cpp:4359 +#, c-format +msgid "%PB used" +msgstr "" + +#: src/gui/settings.cpp:4361 +#, c-format +msgid "%TB used" +msgstr "" + +#: src/gui/settings.cpp:4363 +#, c-format +msgid "%GB used" +msgstr "" + +#: src/gui/settings.cpp:4365 +#, c-format +msgid "%MB used" +msgstr "" + +#: src/gui/settings.cpp:4367 +#, c-format +msgid "%KB used" +msgstr "" + +#: src/gui/settings.cpp:4369 +#, c-format +msgid "% bytes used" +msgstr "" + +#: src/gui/settings.cpp:4374 +msgid "Refresh" +msgstr "" + +#: src/gui/settings.cpp:4378 +msgid "Delete all" +msgstr "" + +#: src/gui/settings.cpp:4384 src/gui/settings.cpp:6688 +msgid "Size" +msgstr "" + +#: src/gui/settings.cpp:4385 +msgid "Latest" +msgstr "" + +#: src/gui/settings.cpp:4395 +#, c-format +msgid "%P" +msgstr "" + +#: src/gui/settings.cpp:4397 +#, c-format +msgid "%T" +msgstr "" + +#: src/gui/settings.cpp:4399 +#, c-format +msgid "%G" +msgstr "" + +#: src/gui/settings.cpp:4401 +#, c-format +msgid "%M" +msgstr "" + +#: src/gui/settings.cpp:4403 +#, c-format +msgid "%K" +msgstr "" + +#: src/gui/settings.cpp:4405 +#, c-format +msgid "%" +msgstr "" + +#: src/gui/settings.cpp:4529 +msgid "Cheat Codes" +msgstr "" + +#: src/gui/settings.cpp:4531 +msgid "Enter code:" +msgstr "" + +#: src/gui/settings.cpp:4533 +msgid "Submit" +msgstr "" + +#: src/gui/settings.cpp:4537 +msgid "invalid code" +msgstr "" + +#: src/gui/settings.cpp:4547 +msgid "toggled alternate UI" +msgstr "" + +#: src/gui/settings.cpp:4551 +msgid ":smile: :star_struck: :sunglasses: :ok_hand:" +msgstr "" + +#: src/gui/settings.cpp:4555 +msgid "enabled all instrument types" +msgstr "" + +#: src/gui/settings.cpp:4559 +msgid "OK, if I bring your Partial pitch linearity will you stop bothering me?" +msgstr "" + +#: src/gui/settings.cpp:4563 +msgid "unlocked audio multi-threading options!" +msgstr "" + +#: src/gui/settings.cpp:4567 +msgid "enabled \"comfortable\" mode" +msgstr "" + +#: src/gui/settings.cpp:4585 +msgid "OK##SettingsOK" +msgstr "" + +#: src/gui/settings.cpp:4591 +msgid "Cancel##SettingsCancel" +msgstr "" + +#: src/gui/settings.cpp:4599 +msgid "Apply##SettingsApply" +msgstr "" + +#: src/gui/settings.cpp:5673 +msgid "could not initialize audio!" +msgstr "" + +#: src/gui/settings.cpp:5683 src/gui/gui.cpp:4067 src/gui/gui.cpp:6662 +#: src/gui/gui.cpp:7088 +msgid "error while loading fonts! please check your settings." +msgstr "" + +#: src/gui/settings.cpp:5862 +#, c-format +msgid "error while loading config! (%s)" +msgstr "" + +#: src/gui/settings.cpp:6675 +msgid "[Dir]" +msgstr "" + +#: src/gui/settings.cpp:6676 +msgid "[Link]" +msgstr "" + +#: src/gui/settings.cpp:6677 +msgid "[File]" +msgstr "" + +#: src/gui/settings.cpp:6678 +msgid "Name:" +msgstr "" + +#: src/gui/settings.cpp:6679 +msgid "Path:" +msgstr "" + +#: src/gui/settings.cpp:6680 +msgid "Reset search" +msgstr "" + +#: src/gui/settings.cpp:6681 +msgid "Drives" +msgstr "" + +#: src/gui/settings.cpp:6682 +msgid "" +"Edit path\n" +"You can also right click on path buttons" +msgstr "" + +#: src/gui/settings.cpp:6683 +msgid "Go to home directory" +msgstr "" + +#: src/gui/settings.cpp:6684 +msgid "Go to parent directory" +msgstr "" + +#: src/gui/settings.cpp:6685 +msgid "Create Directory" +msgstr "" + +#: src/gui/settings.cpp:6686 +msgid "File name" +msgstr "" + +#: src/gui/settings.cpp:6689 +msgid "Date" +msgstr "" + +#: src/gui/settings.cpp:6690 src/gui/gui.cpp:5510 src/gui/gui.cpp:5645 +#: src/gui/gui.cpp:5646 +msgid "Warning" +msgstr "" + +#: src/gui/settings.cpp:6691 +msgid "The file you selected already exists! Would you like to overwrite it?" +msgstr "" + +#: src/gui/settings.cpp:6692 src/gui/gui.cpp:5650 src/gui/gui.cpp:5674 +#: src/gui/gui.cpp:5698 src/gui/gui.cpp:5722 src/gui/gui.cpp:5746 +#: src/gui/gui.cpp:5770 src/gui/gui.cpp:5802 src/gui/gui.cpp:5818 +#: src/gui/gui.cpp:5829 src/gui/gui.cpp:5841 src/gui/gui.cpp:5995 +#: src/gui/gui.cpp:6017 src/gui/gui.cpp:6032 src/gui/gui.cpp:6043 +msgid "Yes" +msgstr "" + +#: src/gui/settings.cpp:6693 src/gui/findReplace.cpp:828 src/gui/gui.cpp:5664 +#: src/gui/gui.cpp:5688 src/gui/gui.cpp:5712 src/gui/gui.cpp:5736 +#: src/gui/gui.cpp:5760 src/gui/gui.cpp:5788 src/gui/gui.cpp:5813 +#: src/gui/gui.cpp:5824 src/gui/gui.cpp:5836 src/gui/gui.cpp:5848 +#: src/gui/gui.cpp:6012 src/gui/gui.cpp:6027 src/gui/gui.cpp:6037 +#: src/gui/gui.cpp:6050 +msgid "No" +msgstr "" + +#: src/gui/settings.cpp:6694 +msgid "%Y/%m/%d %H:%M" +msgstr "" + +#: src/gui/orders.cpp:114 +msgid "Add new order" +msgstr "" + +#: src/gui/orders.cpp:125 src/gui/guiConst.cpp:794 +msgid "Remove order" +msgstr "" + +#: src/gui/orders.cpp:137 +msgid "Duplicate order (right-click to deep clone)" +msgstr "" + +#: src/gui/orders.cpp:146 src/gui/guiConst.cpp:795 +msgid "Move order up" +msgstr "" + +#: src/gui/orders.cpp:155 src/gui/guiConst.cpp:796 +msgid "Move order down" +msgstr "" + +#: src/gui/orders.cpp:167 +msgid "Place copy of current order at end of song (right-click to deep clone)" +msgstr "" + +#: src/gui/orders.cpp:177 +msgid "Order change mode: entire row" +msgstr "" + +#: src/gui/orders.cpp:179 +msgid "Order change mode: one" +msgstr "" + +#: src/gui/orders.cpp:205 +msgid "Order edit mode: Select and type (scroll vertically)" +msgstr "" + +#: src/gui/orders.cpp:207 +msgid "Order edit mode: Select and type (scroll horizontally)" +msgstr "" + +#: src/gui/orders.cpp:209 +msgid "Order edit mode: Select and type (don't scroll)" +msgstr "" + +#: src/gui/orders.cpp:211 +msgid "Order edit mode: Click to change" +msgstr "" + +#: src/gui/findReplace.cpp:29 +msgid "ignore" +msgstr "" + +#: src/gui/findReplace.cpp:30 +msgid "equals" +msgstr "" + +#: src/gui/findReplace.cpp:31 +msgid "not equal" +msgstr "" + +#: src/gui/findReplace.cpp:32 +msgid "between" +msgstr "" + +#: src/gui/findReplace.cpp:33 +msgid "not between" +msgstr "" + +#: src/gui/findReplace.cpp:34 +msgid "any" +msgstr "" + +#: src/gui/findReplace.cpp:35 src/gui/guiConst.cpp:217 +msgid "none" +msgstr "" + +#: src/gui/findReplace.cpp:39 +msgid "set" +msgstr "" + +#: src/gui/findReplace.cpp:40 +msgid "add" +msgstr "" + +#: src/gui/findReplace.cpp:41 +msgid "add (overflow)" +msgstr "" + +#: src/gui/findReplace.cpp:42 +msgid "scale %" +msgstr "" + +#: src/gui/findReplace.cpp:512 src/gui/guiConst.cpp:609 +msgid "Find/Replace" +msgstr "" + +#: src/gui/findReplace.cpp:520 src/gui/findReplace.cpp:850 +msgid "Find" +msgstr "" + +#: src/gui/findReplace.cpp:526 src/gui/findReplace.cpp:535 +msgid "order" +msgstr "" + +#: src/gui/findReplace.cpp:527 src/gui/findReplace.cpp:537 +msgid "row" +msgstr "" + +#: src/gui/findReplace.cpp:539 src/gui/csPlayer.cpp:146 +msgid "channel" +msgstr "" + +#: src/gui/findReplace.cpp:541 +msgid "go" +msgstr "" + +#: src/gui/findReplace.cpp:585 +msgid "no matches found!" +msgstr "" + +#: src/gui/findReplace.cpp:587 +msgid "Back" +msgstr "" + +#: src/gui/findReplace.cpp:750 +msgid "Delete query" +msgstr "" + +#: src/gui/findReplace.cpp:754 src/gui/findReplace.cpp:1037 +msgid "Add effect" +msgstr "" + +#: src/gui/findReplace.cpp:761 src/gui/findReplace.cpp:1044 +msgid "Remove effect" +msgstr "" + +#: src/gui/findReplace.cpp:786 +msgid "Search range:" +msgstr "" + +#: src/gui/findReplace.cpp:799 +msgid "Confine to channels" +msgstr "" + +#: src/gui/findReplace.cpp:803 src/gui/sampleEdit.cpp:1152 +msgid "From" +msgstr "" + +#: src/gui/findReplace.cpp:814 src/gui/sampleEdit.cpp:1156 +msgid "To" +msgstr "" + +#: src/gui/findReplace.cpp:826 +msgid "Match effect position:" +msgstr "" + +#: src/gui/findReplace.cpp:832 +msgid "match effects regardless of position." +msgstr "" + +#: src/gui/findReplace.cpp:834 src/gui/compatFlags.cpp:288 +msgid "Lax" +msgstr "" + +#: src/gui/findReplace.cpp:838 +msgid "match effects only if they appear in-order." +msgstr "" + +#: src/gui/findReplace.cpp:840 src/gui/compatFlags.cpp:276 +msgid "Strict" +msgstr "" + +#: src/gui/findReplace.cpp:844 +msgid "match effects only if they appear exactly as specified." +msgstr "" + +#: src/gui/findReplace.cpp:856 +msgid "Replace" +msgstr "" + +#: src/gui/findReplace.cpp:908 +msgid "INVALID" +msgstr "" + +#: src/gui/findReplace.cpp:1052 +msgid "Effect replace mode:" +msgstr "" + +#: src/gui/findReplace.cpp:1053 +msgid "Replace matches only" +msgstr "" + +#: src/gui/findReplace.cpp:1056 +msgid "Replace matches, then free spaces" +msgstr "" + +#: src/gui/findReplace.cpp:1059 +msgid "Clear effects" +msgstr "" + +#: src/gui/findReplace.cpp:1062 +msgid "Insert in free spaces" +msgstr "" + +#: src/gui/findReplace.cpp:1065 +msgid "Replace##QueryReplace" +msgstr "" + +#: src/gui/about.cpp:26 +msgid "is proud to present" +msgstr "" + +#: src/gui/about.cpp:30 +msgid "the biggest multi-system chiptune tracker!" +msgstr "" + +#: src/gui/about.cpp:31 +msgid "featuring DefleMask song compatibility." +msgstr "" + +#: src/gui/about.cpp:33 +msgid "> CREDITS <" +msgstr "" + +#: src/gui/about.cpp:35 +msgid "-- program --" +msgstr "" + +#: src/gui/about.cpp:37 +msgid "A M 4 N (intro tune)" +msgstr "" + +#: src/gui/about.cpp:52 +msgid "-- graphics/UI design --" +msgstr "" + +#: src/gui/about.cpp:59 +msgid "-- documentation --" +msgstr "" + +#: src/gui/about.cpp:69 +msgid "-- localization/translation team --" +msgstr "" + +#: src/gui/about.cpp:81 +msgid "-- demo songs --" +msgstr "" + +#: src/gui/about.cpp:207 +msgid "-- additional feedback/fixes --" +msgstr "" + +#: src/gui/about.cpp:218 +msgid "-- Metal backend test team --" +msgstr "" + +#: src/gui/about.cpp:224 +msgid "-- DirectX 9 backend test team --" +msgstr "" + +#: src/gui/about.cpp:231 +msgid "powered by:" +msgstr "" + +#: src/gui/about.cpp:232 +msgid "Dear ImGui by Omar Cornut" +msgstr "" + +#: src/gui/about.cpp:233 +msgid "SDL2 by Sam Lantinga" +msgstr "" + +#: src/gui/about.cpp:237 +msgid "zlib by Jean-loup Gailly" +msgstr "" + +#: src/gui/about.cpp:238 +msgid "and Mark Adler" +msgstr "" + +#: src/gui/about.cpp:239 +msgid "libsndfile by Erik de Castro Lopo" +msgstr "" + +#: src/gui/about.cpp:240 +msgid "Portable File Dialogs by Sam Hocevar" +msgstr "" + +#: src/gui/about.cpp:241 +msgid "Native File Dialog by Frogtoss Games" +msgstr "" + +#: src/gui/about.cpp:243 +msgid "Weak-JACK by x42" +msgstr "" + +#: src/gui/about.cpp:244 +msgid "RtMidi by Gary P. Scavone" +msgstr "" + +#: src/gui/about.cpp:245 +msgid "FFTW by Matteo Frigo and Steven G. Johnson" +msgstr "" + +#: src/gui/about.cpp:246 +msgid "backward-cpp by Google" +msgstr "" + +#: src/gui/about.cpp:247 +msgid "adpcm by superctr" +msgstr "" + +#: src/gui/about.cpp:248 +msgid "adpcm-xq by David Bryant" +msgstr "" + +#: src/gui/about.cpp:249 +msgid "Nuked-OPL3/OPLL/OPM/OPN2/PSG by nukeykt" +msgstr "" + +#: src/gui/about.cpp:250 +msgid "YM3812-LLE, YMF262-LLE, YMF276-LLE and YM2608-LLE by nukeykt" +msgstr "" + +#: src/gui/about.cpp:251 +msgid "ESFMu (modified version) by Kagamiin~" +msgstr "" + +#: src/gui/about.cpp:252 +msgid "ymfm by Aaron Giles" +msgstr "" + +#: src/gui/about.cpp:253 +msgid "emu2413 by Digital Sound Antiques" +msgstr "" + +#: src/gui/about.cpp:254 +msgid "MAME SN76496 by Nicola Salmoria" +msgstr "" + +#: src/gui/about.cpp:255 +msgid "MAME AY-3-8910 by Couriersud" +msgstr "" + +#: src/gui/about.cpp:256 +msgid "with AY8930 fixes by Eulous, cam900 and Grauw" +msgstr "" + +#: src/gui/about.cpp:257 +msgid "MAME SAA1099 by Juergen Buchmueller and Manuel Abadia" +msgstr "" + +#: src/gui/about.cpp:258 +msgid "MAME Namco WSG by Nicola Salmoria and Aaron Giles" +msgstr "" + +#: src/gui/about.cpp:259 +msgid "MAME RF5C68 core by Olivier Galibert and Aaron Giles" +msgstr "" + +#: src/gui/about.cpp:260 +msgid "MAME MSM5232 core by Jarek Burczynski and Hiromitsu Shioya" +msgstr "" + +#: src/gui/about.cpp:261 +msgid "MAME MSM6258 core by Barry Rodewald" +msgstr "" + +#: src/gui/about.cpp:262 +msgid "MAME YMZ280B core by Aaron Giles" +msgstr "" + +#: src/gui/about.cpp:263 +msgid "MAME GA20 core by Acho A. Tang and R. Belmont" +msgstr "" + +#: src/gui/about.cpp:264 +msgid "MAME SegaPCM core by Hiromitsu Shioya and Olivier Galibert" +msgstr "" + +#: src/gui/about.cpp:265 +msgid "SAASound by Dave Hooper and Simon Owen" +msgstr "" + +#: src/gui/about.cpp:266 +msgid "SameBoy by Lior Halphon" +msgstr "" + +#: src/gui/about.cpp:267 +msgid "Mednafen PCE, WonderSwan, T6W28 and Virtual Boy audio cores" +msgstr "" + +#: src/gui/about.cpp:268 +msgid "SNES DSP core by Blargg" +msgstr "" + +#: src/gui/about.cpp:269 +msgid "puNES (NES, MMC5 and FDS) by FHorse" +msgstr "" + +#: src/gui/about.cpp:270 +msgid "NSFPlay (NES and FDS) by Brad Smith and Brezza" +msgstr "" + +#: src/gui/about.cpp:271 +msgid "reSID by Dag Lem" +msgstr "" + +#: src/gui/about.cpp:272 +msgid "reSIDfp by Dag Lem, Antti Lankila" +msgstr "" + +#: src/gui/about.cpp:273 +msgid "and Leandro Nini" +msgstr "" + +#: src/gui/about.cpp:274 +msgid "dSID by DefleMask Team based on jsSID" +msgstr "" + +#: src/gui/about.cpp:275 +msgid "Stella by Stella Team" +msgstr "" + +#: src/gui/about.cpp:276 +msgid "QSound emulator by superctr and Valley Bell" +msgstr "" + +#: src/gui/about.cpp:277 +msgid "VICE VIC-20 sound core by Rami Rasanen and viznut" +msgstr "" + +#: src/gui/about.cpp:278 +msgid "VICE TED sound core by Andreas Boose, Tibor Biczo" +msgstr "" + +#: src/gui/about.cpp:279 +msgid "and Marco van den Heuvel" +msgstr "" + +#: src/gui/about.cpp:280 +msgid "VERA sound core by Frank van den Hoef" +msgstr "" + +#: src/gui/about.cpp:281 +msgid "mzpokeysnd POKEY emulator by Michael Borisov" +msgstr "" + +#: src/gui/about.cpp:282 +msgid "ASAP POKEY emulator by Piotr Fusik" +msgstr "" + +#: src/gui/about.cpp:283 +msgid "ported by laoo to C++" +msgstr "" + +#: src/gui/about.cpp:284 +msgid "vgsound_emu (second version, modified version) by cam900" +msgstr "" + +#: src/gui/about.cpp:285 +msgid "SM8521 emulator (modified version) by cam900" +msgstr "" + +#: src/gui/about.cpp:286 +msgid "D65010G031 emulator (modified version) by cam900" +msgstr "" + +#: src/gui/about.cpp:287 +msgid "Namco C140/C219 emulator (modified version) by cam900" +msgstr "" + +#: src/gui/about.cpp:288 +msgid "PowerNoise emulator by scratchminer" +msgstr "" + +#: src/gui/about.cpp:289 +msgid "ep128emu by Istvan Varga" +msgstr "" + +#: src/gui/about.cpp:290 +msgid "NDS sound emulator by cam900" +msgstr "" + +#: src/gui/about.cpp:292 +msgid "greetings to:" +msgstr "" + +#: src/gui/about.cpp:295 +msgid "all members of Deflers of Noice!" +msgstr "" + +#: src/gui/about.cpp:301 +msgid "copyright © 2021-2024 tildearrow" +msgstr "" + +#: src/gui/about.cpp:302 +msgid "(and contributors)." +msgstr "" + +#: src/gui/about.cpp:303 +msgid "licensed under GPLv2+! see" +msgstr "" + +#: src/gui/about.cpp:304 +msgid "LICENSE for more information." +msgstr "" + +#: src/gui/about.cpp:306 +msgid "help Furnace grow:" +msgstr "" + +#: src/gui/about.cpp:309 +msgid "contact tildearrow at:" +msgstr "" + +#: src/gui/about.cpp:312 +msgid "disclaimer:" +msgstr "" + +#: src/gui/about.cpp:313 +msgid "despite the fact this program works" +msgstr "" + +#: src/gui/about.cpp:314 +msgid "with the .dmf file format, it is NOT" +msgstr "" + +#: src/gui/about.cpp:315 +msgid "affiliated with Delek or DefleMask in" +msgstr "" + +#: src/gui/about.cpp:316 +msgid "any way, nor it is a replacement for" +msgstr "" + +#: src/gui/about.cpp:317 +msgid "the original program." +msgstr "" + +#: src/gui/about.cpp:319 +msgid "it also comes with ABSOLUTELY NO WARRANTY." +msgstr "" + +#: src/gui/about.cpp:321 +msgid "thanks to all contributors/bug reporters!" +msgstr "" + +#: src/gui/about.cpp:328 +msgid "About Furnace" +msgstr "" + +#: src/gui/about.cpp:418 +msgid "Unsaved changes! Save changes before playing?" +msgstr "" + +#: src/gui/compatFlags.cpp:31 src/gui/guiConst.cpp:598 +msgid "Compatibility Flags" +msgstr "" + +#: src/gui/compatFlags.cpp:32 +msgid "" +"these flags are designed to provide better DefleMask/older Furnace " +"compatibility.\n" +"it is recommended to disable most of these unless you rely on specific " +"quirks." +msgstr "" + +#: src/gui/compatFlags.cpp:34 src/gui/compatFlags.cpp:310 +msgid "DefleMask" +msgstr "" + +#: src/gui/compatFlags.cpp:35 +msgid "Limit slide range" +msgstr "" + +#: src/gui/compatFlags.cpp:37 +msgid "" +"when enabled, slides are limited to a compatible range.\n" +"may cause problems with slides in negative octaves." +msgstr "" + +#: src/gui/compatFlags.cpp:39 +msgid "Compatible noise layout on NES and PC Engine" +msgstr "" + +#: src/gui/compatFlags.cpp:41 +msgid "" +"use a rather unusual compatible noise frequency layout.\n" +"removes some noise frequencies on PC Engine." +msgstr "" + +#: src/gui/compatFlags.cpp:43 +msgid "Game Boy instrument duty is wave volume" +msgstr "" + +#: src/gui/compatFlags.cpp:45 +msgid "" +"if enabled, an instrument with duty macro in the wave channel will be mapped " +"to wavetable volume." +msgstr "" + +#: src/gui/compatFlags.cpp:48 +msgid "Restart macro on portamento" +msgstr "" + +#: src/gui/compatFlags.cpp:50 +msgid "" +"when enabled, a portamento effect will reset the channel's macro if used in " +"combination with a note." +msgstr "" + +#: src/gui/compatFlags.cpp:52 +msgid "Legacy volume slides" +msgstr "" + +#: src/gui/compatFlags.cpp:54 +msgid "" +"simulate glitchy volume slide behavior by silently overflowing the volume " +"when the slide goes below 0." +msgstr "" + +#: src/gui/compatFlags.cpp:56 +msgid "Compatible arpeggio" +msgstr "" + +#: src/gui/compatFlags.cpp:58 +msgid "delay arpeggio by one tick on every new note." +msgstr "" + +#: src/gui/compatFlags.cpp:60 +msgid "Disable DAC when sample ends" +msgstr "" + +#: src/gui/compatFlags.cpp:62 +msgid "" +"when enabled, the DAC in YM2612 will be disabled if there isn't any sample " +"playing." +msgstr "" + +#: src/gui/compatFlags.cpp:64 +msgid "Broken speed alternation" +msgstr "" + +#: src/gui/compatFlags.cpp:66 +msgid "" +"determines next speed based on whether the row is odd/even instead of " +"alternating between speeds." +msgstr "" + +#: src/gui/compatFlags.cpp:68 +msgid "Ignore duplicate slide effects" +msgstr "" + +#: src/gui/compatFlags.cpp:70 +msgid "" +"if this is on, only the first slide of a row in a channel will be considered." +msgstr "" + +#: src/gui/compatFlags.cpp:72 +msgid "Ignore 0Dxx on the last order" +msgstr "" + +#: src/gui/compatFlags.cpp:74 +msgid "" +"if this is on, a jump to next row effect will not take place when it is on " +"the last order of a song." +msgstr "" + +#: src/gui/compatFlags.cpp:76 +msgid "Buggy portamento after pitch slide" +msgstr "" + +#: src/gui/compatFlags.cpp:78 +msgid "simulates a bug in where portamento does not work after sliding." +msgstr "" + +#: src/gui/compatFlags.cpp:80 +msgid "FM pitch slide octave boundary odd behavior" +msgstr "" + +#: src/gui/compatFlags.cpp:82 +msgid "" +"if this is on, a pitch slide that crosses the octave boundary will stop for " +"one tick and then continue from the nearest octave boundary.\n" +"for .dmf compatibility." +msgstr "" + +#: src/gui/compatFlags.cpp:84 +msgid "Don't apply Game Boy envelope on note-less instrument change" +msgstr "" + +#: src/gui/compatFlags.cpp:86 +msgid "if this is on, an instrument change will not affect the envelope." +msgstr "" + +#: src/gui/compatFlags.cpp:88 +msgid "Ignore DAC mode change outside of intended channel in ExtCh mode" +msgstr "" + +#: src/gui/compatFlags.cpp:90 +msgid "if this is on, 17xx has no effect on the operator channels in YM2612." +msgstr "" + +#: src/gui/compatFlags.cpp:92 +msgid "E1xy/E2xy also take priority over slide stops" +msgstr "" + +#: src/gui/compatFlags.cpp:94 +msgid "does this make any sense by now?" +msgstr "" + +#: src/gui/compatFlags.cpp:96 +msgid "E1xy/E2xy stop when repeating the same note" +msgstr "" + +#: src/gui/compatFlags.cpp:98 +msgid "ugh, if only this wasn't a thing..." +msgstr "" + +#: src/gui/compatFlags.cpp:100 +msgid "SN76489 duty macro always resets phase" +msgstr "" + +#: src/gui/compatFlags.cpp:102 +msgid "" +"when enabled, duty macro will always reset phase, even if its value hasn't " +"changed." +msgstr "" + +#: src/gui/compatFlags.cpp:104 +msgid "Broken volume scaling strategy" +msgstr "" + +#: src/gui/compatFlags.cpp:106 +msgid "" +"when enabled:\n" +"- log scaling: multiply\n" +"- linear scaling: subtract\n" +"when disabled:\n" +"- log scaling: subtract\n" +"- linear scaling: multiply" +msgstr "" + +#: src/gui/compatFlags.cpp:108 +msgid "Don't persist volume macro after it finishes" +msgstr "" + +#: src/gui/compatFlags.cpp:110 +msgid "" +"when enabled, a value in the volume column that happens after the volume " +"macro is done will disregard the macro." +msgstr "" + +#: src/gui/compatFlags.cpp:112 +msgid "Broken output volume on instrument change" +msgstr "Pohubený hlas na zmene instrumenta" + +#: src/gui/compatFlags.cpp:114 +msgid "" +"if enabled, no checks for the presence of a volume macro will be made.\n" +"this will cause the last macro value to linger unless a value in the volume " +"column is present." +msgstr "" + +#: src/gui/compatFlags.cpp:116 +msgid "Broken output volume - Episode 2 (PLEASE KEEP ME DISABLED)" +msgstr "Pohubený hlas - Časť dva (NECHAJ MA VYPNÚTI)" + +# its a mess, I'll have to do it again. Jebem ti slovenčinu. +#: src/gui/compatFlags.cpp:118 +msgid "" +"these compatibility flags are getting SO damn ridiculous and out of " +"control.\n" +"as you may have guessed, this one exists due to yet ANOTHER DefleMask-" +"specific behavior.\n" +"please keep this off at all costs, because I will not support it when ROM " +"export comes.\n" +"oh, and don't start an argument out of it. Furnace isn't a DefleMask " +"replacement, and no,\n" +"I am not trying to make it look like one with all these flags.\n" +"\n" +"oh, and what about the other flags that don't have to do with DefleMask?\n" +"those are for .mod import, future FamiTracker import and personal taste!\n" +"\n" +"end of rant" +msgstr "" +"Tieto kompatibilné nastavenia sú toľko blbé a hlúpe.\n" +"Možete uhadnuť, tento problem existuje kvôli EŠTE JEDNEJ DefleMask-ovej " +"chybi.\n" +"Prosím vás, nechajte toto vypnúte ako keby vám život závisel od tochto, lebo " +"nebudem podržiavať toto keď príde ROM vývoz.\n" +"Tak, nezačínajte spor vôkol tochto. Furnace nie je DefleMask 2.0,aj " +"nechcem,\n" +"Aby sa zdalo kvôli tíchto nastaveniach.\n" +"\n" +"No, a čo s týmito nastaveniami čo nemaju nič s DelfeMask-om?\n" +"To sú pre .mod učítanie, budúce famitracker učitanie aj pre osobný vkus!\n" +"\n" +"koniec mojích mýšlienok" + +#: src/gui/compatFlags.cpp:120 +msgid "Treat SN76489 periods under 8 as 1" +msgstr "" + +#: src/gui/compatFlags.cpp:122 +msgid "" +"when enabled, any SN period under 8 will be written as 1 instead.\n" +"this replicates DefleMask behavior, but reduces available period range." +msgstr "" + +#: src/gui/compatFlags.cpp:126 src/gui/compatFlags.cpp:304 +msgid "Old Furnace" +msgstr "" + +#: src/gui/compatFlags.cpp:127 +msgid "Arpeggio inhibits non-porta slides" +msgstr "" + +#: src/gui/compatFlags.cpp:129 src/gui/compatFlags.cpp:133 +msgid "behavior changed in 0.5.5" +msgstr "" + +#: src/gui/compatFlags.cpp:131 +msgid "Wack FM algorithm macro" +msgstr "" + +#: src/gui/compatFlags.cpp:135 +msgid "Broken shortcut slides (E1xy/E2xy)" +msgstr "" + +#: src/gui/compatFlags.cpp:137 +msgid "behavior changed in 0.5.7" +msgstr "" + +#: src/gui/compatFlags.cpp:139 +msgid "Stop portamento on note off" +msgstr "" + +#: src/gui/compatFlags.cpp:141 src/gui/compatFlags.cpp:145 +#: src/gui/compatFlags.cpp:149 src/gui/compatFlags.cpp:153 +#: src/gui/compatFlags.cpp:157 src/gui/compatFlags.cpp:161 +#: src/gui/compatFlags.cpp:165 +msgid "behavior changed in 0.6pre1" +msgstr "" + +#: src/gui/compatFlags.cpp:143 +msgid "Don't allow instrument change during slides" +msgstr "" + +#: src/gui/compatFlags.cpp:147 +msgid "Don't reset note to base on arpeggio stop" +msgstr "" + +#: src/gui/compatFlags.cpp:151 +msgid "ExtCh channel status is not shared among operators" +msgstr "" + +#: src/gui/compatFlags.cpp:155 +msgid "Disable new SegaPCM features (macros and better panning)" +msgstr "" + +#: src/gui/compatFlags.cpp:159 +msgid "Old FM octave boundary behavior" +msgstr "" + +#: src/gui/compatFlags.cpp:163 +msgid "Disable OPN2 DAC volume control" +msgstr "" + +#: src/gui/compatFlags.cpp:167 +msgid "Broken initial position of portamento after arpeggio" +msgstr "" + +#: src/gui/compatFlags.cpp:169 +msgid "behavior changed in 0.6pre1.5" +msgstr "" + +#: src/gui/compatFlags.cpp:171 +msgid "Disable new sample features" +msgstr "" + +#: src/gui/compatFlags.cpp:173 src/gui/compatFlags.cpp:177 +msgid "behavior changed in 0.6pre2" +msgstr "" + +#: src/gui/compatFlags.cpp:175 +msgid "Old arpeggio macro + pitch slide strategy" +msgstr "" + +#: src/gui/compatFlags.cpp:179 +msgid "Broken portamento during legato" +msgstr "" + +#: src/gui/compatFlags.cpp:181 +msgid "behavior changed in 0.6pre4" +msgstr "" + +#: src/gui/compatFlags.cpp:183 +msgid "Broken macros in some FM chips after note off" +msgstr "" + +#: src/gui/compatFlags.cpp:185 +msgid "behavior changed in 0.6pre5" +msgstr "" + +#: src/gui/compatFlags.cpp:187 +msgid "Pre-note does not take effects into consideration" +msgstr "" + +#: src/gui/compatFlags.cpp:189 +msgid "behavior changed in 0.6pre9" +msgstr "" + +#: src/gui/compatFlags.cpp:191 +msgid "Disable new NES DPCM features" +msgstr "" + +#: src/gui/compatFlags.cpp:193 +msgid "behavior changed in 0.6.1" +msgstr "" + +#: src/gui/compatFlags.cpp:195 +msgid "Legacy technical ALWAYS_SET_VOLUME behavior" +msgstr "" + +#: src/gui/compatFlags.cpp:197 +msgid "" +"behavior changed in 0.6.1\n" +"this flag will be removed if I find out that none of the songs break after " +"disabling it." +msgstr "" + +#: src/gui/compatFlags.cpp:199 +msgid "Old sample offset effect" +msgstr "" + +#: src/gui/compatFlags.cpp:201 +msgid "behavior changed in 0.6.3" +msgstr "" + +#: src/gui/compatFlags.cpp:205 +msgid ".mod import" +msgstr "" + +#: src/gui/compatFlags.cpp:206 +msgid "Don't slide on the first tick of a row" +msgstr "" + +#: src/gui/compatFlags.cpp:208 +msgid "" +"simulates ProTracker's behavior of not applying volume/pitch slides on the " +"first tick of a row." +msgstr "" + +#: src/gui/compatFlags.cpp:210 +msgid "Reset arpeggio position on row change" +msgstr "" + +#: src/gui/compatFlags.cpp:212 +msgid "" +"simulates ProTracker's behavior of arpeggio being bound to the current tick " +"of a row." +msgstr "" + +#: src/gui/compatFlags.cpp:216 +msgid "Pitch/Playback" +msgstr "" + +#: src/gui/compatFlags.cpp:217 +msgid "Pitch linearity:" +msgstr "" + +#: src/gui/compatFlags.cpp:223 +msgid "like ProTracker/FamiTracker" +msgstr "" + +#: src/gui/compatFlags.cpp:227 +msgid "Partial (only 04xy/E5xx)" +msgstr "" + +#: src/gui/compatFlags.cpp:231 +msgid "" +"like DefleMask\n" +"\n" +"this pitch linearity mode is deprecated due to:\n" +"- excessive complexity\n" +"- lack of possible optimization\n" +"\n" +"it is recommended to change it now because I will remove this option in the " +"future!" +msgstr "" + +#: src/gui/compatFlags.cpp:235 +msgid "Full" +msgstr "" + +#: src/gui/compatFlags.cpp:239 +msgid "like Impulse Tracker" +msgstr "" + +#: src/gui/compatFlags.cpp:246 +msgid "Pitch slide speed multiplier" +msgstr "" + +#: src/gui/compatFlags.cpp:252 +msgid "Loop modality:" +msgstr "" + +#: src/gui/compatFlags.cpp:254 +msgid "Reset channels" +msgstr "" + +#: src/gui/compatFlags.cpp:258 +msgid "" +"select to reset channels on loop. may trigger a voltage click on every loop!" +msgstr "" + +#: src/gui/compatFlags.cpp:260 +msgid "Soft reset channels" +msgstr "" + +#: src/gui/compatFlags.cpp:264 +msgid "select to turn channels off on loop." +msgstr "" + +#: src/gui/compatFlags.cpp:266 +msgid "Do nothing" +msgstr "" + +#: src/gui/compatFlags.cpp:270 +msgid "select to not reset channels on loop." +msgstr "" + +#: src/gui/compatFlags.cpp:274 +msgid "Cut/delay effect policy:" +msgstr "" + +#: src/gui/compatFlags.cpp:280 +msgid "only when time is less than speed (like DefleMask/ProTracker)" +msgstr "" + +#: src/gui/compatFlags.cpp:282 +msgid "Strict (old)" +msgstr "" + +#: src/gui/compatFlags.cpp:286 +msgid "only when time is less than or equal to speed (original buggy behavior)" +msgstr "" + +#: src/gui/compatFlags.cpp:292 +msgid "no checks" +msgstr "" + +#: src/gui/compatFlags.cpp:296 +msgid "Simultaneous jump (0B+0D) treatment:" +msgstr "" + +#: src/gui/compatFlags.cpp:302 +msgid "accept 0B+0D to jump to a specific row of an order" +msgstr "" + +#: src/gui/compatFlags.cpp:308 +msgid "only accept the first jump effect" +msgstr "" + +#: src/gui/compatFlags.cpp:314 +msgid "only accept 0Dxx" +msgstr "" + +#: src/gui/compatFlags.cpp:320 +msgid "Auto-insert one tick gap between notes" +msgstr "" + +#: src/gui/compatFlags.cpp:322 +msgid "" +"when enabled, a one-tick note cut will be inserted between non-legato/non-" +"portamento notes.\n" +"this simulates the behavior of some Amiga/SNES music engines.\n" +"\n" +"ineffective on C64." +msgstr "" + +#: src/gui/compatFlags.cpp:327 +msgid "Don't reset slides after note off" +msgstr "" + +#: src/gui/compatFlags.cpp:329 +msgid "when enabled, note off will not reset the channel's slide effect." +msgstr "" + +#: src/gui/compatFlags.cpp:331 +msgid "Don't reset portamento after reaching target" +msgstr "" + +#: src/gui/compatFlags.cpp:333 +msgid "" +"when enabled, the slide effect will not be disabled after it reaches its " +"target." +msgstr "" + +#: src/gui/compatFlags.cpp:335 +msgid "Continuous vibrato" +msgstr "" + +#: src/gui/compatFlags.cpp:337 +msgid "when enabled, vibrato phase/position will not be reset on a new note." +msgstr "" + +#: src/gui/compatFlags.cpp:339 +msgid "Pitch macro is not linear" +msgstr "" + +#: src/gui/compatFlags.cpp:341 +msgid "" +"when enabled, the pitch macro of an instrument is in frequency/period space." +msgstr "" + +#: src/gui/compatFlags.cpp:343 +msgid "Reset arpeggio effect position on new note" +msgstr "" + +#: src/gui/compatFlags.cpp:345 +msgid "when enabled, arpeggio effect (00xy) position is reset on a new note." +msgstr "" + +#: src/gui/compatFlags.cpp:347 +msgid "Volume scaling rounds up" +msgstr "" + +#: src/gui/compatFlags.cpp:349 +msgid "" +"when enabled, volume macros round up when applied\n" +"this prevents volume scaling from causing vol=0, which is silent on some " +"chips\n" +"\n" +"ineffective on logarithmic channels" +msgstr "" + +#: src/gui/guiConst.cpp:127 +msgid "Generic Sample" +msgstr "" + +#: src/gui/guiConst.cpp:155 +msgid "OPL (drums)" +msgstr "" + +#: src/gui/guiConst.cpp:191 +msgid "Forward" +msgstr "" + +#: src/gui/guiConst.cpp:192 +msgid "Backward" +msgstr "" + +#: src/gui/guiConst.cpp:193 +msgid "Ping pong" +msgstr "" + +#: src/gui/guiConst.cpp:218 +msgid "linear" +msgstr "" + +#: src/gui/guiConst.cpp:219 +msgid "cubic spline" +msgstr "" + +#: src/gui/guiConst.cpp:220 +msgid "blep synthesis" +msgstr "" + +#: src/gui/guiConst.cpp:221 +msgid "sinc" +msgstr "" + +#: src/gui/guiConst.cpp:222 +msgid "best possible" +msgstr "" + +#: src/gui/guiConst.cpp:226 src/gui/sampleEdit.cpp:137 +#: src/gui/sampleEdit.cpp:143 +msgid "Invalid" +msgstr "" + +#: src/gui/guiConst.cpp:231 +msgid "Time" +msgstr "" + +#: src/gui/guiConst.cpp:233 +msgid "System (Primary)" +msgstr "" + +#: src/gui/guiConst.cpp:234 +msgid "System (Secondary)" +msgstr "" + +#: src/gui/guiConst.cpp:530 +msgid "---Global" +msgstr "" + +#: src/gui/guiConst.cpp:532 +msgid "Open file" +msgstr "" + +#: src/gui/guiConst.cpp:533 +msgid "Restore backup" +msgstr "" + +#: src/gui/guiConst.cpp:534 +msgid "Save file" +msgstr "" + +#: src/gui/guiConst.cpp:535 +msgid "Save as" +msgstr "" + +#: src/gui/guiConst.cpp:537 src/gui/sampleEdit.cpp:982 +msgid "Undo" +msgstr "" + +#: src/gui/guiConst.cpp:539 src/gui/guiConst.cpp:541 src/gui/sampleEdit.cpp:989 +msgid "Redo" +msgstr "" + +#: src/gui/guiConst.cpp:543 +msgid "Exit" +msgstr "" + +#: src/gui/guiConst.cpp:544 +msgid "Play/Stop (toggle)" +msgstr "" + +#: src/gui/guiConst.cpp:547 +msgid "Play (from beginning)" +msgstr "" + +#: src/gui/guiConst.cpp:548 +msgid "Play (repeat pattern)" +msgstr "" + +#: src/gui/guiConst.cpp:549 +msgid "Play from cursor" +msgstr "" + +#: src/gui/guiConst.cpp:550 +msgid "Step row" +msgstr "" + +#: src/gui/guiConst.cpp:551 +msgid "Octave up" +msgstr "" + +#: src/gui/guiConst.cpp:552 +msgid "Octave down" +msgstr "" + +#: src/gui/guiConst.cpp:553 +msgid "Previous instrument" +msgstr "" + +#: src/gui/guiConst.cpp:554 +msgid "Next instrument" +msgstr "" + +#: src/gui/guiConst.cpp:555 +msgid "Increase edit step" +msgstr "" + +#: src/gui/guiConst.cpp:556 +msgid "Decrease edit step" +msgstr "" + +#: src/gui/guiConst.cpp:557 +msgid "Toggle edit mode" +msgstr "" + +#: src/gui/guiConst.cpp:559 +msgid "Toggle repeat pattern" +msgstr "" + +#: src/gui/guiConst.cpp:562 +msgid "Toggle full-screen" +msgstr "" + +#: src/gui/guiConst.cpp:563 +msgid "Request voice from TX81Z" +msgstr "" + +#: src/gui/guiConst.cpp:565 +msgid "Clear song data" +msgstr "" + +#: src/gui/guiConst.cpp:567 src/gui/gui.cpp:5573 src/gui/gui.cpp:5625 +msgid "Command Palette" +msgstr "" + +#: src/gui/guiConst.cpp:569 +msgid "Recent files (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:570 +msgid "Instruments (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:571 +msgid "Samples (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:572 +msgid "Change instrument (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:573 +msgid "Add chip (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:578 +msgid "Instrument List" +msgstr "" + +#: src/gui/guiConst.cpp:579 src/gui/insEdit.cpp:5203 +msgid "Instrument Editor" +msgstr "" + +#: src/gui/guiConst.cpp:580 +msgid "Song Information" +msgstr "" + +#: src/gui/guiConst.cpp:583 +msgid "Wavetable List" +msgstr "" + +#: src/gui/guiConst.cpp:584 src/gui/waveEdit.cpp:409 +msgid "Wavetable Editor" +msgstr "" + +#: src/gui/guiConst.cpp:585 +msgid "Sample List" +msgstr "" + +#: src/gui/guiConst.cpp:594 +msgid "Debug Menu" +msgstr "" + +#: src/gui/guiConst.cpp:595 +msgid "Oscilloscope (master)" +msgstr "" + +#: src/gui/guiConst.cpp:603 src/gui/sysManager.cpp:41 +msgid "Chip Manager" +msgstr "" + +#: src/gui/guiConst.cpp:614 src/gui/csPlayer.cpp:112 +msgid "Command Stream Player" +msgstr "" + +#: src/gui/guiConst.cpp:615 +msgid "User Presets" +msgstr "" + +#: src/gui/guiConst.cpp:617 +msgid "Collapse/expand current window" +msgstr "" + +#: src/gui/guiConst.cpp:618 +msgid "Close current window" +msgstr "" + +#: src/gui/guiConst.cpp:621 +msgid "---Pattern" +msgstr "" + +#: src/gui/guiConst.cpp:622 +msgid "Transpose (+1)" +msgstr "" + +#: src/gui/guiConst.cpp:623 +msgid "Transpose (-1)" +msgstr "" + +#: src/gui/guiConst.cpp:624 +msgid "Transpose (+1 octave)" +msgstr "" + +#: src/gui/guiConst.cpp:625 +msgid "Transpose (-1 octave)" +msgstr "" + +#: src/gui/guiConst.cpp:626 +msgid "Increase values (+1)" +msgstr "" + +#: src/gui/guiConst.cpp:627 +msgid "Increase values (-1)" +msgstr "" + +#: src/gui/guiConst.cpp:628 +msgid "Increase values (+16)" +msgstr "" + +#: src/gui/guiConst.cpp:629 +msgid "Increase values (-16)" +msgstr "" + +#: src/gui/guiConst.cpp:630 +msgid "Select all" +msgstr "" + +#: src/gui/guiConst.cpp:631 +msgid "Cut" +msgstr "" + +#: src/gui/guiConst.cpp:632 +msgid "Copy" +msgstr "" + +#: src/gui/guiConst.cpp:633 +msgid "Paste" +msgstr "" + +#: src/gui/guiConst.cpp:634 +msgid "Paste Mix (foreground)" +msgstr "" + +#: src/gui/guiConst.cpp:635 +msgid "Paste Mix (background)" +msgstr "" + +#: src/gui/guiConst.cpp:636 +msgid "Paste Flood" +msgstr "" + +#: src/gui/guiConst.cpp:637 +msgid "Paste Overflow" +msgstr "" + +#: src/gui/guiConst.cpp:638 +msgid "Move cursor up" +msgstr "" + +#: src/gui/guiConst.cpp:639 +msgid "Move cursor down" +msgstr "" + +#: src/gui/guiConst.cpp:640 +msgid "Move cursor left" +msgstr "" + +#: src/gui/guiConst.cpp:641 +msgid "Move cursor right" +msgstr "" + +#: src/gui/guiConst.cpp:642 +msgid "Move cursor up by one (override Edit Step)" +msgstr "" + +#: src/gui/guiConst.cpp:643 +msgid "Move cursor down by one (override Edit Step)" +msgstr "" + +#: src/gui/guiConst.cpp:644 +msgid "Move cursor to previous channel" +msgstr "" + +#: src/gui/guiConst.cpp:645 +msgid "Move cursor to next channel" +msgstr "" + +#: src/gui/guiConst.cpp:646 +msgid "Move cursor to next channel (overflow)" +msgstr "" + +#: src/gui/guiConst.cpp:647 +msgid "Move cursor to previous channel (overflow)" +msgstr "" + +#: src/gui/guiConst.cpp:648 +msgid "Move cursor to beginning of pattern" +msgstr "" + +#: src/gui/guiConst.cpp:649 +msgid "Move cursor to end of pattern" +msgstr "" + +#: src/gui/guiConst.cpp:650 +msgid "Move cursor up (coarse)" +msgstr "" + +#: src/gui/guiConst.cpp:651 +msgid "Move cursor down (coarse)" +msgstr "" + +#: src/gui/guiConst.cpp:652 +msgid "Expand selection upwards" +msgstr "" + +#: src/gui/guiConst.cpp:653 +msgid "Expand selection downwards" +msgstr "" + +#: src/gui/guiConst.cpp:654 +msgid "Expand selection to the left" +msgstr "" + +#: src/gui/guiConst.cpp:655 +msgid "Expand selection to the right" +msgstr "" + +#: src/gui/guiConst.cpp:656 +msgid "Expand selection upwards by one (override Edit Step)" +msgstr "" + +#: src/gui/guiConst.cpp:657 +msgid "Expand selection downwards by one (override Edit Step)" +msgstr "" + +#: src/gui/guiConst.cpp:658 +msgid "Expand selection to beginning of pattern" +msgstr "" + +#: src/gui/guiConst.cpp:659 +msgid "Expand selection to end of pattern" +msgstr "" + +#: src/gui/guiConst.cpp:660 +msgid "Expand selection upwards (coarse)" +msgstr "" + +#: src/gui/guiConst.cpp:661 +msgid "Expand selection downwards (coarse)" +msgstr "" + +#: src/gui/guiConst.cpp:662 +msgid "Move selection up" +msgstr "" + +#: src/gui/guiConst.cpp:663 +msgid "Move selection down" +msgstr "" + +#: src/gui/guiConst.cpp:664 +msgid "Move selection to previous channel" +msgstr "" + +#: src/gui/guiConst.cpp:665 +msgid "Move selection to next channel" +msgstr "" + +#: src/gui/guiConst.cpp:667 +msgid "Pull delete" +msgstr "" + +#: src/gui/guiConst.cpp:668 +msgid "Insert" +msgstr "" + +#: src/gui/guiConst.cpp:669 +msgid "Mute channel at cursor" +msgstr "" + +#: src/gui/guiConst.cpp:670 +msgid "Solo channel at cursor" +msgstr "" + +#: src/gui/guiConst.cpp:671 +msgid "Unmute all channels" +msgstr "" + +#: src/gui/guiConst.cpp:672 +msgid "Go to next order" +msgstr "" + +#: src/gui/guiConst.cpp:673 +msgid "Go to previous order" +msgstr "" + +#: src/gui/guiConst.cpp:674 +msgid "Collapse channel at cursor" +msgstr "" + +#: src/gui/guiConst.cpp:675 +msgid "Increase effect columns" +msgstr "" + +#: src/gui/guiConst.cpp:676 +msgid "Decrease effect columns" +msgstr "" + +#: src/gui/guiConst.cpp:677 +msgid "Interpolate" +msgstr "" + +#: src/gui/guiConst.cpp:678 src/gui/insEdit.cpp:530 +msgid "Fade" +msgstr "" + +#: src/gui/guiConst.cpp:679 +msgid "Invert values" +msgstr "" + +#: src/gui/guiConst.cpp:680 +msgid "Flip selection" +msgstr "" + +#: src/gui/guiConst.cpp:681 +msgid "Collapse rows" +msgstr "" + +#: src/gui/guiConst.cpp:682 +msgid "Expand rows" +msgstr "" + +#: src/gui/guiConst.cpp:683 +msgid "Collapse pattern" +msgstr "" + +#: src/gui/guiConst.cpp:684 +msgid "Expand pattern" +msgstr "" + +#: src/gui/guiConst.cpp:685 +msgid "Collapse song" +msgstr "" + +#: src/gui/guiConst.cpp:686 +msgid "Expand song" +msgstr "" + +#: src/gui/guiConst.cpp:687 +msgid "Set note input latch" +msgstr "" + +#: src/gui/guiConst.cpp:688 +msgid "Change mobile scroll mode" +msgstr "" + +#: src/gui/guiConst.cpp:689 +msgid "Clear note input latch" +msgstr "" + +#: src/gui/guiConst.cpp:692 +msgid "---Instrument list" +msgstr "" + +#: src/gui/guiConst.cpp:693 +msgid "Add instrument" +msgstr "" + +#: src/gui/guiConst.cpp:694 +msgid "Duplicate instrument" +msgstr "" + +#: src/gui/guiConst.cpp:695 +msgid "Open instrument" +msgstr "" + +#: src/gui/guiConst.cpp:696 +msgid "Open instrument (replace current)" +msgstr "" + +#: src/gui/guiConst.cpp:697 +msgid "Save instrument" +msgstr "" + +#: src/gui/guiConst.cpp:698 +msgid "Save instrument (.dmp)" +msgstr "" + +#: src/gui/guiConst.cpp:699 +msgid "Move instrument up in list" +msgstr "" + +#: src/gui/guiConst.cpp:700 +msgid "Move instrument down in list" +msgstr "" + +#: src/gui/guiConst.cpp:701 +msgid "Delete instrument" +msgstr "" + +#: src/gui/guiConst.cpp:702 +msgid "Edit instrument" +msgstr "" + +#: src/gui/guiConst.cpp:703 +msgid "Instrument cursor up" +msgstr "" + +#: src/gui/guiConst.cpp:704 +msgid "Instrument cursor down" +msgstr "" + +#: src/gui/guiConst.cpp:705 +msgid "Instruments: toggle folders/standard view" +msgstr "" + +#: src/gui/guiConst.cpp:708 +msgid "---Wavetable list" +msgstr "" + +#: src/gui/guiConst.cpp:709 +msgid "Add wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:710 +msgid "Duplicate wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:711 +msgid "Open wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:712 +msgid "Open wavetable (replace current)" +msgstr "" + +#: src/gui/guiConst.cpp:713 +msgid "Save wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:714 +msgid "Save wavetable (.dmw)" +msgstr "" + +#: src/gui/guiConst.cpp:715 +msgid "Save wavetable (raw)" +msgstr "" + +#: src/gui/guiConst.cpp:716 +msgid "Move wavetable up in list" +msgstr "" + +#: src/gui/guiConst.cpp:717 +msgid "Move wavetable down in list" +msgstr "" + +#: src/gui/guiConst.cpp:718 +msgid "Delete wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:719 +msgid "Edit wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:720 +msgid "Wavetable cursor up" +msgstr "" + +#: src/gui/guiConst.cpp:721 +msgid "Wavetable cursor down" +msgstr "" + +#: src/gui/guiConst.cpp:722 +msgid "Wavetables: toggle folders/standard view" +msgstr "" + +#: src/gui/guiConst.cpp:725 +msgid "---Sample list" +msgstr "" + +#: src/gui/guiConst.cpp:726 +msgid "Add sample" +msgstr "" + +#: src/gui/guiConst.cpp:727 +msgid "Duplicate sample" +msgstr "" + +#: src/gui/guiConst.cpp:728 +msgid "Open sample" +msgstr "" + +#: src/gui/guiConst.cpp:729 +msgid "Open sample (replace current)" +msgstr "" + +#: src/gui/guiConst.cpp:730 +msgid "Import raw sample data" +msgstr "" + +#: src/gui/guiConst.cpp:731 +msgid "Import raw sample data (replace current)" +msgstr "" + +#: src/gui/guiConst.cpp:732 +msgid "Save sample" +msgstr "" + +#: src/gui/guiConst.cpp:733 +msgid "Save sample (raw)" +msgstr "" + +#: src/gui/guiConst.cpp:734 +msgid "Move sample up in list" +msgstr "" + +#: src/gui/guiConst.cpp:735 +msgid "Move sample down in list" +msgstr "" + +#: src/gui/guiConst.cpp:736 +msgid "Delete sample" +msgstr "" + +#: src/gui/guiConst.cpp:737 +msgid "Edit sample" +msgstr "" + +#: src/gui/guiConst.cpp:738 +msgid "Sample cursor up" +msgstr "" + +#: src/gui/guiConst.cpp:739 +msgid "Sample cursor down" +msgstr "" + +#: src/gui/guiConst.cpp:741 src/gui/sampleEdit.cpp:1339 +msgid "Stop sample preview" +msgstr "" + +#: src/gui/guiConst.cpp:742 +msgid "Samples: Toggle folders/standard view" +msgstr "" + +#: src/gui/guiConst.cpp:743 +msgid "Samples: Make me a drum kit" +msgstr "" + +#: src/gui/guiConst.cpp:746 +msgid "---Sample editor" +msgstr "" + +#: src/gui/guiConst.cpp:747 +msgid "Sample editor mode: Select" +msgstr "" + +#: src/gui/guiConst.cpp:748 +msgid "Sample editor mode: Draw" +msgstr "" + +#: src/gui/guiConst.cpp:749 +msgid "Sample editor: Cut" +msgstr "" + +#: src/gui/guiConst.cpp:750 +msgid "Sample editor: Copy" +msgstr "" + +#: src/gui/guiConst.cpp:751 +msgid "Sample editor: Paste" +msgstr "" + +#: src/gui/guiConst.cpp:752 +msgid "Sample editor: Paste replace" +msgstr "" + +#: src/gui/guiConst.cpp:753 +msgid "Sample editor: Paste mix" +msgstr "" + +#: src/gui/guiConst.cpp:754 +msgid "Sample editor: Select all" +msgstr "" + +#: src/gui/guiConst.cpp:755 +msgid "Sample editor: Resize" +msgstr "" + +#: src/gui/guiConst.cpp:756 +msgid "Sample editor: Resample" +msgstr "" + +#: src/gui/guiConst.cpp:757 +msgid "Sample editor: Amplify" +msgstr "" + +#: src/gui/guiConst.cpp:758 +msgid "Sample editor: Normalize" +msgstr "" + +#: src/gui/guiConst.cpp:759 +msgid "Sample editor: Fade in" +msgstr "" + +#: src/gui/guiConst.cpp:760 +msgid "Sample editor: Fade out" +msgstr "" + +#: src/gui/guiConst.cpp:761 +msgid "Sample editor: Apply silence" +msgstr "" + +#: src/gui/guiConst.cpp:762 +msgid "Sample editor: Insert silence" +msgstr "" + +#: src/gui/guiConst.cpp:763 +msgid "Sample editor: Delete" +msgstr "" + +#: src/gui/guiConst.cpp:764 +msgid "Sample editor: Trim" +msgstr "" + +#: src/gui/guiConst.cpp:765 +msgid "Sample editor: Reverse" +msgstr "" + +#: src/gui/guiConst.cpp:766 +msgid "Sample editor: Invert" +msgstr "" + +#: src/gui/guiConst.cpp:767 +msgid "Sample editor: Signed/unsigned exchange" +msgstr "" + +#: src/gui/guiConst.cpp:768 +msgid "Sample editor: Apply filter" +msgstr "" + +#: src/gui/guiConst.cpp:769 +msgid "Sample editor: Crossfade loop points" +msgstr "" + +#: src/gui/guiConst.cpp:770 +msgid "Sample editor: Preview sample" +msgstr "" + +#: src/gui/guiConst.cpp:771 +msgid "Sample editor: Stop sample preview" +msgstr "" + +#: src/gui/guiConst.cpp:772 +msgid "Sample editor: Zoom in" +msgstr "" + +#: src/gui/guiConst.cpp:773 +msgid "Sample editor: Zoom out" +msgstr "" + +#: src/gui/guiConst.cpp:774 +msgid "Sample editor: Toggle auto-zoom" +msgstr "" + +#: src/gui/guiConst.cpp:775 +msgid "Sample editor: Create instrument from sample" +msgstr "" + +#: src/gui/guiConst.cpp:776 +msgid "Sample editor: Set loop to selection" +msgstr "" + +#: src/gui/guiConst.cpp:777 +msgid "Sample editor: Create wavetable from selection" +msgstr "" + +#: src/gui/guiConst.cpp:780 +msgid "---Orders" +msgstr "" + +#: src/gui/guiConst.cpp:781 +msgid "Previous order" +msgstr "" + +#: src/gui/guiConst.cpp:782 +msgid "Next order" +msgstr "" + +#: src/gui/guiConst.cpp:783 +msgid "Order cursor left" +msgstr "" + +#: src/gui/guiConst.cpp:784 +msgid "Order cursor right" +msgstr "" + +#: src/gui/guiConst.cpp:785 +msgid "Increase order value" +msgstr "" + +#: src/gui/guiConst.cpp:786 +msgid "Decrease order value" +msgstr "" + +#: src/gui/guiConst.cpp:787 +msgid "Switch order edit mode" +msgstr "" + +#: src/gui/guiConst.cpp:788 +msgid "Order: toggle alter entire row" +msgstr "" + +#: src/gui/guiConst.cpp:789 +msgid "Add order" +msgstr "" + +#: src/gui/guiConst.cpp:790 +msgid "Duplicate order" +msgstr "" + +#: src/gui/guiConst.cpp:791 +msgid "Deep clone order" +msgstr "" + +#: src/gui/guiConst.cpp:792 +msgid "Copy current order to end of song" +msgstr "" + +#: src/gui/guiConst.cpp:793 +msgid "Deep clone current order to end of song" +msgstr "" + +#: src/gui/guiConst.cpp:797 +msgid "Replay order" +msgstr "" + +#: src/gui/guiConst.cpp:1392 +msgid "All chips" +msgstr "" + +#: src/gui/guiConst.cpp:1396 src/gui/insEdit.cpp:6954 src/gui/insEdit.cpp:7204 +#: src/gui/insEdit.cpp:7458 src/gui/insEdit.cpp:7480 +msgid "Special" +msgstr "" + +#: src/gui/piano.cpp:103 +msgid "Options" +msgstr "" + +#: src/gui/piano.cpp:106 +msgid "Key layout:" +msgstr "" + +#: src/gui/piano.cpp:111 +msgid "Standard" +msgstr "" + +#: src/gui/piano.cpp:114 +msgid "Continuous" +msgstr "" + +#: src/gui/piano.cpp:118 +msgid "Value input pad:" +msgstr "" + +#: src/gui/piano.cpp:120 +msgid "Disabled" +msgstr "" + +#: src/gui/piano.cpp:123 +msgid "Replace piano" +msgstr "" + +#: src/gui/piano.cpp:126 +msgid "Split (automatic)" +msgstr "" + +#: src/gui/piano.cpp:129 +msgid "Split (always visible)" +msgstr "" + +#: src/gui/piano.cpp:133 +msgid "Share play/edit offset/range" +msgstr "" + +#: src/gui/piano.cpp:134 +msgid "Read-only (can't input notes)" +msgstr "" + +#: src/gui/waveEdit.cpp:30 src/gui/waveEdit.cpp:192 src/gui/insEdit.cpp:177 +#: src/gui/insEdit.cpp:188 src/gui/insEdit.cpp:199 +msgid "Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:32 src/gui/waveEdit.cpp:202 src/gui/insEdit.cpp:325 +#: src/gui/insEdit.cpp:654 +msgid "Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:39 +msgid "Cosine" +msgstr "" + +#: src/gui/waveEdit.cpp:193 +msgid "Rect. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:194 +msgid "Abs. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:195 +msgid "Quart. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:196 +msgid "Squish. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:197 +msgid "Abs. Squish. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:200 +msgid "rectSquare" +msgstr "" + +#: src/gui/waveEdit.cpp:203 +msgid "Rect. Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:204 +msgid "Abs. Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:206 +msgid "Cubed Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:207 +msgid "Rect. Cubed Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:208 +msgid "Abs. Cubed Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:210 +msgid "Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:211 +msgid "Rect. Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:212 +msgid "Abs. Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:213 +msgid "Quart. Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:214 +msgid "Squish. Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:215 +msgid "Squish. Abs. Cub. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:218 +msgid "Rect. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:219 +msgid "Abs. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:220 +msgid "Quart. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:221 +msgid "Squish. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:222 +msgid "Abs. Squish. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:224 +msgid "Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:225 +msgid "Rect. Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:226 +msgid "Abs. Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:227 +msgid "Quart. Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:228 +msgid "Squish. Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:229 +msgid "Squish. Abs. Cub. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:412 src/gui/waveEdit.cpp:413 +msgid "no wavetable selected" +msgstr "" + +#: src/gui/waveEdit.cpp:424 src/gui/sampleEdit.cpp:111 src/gui/insEdit.cpp:5223 +msgid "select one..." +msgstr "" + +#: src/gui/waveEdit.cpp:432 src/gui/waveEdit.cpp:439 src/gui/sampleEdit.cpp:119 +#: src/gui/sampleEdit.cpp:126 src/gui/insEdit.cpp:5236 src/gui/insEdit.cpp:5243 +msgid "or" +msgstr "" + +#: src/gui/waveEdit.cpp:441 src/gui/sampleEdit.cpp:128 src/gui/insEdit.cpp:5245 +msgid "Create New" +msgstr "" + +#: src/gui/waveEdit.cpp:487 +msgid "Steps" +msgstr "" + +#: src/gui/waveEdit.cpp:491 +msgid "Lines" +msgstr "" + +#: src/gui/waveEdit.cpp:496 src/gui/insEdit.cpp:2687 +msgid "Width" +msgstr "" + +#: src/gui/waveEdit.cpp:498 +msgid "" +"use a width of:\n" +"- any on Amiga/N163\n" +"- 32 on Game Boy, PC Engine, SCC, Konami Bubble System, Namco WSG, Virtual " +"Boy and WonderSwan\n" +"- 64 on FDS\n" +"- 128 on X1-010\n" +"any other widths will be scaled during playback." +msgstr "" + +#: src/gui/waveEdit.cpp:510 +msgid "Height" +msgstr "" + +#: src/gui/waveEdit.cpp:512 +msgid "" +"use a height of:\n" +"- 16 for Game Boy, WonderSwan, Namco WSG, Konami Bubble System, X1-010 " +"Envelope shape and N163\n" +"- 32 for PC Engine\n" +"- 64 for FDS and Virtual Boy\n" +"- 256 for X1-010 and SCC\n" +"any other heights will be scaled during playback." +msgstr "" + +#: src/gui/waveEdit.cpp:578 +msgid "Shapes" +msgstr "" + +#: src/gui/waveEdit.cpp:597 src/gui/insEdit.cpp:5879 src/gui/insEdit.cpp:6922 +#: src/gui/insEdit.cpp:6948 src/gui/insEdit.cpp:7008 src/gui/insEdit.cpp:7048 +#: src/gui/insEdit.cpp:7150 src/gui/insEdit.cpp:7436 src/gui/insEdit.cpp:7472 +msgid "Duty" +msgstr "" + +#: src/gui/waveEdit.cpp:607 +msgid "Exponent" +msgstr "" + +#: src/gui/waveEdit.cpp:617 +msgid "XOR Point" +msgstr "" + +#: src/gui/waveEdit.cpp:627 +msgid "Amplitude/Phase" +msgstr "" + +#: src/gui/waveEdit.cpp:679 src/gui/waveEdit.cpp:723 src/gui/waveEdit.cpp:728 +msgid "Op" +msgstr "" + +#: src/gui/waveEdit.cpp:683 +msgid "Mult" +msgstr "" + +#: src/gui/waveEdit.cpp:685 +msgid "FB" +msgstr "" + +#: src/gui/waveEdit.cpp:749 src/gui/waveEdit.cpp:750 +msgid "Connection Diagram" +msgstr "" + +#: src/gui/waveEdit.cpp:765 +msgid "Out" +msgstr "" + +#: src/gui/waveEdit.cpp:872 +msgid "WaveTools" +msgstr "" + +#: src/gui/waveEdit.cpp:890 +msgid "Scale X" +msgstr "" + +#: src/gui/waveEdit.cpp:896 +msgid "wavetable longer than 256 samples!" +msgstr "" + +#: src/gui/waveEdit.cpp:960 +msgid "Scale Y" +msgstr "" + +#: src/gui/waveEdit.cpp:978 +msgid "Offset X" +msgstr "" + +#: src/gui/waveEdit.cpp:1000 +msgid "Offset Y" +msgstr "" + +#: src/gui/waveEdit.cpp:1017 +msgid "Smooth" +msgstr "" + +#: src/gui/waveEdit.cpp:1045 src/gui/sampleEdit.cpp:996 +msgid "Amplify" +msgstr "" + +#: src/gui/waveEdit.cpp:1063 src/gui/sampleEdit.cpp:1046 +msgid "Normalize" +msgstr "" + +#: src/gui/waveEdit.cpp:1105 src/gui/sampleEdit.cpp:1121 +msgid "Reverse" +msgstr "" + +#: src/gui/waveEdit.cpp:1117 +msgid "Half" +msgstr "" + +#: src/gui/waveEdit.cpp:1127 +msgid "Double" +msgstr "" + +#: src/gui/waveEdit.cpp:1137 +msgid "Convert Signed/Unsigned" +msgstr "" + +#: src/gui/waveEdit.cpp:1167 +msgid "Dec" +msgstr "" + +#: src/gui/waveEdit.cpp:1171 src/gui/csPlayer.cpp:247 +msgid "Hex" +msgstr "" + +#: src/gui/waveEdit.cpp:1179 +msgid "Signed/Unsigned" +msgstr "" + +#: src/gui/sampleEdit.cpp:65 +#, c-format +msgid "%s: maximum sample rate is %d" +msgstr "" + +#: src/gui/sampleEdit.cpp:72 +#, c-format +msgid "%s: minimum sample rate is %d" +msgstr "" + +#: src/gui/sampleEdit.cpp:79 +#, c-format +msgid "%s: sample rate must be %d" +msgstr "" + +#: src/gui/sampleEdit.cpp:99 src/gui/sampleEdit.cpp:100 +msgid "no sample selected" +msgstr "" + +#: src/gui/sampleEdit.cpp:229 +#, c-format +msgid "SNES: loop start must be a multiple of 16 (try with %d)" +msgstr "" + +#: src/gui/sampleEdit.cpp:235 +#, c-format +msgid "SNES: loop end must be a multiple of 16 (try with %d)" +msgstr "" + +#: src/gui/sampleEdit.cpp:240 +msgid "SNES: sample length will be padded to multiple of 16" +msgstr "" + +#: src/gui/sampleEdit.cpp:249 +msgid "QSound: loop cannot be longer than 32767 samples" +msgstr "" + +#: src/gui/sampleEdit.cpp:259 +msgid "NES: loop point ignored on DPCM (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:263 +msgid "NES: maximum DPCM sample length is 32648" +msgstr "" + +#: src/gui/sampleEdit.cpp:268 +msgid "X1-010: samples can't loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:271 +msgid "X1-010: maximum sample length is 131072" +msgstr "" + +#: src/gui/sampleEdit.cpp:276 +msgid "GA20: samples can't loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:287 +msgid "YM2608: loop point ignored on ADPCM (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:290 +msgid "YM2608: sample length will be padded to multiple of 512" +msgstr "" + +#: src/gui/sampleEdit.cpp:300 +msgid "YM2610: ADPCM-A samples can't loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:302 +msgid "YM2610: loop point ignored on ADPCM-B (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:305 +msgid "YM2610: sample length will be padded to multiple of 512" +msgstr "" + +#: src/gui/sampleEdit.cpp:309 +msgid "YM2610: maximum ADPCM-A sample length is 2097152" +msgstr "" + +#: src/gui/sampleEdit.cpp:318 +msgid "Y8950: loop point ignored on ADPCM (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:321 +msgid "Y8950: sample length will be padded to multiple of 512" +msgstr "" + +#: src/gui/sampleEdit.cpp:328 +msgid "Amiga: loop start must be a multiple of 2" +msgstr "" + +#: src/gui/sampleEdit.cpp:331 +msgid "Amiga: loop end must be a multiple of 2" +msgstr "" + +#: src/gui/sampleEdit.cpp:335 +msgid "Amiga: maximum sample length is 131070" +msgstr "" + +#: src/gui/sampleEdit.cpp:344 +msgid "SegaPCM: maximum sample length is 65280" +msgstr "" + +#: src/gui/sampleEdit.cpp:353 +msgid "K053260: loop point ignored (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:357 +msgid "K053260: maximum sample length is 65535" +msgstr "" + +#: src/gui/sampleEdit.cpp:362 +msgid "C140: maximum sample length is 65535" +msgstr "" + +#: src/gui/sampleEdit.cpp:371 +msgid "C219: loop start must be a multiple of 2" +msgstr "" + +#: src/gui/sampleEdit.cpp:374 +msgid "C219: loop end must be a multiple of 2" +msgstr "" + +#: src/gui/sampleEdit.cpp:378 +msgid "C219: maximum sample length is 131072" +msgstr "" + +#: src/gui/sampleEdit.cpp:386 +msgid "MSM6295: samples can't loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:389 +msgid "MSM6295: maximum bankswitched sample length is 129024" +msgstr "" + +#: src/gui/sampleEdit.cpp:395 +msgid "GBA DMA: loop start must be a multiple of 4" +msgstr "" + +#: src/gui/sampleEdit.cpp:398 +msgid "GBA DMA: loop length must be a multiple of 16" +msgstr "" + +#: src/gui/sampleEdit.cpp:402 +msgid "GBA DMA: sample length will be padded to multiple of 16" +msgstr "" + +#: src/gui/sampleEdit.cpp:411 +msgid "ES5506: backward loop mode isn't supported" +msgstr "" + +#: src/gui/sampleEdit.cpp:414 +msgid "" +"backward/ping-pong only supported in Generic PCM DAC\n" +"ping-pong also on ES5506" +msgstr "" + +#: src/gui/sampleEdit.cpp:444 +msgid "Info" +msgstr "" + +#: src/gui/sampleEdit.cpp:447 src/gui/sampleEdit.cpp:933 +msgid "Rate" +msgstr "" + +#: src/gui/sampleEdit.cpp:453 +msgid "Compat Rate" +msgstr "" + +#: src/gui/sampleEdit.cpp:457 +msgid "" +"used in DefleMask-compatible sample mode (17xx), in where samples are mapped " +"to an octave." +msgstr "" + +#: src/gui/sampleEdit.cpp:463 +#, c-format +msgid "Loop (length: %d)##Loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:463 src/gui/insEdit.cpp:544 src/gui/insEdit.cpp:554 +#: src/gui/insEdit.cpp:605 src/gui/insEdit.cpp:6017 +msgid "Loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:487 src/gui/sampleEdit.cpp:716 +#: src/gui/sampleEdit.cpp:752 +msgid "changing the loop in a BRR sample may result in glitches!" +msgstr "" + +#: src/gui/sampleEdit.cpp:529 +msgid "BRR emphasis" +msgstr "" + +#: src/gui/sampleEdit.cpp:538 +msgid "" +"this is a BRR sample.\n" +"enabling this option will muffle it (only affects non-SNES chips)." +msgstr "" + +#: src/gui/sampleEdit.cpp:540 +msgid "" +"enable this option to slightly boost high frequencies\n" +"to compensate for the SNES' Gaussian filter's muffle." +msgstr "" + +#: src/gui/sampleEdit.cpp:546 +msgid "8-bit dither" +msgstr "" + +#: src/gui/sampleEdit.cpp:554 +msgid "dither the sample when used on a chip that only supports 8-bit samples." +msgstr "" + +#: src/gui/sampleEdit.cpp:695 src/gui/gui.cpp:2975 +msgid "Start" +msgstr "" + +#: src/gui/sampleEdit.cpp:731 src/gui/gui.cpp:2983 +msgid "End" +msgstr "" + +#: src/gui/sampleEdit.cpp:841 +#, c-format +msgid "" +"%s\n" +"%d bytes free" +msgstr "" + +#: src/gui/sampleEdit.cpp:843 +#, c-format +msgid "" +"%s (%s)\n" +"%d bytes free" +msgstr "" + +#: src/gui/sampleEdit.cpp:847 +msgid "" +"\n" +"\n" +"not enough memory for this sample!" +msgstr "" + +#: src/gui/sampleEdit.cpp:871 +msgid "Edit mode: Select" +msgstr "" + +#: src/gui/sampleEdit.cpp:880 +msgid "Edit mode: Draw" +msgstr "" + +#: src/gui/sampleEdit.cpp:891 src/gui/sampleEdit.cpp:902 +msgid "Resize" +msgstr "" + +#: src/gui/sampleEdit.cpp:906 +msgid "couldn't resize! make sure your sample is 8 or 16-bit." +msgstr "" + +#: src/gui/sampleEdit.cpp:926 src/gui/sampleEdit.cpp:957 +msgid "Resample" +msgstr "" + +#: src/gui/sampleEdit.cpp:951 +msgid "Factor" +msgstr "" + +#: src/gui/sampleEdit.cpp:956 +msgid "Filter" +msgstr "" + +#: src/gui/sampleEdit.cpp:961 +msgid "couldn't resample! make sure your sample is 8 or 16-bit." +msgstr "" + +#: src/gui/sampleEdit.cpp:1010 src/gui/sampleEdit.cpp:1197 +#: src/gui/sampleEdit.cpp:1281 +msgid "Apply" +msgstr "" + +#: src/gui/sampleEdit.cpp:1053 +msgid "Fade in" +msgstr "" + +#: src/gui/sampleEdit.cpp:1060 +msgid "Fade out" +msgstr "" + +#: src/gui/sampleEdit.cpp:1065 +msgid "Insert silence" +msgstr "" + +#: src/gui/sampleEdit.cpp:1076 +msgid "Go" +msgstr "" + +#: src/gui/sampleEdit.cpp:1081 +msgid "couldn't insert! make sure your sample is 8 or 16-bit." +msgstr "" + +#: src/gui/sampleEdit.cpp:1098 +msgid "Apply silence" +msgstr "" + +#: src/gui/sampleEdit.cpp:1112 +msgid "Trim" +msgstr "" + +#: src/gui/sampleEdit.cpp:1135 +msgid "Signed/unsigned exchange" +msgstr "" + +#: src/gui/sampleEdit.cpp:1140 +msgid "Apply filter" +msgstr "" + +#: src/gui/sampleEdit.cpp:1151 +msgid "Cutoff:" +msgstr "" + +#: src/gui/sampleEdit.cpp:1161 src/gui/insEdit.cpp:5895 +#: src/gui/insEdit.cpp:5898 src/gui/insEdit.cpp:6953 src/gui/insEdit.cpp:7216 +#: src/gui/insEdit.cpp:7478 +msgid "Resonance" +msgstr "" + +#: src/gui/sampleEdit.cpp:1167 src/gui/insEdit.cpp:6897 +msgid "Power" +msgstr "" + +#: src/gui/sampleEdit.cpp:1181 +msgid "Low-pass" +msgstr "" + +#: src/gui/sampleEdit.cpp:1186 +msgid "Band-pass" +msgstr "" + +#: src/gui/sampleEdit.cpp:1191 +msgid "High-pass" +msgstr "" + +#: src/gui/sampleEdit.cpp:1262 +msgid "Crossfade loop points" +msgstr "" + +#: src/gui/sampleEdit.cpp:1271 +msgid "Number of samples" +msgstr "" + +#: src/gui/sampleEdit.cpp:1277 +msgid "Linear <-> Equal power" +msgstr "" + +#: src/gui/sampleEdit.cpp:1283 +msgid "Crossfade: length would go out of bounds. Aborted..." +msgstr "" + +#: src/gui/sampleEdit.cpp:1286 +msgid "Crossfade: length would overflow loopStart. Try a smaller random value." +msgstr "" + +#: src/gui/sampleEdit.cpp:1332 +msgid "Preview sample" +msgstr "" + +#: src/gui/sampleEdit.cpp:1346 +msgid "Create instrument from sample" +msgstr "" + +#: src/gui/sampleEdit.cpp:1747 +msgid "paste (replace)" +msgstr "" + +#: src/gui/sampleEdit.cpp:1750 +msgid "paste (mix)" +msgstr "" + +#: src/gui/sampleEdit.cpp:1754 src/gui/gui.cpp:2769 +msgid "select all" +msgstr "" + +#: src/gui/sampleEdit.cpp:1758 +msgid "set loop to selection" +msgstr "" + +#: src/gui/sampleEdit.cpp:1761 +msgid "create wavetable from selection" +msgstr "" + +#: src/gui/sampleEdit.cpp:1767 +msgid "Draw" +msgstr "" + +#: src/gui/sampleEdit.cpp:1767 +msgid "Select" +msgstr "" + +#: src/gui/sampleEdit.cpp:1769 +#, c-format +msgid "%d samples, %d bytes" +msgstr "" + +#: src/gui/sampleEdit.cpp:1784 +#, c-format +msgid " (%d-%d: %d samples)" +msgstr "" + +#: src/gui/sampleEdit.cpp:1976 +msgid "Non-8/16-bit samples cannot be edited without prior conversion." +msgstr "" + +#: src/gui/newSong.cpp:122 src/gui/newSong.cpp:123 +msgid "Choose a System!" +msgstr "" + +#: src/gui/newSong.cpp:179 +msgid "Categories" +msgstr "" + +#: src/gui/newSong.cpp:210 +msgid "no systems here yet!" +msgstr "" + +#: src/gui/newSong.cpp:212 +msgid "no results" +msgstr "" + +#: src/gui/newSong.cpp:228 +msgid "I'm feeling lucky" +msgstr "" + +#: src/gui/newSong.cpp:230 +msgid "no categories available! what in the world." +msgstr "" + +#: src/gui/newSong.cpp:265 +msgid "it appears you're extremely lucky today!" +msgstr "" + +#: src/gui/cursor.cpp:205 +#, c-format +msgid "finish selection: %d.%d,%d - %d.%d,%d" +msgstr "" + +#: src/gui/tutorial.cpp:487 +msgid "" +"Play demo songs?\n" +"- Down: Play current song\n" +"- Up: Play demo songs" +msgstr "" + +#: src/gui/tutorial.cpp:491 +msgid "" +"Welcome to Combat Vehicle!\n" +"\n" +"Controls:\n" +"X - Shoot Arrow Key - Move\n" +"Z - Special Esc - Quit" +msgstr "" + +#: src/gui/tutorial.cpp:496 +msgid "GAME OVER" +msgstr "" + +#: src/gui/tutorial.cpp:498 +msgid "High Score!" +msgstr "" + +#: src/gui/tutorial.cpp:658 +msgid "Welcome!" +msgstr "" + +#: src/gui/tutorial.cpp:661 +msgid "welcome to Furnace, the biggest open-source chiptune tracker!" +msgstr "" + +#: src/gui/tutorial.cpp:665 +msgid "here are some tips to get you started:" +msgstr "" + +#: src/gui/tutorial.cpp:668 +msgid "" +"- add an instrument by clicking on + in Instruments\n" +"- click on the pattern view to focus it\n" +"- channel columns have the following, in this order: note, instrument, " +"volume and effects\n" +"- hit space bar while on the pattern to toggle Edit Mode\n" +"- click on the pattern or use arrow keys to move the cursor\n" +"- values (instrument, volume, effects and effect values) are in hexadecimal\n" +"- hit enter to play/stop the song\n" +"- extend the song by adding more orders in the Orders window\n" +"- click on the Orders matrix to change the patterns of a channel (left click " +"increases; right click decreases)" +msgstr "" + +#: src/gui/tutorial.cpp:680 +msgid "" +"if you need help, you may:\n" +"- read the manual (a file called manual.pdf)\n" +"- ask for help in Discussions (https://github.com/tildearrow/furnace/" +"discussions), the Furnace Discord (https://discord.gg/EfrwT2wq7z) or Furnace " +"in Revolt (official: https://rvlt.gg/GRPS6tmc)" +msgstr "" + +#: src/gui/tutorial.cpp:687 +msgid "" +"if you find any issues, be sure to report them! the issue tracker is here: " +"https://github.com/tildearrow/furnace/issues" +msgstr "" + +#: src/gui/tutorial.cpp:1428 +#, c-format +msgid "STAGE %d" +msgstr "" + +#: src/gui/songInfo.cpp:32 +msgid "Song Info##Song Information" +msgstr "" + +#: src/gui/songInfo.cpp:50 +msgid "Author" +msgstr "" + +#: src/gui/songInfo.cpp:60 +msgid "Album" +msgstr "" + +#: src/gui/songInfo.cpp:79 +msgid "Auto" +msgstr "" + +#: src/gui/songInfo.cpp:100 +msgid "Tuning (A-4)" +msgstr "" + +#: src/gui/grooves.cpp:38 +msgid "use effect 09xx to select a groove pattern." +msgstr "" + +#: src/gui/grooves.cpp:48 src/gui/gui.cpp:4480 +msgid "pattern" +msgstr "" + +#: src/gui/grooves.cpp:132 +msgid "remove" +msgstr "" + +#: src/gui/doAction.cpp:45 src/gui/gui.cpp:4201 +msgid "Unsaved changes! Save changes before opening another file?" +msgstr "" + +#: src/gui/doAction.cpp:52 +msgid "Unsaved changes! Save changes before opening backup?" +msgstr "" + +#: src/gui/doAction.cpp:62 src/gui/gui.cpp:4237 src/gui/gui.cpp:5025 +#: src/gui/gui.cpp:5063 src/gui/gui.cpp:5069 src/gui/gui.cpp:5657 +#: src/gui/gui.cpp:5681 src/gui/gui.cpp:5705 src/gui/gui.cpp:5729 +#: src/gui/gui.cpp:5753 src/gui/gui.cpp:5777 +#, c-format +msgid "Error while saving file! (%s)" +msgstr "" + +#: src/gui/doAction.cpp:189 +msgid "Error while sending request (MIDI output not configured?)" +msgstr "" + +#: src/gui/doAction.cpp:197 +msgid "Select an option: (cannot be undone!)" +msgstr "" + +#: src/gui/doAction.cpp:691 src/gui/doAction.cpp:720 src/gui/doAction.cpp:1593 +#: src/gui/gui.cpp:6091 +msgid "too many instruments!" +msgstr "" + +#: src/gui/doAction.cpp:1124 +msgid "couldn't paste! make sure your sample is 8 or 16-bit." +msgstr "" + +#: src/gui/doAction.cpp:1628 +msgid "select at least one sample!" +msgstr "" + +#: src/gui/doAction.cpp:1630 +msgid "maximum size is 256 samples!" +msgstr "" + +#: src/gui/csPlayer.cpp:113 +msgid "Load" +msgstr "" + +#: src/gui/csPlayer.cpp:117 +msgid "Kill" +msgstr "" + +#: src/gui/csPlayer.cpp:119 +msgid "Kikai wa mou shindeiru!" +msgstr "Stroj je že mrtev!" + +#: src/gui/csPlayer.cpp:123 +msgid "Burn Current Song" +msgstr "" + +#: src/gui/csPlayer.cpp:141 +msgid "Status" +msgstr "" + +#: src/gui/csPlayer.cpp:148 +msgid "start" +msgstr "" + +#: src/gui/csPlayer.cpp:150 +msgid "PC" +msgstr "" + +#: src/gui/csPlayer.cpp:152 +msgid "wait" +msgstr "" + +#: src/gui/csPlayer.cpp:154 +msgid "SP" +msgstr "" + +#: src/gui/csPlayer.cpp:156 src/gui/insEdit.cpp:2733 +msgid "note" +msgstr "" + +#: src/gui/csPlayer.cpp:158 src/gui/insEdit.cpp:2728 +msgid "pitch" +msgstr "" + +#: src/gui/csPlayer.cpp:160 +msgid "vol" +msgstr "" + +#: src/gui/csPlayer.cpp:162 +msgid "vols" +msgstr "" + +#: src/gui/csPlayer.cpp:164 +msgid "vib" +msgstr "" + +#: src/gui/csPlayer.cpp:166 +msgid "porta" +msgstr "" + +#: src/gui/csPlayer.cpp:168 +msgid "arp" +msgstr "" + +#: src/gui/csPlayer.cpp:203 +msgid "Trace" +msgstr "" + +#: src/gui/csPlayer.cpp:244 +msgid "Disassemble" +msgstr "" + +#: src/gui/gui.cpp:1136 src/gui/gui.cpp:1140 +msgid "the song is over!" +msgstr "" + +#: src/gui/gui.cpp:1667 +msgid "Open File" +msgstr "" + +#: src/gui/gui.cpp:1668 src/gui/gui.cpp:1798 src/gui/gui.cpp:1838 +#: src/gui/gui.cpp:1953 src/gui/gui.cpp:1962 src/gui/gui.cpp:1971 +#: src/gui/gui.cpp:2073 src/gui/gui.cpp:2093 src/gui/gui.cpp:2111 +msgid "compatible files" +msgstr "" + +#: src/gui/gui.cpp:1669 src/gui/gui.cpp:1743 src/gui/gui.cpp:1799 +#: src/gui/gui.cpp:1839 src/gui/gui.cpp:1851 src/gui/gui.cpp:1870 +#: src/gui/gui.cpp:2074 src/gui/gui.cpp:2084 src/gui/gui.cpp:2095 +#: src/gui/gui.cpp:2113 +msgid "all files" +msgstr "" + +#: src/gui/gui.cpp:1676 +msgid "no backups made yet!" +msgstr "" + +#: src/gui/gui.cpp:1681 src/gui/gui.cpp:1690 src/gui/gui.cpp:2130 +msgid "Furnace song" +msgstr "" + +#: src/gui/gui.cpp:1689 +msgid "Save File" +msgstr "" + +#: src/gui/gui.cpp:1698 src/gui/gui.cpp:1708 +msgid "Export DMF" +msgstr "" + +#: src/gui/gui.cpp:1699 +msgid "DefleMask 1.1.3 module" +msgstr "" + +#: src/gui/gui.cpp:1709 +msgid "DefleMask 1.0/legacy module" +msgstr "" + +#: src/gui/gui.cpp:1726 +msgid "Load Instrument" +msgstr "" + +#: src/gui/gui.cpp:1727 +msgid "all compatible files" +msgstr "" + +#: src/gui/gui.cpp:1728 src/gui/gui.cpp:1777 +msgid "Furnace instrument" +msgstr "" + +#: src/gui/gui.cpp:1729 src/gui/gui.cpp:1787 +msgid "DefleMask preset" +msgstr "" + +#: src/gui/gui.cpp:1730 +msgid "TFM Music Maker instrument" +msgstr "" + +#: src/gui/gui.cpp:1731 +msgid "VGM Music Maker instrument" +msgstr "" + +#: src/gui/gui.cpp:1732 +msgid "Scream Tracker 3 instrument" +msgstr "" + +#: src/gui/gui.cpp:1733 +msgid "SoundBlaster instrument" +msgstr "" + +#: src/gui/gui.cpp:1734 +msgid "Wohlstand OPL instrument" +msgstr "" + +#: src/gui/gui.cpp:1735 +msgid "Wohlstand OPN instrument" +msgstr "" + +#: src/gui/gui.cpp:1736 +msgid "Gens KMod patch dump" +msgstr "" + +#: src/gui/gui.cpp:1737 +msgid "BNK file (AdLib)" +msgstr "" + +#: src/gui/gui.cpp:1738 +msgid "FF preset bank" +msgstr "" + +#: src/gui/gui.cpp:1739 +msgid "2612edit GYB preset bank" +msgstr "" + +#: src/gui/gui.cpp:1740 +msgid "VOPM preset bank" +msgstr "" + +#: src/gui/gui.cpp:1741 +msgid "Wohlstand WOPL bank" +msgstr "" + +#: src/gui/gui.cpp:1742 +msgid "Wohlstand WOPN bank" +msgstr "" + +#: src/gui/gui.cpp:1776 src/gui/gui.cpp:1786 +msgid "Save Instrument" +msgstr "" + +#: src/gui/gui.cpp:1797 +msgid "Load Wavetable" +msgstr "" + +#: src/gui/gui.cpp:1809 src/gui/gui.cpp:1818 src/gui/gui.cpp:1827 +msgid "Save Wavetable" +msgstr "" + +#: src/gui/gui.cpp:1810 +msgid "Furnace wavetable" +msgstr "" + +#: src/gui/gui.cpp:1819 +msgid "DefleMask wavetable" +msgstr "" + +#: src/gui/gui.cpp:1828 +msgid "raw data" +msgstr "" + +#: src/gui/gui.cpp:1837 +msgid "Load Sample" +msgstr "" + +#: src/gui/gui.cpp:1850 +msgid "Load Raw Sample" +msgstr "" + +#: src/gui/gui.cpp:1859 +msgid "Save Sample" +msgstr "" + +#: src/gui/gui.cpp:1860 src/gui/gui.cpp:1880 src/gui/gui.cpp:1890 +#: src/gui/gui.cpp:1900 +msgid "Wave file" +msgstr "" + +#: src/gui/gui.cpp:1869 +msgid "Save Raw Sample" +msgstr "" + +#: src/gui/gui.cpp:1879 src/gui/gui.cpp:1889 src/gui/gui.cpp:1899 +msgid "Export Audio" +msgstr "" + +#: src/gui/gui.cpp:1909 +msgid "Export VGM" +msgstr "" + +#: src/gui/gui.cpp:1910 +msgid "VGM file" +msgstr "" + +#: src/gui/gui.cpp:1919 +msgid "Export ZSM" +msgstr "" + +#: src/gui/gui.cpp:1920 +msgid "ZSM file" +msgstr "" + +#: src/gui/gui.cpp:1929 src/gui/gui.cpp:1939 +msgid "Export Command Stream" +msgstr "" + +#: src/gui/gui.cpp:1930 +msgid "text file" +msgstr "" + +#: src/gui/gui.cpp:1940 +msgid "binary file" +msgstr "" + +#: src/gui/gui.cpp:1947 src/gui/gui.cpp:5376 +msgid "Coming soon!" +msgstr "" + +#: src/gui/gui.cpp:1952 src/gui/gui.cpp:1961 src/gui/gui.cpp:1970 +msgid "Select Font" +msgstr "" + +#: src/gui/gui.cpp:1979 +msgid "Select Color File" +msgstr "" + +#: src/gui/gui.cpp:1980 src/gui/gui.cpp:1989 src/gui/gui.cpp:2008 +#: src/gui/gui.cpp:2017 src/gui/gui.cpp:2026 src/gui/gui.cpp:2035 +#: src/gui/gui.cpp:2053 src/gui/gui.cpp:2062 +msgid "configuration files" +msgstr "" + +#: src/gui/gui.cpp:1988 +msgid "Select Keybind File" +msgstr "" + +#: src/gui/gui.cpp:1997 +msgid "Select Layout File" +msgstr "" + +#: src/gui/gui.cpp:1998 src/gui/gui.cpp:2044 +msgid ".ini files" +msgstr "" + +#: src/gui/gui.cpp:2007 +msgid "Select User Presets File" +msgstr "" + +#: src/gui/gui.cpp:2016 +msgid "Select Settings File" +msgstr "" + +#: src/gui/gui.cpp:2025 +msgid "Export Colors" +msgstr "" + +#: src/gui/gui.cpp:2034 +msgid "Export Keybinds" +msgstr "" + +#: src/gui/gui.cpp:2043 +msgid "Export Layout" +msgstr "" + +#: src/gui/gui.cpp:2052 +msgid "Export User Presets" +msgstr "" + +#: src/gui/gui.cpp:2061 +msgid "Export Settings" +msgstr "" + +#: src/gui/gui.cpp:2072 +msgid "Load ROM" +msgstr "" + +#: src/gui/gui.cpp:2082 +msgid "Play Command Stream" +msgstr "" + +#: src/gui/gui.cpp:2083 +msgid "command stream" +msgstr "" + +#: src/gui/gui.cpp:2092 +msgid "Open Test" +msgstr "" + +#: src/gui/gui.cpp:2094 src/gui/gui.cpp:2112 +msgid "another option" +msgstr "" + +#: src/gui/gui.cpp:2110 +msgid "Open Test (Multi)" +msgstr "" + +#: src/gui/gui.cpp:2129 +msgid "Save Test" +msgstr "" + +#: src/gui/gui.cpp:2131 +msgid "DefleMask module" +msgstr "" + +#: src/gui/gui.cpp:2171 +msgid "compression error" +msgstr "" + +#: src/gui/gui.cpp:2183 +msgid "zlib stream error" +msgstr "" + +#: src/gui/gui.cpp:2205 +msgid "zlib finish stream error" +msgstr "" + +#: src/gui/gui.cpp:2316 +msgid "everything OK" +msgstr "" + +#: src/gui/gui.cpp:2334 +msgid "" +"you have loaded a backup!\n" +"if you need to, please save it somewhere.\n" +"\n" +"DO NOT RELY ON THE BACKUP SYSTEM FOR AUTO-SAVE!\n" +"Furnace will not save backups of backups." +msgstr "" + +#: src/gui/gui.cpp:2342 src/gui/gui.cpp:3743 src/gui/gui.cpp:4213 +msgid "Unsaved changes! Save changes before opening file?" +msgstr "" + +#: src/gui/gui.cpp:2736 +msgid "paste special..." +msgstr "" + +#: src/gui/gui.cpp:2737 +msgid "paste mix" +msgstr "" + +#: src/gui/gui.cpp:2738 +msgid "paste mix (background)" +msgstr "" + +#: src/gui/gui.cpp:2739 +msgid "paste with ins (foreground)" +msgstr "" + +#: src/gui/gui.cpp:2741 src/gui/gui.cpp:2753 src/gui/gui.cpp:2963 +msgid "no instruments available" +msgstr "" + +#: src/gui/gui.cpp:2751 +msgid "paste with ins (background)" +msgstr "" + +#: src/gui/gui.cpp:2763 +msgid "paste flood" +msgstr "" + +#: src/gui/gui.cpp:2764 +msgid "paste overflow" +msgstr "" + +#: src/gui/gui.cpp:2773 +msgid "operation mask..." +msgstr "" + +#: src/gui/gui.cpp:2780 +msgid "pull delete" +msgstr "" + +#: src/gui/gui.cpp:2784 +msgid "insert" +msgstr "" + +#: src/gui/gui.cpp:2792 +msgid "transpose (note)" +msgstr "" + +#: src/gui/gui.cpp:2796 +msgid "transpose (value)" +msgstr "" + +#: src/gui/gui.cpp:2808 src/gui/gui.cpp:3052 +msgid "invert values" +msgstr "" + +#: src/gui/gui.cpp:2824 +msgid "collapse/expand" +msgstr "" + +#: src/gui/gui.cpp:2829 +msgid "input latch" +msgstr "" + +#: src/gui/gui.cpp:2856 +msgid "" +"&&: selected instrument\n" +"..: no instrument" +msgstr "" + +#: src/gui/gui.cpp:2910 +msgid "Set" +msgstr "" + +#: src/gui/gui.cpp:2930 +msgid "note up" +msgstr "" + +#: src/gui/gui.cpp:2931 +msgid "note down" +msgstr "" + +#: src/gui/gui.cpp:2932 +msgid "octave up" +msgstr "" + +#: src/gui/gui.cpp:2933 +msgid "octave down" +msgstr "" + +#: src/gui/gui.cpp:2935 +msgid "values up" +msgstr "" + +#: src/gui/gui.cpp:2936 +msgid "values down" +msgstr "" + +#: src/gui/gui.cpp:2937 +msgid "values up (+16)" +msgstr "" + +#: src/gui/gui.cpp:2938 +msgid "values down (-16)" +msgstr "" + +#: src/gui/gui.cpp:2941 +msgid "transpose" +msgstr "" + +#: src/gui/gui.cpp:2949 +msgid "Notes" +msgstr "" + +#: src/gui/gui.cpp:2954 +msgid "Values" +msgstr "" + +#: src/gui/gui.cpp:2961 +msgid "change instrument..." +msgstr "" + +#: src/gui/gui.cpp:2974 +msgid "gradient/fade..." +msgstr "" + +#: src/gui/gui.cpp:2991 src/gui/gui.cpp:3036 +msgid "Nibble mode" +msgstr "" + +#: src/gui/gui.cpp:3000 +msgid "Go ahead" +msgstr "" + +#: src/gui/gui.cpp:3006 src/gui/insEdit.cpp:7604 +msgid "scale..." +msgstr "" + +#: src/gui/gui.cpp:3011 +msgid "Scale" +msgstr "" + +#: src/gui/gui.cpp:3017 src/gui/insEdit.cpp:7632 +msgid "randomize..." +msgstr "" + +#: src/gui/gui.cpp:3018 +msgid "Minimum" +msgstr "" + +#: src/gui/gui.cpp:3027 +msgid "Maximum" +msgstr "" + +#: src/gui/gui.cpp:3056 +msgid "flip selection" +msgstr "" + +#: src/gui/gui.cpp:3059 +msgid "collapse/expand amount##CollapseAmount" +msgstr "" + +#: src/gui/gui.cpp:3068 +msgid "collapse pattern" +msgstr "" + +#: src/gui/gui.cpp:3069 +msgid "expand pattern" +msgstr "" + +#: src/gui/gui.cpp:3074 +msgid "collapse song" +msgstr "" + +#: src/gui/gui.cpp:3075 +msgid "expand song" +msgstr "" + +#: src/gui/gui.cpp:3080 +msgid "find/replace" +msgstr "" + +#: src/gui/gui.cpp:3094 src/gui/gui.cpp:5807 src/gui/gui.cpp:7362 +#, c-format +msgid "could NOT save layout! %s" +msgstr "" + +#: src/gui/gui.cpp:3106 +#, c-format +msgid "could NOT load layout! %s" +msgstr "" + +#: src/gui/gui.cpp:3568 +msgid "" +"Furnace has been started in Safe Mode.\n" +"this means that:\n" +"\n" +"- software rendering is being used\n" +"- audio output may not work\n" +"- font loading is disabled\n" +"\n" +"check any settings which may have made Furnace start up in this mode.\n" +"font loading is one of these." +msgstr "" + +#: src/gui/gui.cpp:4053 +msgid "can't keep going without graphics! Furnace will quit now." +msgstr "" + +#: src/gui/gui.cpp:4191 +msgid "file" +msgstr "" + +#: src/gui/gui.cpp:4192 +msgid "new..." +msgstr "" + +#: src/gui/gui.cpp:4199 +msgid "open..." +msgstr "" + +#: src/gui/gui.cpp:4206 +msgid "open recent" +msgstr "" + +#: src/gui/gui.cpp:4222 +msgid "nothing here yet" +msgstr "" + +#: src/gui/gui.cpp:4225 +msgid "clear history" +msgstr "" + +#: src/gui/gui.cpp:4226 +msgid "Are you sure you want to clear the recent file list?" +msgstr "" + +#: src/gui/gui.cpp:4241 +msgid "save as..." +msgstr "" + +#: src/gui/gui.cpp:4246 src/gui/gui.cpp:4287 +msgid "export audio..." +msgstr "" + +#: src/gui/gui.cpp:4250 src/gui/gui.cpp:4291 +msgid "export VGM..." +msgstr "" + +#: src/gui/gui.cpp:4259 src/gui/gui.cpp:4300 +msgid "export ZSM..." +msgstr "" + +#: src/gui/gui.cpp:4269 src/gui/gui.cpp:4310 +msgid "export Amiga validation data..." +msgstr "" + +#: src/gui/gui.cpp:4274 src/gui/gui.cpp:4315 +msgid "export text..." +msgstr "" + +#: src/gui/gui.cpp:4278 src/gui/gui.cpp:4319 +msgid "export command stream..." +msgstr "" + +#: src/gui/gui.cpp:4282 src/gui/gui.cpp:4323 +msgid "export .dmf..." +msgstr "" + +#: src/gui/gui.cpp:4328 +msgid "export..." +msgstr "" + +#: src/gui/gui.cpp:4334 +msgid "manage chips" +msgstr "" + +#: src/gui/gui.cpp:4338 +msgid "add chip..." +msgstr "" + +#: src/gui/gui.cpp:4343 src/gui/sysManager.cpp:138 +#, c-format +msgid "cannot add chip! (%s)" +msgstr "" + +#: src/gui/gui.cpp:4355 +msgid "configure chip..." +msgstr "" + +#: src/gui/gui.cpp:4365 +msgid "change chip..." +msgstr "" + +#: src/gui/gui.cpp:4367 src/gui/gui.cpp:4390 +msgid "Preserve channel positions" +msgstr "" + +#: src/gui/gui.cpp:4379 src/gui/sysManager.cpp:109 +#, c-format +msgid "cannot change chip! (%s)" +msgstr "" + +#: src/gui/gui.cpp:4388 +msgid "remove chip..." +msgstr "" + +#: src/gui/gui.cpp:4394 +#, c-format +msgid "cannot remove chip! (%s)" +msgstr "" + +#: src/gui/gui.cpp:4408 +msgid "open built-in assets directory" +msgstr "" + +#: src/gui/gui.cpp:4414 +msgid "restore backup" +msgstr "" + +#: src/gui/gui.cpp:4418 +msgid "exit..." +msgstr "" + +#: src/gui/gui.cpp:4426 +msgid "edit" +msgstr "" + +#: src/gui/gui.cpp:4434 +msgid "clear..." +msgstr "" + +#: src/gui/gui.cpp:4439 +msgid "settings" +msgstr "" + +#: src/gui/gui.cpp:4441 +msgid "full screen" +msgstr "" + +#: src/gui/gui.cpp:4445 +msgid "lock layout" +msgstr "" + +#: src/gui/gui.cpp:4448 +msgid "pattern visualizer" +msgstr "" + +#: src/gui/gui.cpp:4454 +msgid "reset layout" +msgstr "" + +#: src/gui/gui.cpp:4458 +msgid "switch to mobile view" +msgstr "" + +#: src/gui/gui.cpp:4462 +msgid "user systems..." +msgstr "" + +#: src/gui/gui.cpp:4465 +msgid "settings..." +msgstr "" + +#: src/gui/gui.cpp:4471 +msgid "Window" +msgstr "" + +#: src/gui/gui.cpp:4471 +msgid "window" +msgstr "" + +#: src/gui/gui.cpp:4472 +msgid "song" +msgstr "" + +#: src/gui/gui.cpp:4473 +msgid "song comments" +msgstr "" + +#: src/gui/gui.cpp:4474 +msgid "song information" +msgstr "" + +#: src/gui/gui.cpp:4475 +msgid "subsongs" +msgstr "" + +#: src/gui/gui.cpp:4477 +msgid "channels" +msgstr "" + +#: src/gui/gui.cpp:4478 +msgid "chip manager" +msgstr "" + +#: src/gui/gui.cpp:4479 +msgid "orders" +msgstr "" + +#: src/gui/gui.cpp:4481 +msgid "pattern manager" +msgstr "" + +#: src/gui/gui.cpp:4482 +msgid "mixer" +msgstr "" + +#: src/gui/gui.cpp:4483 +msgid "compatibility flags" +msgstr "" + +#: src/gui/gui.cpp:4486 src/gui/gui.cpp:4488 +msgid "assets" +msgstr "" + +#: src/gui/gui.cpp:4490 +msgid "instruments" +msgstr "" + +#: src/gui/gui.cpp:4491 +msgid "samples" +msgstr "" + +#: src/gui/gui.cpp:4492 +msgid "wavetables" +msgstr "" + +#: src/gui/gui.cpp:4495 +msgid "instrument editor" +msgstr "" + +#: src/gui/gui.cpp:4496 +msgid "sample editor" +msgstr "" + +#: src/gui/gui.cpp:4497 +msgid "wavetable editor" +msgstr "" + +#: src/gui/gui.cpp:4500 +msgid "visualizers" +msgstr "" + +#: src/gui/gui.cpp:4501 +msgid "oscilloscope (master)" +msgstr "" + +#: src/gui/gui.cpp:4502 +msgid "oscilloscope (per-channel)" +msgstr "" + +#: src/gui/gui.cpp:4503 +msgid "oscilloscope (X-Y)" +msgstr "" + +#: src/gui/gui.cpp:4504 +msgid "volume meter" +msgstr "" + +#: src/gui/gui.cpp:4507 +msgid "tempo" +msgstr "" + +#: src/gui/gui.cpp:4508 +msgid "clock" +msgstr "" + +#: src/gui/gui.cpp:4509 +msgid "grooves" +msgstr "" + +#: src/gui/gui.cpp:4510 +msgid "speed" +msgstr "" + +#: src/gui/gui.cpp:4514 +msgid "log viewer" +msgstr "" + +#: src/gui/gui.cpp:4515 +msgid "register view" +msgstr "" + +#: src/gui/gui.cpp:4516 +msgid "statistics" +msgstr "" + +#: src/gui/gui.cpp:4517 +msgid "memory composition" +msgstr "" + +#: src/gui/gui.cpp:4521 src/gui/gui.cpp:4529 +msgid "effect list" +msgstr "" + +#: src/gui/gui.cpp:4522 +msgid "play/edit controls" +msgstr "" + +#: src/gui/gui.cpp:4523 +msgid "piano/input pad" +msgstr "" + +#: src/gui/gui.cpp:4524 +msgid "spoiler" +msgstr "" + +#: src/gui/gui.cpp:4528 +msgid "Help" +msgstr "" + +#: src/gui/gui.cpp:4528 +msgid "help" +msgstr "" + +#: src/gui/gui.cpp:4530 +msgid "debug menu" +msgstr "" + +#: src/gui/gui.cpp:4531 +msgid "inspector" +msgstr "" + +#: src/gui/gui.cpp:4532 +msgid "panic" +msgstr "" + +#: src/gui/gui.cpp:4533 +msgid "about..." +msgstr "" + +#: src/gui/gui.cpp:4548 +#, c-format +msgid "| Speed %d:%d" +msgstr "" + +#: src/gui/gui.cpp:4550 +#, c-format +msgid "| Speed %d" +msgstr "" + +#: src/gui/gui.cpp:4552 +msgid "| Groove" +msgstr "" + +#: src/gui/gui.cpp:4555 +#, c-format +msgid " @ %gHz (%g BPM) " +msgstr "" + +#: src/gui/gui.cpp:4558 +#, c-format +msgid "| Order %.2X/%.2X " +msgstr "" + +#: src/gui/gui.cpp:4560 +#, c-format +msgid "| Order %d/%d " +msgstr "" + +#: src/gui/gui.cpp:4564 +#, c-format +msgid "| Row %.2X/%.2X " +msgstr "" + +#: src/gui/gui.cpp:4566 +#, c-format +msgid "| Row %d/%d " +msgstr "" + +#: src/gui/gui.cpp:4569 +msgid "| " +msgstr "" + +#: src/gui/gui.cpp:4572 +msgid "Don't you have anything better to do?" +msgstr "" + +#: src/gui/gui.cpp:4582 +#, c-format +msgid "%d year " +msgid_plural "%d years " +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/gui/gui.cpp:4583 +#, c-format +msgid "%d month " +msgid_plural "%d months " +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/gui/gui.cpp:4584 +#, c-format +msgid "%d day " +msgid_plural "%d days " +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/gui/gui.cpp:4609 +msgid "Note off (cut)" +msgstr "" + +#: src/gui/gui.cpp:4611 +msgid "Note off (release)" +msgstr "" + +#: src/gui/gui.cpp:4613 +msgid "Macro release only" +msgstr "" + +#: src/gui/gui.cpp:4615 +#, c-format +msgid "Note on: %s" +msgstr "" + +#: src/gui/gui.cpp:4623 +#, c-format +msgid "Ins %d: " +msgstr "" + +#: src/gui/gui.cpp:4626 +#, c-format +msgid "Ins %d: %s" +msgstr "" + +#: src/gui/gui.cpp:4635 +#, c-format +msgid "Set volume: %d (%.2X, INVALID!)" +msgstr "" + +#: src/gui/gui.cpp:4638 +#, c-format +msgid "Set volume: %d (%.2X, %d%%)" +msgstr "" + +#: src/gui/gui.cpp:4660 +msgid "| modified" +msgstr "" + +#: src/gui/gui.cpp:4825 src/gui/gui.cpp:4828 +msgid "System File Dialog Pending" +msgstr "" + +#: src/gui/gui.cpp:4941 +msgid "" +"there was an error in the file dialog! you may want to report this issue " +"to:\n" +"https://github.com/tildearrow/furnace/issues\n" +"check the Log Viewer (window > log viewer) for more information.\n" +"\n" +"for now please disable the system file picker in Settings > General." +msgstr "" + +#: src/gui/gui.cpp:4944 +msgid "can't do anything without Storage permissions!" +msgstr "" + +#: src/gui/gui.cpp:4946 +msgid "" +"Zenity/KDialog not available!\n" +"please install one of these, or disable the system file picker in Settings > " +"General." +msgstr "" + +#: src/gui/gui.cpp:5082 +msgid "" +"error while saving instrument! only the following instrument types are " +"supported:\n" +"- FM (OPN)\n" +"- SN76489/Sega PSG\n" +"- Game Boy\n" +"- PC Engine\n" +"- NES\n" +"- C64\n" +"- FM (OPLL)\n" +"- FDS" +msgstr "" + +#: src/gui/gui.cpp:5110 +msgid "there were some errors while loading samples:\n" +msgstr "" + +#: src/gui/gui.cpp:5155 src/gui/gui.cpp:6339 +msgid "...but you haven't selected a sample!" +msgstr "" + +#: src/gui/gui.cpp:5170 src/gui/gui.cpp:5179 +msgid "could not save sample! open Log Viewer for more information." +msgstr "" + +#: src/gui/gui.cpp:5198 +msgid "there were some warnings/errors while loading instruments:\n" +msgstr "" + +#: src/gui/gui.cpp:5204 +#, c-format +msgid "> %s: cannot load instrument! (%s)\n" +msgstr "" + +#: src/gui/gui.cpp:5222 src/gui/gui.cpp:5276 +#, c-format +msgid "cannot load instrument! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5228 +msgid "" +"congratulations! you managed to load nothing.\n" +"you are entitled to a bug report." +msgstr "" + +#: src/gui/gui.cpp:5269 src/gui/gui.cpp:6243 +msgid "...but you haven't selected an instrument!" +msgstr "" + +#: src/gui/gui.cpp:5281 +msgid "there were some errors while loading wavetables:\n" +msgstr "" + +#: src/gui/gui.cpp:5290 src/gui/gui.cpp:5300 src/gui/gui.cpp:5319 +#, c-format +msgid "cannot load wavetable! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5327 +msgid "...but you haven't selected a wavetable!" +msgstr "" + +#: src/gui/gui.cpp:5342 src/gui/gui.cpp:5363 src/gui/gui.cpp:5387 +#: src/gui/gui.cpp:5408 +msgid "could not open file!" +msgstr "" + +#: src/gui/gui.cpp:5350 +#, c-format +msgid "could not write VGM! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5371 +#, c-format +msgid "Could not write ZSM! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5395 +#, c-format +msgid "could not write text! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5416 +#, c-format +msgid "could not write command stream! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5440 +msgid "could not import user presets!" +msgstr "" + +#: src/gui/gui.cpp:5445 src/gui/gui.cpp:5462 +#, c-format +msgid "could not import user presets! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5483 +#, c-format +msgid "You opened: %s" +msgstr "" + +#: src/gui/gui.cpp:5486 +msgid "You opened:" +msgstr "" + +#: src/gui/gui.cpp:5494 +#, c-format +msgid "You saved: %s" +msgstr "" + +#: src/gui/gui.cpp:5515 src/gui/gui.cpp:5636 src/gui/gui.cpp:5637 +#: src/gui/insEdit.cpp:7520 +msgid "Error" +msgstr "" + +#: src/gui/gui.cpp:5520 src/gui/gui.cpp:6177 src/gui/gui.cpp:6178 +msgid "Select Instrument" +msgstr "" + +#: src/gui/gui.cpp:5525 src/gui/gui.cpp:6256 src/gui/gui.cpp:6257 +msgid "Import Raw Sample" +msgstr "" + +#: src/gui/gui.cpp:5540 src/gui/gui.cpp:5593 src/gui/gui.cpp:5594 +msgid "Rendering..." +msgstr "" + +#: src/gui/gui.cpp:5595 +msgid "Please wait..." +msgstr "" + +#: src/gui/gui.cpp:5596 +msgid "Abort" +msgstr "" + +#: src/gui/gui.cpp:5638 +#, c-format +msgid "%s" +msgstr "" + +#: src/gui/gui.cpp:5868 +msgid "Erasing" +msgstr "" + +#: src/gui/gui.cpp:5871 +msgid "All subsongs" +msgstr "" + +#: src/gui/gui.cpp:5878 +msgid "Current subsong" +msgstr "" + +#: src/gui/gui.cpp:5945 +msgid "Optimization" +msgstr "" + +#: src/gui/gui.cpp:5948 src/gui/patManager.cpp:36 +msgid "De-duplicate patterns" +msgstr "" + +#: src/gui/gui.cpp:5957 +msgid "Remove unused instruments" +msgstr "" + +#: src/gui/gui.cpp:5970 +msgid "Remove unused samples" +msgstr "" + +#: src/gui/gui.cpp:5987 +msgid "Never mind! Cancel" +msgstr "" + +#: src/gui/gui.cpp:6066 +msgid "Drum kit mode:" +msgstr "" + +#: src/gui/gui.cpp:6070 +msgid "12 samples per octave" +msgstr "" + +#: src/gui/gui.cpp:6075 +msgid "Starting octave" +msgstr "" + +#: src/gui/gui.cpp:6095 +msgid "Drum Kit" +msgstr "" + +#: src/gui/gui.cpp:6181 +msgid "this is an instrument bank! select which one to use:" +msgstr "" + +#: src/gui/gui.cpp:6184 +msgid "this is an instrument bank! select which ones to load:" +msgstr "" + +#: src/gui/gui.cpp:6258 +msgid "Data type:" +msgstr "" + +#: src/gui/gui.cpp:6285 +msgid "(will be mixed down to mono)" +msgstr "" + +#: src/gui/gui.cpp:6286 +msgid "Unsigned" +msgstr "" + +#: src/gui/gui.cpp:6290 +msgid "Big endian" +msgstr "" + +#: src/gui/gui.cpp:6298 +msgid "Swap nibbles" +msgstr "" + +#: src/gui/gui.cpp:6302 +msgid "Swap words" +msgstr "" + +#: src/gui/gui.cpp:6306 +msgid "Encoding:" +msgstr "" + +#: src/gui/gui.cpp:6319 +msgid "Reverse bit order" +msgstr "" + +#: src/gui/gui.cpp:6361 +msgid "Error! No string provided!" +msgstr "" + +#: src/gui/gui.cpp:6683 +msgid "it appears I couldn't load these fonts. any setting you can check?" +msgstr "" + +#: src/gui/gui.cpp:6863 src/gui/gui.cpp:6971 +msgid "" +"could not init renderer!\n" +"falling back to software renderer. please restart Furnace." +msgstr "" + +#: src/gui/gui.cpp:6865 src/gui/gui.cpp:6973 +#, c-format +msgid "" +"could not init renderer! %s\n" +"falling back to software renderer. please restart Furnace." +msgstr "" + +#: src/gui/gui.cpp:6870 src/gui/gui.cpp:6978 +msgid "could not init renderer!" +msgstr "" + +#: src/gui/gui.cpp:6881 +#, c-format +msgid "could not open window! %s" +msgstr "" + +#: src/gui/gui.cpp:6886 +msgid "" +"\n" +"falling back to software renderer. please restart Furnace." +msgstr "" + +#: src/gui/gui.cpp:7034 +msgid "Size column to fit###SizeOne" +msgstr "" + +#: src/gui/gui.cpp:7036 +msgid "Size all columns to fit###SizeAll" +msgstr "" + +#: src/gui/gui.cpp:7038 +msgid "Size all columns to default###SizeAll" +msgstr "" + +#: src/gui/gui.cpp:7040 +msgid "Reset order###ResetOrder" +msgstr "" + +#: src/gui/gui.cpp:7042 +msgid "(Main menu bar)" +msgstr "" + +#: src/gui/gui.cpp:7044 +msgid "(Popup)" +msgstr "" + +#: src/gui/gui.cpp:7046 +msgid "(Untitled)" +msgstr "" + +#: src/gui/gui.cpp:7048 +msgid "Hide tab bar###HideTabBar" +msgstr "" + +#: src/gui/gui.cpp:7052 +msgid "LocaleSettings: ccjk" +msgstr "" + +#: src/gui/gui.cpp:7564 +msgid "Unsaved changes! Save changes before quitting?" +msgstr "" + +#: src/gui/sysManager.cpp:42 +msgid "Preserve channel order" +msgstr "" + +#: src/gui/sysManager.cpp:44 +msgid "Clone channel data" +msgstr "" + +#: src/gui/sysManager.cpp:46 +msgid "Clone at end" +msgstr "" + +#: src/gui/sysManager.cpp:56 +msgid "Actions" +msgstr "" + +#: src/gui/sysManager.cpp:69 +msgid "(drag to swap chips)" +msgstr "" + +#: src/gui/sysManager.cpp:90 +msgid "Clone##SysDup" +msgstr "" + +#: src/gui/sysManager.cpp:92 +#, c-format +msgid "cannot clone chip! (%s)" +msgstr "" + +#: src/gui/sysManager.cpp:98 +msgid "Change##SysChange" +msgstr "" + +#: src/gui/sysManager.cpp:120 +msgid "Are you sure you want to remove this chip?" +msgstr "" + +#: src/gui/patManager.cpp:43 +msgid "Re-arrange patterns" +msgstr "" + +#: src/gui/patManager.cpp:50 +msgid "Sort orders" +msgstr "" + +#: src/gui/patManager.cpp:57 +msgid "Make patterns unique" +msgstr "" + +#: src/gui/patManager.cpp:103 +#, c-format +msgid "" +"Pattern %.2X\n" +"- not allocated" +msgstr "" + +#: src/gui/patManager.cpp:105 +#, c-format +msgid "" +"Pattern %.2X\n" +"- use count: %d (%.0f%%)\n" +"\n" +"right-click to erase" +msgstr "" + +#: src/gui/insEdit.cpp:39 +msgid "Down Down Down" +msgstr "" + +#: src/gui/insEdit.cpp:40 +msgid "Down." +msgstr "" + +#: src/gui/insEdit.cpp:41 +msgid "Down Up Down Up" +msgstr "" + +#: src/gui/insEdit.cpp:42 +msgid "Down UP" +msgstr "" + +#: src/gui/insEdit.cpp:43 +msgid "Up Up Up" +msgstr "" + +#: src/gui/insEdit.cpp:44 +msgid "Up." +msgstr "" + +#: src/gui/insEdit.cpp:45 +msgid "Up Down Up Down" +msgstr "" + +#: src/gui/insEdit.cpp:46 +msgid "Up DOWN" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Algorithm" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Feedback" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "LFO > Freq" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "LFO > Amp" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Decay 2" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "EnvScale" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Multiplier" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Detune 2" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "AM" +msgstr "" + +#: src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:5438 src/gui/insEdit.cpp:6516 +msgid "AM Depth" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Vibrato Depth" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Sustained" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Level Scaling" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Vibrato" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Scale Rate" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "OP2 Half Sine" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "OP1 Half Sine" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "EnvShift" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Reverb" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Fine" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "LFO2 > Freq" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "LFO2 > Amp" +msgstr "" + +#: src/gui/insEdit.cpp:56 src/gui/insEdit.cpp:68 src/gui/insEdit.cpp:7391 +msgid "OP4 Noise Mode" +msgstr "" + +#: src/gui/insEdit.cpp:57 +msgid "Envelope Delay" +msgstr "" + +#: src/gui/insEdit.cpp:58 src/gui/insEdit.cpp:70 +msgid "Output Level" +msgstr "" + +#: src/gui/insEdit.cpp:59 +msgid "Modulation Input Level" +msgstr "" + +#: src/gui/insEdit.cpp:60 +msgid "Left Output" +msgstr "" + +#: src/gui/insEdit.cpp:61 +msgid "Right Output" +msgstr "" + +#: src/gui/insEdit.cpp:62 +msgid "Coarse Tune (semitones)" +msgstr "" + +#: src/gui/insEdit.cpp:64 +msgid "Fixed Frequency Mode" +msgstr "" + +#: src/gui/insEdit.cpp:69 +msgid "Env. Delay" +msgstr "" + +#: src/gui/insEdit.cpp:71 +msgid "ModInput" +msgstr "" + +#: src/gui/insEdit.cpp:72 +msgid "Left" +msgstr "" + +#: src/gui/insEdit.cpp:73 +msgid "Right" +msgstr "" + +#: src/gui/insEdit.cpp:74 +msgid "Tune" +msgstr "" + +#: src/gui/insEdit.cpp:76 src/gui/insEdit.cpp:610 src/gui/insEdit.cpp:3792 +#: src/gui/insEdit.cpp:4554 src/gui/insEdit.cpp:4848 +msgid "Fixed" +msgstr "" + +#: src/gui/insEdit.cpp:98 src/gui/insEdit.cpp:117 src/gui/insEdit.cpp:136 +#: src/gui/insEdit.cpp:156 +msgid "User" +msgstr "" + +#: src/gui/insEdit.cpp:99 +msgid "1. Violin" +msgstr "" + +#: src/gui/insEdit.cpp:100 src/gui/insEdit.cpp:138 src/gui/insEdit.cpp:158 +msgid "2. Guitar" +msgstr "" + +#: src/gui/insEdit.cpp:101 src/gui/insEdit.cpp:159 +msgid "3. Piano" +msgstr "" + +#: src/gui/insEdit.cpp:102 src/gui/insEdit.cpp:160 +msgid "4. Flute" +msgstr "" + +#: src/gui/insEdit.cpp:103 src/gui/insEdit.cpp:122 src/gui/insEdit.cpp:161 +msgid "5. Clarinet" +msgstr "" + +#: src/gui/insEdit.cpp:104 +msgid "6. Oboe" +msgstr "" + +#: src/gui/insEdit.cpp:105 src/gui/insEdit.cpp:124 src/gui/insEdit.cpp:143 +#: src/gui/insEdit.cpp:163 +msgid "7. Trumpet" +msgstr "" + +#: src/gui/insEdit.cpp:106 +msgid "8. Organ" +msgstr "" + +#: src/gui/insEdit.cpp:107 +msgid "9. Horn" +msgstr "" + +#: src/gui/insEdit.cpp:108 +msgid "10. Synth" +msgstr "" + +#: src/gui/insEdit.cpp:109 +msgid "11. Harpsichord" +msgstr "" + +#: src/gui/insEdit.cpp:110 src/gui/insEdit.cpp:129 src/gui/insEdit.cpp:148 +msgid "12. Vibraphone" +msgstr "" + +#: src/gui/insEdit.cpp:111 +msgid "13. Synth Bass" +msgstr "" + +#: src/gui/insEdit.cpp:112 +msgid "14. Acoustic Bass" +msgstr "" + +#: src/gui/insEdit.cpp:113 +msgid "15. Electric Guitar" +msgstr "" + +#: src/gui/insEdit.cpp:114 src/gui/insEdit.cpp:133 src/gui/insEdit.cpp:152 +#: src/gui/insEdit.cpp:172 src/gui/insEdit.cpp:3176 +msgid "Drums" +msgstr "" + +#: src/gui/insEdit.cpp:118 +msgid "1. Electric String" +msgstr "" + +#: src/gui/insEdit.cpp:119 +msgid "2. Bow wow" +msgstr "" + +#: src/gui/insEdit.cpp:120 src/gui/insEdit.cpp:139 +msgid "3. Electric Guitar" +msgstr "" + +#: src/gui/insEdit.cpp:121 +msgid "4. Organ" +msgstr "" + +#: src/gui/insEdit.cpp:123 +msgid "6. Saxophone" +msgstr "" + +#: src/gui/insEdit.cpp:125 +msgid "8. Street Organ" +msgstr "" + +#: src/gui/insEdit.cpp:126 +msgid "9. Synth Brass" +msgstr "" + +#: src/gui/insEdit.cpp:127 +msgid "10. Electric Piano" +msgstr "" + +#: src/gui/insEdit.cpp:128 +msgid "11. Bass" +msgstr "" + +#: src/gui/insEdit.cpp:130 +msgid "13. Chime" +msgstr "" + +#: src/gui/insEdit.cpp:131 +msgid "14. Tom Tom II" +msgstr "" + +#: src/gui/insEdit.cpp:132 +msgid "15. Noise" +msgstr "" + +#: src/gui/insEdit.cpp:137 +msgid "1. Strings" +msgstr "" + +#: src/gui/insEdit.cpp:140 +msgid "4. Electric Piano" +msgstr "" + +#: src/gui/insEdit.cpp:141 +msgid "5. Flute" +msgstr "" + +#: src/gui/insEdit.cpp:142 +msgid "6. Marimba" +msgstr "" + +#: src/gui/insEdit.cpp:144 +msgid "8. Harmonica" +msgstr "" + +#: src/gui/insEdit.cpp:145 +msgid "9. Tuba" +msgstr "" + +#: src/gui/insEdit.cpp:146 +msgid "10. Synth Brass" +msgstr "" + +#: src/gui/insEdit.cpp:147 +msgid "11. Short Saw" +msgstr "" + +#: src/gui/insEdit.cpp:149 +msgid "13. Electric Guitar 2" +msgstr "" + +#: src/gui/insEdit.cpp:150 +msgid "14. Synth Bass" +msgstr "" + +#: src/gui/insEdit.cpp:151 +msgid "15. Sitar" +msgstr "" + +#: src/gui/insEdit.cpp:157 +msgid "1. Bell" +msgstr "" + +#: src/gui/insEdit.cpp:162 +msgid "6. Rattling Bell" +msgstr "" + +#: src/gui/insEdit.cpp:164 +msgid "8. Reed Organ" +msgstr "" + +#: src/gui/insEdit.cpp:165 +msgid "9. Soft Bell" +msgstr "" + +#: src/gui/insEdit.cpp:166 +msgid "10. Xylophone" +msgstr "" + +#: src/gui/insEdit.cpp:167 +msgid "11. Vibraphone" +msgstr "" + +#: src/gui/insEdit.cpp:168 +msgid "12. Brass" +msgstr "" + +#: src/gui/insEdit.cpp:169 +msgid "13. Bass Guitar" +msgstr "" + +#: src/gui/insEdit.cpp:170 +msgid "14. Synth" +msgstr "" + +#: src/gui/insEdit.cpp:171 +msgid "15. Chorus" +msgstr "" + +#: src/gui/insEdit.cpp:178 src/gui/insEdit.cpp:189 +msgid "Half Sine" +msgstr "" + +#: src/gui/insEdit.cpp:179 src/gui/insEdit.cpp:190 +msgid "Absolute Sine" +msgstr "" + +#: src/gui/insEdit.cpp:180 +msgid "Quarter Sine" +msgstr "" + +#: src/gui/insEdit.cpp:181 src/gui/insEdit.cpp:203 +msgid "Squished Sine" +msgstr "" + +#: src/gui/insEdit.cpp:182 src/gui/insEdit.cpp:205 +msgid "Squished AbsSine" +msgstr "" + +#: src/gui/insEdit.cpp:184 src/gui/insEdit.cpp:195 +msgid "Derived Square" +msgstr "" + +#: src/gui/insEdit.cpp:191 +msgid "Pulse Sine" +msgstr "" + +#: src/gui/insEdit.cpp:192 +msgid "Sine (Even Periods)" +msgstr "" + +#: src/gui/insEdit.cpp:193 +msgid "AbsSine (Even Periods)" +msgstr "" + +#: src/gui/insEdit.cpp:201 +msgid "Cut Sine" +msgstr "" + +#: src/gui/insEdit.cpp:202 +msgid "Cut Triangle" +msgstr "" + +#: src/gui/insEdit.cpp:204 +msgid "Squished Triangle" +msgstr "" + +#: src/gui/insEdit.cpp:206 +msgid "Squished AbsTriangle" +msgstr "" + +#: src/gui/insEdit.cpp:224 +msgid "Noise disabled" +msgstr "" + +#: src/gui/insEdit.cpp:225 +msgid "Square + noise" +msgstr "" + +#: src/gui/insEdit.cpp:226 +msgid "Ringmod from OP3 + noise" +msgstr "" + +#: src/gui/insEdit.cpp:227 +msgid "" +"Ringmod from OP3 + double pitch ModInput\n" +"WARNING - has emulation issues; subject to change" +msgstr "" + +#: src/gui/insEdit.cpp:232 +msgid "Bitwise AND" +msgstr "" + +#: src/gui/insEdit.cpp:233 +msgid "Bitwise OR" +msgstr "" + +#: src/gui/insEdit.cpp:234 +msgid "Bitwise XOR" +msgstr "" + +#: src/gui/insEdit.cpp:239 src/gui/insEdit.cpp:390 +msgid "gate" +msgstr "" + +#: src/gui/insEdit.cpp:240 src/gui/insEdit.cpp:391 +msgid "sync" +msgstr "" + +#: src/gui/insEdit.cpp:241 src/gui/insEdit.cpp:392 +msgid "ring" +msgstr "" + +#: src/gui/insEdit.cpp:327 +msgid "How did you even" +msgstr "" + +#: src/gui/insEdit.cpp:335 +msgid "triangle" +msgstr "" + +#: src/gui/insEdit.cpp:336 src/gui/insEdit.cpp:5821 +msgid "saw" +msgstr "" + +#: src/gui/insEdit.cpp:337 src/gui/insEdit.cpp:5827 +msgid "pulse" +msgstr "" + +#: src/gui/insEdit.cpp:338 src/gui/insEdit.cpp:344 src/gui/insEdit.cpp:373 +#: src/gui/insEdit.cpp:424 src/gui/insEdit.cpp:429 src/gui/insEdit.cpp:5833 +msgid "noise" +msgstr "" + +#: src/gui/insEdit.cpp:343 +msgid "tone" +msgstr "" + +#: src/gui/insEdit.cpp:345 +msgid "envelope" +msgstr "" + +#: src/gui/insEdit.cpp:350 +msgid "hold" +msgstr "" + +#: src/gui/insEdit.cpp:351 +msgid "alternate" +msgstr "" + +#: src/gui/insEdit.cpp:352 src/gui/insEdit.cpp:364 +msgid "direction" +msgstr "" + +#: src/gui/insEdit.cpp:353 src/gui/insEdit.cpp:436 +msgid "enable" +msgstr "" + +#: src/gui/insEdit.cpp:357 src/gui/insEdit.cpp:368 +msgid "enabled" +msgstr "" + +#: src/gui/insEdit.cpp:361 +msgid "mirror" +msgstr "" + +#: src/gui/insEdit.cpp:365 +msgid "resolution" +msgstr "" + +#: src/gui/insEdit.cpp:366 +msgid "fixed" +msgstr "" + +#: src/gui/insEdit.cpp:367 +msgid "N/A" +msgstr "" + +#: src/gui/insEdit.cpp:374 +msgid "echo" +msgstr "" + +#: src/gui/insEdit.cpp:375 +msgid "pitch mod" +msgstr "" + +#: src/gui/insEdit.cpp:376 src/gui/insEdit.cpp:508 +msgid "invert right" +msgstr "" + +#: src/gui/insEdit.cpp:377 src/gui/insEdit.cpp:509 +msgid "invert left" +msgstr "" + +#: src/gui/insEdit.cpp:382 src/gui/insEdit.cpp:5905 +msgid "low" +msgstr "" + +#: src/gui/insEdit.cpp:383 src/gui/insEdit.cpp:5911 +msgid "band" +msgstr "" + +#: src/gui/insEdit.cpp:384 src/gui/insEdit.cpp:5917 +msgid "high" +msgstr "" + +#: src/gui/insEdit.cpp:385 src/gui/insEdit.cpp:5924 +msgid "ch3off" +msgstr "" + +#: src/gui/insEdit.cpp:393 +msgid "test" +msgstr "" + +#: src/gui/insEdit.cpp:398 +msgid "15KHz" +msgstr "" + +#: src/gui/insEdit.cpp:399 +msgid "filter 2+4" +msgstr "" + +#: src/gui/insEdit.cpp:400 +msgid "filter 1+3" +msgstr "" + +#: src/gui/insEdit.cpp:401 +msgid "16-bit 3+4" +msgstr "" + +#: src/gui/insEdit.cpp:402 +msgid "16-bit 1+2" +msgstr "" + +#: src/gui/insEdit.cpp:403 +msgid "high3" +msgstr "" + +#: src/gui/insEdit.cpp:404 +msgid "high1" +msgstr "" + +#: src/gui/insEdit.cpp:405 +msgid "poly9" +msgstr "" + +#: src/gui/insEdit.cpp:414 +msgid "16'" +msgstr "" + +#: src/gui/insEdit.cpp:415 +msgid "8'" +msgstr "" + +#: src/gui/insEdit.cpp:416 +msgid "4'" +msgstr "" + +#: src/gui/insEdit.cpp:417 +msgid "2'" +msgstr "" + +#: src/gui/insEdit.cpp:418 +msgid "sustain" +msgstr "" + +#: src/gui/insEdit.cpp:423 +msgid "square" +msgstr "" + +#: src/gui/insEdit.cpp:431 +msgid "surround" +msgstr "" + +#: src/gui/insEdit.cpp:437 +msgid "oneshot" +msgstr "" + +#: src/gui/insEdit.cpp:438 +msgid "split L/R" +msgstr "" + +#: src/gui/insEdit.cpp:439 +msgid "HinvR" +msgstr "" + +#: src/gui/insEdit.cpp:440 +msgid "VinvR" +msgstr "" + +#: src/gui/insEdit.cpp:441 +msgid "HinvL" +msgstr "" + +#: src/gui/insEdit.cpp:442 +msgid "VinvL" +msgstr "" + +#: src/gui/insEdit.cpp:447 src/gui/insEdit.cpp:476 +msgid "ring mod" +msgstr "" + +#: src/gui/insEdit.cpp:448 +msgid "low pass" +msgstr "" + +#: src/gui/insEdit.cpp:449 src/gui/insEdit.cpp:475 +msgid "high pass" +msgstr "" + +#: src/gui/insEdit.cpp:450 +msgid "band pass" +msgstr "" + +#: src/gui/insEdit.cpp:459 +msgid "enable tap B" +msgstr "" + +#: src/gui/insEdit.cpp:460 +msgid "AM with slope" +msgstr "" + +#: src/gui/insEdit.cpp:465 +msgid "invert B" +msgstr "" + +#: src/gui/insEdit.cpp:466 +msgid "invert A" +msgstr "" + +#: src/gui/insEdit.cpp:467 +msgid "reset B" +msgstr "" + +#: src/gui/insEdit.cpp:468 +msgid "reset A" +msgstr "" + +#: src/gui/insEdit.cpp:469 +msgid "clip B" +msgstr "" + +#: src/gui/insEdit.cpp:470 +msgid "clip A" +msgstr "" + +#: src/gui/insEdit.cpp:477 +msgid "swap counters (noise)" +msgstr "" + +#: src/gui/insEdit.cpp:478 +msgid "low pass (noise)" +msgstr "" + +#: src/gui/insEdit.cpp:485 +msgid "rear right" +msgstr "" + +#: src/gui/insEdit.cpp:486 +msgid "rear left" +msgstr "" + +#: src/gui/insEdit.cpp:491 +msgid "on" +msgstr "" + +#: src/gui/insEdit.cpp:496 +msgid "k1 slowdown" +msgstr "" + +#: src/gui/insEdit.cpp:497 +msgid "k2 slowdown" +msgstr "" + +#: src/gui/insEdit.cpp:502 +msgid "pause" +msgstr "" + +#: src/gui/insEdit.cpp:503 +msgid "reverse" +msgstr "" + +#: src/gui/insEdit.cpp:521 +msgid "Subtract" +msgstr "" + +#: src/gui/insEdit.cpp:522 +msgid "Average" +msgstr "" + +#: src/gui/insEdit.cpp:523 src/gui/insEdit.cpp:2037 +msgid "Phase" +msgstr "" + +#: src/gui/insEdit.cpp:524 +msgid "Chorus" +msgstr "" + +#: src/gui/insEdit.cpp:528 +msgid "None (dual)" +msgstr "" + +#: src/gui/insEdit.cpp:529 +msgid "Wipe" +msgstr "" + +#: src/gui/insEdit.cpp:531 +msgid "Fade (ping-pong)" +msgstr "" + +#: src/gui/insEdit.cpp:532 +msgid "Overlay" +msgstr "" + +#: src/gui/insEdit.cpp:533 +msgid "Negative Overlay" +msgstr "" + +#: src/gui/insEdit.cpp:534 +msgid "Slide" +msgstr "" + +#: src/gui/insEdit.cpp:535 +msgid "Mix Chorus" +msgstr "" + +#: src/gui/insEdit.cpp:536 +msgid "Phase Modulation" +msgstr "" + +#: src/gui/insEdit.cpp:541 +msgid "Sweep" +msgstr "" + +#: src/gui/insEdit.cpp:542 src/gui/insEdit.cpp:552 +msgid "Wait" +msgstr "" + +#: src/gui/insEdit.cpp:543 src/gui/insEdit.cpp:553 +msgid "Wait for Release" +msgstr "" + +#: src/gui/insEdit.cpp:545 src/gui/insEdit.cpp:555 +msgid "Loop until Release" +msgstr "" + +#: src/gui/insEdit.cpp:549 +msgid "Volume Sweep" +msgstr "" + +#: src/gui/insEdit.cpp:550 +msgid "Frequency Sweep" +msgstr "" + +#: src/gui/insEdit.cpp:551 +msgid "Cutoff Sweep" +msgstr "" + +#: src/gui/insEdit.cpp:559 src/gui/insEdit.cpp:6604 +msgid "Direct" +msgstr "" + +#: src/gui/insEdit.cpp:560 src/gui/insEdit.cpp:6608 +msgid "Decrease (linear)" +msgstr "" + +#: src/gui/insEdit.cpp:561 src/gui/insEdit.cpp:6612 +msgid "Decrease (logarithmic)" +msgstr "" + +#: src/gui/insEdit.cpp:562 src/gui/insEdit.cpp:6616 +msgid "Increase (linear)" +msgstr "" + +#: src/gui/insEdit.cpp:563 src/gui/insEdit.cpp:6620 +msgid "Increase (bent line)" +msgstr "" + +#: src/gui/insEdit.cpp:611 +msgid "Relative" +msgstr "" + +#: src/gui/insEdit.cpp:616 +#, c-format +msgid "%d: +%d (exponential)" +msgstr "" + +#: src/gui/insEdit.cpp:619 +#, c-format +msgid "%d: +%d (linear)" +msgstr "" + +#: src/gui/insEdit.cpp:622 +#, c-format +msgid "%d: -%d (exponential)" +msgstr "" + +#: src/gui/insEdit.cpp:625 +#, c-format +msgid "%d: -%d (linear)" +msgstr "" + +#: src/gui/insEdit.cpp:627 +#, c-format +msgid "%d: %d (direct)" +msgstr "" + +#: src/gui/insEdit.cpp:660 +msgid "Random" +msgstr "" + +#: src/gui/insEdit.cpp:1610 +msgid "" +"left click to restart\n" +"middle click to pause\n" +"right click to see algorithm" +msgstr "" + +#: src/gui/insEdit.cpp:1620 +msgid "" +"left click to configure TL scaling\n" +"right click to see FM preview" +msgstr "" + +#: src/gui/insEdit.cpp:1624 +msgid "right click to see FM preview" +msgstr "" + +#: src/gui/insEdit.cpp:1639 +msgid "operator level changes with volume?" +msgstr "" + +#: src/gui/insEdit.cpp:1648 +msgid "AUTO##OPKVS" +msgstr "" + +#: src/gui/insEdit.cpp:1650 +msgid "NO##OPKVS" +msgstr "" + +#: src/gui/insEdit.cpp:1652 +msgid "YES##OPKVS" +msgstr "" + +#: src/gui/insEdit.cpp:1900 src/gui/insEdit.cpp:2005 +msgid "Bottom" +msgstr "" + +#: src/gui/insEdit.cpp:1940 +msgid "Hold" +msgstr "" + +#: src/gui/insEdit.cpp:1949 +msgid "SusTime" +msgstr "" + +#: src/gui/insEdit.cpp:1969 +msgid "SusDecay" +msgstr "" + +#: src/gui/insEdit.cpp:2047 +msgid "Shape" +msgstr "" + +#: src/gui/insEdit.cpp:2100 +msgid "Macro type: Sequence" +msgstr "" + +#: src/gui/insEdit.cpp:2103 +msgid "Macro type: ADSR" +msgstr "" + +#: src/gui/insEdit.cpp:2106 +msgid "Macro type: LFO" +msgstr "" + +#: src/gui/insEdit.cpp:2109 +msgid "Macro type: What's going on here?" +msgstr "" + +#: src/gui/insEdit.cpp:2122 +msgid "Delay/Step Length" +msgstr "" + +#: src/gui/insEdit.cpp:2125 +msgid "Step Length (ticks)##IMacroSpeed" +msgstr "" + +#: src/gui/insEdit.cpp:2129 +msgid "Delay##IMacroDelay" +msgstr "" + +#: src/gui/insEdit.cpp:2142 +msgid "Release mode: Active (jump to release pos)" +msgstr "" + +#: src/gui/insEdit.cpp:2144 +msgid "Release mode: Passive (delayed release)" +msgstr "" + +#: src/gui/insEdit.cpp:2393 +msgid "StepLen" +msgstr "" + +#: src/gui/insEdit.cpp:2401 +msgid "Delay" +msgstr "" + +#: src/gui/insEdit.cpp:2425 +msgid "The heck? No, this isn't even working correctly..." +msgstr "" + +#: src/gui/insEdit.cpp:2428 +msgid "The only problem with that selectedMacro is that it's a bug..." +msgstr "" + +#: src/gui/insEdit.cpp:2589 +msgid "(copying)" +msgstr "" + +#: src/gui/insEdit.cpp:2591 +msgid "(swapping)" +msgstr "" + +#: src/gui/insEdit.cpp:2595 +msgid "" +"- drag to swap operator\n" +"- shift-drag to copy operator" +msgstr "" + +#: src/gui/insEdit.cpp:2632 +msgid "new DPCM features disabled (compatibility)!" +msgstr "" + +#: src/gui/insEdit.cpp:2633 +msgid "click here to enable them." +msgstr "" + +#: src/gui/insEdit.cpp:2644 +msgid "none selected" +msgstr "" + +#: src/gui/insEdit.cpp:2657 +msgid "Use sample" +msgstr "" + +#: src/gui/insEdit.cpp:2659 +msgid "Sample bank slot##BANKSLOT" +msgstr "" + +#: src/gui/insEdit.cpp:2681 +msgid "Use wavetable (Amiga/Generic DAC only)" +msgstr "" + +#: src/gui/insEdit.cpp:2681 +msgid "Use wavetable" +msgstr "" + +#: src/gui/insEdit.cpp:2708 +msgid "Use sample map" +msgstr "" + +#: src/gui/insEdit.cpp:2730 +msgid "delta" +msgstr "" + +#: src/gui/insEdit.cpp:2736 +msgid "sample name" +msgstr "" + +#: src/gui/insEdit.cpp:3001 +msgid "set entire map to this pitch" +msgstr "" + +#: src/gui/insEdit.cpp:3009 +msgid "set entire map to this delta counter value" +msgstr "" + +#: src/gui/insEdit.cpp:3018 +msgid "set entire map to this note" +msgstr "" + +#: src/gui/insEdit.cpp:3027 +msgid "set entire map to this sample" +msgstr "" + +#: src/gui/insEdit.cpp:3037 +msgid "reset pitches" +msgstr "" + +#: src/gui/insEdit.cpp:3042 +msgid "clear delta counter values" +msgstr "" + +#: src/gui/insEdit.cpp:3048 +msgid "reset notes" +msgstr "" + +#: src/gui/insEdit.cpp:3054 +msgid "clear map samples" +msgstr "" + +#: src/gui/insEdit.cpp:3148 +msgid "Request from TX81Z" +msgstr "" + +#: src/gui/insEdit.cpp:3234 +#, c-format +msgid "%s name" +msgstr "" + +#: src/gui/insEdit.cpp:3286 +msgid "Fixed frequency mode" +msgstr "" + +#: src/gui/insEdit.cpp:3288 +msgid "" +"when enabled, drums will be set to the specified frequencies, ignoring the " +"note." +msgstr "" + +#: src/gui/insEdit.cpp:3296 +msgid "Drum" +msgstr "" + +#: src/gui/insEdit.cpp:3298 src/gui/insEdit.cpp:3798 src/gui/insEdit.cpp:3904 +#: src/gui/insEdit.cpp:4404 src/gui/insEdit.cpp:4468 src/gui/insEdit.cpp:5068 +#: src/gui/insEdit.cpp:5518 +msgid "Block" +msgstr "" + +#: src/gui/insEdit.cpp:3300 src/gui/insEdit.cpp:3803 src/gui/insEdit.cpp:3909 +#: src/gui/insEdit.cpp:4993 src/gui/insEdit.cpp:5079 src/gui/insEdit.cpp:5519 +msgid "FreqNum" +msgstr "" + +#: src/gui/insEdit.cpp:3303 +msgid "Snare/Hi-hat" +msgstr "" + +#: src/gui/insEdit.cpp:3304 +msgid "Tom/Top" +msgstr "" + +#: src/gui/insEdit.cpp:3314 +msgid "Volume##TL" +msgstr "" + +#: src/gui/insEdit.cpp:3316 +msgid "this volume slider only works in compatibility (non-drums) system." +msgstr "" + +#: src/gui/insEdit.cpp:3626 +msgid "Env" +msgstr "" + +#: src/gui/insEdit.cpp:3980 src/gui/insEdit.cpp:4346 src/gui/insEdit.cpp:4396 +#: src/gui/insEdit.cpp:5104 +msgid "OPL2/3 only (last 4 waveforms are OPL3 only)" +msgstr "" + +#: src/gui/insEdit.cpp:4079 src/gui/insEdit.cpp:4788 +#, c-format +msgid "Envelope 2 (kick only)" +msgstr "" + +#: src/gui/insEdit.cpp:4084 +#, c-format +msgid "Operator %d" +msgstr "" + +#: src/gui/insEdit.cpp:4414 +msgid "Freq" +msgstr "" + +#: src/gui/insEdit.cpp:4443 +msgid "Only on YM2151 (OPM)" +msgstr "" + +#: src/gui/insEdit.cpp:4466 +msgid "Blk" +msgstr "" + +#: src/gui/insEdit.cpp:4479 +msgid "F" +msgstr "" + +#: src/gui/insEdit.cpp:4481 +msgid "Frequency (F-Num)" +msgstr "" + +#: src/gui/insEdit.cpp:4833 +msgid "SSG On" +msgstr "" + +#: src/gui/insEdit.cpp:5206 src/gui/insEdit.cpp:5207 +msgid "waiting..." +msgstr "" + +#: src/gui/insEdit.cpp:5210 src/gui/insEdit.cpp:5211 +msgid "no instrument selected" +msgstr "" + +#: src/gui/insEdit.cpp:5393 +msgid "" +"none of the currently present chips are able to play this instrument type!" +msgstr "" + +#: src/gui/insEdit.cpp:5413 +msgid "FM Macros" +msgstr "" + +#: src/gui/insEdit.cpp:5435 src/gui/insEdit.cpp:5440 +msgid "LFO Speed" +msgstr "" + +#: src/gui/insEdit.cpp:5439 src/gui/insEdit.cpp:6514 +msgid "PM Depth" +msgstr "" + +#: src/gui/insEdit.cpp:5441 +msgid "LFO Shape" +msgstr "" + +#: src/gui/insEdit.cpp:5444 +msgid "OpMask" +msgstr "" + +#: src/gui/insEdit.cpp:5446 +msgid "AM Depth 2" +msgstr "" + +#: src/gui/insEdit.cpp:5447 +msgid "PM Depth 2" +msgstr "" + +#: src/gui/insEdit.cpp:5448 +msgid "LFO2 Speed" +msgstr "" + +#: src/gui/insEdit.cpp:5449 +msgid "LFO2 Shape" +msgstr "" + +#: src/gui/insEdit.cpp:5458 +#, c-format +msgid "Operator Macros" +msgstr "" + +#: src/gui/insEdit.cpp:5460 +#, c-format +msgid "OP%d Macros" +msgstr "" + +#: src/gui/insEdit.cpp:5521 +msgid "Op. Arpeggio" +msgstr "" + +#: src/gui/insEdit.cpp:5522 +msgid "Op. Pitch" +msgstr "" + +#: src/gui/insEdit.cpp:5531 +msgid "Op. Panning" +msgstr "" + +#: src/gui/insEdit.cpp:5558 +msgid "Use software envelope" +msgstr "" + +#: src/gui/insEdit.cpp:5559 +msgid "Initialize envelope on every note" +msgstr "" + +#: src/gui/insEdit.cpp:5560 +msgid "Double wave length (GBA only)" +msgstr "" + +#: src/gui/insEdit.cpp:5589 src/gui/insEdit.cpp:5666 +msgid "Sound Length" +msgstr "" + +#: src/gui/insEdit.cpp:5592 src/gui/insEdit.cpp:5666 +msgid "Infinity" +msgstr "" + +#: src/gui/insEdit.cpp:5596 +msgid "Direction" +msgstr "" + +#: src/gui/insEdit.cpp:5599 src/gui/insEdit.cpp:5669 src/gui/insEdit.cpp:5697 +#: src/gui/insEdit.cpp:6008 src/gui/insEdit.cpp:6051 +msgid "Up" +msgstr "" + +#: src/gui/insEdit.cpp:5604 src/gui/insEdit.cpp:5674 src/gui/insEdit.cpp:5702 +#: src/gui/insEdit.cpp:6013 src/gui/insEdit.cpp:6056 +msgid "Down" +msgstr "" + +#: src/gui/insEdit.cpp:5620 src/gui/insEdit.cpp:5953 +msgid "Hardware Sequence" +msgstr "" + +#: src/gui/insEdit.cpp:5630 src/gui/insEdit.cpp:5963 +msgid "Tick" +msgstr "" + +#: src/gui/insEdit.cpp:5632 src/gui/insEdit.cpp:5965 +msgid "Command" +msgstr "" + +#: src/gui/insEdit.cpp:5634 src/gui/insEdit.cpp:5967 +msgid "Move/Remove" +msgstr "" + +#: src/gui/insEdit.cpp:5663 +msgid "Env Length" +msgstr "" + +#: src/gui/insEdit.cpp:5690 +msgid "Shift" +msgstr "" + +#: src/gui/insEdit.cpp:5717 src/gui/insEdit.cpp:6073 +msgid "Ticks" +msgstr "" + +#: src/gui/insEdit.cpp:5736 src/gui/insEdit.cpp:6092 src/gui/insEdit.cpp:6239 +msgid "Position" +msgstr "" + +#: src/gui/insEdit.cpp:5815 +msgid "tri" +msgstr "" + +#: src/gui/insEdit.cpp:5882 +msgid "Ring Modulation" +msgstr "" + +#: src/gui/insEdit.cpp:5886 +msgid "Oscillator Sync" +msgstr "" + +#: src/gui/insEdit.cpp:5890 +msgid "Enable filter" +msgstr "" + +#: src/gui/insEdit.cpp:5891 +msgid "Initialize filter" +msgstr "" + +#: src/gui/insEdit.cpp:5894 src/gui/insEdit.cpp:5897 src/gui/insEdit.cpp:6951 +#: src/gui/insEdit.cpp:7215 src/gui/insEdit.cpp:7476 +msgid "Cutoff" +msgstr "" + +#: src/gui/insEdit.cpp:5902 src/gui/insEdit.cpp:6408 src/gui/insEdit.cpp:6952 +#: src/gui/insEdit.cpp:7179 src/gui/insEdit.cpp:7477 +msgid "Filter Mode" +msgstr "" + +#: src/gui/insEdit.cpp:5931 src/gui/insEdit.cpp:7485 +msgid "Noise Mode" +msgstr "" + +#: src/gui/insEdit.cpp:5932 +msgid "Wave Mix Mode" +msgstr "" + +#: src/gui/insEdit.cpp:5935 +msgid "Absolute Cutoff Macro" +msgstr "" + +#: src/gui/insEdit.cpp:5939 +msgid "Absolute Duty Macro" +msgstr "" + +#: src/gui/insEdit.cpp:5945 +msgid "Don't test before new note" +msgstr "" + +#: src/gui/insEdit.cpp:5950 +msgid "Switch roles of frequency and phase reset timer" +msgstr "" + +#: src/gui/insEdit.cpp:5997 src/gui/insEdit.cpp:6040 +msgid "Period" +msgstr "" + +#: src/gui/insEdit.cpp:6002 src/gui/insEdit.cpp:6045 src/gui/insEdit.cpp:6892 +msgid "Amount" +msgstr "" + +#: src/gui/insEdit.cpp:6005 src/gui/insEdit.cpp:6048 +msgid "Bound" +msgstr "" + +#: src/gui/insEdit.cpp:6021 +msgid "Flip" +msgstr "" + +#: src/gui/insEdit.cpp:6210 +msgid "Load waveform" +msgstr "" + +#: src/gui/insEdit.cpp:6215 +msgid "" +"when enabled, a waveform will be loaded into RAM.\n" +"when disabled, only the offset and length change." +msgstr "" + +#: src/gui/insEdit.cpp:6219 +msgid "Waveform##WAVE" +msgstr "" + +#: src/gui/insEdit.cpp:6227 +msgid "Per-channel wave position/length" +msgstr "" + +#: src/gui/insEdit.cpp:6237 +msgid "Ch" +msgstr "" + +#: src/gui/insEdit.cpp:6286 +msgid "Compatibility mode" +msgstr "" + +#: src/gui/insEdit.cpp:6288 +msgid "" +"only use for compatibility with .dmf modules!\n" +"- initializes modulation table with first wavetable\n" +"- does not alter modulation parameters on instrument change" +msgstr "" + +#: src/gui/insEdit.cpp:6290 +msgid "Modulation depth" +msgstr "" + +#: src/gui/insEdit.cpp:6294 +msgid "Modulation speed" +msgstr "" + +#: src/gui/insEdit.cpp:6298 +msgid "Modulation table" +msgstr "" + +#: src/gui/insEdit.cpp:6347 +msgid "Set modulation table (channel 5 only)" +msgstr "" + +#: src/gui/insEdit.cpp:6411 src/gui/insEdit.cpp:7184 +msgid "Filter K1" +msgstr "" + +#: src/gui/insEdit.cpp:6413 src/gui/insEdit.cpp:7185 +msgid "Filter K2" +msgstr "" + +#: src/gui/insEdit.cpp:6417 +msgid "Envelope length" +msgstr "" + +#: src/gui/insEdit.cpp:6420 +msgid "Left Volume Ramp" +msgstr "" + +#: src/gui/insEdit.cpp:6422 +msgid "Right Volume Ramp" +msgstr "" + +#: src/gui/insEdit.cpp:6425 +msgid "Filter K1 Ramp" +msgstr "" + +#: src/gui/insEdit.cpp:6427 +msgid "Filter K2 Ramp" +msgstr "" + +#: src/gui/insEdit.cpp:6430 +msgid "K1 Ramp Slowdown" +msgstr "" + +#: src/gui/insEdit.cpp:6432 +msgid "K2 Ramp Slowdown" +msgstr "" + +#: src/gui/insEdit.cpp:6454 +msgid "Attack Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6460 +msgid "Decay 1 Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6466 +msgid "Decay Level" +msgstr "" + +#: src/gui/insEdit.cpp:6472 +msgid "Decay 2 Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6478 +msgid "Release Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6484 +msgid "Rate Correction" +msgstr "" + +#: src/gui/insEdit.cpp:6512 +msgid "LFO Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6523 +msgid "Use envelope" +msgstr "" + +#: src/gui/insEdit.cpp:6576 +msgid "Sustain/release mode:" +msgstr "" + +#: src/gui/insEdit.cpp:6577 +msgid "Direct (cut on release)" +msgstr "" + +#: src/gui/insEdit.cpp:6580 +msgid "Effective (linear decrease)" +msgstr "" + +#: src/gui/insEdit.cpp:6583 +msgid "Effective (exponential decrease)" +msgstr "" + +#: src/gui/insEdit.cpp:6586 +msgid "Delayed (write R on release)" +msgstr "" + +#: src/gui/insEdit.cpp:6596 src/gui/insEdit.cpp:6597 +msgid "Gain Mode" +msgstr "" + +#: src/gui/insEdit.cpp:6599 src/gui/insEdit.cpp:6600 src/gui/insEdit.cpp:7205 +msgid "Gain" +msgstr "" + +#: src/gui/insEdit.cpp:6633 +msgid "" +"using decrease modes will not produce any sound at all, unless you know what " +"you are doing.\n" +"it is recommended to use the Gain macro for decrease instead." +msgstr "" + +#: src/gui/insEdit.cpp:6703 +msgid "Enable synthesizer" +msgstr "" + +#: src/gui/insEdit.cpp:6721 +msgid "Single-waveform" +msgstr "" + +#: src/gui/insEdit.cpp:6730 +msgid "Dual-waveform" +msgstr "" + +#: src/gui/insEdit.cpp:6803 src/gui/insEdit.cpp:6812 +msgid "Wave 1" +msgstr "" + +#: src/gui/insEdit.cpp:6808 src/gui/insEdit.cpp:6823 +msgid "" +"waveform macro is controlling wave 1!\n" +"this value will be ineffective." +msgstr "" + +#: src/gui/insEdit.cpp:6829 +msgid "Wave 2" +msgstr "" + +#: src/gui/insEdit.cpp:6844 +msgid "Resume preview" +msgstr "" + +#: src/gui/insEdit.cpp:6846 +msgid "Pause preview" +msgstr "" + +#: src/gui/insEdit.cpp:6854 +msgid "Restart preview" +msgstr "" + +#: src/gui/insEdit.cpp:6874 +msgid "Copy to new wavetable" +msgstr "" + +#: src/gui/insEdit.cpp:6881 +msgid "Update Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6902 +msgid "Global" +msgstr "" + +#: src/gui/insEdit.cpp:6906 +msgid "" +"wavetable synthesizer disabled.\n" +"use the Waveform macro to set the wave for this instrument." +msgstr "" + +#: src/gui/insEdit.cpp:6912 +msgid "Macros" +msgstr "" + +#: src/gui/insEdit.cpp:6921 src/gui/insEdit.cpp:6929 src/gui/insEdit.cpp:6938 +#: src/gui/insEdit.cpp:6947 src/gui/insEdit.cpp:6962 src/gui/insEdit.cpp:6976 +#: src/gui/insEdit.cpp:6988 src/gui/insEdit.cpp:7001 src/gui/insEdit.cpp:7017 +#: src/gui/insEdit.cpp:7023 src/gui/insEdit.cpp:7033 src/gui/insEdit.cpp:7040 +#: src/gui/insEdit.cpp:7046 src/gui/insEdit.cpp:7059 src/gui/insEdit.cpp:7066 +#: src/gui/insEdit.cpp:7073 src/gui/insEdit.cpp:7082 src/gui/insEdit.cpp:7092 +#: src/gui/insEdit.cpp:7100 src/gui/insEdit.cpp:7106 src/gui/insEdit.cpp:7114 +#: src/gui/insEdit.cpp:7121 src/gui/insEdit.cpp:7127 src/gui/insEdit.cpp:7137 +#: src/gui/insEdit.cpp:7149 src/gui/insEdit.cpp:7157 src/gui/insEdit.cpp:7173 +#: src/gui/insEdit.cpp:7178 src/gui/insEdit.cpp:7191 src/gui/insEdit.cpp:7198 +#: src/gui/insEdit.cpp:7209 src/gui/insEdit.cpp:7222 src/gui/insEdit.cpp:7231 +#: src/gui/insEdit.cpp:7238 src/gui/insEdit.cpp:7246 src/gui/insEdit.cpp:7270 +#: src/gui/insEdit.cpp:7277 src/gui/insEdit.cpp:7285 src/gui/insEdit.cpp:7296 +#: src/gui/insEdit.cpp:7303 src/gui/insEdit.cpp:7311 src/gui/insEdit.cpp:7319 +#: src/gui/insEdit.cpp:7328 src/gui/insEdit.cpp:7336 src/gui/insEdit.cpp:7342 +#: src/gui/insEdit.cpp:7348 src/gui/insEdit.cpp:7354 src/gui/insEdit.cpp:7359 +#: src/gui/insEdit.cpp:7366 src/gui/insEdit.cpp:7373 src/gui/insEdit.cpp:7381 +#: src/gui/insEdit.cpp:7390 src/gui/insEdit.cpp:7398 src/gui/insEdit.cpp:7410 +#: src/gui/insEdit.cpp:7423 src/gui/insEdit.cpp:7434 src/gui/insEdit.cpp:7444 +#: src/gui/insEdit.cpp:7452 src/gui/insEdit.cpp:7462 src/gui/insEdit.cpp:7471 +msgid "Arpeggio" +msgstr "" + +#: src/gui/insEdit.cpp:6925 src/gui/insEdit.cpp:6932 src/gui/insEdit.cpp:6943 +#: src/gui/insEdit.cpp:6972 src/gui/insEdit.cpp:6984 src/gui/insEdit.cpp:6994 +#: src/gui/insEdit.cpp:7007 src/gui/insEdit.cpp:7054 src/gui/insEdit.cpp:7062 +#: src/gui/insEdit.cpp:7069 src/gui/insEdit.cpp:7088 src/gui/insEdit.cpp:7110 +#: src/gui/insEdit.cpp:7133 src/gui/insEdit.cpp:7144 src/gui/insEdit.cpp:7163 +#: src/gui/insEdit.cpp:7183 src/gui/insEdit.cpp:7194 src/gui/insEdit.cpp:7214 +#: src/gui/insEdit.cpp:7234 src/gui/insEdit.cpp:7242 src/gui/insEdit.cpp:7249 +#: src/gui/insEdit.cpp:7254 src/gui/insEdit.cpp:7260 src/gui/insEdit.cpp:7266 +#: src/gui/insEdit.cpp:7273 src/gui/insEdit.cpp:7281 src/gui/insEdit.cpp:7290 +#: src/gui/insEdit.cpp:7299 src/gui/insEdit.cpp:7307 src/gui/insEdit.cpp:7324 +#: src/gui/insEdit.cpp:7332 src/gui/insEdit.cpp:7338 src/gui/insEdit.cpp:7362 +#: src/gui/insEdit.cpp:7369 src/gui/insEdit.cpp:7377 src/gui/insEdit.cpp:7386 +#: src/gui/insEdit.cpp:7394 src/gui/insEdit.cpp:7402 src/gui/insEdit.cpp:7414 +#: src/gui/insEdit.cpp:7429 src/gui/insEdit.cpp:7440 src/gui/insEdit.cpp:7448 +#: src/gui/insEdit.cpp:7457 src/gui/insEdit.cpp:7475 +msgid "Phase Reset" +msgstr "" + +#: src/gui/insEdit.cpp:6939 src/gui/insEdit.cpp:7024 src/gui/insEdit.cpp:7210 +#: src/gui/insEdit.cpp:7247 +msgid "Duty/Noise" +msgstr "" + +#: src/gui/insEdit.cpp:6966 src/gui/insEdit.cpp:7288 +msgid "Surround" +msgstr "" + +#: src/gui/insEdit.cpp:6968 src/gui/insEdit.cpp:6981 src/gui/insEdit.cpp:7026 +#: src/gui/insEdit.cpp:7085 src/gui/insEdit.cpp:7141 src/gui/insEdit.cpp:7159 +#: src/gui/insEdit.cpp:7180 src/gui/insEdit.cpp:7201 src/gui/insEdit.cpp:7225 +#: src/gui/insEdit.cpp:7278 src/gui/insEdit.cpp:7304 src/gui/insEdit.cpp:7321 +#: src/gui/insEdit.cpp:7329 src/gui/insEdit.cpp:7374 src/gui/insEdit.cpp:7383 +#: src/gui/insEdit.cpp:7399 src/gui/insEdit.cpp:7411 src/gui/insEdit.cpp:7426 +#: src/gui/insEdit.cpp:7454 src/gui/insEdit.cpp:7464 +msgid "Panning (left)" +msgstr "" + +#: src/gui/insEdit.cpp:6969 src/gui/insEdit.cpp:6982 src/gui/insEdit.cpp:7027 +#: src/gui/insEdit.cpp:7086 src/gui/insEdit.cpp:7142 src/gui/insEdit.cpp:7160 +#: src/gui/insEdit.cpp:7181 src/gui/insEdit.cpp:7202 src/gui/insEdit.cpp:7226 +#: src/gui/insEdit.cpp:7279 src/gui/insEdit.cpp:7305 src/gui/insEdit.cpp:7322 +#: src/gui/insEdit.cpp:7330 src/gui/insEdit.cpp:7375 src/gui/insEdit.cpp:7384 +#: src/gui/insEdit.cpp:7400 src/gui/insEdit.cpp:7412 src/gui/insEdit.cpp:7427 +#: src/gui/insEdit.cpp:7455 src/gui/insEdit.cpp:7465 +msgid "Panning (right)" +msgstr "" + +#: src/gui/insEdit.cpp:6990 src/gui/insEdit.cpp:7003 src/gui/insEdit.cpp:7107 +#: src/gui/insEdit.cpp:7199 src/gui/insEdit.cpp:7239 src/gui/insEdit.cpp:7424 +msgid "Noise Freq" +msgstr "" + +#: src/gui/insEdit.cpp:6996 src/gui/insEdit.cpp:7010 src/gui/insEdit.cpp:7167 +msgid "AutoEnv Num" +msgstr "" + +#: src/gui/insEdit.cpp:6997 src/gui/insEdit.cpp:7011 src/gui/insEdit.cpp:7168 +msgid "AutoEnv Den" +msgstr "" + +#: src/gui/insEdit.cpp:7012 +msgid "Noise AND Mask" +msgstr "" + +#: src/gui/insEdit.cpp:7013 +msgid "Noise OR Mask" +msgstr "" + +#: src/gui/insEdit.cpp:7034 +msgid "On/Off" +msgstr "" + +#: src/gui/insEdit.cpp:7060 +msgid "Patch" +msgstr "" + +#: src/gui/insEdit.cpp:7076 +msgid "Mod Depth" +msgstr "" + +#: src/gui/insEdit.cpp:7077 +msgid "Mod Speed" +msgstr "" + +#: src/gui/insEdit.cpp:7078 +msgid "Mod Position" +msgstr "" + +#: src/gui/insEdit.cpp:7083 +msgid "Noise Length" +msgstr "" + +#: src/gui/insEdit.cpp:7093 +msgid "Wave Pos" +msgstr "" + +#: src/gui/insEdit.cpp:7096 +msgid "Wave Length" +msgstr "" + +#: src/gui/insEdit.cpp:7115 +msgid "AUDCTL" +msgstr "" + +#: src/gui/insEdit.cpp:7122 src/gui/insEdit.cpp:7343 +msgid "Pulse Width" +msgstr "" + +#: src/gui/insEdit.cpp:7139 +msgid "Duty/Int" +msgstr "" + +#: src/gui/insEdit.cpp:7145 src/gui/insEdit.cpp:7406 +msgid "Load LFSR" +msgstr "" + +#: src/gui/insEdit.cpp:7165 +msgid "Envelope Mode" +msgstr "" + +#: src/gui/insEdit.cpp:7218 +msgid "Phase Reset Timer" +msgstr "" + +#: src/gui/insEdit.cpp:7252 src/gui/insEdit.cpp:7259 +msgid "Freq Divider" +msgstr "" + +#: src/gui/insEdit.cpp:7255 +msgid "Clock Divider" +msgstr "" + +#: src/gui/insEdit.cpp:7264 +msgid "Global Volume" +msgstr "" + +#: src/gui/insEdit.cpp:7286 +msgid "Echo Level" +msgstr "" + +#: src/gui/insEdit.cpp:7291 +msgid "Echo Feedback" +msgstr "" + +#: src/gui/insEdit.cpp:7292 +msgid "Echo Length" +msgstr "" + +#: src/gui/insEdit.cpp:7312 +msgid "Group Ctrl" +msgstr "" + +#: src/gui/insEdit.cpp:7313 +msgid "Group Attack" +msgstr "" + +#: src/gui/insEdit.cpp:7314 +msgid "Group Decay" +msgstr "" + +#: src/gui/insEdit.cpp:7320 +msgid "Noise Type" +msgstr "" + +#: src/gui/insEdit.cpp:7367 +msgid "Square/Noise" +msgstr "" + +#: src/gui/insEdit.cpp:7404 +msgid "Tap A Location" +msgstr "" + +#: src/gui/insEdit.cpp:7405 +msgid "Tap B Location" +msgstr "" + +#: src/gui/insEdit.cpp:7416 +msgid "Portion A Length" +msgstr "" + +#: src/gui/insEdit.cpp:7417 +msgid "Portion B Length" +msgstr "" + +#: src/gui/insEdit.cpp:7418 +msgid "Portion A Offset" +msgstr "" + +#: src/gui/insEdit.cpp:7419 +msgid "Portion B Offset" +msgstr "" + +#: src/gui/insEdit.cpp:7463 +msgid "Parameter" +msgstr "" + +#: src/gui/insEdit.cpp:7467 +msgid "Load Value" +msgstr "" + +#: src/gui/insEdit.cpp:7479 +msgid "Filter Toggle" +msgstr "" + +#: src/gui/insEdit.cpp:7486 +msgid "Wave Mix" +msgstr "" + +#: src/gui/insEdit.cpp:7500 +msgid "Octave offset" +msgstr "" + +#: src/gui/insEdit.cpp:7505 +msgid "go to Macros for other parameters." +msgstr "" + +#: src/gui/insEdit.cpp:7521 +msgid "invalid instrument type! change it first." +msgstr "" + +#: src/gui/insEdit.cpp:7565 +msgid "clear contents" +msgstr "" + +#: src/gui/insEdit.cpp:7571 +msgid "offset..." +msgstr "" + +#: src/gui/insEdit.cpp:7572 src/gui/insEdit.cpp:7605 +msgid "X" +msgstr "" + +#: src/gui/insEdit.cpp:7573 src/gui/insEdit.cpp:7609 +msgid "Y" +msgstr "" + +#: src/gui/insEdit.cpp:7574 +msgid "offset" +msgstr "" + +#: src/gui/insEdit.cpp:7637 +msgid "Min" +msgstr "" + +#: src/gui/insEdit.cpp:7638 +msgid "Max" +msgstr "" diff --git a/po/staging/pt_BR-after.po b/po/staging/pt_BR-after.po new file mode 100644 index 000000000..81ecbf5d2 --- /dev/null +++ b/po/staging/pt_BR-after.po @@ -0,0 +1,20083 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: furnace 0.6.3\n" +"Last-Translator: Diggo\n" +"Language-Team: none\n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: src/engine/sysDef.cpp:428 src/engine/sysDef.cpp:441 +msgid "20xx: Set channel mode (bit 0: square; bit 1: noise; bit 2: envelope)" +msgstr "" +"20xx: Definir modo de canal (bit 0: quadrado; bit 1: ruído; bit 2: envelope)" + +#: src/engine/sysDef.cpp:429 +msgid "21xx: Set noise frequency (0 to 1F)" +msgstr "21xx: Definir frequência de ruído (0 a 1F)" + +#: src/engine/sysDef.cpp:430 src/engine/sysDef.cpp:443 +msgid "22xy: Set envelope mode (x: shape, y: enable for this channel)" +msgstr "" +"22xy: Definir modo de envelope (x: forma, y: habilitar para este canal)" + +#: src/engine/sysDef.cpp:431 src/engine/sysDef.cpp:444 +msgid "23xx: Set envelope period low byte" +msgstr "23xx: Definir byte baixo do período de envelope" + +#: src/engine/sysDef.cpp:432 src/engine/sysDef.cpp:445 +msgid "24xx: Set envelope period high byte" +msgstr "24xx: Definir byte alto do período de envelope" + +#: src/engine/sysDef.cpp:433 src/engine/sysDef.cpp:446 +#: src/engine/sysDef.cpp:1599 +msgid "25xx: Envelope slide up" +msgstr "25xx: Deslizar envelope para cima" + +#: src/engine/sysDef.cpp:434 src/engine/sysDef.cpp:447 +#: src/engine/sysDef.cpp:1600 +msgid "26xx: Envelope slide down" +msgstr "26xx: Deslizar envelope para baixo" + +#: src/engine/sysDef.cpp:435 src/engine/sysDef.cpp:448 +#: src/engine/sysDef.cpp:1601 +msgid "29xy: Set auto-envelope (x: numerator; y: denominator)" +msgstr "29xy: Definir auto-envelope (x: numerador; y: denominador)" + +#: src/engine/sysDef.cpp:436 src/engine/sysDef.cpp:449 +msgid "2Exx: Write to I/O port A" +msgstr "2Exx: Escrever no porto de E/S A" + +#: src/engine/sysDef.cpp:437 src/engine/sysDef.cpp:450 +msgid "2Fxx: Write to I/O port B" +msgstr "2Fxx: Escrever no porto de E/S B" + +#: src/engine/sysDef.cpp:442 +msgid "21xx: Set noise frequency (0 to FF)" +msgstr "21xx: Definir frequência de ruído (0 a FF)" + +#: src/engine/sysDef.cpp:451 +msgid "12xx: Set duty cycle (0 to 8)" +msgstr "12xx: Definir ciclo de trabalho (0 a 8)" + +#: src/engine/sysDef.cpp:453 +msgid "27xx: Set noise AND mask" +msgstr "27xx: Definir máscara AND de ruído" + +#: src/engine/sysDef.cpp:454 +msgid "28xx: Set noise OR mask" +msgstr "28xx: Definir máscara OR de ruído" + +#: src/engine/sysDef.cpp:455 +msgid "" +"2Cxy: Automatic noise frequency (x: mode (0: disable, 1: freq, 2: freq + OR " +"mask); y: offset)" +msgstr "" + +#: src/engine/sysDef.cpp:456 +msgid "2Dxx: NOT TO BE EMPLOYED BY THE COMPOSER" +msgstr "2Dxx: NÃO DEVE SER UTILIZADO PELO COMPOSITOR" + +#: src/engine/sysDef.cpp:460 +msgid "30xx: Toggle hard envelope reset on new notes" +msgstr "30xx: Alternar reinício rígido de envelope em novas notas" + +#: src/engine/sysDef.cpp:465 +msgid "18xx: Toggle extended channel 3 mode" +msgstr "18xx: Alternar modo de canal estendido 3" + +#: src/engine/sysDef.cpp:470 src/engine/sysDef.cpp:766 +#: src/engine/sysDef.cpp:1025 src/engine/sysDef.cpp:1272 +#: src/engine/sysDef.cpp:1593 +msgid "17xx: Toggle PCM mode (LEGACY)" +msgstr "17xx: Alternar modo PCM (LEGADO)" + +#: src/engine/sysDef.cpp:471 src/engine/sysDef.cpp:1653 +#: src/engine/sysDef.cpp:1963 +msgid "DFxx: Set sample playback direction (0: normal; 1: reverse)" +msgstr "DFxx: Definir direção de reprodução da amostra (0: normal; 1: reverso)" + +#: src/engine/sysDef.cpp:476 +msgid "18xx: Toggle drums mode (1: enabled; 0: disabled)" +msgstr "18xx: Alternar modo de bateria (1: habilitado; 0: desabilitado)" + +#: src/engine/sysDef.cpp:480 src/engine/sysDef.cpp:554 +#: src/engine/sysDef.cpp:575 +msgid "11xx: Set feedback (0 to 7)" +msgstr "11xx: Definir feedback (0 a 7)" + +#: src/engine/sysDef.cpp:481 +msgid "12xx: Set level of operator 1 (0 highest, 7F lowest)" +msgstr "12xx: Definir nível do operador 1 (0 mais alto, 7F mais baixo)" + +#: src/engine/sysDef.cpp:482 +msgid "13xx: Set level of operator 2 (0 highest, 7F lowest)" +msgstr "13xx: Definir nível do operador 2 (0 mais alto, 7F mais baixo)" + +#: src/engine/sysDef.cpp:483 +msgid "14xx: Set level of operator 3 (0 highest, 7F lowest)" +msgstr "14xx: Definir nível do operador 3 (0 mais alto, 7F mais baixo)" + +#: src/engine/sysDef.cpp:484 +msgid "15xx: Set level of operator 4 (0 highest, 7F lowest)" +msgstr "15xx: Definir nível do operador 4 (0 mais alto, 7F mais baixo)" + +#: src/engine/sysDef.cpp:485 src/engine/sysDef.cpp:580 +#: src/engine/sysDef.cpp:635 +msgid "16xy: Set operator multiplier (x: operator from 1 to 4; y: multiplier)" +msgstr "" +"16xy: Definir multiplicador do operador (x: operador de 1 a 4; y: " +"multiplicador)" + +#: src/engine/sysDef.cpp:486 +msgid "19xx: Set attack of all operators (0 to 1F)" +msgstr "19xx: Definir ataque de todos os operadores (0 a 1F)" + +#: src/engine/sysDef.cpp:487 +msgid "1Axx: Set attack of operator 1 (0 to 1F)" +msgstr "1Axx: Definir ataque do operador 1 (0 a 1F)" + +#: src/engine/sysDef.cpp:488 +msgid "1Bxx: Set attack of operator 2 (0 to 1F)" +msgstr "1Bxx: Definir ataque do operador 2 (0 a 1F)" + +#: src/engine/sysDef.cpp:489 +msgid "1Cxx: Set attack of operator 3 (0 to 1F)" +msgstr "1Cxx: Definir ataque do operador 3 (0 a 1F)" + +#: src/engine/sysDef.cpp:490 +msgid "1Dxx: Set attack of operator 4 (0 to 1F)" +msgstr "1Dxx: Definir ataque do operador 4 (0 a 1F)" + +#: src/engine/sysDef.cpp:491 src/engine/sysDef.cpp:588 +#: src/engine/sysDef.cpp:656 +msgid "50xy: Set AM (x: operator from 1 to 4 (0 for all ops); y: AM)" +msgstr "50xy: Definir AM (x: operador de 1 a 4 (0 para todos os ops); y: AM)" + +#: src/engine/sysDef.cpp:492 src/engine/sysDef.cpp:589 +#: src/engine/sysDef.cpp:657 +msgid "" +"51xy: Set sustain level (x: operator from 1 to 4 (0 for all ops); y: sustain)" +msgstr "" +"51xy: Definir nível de sustain (x: operador de 1 a 4 (0 para todos os ops); " +"y: sustain)" + +#: src/engine/sysDef.cpp:493 src/engine/sysDef.cpp:590 +#: src/engine/sysDef.cpp:658 +msgid "52xy: Set release (x: operator from 1 to 4 (0 for all ops); y: release)" +msgstr "" +"52xy: Definir release (x: operador de 1 a 4 (0 para todos os ops); y: " +"release)" + +#: src/engine/sysDef.cpp:494 +msgid "" +"53xy: Set detune (x: operator from 1 to 4 (0 for all ops); y: detune where 3 " +"is center)" +msgstr "" +"53xy: Definir detune (x: operador de 1 a 4 (0 para todos os ops); y: detune " +"onde 3 é o centro)" + +#: src/engine/sysDef.cpp:495 src/engine/sysDef.cpp:592 +#: src/engine/sysDef.cpp:660 +msgid "" +"54xy: Set envelope scale (x: operator from 1 to 4 (0 for all ops); y: scale " +"from 0 to 3)" +msgstr "" +"54xy: Definir escala de envelope (x: operador de 1 a 4 (0 para todos os " +"ops); y: escala de 0 a 3)" + +#: src/engine/sysDef.cpp:496 +msgid "56xx: Set decay of all operators (0 to 1F)" +msgstr "56xx: Definir decay de todos os operadores (0 a 1F)" + +#: src/engine/sysDef.cpp:497 +msgid "57xx: Set decay of operator 1 (0 to 1F)" +msgstr "57xx: Definir decay do operador 1 (0 a 1F)" + +#: src/engine/sysDef.cpp:498 +msgid "58xx: Set decay of operator 2 (0 to 1F)" +msgstr "58xx: Definir decay do operador 2 (0 a 1F)" + +#: src/engine/sysDef.cpp:499 +msgid "59xx: Set decay of operator 3 (0 to 1F)" +msgstr "59xx: Definir decay do operador 3 (0 a 1F)" + +#: src/engine/sysDef.cpp:500 +msgid "5Axx: Set decay of operator 4 (0 to 1F)" +msgstr "5Axx: Definir decay do operador 4 (0 a 1F)" + +#: src/engine/sysDef.cpp:501 +msgid "5Bxx: Set decay 2 of all operators (0 to 1F)" +msgstr "5Bxx: Definir decay 2 de todos os operadores (0 a 1F)" + +#: src/engine/sysDef.cpp:502 +msgid "5Cxx: Set decay 2 of operator 1 (0 to 1F)" +msgstr "5Cxx: Definir decay 2 do operador 1 (0 a 1F)" + +#: src/engine/sysDef.cpp:503 +msgid "5Dxx: Set decay 2 of operator 2 (0 to 1F)" +msgstr "5Dxx: Definir decay 2 do operador 2 (0 a 1F)" + +#: src/engine/sysDef.cpp:504 +msgid "5Exx: Set decay 2 of operator 3 (0 to 1F)" +msgstr "5Exx: Definir decay 2 do operador 3 (0 a 1F)" + +#: src/engine/sysDef.cpp:505 +msgid "5Fxx: Set decay 2 of operator 4 (0 to 1F)" +msgstr "5Fxx: Definir decay 2 do operador 4 (0 a 1F)" + +#: src/engine/sysDef.cpp:510 +msgid "10xx: Set noise frequency (xx: value; 0 disables noise)" +msgstr "10xx: Definir frequência de ruído (xx: valor; 0 desabilita o ruído)" + +#: src/engine/sysDef.cpp:511 +msgid "17xx: Set LFO speed" +msgstr "17xx: Definir velocidade do LFO" + +#: src/engine/sysDef.cpp:512 +msgid "18xx: Set LFO waveform (0 saw, 1 square, 2 triangle, 3 noise)" +msgstr "" +"18xx: Definir forma de onda do LFO (0 serra, 1 quadrada, 2 triangular, 3 " +"ruído)" + +#: src/engine/sysDef.cpp:513 +msgid "1Exx: Set AM depth (0 to 7F)" +msgstr "1Exx: Definir profundidade de AM (0 a 7F)" + +#: src/engine/sysDef.cpp:514 +msgid "1Fxx: Set PM depth (0 to 7F)" +msgstr "1Fxx: Definir profundidade de PM (0 a 7F)" + +#: src/engine/sysDef.cpp:515 +msgid "" +"55xy: Set detune 2 (x: operator from 1 to 4 (0 for all ops); y: detune from " +"0 to 3)" +msgstr "" +"55xy: Definir detune 2 (x: operador de 1 a 4 (0 para todos os ops); y: " +"detune de 0 a 3)" + +#: src/engine/sysDef.cpp:520 +msgid "24xx: Set LFO 2 speed" +msgstr "24xx: Definir velocidade do LFO 2" + +#: src/engine/sysDef.cpp:521 +msgid "25xx: Set LFO 2 waveform (0 saw, 1 square, 2 triangle, 3 noise)" +msgstr "" +"25xx: Definir forma de onda do LFO 2 (0 serra, 1 quadrada, 2 triangular, 3 " +"ruído)" + +#: src/engine/sysDef.cpp:522 +msgid "26xx: Set AM 2 depth (0 to 7F)" +msgstr "26xx: Definir profundidade de AM 2 (0 a 7F)" + +#: src/engine/sysDef.cpp:523 +msgid "27xx: Set PM 2 depth (0 to 7F)" +msgstr "27xx: Definir profundidade de PM 2 (0 a 7F)" + +#: src/engine/sysDef.cpp:524 +msgid "" +"28xy: Set reverb (x: operator from 1 to 4 (0 for all ops); y: reverb from 0 " +"to 7)" +msgstr "" +"28xy: Definir reverb (x: operador de 1 a 4 (0 para todos os ops); y: reverb " +"de 0 a 7)" + +#: src/engine/sysDef.cpp:525 src/engine/sysDef.cpp:650 +msgid "" +"2Axy: Set waveform (x: operator from 1 to 4 (0 for all ops); y: waveform " +"from 0 to 7)" +msgstr "" +"2Axy: Definir forma de onda (x: operador de 1 a 4 (0 para todos os ops); y: " +"forma de onda de 0 a 7)" + +#: src/engine/sysDef.cpp:526 +msgid "" +"2Bxy: Set envelope generator shift (x: operator from 1 to 4 (0 for all ops); " +"y: shift from 0 to 3)" +msgstr "" +"2Bxy: Definir deslocamento do gerador de envelope (x: operador de 1 a 4 (0 " +"para todos os ops); y: deslocamento de 0 a 3)" + +#: src/engine/sysDef.cpp:527 +msgid "" +"2Cxy: Set fine multiplier (x: operator from 1 to 4 (0 for all ops); y: fine)" +msgstr "" +"2Cxy: Definir multiplicador fino (x: operador de 1 a 4 (0 para todos os " +"ops); y: fino)" + +#: src/engine/sysDef.cpp:530 +msgid "" +"3xyy: Set fixed frequency of operator 1 (x: octave from 0 to 7; y: frequency)" +msgstr "" +"3xyy: Definir frequência fixa do operador 1 (x: oitava de 0 a 7; y: " +"frequência)" + +#: src/engine/sysDef.cpp:531 +msgid "" +"3xyy: Set fixed frequency of operator 2 (x: octave from 8 to F; y: frequency)" +msgstr "" +"3xyy: Definir frequência fixa do operador 2 (x: oitava de 8 a F; y: " +"frequência)" + +#: src/engine/sysDef.cpp:532 +msgid "" +"4xyy: Set fixed frequency of operator 3 (x: octave from 0 to 7; y: frequency)" +msgstr "" +"4xyy: Definir frequência fixa do operador 3 (x: oitava de 0 a 7; y: " +"frequência)" + +#: src/engine/sysDef.cpp:533 +msgid "" +"4xyy: Set fixed frequency of operator 4 (x: octave from 8 to F; y: frequency)" +msgstr "" +"4xyy: Definir frequência fixa do operador 4 (x: oitava de 8 a F; y: " +"frequência)" + +#: src/engine/sysDef.cpp:540 +msgid "10xy: Setup LFO (x: enable; y: speed)" +msgstr "10xy: Configurar LFO (x: habilitar; y: velocidade)" + +#: src/engine/sysDef.cpp:541 +msgid "" +"55xy: Set SSG envelope (x: operator from 1 to 4 (0 for all ops); y: 0-7 on, " +"8 off)" +msgstr "" +"55xy: Definir envelope SSG (x: operador de 1 a 4 (0 para todos os ops); y: " +"0-7 ligado, 8 desligado)" + +#: src/engine/sysDef.cpp:549 +msgid "1Fxx: Set ADPCM-A global volume (0 to 3F)" +msgstr "1Fxx: Definir volume global ADPCM-A (0 a 3F)" + +#: src/engine/sysDef.cpp:553 +msgid "10xx: Set patch (0 to F)" +msgstr "10xx: Definir patch (0 a F)" + +#: src/engine/sysDef.cpp:555 src/engine/sysDef.cpp:576 +#: src/engine/sysDef.cpp:631 +msgid "12xx: Set level of operator 1 (0 highest, 3F lowest)" +msgstr "12xx: Definir nível do operador 1 (0 mais alto, 3F mais baixo)" + +#: src/engine/sysDef.cpp:556 src/engine/sysDef.cpp:577 +#: src/engine/sysDef.cpp:632 +msgid "13xx: Set level of operator 2 (0 highest, 3F lowest)" +msgstr "13xx: Definir nível do operador 2 (0 mais alto, 3F mais baixo)" + +#: src/engine/sysDef.cpp:557 +msgid "16xy: Set operator multiplier (x: operator from 1 to 2; y: multiplier)" +msgstr "" +"16xy: Definir multiplicador do operador (x: operador de 1 a 2; y: " +"multiplicador)" + +#: src/engine/sysDef.cpp:558 src/engine/sysDef.cpp:582 +#: src/engine/sysDef.cpp:637 +msgid "19xx: Set attack of all operators (0 to F)" +msgstr "19xx: Definir ataque de todos os operadores (0 a F)" + +#: src/engine/sysDef.cpp:559 src/engine/sysDef.cpp:583 +#: src/engine/sysDef.cpp:638 +msgid "1Axx: Set attack of operator 1 (0 to F)" +msgstr "1Axx: Definir ataque do operador 1 (0 a F)" + +#: src/engine/sysDef.cpp:560 src/engine/sysDef.cpp:584 +#: src/engine/sysDef.cpp:639 +msgid "1Bxx: Set attack of operator 2 (0 to F)" +msgstr "1Bxx: Definir ataque do operador 2 (0 a F)" + +#: src/engine/sysDef.cpp:561 +msgid "50xy: Set AM (x: operator from 1 to 2 (0 for all ops); y: AM)" +msgstr "50xy: Definir AM (x: operador de 1 a 2 (0 para todos os ops); y: AM)" + +#: src/engine/sysDef.cpp:562 +msgid "" +"51xy: Set sustain level (x: operator from 1 to 2 (0 for all ops); y: sustain)" +msgstr "" +"51xy: Definir nível de sustain (x: operador de 1 a 2 (0 para todos os ops); " +"y: sustain)" + +#: src/engine/sysDef.cpp:563 +msgid "52xy: Set release (x: operator from 1 to 2 (0 for all ops); y: release)" +msgstr "" +"52xy: Definir release (x: operador de 1 a 2 (0 para todos os ops); y: " +"release)" + +#: src/engine/sysDef.cpp:564 +msgid "53xy: Set vibrato (x: operator from 1 to 2 (0 for all ops); y: enabled)" +msgstr "" +"53xy: Definir vibrato (x: operador de 1 a 2 (0 para todos os ops); y: " +"ativado)" + +#: src/engine/sysDef.cpp:565 +msgid "" +"54xy: Set envelope scale (x: operator from 1 to 2 (0 for all ops); y: scale " +"from 0 to 3)" +msgstr "" +"54xy: Definir escala de envelope (x: operador de 1 a 2 (0 para todos os " +"ops); y: escala de 0 a 3)" + +#: src/engine/sysDef.cpp:566 +msgid "" +"55xy: Set envelope sustain (x: operator from 1 to 2 (0 for all ops); y: " +"enabled)" +msgstr "" +"55xy: Definir sustain de envelope (x: operador de 1 a 2 (0 para todos os " +"ops); y: ativado)" + +#: src/engine/sysDef.cpp:567 src/engine/sysDef.cpp:594 +#: src/engine/sysDef.cpp:662 +msgid "56xx: Set decay of all operators (0 to F)" +msgstr "56xx: Definir decay de todos os operadores (0 a F)" + +#: src/engine/sysDef.cpp:568 src/engine/sysDef.cpp:595 +#: src/engine/sysDef.cpp:663 +msgid "57xx: Set decay of operator 1 (0 to F)" +msgstr "57xx: Definir decay do operador 1 (0 a F)" + +#: src/engine/sysDef.cpp:569 src/engine/sysDef.cpp:596 +#: src/engine/sysDef.cpp:664 +msgid "58xx: Set decay of operator 2 (0 to F)" +msgstr "58xx: Definir decay do operador 2 (0 a F)" + +#: src/engine/sysDef.cpp:570 +msgid "" +"5Bxy: Set whether key will scale envelope (x: operator from 1 to 2 (0 for " +"all ops); y: enabled)" +msgstr "" +"5Bxy: Definir se a tecla irá escalar o envelope (x: operador de 1 a 2 (0 " +"para todos os ops); y: ativado)" + +#: src/engine/sysDef.cpp:574 +msgid "10xx: Set global AM depth (0: 1dB, 1: 4.8dB)" +msgstr "10xx: Definir profundidade global de AM (0: 1dB, 1: 4.8dB)" + +#: src/engine/sysDef.cpp:578 src/engine/sysDef.cpp:633 +msgid "14xx: Set level of operator 3 (0 highest, 3F lowest)" +msgstr "14xx: Definir nível do operador 3 (0 mais alto, 3F mais baixo)" + +#: src/engine/sysDef.cpp:579 src/engine/sysDef.cpp:634 +msgid "15xx: Set level of operator 4 (0 highest, 3F lowest)" +msgstr "15xx: Definir nível do operador 4 (0 mais alto, 3F mais baixo)" + +#: src/engine/sysDef.cpp:581 +msgid "17xx: Set global vibrato depth (0: normal, 1: double)" +msgstr "17xx: Definir profundidade global de vibrato (0: normal, 1: dobrado)" + +#: src/engine/sysDef.cpp:585 src/engine/sysDef.cpp:640 +msgid "1Cxx: Set attack of operator 3 (0 to F)" +msgstr "1Cxx: Definir ataque do operador 3 (0 a F)" + +#: src/engine/sysDef.cpp:586 src/engine/sysDef.cpp:641 +msgid "1Dxx: Set attack of operator 4 (0 to F)" +msgstr "1Dxx: Definir ataque do operador 4 (0 a F)" + +#: src/engine/sysDef.cpp:587 +msgid "" +"2Axy: Set waveform (x: operator from 1 to 4 (0 for all ops); y: waveform " +"from 0 to 3 in OPL2 and 0 to 7 in OPL3)" +msgstr "" +"2Axy: Definir forma de onda (x: operador de 1 a 4 (0 para todos os ops); y: " +"forma de onda de 0 a 3 no OPL2 e de 0 a 7 no OPL3)" + +#: src/engine/sysDef.cpp:591 src/engine/sysDef.cpp:659 +msgid "53xy: Set vibrato (x: operator from 1 to 4 (0 for all ops); y: enabled)" +msgstr "" +"53xy: Definir vibrato (x: operador de 1 a 4 (0 para todos os ops); y: " +"ativado)" + +#: src/engine/sysDef.cpp:593 src/engine/sysDef.cpp:661 +msgid "" +"55xy: Set envelope sustain (x: operator from 1 to 4 (0 for all ops); y: " +"enabled)" +msgstr "" +"55xy: Definir sustain de envelope (x: operador de 1 a 4 (0 para todos os " +"ops); y: ativado)" + +#: src/engine/sysDef.cpp:597 src/engine/sysDef.cpp:665 +msgid "59xx: Set decay of operator 3 (0 to F)" +msgstr "59xx: Definir decay do operador 3 (0 a F)" + +#: src/engine/sysDef.cpp:598 src/engine/sysDef.cpp:666 +msgid "5Axx: Set decay of operator 4 (0 to F)" +msgstr "5Axx: Definir decay do operador 4 (0 a F)" + +#: src/engine/sysDef.cpp:599 src/engine/sysDef.cpp:667 +msgid "" +"5Bxy: Set whether key will scale envelope (x: operator from 1 to 4 (0 for " +"all ops); y: enabled)" +msgstr "" +"5Bxy: Definir se a tecla irá escalar o envelope (x: operador de 1 a 4 (0 " +"para todos os ops); y: ativado)" + +#: src/engine/sysDef.cpp:603 src/engine/sysDef.cpp:680 +msgid "" +"10xx: Set waveform (bit 0: triangle; bit 1: saw; bit 2: pulse; bit 3: noise)" +msgstr "" +"10xx: Definir forma de onda (bit 0: triângulo; bit 1: dente de serra; bit 2: " +"pulso; bit 3: ruído)" + +#: src/engine/sysDef.cpp:604 +msgid "11xx: Set coarse cutoff (not recommended; use 4xxx instead)" +msgstr "11xx: Definir corte de agudos (não recomendado; use 4xxx em vez disso)" + +#: src/engine/sysDef.cpp:605 +msgid "12xx: Set coarse pulse width (not recommended; use 3xxx instead)" +msgstr "" +"12xx: Definir largura de pulso (não recomendado; use 3xxx em vez disso)" + +#: src/engine/sysDef.cpp:606 +msgid "13xx: Set resonance (0 to F)" +msgstr "13xx: Definir ressonância (0 a F)" + +#: src/engine/sysDef.cpp:607 +msgid "" +"14xx: Set filter mode (bit 0: low pass; bit 1: band pass; bit 2: high pass)" +msgstr "" +"14xx: Definir modo de filtro (bit 0: low pass; bit 1: band pass; bit 2: high " +"pass)" + +#: src/engine/sysDef.cpp:608 +msgid "15xx: Set envelope reset time" +msgstr "15xx: Definir tempo de reset do envelope" + +#: src/engine/sysDef.cpp:609 +msgid "1Axx: Disable envelope reset for this channel (1 disables; 0 enables)" +msgstr "" +"1Axx: Desativar reset do envelope para este canal (1 desabilita; 0 habilita)" + +#: src/engine/sysDef.cpp:610 +msgid "1Bxy: Reset cutoff (x: on new note; y: now)" +msgstr "1Bxy: Resetar corte (x: na nova nota; y: agora)" + +#: src/engine/sysDef.cpp:611 +msgid "1Cxy: Reset pulse width (x: on new note; y: now)" +msgstr "1Cxy: Resetar largura de pulso (x: na nova nota; y: agora)" + +#: src/engine/sysDef.cpp:612 +msgid "1Exy: Change other parameters (LEGACY)" +msgstr "1Exy: Mudar outros parâmetros (LEGACY)" + +#: src/engine/sysDef.cpp:613 +msgid "20xy: Set attack/decay (x: attack; y: decay)" +msgstr "20xy: Definir ataque/decaimento (x: ataque; y: decaimento)" + +#: src/engine/sysDef.cpp:614 +msgid "21xy: Set sustain/release (x: sustain; y: release)" +msgstr "21xy: Definir sustentação/liberação (x: sustentação; y: liberação)" + +#: src/engine/sysDef.cpp:616 src/engine/sysDef.cpp:688 +msgid "3xxx: Set pulse width (0 to FFF)" +msgstr "3xxx: Definir largura de pulso (0 a FFF)" + +#: src/engine/sysDef.cpp:617 +msgid "4xxx: Set cutoff (0 to 7FF)" +msgstr "4xxx: Definir corte (0 a 7FF)" + +#: src/engine/sysDef.cpp:622 src/engine/sysDef.cpp:745 +#: src/engine/sysDef.cpp:762 src/engine/sysDef.cpp:1000 +#: src/engine/sysDef.cpp:1050 src/engine/sysDef.cpp:1268 +#: src/engine/sysDef.cpp:1320 src/engine/sysDef.cpp:1590 +#: src/engine/sysDef.cpp:1788 src/engine/sysDef.cpp:1792 +#: src/engine/sysDef.cpp:1893 src/engine/sysDef.cpp:2063 +#: src/engine/sysDef.cpp:2077 +msgid "10xx: Set waveform" +msgstr "10xx: Definir onda" + +#: src/engine/sysDef.cpp:626 +msgid "20xx: Set PCM frequency" +msgstr "20xx: Definir frequência do PCM" + +#: src/engine/sysDef.cpp:630 +msgid "" +"10xy: Set AM depth (x: operator from 1 to 4 (0 for all ops); y: depth (0: " +"1dB, 1: 4.8dB))" +msgstr "" +"10xy: Definir AM depth (x: operator do 1 para o 4 (0 para todos ops); y: " +"depth (0: 1dB, 1: 4.8dB))" + +#: src/engine/sysDef.cpp:636 +msgid "" +"17xy: Set vibrato depth (x: operator from 1 to 4 (0 for all ops); y: depth " +"(0: normal, 1: double))" +msgstr "" +"17xy: Definir vibrato depth (x: operator do 1 para o 4 (0 para todos ops); " +"y: depth (0: normal, 1: dobrado))" + +#: src/engine/sysDef.cpp:642 +msgid "20xy: Set panning of operator 1 (x: left; y: right)" +msgstr "20xy: Definir panorama do operador 1 (x: esquerda; y: direita)" + +#: src/engine/sysDef.cpp:643 +msgid "21xy: Set panning of operator 2 (x: left; y: right)" +msgstr "21xy: Definir panorama do operador 2 (x: esquerda; y: direita)" + +#: src/engine/sysDef.cpp:644 +msgid "22xy: Set panning of operator 3 (x: left; y: right)" +msgstr "22xy: Definir panorama do operador 3 (x: esquerda; y: direita)" + +#: src/engine/sysDef.cpp:645 +msgid "23xy: Set panning of operator 4 (x: left; y: right)" +msgstr "23xy: Definir panorama do operador 4 (x: esquerda; y: direita)" + +#: src/engine/sysDef.cpp:646 +msgid "" +"24xy: Set output level register (x: operator from 1 to 4 (0 for all ops); y: " +"level from 0 to 7)" +msgstr "" +"24xy: Definir registro de nível de saída (x: operador de 1 a 4 (0 para todas " +"as operações); y: nível de 0 a 7)" + +#: src/engine/sysDef.cpp:647 +msgid "" +"25xy: Set modulation input level (x: operator from 1 to 4 (0 for all ops); " +"y: level from 0 to 7)" +msgstr "" +"25xy: Definir nível de entrada de modulação (x: operador de 1 a 4 (0 para " +"todas as operações); y: nível de 0 a 7)" + +#: src/engine/sysDef.cpp:648 +msgid "" +"26xy: Set envelope delay (x: operator from 1 to 4 (0 for all ops); y: delay " +"from 0 to 7)" +msgstr "" +"26xy: Definir atraso de envelope (x: operador de 1 a 4 (0 para todas as " +"operações); y: atraso de 0 a 7)" + +#: src/engine/sysDef.cpp:649 +msgid "27xx: Set noise mode for operator 4 (x: mode from 0 to 3)" +msgstr "27xx: Definir modo de ruído para o operador 4 (x: modo de 0 a 3)" + +#: src/engine/sysDef.cpp:651 +msgid "" +"2Fxy: Set fixed frequency block (x: operator from 1 to 4; y: octave from 0 " +"to 7)" +msgstr "" +"2Fxy: Definir bloco de frequência fixa (x: operador de 1 a 4; y: oitava de 0 " +"a 7)" + +#: src/engine/sysDef.cpp:652 +msgid "40xx: Set detune of operator 1 (80: center)" +msgstr "40xx: Definir desafinação do operador 1 (80: centro)" + +#: src/engine/sysDef.cpp:653 +msgid "41xx: Set detune of operator 2 (80: center)" +msgstr "41xx: Definir desafinação do operador 2 (80: centro)" + +#: src/engine/sysDef.cpp:654 +msgid "42xx: Set detune of operator 3 (80: center)" +msgstr "42xx: Definir desafinação do operador 3 (80: centro)" + +#: src/engine/sysDef.cpp:655 +msgid "43xx: Set detune of operator 4 (80: center)" +msgstr "43xx: Definir desafinação do operador 4 (80: centro)" + +#: src/engine/sysDef.cpp:670 +msgid "" +"3xyy: Set fixed frequency F-num of operator 1 (x: high 2 bits from 0 to 3; " +"y: low 8 bits of F-num)" +msgstr "" +"3xyy: Definir F-num fixo de frequência do operador 1 (x: bits altos 2 de 0 a " +"3; y: bits baixos 8 do F-num)" + +#: src/engine/sysDef.cpp:671 +msgid "" +"3xyy: Set fixed frequency F-num of operator 2 (x: high 2 bits from 4 to 7; " +"y: low 8 bits of F-num)" +msgstr "" +"3xyy: Definir F-num fixo de frequência do operador 2 (x: bits altos 2 de 4 a " +"7; y: bits baixos 8 do F-num)" + +#: src/engine/sysDef.cpp:672 +msgid "" +"3xyy: Set fixed frequency F-num of operator 3 (x: high 2 bits from 8 to B; " +"y: low 8 bits of F-num)" +msgstr "" +"3xyy: Definir F-num fixo de frequência do operador 3 (x: bits altos 2 de 8 a " +"B; y: bits baixos 8 do F-num)" + +#: src/engine/sysDef.cpp:673 +msgid "" +"3xyy: Set fixed frequency F-num of operator 4 (x: high 2 bits from C to F; " +"y: low 8 bits of F-num)" +msgstr "" +"3xyy: Definir F-num fixo de frequência do operador 4 (x: bits altos 2 de C a " +"F; y: bits baixos 8 do F-num)" + +#: src/engine/sysDef.cpp:681 +msgid "11xx: Set resonance (0 to FF)" +msgstr "11xx: Definir ressonância (0 a FF)" + +#: src/engine/sysDef.cpp:682 +msgid "" +"12xx: Set filter mode (bit 0: low pass; bit 1: band pass; bit 2: high pass)" +msgstr "" +"12xx: Definir modo de filtro (bit 0: passa-baixa; bit 1: passa-banda; bit 2: " +"passa-alta)" + +#: src/engine/sysDef.cpp:683 +msgid "13xx: Disable envelope reset for this channel (1 disables; 0 enables)" +msgstr "" +"13xx: Desativar reset de envelope para este canal (1 desativa; 0 habilita)" + +#: src/engine/sysDef.cpp:684 +msgid "14xy: Reset cutoff (x: on new note; y: now)" +msgstr "14xy: Resetar corte (x: na nova nota; y: agora)" + +#: src/engine/sysDef.cpp:685 +msgid "15xy: Reset pulse width (x: on new note; y: now)" +msgstr "15xy: Resetar largura de pulso (x: na nova nota; y: agora)" + +#: src/engine/sysDef.cpp:686 +msgid "16xy: Change other parameters" +msgstr "16xy: Mudar outros parâmetros" + +#: src/engine/sysDef.cpp:689 src/engine/sysDef.cpp:1733 +msgid "4xxx: Set cutoff (0 to FFF)" +msgstr "4xxx: Definir corte (0 a FFF)" + +#: src/engine/sysDef.cpp:697 +msgid "Yamaha YMU759 (MA-2)" +msgstr "Yamaha YMU759 (MA-2)" + +#: src/engine/sysDef.cpp:698 +msgid "" +"a chip which found its way inside mobile phones in the 2000's.\n" +"as proprietary as it is, it passed away after losing to MP3 in the mobile " +"hardware battle." +msgstr "" +"um chip que encontrou seu caminho dentro de telefones celulares nos anos " +"2000.\n" +"tão proprietário quanto é, ele faleceu após perder para o MP3 na batalha de " +"hardware móvel." + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:807 src/engine/sysDef.cpp:819 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:915 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1237 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1314 src/engine/sysDef.cpp:1356 +#: src/engine/sysDef.cpp:1396 src/engine/sysDef.cpp:1499 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1572 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1608 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1799 src/engine/sysDef.cpp:1810 +#: src/engine/sysDef.cpp:1821 src/engine/sysDef.cpp:1832 +#: src/engine/sysDef.cpp:1900 src/engine/sysDef.cpp:1910 +#: src/engine/sysDef.cpp:1920 src/engine/sysDef.cpp:1944 +#: src/engine/sysDef.cpp:1957 src/engine/sysDef.cpp:1970 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2037 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2122 +#: src/engine/sysDef.cpp:2138 src/engine/sysDef.cpp:2150 +msgid "Channel 1" +msgstr "Canal 1" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:807 src/engine/sysDef.cpp:819 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:915 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1237 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1314 src/engine/sysDef.cpp:1356 +#: src/engine/sysDef.cpp:1396 src/engine/sysDef.cpp:1499 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1572 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1608 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1799 src/engine/sysDef.cpp:1810 +#: src/engine/sysDef.cpp:1821 src/engine/sysDef.cpp:1832 +#: src/engine/sysDef.cpp:1900 src/engine/sysDef.cpp:1910 +#: src/engine/sysDef.cpp:1920 src/engine/sysDef.cpp:1944 +#: src/engine/sysDef.cpp:1957 src/engine/sysDef.cpp:1970 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2037 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2122 +#: src/engine/sysDef.cpp:2138 src/engine/sysDef.cpp:2150 +msgid "Channel 2" +msgstr "Canal 2" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:807 src/engine/sysDef.cpp:819 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1237 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1314 +#: src/engine/sysDef.cpp:1356 src/engine/sysDef.cpp:1396 +#: src/engine/sysDef.cpp:1499 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1572 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1799 src/engine/sysDef.cpp:1810 +#: src/engine/sysDef.cpp:1821 src/engine/sysDef.cpp:1832 +#: src/engine/sysDef.cpp:1910 src/engine/sysDef.cpp:1944 +#: src/engine/sysDef.cpp:1957 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2037 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +#: src/engine/sysDef.cpp:2122 src/engine/sysDef.cpp:2138 +#: src/engine/sysDef.cpp:2150 +msgid "Channel 3" +msgstr "Canal 3" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1237 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1314 +#: src/engine/sysDef.cpp:1356 src/engine/sysDef.cpp:1396 +#: src/engine/sysDef.cpp:1499 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1572 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1910 +#: src/engine/sysDef.cpp:1944 src/engine/sysDef.cpp:1957 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +#: src/engine/sysDef.cpp:2122 src/engine/sysDef.cpp:2150 +msgid "Channel 4" +msgstr "Canal 4" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1314 +#: src/engine/sysDef.cpp:1356 src/engine/sysDef.cpp:1396 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1572 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1705 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 5" +msgstr "Canal 5" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1356 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 6" +msgstr "Canal 6" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 7" +msgstr "Canal 7" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 8" +msgstr "Canal 8" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 9" +msgstr "Canal 9" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 10" +msgstr "Canal 10" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 11" +msgstr "Canal 11" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 12" +msgstr "Canal 12" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 13" +msgstr "Canal 13" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 14" +msgstr "Canal 14" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 15" +msgstr "Canal 15" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 16" +msgstr "Canal 16" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:700 +#: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1767 src/engine/sysDef.cpp:1888 +#: src/engine/sysDef.cpp:1944 src/engine/sysDef.cpp:1945 +#: src/gui/settings.cpp:4041 +msgid "PCM" +msgstr "PCM" + +#: src/engine/sysDef.cpp:706 +msgid "Sega Genesis/Mega Drive" +msgstr "Sega Genesis/Mega Drive" + +#: src/engine/sysDef.cpp:712 +msgid "Sega Genesis Extended Channel 3" +msgstr "Sega Genesis Canal 3 Extendido" + +#: src/engine/sysDef.cpp:718 src/gui/sysConf.cpp:158 +msgid "TI SN76489" +msgstr "TI SN76489" + +#: src/engine/sysDef.cpp:719 +msgid "" +"a square/noise sound chip found on the Sega Master System, ColecoVision, " +"Tandy, TI's own 99/4A and a few other places." +msgstr "" +"um chip de som de onda quadrada e ruído encontrado no Sega Master System, " +"ColecoVision, PCs Tandy, o próprio 99/4A da TI e alguns outros lugares." + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 +msgid "Square 1" +msgstr "Quadrada 1" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 +msgid "Square 2" +msgstr "Quadrada 2" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 +msgid "Square 3" +msgstr "Quadrada 3" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:739 +#: src/engine/sysDef.cpp:773 src/engine/sysDef.cpp:955 +#: src/engine/sysDef.cpp:1314 src/engine/sysDef.cpp:1874 +#: src/engine/sysDef.cpp:1920 src/engine/sysDef.cpp:2037 +#: src/engine/sysDef.cpp:2100 src/gui/settings.cpp:4040 +#: src/gui/insEdit.cpp:6978 src/gui/insEdit.cpp:7129 src/gui/insEdit.cpp:7223 +#: src/gui/insEdit.cpp:7315 +msgid "Noise" +msgstr "Ruído" + +#: src/engine/sysDef.cpp:726 +msgid "20xy: Set noise mode (x: preset freq/ch3 freq; y: thin pulse/noise)" +msgstr "" +"20xy: Definir modo de ruído (x: freq. predefinidas/freq. canal 3; y: pulso " +"fino/ruído)" + +#: src/engine/sysDef.cpp:731 +msgid "Sega Master System + FM Expansion" +msgstr "Sega Master System + FM Expansion" + +#: src/engine/sysDef.cpp:737 src/gui/settings.cpp:3972 +msgid "Game Boy" +msgstr "Game Boy" + +#: src/engine/sysDef.cpp:738 +msgid "the most popular portable game console of the era." +msgstr "o console de jogos portátil mais popular da época" + +#: src/engine/sysDef.cpp:739 src/engine/sysDef.cpp:773 +#: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:2100 +msgid "Pulse 1" +msgstr "Pulse 1" + +#: src/engine/sysDef.cpp:739 src/engine/sysDef.cpp:773 +#: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:2100 +msgid "Pulse 2" +msgstr "Pulse 2" + +#: src/engine/sysDef.cpp:739 src/gui/settings.cpp:3877 +#: src/gui/guiConst.cpp:1395 src/gui/insEdit.cpp:6652 +msgid "Wavetable" +msgstr "Wavetable" + +#: src/engine/sysDef.cpp:746 +msgid "11xx: Set noise length (0: long; 1: short)" +msgstr "11xx: Definir comprimento do ruído (0: longo; 1: curto)" + +#: src/engine/sysDef.cpp:747 +msgid "12xx: Set duty cycle (0 to 3)" +msgstr "12xx: Definir ciclo de trabalho (0 a 3)" + +#: src/engine/sysDef.cpp:748 +msgid "13xy: Setup sweep (x: time; y: shift)" +msgstr "13xy: Configurar varredura (x: tempo; y: deslocamento)" + +#: src/engine/sysDef.cpp:749 +msgid "14xx: Set sweep direction (0: up; 1: down)" +msgstr "14xx: Definir direção de varredura (0: para cima; 1: para baixo)" + +#: src/engine/sysDef.cpp:754 +msgid "PC Engine/TurboGrafx-16" +msgstr "PC Engine/TurboGrafx-16" + +#: src/engine/sysDef.cpp:755 +msgid "an '80s game console with a wavetable sound chip, popular in Japan." +msgstr "" +"um console de jogos dos anos 80 com chip de som wavetable, popular no Japão." + +#: src/engine/sysDef.cpp:763 src/engine/sysDef.cpp:1001 +#: src/engine/sysDef.cpp:1793 +msgid "11xx: Toggle noise mode" +msgstr "11xx: Alternar modo de rúido" + +#: src/engine/sysDef.cpp:764 +msgid "12xx: Setup LFO (0: disabled; 1: 1x depth; 2: 16x depth; 3: 256x depth)" +msgstr "" +"12xx: Configurar LFO (0: desabilitado; 1: profundidade 1x; 2: profundidade " +"16x; 3: profundidade 256x)" + +#: src/engine/sysDef.cpp:765 +msgid "13xx: Set LFO speed" +msgstr "13xx: Definir velocidade do LFO" + +#: src/engine/sysDef.cpp:771 +msgid "NES (Ricoh 2A03)" +msgstr "" + +#: src/engine/sysDef.cpp:772 +msgid "" +"also known as Famicom in Japan, it's the most well-known game console of the " +"'80s." +msgstr "" +"também conhecido como Famicom no Japão, e também conhecido como Phantom " +"System, Top Game, Turbo Game, Dynavision, Bit System e Polystation no " +"Brasil, é o console de jogos mais conhecido dos anos 80." + +#: src/engine/sysDef.cpp:773 src/gui/waveEdit.cpp:31 src/gui/waveEdit.cpp:217 +#: src/gui/insEdit.cpp:200 src/gui/insEdit.cpp:324 src/gui/insEdit.cpp:658 +msgid "Triangle" +msgstr "Triângulo" + +#: src/engine/sysDef.cpp:773 src/engine/sysDef.cpp:2100 +#: src/gui/insEdit.cpp:2629 +msgid "DPCM" +msgstr "DPCM" + +#: src/engine/sysDef.cpp:779 src/engine/sysDef.cpp:2106 +msgid "11xx: Write to delta modulation counter (0 to 7F)" +msgstr "11xx: Escrever no contador de modulação delta (DAC) (0 a 7F)" + +#: src/engine/sysDef.cpp:780 src/engine/sysDef.cpp:1068 +msgid "12xx: Set duty cycle/noise mode (pulse: 0 to 3; noise: 0 or 1)" +msgstr "" +"12xx: Definir ciclo de trabalho/modo de ruído (pulso: 0 a 3; ruído: 0 ou 1)" + +#: src/engine/sysDef.cpp:781 src/engine/sysDef.cpp:2108 +msgid "13xy: Sweep up (x: time; y: shift)" +msgstr "13xy: Realizar sweep de tom para cima (x: tempo; y: deslocamento)" + +#: src/engine/sysDef.cpp:782 src/engine/sysDef.cpp:2109 +msgid "14xy: Sweep down (x: time; y: shift)" +msgstr "14xy: Realizar sweep de tom para baixo (x: tempo; y: deslocamento)" + +#: src/engine/sysDef.cpp:783 src/engine/sysDef.cpp:2110 +msgid "" +"15xx: Set envelope mode (0: envelope, 1: length, 2: looping, 3: constant)" +msgstr "" +"15xx: Definir modo de envelope (0: envelope, 1: comprimento, 2: repetir, 3: " +"constante)" + +#: src/engine/sysDef.cpp:784 src/engine/sysDef.cpp:2111 +msgid "16xx: Set length counter (refer to manual for a list of values)" +msgstr "" +"16xx: Definir contador de comprimento (veja o manual para uma lista de " +"valores)" + +#: src/engine/sysDef.cpp:785 src/engine/sysDef.cpp:2112 +msgid "17xx: Set frame counter mode (0: 4-step, 1: 5-step)" +msgstr "17xx: Definir modo do contador de quadros (0: 4 passos, 1: 5 passos)" + +#: src/engine/sysDef.cpp:786 src/engine/sysDef.cpp:2113 +msgid "18xx: Select PCM/DPCM mode (0: PCM; 1: DPCM)" +msgstr "18xx: Selecionar modo PCM/DPCM (0: PCM; 1: DPCM)" + +#: src/engine/sysDef.cpp:787 src/engine/sysDef.cpp:2114 +msgid "19xx: Set triangle linear counter (0 to 7F; 80 and higher halt)" +msgstr "" +"19xx: Definir contador linear do canal triângulo (0 a 7F; valores 80 e " +"superiores interrompem)" + +#: src/engine/sysDef.cpp:788 src/engine/sysDef.cpp:2115 +msgid "20xx: Set DPCM frequency (0 to F)" +msgstr "20xx: Definir frequência DPCM (0 a F)" + +#: src/engine/sysDef.cpp:793 +msgid "NES + Konami VRC7" +msgstr "" + +#: src/engine/sysDef.cpp:799 +msgid "Famicom Disk System" +msgstr "" + +#: src/engine/sysDef.cpp:805 +msgid "Commodore 64 (SID 6581)" +msgstr "" + +#: src/engine/sysDef.cpp:806 +msgid "" +"this computer is powered by the SID chip, which had synthesizer features " +"like a filter and ADSR." +msgstr "" +"este computador possui o chip de som SID, que possui recursos de " +"sintetizador como um filtro e ADSR." + +#: src/engine/sysDef.cpp:817 +msgid "Commodore 64 (SID 8580)" +msgstr "" + +#: src/engine/sysDef.cpp:818 +msgid "" +"this computer is powered by the SID chip, which had synthesizer features " +"like a filter and ADSR.\n" +"this is the newer revision of the chip." +msgstr "" +"este computador possui o chip de som SID, que possui recursos de " +"sintetizador como um filtro e ADSR.\n" +"essa é uma revisão mais nova do chip." + +#: src/engine/sysDef.cpp:829 +msgid "DefleCade" +msgstr "" + +#: src/engine/sysDef.cpp:835 +msgid "Neo Geo CD" +msgstr "" + +#: src/engine/sysDef.cpp:836 +msgid "" +"like Neo Geo, but lacking the ADPCM-B channel since they couldn't connect " +"the pins." +msgstr "" +"como o Neo Geo, mas faltando o canal ADPCM-B já que eles não puderam " +"conectar os pinos." + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1173 +#: src/engine/sysDef.cpp:1185 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1443 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +#: src/engine/sysDef.cpp:2006 +msgid "FM 1" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:891 +#: src/engine/sysDef.cpp:903 src/engine/sysDef.cpp:1032 +#: src/engine/sysDef.cpp:1097 src/engine/sysDef.cpp:1109 +#: src/engine/sysDef.cpp:1122 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1546 +#: src/engine/sysDef.cpp:1559 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:1693 src/engine/sysDef.cpp:1849 +#: src/engine/sysDef.cpp:1861 src/engine/sysDef.cpp:2006 +msgid "FM 2" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1173 +#: src/engine/sysDef.cpp:1185 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1443 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:2006 +msgid "FM 3" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1546 +#: src/engine/sysDef.cpp:1559 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:1693 src/engine/sysDef.cpp:1849 +#: src/engine/sysDef.cpp:1861 src/engine/sysDef.cpp:2006 +msgid "FM 4" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:862 src/engine/sysDef.cpp:927 +#: src/engine/sysDef.cpp:943 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "PSG 1" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:862 src/engine/sysDef.cpp:927 +#: src/engine/sysDef.cpp:943 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "PSG 2" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:862 src/engine/sysDef.cpp:927 +#: src/engine/sysDef.cpp:943 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "PSG 3" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 1" +msgstr "ADPCM-A 1" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 2" +msgstr "ADPCM-A 2" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 3" +msgstr "ADPCM-A 3" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 4" +msgstr "ADPCM-A 4" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 5" +msgstr "ADPCM-A 5" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 6" +msgstr "ADPCM-A 6" + +#: src/engine/sysDef.cpp:847 +msgid "Neo Geo CD Extended Channel 2" +msgstr "Neo Geo CD com Canal 2 estendido" + +#: src/engine/sysDef.cpp:848 +msgid "" +"like Neo Geo, but lacking the ADPCM-B channel since they couldn't connect " +"the pins.\n" +"this one is in Extended Channel mode, which turns the second FM channel into " +"four operators with independent notes/frequencies." +msgstr "" +"como o Neo Geo, mas faltando o canal ADPCM-B já que eles não puderam " +"conectar os pinos.\n" +"esse está no modo de Canal Estendido, que transforma o segundo canal FM em " +"quatro operadores com notas/frequências independentes." + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP1" +msgstr "" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP2" +msgstr "" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP3" +msgstr "" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP4" +msgstr "" + +#: src/engine/sysDef.cpp:860 src/gui/sysConf.cpp:913 +msgid "AY-3-8910" +msgstr "" + +#: src/engine/sysDef.cpp:861 +msgid "" +"this chip is everywhere! ZX Spectrum, MSX, Amstrad CPC, Intellivision, " +"Vectrex...\n" +"the discovery of envelope bass helped it beat the SN76489 with ease." +msgstr "" +"esse chip está em todo lugar! ZX Spectrum, MSX, Amstrad CPC, Intellivision, " +"Vectrex...\n" +"a descoberta do baixo com o envelope ajudou ele a ganhar do SN76489 " +"facilmente." + +#: src/engine/sysDef.cpp:872 +msgid "Amiga" +msgstr "" + +#: src/engine/sysDef.cpp:873 +msgid "" +"a computer from the '80s with full sampling capabilities, giving it a sound " +"ahead of its time." +msgstr "" +"um computador dos anos 80 com capacidade completa de amostragem (sampling), " +"dando a ele um som à frente do seu tempo." + +#: src/engine/sysDef.cpp:881 +msgid "10xx: Toggle filter (0 disables; 1 enables)" +msgstr "10xx: Alternar filtro (0 desabilita; 1 habilita)" + +#: src/engine/sysDef.cpp:882 +msgid "11xx: Toggle AM with next channel" +msgstr "11xx: Alternar AM com o canal à direita" + +#: src/engine/sysDef.cpp:883 +msgid "12xx: Toggle period modulation with next channel" +msgstr "12xx: Alternar modulação de período com o canal à direita" + +#: src/engine/sysDef.cpp:884 +msgid "13xx: Set waveform" +msgstr "13xx: Definir forma de onda" + +#: src/engine/sysDef.cpp:889 +msgid "Yamaha YM2151 (OPM)" +msgstr "" + +#: src/engine/sysDef.cpp:890 +msgid "" +"this was Yamaha's first integrated FM chip.\n" +"it was used in several synthesizers, computers and arcade boards." +msgstr "" +"esse foi o primeiro chip FM integrado da Yamaha.\n" +"ele foi usado em vários sintetizadores, computadores e placas de fliperama." + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1279 src/engine/sysDef.cpp:1332 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1370 +#: src/engine/sysDef.cpp:1383 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +#: src/engine/sysDef.cpp:2006 +msgid "FM 5" +msgstr "" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:2006 +msgid "FM 6" +msgstr "" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:1032 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1279 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:2006 +msgid "FM 7" +msgstr "" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:1032 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:2006 +msgid "FM 8" +msgstr "" + +#: src/engine/sysDef.cpp:901 +msgid "Yamaha YM2612 (OPN2)" +msgstr "" + +#: src/engine/sysDef.cpp:902 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer)." +msgstr "" +"esse chip é mais conhecido por ter sido utilizado no Sega Mega Drive (mas " +"ele também foi usado no computador FM Towns)." + +#: src/engine/sysDef.cpp:913 +msgid "Atari TIA" +msgstr "" + +#: src/engine/sysDef.cpp:914 +msgid "" +"it's a challenge to make music on this chip which barely has musical " +"capabilities..." +msgstr "" +"é um desafio fazer música nesse chip que mal tem capacidades musicais..." + +#: src/engine/sysDef.cpp:925 +msgid "Philips SAA1099" +msgstr "" + +#: src/engine/sysDef.cpp:926 +msgid "" +"supposedly an upgrade from the AY-3-8910, this was present on the Creative " +"Music System (Game Blaster) and SAM Coupé." +msgstr "" +"supostamente um upgrade do AY-3-8910, esse chip estava presente na placa " +"Creative Music System (Game Blaster) e no computador SAM Coupé." + +#: src/engine/sysDef.cpp:927 +msgid "PSG 4" +msgstr "" + +#: src/engine/sysDef.cpp:927 +msgid "PSG 5" +msgstr "" + +#: src/engine/sysDef.cpp:927 +msgid "PSG 6" +msgstr "" + +#: src/engine/sysDef.cpp:934 +msgid "10xy: Set channel mode (x: noise; y: tone)" +msgstr "10xy: Definir modo do canal (x: ruído; y: tom)" + +#: src/engine/sysDef.cpp:935 +msgid "11xx: Set noise frequency" +msgstr "11xx: Definir frequência do ruído" + +#: src/engine/sysDef.cpp:936 +msgid "12xx: Setup envelope (refer to docs for more information)" +msgstr "12xx: Configurar envelope (confira o manual para mais informações)" + +#: src/engine/sysDef.cpp:941 +msgid "Microchip AY8930" +msgstr "" + +#: src/engine/sysDef.cpp:942 +msgid "" +"an improved version of the AY-3-8910 with a bigger frequency range, duty " +"cycles, configurable noise and per-channel envelopes!" +msgstr "" +"uma versão melhorada do AY-3-8910 com uma faixa de frequências maior, ciclos " +"de trabalho, ruído configurável e envelopes por canal!" + +#: src/engine/sysDef.cpp:953 +msgid "Commodore VIC-20" +msgstr "" + +#: src/engine/sysDef.cpp:954 +msgid "" +"Commodore's successor to the PET.\n" +"its square wave channels are more than just square..." +msgstr "" +"o sucessor da Commodore para o PET.\n" +"seus canais de onda quadrada são mais do que apenas ondas quadradas..." + +#: src/engine/sysDef.cpp:955 src/gui/settings.cpp:114 src/gui/settings.cpp:184 +#: src/gui/settings.cpp:3917 +msgid "Low" +msgstr "Baixa" + +#: src/engine/sysDef.cpp:955 +msgid "Mid" +msgstr "" + +#: src/engine/sysDef.cpp:955 src/gui/settings.cpp:113 src/gui/settings.cpp:186 +#: src/gui/settings.cpp:3918 +msgid "High" +msgstr "Alta" + +#: src/engine/sysDef.cpp:964 +msgid "Commodore PET" +msgstr "" + +#: src/engine/sysDef.cpp:965 +msgid "" +"one channel of 1-bit wavetable which is better (and worse) than the PC " +"Speaker." +msgstr "um canal de wavetable 1-bit que é melhor (e pior) que o PC Speaker." + +#: src/engine/sysDef.cpp:966 src/engine/sysDef.cpp:1262 +#: src/engine/sysDef.cpp:2100 src/gui/editControls.cpp:433 +#: src/gui/settings.cpp:3964 src/gui/settings.cpp:4042 +msgid "Wave" +msgstr "Wave" + +#: src/engine/sysDef.cpp:975 src/gui/settings.cpp:3999 +msgid "SNES" +msgstr "" + +#: src/engine/sysDef.cpp:976 +msgid "FM? nah... samples! Nintendo's answer to Sega." +msgstr "FM? nah... samples! a resposta da Nintendo para a Sega." + +#: src/engine/sysDef.cpp:983 +msgid "18xx: Enable echo buffer" +msgstr "18xx: Habilitar buffer de eco" + +#: src/engine/sysDef.cpp:984 +msgid "19xx: Set echo delay (0 to F)" +msgstr "19xx: Definir atraso de eco (0 a F)" + +#: src/engine/sysDef.cpp:985 +msgid "1Axx: Set left echo volume" +msgstr "1Axx: Definir volume esquerdo do eco" + +#: src/engine/sysDef.cpp:986 +msgid "1Bxx: Set right echo volume" +msgstr "1Bxx: Definir volume direito do eco" + +#: src/engine/sysDef.cpp:987 +msgid "1Cxx: Set echo feedback" +msgstr "1Cxx: Definir retorno do eco" + +#: src/engine/sysDef.cpp:988 +msgid "1Exx: Set dry output volume (left)" +msgstr "1Exx: Definir volume de saída não-processado (esquerda)" + +#: src/engine/sysDef.cpp:989 +msgid "1Fxx: Set dry output volume (right)" +msgstr "1Fxx: Definir volume de saída não-processado (direita)" + +#: src/engine/sysDef.cpp:990 +msgid "30xx: Set echo filter coefficient 0" +msgstr "30xx: Definir coeficiente de filtro do eco 0" + +#: src/engine/sysDef.cpp:991 +msgid "31xx: Set echo filter coefficient 1" +msgstr "31xx: Definir coeficiente de filtro do eco 1" + +#: src/engine/sysDef.cpp:992 +msgid "32xx: Set echo filter coefficient 2" +msgstr "32xx: Definir coeficiente de filtro do eco 2" + +#: src/engine/sysDef.cpp:993 +msgid "33xx: Set echo filter coefficient 3" +msgstr "33xx: Definir coeficiente de filtro do eco 3" + +#: src/engine/sysDef.cpp:994 +msgid "34xx: Set echo filter coefficient 4" +msgstr "34xx: Definir coeficiente de filtro do eco 4" + +#: src/engine/sysDef.cpp:995 +msgid "35xx: Set echo filter coefficient 5" +msgstr "35xx: Definir coeficiente de filtro do eco 5" + +#: src/engine/sysDef.cpp:996 +msgid "36xx: Set echo filter coefficient 6" +msgstr "36xx: Definir coeficiente de filtro do eco 6" + +#: src/engine/sysDef.cpp:997 +msgid "37xx: Set echo filter coefficient 7" +msgstr "37xx: Definir coeficiente de filtro do eco 7" + +#: src/engine/sysDef.cpp:1002 +msgid "12xx: Toggle echo on this channel" +msgstr "12xx: Alternar eco neste canal" + +#: src/engine/sysDef.cpp:1003 +msgid "13xx: Toggle pitch modulation" +msgstr "13xx: Alternar modulação de tom" + +#: src/engine/sysDef.cpp:1004 +msgid "14xy: Toggle invert (x: left; y: right)" +msgstr "14xy: Alternar inversão de onda (x: esquerda; y: direita)" + +#: src/engine/sysDef.cpp:1005 +msgid "" +"15xx: Set envelope mode (0: ADSR, 1: gain/direct, 2: dec, 3: exp, 4: inc, 5: " +"bent)" +msgstr "" +"15xx: Definir modo de envelope (0: ADSR, 1: ganho/direto, 2: decr., 3: exp., " +"4: incr., 5: linha torta)" + +#: src/engine/sysDef.cpp:1006 +msgid "16xx: Set gain (00 to 7F if direct; 00 to 1F otherwise)" +msgstr "16xx: Definir ganho (00 a 7F se for direto; 00 a 1F caso contrário)" + +#: src/engine/sysDef.cpp:1007 +msgid "1Dxx: Set noise frequency (00 to 1F)" +msgstr "1Dxx: Definir frequência do ruído (00 a 1F)" + +#: src/engine/sysDef.cpp:1008 +msgid "20xx: Set attack (0 to F)" +msgstr "20xx: Definir ataque (0 a F)" + +#: src/engine/sysDef.cpp:1009 +msgid "21xx: Set decay (0 to 7)" +msgstr "21xx: Definir decaimento (0 a 7)" + +#: src/engine/sysDef.cpp:1010 +msgid "22xx: Set sustain (0 to 7)" +msgstr "22xx: Definir sustentação (0 a 7)" + +#: src/engine/sysDef.cpp:1011 +msgid "23xx: Set release (00 to 1F)" +msgstr "23xx: Definir repouso (00 a 1F)" + +#: src/engine/sysDef.cpp:1016 +msgid "Konami VRC6" +msgstr "" + +#: src/engine/sysDef.cpp:1017 +msgid "an expansion chip for the Famicom, featuring a quirky sawtooth channel." +msgstr "" +"um chip de expansão para o Famicom, contendo um canal dente-de-serra " +"peculiar." + +#: src/engine/sysDef.cpp:1018 +msgid "VRC6 1" +msgstr "" + +#: src/engine/sysDef.cpp:1018 +msgid "VRC6 2" +msgstr "" + +#: src/engine/sysDef.cpp:1018 +msgid "VRC6 Saw" +msgstr "Serra VRC6" + +#: src/engine/sysDef.cpp:1024 src/engine/sysDef.cpp:2092 +msgid "12xx: Set duty cycle (pulse: 0 to 7)" +msgstr "12xx: Definir ciclo de trabalho (pulso: 0 a 7)" + +#: src/engine/sysDef.cpp:1030 +msgid "Yamaha YM2413 (OPLL)" +msgstr "" + +#: src/engine/sysDef.cpp:1031 +msgid "" +"cost-reduced version of the OPL with 16 patches and only one of them is user-" +"configurable." +msgstr "" +"versão de custo reduzido do chip OPL com 16 timbres selecionáveis, e apenas " +"um deles é configurável pelo usuário." + +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1173 +#: src/engine/sysDef.cpp:1185 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:2006 +msgid "FM 9" +msgstr "" + +#: src/engine/sysDef.cpp:1042 +msgid "Famicom Disk System (chip)" +msgstr "Famicom Disk System (chip)" + +#: src/engine/sysDef.cpp:1043 +msgid "a disk drive for the Famicom which also contains one wavetable channel." +msgstr "" +"um drive de disquete para o Famicom que também contém um canal de wavetable." + +#: src/engine/sysDef.cpp:1044 src/gui/settings.cpp:3986 +msgid "FDS" +msgstr "" + +#: src/engine/sysDef.cpp:1051 +msgid "11xx: Set modulation depth" +msgstr "11xx: Definir profundidade de modulação" + +#: src/engine/sysDef.cpp:1052 +msgid "12xy: Set modulation speed high byte (x: enable; y: value)" +msgstr "" +"12xy: Definir byte superior da velocidade de modulação (x: habilitar; y: " +"valor)" + +#: src/engine/sysDef.cpp:1053 +msgid "13xx: Set modulation speed low byte" +msgstr "13xx: Definir byte inferior da velocidade de modulação" + +#: src/engine/sysDef.cpp:1054 +msgid "14xx: Set modulator position" +msgstr "14xx: Definir posição do modulador" + +#: src/engine/sysDef.cpp:1055 +msgid "15xx: Set modulator table to waveform" +msgstr "15xx: Definir tabela do modulador para uma forma de onda" + +#: src/engine/sysDef.cpp:1060 +msgid "MMC5" +msgstr "" + +#: src/engine/sysDef.cpp:1061 +msgid "" +"an expansion chip for the Famicom, featuring a little-known PCM channel." +msgstr "" +"um chip de expansão para o Famicom, contendo um canal PCM pouco conhecido." + +#: src/engine/sysDef.cpp:1073 src/gui/settings.cpp:3988 +msgid "Namco 163" +msgstr "Namco 163" + +#: src/engine/sysDef.cpp:1074 +msgid "an expansion chip for the Famicom, with full wavetable." +msgstr "um chip de expansão para o Famicom, com vários canais de wavetable." + +#: src/engine/sysDef.cpp:1081 +msgid "18xx: Change channel limits (0 to 7, x + 1)" +msgstr "18xx: Mudar limite de canais (0 a 7, x + 1)" + +#: src/engine/sysDef.cpp:1082 +msgid "20xx: Load a waveform into memory" +msgstr "20xx: Carregar uma forma de onda na memória" + +#: src/engine/sysDef.cpp:1083 +msgid "21xx: Set position for wave load" +msgstr "21xx: Definir posição para carregar onda na memória" + +#: src/engine/sysDef.cpp:1086 +msgid "10xx: Select waveform" +msgstr "10xx: Selecionar forma de onda" + +#: src/engine/sysDef.cpp:1087 +msgid "11xx: Set waveform position in RAM" +msgstr "11xx: Definir posição da forma de onda na RAM" + +#: src/engine/sysDef.cpp:1088 +msgid "12xx: Set waveform length in RAM (04 to FC in steps of 4)" +msgstr "" +"12xx: Definir comprimento da forma de onda na RAM (04 a FC em incrementos de " +"4)" + +#: src/engine/sysDef.cpp:1089 +msgid "15xx: Set waveform load position" +msgstr "15xx: Definir posição de carregamento de forma de onda" + +#: src/engine/sysDef.cpp:1090 +msgid "16xx: Set waveform load length (04 to FC in steps of 4)" +msgstr "" +"16xx: Definir comprimento do carregamento da forma de onda (04 a FC em " +"incrementos de 4)" + +#: src/engine/sysDef.cpp:1095 +msgid "Yamaha YM2203 (OPN)" +msgstr "" + +#: src/engine/sysDef.cpp:1096 +msgid "" +"cost-reduced version of the OPM with a different register layout and no " +"stereo...\n" +"...but it has a built-in AY-3-8910! (actually an YM2149)" +msgstr "" +"versão de custo reduzido do OPM com um leiaute de registradores diferentes e " +"sem estéreo...\n" +"...mas ele tem um AY-3-8910 embutido! (na verdade é um YM2149)" + +#: src/engine/sysDef.cpp:1107 +msgid "Yamaha YM2203 (OPN) Extended Channel 3" +msgstr "Yamaha YM2203 (OPN) com Canal 3 Estendido" + +#: src/engine/sysDef.cpp:1108 +msgid "" +"cost-reduced version of the OPM with a different register layout and no " +"stereo...\n" +"...but it has a built-in AY-3-8910! (actually an YM2149)\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies" +msgstr "" +"versão de custo reduzido do OPM com um leiaute de registradores diferentes e " +"sem estéreo...\n" +"...mas ele tem um AY-3-8910 embutido! (na verdade é um YM2149)\n" +"esse está em modo de Canal Estendido, que transforma o terceiro canal FM em " +"quatro operadores com notas/frequências independentes." + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP1" +msgstr "" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP2" +msgstr "" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP3" +msgstr "" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP4" +msgstr "" + +#: src/engine/sysDef.cpp:1120 +msgid "Yamaha YM2203 (OPN) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1121 +msgid "" +"cost-reduced version of the OPM with a different register layout and no " +"stereo...\n" +"...but it has a built-in AY-3-8910! (actually an YM2149)\n" +"CSM blah blah" +msgstr "" + +#: src/engine/sysDef.cpp:1122 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1383 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1559 src/engine/sysDef.cpp:1861 +msgid "CSM Timer" +msgstr "Timer CSM" + +#: src/engine/sysDef.cpp:1133 +msgid "Yamaha YM2608 (OPNA)" +msgstr "" + +#: src/engine/sysDef.cpp:1134 +msgid "" +"OPN but twice the FM channels, stereo makes a come-back and has rhythm and " +"ADPCM channels." +msgstr "" +"OPN mas com o dobro dos canais FM, o estéreo está de volta e possui canais " +"de bateria e um canal ADPCM." + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1481 +#: src/gui/insEdit.cpp:3302 src/gui/insEdit.cpp:3624 +msgid "Kick" +msgstr "Bumbo" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:210 src/gui/insEdit.cpp:218 +msgid "Snare" +msgstr "Caixa" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:212 src/gui/insEdit.cpp:220 +#: src/gui/insEdit.cpp:1909 src/gui/insEdit.cpp:2014 +msgid "Top" +msgstr "Topo" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:213 src/gui/insEdit.cpp:219 +msgid "HiHat" +msgstr "Chimbal" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:211 +msgid "Tom" +msgstr "Surdo" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 +msgid "Rim" +msgstr "Aro" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:1693 +msgid "ADPCM" +msgstr "ADPCM" + +#: src/engine/sysDef.cpp:1145 +msgid "Yamaha YM2608 (OPNA) Extended Channel 3" +msgstr "Yamaha YM2608 (OPNA) com Canal 3 Estendido" + +#: src/engine/sysDef.cpp:1146 +msgid "" +"OPN but twice the FM channels, stereo makes a come-back and has rhythm and " +"ADPCM channels.\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies" +msgstr "" + +#: src/engine/sysDef.cpp:1158 +msgid "Yamaha YM2608 (OPNA) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1159 +msgid "" +"OPN but twice the FM channels, stereo makes a come-back and has rhythm and " +"ADPCM channels.\n" +"CSM blah blah" +msgstr "" + +#: src/engine/sysDef.cpp:1171 +msgid "Yamaha YM3526 (OPL)" +msgstr "" + +#: src/engine/sysDef.cpp:1172 +msgid "" +"OPN, but what if you only had two operators, no stereo, no detune and a " +"lower ADSR parameter range?" +msgstr "" +"OPN, mas e se você só tivesse dois operadores, não tivesse estéreo, nem " +"desafinação e tivesse um alcance menor nos parâmetros ADSR?" + +#: src/engine/sysDef.cpp:1183 +msgid "Yamaha YM3812 (OPL2)" +msgstr "" + +#: src/engine/sysDef.cpp:1184 +msgid "OPL, but what if you had more waveforms to choose than the normal sine?" +msgstr "" +"OPL, mas e se você tivesse mais formas de onda pra escolher do que apenas o " +"seno normal?" + +#: src/engine/sysDef.cpp:1195 +msgid "Yamaha YMF262 (OPL3)" +msgstr "" + +#: src/engine/sysDef.cpp:1196 +msgid "" +"OPL2, but what if you had twice the channels, 4-op mode, stereo and even " +"more waveforms?" +msgstr "" +"OPL2, mas e se você tivesse o dobro de canais, modo de 4 operadores, estéreo " +"e ainda mais formas de onda?" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 1" +msgstr "4OP 1" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 3" +msgstr "4OP 3" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 5" +msgstr "4OP 5" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 7" +msgstr "4OP 7" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 9" +msgstr "4OP 9" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 10" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 11" +msgstr "4OP 11" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 12" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 13" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 14" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 15" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:2006 +msgid "FM 16" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:2006 +msgid "FM 17" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:2006 +msgid "FM 18" +msgstr "" + +#: src/engine/sysDef.cpp:1208 src/gui/settings.cpp:3998 +msgid "MultiPCM" +msgstr "MultiPCM" + +#: src/engine/sysDef.cpp:1209 +msgid "" +"how many channels of PCM do you want?\n" +"MultiPCM: yes" +msgstr "" +"quantos canais de PCM você quer?\n" +"MultiPCM: sim" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 17" +msgstr "Canal 17" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 18" +msgstr "Canal 18" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 19" +msgstr "Canal 19" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 20" +msgstr "Canal 20" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 21" +msgstr "Canal 21" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 22" +msgstr "Canal 22" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 23" +msgstr "Canal 23" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 24" +msgstr "Canal 24" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 25" +msgstr "Canal 25" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 26" +msgstr "Canal 26" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 27" +msgstr "Canal 27" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 28" +msgstr "Canal 28" + +#: src/engine/sysDef.cpp:1217 +msgid "PC Speaker" +msgstr "PC Speaker" + +#: src/engine/sysDef.cpp:1218 +msgid "good luck! you get one square and no volume control." +msgstr "boa sorte! você tem uma onda quadrada e nenhum controle de volume." + +#: src/engine/sysDef.cpp:1219 src/engine/sysDef.cpp:1228 +#: src/gui/guiConst.cpp:1394 src/gui/waveEdit.cpp:199 src/gui/insEdit.cpp:183 +#: src/gui/insEdit.cpp:194 src/gui/insEdit.cpp:326 src/gui/insEdit.cpp:656 +msgid "Square" +msgstr "Onda quadrada" + +#: src/engine/sysDef.cpp:1226 +msgid "Pong" +msgstr "" + +#: src/engine/sysDef.cpp:1227 +msgid "please don't use this chip. it was added as a joke." +msgstr "" +"por favor não use esse chip. ele foi adicionado por causa de uma brincadeira." + +#: src/engine/sysDef.cpp:1235 src/gui/settings.cpp:3991 +msgid "POKEY" +msgstr "" + +#: src/engine/sysDef.cpp:1236 +msgid "" +"TIA, but better and more flexible.\n" +"used in the Atari 8-bit family of computers (400/800/XL/XE)." +msgstr "" +"TIA, só que melhor e mais flexível.\n" +"utilizado na família de computadores Atari 8-bit (400/800/XL/XE)." + +#: src/engine/sysDef.cpp:1243 src/engine/sysDef.cpp:1714 +msgid "10xx: Set waveform (0 to 7)" +msgstr "10xx: Definir forma de onda (0 a 7)" + +#: src/engine/sysDef.cpp:1244 +msgid "11xx: Set AUDCTL" +msgstr "11xx: Definir AUDCTL" + +#: src/engine/sysDef.cpp:1245 +msgid "12xx: Toggle two-tone mode" +msgstr "12xx: Alternar modo de dois tons" + +#: src/engine/sysDef.cpp:1250 +msgid "Ricoh RF5C68" +msgstr "" + +#: src/engine/sysDef.cpp:1251 +msgid "" +"this is like SNES' sound chip but without interpolation and the rest of nice " +"bits." +msgstr "" +"esse é como o chip de som do SNES só que sem interpolação e o resto das " +"coisas legais." + +#: src/engine/sysDef.cpp:1260 src/gui/settings.cpp:3993 +msgid "WonderSwan" +msgstr "" + +#: src/engine/sysDef.cpp:1261 +msgid "developed by the makers of the Game Boy and the Virtual Boy..." +msgstr "desenvolvido pelos criadores do Game Boy e do Virtual Boy..." + +#: src/engine/sysDef.cpp:1262 +msgid "Wave/PCM" +msgstr "" + +#: src/engine/sysDef.cpp:1262 +msgid "Wave/Sweep" +msgstr "" + +#: src/engine/sysDef.cpp:1262 +msgid "Wave/Noise" +msgstr "" + +#: src/engine/sysDef.cpp:1269 +msgid "11xx: Setup noise mode (0: disabled; 1-8: enabled/tap)" +msgstr "11xx: Configurar modo de ruído (0: desabilitado; 1-8: habilitado/tap)" + +#: src/engine/sysDef.cpp:1270 +msgid "12xx: Setup sweep period (0: disabled; 1-20: enabled/period)" +msgstr "" +"12xx: Configurar período de sweep (0: desabilitado; 1-20: habilitado/período)" + +#: src/engine/sysDef.cpp:1271 +msgid "13xx: Set sweep amount" +msgstr "13xx: Definir quantidade de sweep" + +#: src/engine/sysDef.cpp:1277 +msgid "Yamaha YM2414 (OPZ)" +msgstr "" + +#: src/engine/sysDef.cpp:1278 +msgid "" +"like OPM, but with more waveforms, fixed frequency mode and totally... " +"undocumented.\n" +"used in the Yamaha TX81Z and some other synthesizers." +msgstr "" +"como o OPM, mas com mais formas de onda, modo de frequência fixa e " +"completamente... não documentado.\n" +"utilizado no Yamaha TX81Z e alguns outros sintetizadores." + +#: src/engine/sysDef.cpp:1285 +msgid "2Fxx: Toggle hard envelope reset on new notes" +msgstr "2Fxx: Alternar reinício brusco do envelope em novas notas" + +#: src/engine/sysDef.cpp:1291 src/gui/settings.cpp:4016 +msgid "Pokémon Mini" +msgstr "" + +#: src/engine/sysDef.cpp:1292 +msgid "this one is like PC Speaker but has duty cycles." +msgstr "esse é parecido com o PC Speaker só que tem ciclos de trabalho." + +#: src/engine/sysDef.cpp:1293 src/gui/settings.cpp:4039 src/gui/waveEdit.cpp:33 +msgid "Pulse" +msgstr "Pulsada" + +#: src/engine/sysDef.cpp:1300 +msgid "SegaPCM" +msgstr "" + +#: src/engine/sysDef.cpp:1301 +msgid "" +"used in some Sega arcade boards (like OutRun), and usually paired with a " +"YM2151." +msgstr "" +"utilizado em algumas placas de fliperama da Sega (como OutRun), e geralmente " +"pareado com um YM2151 (OPM)." + +#: src/engine/sysDef.cpp:1312 src/gui/settings.cpp:3987 +msgid "Virtual Boy" +msgstr "" + +#: src/engine/sysDef.cpp:1313 +msgid "" +"a console which failed to sell well due to its headache-inducing features." +msgstr "" +"um console que foi um desastre de vendas por conta dos seus recursos que " +"causavam dores de cabeça." + +#: src/engine/sysDef.cpp:1321 +msgid "11xx: Set noise length (0 to 7)" +msgstr "11xx: Definir comprimento do ruído (0 a 7)" + +#: src/engine/sysDef.cpp:1322 +msgid "" +"12xy: Setup envelope (x: enabled/loop (1: enable, 3: enable+loop); y: speed/" +"direction (0-7: down, 8-F: up))" +msgstr "" +"12xy: Definir envelope (x: habilitado/repetir (1: habilitado, 3: " +"habilitado+repetir); y: velocidade/direção (0-7: para baixo, 8-F: para cima))" + +#: src/engine/sysDef.cpp:1323 +msgid "13xy: Setup sweep (x: speed; y: shift; channel 5 only)" +msgstr "" +"13xy: Configurar sweep (x: velocidade; y: deslocamento; apenas no canal 5)" + +#: src/engine/sysDef.cpp:1324 +msgid "" +"14xy: Setup modulation (x: enabled/loop (1: enable, 3: enable+loop); y: " +"speed; channel 5 only)" +msgstr "" +"14xy: Configurar modulação (x: habilitada/repetir (1: habilitada, 3: " +"habilitada+repetir); y: velocidade; canal 5 somente)" + +#: src/engine/sysDef.cpp:1325 +msgid "15xx: Set modulation waveform (x: wavetable; channel 5 only)" +msgstr "" +"15xx: Definir forma de onda de modulação (x: wavetable; canal 5 somente)" + +#: src/engine/sysDef.cpp:1330 +msgid "Konami VRC7" +msgstr "" + +#: src/engine/sysDef.cpp:1331 +msgid "" +"like OPLL, but even more cost reductions applied. three FM channels went " +"missing, and drums mode did as well..." +msgstr "" + +#: src/engine/sysDef.cpp:1342 +msgid "Yamaha YM2610B (OPNB2)" +msgstr "" + +#: src/engine/sysDef.cpp:1343 +msgid "" +"so Taito asked Yamaha if they could get the two missing FM channels back, " +"and Yamaha gladly provided them with this chip." +msgstr "" +"então a Taito pediu à Yamaha se eles poderiam ter os 2 canais FM faltantes " +"de volta, e a Yamaha lhes providenciou de bom grado com este chip." + +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/gui/settings.cpp:4008 +msgid "ADPCM-B" +msgstr "ADPCM-B" + +#: src/engine/sysDef.cpp:1354 +msgid "ZX Spectrum Beeper" +msgstr "Beeper do ZX Spectrum" + +#: src/engine/sysDef.cpp:1355 +msgid "" +"the ZX Spectrum only had a basic beeper capable of...\n" +"...a bunch of thin pulses and tons of other interesting stuff!\n" +"Furnace provides a thin pulse system." +msgstr "" +"o ZX Spectrum só tinha um beeper básico capaz de...\n" +"...um monte de pulsos finos e um monte de outras coisas interessantes!\n" +"Furnace provê um sistema de pulsos finos." + +#: src/engine/sysDef.cpp:1362 src/engine/sysDef.cpp:1950 +msgid "12xx: Set pulse width" +msgstr "12xx: Definir largura de pulso" + +#: src/engine/sysDef.cpp:1363 +msgid "17xx: Trigger overlay drum" +msgstr "17xx: Disparar tambor sobreposto" + +#: src/engine/sysDef.cpp:1368 +msgid "Yamaha YM2612 (OPN2) Extended Channel 3" +msgstr "Yamaha YM2612 (OPN2) com Canal 3 Estendido" + +#: src/engine/sysDef.cpp:1369 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies." +msgstr "" +"esse chip é mais conhecido por ter sido utilizado no Sega Mega Drive (mas " +"ele também foi usado no computador FM Towns).\n" +"esse está em modo de Canal Estendido, que transforma o terceiro canal FM em " +"quatro operadores com notas/frequências independentes." + +#: src/engine/sysDef.cpp:1381 +msgid "Yamaha YM2612 (OPN2) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1382 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this one includes CSM mode control for special effects on Channel 3." +msgstr "" +"esse chip é mais conhecido por ter sido utilizado no Sega Mega Drive (mas " +"ele também foi usado no computador FM Towns).\n" +"esse inclui controle do modo CSM para efeitos especiais no Canal 3." + +#: src/engine/sysDef.cpp:1394 src/gui/settings.cpp:3989 +msgid "Konami SCC" +msgstr "" + +#: src/engine/sysDef.cpp:1395 +msgid "" +"a wavetable chip made by Konami for use with the MSX.\n" +"the last channel shares its wavetable with the previous one though." +msgstr "" +"um chip wavetable feito pela Konami para ser utilizado com o MSX.\n" +"o último canal compartilha sua wavetable com o anterior, porém." + +#: src/engine/sysDef.cpp:1405 +msgid "Yamaha YM3526 (OPL) with drums" +msgstr "Yamaha YM3526 (OPL) em modo bateria" + +#: src/engine/sysDef.cpp:1406 +msgid "the OPL chip but with drums mode enabled." +msgstr "o chip OPL mas com modo bateria habilitado." + +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1693 +msgid "Kick/FM 7" +msgstr "Bumbo/FM 7" + +#: src/engine/sysDef.cpp:1417 +msgid "Yamaha YM3812 (OPL2) with drums" +msgstr "Yamaha YM3812 (OPL2) em modo bateria" + +#: src/engine/sysDef.cpp:1418 +msgid "the OPL2 chip but with drums mode enabled." +msgstr "o chip OPL2 mas com modo bateria habilitado." + +#: src/engine/sysDef.cpp:1429 +msgid "Yamaha YMF262 (OPL3) with drums" +msgstr "Yamaha YMF262 (OPL3) em modo bateria" + +#: src/engine/sysDef.cpp:1430 +msgid "the OPL3 chip but with drums mode enabled." +msgstr "o chip OPL3 mas com modo bateria habilitado." + +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1631 +msgid "Kick/FM 16" +msgstr "Bumbo/FM 16" + +#: src/engine/sysDef.cpp:1441 +msgid "Yamaha YM2610 (OPNB)" +msgstr "" + +#: src/engine/sysDef.cpp:1442 +msgid "" +"this chip was used in SNK's Neo Geo arcade board and video game console.\n" +"it's like OPNA but the rhythm channels are ADPCM channels and two FM " +"channels went missing." +msgstr "" +"esse chip foi usado no Neo Geo, placa de fliperama e console de videogame da " +"SNK.\n" +"é como o OPNA mas os canais de bateria são canais de ADPCM e dois canais de " +"FM foram removidos." + +#: src/engine/sysDef.cpp:1453 +msgid "Yamaha YM2610 (OPNB) Extended Channel 2" +msgstr "Yamaha YM2610 (OPNB) com Canal 2 Estendido" + +#: src/engine/sysDef.cpp:1454 +msgid "" +"this chip was used in SNK's Neo Geo arcade board and video game console.\n" +"it's like OPNA but the rhythm channels are ADPCM channels and two FM " +"channels went missing.\n" +"this one is in Extended Channel mode, which turns the second FM channel into " +"four operators with independent notes/frequencies." +msgstr "" +"esse chip foi usado no Neo Geo, placa de fliperama e console de videogame da " +"SNK.\n" +"é como o OPNA mas os canais de bateria são canais de ADPCM e dois canais de " +"FM foram removidos.\n" +"esse está em modo de Canal Estendido, que transforma o segundo canal FM em " +"quatro operadores com notas/frequências independentes." + +#: src/engine/sysDef.cpp:1466 +msgid "Yamaha YM2610 (OPNB) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1467 +msgid "" +"this chip was used in SNK's Neo Geo arcade board and video game console.\n" +"it's like OPNA but the rhythm channels are ADPCM channels and two FM " +"channels went missing.\n" +"this one includes CSM mode control for special effects on Channel 2." +msgstr "" + +#: src/engine/sysDef.cpp:1479 +msgid "Yamaha YM2413 (OPLL) with drums" +msgstr "Yamaha YM2413 (OPLL) em modo bateria" + +#: src/engine/sysDef.cpp:1480 +msgid "the OPLL chips but with drums mode turned on." +msgstr "" + +#: src/engine/sysDef.cpp:1491 +msgid "3xxx: Load LFSR (0 to FFF)" +msgstr "3xxx: Carregar LFSR (0 a FFF)" + +#: src/engine/sysDef.cpp:1497 +msgid "Atari Lynx" +msgstr "" + +#: src/engine/sysDef.cpp:1498 +msgid "" +"a portable console made by Atari. it has all of Atari's trademark waveforms." +msgstr "" +"um console portátil feito pela Atari. ele possui todas as formas de onda " +"conhecidíssimas dos consoles Atari." + +#: src/engine/sysDef.cpp:1509 +msgid "10xx: Set echo feedback level (00 to FF)" +msgstr "10xx: Definir nível de retorno do Eco (00 a FF)" + +#: src/engine/sysDef.cpp:1510 +msgid "11xx: Set channel echo level (00 to FF)" +msgstr "11xx: Definir nível de eco do canal (00 a FF)" + +#: src/engine/sysDef.cpp:1511 +msgid "12xx: Toggle QSound algorithm (0: disabled; 1: enabled)" +msgstr "12xx: Alternar algoritmo QSound (0: desabilitado; 1: habilitado)" + +#: src/engine/sysDef.cpp:1513 +msgid "3xxx: Set echo delay buffer length (000 to AA5)" +msgstr "3xxx: Definir tamanho do buffer de atraso do eco (000 a AA5)" + +#: src/engine/sysDef.cpp:1519 +msgid "Capcom QSound" +msgstr "" + +#: src/engine/sysDef.cpp:1520 +msgid "" +"used in some of Capcom's arcade boards. surround-like sampled sound with " +"echo." +msgstr "" +"utilizado em algumas das placas de fliperama da Capcom. som amostrado estilo " +"surround com eco." + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +#: src/engine/sysDef.cpp:2056 +msgid "PCM 1" +msgstr "PCM 1" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +#: src/engine/sysDef.cpp:2056 +msgid "PCM 2" +msgstr "PCM 2" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 3" +msgstr "PCM 3" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 4" +msgstr "PCM 4" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 5" +msgstr "PCM 5" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 6" +msgstr "PCM 6" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 7" +msgstr "PCM 7" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 8" +msgstr "PCM 8" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 9" +msgstr "PCM 9" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 10" +msgstr "PCM 10" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 11" +msgstr "PCM 11" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 12" +msgstr "PCM 12" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 13" +msgstr "PCM 13" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 14" +msgstr "PCM 14" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 15" +msgstr "PCM 15" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 16" +msgstr "PCM 16" + +#: src/engine/sysDef.cpp:1521 +msgid "ADPCM 1" +msgstr "ADPCM 1" + +#: src/engine/sysDef.cpp:1521 +msgid "ADPCM 2" +msgstr "ADPCM 2" + +#: src/engine/sysDef.cpp:1521 +msgid "ADPCM 3" +msgstr "ADPCM 3" + +#: src/engine/sysDef.cpp:1530 src/gui/settings.cpp:3995 +msgid "VERA" +msgstr "" + +#: src/engine/sysDef.cpp:1531 +msgid "the chip used in a computer design created by The 8-Bit Guy." +msgstr "o chip utilizado em um computador criado pelo The 8-Bit Guy." + +#: src/engine/sysDef.cpp:1538 +msgid "20xx: Set waveform" +msgstr "20xx: Definir forma de onda" + +#: src/engine/sysDef.cpp:1539 +msgid "22xx: Set duty cycle (0 to 3F)" +msgstr "22xx: Definir ciclo de trabalho (0 a 3F)" + +#: src/engine/sysDef.cpp:1544 +msgid "Yamaha YM2610B (OPNB2) Extended Channel 3" +msgstr "Yamaha YM2610B (OPNB2) com Canal 3 Estendido" + +#: src/engine/sysDef.cpp:1545 +msgid "" +"so Taito asked Yamaha if they could get the two missing FM channels back, " +"and Yamaha gladly provided them with this chip.\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies." +msgstr "" +"então a Taito pediu à Yamaha se eles poderiam ter os 2 canais FM faltantes " +"de volta, e a Yamaha lhes providenciou de bom grado com este chip.\n" +"esse está em modo de Canal Estendido, que transforma o terceiro canal FM em " +"quatro operadores com notas/frequências independentes." + +#: src/engine/sysDef.cpp:1557 +msgid "Yamaha YM2610B (OPNB2) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1558 +msgid "" +"so Taito asked Yamaha if they could get the two missing FM channels back, " +"and Yamaha gladly provided them with this chip.\n" +"CSM blah blah" +msgstr "" + +#: src/engine/sysDef.cpp:1570 +msgid "SegaPCM (compatible 5-channel mode)" +msgstr "SegaPCM (modo de compatibilidade de 5 canais)" + +#: src/engine/sysDef.cpp:1571 +msgid "" +"this is the same thing as SegaPCM, but only exposes 5 of the channels for " +"compatibility with DefleMask." +msgstr "" +"esse é a mesma coisa que o SegaPCM, mas só expões 5 dos canais para " +"compatibilidade com o DefleMask." + +#: src/engine/sysDef.cpp:1582 +msgid "Seta/Allumer X1-010" +msgstr "" + +#: src/engine/sysDef.cpp:1583 +msgid "" +"a sound chip used in several Seta/Allumer-manufactured arcade boards with " +"too many channels of wavetable sound, which also are capable of sampled " +"sound." +msgstr "" +"um chip de som utilizado em várias placa de fliperama fabricadas pela Seta/" +"Allumer, com muitos canais de wavetable que também são capazes de tocar " +"samples." + +#: src/engine/sysDef.cpp:1591 +msgid "11xx: Set envelope shape" +msgstr "11xx: Definir formato do envelope" + +#: src/engine/sysDef.cpp:1592 +msgid "12xx: Set sample bank slot (0 to 7)" +msgstr "12xx: Definir vaga do banco de samples (0 to 7)" + +#: src/engine/sysDef.cpp:1596 +msgid "20xx: Set PCM frequency (1 to FF)" +msgstr "20xx: Definir frequência PCM (1 a FF)" + +#: src/engine/sysDef.cpp:1597 +msgid "" +"22xx: Set envelope mode (bit 0: enable; bit 1: one-shot; bit 2: split shape " +"to L/R; bit 3/5: H.invert right/left; bit 4/6: V.invert right/left)" +msgstr "" +"22xx: Definir modo do envelope (bit 0: habilitar; bit 1: uma vez; bit 2: " +"dividir formato para esquerda/direita; bit 3/5: inverter hor. direita/" +"esquerda; bit 4/6: inverter vert. direita/esquerda)" + +#: src/engine/sysDef.cpp:1598 +msgid "23xx: Set envelope period" +msgstr "23xx: Definir período do envelope" + +#: src/engine/sysDef.cpp:1606 +msgid "Konami Bubble System WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1607 +msgid "" +"this is the wavetable part of the Bubble System, which also had two " +"AY-3-8910s." +msgstr "" +"essa é a parte wavetable do Bubble System, que também possuía dois AY-3-8910." + +#: src/engine/sysDef.cpp:1619 +msgid "Yamaha YMF278B (OPL4)" +msgstr "" + +#: src/engine/sysDef.cpp:1620 +msgid "like OPL3, but this time it also has a 24-channel version of MultiPCM." +msgstr "" +"como o OPL3, mas dessa vez ele também possui uma versão de 24 canais do " +"MultiPCM." + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 17" +msgstr "PCM 17" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 18" +msgstr "PCM 18" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 19" +msgstr "PCM 19" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 20" +msgstr "PCM 20" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 21" +msgstr "PCM 21" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 22" +msgstr "PCM 22" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 23" +msgstr "PCM 23" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 24" +msgstr "PCM 24" + +#: src/engine/sysDef.cpp:1629 +msgid "Yamaha YMF278B (OPL4) with drums" +msgstr "Yamaha YMF278B (OPL4) em modo bateria" + +#: src/engine/sysDef.cpp:1630 +msgid "the OPL4 but with drums mode turned on." +msgstr "o chip OPL4 mas com modo bateria habilitado." + +#: src/engine/sysDef.cpp:1638 +msgid "11xx: Set filter mode (00 to 03)" +msgstr "11xx: Definir modo de filtro (00 to 03)" + +#: src/engine/sysDef.cpp:1639 +msgid "14xx: Set filter coefficient K1 low byte (00 to FF)" +msgstr "14xx: Definir byte inferior do coeficiente do filtro K1 (00 a FF)" + +#: src/engine/sysDef.cpp:1640 +msgid "15xx: Set filter coefficient K1 high byte (00 to FF)" +msgstr "15xx: Definir byte superior do coeficiente do filtro K1 (00 a FF)" + +#: src/engine/sysDef.cpp:1641 +msgid "16xx: Set filter coefficient K2 low byte (00 to FF)" +msgstr "16xx: Definir byte inferior do coeficiente do filtro K2 (00 a FF)" + +#: src/engine/sysDef.cpp:1642 +msgid "17xx: Set filter coefficient K2 high byte (00 to FF)" +msgstr "17xx: Definir byte superior do coeficiente do filtro K2 (00 a FF)" + +#: src/engine/sysDef.cpp:1643 +msgid "18xx: Set filter coefficient K1 slide up (00 to FF)" +msgstr "18xx: Definir slide para cima do coeficiente do filtro K1 (00 a FF)" + +#: src/engine/sysDef.cpp:1644 +msgid "19xx: Set filter coefficient K1 slide down (00 to FF)" +msgstr "19xx: Definir slide para baixo do coeficiente do filtro K1 (00 a FF)" + +#: src/engine/sysDef.cpp:1645 +msgid "1Axx: Set filter coefficient K2 slide up (00 to FF)" +msgstr "1Axx: Definir slide para cima do coeficiente do filtro K2 (00 a FF)" + +#: src/engine/sysDef.cpp:1646 +msgid "1Bxx: Set filter coefficient K2 slide down (00 to FF)" +msgstr "1Bxx: Definir slide para baixo do coeficiente do filtro K2 (00 a FF)" + +#: src/engine/sysDef.cpp:1647 +msgid "22xx: Set envelope left volume ramp (signed) (00 to FF)" +msgstr "" +"22xx: Definir rampa de volume esquerdo do envelope (sinalizado) (00 a FF)" + +#: src/engine/sysDef.cpp:1648 +msgid "23xx: Set envelope right volume ramp (signed) (00 to FF)" +msgstr "" +"23xx: Definir rampa de volume direito do envelope (sinalizado) (00 a FF)" + +#: src/engine/sysDef.cpp:1649 +msgid "24xx: Set envelope filter coefficient k1 ramp (signed) (00 to FF)" +msgstr "24xx: Definir rampa do coeficiente do filtro K1 (sinalizado) (00 a FF)" + +#: src/engine/sysDef.cpp:1650 +msgid "" +"25xx: Set envelope filter coefficient k1 ramp (signed, slower) (00 to FF)" +msgstr "" +"25xx: Definir rampa do coeficiente do filtro K1 (sinalizado, mais lento) (00 " +"a FF)" + +#: src/engine/sysDef.cpp:1651 +msgid "26xx: Set envelope filter coefficient k2 ramp (signed) (00 to FF)" +msgstr "26xx: Definir rampa do coeficiente do filtro K2 (sinalizado) (00 a FF)" + +#: src/engine/sysDef.cpp:1652 +msgid "" +"27xx: Set envelope filter coefficient k2 ramp (signed, slower) (00 to FF)" +msgstr "" +"27xx: Definir rampa do coeficiente do filtro K2 (sinalizado, mais lento) (00 " +"a FF)" + +#: src/engine/sysDef.cpp:1656 +msgid "120x: Set pause (bit 0)" +msgstr "120x: Definir pausa (bit 0)" + +#: src/engine/sysDef.cpp:1658 +msgid "2xxx: Set envelope count (000 to 1FF)" +msgstr "2xxx: Definir contagem do envelope (000 a 1FF)" + +#: src/engine/sysDef.cpp:1659 +msgid "3xxx: Set filter coefficient K1 (000 to FFF)" +msgstr "3xxx: Definir coeficiente do filtro K1 (000 a FFF)" + +#: src/engine/sysDef.cpp:1660 +msgid "4xxx: Set filter coefficient K2 (000 to FFF)" +msgstr "4xxx: Definir coeficiente do filtro K2 (000 a FFF)" + +#: src/engine/sysDef.cpp:1667 +msgid "Ensoniq ES5506" +msgstr "" + +#: src/engine/sysDef.cpp:1668 +msgid "" +"a sample chip made by Ensoniq, which is the basis for the GF1 chip found in " +"Gravis' Ultrasound cards." +msgstr "" +"um chip de sample feito pela Ensoniq, que é a base para o chip GF1 " +"encontrado nas placas Gravis Ultrasound." + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 29" +msgstr "Canal 29" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 30" +msgstr "Canal 30" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 31" +msgstr "Canal 31" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 32" +msgstr "Canal 32" + +#: src/engine/sysDef.cpp:1679 +msgid "Yamaha Y8950" +msgstr "" + +#: src/engine/sysDef.cpp:1680 +msgid "like OPL but with an ADPCM channel." +msgstr "como o OPL, mas com um canal ADPCM." + +#: src/engine/sysDef.cpp:1691 +msgid "Yamaha Y8950 with drums" +msgstr "Yamaha Y8950 em modo bateria" + +#: src/engine/sysDef.cpp:1692 +msgid "the Y8950 chip, in drums mode." +msgstr "o chip Y8950 mas com modo bateria habilitado." + +#: src/engine/sysDef.cpp:1703 +msgid "Konami SCC+" +msgstr "" + +#: src/engine/sysDef.cpp:1704 +msgid "" +"this is a variant of Konami's SCC chip with the last channel's wavetable " +"being independent." +msgstr "" +"essa é uma variante do chip Konami SCC com a wavetable do último canal sendo " +"independente." + +#: src/engine/sysDef.cpp:1715 +msgid "12xx: Set pulse width (0 to 7F)" +msgstr "12xx: Definir largura de pulso (0 a 7F)" + +#: src/engine/sysDef.cpp:1716 +msgid "13xx: Set resonance (0 to FF)" +msgstr "13xx: Definir ressonância (0 a FF)" + +#: src/engine/sysDef.cpp:1717 +msgid "" +"14xx: Set filter mode (bit 0: ring mod; bit 1: low pass; bit 2: high pass; " +"bit 3: band pass)" +msgstr "" +"14xx: Definir modo de filtro (bit 0: modulação anel; bit 1: passa baixa; bit " +"2: passa alta; bit 3: passa banda)" + +#: src/engine/sysDef.cpp:1718 +msgid "15xx: Set frequency sweep period low byte" +msgstr "15xx: Definir byte inferior do período do sweep de frequência" + +#: src/engine/sysDef.cpp:1719 +msgid "16xx: Set frequency sweep period high byte" +msgstr "16xx: Definir byte superior do período de sweep de frequência" + +#: src/engine/sysDef.cpp:1720 +msgid "17xx: Set volume sweep period low byte" +msgstr "17xx: Definir byte inferior do período do sweep de volume" + +#: src/engine/sysDef.cpp:1721 +msgid "18xx: Set volume sweep period high byte" +msgstr "18xx: Definir byte superior do período do sweep de volume" + +#: src/engine/sysDef.cpp:1722 +msgid "19xx: Set cutoff sweep period low byte" +msgstr "19xx: Definir byte inferior do período do sweep de ponto de corte" + +#: src/engine/sysDef.cpp:1723 +msgid "1Axx: Set cutoff sweep period high byte" +msgstr "1Axx: Definir byte superior do período do sweep de ponto de corte" + +#: src/engine/sysDef.cpp:1724 +msgid "1Bxx: Set frequency sweep boundary" +msgstr "1Bxx: Definir limite do sweep de frequência" + +#: src/engine/sysDef.cpp:1725 +msgid "1Cxx: Set volume sweep boundary" +msgstr "1Cxx: Definir limite do sweep de volume" + +#: src/engine/sysDef.cpp:1726 +msgid "1Dxx: Set cutoff sweep boundary" +msgstr "1Dxx: Definir limite do sweep de ponto de corte" + +#: src/engine/sysDef.cpp:1727 +msgid "1Exx: Set phase reset period low byte" +msgstr "1Exx: Definir byte inferior do período de redefinição de fase" + +#: src/engine/sysDef.cpp:1728 +msgid "1Fxx: Set phase reset period high byte" +msgstr "1Fxx: Definir byte superior do período de redefinição de fase" + +#: src/engine/sysDef.cpp:1729 +msgid "20xx: Toggle frequency sweep (bit 0-6: speed; bit 7: direction is up)" +msgstr "" +"20xx: Alternar sweep de frequência (bit 0-6: velocidade; bit 7: direção é " +"para cima)" + +#: src/engine/sysDef.cpp:1730 +msgid "" +"21xx: Toggle volume sweep (bit 0-4: speed; bit 5: direction is up; bit 6: " +"loop; bit 7: alternate)" +msgstr "" +"21xx: Alternar sweep de volume (bit 0-4: velocidade; bit 5: direção é para " +"cima; bit 6: repetir; bit 7: alternar)" + +#: src/engine/sysDef.cpp:1731 +msgid "22xx: Toggle cutoff sweep (bit 0-6: speed; bit 7: direction is up)" +msgstr "" +"22xx: Alternar sweep de ponto de corte (bit 0-6: velocidade; bit 7: direção " +"é para cima)" + +#: src/engine/sysDef.cpp:1739 +msgid "tildearrow Sound Unit" +msgstr "" + +#: src/engine/sysDef.cpp:1740 +msgid "" +"tildearrow's fantasy sound chip. put SID, AY and VERA in a blender, and you " +"get this!" +msgstr "" +"chip de som de fantasia do tildearrow. coloque o SID, AY e VERA num " +"liquidificador, e você obtém isso!" + +#: src/engine/sysDef.cpp:1751 +msgid "OKI MSM6295" +msgstr "" + +#: src/engine/sysDef.cpp:1752 +msgid "an ADPCM sound chip manufactured by OKI and used in many arcade boards." +msgstr "" +"um chip de som ADPCM fabricado pela OKI e utilizado em muitas placas de " +"fliperama." + +#: src/engine/sysDef.cpp:1759 +msgid "20xx: Set chip output rate (0: clock/132; 1: clock/165)" +msgstr "20xx: Definir taxa de amostragem do chip (0: clock/132; 1: clock/165)" + +#: src/engine/sysDef.cpp:1764 +msgid "OKI MSM6258" +msgstr "" + +#: src/engine/sysDef.cpp:1765 +msgid "an ADPCM sound chip manufactured by OKI and used in the Sharp X68000." +msgstr "um chip de som ADPCM fabricado pela OKI e utilizado no Sharp X68000." + +#: src/engine/sysDef.cpp:1766 src/engine/sysDef.cpp:1887 +#: src/gui/editControls.cpp:437 src/gui/settings.cpp:4170 +#: src/gui/guiConst.cpp:1397 src/gui/insEdit.cpp:2628 src/gui/insEdit.cpp:2666 +msgid "Sample" +msgstr "Sample" + +#: src/engine/sysDef.cpp:1772 +msgid "20xx: Set frequency divider (0-2)" +msgstr "20xx: Definir divisor de frequência (0-2)" + +#: src/engine/sysDef.cpp:1773 +msgid "21xx: Select clock rate (0: full; 1: half)" +msgstr "21xx: Definir taxa de clock (0: 100%; 1: 50%)" + +#: src/engine/sysDef.cpp:1778 +msgid "Yamaha YMZ280B (PCMD8)" +msgstr "" + +#: src/engine/sysDef.cpp:1779 +msgid "" +"used in some arcade boards. Can play back either 4-bit ADPCM, 8-bit PCM or " +"16-bit PCM." +msgstr "" +"utilizado em algumas placas de fliperama. Pode tocar ADPCM 4-bit, PCM 8-bit " +"ou PCM 16-bit." + +#: src/engine/sysDef.cpp:1797 src/gui/settings.cpp:4001 +msgid "Namco WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1798 +msgid "" +"a wavetable sound chip used in Pac-Man, among other early Namco arcade games." +msgstr "" +"um chip de som wavetable utilizado no fliperama Pac-Man, juntamente com " +"outros dos primeiros fliperamas da Namco." + +#: src/engine/sysDef.cpp:1808 +msgid "Namco C15 WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1809 +msgid "" +"successor of the original Namco WSG chip, used in later Namco arcade games." +msgstr "" +"sucessos do chip Namco WSG original, utilizado em fliperamas Namco " +"posteriores." + +#: src/engine/sysDef.cpp:1819 +msgid "Namco C30 WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1820 +msgid "like Namco C15 but with stereo sound." +msgstr "similar ao Namco C15 mas com som estéreo." + +#: src/engine/sysDef.cpp:1830 +msgid "OKI MSM5232" +msgstr "" + +#: src/engine/sysDef.cpp:1831 +msgid "" +"a square wave additive synthesis chip made by OKI. used in some arcade " +"machines and instruments." +msgstr "" +"um chip de síntese aditiva de ondas quadradas feito pela OKI. utilizado em " +"algumas máquinas de fliperama e instrumentos.." + +#: src/engine/sysDef.cpp:1839 +msgid "10xy: Set group control (x: sustain; y: part toggle bitmask)" +msgstr "" +"10xy: Definir controle de grupo (x: sustentação; y: máscara de bits para " +"alternar partes)" + +#: src/engine/sysDef.cpp:1840 src/engine/sysDef.cpp:1998 +msgid "11xx: Set noise mode" +msgstr "11xx: Definir modo de ruído" + +#: src/engine/sysDef.cpp:1841 +msgid "12xx: Set group attack (0 to 5)" +msgstr "12xx: Definir ataque do grupo (0 a 5)" + +#: src/engine/sysDef.cpp:1842 +msgid "13xx: Set group decay (0 to 11)" +msgstr "13xx: Definir decaimento do grupo (0 a 11)" + +#: src/engine/sysDef.cpp:1847 +msgid "Yamaha YM2612 (OPN2) with DualPCM" +msgstr "Yamaha YM2612 (OPN2) com DualPCM" + +#: src/engine/sysDef.cpp:1848 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this system uses software mixing to provide two sample channels." +msgstr "" +"esse chip é mais conhecido por ter sido utilizado no Sega Mega Drive (mas " +"ele também foi usado no computador FM Towns).\n" +"esse sistema utiliza mistura de samples em software para prover dois canais " +"de sample." + +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +msgid "FM 6/PCM 1" +msgstr "FM 6/PCM 1" + +#: src/engine/sysDef.cpp:1859 +msgid "Yamaha YM2612 (OPN2) Extended Channel 3 with DualPCM and CSM" +msgstr "Yamaha YM2612 (OPN2) Extended Channel 3 com DualPCM e CSM" + +#: src/engine/sysDef.cpp:1860 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this system uses software mixing to provide two sample channels.\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:1872 src/gui/settings.cpp:3971 +msgid "T6W28" +msgstr "" + +#: src/engine/sysDef.cpp:1873 +msgid "" +"an SN76489 derivative used in Neo Geo Pocket, has independent stereo volume " +"and noise channel frequency." +msgstr "" +"uma derivativa do SN76489 utilizada no Neo Geo Pocket que possui volume " +"estéreo independente e frequência independente para o canal de ruído." + +#: src/engine/sysDef.cpp:1880 +msgid "20xx: Set noise length (0: short, 1: long)" +msgstr "20xx: Definir comprimento do ruído (0: curto, 1: longo)" + +#: src/engine/sysDef.cpp:1885 +msgid "Generic PCM DAC" +msgstr "DAC PCM Genérico" + +#: src/engine/sysDef.cpp:1886 +msgid "as generic sample playback as it gets." +msgstr "simplesmente reprodução de samples, o mais genérico possível." + +#: src/engine/sysDef.cpp:1898 +msgid "Konami K007232" +msgstr "" + +#: src/engine/sysDef.cpp:1899 +msgid "this PCM chip was widely used at Konami arcade boards in 1986-1990." +msgstr "" +"esse chip PCM foi amplamente utilizado em placas de fliperama da Konami " +"entre 1986 e 1990." + +#: src/engine/sysDef.cpp:1908 +msgid "Irem GA20" +msgstr "" + +#: src/engine/sysDef.cpp:1909 +msgid "" +"yet another PCM chip from Irem. like Amiga, but less pitch resolution and no " +"sample loop." +msgstr "" +"mais um chip PCM da Irem. similar ao Amiga, mas com menos resolução de tom e " +"sem repetição de samples." + +#: src/engine/sysDef.cpp:1918 +msgid "Sharp SM8521" +msgstr "" + +#: src/engine/sysDef.cpp:1919 +msgid "a SoC with wavetable sound hardware." +msgstr "um SoC com hardware de som wavetable." + +#: src/engine/sysDef.cpp:1929 +msgid "Casio PV-1000" +msgstr "" + +#: src/engine/sysDef.cpp:1930 +msgid "" +"a game console with 3 channels of square wave. it's what happens after " +"fusing TIA and VIC together." +msgstr "" +"um console de jogo com 3 canais de onda quadrada. é o que acontece quando se " +"funde a TIA e o VIC juntos." + +#: src/engine/sysDef.cpp:1937 +msgid "10xx: Set ring modulation (0: disable, 1: enable)" +msgstr "10xx: Alternar modulação anel (0: desabilitar, 1: habilitar)" + +#: src/engine/sysDef.cpp:1942 +msgid "ZX Spectrum Beeper (QuadTone Engine)" +msgstr "Beeper do ZX Spectrum (Motor QuadTone)" + +#: src/engine/sysDef.cpp:1943 +msgid "" +"another ZX Spectrum beeper system with full PWM pulses and 3-level volume " +"per channel. it also has a pitchable overlay sample channel." +msgstr "" +"outro sistema de beeper do ZX Spectrum, dessa vez com pulsos PWM completos e " +"volume de 3 níveis por canal. ele também possui um canal de sobreposição de " +"sample com tom controlável." + +#: src/engine/sysDef.cpp:1955 +msgid "Konami K053260" +msgstr "" + +#: src/engine/sysDef.cpp:1956 +msgid "this PCM chip was widely used at Konami arcade boards in 1990-1992." +msgstr "" +"esse chip PCM foi largamente utilizado em placas de fliperama da Konami " +"entre 1990 e 1992." + +#: src/engine/sysDef.cpp:1968 +msgid "MOS Technology TED" +msgstr "" + +#: src/engine/sysDef.cpp:1969 +msgid "" +"two square waves (one may be turned into noise). used in the Commodore " +"Plus/4, 16 and 116." +msgstr "" +"duas ondas quadradas (uma pode ser transformada em ruído). utilizado no " +"Commodore Plus/4, 16 e 116." + +#: src/engine/sysDef.cpp:1978 +msgid "Namco C140" +msgstr "" + +#: src/engine/sysDef.cpp:1979 +msgid "Namco's first PCM chip from 1987. it's pretty good for being so." +msgstr "o primeiro chip PCM da Namco de 1987. é muito bom pelo que é." + +#: src/engine/sysDef.cpp:1989 +msgid "Namco C219" +msgstr "" + +#: src/engine/sysDef.cpp:1990 +msgid "" +"Namco's PCM chip used in their NA-1/2 hardware.\n" +"very similar to C140, but has noise generator." +msgstr "" +"chip de som PCM da Namco utilizado em suas placas de fliperama NA-1/2.\n" +"muito similar ao C140, porém contém um gerador de ruído." + +#: src/engine/sysDef.cpp:1999 +msgid "12xy: Set invert mode (x: surround; y: invert)" +msgstr "12xy: Definir modo de inversão (x: surround; y: inverter)" + +#: src/engine/sysDef.cpp:2004 +msgid "ESS ES1xxx series (ESFM)" +msgstr "ESS série ES1xxx (ESFM)" + +#: src/engine/sysDef.cpp:2005 +msgid "" +"a unique FM synth featured in PC sound cards.\n" +"based on the OPL3 design, but with lots of its features extended." +msgstr "" +"um sintetizador FM único encontrado em placas de som de PC.\n" +"baseado no design do OPL3, mas com muitos de seus recursos estendidos." + +#: src/engine/sysDef.cpp:2006 +msgid "FM 11" +msgstr "" + +#: src/engine/sysDef.cpp:2012 +msgid "2Exx: Toggle hard envelope reset on new notes" +msgstr "2Exx: Alternar reinício brusco do envelope em novas notas" + +#: src/engine/sysDef.cpp:2018 +msgid "PowerNoise" +msgstr "" + +#: src/engine/sysDef.cpp:2019 +msgid "" +"a fantasy sound chip designed by jvsTSX and The Beesh-Spweesh!\n" +"used in the Hexheld fantasy console." +msgstr "" +"um chip de som fantasia desenvolvido por jvsTSX e The Beesh-Spweesh!\n" +"utilizado no console fantasia Hexheld." + +#: src/engine/sysDef.cpp:2020 +msgid "Noise 1" +msgstr "Ruído 1" + +#: src/engine/sysDef.cpp:2020 +msgid "Noise 2" +msgstr "Ruído 2" + +#: src/engine/sysDef.cpp:2020 +msgid "Noise 3" +msgstr "Ruído 3" + +#: src/engine/sysDef.cpp:2020 +msgid "Slope" +msgstr "Rampa" + +#: src/engine/sysDef.cpp:2026 +msgid "" +"20xx: Load low byte of noise channel LFSR (00 to FF) or slope channel " +"accumulator (00 to 7F)" +msgstr "" +"20xx: Carregar byte inferior do LFSR do canal de ruído (00 a FF) ou " +"acumulador do canal de rampa (00 a 7F)" + +#: src/engine/sysDef.cpp:2027 +msgid "21xx: Load high byte of noise channel LFSR (00 to FF)" +msgstr "21xx: Carregar byte superior do LFSR do canal de ruído (00 to FF)" + +#: src/engine/sysDef.cpp:2028 +msgid "22xx: Write to I/O port A" +msgstr "22xx: Escrever na porta E/S A" + +#: src/engine/sysDef.cpp:2029 +msgid "23xx: Write to I/O port B" +msgstr "23xx: Escrever na porta E/S B" + +#: src/engine/sysDef.cpp:2035 src/gui/settings.cpp:4026 +msgid "Dave" +msgstr "" + +#: src/engine/sysDef.cpp:2036 +msgid "" +"this chip was featured in the Enterprise 128 computer. it is similar to " +"POKEY, but with stereo output." +msgstr "" + +#: src/engine/sysDef.cpp:2037 +msgid "DAC Left" +msgstr "DAC Esquerdo" + +#: src/engine/sysDef.cpp:2037 +msgid "DAC Right" +msgstr "DAC Direito" + +#: src/engine/sysDef.cpp:2043 +msgid "10xx: Set waveform (0 to 4; 0 to 3 on noise)" +msgstr "10xx: Definir forma de onda (0 a 4; 0 a 3 no canal de ruído)" + +#: src/engine/sysDef.cpp:2044 +msgid "11xx: Set noise frequency source (0: fixed; 1-3: channels 1 to 3)" +msgstr "" +"11xx: Definir fonte da frequência do ruído (0: fixa; 1-3: canais 1 a 3)" + +#: src/engine/sysDef.cpp:2045 +msgid "12xx: Toggle high-pass with next channel" +msgstr "12xx: Alternar passa alta com o próximo canal" + +#: src/engine/sysDef.cpp:2046 +msgid "13xx: Toggle ring modulation with channel+2" +msgstr "13xx: Alternar modulação anel com o canal+2" + +#: src/engine/sysDef.cpp:2047 +msgid "14xx: Toggle swap counters (noise only)" +msgstr "14xx: Alternar trocar contadores (somente ruído)" + +#: src/engine/sysDef.cpp:2048 +msgid "15xx: Toggle low pass (noise only)" +msgstr "15xx: Alternar passa baixa (somente ruído)" + +#: src/engine/sysDef.cpp:2049 +msgid "16xx: Set clock divider (0: /2; 1: /3)" +msgstr "16xx: Definir divisor de clock (0: /2; 1: /3)" + +#: src/engine/sysDef.cpp:2054 +msgid "Game Boy Advance DMA Sound" +msgstr "" + +#: src/engine/sysDef.cpp:2055 +msgid "" +"additional PCM FIFO channels in Game Boy Advance driven directly by its DMA " +"hardware." +msgstr "" +"canais PCM FIFO adicionais no Game Boy Advance controlados diretamente por " +"seu hardware de DMA." + +#: src/engine/sysDef.cpp:2068 +msgid "Game Boy Advance MinMod" +msgstr "" + +#: src/engine/sysDef.cpp:2069 +msgid "" +"additional PCM FIFO channels in Game Boy Advance driven by software mixing " +"to provide up to sixteen sample channels" +msgstr "" + +#: src/engine/sysDef.cpp:2078 +msgid "11xy: Set echo channel (x: left/right source; y: delay (0 disables))" +msgstr "" +"11xy: Definir canal de eco (x: fonte esquerda/direita; y: atraso (0 " +"desabilita))" + +#: src/engine/sysDef.cpp:2079 +msgid "12xy: Toggle invert (x: left; y: right)" +msgstr "12xy: Alternar inversão (x: lado esquerdo; y: lado direito)" + +#: src/engine/sysDef.cpp:2084 src/gui/settings.cpp:4027 +msgid "Nintendo DS" +msgstr "" + +#: src/engine/sysDef.cpp:2085 +msgid "a handheld video game console with two screens. it uses a stylus." +msgstr "" +"um console de videogame portátil com duas telas. ele usa uma canetinha." + +#: src/engine/sysDef.cpp:2093 +msgid "1Fxx: Set global volume (0 to 7F)" +msgstr "1Fxx: Definir volume global (0 a 7F)" + +#: src/engine/sysDef.cpp:2098 +msgid "5E01" +msgstr "" + +#: src/engine/sysDef.cpp:2099 +msgid "" +"a fantasy sound chip created by Euly. it is based on Ricoh 2A03, adding a " +"couple features such as 32 noise pitches, an extra duty cycle, and three " +"waveforms (besides triangle)." +msgstr "" + +#: src/engine/sysDef.cpp:2107 +msgid "" +"12xx: Set duty cycle/noise mode/waveform (pulse/wave: 0 to 3; noise: 0 or 1)" +msgstr "" + +#: src/engine/sysDef.cpp:2120 src/gui/settings.cpp:4030 +msgid "Bifurcator" +msgstr "" + +#: src/engine/sysDef.cpp:2121 +msgid "a fantasy sound chip using logistic map iterations to generate sound." +msgstr "" + +#: src/engine/sysDef.cpp:2128 +msgid "10xx: Load low byte of channel sample state" +msgstr "" + +#: src/engine/sysDef.cpp:2129 +msgid "11xx: Load high byte of channel sample state" +msgstr "" + +#: src/engine/sysDef.cpp:2130 +msgid "12xx: Set low byte of channel parameter" +msgstr "" + +#: src/engine/sysDef.cpp:2131 +msgid "13xx: Set high byte of channel parameter" +msgstr "" + +#: src/engine/sysDef.cpp:2136 src/gui/settings.cpp:4031 +msgid "SID2" +msgstr "" + +#: src/engine/sysDef.cpp:2137 +msgid "" +"a fantasy sound chip created by LTVA. it is similar to the SID chip, but " +"with many of its problems fixed." +msgstr "" + +#: src/engine/sysDef.cpp:2148 +msgid "Dummy System" +msgstr "Sistema Fantoche" + +#: src/engine/sysDef.cpp:2149 +msgid "this is a system designed for testing purposes." +msgstr "este é um sistema desenvolvido para propósito de testes." + +#: src/engine/engine.cpp:51 +msgid "00xy: Arpeggio" +msgstr "00xy: Arpejo" + +#: src/engine/engine.cpp:53 +msgid "01xx: Pitch slide up" +msgstr "01xx: Slide de tom para cima" + +#: src/engine/engine.cpp:55 +msgid "02xx: Pitch slide down" +msgstr "02xx: Slide de tom para baixo" + +#: src/engine/engine.cpp:57 +msgid "03xx: Portamento" +msgstr "03xx: Portamento" + +#: src/engine/engine.cpp:59 +msgid "04xy: Vibrato (x: speed; y: depth)" +msgstr "04xy: Vibrato (x: velocidade; y: profundidade)" + +#: src/engine/engine.cpp:61 +msgid "05xy: Volume slide + vibrato (compatibility only!)" +msgstr "05xy: Slide de volume + vibrato (apenas para compatibilidade!)" + +#: src/engine/engine.cpp:63 +msgid "06xy: Volume slide + portamento (compatibility only!)" +msgstr "06xy: Slide de volume + portamento (apenas para compatibilidade!)" + +#: src/engine/engine.cpp:65 +msgid "07xy: Tremolo (x: speed; y: depth)" +msgstr "07xy: Tremolo (x: velocidade; y: profundidade)" + +#: src/engine/engine.cpp:67 +msgid "08xy: Set panning (x: left; y: right)" +msgstr "08xy: Definir balanço (x: esquerda; y: direita)" + +#: src/engine/engine.cpp:69 +msgid "09xx: Set groove pattern (speed 1 if no grooves exist)" +msgstr "09xx: Escolher padrão de groove (velocidade 1 se não houverem grooves)" + +#: src/engine/engine.cpp:71 +msgid "0Axy: Volume slide (0y: down; x0: up)" +msgstr "0Axy: Slide de volume (0y: para baixo; x0: para cima)" + +#: src/engine/engine.cpp:73 +msgid "0Bxx: Jump to pattern" +msgstr "0Bxx: Pular para sequência" + +#: src/engine/engine.cpp:75 +msgid "0Cxx: Retrigger" +msgstr "0Cxx: Reacionar nota" + +#: src/engine/engine.cpp:77 +msgid "0Dxx: Jump to next pattern" +msgstr "0Dxx: Pular para a próxima sequência" + +#: src/engine/engine.cpp:79 +msgid "0Fxx: Set speed (speed 2 if no grooves exist)" +msgstr "" +"0Fxx: Definir velocidade (define a velocidade 2 se não houverem grooves)" + +#: src/engine/engine.cpp:81 +msgid "80xx: Set panning (00: left; 80: center; FF: right)" +msgstr "80xx: Definir balanço (00: esquerda; 80: centro; FF: direita)" + +#: src/engine/engine.cpp:83 +msgid "81xx: Set panning (left channel)" +msgstr "81xx: Definir balanço (canal esquerdo)" + +#: src/engine/engine.cpp:85 +msgid "82xx: Set panning (right channel)" +msgstr "82xx: Definir balanço (canal direito)" + +#: src/engine/engine.cpp:87 +msgid "88xy: Set panning (rear channels; x: left; y: right)" +msgstr "88xy: Definir balanço (canais traseiros; x: esquerda; y: direita)" + +#: src/engine/engine.cpp:90 +msgid "89xx: Set panning (rear left channel)" +msgstr "89xx: Definir balanço (canal traseiro esquerdo)" + +#: src/engine/engine.cpp:93 +msgid "8Axx: Set panning (rear right channel)" +msgstr "8Axx: Definir balanço (canal traseiro direito)" + +#: src/engine/engine.cpp:96 +msgid "Cxxx: Set tick rate (hz)" +msgstr "Cxxx: Definir taxa de ticks (Hz)" + +#: src/engine/engine.cpp:98 +msgid "E0xx: Set arp speed" +msgstr "E0xx: Definir velocidade do arpejo" + +#: src/engine/engine.cpp:100 +msgid "E1xy: Note slide up (x: speed; y: semitones)" +msgstr "E1xy: Slide de nota para cima (x: velocidade; y: semitons)" + +#: src/engine/engine.cpp:102 +msgid "E2xy: Note slide down (x: speed; y: semitones)" +msgstr "E2xy: Slide de nota para baixo (x: velocidae; y: semitons)" + +#: src/engine/engine.cpp:104 +msgid "E3xx: Set vibrato shape (0: up/down; 1: up only; 2: down only)" +msgstr "" +"E3xx: Definir formato do vibrato (0: cima/baixo; 1: cima somente; 2: baixo " +"somente)" + +#: src/engine/engine.cpp:106 +msgid "E4xx: Set vibrato range" +msgstr "E4xx: Definir alcance do vibrato" + +#: src/engine/engine.cpp:108 +msgid "E5xx: Set pitch (80: center)" +msgstr "E5xx: Definir tom (desafinação; 80: centro)" + +#: src/engine/engine.cpp:110 +msgid "E6xy: Quick legato (x: time (0-7 up; 8-F down); y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:112 +msgid "E7xx: Macro release" +msgstr "E7xx: Repouso de macro atrasado (x: ticks)" + +#: src/engine/engine.cpp:114 +msgid "E8xy: Quick legato up (x: time; y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:116 +msgid "E9xy: Quick legato down (x: time; y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:118 +msgid "EAxx: Legato" +msgstr "EAxx: Legato" + +#: src/engine/engine.cpp:120 +msgid "EBxx: Set LEGACY sample mode bank" +msgstr "EBxx: Definir banco de samples modo LEGADO" + +#: src/engine/engine.cpp:122 +msgid "ECxx: Note cut" +msgstr "ECxx: Corte de nota" + +#: src/engine/engine.cpp:124 +msgid "EDxx: Note delay" +msgstr "EDxx: Atraso de nota" + +#: src/engine/engine.cpp:126 +msgid "EExx: Send external command" +msgstr "EExx: Enviar comando externo" + +#: src/engine/engine.cpp:128 +msgid "F0xx: Set tick rate (bpm)" +msgstr "F0xx: Definir taxa de ticks (bpm)" + +#: src/engine/engine.cpp:130 +msgid "F1xx: Single tick note slide up" +msgstr "F1xx: Slide de um tick de nota para cima" + +#: src/engine/engine.cpp:132 +msgid "F2xx: Single tick note slide down" +msgstr "F2xx: Slide de um tick de nota para baixo" + +#: src/engine/engine.cpp:134 +msgid "F3xx: Fine volume slide up" +msgstr "F3xx: Slide fino de volume para cima" + +#: src/engine/engine.cpp:136 +msgid "F4xx: Fine volume slide down" +msgstr "F4xx: Slide fino de volume para baixo" + +#: src/engine/engine.cpp:138 +msgid "F5xx: Disable macro (see manual)" +msgstr "F5xx: Desabilitar macro (veja o manual)" + +#: src/engine/engine.cpp:140 +msgid "F6xx: Enable macro (see manual)" +msgstr "F6xx: Habilitar macro (veja o manual)" + +#: src/engine/engine.cpp:142 +msgid "F7xx: Restart macro (see manual)" +msgstr "F7xx: Reiniciar macro (veja o manual)" + +#: src/engine/engine.cpp:144 +msgid "F8xx: Single tick volume slide up" +msgstr "F8xx: Slide de um tick de volume para cima" + +#: src/engine/engine.cpp:146 +msgid "F9xx: Single tick volume slide down" +msgstr "F9xx: Slide de um tick de volume para baixo" + +#: src/engine/engine.cpp:148 +msgid "FAxx: Fast volume slide (0y: down; x0: up)" +msgstr "FAxx: Slide rápido de volume (0y: para baixo; x0: para cima)" + +#: src/engine/engine.cpp:150 +msgid "FCxx: Note release" +msgstr "FCxx: Repouso de nota atrasado (x: ticks)" + +#: src/engine/engine.cpp:152 +msgid "FDxx: Set virtual tempo numerator" +msgstr "FDxx: Definir numerador do tempo virtual" + +#: src/engine/engine.cpp:154 +msgid "FExx: Set virtual tempo denominator" +msgstr "FExx: Definir denominador do tempo virtual" + +#: src/engine/engine.cpp:156 +msgid "FFxx: Stop song" +msgstr "FFxx: Parar música" + +#: src/engine/engine.cpp:160 +msgid "9xxx: Set sample offset*256" +msgstr "9xxx: Definir deslocamento de sample*256" + +#: src/engine/engine.cpp:164 +msgid "90xx: Set sample offset (first byte)" +msgstr "" + +#: src/engine/engine.cpp:166 +msgid "91xx: Set sample offset (second byte, ×256)" +msgstr "" + +#: src/engine/engine.cpp:168 +msgid "92xx: Set sample offset (third byte, ×65536)" +msgstr "" + +#: src/engine/engine.cpp:187 src/gui/settings.cpp:4074 +msgid "Invalid effect" +msgstr "" + +#: src/engine/engine.cpp:354 src/gui/gui.cpp:2259 src/gui/gui.cpp:2422 +#, c-format +msgid "on seek: %s" +msgstr "ao avançar: %s" + +#: src/engine/engine.cpp:361 src/gui/gui.cpp:2266 src/gui/gui.cpp:2429 +#, c-format +msgid "on pre tell: %s" +msgstr "ao predeterminar posição: %s" + +#: src/engine/engine.cpp:368 src/engine/engine.cpp:2768 +#: src/gui/settings.cpp:5754 src/gui/gui.cpp:2273 src/gui/gui.cpp:2436 +msgid "file is empty" +msgstr "o arquivo está vazio" + +#: src/engine/engine.cpp:371 src/gui/gui.cpp:2276 src/gui/gui.cpp:2439 +#, c-format +msgid "on tell: %s" +msgstr "ao determinar posição: %s" + +#: src/engine/engine.cpp:378 +#, c-format +msgid "ROM size mismatch, expected: %d bytes, was: %d" +msgstr "divergência de tamanho da ROM, esperado: %d bytes, encontrado: %d" + +#: src/engine/engine.cpp:383 src/gui/settings.cpp:5763 src/gui/gui.cpp:2283 +#: src/gui/gui.cpp:2446 +#, c-format +msgid "on get size: %s" +msgstr "ao obter tamanho: %s" + +#: src/engine/engine.cpp:390 src/gui/settings.cpp:5770 src/gui/gui.cpp:2290 +#: src/gui/gui.cpp:2453 +#, c-format +msgid "on read: %s" +msgstr "ao ler: %s" + +#: src/engine/engine.cpp:1076 src/engine/engine.cpp:1181 +#: src/engine/engine.cpp:1290 +msgid "invalid index" +msgstr "índice inválido" + +#: src/engine/engine.cpp:1080 src/engine/engine.cpp:1135 +#: src/engine/engine.cpp:1189 +#, c-format +msgid "max number of total channels is %d" +msgstr "o número máximo total de canais é %d" + +#: src/engine/engine.cpp:1131 src/engine/engine.cpp:1185 +#, c-format +msgid "max number of systems is %d" +msgstr "o número máximo de sistemas é %d" + +#: src/engine/engine.cpp:1286 +msgid "cannot remove the last one" +msgstr "não pode remover o último" + +#: src/engine/engine.cpp:1460 +msgid "source and destination are equal" +msgstr "a origem e o destino são os mesmos" + +#: src/engine/engine.cpp:1464 +msgid "invalid source index" +msgstr "índice de origem inválido" + +#: src/engine/engine.cpp:1468 +msgid "invalid destination index" +msgstr "índice de destino inválido" + +#: src/engine/engine.cpp:2636 +#, c-format +msgid "Instrument %d" +msgstr "Instrumento %d" + +#: src/engine/engine.cpp:2710 src/engine/engine.cpp:2727 +#: src/gui/doAction.cpp:825 src/gui/doAction.cpp:843 src/gui/doAction.cpp:1634 +#: src/gui/gui.cpp:6159 src/gui/insEdit.cpp:6860 +msgid "too many wavetables!" +msgstr "há muitas wavetables!" + +#: src/engine/engine.cpp:2752 +#, c-format +msgid "could not seek to end: %s" +msgstr "não pôde avançar até o final: %s" + +#: src/engine/engine.cpp:2758 +#, c-format +msgid "could not determine file size: %s" +msgstr "não pode determinar o tamanho do arquivo: %s" + +#: src/engine/engine.cpp:2763 +msgid "file size is invalid!" +msgstr "o tamanho do arquivo é inválido!" + +#: src/engine/engine.cpp:2773 +#, c-format +msgid "could not seek to beginning: %s" +msgstr "não pode rebobinar até o começo: %s" + +#: src/engine/engine.cpp:2780 +#, c-format +msgid "could not read entire file: %s" +msgstr "não pôde ler o arquivo inteiro: %s" + +#: src/engine/engine.cpp:2806 +msgid "invalid wavetable header/data!" +msgstr "cabeçalho/dados da wavetable inválidos!" + +#: src/engine/engine.cpp:2877 +msgid "premature end of file" +msgstr "fim prematuro do arquivo" + +#: src/engine/engine.cpp:2904 src/engine/engine.cpp:2926 +#: src/gui/doAction.cpp:909 src/gui/doAction.cpp:921 +msgid "too many samples!" +msgstr "há muitas samples!" + +#: src/engine/engine.cpp:2911 +#, c-format +msgid "Sample %d" +msgstr "Sample %d" + +#: src/engine/engine.cpp:3056 +#, c-format +msgid "no free patterns in channel %d!" +msgstr "não há sequências livres no canal %d!" + +#: src/gui/mixer.cpp:28 src/gui/insEdit.cpp:484 +msgid "left" +msgstr "esquerda" + +#: src/gui/mixer.cpp:29 src/gui/insEdit.cpp:483 +msgid "right" +msgstr "direita" + +#: src/gui/mixer.cpp:128 +msgid "input" +msgstr "entrada" + +#: src/gui/mixer.cpp:168 +msgid "output" +msgstr "saída" + +#: src/gui/mixer.cpp:226 src/gui/mixer.cpp:228 src/gui/editControls.cpp:454 +#: src/gui/guiConst.cpp:593 +msgid "Mixer" +msgstr "Mixer" + +#: src/gui/mixer.cpp:229 +msgid "Master Volume" +msgstr "Volume Mestre" + +#: src/gui/mixer.cpp:250 src/gui/exportOptions.cpp:90 +#: src/gui/userPresets.cpp:393 src/gui/userPresets.cpp:405 +#: src/gui/settings.cpp:1027 src/gui/settings.cpp:1041 +#: src/gui/waveEdit.cpp:1096 src/gui/sampleEdit.cpp:1128 +#: src/gui/insEdit.cpp:519 +msgid "Invert" +msgstr "Inverter" + +#: src/gui/mixer.cpp:268 src/gui/chanOsc.cpp:37 src/gui/userPresets.cpp:417 +#: src/gui/settings.cpp:241 src/gui/settings.cpp:1056 src/gui/settings.cpp:1439 +#: src/gui/settings.cpp:1451 src/gui/settings.cpp:3316 +#: src/gui/settings.cpp:3962 src/gui/findReplace.cpp:687 +#: src/gui/findReplace.cpp:943 src/gui/guiConst.cpp:228 +#: src/gui/sampleEdit.cpp:1003 src/gui/insEdit.cpp:5575 +#: src/gui/insEdit.cpp:5660 src/gui/insEdit.cpp:6920 src/gui/insEdit.cpp:6928 +#: src/gui/insEdit.cpp:6936 src/gui/insEdit.cpp:6946 src/gui/insEdit.cpp:6961 +#: src/gui/insEdit.cpp:6975 src/gui/insEdit.cpp:6987 src/gui/insEdit.cpp:7000 +#: src/gui/insEdit.cpp:7016 src/gui/insEdit.cpp:7022 src/gui/insEdit.cpp:7032 +#: src/gui/insEdit.cpp:7039 src/gui/insEdit.cpp:7045 src/gui/insEdit.cpp:7058 +#: src/gui/insEdit.cpp:7065 src/gui/insEdit.cpp:7072 src/gui/insEdit.cpp:7081 +#: src/gui/insEdit.cpp:7091 src/gui/insEdit.cpp:7099 src/gui/insEdit.cpp:7105 +#: src/gui/insEdit.cpp:7113 src/gui/insEdit.cpp:7120 src/gui/insEdit.cpp:7126 +#: src/gui/insEdit.cpp:7136 src/gui/insEdit.cpp:7148 src/gui/insEdit.cpp:7156 +#: src/gui/insEdit.cpp:7172 src/gui/insEdit.cpp:7177 src/gui/insEdit.cpp:7190 +#: src/gui/insEdit.cpp:7197 src/gui/insEdit.cpp:7208 src/gui/insEdit.cpp:7221 +#: src/gui/insEdit.cpp:7230 src/gui/insEdit.cpp:7237 src/gui/insEdit.cpp:7245 +#: src/gui/insEdit.cpp:7258 src/gui/insEdit.cpp:7263 src/gui/insEdit.cpp:7269 +#: src/gui/insEdit.cpp:7276 src/gui/insEdit.cpp:7284 src/gui/insEdit.cpp:7295 +#: src/gui/insEdit.cpp:7302 src/gui/insEdit.cpp:7310 src/gui/insEdit.cpp:7318 +#: src/gui/insEdit.cpp:7327 src/gui/insEdit.cpp:7335 src/gui/insEdit.cpp:7341 +#: src/gui/insEdit.cpp:7347 src/gui/insEdit.cpp:7353 src/gui/insEdit.cpp:7358 +#: src/gui/insEdit.cpp:7365 src/gui/insEdit.cpp:7372 src/gui/insEdit.cpp:7380 +#: src/gui/insEdit.cpp:7389 src/gui/insEdit.cpp:7397 src/gui/insEdit.cpp:7409 +#: src/gui/insEdit.cpp:7422 src/gui/insEdit.cpp:7433 src/gui/insEdit.cpp:7443 +#: src/gui/insEdit.cpp:7451 src/gui/insEdit.cpp:7461 src/gui/insEdit.cpp:7470 +msgid "Volume" +msgstr "Volume" + +#: src/gui/mixer.cpp:279 src/gui/userPresets.cpp:427 src/gui/settings.cpp:1067 +#: src/gui/guiConst.cpp:229 src/gui/insEdit.cpp:6923 src/gui/insEdit.cpp:6930 +#: src/gui/insEdit.cpp:6941 src/gui/insEdit.cpp:6965 src/gui/insEdit.cpp:7067 +#: src/gui/insEdit.cpp:7108 src/gui/insEdit.cpp:7152 src/gui/insEdit.cpp:7192 +#: src/gui/insEdit.cpp:7212 src/gui/insEdit.cpp:7232 src/gui/insEdit.cpp:7240 +#: src/gui/insEdit.cpp:7253 src/gui/insEdit.cpp:7265 src/gui/insEdit.cpp:7271 +#: src/gui/insEdit.cpp:7287 src/gui/insEdit.cpp:7297 src/gui/insEdit.cpp:7360 +#: src/gui/insEdit.cpp:7392 src/gui/insEdit.cpp:7438 src/gui/insEdit.cpp:7446 +msgid "Panning" +msgstr "Balanço" + +#: src/gui/mixer.cpp:290 src/gui/userPresets.cpp:433 src/gui/settings.cpp:1074 +msgid "Front/Rear" +msgstr "Frontal/Traseira" + +#: src/gui/mixer.cpp:299 src/gui/settings.cpp:4155 +msgid "Patchbay" +msgstr "Patchbay" + +#: src/gui/mixer.cpp:305 +msgid "Automatic patchbay" +msgstr "Patchbay automático" + +#: src/gui/mixer.cpp:310 +msgid "Display hidden ports" +msgstr "Mostrar portas ocultas" + +#: src/gui/mixer.cpp:312 +msgid "Display internal" +msgstr "Mostrar portas internas" + +#: src/gui/mixer.cpp:322 src/gui/mixer.cpp:383 src/gui/settings.cpp:1848 +#: src/gui/settings.cpp:2036 src/gui/songInfo.cpp:69 +msgid "System" +msgstr "Sistema" + +#: src/gui/mixer.cpp:354 +msgid "Sample Preview" +msgstr "Previsão de amostras" + +#: src/gui/mixer.cpp:367 src/gui/editControls.cpp:745 +#: src/gui/editControls.cpp:837 src/gui/editControls.cpp:953 +#: src/gui/editControls.cpp:1093 src/gui/settings.cpp:1437 +#: src/gui/guiConst.cpp:558 +msgid "Metronome" +msgstr "Metrônomo" + +#: src/gui/mixer.cpp:446 +msgid "disconnect all" +msgstr "desconectar todas" + +#: src/gui/editing.cpp:200 +#, c-format +msgid "no data in oldPatMap for channel %d!" +msgstr "" + +#: src/gui/editing.cpp:664 src/gui/editing.cpp:1203 +#, c-format +msgid "invalid clipboard data! failed at line %d char %d" +msgstr "" + +#: src/gui/editing.cpp:1565 src/gui/editing.cpp:1669 +msgid "can't collapse any further!" +msgstr "impossível contrair mais!" + +#: src/gui/editing.cpp:1749 +msgid "can't expand any further!" +msgstr "impossível expandir mais!" + +#: src/gui/editing.cpp:1836 src/gui/editing.cpp:1851 +#, c-format +msgid "copy: %s" +msgstr "" + +#: src/gui/memory.cpp:35 src/gui/settings.cpp:3643 src/gui/settings.cpp:4164 +#: src/gui/guiConst.cpp:613 +msgid "Memory Composition" +msgstr "Composição da Memória" + +#: src/gui/memory.cpp:146 +#, c-format +msgid "bank %d" +msgstr "banco %d" + +#: src/gui/memory.cpp:175 src/gui/memory.cpp:176 +msgid "no chips with memory" +msgstr "nenhum chip com memória" + +#: src/gui/intro.cpp:89 src/gui/gui.cpp:2345 src/gui/gui.cpp:3746 +#: src/gui/gui.cpp:5019 src/gui/gui.cpp:5041 src/gui/gui.cpp:5479 +#: src/gui/gui.cpp:5781 src/gui/gui.cpp:5791 +#, c-format +msgid "Error while loading file! (%s)" +msgstr "Erro ao abrir o arquivo! (%s)" + +#: src/gui/intro.cpp:122 +msgid "IntroMon X" +msgstr "" + +#: src/gui/intro.cpp:122 +msgid "Intro" +msgstr "" + +#: src/gui/intro.cpp:124 +msgid "Preview" +msgstr "" + +#: src/gui/intro.cpp:176 src/gui/intro.cpp:177 src/gui/intro.cpp:178 +msgid "SORRY NOTHING" +msgstr "" + +#: src/gui/intro.cpp:310 +msgid "hold to skip" +msgstr "" + +#: src/gui/dataList.cpp:76 +msgid "Bug!" +msgstr "Bug!" + +#: src/gui/dataList.cpp:79 src/gui/util.cpp:107 src/gui/util.cpp:109 +#: src/gui/settings.cpp:4167 src/gui/insEdit.cpp:5334 +msgid "Unknown" +msgstr "Desconhecido" + +#: src/gui/dataList.cpp:136 src/gui/dataList.cpp:260 +msgid "duplicate" +msgstr "duplicado" + +#: src/gui/dataList.cpp:139 src/gui/dataList.cpp:263 src/gui/dataList.cpp:388 +#: src/gui/dataList.cpp:731 src/gui/dataList.cpp:867 +msgid "replace..." +msgstr "trocar..." + +#: src/gui/dataList.cpp:142 src/gui/dataList.cpp:266 src/gui/gui.cpp:4232 +msgid "save" +msgstr "salvar" + +#: src/gui/dataList.cpp:145 +msgid "save (.dmp)" +msgstr "" + +#: src/gui/dataList.cpp:148 src/gui/dataList.cpp:269 src/gui/dataList.cpp:617 +#: src/gui/dataList.cpp:994 src/gui/dataList.cpp:1040 +#: src/gui/editControls.cpp:50 src/gui/gui.cpp:2767 src/gui/gui.cpp:2776 +msgid "delete" +msgstr "excluir" + +#: src/gui/dataList.cpp:243 +msgid "out of memory for this sample!" +msgstr "sem memória para esta sample!" + +#: src/gui/dataList.cpp:254 +msgid "make instrument" +msgstr "criar instrumento" + +#: src/gui/dataList.cpp:257 +msgid "make me a drum kit" +msgstr "faça um kit de bateria para mim" + +#: src/gui/dataList.cpp:290 src/gui/dataList.cpp:593 src/gui/gui.cpp:5914 +msgid "Instruments" +msgstr "Instrumentos" + +#: src/gui/dataList.cpp:312 src/gui/dataList.cpp:714 src/gui/dataList.cpp:846 +#: src/gui/subSongs.cpp:88 src/gui/insEdit.cpp:520 +msgid "Add" +msgstr "Adicionar" + +#: src/gui/dataList.cpp:338 src/gui/dataList.cpp:721 src/gui/dataList.cpp:853 +#: src/gui/subSongs.cpp:108 +msgid "Duplicate" +msgstr "Duplicar" + +#: src/gui/dataList.cpp:359 src/gui/dataList.cpp:728 src/gui/dataList.cpp:860 +#: src/gui/editControls.cpp:497 src/gui/waveEdit.cpp:435 +#: src/gui/waveEdit.cpp:467 src/gui/sampleEdit.cpp:122 +#: src/gui/sampleEdit.cpp:171 src/gui/insEdit.cpp:5239 src/gui/insEdit.cpp:5304 +msgid "Open" +msgstr "Abrir" + +#: src/gui/dataList.cpp:363 +msgid "replace instrument..." +msgstr "trocar instrumento..." + +#: src/gui/dataList.cpp:366 +msgid "load instrument from TX81Z" +msgstr "carregar instrumento do TX81Z" + +#: src/gui/dataList.cpp:372 +msgid "replace wavetable..." +msgstr "trocar wavetable..." + +#: src/gui/dataList.cpp:378 +msgid "replace sample..." +msgstr "trocar sample..." + +#: src/gui/dataList.cpp:381 +msgid "import raw sample..." +msgstr "importar sample em formato raw..." + +#: src/gui/dataList.cpp:384 +msgid "import raw sample (replace)..." +msgstr "importar sample em formato raw (trocar)..." + +#: src/gui/dataList.cpp:392 +msgid "load from TX81Z" +msgstr "carregar do TX81Z" + +#: src/gui/dataList.cpp:399 +msgid "Open (insert; right-click to replace)" +msgstr "Abrir (inserir; botão direito para trocar)" + +#: src/gui/dataList.cpp:420 src/gui/dataList.cpp:741 src/gui/dataList.cpp:884 +#: src/gui/editControls.cpp:502 src/gui/waveEdit.cpp:474 +#: src/gui/sampleEdit.cpp:184 src/gui/insEdit.cpp:5311 +msgid "Save" +msgstr "Salvar" + +#: src/gui/dataList.cpp:424 +msgid "save instrument as .dmp..." +msgstr "salvar instrumento como .dmp..." + +#: src/gui/dataList.cpp:430 +msgid "save wavetable as .dmw..." +msgstr "salvar wavetable como .dmw..." + +#: src/gui/dataList.cpp:433 +msgid "save raw wavetable..." +msgstr "salvar wavetable em formato raw..." + +#: src/gui/dataList.cpp:439 +msgid "save raw sample..." +msgstr "salvar sample em formato raw..." + +#: src/gui/dataList.cpp:443 src/gui/insEdit.cpp:5314 +msgid "save as .dmp..." +msgstr "salvar como .dmp..." + +#: src/gui/dataList.cpp:456 src/gui/dataList.cpp:761 src/gui/dataList.cpp:903 +msgid "Toggle folders/standard view" +msgstr "Alternar entre pastas e visão padrão" + +#: src/gui/dataList.cpp:478 src/gui/dataList.cpp:769 src/gui/dataList.cpp:911 +#: src/gui/subSongs.cpp:55 +msgid "Move up" +msgstr "Mover para cima" + +#: src/gui/dataList.cpp:499 src/gui/dataList.cpp:776 src/gui/dataList.cpp:918 +#: src/gui/subSongs.cpp:62 +msgid "Move down" +msgstr "Mover para baixo" + +#: src/gui/dataList.cpp:510 src/gui/dataList.cpp:787 src/gui/dataList.cpp:929 +msgid "Create" +msgstr "Criar" + +#: src/gui/dataList.cpp:540 src/gui/dataList.cpp:797 src/gui/dataList.cpp:939 +msgid "New folder" +msgstr "Nova pasta" + +#: src/gui/dataList.cpp:549 src/gui/dataList.cpp:947 +msgid "Preview (right click to stop)" +msgstr "Pré-visualização (clique com o botão direito para parar)" + +#: src/gui/dataList.cpp:576 src/gui/dataList.cpp:807 src/gui/dataList.cpp:959 +#: src/gui/guiConst.cpp:666 src/gui/sampleEdit.cpp:1105 +msgid "Delete" +msgstr "Excluir" + +#: src/gui/dataList.cpp:608 src/gui/dataList.cpp:985 src/gui/dataList.cpp:1031 +msgid "" +msgstr "" + +#: src/gui/dataList.cpp:614 src/gui/dataList.cpp:991 src/gui/dataList.cpp:1037 +msgid "rename..." +msgstr "renomear..." + +#: src/gui/dataList.cpp:663 src/gui/dataList.cpp:707 src/gui/gui.cpp:5923 +msgid "Wavetables" +msgstr "Wavetables" + +#: src/gui/dataList.cpp:674 src/gui/dataList.cpp:839 src/gui/xyOsc.cpp:68 +#: src/gui/sampleEdit.cpp:898 src/gui/sampleEdit.cpp:1072 src/gui/gui.cpp:5932 +msgid "Samples" +msgstr "Samples" + +#: src/gui/dataList.cpp:745 src/gui/waveEdit.cpp:477 +msgid "save as .dmw..." +msgstr "salvar como .dmw..." + +#: src/gui/dataList.cpp:748 src/gui/dataList.cpp:891 src/gui/waveEdit.cpp:480 +#: src/gui/sampleEdit.cpp:187 +msgid "save raw..." +msgstr "salvar em formato raw..." + +#: src/gui/dataList.cpp:871 src/gui/sampleEdit.cpp:174 +msgid "import raw..." +msgstr "importar em formato raw..." + +#: src/gui/dataList.cpp:874 +msgid "import raw (replace)..." +msgstr "importar em formato raw (trocar)..." + +#: src/gui/exportOptions.cpp:29 +msgid "Export type:" +msgstr "" + +#: src/gui/exportOptions.cpp:32 +msgid "one file" +msgstr "um arquivo" + +#: src/gui/exportOptions.cpp:35 +msgid "multiple files (one per chip)" +msgstr "múltiplos arquivos (um por chip)" + +#: src/gui/exportOptions.cpp:38 +msgid "multiple files (one per channel)" +msgstr "múltiplos arquivos (um por canal)" + +#: src/gui/exportOptions.cpp:44 +msgid "Bit depth:" +msgstr "" + +#: src/gui/exportOptions.cpp:46 +msgid "16-bit integer" +msgstr "" + +#: src/gui/exportOptions.cpp:49 +msgid "32-bit float" +msgstr "" + +#: src/gui/exportOptions.cpp:55 src/gui/settings.cpp:1299 src/gui/gui.cpp:6270 +msgid "Sample rate" +msgstr "Taxa de amostragem" + +#: src/gui/exportOptions.cpp:61 +msgid "Channels in file" +msgstr "" + +#: src/gui/exportOptions.cpp:67 src/gui/settings.cpp:877 +msgid "Loops" +msgstr "Loops" + +#: src/gui/exportOptions.cpp:70 src/gui/settings.cpp:882 +msgid "Fade out (seconds)" +msgstr "Tempo de fade out (segundos)" + +#: src/gui/exportOptions.cpp:76 +msgid "Channels to export:" +msgstr "" + +#: src/gui/exportOptions.cpp:78 src/gui/effectList.cpp:32 src/gui/gui.cpp:6186 +msgid "All" +msgstr "Todos" + +#: src/gui/exportOptions.cpp:84 src/gui/sysConf.cpp:1870 +#: src/gui/effectList.cpp:34 src/gui/compatFlags.cpp:219 +#: src/gui/waveEdit.cpp:37 src/gui/gui.cpp:6192 src/gui/insEdit.cpp:518 +msgid "None" +msgstr "Nenhuma" + +#: src/gui/exportOptions.cpp:110 src/gui/exportOptions.cpp:214 +#: src/gui/exportOptions.cpp:225 src/gui/exportOptions.cpp:243 +#: src/gui/exportOptions.cpp:266 src/gui/exportOptions.cpp:297 +#: src/gui/exportOptions.cpp:318 src/gui/exportOptions.cpp:341 +#: src/gui/commandPalette.cpp:199 src/gui/newSong.cpp:273 src/gui/gui.cpp:5669 +#: src/gui/gui.cpp:5693 src/gui/gui.cpp:5717 src/gui/gui.cpp:5741 +#: src/gui/gui.cpp:5765 src/gui/gui.cpp:5796 src/gui/gui.cpp:5855 +#: src/gui/gui.cpp:6229 src/gui/gui.cpp:6353 +msgid "Cancel" +msgstr "Cancelar" + +#: src/gui/exportOptions.cpp:115 src/gui/exportOptions.cpp:217 +#: src/gui/exportOptions.cpp:246 src/gui/exportOptions.cpp:300 +#: src/gui/exportOptions.cpp:321 src/gui/exportOptions.cpp:344 +#: src/gui/editControls.cpp:512 src/gui/userPresets.cpp:523 +#: src/gui/settings.cpp:1189 src/gui/settings.cpp:2112 +#: src/gui/settings.cpp:2504 src/gui/settings.cpp:3747 src/gui/guiConst.cpp:536 +#: src/gui/gui.cpp:5578 src/gui/gui.cpp:5630 +msgid "Export" +msgstr "Exportar" + +#: src/gui/exportOptions.cpp:130 +msgid "select at least one channel" +msgstr "" + +#: src/gui/exportOptions.cpp:137 +msgid "settings:" +msgstr "opções:" + +#: src/gui/exportOptions.cpp:138 +msgid "format version" +msgstr "versão do formato:" + +#: src/gui/exportOptions.cpp:146 src/gui/exportOptions.cpp:238 +#: src/gui/insEdit.cpp:362 +msgid "loop" +msgstr "loop" + +#: src/gui/exportOptions.cpp:148 +msgid "loop trail:" +msgstr "loops ao final:" + +#: src/gui/exportOptions.cpp:150 +msgid "auto-detect" +msgstr "detectar automaticamente" + +#: src/gui/exportOptions.cpp:153 +msgid "add one loop" +msgstr "adicionar um loop" + +#: src/gui/exportOptions.cpp:156 +msgid "custom" +msgstr "personalizado" + +#: src/gui/exportOptions.cpp:167 +msgid "add pattern change hints" +msgstr "adicionar dicas de mudança de sequência" + +#: src/gui/exportOptions.cpp:170 +msgid "" +"inserts data blocks on pattern changes.\n" +"useful if you are writing a playback routine.\n" +"\n" +"the format of a pattern change data block is:\n" +"67 66 FE ll ll ll ll 01 oo rr pp pp pp ...\n" +"- ll: length, a 32-bit little-endian number\n" +"- oo: order\n" +"- rr: initial row (a 0Dxx effect is able to select a different row)\n" +"- pp: pattern index (one per channel)\n" +"\n" +"pattern indexes are ordered as they appear in the song." +msgstr "" +"insere blocos de dados a cada mudança de sequência.\n" +"útil se você estiver escrevendo uma rotina de reprodução.\n" +"\n" +"o formato do bloco de dados de mudança de sequência é:\n" +"67 66 FE ll ll ll ll 01 oo rr pp pp pp ...\n" +"- ll: comprimento, um número 32-bit little-endian\n" +"- oo: ordem\n" +"- rr: linha inicial (um efeito 0Dxx é capaz de selecionar uma linha " +"diferente de zero)\n" +"- pp: índice da sequência (uma por canal)\n" +"\n" +"os índices da sequência são ordenados conforme elas aparecem na música." + +#: src/gui/exportOptions.cpp:183 +msgid "direct stream mode" +msgstr "modo de fluxo direto" + +#: src/gui/exportOptions.cpp:186 +msgid "" +"required for DualPCM and MSM6258 export.\n" +"\n" +"allows for volume/direction changes when playing samples,\n" +"at the cost of a massive increase in file size." +msgstr "" +"requerido para exportação de DualPCM e MSM6258.\n" +"\n" +"permite alterações de volume e direção ao reproduzir samples,\n" +"ao custo de um enorme aumento de tamanho de arquivo." + +#: src/gui/exportOptions.cpp:191 +msgid "chips to export:" +msgstr "chips a exportar:" + +#: src/gui/exportOptions.cpp:200 +#, c-format +msgid "this chip is only available in VGM %d.%.2x and higher!" +msgstr "este chip só está disponível no VGM versão %d.%.2x e superior!" + +#: src/gui/exportOptions.cpp:204 +msgid "this chip is not supported by the VGM format!" +msgstr "este chip não é suportado pelo formato VGM!" + +#: src/gui/exportOptions.cpp:210 +#, fuzzy, c-format +msgid "select the chip you wish to export, but only up to %d of each type." +msgstr "" +"selecione o chip que você quer exportar, mas no máximo %d de cada tipo." + +#: src/gui/exportOptions.cpp:222 +msgid "nothing to export" +msgstr "nada a ser exportado" + +#: src/gui/exportOptions.cpp:233 +msgid "Commander X16 Zsound Music File" +msgstr "Arquivo de Música ZSound do Commander X16" + +#: src/gui/exportOptions.cpp:234 +msgid "Tick Rate (Hz)" +msgstr "Taxa de Ticks (Hz)" + +#: src/gui/exportOptions.cpp:240 +msgid "optimize size" +msgstr "otimizar tamanho" + +#: src/gui/exportOptions.cpp:256 src/gui/editControls.cpp:630 +msgid "" +"this is NOT ROM export! only use for making sure the\n" +"Furnace Amiga emulator is working properly by\n" +"comparing it with real Amiga output." +msgstr "" +"esta opção não serve para exportar ROM! use apenas para garantir\n" +"que o emulador de Amiga do Furnace está funcionando corretamente\n" +"comparando-o com a saída de um Amiga de verdade." + +#: src/gui/exportOptions.cpp:261 src/gui/editControls.cpp:635 +#: src/gui/settings.cpp:3872 +msgid "Directory" +msgstr "Diretório" + +#: src/gui/exportOptions.cpp:269 src/gui/editControls.cpp:638 +msgid "Bake Data" +msgstr "Precalcular dados" + +#: src/gui/exportOptions.cpp:284 src/gui/editControls.cpp:653 +#, fuzzy, c-format +msgid "Done! Baked %d files." +msgstr "Concluído! %d arquivo precalculado." + +#: src/gui/exportOptions.cpp:293 +msgid "this option exports the song to a text file.\n" +msgstr "essa opção exporta a música para um arquivo texto.\n" + +#: src/gui/exportOptions.cpp:310 +msgid "" +"this option exports a text or binary file which\n" +"contains a dump of the internal command stream\n" +"produced when playing the song.\n" +"\n" +"technical/development use only!" +msgstr "" + +#: src/gui/exportOptions.cpp:331 +msgid "" +"export in DefleMask module format.\n" +"only do it if you really, really need to, or are downgrading an existing ." +"dmf." +msgstr "" + +#: src/gui/exportOptions.cpp:335 +msgid "format version:" +msgstr "" + +#: src/gui/exportOptions.cpp:336 +msgid "1.1.3 and higher" +msgstr "" + +#: src/gui/exportOptions.cpp:337 +msgid "1.0/legacy (0.12)" +msgstr "" + +#: src/gui/exportOptions.cpp:357 src/gui/settings.cpp:1200 +#: src/gui/settings.cpp:3876 +msgid "Audio" +msgstr "Áudio" + +#: src/gui/exportOptions.cpp:361 src/gui/settings.cpp:3878 +msgid "VGM" +msgstr "" + +#: src/gui/exportOptions.cpp:370 src/gui/settings.cpp:3879 +msgid "ZSM" +msgstr "" + +#: src/gui/exportOptions.cpp:380 +msgid "Amiga Validation" +msgstr "Dados de Validação Amiga" + +#: src/gui/exportOptions.cpp:385 src/gui/settings.cpp:2906 +#: src/gui/settings.cpp:3838 +msgid "Text" +msgstr "Texto" + +#: src/gui/exportOptions.cpp:389 +msgid "Command Stream" +msgstr "Fluxo de Comandos" + +#: src/gui/exportOptions.cpp:393 +msgid "DMF" +msgstr "" + +#: src/gui/exportOptions.cpp:422 +msgid "congratulations! you've unlocked a secret panel." +msgstr "parabéns! você desbloqueou um painel secreto." + +#: src/gui/exportOptions.cpp:423 +msgid "Toggle hidden systems" +msgstr "Habilitar/desabilitar sistemas escondidos" + +#: src/gui/exportOptions.cpp:427 +msgid "Toggle all instrument types" +msgstr "Habilitar/desabilitar todos os tipos de instrumentos" + +#: src/gui/exportOptions.cpp:431 +msgid "Set pitch linearity to Partial" +msgstr "Definir linearidade de tom para Parcial" + +#: src/gui/exportOptions.cpp:435 +msgid "Enable multi-threading settings" +msgstr "Habilitar opções de multithreading" + +#: src/gui/exportOptions.cpp:439 +msgid "Set fat to max" +msgstr "Definir gordura para máximo" + +#: src/gui/exportOptions.cpp:446 +msgid "Set muscle and fat to zero" +msgstr "Definir músculo e gordura para zero" + +#: src/gui/exportOptions.cpp:453 +msgid "Tell tildearrow this must be a mistake" +msgstr "Dizer para o tildearrow que isso só pode ser um engano" + +#: src/gui/exportOptions.cpp:454 +msgid "" +"yeah, it's a bug. write a bug report in the GitHub page and tell me how did " +"you get here." +msgstr "" +"é, isso é um bug. abra um bug report na página do GitHub e diga-nos como " +"você chegou aqui." + +#: src/gui/speed.cpp:32 src/gui/speed.cpp:102 src/gui/editControls.cpp:532 +#: src/gui/sysConf.cpp:2148 src/gui/guiConst.cpp:232 src/gui/guiConst.cpp:581 +#: src/gui/insEdit.cpp:2028 src/gui/insEdit.cpp:5693 src/gui/insEdit.cpp:6885 +msgid "Speed" +msgstr "Velocidade" + +#: src/gui/speed.cpp:41 +msgid "Base Tempo##TempoOrHz" +msgstr "Tempo Base##TempoOrHz" + +#: src/gui/speed.cpp:41 +msgid "Tick Rate##TempoOrHz" +msgstr "Taxa de Ticks##TempoOrHz" + +#: src/gui/speed.cpp:46 +msgid "click to display tick rate" +msgstr "clique para mostrar a taxa de ticks" + +#: src/gui/speed.cpp:48 +msgid "click to display base tempo" +msgstr "clique para mostrar o tempo base" + +#: src/gui/speed.cpp:80 +msgid "Groove" +msgstr "Groove" + +#: src/gui/speed.cpp:87 +msgid "click for one speed" +msgstr "clique para uma velocidade" + +#: src/gui/speed.cpp:90 +msgid "Speeds" +msgstr "Velocidades" + +#: src/gui/speed.cpp:99 +msgid "click for groove pattern" +msgstr "clique para padrão \"groove\"" + +#: src/gui/speed.cpp:110 +msgid "click for two (alternating) speeds" +msgstr "clique para duas velocidades alternantes" + +#: src/gui/speed.cpp:168 +msgid "Virtual Tempo" +msgstr "Tempo Virtual" + +#: src/gui/speed.cpp:177 +msgid "Numerator" +msgstr "Numerador" + +#: src/gui/speed.cpp:187 +msgid "Denominator (set to base tempo)" +msgstr "Denominador (definido para o tempo base)" + +#: src/gui/speed.cpp:193 +msgid "Divider" +msgstr "Divisor" + +#: src/gui/speed.cpp:208 +msgid "Highlight" +msgstr "Destaque" + +#: src/gui/speed.cpp:231 +msgid "Pattern Length" +msgstr "Tamanho da Sequência" + +#: src/gui/speed.cpp:245 +msgid "Song Length" +msgstr "Tamanho da Música" + +#: src/gui/channels.cpp:40 src/gui/editControls.cpp:446 +#: src/gui/guiConst.cpp:601 src/gui/gui.cpp:6280 +msgid "Channels" +msgstr "Canais" + +#: src/gui/channels.cpp:49 +msgid "Pat" +msgstr "Seq" + +#: src/gui/channels.cpp:51 src/gui/editControls.cpp:550 +msgid "Osc" +msgstr "Osc" + +#: src/gui/channels.cpp:53 +msgid "Swap" +msgstr "Trocar" + +#: src/gui/channels.cpp:55 src/gui/userPresets.cpp:368 +#: src/gui/effectList.cpp:45 src/gui/subSongs.cpp:125 src/gui/settings.cpp:1007 +#: src/gui/settings.cpp:4330 src/gui/sampleEdit.cpp:195 src/gui/songInfo.cpp:40 +#: src/gui/sysManager.cpp:54 src/gui/insEdit.cpp:5288 +msgid "Name" +msgstr "Nome" + +#: src/gui/channels.cpp:64 +msgid "Show in pattern" +msgstr "Mostrar na sequência" + +#: src/gui/channels.cpp:71 +msgid "Show in per-channel oscilloscope" +msgstr "Mostrar no osciloscópio por canal" + +#: src/gui/channels.cpp:82 +#, c-format +msgid "" +"%s #%d\n" +"(drag to swap channels)" +msgstr "" +"%s #%d\n" +"(arraste para trocar os canais)" + +#: src/gui/commandPalette.cpp:51 src/gui/sysPicker.cpp:35 +#: src/gui/newSong.cpp:133 +msgid "Search..." +msgstr "Procurar..." + +#: src/gui/commandPalette.cpp:54 +msgid "Search recent files..." +msgstr "Buscar em arquivos recentes..." + +#: src/gui/commandPalette.cpp:57 +msgid "Search instruments..." +msgstr "Procurar instrumentos..." + +#: src/gui/commandPalette.cpp:60 +msgid "Search samples..." +msgstr "Procurar samples..." + +#: src/gui/commandPalette.cpp:63 +msgid "Search instruments (to change to)..." +msgstr "Procurar insatrumentos (para selecionar)..." + +#: src/gui/commandPalette.cpp:66 +msgid "Search chip (to add)..." +msgstr "Procurar chip (para adicionar)..." + +#: src/gui/commandPalette.cpp:93 src/gui/commandPalette.cpp:167 +msgid "- None -" +msgstr "- Nenhum -" + +#: src/gui/commandPalette.cpp:123 src/gui/commandPalette.cpp:179 +#: src/gui/commandPalette.cpp:241 +msgid "invalid command palette type" +msgstr "" + +#: src/gui/regView.cpp:30 src/gui/guiConst.cpp:604 +msgid "Register View" +msgstr "Visualização de Registradores" + +#: src/gui/regView.cpp:38 +msgid "- no register pool available" +msgstr "- nenhum mapa de registradores disponível" + +#: src/gui/log.cpp:25 src/gui/effectList.cpp:84 +msgid "ERROR" +msgstr "ERRO" + +#: src/gui/log.cpp:26 +msgid "warning" +msgstr "" + +#: src/gui/log.cpp:27 +msgid "info" +msgstr "" + +#: src/gui/log.cpp:28 src/gui/gui.cpp:4513 +msgid "debug" +msgstr "depuração" + +#: src/gui/log.cpp:29 +msgid "trace" +msgstr "" + +#: src/gui/log.cpp:47 src/gui/settings.cpp:4190 src/gui/guiConst.cpp:605 +msgid "Log Viewer" +msgstr "Visualizador de Logs" + +#: src/gui/log.cpp:48 src/gui/editControls.cpp:750 src/gui/editControls.cpp:883 +#: src/gui/editControls.cpp:1000 +msgid "Follow" +msgstr "Seguir" + +#: src/gui/log.cpp:50 src/gui/waveEdit.cpp:681 src/gui/insEdit.cpp:50 +msgid "Level" +msgstr "Nível" + +#: src/gui/log.cpp:68 +msgid "time" +msgstr "" + +#: src/gui/log.cpp:70 +msgid "level" +msgstr "" + +#: src/gui/log.cpp:72 +msgid "message" +msgstr "" + +#: src/gui/pattern.cpp:433 src/gui/editControls.cpp:421 +#: src/gui/editControls.cpp:754 src/gui/editControls.cpp:887 +#: src/gui/editControls.cpp:1015 src/gui/settings.cpp:2291 +#: src/gui/settings.cpp:3244 src/gui/settings.cpp:4047 +#: src/gui/findReplace.cpp:794 src/gui/guiConst.cpp:582 src/gui/gui.cpp:5899 +msgid "Pattern" +msgstr "Sequência" + +#: src/gui/pattern.cpp:468 +msgid "there aren't any channels to show." +msgstr "não há nenhum canal a ser exibido." + +#: src/gui/pattern.cpp:492 +msgid "click for pattern options (effect columns/pattern names/visualizer)" +msgstr "" +"clique para opções de sequência (colunas de efeito/nomes das faixas/" +"visualizador)" + +#: src/gui/pattern.cpp:504 +msgid "Options:" +msgstr "Opções:" + +#: src/gui/pattern.cpp:506 +msgid "Effect columns/collapse" +msgstr "Botões de colunas de efeito/contrair faixa" + +#: src/gui/pattern.cpp:507 +msgid "Pattern names" +msgstr "Nomes das faixas" + +#: src/gui/pattern.cpp:508 +msgid "Channel group hints" +msgstr "Dicas de agrupamento de canais" + +#: src/gui/pattern.cpp:509 +msgid "Visualizer" +msgstr "Visualizador" + +#: src/gui/pattern.cpp:517 +msgid "Channel status:" +msgstr "Estado do canal:" + +#: src/gui/pattern.cpp:519 +msgid "No##_PCS0" +msgstr "Não##_PCS0" + +#: src/gui/pattern.cpp:522 +msgid "Yes##_PCS1" +msgstr "Sim##_PCS1" + +#: src/gui/pattern.cpp:1420 src/gui/pattern.cpp:1452 +msgid "WARNING!!" +msgstr "AVISO!!" + +#: src/gui/pattern.cpp:1422 src/gui/pattern.cpp:1459 +msgid "this instrument cannot be previewed because" +msgstr "este instrumento não pode ser previsto pois" + +#: src/gui/pattern.cpp:1423 src/gui/pattern.cpp:1466 +msgid "none of the chips can play it" +msgstr "nenhum dos chips pode tocá-lo" + +#: src/gui/pattern.cpp:1424 src/gui/pattern.cpp:1473 +msgid "your instrument is in peril!! be careful..." +msgstr "seu instrumento está em perigo! cuidado..." + +#: src/gui/osc.cpp:169 src/gui/settings.cpp:3657 src/gui/settings.cpp:3884 +msgid "Oscilloscope" +msgstr "Osciloscópio" + +#: src/gui/osc.cpp:176 +#, c-format +msgid "zoom: %.2fx (%.1fdB)" +msgstr "zoom: %.2fx (%.1fdB)" + +#: src/gui/osc.cpp:187 +#, c-format +msgid "window size: %.1fms" +msgstr "tamanho da janela: %.1fms" + +#: src/gui/osc.cpp:385 +msgid "(-Infinity)dB" +msgstr "(-Infinito)dB" + +#: src/gui/debugWindow.cpp:65 src/gui/editControls.cpp:610 +msgid "Debug" +msgstr "Debug" + +#: src/gui/debugWindow.cpp:662 +msgid "This is a language test." +msgstr "" + +#: src/gui/debugWindow.cpp:663 +msgid "This is another language test." +msgstr "" + +#: src/gui/chanOsc.cpp:32 +msgid "None (0%)" +msgstr "Nenhum (0%)" + +#: src/gui/chanOsc.cpp:33 +msgid "None (50%)" +msgstr "Nenhum (50%)" + +#: src/gui/chanOsc.cpp:34 +msgid "None (100%)" +msgstr "Nenhum (100%)" + +#: src/gui/chanOsc.cpp:36 +msgid "Frequency" +msgstr "Frequência" + +#: src/gui/chanOsc.cpp:38 src/gui/settings.cpp:1614 src/gui/settings.cpp:3353 +#: src/gui/settings.cpp:4035 +msgid "Channel" +msgstr "Canal" + +#: src/gui/chanOsc.cpp:39 +msgid "Brightness" +msgstr "Brilho" + +#: src/gui/chanOsc.cpp:41 +msgid "Note Trigger" +msgstr "Toque da Nota" + +#: src/gui/chanOsc.cpp:45 +msgid "Off" +msgstr "Desativado" + +#: src/gui/chanOsc.cpp:46 +msgid "Mode 1" +msgstr "Modo 1" + +#: src/gui/chanOsc.cpp:47 +msgid "Mode 2" +msgstr "Modo 2" + +#: src/gui/chanOsc.cpp:48 +msgid "Mode 3" +msgstr "Modo 3" + +#: src/gui/chanOsc.cpp:135 src/gui/guiConst.cpp:607 +msgid "Oscilloscope (per-channel)" +msgstr "Osciloscópio (por canal)" + +#: src/gui/chanOsc.cpp:143 +msgid "Columns" +msgstr "Colunas" + +#: src/gui/chanOsc.cpp:152 +msgid "Size (ms)" +msgstr "Tamanho (ms)" + +#: src/gui/chanOsc.cpp:163 +msgid "Automatic columns" +msgstr "Colunas automáticas" + +#: src/gui/chanOsc.cpp:177 +msgid "Center waveform" +msgstr "Centralizar onda" + +#: src/gui/chanOsc.cpp:183 +msgid "Randomize phase on note" +msgstr "Aleatorizar fase a cada nota" + +#: src/gui/chanOsc.cpp:189 +msgid "Amplitude" +msgstr "Amplitude" + +#: src/gui/chanOsc.cpp:199 src/gui/settings.cpp:3694 +msgid "Line size" +msgstr "Espessura da linha" + +#: src/gui/chanOsc.cpp:211 +msgid "Gradient" +msgstr "Gradiente" + +#: src/gui/chanOsc.cpp:218 +msgid "error while creating gradient texture!" +msgstr "" + +#: src/gui/chanOsc.cpp:236 +msgid "error while updating gradient texture!" +msgstr "" + +#: src/gui/chanOsc.cpp:292 src/gui/chanOsc.cpp:348 src/gui/settings.cpp:3740 +msgid "Color" +msgstr "Cor" + +#: src/gui/chanOsc.cpp:296 +msgid "Distance" +msgstr "Distância" + +#: src/gui/chanOsc.cpp:305 +msgid "Spread" +msgstr "Espalhamento" + +#: src/gui/chanOsc.cpp:314 src/gui/userPresets.cpp:370 src/gui/subSongs.cpp:121 +#: src/gui/settings.cpp:2228 src/gui/sysManager.cpp:124 +msgid "Remove" +msgstr "Remover" + +#: src/gui/chanOsc.cpp:338 src/gui/settings.cpp:3832 src/gui/settings.cpp:4112 +#: src/gui/settings.cpp:4139 src/gui/settings.cpp:4165 +msgid "Background" +msgstr "Fundo" + +#: src/gui/chanOsc.cpp:341 +msgid "X Axis##AxisX" +msgstr "Eixo X##AxisX" + +#: src/gui/chanOsc.cpp:342 +msgid "Y Axis##AxisY" +msgstr "Eixo Y##AxisY" + +#: src/gui/chanOsc.cpp:352 +msgid "Text format:" +msgstr "Formato do texto:" + +#: src/gui/chanOsc.cpp:358 +msgid "" +"format guide:\n" +"- %c: channel name\n" +"- %C: channel short name\n" +"- %d: channel number (starting from 0)\n" +"- %D: channel number (starting from 1)\n" +"- %n: channel note\n" +"- %i: instrument name\n" +"- %I: instrument number (decimal)\n" +"- %x: instrument number (hex)\n" +"- %s: chip name\n" +"- %p: chip part number\n" +"- %S: chip ID\n" +"- %v: volume (decimal)\n" +"- %V: volume (percentage)\n" +"- %b: volume (hex)\n" +"- %l: new line\n" +"- %%: percent sign" +msgstr "" +"guia de formatação:\n" +"- %c: nome do canal\n" +"- %C: nome curto do canal\n" +"- %d: número do canal (começando em 0)\n" +"- %D: número do canal (começando em 1)\n" +"- %n: nota do canal\n" +"- %i: nome do instrumento\n" +"- %I: número do instrumento (decimal)\n" +"- %x: número do instrumento (hex)\n" +"- %s: nome do chip\n" +"- %p: numeração do chip\n" +"- %S: ID do chip\n" +"- %v: volume (decimal)\n" +"- %V: volume (porcentagem)\n" +"- %b: volume (hex)\n" +"- %l: nova linha\n" +"- %%: símbolo de porcentagem" + +#: src/gui/chanOsc.cpp:380 +msgid "Text color" +msgstr "Cor do texto" + +#: src/gui/chanOsc.cpp:382 src/gui/xyOsc.cpp:80 src/gui/tutorial.cpp:687 +#: src/gui/gui.cpp:5639 src/gui/gui.cpp:6055 src/gui/gui.cpp:6223 +#: src/gui/gui.cpp:6322 src/gui/gui.cpp:6371 +msgid "OK" +msgstr "OK" + +#: src/gui/chanOsc.cpp:400 +msgid "creating chan osc work pool" +msgstr "" + +#: src/gui/chanOsc.cpp:429 +#, c-format +msgid "creating FFT plan for channel %d" +msgstr "" + +#: src/gui/chanOsc.cpp:436 +msgid "failed to create plan!" +msgstr "" + +#: src/gui/chanOsc.cpp:438 +msgid "failed to create inverse plan!" +msgstr "" + +#: src/gui/chanOsc.cpp:440 +msgid "failed to create FFT buffers" +msgstr "" + +#: src/gui/chanOsc.cpp:585 +msgid "Error!" +msgstr "Erro!" + +#: src/gui/editControls.cpp:47 src/gui/sampleEdit.cpp:1736 src/gui/gui.cpp:2733 +#: src/gui/insEdit.cpp:363 +msgid "cut" +msgstr "recortar" + +#: src/gui/editControls.cpp:48 src/gui/sampleEdit.cpp:1740 src/gui/gui.cpp:2734 +#: src/gui/insEdit.cpp:7538 +msgid "copy" +msgstr "copiar" + +#: src/gui/editControls.cpp:49 src/gui/sampleEdit.cpp:1744 src/gui/gui.cpp:2735 +#: src/gui/gui.cpp:2788 src/gui/insEdit.cpp:7543 +msgid "paste" +msgstr "colar" + +#: src/gui/editControls.cpp:51 +msgid "" +"select\n" +"all" +msgstr "" + +#: src/gui/editControls.cpp:52 +msgid "piano" +msgstr "" + +#: src/gui/editControls.cpp:53 src/gui/gui.cpp:4429 +msgid "undo" +msgstr "desfazer" + +#: src/gui/editControls.cpp:54 src/gui/gui.cpp:4430 +msgid "redo" +msgstr "refazer" + +#: src/gui/editControls.cpp:57 +msgid "" +"paste\n" +"mix" +msgstr "" + +#: src/gui/editControls.cpp:58 +msgid "" +"paste\n" +"mix bg" +msgstr "" + +#: src/gui/editControls.cpp:59 +msgid "" +"paste\n" +"ins" +msgstr "" + +#: src/gui/editControls.cpp:60 +msgid "" +"paste\n" +"ins bg" +msgstr "" + +#: src/gui/editControls.cpp:61 +msgid "" +"paste\n" +"flood" +msgstr "" + +#: src/gui/editControls.cpp:62 +msgid "" +"paste\n" +"overflow" +msgstr "" + +#: src/gui/editControls.cpp:63 +msgid "" +"transpose\n" +"notes" +msgstr "" + +#: src/gui/editControls.cpp:64 +msgid "" +"transpose\n" +"values" +msgstr "" + +#: src/gui/editControls.cpp:67 +msgid "" +"change\n" +"ins" +msgstr "" + +#: src/gui/editControls.cpp:68 +msgid "" +"find/\n" +"replace" +msgstr "" + +#: src/gui/editControls.cpp:69 src/gui/gui.cpp:3063 +msgid "collapse" +msgstr "contrair" + +#: src/gui/editControls.cpp:70 src/gui/gui.cpp:3064 +msgid "expand" +msgstr "expandir" + +#: src/gui/editControls.cpp:71 src/gui/gui.cpp:2820 +msgid "flip" +msgstr "reverter" + +#: src/gui/editControls.cpp:72 src/gui/insEdit.cpp:430 +msgid "invert" +msgstr "inverter" + +#: src/gui/editControls.cpp:73 src/gui/gui.cpp:2800 src/gui/gui.cpp:2960 +msgid "interpolate" +msgstr "interpolar" + +#: src/gui/editControls.cpp:74 src/gui/gui.cpp:2812 src/gui/insEdit.cpp:7610 +msgid "scale" +msgstr "escalonar" + +#: src/gui/editControls.cpp:77 src/gui/gui.cpp:2804 +msgid "fade" +msgstr "degradê" + +#: src/gui/editControls.cpp:78 src/gui/gui.cpp:2816 src/gui/insEdit.cpp:7639 +msgid "randomize" +msgstr "aleatorizar" + +#: src/gui/editControls.cpp:79 +msgid "opmask" +msgstr "" + +#: src/gui/editControls.cpp:80 +msgid "" +"scroll\n" +"mode" +msgstr "" + +#: src/gui/editControls.cpp:81 +msgid "" +"input\n" +"latch" +msgstr "" + +#: src/gui/editControls.cpp:82 +msgid "" +"set\n" +"latch" +msgstr "" + +#: src/gui/editControls.cpp:83 +msgid "" +"clear\n" +"latch" +msgstr "" + +#: src/gui/editControls.cpp:84 src/gui/findReplace.cpp:43 +#: src/gui/insEdit.cpp:7557 +msgid "clear" +msgstr "limpar" + +#: src/gui/editControls.cpp:333 +msgid "Mobile Controls" +msgstr "" + +#: src/gui/editControls.cpp:408 +msgid "Mobile Menu" +msgstr "" + +#: src/gui/editControls.cpp:425 src/gui/editControls.cpp:752 +#: src/gui/editControls.cpp:885 src/gui/editControls.cpp:1007 +#: src/gui/settings.cpp:2432 src/gui/settings.cpp:3218 +#: src/gui/settings.cpp:3922 src/gui/orders.cpp:232 src/gui/guiConst.cpp:577 +#: src/gui/gui.cpp:5888 +msgid "Orders" +msgstr "Ordens" + +#: src/gui/editControls.cpp:429 src/gui/findReplace.cpp:669 +#: src/gui/findReplace.cpp:914 +msgid "Ins" +msgstr "Ins" + +#: src/gui/editControls.cpp:442 src/gui/findReplace.cpp:788 +#: src/gui/guiConst.cpp:230 +msgid "Song" +msgstr "Música" + +#: src/gui/editControls.cpp:450 src/gui/sampleEdit.cpp:494 +msgid "Chips" +msgstr "Chips" + +#: src/gui/editControls.cpp:458 src/gui/settings.cpp:2064 +#: src/gui/settings.cpp:3881 src/gui/settings.cpp:3965 +#: src/gui/compatFlags.cpp:319 +msgid "Other" +msgstr "Outro" + +#: src/gui/editControls.cpp:487 src/gui/guiConst.cpp:531 +msgid "New" +msgstr "Novo" + +#: src/gui/editControls.cpp:491 src/gui/doAction.cpp:38 src/gui/gui.cpp:4194 +msgid "Unsaved changes! Save changes before creating a new song?" +msgstr "" +"Há mudanças não salvas! Salvar mudanças antes de criar uma nova música?" + +#: src/gui/editControls.cpp:507 +msgid "Save as..." +msgstr "Salvar como..." + +#: src/gui/editControls.cpp:516 src/gui/gui.cpp:1680 +msgid "Restore Backup" +msgstr "Restaurar Backup" + +#: src/gui/editControls.cpp:524 +msgid "Song Info" +msgstr "Inform. Música" + +#: src/gui/editControls.cpp:528 src/gui/subSongs.cpp:17 +#: src/gui/guiConst.cpp:608 +msgid "Subsongs" +msgstr "Subfaixas" + +#: src/gui/editControls.cpp:541 +msgid "Channels here..." +msgstr "Canais aqui..." + +#: src/gui/editControls.cpp:544 +msgid "Chips here..." +msgstr "Chips aqui..." + +#: src/gui/editControls.cpp:547 +msgid "What the hell..." +msgstr "Mas que porcaria?!" + +#: src/gui/editControls.cpp:554 +msgid "ChanOsc" +msgstr "ChanOsc" + +#: src/gui/editControls.cpp:558 +msgid "RegView" +msgstr "RegView" + +#: src/gui/editControls.cpp:562 +msgid "Stats" +msgstr "Stats" + +#: src/gui/editControls.cpp:566 src/gui/guiConst.cpp:611 src/gui/grooves.cpp:35 +msgid "Grooves" +msgstr "Grooves" + +#: src/gui/editControls.cpp:569 +msgid "Compat Flags" +msgstr "Opçs. Compat." + +#: src/gui/editControls.cpp:573 +msgid "XYOsc" +msgstr "XYOsc" + +#: src/gui/editControls.cpp:577 +msgid "Meter" +msgstr "" + +#: src/gui/editControls.cpp:581 +msgid "Memory" +msgstr "" + +#: src/gui/editControls.cpp:585 +msgid "CV" +msgstr "" + +#: src/gui/editControls.cpp:589 +msgid "Presets" +msgstr "" + +#: src/gui/editControls.cpp:593 +msgid "PatManager" +msgstr "" + +#: src/gui/editControls.cpp:599 src/gui/guiConst.cpp:564 +msgid "Panic" +msgstr "Pânico" + +#: src/gui/editControls.cpp:601 src/gui/settings.cpp:538 +#: src/gui/guiConst.cpp:589 src/gui/guiConst.cpp:591 src/gui/gui.cpp:4439 +msgid "Settings" +msgstr "Configurações" + +#: src/gui/editControls.cpp:606 +msgid "Log" +msgstr "Log" + +#: src/gui/editControls.cpp:614 src/gui/guiConst.cpp:587 +msgid "About" +msgstr "Sobre" + +#: src/gui/editControls.cpp:619 +msgid "Switch to Desktop Mode" +msgstr "Trocar para o modo Desktop" + +#: src/gui/editControls.cpp:673 src/gui/editControls.cpp:784 +#: src/gui/editControls.cpp:904 +msgid "Play/Edit Controls" +msgstr "" + +#: src/gui/editControls.cpp:681 src/gui/editControls.cpp:842 +#: src/gui/editControls.cpp:959 src/gui/editControls.cpp:1125 +msgid "Octave" +msgstr "Oitava" + +#: src/gui/editControls.cpp:698 src/gui/editControls.cpp:857 +msgid "Coarse Step" +msgstr "" + +#: src/gui/editControls.cpp:698 src/gui/editControls.cpp:857 +msgid "Edit Step" +msgstr "Passo de Edição" + +#: src/gui/editControls.cpp:731 src/gui/editControls.cpp:797 +#: src/gui/editControls.cpp:911 src/gui/editControls.cpp:1048 +#: src/gui/guiConst.cpp:545 +msgid "Play" +msgstr "Reproduzir" + +#: src/gui/editControls.cpp:739 src/gui/editControls.cpp:789 +#: src/gui/editControls.cpp:918 src/gui/editControls.cpp:1040 +#: src/gui/guiConst.cpp:546 +msgid "Stop" +msgstr "Parar" + +#: src/gui/editControls.cpp:742 src/gui/editControls.cpp:826 +#: src/gui/editControls.cpp:943 src/gui/editControls.cpp:1082 +#: src/gui/gui.cpp:4426 +msgid "Edit" +msgstr "Editar" + +#: src/gui/editControls.cpp:757 src/gui/editControls.cpp:816 +#: src/gui/editControls.cpp:934 src/gui/editControls.cpp:1104 +msgid "Repeat pattern" +msgstr "Repetir sequência" + +#: src/gui/editControls.cpp:766 src/gui/editControls.cpp:806 +#: src/gui/editControls.cpp:925 src/gui/editControls.cpp:1073 +msgid "Step one row" +msgstr "Mover uma linha" + +#: src/gui/editControls.cpp:771 src/gui/editControls.cpp:891 +#: src/gui/editControls.cpp:1020 src/gui/editControls.cpp:1110 +msgid "Poly##PolyInput" +msgstr "Polif.##PolyInput" + +#: src/gui/editControls.cpp:771 src/gui/editControls.cpp:891 +#: src/gui/editControls.cpp:1020 src/gui/editControls.cpp:1110 +msgid "Mono##PolyInput" +msgstr "Monof.##PolyInput" + +#: src/gui/editControls.cpp:776 src/gui/editControls.cpp:896 +#: src/gui/editControls.cpp:1025 src/gui/editControls.cpp:1115 +msgid "Polyphony" +msgstr "Polifonia" + +#: src/gui/editControls.cpp:957 +msgid "Oct." +msgstr "8va." + +#: src/gui/editControls.cpp:974 src/gui/editControls.cpp:1142 +msgid "Coarse" +msgstr "" + +#: src/gui/editControls.cpp:974 src/gui/editControls.cpp:1142 +msgid "Step" +msgstr "Passo" + +#: src/gui/editControls.cpp:998 +msgid "Foll." +msgstr "Seguir" + +#: src/gui/editControls.cpp:1003 +msgid "Ord##FollowOrders" +msgstr "Ord.##FollowOrders" + +#: src/gui/editControls.cpp:1011 +msgid "Pat##FollowPattern" +msgstr "Seq.##FollowPattern" + +#: src/gui/editControls.cpp:1033 +msgid "Play Controls" +msgstr "" + +#: src/gui/editControls.cpp:1057 +msgid "Play from the beginning of this pattern" +msgstr "Reproduzir do início desta sequência" + +#: src/gui/editControls.cpp:1065 +msgid "Repeat from the beginning of this pattern" +msgstr "Repetir do início desta sequência" + +#: src/gui/editControls.cpp:1122 src/gui/guiConst.cpp:576 +msgid "Edit Controls" +msgstr "Controles de Edição" + +#: src/gui/editControls.cpp:1169 src/gui/guiConst.cpp:560 +msgid "Follow orders" +msgstr "Seguir ordens" + +#: src/gui/editControls.cpp:1170 src/gui/guiConst.cpp:561 +msgid "Follow pattern" +msgstr "Seguir sequência" + +#: src/gui/songNotes.cpp:32 src/gui/guiConst.cpp:600 +msgid "Song Comments" +msgstr "Comentários da Música" + +#: src/gui/util.cpp:93 +msgid "" +msgstr "" + +#: src/gui/util.cpp:97 +msgid "Ctrl-" +msgstr "" + +#: src/gui/util.cpp:99 +msgid "Alt-" +msgstr "" + +#: src/gui/util.cpp:100 +msgid "Shift-" +msgstr "" + +#: src/gui/stats.cpp:31 src/gui/guiConst.cpp:597 +msgid "Statistics" +msgstr "Estatísticas" + +#: src/gui/stats.cpp:36 +msgid "Audio load" +msgstr "Carga de áudio" + +#: src/gui/xyOsc.cpp:40 src/gui/guiConst.cpp:612 +msgid "Oscilloscope (X-Y)" +msgstr "Osciloscópio (X-Y)" + +#: src/gui/xyOsc.cpp:45 +msgid "X Channel" +msgstr "Canal X" + +#: src/gui/xyOsc.cpp:51 +msgid "Invert##X" +msgstr "Inverter" + +#: src/gui/xyOsc.cpp:52 +msgid "Y Channel" +msgstr "Canal Y" + +#: src/gui/xyOsc.cpp:58 +msgid "Invert##Y" +msgstr "Inverter" + +#: src/gui/xyOsc.cpp:59 src/gui/sampleEdit.cpp:1353 +msgid "Zoom" +msgstr "Zoom" + +#: src/gui/xyOsc.cpp:71 +msgid "Decay Time (ms)" +msgstr "Tempo de decaimento (ms)" + +#: src/gui/xyOsc.cpp:74 +msgid "Intensity" +msgstr "Intensidade" + +#: src/gui/xyOsc.cpp:77 +msgid "Line Thickness" +msgstr "Espessura da linha" + +#: src/gui/xyOsc.cpp:213 +msgid "(-Infinity)dB,(-Infinity)dB" +msgstr "(-Infinito)dB,(-Infinito)dB" + +#: src/gui/xyOsc.cpp:215 +#, c-format +msgid "(-Infinity)dB,%.1fdB" +msgstr "(-Infinito)dB,%.1fdB" + +#: src/gui/xyOsc.cpp:217 +#, c-format +msgid "%.1fdB,(-Infinity)dB" +msgstr "%.1fdB,(-Infinito)dB" + +#: src/gui/xyOsc.cpp:219 +#, c-format +msgid "%.1fdB,%.1fdB" +msgstr "" + +#: src/gui/sysConf.cpp:49 src/gui/sysConf.cpp:121 src/gui/sysConf.cpp:486 +#: src/gui/sysConf.cpp:604 src/gui/sysConf.cpp:647 src/gui/sysConf.cpp:684 +#: src/gui/sysConf.cpp:843 src/gui/sysConf.cpp:1098 src/gui/sysConf.cpp:1181 +#: src/gui/sysConf.cpp:1220 src/gui/sysConf.cpp:1294 src/gui/sysConf.cpp:1380 +#: src/gui/sysConf.cpp:1444 src/gui/sysConf.cpp:1482 src/gui/sysConf.cpp:1572 +#: src/gui/sysConf.cpp:1668 src/gui/sysConf.cpp:1716 src/gui/sysConf.cpp:1757 +#: src/gui/sysConf.cpp:1810 src/gui/sysConf.cpp:2284 src/gui/sysConf.cpp:2307 +msgid "Clock rate:" +msgstr "Taxa de clock:" + +#: src/gui/sysConf.cpp:73 src/gui/sysConf.cpp:152 src/gui/sysConf.cpp:911 +#: src/gui/sysConf.cpp:1459 src/gui/sysConf.cpp:1783 +msgid "Chip type:" +msgstr "Tipo de chip:" + +#: src/gui/sysConf.cpp:75 +msgid "YM3438 (9-bit DAC)" +msgstr "YM3438 (DAC de 9-bit)" + +#: src/gui/sysConf.cpp:79 +msgid "YM2612 (9-bit DAC with distortion)" +msgstr "YM2612 (DAC de 9-bit com distorção)" + +#: src/gui/sysConf.cpp:83 +msgid "YMF276 (external DAC)" +msgstr "YMF276 (DAC externo)" + +#: src/gui/sysConf.cpp:90 src/gui/sysConf.cpp:804 src/gui/sysConf.cpp:1350 +#: src/gui/sysConf.cpp:1420 +msgid "Disable ExtCh FM macros (compatibility)" +msgstr "Desabilitar macros FM ExtCh (compatibilidade)" + +#: src/gui/sysConf.cpp:93 src/gui/sysConf.cpp:807 src/gui/sysConf.cpp:1353 +#: src/gui/sysConf.cpp:1423 +msgid "Ins change in ExtCh operator 2-4 affects FB (compatibility)" +msgstr "Mudança de inst. no operador ExtCh 2-4 afeta FB (compatibilidade)" + +#: src/gui/sysConf.cpp:99 +msgid "Modified sine wave (joke)" +msgstr "" + +#: src/gui/sysConf.cpp:123 src/gui/sysConf.cpp:1296 src/gui/sysConf.cpp:1718 +#: src/gui/sysConf.cpp:2286 +msgid "3.58MHz (NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:127 +msgid "3.55MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:131 +msgid "4MHz (BBC Micro)" +msgstr "" + +#: src/gui/sysConf.cpp:135 +msgid "1.79MHz (Half NTSC)" +msgstr "1.79MHz (Metade do NTSC)" + +#: src/gui/sysConf.cpp:139 +msgid "3MHz (Exed Exes)" +msgstr "" + +#: src/gui/sysConf.cpp:143 +msgid "2MHz (Sega System 1)" +msgstr "" + +#: src/gui/sysConf.cpp:147 +msgid "447KHz (TI-99/4A)" +msgstr "" + +#: src/gui/sysConf.cpp:154 +msgid "Sega VDP/Master System" +msgstr "" + +#: src/gui/sysConf.cpp:162 +msgid "TI SN76489 with Atari-like short noise" +msgstr "TI SN76489 com ruído curto estilo Atari" + +#: src/gui/sysConf.cpp:166 +msgid "Game Gear" +msgstr "" + +#: src/gui/sysConf.cpp:170 +msgid "TI SN76489A" +msgstr "" + +#: src/gui/sysConf.cpp:174 +msgid "TI SN76496" +msgstr "" + +#: src/gui/sysConf.cpp:178 +msgid "NCR 8496" +msgstr "" + +#: src/gui/sysConf.cpp:182 +msgid "Tandy PSSJ 3-voice sound" +msgstr "Som integrado Tandy PSSJ de 3 canais" + +#: src/gui/sysConf.cpp:186 +msgid "TI SN94624" +msgstr "" + +#: src/gui/sysConf.cpp:190 +msgid "TI SN76494" +msgstr "" + +#: src/gui/sysConf.cpp:196 +msgid "Disable noise period change phase reset" +msgstr "Desabilitar redefinição de fase na mudança do período do ruído" + +#: src/gui/sysConf.cpp:200 src/gui/sysConf.cpp:2190 +msgid "Disable easy period to note mapping on upper octaves" +msgstr "Desabilitar mapeamento fácil de período para nota nas oitavas altas" + +#: src/gui/sysConf.cpp:219 src/gui/sysConf.cpp:583 +msgid "Pseudo-PAL" +msgstr "Pseudo-PAL" + +#: src/gui/sysConf.cpp:222 src/gui/sysConf.cpp:342 +msgid "Disable anti-click" +msgstr "Desabilitar anti-click" + +#: src/gui/sysConf.cpp:225 src/gui/sysConf.cpp:345 +msgid "Chip revision:" +msgstr "Revisão do chip:" + +#: src/gui/sysConf.cpp:227 +msgid "HuC6280 (original)" +msgstr "HuC6280 (original)" + +#: src/gui/sysConf.cpp:231 +msgid "HuC6280A (SuperGrafx)" +msgstr "" + +#: src/gui/sysConf.cpp:257 +msgid "CPU rate:" +msgstr "Taxa da CPU:" + +#: src/gui/sysConf.cpp:259 +msgid "6.18MHz (NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:263 +msgid "5.95MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:268 +msgid "Sample memory:" +msgstr "Memória de sample:" + +#: src/gui/sysConf.cpp:270 +msgid "8K (rev A/B/E)" +msgstr "8K (rev A/B/E)" + +#: src/gui/sysConf.cpp:274 +msgid "64K (rev D/F)" +msgstr "64K (rev D/F)" + +#: src/gui/sysConf.cpp:279 +msgid "DAC resolution:" +msgstr "Resolução do DAC:" + +#: src/gui/sysConf.cpp:281 +msgid "16-bit (rev A/B/D/F)" +msgstr "16-bit (rev A/B/D/F)" + +#: src/gui/sysConf.cpp:285 +msgid "8-bit + TDM (rev C/E)" +msgstr "8-bit + TDM (rev C/E)" + +#: src/gui/sysConf.cpp:290 src/gui/sysConf.cpp:1931 +msgid "Enable echo" +msgstr "Habilitar eco" + +#: src/gui/sysConf.cpp:293 +msgid "Swap echo channels" +msgstr "Trocar canais de eco" + +#: src/gui/sysConf.cpp:296 src/gui/sysConf.cpp:1151 +msgid "Echo delay:" +msgstr "Atraso do eco:" + +#: src/gui/sysConf.cpp:302 +msgid "Echo resolution:" +msgstr "Resolução do eco:" + +#: src/gui/sysConf.cpp:308 src/gui/sysConf.cpp:1159 +msgid "Echo feedback:" +msgstr "Retorno (feedback) do eco:" + +#: src/gui/sysConf.cpp:314 src/gui/sysConf.cpp:1967 +msgid "Echo volume:" +msgstr "Volume do eco:" + +#: src/gui/sysConf.cpp:347 +msgid "Original (DMG)" +msgstr "Original (DMG)" + +#: src/gui/sysConf.cpp:351 +msgid "Game Boy Color (rev C)" +msgstr "Game Boy Color (rev C)" + +#: src/gui/sysConf.cpp:355 +msgid "Game Boy Color (rev E)" +msgstr "Game Boy Color (rev E)" + +#: src/gui/sysConf.cpp:359 +msgid "Game Boy Advance" +msgstr "" + +#: src/gui/sysConf.cpp:364 +msgid "Wave channel orientation:" +msgstr "Orientação do canal de onda:" + +#: src/gui/sysConf.cpp:367 src/gui/compatFlags.cpp:298 src/gui/gui.cpp:6067 +#: src/gui/insEdit.cpp:217 src/gui/insEdit.cpp:231 +msgid "Normal" +msgstr "Normal" + +#: src/gui/sysConf.cpp:371 +msgid "Inverted" +msgstr "Invertido" + +#: src/gui/sysConf.cpp:378 +msgid "Exact data (inverted)" +msgstr "Dados exatos (inverted)" + +#: src/gui/sysConf.cpp:382 +msgid "Exact output (normal)" +msgstr "Saída exata (normal)" + +#: src/gui/sysConf.cpp:388 +msgid "" +"Pretty please one more compat flag when I use arpeggio and my sound length" +msgstr "" +"Porfavorzinho mais uma opção de compatibilidade quando eu usar arpejo e meu " +"comprimento de som" + +#: src/gui/sysConf.cpp:405 src/gui/sysConf.cpp:438 +msgid "DAC bit depth (reduces output rate):" +msgstr "Profundidade de bits do DAC (reduz a taxa de amostragem):" + +#: src/gui/sysConf.cpp:426 src/gui/sysConf.cpp:1268 src/gui/sysConf.cpp:1919 +msgid "Volume scale:" +msgstr "Escala de volume:" + +#: src/gui/sysConf.cpp:432 +msgid "Mix buffers (allows longer echo delay):" +msgstr "Quantidade de buffers de mixing (permite atraso de eco mais longo):" + +#: src/gui/sysConf.cpp:444 +msgid "Channel limit:" +msgstr "Limite de canais:" + +#: src/gui/sysConf.cpp:450 +msgid "Sample rate:" +msgstr "Taxa de amostragem:" + +#: src/gui/sysConf.cpp:460 +#, c-format +msgid "Actual sample rate: %d Hz" +msgstr "Taxa de amostragem real: %d Hz" + +#: src/gui/sysConf.cpp:462 +#, c-format +msgid "Max mixer CPU usage: %.0f%%" +msgstr "Uso de CPU máximo do mixer: %.0f%%" + +#: src/gui/sysConf.cpp:488 +msgid "NTSC (3.58MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:492 src/gui/sysConf.cpp:557 +msgid "PAL (3.55MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:496 +msgid "Arcade (4MHz)" +msgstr "Arcade (4MHz)" + +#: src/gui/sysConf.cpp:500 +msgid "Half NTSC (1.79MHz)" +msgstr "Metade do NTSC (1.79MHz)" + +#: src/gui/sysConf.cpp:506 +msgid "Patch set:" +msgstr "Conjunto de timbres:" + +#: src/gui/sysConf.cpp:528 +msgid "Ignore top/hi-hat frequency changes" +msgstr "Ignorar mudanças de frequência no chimbal/prato" + +#: src/gui/sysConf.cpp:531 +msgid "Apply fixed frequency to all drums at once" +msgstr "Aplicar frequência fixa em todos os canais de bateria ao mesmo tempo" + +#: src/gui/sysConf.cpp:553 +msgid "NTSC/X16 (3.58MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:561 +msgid "X1/X68000 (4MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:567 src/gui/sysConf.cpp:587 +msgid "Broken pitch macro/slides (compatibility)" +msgstr "Macros/slide de tom quebrados (compatibilidade)" + +#: src/gui/sysConf.cpp:607 src/gui/sysConf.cpp:650 src/gui/sysConf.cpp:1222 +#: src/gui/sysConf.cpp:2310 +msgid "NTSC (1.79MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:611 src/gui/sysConf.cpp:654 src/gui/sysConf.cpp:1226 +msgid "PAL (1.67MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:615 src/gui/sysConf.cpp:658 src/gui/sysConf.cpp:1230 +msgid "Dendy (1.77MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:621 +msgid "DPCM channel mode:" +msgstr "Modo de canal DPCM:" + +#: src/gui/sysConf.cpp:624 +msgid "DPCM (muffled samples; low CPU usage)" +msgstr "DPCM (samples abafadas; baixo uso de CPU)" + +#: src/gui/sysConf.cpp:628 +msgid "PCM (crisp samples; high CPU usage)" +msgstr "PCM (samples nítidas; alto uso de CPU)" + +#: src/gui/sysConf.cpp:687 +msgid "NTSC (1.02MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:691 +msgid "PAL (0.99MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:695 +msgid "SSI 2001 (0.89MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:701 src/gui/sysConf.cpp:2320 +msgid "Global parameter priority:" +msgstr "Prioridade de parâmetros globais:" + +#: src/gui/sysConf.cpp:704 src/gui/sysConf.cpp:2323 +msgid "Left to right" +msgstr "Da esquerda para a direita" + +#: src/gui/sysConf.cpp:708 src/gui/sysConf.cpp:2327 +msgid "Last used channel" +msgstr "Último canal usado" + +#: src/gui/sysConf.cpp:714 +msgid "Hard reset envelope:" +msgstr "Reiniciar envelope bruscamente:" + +#: src/gui/sysConf.cpp:716 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:1920 +#: src/gui/insEdit.cpp:6955 src/gui/insEdit.cpp:7481 +msgid "Attack" +msgstr "Ataque" + +#: src/gui/sysConf.cpp:721 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:1960 +#: src/gui/insEdit.cpp:6956 src/gui/insEdit.cpp:7482 +msgid "Decay" +msgstr "Decaimento" + +#: src/gui/sysConf.cpp:726 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:1929 +#: src/gui/insEdit.cpp:6957 src/gui/insEdit.cpp:7483 +msgid "Sustain" +msgstr "Sustentação" + +#: src/gui/sysConf.cpp:731 src/gui/settings.cpp:3934 src/gui/insEdit.cpp:50 +#: src/gui/insEdit.cpp:604 src/gui/insEdit.cpp:1983 src/gui/insEdit.cpp:6958 +#: src/gui/insEdit.cpp:7484 +msgid "Release" +msgstr "Repouso" + +#: src/gui/sysConf.cpp:737 +msgid "Envelope reset time:" +msgstr "Tempo de reinício do envelope:" + +#: src/gui/sysConf.cpp:747 +msgid "" +"- 0 disables envelope reset. not recommended!\n" +"- 1 may trigger SID envelope bugs.\n" +"- values that are too high may result in notes being skipped." +msgstr "" +"- 0 desabilita o reinício do envelope. não recomendado!\n" +"- 1 pode causar bugs de envelope do SID.\n" +"- valores muito altos podem resultar em notas sendo puladas." + +#: src/gui/sysConf.cpp:749 +msgid "Disable 1Exy env update (compatibility)" +msgstr "Desabilitar atualização de envelope via 1Exy (compatibilidade)" + +#: src/gui/sysConf.cpp:753 +msgid "Relative duty and cutoff macros are coarse (compatibility)" +msgstr "" +"Macros de ciclo de trabalho e ponto de corte relativos são grossas " +"(compatibilidade)" + +#: src/gui/sysConf.cpp:757 +msgid "Cutoff macro race conditions (compatibility)" +msgstr "Condições de corrida nas macros de ponto de corte (compatibilidade)" + +#: src/gui/sysConf.cpp:793 +msgid "8MHz (Neo Geo MVS)" +msgstr "" + +#: src/gui/sysConf.cpp:797 +msgid "8.06MHz (Neo Geo AES)" +msgstr "" + +#: src/gui/sysConf.cpp:812 src/gui/sysConf.cpp:1337 src/gui/sysConf.cpp:1407 +msgid "SSG Volume" +msgstr "Volume do SSG" + +#: src/gui/sysConf.cpp:818 src/gui/sysConf.cpp:1413 +msgid "FM/ADPCM Volume" +msgstr "Volume do FM/ADPCM" + +#: src/gui/sysConf.cpp:845 +msgid "1.79MHz (ZX Spectrum NTSC/MSX)" +msgstr "" + +#: src/gui/sysConf.cpp:849 +msgid "1.77MHz (ZX Spectrum PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:853 +msgid "0.83MHz (Pre-divided Sunsoft 5B on PAL)" +msgstr "0.83MHz (Sunsoft 5B pré-dividido no PAL)" + +#: src/gui/sysConf.cpp:857 +msgid "0.89MHz (Pre-divided Sunsoft 5B)" +msgstr "0.89MHz (Sunsoft 5B pré-dividido)" + +#: src/gui/sysConf.cpp:861 +msgid "1MHz (Amstrad CPC)" +msgstr "" + +#: src/gui/sysConf.cpp:865 +msgid "1.10MHz (Gamate/VIC-20 PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:869 +msgid "1.25MHz (Mag Max)" +msgstr "" + +#: src/gui/sysConf.cpp:873 +msgid "1.5MHz (Vectrex)" +msgstr "" + +#: src/gui/sysConf.cpp:877 +msgid "1.536MHz (Kyugo)" +msgstr "" + +#: src/gui/sysConf.cpp:881 +msgid "1.67MHz (?)" +msgstr "" + +#: src/gui/sysConf.cpp:885 +msgid "1.75MHz (ZX Spectrum 48K)" +msgstr "" + +#: src/gui/sysConf.cpp:889 +msgid "1.99MHz (PC-88)" +msgstr "" + +#: src/gui/sysConf.cpp:893 +msgid "2MHz (Atari ST/Sharp X1)" +msgstr "" + +#: src/gui/sysConf.cpp:897 +msgid "2^21Hz (Game Boy)" +msgstr "" + +#: src/gui/sysConf.cpp:901 +msgid "3.58MHz (Darky)" +msgstr "" + +#: src/gui/sysConf.cpp:905 +msgid "3.6MHz (Darky)" +msgstr "" + +#: src/gui/sysConf.cpp:917 +msgid "YM2149(F)" +msgstr "" + +#: src/gui/sysConf.cpp:921 +msgid "Sunsoft 5B" +msgstr "" + +#: src/gui/sysConf.cpp:925 +msgid "AY-3-8914" +msgstr "" + +#: src/gui/sysConf.cpp:931 +msgid "note: AY-3-8914 is not supported by the VGM format!" +msgstr "nota: o AY-3-8914 não é suportado pelo formato VGM!" + +#: src/gui/sysConf.cpp:935 +msgid "Stereo##_AY_STEREO" +msgstr "Estéreo##_AY_STEREO" + +#: src/gui/sysConf.cpp:940 +msgid "Separation" +msgstr "Separação" + +#: src/gui/sysConf.cpp:949 +msgid "Half Clock divider##_AY_CLKSEL" +msgstr "Divisor de Clock pela Metade##_AY_CLKSEL" + +#: src/gui/sysConf.cpp:971 +msgid "SAM Coupé (8MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:975 +msgid "NTSC (7.15MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:979 +msgid "PAL (7.09MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:999 +msgid "Stereo separation:" +msgstr "Separação estéreo:" + +#: src/gui/sysConf.cpp:1006 src/gui/sysConf.cpp:2412 +msgid "Model:" +msgstr "Modelo:" + +#: src/gui/sysConf.cpp:1008 +msgid "Amiga 500 (OCS)" +msgstr "" + +#: src/gui/sysConf.cpp:1012 +msgid "Amiga 1200 (AGA)" +msgstr "" + +#: src/gui/sysConf.cpp:1018 +msgid "Chip memory:" +msgstr "Memória do chip:" + +#: src/gui/sysConf.cpp:1020 +msgid "2MB (ECS/AGA max)" +msgstr "2MB (máx. ECS/AGA)" + +#: src/gui/sysConf.cpp:1030 +msgid "512KB (OCS max)" +msgstr "512KB (máx. OCS)" + +#: src/gui/sysConf.cpp:1043 src/gui/sysConf.cpp:1081 src/gui/sysConf.cpp:2395 +#: src/gui/sysConf.cpp:2449 +msgid "PAL" +msgstr "" + +#: src/gui/sysConf.cpp:1046 +msgid "Bypass frequency limits" +msgstr "Ultrapassar limites de frequência" + +#: src/gui/sysConf.cpp:1065 +msgid "Mixing mode:" +msgstr "Modo de mixing:" + +#: src/gui/sysConf.cpp:1067 src/gui/settings.cpp:3671 +msgid "Mono" +msgstr "Mono" + +#: src/gui/sysConf.cpp:1071 +msgid "Mono (no distortion)" +msgstr "Mono (sem distorção)" + +#: src/gui/sysConf.cpp:1075 src/gui/sysConf.cpp:1197 src/gui/sysConf.cpp:1864 +#: src/gui/sysConf.cpp:2204 +msgid "Stereo" +msgstr "Estéreo" + +#: src/gui/sysConf.cpp:1100 +msgid "1.19MHz (PC)" +msgstr "" + +#: src/gui/sysConf.cpp:1104 +msgid "1.99MHz (PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1108 +msgid "2.46MHz (PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1114 +msgid "Speaker type:" +msgstr "Tipo de speaker:" + +#: src/gui/sysConf.cpp:1116 +msgid "Unfiltered" +msgstr "Não-filtrado" + +#: src/gui/sysConf.cpp:1120 +msgid "Cone" +msgstr "Cone" + +#: src/gui/sysConf.cpp:1124 +msgid "Piezo" +msgstr "Piezo" + +#: src/gui/sysConf.cpp:1128 +msgid "Use system beeper (Linux only!)" +msgstr "Usar beeper do sistema (somente Linux!)" + +#: src/gui/sysConf.cpp:1134 +msgid "Reset phase on frequency change" +msgstr "Reiniciar fase em mudança de frequência" + +#: src/gui/sysConf.cpp:1183 +msgid "16MHz (Seta 1)" +msgstr "" + +#: src/gui/sysConf.cpp:1187 +msgid "16.67MHz (Seta 2)" +msgstr "" + +#: src/gui/sysConf.cpp:1191 src/gui/sysConf.cpp:1759 +msgid "14.32MHz (NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:1201 +msgid "Bankswitched (Seta 2)" +msgstr "Usar Bankswitching (Seta 2)" + +#: src/gui/sysConf.cpp:1235 src/gui/sysConf.cpp:1261 +msgid "Initial channel limit:" +msgstr "Limite de canais inicial:" + +#: src/gui/sysConf.cpp:1241 src/gui/sysConf.cpp:2398 +msgid "Disable hissing" +msgstr "Desabilitar chiado" + +#: src/gui/sysConf.cpp:1244 +msgid "Scale frequency to wave length" +msgstr "Escalonar frequência para tamanho da onda" + +#: src/gui/sysConf.cpp:1300 src/gui/sysConf.cpp:1722 +msgid "3.54MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:1304 src/gui/sysConf.cpp:1726 src/gui/sysConf.cpp:2290 +msgid "4MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1308 src/gui/sysConf.cpp:1730 +msgid "3MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1312 src/gui/sysConf.cpp:1734 +msgid "3.9936MHz (PC-88/PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1316 +msgid "1.5MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1321 src/gui/sysConf.cpp:1391 src/gui/sysConf.cpp:1639 +#: src/gui/sysConf.cpp:1852 +msgid "Output rate:" +msgstr "Taxa de saída:" + +#: src/gui/sysConf.cpp:1323 src/gui/sysConf.cpp:1397 +msgid "FM: clock / 72, SSG: clock / 16" +msgstr "FM: clock / 72, SSG: clock / 16" + +#: src/gui/sysConf.cpp:1327 +msgid "FM: clock / 36, SSG: clock / 8" +msgstr "FM: clock / 36, SSG: clock / 8" + +#: src/gui/sysConf.cpp:1331 +msgid "FM: clock / 24, SSG: clock / 4" +msgstr "FM: clock / 24, SSG: clock / 4" + +#: src/gui/sysConf.cpp:1343 +msgid "FM Volume" +msgstr "Volume do FM" + +#: src/gui/sysConf.cpp:1382 +msgid "8MHz (Arcade)" +msgstr "8MHz (Arcade)" + +#: src/gui/sysConf.cpp:1386 +msgid "7.987MHz (PC-88/PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1393 +msgid "FM: clock / 144, SSG: clock / 32" +msgstr "FM: clock / 144, SSG: clock / 32" + +#: src/gui/sysConf.cpp:1401 +msgid "FM: clock / 48, SSG: clock / 8" +msgstr "FM: clock / 48, SSG: clock / 8" + +#: src/gui/sysConf.cpp:1446 +msgid "8MHz (FM Towns)" +msgstr "" + +#: src/gui/sysConf.cpp:1450 +msgid "10MHz (Sega System 18)" +msgstr "" + +#: src/gui/sysConf.cpp:1454 +msgid "12.5MHz (Sega CD/System 32)" +msgstr "" + +#: src/gui/sysConf.cpp:1461 +msgid "RF5C68 (10-bit output)" +msgstr "RF5C68 (saída 10-bit)" + +#: src/gui/sysConf.cpp:1465 +msgid "RF5C164 (16-bit output)" +msgstr "RF5C164 (saída 16-bit)" + +#: src/gui/sysConf.cpp:1520 +msgid "Sample rate table:" +msgstr "Tabela de taxa de amostragem:" + +#: src/gui/sysConf.cpp:1524 +msgid "divider \\ clock" +msgstr "divisor \\ clock" + +#: src/gui/sysConf.cpp:1526 +msgid "full" +msgstr "completo" + +#: src/gui/sysConf.cpp:1528 +msgid "half" +msgstr "metade" + +#: src/gui/sysConf.cpp:1641 +msgid "clock / 132" +msgstr "clock / 132" + +#: src/gui/sysConf.cpp:1645 +msgid "clock / 165" +msgstr "clock / 165" + +#: src/gui/sysConf.cpp:1651 +msgid "Bankswitched (NMK112)" +msgstr "Usar Bankswitching (NMK112)" + +#: src/gui/sysConf.cpp:1670 +msgid "1.79MHz (NTSC/MSX)" +msgstr "" + +#: src/gui/sysConf.cpp:1674 +msgid "1.77MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:1678 +msgid "1.5MHz (Arcade)" +msgstr "1.5MHz (Arcade)" + +#: src/gui/sysConf.cpp:1682 +msgid "2MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1697 +msgid "Consistent frequency across all duties" +msgstr "Frequência consistente ao longo de todos os ciclos de trabalho" + +#: src/gui/sysConf.cpp:1704 +msgid "note: only works for an initial LFSR value of 0!" +msgstr "nota: só funciona para um valor inicial de LFSR igual a 0!" + +#: src/gui/sysConf.cpp:1738 +msgid "3.5MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1763 +msgid "14.19MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:1767 +msgid "14MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1771 +msgid "16MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1775 +msgid "15MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1779 +msgid "33.8688MHz (OPL3-L)" +msgstr "" + +#: src/gui/sysConf.cpp:1784 +msgid "OPL3 (YMF262)" +msgstr "" + +#: src/gui/sysConf.cpp:1788 +msgid "OPL3-L (YMF289B)" +msgstr "" + +#: src/gui/sysConf.cpp:1794 +msgid "Compatible panning (0800)" +msgstr "Balanço compatível (0800)" + +#: src/gui/sysConf.cpp:1858 +msgid "Output bit depth:" +msgstr "Profundidade de bits de saída:" + +#: src/gui/sysConf.cpp:1868 +msgid "Interpolation:" +msgstr "Interpolação:" + +#: src/gui/sysConf.cpp:1874 src/gui/waveEdit.cpp:38 +msgid "Linear" +msgstr "Linear" + +#: src/gui/sysConf.cpp:1878 src/gui/waveEdit.cpp:40 +msgid "Cubic" +msgstr "Cúbica" + +#: src/gui/sysConf.cpp:1882 +msgid "Sinc" +msgstr "Sinc" + +#: src/gui/sysConf.cpp:1920 +msgid "Left##VolScaleL" +msgstr "Esquerdo##VolScaleL" + +#: src/gui/sysConf.cpp:1925 +msgid "Right##VolScaleL" +msgstr "Direito##VolScaleL" + +#: src/gui/sysConf.cpp:1935 +msgid "Initial echo state:" +msgstr "Estado inicial do eco:" + +#: src/gui/sysConf.cpp:1955 +msgid "Delay##EchoDelay" +msgstr "Atraso##EchoDelay" + +#: src/gui/sysConf.cpp:1961 +msgid "Feedback##EchoFeedback" +msgstr "Retorno (feedback)##EchoFeedback" + +#: src/gui/sysConf.cpp:1968 +msgid "Left##EchoVolL" +msgstr "Esquerdo##EchoVolL" + +#: src/gui/sysConf.cpp:1973 +msgid "Right##EchoVolL" +msgstr "Direito##EchoVolL" + +#: src/gui/sysConf.cpp:1979 +msgid "Echo filter:" +msgstr "Filtro do eco:" + +#: src/gui/sysConf.cpp:1989 +msgid "Hex##SNESFHex" +msgstr "Hex##SNESFHex" + +#: src/gui/sysConf.cpp:1989 +msgid "Dec##SNESFHex" +msgstr "Dec##SNESFHex" + +#: src/gui/sysConf.cpp:2031 +#, c-format +msgid "sum: %d" +msgstr "soma: %d" + +#: src/gui/sysConf.cpp:2086 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:63 +#: src/gui/insEdit.cpp:75 +msgid "Detune" +msgstr "Desafinação" + +#: src/gui/sysConf.cpp:2092 +msgid "Capacitor values (nF):" +msgstr "Valores dos capacitores (nF):" + +#: src/gui/sysConf.cpp:2102 +msgid "Initial part volume (channel 1-4):" +msgstr "Volume inicial das partes (canais 1-4):" + +#: src/gui/sysConf.cpp:2112 +msgid "Initial part volume (channel 5-8):" +msgstr "Volume inicial das partes (canais 5-8):" + +#: src/gui/sysConf.cpp:2122 +msgid "Envelope mode (channel 1-4):" +msgstr "Modo de envelope (canais 1-4):" + +#: src/gui/sysConf.cpp:2124 +msgid "Capacitor (attack/decay)##EM00" +msgstr "Capacitor (ataque/decaimento)##EM00" + +#: src/gui/sysConf.cpp:2128 +msgid "External (volume macro)##EM01" +msgstr "Externo (macro de volume)##EM01" + +#: src/gui/sysConf.cpp:2134 +msgid "Envelope mode (channel 5-8):" +msgstr "Modo de envelope (canais 5-8):" + +#: src/gui/sysConf.cpp:2136 +msgid "Capacitor (attack/decay)##EM10" +msgstr "Capacitor (ataque/decaimento)##EM10" + +#: src/gui/sysConf.cpp:2140 +msgid "External (volume macro)##EM11" +msgstr "Externo (macro de volume)##EM11" + +#: src/gui/sysConf.cpp:2146 +msgid "Global vibrato:" +msgstr "Vibrato global:" + +#: src/gui/sysConf.cpp:2153 +msgid "Depth" +msgstr "Profundidade" + +#: src/gui/sysConf.cpp:2219 src/gui/sysConf.cpp:2373 +msgid "Waveform storage mode:" +msgstr "Modo de armazenamento das waveforms:" + +#: src/gui/sysConf.cpp:2221 +msgid "RAM" +msgstr "RAM" + +#: src/gui/sysConf.cpp:2225 +msgid "ROM (up to 8 waves)" +msgstr "ROM (até 8 ondas)" + +#: src/gui/sysConf.cpp:2241 +msgid "Compatible noise frequencies" +msgstr "Frequências de ruído compatíveis" + +#: src/gui/sysConf.cpp:2256 +msgid "Legacy slides and pitch (compatibility)" +msgstr "Slides e tom legados (compatibilidade)" + +#: src/gui/sysConf.cpp:2314 +msgid "PAL (1.77MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:2344 +msgid "Banking style:" +msgstr "Estilo de gerenciamento de bancos" + +#: src/gui/sysConf.cpp:2346 +msgid "Namco System 2 (2MB)" +msgstr "Namco System 2 (2MB)" + +#: src/gui/sysConf.cpp:2351 +msgid "Namco System 21 (4MB)" +msgstr "Namco System 21 (4MB)" + +#: src/gui/sysConf.cpp:2356 +msgid "Raw (16MB; no VGM export!)" +msgstr "Cru (16MB; não é possível exportar VGM!)" + +#: src/gui/sysConf.cpp:2375 +msgid "Dynamic (unconfirmed)" +msgstr "Dinâmico (não confirmado)" + +#: src/gui/sysConf.cpp:2379 +msgid "Static (up to 5 waves)" +msgstr "Estático (até 5 ondas)" + +#: src/gui/sysConf.cpp:2414 +msgid "DS (4MB RAM)" +msgstr "DS (4MB RAM)" + +#: src/gui/sysConf.cpp:2418 +msgid "DSi (16MB RAM)" +msgstr "DSi (16MB RAM)" + +#: src/gui/sysConf.cpp:2444 src/gui/settings.cpp:674 +msgid "nothing to configure" +msgstr "nada para configurar" + +#: src/gui/sysConf.cpp:2467 +msgid "Custom clock rate" +msgstr "Taxa de clock personalizada" + +#: src/gui/volMeter.cpp:36 src/gui/settings.cpp:3916 src/gui/guiConst.cpp:596 +msgid "Volume Meter" +msgstr "Medidor de Volume" + +#: src/gui/userPresets.cpp:325 +msgid "User Systems" +msgstr "" + +#: src/gui/userPresets.cpp:337 +msgid "Error! User category does not exist!" +msgstr "" + +#: src/gui/userPresets.cpp:346 src/gui/newSong.cpp:181 +msgid "Systems" +msgstr "Sistemas" + +#: src/gui/userPresets.cpp:349 +msgid "New Preset" +msgstr "" + +#: src/gui/userPresets.cpp:361 +msgid "select a preset" +msgstr "" + +#: src/gui/userPresets.cpp:374 +msgid "Remove##UPresetRemove" +msgstr "" + +#: src/gui/userPresets.cpp:439 src/gui/settings.cpp:1082 +msgid "Configure" +msgstr "Configurar" + +#: src/gui/userPresets.cpp:470 +msgid "Advanced" +msgstr "" + +#: src/gui/userPresets.cpp:476 +msgid "" +"insert additional settings in `option=value` format.\n" +"available options:\n" +"- tickRate" +msgstr "" + +#: src/gui/userPresets.cpp:509 +msgid "Save and Close" +msgstr "" + +#: src/gui/userPresets.cpp:515 src/gui/settings.cpp:1185 +#: src/gui/settings.cpp:2108 src/gui/settings.cpp:2500 +#: src/gui/settings.cpp:3743 +msgid "Import" +msgstr "Importar" + +#: src/gui/userPresets.cpp:519 +msgid "Import (replace)" +msgstr "" + +#: src/gui/effectList.cpp:14 src/gui/guiConst.cpp:606 +msgid "Effect List" +msgstr "Lista de Efeitos" + +#: src/gui/effectList.cpp:18 +#, c-format +msgid "Chip at cursor: %s" +msgstr "Chip sob o cursor: %s" + +#: src/gui/effectList.cpp:21 +msgid "Search" +msgstr "Procurar" + +#: src/gui/effectList.cpp:25 +msgid "Effect types to show:" +msgstr "Tipos de efeitos a serem exibidos:" + +#: src/gui/effectList.cpp:47 +msgid "Description" +msgstr "Descrição" + +#: src/gui/subSongs.cpp:22 +#, c-format +msgid "%d. " +msgstr "%d. " + +#: src/gui/subSongs.cpp:73 src/gui/subSongs.cpp:93 +msgid "too many subsongs!" +msgstr "há muitas subfaixas!" + +#: src/gui/subSongs.cpp:114 +msgid "this is the only subsong!" +msgstr "essa é a única subfaixa!" + +#: src/gui/subSongs.cpp:116 +msgid "are you sure you want to remove this subsong?" +msgstr "tem certeza de que quer remover esta subfaixa?" + +#: src/gui/spoiler.cpp:30 +msgid "Spoiler" +msgstr "" + +#: src/gui/spoiler.cpp:32 +msgid "SPOILER" +msgstr "" + +#: src/gui/settings.cpp:82 src/gui/settings.cpp:92 src/gui/settings.cpp:102 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:83 src/gui/settings.cpp:93 src/gui/settings.cpp:103 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:146 +msgid "ASAP (C++ port)" +msgstr "ASAP (conversão para C++)" + +#: src/gui/settings.cpp:169 +msgid "ESFMu (fast)" +msgstr "ESFMu (rápido)" + +#: src/gui/settings.cpp:183 +msgid "Lower" +msgstr "" + +#: src/gui/settings.cpp:185 +msgid "Medium" +msgstr "" + +#: src/gui/settings.cpp:187 +msgid "Ultra" +msgstr "" + +#: src/gui/settings.cpp:188 +msgid "Ultimate" +msgstr "" + +#: src/gui/settings.cpp:192 +msgid "evdev SND_TONE" +msgstr "" + +#: src/gui/settings.cpp:193 +msgid "KIOCSOUND on /dev/tty1" +msgstr "KIOCSOUND em /dev/tty1" + +#: src/gui/settings.cpp:194 +msgid "/dev/port" +msgstr "" + +#: src/gui/settings.cpp:195 +msgid "KIOCSOUND on standard output" +msgstr "KIOCSOUND na saída padrão" + +#: src/gui/settings.cpp:196 +msgid "outb()" +msgstr "" + +#: src/gui/settings.cpp:200 src/gui/settings.cpp:210 +msgid "Disabled/custom" +msgstr "Desabilitado/personalizado" + +#: src/gui/settings.cpp:201 +msgid "Two octaves (0 is C-4, F is D#5)" +msgstr "Duas oitavas (0 é C-4, F é D#5)" + +#: src/gui/settings.cpp:202 +msgid "Raw (note number is value)" +msgstr "Cru (número da nota é o valor)" + +#: src/gui/settings.cpp:203 +msgid "Two octaves alternate (lower keys are 0-9, upper keys are A-F)" +msgstr "" +"Duas oitavas alternativo (teclas brancas são 0-9, teclas pretas são A-F)" + +#: src/gui/settings.cpp:204 src/gui/settings.cpp:211 +msgid "Use dual control change (one for each nibble)" +msgstr "Utilizar dois MIDI CC separados (um para cada nibble)" + +#: src/gui/settings.cpp:205 src/gui/settings.cpp:212 +msgid "Use 14-bit control change" +msgstr "Utilizar um MIDI CC de 14 bits" + +#: src/gui/settings.cpp:206 src/gui/settings.cpp:213 +msgid "Use single control change (imprecise)" +msgstr "Utilizar um único MIDI CC (impreciso)" + +#: src/gui/settings.cpp:217 +msgid "--select--" +msgstr "--selecione--" + +#: src/gui/settings.cpp:218 src/gui/settings.cpp:219 src/gui/settings.cpp:220 +#: src/gui/settings.cpp:221 src/gui/settings.cpp:222 src/gui/settings.cpp:223 +#: src/gui/settings.cpp:224 +msgid "???" +msgstr "" + +#: src/gui/settings.cpp:225 +msgid "Note Off" +msgstr "Note Off" + +#: src/gui/settings.cpp:226 +msgid "Note On" +msgstr "Note On" + +#: src/gui/settings.cpp:227 +msgid "Aftertouch" +msgstr "Aftertouch" + +#: src/gui/settings.cpp:228 src/gui/insEdit.cpp:7187 src/gui/insEdit.cpp:7217 +#: src/gui/insEdit.cpp:7382 src/gui/insEdit.cpp:7403 src/gui/insEdit.cpp:7415 +#: src/gui/insEdit.cpp:7430 +msgid "Control" +msgstr "Controle" + +#: src/gui/settings.cpp:229 src/gui/settings.cpp:551 src/gui/settings.cpp:3124 +msgid "Program" +msgstr "Mudança de Programa" + +#: src/gui/settings.cpp:230 +msgid "ChanPressure" +msgstr "Pressão do Canal" + +#: src/gui/settings.cpp:231 +msgid "Pitch Bend" +msgstr "Pitch Bend" + +#: src/gui/settings.cpp:232 +msgid "SysEx" +msgstr "SysEx" + +#: src/gui/settings.cpp:236 src/gui/settings.cpp:1660 src/gui/settings.cpp:1670 +#: src/gui/settings.cpp:1690 src/gui/settings.cpp:1696 +#, c-format +msgid "Any" +msgstr "Qualquer" + +#: src/gui/settings.cpp:240 src/gui/settings.cpp:3310 src/gui/settings.cpp:3875 +#: src/gui/settings.cpp:4068 +msgid "Instrument" +msgstr "Instrumento" + +#: src/gui/settings.cpp:242 +msgid "Effect 1 type" +msgstr "Tipo do Efeito 1" + +#: src/gui/settings.cpp:243 +msgid "Effect 1 value" +msgstr "Valor do Efeito 1" + +#: src/gui/settings.cpp:244 +msgid "Effect 2 type" +msgstr "Tipo do Efeito 2" + +#: src/gui/settings.cpp:245 +msgid "Effect 2 value" +msgstr "Valor do Efeito 2" + +#: src/gui/settings.cpp:246 +msgid "Effect 3 type" +msgstr "Tipo do Efeito 3" + +#: src/gui/settings.cpp:247 +msgid "Effect 3 value" +msgstr "Valor do Efeito 3" + +#: src/gui/settings.cpp:248 +msgid "Effect 4 type" +msgstr "Tipo do Efeito 4" + +#: src/gui/settings.cpp:249 +msgid "Effect 4 value" +msgstr "Valor do Efeito 4" + +#: src/gui/settings.cpp:250 +msgid "Effect 5 type" +msgstr "Tipo do Efeito 5" + +#: src/gui/settings.cpp:251 +msgid "Effect 5 value" +msgstr "Valor do Efeito 5" + +#: src/gui/settings.cpp:252 +msgid "Effect 6 type" +msgstr "Tipo do Efeito 6" + +#: src/gui/settings.cpp:253 +msgid "Effect 6 value" +msgstr "Valor do Efeito 6" + +#: src/gui/settings.cpp:254 +msgid "Effect 7 type" +msgstr "Tipo do Efeito 7" + +#: src/gui/settings.cpp:255 +msgid "Effect 7 value" +msgstr "Valor do Efeito 7" + +#: src/gui/settings.cpp:256 +msgid "Effect 8 type" +msgstr "Tipo do Efeito 8" + +#: src/gui/settings.cpp:257 +msgid "Effect 8 value" +msgstr "Valor do Efeito 8" + +#: src/gui/settings.cpp:293 +msgid "Press key..." +msgstr "Pressione uma tecla..." + +#: src/gui/settings.cpp:542 +msgid "Do you want to save your settings?" +msgstr "Você quer salvar suas configurações?" + +#: src/gui/settings.cpp:549 +msgid "General" +msgstr "Geral" + +#: src/gui/settings.cpp:553 +msgid "Render backend" +msgstr "Back-end de renderização" + +#: src/gui/settings.cpp:608 src/gui/settings.cpp:627 src/gui/settings.cpp:1259 +msgid "you may need to restart Furnace for this setting to take effect." +msgstr "" +"você pode ter que reiniciar o Furnace para essa configuração fazer efeito." + +#: src/gui/settings.cpp:611 +msgid "Advanced render backend settings" +msgstr "" + +#: src/gui/settings.cpp:613 +msgid "Render driver" +msgstr "Driver de renderização" + +#: src/gui/settings.cpp:613 src/gui/settings.cpp:614 src/gui/settings.cpp:1245 +#: src/gui/settings.cpp:1246 src/gui/piano.cpp:108 +msgid "Automatic" +msgstr "Automático" + +#: src/gui/settings.cpp:630 +msgid "" +"beware: changing these settings may render Furnace unusable! do so at your " +"own risk.\n" +"start Furnace with -safemode if you mess something up." +msgstr "" + +#: src/gui/settings.cpp:631 +msgid "Red bits" +msgstr "" + +#: src/gui/settings.cpp:636 +msgid "Green bits" +msgstr "" + +#: src/gui/settings.cpp:641 +msgid "Blue bits" +msgstr "" + +#: src/gui/settings.cpp:646 +msgid "Alpha bits" +msgstr "" + +#: src/gui/settings.cpp:651 +msgid "Color depth" +msgstr "" + +#: src/gui/settings.cpp:656 +msgid "Stencil buffer size" +msgstr "" + +#: src/gui/settings.cpp:661 src/gui/settings.cpp:1332 +msgid "Buffer size" +msgstr "Tamanho de buffer" + +#: src/gui/settings.cpp:667 +msgid "Double buffer" +msgstr "" + +#: src/gui/settings.cpp:672 +msgid "" +"the following values are common (in red, green, blue, alpha order):\n" +"- 24 bits: 8, 8, 8, 0\n" +"- 16 bits: 5, 6, 5, 0\n" +"- 32 bits (with alpha): 8, 8, 8, 8\n" +"- 30 bits (deep): 10, 10, 10, 0" +msgstr "" + +#: src/gui/settings.cpp:679 +#, c-format +msgid "" +"current backend: %s\n" +"%s\n" +"%s\n" +"%s" +msgstr "" + +#: src/gui/settings.cpp:682 +msgid "VSync" +msgstr "" + +#: src/gui/settings.cpp:690 +msgid "Frame rate limit" +msgstr "" + +#: src/gui/settings.cpp:690 +msgid "Unlimited" +msgstr "" + +#: src/gui/settings.cpp:696 +msgid "only applies when VSync is disabled." +msgstr "" + +#: src/gui/settings.cpp:700 +msgid "Display render time" +msgstr "" + +#: src/gui/settings.cpp:707 +msgid "Late render clear" +msgstr "Limpeza de renderização atrasada" + +#: src/gui/settings.cpp:712 +msgid "" +"calls rend->clear() after rend->present(). might reduce UI latency by one " +"frame in some drivers." +msgstr "" +"chama rend->clear() depois de rend->present(). pode reduzir o atraso da " +"interface gráfica por um quadro em alguns drivers." + +#: src/gui/settings.cpp:717 +msgid "Power-saving mode" +msgstr "Modo de economia de energia" + +#: src/gui/settings.cpp:722 +msgid "" +"saves power by lowering the frame rate to 2fps when idle.\n" +"may cause issues under Mesa drivers!" +msgstr "" +"economiza energia diminuindo a taxa de quadros para 2 FPS quando ocioso.\n" +"pode causar problemas com alguns drivers Mesa!" + +#: src/gui/settings.cpp:727 +msgid "Disable threaded input (restart after changing!)" +msgstr "Desabilitar entrada em threads (reinicie após alterar!)" + +#: src/gui/settings.cpp:732 +msgid "" +"threaded input processes key presses for note preview on a separate thread " +"(on supported platforms), which reduces latency.\n" +"however, crashes have been reported when threaded input is on. enable this " +"option if that is the case." +msgstr "" +"entrada em threads processa pressionamentos de tecla para previsão de notas " +"em uma thread separada (em plataformas suportadas), o que reduz o atraso.\n" +"porém, crashes já foram relatados quando a entrada em threads estava " +"ativada. habilite esta opção se isso acontecer." + +#: src/gui/settings.cpp:737 +msgid "Enable event delay" +msgstr "Habilitar atraso de eventos" + +#: src/gui/settings.cpp:743 +msgid "may cause issues with high-polling-rate mice when previewing notes." +msgstr "" +"pode causar problemas com mouses de alta taxa de amostragem ao prever notas." + +#: src/gui/settings.cpp:747 +msgid "Per-channel oscilloscope threads" +msgstr "Threads de osciloscópio por canal" + +#: src/gui/settings.cpp:755 +msgid "you're being silly, aren't you? that's enough." +msgstr "você tá de brincadeira, né? isso é mais do que suficiente." + +#: src/gui/settings.cpp:759 +msgid "what are you doing? stop!" +msgstr "o que você tá fazendo? para!" + +#: src/gui/settings.cpp:763 +#, c-format +msgid "" +"it is a bad idea to set this number higher than your CPU core count (%d)!" +msgstr "" +"é uma má ideia definir esse número pra um valor mais alto do que o número de " +"núcleos da sua CPU (%d)!" + +#: src/gui/settings.cpp:768 +msgid "Oscilloscope rendering engine:" +msgstr "Motor de renderização de osciloscópio:" + +#: src/gui/settings.cpp:770 +msgid "ImGui line plot" +msgstr "Plotagem de linhas do ImGui" + +#: src/gui/settings.cpp:774 +msgid "render using Dear ImGui's built-in line drawing functions." +msgstr "" +"desenha o osciloscópio utilizando as funções embutidas de desenho de linha " +"do Dear ImGui." + +#: src/gui/settings.cpp:776 +msgid "GLSL (if available)" +msgstr "GLSL (se disponível)" + +#: src/gui/settings.cpp:781 +msgid "" +"render using shaders that run on the graphics card.\n" +"only available in OpenGL ES 2.0 render backend." +msgstr "" + +#: src/gui/settings.cpp:783 +msgid "" +"render using shaders that run on the graphics card.\n" +"only available in OpenGL 3.0 render backend." +msgstr "" +"renderiza utilizando sombreadores que executam na placa de vídeo.\n" +"somente disponível no backend de renderização OpenGL 3.0." + +#: src/gui/settings.cpp:790 +msgid "Vibration" +msgstr "" + +#: src/gui/settings.cpp:792 +msgid "Strength" +msgstr "" + +#: src/gui/settings.cpp:798 src/gui/insEdit.cpp:2284 src/gui/insEdit.cpp:2382 +#: src/gui/insEdit.cpp:5582 src/gui/insEdit.cpp:6241 +msgid "Length" +msgstr "Comprimento" + +#: src/gui/settings.cpp:806 src/gui/gui.cpp:4191 +msgid "File" +msgstr "Arquivo" + +#: src/gui/settings.cpp:809 +msgid "Use system file picker" +msgstr "Usar diálogo de arquivos do sistema" + +#: src/gui/settings.cpp:814 +msgid "Number of recent files" +msgstr "Número de arquivos recentes" + +#: src/gui/settings.cpp:821 +msgid "Compress when saving" +msgstr "Comprimir ao salvar" + +#: src/gui/settings.cpp:826 +msgid "use zlib to compress saved songs." +msgstr "usar zlib para comprimir músicas salvas." + +#: src/gui/settings.cpp:830 +msgid "Save unused patterns" +msgstr "Salvar sequências não utilizadas" + +#: src/gui/settings.cpp:836 +msgid "Use new pattern format when saving" +msgstr "Utilizar novo formato de padrão ao salvar" + +#: src/gui/settings.cpp:841 +msgid "" +"use a packed format which saves space when saving songs.\n" +"disable if you need compatibility with older Furnace and/or tools\n" +"which do not support this format." +msgstr "" +"utilizar um formato empacotado que economiza espaço ao salvar músicas.\n" +"desabilite se você precisa de compatibilidade com versões antigas do Furnace " +"e/ou ferramentas\n" +"que não suportam esse formato." + +#: src/gui/settings.cpp:845 +msgid "Don't apply compatibility flags when loading .dmf" +msgstr "Não aplicar opções de compatibilidade ao carregar .dmf" + +#: src/gui/settings.cpp:850 +msgid "do not report any issues arising from the use of this option!" +msgstr "favor não relatar nenhum problema vindo do uso dessa opção!" + +#: src/gui/settings.cpp:853 +msgid "Play after opening song:" +msgstr "Reproduzir após abrir música:" + +#: src/gui/settings.cpp:855 +msgid "No##pol0" +msgstr "Não##pol0" + +#: src/gui/settings.cpp:859 +msgid "Only if already playing##pol1" +msgstr "Somente se já estiver reproduzindo##pol1" + +#: src/gui/settings.cpp:863 +msgid "Yes##pol0" +msgstr "Sim##pol0" + +#: src/gui/settings.cpp:869 +msgid "Audio export loop/fade out time:" +msgstr "Tempo de repetição/fade out da exportação de áudio:" + +#: src/gui/settings.cpp:871 +msgid "Set to these values on start-up:##fot0" +msgstr "Definir para estes valores na inicialização:##fot0" + +#: src/gui/settings.cpp:889 +msgid "Remember last values##fot1" +msgstr "Lembrar últimos valores##fot1" + +#: src/gui/settings.cpp:896 +msgid "Store instrument name in .fui" +msgstr "Armazenar nome do instrumento no .fui" + +#: src/gui/settings.cpp:901 +msgid "" +"when enabled, saving an instrument will store its name.\n" +"this may increase file size." +msgstr "" +"quando habilitado, ao salvar um instrumento será armazenado o seu nome.\n" +" isso pode aumentar o tamanho do arquivo." + +#: src/gui/settings.cpp:905 +msgid "Load instrument name from .fui" +msgstr "Carregar nome do instrumento do .fui" + +#: src/gui/settings.cpp:910 +msgid "" +"when enabled, loading an instrument will use the stored name (if present).\n" +"otherwise, it will use the file name." +msgstr "" +"quando habilitado, ao carregar um instrumento será utilizado o nome " +"armazenado, se presente.\n" +"caso contrário, será utilizado o nome do arquivo." + +#: src/gui/settings.cpp:914 +msgid "Auto-fill file name when saving" +msgstr "" + +#: src/gui/settings.cpp:919 +msgid "" +"fill the file name field with an appropriate file name when saving or " +"exporting." +msgstr "" + +#: src/gui/settings.cpp:923 src/gui/gui.cpp:5563 src/gui/gui.cpp:5613 +msgid "New Song" +msgstr "Nova Música" + +#: src/gui/settings.cpp:925 +msgid "Initial system:" +msgstr "Sistema inicial:" + +#: src/gui/settings.cpp:927 +msgid "Current system" +msgstr "Sistema atual" + +#: src/gui/settings.cpp:940 src/gui/waveEdit.cpp:1149 src/gui/gui.cpp:3046 +msgid "Randomize" +msgstr "Aleatorizar" + +#: src/gui/settings.cpp:990 +msgid "Reset to defaults" +msgstr "Reiniciar aos padrões" + +#: src/gui/settings.cpp:1125 +msgid "When creating new song:" +msgstr "Ao criar uma nova música:" + +#: src/gui/settings.cpp:1127 +msgid "Display system preset selector##NSB0" +msgstr "Mostrar seletor de predefinições de sistema##NSB0" + +#: src/gui/settings.cpp:1131 +msgid "Start with initial system##NSB1" +msgstr "Começar com o sistema inicial##NSB1" + +#: src/gui/settings.cpp:1135 +msgid "Default author name" +msgstr "Nome do autor padrão" + +#: src/gui/settings.cpp:1139 +msgid "Start-up" +msgstr "Inicialização" + +#: src/gui/settings.cpp:1140 +msgid "Play intro on start-up:" +msgstr "" + +#: src/gui/settings.cpp:1142 +msgid "No##pis0" +msgstr "" + +#: src/gui/settings.cpp:1146 +msgid "Short##pis1" +msgstr "" + +#: src/gui/settings.cpp:1150 +msgid "Full (short when loading song)##pis2" +msgstr "" + +#: src/gui/settings.cpp:1154 +msgid "Full (always)##pis3" +msgstr "" + +#: src/gui/settings.cpp:1161 +msgid "Disable fade-in during start-up" +msgstr "Desabilitar transição fade-in durante inicialização" + +#: src/gui/settings.cpp:1167 +msgid "About screen party time" +msgstr "\"Hora da Festa\" na tela \"Sobre...\"" + +#: src/gui/settings.cpp:1172 +msgid "Warning: may cause epileptic seizures." +msgstr "Aviso: pode causar ataques epiléticos." + +#: src/gui/settings.cpp:1176 +msgid "Behavior" +msgstr "Comportamento" + +#: src/gui/settings.cpp:1178 +msgid "New instruments are blank" +msgstr "Novos instrumentos começam em branco" + +#: src/gui/settings.cpp:1184 src/gui/settings.cpp:4202 +msgid "Configuration" +msgstr "" + +#: src/gui/settings.cpp:1193 +msgid "Factory Reset" +msgstr "" + +#: src/gui/settings.cpp:1194 +msgid "" +"Are you sure you want to reset all Furnace settings?\n" +"You must restart Furnace after doing so." +msgstr "" + +#: src/gui/settings.cpp:1202 +msgid "Output" +msgstr "Saída" + +#: src/gui/settings.cpp:1210 +msgid "Backend" +msgstr "Back-end" + +#: src/gui/settings.cpp:1243 +msgid "Driver" +msgstr "Driver" + +#: src/gui/settings.cpp:1266 +msgid "Device" +msgstr "Dispositivo" + +#: src/gui/settings.cpp:1270 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:1271 +msgid "ALERT - TRESPASSER DETECTED" +msgstr "ALERTA - INVASOR DETECTADO" + +#: src/gui/settings.cpp:1273 +msgid "you have been arrested for trying to engage with a disabled combo box." +msgstr "" +"você foi preso por tentar interagir com uma caixa de combinação desabilitada." + +#: src/gui/settings.cpp:1280 src/gui/settings.cpp:1282 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:1318 src/gui/insEdit.cpp:7186 +msgid "Outputs" +msgstr "Saídas" + +#: src/gui/settings.cpp:1326 +msgid "" +"common values:\n" +"- 1 for mono\n" +"- 2 for stereo\n" +"- 4 for quadraphonic\n" +"- 6 for 5.1 surround\n" +"- 8 for 7.1 surround" +msgstr "" + +#: src/gui/settings.cpp:1334 +#, c-format +msgid "%d (latency: ~%.1fms)" +msgstr "%d (atraso: ~%.1fms)" + +#: src/gui/settings.cpp:1349 +msgid "Multi-threaded (EXPERIMENTAL)" +msgstr "Multissegmentado (EXPERIMENTAL)" + +#: src/gui/settings.cpp:1358 +msgid "" +"runs chip emulation on separate threads.\n" +"may increase performance when using heavy emulation cores.\n" +"\n" +"warnings:\n" +"- experimental!\n" +"- only useful on multi-chip songs." +msgstr "" +"roda a emulação de chips em threads separadas.\n" +"pode aumentar a performance ao utilizar núcleos de emulação pesados.\n" +"\n" +"avisos:\n" +"- experimental!\n" +"- só é útil em músicas com múltiplos chips." + +#: src/gui/settings.cpp:1363 +msgid "Number of threads" +msgstr "Número de threads:" + +#: src/gui/settings.cpp:1370 +msgid "that's the limit!" +msgstr "esse é o limite!" + +#: src/gui/settings.cpp:1374 +#, c-format +msgid "" +"it is a VERY bad idea to set this number higher than your CPU core count " +"(%d)!" +msgstr "" +"é uma PÉSSIMA ideia definir esse número pra um valor mais alto do que o " +"número de núcleos da sua CPU (%d)!" + +#: src/gui/settings.cpp:1382 +msgid "Low-latency mode" +msgstr "Modo de baixo atraso" + +#: src/gui/settings.cpp:1387 +msgid "" +"reduces latency by running the engine faster than the tick rate.\n" +"useful for live playback/jam mode.\n" +"\n" +"warning: only enable if your buffer size is small (10ms or less)." +msgstr "" +"reduz o atraso rodando o motor mais rápido que a taxa de ticks.\n" +"útil para tocar ao vivo/\"modo jam\".\n" +"\n" +"aviso: só habilite se o seu tamanho de buffer for pequeno (10ms ou menor)." + +#: src/gui/settings.cpp:1391 +msgid "Force mono audio" +msgstr "Forçar áudio mono" + +#: src/gui/settings.cpp:1399 +msgid "Exclusive mode" +msgstr "Modo exclusivo" + +#: src/gui/settings.cpp:1410 +#, c-format +msgid "want: %d samples @ %.0fHz (%d channel)" +msgid_plural "want: %d samples @ %.0fHz (%d channels)" +msgstr[0] "" +msgstr[1] "" + +#: src/gui/settings.cpp:1411 +#, c-format +msgid "got: %d samples @ %.0fHz (%d channel)" +msgid_plural "got: %d samples @ %.0fHz (%d channels)" +msgstr[0] "" +msgstr[1] "" + +#: src/gui/settings.cpp:1418 +msgid "Mixing" +msgstr "Mixing" + +#: src/gui/settings.cpp:1420 src/gui/settings.cpp:2029 +msgid "Quality" +msgstr "Qualidade" + +#: src/gui/settings.cpp:1425 +msgid "Software clipping" +msgstr "Clipping em software" + +#: src/gui/settings.cpp:1431 +msgid "DC offset correction" +msgstr "Correção de deslocamento DC" + +#: src/gui/settings.cpp:1449 src/gui/guiConst.cpp:740 +msgid "Sample preview" +msgstr "Previsão de sample" + +#: src/gui/settings.cpp:1462 +msgid "MIDI" +msgstr "MIDI" + +#: src/gui/settings.cpp:1464 src/gui/settings.cpp:1466 +msgid "MIDI input" +msgstr "Entrada MIDI" + +#: src/gui/settings.cpp:1468 src/gui/settings.cpp:1471 +#: src/gui/settings.cpp:1762 src/gui/settings.cpp:1764 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:1487 +msgid "Re-scan MIDI devices" +msgstr "Procurar novamente por dispositivos MIDI" + +#: src/gui/settings.cpp:1498 src/gui/settings.cpp:2205 +msgid "Note input" +msgstr "Entrada de notas" + +#: src/gui/settings.cpp:1499 +msgid "Velocity input" +msgstr "Entrada de velocidade" + +#: src/gui/settings.cpp:1503 +msgid "Map MIDI channels to direct channels" +msgstr "Mapear canais MIDI a canais diretos" + +#: src/gui/settings.cpp:1509 +msgid "Program change pass-through" +msgstr "Passagem de mudança de programa" + +#: src/gui/settings.cpp:1514 +msgid "Map Yamaha FM voice data to instruments" +msgstr "Mapear dados de timbre FM Yamaha aos instrumentos" + +#: src/gui/settings.cpp:1516 +msgid "Program change is instrument selection" +msgstr "Mudança de programa é seleção de instrumento" + +#: src/gui/settings.cpp:1520 +msgid "Value input style" +msgstr "Estilo de entrada de valor" + +#: src/gui/settings.cpp:1523 src/gui/settings.cpp:1548 +msgid "Control##valueCCS" +msgstr "Controle##valueCCS" + +#: src/gui/settings.cpp:1529 src/gui/settings.cpp:1554 +msgid "CC of upper nibble##valueCC1" +msgstr "CC do nibble superior##valueCC1" + +#: src/gui/settings.cpp:1529 src/gui/settings.cpp:1554 +msgid "MSB CC##valueCC1" +msgstr "CC do byte mais significativo##valueCC1" + +#: src/gui/settings.cpp:1534 src/gui/settings.cpp:1559 +msgid "CC of lower nibble##valueCC2" +msgstr "CC do nibble inferior##valueCC2" + +#: src/gui/settings.cpp:1534 src/gui/settings.cpp:1559 +msgid "LSB CC##valueCC2" +msgstr "CC do byte menos significativo##valueCC2" + +#: src/gui/settings.cpp:1541 +msgid "Per-column control change" +msgstr "Mudança de controle por coluna" + +#: src/gui/settings.cpp:1571 src/gui/settings.cpp:1581 +msgid "Volume curve" +msgstr "Curva de volume" + +#: src/gui/settings.cpp:1584 +msgid "Actions:" +msgstr "Ações:" + +#: src/gui/settings.cpp:1598 +msgid "" +"(learning! press a button or move a slider/knob/something on your device.)" +msgstr "" +"(aprendendo! pressione, gire um botão, mova um controle deslizante ou outra " +"coisa em seu dispositivo.)" + +#: src/gui/settings.cpp:1612 src/gui/settings.cpp:2224 +#: src/gui/sampleEdit.cpp:501 src/gui/insEdit.cpp:5321 +msgid "Type" +msgstr "Tipo" + +#: src/gui/settings.cpp:1616 +msgid "Note/Control" +msgstr "Nota/Controle" + +#: src/gui/settings.cpp:1618 +msgid "Velocity/Value" +msgstr "Velocidade/Valor" + +#: src/gui/settings.cpp:1620 +msgid "Action" +msgstr "Ação" + +#: src/gui/settings.cpp:1712 src/gui/settings.cpp:1713 +msgid "--none--" +msgstr "--nenhuma--" + +#: src/gui/settings.cpp:1734 +msgid "waiting...##BLearn" +msgstr "aguardando...##BLearn" + +#: src/gui/settings.cpp:1734 +msgid "Learn##BLearn" +msgstr "Aprender##BLearn" + +#: src/gui/settings.cpp:1758 src/gui/settings.cpp:1760 +msgid "MIDI output" +msgstr "Saída MIDI" + +#: src/gui/settings.cpp:1777 +msgid "Output mode:" +msgstr "Modo de saída:" + +#: src/gui/settings.cpp:1779 +msgid "Off (use for TX81Z)" +msgstr "Desabilitada (use para TX81Z)" + +#: src/gui/settings.cpp:1783 +msgid "Melodic" +msgstr "Melódica" + +#: src/gui/settings.cpp:1794 +msgid "Send Program Change" +msgstr "Enviar Mudança de Programa" + +#: src/gui/settings.cpp:1800 +msgid "Send MIDI clock" +msgstr "Enviar Clock MIDI" + +#: src/gui/settings.cpp:1806 +msgid "Send MIDI timecode" +msgstr "Enviar Timecode MIDI" + +#: src/gui/settings.cpp:1812 +msgid "Timecode frame rate:" +msgstr "Taxa de quadros do timecode:" + +#: src/gui/settings.cpp:1814 +msgid "Closest to Tick Rate" +msgstr "Mais próxima da taxa de ticks" + +#: src/gui/settings.cpp:1818 +msgid "Film (24fps)" +msgstr "Filme (24fps)" + +#: src/gui/settings.cpp:1822 +msgid "PAL (25fps)" +msgstr "PAL (25fps)" + +#: src/gui/settings.cpp:1826 +msgid "NTSC drop (29.97fps)" +msgstr "NTSC drop (29.97fps)" + +#: src/gui/settings.cpp:1830 +msgid "NTSC non-drop (30fps)" +msgstr "NTSC não-drop (30fps)" + +#: src/gui/settings.cpp:1839 +msgid "Emulation" +msgstr "Emulação" + +#: src/gui/settings.cpp:1841 +msgid "Cores" +msgstr "Núcleos" + +#: src/gui/settings.cpp:1850 +msgid "Playback Core(s)" +msgstr "Núcleo(s) de reprodução" + +#: src/gui/settings.cpp:1852 src/gui/settings.cpp:2040 +msgid "used for playback" +msgstr "utilizados para reprodução" + +#: src/gui/settings.cpp:1855 +msgid "Render Core(s)" +msgstr "Núcleo(s) de renderização" + +#: src/gui/settings.cpp:1857 src/gui/settings.cpp:2045 +msgid "used in audio export" +msgstr "utilizados para exportação de áudio" + +#: src/gui/settings.cpp:2038 +msgid "Playback" +msgstr "" + +#: src/gui/settings.cpp:2043 +msgid "Render" +msgstr "" + +#: src/gui/settings.cpp:2067 +msgid "PC Speaker strategy" +msgstr "Estratégia de PC Speaker" + +#: src/gui/settings.cpp:2105 src/gui/settings.cpp:2107 +msgid "Keyboard" +msgstr "Teclado" + +#: src/gui/settings.cpp:2116 src/gui/settings.cpp:3751 +msgid "Reset defaults" +msgstr "Redefinir padrões" + +#: src/gui/settings.cpp:2117 +msgid "Are you sure you want to reset the keyboard settings?" +msgstr "Tem certeza de que quer redefinir as configurações de teclado?" + +#: src/gui/settings.cpp:2119 +msgid "Global hotkeys" +msgstr "Atalhos globais" + +#: src/gui/settings.cpp:2156 +msgid "Window activation" +msgstr "Ativação de janela" + +#: src/gui/settings.cpp:2222 +msgid "Key" +msgstr "Tecla" + +#: src/gui/settings.cpp:2226 src/gui/findReplace.cpp:725 +#: src/gui/findReplace.cpp:1003 +msgid "Value" +msgstr "Valor" + +#: src/gui/settings.cpp:2236 +#, c-format +msgid "Macro release##SNType_%d" +msgstr "Repouso de macro##SNType_%d" + +#: src/gui/settings.cpp:2241 +#, c-format +msgid "Note release##SNType_%d" +msgstr "Repouso de nota##SNType_%d" + +#: src/gui/settings.cpp:2246 +#, c-format +msgid "Note off##SNType_%d" +msgstr "Note off##SNType_%d" + +#: src/gui/settings.cpp:2251 +#, c-format +msgid "Note##SNType_%d" +msgstr "Nota##SNType_%d" + +#: src/gui/settings.cpp:2275 +msgid "Add..." +msgstr "Adicionar..." + +#: src/gui/settings.cpp:2365 +msgid "Instrument list" +msgstr "Lista de instrumentos" + +#: src/gui/settings.cpp:2385 +msgid "Wavetable list" +msgstr "Lista de wavetables" + +#: src/gui/settings.cpp:2406 +msgid "Sample list" +msgstr "Lista de samples" + +#: src/gui/settings.cpp:2456 +msgid "Sample editor" +msgstr "Editor de samples" + +#: src/gui/settings.cpp:2494 src/gui/settings.cpp:3761 +#: src/gui/settings.cpp:3791 +msgid "Interface" +msgstr "Interface" + +#: src/gui/settings.cpp:2496 +msgid "Layout" +msgstr "Leiaute" + +#: src/gui/settings.cpp:2498 +msgid "Workspace layout:" +msgstr "Leiaute do espaço de trabalho:" + +#: src/gui/settings.cpp:2508 src/gui/gui.cpp:2920 +msgid "Reset" +msgstr "Redefinir" + +#: src/gui/settings.cpp:2509 src/gui/gui.cpp:4455 +msgid "Are you sure you want to reset the workspace layout?" +msgstr "Tem certeza de que quer redefinir o leiaute do espaço de trabalho?" + +#: src/gui/settings.cpp:2513 +msgid "Allow docking editors" +msgstr "Permitir ancorar editores" + +#: src/gui/settings.cpp:2520 +msgid "Remember window position" +msgstr "Lembrar posição da janela" + +#: src/gui/settings.cpp:2525 +msgid "remembers the window's last position on start-up." +msgstr "memoriza a última posição da janela no início do programa." + +#: src/gui/settings.cpp:2530 +msgid "Only allow window movement when clicking on title bar" +msgstr "Permitir movimentação da janela somente ao clicar na barra de título" + +#: src/gui/settings.cpp:2537 +msgid "Center pop-up windows" +msgstr "Centralizar janelas flutuantes" + +#: src/gui/settings.cpp:2542 +msgid "Play/edit controls layout:" +msgstr "Leiaute de controles de reprodução/edição:" + +#: src/gui/settings.cpp:2544 +msgid "Classic##ecl0" +msgstr "Clássico##ecl0" + +#: src/gui/settings.cpp:2548 +msgid "Compact##ecl1" +msgstr "Compacto##ecl1" + +#: src/gui/settings.cpp:2552 +msgid "Compact (vertical)##ecl2" +msgstr "Compacto (vertical)##ecl2" + +#: src/gui/settings.cpp:2556 +msgid "Split##ecl3" +msgstr "Dividido##ecl3" + +#: src/gui/settings.cpp:2562 +msgid "Position of buttons in Orders:" +msgstr "Posição dos botões na janela Ordens:" + +#: src/gui/settings.cpp:2564 +msgid "Top##obp0" +msgstr "Topo##obp0" + +#: src/gui/settings.cpp:2568 +msgid "Left##obp1" +msgstr "Esquerda##obp1" + +#: src/gui/settings.cpp:2572 +msgid "Right##obp2" +msgstr "Direita##obp2" + +#: src/gui/settings.cpp:2579 +msgid "Mouse" +msgstr "Mouse" + +#: src/gui/settings.cpp:2581 +msgid "Double-click time (seconds)" +msgstr "Tempo de duplo clique (segundos)" + +#: src/gui/settings.cpp:2590 +msgid "Don't raise pattern editor on click" +msgstr "Não levantar o editor de sequência ao clicar" + +#: src/gui/settings.cpp:2596 +msgid "Focus pattern editor when selecting instrument" +msgstr "Focar editor de sequência ao selecionar instrumento" + +#: src/gui/settings.cpp:2601 +msgid "Note preview behavior:" +msgstr "Comportamento de previsão de nota:" + +#: src/gui/settings.cpp:2603 +msgid "Never##npb0" +msgstr "Nunca##npb0" + +#: src/gui/settings.cpp:2607 +msgid "When cursor is in Note column##npb1" +msgstr "Quando o cursor estiver na coluna de Nota##npb1" + +#: src/gui/settings.cpp:2611 +msgid "When cursor is in Note column or not in edit mode##npb2" +msgstr "" +"Quando o cursor estiver na coluna de Nota ou não estiver no modo de " +"edição##npb2" + +#: src/gui/settings.cpp:2615 +msgid "Always##npb3" +msgstr "Sempre##npb3" + +#: src/gui/settings.cpp:2621 +msgid "Allow dragging selection:" +msgstr "Permitir arrastar seleção:" + +#: src/gui/settings.cpp:2623 +msgid "No##dms0" +msgstr "Não##dms0" + +#: src/gui/settings.cpp:2627 +msgid "Yes##dms1" +msgstr "Sim##dms1" + +#: src/gui/settings.cpp:2631 +msgid "Yes (while holding Ctrl only)##dms2" +msgstr "Sim (somente quando segurando Ctrl)##dms2" + +#: src/gui/settings.cpp:2637 +msgid "Toggle channel solo on:" +msgstr "Alternar isolamento de canal ao:" + +#: src/gui/settings.cpp:2639 +msgid "Right-click or double-click##soloA" +msgstr "" + +#: src/gui/settings.cpp:2643 +msgid "Right-click##soloR" +msgstr "" + +#: src/gui/settings.cpp:2647 +msgid "Double-click##soloD" +msgstr "" + +#: src/gui/settings.cpp:2654 +msgid "Double click selects entire column" +msgstr "Duplo clique seleciona a coluna inteira" + +#: src/gui/settings.cpp:2660 +msgid "Cursor behavior" +msgstr "Comportamento do cursor" + +#: src/gui/settings.cpp:2662 +msgid "Insert pushes entire channel row" +msgstr "Inserção empurra a linha do canal inteiro" + +#: src/gui/settings.cpp:2668 +msgid "Pull delete affects entire channel row" +msgstr "Excluir e puxar afeta a linha do canal inteiro" + +#: src/gui/settings.cpp:2674 +msgid "Push value when overwriting instead of clearing it" +msgstr "Empurrar valor ao sobrescrever ao invés de limpá-lo" + +#: src/gui/settings.cpp:2680 +msgid "Keyboard note/value input repeat (hold key to input continuously)" +msgstr "" + +#: src/gui/settings.cpp:2685 +msgid "Effect input behavior:" +msgstr "Comportamento de inserção de efeitos:" + +#: src/gui/settings.cpp:2687 +msgid "Move down##eicb0" +msgstr "Mover para baixo##eicb0" + +#: src/gui/settings.cpp:2691 +msgid "Move to effect value (otherwise move down)##eicb1" +msgstr "Mover para valor do efeito (caso contrário mover para baixo)##eicb1" + +#: src/gui/settings.cpp:2695 +msgid "Move to effect value/next effect and wrap around##eicb2" +msgstr "Mover para valor do efeito/próximo efeito e dar a volta##eicb2" + +#: src/gui/settings.cpp:2702 +msgid "Delete effect value when deleting effect" +msgstr "Excluir valor do efeito ao excluir efeito" + +#: src/gui/settings.cpp:2708 +msgid "Change current instrument when changing instrument column (absorb)" +msgstr "Alterar instrumento atual ao alterar coluna de instrumento (absorver)" + +#: src/gui/settings.cpp:2714 +msgid "Remove instrument value when inserting note off/release" +msgstr "Remover valor do instrumento ao inserir note off/repouso" + +#: src/gui/settings.cpp:2720 +msgid "Remove volume value when inserting note off/release" +msgstr "Remover valor do volume ao inserir note off/repouso" + +#: src/gui/settings.cpp:2726 +msgid "Cursor movement" +msgstr "Movimentação do cursor" + +#: src/gui/settings.cpp:2728 +msgid "Wrap horizontally:" +msgstr "Dar a volta horizontalmente:" + +#: src/gui/settings.cpp:2730 +msgid "No##wrapH0" +msgstr "Não##wrapH0" + +#: src/gui/settings.cpp:2734 +msgid "Yes##wrapH1" +msgstr "Sim##wrapH1" + +#: src/gui/settings.cpp:2738 +msgid "Yes, and move to next/prev row##wrapH2" +msgstr "Sim, e mover para a próxima linha/anterior##wrapH2" + +#: src/gui/settings.cpp:2744 +msgid "Wrap vertically:" +msgstr "Dar a volta verticalmente:" + +#: src/gui/settings.cpp:2746 +msgid "No##wrapV0" +msgstr "Não##wrapV0" + +#: src/gui/settings.cpp:2750 +msgid "Yes##wrapV1" +msgstr "Sim##wrapV1" + +#: src/gui/settings.cpp:2754 +msgid "Yes, and move to next/prev pattern##wrapV2" +msgstr "Sim, e mover para a próxima sequência/anterior##wrapV2" + +#: src/gui/settings.cpp:2758 +msgid "Yes, and move to next/prev pattern (wrap around)##wrapV2" +msgstr "" +"Sim, e mover para a próxima sequência/anterior (dando a volta pela " +"música)##wrapV2" + +#: src/gui/settings.cpp:2764 +msgid "Cursor movement keys behavior:" +msgstr "Comportamento das teclas de movimentação do cursor:" + +#: src/gui/settings.cpp:2766 +msgid "Move by one##cmk0" +msgstr "Mover uma célula##cmk0" + +#: src/gui/settings.cpp:2770 +msgid "Move by Edit Step##cmk1" +msgstr "Mover pelo Passo de Edição##cmk1" + +#: src/gui/settings.cpp:2777 +msgid "Move cursor by edit step on delete" +msgstr "Mover cursor pelo Passo de Edição ao excluir" + +#: src/gui/settings.cpp:2783 +msgid "Move cursor by edit step on insert (push)" +msgstr "Mover cursor pelo Passo de Edição ao inserir (empurrar)" + +#: src/gui/settings.cpp:2789 +msgid "Move cursor up on backspace-delete" +msgstr "Mover cursor para cima ao excluir-backspace" + +#: src/gui/settings.cpp:2795 +msgid "Move cursor to end of clipboard content when pasting" +msgstr "Mover cursor ao final do conteúdo da área de transferência ao colar" + +#: src/gui/settings.cpp:2801 +msgid "Scrolling" +msgstr "Rolagem" + +#: src/gui/settings.cpp:2803 +msgid "Change order when scrolling outside of pattern bounds:" +msgstr "Trocar ordem ao rolar fora dos limites da sequência:" + +#: src/gui/settings.cpp:2805 +msgid "No##pscroll0" +msgstr "Não##pscroll0" + +#: src/gui/settings.cpp:2809 +msgid "Yes##pscroll1" +msgstr "Sim##pscroll1" + +#: src/gui/settings.cpp:2813 +msgid "Yes, and wrap around song##pscroll2" +msgstr "Sim, e dar a volta pela música##pscroll2" + +#: src/gui/settings.cpp:2820 +msgid "Cursor follows current order when moving it" +msgstr "Cursor segue a ordem atual ao movê-lo" + +#: src/gui/settings.cpp:2825 +msgid "applies when playback is stopped." +msgstr "aplica-se quando a reprodução está parada." + +#: src/gui/settings.cpp:2829 +msgid "Don't scroll when moving cursor" +msgstr "Não rolar ao mover cursor" + +#: src/gui/settings.cpp:2834 +msgid "Move cursor with scroll wheel:" +msgstr "Mover cursor com o scroll do mouse:" + +#: src/gui/settings.cpp:2836 +msgid "No##csw0" +msgstr "Não##csw0" + +#: src/gui/settings.cpp:2840 +msgid "Yes##csw1" +msgstr "Sim##csw1" + +#: src/gui/settings.cpp:2844 +msgid "Inverted##csw2" +msgstr "Invertido##csw2" + +#: src/gui/settings.cpp:2851 +msgid "How many steps to move with each scroll wheel step?" +msgstr "Quantos passos mover com cada passo do scroll do mouse?" + +#: src/gui/settings.cpp:2852 +msgid "One##cws0" +msgstr "Um a um##cws0" + +#: src/gui/settings.cpp:2856 +msgid "Edit Step##cws1" +msgstr "Passo de edição##cws1" + +#: src/gui/settings.cpp:2863 src/gui/settings.cpp:3478 +msgid "Assets" +msgstr "Recursos" + +#: src/gui/settings.cpp:2866 +msgid "Display instrument type menu when adding instrument" +msgstr "Mostrar menu de tipo de instrumento ao adicionar instrumento" + +#: src/gui/settings.cpp:2872 +msgid "Select asset after opening one" +msgstr "Selecionar recurso após abrir um" + +#: src/gui/settings.cpp:2879 +msgid "Appearance" +msgstr "Aparência" + +#: src/gui/settings.cpp:2881 +msgid "Scaling" +msgstr "Escala" + +#: src/gui/settings.cpp:2883 +msgid "Automatic UI scaling factor" +msgstr "Fator de escala de interface automático" + +#: src/gui/settings.cpp:2892 +msgid "UI scaling factor" +msgstr "Fator de escala de interface" + +#: src/gui/settings.cpp:2899 +msgid "Icon size" +msgstr "Tamanho dos ícones" + +#: src/gui/settings.cpp:2914 +msgid "Font renderer" +msgstr "Renderizador de fonte" + +#: src/gui/settings.cpp:2924 +msgid "Main font" +msgstr "Fonte principal" + +#: src/gui/settings.cpp:2935 +msgid "Size##MainFontSize" +msgstr "Tamanho##MainFontSize" + +#: src/gui/settings.cpp:2943 +msgid "Header font" +msgstr "Fonte do cabeçalho" + +#: src/gui/settings.cpp:2954 +msgid "Size##HeadFontSize" +msgstr "Tamanho##HeadFontSize" + +#: src/gui/settings.cpp:2962 +msgid "Pattern font" +msgstr "Fonte da sequência" + +#: src/gui/settings.cpp:2973 +msgid "Size##PatFontSize" +msgstr "Tamanho##PatFontSize" + +#: src/gui/settings.cpp:2983 +msgid "Anti-aliased fonts" +msgstr "Fontes suavizadas" + +#: src/gui/settings.cpp:2989 +msgid "Support bitmap fonts" +msgstr "Suporte a fontes bitmap" + +#: src/gui/settings.cpp:2994 +msgid "Hinting:" +msgstr "Hinting:" + +#: src/gui/settings.cpp:2996 +msgid "Off (soft)##fh0" +msgstr "Desligado (suave)##fh0" + +#: src/gui/settings.cpp:3000 +msgid "Slight##fh1" +msgstr "Leve##fh1" + +#: src/gui/settings.cpp:3004 +msgid "Normal##fh2" +msgstr "Normal##fh2" + +#: src/gui/settings.cpp:3008 +msgid "Full (hard)##fh3" +msgstr "Completo (duro)##fh3" + +#: src/gui/settings.cpp:3014 +msgid "Auto-hinter:" +msgstr "Auto-hinter:" + +#: src/gui/settings.cpp:3016 +msgid "Disable##fah0" +msgstr "Desabilitado##fah0" + +#: src/gui/settings.cpp:3020 +msgid "Enable##fah1" +msgstr "Habilitado##fah1" + +#: src/gui/settings.cpp:3024 +msgid "Force##fah2" +msgstr "Forçado##fah2" + +#: src/gui/settings.cpp:3031 +msgid "Oversample" +msgstr "" + +#: src/gui/settings.cpp:3034 +msgid "1×##fos1" +msgstr "" + +#: src/gui/settings.cpp:3039 +msgid "" +"saves video memory. reduces font rendering quality.\n" +"use for pixel/bitmap fonts." +msgstr "" + +#: src/gui/settings.cpp:3042 +msgid "2×##fos2" +msgstr "" + +#: src/gui/settings.cpp:3047 +msgid "default." +msgstr "" + +#: src/gui/settings.cpp:3050 +msgid "3×##fos3" +msgstr "" + +#: src/gui/settings.cpp:3055 +msgid "" +"slightly better font rendering quality.\n" +"uses more video memory." +msgstr "" + +#: src/gui/settings.cpp:3059 +msgid "Load fallback font" +msgstr "" + +#: src/gui/settings.cpp:3064 +msgid "disable to save video memory." +msgstr "" + +#: src/gui/settings.cpp:3068 +msgid "Display Japanese characters" +msgstr "Exibir caracteres Japoneses" + +#: src/gui/settings.cpp:3074 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"このオプションは、十分なグラフィックメモリがある場合にのみ切り替えてくださ" +"い。\n" +"これは、Dear ImGuiにダイナミックフォントアトラスが実装されるまでの一時的な解" +"決策です。" +msgstr "" +"Somente habilite esta opção se você tiver memória gráfica suficiente.\n" +"Isto é uma solução temporária até que atlas de fonte dinâmico seja " +"implementado no Dear ImGui.\n" +"\n" +"このオプションは、十分なグラフィックメモリがある場合にのみ切り替えてくださ" +"い。\n" +"これは、Dear ImGuiにダイナミックフォントアトラスが実装されるまでの一時的な解" +"決策です。" + +#: src/gui/settings.cpp:3082 +msgid "Display Chinese (Simplified) characters" +msgstr "Exibir caracteres Chineses (Simplificado)" + +#: src/gui/settings.cpp:3088 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"请在确保你有足够的显存后再启动此设定\n" +"这是一个在ImGui实现动态字体加载之前的临时解决方案" +msgstr "" +"Somente habilite esta opção se você tiver memória gráfica suficiente.\n" +"Isto é uma solução temporária até que atlas de fonte dinâmico seja " +"implementado no Dear ImGui.\n" +"\n" +"请在确保你有足够的显存后再启动此设定\n" +"这是一个在ImGui实现动态字体加载之前的临时解决方案" + +#: src/gui/settings.cpp:3096 +msgid "Display Chinese (Traditional) characters" +msgstr "Exibir caracteres Chineses (Simplificado)" + +#: src/gui/settings.cpp:3102 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"請在確保你有足夠的顯存后再啟動此設定\n" +"這是一個在ImGui實現動態字體加載之前的臨時解決方案" +msgstr "" +"Somente habilite esta opção se você tiver memória gráfica suficiente.\n" +"Isto é uma solução temporária até que atlas de fonte dinâmico seja " +"implementado no Dear ImGui.\n" +"\n" +"請在確保你有足夠的顯存后再啟動此設定\n" +"這是一個在ImGui實現動態字體加載之前的臨時解決方案" + +#: src/gui/settings.cpp:3110 +msgid "Display Korean characters" +msgstr "Exibir caracteres Coreanos" + +#: src/gui/settings.cpp:3116 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"그래픽 메모리가 충분한 경우에만 이 옵션을 선택하십시오.\n" +"이 옵션은 Dear ImGui에 동적 글꼴 아틀라스가 구현될 때까지 임시 솔루션입니다." +msgstr "" +"Somente habilite esta opção se você tiver memória gráfica suficiente.\n" +"Isto é uma solução temporária até que atlas de fonte dinâmico seja " +"implementado no Dear ImGui.\n" +"\n" +"그래픽 메모리가 충분한 경우에만 이 옵션을 선택하십시오.\n" +"이 옵션은 Dear ImGui에 동적 글꼴 아틀라스가 구현될 때까지 임시 솔루션입니다." + +#: src/gui/settings.cpp:3125 +msgid "Title bar:" +msgstr "Barra de título:" + +#: src/gui/settings.cpp:3127 +msgid "Furnace##tbar0" +msgstr "Furnace##tbar0" + +#: src/gui/settings.cpp:3132 +msgid "Song Name - Furnace##tbar1" +msgstr "Nome da Música - Furnace##tbar1" + +#: src/gui/settings.cpp:3137 +msgid "file_name.fur - Furnace##tbar2" +msgstr "nome_do_arquivo.fur - Furnace##tbar2" + +#: src/gui/settings.cpp:3142 +msgid "/path/to/file.fur - Furnace##tbar3" +msgstr "/caminho/para/o/arquivo.fur - Furnace##tbar3" + +#: src/gui/settings.cpp:3150 +msgid "Display system name on title bar" +msgstr "Mostrar nome do sistema na barra de título" + +#: src/gui/settings.cpp:3157 +msgid "Display chip names instead of \"multi-system\" in title bar" +msgstr "" +"Mostrar nomes dos chips ao invés de \"multi-sistema\" na barra de título" + +#: src/gui/settings.cpp:3163 +msgid "Status bar:" +msgstr "Barra de status:" + +#: src/gui/settings.cpp:3165 +msgid "Cursor details##sbar0" +msgstr "" + +#: src/gui/settings.cpp:3169 +msgid "File path##sbar1" +msgstr "" + +#: src/gui/settings.cpp:3173 +msgid "Cursor details or file path##sbar2" +msgstr "" + +#: src/gui/settings.cpp:3177 +msgid "Nothing##sbar3" +msgstr "" + +#: src/gui/settings.cpp:3184 +msgid "Display playback status when playing" +msgstr "Exibir status da reprodução enquanto reproduz" + +#: src/gui/settings.cpp:3189 +msgid "Export options layout:" +msgstr "Leiaute das opções de exportação:" + +#: src/gui/settings.cpp:3191 +msgid "Sub-menus in File menu##eol0" +msgstr "Sub-menus no menu Arquivo##eol0" + +#: src/gui/settings.cpp:3195 +msgid "Modal window with tabs##eol1" +msgstr "Janela modal com abas##eol1" + +#: src/gui/settings.cpp:3199 +msgid "Modal windows with options in File menu##eol2" +msgstr "Janela modal com opções no menu Arquivo##eol2" + +#: src/gui/settings.cpp:3206 +msgid "Capitalize menu bar" +msgstr "Capitalizar barra de menus" + +#: src/gui/settings.cpp:3212 +msgid "Display add/configure/change/remove chip menus in File menu" +msgstr "" +"Exibir menus para adicionar/configurar/alterar/remover chip no menu Arquivo" + +#: src/gui/settings.cpp:3226 +msgid "Highlight channel at cursor in Orders" +msgstr "Realçar canal sob o cursor na janela Ordens" + +#: src/gui/settings.cpp:3231 +msgid "Orders row number format:" +msgstr "Formato de número de linha da ordem:" + +#: src/gui/settings.cpp:3233 +msgid "Decimal##orbD" +msgstr "Decimal##orbD" + +#: src/gui/settings.cpp:3237 +msgid "Hexadecimal##orbH" +msgstr "Hexadecimal##orbH" + +#: src/gui/settings.cpp:3246 +msgid "Center pattern view" +msgstr "Centralizar visualização da sequência" + +#: src/gui/settings.cpp:3252 +msgid "Overflow pattern highlights" +msgstr "Preencher destaques da sequência por todo o fundo" + +#: src/gui/settings.cpp:3258 +msgid "Display previous/next pattern" +msgstr "Exibir sequência anterior/próxima" + +#: src/gui/settings.cpp:3263 +msgid "Pattern row number format:" +msgstr "Formato de número de linha da sequência:" + +#: src/gui/settings.cpp:3265 +msgid "Decimal##prbD" +msgstr "Decimal##prbD" + +#: src/gui/settings.cpp:3269 +msgid "Hexadecimal##prbH" +msgstr "Hexadecimal##prbH" + +#: src/gui/settings.cpp:3275 +msgid "Pattern view labels:" +msgstr "Rótulos da visualização da sequência:" + +#: src/gui/settings.cpp:3280 +msgid "Note off (3-char)" +msgstr "Note off (3 caracteres)" + +#: src/gui/settings.cpp:3285 +msgid "Note release (3-char)" +msgstr "Repouso de nota (3 carac.)" + +#: src/gui/settings.cpp:3290 +msgid "Macro release (3-char)" +msgstr "Repouso de macro (3 carac.)" + +#: src/gui/settings.cpp:3295 +msgid "Empty field (3-char)" +msgstr "Campo vazio (3 carac.)" + +#: src/gui/settings.cpp:3300 +msgid "Empty field (2-char)" +msgstr "Campo vazio (2 carac.)" + +#: src/gui/settings.cpp:3302 +msgid "Pattern view spacing after:" +msgstr "Espaçamento da visualização de sequência após:" + +#: src/gui/settings.cpp:3304 src/gui/settings.cpp:4062 +#: src/gui/findReplace.cpp:601 src/gui/findReplace.cpp:864 +#: src/gui/sampleEdit.cpp:590 +msgid "Note" +msgstr "Nota" + +#: src/gui/settings.cpp:3322 src/gui/findReplace.cpp:707 +#: src/gui/findReplace.cpp:974 +msgid "Effect" +msgstr "Efeito" + +#: src/gui/settings.cpp:3328 +msgid "Effect value" +msgstr "Valor do efeito" + +#: src/gui/settings.cpp:3335 +msgid "Single-digit effects for 00-0F" +msgstr "Efeitos de digito único para 00-0F" + +#: src/gui/settings.cpp:3341 +msgid "Use flats instead of sharps" +msgstr "Usar bemóis ao invés de sustenidos" + +#: src/gui/settings.cpp:3347 +msgid "Use German notation" +msgstr "Usar notação alemã" + +#: src/gui/settings.cpp:3355 +msgid "Channel style:" +msgstr "Estilo de vanal:" + +#: src/gui/settings.cpp:3357 +msgid "Classic##CHS0" +msgstr "Clássico##CHS0" + +#: src/gui/settings.cpp:3361 +msgid "Line##CHS1" +msgstr "Linha##CHS1" + +#: src/gui/settings.cpp:3365 +msgid "Round##CHS2" +msgstr "Redondo##CHS2" + +#: src/gui/settings.cpp:3369 +msgid "Split button##CHS3" +msgstr "Botão dividido##CHS3" + +#: src/gui/settings.cpp:3373 +msgid "Square border##CH42" +msgstr "" + +#: src/gui/settings.cpp:3377 +msgid "Round border##CHS5" +msgstr "Borda arredondada##CHS5" + +#: src/gui/settings.cpp:3383 +msgid "Channel volume bar:" +msgstr "Barra de volume do canal:" + +#: src/gui/settings.cpp:3385 +msgid "None##CHV0" +msgstr "" + +#: src/gui/settings.cpp:3389 +msgid "Simple##CHV1" +msgstr "Simples##CHV1" + +#: src/gui/settings.cpp:3393 +msgid "Stereo##CHV2" +msgstr "Estéreo##CHV2" + +#: src/gui/settings.cpp:3397 +msgid "Real##CHV3" +msgstr "Real##CHV3" + +#: src/gui/settings.cpp:3401 +msgid "Real (stereo)##CHV4" +msgstr "Real (estéreo)##CHV4" + +#: src/gui/settings.cpp:3407 +msgid "Channel feedback style:" +msgstr "Estilo de feedback do canal:" + +#: src/gui/settings.cpp:3409 +msgid "Off##CHF0" +msgstr "Desativado##CHF0" + +#: src/gui/settings.cpp:3413 +msgid "Note##CHF1" +msgstr "Nota##CHF1" + +#: src/gui/settings.cpp:3417 +msgid "Volume##CHF2" +msgstr "Volume##CHF2" + +#: src/gui/settings.cpp:3421 +msgid "Active##CHF3" +msgstr "Ativo##CHF3" + +#: src/gui/settings.cpp:3427 +msgid "Channel font:" +msgstr "Fonte do canal:" + +#: src/gui/settings.cpp:3429 +msgid "Regular##CHFont0" +msgstr "Regular##CHFont0" + +#: src/gui/settings.cpp:3433 +msgid "Monospace##CHFont1" +msgstr "Monoespaçada##CHFont1" + +#: src/gui/settings.cpp:3440 +msgid "Center channel name" +msgstr "Centralizar nome do canal" + +#: src/gui/settings.cpp:3445 +msgid "Channel colors:" +msgstr "Cores dos canais:" + +#: src/gui/settings.cpp:3447 +msgid "Single##CHC0" +msgstr "Única##CHC0" + +#: src/gui/settings.cpp:3451 +msgid "Channel type##CHC1" +msgstr "Tipo de canal##CHC1" + +#: src/gui/settings.cpp:3455 +msgid "Instrument type##CHC2" +msgstr "Tipo de instrumento##CHC2" + +#: src/gui/settings.cpp:3461 +msgid "Channel name colors:" +msgstr "Cores dos nomes dos canais:" + +#: src/gui/settings.cpp:3463 +msgid "Single##CTC0" +msgstr "Única##CTC0" + +#: src/gui/settings.cpp:3467 +msgid "Channel type##CTC1" +msgstr "Tipo de canal##CTC1" + +#: src/gui/settings.cpp:3471 +msgid "Instrument type##CTC2" +msgstr "Tipo de instrumento##CTC2" + +#: src/gui/settings.cpp:3480 +msgid "Unified instrument/wavetable/sample list" +msgstr "Lista unificada de instrumentos/wavetables/samples" + +#: src/gui/settings.cpp:3490 +msgid "Horizontal instrument list" +msgstr "Lista de instrumentos horizontal" + +#: src/gui/settings.cpp:3496 +msgid "Instrument list icon style:" +msgstr "Estilo de ícone da lista de instrumentos:" + +#: src/gui/settings.cpp:3498 +msgid "None##iis0" +msgstr "Nenhum##iis0" + +#: src/gui/settings.cpp:3502 +msgid "Graphical icons##iis1" +msgstr "Ícones gráficos##iis1" + +#: src/gui/settings.cpp:3506 +msgid "Letter icons##iis2" +msgstr "Ícones de letras##iis2" + +#: src/gui/settings.cpp:3513 +msgid "Colorize instrument editor using instrument type" +msgstr "Colorizar editor de instrumentos utilizando tipo de instrumento" + +#: src/gui/settings.cpp:3519 src/gui/settings.cpp:3961 +msgid "Macro Editor" +msgstr "Editor de Macro" + +#: src/gui/settings.cpp:3520 +msgid "Macro editor layout:" +msgstr "Leiaute do editor de macro:" + +#: src/gui/settings.cpp:3522 +msgid "Unified##mel0" +msgstr "Unificado##mel0" + +#: src/gui/settings.cpp:3532 +msgid "Grid##mel2" +msgstr "Grade##mel2" + +#: src/gui/settings.cpp:3536 +msgid "Single (with list)##mel3" +msgstr "Único (com lista)##mel3" + +#: src/gui/settings.cpp:3549 +msgid "Use classic macro editor vertical slider" +msgstr "Utilizar slider vertical clássico do editor de macro" + +#: src/gui/settings.cpp:3555 +msgid "Wave Editor" +msgstr "Editor de wavetable" + +#: src/gui/settings.cpp:3557 +msgid "Use compact wave editor" +msgstr "Utilizar editor de wavetable compacto" + +#: src/gui/settings.cpp:3563 src/gui/settings.cpp:3938 +msgid "FM Editor" +msgstr "Editor de FM" + +#: src/gui/settings.cpp:3564 +msgid "FM parameter names:" +msgstr "Nomes dos parâmetros FM:" + +#: src/gui/settings.cpp:3566 +msgid "Friendly##fmn0" +msgstr "Amigáveis##fmn0" + +#: src/gui/settings.cpp:3570 +msgid "Technical##fmn1" +msgstr "Técnicos##fmn1" + +#: src/gui/settings.cpp:3574 +msgid "Technical (alternate)##fmn2" +msgstr "Técnicos (alternativos)##fmn2" + +#: src/gui/settings.cpp:3581 +msgid "Use standard OPL waveform names" +msgstr "Utilizar nomes padrão de formas de onda OPL" + +#: src/gui/settings.cpp:3586 +msgid "FM parameter editor layout:" +msgstr "Leiaute do editor de parâmetros FM:" + +#: src/gui/settings.cpp:3588 +msgid "Modern##fml0" +msgstr "Moderno##fml0" + +#: src/gui/settings.cpp:3592 +msgid "Compact (2x2, classic)##fml1" +msgstr "Compacto (2x2, clássico)##fml1" + +#: src/gui/settings.cpp:3596 +msgid "Compact (1x4)##fml2" +msgstr "Compacto (1x4)##fml2" + +#: src/gui/settings.cpp:3600 +msgid "Compact (4x1)##fml3" +msgstr "Compacto (4x1)##fml3" + +#: src/gui/settings.cpp:3604 +msgid "Alternate (2x2)##fml4" +msgstr "Alternativo (2x2)##fml4" + +#: src/gui/settings.cpp:3608 +msgid "Alternate (1x4)##fml5" +msgstr "Alternativo (1x4)##fml5" + +#: src/gui/settings.cpp:3612 +msgid "Alternate (4x1)##fml5" +msgstr "" + +#: src/gui/settings.cpp:3618 +msgid "Position of Sustain in FM editor:" +msgstr "Posição do Nível de Sustentação no editor de FM:" + +#: src/gui/settings.cpp:3620 +msgid "Between Decay and Sustain Rate##susp0" +msgstr "" + +#: src/gui/settings.cpp:3624 +msgid "After Release Rate##susp1" +msgstr "" + +#: src/gui/settings.cpp:3631 +msgid "Use separate colors for carriers/modulators in FM editor" +msgstr "Utilizar cores separadas para portadoras/moduladoras no editor FM" + +#: src/gui/settings.cpp:3637 +msgid "Unsigned FM detune values" +msgstr "Valores de desafinação FM sem sinal (unsigned)" + +#: src/gui/settings.cpp:3644 +msgid "Chip memory usage unit:" +msgstr "Unidade de uso de memória dos chips:" + +#: src/gui/settings.cpp:3646 +msgid "Bytes##MUU0" +msgstr "Bytes##MUU0" + +#: src/gui/settings.cpp:3650 +msgid "Kilobytes##MUU1" +msgstr "Kilobytes##MUU1" + +#: src/gui/settings.cpp:3659 +msgid "Rounded corners" +msgstr "Cantos arredondados" + +#: src/gui/settings.cpp:3665 src/gui/settings.cpp:3843 +#: src/gui/settings.cpp:3885 +msgid "Border" +msgstr "Borda" + +#: src/gui/settings.cpp:3677 +msgid "Anti-aliased" +msgstr "Suavizado" + +#: src/gui/settings.cpp:3683 +msgid "Fill entire window" +msgstr "Preencher toda a janela" + +#: src/gui/settings.cpp:3689 +msgid "Waveform goes out of bounds" +msgstr "Forma de onda ultrapassa as bordas" + +#: src/gui/settings.cpp:3701 +msgid "Windows" +msgstr "Janelas" + +#: src/gui/settings.cpp:3703 +msgid "Rounded window corners" +msgstr "Cantos das janelas arredondados" + +#: src/gui/settings.cpp:3709 +msgid "Rounded buttons" +msgstr "Botões arredondados" + +#: src/gui/settings.cpp:3715 +msgid "Rounded menu corners" +msgstr "Cantos de menu arredondados" + +#: src/gui/settings.cpp:3721 +msgid "Rounded tabs" +msgstr "Abas arredondadas" + +#: src/gui/settings.cpp:3727 +msgid "Rounded scrollbars" +msgstr "Barras de rolagem arredondadas" + +#: src/gui/settings.cpp:3733 +msgid "Borders around widgets" +msgstr "Bordas em volta dos widgets" + +#: src/gui/settings.cpp:3742 +msgid "Color scheme" +msgstr "Esquema de cores" + +#: src/gui/settings.cpp:3752 +msgid "Are you sure you want to reset the color scheme?" +msgstr "Tem certeza de que quer redefinir o esquema de cores?" + +#: src/gui/settings.cpp:3755 +msgid "Guru mode" +msgstr "" + +#: src/gui/settings.cpp:3762 src/gui/settings.cpp:3792 +msgid "Frame shading" +msgstr "Sombreamento de quadro" + +#: src/gui/settings.cpp:3768 +msgid "Color scheme type:" +msgstr "" + +#: src/gui/settings.cpp:3770 +msgid "Dark##gcb0" +msgstr "" + +#: src/gui/settings.cpp:3775 +msgid "Light##gcb1" +msgstr "" + +#: src/gui/settings.cpp:3782 +msgid "Accent colors:" +msgstr "" + +#: src/gui/settings.cpp:3784 +msgid "Primary" +msgstr "" + +#: src/gui/settings.cpp:3785 +msgid "Secondary" +msgstr "" + +#: src/gui/settings.cpp:3799 +msgid "Button" +msgstr "" + +#: src/gui/settings.cpp:3800 +msgid "Button (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3801 +msgid "Button (active)" +msgstr "" + +#: src/gui/settings.cpp:3802 +msgid "Tab" +msgstr "" + +#: src/gui/settings.cpp:3803 +msgid "Tab (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3804 +msgid "Tab (active)" +msgstr "" + +#: src/gui/settings.cpp:3805 +msgid "Tab (unfocused)" +msgstr "" + +#: src/gui/settings.cpp:3806 +msgid "Tab (unfocused and active)" +msgstr "" + +#: src/gui/settings.cpp:3807 +msgid "ImGui header" +msgstr "" + +#: src/gui/settings.cpp:3808 +msgid "ImGui header (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3809 +msgid "ImGui header (active)" +msgstr "" + +#: src/gui/settings.cpp:3810 +msgid "Resize grip" +msgstr "" + +#: src/gui/settings.cpp:3811 +msgid "Resize grip (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3812 +msgid "Resize grip (active)" +msgstr "" + +#: src/gui/settings.cpp:3813 +msgid "Widget background" +msgstr "" + +#: src/gui/settings.cpp:3814 +msgid "Widget background (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3815 +msgid "Widget background (active)" +msgstr "" + +#: src/gui/settings.cpp:3816 +msgid "Slider grab" +msgstr "" + +#: src/gui/settings.cpp:3817 +msgid "Slider grab (active)" +msgstr "" + +#: src/gui/settings.cpp:3818 +msgid "Title background (active)" +msgstr "" + +#: src/gui/settings.cpp:3819 +msgid "Checkbox/radio button mark" +msgstr "" + +#: src/gui/settings.cpp:3820 +msgid "Text selection" +msgstr "" + +#: src/gui/settings.cpp:3821 +msgid "Line plot" +msgstr "" + +#: src/gui/settings.cpp:3822 +msgid "Line plot (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3823 +msgid "Histogram plot" +msgstr "" + +#: src/gui/settings.cpp:3824 +msgid "Histogram plot (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3825 +msgid "Table row (even)" +msgstr "" + +#: src/gui/settings.cpp:3826 +msgid "Table row (odd)" +msgstr "" + +#: src/gui/settings.cpp:3831 +msgid "Interface (other)" +msgstr "Interface (outros)" + +#: src/gui/settings.cpp:3833 +msgid "Window background" +msgstr "" + +#: src/gui/settings.cpp:3834 +msgid "Sub-window background" +msgstr "" + +#: src/gui/settings.cpp:3835 +msgid "Pop-up background" +msgstr "" + +#: src/gui/settings.cpp:3836 +msgid "Modal backdrop" +msgstr "" + +#: src/gui/settings.cpp:3837 +msgid "Header" +msgstr "" + +#: src/gui/settings.cpp:3839 +msgid "Text (disabled)" +msgstr "" + +#: src/gui/settings.cpp:3840 +msgid "Title bar (inactive)" +msgstr "" + +#: src/gui/settings.cpp:3841 +msgid "Title bar (collapsed)" +msgstr "" + +#: src/gui/settings.cpp:3842 +msgid "Menu bar" +msgstr "" + +#: src/gui/settings.cpp:3844 +msgid "Border shadow" +msgstr "" + +#: src/gui/settings.cpp:3845 +msgid "Scroll bar" +msgstr "" + +#: src/gui/settings.cpp:3846 +msgid "Scroll bar (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3847 +msgid "Scroll bar (clicked)" +msgstr "" + +#: src/gui/settings.cpp:3848 +msgid "Scroll bar background" +msgstr "" + +#: src/gui/settings.cpp:3849 +msgid "Separator" +msgstr "" + +#: src/gui/settings.cpp:3850 +msgid "Separator (hover)" +msgstr "" + +#: src/gui/settings.cpp:3851 +msgid "Separator (active)" +msgstr "" + +#: src/gui/settings.cpp:3852 +msgid "Docking preview" +msgstr "" + +#: src/gui/settings.cpp:3853 +msgid "Docking empty" +msgstr "" + +#: src/gui/settings.cpp:3854 +msgid "Table header" +msgstr "" + +#: src/gui/settings.cpp:3855 +msgid "Table border (hard)" +msgstr "" + +#: src/gui/settings.cpp:3856 +msgid "Table border (soft)" +msgstr "" + +#: src/gui/settings.cpp:3857 +msgid "Drag and drop target" +msgstr "" + +#: src/gui/settings.cpp:3858 +msgid "Window switcher (highlight)" +msgstr "" + +#: src/gui/settings.cpp:3859 +msgid "Window switcher backdrop" +msgstr "" + +#: src/gui/settings.cpp:3862 src/gui/settings.cpp:4083 src/gui/guiConst.cpp:235 +msgid "Miscellaneous" +msgstr "Miscelânea" + +#: src/gui/settings.cpp:3863 +msgid "Toggle on" +msgstr "" + +#: src/gui/settings.cpp:3864 +msgid "Toggle off" +msgstr "" + +#: src/gui/settings.cpp:3865 +msgid "Playback status" +msgstr "" + +#: src/gui/settings.cpp:3866 +msgid "Destructive hint" +msgstr "" + +#: src/gui/settings.cpp:3867 +msgid "Warning hint" +msgstr "" + +#: src/gui/settings.cpp:3868 +msgid "Error hint" +msgstr "" + +#: src/gui/settings.cpp:3871 +msgid "File Picker (built-in)" +msgstr "Diálogo de arquivos (embutido)" + +#: src/gui/settings.cpp:3873 +msgid "Song (native)" +msgstr "" + +#: src/gui/settings.cpp:3874 +msgid "Song (import)" +msgstr "" + +#: src/gui/settings.cpp:3880 +msgid "Font" +msgstr "" + +#: src/gui/settings.cpp:3886 +msgid "Background (top-left)" +msgstr "" + +#: src/gui/settings.cpp:3887 +msgid "Background (top-right)" +msgstr "" + +#: src/gui/settings.cpp:3888 +msgid "Background (bottom-left)" +msgstr "" + +#: src/gui/settings.cpp:3889 +msgid "Background (bottom-right)" +msgstr "" + +#: src/gui/settings.cpp:3890 src/gui/settings.cpp:3945 +#: src/gui/settings.cpp:4113 src/gui/waveEdit.cpp:730 src/gui/insEdit.cpp:50 +#: src/gui/insEdit.cpp:4148 src/gui/insEdit.cpp:5812 src/gui/insEdit.cpp:6940 +#: src/gui/insEdit.cpp:6949 src/gui/insEdit.cpp:6963 src/gui/insEdit.cpp:6980 +#: src/gui/insEdit.cpp:6991 src/gui/insEdit.cpp:7004 src/gui/insEdit.cpp:7018 +#: src/gui/insEdit.cpp:7025 src/gui/insEdit.cpp:7035 src/gui/insEdit.cpp:7041 +#: src/gui/insEdit.cpp:7050 src/gui/insEdit.cpp:7074 src/gui/insEdit.cpp:7084 +#: src/gui/insEdit.cpp:7094 src/gui/insEdit.cpp:7101 src/gui/insEdit.cpp:7116 +#: src/gui/insEdit.cpp:7131 src/gui/insEdit.cpp:7151 src/gui/insEdit.cpp:7158 +#: src/gui/insEdit.cpp:7200 src/gui/insEdit.cpp:7211 src/gui/insEdit.cpp:7224 +#: src/gui/insEdit.cpp:7349 src/gui/insEdit.cpp:7425 src/gui/insEdit.cpp:7445 +#: src/gui/insEdit.cpp:7453 src/gui/insEdit.cpp:7473 +msgid "Waveform" +msgstr "Forma de onda" + +#: src/gui/settings.cpp:3891 +msgid "Waveform (clip)" +msgstr "" + +#: src/gui/settings.cpp:3892 +msgid "Reference" +msgstr "" + +#: src/gui/settings.cpp:3893 +msgid "Guide" +msgstr "" + +#: src/gui/settings.cpp:3895 +msgid "Wave (non-mono)" +msgstr "Onda (não-mono)" + +#: src/gui/settings.cpp:3896 +msgid "Waveform (1)" +msgstr "" + +#: src/gui/settings.cpp:3897 +msgid "Waveform (2)" +msgstr "" + +#: src/gui/settings.cpp:3898 +msgid "Waveform (3)" +msgstr "" + +#: src/gui/settings.cpp:3899 +msgid "Waveform (4)" +msgstr "" + +#: src/gui/settings.cpp:3900 +msgid "Waveform (5)" +msgstr "" + +#: src/gui/settings.cpp:3901 +msgid "Waveform (6)" +msgstr "" + +#: src/gui/settings.cpp:3902 +msgid "Waveform (7)" +msgstr "" + +#: src/gui/settings.cpp:3903 +msgid "Waveform (8)" +msgstr "" + +#: src/gui/settings.cpp:3904 +msgid "Waveform (9)" +msgstr "" + +#: src/gui/settings.cpp:3905 +msgid "Waveform (10)" +msgstr "" + +#: src/gui/settings.cpp:3906 +msgid "Waveform (11)" +msgstr "" + +#: src/gui/settings.cpp:3907 +msgid "Waveform (12)" +msgstr "" + +#: src/gui/settings.cpp:3908 +msgid "Waveform (13)" +msgstr "" + +#: src/gui/settings.cpp:3909 +msgid "Waveform (14)" +msgstr "" + +#: src/gui/settings.cpp:3910 +msgid "Waveform (15)" +msgstr "" + +#: src/gui/settings.cpp:3911 +msgid "Waveform (16)" +msgstr "" + +#: src/gui/settings.cpp:3919 +msgid "Clip" +msgstr "" + +#: src/gui/settings.cpp:3923 +msgid "Order number" +msgstr "" + +#: src/gui/settings.cpp:3924 +msgid "Playing order background" +msgstr "" + +#: src/gui/settings.cpp:3925 +msgid "Song loop" +msgstr "" + +#: src/gui/settings.cpp:3926 +msgid "Selected order" +msgstr "" + +#: src/gui/settings.cpp:3927 +msgid "Similar patterns" +msgstr "" + +#: src/gui/settings.cpp:3928 +msgid "Inactive patterns" +msgstr "" + +#: src/gui/settings.cpp:3931 +msgid "Envelope View" +msgstr "Visualização de envelope" + +#: src/gui/settings.cpp:3932 src/gui/insEdit.cpp:540 src/gui/insEdit.cpp:3547 +#: src/gui/insEdit.cpp:3548 src/gui/insEdit.cpp:4081 src/gui/insEdit.cpp:4151 +#: src/gui/insEdit.cpp:4790 src/gui/insEdit.cpp:5861 src/gui/insEdit.cpp:5862 +#: src/gui/insEdit.cpp:6487 src/gui/insEdit.cpp:6488 src/gui/insEdit.cpp:6555 +#: src/gui/insEdit.cpp:6556 src/gui/insEdit.cpp:6995 src/gui/insEdit.cpp:7009 +#: src/gui/insEdit.cpp:7029 src/gui/insEdit.cpp:7166 +#, c-format +msgid "Envelope" +msgstr "Envelope" + +#: src/gui/settings.cpp:3933 +msgid "Sustain guide" +msgstr "" + +#: src/gui/settings.cpp:3939 +msgid "Algorithm background" +msgstr "" + +#: src/gui/settings.cpp:3940 +msgid "Algorithm lines" +msgstr "" + +#: src/gui/settings.cpp:3941 +msgid "Modulator" +msgstr "" + +#: src/gui/settings.cpp:3942 +msgid "Carrier" +msgstr "" + +#: src/gui/settings.cpp:3944 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:4146 +msgid "SSG-EG" +msgstr "SSG-EG" + +#: src/gui/settings.cpp:3947 +msgid "" +"(the following colors only apply when \"Use separate colors for carriers/" +"modulators in FM editor\" is on!)" +msgstr "" + +#: src/gui/settings.cpp:3949 +msgid "Mod. accent (primary)" +msgstr "" + +#: src/gui/settings.cpp:3950 +msgid "Mod. accent (secondary)" +msgstr "" + +#: src/gui/settings.cpp:3951 +msgid "Mod. border" +msgstr "" + +#: src/gui/settings.cpp:3952 +msgid "Mod. border shadow" +msgstr "" + +#: src/gui/settings.cpp:3954 +msgid "Car. accent (primary" +msgstr "" + +#: src/gui/settings.cpp:3955 +msgid "Car. accent (secondary)" +msgstr "" + +#: src/gui/settings.cpp:3956 +msgid "Car. border" +msgstr "" + +#: src/gui/settings.cpp:3957 +msgid "Car. border shadow" +msgstr "" + +#: src/gui/settings.cpp:3963 src/gui/guiConst.cpp:227 src/gui/insEdit.cpp:6924 +#: src/gui/insEdit.cpp:6931 src/gui/insEdit.cpp:6942 src/gui/insEdit.cpp:6950 +#: src/gui/insEdit.cpp:6971 src/gui/insEdit.cpp:6983 src/gui/insEdit.cpp:6993 +#: src/gui/insEdit.cpp:7006 src/gui/insEdit.cpp:7019 src/gui/insEdit.cpp:7028 +#: src/gui/insEdit.cpp:7036 src/gui/insEdit.cpp:7042 src/gui/insEdit.cpp:7052 +#: src/gui/insEdit.cpp:7061 src/gui/insEdit.cpp:7068 src/gui/insEdit.cpp:7075 +#: src/gui/insEdit.cpp:7087 src/gui/insEdit.cpp:7095 src/gui/insEdit.cpp:7102 +#: src/gui/insEdit.cpp:7109 src/gui/insEdit.cpp:7117 src/gui/insEdit.cpp:7123 +#: src/gui/insEdit.cpp:7132 src/gui/insEdit.cpp:7143 src/gui/insEdit.cpp:7153 +#: src/gui/insEdit.cpp:7161 src/gui/insEdit.cpp:7174 src/gui/insEdit.cpp:7182 +#: src/gui/insEdit.cpp:7193 src/gui/insEdit.cpp:7203 src/gui/insEdit.cpp:7213 +#: src/gui/insEdit.cpp:7227 src/gui/insEdit.cpp:7233 src/gui/insEdit.cpp:7241 +#: src/gui/insEdit.cpp:7248 src/gui/insEdit.cpp:7272 src/gui/insEdit.cpp:7280 +#: src/gui/insEdit.cpp:7289 src/gui/insEdit.cpp:7298 src/gui/insEdit.cpp:7306 +#: src/gui/insEdit.cpp:7323 src/gui/insEdit.cpp:7331 src/gui/insEdit.cpp:7337 +#: src/gui/insEdit.cpp:7344 src/gui/insEdit.cpp:7350 src/gui/insEdit.cpp:7355 +#: src/gui/insEdit.cpp:7361 src/gui/insEdit.cpp:7368 src/gui/insEdit.cpp:7376 +#: src/gui/insEdit.cpp:7385 src/gui/insEdit.cpp:7393 src/gui/insEdit.cpp:7401 +#: src/gui/insEdit.cpp:7413 src/gui/insEdit.cpp:7428 src/gui/insEdit.cpp:7439 +#: src/gui/insEdit.cpp:7447 src/gui/insEdit.cpp:7456 src/gui/insEdit.cpp:7466 +#: src/gui/insEdit.cpp:7474 +msgid "Pitch" +msgstr "Tom" + +#: src/gui/settings.cpp:3968 +msgid "Instrument Types" +msgstr "Tipos de Instrumento" + +#: src/gui/settings.cpp:3969 +msgid "FM (OPN)" +msgstr "" + +#: src/gui/settings.cpp:3970 +msgid "SN76489/Sega PSG" +msgstr "" + +#: src/gui/settings.cpp:3973 +msgid "C64" +msgstr "" + +#: src/gui/settings.cpp:3974 +msgid "Amiga/Generic Sample" +msgstr "" + +#: src/gui/settings.cpp:3975 +msgid "PC Engine" +msgstr "" + +#: src/gui/settings.cpp:3976 +msgid "AY-3-8910/SSG" +msgstr "" + +#: src/gui/settings.cpp:3977 +msgid "AY8930" +msgstr "" + +#: src/gui/settings.cpp:3978 +msgid "TIA" +msgstr "" + +#: src/gui/settings.cpp:3979 +msgid "SAA1099" +msgstr "" + +#: src/gui/settings.cpp:3980 +msgid "VIC" +msgstr "" + +#: src/gui/settings.cpp:3981 +msgid "PET" +msgstr "" + +#: src/gui/settings.cpp:3982 +msgid "VRC6" +msgstr "" + +#: src/gui/settings.cpp:3983 src/gui/guiConst.cpp:149 +msgid "VRC6 (saw)" +msgstr "VRC6 (dente-de-serra)" + +#: src/gui/settings.cpp:3984 +msgid "FM (OPLL)" +msgstr "" + +#: src/gui/settings.cpp:3985 +msgid "FM (OPL)" +msgstr "" + +#: src/gui/settings.cpp:3990 +msgid "FM (OPZ)" +msgstr "" + +#: src/gui/settings.cpp:3992 +msgid "PC Beeper" +msgstr "" + +#: src/gui/settings.cpp:3994 +msgid "Lynx" +msgstr "" + +#: src/gui/settings.cpp:3996 +msgid "X1-010" +msgstr "" + +#: src/gui/settings.cpp:3997 +msgid "ES5506" +msgstr "" + +#: src/gui/settings.cpp:4000 +msgid "Sound Unit" +msgstr "Unidade de Som" + +#: src/gui/settings.cpp:4002 +msgid "FM (OPL Drums)" +msgstr "" + +#: src/gui/settings.cpp:4003 +msgid "FM (OPM)" +msgstr "" + +#: src/gui/settings.cpp:4004 +msgid "NES" +msgstr "" + +#: src/gui/settings.cpp:4005 +msgid "MSM6258" +msgstr "" + +#: src/gui/settings.cpp:4006 +msgid "MSM6295" +msgstr "" + +#: src/gui/settings.cpp:4007 +msgid "ADPCM-A" +msgstr "" + +#: src/gui/settings.cpp:4009 +msgid "Sega PCM" +msgstr "" + +#: src/gui/settings.cpp:4010 +msgid "QSound" +msgstr "QSound" + +#: src/gui/settings.cpp:4011 +msgid "YMZ280B" +msgstr "" + +#: src/gui/settings.cpp:4012 +msgid "RF5C68" +msgstr "" + +#: src/gui/settings.cpp:4013 +msgid "MSM5232" +msgstr "" + +#: src/gui/settings.cpp:4014 +msgid "K007232" +msgstr "" + +#: src/gui/settings.cpp:4015 +msgid "GA20" +msgstr "" + +#: src/gui/settings.cpp:4017 +msgid "SM8521" +msgstr "" + +#: src/gui/settings.cpp:4018 +msgid "PV-1000" +msgstr "" + +#: src/gui/settings.cpp:4019 +msgid "K053260" +msgstr "" + +#: src/gui/settings.cpp:4020 +msgid "TED" +msgstr "" + +#: src/gui/settings.cpp:4021 +msgid "C140" +msgstr "" + +#: src/gui/settings.cpp:4022 +msgid "C219" +msgstr "" + +#: src/gui/settings.cpp:4023 +msgid "ESFM" +msgstr "" + +#: src/gui/settings.cpp:4024 src/gui/guiConst.cpp:179 +msgid "PowerNoise (noise)" +msgstr "PowerNoise (ruído)" + +#: src/gui/settings.cpp:4025 src/gui/guiConst.cpp:180 +msgid "PowerNoise (slope)" +msgstr "PowerNoise (rampa)" + +#: src/gui/settings.cpp:4028 +msgid "GBA DMA" +msgstr "" + +#: src/gui/settings.cpp:4029 +msgid "GBA MinMod" +msgstr "" + +#: src/gui/settings.cpp:4032 +msgid "Other/Unknown" +msgstr "" + +#: src/gui/settings.cpp:4036 +msgid "Single color (background)" +msgstr "" + +#: src/gui/settings.cpp:4037 +msgid "Single color (text)" +msgstr "" + +#: src/gui/settings.cpp:4038 src/gui/guiConst.cpp:1393 src/gui/waveEdit.cpp:668 +msgid "FM" +msgstr "" + +#: src/gui/settings.cpp:4043 +msgid "FM operator" +msgstr "" + +#: src/gui/settings.cpp:4044 +msgid "Muted" +msgstr "" + +#: src/gui/settings.cpp:4048 +msgid "Playhead" +msgstr "" + +#: src/gui/settings.cpp:4049 +msgid "Editing" +msgstr "" + +#: src/gui/settings.cpp:4050 +msgid "Editing (will clone)" +msgstr "" + +#: src/gui/settings.cpp:4051 +msgid "Cursor" +msgstr "" + +#: src/gui/settings.cpp:4052 +msgid "Cursor (hovered)" +msgstr "" + +#: src/gui/settings.cpp:4053 +msgid "Cursor (clicked)" +msgstr "" + +#: src/gui/settings.cpp:4054 src/gui/settings.cpp:4119 +#: src/gui/findReplace.cpp:791 +msgid "Selection" +msgstr "Seleção" + +#: src/gui/settings.cpp:4055 +msgid "Selection (hovered)" +msgstr "" + +#: src/gui/settings.cpp:4056 +msgid "Selection (clicked)" +msgstr "" + +#: src/gui/settings.cpp:4057 +msgid "Highlight 1" +msgstr "" + +#: src/gui/settings.cpp:4058 +msgid "Highlight 2" +msgstr "" + +#: src/gui/settings.cpp:4059 +msgid "Row number" +msgstr "" + +#: src/gui/settings.cpp:4060 +msgid "Row number (highlight 1)" +msgstr "" + +#: src/gui/settings.cpp:4061 +msgid "Row number (highlight 2)" +msgstr "" + +#: src/gui/settings.cpp:4063 +msgid "Note (highlight 1)" +msgstr "" + +#: src/gui/settings.cpp:4064 +msgid "Note (highlight 2)" +msgstr "" + +#: src/gui/settings.cpp:4065 +msgid "Blank" +msgstr "" + +#: src/gui/settings.cpp:4066 +msgid "Blank (highlight 1)" +msgstr "" + +#: src/gui/settings.cpp:4067 +msgid "Blank (highlight 2)" +msgstr "" + +#: src/gui/settings.cpp:4069 +msgid "Instrument (invalid type)" +msgstr "" + +#: src/gui/settings.cpp:4070 +msgid "Instrument (out of range)" +msgstr "" + +#: src/gui/settings.cpp:4071 +msgid "Volume (0%)" +msgstr "" + +#: src/gui/settings.cpp:4072 +msgid "Volume (50%)" +msgstr "" + +#: src/gui/settings.cpp:4073 +msgid "Volume (100%)" +msgstr "" + +#: src/gui/settings.cpp:4075 +msgid "Pitch effect" +msgstr "" + +#: src/gui/settings.cpp:4076 +msgid "Volume effect" +msgstr "" + +#: src/gui/settings.cpp:4077 +msgid "Panning effect" +msgstr "" + +#: src/gui/settings.cpp:4078 +msgid "Song effect" +msgstr "" + +#: src/gui/settings.cpp:4079 +msgid "Time effect" +msgstr "" + +#: src/gui/settings.cpp:4080 +msgid "Speed effect" +msgstr "" + +#: src/gui/settings.cpp:4081 +msgid "Primary specific effect" +msgstr "" + +#: src/gui/settings.cpp:4082 +msgid "Secondary specific effect" +msgstr "" + +#: src/gui/settings.cpp:4084 +msgid "External command output" +msgstr "" + +#: src/gui/settings.cpp:4085 +msgid "Status: off/disabled" +msgstr "" + +#: src/gui/settings.cpp:4086 +msgid "Status: off + macro rel" +msgstr "" + +#: src/gui/settings.cpp:4087 +msgid "Status: on + macro rel" +msgstr "" + +#: src/gui/settings.cpp:4088 +msgid "Status: on" +msgstr "" + +#: src/gui/settings.cpp:4089 +msgid "Status: volume" +msgstr "" + +#: src/gui/settings.cpp:4090 +msgid "Status: pitch" +msgstr "" + +#: src/gui/settings.cpp:4091 +msgid "Status: panning" +msgstr "" + +#: src/gui/settings.cpp:4092 +msgid "Status: chip (primary)" +msgstr "" + +#: src/gui/settings.cpp:4093 +msgid "Status: chip (secondary)" +msgstr "" + +#: src/gui/settings.cpp:4094 +msgid "Status: mixing" +msgstr "" + +#: src/gui/settings.cpp:4095 +msgid "Status: DSP effect" +msgstr "" + +#: src/gui/settings.cpp:4096 +msgid "Status: note altering" +msgstr "" + +#: src/gui/settings.cpp:4097 +msgid "Status: misc color 1" +msgstr "" + +#: src/gui/settings.cpp:4098 +msgid "Status: misc color 2" +msgstr "" + +#: src/gui/settings.cpp:4099 +msgid "Status: misc color 3" +msgstr "" + +#: src/gui/settings.cpp:4100 +msgid "Status: attack" +msgstr "" + +#: src/gui/settings.cpp:4101 +msgid "Status: decay" +msgstr "" + +#: src/gui/settings.cpp:4102 +msgid "Status: sustain" +msgstr "" + +#: src/gui/settings.cpp:4103 +msgid "Status: release" +msgstr "" + +#: src/gui/settings.cpp:4104 +msgid "Status: decrease linear" +msgstr "" + +#: src/gui/settings.cpp:4105 +msgid "Status: decrease exp" +msgstr "" + +#: src/gui/settings.cpp:4106 +msgid "Status: increase" +msgstr "" + +#: src/gui/settings.cpp:4107 +msgid "Status: bent" +msgstr "" + +#: src/gui/settings.cpp:4108 +msgid "Status: direct" +msgstr "" + +#: src/gui/settings.cpp:4111 src/gui/guiConst.cpp:586 src/gui/sampleEdit.cpp:96 +msgid "Sample Editor" +msgstr "Editor de Sample" + +#: src/gui/settings.cpp:4114 +msgid "Time background" +msgstr "" + +#: src/gui/settings.cpp:4115 +msgid "Time text" +msgstr "" + +#: src/gui/settings.cpp:4116 +msgid "Loop region" +msgstr "" + +#: src/gui/settings.cpp:4117 +msgid "Center guide" +msgstr "" + +#: src/gui/settings.cpp:4118 +msgid "Grid" +msgstr "" + +#: src/gui/settings.cpp:4120 +msgid "Selection points" +msgstr "" + +#: src/gui/settings.cpp:4121 +msgid "Preview needle" +msgstr "" + +#: src/gui/settings.cpp:4122 +msgid "Playing needles" +msgstr "" + +#: src/gui/settings.cpp:4123 +msgid "Loop markers" +msgstr "" + +#: src/gui/settings.cpp:4124 +msgid "Chip select: disabled" +msgstr "" + +#: src/gui/settings.cpp:4125 +msgid "Chip select: enabled" +msgstr "" + +#: src/gui/settings.cpp:4126 +msgid "Chip select: enabled (failure)" +msgstr "" + +#: src/gui/settings.cpp:4129 src/gui/guiConst.cpp:602 src/gui/patManager.cpp:35 +msgid "Pattern Manager" +msgstr "Gerenciador de Sequências" + +#: src/gui/settings.cpp:4130 +msgid "Unallocated" +msgstr "" + +#: src/gui/settings.cpp:4131 +msgid "Unused" +msgstr "" + +#: src/gui/settings.cpp:4132 +msgid "Used" +msgstr "" + +#: src/gui/settings.cpp:4133 +msgid "Overused" +msgstr "" + +#: src/gui/settings.cpp:4134 +msgid "Really overused" +msgstr "" + +#: src/gui/settings.cpp:4135 +msgid "Combo Breaker" +msgstr "" + +#: src/gui/settings.cpp:4138 src/gui/guiConst.cpp:599 src/gui/piano.cpp:63 +msgid "Piano" +msgstr "Piano" + +#: src/gui/settings.cpp:4140 +msgid "Upper key" +msgstr "" + +#: src/gui/settings.cpp:4141 +msgid "Upper key (feedback)" +msgstr "" + +#: src/gui/settings.cpp:4142 +msgid "Upper key (pressed)" +msgstr "" + +#: src/gui/settings.cpp:4143 +msgid "Lower key" +msgstr "" + +#: src/gui/settings.cpp:4144 +msgid "Lower key (feedback)" +msgstr "" + +#: src/gui/settings.cpp:4145 +msgid "Lower key (pressed)" +msgstr "" + +#: src/gui/settings.cpp:4148 src/gui/clock.cpp:31 src/gui/guiConst.cpp:610 +msgid "Clock" +msgstr "Clock" + +#: src/gui/settings.cpp:4149 +msgid "Clock text" +msgstr "" + +#: src/gui/settings.cpp:4150 +msgid "Beat (off)" +msgstr "" + +#: src/gui/settings.cpp:4151 +msgid "Beat (on)" +msgstr "" + +#: src/gui/settings.cpp:4156 +msgid "PortSet" +msgstr "" + +#: src/gui/settings.cpp:4157 +msgid "Port" +msgstr "" + +#: src/gui/settings.cpp:4158 +msgid "Port (hidden/unavailable)" +msgstr "" + +#: src/gui/settings.cpp:4159 +msgid "Connection (selected)" +msgstr "" + +#: src/gui/settings.cpp:4160 +msgid "Connection (other)" +msgstr "" + +#: src/gui/settings.cpp:4166 +msgid "Waveform data" +msgstr "" + +#: src/gui/settings.cpp:4169 +msgid "Reserved" +msgstr "" + +#: src/gui/settings.cpp:4171 +msgid "Sample (alternate 1)" +msgstr "" + +#: src/gui/settings.cpp:4172 +msgid "Sample (alternate 2)" +msgstr "" + +#: src/gui/settings.cpp:4173 +msgid "Sample (alternate 3)" +msgstr "" + +#: src/gui/settings.cpp:4174 +msgid "Wave RAM" +msgstr "RAM de Onda" + +#: src/gui/settings.cpp:4175 +msgid "Wavetable (static)" +msgstr "" + +#: src/gui/settings.cpp:4176 +msgid "Echo buffer" +msgstr "" + +#: src/gui/settings.cpp:4177 +msgid "Namco 163 load pos" +msgstr "" + +#: src/gui/settings.cpp:4178 +msgid "Namco 163 play pos" +msgstr "" + +#: src/gui/settings.cpp:4179 +msgid "Sample (bank 0)" +msgstr "" + +#: src/gui/settings.cpp:4180 +msgid "Sample (bank 1)" +msgstr "" + +#: src/gui/settings.cpp:4181 +msgid "Sample (bank 2)" +msgstr "" + +#: src/gui/settings.cpp:4182 +msgid "Sample (bank 3)" +msgstr "" + +#: src/gui/settings.cpp:4183 +msgid "Sample (bank 4)" +msgstr "" + +#: src/gui/settings.cpp:4184 +msgid "Sample (bank 5)" +msgstr "" + +#: src/gui/settings.cpp:4185 +msgid "Sample (bank 6)" +msgstr "" + +#: src/gui/settings.cpp:4186 +msgid "Sample (bank 7)" +msgstr "" + +#: src/gui/settings.cpp:4191 +msgid "Log level: Error" +msgstr "" + +#: src/gui/settings.cpp:4192 +msgid "Log level: Warning" +msgstr "" + +#: src/gui/settings.cpp:4193 +msgid "Log level: Info" +msgstr "" + +#: src/gui/settings.cpp:4194 +msgid "Log level: Debug" +msgstr "" + +#: src/gui/settings.cpp:4195 +msgid "Log level: Trace/Verbose" +msgstr "" + +#: src/gui/settings.cpp:4200 +msgid "Backup" +msgstr "" + +#: src/gui/settings.cpp:4205 +msgid "Enable backup system" +msgstr "" + +#: src/gui/settings.cpp:4210 +msgid "Interval (in seconds)" +msgstr "" + +#: src/gui/settings.cpp:4215 +msgid "Backups per file" +msgstr "" + +#: src/gui/settings.cpp:4221 +msgid "Backup Management" +msgstr "" + +#: src/gui/settings.cpp:4225 +msgid "Purge before:" +msgstr "" + +#: src/gui/settings.cpp:4299 +msgid "Go##PDate" +msgstr "" + +#: src/gui/settings.cpp:4306 +#, c-format +msgid "%PB used" +msgstr "" + +#: src/gui/settings.cpp:4308 +#, c-format +msgid "%TB used" +msgstr "" + +#: src/gui/settings.cpp:4310 +#, c-format +msgid "%GB used" +msgstr "" + +#: src/gui/settings.cpp:4312 +#, c-format +msgid "%MB used" +msgstr "" + +#: src/gui/settings.cpp:4314 +#, c-format +msgid "%KB used" +msgstr "" + +#: src/gui/settings.cpp:4316 +#, c-format +msgid "% bytes used" +msgstr "" + +#: src/gui/settings.cpp:4321 +msgid "Refresh" +msgstr "" + +#: src/gui/settings.cpp:4325 +msgid "Delete all" +msgstr "" + +#: src/gui/settings.cpp:4331 +msgid "Size" +msgstr "" + +#: src/gui/settings.cpp:4332 +msgid "Latest" +msgstr "" + +#: src/gui/settings.cpp:4342 +#, c-format +msgid "%P" +msgstr "" + +#: src/gui/settings.cpp:4344 +#, c-format +msgid "%T" +msgstr "" + +#: src/gui/settings.cpp:4346 +#, c-format +msgid "%G" +msgstr "" + +#: src/gui/settings.cpp:4348 +#, c-format +msgid "%M" +msgstr "" + +#: src/gui/settings.cpp:4350 +#, c-format +msgid "%K" +msgstr "" + +#: src/gui/settings.cpp:4352 +#, c-format +msgid "%" +msgstr "" + +#: src/gui/settings.cpp:4476 +msgid "Cheat Codes" +msgstr "" + +#: src/gui/settings.cpp:4478 +msgid "Enter code:" +msgstr "" + +#: src/gui/settings.cpp:4480 +msgid "Submit" +msgstr "" + +#: src/gui/settings.cpp:4484 +msgid "invalid code" +msgstr "" + +#: src/gui/settings.cpp:4494 +msgid "toggled alternate UI" +msgstr "" + +#: src/gui/settings.cpp:4498 +msgid ":smile: :star_struck: :sunglasses: :ok_hand:" +msgstr "" + +#: src/gui/settings.cpp:4502 +msgid "enabled all instrument types" +msgstr "" + +#: src/gui/settings.cpp:4506 +msgid "OK, if I bring your Partial pitch linearity will you stop bothering me?" +msgstr "" + +#: src/gui/settings.cpp:4510 +msgid "unlocked audio multi-threading options!" +msgstr "" + +#: src/gui/settings.cpp:4514 +msgid "enabled \"comfortable\" mode" +msgstr "" + +#: src/gui/settings.cpp:4532 +msgid "OK##SettingsOK" +msgstr "OK##SettingsOK" + +#: src/gui/settings.cpp:4538 +msgid "Cancel##SettingsCancel" +msgstr "Cancelar##SettingsCancel" + +#: src/gui/settings.cpp:4546 +msgid "Apply##SettingsApply" +msgstr "Aplicar##SettingsApply" + +#: src/gui/settings.cpp:5616 +msgid "could not initialize audio!" +msgstr "" + +#: src/gui/settings.cpp:5626 src/gui/gui.cpp:4067 src/gui/gui.cpp:6662 +#: src/gui/gui.cpp:7059 +msgid "error while loading fonts! please check your settings." +msgstr "erro ao carregar fontes! por favor cheque suas configurações." + +#: src/gui/settings.cpp:5805 +#, c-format +msgid "error while loading config! (%s)" +msgstr "" + +#: src/gui/orders.cpp:114 +msgid "Add new order" +msgstr "Adicionar nova ordem" + +#: src/gui/orders.cpp:125 src/gui/guiConst.cpp:794 +msgid "Remove order" +msgstr "Excluir ordem" + +#: src/gui/orders.cpp:137 +msgid "Duplicate order (right-click to deep clone)" +msgstr "Duplicar ordem (clique com o botão direito para um clone profundo)" + +#: src/gui/orders.cpp:146 src/gui/guiConst.cpp:795 +msgid "Move order up" +msgstr "Mover ordem para cima" + +#: src/gui/orders.cpp:155 src/gui/guiConst.cpp:796 +msgid "Move order down" +msgstr "Mover ordem para baixo" + +#: src/gui/orders.cpp:167 +msgid "Place copy of current order at end of song (right-click to deep clone)" +msgstr "" +"Adicionar cópia da ordem atual ao final da música (clique com o botão " +"direito para um clone profundo)" + +#: src/gui/orders.cpp:177 +msgid "Order change mode: entire row" +msgstr "Modo de mudança da ordem: linha inteira" + +#: src/gui/orders.cpp:179 +msgid "Order change mode: one" +msgstr "Modo de mudança da ordem: uma célula" + +#: src/gui/orders.cpp:205 +msgid "Order edit mode: Select and type (scroll vertically)" +msgstr "Modo de edição de ordem: selecionar e digitar (rolagem vertical)" + +#: src/gui/orders.cpp:207 +msgid "Order edit mode: Select and type (scroll horizontally)" +msgstr "Modo de edição de ordem: selecionar e digitar (rolagem horizontal)" + +#: src/gui/orders.cpp:209 +msgid "Order edit mode: Select and type (don't scroll)" +msgstr "Modo de edição de ordem: selecionar e digitar (não rolar)" + +#: src/gui/orders.cpp:211 +msgid "Order edit mode: Click to change" +msgstr "Modo de edição de ordem: clicar para mudar" + +#: src/gui/findReplace.cpp:29 +msgid "ignore" +msgstr "ignorar" + +#: src/gui/findReplace.cpp:30 +msgid "equals" +msgstr "é igual a" + +#: src/gui/findReplace.cpp:31 +msgid "not equal" +msgstr "é diferente de" + +#: src/gui/findReplace.cpp:32 +msgid "between" +msgstr "está entre" + +#: src/gui/findReplace.cpp:33 +msgid "not between" +msgstr "não está entre" + +#: src/gui/findReplace.cpp:34 +msgid "any" +msgstr "qualquer" + +#: src/gui/findReplace.cpp:35 src/gui/guiConst.cpp:217 +msgid "none" +msgstr "nenhuma" + +#: src/gui/findReplace.cpp:39 +msgid "set" +msgstr "definir" + +#: src/gui/findReplace.cpp:40 +msgid "add" +msgstr "somar" + +#: src/gui/findReplace.cpp:41 +msgid "add (overflow)" +msgstr "somar (com transbordo)" + +#: src/gui/findReplace.cpp:42 +msgid "scale %" +msgstr "escalonar %" + +#: src/gui/findReplace.cpp:512 src/gui/guiConst.cpp:609 +msgid "Find/Replace" +msgstr "Localizar/Substituir" + +#: src/gui/findReplace.cpp:520 src/gui/findReplace.cpp:850 +msgid "Find" +msgstr "Localizar" + +#: src/gui/findReplace.cpp:526 src/gui/findReplace.cpp:535 +msgid "order" +msgstr "ordem" + +#: src/gui/findReplace.cpp:527 src/gui/findReplace.cpp:537 +msgid "row" +msgstr "linha" + +#: src/gui/findReplace.cpp:539 src/gui/csPlayer.cpp:146 +msgid "channel" +msgstr "canal" + +#: src/gui/findReplace.cpp:541 +msgid "go" +msgstr "ir" + +#: src/gui/findReplace.cpp:585 +msgid "no matches found!" +msgstr "nenhum resultado encontrado!" + +#: src/gui/findReplace.cpp:587 +msgid "Back" +msgstr "Voltar" + +#: src/gui/findReplace.cpp:750 +msgid "Delete query" +msgstr "Excluir consulta" + +#: src/gui/findReplace.cpp:754 src/gui/findReplace.cpp:1037 +msgid "Add effect" +msgstr "Adicionar efeito" + +#: src/gui/findReplace.cpp:761 src/gui/findReplace.cpp:1044 +msgid "Remove effect" +msgstr "Remover efeito" + +#: src/gui/findReplace.cpp:786 +msgid "Search range:" +msgstr "Intervalo de pesquisa:" + +#: src/gui/findReplace.cpp:799 +msgid "Confine to channels" +msgstr "Confinar aos canais" + +#: src/gui/findReplace.cpp:803 src/gui/sampleEdit.cpp:1152 +msgid "From" +msgstr "De" + +#: src/gui/findReplace.cpp:814 src/gui/sampleEdit.cpp:1156 +msgid "To" +msgstr "Até" + +#: src/gui/findReplace.cpp:826 +msgid "Match effect position:" +msgstr "Correspondência com posição de efeitos:" + +#: src/gui/findReplace.cpp:828 src/gui/gui.cpp:5664 src/gui/gui.cpp:5688 +#: src/gui/gui.cpp:5712 src/gui/gui.cpp:5736 src/gui/gui.cpp:5760 +#: src/gui/gui.cpp:5788 src/gui/gui.cpp:5813 src/gui/gui.cpp:5824 +#: src/gui/gui.cpp:5836 src/gui/gui.cpp:5848 src/gui/gui.cpp:6012 +#: src/gui/gui.cpp:6027 src/gui/gui.cpp:6037 src/gui/gui.cpp:6050 +msgid "No" +msgstr "Não" + +#: src/gui/findReplace.cpp:832 +msgid "match effects regardless of position." +msgstr "corresponder com efeitos independente da posição." + +#: src/gui/findReplace.cpp:834 src/gui/compatFlags.cpp:288 +msgid "Lax" +msgstr "Relaxada" + +#: src/gui/findReplace.cpp:838 +msgid "match effects only if they appear in-order." +msgstr "corresponder com efeitos somente se eles aparecerem em ordem." + +#: src/gui/findReplace.cpp:840 src/gui/compatFlags.cpp:276 +msgid "Strict" +msgstr "Estrita" + +#: src/gui/findReplace.cpp:844 +msgid "match effects only if they appear exactly as specified." +msgstr "" +"corresponder com efeitos somente se eles aparecerem exatamente como " +"especificados." + +#: src/gui/findReplace.cpp:856 +msgid "Replace" +msgstr "Substituir" + +#: src/gui/findReplace.cpp:908 +msgid "INVALID" +msgstr "INVÁLIDO" + +#: src/gui/findReplace.cpp:1052 +msgid "Effect replace mode:" +msgstr "Modo de substituição de efeito:" + +#: src/gui/findReplace.cpp:1053 +msgid "Replace matches only" +msgstr "Substituir correspondências somente" + +#: src/gui/findReplace.cpp:1056 +msgid "Replace matches, then free spaces" +msgstr "Substituir correspondências, e então espaços livres" + +#: src/gui/findReplace.cpp:1059 +msgid "Clear effects" +msgstr "Limpar efeitos" + +#: src/gui/findReplace.cpp:1062 +msgid "Insert in free spaces" +msgstr "Inserir em espaços livres" + +#: src/gui/findReplace.cpp:1065 +msgid "Replace##QueryReplace" +msgstr "Substituir##QueryReplace" + +#: src/gui/about.cpp:26 +msgid "is proud to present" +msgstr "" + +#: src/gui/about.cpp:30 +msgid "the biggest multi-system chiptune tracker!" +msgstr "o maior tracker chiptune multi-sistema!" + +#: src/gui/about.cpp:31 +msgid "featuring DefleMask song compatibility." +msgstr "com compatibilidade para músicas do DefleMask." + +#: src/gui/about.cpp:33 +msgid "> CREDITS <" +msgstr "> CRÉDITOS <" + +#: src/gui/about.cpp:35 +msgid "-- program --" +msgstr "-- programa --" + +#: src/gui/about.cpp:37 +msgid "A M 4 N (intro tune)" +msgstr "A M 4 N (tema de introdução)" + +#: src/gui/about.cpp:52 +msgid "-- graphics/UI design --" +msgstr "-- gráficos/design de UI --" + +#: src/gui/about.cpp:59 +msgid "-- documentation --" +msgstr "-- documentação --" + +#: src/gui/about.cpp:69 +msgid "-- demo songs --" +msgstr "-- músicas de demonstração --" + +#: src/gui/about.cpp:195 +msgid "-- additional feedback/fixes --" +msgstr "-- feedback/soluções adicionais --" + +#: src/gui/about.cpp:206 +msgid "-- Metal backend test team --" +msgstr "" + +#: src/gui/about.cpp:212 +msgid "-- DirectX 9 backend test team --" +msgstr "" + +#: src/gui/about.cpp:219 +msgid "powered by:" +msgstr "bibliotecas utilizadas:" + +#: src/gui/about.cpp:220 +msgid "Dear ImGui by Omar Cornut" +msgstr "Dear ImGui por Omar Cornut" + +#: src/gui/about.cpp:221 +msgid "SDL2 by Sam Lantinga" +msgstr "SDL2 por Sam Lantinga" + +#: src/gui/about.cpp:225 +msgid "zlib by Jean-loup Gailly" +msgstr "zlib por Jean-loup Gailly" + +#: src/gui/about.cpp:226 +msgid "and Mark Adler" +msgstr "e Mark Adler" + +#: src/gui/about.cpp:227 +msgid "libsndfile by Erik de Castro Lopo" +msgstr "libsndfile por Erik de Castro Lopo" + +#: src/gui/about.cpp:228 +msgid "Portable File Dialogs by Sam Hocevar" +msgstr "Portable File Dialogs por Sam Hocevar" + +#: src/gui/about.cpp:229 +msgid "Native File Dialog by Frogtoss Games" +msgstr "Native File Dialog por Frogtoss Games" + +#: src/gui/about.cpp:231 +msgid "Weak-JACK by x42" +msgstr "Weak-JACK por x42" + +#: src/gui/about.cpp:232 +msgid "RtMidi by Gary P. Scavone" +msgstr "RtMidi por Gary P. Scavone" + +#: src/gui/about.cpp:233 +msgid "FFTW by Matteo Frigo and Steven G. Johnson" +msgstr "FFTW por Matteo Frigo and Steven G. Johnson" + +#: src/gui/about.cpp:234 +msgid "backward-cpp by Google" +msgstr "backward-cpp da Google" + +#: src/gui/about.cpp:235 +msgid "adpcm by superctr" +msgstr "adpcm por superctr" + +#: src/gui/about.cpp:236 +msgid "adpcm-xq by David Bryant" +msgstr "adpcm-xq por David Bryant" + +#: src/gui/about.cpp:237 +msgid "Nuked-OPL3/OPLL/OPM/OPN2/PSG by nukeykt" +msgstr "Nuked-OPL3/OPLL/OPM/OPN2/PSG por nukeykt" + +#: src/gui/about.cpp:238 +msgid "YM3812-LLE, YMF262-LLE, YMF276-LLE and YM2608-LLE by nukeykt" +msgstr "" + +#: src/gui/about.cpp:239 +msgid "ESFMu (modified version) by Kagamiin~" +msgstr "ESFMu (versão modificada) por Kagamiin~" + +#: src/gui/about.cpp:240 +msgid "ymfm by Aaron Giles" +msgstr "ymfm por Aaron Giles" + +#: src/gui/about.cpp:241 +msgid "emu2413 by Digital Sound Antiques" +msgstr "" + +#: src/gui/about.cpp:242 +msgid "MAME SN76496 by Nicola Salmoria" +msgstr "MAME SN76496 por Nicola Salmoria" + +#: src/gui/about.cpp:243 +msgid "MAME AY-3-8910 by Couriersud" +msgstr "MAME AY-3-8910 por Couriersud" + +#: src/gui/about.cpp:244 +msgid "with AY8930 fixes by Eulous, cam900 and Grauw" +msgstr "com melhorias de AY8930 por Eulous, cam900 e Grauw" + +#: src/gui/about.cpp:245 +msgid "MAME SAA1099 by Juergen Buchmueller and Manuel Abadia" +msgstr "MAME SAA1099 por Juergen Buchmueller e Manuel Abadia" + +#: src/gui/about.cpp:246 +msgid "MAME Namco WSG by Nicola Salmoria and Aaron Giles" +msgstr "MAME Namco WSG por Nicola Salmoria e Aaron Giles" + +#: src/gui/about.cpp:247 +msgid "MAME RF5C68 core by Olivier Galibert and Aaron Giles" +msgstr "núcleo MAME RF5C68 por Olivier Galibert e Aaron Giles" + +#: src/gui/about.cpp:248 +msgid "MAME MSM5232 core by Jarek Burczynski and Hiromitsu Shioya" +msgstr "núcleo MAME MSM5232 core por Jarek Burczynski e Hiromitsu Shioya" + +#: src/gui/about.cpp:249 +msgid "MAME MSM6258 core by Barry Rodewald" +msgstr "núcleo MAME MSM6258 por Barry Rodewald" + +#: src/gui/about.cpp:250 +msgid "MAME YMZ280B core by Aaron Giles" +msgstr "núcleo MAME YMZ280B por Aaron Giles" + +#: src/gui/about.cpp:251 +msgid "MAME GA20 core by Acho A. Tang and R. Belmont" +msgstr "núcleo MAME GA20 por Acho A. Tang e R. Belmont" + +#: src/gui/about.cpp:252 +msgid "MAME SegaPCM core by Hiromitsu Shioya and Olivier Galibert" +msgstr "núcleo MAME SegaPCM por Hiromitsu Shioya e Olivier Galibert" + +#: src/gui/about.cpp:253 +msgid "SAASound by Dave Hooper and Simon Owen" +msgstr "Sand AASound por Dave Hooper e Simon Owen" + +#: src/gui/about.cpp:254 +msgid "SameBoy by Lior Halphon" +msgstr "SameBoy por Lior Halphon" + +#: src/gui/about.cpp:255 +msgid "Mednafen PCE, WonderSwan, T6W28 and Virtual Boy audio cores" +msgstr "núcleos de áudio Mednafen PCE, WonderSwan, T6W28 e Virtual Boy" + +#: src/gui/about.cpp:256 +msgid "SNES DSP core by Blargg" +msgstr "núcleo SNES DSP por Blargg" + +#: src/gui/about.cpp:257 +msgid "puNES (NES, MMC5 and FDS) by FHorse" +msgstr "puNES (NES, MMC5 e FDS) por FHorse" + +#: src/gui/about.cpp:258 +msgid "NSFPlay (NES and FDS) by Brad Smith and Brezza" +msgstr "NSFPlay (NES e FDS) por Brad Smith e Brezza" + +#: src/gui/about.cpp:259 +msgid "reSID by Dag Lem" +msgstr "reSID por Dag Lem" + +#: src/gui/about.cpp:260 +msgid "reSIDfp by Dag Lem, Antti Lankila" +msgstr "reSIDfp por Dag Lem, Antti Lankila" + +#: src/gui/about.cpp:261 +msgid "and Leandro Nini" +msgstr "e Leandro Nini" + +#: src/gui/about.cpp:262 +msgid "dSID by DefleMask Team based on jsSID" +msgstr "dSID pelo Time DefleMask baseado no jsSID" + +#: src/gui/about.cpp:263 +msgid "Stella by Stella Team" +msgstr "Stella pelo Time Stella" + +#: src/gui/about.cpp:264 +msgid "QSound emulator by superctr and Valley Bell" +msgstr "emulador QSound por superctr e Valley Bell" + +#: src/gui/about.cpp:265 +msgid "VICE VIC-20 sound core by Rami Rasanen and viznut" +msgstr "núcleo de som VICE VIC-20 por Rami Rasanen e viznut" + +#: src/gui/about.cpp:266 +msgid "VICE TED sound core by Andreas Boose, Tibor Biczo" +msgstr "núcleo de som VICE TED por Andreas Boose, Tibor Biczo" + +#: src/gui/about.cpp:267 +msgid "and Marco van den Heuvel" +msgstr "e Marco van den Heuvel" + +#: src/gui/about.cpp:268 +msgid "VERA sound core by Frank van den Hoef" +msgstr "núcleo de som VERA por Frank van den Hoef" + +#: src/gui/about.cpp:269 +msgid "mzpokeysnd POKEY emulator by Michael Borisov" +msgstr "emulador POKEY mzpokeysnd por Michael Borisov" + +#: src/gui/about.cpp:270 +msgid "ASAP POKEY emulator by Piotr Fusik" +msgstr "emulador POKEY ASAP por Piotr Fusik" + +#: src/gui/about.cpp:271 +msgid "ported by laoo to C++" +msgstr "traduzido para C++ por laoo" + +#: src/gui/about.cpp:272 +msgid "vgsound_emu (second version, modified version) by cam900" +msgstr "vgsound_emu (segunda versão, modificada) por cam900" + +#: src/gui/about.cpp:273 +msgid "SM8521 emulator (modified version) by cam900" +msgstr "emulador de SM8521 (versão modificada) by cam900" + +#: src/gui/about.cpp:274 +msgid "D65010G031 emulator (modified version) by cam900" +msgstr "emulador de D65010G031 (versão modificada) by cam900" + +#: src/gui/about.cpp:275 +msgid "Namco C140/C219 emulator (modified version) by cam900" +msgstr "emulador de Namco C140/C219 (versão modificada) by cam900" + +#: src/gui/about.cpp:276 +msgid "PowerNoise emulator by scratchminer" +msgstr "emulador PowerNoise por scratchminer" + +#: src/gui/about.cpp:277 +msgid "ep128emu by Istvan Varga" +msgstr "ep128emu por Istvan Varga" + +#: src/gui/about.cpp:278 +msgid "NDS sound emulator by cam900" +msgstr "emulador de áudio de NDS por cam900" + +#: src/gui/about.cpp:280 +msgid "greetings to:" +msgstr "saudações a:" + +#: src/gui/about.cpp:283 +msgid "all members of Deflers of Noice!" +msgstr "todos os membros de Deflers of Noice!" + +#: src/gui/about.cpp:285 +msgid "copyright © 2021-2024 tildearrow" +msgstr "copyright © 2021-2024 tildearrow" + +#: src/gui/about.cpp:286 +msgid "(and contributors)." +msgstr "(e contribuidores)." + +#: src/gui/about.cpp:287 +msgid "licensed under GPLv2+! see" +msgstr "licenciado sob a GPLv2+! veja o" + +#: src/gui/about.cpp:288 +msgid "LICENSE for more information." +msgstr "arquivo LICENSE para mais informações." + +#: src/gui/about.cpp:290 +msgid "help Furnace grow:" +msgstr "ajude o Furnace a crescer:" + +#: src/gui/about.cpp:293 +msgid "contact tildearrow at:" +msgstr "entre em contato com tildearrow em:" + +#: src/gui/about.cpp:296 +msgid "disclaimer:" +msgstr "aviso:" + +#: src/gui/about.cpp:297 +msgid "despite the fact this program works" +msgstr "apesar do fato de este programa funcionar" + +#: src/gui/about.cpp:298 +msgid "with the .dmf file format, it is NOT" +msgstr "com o formato de arquivo .dmf, ele NÃO é" + +#: src/gui/about.cpp:299 +msgid "affiliated with Delek or DefleMask in" +msgstr "afiliado com Delek ou o DefleMask de forma" + +#: src/gui/about.cpp:300 +msgid "any way, nor it is a replacement for" +msgstr "alguma, assim como também não é um substituto" + +#: src/gui/about.cpp:301 +msgid "the original program." +msgstr "para o programa original." + +#: src/gui/about.cpp:303 +msgid "it also comes with ABSOLUTELY NO WARRANTY." +msgstr "ele também não vem com ABSOLUTAMENTE NENHUMA GARANTIA." + +#: src/gui/about.cpp:305 +msgid "thanks to all contributors/bug reporters!" +msgstr "agradecemos a todos os contribuidores e bug reporters!" + +#: src/gui/about.cpp:312 +msgid "About Furnace" +msgstr "" + +#: src/gui/about.cpp:402 +msgid "Unsaved changes! Save changes before playing?" +msgstr "" + +#: src/gui/compatFlags.cpp:31 src/gui/guiConst.cpp:598 +msgid "Compatibility Flags" +msgstr "Opções de Compatibilidade" + +#: src/gui/compatFlags.cpp:32 +msgid "" +"these flags are designed to provide better DefleMask/older Furnace " +"compatibility.\n" +"it is recommended to disable most of these unless you rely on specific " +"quirks." +msgstr "" +"estas opções são desenvolvidas para prover melhor compatibilidade ao " +"Deflemask ou versões antigas do Furnace.\n" +"é recomendado desabilitar a maior parte delas a não ser que você dependa de " +"peculiaridades específicas." + +#: src/gui/compatFlags.cpp:34 src/gui/compatFlags.cpp:310 +msgid "DefleMask" +msgstr "" + +#: src/gui/compatFlags.cpp:35 +msgid "Limit slide range" +msgstr "" + +#: src/gui/compatFlags.cpp:37 +msgid "" +"when enabled, slides are limited to a compatible range.\n" +"may cause problems with slides in negative octaves." +msgstr "" + +#: src/gui/compatFlags.cpp:39 +msgid "Compatible noise layout on NES and PC Engine" +msgstr "" + +#: src/gui/compatFlags.cpp:41 +msgid "" +"use a rather unusual compatible noise frequency layout.\n" +"removes some noise frequencies on PC Engine." +msgstr "" + +#: src/gui/compatFlags.cpp:43 +msgid "Game Boy instrument duty is wave volume" +msgstr "" +"Ciclo de trabalho do instrumento do Game Boy é o volume do canal de onda" + +#: src/gui/compatFlags.cpp:45 +msgid "" +"if enabled, an instrument with duty macro in the wave channel will be mapped " +"to wavetable volume." +msgstr "" +"se habilitado, um instrumento com macro de ciclo de trabalho no canal de " +"onda será mapeado para o volume da wavetable." + +#: src/gui/compatFlags.cpp:48 +msgid "Restart macro on portamento" +msgstr "Reiniciar macro quando houver portamento" + +#: src/gui/compatFlags.cpp:50 +msgid "" +"when enabled, a portamento effect will reset the channel's macro if used in " +"combination with a note." +msgstr "" +"quando habilitado, um efeito de portamento irá reiniciar a macro do canal se " +"utilizado em combinação com uma nota." + +#: src/gui/compatFlags.cpp:52 +msgid "Legacy volume slides" +msgstr "" + +#: src/gui/compatFlags.cpp:54 +msgid "" +"simulate glitchy volume slide behavior by silently overflowing the volume " +"when the slide goes below 0." +msgstr "" + +#: src/gui/compatFlags.cpp:56 +msgid "Compatible arpeggio" +msgstr "" + +#: src/gui/compatFlags.cpp:58 +msgid "delay arpeggio by one tick on every new note." +msgstr "" + +#: src/gui/compatFlags.cpp:60 +msgid "Disable DAC when sample ends" +msgstr "" + +#: src/gui/compatFlags.cpp:62 +msgid "" +"when enabled, the DAC in YM2612 will be disabled if there isn't any sample " +"playing." +msgstr "" + +#: src/gui/compatFlags.cpp:64 +msgid "Broken speed alternation" +msgstr "" + +#: src/gui/compatFlags.cpp:66 +msgid "" +"determines next speed based on whether the row is odd/even instead of " +"alternating between speeds." +msgstr "" + +#: src/gui/compatFlags.cpp:68 +msgid "Ignore duplicate slide effects" +msgstr "Ignorar efeitos de slide duplicados" + +#: src/gui/compatFlags.cpp:70 +msgid "" +"if this is on, only the first slide of a row in a channel will be considered." +msgstr "" +"se habilitado, apenas o primeiro slide de uma linha em um canal será " +"considerado." + +#: src/gui/compatFlags.cpp:72 +msgid "Ignore 0Dxx on the last order" +msgstr "Ignorar 0Dxx na última ordem" + +#: src/gui/compatFlags.cpp:74 +msgid "" +"if this is on, a jump to next row effect will not take place when it is on " +"the last order of a song." +msgstr "" +"se isto estiver habilitado, o efeito para pular para a próxima ordem não irá " +"funcionar quando estiver na última ordem de uma música." + +#: src/gui/compatFlags.cpp:76 +msgid "Buggy portamento after pitch slide" +msgstr "" + +#: src/gui/compatFlags.cpp:78 +msgid "simulates a bug in where portamento does not work after sliding." +msgstr "" + +#: src/gui/compatFlags.cpp:80 +msgid "FM pitch slide octave boundary odd behavior" +msgstr "" + +#: src/gui/compatFlags.cpp:82 +msgid "" +"if this is on, a pitch slide that crosses the octave boundary will stop for " +"one tick and then continue from the nearest octave boundary.\n" +"for .dmf compatibility." +msgstr "" + +#: src/gui/compatFlags.cpp:84 +msgid "Don't apply Game Boy envelope on note-less instrument change" +msgstr "Não aplicar envelope do Game Boy em mudança de instrumento sem nota" + +#: src/gui/compatFlags.cpp:86 +msgid "if this is on, an instrument change will not affect the envelope." +msgstr "" +"se isto estiver habilitado, uma mudança de instrumento não irá afetar o " +"envelope." + +#: src/gui/compatFlags.cpp:88 +msgid "Ignore DAC mode change outside of intended channel in ExtCh mode" +msgstr "Ignorar mudança de modo DAC fora do canal correto no modo ExtCh" + +#: src/gui/compatFlags.cpp:90 +msgid "if this is on, 17xx has no effect on the operator channels in YM2612." +msgstr "" +"se isso estiver habilitado, 17xx não tem nenhum efeito nos canais de " +"operador no YM2612." + +#: src/gui/compatFlags.cpp:92 +msgid "E1xy/E2xy also take priority over slide stops" +msgstr "" + +#: src/gui/compatFlags.cpp:94 +msgid "does this make any sense by now?" +msgstr "" + +#: src/gui/compatFlags.cpp:96 +msgid "E1xy/E2xy stop when repeating the same note" +msgstr "" + +#: src/gui/compatFlags.cpp:98 +msgid "ugh, if only this wasn't a thing..." +msgstr "" + +#: src/gui/compatFlags.cpp:100 +msgid "SN76489 duty macro always resets phase" +msgstr "Macro de ciclo de trabalho do SN76489 sempre reinicia a fase" + +#: src/gui/compatFlags.cpp:102 +msgid "" +"when enabled, duty macro will always reset phase, even if its value hasn't " +"changed." +msgstr "" +"quando habilitado, a macro de ciclo de trabalho sempre irá reiniciar a fase " +"do canal, mesmo que o seu valor não tenha sido alterado." + +#: src/gui/compatFlags.cpp:104 +msgid "Broken volume scaling strategy" +msgstr "" + +#: src/gui/compatFlags.cpp:106 +msgid "" +"when enabled:\n" +"- log scaling: multiply\n" +"- linear scaling: subtract\n" +"when disabled:\n" +"- log scaling: subtract\n" +"- linear scaling: multiply" +msgstr "" + +#: src/gui/compatFlags.cpp:108 +msgid "Don't persist volume macro after it finishes" +msgstr "Não persistir macro de volume depois que ela terminar" + +#: src/gui/compatFlags.cpp:110 +msgid "" +"when enabled, a value in the volume column that happens after the volume " +"macro is done will disregard the macro." +msgstr "" +"quando habilitado, um valor na coluna de volume que aparece depois que a " +"macro de volume termina irá desconsiderar o valor da macro." + +#: src/gui/compatFlags.cpp:112 +msgid "Broken output volume on instrument change" +msgstr "" + +#: src/gui/compatFlags.cpp:114 +msgid "" +"if enabled, no checks for the presence of a volume macro will be made.\n" +"this will cause the last macro value to linger unless a value in the volume " +"column is present." +msgstr "" + +#: src/gui/compatFlags.cpp:116 +msgid "Broken output volume - Episode 2 (PLEASE KEEP ME DISABLED)" +msgstr "" + +#: src/gui/compatFlags.cpp:118 +msgid "" +"these compatibility flags are getting SO damn ridiculous and out of " +"control.\n" +"as you may have guessed, this one exists due to yet ANOTHER DefleMask-" +"specific behavior.\n" +"please keep this off at all costs, because I will not support it when ROM " +"export comes.\n" +"oh, and don't start an argument out of it. Furnace isn't a DefleMask " +"replacement, and no,\n" +"I am not trying to make it look like one with all these flags.\n" +"\n" +"oh, and what about the other flags that don't have to do with DefleMask?\n" +"those are for .mod import, future FamiTracker import and personal taste!\n" +"\n" +"end of rant" +msgstr "" + +#: src/gui/compatFlags.cpp:120 +msgid "Treat SN76489 periods under 8 as 1" +msgstr "" + +#: src/gui/compatFlags.cpp:122 +msgid "" +"when enabled, any SN period under 8 will be written as 1 instead.\n" +"this replicates DefleMask behavior, but reduces available period range." +msgstr "" + +#: src/gui/compatFlags.cpp:126 src/gui/compatFlags.cpp:304 +msgid "Old Furnace" +msgstr "" + +#: src/gui/compatFlags.cpp:127 +msgid "Arpeggio inhibits non-porta slides" +msgstr "" + +#: src/gui/compatFlags.cpp:129 src/gui/compatFlags.cpp:133 +msgid "behavior changed in 0.5.5" +msgstr "" + +#: src/gui/compatFlags.cpp:131 +msgid "Wack FM algorithm macro" +msgstr "" + +#: src/gui/compatFlags.cpp:135 +msgid "Broken shortcut slides (E1xy/E2xy)" +msgstr "" + +#: src/gui/compatFlags.cpp:137 +msgid "behavior changed in 0.5.7" +msgstr "" + +#: src/gui/compatFlags.cpp:139 +msgid "Stop portamento on note off" +msgstr "" + +#: src/gui/compatFlags.cpp:141 src/gui/compatFlags.cpp:145 +#: src/gui/compatFlags.cpp:149 src/gui/compatFlags.cpp:153 +#: src/gui/compatFlags.cpp:157 src/gui/compatFlags.cpp:161 +#: src/gui/compatFlags.cpp:165 +msgid "behavior changed in 0.6pre1" +msgstr "" + +#: src/gui/compatFlags.cpp:143 +msgid "Don't allow instrument change during slides" +msgstr "" + +#: src/gui/compatFlags.cpp:147 +msgid "Don't reset note to base on arpeggio stop" +msgstr "" + +#: src/gui/compatFlags.cpp:151 +msgid "ExtCh channel status is not shared among operators" +msgstr "" + +#: src/gui/compatFlags.cpp:155 +msgid "Disable new SegaPCM features (macros and better panning)" +msgstr "" + +#: src/gui/compatFlags.cpp:159 +msgid "Old FM octave boundary behavior" +msgstr "" + +#: src/gui/compatFlags.cpp:163 +msgid "Disable OPN2 DAC volume control" +msgstr "" + +#: src/gui/compatFlags.cpp:167 +msgid "Broken initial position of portamento after arpeggio" +msgstr "" + +#: src/gui/compatFlags.cpp:169 +msgid "behavior changed in 0.6pre1.5" +msgstr "" + +#: src/gui/compatFlags.cpp:171 +msgid "Disable new sample features" +msgstr "" + +#: src/gui/compatFlags.cpp:173 src/gui/compatFlags.cpp:177 +msgid "behavior changed in 0.6pre2" +msgstr "" + +#: src/gui/compatFlags.cpp:175 +msgid "Old arpeggio macro + pitch slide strategy" +msgstr "" + +#: src/gui/compatFlags.cpp:179 +msgid "Broken portamento during legato" +msgstr "" + +#: src/gui/compatFlags.cpp:181 +msgid "behavior changed in 0.6pre4" +msgstr "" + +#: src/gui/compatFlags.cpp:183 +msgid "Broken macros in some FM chips after note off" +msgstr "" + +#: src/gui/compatFlags.cpp:185 +msgid "behavior changed in 0.6pre5" +msgstr "" + +#: src/gui/compatFlags.cpp:187 +msgid "Pre-note does not take effects into consideration" +msgstr "" + +#: src/gui/compatFlags.cpp:189 +msgid "behavior changed in 0.6pre9" +msgstr "" + +#: src/gui/compatFlags.cpp:191 +msgid "Disable new NES DPCM features" +msgstr "" + +#: src/gui/compatFlags.cpp:193 +msgid "behavior changed in 0.6.1" +msgstr "" + +#: src/gui/compatFlags.cpp:195 +msgid "Legacy technical ALWAYS_SET_VOLUME behavior" +msgstr "" + +#: src/gui/compatFlags.cpp:197 +msgid "" +"behavior changed in 0.6.1\n" +"this flag will be removed if I find out that none of the songs break after " +"disabling it." +msgstr "" + +#: src/gui/compatFlags.cpp:199 +msgid "Old sample offset effect" +msgstr "" + +#: src/gui/compatFlags.cpp:201 +msgid "behavior changed in 0.6.3" +msgstr "" + +#: src/gui/compatFlags.cpp:205 +msgid ".mod import" +msgstr "importação de .mod" + +#: src/gui/compatFlags.cpp:206 +msgid "Don't slide on the first tick of a row" +msgstr "Não fazer slide no primeiro tick de uma linha" + +#: src/gui/compatFlags.cpp:208 +msgid "" +"simulates ProTracker's behavior of not applying volume/pitch slides on the " +"first tick of a row." +msgstr "" +"simula o comportamento do ProTracker de não aplicar slides de volume/tom no " +"primeiro tick de uma linha." + +#: src/gui/compatFlags.cpp:210 +msgid "Reset arpeggio position on row change" +msgstr "Reiniciar posição do arpejo em mudança de linha" + +#: src/gui/compatFlags.cpp:212 +msgid "" +"simulates ProTracker's behavior of arpeggio being bound to the current tick " +"of a row." +msgstr "" +"simula o comportamento do ProTracker em que o arpejo é ligado ao tick atual " +"de uma linha." + +#: src/gui/compatFlags.cpp:216 +msgid "Pitch/Playback" +msgstr "Tom/Reprodução" + +#: src/gui/compatFlags.cpp:217 +msgid "Pitch linearity:" +msgstr "Linearidade de frequências:" + +#: src/gui/compatFlags.cpp:223 +msgid "like ProTracker/FamiTracker" +msgstr "como ProTracker/FamiTracker" + +#: src/gui/compatFlags.cpp:227 +msgid "Partial (only 04xy/E5xx)" +msgstr "" + +#: src/gui/compatFlags.cpp:231 +msgid "" +"like DefleMask\n" +"\n" +"this pitch linearity mode is deprecated due to:\n" +"- excessive complexity\n" +"- lack of possible optimization\n" +"\n" +"it is recommended to change it now because I will remove this option in the " +"future!" +msgstr "" + +#: src/gui/compatFlags.cpp:235 +msgid "Full" +msgstr "Completa" + +#: src/gui/compatFlags.cpp:239 +msgid "like Impulse Tracker" +msgstr "como Impulse Tracker" + +#: src/gui/compatFlags.cpp:246 +msgid "Pitch slide speed multiplier" +msgstr "Multiplicador de velocidade de slide de frequência" + +#: src/gui/compatFlags.cpp:252 +msgid "Loop modality:" +msgstr "Modalidade de loop:" + +#: src/gui/compatFlags.cpp:254 +msgid "Reset channels" +msgstr "Reiniciar canais" + +#: src/gui/compatFlags.cpp:258 +msgid "" +"select to reset channels on loop. may trigger a voltage click on every loop!" +msgstr "" +"escolha para reiniciar bruscamente os canais a cada loop. pode causar " +"cliques de tensão em todos os loops!" + +#: src/gui/compatFlags.cpp:260 +msgid "Soft reset channels" +msgstr "Desativar canais" + +#: src/gui/compatFlags.cpp:264 +msgid "select to turn channels off on loop." +msgstr "selecione para desligar os canais a cada loop." + +#: src/gui/compatFlags.cpp:266 +msgid "Do nothing" +msgstr "Não fazer nada" + +#: src/gui/compatFlags.cpp:270 +msgid "select to not reset channels on loop." +msgstr "selecione para não reiniciar os canais a cada loop." + +#: src/gui/compatFlags.cpp:274 +msgid "Cut/delay effect policy:" +msgstr "Política de efeito de corte/atraso:" + +#: src/gui/compatFlags.cpp:280 +msgid "only when time is less than speed (like DefleMask/ProTracker)" +msgstr "" +"somente quando o tempo é menor que a velocidade (como DefleMask/ProTracker)" + +#: src/gui/compatFlags.cpp:282 +msgid "Strict (old)" +msgstr "" + +#: src/gui/compatFlags.cpp:286 +msgid "only when time is less than or equal to speed (original buggy behavior)" +msgstr "" + +#: src/gui/compatFlags.cpp:292 +msgid "no checks" +msgstr "sem checagens" + +#: src/gui/compatFlags.cpp:296 +msgid "Simultaneous jump (0B+0D) treatment:" +msgstr "Tratamento de pulos simultâneos (0B+0D):" + +#: src/gui/compatFlags.cpp:302 +msgid "accept 0B+0D to jump to a specific row of an order" +msgstr "aceitar 0B+0D para pular para uma linha específica de uma ordem" + +#: src/gui/compatFlags.cpp:308 +msgid "only accept the first jump effect" +msgstr "" + +#: src/gui/compatFlags.cpp:314 +msgid "only accept 0Dxx" +msgstr "" + +#: src/gui/compatFlags.cpp:320 +msgid "Auto-insert one tick gap between notes" +msgstr "Automaticamente inserir intervalo de um tick entre notas" + +#: src/gui/compatFlags.cpp:322 +msgid "" +"when enabled, a one-tick note cut will be inserted between non-legato/non-" +"portamento notes.\n" +"this simulates the behavior of some Amiga/SNES music engines.\n" +"\n" +"ineffective on C64." +msgstr "" +"quando habilitado, um corte de nota de um tick será inserido entre notas não-" +"legato/não-portamento.\n" +"isso simula o comportamento de alguns motores de música de Amiga e SNES.\n" +"Não tem efeito no C64." + +#: src/gui/compatFlags.cpp:327 +msgid "Don't reset slides after note off" +msgstr "Não reiniciar slides após \"note-off\"" + +#: src/gui/compatFlags.cpp:329 +msgid "when enabled, note off will not reset the channel's slide effect." +msgstr "" +"quando habilitado, a desativação de nota não irá reiniciar o efeito de slide " +"do canal." + +#: src/gui/compatFlags.cpp:331 +msgid "Don't reset portamento after reaching target" +msgstr "Não reiniciar portamento ao atingir nota alvo" + +#: src/gui/compatFlags.cpp:333 +msgid "" +"when enabled, the slide effect will not be disabled after it reaches its " +"target." +msgstr "" +"quando habilitado, o efeito portamento não será desligado após atingir sua " +"nota alvo." + +#: src/gui/compatFlags.cpp:335 +msgid "Continuous vibrato" +msgstr "Vibrato contínuo" + +#: src/gui/compatFlags.cpp:337 +msgid "when enabled, vibrato phase/position will not be reset on a new note." +msgstr "" +"quando habilitado, a fase/posição do vibrato não será reiniciada em novas " +"notas." + +#: src/gui/compatFlags.cpp:339 +msgid "Pitch macro is not linear" +msgstr "Macro de tom não é linear" + +#: src/gui/compatFlags.cpp:341 +msgid "" +"when enabled, the pitch macro of an instrument is in frequency/period space." +msgstr "" +"quando habilitado, a macro de tom de um instrumento é aplicada em domínio de " +"frequência/período." + +#: src/gui/compatFlags.cpp:343 +msgid "Reset arpeggio effect position on new note" +msgstr "Reiniciar posição do efeito de arpejo em novas notas" + +#: src/gui/compatFlags.cpp:345 +msgid "when enabled, arpeggio effect (00xy) position is reset on a new note." +msgstr "" +"quando habilitado, a posição do efeito de arpejo (00xy) é reiniciada quando " +"uma nova nota é tocada." + +#: src/gui/compatFlags.cpp:347 +msgid "Volume scaling rounds up" +msgstr "Escalonamento de volume arredonda para cima" + +#: src/gui/compatFlags.cpp:349 +msgid "" +"when enabled, volume macros round up when applied\n" +"this prevents volume scaling from causing vol=0, which is silent on some " +"chips\n" +"\n" +"ineffective on logarithmic channels" +msgstr "" +"quando habilitado, macros de volume arredondam para cima ao serem aplicadas\n" +"isso previne que o escalonamento de volume gere um volume igual a 0, que " +"gera silêncio em alguns chips\n" +"\n" +"não tem efeito em canais com volume logarítmico" + +#: src/gui/guiConst.cpp:127 +msgid "Generic Sample" +msgstr "Sample Genérica" + +#: src/gui/guiConst.cpp:155 +msgid "OPL (drums)" +msgstr "OPL (bateria)" + +#: src/gui/guiConst.cpp:191 +msgid "Forward" +msgstr "Para frente" + +#: src/gui/guiConst.cpp:192 +msgid "Backward" +msgstr "Para trás" + +#: src/gui/guiConst.cpp:193 +msgid "Ping pong" +msgstr "Pingue pongue" + +#: src/gui/guiConst.cpp:218 +msgid "linear" +msgstr "linear" + +#: src/gui/guiConst.cpp:219 +msgid "cubic spline" +msgstr "spline cúbica" + +#: src/gui/guiConst.cpp:220 +msgid "blep synthesis" +msgstr "síntese blep" + +#: src/gui/guiConst.cpp:221 +msgid "sinc" +msgstr "sinc" + +#: src/gui/guiConst.cpp:222 +msgid "best possible" +msgstr "melhor possível" + +#: src/gui/guiConst.cpp:226 src/gui/sampleEdit.cpp:137 +#: src/gui/sampleEdit.cpp:143 +msgid "Invalid" +msgstr "Inválido" + +#: src/gui/guiConst.cpp:231 +msgid "Time" +msgstr "Tempo" + +#: src/gui/guiConst.cpp:233 +msgid "System (Primary)" +msgstr "Sistema (Primário)" + +#: src/gui/guiConst.cpp:234 +msgid "System (Secondary)" +msgstr "Sistema (Secundário)" + +#: src/gui/guiConst.cpp:530 +msgid "---Global" +msgstr "---Global" + +#: src/gui/guiConst.cpp:532 +msgid "Open file" +msgstr "Abrir arquivo" + +#: src/gui/guiConst.cpp:533 +msgid "Restore backup" +msgstr "Restaurar backup" + +#: src/gui/guiConst.cpp:534 +msgid "Save file" +msgstr "Salvar arquivo" + +#: src/gui/guiConst.cpp:535 +msgid "Save as" +msgstr "Salvar como" + +#: src/gui/guiConst.cpp:537 src/gui/sampleEdit.cpp:982 +msgid "Undo" +msgstr "Desfazer" + +#: src/gui/guiConst.cpp:539 src/gui/guiConst.cpp:541 src/gui/sampleEdit.cpp:989 +msgid "Redo" +msgstr "Refazer" + +#: src/gui/guiConst.cpp:543 +msgid "Exit" +msgstr "Sair" + +#: src/gui/guiConst.cpp:544 +msgid "Play/Stop (toggle)" +msgstr "Reproduzir/Parar (alternar)" + +#: src/gui/guiConst.cpp:547 +msgid "Play (from beginning)" +msgstr "Reproduzir (do início)" + +#: src/gui/guiConst.cpp:548 +msgid "Play (repeat pattern)" +msgstr "Reproduzir (repetir sequência)" + +#: src/gui/guiConst.cpp:549 +msgid "Play from cursor" +msgstr "Reproduzir do cursor" + +#: src/gui/guiConst.cpp:550 +msgid "Step row" +msgstr "Pular linha" + +#: src/gui/guiConst.cpp:551 +msgid "Octave up" +msgstr "Subir uma oitava" + +#: src/gui/guiConst.cpp:552 +msgid "Octave down" +msgstr "Descer uma oitava" + +#: src/gui/guiConst.cpp:553 +msgid "Previous instrument" +msgstr "Instrumento anterior" + +#: src/gui/guiConst.cpp:554 +msgid "Next instrument" +msgstr "Próximo instrumento" + +#: src/gui/guiConst.cpp:555 +msgid "Increase edit step" +msgstr "Aumentar passo de edição" + +#: src/gui/guiConst.cpp:556 +msgid "Decrease edit step" +msgstr "Diminuir passo de edição" + +#: src/gui/guiConst.cpp:557 +msgid "Toggle edit mode" +msgstr "Alternar modo de edição" + +#: src/gui/guiConst.cpp:559 +msgid "Toggle repeat pattern" +msgstr "Alternar repetição de sequência" + +#: src/gui/guiConst.cpp:562 +msgid "Toggle full-screen" +msgstr "Alternar tela cheia" + +#: src/gui/guiConst.cpp:563 +msgid "Request voice from TX81Z" +msgstr "Requisitar timbre do TX81Z" + +#: src/gui/guiConst.cpp:565 +msgid "Clear song data" +msgstr "Apagar dados da música" + +#: src/gui/guiConst.cpp:567 src/gui/gui.cpp:5573 src/gui/gui.cpp:5625 +msgid "Command Palette" +msgstr "Paleta de Comandos" + +#: src/gui/guiConst.cpp:569 +msgid "Recent files (Palette)" +msgstr "Arquivos recentes (Paleta)" + +#: src/gui/guiConst.cpp:570 +msgid "Instruments (Palette)" +msgstr "Instrumentos (Paleta)" + +#: src/gui/guiConst.cpp:571 +msgid "Samples (Palette)" +msgstr "Samples (Paleta)" + +#: src/gui/guiConst.cpp:572 +msgid "Change instrument (Palette)" +msgstr "Trocar instrumento (Paleta)" + +#: src/gui/guiConst.cpp:573 +msgid "Add chip (Palette)" +msgstr "Adicionar chip (Paleta)" + +#: src/gui/guiConst.cpp:578 +msgid "Instrument List" +msgstr "Lista de Instrumentos" + +#: src/gui/guiConst.cpp:579 src/gui/insEdit.cpp:5203 +msgid "Instrument Editor" +msgstr "Editor de Instrumentos" + +#: src/gui/guiConst.cpp:580 +msgid "Song Information" +msgstr "Informações da Música" + +#: src/gui/guiConst.cpp:583 +msgid "Wavetable List" +msgstr "Lista de Wavetables" + +#: src/gui/guiConst.cpp:584 src/gui/waveEdit.cpp:409 +msgid "Wavetable Editor" +msgstr "Editor de Wavetable" + +#: src/gui/guiConst.cpp:585 +msgid "Sample List" +msgstr "Lista de Samples" + +#: src/gui/guiConst.cpp:594 +msgid "Debug Menu" +msgstr "Menu de Depuração" + +#: src/gui/guiConst.cpp:595 +msgid "Oscilloscope (master)" +msgstr "Osciloscópio (mestre)" + +#: src/gui/guiConst.cpp:603 src/gui/sysManager.cpp:41 +msgid "Chip Manager" +msgstr "Gerenciador de Chips" + +#: src/gui/guiConst.cpp:614 src/gui/csPlayer.cpp:112 +msgid "Command Stream Player" +msgstr "Reprodutor de Fluxo de Comandos" + +#: src/gui/guiConst.cpp:615 +msgid "User Presets" +msgstr "" + +#: src/gui/guiConst.cpp:617 +msgid "Collapse/expand current window" +msgstr "Contrair/expandir janela atual" + +#: src/gui/guiConst.cpp:618 +msgid "Close current window" +msgstr "Fechar janela atual" + +#: src/gui/guiConst.cpp:621 +msgid "---Pattern" +msgstr "---Sequência" + +#: src/gui/guiConst.cpp:622 +msgid "Transpose (+1)" +msgstr "Transpor (+1)" + +#: src/gui/guiConst.cpp:623 +msgid "Transpose (-1)" +msgstr "Transpor (-1)" + +#: src/gui/guiConst.cpp:624 +msgid "Transpose (+1 octave)" +msgstr "Transpor (+1 oitava)" + +#: src/gui/guiConst.cpp:625 +msgid "Transpose (-1 octave)" +msgstr "Transpor (-1 oitava)" + +#: src/gui/guiConst.cpp:626 +msgid "Increase values (+1)" +msgstr "Alterar valores (+1)" + +#: src/gui/guiConst.cpp:627 +msgid "Increase values (-1)" +msgstr "Alterar valores (-1)" + +#: src/gui/guiConst.cpp:628 +msgid "Increase values (+16)" +msgstr "Alterar valores (+16)" + +#: src/gui/guiConst.cpp:629 +msgid "Increase values (-16)" +msgstr "Alterar valores (-16)" + +#: src/gui/guiConst.cpp:630 +msgid "Select all" +msgstr "Selecionar tudo" + +#: src/gui/guiConst.cpp:631 +msgid "Cut" +msgstr "Recortar" + +#: src/gui/guiConst.cpp:632 +msgid "Copy" +msgstr "Copiar" + +#: src/gui/guiConst.cpp:633 +msgid "Paste" +msgstr "Colar" + +#: src/gui/guiConst.cpp:634 +msgid "Paste Mix (foreground)" +msgstr "Colar e Mesclar (pela frente)" + +#: src/gui/guiConst.cpp:635 +msgid "Paste Mix (background)" +msgstr "Colar e Mesclar (por trás)" + +#: src/gui/guiConst.cpp:636 +msgid "Paste Flood" +msgstr "Colar e Repetir" + +#: src/gui/guiConst.cpp:637 +msgid "Paste Overflow" +msgstr "Colar Através das Bordas" + +#: src/gui/guiConst.cpp:638 +msgid "Move cursor up" +msgstr "Mover cursor para cima" + +#: src/gui/guiConst.cpp:639 +msgid "Move cursor down" +msgstr "Mover cursor para baixo" + +#: src/gui/guiConst.cpp:640 +msgid "Move cursor left" +msgstr "Mover cursor para a esquerda" + +#: src/gui/guiConst.cpp:641 +msgid "Move cursor right" +msgstr "Mover cursor para a direita" + +#: src/gui/guiConst.cpp:642 +msgid "Move cursor up by one (override Edit Step)" +msgstr "Mover cursor uma célula para cima (ignora o Passo de Edição)" + +#: src/gui/guiConst.cpp:643 +msgid "Move cursor down by one (override Edit Step)" +msgstr "Mover cursor uma célula para baixo (ignora o Passo de Edição)" + +#: src/gui/guiConst.cpp:644 +msgid "Move cursor to previous channel" +msgstr "Mover cursor para o canal anterior" + +#: src/gui/guiConst.cpp:645 +msgid "Move cursor to next channel" +msgstr "Mover cursor para o próximo canal" + +#: src/gui/guiConst.cpp:646 +msgid "Move cursor to next channel (overflow)" +msgstr "Mover cursor para o próximo canal (através da borda)" + +#: src/gui/guiConst.cpp:647 +msgid "Move cursor to previous channel (overflow)" +msgstr "Mover cursor para o canal anterior (através da borda)" + +#: src/gui/guiConst.cpp:648 +msgid "Move cursor to beginning of pattern" +msgstr "Mover cursor para o começo da sequência" + +#: src/gui/guiConst.cpp:649 +msgid "Move cursor to end of pattern" +msgstr "Mover cursor para o fim da sequência" + +#: src/gui/guiConst.cpp:650 +msgid "Move cursor up (coarse)" +msgstr "Mover cursor para cima (grosso)" + +#: src/gui/guiConst.cpp:651 +msgid "Move cursor down (coarse)" +msgstr "Mover cursor para baixo (grosso)" + +#: src/gui/guiConst.cpp:652 +msgid "Expand selection upwards" +msgstr "Expandir seleção para cima" + +#: src/gui/guiConst.cpp:653 +msgid "Expand selection downwards" +msgstr "Expandir seleção para baixo" + +#: src/gui/guiConst.cpp:654 +msgid "Expand selection to the left" +msgstr "Expandir seleção para a esquerda" + +#: src/gui/guiConst.cpp:655 +msgid "Expand selection to the right" +msgstr "Expandir seleção para a direita" + +#: src/gui/guiConst.cpp:656 +msgid "Expand selection upwards by one (override Edit Step)" +msgstr "Expandir seleção uma célula para cima (ignora o Passo de Edição)" + +#: src/gui/guiConst.cpp:657 +msgid "Expand selection downwards by one (override Edit Step)" +msgstr "Expandir seleção uma célula para baixo (ignora o Passo de Edição)" + +#: src/gui/guiConst.cpp:658 +msgid "Expand selection to beginning of pattern" +msgstr "Expandir seleção para o começo da sequência" + +#: src/gui/guiConst.cpp:659 +msgid "Expand selection to end of pattern" +msgstr "Expandir seleção para o fim da sequência" + +#: src/gui/guiConst.cpp:660 +msgid "Expand selection upwards (coarse)" +msgstr "Expandir seleção para cima (grosso)" + +#: src/gui/guiConst.cpp:661 +msgid "Expand selection downwards (coarse)" +msgstr "Expandir seleção para baixo (grosso)" + +#: src/gui/guiConst.cpp:662 +msgid "Move selection up" +msgstr "" + +#: src/gui/guiConst.cpp:663 +msgid "Move selection down" +msgstr "" + +#: src/gui/guiConst.cpp:664 +msgid "Move selection to previous channel" +msgstr "" + +#: src/gui/guiConst.cpp:665 +msgid "Move selection to next channel" +msgstr "" + +#: src/gui/guiConst.cpp:667 +msgid "Pull delete" +msgstr "Excluir e puxar" + +#: src/gui/guiConst.cpp:668 +msgid "Insert" +msgstr "Inserir" + +#: src/gui/guiConst.cpp:669 +msgid "Mute channel at cursor" +msgstr "Silenciar canal sob o cursor" + +#: src/gui/guiConst.cpp:670 +msgid "Solo channel at cursor" +msgstr "Isolar canal sob o cursor" + +#: src/gui/guiConst.cpp:671 +msgid "Unmute all channels" +msgstr "Reativar todos os canais" + +#: src/gui/guiConst.cpp:672 +msgid "Go to next order" +msgstr "Ir para a próxima ordem" + +#: src/gui/guiConst.cpp:673 +msgid "Go to previous order" +msgstr "Ir para a ordem anterior" + +#: src/gui/guiConst.cpp:674 +msgid "Collapse channel at cursor" +msgstr "Minimizar canal sob o cursor" + +#: src/gui/guiConst.cpp:675 +msgid "Increase effect columns" +msgstr "Aumentar número de colunas de efeito" + +#: src/gui/guiConst.cpp:676 +msgid "Decrease effect columns" +msgstr "Diminuir número de colunas de efeito" + +#: src/gui/guiConst.cpp:677 +msgid "Interpolate" +msgstr "Interpolar" + +#: src/gui/guiConst.cpp:678 src/gui/insEdit.cpp:530 +msgid "Fade" +msgstr "Degradê" + +#: src/gui/guiConst.cpp:679 +msgid "Invert values" +msgstr "Inverter valores" + +#: src/gui/guiConst.cpp:680 +msgid "Flip selection" +msgstr "Reverter seleção" + +#: src/gui/guiConst.cpp:681 +msgid "Collapse rows" +msgstr "Contrair linhas" + +#: src/gui/guiConst.cpp:682 +msgid "Expand rows" +msgstr "Expandir linhas" + +#: src/gui/guiConst.cpp:683 +msgid "Collapse pattern" +msgstr "Contrair sequência" + +#: src/gui/guiConst.cpp:684 +msgid "Expand pattern" +msgstr "Expandir sequência" + +#: src/gui/guiConst.cpp:685 +msgid "Collapse song" +msgstr "Contrair música" + +#: src/gui/guiConst.cpp:686 +msgid "Expand song" +msgstr "Expandir música" + +#: src/gui/guiConst.cpp:687 +msgid "Set note input latch" +msgstr "Limpar máscara de entrada de nota" + +#: src/gui/guiConst.cpp:688 +msgid "Change mobile scroll mode" +msgstr "Alterar modo de rolagem para dispositivos móveis" + +#: src/gui/guiConst.cpp:689 +msgid "Clear note input latch" +msgstr "Redefinir máscara de entrada de nota" + +#: src/gui/guiConst.cpp:692 +msgid "---Instrument list" +msgstr "---Lista de instrumentos" + +#: src/gui/guiConst.cpp:693 +msgid "Add instrument" +msgstr "Adicionar instrumento" + +#: src/gui/guiConst.cpp:694 +msgid "Duplicate instrument" +msgstr "Duplicar instrumento" + +#: src/gui/guiConst.cpp:695 +msgid "Open instrument" +msgstr "Abrir instrumento" + +#: src/gui/guiConst.cpp:696 +msgid "Open instrument (replace current)" +msgstr "Abrir instrumento (substituir o atual)" + +#: src/gui/guiConst.cpp:697 +msgid "Save instrument" +msgstr "Salvar instrumento" + +#: src/gui/guiConst.cpp:698 +msgid "Save instrument (.dmp)" +msgstr "" + +#: src/gui/guiConst.cpp:699 +msgid "Move instrument up in list" +msgstr "Mover instrumento para cima na lista" + +#: src/gui/guiConst.cpp:700 +msgid "Move instrument down in list" +msgstr "Mover instrumento para baixo na lista" + +#: src/gui/guiConst.cpp:701 +msgid "Delete instrument" +msgstr "Excluir instrumento" + +#: src/gui/guiConst.cpp:702 +msgid "Edit instrument" +msgstr "Editar instrumento" + +#: src/gui/guiConst.cpp:703 +msgid "Instrument cursor up" +msgstr "Mover cursor de instrumentos para cima" + +#: src/gui/guiConst.cpp:704 +msgid "Instrument cursor down" +msgstr "Mover cursor de instrumentos para baixo" + +#: src/gui/guiConst.cpp:705 +msgid "Instruments: toggle folders/standard view" +msgstr "Instrumentos: Alternar entre pastas e visão padrão" + +#: src/gui/guiConst.cpp:708 +msgid "---Wavetable list" +msgstr "---Lista de wavetables" + +#: src/gui/guiConst.cpp:709 +msgid "Add wavetable" +msgstr "Adicionar wavetable" + +#: src/gui/guiConst.cpp:710 +msgid "Duplicate wavetable" +msgstr "Duplicar wavetable" + +#: src/gui/guiConst.cpp:711 +msgid "Open wavetable" +msgstr "Abrir wavetable" + +#: src/gui/guiConst.cpp:712 +msgid "Open wavetable (replace current)" +msgstr "Abrir wavetable (substituir a atual)" + +#: src/gui/guiConst.cpp:713 +msgid "Save wavetable" +msgstr "Salvar wavetable" + +#: src/gui/guiConst.cpp:714 +msgid "Save wavetable (.dmw)" +msgstr "Salvar wavetable (.dmw)" + +#: src/gui/guiConst.cpp:715 +msgid "Save wavetable (raw)" +msgstr "Salvar wavetable (formato raw)" + +#: src/gui/guiConst.cpp:716 +msgid "Move wavetable up in list" +msgstr "Mover wavetable para cima na lista" + +#: src/gui/guiConst.cpp:717 +msgid "Move wavetable down in list" +msgstr "Mover wavetable para baixo na lista" + +#: src/gui/guiConst.cpp:718 +msgid "Delete wavetable" +msgstr "Excluir wavetable" + +#: src/gui/guiConst.cpp:719 +msgid "Edit wavetable" +msgstr "Editar wavetable" + +#: src/gui/guiConst.cpp:720 +msgid "Wavetable cursor up" +msgstr "Mover cursor de wavetables para cima" + +#: src/gui/guiConst.cpp:721 +msgid "Wavetable cursor down" +msgstr "Mover cursor de wavetables para baixo" + +#: src/gui/guiConst.cpp:722 +msgid "Wavetables: toggle folders/standard view" +msgstr "Wavetables: Alternar entre pastas e visão padrão" + +#: src/gui/guiConst.cpp:725 +msgid "---Sample list" +msgstr "---Lista de samples" + +#: src/gui/guiConst.cpp:726 +msgid "Add sample" +msgstr "Adicionar sample" + +#: src/gui/guiConst.cpp:727 +msgid "Duplicate sample" +msgstr "Duplicar sample" + +#: src/gui/guiConst.cpp:728 +msgid "Open sample" +msgstr "Abrir sample" + +#: src/gui/guiConst.cpp:729 +msgid "Open sample (replace current)" +msgstr "Abrir sample (substituir a atual)" + +#: src/gui/guiConst.cpp:730 +msgid "Import raw sample data" +msgstr "Importar dados de sample em formato raw" + +#: src/gui/guiConst.cpp:731 +msgid "Import raw sample data (replace current)" +msgstr "Importar dados de sample em formato raw (substituir a atual)" + +#: src/gui/guiConst.cpp:732 +msgid "Save sample" +msgstr "Salvar sample" + +#: src/gui/guiConst.cpp:733 +msgid "Save sample (raw)" +msgstr "Salvar sample (formato raw)" + +#: src/gui/guiConst.cpp:734 +msgid "Move sample up in list" +msgstr "" + +#: src/gui/guiConst.cpp:735 +msgid "Move sample down in list" +msgstr "" + +#: src/gui/guiConst.cpp:736 +msgid "Delete sample" +msgstr "Excluir sample" + +#: src/gui/guiConst.cpp:737 +msgid "Edit sample" +msgstr "Editar sample" + +#: src/gui/guiConst.cpp:738 +msgid "Sample cursor up" +msgstr "Mover cursor de samples para cima" + +#: src/gui/guiConst.cpp:739 +msgid "Sample cursor down" +msgstr "Mover cursor de samples para baixo" + +#: src/gui/guiConst.cpp:741 src/gui/sampleEdit.cpp:1339 +msgid "Stop sample preview" +msgstr "Interromper previsão de sample" + +#: src/gui/guiConst.cpp:742 +msgid "Samples: Toggle folders/standard view" +msgstr "" + +#: src/gui/guiConst.cpp:743 +msgid "Samples: Make me a drum kit" +msgstr "" + +#: src/gui/guiConst.cpp:746 +msgid "---Sample editor" +msgstr "---Editor de sample" + +#: src/gui/guiConst.cpp:747 +msgid "Sample editor mode: Select" +msgstr "Modo de edição: Selecionar" + +#: src/gui/guiConst.cpp:748 +msgid "Sample editor mode: Draw" +msgstr "Modo de edição: Desenhar" + +#: src/gui/guiConst.cpp:749 +msgid "Sample editor: Cut" +msgstr "Editor de sample: Recortar" + +#: src/gui/guiConst.cpp:750 +msgid "Sample editor: Copy" +msgstr "Editor de sample: Copiar" + +#: src/gui/guiConst.cpp:751 +msgid "Sample editor: Paste" +msgstr "Editor de sample: Colar" + +#: src/gui/guiConst.cpp:752 +msgid "Sample editor: Paste replace" +msgstr "Editor de sample: Colar e substituir" + +#: src/gui/guiConst.cpp:753 +msgid "Sample editor: Paste mix" +msgstr "Editor de sample: Colar e mesclar" + +#: src/gui/guiConst.cpp:754 +msgid "Sample editor: Select all" +msgstr "Editor de sample: Selecionar tudo" + +#: src/gui/guiConst.cpp:755 +msgid "Sample editor: Resize" +msgstr "Editor de sample: Redimensionar" + +#: src/gui/guiConst.cpp:756 +msgid "Sample editor: Resample" +msgstr "Editor de sample: Reamostrar" + +#: src/gui/guiConst.cpp:757 +msgid "Sample editor: Amplify" +msgstr "Editor de sample: Amplificar" + +#: src/gui/guiConst.cpp:758 +msgid "Sample editor: Normalize" +msgstr "Editor de sample: Normalizar" + +#: src/gui/guiConst.cpp:759 +msgid "Sample editor: Fade in" +msgstr "Editor de sample: Fade in" + +#: src/gui/guiConst.cpp:760 +msgid "Sample editor: Fade out" +msgstr "Editor de sample: Fade out" + +#: src/gui/guiConst.cpp:761 +msgid "Sample editor: Apply silence" +msgstr "Editor de sample: Aplicar silêncio" + +#: src/gui/guiConst.cpp:762 +msgid "Sample editor: Insert silence" +msgstr "Editor de sample: Inserir silêncio" + +#: src/gui/guiConst.cpp:763 +msgid "Sample editor: Delete" +msgstr "Editor de sample: Excluir" + +#: src/gui/guiConst.cpp:764 +msgid "Sample editor: Trim" +msgstr "Editor de sample: Cortar" + +#: src/gui/guiConst.cpp:765 +msgid "Sample editor: Reverse" +msgstr "Editor de sample: Reverter" + +#: src/gui/guiConst.cpp:766 +msgid "Sample editor: Invert" +msgstr "Editor de sample: Inverter" + +#: src/gui/guiConst.cpp:767 +msgid "Sample editor: Signed/unsigned exchange" +msgstr "Editor de sample: Alternar sinalização (signed/unsigned)" + +#: src/gui/guiConst.cpp:768 +msgid "Sample editor: Apply filter" +msgstr "Editor de sample: Aplicar filtro" + +#: src/gui/guiConst.cpp:769 +msgid "Sample editor: Crossfade loop points" +msgstr "Editor de sample: Aplicar crossfade nos pontos de loop" + +#: src/gui/guiConst.cpp:770 +msgid "Sample editor: Preview sample" +msgstr "Editor de sample: Prever sample" + +#: src/gui/guiConst.cpp:771 +msgid "Sample editor: Stop sample preview" +msgstr "Editor de sample: Interromper previsão da sample" + +#: src/gui/guiConst.cpp:772 +msgid "Sample editor: Zoom in" +msgstr "Editor de sample: Aumentar zoom" + +#: src/gui/guiConst.cpp:773 +msgid "Sample editor: Zoom out" +msgstr "Editor de sample: Diminuir zoom" + +#: src/gui/guiConst.cpp:774 +msgid "Sample editor: Toggle auto-zoom" +msgstr "Editor de sample: Alternar zoom automático" + +#: src/gui/guiConst.cpp:775 +msgid "Sample editor: Create instrument from sample" +msgstr "Editor de sample: Criar instrumento a partir da sample" + +#: src/gui/guiConst.cpp:776 +msgid "Sample editor: Set loop to selection" +msgstr "Editor de sample: Definir loop a partir da seleção" + +#: src/gui/guiConst.cpp:777 +msgid "Sample editor: Create wavetable from selection" +msgstr "Editor de sample: Criar wavetable a partir da seleção" + +#: src/gui/guiConst.cpp:780 +msgid "---Orders" +msgstr "---Ordens" + +#: src/gui/guiConst.cpp:781 +msgid "Previous order" +msgstr "Ordem anterior" + +#: src/gui/guiConst.cpp:782 +msgid "Next order" +msgstr "Próxima ordem" + +#: src/gui/guiConst.cpp:783 +msgid "Order cursor left" +msgstr "Mover cursor de ordem para a esquerda" + +#: src/gui/guiConst.cpp:784 +msgid "Order cursor right" +msgstr "Mover cursor de ordem para a direita" + +#: src/gui/guiConst.cpp:785 +msgid "Increase order value" +msgstr "Aumentar valor da ordem" + +#: src/gui/guiConst.cpp:786 +msgid "Decrease order value" +msgstr "Diminuir valor da ordem" + +#: src/gui/guiConst.cpp:787 +msgid "Switch order edit mode" +msgstr "Alternar modo de edição da ordem" + +#: src/gui/guiConst.cpp:788 +msgid "Order: toggle alter entire row" +msgstr "Ordem: alternar modo de alteração na linha inteira" + +#: src/gui/guiConst.cpp:789 +msgid "Add order" +msgstr "Adicionar ordem" + +#: src/gui/guiConst.cpp:790 +msgid "Duplicate order" +msgstr "Duplicar ordem" + +#: src/gui/guiConst.cpp:791 +msgid "Deep clone order" +msgstr "Fazer clone profundo da ordem" + +#: src/gui/guiConst.cpp:792 +msgid "Copy current order to end of song" +msgstr "Copiar ordem atual para o final da música" + +#: src/gui/guiConst.cpp:793 +msgid "Deep clone current order to end of song" +msgstr "Fazer clone profundo da ordem ao final da música" + +#: src/gui/guiConst.cpp:797 +msgid "Replay order" +msgstr "Reiniciar reprodução da ordem atual" + +#: src/gui/guiConst.cpp:1392 +msgid "All chips" +msgstr "Todos os chips" + +#: src/gui/guiConst.cpp:1396 src/gui/insEdit.cpp:6954 src/gui/insEdit.cpp:7204 +#: src/gui/insEdit.cpp:7458 src/gui/insEdit.cpp:7480 +msgid "Special" +msgstr "Especial" + +#: src/gui/piano.cpp:103 +msgid "Options" +msgstr "Opções" + +#: src/gui/piano.cpp:106 +msgid "Key layout:" +msgstr "Leiaute das teclas:" + +#: src/gui/piano.cpp:111 +msgid "Standard" +msgstr "Padrão" + +#: src/gui/piano.cpp:114 +msgid "Continuous" +msgstr "Contínuo" + +#: src/gui/piano.cpp:118 +msgid "Value input pad:" +msgstr "Teclado numérico:" + +#: src/gui/piano.cpp:120 +msgid "Disabled" +msgstr "Desabilitado" + +#: src/gui/piano.cpp:123 +msgid "Replace piano" +msgstr "Substituir piano" + +#: src/gui/piano.cpp:126 +msgid "Split (automatic)" +msgstr "Dividido (automático)" + +#: src/gui/piano.cpp:129 +msgid "Split (always visible)" +msgstr "Dividido (sempre visível)" + +#: src/gui/piano.cpp:133 +msgid "Share play/edit offset/range" +msgstr "Compartilhar intervalo/deslocamento entre modo de edição e reprodução" + +#: src/gui/piano.cpp:134 +msgid "Read-only (can't input notes)" +msgstr "Somente leitura (não permite tocar notas)" + +#: src/gui/waveEdit.cpp:30 src/gui/waveEdit.cpp:192 src/gui/insEdit.cpp:177 +#: src/gui/insEdit.cpp:188 src/gui/insEdit.cpp:199 +msgid "Sine" +msgstr "Senoide" + +#: src/gui/waveEdit.cpp:32 src/gui/waveEdit.cpp:202 src/gui/insEdit.cpp:325 +#: src/gui/insEdit.cpp:654 +msgid "Saw" +msgstr "Dente de serra" + +#: src/gui/waveEdit.cpp:39 +msgid "Cosine" +msgstr "Cosseno" + +#: src/gui/waveEdit.cpp:193 +msgid "Rect. Sine" +msgstr "Seno Retif." + +#: src/gui/waveEdit.cpp:194 +msgid "Abs. Sine" +msgstr "Seno Abs." + +#: src/gui/waveEdit.cpp:195 +msgid "Quart. Sine" +msgstr "Seno 1/4" + +#: src/gui/waveEdit.cpp:196 +msgid "Squish. Sine" +msgstr "Seno Espr." + +#: src/gui/waveEdit.cpp:197 +msgid "Abs. Squish. Sine" +msgstr "Seno Abs. Espr." + +#: src/gui/waveEdit.cpp:200 +msgid "rectSquare" +msgstr "Serra Logarítm." + +#: src/gui/waveEdit.cpp:203 +msgid "Rect. Saw" +msgstr "Serra Retif." + +#: src/gui/waveEdit.cpp:204 +msgid "Abs. Saw" +msgstr "Serra Abs." + +#: src/gui/waveEdit.cpp:206 +msgid "Cubed Saw" +msgstr "Serra ao Cubo" + +#: src/gui/waveEdit.cpp:207 +msgid "Rect. Cubed Saw" +msgstr "Serra ao Cubo Retif." + +#: src/gui/waveEdit.cpp:208 +msgid "Abs. Cubed Saw" +msgstr "Serra ao Cubo Abs." + +#: src/gui/waveEdit.cpp:210 +msgid "Cubed Sine" +msgstr "Seno ao Cubo" + +#: src/gui/waveEdit.cpp:211 +msgid "Rect. Cubed Sine" +msgstr "Seno ao Cubo Retif." + +#: src/gui/waveEdit.cpp:212 +msgid "Abs. Cubed Sine" +msgstr "Seno ao Cubo Abs." + +#: src/gui/waveEdit.cpp:213 +msgid "Quart. Cubed Sine" +msgstr "Seno ao Cubo 1/4" + +#: src/gui/waveEdit.cpp:214 +msgid "Squish. Cubed Sine" +msgstr "Seno ao Cubo Espr." + +#: src/gui/waveEdit.cpp:215 +msgid "Squish. Abs. Cub. Sine" +msgstr "Seno Cubo Espr. Abs." + +#: src/gui/waveEdit.cpp:218 +msgid "Rect. Triangle" +msgstr "Triângulo Retif." + +#: src/gui/waveEdit.cpp:219 +msgid "Abs. Triangle" +msgstr "Triângulo Abs." + +#: src/gui/waveEdit.cpp:220 +msgid "Quart. Triangle" +msgstr "Triângulo 1/4" + +#: src/gui/waveEdit.cpp:221 +msgid "Squish. Triangle" +msgstr "Triângulo Espr." + +#: src/gui/waveEdit.cpp:222 +msgid "Abs. Squish. Triangle" +msgstr "Triângulo Abs. Espr." + +#: src/gui/waveEdit.cpp:224 +msgid "Cubed Triangle" +msgstr "Triângulo ao Cubo" + +#: src/gui/waveEdit.cpp:225 +msgid "Rect. Cubed Triangle" +msgstr "Triângulo ao Cubo Retif." + +#: src/gui/waveEdit.cpp:226 +msgid "Abs. Cubed Triangle" +msgstr "Triângulo ao Cubo Abs." + +#: src/gui/waveEdit.cpp:227 +msgid "Quart. Cubed Triangle" +msgstr "Triângulo ao Cubo 1/4" + +#: src/gui/waveEdit.cpp:228 +msgid "Squish. Cubed Triangle" +msgstr "Triângulo ao Cubo Espr." + +#: src/gui/waveEdit.cpp:229 +msgid "Squish. Abs. Cub. Triangle" +msgstr "Triângulo Cubo Espr. Abs." + +#: src/gui/waveEdit.cpp:412 src/gui/waveEdit.cpp:413 +msgid "no wavetable selected" +msgstr "nenhuma wavetable selecionada" + +#: src/gui/waveEdit.cpp:424 src/gui/sampleEdit.cpp:111 src/gui/insEdit.cpp:5223 +msgid "select one..." +msgstr "selecione um..." + +#: src/gui/waveEdit.cpp:432 src/gui/waveEdit.cpp:439 src/gui/sampleEdit.cpp:119 +#: src/gui/sampleEdit.cpp:126 src/gui/insEdit.cpp:5236 src/gui/insEdit.cpp:5243 +msgid "or" +msgstr "ou" + +#: src/gui/waveEdit.cpp:441 src/gui/sampleEdit.cpp:128 src/gui/insEdit.cpp:5245 +msgid "Create New" +msgstr "Criar um novo" + +#: src/gui/waveEdit.cpp:487 +msgid "Steps" +msgstr "Degraus" + +#: src/gui/waveEdit.cpp:491 +msgid "Lines" +msgstr "Linhas" + +#: src/gui/waveEdit.cpp:496 src/gui/insEdit.cpp:2687 +msgid "Width" +msgstr "Largura" + +#: src/gui/waveEdit.cpp:498 +msgid "" +"use a width of:\n" +"- any on Amiga/N163\n" +"- 32 on Game Boy, PC Engine, SCC, Konami Bubble System, Namco WSG, Virtual " +"Boy and WonderSwan\n" +"- 64 on FDS\n" +"- 128 on X1-010\n" +"any other widths will be scaled during playback." +msgstr "" + +#: src/gui/waveEdit.cpp:510 +msgid "Height" +msgstr "Altura" + +#: src/gui/waveEdit.cpp:512 +msgid "" +"use a height of:\n" +"- 16 for Game Boy, WonderSwan, Namco WSG, Konami Bubble System, X1-010 " +"Envelope shape and N163\n" +"- 32 for PC Engine\n" +"- 64 for FDS and Virtual Boy\n" +"- 256 for X1-010 and SCC\n" +"any other heights will be scaled during playback." +msgstr "" + +#: src/gui/waveEdit.cpp:578 +msgid "Shapes" +msgstr "Formas" + +#: src/gui/waveEdit.cpp:597 src/gui/insEdit.cpp:5879 src/gui/insEdit.cpp:6922 +#: src/gui/insEdit.cpp:6948 src/gui/insEdit.cpp:7008 src/gui/insEdit.cpp:7048 +#: src/gui/insEdit.cpp:7150 src/gui/insEdit.cpp:7436 src/gui/insEdit.cpp:7472 +msgid "Duty" +msgstr "Ciclo de trabalho" + +#: src/gui/waveEdit.cpp:607 +msgid "Exponent" +msgstr "Exponente" + +#: src/gui/waveEdit.cpp:617 +msgid "XOR Point" +msgstr "Ponto de XOR" + +#: src/gui/waveEdit.cpp:627 +msgid "Amplitude/Phase" +msgstr "Amplitude/Fase" + +#: src/gui/waveEdit.cpp:679 src/gui/waveEdit.cpp:723 src/gui/waveEdit.cpp:728 +msgid "Op" +msgstr "Op" + +#: src/gui/waveEdit.cpp:683 +msgid "Mult" +msgstr "Mult" + +#: src/gui/waveEdit.cpp:685 +msgid "FB" +msgstr "FB" + +#: src/gui/waveEdit.cpp:749 src/gui/waveEdit.cpp:750 +msgid "Connection Diagram" +msgstr "Diagrama de Conexão" + +#: src/gui/waveEdit.cpp:765 +msgid "Out" +msgstr "Saída" + +#: src/gui/waveEdit.cpp:872 +msgid "WaveTools" +msgstr "Ferramentas de Onda" + +#: src/gui/waveEdit.cpp:890 +msgid "Scale X" +msgstr "Escala X" + +#: src/gui/waveEdit.cpp:896 +msgid "wavetable longer than 256 samples!" +msgstr "wavetable mais longa que 256 amostras!" + +#: src/gui/waveEdit.cpp:960 +msgid "Scale Y" +msgstr "Escala Y" + +#: src/gui/waveEdit.cpp:978 +msgid "Offset X" +msgstr "Deslocamento X" + +#: src/gui/waveEdit.cpp:1000 +msgid "Offset Y" +msgstr "Deslocamento Y" + +#: src/gui/waveEdit.cpp:1017 +msgid "Smooth" +msgstr "Suavizar" + +#: src/gui/waveEdit.cpp:1045 src/gui/sampleEdit.cpp:996 +msgid "Amplify" +msgstr "Amplificar" + +#: src/gui/waveEdit.cpp:1063 src/gui/sampleEdit.cpp:1046 +msgid "Normalize" +msgstr "Normalizar" + +#: src/gui/waveEdit.cpp:1105 src/gui/sampleEdit.cpp:1121 +msgid "Reverse" +msgstr "Reverter" + +#: src/gui/waveEdit.cpp:1117 +msgid "Half" +msgstr "Cortar pela metade" + +#: src/gui/waveEdit.cpp:1127 +msgid "Double" +msgstr "Dobrar" + +#: src/gui/waveEdit.cpp:1137 +msgid "Convert Signed/Unsigned" +msgstr "Converter sinalização (signed/unsigned)" + +#: src/gui/waveEdit.cpp:1167 +msgid "Dec" +msgstr "Dec" + +#: src/gui/waveEdit.cpp:1171 src/gui/csPlayer.cpp:247 +msgid "Hex" +msgstr "Hex" + +#: src/gui/waveEdit.cpp:1179 +msgid "Signed/Unsigned" +msgstr "Sinalização (signed/unsigned)" + +#: src/gui/sampleEdit.cpp:65 +#, c-format +msgid "%s: maximum sample rate is %d" +msgstr "%s: a taxa de amostragem máxima é %d" + +#: src/gui/sampleEdit.cpp:72 +#, c-format +msgid "%s: minimum sample rate is %d" +msgstr "%s: a taxa de amostragem mínima é %d" + +#: src/gui/sampleEdit.cpp:79 +#, c-format +msgid "%s: sample rate must be %d" +msgstr "%s: a taxa de amostragem deve ser %d" + +#: src/gui/sampleEdit.cpp:99 src/gui/sampleEdit.cpp:100 +msgid "no sample selected" +msgstr "nenhuma sample selecionada" + +#: src/gui/sampleEdit.cpp:229 +#, c-format +msgid "SNES: loop start must be a multiple of 16 (try with %d)" +msgstr "SNES: início do loop precisa ser múltiplo de 16 (tente com %d)" + +#: src/gui/sampleEdit.cpp:235 +#, c-format +msgid "SNES: loop end must be a multiple of 16 (try with %d)" +msgstr "SNES: fim do loop precisa ser múltiplo de 16 (tente com %d)" + +#: src/gui/sampleEdit.cpp:240 +msgid "SNES: sample length will be padded to multiple of 16" +msgstr "SNES: tamanho da sample precisa ser preenchida até um múltiplo de 16" + +#: src/gui/sampleEdit.cpp:249 +msgid "QSound: loop cannot be longer than 32767 samples" +msgstr "QSound: loop não pode ser mais longo que 32767" + +#: src/gui/sampleEdit.cpp:259 +msgid "NES: loop point ignored on DPCM (may only loop entire sample)" +msgstr "" +"NES: o ponto de repetição (loop) é ignorado no DPCM (só é possível repetir a " +"sample inteira)" + +#: src/gui/sampleEdit.cpp:263 +msgid "NES: maximum DPCM sample length is 32648" +msgstr "NES: o tamanho máximo de uma sample DPCM é 32648" + +#: src/gui/sampleEdit.cpp:268 +msgid "X1-010: samples can't loop" +msgstr "X1-010: não é possível repetir (loop) samples" + +#: src/gui/sampleEdit.cpp:271 +msgid "X1-010: maximum sample length is 131072" +msgstr "X1-010: o tamanho máximo de uma sample é 131072" + +#: src/gui/sampleEdit.cpp:276 +msgid "GA20: samples can't loop" +msgstr "GA20: samples não podem repetir (loop)" + +#: src/gui/sampleEdit.cpp:287 +msgid "YM2608: loop point ignored on ADPCM (may only loop entire sample)" +msgstr "" +"YM2608: o ponto de repetição (loop) é ignorado no ADPCM (só é possível " +"repetir a sample inteira)" + +#: src/gui/sampleEdit.cpp:290 +msgid "YM2608: sample length will be padded to multiple of 512" +msgstr "YM2608: o comprimento da sample será preenchida até um múltiplo de 512" + +#: src/gui/sampleEdit.cpp:300 +msgid "YM2610: ADPCM-A samples can't loop" +msgstr "YM2610: samples ADPCM-A não podem repetir (loop)" + +#: src/gui/sampleEdit.cpp:302 +msgid "YM2610: loop point ignored on ADPCM-B (may only loop entire sample)" +msgstr "" +"YM2610: o ponto de repetição (loop) é ignorado no ADPCM-B (só é possível " +"repetir a sample inteira)" + +#: src/gui/sampleEdit.cpp:305 +msgid "YM2610: sample length will be padded to multiple of 512" +msgstr "YM2610: o comprimento da sample será preenchida até um múltiplo de 512" + +#: src/gui/sampleEdit.cpp:309 +msgid "YM2610: maximum ADPCM-A sample length is 2097152" +msgstr "YM2610: o comprimento máximo de uma sample ADPCM-A é 2097152" + +#: src/gui/sampleEdit.cpp:318 +msgid "Y8950: loop point ignored on ADPCM (may only loop entire sample)" +msgstr "" +"Y8950: o ponto de repetição (loop) é ignorado no ADPCM (só é possível " +"repetir a sample inteira)" + +#: src/gui/sampleEdit.cpp:321 +msgid "Y8950: sample length will be padded to multiple of 512" +msgstr "Y8950: o comprimento da sample será preenchida até um múltiplo de 512" + +#: src/gui/sampleEdit.cpp:328 +msgid "Amiga: loop start must be a multiple of 2" +msgstr "Amiga: o início do loop precisa ser um múltiplo de 2" + +#: src/gui/sampleEdit.cpp:331 +msgid "Amiga: loop end must be a multiple of 2" +msgstr "Amiga: o final do loop precisa ser um múltiplo de 2" + +#: src/gui/sampleEdit.cpp:335 +msgid "Amiga: maximum sample length is 131070" +msgstr "Amiga: o comprimento máximo da sample é 131070" + +#: src/gui/sampleEdit.cpp:344 +msgid "SegaPCM: maximum sample length is 65280" +msgstr "SegaPCM: o comprimento máximo da sample é 65280" + +#: src/gui/sampleEdit.cpp:353 +msgid "K053260: loop point ignored (may only loop entire sample)" +msgstr "" +"K053260: o ponto de repetição (loop) é ignorado (só é possível repetir a " +"sample inteira)" + +#: src/gui/sampleEdit.cpp:357 +msgid "K053260: maximum sample length is 65535" +msgstr "K053260: o comprimento máximo da sample é 65535" + +#: src/gui/sampleEdit.cpp:362 +msgid "C140: maximum sample length is 65535" +msgstr "C140: o comprimento máximo da sample é 65535" + +#: src/gui/sampleEdit.cpp:371 +msgid "C219: loop start must be a multiple of 2" +msgstr "C219: o início do loop precisa ser um múltiplo de 2" + +#: src/gui/sampleEdit.cpp:374 +msgid "C219: loop end must be a multiple of 2" +msgstr "C219: o final do loop precisa ser um múltiplo de 2" + +#: src/gui/sampleEdit.cpp:378 +msgid "C219: maximum sample length is 131072" +msgstr "C219: o comprimento máximo da sample é 131072" + +#: src/gui/sampleEdit.cpp:386 +msgid "MSM6295: samples can't loop" +msgstr "MSM6295: não é possível repetir (loop) samples" + +#: src/gui/sampleEdit.cpp:389 +msgid "MSM6295: maximum bankswitched sample length is 129024" +msgstr "MSM6295: o comprimento máximo da sample com bankswitching é 129024" + +#: src/gui/sampleEdit.cpp:395 +msgid "GBA DMA: loop start must be a multiple of 4" +msgstr "GBA DMA: o início do loop precisa ser um múltiplo de 4" + +#: src/gui/sampleEdit.cpp:398 +msgid "GBA DMA: loop length must be a multiple of 16" +msgstr "GBA DMA: o comprimento do loop precisa ser um múltiplo de 16" + +#: src/gui/sampleEdit.cpp:402 +msgid "GBA DMA: sample length will be padded to multiple of 16" +msgstr "GBA DMA: o comprimento da sample será preenchida até um múltiplo de 16" + +#: src/gui/sampleEdit.cpp:411 +msgid "ES5506: backward loop mode isn't supported" +msgstr "ES5506: modo de repetição (loop) reverso não é suportado" + +#: src/gui/sampleEdit.cpp:414 +msgid "" +"backward/ping-pong only supported in Generic PCM DAC\n" +"ping-pong also on ES5506" +msgstr "" +"reverso/pingue-pongue suportado somente no DAC PCM Genérico\n" +"pingue-pongue também suportado no ES5506" + +#: src/gui/sampleEdit.cpp:444 +msgid "Info" +msgstr "Informações" + +#: src/gui/sampleEdit.cpp:447 src/gui/sampleEdit.cpp:933 +msgid "Rate" +msgstr "Taxa" + +#: src/gui/sampleEdit.cpp:453 +msgid "Compat Rate" +msgstr "Taxa de Compatibilidade" + +#: src/gui/sampleEdit.cpp:457 +msgid "" +"used in DefleMask-compatible sample mode (17xx), in where samples are mapped " +"to an octave." +msgstr "" +"usado no modo de sample compatível com Deflemask (17xx), em que samples são " +"mapeadas a uma oitava." + +#: src/gui/sampleEdit.cpp:463 +#, c-format +msgid "Loop (length: %d)##Loop" +msgstr "Loop (comprimento: %d)" + +#: src/gui/sampleEdit.cpp:463 src/gui/insEdit.cpp:544 src/gui/insEdit.cpp:554 +#: src/gui/insEdit.cpp:605 src/gui/insEdit.cpp:6017 +msgid "Loop" +msgstr "Loop (repetição)" + +#: src/gui/sampleEdit.cpp:487 src/gui/sampleEdit.cpp:716 +#: src/gui/sampleEdit.cpp:752 +msgid "changing the loop in a BRR sample may result in glitches!" +msgstr "alterar o loop em uma sample BRR pode resultar em falhas!" + +#: src/gui/sampleEdit.cpp:529 +msgid "BRR emphasis" +msgstr "Ênfase BRR" + +#: src/gui/sampleEdit.cpp:538 +msgid "" +"this is a BRR sample.\n" +"enabling this option will muffle it (only affects non-SNES chips)." +msgstr "" +"esta é uma sample BRR.\n" +"habilitar essa opção irá abafá-la (afeta somente chips além do SNES)." + +#: src/gui/sampleEdit.cpp:540 +msgid "" +"enable this option to slightly boost high frequencies\n" +"to compensate for the SNES' Gaussian filter's muffle." +msgstr "" +"habilite essa opção para enfatizar levemente as frequências altas\n" +"para compensar pelo abafamento do filtro gaussiano do SNES." + +#: src/gui/sampleEdit.cpp:546 +msgid "8-bit dither" +msgstr "Aplicar dither 8-bit" + +#: src/gui/sampleEdit.cpp:554 +msgid "dither the sample when used on a chip that only supports 8-bit samples." +msgstr "" +"Aplicar dithering 8-bit na sample quando utilizada em um chip que só suporta " +"samples 8-bit." + +#: src/gui/sampleEdit.cpp:695 src/gui/gui.cpp:2975 +msgid "Start" +msgstr "Início" + +#: src/gui/sampleEdit.cpp:731 src/gui/gui.cpp:2983 +msgid "End" +msgstr "Fim" + +#: src/gui/sampleEdit.cpp:841 +#, fuzzy, c-format +msgid "" +"%s\n" +"%d bytes free" +msgstr "" +"%s\n" +"%d byte disponível" + +#: src/gui/sampleEdit.cpp:843 +#, fuzzy, c-format +msgid "" +"%s (%s)\n" +"%d bytes free" +msgstr "" +"%s (%s)\n" +"%d byte disponível" + +#: src/gui/sampleEdit.cpp:847 +msgid "" +"\n" +"\n" +"not enough memory for this sample!" +msgstr "" +"\n" +"\n" +"não há memória suficiente para esta sample!" + +#: src/gui/sampleEdit.cpp:871 +msgid "Edit mode: Select" +msgstr "Modo de edição: Selecionar" + +#: src/gui/sampleEdit.cpp:880 +msgid "Edit mode: Draw" +msgstr "Modo de edição: Desenhar" + +#: src/gui/sampleEdit.cpp:891 src/gui/sampleEdit.cpp:902 +msgid "Resize" +msgstr "Redimensionar" + +#: src/gui/sampleEdit.cpp:906 +msgid "couldn't resize! make sure your sample is 8 or 16-bit." +msgstr "não pôde redimensionar! verifique se sua sample é 8 or 16-bit." + +#: src/gui/sampleEdit.cpp:926 src/gui/sampleEdit.cpp:957 +msgid "Resample" +msgstr "Reamostrar" + +#: src/gui/sampleEdit.cpp:951 +msgid "Factor" +msgstr "Razão" + +#: src/gui/sampleEdit.cpp:956 +msgid "Filter" +msgstr "Filtro" + +#: src/gui/sampleEdit.cpp:961 +msgid "couldn't resample! make sure your sample is 8 or 16-bit." +msgstr "não pôde redimensionar! verifique se sua sample é 8 or 16-bit." + +#: src/gui/sampleEdit.cpp:1010 src/gui/sampleEdit.cpp:1197 +#: src/gui/sampleEdit.cpp:1281 +msgid "Apply" +msgstr "Aplicar" + +#: src/gui/sampleEdit.cpp:1053 +msgid "Fade in" +msgstr "Fade in" + +#: src/gui/sampleEdit.cpp:1060 +msgid "Fade out" +msgstr "Fade out" + +#: src/gui/sampleEdit.cpp:1065 +msgid "Insert silence" +msgstr "Inserir silêncio" + +#: src/gui/sampleEdit.cpp:1076 +msgid "Go" +msgstr "Aplicar" + +#: src/gui/sampleEdit.cpp:1081 +msgid "couldn't insert! make sure your sample is 8 or 16-bit." +msgstr "não pôde inserir! verifique se sua sample é 8 or 16-bit." + +#: src/gui/sampleEdit.cpp:1098 +msgid "Apply silence" +msgstr "Aplicar silêncio" + +#: src/gui/sampleEdit.cpp:1112 +msgid "Trim" +msgstr "Cortar" + +#: src/gui/sampleEdit.cpp:1135 +msgid "Signed/unsigned exchange" +msgstr "Alternar sinalização (signed/unsigned)" + +#: src/gui/sampleEdit.cpp:1140 +msgid "Apply filter" +msgstr "Aplicar filtro" + +#: src/gui/sampleEdit.cpp:1151 +msgid "Cutoff:" +msgstr "Ponto de corte:" + +#: src/gui/sampleEdit.cpp:1161 src/gui/insEdit.cpp:5895 +#: src/gui/insEdit.cpp:5898 src/gui/insEdit.cpp:6953 src/gui/insEdit.cpp:7216 +#: src/gui/insEdit.cpp:7478 +msgid "Resonance" +msgstr "Ressonância" + +#: src/gui/sampleEdit.cpp:1167 src/gui/insEdit.cpp:6897 +msgid "Power" +msgstr "Potência" + +#: src/gui/sampleEdit.cpp:1181 +msgid "Low-pass" +msgstr "Passa-baixa" + +#: src/gui/sampleEdit.cpp:1186 +msgid "Band-pass" +msgstr "Passa-banda" + +#: src/gui/sampleEdit.cpp:1191 +msgid "High-pass" +msgstr "Passa-alta" + +#: src/gui/sampleEdit.cpp:1262 +msgid "Crossfade loop points" +msgstr "Aplicar crossfade nos pontos de loop" + +#: src/gui/sampleEdit.cpp:1271 +msgid "Number of samples" +msgstr "Número de amostras" + +#: src/gui/sampleEdit.cpp:1277 +msgid "Linear <-> Equal power" +msgstr "Linear <-> Equipotente" + +#: src/gui/sampleEdit.cpp:1283 +msgid "Crossfade: length would go out of bounds. Aborted..." +msgstr "" +"Crossfade: o comprimento estaria fora dos limites da sample. Abortado..." + +#: src/gui/sampleEdit.cpp:1286 +msgid "Crossfade: length would overflow loopStart. Try a smaller random value." +msgstr "" +"Crossfade: o comprimento ultrapassaria o começo do loop. Tente um valor " +"menor aleatório." + +#: src/gui/sampleEdit.cpp:1332 +msgid "Preview sample" +msgstr "Prever sample" + +#: src/gui/sampleEdit.cpp:1346 +msgid "Create instrument from sample" +msgstr "Criar instrumento a partir da sample" + +#: src/gui/sampleEdit.cpp:1747 +msgid "paste (replace)" +msgstr "colar (substituir)" + +#: src/gui/sampleEdit.cpp:1750 +msgid "paste (mix)" +msgstr "colar (mesclar)" + +#: src/gui/sampleEdit.cpp:1754 src/gui/gui.cpp:2769 +msgid "select all" +msgstr "selecionar tudo" + +#: src/gui/sampleEdit.cpp:1758 +msgid "set loop to selection" +msgstr "definir loop para seleção" + +#: src/gui/sampleEdit.cpp:1761 +msgid "create wavetable from selection" +msgstr "criar wavetable a partir da seleção" + +#: src/gui/sampleEdit.cpp:1767 +msgid "Draw" +msgstr "Desenhar" + +#: src/gui/sampleEdit.cpp:1767 +msgid "Select" +msgstr "Selecionar" + +#: src/gui/sampleEdit.cpp:1769 +#, c-format +msgid "%d samples, %d bytes" +msgstr "" + +#: src/gui/sampleEdit.cpp:1784 +#, fuzzy, c-format +msgid " (%d-%d: %d samples)" +msgstr " (%d-%d: %d sample)" + +#: src/gui/sampleEdit.cpp:1976 +msgid "Non-8/16-bit samples cannot be edited without prior conversion." +msgstr "" +"Samples que não são 8/16-bit não podem ser editadas sem ser convertidas " +"primeiro." + +#: src/gui/newSong.cpp:122 src/gui/newSong.cpp:123 +msgid "Choose a System!" +msgstr "Escolha um Sistema!" + +#: src/gui/newSong.cpp:179 +msgid "Categories" +msgstr "Categorias" + +#: src/gui/newSong.cpp:210 +msgid "no systems here yet!" +msgstr "nenhum sistema aqui ainda!" + +#: src/gui/newSong.cpp:212 +msgid "no results" +msgstr "nenhum resultado" + +#: src/gui/newSong.cpp:228 +msgid "I'm feeling lucky" +msgstr "Estou com sorte" + +#: src/gui/newSong.cpp:230 +msgid "no categories available! what in the world." +msgstr "nenhuma categoria disponível! que país é esse..." + +#: src/gui/newSong.cpp:265 +msgid "it appears you're extremely lucky today!" +msgstr "" + +#: src/gui/cursor.cpp:205 +#, c-format +msgid "finish selection: %d.%d,%d - %d.%d,%d" +msgstr "" + +#: src/gui/tutorial.cpp:485 +msgid "" +"Play demo songs?\n" +"- Down: Play current song\n" +"- Up: Play demo songs" +msgstr "" + +#: src/gui/tutorial.cpp:489 +msgid "" +"Welcome to Combat Vehicle!\n" +"\n" +"Controls:\n" +"X - Shoot Arrow Key - Move\n" +"Z - Special Esc - Quit" +msgstr "" + +#: src/gui/tutorial.cpp:494 +msgid "GAME OVER" +msgstr "" + +#: src/gui/tutorial.cpp:496 +msgid "High Score!" +msgstr "" + +#: src/gui/tutorial.cpp:656 +msgid "Welcome!" +msgstr "" + +#: src/gui/tutorial.cpp:659 +msgid "welcome to Furnace, the biggest open-source chiptune tracker!" +msgstr "" + +#: src/gui/tutorial.cpp:663 +msgid "here are some tips to get you started:" +msgstr "" + +#: src/gui/tutorial.cpp:666 +msgid "" +"- add an instrument by clicking on + in Instruments\n" +"- click on the pattern view to focus it\n" +"- channel columns have the following, in this order: note, instrument, " +"volume and effects\n" +"- hit space bar while on the pattern to toggle Edit Mode\n" +"- click on the pattern or use arrow keys to move the cursor\n" +"- values (instrument, volume, effects and effect values) are in hexadecimal\n" +"- hit enter to play/stop the song\n" +"- extend the song by adding more orders in the Orders window\n" +"- click on the Orders matrix to change the patterns of a channel (left click " +"increases; right click decreases)" +msgstr "" + +#: src/gui/tutorial.cpp:678 +msgid "" +"if you need help, you may:\n" +"- read the manual (a file called manual.pdf)\n" +"- ask for help in Discussions (https://github.com/tildearrow/furnace/" +"discussions), the Furnace Discord (https://discord.gg/EfrwT2wq7z) or Furnace " +"in Revolt (official: https://rvlt.gg/GRPS6tmc)" +msgstr "" + +#: src/gui/tutorial.cpp:685 +msgid "" +"if you find any issues, be sure to report them! the issue tracker is here: " +"https://github.com/tildearrow/furnace/issues" +msgstr "" + +#: src/gui/tutorial.cpp:1426 +#, c-format +msgid "STAGE %d" +msgstr "" + +#: src/gui/songInfo.cpp:32 +msgid "Song Info##Song Information" +msgstr "" + +#: src/gui/songInfo.cpp:50 +msgid "Author" +msgstr "Autor" + +#: src/gui/songInfo.cpp:60 +msgid "Album" +msgstr "Álbum" + +#: src/gui/songInfo.cpp:79 +msgid "Auto" +msgstr "Automático" + +#: src/gui/songInfo.cpp:100 +msgid "Tuning (A-4)" +msgstr "Afinação (A-4)" + +#: src/gui/grooves.cpp:38 +msgid "use effect 09xx to select a groove pattern." +msgstr "use o efeito 09xx para selecionar um padrão de groove." + +#: src/gui/grooves.cpp:48 src/gui/gui.cpp:4480 +msgid "pattern" +msgstr "sequência" + +#: src/gui/grooves.cpp:132 +msgid "remove" +msgstr "excluir" + +#: src/gui/doAction.cpp:45 src/gui/gui.cpp:4201 +msgid "Unsaved changes! Save changes before opening another file?" +msgstr "Há mudanças não salvas! Salvar mudanças antes de abrir outro arquivo?" + +#: src/gui/doAction.cpp:52 +msgid "Unsaved changes! Save changes before opening backup?" +msgstr "Há mudanças não salvas! Salvar mudanças antes de abrir o backup?" + +#: src/gui/doAction.cpp:62 src/gui/gui.cpp:4237 src/gui/gui.cpp:5025 +#: src/gui/gui.cpp:5063 src/gui/gui.cpp:5069 src/gui/gui.cpp:5657 +#: src/gui/gui.cpp:5681 src/gui/gui.cpp:5705 src/gui/gui.cpp:5729 +#: src/gui/gui.cpp:5753 src/gui/gui.cpp:5777 +#, c-format +msgid "Error while saving file! (%s)" +msgstr "Erro ao salvar o arquivo! (%s)" + +#: src/gui/doAction.cpp:189 +msgid "Error while sending request (MIDI output not configured?)" +msgstr "Erro ao enviar a requisição (a saída MIDI não está configurada?)" + +#: src/gui/doAction.cpp:197 +msgid "Select an option: (cannot be undone!)" +msgstr "Selecione uma opção: (não pode ser desfeita!)" + +#: src/gui/doAction.cpp:691 src/gui/doAction.cpp:720 src/gui/doAction.cpp:1593 +#: src/gui/gui.cpp:6091 +msgid "too many instruments!" +msgstr "há muitos instrumentos!" + +#: src/gui/doAction.cpp:1124 +msgid "couldn't paste! make sure your sample is 8 or 16-bit." +msgstr "não pôde colar! tenha certeza de que sua sample é 8 ou 16-bit." + +#: src/gui/doAction.cpp:1628 +msgid "select at least one sample!" +msgstr "selecione pelo menos uma sample!" + +#: src/gui/doAction.cpp:1630 +msgid "maximum size is 256 samples!" +msgstr "o tamanho máximo é de 256 amostras!" + +#: src/gui/csPlayer.cpp:113 +msgid "Load" +msgstr "Carregar" + +#: src/gui/csPlayer.cpp:117 +msgid "Kill" +msgstr "Matar" + +#: src/gui/csPlayer.cpp:119 +msgid "Kikai wa mou shindeiru!" +msgstr "" + +#: src/gui/csPlayer.cpp:123 +msgid "Burn Current Song" +msgstr "Destruir Música Atual" + +#: src/gui/csPlayer.cpp:141 +msgid "Status" +msgstr "Estado" + +#: src/gui/csPlayer.cpp:148 +msgid "start" +msgstr "" + +#: src/gui/csPlayer.cpp:150 +msgid "PC" +msgstr "" + +#: src/gui/csPlayer.cpp:152 +msgid "wait" +msgstr "" + +#: src/gui/csPlayer.cpp:154 +msgid "SP" +msgstr "" + +#: src/gui/csPlayer.cpp:156 src/gui/insEdit.cpp:2733 +msgid "note" +msgstr "nota" + +#: src/gui/csPlayer.cpp:158 src/gui/insEdit.cpp:2728 +msgid "pitch" +msgstr "tom" + +#: src/gui/csPlayer.cpp:160 +msgid "vol" +msgstr "" + +#: src/gui/csPlayer.cpp:162 +msgid "vols" +msgstr "" + +#: src/gui/csPlayer.cpp:164 +msgid "vib" +msgstr "" + +#: src/gui/csPlayer.cpp:166 +msgid "porta" +msgstr "" + +#: src/gui/csPlayer.cpp:168 +msgid "arp" +msgstr "" + +#: src/gui/csPlayer.cpp:203 +msgid "Trace" +msgstr "" + +#: src/gui/csPlayer.cpp:244 +msgid "Disassemble" +msgstr "" + +#: src/gui/gui.cpp:1136 src/gui/gui.cpp:1140 +msgid "the song is over!" +msgstr "a música terminou!" + +#: src/gui/gui.cpp:1667 +msgid "Open File" +msgstr "Abrir arquivo" + +#: src/gui/gui.cpp:1668 src/gui/gui.cpp:1798 src/gui/gui.cpp:1838 +#: src/gui/gui.cpp:1953 src/gui/gui.cpp:1962 src/gui/gui.cpp:1971 +#: src/gui/gui.cpp:2073 src/gui/gui.cpp:2093 src/gui/gui.cpp:2111 +msgid "compatible files" +msgstr "arquivos compatíveis" + +#: src/gui/gui.cpp:1669 src/gui/gui.cpp:1743 src/gui/gui.cpp:1799 +#: src/gui/gui.cpp:1839 src/gui/gui.cpp:1851 src/gui/gui.cpp:1870 +#: src/gui/gui.cpp:2074 src/gui/gui.cpp:2084 src/gui/gui.cpp:2095 +#: src/gui/gui.cpp:2113 +msgid "all files" +msgstr "todos os arquivos" + +#: src/gui/gui.cpp:1676 +msgid "no backups made yet!" +msgstr "nenhum backup realizado ainda!" + +#: src/gui/gui.cpp:1681 src/gui/gui.cpp:1690 src/gui/gui.cpp:2130 +msgid "Furnace song" +msgstr "Música do Furnace" + +#: src/gui/gui.cpp:1689 +msgid "Save File" +msgstr "Salvar Arquivo" + +#: src/gui/gui.cpp:1698 src/gui/gui.cpp:1708 +msgid "Export DMF" +msgstr "" + +#: src/gui/gui.cpp:1699 +msgid "DefleMask 1.1.3 module" +msgstr "Módulo do DefleMask 1.1.3" + +#: src/gui/gui.cpp:1709 +msgid "DefleMask 1.0/legacy module" +msgstr "Módulo do DefleMask 1.0/legado" + +#: src/gui/gui.cpp:1726 +msgid "Load Instrument" +msgstr "Carregar Instrumento" + +#: src/gui/gui.cpp:1727 +msgid "all compatible files" +msgstr "todos os arquivos compatíveis" + +#: src/gui/gui.cpp:1728 src/gui/gui.cpp:1777 +msgid "Furnace instrument" +msgstr "Instrumento do Furnace" + +#: src/gui/gui.cpp:1729 src/gui/gui.cpp:1787 +msgid "DefleMask preset" +msgstr "Predefinição do DefleMask" + +#: src/gui/gui.cpp:1730 +msgid "TFM Music Maker instrument" +msgstr "Instrumento do TFM Music Maker" + +#: src/gui/gui.cpp:1731 +msgid "VGM Music Maker instrument" +msgstr "Instrumento do VGM Music Maker" + +#: src/gui/gui.cpp:1732 +msgid "Scream Tracker 3 instrument" +msgstr "Instrumento do Scream Tracker 3" + +#: src/gui/gui.cpp:1733 +msgid "SoundBlaster instrument" +msgstr "Instrumento SoundBlaster" + +#: src/gui/gui.cpp:1734 +msgid "Wohlstand OPL instrument" +msgstr "Instrumento Wohlstand OPL" + +#: src/gui/gui.cpp:1735 +msgid "Wohlstand OPN instrument" +msgstr "Instrumento Wohlstand OPN" + +#: src/gui/gui.cpp:1736 +msgid "Gens KMod patch dump" +msgstr "Extrato de patch Gens KMod" + +#: src/gui/gui.cpp:1737 +msgid "BNK file (AdLib)" +msgstr "Arquivo BNK (AdLib)" + +#: src/gui/gui.cpp:1738 +msgid "FF preset bank" +msgstr "Banco de predefinições do FF" + +#: src/gui/gui.cpp:1739 +msgid "2612edit GYB preset bank" +msgstr "Banco de predefinições GYB do 2612edit" + +#: src/gui/gui.cpp:1740 +msgid "VOPM preset bank" +msgstr "Banco de predefinições do VOPM" + +#: src/gui/gui.cpp:1741 +msgid "Wohlstand WOPL bank" +msgstr "Banco de predefinições Wohlstand WOPL" + +#: src/gui/gui.cpp:1742 +msgid "Wohlstand WOPN bank" +msgstr "Banco de predefinições Wohlstand WOPN" + +#: src/gui/gui.cpp:1776 src/gui/gui.cpp:1786 +msgid "Save Instrument" +msgstr "Salvar Instrumento" + +#: src/gui/gui.cpp:1797 +msgid "Load Wavetable" +msgstr "Carregar Wavetable" + +#: src/gui/gui.cpp:1809 src/gui/gui.cpp:1818 src/gui/gui.cpp:1827 +msgid "Save Wavetable" +msgstr "Salvar Wavetable" + +#: src/gui/gui.cpp:1810 +msgid "Furnace wavetable" +msgstr "Wavetable do Furnace" + +#: src/gui/gui.cpp:1819 +msgid "DefleMask wavetable" +msgstr "Wavetable do DefleMask" + +#: src/gui/gui.cpp:1828 +msgid "raw data" +msgstr "dados raw" + +#: src/gui/gui.cpp:1837 +msgid "Load Sample" +msgstr "Carregar Sample" + +#: src/gui/gui.cpp:1850 +msgid "Load Raw Sample" +msgstr "Carregar Sample em Formato Raw" + +#: src/gui/gui.cpp:1859 +msgid "Save Sample" +msgstr "Salvar Sample" + +#: src/gui/gui.cpp:1860 src/gui/gui.cpp:1880 src/gui/gui.cpp:1890 +#: src/gui/gui.cpp:1900 +msgid "Wave file" +msgstr "Arquivo Wave" + +#: src/gui/gui.cpp:1869 +msgid "Save Raw Sample" +msgstr "Salvar Sample em Formato Raw" + +#: src/gui/gui.cpp:1879 src/gui/gui.cpp:1889 src/gui/gui.cpp:1899 +msgid "Export Audio" +msgstr "Exportar Áudio" + +#: src/gui/gui.cpp:1909 +msgid "Export VGM" +msgstr "Exportar VGM" + +#: src/gui/gui.cpp:1910 +msgid "VGM file" +msgstr "Arquivo VGM" + +#: src/gui/gui.cpp:1919 +msgid "Export ZSM" +msgstr "Exportar ZSM" + +#: src/gui/gui.cpp:1920 +msgid "ZSM file" +msgstr "Arquivo ZSM" + +#: src/gui/gui.cpp:1929 src/gui/gui.cpp:1939 +msgid "Export Command Stream" +msgstr "Exportar Fluxo de Comandos" + +#: src/gui/gui.cpp:1930 +msgid "text file" +msgstr "arquivo de texto" + +#: src/gui/gui.cpp:1940 +msgid "binary file" +msgstr "arquivo binário" + +#: src/gui/gui.cpp:1947 src/gui/gui.cpp:5376 +msgid "Coming soon!" +msgstr "em breve!" + +#: src/gui/gui.cpp:1952 src/gui/gui.cpp:1961 src/gui/gui.cpp:1970 +msgid "Select Font" +msgstr "Selecione a Fonte" + +#: src/gui/gui.cpp:1979 +msgid "Select Color File" +msgstr "Selecione o Arquivo de Cores" + +#: src/gui/gui.cpp:1980 src/gui/gui.cpp:1989 src/gui/gui.cpp:2008 +#: src/gui/gui.cpp:2017 src/gui/gui.cpp:2026 src/gui/gui.cpp:2035 +#: src/gui/gui.cpp:2053 src/gui/gui.cpp:2062 +msgid "configuration files" +msgstr "arquivos de configuração" + +#: src/gui/gui.cpp:1988 +msgid "Select Keybind File" +msgstr "Selecione o Arquivo de Teclas de Atalho" + +#: src/gui/gui.cpp:1997 +msgid "Select Layout File" +msgstr "Selecione o Arquivo de Leiaute" + +#: src/gui/gui.cpp:1998 src/gui/gui.cpp:2044 +msgid ".ini files" +msgstr "arquivos .ini" + +#: src/gui/gui.cpp:2007 +msgid "Select User Presets File" +msgstr "" + +#: src/gui/gui.cpp:2016 +msgid "Select Settings File" +msgstr "" + +#: src/gui/gui.cpp:2025 +msgid "Export Colors" +msgstr "Exportar Cores" + +#: src/gui/gui.cpp:2034 +msgid "Export Keybinds" +msgstr "Exportar Teclas de Atalho" + +#: src/gui/gui.cpp:2043 +msgid "Export Layout" +msgstr "Exportar Leiaute" + +#: src/gui/gui.cpp:2052 +msgid "Export User Presets" +msgstr "" + +#: src/gui/gui.cpp:2061 +msgid "Export Settings" +msgstr "" + +#: src/gui/gui.cpp:2072 +msgid "Load ROM" +msgstr "Carregar ROM" + +#: src/gui/gui.cpp:2082 +msgid "Play Command Stream" +msgstr "Reproduzir Fluxo de Comandos" + +#: src/gui/gui.cpp:2083 +msgid "command stream" +msgstr "fluxo de comandos" + +#: src/gui/gui.cpp:2092 +msgid "Open Test" +msgstr "Abrir Teste" + +#: src/gui/gui.cpp:2094 src/gui/gui.cpp:2112 +msgid "another option" +msgstr "outra opção" + +#: src/gui/gui.cpp:2110 +msgid "Open Test (Multi)" +msgstr "Abrir Teste (Multi)" + +#: src/gui/gui.cpp:2129 +msgid "Save Test" +msgstr "Salvar Teste" + +#: src/gui/gui.cpp:2131 +msgid "DefleMask module" +msgstr "Módulo do DefleMask" + +#: src/gui/gui.cpp:2171 +msgid "compression error" +msgstr "" + +#: src/gui/gui.cpp:2183 +msgid "zlib stream error" +msgstr "" + +#: src/gui/gui.cpp:2205 +msgid "zlib finish stream error" +msgstr "" + +#: src/gui/gui.cpp:2316 +msgid "everything OK" +msgstr "" + +#: src/gui/gui.cpp:2334 +msgid "" +"you have loaded a backup!\n" +"if you need to, please save it somewhere.\n" +"\n" +"DO NOT RELY ON THE BACKUP SYSTEM FOR AUTO-SAVE!\n" +"Furnace will not save backups of backups." +msgstr "" +"você carregou um backup!\n" +"se você precisar, por favor salve-o em algum lugar.\n" +"\n" +"NÃO CONFIE NO SISTEMA DE BACKUP PARA SALVAMENTO AUTOMÁTICO!\n" +"O Furnace não irá realizar backups de backups." + +#: src/gui/gui.cpp:2342 src/gui/gui.cpp:3743 src/gui/gui.cpp:4213 +msgid "Unsaved changes! Save changes before opening file?" +msgstr "Há mudanças não salvas! Salvar mudanças antes de abrir o arquivo?" + +#: src/gui/gui.cpp:2736 +msgid "paste special..." +msgstr "colar especial..." + +#: src/gui/gui.cpp:2737 +msgid "paste mix" +msgstr "colar e mesclar" + +#: src/gui/gui.cpp:2738 +msgid "paste mix (background)" +msgstr "colar e mesclar (por trás)" + +#: src/gui/gui.cpp:2739 +msgid "paste with ins (foreground)" +msgstr "colar+mesclar com instrumento (pela frente)" + +#: src/gui/gui.cpp:2741 src/gui/gui.cpp:2753 src/gui/gui.cpp:2963 +msgid "no instruments available" +msgstr "nenhum instrumento disponível" + +#: src/gui/gui.cpp:2751 +msgid "paste with ins (background)" +msgstr "colar+mesclar com instrumento (por trás)" + +#: src/gui/gui.cpp:2763 +msgid "paste flood" +msgstr "colar e repetir" + +#: src/gui/gui.cpp:2764 +msgid "paste overflow" +msgstr "colar através das bordas" + +#: src/gui/gui.cpp:2773 +msgid "operation mask..." +msgstr "máscara de operação..." + +#: src/gui/gui.cpp:2780 +msgid "pull delete" +msgstr "excluir e puxar" + +#: src/gui/gui.cpp:2784 +msgid "insert" +msgstr "inserir" + +#: src/gui/gui.cpp:2792 +msgid "transpose (note)" +msgstr "transpor (nota)" + +#: src/gui/gui.cpp:2796 +msgid "transpose (value)" +msgstr "transpor (valor)" + +#: src/gui/gui.cpp:2808 src/gui/gui.cpp:3052 +msgid "invert values" +msgstr "inverter valores" + +#: src/gui/gui.cpp:2824 +msgid "collapse/expand" +msgstr "contrair/expandir" + +#: src/gui/gui.cpp:2829 +msgid "input latch" +msgstr "máscara de entrada" + +#: src/gui/gui.cpp:2856 +msgid "" +"&&: selected instrument\n" +"..: no instrument" +msgstr "" +"&&: instrumento selecionado\n" +"..: nenhum instrumento" + +#: src/gui/gui.cpp:2910 +msgid "Set" +msgstr "Limpar" + +#: src/gui/gui.cpp:2930 +msgid "note up" +msgstr "nota acima" + +#: src/gui/gui.cpp:2931 +msgid "note down" +msgstr "nota abaixo" + +#: src/gui/gui.cpp:2932 +msgid "octave up" +msgstr "oitava acima" + +#: src/gui/gui.cpp:2933 +msgid "octave down" +msgstr "oitava abaixo" + +#: src/gui/gui.cpp:2935 +msgid "values up" +msgstr "valores acima" + +#: src/gui/gui.cpp:2936 +msgid "values down" +msgstr "valores abaixo" + +#: src/gui/gui.cpp:2937 +msgid "values up (+16)" +msgstr "valores acima (+16)" + +#: src/gui/gui.cpp:2938 +msgid "values down (-16)" +msgstr "valores abaixo (-16)" + +#: src/gui/gui.cpp:2941 +msgid "transpose" +msgstr "transpor" + +#: src/gui/gui.cpp:2949 +msgid "Notes" +msgstr "Notas" + +#: src/gui/gui.cpp:2954 +msgid "Values" +msgstr "Valores" + +#: src/gui/gui.cpp:2961 +msgid "change instrument..." +msgstr "mudar instrumento..." + +#: src/gui/gui.cpp:2974 +msgid "gradient/fade..." +msgstr "degradê..." + +#: src/gui/gui.cpp:2991 src/gui/gui.cpp:3036 +msgid "Nibble mode" +msgstr "Modo nibble" + +#: src/gui/gui.cpp:3000 +msgid "Go ahead" +msgstr "Vá em frente" + +#: src/gui/gui.cpp:3006 src/gui/insEdit.cpp:7604 +msgid "scale..." +msgstr "escalonar..." + +#: src/gui/gui.cpp:3011 +msgid "Scale" +msgstr "Escalonar" + +#: src/gui/gui.cpp:3017 src/gui/insEdit.cpp:7632 +msgid "randomize..." +msgstr "aleatorizar..." + +#: src/gui/gui.cpp:3018 +msgid "Minimum" +msgstr "Mínimo" + +#: src/gui/gui.cpp:3027 +msgid "Maximum" +msgstr "Máximo" + +#: src/gui/gui.cpp:3056 +msgid "flip selection" +msgstr "reverter seleção" + +#: src/gui/gui.cpp:3059 +msgid "collapse/expand amount##CollapseAmount" +msgstr "contrair/expandir por quantidade##CollapseAmount" + +#: src/gui/gui.cpp:3068 +msgid "collapse pattern" +msgstr "contrair sequência" + +#: src/gui/gui.cpp:3069 +msgid "expand pattern" +msgstr "expandir sequência" + +#: src/gui/gui.cpp:3074 +msgid "collapse song" +msgstr "contrair música" + +#: src/gui/gui.cpp:3075 +msgid "expand song" +msgstr "expandir música" + +#: src/gui/gui.cpp:3080 +msgid "find/replace" +msgstr "localizar/substituir" + +#: src/gui/gui.cpp:3094 src/gui/gui.cpp:5807 src/gui/gui.cpp:7333 +#, c-format +msgid "could NOT save layout! %s" +msgstr "não pôde salvar o layout! %s" + +#: src/gui/gui.cpp:3106 +#, c-format +msgid "could NOT load layout! %s" +msgstr "" + +#: src/gui/gui.cpp:3568 +msgid "" +"Furnace has been started in Safe Mode.\n" +"this means that:\n" +"\n" +"- software rendering is being used\n" +"- audio output may not work\n" +"- font loading is disabled\n" +"\n" +"check any settings which may have made Furnace start up in this mode.\n" +"font loading is one of these." +msgstr "" +"Furnace foi inicializado no Modo de Segurança.\n" +"isso significa que:\n" +"\n" +"- renderização via software está sendo utilizada\n" +"- a saída de áudio pode não funcionar\n" +"- o carregamento de fontes está desabilitado\n" +"\n" +"confira quaisquer opções que podem ter feito o Furnace iniciar nesse modo.\n" +"o carregamento de fontes é uma delas." + +#: src/gui/gui.cpp:4053 +msgid "can't keep going without graphics! Furnace will quit now." +msgstr "" + +#: src/gui/gui.cpp:4191 +msgid "file" +msgstr "" + +#: src/gui/gui.cpp:4192 +msgid "new..." +msgstr "novo..." + +#: src/gui/gui.cpp:4199 +msgid "open..." +msgstr "abrir..." + +#: src/gui/gui.cpp:4206 +msgid "open recent" +msgstr "abrir recente" + +#: src/gui/gui.cpp:4222 +msgid "nothing here yet" +msgstr "nada aqui ainda" + +#: src/gui/gui.cpp:4225 +msgid "clear history" +msgstr "limpar histórico" + +#: src/gui/gui.cpp:4226 +msgid "Are you sure you want to clear the recent file list?" +msgstr "Tem certeza que quer limpar o histórico de arquivos recentes?" + +#: src/gui/gui.cpp:4241 +msgid "save as..." +msgstr "salvar como..." + +#: src/gui/gui.cpp:4246 src/gui/gui.cpp:4287 +msgid "export audio..." +msgstr "exportar áudio..." + +#: src/gui/gui.cpp:4250 src/gui/gui.cpp:4291 +msgid "export VGM..." +msgstr "exportar VGM..." + +#: src/gui/gui.cpp:4259 src/gui/gui.cpp:4300 +msgid "export ZSM..." +msgstr "exportar ZSM..." + +#: src/gui/gui.cpp:4269 src/gui/gui.cpp:4310 +msgid "export Amiga validation data..." +msgstr "exportar dados de validação do Amiga..." + +#: src/gui/gui.cpp:4274 src/gui/gui.cpp:4315 +msgid "export text..." +msgstr "exportar texto..." + +#: src/gui/gui.cpp:4278 src/gui/gui.cpp:4319 +msgid "export command stream..." +msgstr "exportar fluxo de comandos..." + +#: src/gui/gui.cpp:4282 src/gui/gui.cpp:4323 +msgid "export .dmf..." +msgstr "" + +#: src/gui/gui.cpp:4328 +msgid "export..." +msgstr "exportar..." + +#: src/gui/gui.cpp:4334 +msgid "manage chips" +msgstr "gerenciar chips" + +#: src/gui/gui.cpp:4338 +msgid "add chip..." +msgstr "adicionar chip..." + +#: src/gui/gui.cpp:4343 src/gui/sysManager.cpp:138 +#, c-format +msgid "cannot add chip! (%s)" +msgstr "" + +#: src/gui/gui.cpp:4355 +msgid "configure chip..." +msgstr "configurar chip..." + +#: src/gui/gui.cpp:4365 +msgid "change chip..." +msgstr "trocar chip..." + +#: src/gui/gui.cpp:4367 src/gui/gui.cpp:4390 +msgid "Preserve channel positions" +msgstr "Preservar posições dos canais" + +#: src/gui/gui.cpp:4379 src/gui/sysManager.cpp:109 +#, c-format +msgid "cannot change chip! (%s)" +msgstr "" + +#: src/gui/gui.cpp:4388 +msgid "remove chip..." +msgstr "remover chip..." + +#: src/gui/gui.cpp:4394 +#, c-format +msgid "cannot remove chip! (%s)" +msgstr "" + +#: src/gui/gui.cpp:4408 +msgid "open built-in assets directory" +msgstr "abrir diretório de recursos embutidos" + +#: src/gui/gui.cpp:4414 +msgid "restore backup" +msgstr "restaurar backup" + +#: src/gui/gui.cpp:4418 +msgid "exit..." +msgstr "sair..." + +#: src/gui/gui.cpp:4426 +msgid "edit" +msgstr "" + +#: src/gui/gui.cpp:4434 +msgid "clear..." +msgstr "apagar..." + +#: src/gui/gui.cpp:4439 +msgid "settings" +msgstr "" + +#: src/gui/gui.cpp:4441 +msgid "full screen" +msgstr "tela cheia" + +#: src/gui/gui.cpp:4445 +msgid "lock layout" +msgstr "travar leiaute" + +#: src/gui/gui.cpp:4448 +msgid "pattern visualizer" +msgstr "visualizador de sequência" + +#: src/gui/gui.cpp:4454 +msgid "reset layout" +msgstr "redefinir leiaute" + +#: src/gui/gui.cpp:4458 +msgid "switch to mobile view" +msgstr "trocar para leiaute otimizado para dispositivos móveis" + +#: src/gui/gui.cpp:4462 +msgid "user systems..." +msgstr "" + +#: src/gui/gui.cpp:4465 +msgid "settings..." +msgstr "configurações..." + +#: src/gui/gui.cpp:4471 +msgid "Window" +msgstr "" + +#: src/gui/gui.cpp:4471 +msgid "window" +msgstr "" + +#: src/gui/gui.cpp:4472 +msgid "song" +msgstr "música" + +#: src/gui/gui.cpp:4473 +msgid "song comments" +msgstr "comentários da música" + +#: src/gui/gui.cpp:4474 +msgid "song information" +msgstr "informações da música" + +#: src/gui/gui.cpp:4475 +msgid "subsongs" +msgstr "subfaixas" + +#: src/gui/gui.cpp:4477 +msgid "channels" +msgstr "canais" + +#: src/gui/gui.cpp:4478 +msgid "chip manager" +msgstr "gerenciador de chips" + +#: src/gui/gui.cpp:4479 +msgid "orders" +msgstr "ordens" + +#: src/gui/gui.cpp:4481 +msgid "pattern manager" +msgstr "gerenciador de sequências" + +#: src/gui/gui.cpp:4482 +msgid "mixer" +msgstr "mixer" + +#: src/gui/gui.cpp:4483 +msgid "compatibility flags" +msgstr "opções de compatibilidade" + +#: src/gui/gui.cpp:4486 src/gui/gui.cpp:4488 +msgid "assets" +msgstr "recursos" + +#: src/gui/gui.cpp:4490 +msgid "instruments" +msgstr "instrumentos" + +#: src/gui/gui.cpp:4491 +msgid "samples" +msgstr "samples" + +#: src/gui/gui.cpp:4492 +msgid "wavetables" +msgstr "wavetables" + +#: src/gui/gui.cpp:4495 +msgid "instrument editor" +msgstr "editor de instrumentos" + +#: src/gui/gui.cpp:4496 +msgid "sample editor" +msgstr "editor de samples" + +#: src/gui/gui.cpp:4497 +msgid "wavetable editor" +msgstr "editor de wavetables" + +#: src/gui/gui.cpp:4500 +msgid "visualizers" +msgstr "visualizadores" + +#: src/gui/gui.cpp:4501 +msgid "oscilloscope (master)" +msgstr "osciloscópio (mestre)" + +#: src/gui/gui.cpp:4502 +msgid "oscilloscope (per-channel)" +msgstr "osciloscópio (por canal)" + +#: src/gui/gui.cpp:4503 +msgid "oscilloscope (X-Y)" +msgstr "osciloscópio (X-Y)" + +#: src/gui/gui.cpp:4504 +msgid "volume meter" +msgstr "medidor de volume" + +#: src/gui/gui.cpp:4507 +msgid "tempo" +msgstr "tempo" + +#: src/gui/gui.cpp:4508 +msgid "clock" +msgstr "clock" + +#: src/gui/gui.cpp:4509 +msgid "grooves" +msgstr "grooves" + +#: src/gui/gui.cpp:4510 +msgid "speed" +msgstr "velocidade" + +#: src/gui/gui.cpp:4514 +msgid "log viewer" +msgstr "visualizador de logs" + +#: src/gui/gui.cpp:4515 +msgid "register view" +msgstr "visualização de registradores" + +#: src/gui/gui.cpp:4516 +msgid "statistics" +msgstr "estatísticas" + +#: src/gui/gui.cpp:4517 +msgid "memory composition" +msgstr "composição da memória" + +#: src/gui/gui.cpp:4521 src/gui/gui.cpp:4529 +msgid "effect list" +msgstr "lista de efeitos" + +#: src/gui/gui.cpp:4522 +msgid "play/edit controls" +msgstr "controles de reprodução/edição" + +#: src/gui/gui.cpp:4523 +msgid "piano/input pad" +msgstr "piano/teclado virtual" + +#: src/gui/gui.cpp:4524 +msgid "spoiler" +msgstr "spoiler" + +#: src/gui/gui.cpp:4528 +msgid "Help" +msgstr "" + +#: src/gui/gui.cpp:4528 +msgid "help" +msgstr "" + +#: src/gui/gui.cpp:4530 +msgid "debug menu" +msgstr "menu de depuração" + +#: src/gui/gui.cpp:4531 +msgid "inspector" +msgstr "inspetor" + +#: src/gui/gui.cpp:4532 +msgid "panic" +msgstr "pânico" + +#: src/gui/gui.cpp:4533 +msgid "about..." +msgstr "sobre..." + +#: src/gui/gui.cpp:4548 +#, c-format +msgid "| Speed %d:%d" +msgstr "| Velocidade %d:%d" + +#: src/gui/gui.cpp:4550 +#, c-format +msgid "| Speed %d" +msgstr "| Velocidade %d" + +#: src/gui/gui.cpp:4552 +msgid "| Groove" +msgstr "| Groove" + +#: src/gui/gui.cpp:4555 +#, c-format +msgid " @ %gHz (%g BPM) " +msgstr " em %gHz (%g BPM) " + +#: src/gui/gui.cpp:4558 +#, c-format +msgid "| Order %.2X/%.2X " +msgstr "| Ordem %.2X/%.2X " + +#: src/gui/gui.cpp:4560 +#, c-format +msgid "| Order %d/%d " +msgstr "| Ordem %d/%d " + +#: src/gui/gui.cpp:4564 +#, c-format +msgid "| Row %.2X/%.2X " +msgstr "| Linha %.2X/%.2X " + +#: src/gui/gui.cpp:4566 +#, c-format +msgid "| Row %d/%d " +msgstr "| Linha %d/%d " + +#: src/gui/gui.cpp:4569 +msgid "| " +msgstr "" + +#: src/gui/gui.cpp:4572 +msgid "Don't you have anything better to do?" +msgstr "Não tem mais o que fazer não?" + +#: src/gui/gui.cpp:4582 +#, c-format +msgid "%d year " +msgid_plural "%d years " +msgstr[0] "%d ano " +msgstr[1] "%d anos " + +#: src/gui/gui.cpp:4583 +#, c-format +msgid "%d month " +msgid_plural "%d months " +msgstr[0] "%d mês " +msgstr[1] "%d meses " + +#: src/gui/gui.cpp:4584 +#, c-format +msgid "%d day " +msgid_plural "%d days " +msgstr[0] "" +msgstr[1] "" + +#: src/gui/gui.cpp:4609 +msgid "Note off (cut)" +msgstr "Note off (corte)" + +#: src/gui/gui.cpp:4611 +msgid "Note off (release)" +msgstr "Note off (repouso)" + +#: src/gui/gui.cpp:4613 +msgid "Macro release only" +msgstr "Repouso de macro somente" + +#: src/gui/gui.cpp:4615 +#, c-format +msgid "Note on: %s" +msgstr "Note on: %s" + +#: src/gui/gui.cpp:4623 +#, c-format +msgid "Ins %d: " +msgstr "Ins %d: " + +#: src/gui/gui.cpp:4626 +#, c-format +msgid "Ins %d: %s" +msgstr "Ins %d: %s" + +#: src/gui/gui.cpp:4635 +#, c-format +msgid "Set volume: %d (%.2X, INVALID!)" +msgstr "Definir volume: %d (%.2X, INVÁLIDO!)" + +#: src/gui/gui.cpp:4638 +#, c-format +msgid "Set volume: %d (%.2X, %d%%)" +msgstr "Definir volume: %d (%.2X, %d%%)" + +#: src/gui/gui.cpp:4660 +msgid "| modified" +msgstr "| modificado" + +#: src/gui/gui.cpp:4825 src/gui/gui.cpp:4828 +msgid "System File Dialog Pending" +msgstr "" + +#: src/gui/gui.cpp:4941 +msgid "" +"there was an error in the file dialog! you may want to report this issue " +"to:\n" +"https://github.com/tildearrow/furnace/issues\n" +"check the Log Viewer (window > log viewer) for more information.\n" +"\n" +"for now please disable the system file picker in Settings > General." +msgstr "" + +#: src/gui/gui.cpp:4944 +msgid "can't do anything without Storage permissions!" +msgstr "impossível fazer algo sem permissões de Armazenamento!" + +#: src/gui/gui.cpp:4946 +msgid "" +"Zenity/KDialog not available!\n" +"please install one of these, or disable the system file picker in Settings > " +"General." +msgstr "" +"Zenity/KDialog indisponíveis!\n" +"por favor instale uma dessas bibliotecas, ou desabilite o diálogo de " +"arquivos do sistema em Configurações > Geral." + +#: src/gui/gui.cpp:5082 +msgid "" +"error while saving instrument! only the following instrument types are " +"supported:\n" +"- FM (OPN)\n" +"- SN76489/Sega PSG\n" +"- Game Boy\n" +"- PC Engine\n" +"- NES\n" +"- C64\n" +"- FM (OPLL)\n" +"- FDS" +msgstr "" +"erro ao salvar o instrumento! somente os seguintes tipos de instrumento são " +"suportados:\n" +"- FM (OPN)\n" +"- SN76489/Sega PSG\n" +"- Game Boy\n" +"- PC Engine\n" +"- NES\n" +"- C64\n" +"- FM (OPLL)\n" +"- FDS" + +#: src/gui/gui.cpp:5110 +msgid "there were some errors while loading samples:\n" +msgstr "" + +#: src/gui/gui.cpp:5155 src/gui/gui.cpp:6339 +msgid "...but you haven't selected a sample!" +msgstr "...mas você não selecionou uma sample!" + +#: src/gui/gui.cpp:5170 src/gui/gui.cpp:5179 +msgid "could not save sample! open Log Viewer for more information." +msgstr "" +"não foi possível salvar a sample! abra o Visualizador de Logs para mais " +"informações." + +#: src/gui/gui.cpp:5198 +msgid "there were some warnings/errors while loading instruments:\n" +msgstr "" + +#: src/gui/gui.cpp:5204 +#, c-format +msgid "> %s: cannot load instrument! (%s)\n" +msgstr "" + +#: src/gui/gui.cpp:5222 src/gui/gui.cpp:5276 +#, c-format +msgid "cannot load instrument! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5228 +msgid "" +"congratulations! you managed to load nothing.\n" +"you are entitled to a bug report." +msgstr "" +"parabéns! você foi capaz de carregar um monte de nada.\n" +"você tem direito a um bug report." + +#: src/gui/gui.cpp:5269 src/gui/gui.cpp:6243 +msgid "...but you haven't selected an instrument!" +msgstr "...mas você não selecionou um instrumento!" + +#: src/gui/gui.cpp:5281 +msgid "there were some errors while loading wavetables:\n" +msgstr "ocorreram erros ao carregar as wavetables:\n" + +#: src/gui/gui.cpp:5290 src/gui/gui.cpp:5300 src/gui/gui.cpp:5319 +#, c-format +msgid "cannot load wavetable! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5327 +msgid "...but you haven't selected a wavetable!" +msgstr "...mas você não selecionou uma wavetable!" + +#: src/gui/gui.cpp:5342 src/gui/gui.cpp:5363 src/gui/gui.cpp:5387 +#: src/gui/gui.cpp:5408 +msgid "could not open file!" +msgstr "não pôde abrir o arquivo!" + +#: src/gui/gui.cpp:5350 +#, c-format +msgid "could not write VGM! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5371 +#, c-format +msgid "Could not write ZSM! (%s)" +msgstr "Não pôde escrever ZSM! (%s)" + +#: src/gui/gui.cpp:5395 +#, c-format +msgid "could not write text! (%s)" +msgstr "não pôde escrever texto! (%s)" + +#: src/gui/gui.cpp:5416 +#, c-format +msgid "could not write command stream! (%s)" +msgstr "não pôde escrever fluxo de comandos! (%s)" + +#: src/gui/gui.cpp:5440 +msgid "could not import user presets!" +msgstr "" + +#: src/gui/gui.cpp:5445 src/gui/gui.cpp:5462 +#, c-format +msgid "could not import user presets! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5483 +#, c-format +msgid "You opened: %s" +msgstr "Você abriu: %s" + +#: src/gui/gui.cpp:5486 +msgid "You opened:" +msgstr "Você abriu:" + +#: src/gui/gui.cpp:5494 +#, c-format +msgid "You saved: %s" +msgstr "Você salvou: %s" + +#: src/gui/gui.cpp:5510 src/gui/gui.cpp:5645 src/gui/gui.cpp:5646 +msgid "Warning" +msgstr "" + +#: src/gui/gui.cpp:5515 src/gui/gui.cpp:5636 src/gui/gui.cpp:5637 +#: src/gui/insEdit.cpp:7520 +msgid "Error" +msgstr "Erro" + +#: src/gui/gui.cpp:5520 src/gui/gui.cpp:6177 src/gui/gui.cpp:6178 +msgid "Select Instrument" +msgstr "" + +#: src/gui/gui.cpp:5525 src/gui/gui.cpp:6256 src/gui/gui.cpp:6257 +msgid "Import Raw Sample" +msgstr "" + +#: src/gui/gui.cpp:5540 src/gui/gui.cpp:5593 src/gui/gui.cpp:5594 +msgid "Rendering..." +msgstr "" + +#: src/gui/gui.cpp:5595 +msgid "Please wait..." +msgstr "Por favor aguarde..." + +#: src/gui/gui.cpp:5596 +msgid "Abort" +msgstr "Abortar" + +#: src/gui/gui.cpp:5638 +#, c-format +msgid "%s" +msgstr "%s" + +#: src/gui/gui.cpp:5650 src/gui/gui.cpp:5674 src/gui/gui.cpp:5698 +#: src/gui/gui.cpp:5722 src/gui/gui.cpp:5746 src/gui/gui.cpp:5770 +#: src/gui/gui.cpp:5802 src/gui/gui.cpp:5818 src/gui/gui.cpp:5829 +#: src/gui/gui.cpp:5841 src/gui/gui.cpp:5995 src/gui/gui.cpp:6017 +#: src/gui/gui.cpp:6032 src/gui/gui.cpp:6043 +msgid "Yes" +msgstr "Sim" + +#: src/gui/gui.cpp:5868 +msgid "Erasing" +msgstr "Apagando" + +#: src/gui/gui.cpp:5871 +msgid "All subsongs" +msgstr "Todas as subfaixas" + +#: src/gui/gui.cpp:5878 +msgid "Current subsong" +msgstr "Subfaixa atual" + +#: src/gui/gui.cpp:5945 +msgid "Optimization" +msgstr "Otimização" + +#: src/gui/gui.cpp:5948 src/gui/patManager.cpp:36 +msgid "De-duplicate patterns" +msgstr "Deduplicar sequências" + +#: src/gui/gui.cpp:5957 +msgid "Remove unused instruments" +msgstr "Remover instrumentos não utilizados" + +#: src/gui/gui.cpp:5970 +msgid "Remove unused samples" +msgstr "Remover samples não utilizadas" + +#: src/gui/gui.cpp:5987 +msgid "Never mind! Cancel" +msgstr "Deixa pra lá! Cancelar" + +#: src/gui/gui.cpp:6066 +msgid "Drum kit mode:" +msgstr "Modo de kit de bateria:" + +#: src/gui/gui.cpp:6070 +msgid "12 samples per octave" +msgstr "12 samples por oitava" + +#: src/gui/gui.cpp:6075 +msgid "Starting octave" +msgstr "Oitava inicial" + +#: src/gui/gui.cpp:6095 +msgid "Drum Kit" +msgstr "" + +#: src/gui/gui.cpp:6181 +msgid "this is an instrument bank! select which one to use:" +msgstr "" +"isto é um banco de instrumentos! selecione quais instrumentos carregar:" + +#: src/gui/gui.cpp:6184 +msgid "this is an instrument bank! select which ones to load:" +msgstr "" +"isto é um banco de instrumentos! selecione quais instrumentos carregar:" + +#: src/gui/gui.cpp:6258 +msgid "Data type:" +msgstr "Tipo de dado:" + +#: src/gui/gui.cpp:6285 +msgid "(will be mixed down to mono)" +msgstr "(será misturado para mono)" + +#: src/gui/gui.cpp:6286 +msgid "Unsigned" +msgstr "Sem sinal" + +#: src/gui/gui.cpp:6290 +msgid "Big endian" +msgstr "Big endian" + +#: src/gui/gui.cpp:6298 +msgid "Swap nibbles" +msgstr "Trocar nibbles" + +#: src/gui/gui.cpp:6302 +msgid "Swap words" +msgstr "Trocar palavras" + +#: src/gui/gui.cpp:6306 +msgid "Encoding:" +msgstr "Codificação:" + +#: src/gui/gui.cpp:6319 +msgid "Reverse bit order" +msgstr "Trocar ordem dos bits" + +#: src/gui/gui.cpp:6361 +msgid "Error! No string provided!" +msgstr "Erro! Não foi passada uma string!" + +#: src/gui/gui.cpp:6683 +msgid "it appears I couldn't load these fonts. any setting you can check?" +msgstr "" +"parece que eu não pude carregar essas fontes. alguma configuração que você " +"poderia checar?" + +#: src/gui/gui.cpp:6863 src/gui/gui.cpp:6971 +msgid "" +"could not init renderer!\n" +"falling back to software renderer. please restart Furnace." +msgstr "" + +#: src/gui/gui.cpp:6865 src/gui/gui.cpp:6973 +#, c-format +msgid "" +"could not init renderer! %s\n" +"falling back to software renderer. please restart Furnace." +msgstr "" + +#: src/gui/gui.cpp:6870 src/gui/gui.cpp:6978 +msgid "could not init renderer!" +msgstr "" + +#: src/gui/gui.cpp:6881 +#, c-format +msgid "could not open window! %s" +msgstr "não pôde abrir a janela! %s" + +#: src/gui/gui.cpp:6886 +msgid "" +"\n" +"falling back to software renderer. please restart Furnace." +msgstr "" + +#: src/gui/gui.cpp:7034 +msgid "Size column to fit###SizeOne" +msgstr "Ajustar largura da coluna###SizeOne" + +#: src/gui/gui.cpp:7036 +msgid "Size all columns to fit###SizeAll" +msgstr "Ajustar largura de todas as colunas###SizeAll" + +#: src/gui/gui.cpp:7038 +msgid "Size all columns to default###SizeAll" +msgstr "Redefinir largura de todas as colunas para o padrão###SizeAll" + +#: src/gui/gui.cpp:7040 +msgid "Reset order###ResetOrder" +msgstr "Redefinir ordem###ResetOrder" + +#: src/gui/gui.cpp:7042 +msgid "(Main menu bar)" +msgstr "(Barra de menu principal)" + +#: src/gui/gui.cpp:7044 +msgid "(Popup)" +msgstr "(Popup)" + +#: src/gui/gui.cpp:7046 +msgid "(Untitled)" +msgstr "(Sem título)" + +#: src/gui/gui.cpp:7048 +msgid "Hide tab bar###HideTabBar" +msgstr "Esconder barra de abas###HideTabBar" + +#: src/gui/gui.cpp:7535 +msgid "Unsaved changes! Save changes before quitting?" +msgstr "Há mudanças não salvas! Salvar mudanças antes de sair?" + +#: src/gui/sysManager.cpp:42 +msgid "Preserve channel order" +msgstr "Preservar ordem dos canais" + +#: src/gui/sysManager.cpp:44 +msgid "Clone channel data" +msgstr "Clonar dados dos canais" + +#: src/gui/sysManager.cpp:46 +msgid "Clone at end" +msgstr "Clonar ao final" + +#: src/gui/sysManager.cpp:56 +msgid "Actions" +msgstr "Ações" + +#: src/gui/sysManager.cpp:69 +msgid "(drag to swap chips)" +msgstr "(arraste para trocar chips)" + +#: src/gui/sysManager.cpp:90 +msgid "Clone##SysDup" +msgstr "Clonar##SysDup" + +#: src/gui/sysManager.cpp:92 +#, c-format +msgid "cannot clone chip! (%s)" +msgstr "" + +#: src/gui/sysManager.cpp:98 +msgid "Change##SysChange" +msgstr "Trocar##SysChange" + +#: src/gui/sysManager.cpp:120 +msgid "Are you sure you want to remove this chip?" +msgstr "Tem certeza de que quer remover este chip?" + +#: src/gui/patManager.cpp:43 +msgid "Re-arrange patterns" +msgstr "Reordenar sequências" + +#: src/gui/patManager.cpp:50 +msgid "Sort orders" +msgstr "Ordenar ordens" + +#: src/gui/patManager.cpp:57 +msgid "Make patterns unique" +msgstr "Tornar sequências únicas" + +#: src/gui/patManager.cpp:103 +#, c-format +msgid "" +"Pattern %.2X\n" +"- not allocated" +msgstr "" +"Sequência %.2X\n" +"- não alocada" + +#: src/gui/patManager.cpp:105 +#, c-format +msgid "" +"Pattern %.2X\n" +"- use count: %d (%.0f%%)\n" +"\n" +"right-click to erase" +msgstr "" +"Sequência %.2X\n" +"- usada %d vezes (%.0f%%)\n" +"\n" +"clique com o botão direito para excluir" + +#: src/gui/insEdit.cpp:39 +msgid "Down Down Down" +msgstr "Baixo Baixo Baixo" + +#: src/gui/insEdit.cpp:40 +msgid "Down." +msgstr "Baixo." + +#: src/gui/insEdit.cpp:41 +msgid "Down Up Down Up" +msgstr "Baixo Cima Baixo Cima" + +#: src/gui/insEdit.cpp:42 +msgid "Down UP" +msgstr "Baixo CIMA" + +#: src/gui/insEdit.cpp:43 +msgid "Up Up Up" +msgstr "Cima Cima Cima" + +#: src/gui/insEdit.cpp:44 +msgid "Up." +msgstr "Cima." + +#: src/gui/insEdit.cpp:45 +msgid "Up Down Up Down" +msgstr "Cima Baixo Cima Baixo" + +#: src/gui/insEdit.cpp:46 +msgid "Up DOWN" +msgstr "Cima BAIXO" + +#: src/gui/insEdit.cpp:50 +msgid "Algorithm" +msgstr "Algoritmo" + +#: src/gui/insEdit.cpp:50 +msgid "Feedback" +msgstr "Feedback" + +#: src/gui/insEdit.cpp:50 +msgid "LFO > Freq" +msgstr "LFO > Freq" + +#: src/gui/insEdit.cpp:50 +msgid "LFO > Amp" +msgstr "LFO > Amp" + +#: src/gui/insEdit.cpp:50 +msgid "Decay 2" +msgstr "Decaimento 2" + +#: src/gui/insEdit.cpp:50 +msgid "EnvScale" +msgstr "EscalaEnv" + +#: src/gui/insEdit.cpp:50 +msgid "Multiplier" +msgstr "Multiplicador" + +#: src/gui/insEdit.cpp:50 +msgid "Detune 2" +msgstr "Desafinação 2" + +#: src/gui/insEdit.cpp:50 +msgid "AM" +msgstr "" + +#: src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:5438 src/gui/insEdit.cpp:6516 +msgid "AM Depth" +msgstr "Profundidade de AM" + +#: src/gui/insEdit.cpp:50 +msgid "Vibrato Depth" +msgstr "Profundidade Vibrato" + +#: src/gui/insEdit.cpp:50 +msgid "Sustained" +msgstr "Env. Sustentado" + +#: src/gui/insEdit.cpp:50 +msgid "Level Scaling" +msgstr "Escalonamento de Nível" + +#: src/gui/insEdit.cpp:50 +msgid "Vibrato" +msgstr "Vibrato" + +#: src/gui/insEdit.cpp:50 +msgid "Scale Rate" +msgstr "Escala de Taxas" + +#: src/gui/insEdit.cpp:50 +msgid "OP2 Half Sine" +msgstr "OP2 Meio Seno" + +#: src/gui/insEdit.cpp:50 +msgid "OP1 Half Sine" +msgstr "OP1 Meio Seno" + +#: src/gui/insEdit.cpp:50 +msgid "EnvShift" +msgstr "DeslocEnv" + +#: src/gui/insEdit.cpp:50 +msgid "Reverb" +msgstr "Reverb" + +#: src/gui/insEdit.cpp:50 +msgid "Fine" +msgstr "Ajuste fino" + +#: src/gui/insEdit.cpp:50 +msgid "LFO2 > Freq" +msgstr "LFO2 > Freq" + +#: src/gui/insEdit.cpp:50 +msgid "LFO2 > Amp" +msgstr "LFO2 > Amp" + +#: src/gui/insEdit.cpp:56 src/gui/insEdit.cpp:68 src/gui/insEdit.cpp:7391 +msgid "OP4 Noise Mode" +msgstr "Modo de Ruído do OP4" + +#: src/gui/insEdit.cpp:57 +msgid "Envelope Delay" +msgstr "Atraso de Envelope" + +#: src/gui/insEdit.cpp:58 src/gui/insEdit.cpp:70 +msgid "Output Level" +msgstr "Nível de Saída" + +#: src/gui/insEdit.cpp:59 +msgid "Modulation Input Level" +msgstr "Nível de Entrada de Modulação" + +#: src/gui/insEdit.cpp:60 +msgid "Left Output" +msgstr "Saída Esquerda" + +#: src/gui/insEdit.cpp:61 +msgid "Right Output" +msgstr "Saída Direita" + +#: src/gui/insEdit.cpp:62 +msgid "Coarse Tune (semitones)" +msgstr "Afinação Grossa (semitons)" + +#: src/gui/insEdit.cpp:64 +msgid "Fixed Frequency Mode" +msgstr "Modo de Frequência Fixa" + +#: src/gui/insEdit.cpp:69 +msgid "Env. Delay" +msgstr "Atraso Env." + +#: src/gui/insEdit.cpp:71 +msgid "ModInput" +msgstr "EntraMod." + +#: src/gui/insEdit.cpp:72 +msgid "Left" +msgstr "Esq." + +#: src/gui/insEdit.cpp:73 +msgid "Right" +msgstr "Dir." + +#: src/gui/insEdit.cpp:74 +msgid "Tune" +msgstr "Afin." + +#: src/gui/insEdit.cpp:76 src/gui/insEdit.cpp:610 src/gui/insEdit.cpp:3792 +#: src/gui/insEdit.cpp:4554 src/gui/insEdit.cpp:4848 +msgid "Fixed" +msgstr "F.Fixa" + +#: src/gui/insEdit.cpp:98 src/gui/insEdit.cpp:117 src/gui/insEdit.cpp:136 +#: src/gui/insEdit.cpp:156 +msgid "User" +msgstr "Usuário" + +#: src/gui/insEdit.cpp:99 +msgid "1. Violin" +msgstr "1. Violino" + +#: src/gui/insEdit.cpp:100 src/gui/insEdit.cpp:138 src/gui/insEdit.cpp:158 +msgid "2. Guitar" +msgstr "2. Violão" + +#: src/gui/insEdit.cpp:101 src/gui/insEdit.cpp:159 +msgid "3. Piano" +msgstr "3. Piano" + +#: src/gui/insEdit.cpp:102 src/gui/insEdit.cpp:160 +msgid "4. Flute" +msgstr "4. Flauta" + +#: src/gui/insEdit.cpp:103 src/gui/insEdit.cpp:122 src/gui/insEdit.cpp:161 +msgid "5. Clarinet" +msgstr "5. Clarinete" + +#: src/gui/insEdit.cpp:104 +msgid "6. Oboe" +msgstr "6. Oboé" + +#: src/gui/insEdit.cpp:105 src/gui/insEdit.cpp:124 src/gui/insEdit.cpp:143 +#: src/gui/insEdit.cpp:163 +msgid "7. Trumpet" +msgstr "7. Trompete" + +#: src/gui/insEdit.cpp:106 +msgid "8. Organ" +msgstr "8. Órgão" + +#: src/gui/insEdit.cpp:107 +msgid "9. Horn" +msgstr "9. Trompa" + +#: src/gui/insEdit.cpp:108 +msgid "10. Synth" +msgstr "10. Sintetizador" + +#: src/gui/insEdit.cpp:109 +msgid "11. Harpsichord" +msgstr "11. Cravo" + +#: src/gui/insEdit.cpp:110 src/gui/insEdit.cpp:129 src/gui/insEdit.cpp:148 +msgid "12. Vibraphone" +msgstr "12. Vibrafone" + +#: src/gui/insEdit.cpp:111 +msgid "13. Synth Bass" +msgstr "13. Baixo Sintético" + +#: src/gui/insEdit.cpp:112 +msgid "14. Acoustic Bass" +msgstr "14. Baixo Acústico" + +#: src/gui/insEdit.cpp:113 +msgid "15. Electric Guitar" +msgstr "15. Guitarra Elétrica" + +#: src/gui/insEdit.cpp:114 src/gui/insEdit.cpp:133 src/gui/insEdit.cpp:152 +#: src/gui/insEdit.cpp:172 src/gui/insEdit.cpp:3176 +msgid "Drums" +msgstr "Bateria" + +#: src/gui/insEdit.cpp:118 +msgid "1. Electric String" +msgstr "1. Cordas Elétricas" + +#: src/gui/insEdit.cpp:119 +msgid "2. Bow wow" +msgstr "2. Bow wow" + +#: src/gui/insEdit.cpp:120 src/gui/insEdit.cpp:139 +msgid "3. Electric Guitar" +msgstr "3. Guitarra Elétrica" + +#: src/gui/insEdit.cpp:121 +msgid "4. Organ" +msgstr "4. Órgão" + +#: src/gui/insEdit.cpp:123 +msgid "6. Saxophone" +msgstr "6. Saxofone" + +#: src/gui/insEdit.cpp:125 +msgid "8. Street Organ" +msgstr "8. Órgão de Rua" + +#: src/gui/insEdit.cpp:126 +msgid "9. Synth Brass" +msgstr "9. Synth Brass" + +#: src/gui/insEdit.cpp:127 +msgid "10. Electric Piano" +msgstr "10. Piano Elétrico" + +#: src/gui/insEdit.cpp:128 +msgid "11. Bass" +msgstr "11. Baixo" + +#: src/gui/insEdit.cpp:130 +msgid "13. Chime" +msgstr "13. Campainha" + +#: src/gui/insEdit.cpp:131 +msgid "14. Tom Tom II" +msgstr "14. Surdo 2" + +#: src/gui/insEdit.cpp:132 +msgid "15. Noise" +msgstr "15. Ruído" + +#: src/gui/insEdit.cpp:137 +msgid "1. Strings" +msgstr "1. Cordas" + +#: src/gui/insEdit.cpp:140 +msgid "4. Electric Piano" +msgstr "4. Piano Elétrico" + +#: src/gui/insEdit.cpp:141 +msgid "5. Flute" +msgstr "5. Flauta" + +#: src/gui/insEdit.cpp:142 +msgid "6. Marimba" +msgstr "6. Marimba" + +#: src/gui/insEdit.cpp:144 +msgid "8. Harmonica" +msgstr "8. Gaita" + +#: src/gui/insEdit.cpp:145 +msgid "9. Tuba" +msgstr "9. Tuba" + +#: src/gui/insEdit.cpp:146 +msgid "10. Synth Brass" +msgstr "10. Synth Brass" + +#: src/gui/insEdit.cpp:147 +msgid "11. Short Saw" +msgstr "11. Serra Curta" + +#: src/gui/insEdit.cpp:149 +msgid "13. Electric Guitar 2" +msgstr "13. Guitarra Elétrica 2" + +#: src/gui/insEdit.cpp:150 +msgid "14. Synth Bass" +msgstr "14. Baixo Sintético" + +#: src/gui/insEdit.cpp:151 +msgid "15. Sitar" +msgstr "15. Cítara" + +#: src/gui/insEdit.cpp:157 +msgid "1. Bell" +msgstr "1. Sino" + +#: src/gui/insEdit.cpp:162 +msgid "6. Rattling Bell" +msgstr "6. Sino Chacoalhante" + +#: src/gui/insEdit.cpp:164 +msgid "8. Reed Organ" +msgstr "8. Órgão de Palheta" + +#: src/gui/insEdit.cpp:165 +msgid "9. Soft Bell" +msgstr "9. Sino Suave" + +#: src/gui/insEdit.cpp:166 +msgid "10. Xylophone" +msgstr "10. Xilofone" + +#: src/gui/insEdit.cpp:167 +msgid "11. Vibraphone" +msgstr "11. Vibrafone" + +#: src/gui/insEdit.cpp:168 +msgid "12. Brass" +msgstr "12. Metais" + +#: src/gui/insEdit.cpp:169 +msgid "13. Bass Guitar" +msgstr "13. Baixo" + +#: src/gui/insEdit.cpp:170 +msgid "14. Synth" +msgstr "14. Sintetizador" + +#: src/gui/insEdit.cpp:171 +msgid "15. Chorus" +msgstr "15. Coro" + +#: src/gui/insEdit.cpp:178 src/gui/insEdit.cpp:189 +msgid "Half Sine" +msgstr "Meio Seno" + +#: src/gui/insEdit.cpp:179 src/gui/insEdit.cpp:190 +msgid "Absolute Sine" +msgstr "Seno Absoluto" + +#: src/gui/insEdit.cpp:180 +msgid "Quarter Sine" +msgstr "1/4 Seno" + +#: src/gui/insEdit.cpp:181 src/gui/insEdit.cpp:203 +msgid "Squished Sine" +msgstr "Seno Espremido" + +#: src/gui/insEdit.cpp:182 src/gui/insEdit.cpp:205 +msgid "Squished AbsSine" +msgstr "Seno Absoluto Espremido" + +#: src/gui/insEdit.cpp:184 src/gui/insEdit.cpp:195 +msgid "Derived Square" +msgstr "Dente de Serra Logarítmica" + +#: src/gui/insEdit.cpp:191 +msgid "Pulse Sine" +msgstr "Seno Pulsado" + +#: src/gui/insEdit.cpp:192 +msgid "Sine (Even Periods)" +msgstr "Seno (Períodos Pares)" + +#: src/gui/insEdit.cpp:193 +msgid "AbsSine (Even Periods)" +msgstr "Seno Absoluto (Períodos Pares)" + +#: src/gui/insEdit.cpp:201 +msgid "Cut Sine" +msgstr "Seno Cortado" + +#: src/gui/insEdit.cpp:202 +msgid "Cut Triangle" +msgstr "Triângulo Cortado" + +#: src/gui/insEdit.cpp:204 +msgid "Squished Triangle" +msgstr "Triângulo Espremido" + +#: src/gui/insEdit.cpp:206 +msgid "Squished AbsTriangle" +msgstr "Triângulo Absoluto Espremido" + +#: src/gui/insEdit.cpp:224 +msgid "Noise disabled" +msgstr "Ruído desabilitado" + +#: src/gui/insEdit.cpp:225 +msgid "Square + noise" +msgstr "Onda quadrada + ruído" + +#: src/gui/insEdit.cpp:226 +msgid "Ringmod from OP3 + noise" +msgstr "Modulação anel do OP3 + ruído" + +#: src/gui/insEdit.cpp:227 +msgid "" +"Ringmod from OP3 + double pitch ModInput\n" +"WARNING - has emulation issues; subject to change" +msgstr "" + +#: src/gui/insEdit.cpp:232 +msgid "Bitwise AND" +msgstr "" + +#: src/gui/insEdit.cpp:233 +msgid "Bitwise OR" +msgstr "" + +#: src/gui/insEdit.cpp:234 +msgid "Bitwise XOR" +msgstr "" + +#: src/gui/insEdit.cpp:239 src/gui/insEdit.cpp:390 +msgid "gate" +msgstr "gate" + +#: src/gui/insEdit.cpp:240 src/gui/insEdit.cpp:391 +msgid "sync" +msgstr "sincron." + +#: src/gui/insEdit.cpp:241 src/gui/insEdit.cpp:392 +msgid "ring" +msgstr "anel" + +#: src/gui/insEdit.cpp:327 +msgid "How did you even" +msgstr "Como diabos você..." + +#: src/gui/insEdit.cpp:335 +msgid "triangle" +msgstr "triângulo" + +#: src/gui/insEdit.cpp:336 src/gui/insEdit.cpp:5821 +msgid "saw" +msgstr "serra" + +#: src/gui/insEdit.cpp:337 src/gui/insEdit.cpp:5827 +msgid "pulse" +msgstr "pulso" + +#: src/gui/insEdit.cpp:338 src/gui/insEdit.cpp:344 src/gui/insEdit.cpp:373 +#: src/gui/insEdit.cpp:424 src/gui/insEdit.cpp:429 src/gui/insEdit.cpp:5833 +msgid "noise" +msgstr "ruído" + +#: src/gui/insEdit.cpp:343 +msgid "tone" +msgstr "tom" + +#: src/gui/insEdit.cpp:345 +msgid "envelope" +msgstr "envelope" + +#: src/gui/insEdit.cpp:350 +msgid "hold" +msgstr "segurar" + +#: src/gui/insEdit.cpp:351 +msgid "alternate" +msgstr "alternar" + +#: src/gui/insEdit.cpp:352 src/gui/insEdit.cpp:364 +msgid "direction" +msgstr "direção" + +#: src/gui/insEdit.cpp:353 src/gui/insEdit.cpp:436 +msgid "enable" +msgstr "habilitar" + +#: src/gui/insEdit.cpp:357 src/gui/insEdit.cpp:368 +msgid "enabled" +msgstr "habilitado" + +#: src/gui/insEdit.cpp:361 +msgid "mirror" +msgstr "espelhar" + +#: src/gui/insEdit.cpp:365 +msgid "resolution" +msgstr "resolução" + +#: src/gui/insEdit.cpp:366 +msgid "fixed" +msgstr "fixo" + +#: src/gui/insEdit.cpp:367 +msgid "N/A" +msgstr "N/A" + +#: src/gui/insEdit.cpp:374 +msgid "echo" +msgstr "eco" + +#: src/gui/insEdit.cpp:375 +msgid "pitch mod" +msgstr "mod. de tom" + +#: src/gui/insEdit.cpp:376 src/gui/insEdit.cpp:508 +msgid "invert right" +msgstr "inverter direita" + +#: src/gui/insEdit.cpp:377 src/gui/insEdit.cpp:509 +msgid "invert left" +msgstr "inverter esquerda" + +#: src/gui/insEdit.cpp:382 src/gui/insEdit.cpp:5905 +msgid "low" +msgstr "baixa" + +#: src/gui/insEdit.cpp:383 src/gui/insEdit.cpp:5911 +msgid "band" +msgstr "banda" + +#: src/gui/insEdit.cpp:384 src/gui/insEdit.cpp:5917 +msgid "high" +msgstr "alta" + +#: src/gui/insEdit.cpp:385 src/gui/insEdit.cpp:5924 +msgid "ch3off" +msgstr "cn3desl" + +#: src/gui/insEdit.cpp:393 +msgid "test" +msgstr "teste" + +#: src/gui/insEdit.cpp:398 +msgid "15KHz" +msgstr "" + +#: src/gui/insEdit.cpp:399 +msgid "filter 2+4" +msgstr "filtrar 2+4" + +#: src/gui/insEdit.cpp:400 +msgid "filter 1+3" +msgstr "filtrar 1+3" + +#: src/gui/insEdit.cpp:401 +msgid "16-bit 3+4" +msgstr "16-bit 3+4" + +#: src/gui/insEdit.cpp:402 +msgid "16-bit 1+2" +msgstr "16-bit 1+2" + +#: src/gui/insEdit.cpp:403 +msgid "high3" +msgstr "altafreq3" + +#: src/gui/insEdit.cpp:404 +msgid "high1" +msgstr "altafreq1" + +#: src/gui/insEdit.cpp:405 +msgid "poly9" +msgstr "poly9" + +#: src/gui/insEdit.cpp:414 +msgid "16'" +msgstr "" + +#: src/gui/insEdit.cpp:415 +msgid "8'" +msgstr "" + +#: src/gui/insEdit.cpp:416 +msgid "4'" +msgstr "" + +#: src/gui/insEdit.cpp:417 +msgid "2'" +msgstr "" + +#: src/gui/insEdit.cpp:418 +msgid "sustain" +msgstr "sustentação" + +#: src/gui/insEdit.cpp:423 +msgid "square" +msgstr "quadrada" + +#: src/gui/insEdit.cpp:431 +msgid "surround" +msgstr "surround" + +#: src/gui/insEdit.cpp:437 +msgid "oneshot" +msgstr "oneshot" + +#: src/gui/insEdit.cpp:438 +msgid "split L/R" +msgstr "separar esq/dir" + +#: src/gui/insEdit.cpp:439 +msgid "HinvR" +msgstr "HinvR" + +#: src/gui/insEdit.cpp:440 +msgid "VinvR" +msgstr "VinvR" + +#: src/gui/insEdit.cpp:441 +msgid "HinvL" +msgstr "HinvL" + +#: src/gui/insEdit.cpp:442 +msgid "VinvL" +msgstr "VinvL" + +#: src/gui/insEdit.cpp:447 src/gui/insEdit.cpp:476 +msgid "ring mod" +msgstr "mod anel" + +#: src/gui/insEdit.cpp:448 +msgid "low pass" +msgstr "passa baixa" + +#: src/gui/insEdit.cpp:449 src/gui/insEdit.cpp:475 +msgid "high pass" +msgstr "passa alta" + +#: src/gui/insEdit.cpp:450 +msgid "band pass" +msgstr "passa banda" + +#: src/gui/insEdit.cpp:459 +msgid "enable tap B" +msgstr "habilitar tap B" + +#: src/gui/insEdit.cpp:460 +msgid "AM with slope" +msgstr "AM com rampa" + +#: src/gui/insEdit.cpp:465 +msgid "invert B" +msgstr "inverter B" + +#: src/gui/insEdit.cpp:466 +msgid "invert A" +msgstr "inverter A" + +#: src/gui/insEdit.cpp:467 +msgid "reset B" +msgstr "reiniciar B" + +#: src/gui/insEdit.cpp:468 +msgid "reset A" +msgstr "reiniciar A" + +#: src/gui/insEdit.cpp:469 +msgid "clip B" +msgstr "cortar B" + +#: src/gui/insEdit.cpp:470 +msgid "clip A" +msgstr "cortar A" + +#: src/gui/insEdit.cpp:477 +msgid "swap counters (noise)" +msgstr "trocar contadores (ruído)" + +#: src/gui/insEdit.cpp:478 +msgid "low pass (noise)" +msgstr "passa baixa (ruído)" + +#: src/gui/insEdit.cpp:485 +msgid "rear right" +msgstr "traseira direita" + +#: src/gui/insEdit.cpp:486 +msgid "rear left" +msgstr "traseira esquerda" + +#: src/gui/insEdit.cpp:491 +msgid "on" +msgstr "ligado" + +#: src/gui/insEdit.cpp:496 +msgid "k1 slowdown" +msgstr "desacelerar k1" + +#: src/gui/insEdit.cpp:497 +msgid "k2 slowdown" +msgstr "desacelerar k2" + +#: src/gui/insEdit.cpp:502 +msgid "pause" +msgstr "pausar" + +#: src/gui/insEdit.cpp:503 +msgid "reverse" +msgstr "reverter" + +#: src/gui/insEdit.cpp:521 +msgid "Subtract" +msgstr "Subtrair" + +#: src/gui/insEdit.cpp:522 +msgid "Average" +msgstr "Média" + +#: src/gui/insEdit.cpp:523 src/gui/insEdit.cpp:2037 +msgid "Phase" +msgstr "Fase" + +#: src/gui/insEdit.cpp:524 +msgid "Chorus" +msgstr "Coro" + +#: src/gui/insEdit.cpp:528 +msgid "None (dual)" +msgstr "Nenhum (dupla)" + +#: src/gui/insEdit.cpp:529 +msgid "Wipe" +msgstr "Wipe" + +#: src/gui/insEdit.cpp:531 +msgid "Fade (ping-pong)" +msgstr "Misturar (ping-pong)" + +#: src/gui/insEdit.cpp:532 +msgid "Overlay" +msgstr "Sobrepor" + +#: src/gui/insEdit.cpp:533 +msgid "Negative Overlay" +msgstr "Sobreposição Negativa" + +#: src/gui/insEdit.cpp:534 +msgid "Slide" +msgstr "Deslizar" + +#: src/gui/insEdit.cpp:535 +msgid "Mix Chorus" +msgstr "Coro Misto" + +#: src/gui/insEdit.cpp:536 +msgid "Phase Modulation" +msgstr "Modulação de Fase" + +#: src/gui/insEdit.cpp:541 +msgid "Sweep" +msgstr "Sweep" + +#: src/gui/insEdit.cpp:542 src/gui/insEdit.cpp:552 +msgid "Wait" +msgstr "Aguardar" + +#: src/gui/insEdit.cpp:543 src/gui/insEdit.cpp:553 +msgid "Wait for Release" +msgstr "Aguardar pelo Repouso" + +#: src/gui/insEdit.cpp:545 src/gui/insEdit.cpp:555 +msgid "Loop until Release" +msgstr "Repetir até o Repouso" + +#: src/gui/insEdit.cpp:549 +msgid "Volume Sweep" +msgstr "Sweep de Volume" + +#: src/gui/insEdit.cpp:550 +msgid "Frequency Sweep" +msgstr "Sweep de Frequência" + +#: src/gui/insEdit.cpp:551 +msgid "Cutoff Sweep" +msgstr "Sweep de Ponto de Corte" + +#: src/gui/insEdit.cpp:559 src/gui/insEdit.cpp:6604 +msgid "Direct" +msgstr "Direto" + +#: src/gui/insEdit.cpp:560 src/gui/insEdit.cpp:6608 +msgid "Decrease (linear)" +msgstr "Diminuir (linear)" + +#: src/gui/insEdit.cpp:561 src/gui/insEdit.cpp:6612 +msgid "Decrease (logarithmic)" +msgstr "Diminuir (logarítmico)" + +#: src/gui/insEdit.cpp:562 src/gui/insEdit.cpp:6616 +msgid "Increase (linear)" +msgstr "Aumentar (linear)" + +#: src/gui/insEdit.cpp:563 src/gui/insEdit.cpp:6620 +msgid "Increase (bent line)" +msgstr "Aumentar (linha torta)" + +#: src/gui/insEdit.cpp:611 +msgid "Relative" +msgstr "Relativo" + +#: src/gui/insEdit.cpp:616 +#, c-format +msgid "%d: +%d (exponential)" +msgstr "" + +#: src/gui/insEdit.cpp:619 +#, c-format +msgid "%d: +%d (linear)" +msgstr "" + +#: src/gui/insEdit.cpp:622 +#, c-format +msgid "%d: -%d (exponential)" +msgstr "" + +#: src/gui/insEdit.cpp:625 +#, c-format +msgid "%d: -%d (linear)" +msgstr "" + +#: src/gui/insEdit.cpp:627 +#, c-format +msgid "%d: %d (direct)" +msgstr "" + +#: src/gui/insEdit.cpp:660 +msgid "Random" +msgstr "Aleatório" + +#: src/gui/insEdit.cpp:1610 +msgid "" +"left click to restart\n" +"middle click to pause\n" +"right click to see algorithm" +msgstr "" +"clique com o botão esquerdo para reiniciar\n" +"clique com o botão do meio para pausar\n" +"clique com o botão direito para ver o algoritmo" + +#: src/gui/insEdit.cpp:1620 +msgid "" +"left click to configure TL scaling\n" +"right click to see FM preview" +msgstr "" +"clique com o botão esquerdo para configurar o escalonamento de TL\n" +"clique com o botão direito para ver a previsão da onda FM" + +#: src/gui/insEdit.cpp:1624 +msgid "right click to see FM preview" +msgstr "clique com o botão direito para ver a previsão da onda FM" + +#: src/gui/insEdit.cpp:1639 +msgid "operator level changes with volume?" +msgstr "nível do operador muda com o volume?" + +#: src/gui/insEdit.cpp:1648 +msgid "AUTO##OPKVS" +msgstr "AUTO##OPKVS" + +#: src/gui/insEdit.cpp:1650 +msgid "NO##OPKVS" +msgstr "NÃO##OPKVS" + +#: src/gui/insEdit.cpp:1652 +msgid "YES##OPKVS" +msgstr "SIM##OPKVS" + +#: src/gui/insEdit.cpp:1900 src/gui/insEdit.cpp:2005 +msgid "Bottom" +msgstr "Base" + +#: src/gui/insEdit.cpp:1940 +msgid "Hold" +msgstr "Retenção" + +#: src/gui/insEdit.cpp:1949 +msgid "SusTime" +msgstr "Tempo Sust." + +#: src/gui/insEdit.cpp:1969 +msgid "SusDecay" +msgstr "Decaim. Sust." + +#: src/gui/insEdit.cpp:2047 +msgid "Shape" +msgstr "Formato" + +#: src/gui/insEdit.cpp:2100 +msgid "Macro type: Sequence" +msgstr "Tipo de macro: Sequência" + +#: src/gui/insEdit.cpp:2103 +msgid "Macro type: ADSR" +msgstr "Tipo de macro: ADSR" + +#: src/gui/insEdit.cpp:2106 +msgid "Macro type: LFO" +msgstr "Tipo de macro: LFO" + +#: src/gui/insEdit.cpp:2109 +msgid "Macro type: What's going on here?" +msgstr "Tipo de macro: Que porcaria tá acontecendo aqui?" + +#: src/gui/insEdit.cpp:2122 +msgid "Delay/Step Length" +msgstr "Atraso/Tamanho do passo" + +#: src/gui/insEdit.cpp:2125 +msgid "Step Length (ticks)##IMacroSpeed" +msgstr "Tamanho do passo (ticks)##IMacroSpeed" + +#: src/gui/insEdit.cpp:2129 +msgid "Delay##IMacroDelay" +msgstr "Atraso##IMacroDelay" + +#: src/gui/insEdit.cpp:2142 +msgid "Release mode: Active (jump to release pos)" +msgstr "Modo de repouso: Ativo (pula para a posição de repouso)" + +#: src/gui/insEdit.cpp:2144 +msgid "Release mode: Passive (delayed release)" +msgstr "Modo de repouso: Passivo (repouso atrasado)" + +#: src/gui/insEdit.cpp:2393 +msgid "StepLen" +msgstr "Compr. Passo" + +#: src/gui/insEdit.cpp:2401 +msgid "Delay" +msgstr "Atraso" + +#: src/gui/insEdit.cpp:2425 +msgid "The heck? No, this isn't even working correctly..." +msgstr "Cacildis? Não, não, isso aí tá com problema..." + +#: src/gui/insEdit.cpp:2428 +msgid "The only problem with that selectedMacro is that it's a bug..." +msgstr "O único problema com aquela \"selectedMacro\" é que ela é um bug..." + +#: src/gui/insEdit.cpp:2589 +msgid "(copying)" +msgstr "(copiando)" + +#: src/gui/insEdit.cpp:2591 +msgid "(swapping)" +msgstr "(trocando)" + +#: src/gui/insEdit.cpp:2595 +msgid "" +"- drag to swap operator\n" +"- shift-drag to copy operator" +msgstr "" +"- arraste para trocar operadores\n" +"- shift+arraste para copiar operador" + +#: src/gui/insEdit.cpp:2632 +msgid "new DPCM features disabled (compatibility)!" +msgstr "novos recursos de DPCM desabilitados (compatibilidade)!" + +#: src/gui/insEdit.cpp:2633 +msgid "click here to enable them." +msgstr "clique aqui para habilitá-los." + +#: src/gui/insEdit.cpp:2644 +msgid "none selected" +msgstr "nenhuma selecionada" + +#: src/gui/insEdit.cpp:2657 +msgid "Use sample" +msgstr "Usar amostra" + +#: src/gui/insEdit.cpp:2659 +msgid "Sample bank slot##BANKSLOT" +msgstr "Vaga do banco de samples##BANKSLOT" + +#: src/gui/insEdit.cpp:2681 +msgid "Use wavetable (Amiga/Generic DAC only)" +msgstr "Utilizar wavetable (Amiga/DAC Genérico somente)" + +#: src/gui/insEdit.cpp:2681 +msgid "Use wavetable" +msgstr "Utilizar wavetable" + +#: src/gui/insEdit.cpp:2708 +msgid "Use sample map" +msgstr "Utilizar mapa de samples" + +#: src/gui/insEdit.cpp:2730 +msgid "delta" +msgstr "delta" + +#: src/gui/insEdit.cpp:2736 +msgid "sample name" +msgstr "nome da sample" + +#: src/gui/insEdit.cpp:3001 +msgid "set entire map to this pitch" +msgstr "definir mapa inteiro para esse tom" + +#: src/gui/insEdit.cpp:3009 +msgid "set entire map to this delta counter value" +msgstr "definir mapa inteiro para esse valor de contador delta" + +#: src/gui/insEdit.cpp:3018 +msgid "set entire map to this note" +msgstr "definir mapa inteiro para essa nota" + +#: src/gui/insEdit.cpp:3027 +msgid "set entire map to this sample" +msgstr "definir mapa inteiro para essa sample" + +#: src/gui/insEdit.cpp:3037 +msgid "reset pitches" +msgstr "redefinir tons" + +#: src/gui/insEdit.cpp:3042 +msgid "clear delta counter values" +msgstr "limpar valores de contador delta" + +#: src/gui/insEdit.cpp:3048 +msgid "reset notes" +msgstr "redefinir notas" + +#: src/gui/insEdit.cpp:3054 +msgid "clear map samples" +msgstr "limpar samples do mapa" + +#: src/gui/insEdit.cpp:3148 +msgid "Request from TX81Z" +msgstr "Requisitar do TX81Z" + +#: src/gui/insEdit.cpp:3234 +#, c-format +msgid "%s name" +msgstr "Nomes do %s" + +#: src/gui/insEdit.cpp:3286 +msgid "Fixed frequency mode" +msgstr "Modo de frequência fixa" + +#: src/gui/insEdit.cpp:3288 +msgid "" +"when enabled, drums will be set to the specified frequencies, ignoring the " +"note." +msgstr "" +"quando habilitado, os canais de bateria serão definidos para as frequências " +"especificadas, ignorando a nota." + +#: src/gui/insEdit.cpp:3296 +msgid "Drum" +msgstr "Tambor" + +#: src/gui/insEdit.cpp:3298 src/gui/insEdit.cpp:3798 src/gui/insEdit.cpp:3904 +#: src/gui/insEdit.cpp:4404 src/gui/insEdit.cpp:4468 src/gui/insEdit.cpp:5068 +#: src/gui/insEdit.cpp:5518 +msgid "Block" +msgstr "Bloco" + +#: src/gui/insEdit.cpp:3300 src/gui/insEdit.cpp:3803 src/gui/insEdit.cpp:3909 +#: src/gui/insEdit.cpp:4993 src/gui/insEdit.cpp:5079 src/gui/insEdit.cpp:5519 +msgid "FreqNum" +msgstr "NúmFreq." + +#: src/gui/insEdit.cpp:3303 +msgid "Snare/Hi-hat" +msgstr "Caixa/Chimbal" + +#: src/gui/insEdit.cpp:3304 +msgid "Tom/Top" +msgstr "Surdo/Prato" + +#: src/gui/insEdit.cpp:3314 +msgid "Volume##TL" +msgstr "Volume##TL" + +#: src/gui/insEdit.cpp:3316 +msgid "this volume slider only works in compatibility (non-drums) system." +msgstr "" +"este slider de volume só funciona no sistema de compatibilidade (não-" +"bateria)." + +#: src/gui/insEdit.cpp:3626 +msgid "Env" +msgstr "Env" + +#: src/gui/insEdit.cpp:3980 src/gui/insEdit.cpp:4346 src/gui/insEdit.cpp:4396 +#: src/gui/insEdit.cpp:5104 +msgid "OPL2/3 only (last 4 waveforms are OPL3 only)" +msgstr "OPL2/OPL3 somente (as últimas 4 ondas são somente para o OPL3)" + +#: src/gui/insEdit.cpp:4079 src/gui/insEdit.cpp:4788 +#, c-format +msgid "Envelope 2 (kick only)" +msgstr "Envelope 2 (bumbo somente)" + +#: src/gui/insEdit.cpp:4084 +#, c-format +msgid "Operator %d" +msgstr "Operador %d" + +#: src/gui/insEdit.cpp:4414 +msgid "Freq" +msgstr "Freq." + +#: src/gui/insEdit.cpp:4443 +msgid "Only on YM2151 (OPM)" +msgstr "" + +#: src/gui/insEdit.cpp:4466 +msgid "Blk" +msgstr "Blc" + +#: src/gui/insEdit.cpp:4479 +msgid "F" +msgstr "F" + +#: src/gui/insEdit.cpp:4481 +msgid "Frequency (F-Num)" +msgstr "Frequência (Núm-F)" + +#: src/gui/insEdit.cpp:4833 +msgid "SSG On" +msgstr "Env. Sust." + +#: src/gui/insEdit.cpp:5206 src/gui/insEdit.cpp:5207 +msgid "waiting..." +msgstr "aguardando..." + +#: src/gui/insEdit.cpp:5210 src/gui/insEdit.cpp:5211 +msgid "no instrument selected" +msgstr "nenhum instrumento selecionado" + +#: src/gui/insEdit.cpp:5393 +msgid "" +"none of the currently present chips are able to play this instrument type!" +msgstr "" +"nenhum dos chips atualmente presentes são capazes de reproduzir esse tipo de " +"instrumento!" + +#: src/gui/insEdit.cpp:5413 +msgid "FM Macros" +msgstr "Macros FM" + +#: src/gui/insEdit.cpp:5435 src/gui/insEdit.cpp:5440 +msgid "LFO Speed" +msgstr "Velocidade do LFO" + +#: src/gui/insEdit.cpp:5439 src/gui/insEdit.cpp:6514 +msgid "PM Depth" +msgstr "Profundidade de PM" + +#: src/gui/insEdit.cpp:5441 +msgid "LFO Shape" +msgstr "Formato do LFO" + +#: src/gui/insEdit.cpp:5444 +msgid "OpMask" +msgstr "Máscara de Op." + +#: src/gui/insEdit.cpp:5446 +msgid "AM Depth 2" +msgstr "Profundidade do AM 2" + +#: src/gui/insEdit.cpp:5447 +msgid "PM Depth 2" +msgstr "Profundidade do PM 2" + +#: src/gui/insEdit.cpp:5448 +msgid "LFO2 Speed" +msgstr "Velocidade do LFO2" + +#: src/gui/insEdit.cpp:5449 +msgid "LFO2 Shape" +msgstr "Formato do LFO2" + +#: src/gui/insEdit.cpp:5458 +#, c-format +msgid "Operator Macros" +msgstr "" + +#: src/gui/insEdit.cpp:5460 +#, c-format +msgid "OP%d Macros" +msgstr "Macros OP%d" + +#: src/gui/insEdit.cpp:5521 +msgid "Op. Arpeggio" +msgstr "Arpejo Op." + +#: src/gui/insEdit.cpp:5522 +msgid "Op. Pitch" +msgstr "Tom Op." + +#: src/gui/insEdit.cpp:5531 +msgid "Op. Panning" +msgstr "Balanço Op." + +#: src/gui/insEdit.cpp:5558 +msgid "Use software envelope" +msgstr "Utilizar envelope em software" + +#: src/gui/insEdit.cpp:5559 +msgid "Initialize envelope on every note" +msgstr "Inicializar envelope em cada nota" + +#: src/gui/insEdit.cpp:5560 +msgid "Double wave length (GBA only)" +msgstr "" + +#: src/gui/insEdit.cpp:5589 src/gui/insEdit.cpp:5666 +msgid "Sound Length" +msgstr "Comprimento do som" + +#: src/gui/insEdit.cpp:5592 src/gui/insEdit.cpp:5666 +msgid "Infinity" +msgstr "Infinito" + +#: src/gui/insEdit.cpp:5596 +msgid "Direction" +msgstr "Direção" + +#: src/gui/insEdit.cpp:5599 src/gui/insEdit.cpp:5669 src/gui/insEdit.cpp:5697 +#: src/gui/insEdit.cpp:6008 src/gui/insEdit.cpp:6051 +msgid "Up" +msgstr "Cima" + +#: src/gui/insEdit.cpp:5604 src/gui/insEdit.cpp:5674 src/gui/insEdit.cpp:5702 +#: src/gui/insEdit.cpp:6013 src/gui/insEdit.cpp:6056 +msgid "Down" +msgstr "Baixo" + +#: src/gui/insEdit.cpp:5620 src/gui/insEdit.cpp:5953 +msgid "Hardware Sequence" +msgstr "Sequência de Hardware" + +#: src/gui/insEdit.cpp:5630 src/gui/insEdit.cpp:5963 +msgid "Tick" +msgstr "Tick" + +#: src/gui/insEdit.cpp:5632 src/gui/insEdit.cpp:5965 +msgid "Command" +msgstr "Comando" + +#: src/gui/insEdit.cpp:5634 src/gui/insEdit.cpp:5967 +msgid "Move/Remove" +msgstr "Mover/Remover" + +#: src/gui/insEdit.cpp:5663 +msgid "Env Length" +msgstr "Comprimento do Envelope" + +#: src/gui/insEdit.cpp:5690 +msgid "Shift" +msgstr "Deslocar" + +#: src/gui/insEdit.cpp:5717 src/gui/insEdit.cpp:6073 +msgid "Ticks" +msgstr "Ticks" + +#: src/gui/insEdit.cpp:5736 src/gui/insEdit.cpp:6092 src/gui/insEdit.cpp:6239 +msgid "Position" +msgstr "Posição" + +#: src/gui/insEdit.cpp:5815 +msgid "tri" +msgstr "tri" + +#: src/gui/insEdit.cpp:5882 +msgid "Ring Modulation" +msgstr "Modulação de Anel" + +#: src/gui/insEdit.cpp:5886 +msgid "Oscillator Sync" +msgstr "Sincronização de Osciladores" + +#: src/gui/insEdit.cpp:5890 +msgid "Enable filter" +msgstr "Habilitar filtro" + +#: src/gui/insEdit.cpp:5891 +msgid "Initialize filter" +msgstr "Inicializar filtro" + +#: src/gui/insEdit.cpp:5894 src/gui/insEdit.cpp:5897 src/gui/insEdit.cpp:6951 +#: src/gui/insEdit.cpp:7215 src/gui/insEdit.cpp:7476 +msgid "Cutoff" +msgstr "Ponto de corte" + +#: src/gui/insEdit.cpp:5902 src/gui/insEdit.cpp:6408 src/gui/insEdit.cpp:6952 +#: src/gui/insEdit.cpp:7179 src/gui/insEdit.cpp:7477 +msgid "Filter Mode" +msgstr "Modo de filtro" + +#: src/gui/insEdit.cpp:5931 src/gui/insEdit.cpp:7485 +msgid "Noise Mode" +msgstr "Modo de Ruído" + +#: src/gui/insEdit.cpp:5932 +msgid "Wave Mix Mode" +msgstr "Modo de Mistura de Ondas" + +#: src/gui/insEdit.cpp:5935 +msgid "Absolute Cutoff Macro" +msgstr "Macro de Corte Absoluta" + +#: src/gui/insEdit.cpp:5939 +msgid "Absolute Duty Macro" +msgstr "Macro de Ciclo de Trab. Absoluta" + +#: src/gui/insEdit.cpp:5945 +msgid "Don't test before new note" +msgstr "Não testar antes de uma nova nota" + +#: src/gui/insEdit.cpp:5950 +msgid "Switch roles of frequency and phase reset timer" +msgstr "Trocar papéis dos temporizadores de frequência e redefinição de fase" + +#: src/gui/insEdit.cpp:5997 src/gui/insEdit.cpp:6040 +msgid "Period" +msgstr "Período" + +#: src/gui/insEdit.cpp:6002 src/gui/insEdit.cpp:6045 src/gui/insEdit.cpp:6892 +msgid "Amount" +msgstr "Quantidade" + +#: src/gui/insEdit.cpp:6005 src/gui/insEdit.cpp:6048 +msgid "Bound" +msgstr "Limite" + +#: src/gui/insEdit.cpp:6021 +msgid "Flip" +msgstr "Virar" + +#: src/gui/insEdit.cpp:6210 +msgid "Load waveform" +msgstr "Carregar wavetable" + +#: src/gui/insEdit.cpp:6215 +msgid "" +"when enabled, a waveform will be loaded into RAM.\n" +"when disabled, only the offset and length change." +msgstr "" +"quando habilitado, uma wavetable será carregada em RAM.\n" +"quando desabilitado, somente o deslocamento e comprimento serão alterados." + +#: src/gui/insEdit.cpp:6219 +msgid "Waveform##WAVE" +msgstr "Forma de onda##WAVE" + +#: src/gui/insEdit.cpp:6227 +msgid "Per-channel wave position/length" +msgstr "Posição/comprimento de onda por canal" + +#: src/gui/insEdit.cpp:6237 +msgid "Ch" +msgstr "Can" + +#: src/gui/insEdit.cpp:6286 +msgid "Compatibility mode" +msgstr "Modo de compatibilidade" + +#: src/gui/insEdit.cpp:6288 +msgid "" +"only use for compatibility with .dmf modules!\n" +"- initializes modulation table with first wavetable\n" +"- does not alter modulation parameters on instrument change" +msgstr "" +"use apenas para compatibilidade com módulos .dmf!\n" +"- inicializa a tabela de modulação com a primeira wavetable\n" +"- não altera os parâmetros de modulação com mudança de instrumento" + +#: src/gui/insEdit.cpp:6290 +msgid "Modulation depth" +msgstr "Profundidade de modulação" + +#: src/gui/insEdit.cpp:6294 +msgid "Modulation speed" +msgstr "Velocidade de modulação" + +#: src/gui/insEdit.cpp:6298 +msgid "Modulation table" +msgstr "Tabela de modulação" + +#: src/gui/insEdit.cpp:6347 +msgid "Set modulation table (channel 5 only)" +msgstr "Definir tabela de modulação (somente canal 5)" + +#: src/gui/insEdit.cpp:6411 src/gui/insEdit.cpp:7184 +msgid "Filter K1" +msgstr "Coef. K1 do filtro" + +#: src/gui/insEdit.cpp:6413 src/gui/insEdit.cpp:7185 +msgid "Filter K2" +msgstr "Coef. K2 do filtro" + +#: src/gui/insEdit.cpp:6417 +msgid "Envelope length" +msgstr "Comprimento do envelope" + +#: src/gui/insEdit.cpp:6420 +msgid "Left Volume Ramp" +msgstr "Rampa do volume esquerdo" + +#: src/gui/insEdit.cpp:6422 +msgid "Right Volume Ramp" +msgstr "Rampa do volume direito" + +#: src/gui/insEdit.cpp:6425 +msgid "Filter K1 Ramp" +msgstr "Rampa do coef. K1 do filtro" + +#: src/gui/insEdit.cpp:6427 +msgid "Filter K2 Ramp" +msgstr "Rampa do coef. K2 do filtro" + +#: src/gui/insEdit.cpp:6430 +msgid "K1 Ramp Slowdown" +msgstr "Desaceleração da rampa do K1" + +#: src/gui/insEdit.cpp:6432 +msgid "K2 Ramp Slowdown" +msgstr "Desaceleração da rampa do K2" + +#: src/gui/insEdit.cpp:6454 +msgid "Attack Rate" +msgstr "Taxa de Ataque" + +#: src/gui/insEdit.cpp:6460 +msgid "Decay 1 Rate" +msgstr "Taxa de Decaimento 1" + +#: src/gui/insEdit.cpp:6466 +msgid "Decay Level" +msgstr "Nível de Decaimento" + +#: src/gui/insEdit.cpp:6472 +msgid "Decay 2 Rate" +msgstr "Taxa de Decaimento 2" + +#: src/gui/insEdit.cpp:6478 +msgid "Release Rate" +msgstr "Taxa de Repouso" + +#: src/gui/insEdit.cpp:6484 +msgid "Rate Correction" +msgstr "Correção de Taxa" + +#: src/gui/insEdit.cpp:6512 +msgid "LFO Rate" +msgstr "Taxa de LFO" + +#: src/gui/insEdit.cpp:6523 +msgid "Use envelope" +msgstr "Usar envelope" + +#: src/gui/insEdit.cpp:6576 +msgid "Sustain/release mode:" +msgstr "Modo de sustentação/repouso:" + +#: src/gui/insEdit.cpp:6577 +msgid "Direct (cut on release)" +msgstr "Direto (cortar no repouso)" + +#: src/gui/insEdit.cpp:6580 +msgid "Effective (linear decrease)" +msgstr "Efetivo (redução linear)" + +#: src/gui/insEdit.cpp:6583 +msgid "Effective (exponential decrease)" +msgstr "Efetivo (redução exponencial)" + +#: src/gui/insEdit.cpp:6586 +msgid "Delayed (write R on release)" +msgstr "Atrasado (escrever R no momento do repouso)" + +#: src/gui/insEdit.cpp:6596 src/gui/insEdit.cpp:6597 +msgid "Gain Mode" +msgstr "Modo de Ganho" + +#: src/gui/insEdit.cpp:6599 src/gui/insEdit.cpp:6600 src/gui/insEdit.cpp:7205 +msgid "Gain" +msgstr "Ganho" + +#: src/gui/insEdit.cpp:6633 +msgid "" +"using decrease modes will not produce any sound at all, unless you know what " +"you are doing.\n" +"it is recommended to use the Gain macro for decrease instead." +msgstr "" +"utilizar modos de diminuição não irá produzir som nenhum, a não ser que você " +"saiba o que está fazendo.\n" +"é recomendado utilizar a macro de Ganho para diminuição ao invés disso." + +#: src/gui/insEdit.cpp:6703 +msgid "Enable synthesizer" +msgstr "Habilitar sintetizador" + +#: src/gui/insEdit.cpp:6721 +msgid "Single-waveform" +msgstr "Forma de onda única" + +#: src/gui/insEdit.cpp:6730 +msgid "Dual-waveform" +msgstr "Forma de onda dupla" + +#: src/gui/insEdit.cpp:6803 src/gui/insEdit.cpp:6812 +msgid "Wave 1" +msgstr "Onda 1" + +#: src/gui/insEdit.cpp:6808 src/gui/insEdit.cpp:6823 +msgid "" +"waveform macro is controlling wave 1!\n" +"this value will be ineffective." +msgstr "" +"a macro de forma de onda está controlando a onda 1! este valor não será " +"efetivo." + +#: src/gui/insEdit.cpp:6829 +msgid "Wave 2" +msgstr "Onda 2" + +#: src/gui/insEdit.cpp:6844 +msgid "Resume preview" +msgstr "Continuar previsão" + +#: src/gui/insEdit.cpp:6846 +msgid "Pause preview" +msgstr "Pausar previsão" + +#: src/gui/insEdit.cpp:6854 +msgid "Restart preview" +msgstr "Reiniciar previsão" + +#: src/gui/insEdit.cpp:6874 +msgid "Copy to new wavetable" +msgstr "Copiar para nova wavetable" + +#: src/gui/insEdit.cpp:6881 +msgid "Update Rate" +msgstr "Taxa de Atualização" + +#: src/gui/insEdit.cpp:6902 +msgid "Global" +msgstr "Global" + +#: src/gui/insEdit.cpp:6906 +msgid "" +"wavetable synthesizer disabled.\n" +"use the Waveform macro to set the wave for this instrument." +msgstr "" +"sintetizador de wavetable desabilitado.\n" +"use a macro de Forma de Onda para definir a onda para este instrumento." + +#: src/gui/insEdit.cpp:6912 +msgid "Macros" +msgstr "Macros" + +#: src/gui/insEdit.cpp:6921 src/gui/insEdit.cpp:6929 src/gui/insEdit.cpp:6938 +#: src/gui/insEdit.cpp:6947 src/gui/insEdit.cpp:6962 src/gui/insEdit.cpp:6976 +#: src/gui/insEdit.cpp:6988 src/gui/insEdit.cpp:7001 src/gui/insEdit.cpp:7017 +#: src/gui/insEdit.cpp:7023 src/gui/insEdit.cpp:7033 src/gui/insEdit.cpp:7040 +#: src/gui/insEdit.cpp:7046 src/gui/insEdit.cpp:7059 src/gui/insEdit.cpp:7066 +#: src/gui/insEdit.cpp:7073 src/gui/insEdit.cpp:7082 src/gui/insEdit.cpp:7092 +#: src/gui/insEdit.cpp:7100 src/gui/insEdit.cpp:7106 src/gui/insEdit.cpp:7114 +#: src/gui/insEdit.cpp:7121 src/gui/insEdit.cpp:7127 src/gui/insEdit.cpp:7137 +#: src/gui/insEdit.cpp:7149 src/gui/insEdit.cpp:7157 src/gui/insEdit.cpp:7173 +#: src/gui/insEdit.cpp:7178 src/gui/insEdit.cpp:7191 src/gui/insEdit.cpp:7198 +#: src/gui/insEdit.cpp:7209 src/gui/insEdit.cpp:7222 src/gui/insEdit.cpp:7231 +#: src/gui/insEdit.cpp:7238 src/gui/insEdit.cpp:7246 src/gui/insEdit.cpp:7270 +#: src/gui/insEdit.cpp:7277 src/gui/insEdit.cpp:7285 src/gui/insEdit.cpp:7296 +#: src/gui/insEdit.cpp:7303 src/gui/insEdit.cpp:7311 src/gui/insEdit.cpp:7319 +#: src/gui/insEdit.cpp:7328 src/gui/insEdit.cpp:7336 src/gui/insEdit.cpp:7342 +#: src/gui/insEdit.cpp:7348 src/gui/insEdit.cpp:7354 src/gui/insEdit.cpp:7359 +#: src/gui/insEdit.cpp:7366 src/gui/insEdit.cpp:7373 src/gui/insEdit.cpp:7381 +#: src/gui/insEdit.cpp:7390 src/gui/insEdit.cpp:7398 src/gui/insEdit.cpp:7410 +#: src/gui/insEdit.cpp:7423 src/gui/insEdit.cpp:7434 src/gui/insEdit.cpp:7444 +#: src/gui/insEdit.cpp:7452 src/gui/insEdit.cpp:7462 src/gui/insEdit.cpp:7471 +msgid "Arpeggio" +msgstr "Arpejo" + +#: src/gui/insEdit.cpp:6925 src/gui/insEdit.cpp:6932 src/gui/insEdit.cpp:6943 +#: src/gui/insEdit.cpp:6972 src/gui/insEdit.cpp:6984 src/gui/insEdit.cpp:6994 +#: src/gui/insEdit.cpp:7007 src/gui/insEdit.cpp:7054 src/gui/insEdit.cpp:7062 +#: src/gui/insEdit.cpp:7069 src/gui/insEdit.cpp:7088 src/gui/insEdit.cpp:7110 +#: src/gui/insEdit.cpp:7133 src/gui/insEdit.cpp:7144 src/gui/insEdit.cpp:7163 +#: src/gui/insEdit.cpp:7183 src/gui/insEdit.cpp:7194 src/gui/insEdit.cpp:7214 +#: src/gui/insEdit.cpp:7234 src/gui/insEdit.cpp:7242 src/gui/insEdit.cpp:7249 +#: src/gui/insEdit.cpp:7254 src/gui/insEdit.cpp:7260 src/gui/insEdit.cpp:7266 +#: src/gui/insEdit.cpp:7273 src/gui/insEdit.cpp:7281 src/gui/insEdit.cpp:7290 +#: src/gui/insEdit.cpp:7299 src/gui/insEdit.cpp:7307 src/gui/insEdit.cpp:7324 +#: src/gui/insEdit.cpp:7332 src/gui/insEdit.cpp:7338 src/gui/insEdit.cpp:7362 +#: src/gui/insEdit.cpp:7369 src/gui/insEdit.cpp:7377 src/gui/insEdit.cpp:7386 +#: src/gui/insEdit.cpp:7394 src/gui/insEdit.cpp:7402 src/gui/insEdit.cpp:7414 +#: src/gui/insEdit.cpp:7429 src/gui/insEdit.cpp:7440 src/gui/insEdit.cpp:7448 +#: src/gui/insEdit.cpp:7457 src/gui/insEdit.cpp:7475 +msgid "Phase Reset" +msgstr "Redef. de Fase" + +#: src/gui/insEdit.cpp:6939 src/gui/insEdit.cpp:7024 src/gui/insEdit.cpp:7210 +#: src/gui/insEdit.cpp:7247 +msgid "Duty/Noise" +msgstr "Ciclo de Trab./Ruído" + +#: src/gui/insEdit.cpp:6966 src/gui/insEdit.cpp:7288 +msgid "Surround" +msgstr "Surround" + +#: src/gui/insEdit.cpp:6968 src/gui/insEdit.cpp:6981 src/gui/insEdit.cpp:7026 +#: src/gui/insEdit.cpp:7085 src/gui/insEdit.cpp:7141 src/gui/insEdit.cpp:7159 +#: src/gui/insEdit.cpp:7180 src/gui/insEdit.cpp:7201 src/gui/insEdit.cpp:7225 +#: src/gui/insEdit.cpp:7278 src/gui/insEdit.cpp:7304 src/gui/insEdit.cpp:7321 +#: src/gui/insEdit.cpp:7329 src/gui/insEdit.cpp:7374 src/gui/insEdit.cpp:7383 +#: src/gui/insEdit.cpp:7399 src/gui/insEdit.cpp:7411 src/gui/insEdit.cpp:7426 +#: src/gui/insEdit.cpp:7454 src/gui/insEdit.cpp:7464 +msgid "Panning (left)" +msgstr "Balanço (esquerda)" + +#: src/gui/insEdit.cpp:6969 src/gui/insEdit.cpp:6982 src/gui/insEdit.cpp:7027 +#: src/gui/insEdit.cpp:7086 src/gui/insEdit.cpp:7142 src/gui/insEdit.cpp:7160 +#: src/gui/insEdit.cpp:7181 src/gui/insEdit.cpp:7202 src/gui/insEdit.cpp:7226 +#: src/gui/insEdit.cpp:7279 src/gui/insEdit.cpp:7305 src/gui/insEdit.cpp:7322 +#: src/gui/insEdit.cpp:7330 src/gui/insEdit.cpp:7375 src/gui/insEdit.cpp:7384 +#: src/gui/insEdit.cpp:7400 src/gui/insEdit.cpp:7412 src/gui/insEdit.cpp:7427 +#: src/gui/insEdit.cpp:7455 src/gui/insEdit.cpp:7465 +msgid "Panning (right)" +msgstr "Balanço (direita)" + +#: src/gui/insEdit.cpp:6990 src/gui/insEdit.cpp:7003 src/gui/insEdit.cpp:7107 +#: src/gui/insEdit.cpp:7199 src/gui/insEdit.cpp:7239 src/gui/insEdit.cpp:7424 +msgid "Noise Freq" +msgstr "Freq. Ruído" + +#: src/gui/insEdit.cpp:6996 src/gui/insEdit.cpp:7010 src/gui/insEdit.cpp:7167 +msgid "AutoEnv Num" +msgstr "Num. EnvAuto" + +#: src/gui/insEdit.cpp:6997 src/gui/insEdit.cpp:7011 src/gui/insEdit.cpp:7168 +msgid "AutoEnv Den" +msgstr "Den. EnvAuto" + +#: src/gui/insEdit.cpp:7012 +msgid "Noise AND Mask" +msgstr "Máscara AND Ruído" + +#: src/gui/insEdit.cpp:7013 +msgid "Noise OR Mask" +msgstr "Máscara OR Ruído" + +#: src/gui/insEdit.cpp:7034 +msgid "On/Off" +msgstr "Liga/Desl." + +#: src/gui/insEdit.cpp:7060 +msgid "Patch" +msgstr "Timbre" + +#: src/gui/insEdit.cpp:7076 +msgid "Mod Depth" +msgstr "Profundidade Mod." + +#: src/gui/insEdit.cpp:7077 +msgid "Mod Speed" +msgstr "Velocidade Mod." + +#: src/gui/insEdit.cpp:7078 +msgid "Mod Position" +msgstr "Posição Mod." + +#: src/gui/insEdit.cpp:7083 +msgid "Noise Length" +msgstr "Comprimento do Ruído" + +#: src/gui/insEdit.cpp:7093 +msgid "Wave Pos" +msgstr "Posição da onda" + +#: src/gui/insEdit.cpp:7096 +msgid "Wave Length" +msgstr "Comprimento da onda" + +#: src/gui/insEdit.cpp:7115 +msgid "AUDCTL" +msgstr "" + +#: src/gui/insEdit.cpp:7122 src/gui/insEdit.cpp:7343 +msgid "Pulse Width" +msgstr "Largura de Pulso" + +#: src/gui/insEdit.cpp:7139 +msgid "Duty/Int" +msgstr "Coeficientes/Integ." + +#: src/gui/insEdit.cpp:7145 src/gui/insEdit.cpp:7406 +msgid "Load LFSR" +msgstr "Carregar LFSR" + +#: src/gui/insEdit.cpp:7165 +msgid "Envelope Mode" +msgstr "Modo de Envelope" + +#: src/gui/insEdit.cpp:7218 +msgid "Phase Reset Timer" +msgstr "Temporizador de Redef. de Fase" + +#: src/gui/insEdit.cpp:7252 src/gui/insEdit.cpp:7259 +msgid "Freq Divider" +msgstr "" + +#: src/gui/insEdit.cpp:7255 +msgid "Clock Divider" +msgstr "Divisor de Clock" + +#: src/gui/insEdit.cpp:7264 +msgid "Global Volume" +msgstr "Volume Global" + +#: src/gui/insEdit.cpp:7286 +msgid "Echo Level" +msgstr "Nível de Eco" + +#: src/gui/insEdit.cpp:7291 +msgid "Echo Feedback" +msgstr "Retorno do Eco" + +#: src/gui/insEdit.cpp:7292 +msgid "Echo Length" +msgstr "Atraso do Eco" + +#: src/gui/insEdit.cpp:7312 +msgid "Group Ctrl" +msgstr "Controle de Grupo" + +#: src/gui/insEdit.cpp:7313 +msgid "Group Attack" +msgstr "Ataque de Grupo" + +#: src/gui/insEdit.cpp:7314 +msgid "Group Decay" +msgstr "Decaimento de Grupo" + +#: src/gui/insEdit.cpp:7320 +msgid "Noise Type" +msgstr "Tipo de Ruído" + +#: src/gui/insEdit.cpp:7367 +msgid "Square/Noise" +msgstr "Quadrado/Ruído" + +#: src/gui/insEdit.cpp:7404 +msgid "Tap A Location" +msgstr "Local do Tap A" + +#: src/gui/insEdit.cpp:7405 +msgid "Tap B Location" +msgstr "Local do Tap B" + +#: src/gui/insEdit.cpp:7416 +msgid "Portion A Length" +msgstr "Comprimento da Porção A" + +#: src/gui/insEdit.cpp:7417 +msgid "Portion B Length" +msgstr "Comprimento da Porção B" + +#: src/gui/insEdit.cpp:7418 +msgid "Portion A Offset" +msgstr "Deslocamento da Porção A" + +#: src/gui/insEdit.cpp:7419 +msgid "Portion B Offset" +msgstr "Deslocamento da Porção B" + +#: src/gui/insEdit.cpp:7463 +msgid "Parameter" +msgstr "" + +#: src/gui/insEdit.cpp:7467 +msgid "Load Value" +msgstr "" + +#: src/gui/insEdit.cpp:7479 +msgid "Filter Toggle" +msgstr "Alternar Filtro" + +#: src/gui/insEdit.cpp:7486 +msgid "Wave Mix" +msgstr "" + +#: src/gui/insEdit.cpp:7500 +msgid "Octave offset" +msgstr "Compensação de oitava" + +#: src/gui/insEdit.cpp:7505 +msgid "go to Macros for other parameters." +msgstr "vá para Macros para outros parâmetros." + +#: src/gui/insEdit.cpp:7521 +msgid "invalid instrument type! change it first." +msgstr "tipo de instrumento inválido! troque-o primeiro." + +#: src/gui/insEdit.cpp:7565 +msgid "clear contents" +msgstr "limpar conteúdo" + +#: src/gui/insEdit.cpp:7571 +msgid "offset..." +msgstr "deslocar..." + +#: src/gui/insEdit.cpp:7572 src/gui/insEdit.cpp:7605 +msgid "X" +msgstr "" + +#: src/gui/insEdit.cpp:7573 src/gui/insEdit.cpp:7609 +msgid "Y" +msgstr "" + +#: src/gui/insEdit.cpp:7574 +msgid "offset" +msgstr "deslocar" + +#: src/gui/insEdit.cpp:7637 +msgid "Min" +msgstr "Mín." + +#: src/gui/insEdit.cpp:7638 +msgid "Max" +msgstr "Máx." + +#~ msgid "About Furnace###About Furnace" +#~ msgstr "Sobre o Furnace###About Furnace" + +#~ msgid "are proud to present" +#~ msgstr "apresentam orgulhosamente" + +#~ msgid "-- translations and related work --" +#~ msgstr "-- traduções e trabalho relacionado --" + +#~ msgid "LTVA1 (Russian translation)" +#~ msgstr "LTVA1 (tradução em Russo)" + +#~ msgid "Kagamiin~ (Portuguese translation)" +#~ msgstr "Kagamiin~ (tradução em Português)" + +#~ msgid "freq-mod (Polish translation)" +#~ msgstr "freq-mod (tradução em Polonês)" + +#~ msgid "YM3812-LLE, YMF262-LLE and YMF276-LLE by nukeykt" +#~ msgstr "YM3812-LLE, YMF262-LLE e YMF276-LLE por nukeykt" + +#~ msgid "SID2 emulator (modification of reSID) by LTVA" +#~ msgstr "emulador SID2 (modificação do reSID) por LTVA" + +#~ msgid "5E01 emulator (modification of NSFPlay) by Euly" +#~ msgstr "emulador 5E01 (modificação do NSFPlay) por Euly" + +#~ msgid "NEOART Costa Rica" +#~ msgstr "NEOART Costa Rica" + +#~ msgid "Xenium Demoparty" +#~ msgstr "Xenium Demoparty" + +#~ msgid "Channels###Channels" +#~ msgstr "Canais###Channels" + +#~ msgid "Oscilloscope (per-channel)###Oscilloscope (per-channel)" +#~ msgstr "Osciloscópio (por canal)###Oscilloscope (per-channel)" + +#~ msgid "" +#~ "\n" +#~ "quiet" +#~ msgstr "" +#~ "\n" +#~ "silenciado" + +#~ msgid "Clock###Clock" +#~ msgstr "Clock###Clock" + +#~ msgid "cannot add chip! (" +#~ msgstr "não pôde adicionar chip! (" + +#~ msgid "Compatibility Flags###Compatibility Flags" +#~ msgstr "Opções de Compatibilidade###Compatibility Flags" + +#~ msgid "Stop NES pulse channels hardware sweep on new note" +#~ msgstr "" +#~ "Interromper sweep de hardware dos canais de pulso do NES em nova nota" + +#~ msgid "Do not stop volume slide after reaching zero or full volume" +#~ msgstr "Não interromper slide de volume após alcançar volume zero ou máximo" + +#~ msgid "Stop E1xy/E2xy effects on new note" +#~ msgstr "Interromper efeitos E1xy/E2xy em nova nota" + +#~ msgid "Slower 0Axy volume slide" +#~ msgstr "Slide de volume 0Axy é mais lento" + +#~ msgid "Command Stream Player###Command Stream Player" +#~ msgstr "Reprodutor de fluxo de comandos###Command Stream Player" + +#~ msgid "export (.dmp)" +#~ msgstr "exportar (.dmp)" + +#~ msgid "%.2X: " +#~ msgstr "%.2X: " + +#~ msgid "Instruments###Instruments" +#~ msgstr "Instrumentos###Instruments" + +#~ msgid "Wavetables###Wavetables" +#~ msgstr "Wavetables###Wavetables" + +#~ msgid "Samples###Samples" +#~ msgstr "Samples###Samples" + +#~ msgid "Export Furnace song" +#~ msgstr "Exportar Música do Furnace" + +#~ msgid "File##menubar" +#~ msgstr "Arquivo##menubar" + +#~ msgid "file##menubar" +#~ msgstr "arquivo##menubar" + +#~ msgid "export .dmf (1.1.3+)..." +#~ msgstr "exportar .dmf (1.1.3+)..." + +#~ msgid "export .dmf (1.0/legacy)..." +#~ msgstr "exportar .dmf (1.0/legado)..." + +#~ msgid "export Furnace module..." +#~ msgstr "exportar módulo do Furnace..." + +#~ msgid "cannot remove chip! (" +#~ msgstr "não pôde remover chip! (" + +#~ msgid "cannot change chip! (" +#~ msgstr "não pôde trocar chip! (" + +#~ msgid "Unsaved changes! Save before quitting?" +#~ msgstr "Há mudanças não salvas! Salvar antes de sair?" + +#~ msgid "Edit##menubar" +#~ msgstr "Editar##menubar" + +#~ msgid "edit##menubar" +#~ msgstr "editar##menubar" + +#~ msgid "Settings##menubar" +#~ msgstr "Opções##menubar" + +#~ msgid "settings##menubar" +#~ msgstr "opções##menubar" + +#~ msgid "Window##menubar" +#~ msgstr "Janela##menubar" + +#~ msgid "window##menubar" +#~ msgstr "janela##menubar" + +#~ msgid "Help##menubar" +#~ msgstr "Ajuda##menubar" + +#~ msgid "help##menubar" +#~ msgstr "ajuda##menubar" + +#~ msgid "%d days " +#~ msgid_plural "%d days " +#~ msgstr[0] "%d dia " +#~ msgstr[1] "%d dias " + +#~ msgid "" +#~ "there were some errors while loading samples:\n" +#~ "#sggu" +#~ msgstr "ocorreram erros ao carregar as samples:\n" + +#~ msgid "" +#~ "there were some warnings/errors while loading instruments:\n" +#~ "#sggu" +#~ msgstr "ocorreram alguns erros/avisos ao carregar os instrumentos:\n" + +#~ msgid "" +#~ "> %s: cannot load instrument! (%s)\n" +#~ "#sggu" +#~ msgstr "> %s: não pôde carregar o instrumento! (%s)\n" + +#~ msgid "cannot load instrument! (" +#~ msgstr "não pôde carregar o instrumento! (" + +#~ msgid "cannot load wavetable! (" +#~ msgstr "não pôde carregar a wavetable! (" + +#~ msgid "could not write tildearrow version Furnace module! (%s)" +#~ msgstr "não pôde escrever módulo do Furnace versão tildearrow! (%s)" + +#~ msgid "Rendering...###Rendering..." +#~ msgstr "Renderizando...###Rendering..." + +#~ msgid "New Song###New Song" +#~ msgstr "Nova Música###New Song" + +#~ msgid "Export###Export" +#~ msgstr "Exportar###Export" + +#~ msgid "Error###Error" +#~ msgstr "Erro###Error" + +#~ msgid "Warning###Warning" +#~ msgstr "Aviso###Warning" + +#~ msgid "Select Instrument###Select Instrument" +#~ msgstr "Selecionar Instrumento###Select Instrument" + +#~ msgid "Import Raw Sample###Import Raw Sample" +#~ msgstr "Importar Sample em Formato Raw###Import Raw Sample" + +#~ msgid "could not init renderer! %s" +#~ msgstr "não pôde inicializar o renderizador! %s" + +#~ msgid "" +#~ "\n" +#~ "the render driver has been set to a safe value. please restart Furnace." +#~ msgstr "" +#~ "\n" +#~ "o driver de renderização foi definido para um valor seguro. por favor " +#~ "reinicie o Furnace." + +#~ msgid "Beeper" +#~ msgstr "Beeper" + +#~ msgid "1-bit PCM" +#~ msgstr "PCM 1-bit" + +#~ msgid "1-bit DPCM" +#~ msgstr "DPCM 1-bit" + +#~ msgid "8-bit PCM" +#~ msgstr "PCM 8-bit" + +#~ msgid "8-bit µ-law PCM" +#~ msgstr "PCM µ-law 8-bit" + +#~ msgid "16-bit PCM" +#~ msgstr "PCM 16-bit" + +#~ msgid "Export instrument (.dmp)" +#~ msgstr "Exportar instrumento (.dmp)" + +#~ msgid "Paste wavetables from clipboard" +#~ msgstr "Colar wavetables da área de transferência" + +#~ msgid "Paste local wavetables from clipboard" +#~ msgstr "Colar wavetables locais da área de transferência" + +#~ msgid "Move sample up" +#~ msgstr "Mover sample para cima" + +#~ msgid "Move sample down" +#~ msgstr "Mover sample para baixo" + +#~ msgid "Sample review" +#~ msgstr "Prever sample" + +#~ msgid "Make me a drum kit" +#~ msgstr "Samples: Faça um kit de bateria para mim" + +#~ msgid "Modern/fantasy" +#~ msgstr "Moderno/fantasia" + +#~ msgid "Mobile Edit###MobileEdit" +#~ msgstr "Edição em dispositivos móveis###MobileEdit" + +#~ msgid "Mobile Controls###Mobile Controls" +#~ msgstr "Controles para dispositivos móveis###Mobile Controls" + +#~ msgid "Mobile Menu###Mobile Menu" +#~ msgstr "Menu para dispositivos móveis###Mobile Menu" + +#~ msgid "Legacy .dmf" +#~ msgstr ".dmf legado" + +#~ msgid "Play/Edit Controls###Play/Edit Controls" +#~ msgstr "Controles de Reprodução/Edição###Play/Edit Controls" + +#~ msgid "Play Controls###Play Controls" +#~ msgstr "Controles de Reprodução###Play Controls" + +#~ msgid "Edit Controls###Edit Controls" +#~ msgstr "Controles de edição###Edit Controls" + +#~ msgid "Effect List###Effect List" +#~ msgstr "Lista de Efeitos###Effect List" + +#~ msgid "DefleMask file (1.1.3+)" +#~ msgstr "Arquivo do DefleMask (1.1.3+)" + +#~ msgid "DefleMask file (1.0/legacy)" +#~ msgstr "Arquivo do DefleMask (1.0/legado)" + +#~ msgid "" +#~ "this option exports a binary file which\n" +#~ "contains a dump of the internal command stream\n" +#~ "produced when playing the song.\n" +#~ "\n" +#~ "technical/development use only!" +#~ msgstr "" +#~ "essa opção exporta um arquivo binário que\n" +#~ "contém um despejo do fluxo de comandos interno\n" +#~ "produzido ao reproduzir a música.\n" +#~ "\n" +#~ "somente para uso técnico ou para desenvolvimento!" + +#~ msgid "DMF (1.0/legacy)" +#~ msgstr "DMF (1.0/legado)" + +#~ msgid "Furnace" +#~ msgstr "Furnace" + +#~ msgid "Find/Replace###Find/Replace" +#~ msgstr "Localizar/Substituir###Find/Replace" + +#~ msgid "Grooves###Grooves" +#~ msgstr "Grooves###Grooves" + +#~ msgid "export .dmp..." +#~ msgstr "exportar .dmp..." + +#~ msgid "Instrument Editor###Instrument Editor" +#~ msgstr "Editor de Instrumento###Instrument Editor" + +#~ msgid "Memory Composition###Memory Composition" +#~ msgstr "Composição da Memória###Memory Composition" + +#~ msgid "%d-%d ($%x-$%x): %d bytes ($%x)" +#~ msgstr "%d-%d ($%x-$%x): %d bytes ($%x)" + +#~ msgid "click to open sample editor" +#~ msgstr "clique para abrir o editor de samples" + +#~ msgid "Orders###Orders" +#~ msgstr "Ordens###Orders" + +#~ msgid "Oscilloscope###Oscilloscope" +#~ msgstr "Osciloscópio###Oscilloscope" + +#~ msgid "Pattern Manager###Pattern Manager" +#~ msgstr "Gerenciador de Sequências###Pattern Manager" + +#~ msgid "Pattern###Pattern" +#~ msgstr "Sequência###Pattern" + +#~ msgid "Piano###Piano" +#~ msgstr "Piano###Piano" + +#~ msgid "Input Pad###Input Pad" +#~ msgstr "Teclado Virtual###Input Pad" + +#~ msgid "Game consoles" +#~ msgstr "Consoles de videogame" + +#~ msgid "let's play some chiptune making games!" +#~ msgstr "vamos jogar um pouco de chiptune fazendo jogos!" + +#~ msgid "Sega Genesis (extended channel 3)" +#~ msgstr "Sega Mega Drive (canal 3 estendido)" + +#~ msgid "Sega Genesis (DualPCM, extended channel 3)" +#~ msgstr "Sega Mega Drive (DualPCM, canal 3 estendido)" + +#~ msgid "Sega Genesis (with Sega CD)" +#~ msgstr "Sega Mega Drive (com Mega CD)" + +#~ msgid "Sega Genesis (extended channel 3 with Sega CD)" +#~ msgstr "Sega Mega Drive (canal 3 estendido com Mega CD)" + +#~ msgid "Sega Genesis (CSM with Sega CD)" +#~ msgstr "Sega Mega Drive (CSM, com Mega CD)" + +#~ msgid "Sega Master System (with FM expansion)" +#~ msgstr "Sega Master System (with expansão FM)" + +#~ msgid "Sega Master System (with FM expansion in drums mode)" +#~ msgstr "Sega Master System (with expansão FM em modo bateria)" + +#~ msgid "Game Boy Advance (no software mixing)" +#~ msgstr "Game Boy Advance (sem mixing em software)" + +#~ msgid "Game Boy Advance (with MinMod)" +#~ msgstr "Game Boy Advance (com MinMod)" + +#~ msgid "Famicom with Konami VRC6" +#~ msgstr "Famicom com Konami VRC6" + +#~ msgid "Famicom with Konami VRC7" +#~ msgstr "Famicom com Konami VRC7" + +#~ msgid "Famicom with MMC5" +#~ msgstr "Famicom com MMC5" + +#~ msgid "Famicom with Sunsoft 5B" +#~ msgstr "Famicom com Sunsoft 5B" + +#~ msgid "Famicom with Namco 163" +#~ msgstr "Famicom com Namco 163" + +#~ msgid "Neo Geo AES (extended channel 2)" +#~ msgstr "Neo Geo AES (canal 2 estendido)" + +#~ msgid "Neo Geo AES (extended channel 2 and CSM)" +#~ msgstr "Neo Geo AES (canal 2 estendido e CSM)" + +#~ msgid "Computers" +#~ msgstr "Computadores" + +#~ msgid "let's get to work on chiptune today." +#~ msgstr "porque hoje é dia de trabalhar em chiptune." + +#~ msgid "Commodore 64 (C64, 6581 SID + Sound Expander in drums mode)" +#~ msgstr "Commodore 64 (C64, SID 6581 + Sound Expander em modo bateria)" + +#~ msgid "Commodore 64 (C64, 8580 SID + Sound Expander in drums mode)" +#~ msgstr "Commodore 64 (C64, SID 8580 + Sound Expander em modo bateria)" + +#~ msgid "Commodore 64 (C64, 6581 SID + FM-YAM in drums mode)" +#~ msgstr "Commodore 64 (C64, SID 6581 + FM-YAM em modo bateria)" + +#~ msgid "Commodore 64 (C64, 8580 SID + FM-YAM in drums mode)" +#~ msgstr "Commodore 64 (C64, SID 8580 + FM-YAM em modo bateria)" + +#~ msgid "MSX + MSX-AUDIO (drums mode)" +#~ msgstr "MSX + MSX-AUDIO (modo bateria)" + +#~ msgid "MSX + MSX-MUSIC (drums mode)" +#~ msgstr "MSX + MSX-MUSIC (modo bateria)" + +#~ msgid "MSX + Neotron (extended channel 2)" +#~ msgstr "MSX + Neotron (canal 2 estendido)" + +#~ msgid "MSX + Neotron (extended channel 2 and CSM)" +#~ msgstr "MSX + Neotron (canal 2 estendido e CSM)" + +#~ msgid "MSX + Neotron (with YM2610B)" +#~ msgstr "MSX + Neotron (com YM2610B)" + +#~ msgid "MSX + Neotron (with YM2610B; extended channel 3)" +#~ msgstr "MSX + Neotron (com YM2610B; canal 3 estendido)" + +#~ msgid "MSX + Neotron (with YM2610B; extended channel 3 and CSM)" +#~ msgstr "MSX + Neotron (com YM2610B; canal 3 estendido e CSM)" + +#~ msgid "NEC PC-88 (with PC-8801-10)" +#~ msgstr "NEC PC-88 (com PC-8801-10)" + +#~ msgid "NEC PC-88 (with PC-8801-11)" +#~ msgstr "NEC PC-88 (com PC-8801-11)" + +#~ msgid "NEC PC-88 (with PC-8801-11; extended channel 3)" +#~ msgstr "NEC PC-88 (com PC-8801-11; canal 3 estendido)" + +#~ msgid "NEC PC-88 (with PC-8801-11; extended channel 3 and CSM)" +#~ msgstr "NEC PC-88 (com PC-8801-11; canal 3 estendido e CSM)" + +#~ msgid "NEC PC-88 (with PC-8801-23)" +#~ msgstr "NEC PC-88 (com PC-8801-23)" + +#~ msgid "NEC PC-88 (with PC-8801-23; extended channel 3)" +#~ msgstr "NEC PC-88 (com PC-8801-23; canal 3 estendido)" + +#~ msgid "NEC PC-88 (with PC-8801-23; extended channel 3 and CSM)" +#~ msgstr "NEC PC-88 (com PC-8801-23; canal 3 estendido e CSM)" + +#~ msgid "NEC PC-88 (with HMB-20 HIBIKI-8800)" +#~ msgstr "NEC PC-88 (com HMB-20 HIBIKI-8800)" + +#~ msgid "NEC PC-8801mk2SR (with PC-8801-10)" +#~ msgstr "NEC PC-8801mk2SR (com PC-8801-10)" + +#~ msgid "NEC PC-8801mk2SR (with PC-8801-10; extended channel 3)" +#~ msgstr "NEC PC-8801mk2SR (com PC-8801-10; canal 3 estendido)" + +#~ msgid "NEC PC-8801mk2SR (with PC-8801-10; extended channel 3 and CSM)" +#~ msgstr "NEC PC-8801mk2SR (with PC-8801-10; canal 3 estendido e CSM)" + +#~ msgid "NEC PC-8801mk2SR (with PC-8801-11)" +#~ msgstr "NEC PC-8801mk2SR (com PC-8801-11)" + +#~ msgid "" +#~ "NEC PC-8801mk2SR (with PC-8801-11; extended channel 3 on internal OPN)" +#~ msgstr "NEC PC-8801mk2SR (com PC-8801-11; canal 3 estendido no OPN interno)" + +#~ msgid "" +#~ "NEC PC-8801mk2SR (with PC-8801-11; extended channel 3 on external OPN)" +#~ msgstr "NEC PC-8801mk2SR (com PC-8801-11; canal 3 estendido no OPN externo)" + +#~ msgid "NEC PC-8801mk2SR (with PC-8801-11; extended channel 3 on both OPNs)" +#~ msgstr "" +#~ "NEC PC-8801mk2SR (com PC-8801-11; canal 3 estendido em ambos os OPNs)" + +#~ msgid "" +#~ "NEC PC-8801mk2SR (with PC-8801-11; extended channel 3 and CSM on both " +#~ "OPNs)" +#~ msgstr "" +#~ "NEC PC-8801mk2SR (com PC-8801-11; canal 3 estendido e CSM em ambos os " +#~ "OPNs)" + +#~ msgid "NEC PC-8801mk2SR (with PC-8801-23)" +#~ msgstr "NEC PC-8801mk2SR (com PC-8801-23)" + +#~ msgid "" +#~ "NEC PC-8801mk2SR (with PC-8801-23; extended channel 3 on internal OPN)" +#~ msgstr "NEC PC-8801mk2SR (com PC-8801-23; canal 3 estendido no OPN interno)" + +#~ msgid "" +#~ "NEC PC-8801mk2SR (with PC-8801-23; extended channel 3 and CSM on internal " +#~ "OPN)" +#~ msgstr "" +#~ "NEC PC-8801mk2SR (com PC-8801-23; canal 3 estendido e CSM no OPN interno)" + +#~ msgid "" +#~ "NEC PC-8801mk2SR (with PC-8801-23; extended channel 3 on external OPN)" +#~ msgstr "NEC PC-8801mk2SR (com PC-8801-23; canal 3 estendido no OPN externo)" + +#~ msgid "" +#~ "NEC PC-8801mk2SR (with PC-8801-23; extended channel 3 and CSM on external " +#~ "OPN)" +#~ msgstr "" +#~ "NEC PC-8801mk2SR (com PC-8801-23; canal 3 estendido e CSM no OPN externo)" + +#~ msgid "NEC PC-8801mk2SR (with PC-8801-23; extended channel 3 on both OPNs)" +#~ msgstr "" +#~ "NEC PC-8801mk2SR (com PC-8801-23; canal 3 estendido em ambos os OPNs)" + +#~ msgid "" +#~ "NEC PC-8801mk2SR (with PC-8801-23; extended channel 3 and CSM on both " +#~ "OPNs)" +#~ msgstr "" +#~ "NEC PC-8801mk2SR (com PC-8801-23; canal 3 estendido e CSM em ambos os " +#~ "OPNs)" + +#~ msgid "NEC PC-8801mk2SR (with HMB-20 HIBIKI-8800)" +#~ msgstr "NEC PC-8801mk2SR (com HMB-20 HIBIKI-8800)" + +#~ msgid "NEC PC-8801mk2SR (with HMB-20 HIBIKI-8800; extended channel 3)" +#~ msgstr "NEC PC-8801mk2SR (com HMB-20 HIBIKI-8800; canal 3 estendido)" + +#~ msgid "" +#~ "NEC PC-8801mk2SR (with HMB-20 HIBIKI-8800; extended channel 3 and CSM)" +#~ msgstr "NEC PC-8801mk2SR (com HMB-20 HIBIKI-8800; canal 3 estendido e CSM)" + +#~ msgid "NEC PC-8801FA (with PC-8801-10)" +#~ msgstr "NEC PC-8801FA (com PC-8801-10)" + +#~ msgid "NEC PC-8801FA (with PC-8801-10; extended channel 3)" +#~ msgstr "NEC PC-8801FA (com PC-8801-10; canal 3 estendido)" + +#~ msgid "NEC PC-8801FA (with PC-8801-11)" +#~ msgstr "NEC PC-8801FA (com PC-8801-11)" + +#~ msgid "NEC PC-8801FA (with PC-8801-11; extended channel 3 on internal OPN)" +#~ msgstr "NEC PC-8801FA (com PC-8801-11; canal 3 estendido no OPN interno)" + +#~ msgid "NEC PC-8801FA (with PC-8801-11; extended channel 3 on external OPN)" +#~ msgstr "NEC PC-8801FA (com PC-8801-11; canal 3 estendido no OPN externo)" + +#~ msgid "" +#~ "NEC PC-8801FA (with PC-8801-11; extended channel 3 and CSM on external " +#~ "OPN)" +#~ msgstr "" +#~ "NEC PC-8801FA (com PC-8801-11; canal 3 estendido e CSM no OPN externo)" + +#~ msgid "NEC PC-8801FA (with PC-8801-11; extended channel 3 on both OPNs)" +#~ msgstr "NEC PC-8801FA (com PC-8801-11; canal 3 estendido em ambos os OPNs)" + +#~ msgid "" +#~ "NEC PC-8801FA (with PC-8801-11; extended channel 3 and CSM on both OPNs)" +#~ msgstr "" +#~ "NEC PC-8801FA (com PC-8801-11; canal 3 estendido e CSM em ambos os OPNs)" + +#~ msgid "NEC PC-8801FA (with PC-8801-23)" +#~ msgstr "NEC PC-8801FA (com PC-8801-23)" + +#~ msgid "NEC PC-8801FA (with PC-8801-23; extended channel 3 on internal OPN)" +#~ msgstr "NEC PC-8801FA (com PC-8801-23; canal 3 estendido no OPN interno)" + +#~ msgid "" +#~ "NEC PC-8801FA (with PC-8801-23; extended channel 3 and CSM on internal " +#~ "OPN)" +#~ msgstr "" +#~ "NEC PC-8801FA (com PC-8801-23; canal 3 estendido e CSM no OPN interno)" + +#~ msgid "NEC PC-8801FA (with PC-8801-23; extended channel 3 on external OPN)" +#~ msgstr "NEC PC-8801FA (com PC-8801-23; canal 3 estendido no OPN externo)" + +#~ msgid "" +#~ "NEC PC-8801FA (with PC-8801-23; extended channel 3 and CSM on external " +#~ "OPN)" +#~ msgstr "" +#~ "NEC PC-8801FA (com PC-8801-23; canal 3 estendido e CSM no OPN externo)" + +#~ msgid "NEC PC-8801FA (with PC-8801-23; extended channel 3 on both OPNs)" +#~ msgstr "NEC PC-8801FA (com PC-8801-23; canal 3 estendido em ambos os OPNs)" + +#~ msgid "" +#~ "NEC PC-8801FA (with PC-8801-23; extended channel 3 and CSM on both OPNs)" +#~ msgstr "" +#~ "NEC PC-8801FA (com PC-8801-23; canal 3 estendido e CSM em ambos os OPNs)" + +#~ msgid "NEC PC-8801FA (with HMB-20 HIBIKI-8800)" +#~ msgstr "NEC PC-8801FA (com HMB-20 HIBIKI-8800)" + +#~ msgid "NEC PC-8801FA (with HMB-20 HIBIKI-8800; extended channel 3)" +#~ msgstr "NEC PC-8801FA (com HMB-20 HIBIKI-8800; canal 3 estendido)" + +#~ msgid "NEC PC-8801FA (with HMB-20 HIBIKI-8800; extended channel 3 and CSM)" +#~ msgstr "NEC PC-8801FA (com HMB-20 HIBIKI-8800; canal 3 estendido e CSM)" + +#~ msgid "NEC PC-98 (with PC-9801-26/K)" +#~ msgstr "NEC PC-98 (com PC-9801-26/K)" + +#~ msgid "NEC PC-98 (with PC-9801-26/K; extended channel 3)" +#~ msgstr "NEC PC-98 (com PC-9801-26/K; canal 3 estendido)" + +#~ msgid "NEC PC-98 (with PC-9801-26/K; extended channel 3 and CSM)" +#~ msgstr "NEC PC-98 (com PC-9801-26/K; canal 3 estendido e CSM)" + +#~ msgid "NEC PC-98 (with Sound Orchestra)" +#~ msgstr "NEC PC-98 (com Sound Orchestra)" + +#~ msgid "NEC PC-98 (with Sound Orchestra; extended channel 3)" +#~ msgstr "NEC PC-98 (com Sound Orchestra; canal 3 estendido)" + +#~ msgid "NEC PC-98 (with Sound Orchestra; extended channel 3 and CSM)" +#~ msgstr "NEC PC-98 (com Sound Orchestra; canal 3 estendido e CSM)" + +#~ msgid "NEC PC-98 (with Sound Orchestra in drums mode)" +#~ msgstr "NEC PC-98 (com Sound Orchestra em modo bateria)" + +#~ msgid "NEC PC-98 (with Sound Orchestra in drums mode; extended channel 3)" +#~ msgstr "NEC PC-98 (com Sound Orchestra em modo bateria; canal 3 estendido)" + +#~ msgid "" +#~ "NEC PC-98 (with Sound Orchestra in drums mode; extended channel 3 and CSM)" +#~ msgstr "" +#~ "NEC PC-98 (com Sound Orchestra em modo bateria; canal 3 estendido e CSM)" + +#~ msgid "NEC PC-98 (with Sound Orchestra V)" +#~ msgstr "NEC PC-98 (com Sound Orchestra V)" + +#~ msgid "NEC PC-98 (with Sound Orchestra V; extended channel 3)" +#~ msgstr "NEC PC-98 (com Sound Orchestra V; canal 3 estendido)" + +#~ msgid "NEC PC-98 (with Sound Orchestra V; extended channel 3 and CSM)" +#~ msgstr "NEC PC-98 (com Sound Orchestra V; canal 3 estendido e CSM)" + +#~ msgid "NEC PC-98 (with Sound Orchestra V in drums mode)" +#~ msgstr "NEC PC-98 (com Sound Orchestra V em modo bateria)" + +#~ msgid "NEC PC-98 (with Sound Orchestra V in drums mode; extended channel 3)" +#~ msgstr "" +#~ "NEC PC-98 (com Sound Orchestra V em modo bateria; canal 3 estendido)" + +#~ msgid "" +#~ "NEC PC-98 (with Sound Orchestra V in drums mode; extended channel 3 and " +#~ "CSM)" +#~ msgstr "" +#~ "NEC PC-98 (com Sound Orchestra V em modo bateria; canal 3 estendido e CSM)" + +#~ msgid "NEC PC-98 (with PC-9801-86)" +#~ msgstr "NEC PC-98 (com PC-9801-86)" + +#~ msgid "NEC PC-98 (with PC-9801-86; extended channel 3)" +#~ msgstr "NEC PC-98 (com PC-9801-86; canal 3 estendido)" + +#~ msgid "NEC PC-98 (with PC-9801-86; extended channel 3 and CSM)" +#~ msgstr "NEC PC-98 (com PC-9801-86; canal 3 estendido e CSM)" + +#~ msgid "NEC PC-98 (with PC-9801-86) stereo" +#~ msgstr "NEC PC-98 (com PC-9801-86) stereo" + +#~ msgid "NEC PC-98 (with PC-9801-86; extended channel 3) stereo" +#~ msgstr "NEC PC-98 (com PC-9801-86; canal 3 estendido) stereo" + +#~ msgid "NEC PC-98 (with PC-9801-86; extended channel 3 and CSM) stereo" +#~ msgstr "NEC PC-98 (com PC-9801-86; canal 3 estendido e CSM) stereo" + +#~ msgid "NEC PC-98 (with PC-9801-73)" +#~ msgstr "NEC PC-98 (com PC-9801-73)" + +#~ msgid "NEC PC-98 (with PC-9801-73; extended channel 3)" +#~ msgstr "NEC PC-98 (com PC-9801-73; canal 3 estendido)" + +#~ msgid "NEC PC-98 (with PC-9801-73; extended channel 3 and CSM)" +#~ msgstr "NEC PC-98 (com PC-9801-73; canal 3 estendido e CSM)" + +#~ msgid "" +#~ "NEC PC-98 (with Sound Blaster 16 for PC-9800 w/PC-9801-26/K compatible)" +#~ msgstr "" +#~ "NEC PC-98 (com Sound Blaster 16 para PC-9800 com PC-9801-26/K compatível)" + +#~ msgid "" +#~ "NEC PC-98 (with Sound Blaster 16 for PC-9800 w/PC-9801-26/K compatible; " +#~ "extended channel 3)" +#~ msgstr "" +#~ "NEC PC-98 (com Sound Blaster 16 para PC-9800 com PC-9801-26/K compatível; " +#~ "canal 3 estendido)" + +#~ msgid "" +#~ "NEC PC-98 (with Sound Blaster 16 for PC-9800 w/PC-9801-26/K compatible; " +#~ "extended channel 3 and CSM)" +#~ msgstr "" +#~ "NEC PC-98 (com Sound Blaster 16 para PC-9800 com PC-9801-26/K compatível; " +#~ "canal 3 estendido e CSM)" + +#~ msgid "" +#~ "NEC PC-98 (with Sound Blaster 16 for PC-9800 w/PC-9801-26/K compatible in " +#~ "drums mode)" +#~ msgstr "" +#~ "NEC PC-98 (com Sound Blaster 16 para PC-9800 com PC-9801-26/K compatível " +#~ "em modo bateria)" + +#~ msgid "" +#~ "NEC PC-98 (with Sound Blaster 16 for PC-9800 w/PC-9801-26/K compatible in " +#~ "drums mode; extended channel 3)" +#~ msgstr "" +#~ "NEC PC-98 (com Sound Blaster 16 para PC-9800 com PC-9801-26/K compatível " +#~ "em modo bateria; canal 3 estendido)" + +#~ msgid "" +#~ "NEC PC-98 (with Sound Blaster 16 for PC-9800 w/PC-9801-26/K compatible in " +#~ "drums mode; extended channel 3 and CSM)" +#~ msgstr "" +#~ "NEC PC-98 (com Sound Blaster 16 para PC-9800 com PC-9801-26/K compatível " +#~ "em modo bateria; canal 3 estendido e CSM)" + +#~ msgid "ZX Spectrum (48K, SFX-like engine)" +#~ msgstr "ZX Spectrum (48K, motor estilo SFX)" + +#~ msgid "ZX Spectrum (48K, QuadTone engine)" +#~ msgstr "ZX Spectrum (48K, motor QuadTone)" + +#~ msgid "ZX Spectrum (128K) with TurboSound" +#~ msgstr "ZX Spectrum (128K) com TurboSound" + +#~ msgid "ZX Spectrum (128K) with TurboSound FM" +#~ msgstr "ZX Spectrum (128K) com TurboSound FM" + +#~ msgid "" +#~ "ZX Spectrum (128K) with TurboSound FM (extended channel 3 on first OPN)" +#~ msgstr "" +#~ "ZX Spectrum (128K) com TurboSound FM (canal 3 estendido no primeiro OPN)" + +#~ msgid "" +#~ "ZX Spectrum (128K) with TurboSound FM (extended channel 3 and CSM on " +#~ "first OPN)" +#~ msgstr "" +#~ "ZX Spectrum (128K) com TurboSound FM (canal 3 estendido e CSM no primeiro " +#~ "OPN)" + +#~ msgid "" +#~ "ZX Spectrum (128K) with TurboSound FM (extended channel 3 on second OPN)" +#~ msgstr "" +#~ "ZX Spectrum (128K) com TurboSound FM (canal 3 estendido no segundo OPN)" + +#~ msgid "" +#~ "ZX Spectrum (128K) with TurboSound FM (extended channel 3 and CSM on " +#~ "second OPN)" +#~ msgstr "" +#~ "ZX Spectrum (128K) com TurboSound FM (canal 3 estendido e CSM no segundo " +#~ "OPN)" + +#~ msgid "" +#~ "ZX Spectrum (128K) with TurboSound FM (extended channel 3 on both OPNs)" +#~ msgstr "" +#~ "ZX Spectrum (128K) com TurboSound FM (canal 3 estendido em ambos os OPNs)" + +#~ msgid "" +#~ "ZX Spectrum (128K) with TurboSound FM (extended channel 3 and CSM on both " +#~ "OPNs)" +#~ msgstr "" +#~ "ZX Spectrum (128K) com TurboSound FM (canal 3 estendido em ambos os OPNs)" + +#~ msgid "Atari 800 (stereo)" +#~ msgstr "Atari 800 (estéreo)" + +#~ msgid "PC (beeper)" +#~ msgstr "PC (beeper)" + +#~ msgid "PC + AdLib (drums mode)" +#~ msgstr "PC + AdLib (modo bateria)" + +#~ msgid "PC + Sound Blaster (drums mode)" +#~ msgstr "PC + Sound Blaster (modo bateria)" + +#~ msgid "PC + Sound Blaster w/Game Blaster Compatible" +#~ msgstr "PC + Sound Blaster com compatibilidade Game Blaster" + +#~ msgid "PC + Sound Blaster w/Game Blaster Compatible (drums mode)" +#~ msgstr "PC + Sound Blaster com compatibilidade Game Blaster (modo bateria)" + +#~ msgid "PC + Sound Blaster Pro (drums mode)" +#~ msgstr "PC + Sound Blaster Pro (modo bateria)" + +#~ msgid "PC + Sound Blaster Pro 2 (drums mode)" +#~ msgstr "PC + Sound Blaster Pro 2 (modo bateria)" + +#~ msgid "PC + ESS AudioDrive ES1488 (native ESFM mode)" +#~ msgstr "PC + ESS AudioDrive ES1488 (modo ESFM nativo)" + +#~ msgid "Sharp X1 + FM addon" +#~ msgstr "Sharp X1 + acessório FM" + +#~ msgid "FM Towns (extended channel 3)" +#~ msgstr "FM Towns (canal 3 estendido)" + +#~ msgid "Commander X16 (VERA only)" +#~ msgstr "Commander X16 (VERA apenas)" + +#~ msgid "Commander X16 (with OPM)" +#~ msgstr "Commander X16 (com OPM)" + +#~ msgid "Commander X16 (with Twin OPL3)" +#~ msgstr "Commander X16 (com 2x OPL3)" + +#~ msgid "Arcade systems" +#~ msgstr "Sistemas Arcade" + +#~ msgid "INSERT COIN" +#~ msgstr "Ô tio, me vê uma ficha aí!" + +#~ msgid "Williams/Midway Y/T unit w/ADPCM sound board" +#~ msgstr "Placa Williams/Midway Y/T com placa de som ADPCM" + +#~ msgid "Konami Battlantis (drums mode on first OPL2)" +#~ msgstr "Konami Battlantis (modo bateria no primeiro OPL2)" + +#~ msgid "Konami Battlantis (drums mode on second OPL2)" +#~ msgstr "Konami Battlantis (modo bateria no segundo OPL2)" + +#~ msgid "Konami Battlantis (drums mode on both OPL2s)" +#~ msgstr "Konami Battlantis (modo bateria em ambos os OPL2s)" + +#~ msgid "Konami Haunted Castle (drums mode)" +#~ msgstr "Konami Haunted Castle (modo bateria)" + +#~ msgid "Konami S.P.Y. (drums mode)" +#~ msgstr "Konami S.P.Y. (modo bateria)" + +#~ msgid "Konami Rollergames (drums mode)" +#~ msgstr "Konami Rollergames (modo bateria)" + +#~ msgid "Sega System E (with FM expansion)" +#~ msgstr "Sega System E (com expansão FM)" + +#~ msgid "Sega System E (with FM expansion in drums mode)" +#~ msgstr "Sega System E (com expansão FM em modo bateria)" + +#~ msgid "Sega Hang-On (extended channel 3)" +#~ msgstr "Sega Hang-On (canal 3 estendido)" + +#~ msgid "Sega Hang-On (extended channel 3 and CSM)" +#~ msgstr "Sega Hang-On (canal 3 estendido e CSM)" + +#~ msgid "Sega System 18 (extended channel 3 on first OPN2C)" +#~ msgstr "Sega System 18 (canal 3 estendido no primeiro OPN2C)" + +#~ msgid "Sega System 18 (extended channel 3 and CSM on first OPN2C)" +#~ msgstr "Sega System 18 (canal 3 estendido e CSM no primeiro OPN2C)" + +#~ msgid "Sega System 18 (extended channel 3 on second OPN2C)" +#~ msgstr "Sega System 18 (canal 3 estendido no segundo OPN2C)" + +#~ msgid "Sega System 18 (extended channel 3 and CSM on second OPN2C)" +#~ msgstr "Sega System 18 (canal 3 estendido e CSM no segundo OPN2C)" + +#~ msgid "Sega System 18 (extended channel 3 on both OPN2Cs)" +#~ msgstr "Sega System 18 (canal 3 estendido em ambos os OPN2Cs)" + +#~ msgid "Sega System 18 (extended channel 3 and CSM on both OPN2Cs)" +#~ msgstr "Sega System 18 (canal 3 estendido e CSM em ambos os OPN2Cs)" + +#~ msgid "Sega System 32 (extended channel 3 on first OPN2C)" +#~ msgstr "Sega System 32 (canal 3 estendido no primeiro OPN2C)" + +#~ msgid "Sega System 32 (extended channel 3 and CSM on first OPN2C)" +#~ msgstr "Sega System 32 (canal 3 estendido e CSM no primeiro OPN2C)" + +#~ msgid "Sega System 32 (extended channel 3 on second OPN2C)" +#~ msgstr "Sega System 32 (canal 3 estendido no segundo OPN2C)" + +#~ msgid "Sega System 32 (extended channel 3 and CSM on second OPN2C)" +#~ msgstr "Sega System 32 (canal 3 estendido e CSM no segundo OPN2C)" + +#~ msgid "Sega System 32 (extended channel 3 on both OPN2Cs)" +#~ msgstr "Sega System 32 (canal 3 estendido em ambos os OPN2Cs)" + +#~ msgid "Sega System 32 (extended channel 3 and CSM on both OPN2Cs)" +#~ msgstr "Sega System 32 (canal 3 estendido e CSM em ambos os OPN2Cs)" + +#~ msgid "Capcom Arcade" +#~ msgstr "Capcom Arcade" + +#~ msgid "Capcom Arcade (extended channel 3 on first OPN)" +#~ msgstr "Capcom Arcade (canal 3 estendido no primeiro OPN)" + +#~ msgid "Capcom Arcade (extended channel 3 and CSM on first OPN)" +#~ msgstr "Capcom Arcade (canal 3 estendido e CSM no primeiro OPN)" + +#~ msgid "Capcom Arcade (extended channel 3 on second OPN)" +#~ msgstr "Capcom Arcade (canal 3 estendido no segundo OPN)" + +#~ msgid "Capcom Arcade (extended channel 3 and CSM on second OPN)" +#~ msgstr "Capcom Arcade (canal 3 estendido e CSM no segundo OPN)" + +#~ msgid "Capcom Arcade (extended channel 3 on both OPNs)" +#~ msgstr "Capcom Arcade (canal 3 estendido em ambos os OPNs)" + +#~ msgid "Capcom Arcade (extended channel 3 and CSM on both OPNs)" +#~ msgstr "Capcom Arcade (canal 3 estendido e CSM em ambos os OPNs)" + +#~ msgid "Jaleco Ginga NinkyouDen (drums mode)" +#~ msgstr "Jaleco Ginga NinkyouDen (modo bateria)" + +#~ msgid "NMK 16-bit Arcade" +#~ msgstr "NMK Arcade 16-bit" + +#~ msgid "NMK 16-bit Arcade (extended channel 3)" +#~ msgstr "NMK Arcade 16-bit (canal 3 estendido)" + +#~ msgid "NMK 16-bit Arcade (extended channel 3 and CSM)" +#~ msgstr "NMK Arcade 16-bit (canal 3 estendido e CSM)" + +#~ msgid "NMK 16-bit Arcade (w/NMK112 bankswitching)" +#~ msgstr "NMK Arcade 16-bit (com bankswitching NMK112)" + +#~ msgid "NMK 16-bit Arcade (w/NMK112 bankswitching, extended channel 3)" +#~ msgstr "NMK Arcade 16-bit (com bankswitching NMK112, canal 3 estendido)" + +#~ msgid "" +#~ "NMK 16-bit Arcade (w/NMK112 bankswitching, extended channel 3 and CSM)" +#~ msgstr "" +#~ "NMK 16-bit Arcade (com bankswitching NMK112, canal 3 estendido e CSM)" + +#~ msgid "Atlus Power Instinct 2 (extended channel 3)" +#~ msgstr "Atlus Power Instinct 2 (canal 3 estendido)" + +#~ msgid "Atlus Power Instinct 2 (extended channel 3 and CSM)" +#~ msgstr "Atlus Power Instinct 2 (canal 3 estendido e CSM)" + +#~ msgid "Kaneko DJ Boy (extended channel 3)" +#~ msgstr "Kaneko DJ Boy (canal 3 estendido)" + +#~ msgid "Kaneko DJ Boy (extended channel 3 and CSM)" +#~ msgstr "Kaneko DJ Boy (canal 3 estendido e CSM)" + +#~ msgid "Kaneko Air Buster (extended channel 3)" +#~ msgstr "Kaneko Air Buster (canal 3 estendido)" + +#~ msgid "Kaneko Air Buster (extended channel 3 and CSM)" +#~ msgstr "Kaneko Air Buster (canal 3 estendido e CSM)" + +#~ msgid "Tecmo Ninja Gaiden (extended channel 3 on first OPN)" +#~ msgstr "Tecmo Ninja Gaiden (canal 3 estendido no primeiro OPN)" + +#~ msgid "Tecmo Ninja Gaiden (extended channel 3 and CSM on first OPN)" +#~ msgstr "Tecmo Ninja Gaiden (canal 3 estendido e CSM no primeiro OPN)" + +#~ msgid "Tecmo Ninja Gaiden (extended channel 3 on second OPN)" +#~ msgstr "Tecmo Ninja Gaiden (canal 3 estendido no segundo OPN)" + +#~ msgid "Tecmo Ninja Gaiden (extended channel 3 and CSM on second OPN)" +#~ msgstr "Tecmo Ninja Gaiden (canal 3 estendido e CSM no segundo OPN)" + +#~ msgid "Tecmo Ninja Gaiden (extended channel 3 on both OPNs)" +#~ msgstr "Tecmo Ninja Gaiden (canal 3 estendido em ambos os OPNs)" + +#~ msgid "Tecmo Ninja Gaiden (extended channel 3 and CSM on both OPNs)" +#~ msgstr "Tecmo Ninja Gaiden (canal 3 estendido e CSM em ambos os OPNs)" + +#~ msgid "Tecmo System (drums mode)" +#~ msgstr "Tecmo System (modo bateria)" + +#~ msgid "Seibu Kaihatsu Raiden (drums mode)" +#~ msgstr "Seibu Kaihatsu Raiden (modo bateria)" + +#~ msgid "Sunsoft Arcade" +#~ msgstr "Sunsoft Arcade" + +#~ msgid "Sunsoft Arcade (extended channel 3)" +#~ msgstr "Sunsoft Arcade (canal 3 estendido)" + +#~ msgid "Sunsoft Arcade (extended channel 3 and CSM)" +#~ msgstr "Sunsoft Arcade (canal 3 estendido e CSM)" + +#~ msgid "Atari Rampart (drums mode)" +#~ msgstr "Atari Rampart (modo bateria)" + +#~ msgid "Data East Karnov (extended channel 3)" +#~ msgstr "Data East Karnov (canal 3 estendido)" + +#~ msgid "Data East Karnov (extended channel 3 and CSM)" +#~ msgstr "Data East Karnov (canal 3 estendido e CSM)" + +#~ msgid "Data East Karnov (drums mode)" +#~ msgstr "Data East Karnov (modo bateria)" + +#~ msgid "Data East Karnov (extended channel 3; drums mode)" +#~ msgstr "Data East Karnov (canal 3 estendido; modo bateria)" + +#~ msgid "Data East Karnov (extended channel 3 and CSM; drums mode)" +#~ msgstr "Data East Karnov (canal 3 estendido e CSM; modo bateria)" + +#~ msgid "Data East Arcade" +#~ msgstr "Data East Arcade" + +#~ msgid "Data East Arcade (extended channel 3)" +#~ msgstr "Data East Arcade (canal 3 estendido)" + +#~ msgid "Data East Arcade (extended channel 3 and CSM)" +#~ msgstr "Data East Arcade (canal 3 estendido e CSM)" + +#~ msgid "Data East Arcade (drums mode)" +#~ msgstr "Data East Arcade (modo bateria)" + +#~ msgid "Data East Arcade (extended channel 3; drums mode)" +#~ msgstr "Data East Arcade (canal 3 estendido; modo bateria)" + +#~ msgid "Data East Arcade (extended channel 3 and CSM; drums mode)" +#~ msgstr "Data East Arcade (canal 3 estendido e CSM; modo bateria)" + +#~ msgid "Data East PCX (extended channel 3)" +#~ msgstr "Data East PCX (canal 3 estendido)" + +#~ msgid "Data East PCX (extended channel 3 and CSM)" +#~ msgstr "Data East PCX (canal 3 estendido e CSM)" + +#~ msgid "Data East Dark Seal (extended channel 3)" +#~ msgstr "Data East Dark Seal (canal 3 estendido)" + +#~ msgid "Data East Dark Seal (extended channel 3 and CSM)" +#~ msgstr "Data East Dark Seal (canal 3 estendido e CSM)" + +#~ msgid "SNK Ikari Warriors (drums mode on first OPL)" +#~ msgstr "SNK Ikari Warriors (modo bateria no primeiro OPL)" + +#~ msgid "SNK Ikari Warriors (drums mode on second OPL)" +#~ msgstr "SNK Ikari Warriors (modo bateria no segundo OPL)" + +#~ msgid "SNK Ikari Warriors (drums mode on both OPLs)" +#~ msgstr "SNK Ikari Warriors (modo bateria em ambos OPLs)" + +#~ msgid "SNK Triple Z80 (drums mode on Y8950)" +#~ msgstr "SNK Triple Z80 (modo bateria no Y8950)" + +#~ msgid "SNK Triple Z80 (drums mode on OPL)" +#~ msgstr "SNK Triple Z80 (modo bateria no OPL)" + +#~ msgid "SNK Triple Z80 (drums mode on Y8950 and OPL)" +#~ msgstr "SNK Triple Z80 (modo bateria no Y8950 e no OPL)" + +#~ msgid "SNK Chopper I (drums mode on Y8950)" +#~ msgstr "SNK Chopper I (modo bateria no Y8950)" + +#~ msgid "SNK Chopper I (drums mode on OPL2)" +#~ msgstr "SNK Chopper I (modo bateria no OPL2)" + +#~ msgid "SNK Chopper I (drums mode on Y8950 and OPL2)" +#~ msgstr "SNK Chopper I (modo bateria no Y8950 e no OPL2)" + +#~ msgid "SNK Touchdown Fever (drums mode on OPL)" +#~ msgstr "SNK Touchdown Fever (modo bateria no OPL)" + +#~ msgid "SNK Touchdown Fever (drums mode on Y8950)" +#~ msgstr "SNK Touchdown Fever (modo bateria no Y8950)" + +#~ msgid "SNK Touchdown Fever (drums mode on OPL and Y8950)" +#~ msgstr "SNK Touchdown Fever (modo bateria no OPL e no Y8950)" + +#~ msgid "Alpha denshi Alpha-68K (extended channel 3)" +#~ msgstr "Alpha denshi Alpha-68K (canal 3 estendido)" + +#~ msgid "Alpha denshi Alpha-68K (extended channel 3 and CSM)" +#~ msgstr "Alpha denshi Alpha-68K (canal 3 estendido e CSM)" + +#~ msgid "Alpha denshi Alpha-68K (drums mode)" +#~ msgstr "Alpha denshi Alpha-68K (modo bateria)" + +#~ msgid "Alpha denshi Alpha-68K (extended channel 3; drums mode)" +#~ msgstr "Alpha denshi Alpha-68K (canal 3 estendido; modo bateria)" + +#~ msgid "Alpha denshi Alpha-68K (extended channel 3 and CSM; drums mode)" +#~ msgstr "Alpha denshi Alpha-68K (canal 3 estendido e CSM; modo bateria)" + +#~ msgid "Neo Geo MVS (extended channel 2)" +#~ msgstr "Neo Geo MVS (canal 2 estendido)" + +#~ msgid "Neo Geo MVS (extended channel 2 and CSM)" +#~ msgstr "Neo Geo MVS (canal 2 estendido e CSM)" + +#~ msgid "Namco (3-channel WSG)" +#~ msgstr "Namco (WSG de 3 canais)" + +#~ msgid "Taito Arcade" +#~ msgstr "Taito Arcade" + +#~ msgid "Taito Arcade (extended channel 3)" +#~ msgstr "Taito Arcade (canal 3 estendido)" + +#~ msgid "Taito Arcade (extended channel 3 and CSM)" +#~ msgstr "Taito Arcade (canal 3 estendido e CSM)" + +#~ msgid "Seta 1 + FM addon" +#~ msgstr "Seta 1 + acessório FM" + +#~ msgid "Seta 1 + FM addon (extended channel 3)" +#~ msgstr "Seta 1 + acessório FM (canal 3 estendido)" + +#~ msgid "Seta 1 + FM addon (extended channel 3 and CSM)" +#~ msgstr "Seta 1 + acessório FM (canal 3 estendido e CSM)" + +#~ msgid "Coreland Cyber Tank (drums mode)" +#~ msgstr "Coreland Cyber Tank (modo bateria)" + +#~ msgid "Toaplan 1 (drums mode)" +#~ msgstr "Toaplan 1 (modo bateria)" + +#~ msgid "Dynax/Nakanihon 3rd generation hardware" +#~ msgstr "Hardware Dynax/Nakanihon de 3ª geração" + +#~ msgid "Dynax/Nakanihon 3rd generation hardware (drums mode)" +#~ msgstr "Hardware Dynax/Nakanihon de 3ª geração (modo bateria)" + +#~ msgid "Dynax/Nakanihon Real Break (drums mode)" +#~ msgstr "Dynax/Nakanihon Real Break (modo bateria)" + +#~ msgid "system presets that you have saved." +#~ msgstr "predefinições de sistema que você salvou." + +#~ msgid "" +#~ "chips which use frequency modulation (FM) to generate sound.\n" +#~ "some of these also pack more (like square and sample channels).\n" +#~ "Actually \"FM\" here stands for phase modulation,\n" +#~ "but these two are indistinguishable\n" +#~ "if you use sine waves." +#~ msgstr "" +#~ "chips que utilizam modulação de frequência (FM) para gerar som.\n" +#~ "alguns destes também possuem mais recursos (como canais de onda quadrada " +#~ "e samples).\n" +#~ "Na verdade, \"FM\" aqui significa modulação de fase,\n" +#~ "mas as duas técnicas são indistinguíveis\n" +#~ "se você utilizar ondas senoidais." + +#~ msgid "Yamaha YM2203 (extended channel 3)" +#~ msgstr "Yamaha YM2203 (canal 3 estendido)" + +#~ msgid "Yamaha YM2203 (extended channel 3 and CSM)" +#~ msgstr "Yamaha YM2203 (canal 3 estendido e CSM)" + +#~ msgid "Yamaha YM2608 (extended channel 3)" +#~ msgstr "Yamaha YM2608 (canal 3 estendido e CSM)" + +#~ msgid "Yamaha YM2608 (extended channel 3 and CSM)" +#~ msgstr "Yamaha YM2608 (canal 3 estendido e CSM)" + +#~ msgid "Yamaha YM2610 (extended channel 2)" +#~ msgstr "Yamaha YM2610 (canal 2 estendido)" + +#~ msgid "Yamaha YM2610 (extended channel 2 and CSM)" +#~ msgstr "Yamaha YM2610 (canal 2 estendido e CSM)" + +#~ msgid "Yamaha YM2610B (extended channel 3)" +#~ msgstr "Yamaha YM2610B (canal 3 estendido)" + +#~ msgid "Yamaha YM2610B (extended channel 3 and CSM)" +#~ msgstr "Yamaha YM2610B (canal 3 estendido e CSM)" + +#~ msgid "Yamaha YM2612 (extended channel 3)" +#~ msgstr "Yamaha YM2612 (canal 3 estendido)" + +#~ msgid "Yamaha YM2612 (extended channel 3) with DualPCM and CSM" +#~ msgstr "Yamaha YM2612 (canal 3 estendido) com DualPCM e CSM" + +#~ msgid "Yamaha YMF276 (extended channel 3)" +#~ msgstr "Yamaha YMF276 (canal 3 estendido)" + +#~ msgid "Yamaha YMF276 with DualPCM" +#~ msgstr "Yamaha YMF276 com DualPCM" + +#~ msgid "Yamaha YMF276 (extended channel 3) with DualPCM and CSM" +#~ msgstr "Yamaha YMF276 (canal 3 estendido) com DualPCM e CSM" + +#~ msgid "Yamaha YM2413 (drums mode)" +#~ msgstr "Yamaha YM2413 (modo bateria)" + +#~ msgid "Yamaha YM3438 (extended channel 3)" +#~ msgstr "Yamaha YM3438 (canal 3 estendido)" + +#~ msgid "Yamaha YM3438 (OPN2C) with DualPCM" +#~ msgstr "Yamaha YM3438 (OPN2C) com DualPCM" + +#~ msgid "Yamaha YM3438 (extended channel 3) with DualPCM and CSM" +#~ msgstr "Yamaha YM3438 (canal 3 estendido) com DualPCM e CSM" + +#~ msgid "Yamaha YM3526 (drums mode)" +#~ msgstr "Yamaha YM3526 (modo bateria)" + +#~ msgid "Yamaha Y8950 (drums mode)" +#~ msgstr "Yamaha Y8950 (modo bateria)" + +#~ msgid "Yamaha YM3812 (drums mode)" +#~ msgstr "Yamaha YM3812 (modo bateria)" + +#~ msgid "Yamaha YMF262 (drums mode)" +#~ msgstr "Yamaha YMF262 (modo bateria)" + +#~ msgid "Yamaha YMF289B (drums mode)" +#~ msgstr "Yamaha YMF289B (modo bateria)" + +#~ msgid "" +#~ "these chips generate square/pulse tones only (but may include noise)." +#~ msgstr "" +#~ "esses chips geram tons de onda quadrada/pulsada somente (mas podem " +#~ "incluir ruído)." + +#~ msgid "Sega PSG (SN76489-like)" +#~ msgstr "Sega PSG (similar ao SN76489)" + +#~ msgid "Sega PSG (SN76489-like, Stereo)" +#~ msgstr "Sega PSG (similar ao SN76489, Estéreo)" + +#~ msgid "chips/systems which use PCM or ADPCM samples for sound synthesis." +#~ msgstr "chips/sistemas que usam samples PCM ou ADPCM para geração de som." + +#~ msgid "chips which use user-specified waveforms to generate sound." +#~ msgstr "" +#~ "chips que usam formas de onda especificadas pelo usuários para gerar som." + +#~ msgid "Namco C15 (8-channel mono)" +#~ msgstr "Namco C15 (mono, 8 canais)" + +#~ msgid "Namco C30 (8-channel stereo)" +#~ msgstr "Namco C30 (estéreo, 8 canais)" + +#~ msgid "Specialized" +#~ msgstr "Especializado" + +#~ msgid "chips/systems with unique sound synthesis methods." +#~ msgstr "chips/sistemas com métodos únicos de geração/síntese de som." + +#~ msgid "Commodore PET (pseudo-wavetable)" +#~ msgstr "Commodore PET (pseudo-wavetable)" + +#~ msgid "ZX Spectrum (beeper only, SFX-like engine)" +#~ msgstr "ZX Spectrum (beeper apenas, motor estilo SFX)" + +#~ msgid "ZX Spectrum (beeper only, QuadTone engine)" +#~ msgstr "ZX Spectrum (beeper apenas, motor QuadTone)" + +#~ msgid "" +#~ "chips/systems which do not exist in reality or were made just several " +#~ "years ago." +#~ msgstr "" +#~ "chips/sistemas que não existem fisicamente ou foram feitos apenas alguns " +#~ "anos atrás." + +#~ msgid "DefleMask-compatible" +#~ msgstr "Compatível com DefleMask" + +#~ msgid "" +#~ "these configurations are compatible with DefleMask.\n" +#~ "select this if you need to save as .dmf or work with that program." +#~ msgstr "" +#~ "essas configurações são compatíveis com o DefleMask.\n" +#~ "selecione uma delas se você precisar salvar no formato .dmf ou trabalhar " +#~ "com este programa." + +#~ msgid "Arcade (YM2151 and SegaPCM)" +#~ msgstr "Arcade (YM2151 e SegaPCM)" + +#~ msgid "Neo Geo CD (extended channel 2)" +#~ msgstr "Neo Geo CD (canal 2 estendido)" + +#~ msgid "Register View###Register View" +#~ msgstr "Visualização de Registradores###Register View" + +#~ msgid "Sample Editor###Sample Editor" +#~ msgstr "Editor de Sample###Sample Editor" + +#~ msgid "%d: %s" +#~ msgstr "%d: %s" + +#~ msgid "QSound: maximum sample length is 65535" +#~ msgstr "QSound: o tamanho máximo de uma sample é 65535" + +#~ msgid "Mode" +#~ msgstr "Modo" + +#~ msgid "%d samples" +#~ msgid_plural "%d samples" +#~ msgstr[0] "%d sample" +#~ msgstr[1] "%d samples" + +#~ msgid "%d bytes" +#~ msgid_plural "%d bytes" +#~ msgstr[0] "%d byte" +#~ msgstr[1] "%d bytes" + +#~ msgid "Song Info###Song Information" +#~ msgstr "Informações da Música###Song Information" + +#~ msgid "Song Comments###Song Comments" +#~ msgstr "Comentários da Música###Song Comments" + +#~ msgid "Speed###Speed" +#~ msgstr "Velocidade###Speed" + +#~ msgid "Statistics###Statistics" +#~ msgstr "Estatísticas###Statistics" + +#~ msgid "Subsongs###Subsongs" +#~ msgstr "Subfaixas###Subsongs" + +#~ msgid "Downmix chip output to mono" +#~ msgstr "Misturar saída do chip para mono" + +#~ msgid "Reserved blocks for wavetables:" +#~ msgstr "Blocos reservados para wavetables:" + +#~ msgid "" +#~ "Reserve this many blocks 256 bytes each in sample memory.\n" +#~ "Each block holds one wavetable (is used for one wavetable channel),\n" +#~ "so reserve as many as you need." +#~ msgstr "" +#~ "Reserva tal quantidade de blocos, 256 bytes cada, na memória de sample.\n" +#~ "Cada bloco irá conter uma wavetable (será usado para um canal " +#~ "wavetable),\n" +#~ "então reserve tantos quanto você precisar." + +#~ msgid "Hz" +#~ msgstr "Hz" + +#~ msgid "1MB" +#~ msgstr "1MB" + +#~ msgid "256KB" +#~ msgstr "256KB" + +#~ msgid "Chip Manager###Chip Manager" +#~ msgstr "Gerenciador de Chips###Chip Manager" + +#~ msgid "cannot duplicate chip! (" +#~ msgstr "não pôde duplicar chip! (" + +#~ msgid "ZXS Beeper" +#~ msgstr "Beeper do ZX Spectrum" + +#~ msgid "Volume Meter###Volume Meter" +#~ msgstr "Medidor de Volume###Volume Meter" + +#~ msgid "Wavetable Editor###Wavetable Editor" +#~ msgstr "Editor de Wavetable###Wavetable Editor" + +#~ msgid "export .dmw..." +#~ msgstr "exportar .dmw..." + +#~ msgid "export raw..." +#~ msgstr "exportar em formato raw..." + +#~ msgid "" +#~ "use a width of:\n" +#~ "- any on Amiga/N163\n" +#~ "- 32 on Game Boy, PC Engine, SCC, Konami Bubble System, Namco WSG, " +#~ "Virtual Boy and WonderSwan\n" +#~ "- 64 on FDS\n" +#~ "- 128 on X1-010\n" +#~ "- 256 for ES5503\n" +#~ "any other widths will be scaled during playback." +#~ msgstr "" +#~ "use uma largura de:\n" +#~ "- qualquer uma no Amiga/N163\n" +#~ "- 32 no Game Boy, PC Engine, SCC, Konami Bubble System, Namco WSG, " +#~ "Virtual Boy e WonderSwan\n" +#~ "- 64 no FDS\n" +#~ "- 128 no X1-010\n" +#~ "- 256 para o ES5503\n" +#~ "quaisquer outras larguras serão escalonadas no momento da reprodução." + +#~ msgid "" +#~ "use a height of:\n" +#~ "- 16 for Game Boy, WonderSwan, Namco WSG, Konami Bubble System, X1-010 " +#~ "Envelope shape and N163\n" +#~ "- 32 for PC Engine\n" +#~ "- 64 for FDS and Virtual Boy\n" +#~ "- 256 for X1-010, SCC and ES5503\n" +#~ "any other heights will be scaled during playback." +#~ msgstr "" +#~ "use uma altura de:\n" +#~ "- 16 para Game Boy, WonderSwan, Namco WSG, Konami Bubble System, forma do " +#~ "Envelope do X1-010 e N163\n" +#~ "- 32 para PC Engine\n" +#~ "- 64 para FDS e Virtual Boy\n" +#~ "- 256 para X1-010, SCC e ES5503\n" +#~ "quaisquer outras alturas serão escalonadas no momento da reprodução." + +#~ msgid "Oscilloscope (X-Y)###Oscilloscope (X-Y)" +#~ msgstr "Osciloscópio (X-Y)###Oscilloscope (X-Y)" + +#~ msgid "exponential" +#~ msgstr "exponencial" + +#~ msgid "direct" +#~ msgstr "direto" + +#~ msgid "HP/K2, HP/K2" +#~ msgstr "HP/K2, HP/K2" + +#~ msgid "HP/K2, LP/K1" +#~ msgstr "HP/K2, LP/K1" + +#~ msgid "LP/K2, LP/K2" +#~ msgstr "LP/K2, LP/K2" + +#~ msgid "LP/K2, LP/K1" +#~ msgstr "LP/K2, LP/K1" + +#~ msgid "Settings###Settings" +#~ msgstr "Configurações###Settings" + +#~ msgid "Language" +#~ msgstr "Linguagem" + +#~ msgid "GUI language" +#~ msgstr "Linguagem da interface" + +#~ msgid "Translate channel names in pattern header" +#~ msgstr "Traduzir nomes dos canais no cabeçalho da sequência" + +#~ msgid "Translate channel names in channel oscilloscope label" +#~ msgstr "Traduzir nomes dos canais no rótulo do osciloscópio por canal" + +#~ msgid "Translate short channel names (in orders and other places)" +#~ msgstr "Traduzir nomes curtos dos canais (nas ordens e em outros lugares)" + +#~ msgid "iulserghiueshgui" +#~ msgstr "kcjsghçzxjcmfgag" + +#~ msgid "What?" +#~ msgstr "O quê?" + +#~ msgid "want: %d samples @ %.0fHz (%d %s)" +#~ msgstr "queria: %d amostras a %.0fHz (%d %s)" + +#~ msgid "got: %d samples @ %.0fHz (%d %s)" +#~ msgstr "conseguiu: %d amostras @ %.0fHz (%d %s)" + +#~ msgid "Listen to MIDI clock" +#~ msgstr "Escutar clock MIDI" + +#~ msgid "Listen to MIDI time code" +#~ msgstr "Escutar timecode MIDI" + +#~ msgid "Light Show (use for Launchpad)" +#~ msgstr "Show de luzes (use para o Launchpad)" + +#~ msgid "Sample ROMs:" +#~ msgstr "ROMs de Sample:" + +#~ msgid "OPL4 YRW801 path" +#~ msgstr "Caminho da YRW801 do OPL4" + +#~ msgid "MultiPCM TG100 path" +#~ msgstr "Caminho da TG100 do MultiPCM" + +#~ msgid "MultiPCM MU5 path" +#~ msgstr "Caminho da MU5 do MultiPCM" + +#~ msgid "Local wavetables list" +#~ msgstr "Lista de wavetables locais" + +#~ msgid "Right-click or double-click" +#~ msgstr "Clicar com o botão direito ou duplo clique" + +#~ msgid "Right-click" +#~ msgstr "Clicar com o botão direito" + +#~ msgid "Double-click" +#~ msgstr "Duplo clique" + +#~ msgid "Cursor details" +#~ msgstr "Detalhes do cursor" + +#~ msgid "File path" +#~ msgstr "Caminho do arquivo" + +#~ msgid "Cursor details or file path" +#~ msgstr "Detalhes do cursor ou caminho do arquivo" + +#~ msgid "Nothing" +#~ msgstr "Nada" + +#~ msgid "Square border##CHS4" +#~ msgstr "Borda quadrada##CHS4" + +#~ msgid "Non##CHV0" +#~ msgstr "Nenhuma##CHV0" + +#~ msgid "Alternate (4x1)##fml6" +#~ msgstr "Alternativo (4x1)##fml6" + +#~ msgid "Between Decay and Sustain Rate" +#~ msgstr "Entre Decaimento e Taxa de Sustentação" + +#~ msgid "After Release Rate" +#~ msgstr "Após Taxa de Repouso" + +#~ msgid "Misc" +#~ msgstr "Miscelânea" + +#~ msgid "Wrap text" +#~ msgstr "Quebrar texto" + +#~ msgid "Wrap text in song/subsong comments window." +#~ msgstr "" +#~ "Quebrar automaticamente texto na janela de comentários da música/subfaixa." + +#~ msgid "Frame shading in text windows" +#~ msgstr "Sombreamento do quadro nas janelas de texto" + +#~ msgid "" +#~ "Apply frame shading to the multiline text fields\n" +#~ "such as song/subsong info/comments." +#~ msgstr "" +#~ "Aplicar sombreamento de quadro para os campos de texto multilinha\n" +#~ "como na janela de comentários da música/subfaixa." + +#~ msgid "Show chip info in chip manager" +#~ msgstr "Mostrar informações do chip no gerenciador de chips" + +#~ msgid "" +#~ "Display tooltip in chip manager when hovering over the chip. Tooltip " +#~ "shows chip name and description." +#~ msgstr "" +#~ "Mostra uma dica de contexto no gerenciador de chips ao passar o mouse " +#~ "sobre o chip. A dica de contexto mostra o nome do chip e a descrição." + +#~ msgid "Button##CC_GUI_COLOR_BUTTON" +#~ msgstr "Botão##CC_GUI_COLOR_BUTTON" + +#~ msgid "Button (hovered)##CC_GUI_COLOR_BUTTON_HOVER" +#~ msgstr "Botão (flutuando sobre)##CC_GUI_COLOR_BUTTON_HOVER" + +#~ msgid "Button (active)##CC_GUI_COLOR_BUTTON_ACTIVE" +#~ msgstr "Botão (ativado)##CC_GUI_COLOR_BUTTON_ACTIVE" + +#~ msgid "Tab##CC_GUI_COLOR_TAB" +#~ msgstr "Aba##CC_GUI_COLOR_TAB" + +#~ msgid "Tab (hovered)##CC_GUI_COLOR_TAB_HOVER" +#~ msgstr "Aba (flutuando sobre)##CC_GUI_COLOR_TAB_HOVER" + +#~ msgid "Tab (active)##CC_GUI_COLOR_TAB_ACTIVE" +#~ msgstr "Aba (ativada)##CC_GUI_COLOR_TAB_ACTIVE" + +#~ msgid "Tab (unfocused)##CC_GUI_COLOR_TAB_UNFOCUSED" +#~ msgstr "Aba (desfocada)##CC_GUI_COLOR_TAB_UNFOCUSED" + +#~ msgid "Tab (unfocused and active)##CC_GUI_COLOR_TAB_UNFOCUSED_ACTIVE" +#~ msgstr "Aba (desfocada e ativada)##CC_GUI_COLOR_TAB_UNFOCUSED_ACTIVE" + +#~ msgid "ImGui header##CC_GUI_COLOR_IMGUI_HEADER" +#~ msgstr "Cabeçalho ImGui##CC_GUI_COLOR_IMGUI_HEADER" + +#~ msgid "ImGui header (hovered)##CC_GUI_COLOR_IMGUI_HEADER_HOVER" +#~ msgstr "Cabeçalho ImGui (flutuando sobre)##CC_GUI_COLOR_IMGUI_HEADER_HOVER" + +#~ msgid "ImGui header (active)##CC_GUI_COLOR_IMGUI_HEADER_ACTIVE" +#~ msgstr "Cabeçalho ImGui (ativado)##CC_GUI_COLOR_IMGUI_HEADER_ACTIVE" + +#~ msgid "Resize grip##CC_GUI_COLOR_RESIZE_GRIP" +#~ msgstr "Aba de redimensionamento##CC_GUI_COLOR_RESIZE_GRIP" + +#~ msgid "Resize grip (hovered)##CC_GUI_COLOR_RESIZE_GRIP_HOVER" +#~ msgstr "" +#~ "Aba de redimensionamento (flutuando sobre)##CC_GUI_COLOR_RESIZE_GRIP_HOVER" + +#~ msgid "Resize grip (active)##CC_GUI_COLOR_RESIZE_GRIP_ACTIVE" +#~ msgstr "Aba de redimensionamento (ativada)##CC_GUI_COLOR_RESIZE_GRIP_ACTIVE" + +#~ msgid "Widget background##CC_GUI_COLOR_WIDGET_BACKGROUND" +#~ msgstr "Fundo de elemento##CC_GUI_COLOR_WIDGET_BACKGROUND" + +#~ msgid "Widget background (hovered)##CC_GUI_COLOR_WIDGET_BACKGROUND_HOVER" +#~ msgstr "" +#~ "Fundo de elemento (flutuando sobre)##CC_GUI_COLOR_WIDGET_BACKGROUND_HOVER" + +#~ msgid "Widget background (active)##CC_GUI_COLOR_WIDGET_BACKGROUND_ACTIVE" +#~ msgstr "Fundo de elemento (ativado)##CC_GUI_COLOR_WIDGET_BACKGROUND_ACTIVE" + +#~ msgid "Slider grab##CC_GUI_COLOR_SLIDER_GRAB" +#~ msgstr "Botão deslizante##CC_GUI_COLOR_SLIDER_GRAB" + +#~ msgid "Slider grab (active)##CC_GUI_COLOR_SLIDER_GRAB_ACTIVE" +#~ msgstr "Botão deslizante (ativado)##CC_GUI_COLOR_SLIDER_GRAB_ACTIVE" + +#~ msgid "Title background (active)##CC_GUI_COLOR_TITLE_BACKGROUND_ACTIVE" +#~ msgstr "Fundo de título (ativado)##CC_GUI_COLOR_TITLE_BACKGROUND_ACTIVE" + +#~ msgid "Checkbox/radio button mark##CC_GUI_COLOR_CHECK_MARK" +#~ msgstr "Marca de caixa de checagem/botão de rádio##CC_GUI_COLOR_CHECK_MARK" + +#~ msgid "Text selection##CC_GUI_COLOR_TEXT_SELECTION" +#~ msgstr "Seleção de texto##CC_GUI_COLOR_TEXT_SELECTION" + +#~ msgid "Line plot##CC_GUI_COLOR_PLOT_LINES" +#~ msgstr "Traçado de linha##CC_GUI_COLOR_PLOT_LINES" + +#~ msgid "Line plot (hovered)##CC_GUI_COLOR_PLOT_LINES_HOVER" +#~ msgstr "Traçado de linha (flutuando sobre)##CC_GUI_COLOR_PLOT_LINES_HOVER" + +#~ msgid "Histogram plot##CC_GUI_COLOR_PLOT_HISTOGRAM" +#~ msgstr "Desenho de histograma##CC_GUI_COLOR_PLOT_HISTOGRAM" + +#~ msgid "Histogram plot (hovered)##CC_GUI_COLOR_PLOT_HISTOGRAM_HOVER" +#~ msgstr "" +#~ "Desenho de histograma (flutuando sobre)##CC_GUI_COLOR_PLOT_HISTOGRAM_HOVER" + +#~ msgid "Table row (even)##CC_GUI_COLOR_TABLE_ROW_EVEN" +#~ msgstr "Linha de tabela (par)##CC_GUI_COLOR_TABLE_ROW_EVEN" + +#~ msgid "Table row (odd)##CC_GUI_COLOR_TABLE_ROW_ODD" +#~ msgstr "Linha de tabela (ímpar)##CC_GUI_COLOR_TABLE_ROW_ODD" + +#~ msgid "Background##CC_GUI_COLOR_BACKGROUND" +#~ msgstr "Fundo##CC_GUI_COLOR_BACKGROUND" + +#~ msgid "Window background##CC_GUI_COLOR_FRAME_BACKGROUND" +#~ msgstr "Fundo de janela##CC_GUI_COLOR_FRAME_BACKGROUND" + +#~ msgid "Sub-window background##CC_GUI_COLOR_FRAME_BACKGROUND_CHILD" +#~ msgstr "Fundo de sub-janela##CC_GUI_COLOR_FRAME_BACKGROUND_CHILD" + +#~ msgid "Pop-up background##CC_GUI_COLOR_FRAME_BACKGROUND_POPUP" +#~ msgstr "Fundo de diálogo pop-up##CC_GUI_COLOR_FRAME_BACKGROUND_POPUP" + +#~ msgid "Modal backdrop##CC_GUI_COLOR_MODAL_BACKDROP" +#~ msgstr "Fundo de diálogo modal##CC_GUI_COLOR_MODAL_BACKDROP" + +#~ msgid "Header##CC_GUI_COLOR_HEADER" +#~ msgstr "Cabeçalho##CC_GUI_COLOR_HEADER" + +#~ msgid "Text##CC_GUI_COLOR_TEXT" +#~ msgstr "Texto##CC_GUI_COLOR_TEXT" + +#~ msgid "Text (disabled)##CC_GUI_COLOR_TEXT_DISABLED" +#~ msgstr "Texto (desabilitado)##CC_GUI_COLOR_TEXT_DISABLED" + +#~ msgid "Title bar (inactive)##CC_GUI_COLOR_TITLE_INACTIVE" +#~ msgstr "Barra de título (inativa)##CC_GUI_COLOR_TITLE_INACTIVE" + +#~ msgid "Title bar (collapsed)##CC_GUI_COLOR_TITLE_COLLAPSED" +#~ msgstr "Barra de título (contraída)##CC_GUI_COLOR_TITLE_COLLAPSED" + +#~ msgid "Menu bar##CC_GUI_COLOR_MENU_BAR" +#~ msgstr "Barra de menu##CC_GUI_COLOR_MENU_BAR" + +#~ msgid "Border##CC_GUI_COLOR_BORDER" +#~ msgstr "Borda##CC_GUI_COLOR_BORDER" + +#~ msgid "Border shadow##CC_GUI_COLOR_BORDER_SHADOW" +#~ msgstr "Sombra de borda##CC_GUI_COLOR_BORDER_SHADOW" + +#~ msgid "Scroll bar##CC_GUI_COLOR_SCROLL" +#~ msgstr "Barra de rolagem##CC_GUI_COLOR_SCROLL" + +#~ msgid "Scroll bar (hovered)##CC_GUI_COLOR_SCROLL_HOVER" +#~ msgstr "Barra de rolagem (flutuando sobre)##CC_GUI_COLOR_SCROLL_HOVER" + +#~ msgid "Scroll bar (clicked)##CC_GUI_COLOR_SCROLL_ACTIVE" +#~ msgstr "Barra de rolagem (clicada)##CC_GUI_COLOR_SCROLL_ACTIVE" + +#~ msgid "Scroll bar background##CC_GUI_COLOR_SCROLL_BACKGROUND" +#~ msgstr "Fundo da barra de rolagem##CC_GUI_COLOR_SCROLL_BACKGROUND" + +#~ msgid "Separator##CC_GUI_COLOR_SEPARATOR" +#~ msgstr "Separador##CC_GUI_COLOR_SEPARATOR" + +#~ msgid "Separator (hover)##CC_GUI_COLOR_SEPARATOR_HOVER" +#~ msgstr "Separador (flutuando sobre)##CC_GUI_COLOR_SEPARATOR_HOVER" + +#~ msgid "Separator (active)##CC_GUI_COLOR_SEPARATOR_ACTIVE" +#~ msgstr "Separador (ativado)##CC_GUI_COLOR_SEPARATOR_ACTIVE" + +#~ msgid "Docking preview##CC_GUI_COLOR_DOCKING_PREVIEW" +#~ msgstr "Previsão de ancoragem##CC_GUI_COLOR_DOCKING_PREVIEW" + +#~ msgid "Docking empty##CC_GUI_COLOR_DOCKING_EMPTY" +#~ msgstr "Ancoragem vazia##CC_GUI_COLOR_DOCKING_EMPTY" + +#~ msgid "Table header##CC_GUI_COLOR_TABLE_HEADER" +#~ msgstr "Cabeçalho de tabela##CC_GUI_COLOR_TABLE_HEADER" + +#~ msgid "Table border (hard)##CC_GUI_COLOR_TABLE_BORDER_HARD" +#~ msgstr "Borda de tabela (dura)##CC_GUI_COLOR_TABLE_BORDER_HARD" + +#~ msgid "Table border (soft)##CC_GUI_COLOR_TABLE_BORDER_SOFT" +#~ msgstr "Borda de tabela (suave)##CC_GUI_COLOR_TABLE_BORDER_SOFT" + +#~ msgid "Drag and drop target##CC_GUI_COLOR_DRAG_DROP_TARGET" +#~ msgstr "Alvo de arrastar e soltar##CC_GUI_COLOR_DRAG_DROP_TARGET" + +#~ msgid "Window switcher (highlight)##CC_GUI_COLOR_NAV_WIN_HIGHLIGHT" +#~ msgstr "Seletor de janelas (realce)##CC_GUI_COLOR_NAV_WIN_HIGHLIGHT" + +#~ msgid "Window switcher backdrop##CC_GUI_COLOR_NAV_WIN_BACKDROP" +#~ msgstr "Fundo do seletor de janelas##CC_GUI_COLOR_NAV_WIN_BACKDROP" + +#~ msgid "Toggle on##CC_GUI_COLOR_TOGGLE_ON" +#~ msgstr "Alternativa ligada##CC_GUI_COLOR_TOGGLE_ON" + +#~ msgid "Toggle off##CC_GUI_COLOR_TOGGLE_OFF" +#~ msgstr "Alternativa desligada##CC_GUI_COLOR_TOGGLE_OFF" + +#~ msgid "Playback status##CC_GUI_COLOR_PLAYBACK_STAT" +#~ msgstr "Estado de reprodução##CC_GUI_COLOR_PLAYBACK_STAT" + +#~ msgid "Destructive hint##CC_GUI_COLOR_DESTRUCTIVE" +#~ msgstr "Destaque destrutivo##CC_GUI_COLOR_DESTRUCTIVE" + +#~ msgid "Warning hint##CC_GUI_COLOR_WARNING" +#~ msgstr "Destaque de aviso##CC_GUI_COLOR_WARNING" + +#~ msgid "Error hint##CC_GUI_COLOR_ERROR" +#~ msgstr "Destaque de erro##CC_GUI_COLOR_ERROR" + +#~ msgid "Directory##CC_GUI_COLOR_FILE_DIR" +#~ msgstr "Diretório##CC_GUI_COLOR_FILE_DIR" + +#~ msgid "Song (native)##CC_GUI_COLOR_FILE_SONG_NATIVE" +#~ msgstr "Música (nativa)##CC_GUI_COLOR_FILE_SONG_NATIVE" + +#~ msgid "Song (import)##CC_GUI_COLOR_FILE_SONG_IMPORT" +#~ msgstr "Música (importada)##CC_GUI_COLOR_FILE_SONG_IMPORT" + +#~ msgid "Instrument##CC_GUI_COLOR_FILE_INSTR" +#~ msgstr "Instrumento##CC_GUI_COLOR_FILE_INSTR" + +#~ msgid "Audio##CC_GUI_COLOR_FILE_AUDIO" +#~ msgstr "Áudio##CC_GUI_COLOR_FILE_AUDIO" + +#~ msgid "Wavetable##CC_GUI_COLOR_FILE_WAVE" +#~ msgstr "Wavetable##CC_GUI_COLOR_FILE_WAVE" + +#~ msgid "VGM##CC_GUI_COLOR_FILE_VGM" +#~ msgstr "VGM##CC_GUI_COLOR_FILE_VGM" + +#~ msgid "ZSM##CC_GUI_COLOR_FILE_ZSM" +#~ msgstr "ZSM##CC_GUI_COLOR_FILE_ZSM" + +#~ msgid "Font##CC_GUI_COLOR_FILE_FONT" +#~ msgstr "Fonte##CC_GUI_COLOR_FILE_FONT" + +#~ msgid "Other##CC_GUI_COLOR_FILE_OTHER" +#~ msgstr "Outro##CC_GUI_COLOR_FILE_OTHER" + +#~ msgid "Border##CC_GUI_COLOR_OSC_BORDER" +#~ msgstr "Borda##CC_GUI_COLOR_OSC_BORDER" + +#~ msgid "Background (top-left)##CC_GUI_COLOR_OSC_BG1" +#~ msgstr "Fundo (superior esquerdo)##CC_GUI_COLOR_OSC_BG1" + +#~ msgid "Background (top-right)##CC_GUI_COLOR_OSC_BG2" +#~ msgstr "Fundo (superior direito)##CC_GUI_COLOR_OSC_BG2" + +#~ msgid "Background (bottom-left)##CC_GUI_COLOR_OSC_BG3" +#~ msgstr "Fundo (inferior esquerdo)##CC_GUI_COLOR_OSC_BG3" + +#~ msgid "Background (bottom-right)##CC_GUI_COLOR_OSC_BG4" +#~ msgstr "Fundo (inferior direito)##CC_GUI_COLOR_OSC_BG4" + +#~ msgid "Waveform##CC_GUI_COLOR_OSC_WAVE" +#~ msgstr "Forma de onda##CC_GUI_COLOR_OSC_WAVE" + +#~ msgid "Waveform (clip)##CC_GUI_COLOR_OSC_WAVE_PEAK" +#~ msgstr "Forma de onda (corte/clip)##CC_GUI_COLOR_OSC_WAVE_PEAK" + +#~ msgid "Reference##CC_GUI_COLOR_OSC_REF" +#~ msgstr "Referência##CC_GUI_COLOR_OSC_REF" + +#~ msgid "Guide##CC_GUI_COLOR_OSC_GUIDE" +#~ msgstr "Guia##CC_GUI_COLOR_OSC_GUIDE" + +#~ msgid "Waveform (1)##CC_GUI_COLOR_OSC_WAVE_CH0" +#~ msgstr "Forma de onda (1)##CC_GUI_COLOR_OSC_WAVE_CH0" + +#~ msgid "Waveform (2)##CC_GUI_COLOR_OSC_WAVE_CH1" +#~ msgstr "Forma de onda (2)##CC_GUI_COLOR_OSC_WAVE_CH1" + +#~ msgid "Waveform (3)##CC_GUI_COLOR_OSC_WAVE_CH2" +#~ msgstr "Forma de onda (3)##CC_GUI_COLOR_OSC_WAVE_CH2" + +#~ msgid "Waveform (4)##CC_GUI_COLOR_OSC_WAVE_CH3" +#~ msgstr "Forma de onda (4)##CC_GUI_COLOR_OSC_WAVE_CH3" + +#~ msgid "Waveform (5)##CC_GUI_COLOR_OSC_WAVE_CH4" +#~ msgstr "Forma de onda (5)##CC_GUI_COLOR_OSC_WAVE_CH4" + +#~ msgid "Waveform (6)##CC_GUI_COLOR_OSC_WAVE_CH5" +#~ msgstr "Forma de onda (6)##CC_GUI_COLOR_OSC_WAVE_CH5" + +#~ msgid "Waveform (7)##CC_GUI_COLOR_OSC_WAVE_CH6" +#~ msgstr "Forma de onda (7)##CC_GUI_COLOR_OSC_WAVE_CH6" + +#~ msgid "Waveform (8)##CC_GUI_COLOR_OSC_WAVE_CH7" +#~ msgstr "Forma de onda (8)##CC_GUI_COLOR_OSC_WAVE_CH7" + +#~ msgid "Waveform (9)##CC_GUI_COLOR_OSC_WAVE_CH8" +#~ msgstr "Forma de onda (9)##CC_GUI_COLOR_OSC_WAVE_CH8" + +#~ msgid "Waveform (10)##CC_GUI_COLOR_OSC_WAVE_CH9" +#~ msgstr "Forma de onda (10)##CC_GUI_COLOR_OSC_WAVE_CH9" + +#~ msgid "Waveform (11)##CC_GUI_COLOR_OSC_WAVE_CH10" +#~ msgstr "Forma de onda (11)##CC_GUI_COLOR_OSC_WAVE_CH10" + +#~ msgid "Waveform (12)##CC_GUI_COLOR_OSC_WAVE_CH11" +#~ msgstr "Forma de onda (12)##CC_GUI_COLOR_OSC_WAVE_CH11" + +#~ msgid "Waveform (13)##CC_GUI_COLOR_OSC_WAVE_CH12" +#~ msgstr "Forma de onda (13)##CC_GUI_COLOR_OSC_WAVE_CH12" + +#~ msgid "Waveform (14)##CC_GUI_COLOR_OSC_WAVE_CH13" +#~ msgstr "Forma de onda (14)##CC_GUI_COLOR_OSC_WAVE_CH13" + +#~ msgid "Waveform (15)##CC_GUI_COLOR_OSC_WAVE_CH14" +#~ msgstr "Forma de onda (15)##CC_GUI_COLOR_OSC_WAVE_CH14" + +#~ msgid "Waveform (16)##CC_GUI_COLOR_OSC_WAVE_CH15" +#~ msgstr "Forma de onda (16)##CC_GUI_COLOR_OSC_WAVE_CH15" + +#~ msgid "Low##CC_GUI_COLOR_VOLMETER_LOW" +#~ msgstr "Baixo##CC_GUI_COLOR_VOLMETER_LOW" + +#~ msgid "High##CC_GUI_COLOR_VOLMETER_HIGH" +#~ msgstr "Alto##CC_GUI_COLOR_VOLMETER_HIGH" + +#~ msgid "Clip##CC_GUI_COLOR_VOLMETER_PEAK" +#~ msgstr "Corte (clip)##CC_GUI_COLOR_VOLMETER_PEAK" + +#~ msgid "Order number##CC_GUI_COLOR_ORDER_ROW_INDEX" +#~ msgstr "Número da ordem##CC_GUI_COLOR_ORDER_ROW_INDEX" + +#~ msgid "Playing order background##CC_GUI_COLOR_ORDER_ACTIVE" +#~ msgstr "Fundo da ordem sendo reproduzida##CC_GUI_COLOR_ORDER_ACTIVE" + +#~ msgid "Song loop##CC_GUI_COLOR_SONG_LOOP" +#~ msgstr "Loop da música##CC_GUI_COLOR_SONG_LOOP" + +#~ msgid "Selected order##CC_GUI_COLOR_ORDER_SELECTED" +#~ msgstr "Ordem selecionada##CC_GUI_COLOR_ORDER_SELECTED" + +#~ msgid "Similar patterns##CC_GUI_COLOR_ORDER_SIMILAR" +#~ msgstr "Sequências similares##CC_GUI_COLOR_ORDER_SIMILAR" + +#~ msgid "Inactive patterns##CC_GUI_COLOR_ORDER_INACTIVE" +#~ msgstr "Sequências inativas##CC_GUI_COLOR_ORDER_INACTIVE" + +#~ msgid "Envelope##CC_GUI_COLOR_FM_ENVELOPE" +#~ msgstr "Envelope##CC_GUI_COLOR_FM_ENVELOPE" + +#~ msgid "Sustain guide##CC_GUI_COLOR_FM_ENVELOPE_SUS_GUIDE" +#~ msgstr "Guia de sustentação##CC_GUI_COLOR_FM_ENVELOPE_SUS_GUIDE" + +#~ msgid "Release##CC_GUI_COLOR_FM_ENVELOPE_RELEASE" +#~ msgstr "Repouso##CC_GUI_COLOR_FM_ENVELOPE_RELEASE" + +#~ msgid "Algorithm background##CC_GUI_COLOR_FM_ALG_BG" +#~ msgstr "Fundo do algoritmo##CC_GUI_COLOR_FM_ALG_BG" + +#~ msgid "Algorithm lines##CC_GUI_COLOR_FM_ALG_LINE" +#~ msgstr "Linhas do algoritmo##CC_GUI_COLOR_FM_ALG_LINE" + +#~ msgid "Modulator##CC_GUI_COLOR_FM_MOD" +#~ msgstr "Moduladora##CC_GUI_COLOR_FM_MOD" + +#~ msgid "Carrier##CC_GUI_COLOR_FM_CAR" +#~ msgstr "Portadora##CC_GUI_COLOR_FM_CAR" + +#~ msgid "SSG-EG##CC_GUI_COLOR_FM_SSG" +#~ msgstr "SSG-EG##CC_GUI_COLOR_FM_SSG" + +#~ msgid "Waveform##CC_GUI_COLOR_FM_WAVE" +#~ msgstr "Forma de onda##CC_GUI_COLOR_FM_WAVE" + +#~ msgid "Mod. accent (primary)##CC_GUI_COLOR_FM_PRIMARY_MOD" +#~ msgstr "Realce mod. (primário)##CC_GUI_COLOR_FM_PRIMARY_MOD" + +#~ msgid "Mod. accent (secondary)##CC_GUI_COLOR_FM_SECONDARY_MOD" +#~ msgstr "Realce mod. (secundário)##CC_GUI_COLOR_FM_SECONDARY_MOD" + +#~ msgid "Mod. border##CC_GUI_COLOR_FM_BORDER_MOD" +#~ msgstr "Borda mod.##CC_GUI_COLOR_FM_BORDER_MOD" + +#~ msgid "Mod. border shadow##CC_GUI_COLOR_FM_BORDER_SHADOW_MOD" +#~ msgstr "Sombra borda mod.##CC_GUI_COLOR_FM_BORDER_SHADOW_MOD" + +#~ msgid "Car. accent (primary)##CC_GUI_COLOR_FM_PRIMARY_CAR" +#~ msgstr "Realce port. (primário)##CC_GUI_COLOR_FM_PRIMARY_CAR" + +#~ msgid "Car. accent (secondary)##CC_GUI_COLOR_FM_SECONDARY_CAR" +#~ msgstr "Realce port. (secundário)##CC_GUI_COLOR_FM_SECONDARY_CAR" + +#~ msgid "Car. border##CC_GUI_COLOR_FM_BORDER_CAR" +#~ msgstr "Borda port.##CC_GUI_COLOR_FM_BORDER_CAR" + +#~ msgid "Car. border shadow##CC_GUI_COLOR_FM_BORDER_SHADOW_CAR" +#~ msgstr "Sombra borda port.##CC_GUI_COLOR_FM_BORDER_SHADOW_CAR" + +#~ msgid "Volume##CC_GUI_COLOR_MACRO_VOLUME" +#~ msgstr "Volume##CC_GUI_COLOR_MACRO_VOLUME" + +#~ msgid "Pitch##CC_GUI_COLOR_MACRO_PITCH" +#~ msgstr "Tom##CC_GUI_COLOR_MACRO_PITCH" + +#~ msgid "Wave##CC_GUI_COLOR_MACRO_WAVE" +#~ msgstr "Onda##CC_GUI_COLOR_MACRO_WAVE" + +#~ msgid "Other##CC_GUI_COLOR_MACRO_OTHER" +#~ msgstr "Outro##CC_GUI_COLOR_MACRO_OTHER" + +#~ msgid "FM (OPN)##CC_GUI_COLOR_INSTR_FM" +#~ msgstr "FM (OPN)##CC_GUI_COLOR_INSTR_FM" + +#~ msgid "SN76489/Sega PSG##CC_GUI_COLOR_INSTR_STD" +#~ msgstr "SN76489/Sega PSG##CC_GUI_COLOR_INSTR_STD" + +#~ msgid "T6W28##CC_GUI_COLOR_INSTR_T6W28" +#~ msgstr "T6W28##CC_GUI_COLOR_INSTR_T6W28" + +#~ msgid "Game Boy##CC_GUI_COLOR_INSTR_GB" +#~ msgstr "Game Boy##CC_GUI_COLOR_INSTR_GB" + +#~ msgid "C64##CC_GUI_COLOR_INSTR_C64" +#~ msgstr "C64##CC_GUI_COLOR_INSTR_C64" + +#~ msgid "Amiga/Generic Sample##CC_GUI_COLOR_INSTR_AMIGA" +#~ msgstr "Amiga/Sample Genérica##CC_GUI_COLOR_INSTR_AMIGA" + +#~ msgid "PC Engine##CC_GUI_COLOR_INSTR_PCE" +#~ msgstr "PC Engine##CC_GUI_COLOR_INSTR_PCE" + +#~ msgid "AY-3-8910/SSG##CC_GUI_COLOR_INSTR_AY" +#~ msgstr "AY-3-8910/SSG##CC_GUI_COLOR_INSTR_AY" + +#~ msgid "AY8930##CC_GUI_COLOR_INSTR_AY8930" +#~ msgstr "AY8930##CC_GUI_COLOR_INSTR_AY8930" + +#~ msgid "TIA##CC_GUI_COLOR_INSTR_TIA" +#~ msgstr "TIA##CC_GUI_COLOR_INSTR_TIA" + +#~ msgid "SAA1099##CC_GUI_COLOR_INSTR_SAA1099" +#~ msgstr "SAA1099##CC_GUI_COLOR_INSTR_SAA1099" + +#~ msgid "VIC##CC_GUI_COLOR_INSTR_VIC" +#~ msgstr "VIC##CC_GUI_COLOR_INSTR_VIC" + +#~ msgid "PET##CC_GUI_COLOR_INSTR_PET" +#~ msgstr "PET##CC_GUI_COLOR_INSTR_PET" + +#~ msgid "VRC6##CC_GUI_COLOR_INSTR_VRC6" +#~ msgstr "VRC6##CC_GUI_COLOR_INSTR_VRC6" + +#~ msgid "VRC6 (saw)##CC_GUI_COLOR_INSTR_VRC6_SAW" +#~ msgstr "VRC6 (serra)##CC_GUI_COLOR_INSTR_VRC6_SAW" + +#~ msgid "FM (OPLL)##CC_GUI_COLOR_INSTR_OPLL" +#~ msgstr "FM (OPLL)##CC_GUI_COLOR_INSTR_OPLL" + +#~ msgid "FM (OPL)##CC_GUI_COLOR_INSTR_OPL" +#~ msgstr "FM (OPL)##CC_GUI_COLOR_INSTR_OPL" + +#~ msgid "FDS##CC_GUI_COLOR_INSTR_FDS" +#~ msgstr "FDS##CC_GUI_COLOR_INSTR_FDS" + +#~ msgid "Virtual Boy##CC_GUI_COLOR_INSTR_VBOY" +#~ msgstr "Virtual Boy##CC_GUI_COLOR_INSTR_VBOY" + +#~ msgid "Namco 163##CC_GUI_COLOR_INSTR_N163" +#~ msgstr "Namco 163##CC_GUI_COLOR_INSTR_N163" + +#~ msgid "Konami SCC##CC_GUI_COLOR_INSTR_SCC" +#~ msgstr "Konami SCC##CC_GUI_COLOR_INSTR_SCC" + +#~ msgid "FM (OPZ)##CC_GUI_COLOR_INSTR_OPZ" +#~ msgstr "FM (OPZ)##CC_GUI_COLOR_INSTR_OPZ" + +#~ msgid "POKEY##CC_GUI_COLOR_INSTR_POKEY" +#~ msgstr "POKEY##CC_GUI_COLOR_INSTR_POKEY" + +#~ msgid "PC Beeper##CC_GUI_COLOR_INSTR_BEEPER" +#~ msgstr "Beeper PC##CC_GUI_COLOR_INSTR_BEEPER" + +#~ msgid "WonderSwan##CC_GUI_COLOR_INSTR_SWAN" +#~ msgstr "WonderSwan##CC_GUI_COLOR_INSTR_SWAN" + +#~ msgid "Lynx##CC_GUI_COLOR_INSTR_MIKEY" +#~ msgstr "Lynx##CC_GUI_COLOR_INSTR_MIKEY" + +#~ msgid "VERA##CC_GUI_COLOR_INSTR_VERA" +#~ msgstr "VERA##CC_GUI_COLOR_INSTR_VERA" + +#~ msgid "X1-010##CC_GUI_COLOR_INSTR_X1_010" +#~ msgstr "X1-010##CC_GUI_COLOR_INSTR_X1_010" + +#~ msgid "ES5506##CC_GUI_COLOR_INSTR_ES5506" +#~ msgstr "ES5506##CC_GUI_COLOR_INSTR_ES5506" + +#~ msgid "MultiPCM##CC_GUI_COLOR_INSTR_MULTIPCM" +#~ msgstr "MultiPCM##CC_GUI_COLOR_INSTR_MULTIPCM" + +#~ msgid "SNES##CC_GUI_COLOR_INSTR_SNES" +#~ msgstr "SNES##CC_GUI_COLOR_INSTR_SNES" + +#~ msgid "Sound Unit##CC_GUI_COLOR_INSTR_SU" +#~ msgstr "Sound Unit##CC_GUI_COLOR_INSTR_SU" + +#~ msgid "Namco WSG##CC_GUI_COLOR_INSTR_NAMCO" +#~ msgstr "Namco WSG##CC_GUI_COLOR_INSTR_NAMCO" + +#~ msgid "FM (OPL Drums)##CC_GUI_COLOR_INSTR_OPL_DRUMS" +#~ msgstr "FM (OPL Bateria)##CC_GUI_COLOR_INSTR_OPL_DRUMS" + +#~ msgid "FM (OPM)##CC_GUI_COLOR_INSTR_OPM" +#~ msgstr "FM (OPM)##CC_GUI_COLOR_INSTR_OPM" + +#~ msgid "NES##CC_GUI_COLOR_INSTR_NES" +#~ msgstr "NES##CC_GUI_COLOR_INSTR_NES" + +#~ msgid "MSM6258##CC_GUI_COLOR_INSTR_MSM6258" +#~ msgstr "MSM6258##CC_GUI_COLOR_INSTR_MSM6258" + +#~ msgid "MSM6295##CC_GUI_COLOR_INSTR_MSM6295" +#~ msgstr "MSM6295##CC_GUI_COLOR_INSTR_MSM6295" + +#~ msgid "ADPCM-A##CC_GUI_COLOR_INSTR_ADPCMA" +#~ msgstr "ADPCM-A##CC_GUI_COLOR_INSTR_ADPCMA" + +#~ msgid "ADPCM-B##CC_GUI_COLOR_INSTR_ADPCMB" +#~ msgstr "ADPCM-B##CC_GUI_COLOR_INSTR_ADPCMB" + +#~ msgid "Sega PCM##CC_GUI_COLOR_INSTR_SEGAPCM" +#~ msgstr "Sega PCM##CC_GUI_COLOR_INSTR_SEGAPCM" + +#~ msgid "QSound##CC_GUI_COLOR_INSTR_QSOUND" +#~ msgstr "QSound##CC_GUI_COLOR_INSTR_QSOUND" + +#~ msgid "YMZ280B##CC_GUI_COLOR_INSTR_YMZ280B" +#~ msgstr "YMZ280B##CC_GUI_COLOR_INSTR_YMZ280B" + +#~ msgid "RF5C68##CC_GUI_COLOR_INSTR_RF5C68" +#~ msgstr "RF5C68##CC_GUI_COLOR_INSTR_RF5C68" + +#~ msgid "MSM5232##CC_GUI_COLOR_INSTR_MSM5232" +#~ msgstr "MSM5232##CC_GUI_COLOR_INSTR_MSM5232" + +#~ msgid "K007232##CC_GUI_COLOR_INSTR_K007232" +#~ msgstr "K007232##CC_GUI_COLOR_INSTR_K007232" + +#~ msgid "GA20##CC_GUI_COLOR_INSTR_GA20" +#~ msgstr "GA20##CC_GUI_COLOR_INSTR_GA20" + +#~ msgid "Pokémon Mini##CC_GUI_COLOR_INSTR_POKEMINI" +#~ msgstr "Pokémon Mini##CC_GUI_COLOR_INSTR_POKEMINI" + +#~ msgid "SM8521##CC_GUI_COLOR_INSTR_SM8521" +#~ msgstr "SM8521##CC_GUI_COLOR_INSTR_SM8521" + +#~ msgid "PV-1000##CC_GUI_COLOR_INSTR_PV1000" +#~ msgstr "PV-1000##CC_GUI_COLOR_INSTR_PV1000" + +#~ msgid "K053260##CC_GUI_COLOR_INSTR_K053260" +#~ msgstr "K053260##CC_GUI_COLOR_INSTR_K053260" + +#~ msgid "C140##CC_GUI_COLOR_INSTR_C140" +#~ msgstr "C140##CC_GUI_COLOR_INSTR_C140" + +#~ msgid "C219##CC_GUI_COLOR_INSTR_C219" +#~ msgstr "C219##CC_GUI_COLOR_INSTR_C219" + +#~ msgid "ESFM##CC_GUI_COLOR_INSTR_ESFM" +#~ msgstr "ESFM##CC_GUI_COLOR_INSTR_ESFM" + +#~ msgid "ES5503##CC_GUI_COLOR_INSTR_ES5503" +#~ msgstr "ES5503##CC_GUI_COLOR_INSTR_ES5503" + +#~ msgid "PowerNoise (noise)##CC_GUI_COLOR_INSTR_POWERNOISE" +#~ msgstr "PowerNoise (ruído)##CC_GUI_COLOR_INSTR_POWERNOISE" + +#~ msgid "PowerNoise (slope)##CC_GUI_COLOR_INSTR_POWERNOISE_SLOPE" +#~ msgstr "PowerNoise (rampa)##CC_GUI_COLOR_INSTR_POWERNOISE_SLOPE" + +#~ msgid "Other/Unknown##CC_GUI_COLOR_INSTR_UNKNOWN" +#~ msgstr "Outro/Desconhecido##CC_GUI_COLOR_INSTR_UNKNOWN" + +#~ msgid "Single color (background)##CC_GUI_COLOR_CHANNEL_BG" +#~ msgstr "Cor única (fundo)##CC_GUI_COLOR_CHANNEL_BG" + +#~ msgid "Single color (text)##CC_GUI_COLOR_CHANNEL_FG" +#~ msgstr "Cor única (texto)##CC_GUI_COLOR_CHANNEL_FG" + +#~ msgid "FM##CC_GUI_COLOR_CHANNEL_FM" +#~ msgstr "FM##CC_GUI_COLOR_CHANNEL_FM" + +#~ msgid "Pulse##CC_GUI_COLOR_CHANNEL_PULSE" +#~ msgstr "Pulsada##CC_GUI_COLOR_CHANNEL_PULSE" + +#~ msgid "Noise##CC_GUI_COLOR_CHANNEL_NOISE" +#~ msgstr "Ruído##CC_GUI_COLOR_CHANNEL_NOISE" + +#~ msgid "PCM##CC_GUI_COLOR_CHANNEL_PCM" +#~ msgstr "PCM##CC_GUI_COLOR_CHANNEL_PCM" + +#~ msgid "Wave##CC_GUI_COLOR_CHANNEL_WAVE" +#~ msgstr "Onda##CC_GUI_COLOR_CHANNEL_WAVE" + +#~ msgid "FM operator##CC_GUI_COLOR_CHANNEL_OP" +#~ msgstr "Operador FM##CC_GUI_COLOR_CHANNEL_OP" + +#~ msgid "Muted##CC_GUI_COLOR_CHANNEL_MUTED" +#~ msgstr "Mudo##CC_GUI_COLOR_CHANNEL_MUTED" + +#~ msgid "Playhead##CC_GUI_COLOR_PATTERN_PLAY_HEAD" +#~ msgstr "Cabeçote de reprodução##CC_GUI_COLOR_PATTERN_PLAY_HEAD" + +#~ msgid "Editing##CC_GUI_COLOR_EDITING" +#~ msgstr "Edição##CC_GUI_COLOR_EDITING" + +#~ msgid "Editing (will clone)##CC_GUI_COLOR_EDITING_CLONE" +#~ msgstr "Edição (modo de clone)##CC_GUI_COLOR_EDITING_CLONE" + +#~ msgid "Cursor##CC_GUI_COLOR_PATTERN_CURSOR" +#~ msgstr "Cursor##CC_GUI_COLOR_PATTERN_CURSOR" + +#~ msgid "Cursor (hovered)##CC_GUI_COLOR_PATTERN_CURSOR_HOVER" +#~ msgstr "Cursor (flutuando sobre)##CC_GUI_COLOR_PATTERN_CURSOR_HOVER" + +#~ msgid "Cursor (clicked)##CC_GUI_COLOR_PATTERN_CURSOR_ACTIVE" +#~ msgstr "Cursor (clicado)##CC_GUI_COLOR_PATTERN_CURSOR_ACTIVE" + +#~ msgid "Selection##CC_GUI_COLOR_PATTERN_SELECTION" +#~ msgstr "Seleção##CC_GUI_COLOR_PATTERN_SELECTION" + +#~ msgid "Selection (hovered)##CC_GUI_COLOR_PATTERN_SELECTION_HOVER" +#~ msgstr "Seleção (flutuando sobre)##CC_GUI_COLOR_PATTERN_SELECTION_HOVER" + +#~ msgid "Selection (clicked)##CC_GUI_COLOR_PATTERN_SELECTION_ACTIVE" +#~ msgstr "Seleção (clicada)##CC_GUI_COLOR_PATTERN_SELECTION_ACTIVE" + +#~ msgid "Highlight 1##CC_GUI_COLOR_PATTERN_HI_1" +#~ msgstr "Destaque 1##CC_GUI_COLOR_PATTERN_HI_1" + +#~ msgid "Highlight 2##CC_GUI_COLOR_PATTERN_HI_2" +#~ msgstr "Destaque 2##CC_GUI_COLOR_PATTERN_HI_2" + +#~ msgid "Row number##CC_GUI_COLOR_PATTERN_ROW_INDEX" +#~ msgstr "Número da linha##CC_GUI_COLOR_PATTERN_ROW_INDEX" + +#~ msgid "Row number (highlight 1)##CC_GUI_COLOR_PATTERN_ROW_INDEX_HI1" +#~ msgstr "Número da linha (destaque 1)##CC_GUI_COLOR_PATTERN_ROW_INDEX_HI1" + +#~ msgid "Row number (highlight 2)##CC_GUI_COLOR_PATTERN_ROW_INDEX_HI2" +#~ msgstr "Número da linha (destaque 2)##CC_GUI_COLOR_PATTERN_ROW_INDEX_HI2" + +#~ msgid "Note##CC_GUI_COLOR_PATTERN_ACTIVE" +#~ msgstr "Nota##CC_GUI_COLOR_PATTERN_ACTIVE" + +#~ msgid "Note (highlight 1)##CC_GUI_COLOR_PATTERN_ACTIVE_HI1" +#~ msgstr "Nota (destaque 1)##CC_GUI_COLOR_PATTERN_ACTIVE_HI1" + +#~ msgid "Note (highlight 2)##CC_GUI_COLOR_PATTERN_ACTIVE_HI2" +#~ msgstr "Nota (destaque 2)##CC_GUI_COLOR_PATTERN_ACTIVE_HI2" + +#~ msgid "Blank##CC_GUI_COLOR_PATTERN_INACTIVE" +#~ msgstr "Em branco##CC_GUI_COLOR_PATTERN_INACTIVE" + +#~ msgid "Blank (highlight 1)##CC_GUI_COLOR_PATTERN_INACTIVE_HI1" +#~ msgstr "Em branco (destaque 1)##CC_GUI_COLOR_PATTERN_INACTIVE_HI1" + +#~ msgid "Blank (highlight 2)##CC_GUI_COLOR_PATTERN_INACTIVE_HI2" +#~ msgstr "Em branco (destaque 2)##CC_GUI_COLOR_PATTERN_INACTIVE_HI2" + +#~ msgid "Instrument##CC_GUI_COLOR_PATTERN_INS" +#~ msgstr "Instrumento##CC_GUI_COLOR_PATTERN_INS" + +#~ msgid "Instrument (invalid type)##CC_GUI_COLOR_PATTERN_INS_WARN" +#~ msgstr "Instrumento (tipo inválido)##CC_GUI_COLOR_PATTERN_INS_WARN" + +#~ msgid "Instrument (out of range)##CC_GUI_COLOR_PATTERN_INS_ERROR" +#~ msgstr "Instrumento (fora de faixa)##CC_GUI_COLOR_PATTERN_INS_ERROR" + +#~ msgid "Volume (0%)##CC_GUI_COLOR_PATTERN_VOLUME_MIN" +#~ msgstr "Volume (0%)##CC_GUI_COLOR_PATTERN_VOLUME_MIN" + +#~ msgid "Volume (50%)##CC_GUI_COLOR_PATTERN_VOLUME_HALF" +#~ msgstr "Volume (50%)##CC_GUI_COLOR_PATTERN_VOLUME_HALF" + +#~ msgid "Volume (100%)##CC_GUI_COLOR_PATTERN_VOLUME_MAX" +#~ msgstr "Volume (100%)##CC_GUI_COLOR_PATTERN_VOLUME_MAX" + +#~ msgid "Invalid effect##CC_GUI_COLOR_PATTERN_EFFECT_INVALID" +#~ msgstr "Efeito inválido##CC_GUI_COLOR_PATTERN_EFFECT_INVALID" + +#~ msgid "Pitch effect##CC_GUI_COLOR_PATTERN_EFFECT_PITCH" +#~ msgstr "Efeito de tom##CC_GUI_COLOR_PATTERN_EFFECT_PITCH" + +#~ msgid "Volume effect##CC_GUI_COLOR_PATTERN_EFFECT_VOLUME" +#~ msgstr "Efeito de volume##CC_GUI_COLOR_PATTERN_EFFECT_VOLUME" + +#~ msgid "Panning effect##CC_GUI_COLOR_PATTERN_EFFECT_PANNING" +#~ msgstr "Efeito de balanço##CC_GUI_COLOR_PATTERN_EFFECT_PANNING" + +#~ msgid "Song effect##CC_GUI_COLOR_PATTERN_EFFECT_SONG" +#~ msgstr "Efeito de música##CC_GUI_COLOR_PATTERN_EFFECT_SONG" + +#~ msgid "Time effect##CC_GUI_COLOR_PATTERN_EFFECT_TIME" +#~ msgstr "Efeito de tempo##CC_GUI_COLOR_PATTERN_EFFECT_TIME" + +#~ msgid "Speed effect##CC_GUI_COLOR_PATTERN_EFFECT_SPEED" +#~ msgstr "Efeito de velocidade##CC_GUI_COLOR_PATTERN_EFFECT_SPEED" + +#~ msgid "Primary specific effect##CC_GUI_COLOR_PATTERN_EFFECT_SYS_PRIMARY" +#~ msgstr "Efeito específico primário##CC_GUI_COLOR_PATTERN_EFFECT_SYS_PRIMARY" + +#~ msgid "Secondary specific effect##CC_GUI_COLOR_PATTERN_EFFECT_SYS_SECONDARY" +#~ msgstr "" +#~ "Efeito específico secundário##CC_GUI_COLOR_PATTERN_EFFECT_SYS_SECONDARY" + +#~ msgid "Miscellaneous##CC_GUI_COLOR_PATTERN_EFFECT_MISC" +#~ msgstr "Miscelânea##CC_GUI_COLOR_PATTERN_EFFECT_MISC" + +#~ msgid "External command output##CC_GUI_COLOR_EE_VALUE" +#~ msgstr "Saída de comandos externos##CC_GUI_COLOR_EE_VALUE" + +#~ msgid "Status: off/disabled##CC_GUI_COLOR_PATTERN_STATUS_OFF" +#~ msgstr "" +#~ "Estado do canal: desligado/desabilitado##CC_GUI_COLOR_PATTERN_STATUS_OFF" + +#~ msgid "Status: off + macro rel##CC_GUI_COLOR_PATTERN_STATUS_REL" +#~ msgstr "" +#~ "Estado do canal: desligado + repouso de " +#~ "macro##CC_GUI_COLOR_PATTERN_STATUS_REL" + +#~ msgid "Status: on + macro rel##CC_GUI_COLOR_PATTERN_STATUS_REL_ON" +#~ msgstr "" +#~ "Estado do canal: ligado + repouso de " +#~ "macro##CC_GUI_COLOR_PATTERN_STATUS_REL_ON" + +#~ msgid "Status: on##CC_GUI_COLOR_PATTERN_STATUS_ON" +#~ msgstr "Estado do canal: ligado##CC_GUI_COLOR_PATTERN_STATUS_ON" + +#~ msgid "Status: volume##CC_GUI_COLOR_PATTERN_STATUS_VOLUME" +#~ msgstr "Estado do canal: volume##CC_GUI_COLOR_PATTERN_STATUS_VOLUME" + +#~ msgid "Status: pitch##CC_GUI_COLOR_PATTERN_STATUS_PITCH" +#~ msgstr "Estado do canal: tom##CC_GUI_COLOR_PATTERN_STATUS_PITCH" + +#~ msgid "Status: panning##CC_GUI_COLOR_PATTERN_STATUS_PANNING" +#~ msgstr "Estado do canal: balanço##CC_GUI_COLOR_PATTERN_STATUS_PANNING" + +#~ msgid "Status: chip (primary)##CC_GUI_COLOR_PATTERN_STATUS_SYS1" +#~ msgstr "Estado do canal: chip (primário)##CC_GUI_COLOR_PATTERN_STATUS_SYS1" + +#~ msgid "Status: chip (secondary)##CC_GUI_COLOR_PATTERN_STATUS_SYS2" +#~ msgstr "" +#~ "Estado do canal: chip (secundário)##CC_GUI_COLOR_PATTERN_STATUS_SYS2" + +#~ msgid "Status: mixing##CC_GUI_COLOR_PATTERN_STATUS_MIXING" +#~ msgstr "Estado do canal: mixing##CC_GUI_COLOR_PATTERN_STATUS_MIXING" + +#~ msgid "Status: DSP effect##CC_GUI_COLOR_PATTERN_STATUS_DSP" +#~ msgstr "Estado do canal: efeito DSP##CC_GUI_COLOR_PATTERN_STATUS_DSP" + +#~ msgid "Status: note altering##CC_GUI_COLOR_PATTERN_STATUS_NOTE" +#~ msgstr "" +#~ "Estado do canal: alteração de nota##CC_GUI_COLOR_PATTERN_STATUS_NOTE" + +#~ msgid "Status: misc color 1##CC_GUI_COLOR_PATTERN_STATUS_MISC1" +#~ msgstr "" +#~ "Estado do canal: cor miscelânea 1##CC_GUI_COLOR_PATTERN_STATUS_MISC1" + +#~ msgid "Status: misc color 2##CC_GUI_COLOR_PATTERN_STATUS_MISC2" +#~ msgstr "" +#~ "Estado do canal: cor miscelânea 2##CC_GUI_COLOR_PATTERN_STATUS_MISC2" + +#~ msgid "Status: misc color 3##CC_GUI_COLOR_PATTERN_STATUS_MISC3" +#~ msgstr "" +#~ "Estado do canal: cor miscelânea 3##CC_GUI_COLOR_PATTERN_STATUS_MISC3" + +#~ msgid "Status: attack##CC_GUI_COLOR_PATTERN_STATUS_ATTACK" +#~ msgstr "Estado do canal: ataque##CC_GUI_COLOR_PATTERN_STATUS_ATTACK" + +#~ msgid "Status: decay##CC_GUI_COLOR_PATTERN_STATUS_DECAY" +#~ msgstr "Estado do canal: decaimento##CC_GUI_COLOR_PATTERN_STATUS_DECAY" + +#~ msgid "Status: sustain##CC_GUI_COLOR_PATTERN_STATUS_SUSTAIN" +#~ msgstr "Estado do canal: sustentação##CC_GUI_COLOR_PATTERN_STATUS_SUSTAIN" + +#~ msgid "Status: release##CC_GUI_COLOR_PATTERN_STATUS_RELEASE" +#~ msgstr "Estado do canal: repouso##CC_GUI_COLOR_PATTERN_STATUS_RELEASE" + +#~ msgid "Status: decrease linear##CC_GUI_COLOR_PATTERN_STATUS_DEC_LINEAR" +#~ msgstr "" +#~ "Estado do canal: redução linear##CC_GUI_COLOR_PATTERN_STATUS_DEC_LINEAR" + +#~ msgid "Status: decrease exp##CC_GUI_COLOR_PATTERN_STATUS_DEC_EXP" +#~ msgstr "" +#~ "Estado do canal: redução exponencial##CC_GUI_COLOR_PATTERN_STATUS_DEC_EXP" + +#~ msgid "Status: increase##CC_GUI_COLOR_PATTERN_STATUS_INC" +#~ msgstr "Estado do canal: aumento##CC_GUI_COLOR_PATTERN_STATUS_INC" + +#~ msgid "Status: bent##CC_GUI_COLOR_PATTERN_STATUS_BENT" +#~ msgstr "Estado do canal: pitchbend##CC_GUI_COLOR_PATTERN_STATUS_BENT" + +#~ msgid "Status: direct##CC_GUI_COLOR_PATTERN_STATUS_DIRECT" +#~ msgstr "Estado do canal: direto##CC_GUI_COLOR_PATTERN_STATUS_DIRECT" + +#~ msgid "Background##CC_GUI_COLOR_SAMPLE_BG" +#~ msgstr "Fundo##CC_GUI_COLOR_SAMPLE_BG" + +#~ msgid "Waveform##CC_GUI_COLOR_SAMPLE_FG" +#~ msgstr "Forma de onda##CC_GUI_COLOR_SAMPLE_FG" + +#~ msgid "Time background##CC_GUI_COLOR_SAMPLE_TIME_BG" +#~ msgstr "Fundo do tempo##CC_GUI_COLOR_SAMPLE_TIME_BG" + +#~ msgid "Time text##CC_GUI_COLOR_SAMPLE_TIME_FG" +#~ msgstr "Texto do tempo##CC_GUI_COLOR_SAMPLE_TIME_FG" + +#~ msgid "Loop region##CC_GUI_COLOR_SAMPLE_LOOP" +#~ msgstr "Região de repetição##CC_GUI_COLOR_SAMPLE_LOOP" + +#~ msgid "Center guide##CC_GUI_COLOR_SAMPLE_CENTER" +#~ msgstr "Guia do centro##CC_GUI_COLOR_SAMPLE_CENTER" + +#~ msgid "Grid##CC_GUI_COLOR_SAMPLE_GRID" +#~ msgstr "Grade##CC_GUI_COLOR_SAMPLE_GRID" + +#~ msgid "Selection##CC_GUI_COLOR_SAMPLE_SEL" +#~ msgstr "Seleção##CC_GUI_COLOR_SAMPLE_SEL" + +#~ msgid "Selection points##CC_GUI_COLOR_SAMPLE_SEL_POINT" +#~ msgstr "Pontos de seleção##CC_GUI_COLOR_SAMPLE_SEL_POINT" + +#~ msgid "Preview needle##CC_GUI_COLOR_SAMPLE_NEEDLE" +#~ msgstr "Agulha de previsão##CC_GUI_COLOR_SAMPLE_NEEDLE" + +#~ msgid "Playing needles##CC_GUI_COLOR_SAMPLE_NEEDLE_PLAYING" +#~ msgstr "Agulhas de reprodução##CC_GUI_COLOR_SAMPLE_NEEDLE_PLAYING" + +#~ msgid "Loop markers##CC_GUI_COLOR_SAMPLE_LOOP_POINT" +#~ msgstr "Marcadores de repetição##CC_GUI_COLOR_SAMPLE_LOOP_POINT" + +#~ msgid "Chip select: disabled##CC_GUI_COLOR_SAMPLE_CHIP_DISABLED" +#~ msgstr "Seleção de chip: desabilitada##CC_GUI_COLOR_SAMPLE_CHIP_DISABLED" + +#~ msgid "Chip select: enabled##CC_GUI_COLOR_SAMPLE_CHIP_ENABLED" +#~ msgstr "Seleção de chip: habilitada##CC_GUI_COLOR_SAMPLE_CHIP_ENABLED" + +#~ msgid "Chip select: enabled (failure)##CC_GUI_COLOR_SAMPLE_CHIP_WARNING" +#~ msgstr "" +#~ "Seleção de chip: habilitada (falha)##CC_GUI_COLOR_SAMPLE_CHIP_WARNING" + +#~ msgid "Unallocated##CC_GUI_COLOR_PAT_MANAGER_NULL" +#~ msgstr "Não alocado##CC_GUI_COLOR_PAT_MANAGER_NULL" + +#~ msgid "Unused##CC_GUI_COLOR_PAT_MANAGER_UNUSED" +#~ msgstr "Não utilizado##CC_GUI_COLOR_PAT_MANAGER_UNUSED" + +#~ msgid "Used##CC_GUI_COLOR_PAT_MANAGER_USED" +#~ msgstr "Utilizado##CC_GUI_COLOR_PAT_MANAGER_USED" + +#~ msgid "Overused##CC_GUI_COLOR_PAT_MANAGER_OVERUSED" +#~ msgstr "Muito utilizado##CC_GUI_COLOR_PAT_MANAGER_OVERUSED" + +#~ msgid "Really overused##CC_GUI_COLOR_PAT_MANAGER_EXTREMELY_OVERUSED" +#~ msgstr "Extremamente utilizado##CC_GUI_COLOR_PAT_MANAGER_EXTREMELY_OVERUSED" + +#~ msgid "Combo Breaker##CC_GUI_COLOR_PAT_MANAGER_COMBO_BREAKER" +#~ msgstr "Combo Breaker##CC_GUI_COLOR_PAT_MANAGER_COMBO_BREAKER" + +#~ msgid "Background##CC_GUI_COLOR_PIANO_BACKGROUND" +#~ msgstr "Fundo##CC_GUI_COLOR_PIANO_BACKGROUND" + +#~ msgid "Upper key##CC_GUI_COLOR_PIANO_KEY_TOP" +#~ msgstr "Tecla preta##CC_GUI_COLOR_PIANO_KEY_TOP" + +#~ msgid "Upper key (feedback)##CC_GUI_COLOR_PIANO_KEY_TOP_HIT" +#~ msgstr "Tecla preta (feedback)##CC_GUI_COLOR_PIANO_KEY_TOP_HIT" + +#~ msgid "Upper key (pressed)##CC_GUI_COLOR_PIANO_KEY_TOP_ACTIVE" +#~ msgstr "Tecla preta (pressionada)##CC_GUI_COLOR_PIANO_KEY_TOP_ACTIVE" + +#~ msgid "Lower key##CC_GUI_COLOR_PIANO_KEY_BOTTOM" +#~ msgstr "Tecla branca##CC_GUI_COLOR_PIANO_KEY_BOTTOM" + +#~ msgid "Lower key (feedback)##CC_GUI_COLOR_PIANO_KEY_BOTTOM_HIT" +#~ msgstr "Tecla branca (feedback)##CC_GUI_COLOR_PIANO_KEY_BOTTOM_HIT" + +#~ msgid "Lower key (pressed)##CC_GUI_COLOR_PIANO_KEY_BOTTOM_ACTIVE" +#~ msgstr "Tecla branca (pressionada)##CC_GUI_COLOR_PIANO_KEY_BOTTOM_ACTIVE" + +#~ msgid "Clock text##CC_GUI_COLOR_CLOCK_TEXT" +#~ msgstr "Texto do clock##CC_GUI_COLOR_CLOCK_TEXT" + +#~ msgid "Beat (off)##CC_GUI_COLOR_CLOCK_BEAT_LOW" +#~ msgstr "Batida (secundária)##CC_GUI_COLOR_CLOCK_BEAT_LOW" + +#~ msgid "Beat (on)##CC_GUI_COLOR_CLOCK_BEAT_HIGH" +#~ msgstr "Batida (primária)##CC_GUI_COLOR_CLOCK_BEAT_HIGH" + +#~ msgid "PortSet##CC_GUI_COLOR_PATCHBAY_PORTSET" +#~ msgstr "Conjunto de portas##CC_GUI_COLOR_PATCHBAY_PORTSET" + +#~ msgid "Port##CC_GUI_COLOR_PATCHBAY_PORT" +#~ msgstr "Porta##CC_GUI_COLOR_PATCHBAY_PORT" + +#~ msgid "Port (hidden/unavailable)##CC_GUI_COLOR_PATCHBAY_PORT_HIDDEN" +#~ msgstr "Porta (escondida/indisponível)##CC_GUI_COLOR_PATCHBAY_PORT_HIDDEN" + +#~ msgid "Connection (selected)##CC_GUI_COLOR_PATCHBAY_CONNECTION" +#~ msgstr "Conexão (selecionada)##CC_GUI_COLOR_PATCHBAY_CONNECTION" + +#~ msgid "Connection (other)##CC_GUI_COLOR_PATCHBAY_CONNECTION_BG" +#~ msgstr "Conexão (outra)##CC_GUI_COLOR_PATCHBAY_CONNECTION_BG" + +#~ msgid "Background##CC_GUI_COLOR_MEMORY_BG" +#~ msgstr "Fundo##CC_GUI_COLOR_MEMORY_BG" + +#~ msgid "Unknown##CC_GUI_COLOR_MEMORY_FREE" +#~ msgstr "Desconhecido##CC_GUI_COLOR_MEMORY_FREE" + +#~ msgid "Reserved##CC_GUI_COLOR_MEMORY_RESERVED" +#~ msgstr "Reservado##CC_GUI_COLOR_MEMORY_RESERVED" + +#~ msgid "Sample##CC_GUI_COLOR_MEMORY_SAMPLE" +#~ msgstr "Sample##CC_GUI_COLOR_MEMORY_SAMPLE" + +#~ msgid "Sample (alternate 1)##CC_GUI_COLOR_MEMORY_SAMPLE_ALT1" +#~ msgstr "Sample (alternativo 1)##CC_GUI_COLOR_MEMORY_SAMPLE_ALT1" + +#~ msgid "Sample (alternate 2)##CC_GUI_COLOR_MEMORY_SAMPLE_ALT2" +#~ msgstr "Sample (alternativo 2)##CC_GUI_COLOR_MEMORY_SAMPLE_ALT2" + +#~ msgid "Sample (alternate 3)##CC_GUI_COLOR_MEMORY_SAMPLE_ALT3" +#~ msgstr "Sample (alternativo 3)##CC_GUI_COLOR_MEMORY_SAMPLE_ALT3" + +#~ msgid "Wave RAM##CC_GUI_COLOR_MEMORY_WAVE_RAM" +#~ msgstr "Memória RAM de Onda##CC_GUI_COLOR_MEMORY_WAVE_RAM" + +#~ msgid "Wavetable (static)##CC_GUI_COLOR_MEMORY_WAVE_STATIC" +#~ msgstr "Wavetable (estática)##CC_GUI_COLOR_MEMORY_WAVE_STATIC" + +#~ msgid "Echo buffer##CC_GUI_COLOR_MEMORY_ECHO" +#~ msgstr "Buffer de Eco##CC_GUI_COLOR_MEMORY_ECHO" + +#~ msgid "Namco 163 load pos##CC_GUI_COLOR_MEMORY_N163_LOAD" +#~ msgstr "" +#~ "Posição de carga de onda do Namco 163##CC_GUI_COLOR_MEMORY_N163_LOAD" + +#~ msgid "Namco 163 play pos##CC_GUI_COLOR_MEMORY_N163_PLAY" +#~ msgstr "" +#~ "Posição de reprodução de onda do Namco 163##CC_GUI_COLOR_MEMORY_N163_PLAY" + +#~ msgid "Sample (bank 0)##CC_GUI_COLOR_MEMORY_BANK0" +#~ msgstr "Sample (banco 0)##CC_GUI_COLOR_MEMORY_BANK0" + +#~ msgid "Sample (bank 1)##CC_GUI_COLOR_MEMORY_BANK1" +#~ msgstr "Sample (banco 1)##CC_GUI_COLOR_MEMORY_BANK1" + +#~ msgid "Sample (bank 2)##CC_GUI_COLOR_MEMORY_BANK2" +#~ msgstr "Sample (banco 2)##CC_GUI_COLOR_MEMORY_BANK2" + +#~ msgid "Sample (bank 3)##CC_GUI_COLOR_MEMORY_BANK3" +#~ msgstr "Sample (banco 3)##CC_GUI_COLOR_MEMORY_BANK3" + +#~ msgid "Sample (bank 4)##CC_GUI_COLOR_MEMORY_BANK4" +#~ msgstr "Sample (banco 4)##CC_GUI_COLOR_MEMORY_BANK4" + +#~ msgid "Sample (bank 5)##CC_GUI_COLOR_MEMORY_BANK5" +#~ msgstr "Sample (banco 5)##CC_GUI_COLOR_MEMORY_BANK5" + +#~ msgid "Sample (bank 6)##CC_GUI_COLOR_MEMORY_BANK6" +#~ msgstr "Sample (banco 6)##CC_GUI_COLOR_MEMORY_BANK6" + +#~ msgid "Sample (bank 7)##CC_GUI_COLOR_MEMORY_BANK7" +#~ msgstr "Sample (banco 7)##CC_GUI_COLOR_MEMORY_BANK7" + +#~ msgid "Log level: Error##CC_GUI_COLOR_LOGLEVEL_ERROR" +#~ msgstr "Nível de log: Erro##CC_GUI_COLOR_LOGLEVEL_ERROR" + +#~ msgid "Log level: Warning##CC_GUI_COLOR_LOGLEVEL_WARNING" +#~ msgstr "Nível de log: Aviso##CC_GUI_COLOR_LOGLEVEL_WARNING" + +#~ msgid "Log level: Info##CC_GUI_COLOR_LOGLEVEL_INFO" +#~ msgstr "Nível de log: Informação##CC_GUI_COLOR_LOGLEVEL_INFO" + +#~ msgid "Log level: Debug##CC_GUI_COLOR_LOGLEVEL_DEBUG" +#~ msgstr "Nível de log: Depuração##CC_GUI_COLOR_LOGLEVEL_DEBUG" + +#~ msgid "Log level: Trace/Verbose##CC_GUI_COLOR_LOGLEVEL_TRACE" +#~ msgstr "Nível de log: Traço/Verboso##CC_GUI_COLOR_LOGLEVEL_TRACE" + +#~ msgid "Raw Period" +#~ msgstr "Período (val. registrador)" + +#~ msgid "Raw Envelope Period" +#~ msgstr "Período do Envelope (val. registrador)" + +#~ msgid "A" +#~ msgstr "A" + +#~ msgid "D" +#~ msgstr "D" + +#~ msgid "S" +#~ msgstr "S" + +#~ msgid "R" +#~ msgstr "R" + +#~ msgid "Raw Frequency" +#~ msgstr "Frequência (val. registrador)" + +#~ msgid "Oscillator mode:" +#~ msgstr "Modo de Oscilador:" + +#~ msgid "Freerun" +#~ msgstr "Livre/independente" + +#~ msgid "Oneshot" +#~ msgstr "Uma vez" + +#~ msgid "Sync/AM" +#~ msgstr "Sincronizado/AM" + +#~ msgid "Virtual softpan channel" +#~ msgstr "Balanço suave virtual" + +#~ msgid "" +#~ "Combines odd and next even channel into one virtual channel with 256-step " +#~ "panning.\n" +#~ "Instrument, volume and effects need to be placed on the odd channel (e.g. " +#~ "1st, 3rd, 5th etc.)" +#~ msgstr "" +#~ "Combina um canal ímpar com o próximo canal par em um canal virtual com " +#~ "balanço de 256 passos.\n" +#~ "Instrumento, volume e efeitos precisam ser colocados em um canal ímpar " +#~ "(ex: 1º, 3º, 5º etc.)" + +#~ msgid "Phase reset on key-on" +#~ msgstr "Realizar redefinição de fase em nova nota" + +#~ msgid "Osc. mode" +#~ msgstr "Modo de Oscilador" + +#~ msgid "Wave/sample pos." +#~ msgstr "Pos. onda/sample" + +#~ msgid "Osc. output" +#~ msgstr "Saída osc." + +#~ msgid "op%d" +#~ msgstr "op%d" + +#~ msgid "OP%d" +#~ msgstr "OP%d" + +#~ msgid "Detune in semitones" +#~ msgstr "Desafinação em semitons" + +#~ msgid "" +#~ "Detune in fractions of semitone.\n" +#~ "128 = +1 semitone, -128 = -1 semitone." +#~ msgstr "" +#~ "Desafinação em frações de semitom.\n" +#~ "128 = +1 semitom, -128 = -1 semitom." + +#~ msgid "If operator outputs sound, enable left channel output." +#~ msgstr "Se o operador emite som, habilita a sua saída pelo canal esquerdo." + +#~ msgid "If operator outputs sound, enable right channel output." +#~ msgstr "Se o operador emite som, habilita a sua saída pelo canal direito." + +#~ msgid "Tabs" +#~ msgstr "Abas" + +#~ msgid "Single (combo box)" +#~ msgstr "Única (caixa de combinação)" + +#~ msgid "Frequency Divider" +#~ msgstr "Divisor de Frequência" + +#~ msgid "AR" +#~ msgstr "AR" + +#~ msgid "D1R" +#~ msgstr "D1R" + +#~ msgid "DL" +#~ msgstr "DL" + +#~ msgid "D2R" +#~ msgstr "D2R" + +#~ msgid "RR" +#~ msgstr "RR" + +#~ msgid "RC" +#~ msgstr "RC" + +#~ msgid "Position##WAVEPOS" +#~ msgstr "Posição##WAVEPOS" + +#~ msgid "Length##WAVELEN" +#~ msgstr "Comprimento##WAVELEN" + +#~ msgid "4-op" +#~ msgstr "4-op" + +#~ msgid "16-bit raw period macro" +#~ msgstr "Macro de período 16-bit (val. registrador)" + +#~ msgid "L##L%d" +#~ msgstr "R##L%d" + +#~ msgid "VOL" +#~ msgstr "VOL" + +#~ msgid "Envelope Reset/Key Control" +#~ msgstr "Reinício de Envelope/Controle de Chaveamento" + +#~ msgid "" +#~ "Ringmod from OP3 + double pitch ModInput\n" +#~ "WARNING - has emulation issues, subject to change" +#~ msgstr "" +#~ "Modulação anel do OP3 + EntraMod com tom dobrado\n" +#~ "AVISO - há problemas na emulação desse modo, está sujeito a mudanças" + +#~ msgid "op1" +#~ msgstr "op1" + +#~ msgid "op2" +#~ msgstr "op2" + +#~ msgid "op3" +#~ msgstr "op3" + +#~ msgid "op4" +#~ msgstr "op4" + +#~ msgid "15kHz" +#~ msgstr "15kHz" + +#~ msgid "int" +#~ msgstr "int" + +#~ msgid "8580 SID" +#~ msgstr "SID 8580" + +#~ msgid "bitwise AND" +#~ msgstr "AND bit a bit" + +#~ msgid "bitwise OR" +#~ msgstr "OR bit a bit" + +#~ msgid "bitwise XOR" +#~ msgstr "XOR bit a bit" + +#~ msgid "Bug" +#~ msgstr "Bug" + +#~ msgid "Local" +#~ msgstr "Local" + +#~ msgid "Hex##MTHex" +#~ msgstr "Hex##MTHex" + +#~ msgid "Dec##MTHex" +#~ msgstr "Dec##MTHex" + +#~ msgid "Result" +#~ msgstr "Resultado" + +#~ msgid "Wave 1 " +#~ msgstr "Onda 1 " + +#~ msgid "Local Waves" +#~ msgstr "Ondas Locais" + +#~ msgid "not a command stream" +#~ msgstr "não é um fluxo de comandos" + +#~ msgid "" +#~ "E6xy: Delayed note transpose (x: 0-7 = up, 8-F = down (after (x % 7) " +#~ "ticks); y: semitones)" +#~ msgstr "" +#~ "E6xy: Transposição atrasada de nota (x: 0-7 = para cima, 8-F = para baixo " +#~ "(após (x % 7) ticks); y: semitons)" + +#~ msgid "E8xy: Delayed note transpose up (x: ticks; y: semitones)" +#~ msgstr "" +#~ "E8xy: Transposição de nota atrasada para cima (x: ticks; y: semitons)" + +#~ msgid "E9xy: Delayed note transpose down (x: ticks; y: semitones)" +#~ msgstr "" +#~ "E9xy: Transposição de nota atrasada para baixo (x: ticks; y: semitons)" + +#~ msgid "this module was created with a more recent version of Furnace!" +#~ msgstr "este módulo foi criado com uma versão mais recente do Furnace!" + +#~ msgid "couldn't seek to info header!" +#~ msgstr "não pôde avançar até o header \"info\"!" + +#~ msgid "invalid info header!" +#~ msgstr "header \"info\" inválido!" + +#~ msgid "pattern length is negative!" +#~ msgstr "o comprimento da sequência é negativo!" + +#~ msgid "pattern length is too large!" +#~ msgstr "o comprimento da sequência é muito longo!" + +#~ msgid "song length is negative!" +#~ msgstr "o comprimento da música é negativo!" + +#~ msgid "song is too long!" +#~ msgstr "a música é muito longa!" + +#~ msgid "invalid instrument count!" +#~ msgstr "quantidade de instrumentos inválida!" + +#~ msgid "invalid wavetable count!" +#~ msgstr "quantidade de wavetables inválida!" + +#~ msgid "invalid sample count!" +#~ msgstr "quantidade de samples inválida!" + +#~ msgid "invalid pattern count!" +#~ msgstr "quantidade de sequências inválida!" + +#~ msgid "unrecognized system ID %.2x!" +#~ msgstr "identificador de sistema %.2x não reconhecido!" + +#~ msgid "zero chips!" +#~ msgstr "zero chips!" + +#~ msgid "channel %d has too many effect columns! (%d)" +#~ msgstr "o canal %d contém muitas colunas de efeito! (%d)" + +#~ msgid "couldn't seek to chip %d flags!" +#~ msgstr "não pôde avançar até as opções do chip %d!" + +#~ msgid "invalid flag header!" +#~ msgstr "cabeçalho \"flag\" inválido!" + +#~ msgid "couldn't read instrument directory" +#~ msgstr "não pôde ler o diretório de instrumentos" + +#~ msgid "invalid instrument directory data!" +#~ msgstr "dados do diretório de instrumentos inválidos!" + +#~ msgid "couldn't read wavetable directory" +#~ msgstr "não pôde ler o diretório de wavetables" + +#~ msgid "invalid wavetable directory data!" +#~ msgstr "dados do diretório de wavetables inválidos!" + +#~ msgid "couldn't read sample directory" +#~ msgstr "não pôde ler o diretório de samples" + +#~ msgid "invalid sample directory data!" +#~ msgstr "dados do diretório de samples inválidos!" + +#~ msgid "couldn't seek to subsong %d!" +#~ msgstr "não pôde avançar até a subfaixa %d!" + +#~ msgid "invalid subsong header!" +#~ msgstr "cabeçalho da subfaixa inválido!" + +#~ msgid "couldn't seek to instrument %d!" +#~ msgstr "não pôde avançar até o instrumento %d!" + +#~ msgid "invalid instrument header/data!" +#~ msgstr "cabeçalho/dados do instrumento inválidos!" + +#~ msgid "couldn't seek to wavetable %d!" +#~ msgstr "não pôde avançar até a wavetable %d!" + +#~ msgid "couldn't seek to sample %d!" +#~ msgstr "não pôde avançar até a sample %d!" + +#~ msgid "invalid sample header/data!" +#~ msgstr "cabeçalho/dados da sample inválidos!" + +#~ msgid "couldn't seek to pattern in %x!" +#~ msgstr "não pôde avançar até a sequência em %x!" + +#~ msgid "invalid pattern header!" +#~ msgstr "cabeçalho da sequência inválido!" + +#~ msgid "pattern channel out of range!" +#~ msgstr "canal da sequência fora do intervalo!" + +#~ msgid "pattern index out of range!" +#~ msgstr "índice da sequência fora do intervalo!" + +#~ msgid "pattern subsong out of range!" +#~ msgstr "subfaixa da sequência fora do intervalo!" + +#~ msgid "incomplete file" +#~ msgstr "arquivo incompleto" + +#~ msgid "file is too small" +#~ msgstr "o arquivo é muito pequeno" + +#~ msgid "not a .dmf/.fur/.fub song" +#~ msgstr "esta não é uma música .dmf/.fur/.fub" + +#~ msgid "unknown decompression error" +#~ msgstr "erro desconhecido de descompressõa" + +#~ msgid "decompression error: %s" +#~ msgstr "erro de descompressão: %s" + +#~ msgid "unknown decompression finish error" +#~ msgstr "erro desconhecido ao final da descompressão" + +#~ msgid "decompression finish error: %s" +#~ msgstr "erro ao final da descompressão: %s" + +#~ msgid "not a compatible song/instrument" +#~ msgstr "esta não é uma música/instrumento compatível" + +#~ msgid "maximum number of instruments is 256" +#~ msgstr "o número máximo de instrumentos é 256" + +#~ msgid "maximum number of wavetables is 256" +#~ msgstr "o número máximo de wavetables é 256" + +#~ msgid "maximum number of samples is 256" +#~ msgstr "o número máximo de samples é 256" + +#~ msgid "did not read entire instrument file!" +#~ msgstr "o arquivo de instrumento não foi lido por completo!" + +#~ msgid "this instrument is made with a more recent version of Furnace!" +#~ msgstr "este instrumento foi feito com uma versão mais recente do Furnace!" + +#~ msgid "unknown instrument format" +#~ msgstr "formato de instrumento desconhecido" + +#~ msgid "there is more data at the end of the file! what happened here!" +#~ msgstr "há mais dados ao final do arquivo! que diacho é esse!?" + +#~ msgid "exactly %d bytes, if you are curious" +#~ msgstr "exatamente %d bytes, caso você tenha a curiosidade" + +#~ msgid "could not open file! (%s)" +#~ msgstr "não pôde abrir o arquivo! (%s)" + +#~ msgid "could not get file length! (%s)" +#~ msgstr "não pôde obter o tamanho do arquivo! (%s)" + +#~ msgid "file is empty!" +#~ msgstr "o arquivo está vazio!" + +#~ msgid "file is invalid!" +#~ msgstr "o arquivo é inválido!" + +#~ msgid "could not seek to beginning of file! (%s)" +#~ msgstr "não pôde localizar o início do arquivo! (%s)" + +#~ msgid "wait... is that right? no I don't think so..." +#~ msgstr "peraí... isso está certo? não, eu não acho que esteja..." + +#~ msgid "BRR sample is empty!" +#~ msgstr "a sample BRR está vazia!" + +#~ msgid "possibly corrupt BRR sample!" +#~ msgstr "a sample BRR pode estar corrompida!" + +#~ msgid "could not read file! (%s)" +#~ msgstr "não pôde ler o arquivo! (%s)" + +#~ msgid "Furnace was not compiled with libsndfile!" +#~ msgstr "Furnace não foi compilado com a biblioteca libsndfile!" + +#~ msgid "could not open file! (%s %s)" +#~ msgstr "não pôde abrir o arquivo! (%s %s)" + +#~ msgid "" +#~ "could not open file! (%s)\n" +#~ "if this is raw sample data, you may import it by right-clicking the Load " +#~ "Sample icon and selecting \"import raw\"." +#~ msgstr "" +#~ "não pôde abrir o arquivo! (%s)\n" +#~ "se isso for uma sample em formato \"raw\", você pode importá-la clicando " +#~ "com o botão direito no ícone Abrir e selecionando \"importar em formato " +#~ "raw\"." + +#~ msgid "this sample is too big! max sample size is 16777215." +#~ msgstr "" +#~ "esta sample é muito grande! o tamanho máximo de uma sample é 16777215." + +#~ msgid "GEMS BNK currently not supported." +#~ msgstr "O formato BNK do GEMS atualmente não é suportado." + +#~ msgid "this version is not supported by Furnace yet" +#~ msgstr "esta versão ainda não é suportada pelo Furnace" + +#~ msgid "system not supported. running old version?" +#~ msgstr "sistema não suportado. usando uma versão antiga?" + +#~ msgid "" +#~ "Yamaha YMU759 emulation is incomplete! please migrate your song to the " +#~ "OPL3 system." +#~ msgstr "" +#~ "a emulação do Yamaha YMU759 é incompleta! por favor migre sua música para " +#~ "o sistema OPL3." + +#~ msgid "order at %d, %d out of range! (%d)" +#~ msgstr "ordem em %d, %d fora do intervalo! (%d)" + +#~ msgid "file is corrupt or unreadable at operators" +#~ msgstr "o arquivo está corrompido ou ilegível nos operadores" + +#~ msgid "file is corrupt or unreadable at wavetables" +#~ msgstr "o arquivo está corrompido ou ilegível nas wavetables" + +#~ msgid "file is corrupt or unreadable at effect columns" +#~ msgstr "o arquivo está corrompido ou ilegível nas colunas de efeito" + +#~ msgid "file is corrupt or unreadable at samples" +#~ msgstr "o arquivo está corrompido ou ilegível nas samples" + +#~ msgid "invalid version to save in! this is a bug!" +#~ msgstr "versão inválida para salvar! isso é um bug!" + +#~ msgid "multiple systems not possible on .dmf" +#~ msgstr "não é possível ter múltiplos sistemas em um arquivo .dmf" + +#~ msgid "YMU759 song saving is not supported" +#~ msgstr "salvar músicas do YMU759 não é suportado" + +#~ msgid "Master System FM expansion not supported in 1.0/legacy .dmf!" +#~ msgstr "" +#~ "a expansão FM do Master System não é suportada na versão 1.0/legada do " +#~ "formato .dmf!" + +#~ msgid "NES + VRC7 not supported in 1.0/legacy .dmf!" +#~ msgstr "NES + VRC7 não é suportado na versão 1.0/legada do formato .dmf!" + +#~ msgid "FDS not supported in 1.0/legacy .dmf!" +#~ msgstr "FDS não é suportado na versão 1.0/legada do formato .dmf!" + +#~ msgid "this system is not possible on .dmf" +#~ msgstr "esse sistema não é possível no formato .dmf" + +#~ msgid "maximum .dmf song length is 127" +#~ msgstr "o comprimento máximo da música no formato .dmf é 127" + +#~ msgid "maximum number of instruments in .dmf is 128" +#~ msgstr "o número máximo de instrumentos no formato .dmf é 128" + +#~ msgid "maximum number of wavetables in .dmf is 64" +#~ msgstr "o número máximo de wavetables no formato .dmf é 64" + +#~ msgid "order %d, %d is out of range (0-127)" +#~ msgstr "a ordem %d, %d está fora do intervalo (0-127)" + +#~ msgid "only the currently selected subsong will be saved" +#~ msgstr "somente a subfaixa atualmente selecionada será salva" + +#~ msgid "grooves will not be saved" +#~ msgstr "grooves não serão salvos" + +#~ msgid "only the first two speeds will be effective" +#~ msgstr "somente as primeiras duas velocidades serão efetivas" + +#~ msgid ".dmf format does not support virtual tempo" +#~ msgstr "o formato .dmf não suporta tempo virtual" + +#~ msgid ".dmf format does not support tuning" +#~ msgstr "o formato .dmf não suporta afinação" + +#~ msgid "absolute duty/cutoff macro not available in .dmf!" +#~ msgstr "" +#~ "a macro de ponto de corte/ciclo de trabalho absoluto não está disponível " +#~ "no formato .dmf" + +#~ msgid "duty precision will be lost" +#~ msgstr "haverá perda de precisão de ciclo de trabalho" + +#~ msgid ".dmf format does not support arbitrary-pitch sample mode" +#~ msgstr "o formato .dmf não suporta modo de sample de tom arbitrário" + +#~ msgid "no FM macros in .dmf format" +#~ msgstr "não há macros FM no formato .dmf" + +#~ msgid "" +#~ ".dmf only supports volume or cutoff macro in C64, but not both. volume " +#~ "macro will be lost." +#~ msgstr "" +#~ ".dmf só suporta macros de volume ou ponto de corte no C64, não ambas ao " +#~ "mesmo tempo. a macro de volume será perdida." + +#~ msgid "note/macro release will be converted to note off!" +#~ msgstr "repouso de nota/macro serão convertidas pra note-off!" + +#~ msgid "samples' rates will be rounded to nearest compatible value" +#~ msgstr "" +#~ "as taxas das samples serão arredondadas para os valores compatíveis mais " +#~ "próximos" + +#~ msgid "unknown instrument type %d!" +#~ msgstr "tipo de instrumento %d desconhecido!" + +#~ msgid "invalid header!" +#~ msgstr "cabeçalho inválido!" + +#~ msgid "incompatible version" +#~ msgstr "versão incompatível" + +#~ msgid "channel counts do not match" +#~ msgstr "a quantidade de canais não corresponde ao esperado" + +#~ msgid "too many instruments/out of range" +#~ msgstr "há muitos instrumentos/fora do intervalo" + +#~ msgid "invalid instrument type" +#~ msgstr "tipo de instrumento inválido" + +#~ msgid "too many sequences" +#~ msgstr "há muitas macros" + +#~ msgid "sequences block version is too old" +#~ msgstr "a versão do bloco de macros é muito antiga" + +#~ msgid "unknown block " +#~ msgstr "bloco desconhecido: " + +#~ msgid "incomplete block " +#~ msgstr "bloco incompleto: " + +#~ msgid " [VRC6 copy]" +#~ msgstr " [cópia do VRC6]" + +#~ msgid " [VRC6 saw copy]" +#~ msgstr " [cópia do VRC6 serra]" + +#~ msgid " [NES copy]" +#~ msgstr " [cópia do NES]" + +#~ msgid "GYBv3 file appears to have invalid data offsets." +#~ msgstr "o arquivo GYBv3 parece ter ponteiros de dados inválidos." + +#~ msgid "Invalid value found in patch file. %s" +#~ msgstr "Dados inválidos encontrados no arquivo de timbre. %s" + +#~ msgid "S3I PCM samples currently not supported." +#~ msgstr "samples PCM S3I atualmente não são suportadas." + +#~ msgid "VGM version is too low" +#~ msgstr "a versão do VGM é muito antiga" + +#~ msgid "Chip Memory" +#~ msgstr "Memória do Chip" + +#~ msgid "Sample ROM" +#~ msgstr "ROM de Sample" + +#~ msgid "Sample Memory" +#~ msgstr "Memória de Sample" + +#~ msgid "SPC/DSP Memory" +#~ msgstr "Memória do S-SMP/DSP" + +#~ msgid "Sample RAM" +#~ msgstr "RAM de Sample" + +#~ msgid "End of Sample" +#~ msgstr "Final da Sample" + +#~ msgid "Wavetable RAM" +#~ msgstr "RAM de Wavetable" + +#~ msgid "Reserved wavetable RAM" +#~ msgstr "RAM de wavetable reservada" + +#~ msgid "Phrase Book" +#~ msgstr "Livro de Frases" + +#~ msgid "Channel %d (load)" +#~ msgstr "Canal %d (carregar)" + +#~ msgid "Channel %d (play)" +#~ msgstr "Canal %d (reproduzir)" + +#~ msgid "Channel %d" +#~ msgstr "Canal %d" + +#~ msgid "Buffer %d Left" +#~ msgstr "Buffer %d Esquerdo" + +#~ msgid "Buffer %d Right" +#~ msgstr "Buffer %d Direito" + +#~ msgid "Registers" +#~ msgstr "Registradores" + +#~ msgid "State" +#~ msgstr "Estado" + +#~ msgid "Sample Directory" +#~ msgstr "Diretório de Sample" + +#~ msgid "Echo Buffer" +#~ msgstr "Buffer de Eco" + +#~ msgid "Mix/Echo Buffer" +#~ msgstr "Buffer de Mix/Eco" + +#~ msgid "Main Memory" +#~ msgstr "Memória Principal" + +#~ msgid "help! what's going on!" +#~ msgstr "socorro! o que está acontecendo?!" + +#~ msgid "Sunsoft 5B standalone" +#~ msgstr "Sunsoft 5B independente" + +#~ msgid "Sunsoft 5B standalone (PAL)" +#~ msgstr "Sunsoft 5B independente (PAL)" + +#~ msgid "Overclocked Sunsoft 5B" +#~ msgstr "Sunsoft 5B (com overclock)" + +#~ msgid "NTSC-J Sega Master System + drums" +#~ msgstr "Sega Master System NTSC-J + bateria" + +#~ msgid "MSX-MUSIC + drums" +#~ msgstr "MSX-MUSIC + bateria" + +#~ msgid "Commodore 64 with dual 6581" +#~ msgstr "Commodore 64 com dois 6581" + +#~ msgid "Commodore 64 with dual 8580" +#~ msgstr "Commodore 64 com dois 8580" + +#~ msgid "YM2151 + SegaPCM Arcade (compatibility)" +#~ msgstr "Arcade com YM2151 + SegaPCM (compatibilidade)" + +#~ msgid "YM2151 + SegaPCM Arcade" +#~ msgstr "Arcade com YM2151 + SegaPCM" + +#~ msgid "Game Boy with AY expansion" +#~ msgstr "Game Boy with expansão AY" + +#~ msgid "multi-system" +#~ msgstr "multi-sistema" + +#~ msgid "15xx: Set raw period" +#~ msgstr "15xx: Definir período (val. registrador)" + +#~ msgid "16xx: Set raw period higher nybble (0-F)" +#~ msgstr "16xx: Definir nibble superior do período (val. registrador) (0-F)" + +#~ msgid "16xx: Set raw period higher byte" +#~ msgstr "16xx: Definir byte superior do período (val. registrador)" + +#~ msgid "22xx: Pulse width slide up" +#~ msgstr "22xx: Slide de largura de pulso para cima" + +#~ msgid "23xx: Pulse width slide down" +#~ msgstr "23xx: Slide de largura de pulso para baixo" + +#~ msgid "24xx: Cutoff slide up" +#~ msgstr "24xx: Slide de ponto de corte para cima" + +#~ msgid "25xx: Cutoff slide down" +#~ msgstr "25xx: Slide de ponto de corte para baixo" + +#~ msgid "13xx: Set waveform (local)" +#~ msgstr "13xx: Definir forma de onda (local)" + +#~ msgid "11xx: Set raw period" +#~ msgstr "11xx: Definir período (val. registrador) (0-1F)" + +#~ msgid "11xx: Set waveform (local)" +#~ msgstr "11xx: Definir forma de onda (local)" + +#~ msgid "17xx: Pulse width slide up" +#~ msgstr "17xx: Slide de largura de pulso para cima" + +#~ msgid "18xx: Pulse width slide down" +#~ msgstr "18xx: Slide de largura de pulso para baixo" + +#~ msgid "19xx: Cutoff slide up" +#~ msgstr "19xx: Slide de ponto de corte para cima" + +#~ msgid "1Axx: Cutoff slide down" +#~ msgstr "1Axx: Slide de ponto de corte para baixo" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "15xx: Set waveform (local)" +#~ msgstr "15xx: Definir forma de onda (local)" + +#~ msgid "18xx: Set waveform (local)" +#~ msgstr "18xx: Definir forma de onda (local)" + +#~ msgid "14xx: Set waveform (local)" +#~ msgstr "14xx: Definir forma de onda (local)" + +#~ msgid "17xx: Set waveform (local)" +#~ msgstr "17xx: Definir forma de onda (local)" + +#~ msgid "16xx: Set waveform (local)" +#~ msgstr "16xx: Definir forma de onda (local)" + +#~ msgid "17xx: Select waveform (local)" +#~ msgstr "17xx: Selecionar forma de onda (local)" + +#~ msgid "" +#~ "cost-reduced version of the OPM with a different register layout and no " +#~ "stereo...\n" +#~ "...but it has a built-in AY-3-8910! (actually an YM2149)\n" +#~ "this one is in Extended Channel mode, which turns the third FM channel " +#~ "into four operators with independent notes/frequencies.\n" +#~ "this one includes CSM mode control for special effects on Channel 3." +#~ msgstr "" +#~ "versão de custo reduzido do OPM com um leiaute de registradores " +#~ "diferentes e sem estéreo...\n" +#~ "...mas ele tem um AY-3-8910 embutido! (na verdade é um YM2149)\n" +#~ "esse está em modo de Canal Estendido, que transforma o terceiro canal FM " +#~ "em quatro operadores com notas/frequências independentes.\n" +#~ "esse inclui controle do modo CSM para efeitos especiais no Canal 3." + +#~ msgid "" +#~ "OPN but twice the FM channels, stereo makes a come-back and has rhythm " +#~ "and ADPCM channels.\n" +#~ "this one is in Extended Channel mode, which turns the third FM channel " +#~ "into four operators with independent notes/frequencies." +#~ msgstr "" +#~ "OPN mas com o dobro dos canais FM, o estéreo está de volta e possui " +#~ "canais de bateria e um canal ADPCM.\n" +#~ "esse está em modo de Canal Estendido, que transforma o terceiro canal FM " +#~ "em quatro operadores com notas/frequências independentes." + +#~ msgid "Yamaha YM2608 (OPNA) Extended Channel 3 and CSM" +#~ msgstr "Yamaha YM2608 (OPNA) com Canal 3 Estendido e CSM" + +#~ msgid "" +#~ "OPN but twice the FM channels, stereo makes a come-back and has rhythm " +#~ "and ADPCM channels.\n" +#~ "this one is in Extended Channel mode, which turns the third FM channel " +#~ "into four operators with independent notes/frequencies.\n" +#~ "this one includes CSM mode control for special effects on Channel 3." +#~ msgstr "" +#~ "OPN mas com o dobro dos canais FM, o estéreo está de volta e possui " +#~ "canais de bateria e um canal ADPCM.\n" +#~ "esse está em modo de Canal Estendido, que transforma o terceiro canal FM " +#~ "em quatro operadores com notas/frequências independentes.\n" +#~ "esse inclui controle do modo CSM para efeitos especiais no Canal 3." + +#~ msgid "13xx: Set raw period" +#~ msgstr "13xx: Definir período (val. registrador)" + +#~ msgid "14xx: Set raw period (higher byte; only for 16-bit mode)" +#~ msgstr "" +#~ "14xx: Definir byte superior do período (val. registrador) (somente para o " +#~ "modo 16-bit)" + +#~ msgid "" +#~ "like OPLL, but even more cost reductions applied. three less FM channels, " +#~ "and no drums mode..." +#~ msgstr "" +#~ "como o OPLL, mas com ainda mais reduções de custo aplicadas: três canais " +#~ "FM a menos, e sem o modo bateria..." + +#~ msgid "" +#~ "this chip was used in SNK's Neo Geo arcade board and video game console.\n" +#~ "it's like OPNA but the rhythm channels are ADPCM channels and two FM " +#~ "channels went missing.\n" +#~ "this one is in Extended Channel mode, which turns the second FM channel " +#~ "into four operators with independent notes/frequencies.\n" +#~ "this one includes CSM mode control for special effects on Channel 2." +#~ msgstr "" +#~ "esse chip foi usado no Neo Geo, placa de fliperama e console de videogame " +#~ "da SNK.\n" +#~ "é como o OPNA mas os canais de bateria são canais de ADPCM e dois canais " +#~ "de FM foram removidos.\n" +#~ "esse está em modo de Canal Estendido, que transforma o segundo canal FM " +#~ "em quatro operadores com notas/frequências independentes.\n" +#~ "esse inclui controle do modo CSM para efeitos especiais no Canal 2." + +#~ msgid "the OPLL chip but with drums mode turned on." +#~ msgstr "o chip OPLL mas com modo bateria habilitado." + +#~ msgid "" +#~ "so Taito asked Yamaha if they could get the two missing FM channels back, " +#~ "and Yamaha gladly provided them with this chip.\n" +#~ "this one is in Extended Channel mode, which turns the third FM channel " +#~ "into four operators with independent notes/frequencies.\n" +#~ "this one includes CSM mode control for special effects on Channel 3." +#~ msgstr "" +#~ "então a Taito pediu à Yamaha se eles poderiam ter os 2 canais FM " +#~ "faltantes de volta, e a Yamaha lhes providenciou de bom grado com este " +#~ "chip.\n" +#~ "esse está em modo de Canal Estendido, que transforma o terceiro canal FM " +#~ "em quatro operadores com notas/frequências independentes.\n" +#~ "esse inclui controle do modo CSM para efeitos especiais no Canal 3." + +#~ msgid "11xx: Select waveform (local)" +#~ msgstr "11xx: Selecionar forma de onda (local)" + +#~ msgid "" +#~ "this chip is mostly known for being in the Sega Genesis (but it also was " +#~ "on the FM Towns computer).\n" +#~ "this system uses software mixing to provide two sample channels.\n" +#~ "this one is in Extended Channel mode, which turns the third FM channel " +#~ "into four operators with independent notes/frequencies.\n" +#~ "this one includes CSM mode control for special effects on Channel 3." +#~ msgstr "" +#~ "esse chip é mais conhecido por ter sido utilizado no Sega Mega Drive (mas " +#~ "ele também foi usado no computador FM Towns).\n" +#~ "esse sistema utiliza mistura de samples em software para prover dois " +#~ "canais de sample.\n" +#~ "esse está em modo de Canal Estendido, que transforma o terceiro canal FM " +#~ "em quatro operadores com notas/frequências independentes.\n" +#~ "esse inclui controle do modo CSM para efeitos especiais no Canal 3." + +#~ msgid "11xx: Raw frequency (0-3E)" +#~ msgstr "11xx: Definir frequência (valor do registrador, 0-3E)" + +#~ msgid "" +#~ "first Ensoniq chip used in their synths and Apple IIGS computer. Has 32 " +#~ "hard-panned 8-bit wavetable/sample channels, can do oscillator sync (like " +#~ "SID) and amplitude modulation. Can have up to 128 KiB (2 banks of 64 KiB) " +#~ "of memory for wavetables/samples.\n" +#~ "As Robert Yannes (SID chip creator) said, it's more or less what SID chip " +#~ "could be if he was given enough time for its development." +#~ msgstr "" +#~ "o primeiro chip da Ensoniq utilizado em seus sintetizadores e no " +#~ "computador Apple IIGS. Contém 32 canais de sample/wavetable 8-bit com " +#~ "balanço binário, é capaz de sincronizar osciladores (como o SID) e " +#~ "realizar modulação de amplitude. Pode endereçar até 128 KiB (2 bancos de " +#~ "64 KiB) de memória para wavetables/samples.\n" +#~ "Como Robert Yannes (criador do chip SID) disse, é mais ou menos o que o " +#~ "chip SID poderia ter sido se ele tivesse tido tempo suficiente para o seu " +#~ "desenvolvimento." + +#~ msgid "11xx: Set number of enabled oscillators (2-1F)" +#~ msgstr "11xx: Definir número de osciladores habilitados (2-1F)" + +#~ msgid "12xx: Set oscillator output (0-7, 0=left, 1=right)" +#~ msgstr "12xx: Definir saída do oscilador (0-7, 0=esquerda, 1=direita)" + +#~ msgid "13xx: Set wave/sample length (0-7, 0=256, 1=512, 2=1024, etc.)" +#~ msgstr "" +#~ "13xx: Definir tamanho da onda/sample (0-7, 0=256, 1=512, 2=1024, etc.)" + +#~ msgid "14xx: Set wave/sample position in memory (xx*256 offset)" +#~ msgstr "" +#~ "14xx: Definir posição na memória da onda/sample (deslocamento em xx*256)" + +#~ msgid "15xx: Set oscillator mode (0-3)" +#~ msgstr "15xx: Definir modo do oscilador (0-3)" + +#~ msgid "" +#~ "this chip was featured in the Enterprise 128 computer. it is similar to " +#~ "POKEY, but with stereo output, more features and frequency precision and " +#~ "the ability to turn left or right (or both) channel into a 6-bit DAC for " +#~ "sample playback." +#~ msgstr "" +#~ "esse chip foi utilizado no computador Enterprise 128. ele é similar ao " +#~ "POKEY, mas com saída estéreo, mais recursos, mais precisão de frequência " +#~ "e com a possibilidade de transformar o canal esquerdo, direito ou ambos " +#~ "em um DAC 6-bit para reprodução de samples." + +#~ msgid "" +#~ "a fictional sound chip by LTVA. like SID, but with many of its problems " +#~ "fixed. also features extended functionality like more wave mixing modes, " +#~ "tonal noise, filter and volume per channel." +#~ msgstr "" +#~ "um chip de som fictício por LTVA. como o SID, mas com muitos de seus " +#~ "problemas consertados. também possui recursos estendidos como mais modos " +#~ "de mistura de formas de onda, ruído tonal, filtro e volume por canal." + +#~ msgid "" +#~ "a fictional sound chip by Euly. similar to Ricoh 2A03, but all the duty " +#~ "cycles are different, noise has 32 pitches instead of 16 and you have " +#~ "four hard-coded waveforms on triangle channel." +#~ msgstr "" +#~ "um chip de som fictício por Euly. similar ao Ricoh 2A03, mas todos os " +#~ "ciclos de trabalho são diferentes, o ruído tem 32 tons ao invés de 16 e " +#~ "você possui 4 formas de onda predefinidas no lugar do canal de triângulo." + +#~ msgid "" +#~ "12xx: Set duty cycle/noise mode (pulse: 0 to 3; noise: 0 or 1, wave: 0 to " +#~ "3)" +#~ msgstr "" +#~ "12xx: Definir ciclo de trabalho/modo de ruído/onda (pulso: 0 a 3; ruído: " +#~ "0 ou 1, onda: 0 a 3)" + +#~ msgid "19xx: Set wave linear counter (0 to 7F; 80 and higher halt)" +#~ msgstr "" +#~ "19xx: Definir contador linear do canal de onda (0 a 7F; valores 80 e " +#~ "superiores interrompem)" + +#~ msgid "" +#~ "additional PCM FIFO channels in Game Boy Advance driven by software " +#~ "mixing to provide up to sixteen sample channels." +#~ msgstr "" +#~ "canais PCM FIFO adicionais no Game Boy Advance controlados por mixing em " +#~ "software para prover até 16 canais de sample." + +#~ msgid "CH1" +#~ msgstr "CN1" + +#~ msgid "CH2" +#~ msgstr "CN2" + +#~ msgid "CH3" +#~ msgstr "CN3" + +#~ msgid "CH4" +#~ msgstr "CN4" + +#~ msgid "CH5" +#~ msgstr "CN5" + +#~ msgid "CH6" +#~ msgstr "CN6" + +#~ msgid "CH7" +#~ msgstr "CN7" + +#~ msgid "CH8" +#~ msgstr "CN8" + +#~ msgid "CH9" +#~ msgstr "CN9" + +#~ msgid "NO" +#~ msgstr "RU" + +#~ msgid "N1" +#~ msgstr "R1" + +#~ msgid "N2" +#~ msgstr "R2" + +#~ msgid "N3" +#~ msgstr "R3" + +#~ msgid "SL" +#~ msgstr "RA" + +#~ msgid "S1" +#~ msgstr "Q1" + +#~ msgid "S2" +#~ msgstr "Q2" + +#~ msgid "S3" +#~ msgstr "Q3" + +#~ msgid "S4" +#~ msgstr "Q4" + +#~ msgid "S5" +#~ msgstr "Q5" + +#~ msgid "S6" +#~ msgstr "Q6" + +#~ msgid "P1" +#~ msgstr "S1" + +#~ msgid "P2" +#~ msgstr "S2" + +#~ msgid "P3" +#~ msgstr "S3" + +#~ msgid "P4" +#~ msgstr "S4" + +#~ msgid "P5" +#~ msgstr "S5" + +#~ msgid "P6" +#~ msgstr "S6" + +#~ msgid "P7" +#~ msgstr "S7" + +#~ msgid "P8" +#~ msgstr "S8" + +#~ msgid "P9" +#~ msgstr "S9" + +#~ msgid "P10" +#~ msgstr "S10" + +#~ msgid "P11" +#~ msgstr "S11" + +#~ msgid "P12" +#~ msgstr "S12" + +#~ msgid "P13" +#~ msgstr "S13" + +#~ msgid "P14" +#~ msgstr "S14" + +#~ msgid "P15" +#~ msgstr "S15" + +#~ msgid "P16" +#~ msgstr "S16" + +#~ msgid "P17" +#~ msgstr "S17" + +#~ msgid "P18" +#~ msgstr "S18" + +#~ msgid "P19" +#~ msgstr "S19" + +#~ msgid "P20" +#~ msgstr "S20" + +#~ msgid "P21" +#~ msgstr "S21" + +#~ msgid "P22" +#~ msgstr "S22" + +#~ msgid "P23" +#~ msgstr "S23" + +#~ msgid "P24" +#~ msgstr "S24" + +#~ msgid "BD" +#~ msgstr "BU" + +#~ msgid "SD" +#~ msgstr "CX" + +#~ msgid "TP" +#~ msgstr "PR" + +#~ msgid "HH" +#~ msgstr "CH" + +#~ msgid "TM" +#~ msgstr "SU" + +#~ msgid "RM" +#~ msgstr "AR" + +#~ msgid "P" +#~ msgstr "S" + +#~ msgid "VS" +#~ msgstr "VS" + +#~ msgid "TR" +#~ msgstr "TR" + +#~ msgid "DMC" +#~ msgstr "DMC" + +#~ msgid "WA" +#~ msgstr "ON" + +#~ msgid "" +#~ "2Cxy: Automatic noise frequency (x: mode (0: disable, 1: freq, 2: freq + " +#~ "OR mask); y: offset" +#~ msgstr "" +#~ "2Cxy: Frequência de ruído automática (x: modo (0: desativar, 1: freq, 2: " +#~ "freq + máscara OR); y: compensação" diff --git a/po/staging/pt_BR-diggo.diff b/po/staging/pt_BR-diggo.diff new file mode 100644 index 000000000..4f2e60135 --- /dev/null +++ b/po/staging/pt_BR-diggo.diff @@ -0,0 +1,912 @@ +--- ../pt_BR.po 2024-05-29 20:54:03.941335781 -0500 ++++ pt_BR-after.po 2024-05-29 21:22:24.102893128 -0500 +@@ -2,7 +2,7 @@ + msgid "" + msgstr "" + "Project-Id-Version: furnace 0.6.3\n" +-"Last-Translator: Automatically generated\n" ++"Last-Translator: Diggo\n" + "Language-Team: none\n" + "Language: pt_BR\n" + "MIME-Version: 1.0\n" +@@ -13,52 +13,51 @@ + #: src/engine/sysDef.cpp:428 src/engine/sysDef.cpp:441 + msgid "20xx: Set channel mode (bit 0: square; bit 1: noise; bit 2: envelope)" + msgstr "" +-"20xx: Definir modo do canal (bit 0: onda quadrada; bit 1: ruído; bit 2: " +-"envelope)" ++"20xx: Definir modo de canal (bit 0: quadrado; bit 1: ruído; bit 2: envelope)" + + #: src/engine/sysDef.cpp:429 + msgid "21xx: Set noise frequency (0 to 1F)" +-msgstr "21xx: Definir frequência do ruído (0 a 1F)" ++msgstr "21xx: Definir frequência de ruído (0 a 1F)" + + #: src/engine/sysDef.cpp:430 src/engine/sysDef.cpp:443 + msgid "22xy: Set envelope mode (x: shape, y: enable for this channel)" + msgstr "" +-"22xy: Definir modo do envelope (x: formato, y: habilitar para este canal)" ++"22xy: Definir modo de envelope (x: forma, y: habilitar para este canal)" + + #: src/engine/sysDef.cpp:431 src/engine/sysDef.cpp:444 + msgid "23xx: Set envelope period low byte" +-msgstr "23xx: Definir byte inferior do período do envelope" ++msgstr "23xx: Definir byte baixo do período de envelope" + + #: src/engine/sysDef.cpp:432 src/engine/sysDef.cpp:445 + msgid "24xx: Set envelope period high byte" +-msgstr "24xx: Definir byte superior do período do envelope" ++msgstr "24xx: Definir byte alto do período de envelope" + + #: src/engine/sysDef.cpp:433 src/engine/sysDef.cpp:446 + #: src/engine/sysDef.cpp:1599 + msgid "25xx: Envelope slide up" +-msgstr "25xx: Slide de envelope para cima" ++msgstr "25xx: Deslizar envelope para cima" + + #: src/engine/sysDef.cpp:434 src/engine/sysDef.cpp:447 + #: src/engine/sysDef.cpp:1600 + msgid "26xx: Envelope slide down" +-msgstr "26xx: Slide de envelope para baixo" ++msgstr "26xx: Deslizar envelope para baixo" + + #: src/engine/sysDef.cpp:435 src/engine/sysDef.cpp:448 + #: src/engine/sysDef.cpp:1601 + msgid "29xy: Set auto-envelope (x: numerator; y: denominator)" +-msgstr "29xy: Definir envelope automático (x: numerador; y: denominador)" ++msgstr "29xy: Definir auto-envelope (x: numerador; y: denominador)" + + #: src/engine/sysDef.cpp:436 src/engine/sysDef.cpp:449 + msgid "2Exx: Write to I/O port A" +-msgstr "2Exx: Escrever na porta E/S A" ++msgstr "2Exx: Escrever no porto de E/S A" + + #: src/engine/sysDef.cpp:437 src/engine/sysDef.cpp:450 + msgid "2Fxx: Write to I/O port B" +-msgstr "2Fxx: Escrever na porta E/S B" ++msgstr "2Fxx: Escrever no porto de E/S B" + + #: src/engine/sysDef.cpp:442 + msgid "21xx: Set noise frequency (0 to FF)" +-msgstr "" ++msgstr "21xx: Definir frequência de ruído (0 a FF)" + + #: src/engine/sysDef.cpp:451 + msgid "12xx: Set duty cycle (0 to 8)" +@@ -66,11 +65,11 @@ + + #: src/engine/sysDef.cpp:453 + msgid "27xx: Set noise AND mask" +-msgstr "27xx: Definir máscara AND do ruído" ++msgstr "27xx: Definir máscara AND de ruído" + + #: src/engine/sysDef.cpp:454 + msgid "28xx: Set noise OR mask" +-msgstr "28xx: Definir máscara OR do ruído" ++msgstr "28xx: Definir máscara OR de ruído" + + #: src/engine/sysDef.cpp:455 + msgid "" +@@ -80,15 +79,15 @@ + + #: src/engine/sysDef.cpp:456 + msgid "2Dxx: NOT TO BE EMPLOYED BY THE COMPOSER" +-msgstr "2Dxx: NÃO É PARA SER USADO PELO COMPOSITOR" ++msgstr "2Dxx: NÃO DEVE SER UTILIZADO PELO COMPOSITOR" + + #: src/engine/sysDef.cpp:460 + msgid "30xx: Toggle hard envelope reset on new notes" +-msgstr "30xx: Alternar reinício brusco do envelope em novas notas" ++msgstr "30xx: Alternar reinício rígido de envelope em novas notas" + + #: src/engine/sysDef.cpp:465 + msgid "18xx: Toggle extended channel 3 mode" +-msgstr "18xx: Alternar modo de canal 3 estendido" ++msgstr "18xx: Alternar modo de canal estendido 3" + + #: src/engine/sysDef.cpp:470 src/engine/sysDef.cpp:766 + #: src/engine/sysDef.cpp:1025 src/engine/sysDef.cpp:1272 +@@ -99,11 +98,11 @@ + #: src/engine/sysDef.cpp:471 src/engine/sysDef.cpp:1653 + #: src/engine/sysDef.cpp:1963 + msgid "DFxx: Set sample playback direction (0: normal; 1: reverse)" +-msgstr "DFxx: Definir direção da reprodução de samples (0: normal; 1: reversa)" ++msgstr "DFxx: Definir direção de reprodução da amostra (0: normal; 1: reverso)" + + #: src/engine/sysDef.cpp:476 + msgid "18xx: Toggle drums mode (1: enabled; 0: disabled)" +-msgstr "18xx: Alternar modo bateria (1: habilitado; 0: desabilitado)" ++msgstr "18xx: Alternar modo de bateria (1: habilitado; 0: desabilitado)" + + #: src/engine/sysDef.cpp:480 src/engine/sysDef.cpp:554 + #: src/engine/sysDef.cpp:575 +@@ -112,19 +111,19 @@ + + #: src/engine/sysDef.cpp:481 + msgid "12xx: Set level of operator 1 (0 highest, 7F lowest)" +-msgstr "12xx: Definir nível do operador 1 (0 é o mais alto, 7F o mais baixo)" ++msgstr "12xx: Definir nível do operador 1 (0 mais alto, 7F mais baixo)" + + #: src/engine/sysDef.cpp:482 + msgid "13xx: Set level of operator 2 (0 highest, 7F lowest)" +-msgstr "13xx: Definir nível do operador 2 (0 é o mais alto, 7F o mais baixo)" ++msgstr "13xx: Definir nível do operador 2 (0 mais alto, 7F mais baixo)" + + #: src/engine/sysDef.cpp:483 + msgid "14xx: Set level of operator 3 (0 highest, 7F lowest)" +-msgstr "14xx: Definir nível do operador 3 (0 é o mais alto, 7F o mais baixo)" ++msgstr "14xx: Definir nível do operador 3 (0 mais alto, 7F mais baixo)" + + #: src/engine/sysDef.cpp:484 + msgid "15xx: Set level of operator 4 (0 highest, 7F lowest)" +-msgstr "15xx: Definir nível do operador 4 (0 é o mais alto, 7F o mais baixo)" ++msgstr "15xx: Definir nível do operador 4 (0 mais alto, 7F mais baixo)" + + #: src/engine/sysDef.cpp:485 src/engine/sysDef.cpp:580 + #: src/engine/sysDef.cpp:635 +@@ -156,30 +155,30 @@ + #: src/engine/sysDef.cpp:491 src/engine/sysDef.cpp:588 + #: src/engine/sysDef.cpp:656 + msgid "50xy: Set AM (x: operator from 1 to 4 (0 for all ops); y: AM)" +-msgstr "50xy: Definir AM (x: operador de 1 a 4 (0 para todos os ops.); y: AM)" ++msgstr "50xy: Definir AM (x: operador de 1 a 4 (0 para todos os ops); y: AM)" + + #: src/engine/sysDef.cpp:492 src/engine/sysDef.cpp:589 + #: src/engine/sysDef.cpp:657 + msgid "" + "51xy: Set sustain level (x: operator from 1 to 4 (0 for all ops); y: sustain)" + msgstr "" +-"51xy: Definir nível de sustentação (x: operador de 1 a 4 (0 para todos os " +-"ops.); y: sustentação)" ++"51xy: Definir nível de sustain (x: operador de 1 a 4 (0 para todos os ops); " ++"y: sustain)" + + #: src/engine/sysDef.cpp:493 src/engine/sysDef.cpp:590 + #: src/engine/sysDef.cpp:658 + msgid "52xy: Set release (x: operator from 1 to 4 (0 for all ops); y: release)" + msgstr "" +-"52xy: Definir repouso (x: operador de 1 a 4 (0 para todos os ops.); y: " +-"repouso)" ++"52xy: Definir release (x: operador de 1 a 4 (0 para todos os ops); y: " ++"release)" + + #: src/engine/sysDef.cpp:494 + msgid "" + "53xy: Set detune (x: operator from 1 to 4 (0 for all ops); y: detune where 3 " + "is center)" + msgstr "" +-"53xy: Definir desafinação (x: operador de 1 a 4 (0 para todos os ops.); y: " +-"desafinação, onde 3 é o centro)" ++"53xy: Definir detune (x: operador de 1 a 4 (0 para todos os ops); y: detune " ++"onde 3 é o centro)" + + #: src/engine/sysDef.cpp:495 src/engine/sysDef.cpp:592 + #: src/engine/sysDef.cpp:660 +@@ -187,52 +186,52 @@ + "54xy: Set envelope scale (x: operator from 1 to 4 (0 for all ops); y: scale " + "from 0 to 3)" + msgstr "" +-"54xy: Definir escalonamento do envelope (x: operador de 1 a 4 (0 para todos " +-"os ops.); y: escala de 0 a 3)" ++"54xy: Definir escala de envelope (x: operador de 1 a 4 (0 para todos os " ++"ops); y: escala de 0 a 3)" + + #: src/engine/sysDef.cpp:496 + msgid "56xx: Set decay of all operators (0 to 1F)" +-msgstr "56xx: Definir decaimento de todos os operadores (0 a 1F)" ++msgstr "56xx: Definir decay de todos os operadores (0 a 1F)" + + #: src/engine/sysDef.cpp:497 + msgid "57xx: Set decay of operator 1 (0 to 1F)" +-msgstr "57xx: Definir decaimento do operador 1 (0 a 1F)" ++msgstr "57xx: Definir decay do operador 1 (0 a 1F)" + + #: src/engine/sysDef.cpp:498 + msgid "58xx: Set decay of operator 2 (0 to 1F)" +-msgstr "58xx: Definir decaimento do operador 2 (0 a 1F)" ++msgstr "58xx: Definir decay do operador 2 (0 a 1F)" + + #: src/engine/sysDef.cpp:499 + msgid "59xx: Set decay of operator 3 (0 to 1F)" +-msgstr "59xx: Definir decaimento do operador 3 (0 a 1F)" ++msgstr "59xx: Definir decay do operador 3 (0 a 1F)" + + #: src/engine/sysDef.cpp:500 + msgid "5Axx: Set decay of operator 4 (0 to 1F)" +-msgstr "5Axx: Definir decaimento do operador 4 (0 a 1F)" ++msgstr "5Axx: Definir decay do operador 4 (0 a 1F)" + + #: src/engine/sysDef.cpp:501 + msgid "5Bxx: Set decay 2 of all operators (0 to 1F)" +-msgstr "5Bxx: Definir decaimento 2 de todos os operadores (0 a 1F)" ++msgstr "5Bxx: Definir decay 2 de todos os operadores (0 a 1F)" + + #: src/engine/sysDef.cpp:502 + msgid "5Cxx: Set decay 2 of operator 1 (0 to 1F)" +-msgstr "5Cxx: Definir decaimento 2 do operador 1 (0 a 1F)" ++msgstr "5Cxx: Definir decay 2 do operador 1 (0 a 1F)" + + #: src/engine/sysDef.cpp:503 + msgid "5Dxx: Set decay 2 of operator 2 (0 to 1F)" +-msgstr "5Dxx: Definir decaimento 2 do operador 2 (0 a 1F)" ++msgstr "5Dxx: Definir decay 2 do operador 2 (0 a 1F)" + + #: src/engine/sysDef.cpp:504 + msgid "5Exx: Set decay 2 of operator 3 (0 to 1F)" +-msgstr "5Exx: Definir decaimento 2 do operador 3 (0 a 1F)" ++msgstr "5Exx: Definir decay 2 do operador 3 (0 a 1F)" + + #: src/engine/sysDef.cpp:505 + msgid "5Fxx: Set decay 2 of operator 4 (0 to 1F)" +-msgstr "5Fxx: Definir decaimento 2 do operador 4 (0 a 1F)" ++msgstr "5Fxx: Definir decay 2 do operador 4 (0 a 1F)" + + #: src/engine/sysDef.cpp:510 + msgid "10xx: Set noise frequency (xx: value; 0 disables noise)" +-msgstr "10xx: Definir frequência do ruído (xx: valor; 0 desabilita o ruído)" ++msgstr "10xx: Definir frequência de ruído (xx: valor; 0 desabilita o ruído)" + + #: src/engine/sysDef.cpp:511 + msgid "17xx: Set LFO speed" +@@ -241,24 +240,24 @@ + #: src/engine/sysDef.cpp:512 + msgid "18xx: Set LFO waveform (0 saw, 1 square, 2 triangle, 3 noise)" + msgstr "" +-"18xx: Definir forma de onda do LFO (0 serra, 1 quadrada, 2 triângulo, 3 " ++"18xx: Definir forma de onda do LFO (0 serra, 1 quadrada, 2 triangular, 3 " + "ruído)" + + #: src/engine/sysDef.cpp:513 + msgid "1Exx: Set AM depth (0 to 7F)" +-msgstr "1Exx: Definir profundidade do AM (0 a 7F)" ++msgstr "1Exx: Definir profundidade de AM (0 a 7F)" + + #: src/engine/sysDef.cpp:514 + msgid "1Fxx: Set PM depth (0 to 7F)" +-msgstr "1Fxx: Definir profundidade do PM (0 a 7F)" ++msgstr "1Fxx: Definir profundidade de PM (0 a 7F)" + + #: src/engine/sysDef.cpp:515 + msgid "" + "55xy: Set detune 2 (x: operator from 1 to 4 (0 for all ops); y: detune from " + "0 to 3)" + msgstr "" +-"55xy: Definir desafinação 2 (x: operador de 1 a 4 (0 para todos os ops.); y: " +-"desafinação de 0 a 3)" ++"55xy: Definir detune 2 (x: operador de 1 a 4 (0 para todos os ops); y: " ++"detune de 0 a 3)" + + #: src/engine/sysDef.cpp:520 + msgid "24xx: Set LFO 2 speed" +@@ -267,23 +266,23 @@ + #: src/engine/sysDef.cpp:521 + msgid "25xx: Set LFO 2 waveform (0 saw, 1 square, 2 triangle, 3 noise)" + msgstr "" +-"25xx: Definir forma de onda do LFO 2 (0 serra, 1 quadrada, 2 triângulo, 3 " ++"25xx: Definir forma de onda do LFO 2 (0 serra, 1 quadrada, 2 triangular, 3 " + "ruído)" + + #: src/engine/sysDef.cpp:522 + msgid "26xx: Set AM 2 depth (0 to 7F)" +-msgstr "26xx: Definir profundidade do AM 2 (0 ta 7F)" ++msgstr "26xx: Definir profundidade de AM 2 (0 a 7F)" + + #: src/engine/sysDef.cpp:523 + msgid "27xx: Set PM 2 depth (0 to 7F)" +-msgstr "27xx: Definir profundidade do PM 2 (0 ta 7F)" ++msgstr "27xx: Definir profundidade de PM 2 (0 a 7F)" + + #: src/engine/sysDef.cpp:524 + msgid "" + "28xy: Set reverb (x: operator from 1 to 4 (0 for all ops); y: reverb from 0 " + "to 7)" + msgstr "" +-"28xy: Definir reverb (x: operador de 1 a 4 (0 para todos os ops.); y: reverb " ++"28xy: Definir reverb (x: operador de 1 a 4 (0 para todos os ops); y: reverb " + "de 0 a 7)" + + #: src/engine/sysDef.cpp:525 src/engine/sysDef.cpp:650 +@@ -291,7 +290,7 @@ + "2Axy: Set waveform (x: operator from 1 to 4 (0 for all ops); y: waveform " + "from 0 to 7)" + msgstr "" +-"2Axy: Definir forma de onda (x: operador de 1 a 4 (0 para todos os ops.); y: " ++"2Axy: Definir forma de onda (x: operador de 1 a 4 (0 para todos os ops); y: " + "forma de onda de 0 a 7)" + + #: src/engine/sysDef.cpp:526 +@@ -299,15 +298,15 @@ + "2Bxy: Set envelope generator shift (x: operator from 1 to 4 (0 for all ops); " + "y: shift from 0 to 3)" + msgstr "" +-"2Bxy: Definir deslocamento do gerador de envelope x: operador de 1 a 4 (0 " +-"para todos os ops.); y: deslocamento de 0 a 3)" ++"2Bxy: Definir deslocamento do gerador de envelope (x: operador de 1 a 4 (0 " ++"para todos os ops); y: deslocamento de 0 a 3)" + + #: src/engine/sysDef.cpp:527 + msgid "" + "2Cxy: Set fine multiplier (x: operator from 1 to 4 (0 for all ops); y: fine)" + msgstr "" + "2Cxy: Definir multiplicador fino (x: operador de 1 a 4 (0 para todos os " +-"ops.); y: multiplicador fino)" ++"ops); y: fino)" + + #: src/engine/sysDef.cpp:530 + msgid "" +@@ -346,31 +345,31 @@ + "55xy: Set SSG envelope (x: operator from 1 to 4 (0 for all ops); y: 0-7 on, " + "8 off)" + msgstr "" +-"55xy: Definir envelope SSG (x: operador de 1 a 4 (0 para todos os ops.); y: " ++"55xy: Definir envelope SSG (x: operador de 1 a 4 (0 para todos os ops); y: " + "0-7 ligado, 8 desligado)" + + #: src/engine/sysDef.cpp:549 + msgid "1Fxx: Set ADPCM-A global volume (0 to 3F)" +-msgstr "1Fxx: Definir volume global do ADPCM-A (0 a 3F)" ++msgstr "1Fxx: Definir volume global ADPCM-A (0 a 3F)" + + #: src/engine/sysDef.cpp:553 + msgid "10xx: Set patch (0 to F)" +-msgstr "" ++msgstr "10xx: Definir patch (0 a F)" + + #: src/engine/sysDef.cpp:555 src/engine/sysDef.cpp:576 + #: src/engine/sysDef.cpp:631 + msgid "12xx: Set level of operator 1 (0 highest, 3F lowest)" +-msgstr "12xx: Definir nível do operador 1 (0 é o mais alto, 3F o mais baixo)" ++msgstr "12xx: Definir nível do operador 1 (0 mais alto, 3F mais baixo)" + + #: src/engine/sysDef.cpp:556 src/engine/sysDef.cpp:577 + #: src/engine/sysDef.cpp:632 + msgid "13xx: Set level of operator 2 (0 highest, 3F lowest)" +-msgstr "13xx: Definir nível do operador 2 (0 é o mais alto, 3F o mais baixo)" ++msgstr "13xx: Definir nível do operador 2 (0 mais alto, 3F mais baixo)" + + #: src/engine/sysDef.cpp:557 + msgid "16xy: Set operator multiplier (x: operator from 1 to 2; y: multiplier)" + msgstr "" +-"16xy: Definir multiplicador do operador (x: operator de 1 a 2; y: " ++"16xy: Definir multiplicador do operador (x: operador de 1 a 2; y: " + "multiplicador)" + + #: src/engine/sysDef.cpp:558 src/engine/sysDef.cpp:582 +@@ -390,81 +389,81 @@ + + #: src/engine/sysDef.cpp:561 + msgid "50xy: Set AM (x: operator from 1 to 2 (0 for all ops); y: AM)" +-msgstr "50xy: Definir AM (x: operador de 1 a 2 (0 para todos os ops.); y: AM)" ++msgstr "50xy: Definir AM (x: operador de 1 a 2 (0 para todos os ops); y: AM)" + + #: src/engine/sysDef.cpp:562 + msgid "" + "51xy: Set sustain level (x: operator from 1 to 2 (0 for all ops); y: sustain)" + msgstr "" +-"51xy: Definir nível de sustentação (x: operador de 1 a 2 (0 para todos os " +-"ops.); y: sustentação)" ++"51xy: Definir nível de sustain (x: operador de 1 a 2 (0 para todos os ops); " ++"y: sustain)" + + #: src/engine/sysDef.cpp:563 + msgid "52xy: Set release (x: operator from 1 to 2 (0 for all ops); y: release)" + msgstr "" +-"52xy: Definir repouso (x: operador de 1 a 2 (0 para todos os ops.); y: " +-"repouso)" ++"52xy: Definir release (x: operador de 1 a 2 (0 para todos os ops); y: " ++"release)" + + #: src/engine/sysDef.cpp:564 + msgid "53xy: Set vibrato (x: operator from 1 to 2 (0 for all ops); y: enabled)" + msgstr "" +-"53xy: Definir vibrato (x: operador de 1 a 2 (0 para todos os ops.); y: " +-"habilitado)" ++"53xy: Definir vibrato (x: operador de 1 a 2 (0 para todos os ops); y: " ++"ativado)" + + #: src/engine/sysDef.cpp:565 + msgid "" + "54xy: Set envelope scale (x: operator from 1 to 2 (0 for all ops); y: scale " + "from 0 to 3)" + msgstr "" +-"54xy: Definir escalonamento de envelope (x: operador de 1 a 2 (0 para todos " +-"os ops.); y: escala de 0 a 3)" ++"54xy: Definir escala de envelope (x: operador de 1 a 2 (0 para todos os " ++"ops); y: escala de 0 a 3)" + + #: src/engine/sysDef.cpp:566 + msgid "" + "55xy: Set envelope sustain (x: operator from 1 to 2 (0 for all ops); y: " + "enabled)" + msgstr "" +-"55xy: Definir modo de sustentação de envelope (x: operador de 1 a 2 (0 para " +-"todos os ops.); y: habilitado)" ++"55xy: Definir sustain de envelope (x: operador de 1 a 2 (0 para todos os " ++"ops); y: ativado)" + + #: src/engine/sysDef.cpp:567 src/engine/sysDef.cpp:594 + #: src/engine/sysDef.cpp:662 + msgid "56xx: Set decay of all operators (0 to F)" +-msgstr "56xx: Definir decaimento de todos os operadores (0 a F)" ++msgstr "56xx: Definir decay de todos os operadores (0 a F)" + + #: src/engine/sysDef.cpp:568 src/engine/sysDef.cpp:595 + #: src/engine/sysDef.cpp:663 + msgid "57xx: Set decay of operator 1 (0 to F)" +-msgstr "57xx: Definir decaimento do operador 1 (0 a F)" ++msgstr "57xx: Definir decay do operador 1 (0 a F)" + + #: src/engine/sysDef.cpp:569 src/engine/sysDef.cpp:596 + #: src/engine/sysDef.cpp:664 + msgid "58xx: Set decay of operator 2 (0 to F)" +-msgstr "58xx: Definir decaimento do operador 2 (0 a F)" ++msgstr "58xx: Definir decay do operador 2 (0 a F)" + + #: src/engine/sysDef.cpp:570 + msgid "" + "5Bxy: Set whether key will scale envelope (x: operator from 1 to 2 (0 for " + "all ops); y: enabled)" + msgstr "" +-"5Bxy: Definir se a nota irá escalonar a taxa do envelope (x: operador de 1 a " +-"2 (0 para todos os ops.); y: habilitado)" ++"5Bxy: Definir se a tecla irá escalar o envelope (x: operador de 1 a 2 (0 " ++"para todos os ops); y: ativado)" + + #: src/engine/sysDef.cpp:574 + msgid "10xx: Set global AM depth (0: 1dB, 1: 4.8dB)" +-msgstr "10xx: Definir profundidade de AM global (0: 1dB, 1: 4.8dB)" ++msgstr "10xx: Definir profundidade global de AM (0: 1dB, 1: 4.8dB)" + + #: src/engine/sysDef.cpp:578 src/engine/sysDef.cpp:633 + msgid "14xx: Set level of operator 3 (0 highest, 3F lowest)" +-msgstr "14xx: Definir nível do operador 3 (0 é o mais alto, 3F o mais baixo)" ++msgstr "14xx: Definir nível do operador 3 (0 mais alto, 3F mais baixo)" + + #: src/engine/sysDef.cpp:579 src/engine/sysDef.cpp:634 + msgid "15xx: Set level of operator 4 (0 highest, 3F lowest)" +-msgstr "15xx: Definir nível do operador 4 (0 é o mais alto, 3F o mais baixo)" ++msgstr "15xx: Definir nível do operador 4 (0 mais alto, 3F mais baixo)" + + #: src/engine/sysDef.cpp:581 + msgid "17xx: Set global vibrato depth (0: normal, 1: double)" +-msgstr "17xx: Definir profundidade de vibrato global (0: normal, 1: dobro)" ++msgstr "17xx: Definir profundidade global de vibrato (0: normal, 1: dobrado)" + + #: src/engine/sysDef.cpp:585 src/engine/sysDef.cpp:640 + msgid "1Cxx: Set attack of operator 3 (0 to F)" +@@ -479,57 +478,54 @@ + "2Axy: Set waveform (x: operator from 1 to 4 (0 for all ops); y: waveform " + "from 0 to 3 in OPL2 and 0 to 7 in OPL3)" + msgstr "" +-"2Axy: Definir forma de onda (x: operador de 1 a 4 (0 para todos os ops.); y: " +-"forma de onda de 0 a 3 no OPL2 e 0 a 7 no OPL3)" ++"2Axy: Definir forma de onda (x: operador de 1 a 4 (0 para todos os ops); y: " ++"forma de onda de 0 a 3 no OPL2 e de 0 a 7 no OPL3)" + + #: src/engine/sysDef.cpp:591 src/engine/sysDef.cpp:659 + msgid "53xy: Set vibrato (x: operator from 1 to 4 (0 for all ops); y: enabled)" + msgstr "" +-"53xy: Definir vibrato (x: operador de 1 a 4 (0 para todos os ops.); y: " +-"habilitado)" ++"53xy: Definir vibrato (x: operador de 1 a 4 (0 para todos os ops); y: " ++"ativado)" + + #: src/engine/sysDef.cpp:593 src/engine/sysDef.cpp:661 + msgid "" + "55xy: Set envelope sustain (x: operator from 1 to 4 (0 for all ops); y: " + "enabled)" + msgstr "" +-"55xy: Definir modo de sustentação de envelope (x: operador de 1 a 4 (0 para " +-"todos os ops.); y: habilitado)" ++"55xy: Definir sustain de envelope (x: operador de 1 a 4 (0 para todos os " ++"ops); y: ativado)" + + #: src/engine/sysDef.cpp:597 src/engine/sysDef.cpp:665 + msgid "59xx: Set decay of operator 3 (0 to F)" +-msgstr "59xx: Definir decaimento do operador 3 (0 a F)" ++msgstr "59xx: Definir decay do operador 3 (0 a F)" + + #: src/engine/sysDef.cpp:598 src/engine/sysDef.cpp:666 + msgid "5Axx: Set decay of operator 4 (0 to F)" +-msgstr "5Axx: Definir decaimento do operador 4 (0 a F)" ++msgstr "5Axx: Definir decay do operador 4 (0 a F)" + + #: src/engine/sysDef.cpp:599 src/engine/sysDef.cpp:667 + msgid "" + "5Bxy: Set whether key will scale envelope (x: operator from 1 to 4 (0 for " + "all ops); y: enabled)" + msgstr "" +-"5Bxy: Definir se a nota irá escalonar a taxa do envelope (x: operador de 1 a " +-"4 (0 para todos os ops.); y: habilitado)" ++"5Bxy: Definir se a tecla irá escalar o envelope (x: operador de 1 a 4 (0 " ++"para todos os ops); y: ativado)" + + #: src/engine/sysDef.cpp:603 src/engine/sysDef.cpp:680 + msgid "" + "10xx: Set waveform (bit 0: triangle; bit 1: saw; bit 2: pulse; bit 3: noise)" + msgstr "" +-"10xx: Definir forma de onda (bit 0: triângulo; bit 1: serra; bit 2: pulso; " +-"bit 3: ruído)" ++"10xx: Definir forma de onda (bit 0: triângulo; bit 1: dente de serra; bit 2: " ++"pulso; bit 3: ruído)" + + #: src/engine/sysDef.cpp:604 + msgid "11xx: Set coarse cutoff (not recommended; use 4xxx instead)" +-msgstr "" +-"11xx: Definir ponto de corte grosso (não recomendado; use o 4xxx ao invés " +-"desse)" ++msgstr "11xx: Definir corte de agudos (não recomendado; use 4xxx em vez disso)" + + #: src/engine/sysDef.cpp:605 + msgid "12xx: Set coarse pulse width (not recommended; use 3xxx instead)" + msgstr "" +-"12xx: Definir largura de pulso grossa (não recomendado, use o 3xxx ao invés " +-"desse)" ++"12xx: Definir largura de pulso (não recomendado; use 3xxx em vez disso)" + + #: src/engine/sysDef.cpp:606 + msgid "13xx: Set resonance (0 to F)" +@@ -539,30 +535,29 @@ + msgid "" + "14xx: Set filter mode (bit 0: low pass; bit 1: band pass; bit 2: high pass)" + msgstr "" +-"14xx: Definir modo de filtro (bit 0: passa baixa; bit 1: passa banda; bit 2: " +-"passa alta)" ++"14xx: Definir modo de filtro (bit 0: low pass; bit 1: band pass; bit 2: high " ++"pass)" + + #: src/engine/sysDef.cpp:608 + msgid "15xx: Set envelope reset time" +-msgstr "15xx: Definir tempo de reinício do envelope" ++msgstr "15xx: Definir tempo de reset do envelope" + + #: src/engine/sysDef.cpp:609 + msgid "1Axx: Disable envelope reset for this channel (1 disables; 0 enables)" + msgstr "" +-"1Axx: Desabilitar reinício do envelope para este canal (1 desabilita; 0 " +-"habilita)" ++"1Axx: Desativar reset do envelope para este canal (1 desabilita; 0 habilita)" + + #: src/engine/sysDef.cpp:610 + msgid "1Bxy: Reset cutoff (x: on new note; y: now)" +-msgstr "1Bxy: Redefinir ponto de corte (x: em nova nota; y: agora)" ++msgstr "1Bxy: Resetar corte (x: na nova nota; y: agora)" + + #: src/engine/sysDef.cpp:611 + msgid "1Cxy: Reset pulse width (x: on new note; y: now)" +-msgstr "1Cxy: Redefinir largura de pulso (x: em nova nota; y: agora)" ++msgstr "1Cxy: Resetar largura de pulso (x: na nova nota; y: agora)" + + #: src/engine/sysDef.cpp:612 + msgid "1Exy: Change other parameters (LEGACY)" +-msgstr "1Exy: Alterar outros parâmetros (LEGADO)" ++msgstr "1Exy: Mudar outros parâmetros (LEGACY)" + + #: src/engine/sysDef.cpp:613 + msgid "20xy: Set attack/decay (x: attack; y: decay)" +@@ -570,7 +565,7 @@ + + #: src/engine/sysDef.cpp:614 + msgid "21xy: Set sustain/release (x: sustain; y: release)" +-msgstr "21xy: Definir sustentação/repouso (x: sustentação; y: repouso)" ++msgstr "21xy: Definir sustentação/liberação (x: sustentação; y: liberação)" + + #: src/engine/sysDef.cpp:616 src/engine/sysDef.cpp:688 + msgid "3xxx: Set pulse width (0 to FFF)" +@@ -578,7 +573,7 @@ + + #: src/engine/sysDef.cpp:617 + msgid "4xxx: Set cutoff (0 to 7FF)" +-msgstr "4xxx: Definir ponto de corte (0 to 7FF)" ++msgstr "4xxx: Definir corte (0 a 7FF)" + + #: src/engine/sysDef.cpp:622 src/engine/sysDef.cpp:745 + #: src/engine/sysDef.cpp:762 src/engine/sysDef.cpp:1000 +@@ -588,7 +583,7 @@ + #: src/engine/sysDef.cpp:1893 src/engine/sysDef.cpp:2063 + #: src/engine/sysDef.cpp:2077 + msgid "10xx: Set waveform" +-msgstr "10xx: Definir forma de onda" ++msgstr "10xx: Definir onda" + + #: src/engine/sysDef.cpp:626 + msgid "20xx: Set PCM frequency" +@@ -599,40 +594,40 @@ + "10xy: Set AM depth (x: operator from 1 to 4 (0 for all ops); y: depth (0: " + "1dB, 1: 4.8dB))" + msgstr "" +-"10xy: Definir profundidade do AM (x: operador de 1 a 4 (0 para todos os " +-"ops.); y: profundidade (0: 1dB, 1: 4.8dB))" ++"10xy: Definir AM depth (x: operator do 1 para o 4 (0 para todos ops); y: " ++"depth (0: 1dB, 1: 4.8dB))" + + #: src/engine/sysDef.cpp:636 + msgid "" + "17xy: Set vibrato depth (x: operator from 1 to 4 (0 for all ops); y: depth " + "(0: normal, 1: double))" + msgstr "" +-"17xy: Definir profundidade do vibrato (x: operador de 1 a 4 (0 para todos os " +-"ops.); y: profundidade (0: normal, 1: dobro))" ++"17xy: Definir vibrato depth (x: operator do 1 para o 4 (0 para todos ops); " ++"y: depth (0: normal, 1: dobrado))" + + #: src/engine/sysDef.cpp:642 + msgid "20xy: Set panning of operator 1 (x: left; y: right)" +-msgstr "20xy: Definir balanço do operador 1 (x: esquerda; y: direita)" ++msgstr "20xy: Definir panorama do operador 1 (x: esquerda; y: direita)" + + #: src/engine/sysDef.cpp:643 + msgid "21xy: Set panning of operator 2 (x: left; y: right)" +-msgstr "21xy: Definir balanço do operador 2 (x: esquerda; y: direita)" ++msgstr "21xy: Definir panorama do operador 2 (x: esquerda; y: direita)" + + #: src/engine/sysDef.cpp:644 + msgid "22xy: Set panning of operator 3 (x: left; y: right)" +-msgstr "22xy: Definir balanço do operador 3 (x: esquerda; y: direita)" ++msgstr "22xy: Definir panorama do operador 3 (x: esquerda; y: direita)" + + #: src/engine/sysDef.cpp:645 + msgid "23xy: Set panning of operator 4 (x: left; y: right)" +-msgstr "23xy: Definir balanço do operador 4 (x: esquerda; y: direita)" ++msgstr "23xy: Definir panorama do operador 4 (x: esquerda; y: direita)" + + #: src/engine/sysDef.cpp:646 + msgid "" + "24xy: Set output level register (x: operator from 1 to 4 (0 for all ops); y: " + "level from 0 to 7)" + msgstr "" +-"24xy: Definir registrador de nível de saída (x: operador de 1 a 4 (0 para " +-"todos os ops.); y: nível de 0 a 7)" ++"24xy: Definir registro de nível de saída (x: operador de 1 a 4 (0 para todas " ++"as operações); y: nível de 0 a 7)" + + #: src/engine/sysDef.cpp:647 + msgid "" +@@ -640,26 +635,26 @@ + "y: level from 0 to 7)" + msgstr "" + "25xy: Definir nível de entrada de modulação (x: operador de 1 a 4 (0 para " +-"todos os ops.); y: nível de 0 a 7)" ++"todas as operações); y: nível de 0 a 7)" + + #: src/engine/sysDef.cpp:648 + msgid "" + "26xy: Set envelope delay (x: operator from 1 to 4 (0 for all ops); y: delay " + "from 0 to 7)" + msgstr "" +-"26xy: Definir atraso de envelope (x: operador de 1 a 4 (0 para todos os " +-"ops.); y: atraso de 0 a 7)" ++"26xy: Definir atraso de envelope (x: operador de 1 a 4 (0 para todas as " ++"operações); y: atraso de 0 a 7)" + + #: src/engine/sysDef.cpp:649 + msgid "27xx: Set noise mode for operator 4 (x: mode from 0 to 3)" +-msgstr "27xx: Definir modo de ruído do operador 4 (x: modo de 0 a 3)" ++msgstr "27xx: Definir modo de ruído para o operador 4 (x: modo de 0 a 3)" + + #: src/engine/sysDef.cpp:651 + msgid "" + "2Fxy: Set fixed frequency block (x: operator from 1 to 4; y: octave from 0 " + "to 7)" + msgstr "" +-"2Fxy: Definir bloco da frequência fixa (x: operador de 1 a 4; y: oitava de 0 " ++"2Fxy: Definir bloco de frequência fixa (x: operador de 1 a 4; y: oitava de 0 " + "a 7)" + + #: src/engine/sysDef.cpp:652 +@@ -683,32 +678,32 @@ + "3xyy: Set fixed frequency F-num of operator 1 (x: high 2 bits from 0 to 3; " + "y: low 8 bits of F-num)" + msgstr "" +-"3xyy: Definir Número-Frequência da frequência fixa do operador 1 (x: 2 bits " +-"superiores de 0 a 3; y: 8 bits inferiores)" ++"3xyy: Definir F-num fixo de frequência do operador 1 (x: bits altos 2 de 0 a " ++"3; y: bits baixos 8 do F-num)" + + #: src/engine/sysDef.cpp:671 + msgid "" + "3xyy: Set fixed frequency F-num of operator 2 (x: high 2 bits from 4 to 7; " + "y: low 8 bits of F-num)" + msgstr "" +-"3xyy: Definir Número-Frequência da frequência fixa do operador 2 (x: 2 bits " +-"superiores de 4 a 7; y: 8 bits inferiores)" ++"3xyy: Definir F-num fixo de frequência do operador 2 (x: bits altos 2 de 4 a " ++"7; y: bits baixos 8 do F-num)" + + #: src/engine/sysDef.cpp:672 + msgid "" + "3xyy: Set fixed frequency F-num of operator 3 (x: high 2 bits from 8 to B; " + "y: low 8 bits of F-num)" + msgstr "" +-"3xyy: Definir Número-Frequência da frequência fixa do operador 3 (x: 2 bits " +-"superiores de 8 a B; y: 8 bits inferiores)" ++"3xyy: Definir F-num fixo de frequência do operador 3 (x: bits altos 2 de 8 a " ++"B; y: bits baixos 8 do F-num)" + + #: src/engine/sysDef.cpp:673 + msgid "" + "3xyy: Set fixed frequency F-num of operator 4 (x: high 2 bits from C to F; " + "y: low 8 bits of F-num)" + msgstr "" +-"3xyy: Definir Número-Frequência da frequência fixa do operador 4 (x: 2 bits " +-"superiores de C a F; y: 8 bits inferiores)" ++"3xyy: Definir F-num fixo de frequência do operador 4 (x: bits altos 2 de C a " ++"F; y: bits baixos 8 do F-num)" + + #: src/engine/sysDef.cpp:681 + msgid "11xx: Set resonance (0 to FF)" +@@ -718,34 +713,33 @@ + msgid "" + "12xx: Set filter mode (bit 0: low pass; bit 1: band pass; bit 2: high pass)" + msgstr "" +-"12xx: Definir modo de filtro (bit 0: passa baixa; bit 1: passa banda; bit 2: " +-"passa alta)" ++"12xx: Definir modo de filtro (bit 0: passa-baixa; bit 1: passa-banda; bit 2: " ++"passa-alta)" + + #: src/engine/sysDef.cpp:683 + msgid "13xx: Disable envelope reset for this channel (1 disables; 0 enables)" + msgstr "" +-"13xx: Desabilitar reinício do envelope para este canal (1 desabilita; 0 " +-"habilita)" ++"13xx: Desativar reset de envelope para este canal (1 desativa; 0 habilita)" + + #: src/engine/sysDef.cpp:684 + msgid "14xy: Reset cutoff (x: on new note; y: now)" +-msgstr "14xy: Redefinir ponto de corte (x: em nova nota; y: agora)" ++msgstr "14xy: Resetar corte (x: na nova nota; y: agora)" + + #: src/engine/sysDef.cpp:685 + msgid "15xy: Reset pulse width (x: on new note; y: now)" +-msgstr "15xy: Redefinir largura de pulso (x: em nova nota; y: agora)" ++msgstr "15xy: Resetar largura de pulso (x: na nova nota; y: agora)" + + #: src/engine/sysDef.cpp:686 + msgid "16xy: Change other parameters" +-msgstr "16xy: Alterar outros parâmetros" ++msgstr "16xy: Mudar outros parâmetros" + + #: src/engine/sysDef.cpp:689 src/engine/sysDef.cpp:1733 + msgid "4xxx: Set cutoff (0 to FFF)" +-msgstr "4xxx: Definir ponto de corte (0 a FFF)" ++msgstr "4xxx: Definir corte (0 a FFF)" + + #: src/engine/sysDef.cpp:697 + msgid "Yamaha YMU759 (MA-2)" +-msgstr "" ++msgstr "Yamaha YMU759 (MA-2)" + + #: src/engine/sysDef.cpp:698 + msgid "" +@@ -753,8 +747,9 @@ + "as proprietary as it is, it passed away after losing to MP3 in the mobile " + "hardware battle." + msgstr "" +-"um chip que encontrou seu lugar dentro de celulares nos anos 2000.\n" +-"proprietário como era, ele faleceu após perder para o MP3 na batalha de " ++"um chip que encontrou seu caminho dentro de telefones celulares nos anos " ++"2000.\n" ++"tão proprietário quanto é, ele faleceu após perder para o MP3 na batalha de " + "hardware móvel." + + #: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +@@ -972,15 +967,15 @@ + + #: src/engine/sysDef.cpp:706 + msgid "Sega Genesis/Mega Drive" +-msgstr "" ++msgstr "Sega Genesis/Mega Drive" + + #: src/engine/sysDef.cpp:712 + msgid "Sega Genesis Extended Channel 3" +-msgstr "Sega Mega Drive com Canal 3 Estendido" ++msgstr "Sega Genesis Canal 3 Extendido" + + #: src/engine/sysDef.cpp:718 src/gui/sysConf.cpp:158 + msgid "TI SN76489" +-msgstr "" ++msgstr "TI SN76489" + + #: src/engine/sysDef.cpp:719 + msgid "" +@@ -994,19 +989,19 @@ + #: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 + #: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 + msgid "Square 1" +-msgstr "Quadrado 1" ++msgstr "Quadrada 1" + + #: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 + #: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 + #: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 + msgid "Square 2" +-msgstr "Quadrado 2" ++msgstr "Quadrada 2" + + #: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 + #: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 + #: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 + msgid "Square 3" +-msgstr "Quadrado 3" ++msgstr "Quadrada 3" + + #: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:739 + #: src/engine/sysDef.cpp:773 src/engine/sysDef.cpp:955 +@@ -1026,7 +1021,7 @@ + + #: src/engine/sysDef.cpp:731 + msgid "Sega Master System + FM Expansion" +-msgstr "" ++msgstr "Sega Master System + FM Expansion" + + #: src/engine/sysDef.cpp:737 src/gui/settings.cpp:3972 + msgid "Game Boy" +@@ -1034,17 +1029,17 @@ + + #: src/engine/sysDef.cpp:738 + msgid "the most popular portable game console of the era." +-msgstr "o console de games portátil mais popular da sua época." ++msgstr "o console de jogos portátil mais popular da época" + + #: src/engine/sysDef.cpp:739 src/engine/sysDef.cpp:773 + #: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:2100 + msgid "Pulse 1" +-msgstr "Pulso 1" ++msgstr "Pulse 1" + + #: src/engine/sysDef.cpp:739 src/engine/sysDef.cpp:773 + #: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:2100 + msgid "Pulse 2" +-msgstr "Pulso 2" ++msgstr "Pulse 2" + + #: src/engine/sysDef.cpp:739 src/gui/settings.cpp:3877 + #: src/gui/guiConst.cpp:1395 src/gui/insEdit.cpp:6652 +@@ -1061,21 +1056,20 @@ + + #: src/engine/sysDef.cpp:748 + msgid "13xy: Setup sweep (x: time; y: shift)" +-msgstr "13xy: Configurar sweep (x: tempo; y: deslocamento)" ++msgstr "13xy: Configurar varredura (x: tempo; y: deslocamento)" + + #: src/engine/sysDef.cpp:749 + msgid "14xx: Set sweep direction (0: up; 1: down)" +-msgstr "14xx: Definir direção do sweep (0: para cima; 1: para baixo)" ++msgstr "14xx: Definir direção de varredura (0: para cima; 1: para baixo)" + + #: src/engine/sysDef.cpp:754 + msgid "PC Engine/TurboGrafx-16" +-msgstr "" ++msgstr "PC Engine/TurboGrafx-16" + + #: src/engine/sysDef.cpp:755 + msgid "an '80s game console with a wavetable sound chip, popular in Japan." + msgstr "" +-"um console de games dos anos 80 com um chip de som wavetable, popular no " +-"Japão." ++"um console de jogos dos anos 80 com chip de som wavetable, popular no Japão." + + #: src/engine/sysDef.cpp:763 src/engine/sysDef.cpp:1001 + #: src/engine/sysDef.cpp:1793 +@@ -2350,8 +2344,8 @@ + "12xy: Setup envelope (x: enabled/loop (1: enable, 3: enable+loop); y: speed/" + "direction (0-7: down, 8-F: up))" + msgstr "" +-"12xy: Definir envelope (x: habilitado/repetir (1: habilitado, 3: habilitado" +-"+repetir); y: velocidade/direção (0-7: para baixo, 8-F: para cima))" ++"12xy: Definir envelope (x: habilitado/repetir (1: habilitado, 3: " ++"habilitado+repetir); y: velocidade/direção (0-7: para baixo, 8-F: para cima))" + + #: src/engine/sysDef.cpp:1323 + msgid "13xy: Setup sweep (x: speed; y: shift; channel 5 only)" +@@ -20080,3 +20074,10 @@ + + #~ msgid "WA" + #~ msgstr "ON" ++ ++#~ msgid "" ++#~ "2Cxy: Automatic noise frequency (x: mode (0: disable, 1: freq, 2: freq + " ++#~ "OR mask); y: offset" ++#~ msgstr "" ++#~ "2Cxy: Frequência de ruído automática (x: modo (0: desativar, 1: freq, 2: " ++#~ "freq + máscara OR); y: compensação" diff --git a/po/staging/pt_BR-diggo.po b/po/staging/pt_BR-diggo.po new file mode 100644 index 000000000..726e6221e --- /dev/null +++ b/po/staging/pt_BR-diggo.po @@ -0,0 +1,984 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: furnace 0.6.3\n" +"Last-Translator: Diggo\n" +"Language-Team: none\n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: src/engine/sysDef.cpp:428 src/engine/sysDef.cpp:441 +msgid "20xx: Set channel mode (bit 0: square; bit 1: noise; bit 2: envelope)" +msgstr "20xx: Definir modo de canal (bit 0: quadrado; bit 1: ruído; bit 2: envelope)" + +#: src/engine/sysDef.cpp:429 +msgid "21xx: Set noise frequency (0 to 1F)" +msgstr "21xx: Definir frequência de ruído (0 a 1F)" + +#: src/engine/sysDef.cpp:430 src/engine/sysDef.cpp:443 +msgid "22xy: Set envelope mode (x: shape, y: enable for this channel)" +msgstr "22xy: Definir modo de envelope (x: forma, y: habilitar para este canal)" + +#: src/engine/sysDef.cpp:431 src/engine/sysDef.cpp:444 +msgid "23xx: Set envelope period low byte" +msgstr "23xx: Definir byte baixo do período de envelope" + +#: src/engine/sysDef.cpp:432 src/engine/sysDef.cpp:445 +msgid "24xx: Set envelope period high byte" +msgstr "24xx: Definir byte alto do período de envelope" + +#: src/engine/sysDef.cpp:433 src/engine/sysDef.cpp:446 +#: src/engine/sysDef.cpp:1599 +msgid "25xx: Envelope slide up" +msgstr "25xx: Deslizar envelope para cima" + +#: src/engine/sysDef.cpp:434 src/engine/sysDef.cpp:447 +#: src/engine/sysDef.cpp:1600 +msgid "26xx: Envelope slide down" +msgstr "26xx: Deslizar envelope para baixo" + +#: src/engine/sysDef.cpp:435 src/engine/sysDef.cpp:448 +#: src/engine/sysDef.cpp:1601 +msgid "29xy: Set auto-envelope (x: numerator; y: denominator)" +msgstr "29xy: Definir auto-envelope (x: numerador; y: denominador)" + +#: src/engine/sysDef.cpp:436 src/engine/sysDef.cpp:449 +msgid "2Exx: Write to I/O port A" +msgstr "2Exx: Escrever no porto de E/S A" + +#: src/engine/sysDef.cpp:437 src/engine/sysDef.cpp:450 +msgid "2Fxx: Write to I/O port B" +msgstr "2Fxx: Escrever no porto de E/S B" + +#: src/engine/sysDef.cpp:442 +msgid "21xx: Set noise frequency (0 to FF)" +msgstr "21xx: Definir frequência de ruído (0 a FF)" + +#: src/engine/sysDef.cpp:451 +msgid "12xx: Set duty cycle (0 to 8)" +msgstr "12xx: Definir ciclo de trabalho (0 a 8)" + +#: src/engine/sysDef.cpp:453 +msgid "27xx: Set noise AND mask" +msgstr "27xx: Definir máscara AND de ruído" + +#: src/engine/sysDef.cpp:454 +msgid "28xx: Set noise OR mask" +msgstr "28xx: Definir máscara OR de ruído" + +#: src/engine/sysDef.cpp:455 +msgid "" +"2Cxy: Automatic noise frequency (x: mode (0: disable, 1: freq, 2: freq + OR " +"mask); y: offset" +msgstr "" +"2Cxy: Frequência de ruído automática (x: modo (0: desativar, 1: freq, 2: freq + máscara OR); y: compensação" + +#: src/engine/sysDef.cpp:456 +msgid "2Dxx: NOT TO BE EMPLOYED BY THE COMPOSER" +msgstr "2Dxx: NÃO DEVE SER UTILIZADO PELO COMPOSITOR" + +#: src/engine/sysDef.cpp:460 +msgid "30xx: Toggle hard envelope reset on new notes" +msgstr "30xx: Alternar reinício rígido de envelope em novas notas" + +#: src/engine/sysDef.cpp:465 +msgid "18xx: Toggle extended channel 3 mode" +msgstr "18xx: Alternar modo de canal estendido 3" + +#: src/engine/sysDef.cpp:470 src/engine/sysDef.cpp:766 +#: src/engine/sysDef.cpp:1025 src/engine/sysDef.cpp:1272 +#: src/engine/sysDef.cpp:1593 +msgid "17xx: Toggle PCM mode (LEGACY)" +msgstr "17xx: Alternar modo PCM (LEGADO)" + +#: src/engine/sysDef.cpp:471 src/engine/sysDef.cpp:1653 +#: src/engine/sysDef.cpp:1963 +msgid "DFxx: Set sample playback direction (0: normal; 1: reverse)" +msgstr "DFxx: Definir direção de reprodução da amostra (0: normal; 1: reverso)" + +#: src/engine/sysDef.cpp:476 +msgid "18xx: Toggle drums mode (1: enabled; 0: disabled)" +msgstr "18xx: Alternar modo de bateria (1: habilitado; 0: desabilitado)" + +#: src/engine/sysDef.cpp:480 src/engine/sysDef.cpp:554 +#: src/engine/sysDef.cpp:575 +msgid "11xx: Set feedback (0 to 7)" +msgstr "11xx: Definir feedback (0 a 7)" + +#: src/engine/sysDef.cpp:481 +msgid "12xx: Set level of operator 1 (0 highest, 7F lowest)" +msgstr "12xx: Definir nível do operador 1 (0 mais alto, 7F mais baixo)" + +#: src/engine/sysDef.cpp:482 +msgid "13xx: Set level of operator 2 (0 highest, 7F lowest)" +msgstr "13xx: Definir nível do operador 2 (0 mais alto, 7F mais baixo)" + +#: src/engine/sysDef.cpp:483 +msgid "14xx: Set level of operator 3 (0 highest, 7F lowest)" +msgstr "14xx: Definir nível do operador 3 (0 mais alto, 7F mais baixo)" + +#: src/engine/sysDef.cpp:484 +msgid "15xx: Set level of operator 4 (0 highest, 7F lowest)" +msgstr "15xx: Definir nível do operador 4 (0 mais alto, 7F mais baixo)" + +#: src/engine/sysDef.cpp:485 src/engine/sysDef.cpp:580 +#: src/engine/sysDef.cpp:635 +msgid "16xy: Set operator multiplier (x: operator from 1 to 4; y: multiplier)" +msgstr "16xy: Definir multiplicador do operador (x: operador de 1 a 4; y: multiplicador)" + +#: src/engine/sysDef.cpp:486 +msgid "19xx: Set attack of all operators (0 to 1F)" +msgstr "19xx: Definir ataque de todos os operadores (0 a 1F)" + +#: src/engine/sysDef.cpp:487 +msgid "1Axx: Set attack of operator 1 (0 to 1F)" +msgstr "1Axx: Definir ataque do operador 1 (0 a 1F)" + +#: src/engine/sysDef.cpp:488 +msgid "1Bxx: Set attack of operator 2 (0 to 1F)" +msgstr "1Bxx: Definir ataque do operador 2 (0 a 1F)" + +#: src/engine/sysDef.cpp:489 +msgid "1Cxx: Set attack of operator 3 (0 to 1F)" +msgstr "1Cxx: Definir ataque do operador 3 (0 a 1F)" + +#: src/engine/sysDef.cpp:490 +msgid "1Dxx: Set attack of operator 4 (0 to 1F)" +msgstr "1Dxx: Definir ataque do operador 4 (0 a 1F)" + +#: src/engine/sysDef.cpp:491 src/engine/sysDef.cpp:588 +#: src/engine/sysDef.cpp:656 +msgid "50xy: Set AM (x: operator from 1 to 4 (0 for all ops); y: AM)" +msgstr "50xy: Definir AM (x: operador de 1 a 4 (0 para todos os ops); y: AM)" + +#: src/engine/sysDef.cpp:492 src/engine/sysDef.cpp:589 +#: src/engine/sysDef.cpp:657 +msgid "" +"51xy: Set sustain level (x: operator from 1 to 4 (0 for all ops); y: sustain)" +msgstr "" +"51xy: Definir nível de sustain (x: operador de 1 a 4 (0 para todos os ops); y: sustain)" + +#: src/engine/sysDef.cpp:493 src/engine/sysDef.cpp:590 +#: src/engine/sysDef.cpp:658 +msgid "52xy: Set release (x: operator from 1 to 4 (0 for all ops); y: release)" +msgstr "52xy: Definir release (x: operador de 1 a 4 (0 para todos os ops); y: release)" + +#: src/engine/sysDef.cpp:494 +msgid "" +"53xy: Set detune (x: operator from 1 to 4 (0 for all ops); y: detune where 3 " +"is center)" +msgstr "" +"53xy: Definir detune (x: operador de 1 a 4 (0 para todos os ops); y: detune onde 3 é o centro)" + +#: src/engine/sysDef.cpp:495 src/engine/sysDef.cpp:592 +#: src/engine/sysDef.cpp:660 +msgid "" +"54xy: Set envelope scale (x: operator from 1 to 4 (0 for all ops); y: scale " +"from 0 to 3)" +msgstr "" +"54xy: Definir escala de envelope (x: operador de 1 a 4 (0 para todos os ops); y: escala de 0 a 3)" + +#: src/engine/sysDef.cpp:496 +msgid "56xx: Set decay of all operators (0 to 1F)" +msgstr "56xx: Definir decay de todos os operadores (0 a 1F)" + +#: src/engine/sysDef.cpp:497 +msgid "57xx: Set decay of operator 1 (0 to 1F)" +msgstr "57xx: Definir decay do operador 1 (0 a 1F)" + +#: src/engine/sysDef.cpp:498 +msgid "58xx: Set decay of operator 2 (0 to 1F)" +msgstr "58xx: Definir decay do operador 2 (0 a 1F)" + +#: src/engine/sysDef.cpp:499 +msgid "59xx: Set decay of operator 3 (0 to 1F)" +msgstr "59xx: Definir decay do operador 3 (0 a 1F)" + +#: src/engine/sysDef.cpp:500 +msgid "5Axx: Set decay of operator 4 (0 to 1F)" +msgstr "5Axx: Definir decay do operador 4 (0 a 1F)" + +#: src/engine/sysDef.cpp:501 +msgid "5Bxx: Set decay 2 of all operators (0 to 1F)" +msgstr "5Bxx: Definir decay 2 de todos os operadores (0 a 1F)" + +#: src/engine/sysDef.cpp:502 +msgid "5Cxx: Set decay 2 of operator 1 (0 to 1F)" +msgstr "5Cxx: Definir decay 2 do operador 1 (0 a 1F)" + +#: src/engine/sysDef.cpp:503 +msgid "5Dxx: Set decay 2 of operator 2 (0 to 1F)" +msgstr "5Dxx: Definir decay 2 do operador 2 (0 a 1F)" + +#: src/engine/sysDef.cpp:504 +msgid "5Exx: Set decay 2 of operator 3 (0 to 1F)" +msgstr "5Exx: Definir decay 2 do operador 3 (0 a 1F)" + +#: src/engine/sysDef.cpp:505 +msgid "5Fxx: Set decay 2 of operator 4 (0 to 1F)" +msgstr "5Fxx: Definir decay 2 do operador 4 (0 a 1F)" + +#: src/engine/sysDef.cpp:510 +msgid "10xx: Set noise frequency (xx: value; 0 disables noise)" +msgstr "10xx: Definir frequência de ruído (xx: valor; 0 desabilita o ruído)" + +#: src/engine/sysDef.cpp:511 +msgid "17xx: Set LFO speed" +msgstr "17xx: Definir velocidade do LFO" + +#: src/engine/sysDef.cpp:512 +msgid "18xx: Set LFO waveform (0 saw, 1 square, 2 triangle, 3 noise)" +msgstr "18xx: Definir forma de onda do LFO (0 serra, 1 quadrada, 2 triangular, 3 ruído)" + +#: src/engine/sysDef.cpp:513 +msgid "1Exx: Set AM depth (0 to 7F)" +msgstr "1Exx: Definir profundidade de AM (0 a 7F)" + +#: src/engine/sysDef.cpp:514 +msgid "1Fxx: Set PM depth (0 to 7F)" +msgstr "1Fxx: Definir profundidade de PM (0 a 7F)" + +#: src/engine/sysDef.cpp:515 +msgid "" +"55xy: Set detune 2 (x: operator from 1 to 4 (0 for all ops); y: detune from " +"0 to 3)" +msgstr "" +"55xy: Definir detune 2 (x: operador de 1 a 4 (0 para todos os ops); y: detune de 0 a 3)" + +#: src/engine/sysDef.cpp:520 +msgid "24xx: Set LFO 2 speed" +msgstr "24xx: Definir velocidade do LFO 2" + +#: src/engine/sysDef.cpp:521 +msgid "25xx: Set LFO 2 waveform (0 saw, 1 square, 2 triangle, 3 noise)" +msgstr "25xx: Definir forma de onda do LFO 2 (0 serra, 1 quadrada, 2 triangular, 3 ruído)" + +#: src/engine/sysDef.cpp:522 +msgid "26xx: Set AM 2 depth (0 to 7F)" +msgstr "26xx: Definir profundidade de AM 2 (0 a 7F)" + +#: src/engine/sysDef.cpp:523 +msgid "27xx: Set PM 2 depth (0 to 7F)" +msgstr "27xx: Definir profundidade de PM 2 (0 a 7F)" + +#: src/engine/sysDef.cpp:524 +msgid "" +"28xy: Set reverb (x: operator from 1 to 4 (0 for all ops); y: reverb from 0 " +"to 7)" +msgstr "" +"28xy: Definir reverb (x: operador de 1 a 4 (0 para todos os ops); y: reverb de 0 a 7)" + +#: src/engine/sysDef.cpp:525 src/engine/sysDef.cpp:650 +msgid "" +"2Axy: Set waveform (x: operator from 1 to 4 (0 for all ops); y: waveform " +"from 0 to 7)" +msgstr "" +"2Axy: Definir forma de onda (x: operador de 1 a 4 (0 para todos os ops); y: forma de onda de 0 a 7)" + +#: src/engine/sysDef.cpp:526 +msgid "" +"2Bxy: Set envelope generator shift (x: operator from 1 to 4 (0 for all ops); " +"y: shift from 0 to 3)" +msgstr "" +"2Bxy: Definir deslocamento do gerador de envelope (x: operador de 1 a 4 (0 para todos os ops); y: deslocamento de 0 a 3)" + +#: src/engine/sysDef.cpp:527 +msgid "" +"2Cxy: Set fine multiplier (x: operator from 1 to 4 (0 for all ops); y: fine)" +msgstr "" +"2Cxy: Definir multiplicador fino (x: operador de 1 a 4 (0 para todos os ops); y: fino)" + +#: src/engine/sysDef.cpp:530 +msgid "" +"3xyy: Set fixed frequency of operator 1 (x: octave from 0 to 7; y: frequency)" +msgstr "" +"3xyy: Definir frequência fixa do operador 1 (x: oitava de 0 a 7; y: frequência)" + +#: src/engine/sysDef.cpp:531 +msgid "" +"3xyy: Set fixed frequency of operator 2 (x: octave from 8 to F; y: frequency)" +msgstr "" +"3xyy: Definir frequência fixa do operador 2 (x: oitava de 8 a F; y: frequência)" + +#: src/engine/sysDef.cpp:532 +msgid "" +"4xyy: Set fixed frequency of operator 3 (x: octave from 0 to 7; y: frequency)" +msgstr "" +"4xyy: Definir frequência fixa do operador 3 (x: oitava de 0 a 7; y: frequência)" + +#: src/engine/sysDef.cpp:533 +msgid "" +"4xyy: Set fixed frequency of operator 4 (x: octave from 8 to F; y: frequency)" +msgstr "" +"4xyy: Definir frequência fixa do operador 4 (x: oitava de 8 a F; y: frequência)" + +#: src/engine/sysDef.cpp:540 +msgid "10xy: Setup LFO (x: enable; y: speed)" +msgstr "10xy: Configurar LFO (x: habilitar; y: velocidade)" + +#: src/engine/sysDef.cpp:541 +msgid "" +"55xy: Set SSG envelope (x: operator from 1 to 4 (0 for all ops); y: 0-7 on, " +"8 off)" +msgstr "" +"55xy: Definir envelope SSG (x: operador de 1 a 4 (0 para todos os ops); y: 0-7 ligado, 8 desligado)" + +#: src/engine/sysDef.cpp:549 +msgid "1Fxx: Set ADPCM-A global volume (0 to 3F)" +msgstr "1Fxx: Definir volume global ADPCM-A (0 a 3F)" + +#: src/engine/sysDef.cpp:553 +msgid "10xx: Set patch (0 to F)" +msgstr "10xx: Definir patch (0 a F)" + +#: src/engine/sysDef.cpp:555 src/engine/sysDef.cpp:576 +#: src/engine/sysDef.cpp:631 +msgid "12xx: Set level of operator 1 (0 highest, 3F lowest)" +msgstr "12xx: Definir nível do operador 1 (0 mais alto, 3F mais baixo)" + +#: src/engine/sysDef.cpp:556 src/engine/sysDef.cpp:577 +#: src/engine/sysDef.cpp:632 +msgid "13xx: Set level of operator 2 (0 highest, 3F lowest)" +msgstr "13xx: Definir nível do operador 2 (0 mais alto, 3F mais baixo)" + +#: src/engine/sysDef.cpp:557 +msgid "16xy: Set operator multiplier (x: operator from 1 to 2; y: multiplier)" +msgstr "16xy: Definir multiplicador do operador (x: operador de 1 a 2; y: multiplicador)" + +#: src/engine/sysDef.cpp:558 src/engine/sysDef.cpp:582 +#: src/engine/sysDef.cpp:637 +msgid "19xx: Set attack of all operators (0 to F)" +msgstr "19xx: Definir ataque de todos os operadores (0 a F)" + +#: src/engine/sysDef.cpp:559 src/engine/sysDef.cpp:583 +#: src/engine/sysDef.cpp:638 +msgid "1Axx: Set attack of operator 1 (0 to F)" +msgstr "1Axx: Definir ataque do operador 1 (0 a F)" + +#: src/engine/sysDef.cpp:560 src/engine/sysDef.cpp:584 +#: src/engine/sysDef.cpp:639 +msgid "1Bxx: Set attack of operator 2 (0 to F)" +msgstr "1Bxx: Definir ataque do operador 2 (0 a F)" + +#: src/engine/sysDef.cpp:561 +msgid "50xy: Set AM (x: operator from 1 to 2 (0 for all ops); y: AM)" +msgstr "50xy: Definir AM (x: operador de 1 a 2 (0 para todos os ops); y: AM)" + +#: src/engine/sysDef.cpp:562 +msgid "" +"51xy: Set sustain level (x: operator from 1 to 2 (0 for all ops); y: sustain)" +msgstr "" +"51xy: Definir nível de sustain (x: operador de 1 a 2 (0 para todos os ops); y: sustain)" + +#: src/engine/sysDef.cpp:563 +msgid "52xy: Set release (x: operator from 1 to 2 (0 for all ops); y: release)" +msgstr "52xy: Definir release (x: operador de 1 a 2 (0 para todos os ops); y: release)" + +#: src/engine/sysDef.cpp:564 +msgid "53xy: Set vibrato (x: operator from 1 to 2 (0 for all ops); y: enabled)" +msgstr "53xy: Definir vibrato (x: operador de 1 a 2 (0 para todos os ops); y: ativado)" + +#: src/engine/sysDef.cpp:565 +msgid "" +"54xy: Set envelope scale (x: operator from 1 to 2 (0 for all ops); y: scale " +"from 0 to 3)" +msgstr "" +"54xy: Definir escala de envelope (x: operador de 1 a 2 (0 para todos os ops); y: escala de 0 a 3)" + +#: src/engine/sysDef.cpp:566 +msgid "" +"55xy: Set envelope sustain (x: operator from 1 to 2 (0 for all ops); y: " +"enabled)" +msgstr "" +"55xy: Definir sustain de envelope (x: operador de 1 a 2 (0 para todos os ops); y: ativado)" + +#: src/engine/sysDef.cpp:567 src/engine/sysDef.cpp:594 +#: src/engine/sysDef.cpp:662 +msgid "56xx: Set decay of all operators (0 to F)" +msgstr "56xx: Definir decay de todos os operadores (0 a F)" + +#: src/engine/sysDef.cpp:568 src/engine/sysDef.cpp:595 +#: src/engine/sysDef.cpp:663 +msgid "57xx: Set decay of operator 1 (0 to F)" +msgstr "57xx: Definir decay do operador 1 (0 a F)" + +#: src/engine/sysDef.cpp:569 src/engine/sysDef.cpp:596 +#: src/engine/sysDef.cpp:664 +msgid "58xx: Set decay of operator 2 (0 to F)" +msgstr "58xx: Definir decay do operador 2 (0 a F)" + +#: src/engine/sysDef.cpp:570 +msgid "" +"5Bxy: Set whether key will scale envelope (x: operator from 1 to 2 (0 for " +"all ops); y: enabled)" +msgstr "" +"5Bxy: Definir se a tecla irá escalar o envelope (x: operador de 1 a 2 (0 para todos os ops); y: ativado)" + +#: src/engine/sysDef.cpp:574 +msgid "10xx: Set global AM depth (0: 1dB, 1: 4.8dB)" +msgstr "10xx: Definir profundidade global de AM (0: 1dB, 1: 4.8dB)" + +#: src/engine/sysDef.cpp:578 src/engine/sysDef.cpp:633 +msgid "14xx: Set level of operator 3 (0 highest, 3F lowest)" +msgstr "14xx: Definir nível do operador 3 (0 mais alto, 3F mais baixo)" + +#: src/engine/sysDef.cpp:579 src/engine/sysDef.cpp:634 +msgid "15xx: Set level of operator 4 (0 highest, 3F lowest)" +msgstr "15xx: Definir nível do operador 4 (0 mais alto, 3F mais baixo)" + +#: src/engine/sysDef.cpp:581 +msgid "17xx: Set global vibrato depth (0: normal, 1: double)" +msgstr "17xx: Definir profundidade global de vibrato (0: normal, 1: dobrado)" + +#: src/engine/sysDef.cpp:585 src/engine/sysDef.cpp:640 +msgid "1Cxx: Set attack of operator 3 (0 to F)" +msgstr "1Cxx: Definir ataque do operador 3 (0 a F)" + +#: src/engine/sysDef.cpp:586 src/engine/sysDef.cpp:641 +msgid "1Dxx: Set attack of operator 4 (0 to F)" +msgstr "1Dxx: Definir ataque do operador 4 (0 a F)" + +#: src/engine/sysDef.cpp:587 +msgid "" +"2Axy: Set waveform (x: operator from 1 to 4 (0 for all ops); y: waveform " +"from 0 to 3 in OPL2 and 0 to 7 in OPL3)" +msgstr "" +"2Axy: Definir forma de onda (x: operador de 1 a 4 (0 para todos os ops); y: forma de onda de 0 a 3 no OPL2 e de 0 a 7 no OPL3)" + +#: src/engine/sysDef.cpp:591 src/engine/sysDef.cpp:659 +msgid "53xy: Set vibrato (x: operator from 1 to 4 (0 for all ops); y: enabled)" +msgstr "53xy: Definir vibrato (x: operador de 1 a 4 (0 para todos os ops); y: ativado)" + +#: src/engine/sysDef.cpp:593 src/engine/sysDef.cpp:661 +msgid "" +"55xy: Set envelope sustain (x: operator from 1 to 4 (0 for all ops); y: " +"enabled)" +msgstr "" +"55xy: Definir sustain de envelope (x: operador de 1 a 4 (0 para todos os ops); y: ativado)" + +#: src/engine/sysDef.cpp:597 src/engine/sysDef.cpp:665 +msgid "59xx: Set decay of operator 3 (0 to F)" +msgstr "59xx: Definir decay do operador 3 (0 a F)" + +#: src/engine/sysDef.cpp:598 src/engine/sysDef.cpp:666 +msgid "5Axx: Set decay of operator 4 (0 to F)" +msgstr "5Axx: Definir decay do operador 4 (0 a F)" + +#: src/engine/sysDef.cpp:599 src/engine/sysDef.cpp:667 +msgid "" +"5Bxy: Set whether key will scale envelope (x: operator from 1 to 4 (0 for " +"all ops); y: enabled)" +msgstr "" +"5Bxy: Definir se a tecla irá escalar o envelope (x: operador de 1 a 4 (0 para todos os ops); y: ativado)" + +#: src/engine/sysDef.cpp:603 src/engine/sysDef.cpp:680 +msgid "" +"10xx: Set waveform (bit 0: triangle; bit 1: saw; bit 2: pulse; bit 3: noise)" +msgstr "10xx: Definir forma de onda (bit 0: triângulo; bit 1: dente de serra; bit 2: pulso; bit 3: ruído)" + +#: src/engine/sysDef.cpp:604 +msgid "11xx: Set coarse cutoff (not recommended; use 4xxx instead)" +msgstr "11xx: Definir corte de agudos (não recomendado; use 4xxx em vez disso)" + +#: src/engine/sysDef.cpp:605 +msgid "12xx: Set coarse pulse width (not recommended; use 3xxx instead)" +msgstr "12xx: Definir largura de pulso (não recomendado; use 3xxx em vez disso)" + +#: src/engine/sysDef.cpp:606 +msgid "13xx: Set resonance (0 to F)" +msgstr "13xx: Definir ressonância (0 a F)" + +#: src/engine/sysDef.cpp:607 +msgid "" +"14xx: Set filter mode (bit 0: low pass; bit 1: band pass; bit 2: high pass)" +msgstr "14xx: Definir modo de filtro (bit 0: low pass; bit 1: band pass; bit 2: high pass)" + +#: src/engine/sysDef.cpp:608 +msgid "15xx: Set envelope reset time" +msgstr "15xx: Definir tempo de reset do envelope" + +#: src/engine/sysDef.cpp:609 +msgid "1Axx: Disable envelope reset for this channel (1 disables; 0 enables)" +msgstr "1Axx: Desativar reset do envelope para este canal (1 desabilita; 0 habilita)" + +#: src/engine/sysDef.cpp:610 +msgid "1Bxy: Reset cutoff (x: on new note; y: now)" +msgstr "1Bxy: Resetar corte (x: na nova nota; y: agora)" + +#: src/engine/sysDef.cpp:611 +msgid "1Cxy: Reset pulse width (x: on new note; y: now)" +msgstr "1Cxy: Resetar largura de pulso (x: na nova nota; y: agora)" + +#: src/engine/sysDef.cpp:612 +msgid "1Exy: Change other parameters (LEGACY)" +msgstr "1Exy: Mudar outros parâmetros (LEGACY)" + +#: src/engine/sysDef.cpp:613 +msgid "20xy: Set attack/decay (x: attack; y: decay)" +msgstr "20xy: Definir ataque/decaimento (x: ataque; y: decaimento)" + +#: src/engine/sysDef.cpp:614 +msgid "21xy: Set sustain/release (x: sustain; y: release)" +msgstr "21xy: Definir sustentação/liberação (x: sustentação; y: liberação)" + +#: src/engine/sysDef.cpp:616 src/engine/sysDef.cpp:688 +msgid "3xxx: Set pulse width (0 to FFF)" +msgstr "3xxx: Definir largura de pulso (0 a FFF)" + +#: src/engine/sysDef.cpp:617 +msgid "4xxx: Set cutoff (0 to 7FF)" +msgstr "4xxx: Definir corte (0 a 7FF)" + + +#: src/engine/sysDef.cpp:622 src/engine/sysDef.cpp:745 +#: src/engine/sysDef.cpp:762 src/engine/sysDef.cpp:1000 +#: src/engine/sysDef.cpp:1050 src/engine/sysDef.cpp:1268 +#: src/engine/sysDef.cpp:1320 src/engine/sysDef.cpp:1590 +#: src/engine/sysDef.cpp:1788 src/engine/sysDef.cpp:1792 +#: src/engine/sysDef.cpp:1893 src/engine/sysDef.cpp:2063 +#: src/engine/sysDef.cpp:2077 +msgid "10xx: Set waveform" +msgstr "10xx: Definir onda" + +#: src/engine/sysDef.cpp:626 +msgid "20xx: Set PCM frequency" +msgstr "20xx: Definir frequência do PCM" + +#: src/engine/sysDef.cpp:630 +msgid "" +"10xy: Set AM depth (x: operator from 1 to 4 (0 for all ops); y: depth (0: " +"1dB, 1: 4.8dB))" +msgstr "10xy: Definir AM depth (x: operator do 1 para o 4 (0 para todos ops); y: depth (0: " +"1dB, 1: 4.8dB))" + +#: src/engine/sysDef.cpp:636 +msgid "" +"17xy: Set vibrato depth (x: operator from 1 to 4 (0 for all ops); y: depth " +"(0: normal, 1: double))" +msgstr "17xy: Definir vibrato depth (x: operator do 1 para o 4 (0 para todos ops); y: depth " +"(0: normal, 1: dobrado))" + +#: src/engine/sysDef.cpp:642 +msgid "20xy: Set panning of operator 1 (x: left; y: right)" +msgstr "20xy: Definir panorama do operador 1 (x: esquerda; y: direita)" + +#: src/engine/sysDef.cpp:643 +msgid "21xy: Set panning of operator 2 (x: left; y: right)" +msgstr "21xy: Definir panorama do operador 2 (x: esquerda; y: direita)" + +#: src/engine/sysDef.cpp:644 +msgid "22xy: Set panning of operator 3 (x: left; y: right)" +msgstr "22xy: Definir panorama do operador 3 (x: esquerda; y: direita)" + +#: src/engine/sysDef.cpp:645 +msgid "23xy: Set panning of operator 4 (x: left; y: right)" +msgstr "23xy: Definir panorama do operador 4 (x: esquerda; y: direita)" + +#: src/engine/sysDef.cpp:646 +msgid "" +"24xy: Set output level register (x: operator from 1 to 4 (0 for all ops); y: " +"level from 0 to 7)" +msgstr "24xy: Definir registro de nível de saída (x: operador de 1 a 4 (0 para todas as operações); y: nível de 0 a 7)" + +#: src/engine/sysDef.cpp:647 +msgid "" +"25xy: Set modulation input level (x: operator from 1 to 4 (0 for all ops); " +"y: level from 0 to 7)" +msgstr "25xy: Definir nível de entrada de modulação (x: operador de 1 a 4 (0 para todas as operações); y: nível de 0 a 7)" + +#: src/engine/sysDef.cpp:648 +msgid "" +"26xy: Set envelope delay (x: operator from 1 to 4 (0 for all ops); y: delay " +"from 0 to 7)" +msgstr "26xy: Definir atraso de envelope (x: operador de 1 a 4 (0 para todas as operações); y: atraso de 0 a 7)" + +#: src/engine/sysDef.cpp:649 +msgid "27xx: Set noise mode for operator 4 (x: mode from 0 to 3)" +msgstr "27xx: Definir modo de ruído para o operador 4 (x: modo de 0 a 3)" + +#: src/engine/sysDef.cpp:651 +msgid "" +"2Fxy: Set fixed frequency block (x: operator from 1 to 4; y: octave from 0 " +"to 7)" +msgstr "2Fxy: Definir bloco de frequência fixa (x: operador de 1 a 4; y: oitava de 0 a 7)" + +#: src/engine/sysDef.cpp:652 +msgid "40xx: Set detune of operator 1 (80: center)" +msgstr "40xx: Definir desafinação do operador 1 (80: centro)" + +#: src/engine/sysDef.cpp:653 +msgid "41xx: Set detune of operator 2 (80: center)" +msgstr "41xx: Definir desafinação do operador 2 (80: centro)" + +#: src/engine/sysDef.cpp:654 +msgid "42xx: Set detune of operator 3 (80: center)" +msgstr "42xx: Definir desafinação do operador 3 (80: centro)" + +#: src/engine/sysDef.cpp:655 +msgid "43xx: Set detune of operator 4 (80: center)" +msgstr "43xx: Definir desafinação do operador 4 (80: centro)" + +#: src/engine/sysDef.cpp:670 +msgid "" +"3xyy: Set fixed frequency F-num of operator 1 (x: high 2 bits from 0 to 3; " +"y: low 8 bits of F-num)" +msgstr "3xyy: Definir F-num fixo de frequência do operador 1 (x: bits altos 2 de 0 a 3; y: bits baixos 8 do F-num)" + +#: src/engine/sysDef.cpp:671 +msgid "" +"3xyy: Set fixed frequency F-num of operator 2 (x: high 2 bits from 4 to 7; " +"y: low 8 bits of F-num)" +msgstr "3xyy: Definir F-num fixo de frequência do operador 2 (x: bits altos 2 de 4 a 7; y: bits baixos 8 do F-num)" + +#: src/engine/sysDef.cpp:672 +msgid "" +"3xyy: Set fixed frequency F-num of operator 3 (x: high 2 bits from 8 to B; " +"y: low 8 bits of F-num)" +msgstr "3xyy: Definir F-num fixo de frequência do operador 3 (x: bits altos 2 de 8 a B; y: bits baixos 8 do F-num)" + +#: src/engine/sysDef.cpp:673 +msgid "" +"3xyy: Set fixed frequency F-num of operator 4 (x: high 2 bits from C to F; " +"y: low 8 bits of F-num)" +msgstr "3xyy: Definir F-num fixo de frequência do operador 4 (x: bits altos 2 de C a F; y: bits baixos 8 do F-num)" + +#: src/engine/sysDef.cpp:681 +msgid "11xx: Set resonance (0 to FF)" +msgstr "11xx: Definir ressonância (0 a FF)" + +#: src/engine/sysDef.cpp:682 +msgid "" +"12xx: Set filter mode (bit 0: low pass; bit 1: band pass; bit 2: high pass)" +msgstr "12xx: Definir modo de filtro (bit 0: passa-baixa; bit 1: passa-banda; bit 2: passa-alta)" + +#: src/engine/sysDef.cpp:683 +msgid "13xx: Disable envelope reset for this channel (1 disables; 0 enables)" +msgstr "13xx: Desativar reset de envelope para este canal (1 desativa; 0 habilita)" + +#: src/engine/sysDef.cpp:684 +msgid "14xy: Reset cutoff (x: on new note; y: now)" +msgstr "14xy: Resetar corte (x: na nova nota; y: agora)" + +#: src/engine/sysDef.cpp:685 +msgid "15xy: Reset pulse width (x: on new note; y: now)" +msgstr "15xy: Resetar largura de pulso (x: na nova nota; y: agora)" + +#: src/engine/sysDef.cpp:686 +msgid "16xy: Change other parameters" +msgstr "16xy: Mudar outros parâmetros" + +#: src/engine/sysDef.cpp:689 src/engine/sysDef.cpp:1733 +msgid "4xxx: Set cutoff (0 to FFF)" +msgstr "4xxx: Definir corte (0 a FFF)" + +#: src/engine/sysDef.cpp:697 +msgid "Yamaha YMU759 (MA-2)" +msgstr "Yamaha YMU759 (MA-2)" + +#: src/engine/sysDef.cpp:698 +msgid "" +"a chip which found its way inside mobile phones in the 2000's.\n" +"as proprietary as it is, it passed away after losing to MP3 in the mobile " +"hardware battle." +msgstr "" +"um chip que encontrou seu caminho dentro de telefones celulares nos anos 2000.\n" +"tão proprietário quanto é, ele faleceu após perder para o MP3 na batalha de hardware móvel." + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:807 src/engine/sysDef.cpp:819 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:915 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1237 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1314 src/engine/sysDef.cpp:1356 +#: src/engine/sysDef.cpp:1396 src/engine/sysDef.cpp:1499 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1572 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1608 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1799 src/engine/sysDef.cpp:1810 +#: src/engine/sysDef.cpp:1821 src/engine/sysDef.cpp:1832 +#: src/engine/sysDef.cpp:1900 src/engine/sysDef.cpp:1910 +#: src/engine/sysDef.cpp:1920 src/engine/sysDef.cpp:1944 +#: src/engine/sysDef.cpp:1957 src/engine/sysDef.cpp:1970 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2037 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2122 +#: src/engine/sysDef.cpp:2138 src/engine/sysDef.cpp:2150 +msgid "Channel 1" +msgstr "Canal 1" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:807 src/engine/sysDef.cpp:819 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:915 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1237 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1314 src/engine/sysDef.cpp:1356 +#: src/engine/sysDef.cpp:1396 src/engine/sysDef.cpp:1499 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1572 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1608 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1799 src/engine/sysDef.cpp:1810 +#: src/engine/sysDef.cpp:1821 src/engine/sysDef.cpp:1832 +#: src/engine/sysDef.cpp:1900 src/engine/sysDef.cpp:1910 +#: src/engine/sysDef.cpp:1920 src/engine/sysDef.cpp:1944 +#: src/engine/sysDef.cpp:1957 src/engine/sysDef.cpp:1970 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2037 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2122 +#: src/engine/sysDef.cpp:2138 src/engine/sysDef.cpp:2150 +msgid "Channel 2" +msgstr "Canal 2" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:807 src/engine/sysDef.cpp:819 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1237 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1314 +#: src/engine/sysDef.cpp:1356 src/engine/sysDef.cpp:1396 +#: src/engine/sysDef.cpp:1499 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1572 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1799 src/engine/sysDef.cpp:1810 +#: src/engine/sysDef.cpp:1821 src/engine/sysDef.cpp:1832 +#: src/engine/sysDef.cpp:1910 src/engine/sysDef.cpp:1944 +#: src/engine/sysDef.cpp:1957 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2037 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +#: src/engine/sysDef.cpp:2122 src/engine/sysDef.cpp:2138 +#: src/engine/sysDef.cpp:2150 +msgid "Channel 3" +msgstr "Canal 3" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1237 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1314 +#: src/engine/sysDef.cpp:1356 src/engine/sysDef.cpp:1396 +#: src/engine/sysDef.cpp:1499 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1572 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1910 +#: src/engine/sysDef.cpp:1944 src/engine/sysDef.cpp:1957 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +#: src/engine/sysDef.cpp:2122 src/engine/sysDef.cpp:2150 +msgid "Channel 4" +msgstr "Canal 4" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1314 +#: src/engine/sysDef.cpp:1356 src/engine/sysDef.cpp:1396 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1572 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1705 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 5" +msgstr "Canal 5" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1356 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 6" +msgstr "Canal 6" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 7" +msgstr "Canal 7" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 8" +msgstr "Canal 8" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 9" +msgstr "Canal 9" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 10" +msgstr "Canal 10" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 11" +msgstr "Canal 11" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 13" +msgstr "Canal 13" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 14" +msgstr "Canal 14" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 15" +msgstr "Canal 15" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 16" +msgstr "Canal 16" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:700 +#: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1767 src/engine/sysDef.cpp:1888 +#: src/engine/sysDef.cpp:1944 src/engine/sysDef.cpp:1945 +#: src/gui/settings.cpp:4041 +msgid "PCM" +msgstr "PCM" + +#: src/engine/sysDef.cpp:706 +msgid "Sega Genesis/Mega Drive" +msgstr "Sega Genesis/Mega Drive" + +#: src/engine/sysDef.cpp:712 +msgid "Sega Genesis Extended Channel 3" +msgstr "Sega Genesis Canal 3 Extendido" + +#: src/engine/sysDef.cpp:718 src/gui/sysConf.cpp:158 +msgid "TI SN76489" +msgstr "TI SN76489" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 +msgid "Square 1" +msgstr "Quadrada 1" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 +msgid "Square 2" +msgstr "Quadrada 2" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 +msgid "Square 3" +msgstr "Quadrada 3" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:739 +#: src/engine/sysDef.cpp:773 src/engine/sysDef.cpp:955 +#: src/engine/sysDef.cpp:1314 src/engine/sysDef.cpp:1874 +#: src/engine/sysDef.cpp:1920 src/engine/sysDef.cpp:2037 +#: src/engine/sysDef.cpp:2100 src/gui/settings.cpp:4040 +#: src/gui/insEdit.cpp:6978 src/gui/insEdit.cpp:7129 src/gui/insEdit.cpp:7223 +#: src/gui/insEdit.cpp:7315 +msgid "Noise" +msgstr "Ruído" + +#: src/engine/sysDef.cpp:731 +msgid "Sega Master System + FM Expansion" +msgstr "Sega Master System + FM Expansion" + +#: src/engine/sysDef.cpp:737 src/gui/settings.cpp:3972 +msgid "Game Boy" +msgstr "Game Boy" + +#: src/engine/sysDef.cpp:738 +msgid "the most popular portable game console of the era." +msgstr "o console de jogos portátil mais popular da época" + +#: src/engine/sysDef.cpp:739 src/engine/sysDef.cpp:773 +#: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:2100 +msgid "Pulse 1" +msgstr "Pulse 1" + +#: src/engine/sysDef.cpp:739 src/engine/sysDef.cpp:773 +#: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:2100 +msgid "Pulse 2" +msgstr "Pulse 2" + +#: src/engine/sysDef.cpp:739 src/gui/settings.cpp:3877 +#: src/gui/guiConst.cpp:1395 src/gui/insEdit.cpp:6652 +msgid "Wavetable" +msgstr "Wavetable" + +#: src/engine/sysDef.cpp:746 +msgid "11xx: Set noise length (0: long; 1: short)" +msgstr "11xx: Definir comprimento do ruído (0: longo; 1: curto)" + +#: src/engine/sysDef.cpp:747 +msgid "12xx: Set duty cycle (0 to 3)" +msgstr "12xx: Definir ciclo de trabalho (0 a 3)" + +#: src/engine/sysDef.cpp:748 +msgid "13xy: Setup sweep (x: time; y: shift)" +msgstr "13xy: Configurar varredura (x: tempo; y: deslocamento)" + +#: src/engine/sysDef.cpp:749 +msgid "14xx: Set sweep direction (0: up; 1: down)" +msgstr "14xx: Definir direção de varredura (0: para cima; 1: para baixo)" + +#: src/engine/sysDef.cpp:754 +msgid "PC Engine/TurboGrafx-16" +msgstr "PC Engine/TurboGrafx-16" + +#: src/engine/sysDef.cpp:755 +msgid "an '80s game console with a wavetable sound chip, popular in Japan." +msgstr "um console de jogos dos anos 80 com chip de som wavetable, popular no Japão." diff --git a/po/sv.po b/po/sv.po new file mode 100644 index 000000000..520110dcc --- /dev/null +++ b/po/sv.po @@ -0,0 +1,16739 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: furnace 0.6.3\n" +"Last-Translator: RevvoBolt\n" +"Language-Team: RevvoBolt\n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/engine/sysDef.cpp:428 src/engine/sysDef.cpp:441 +msgid "20xx: Set channel mode (bit 0: square; bit 1: noise; bit 2: envelope)" +msgstr "20xx: Ange kanalläge (bit 0: kvadrat; bit 1: brus, bit 2; ADSR)" + +#: src/engine/sysDef.cpp:429 +msgid "21xx: Set noise frequency (0 to 1F)" +msgstr "21xx: Ange brusfrekvens (0 till 1F)" + +#: src/engine/sysDef.cpp:430 src/engine/sysDef.cpp:443 +msgid "22xy: Set envelope mode (x: shape, y: enable for this channel)" +msgstr "22xy: Ange ADSR (x: form, y: sätt på för kanalen)" + +#: src/engine/sysDef.cpp:431 src/engine/sysDef.cpp:444 +msgid "23xx: Set envelope period low byte" +msgstr "23xx: Ange ADSR-period låg byte" + +#: src/engine/sysDef.cpp:432 src/engine/sysDef.cpp:445 +msgid "24xx: Set envelope period high byte" +msgstr "24xx: Ange ADSR-period hög byte" + +#: src/engine/sysDef.cpp:433 src/engine/sysDef.cpp:446 +#: src/engine/sysDef.cpp:1599 +msgid "25xx: Envelope slide up" +msgstr "25xx: ADSR-tonhöjdningen upp" + +#: src/engine/sysDef.cpp:434 src/engine/sysDef.cpp:447 +#: src/engine/sysDef.cpp:1600 +msgid "26xx: Envelope slide down" +msgstr "26xx: ADSR-tonhöjdningen ner" + +#: src/engine/sysDef.cpp:435 src/engine/sysDef.cpp:448 +#: src/engine/sysDef.cpp:1601 +msgid "29xy: Set auto-envelope (x: numerator; y: denominator)" +msgstr "29xy: Ange auto-ADSR (x: täljare; y: nämnare)" + +#: src/engine/sysDef.cpp:436 src/engine/sysDef.cpp:449 +msgid "2Exx: Write to I/O port A" +msgstr "2Exx: Skriv till I/O-port A" + +#: src/engine/sysDef.cpp:437 src/engine/sysDef.cpp:450 +msgid "2Fxx: Write to I/O port B" +msgstr "2FXX: Skriv till I/O-port B" + +#: src/engine/sysDef.cpp:442 +msgid "21xx: Set noise frequency (0 to FF)" +msgstr "21xx: Ange brusfrekvens (0 till FF)" + +#: src/engine/sysDef.cpp:451 +msgid "12xx: Set duty cycle (0 to 8)" +msgstr "12xx: Ange arbetscykel (0 till 8)" + +#: src/engine/sysDef.cpp:453 +msgid "27xx: Set noise AND mask" +msgstr "Ange brus LOGISKT OCH mask" + +#: src/engine/sysDef.cpp:454 +msgid "28xx: Set noise OR mask" +msgstr "Ange brus LOGISKT ELLER mask" + +#: src/engine/sysDef.cpp:455 +msgid "" +"2Cxy: Automatic noise frequency (x: mode (0: disable, 1: freq, 2: freq + OR " +"mask); y: offset)" +msgstr "" +"2Cxy: Automatisk brusfrekvens (x: läge (0: inaktivera, 1: frekv, 2: frekv + " +"LOGISKT ELLER mask); y: offset" + +#: src/engine/sysDef.cpp:456 +msgid "2Dxx: NOT TO BE EMPLOYED BY THE COMPOSER" +msgstr "2Dxx: FÅR EJ ANSTÄLLAS AV KOMPOSITÖREN" + +#: src/engine/sysDef.cpp:460 +msgid "30xx: Toggle hard envelope reset on new notes" +msgstr "30xx: Växla hård ADSR-återställning på nya noter" + +#: src/engine/sysDef.cpp:465 +msgid "18xx: Toggle extended channel 3 mode" +msgstr "18xx: Växla till utökat kanal 3-läge" + +#: src/engine/sysDef.cpp:470 src/engine/sysDef.cpp:766 +#: src/engine/sysDef.cpp:1025 src/engine/sysDef.cpp:1272 +#: src/engine/sysDef.cpp:1593 +msgid "17xx: Toggle PCM mode (LEGACY)" +msgstr "17xx: Växla till PCM-läge (FÖRÅLDRAD)" + +#: src/engine/sysDef.cpp:471 src/engine/sysDef.cpp:1653 +#: src/engine/sysDef.cpp:1963 +msgid "DFxx: Set sample playback direction (0: normal; 1: reverse)" +msgstr "DFxx: Ange provuppspelningsriktning (0: normal; 1: omvänd)" + +#: src/engine/sysDef.cpp:476 +msgid "18xx: Toggle drums mode (1: enabled; 0: disabled)" +msgstr "18xx: Växla till trumläge (1: aktiverat; 0: inaktiverat)" + +#: src/engine/sysDef.cpp:480 src/engine/sysDef.cpp:554 +#: src/engine/sysDef.cpp:575 +msgid "11xx: Set feedback (0 to 7)" +msgstr "11xx: Ange feedback (0 till 7)" + +#: src/engine/sysDef.cpp:481 +msgid "12xx: Set level of operator 1 (0 highest, 7F lowest)" +msgstr "12xx: Ange nivå för operator 1 (0 högst, 7F lägst)" + +#: src/engine/sysDef.cpp:482 +msgid "13xx: Set level of operator 2 (0 highest, 7F lowest)" +msgstr "13xx: Ange nivå för operator 2 (0 högst, 7F lägst)" + +#: src/engine/sysDef.cpp:483 +msgid "14xx: Set level of operator 3 (0 highest, 7F lowest)" +msgstr "14xx: Ange nivå för operator 3 (0 högst, 7F lägst)" + +#: src/engine/sysDef.cpp:484 +msgid "15xx: Set level of operator 4 (0 highest, 7F lowest)" +msgstr "15xx: Ange nivå för operator 4 (0 högst, 7F lägst)" + +#: src/engine/sysDef.cpp:485 src/engine/sysDef.cpp:580 +#: src/engine/sysDef.cpp:635 +msgid "16xy: Set operator multiplier (x: operator from 1 to 4; y: multiplier)" +msgstr "" +"16xy: Ange operatorsmultiplikator (x: operator från 1 till 4; y: " +"multiplikator)" + +#: src/engine/sysDef.cpp:486 +msgid "19xx: Set attack of all operators (0 to 1F)" +msgstr "19xx: Ange attack av alla operatorer (0 till 1F)" + +#: src/engine/sysDef.cpp:487 +msgid "1Axx: Set attack of operator 1 (0 to 1F)" +msgstr "1Axx: Ange attack av operator 1 (0 till 1F)" + +#: src/engine/sysDef.cpp:488 +msgid "1Bxx: Set attack of operator 2 (0 to 1F)" +msgstr "1Bxx: Ange attack av operator 2 (0 till 1F)" + +#: src/engine/sysDef.cpp:489 +msgid "1Cxx: Set attack of operator 3 (0 to 1F)" +msgstr "1Cxx: Ange attack av operator 3 (0 till 1F)" + +#: src/engine/sysDef.cpp:490 +msgid "1Dxx: Set attack of operator 4 (0 to 1F)" +msgstr "1Dxx: Ange attack av operator 4 (0 till 1F)" + +#: src/engine/sysDef.cpp:491 src/engine/sysDef.cpp:588 +#: src/engine/sysDef.cpp:656 +msgid "50xy: Set AM (x: operator from 1 to 4 (0 for all ops); y: AM)" +msgstr "" +"50xy: Ange AM (x: operator från 1 till 4 (0 för alla operatorer); y: AM)" + +#: src/engine/sysDef.cpp:492 src/engine/sysDef.cpp:589 +#: src/engine/sysDef.cpp:657 +msgid "" +"51xy: Set sustain level (x: operator from 1 to 4 (0 for all ops); y: sustain)" +msgstr "" +"51xy: Ange sustainnivå (x: operator från 1 till 4 (0 för alla operatorer); " +"y: sustain)" + +#: src/engine/sysDef.cpp:493 src/engine/sysDef.cpp:590 +#: src/engine/sysDef.cpp:658 +msgid "52xy: Set release (x: operator from 1 to 4 (0 for all ops); y: release)" +msgstr "" +"51xy: Ange releasenivå (x: operator från 1 till 4 (0 för alla operatorer); " +"y: release)" + +#: src/engine/sysDef.cpp:494 +msgid "" +"53xy: Set detune (x: operator from 1 to 4 (0 for all ops); y: detune where 3 " +"is center)" +msgstr "" +"53xy: Ange detune (x: operator från 1 till 4 (0 för alla operatorer); y: " +"detune där 3 är mitten)" + +#: src/engine/sysDef.cpp:495 src/engine/sysDef.cpp:592 +#: src/engine/sysDef.cpp:660 +msgid "" +"54xy: Set envelope scale (x: operator from 1 to 4 (0 for all ops); y: scale " +"from 0 to 3)" +msgstr "" +"54xy: Ange ADSR-skalan (x: operator from 1 to 4 (0 for all operatorer); y: " +"skala från 0 till 3)" + +#: src/engine/sysDef.cpp:496 +msgid "56xx: Set decay of all operators (0 to 1F)" +msgstr "56xx: Ange decay för alla operatorer (0 till 1F)" + +#: src/engine/sysDef.cpp:497 +msgid "57xx: Set decay of operator 1 (0 to 1F)" +msgstr "57xx: Ange decay för operator 1 (0 till 1F)" + +#: src/engine/sysDef.cpp:498 +msgid "58xx: Set decay of operator 2 (0 to 1F)" +msgstr "58xx: Ange decay för operator 2 (0 till 1F)" + +#: src/engine/sysDef.cpp:499 +msgid "59xx: Set decay of operator 3 (0 to 1F)" +msgstr "59xx: Ange decay för operator 3 (0 till 1F)" + +#: src/engine/sysDef.cpp:500 +msgid "5Axx: Set decay of operator 4 (0 to 1F)" +msgstr "Ange decay för operator 4 (0 till 1F)" + +#: src/engine/sysDef.cpp:501 +msgid "5Bxx: Set decay 2 of all operators (0 to 1F)" +msgstr "5Bxx: Ange decay 2 för alla operatorer (0 till 1F)" + +#: src/engine/sysDef.cpp:502 +msgid "5Cxx: Set decay 2 of operator 1 (0 to 1F)" +msgstr "5Cxx: Ange decay 2 för operator 1 (0 till 1F)" + +#: src/engine/sysDef.cpp:503 +msgid "5Dxx: Set decay 2 of operator 2 (0 to 1F)" +msgstr "5Dxx: Ange decay 2 för operator 2 (0 till 1F)" + +#: src/engine/sysDef.cpp:504 +msgid "5Exx: Set decay 2 of operator 3 (0 to 1F)" +msgstr "5Exx: Ange decay 2 för operator 3 (0 till 1F)" + +#: src/engine/sysDef.cpp:505 +msgid "5Fxx: Set decay 2 of operator 4 (0 to 1F)" +msgstr "5Fxx: Ange decay 2 för operator 4 (0 till 1F)" + +#: src/engine/sysDef.cpp:510 +msgid "10xx: Set noise frequency (xx: value; 0 disables noise)" +msgstr "10xx: Ange brusfrekvens (xx: värde; 0 inaktiverar brus)" + +#: src/engine/sysDef.cpp:511 +msgid "17xx: Set LFO speed" +msgstr "17xx: Ange LFO-hastighet" + +#: src/engine/sysDef.cpp:512 +msgid "18xx: Set LFO waveform (0 saw, 1 square, 2 triangle, 3 noise)" +msgstr "18xx: Ange LFO-vågform (0 såg, 1 kvadrat, 2 triangel, 3 brus)" + +#: src/engine/sysDef.cpp:513 +msgid "1Exx: Set AM depth (0 to 7F)" +msgstr "1Exx: Ange AM-djup (0 till 7F)" + +#: src/engine/sysDef.cpp:514 +msgid "1Fxx: Set PM depth (0 to 7F)" +msgstr "1Fxx: Ange PM-djup (0 till 7F)" + +#: src/engine/sysDef.cpp:515 +msgid "" +"55xy: Set detune 2 (x: operator from 1 to 4 (0 for all ops); y: detune from " +"0 to 3)" +msgstr "" +"55xy: Ange detune 2 (x: operator från 1 till 4 (0 för alla operatorer); y: " +"detune från 0 till 3)" + +#: src/engine/sysDef.cpp:520 +msgid "24xx: Set LFO 2 speed" +msgstr "24xx: Ange LFO 2-hastighet" + +#: src/engine/sysDef.cpp:521 +msgid "25xx: Set LFO 2 waveform (0 saw, 1 square, 2 triangle, 3 noise)" +msgstr "25xx: Ange LFO 2-vågform (0 såg, 1 kvadrat, 2 triangel, 3 brus)" + +#: src/engine/sysDef.cpp:522 +msgid "26xx: Set AM 2 depth (0 to 7F)" +msgstr "26xx: Ange AM 2-djup (0 till 7F)" + +#: src/engine/sysDef.cpp:523 +msgid "27xx: Set PM 2 depth (0 to 7F)" +msgstr "27xx: Ange PM 2-djup (0 till 7F)" + +#: src/engine/sysDef.cpp:524 +msgid "" +"28xy: Set reverb (x: operator from 1 to 4 (0 for all ops); y: reverb from 0 " +"to 7)" +msgstr "" +"28xy: Ange reverb (x: operator från 1 till 4 (0 för alla operatorer); y: " +"reverb från 0 till 7)" + +#: src/engine/sysDef.cpp:525 src/engine/sysDef.cpp:650 +msgid "" +"2Axy: Set waveform (x: operator from 1 to 4 (0 for all ops); y: waveform " +"from 0 to 7)" +msgstr "" +"2Axy: Ange vågform (x: operator från 1 till 4 (0 för alla operatorer); y: " +"vågform från 0 till 7)" + +#: src/engine/sysDef.cpp:526 +msgid "" +"2Bxy: Set envelope generator shift (x: operator from 1 to 4 (0 for all ops); " +"y: shift from 0 to 3)" +msgstr "" +"2Bxy: Ange ADSR-generatorskifte (x: operator från 1 till 4 (0 för alla " +"operatorer); y: skift från 0 till 3)" + +#: src/engine/sysDef.cpp:527 +msgid "" +"2Cxy: Set fine multiplier (x: operator from 1 to 4 (0 for all ops); y: fine)" +msgstr "" +"2Cxy: Ange finmultiplikator (x: operator från 1 till 4 (0 för alla " +"operationer); y: fin)" + +#: src/engine/sysDef.cpp:530 +msgid "" +"3xyy: Set fixed frequency of operator 1 (x: octave from 0 to 7; y: frequency)" +msgstr "" +"3xyy: Ange fast frekvens för operator 1 (x: oktav från 0 till 7; y: frekvens)" + +#: src/engine/sysDef.cpp:531 +msgid "" +"3xyy: Set fixed frequency of operator 2 (x: octave from 8 to F; y: frequency)" +msgstr "" +"3xyy: Ange fast frekvens för operator 2 (x: oktav från 8 till F; y: frekvens)" + +#: src/engine/sysDef.cpp:532 +msgid "" +"4xyy: Set fixed frequency of operator 3 (x: octave from 0 to 7; y: frequency)" +msgstr "" +"4xyy: Ange fast frekvens för operator 3 (x: oktav från 0 till 7; y: frekvens)" + +#: src/engine/sysDef.cpp:533 +msgid "" +"4xyy: Set fixed frequency of operator 4 (x: octave from 8 to F; y: frequency)" +msgstr "" +"4xyy: Ange fast frekvens för operator 4 (x: oktav från 8 till F; y: frekvens)" + +#: src/engine/sysDef.cpp:540 +msgid "10xy: Setup LFO (x: enable; y: speed)" +msgstr "10xy: Ange LFO (x: aktivera; y: hastighet)" + +#: src/engine/sysDef.cpp:541 +msgid "" +"55xy: Set SSG envelope (x: operator from 1 to 4 (0 for all ops); y: 0-7 on, " +"8 off)" +msgstr "" +"55xy: Ange SSG-ADSR (x: operator från 1 till 4 (0 för alla operatorer); y: " +"0-7 på, 8 av)" + +#: src/engine/sysDef.cpp:549 +msgid "1Fxx: Set ADPCM-A global volume (0 to 3F)" +msgstr "1Fxx: Ange ADPCM-A globalvolym (0 till 3F)" + +#: src/engine/sysDef.cpp:553 +msgid "10xx: Set patch (0 to F)" +msgstr "10xx: Ange patch (0 till F)" + +#: src/engine/sysDef.cpp:555 src/engine/sysDef.cpp:576 +#: src/engine/sysDef.cpp:631 +msgid "12xx: Set level of operator 1 (0 highest, 3F lowest)" +msgstr "12xx: Ange nivå för operator 1 (0 högst, 3F lägst)" + +#: src/engine/sysDef.cpp:556 src/engine/sysDef.cpp:577 +#: src/engine/sysDef.cpp:632 +msgid "13xx: Set level of operator 2 (0 highest, 3F lowest)" +msgstr "13xx: Ange nivå för operator 2 (0 högst, 3F lägst)" + +#: src/engine/sysDef.cpp:557 +msgid "16xy: Set operator multiplier (x: operator from 1 to 2; y: multiplier)" +msgstr "" +"16xy: Ange operatormultiplikator (x: operator från 1 till 2; y: " +"multiplikator)" + +#: src/engine/sysDef.cpp:558 src/engine/sysDef.cpp:582 +#: src/engine/sysDef.cpp:637 +msgid "19xx: Set attack of all operators (0 to F)" +msgstr "19xx: Ange attack av alla operatorer (0 till F)" + +#: src/engine/sysDef.cpp:559 src/engine/sysDef.cpp:583 +#: src/engine/sysDef.cpp:638 +msgid "1Axx: Set attack of operator 1 (0 to F)" +msgstr "1Axx: Ange attack av operator 1 (0 till F)" + +#: src/engine/sysDef.cpp:560 src/engine/sysDef.cpp:584 +#: src/engine/sysDef.cpp:639 +msgid "1Bxx: Set attack of operator 2 (0 to F)" +msgstr "1Bxx: Ange attack av operator 2 (0 till F)" + +#: src/engine/sysDef.cpp:561 +msgid "50xy: Set AM (x: operator from 1 to 2 (0 for all ops); y: AM)" +msgstr "" +"50xy: Ange AM (x: operator från 1 till 2 (0 för alla operatorer); y: AM)" + +#: src/engine/sysDef.cpp:562 +msgid "" +"51xy: Set sustain level (x: operator from 1 to 2 (0 for all ops); y: sustain)" +msgstr "" +"51xy: Ange sustainnivå (x: operator från 1 till 2 (0 för alla operatorer); " +"y: sustain)" + +#: src/engine/sysDef.cpp:563 +msgid "52xy: Set release (x: operator from 1 to 2 (0 for all ops); y: release)" +msgstr "" +"52xy: Ange release (x: operator från 1 till 2 (0 för alla operatorer); y: " +"release)" + +#: src/engine/sysDef.cpp:564 +msgid "53xy: Set vibrato (x: operator from 1 to 2 (0 for all ops); y: enabled)" +msgstr "" +"53xy: Ange vibrato (x: operator från 1 till 2 (0 för alla operatorer); y: " +"aktiverad)" + +#: src/engine/sysDef.cpp:565 +msgid "" +"54xy: Set envelope scale (x: operator from 1 to 2 (0 for all ops); y: scale " +"from 0 to 3)" +msgstr "" +"54xy: Ange ADSR-skalan (x: operator från 1 till 2 (0 för alla operatorer); " +"y: skala från 0 till 3)" + +#: src/engine/sysDef.cpp:566 +msgid "" +"55xy: Set envelope sustain (x: operator from 1 to 2 (0 for all ops); y: " +"enabled)" +msgstr "" +"55xy: Ange ADSR-sustain (x: operator från 1 till 2 (0 för alla operatorer); " +"y: aktiverad)" + +#: src/engine/sysDef.cpp:567 src/engine/sysDef.cpp:594 +#: src/engine/sysDef.cpp:662 +msgid "56xx: Set decay of all operators (0 to F)" +msgstr "56xx: Ange decay för alla operatorer (0 till F)" + +#: src/engine/sysDef.cpp:568 src/engine/sysDef.cpp:595 +#: src/engine/sysDef.cpp:663 +msgid "57xx: Set decay of operator 1 (0 to F)" +msgstr "57xx: Ange decay för operator 1 (0 till F)" + +#: src/engine/sysDef.cpp:569 src/engine/sysDef.cpp:596 +#: src/engine/sysDef.cpp:664 +msgid "58xx: Set decay of operator 2 (0 to F)" +msgstr "58xx: Ange decay för operator 2 (0 till F)" + +#: src/engine/sysDef.cpp:570 +msgid "" +"5Bxy: Set whether key will scale envelope (x: operator from 1 to 2 (0 for " +"all ops); y: enabled)" +msgstr "" +"5Bxy: Ange om värdet ska skala ADSR (x: operator från 1 till 2 (0 för alla " +"operatorer); y: aktiverad)" + +#: src/engine/sysDef.cpp:574 +msgid "10xx: Set global AM depth (0: 1dB, 1: 4.8dB)" +msgstr "10xx: Ange globalt AM-djup (0: 1dB, 1: 4,8dB)" + +#: src/engine/sysDef.cpp:578 src/engine/sysDef.cpp:633 +msgid "14xx: Set level of operator 3 (0 highest, 3F lowest)" +msgstr "14xx: Ange nivå för operator 3 (0 högst, 3F lägst)" + +#: src/engine/sysDef.cpp:579 src/engine/sysDef.cpp:634 +msgid "15xx: Set level of operator 4 (0 highest, 3F lowest)" +msgstr "15xx: Ange nivå för operator 4 (0 högst, 3F lägst)" + +#: src/engine/sysDef.cpp:581 +msgid "17xx: Set global vibrato depth (0: normal, 1: double)" +msgstr "17xx: Ange globalt vibratodjup (0: normal, 1: dubbel)" + +#: src/engine/sysDef.cpp:585 src/engine/sysDef.cpp:640 +msgid "1Cxx: Set attack of operator 3 (0 to F)" +msgstr "1Cxx: Ange attack av operator 3 (0 till F)" + +#: src/engine/sysDef.cpp:586 src/engine/sysDef.cpp:641 +msgid "1Dxx: Set attack of operator 4 (0 to F)" +msgstr "1Dxx: Ange attack av operator 4 (0 till F)" + +#: src/engine/sysDef.cpp:587 +msgid "" +"2Axy: Set waveform (x: operator from 1 to 4 (0 for all ops); y: waveform " +"from 0 to 3 in OPL2 and 0 to 7 in OPL3)" +msgstr "" +"2Axy: Ange vågform (x: operator från 1 till 4 (0 för alla operatorer); y: " +"vågform från 0 till 3 i OPL2 och 0 till 7 i OPL3)" + +#: src/engine/sysDef.cpp:591 src/engine/sysDef.cpp:659 +msgid "53xy: Set vibrato (x: operator from 1 to 4 (0 for all ops); y: enabled)" +msgstr "" +"53xy: Ange vibrato (x: operator från 1 till 4 (0 för alla operatorer); y: " +"aktiverad)" + +#: src/engine/sysDef.cpp:593 src/engine/sysDef.cpp:661 +msgid "" +"55xy: Set envelope sustain (x: operator from 1 to 4 (0 for all ops); y: " +"enabled)" +msgstr "" +"55xy: Ange ADSR-sustain (x: operator från 1 till 4 (0 för alla operatorer); " +"y: aktiverad)" + +#: src/engine/sysDef.cpp:597 src/engine/sysDef.cpp:665 +msgid "59xx: Set decay of operator 3 (0 to F)" +msgstr "59xx: Ange decay för operator 3 (0 till F)" + +#: src/engine/sysDef.cpp:598 src/engine/sysDef.cpp:666 +msgid "5Axx: Set decay of operator 4 (0 to F)" +msgstr "5Axx: Ange decay för operator 4 (0 till F)" + +#: src/engine/sysDef.cpp:599 src/engine/sysDef.cpp:667 +msgid "" +"5Bxy: Set whether key will scale envelope (x: operator from 1 to 4 (0 for " +"all ops); y: enabled)" +msgstr "" +"5Bxy: Ange om värdet ska skala ADSR (x: operator från 1 till 4 (0 för alla " +"operatorer); y: aktiverad)" + +#: src/engine/sysDef.cpp:603 src/engine/sysDef.cpp:680 +msgid "" +"10xx: Set waveform (bit 0: triangle; bit 1: saw; bit 2: pulse; bit 3: noise)" +msgstr "" +"10xx: Ange vågform (bit 0: triangel; bit 1: såg; bit 2: puls; bit 3: brus)" + +#: src/engine/sysDef.cpp:604 +msgid "11xx: Set coarse cutoff (not recommended; use 4xxx instead)" +msgstr "" +"11xx: Ange modulatortonens brytfrekvens (rekommenderas ej, använd 4xxx i " +"stället)" + +#: src/engine/sysDef.cpp:605 +msgid "12xx: Set coarse pulse width (not recommended; use 3xxx instead)" +msgstr "" +"12xx: Ange modulatortonens pulsbredd (rekommenderas ej, använd 3xxx i " +"stället)" + +#: src/engine/sysDef.cpp:606 +msgid "13xx: Set resonance (0 to F)" +msgstr "13xx: Ange resonans (0 till F)" + +#: src/engine/sysDef.cpp:607 +msgid "" +"14xx: Set filter mode (bit 0: low pass; bit 1: band pass; bit 2: high pass)" +msgstr "" +"14xx: Ange filterläge (bit 0: lågpass; bit 1: bandpass; bit 2: högpass)" + +#: src/engine/sysDef.cpp:608 +msgid "15xx: Set envelope reset time" +msgstr "15xx: Ange ADSR-återställningstid" + +#: src/engine/sysDef.cpp:609 +msgid "1Axx: Disable envelope reset for this channel (1 disables; 0 enables)" +msgstr "" +"1Axx: Inaktivera ADSR-återställning för denna kanal (1 inaktiverar; 0 " +"aktiverar)" + +#: src/engine/sysDef.cpp:610 +msgid "1Bxy: Reset cutoff (x: on new note; y: now)" +msgstr "1Bxy: Återställ brytfrekvensen (x: på ny not; y: nu)" + +#: src/engine/sysDef.cpp:611 +msgid "1Cxy: Reset pulse width (x: on new note; y: now)" +msgstr "1Cxy: Återställ pulsbredd (x: på ny not; y: nu)" + +#: src/engine/sysDef.cpp:612 +msgid "1Exy: Change other parameters (LEGACY)" +msgstr "1Exy: Byt andra parametrar (FÖRÅLDRAD)" + +#: src/engine/sysDef.cpp:613 +msgid "20xy: Set attack/decay (x: attack; y: decay)" +msgstr "20xy: Ange attack/decay (x: attack; y: decay)" + +#: src/engine/sysDef.cpp:614 +msgid "21xy: Set sustain/release (x: sustain; y: release)" +msgstr "21xy: Ange sustain/release (x: sustain; y: release)" + +#: src/engine/sysDef.cpp:616 src/engine/sysDef.cpp:688 +msgid "3xxx: Set pulse width (0 to FFF)" +msgstr "3xxx: Ange pulsbredd (0 till FFF)" + +#: src/engine/sysDef.cpp:617 +msgid "4xxx: Set cutoff (0 to 7FF)" +msgstr "4xxx: Ange brytfrekvens (0 till 7FF)" + +#: src/engine/sysDef.cpp:622 src/engine/sysDef.cpp:745 +#: src/engine/sysDef.cpp:762 src/engine/sysDef.cpp:1000 +#: src/engine/sysDef.cpp:1050 src/engine/sysDef.cpp:1268 +#: src/engine/sysDef.cpp:1320 src/engine/sysDef.cpp:1590 +#: src/engine/sysDef.cpp:1788 src/engine/sysDef.cpp:1792 +#: src/engine/sysDef.cpp:1893 src/engine/sysDef.cpp:2063 +#: src/engine/sysDef.cpp:2077 +msgid "10xx: Set waveform" +msgstr "10xx: Ange vågform" + +#: src/engine/sysDef.cpp:626 +msgid "20xx: Set PCM frequency" +msgstr "20xx: Ange PCM-frekvens" + +#: src/engine/sysDef.cpp:630 +msgid "" +"10xy: Set AM depth (x: operator from 1 to 4 (0 for all ops); y: depth (0: " +"1dB, 1: 4.8dB))" +msgstr "" +"10xy: Ange AM-djup (x: operator från 1 till 4 (0 för alla operatorer); y: " +"djup (0: 1dB, 1: 4,8dB))" + +#: src/engine/sysDef.cpp:636 +msgid "" +"17xy: Set vibrato depth (x: operator from 1 to 4 (0 for all ops); y: depth " +"(0: normal, 1: double))" +msgstr "" +"17xy: Ange vibratodjup (x: operator från 1 till 4 (0 för alla operatorer); " +"y: djup (0: normal, 1: dubbel))" + +#: src/engine/sysDef.cpp:642 +msgid "20xy: Set panning of operator 1 (x: left; y: right)" +msgstr "20xy: Ange panorering av operator 1 (x: vänster; y: höger)" + +#: src/engine/sysDef.cpp:643 +msgid "21xy: Set panning of operator 2 (x: left; y: right)" +msgstr "21xy: Ange panorering av operator 2 (x: vänster; y: höger)" + +#: src/engine/sysDef.cpp:644 +msgid "22xy: Set panning of operator 3 (x: left; y: right)" +msgstr "22xy: Ange panorering av operator 3 (x: vänster; y: höger)" + +#: src/engine/sysDef.cpp:645 +msgid "23xy: Set panning of operator 4 (x: left; y: right)" +msgstr "23xy: Ange panorering av operator 4 (x: vänster; y: höger)" + +#: src/engine/sysDef.cpp:646 +msgid "" +"24xy: Set output level register (x: operator from 1 to 4 (0 for all ops); y: " +"level from 0 to 7)" +msgstr "" +"24xy: Ange utgångsnivåregistreringen (x: operator från 1 till 4 (0 för alla " +"operatorer); y: nivå från 0 till 7)" + +#: src/engine/sysDef.cpp:647 +msgid "" +"25xy: Set modulation input level (x: operator from 1 to 4 (0 for all ops); " +"y: level from 0 to 7)" +msgstr "" +"25xy: Ange moduleringsingångsnivån (x: operator från 1 till 4 (0 för alla " +"operatorer); y: nivå från 0 till 7)" + +#: src/engine/sysDef.cpp:648 +msgid "" +"26xy: Set envelope delay (x: operator from 1 to 4 (0 for all ops); y: delay " +"from 0 to 7)" +msgstr "" +"26xy: Ange ADSR-delay (x: operator från 1 till 4 (0 för alla operatorer); y: " +"delay från 0 till 7)" + +#: src/engine/sysDef.cpp:649 +msgid "27xx: Set noise mode for operator 4 (x: mode from 0 to 3)" +msgstr "27xx: Ange brusläge för operator 4 (x: läge från 0 till 3)" + +#: src/engine/sysDef.cpp:651 +msgid "" +"2Fxy: Set fixed frequency block (x: operator from 1 to 4; y: octave from 0 " +"to 7)" +msgstr "" +"2Fxy: Ange fast frekvensblock (x: operator från 1 till 4; y: oktav från 0 " +"till 7)" + +#: src/engine/sysDef.cpp:652 +msgid "40xx: Set detune of operator 1 (80: center)" +msgstr "40xx: Ange detune av operator 1 (80: mitten)" + +#: src/engine/sysDef.cpp:653 +msgid "41xx: Set detune of operator 2 (80: center)" +msgstr "41xx: Ange detune av operator 2 (80: mitten)" + +#: src/engine/sysDef.cpp:654 +msgid "42xx: Set detune of operator 3 (80: center)" +msgstr "42xx: Ange detune av operator 3 (80: mitten)" + +#: src/engine/sysDef.cpp:655 +msgid "43xx: Set detune of operator 4 (80: center)" +msgstr "43xx: Ange detune av operator 4 (80: mitten)" + +#: src/engine/sysDef.cpp:670 +msgid "" +"3xyy: Set fixed frequency F-num of operator 1 (x: high 2 bits from 0 to 3; " +"y: low 8 bits of F-num)" +msgstr "" +"3xyy: Ange fast frekvens F-nummer för operator 1 (x: hög 2 bit från 0 till " +"3; y: låg 8 bit av F-nummer)" + +#: src/engine/sysDef.cpp:671 +msgid "" +"3xyy: Set fixed frequency F-num of operator 2 (x: high 2 bits from 4 to 7; " +"y: low 8 bits of F-num)" +msgstr "" +"3xyy: Ange fast frekvens F-nummer för operator 2 (x: hög 2 bit från 4 till " +"7; y: låg 8 bit av F-nummer)" + +#: src/engine/sysDef.cpp:672 +msgid "" +"3xyy: Set fixed frequency F-num of operator 3 (x: high 2 bits from 8 to B; " +"y: low 8 bits of F-num)" +msgstr "" +"3xyy: Ange fast frekvens F-nummer för operator 3 (x: hög 2 bit från 8 till " +"8; y: låg 8 bit av F-nummer)" + +#: src/engine/sysDef.cpp:673 +msgid "" +"3xyy: Set fixed frequency F-num of operator 4 (x: high 2 bits from C to F; " +"y: low 8 bits of F-num)" +msgstr "" +"3xyy: Ange fast frekvens F-nummer för operator 4 (x: hög 2 bit från C till " +"F; y: låg 8 bit av F-nummer)" + +#: src/engine/sysDef.cpp:681 +msgid "11xx: Set resonance (0 to FF)" +msgstr "11xx: Ange resonans (0 till FF)" + +#: src/engine/sysDef.cpp:682 +msgid "" +"12xx: Set filter mode (bit 0: low pass; bit 1: band pass; bit 2: high pass)" +msgstr "" +"12xx: Ange filterläge (bit 0: lågpass; bit 1: bandpass; bit 2: högpass)" + +#: src/engine/sysDef.cpp:683 +msgid "13xx: Disable envelope reset for this channel (1 disables; 0 enables)" +msgstr "" +"13xx: Inaktivera ADSR-återställning för denna kanal (1 inaktiverar; 0 " +"aktiverar)" + +#: src/engine/sysDef.cpp:684 +msgid "14xy: Reset cutoff (x: on new note; y: now)" +msgstr "14xy: Återställ brytfrekvens (x: på ny not; y: nu)" + +#: src/engine/sysDef.cpp:685 +msgid "15xy: Reset pulse width (x: on new note; y: now)" +msgstr "15xy: Återställ pulsbredd (x: på ny not; y: nu)" + +#: src/engine/sysDef.cpp:686 +msgid "16xy: Change other parameters" +msgstr "16xy: Ändra andra parametrar" + +#: src/engine/sysDef.cpp:689 src/engine/sysDef.cpp:1733 +msgid "4xxx: Set cutoff (0 to FFF)" +msgstr "4xxx: Ange brytfrekvens (0 till FFF)" + +#: src/engine/sysDef.cpp:697 +msgid "Yamaha YMU759 (MA-2)" +msgstr "Yamaha YMU759 (MA-2)" + +#: src/engine/sysDef.cpp:698 +msgid "" +"a chip which found its way inside mobile phones in the 2000's.\n" +"as proprietary as it is, it passed away after losing to MP3 in the mobile " +"hardware battle." +msgstr "" +"ett ljudchip som hittade sin väg in i mobiltelefoner på 2000-talet.\n" +"Så proprietärt som det är gick det bort efter att ha förlorat mot MP3 i " +"mobilenhårdvarustrid." + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:807 src/engine/sysDef.cpp:819 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:915 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1237 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1314 src/engine/sysDef.cpp:1356 +#: src/engine/sysDef.cpp:1396 src/engine/sysDef.cpp:1499 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1572 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1608 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1799 src/engine/sysDef.cpp:1810 +#: src/engine/sysDef.cpp:1821 src/engine/sysDef.cpp:1832 +#: src/engine/sysDef.cpp:1900 src/engine/sysDef.cpp:1910 +#: src/engine/sysDef.cpp:1920 src/engine/sysDef.cpp:1944 +#: src/engine/sysDef.cpp:1957 src/engine/sysDef.cpp:1970 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2037 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2122 +#: src/engine/sysDef.cpp:2138 src/engine/sysDef.cpp:2150 +msgid "Channel 1" +msgstr "Kanal 1" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:807 src/engine/sysDef.cpp:819 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:915 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1237 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1314 src/engine/sysDef.cpp:1356 +#: src/engine/sysDef.cpp:1396 src/engine/sysDef.cpp:1499 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1572 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1608 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1799 src/engine/sysDef.cpp:1810 +#: src/engine/sysDef.cpp:1821 src/engine/sysDef.cpp:1832 +#: src/engine/sysDef.cpp:1900 src/engine/sysDef.cpp:1910 +#: src/engine/sysDef.cpp:1920 src/engine/sysDef.cpp:1944 +#: src/engine/sysDef.cpp:1957 src/engine/sysDef.cpp:1970 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2037 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2122 +#: src/engine/sysDef.cpp:2138 src/engine/sysDef.cpp:2150 +msgid "Channel 2" +msgstr "Kanal 2" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:807 src/engine/sysDef.cpp:819 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1237 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1314 +#: src/engine/sysDef.cpp:1356 src/engine/sysDef.cpp:1396 +#: src/engine/sysDef.cpp:1499 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1572 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1799 src/engine/sysDef.cpp:1810 +#: src/engine/sysDef.cpp:1821 src/engine/sysDef.cpp:1832 +#: src/engine/sysDef.cpp:1910 src/engine/sysDef.cpp:1944 +#: src/engine/sysDef.cpp:1957 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2037 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +#: src/engine/sysDef.cpp:2122 src/engine/sysDef.cpp:2138 +#: src/engine/sysDef.cpp:2150 +msgid "Channel 3" +msgstr "Kanal 3" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1237 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1314 +#: src/engine/sysDef.cpp:1356 src/engine/sysDef.cpp:1396 +#: src/engine/sysDef.cpp:1499 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1572 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1910 +#: src/engine/sysDef.cpp:1944 src/engine/sysDef.cpp:1957 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +#: src/engine/sysDef.cpp:2122 src/engine/sysDef.cpp:2150 +msgid "Channel 4" +msgstr "Kanal 4" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1314 +#: src/engine/sysDef.cpp:1356 src/engine/sysDef.cpp:1396 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1572 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1705 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 5" +msgstr "Kanal 5" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1356 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 6" +msgstr "Kanal 6" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 7" +msgstr "Kanal 7" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 8" +msgstr "Kanal 8" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 9" +msgstr "Kanal 9" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 10" +msgstr "Kanal 10" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 11" +msgstr "Kanal 11" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 12" +msgstr "Kanal 12" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 13" +msgstr "Kanal 13" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 14" +msgstr "Kanal 14" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 15" +msgstr "Kanal 15" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 16" +msgstr "Kanal 16" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:700 +#: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1767 src/engine/sysDef.cpp:1888 +#: src/engine/sysDef.cpp:1944 src/engine/sysDef.cpp:1945 +#: src/gui/settings.cpp:4094 +msgid "PCM" +msgstr "PCM" + +#: src/engine/sysDef.cpp:706 +msgid "Sega Genesis/Mega Drive" +msgstr "Sega Genesis/Mega Drive" + +#: src/engine/sysDef.cpp:712 +msgid "Sega Genesis Extended Channel 3" +msgstr "Sega Genesis utökad kanal 3" + +#: src/engine/sysDef.cpp:718 src/gui/sysConf.cpp:158 +msgid "TI SN76489" +msgstr "TI SN76489" + +#: src/engine/sysDef.cpp:719 +msgid "" +"a square/noise sound chip found on the Sega Master System, ColecoVision, " +"Tandy, TI's own 99/4A and a few other places." +msgstr "" +"ett kvadrat/brusljudchip som finns på Sega Master System, ColecoVision, " +"Tandy, TI:s egen 99/4A och några andra ställen." + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 +msgid "Square 1" +msgstr "Kvadrat 1" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 +msgid "Square 2" +msgstr "Kvadrat 2" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 +msgid "Square 3" +msgstr "Kvadrat 3" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:739 +#: src/engine/sysDef.cpp:773 src/engine/sysDef.cpp:955 +#: src/engine/sysDef.cpp:1314 src/engine/sysDef.cpp:1874 +#: src/engine/sysDef.cpp:1920 src/engine/sysDef.cpp:2037 +#: src/engine/sysDef.cpp:2100 src/gui/settings.cpp:4093 +#: src/gui/insEdit.cpp:6978 src/gui/insEdit.cpp:7129 src/gui/insEdit.cpp:7223 +#: src/gui/insEdit.cpp:7315 +msgid "Noise" +msgstr "Brus" + +#: src/engine/sysDef.cpp:726 +msgid "20xy: Set noise mode (x: preset freq/ch3 freq; y: thin pulse/noise)" +msgstr "20xy: Ange brusläge (x: förinställd frekv/k3 frekv; y: tunn puls/brus)" + +#: src/engine/sysDef.cpp:731 +msgid "Sega Master System + FM Expansion" +msgstr "Sega Master System + FM-expansion" + +#: src/engine/sysDef.cpp:737 src/gui/settings.cpp:4025 +msgid "Game Boy" +msgstr "Game Boy" + +#: src/engine/sysDef.cpp:738 +msgid "the most popular portable game console of the era." +msgstr "den mest populära bärbara spelkonsol på tiden." + +#: src/engine/sysDef.cpp:739 src/engine/sysDef.cpp:773 +#: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:2100 +msgid "Pulse 1" +msgstr "Puls 1" + +#: src/engine/sysDef.cpp:739 src/engine/sysDef.cpp:773 +#: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:2100 +msgid "Pulse 2" +msgstr "Puls 2" + +#: src/engine/sysDef.cpp:739 src/gui/settings.cpp:3930 +#: src/gui/guiConst.cpp:1395 src/gui/insEdit.cpp:6652 +msgid "Wavetable" +msgstr "Wavetable" + +#: src/engine/sysDef.cpp:746 +msgid "11xx: Set noise length (0: long; 1: short)" +msgstr "11xx: Ange bruslängd (0: lång; 1: kort)" + +#: src/engine/sysDef.cpp:747 +msgid "12xx: Set duty cycle (0 to 3)" +msgstr "12xx: Ange arbetscykel (0 till 3)" + +#: src/engine/sysDef.cpp:748 +msgid "13xy: Setup sweep (x: time; y: shift)" +msgstr "13xy: Konfigurera filtersvep (x: tid; y: skift)" + +#: src/engine/sysDef.cpp:749 +msgid "14xx: Set sweep direction (0: up; 1: down)" +msgstr "14xx: Ange filtersvepriktning (0: uppåt; 1: nedåt)" + +#: src/engine/sysDef.cpp:754 +msgid "PC Engine/TurboGrafx-16" +msgstr "PC Engine/TurboGrafx-16" + +#: src/engine/sysDef.cpp:755 +msgid "an '80s game console with a wavetable sound chip, popular in Japan." +msgstr "" +"en spelkonsol från 80-talet med ett wavetable-ljudchip, populär i Japan." + +#: src/engine/sysDef.cpp:763 src/engine/sysDef.cpp:1001 +#: src/engine/sysDef.cpp:1793 +msgid "11xx: Toggle noise mode" +msgstr "11xx: Växla brusläge" + +#: src/engine/sysDef.cpp:764 +msgid "12xx: Setup LFO (0: disabled; 1: 1x depth; 2: 16x depth; 3: 256x depth)" +msgstr "" +"12xx: Ställ in LFO (0: inaktiverad; 1: 1x djup; 2: 16x djup; 3: 256x djup)" + +#: src/engine/sysDef.cpp:765 +msgid "13xx: Set LFO speed" +msgstr "13xx: Ange LFO-hastighet" + +#: src/engine/sysDef.cpp:771 +msgid "NES (Ricoh 2A03)" +msgstr "NES (Ricoh 2A03)" + +#: src/engine/sysDef.cpp:772 +msgid "" +"also known as Famicom in Japan, it's the most well-known game console of the " +"'80s." +msgstr "" +"även känd som Famicom i Japan, det är den mest välkända spelkonsolen på 80-" +"talet." + +#: src/engine/sysDef.cpp:773 src/gui/waveEdit.cpp:31 src/gui/waveEdit.cpp:217 +#: src/gui/insEdit.cpp:200 src/gui/insEdit.cpp:324 src/gui/insEdit.cpp:658 +msgid "Triangle" +msgstr "Triangel" + +#: src/engine/sysDef.cpp:773 src/engine/sysDef.cpp:2100 +#: src/gui/insEdit.cpp:2629 +msgid "DPCM" +msgstr "DPCM" + +#: src/engine/sysDef.cpp:779 src/engine/sysDef.cpp:2106 +msgid "11xx: Write to delta modulation counter (0 to 7F)" +msgstr "11xx: Skriv till deltamoduleringsräknaren (0 till 7F)" + +#: src/engine/sysDef.cpp:780 src/engine/sysDef.cpp:1068 +msgid "12xx: Set duty cycle/noise mode (pulse: 0 to 3; noise: 0 or 1)" +msgstr "12xx: Ange arbetscykel/brusläge (puls: 0 till 3; brus: 0 eller 1)" + +#: src/engine/sysDef.cpp:781 src/engine/sysDef.cpp:2108 +msgid "13xy: Sweep up (x: time; y: shift)" +msgstr "13xy: Filtersvep upp (x: tid; y: skift)" + +#: src/engine/sysDef.cpp:782 src/engine/sysDef.cpp:2109 +msgid "14xy: Sweep down (x: time; y: shift)" +msgstr "14xy: Filtersvep ner (x: tid; y: skift)" + +#: src/engine/sysDef.cpp:783 src/engine/sysDef.cpp:2110 +msgid "" +"15xx: Set envelope mode (0: envelope, 1: length, 2: looping, 3: constant)" +msgstr "15xx: Ange ADSR-läge (0: kuvert, 1: längd, 2: looping, 3: konstant)" + +#: src/engine/sysDef.cpp:784 src/engine/sysDef.cpp:2111 +msgid "16xx: Set length counter (refer to manual for a list of values)" +msgstr "16xx: Ställ in längdräknare (se manualen för en lista med värden)" + +#: src/engine/sysDef.cpp:785 src/engine/sysDef.cpp:2112 +msgid "17xx: Set frame counter mode (0: 4-step, 1: 5-step)" +msgstr "17xx: Ställ in bildräknarläge (0: 4-steg, 1: 5-steg)" + +#: src/engine/sysDef.cpp:786 src/engine/sysDef.cpp:2113 +msgid "18xx: Select PCM/DPCM mode (0: PCM; 1: DPCM)" +msgstr "18xx: Välj PCM/DPCM-läge (0: PCM; 1: DPCM)" + +#: src/engine/sysDef.cpp:787 src/engine/sysDef.cpp:2114 +msgid "19xx: Set triangle linear counter (0 to 7F; 80 and higher halt)" +msgstr "19xx: Ställ in triangellinjärräknare (0 till 7F; 80 och högre stopp)" + +#: src/engine/sysDef.cpp:788 src/engine/sysDef.cpp:2115 +msgid "20xx: Set DPCM frequency (0 to F)" +msgstr "20xx: Ställ in DPCM-frekvens (0 till F)" + +#: src/engine/sysDef.cpp:793 +msgid "NES + Konami VRC7" +msgstr "NES + Konami VRC7" + +#: src/engine/sysDef.cpp:799 +msgid "Famicom Disk System" +msgstr "Famicom Disk System" + +#: src/engine/sysDef.cpp:805 +msgid "Commodore 64 (SID 6581)" +msgstr "Commodore 64 (SID 6581)" + +#: src/engine/sysDef.cpp:806 +msgid "" +"this computer is powered by the SID chip, which had synthesizer features " +"like a filter and ADSR." +msgstr "" +"denna dator drivs av SID-chippet, som hade synthesizerfunktioner som ett " +"filter och ADSR." + +#: src/engine/sysDef.cpp:817 +msgid "Commodore 64 (SID 8580)" +msgstr "Commodore 64 (SID 8580)" + +#: src/engine/sysDef.cpp:818 +msgid "" +"this computer is powered by the SID chip, which had synthesizer features " +"like a filter and ADSR.\n" +"this is the newer revision of the chip." +msgstr "" +"denna dator drivs av SID-chippet, som hade synthesizerfunktioner som ett " +"filter och ADSR.\n" +"detta är den nyare versionen av chippet." + +#: src/engine/sysDef.cpp:829 +msgid "DefleCade" +msgstr "DefleCade" + +#: src/engine/sysDef.cpp:835 +msgid "Neo Geo CD" +msgstr "Neo Geo CD" + +#: src/engine/sysDef.cpp:836 +msgid "" +"like Neo Geo, but lacking the ADPCM-B channel since they couldn't connect " +"the pins." +msgstr "" +"som Neo Geo, men saknar ADPCM-B-kanalen eftersom de inte kunde ansluta " +"stiften." + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1173 +#: src/engine/sysDef.cpp:1185 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1443 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +#: src/engine/sysDef.cpp:2006 +msgid "FM 1" +msgstr "FM 1" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:891 +#: src/engine/sysDef.cpp:903 src/engine/sysDef.cpp:1032 +#: src/engine/sysDef.cpp:1097 src/engine/sysDef.cpp:1109 +#: src/engine/sysDef.cpp:1122 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1546 +#: src/engine/sysDef.cpp:1559 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:1693 src/engine/sysDef.cpp:1849 +#: src/engine/sysDef.cpp:1861 src/engine/sysDef.cpp:2006 +msgid "FM 2" +msgstr "FM 2" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1173 +#: src/engine/sysDef.cpp:1185 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1443 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:2006 +msgid "FM 3" +msgstr "FM 3" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1546 +#: src/engine/sysDef.cpp:1559 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:1693 src/engine/sysDef.cpp:1849 +#: src/engine/sysDef.cpp:1861 src/engine/sysDef.cpp:2006 +msgid "FM 4" +msgstr "FM 4" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:862 src/engine/sysDef.cpp:927 +#: src/engine/sysDef.cpp:943 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "PSG 1" +msgstr "PSG 1" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:862 src/engine/sysDef.cpp:927 +#: src/engine/sysDef.cpp:943 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "PSG 2" +msgstr "PSG 2" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:862 src/engine/sysDef.cpp:927 +#: src/engine/sysDef.cpp:943 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "PSG 3" +msgstr "PSG 3" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 1" +msgstr "ADPCM-A 1" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 2" +msgstr "ADPCM-A 2" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 3" +msgstr "ADPCM-A 3" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 4" +msgstr "ADPCM-A 4" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 5" +msgstr "ADPCM-A 5" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 6" +msgstr "ADPCM-A 6" + +#: src/engine/sysDef.cpp:847 +msgid "Neo Geo CD Extended Channel 2" +msgstr "Neo Geo CD utökat kanal 2" + +#: src/engine/sysDef.cpp:848 +msgid "" +"like Neo Geo, but lacking the ADPCM-B channel since they couldn't connect " +"the pins.\n" +"this one is in Extended Channel mode, which turns the second FM channel into " +"four operators with independent notes/frequencies." +msgstr "" +"som Neo Geo, men saknar ADPCM-B-kanalen eftersom de inte kunde ansluta " +"stiften.\n" +"denna är i utökat kanalläge, vilket förvandlar den andra FM-kanalen till " +"fyra operatorer med självständiga toner/frekvenser." + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP1" +msgstr "FM 2 OP1" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP2" +msgstr "FM 2 OP2" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP3" +msgstr "FM 2 OP3" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP4" +msgstr "FM 2 OP4" + +#: src/engine/sysDef.cpp:860 src/gui/sysConf.cpp:913 +msgid "AY-3-8910" +msgstr "AY-3-8910" + +#: src/engine/sysDef.cpp:861 +msgid "" +"this chip is everywhere! ZX Spectrum, MSX, Amstrad CPC, Intellivision, " +"Vectrex...\n" +"the discovery of envelope bass helped it beat the SN76489 with ease." +msgstr "" +"detta ljudchip finns överallt! ZX Spectrum, MSX, Amstrad CPC, Intellivision," +"Vectrex...\n" +"upptäckten av ADSR-basen hjälpte ljudchippet att slå SN76489 med lätthet." + +#: src/engine/sysDef.cpp:872 +msgid "Amiga" +msgstr "Amiga" + +#: src/engine/sysDef.cpp:873 +msgid "" +"a computer from the '80s with full sampling capabilities, giving it a sound " +"ahead of its time." +msgstr "" +"en dator från 80-talet med full samplingskapaciteter, vilket ger den ett " +"ljud för sin tid." + +#: src/engine/sysDef.cpp:881 +msgid "10xx: Toggle filter (0 disables; 1 enables)" +msgstr "10xx: Växla filter (0 inaktiverar; 1 aktiverar)" + +#: src/engine/sysDef.cpp:882 +msgid "11xx: Toggle AM with next channel" +msgstr "11xx: Växla AM med nästa kanalen" + +#: src/engine/sysDef.cpp:883 +msgid "12xx: Toggle period modulation with next channel" +msgstr "12xx: Växla periodmodulering med nästa kanalen" + +#: src/engine/sysDef.cpp:884 +msgid "13xx: Set waveform" +msgstr "13xx: Ange vågform" + +#: src/engine/sysDef.cpp:889 +msgid "Yamaha YM2151 (OPM)" +msgstr "Yamaha YM2151 (OPM)" + +#: src/engine/sysDef.cpp:890 +msgid "" +"this was Yamaha's first integrated FM chip.\n" +"it was used in several synthesizers, computers and arcade boards." +msgstr "" +"detta var Yamahas första integrerad FM-chip.\n" +"det användes i flera synthesizers, datorer och arkadbrädor." + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1279 src/engine/sysDef.cpp:1332 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1370 +#: src/engine/sysDef.cpp:1383 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +#: src/engine/sysDef.cpp:2006 +msgid "FM 5" +msgstr "FM 5" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:2006 +msgid "FM 6" +msgstr "FM 6" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:1032 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1279 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:2006 +msgid "FM 7" +msgstr "FM 7" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:1032 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:2006 +msgid "FM 8" +msgstr "FM 8" + +#: src/engine/sysDef.cpp:901 +msgid "Yamaha YM2612 (OPN2)" +msgstr "Yamaha YM2612 (OPN2)" + +#: src/engine/sysDef.cpp:902 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer)." +msgstr "" +"detta ljudchip är mest känt för att vara i Sega Genesis (men det var också " +"på FM Towns-datorn)." + +#: src/engine/sysDef.cpp:913 +msgid "Atari TIA" +msgstr "Atari TIA" + +#: src/engine/sysDef.cpp:914 +msgid "" +"it's a challenge to make music on this chip which barely has musical " +"capabilities..." +msgstr "" +"det är en utmaning att göra musik på detta chip som knappt har " +"musikalaförmågor..." + +#: src/engine/sysDef.cpp:925 +msgid "Philips SAA1099" +msgstr "Philips SAA1099" + +#: src/engine/sysDef.cpp:926 +msgid "" +"supposedly an upgrade from the AY-3-8910, this was present on the Creative " +"Music System (Game Blaster) and SAM Coupé." +msgstr "" +"förmodligen en uppgradering från AY-3-8910, detta fanns på CreativeMusic " +"System (Game Blaster) och SAM Coupé." + +#: src/engine/sysDef.cpp:927 +msgid "PSG 4" +msgstr "PSG 4" + +#: src/engine/sysDef.cpp:927 +msgid "PSG 5" +msgstr "PSG 5" + +#: src/engine/sysDef.cpp:927 +msgid "PSG 6" +msgstr "PSG 6" + +#: src/engine/sysDef.cpp:934 +msgid "10xy: Set channel mode (x: noise; y: tone)" +msgstr "10xy: Ange kanalläge (x: brus; y: ton)" + +#: src/engine/sysDef.cpp:935 +msgid "11xx: Set noise frequency" +msgstr "11xx: Ange brusfrekvens" + +#: src/engine/sysDef.cpp:936 +msgid "12xx: Setup envelope (refer to docs for more information)" +msgstr "12xx: Konfigurera ADSR (se dokument för mer information)" + +#: src/engine/sysDef.cpp:941 +msgid "Microchip AY8930" +msgstr "Microchip AY8930" + +#: src/engine/sysDef.cpp:942 +msgid "" +"an improved version of the AY-3-8910 with a bigger frequency range, duty " +"cycles, configurable noise and per-channel envelopes!" +msgstr "" +"en förbättrad version av AY-3-8910 med ett större frekvensområde, " +"arbetscykler, konfigurerbart brus och ADSR per kanal!" + +#: src/engine/sysDef.cpp:953 +msgid "Commodore VIC-20" +msgstr "Commodore VIC-20" + +#: src/engine/sysDef.cpp:954 +msgid "" +"Commodore's successor to the PET.\n" +"its square wave channels are more than just square..." +msgstr "" +"Commodores efterträdare till PET.\n" +"Dess kvadratvågkanaler är mer än bara fyrkantiga..." + +#: src/engine/sysDef.cpp:955 src/gui/settings.cpp:136 src/gui/settings.cpp:206 +#: src/gui/settings.cpp:3970 +msgid "Low" +msgstr "Låg" + +#: src/engine/sysDef.cpp:955 +msgid "Mid" +msgstr "Mitten" + +#: src/engine/sysDef.cpp:955 src/gui/settings.cpp:135 src/gui/settings.cpp:208 +#: src/gui/settings.cpp:3971 +msgid "High" +msgstr "Hög" + +#: src/engine/sysDef.cpp:964 +msgid "Commodore PET" +msgstr "Commodore PET" + +#: src/engine/sysDef.cpp:965 +msgid "" +"one channel of 1-bit wavetable which is better (and worse) than the PC " +"Speaker." +msgstr "" +"en kanal med 1-bit wavetable som är bättre (och sämre) än PC-högtalaren." + +#: src/engine/sysDef.cpp:966 src/engine/sysDef.cpp:1262 +#: src/engine/sysDef.cpp:2100 src/gui/editControls.cpp:433 +#: src/gui/settings.cpp:4017 src/gui/settings.cpp:4095 +msgid "Wave" +msgstr "Våg" + +#: src/engine/sysDef.cpp:975 src/gui/settings.cpp:4052 +msgid "SNES" +msgstr "SNES" + +#: src/engine/sysDef.cpp:976 +msgid "FM? nah... samples! Nintendo's answer to Sega." +msgstr "FM? nä... samples! Nintendos svar på Sega." + +#: src/engine/sysDef.cpp:983 +msgid "18xx: Enable echo buffer" +msgstr "18xx: Aktivera ekobuffert" + +#: src/engine/sysDef.cpp:984 +msgid "19xx: Set echo delay (0 to F)" +msgstr "19xx: Ange ekodelay (0 till F)" + +#: src/engine/sysDef.cpp:985 +msgid "1Axx: Set left echo volume" +msgstr "1Axx: Ange vänster ekovolym" + +#: src/engine/sysDef.cpp:986 +msgid "1Bxx: Set right echo volume" +msgstr "1Bxx: Ange höger ekovolym" + +#: src/engine/sysDef.cpp:987 +msgid "1Cxx: Set echo feedback" +msgstr "1Cxx: Ställ in ekoåterkoppling" + +#: src/engine/sysDef.cpp:988 +msgid "1Exx: Set dry output volume (left)" +msgstr "1Exx: Ange torrutgångsvolym (vänster)" + +#: src/engine/sysDef.cpp:989 +msgid "1Fxx: Set dry output volume (right)" +msgstr "1Fxx: Ange torrutgångsvolym (höger)" + +#: src/engine/sysDef.cpp:990 +msgid "30xx: Set echo filter coefficient 0" +msgstr "30xx: Ställ in ekofilterkoefficient 0" + +#: src/engine/sysDef.cpp:991 +msgid "31xx: Set echo filter coefficient 1" +msgstr "31xx: Ställ in ekofilterkoefficient 1" + +#: src/engine/sysDef.cpp:992 +msgid "32xx: Set echo filter coefficient 2" +msgstr "32xx: Ställ in ekofilterkoefficient 2" + +#: src/engine/sysDef.cpp:993 +msgid "33xx: Set echo filter coefficient 3" +msgstr "33xx: Ställ in ekofilterkoefficient 3" + +#: src/engine/sysDef.cpp:994 +msgid "34xx: Set echo filter coefficient 4" +msgstr "34xx: Ställ in ekofilterkoefficient 4" + +#: src/engine/sysDef.cpp:995 +msgid "35xx: Set echo filter coefficient 5" +msgstr "35xx: Ställ in ekofilterkoefficient 5" + +#: src/engine/sysDef.cpp:996 +msgid "36xx: Set echo filter coefficient 6" +msgstr "36xx: Ställ in ekofilterkoefficient 6" + +#: src/engine/sysDef.cpp:997 +msgid "37xx: Set echo filter coefficient 7" +msgstr "37xx: Ställ in ekofilterkoefficient 7" + +#: src/engine/sysDef.cpp:1002 +msgid "12xx: Toggle echo on this channel" +msgstr "12xx: Växla eko på denna kanal" + +#: src/engine/sysDef.cpp:1003 +msgid "13xx: Toggle pitch modulation" +msgstr "13xx: Växla tonhöjdsmodulering" + +#: src/engine/sysDef.cpp:1004 +msgid "14xy: Toggle invert (x: left; y: right)" +msgstr "14xy: Växla invertering (x: vänster; y: höger)" + +#: src/engine/sysDef.cpp:1005 +msgid "" +"15xx: Set envelope mode (0: ADSR, 1: gain/direct, 2: dec, 3: exp, 4: inc, 5: " +"bent)" +msgstr "" +"15xx: Ange envelope-läge (0: ADSR, 1: gain/direkt, 2: dec, 3: exp, 4: inc, " +"5: böjd)" + +#: src/engine/sysDef.cpp:1006 +msgid "16xx: Set gain (00 to 7F if direct; 00 to 1F otherwise)" +msgstr "16xx: Ange gain (00 till 7F om direkt; 00 till 1F annars)" + +#: src/engine/sysDef.cpp:1007 +msgid "1Dxx: Set noise frequency (00 to 1F)" +msgstr "1Dxx: Ange brusfrekvens (00 till 1F)" + +#: src/engine/sysDef.cpp:1008 +msgid "20xx: Set attack (0 to F)" +msgstr "20xx: Ange attack (0 till F)" + +#: src/engine/sysDef.cpp:1009 +msgid "21xx: Set decay (0 to 7)" +msgstr "21xx: Ange decay (0 till 7)" + +#: src/engine/sysDef.cpp:1010 +msgid "22xx: Set sustain (0 to 7)" +msgstr "22xx: Ange sustain (0 till 7)" + +#: src/engine/sysDef.cpp:1011 +msgid "23xx: Set release (00 to 1F)" +msgstr "23xx: Ange release (00 till 1F)" + +#: src/engine/sysDef.cpp:1016 +msgid "Konami VRC6" +msgstr "Konami VRC6" + +#: src/engine/sysDef.cpp:1017 +msgid "an expansion chip for the Famicom, featuring a quirky sawtooth channel." +msgstr "ett expansionschip för Famicom, med en unik sågtandskanal." + +#: src/engine/sysDef.cpp:1018 +msgid "VRC6 1" +msgstr "VRC6 1" + +#: src/engine/sysDef.cpp:1018 +msgid "VRC6 2" +msgstr "VRC6 2" + +#: src/engine/sysDef.cpp:1018 +msgid "VRC6 Saw" +msgstr "VRC6 Såg" + +#: src/engine/sysDef.cpp:1024 src/engine/sysDef.cpp:2092 +msgid "12xx: Set duty cycle (pulse: 0 to 7)" +msgstr "12xx: Ange arbetscykel (puls: 0 till 7)" + +#: src/engine/sysDef.cpp:1030 +msgid "Yamaha YM2413 (OPLL)" +msgstr "Yamaha YM2413 (OPLL)" + +#: src/engine/sysDef.cpp:1031 +msgid "" +"cost-reduced version of the OPL with 16 patches and only one of them is user-" +"configurable." +msgstr "" +"kostnadsreducerad version av OPL med 16 patchar och endast en av dem är " +"användarkonfigurerbara." + +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1173 +#: src/engine/sysDef.cpp:1185 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:2006 +msgid "FM 9" +msgstr "FM 9" + +#: src/engine/sysDef.cpp:1042 +msgid "Famicom Disk System (chip)" +msgstr "Famicom Disk System (chip)" + +#: src/engine/sysDef.cpp:1043 +msgid "a disk drive for the Famicom which also contains one wavetable channel." +msgstr "en diskenhet för Famicom som också innehåller en wavetable-kanal." + +#: src/engine/sysDef.cpp:1044 src/gui/settings.cpp:4039 +msgid "FDS" +msgstr "FDS" + +#: src/engine/sysDef.cpp:1051 +msgid "11xx: Set modulation depth" +msgstr "11xx: Ange moduleringsdjup" + +#: src/engine/sysDef.cpp:1052 +msgid "12xy: Set modulation speed high byte (x: enable; y: value)" +msgstr "12xy: Ange moduleringshastighet hög byte (x: aktivera; y: värde)" + +#: src/engine/sysDef.cpp:1053 +msgid "13xx: Set modulation speed low byte" +msgstr "13xx: Ställ in moduleringshastighet låg byte" + +#: src/engine/sysDef.cpp:1054 +msgid "14xx: Set modulator position" +msgstr "14xx: Ange modulatorns position" + +#: src/engine/sysDef.cpp:1055 +msgid "15xx: Set modulator table to waveform" +msgstr "15xx: Ställ in modulatortabellen på vågform" + +#: src/engine/sysDef.cpp:1060 +msgid "MMC5" +msgstr "MMC5" + +#: src/engine/sysDef.cpp:1061 +msgid "" +"an expansion chip for the Famicom, featuring a little-known PCM channel." +msgstr "ett expansionschip för Famicom, med en föga känd PCM-kanal." + +#: src/engine/sysDef.cpp:1073 src/gui/settings.cpp:4041 +msgid "Namco 163" +msgstr "Namco 163" + +#: src/engine/sysDef.cpp:1074 +msgid "an expansion chip for the Famicom, with full wavetable." +msgstr "ett expansionschip för Famicom, med full wavetable." + +#: src/engine/sysDef.cpp:1081 +msgid "18xx: Change channel limits (0 to 7, x + 1)" +msgstr "18xx: Ändra kanalgränserna (0 till 7, x + 1)" + +#: src/engine/sysDef.cpp:1082 +msgid "20xx: Load a waveform into memory" +msgstr "20xx: Ladda en vågform i minnet" + +#: src/engine/sysDef.cpp:1083 +msgid "21xx: Set position for wave load" +msgstr "21xx: Ange position för vågbelastning" + +#: src/engine/sysDef.cpp:1086 +msgid "10xx: Select waveform" +msgstr "10xx: Välj vågform" + +#: src/engine/sysDef.cpp:1087 +msgid "11xx: Set waveform position in RAM" +msgstr "11xx: Ange vågformens position i RAM" + +#: src/engine/sysDef.cpp:1088 +msgid "12xx: Set waveform length in RAM (04 to FC in steps of 4)" +msgstr "12xx: Ange vågformslängden i RAM (04 till FC i steg om 4)" + +#: src/engine/sysDef.cpp:1089 +msgid "15xx: Set waveform load position" +msgstr "15xx: Ställ in vågformens belastningsposition" + +#: src/engine/sysDef.cpp:1090 +msgid "16xx: Set waveform load length (04 to FC in steps of 4)" +msgstr "16xx: Ställ in vågformens belastningslängd (04 till FC i steg om 4)" + +#: src/engine/sysDef.cpp:1095 +msgid "Yamaha YM2203 (OPN)" +msgstr "Yamaha YM2203 (OPN)" + +#: src/engine/sysDef.cpp:1096 +msgid "" +"cost-reduced version of the OPM with a different register layout and no " +"stereo...\n" +"...but it has a built-in AY-3-8910! (actually an YM2149)" +msgstr "" +"kostnadsreducerad version av OPM med en annan registerlayout och ingen " +"stereo...\n" +"...men det har ett inbyggd AY-3-8910! (faktiskt ett YM2149)" + +#: src/engine/sysDef.cpp:1107 +msgid "Yamaha YM2203 (OPN) Extended Channel 3" +msgstr "Yamaha YM2203 (OPN) utökad kanal 3" + +#: src/engine/sysDef.cpp:1108 +msgid "" +"cost-reduced version of the OPM with a different register layout and no " +"stereo...\n" +"...but it has a built-in AY-3-8910! (actually an YM2149)\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies" +msgstr "" +"kostnadsreducerad version av OPM med en annan registerlayout och " +"ingenstereo...\n" +"...men det har ett inbyggd AY-3-8910! (faktiskt ett YM2149)\n" +"detta är i utökat kanalläge, vilket förvandlar den tredje FM-kanalen till " +"fyra operatorer med självständiga toner/frekvenser" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP1" +msgstr "FM 3 OP1" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP2" +msgstr "FM 3 OP2" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP3" +msgstr "FM 3 OP3" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP4" +msgstr "FM 3 OP4" + +#: src/engine/sysDef.cpp:1120 +msgid "Yamaha YM2203 (OPN) CSM" +msgstr "Yamaha YM2203 (OPN) CSM" + +#: src/engine/sysDef.cpp:1121 +msgid "" +"cost-reduced version of the OPM with a different register layout and no " +"stereo...\n" +"...but it has a built-in AY-3-8910! (actually an YM2149)\n" +"CSM blah blah" +msgstr "" +"kostnadsreducerad version av OPM med en annan registerlayout och " +"ingenstereo...\n" +"...men det har ett inbyggd AY-3-8910! (faktiskt ett YM2149)\n" +"CSM bla bla" + +#: src/engine/sysDef.cpp:1122 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1383 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1559 src/engine/sysDef.cpp:1861 +msgid "CSM Timer" +msgstr "CSM Timer" + +#: src/engine/sysDef.cpp:1133 +msgid "Yamaha YM2608 (OPNA)" +msgstr "Yamaha YM2608 (OPNA)" + +#: src/engine/sysDef.cpp:1134 +msgid "" +"OPN but twice the FM channels, stereo makes a come-back and has rhythm and " +"ADPCM channels." +msgstr "" +"OPN men dubbelt så många FM-kanaler, stereo gör en comeback och har rytm och " +"ADPCM-kanaler." + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1481 +#: src/gui/insEdit.cpp:3302 src/gui/insEdit.cpp:3624 +msgid "Kick" +msgstr "Bastrumma" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:210 src/gui/insEdit.cpp:218 +msgid "Snare" +msgstr "Virveltrumma" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:212 src/gui/insEdit.cpp:220 +#: src/gui/insEdit.cpp:1909 src/gui/insEdit.cpp:2014 +msgid "Top" +msgstr "Ridcymbal" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:213 src/gui/insEdit.cpp:219 +msgid "HiHat" +msgstr "Hi-hat" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:211 +msgid "Tom" +msgstr "Puka" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 +msgid "Rim" +msgstr "Rimshot" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:1693 +msgid "ADPCM" +msgstr "ADPCM" + +#: src/engine/sysDef.cpp:1145 +msgid "Yamaha YM2608 (OPNA) Extended Channel 3" +msgstr "Yamaha YM2608 (OPNA) utökad kanal 3" + +#: src/engine/sysDef.cpp:1146 +msgid "" +"OPN but twice the FM channels, stereo makes a come-back and has rhythm and " +"ADPCM channels.\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies" +msgstr "" +"OPN men dubbelt så många FM-kanaler, stereo gör en comeback och har rytm och " +"ADPCM-kanaler.\n" +"detta är i utökat kanalläge, vilket förvandlar den tredje FM-kanalen till " +"fyra operatorer med självständiga toner/frekvenser" + +#: src/engine/sysDef.cpp:1158 +msgid "Yamaha YM2608 (OPNA) CSM" +msgstr "Yamaha YM2608 (OPNA) CSM" + +#: src/engine/sysDef.cpp:1159 +msgid "" +"OPN but twice the FM channels, stereo makes a come-back and has rhythm and " +"ADPCM channels.\n" +"CSM blah blah" +msgstr "" +"OPN men dubbelt så många FM-kanaler, stereo gör en comeback och har rytm och " +"ADPCM-kanaler.\n" +"CSM bla bla" + +#: src/engine/sysDef.cpp:1171 +msgid "Yamaha YM3526 (OPL)" +msgstr "Yamaha YM3526 (OPL)" + +#: src/engine/sysDef.cpp:1172 +msgid "" +"OPN, but what if you only had two operators, no stereo, no detune and a " +"lower ADSR parameter range?" +msgstr "" +"OPN, men tänk om du bara hade två operatorer, ingen stereo, ingen detune och " +"ett lägre ADSR-parameterintervall?" + +#: src/engine/sysDef.cpp:1183 +msgid "Yamaha YM3812 (OPL2)" +msgstr "Yamaha YM3812 (OPL2)" + +#: src/engine/sysDef.cpp:1184 +msgid "OPL, but what if you had more waveforms to choose than the normal sine?" +msgstr "OPL, men tänk om du hade fler vågformer att välja på än normalsinus?" + +#: src/engine/sysDef.cpp:1195 +msgid "Yamaha YMF262 (OPL3)" +msgstr "Yamaha YMF262 (OPL3)" + +#: src/engine/sysDef.cpp:1196 +msgid "" +"OPL2, but what if you had twice the channels, 4-op mode, stereo and even " +"more waveforms?" +msgstr "" +"OPL2, men tänk om du hade två gånger så många kanaler, 4-operatorsläge, " +"stereo och till och med fler vågformer?" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 1" +msgstr "4OP 1" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 3" +msgstr "4OP 3" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 5" +msgstr "4OP 5" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 7" +msgstr "4OP 7" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 9" +msgstr "4OP 9" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 10" +msgstr "FM 10" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 11" +msgstr "4OP 11" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 12" +msgstr "FM 12" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 13" +msgstr "FM 13" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 14" +msgstr "FM 14" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 15" +msgstr "FM 15" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:2006 +msgid "FM 16" +msgstr "FM 16" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:2006 +msgid "FM 17" +msgstr "FM 17" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:2006 +msgid "FM 18" +msgstr "FM 18" + +#: src/engine/sysDef.cpp:1208 src/gui/settings.cpp:4051 +msgid "MultiPCM" +msgstr "MultiPCM" + +#: src/engine/sysDef.cpp:1209 +msgid "" +"how many channels of PCM do you want?\n" +"MultiPCM: yes" +msgstr "" +"hur många PCM-kanaler vill du ha?\n" +"MultiPCM: ja" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 17" +msgstr "Kanal 17" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 18" +msgstr "Kanal 18" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 19" +msgstr "Kanal 19" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 20" +msgstr "Kanal 20" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 21" +msgstr "Kanal 21" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 22" +msgstr "Kanal 22" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 23" +msgstr "Kanal 23" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 24" +msgstr "Kanal 24" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 25" +msgstr "Kanal 25" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 26" +msgstr "Kanal 26" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 27" +msgstr "Kanal 27" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 28" +msgstr "Kanal 28" + +#: src/engine/sysDef.cpp:1217 +msgid "PC Speaker" +msgstr "PC-högtalare" + +#: src/engine/sysDef.cpp:1218 +msgid "good luck! you get one square and no volume control." +msgstr "lycka till! du får en kvadrat och ingen volymkontroll." + +#: src/engine/sysDef.cpp:1219 src/engine/sysDef.cpp:1228 +#: src/gui/guiConst.cpp:1394 src/gui/waveEdit.cpp:199 src/gui/insEdit.cpp:183 +#: src/gui/insEdit.cpp:194 src/gui/insEdit.cpp:326 src/gui/insEdit.cpp:656 +msgid "Square" +msgstr "Kvadrat" + +#: src/engine/sysDef.cpp:1226 +msgid "Pong" +msgstr "Pong" + +#: src/engine/sysDef.cpp:1227 +msgid "please don't use this chip. it was added as a joke." +msgstr "vänligen använd ej detta chip. det var lagt till för skojs skull." + +#: src/engine/sysDef.cpp:1235 src/gui/settings.cpp:4044 +msgid "POKEY" +msgstr "POKEY" + +#: src/engine/sysDef.cpp:1236 +msgid "" +"TIA, but better and more flexible.\n" +"used in the Atari 8-bit family of computers (400/800/XL/XE)." +msgstr "" +"TIA, men bättre och mer flexibelt.\n" +"används i Ataris 8-bit familj av datorer (400/800/XL/XE)." + +#: src/engine/sysDef.cpp:1243 src/engine/sysDef.cpp:1714 +msgid "10xx: Set waveform (0 to 7)" +msgstr "10xx: Ange vågform (0 till 7)" + +#: src/engine/sysDef.cpp:1244 +msgid "11xx: Set AUDCTL" +msgstr "11xx: Ange AUDCTL" + +#: src/engine/sysDef.cpp:1245 +msgid "12xx: Toggle two-tone mode" +msgstr "12xx: Växla till tvåtonsläge" + +#: src/engine/sysDef.cpp:1250 +msgid "Ricoh RF5C68" +msgstr "Ricoh RF5C68" + +#: src/engine/sysDef.cpp:1251 +msgid "" +"this is like SNES' sound chip but without interpolation and the rest of nice " +"bits." +msgstr "" +"detta är som SNES ljudchip men utan interpolation och resten av de trevliga " +"bitar." + +#: src/engine/sysDef.cpp:1260 src/gui/settings.cpp:4046 +msgid "WonderSwan" +msgstr "WonderSwan" + +#: src/engine/sysDef.cpp:1261 +msgid "developed by the makers of the Game Boy and the Virtual Boy..." +msgstr "utvecklad av skaparna för Game Boy och Virtual Boy..." + +#: src/engine/sysDef.cpp:1262 +msgid "Wave/PCM" +msgstr "Våg/PCM" + +#: src/engine/sysDef.cpp:1262 +msgid "Wave/Sweep" +msgstr "Våg/Filtersvep" + +#: src/engine/sysDef.cpp:1262 +msgid "Wave/Noise" +msgstr "Våg/Brus" + +#: src/engine/sysDef.cpp:1269 +msgid "11xx: Setup noise mode (0: disabled; 1-8: enabled/tap)" +msgstr "11xx: Ange brusläge (0: avaktiverad; 1-8: aktiverad/tryck)" + +#: src/engine/sysDef.cpp:1270 +msgid "12xx: Setup sweep period (0: disabled; 1-20: enabled/period)" +msgstr "12xx: Ange filtersvepperiod (0: inaktiverad; 1-20: aktiverad/period)" + +#: src/engine/sysDef.cpp:1271 +msgid "13xx: Set sweep amount" +msgstr "13xx: Ange filtersvepbelopp" + +#: src/engine/sysDef.cpp:1277 +msgid "Yamaha YM2414 (OPZ)" +msgstr "Yamaha YM2414 (OPZ)" + +#: src/engine/sysDef.cpp:1278 +msgid "" +"like OPM, but with more waveforms, fixed frequency mode and totally... " +"undocumented.\n" +"used in the Yamaha TX81Z and some other synthesizers." +msgstr "" +"som OPM, men med fler vågformer, fast frekvensläge och helt... " +"odokumenterad.\n" +"används i Yamaha TX81Z och några andra synthesizers." + +#: src/engine/sysDef.cpp:1285 +msgid "2Fxx: Toggle hard envelope reset on new notes" +msgstr "2Fxx: Växla till hård ADSR-återställning på nya noter" + +#: src/engine/sysDef.cpp:1291 src/gui/settings.cpp:4069 +msgid "Pokémon Mini" +msgstr "Pokémon Mini" + +#: src/engine/sysDef.cpp:1292 +msgid "this one is like PC Speaker but has duty cycles." +msgstr "detta är som PC-högtalare men har arbetscykler." + +#: src/engine/sysDef.cpp:1293 src/gui/settings.cpp:4092 src/gui/waveEdit.cpp:33 +msgid "Pulse" +msgstr "Puls" + +#: src/engine/sysDef.cpp:1300 +msgid "SegaPCM" +msgstr "SegaPCM" + +#: src/engine/sysDef.cpp:1301 +msgid "" +"used in some Sega arcade boards (like OutRun), and usually paired with a " +"YM2151." +msgstr "" +"används i vissa Sega arkadbrädor (som OutRun), och vanligtvis parat ihop med " +"en YM2151." + +#: src/engine/sysDef.cpp:1312 src/gui/settings.cpp:4040 +msgid "Virtual Boy" +msgstr "Virtual Boy" + +#: src/engine/sysDef.cpp:1313 +msgid "" +"a console which failed to sell well due to its headache-inducing features." +msgstr "" +"en spelkonsol som misslyckades med att sälja bra på grund av dess " +"huvudvärksframkallande funktioner." + +#: src/engine/sysDef.cpp:1321 +msgid "11xx: Set noise length (0 to 7)" +msgstr "11xx: Ange bruslängd (0 till 7)" + +#: src/engine/sysDef.cpp:1322 +msgid "" +"12xy: Setup envelope (x: enabled/loop (1: enable, 3: enable+loop); y: speed/" +"direction (0-7: down, 8-F: up))" +msgstr "" +"12xy: Ställ in ADSR (x: akltiverad/loop (1: aktivera, 3: aktivera+loop); y: " +"hastighet/ riktning (0-7: ner, 8-F: upp))" + +#: src/engine/sysDef.cpp:1323 +msgid "13xy: Setup sweep (x: speed; y: shift; channel 5 only)" +msgstr "13xy: Ange filtersvep (x: hastighet; y: skift; endast kanal 5)" + +#: src/engine/sysDef.cpp:1324 +msgid "" +"14xy: Setup modulation (x: enabled/loop (1: enable, 3: enable+loop); y: " +"speed; channel 5 only)" +msgstr "" +"14xy: Ange modulation (x: aktiverad/loop (1: aktivera, 3: aktivera+loop); y: " +"hastighet; endast kanal 5)" + +#: src/engine/sysDef.cpp:1325 +msgid "15xx: Set modulation waveform (x: wavetable; channel 5 only)" +msgstr "15xx: Ange moduleringsvågform (x: wavetable; endast kanal 5)" + +#: src/engine/sysDef.cpp:1330 +msgid "Konami VRC7" +msgstr "Konami VRC7" + +#: src/engine/sysDef.cpp:1331 +msgid "" +"like OPLL, but even more cost reductions applied. three FM channels went " +"missing, and drums mode did as well..." +msgstr "" +"som OPLL, men ännu fler kostnadssänkningar tillämpades. tre FM-kanaler gick " +"bort, och trumläget gjorde det också..." + +#: src/engine/sysDef.cpp:1342 +msgid "Yamaha YM2610B (OPNB2)" +msgstr "Yamaha YM2610B (OPNB2)" + +#: src/engine/sysDef.cpp:1343 +msgid "" +"so Taito asked Yamaha if they could get the two missing FM channels back, " +"and Yamaha gladly provided them with this chip." +msgstr "" +"så Taito frågade Yamaha om de kunde få tillbaka de två saknade FM-kanalerna," +"och Yamaha lämnade dem gärna med detta chip." + +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/gui/settings.cpp:4061 +msgid "ADPCM-B" +msgstr "ADPCM-B" + +#: src/engine/sysDef.cpp:1354 +msgid "ZX Spectrum Beeper" +msgstr "ZX Spectrum Beeper" + +#: src/engine/sysDef.cpp:1355 +msgid "" +"the ZX Spectrum only had a basic beeper capable of...\n" +"...a bunch of thin pulses and tons of other interesting stuff!\n" +"Furnace provides a thin pulse system." +msgstr "" +"ZX Spectrum hade bara en grundläggande pipare som kan...\n" +"...en massa tunna pulser och massor av andra intressanta saker!\n" +"Furnace ger ett tunt pulssystem." + +#: src/engine/sysDef.cpp:1362 src/engine/sysDef.cpp:1950 +msgid "12xx: Set pulse width" +msgstr "12xx: Ange pulsbredd" + +#: src/engine/sysDef.cpp:1363 +msgid "17xx: Trigger overlay drum" +msgstr "17xx: Trigga överlagringstrumma" + +#: src/engine/sysDef.cpp:1368 +msgid "Yamaha YM2612 (OPN2) Extended Channel 3" +msgstr "Yamaha YM2612 (OPN2) utökad kanal 3" + +#: src/engine/sysDef.cpp:1369 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies." +msgstr "" +"detta ljudchip är mest känt för att vara i Sega Genesis (men det var också " +"på FM Towns-datorn).\n" +"detta är i utökat kanalläge, vilket förvandlar den tredje FM-kanalen till " +"fyra operatorer med självständiga toner/frekvenser." + +#: src/engine/sysDef.cpp:1381 +msgid "Yamaha YM2612 (OPN2) CSM" +msgstr "Yamaha YM2612 (OPN2) CSM" + +#: src/engine/sysDef.cpp:1382 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this one includes CSM mode control for special effects on Channel 3." +msgstr "" +"detta ljudchip är mest känt för att vara i Sega Genesis (men det var också " +"på FM Towns-datorn).\n" +"detta inkluderar CSM-lägeskontroll för specialeffekter på kanal 3." + +#: src/engine/sysDef.cpp:1394 src/gui/settings.cpp:4042 +msgid "Konami SCC" +msgstr "Konami SCC" + +#: src/engine/sysDef.cpp:1395 +msgid "" +"a wavetable chip made by Konami for use with the MSX.\n" +"the last channel shares its wavetable with the previous one though." +msgstr "" +"ett wavetable-chip tillverkat av Konami för användning med MSX.\n" +"den sista kanalen delar dock sitt wavetable med den föregående kanalen." + +#: src/engine/sysDef.cpp:1405 +msgid "Yamaha YM3526 (OPL) with drums" +msgstr "Yamaha YM3526 (OPL) med trummor" + +#: src/engine/sysDef.cpp:1406 +msgid "the OPL chip but with drums mode enabled." +msgstr "OPL-chippet men med trumläge påslaget." + +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1693 +msgid "Kick/FM 7" +msgstr "Bastrumma/FM 7" + +#: src/engine/sysDef.cpp:1417 +msgid "Yamaha YM3812 (OPL2) with drums" +msgstr "Yamaha YM3812 (OPL2) med trummor" + +#: src/engine/sysDef.cpp:1418 +msgid "the OPL2 chip but with drums mode enabled." +msgstr "OPL2-chippet men med trumläge påslaget." + +#: src/engine/sysDef.cpp:1429 +msgid "Yamaha YMF262 (OPL3) with drums" +msgstr "Yamaha YMF262 (OPL3) med trummor" + +#: src/engine/sysDef.cpp:1430 +msgid "the OPL3 chip but with drums mode enabled." +msgstr "OPL3-chippet men med trumläge påslaget." + +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1631 +msgid "Kick/FM 16" +msgstr "Bastrumma/FM 16" + +#: src/engine/sysDef.cpp:1441 +msgid "Yamaha YM2610 (OPNB)" +msgstr "Yamaha YM2610 (OPNB)" + +#: src/engine/sysDef.cpp:1442 +msgid "" +"this chip was used in SNK's Neo Geo arcade board and video game console.\n" +"it's like OPNA but the rhythm channels are ADPCM channels and two FM " +"channels went missing." +msgstr "" +"detta chip användes i SNK Neo Geo arkadbräd och videospelkonsol.\n" +"det är som OPNA men rytmkanalerna är ADPCM-kanaler och två FM-kanaler " +"försvann." + +#: src/engine/sysDef.cpp:1453 +msgid "Yamaha YM2610 (OPNB) Extended Channel 2" +msgstr "Yamaha YM2610 (OPNB) utökad kanal 2" + +#: src/engine/sysDef.cpp:1454 +msgid "" +"this chip was used in SNK's Neo Geo arcade board and video game console.\n" +"it's like OPNA but the rhythm channels are ADPCM channels and two FM " +"channels went missing.\n" +"this one is in Extended Channel mode, which turns the second FM channel into " +"four operators with independent notes/frequencies." +msgstr "" +"detta chip användes i SNK Neo Geo arkadbräd och videospelkonsol.\n" +"det är som OPNA men rytmkanalerna är ADPCM-kanaler och två FM-kanaler " +"försvann.\n" +"detta är i utökat kanalläge, vilket förvandlar den andra FM-kanalen till " +"fyra operatorer med självständiga toner/frekvenser." + +#: src/engine/sysDef.cpp:1466 +msgid "Yamaha YM2610 (OPNB) CSM" +msgstr "Yamaha YM2610 (OPNB) CSM" + +#: src/engine/sysDef.cpp:1467 +msgid "" +"this chip was used in SNK's Neo Geo arcade board and video game console.\n" +"it's like OPNA but the rhythm channels are ADPCM channels and two FM " +"channels went missing.\n" +"this one includes CSM mode control for special effects on Channel 2." +msgstr "" +"detta chip användes i SNK Neo Geo arkadbräd och videospelkonsol.\n" +"det är som OPNA men rytmkanalerna är ADPCM-kanaler och två FM-kanaler " +"försvann.\n" +"detta inkluderar CSM-lägeskontroll för specialeffekter på kanal 2." + +#: src/engine/sysDef.cpp:1479 +msgid "Yamaha YM2413 (OPLL) with drums" +msgstr "Yamaha YM2413 (OPLL) med trummor" + +#: src/engine/sysDef.cpp:1480 +msgid "the OPLL chips but with drums mode turned on." +msgstr "OPLL-chippet men med trumläge påslaget." + +#: src/engine/sysDef.cpp:1491 +msgid "3xxx: Load LFSR (0 to FFF)" +msgstr "3xxx: Ladda LFSR (0 till FFF)" + +#: src/engine/sysDef.cpp:1497 +msgid "Atari Lynx" +msgstr "Atari Lynx" + +#: src/engine/sysDef.cpp:1498 +msgid "" +"a portable console made by Atari. it has all of Atari's trademark waveforms." +msgstr "" +"en bärbar spelkonsol tillverkad av Atari. den har alla Ataris " +"varumärkesvågformer." + +#: src/engine/sysDef.cpp:1509 +msgid "10xx: Set echo feedback level (00 to FF)" +msgstr "10xx: Ange ekoåterkopplingsnivå (00 till FF)" + +#: src/engine/sysDef.cpp:1510 +msgid "11xx: Set channel echo level (00 to FF)" +msgstr "11xx: Ange kanalekonivå (00 till FF)" + +#: src/engine/sysDef.cpp:1511 +msgid "12xx: Toggle QSound algorithm (0: disabled; 1: enabled)" +msgstr "12xx: Växla QSound-algoritm (0: inaktiverad; 1: aktiverad)" + +#: src/engine/sysDef.cpp:1513 +msgid "3xxx: Set echo delay buffer length (000 to AA5)" +msgstr "3xxx: Ställ in ekodelaybuffertlängd (000 till AA5)" + +#: src/engine/sysDef.cpp:1519 +msgid "Capcom QSound" +msgstr "Capcom QSound" + +#: src/engine/sysDef.cpp:1520 +msgid "" +"used in some of Capcom's arcade boards. surround-like sampled sound with " +"echo." +msgstr "" +"används i några av Capcoms arkadbrädor. surroundliknande samplad ljud med " +"eko." + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +#: src/engine/sysDef.cpp:2056 +msgid "PCM 1" +msgstr "PCM 1" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +#: src/engine/sysDef.cpp:2056 +msgid "PCM 2" +msgstr "PCM 2" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 3" +msgstr "PCM 3" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 4" +msgstr "PCM 4" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 5" +msgstr "PCM 5" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 6" +msgstr "PCM 6" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 7" +msgstr "PCM 7" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 8" +msgstr "PCM 8" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 9" +msgstr "PCM 9" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 10" +msgstr "PCM 10" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 11" +msgstr "PCM 11" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 12" +msgstr "PCM 12" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 13" +msgstr "PCM 13" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 14" +msgstr "PCM 14" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 15" +msgstr "PCM 15" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 16" +msgstr "PCM 16" + +#: src/engine/sysDef.cpp:1521 +msgid "ADPCM 1" +msgstr "ADPCM 1" + +#: src/engine/sysDef.cpp:1521 +msgid "ADPCM 2" +msgstr "ADPCM 2" + +#: src/engine/sysDef.cpp:1521 +msgid "ADPCM 3" +msgstr "ADPCM 3" + +#: src/engine/sysDef.cpp:1530 src/gui/settings.cpp:4048 +msgid "VERA" +msgstr "VERA" + +#: src/engine/sysDef.cpp:1531 +msgid "the chip used in a computer design created by The 8-Bit Guy." +msgstr "chippet som används i en datordesign skapad av The 8-Bit Guy." + +#: src/engine/sysDef.cpp:1538 +msgid "20xx: Set waveform" +msgstr "20xx: Ange vågform" + +#: src/engine/sysDef.cpp:1539 +msgid "22xx: Set duty cycle (0 to 3F)" +msgstr "22xx: Ange arbetscykel (0 till 3F)" + +#: src/engine/sysDef.cpp:1544 +msgid "Yamaha YM2610B (OPNB2) Extended Channel 3" +msgstr "Yamaha YM2610B (OPNB2) utökad kanal 3" + +#: src/engine/sysDef.cpp:1545 +msgid "" +"so Taito asked Yamaha if they could get the two missing FM channels back, " +"and Yamaha gladly provided them with this chip.\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies." +msgstr "" +"så Taito frågade Yamaha om de kunde få tillbaka de två saknade FM-kanalerna," +"och Yamaha lämnade dem gärna med detta chip.detta är i utökat kanalläge, " +"vilket förvandlar den tredje FM-kanalen till fyra operatorer med " +"självständiga toner/frekvenser." + +#: src/engine/sysDef.cpp:1557 +msgid "Yamaha YM2610B (OPNB2) CSM" +msgstr "Yamaha YM2610B (OPNB2) CSM" + +#: src/engine/sysDef.cpp:1558 +msgid "" +"so Taito asked Yamaha if they could get the two missing FM channels back, " +"and Yamaha gladly provided them with this chip.\n" +"CSM blah blah" +msgstr "" +"så Taito frågade Yamaha om de kunde få tillbaka de två saknade FM-kanalerna," +"och Yamaha lämnade dem gärna med detta chip.\n" +"CSM bla bla" + +#: src/engine/sysDef.cpp:1570 +msgid "SegaPCM (compatible 5-channel mode)" +msgstr "SegaPCM (kompatibelt 5-kanalsläge)" + +#: src/engine/sysDef.cpp:1571 +msgid "" +"this is the same thing as SegaPCM, but only exposes 5 of the channels for " +"compatibility with DefleMask." +msgstr "" +"detta är samma sak som SegaPCM, men visar bara 5 av kanalerna för " +"kompatibilitet med DefleMask." + +#: src/engine/sysDef.cpp:1582 +msgid "Seta/Allumer X1-010" +msgstr "Seta/Allumer X1-010" + +#: src/engine/sysDef.cpp:1583 +msgid "" +"a sound chip used in several Seta/Allumer-manufactured arcade boards with " +"too many channels of wavetable sound, which also are capable of sampled " +"sound." +msgstr "" +"ett ljudchip som används i flera Seta/Allumer-tillverkade arkadbrädor med " +"för många kanaler med wavetable-ljud, som också kan sampla ljud." + +#: src/engine/sysDef.cpp:1591 +msgid "11xx: Set envelope shape" +msgstr "11xx: Ange ADSR-formen" + +#: src/engine/sysDef.cpp:1592 +msgid "12xx: Set sample bank slot (0 to 7)" +msgstr "12xx: Ange samplebanksplats (0 till 7)" + +#: src/engine/sysDef.cpp:1596 +msgid "20xx: Set PCM frequency (1 to FF)" +msgstr "20xx: Ange PCM-frekvens (1 till FF)" + +#: src/engine/sysDef.cpp:1597 +msgid "" +"22xx: Set envelope mode (bit 0: enable; bit 1: one-shot; bit 2: split shape " +"to L/R; bit 3/5: H.invert right/left; bit 4/6: V.invert right/left)" +msgstr "" +"22xx: Ställ in ADSR-läge (bit 0: aktivera; bit 1: one-shot; bit 2: delad " +"form till L/R; bit 3/5: H.invertera höger/vänster; bit 4/6: V.invertera " +"höger/vänster)" + +#: src/engine/sysDef.cpp:1598 +msgid "23xx: Set envelope period" +msgstr "23xx: Ange ADSR-period" + +#: src/engine/sysDef.cpp:1606 +msgid "Konami Bubble System WSG" +msgstr "Konami Bubble System WSG" + +#: src/engine/sysDef.cpp:1607 +msgid "" +"this is the wavetable part of the Bubble System, which also had two " +"AY-3-8910s." +msgstr "" +"det här är den wavetable-delen av Bubble System, som också har två stycken " +"AY-3-8910." + +#: src/engine/sysDef.cpp:1619 +msgid "Yamaha YMF278B (OPL4)" +msgstr "Yamaha YMF278B (OPL4)" + +#: src/engine/sysDef.cpp:1620 +msgid "like OPL3, but this time it also has a 24-channel version of MultiPCM." +msgstr "" +"som OPL3, men denna gång har den också en 24-kanalsversion av MultiPCM." + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 17" +msgstr "PCM 17" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 18" +msgstr "PCM 18" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 19" +msgstr "PCM 19" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 20" +msgstr "PCM 20" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 21" +msgstr "PCM 21" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 22" +msgstr "PCM 22" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 23" +msgstr "PCM 23" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 24" +msgstr "PCM 24" + +#: src/engine/sysDef.cpp:1629 +msgid "Yamaha YMF278B (OPL4) with drums" +msgstr "Yamaha YMF278B (OPL4) med trummor" + +#: src/engine/sysDef.cpp:1630 +msgid "the OPL4 but with drums mode turned on." +msgstr "OPL4 men med trumläget påslaget." + +#: src/engine/sysDef.cpp:1638 +msgid "11xx: Set filter mode (00 to 03)" +msgstr "11xx: Ange filterläge (00 till 03)" + +#: src/engine/sysDef.cpp:1639 +msgid "14xx: Set filter coefficient K1 low byte (00 to FF)" +msgstr "14xx: Ange filterkoefficient K1 låg byte (00 till FF)" + +#: src/engine/sysDef.cpp:1640 +msgid "15xx: Set filter coefficient K1 high byte (00 to FF)" +msgstr "15xx: Ange filterkoefficient K1 hög byte (00 till FF)" + +#: src/engine/sysDef.cpp:1641 +msgid "16xx: Set filter coefficient K2 low byte (00 to FF)" +msgstr "16xx: Ange filterkoefficient K2 låg byte (00 till FF)" + +#: src/engine/sysDef.cpp:1642 +msgid "17xx: Set filter coefficient K2 high byte (00 to FF)" +msgstr "17xx: Ange filterkoefficient K2 hög byte (00 till FF)" + +#: src/engine/sysDef.cpp:1643 +msgid "18xx: Set filter coefficient K1 slide up (00 to FF)" +msgstr "18xx: Ange filterkoefficient K1 skjut upp (00 till FF)" + +#: src/engine/sysDef.cpp:1644 +msgid "19xx: Set filter coefficient K1 slide down (00 to FF)" +msgstr "19xx: Ange filterkoefficient K1 skjut ner (00 till FF)" + +#: src/engine/sysDef.cpp:1645 +msgid "1Axx: Set filter coefficient K2 slide up (00 to FF)" +msgstr "1Axx: Ange filterkoefficient K2 glida upp (00 till FF)" + +#: src/engine/sysDef.cpp:1646 +msgid "1Bxx: Set filter coefficient K2 slide down (00 to FF)" +msgstr "1Bxx: Ange filterkoefficient K2 skjut ner (00 till FF)" + +#: src/engine/sysDef.cpp:1647 +msgid "22xx: Set envelope left volume ramp (signed) (00 to FF)" +msgstr "22xx: Ange vänster volymramp för ADSR (signerad) (00 till FF)" + +#: src/engine/sysDef.cpp:1648 +msgid "23xx: Set envelope right volume ramp (signed) (00 to FF)" +msgstr "22xx: Ange höger volymramp för ADSR (signerad) (00 till FF)" + +#: src/engine/sysDef.cpp:1649 +msgid "24xx: Set envelope filter coefficient k1 ramp (signed) (00 to FF)" +msgstr "24xx: Ange ADSR-filterkoefficient k1 ramp (signerad) (00 till FF)" + +#: src/engine/sysDef.cpp:1650 +msgid "" +"25xx: Set envelope filter coefficient k1 ramp (signed, slower) (00 to FF)" +msgstr "" +"25xx: Ange ADSR-filterkoefficient k1 ramp (signerad, långsammare) (00 till " +"FF)" + +#: src/engine/sysDef.cpp:1651 +msgid "26xx: Set envelope filter coefficient k2 ramp (signed) (00 to FF)" +msgstr "26xx: Ange ADSR-filterkoefficient k2 ramp (signerad) (00 till FF)" + +#: src/engine/sysDef.cpp:1652 +msgid "" +"27xx: Set envelope filter coefficient k2 ramp (signed, slower) (00 to FF)" +msgstr "" +"27xx: Ange ADSR-filterkoefficient k2 ramp (signerad, långsammare) (00 till " +"FF)" + +#: src/engine/sysDef.cpp:1656 +msgid "120x: Set pause (bit 0)" +msgstr "120x: Ange paus (bit 0)" + +#: src/engine/sysDef.cpp:1658 +msgid "2xxx: Set envelope count (000 to 1FF)" +msgstr "2xxx: Ange ADSR-antal (000 till 1FF)" + +#: src/engine/sysDef.cpp:1659 +msgid "3xxx: Set filter coefficient K1 (000 to FFF)" +msgstr "3xxx: Ange filterkoefficient K1 (000 till FFF)" + +#: src/engine/sysDef.cpp:1660 +msgid "4xxx: Set filter coefficient K2 (000 to FFF)" +msgstr "4xxx: Ange filterkoefficient K2 (000 till FFF)" + +#: src/engine/sysDef.cpp:1667 +msgid "Ensoniq ES5506" +msgstr "Ensoniq ES5506" + +#: src/engine/sysDef.cpp:1668 +msgid "" +"a sample chip made by Ensoniq, which is the basis for the GF1 chip found in " +"Gravis' Ultrasound cards." +msgstr "" +"ett samplechip tillverkat av Ensoniq, som är grunden för GF1-chippet som " +"finns i Gravis ultraljudskorten." + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 29" +msgstr "Kanal 29" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 30" +msgstr "Kanal 30" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 31" +msgstr "Kanal 31" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 32" +msgstr "Kanal 32" + +#: src/engine/sysDef.cpp:1679 +msgid "Yamaha Y8950" +msgstr "Yamaha Y8950" + +#: src/engine/sysDef.cpp:1680 +msgid "like OPL but with an ADPCM channel." +msgstr "som OPL men med en ADPCM-kanal." + +#: src/engine/sysDef.cpp:1691 +msgid "Yamaha Y8950 with drums" +msgstr "Yamaha Y8950 med trummor" + +#: src/engine/sysDef.cpp:1692 +msgid "the Y8950 chip, in drums mode." +msgstr "Y8950-chippet, i trumläge." + +#: src/engine/sysDef.cpp:1703 +msgid "Konami SCC+" +msgstr "Konami SCC+" + +#: src/engine/sysDef.cpp:1704 +msgid "" +"this is a variant of Konami's SCC chip with the last channel's wavetable " +"being independent." +msgstr "" +"detta är en variant av Konamis SCC-chip med den sista kanalens wavetable " +"självständig." + +#: src/engine/sysDef.cpp:1715 +msgid "12xx: Set pulse width (0 to 7F)" +msgstr "12xx: Ange pulsbredd (0 till 7F)" + +#: src/engine/sysDef.cpp:1716 +msgid "13xx: Set resonance (0 to FF)" +msgstr "13xx: Ange resonans (0 to FF)" + +#: src/engine/sysDef.cpp:1717 +msgid "" +"14xx: Set filter mode (bit 0: ring mod; bit 1: low pass; bit 2: high pass; " +"bit 3: band pass)" +msgstr "" +"14xx: Ange filterläge (bit 0: ringmod; bit 1: lågpass; bit 2: högpass; bit " +"3: bandpass)" + +#: src/engine/sysDef.cpp:1718 +msgid "15xx: Set frequency sweep period low byte" +msgstr "15xx: Ange frekvenssvepperiod låg byte" + +#: src/engine/sysDef.cpp:1719 +msgid "16xx: Set frequency sweep period high byte" +msgstr "16xx: Ange frekvenssvepperiod hög byte" + +#: src/engine/sysDef.cpp:1720 +msgid "17xx: Set volume sweep period low byte" +msgstr "17xx: Ange volymsvepperioden låg byte" + +#: src/engine/sysDef.cpp:1721 +msgid "18xx: Set volume sweep period high byte" +msgstr "18xx: Ställ in volymsvepperiod hög byte" + +#: src/engine/sysDef.cpp:1722 +msgid "19xx: Set cutoff sweep period low byte" +msgstr "19xx: Ange brytfrekvenssvepperiod låg byte" + +#: src/engine/sysDef.cpp:1723 +msgid "1Axx: Set cutoff sweep period high byte" +msgstr "1Axx: Ange brytfrekvenssvepperiod hög byte" + +#: src/engine/sysDef.cpp:1724 +msgid "1Bxx: Set frequency sweep boundary" +msgstr "1Bxx: Ange frekvenssvepgräns" + +#: src/engine/sysDef.cpp:1725 +msgid "1Cxx: Set volume sweep boundary" +msgstr "1Cxx: Ange volymsvepgräns" + +#: src/engine/sysDef.cpp:1726 +msgid "1Dxx: Set cutoff sweep boundary" +msgstr "1Dxx: Ange brytfrekvenssvepgräns" + +#: src/engine/sysDef.cpp:1727 +msgid "1Exx: Set phase reset period low byte" +msgstr "1Exx: Ange fasåterställningsperioden låg byte" + +#: src/engine/sysDef.cpp:1728 +msgid "1Fxx: Set phase reset period high byte" +msgstr "1Fxx: Ange fasåterställningsperioden hög byte" + +#: src/engine/sysDef.cpp:1729 +msgid "20xx: Toggle frequency sweep (bit 0-6: speed; bit 7: direction is up)" +msgstr "" +"20xx: Växla frekvenssvep (bit 0-6: hastighet; bit 7: riktning är uppåt)" + +#: src/engine/sysDef.cpp:1730 +msgid "" +"21xx: Toggle volume sweep (bit 0-4: speed; bit 5: direction is up; bit 6: " +"loop; bit 7: alternate)" +msgstr "" +"21xx: Växla volymfiltersvep (bit 0-4: hastighet; bit 5: riktning är uppåt; " +"bit 6: loop; bit 7: alternativ)" + +#: src/engine/sysDef.cpp:1731 +msgid "22xx: Toggle cutoff sweep (bit 0-6: speed; bit 7: direction is up)" +msgstr "" +"22xx: Växla brytfrekvensfiltersvep (bit 0-6: hastighet; bit 7: riktning är " +"uppåt)" + +#: src/engine/sysDef.cpp:1739 +msgid "tildearrow Sound Unit" +msgstr "tildearrow Sound Unit" + +#: src/engine/sysDef.cpp:1740 +msgid "" +"tildearrow's fantasy sound chip. put SID, AY and VERA in a blender, and you " +"get this!" +msgstr "" +"tildearrows fantasi ljudchip. stopp in SID, AY och VERA i en blandare, och " +"du får detta!" + +#: src/engine/sysDef.cpp:1751 +msgid "OKI MSM6295" +msgstr "OKI MSM6295" + +#: src/engine/sysDef.cpp:1752 +msgid "an ADPCM sound chip manufactured by OKI and used in many arcade boards." +msgstr "ett ADPCM-ljudchip tillverkat av OKI och används i många arkadbrädor." + +#: src/engine/sysDef.cpp:1759 +msgid "20xx: Set chip output rate (0: clock/132; 1: clock/165)" +msgstr "20xx: Ange chiputgångshastighet (0: klocka/132; 1: klocka/165)" + +#: src/engine/sysDef.cpp:1764 +msgid "OKI MSM6258" +msgstr "OKI MSM6258" + +#: src/engine/sysDef.cpp:1765 +msgid "an ADPCM sound chip manufactured by OKI and used in the Sharp X68000." +msgstr "ett ADPCM-ljudchip tillverkat av OKI och används i Sharp X68000." + +#: src/engine/sysDef.cpp:1766 src/engine/sysDef.cpp:1887 +#: src/gui/editControls.cpp:437 src/gui/settings.cpp:4223 +#: src/gui/guiConst.cpp:1397 src/gui/insEdit.cpp:2628 src/gui/insEdit.cpp:2666 +msgid "Sample" +msgstr "Sample" + +#: src/engine/sysDef.cpp:1772 +msgid "20xx: Set frequency divider (0-2)" +msgstr "20xx: Ange frekvensdelare (0-2)" + +#: src/engine/sysDef.cpp:1773 +msgid "21xx: Select clock rate (0: full; 1: half)" +msgstr "21xx: Välj klockfrekvens (0: full; 1: halv)" + +#: src/engine/sysDef.cpp:1778 +msgid "Yamaha YMZ280B (PCMD8)" +msgstr "Yamaha YMZ280B (PCMD8)" + +#: src/engine/sysDef.cpp:1779 +msgid "" +"used in some arcade boards. Can play back either 4-bit ADPCM, 8-bit PCM or " +"16-bit PCM." +msgstr "" +"används i vissa arkadbrädor. Kan spela upp antingen 4-bit ADPCM, 8-bit PCM " +"eller 16-bit PCM." + +#: src/engine/sysDef.cpp:1797 src/gui/settings.cpp:4054 +msgid "Namco WSG" +msgstr "Namco WSG" + +#: src/engine/sysDef.cpp:1798 +msgid "" +"a wavetable sound chip used in Pac-Man, among other early Namco arcade games." +msgstr "" +"ett wavetable-ljudchip som används i Pac-Man, bland andra tidiga Namco " +"arkadspel." + +#: src/engine/sysDef.cpp:1808 +msgid "Namco C15 WSG" +msgstr "Namco C15 WSG" + +#: src/engine/sysDef.cpp:1809 +msgid "" +"successor of the original Namco WSG chip, used in later Namco arcade games." +msgstr "" +"efterföljaren till det ursprungliga Namco WSG-chippet, som användes i senare " +"Namco arkadspel." + +#: src/engine/sysDef.cpp:1819 +msgid "Namco C30 WSG" +msgstr "Namco C30 WSG" + +#: src/engine/sysDef.cpp:1820 +msgid "like Namco C15 but with stereo sound." +msgstr "som Namco C15 men med stereoljud." + +#: src/engine/sysDef.cpp:1830 +msgid "OKI MSM5232" +msgstr "OKI MSM5232" + +#: src/engine/sysDef.cpp:1831 +msgid "" +"a square wave additive synthesis chip made by OKI. used in some arcade " +"machines and instruments." +msgstr "" +"ett kvadratvåg additiv synteschip tillverkat av OKI. används i några " +"arkadbrädor och instrument." + +#: src/engine/sysDef.cpp:1839 +msgid "10xy: Set group control (x: sustain; y: part toggle bitmask)" +msgstr "10xy: Ställ in gruppkontroll (x: sustain; y: delväxla bitmask)" + +#: src/engine/sysDef.cpp:1840 src/engine/sysDef.cpp:1998 +msgid "11xx: Set noise mode" +msgstr "11xx: Ange brusväxling" + +#: src/engine/sysDef.cpp:1841 +msgid "12xx: Set group attack (0 to 5)" +msgstr "12xx: Ange gruppattack (0 till 5)" + +#: src/engine/sysDef.cpp:1842 +msgid "13xx: Set group decay (0 to 11)" +msgstr "13xx: Ange gruppdecay (0 till 11)" + +#: src/engine/sysDef.cpp:1847 +msgid "Yamaha YM2612 (OPN2) with DualPCM" +msgstr "Yamaha YM2612 (OPN2) med DualPCM" + +#: src/engine/sysDef.cpp:1848 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this system uses software mixing to provide two sample channels." +msgstr "" +"detta ljudchip är mest känt för att vara i Sega Genesis (men det var också " +"på FM Towns-datorn).\n" +"detta system använder mjukvarublandning för att kunna ge två samplekanaler." + +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +msgid "FM 6/PCM 1" +msgstr "FM 6/PCM 1" + +#: src/engine/sysDef.cpp:1859 +msgid "Yamaha YM2612 (OPN2) Extended Channel 3 with DualPCM and CSM" +msgstr "Yamaha YM2612 (OPN2) utökad kanal 3 med DualPCM och CSM" + +#: src/engine/sysDef.cpp:1860 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this system uses software mixing to provide two sample channels.\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies." +msgstr "" +"detta ljudchip är mest känt för att vara i Sega Genesis (men det var också " +"på FM Towns-datorn).\n" +"detta system använder mjukvarublandning för att kunna ge två samplekanaler.\n" +"detta är i utökat kanalläge, vilket förvandlar den tredje FM-kanalen till " +"fyra operatorer med självständiga toner/frekvenser." + +#: src/engine/sysDef.cpp:1872 src/gui/settings.cpp:4024 +msgid "T6W28" +msgstr "T6W28" + +#: src/engine/sysDef.cpp:1873 +msgid "" +"an SN76489 derivative used in Neo Geo Pocket, has independent stereo volume " +"and noise channel frequency." +msgstr "" +"ett SN76489-derivat som används i Neo Geo Pocket, har självständig " +"stereovolym och bruskanalsfrekvens." + +#: src/engine/sysDef.cpp:1880 +msgid "20xx: Set noise length (0: short, 1: long)" +msgstr "20xx: Ange bruslängd (0: kort, 1: lång)" + +#: src/engine/sysDef.cpp:1885 +msgid "Generic PCM DAC" +msgstr "Generisk PCM DAC" + +#: src/engine/sysDef.cpp:1886 +msgid "as generic sample playback as it gets." +msgstr "så generisk sampleuppspelning som det bara går." + +#: src/engine/sysDef.cpp:1898 +msgid "Konami K007232" +msgstr "Konami K007232" + +#: src/engine/sysDef.cpp:1899 +msgid "this PCM chip was widely used at Konami arcade boards in 1986-1990." +msgstr "detta PCM-chip användes mycket på Konamis arkadbrädor 1986-1990." + +#: src/engine/sysDef.cpp:1908 +msgid "Irem GA20" +msgstr "Irem GA20" + +#: src/engine/sysDef.cpp:1909 +msgid "" +"yet another PCM chip from Irem. like Amiga, but less pitch resolution and no " +"sample loop." +msgstr "" +"Ännu ett till PCM-chip från Irem. som Amiga, men mindre tonhöjdsupplösning " +"och ingen sample-loop." + +#: src/engine/sysDef.cpp:1918 +msgid "Sharp SM8521" +msgstr "Sharp SM8521" + +#: src/engine/sysDef.cpp:1919 +msgid "a SoC with wavetable sound hardware." +msgstr "en SoC med wavetable-ljudhårdvara." + +#: src/engine/sysDef.cpp:1929 +msgid "Casio PV-1000" +msgstr "Casio PV-1000" + +#: src/engine/sysDef.cpp:1930 +msgid "" +"a game console with 3 channels of square wave. it's what happens after " +"fusing TIA and VIC together." +msgstr "" +"en spelkonsol med 3 kanaler kvadratsvågor. det är vad som händer efter att " +"ha sammansmältat TIA och VIC." + +#: src/engine/sysDef.cpp:1937 +msgid "10xx: Set ring modulation (0: disable, 1: enable)" +msgstr "10xx: Ange ringmodulering (0: inaktivera, 1: aktivera)" + +#: src/engine/sysDef.cpp:1942 +msgid "ZX Spectrum Beeper (QuadTone Engine)" +msgstr "ZX Spectrum Beeper (QuadTone Engine)" + +#: src/engine/sysDef.cpp:1943 +msgid "" +"another ZX Spectrum beeper system with full PWM pulses and 3-level volume " +"per channel. it also has a pitchable overlay sample channel." +msgstr "" +"Ännu ett till ZX Spectrum-pipsystem med aktuella PWM-pulser och 3-" +"nivåvolymerper kanal. det har också en överlagringskanal för samples som kan " +"höjas." + +#: src/engine/sysDef.cpp:1955 +msgid "Konami K053260" +msgstr "Konami K053260" + +#: src/engine/sysDef.cpp:1956 +msgid "this PCM chip was widely used at Konami arcade boards in 1990-1992." +msgstr "detta PCM-chip användes flitigt på Konami arkadbrädor 1990-1992." + +#: src/engine/sysDef.cpp:1968 +msgid "MOS Technology TED" +msgstr "MOS Technology TED" + +#: src/engine/sysDef.cpp:1969 +msgid "" +"two square waves (one may be turned into noise). used in the Commodore " +"Plus/4, 16 and 116." +msgstr "" +"två kvadratsvågor (en kan förvandlas till brus). används i Commodore Plus/4, " +"16 och 116." + +#: src/engine/sysDef.cpp:1978 +msgid "Namco C140" +msgstr "Namco C140" + +#: src/engine/sysDef.cpp:1979 +msgid "Namco's first PCM chip from 1987. it's pretty good for being so." +msgstr "Namcos första PCM-chip från 1987. Det är ganska bra för att vara det." + +#: src/engine/sysDef.cpp:1989 +msgid "Namco C219" +msgstr "Namco C219" + +#: src/engine/sysDef.cpp:1990 +msgid "" +"Namco's PCM chip used in their NA-1/2 hardware.\n" +"very similar to C140, but has noise generator." +msgstr "" +"Namcos PCM-chip som används i deras NA-1/2-hårdvara.\n" +"mycket lik C140, men har en brusgenerator." + +#: src/engine/sysDef.cpp:1999 +msgid "12xy: Set invert mode (x: surround; y: invert)" +msgstr "12xy: Ange inverteringsläge (x: surround; y: invertera)" + +#: src/engine/sysDef.cpp:2004 +msgid "ESS ES1xxx series (ESFM)" +msgstr "ESS ES1xxx-serien (ESFM)" + +#: src/engine/sysDef.cpp:2005 +msgid "" +"a unique FM synth featured in PC sound cards.\n" +"based on the OPL3 design, but with lots of its features extended." +msgstr "" +"en unik FM-synt som finns på PC-ljudkort.\n" +"baserat på OPL3-designen, men med många av dess funktioner utökade." + +#: src/engine/sysDef.cpp:2006 +msgid "FM 11" +msgstr "FM 11" + +#: src/engine/sysDef.cpp:2012 +msgid "2Exx: Toggle hard envelope reset on new notes" +msgstr "2Exx: Växla till hård ADSR-återställning på nya noter" + +#: src/engine/sysDef.cpp:2018 +msgid "PowerNoise" +msgstr "PowerNoise" + +#: src/engine/sysDef.cpp:2019 +msgid "" +"a fantasy sound chip designed by jvsTSX and The Beesh-Spweesh!\n" +"used in the Hexheld fantasy console." +msgstr "" +"ett fantasiljudchip designat av jvsTSX och The Beesh-Spweesh!\n" +"används i Hexheld fantasikonsolen." + +#: src/engine/sysDef.cpp:2020 +msgid "Noise 1" +msgstr "Brus 1" + +#: src/engine/sysDef.cpp:2020 +msgid "Noise 2" +msgstr "Brus 2" + +#: src/engine/sysDef.cpp:2020 +msgid "Noise 3" +msgstr "Brus 3" + +#: src/engine/sysDef.cpp:2020 +msgid "Slope" +msgstr "Backe" + +#: src/engine/sysDef.cpp:2026 +msgid "" +"20xx: Load low byte of noise channel LFSR (00 to FF) or slope channel " +"accumulator (00 to 7F)" +msgstr "" +"20xx: Ladda låg byte av bruskanal LFSR (00 till FF) eller " +"lutningskanalackumulator (00 till 7F)" + +#: src/engine/sysDef.cpp:2027 +msgid "21xx: Load high byte of noise channel LFSR (00 to FF)" +msgstr "21xx: Ladda hög byte av bruskanal LFSR (00 till FF)" + +#: src/engine/sysDef.cpp:2028 +msgid "22xx: Write to I/O port A" +msgstr "22xx: Skriv till I/O-port A" + +#: src/engine/sysDef.cpp:2029 +msgid "23xx: Write to I/O port B" +msgstr "23xx: Skriv till I/O-port B" + +#: src/engine/sysDef.cpp:2035 src/gui/settings.cpp:4079 +msgid "Dave" +msgstr "Dave" + +#: src/engine/sysDef.cpp:2036 +msgid "" +"this chip was featured in the Enterprise 128 computer. it is similar to " +"POKEY, but with stereo output." +msgstr "" +"Detta chip fanns med i Enterprise 128-datorn. det liknar POKEY, men med " +"stereoutgång." + +#: src/engine/sysDef.cpp:2037 +msgid "DAC Left" +msgstr "DAC vänster" + +#: src/engine/sysDef.cpp:2037 +msgid "DAC Right" +msgstr "DAC höger" + +#: src/engine/sysDef.cpp:2043 +msgid "10xx: Set waveform (0 to 4; 0 to 3 on noise)" +msgstr "10xx: Ange vågform (0 till 4; 0 till 3 på brus)" + +#: src/engine/sysDef.cpp:2044 +msgid "11xx: Set noise frequency source (0: fixed; 1-3: channels 1 to 3)" +msgstr "11xx: Ange brusfrekvenskälla (0: fast; 1-3: kanal 1 till 3)" + +#: src/engine/sysDef.cpp:2045 +msgid "12xx: Toggle high-pass with next channel" +msgstr "12xx: Växla högpass med nästa kanal" + +#: src/engine/sysDef.cpp:2046 +msgid "13xx: Toggle ring modulation with channel+2" +msgstr "13xx: Växla ringmodulering med kanal+2" + +#: src/engine/sysDef.cpp:2047 +msgid "14xx: Toggle swap counters (noise only)" +msgstr "14xx: Växla växlingsräknare (endast brus)" + +#: src/engine/sysDef.cpp:2048 +msgid "15xx: Toggle low pass (noise only)" +msgstr "15xx: Växla lågpass (endast brus)" + +#: src/engine/sysDef.cpp:2049 +msgid "16xx: Set clock divider (0: /2; 1: /3)" +msgstr "16xx: Ställ in klockdelare (0: /2; 1: /3)" + +#: src/engine/sysDef.cpp:2054 +msgid "Game Boy Advance DMA Sound" +msgstr "Game Boy Advance DMA-ljud" + +#: src/engine/sysDef.cpp:2055 +msgid "" +"additional PCM FIFO channels in Game Boy Advance driven directly by its DMA " +"hardware." +msgstr "" +"ytterligare PCM FIFO-kanaler i Game Boy Advance drivna direkt av dess DMA-" +"hårdvara." + +#: src/engine/sysDef.cpp:2068 +msgid "Game Boy Advance MinMod" +msgstr "Game Boy Advance MinMod" + +#: src/engine/sysDef.cpp:2069 +msgid "" +"additional PCM FIFO channels in Game Boy Advance driven by software mixing " +"to provide up to sixteen sample channels" +msgstr "" +"ytterligare PCM FIFO-kanaler i Game Boy Advance drivna av mjukvarumixning " +"för att kunna ge upp till sexton samplekanaler" + +#: src/engine/sysDef.cpp:2078 +msgid "11xy: Set echo channel (x: left/right source; y: delay (0 disables))" +msgstr "11xy: Ange ekokanal (x: vänster/höger källa; y: delay (0 inaktiverar))" + +#: src/engine/sysDef.cpp:2079 +msgid "12xy: Toggle invert (x: left; y: right)" +msgstr "12xy: Växla invertering (x: vänster; y: höger)" + +#: src/engine/sysDef.cpp:2084 src/gui/settings.cpp:4080 +msgid "Nintendo DS" +msgstr "Nintendo DS" + +#: src/engine/sysDef.cpp:2085 +msgid "a handheld video game console with two screens. it uses a stylus." +msgstr "en bärbar videospelskonsol med två skärmar. den använder en pekpenna." + +#: src/engine/sysDef.cpp:2093 +msgid "1Fxx: Set global volume (0 to 7F)" +msgstr "1Fxx: Ange globalvolym (0 till 7F)" + +#: src/engine/sysDef.cpp:2098 +msgid "5E01" +msgstr "5E01" + +#: src/engine/sysDef.cpp:2099 +msgid "" +"a fantasy sound chip created by Euly. it is based on Ricoh 2A03, adding a " +"couple features such as 32 noise pitches, an extra duty cycle, and three " +"waveforms (besides triangle)." +msgstr "" +"ett fantasiljudchip skapat av Euly. det är baserat på Ricoh 2A03 och lägger " +"till ett par funktioner som 32 ljudnivåer, en extra arbetscykel och tre " +"vågformer till (förutom triangel)." + +#: src/engine/sysDef.cpp:2107 +msgid "" +"12xx: Set duty cycle/noise mode/waveform (pulse/wave: 0 to 3; noise: 0 or 1)" +msgstr "" +"12xx: Ange arbetscykel/brusläge/vågform (puls/våg: 0 till 3; brus: 0 eller 1)" + +#: src/engine/sysDef.cpp:2120 src/gui/settings.cpp:4083 +msgid "Bifurcator" +msgstr "Bifurcator" + +#: src/engine/sysDef.cpp:2121 +msgid "a fantasy sound chip using logistic map iterations to generate sound." +msgstr "" +"ett fantasiljudchip som använder logistiska kartiterationer för att generera " +"ljud." + +#: src/engine/sysDef.cpp:2128 +msgid "10xx: Load low byte of channel sample state" +msgstr "10xx: Ladda låg byte av kanalsampletillstånd" + +#: src/engine/sysDef.cpp:2129 +msgid "11xx: Load high byte of channel sample state" +msgstr "11xx: Ladda hög byte av kanalsampletillstånd" + +#: src/engine/sysDef.cpp:2130 +msgid "12xx: Set low byte of channel parameter" +msgstr "12xx: Ange låg byte för kanalparameter" + +#: src/engine/sysDef.cpp:2131 +msgid "13xx: Set high byte of channel parameter" +msgstr "12xx: Ange hög byte för kanalparameter" + +#: src/engine/sysDef.cpp:2136 src/gui/settings.cpp:4084 +msgid "SID2" +msgstr "SID2" + +#: src/engine/sysDef.cpp:2137 +msgid "" +"a fantasy sound chip created by LTVA. it is similar to the SID chip, but " +"with many of its problems fixed." +msgstr "" +"ett fantasiljudchip skapat av LTVA. det liknar SID-chippet, men med många av " +"sina problem fixade." + +#: src/engine/sysDef.cpp:2148 +msgid "Dummy System" +msgstr "Dummy-system" + +#: src/engine/sysDef.cpp:2149 +msgid "this is a system designed for testing purposes." +msgstr "detta är ett system designat för teständamål." + +#: src/engine/engine.cpp:51 +msgid "00xy: Arpeggio" +msgstr "00xy: Arpeggio" + +#: src/engine/engine.cpp:53 +msgid "01xx: Pitch slide up" +msgstr "01xx: Tonhöjd glider upp" + +#: src/engine/engine.cpp:55 +msgid "02xx: Pitch slide down" +msgstr "02xx: Tonhöjd glider ner" + +#: src/engine/engine.cpp:57 +msgid "03xx: Portamento" +msgstr "03xx: Portamento" + +#: src/engine/engine.cpp:59 +msgid "04xy: Vibrato (x: speed; y: depth)" +msgstr "04xy: Vibrato (x: hastighet; y: djup)" + +#: src/engine/engine.cpp:61 +msgid "05xy: Volume slide + vibrato (compatibility only!)" +msgstr "05xy: Volymskjutning + vibrato (endast kompatibilitet!)" + +#: src/engine/engine.cpp:63 +msgid "06xy: Volume slide + portamento (compatibility only!)" +msgstr "06xy: Volymskjutning + portamento (endast kompatibilitet!)" + +#: src/engine/engine.cpp:65 +msgid "07xy: Tremolo (x: speed; y: depth)" +msgstr "07xy: Tremolo (x: hastighet; y: djup)" + +#: src/engine/engine.cpp:67 +msgid "08xy: Set panning (x: left; y: right)" +msgstr "08xy: Ange panorering (x: vänster; y: höger)" + +#: src/engine/engine.cpp:69 +msgid "09xx: Set groove pattern (speed 1 if no grooves exist)" +msgstr "" +"09xx: Ställ in spårmönster (hastighet 1 om det inte finns några grooves)" + +#: src/engine/engine.cpp:71 +msgid "0Axy: Volume slide (0y: down; x0: up)" +msgstr "0Axy: Volymskjutning (0y: ner; x0: upp)" + +#: src/engine/engine.cpp:73 +msgid "0Bxx: Jump to pattern" +msgstr "0Bxx: Hoppa till mönster" + +#: src/engine/engine.cpp:75 +msgid "0Cxx: Retrigger" +msgstr "0Cxx: Återaktivera" + +#: src/engine/engine.cpp:77 +msgid "0Dxx: Jump to next pattern" +msgstr "0Dxx: Hoppa över till nästa mönster" + +#: src/engine/engine.cpp:79 +msgid "0Fxx: Set speed (speed 2 if no grooves exist)" +msgstr "0Fxx: Ange hastighet (hastighet 2 om det inte finns några grooves)" + +#: src/engine/engine.cpp:81 +msgid "80xx: Set panning (00: left; 80: center; FF: right)" +msgstr "80xx: Ange panorering (00: vänster; 80: mitten; FF: höger)" + +#: src/engine/engine.cpp:83 +msgid "81xx: Set panning (left channel)" +msgstr "81xx: Ange panorering (vänster kanal)" + +#: src/engine/engine.cpp:85 +msgid "82xx: Set panning (right channel)" +msgstr "82xx: Ange panorering (höger kanal)" + +#: src/engine/engine.cpp:87 +msgid "88xy: Set panning (rear channels; x: left; y: right)" +msgstr "88xy: Ange panorering (bakre kanaler; x: vänster; y: höger)" + +#: src/engine/engine.cpp:90 +msgid "89xx: Set panning (rear left channel)" +msgstr "89xx: Ange panorering (vänster bakre kanal)" + +#: src/engine/engine.cpp:93 +msgid "8Axx: Set panning (rear right channel)" +msgstr "8Axx: Ange panorering (bakre höger kanal)" + +#: src/engine/engine.cpp:96 +msgid "Cxxx: Set tick rate (hz)" +msgstr "Cxxx: Ställ in tickfrekvens (hz)" + +#: src/engine/engine.cpp:98 +msgid "E0xx: Set arp speed" +msgstr "E0xx: Ställ in arp-hastighet" + +#: src/engine/engine.cpp:100 +msgid "E1xy: Note slide up (x: speed; y: semitones)" +msgstr "E1xy: Not glida upp (x: hastighet; y: halvtoner)" + +#: src/engine/engine.cpp:102 +msgid "E2xy: Note slide down (x: speed; y: semitones)" +msgstr "E2xy: Not glida ner (x: hastighet; y: halvtoner)" + +#: src/engine/engine.cpp:104 +msgid "E3xx: Set vibrato shape (0: up/down; 1: up only; 2: down only)" +msgstr "E3xx: Ange vibratoform (0: upp/ner; 1: endast upp; 2: endast ned)" + +#: src/engine/engine.cpp:106 +msgid "E4xx: Set vibrato range" +msgstr "E4xx: Ange vibratogräns" + +#: src/engine/engine.cpp:108 +msgid "E5xx: Set pitch (80: center)" +msgstr "E5xx: Ange tonhöjd (80: mitten)" + +#: src/engine/engine.cpp:110 +msgid "E6xy: Quick legato (x: time (0-7 up; 8-F down); y: semitones)" +msgstr "E6xy: Snabb legato (x: tid (0-7 upp; 8-F ner); y: halvtoner)" + +#: src/engine/engine.cpp:112 +msgid "E7xx: Macro release" +msgstr "E7xx: Makro-release" + +#: src/engine/engine.cpp:114 +msgid "E8xy: Quick legato up (x: time; y: semitones)" +msgstr "E8xy: Snabb legato upp (x: tid; y: halvtoner)" + +#: src/engine/engine.cpp:116 +msgid "E9xy: Quick legato down (x: time; y: semitones)" +msgstr "E9xy: Snabb legato ner (x: tid; y: halvtoner)" + +#: src/engine/engine.cpp:118 +msgid "EAxx: Legato" +msgstr "EAxx: Legato" + +#: src/engine/engine.cpp:120 +msgid "EBxx: Set LEGACY sample mode bank" +msgstr "EBxx: Ange FÖRÅLDRAD samplelägesbank" + +#: src/engine/engine.cpp:122 +msgid "ECxx: Note cut" +msgstr "ECxx: Notbrytning" + +#: src/engine/engine.cpp:124 +msgid "EDxx: Note delay" +msgstr "EDxx: Notdelay" + +#: src/engine/engine.cpp:126 +msgid "EExx: Send external command" +msgstr "EExx: Skicka externt kommando" + +#: src/engine/engine.cpp:128 +msgid "F0xx: Set tick rate (bpm)" +msgstr "F0xx: Ange tickhastighet (bpm)" + +#: src/engine/engine.cpp:130 +msgid "F1xx: Single tick note slide up" +msgstr "F1xx: Enkel ticknot glida upp" + +#: src/engine/engine.cpp:132 +msgid "F2xx: Single tick note slide down" +msgstr "F2xx: Enkel ticknot glida ner" + +#: src/engine/engine.cpp:134 +msgid "F3xx: Fine volume slide up" +msgstr "F3xx: Fin volym glider upp" + +#: src/engine/engine.cpp:136 +msgid "F4xx: Fine volume slide down" +msgstr "F4xx: Fin volym glider ner" + +#: src/engine/engine.cpp:138 +msgid "F5xx: Disable macro (see manual)" +msgstr "F5xx: Inaktivera makro (se manualen)" + +#: src/engine/engine.cpp:140 +msgid "F6xx: Enable macro (see manual)" +msgstr "F6xx: Aktivera makro (se manualen)" + +#: src/engine/engine.cpp:142 +msgid "F7xx: Restart macro (see manual)" +msgstr "F7xx: Starta om makro (se manualen)" + +#: src/engine/engine.cpp:144 +msgid "F8xx: Single tick volume slide up" +msgstr "F8xx: Enkel tick-volym glider upp" + +#: src/engine/engine.cpp:146 +msgid "F9xx: Single tick volume slide down" +msgstr "F9xx: Enkel tick-volym glider ner" + +#: src/engine/engine.cpp:148 +msgid "FAxx: Fast volume slide (0y: down; x0: up)" +msgstr "FAxx: Snabb volymskjutning (0y: ner; x0: upp)" + +#: src/engine/engine.cpp:150 +msgid "FCxx: Note release" +msgstr "FCxx: Notrelease" + +#: src/engine/engine.cpp:152 +msgid "FDxx: Set virtual tempo numerator" +msgstr "FDxx: Ställ in virtuell tempotäljare" + +#: src/engine/engine.cpp:154 +msgid "FExx: Set virtual tempo denominator" +msgstr "FExx: Ställ in virtuell temponämnare" + +#: src/engine/engine.cpp:156 +msgid "FFxx: Stop song" +msgstr "FFxx: Stoppa låten" + +#: src/engine/engine.cpp:160 +msgid "9xxx: Set sample offset*256" +msgstr "9xxx: Ange sampleoffset*256" + +#: src/engine/engine.cpp:164 +msgid "90xx: Set sample offset (first byte)" +msgstr "90xx: Ange sampleoffset (första byte)" + +#: src/engine/engine.cpp:166 +msgid "91xx: Set sample offset (second byte, ×256)" +msgstr "91xx: Ange sampleoffset (andra byte, ×256)" + +#: src/engine/engine.cpp:168 +msgid "92xx: Set sample offset (third byte, ×65536)" +msgstr "92xx: Ange sampleoffset (tredje byte, ×65536)" + +#: src/engine/engine.cpp:187 src/gui/settings.cpp:4127 +msgid "Invalid effect" +msgstr "Ogiltig effekt" + +#: src/engine/engine.cpp:354 src/gui/gui.cpp:2259 src/gui/gui.cpp:2422 +#, c-format +msgid "on seek: %s" +msgstr "vid sökning: %s" + +#: src/engine/engine.cpp:361 src/gui/gui.cpp:2266 src/gui/gui.cpp:2429 +#, c-format +msgid "on pre tell: %s" +msgstr "på förberättning: %s" + +#: src/engine/engine.cpp:368 src/engine/engine.cpp:2768 +#: src/gui/settings.cpp:5811 src/gui/gui.cpp:2273 src/gui/gui.cpp:2436 +msgid "file is empty" +msgstr "filen är tom" + +#: src/engine/engine.cpp:371 src/gui/gui.cpp:2276 src/gui/gui.cpp:2439 +#, c-format +msgid "on tell: %s" +msgstr "på berättning: %s" + +#: src/engine/engine.cpp:378 +#, c-format +msgid "ROM size mismatch, expected: %d bytes, was: %d" +msgstr "ROM-storleken matchar inte, förväntad: %d byte, var: %d" + +#: src/engine/engine.cpp:383 src/gui/settings.cpp:5820 src/gui/gui.cpp:2283 +#: src/gui/gui.cpp:2446 +#, c-format +msgid "on get size: %s" +msgstr "på få storlek: %s" + +#: src/engine/engine.cpp:390 src/gui/settings.cpp:5827 src/gui/gui.cpp:2290 +#: src/gui/gui.cpp:2453 +#, c-format +msgid "on read: %s" +msgstr "på läsning: %s" + +#: src/engine/engine.cpp:1076 src/engine/engine.cpp:1181 +#: src/engine/engine.cpp:1290 +msgid "invalid index" +msgstr "ogiltigt index" + +#: src/engine/engine.cpp:1080 src/engine/engine.cpp:1135 +#: src/engine/engine.cpp:1189 +#, c-format +msgid "max number of total channels is %d" +msgstr "max antal totala kanaler är %d" + +#: src/engine/engine.cpp:1131 src/engine/engine.cpp:1185 +#, c-format +msgid "max number of systems is %d" +msgstr "max antal system är %d" + +#: src/engine/engine.cpp:1286 +msgid "cannot remove the last one" +msgstr "kan inte ta bort den sista" + +#: src/engine/engine.cpp:1460 +msgid "source and destination are equal" +msgstr "källa och destination är lika" + +#: src/engine/engine.cpp:1464 +msgid "invalid source index" +msgstr "ogiltigt källindex" + +#: src/engine/engine.cpp:1468 +msgid "invalid destination index" +msgstr "ogiltigt destinationsindex" + +#: src/engine/engine.cpp:2636 +#, c-format +msgid "Instrument %d" +msgstr "Instrument %d" + +#: src/engine/engine.cpp:2710 src/engine/engine.cpp:2727 +#: src/gui/doAction.cpp:825 src/gui/doAction.cpp:843 src/gui/doAction.cpp:1634 +#: src/gui/gui.cpp:6159 src/gui/insEdit.cpp:6860 +msgid "too many wavetables!" +msgstr "för många vågformer!" + +#: src/engine/engine.cpp:2752 +#, c-format +msgid "could not seek to end: %s" +msgstr "kunde inte försöka avsluta: %s" + +#: src/engine/engine.cpp:2758 +#, c-format +msgid "could not determine file size: %s" +msgstr "kunde inte bestämma filstorlek: %s" + +#: src/engine/engine.cpp:2763 +msgid "file size is invalid!" +msgstr "filstorleken är ogiltig!" + +#: src/engine/engine.cpp:2773 +#, c-format +msgid "could not seek to beginning: %s" +msgstr "kunde inte söka till början: %s" + +#: src/engine/engine.cpp:2780 +#, c-format +msgid "could not read entire file: %s" +msgstr "kunde inte läsa hela filen: %s" + +#: src/engine/engine.cpp:2806 +msgid "invalid wavetable header/data!" +msgstr "ogiltig wavetable-sidhuvud/data!" + +#: src/engine/engine.cpp:2877 +msgid "premature end of file" +msgstr "för tidigt slut på filen" + +#: src/engine/engine.cpp:2904 src/engine/engine.cpp:2926 +#: src/gui/doAction.cpp:909 src/gui/doAction.cpp:921 +msgid "too many samples!" +msgstr "för många samples!" + +#: src/engine/engine.cpp:2911 +#, c-format +msgid "Sample %d" +msgstr "Sample %d" + +#: src/engine/engine.cpp:3056 +#, c-format +msgid "no free patterns in channel %d!" +msgstr "inga fria mönster i kanal %d!" + +#: src/gui/mixer.cpp:28 src/gui/insEdit.cpp:484 +msgid "left" +msgstr "vänster" + +#: src/gui/mixer.cpp:29 src/gui/insEdit.cpp:483 +msgid "right" +msgstr "höger" + +#: src/gui/mixer.cpp:128 +msgid "input" +msgstr "ingång" + +#: src/gui/mixer.cpp:168 +msgid "output" +msgstr "utgång" + +#: src/gui/mixer.cpp:226 src/gui/mixer.cpp:228 src/gui/editControls.cpp:454 +#: src/gui/guiConst.cpp:593 +msgid "Mixer" +msgstr "Mixer" + +#: src/gui/mixer.cpp:229 +msgid "Master Volume" +msgstr "Master-volym" + +#: src/gui/mixer.cpp:250 src/gui/exportOptions.cpp:90 +#: src/gui/userPresets.cpp:393 src/gui/userPresets.cpp:405 +#: src/gui/settings.cpp:1080 src/gui/settings.cpp:1094 +#: src/gui/waveEdit.cpp:1096 src/gui/sampleEdit.cpp:1128 +#: src/gui/insEdit.cpp:519 +msgid "Invert" +msgstr "Invertera" + +#: src/gui/mixer.cpp:268 src/gui/chanOsc.cpp:37 src/gui/userPresets.cpp:417 +#: src/gui/settings.cpp:263 src/gui/settings.cpp:1109 src/gui/settings.cpp:1492 +#: src/gui/settings.cpp:1504 src/gui/settings.cpp:3369 +#: src/gui/settings.cpp:4015 src/gui/findReplace.cpp:687 +#: src/gui/findReplace.cpp:943 src/gui/guiConst.cpp:228 +#: src/gui/sampleEdit.cpp:1003 src/gui/insEdit.cpp:5575 +#: src/gui/insEdit.cpp:5660 src/gui/insEdit.cpp:6920 src/gui/insEdit.cpp:6928 +#: src/gui/insEdit.cpp:6936 src/gui/insEdit.cpp:6946 src/gui/insEdit.cpp:6961 +#: src/gui/insEdit.cpp:6975 src/gui/insEdit.cpp:6987 src/gui/insEdit.cpp:7000 +#: src/gui/insEdit.cpp:7016 src/gui/insEdit.cpp:7022 src/gui/insEdit.cpp:7032 +#: src/gui/insEdit.cpp:7039 src/gui/insEdit.cpp:7045 src/gui/insEdit.cpp:7058 +#: src/gui/insEdit.cpp:7065 src/gui/insEdit.cpp:7072 src/gui/insEdit.cpp:7081 +#: src/gui/insEdit.cpp:7091 src/gui/insEdit.cpp:7099 src/gui/insEdit.cpp:7105 +#: src/gui/insEdit.cpp:7113 src/gui/insEdit.cpp:7120 src/gui/insEdit.cpp:7126 +#: src/gui/insEdit.cpp:7136 src/gui/insEdit.cpp:7148 src/gui/insEdit.cpp:7156 +#: src/gui/insEdit.cpp:7172 src/gui/insEdit.cpp:7177 src/gui/insEdit.cpp:7190 +#: src/gui/insEdit.cpp:7197 src/gui/insEdit.cpp:7208 src/gui/insEdit.cpp:7221 +#: src/gui/insEdit.cpp:7230 src/gui/insEdit.cpp:7237 src/gui/insEdit.cpp:7245 +#: src/gui/insEdit.cpp:7258 src/gui/insEdit.cpp:7263 src/gui/insEdit.cpp:7269 +#: src/gui/insEdit.cpp:7276 src/gui/insEdit.cpp:7284 src/gui/insEdit.cpp:7295 +#: src/gui/insEdit.cpp:7302 src/gui/insEdit.cpp:7310 src/gui/insEdit.cpp:7318 +#: src/gui/insEdit.cpp:7327 src/gui/insEdit.cpp:7335 src/gui/insEdit.cpp:7341 +#: src/gui/insEdit.cpp:7347 src/gui/insEdit.cpp:7353 src/gui/insEdit.cpp:7358 +#: src/gui/insEdit.cpp:7365 src/gui/insEdit.cpp:7372 src/gui/insEdit.cpp:7380 +#: src/gui/insEdit.cpp:7389 src/gui/insEdit.cpp:7397 src/gui/insEdit.cpp:7409 +#: src/gui/insEdit.cpp:7422 src/gui/insEdit.cpp:7433 src/gui/insEdit.cpp:7443 +#: src/gui/insEdit.cpp:7451 src/gui/insEdit.cpp:7461 src/gui/insEdit.cpp:7470 +msgid "Volume" +msgstr "Volym" + +#: src/gui/mixer.cpp:279 src/gui/userPresets.cpp:427 src/gui/settings.cpp:1120 +#: src/gui/guiConst.cpp:229 src/gui/insEdit.cpp:6923 src/gui/insEdit.cpp:6930 +#: src/gui/insEdit.cpp:6941 src/gui/insEdit.cpp:6965 src/gui/insEdit.cpp:7067 +#: src/gui/insEdit.cpp:7108 src/gui/insEdit.cpp:7152 src/gui/insEdit.cpp:7192 +#: src/gui/insEdit.cpp:7212 src/gui/insEdit.cpp:7232 src/gui/insEdit.cpp:7240 +#: src/gui/insEdit.cpp:7253 src/gui/insEdit.cpp:7265 src/gui/insEdit.cpp:7271 +#: src/gui/insEdit.cpp:7287 src/gui/insEdit.cpp:7297 src/gui/insEdit.cpp:7360 +#: src/gui/insEdit.cpp:7392 src/gui/insEdit.cpp:7438 src/gui/insEdit.cpp:7446 +msgid "Panning" +msgstr "Panorering" + +#: src/gui/mixer.cpp:290 src/gui/userPresets.cpp:433 src/gui/settings.cpp:1127 +msgid "Front/Rear" +msgstr "Fram/Bak" + +#: src/gui/mixer.cpp:299 src/gui/settings.cpp:4208 +msgid "Patchbay" +msgstr "Patchbay" + +#: src/gui/mixer.cpp:305 +msgid "Automatic patchbay" +msgstr "Automatisk patchbay" + +#: src/gui/mixer.cpp:310 +msgid "Display hidden ports" +msgstr "Visa dolda portar" + +#: src/gui/mixer.cpp:312 +msgid "Display internal" +msgstr "Visa interna" + +#: src/gui/mixer.cpp:322 src/gui/mixer.cpp:383 src/gui/settings.cpp:1901 +#: src/gui/settings.cpp:2089 src/gui/songInfo.cpp:69 +msgid "System" +msgstr "System" + +#: src/gui/mixer.cpp:354 +msgid "Sample Preview" +msgstr "Sampleförhandsvisning" + +#: src/gui/mixer.cpp:367 src/gui/editControls.cpp:745 +#: src/gui/editControls.cpp:837 src/gui/editControls.cpp:953 +#: src/gui/editControls.cpp:1093 src/gui/settings.cpp:1490 +#: src/gui/guiConst.cpp:558 +msgid "Metronome" +msgstr "Metronom" + +#: src/gui/mixer.cpp:446 +msgid "disconnect all" +msgstr "koppla ur alla" + +#: src/gui/editing.cpp:200 +#, c-format +msgid "no data in oldPatMap for channel %d!" +msgstr "inga data i mönstret för kanal %d!" + +#: src/gui/editing.cpp:664 src/gui/editing.cpp:1203 +#, c-format +msgid "invalid clipboard data! failed at line %d char %d" +msgstr "ogiltig urklippsdata! misslyckades på rad %d kar. %d" + +#: src/gui/editing.cpp:1565 src/gui/editing.cpp:1669 +msgid "can't collapse any further!" +msgstr "kan inte förminska längre!" + +#: src/gui/editing.cpp:1749 +msgid "can't expand any further!" +msgstr "kan inte utöka någon mer!" + +#: src/gui/editing.cpp:1836 src/gui/editing.cpp:1851 +#, c-format +msgid "copy: %s" +msgstr "kopiera: %s" + +#: src/gui/memory.cpp:35 src/gui/settings.cpp:3696 src/gui/settings.cpp:4217 +#: src/gui/guiConst.cpp:613 +msgid "Memory Composition" +msgstr "Minneskomposition" + +#: src/gui/memory.cpp:146 +#, c-format +msgid "bank %d" +msgstr "bank %d" + +#: src/gui/memory.cpp:175 src/gui/memory.cpp:176 +msgid "no chips with memory" +msgstr "inga chips med minne" + +#: src/gui/intro.cpp:89 src/gui/gui.cpp:2345 src/gui/gui.cpp:3746 +#: src/gui/gui.cpp:5019 src/gui/gui.cpp:5041 src/gui/gui.cpp:5479 +#: src/gui/gui.cpp:5781 src/gui/gui.cpp:5791 +#, c-format +msgid "Error while loading file! (%s)" +msgstr "Fel när filen laddades! (%s)" + +#: src/gui/intro.cpp:122 +msgid "IntroMon X" +msgstr "IntroMon X" + +#: src/gui/intro.cpp:122 +msgid "Intro" +msgstr "Intro" + +#: src/gui/intro.cpp:124 +msgid "Preview" +msgstr "Förhandsvisning" + +#: src/gui/intro.cpp:176 src/gui/intro.cpp:177 src/gui/intro.cpp:178 +msgid "SORRY NOTHING" +msgstr "FÖRLÅT INGENTING" + +#: src/gui/intro.cpp:310 +msgid "hold to skip" +msgstr "håll för att hoppa över" + +#: src/gui/dataList.cpp:76 +msgid "Bug!" +msgstr "Bugg!" + +#: src/gui/dataList.cpp:79 src/gui/util.cpp:107 src/gui/util.cpp:109 +#: src/gui/settings.cpp:4220 src/gui/insEdit.cpp:5334 +msgid "Unknown" +msgstr "Okänd" + +#: src/gui/dataList.cpp:136 src/gui/dataList.cpp:260 +msgid "duplicate" +msgstr "duplicera" + +#: src/gui/dataList.cpp:139 src/gui/dataList.cpp:263 src/gui/dataList.cpp:388 +#: src/gui/dataList.cpp:731 src/gui/dataList.cpp:867 +msgid "replace..." +msgstr "ersätta..." + +#: src/gui/dataList.cpp:142 src/gui/dataList.cpp:266 src/gui/gui.cpp:4232 +msgid "save" +msgstr "spara" + +#: src/gui/dataList.cpp:145 +msgid "save (.dmp)" +msgstr "spara (.dmp)" + +#: src/gui/dataList.cpp:148 src/gui/dataList.cpp:269 src/gui/dataList.cpp:617 +#: src/gui/dataList.cpp:994 src/gui/dataList.cpp:1040 +#: src/gui/editControls.cpp:50 src/gui/gui.cpp:2767 src/gui/gui.cpp:2776 +msgid "delete" +msgstr "ta bort" + +#: src/gui/dataList.cpp:243 +msgid "out of memory for this sample!" +msgstr "inget minne kvar för denna sample!" + +#: src/gui/dataList.cpp:254 +msgid "make instrument" +msgstr "skapa instrument" + +#: src/gui/dataList.cpp:257 +msgid "make me a drum kit" +msgstr "gör mig ett trumset" + +#: src/gui/dataList.cpp:290 src/gui/dataList.cpp:593 src/gui/gui.cpp:5914 +msgid "Instruments" +msgstr "Instrument" + +#: src/gui/dataList.cpp:312 src/gui/dataList.cpp:714 src/gui/dataList.cpp:846 +#: src/gui/subSongs.cpp:88 src/gui/insEdit.cpp:520 +msgid "Add" +msgstr "Lägg till" + +#: src/gui/dataList.cpp:338 src/gui/dataList.cpp:721 src/gui/dataList.cpp:853 +#: src/gui/subSongs.cpp:108 +msgid "Duplicate" +msgstr "Duplicera" + +#: src/gui/dataList.cpp:359 src/gui/dataList.cpp:728 src/gui/dataList.cpp:860 +#: src/gui/editControls.cpp:497 src/gui/waveEdit.cpp:435 +#: src/gui/waveEdit.cpp:467 src/gui/sampleEdit.cpp:122 +#: src/gui/sampleEdit.cpp:171 src/gui/insEdit.cpp:5239 src/gui/insEdit.cpp:5304 +msgid "Open" +msgstr "Öppna" + +#: src/gui/dataList.cpp:363 +msgid "replace instrument..." +msgstr "byt instrument..." + +#: src/gui/dataList.cpp:366 +msgid "load instrument from TX81Z" +msgstr "ladda instrument från TX81Z" + +#: src/gui/dataList.cpp:372 +msgid "replace wavetable..." +msgstr "ersätta wavetable..." + +#: src/gui/dataList.cpp:378 +msgid "replace sample..." +msgstr "ersätta sample..." + +#: src/gui/dataList.cpp:381 +msgid "import raw sample..." +msgstr "importera råsample..." + +#: src/gui/dataList.cpp:384 +msgid "import raw sample (replace)..." +msgstr "importera råsample (ersätta)..." + +#: src/gui/dataList.cpp:392 +msgid "load from TX81Z" +msgstr "ladda från TX81Z" + +#: src/gui/dataList.cpp:399 +msgid "Open (insert; right-click to replace)" +msgstr "Öppna (infoga; högerklicka för att ersätta)" + +#: src/gui/dataList.cpp:420 src/gui/dataList.cpp:741 src/gui/dataList.cpp:884 +#: src/gui/editControls.cpp:502 src/gui/waveEdit.cpp:474 +#: src/gui/sampleEdit.cpp:184 src/gui/insEdit.cpp:5311 +msgid "Save" +msgstr "Spara" + +#: src/gui/dataList.cpp:424 +msgid "save instrument as .dmp..." +msgstr "spara instrument som .dmp..." + +#: src/gui/dataList.cpp:430 +msgid "save wavetable as .dmw..." +msgstr "spara wavetable som .dmw..." + +#: src/gui/dataList.cpp:433 +msgid "save raw wavetable..." +msgstr "spara rå wavetable..." + +#: src/gui/dataList.cpp:439 +msgid "save raw sample..." +msgstr "spara råsample..." + +#: src/gui/dataList.cpp:443 src/gui/insEdit.cpp:5314 +msgid "save as .dmp..." +msgstr "spara som .dmp..." + +#: src/gui/dataList.cpp:456 src/gui/dataList.cpp:761 src/gui/dataList.cpp:903 +msgid "Toggle folders/standard view" +msgstr "Växla mappar/standardvy" + +#: src/gui/dataList.cpp:478 src/gui/dataList.cpp:769 src/gui/dataList.cpp:911 +#: src/gui/subSongs.cpp:55 +msgid "Move up" +msgstr "Flytta upp" + +#: src/gui/dataList.cpp:499 src/gui/dataList.cpp:776 src/gui/dataList.cpp:918 +#: src/gui/subSongs.cpp:62 +msgid "Move down" +msgstr "Flytta ner" + +#: src/gui/dataList.cpp:510 src/gui/dataList.cpp:787 src/gui/dataList.cpp:929 +msgid "Create" +msgstr "Skapa" + +#: src/gui/dataList.cpp:540 src/gui/dataList.cpp:797 src/gui/dataList.cpp:939 +msgid "New folder" +msgstr "Ny mapp" + +#: src/gui/dataList.cpp:549 src/gui/dataList.cpp:947 +msgid "Preview (right click to stop)" +msgstr "Förhandsgranska (högerklicka för att stoppa)" + +#: src/gui/dataList.cpp:576 src/gui/dataList.cpp:807 src/gui/dataList.cpp:959 +#: src/gui/guiConst.cpp:666 src/gui/sampleEdit.cpp:1105 +msgid "Delete" +msgstr "Ta bort" + +#: src/gui/dataList.cpp:608 src/gui/dataList.cpp:985 src/gui/dataList.cpp:1031 +msgid "" +msgstr "" + +#: src/gui/dataList.cpp:614 src/gui/dataList.cpp:991 src/gui/dataList.cpp:1037 +msgid "rename..." +msgstr "döp om..." + +#: src/gui/dataList.cpp:663 src/gui/dataList.cpp:707 src/gui/gui.cpp:5923 +msgid "Wavetables" +msgstr "Wavetables" + +#: src/gui/dataList.cpp:674 src/gui/dataList.cpp:839 src/gui/xyOsc.cpp:68 +#: src/gui/sampleEdit.cpp:898 src/gui/sampleEdit.cpp:1072 src/gui/gui.cpp:5932 +msgid "Samples" +msgstr "Samples" + +#: src/gui/dataList.cpp:745 src/gui/waveEdit.cpp:477 +msgid "save as .dmw..." +msgstr "spara som .dmv..." + +#: src/gui/dataList.cpp:748 src/gui/dataList.cpp:891 src/gui/waveEdit.cpp:480 +#: src/gui/sampleEdit.cpp:187 +msgid "save raw..." +msgstr "spara rå..." + +#: src/gui/dataList.cpp:871 src/gui/sampleEdit.cpp:174 +msgid "import raw..." +msgstr "importera rå..." + +#: src/gui/dataList.cpp:874 +msgid "import raw (replace)..." +msgstr "importera rå (ersätta)..." + +#: src/gui/exportOptions.cpp:29 +msgid "Export type:" +msgstr "Exporttyp:" + +#: src/gui/exportOptions.cpp:32 +msgid "one file" +msgstr "en fil" + +#: src/gui/exportOptions.cpp:35 +msgid "multiple files (one per chip)" +msgstr "flera filer (en per chip)" + +#: src/gui/exportOptions.cpp:38 +msgid "multiple files (one per channel)" +msgstr "flera filer (en per kanal)" + +#: src/gui/exportOptions.cpp:44 +msgid "Bit depth:" +msgstr "Bitdjup:" + +#: src/gui/exportOptions.cpp:46 +msgid "16-bit integer" +msgstr "16-bit heltal" + +#: src/gui/exportOptions.cpp:49 +msgid "32-bit float" +msgstr "32-bit flytande" + +#: src/gui/exportOptions.cpp:55 src/gui/settings.cpp:1352 src/gui/gui.cpp:6270 +msgid "Sample rate" +msgstr "Samplingshastighet" + +#: src/gui/exportOptions.cpp:61 +msgid "Channels in file" +msgstr "Kanaler i fil" + +#: src/gui/exportOptions.cpp:67 src/gui/settings.cpp:930 +msgid "Loops" +msgstr "Loops" + +#: src/gui/exportOptions.cpp:70 src/gui/settings.cpp:935 +msgid "Fade out (seconds)" +msgstr "Tona ut (sekunder)" + +#: src/gui/exportOptions.cpp:76 +msgid "Channels to export:" +msgstr "Kanaler att exportera:" + +#: src/gui/exportOptions.cpp:78 src/gui/effectList.cpp:32 src/gui/gui.cpp:6186 +msgid "All" +msgstr "Allt" + +#: src/gui/exportOptions.cpp:84 src/gui/sysConf.cpp:1870 +#: src/gui/effectList.cpp:34 src/gui/compatFlags.cpp:219 +#: src/gui/waveEdit.cpp:37 src/gui/gui.cpp:6192 src/gui/insEdit.cpp:518 +msgid "None" +msgstr "Inga" + +#: src/gui/exportOptions.cpp:110 src/gui/exportOptions.cpp:214 +#: src/gui/exportOptions.cpp:225 src/gui/exportOptions.cpp:243 +#: src/gui/exportOptions.cpp:266 src/gui/exportOptions.cpp:297 +#: src/gui/exportOptions.cpp:318 src/gui/exportOptions.cpp:341 +#: src/gui/commandPalette.cpp:199 src/gui/settings.cpp:6673 +#: src/gui/newSong.cpp:273 src/gui/gui.cpp:5669 src/gui/gui.cpp:5693 +#: src/gui/gui.cpp:5717 src/gui/gui.cpp:5741 src/gui/gui.cpp:5765 +#: src/gui/gui.cpp:5796 src/gui/gui.cpp:5855 src/gui/gui.cpp:6229 +#: src/gui/gui.cpp:6353 +msgid "Cancel" +msgstr "Avbryta" + +#: src/gui/exportOptions.cpp:115 src/gui/exportOptions.cpp:217 +#: src/gui/exportOptions.cpp:246 src/gui/exportOptions.cpp:300 +#: src/gui/exportOptions.cpp:321 src/gui/exportOptions.cpp:344 +#: src/gui/editControls.cpp:512 src/gui/userPresets.cpp:523 +#: src/gui/settings.cpp:1242 src/gui/settings.cpp:2165 +#: src/gui/settings.cpp:2557 src/gui/settings.cpp:3800 src/gui/guiConst.cpp:536 +#: src/gui/gui.cpp:5578 src/gui/gui.cpp:5630 +msgid "Export" +msgstr "Exportera" + +#: src/gui/exportOptions.cpp:130 +msgid "select at least one channel" +msgstr "välj minst en kanal" + +#: src/gui/exportOptions.cpp:137 +msgid "settings:" +msgstr "inställningar:" + +#: src/gui/exportOptions.cpp:138 +msgid "format version" +msgstr "formatversion" + +#: src/gui/exportOptions.cpp:146 src/gui/exportOptions.cpp:238 +#: src/gui/insEdit.cpp:362 +msgid "loop" +msgstr "loop" + +#: src/gui/exportOptions.cpp:148 +msgid "loop trail:" +msgstr "loopspår" + +#: src/gui/exportOptions.cpp:150 +msgid "auto-detect" +msgstr "automatisk upptäcka" + +#: src/gui/exportOptions.cpp:153 +msgid "add one loop" +msgstr "lägg till en loop" + +#: src/gui/exportOptions.cpp:156 +msgid "custom" +msgstr "anpassad" + +#: src/gui/exportOptions.cpp:167 +msgid "add pattern change hints" +msgstr "lägg till mönsterändringstips" + +#: src/gui/exportOptions.cpp:170 +msgid "" +"inserts data blocks on pattern changes.\n" +"useful if you are writing a playback routine.\n" +"\n" +"the format of a pattern change data block is:\n" +"67 66 FE ll ll ll ll 01 oo rr pp pp pp ...\n" +"- ll: length, a 32-bit little-endian number\n" +"- oo: order\n" +"- rr: initial row (a 0Dxx effect is able to select a different row)\n" +"- pp: pattern index (one per channel)\n" +"\n" +"pattern indexes are ordered as they appear in the song." +msgstr "" +"infogar datablock vid mönsterändringar.\n" +"användbart om du skriver en uppspelningsrutin.\n" +"\n" +"formatet för ett mönsterändringsdatablock är:\n" +"67 66 FE ll ll ll 01 oo rr pp pp pp ...\n" +"- ll: längd, ett 32-bit liten endiannummer\n" +"- oo: order\n" +"- rr: första rad (en 0Dxx-effekt kan välja en annan rad)\n" +"- pp: mönsterindex (ett per kanal)\n" +"\n" +"mönsterindex är ordnade som de visas i låten." + +#: src/gui/exportOptions.cpp:183 +msgid "direct stream mode" +msgstr "direktströmningsläge" + +#: src/gui/exportOptions.cpp:186 +msgid "" +"required for DualPCM and MSM6258 export.\n" +"\n" +"allows for volume/direction changes when playing samples,\n" +"at the cost of a massive increase in file size." +msgstr "" +"krävs för DualPCM och MSM6258 export.\n" +"\n" +"tillåter volym-/riktningsändringar vid uppspelning av samples,\n" +"till bekostnad av en massiv ökning av filstorleken." + +#: src/gui/exportOptions.cpp:191 +msgid "chips to export:" +msgstr "chips att exportera:" + +#: src/gui/exportOptions.cpp:200 +#, c-format +msgid "this chip is only available in VGM %d.%.2x and higher!" +msgstr "detta chip är endast tillgängligt i VGM %d.%2x och högre!" + +#: src/gui/exportOptions.cpp:204 +msgid "this chip is not supported by the VGM format!" +msgstr "detta chip stöds inte av VGM-formatet!" + +#: src/gui/exportOptions.cpp:210 +#, c-format +msgid "select the chip you wish to export, but only up to %d of each type." +msgstr "välj chippet du vill exportera, men bara upp till %d av varje typ." + +#: src/gui/exportOptions.cpp:222 +msgid "nothing to export" +msgstr "ingenting att exportera" + +#: src/gui/exportOptions.cpp:233 +msgid "Commander X16 Zsound Music File" +msgstr "Commander X16 Zsound-musikfil" + +#: src/gui/exportOptions.cpp:234 +msgid "Tick Rate (Hz)" +msgstr "Tickhastighet (Hz)" + +#: src/gui/exportOptions.cpp:240 +msgid "optimize size" +msgstr "optimera storlek" + +#: src/gui/exportOptions.cpp:256 src/gui/editControls.cpp:630 +msgid "" +"this is NOT ROM export! only use for making sure the\n" +"Furnace Amiga emulator is working properly by\n" +"comparing it with real Amiga output." +msgstr "" +"detta är INTE ROM-export! Använd endast för att se till att\n" +"Furnace Amiga-emulatorn fungerar korrekt genom att\n" +"jämföra den med riktig Amiga-utgång." + +#: src/gui/exportOptions.cpp:261 src/gui/editControls.cpp:635 +#: src/gui/settings.cpp:3925 +msgid "Directory" +msgstr "Katalog" + +#: src/gui/exportOptions.cpp:269 src/gui/editControls.cpp:638 +msgid "Bake Data" +msgstr "Bakdata" + +#: src/gui/exportOptions.cpp:284 src/gui/editControls.cpp:653 +#, c-format +msgid "Done! Baked %d files." +msgstr "Klar! Bakade %d filer." + +#: src/gui/exportOptions.cpp:293 +msgid "this option exports the song to a text file.\n" +msgstr "detta alternativ exporterar låten till en textfil.\n" + +#: src/gui/exportOptions.cpp:310 +msgid "" +"this option exports a text or binary file which\n" +"contains a dump of the internal command stream\n" +"produced when playing the song.\n" +"\n" +"technical/development use only!" +msgstr "" +"detta alternativ exporterar en text- eller binärfil som\n" +"innehåller en dump av den interna kommandoströmmen.\n" +"Produceras när du spelar låten.\n" +"\n" +"Endast för teknisk/utvecklingsanvändning!" + +#: src/gui/exportOptions.cpp:331 +msgid "" +"export in DefleMask module format.\n" +"only do it if you really, really need to, or are downgrading an existing ." +"dmf." +msgstr "" +"exportera i DefleMask-modulformat.\n" +"gör det bara om du verkligen, verkligen behöver, eller nedgraderar en " +"befintlig .dmf." + +#: src/gui/exportOptions.cpp:335 +msgid "format version:" +msgstr "formatversion:" + +#: src/gui/exportOptions.cpp:336 +msgid "1.1.3 and higher" +msgstr "1,1,3 och högre" + +#: src/gui/exportOptions.cpp:337 +msgid "1.0/legacy (0.12)" +msgstr "1,0/föråldrad (0,12)" + +#: src/gui/exportOptions.cpp:357 src/gui/settings.cpp:1253 +#: src/gui/settings.cpp:3929 +msgid "Audio" +msgstr "Audio" + +#: src/gui/exportOptions.cpp:361 src/gui/settings.cpp:3931 +msgid "VGM" +msgstr "VGM" + +#: src/gui/exportOptions.cpp:370 src/gui/settings.cpp:3932 +msgid "ZSM" +msgstr "ZSM" + +#: src/gui/exportOptions.cpp:380 +msgid "Amiga Validation" +msgstr "Amiga-validering" + +#: src/gui/exportOptions.cpp:385 src/gui/settings.cpp:2959 +#: src/gui/settings.cpp:3891 +msgid "Text" +msgstr "Text" + +#: src/gui/exportOptions.cpp:389 +msgid "Command Stream" +msgstr "Kommandoström" + +#: src/gui/exportOptions.cpp:393 +msgid "DMF" +msgstr "DMF" + +#: src/gui/exportOptions.cpp:422 +msgid "congratulations! you've unlocked a secret panel." +msgstr "grattis! du har låst upp en hemlig panel." + +#: src/gui/exportOptions.cpp:423 +msgid "Toggle hidden systems" +msgstr "Växla dolda system" + +#: src/gui/exportOptions.cpp:427 +msgid "Toggle all instrument types" +msgstr "Växla alla instrumenttyper" + +#: src/gui/exportOptions.cpp:431 +msgid "Set pitch linearity to Partial" +msgstr "Växla tonhöjdslinjäritet till Delvis" + +#: src/gui/exportOptions.cpp:435 +msgid "Enable multi-threading settings" +msgstr "Aktivera inställningar för flera trådar" + +#: src/gui/exportOptions.cpp:439 +msgid "Set fat to max" +msgstr "Sätt fett på max" + +#: src/gui/exportOptions.cpp:446 +msgid "Set muscle and fat to zero" +msgstr "Sätt muskler och fett på noll" + +#: src/gui/exportOptions.cpp:453 +msgid "Tell tildearrow this must be a mistake" +msgstr "Säg till tildearrow att detta måste vara ett misstag" + +#: src/gui/exportOptions.cpp:454 +msgid "" +"yeah, it's a bug. write a bug report in the GitHub page and tell me how did " +"you get here." +msgstr "" +"ja, det är en bugg. skriv en felrapport på GitHub-sidan och berätta till mig " +"hur du kom hit." + +#: src/gui/speed.cpp:32 src/gui/speed.cpp:102 src/gui/editControls.cpp:532 +#: src/gui/sysConf.cpp:2148 src/gui/guiConst.cpp:232 src/gui/guiConst.cpp:581 +#: src/gui/insEdit.cpp:2028 src/gui/insEdit.cpp:5693 src/gui/insEdit.cpp:6885 +msgid "Speed" +msgstr "Hastighet" + +#: src/gui/speed.cpp:41 +msgid "Base Tempo##TempoOrHz" +msgstr "Bastempo" + +#: src/gui/speed.cpp:41 +msgid "Tick Rate##TempoOrHz" +msgstr "Tickhastighet" + +#: src/gui/speed.cpp:46 +msgid "click to display tick rate" +msgstr "klicka för att visa tickhastighet" + +#: src/gui/speed.cpp:48 +msgid "click to display base tempo" +msgstr "klicka för att visa bastempo" + +#: src/gui/speed.cpp:80 +msgid "Groove" +msgstr "Groove" + +#: src/gui/speed.cpp:87 +msgid "click for one speed" +msgstr "klicka för en hastighet" + +#: src/gui/speed.cpp:90 +msgid "Speeds" +msgstr "Hastigheter" + +#: src/gui/speed.cpp:99 +msgid "click for groove pattern" +msgstr "klicka för groove-mönster" + +#: src/gui/speed.cpp:110 +msgid "click for two (alternating) speeds" +msgstr "klicka för två (växelvis) hastigheter" + +#: src/gui/speed.cpp:168 +msgid "Virtual Tempo" +msgstr "Virtuellt tempo" + +#: src/gui/speed.cpp:177 +msgid "Numerator" +msgstr "Täljare" + +#: src/gui/speed.cpp:187 +msgid "Denominator (set to base tempo)" +msgstr "Nämnare (inställd på bastempo)" + +#: src/gui/speed.cpp:193 +msgid "Divider" +msgstr "Delare" + +#: src/gui/speed.cpp:208 +msgid "Highlight" +msgstr "Markera" + +#: src/gui/speed.cpp:231 +msgid "Pattern Length" +msgstr "Mönsterlängd" + +#: src/gui/speed.cpp:245 +msgid "Song Length" +msgstr "Låtlängd" + +#: src/gui/channels.cpp:40 src/gui/editControls.cpp:446 +#: src/gui/guiConst.cpp:601 src/gui/gui.cpp:6280 +msgid "Channels" +msgstr "Kanaler" + +#: src/gui/channels.cpp:49 +msgid "Pat" +msgstr "Mön." + +#: src/gui/channels.cpp:51 src/gui/editControls.cpp:550 +msgid "Osc" +msgstr "Osc." + +#: src/gui/channels.cpp:53 +msgid "Swap" +msgstr "Byt ut" + +#: src/gui/channels.cpp:55 src/gui/userPresets.cpp:368 +#: src/gui/effectList.cpp:45 src/gui/subSongs.cpp:125 src/gui/settings.cpp:1060 +#: src/gui/settings.cpp:4383 src/gui/sampleEdit.cpp:195 src/gui/songInfo.cpp:40 +#: src/gui/sysManager.cpp:54 src/gui/insEdit.cpp:5288 +msgid "Name" +msgstr "Namn" + +#: src/gui/channels.cpp:64 +msgid "Show in pattern" +msgstr "Visa i mönstret" + +#: src/gui/channels.cpp:71 +msgid "Show in per-channel oscilloscope" +msgstr "Visa i per-kanal oscilloskop" + +#: src/gui/channels.cpp:82 +#, c-format +msgid "" +"%s #%d\n" +"(drag to swap channels)" +msgstr "" +"%s #%d\n" +"(dra för att byta kanal)" + +#: src/gui/commandPalette.cpp:51 src/gui/sysPicker.cpp:35 +#: src/gui/newSong.cpp:133 +msgid "Search..." +msgstr "Sök..." + +#: src/gui/commandPalette.cpp:54 +msgid "Search recent files..." +msgstr "Sök efter senaste filer..." + +#: src/gui/commandPalette.cpp:57 +msgid "Search instruments..." +msgstr "Sök efter instrument..." + +#: src/gui/commandPalette.cpp:60 +msgid "Search samples..." +msgstr "Sök efter samples..." + +#: src/gui/commandPalette.cpp:63 +msgid "Search instruments (to change to)..." +msgstr "Sök instrument (för att byta till)..." + +#: src/gui/commandPalette.cpp:66 +msgid "Search chip (to add)..." +msgstr "Sök chip (för att lägga till)..." + +#: src/gui/commandPalette.cpp:93 src/gui/commandPalette.cpp:167 +msgid "- None -" +msgstr "- Ingen -" + +#: src/gui/commandPalette.cpp:123 src/gui/commandPalette.cpp:179 +#: src/gui/commandPalette.cpp:241 +msgid "invalid command palette type" +msgstr "ogiltig kommandopaletttyp" + +#: src/gui/regView.cpp:30 src/gui/guiConst.cpp:604 +msgid "Register View" +msgstr "Registreringsvyn" + +#: src/gui/regView.cpp:38 +msgid "- no register pool available" +msgstr "- ingen registerpool tillgänglig" + +#: src/gui/log.cpp:25 src/gui/effectList.cpp:84 +msgid "ERROR" +msgstr "FEL" + +#: src/gui/log.cpp:26 +msgid "warning" +msgstr "varning" + +#: src/gui/log.cpp:27 +msgid "info" +msgstr "info" + +#: src/gui/log.cpp:28 src/gui/gui.cpp:4513 +msgid "debug" +msgstr "felsöka" + +#: src/gui/log.cpp:29 +msgid "trace" +msgstr "spåra" + +#: src/gui/log.cpp:47 src/gui/settings.cpp:4243 src/gui/guiConst.cpp:605 +msgid "Log Viewer" +msgstr "Loggvisare" + +#: src/gui/log.cpp:48 src/gui/editControls.cpp:750 src/gui/editControls.cpp:883 +#: src/gui/editControls.cpp:1000 +msgid "Follow" +msgstr "Följ" + +#: src/gui/log.cpp:50 src/gui/waveEdit.cpp:681 src/gui/insEdit.cpp:50 +msgid "Level" +msgstr "Nivå" + +#: src/gui/log.cpp:68 +msgid "time" +msgstr "tid" + +#: src/gui/log.cpp:70 +msgid "level" +msgstr "nivå" + +#: src/gui/log.cpp:72 +msgid "message" +msgstr "meddelande" + +#: src/gui/pattern.cpp:433 src/gui/editControls.cpp:421 +#: src/gui/editControls.cpp:754 src/gui/editControls.cpp:887 +#: src/gui/editControls.cpp:1015 src/gui/settings.cpp:2344 +#: src/gui/settings.cpp:3297 src/gui/settings.cpp:4100 +#: src/gui/findReplace.cpp:794 src/gui/guiConst.cpp:582 src/gui/gui.cpp:5899 +msgid "Pattern" +msgstr "Mönster" + +#: src/gui/pattern.cpp:468 +msgid "there aren't any channels to show." +msgstr "det finns inga kanaler att visa." + +#: src/gui/pattern.cpp:492 +msgid "click for pattern options (effect columns/pattern names/visualizer)" +msgstr "" +"klicka för mönsteralternativ (effektkolumner/mönsternamn/visualiserare)" + +#: src/gui/pattern.cpp:504 +msgid "Options:" +msgstr "Alternativ:" + +#: src/gui/pattern.cpp:506 +msgid "Effect columns/collapse" +msgstr "Effektkolumner/dold" + +#: src/gui/pattern.cpp:507 +msgid "Pattern names" +msgstr "Mönsternamn" + +#: src/gui/pattern.cpp:508 +msgid "Channel group hints" +msgstr "Kanalgruppstips" + +#: src/gui/pattern.cpp:509 +msgid "Visualizer" +msgstr "Visualiserare" + +#: src/gui/pattern.cpp:517 +msgid "Channel status:" +msgstr "Kanalstatus:" + +#: src/gui/pattern.cpp:519 +msgid "No##_PCS0" +msgstr "Nej" + +#: src/gui/pattern.cpp:522 +msgid "Yes##_PCS1" +msgstr "Ja" + +#: src/gui/pattern.cpp:1420 src/gui/pattern.cpp:1452 +msgid "WARNING!!" +msgstr "VARNING!!" + +#: src/gui/pattern.cpp:1422 src/gui/pattern.cpp:1459 +msgid "this instrument cannot be previewed because" +msgstr "detta instrument kan inte förhandsgranskas eftersom" + +#: src/gui/pattern.cpp:1423 src/gui/pattern.cpp:1466 +msgid "none of the chips can play it" +msgstr "inga chips kan spela det" + +#: src/gui/pattern.cpp:1424 src/gui/pattern.cpp:1473 +msgid "your instrument is in peril!! be careful..." +msgstr "ditt instrument är i fara!! var försiktig..." + +#: src/gui/osc.cpp:169 src/gui/settings.cpp:3710 src/gui/settings.cpp:3937 +msgid "Oscilloscope" +msgstr "Oscilloskop" + +#: src/gui/osc.cpp:176 +#, c-format +msgid "zoom: %.2fx (%.1fdB)" +msgstr "zoom: %.2fx (%.1fdB)" + +#: src/gui/osc.cpp:187 +#, c-format +msgid "window size: %.1fms" +msgstr "fönsterstorlek: %.1fms" + +#: src/gui/osc.cpp:385 +msgid "(-Infinity)dB" +msgstr "(-Oändlighet)dB" + +#: src/gui/debugWindow.cpp:66 src/gui/editControls.cpp:610 +msgid "Debug" +msgstr "Felsök" + +#: src/gui/debugWindow.cpp:663 +msgid "This is a language test." +msgstr "Detta är ett språktest." + +#: src/gui/debugWindow.cpp:664 +msgid "This is another language test." +msgstr "Detta är ett till språktest." + +#: src/gui/debugWindow.cpp:720 +#, c-format +msgid "%d apple" +msgid_plural "%d apples" +msgstr[0] "" +msgstr[1] "" + +#: src/gui/chanOsc.cpp:32 +msgid "None (0%)" +msgstr "Inga (0%)" + +#: src/gui/chanOsc.cpp:33 +msgid "None (50%)" +msgstr "Inga (50%)" + +#: src/gui/chanOsc.cpp:34 +msgid "None (100%)" +msgstr "Inga (100%)" + +#: src/gui/chanOsc.cpp:36 +msgid "Frequency" +msgstr "Frekvens" + +#: src/gui/chanOsc.cpp:38 src/gui/settings.cpp:1667 src/gui/settings.cpp:3406 +#: src/gui/settings.cpp:4088 +msgid "Channel" +msgstr "Kanal" + +#: src/gui/chanOsc.cpp:39 +msgid "Brightness" +msgstr "Ljusstyrka" + +#: src/gui/chanOsc.cpp:41 +msgid "Note Trigger" +msgstr "Nottrigger" + +#: src/gui/chanOsc.cpp:45 +msgid "Off" +msgstr "Av" + +#: src/gui/chanOsc.cpp:46 +msgid "Mode 1" +msgstr "Läge 1" + +#: src/gui/chanOsc.cpp:47 +msgid "Mode 2" +msgstr "Läge 2" + +#: src/gui/chanOsc.cpp:48 +msgid "Mode 3" +msgstr "Läge 3" + +#: src/gui/chanOsc.cpp:135 src/gui/guiConst.cpp:607 +msgid "Oscilloscope (per-channel)" +msgstr "Oscilloskop (per kanal)" + +#: src/gui/chanOsc.cpp:143 +msgid "Columns" +msgstr "Kolumner" + +#: src/gui/chanOsc.cpp:152 +msgid "Size (ms)" +msgstr "Storlek (ms)" + +#: src/gui/chanOsc.cpp:163 +msgid "Automatic columns" +msgstr "Automatiska kolumner" + +#: src/gui/chanOsc.cpp:177 +msgid "Center waveform" +msgstr "Centrera vågformen" + +#: src/gui/chanOsc.cpp:183 +msgid "Randomize phase on note" +msgstr "Randomisera fasen på noten" + +#: src/gui/chanOsc.cpp:189 +msgid "Amplitude" +msgstr "Amplitud" + +#: src/gui/chanOsc.cpp:199 src/gui/settings.cpp:3747 +msgid "Line size" +msgstr "Linjestorlek" + +#: src/gui/chanOsc.cpp:211 +msgid "Gradient" +msgstr "Gradient" + +#: src/gui/chanOsc.cpp:218 +msgid "error while creating gradient texture!" +msgstr "fel när du skapar en gradientstruktur!!" + +#: src/gui/chanOsc.cpp:236 +msgid "error while updating gradient texture!" +msgstr "fel vid uppdatering av gradientstruktur!" + +#: src/gui/chanOsc.cpp:292 src/gui/chanOsc.cpp:348 src/gui/settings.cpp:3793 +msgid "Color" +msgstr "Färg" + +#: src/gui/chanOsc.cpp:296 +msgid "Distance" +msgstr "Distans" + +#: src/gui/chanOsc.cpp:305 +msgid "Spread" +msgstr "Utbredning" + +#: src/gui/chanOsc.cpp:314 src/gui/userPresets.cpp:370 src/gui/subSongs.cpp:121 +#: src/gui/settings.cpp:2281 src/gui/sysManager.cpp:124 +msgid "Remove" +msgstr "Ta bort" + +#: src/gui/chanOsc.cpp:338 src/gui/settings.cpp:3885 src/gui/settings.cpp:4165 +#: src/gui/settings.cpp:4192 src/gui/settings.cpp:4218 +msgid "Background" +msgstr "Bakgrund" + +#: src/gui/chanOsc.cpp:341 +msgid "X Axis##AxisX" +msgstr "X-axeln" + +#: src/gui/chanOsc.cpp:342 +msgid "Y Axis##AxisY" +msgstr "Y-axeln" + +#: src/gui/chanOsc.cpp:352 +msgid "Text format:" +msgstr "Textformat:" + +#: src/gui/chanOsc.cpp:358 +msgid "" +"format guide:\n" +"- %c: channel name\n" +"- %C: channel short name\n" +"- %d: channel number (starting from 0)\n" +"- %D: channel number (starting from 1)\n" +"- %n: channel note\n" +"- %i: instrument name\n" +"- %I: instrument number (decimal)\n" +"- %x: instrument number (hex)\n" +"- %s: chip name\n" +"- %p: chip part number\n" +"- %S: chip ID\n" +"- %v: volume (decimal)\n" +"- %V: volume (percentage)\n" +"- %b: volume (hex)\n" +"- %l: new line\n" +"- %%: percent sign" +msgstr "" +"formatguide:\n" +"- %c: kanalnamn\n" +"- %C: kanalkortnamn\n" +"- %d: kanalnummer (från 0)\n" +"- %D: kanalnummer (från 1)\n" +"- %n: kanalnot\n" +"- %i: instrumentnamn\n" +"- %I: instrumentnummer (decimal)\n" +"- %x: instrumentnummer (hex)\n" +"- %s: chipnamn\n" +"- %p: chippets delnummer\n" +"- %S: chip-ID\n" +"- %v: volym (decimal)\n" +"- %V: volym (procent)\n" +"- %b: volym (hex)\n" +"- %l: ny rad\n" +"- %%: procenttecken" + +#: src/gui/chanOsc.cpp:380 +msgid "Text color" +msgstr "Textfärg" + +#: src/gui/chanOsc.cpp:382 src/gui/xyOsc.cpp:80 src/gui/settings.cpp:6672 +#: src/gui/tutorial.cpp:689 src/gui/gui.cpp:5639 src/gui/gui.cpp:6055 +#: src/gui/gui.cpp:6223 src/gui/gui.cpp:6322 src/gui/gui.cpp:6371 +msgid "OK" +msgstr "OK" + +#: src/gui/chanOsc.cpp:400 +msgid "creating chan osc work pool" +msgstr "skapar kanal osc. arbetspool" + +#: src/gui/chanOsc.cpp:429 +#, c-format +msgid "creating FFT plan for channel %d" +msgstr "skapar FFT-plan för kanal %d" + +#: src/gui/chanOsc.cpp:436 +msgid "failed to create plan!" +msgstr "misslyckades med att skapa plan!" + +#: src/gui/chanOsc.cpp:438 +msgid "failed to create inverse plan!" +msgstr "misslyckades med att skapa omvänd plan!" + +#: src/gui/chanOsc.cpp:440 +msgid "failed to create FFT buffers" +msgstr "misslyckades med att skapa FFT-buffertar" + +#: src/gui/chanOsc.cpp:585 +msgid "Error!" +msgstr "Fel!" + +#: src/gui/editControls.cpp:47 src/gui/sampleEdit.cpp:1736 src/gui/gui.cpp:2733 +#: src/gui/insEdit.cpp:363 +msgid "cut" +msgstr "klistra ut" + +#: src/gui/editControls.cpp:48 src/gui/sampleEdit.cpp:1740 src/gui/gui.cpp:2734 +#: src/gui/insEdit.cpp:7538 +msgid "copy" +msgstr "kopiera" + +#: src/gui/editControls.cpp:49 src/gui/sampleEdit.cpp:1744 src/gui/gui.cpp:2735 +#: src/gui/gui.cpp:2788 src/gui/insEdit.cpp:7543 +msgid "paste" +msgstr "klistra in" + +#: src/gui/editControls.cpp:51 +msgid "" +"select\n" +"all" +msgstr "" +"välj\n" +"alla" + +#: src/gui/editControls.cpp:52 +msgid "piano" +msgstr "piano" + +#: src/gui/editControls.cpp:53 src/gui/gui.cpp:4429 +msgid "undo" +msgstr "ångra" + +#: src/gui/editControls.cpp:54 src/gui/gui.cpp:4430 +msgid "redo" +msgstr "gör om" + +#: src/gui/editControls.cpp:57 +msgid "" +"paste\n" +"mix" +msgstr "" +"klistra\n" +"mix" + +#: src/gui/editControls.cpp:58 +msgid "" +"paste\n" +"mix bg" +msgstr "" +"klistra\n" +"mix bg" + +#: src/gui/editControls.cpp:59 +msgid "" +"paste\n" +"ins" +msgstr "" +"klistra\n" +"ins" + +#: src/gui/editControls.cpp:60 +msgid "" +"paste\n" +"ins bg" +msgstr "" +"klistra\n" +"ins bg" + +#: src/gui/editControls.cpp:61 +msgid "" +"paste\n" +"flood" +msgstr "" +"klistra\n" +"översvämning" + +#: src/gui/editControls.cpp:62 +msgid "" +"paste\n" +"overflow" +msgstr "" +"klistra\n" +"överlopp" + +#: src/gui/editControls.cpp:63 +msgid "" +"transpose\n" +"notes" +msgstr "" +"överföra\n" +"anteckningar" + +#: src/gui/editControls.cpp:64 +msgid "" +"transpose\n" +"values" +msgstr "" +"överföra\n" +"värden" + +#: src/gui/editControls.cpp:67 +msgid "" +"change\n" +"ins" +msgstr "" +"byt\n" +"ins" + +#: src/gui/editControls.cpp:68 +msgid "" +"find/\n" +"replace" +msgstr "" +"hitta/\n" +"ersätta" + +#: src/gui/editControls.cpp:69 src/gui/gui.cpp:3063 +msgid "collapse" +msgstr "dölj" + +#: src/gui/editControls.cpp:70 src/gui/gui.cpp:3064 +msgid "expand" +msgstr "expandera" + +#: src/gui/editControls.cpp:71 src/gui/gui.cpp:2820 +msgid "flip" +msgstr "vänd" + +#: src/gui/editControls.cpp:72 src/gui/insEdit.cpp:430 +msgid "invert" +msgstr "invertera" + +#: src/gui/editControls.cpp:73 src/gui/gui.cpp:2800 src/gui/gui.cpp:2960 +msgid "interpolate" +msgstr "interpolera" + +#: src/gui/editControls.cpp:74 src/gui/gui.cpp:2812 src/gui/insEdit.cpp:7610 +msgid "scale" +msgstr "skala" + +#: src/gui/editControls.cpp:77 src/gui/gui.cpp:2804 +msgid "fade" +msgstr "blekna" + +#: src/gui/editControls.cpp:78 src/gui/gui.cpp:2816 src/gui/insEdit.cpp:7639 +msgid "randomize" +msgstr "randomisera" + +#: src/gui/editControls.cpp:79 +msgid "opmask" +msgstr "opmask" + +#: src/gui/editControls.cpp:80 +msgid "" +"scroll\n" +"mode" +msgstr "" +"rullnings\n" +"läge" + +#: src/gui/editControls.cpp:81 +msgid "" +"input\n" +"latch" +msgstr "" +"ingångs\n" +"spärr" + +#: src/gui/editControls.cpp:82 +msgid "" +"set\n" +"latch" +msgstr "" +"sätt\n" +"spärr" + +#: src/gui/editControls.cpp:83 +msgid "" +"clear\n" +"latch" +msgstr "" +"rensa\n" +"spärr" + +#: src/gui/editControls.cpp:84 src/gui/findReplace.cpp:43 +#: src/gui/insEdit.cpp:7557 +msgid "clear" +msgstr "rensa" + +#: src/gui/editControls.cpp:333 +msgid "Mobile Controls" +msgstr "Mobila kontroller" + +#: src/gui/editControls.cpp:408 +msgid "Mobile Menu" +msgstr "Mobilmeny" + +#: src/gui/editControls.cpp:425 src/gui/editControls.cpp:752 +#: src/gui/editControls.cpp:885 src/gui/editControls.cpp:1007 +#: src/gui/settings.cpp:2485 src/gui/settings.cpp:3271 +#: src/gui/settings.cpp:3975 src/gui/orders.cpp:232 src/gui/guiConst.cpp:577 +#: src/gui/gui.cpp:5888 +msgid "Orders" +msgstr "Order" + +#: src/gui/editControls.cpp:429 src/gui/findReplace.cpp:669 +#: src/gui/findReplace.cpp:914 +msgid "Ins" +msgstr "Ins" + +#: src/gui/editControls.cpp:442 src/gui/findReplace.cpp:788 +#: src/gui/guiConst.cpp:230 +msgid "Song" +msgstr "Låt" + +#: src/gui/editControls.cpp:450 src/gui/sampleEdit.cpp:494 +msgid "Chips" +msgstr "Chips" + +#: src/gui/editControls.cpp:458 src/gui/settings.cpp:2117 +#: src/gui/settings.cpp:3934 src/gui/settings.cpp:4018 +#: src/gui/compatFlags.cpp:319 +msgid "Other" +msgstr "Övrig" + +#: src/gui/editControls.cpp:487 src/gui/guiConst.cpp:531 +msgid "New" +msgstr "Ny" + +#: src/gui/editControls.cpp:491 src/gui/doAction.cpp:38 src/gui/gui.cpp:4194 +msgid "Unsaved changes! Save changes before creating a new song?" +msgstr "Osparade ändringar! Spara ändringar innan du skapar en ny låt?" + +#: src/gui/editControls.cpp:507 +msgid "Save as..." +msgstr "Spara som..." + +#: src/gui/editControls.cpp:516 src/gui/gui.cpp:1680 +msgid "Restore Backup" +msgstr "Återställa säkerhetskopia" + +#: src/gui/editControls.cpp:524 +msgid "Song Info" +msgstr "Låtinfo" + +#: src/gui/editControls.cpp:528 src/gui/subSongs.cpp:17 +#: src/gui/guiConst.cpp:608 +msgid "Subsongs" +msgstr "Underlåtar" + +#: src/gui/editControls.cpp:541 +msgid "Channels here..." +msgstr "Kanaler här..." + +#: src/gui/editControls.cpp:544 +msgid "Chips here..." +msgstr "Ljudchips här..." + +#: src/gui/editControls.cpp:547 +msgid "What the hell..." +msgstr "Vad i helvete..." + +#: src/gui/editControls.cpp:554 +msgid "ChanOsc" +msgstr "KanalOsc." + +#: src/gui/editControls.cpp:558 +msgid "RegView" +msgstr "Registreringsvy" + +#: src/gui/editControls.cpp:562 +msgid "Stats" +msgstr "Statistik" + +#: src/gui/editControls.cpp:566 src/gui/guiConst.cpp:611 src/gui/grooves.cpp:35 +msgid "Grooves" +msgstr "Grooves" + +#: src/gui/editControls.cpp:569 +msgid "Compat Flags" +msgstr "Kompatibilitetsflaggor" + +#: src/gui/editControls.cpp:573 +msgid "XYOsc" +msgstr "XYOsc." + +#: src/gui/editControls.cpp:577 +msgid "Meter" +msgstr "Mätare" + +#: src/gui/editControls.cpp:581 +msgid "Memory" +msgstr "Minne" + +#: src/gui/editControls.cpp:585 +msgid "CV" +msgstr "CV" + +#: src/gui/editControls.cpp:589 +msgid "Presets" +msgstr "Förinställningar" + +#: src/gui/editControls.cpp:593 +msgid "PatManager" +msgstr "Mönsterhanterare" + +#: src/gui/editControls.cpp:599 src/gui/guiConst.cpp:564 +msgid "Panic" +msgstr "Panik" + +#: src/gui/editControls.cpp:601 src/gui/settings.cpp:560 +#: src/gui/guiConst.cpp:589 src/gui/guiConst.cpp:591 src/gui/gui.cpp:4439 +msgid "Settings" +msgstr "Inställningar" + +#: src/gui/editControls.cpp:606 +msgid "Log" +msgstr "Logg" + +#: src/gui/editControls.cpp:614 src/gui/guiConst.cpp:587 +msgid "About" +msgstr "Om" + +#: src/gui/editControls.cpp:619 +msgid "Switch to Desktop Mode" +msgstr "Växla till skrivbordsläge" + +#: src/gui/editControls.cpp:673 src/gui/editControls.cpp:784 +#: src/gui/editControls.cpp:904 +msgid "Play/Edit Controls" +msgstr "Spela/redigera kontroller" + +#: src/gui/editControls.cpp:681 src/gui/editControls.cpp:842 +#: src/gui/editControls.cpp:959 src/gui/editControls.cpp:1125 +msgid "Octave" +msgstr "Oktav" + +#: src/gui/editControls.cpp:698 src/gui/editControls.cpp:857 +msgid "Coarse Step" +msgstr "Modulatortonssteg" + +#: src/gui/editControls.cpp:698 src/gui/editControls.cpp:857 +msgid "Edit Step" +msgstr "Redigera steg" + +#: src/gui/editControls.cpp:731 src/gui/editControls.cpp:797 +#: src/gui/editControls.cpp:911 src/gui/editControls.cpp:1048 +#: src/gui/guiConst.cpp:545 +msgid "Play" +msgstr "Spela" + +#: src/gui/editControls.cpp:739 src/gui/editControls.cpp:789 +#: src/gui/editControls.cpp:918 src/gui/editControls.cpp:1040 +#: src/gui/guiConst.cpp:546 +msgid "Stop" +msgstr "Stoppa" + +#: src/gui/editControls.cpp:742 src/gui/editControls.cpp:826 +#: src/gui/editControls.cpp:943 src/gui/editControls.cpp:1082 +#: src/gui/gui.cpp:4426 +msgid "Edit" +msgstr "Redigera" + +#: src/gui/editControls.cpp:757 src/gui/editControls.cpp:816 +#: src/gui/editControls.cpp:934 src/gui/editControls.cpp:1104 +msgid "Repeat pattern" +msgstr "Upprepa mönstret" + +#: src/gui/editControls.cpp:766 src/gui/editControls.cpp:806 +#: src/gui/editControls.cpp:925 src/gui/editControls.cpp:1073 +msgid "Step one row" +msgstr "Gå över en rad" + +#: src/gui/editControls.cpp:771 src/gui/editControls.cpp:891 +#: src/gui/editControls.cpp:1020 src/gui/editControls.cpp:1110 +msgid "Poly##PolyInput" +msgstr "Poly" + +#: src/gui/editControls.cpp:771 src/gui/editControls.cpp:891 +#: src/gui/editControls.cpp:1020 src/gui/editControls.cpp:1110 +msgid "Mono##PolyInput" +msgstr "Mono" + +#: src/gui/editControls.cpp:776 src/gui/editControls.cpp:896 +#: src/gui/editControls.cpp:1025 src/gui/editControls.cpp:1115 +msgid "Polyphony" +msgstr "Polyfoni" + +#: src/gui/editControls.cpp:957 +msgid "Oct." +msgstr "Okt." + +#: src/gui/editControls.cpp:974 src/gui/editControls.cpp:1142 +msgid "Coarse" +msgstr "Modulatorton" + +#: src/gui/editControls.cpp:974 src/gui/editControls.cpp:1142 +msgid "Step" +msgstr "Steg" + +#: src/gui/editControls.cpp:998 +msgid "Foll." +msgstr "Följ" + +#: src/gui/editControls.cpp:1003 +msgid "Ord##FollowOrders" +msgstr "Order" + +#: src/gui/editControls.cpp:1011 +msgid "Pat##FollowPattern" +msgstr "Mönster" + +#: src/gui/editControls.cpp:1033 +msgid "Play Controls" +msgstr "Uppspelningskontroller" + +#: src/gui/editControls.cpp:1057 +msgid "Play from the beginning of this pattern" +msgstr "Spela från början av detta mönster" + +#: src/gui/editControls.cpp:1065 +msgid "Repeat from the beginning of this pattern" +msgstr "Upprepa från början av detta mönster" + +#: src/gui/editControls.cpp:1122 src/gui/guiConst.cpp:576 +msgid "Edit Controls" +msgstr "Redigera kontroller" + +#: src/gui/editControls.cpp:1169 src/gui/guiConst.cpp:560 +msgid "Follow orders" +msgstr "Följ order" + +#: src/gui/editControls.cpp:1170 src/gui/guiConst.cpp:561 +msgid "Follow pattern" +msgstr "Följ mönstret" + +#: src/gui/songNotes.cpp:32 src/gui/guiConst.cpp:600 +msgid "Song Comments" +msgstr "Låtkommentarer" + +#: src/gui/util.cpp:93 +msgid "" +msgstr "" + +#: src/gui/util.cpp:97 +msgid "Ctrl-" +msgstr "Ctrl-" + +#: src/gui/util.cpp:99 +msgid "Alt-" +msgstr "Alt-" + +#: src/gui/util.cpp:100 +msgid "Shift-" +msgstr "Skift-" + +#: src/gui/stats.cpp:31 src/gui/guiConst.cpp:597 +msgid "Statistics" +msgstr "Statistik" + +#: src/gui/stats.cpp:36 +msgid "Audio load" +msgstr "Ljudlasten" + +#: src/gui/xyOsc.cpp:40 src/gui/guiConst.cpp:612 +msgid "Oscilloscope (X-Y)" +msgstr "Oscilloskop (X-Y)" + +#: src/gui/xyOsc.cpp:45 +msgid "X Channel" +msgstr "X-kanal" + +#: src/gui/xyOsc.cpp:51 +msgid "Invert##X" +msgstr "Invertera##X" + +#: src/gui/xyOsc.cpp:52 +msgid "Y Channel" +msgstr "Y-kanal" + +#: src/gui/xyOsc.cpp:58 +msgid "Invert##Y" +msgstr "Invertera##Y" + +#: src/gui/xyOsc.cpp:59 src/gui/sampleEdit.cpp:1353 +msgid "Zoom" +msgstr "Zoom" + +#: src/gui/xyOsc.cpp:71 +msgid "Decay Time (ms)" +msgstr "Decaytiden (ms)" + +#: src/gui/xyOsc.cpp:74 +msgid "Intensity" +msgstr "Intensitet" + +#: src/gui/xyOsc.cpp:77 +msgid "Line Thickness" +msgstr "Linjetjocklek" + +#: src/gui/xyOsc.cpp:213 +msgid "(-Infinity)dB,(-Infinity)dB" +msgstr "(-Oändlighet)dB,(-Oändlighet)dB" + +#: src/gui/xyOsc.cpp:215 +#, c-format +msgid "(-Infinity)dB,%.1fdB" +msgstr "(-Oändlighet)dB,%.1fdB" + +#: src/gui/xyOsc.cpp:217 +#, c-format +msgid "%.1fdB,(-Infinity)dB" +msgstr "%.1fdB,(-Oändlighet)dB" + +#: src/gui/xyOsc.cpp:219 +#, c-format +msgid "%.1fdB,%.1fdB" +msgstr "%.1fdB,%.1fdB" + +#: src/gui/sysConf.cpp:49 src/gui/sysConf.cpp:121 src/gui/sysConf.cpp:486 +#: src/gui/sysConf.cpp:604 src/gui/sysConf.cpp:647 src/gui/sysConf.cpp:684 +#: src/gui/sysConf.cpp:843 src/gui/sysConf.cpp:1098 src/gui/sysConf.cpp:1181 +#: src/gui/sysConf.cpp:1220 src/gui/sysConf.cpp:1294 src/gui/sysConf.cpp:1380 +#: src/gui/sysConf.cpp:1444 src/gui/sysConf.cpp:1482 src/gui/sysConf.cpp:1572 +#: src/gui/sysConf.cpp:1668 src/gui/sysConf.cpp:1716 src/gui/sysConf.cpp:1757 +#: src/gui/sysConf.cpp:1810 src/gui/sysConf.cpp:2284 src/gui/sysConf.cpp:2307 +msgid "Clock rate:" +msgstr "Klockhastighet:" + +#: src/gui/sysConf.cpp:73 src/gui/sysConf.cpp:152 src/gui/sysConf.cpp:911 +#: src/gui/sysConf.cpp:1459 src/gui/sysConf.cpp:1783 +msgid "Chip type:" +msgstr "Chiptyp:" + +#: src/gui/sysConf.cpp:75 +msgid "YM3438 (9-bit DAC)" +msgstr "YM3438 (9-bit DAC)" + +#: src/gui/sysConf.cpp:79 +msgid "YM2612 (9-bit DAC with distortion)" +msgstr "YM2612 (9-bit DAC med distorsion)" + +#: src/gui/sysConf.cpp:83 +msgid "YMF276 (external DAC)" +msgstr "YMF276 (extern DAC)" + +#: src/gui/sysConf.cpp:90 src/gui/sysConf.cpp:804 src/gui/sysConf.cpp:1350 +#: src/gui/sysConf.cpp:1420 +msgid "Disable ExtCh FM macros (compatibility)" +msgstr "Inaktivera utökad kanal FM-makron (kompatibilitet)" + +#: src/gui/sysConf.cpp:93 src/gui/sysConf.cpp:807 src/gui/sysConf.cpp:1353 +#: src/gui/sysConf.cpp:1423 +msgid "Ins change in ExtCh operator 2-4 affects FB (compatibility)" +msgstr "" +"Instrumentbyte i utökad kanaloperatorer 2-4 påverkar återkoppling " +"(kompatibilitet)" + +#: src/gui/sysConf.cpp:99 +msgid "Modified sine wave (joke)" +msgstr "Modifierad sinusvåg (skämt)" + +#: src/gui/sysConf.cpp:123 src/gui/sysConf.cpp:1296 src/gui/sysConf.cpp:1718 +#: src/gui/sysConf.cpp:2286 +msgid "3.58MHz (NTSC)" +msgstr "3,58MHz (NTSC)" + +#: src/gui/sysConf.cpp:127 +msgid "3.55MHz (PAL)" +msgstr "3,55MHz (PAL)" + +#: src/gui/sysConf.cpp:131 +msgid "4MHz (BBC Micro)" +msgstr "4MHz (BBC Micro)" + +#: src/gui/sysConf.cpp:135 +msgid "1.79MHz (Half NTSC)" +msgstr "1,79MHz (Halv NTSC)" + +#: src/gui/sysConf.cpp:139 +msgid "3MHz (Exed Exes)" +msgstr "3MHz (Exed Exes)" + +#: src/gui/sysConf.cpp:143 +msgid "2MHz (Sega System 1)" +msgstr "2MHz (Sega System 1)" + +#: src/gui/sysConf.cpp:147 +msgid "447KHz (TI-99/4A)" +msgstr "447KHz (TI-99/4A)" + +#: src/gui/sysConf.cpp:154 +msgid "Sega VDP/Master System" +msgstr "Sega VDP/Master System" + +#: src/gui/sysConf.cpp:162 +msgid "TI SN76489 with Atari-like short noise" +msgstr "TI SN76489 med Atari-liknande kortbrus" + +#: src/gui/sysConf.cpp:166 +msgid "Game Gear" +msgstr "Game Gear" + +#: src/gui/sysConf.cpp:170 +msgid "TI SN76489A" +msgstr "TI SN76489A" + +#: src/gui/sysConf.cpp:174 +msgid "TI SN76496" +msgstr "TI SN76496" + +#: src/gui/sysConf.cpp:178 +msgid "NCR 8496" +msgstr "NCR 8496" + +#: src/gui/sysConf.cpp:182 +msgid "Tandy PSSJ 3-voice sound" +msgstr "Tandy PSSJ 3-kanalsljud" + +#: src/gui/sysConf.cpp:186 +msgid "TI SN94624" +msgstr "TI SN94624" + +#: src/gui/sysConf.cpp:190 +msgid "TI SN76494" +msgstr "TI SN76494" + +#: src/gui/sysConf.cpp:196 +msgid "Disable noise period change phase reset" +msgstr "Inaktivera brusperiod ändra fasåterställning" + +#: src/gui/sysConf.cpp:200 src/gui/sysConf.cpp:2190 +msgid "Disable easy period to note mapping on upper octaves" +msgstr "Inaktivera enkel period för att notera mappning på högre oktaver" + +#: src/gui/sysConf.cpp:219 src/gui/sysConf.cpp:583 +msgid "Pseudo-PAL" +msgstr "Pseudo-PAL" + +#: src/gui/sysConf.cpp:222 src/gui/sysConf.cpp:342 +msgid "Disable anti-click" +msgstr "Inaktivera anti-klick" + +#: src/gui/sysConf.cpp:225 src/gui/sysConf.cpp:345 +msgid "Chip revision:" +msgstr "Chiprevision:" + +#: src/gui/sysConf.cpp:227 +msgid "HuC6280 (original)" +msgstr "HuC6280 (original)" + +#: src/gui/sysConf.cpp:231 +msgid "HuC6280A (SuperGrafx)" +msgstr "HuC6280A (SuperGrafx)" + +#: src/gui/sysConf.cpp:257 +msgid "CPU rate:" +msgstr "CPU-hastighet:" + +#: src/gui/sysConf.cpp:259 +msgid "6.18MHz (NTSC)" +msgstr "6,18MHz (NTSC)" + +#: src/gui/sysConf.cpp:263 +msgid "5.95MHz (PAL)" +msgstr "5,95MHz (PAL)" + +#: src/gui/sysConf.cpp:268 +msgid "Sample memory:" +msgstr "Sampleminne" + +#: src/gui/sysConf.cpp:270 +msgid "8K (rev A/B/E)" +msgstr "8K (rev. A/B/E)" + +#: src/gui/sysConf.cpp:274 +msgid "64K (rev D/F)" +msgstr "64K (rev. D/F)" + +#: src/gui/sysConf.cpp:279 +msgid "DAC resolution:" +msgstr "DAC-upplösning:" + +#: src/gui/sysConf.cpp:281 +msgid "16-bit (rev A/B/D/F)" +msgstr "16-bit. (rev. A/B/D/F)" + +#: src/gui/sysConf.cpp:285 +msgid "8-bit + TDM (rev C/E)" +msgstr "8-bit + TDM (rev. C/E)" + +#: src/gui/sysConf.cpp:290 src/gui/sysConf.cpp:1931 +msgid "Enable echo" +msgstr "Aktivera eko" + +#: src/gui/sysConf.cpp:293 +msgid "Swap echo channels" +msgstr "Byt ekokanaler" + +#: src/gui/sysConf.cpp:296 src/gui/sysConf.cpp:1151 +msgid "Echo delay:" +msgstr "Ekodelay:" + +#: src/gui/sysConf.cpp:302 +msgid "Echo resolution:" +msgstr "Ekoupplösning" + +#: src/gui/sysConf.cpp:308 src/gui/sysConf.cpp:1159 +msgid "Echo feedback:" +msgstr "Ekoåterkoppling" + +#: src/gui/sysConf.cpp:314 src/gui/sysConf.cpp:1967 +msgid "Echo volume:" +msgstr "Ekovolym" + +#: src/gui/sysConf.cpp:347 +msgid "Original (DMG)" +msgstr "Original (DMG)" + +#: src/gui/sysConf.cpp:351 +msgid "Game Boy Color (rev C)" +msgstr "Game Boy Color (rev. C)" + +#: src/gui/sysConf.cpp:355 +msgid "Game Boy Color (rev E)" +msgstr "Game Boy Color (rev. E)" + +#: src/gui/sysConf.cpp:359 +msgid "Game Boy Advance" +msgstr "Game Boy Advance" + +#: src/gui/sysConf.cpp:364 +msgid "Wave channel orientation:" +msgstr "Vågkanalorientering:" + +#: src/gui/sysConf.cpp:367 src/gui/compatFlags.cpp:298 src/gui/gui.cpp:6067 +#: src/gui/insEdit.cpp:217 src/gui/insEdit.cpp:231 +msgid "Normal" +msgstr "Normal" + +#: src/gui/sysConf.cpp:371 +msgid "Inverted" +msgstr "Omvänd" + +#: src/gui/sysConf.cpp:378 +msgid "Exact data (inverted)" +msgstr "Exakt data (omvänd)" + +#: src/gui/sysConf.cpp:382 +msgid "Exact output (normal)" +msgstr "Exakt utgång (normal)" + +#: src/gui/sysConf.cpp:388 +msgid "" +"Pretty please one more compat flag when I use arpeggio and my sound length" +msgstr "" +"Snälla snälla en kompatflagga till när jag använder arpeggio och min " +"ljudlängd" + +#: src/gui/sysConf.cpp:405 src/gui/sysConf.cpp:438 +msgid "DAC bit depth (reduces output rate):" +msgstr "DAC-bitdjup (minskar utgångshastighet):" + +#: src/gui/sysConf.cpp:426 src/gui/sysConf.cpp:1268 src/gui/sysConf.cpp:1919 +msgid "Volume scale:" +msgstr "Volymskala:" + +#: src/gui/sysConf.cpp:432 +msgid "Mix buffers (allows longer echo delay):" +msgstr "Blanda buffertar (tillåter längre ekodelay):" + +#: src/gui/sysConf.cpp:444 +msgid "Channel limit:" +msgstr "Kanalgräns:" + +#: src/gui/sysConf.cpp:450 +msgid "Sample rate:" +msgstr "Samplingshastighet:" + +#: src/gui/sysConf.cpp:460 +#, c-format +msgid "Actual sample rate: %d Hz" +msgstr "Aktuella samplingshastighet: %d Hz" + +#: src/gui/sysConf.cpp:462 +#, c-format +msgid "Max mixer CPU usage: %.0f%%" +msgstr "Max mixer CPU-användning: %.0f%%" + +#: src/gui/sysConf.cpp:488 +msgid "NTSC (3.58MHz)" +msgstr "NTSC (3,58MHz)" + +#: src/gui/sysConf.cpp:492 src/gui/sysConf.cpp:557 +msgid "PAL (3.55MHz)" +msgstr "PAL (3,55MHz)" + +#: src/gui/sysConf.cpp:496 +msgid "Arcade (4MHz)" +msgstr "Arkad (4MHz)" + +#: src/gui/sysConf.cpp:500 +msgid "Half NTSC (1.79MHz)" +msgstr "Halv NTSC (1,79MHz)" + +#: src/gui/sysConf.cpp:506 +msgid "Patch set:" +msgstr "Patchblandning:" + +#: src/gui/sysConf.cpp:528 +msgid "Ignore top/hi-hat frequency changes" +msgstr "Ignorera ridcymbal/hi-hat frekvensändringar" + +#: src/gui/sysConf.cpp:531 +msgid "Apply fixed frequency to all drums at once" +msgstr "Tillämpa fast frekvens på alla trummor samtidigt" + +#: src/gui/sysConf.cpp:553 +msgid "NTSC/X16 (3.58MHz)" +msgstr "NTSC/X16 (3,58MHz)" + +#: src/gui/sysConf.cpp:561 +msgid "X1/X68000 (4MHz)" +msgstr "X1/X68000 (4MHz)" + +#: src/gui/sysConf.cpp:567 src/gui/sysConf.cpp:587 +msgid "Broken pitch macro/slides (compatibility)" +msgstr "Brutna tonhöjdsmakro/glider (kompatibilitet)" + +#: src/gui/sysConf.cpp:607 src/gui/sysConf.cpp:650 src/gui/sysConf.cpp:1222 +#: src/gui/sysConf.cpp:2310 +msgid "NTSC (1.79MHz)" +msgstr "NTSC (1,79MHz)" + +#: src/gui/sysConf.cpp:611 src/gui/sysConf.cpp:654 src/gui/sysConf.cpp:1226 +msgid "PAL (1.67MHz)" +msgstr "PAL (1,67MHz)" + +#: src/gui/sysConf.cpp:615 src/gui/sysConf.cpp:658 src/gui/sysConf.cpp:1230 +msgid "Dendy (1.77MHz)" +msgstr "Dendy (1,77MHz)" + +#: src/gui/sysConf.cpp:621 +msgid "DPCM channel mode:" +msgstr "DPCM-kanalläge:" + +#: src/gui/sysConf.cpp:624 +msgid "DPCM (muffled samples; low CPU usage)" +msgstr "DPCM (dämpade samples; låg CPU-användning)" + +#: src/gui/sysConf.cpp:628 +msgid "PCM (crisp samples; high CPU usage)" +msgstr "PCM (skarpa samples; hög CPU-användning)" + +#: src/gui/sysConf.cpp:687 +msgid "NTSC (1.02MHz)" +msgstr "NTSC (1,02MHz)" + +#: src/gui/sysConf.cpp:691 +msgid "PAL (0.99MHz)" +msgstr "PAL (0,99MHz)" + +#: src/gui/sysConf.cpp:695 +msgid "SSI 2001 (0.89MHz)" +msgstr "SSI 2001 (0,89MHz)" + +#: src/gui/sysConf.cpp:701 src/gui/sysConf.cpp:2320 +msgid "Global parameter priority:" +msgstr "Global parameterprioritet:" + +#: src/gui/sysConf.cpp:704 src/gui/sysConf.cpp:2323 +msgid "Left to right" +msgstr "Vänster till höger" + +#: src/gui/sysConf.cpp:708 src/gui/sysConf.cpp:2327 +msgid "Last used channel" +msgstr "Senast använd kanal" + +#: src/gui/sysConf.cpp:714 +msgid "Hard reset envelope:" +msgstr "Hård återställa ADSR" + +#: src/gui/sysConf.cpp:716 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:1920 +#: src/gui/insEdit.cpp:6955 src/gui/insEdit.cpp:7481 +msgid "Attack" +msgstr "Attack" + +#: src/gui/sysConf.cpp:721 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:1960 +#: src/gui/insEdit.cpp:6956 src/gui/insEdit.cpp:7482 +msgid "Decay" +msgstr "Decay" + +#: src/gui/sysConf.cpp:726 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:1929 +#: src/gui/insEdit.cpp:6957 src/gui/insEdit.cpp:7483 +msgid "Sustain" +msgstr "Sustain" + +#: src/gui/sysConf.cpp:731 src/gui/settings.cpp:3987 src/gui/insEdit.cpp:50 +#: src/gui/insEdit.cpp:604 src/gui/insEdit.cpp:1983 src/gui/insEdit.cpp:6958 +#: src/gui/insEdit.cpp:7484 +msgid "Release" +msgstr "Release" + +#: src/gui/sysConf.cpp:737 +msgid "Envelope reset time:" +msgstr "ADSR-återställningstid:" + +#: src/gui/sysConf.cpp:747 +msgid "" +"- 0 disables envelope reset. not recommended!\n" +"- 1 may trigger SID envelope bugs.\n" +"- values that are too high may result in notes being skipped." +msgstr "" +"- 0 inaktiverar ADSR-återställning. rekommenderas ej!\n" +"- 1 kan utlösa SID ADSR-buggar.\n" +"- värden som är för höga kan leda till att noter hoppas över." + +#: src/gui/sysConf.cpp:749 +msgid "Disable 1Exy env update (compatibility)" +msgstr "Inaktivera 1Exy ADSR-uppdatering (kompatibilitet)" + +#: src/gui/sysConf.cpp:753 +msgid "Relative duty and cutoff macros are coarse (compatibility)" +msgstr "" +"Brytfrekvensmakro för relativa arbetscykler och modulatortoner " +"(kompatibilitet)" + +#: src/gui/sysConf.cpp:757 +msgid "Cutoff macro race conditions (compatibility)" +msgstr "Brytfrekvensmakro loppvillkor (kompatibilitet)" + +#: src/gui/sysConf.cpp:793 +msgid "8MHz (Neo Geo MVS)" +msgstr "8MHz (Neo Geo MVS)" + +#: src/gui/sysConf.cpp:797 +msgid "8.06MHz (Neo Geo AES)" +msgstr "8,06MHz (Neo Geo AES)" + +#: src/gui/sysConf.cpp:812 src/gui/sysConf.cpp:1337 src/gui/sysConf.cpp:1407 +msgid "SSG Volume" +msgstr "SSG-volym" + +#: src/gui/sysConf.cpp:818 src/gui/sysConf.cpp:1413 +msgid "FM/ADPCM Volume" +msgstr "FM/ADPCM-volym" + +#: src/gui/sysConf.cpp:845 +msgid "1.79MHz (ZX Spectrum NTSC/MSX)" +msgstr "1,79MHz (ZX Spectrum NTSC/MSX)" + +#: src/gui/sysConf.cpp:849 +msgid "1.77MHz (ZX Spectrum PAL)" +msgstr "1,77MHz (ZX Spectrum PAL)" + +#: src/gui/sysConf.cpp:853 +msgid "0.83MHz (Pre-divided Sunsoft 5B on PAL)" +msgstr "0,83MHz (Fördelad Sunsoft 5B på PAL)" + +#: src/gui/sysConf.cpp:857 +msgid "0.89MHz (Pre-divided Sunsoft 5B)" +msgstr "0,89MHz (Fördelad Sunsoft 5B)" + +#: src/gui/sysConf.cpp:861 +msgid "1MHz (Amstrad CPC)" +msgstr "1MHz (Amstrad CPC)" + +#: src/gui/sysConf.cpp:865 +msgid "1.10MHz (Gamate/VIC-20 PAL)" +msgstr "1,10MHz (Gamate/VIC-20 PAL)" + +#: src/gui/sysConf.cpp:869 +msgid "1.25MHz (Mag Max)" +msgstr "1,25MHz (Mag Max)" + +#: src/gui/sysConf.cpp:873 +msgid "1.5MHz (Vectrex)" +msgstr "1,5MHz (Vectrex)" + +#: src/gui/sysConf.cpp:877 +msgid "1.536MHz (Kyugo)" +msgstr "1,536MHz (Kyugo)" + +#: src/gui/sysConf.cpp:881 +msgid "1.67MHz (?)" +msgstr "1,67MHz (?)" + +#: src/gui/sysConf.cpp:885 +msgid "1.75MHz (ZX Spectrum 48K)" +msgstr "1,75MHz (ZX Spectrum 48K)" + +#: src/gui/sysConf.cpp:889 +msgid "1.99MHz (PC-88)" +msgstr "1,99MHz (PC-88)" + +#: src/gui/sysConf.cpp:893 +msgid "2MHz (Atari ST/Sharp X1)" +msgstr "2MHz (Atari ST/Sharp X1)" + +#: src/gui/sysConf.cpp:897 +msgid "2^21Hz (Game Boy)" +msgstr "2^21Hz (Game Boy)" + +#: src/gui/sysConf.cpp:901 +msgid "3.58MHz (Darky)" +msgstr "3,58MHz (Darky)" + +#: src/gui/sysConf.cpp:905 +msgid "3.6MHz (Darky)" +msgstr "3,6MHz (Darky)" + +#: src/gui/sysConf.cpp:917 +msgid "YM2149(F)" +msgstr "YM2149(F)" + +#: src/gui/sysConf.cpp:921 +msgid "Sunsoft 5B" +msgstr "Sunsoft 5B" + +#: src/gui/sysConf.cpp:925 +msgid "AY-3-8914" +msgstr "AY-3-8914" + +#: src/gui/sysConf.cpp:931 +msgid "note: AY-3-8914 is not supported by the VGM format!" +msgstr "OBS: AY-3-8914 stöds ej av VGM-formatet!" + +#: src/gui/sysConf.cpp:935 +msgid "Stereo##_AY_STEREO" +msgstr "Stereo" + +#: src/gui/sysConf.cpp:940 +msgid "Separation" +msgstr "Separation" + +#: src/gui/sysConf.cpp:949 +msgid "Half Clock divider##_AY_CLKSEL" +msgstr "Halvklocka avdelare" + +#: src/gui/sysConf.cpp:971 +msgid "SAM Coupé (8MHz)" +msgstr "SAM Coupé (8MHz)" + +#: src/gui/sysConf.cpp:975 +msgid "NTSC (7.15MHz)" +msgstr "NTSC (7.15MHz)" + +#: src/gui/sysConf.cpp:979 +msgid "PAL (7.09MHz)" +msgstr "PAL (7.09MHz)" + +#: src/gui/sysConf.cpp:999 +msgid "Stereo separation:" +msgstr "Stereoseparation:" + +#: src/gui/sysConf.cpp:1006 src/gui/sysConf.cpp:2412 +msgid "Model:" +msgstr "Modell:" + +#: src/gui/sysConf.cpp:1008 +msgid "Amiga 500 (OCS)" +msgstr "Amiga 500 (OCS)" + +#: src/gui/sysConf.cpp:1012 +msgid "Amiga 1200 (AGA)" +msgstr "Amiga 1200 (AGA)" + +#: src/gui/sysConf.cpp:1018 +msgid "Chip memory:" +msgstr "Chipminne:" + +#: src/gui/sysConf.cpp:1020 +msgid "2MB (ECS/AGA max)" +msgstr "2MB (ECS/AGA max)" + +#: src/gui/sysConf.cpp:1030 +msgid "512KB (OCS max)" +msgstr "512KB (OCS max)" + +#: src/gui/sysConf.cpp:1043 src/gui/sysConf.cpp:1081 src/gui/sysConf.cpp:2395 +#: src/gui/sysConf.cpp:2449 +msgid "PAL" +msgstr "PAL" + +#: src/gui/sysConf.cpp:1046 +msgid "Bypass frequency limits" +msgstr "Gå förbi frekvensgränserna" + +#: src/gui/sysConf.cpp:1065 +msgid "Mixing mode:" +msgstr "Blandningsläge:" + +#: src/gui/sysConf.cpp:1067 src/gui/settings.cpp:3724 +msgid "Mono" +msgstr "Mono" + +#: src/gui/sysConf.cpp:1071 +msgid "Mono (no distortion)" +msgstr "Mono (ingen förvrängning)" + +#: src/gui/sysConf.cpp:1075 src/gui/sysConf.cpp:1197 src/gui/sysConf.cpp:1864 +#: src/gui/sysConf.cpp:2204 +msgid "Stereo" +msgstr "Stereo" + +#: src/gui/sysConf.cpp:1100 +msgid "1.19MHz (PC)" +msgstr "1,19MHz (PC)" + +#: src/gui/sysConf.cpp:1104 +msgid "1.99MHz (PC-98)" +msgstr "1,99MHz (PC-98)" + +#: src/gui/sysConf.cpp:1108 +msgid "2.46MHz (PC-98)" +msgstr "2,46MHz (PC-98)" + +#: src/gui/sysConf.cpp:1114 +msgid "Speaker type:" +msgstr "Högtalartyp:" + +#: src/gui/sysConf.cpp:1116 +msgid "Unfiltered" +msgstr "Ofiltrerad" + +#: src/gui/sysConf.cpp:1120 +msgid "Cone" +msgstr "Kon" + +#: src/gui/sysConf.cpp:1124 +msgid "Piezo" +msgstr "Piezo" + +#: src/gui/sysConf.cpp:1128 +msgid "Use system beeper (Linux only!)" +msgstr "Använd systemljudspiparen (endast Linux!)" + +#: src/gui/sysConf.cpp:1134 +msgid "Reset phase on frequency change" +msgstr "Återställ fasen vid frekvensändring" + +#: src/gui/sysConf.cpp:1183 +msgid "16MHz (Seta 1)" +msgstr "16MHz (Seta 1)" + +#: src/gui/sysConf.cpp:1187 +msgid "16.67MHz (Seta 2)" +msgstr "16,67MHz (Seta 2)" + +#: src/gui/sysConf.cpp:1191 src/gui/sysConf.cpp:1759 +msgid "14.32MHz (NTSC)" +msgstr "14,32MHz (NTSC)" + +#: src/gui/sysConf.cpp:1201 +msgid "Bankswitched (Seta 2)" +msgstr "Bankväxlad (Seta 2)" + +#: src/gui/sysConf.cpp:1235 src/gui/sysConf.cpp:1261 +msgid "Initial channel limit:" +msgstr "Initial kanalgräns:" + +#: src/gui/sysConf.cpp:1241 src/gui/sysConf.cpp:2398 +msgid "Disable hissing" +msgstr "Inaktivera väsning" + +#: src/gui/sysConf.cpp:1244 +msgid "Scale frequency to wave length" +msgstr "Skala frekvens till våglängd" + +#: src/gui/sysConf.cpp:1300 src/gui/sysConf.cpp:1722 +msgid "3.54MHz (PAL)" +msgstr "3,54MHz (PAL)" + +#: src/gui/sysConf.cpp:1304 src/gui/sysConf.cpp:1726 src/gui/sysConf.cpp:2290 +msgid "4MHz" +msgstr "4MHz" + +#: src/gui/sysConf.cpp:1308 src/gui/sysConf.cpp:1730 +msgid "3MHz" +msgstr "3MHz" + +#: src/gui/sysConf.cpp:1312 src/gui/sysConf.cpp:1734 +msgid "3.9936MHz (PC-88/PC-98)" +msgstr "3,9936MHz (PC-88/PC-98)" + +#: src/gui/sysConf.cpp:1316 +msgid "1.5MHz" +msgstr "1,5MHz" + +#: src/gui/sysConf.cpp:1321 src/gui/sysConf.cpp:1391 src/gui/sysConf.cpp:1639 +#: src/gui/sysConf.cpp:1852 +msgid "Output rate:" +msgstr "Utgångshastighet:" + +#: src/gui/sysConf.cpp:1323 src/gui/sysConf.cpp:1397 +msgid "FM: clock / 72, SSG: clock / 16" +msgstr "FM: klocka / 72, SSG: klocka / 16" + +#: src/gui/sysConf.cpp:1327 +msgid "FM: clock / 36, SSG: clock / 8" +msgstr "FM: klocka / 36, SSG: klocka / 8" + +#: src/gui/sysConf.cpp:1331 +msgid "FM: clock / 24, SSG: clock / 4" +msgstr "FM: klocka / 24, SSG: klocka / 4" + +#: src/gui/sysConf.cpp:1343 +msgid "FM Volume" +msgstr "FM-volym" + +#: src/gui/sysConf.cpp:1382 +msgid "8MHz (Arcade)" +msgstr "8MHz (Arkad)" + +#: src/gui/sysConf.cpp:1386 +msgid "7.987MHz (PC-88/PC-98)" +msgstr "7,987MHz (PC-88/PC-98)" + +#: src/gui/sysConf.cpp:1393 +msgid "FM: clock / 144, SSG: clock / 32" +msgstr "FM: klocka / 144, SSG: klocka / 32" + +#: src/gui/sysConf.cpp:1401 +msgid "FM: clock / 48, SSG: clock / 8" +msgstr "FM: klocka / 48, SSG: klocka / 8" + +#: src/gui/sysConf.cpp:1446 +msgid "8MHz (FM Towns)" +msgstr "8MHz (FM Towns)" + +#: src/gui/sysConf.cpp:1450 +msgid "10MHz (Sega System 18)" +msgstr "10MHz (Sega System 18)" + +#: src/gui/sysConf.cpp:1454 +msgid "12.5MHz (Sega CD/System 32)" +msgstr "12,5MHz (Sega CD/System 32)" + +#: src/gui/sysConf.cpp:1461 +msgid "RF5C68 (10-bit output)" +msgstr "RF5C68 (10-bit utgång)" + +#: src/gui/sysConf.cpp:1465 +msgid "RF5C164 (16-bit output)" +msgstr "RF5C164 (16-bit utgång)" + +#: src/gui/sysConf.cpp:1520 +msgid "Sample rate table:" +msgstr "Tabell för samplefrekvens:" + +#: src/gui/sysConf.cpp:1524 +msgid "divider \\ clock" +msgstr "avdelare \\ klocka" + +#: src/gui/sysConf.cpp:1526 +msgid "full" +msgstr "full" + +#: src/gui/sysConf.cpp:1528 +msgid "half" +msgstr "halv" + +#: src/gui/sysConf.cpp:1641 +msgid "clock / 132" +msgstr "klocka / 132" + +#: src/gui/sysConf.cpp:1645 +msgid "clock / 165" +msgstr "klocka / 165" + +#: src/gui/sysConf.cpp:1651 +msgid "Bankswitched (NMK112)" +msgstr "Bankväxlad (NMK112)" + +#: src/gui/sysConf.cpp:1670 +msgid "1.79MHz (NTSC/MSX)" +msgstr "1,79MHz (NTSC/MSX)" + +#: src/gui/sysConf.cpp:1674 +msgid "1.77MHz (PAL)" +msgstr "1,77MHz (PAL)" + +#: src/gui/sysConf.cpp:1678 +msgid "1.5MHz (Arcade)" +msgstr "1,5MHz (Arcade)" + +#: src/gui/sysConf.cpp:1682 +msgid "2MHz" +msgstr "2MHz" + +#: src/gui/sysConf.cpp:1697 +msgid "Consistent frequency across all duties" +msgstr "Konsekvent frekvens för alla arbetscykler" + +#: src/gui/sysConf.cpp:1704 +msgid "note: only works for an initial LFSR value of 0!" +msgstr "obs: fungerar bara för ett initialt LFSR-värde på 0!" + +#: src/gui/sysConf.cpp:1738 +msgid "3.5MHz" +msgstr "3,5MHz" + +#: src/gui/sysConf.cpp:1763 +msgid "14.19MHz (PAL)" +msgstr "14,19MHz (PAL)" + +#: src/gui/sysConf.cpp:1767 +msgid "14MHz" +msgstr "14MHz" + +#: src/gui/sysConf.cpp:1771 +msgid "16MHz" +msgstr "16MHz" + +#: src/gui/sysConf.cpp:1775 +msgid "15MHz" +msgstr "15MHz" + +#: src/gui/sysConf.cpp:1779 +msgid "33.8688MHz (OPL3-L)" +msgstr "33,8688MHz (OPL3-L)" + +#: src/gui/sysConf.cpp:1784 +msgid "OPL3 (YMF262)" +msgstr "OPL3 (YMF262)" + +#: src/gui/sysConf.cpp:1788 +msgid "OPL3-L (YMF289B)" +msgstr "OPL3-L (YMF289B)" + +#: src/gui/sysConf.cpp:1794 +msgid "Compatible panning (0800)" +msgstr "Kompatibel panorering (0800)" + +#: src/gui/sysConf.cpp:1858 +msgid "Output bit depth:" +msgstr "Utgångsbitdjup:" + +#: src/gui/sysConf.cpp:1868 +msgid "Interpolation:" +msgstr "Interpolation:" + +#: src/gui/sysConf.cpp:1874 src/gui/waveEdit.cpp:38 +msgid "Linear" +msgstr "Linjär" + +#: src/gui/sysConf.cpp:1878 src/gui/waveEdit.cpp:40 +msgid "Cubic" +msgstr "Kubisk" + +#: src/gui/sysConf.cpp:1882 +msgid "Sinc" +msgstr "Sinc" + +#: src/gui/sysConf.cpp:1920 +msgid "Left##VolScaleL" +msgstr "Vänster" + +#: src/gui/sysConf.cpp:1925 +msgid "Right##VolScaleL" +msgstr "Höger" + +#: src/gui/sysConf.cpp:1935 +msgid "Initial echo state:" +msgstr "Initialt ekotillstånd:" + +#: src/gui/sysConf.cpp:1955 +msgid "Delay##EchoDelay" +msgstr "Delay" + +#: src/gui/sysConf.cpp:1961 +msgid "Feedback##EchoFeedback" +msgstr "Återkoppling" + +#: src/gui/sysConf.cpp:1968 +msgid "Left##EchoVolL" +msgstr "Vänster" + +#: src/gui/sysConf.cpp:1973 +msgid "Right##EchoVolL" +msgstr "Höger" + +#: src/gui/sysConf.cpp:1979 +msgid "Echo filter:" +msgstr "Ekofilter" + +#: src/gui/sysConf.cpp:1989 +msgid "Hex##SNESFHex" +msgstr "Hex" + +#: src/gui/sysConf.cpp:1989 +msgid "Dec##SNESFHex" +msgstr "Dec" + +#: src/gui/sysConf.cpp:2031 +#, c-format +msgid "sum: %d" +msgstr "summa: %d" + +#: src/gui/sysConf.cpp:2086 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:63 +#: src/gui/insEdit.cpp:75 +msgid "Detune" +msgstr "Detune" + +#: src/gui/sysConf.cpp:2092 +msgid "Capacitor values (nF):" +msgstr "Kondensatorvärden (nF):" + +#: src/gui/sysConf.cpp:2102 +msgid "Initial part volume (channel 1-4):" +msgstr "Initial delvolym (kanal 1-4):" + +#: src/gui/sysConf.cpp:2112 +msgid "Initial part volume (channel 5-8):" +msgstr "Initial delvolym (kanal 5-8):" + +#: src/gui/sysConf.cpp:2122 +msgid "Envelope mode (channel 1-4):" +msgstr "ADSR-läge (kanal 1-4):" + +#: src/gui/sysConf.cpp:2124 +msgid "Capacitor (attack/decay)##EM00" +msgstr "Kondensator (attack/decay)" + +#: src/gui/sysConf.cpp:2128 +msgid "External (volume macro)##EM01" +msgstr "Extern (volymmakro)" + +#: src/gui/sysConf.cpp:2134 +msgid "Envelope mode (channel 5-8):" +msgstr "ADSR-läge (kanal 5-8):" + +#: src/gui/sysConf.cpp:2136 +msgid "Capacitor (attack/decay)##EM10" +msgstr "Kondensator (attack/decay)" + +#: src/gui/sysConf.cpp:2140 +msgid "External (volume macro)##EM11" +msgstr "Extern (volymmakro)" + +#: src/gui/sysConf.cpp:2146 +msgid "Global vibrato:" +msgstr "Globalvibrato:" + +#: src/gui/sysConf.cpp:2153 +msgid "Depth" +msgstr "Djup" + +#: src/gui/sysConf.cpp:2219 src/gui/sysConf.cpp:2373 +msgid "Waveform storage mode:" +msgstr "Lagringsläge för vågformer:" + +#: src/gui/sysConf.cpp:2221 +msgid "RAM" +msgstr "RAM" + +#: src/gui/sysConf.cpp:2225 +msgid "ROM (up to 8 waves)" +msgstr "ROM (upp till 8 vågor)" + +#: src/gui/sysConf.cpp:2241 +msgid "Compatible noise frequencies" +msgstr "Kompatibla brusfrekvenser" + +#: src/gui/sysConf.cpp:2256 +msgid "Legacy slides and pitch (compatibility)" +msgstr "Äldre förskjutningar och tonhöjd (kompatibilitet)" + +#: src/gui/sysConf.cpp:2314 +msgid "PAL (1.77MHz)" +msgstr "PAL (1,77MHz)" + +#: src/gui/sysConf.cpp:2344 +msgid "Banking style:" +msgstr "Bankingsstil:" + +#: src/gui/sysConf.cpp:2346 +msgid "Namco System 2 (2MB)" +msgstr "Namco System 2 (2MB)" + +#: src/gui/sysConf.cpp:2351 +msgid "Namco System 21 (4MB)" +msgstr "Namco System 21 (4MB)" + +#: src/gui/sysConf.cpp:2356 +msgid "Raw (16MB; no VGM export!)" +msgstr "Rå (16MB; ingen VGM-export!)" + +#: src/gui/sysConf.cpp:2375 +msgid "Dynamic (unconfirmed)" +msgstr "Dynamisk (obekräftad)" + +#: src/gui/sysConf.cpp:2379 +msgid "Static (up to 5 waves)" +msgstr "Statisk (upp till 5 vågor)" + +#: src/gui/sysConf.cpp:2414 +msgid "DS (4MB RAM)" +msgstr "DS (4MB RAM)" + +#: src/gui/sysConf.cpp:2418 +msgid "DSi (16MB RAM)" +msgstr "DSi (16MB RAM)" + +#: src/gui/sysConf.cpp:2444 src/gui/settings.cpp:727 +msgid "nothing to configure" +msgstr "ingenting att konfigurera" + +#: src/gui/sysConf.cpp:2467 +msgid "Custom clock rate" +msgstr "Anpassad klockfrekvens" + +#: src/gui/volMeter.cpp:36 src/gui/settings.cpp:3969 src/gui/guiConst.cpp:596 +msgid "Volume Meter" +msgstr "Volymmätare" + +#: src/gui/userPresets.cpp:325 +msgid "User Systems" +msgstr "Användarsystem" + +#: src/gui/userPresets.cpp:337 +msgid "Error! User category does not exist!" +msgstr "Fel! Användarkategori finns inte!" + +#: src/gui/userPresets.cpp:346 src/gui/newSong.cpp:181 +msgid "Systems" +msgstr "System" + +#: src/gui/userPresets.cpp:349 +msgid "New Preset" +msgstr "Ny förinställning" + +#: src/gui/userPresets.cpp:361 +msgid "select a preset" +msgstr "välj en förinställning" + +#: src/gui/userPresets.cpp:374 +msgid "Remove##UPresetRemove" +msgstr "Ta bort" + +#: src/gui/userPresets.cpp:439 src/gui/settings.cpp:1135 +msgid "Configure" +msgstr "Konfigurera" + +#: src/gui/userPresets.cpp:470 +msgid "Advanced" +msgstr "Avancerad" + +#: src/gui/userPresets.cpp:476 +msgid "" +"insert additional settings in `option=value` format.\n" +"available options:\n" +"- tickRate" +msgstr "" +"infoga ytterligare inställningar i formatet `option=värde`.\n" +"tillgängliga alternativ:\n" +"- tickRate" + +#: src/gui/userPresets.cpp:509 +msgid "Save and Close" +msgstr "Spara och stäng" + +#: src/gui/userPresets.cpp:515 src/gui/settings.cpp:1238 +#: src/gui/settings.cpp:2161 src/gui/settings.cpp:2553 +#: src/gui/settings.cpp:3796 +msgid "Import" +msgstr "Importera" + +#: src/gui/userPresets.cpp:519 +msgid "Import (replace)" +msgstr "Importera (ersätta)" + +#: src/gui/effectList.cpp:14 src/gui/guiConst.cpp:606 +msgid "Effect List" +msgstr "Effektlista" + +#: src/gui/effectList.cpp:18 +#, c-format +msgid "Chip at cursor: %s" +msgstr "Chip vid markören: %s" + +#: src/gui/effectList.cpp:21 src/gui/settings.cpp:6674 +msgid "Search" +msgstr "Sök" + +#: src/gui/effectList.cpp:25 +msgid "Effect types to show:" +msgstr "Effekttyper att visa:" + +#: src/gui/effectList.cpp:47 +msgid "Description" +msgstr "Beskrivning" + +#: src/gui/subSongs.cpp:22 src/gui/subSongs.cpp:32 +#, c-format +msgid "%d. " +msgstr "%d. " + +#: src/gui/subSongs.cpp:73 src/gui/subSongs.cpp:93 +msgid "too many subsongs!" +msgstr "för många underlåtar!" + +#: src/gui/subSongs.cpp:114 +msgid "this is the only subsong!" +msgstr "detta är den enda underlåten!" + +#: src/gui/subSongs.cpp:116 +msgid "are you sure you want to remove this subsong?" +msgstr "är du säker på att du vill ta bort denna underlåt?" + +#: src/gui/spoiler.cpp:30 +msgid "Spoiler" +msgstr "Spoiler" + +#: src/gui/spoiler.cpp:32 +msgid "SPOILER" +msgstr "SPOILER" + +#: src/gui/settings.cpp:104 src/gui/settings.cpp:114 src/gui/settings.cpp:124 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:105 src/gui/settings.cpp:115 src/gui/settings.cpp:125 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:168 +msgid "ASAP (C++ port)" +msgstr "ASAP (C++ port)" + +#: src/gui/settings.cpp:191 +msgid "ESFMu (fast)" +msgstr "ESFMu (snabb)" + +#: src/gui/settings.cpp:205 +msgid "Lower" +msgstr "Lägre" + +#: src/gui/settings.cpp:207 +msgid "Medium" +msgstr "Medium" + +#: src/gui/settings.cpp:209 +msgid "Ultra" +msgstr "Ultra" + +#: src/gui/settings.cpp:210 +msgid "Ultimate" +msgstr "Fantastisk" + +#: src/gui/settings.cpp:214 +msgid "evdev SND_TONE" +msgstr "evdev SND_TONE" + +#: src/gui/settings.cpp:215 +msgid "KIOCSOUND on /dev/tty1" +msgstr "KIOCSOUND på /dev/tty1" + +#: src/gui/settings.cpp:216 +msgid "/dev/port" +msgstr "/dev/port" + +#: src/gui/settings.cpp:217 +msgid "KIOCSOUND on standard output" +msgstr "KIOCSOUND på standardutgång" + +#: src/gui/settings.cpp:218 +msgid "outb()" +msgstr "outb()" + +#: src/gui/settings.cpp:222 src/gui/settings.cpp:232 +msgid "Disabled/custom" +msgstr "Inaktiverad/anpassad" + +#: src/gui/settings.cpp:223 +msgid "Two octaves (0 is C-4, F is D#5)" +msgstr "Två oktaver (0 är C-4, F är D#5)" + +#: src/gui/settings.cpp:224 +msgid "Raw (note number is value)" +msgstr "Rå (notnummer är värdet)" + +#: src/gui/settings.cpp:225 +msgid "Two octaves alternate (lower keys are 0-9, upper keys are A-F)" +msgstr "" +"Två oktaver alternerar (nedre tangenterna är 0-9, övre tangenterna är A-F)" + +#: src/gui/settings.cpp:226 src/gui/settings.cpp:233 +msgid "Use dual control change (one for each nibble)" +msgstr "Använd dubbel kontrolländring (ett för varje napp)" + +#: src/gui/settings.cpp:227 src/gui/settings.cpp:234 +msgid "Use 14-bit control change" +msgstr "Använd 14-bit kontrolländring" + +#: src/gui/settings.cpp:228 src/gui/settings.cpp:235 +msgid "Use single control change (imprecise)" +msgstr "Använd en enda kontrolländring (oprecis)" + +#: src/gui/settings.cpp:239 +msgid "--select--" +msgstr "--välj--" + +#: src/gui/settings.cpp:240 src/gui/settings.cpp:241 src/gui/settings.cpp:242 +#: src/gui/settings.cpp:243 src/gui/settings.cpp:244 src/gui/settings.cpp:245 +#: src/gui/settings.cpp:246 +msgid "???" +msgstr "???" + +#: src/gui/settings.cpp:247 +msgid "Note Off" +msgstr "Not av" + +#: src/gui/settings.cpp:248 +msgid "Note On" +msgstr "Not på" + +#: src/gui/settings.cpp:249 +msgid "Aftertouch" +msgstr "Aftertouch" + +#: src/gui/settings.cpp:250 src/gui/insEdit.cpp:7187 src/gui/insEdit.cpp:7217 +#: src/gui/insEdit.cpp:7382 src/gui/insEdit.cpp:7403 src/gui/insEdit.cpp:7415 +#: src/gui/insEdit.cpp:7430 +msgid "Control" +msgstr "Kontroll" + +#: src/gui/settings.cpp:251 src/gui/settings.cpp:573 src/gui/settings.cpp:3177 +msgid "Program" +msgstr "Program" + +#: src/gui/settings.cpp:252 +msgid "ChanPressure" +msgstr "Kanaltryck" + +#: src/gui/settings.cpp:253 +msgid "Pitch Bend" +msgstr "Tonhöjdsböj" + +#: src/gui/settings.cpp:254 +msgid "SysEx" +msgstr "SysEx" + +#: src/gui/settings.cpp:258 src/gui/settings.cpp:1713 src/gui/settings.cpp:1723 +#: src/gui/settings.cpp:1743 src/gui/settings.cpp:1749 +#, c-format +msgid "Any" +msgstr "Någonting" + +#: src/gui/settings.cpp:262 src/gui/settings.cpp:3363 src/gui/settings.cpp:3928 +#: src/gui/settings.cpp:4121 +msgid "Instrument" +msgstr "Instrument" + +#: src/gui/settings.cpp:264 +msgid "Effect 1 type" +msgstr "Effekt 1-typ" + +#: src/gui/settings.cpp:265 +msgid "Effect 1 value" +msgstr "Effekt 1-värde" + +#: src/gui/settings.cpp:266 +msgid "Effect 2 type" +msgstr "Effekt 2-typ" + +#: src/gui/settings.cpp:267 +msgid "Effect 2 value" +msgstr "Effekt 2-värde" + +#: src/gui/settings.cpp:268 +msgid "Effect 3 type" +msgstr "Effekt 3-typ" + +#: src/gui/settings.cpp:269 +msgid "Effect 3 value" +msgstr "Effekt 3-värde" + +#: src/gui/settings.cpp:270 +msgid "Effect 4 type" +msgstr "Effekt 4-typ" + +#: src/gui/settings.cpp:271 +msgid "Effect 4 value" +msgstr "Effekt 4-värde" + +#: src/gui/settings.cpp:272 +msgid "Effect 5 type" +msgstr "Effekt 5-typ" + +#: src/gui/settings.cpp:273 +msgid "Effect 5 value" +msgstr "Effekt 5-värde" + +#: src/gui/settings.cpp:274 +msgid "Effect 6 type" +msgstr "Effekt 6-typ" + +#: src/gui/settings.cpp:275 +msgid "Effect 6 value" +msgstr "Effekt 6-värde" + +#: src/gui/settings.cpp:276 +msgid "Effect 7 type" +msgstr "Effekt 7-typ" + +#: src/gui/settings.cpp:277 +msgid "Effect 7 value" +msgstr "Effekt 7-värde" + +#: src/gui/settings.cpp:278 +msgid "Effect 8 type" +msgstr "Effekt 8-typ" + +#: src/gui/settings.cpp:279 +msgid "Effect 8 value" +msgstr "Effekt 8-värde" + +#: src/gui/settings.cpp:315 +msgid "Press key..." +msgstr "Tryck tangent..." + +#: src/gui/settings.cpp:564 +msgid "Do you want to save your settings?" +msgstr "Vill du spara dina inställningar?" + +#: src/gui/settings.cpp:571 +msgid "General" +msgstr "Allmänt" + +#: src/gui/settings.cpp:588 +msgid "Language" +msgstr "" + +#: src/gui/settings.cpp:606 +msgid "Render backend" +msgstr "Rendera backend" + +#: src/gui/settings.cpp:661 src/gui/settings.cpp:680 src/gui/settings.cpp:1312 +msgid "you may need to restart Furnace for this setting to take effect." +msgstr "" +"du kan behöva starta om Furnace för att denna inställning ska träda i kraft." + +#: src/gui/settings.cpp:664 +msgid "Advanced render backend settings" +msgstr "Avancerade inställningar för rendering av backend" + +#: src/gui/settings.cpp:666 +msgid "Render driver" +msgstr "Renderdrivrutin" + +#: src/gui/settings.cpp:666 src/gui/settings.cpp:667 src/gui/settings.cpp:1298 +#: src/gui/settings.cpp:1299 src/gui/piano.cpp:108 +msgid "Automatic" +msgstr "Automatisk" + +#: src/gui/settings.cpp:683 +msgid "" +"beware: changing these settings may render Furnace unusable! do so at your " +"own risk.\n" +"start Furnace with -safemode if you mess something up." +msgstr "" +"akta dig: att ändra dessa inställningar kan göra Furnace oanvändbart! gör " +"det på egen risk.\n" +"starta Furnace med -safemode om du förstör något." + +#: src/gui/settings.cpp:684 +msgid "Red bits" +msgstr "Röda bits" + +#: src/gui/settings.cpp:689 +msgid "Green bits" +msgstr "Gröna bits" + +#: src/gui/settings.cpp:694 +msgid "Blue bits" +msgstr "Blåa bits" + +#: src/gui/settings.cpp:699 +msgid "Alpha bits" +msgstr "Alfa bits" + +#: src/gui/settings.cpp:704 +msgid "Color depth" +msgstr "Färgdjup" + +#: src/gui/settings.cpp:709 +msgid "Stencil buffer size" +msgstr "Stencilbuffertstorlek" + +#: src/gui/settings.cpp:714 src/gui/settings.cpp:1385 +msgid "Buffer size" +msgstr "Buffertstorlek" + +#: src/gui/settings.cpp:720 +msgid "Double buffer" +msgstr "Dubbel buffert" + +#: src/gui/settings.cpp:725 +msgid "" +"the following values are common (in red, green, blue, alpha order):\n" +"- 24 bits: 8, 8, 8, 0\n" +"- 16 bits: 5, 6, 5, 0\n" +"- 32 bits (with alpha): 8, 8, 8, 8\n" +"- 30 bits (deep): 10, 10, 10, 0" +msgstr "" +"Följande värden är vanliga (i rött-, grönt-, blått-, alfaordning):\n" +"- 24 bit: 8, 8, 8, 0\n" +"- 16 bit: 5, 6, 5, 0\n" +"- 32 bit (med alfa): 8, 8, 8, 8\n" +"- 30 bit (djup): 10, 10, 10, 0" + +#: src/gui/settings.cpp:732 +#, c-format +msgid "" +"current backend: %s\n" +"%s\n" +"%s\n" +"%s" +msgstr "" +"nuvarande backend: %s\n" +"%s\n" +"%s\n" +"%s" + +#: src/gui/settings.cpp:735 +msgid "VSync" +msgstr "VSynk" + +#: src/gui/settings.cpp:743 +msgid "Frame rate limit" +msgstr "Gräns ​​för bildhastighet" + +#: src/gui/settings.cpp:743 +msgid "Unlimited" +msgstr "Obegränsat" + +#: src/gui/settings.cpp:749 +msgid "only applies when VSync is disabled." +msgstr "gäller endast när VSynk är inaktiverat." + +#: src/gui/settings.cpp:753 +msgid "Display render time" +msgstr "Visa renderingstid" + +#: src/gui/settings.cpp:760 +msgid "Late render clear" +msgstr "Sen renderingsklarhet" + +#: src/gui/settings.cpp:765 +msgid "" +"calls rend->clear() after rend->present(). might reduce UI latency by one " +"frame in some drivers." +msgstr "" +"anropar rend->rensa() efter rend->närvarande(). kan minska gränssnittets " +"latens med en bild i vissa drivrutiner." + +#: src/gui/settings.cpp:770 +msgid "Power-saving mode" +msgstr "Strömsparläge" + +#: src/gui/settings.cpp:775 +msgid "" +"saves power by lowering the frame rate to 2fps when idle.\n" +"may cause issues under Mesa drivers!" +msgstr "" +"sparar ström genom att sänka bildhastigheten till 2 fps när programmet är " +"inaktiv.\n" +"kan orsaka problem under Mesa-drivrutiner!" + +#: src/gui/settings.cpp:780 +msgid "Disable threaded input (restart after changing!)" +msgstr "Inaktivera trädad ingång (starta om efter ändring!)" + +#: src/gui/settings.cpp:785 +msgid "" +"threaded input processes key presses for note preview on a separate thread " +"(on supported platforms), which reduces latency.\n" +"however, crashes have been reported when threaded input is on. enable this " +"option if that is the case." +msgstr "" +"trådad ingång bearbetar tangenttryckningar för förhandsvisning av noter i en " +"separat tråd (på plattformar som stöds), vilket minskar latensen.\n" +"krascher har rapporterats när trådad inmatning är på. aktivera detta " +"alternativ om så är fallet." + +#: src/gui/settings.cpp:790 +msgid "Enable event delay" +msgstr "Aktivera händelsefördröjning" + +#: src/gui/settings.cpp:796 +msgid "may cause issues with high-polling-rate mice when previewing notes." +msgstr "" +"kan orsaka problem med möss som har hög pollingfrekvens vid " +"förhandsgranskning av noter." + +#: src/gui/settings.cpp:800 +msgid "Per-channel oscilloscope threads" +msgstr "Oscilloskopgängor per kanal" + +#: src/gui/settings.cpp:808 +msgid "you're being silly, aren't you? that's enough." +msgstr "nu är du dum, eller hur? det räcker." + +#: src/gui/settings.cpp:812 +msgid "what are you doing? stop!" +msgstr "vad gör du? sluta!" + +#: src/gui/settings.cpp:816 +#, c-format +msgid "" +"it is a bad idea to set this number higher than your CPU core count (%d)!" +msgstr "" +"det är en dålig idé att ställa in denna siffra högre än antalet CPU-kärnor " +"som du har (%d)!" + +#: src/gui/settings.cpp:821 +msgid "Oscilloscope rendering engine:" +msgstr "Oscilloskop-renderingsmotor:" + +#: src/gui/settings.cpp:823 +msgid "ImGui line plot" +msgstr "ImGui linjeplot" + +#: src/gui/settings.cpp:827 +msgid "render using Dear ImGui's built-in line drawing functions." +msgstr "rendera med hjälp av Dear ImGuis inbyggda linjeritningsfunktioner." + +#: src/gui/settings.cpp:829 +msgid "GLSL (if available)" +msgstr "GLSL (om tillgängligt)" + +#: src/gui/settings.cpp:834 +msgid "" +"render using shaders that run on the graphics card.\n" +"only available in OpenGL ES 2.0 render backend." +msgstr "" +"rendera med shaders som körs på grafikkortet.\n" +"endast tillgängligt i OpenGL ES 2,0 render-backend." + +#: src/gui/settings.cpp:836 +msgid "" +"render using shaders that run on the graphics card.\n" +"only available in OpenGL 3.0 render backend." +msgstr "" +"rendera med shaders som körs på grafikkortet.\n" +"endast tillgängligt i OpenGL 3,0 render-backend." + +#: src/gui/settings.cpp:843 +msgid "Vibration" +msgstr "Vibration" + +#: src/gui/settings.cpp:845 +msgid "Strength" +msgstr "Styrka" + +#: src/gui/settings.cpp:851 src/gui/insEdit.cpp:2284 src/gui/insEdit.cpp:2382 +#: src/gui/insEdit.cpp:5582 src/gui/insEdit.cpp:6241 +msgid "Length" +msgstr "Längd" + +#: src/gui/settings.cpp:859 src/gui/gui.cpp:4191 +msgid "File" +msgstr "Filen" + +#: src/gui/settings.cpp:862 +msgid "Use system file picker" +msgstr "Använd systemfilväljaren" + +#: src/gui/settings.cpp:867 +msgid "Number of recent files" +msgstr "Antal senaste filer" + +#: src/gui/settings.cpp:874 +msgid "Compress when saving" +msgstr "Kompression vid sparande" + +#: src/gui/settings.cpp:879 +msgid "use zlib to compress saved songs." +msgstr "använd zlib för att komprimera sparade låtar." + +#: src/gui/settings.cpp:883 +msgid "Save unused patterns" +msgstr "Spara oanvända mönster" + +#: src/gui/settings.cpp:889 +msgid "Use new pattern format when saving" +msgstr "Använd nytt mönsterformat när du sparar" + +#: src/gui/settings.cpp:894 +msgid "" +"use a packed format which saves space when saving songs.\n" +"disable if you need compatibility with older Furnace and/or tools\n" +"which do not support this format." +msgstr "" +"använd ett packat format som sparar utrymme när du sparar låtar.\n" +"avaktivera om du behöver kompatibilitet med äldre Furnace och/eller verktyg\n" +"som inte stöder detta format." + +#: src/gui/settings.cpp:898 +msgid "Don't apply compatibility flags when loading .dmf" +msgstr "Använd ej kompatibilitetsflaggor när du laddar .dmf" + +#: src/gui/settings.cpp:903 +msgid "do not report any issues arising from the use of this option!" +msgstr "" +"rapportera inga problem som uppstår vid användningen av detta alternativ!" + +#: src/gui/settings.cpp:906 +msgid "Play after opening song:" +msgstr "Spela upp efter att ha öppnat låtfilen:" + +#: src/gui/settings.cpp:908 +msgid "No##pol0" +msgstr "Nej" + +#: src/gui/settings.cpp:912 +msgid "Only if already playing##pol1" +msgstr "Bara om du redan spelar" + +#: src/gui/settings.cpp:916 +msgid "Yes##pol0" +msgstr "Ja" + +#: src/gui/settings.cpp:922 +msgid "Audio export loop/fade out time:" +msgstr "Ljudexportsloop/tona ut-tid:" + +#: src/gui/settings.cpp:924 +msgid "Set to these values on start-up:##fot0" +msgstr "Ställ in på dessa värden vid uppstart:" + +#: src/gui/settings.cpp:942 +msgid "Remember last values##fot1" +msgstr "Kom ihåg de senaste värdena" + +#: src/gui/settings.cpp:949 +msgid "Store instrument name in .fui" +msgstr "Förvara instrumentnamnet i .fui" + +#: src/gui/settings.cpp:954 +msgid "" +"when enabled, saving an instrument will store its name.\n" +"this may increase file size." +msgstr "" +"när detta är aktiverat sparar instrumentet sitt namn.\n" +"detta kan öka filstorleken." + +#: src/gui/settings.cpp:958 +msgid "Load instrument name from .fui" +msgstr "Ladda instrumentnamn från .fui" + +#: src/gui/settings.cpp:963 +msgid "" +"when enabled, loading an instrument will use the stored name (if present).\n" +"otherwise, it will use the file name." +msgstr "" +"när detta är aktiverat kommer det lagrade namnet att användas vid laddning " +"av ett instrument (om det finns).\n" +"annars kommer det att använda filnamnet." + +#: src/gui/settings.cpp:967 +msgid "Auto-fill file name when saving" +msgstr "Fyll i filnamn automatiskt när du sparar" + +#: src/gui/settings.cpp:972 +msgid "" +"fill the file name field with an appropriate file name when saving or " +"exporting." +msgstr "" +"fyll filnamnsfältet med ett lämpligt filnamn när du sparar eller exportera." + +#: src/gui/settings.cpp:976 src/gui/gui.cpp:5563 src/gui/gui.cpp:5613 +msgid "New Song" +msgstr "Ny låt" + +#: src/gui/settings.cpp:978 +msgid "Initial system:" +msgstr "Inledande system:" + +#: src/gui/settings.cpp:980 +msgid "Current system" +msgstr "Nuvarande system:" + +#: src/gui/settings.cpp:993 src/gui/waveEdit.cpp:1149 src/gui/gui.cpp:3046 +msgid "Randomize" +msgstr "Randomisera" + +#: src/gui/settings.cpp:1043 +msgid "Reset to defaults" +msgstr "Återställ till standardinställningar" + +#: src/gui/settings.cpp:1178 +msgid "When creating new song:" +msgstr "När du skapar en ny låt:" + +#: src/gui/settings.cpp:1180 +msgid "Display system preset selector##NSB0" +msgstr "Visa systemväljare för förinställning" + +#: src/gui/settings.cpp:1184 +msgid "Start with initial system##NSB1" +msgstr "Börja med det inledande systemet" + +#: src/gui/settings.cpp:1188 +msgid "Default author name" +msgstr "Standardförfattarnamn" + +#: src/gui/settings.cpp:1192 +msgid "Start-up" +msgstr "Uppstart" + +#: src/gui/settings.cpp:1193 +msgid "Play intro on start-up:" +msgstr "Spela intro vid uppstart:" + +#: src/gui/settings.cpp:1195 +msgid "No##pis0" +msgstr "Nej##pis0" + +#: src/gui/settings.cpp:1199 +msgid "Short##pis1" +msgstr "Kort" + +#: src/gui/settings.cpp:1203 +msgid "Full (short when loading song)##pis2" +msgstr "Full (kort när låten laddas)" + +#: src/gui/settings.cpp:1207 +msgid "Full (always)##pis3" +msgstr "Full (alltid)" + +#: src/gui/settings.cpp:1214 +msgid "Disable fade-in during start-up" +msgstr "Inaktivera tona-in under uppstart" + +#: src/gui/settings.cpp:1220 +msgid "About screen party time" +msgstr "Om skärmfesttid" + +#: src/gui/settings.cpp:1225 +msgid "Warning: may cause epileptic seizures." +msgstr "Varning: kan orsaka epileptiska anfall." + +#: src/gui/settings.cpp:1229 +msgid "Behavior" +msgstr "Beteende" + +#: src/gui/settings.cpp:1231 +msgid "New instruments are blank" +msgstr "Nya instrument är tomma" + +#: src/gui/settings.cpp:1237 src/gui/settings.cpp:4255 +msgid "Configuration" +msgstr "Konfiguration" + +#: src/gui/settings.cpp:1246 +msgid "Factory Reset" +msgstr "Fabriksåterställning" + +#: src/gui/settings.cpp:1247 +msgid "" +"Are you sure you want to reset all Furnace settings?\n" +"You must restart Furnace after doing so." +msgstr "" +"Är du säker på att du vill återställa alla Furnace-inställningar?\n" +"Du måste starta om Furnace efter att ha gjort det." + +#: src/gui/settings.cpp:1255 +msgid "Output" +msgstr "Utgång" + +#: src/gui/settings.cpp:1263 +msgid "Backend" +msgstr "Backend" + +#: src/gui/settings.cpp:1296 +msgid "Driver" +msgstr "Drivrutin" + +#: src/gui/settings.cpp:1319 +msgid "Device" +msgstr "Enhet" + +#: src/gui/settings.cpp:1323 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:1324 +msgid "ALERT - TRESPASSER DETECTED" +msgstr "VARNING - INKRÄKTARE UPPTÄCKTS" + +#: src/gui/settings.cpp:1326 +msgid "you have been arrested for trying to engage with a disabled combo box." +msgstr "" +"du har blivit gripen för att ha försökt engagera sig med en funktionsnedsatt " +"kombinationsruta." + +#: src/gui/settings.cpp:1333 src/gui/settings.cpp:1335 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:1371 src/gui/insEdit.cpp:7186 +msgid "Outputs" +msgstr "Utgångar" + +#: src/gui/settings.cpp:1379 +msgid "" +"common values:\n" +"- 1 for mono\n" +"- 2 for stereo\n" +"- 4 for quadraphonic\n" +"- 6 for 5.1 surround\n" +"- 8 for 7.1 surround" +msgstr "" +"vanliga värden:\n" +"- 1 för mono\n" +"- 2 för stereo\n" +"- 4 för kvadrafonisk\n" +"- 6 för 5,1 surround\n" +"- 8 för 7,1 surround" + +#: src/gui/settings.cpp:1387 +#, c-format +msgid "%d (latency: ~%.1fms)" +msgstr "%d (latens: ~%.1fms)" + +#: src/gui/settings.cpp:1402 +msgid "Multi-threaded (EXPERIMENTAL)" +msgstr "Flertrådig (EXPERIMENTELL)" + +#: src/gui/settings.cpp:1411 +msgid "" +"runs chip emulation on separate threads.\n" +"may increase performance when using heavy emulation cores.\n" +"\n" +"warnings:\n" +"- experimental!\n" +"- only useful on multi-chip songs." +msgstr "" +"kör chipemulering på separata trådar.\n" +"kan öka prestandan när du använder tunga emuleringskärnor.\n" +"\n" +"varningar:\n" +"- experimentell!\n" +"- endast användbart på låtar med flera chip." + +#: src/gui/settings.cpp:1416 +msgid "Number of threads" +msgstr "Antal trådar" + +#: src/gui/settings.cpp:1423 +msgid "that's the limit!" +msgstr "det är gränsen!" + +#: src/gui/settings.cpp:1427 +#, c-format +msgid "" +"it is a VERY bad idea to set this number higher than your CPU core count " +"(%d)!" +msgstr "" +"det är en MYCKET dålig idé att ställa in denna siffra högre än antalet CPU-" +"kärnorsom du har (%d)!" + +#: src/gui/settings.cpp:1435 +msgid "Low-latency mode" +msgstr "Låglatensläge" + +#: src/gui/settings.cpp:1440 +msgid "" +"reduces latency by running the engine faster than the tick rate.\n" +"useful for live playback/jam mode.\n" +"\n" +"warning: only enable if your buffer size is small (10ms or less)." +msgstr "" +"minskar latensen genom att köra motorn snabbare än tickhastigheten.\n" +"användbart för liveuppspelning/jam-läge.\n" +"\n" +"varning: aktivera endast om din buffertstorlek är liten (10ms eller mindre)." + +#: src/gui/settings.cpp:1444 +msgid "Force mono audio" +msgstr "Tvinga monoljud" + +#: src/gui/settings.cpp:1452 +msgid "Exclusive mode" +msgstr "Exklusivt läge" + +#: src/gui/settings.cpp:1463 +#, c-format +msgid "want: %d samples @ %.0fHz (%d channel)" +msgid_plural "want: %d samples @ %.0fHz (%d channels)" +msgstr[0] "vill ha: %d samples @ %.0fHz (%d kanal)" +msgstr[1] "vill ha: %d samples @ %.0fHz (%d kanaler)" + +#: src/gui/settings.cpp:1464 +#, c-format +msgid "got: %d samples @ %.0fHz (%d channel)" +msgid_plural "got: %d samples @ %.0fHz (%d channels)" +msgstr[0] "fick: %d samples @ %.0fHz (%d kanal)" +msgstr[1] "fick: %d samples @ %.0fHz (%d kanaler)" + +#: src/gui/settings.cpp:1471 +msgid "Mixing" +msgstr "Mixning" + +#: src/gui/settings.cpp:1473 src/gui/settings.cpp:2082 +msgid "Quality" +msgstr "Kvalitet" + +#: src/gui/settings.cpp:1478 +msgid "Software clipping" +msgstr "Klippning av programvara" + +#: src/gui/settings.cpp:1484 +msgid "DC offset correction" +msgstr "DC offset-korrigering" + +#: src/gui/settings.cpp:1502 src/gui/guiConst.cpp:740 +msgid "Sample preview" +msgstr "Sampleförhandsgranskning" + +#: src/gui/settings.cpp:1515 +msgid "MIDI" +msgstr "MIDI" + +#: src/gui/settings.cpp:1517 src/gui/settings.cpp:1519 +msgid "MIDI input" +msgstr "MIDI-ingång" + +#: src/gui/settings.cpp:1521 src/gui/settings.cpp:1524 +#: src/gui/settings.cpp:1815 src/gui/settings.cpp:1817 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:1540 +msgid "Re-scan MIDI devices" +msgstr "Skanna om MIDI-enheter" + +#: src/gui/settings.cpp:1551 src/gui/settings.cpp:2258 +msgid "Note input" +msgstr "Notingång" + +#: src/gui/settings.cpp:1552 +msgid "Velocity input" +msgstr "Hastighetsingång" + +#: src/gui/settings.cpp:1556 +msgid "Map MIDI channels to direct channels" +msgstr "Mappa MIDI-kanaler till direktkanaler" + +#: src/gui/settings.cpp:1562 +msgid "Program change pass-through" +msgstr "Genomföring av programändring" + +#: src/gui/settings.cpp:1567 +msgid "Map Yamaha FM voice data to instruments" +msgstr "Mappa Yamaha FM-röstdata till instrument" + +#: src/gui/settings.cpp:1569 +msgid "Program change is instrument selection" +msgstr "Programbyte är instrumentval" + +#: src/gui/settings.cpp:1573 +msgid "Value input style" +msgstr "Stil för värdeingång" + +#: src/gui/settings.cpp:1576 src/gui/settings.cpp:1601 +msgid "Control##valueCCS" +msgstr "Kontroll" + +#: src/gui/settings.cpp:1582 src/gui/settings.cpp:1607 +msgid "CC of upper nibble##valueCC1" +msgstr "CC av övre nibble##värdeCC1" + +#: src/gui/settings.cpp:1582 src/gui/settings.cpp:1607 +msgid "MSB CC##valueCC1" +msgstr "MSB CC##värdeCC1" + +#: src/gui/settings.cpp:1587 src/gui/settings.cpp:1612 +msgid "CC of lower nibble##valueCC2" +msgstr "CC av nedre nibble##värdeCC2" + +#: src/gui/settings.cpp:1587 src/gui/settings.cpp:1612 +msgid "LSB CC##valueCC2" +msgstr "LSB CC##värdeCC2" + +#: src/gui/settings.cpp:1594 +msgid "Per-column control change" +msgstr "Kontrolländring per kolumn" + +#: src/gui/settings.cpp:1624 src/gui/settings.cpp:1634 +msgid "Volume curve" +msgstr "Volymkurva" + +#: src/gui/settings.cpp:1637 +msgid "Actions:" +msgstr "Åtgärder:" + +#: src/gui/settings.cpp:1651 +msgid "" +"(learning! press a button or move a slider/knob/something on your device.)" +msgstr "" +"(lär dig! tryck på en knapp eller flytta en reglage/ratt/något på din enhet.)" + +#: src/gui/settings.cpp:1665 src/gui/settings.cpp:2277 +#: src/gui/settings.cpp:6687 src/gui/sampleEdit.cpp:501 +#: src/gui/insEdit.cpp:5321 +msgid "Type" +msgstr "Typ" + +#: src/gui/settings.cpp:1669 +msgid "Note/Control" +msgstr "Not/Kontroll" + +#: src/gui/settings.cpp:1671 +msgid "Velocity/Value" +msgstr "Hastighet/värde" + +#: src/gui/settings.cpp:1673 +msgid "Action" +msgstr "Åtgärd" + +#: src/gui/settings.cpp:1765 src/gui/settings.cpp:1766 +msgid "--none--" +msgstr "--inga--" + +#: src/gui/settings.cpp:1787 +msgid "waiting...##BLearn" +msgstr "väntar..." + +#: src/gui/settings.cpp:1787 +msgid "Learn##BLearn" +msgstr "Lära sig" + +#: src/gui/settings.cpp:1811 src/gui/settings.cpp:1813 +msgid "MIDI output" +msgstr "MIDI-utgång" + +#: src/gui/settings.cpp:1830 +msgid "Output mode:" +msgstr "Utgångsläge:" + +#: src/gui/settings.cpp:1832 +msgid "Off (use for TX81Z)" +msgstr "Av (används för TX81Z)" + +#: src/gui/settings.cpp:1836 +msgid "Melodic" +msgstr "Melodisk" + +#: src/gui/settings.cpp:1847 +msgid "Send Program Change" +msgstr "Skicka programändring" + +#: src/gui/settings.cpp:1853 +msgid "Send MIDI clock" +msgstr "Skicka MIDI-klockan" + +#: src/gui/settings.cpp:1859 +msgid "Send MIDI timecode" +msgstr "Skicka MIDI-tidskoden" + +#: src/gui/settings.cpp:1865 +msgid "Timecode frame rate:" +msgstr "Tidskodsbildhastighet:" + +#: src/gui/settings.cpp:1867 +msgid "Closest to Tick Rate" +msgstr "Närmast till tickhastighet" + +#: src/gui/settings.cpp:1871 +msgid "Film (24fps)" +msgstr "Film (24 fps)" + +#: src/gui/settings.cpp:1875 +msgid "PAL (25fps)" +msgstr "PAL (25 fps)" + +#: src/gui/settings.cpp:1879 +msgid "NTSC drop (29.97fps)" +msgstr "NTSC-fall (29,97 fps)" + +#: src/gui/settings.cpp:1883 +msgid "NTSC non-drop (30fps)" +msgstr "NTSC icke-fall (30 fps)" + +#: src/gui/settings.cpp:1892 +msgid "Emulation" +msgstr "Emulering" + +#: src/gui/settings.cpp:1894 +msgid "Cores" +msgstr "Kärnor" + +#: src/gui/settings.cpp:1903 +msgid "Playback Core(s)" +msgstr "Uppspelningskärnor" + +#: src/gui/settings.cpp:1905 src/gui/settings.cpp:2093 +msgid "used for playback" +msgstr "används för uppspelning" + +#: src/gui/settings.cpp:1908 +msgid "Render Core(s)" +msgstr "Renderingskärnor" + +#: src/gui/settings.cpp:1910 src/gui/settings.cpp:2098 +msgid "used in audio export" +msgstr "används i ljudexport" + +#: src/gui/settings.cpp:2091 +msgid "Playback" +msgstr "Uppspelning" + +#: src/gui/settings.cpp:2096 +msgid "Render" +msgstr "Rendering" + +#: src/gui/settings.cpp:2120 +msgid "PC Speaker strategy" +msgstr "PC-pipare strategi" + +#: src/gui/settings.cpp:2158 src/gui/settings.cpp:2160 +msgid "Keyboard" +msgstr "Tangentbord" + +#: src/gui/settings.cpp:2169 src/gui/settings.cpp:3804 +msgid "Reset defaults" +msgstr "Återställ standardinställningar" + +#: src/gui/settings.cpp:2170 +msgid "Are you sure you want to reset the keyboard settings?" +msgstr "Är du säker på att du vill återställa tangentbordsinställningarna?" + +#: src/gui/settings.cpp:2172 +msgid "Global hotkeys" +msgstr "Globala snabbtangenter" + +#: src/gui/settings.cpp:2209 +msgid "Window activation" +msgstr "Fönsteraktivering" + +#: src/gui/settings.cpp:2275 +msgid "Key" +msgstr "Tangent" + +#: src/gui/settings.cpp:2279 src/gui/findReplace.cpp:725 +#: src/gui/findReplace.cpp:1003 +msgid "Value" +msgstr "Värde" + +#: src/gui/settings.cpp:2289 +#, c-format +msgid "Macro release##SNType_%d" +msgstr "Makrosläpp" + +#: src/gui/settings.cpp:2294 +#, c-format +msgid "Note release##SNType_%d" +msgstr "Notrelease" + +#: src/gui/settings.cpp:2299 +#, c-format +msgid "Note off##SNType_%d" +msgstr "Not av" + +#: src/gui/settings.cpp:2304 +#, c-format +msgid "Note##SNType_%d" +msgstr "Not" + +#: src/gui/settings.cpp:2328 +msgid "Add..." +msgstr "Lägg till..." + +#: src/gui/settings.cpp:2418 +msgid "Instrument list" +msgstr "Instrumentlista" + +#: src/gui/settings.cpp:2438 +msgid "Wavetable list" +msgstr "Wavetable-lista" + +#: src/gui/settings.cpp:2459 +msgid "Sample list" +msgstr "Samplelista" + +#: src/gui/settings.cpp:2509 +msgid "Sample editor" +msgstr "Sampleredigerare" + +#: src/gui/settings.cpp:2547 src/gui/settings.cpp:3814 +#: src/gui/settings.cpp:3844 +msgid "Interface" +msgstr "Gränssnitt" + +#: src/gui/settings.cpp:2549 +msgid "Layout" +msgstr "Layout" + +#: src/gui/settings.cpp:2551 +msgid "Workspace layout:" +msgstr "Arbetsyta layout:" + +#: src/gui/settings.cpp:2561 src/gui/gui.cpp:2920 +msgid "Reset" +msgstr "Återställa" + +#: src/gui/settings.cpp:2562 src/gui/gui.cpp:4455 +msgid "Are you sure you want to reset the workspace layout?" +msgstr "Är du säker på att du vill återställa arbetsytans layout?" + +#: src/gui/settings.cpp:2566 +msgid "Allow docking editors" +msgstr "Tillåt dockningsredigerare" + +#: src/gui/settings.cpp:2573 +msgid "Remember window position" +msgstr "Kom ihåg fönsterpositionen" + +#: src/gui/settings.cpp:2578 +msgid "remembers the window's last position on start-up." +msgstr "kommer ihåg fönstrets sista position vid uppstart." + +#: src/gui/settings.cpp:2583 +msgid "Only allow window movement when clicking on title bar" +msgstr "Tillåt endast fönsterrörelse när du klickar på namnlisten" + +#: src/gui/settings.cpp:2590 +msgid "Center pop-up windows" +msgstr "Centrera popup-fönster" + +#: src/gui/settings.cpp:2595 +msgid "Play/edit controls layout:" +msgstr "Spela/redigera kontroller layout:" + +#: src/gui/settings.cpp:2597 +msgid "Classic##ecl0" +msgstr "Klassisk" + +#: src/gui/settings.cpp:2601 +msgid "Compact##ecl1" +msgstr "Kompakt" + +#: src/gui/settings.cpp:2605 +msgid "Compact (vertical)##ecl2" +msgstr "Kompakt (vertikal)" + +#: src/gui/settings.cpp:2609 +msgid "Split##ecl3" +msgstr "Dela" + +#: src/gui/settings.cpp:2615 +msgid "Position of buttons in Orders:" +msgstr "Placering av knappar i beställningar:" + +#: src/gui/settings.cpp:2617 +msgid "Top##obp0" +msgstr "Topp" + +#: src/gui/settings.cpp:2621 +msgid "Left##obp1" +msgstr "Vänster" + +#: src/gui/settings.cpp:2625 +msgid "Right##obp2" +msgstr "Höger" + +#: src/gui/settings.cpp:2632 +msgid "Mouse" +msgstr "Mus" + +#: src/gui/settings.cpp:2634 +msgid "Double-click time (seconds)" +msgstr "Dubbelklickstid (sekunder)" + +#: src/gui/settings.cpp:2643 +msgid "Don't raise pattern editor on click" +msgstr "Höj ej mönsterredigeraren vid klick" + +#: src/gui/settings.cpp:2649 +msgid "Focus pattern editor when selecting instrument" +msgstr "Fokusera på mönsterredigeraren när du väljer instrument" + +#: src/gui/settings.cpp:2654 +msgid "Note preview behavior:" +msgstr "Notförhandsgranskningsbeteende:" + +#: src/gui/settings.cpp:2656 +msgid "Never##npb0" +msgstr "Aldrig" + +#: src/gui/settings.cpp:2660 +msgid "When cursor is in Note column##npb1" +msgstr "När markören är i notkolumnen" + +#: src/gui/settings.cpp:2664 +msgid "When cursor is in Note column or not in edit mode##npb2" +msgstr "När markören är i notkolumnen eller inte i redigeringsläge" + +#: src/gui/settings.cpp:2668 +msgid "Always##npb3" +msgstr "Alltid" + +#: src/gui/settings.cpp:2674 +msgid "Allow dragging selection:" +msgstr "Tillåt val genom att dra:" + +#: src/gui/settings.cpp:2676 +msgid "No##dms0" +msgstr "Nej" + +#: src/gui/settings.cpp:2680 +msgid "Yes##dms1" +msgstr "Ja" + +#: src/gui/settings.cpp:2684 +msgid "Yes (while holding Ctrl only)##dms2" +msgstr "Ja (medan du bara håller ned Ctrl)" + +#: src/gui/settings.cpp:2690 +msgid "Toggle channel solo on:" +msgstr "Slå på solokanalen:" + +#: src/gui/settings.cpp:2692 +msgid "Right-click or double-click##soloA" +msgstr "Högerklicka eller dubbelklicka" + +#: src/gui/settings.cpp:2696 +msgid "Right-click##soloR" +msgstr "Högerklick" + +#: src/gui/settings.cpp:2700 +msgid "Double-click##soloD" +msgstr "Dubbelklick" + +#: src/gui/settings.cpp:2707 +msgid "Double click selects entire column" +msgstr "Dubbelklicka väljer hela kolumnen" + +#: src/gui/settings.cpp:2713 +msgid "Cursor behavior" +msgstr "Markörens beteende" + +#: src/gui/settings.cpp:2715 +msgid "Insert pushes entire channel row" +msgstr "Insert skjuter hela kanalraden" + +#: src/gui/settings.cpp:2721 +msgid "Pull delete affects entire channel row" +msgstr "Dra bort påverkar hela kanalraden" + +#: src/gui/settings.cpp:2727 +msgid "Push value when overwriting instead of clearing it" +msgstr "Tryck på värde när du skriver över i stället för att rensa det" + +#: src/gui/settings.cpp:2733 +msgid "Keyboard note/value input repeat (hold key to input continuously)" +msgstr "" +"Upprepning av tangentbordsnoter/värdeingång (håll ned tangenten för att mata " +"in kontinuerligt)" + +#: src/gui/settings.cpp:2738 +msgid "Effect input behavior:" +msgstr "Effektingångsbeteende:" + +#: src/gui/settings.cpp:2740 +msgid "Move down##eicb0" +msgstr "Flytta ner" + +#: src/gui/settings.cpp:2744 +msgid "Move to effect value (otherwise move down)##eicb1" +msgstr "Flytta till effektvärde (annars flytta nedåt)" + +#: src/gui/settings.cpp:2748 +msgid "Move to effect value/next effect and wrap around##eicb2" +msgstr "Flytta till effektvärde/nästa effekt och slå runt" + +#: src/gui/settings.cpp:2755 +msgid "Delete effect value when deleting effect" +msgstr "Ta bort effektvärdet när du raderar effekt" + +#: src/gui/settings.cpp:2761 +msgid "Change current instrument when changing instrument column (absorb)" +msgstr "Byt aktuellt instrument när du byter instrumentkolumn (absorbera)" + +#: src/gui/settings.cpp:2767 +msgid "Remove instrument value when inserting note off/release" +msgstr "Ta bort instrumentvärdet när du sätter not av/release" + +#: src/gui/settings.cpp:2773 +msgid "Remove volume value when inserting note off/release" +msgstr "Ta bort volymvärdet när du sätter in not av/release" + +#: src/gui/settings.cpp:2779 +msgid "Cursor movement" +msgstr "Markörens rörelse" + +#: src/gui/settings.cpp:2781 +msgid "Wrap horizontally:" +msgstr "Linda horisontellt:" + +#: src/gui/settings.cpp:2783 +msgid "No##wrapH0" +msgstr "Nej" + +#: src/gui/settings.cpp:2787 +msgid "Yes##wrapH1" +msgstr "Ja" + +#: src/gui/settings.cpp:2791 +msgid "Yes, and move to next/prev row##wrapH2" +msgstr "Ja, och flytta till nästa/föregående rad" + +#: src/gui/settings.cpp:2797 +msgid "Wrap vertically:" +msgstr "Linda vertikalt:" + +#: src/gui/settings.cpp:2799 +msgid "No##wrapV0" +msgstr "Nej" + +#: src/gui/settings.cpp:2803 +msgid "Yes##wrapV1" +msgstr "Ja" + +#: src/gui/settings.cpp:2807 +msgid "Yes, and move to next/prev pattern##wrapV2" +msgstr "Ja, och flytta till nästa/föregående mönster" + +#: src/gui/settings.cpp:2811 +msgid "Yes, and move to next/prev pattern (wrap around)##wrapV2" +msgstr "Ja, och flytta till nästa/föregående mönster (omslut)" + +#: src/gui/settings.cpp:2817 +msgid "Cursor movement keys behavior:" +msgstr "Beteende för markörrörelsetangenter:" + +#: src/gui/settings.cpp:2819 +msgid "Move by one##cmk0" +msgstr "Flytta efter en" + +#: src/gui/settings.cpp:2823 +msgid "Move by Edit Step##cmk1" +msgstr "Flytta med redigeringssteg" + +#: src/gui/settings.cpp:2830 +msgid "Move cursor by edit step on delete" +msgstr "Flytta markören genom redigeringssteg vid radering" + +#: src/gui/settings.cpp:2836 +msgid "Move cursor by edit step on insert (push)" +msgstr "Flytta markören genom att redigera steg på infogning (tryck)" + +#: src/gui/settings.cpp:2842 +msgid "Move cursor up on backspace-delete" +msgstr "Flytta markören uppåt på backsteg-delete" + +#: src/gui/settings.cpp:2848 +msgid "Move cursor to end of clipboard content when pasting" +msgstr "Flytta markören till slutet av urklippsinnehållet när du klistrar in" + +#: src/gui/settings.cpp:2854 +msgid "Scrolling" +msgstr "Scrollar" + +#: src/gui/settings.cpp:2856 +msgid "Change order when scrolling outside of pattern bounds:" +msgstr "Ändra order när du rullar utanför mönstergränserna:" + +#: src/gui/settings.cpp:2858 +msgid "No##pscroll0" +msgstr "Nej" + +#: src/gui/settings.cpp:2862 +msgid "Yes##pscroll1" +msgstr "Ja" + +#: src/gui/settings.cpp:2866 +msgid "Yes, and wrap around song##pscroll2" +msgstr "Ja, och stick nära låten" + +#: src/gui/settings.cpp:2873 +msgid "Cursor follows current order when moving it" +msgstr "Markören följer nuvarande order när den flyttas" + +#: src/gui/settings.cpp:2878 +msgid "applies when playback is stopped." +msgstr "gäller när uppspelningen är stoppad." + +#: src/gui/settings.cpp:2882 +msgid "Don't scroll when moving cursor" +msgstr "Rulla ej när du flyttar markören" + +#: src/gui/settings.cpp:2887 +msgid "Move cursor with scroll wheel:" +msgstr "Flytta markören med rullningshjulet:" + +#: src/gui/settings.cpp:2889 +msgid "No##csw0" +msgstr "Nej" + +#: src/gui/settings.cpp:2893 +msgid "Yes##csw1" +msgstr "Ja" + +#: src/gui/settings.cpp:2897 +msgid "Inverted##csw2" +msgstr "Omvänd" + +#: src/gui/settings.cpp:2904 +msgid "How many steps to move with each scroll wheel step?" +msgstr "Hur många steg ska man flytta med varje steg på rullhjulet?" + +#: src/gui/settings.cpp:2905 +msgid "One##cws0" +msgstr "En" + +#: src/gui/settings.cpp:2909 +msgid "Edit Step##cws1" +msgstr "Redigera steg" + +#: src/gui/settings.cpp:2916 src/gui/settings.cpp:3531 +msgid "Assets" +msgstr "Tillgångar" + +#: src/gui/settings.cpp:2919 +msgid "Display instrument type menu when adding instrument" +msgstr "Visa instrumenttypsmeny när du lägger till instrument" + +#: src/gui/settings.cpp:2925 +msgid "Select asset after opening one" +msgstr "Välj tillgång efter att ha öppnat en" + +#: src/gui/settings.cpp:2932 +msgid "Appearance" +msgstr "Utseende" + +#: src/gui/settings.cpp:2934 +msgid "Scaling" +msgstr "Skalning" + +#: src/gui/settings.cpp:2936 +msgid "Automatic UI scaling factor" +msgstr "Automatisk skalningsfaktor för användargränssnittet" + +#: src/gui/settings.cpp:2945 +msgid "UI scaling factor" +msgstr "Skalningsfaktor för användargränssnittet" + +#: src/gui/settings.cpp:2952 +msgid "Icon size" +msgstr "Ikonstorlek" + +#: src/gui/settings.cpp:2967 +msgid "Font renderer" +msgstr "Teckensnittsrenderare" + +#: src/gui/settings.cpp:2977 +msgid "Main font" +msgstr "Huvudteckensnitt" + +#: src/gui/settings.cpp:2988 +msgid "Size##MainFontSize" +msgstr "Storlek##Huvud teckensnittstorlek" + +#: src/gui/settings.cpp:2996 +msgid "Header font" +msgstr "Header teckensnitt" + +#: src/gui/settings.cpp:3007 +msgid "Size##HeadFontSize" +msgstr "Storlek" + +#: src/gui/settings.cpp:3015 +msgid "Pattern font" +msgstr "Mönster teckensnitt" + +#: src/gui/settings.cpp:3026 +msgid "Size##PatFontSize" +msgstr "Storlek" + +#: src/gui/settings.cpp:3036 +msgid "Anti-aliased fonts" +msgstr "Kantutjämnade typsnitt" + +#: src/gui/settings.cpp:3042 +msgid "Support bitmap fonts" +msgstr "Stöda bitmappsteckensnitt" + +#: src/gui/settings.cpp:3047 +msgid "Hinting:" +msgstr "Tips:" + +#: src/gui/settings.cpp:3049 +msgid "Off (soft)##fh0" +msgstr "Av (mjuk)" + +#: src/gui/settings.cpp:3053 +msgid "Slight##fh1" +msgstr "Lätt" + +#: src/gui/settings.cpp:3057 +msgid "Normal##fh2" +msgstr "Normal" + +#: src/gui/settings.cpp:3061 +msgid "Full (hard)##fh3" +msgstr "Full (hårt)" + +#: src/gui/settings.cpp:3067 +msgid "Auto-hinter:" +msgstr "Autotips:" + +#: src/gui/settings.cpp:3069 +msgid "Disable##fah0" +msgstr "Inaktivera" + +#: src/gui/settings.cpp:3073 +msgid "Enable##fah1" +msgstr "Aktivera" + +#: src/gui/settings.cpp:3077 +msgid "Force##fah2" +msgstr "Tvinga" + +#: src/gui/settings.cpp:3084 +msgid "Oversample" +msgstr "Översampla" + +#: src/gui/settings.cpp:3087 +msgid "1×##fos1" +msgstr "1×##fos1" + +#: src/gui/settings.cpp:3092 +msgid "" +"saves video memory. reduces font rendering quality.\n" +"use for pixel/bitmap fonts." +msgstr "" +"sparar videominne. minskar teckensnittsrenderingskvaliteten.\n" +"använd för pixel-/bitmappsteckensnitt." + +#: src/gui/settings.cpp:3095 +msgid "2×##fos2" +msgstr "2×##fos2" + +#: src/gui/settings.cpp:3100 +msgid "default." +msgstr "standard." + +#: src/gui/settings.cpp:3103 +msgid "3×##fos3" +msgstr "3×##fos3" + +#: src/gui/settings.cpp:3108 +msgid "" +"slightly better font rendering quality.\n" +"uses more video memory." +msgstr "" +"något bättre typsnittskvalitet.\n" +"använder mer videominne." + +#: src/gui/settings.cpp:3112 +msgid "Load fallback font" +msgstr "Ladda reservteckensnitt" + +#: src/gui/settings.cpp:3117 +msgid "disable to save video memory." +msgstr "inaktivera för att spara videominne." + +#: src/gui/settings.cpp:3121 +msgid "Display Japanese characters" +msgstr "Visa japanska tecken" + +#: src/gui/settings.cpp:3127 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"このオプションは、十分なグラフィックメモリがある場合にのみ切り替えてくださ" +"い。\n" +"これは、Dear ImGuiにダイナミックフォントアトラスが実装されるまでの一時的な解" +"決策です。" +msgstr "" +"Växla bara detta alternativ om du har tillräckligt med grafikminne.\n" +"Detta är en tillfällig lösning tills dynamisk typsnittsatlas implementeras i " +"DearImGui.\n" +"\n" +"このオプションは、十分なグラフィックメモリがある場合にのみ切り替えてくださ" +"い。\n" +"これは、Dear ImGuiにダイナミックフォントアトラスが実装されるまでの一時的な解" +"決策です。" + +#: src/gui/settings.cpp:3135 +msgid "Display Chinese (Simplified) characters" +msgstr "Visa (förenklade) kinesiska tecken" + +#: src/gui/settings.cpp:3141 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"请在确保你有足够的显存后再启动此设定\n" +"这是一个在ImGui实现动态字体加载之前的临时解决方案" +msgstr "" +"Växla bara detta alternativ om du har tillräckligt med grafikminne.\n" +"Detta är en tillfällig lösning tills dynamisk typsnittsatlas implementeras i " +"DearImGui.\n" +"\n" +"请在确保你有足够的显存后再启动此设定\n" +"这是一个在ImGui实现动态字体加载之前的临时解决方案" + +#: src/gui/settings.cpp:3149 +msgid "Display Chinese (Traditional) characters" +msgstr "Visa (traditionella) kinesiska tecken" + +#: src/gui/settings.cpp:3155 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"請在確保你有足夠的顯存后再啟動此設定\n" +"這是一個在ImGui實現動態字體加載之前的臨時解決方案" +msgstr "" +"Växla bara detta alternativ om du har tillräckligt med grafikminne.\n" +"Detta är en tillfällig lösning tills dynamisk typsnittsatlas implementeras i " +"DearImGui.\n" +"\n" +"請在確保你有足夠的顯存后再啟動此設定\n" +"這是一個在ImGui實現動態字體加載之前的臨時解決方案" + +#: src/gui/settings.cpp:3163 +msgid "Display Korean characters" +msgstr "Visa koreanska tecken" + +#: src/gui/settings.cpp:3169 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"그래픽 메모리가 충분한 경우에만 이 옵션을 선택하십시오.\n" +"이 옵션은 Dear ImGui에 동적 글꼴 아틀라스가 구현될 때까지 임시 솔루션입니다." +msgstr "" +"Växla bara detta alternativ om du har tillräckligt med grafikminne.\n" +"Detta är en tillfällig lösning tills dynamisk typsnittsatlas implementeras i " +"DearImGui.\n" +"\n" +"그래픽 메모리가 충분한 경우에만 이 옵션을 선택하십시오.\n" +"이 옵션은 Dear ImGui에 동적 글꼴 아틀라스가 구현될 때까지 임시 솔루션입니다." + +#: src/gui/settings.cpp:3178 +msgid "Title bar:" +msgstr "Titelfält:" + +#: src/gui/settings.cpp:3180 +msgid "Furnace##tbar0" +msgstr "Furnace" + +#: src/gui/settings.cpp:3185 +msgid "Song Name - Furnace##tbar1" +msgstr "Låtnamn - Furnace" + +#: src/gui/settings.cpp:3190 +msgid "file_name.fur - Furnace##tbar2" +msgstr "filnamn.fur - Furnace" + +#: src/gui/settings.cpp:3195 +msgid "/path/to/file.fur - Furnace##tbar3" +msgstr "/sökväg/till/filen.fur - Furnace" + +#: src/gui/settings.cpp:3203 +msgid "Display system name on title bar" +msgstr "Visa systemnamnet på namnfältet" + +#: src/gui/settings.cpp:3210 +msgid "Display chip names instead of \"multi-system\" in title bar" +msgstr "Visa chipnamn i stället för \"multisystem\" på namnfältet" + +#: src/gui/settings.cpp:3216 +msgid "Status bar:" +msgstr "Statusfältet:" + +#: src/gui/settings.cpp:3218 +msgid "Cursor details##sbar0" +msgstr "Markördetaljer" + +#: src/gui/settings.cpp:3222 +msgid "File path##sbar1" +msgstr "Filsökväg" + +#: src/gui/settings.cpp:3226 +msgid "Cursor details or file path##sbar2" +msgstr "Markörinformation eller filsökväg" + +#: src/gui/settings.cpp:3230 +msgid "Nothing##sbar3" +msgstr "Ingenting" + +#: src/gui/settings.cpp:3237 +msgid "Display playback status when playing" +msgstr "Visa uppspelningsstatus när du spelar" + +#: src/gui/settings.cpp:3242 +msgid "Export options layout:" +msgstr "Exportera alternativ-layout:" + +#: src/gui/settings.cpp:3244 +msgid "Sub-menus in File menu##eol0" +msgstr "Undermenyer i Arkiv-menyn" + +#: src/gui/settings.cpp:3248 +msgid "Modal window with tabs##eol1" +msgstr "Modalt fönster med flikar" + +#: src/gui/settings.cpp:3252 +msgid "Modal windows with options in File menu##eol2" +msgstr "Modala fönster med alternativ i Arkiv-menyn" + +#: src/gui/settings.cpp:3259 +msgid "Capitalize menu bar" +msgstr "Använd versaler i menyfältet" + +#: src/gui/settings.cpp:3265 +msgid "Display add/configure/change/remove chip menus in File menu" +msgstr "Visa menyer för lägg till/konfigurera/ändra/ta bort chip i Arkiv-menyn" + +#: src/gui/settings.cpp:3279 +msgid "Highlight channel at cursor in Orders" +msgstr "Markera kanal vid markören i Orders" + +#: src/gui/settings.cpp:3284 +msgid "Orders row number format:" +msgstr "Orderradnummerformat:" + +#: src/gui/settings.cpp:3286 +msgid "Decimal##orbD" +msgstr "Decimal" + +#: src/gui/settings.cpp:3290 +msgid "Hexadecimal##orbH" +msgstr "Hexadecimal" + +#: src/gui/settings.cpp:3299 +msgid "Center pattern view" +msgstr "Centrera mönstervyn" + +#: src/gui/settings.cpp:3305 +msgid "Overflow pattern highlights" +msgstr "Fyll över mönstermarkeringar" + +#: src/gui/settings.cpp:3311 +msgid "Display previous/next pattern" +msgstr "Visa föregående/nästa mönster" + +#: src/gui/settings.cpp:3316 +msgid "Pattern row number format:" +msgstr "Mönsterradsnummerformat:" + +#: src/gui/settings.cpp:3318 +msgid "Decimal##prbD" +msgstr "Decimal" + +#: src/gui/settings.cpp:3322 +msgid "Hexadecimal##prbH" +msgstr "Hexadecimal" + +#: src/gui/settings.cpp:3328 +msgid "Pattern view labels:" +msgstr "Etiketter för mönstervy:" + +#: src/gui/settings.cpp:3333 +msgid "Note off (3-char)" +msgstr "Not av (3 tecken)" + +#: src/gui/settings.cpp:3338 +msgid "Note release (3-char)" +msgstr "Notsläpp (3 tecken)" + +#: src/gui/settings.cpp:3343 +msgid "Macro release (3-char)" +msgstr "Makrosläpp (3 tecken)" + +#: src/gui/settings.cpp:3348 +msgid "Empty field (3-char)" +msgstr "Tomfält (3 tecken)" + +#: src/gui/settings.cpp:3353 +msgid "Empty field (2-char)" +msgstr "Tomfält (2 tecken)" + +#: src/gui/settings.cpp:3355 +msgid "Pattern view spacing after:" +msgstr "Mönstervyavstånd efter:" + +#: src/gui/settings.cpp:3357 src/gui/settings.cpp:4115 +#: src/gui/findReplace.cpp:601 src/gui/findReplace.cpp:864 +#: src/gui/sampleEdit.cpp:590 +msgid "Note" +msgstr "Not" + +#: src/gui/settings.cpp:3375 src/gui/findReplace.cpp:707 +#: src/gui/findReplace.cpp:974 +msgid "Effect" +msgstr "Effekt" + +#: src/gui/settings.cpp:3381 +msgid "Effect value" +msgstr "Effektvärde" + +#: src/gui/settings.cpp:3388 +msgid "Single-digit effects for 00-0F" +msgstr "Ensiffriga effekter för 00-0F" + +#: src/gui/settings.cpp:3394 +msgid "Use flats instead of sharps" +msgstr "Använd platta toner i stället för skarpa toner" + +#: src/gui/settings.cpp:3400 +msgid "Use German notation" +msgstr "Använd tysk notation" + +#: src/gui/settings.cpp:3408 +msgid "Channel style:" +msgstr "Kanalstil:" + +#: src/gui/settings.cpp:3410 +msgid "Classic##CHS0" +msgstr "Klassisk" + +#: src/gui/settings.cpp:3414 +msgid "Line##CHS1" +msgstr "Linje" + +#: src/gui/settings.cpp:3418 +msgid "Round##CHS2" +msgstr "Rund" + +#: src/gui/settings.cpp:3422 +msgid "Split button##CHS3" +msgstr "Delningsknapp" + +#: src/gui/settings.cpp:3426 +msgid "Square border##CH42" +msgstr "Fyrkantig kant" + +#: src/gui/settings.cpp:3430 +msgid "Round border##CHS5" +msgstr "Rund kant" + +#: src/gui/settings.cpp:3436 +msgid "Channel volume bar:" +msgstr "Kanalvolymfält:" + +#: src/gui/settings.cpp:3438 +msgid "None##CHV0" +msgstr "Inga" + +#: src/gui/settings.cpp:3442 +msgid "Simple##CHV1" +msgstr "Enkel" + +#: src/gui/settings.cpp:3446 +msgid "Stereo##CHV2" +msgstr "Stereo" + +#: src/gui/settings.cpp:3450 +msgid "Real##CHV3" +msgstr "Riktig" + +#: src/gui/settings.cpp:3454 +msgid "Real (stereo)##CHV4" +msgstr "Riktig (stereo)" + +#: src/gui/settings.cpp:3460 +msgid "Channel feedback style:" +msgstr "Kanalåterkopplingsstil:" + +#: src/gui/settings.cpp:3462 +msgid "Off##CHF0" +msgstr "Av" + +#: src/gui/settings.cpp:3466 +msgid "Note##CHF1" +msgstr "Not" + +#: src/gui/settings.cpp:3470 +msgid "Volume##CHF2" +msgstr "Volym" + +#: src/gui/settings.cpp:3474 +msgid "Active##CHF3" +msgstr "Aktiv" + +#: src/gui/settings.cpp:3480 +msgid "Channel font:" +msgstr "Kanalens teckensnitt:" + +#: src/gui/settings.cpp:3482 +msgid "Regular##CHFont0" +msgstr "Ordinarie" + +#: src/gui/settings.cpp:3486 +msgid "Monospace##CHFont1" +msgstr "Monospace" + +#: src/gui/settings.cpp:3493 +msgid "Center channel name" +msgstr "Centrera kanalnamnet" + +#: src/gui/settings.cpp:3498 +msgid "Channel colors:" +msgstr "Kanalfärger:" + +#: src/gui/settings.cpp:3500 +msgid "Single##CHC0" +msgstr "Enkel" + +#: src/gui/settings.cpp:3504 +msgid "Channel type##CHC1" +msgstr "Kanaltyp" + +#: src/gui/settings.cpp:3508 +msgid "Instrument type##CHC2" +msgstr "Instrumenttyp" + +#: src/gui/settings.cpp:3514 +msgid "Channel name colors:" +msgstr "Kanalnamnets färger:" + +#: src/gui/settings.cpp:3516 +msgid "Single##CTC0" +msgstr "Enkel" + +#: src/gui/settings.cpp:3520 +msgid "Channel type##CTC1" +msgstr "Kanaltyp" + +#: src/gui/settings.cpp:3524 +msgid "Instrument type##CTC2" +msgstr "Instrumenttyp" + +#: src/gui/settings.cpp:3533 +msgid "Unified instrument/wavetable/sample list" +msgstr "Enhetlig instrument/wavetable/sample-lista" + +#: src/gui/settings.cpp:3543 +msgid "Horizontal instrument list" +msgstr "Horisontell instrumentlista" + +#: src/gui/settings.cpp:3549 +msgid "Instrument list icon style:" +msgstr "Stil på ikonen för instrumentlistan:" + +#: src/gui/settings.cpp:3551 +msgid "None##iis0" +msgstr "Inga" + +#: src/gui/settings.cpp:3555 +msgid "Graphical icons##iis1" +msgstr "Grafiska ikoner" + +#: src/gui/settings.cpp:3559 +msgid "Letter icons##iis2" +msgstr "Bokstavsikoner" + +#: src/gui/settings.cpp:3566 +msgid "Colorize instrument editor using instrument type" +msgstr "Färgsätt instrumentredigeraren med hjälp av instrumenttyp" + +#: src/gui/settings.cpp:3572 src/gui/settings.cpp:4014 +msgid "Macro Editor" +msgstr "Makroredigerare" + +#: src/gui/settings.cpp:3573 +msgid "Macro editor layout:" +msgstr "Layout för makroredigeraren:" + +#: src/gui/settings.cpp:3575 +msgid "Unified##mel0" +msgstr "Enad" + +#: src/gui/settings.cpp:3585 +msgid "Grid##mel2" +msgstr "Rutnät" + +#: src/gui/settings.cpp:3589 +msgid "Single (with list)##mel3" +msgstr "Enkel (med lista)" + +#: src/gui/settings.cpp:3602 +msgid "Use classic macro editor vertical slider" +msgstr "Använd det klassiska vertikala skjutreglaget för makroredigerare" + +#: src/gui/settings.cpp:3608 +msgid "Wave Editor" +msgstr "Vågredigerare" + +#: src/gui/settings.cpp:3610 +msgid "Use compact wave editor" +msgstr "Använd en kompakt vågredigerare" + +#: src/gui/settings.cpp:3616 src/gui/settings.cpp:3991 +msgid "FM Editor" +msgstr "FM-redigerare" + +#: src/gui/settings.cpp:3617 +msgid "FM parameter names:" +msgstr "Namn på FM-parametrar:" + +#: src/gui/settings.cpp:3619 +msgid "Friendly##fmn0" +msgstr "Vänlig" + +#: src/gui/settings.cpp:3623 +msgid "Technical##fmn1" +msgstr "Teknisk" + +#: src/gui/settings.cpp:3627 +msgid "Technical (alternate)##fmn2" +msgstr "Teknisk (alternativ)" + +#: src/gui/settings.cpp:3634 +msgid "Use standard OPL waveform names" +msgstr "Använd standardnamn på OPL-vågformer" + +#: src/gui/settings.cpp:3639 +msgid "FM parameter editor layout:" +msgstr "Layout för FM-parameterredigerare:" + +#: src/gui/settings.cpp:3641 +msgid "Modern##fml0" +msgstr "Modern" + +#: src/gui/settings.cpp:3645 +msgid "Compact (2x2, classic)##fml1" +msgstr "Kompakt (2x2, klassisk)" + +#: src/gui/settings.cpp:3649 +msgid "Compact (1x4)##fml2" +msgstr "Kompakt (1x4)" + +#: src/gui/settings.cpp:3653 +msgid "Compact (4x1)##fml3" +msgstr "Kompakt (4x1)" + +#: src/gui/settings.cpp:3657 +msgid "Alternate (2x2)##fml4" +msgstr "Alternativ (2x2)" + +#: src/gui/settings.cpp:3661 +msgid "Alternate (1x4)##fml5" +msgstr "Alternativ (1x4)" + +#: src/gui/settings.cpp:3665 +msgid "Alternate (4x1)##fml5" +msgstr "Alternativ (4x1)" + +#: src/gui/settings.cpp:3671 +msgid "Position of Sustain in FM editor:" +msgstr "Positionen för sustain i FM-redigeraren:" + +#: src/gui/settings.cpp:3673 +msgid "Between Decay and Sustain Rate##susp0" +msgstr "Mellan decay- och sustain-frekvens" + +#: src/gui/settings.cpp:3677 +msgid "After Release Rate##susp1" +msgstr "Efter release-hastighet" + +#: src/gui/settings.cpp:3684 +msgid "Use separate colors for carriers/modulators in FM editor" +msgstr "Använd separata färger för bärare/modulatorer i FM-redigeraren" + +#: src/gui/settings.cpp:3690 +msgid "Unsigned FM detune values" +msgstr "Osignerade FM-detune-värden" + +#: src/gui/settings.cpp:3697 +msgid "Chip memory usage unit:" +msgstr "Enhet för användning av chipminne:" + +#: src/gui/settings.cpp:3699 +msgid "Bytes##MUU0" +msgstr "Byte:" + +#: src/gui/settings.cpp:3703 +msgid "Kilobytes##MUU1" +msgstr "Kilobyte:" + +#: src/gui/settings.cpp:3712 +msgid "Rounded corners" +msgstr "Rundade hörn" + +#: src/gui/settings.cpp:3718 src/gui/settings.cpp:3896 +#: src/gui/settings.cpp:3938 +msgid "Border" +msgstr "Gräns" + +#: src/gui/settings.cpp:3730 +msgid "Anti-aliased" +msgstr "Kantutjämning" + +#: src/gui/settings.cpp:3736 +msgid "Fill entire window" +msgstr "Fyll in hela fönstret" + +#: src/gui/settings.cpp:3742 +msgid "Waveform goes out of bounds" +msgstr "Vågformen går utanför gränserna" + +#: src/gui/settings.cpp:3754 +msgid "Windows" +msgstr "Fönster" + +#: src/gui/settings.cpp:3756 +msgid "Rounded window corners" +msgstr "Rundade fönsterhörn" + +#: src/gui/settings.cpp:3762 +msgid "Rounded buttons" +msgstr "Rundade knappar" + +#: src/gui/settings.cpp:3768 +msgid "Rounded menu corners" +msgstr "Rundade menyhörn" + +#: src/gui/settings.cpp:3774 +msgid "Rounded tabs" +msgstr "Rundade flikar" + +#: src/gui/settings.cpp:3780 +msgid "Rounded scrollbars" +msgstr "Rundade rullningslister" + +#: src/gui/settings.cpp:3786 +msgid "Borders around widgets" +msgstr "Kantlinjer runt widgets" + +#: src/gui/settings.cpp:3795 +msgid "Color scheme" +msgstr "Färgschema" + +#: src/gui/settings.cpp:3805 +msgid "Are you sure you want to reset the color scheme?" +msgstr "Är du säker på att du vill återställa färgschemat?" + +#: src/gui/settings.cpp:3808 +msgid "Guru mode" +msgstr "Guru-läge" + +#: src/gui/settings.cpp:3815 src/gui/settings.cpp:3845 +msgid "Frame shading" +msgstr "Ramskuggning" + +#: src/gui/settings.cpp:3821 +msgid "Color scheme type:" +msgstr "Färgschema typ:" + +#: src/gui/settings.cpp:3823 +msgid "Dark##gcb0" +msgstr "Mörk" + +#: src/gui/settings.cpp:3828 +msgid "Light##gcb1" +msgstr "Ljus" + +#: src/gui/settings.cpp:3835 +msgid "Accent colors:" +msgstr "Accentfärger:" + +#: src/gui/settings.cpp:3837 +msgid "Primary" +msgstr "Primär" + +#: src/gui/settings.cpp:3838 +msgid "Secondary" +msgstr "Sekundär" + +#: src/gui/settings.cpp:3852 +msgid "Button" +msgstr "Knapp" + +#: src/gui/settings.cpp:3853 +msgid "Button (hovered)" +msgstr "Knapp (svävade)" + +#: src/gui/settings.cpp:3854 +msgid "Button (active)" +msgstr "Knapp (aktiv)" + +#: src/gui/settings.cpp:3855 +msgid "Tab" +msgstr "Flik" + +#: src/gui/settings.cpp:3856 +msgid "Tab (hovered)" +msgstr "Flik (svävade)" + +#: src/gui/settings.cpp:3857 +msgid "Tab (active)" +msgstr "Flik (aktiv)" + +#: src/gui/settings.cpp:3858 +msgid "Tab (unfocused)" +msgstr "Flik (ofokuserad)" + +#: src/gui/settings.cpp:3859 +msgid "Tab (unfocused and active)" +msgstr "Flik (ofokuserad och aktiv)" + +#: src/gui/settings.cpp:3860 +msgid "ImGui header" +msgstr "ImGui-rubrik" + +#: src/gui/settings.cpp:3861 +msgid "ImGui header (hovered)" +msgstr "ImGui-rubrik (svävade)" + +#: src/gui/settings.cpp:3862 +msgid "ImGui header (active)" +msgstr "ImGui-rubrik (aktiv)" + +#: src/gui/settings.cpp:3863 +msgid "Resize grip" +msgstr "Ändra storlek på grepp" + +#: src/gui/settings.cpp:3864 +msgid "Resize grip (hovered)" +msgstr "Ändra storlek på grepp (svävade)" + +#: src/gui/settings.cpp:3865 +msgid "Resize grip (active)" +msgstr "Ändra storlek på grepp (aktiv)" + +#: src/gui/settings.cpp:3866 +msgid "Widget background" +msgstr "Widget-bakgrund" + +#: src/gui/settings.cpp:3867 +msgid "Widget background (hovered)" +msgstr "Widget-bakgrund (svävade)" + +#: src/gui/settings.cpp:3868 +msgid "Widget background (active)" +msgstr "Widget-bakgrund (aktiv)" + +#: src/gui/settings.cpp:3869 +msgid "Slider grab" +msgstr "Glidreglage" + +#: src/gui/settings.cpp:3870 +msgid "Slider grab (active)" +msgstr "Glidreglage (aktiv)" + +#: src/gui/settings.cpp:3871 +msgid "Title background (active)" +msgstr "Titelbakgrund (aktiv)" + +#: src/gui/settings.cpp:3872 +msgid "Checkbox/radio button mark" +msgstr "Markera kryssruta/radioknapp" + +#: src/gui/settings.cpp:3873 +msgid "Text selection" +msgstr "Textval" + +#: src/gui/settings.cpp:3874 +msgid "Line plot" +msgstr "Linjeplot" + +#: src/gui/settings.cpp:3875 +msgid "Line plot (hovered)" +msgstr "Linjeplot (svävade)" + +#: src/gui/settings.cpp:3876 +msgid "Histogram plot" +msgstr "Histogramplot" + +#: src/gui/settings.cpp:3877 +msgid "Histogram plot (hovered)" +msgstr "Histogramplot (svävade)" + +#: src/gui/settings.cpp:3878 +msgid "Table row (even)" +msgstr "Tabellfält (jämn)" + +#: src/gui/settings.cpp:3879 +msgid "Table row (odd)" +msgstr "Tabellfält (udda)" + +#: src/gui/settings.cpp:3884 +msgid "Interface (other)" +msgstr "Gränssnitt (annat)" + +#: src/gui/settings.cpp:3886 +msgid "Window background" +msgstr "Fönsterbakgrund" + +#: src/gui/settings.cpp:3887 +msgid "Sub-window background" +msgstr "Underfönsterbakgrund" + +#: src/gui/settings.cpp:3888 +msgid "Pop-up background" +msgstr "Popupbakgrund" + +#: src/gui/settings.cpp:3889 +msgid "Modal backdrop" +msgstr "Modalbakgrund" + +#: src/gui/settings.cpp:3890 +msgid "Header" +msgstr "Rubrik" + +#: src/gui/settings.cpp:3892 +msgid "Text (disabled)" +msgstr "Text (inaktiverad)" + +#: src/gui/settings.cpp:3893 +msgid "Title bar (inactive)" +msgstr "Titelfält (inaktiv)" + +#: src/gui/settings.cpp:3894 +msgid "Title bar (collapsed)" +msgstr "Titelfält (komprimerat)" + +#: src/gui/settings.cpp:3895 +msgid "Menu bar" +msgstr "Menyfält" + +#: src/gui/settings.cpp:3897 +msgid "Border shadow" +msgstr "Gränsskugga" + +#: src/gui/settings.cpp:3898 +msgid "Scroll bar" +msgstr "Rullningslist" + +#: src/gui/settings.cpp:3899 +msgid "Scroll bar (hovered)" +msgstr "Rullningslist (svävade)" + +#: src/gui/settings.cpp:3900 +msgid "Scroll bar (clicked)" +msgstr "Rullningslist (klickade)" + +#: src/gui/settings.cpp:3901 +msgid "Scroll bar background" +msgstr "Rullningslistsbakgrund" + +#: src/gui/settings.cpp:3902 +msgid "Separator" +msgstr "Seperator" + +#: src/gui/settings.cpp:3903 +msgid "Separator (hover)" +msgstr "Separator (hovra)" + +#: src/gui/settings.cpp:3904 +msgid "Separator (active)" +msgstr "Separator (aktiv)" + +#: src/gui/settings.cpp:3905 +msgid "Docking preview" +msgstr "Dockningsförhandsgranskning" + +#: src/gui/settings.cpp:3906 +msgid "Docking empty" +msgstr "Dockning tom" + +#: src/gui/settings.cpp:3907 +msgid "Table header" +msgstr "Tabellhuvud" + +#: src/gui/settings.cpp:3908 +msgid "Table border (hard)" +msgstr "Tabellgräns (hård)" + +#: src/gui/settings.cpp:3909 +msgid "Table border (soft)" +msgstr "Tabellgräns (mjuk)" + +#: src/gui/settings.cpp:3910 +msgid "Drag and drop target" +msgstr "Dra och släpp mål" + +#: src/gui/settings.cpp:3911 +msgid "Window switcher (highlight)" +msgstr "Fönsterväxlare (markera)" + +#: src/gui/settings.cpp:3912 +msgid "Window switcher backdrop" +msgstr "Bakgrund för fönsterbyte" + +#: src/gui/settings.cpp:3915 src/gui/settings.cpp:4136 src/gui/guiConst.cpp:235 +msgid "Miscellaneous" +msgstr "Diverse" + +#: src/gui/settings.cpp:3916 +msgid "Toggle on" +msgstr "Slå på" + +#: src/gui/settings.cpp:3917 +msgid "Toggle off" +msgstr "Slå av" + +#: src/gui/settings.cpp:3918 +msgid "Playback status" +msgstr "Uppspelningsstatus" + +#: src/gui/settings.cpp:3919 +msgid "Destructive hint" +msgstr "Destruktivt tips" + +#: src/gui/settings.cpp:3920 +msgid "Warning hint" +msgstr "Varningstips" + +#: src/gui/settings.cpp:3921 +msgid "Error hint" +msgstr "Feltips" + +#: src/gui/settings.cpp:3924 +msgid "File Picker (built-in)" +msgstr "Filväljare (inbyggd)" + +#: src/gui/settings.cpp:3926 +msgid "Song (native)" +msgstr "Låt (inbyggt)" + +#: src/gui/settings.cpp:3927 +msgid "Song (import)" +msgstr "Låt (importera)" + +#: src/gui/settings.cpp:3933 +msgid "Font" +msgstr "Teckensnitt" + +#: src/gui/settings.cpp:3939 +msgid "Background (top-left)" +msgstr "Bakgrund (överst till vänster)" + +#: src/gui/settings.cpp:3940 +msgid "Background (top-right)" +msgstr "Bakgrund (överst till höger" + +#: src/gui/settings.cpp:3941 +msgid "Background (bottom-left)" +msgstr "Bakgrund (nedre till vänster)" + +#: src/gui/settings.cpp:3942 +msgid "Background (bottom-right)" +msgstr "Bakgrund (nedre till höger)" + +#: src/gui/settings.cpp:3943 src/gui/settings.cpp:3998 +#: src/gui/settings.cpp:4166 src/gui/waveEdit.cpp:730 src/gui/insEdit.cpp:50 +#: src/gui/insEdit.cpp:4148 src/gui/insEdit.cpp:5812 src/gui/insEdit.cpp:6940 +#: src/gui/insEdit.cpp:6949 src/gui/insEdit.cpp:6963 src/gui/insEdit.cpp:6980 +#: src/gui/insEdit.cpp:6991 src/gui/insEdit.cpp:7004 src/gui/insEdit.cpp:7018 +#: src/gui/insEdit.cpp:7025 src/gui/insEdit.cpp:7035 src/gui/insEdit.cpp:7041 +#: src/gui/insEdit.cpp:7050 src/gui/insEdit.cpp:7074 src/gui/insEdit.cpp:7084 +#: src/gui/insEdit.cpp:7094 src/gui/insEdit.cpp:7101 src/gui/insEdit.cpp:7116 +#: src/gui/insEdit.cpp:7131 src/gui/insEdit.cpp:7151 src/gui/insEdit.cpp:7158 +#: src/gui/insEdit.cpp:7200 src/gui/insEdit.cpp:7211 src/gui/insEdit.cpp:7224 +#: src/gui/insEdit.cpp:7349 src/gui/insEdit.cpp:7425 src/gui/insEdit.cpp:7445 +#: src/gui/insEdit.cpp:7453 src/gui/insEdit.cpp:7473 +msgid "Waveform" +msgstr "Vågform" + +#: src/gui/settings.cpp:3944 +msgid "Waveform (clip)" +msgstr "Vågform (klipp)" + +#: src/gui/settings.cpp:3945 +msgid "Reference" +msgstr "Hänvisning" + +#: src/gui/settings.cpp:3946 +msgid "Guide" +msgstr "Guide" + +#: src/gui/settings.cpp:3948 +msgid "Wave (non-mono)" +msgstr "Wave (icke-mono)" + +#: src/gui/settings.cpp:3949 +msgid "Waveform (1)" +msgstr "Vågform (1)" + +#: src/gui/settings.cpp:3950 +msgid "Waveform (2)" +msgstr "Vågform (2)" + +#: src/gui/settings.cpp:3951 +msgid "Waveform (3)" +msgstr "Vågform (3)" + +#: src/gui/settings.cpp:3952 +msgid "Waveform (4)" +msgstr "Vågform (4)" + +#: src/gui/settings.cpp:3953 +msgid "Waveform (5)" +msgstr "Vågform (5)" + +#: src/gui/settings.cpp:3954 +msgid "Waveform (6)" +msgstr "Vågform (6)" + +#: src/gui/settings.cpp:3955 +msgid "Waveform (7)" +msgstr "Vågform (7)" + +#: src/gui/settings.cpp:3956 +msgid "Waveform (8)" +msgstr "Vågform (8)" + +#: src/gui/settings.cpp:3957 +msgid "Waveform (9)" +msgstr "Vågform (9)" + +#: src/gui/settings.cpp:3958 +msgid "Waveform (10)" +msgstr "Vågform (1)0" + +#: src/gui/settings.cpp:3959 +msgid "Waveform (11)" +msgstr "Vågform (11)" + +#: src/gui/settings.cpp:3960 +msgid "Waveform (12)" +msgstr "Vågform (12)" + +#: src/gui/settings.cpp:3961 +msgid "Waveform (13)" +msgstr "Vågform (13)" + +#: src/gui/settings.cpp:3962 +msgid "Waveform (14)" +msgstr "Vågform (14)" + +#: src/gui/settings.cpp:3963 +msgid "Waveform (15)" +msgstr "Vågform (15)" + +#: src/gui/settings.cpp:3964 +msgid "Waveform (16)" +msgstr "Vågform (16)" + +#: src/gui/settings.cpp:3972 +msgid "Clip" +msgstr "Klipp" + +#: src/gui/settings.cpp:3976 +msgid "Order number" +msgstr "Ordernummer" + +#: src/gui/settings.cpp:3977 +msgid "Playing order background" +msgstr "Spelar orderbakgrund" + +#: src/gui/settings.cpp:3978 +msgid "Song loop" +msgstr "Låtloop" + +#: src/gui/settings.cpp:3979 +msgid "Selected order" +msgstr "Vald order" + +#: src/gui/settings.cpp:3980 +msgid "Similar patterns" +msgstr "Liknande mönster" + +#: src/gui/settings.cpp:3981 +msgid "Inactive patterns" +msgstr "Inaktiva mönster" + +#: src/gui/settings.cpp:3984 +msgid "Envelope View" +msgstr "ADSR-vy" + +#: src/gui/settings.cpp:3985 src/gui/insEdit.cpp:540 src/gui/insEdit.cpp:3547 +#: src/gui/insEdit.cpp:3548 src/gui/insEdit.cpp:4081 src/gui/insEdit.cpp:4151 +#: src/gui/insEdit.cpp:4790 src/gui/insEdit.cpp:5861 src/gui/insEdit.cpp:5862 +#: src/gui/insEdit.cpp:6487 src/gui/insEdit.cpp:6488 src/gui/insEdit.cpp:6555 +#: src/gui/insEdit.cpp:6556 src/gui/insEdit.cpp:6995 src/gui/insEdit.cpp:7009 +#: src/gui/insEdit.cpp:7029 src/gui/insEdit.cpp:7166 +#, c-format +msgid "Envelope" +msgstr "ADSR" + +#: src/gui/settings.cpp:3986 +msgid "Sustain guide" +msgstr "Sustain-guide" + +#: src/gui/settings.cpp:3992 +msgid "Algorithm background" +msgstr "Algoritmbakgrund" + +#: src/gui/settings.cpp:3993 +msgid "Algorithm lines" +msgstr "Algoritmlinjer" + +#: src/gui/settings.cpp:3994 +msgid "Modulator" +msgstr "Modulator" + +#: src/gui/settings.cpp:3995 +msgid "Carrier" +msgstr "Bärare" + +#: src/gui/settings.cpp:3997 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:4146 +msgid "SSG-EG" +msgstr "SSG-EG" + +#: src/gui/settings.cpp:4000 +msgid "" +"(the following colors only apply when \"Use separate colors for carriers/" +"modulators in FM editor\" is on!)" +msgstr "" +"(följande färger gäller endast när \"Använd separata färger för bärare/" +"modulatorer i FM-redigeraren\" är på!)" + +#: src/gui/settings.cpp:4002 +msgid "Mod. accent (primary)" +msgstr "Mod. accent (primär)" + +#: src/gui/settings.cpp:4003 +msgid "Mod. accent (secondary)" +msgstr "Mod. accent (sekundär)" + +#: src/gui/settings.cpp:4004 +msgid "Mod. border" +msgstr "Mod. gräns" + +#: src/gui/settings.cpp:4005 +msgid "Mod. border shadow" +msgstr "Mod. gränsskugga" + +#: src/gui/settings.cpp:4007 +#, fuzzy +msgid "Car. accent (primary)" +msgstr "Bär. accent (primär)" + +#: src/gui/settings.cpp:4008 +msgid "Car. accent (secondary)" +msgstr "Bär. accent (sekundär)" + +#: src/gui/settings.cpp:4009 +msgid "Car. border" +msgstr "Bär. gräns" + +#: src/gui/settings.cpp:4010 +msgid "Car. border shadow" +msgstr "Bär. gränsskugga" + +#: src/gui/settings.cpp:4016 src/gui/guiConst.cpp:227 src/gui/insEdit.cpp:6924 +#: src/gui/insEdit.cpp:6931 src/gui/insEdit.cpp:6942 src/gui/insEdit.cpp:6950 +#: src/gui/insEdit.cpp:6971 src/gui/insEdit.cpp:6983 src/gui/insEdit.cpp:6993 +#: src/gui/insEdit.cpp:7006 src/gui/insEdit.cpp:7019 src/gui/insEdit.cpp:7028 +#: src/gui/insEdit.cpp:7036 src/gui/insEdit.cpp:7042 src/gui/insEdit.cpp:7052 +#: src/gui/insEdit.cpp:7061 src/gui/insEdit.cpp:7068 src/gui/insEdit.cpp:7075 +#: src/gui/insEdit.cpp:7087 src/gui/insEdit.cpp:7095 src/gui/insEdit.cpp:7102 +#: src/gui/insEdit.cpp:7109 src/gui/insEdit.cpp:7117 src/gui/insEdit.cpp:7123 +#: src/gui/insEdit.cpp:7132 src/gui/insEdit.cpp:7143 src/gui/insEdit.cpp:7153 +#: src/gui/insEdit.cpp:7161 src/gui/insEdit.cpp:7174 src/gui/insEdit.cpp:7182 +#: src/gui/insEdit.cpp:7193 src/gui/insEdit.cpp:7203 src/gui/insEdit.cpp:7213 +#: src/gui/insEdit.cpp:7227 src/gui/insEdit.cpp:7233 src/gui/insEdit.cpp:7241 +#: src/gui/insEdit.cpp:7248 src/gui/insEdit.cpp:7272 src/gui/insEdit.cpp:7280 +#: src/gui/insEdit.cpp:7289 src/gui/insEdit.cpp:7298 src/gui/insEdit.cpp:7306 +#: src/gui/insEdit.cpp:7323 src/gui/insEdit.cpp:7331 src/gui/insEdit.cpp:7337 +#: src/gui/insEdit.cpp:7344 src/gui/insEdit.cpp:7350 src/gui/insEdit.cpp:7355 +#: src/gui/insEdit.cpp:7361 src/gui/insEdit.cpp:7368 src/gui/insEdit.cpp:7376 +#: src/gui/insEdit.cpp:7385 src/gui/insEdit.cpp:7393 src/gui/insEdit.cpp:7401 +#: src/gui/insEdit.cpp:7413 src/gui/insEdit.cpp:7428 src/gui/insEdit.cpp:7439 +#: src/gui/insEdit.cpp:7447 src/gui/insEdit.cpp:7456 src/gui/insEdit.cpp:7466 +#: src/gui/insEdit.cpp:7474 +msgid "Pitch" +msgstr "Tonhöjd" + +#: src/gui/settings.cpp:4021 +msgid "Instrument Types" +msgstr "Instrumenttyper" + +#: src/gui/settings.cpp:4022 +msgid "FM (OPN)" +msgstr "FM (OPN)" + +#: src/gui/settings.cpp:4023 +msgid "SN76489/Sega PSG" +msgstr "SN76489/Sega PSG" + +#: src/gui/settings.cpp:4026 +msgid "C64" +msgstr "C64" + +#: src/gui/settings.cpp:4027 +msgid "Amiga/Generic Sample" +msgstr "Amiga/Generisk Sample" + +#: src/gui/settings.cpp:4028 +msgid "PC Engine" +msgstr "PC Engine" + +#: src/gui/settings.cpp:4029 +msgid "AY-3-8910/SSG" +msgstr "AY-3-8910/SSG" + +#: src/gui/settings.cpp:4030 +msgid "AY8930" +msgstr "AY8930" + +#: src/gui/settings.cpp:4031 +msgid "TIA" +msgstr "TIA" + +#: src/gui/settings.cpp:4032 +msgid "SAA1099" +msgstr "SAA1099" + +#: src/gui/settings.cpp:4033 +msgid "VIC" +msgstr "VIC" + +#: src/gui/settings.cpp:4034 +msgid "PET" +msgstr "PET" + +#: src/gui/settings.cpp:4035 +msgid "VRC6" +msgstr "VRC6" + +#: src/gui/settings.cpp:4036 src/gui/guiConst.cpp:149 +msgid "VRC6 (saw)" +msgstr "VRC6 (såg)" + +#: src/gui/settings.cpp:4037 +msgid "FM (OPLL)" +msgstr "FM (OPLL)" + +#: src/gui/settings.cpp:4038 +msgid "FM (OPL)" +msgstr "FM (OPL)" + +#: src/gui/settings.cpp:4043 +msgid "FM (OPZ)" +msgstr "FM (OPZ)" + +#: src/gui/settings.cpp:4045 +msgid "PC Beeper" +msgstr "PC-pipare" + +#: src/gui/settings.cpp:4047 +msgid "Lynx" +msgstr "Lynx" + +#: src/gui/settings.cpp:4049 +msgid "X1-010" +msgstr "X1-010" + +#: src/gui/settings.cpp:4050 +msgid "ES5506" +msgstr "ES5506" + +#: src/gui/settings.cpp:4053 +msgid "Sound Unit" +msgstr "Sound Unit" + +#: src/gui/settings.cpp:4055 +msgid "FM (OPL Drums)" +msgstr "FM (OPL Drums)" + +#: src/gui/settings.cpp:4056 +msgid "FM (OPM)" +msgstr "FM (OPM)" + +#: src/gui/settings.cpp:4057 +msgid "NES" +msgstr "NES" + +#: src/gui/settings.cpp:4058 +msgid "MSM6258" +msgstr "MSM6258" + +#: src/gui/settings.cpp:4059 +msgid "MSM6295" +msgstr "MSM6295" + +#: src/gui/settings.cpp:4060 +msgid "ADPCM-A" +msgstr "ADPCM-A" + +#: src/gui/settings.cpp:4062 +msgid "Sega PCM" +msgstr "SegaPCM" + +#: src/gui/settings.cpp:4063 +msgid "QSound" +msgstr "QSound" + +#: src/gui/settings.cpp:4064 +msgid "YMZ280B" +msgstr "YMZ280B" + +#: src/gui/settings.cpp:4065 +msgid "RF5C68" +msgstr "RF5C68" + +#: src/gui/settings.cpp:4066 +msgid "MSM5232" +msgstr "MSM5232" + +#: src/gui/settings.cpp:4067 +msgid "K007232" +msgstr "K007232" + +#: src/gui/settings.cpp:4068 +msgid "GA20" +msgstr "GA20" + +#: src/gui/settings.cpp:4070 +msgid "SM8521" +msgstr "SM8521" + +#: src/gui/settings.cpp:4071 +msgid "PV-1000" +msgstr "PV-1000" + +#: src/gui/settings.cpp:4072 +msgid "K053260" +msgstr "K053260" + +#: src/gui/settings.cpp:4073 +msgid "TED" +msgstr "TED" + +#: src/gui/settings.cpp:4074 +msgid "C140" +msgstr "C140" + +#: src/gui/settings.cpp:4075 +msgid "C219" +msgstr "C219" + +#: src/gui/settings.cpp:4076 +msgid "ESFM" +msgstr "ESFM" + +#: src/gui/settings.cpp:4077 src/gui/guiConst.cpp:179 +msgid "PowerNoise (noise)" +msgstr "PowerNoise (brus)" + +#: src/gui/settings.cpp:4078 src/gui/guiConst.cpp:180 +msgid "PowerNoise (slope)" +msgstr "PowerNoise (lutningskanal)" + +#: src/gui/settings.cpp:4081 +msgid "GBA DMA" +msgstr "GBA DMA" + +#: src/gui/settings.cpp:4082 +msgid "GBA MinMod" +msgstr "GBA MinMod" + +#: src/gui/settings.cpp:4085 +msgid "Other/Unknown" +msgstr "Annat/Okänt" + +#: src/gui/settings.cpp:4089 +msgid "Single color (background)" +msgstr "Enfärgad (bakgrund)" + +#: src/gui/settings.cpp:4090 +msgid "Single color (text)" +msgstr "Enfärgad (text)" + +#: src/gui/settings.cpp:4091 src/gui/guiConst.cpp:1393 src/gui/waveEdit.cpp:668 +msgid "FM" +msgstr "FM" + +#: src/gui/settings.cpp:4096 +msgid "FM operator" +msgstr "FM-operator" + +#: src/gui/settings.cpp:4097 +msgid "Muted" +msgstr "Dämpad" + +#: src/gui/settings.cpp:4101 +msgid "Playhead" +msgstr "Huvudspelare" + +#: src/gui/settings.cpp:4102 +msgid "Editing" +msgstr "Redigering" + +#: src/gui/settings.cpp:4103 +msgid "Editing (will clone)" +msgstr "Redigering (kommer att klonas)" + +#: src/gui/settings.cpp:4104 +msgid "Cursor" +msgstr "Markör" + +#: src/gui/settings.cpp:4105 +msgid "Cursor (hovered)" +msgstr "Markör (svävande)" + +#: src/gui/settings.cpp:4106 +msgid "Cursor (clicked)" +msgstr "Markör (klickade)" + +#: src/gui/settings.cpp:4107 src/gui/settings.cpp:4172 +#: src/gui/findReplace.cpp:791 +msgid "Selection" +msgstr "Urval" + +#: src/gui/settings.cpp:4108 +msgid "Selection (hovered)" +msgstr "Urval (svävade)" + +#: src/gui/settings.cpp:4109 +msgid "Selection (clicked)" +msgstr "Urval (klickade)" + +#: src/gui/settings.cpp:4110 +msgid "Highlight 1" +msgstr "Markering 1" + +#: src/gui/settings.cpp:4111 +msgid "Highlight 2" +msgstr "Markering 2" + +#: src/gui/settings.cpp:4112 +msgid "Row number" +msgstr "Radnummer" + +#: src/gui/settings.cpp:4113 +msgid "Row number (highlight 1)" +msgstr "Radnummer (markering 1)" + +#: src/gui/settings.cpp:4114 +msgid "Row number (highlight 2)" +msgstr "Radnummer (markering 2)" + +#: src/gui/settings.cpp:4116 +msgid "Note (highlight 1)" +msgstr "Not (markering 1)" + +#: src/gui/settings.cpp:4117 +msgid "Note (highlight 2)" +msgstr "Not (markering 2)" + +#: src/gui/settings.cpp:4118 +msgid "Blank" +msgstr "Tom" + +#: src/gui/settings.cpp:4119 +msgid "Blank (highlight 1)" +msgstr "Tom (markering 1)" + +#: src/gui/settings.cpp:4120 +msgid "Blank (highlight 2)" +msgstr "Tom (markering 2)" + +#: src/gui/settings.cpp:4122 +msgid "Instrument (invalid type)" +msgstr "Instrument (ogiltig typ)" + +#: src/gui/settings.cpp:4123 +msgid "Instrument (out of range)" +msgstr "Instrument (utanför intervallet)" + +#: src/gui/settings.cpp:4124 +msgid "Volume (0%)" +msgstr "Volym (0%)" + +#: src/gui/settings.cpp:4125 +msgid "Volume (50%)" +msgstr "Volym (50%)" + +#: src/gui/settings.cpp:4126 +msgid "Volume (100%)" +msgstr "Volym (100%)" + +#: src/gui/settings.cpp:4128 +msgid "Pitch effect" +msgstr "Tonhöjdseffekt" + +#: src/gui/settings.cpp:4129 +msgid "Volume effect" +msgstr "Volymeffekt" + +#: src/gui/settings.cpp:4130 +msgid "Panning effect" +msgstr "Panoreringseffekt" + +#: src/gui/settings.cpp:4131 +msgid "Song effect" +msgstr "Låteffekt" + +#: src/gui/settings.cpp:4132 +msgid "Time effect" +msgstr "Tidseffekt" + +#: src/gui/settings.cpp:4133 +msgid "Speed effect" +msgstr "Hastighetseffekt" + +#: src/gui/settings.cpp:4134 +msgid "Primary specific effect" +msgstr "Primär särskild effekt" + +#: src/gui/settings.cpp:4135 +msgid "Secondary specific effect" +msgstr "Sekundär särskild effekt" + +#: src/gui/settings.cpp:4137 +msgid "External command output" +msgstr "Extern kommandoutgång" + +#: src/gui/settings.cpp:4138 +msgid "Status: off/disabled" +msgstr "Status: av/inaktiverad" + +#: src/gui/settings.cpp:4139 +msgid "Status: off + macro rel" +msgstr "Status: av + makro-rel" + +#: src/gui/settings.cpp:4140 +msgid "Status: on + macro rel" +msgstr "Status: på + makro-rel" + +#: src/gui/settings.cpp:4141 +msgid "Status: on" +msgstr "Status: på" + +#: src/gui/settings.cpp:4142 +msgid "Status: volume" +msgstr "Status: volym" + +#: src/gui/settings.cpp:4143 +msgid "Status: pitch" +msgstr "Status: tonhöjd" + +#: src/gui/settings.cpp:4144 +msgid "Status: panning" +msgstr "Status: panorering" + +#: src/gui/settings.cpp:4145 +msgid "Status: chip (primary)" +msgstr "Status: chip (primärt)" + +#: src/gui/settings.cpp:4146 +msgid "Status: chip (secondary)" +msgstr "Status: chip (sekundärt)" + +#: src/gui/settings.cpp:4147 +msgid "Status: mixing" +msgstr "Status: mixning" + +#: src/gui/settings.cpp:4148 +msgid "Status: DSP effect" +msgstr "Status: DSP-effekt" + +#: src/gui/settings.cpp:4149 +msgid "Status: note altering" +msgstr "Status: notändring" + +#: src/gui/settings.cpp:4150 +msgid "Status: misc color 1" +msgstr "Status: diverse färg 1" + +#: src/gui/settings.cpp:4151 +msgid "Status: misc color 2" +msgstr "Status: diverse färg 2" + +#: src/gui/settings.cpp:4152 +msgid "Status: misc color 3" +msgstr "Status: diverse färg 3" + +#: src/gui/settings.cpp:4153 +msgid "Status: attack" +msgstr "Status: attack" + +#: src/gui/settings.cpp:4154 +msgid "Status: decay" +msgstr "Status: decay" + +#: src/gui/settings.cpp:4155 +msgid "Status: sustain" +msgstr "Status: sustain" + +#: src/gui/settings.cpp:4156 +msgid "Status: release" +msgstr "Status: release" + +#: src/gui/settings.cpp:4157 +msgid "Status: decrease linear" +msgstr "Status: minska linjärt" + +#: src/gui/settings.cpp:4158 +msgid "Status: decrease exp" +msgstr "Status: minskning av exp." + +#: src/gui/settings.cpp:4159 +msgid "Status: increase" +msgstr "Status: ökning" + +#: src/gui/settings.cpp:4160 +msgid "Status: bent" +msgstr "Status: böjd" + +#: src/gui/settings.cpp:4161 +msgid "Status: direct" +msgstr "Status: direkt" + +#: src/gui/settings.cpp:4164 src/gui/guiConst.cpp:586 src/gui/sampleEdit.cpp:96 +msgid "Sample Editor" +msgstr "Sampleredigerare" + +#: src/gui/settings.cpp:4167 +msgid "Time background" +msgstr "Tidsbakgrund" + +#: src/gui/settings.cpp:4168 +msgid "Time text" +msgstr "Tidstext" + +#: src/gui/settings.cpp:4169 +msgid "Loop region" +msgstr "Loopregion" + +#: src/gui/settings.cpp:4170 +msgid "Center guide" +msgstr "Centera guiden" + +#: src/gui/settings.cpp:4171 +msgid "Grid" +msgstr "Rutnät" + +#: src/gui/settings.cpp:4173 +msgid "Selection points" +msgstr "Urvalspunkter" + +#: src/gui/settings.cpp:4174 +msgid "Preview needle" +msgstr "Förhandsgranska nålen" + +#: src/gui/settings.cpp:4175 +msgid "Playing needles" +msgstr "Spelar nålar" + +#: src/gui/settings.cpp:4176 +msgid "Loop markers" +msgstr "Loopmarkörer" + +#: src/gui/settings.cpp:4177 +msgid "Chip select: disabled" +msgstr "Chipurval: inaktiverat" + +#: src/gui/settings.cpp:4178 +msgid "Chip select: enabled" +msgstr "Chipurval: aktiverat" + +#: src/gui/settings.cpp:4179 +msgid "Chip select: enabled (failure)" +msgstr "Chipurval: aktiverat (fel)" + +#: src/gui/settings.cpp:4182 src/gui/guiConst.cpp:602 src/gui/patManager.cpp:35 +msgid "Pattern Manager" +msgstr "Mönsterhanterare" + +#: src/gui/settings.cpp:4183 +msgid "Unallocated" +msgstr "Ofördelat" + +#: src/gui/settings.cpp:4184 +msgid "Unused" +msgstr "Oanvänd" + +#: src/gui/settings.cpp:4185 +msgid "Used" +msgstr "Använd" + +#: src/gui/settings.cpp:4186 +msgid "Overused" +msgstr "Överanvänd" + +#: src/gui/settings.cpp:4187 +msgid "Really overused" +msgstr "Riktigt överanvänd" + +#: src/gui/settings.cpp:4188 +msgid "Combo Breaker" +msgstr "Combo-brytare" + +#: src/gui/settings.cpp:4191 src/gui/guiConst.cpp:599 src/gui/piano.cpp:63 +msgid "Piano" +msgstr "Piano" + +#: src/gui/settings.cpp:4193 +msgid "Upper key" +msgstr "Övre tangent" + +#: src/gui/settings.cpp:4194 +msgid "Upper key (feedback)" +msgstr "Övre tangent (återkoppling)" + +#: src/gui/settings.cpp:4195 +msgid "Upper key (pressed)" +msgstr "Övre tangent (tryckt)" + +#: src/gui/settings.cpp:4196 +msgid "Lower key" +msgstr "Nedre tangent" + +#: src/gui/settings.cpp:4197 +msgid "Lower key (feedback)" +msgstr "Nedre tangent (återkoppling)" + +#: src/gui/settings.cpp:4198 +msgid "Lower key (pressed)" +msgstr "Nedre tangent (tryckt)" + +#: src/gui/settings.cpp:4201 src/gui/clock.cpp:31 src/gui/guiConst.cpp:610 +msgid "Clock" +msgstr "Klocka" + +#: src/gui/settings.cpp:4202 +msgid "Clock text" +msgstr "Klocktext" + +#: src/gui/settings.cpp:4203 +msgid "Beat (off)" +msgstr "Takt (av)" + +#: src/gui/settings.cpp:4204 +msgid "Beat (on)" +msgstr "Takt (på)" + +#: src/gui/settings.cpp:4209 +msgid "PortSet" +msgstr "Port-ställ" + +#: src/gui/settings.cpp:4210 +msgid "Port" +msgstr "Port" + +#: src/gui/settings.cpp:4211 +msgid "Port (hidden/unavailable)" +msgstr "Port (dold/ej tillgänglig)" + +#: src/gui/settings.cpp:4212 +msgid "Connection (selected)" +msgstr "Anslutning (vald)" + +#: src/gui/settings.cpp:4213 +msgid "Connection (other)" +msgstr "Anslutning (annan)" + +#: src/gui/settings.cpp:4219 +msgid "Waveform data" +msgstr "Vågformsdata" + +#: src/gui/settings.cpp:4222 +msgid "Reserved" +msgstr "Reserverad" + +#: src/gui/settings.cpp:4224 +msgid "Sample (alternate 1)" +msgstr "Sample (alternativ 1)" + +#: src/gui/settings.cpp:4225 +msgid "Sample (alternate 2)" +msgstr "Sample (alternativ 2)" + +#: src/gui/settings.cpp:4226 +msgid "Sample (alternate 3)" +msgstr "Sample (alternativ 3)" + +#: src/gui/settings.cpp:4227 +msgid "Wave RAM" +msgstr "Våg-RAM" + +#: src/gui/settings.cpp:4228 +msgid "Wavetable (static)" +msgstr "Wavetable (statisk)" + +#: src/gui/settings.cpp:4229 +msgid "Echo buffer" +msgstr "Ekobuffert" + +#: src/gui/settings.cpp:4230 +msgid "Namco 163 load pos" +msgstr "Namco 163 spelpos." + +#: src/gui/settings.cpp:4231 +msgid "Namco 163 play pos" +msgstr "Namco 163 spelpos." + +#: src/gui/settings.cpp:4232 +msgid "Sample (bank 0)" +msgstr "Sample (bank 0)" + +#: src/gui/settings.cpp:4233 +msgid "Sample (bank 1)" +msgstr "Sample (bank 1)" + +#: src/gui/settings.cpp:4234 +msgid "Sample (bank 2)" +msgstr "Sample (bank 2)" + +#: src/gui/settings.cpp:4235 +msgid "Sample (bank 3)" +msgstr "Sample (bank 3)" + +#: src/gui/settings.cpp:4236 +msgid "Sample (bank 4)" +msgstr "Sample (bank 4)" + +#: src/gui/settings.cpp:4237 +msgid "Sample (bank 5)" +msgstr "Sample (bank 5)" + +#: src/gui/settings.cpp:4238 +msgid "Sample (bank 6)" +msgstr "Sample (bank 6)" + +#: src/gui/settings.cpp:4239 +msgid "Sample (bank 7)" +msgstr "Sample (bank 7)" + +#: src/gui/settings.cpp:4244 +msgid "Log level: Error" +msgstr "Loggnivå: Fel" + +#: src/gui/settings.cpp:4245 +msgid "Log level: Warning" +msgstr "Loggnivå: Varning" + +#: src/gui/settings.cpp:4246 +msgid "Log level: Info" +msgstr "Loggnivå: Info" + +#: src/gui/settings.cpp:4247 +msgid "Log level: Debug" +msgstr "Loggnivå: Felsökning" + +#: src/gui/settings.cpp:4248 +msgid "Log level: Trace/Verbose" +msgstr "Loggnivå: Spåra/Mångordig" + +#: src/gui/settings.cpp:4253 +msgid "Backup" +msgstr "Säkerhetskopiering" + +#: src/gui/settings.cpp:4258 +msgid "Enable backup system" +msgstr "Aktivera säkerhetskopieringssystem" + +#: src/gui/settings.cpp:4263 +msgid "Interval (in seconds)" +msgstr "Intervall (i sekunder)" + +#: src/gui/settings.cpp:4268 +msgid "Backups per file" +msgstr "Säkerhetskopiering per fil" + +#: src/gui/settings.cpp:4274 +msgid "Backup Management" +msgstr "Säkerhetskopieringshantering" + +#: src/gui/settings.cpp:4278 +msgid "Purge before:" +msgstr "Rensa innan:" + +#: src/gui/settings.cpp:4352 +msgid "Go##PDate" +msgstr "Gå" + +#: src/gui/settings.cpp:4359 +#, c-format +msgid "%PB used" +msgstr "%PB använd" + +#: src/gui/settings.cpp:4361 +#, c-format +msgid "%TB used" +msgstr "%TB använd" + +#: src/gui/settings.cpp:4363 +#, c-format +msgid "%GB used" +msgstr "%GB använd" + +#: src/gui/settings.cpp:4365 +#, c-format +msgid "%MB used" +msgstr "%MB använd" + +#: src/gui/settings.cpp:4367 +#, c-format +msgid "%KB used" +msgstr "%KB använd" + +#: src/gui/settings.cpp:4369 +#, c-format +msgid "% bytes used" +msgstr "% bytes använd" + +#: src/gui/settings.cpp:4374 +msgid "Refresh" +msgstr "Uppdatera" + +#: src/gui/settings.cpp:4378 +msgid "Delete all" +msgstr "Radera allt" + +#: src/gui/settings.cpp:4384 src/gui/settings.cpp:6688 +msgid "Size" +msgstr "Storlek" + +#: src/gui/settings.cpp:4385 +msgid "Latest" +msgstr "Senast" + +#: src/gui/settings.cpp:4395 +#, c-format +msgid "%P" +msgstr "%P" + +#: src/gui/settings.cpp:4397 +#, c-format +msgid "%T" +msgstr "%T" + +#: src/gui/settings.cpp:4399 +#, c-format +msgid "%G" +msgstr "%G" + +#: src/gui/settings.cpp:4401 +#, c-format +msgid "%M" +msgstr "%M" + +#: src/gui/settings.cpp:4403 +#, c-format +msgid "%K" +msgstr "%K" + +#: src/gui/settings.cpp:4405 +#, c-format +msgid "%" +msgstr "%" + +#: src/gui/settings.cpp:4529 +msgid "Cheat Codes" +msgstr "Fuskkoder" + +#: src/gui/settings.cpp:4531 +msgid "Enter code:" +msgstr "Ange kod:" + +#: src/gui/settings.cpp:4533 +msgid "Submit" +msgstr "Skicka in" + +#: src/gui/settings.cpp:4537 +msgid "invalid code" +msgstr "ogiltig kod" + +#: src/gui/settings.cpp:4547 +msgid "toggled alternate UI" +msgstr "växlat alternativt användargränssnitt" + +#: src/gui/settings.cpp:4551 +msgid ":smile: :star_struck: :sunglasses: :ok_hand:" +msgstr ":le: :stjärnglans: :solglasögon: :ok_hand:" + +#: src/gui/settings.cpp:4555 +msgid "enabled all instrument types" +msgstr "aktiverat alla instrumenttyper" + +#: src/gui/settings.cpp:4559 +msgid "OK, if I bring your Partial pitch linearity will you stop bothering me?" +msgstr "" +"OK, om jag tar med din partiella tonhöjdslinjäritet slutar du störa mig?" + +#: src/gui/settings.cpp:4563 +msgid "unlocked audio multi-threading options!" +msgstr "Upplåste multitrådsalternativ för ljud!" + +#: src/gui/settings.cpp:4567 +msgid "enabled \"comfortable\" mode" +msgstr "aktiverat \"bekvämt\" läge" + +#: src/gui/settings.cpp:4585 +msgid "OK##SettingsOK" +msgstr "OK" + +#: src/gui/settings.cpp:4591 +msgid "Cancel##SettingsCancel" +msgstr "Avbryta" + +#: src/gui/settings.cpp:4599 +msgid "Apply##SettingsApply" +msgstr "Tillämpa" + +#: src/gui/settings.cpp:5673 +msgid "could not initialize audio!" +msgstr "kunde inte starta ljudet!" + +#: src/gui/settings.cpp:5683 src/gui/gui.cpp:4067 src/gui/gui.cpp:6662 +#: src/gui/gui.cpp:7088 +msgid "error while loading fonts! please check your settings." +msgstr "fel när teckensnitt laddas! kontrollera dina inställningar." + +#: src/gui/settings.cpp:5862 +#, c-format +msgid "error while loading config! (%s)" +msgstr "fel vid laddning av konfig! (%s)" + +#: src/gui/settings.cpp:6675 +msgid "[Dir]" +msgstr "" + +#: src/gui/settings.cpp:6676 +msgid "[Link]" +msgstr "" + +#: src/gui/settings.cpp:6677 +#, fuzzy +msgid "[File]" +msgstr "Filen" + +#: src/gui/settings.cpp:6678 +#, fuzzy +msgid "Name:" +msgstr "Namn" + +#: src/gui/settings.cpp:6679 +msgid "Path:" +msgstr "" + +#: src/gui/settings.cpp:6680 +#, fuzzy +msgid "Reset search" +msgstr "Återställ standardinställningar" + +#: src/gui/settings.cpp:6681 +#, fuzzy +msgid "Drives" +msgstr "Drivrutin" + +#: src/gui/settings.cpp:6682 +msgid "" +"Edit path\n" +"You can also right click on path buttons" +msgstr "" + +#: src/gui/settings.cpp:6683 +#, fuzzy +msgid "Go to home directory" +msgstr "Gå till nästa order" + +#: src/gui/settings.cpp:6684 +#, fuzzy +msgid "Go to parent directory" +msgstr "öppna den inbyggda tillgångskatalogen" + +#: src/gui/settings.cpp:6685 +#, fuzzy +msgid "Create Directory" +msgstr "Katalog" + +#: src/gui/settings.cpp:6686 +#, fuzzy +msgid "File name" +msgstr "samplenamn" + +#: src/gui/settings.cpp:6689 +#, fuzzy +msgid "Date" +msgstr "Gå" + +#: src/gui/settings.cpp:6690 src/gui/gui.cpp:5510 src/gui/gui.cpp:5645 +#: src/gui/gui.cpp:5646 +msgid "Warning" +msgstr "Varning" + +#: src/gui/settings.cpp:6691 +msgid "The file you selected already exists! Would you like to overwrite it?" +msgstr "" + +#: src/gui/settings.cpp:6692 src/gui/gui.cpp:5650 src/gui/gui.cpp:5674 +#: src/gui/gui.cpp:5698 src/gui/gui.cpp:5722 src/gui/gui.cpp:5746 +#: src/gui/gui.cpp:5770 src/gui/gui.cpp:5802 src/gui/gui.cpp:5818 +#: src/gui/gui.cpp:5829 src/gui/gui.cpp:5841 src/gui/gui.cpp:5995 +#: src/gui/gui.cpp:6017 src/gui/gui.cpp:6032 src/gui/gui.cpp:6043 +msgid "Yes" +msgstr "Ja" + +#: src/gui/settings.cpp:6693 src/gui/findReplace.cpp:828 src/gui/gui.cpp:5664 +#: src/gui/gui.cpp:5688 src/gui/gui.cpp:5712 src/gui/gui.cpp:5736 +#: src/gui/gui.cpp:5760 src/gui/gui.cpp:5788 src/gui/gui.cpp:5813 +#: src/gui/gui.cpp:5824 src/gui/gui.cpp:5836 src/gui/gui.cpp:5848 +#: src/gui/gui.cpp:6012 src/gui/gui.cpp:6027 src/gui/gui.cpp:6037 +#: src/gui/gui.cpp:6050 +msgid "No" +msgstr "Nej" + +#: src/gui/settings.cpp:6694 +msgid "%Y/%m/%d %H:%M" +msgstr "" + +#: src/gui/orders.cpp:114 +msgid "Add new order" +msgstr "Lägg till ny order" + +#: src/gui/orders.cpp:125 src/gui/guiConst.cpp:794 +msgid "Remove order" +msgstr "Ta bort order" + +#: src/gui/orders.cpp:137 +msgid "Duplicate order (right-click to deep clone)" +msgstr "Duplicera order (högerklicka för att djupklona)" + +#: src/gui/orders.cpp:146 src/gui/guiConst.cpp:795 +msgid "Move order up" +msgstr "Flytta order upp" + +#: src/gui/orders.cpp:155 src/gui/guiConst.cpp:796 +msgid "Move order down" +msgstr "Flytta order ner" + +#: src/gui/orders.cpp:167 +msgid "Place copy of current order at end of song (right-click to deep clone)" +msgstr "" +"Placera en kopia av aktuell order på slutet av låten (högerklicka för att " +"klona djupt)" + +#: src/gui/orders.cpp:177 +msgid "Order change mode: entire row" +msgstr "Orderändringsläge: hela raden" + +#: src/gui/orders.cpp:179 +msgid "Order change mode: one" +msgstr "Orderändringsläge: en" + +#: src/gui/orders.cpp:205 +msgid "Order edit mode: Select and type (scroll vertically)" +msgstr "Orderredigeringsläge: Välj och skriv (rulla vertikalt)" + +#: src/gui/orders.cpp:207 +msgid "Order edit mode: Select and type (scroll horizontally)" +msgstr "Orderredigeringsläge: Välj och skriv (rulla horisontellt)" + +#: src/gui/orders.cpp:209 +msgid "Order edit mode: Select and type (don't scroll)" +msgstr "Orderredigeringsläge: Välj och skriv (rulla ej)" + +#: src/gui/orders.cpp:211 +msgid "Order edit mode: Click to change" +msgstr "Orderredigeringsläge: Klicka för att ändra" + +#: src/gui/findReplace.cpp:29 +msgid "ignore" +msgstr "ignorera" + +#: src/gui/findReplace.cpp:30 +msgid "equals" +msgstr "lika" + +#: src/gui/findReplace.cpp:31 +msgid "not equal" +msgstr "ej lika" + +#: src/gui/findReplace.cpp:32 +msgid "between" +msgstr "mellan" + +#: src/gui/findReplace.cpp:33 +msgid "not between" +msgstr "ej mellan" + +#: src/gui/findReplace.cpp:34 +msgid "any" +msgstr "alla" + +#: src/gui/findReplace.cpp:35 src/gui/guiConst.cpp:217 +msgid "none" +msgstr "inga" + +#: src/gui/findReplace.cpp:39 +msgid "set" +msgstr "ställ in" + +#: src/gui/findReplace.cpp:40 +msgid "add" +msgstr "lägg till" + +#: src/gui/findReplace.cpp:41 +msgid "add (overflow)" +msgstr "lägg till (översvämning)" + +#: src/gui/findReplace.cpp:42 +msgid "scale %" +msgstr "skala %" + +#: src/gui/findReplace.cpp:512 src/gui/guiConst.cpp:609 +msgid "Find/Replace" +msgstr "Hitta/Ersätta" + +#: src/gui/findReplace.cpp:520 src/gui/findReplace.cpp:850 +msgid "Find" +msgstr "Hitta" + +#: src/gui/findReplace.cpp:526 src/gui/findReplace.cpp:535 +msgid "order" +msgstr "order" + +#: src/gui/findReplace.cpp:527 src/gui/findReplace.cpp:537 +msgid "row" +msgstr "rad" + +#: src/gui/findReplace.cpp:539 src/gui/csPlayer.cpp:146 +msgid "channel" +msgstr "kanal" + +#: src/gui/findReplace.cpp:541 +msgid "go" +msgstr "gå" + +#: src/gui/findReplace.cpp:585 +msgid "no matches found!" +msgstr "inga matchningar hittas!" + +#: src/gui/findReplace.cpp:587 +msgid "Back" +msgstr "Tillbaka" + +#: src/gui/findReplace.cpp:750 +msgid "Delete query" +msgstr "Ta bort fråga" + +#: src/gui/findReplace.cpp:754 src/gui/findReplace.cpp:1037 +msgid "Add effect" +msgstr "Lägg till effekt" + +#: src/gui/findReplace.cpp:761 src/gui/findReplace.cpp:1044 +msgid "Remove effect" +msgstr "Ta bort effekten" + +#: src/gui/findReplace.cpp:786 +msgid "Search range:" +msgstr "Sökintervall:" + +#: src/gui/findReplace.cpp:799 +msgid "Confine to channels" +msgstr "Begränsa till kanaler" + +#: src/gui/findReplace.cpp:803 src/gui/sampleEdit.cpp:1152 +msgid "From" +msgstr "Från" + +#: src/gui/findReplace.cpp:814 src/gui/sampleEdit.cpp:1156 +msgid "To" +msgstr "Till" + +#: src/gui/findReplace.cpp:826 +msgid "Match effect position:" +msgstr "Matcha effektposition:" + +#: src/gui/findReplace.cpp:832 +msgid "match effects regardless of position." +msgstr "matcha effekter oavsett position." + +#: src/gui/findReplace.cpp:834 src/gui/compatFlags.cpp:288 +msgid "Lax" +msgstr "Lax" + +#: src/gui/findReplace.cpp:838 +msgid "match effects only if they appear in-order." +msgstr "matcha effekter endast om de visas i ordning." + +#: src/gui/findReplace.cpp:840 src/gui/compatFlags.cpp:276 +msgid "Strict" +msgstr "Sträng" + +#: src/gui/findReplace.cpp:844 +msgid "match effects only if they appear exactly as specified." +msgstr "matcha effekter endast om de visas exakt enligt specifikationen." + +#: src/gui/findReplace.cpp:856 +msgid "Replace" +msgstr "Ersätta" + +#: src/gui/findReplace.cpp:908 +msgid "INVALID" +msgstr "OGILTIG" + +#: src/gui/findReplace.cpp:1052 +msgid "Effect replace mode:" +msgstr "Ersättningsläge för effekter:" + +#: src/gui/findReplace.cpp:1053 +msgid "Replace matches only" +msgstr "Ersätt endast matchningar" + +#: src/gui/findReplace.cpp:1056 +msgid "Replace matches, then free spaces" +msgstr "Ersätt matchningar, sedan lediga utrymmen" + +#: src/gui/findReplace.cpp:1059 +msgid "Clear effects" +msgstr "Rensa effekter" + +#: src/gui/findReplace.cpp:1062 +msgid "Insert in free spaces" +msgstr "Infoga i lediga utrymmen" + +#: src/gui/findReplace.cpp:1065 +msgid "Replace##QueryReplace" +msgstr "Ersätta" + +#: src/gui/about.cpp:26 +msgid "is proud to present" +msgstr "är stolt över att kunna presentera" + +#: src/gui/about.cpp:30 +msgid "the biggest multi-system chiptune tracker!" +msgstr "den största multisystem chiptune-tracker!" + +#: src/gui/about.cpp:31 +msgid "featuring DefleMask song compatibility." +msgstr "med DefleMask låtkompatibilitet." + +#: src/gui/about.cpp:33 +msgid "> CREDITS <" +msgstr "> KREDITER <" + +#: src/gui/about.cpp:35 +msgid "-- program --" +msgstr "-- program --" + +#: src/gui/about.cpp:37 +msgid "A M 4 N (intro tune)" +msgstr "A M 4 N (intromelodi)" + +#: src/gui/about.cpp:52 +msgid "-- graphics/UI design --" +msgstr "-- grafik/UI-design --" + +#: src/gui/about.cpp:59 +msgid "-- documentation --" +msgstr "-- dokumentation --" + +#: src/gui/about.cpp:69 +msgid "-- localization/translation team --" +msgstr "" + +#: src/gui/about.cpp:81 +msgid "-- demo songs --" +msgstr "-- demolåtar --" + +#: src/gui/about.cpp:207 +msgid "-- additional feedback/fixes --" +msgstr "-- ytterligare feedback/korrigeringar --" + +#: src/gui/about.cpp:218 +msgid "-- Metal backend test team --" +msgstr "-- Metal backend testteam --" + +#: src/gui/about.cpp:224 +msgid "-- DirectX 9 backend test team --" +msgstr "-- DirectX 9 backend testteam --" + +#: src/gui/about.cpp:231 +msgid "powered by:" +msgstr "drivs av:" + +#: src/gui/about.cpp:232 +msgid "Dear ImGui by Omar Cornut" +msgstr "Dear ImGui av Omar Cornut" + +#: src/gui/about.cpp:233 +msgid "SDL2 by Sam Lantinga" +msgstr "SDL2 av Sam Lantinga" + +#: src/gui/about.cpp:237 +msgid "zlib by Jean-loup Gailly" +msgstr "zlib av Jean-loup Gailly" + +#: src/gui/about.cpp:238 +msgid "and Mark Adler" +msgstr "och Mark Adler" + +#: src/gui/about.cpp:239 +msgid "libsndfile by Erik de Castro Lopo" +msgstr "libsndfile av Erik de Castro Lopo" + +#: src/gui/about.cpp:240 +msgid "Portable File Dialogs by Sam Hocevar" +msgstr "Portable File Dialogs av Sam Hocevar" + +#: src/gui/about.cpp:241 +msgid "Native File Dialog by Frogtoss Games" +msgstr "Native File Dialog av Frogtoss Games" + +#: src/gui/about.cpp:243 +msgid "Weak-JACK by x42" +msgstr "Weak-JACK av x42" + +#: src/gui/about.cpp:244 +msgid "RtMidi by Gary P. Scavone" +msgstr "RtMidi av Gary P. Scavone" + +#: src/gui/about.cpp:245 +msgid "FFTW by Matteo Frigo and Steven G. Johnson" +msgstr "FFTW av Matteo Frigo och Steven G. Johnson" + +#: src/gui/about.cpp:246 +msgid "backward-cpp by Google" +msgstr "backward-cpp av Google" + +#: src/gui/about.cpp:247 +msgid "adpcm by superctr" +msgstr "adpcm av superctr" + +#: src/gui/about.cpp:248 +msgid "adpcm-xq by David Bryant" +msgstr "adpcm-xq av David Bryant" + +#: src/gui/about.cpp:249 +msgid "Nuked-OPL3/OPLL/OPM/OPN2/PSG by nukeykt" +msgstr "Nuked-OPL3/OPLL/OPM/OPN2/PSG av nukeykt" + +#: src/gui/about.cpp:250 +msgid "YM3812-LLE, YMF262-LLE, YMF276-LLE and YM2608-LLE by nukeykt" +msgstr "YM3812-LLE, YMF262-LLE, YMF276-LLE and YM2608-LLE av nukeykt" + +#: src/gui/about.cpp:251 +msgid "ESFMu (modified version) by Kagamiin~" +msgstr "ESFMu (modifierad version) av Kagamiin~" + +#: src/gui/about.cpp:252 +msgid "ymfm by Aaron Giles" +msgstr "ymfm av Aaron Giles" + +#: src/gui/about.cpp:253 +msgid "emu2413 by Digital Sound Antiques" +msgstr "emu2413 av Digital Sound Antiques" + +#: src/gui/about.cpp:254 +msgid "MAME SN76496 by Nicola Salmoria" +msgstr "MAME SN76496 av Nicola Salmoria" + +#: src/gui/about.cpp:255 +msgid "MAME AY-3-8910 by Couriersud" +msgstr "MAME AY-3-8910 av Couriersud" + +#: src/gui/about.cpp:256 +msgid "with AY8930 fixes by Eulous, cam900 and Grauw" +msgstr "med AY8930 fixar av Eulous, cam900 och Grauw" + +#: src/gui/about.cpp:257 +msgid "MAME SAA1099 by Juergen Buchmueller and Manuel Abadia" +msgstr "MAME SAA1099 av Jürgen Buchmueller och Manuel Abadia" + +#: src/gui/about.cpp:258 +msgid "MAME Namco WSG by Nicola Salmoria and Aaron Giles" +msgstr "MAME Namco WSG av Nicola Salmoria och Aaron Giles" + +#: src/gui/about.cpp:259 +msgid "MAME RF5C68 core by Olivier Galibert and Aaron Giles" +msgstr "MAME RF5C68-kärnan av Olivier Galibert och Aaron Giles" + +#: src/gui/about.cpp:260 +msgid "MAME MSM5232 core by Jarek Burczynski and Hiromitsu Shioya" +msgstr "MAME MSM5232-kärnan av Jarek Burczynski och Hiromitsu Shioya" + +#: src/gui/about.cpp:261 +msgid "MAME MSM6258 core by Barry Rodewald" +msgstr "MAME MSM6258-kärnan av Barry Rodewald" + +#: src/gui/about.cpp:262 +msgid "MAME YMZ280B core by Aaron Giles" +msgstr "MAME YMZ280B-kärnan av Aaron Giles" + +#: src/gui/about.cpp:263 +msgid "MAME GA20 core by Acho A. Tang and R. Belmont" +msgstr "MAME GA20-kärnan av Acho A. Tang och R. Belmont" + +#: src/gui/about.cpp:264 +msgid "MAME SegaPCM core by Hiromitsu Shioya and Olivier Galibert" +msgstr "MAME SegaPCM-kärnan av Hiromitsu Shioya och Olivier Galibert" + +#: src/gui/about.cpp:265 +msgid "SAASound by Dave Hooper and Simon Owen" +msgstr "SAASound av Dave Hooper och Simon Owen" + +#: src/gui/about.cpp:266 +msgid "SameBoy by Lior Halphon" +msgstr "SameBoy av Lior Halphon" + +#: src/gui/about.cpp:267 +msgid "Mednafen PCE, WonderSwan, T6W28 and Virtual Boy audio cores" +msgstr "Ljudkärnor för Mednafen PCE, WonderSwan, T6W28 och Virtual Boy" + +#: src/gui/about.cpp:268 +msgid "SNES DSP core by Blargg" +msgstr "SNES DSP-kärnan av Blargg" + +#: src/gui/about.cpp:269 +msgid "puNES (NES, MMC5 and FDS) by FHorse" +msgstr "puNES (NES, MMC5 och FDS) av FHorse" + +#: src/gui/about.cpp:270 +msgid "NSFPlay (NES and FDS) by Brad Smith and Brezza" +msgstr "NSFPlay (NES och FDS) av Brad Smith och Brezza" + +#: src/gui/about.cpp:271 +msgid "reSID by Dag Lem" +msgstr "reSID av Dag Lem" + +#: src/gui/about.cpp:272 +msgid "reSIDfp by Dag Lem, Antti Lankila" +msgstr "reSIDfp av Dag Lem, Antti Lankila" + +#: src/gui/about.cpp:273 +msgid "and Leandro Nini" +msgstr "och Leandro Nini" + +#: src/gui/about.cpp:274 +msgid "dSID by DefleMask Team based on jsSID" +msgstr "dSID av DefleMask Team baserat på jsSID" + +#: src/gui/about.cpp:275 +msgid "Stella by Stella Team" +msgstr "Stella av Stella Team" + +#: src/gui/about.cpp:276 +msgid "QSound emulator by superctr and Valley Bell" +msgstr "QSound-emulator av superctr och Valley Bell" + +#: src/gui/about.cpp:277 +msgid "VICE VIC-20 sound core by Rami Rasanen and viznut" +msgstr "VICE VIC-20 ljudkärna av Rami Rasanen och viznut" + +#: src/gui/about.cpp:278 +msgid "VICE TED sound core by Andreas Boose, Tibor Biczo" +msgstr "VICE TED ljudkärna av Andreas Boose, Tibor Biczo" + +#: src/gui/about.cpp:279 +msgid "and Marco van den Heuvel" +msgstr "och Marco van den Heuvel" + +#: src/gui/about.cpp:280 +msgid "VERA sound core by Frank van den Hoef" +msgstr "VERA-ljudkärna av Frank van den Hoef" + +#: src/gui/about.cpp:281 +msgid "mzpokeysnd POKEY emulator by Michael Borisov" +msgstr "mzpokeysnd POKEY-emulator av Michael Borisov" + +#: src/gui/about.cpp:282 +msgid "ASAP POKEY emulator by Piotr Fusik" +msgstr "ASAP POKEY-emulator av Piotr Fusik" + +#: src/gui/about.cpp:283 +msgid "ported by laoo to C++" +msgstr "portad av laoo till C++" + +#: src/gui/about.cpp:284 +msgid "vgsound_emu (second version, modified version) by cam900" +msgstr "vgsound_emu (andra versionen, modifierad version) av cam900" + +#: src/gui/about.cpp:285 +msgid "SM8521 emulator (modified version) by cam900" +msgstr "SM8521-emulator (modifierad version) av cam900" + +#: src/gui/about.cpp:286 +msgid "D65010G031 emulator (modified version) by cam900" +msgstr "D65010G031-emulator (modifierad version) av cam900" + +#: src/gui/about.cpp:287 +msgid "Namco C140/C219 emulator (modified version) by cam900" +msgstr "Namco C140/C219-emulator (modifierad version) av cam900" + +#: src/gui/about.cpp:288 +msgid "PowerNoise emulator by scratchminer" +msgstr "PowerNoise-emulator av scratchminer" + +#: src/gui/about.cpp:289 +msgid "ep128emu by Istvan Varga" +msgstr "ep128emu av Istvan Varga" + +#: src/gui/about.cpp:290 +msgid "NDS sound emulator by cam900" +msgstr "NDS-ljudemulator av cam900" + +#: src/gui/about.cpp:292 +msgid "greetings to:" +msgstr "med vänliga hälsningar till:" + +#: src/gui/about.cpp:295 +msgid "all members of Deflers of Noice!" +msgstr "alla medlemmar i Deflers of Noice!" + +#: src/gui/about.cpp:301 +msgid "copyright © 2021-2024 tildearrow" +msgstr "upphovsrätt © 2021-2024 tildearrow" + +#: src/gui/about.cpp:302 +msgid "(and contributors)." +msgstr "(och medarbetare)." + +#: src/gui/about.cpp:303 +msgid "licensed under GPLv2+! see" +msgstr "licensierad under GPLv2+! se" + +#: src/gui/about.cpp:304 +msgid "LICENSE for more information." +msgstr "LICENSE för ytterligare information." + +#: src/gui/about.cpp:306 +msgid "help Furnace grow:" +msgstr "hjälpa Furnace att växa:" + +#: src/gui/about.cpp:309 +msgid "contact tildearrow at:" +msgstr "kontakta tildearrow på:" + +#: src/gui/about.cpp:312 +msgid "disclaimer:" +msgstr "ansvarsfriskrivning:" + +#: src/gui/about.cpp:313 +msgid "despite the fact this program works" +msgstr "trots att detta program fungerar" + +#: src/gui/about.cpp:314 +msgid "with the .dmf file format, it is NOT" +msgstr "med filformatet .dmf är det INTE" + +#: src/gui/about.cpp:315 +msgid "affiliated with Delek or DefleMask in" +msgstr "associerad med Delek eller DefleMask på" + +#: src/gui/about.cpp:316 +msgid "any way, nor it is a replacement for" +msgstr "något sätt, och det är inte heller en ersättning för" + +#: src/gui/about.cpp:317 +msgid "the original program." +msgstr "det ursprungliga programmet." + +#: src/gui/about.cpp:319 +msgid "it also comes with ABSOLUTELY NO WARRANTY." +msgstr "det kommer också med ABSOLUT INGEN GARANTI." + +#: src/gui/about.cpp:321 +msgid "thanks to all contributors/bug reporters!" +msgstr "tack till alla medarbetare/buggrapportörer!" + +#: src/gui/about.cpp:328 +msgid "About Furnace" +msgstr "Om Furnace" + +#: src/gui/about.cpp:418 +msgid "Unsaved changes! Save changes before playing?" +msgstr "Osparade ändringar! Spara ändringar innan du spelar?" + +#: src/gui/compatFlags.cpp:31 src/gui/guiConst.cpp:598 +msgid "Compatibility Flags" +msgstr "Kompatibilitetsflaggor" + +#: src/gui/compatFlags.cpp:32 +msgid "" +"these flags are designed to provide better DefleMask/older Furnace " +"compatibility.\n" +"it is recommended to disable most of these unless you rely on specific " +"quirks." +msgstr "" +"dessa flaggor är utformade för att ge bättre DefleMask/äldre Furnace " +"kompatibilitet.\n" +"det rekommenderas att inaktivera de flesta av dessa om du inte förlitar dig " +"på specifika egenheter." + +#: src/gui/compatFlags.cpp:34 src/gui/compatFlags.cpp:310 +msgid "DefleMask" +msgstr "DefleMask" + +#: src/gui/compatFlags.cpp:35 +msgid "Limit slide range" +msgstr "Begränsa glidområdet" + +#: src/gui/compatFlags.cpp:37 +msgid "" +"when enabled, slides are limited to a compatible range.\n" +"may cause problems with slides in negative octaves." +msgstr "" +"när den är aktiverad begränsas tonhöjdsgliderna till ett kompatibelt " +"intervall.\n" +"kan orsaka problem med glider i negativa oktaver." + +#: src/gui/compatFlags.cpp:39 +msgid "Compatible noise layout on NES and PC Engine" +msgstr "Kompatibel ljudlayout för NES och PC Engine" + +#: src/gui/compatFlags.cpp:41 +msgid "" +"use a rather unusual compatible noise frequency layout.\n" +"removes some noise frequencies on PC Engine." +msgstr "" +"använder en ganska ovanlig kompatibel ljudfrekvenslayout.\n" +"tar bort vissa brusfrekvenser på PC Engine." + +#: src/gui/compatFlags.cpp:43 +msgid "Game Boy instrument duty is wave volume" +msgstr "Game Boy-instrumentets uppgift är vågvolym" + +#: src/gui/compatFlags.cpp:45 +msgid "" +"if enabled, an instrument with duty macro in the wave channel will be mapped " +"to wavetable volume." +msgstr "" +"om aktiverat, kommer ett instrument med arbetsmakro i vågkanalen att mappas " +"till wavetable-volym." + +#: src/gui/compatFlags.cpp:48 +msgid "Restart macro on portamento" +msgstr "Starta om makrot vid portamento" + +#: src/gui/compatFlags.cpp:50 +msgid "" +"when enabled, a portamento effect will reset the channel's macro if used in " +"combination with a note." +msgstr "" +"när den är aktiverad kommer en portamentoeffekt att återställa kanalens " +"makro om den används i kombination med en not." + +#: src/gui/compatFlags.cpp:52 +msgid "Legacy volume slides" +msgstr "Föråldrad volymglider" + +#: src/gui/compatFlags.cpp:54 +msgid "" +"simulate glitchy volume slide behavior by silently overflowing the volume " +"when the slide goes below 0." +msgstr "" +"simulerar glitchigt beteende hos volymglider genom att tyst överfylla " +"volymen när gliderna går under 0." + +#: src/gui/compatFlags.cpp:56 +msgid "Compatible arpeggio" +msgstr "Kompatibel arpeggio" + +#: src/gui/compatFlags.cpp:58 +msgid "delay arpeggio by one tick on every new note." +msgstr "fördröjar arpeggio med en tick vid varje ny not." + +#: src/gui/compatFlags.cpp:60 +msgid "Disable DAC when sample ends" +msgstr "Inaktivera DAC när samplen avslutas" + +#: src/gui/compatFlags.cpp:62 +msgid "" +"when enabled, the DAC in YM2612 will be disabled if there isn't any sample " +"playing." +msgstr "" +"när den är aktiverad kommer DAC:en i YM2612 att inaktiveras om det inte " +"finns någon sample spelas." + +#: src/gui/compatFlags.cpp:64 +msgid "Broken speed alternation" +msgstr "Brutet hastighetsväxling" + +#: src/gui/compatFlags.cpp:66 +msgid "" +"determines next speed based on whether the row is odd/even instead of " +"alternating between speeds." +msgstr "" +"bestämmer nästa hastighet baserat på om raden är udda/jämn i stället för att " +"växla mellan hastigheterna." + +#: src/gui/compatFlags.cpp:68 +msgid "Ignore duplicate slide effects" +msgstr "Ignorera duplicerade glideffekter" + +#: src/gui/compatFlags.cpp:70 +msgid "" +"if this is on, only the first slide of a row in a channel will be considered." +msgstr "" +"Om detta är påslaget, kommer endast den första bilden i en rad i en kanal " +"att beaktas." + +#: src/gui/compatFlags.cpp:72 +msgid "Ignore 0Dxx on the last order" +msgstr "Ignorera 0Dxx på den senaste order" + +#: src/gui/compatFlags.cpp:74 +msgid "" +"if this is on, a jump to next row effect will not take place when it is on " +"the last order of a song." +msgstr "" +"om detta är på, kommer en hopp till nästa radeffekt inte att ske när den är " +"på den sista ordern i en låt." + +#: src/gui/compatFlags.cpp:76 +msgid "Buggy portamento after pitch slide" +msgstr "Buggigt portamento efter tonhöjdsglidning" + +#: src/gui/compatFlags.cpp:78 +msgid "simulates a bug in where portamento does not work after sliding." +msgstr "simulerar en bugg där portamento inte fungerar efter glidning." + +#: src/gui/compatFlags.cpp:80 +msgid "FM pitch slide octave boundary odd behavior" +msgstr "FM-tonhöjdsglidning oktavgräns med udda beteende" + +#: src/gui/compatFlags.cpp:82 +msgid "" +"if this is on, a pitch slide that crosses the octave boundary will stop for " +"one tick and then continue from the nearest octave boundary.\n" +"for .dmf compatibility." +msgstr "" +"om detta är påslaget kommer en tonhöjdsglidning som korsar oktavgränsen att " +"stanna i ett tick och fortsätta sedan från närmaste oktavgräns.\n" +"för .dmf-kompatibilitet." + +#: src/gui/compatFlags.cpp:84 +msgid "Don't apply Game Boy envelope on note-less instrument change" +msgstr "Använd ej Game Boy-ADSR vid byte av instrument utan noter" + +#: src/gui/compatFlags.cpp:86 +msgid "if this is on, an instrument change will not affect the envelope." +msgstr "om detta är påslaget kommer ett instrumentbyte inte att påverka ADSR." + +#: src/gui/compatFlags.cpp:88 +msgid "Ignore DAC mode change outside of intended channel in ExtCh mode" +msgstr "" +"Ignorera ändring av DAC-läge utanför den avsedda kanalen i utökat kanalläge" + +#: src/gui/compatFlags.cpp:90 +msgid "if this is on, 17xx has no effect on the operator channels in YM2612." +msgstr "om detta är på har 17xx ingen effekt på operatorskanalerna i YM2612." + +#: src/gui/compatFlags.cpp:92 +msgid "E1xy/E2xy also take priority over slide stops" +msgstr "E1xy/E2xy har också prioritet över glidstopp" + +#: src/gui/compatFlags.cpp:94 +msgid "does this make any sense by now?" +msgstr "verkar detta vara vettigt nu?" + +#: src/gui/compatFlags.cpp:96 +msgid "E1xy/E2xy stop when repeating the same note" +msgstr "E1xy/E2xy stoppar vid upprepning av samma not" + +#: src/gui/compatFlags.cpp:98 +msgid "ugh, if only this wasn't a thing..." +msgstr "om det bara inte vore så här..." + +#: src/gui/compatFlags.cpp:100 +msgid "SN76489 duty macro always resets phase" +msgstr "SN76489 arbetsmakro återställer alltid fas" + +#: src/gui/compatFlags.cpp:102 +msgid "" +"when enabled, duty macro will always reset phase, even if its value hasn't " +"changed." +msgstr "" +"när den är aktiverad kommer arbetsmakrot alltid att återställa fasen, även " +"om dess värde inte har ändrats." + +#: src/gui/compatFlags.cpp:104 +msgid "Broken volume scaling strategy" +msgstr "Bruten strategi för volymskalning" + +#: src/gui/compatFlags.cpp:106 +msgid "" +"when enabled:\n" +"- log scaling: multiply\n" +"- linear scaling: subtract\n" +"when disabled:\n" +"- log scaling: subtract\n" +"- linear scaling: multiply" +msgstr "" +"när aktiverad:\n" +"- logaritmisk skalning: multiplicera\n" +"- linjär skalning: subtrahera\n" +"när inaktiverad:\n" +"- logaritmisk skalning: subtrahera\n" +"- linjär skalning: multiplicera" + +#: src/gui/compatFlags.cpp:108 +msgid "Don't persist volume macro after it finishes" +msgstr "Håll inte kvar volymmakrot efter att det har avslutats" + +#: src/gui/compatFlags.cpp:110 +msgid "" +"when enabled, a value in the volume column that happens after the volume " +"macro is done will disregard the macro." +msgstr "" +"när den är aktiverad, ett värde i volymkolumnen som händer efter att " +"volymens makro är gjort kommer att bortse från makrot." + +#: src/gui/compatFlags.cpp:112 +msgid "Broken output volume on instrument change" +msgstr "Bruten utgångsvolym vid instrumentbyte" + +#: src/gui/compatFlags.cpp:114 +msgid "" +"if enabled, no checks for the presence of a volume macro will be made.\n" +"this will cause the last macro value to linger unless a value in the volume " +"column is present." +msgstr "" +"om den är aktiverad görs ingen kontroll av om det finns ett volymmakro.detta " +"gör att det sista makrovärdet dröjer sig kvar om inte ett värde i " +"volymkolumnen är närvarande." + +#: src/gui/compatFlags.cpp:116 +msgid "Broken output volume - Episode 2 (PLEASE KEEP ME DISABLED)" +msgstr "Bruten utgångsvolym - avsnitt 2 (VÄNLIGEN HÅLL MIG INAKTIVERAD)" + +#: src/gui/compatFlags.cpp:118 +msgid "" +"these compatibility flags are getting SO damn ridiculous and out of " +"control.\n" +"as you may have guessed, this one exists due to yet ANOTHER DefleMask-" +"specific behavior.\n" +"please keep this off at all costs, because I will not support it when ROM " +"export comes.\n" +"oh, and don't start an argument out of it. Furnace isn't a DefleMask " +"replacement, and no,\n" +"I am not trying to make it look like one with all these flags.\n" +"\n" +"oh, and what about the other flags that don't have to do with DefleMask?\n" +"those are for .mod import, future FamiTracker import and personal taste!\n" +"\n" +"end of rant" +msgstr "" +"dessa kompatibilitetsflaggor börjar bli SÅ jävla löjliga och ur kontroll.\n" +"som du kanske har gissat, denna flagga finns på grund av ännu ett DefleMask-" +"specifikt beteende.\n" +"snälla håll denna borta till varje pris, för jag kommer inte att stödja den " +"när ROM-export kommer.\n" +"och starta inte ett argument av det. Furnace är inte en DefleMask-" +"ersättning, och nej,\n" +"jag försöker inte få det att se ut som en med alla dessa flaggor.\n" +"\n" +"och hur är det med de andra flaggorna som inte har med DefleMask att göra?de " +"är för .mod import, framtida FamiTracker-import och personlig smak!\n" +"\n" +"slut på tjatet" + +#: src/gui/compatFlags.cpp:120 +msgid "Treat SN76489 periods under 8 as 1" +msgstr "Behandla SN76489-perioder under 8 som 1" + +#: src/gui/compatFlags.cpp:122 +msgid "" +"when enabled, any SN period under 8 will be written as 1 instead.\n" +"this replicates DefleMask behavior, but reduces available period range." +msgstr "" +"om aktiverat, kommer alla SN-perioder under 8 att skrivas som 1 i stället.\n" +"detta replikerar DefleMask-beteendet, men minskar det tillgängliga " +"periodintervallet." + +#: src/gui/compatFlags.cpp:126 src/gui/compatFlags.cpp:304 +msgid "Old Furnace" +msgstr "Gammal Furnace" + +#: src/gui/compatFlags.cpp:127 +msgid "Arpeggio inhibits non-porta slides" +msgstr "Arpeggio hämmar icke-porta. glidningar" + +#: src/gui/compatFlags.cpp:129 src/gui/compatFlags.cpp:133 +msgid "behavior changed in 0.5.5" +msgstr "ändrat beteende i 0,5,5" + +#: src/gui/compatFlags.cpp:131 +msgid "Wack FM algorithm macro" +msgstr "Knasigt FM-algoritm makro" + +#: src/gui/compatFlags.cpp:135 +msgid "Broken shortcut slides (E1xy/E2xy)" +msgstr "Trasiga genvägsglider (E1xy/E2xy)" + +#: src/gui/compatFlags.cpp:137 +msgid "behavior changed in 0.5.7" +msgstr "ändrat beteende i 0,5,7" + +#: src/gui/compatFlags.cpp:139 +msgid "Stop portamento on note off" +msgstr "Stoppa portamento vid notavbrott" + +#: src/gui/compatFlags.cpp:141 src/gui/compatFlags.cpp:145 +#: src/gui/compatFlags.cpp:149 src/gui/compatFlags.cpp:153 +#: src/gui/compatFlags.cpp:157 src/gui/compatFlags.cpp:161 +#: src/gui/compatFlags.cpp:165 +msgid "behavior changed in 0.6pre1" +msgstr "ändrat beteende i 0,6pre1" + +#: src/gui/compatFlags.cpp:143 +msgid "Don't allow instrument change during slides" +msgstr "Tillåt inte byte av instrument under glider" + +#: src/gui/compatFlags.cpp:147 +msgid "Don't reset note to base on arpeggio stop" +msgstr "Återställ ej noten till basen vid arpeggio-stopp" + +#: src/gui/compatFlags.cpp:151 +msgid "ExtCh channel status is not shared among operators" +msgstr "Status för den utökad kanalen delas ej mellan operatorerna" + +#: src/gui/compatFlags.cpp:155 +msgid "Disable new SegaPCM features (macros and better panning)" +msgstr "Inaktivera nya SegaPCM-funktioner (makron och bättre panorering)" + +#: src/gui/compatFlags.cpp:159 +msgid "Old FM octave boundary behavior" +msgstr "Gammalt beteende för FM-oktavgränsen" + +#: src/gui/compatFlags.cpp:163 +msgid "Disable OPN2 DAC volume control" +msgstr "Inaktivera volymkontroll för OPN2-DAC" + +#: src/gui/compatFlags.cpp:167 +msgid "Broken initial position of portamento after arpeggio" +msgstr "Bruten startposition för portamento efter arpeggio" + +#: src/gui/compatFlags.cpp:169 +msgid "behavior changed in 0.6pre1.5" +msgstr "ändrat beteende i 0,6pre1,5" + +#: src/gui/compatFlags.cpp:171 +msgid "Disable new sample features" +msgstr "Inaktivera nya samplefunktioner" + +#: src/gui/compatFlags.cpp:173 src/gui/compatFlags.cpp:177 +msgid "behavior changed in 0.6pre2" +msgstr "ändrat beteende i 0,6pre2" + +#: src/gui/compatFlags.cpp:175 +msgid "Old arpeggio macro + pitch slide strategy" +msgstr "Gammalt arpeggio-makro + tonhöjdsförskjutning-strategi" + +#: src/gui/compatFlags.cpp:179 +msgid "Broken portamento during legato" +msgstr "Avbrutet portamento under legato" + +#: src/gui/compatFlags.cpp:181 +msgid "behavior changed in 0.6pre4" +msgstr "ändrat beteende i 0,6pre4" + +#: src/gui/compatFlags.cpp:183 +msgid "Broken macros in some FM chips after note off" +msgstr "Trasiga makron i vissa FM-chip efter notavbrott" + +#: src/gui/compatFlags.cpp:185 +msgid "behavior changed in 0.6pre5" +msgstr "ändrat beteende i 0,6pre5" + +#: src/gui/compatFlags.cpp:187 +msgid "Pre-note does not take effects into consideration" +msgstr "Förnoten tar inte hänsyn till effekter" + +#: src/gui/compatFlags.cpp:189 +msgid "behavior changed in 0.6pre9" +msgstr "ändrat beteende i 0,6pre9" + +#: src/gui/compatFlags.cpp:191 +msgid "Disable new NES DPCM features" +msgstr "Inaktivera nya NES DPCM-funktioner" + +#: src/gui/compatFlags.cpp:193 +msgid "behavior changed in 0.6.1" +msgstr "ändrat beteende i 0,6,1" + +#: src/gui/compatFlags.cpp:195 +msgid "Legacy technical ALWAYS_SET_VOLUME behavior" +msgstr "Föråldrad tekniskt ALWAYS_SET_VOLUME-beteende" + +#: src/gui/compatFlags.cpp:197 +msgid "" +"behavior changed in 0.6.1\n" +"this flag will be removed if I find out that none of the songs break after " +"disabling it." +msgstr "" +"ändrat beteende i 0,6,1\n" +"denna flagga kommer att tas bort om jag upptäcker att ingen av låtarna går " +"sönder efter att jag inaktiverat den." + +#: src/gui/compatFlags.cpp:199 +msgid "Old sample offset effect" +msgstr "Gammal effect för sample-offset" + +#: src/gui/compatFlags.cpp:201 +msgid "behavior changed in 0.6.3" +msgstr "ändrat beteende i 0,6,3" + +#: src/gui/compatFlags.cpp:205 +msgid ".mod import" +msgstr ".mod importering" + +#: src/gui/compatFlags.cpp:206 +msgid "Don't slide on the first tick of a row" +msgstr "Glida inte på första ticken i en rad" + +#: src/gui/compatFlags.cpp:208 +msgid "" +"simulates ProTracker's behavior of not applying volume/pitch slides on the " +"first tick of a row." +msgstr "" +"simulerar ProTrackers beteende att inte applicera volym/tonhöjdsglider på " +"den första ticken i en rad." + +#: src/gui/compatFlags.cpp:210 +msgid "Reset arpeggio position on row change" +msgstr "Återställ arpeggio-position vid radbyte" + +#: src/gui/compatFlags.cpp:212 +msgid "" +"simulates ProTracker's behavior of arpeggio being bound to the current tick " +"of a row." +msgstr "" +"simulerar ProTrackers beteende att arpeggio är bundet till den aktuella " +"ticken av en rad." + +#: src/gui/compatFlags.cpp:216 +msgid "Pitch/Playback" +msgstr "Tonhöjd/Uppspelning" + +#: src/gui/compatFlags.cpp:217 +msgid "Pitch linearity:" +msgstr "Tonhöjdslinjäritet:" + +#: src/gui/compatFlags.cpp:223 +msgid "like ProTracker/FamiTracker" +msgstr "som ProTracker/FamiTracker" + +#: src/gui/compatFlags.cpp:227 +msgid "Partial (only 04xy/E5xx)" +msgstr "Delvis (endast 04xy/E5xx)" + +#: src/gui/compatFlags.cpp:231 +msgid "" +"like DefleMask\n" +"\n" +"this pitch linearity mode is deprecated due to:\n" +"- excessive complexity\n" +"- lack of possible optimization\n" +"\n" +"it is recommended to change it now because I will remove this option in the " +"future!" +msgstr "" +"som DefleMask\n" +"\n" +"detta tonhöjdslinjäritetsläge är föråldrat på grund av:\n" +"- överdriven komplexitet\n" +"- brist på möjlig optimering\n" +"\n" +"det rekommenderas att ändra detta nu eftersom jag kommer att ta bort detta " +"alternativ i framtiden!" + +#: src/gui/compatFlags.cpp:235 +msgid "Full" +msgstr "Full" + +#: src/gui/compatFlags.cpp:239 +msgid "like Impulse Tracker" +msgstr "som Impulse Tracker" + +#: src/gui/compatFlags.cpp:246 +msgid "Pitch slide speed multiplier" +msgstr "Hastighetsmultiplikator för tonhöjdsglidning" + +#: src/gui/compatFlags.cpp:252 +msgid "Loop modality:" +msgstr "Loopmodalitet:" + +#: src/gui/compatFlags.cpp:254 +msgid "Reset channels" +msgstr "Återställa kanaler" + +#: src/gui/compatFlags.cpp:258 +msgid "" +"select to reset channels on loop. may trigger a voltage click on every loop!" +msgstr "" +"välj för att återställa kanaler på loop. kan utlösa ett spänningsklick på " +"varje loop!" + +#: src/gui/compatFlags.cpp:260 +msgid "Soft reset channels" +msgstr "Mjukåterställa kanaler" + +#: src/gui/compatFlags.cpp:264 +msgid "select to turn channels off on loop." +msgstr "välj för att stänga av kanaler på loop." + +#: src/gui/compatFlags.cpp:266 +msgid "Do nothing" +msgstr "Gör ingenting" + +#: src/gui/compatFlags.cpp:270 +msgid "select to not reset channels on loop." +msgstr "välj att inte återställa kanaler på loop." + +#: src/gui/compatFlags.cpp:274 +msgid "Cut/delay effect policy:" +msgstr "Effektpolicy för cut/delay:" + +#: src/gui/compatFlags.cpp:280 +msgid "only when time is less than speed (like DefleMask/ProTracker)" +msgstr "endast när tiden är mindre än hastigheten (som DefleMask/ProTracker)" + +#: src/gui/compatFlags.cpp:282 +msgid "Strict (old)" +msgstr "Sträng (gammal)" + +#: src/gui/compatFlags.cpp:286 +msgid "only when time is less than or equal to speed (original buggy behavior)" +msgstr "" +"endast när tiden är mindre än eller lika med hastigheten (ursprungligt " +"buggigt beteende)" + +#: src/gui/compatFlags.cpp:292 +msgid "no checks" +msgstr "ingen kontroll" + +#: src/gui/compatFlags.cpp:296 +msgid "Simultaneous jump (0B+0D) treatment:" +msgstr "Simultan hopp (0B+0D) behandling:" + +#: src/gui/compatFlags.cpp:302 +msgid "accept 0B+0D to jump to a specific row of an order" +msgstr "acceptera 0B+0D för att hoppa till en specifik rad i en order" + +#: src/gui/compatFlags.cpp:308 +msgid "only accept the first jump effect" +msgstr "accepterar endast den första hoppeffekten" + +#: src/gui/compatFlags.cpp:314 +msgid "only accept 0Dxx" +msgstr "acceptera endast 0Dxx" + +#: src/gui/compatFlags.cpp:320 +msgid "Auto-insert one tick gap between notes" +msgstr "Infoga automatiskt en tick mellanrum mellan noter" + +#: src/gui/compatFlags.cpp:322 +msgid "" +"when enabled, a one-tick note cut will be inserted between non-legato/non-" +"portamento notes.\n" +"this simulates the behavior of some Amiga/SNES music engines.\n" +"\n" +"ineffective on C64." +msgstr "" +"när den är aktiverad, kommer en en-tick notklippning att infogas mellan icke-" +"legato/icke-portamento-noter.\n" +"detta simulerar beteendet hos vissa Amiga/SNES musikmotorer.\n" +"\n" +"ineffektivt på C64." + +#: src/gui/compatFlags.cpp:327 +msgid "Don't reset slides after note off" +msgstr "Återställ inte glider efter notavbrott" + +#: src/gui/compatFlags.cpp:329 +msgid "when enabled, note off will not reset the channel's slide effect." +msgstr "" +"när den är aktiverad kommer notavbrottseffekten inte att återställa kanalens " +"glideffekt." + +#: src/gui/compatFlags.cpp:331 +msgid "Don't reset portamento after reaching target" +msgstr "Återställ inte portamento efter att ha nått målet" + +#: src/gui/compatFlags.cpp:333 +msgid "" +"when enabled, the slide effect will not be disabled after it reaches its " +"target." +msgstr "" +"när den är aktiverad, kommer glideffekten inte att avaktiveras efter att den " +"har nått sitt mål." + +#: src/gui/compatFlags.cpp:335 +msgid "Continuous vibrato" +msgstr "Kontinuerligt vibrato" + +#: src/gui/compatFlags.cpp:337 +msgid "when enabled, vibrato phase/position will not be reset on a new note." +msgstr "" +"när den är aktiverad kommer vibratots fas/position inte att återställas vid " +"en ny not." + +#: src/gui/compatFlags.cpp:339 +msgid "Pitch macro is not linear" +msgstr "Pitchmakron är inte linjär" + +#: src/gui/compatFlags.cpp:341 +msgid "" +"when enabled, the pitch macro of an instrument is in frequency/period space." +msgstr "" +"när den är aktiverad är ett instruments tonhöjdsmakro i frekvens/periodrymd." + +#: src/gui/compatFlags.cpp:343 +msgid "Reset arpeggio effect position on new note" +msgstr "Återställ arpeggioeffektens position på ny not" + +#: src/gui/compatFlags.cpp:345 +msgid "when enabled, arpeggio effect (00xy) position is reset on a new note." +msgstr "" +"när den är aktiverad återställs arpeggioeffektens (00xy) position vid en ny " +"not." + +#: src/gui/compatFlags.cpp:347 +msgid "Volume scaling rounds up" +msgstr "Volymskalning avrundas uppåt" + +#: src/gui/compatFlags.cpp:349 +msgid "" +"when enabled, volume macros round up when applied\n" +"this prevents volume scaling from causing vol=0, which is silent on some " +"chips\n" +"\n" +"ineffective on logarithmic channels" +msgstr "" +"när den är aktiverad avrundas volymmakron uppåt när de används\n" +"detta förhindrar volymskalning från att orsaka vol=0, vilket är tyst på " +"vissa chips\n" +"\n" +"ineffektivt på logaritmiska kanaler" + +#: src/gui/guiConst.cpp:127 +msgid "Generic Sample" +msgstr "Generisk sample" + +#: src/gui/guiConst.cpp:155 +msgid "OPL (drums)" +msgstr "OPL (trummor)" + +#: src/gui/guiConst.cpp:191 +msgid "Forward" +msgstr "Frammåt" + +#: src/gui/guiConst.cpp:192 +msgid "Backward" +msgstr "Bakåt" + +#: src/gui/guiConst.cpp:193 +msgid "Ping pong" +msgstr "Pingpong" + +#: src/gui/guiConst.cpp:218 +msgid "linear" +msgstr "linjär" + +#: src/gui/guiConst.cpp:219 +msgid "cubic spline" +msgstr "kubisk spline" + +#: src/gui/guiConst.cpp:220 +msgid "blep synthesis" +msgstr "blepsyntes" + +#: src/gui/guiConst.cpp:221 +msgid "sinc" +msgstr "sinc" + +#: src/gui/guiConst.cpp:222 +msgid "best possible" +msgstr "bästa möjliga" + +#: src/gui/guiConst.cpp:226 src/gui/sampleEdit.cpp:137 +#: src/gui/sampleEdit.cpp:143 +msgid "Invalid" +msgstr "Ogiltig" + +#: src/gui/guiConst.cpp:231 +msgid "Time" +msgstr "Tid" + +#: src/gui/guiConst.cpp:233 +msgid "System (Primary)" +msgstr "System (primärt)" + +#: src/gui/guiConst.cpp:234 +msgid "System (Secondary)" +msgstr "System (sekundärt)" + +#: src/gui/guiConst.cpp:530 +msgid "---Global" +msgstr "---Globalt" + +#: src/gui/guiConst.cpp:532 +msgid "Open file" +msgstr "Öppna fil" + +#: src/gui/guiConst.cpp:533 +msgid "Restore backup" +msgstr "Återställ säkerhetskopia" + +#: src/gui/guiConst.cpp:534 +msgid "Save file" +msgstr "Spara fil" + +#: src/gui/guiConst.cpp:535 +msgid "Save as" +msgstr "Spara som" + +#: src/gui/guiConst.cpp:537 src/gui/sampleEdit.cpp:982 +msgid "Undo" +msgstr "Ångra" + +#: src/gui/guiConst.cpp:539 src/gui/guiConst.cpp:541 src/gui/sampleEdit.cpp:989 +msgid "Redo" +msgstr "Återställ" + +#: src/gui/guiConst.cpp:543 +msgid "Exit" +msgstr "Avsluta" + +#: src/gui/guiConst.cpp:544 +msgid "Play/Stop (toggle)" +msgstr "Spela/stoppa (växla)" + +#: src/gui/guiConst.cpp:547 +msgid "Play (from beginning)" +msgstr "Spela (från början)" + +#: src/gui/guiConst.cpp:548 +msgid "Play (repeat pattern)" +msgstr "Spela (upprepa mönster)" + +#: src/gui/guiConst.cpp:549 +msgid "Play from cursor" +msgstr "Spela från markören" + +#: src/gui/guiConst.cpp:550 +msgid "Step row" +msgstr "Hopp över rad" + +#: src/gui/guiConst.cpp:551 +msgid "Octave up" +msgstr "Oktav upp" + +#: src/gui/guiConst.cpp:552 +msgid "Octave down" +msgstr "Oktav ner" + +#: src/gui/guiConst.cpp:553 +msgid "Previous instrument" +msgstr "Föregående instrument" + +#: src/gui/guiConst.cpp:554 +msgid "Next instrument" +msgstr "Nästa instrument" + +#: src/gui/guiConst.cpp:555 +msgid "Increase edit step" +msgstr "Öka redigeringssteg" + +#: src/gui/guiConst.cpp:556 +msgid "Decrease edit step" +msgstr "Minska redigeringssteg" + +#: src/gui/guiConst.cpp:557 +msgid "Toggle edit mode" +msgstr "Växla till redigeringsläge" + +#: src/gui/guiConst.cpp:559 +msgid "Toggle repeat pattern" +msgstr "Växla upprepningsmönster" + +#: src/gui/guiConst.cpp:562 +msgid "Toggle full-screen" +msgstr "Växla till helskärm" + +#: src/gui/guiConst.cpp:563 +msgid "Request voice from TX81Z" +msgstr "Begära röst från TX81Z" + +#: src/gui/guiConst.cpp:565 +msgid "Clear song data" +msgstr "Rensa låtdata" + +#: src/gui/guiConst.cpp:567 src/gui/gui.cpp:5573 src/gui/gui.cpp:5625 +msgid "Command Palette" +msgstr "Kommandopalett" + +#: src/gui/guiConst.cpp:569 +msgid "Recent files (Palette)" +msgstr "Senaste filer (palett)" + +#: src/gui/guiConst.cpp:570 +msgid "Instruments (Palette)" +msgstr "Instrument (palett)" + +#: src/gui/guiConst.cpp:571 +msgid "Samples (Palette)" +msgstr "Samples (palett)" + +#: src/gui/guiConst.cpp:572 +msgid "Change instrument (Palette)" +msgstr "Byta instrument (palett)" + +#: src/gui/guiConst.cpp:573 +msgid "Add chip (Palette)" +msgstr "Lägg till chip (palett)" + +#: src/gui/guiConst.cpp:578 +msgid "Instrument List" +msgstr "Instrumentlista" + +#: src/gui/guiConst.cpp:579 src/gui/insEdit.cpp:5203 +msgid "Instrument Editor" +msgstr "Instrumentredigerare" + +#: src/gui/guiConst.cpp:580 +msgid "Song Information" +msgstr "Låtinformation" + +#: src/gui/guiConst.cpp:583 +msgid "Wavetable List" +msgstr "Wavetable-lista" + +#: src/gui/guiConst.cpp:584 src/gui/waveEdit.cpp:409 +msgid "Wavetable Editor" +msgstr "Wavetable-redigerare" + +#: src/gui/guiConst.cpp:585 +msgid "Sample List" +msgstr "Sample-lista" + +#: src/gui/guiConst.cpp:594 +msgid "Debug Menu" +msgstr "Felsökningsmenyn" + +#: src/gui/guiConst.cpp:595 +msgid "Oscilloscope (master)" +msgstr "Oscilloskop (master)" + +#: src/gui/guiConst.cpp:603 src/gui/sysManager.cpp:41 +msgid "Chip Manager" +msgstr "Chiphanteraren" + +#: src/gui/guiConst.cpp:614 src/gui/csPlayer.cpp:112 +msgid "Command Stream Player" +msgstr "Kommandoströmspelare" + +#: src/gui/guiConst.cpp:615 +msgid "User Presets" +msgstr "Användarens förinställningar" + +#: src/gui/guiConst.cpp:617 +msgid "Collapse/expand current window" +msgstr "Dölj/utvidga aktuellt fönster" + +#: src/gui/guiConst.cpp:618 +msgid "Close current window" +msgstr "Stäng aktuellt fönster" + +#: src/gui/guiConst.cpp:621 +msgid "---Pattern" +msgstr "---Mönster" + +#: src/gui/guiConst.cpp:622 +msgid "Transpose (+1)" +msgstr "Transponera (+1)" + +#: src/gui/guiConst.cpp:623 +msgid "Transpose (-1)" +msgstr "Transponera (+1)" + +#: src/gui/guiConst.cpp:624 +msgid "Transpose (+1 octave)" +msgstr "Transponera (+1 oktav)" + +#: src/gui/guiConst.cpp:625 +msgid "Transpose (-1 octave)" +msgstr "Transponera (-1 oktav)" + +#: src/gui/guiConst.cpp:626 +msgid "Increase values (+1)" +msgstr "Öka värdena (+1)" + +#: src/gui/guiConst.cpp:627 +msgid "Increase values (-1)" +msgstr "Öka värdena (-1)" + +#: src/gui/guiConst.cpp:628 +msgid "Increase values (+16)" +msgstr "Öka värdena (+16)" + +#: src/gui/guiConst.cpp:629 +msgid "Increase values (-16)" +msgstr "Öka värdena (-16)" + +#: src/gui/guiConst.cpp:630 +msgid "Select all" +msgstr "Välj alla" + +#: src/gui/guiConst.cpp:631 +msgid "Cut" +msgstr "Klipp ut" + +#: src/gui/guiConst.cpp:632 +msgid "Copy" +msgstr "Kopiera" + +#: src/gui/guiConst.cpp:633 +msgid "Paste" +msgstr "Klistra in" + +#: src/gui/guiConst.cpp:634 +msgid "Paste Mix (foreground)" +msgstr "Klistra in mix (förgrund)" + +#: src/gui/guiConst.cpp:635 +msgid "Paste Mix (background)" +msgstr "Klistra in mix (bakgrund)" + +#: src/gui/guiConst.cpp:636 +msgid "Paste Flood" +msgstr "Klistra in översvämning" + +#: src/gui/guiConst.cpp:637 +msgid "Paste Overflow" +msgstr "Klistra in överflöd" + +#: src/gui/guiConst.cpp:638 +msgid "Move cursor up" +msgstr "Flytta markören uppåt" + +#: src/gui/guiConst.cpp:639 +msgid "Move cursor down" +msgstr "Flytta markören nedåt" + +#: src/gui/guiConst.cpp:640 +msgid "Move cursor left" +msgstr "Flytta markören åt vänster" + +#: src/gui/guiConst.cpp:641 +msgid "Move cursor right" +msgstr "Flytta markören åt höger" + +#: src/gui/guiConst.cpp:642 +msgid "Move cursor up by one (override Edit Step)" +msgstr "Flytta markören ett steg uppåt (åsidosätter redigeringssteg)" + +#: src/gui/guiConst.cpp:643 +msgid "Move cursor down by one (override Edit Step)" +msgstr "Flytta markören nedåt ett steg (åsidosätter redigeringssteg)" + +#: src/gui/guiConst.cpp:644 +msgid "Move cursor to previous channel" +msgstr "Flytta markören till föregående kanal" + +#: src/gui/guiConst.cpp:645 +msgid "Move cursor to next channel" +msgstr "Flytta markören till nästa kanal" + +#: src/gui/guiConst.cpp:646 +msgid "Move cursor to next channel (overflow)" +msgstr "Flytta markören till nästa kanal (överflöd)" + +#: src/gui/guiConst.cpp:647 +msgid "Move cursor to previous channel (overflow)" +msgstr "Flytta markören till föregående kanal (överflöd)" + +#: src/gui/guiConst.cpp:648 +msgid "Move cursor to beginning of pattern" +msgstr "Flytta markören till början av mönstret" + +#: src/gui/guiConst.cpp:649 +msgid "Move cursor to end of pattern" +msgstr "Flytta markören till slutet av mönstret" + +#: src/gui/guiConst.cpp:650 +msgid "Move cursor up (coarse)" +msgstr "Flytta markören uppåt (i delar)" + +#: src/gui/guiConst.cpp:651 +msgid "Move cursor down (coarse)" +msgstr "Flytta markören nedåt (i delar)" + +#: src/gui/guiConst.cpp:652 +msgid "Expand selection upwards" +msgstr "Expandera urvalet uppåt" + +#: src/gui/guiConst.cpp:653 +msgid "Expand selection downwards" +msgstr "Expandera urvalet nedåt" + +#: src/gui/guiConst.cpp:654 +msgid "Expand selection to the left" +msgstr "Expandera urvalet åt vänster" + +#: src/gui/guiConst.cpp:655 +msgid "Expand selection to the right" +msgstr "Expandera urvalet åt höger" + +#: src/gui/guiConst.cpp:656 +msgid "Expand selection upwards by one (override Edit Step)" +msgstr "Utöka urvalet uppåt med en (åsidosätter redigeringssteg)" + +#: src/gui/guiConst.cpp:657 +msgid "Expand selection downwards by one (override Edit Step)" +msgstr "Utöka urvalet nedåt med en (åsidosätter redigeringssteg)" + +#: src/gui/guiConst.cpp:658 +msgid "Expand selection to beginning of pattern" +msgstr "Utöka urvalet till början av mönstret" + +#: src/gui/guiConst.cpp:659 +msgid "Expand selection to end of pattern" +msgstr "Utöka markeringen till slutet av mönstret" + +#: src/gui/guiConst.cpp:660 +msgid "Expand selection upwards (coarse)" +msgstr "Utöka urvalet uppåt (i delar)" + +#: src/gui/guiConst.cpp:661 +msgid "Expand selection downwards (coarse)" +msgstr "Utöka urvalet nedåt (i delar)" + +#: src/gui/guiConst.cpp:662 +msgid "Move selection up" +msgstr "Flytta urvalet uppåt" + +#: src/gui/guiConst.cpp:663 +msgid "Move selection down" +msgstr "Flytta urvalet nedåt" + +#: src/gui/guiConst.cpp:664 +msgid "Move selection to previous channel" +msgstr "Flytta val till föregående kanal" + +#: src/gui/guiConst.cpp:665 +msgid "Move selection to next channel" +msgstr "Flytta val till nästa kanal" + +#: src/gui/guiConst.cpp:667 +msgid "Pull delete" +msgstr "Dra radera" + +#: src/gui/guiConst.cpp:668 +msgid "Insert" +msgstr "Infoga" + +#: src/gui/guiConst.cpp:669 +msgid "Mute channel at cursor" +msgstr "Stäng av kanal vid markören" + +#: src/gui/guiConst.cpp:670 +msgid "Solo channel at cursor" +msgstr "Isolera kanalen vid markören" + +#: src/gui/guiConst.cpp:671 +msgid "Unmute all channels" +msgstr "Slå på ljudet för alla kanaler" + +#: src/gui/guiConst.cpp:672 +msgid "Go to next order" +msgstr "Gå till nästa order" + +#: src/gui/guiConst.cpp:673 +msgid "Go to previous order" +msgstr "Gå till föregående order" + +#: src/gui/guiConst.cpp:674 +msgid "Collapse channel at cursor" +msgstr "Dölj kanalen vid markören" + +#: src/gui/guiConst.cpp:675 +msgid "Increase effect columns" +msgstr "Öka effektkolumnerna" + +#: src/gui/guiConst.cpp:676 +msgid "Decrease effect columns" +msgstr "Minska effektkolumnerna" + +#: src/gui/guiConst.cpp:677 +msgid "Interpolate" +msgstr "Interpolera" + +#: src/gui/guiConst.cpp:678 src/gui/insEdit.cpp:530 +msgid "Fade" +msgstr "Tona ut" + +#: src/gui/guiConst.cpp:679 +msgid "Invert values" +msgstr "Invertera värden" + +#: src/gui/guiConst.cpp:680 +msgid "Flip selection" +msgstr "Vänd på urvalet" + +#: src/gui/guiConst.cpp:681 +msgid "Collapse rows" +msgstr "Förminska rader" + +#: src/gui/guiConst.cpp:682 +msgid "Expand rows" +msgstr "Expandera rader" + +#: src/gui/guiConst.cpp:683 +msgid "Collapse pattern" +msgstr "Förminska mönstret" + +#: src/gui/guiConst.cpp:684 +msgid "Expand pattern" +msgstr "Expandera mönstret" + +#: src/gui/guiConst.cpp:685 +msgid "Collapse song" +msgstr "Förminska låt" + +#: src/gui/guiConst.cpp:686 +msgid "Expand song" +msgstr "Expandera låt" + +#: src/gui/guiConst.cpp:687 +msgid "Set note input latch" +msgstr "Ställ in notingångsspärr" + +#: src/gui/guiConst.cpp:688 +msgid "Change mobile scroll mode" +msgstr "Ändra rullningsläge för mobil" + +#: src/gui/guiConst.cpp:689 +msgid "Clear note input latch" +msgstr "Rensa notingångsspärr" + +#: src/gui/guiConst.cpp:692 +msgid "---Instrument list" +msgstr "---Instrumentlista" + +#: src/gui/guiConst.cpp:693 +msgid "Add instrument" +msgstr "Lägg till instrument" + +#: src/gui/guiConst.cpp:694 +msgid "Duplicate instrument" +msgstr "Duplicera instrument" + +#: src/gui/guiConst.cpp:695 +msgid "Open instrument" +msgstr "Öppna instrument" + +#: src/gui/guiConst.cpp:696 +msgid "Open instrument (replace current)" +msgstr "Öppna instrument (ersätta nuvarande)" + +#: src/gui/guiConst.cpp:697 +msgid "Save instrument" +msgstr "Spara instrument" + +#: src/gui/guiConst.cpp:698 +msgid "Save instrument (.dmp)" +msgstr "Spara instrument (.dmp)" + +#: src/gui/guiConst.cpp:699 +msgid "Move instrument up in list" +msgstr "Flytta instrumentet uppåt i listan" + +#: src/gui/guiConst.cpp:700 +msgid "Move instrument down in list" +msgstr "Flytta instrumentet nedåt i listan" + +#: src/gui/guiConst.cpp:701 +msgid "Delete instrument" +msgstr "Ta bort instrument" + +#: src/gui/guiConst.cpp:702 +msgid "Edit instrument" +msgstr "Redigera instrument" + +#: src/gui/guiConst.cpp:703 +msgid "Instrument cursor up" +msgstr "Instrumentmarkören uppåt" + +#: src/gui/guiConst.cpp:704 +msgid "Instrument cursor down" +msgstr "Instrumentmarkören nedåt" + +#: src/gui/guiConst.cpp:705 +msgid "Instruments: toggle folders/standard view" +msgstr "Instrument: växla mappar/standardvy" + +#: src/gui/guiConst.cpp:708 +msgid "---Wavetable list" +msgstr "---Wavetable-lista" + +#: src/gui/guiConst.cpp:709 +msgid "Add wavetable" +msgstr "Lägg till wavetable" + +#: src/gui/guiConst.cpp:710 +msgid "Duplicate wavetable" +msgstr "Duplicera wavetable" + +#: src/gui/guiConst.cpp:711 +msgid "Open wavetable" +msgstr "Öppna wavetable" + +#: src/gui/guiConst.cpp:712 +msgid "Open wavetable (replace current)" +msgstr "Öppna wavetable (ersätta nuvarande)" + +#: src/gui/guiConst.cpp:713 +msgid "Save wavetable" +msgstr "Spara wavetable" + +#: src/gui/guiConst.cpp:714 +msgid "Save wavetable (.dmw)" +msgstr "Spara wavetable (.dmw)" + +#: src/gui/guiConst.cpp:715 +msgid "Save wavetable (raw)" +msgstr "Spara wavetable (rå)" + +#: src/gui/guiConst.cpp:716 +msgid "Move wavetable up in list" +msgstr "Flytta wavetable uppåt i listan" + +#: src/gui/guiConst.cpp:717 +msgid "Move wavetable down in list" +msgstr "Flytta wavetable nedåt i listan" + +#: src/gui/guiConst.cpp:718 +msgid "Delete wavetable" +msgstr "Ta bort wavetable" + +#: src/gui/guiConst.cpp:719 +msgid "Edit wavetable" +msgstr "Redigera wavetable" + +#: src/gui/guiConst.cpp:720 +msgid "Wavetable cursor up" +msgstr "Wavetable-markören uppåt" + +#: src/gui/guiConst.cpp:721 +msgid "Wavetable cursor down" +msgstr "Wavetable-markören nedåt" + +#: src/gui/guiConst.cpp:722 +msgid "Wavetables: toggle folders/standard view" +msgstr "Wavetable: växla mappar/standardvy" + +#: src/gui/guiConst.cpp:725 +msgid "---Sample list" +msgstr "---Samplelista" + +#: src/gui/guiConst.cpp:726 +msgid "Add sample" +msgstr "Lägg till sample" + +#: src/gui/guiConst.cpp:727 +msgid "Duplicate sample" +msgstr "Duplicera sample" + +#: src/gui/guiConst.cpp:728 +msgid "Open sample" +msgstr "Öppna sample" + +#: src/gui/guiConst.cpp:729 +msgid "Open sample (replace current)" +msgstr "Öppna sample (ersätta nuvarande)" + +#: src/gui/guiConst.cpp:730 +msgid "Import raw sample data" +msgstr "Importera rå sampledata" + +#: src/gui/guiConst.cpp:731 +msgid "Import raw sample data (replace current)" +msgstr "Importera rå sampledata (ersätta nuvarande)" + +#: src/gui/guiConst.cpp:732 +msgid "Save sample" +msgstr "Spara sample" + +#: src/gui/guiConst.cpp:733 +msgid "Save sample (raw)" +msgstr "Spara sample (rå)" + +#: src/gui/guiConst.cpp:734 +msgid "Move sample up in list" +msgstr "Flytta sample uppåt i listan" + +#: src/gui/guiConst.cpp:735 +msgid "Move sample down in list" +msgstr "Flytta sample nedåt i listan" + +#: src/gui/guiConst.cpp:736 +msgid "Delete sample" +msgstr "Ta bort sample" + +#: src/gui/guiConst.cpp:737 +msgid "Edit sample" +msgstr "Redigera sample" + +#: src/gui/guiConst.cpp:738 +msgid "Sample cursor up" +msgstr "Samplemarkören uppåt" + +#: src/gui/guiConst.cpp:739 +msgid "Sample cursor down" +msgstr "Samplemarkören nedåt" + +#: src/gui/guiConst.cpp:741 src/gui/sampleEdit.cpp:1339 +msgid "Stop sample preview" +msgstr "Stoppa sampleförhandsgranskning" + +#: src/gui/guiConst.cpp:742 +msgid "Samples: Toggle folders/standard view" +msgstr "Samples: växla mappar/standardvy" + +#: src/gui/guiConst.cpp:743 +msgid "Samples: Make me a drum kit" +msgstr "Samples: gör mig ett trumset" + +#: src/gui/guiConst.cpp:746 +msgid "---Sample editor" +msgstr "---Sampleredigerare" + +#: src/gui/guiConst.cpp:747 +msgid "Sample editor mode: Select" +msgstr "Sampleredigerare: Välj" + +#: src/gui/guiConst.cpp:748 +msgid "Sample editor mode: Draw" +msgstr "Sampleredigerare: Rita" + +#: src/gui/guiConst.cpp:749 +msgid "Sample editor: Cut" +msgstr "Sampleredigerare: Klippa" + +#: src/gui/guiConst.cpp:750 +msgid "Sample editor: Copy" +msgstr "Sampleredigerare: Kopiera" + +#: src/gui/guiConst.cpp:751 +msgid "Sample editor: Paste" +msgstr "Sampleredigerare: Klistra in" + +#: src/gui/guiConst.cpp:752 +msgid "Sample editor: Paste replace" +msgstr "Sampleredigerare: Klistra in och ersätta" + +#: src/gui/guiConst.cpp:753 +msgid "Sample editor: Paste mix" +msgstr "Sampleredigerare: Klistra in mix" + +#: src/gui/guiConst.cpp:754 +msgid "Sample editor: Select all" +msgstr "Sampleredigerare: Välj alla" + +#: src/gui/guiConst.cpp:755 +msgid "Sample editor: Resize" +msgstr "Sampleredigerare: Ändra storlek" + +#: src/gui/guiConst.cpp:756 +msgid "Sample editor: Resample" +msgstr "Sampleredigerare: Sampla om" + +#: src/gui/guiConst.cpp:757 +msgid "Sample editor: Amplify" +msgstr "Sampleredigerare: Förstärka" + +#: src/gui/guiConst.cpp:758 +msgid "Sample editor: Normalize" +msgstr "Sampleredigerare: Normalisera" + +#: src/gui/guiConst.cpp:759 +msgid "Sample editor: Fade in" +msgstr "Sampleredigerare: Tona in" + +#: src/gui/guiConst.cpp:760 +msgid "Sample editor: Fade out" +msgstr "Sampleredigerare: Tona ut" + +#: src/gui/guiConst.cpp:761 +msgid "Sample editor: Apply silence" +msgstr "Sampleredigerare: Tillämpa tystnad" + +#: src/gui/guiConst.cpp:762 +msgid "Sample editor: Insert silence" +msgstr "Sampleredigerare: Infoga tystnad" + +#: src/gui/guiConst.cpp:763 +msgid "Sample editor: Delete" +msgstr "Sampleredigerare: Ta bort" + +#: src/gui/guiConst.cpp:764 +msgid "Sample editor: Trim" +msgstr "Sampleredigerare: Trimma" + +#: src/gui/guiConst.cpp:765 +msgid "Sample editor: Reverse" +msgstr "Sampleredigerare: Omvända" + +#: src/gui/guiConst.cpp:766 +msgid "Sample editor: Invert" +msgstr "Sampleredigerare: Invertera" + +#: src/gui/guiConst.cpp:767 +msgid "Sample editor: Signed/unsigned exchange" +msgstr "Sampleredigerare: Signerat/osignerat utbyte" + +#: src/gui/guiConst.cpp:768 +msgid "Sample editor: Apply filter" +msgstr "Sampleredigerare: Använd filter" + +#: src/gui/guiConst.cpp:769 +msgid "Sample editor: Crossfade loop points" +msgstr "Sampleredigerare: Crossfade looppunkter" + +#: src/gui/guiConst.cpp:770 +msgid "Sample editor: Preview sample" +msgstr "Sampleredigerare: Förhandsgranska sample" + +#: src/gui/guiConst.cpp:771 +msgid "Sample editor: Stop sample preview" +msgstr "Sampleredigerare: Stoppa förhandsgranskningen på sample" + +#: src/gui/guiConst.cpp:772 +msgid "Sample editor: Zoom in" +msgstr "Sampleredigerare: Zooma in" + +#: src/gui/guiConst.cpp:773 +msgid "Sample editor: Zoom out" +msgstr "Sampleredigerare: Zooma ut" + +#: src/gui/guiConst.cpp:774 +msgid "Sample editor: Toggle auto-zoom" +msgstr "Sampleredigerare: Växla auto-zoom" + +#: src/gui/guiConst.cpp:775 +msgid "Sample editor: Create instrument from sample" +msgstr "Sampleredigerare: Skapa instrument från sample" + +#: src/gui/guiConst.cpp:776 +msgid "Sample editor: Set loop to selection" +msgstr "Sampleredigerare: Ställ in loop till urval" + +#: src/gui/guiConst.cpp:777 +msgid "Sample editor: Create wavetable from selection" +msgstr "Sampleredigerare: Skapa wavetable från urval" + +#: src/gui/guiConst.cpp:780 +msgid "---Orders" +msgstr "---Orders" + +#: src/gui/guiConst.cpp:781 +msgid "Previous order" +msgstr "Föregående order" + +#: src/gui/guiConst.cpp:782 +msgid "Next order" +msgstr "Nästa order" + +#: src/gui/guiConst.cpp:783 +msgid "Order cursor left" +msgstr "Ordermarkören till vänster" + +#: src/gui/guiConst.cpp:784 +msgid "Order cursor right" +msgstr "Ordermarkören till höger" + +#: src/gui/guiConst.cpp:785 +msgid "Increase order value" +msgstr "Öka ordervärdee" + +#: src/gui/guiConst.cpp:786 +msgid "Decrease order value" +msgstr "Förminska ordervärde" + +#: src/gui/guiConst.cpp:787 +msgid "Switch order edit mode" +msgstr "Byt orderredigeringsläge" + +#: src/gui/guiConst.cpp:788 +msgid "Order: toggle alter entire row" +msgstr "Order: växla att ändra hela raden" + +#: src/gui/guiConst.cpp:789 +msgid "Add order" +msgstr "Lägg till order" + +#: src/gui/guiConst.cpp:790 +msgid "Duplicate order" +msgstr "Duplicera order" + +#: src/gui/guiConst.cpp:791 +msgid "Deep clone order" +msgstr "Djupklona order" + +#: src/gui/guiConst.cpp:792 +msgid "Copy current order to end of song" +msgstr "Kopiera aktuell order till slutet av låten" + +#: src/gui/guiConst.cpp:793 +msgid "Deep clone current order to end of song" +msgstr "Djup kloning av nuvarande order till slutet av låten" + +#: src/gui/guiConst.cpp:797 +msgid "Replay order" +msgstr "Spela om order" + +#: src/gui/guiConst.cpp:1392 +msgid "All chips" +msgstr "Alla chip" + +#: src/gui/guiConst.cpp:1396 src/gui/insEdit.cpp:6954 src/gui/insEdit.cpp:7204 +#: src/gui/insEdit.cpp:7458 src/gui/insEdit.cpp:7480 +msgid "Special" +msgstr "Special" + +#: src/gui/piano.cpp:103 +msgid "Options" +msgstr "Alternativ" + +#: src/gui/piano.cpp:106 +msgid "Key layout:" +msgstr "Tangentlayout:" + +#: src/gui/piano.cpp:111 +msgid "Standard" +msgstr "Standard" + +#: src/gui/piano.cpp:114 +msgid "Continuous" +msgstr "Kontinuerlig" + +#: src/gui/piano.cpp:118 +msgid "Value input pad:" +msgstr "Inmatningsplatta för värde:" + +#: src/gui/piano.cpp:120 +msgid "Disabled" +msgstr "Inaktiverad" + +#: src/gui/piano.cpp:123 +msgid "Replace piano" +msgstr "Ersätta piano" + +#: src/gui/piano.cpp:126 +msgid "Split (automatic)" +msgstr "Delad (automatisk)" + +#: src/gui/piano.cpp:129 +msgid "Split (always visible)" +msgstr "" + +#: src/gui/piano.cpp:133 +msgid "Share play/edit offset/range" +msgstr "Dela spela/redigera offset/räckvidd" + +#: src/gui/piano.cpp:134 +msgid "Read-only (can't input notes)" +msgstr "Skrivskyddad (kan ej mata in anteckningar)" + +#: src/gui/waveEdit.cpp:30 src/gui/waveEdit.cpp:192 src/gui/insEdit.cpp:177 +#: src/gui/insEdit.cpp:188 src/gui/insEdit.cpp:199 +msgid "Sine" +msgstr "Sinus" + +#: src/gui/waveEdit.cpp:32 src/gui/waveEdit.cpp:202 src/gui/insEdit.cpp:325 +#: src/gui/insEdit.cpp:654 +msgid "Saw" +msgstr "Såg" + +#: src/gui/waveEdit.cpp:39 +msgid "Cosine" +msgstr "Kosinus" + +#: src/gui/waveEdit.cpp:193 +msgid "Rect. Sine" +msgstr "Rekt. sinus" + +#: src/gui/waveEdit.cpp:194 +msgid "Abs. Sine" +msgstr "Abs. sinus" + +#: src/gui/waveEdit.cpp:195 +msgid "Quart. Sine" +msgstr "Kvar. sinus" + +#: src/gui/waveEdit.cpp:196 +msgid "Squish. Sine" +msgstr "Pressad sinus" + +#: src/gui/waveEdit.cpp:197 +msgid "Abs. Squish. Sine" +msgstr "Abs. pressad sinus" + +#: src/gui/waveEdit.cpp:200 +msgid "rectSquare" +msgstr "rektKvadrat" + +#: src/gui/waveEdit.cpp:203 +msgid "Rect. Saw" +msgstr "Rekt. såg" + +#: src/gui/waveEdit.cpp:204 +msgid "Abs. Saw" +msgstr "Abs. såg" + +#: src/gui/waveEdit.cpp:206 +msgid "Cubed Saw" +msgstr "Kuberad såg" + +#: src/gui/waveEdit.cpp:207 +msgid "Rect. Cubed Saw" +msgstr "Rekt. kuberad såg" + +#: src/gui/waveEdit.cpp:208 +msgid "Abs. Cubed Saw" +msgstr "Abs. kuberad såg" + +#: src/gui/waveEdit.cpp:210 +msgid "Cubed Sine" +msgstr "Kuberad sinus" + +#: src/gui/waveEdit.cpp:211 +msgid "Rect. Cubed Sine" +msgstr "Rekt. kuberad sinus" + +#: src/gui/waveEdit.cpp:212 +msgid "Abs. Cubed Sine" +msgstr "Abs. kuberad sinus" + +#: src/gui/waveEdit.cpp:213 +msgid "Quart. Cubed Sine" +msgstr "Kvart. kuberad sinus" + +#: src/gui/waveEdit.cpp:214 +msgid "Squish. Cubed Sine" +msgstr "Pressad kuberad sinus" + +#: src/gui/waveEdit.cpp:215 +msgid "Squish. Abs. Cub. Sine" +msgstr "Pressad. abs. kub. sinus" + +#: src/gui/waveEdit.cpp:218 +msgid "Rect. Triangle" +msgstr "Rekt. triangel" + +#: src/gui/waveEdit.cpp:219 +msgid "Abs. Triangle" +msgstr "Abs. triangel" + +#: src/gui/waveEdit.cpp:220 +msgid "Quart. Triangle" +msgstr "Kvart. triangel" + +#: src/gui/waveEdit.cpp:221 +msgid "Squish. Triangle" +msgstr "Pressad triangel" + +#: src/gui/waveEdit.cpp:222 +msgid "Abs. Squish. Triangle" +msgstr "Abs. pressad triangel" + +#: src/gui/waveEdit.cpp:224 +msgid "Cubed Triangle" +msgstr "Kuberad triangel" + +#: src/gui/waveEdit.cpp:225 +msgid "Rect. Cubed Triangle" +msgstr "Rekt. kuberad triangel" + +#: src/gui/waveEdit.cpp:226 +msgid "Abs. Cubed Triangle" +msgstr "Abs. kuberad triangel" + +#: src/gui/waveEdit.cpp:227 +msgid "Quart. Cubed Triangle" +msgstr "Kvart. kuberad triangel" + +#: src/gui/waveEdit.cpp:228 +msgid "Squish. Cubed Triangle" +msgstr "Pressad kuberad triangel" + +#: src/gui/waveEdit.cpp:229 +msgid "Squish. Abs. Cub. Triangle" +msgstr "Pressad. abs. kub. triangel" + +#: src/gui/waveEdit.cpp:412 src/gui/waveEdit.cpp:413 +msgid "no wavetable selected" +msgstr "inget wavetable valt" + +#: src/gui/waveEdit.cpp:424 src/gui/sampleEdit.cpp:111 src/gui/insEdit.cpp:5223 +msgid "select one..." +msgstr "välj en..." + +#: src/gui/waveEdit.cpp:432 src/gui/waveEdit.cpp:439 src/gui/sampleEdit.cpp:119 +#: src/gui/sampleEdit.cpp:126 src/gui/insEdit.cpp:5236 src/gui/insEdit.cpp:5243 +msgid "or" +msgstr "eller" + +#: src/gui/waveEdit.cpp:441 src/gui/sampleEdit.cpp:128 src/gui/insEdit.cpp:5245 +msgid "Create New" +msgstr "Skapa ny" + +#: src/gui/waveEdit.cpp:487 +msgid "Steps" +msgstr "Steg" + +#: src/gui/waveEdit.cpp:491 +msgid "Lines" +msgstr "Linjer" + +#: src/gui/waveEdit.cpp:496 src/gui/insEdit.cpp:2687 +msgid "Width" +msgstr "Bredd" + +#: src/gui/waveEdit.cpp:498 +msgid "" +"use a width of:\n" +"- any on Amiga/N163\n" +"- 32 on Game Boy, PC Engine, SCC, Konami Bubble System, Namco WSG, Virtual " +"Boy and WonderSwan\n" +"- 64 on FDS\n" +"- 128 on X1-010\n" +"any other widths will be scaled during playback." +msgstr "" +"använd en bredd på:\n" +"- alla på Amiga/N163\n" +"- 32 på Game Boy, PC Engine, SCC, Konami Bubble System, Namco WSG, Virtual " +"Boy och WonderSwan\n" +"- 64 på FDS\n" +"- 128 på X1-010\n" +"alla andra bredder kommer att skalas under uppspelning." + +#: src/gui/waveEdit.cpp:510 +msgid "Height" +msgstr "Höjd" + +#: src/gui/waveEdit.cpp:512 +msgid "" +"use a height of:\n" +"- 16 for Game Boy, WonderSwan, Namco WSG, Konami Bubble System, X1-010 " +"Envelope shape and N163\n" +"- 32 for PC Engine\n" +"- 64 for FDS and Virtual Boy\n" +"- 256 for X1-010 and SCC\n" +"any other heights will be scaled during playback." +msgstr "" +"använd en höjd på:\n" +"- 16 för Game Boy, WonderSwan, Namco WSG, Konami Bubble System, X1-010 " +"kuvertform och N163\n" +"- 32 för PC Engine\n" +"- 64 för FDS och Virtual Boy\n" +"- 256 för X1-010 och SCC\n" +"alla andra höjder kommer att skalas under uppspelning." + +#: src/gui/waveEdit.cpp:578 +msgid "Shapes" +msgstr "Former" + +#: src/gui/waveEdit.cpp:597 src/gui/insEdit.cpp:5879 src/gui/insEdit.cpp:6922 +#: src/gui/insEdit.cpp:6948 src/gui/insEdit.cpp:7008 src/gui/insEdit.cpp:7048 +#: src/gui/insEdit.cpp:7150 src/gui/insEdit.cpp:7436 src/gui/insEdit.cpp:7472 +msgid "Duty" +msgstr "Arbetscykel" + +#: src/gui/waveEdit.cpp:607 +msgid "Exponent" +msgstr "Exponent" + +#: src/gui/waveEdit.cpp:617 +msgid "XOR Point" +msgstr "XOR-punkt" + +#: src/gui/waveEdit.cpp:627 +msgid "Amplitude/Phase" +msgstr "Amplitud/Fas" + +#: src/gui/waveEdit.cpp:679 src/gui/waveEdit.cpp:723 src/gui/waveEdit.cpp:728 +msgid "Op" +msgstr "Op." + +#: src/gui/waveEdit.cpp:683 +msgid "Mult" +msgstr "Mult." + +#: src/gui/waveEdit.cpp:685 +msgid "FB" +msgstr "FB" + +#: src/gui/waveEdit.cpp:749 src/gui/waveEdit.cpp:750 +msgid "Connection Diagram" +msgstr "Anslutningsdiagram" + +#: src/gui/waveEdit.cpp:765 +msgid "Out" +msgstr "Ut" + +#: src/gui/waveEdit.cpp:872 +msgid "WaveTools" +msgstr "Våg-verktyg" + +#: src/gui/waveEdit.cpp:890 +msgid "Scale X" +msgstr "Skala X" + +#: src/gui/waveEdit.cpp:896 +msgid "wavetable longer than 256 samples!" +msgstr "wavetable längre än 256 samples!" + +#: src/gui/waveEdit.cpp:960 +msgid "Scale Y" +msgstr "Skala Y" + +#: src/gui/waveEdit.cpp:978 +msgid "Offset X" +msgstr "Offset X" + +#: src/gui/waveEdit.cpp:1000 +msgid "Offset Y" +msgstr "Offset Y" + +#: src/gui/waveEdit.cpp:1017 +msgid "Smooth" +msgstr "Jämn" + +#: src/gui/waveEdit.cpp:1045 src/gui/sampleEdit.cpp:996 +msgid "Amplify" +msgstr "Förstärka" + +#: src/gui/waveEdit.cpp:1063 src/gui/sampleEdit.cpp:1046 +msgid "Normalize" +msgstr "Normalisera" + +#: src/gui/waveEdit.cpp:1105 src/gui/sampleEdit.cpp:1121 +msgid "Reverse" +msgstr "Omvända" + +#: src/gui/waveEdit.cpp:1117 +msgid "Half" +msgstr "Halv" + +#: src/gui/waveEdit.cpp:1127 +msgid "Double" +msgstr "Dubbel" + +#: src/gui/waveEdit.cpp:1137 +msgid "Convert Signed/Unsigned" +msgstr "Konvertera signerad/osignerad" + +#: src/gui/waveEdit.cpp:1167 +msgid "Dec" +msgstr "Dec." + +#: src/gui/waveEdit.cpp:1171 src/gui/csPlayer.cpp:247 +msgid "Hex" +msgstr "Hex." + +#: src/gui/waveEdit.cpp:1179 +msgid "Signed/Unsigned" +msgstr "Signerad/Onsignerad" + +#: src/gui/sampleEdit.cpp:65 +#, c-format +msgid "%s: maximum sample rate is %d" +msgstr "%s: maximal samplingsfrekvens är %d" + +#: src/gui/sampleEdit.cpp:72 +#, c-format +msgid "%s: minimum sample rate is %d" +msgstr "%s: minsta samplingsfrekvens är %d" + +#: src/gui/sampleEdit.cpp:79 +#, c-format +msgid "%s: sample rate must be %d" +msgstr "%s: samplingsfrekvensen måste vara %d" + +#: src/gui/sampleEdit.cpp:99 src/gui/sampleEdit.cpp:100 +msgid "no sample selected" +msgstr "ingen sample vald" + +#: src/gui/sampleEdit.cpp:229 +#, c-format +msgid "SNES: loop start must be a multiple of 16 (try with %d)" +msgstr "SNES: loopstart måste vara en multipel av 16 (försök med %d)" + +#: src/gui/sampleEdit.cpp:235 +#, c-format +msgid "SNES: loop end must be a multiple of 16 (try with %d)" +msgstr "SNES: Loopens slut måste vara en multipel av 16 (försök med %d)" + +#: src/gui/sampleEdit.cpp:240 +msgid "SNES: sample length will be padded to multiple of 16" +msgstr "SNES: samplingslängden kommer att fyllas på till en multipel av 16" + +#: src/gui/sampleEdit.cpp:249 +msgid "QSound: loop cannot be longer than 32767 samples" +msgstr "QSound: loopen kan inte vara längre än 32767 samples" + +#: src/gui/sampleEdit.cpp:259 +msgid "NES: loop point ignored on DPCM (may only loop entire sample)" +msgstr "NES: looppunkten ignoreras på DPCM (kan bara loopa hela sample)" + +#: src/gui/sampleEdit.cpp:263 +msgid "NES: maximum DPCM sample length is 32648" +msgstr "NES: maximal DPCM-samplingslängd är 32648" + +#: src/gui/sampleEdit.cpp:268 +msgid "X1-010: samples can't loop" +msgstr "X1-010: samples kan inte loopas" + +#: src/gui/sampleEdit.cpp:271 +msgid "X1-010: maximum sample length is 131072" +msgstr "X1-010: maximal samplelängd är 131072" + +#: src/gui/sampleEdit.cpp:276 +msgid "GA20: samples can't loop" +msgstr "GA20: samples kan inte loopas" + +#: src/gui/sampleEdit.cpp:287 +msgid "YM2608: loop point ignored on ADPCM (may only loop entire sample)" +msgstr "YM2608: looppunkten ignoreras på ADPCM (kan bara loopa hela sample)" + +#: src/gui/sampleEdit.cpp:290 +msgid "YM2608: sample length will be padded to multiple of 512" +msgstr "YM2608: samplingslängden kommer att fyllas på till en multipel av 512" + +#: src/gui/sampleEdit.cpp:300 +msgid "YM2610: ADPCM-A samples can't loop" +msgstr "YM2610: ADPCM-A samples kan inte loopas" + +#: src/gui/sampleEdit.cpp:302 +msgid "YM2610: loop point ignored on ADPCM-B (may only loop entire sample)" +msgstr "YM2610: looppunkten ignoreras på ADPCM-B (kan bara loopa hela sample)" + +#: src/gui/sampleEdit.cpp:305 +msgid "YM2610: sample length will be padded to multiple of 512" +msgstr "YM2610: samplingslängden kommer att fyllas på till en multipel av 512" + +#: src/gui/sampleEdit.cpp:309 +msgid "YM2610: maximum ADPCM-A sample length is 2097152" +msgstr "YM2610: maximal ADPCM-A samplingslängd är 2097152" + +#: src/gui/sampleEdit.cpp:318 +msgid "Y8950: loop point ignored on ADPCM (may only loop entire sample)" +msgstr "Y8950: looppunkten ignoreras på ADPCM (kan bara loopa hela sample)" + +#: src/gui/sampleEdit.cpp:321 +msgid "Y8950: sample length will be padded to multiple of 512" +msgstr "Y8950: samplingslängden kommer att fyllas på till en multipel av 512" + +#: src/gui/sampleEdit.cpp:328 +msgid "Amiga: loop start must be a multiple of 2" +msgstr "Amiga: loopstart måste vara en multipel av 2" + +#: src/gui/sampleEdit.cpp:331 +msgid "Amiga: loop end must be a multiple of 2" +msgstr "Amiga: Loopänden måste vara en multipel av 2" + +#: src/gui/sampleEdit.cpp:335 +msgid "Amiga: maximum sample length is 131070" +msgstr "Amiga: maximal samplingslängd är 131070" + +#: src/gui/sampleEdit.cpp:344 +msgid "SegaPCM: maximum sample length is 65280" +msgstr "SegaPCM: maximal samplingslängd är 65280" + +#: src/gui/sampleEdit.cpp:353 +msgid "K053260: loop point ignored (may only loop entire sample)" +msgstr "K053260: looppunkten ignoreras (får bara loopa hela sample)" + +#: src/gui/sampleEdit.cpp:357 +msgid "K053260: maximum sample length is 65535" +msgstr "K053260: maximal samplingslängd är 65535" + +#: src/gui/sampleEdit.cpp:362 +msgid "C140: maximum sample length is 65535" +msgstr "C140: maximal samplingslängd är 65535" + +#: src/gui/sampleEdit.cpp:371 +msgid "C219: loop start must be a multiple of 2" +msgstr "C219: loopstart måste vara en multipel av 2" + +#: src/gui/sampleEdit.cpp:374 +msgid "C219: loop end must be a multiple of 2" +msgstr "C219: loopänden måste vara en multipel av 2" + +#: src/gui/sampleEdit.cpp:378 +msgid "C219: maximum sample length is 131072" +msgstr "C219: maximal samplingslängd är 131072" + +#: src/gui/sampleEdit.cpp:386 +msgid "MSM6295: samples can't loop" +msgstr "MSM6295: samples kan inte loopas" + +#: src/gui/sampleEdit.cpp:389 +msgid "MSM6295: maximum bankswitched sample length is 129024" +msgstr "MSM6295: maximal samplingslängd för bankväxling är 129024" + +#: src/gui/sampleEdit.cpp:395 +msgid "GBA DMA: loop start must be a multiple of 4" +msgstr "GBA DMA: loopstart måste vara en multipel av 4" + +#: src/gui/sampleEdit.cpp:398 +msgid "GBA DMA: loop length must be a multiple of 16" +msgstr "GBA DMA: looplängden måste vara en multipel av 16" + +#: src/gui/sampleEdit.cpp:402 +msgid "GBA DMA: sample length will be padded to multiple of 16" +msgstr "GBA DMA: samplingslängden kommer att fyllas på till en multipel av 16" + +#: src/gui/sampleEdit.cpp:411 +msgid "ES5506: backward loop mode isn't supported" +msgstr "ES5506: bakåtloopläge stöds inte" + +#: src/gui/sampleEdit.cpp:414 +msgid "" +"backward/ping-pong only supported in Generic PCM DAC\n" +"ping-pong also on ES5506" +msgstr "" +"bakåt/ping-pong stöds endast i Generic PCM DAC\n" +"ping-pong även på ES5506" + +#: src/gui/sampleEdit.cpp:444 +msgid "Info" +msgstr "Info" + +#: src/gui/sampleEdit.cpp:447 src/gui/sampleEdit.cpp:933 +msgid "Rate" +msgstr "Hastighet" + +#: src/gui/sampleEdit.cpp:453 +msgid "Compat Rate" +msgstr "Kompat. hastighet" + +#: src/gui/sampleEdit.cpp:457 +msgid "" +"used in DefleMask-compatible sample mode (17xx), in where samples are mapped " +"to an octave." +msgstr "" +"används i DefleMask-kompatibelt sampleläge (17xx), där samples mappas till " +"en oktav." + +#: src/gui/sampleEdit.cpp:463 +#, c-format +msgid "Loop (length: %d)##Loop" +msgstr "Loop (längd: %d)" + +#: src/gui/sampleEdit.cpp:463 src/gui/insEdit.cpp:544 src/gui/insEdit.cpp:554 +#: src/gui/insEdit.cpp:605 src/gui/insEdit.cpp:6017 +msgid "Loop" +msgstr "Loop" + +#: src/gui/sampleEdit.cpp:487 src/gui/sampleEdit.cpp:716 +#: src/gui/sampleEdit.cpp:752 +msgid "changing the loop in a BRR sample may result in glitches!" +msgstr "Om du ändrar loopen i en BRR-sample kan det leda till problem!" + +#: src/gui/sampleEdit.cpp:529 +msgid "BRR emphasis" +msgstr "BRR-betoning" + +#: src/gui/sampleEdit.cpp:538 +msgid "" +"this is a BRR sample.\n" +"enabling this option will muffle it (only affects non-SNES chips)." +msgstr "" +"Detta är ett BRR-prov.Om du aktiverar detta alternativ kommer det att dämpas " +"(påverkar endast icke-SNES-chips)." + +#: src/gui/sampleEdit.cpp:540 +msgid "" +"enable this option to slightly boost high frequencies\n" +"to compensate for the SNES' Gaussian filter's muffle." +msgstr "" +"aktivera detta alternativ för att öka höga frekvenser\n" +"för att kompensera för SNES Gaussian-filtrets dämpning." + +#: src/gui/sampleEdit.cpp:546 +msgid "8-bit dither" +msgstr "8-bit dither" + +#: src/gui/sampleEdit.cpp:554 +msgid "dither the sample when used on a chip that only supports 8-bit samples." +msgstr "" +"dither sample när den används på ett chip som bara stöder 8-bitars sampel." + +#: src/gui/sampleEdit.cpp:695 src/gui/gui.cpp:2975 +msgid "Start" +msgstr "Start" + +#: src/gui/sampleEdit.cpp:731 src/gui/gui.cpp:2983 +msgid "End" +msgstr "Slut" + +#: src/gui/sampleEdit.cpp:841 +#, c-format +msgid "" +"%s\n" +"%d bytes free" +msgstr "" +"%s\n" +"%d bytes lediga" + +#: src/gui/sampleEdit.cpp:843 +#, c-format +msgid "" +"%s (%s)\n" +"%d bytes free" +msgstr "" +"%s (%s)\n" +"%d bytes lediga" + +#: src/gui/sampleEdit.cpp:847 +msgid "" +"\n" +"\n" +"not enough memory for this sample!" +msgstr "" +"\n" +"\n" +"inte tillräckligt med minne för denna sample!" + +#: src/gui/sampleEdit.cpp:871 +msgid "Edit mode: Select" +msgstr "Redigeringsläge: Välj" + +#: src/gui/sampleEdit.cpp:880 +msgid "Edit mode: Draw" +msgstr "Redigeringsläge: Rita" + +#: src/gui/sampleEdit.cpp:891 src/gui/sampleEdit.cpp:902 +msgid "Resize" +msgstr "Ändra storlek" + +#: src/gui/sampleEdit.cpp:906 +msgid "couldn't resize! make sure your sample is 8 or 16-bit." +msgstr "kunde ej ändra storlek! se till att din sample är 8 eller 16-bit." + +#: src/gui/sampleEdit.cpp:926 src/gui/sampleEdit.cpp:957 +msgid "Resample" +msgstr "Sampla om" + +#: src/gui/sampleEdit.cpp:951 +msgid "Factor" +msgstr "Faktor" + +#: src/gui/sampleEdit.cpp:956 +msgid "Filter" +msgstr "Filter" + +#: src/gui/sampleEdit.cpp:961 +msgid "couldn't resample! make sure your sample is 8 or 16-bit." +msgstr "kunde ej sampla om! se till att din sample är 8 eller 16-bit." + +#: src/gui/sampleEdit.cpp:1010 src/gui/sampleEdit.cpp:1197 +#: src/gui/sampleEdit.cpp:1281 +msgid "Apply" +msgstr "Tillämpa" + +#: src/gui/sampleEdit.cpp:1053 +msgid "Fade in" +msgstr "Tona in" + +#: src/gui/sampleEdit.cpp:1060 +msgid "Fade out" +msgstr "Tona ut" + +#: src/gui/sampleEdit.cpp:1065 +msgid "Insert silence" +msgstr "Infoga tystnad" + +#: src/gui/sampleEdit.cpp:1076 +msgid "Go" +msgstr "Gå" + +#: src/gui/sampleEdit.cpp:1081 +msgid "couldn't insert! make sure your sample is 8 or 16-bit." +msgstr "kunde ej infoga! se till att din sample är 8 eller 16-bit." + +#: src/gui/sampleEdit.cpp:1098 +msgid "Apply silence" +msgstr "Tillämpa tystnad" + +#: src/gui/sampleEdit.cpp:1112 +msgid "Trim" +msgstr "Trimma" + +#: src/gui/sampleEdit.cpp:1135 +msgid "Signed/unsigned exchange" +msgstr "Signerad/osignerad växling" + +#: src/gui/sampleEdit.cpp:1140 +msgid "Apply filter" +msgstr "Tillämpa filter" + +#: src/gui/sampleEdit.cpp:1151 +msgid "Cutoff:" +msgstr "Brytfrekvens:" + +#: src/gui/sampleEdit.cpp:1161 src/gui/insEdit.cpp:5895 +#: src/gui/insEdit.cpp:5898 src/gui/insEdit.cpp:6953 src/gui/insEdit.cpp:7216 +#: src/gui/insEdit.cpp:7478 +msgid "Resonance" +msgstr "Resonans" + +#: src/gui/sampleEdit.cpp:1167 src/gui/insEdit.cpp:6897 +msgid "Power" +msgstr "Kraft" + +#: src/gui/sampleEdit.cpp:1181 +msgid "Low-pass" +msgstr "Lågpass" + +#: src/gui/sampleEdit.cpp:1186 +msgid "Band-pass" +msgstr "Bandpass" + +#: src/gui/sampleEdit.cpp:1191 +msgid "High-pass" +msgstr "Högpass" + +#: src/gui/sampleEdit.cpp:1262 +msgid "Crossfade loop points" +msgstr "Crossfade looppunkter" + +#: src/gui/sampleEdit.cpp:1271 +msgid "Number of samples" +msgstr "Antal samples" + +#: src/gui/sampleEdit.cpp:1277 +msgid "Linear <-> Equal power" +msgstr "Linjär <-> Lika kraft" + +#: src/gui/sampleEdit.cpp:1283 +msgid "Crossfade: length would go out of bounds. Aborted..." +msgstr "Crossfade: längden skulle gå utanför gränserna. Avbröts..." + +#: src/gui/sampleEdit.cpp:1286 +msgid "Crossfade: length would overflow loopStart. Try a smaller random value." +msgstr "" +"Crossfade: längd skulle överskridas loopStart. Försök med ett mindre " +"slumpmässigt värde." + +#: src/gui/sampleEdit.cpp:1332 +msgid "Preview sample" +msgstr "Förhandsgranska sample" + +#: src/gui/sampleEdit.cpp:1346 +msgid "Create instrument from sample" +msgstr "Skapa instrument från sample" + +#: src/gui/sampleEdit.cpp:1747 +msgid "paste (replace)" +msgstr "klistra in (ersätta)" + +#: src/gui/sampleEdit.cpp:1750 +msgid "paste (mix)" +msgstr "klistra in (mix)" + +#: src/gui/sampleEdit.cpp:1754 src/gui/gui.cpp:2769 +msgid "select all" +msgstr "välj alla" + +#: src/gui/sampleEdit.cpp:1758 +msgid "set loop to selection" +msgstr "Ställ in loop till urval" + +#: src/gui/sampleEdit.cpp:1761 +msgid "create wavetable from selection" +msgstr "skapa wavetable från urval" + +#: src/gui/sampleEdit.cpp:1767 +msgid "Draw" +msgstr "Rita" + +#: src/gui/sampleEdit.cpp:1767 +msgid "Select" +msgstr "Välj" + +#: src/gui/sampleEdit.cpp:1769 +#, c-format +msgid "%d samples, %d bytes" +msgstr "%d samples, %d byte" + +#: src/gui/sampleEdit.cpp:1784 +#, c-format +msgid " (%d-%d: %d samples)" +msgstr " (%d-%d: %d samples)" + +#: src/gui/sampleEdit.cpp:1976 +msgid "Non-8/16-bit samples cannot be edited without prior conversion." +msgstr "" +"Samples som inte är 8/16-bit kan inte redigeras utan föregående konvertering." + +#: src/gui/newSong.cpp:122 src/gui/newSong.cpp:123 +msgid "Choose a System!" +msgstr "Välj ett system!" + +#: src/gui/newSong.cpp:179 +msgid "Categories" +msgstr "Kategorier" + +#: src/gui/newSong.cpp:210 +msgid "no systems here yet!" +msgstr "inga system här ännu!" + +#: src/gui/newSong.cpp:212 +msgid "no results" +msgstr "inga resultat" + +#: src/gui/newSong.cpp:228 +msgid "I'm feeling lucky" +msgstr "Jag har tur" + +#: src/gui/newSong.cpp:230 +msgid "no categories available! what in the world." +msgstr "inga kategorier tillgängliga! vad i hela världen." + +#: src/gui/newSong.cpp:265 +msgid "it appears you're extremely lucky today!" +msgstr "det verkar som om du har extrem tur i dag!" + +#: src/gui/cursor.cpp:205 +#, c-format +msgid "finish selection: %d.%d,%d - %d.%d,%d" +msgstr "avsluta val: %d.%d,%d - %d.%d,%d" + +#: src/gui/tutorial.cpp:487 +msgid "" +"Play demo songs?\n" +"- Down: Play current song\n" +"- Up: Play demo songs" +msgstr "" +"Spela demolåtar?\n" +"- Ner: Spela nuvarande låt\n" +"- Upp: Spela upp demolåtar" + +#: src/gui/tutorial.cpp:491 +msgid "" +"Welcome to Combat Vehicle!\n" +"\n" +"Controls:\n" +"X - Shoot Arrow Key - Move\n" +"Z - Special Esc - Quit" +msgstr "" +"Välkommen till stridsfordonet! \n" +"\n" +"Kontroller:\n" +"X - Skjut Piltangent - Flytta\n" +"Z - Special Esc - Avsluta" + +#: src/gui/tutorial.cpp:496 +msgid "GAME OVER" +msgstr "SPELET ÄR SLUT" + +#: src/gui/tutorial.cpp:498 +msgid "High Score!" +msgstr "Rekord!" + +#: src/gui/tutorial.cpp:658 +msgid "Welcome!" +msgstr "Välkommen!" + +#: src/gui/tutorial.cpp:661 +msgid "welcome to Furnace, the biggest open-source chiptune tracker!" +msgstr "" +"välkommen till Furnace, den största chiptune-tracker med öppen källkod!" + +#: src/gui/tutorial.cpp:665 +msgid "here are some tips to get you started:" +msgstr "här är några tips för att komma i gång:" + +#: src/gui/tutorial.cpp:668 +msgid "" +"- add an instrument by clicking on + in Instruments\n" +"- click on the pattern view to focus it\n" +"- channel columns have the following, in this order: note, instrument, " +"volume and effects\n" +"- hit space bar while on the pattern to toggle Edit Mode\n" +"- click on the pattern or use arrow keys to move the cursor\n" +"- values (instrument, volume, effects and effect values) are in hexadecimal\n" +"- hit enter to play/stop the song\n" +"- extend the song by adding more orders in the Orders window\n" +"- click on the Orders matrix to change the patterns of a channel (left click " +"increases; right click decreases)" +msgstr "" +"- lägg till ett instrument genom att klicka på + i Instrument\n" +"- klicka på mönstervyn för att fokusera den\n" +"- kanalkolumner har följande, i denna ordning: note, instrument, volym och " +"effekter\n" +"- tryck på mellanslagstangenten när du är på mönstret för att växla till " +"redigeringsläge\n" +"- klicka på mönstret eller använd piltangenterna för att flytta markören\n" +"- värden (instrument, volym, effekter och effektvärden) är i hexadecimala\n" +"- tryck på enter för att spela/stoppa låten\n" +"- utöka låten genom att lägga till fler beställningar i orderfönstret\n" +"- klicka på ordermatrisen för att ändra mönstren för en kanal (vänsterklicka " +"ökar; högerklick minskar)" + +#: src/gui/tutorial.cpp:680 +msgid "" +"if you need help, you may:\n" +"- read the manual (a file called manual.pdf)\n" +"- ask for help in Discussions (https://github.com/tildearrow/furnace/" +"discussions), the Furnace Discord (https://discord.gg/EfrwT2wq7z) or Furnace " +"in Revolt (official: https://rvlt.gg/GRPS6tmc)" +msgstr "" +"om du behöver hjälp kan du:\n" +"- läsa manualen (en fil som heter manual.pdf)\n" +"- be om hjälp i diskussioner (https://github.com/tildearrow/furnace/" +"diskussioner), Furnace Discord (https://discord.gg/EfrwT2wq7z) eller Furnace " +"på Revolt (officiell: https://rvlt.gg/GRPS6tmc)" + +#: src/gui/tutorial.cpp:687 +msgid "" +"if you find any issues, be sure to report them! the issue tracker is here: " +"https://github.com/tildearrow/furnace/issues" +msgstr "" +"Om du hittar några problem, var noga med att rapportera dem! problemspåraren " +"finns här: https://github.com/tildearrow/furnace/issues" + +#: src/gui/tutorial.cpp:1428 +#, c-format +msgid "STAGE %d" +msgstr "STEG %d" + +#: src/gui/songInfo.cpp:32 +msgid "Song Info##Song Information" +msgstr "Låtinformation" + +#: src/gui/songInfo.cpp:50 +msgid "Author" +msgstr "Låtförfattare" + +#: src/gui/songInfo.cpp:60 +msgid "Album" +msgstr "Album" + +#: src/gui/songInfo.cpp:79 +msgid "Auto" +msgstr "Auto" + +#: src/gui/songInfo.cpp:100 +msgid "Tuning (A-4)" +msgstr "Stämning (A-4)" + +#: src/gui/grooves.cpp:38 +msgid "use effect 09xx to select a groove pattern." +msgstr "använd effekt 09xx för att välja ett spårmönster." + +#: src/gui/grooves.cpp:48 src/gui/gui.cpp:4480 +msgid "pattern" +msgstr "mönster" + +#: src/gui/grooves.cpp:132 +msgid "remove" +msgstr "ta bort" + +#: src/gui/doAction.cpp:45 src/gui/gui.cpp:4201 +msgid "Unsaved changes! Save changes before opening another file?" +msgstr "Osparade ändringar! Spara ändringar innan du öppnar en annan fil?" + +#: src/gui/doAction.cpp:52 +msgid "Unsaved changes! Save changes before opening backup?" +msgstr "" +"Osparade ändringar! Spara ändringar innan du öppnar upp säkerhetskopieringen?" + +#: src/gui/doAction.cpp:62 src/gui/gui.cpp:4237 src/gui/gui.cpp:5025 +#: src/gui/gui.cpp:5063 src/gui/gui.cpp:5069 src/gui/gui.cpp:5657 +#: src/gui/gui.cpp:5681 src/gui/gui.cpp:5705 src/gui/gui.cpp:5729 +#: src/gui/gui.cpp:5753 src/gui/gui.cpp:5777 +#, c-format +msgid "Error while saving file! (%s)" +msgstr "Fel när filen skulle sparas! (%s)" + +#: src/gui/doAction.cpp:189 +msgid "Error while sending request (MIDI output not configured?)" +msgstr "Fel vid sändning av begäran (MIDI-utgång inte konfigurerad?)" + +#: src/gui/doAction.cpp:197 +msgid "Select an option: (cannot be undone!)" +msgstr "Välj ett alternativ: (kan inte ångras!)" + +#: src/gui/doAction.cpp:691 src/gui/doAction.cpp:720 src/gui/doAction.cpp:1593 +#: src/gui/gui.cpp:6091 +msgid "too many instruments!" +msgstr "för många instrument!" + +#: src/gui/doAction.cpp:1124 +msgid "couldn't paste! make sure your sample is 8 or 16-bit." +msgstr "kunde inte klistra! se till att ditt sample är 8 eller 16-bit." + +#: src/gui/doAction.cpp:1628 +msgid "select at least one sample!" +msgstr "välj minst en sample!" + +#: src/gui/doAction.cpp:1630 +msgid "maximum size is 256 samples!" +msgstr "maximal storlek är 256 samples!" + +#: src/gui/csPlayer.cpp:113 +msgid "Load" +msgstr "Ladda" + +#: src/gui/csPlayer.cpp:117 +msgid "Kill" +msgstr "Döda" + +#: src/gui/csPlayer.cpp:119 +msgid "Kikai wa mou shindeiru!" +msgstr "Kone on jo kuollut!" + +#: src/gui/csPlayer.cpp:123 +msgid "Burn Current Song" +msgstr "Bränn nuvarande låt" + +#: src/gui/csPlayer.cpp:141 +msgid "Status" +msgstr "Status" + +#: src/gui/csPlayer.cpp:148 +msgid "start" +msgstr "starta" + +#: src/gui/csPlayer.cpp:150 +msgid "PC" +msgstr "PC" + +#: src/gui/csPlayer.cpp:152 +msgid "wait" +msgstr "vänta" + +#: src/gui/csPlayer.cpp:154 +msgid "SP" +msgstr "SP" + +#: src/gui/csPlayer.cpp:156 src/gui/insEdit.cpp:2733 +msgid "note" +msgstr "not" + +#: src/gui/csPlayer.cpp:158 src/gui/insEdit.cpp:2728 +msgid "pitch" +msgstr "tonhöjd" + +#: src/gui/csPlayer.cpp:160 +msgid "vol" +msgstr "vol" + +#: src/gui/csPlayer.cpp:162 +msgid "vols" +msgstr "vols" + +#: src/gui/csPlayer.cpp:164 +msgid "vib" +msgstr "vib" + +#: src/gui/csPlayer.cpp:166 +msgid "porta" +msgstr "porta" + +#: src/gui/csPlayer.cpp:168 +msgid "arp" +msgstr "arp" + +#: src/gui/csPlayer.cpp:203 +msgid "Trace" +msgstr "Spåra" + +#: src/gui/csPlayer.cpp:244 +msgid "Disassemble" +msgstr "Demontera" + +#: src/gui/gui.cpp:1136 src/gui/gui.cpp:1140 +msgid "the song is over!" +msgstr "låten har tagit slut!" + +#: src/gui/gui.cpp:1667 +msgid "Open File" +msgstr "Öppna fil" + +#: src/gui/gui.cpp:1668 src/gui/gui.cpp:1798 src/gui/gui.cpp:1838 +#: src/gui/gui.cpp:1953 src/gui/gui.cpp:1962 src/gui/gui.cpp:1971 +#: src/gui/gui.cpp:2073 src/gui/gui.cpp:2093 src/gui/gui.cpp:2111 +msgid "compatible files" +msgstr "kompatibla filer" + +#: src/gui/gui.cpp:1669 src/gui/gui.cpp:1743 src/gui/gui.cpp:1799 +#: src/gui/gui.cpp:1839 src/gui/gui.cpp:1851 src/gui/gui.cpp:1870 +#: src/gui/gui.cpp:2074 src/gui/gui.cpp:2084 src/gui/gui.cpp:2095 +#: src/gui/gui.cpp:2113 +msgid "all files" +msgstr "alla filer" + +#: src/gui/gui.cpp:1676 +msgid "no backups made yet!" +msgstr "inga säkerhetskopior gjorda ännu!" + +#: src/gui/gui.cpp:1681 src/gui/gui.cpp:1690 src/gui/gui.cpp:2130 +msgid "Furnace song" +msgstr "Furnace-låt" + +#: src/gui/gui.cpp:1689 +msgid "Save File" +msgstr "Spara fil" + +#: src/gui/gui.cpp:1698 src/gui/gui.cpp:1708 +msgid "Export DMF" +msgstr "Exportera DMF" + +#: src/gui/gui.cpp:1699 +msgid "DefleMask 1.1.3 module" +msgstr "DefleMask 1.1.3 modul" + +#: src/gui/gui.cpp:1709 +msgid "DefleMask 1.0/legacy module" +msgstr "DefleMask 1.0/föråldrad modul" + +#: src/gui/gui.cpp:1726 +msgid "Load Instrument" +msgstr "Ladda instrument" + +#: src/gui/gui.cpp:1727 +msgid "all compatible files" +msgstr "alla kompatibla filer" + +#: src/gui/gui.cpp:1728 src/gui/gui.cpp:1777 +msgid "Furnace instrument" +msgstr "Furnace-instrument" + +#: src/gui/gui.cpp:1729 src/gui/gui.cpp:1787 +msgid "DefleMask preset" +msgstr "DefleMask-förinställning" + +#: src/gui/gui.cpp:1730 +msgid "TFM Music Maker instrument" +msgstr "TFM Music Maker-instrument" + +#: src/gui/gui.cpp:1731 +msgid "VGM Music Maker instrument" +msgstr "VGM Music Maker-instrument" + +#: src/gui/gui.cpp:1732 +msgid "Scream Tracker 3 instrument" +msgstr "Scream Tracker 3-instrument" + +#: src/gui/gui.cpp:1733 +msgid "SoundBlaster instrument" +msgstr "SoundBlaster-instrument" + +#: src/gui/gui.cpp:1734 +msgid "Wohlstand OPL instrument" +msgstr "Wohlstand OPL-instrument" + +#: src/gui/gui.cpp:1735 +msgid "Wohlstand OPN instrument" +msgstr "Wohlstand OPN-instrument" + +#: src/gui/gui.cpp:1736 +msgid "Gens KMod patch dump" +msgstr "Gens KMod patchdumpning" + +#: src/gui/gui.cpp:1737 +msgid "BNK file (AdLib)" +msgstr "BNK fil (AdLib)" + +#: src/gui/gui.cpp:1738 +msgid "FF preset bank" +msgstr "FF förinställningsbank" + +#: src/gui/gui.cpp:1739 +msgid "2612edit GYB preset bank" +msgstr "2612edit GYB förinställningsbank" + +#: src/gui/gui.cpp:1740 +msgid "VOPM preset bank" +msgstr "VOPM förinställningsbank" + +#: src/gui/gui.cpp:1741 +msgid "Wohlstand WOPL bank" +msgstr "Wohlstand WOPL-bank" + +#: src/gui/gui.cpp:1742 +msgid "Wohlstand WOPN bank" +msgstr "Wohlstand WOPN-bank" + +#: src/gui/gui.cpp:1776 src/gui/gui.cpp:1786 +msgid "Save Instrument" +msgstr "Spara instrument" + +#: src/gui/gui.cpp:1797 +msgid "Load Wavetable" +msgstr "Ladda wavetable" + +#: src/gui/gui.cpp:1809 src/gui/gui.cpp:1818 src/gui/gui.cpp:1827 +msgid "Save Wavetable" +msgstr "Spara wavetable" + +#: src/gui/gui.cpp:1810 +msgid "Furnace wavetable" +msgstr "Furnace-wavetable" + +#: src/gui/gui.cpp:1819 +msgid "DefleMask wavetable" +msgstr "DefleMask-wavetable" + +#: src/gui/gui.cpp:1828 +msgid "raw data" +msgstr "rådata" + +#: src/gui/gui.cpp:1837 +msgid "Load Sample" +msgstr "Ladda sample" + +#: src/gui/gui.cpp:1850 +msgid "Load Raw Sample" +msgstr "Ladda råsample" + +#: src/gui/gui.cpp:1859 +msgid "Save Sample" +msgstr "Spara sample" + +#: src/gui/gui.cpp:1860 src/gui/gui.cpp:1880 src/gui/gui.cpp:1890 +#: src/gui/gui.cpp:1900 +msgid "Wave file" +msgstr "Vågfil" + +#: src/gui/gui.cpp:1869 +msgid "Save Raw Sample" +msgstr "Spara råsample" + +#: src/gui/gui.cpp:1879 src/gui/gui.cpp:1889 src/gui/gui.cpp:1899 +msgid "Export Audio" +msgstr "Exportera ljud" + +#: src/gui/gui.cpp:1909 +msgid "Export VGM" +msgstr "Exportera VGM" + +#: src/gui/gui.cpp:1910 +msgid "VGM file" +msgstr "VGM-fil" + +#: src/gui/gui.cpp:1919 +msgid "Export ZSM" +msgstr "Exportera ZSM" + +#: src/gui/gui.cpp:1920 +msgid "ZSM file" +msgstr "ZSM-fil" + +#: src/gui/gui.cpp:1929 src/gui/gui.cpp:1939 +msgid "Export Command Stream" +msgstr "Exportera kommandoström" + +#: src/gui/gui.cpp:1930 +msgid "text file" +msgstr "textfil" + +#: src/gui/gui.cpp:1940 +msgid "binary file" +msgstr "binärfil" + +#: src/gui/gui.cpp:1947 src/gui/gui.cpp:5376 +msgid "Coming soon!" +msgstr "Kommer snart!" + +#: src/gui/gui.cpp:1952 src/gui/gui.cpp:1961 src/gui/gui.cpp:1970 +msgid "Select Font" +msgstr "Välj teckensnitt" + +#: src/gui/gui.cpp:1979 +msgid "Select Color File" +msgstr "Välj färgfil" + +#: src/gui/gui.cpp:1980 src/gui/gui.cpp:1989 src/gui/gui.cpp:2008 +#: src/gui/gui.cpp:2017 src/gui/gui.cpp:2026 src/gui/gui.cpp:2035 +#: src/gui/gui.cpp:2053 src/gui/gui.cpp:2062 +msgid "configuration files" +msgstr "konfigurationsfiler" + +#: src/gui/gui.cpp:1988 +msgid "Select Keybind File" +msgstr "Välj tangentbindningsfil" + +#: src/gui/gui.cpp:1997 +msgid "Select Layout File" +msgstr "Välj layoutfil" + +#: src/gui/gui.cpp:1998 src/gui/gui.cpp:2044 +msgid ".ini files" +msgstr ".ini filer" + +#: src/gui/gui.cpp:2007 +msgid "Select User Presets File" +msgstr "Välj fil för användarförinställningar" + +#: src/gui/gui.cpp:2016 +msgid "Select Settings File" +msgstr "Välj inställningsfil" + +#: src/gui/gui.cpp:2025 +msgid "Export Colors" +msgstr "Exportera färger" + +#: src/gui/gui.cpp:2034 +msgid "Export Keybinds" +msgstr "Exportera tangentbindningar" + +#: src/gui/gui.cpp:2043 +msgid "Export Layout" +msgstr "Exportera layout" + +#: src/gui/gui.cpp:2052 +msgid "Export User Presets" +msgstr "Exportera användarförinställningar" + +#: src/gui/gui.cpp:2061 +msgid "Export Settings" +msgstr "Exportera inställningar" + +#: src/gui/gui.cpp:2072 +msgid "Load ROM" +msgstr "Ladda ROM" + +#: src/gui/gui.cpp:2082 +msgid "Play Command Stream" +msgstr "Spela upp kommandoström" + +#: src/gui/gui.cpp:2083 +msgid "command stream" +msgstr "kommandoström" + +#: src/gui/gui.cpp:2092 +msgid "Open Test" +msgstr "Öppna test" + +#: src/gui/gui.cpp:2094 src/gui/gui.cpp:2112 +msgid "another option" +msgstr "annat alternativ" + +#: src/gui/gui.cpp:2110 +msgid "Open Test (Multi)" +msgstr "Öppna text (multi)" + +#: src/gui/gui.cpp:2129 +msgid "Save Test" +msgstr "Spara test" + +#: src/gui/gui.cpp:2131 +msgid "DefleMask module" +msgstr "DefleMask-modul" + +#: src/gui/gui.cpp:2171 +msgid "compression error" +msgstr "kompressionsfel" + +#: src/gui/gui.cpp:2183 +msgid "zlib stream error" +msgstr "fel i zlib-ström" + +#: src/gui/gui.cpp:2205 +msgid "zlib finish stream error" +msgstr "fel i zlib-ströms avslutning" + +#: src/gui/gui.cpp:2316 +msgid "everything OK" +msgstr "allt OK" + +#: src/gui/gui.cpp:2334 +msgid "" +"you have loaded a backup!\n" +"if you need to, please save it somewhere.\n" +"\n" +"DO NOT RELY ON THE BACKUP SYSTEM FOR AUTO-SAVE!\n" +"Furnace will not save backups of backups." +msgstr "" +"Du har laddat en säkerhetskopia!Om du behöver, spara den någonstans.\n" +"\n" +"FÖRLITA DIG EJ PÅ BACKUP-SYSTEMET FÖR AUTO-SPARANDE!\n" +"Furnace sparar inte säkerhetskopior av säkerhetskopior." + +#: src/gui/gui.cpp:2342 src/gui/gui.cpp:3743 src/gui/gui.cpp:4213 +msgid "Unsaved changes! Save changes before opening file?" +msgstr "Osparade ändringar! Spara ändringar innan du öppnar filen?" + +#: src/gui/gui.cpp:2736 +msgid "paste special..." +msgstr "klistra in special..." + +#: src/gui/gui.cpp:2737 +msgid "paste mix" +msgstr "klistra in mix" + +#: src/gui/gui.cpp:2738 +msgid "paste mix (background)" +msgstr "klistra in (bakgrund)" + +#: src/gui/gui.cpp:2739 +msgid "paste with ins (foreground)" +msgstr "klistra in med ins. (förgrund)" + +#: src/gui/gui.cpp:2741 src/gui/gui.cpp:2753 src/gui/gui.cpp:2963 +msgid "no instruments available" +msgstr "inga instrument tillgängliga" + +#: src/gui/gui.cpp:2751 +msgid "paste with ins (background)" +msgstr "klistra in med ins. (bakgrund)" + +#: src/gui/gui.cpp:2763 +msgid "paste flood" +msgstr "klistra in flöd" + +#: src/gui/gui.cpp:2764 +msgid "paste overflow" +msgstr "klistra in överflöd" + +#: src/gui/gui.cpp:2773 +msgid "operation mask..." +msgstr "operationsmask..." + +#: src/gui/gui.cpp:2780 +msgid "pull delete" +msgstr "dra radera" + +#: src/gui/gui.cpp:2784 +msgid "insert" +msgstr "infoga" + +#: src/gui/gui.cpp:2792 +msgid "transpose (note)" +msgstr "transponering (not)" + +#: src/gui/gui.cpp:2796 +msgid "transpose (value)" +msgstr "transponering (värde)" + +#: src/gui/gui.cpp:2808 src/gui/gui.cpp:3052 +msgid "invert values" +msgstr "invertera värden" + +#: src/gui/gui.cpp:2824 +msgid "collapse/expand" +msgstr "förminska/expandera" + +#: src/gui/gui.cpp:2829 +msgid "input latch" +msgstr "ingångsspärr" + +#: src/gui/gui.cpp:2856 +msgid "" +"&&: selected instrument\n" +"..: no instrument" +msgstr "" +"&&: valt instrument\n" +"...: inget instrument" + +#: src/gui/gui.cpp:2910 +msgid "Set" +msgstr "Ställ in" + +#: src/gui/gui.cpp:2930 +msgid "note up" +msgstr "not upp" + +#: src/gui/gui.cpp:2931 +msgid "note down" +msgstr "not ner" + +#: src/gui/gui.cpp:2932 +msgid "octave up" +msgstr "oktav upp" + +#: src/gui/gui.cpp:2933 +msgid "octave down" +msgstr "oktav ner" + +#: src/gui/gui.cpp:2935 +msgid "values up" +msgstr "värden upp" + +#: src/gui/gui.cpp:2936 +msgid "values down" +msgstr "värden ner" + +#: src/gui/gui.cpp:2937 +msgid "values up (+16)" +msgstr "värden upp (+16)" + +#: src/gui/gui.cpp:2938 +msgid "values down (-16)" +msgstr "värden ner (-16)" + +#: src/gui/gui.cpp:2941 +msgid "transpose" +msgstr "transponera" + +#: src/gui/gui.cpp:2949 +msgid "Notes" +msgstr "Anteckningar" + +#: src/gui/gui.cpp:2954 +msgid "Values" +msgstr "Värden" + +#: src/gui/gui.cpp:2961 +msgid "change instrument..." +msgstr "byt instrument..." + +#: src/gui/gui.cpp:2974 +msgid "gradient/fade..." +msgstr "gradient/toning..." + +#: src/gui/gui.cpp:2991 src/gui/gui.cpp:3036 +msgid "Nibble mode" +msgstr "Nibble-läge" + +#: src/gui/gui.cpp:3000 +msgid "Go ahead" +msgstr "Fortsätt" + +#: src/gui/gui.cpp:3006 src/gui/insEdit.cpp:7604 +msgid "scale..." +msgstr "skala..." + +#: src/gui/gui.cpp:3011 +msgid "Scale" +msgstr "Skala" + +#: src/gui/gui.cpp:3017 src/gui/insEdit.cpp:7632 +msgid "randomize..." +msgstr "randomisera..." + +#: src/gui/gui.cpp:3018 +msgid "Minimum" +msgstr "Minimum" + +#: src/gui/gui.cpp:3027 +msgid "Maximum" +msgstr "Minimum" + +#: src/gui/gui.cpp:3056 +msgid "flip selection" +msgstr "vända val" + +#: src/gui/gui.cpp:3059 +msgid "collapse/expand amount##CollapseAmount" +msgstr "förminska/expandera belopp" + +#: src/gui/gui.cpp:3068 +msgid "collapse pattern" +msgstr "förminska mönstret" + +#: src/gui/gui.cpp:3069 +msgid "expand pattern" +msgstr "expandera mönstret" + +#: src/gui/gui.cpp:3074 +msgid "collapse song" +msgstr "förminska låten" + +#: src/gui/gui.cpp:3075 +msgid "expand song" +msgstr "expandera låten" + +#: src/gui/gui.cpp:3080 +msgid "find/replace" +msgstr "hitta/ersätta" + +#: src/gui/gui.cpp:3094 src/gui/gui.cpp:5807 src/gui/gui.cpp:7362 +#, c-format +msgid "could NOT save layout! %s" +msgstr "kunde EJ spara layouten! %s" + +#: src/gui/gui.cpp:3106 +#, c-format +msgid "could NOT load layout! %s" +msgstr "kunde EJ ladda layouten!" + +#: src/gui/gui.cpp:3568 +msgid "" +"Furnace has been started in Safe Mode.\n" +"this means that:\n" +"\n" +"- software rendering is being used\n" +"- audio output may not work\n" +"- font loading is disabled\n" +"\n" +"check any settings which may have made Furnace start up in this mode.\n" +"font loading is one of these." +msgstr "" +"Furnace har startats i felsäkert läge.\n" +"Det betyder att:\n" +"\n" +"- rendering av programvara används\n" +"- ljudutgång kanske inte fungerar\n" +"- inläsning av teckensnitt är inaktiverad\n" +"\n" +"kontrollera eventuella inställningar som kan ha gjort att Furnace startade i " +"detta läge.inläsning av teckensnitt är en av dessa." + +#: src/gui/gui.cpp:4053 +msgid "can't keep going without graphics! Furnace will quit now." +msgstr "kan ej fortsätta utan grafik! Furnace kommer att sluta nu." + +#: src/gui/gui.cpp:4191 +msgid "file" +msgstr "arkiv" + +#: src/gui/gui.cpp:4192 +msgid "new..." +msgstr "ny..." + +#: src/gui/gui.cpp:4199 +msgid "open..." +msgstr "öppna..." + +#: src/gui/gui.cpp:4206 +msgid "open recent" +msgstr "öppna senaste" + +#: src/gui/gui.cpp:4222 +msgid "nothing here yet" +msgstr "ingenting här ännu" + +#: src/gui/gui.cpp:4225 +msgid "clear history" +msgstr "rensa historik" + +#: src/gui/gui.cpp:4226 +msgid "Are you sure you want to clear the recent file list?" +msgstr "Är du säker på att du vill rensa listan över senaste filer?" + +#: src/gui/gui.cpp:4241 +msgid "save as..." +msgstr "spara som..." + +#: src/gui/gui.cpp:4246 src/gui/gui.cpp:4287 +msgid "export audio..." +msgstr "exportera ljud..." + +#: src/gui/gui.cpp:4250 src/gui/gui.cpp:4291 +msgid "export VGM..." +msgstr "exportera VGM..." + +#: src/gui/gui.cpp:4259 src/gui/gui.cpp:4300 +msgid "export ZSM..." +msgstr "exportera ZSM..." + +#: src/gui/gui.cpp:4269 src/gui/gui.cpp:4310 +msgid "export Amiga validation data..." +msgstr "exportera valideringsdata för Amiga..." + +#: src/gui/gui.cpp:4274 src/gui/gui.cpp:4315 +msgid "export text..." +msgstr "exportera text..." + +#: src/gui/gui.cpp:4278 src/gui/gui.cpp:4319 +msgid "export command stream..." +msgstr "exportera kommandoström..." + +#: src/gui/gui.cpp:4282 src/gui/gui.cpp:4323 +msgid "export .dmf..." +msgstr "exportera .dmf..." + +#: src/gui/gui.cpp:4328 +msgid "export..." +msgstr "exportera..." + +#: src/gui/gui.cpp:4334 +msgid "manage chips" +msgstr "hantera chips" + +#: src/gui/gui.cpp:4338 +msgid "add chip..." +msgstr "hantera chip..." + +#: src/gui/gui.cpp:4343 src/gui/sysManager.cpp:138 +#, c-format +msgid "cannot add chip! (%s)" +msgstr "kan ej lägga till chip! (%s)" + +#: src/gui/gui.cpp:4355 +msgid "configure chip..." +msgstr "konfigurera chip..." + +#: src/gui/gui.cpp:4365 +msgid "change chip..." +msgstr "byt chip..." + +#: src/gui/gui.cpp:4367 src/gui/gui.cpp:4390 +msgid "Preserve channel positions" +msgstr "Bevara kanalpositioner" + +#: src/gui/gui.cpp:4379 src/gui/sysManager.cpp:109 +#, c-format +msgid "cannot change chip! (%s)" +msgstr "kan ej byta chip! (%s)" + +#: src/gui/gui.cpp:4388 +msgid "remove chip..." +msgstr "ta bort chip..." + +#: src/gui/gui.cpp:4394 +#, c-format +msgid "cannot remove chip! (%s)" +msgstr "kan ej ta bort chip! (%s)" + +#: src/gui/gui.cpp:4408 +msgid "open built-in assets directory" +msgstr "öppna den inbyggda tillgångskatalogen" + +#: src/gui/gui.cpp:4414 +msgid "restore backup" +msgstr "återställa säkerhetskopia" + +#: src/gui/gui.cpp:4418 +msgid "exit..." +msgstr "avsluta..." + +#: src/gui/gui.cpp:4426 +msgid "edit" +msgstr "redigera" + +#: src/gui/gui.cpp:4434 +msgid "clear..." +msgstr "rensa" + +#: src/gui/gui.cpp:4439 +msgid "settings" +msgstr "inställningar" + +#: src/gui/gui.cpp:4441 +msgid "full screen" +msgstr "helskärm" + +#: src/gui/gui.cpp:4445 +msgid "lock layout" +msgstr "låsa layouten" + +#: src/gui/gui.cpp:4448 +msgid "pattern visualizer" +msgstr "mönstervisualiserare" + +#: src/gui/gui.cpp:4454 +msgid "reset layout" +msgstr "återställ layout" + +#: src/gui/gui.cpp:4458 +msgid "switch to mobile view" +msgstr "växla till mobilvy" + +#: src/gui/gui.cpp:4462 +msgid "user systems..." +msgstr "användarsystem..." + +#: src/gui/gui.cpp:4465 +msgid "settings..." +msgstr "inställningar..." + +#: src/gui/gui.cpp:4471 +msgid "Window" +msgstr "Fönster" + +#: src/gui/gui.cpp:4471 +msgid "window" +msgstr "fönster" + +#: src/gui/gui.cpp:4472 +msgid "song" +msgstr "låt" + +#: src/gui/gui.cpp:4473 +msgid "song comments" +msgstr "låtkommentar" + +#: src/gui/gui.cpp:4474 +msgid "song information" +msgstr "låtinformation" + +#: src/gui/gui.cpp:4475 +msgid "subsongs" +msgstr "underlåtar" + +#: src/gui/gui.cpp:4477 +msgid "channels" +msgstr "kanaler" + +#: src/gui/gui.cpp:4478 +msgid "chip manager" +msgstr "chiphanteraren" + +#: src/gui/gui.cpp:4479 +msgid "orders" +msgstr "orders" + +#: src/gui/gui.cpp:4481 +msgid "pattern manager" +msgstr "mönsterhenteraren" + +#: src/gui/gui.cpp:4482 +msgid "mixer" +msgstr "mixer" + +#: src/gui/gui.cpp:4483 +msgid "compatibility flags" +msgstr "kompatibilitetsflaggor" + +#: src/gui/gui.cpp:4486 src/gui/gui.cpp:4488 +msgid "assets" +msgstr "tillgångar" + +#: src/gui/gui.cpp:4490 +msgid "instruments" +msgstr "instrument" + +#: src/gui/gui.cpp:4491 +msgid "samples" +msgstr "samples" + +#: src/gui/gui.cpp:4492 +msgid "wavetables" +msgstr "wavetables" + +#: src/gui/gui.cpp:4495 +msgid "instrument editor" +msgstr "instrumentredigeraren" + +#: src/gui/gui.cpp:4496 +msgid "sample editor" +msgstr "sampleredigeraren" + +#: src/gui/gui.cpp:4497 +msgid "wavetable editor" +msgstr "wavetable-redigeraren" + +#: src/gui/gui.cpp:4500 +msgid "visualizers" +msgstr "visualiseringar" + +#: src/gui/gui.cpp:4501 +msgid "oscilloscope (master)" +msgstr "oscilloskop (master)" + +#: src/gui/gui.cpp:4502 +msgid "oscilloscope (per-channel)" +msgstr "oscilloskop (per-kanal)" + +#: src/gui/gui.cpp:4503 +msgid "oscilloscope (X-Y)" +msgstr "oscilloskop (X-Y)" + +#: src/gui/gui.cpp:4504 +msgid "volume meter" +msgstr "volymmätare" + +#: src/gui/gui.cpp:4507 +msgid "tempo" +msgstr "tempo" + +#: src/gui/gui.cpp:4508 +msgid "clock" +msgstr "klocka" + +#: src/gui/gui.cpp:4509 +msgid "grooves" +msgstr "grooves" + +#: src/gui/gui.cpp:4510 +msgid "speed" +msgstr "hastighet" + +#: src/gui/gui.cpp:4514 +msgid "log viewer" +msgstr "loggvisare" + +#: src/gui/gui.cpp:4515 +msgid "register view" +msgstr "registervy" + +#: src/gui/gui.cpp:4516 +msgid "statistics" +msgstr "statistik" + +#: src/gui/gui.cpp:4517 +msgid "memory composition" +msgstr "minneskomposition" + +#: src/gui/gui.cpp:4521 src/gui/gui.cpp:4529 +msgid "effect list" +msgstr "effektlista" + +#: src/gui/gui.cpp:4522 +msgid "play/edit controls" +msgstr "kontroller för uppspelning/redigering" + +#: src/gui/gui.cpp:4523 +msgid "piano/input pad" +msgstr "piano/inmatningsplatta" + +#: src/gui/gui.cpp:4524 +msgid "spoiler" +msgstr "spoiler" + +#: src/gui/gui.cpp:4528 +msgid "Help" +msgstr "Hjälp" + +#: src/gui/gui.cpp:4528 +msgid "help" +msgstr "hjälp" + +#: src/gui/gui.cpp:4530 +msgid "debug menu" +msgstr "felsökningsmeny" + +#: src/gui/gui.cpp:4531 +msgid "inspector" +msgstr "inspektör" + +#: src/gui/gui.cpp:4532 +msgid "panic" +msgstr "panik..." + +#: src/gui/gui.cpp:4533 +msgid "about..." +msgstr "om..." + +#: src/gui/gui.cpp:4548 +#, c-format +msgid "| Speed %d:%d" +msgstr "| Hastighet %d:%d" + +#: src/gui/gui.cpp:4550 +#, c-format +msgid "| Speed %d" +msgstr "| Hastighet %d" + +#: src/gui/gui.cpp:4552 +msgid "| Groove" +msgstr "| Groove" + +#: src/gui/gui.cpp:4555 +#, c-format +msgid " @ %gHz (%g BPM) " +msgstr " @ %gHz (%g BPM) " + +#: src/gui/gui.cpp:4558 +#, c-format +msgid "| Order %.2X/%.2X " +msgstr "| Order %.2X/%.2X " + +#: src/gui/gui.cpp:4560 +#, c-format +msgid "| Order %d/%d " +msgstr "| Order %d/%d " + +#: src/gui/gui.cpp:4564 +#, c-format +msgid "| Row %.2X/%.2X " +msgstr "| Rad %.2X/%.2X " + +#: src/gui/gui.cpp:4566 +#, c-format +msgid "| Row %d/%d " +msgstr "| Rad %d/%d " + +#: src/gui/gui.cpp:4569 +msgid "| " +msgstr "| " + +#: src/gui/gui.cpp:4572 +msgid "Don't you have anything better to do?" +msgstr "Har du ingenting bättre att göra?" + +#: src/gui/gui.cpp:4582 +#, c-format +msgid "%d year " +msgid_plural "%d years " +msgstr[0] "%d år " +msgstr[1] "%d år " + +#: src/gui/gui.cpp:4583 +#, c-format +msgid "%d month " +msgid_plural "%d months " +msgstr[0] "%d månad " +msgstr[1] "%d månader " + +#: src/gui/gui.cpp:4584 +#, c-format +msgid "%d day " +msgid_plural "%d days " +msgstr[0] "%d dag " +msgstr[1] "%d dagar " + +#: src/gui/gui.cpp:4609 +msgid "Note off (cut)" +msgstr "Not av (klipp)" + +#: src/gui/gui.cpp:4611 +msgid "Note off (release)" +msgstr "Not av (release)" + +#: src/gui/gui.cpp:4613 +msgid "Macro release only" +msgstr "Endast makrorelease" + +#: src/gui/gui.cpp:4615 +#, c-format +msgid "Note on: %s" +msgstr "Not på: %s" + +#: src/gui/gui.cpp:4623 +#, c-format +msgid "Ins %d: " +msgstr "Ins %d: " + +#: src/gui/gui.cpp:4626 +#, c-format +msgid "Ins %d: %s" +msgstr "Ins %d: %s" + +#: src/gui/gui.cpp:4635 +#, c-format +msgid "Set volume: %d (%.2X, INVALID!)" +msgstr "Ställ in volym: %d (%.2X, OGILTIG!)" + +#: src/gui/gui.cpp:4638 +#, c-format +msgid "Set volume: %d (%.2X, %d%%)" +msgstr "Set volume: %d (%.2X, %d%%)" + +#: src/gui/gui.cpp:4660 +msgid "| modified" +msgstr "| modifierad" + +#: src/gui/gui.cpp:4825 src/gui/gui.cpp:4828 +msgid "System File Dialog Pending" +msgstr "Dialogrutan för systemfiler väntar" + +#: src/gui/gui.cpp:4941 +msgid "" +"there was an error in the file dialog! you may want to report this issue " +"to:\n" +"https://github.com/tildearrow/furnace/issues\n" +"check the Log Viewer (window > log viewer) for more information.\n" +"\n" +"for now please disable the system file picker in Settings > General." +msgstr "" +"det uppstod ett fel i fildialogen! du kanske vill rapportera detta problem " +"till:\n" +"https://github.com/tildearrow/furnace/issues\n" +"kolla loggvisaren (fönster > loggvisare) för mer information.\n" +"\n" +"för tillfället vänligen inaktivera systemfilväljaren i Inställningar > " +"Allmänt." + +#: src/gui/gui.cpp:4944 +msgid "can't do anything without Storage permissions!" +msgstr "kan ej göra något utan lagringsbehörighet!" + +#: src/gui/gui.cpp:4946 +msgid "" +"Zenity/KDialog not available!\n" +"please install one of these, or disable the system file picker in Settings > " +"General." +msgstr "" +"Zenity/KDialog ej tillgänglig!\n" +"installera en av dessa, eller inaktivera systemfilväljaren i Inställningar > " +"Allmänt." + +#: src/gui/gui.cpp:5082 +msgid "" +"error while saving instrument! only the following instrument types are " +"supported:\n" +"- FM (OPN)\n" +"- SN76489/Sega PSG\n" +"- Game Boy\n" +"- PC Engine\n" +"- NES\n" +"- C64\n" +"- FM (OPLL)\n" +"- FDS" +msgstr "" +"fel när du sparar instrument! endast följande instrumenttyper stöds:\n" +"- FM (OPN)\n" +"- SN76489/Sega PSG\n" +"- Game Boy\n" +"- PC Engine\n" +"- NES\n" +"- C64\n" +"- FM (OPLL)\n" +"- FDS" + +#: src/gui/gui.cpp:5110 +msgid "there were some errors while loading samples:\n" +msgstr "det uppstod några fel när samples laddades:\n" + +#: src/gui/gui.cpp:5155 src/gui/gui.cpp:6339 +msgid "...but you haven't selected a sample!" +msgstr "...men du har inte valt någon sample!" + +#: src/gui/gui.cpp:5170 src/gui/gui.cpp:5179 +msgid "could not save sample! open Log Viewer for more information." +msgstr "kunde ej spara sample! öppna loggvisaren för mer information." + +#: src/gui/gui.cpp:5198 +msgid "there were some warnings/errors while loading instruments:\n" +msgstr "det fanns några varningar/fel när instrument laddades:\n" + +#: src/gui/gui.cpp:5204 +#, c-format +msgid "> %s: cannot load instrument! (%s)\n" +msgstr "> %s: kan ej ladda instrumentet! (%s)\n" + +#: src/gui/gui.cpp:5222 src/gui/gui.cpp:5276 +#, c-format +msgid "cannot load instrument! (%s)" +msgstr "kan ej ladda instrumentet! (%s)" + +#: src/gui/gui.cpp:5228 +msgid "" +"congratulations! you managed to load nothing.\n" +"you are entitled to a bug report." +msgstr "" +"grattis! du lyckades inte ladda någonting.\n" +"du har rätt till en buggrapport." + +#: src/gui/gui.cpp:5269 src/gui/gui.cpp:6243 +msgid "...but you haven't selected an instrument!" +msgstr "...men du har inte valt ett instrument!" + +#: src/gui/gui.cpp:5281 +msgid "there were some errors while loading wavetables:\n" +msgstr "det uppstod några fel när wavetables laddades:\n" + +#: src/gui/gui.cpp:5290 src/gui/gui.cpp:5300 src/gui/gui.cpp:5319 +#, c-format +msgid "cannot load wavetable! (%s)" +msgstr "kan ej ladda wavetable! (%s)" + +#: src/gui/gui.cpp:5327 +msgid "...but you haven't selected a wavetable!" +msgstr "...men du har inte valt ett wavetable!" + +#: src/gui/gui.cpp:5342 src/gui/gui.cpp:5363 src/gui/gui.cpp:5387 +#: src/gui/gui.cpp:5408 +msgid "could not open file!" +msgstr "kunde ej öppna filen!" + +#: src/gui/gui.cpp:5350 +#, c-format +msgid "could not write VGM! (%s)" +msgstr "kunde ej skriva VGM! (%s)" + +#: src/gui/gui.cpp:5371 +#, c-format +msgid "Could not write ZSM! (%s)" +msgstr "kunde ej skriva ZSM! (%s)" + +#: src/gui/gui.cpp:5395 +#, c-format +msgid "could not write text! (%s)" +msgstr "kunde ej skriva text! (%s)" + +#: src/gui/gui.cpp:5416 +#, c-format +msgid "could not write command stream! (%s)" +msgstr "kunde ej skriva kommandoström! (%s)" + +#: src/gui/gui.cpp:5440 +msgid "could not import user presets!" +msgstr "kunde inte importera användarinställningar!" + +#: src/gui/gui.cpp:5445 src/gui/gui.cpp:5462 +#, c-format +msgid "could not import user presets! (%s)" +msgstr "kunde inte importera användarinställningar! (%s)" + +#: src/gui/gui.cpp:5483 +#, c-format +msgid "You opened: %s" +msgstr "Du öppnade: %s" + +#: src/gui/gui.cpp:5486 +msgid "You opened:" +msgstr "Du öppnade:" + +#: src/gui/gui.cpp:5494 +#, c-format +msgid "You saved: %s" +msgstr "Du sparade: %s" + +#: src/gui/gui.cpp:5515 src/gui/gui.cpp:5636 src/gui/gui.cpp:5637 +#: src/gui/insEdit.cpp:7520 +msgid "Error" +msgstr "Fel" + +#: src/gui/gui.cpp:5520 src/gui/gui.cpp:6177 src/gui/gui.cpp:6178 +msgid "Select Instrument" +msgstr "Välj instrument" + +#: src/gui/gui.cpp:5525 src/gui/gui.cpp:6256 src/gui/gui.cpp:6257 +msgid "Import Raw Sample" +msgstr "Importera råsample" + +#: src/gui/gui.cpp:5540 src/gui/gui.cpp:5593 src/gui/gui.cpp:5594 +msgid "Rendering..." +msgstr "Renderar..." + +#: src/gui/gui.cpp:5595 +msgid "Please wait..." +msgstr "Vänligen vänta..." + +#: src/gui/gui.cpp:5596 +msgid "Abort" +msgstr "Avbryta" + +#: src/gui/gui.cpp:5638 +#, c-format +msgid "%s" +msgstr "%s" + +#: src/gui/gui.cpp:5868 +msgid "Erasing" +msgstr "Tar bort" + +#: src/gui/gui.cpp:5871 +msgid "All subsongs" +msgstr "Alla underlåtar" + +#: src/gui/gui.cpp:5878 +msgid "Current subsong" +msgstr "Nuvarande underlåt" + +#: src/gui/gui.cpp:5945 +msgid "Optimization" +msgstr "Optimering" + +#: src/gui/gui.cpp:5948 src/gui/patManager.cpp:36 +msgid "De-duplicate patterns" +msgstr "Avduplicera mönster" + +#: src/gui/gui.cpp:5957 +msgid "Remove unused instruments" +msgstr "Ta bort oanvända instrument" + +#: src/gui/gui.cpp:5970 +msgid "Remove unused samples" +msgstr "Ta bort oanvända samples" + +#: src/gui/gui.cpp:5987 +msgid "Never mind! Cancel" +msgstr "Strunt samma! Avbryta" + +#: src/gui/gui.cpp:6066 +msgid "Drum kit mode:" +msgstr "Trumsetläge:" + +#: src/gui/gui.cpp:6070 +msgid "12 samples per octave" +msgstr "12 samples per oktav" + +#: src/gui/gui.cpp:6075 +msgid "Starting octave" +msgstr "Startar oktav" + +#: src/gui/gui.cpp:6095 +msgid "Drum Kit" +msgstr "Trumset" + +#: src/gui/gui.cpp:6181 +msgid "this is an instrument bank! select which one to use:" +msgstr "detta är en instrumentbank! välj vilken du vill använda:" + +#: src/gui/gui.cpp:6184 +msgid "this is an instrument bank! select which ones to load:" +msgstr "detta är en instrumentbank! välj vilka som ska laddas:" + +#: src/gui/gui.cpp:6258 +msgid "Data type:" +msgstr "Datatyp:" + +#: src/gui/gui.cpp:6285 +msgid "(will be mixed down to mono)" +msgstr "(kommer att mixas ner till mono)" + +#: src/gui/gui.cpp:6286 +msgid "Unsigned" +msgstr "Osignerad" + +#: src/gui/gui.cpp:6290 +msgid "Big endian" +msgstr "Stor endian" + +#: src/gui/gui.cpp:6298 +msgid "Swap nibbles" +msgstr "Byta nibbles" + +#: src/gui/gui.cpp:6302 +msgid "Swap words" +msgstr "Byta ord" + +#: src/gui/gui.cpp:6306 +msgid "Encoding:" +msgstr "Kodning:" + +#: src/gui/gui.cpp:6319 +msgid "Reverse bit order" +msgstr "Omvänd bitordning" + +#: src/gui/gui.cpp:6361 +msgid "Error! No string provided!" +msgstr "Fel! Ingen sträng tillhandahålls!" + +#: src/gui/gui.cpp:6683 +msgid "it appears I couldn't load these fonts. any setting you can check?" +msgstr "" +"det verkar som jag inte kunde ladda dessa typsnitt. någon inställning du kan " +"kontrollera?" + +#: src/gui/gui.cpp:6863 src/gui/gui.cpp:6971 +msgid "" +"could not init renderer!\n" +"falling back to software renderer. please restart Furnace." +msgstr "" +"kunde inte starta renderaren\n" +"faller tillbaka till mjukvarurendering. vänligen starta om Furnace." + +#: src/gui/gui.cpp:6865 src/gui/gui.cpp:6973 +#, c-format +msgid "" +"could not init renderer! %s\n" +"falling back to software renderer. please restart Furnace." +msgstr "" +"kunde inte starta renderaren! %s\n" +"faller tillbaka till mjukvarurendering. starta om Furnace." + +#: src/gui/gui.cpp:6870 src/gui/gui.cpp:6978 +msgid "could not init renderer!" +msgstr "kunde inte starta renderaren!" + +#: src/gui/gui.cpp:6881 +#, c-format +msgid "could not open window! %s" +msgstr "kunde ej öppna fönstret! %s" + +#: src/gui/gui.cpp:6886 +msgid "" +"\n" +"falling back to software renderer. please restart Furnace." +msgstr "" +"\n" +"faller tillbaka till mjukvarurendering. vänligen starta om Furnace." + +#: src/gui/gui.cpp:7034 +msgid "Size column to fit###SizeOne" +msgstr "Storlek på kolumn för att passa" + +#: src/gui/gui.cpp:7036 +msgid "Size all columns to fit###SizeAll" +msgstr "Anpassa storleken på alla kolumner" + +#: src/gui/gui.cpp:7038 +msgid "Size all columns to default###SizeAll" +msgstr "Storlek på alla kolumner till standard" + +#: src/gui/gui.cpp:7040 +msgid "Reset order###ResetOrder" +msgstr "Återställa order" + +#: src/gui/gui.cpp:7042 +msgid "(Main menu bar)" +msgstr "(Huvudmenyfältet)" + +#: src/gui/gui.cpp:7044 +msgid "(Popup)" +msgstr "(Popup)" + +#: src/gui/gui.cpp:7046 +msgid "(Untitled)" +msgstr "(Utan titel)" + +#: src/gui/gui.cpp:7048 +msgid "Hide tab bar###HideTabBar" +msgstr "Dölj flikfältet" + +#: src/gui/gui.cpp:7052 +msgid "LocaleSettings: ccjk" +msgstr "Lokalinställningar: ccjk" + +#: src/gui/gui.cpp:7564 +msgid "Unsaved changes! Save changes before quitting?" +msgstr "Osparade ändringar! Spara ändringar innan du avslutar?" + +#: src/gui/sysManager.cpp:42 +msgid "Preserve channel order" +msgstr "Bevara kanalordningen" + +#: src/gui/sysManager.cpp:44 +msgid "Clone channel data" +msgstr "Klona kanaldata" + +#: src/gui/sysManager.cpp:46 +msgid "Clone at end" +msgstr "Klona på slutet" + +#: src/gui/sysManager.cpp:56 +msgid "Actions" +msgstr "Åtgärder" + +#: src/gui/sysManager.cpp:69 +msgid "(drag to swap chips)" +msgstr "(dra för att byta chips)" + +#: src/gui/sysManager.cpp:90 +msgid "Clone##SysDup" +msgstr "Klona" + +#: src/gui/sysManager.cpp:92 +#, c-format +msgid "cannot clone chip! (%s)" +msgstr "kan ej klona chip! (%s)" + +#: src/gui/sysManager.cpp:98 +msgid "Change##SysChange" +msgstr "Byt" + +#: src/gui/sysManager.cpp:120 +msgid "Are you sure you want to remove this chip?" +msgstr "Är du säker på att du vill ta bort detta chip?" + +#: src/gui/patManager.cpp:43 +msgid "Re-arrange patterns" +msgstr "Arrangera om mönster" + +#: src/gui/patManager.cpp:50 +msgid "Sort orders" +msgstr "Sortera orders" + +#: src/gui/patManager.cpp:57 +msgid "Make patterns unique" +msgstr "Gör mönstren unika" + +#: src/gui/patManager.cpp:103 +#, c-format +msgid "" +"Pattern %.2X\n" +"- not allocated" +msgstr "" +"Mönster %.2X\n" +"- inte tilldelat" + +#: src/gui/patManager.cpp:105 +#, c-format +msgid "" +"Pattern %.2X\n" +"- use count: %d (%.0f%%)\n" +"\n" +"right-click to erase" +msgstr "" +"Mönster %.2X\n" +"- antal användningar: %d (%.0f%%)\n" +"\n" +"högerklicka för att radera" + +#: src/gui/insEdit.cpp:39 +msgid "Down Down Down" +msgstr "Ner ner ner" + +#: src/gui/insEdit.cpp:40 +msgid "Down." +msgstr "Ner." + +#: src/gui/insEdit.cpp:41 +msgid "Down Up Down Up" +msgstr "Ner upp ner upp" + +#: src/gui/insEdit.cpp:42 +msgid "Down UP" +msgstr "Ner UPP" + +#: src/gui/insEdit.cpp:43 +msgid "Up Up Up" +msgstr "Upp upp upp" + +#: src/gui/insEdit.cpp:44 +msgid "Up." +msgstr "Upp." + +#: src/gui/insEdit.cpp:45 +msgid "Up Down Up Down" +msgstr "Upp ner upp ner" + +#: src/gui/insEdit.cpp:46 +msgid "Up DOWN" +msgstr "Upp NER" + +#: src/gui/insEdit.cpp:50 +msgid "Algorithm" +msgstr "Algoritm" + +#: src/gui/insEdit.cpp:50 +msgid "Feedback" +msgstr "Återkoppling" + +#: src/gui/insEdit.cpp:50 +msgid "LFO > Freq" +msgstr "LFO > Frekv." + +#: src/gui/insEdit.cpp:50 +msgid "LFO > Amp" +msgstr "LFO > Amp." + +#: src/gui/insEdit.cpp:50 +msgid "Decay 2" +msgstr "Decay 2" + +#: src/gui/insEdit.cpp:50 +msgid "EnvScale" +msgstr "ADSR-skala" + +#: src/gui/insEdit.cpp:50 +msgid "Multiplier" +msgstr "Multiplikator" + +#: src/gui/insEdit.cpp:50 +msgid "Detune 2" +msgstr "Detune 2" + +#: src/gui/insEdit.cpp:50 +msgid "AM" +msgstr "AM" + +#: src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:5438 src/gui/insEdit.cpp:6516 +msgid "AM Depth" +msgstr "AM-djup" + +#: src/gui/insEdit.cpp:50 +msgid "Vibrato Depth" +msgstr "Vibratodjup" + +#: src/gui/insEdit.cpp:50 +msgid "Sustained" +msgstr "Sustained" + +#: src/gui/insEdit.cpp:50 +msgid "Level Scaling" +msgstr "Nivåskalning" + +#: src/gui/insEdit.cpp:50 +msgid "Vibrato" +msgstr "Vibrato" + +#: src/gui/insEdit.cpp:50 +msgid "Scale Rate" +msgstr "Skalhastighet" + +#: src/gui/insEdit.cpp:50 +msgid "OP2 Half Sine" +msgstr "OP2 halvsinus" + +#: src/gui/insEdit.cpp:50 +msgid "OP1 Half Sine" +msgstr "OP1 halvsinus" + +#: src/gui/insEdit.cpp:50 +msgid "EnvShift" +msgstr "ADSR-skift" + +#: src/gui/insEdit.cpp:50 +msgid "Reverb" +msgstr "Reverb" + +#: src/gui/insEdit.cpp:50 +msgid "Fine" +msgstr "Fin" + +#: src/gui/insEdit.cpp:50 +msgid "LFO2 > Freq" +msgstr "LFO2 > Frekv." + +#: src/gui/insEdit.cpp:50 +msgid "LFO2 > Amp" +msgstr "LFO2 > Amp." + +#: src/gui/insEdit.cpp:56 src/gui/insEdit.cpp:68 src/gui/insEdit.cpp:7391 +msgid "OP4 Noise Mode" +msgstr "OP4 brusläge" + +#: src/gui/insEdit.cpp:57 +msgid "Envelope Delay" +msgstr "ADSR-delay" + +#: src/gui/insEdit.cpp:58 src/gui/insEdit.cpp:70 +msgid "Output Level" +msgstr "Utgångsnivå" + +#: src/gui/insEdit.cpp:59 +msgid "Modulation Input Level" +msgstr "Moduleringsingångsnivå" + +#: src/gui/insEdit.cpp:60 +msgid "Left Output" +msgstr "Vänster utgång" + +#: src/gui/insEdit.cpp:61 +msgid "Right Output" +msgstr "Höger utgång" + +#: src/gui/insEdit.cpp:62 +msgid "Coarse Tune (semitones)" +msgstr "Modulatortonsstämning (semitoner)" + +#: src/gui/insEdit.cpp:64 +msgid "Fixed Frequency Mode" +msgstr "Fast frekvensläge" + +#: src/gui/insEdit.cpp:69 +msgid "Env. Delay" +msgstr "ADSR-delay" + +#: src/gui/insEdit.cpp:71 +msgid "ModInput" +msgstr "ModIngång" + +#: src/gui/insEdit.cpp:72 +msgid "Left" +msgstr "Vänster" + +#: src/gui/insEdit.cpp:73 +msgid "Right" +msgstr "Höger" + +#: src/gui/insEdit.cpp:74 +msgid "Tune" +msgstr "Stämma" + +#: src/gui/insEdit.cpp:76 src/gui/insEdit.cpp:610 src/gui/insEdit.cpp:3792 +#: src/gui/insEdit.cpp:4554 src/gui/insEdit.cpp:4848 +msgid "Fixed" +msgstr "Fast" + +#: src/gui/insEdit.cpp:98 src/gui/insEdit.cpp:117 src/gui/insEdit.cpp:136 +#: src/gui/insEdit.cpp:156 +msgid "User" +msgstr "Användare" + +#: src/gui/insEdit.cpp:99 +msgid "1. Violin" +msgstr "1. Violin" + +#: src/gui/insEdit.cpp:100 src/gui/insEdit.cpp:138 src/gui/insEdit.cpp:158 +msgid "2. Guitar" +msgstr "2. Gitarr" + +#: src/gui/insEdit.cpp:101 src/gui/insEdit.cpp:159 +msgid "3. Piano" +msgstr "3. Piano" + +#: src/gui/insEdit.cpp:102 src/gui/insEdit.cpp:160 +msgid "4. Flute" +msgstr "4. Flöjt" + +#: src/gui/insEdit.cpp:103 src/gui/insEdit.cpp:122 src/gui/insEdit.cpp:161 +msgid "5. Clarinet" +msgstr "5. Klarinett" + +#: src/gui/insEdit.cpp:104 +msgid "6. Oboe" +msgstr "6. Oboe" + +#: src/gui/insEdit.cpp:105 src/gui/insEdit.cpp:124 src/gui/insEdit.cpp:143 +#: src/gui/insEdit.cpp:163 +msgid "7. Trumpet" +msgstr "7. Trumpet" + +#: src/gui/insEdit.cpp:106 +msgid "8. Organ" +msgstr "8. Organ" + +#: src/gui/insEdit.cpp:107 +msgid "9. Horn" +msgstr "9. Horn" + +#: src/gui/insEdit.cpp:108 +msgid "10. Synth" +msgstr "10. Synt" + +#: src/gui/insEdit.cpp:109 +msgid "11. Harpsichord" +msgstr "11. Cembalo" + +#: src/gui/insEdit.cpp:110 src/gui/insEdit.cpp:129 src/gui/insEdit.cpp:148 +msgid "12. Vibraphone" +msgstr "12. Vibrafon" + +#: src/gui/insEdit.cpp:111 +msgid "13. Synth Bass" +msgstr "13. Syntbas" + +#: src/gui/insEdit.cpp:112 +msgid "14. Acoustic Bass" +msgstr "14. Akustisk bas" + +#: src/gui/insEdit.cpp:113 +msgid "15. Electric Guitar" +msgstr "15. Elgitarr" + +#: src/gui/insEdit.cpp:114 src/gui/insEdit.cpp:133 src/gui/insEdit.cpp:152 +#: src/gui/insEdit.cpp:172 src/gui/insEdit.cpp:3176 +msgid "Drums" +msgstr "Trummor" + +#: src/gui/insEdit.cpp:118 +msgid "1. Electric String" +msgstr "1. Elektrisk stråkin" + +#: src/gui/insEdit.cpp:119 +msgid "2. Bow wow" +msgstr "2. Bow wow" + +#: src/gui/insEdit.cpp:120 src/gui/insEdit.cpp:139 +msgid "3. Electric Guitar" +msgstr "3. Elgitarr" + +#: src/gui/insEdit.cpp:121 +msgid "4. Organ" +msgstr "4. Organ" + +#: src/gui/insEdit.cpp:123 +msgid "6. Saxophone" +msgstr "6. Saxofon" + +#: src/gui/insEdit.cpp:125 +msgid "8. Street Organ" +msgstr "8. Gatuorgel" + +#: src/gui/insEdit.cpp:126 +msgid "9. Synth Brass" +msgstr "9. Syntmässing" + +#: src/gui/insEdit.cpp:127 +msgid "10. Electric Piano" +msgstr "10. Elektriskt piano" + +#: src/gui/insEdit.cpp:128 +msgid "11. Bass" +msgstr "11. Bas" + +#: src/gui/insEdit.cpp:130 +msgid "13. Chime" +msgstr "13. Klockspel" + +#: src/gui/insEdit.cpp:131 +msgid "14. Tom Tom II" +msgstr "14. Tom Tom II" + +#: src/gui/insEdit.cpp:132 +msgid "15. Noise" +msgstr "15. Brus" + +#: src/gui/insEdit.cpp:137 +msgid "1. Strings" +msgstr "1. Stråkinstrument" + +#: src/gui/insEdit.cpp:140 +msgid "4. Electric Piano" +msgstr "4. Elektriskt piano" + +#: src/gui/insEdit.cpp:141 +msgid "5. Flute" +msgstr "5. Flöjt" + +#: src/gui/insEdit.cpp:142 +msgid "6. Marimba" +msgstr "6. Marimba" + +#: src/gui/insEdit.cpp:144 +msgid "8. Harmonica" +msgstr "8. Munspel" + +#: src/gui/insEdit.cpp:145 +msgid "9. Tuba" +msgstr "9. Tuba" + +#: src/gui/insEdit.cpp:146 +msgid "10. Synth Brass" +msgstr "10. Syntmässing" + +#: src/gui/insEdit.cpp:147 +msgid "11. Short Saw" +msgstr "11. Kortsåg" + +#: src/gui/insEdit.cpp:149 +msgid "13. Electric Guitar 2" +msgstr "13. Elgitarr 2" + +#: src/gui/insEdit.cpp:150 +msgid "14. Synth Bass" +msgstr "14. Syntbas" + +#: src/gui/insEdit.cpp:151 +msgid "15. Sitar" +msgstr "15. Sitar" + +#: src/gui/insEdit.cpp:157 +msgid "1. Bell" +msgstr "1. Klocka" + +#: src/gui/insEdit.cpp:162 +msgid "6. Rattling Bell" +msgstr "6. Rasslande klocka" + +#: src/gui/insEdit.cpp:164 +msgid "8. Reed Organ" +msgstr "8. Räfflad orgel" + +#: src/gui/insEdit.cpp:165 +msgid "9. Soft Bell" +msgstr "9. Mjukklocka" + +#: src/gui/insEdit.cpp:166 +msgid "10. Xylophone" +msgstr "10. Xylofon" + +#: src/gui/insEdit.cpp:167 +msgid "11. Vibraphone" +msgstr "11. Vibrafon" + +#: src/gui/insEdit.cpp:168 +msgid "12. Brass" +msgstr "12. Mässing" + +#: src/gui/insEdit.cpp:169 +msgid "13. Bass Guitar" +msgstr "13. Basgitarr" + +#: src/gui/insEdit.cpp:170 +msgid "14. Synth" +msgstr "14. Synt" + +#: src/gui/insEdit.cpp:171 +msgid "15. Chorus" +msgstr "15. Kör" + +#: src/gui/insEdit.cpp:178 src/gui/insEdit.cpp:189 +msgid "Half Sine" +msgstr "Halvsinus" + +#: src/gui/insEdit.cpp:179 src/gui/insEdit.cpp:190 +msgid "Absolute Sine" +msgstr "Absolut sinus" + +#: src/gui/insEdit.cpp:180 +msgid "Quarter Sine" +msgstr "Kvartal sinus" + +#: src/gui/insEdit.cpp:181 src/gui/insEdit.cpp:203 +msgid "Squished Sine" +msgstr "Pressad sinus" + +#: src/gui/insEdit.cpp:182 src/gui/insEdit.cpp:205 +msgid "Squished AbsSine" +msgstr "Pressad abs. sinus" + +#: src/gui/insEdit.cpp:184 src/gui/insEdit.cpp:195 +msgid "Derived Square" +msgstr "Härledd kvadrat" + +#: src/gui/insEdit.cpp:191 +msgid "Pulse Sine" +msgstr "Pulssinus" + +#: src/gui/insEdit.cpp:192 +msgid "Sine (Even Periods)" +msgstr "Sinus (jämna perioder)" + +#: src/gui/insEdit.cpp:193 +msgid "AbsSine (Even Periods)" +msgstr "Absolut sinus (jämna perioder)" + +#: src/gui/insEdit.cpp:201 +msgid "Cut Sine" +msgstr "Skärsinus" + +#: src/gui/insEdit.cpp:202 +msgid "Cut Triangle" +msgstr "Skärtriangel" + +#: src/gui/insEdit.cpp:204 +msgid "Squished Triangle" +msgstr "Pressad triangel" + +#: src/gui/insEdit.cpp:206 +msgid "Squished AbsTriangle" +msgstr "Pressad abs. triangel" + +#: src/gui/insEdit.cpp:224 +msgid "Noise disabled" +msgstr "Brus inaktiverat" + +#: src/gui/insEdit.cpp:225 +msgid "Square + noise" +msgstr "Kvadrat + brus" + +#: src/gui/insEdit.cpp:226 +msgid "Ringmod from OP3 + noise" +msgstr "Ringmod från OP3 + brus" + +#: src/gui/insEdit.cpp:227 +msgid "" +"Ringmod from OP3 + double pitch ModInput\n" +"WARNING - has emulation issues; subject to change" +msgstr "" +"Ringmod från OP3 + dubbel tonhöjd ModIngång\n" +"VARNING - har emuleringsproblem; kan komma att ändras" + +#: src/gui/insEdit.cpp:232 +msgid "Bitwise AND" +msgstr "Bitwise LOGISKT OCH" + +#: src/gui/insEdit.cpp:233 +msgid "Bitwise OR" +msgstr "Bitwise LOGISKT ELLER" + +#: src/gui/insEdit.cpp:234 +msgid "Bitwise XOR" +msgstr "Bitwise XOR" + +#: src/gui/insEdit.cpp:239 src/gui/insEdit.cpp:390 +msgid "gate" +msgstr "gate" + +#: src/gui/insEdit.cpp:240 src/gui/insEdit.cpp:391 +msgid "sync" +msgstr "synk" + +#: src/gui/insEdit.cpp:241 src/gui/insEdit.cpp:392 +msgid "ring" +msgstr "ring" + +#: src/gui/insEdit.cpp:327 +msgid "How did you even" +msgstr "Hur kunde du ens" + +#: src/gui/insEdit.cpp:335 +msgid "triangle" +msgstr "triangel" + +#: src/gui/insEdit.cpp:336 src/gui/insEdit.cpp:5821 +msgid "saw" +msgstr "såg" + +#: src/gui/insEdit.cpp:337 src/gui/insEdit.cpp:5827 +msgid "pulse" +msgstr "puls" + +#: src/gui/insEdit.cpp:338 src/gui/insEdit.cpp:344 src/gui/insEdit.cpp:373 +#: src/gui/insEdit.cpp:424 src/gui/insEdit.cpp:429 src/gui/insEdit.cpp:5833 +msgid "noise" +msgstr "brus" + +#: src/gui/insEdit.cpp:343 +msgid "tone" +msgstr "ton" + +#: src/gui/insEdit.cpp:345 +msgid "envelope" +msgstr "ADSR" + +#: src/gui/insEdit.cpp:350 +msgid "hold" +msgstr "håll" + +#: src/gui/insEdit.cpp:351 +msgid "alternate" +msgstr "alternativ" + +#: src/gui/insEdit.cpp:352 src/gui/insEdit.cpp:364 +msgid "direction" +msgstr "riktning" + +#: src/gui/insEdit.cpp:353 src/gui/insEdit.cpp:436 +msgid "enable" +msgstr "aktivera" + +#: src/gui/insEdit.cpp:357 src/gui/insEdit.cpp:368 +msgid "enabled" +msgstr "aktiverad" + +#: src/gui/insEdit.cpp:361 +msgid "mirror" +msgstr "spegla" + +#: src/gui/insEdit.cpp:365 +msgid "resolution" +msgstr "upplösning" + +#: src/gui/insEdit.cpp:366 +msgid "fixed" +msgstr "fast" + +#: src/gui/insEdit.cpp:367 +msgid "N/A" +msgstr "N/A" + +#: src/gui/insEdit.cpp:374 +msgid "echo" +msgstr "eko" + +#: src/gui/insEdit.cpp:375 +msgid "pitch mod" +msgstr "tonhöjdsmod." + +#: src/gui/insEdit.cpp:376 src/gui/insEdit.cpp:508 +msgid "invert right" +msgstr "invertera höger" + +#: src/gui/insEdit.cpp:377 src/gui/insEdit.cpp:509 +msgid "invert left" +msgstr "invertera vänster" + +#: src/gui/insEdit.cpp:382 src/gui/insEdit.cpp:5905 +msgid "low" +msgstr "låg" + +#: src/gui/insEdit.cpp:383 src/gui/insEdit.cpp:5911 +msgid "band" +msgstr "band" + +#: src/gui/insEdit.cpp:384 src/gui/insEdit.cpp:5917 +msgid "high" +msgstr "hög" + +#: src/gui/insEdit.cpp:385 src/gui/insEdit.cpp:5924 +msgid "ch3off" +msgstr "k3av" + +#: src/gui/insEdit.cpp:393 +msgid "test" +msgstr "test" + +#: src/gui/insEdit.cpp:398 +msgid "15KHz" +msgstr "15KHz" + +#: src/gui/insEdit.cpp:399 +msgid "filter 2+4" +msgstr "filter 2+4" + +#: src/gui/insEdit.cpp:400 +msgid "filter 1+3" +msgstr "filter 1+3" + +#: src/gui/insEdit.cpp:401 +msgid "16-bit 3+4" +msgstr "16-bit 3+4" + +#: src/gui/insEdit.cpp:402 +msgid "16-bit 1+2" +msgstr "16-bit 1+2" + +#: src/gui/insEdit.cpp:403 +msgid "high3" +msgstr "hög3" + +#: src/gui/insEdit.cpp:404 +msgid "high1" +msgstr "hög1" + +#: src/gui/insEdit.cpp:405 +msgid "poly9" +msgstr "poly9" + +#: src/gui/insEdit.cpp:414 +msgid "16'" +msgstr "16'" + +#: src/gui/insEdit.cpp:415 +msgid "8'" +msgstr "8'" + +#: src/gui/insEdit.cpp:416 +msgid "4'" +msgstr "4'" + +#: src/gui/insEdit.cpp:417 +msgid "2'" +msgstr "2'" + +#: src/gui/insEdit.cpp:418 +msgid "sustain" +msgstr "sustain" + +#: src/gui/insEdit.cpp:423 +msgid "square" +msgstr "kvadrat" + +#: src/gui/insEdit.cpp:431 +msgid "surround" +msgstr "surround" + +#: src/gui/insEdit.cpp:437 +msgid "oneshot" +msgstr "oneshot" + +#: src/gui/insEdit.cpp:438 +msgid "split L/R" +msgstr "dela L/R" + +#: src/gui/insEdit.cpp:439 +msgid "HinvR" +msgstr "HinvR" + +#: src/gui/insEdit.cpp:440 +msgid "VinvR" +msgstr "VinvR" + +#: src/gui/insEdit.cpp:441 +msgid "HinvL" +msgstr "HinvL" + +#: src/gui/insEdit.cpp:442 +msgid "VinvL" +msgstr "VinvL" + +#: src/gui/insEdit.cpp:447 src/gui/insEdit.cpp:476 +msgid "ring mod" +msgstr "ringmod" + +#: src/gui/insEdit.cpp:448 +msgid "low pass" +msgstr "lågpass" + +#: src/gui/insEdit.cpp:449 src/gui/insEdit.cpp:475 +msgid "high pass" +msgstr "högpass" + +#: src/gui/insEdit.cpp:450 +msgid "band pass" +msgstr "bandpass" + +#: src/gui/insEdit.cpp:459 +msgid "enable tap B" +msgstr "aktivera tap-B" + +#: src/gui/insEdit.cpp:460 +msgid "AM with slope" +msgstr "AM med lutning" + +#: src/gui/insEdit.cpp:465 +msgid "invert B" +msgstr "invertera B" + +#: src/gui/insEdit.cpp:466 +msgid "invert A" +msgstr "invertera A" + +#: src/gui/insEdit.cpp:467 +msgid "reset B" +msgstr "återställa B" + +#: src/gui/insEdit.cpp:468 +msgid "reset A" +msgstr "återställa A" + +#: src/gui/insEdit.cpp:469 +msgid "clip B" +msgstr "klipp B" + +#: src/gui/insEdit.cpp:470 +msgid "clip A" +msgstr "klipp A" + +#: src/gui/insEdit.cpp:477 +msgid "swap counters (noise)" +msgstr "byt räknare (brus)" + +#: src/gui/insEdit.cpp:478 +msgid "low pass (noise)" +msgstr "lågpass (brus)" + +#: src/gui/insEdit.cpp:485 +msgid "rear right" +msgstr "bakre höger" + +#: src/gui/insEdit.cpp:486 +msgid "rear left" +msgstr "bakre vänster" + +#: src/gui/insEdit.cpp:491 +msgid "on" +msgstr "på" + +#: src/gui/insEdit.cpp:496 +msgid "k1 slowdown" +msgstr "k1 nedgång" + +#: src/gui/insEdit.cpp:497 +msgid "k2 slowdown" +msgstr "k2 nedgång" + +#: src/gui/insEdit.cpp:502 +msgid "pause" +msgstr "paus" + +#: src/gui/insEdit.cpp:503 +msgid "reverse" +msgstr "omvänd" + +#: src/gui/insEdit.cpp:521 +msgid "Subtract" +msgstr "Subtrahera" + +#: src/gui/insEdit.cpp:522 +msgid "Average" +msgstr "Genomsnitt" + +#: src/gui/insEdit.cpp:523 src/gui/insEdit.cpp:2037 +msgid "Phase" +msgstr "Fas" + +#: src/gui/insEdit.cpp:524 +msgid "Chorus" +msgstr "Kör" + +#: src/gui/insEdit.cpp:528 +msgid "None (dual)" +msgstr "Ingen (dubbel)" + +#: src/gui/insEdit.cpp:529 +msgid "Wipe" +msgstr "Wipe" + +#: src/gui/insEdit.cpp:531 +msgid "Fade (ping-pong)" +msgstr "Tona (pingpong)" + +#: src/gui/insEdit.cpp:532 +msgid "Overlay" +msgstr "Överlag" + +#: src/gui/insEdit.cpp:533 +msgid "Negative Overlay" +msgstr "Negativ överlag" + +#: src/gui/insEdit.cpp:534 +msgid "Slide" +msgstr "Glida" + +#: src/gui/insEdit.cpp:535 +msgid "Mix Chorus" +msgstr "Mixkör" + +#: src/gui/insEdit.cpp:536 +msgid "Phase Modulation" +msgstr "Fasmodulering" + +#: src/gui/insEdit.cpp:541 +msgid "Sweep" +msgstr "Svep" + +#: src/gui/insEdit.cpp:542 src/gui/insEdit.cpp:552 +msgid "Wait" +msgstr "Vänta" + +#: src/gui/insEdit.cpp:543 src/gui/insEdit.cpp:553 +msgid "Wait for Release" +msgstr "Vänta på release" + +#: src/gui/insEdit.cpp:545 src/gui/insEdit.cpp:555 +msgid "Loop until Release" +msgstr "Loopa tills release" + +#: src/gui/insEdit.cpp:549 +msgid "Volume Sweep" +msgstr "Volymsvep" + +#: src/gui/insEdit.cpp:550 +msgid "Frequency Sweep" +msgstr "Frekvenssvep" + +#: src/gui/insEdit.cpp:551 +msgid "Cutoff Sweep" +msgstr "Brytfrekvenssvep" + +#: src/gui/insEdit.cpp:559 src/gui/insEdit.cpp:6604 +msgid "Direct" +msgstr "Direkt" + +#: src/gui/insEdit.cpp:560 src/gui/insEdit.cpp:6608 +msgid "Decrease (linear)" +msgstr "Förminska (linjär)" + +#: src/gui/insEdit.cpp:561 src/gui/insEdit.cpp:6612 +msgid "Decrease (logarithmic)" +msgstr "Förminska (logaritmisk)" + +#: src/gui/insEdit.cpp:562 src/gui/insEdit.cpp:6616 +msgid "Increase (linear)" +msgstr "Öka (linjär)" + +#: src/gui/insEdit.cpp:563 src/gui/insEdit.cpp:6620 +msgid "Increase (bent line)" +msgstr "Öka (böjd linje)" + +#: src/gui/insEdit.cpp:611 +msgid "Relative" +msgstr "Relativ" + +#: src/gui/insEdit.cpp:616 +#, c-format +msgid "%d: +%d (exponential)" +msgstr "%d: +%d (exponentiell)" + +#: src/gui/insEdit.cpp:619 +#, c-format +msgid "%d: +%d (linear)" +msgstr "%d: +%d (linjär)" + +#: src/gui/insEdit.cpp:622 +#, c-format +msgid "%d: -%d (exponential)" +msgstr "%d: -%d (exponentiell)" + +#: src/gui/insEdit.cpp:625 +#, c-format +msgid "%d: -%d (linear)" +msgstr "%d: -%d (linjär)" + +#: src/gui/insEdit.cpp:627 +#, c-format +msgid "%d: %d (direct)" +msgstr "%d: %d (direkt)" + +#: src/gui/insEdit.cpp:660 +msgid "Random" +msgstr "Slumpmässigt" + +#: src/gui/insEdit.cpp:1610 +msgid "" +"left click to restart\n" +"middle click to pause\n" +"right click to see algorithm" +msgstr "" +"vänsterklicka för att starta om\n" +"mittenklick för att pausa\n" +"högerklicka för att se algoritm" + +#: src/gui/insEdit.cpp:1620 +msgid "" +"left click to configure TL scaling\n" +"right click to see FM preview" +msgstr "" +"vänsterklicka för att konfigurera TL-skalning\n" +"högerklicka för att se FM-förhandsgranskning" + +#: src/gui/insEdit.cpp:1624 +msgid "right click to see FM preview" +msgstr "högerklicka för att se FM-förhandsgranskning" + +#: src/gui/insEdit.cpp:1639 +msgid "operator level changes with volume?" +msgstr "operatorsnivån ändras med volymen?" + +#: src/gui/insEdit.cpp:1648 +msgid "AUTO##OPKVS" +msgstr "AUTO" + +#: src/gui/insEdit.cpp:1650 +msgid "NO##OPKVS" +msgstr "NEJ" + +#: src/gui/insEdit.cpp:1652 +msgid "YES##OPKVS" +msgstr "JA" + +#: src/gui/insEdit.cpp:1900 src/gui/insEdit.cpp:2005 +msgid "Bottom" +msgstr "Knapp" + +#: src/gui/insEdit.cpp:1940 +msgid "Hold" +msgstr "Håll" + +#: src/gui/insEdit.cpp:1949 +msgid "SusTime" +msgstr "SusTid" + +#: src/gui/insEdit.cpp:1969 +msgid "SusDecay" +msgstr "SusDecay" + +#: src/gui/insEdit.cpp:2047 +msgid "Shape" +msgstr "Form" + +#: src/gui/insEdit.cpp:2100 +msgid "Macro type: Sequence" +msgstr "Makrotyp: Sekvens" + +#: src/gui/insEdit.cpp:2103 +msgid "Macro type: ADSR" +msgstr "Makrotyp: ADSR" + +#: src/gui/insEdit.cpp:2106 +msgid "Macro type: LFO" +msgstr "Makrotyp: LFO" + +#: src/gui/insEdit.cpp:2109 +msgid "Macro type: What's going on here?" +msgstr "Makrotyp: Vad händer här?" + +#: src/gui/insEdit.cpp:2122 +msgid "Delay/Step Length" +msgstr "Delay-/Steglängd" + +#: src/gui/insEdit.cpp:2125 +msgid "Step Length (ticks)##IMacroSpeed" +msgstr "Steglängd (ticks)" + +#: src/gui/insEdit.cpp:2129 +msgid "Delay##IMacroDelay" +msgstr "Delay" + +#: src/gui/insEdit.cpp:2142 +msgid "Release mode: Active (jump to release pos)" +msgstr "Releaseläge: Aktiv (hoppa till releasepos.)" + +#: src/gui/insEdit.cpp:2144 +msgid "Release mode: Passive (delayed release)" +msgstr "Releaseläge: Passiv (fördröjd release)" + +#: src/gui/insEdit.cpp:2393 +msgid "StepLen" +msgstr "Steglängd" + +#: src/gui/insEdit.cpp:2401 +msgid "Delay" +msgstr "Delay" + +#: src/gui/insEdit.cpp:2425 +msgid "The heck? No, this isn't even working correctly..." +msgstr "Vad i helvete? Nej, detta fungerar inte ens korrekt..." + +#: src/gui/insEdit.cpp:2428 +msgid "The only problem with that selectedMacro is that it's a bug..." +msgstr "Det enda problemet med det valda makro är att det är en bugg..." + +#: src/gui/insEdit.cpp:2589 +msgid "(copying)" +msgstr "(kopierar)" + +#: src/gui/insEdit.cpp:2591 +msgid "(swapping)" +msgstr "(byter)" + +#: src/gui/insEdit.cpp:2595 +msgid "" +"- drag to swap operator\n" +"- shift-drag to copy operator" +msgstr "" +"- dra för att byta operator\n" +"- skift-dra för att kopiera operator" + +#: src/gui/insEdit.cpp:2632 +msgid "new DPCM features disabled (compatibility)!" +msgstr "nya DPCM-funktioner inaktiverade (kompatibilitet)!" + +#: src/gui/insEdit.cpp:2633 +msgid "click here to enable them." +msgstr "klicka här om du vill aktivera dem." + +#: src/gui/insEdit.cpp:2644 +msgid "none selected" +msgstr "inga vald" + +#: src/gui/insEdit.cpp:2657 +msgid "Use sample" +msgstr "Använd sample" + +#: src/gui/insEdit.cpp:2659 +msgid "Sample bank slot##BANKSLOT" +msgstr "Samplebankplats" + +#: src/gui/insEdit.cpp:2681 +msgid "Use wavetable (Amiga/Generic DAC only)" +msgstr "Använd wavetable (endast Amiga/Generisk DAC)" + +#: src/gui/insEdit.cpp:2681 +msgid "Use wavetable" +msgstr "Använd wavetable" + +#: src/gui/insEdit.cpp:2708 +msgid "Use sample map" +msgstr "Använd samplekarta" + +#: src/gui/insEdit.cpp:2730 +msgid "delta" +msgstr "delta" + +#: src/gui/insEdit.cpp:2736 +msgid "sample name" +msgstr "samplenamn" + +#: src/gui/insEdit.cpp:3001 +msgid "set entire map to this pitch" +msgstr "ställa in hela kartan till denna tonhöjd" + +#: src/gui/insEdit.cpp:3009 +msgid "set entire map to this delta counter value" +msgstr "ställa in hela kartan till detta delta räknarvärde" + +#: src/gui/insEdit.cpp:3018 +msgid "set entire map to this note" +msgstr "ställa in hela kartan till denna not" + +#: src/gui/insEdit.cpp:3027 +msgid "set entire map to this sample" +msgstr "ställ in hela kartan till denna sample" + +#: src/gui/insEdit.cpp:3037 +msgid "reset pitches" +msgstr "återställa tonhöjder" + +#: src/gui/insEdit.cpp:3042 +msgid "clear delta counter values" +msgstr "rensa deltaräknarens värden" + +#: src/gui/insEdit.cpp:3048 +msgid "reset notes" +msgstr "återställa noter" + +#: src/gui/insEdit.cpp:3054 +msgid "clear map samples" +msgstr "rensa mapsamples" + +#: src/gui/insEdit.cpp:3148 +msgid "Request from TX81Z" +msgstr "Begäran från TX81Z" + +#: src/gui/insEdit.cpp:3234 +#, c-format +msgid "%s name" +msgstr "%s namn" + +#: src/gui/insEdit.cpp:3286 +msgid "Fixed frequency mode" +msgstr "Fast frekvensläge" + +#: src/gui/insEdit.cpp:3288 +msgid "" +"when enabled, drums will be set to the specified frequencies, ignoring the " +"note." +msgstr "" +"om detta blir aktiverad kommer trummorna att ställas in på de angivna " +"frekvenserna, utan hänsyn till noten." + +#: src/gui/insEdit.cpp:3296 +msgid "Drum" +msgstr "Trumma" + +#: src/gui/insEdit.cpp:3298 src/gui/insEdit.cpp:3798 src/gui/insEdit.cpp:3904 +#: src/gui/insEdit.cpp:4404 src/gui/insEdit.cpp:4468 src/gui/insEdit.cpp:5068 +#: src/gui/insEdit.cpp:5518 +msgid "Block" +msgstr "Block" + +#: src/gui/insEdit.cpp:3300 src/gui/insEdit.cpp:3803 src/gui/insEdit.cpp:3909 +#: src/gui/insEdit.cpp:4993 src/gui/insEdit.cpp:5079 src/gui/insEdit.cpp:5519 +msgid "FreqNum" +msgstr "FrekvNum" + +#: src/gui/insEdit.cpp:3303 +msgid "Snare/Hi-hat" +msgstr "Virveltrumma/Hihat" + +#: src/gui/insEdit.cpp:3304 +msgid "Tom/Top" +msgstr "Tom/Rid" + +#: src/gui/insEdit.cpp:3314 +msgid "Volume##TL" +msgstr "Volym" + +#: src/gui/insEdit.cpp:3316 +msgid "this volume slider only works in compatibility (non-drums) system." +msgstr "" +"detta volymreglage fungerar endast på ett kompatibelt system (utan trummor)." + +#: src/gui/insEdit.cpp:3626 +msgid "Env" +msgstr "ADSR" + +#: src/gui/insEdit.cpp:3980 src/gui/insEdit.cpp:4346 src/gui/insEdit.cpp:4396 +#: src/gui/insEdit.cpp:5104 +msgid "OPL2/3 only (last 4 waveforms are OPL3 only)" +msgstr "Endast OPL2/3 (de sista 4 vågformerna är endast OPL3)" + +#: src/gui/insEdit.cpp:4079 src/gui/insEdit.cpp:4788 +#, c-format +msgid "Envelope 2 (kick only)" +msgstr "ADSR 2 (endast bastrumma)" + +#: src/gui/insEdit.cpp:4084 +#, c-format +msgid "Operator %d" +msgstr "Operator %d" + +#: src/gui/insEdit.cpp:4414 +msgid "Freq" +msgstr "Frekv." + +#: src/gui/insEdit.cpp:4443 +msgid "Only on YM2151 (OPM)" +msgstr "Endast på YM2151 (OPM)" + +#: src/gui/insEdit.cpp:4466 +msgid "Blk" +msgstr "Blk" + +#: src/gui/insEdit.cpp:4479 +msgid "F" +msgstr "F" + +#: src/gui/insEdit.cpp:4481 +msgid "Frequency (F-Num)" +msgstr "Frekvens (F-Num)" + +#: src/gui/insEdit.cpp:4833 +msgid "SSG On" +msgstr "SSG på" + +#: src/gui/insEdit.cpp:5206 src/gui/insEdit.cpp:5207 +msgid "waiting..." +msgstr "väntar..." + +#: src/gui/insEdit.cpp:5210 src/gui/insEdit.cpp:5211 +msgid "no instrument selected" +msgstr "inget instrument valt" + +#: src/gui/insEdit.cpp:5393 +msgid "" +"none of the currently present chips are able to play this instrument type!" +msgstr "inga av de nuvarande chips kan spela denna typ av instrument!" + +#: src/gui/insEdit.cpp:5413 +msgid "FM Macros" +msgstr "FM-makron" + +#: src/gui/insEdit.cpp:5435 src/gui/insEdit.cpp:5440 +msgid "LFO Speed" +msgstr "LFO-hastighet" + +#: src/gui/insEdit.cpp:5439 src/gui/insEdit.cpp:6514 +msgid "PM Depth" +msgstr "PM-djup" + +#: src/gui/insEdit.cpp:5441 +msgid "LFO Shape" +msgstr "LFO-form" + +#: src/gui/insEdit.cpp:5444 +msgid "OpMask" +msgstr "OpMask" + +#: src/gui/insEdit.cpp:5446 +msgid "AM Depth 2" +msgstr "AM-djup 2" + +#: src/gui/insEdit.cpp:5447 +msgid "PM Depth 2" +msgstr "PM-djup 2" + +#: src/gui/insEdit.cpp:5448 +msgid "LFO2 Speed" +msgstr "LFO2-hastighet" + +#: src/gui/insEdit.cpp:5449 +msgid "LFO2 Shape" +msgstr "LFO2-form" + +#: src/gui/insEdit.cpp:5458 +#, c-format +msgid "Operator Macros" +msgstr "Operatormakron" + +#: src/gui/insEdit.cpp:5460 +#, c-format +msgid "OP%d Macros" +msgstr "OP%d makron" + +#: src/gui/insEdit.cpp:5521 +msgid "Op. Arpeggio" +msgstr "Op. arpeggio" + +#: src/gui/insEdit.cpp:5522 +msgid "Op. Pitch" +msgstr "Op. tonhöjd" + +#: src/gui/insEdit.cpp:5531 +msgid "Op. Panning" +msgstr "Op. panorering" + +#: src/gui/insEdit.cpp:5558 +msgid "Use software envelope" +msgstr "Använd mjukvaru-ADSR" + +#: src/gui/insEdit.cpp:5559 +msgid "Initialize envelope on every note" +msgstr "Initialisera ADSR på varje not" + +#: src/gui/insEdit.cpp:5560 +msgid "Double wave length (GBA only)" +msgstr "Dubbel våglängd (endast GBA)" + +#: src/gui/insEdit.cpp:5589 src/gui/insEdit.cpp:5666 +msgid "Sound Length" +msgstr "Ljudlängd" + +#: src/gui/insEdit.cpp:5592 src/gui/insEdit.cpp:5666 +msgid "Infinity" +msgstr "Oändlighet" + +#: src/gui/insEdit.cpp:5596 +msgid "Direction" +msgstr "Riktning" + +#: src/gui/insEdit.cpp:5599 src/gui/insEdit.cpp:5669 src/gui/insEdit.cpp:5697 +#: src/gui/insEdit.cpp:6008 src/gui/insEdit.cpp:6051 +msgid "Up" +msgstr "Upp" + +#: src/gui/insEdit.cpp:5604 src/gui/insEdit.cpp:5674 src/gui/insEdit.cpp:5702 +#: src/gui/insEdit.cpp:6013 src/gui/insEdit.cpp:6056 +msgid "Down" +msgstr "Ner" + +#: src/gui/insEdit.cpp:5620 src/gui/insEdit.cpp:5953 +msgid "Hardware Sequence" +msgstr "Hårdvarusekvens" + +#: src/gui/insEdit.cpp:5630 src/gui/insEdit.cpp:5963 +msgid "Tick" +msgstr "Tick" + +#: src/gui/insEdit.cpp:5632 src/gui/insEdit.cpp:5965 +msgid "Command" +msgstr "Kommando" + +#: src/gui/insEdit.cpp:5634 src/gui/insEdit.cpp:5967 +msgid "Move/Remove" +msgstr "Flytta/Ta bort" + +#: src/gui/insEdit.cpp:5663 +msgid "Env Length" +msgstr "ADSR-längd" + +#: src/gui/insEdit.cpp:5690 +msgid "Shift" +msgstr "Skift" + +#: src/gui/insEdit.cpp:5717 src/gui/insEdit.cpp:6073 +msgid "Ticks" +msgstr "Ticks" + +#: src/gui/insEdit.cpp:5736 src/gui/insEdit.cpp:6092 src/gui/insEdit.cpp:6239 +msgid "Position" +msgstr "Position" + +#: src/gui/insEdit.cpp:5815 +msgid "tri" +msgstr "tri" + +#: src/gui/insEdit.cpp:5882 +msgid "Ring Modulation" +msgstr "Ringmodulering" + +#: src/gui/insEdit.cpp:5886 +msgid "Oscillator Sync" +msgstr "Oscillatorsynk" + +#: src/gui/insEdit.cpp:5890 +msgid "Enable filter" +msgstr "Aktivera filter" + +#: src/gui/insEdit.cpp:5891 +msgid "Initialize filter" +msgstr "Initiera filter" + +#: src/gui/insEdit.cpp:5894 src/gui/insEdit.cpp:5897 src/gui/insEdit.cpp:6951 +#: src/gui/insEdit.cpp:7215 src/gui/insEdit.cpp:7476 +msgid "Cutoff" +msgstr "Brytfrekvens" + +#: src/gui/insEdit.cpp:5902 src/gui/insEdit.cpp:6408 src/gui/insEdit.cpp:6952 +#: src/gui/insEdit.cpp:7179 src/gui/insEdit.cpp:7477 +msgid "Filter Mode" +msgstr "Filterläge" + +#: src/gui/insEdit.cpp:5931 src/gui/insEdit.cpp:7485 +msgid "Noise Mode" +msgstr "Brusläge" + +#: src/gui/insEdit.cpp:5932 +msgid "Wave Mix Mode" +msgstr "Vågmixläge" + +#: src/gui/insEdit.cpp:5935 +msgid "Absolute Cutoff Macro" +msgstr "Absolut brytfrekvensmakro" + +#: src/gui/insEdit.cpp:5939 +msgid "Absolute Duty Macro" +msgstr "Absolut arbetscykelmakro" + +#: src/gui/insEdit.cpp:5945 +msgid "Don't test before new note" +msgstr "Testa inte före den nya noten" + +#: src/gui/insEdit.cpp:5950 +msgid "Switch roles of frequency and phase reset timer" +msgstr "Byt roller för timer på frekvens- och fasåterställning" + +#: src/gui/insEdit.cpp:5997 src/gui/insEdit.cpp:6040 +msgid "Period" +msgstr "Period" + +#: src/gui/insEdit.cpp:6002 src/gui/insEdit.cpp:6045 src/gui/insEdit.cpp:6892 +msgid "Amount" +msgstr "Belopp" + +#: src/gui/insEdit.cpp:6005 src/gui/insEdit.cpp:6048 +msgid "Bound" +msgstr "Bunden" + +#: src/gui/insEdit.cpp:6021 +msgid "Flip" +msgstr "Vändning" + +#: src/gui/insEdit.cpp:6210 +msgid "Load waveform" +msgstr "Ladda vågform" + +#: src/gui/insEdit.cpp:6215 +msgid "" +"when enabled, a waveform will be loaded into RAM.\n" +"when disabled, only the offset and length change." +msgstr "" +"när den är aktiverad kommer en vågform att laddas in i RAM.\n" +"när den är inaktiverad ändras bara offset och längd." + +#: src/gui/insEdit.cpp:6219 +msgid "Waveform##WAVE" +msgstr "Vågform" + +#: src/gui/insEdit.cpp:6227 +msgid "Per-channel wave position/length" +msgstr "Vågposition/längd per kanal" + +#: src/gui/insEdit.cpp:6237 +msgid "Ch" +msgstr "Kanal" + +#: src/gui/insEdit.cpp:6286 +msgid "Compatibility mode" +msgstr "Kompatibilitetsläge" + +#: src/gui/insEdit.cpp:6288 +msgid "" +"only use for compatibility with .dmf modules!\n" +"- initializes modulation table with first wavetable\n" +"- does not alter modulation parameters on instrument change" +msgstr "" +"används endast för kompatibilitet med .dmf-moduler!\n" +"- startar moduleringstabell med den första vågen\n" +"- ändrar inte moduleringsparametrar vid instrumentbyte" + +#: src/gui/insEdit.cpp:6290 +msgid "Modulation depth" +msgstr "Moduleringsdjup" + +#: src/gui/insEdit.cpp:6294 +msgid "Modulation speed" +msgstr "Moduleringshastighet" + +#: src/gui/insEdit.cpp:6298 +msgid "Modulation table" +msgstr "Moduleringstabell" + +#: src/gui/insEdit.cpp:6347 +msgid "Set modulation table (channel 5 only)" +msgstr "Ställ in moduleringstabell (endast kanal 5)" + +#: src/gui/insEdit.cpp:6411 src/gui/insEdit.cpp:7184 +msgid "Filter K1" +msgstr "Filter K1" + +#: src/gui/insEdit.cpp:6413 src/gui/insEdit.cpp:7185 +msgid "Filter K2" +msgstr "Filter K2" + +#: src/gui/insEdit.cpp:6417 +msgid "Envelope length" +msgstr "ADSR-längd" + +#: src/gui/insEdit.cpp:6420 +msgid "Left Volume Ramp" +msgstr "Vänster volymramp" + +#: src/gui/insEdit.cpp:6422 +msgid "Right Volume Ramp" +msgstr "Höger volymramp" + +#: src/gui/insEdit.cpp:6425 +msgid "Filter K1 Ramp" +msgstr "Filter K1-ramp" + +#: src/gui/insEdit.cpp:6427 +msgid "Filter K2 Ramp" +msgstr "Filter K2-ramp" + +#: src/gui/insEdit.cpp:6430 +msgid "K1 Ramp Slowdown" +msgstr "K1 rampavmattning" + +#: src/gui/insEdit.cpp:6432 +msgid "K2 Ramp Slowdown" +msgstr "K2 rampavmattning" + +#: src/gui/insEdit.cpp:6454 +msgid "Attack Rate" +msgstr "Attackhastighet" + +#: src/gui/insEdit.cpp:6460 +msgid "Decay 1 Rate" +msgstr "Decay 1-hastighet" + +#: src/gui/insEdit.cpp:6466 +msgid "Decay Level" +msgstr "Decaynivå" + +#: src/gui/insEdit.cpp:6472 +msgid "Decay 2 Rate" +msgstr "Decay 2-hastighet" + +#: src/gui/insEdit.cpp:6478 +msgid "Release Rate" +msgstr "Release-hastighet" + +#: src/gui/insEdit.cpp:6484 +msgid "Rate Correction" +msgstr "Hastighetskorrigering" + +#: src/gui/insEdit.cpp:6512 +msgid "LFO Rate" +msgstr "LFO-hastighet" + +#: src/gui/insEdit.cpp:6523 +msgid "Use envelope" +msgstr "Använd ADSR" + +#: src/gui/insEdit.cpp:6576 +msgid "Sustain/release mode:" +msgstr "Sustain/release-läge:" + +#: src/gui/insEdit.cpp:6577 +msgid "Direct (cut on release)" +msgstr "Direkt (klipp vid släpp)" + +#: src/gui/insEdit.cpp:6580 +msgid "Effective (linear decrease)" +msgstr "Effektiv (linjär minskning)" + +#: src/gui/insEdit.cpp:6583 +msgid "Effective (exponential decrease)" +msgstr "Effektiv (exponentiell minskning)" + +#: src/gui/insEdit.cpp:6586 +msgid "Delayed (write R on release)" +msgstr "Försenad (skriv R vid release)" + +#: src/gui/insEdit.cpp:6596 src/gui/insEdit.cpp:6597 +msgid "Gain Mode" +msgstr "Gain-läge" + +#: src/gui/insEdit.cpp:6599 src/gui/insEdit.cpp:6600 src/gui/insEdit.cpp:7205 +msgid "Gain" +msgstr "Gain" + +#: src/gui/insEdit.cpp:6633 +msgid "" +"using decrease modes will not produce any sound at all, unless you know what " +"you are doing.\n" +"it is recommended to use the Gain macro for decrease instead." +msgstr "" +"att använda minskningslägen kommer inte att producera något ljud alls, om du " +"inte vet vad du gör.\n" +"det rekommenderas att använda makrot Gain för att minska i stället." + +#: src/gui/insEdit.cpp:6703 +msgid "Enable synthesizer" +msgstr "Aktivera synthesizer" + +#: src/gui/insEdit.cpp:6721 +msgid "Single-waveform" +msgstr "Enkelvågform" + +#: src/gui/insEdit.cpp:6730 +msgid "Dual-waveform" +msgstr "Dubbelvågform" + +#: src/gui/insEdit.cpp:6803 src/gui/insEdit.cpp:6812 +msgid "Wave 1" +msgstr "Våg 1" + +#: src/gui/insEdit.cpp:6808 src/gui/insEdit.cpp:6823 +msgid "" +"waveform macro is controlling wave 1!\n" +"this value will be ineffective." +msgstr "" +"vågformsmakro styr våg 1!\n" +"detta värde kommer att vara ineffektivt." + +#: src/gui/insEdit.cpp:6829 +msgid "Wave 2" +msgstr "Våg 2" + +#: src/gui/insEdit.cpp:6844 +msgid "Resume preview" +msgstr "Återuppta förhandsgranskningen" + +#: src/gui/insEdit.cpp:6846 +msgid "Pause preview" +msgstr "Pausa förhandsgranskningen" + +#: src/gui/insEdit.cpp:6854 +msgid "Restart preview" +msgstr "Starta om förhandsgranskningen" + +#: src/gui/insEdit.cpp:6874 +msgid "Copy to new wavetable" +msgstr "Kopiera till ett nytt wavetable" + +#: src/gui/insEdit.cpp:6881 +msgid "Update Rate" +msgstr "Uppdateringshastighet" + +#: src/gui/insEdit.cpp:6902 +msgid "Global" +msgstr "Globalt" + +#: src/gui/insEdit.cpp:6906 +msgid "" +"wavetable synthesizer disabled.\n" +"use the Waveform macro to set the wave for this instrument." +msgstr "" +"wavetable-synthesizer inaktiverad.\n" +"använd vågformsmakrot för att ställa in vågen för detta instrument." + +#: src/gui/insEdit.cpp:6912 +msgid "Macros" +msgstr "Makron" + +#: src/gui/insEdit.cpp:6921 src/gui/insEdit.cpp:6929 src/gui/insEdit.cpp:6938 +#: src/gui/insEdit.cpp:6947 src/gui/insEdit.cpp:6962 src/gui/insEdit.cpp:6976 +#: src/gui/insEdit.cpp:6988 src/gui/insEdit.cpp:7001 src/gui/insEdit.cpp:7017 +#: src/gui/insEdit.cpp:7023 src/gui/insEdit.cpp:7033 src/gui/insEdit.cpp:7040 +#: src/gui/insEdit.cpp:7046 src/gui/insEdit.cpp:7059 src/gui/insEdit.cpp:7066 +#: src/gui/insEdit.cpp:7073 src/gui/insEdit.cpp:7082 src/gui/insEdit.cpp:7092 +#: src/gui/insEdit.cpp:7100 src/gui/insEdit.cpp:7106 src/gui/insEdit.cpp:7114 +#: src/gui/insEdit.cpp:7121 src/gui/insEdit.cpp:7127 src/gui/insEdit.cpp:7137 +#: src/gui/insEdit.cpp:7149 src/gui/insEdit.cpp:7157 src/gui/insEdit.cpp:7173 +#: src/gui/insEdit.cpp:7178 src/gui/insEdit.cpp:7191 src/gui/insEdit.cpp:7198 +#: src/gui/insEdit.cpp:7209 src/gui/insEdit.cpp:7222 src/gui/insEdit.cpp:7231 +#: src/gui/insEdit.cpp:7238 src/gui/insEdit.cpp:7246 src/gui/insEdit.cpp:7270 +#: src/gui/insEdit.cpp:7277 src/gui/insEdit.cpp:7285 src/gui/insEdit.cpp:7296 +#: src/gui/insEdit.cpp:7303 src/gui/insEdit.cpp:7311 src/gui/insEdit.cpp:7319 +#: src/gui/insEdit.cpp:7328 src/gui/insEdit.cpp:7336 src/gui/insEdit.cpp:7342 +#: src/gui/insEdit.cpp:7348 src/gui/insEdit.cpp:7354 src/gui/insEdit.cpp:7359 +#: src/gui/insEdit.cpp:7366 src/gui/insEdit.cpp:7373 src/gui/insEdit.cpp:7381 +#: src/gui/insEdit.cpp:7390 src/gui/insEdit.cpp:7398 src/gui/insEdit.cpp:7410 +#: src/gui/insEdit.cpp:7423 src/gui/insEdit.cpp:7434 src/gui/insEdit.cpp:7444 +#: src/gui/insEdit.cpp:7452 src/gui/insEdit.cpp:7462 src/gui/insEdit.cpp:7471 +msgid "Arpeggio" +msgstr "Arpeggio" + +#: src/gui/insEdit.cpp:6925 src/gui/insEdit.cpp:6932 src/gui/insEdit.cpp:6943 +#: src/gui/insEdit.cpp:6972 src/gui/insEdit.cpp:6984 src/gui/insEdit.cpp:6994 +#: src/gui/insEdit.cpp:7007 src/gui/insEdit.cpp:7054 src/gui/insEdit.cpp:7062 +#: src/gui/insEdit.cpp:7069 src/gui/insEdit.cpp:7088 src/gui/insEdit.cpp:7110 +#: src/gui/insEdit.cpp:7133 src/gui/insEdit.cpp:7144 src/gui/insEdit.cpp:7163 +#: src/gui/insEdit.cpp:7183 src/gui/insEdit.cpp:7194 src/gui/insEdit.cpp:7214 +#: src/gui/insEdit.cpp:7234 src/gui/insEdit.cpp:7242 src/gui/insEdit.cpp:7249 +#: src/gui/insEdit.cpp:7254 src/gui/insEdit.cpp:7260 src/gui/insEdit.cpp:7266 +#: src/gui/insEdit.cpp:7273 src/gui/insEdit.cpp:7281 src/gui/insEdit.cpp:7290 +#: src/gui/insEdit.cpp:7299 src/gui/insEdit.cpp:7307 src/gui/insEdit.cpp:7324 +#: src/gui/insEdit.cpp:7332 src/gui/insEdit.cpp:7338 src/gui/insEdit.cpp:7362 +#: src/gui/insEdit.cpp:7369 src/gui/insEdit.cpp:7377 src/gui/insEdit.cpp:7386 +#: src/gui/insEdit.cpp:7394 src/gui/insEdit.cpp:7402 src/gui/insEdit.cpp:7414 +#: src/gui/insEdit.cpp:7429 src/gui/insEdit.cpp:7440 src/gui/insEdit.cpp:7448 +#: src/gui/insEdit.cpp:7457 src/gui/insEdit.cpp:7475 +msgid "Phase Reset" +msgstr "Fasåterställning" + +#: src/gui/insEdit.cpp:6939 src/gui/insEdit.cpp:7024 src/gui/insEdit.cpp:7210 +#: src/gui/insEdit.cpp:7247 +msgid "Duty/Noise" +msgstr "Arbetscykel/Brus" + +#: src/gui/insEdit.cpp:6966 src/gui/insEdit.cpp:7288 +msgid "Surround" +msgstr "Surround" + +#: src/gui/insEdit.cpp:6968 src/gui/insEdit.cpp:6981 src/gui/insEdit.cpp:7026 +#: src/gui/insEdit.cpp:7085 src/gui/insEdit.cpp:7141 src/gui/insEdit.cpp:7159 +#: src/gui/insEdit.cpp:7180 src/gui/insEdit.cpp:7201 src/gui/insEdit.cpp:7225 +#: src/gui/insEdit.cpp:7278 src/gui/insEdit.cpp:7304 src/gui/insEdit.cpp:7321 +#: src/gui/insEdit.cpp:7329 src/gui/insEdit.cpp:7374 src/gui/insEdit.cpp:7383 +#: src/gui/insEdit.cpp:7399 src/gui/insEdit.cpp:7411 src/gui/insEdit.cpp:7426 +#: src/gui/insEdit.cpp:7454 src/gui/insEdit.cpp:7464 +msgid "Panning (left)" +msgstr "Panorering (vänster)" + +#: src/gui/insEdit.cpp:6969 src/gui/insEdit.cpp:6982 src/gui/insEdit.cpp:7027 +#: src/gui/insEdit.cpp:7086 src/gui/insEdit.cpp:7142 src/gui/insEdit.cpp:7160 +#: src/gui/insEdit.cpp:7181 src/gui/insEdit.cpp:7202 src/gui/insEdit.cpp:7226 +#: src/gui/insEdit.cpp:7279 src/gui/insEdit.cpp:7305 src/gui/insEdit.cpp:7322 +#: src/gui/insEdit.cpp:7330 src/gui/insEdit.cpp:7375 src/gui/insEdit.cpp:7384 +#: src/gui/insEdit.cpp:7400 src/gui/insEdit.cpp:7412 src/gui/insEdit.cpp:7427 +#: src/gui/insEdit.cpp:7455 src/gui/insEdit.cpp:7465 +msgid "Panning (right)" +msgstr "Panorering (höger)" + +#: src/gui/insEdit.cpp:6990 src/gui/insEdit.cpp:7003 src/gui/insEdit.cpp:7107 +#: src/gui/insEdit.cpp:7199 src/gui/insEdit.cpp:7239 src/gui/insEdit.cpp:7424 +msgid "Noise Freq" +msgstr "Brusfrekv." + +#: src/gui/insEdit.cpp:6996 src/gui/insEdit.cpp:7010 src/gui/insEdit.cpp:7167 +msgid "AutoEnv Num" +msgstr "Auto-ADSR täljare" + +#: src/gui/insEdit.cpp:6997 src/gui/insEdit.cpp:7011 src/gui/insEdit.cpp:7168 +msgid "AutoEnv Den" +msgstr "Auto-ADSR nämnare" + +#: src/gui/insEdit.cpp:7012 +msgid "Noise AND Mask" +msgstr "Brus LOGISKT OCH Mask" + +#: src/gui/insEdit.cpp:7013 +msgid "Noise OR Mask" +msgstr "Brus LOGISKT ELLER Mask" + +#: src/gui/insEdit.cpp:7034 +msgid "On/Off" +msgstr "På/Av" + +#: src/gui/insEdit.cpp:7060 +msgid "Patch" +msgstr "Patch" + +#: src/gui/insEdit.cpp:7076 +msgid "Mod Depth" +msgstr "Mod. Djup" + +#: src/gui/insEdit.cpp:7077 +msgid "Mod Speed" +msgstr "Mod. Hastighet" + +#: src/gui/insEdit.cpp:7078 +msgid "Mod Position" +msgstr "Mod. Position" + +#: src/gui/insEdit.cpp:7083 +msgid "Noise Length" +msgstr "Bruslängd" + +#: src/gui/insEdit.cpp:7093 +msgid "Wave Pos" +msgstr "Vågposition" + +#: src/gui/insEdit.cpp:7096 +msgid "Wave Length" +msgstr "Våglängd" + +#: src/gui/insEdit.cpp:7115 +msgid "AUDCTL" +msgstr "AUDCTL" + +#: src/gui/insEdit.cpp:7122 src/gui/insEdit.cpp:7343 +msgid "Pulse Width" +msgstr "Pulsbredd" + +#: src/gui/insEdit.cpp:7139 +msgid "Duty/Int" +msgstr "Arbete/Int" + +#: src/gui/insEdit.cpp:7145 src/gui/insEdit.cpp:7406 +msgid "Load LFSR" +msgstr "Ladda in LFSR" + +#: src/gui/insEdit.cpp:7165 +msgid "Envelope Mode" +msgstr "ADSR-läge" + +#: src/gui/insEdit.cpp:7218 +msgid "Phase Reset Timer" +msgstr "Fasåterställningstimer" + +#: src/gui/insEdit.cpp:7252 src/gui/insEdit.cpp:7259 +msgid "Freq Divider" +msgstr "Frekvensdelare" + +#: src/gui/insEdit.cpp:7255 +msgid "Clock Divider" +msgstr "Klockavdelare" + +#: src/gui/insEdit.cpp:7264 +msgid "Global Volume" +msgstr "Globalvolym" + +#: src/gui/insEdit.cpp:7286 +msgid "Echo Level" +msgstr "Ekonivå" + +#: src/gui/insEdit.cpp:7291 +msgid "Echo Feedback" +msgstr "Ekofeedback" + +#: src/gui/insEdit.cpp:7292 +msgid "Echo Length" +msgstr "Ekolängd" + +#: src/gui/insEdit.cpp:7312 +msgid "Group Ctrl" +msgstr "Grupp-Ctrl" + +#: src/gui/insEdit.cpp:7313 +msgid "Group Attack" +msgstr "Gruppattack" + +#: src/gui/insEdit.cpp:7314 +msgid "Group Decay" +msgstr "Gruppdecay" + +#: src/gui/insEdit.cpp:7320 +msgid "Noise Type" +msgstr "Brustyp" + +#: src/gui/insEdit.cpp:7367 +msgid "Square/Noise" +msgstr "Kvadrat/Brus" + +#: src/gui/insEdit.cpp:7404 +msgid "Tap A Location" +msgstr "Tryck på A-plats" + +#: src/gui/insEdit.cpp:7405 +msgid "Tap B Location" +msgstr "Tryck på B-plats" + +#: src/gui/insEdit.cpp:7416 +msgid "Portion A Length" +msgstr "Del A-längd" + +#: src/gui/insEdit.cpp:7417 +msgid "Portion B Length" +msgstr "Del B-längd" + +#: src/gui/insEdit.cpp:7418 +msgid "Portion A Offset" +msgstr "Del A-offset" + +#: src/gui/insEdit.cpp:7419 +msgid "Portion B Offset" +msgstr "Del B-offset" + +#: src/gui/insEdit.cpp:7463 +msgid "Parameter" +msgstr "Parameter" + +#: src/gui/insEdit.cpp:7467 +msgid "Load Value" +msgstr "Ladda värde" + +#: src/gui/insEdit.cpp:7479 +msgid "Filter Toggle" +msgstr "Växla filter" + +#: src/gui/insEdit.cpp:7486 +msgid "Wave Mix" +msgstr "Vågmix" + +#: src/gui/insEdit.cpp:7500 +msgid "Octave offset" +msgstr "Oktavoffset" + +#: src/gui/insEdit.cpp:7505 +msgid "go to Macros for other parameters." +msgstr "gå till makron för andra parametrar." + +#: src/gui/insEdit.cpp:7521 +msgid "invalid instrument type! change it first." +msgstr "ogiltig instrumenttyp! ändra det först." + +#: src/gui/insEdit.cpp:7565 +msgid "clear contents" +msgstr "rensa innehållen" + +#: src/gui/insEdit.cpp:7571 +msgid "offset..." +msgstr "offset..." + +#: src/gui/insEdit.cpp:7572 src/gui/insEdit.cpp:7605 +msgid "X" +msgstr "X" + +#: src/gui/insEdit.cpp:7573 src/gui/insEdit.cpp:7609 +msgid "Y" +msgstr "Y" + +#: src/gui/insEdit.cpp:7574 +msgid "offset" +msgstr "offset" + +#: src/gui/insEdit.cpp:7637 +msgid "Min" +msgstr "Min." + +#: src/gui/insEdit.cpp:7638 +msgid "Max" +msgstr "Max." diff --git a/po/th.po b/po/th.po new file mode 100644 index 000000000..f67a1cb27 --- /dev/null +++ b/po/th.po @@ -0,0 +1,16036 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: furnace 0.6.3\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/engine/sysDef.cpp:428 src/engine/sysDef.cpp:441 +msgid "20xx: Set channel mode (bit 0: square; bit 1: noise; bit 2: envelope)" +msgstr "" + +#: src/engine/sysDef.cpp:429 +msgid "21xx: Set noise frequency (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:430 src/engine/sysDef.cpp:443 +msgid "22xy: Set envelope mode (x: shape, y: enable for this channel)" +msgstr "" + +#: src/engine/sysDef.cpp:431 src/engine/sysDef.cpp:444 +msgid "23xx: Set envelope period low byte" +msgstr "" + +#: src/engine/sysDef.cpp:432 src/engine/sysDef.cpp:445 +msgid "24xx: Set envelope period high byte" +msgstr "" + +#: src/engine/sysDef.cpp:433 src/engine/sysDef.cpp:446 +#: src/engine/sysDef.cpp:1599 +msgid "25xx: Envelope slide up" +msgstr "" + +#: src/engine/sysDef.cpp:434 src/engine/sysDef.cpp:447 +#: src/engine/sysDef.cpp:1600 +msgid "26xx: Envelope slide down" +msgstr "" + +#: src/engine/sysDef.cpp:435 src/engine/sysDef.cpp:448 +#: src/engine/sysDef.cpp:1601 +msgid "29xy: Set auto-envelope (x: numerator; y: denominator)" +msgstr "" + +#: src/engine/sysDef.cpp:436 src/engine/sysDef.cpp:449 +msgid "2Exx: Write to I/O port A" +msgstr "" + +#: src/engine/sysDef.cpp:437 src/engine/sysDef.cpp:450 +msgid "2Fxx: Write to I/O port B" +msgstr "" + +#: src/engine/sysDef.cpp:442 +msgid "21xx: Set noise frequency (0 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:451 +msgid "12xx: Set duty cycle (0 to 8)" +msgstr "" + +#: src/engine/sysDef.cpp:453 +msgid "27xx: Set noise AND mask" +msgstr "" + +#: src/engine/sysDef.cpp:454 +msgid "28xx: Set noise OR mask" +msgstr "" + +#: src/engine/sysDef.cpp:455 +msgid "" +"2Cxy: Automatic noise frequency (x: mode (0: disable, 1: freq, 2: freq + OR " +"mask); y: offset)" +msgstr "" + +#: src/engine/sysDef.cpp:456 +msgid "2Dxx: NOT TO BE EMPLOYED BY THE COMPOSER" +msgstr "" + +#: src/engine/sysDef.cpp:460 +msgid "30xx: Toggle hard envelope reset on new notes" +msgstr "" + +#: src/engine/sysDef.cpp:465 +msgid "18xx: Toggle extended channel 3 mode" +msgstr "" + +#: src/engine/sysDef.cpp:470 src/engine/sysDef.cpp:766 +#: src/engine/sysDef.cpp:1025 src/engine/sysDef.cpp:1272 +#: src/engine/sysDef.cpp:1593 +msgid "17xx: Toggle PCM mode (LEGACY)" +msgstr "" + +#: src/engine/sysDef.cpp:471 src/engine/sysDef.cpp:1653 +#: src/engine/sysDef.cpp:1963 +msgid "DFxx: Set sample playback direction (0: normal; 1: reverse)" +msgstr "" + +#: src/engine/sysDef.cpp:476 +msgid "18xx: Toggle drums mode (1: enabled; 0: disabled)" +msgstr "" + +#: src/engine/sysDef.cpp:480 src/engine/sysDef.cpp:554 +#: src/engine/sysDef.cpp:575 +msgid "11xx: Set feedback (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:481 +msgid "12xx: Set level of operator 1 (0 highest, 7F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:482 +msgid "13xx: Set level of operator 2 (0 highest, 7F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:483 +msgid "14xx: Set level of operator 3 (0 highest, 7F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:484 +msgid "15xx: Set level of operator 4 (0 highest, 7F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:485 src/engine/sysDef.cpp:580 +#: src/engine/sysDef.cpp:635 +msgid "16xy: Set operator multiplier (x: operator from 1 to 4; y: multiplier)" +msgstr "" + +#: src/engine/sysDef.cpp:486 +msgid "19xx: Set attack of all operators (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:487 +msgid "1Axx: Set attack of operator 1 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:488 +msgid "1Bxx: Set attack of operator 2 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:489 +msgid "1Cxx: Set attack of operator 3 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:490 +msgid "1Dxx: Set attack of operator 4 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:491 src/engine/sysDef.cpp:588 +#: src/engine/sysDef.cpp:656 +msgid "50xy: Set AM (x: operator from 1 to 4 (0 for all ops); y: AM)" +msgstr "" + +#: src/engine/sysDef.cpp:492 src/engine/sysDef.cpp:589 +#: src/engine/sysDef.cpp:657 +msgid "" +"51xy: Set sustain level (x: operator from 1 to 4 (0 for all ops); y: sustain)" +msgstr "" + +#: src/engine/sysDef.cpp:493 src/engine/sysDef.cpp:590 +#: src/engine/sysDef.cpp:658 +msgid "52xy: Set release (x: operator from 1 to 4 (0 for all ops); y: release)" +msgstr "" + +#: src/engine/sysDef.cpp:494 +msgid "" +"53xy: Set detune (x: operator from 1 to 4 (0 for all ops); y: detune where 3 " +"is center)" +msgstr "" + +#: src/engine/sysDef.cpp:495 src/engine/sysDef.cpp:592 +#: src/engine/sysDef.cpp:660 +msgid "" +"54xy: Set envelope scale (x: operator from 1 to 4 (0 for all ops); y: scale " +"from 0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:496 +msgid "56xx: Set decay of all operators (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:497 +msgid "57xx: Set decay of operator 1 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:498 +msgid "58xx: Set decay of operator 2 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:499 +msgid "59xx: Set decay of operator 3 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:500 +msgid "5Axx: Set decay of operator 4 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:501 +msgid "5Bxx: Set decay 2 of all operators (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:502 +msgid "5Cxx: Set decay 2 of operator 1 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:503 +msgid "5Dxx: Set decay 2 of operator 2 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:504 +msgid "5Exx: Set decay 2 of operator 3 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:505 +msgid "5Fxx: Set decay 2 of operator 4 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:510 +msgid "10xx: Set noise frequency (xx: value; 0 disables noise)" +msgstr "" + +#: src/engine/sysDef.cpp:511 +msgid "17xx: Set LFO speed" +msgstr "" + +#: src/engine/sysDef.cpp:512 +msgid "18xx: Set LFO waveform (0 saw, 1 square, 2 triangle, 3 noise)" +msgstr "" + +#: src/engine/sysDef.cpp:513 +msgid "1Exx: Set AM depth (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:514 +msgid "1Fxx: Set PM depth (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:515 +msgid "" +"55xy: Set detune 2 (x: operator from 1 to 4 (0 for all ops); y: detune from " +"0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:520 +msgid "24xx: Set LFO 2 speed" +msgstr "" + +#: src/engine/sysDef.cpp:521 +msgid "25xx: Set LFO 2 waveform (0 saw, 1 square, 2 triangle, 3 noise)" +msgstr "" + +#: src/engine/sysDef.cpp:522 +msgid "26xx: Set AM 2 depth (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:523 +msgid "27xx: Set PM 2 depth (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:524 +msgid "" +"28xy: Set reverb (x: operator from 1 to 4 (0 for all ops); y: reverb from 0 " +"to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:525 src/engine/sysDef.cpp:650 +msgid "" +"2Axy: Set waveform (x: operator from 1 to 4 (0 for all ops); y: waveform " +"from 0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:526 +msgid "" +"2Bxy: Set envelope generator shift (x: operator from 1 to 4 (0 for all ops); " +"y: shift from 0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:527 +msgid "" +"2Cxy: Set fine multiplier (x: operator from 1 to 4 (0 for all ops); y: fine)" +msgstr "" + +#: src/engine/sysDef.cpp:530 +msgid "" +"3xyy: Set fixed frequency of operator 1 (x: octave from 0 to 7; y: frequency)" +msgstr "" + +#: src/engine/sysDef.cpp:531 +msgid "" +"3xyy: Set fixed frequency of operator 2 (x: octave from 8 to F; y: frequency)" +msgstr "" + +#: src/engine/sysDef.cpp:532 +msgid "" +"4xyy: Set fixed frequency of operator 3 (x: octave from 0 to 7; y: frequency)" +msgstr "" + +#: src/engine/sysDef.cpp:533 +msgid "" +"4xyy: Set fixed frequency of operator 4 (x: octave from 8 to F; y: frequency)" +msgstr "" + +#: src/engine/sysDef.cpp:540 +msgid "10xy: Setup LFO (x: enable; y: speed)" +msgstr "" + +#: src/engine/sysDef.cpp:541 +msgid "" +"55xy: Set SSG envelope (x: operator from 1 to 4 (0 for all ops); y: 0-7 on, " +"8 off)" +msgstr "" + +#: src/engine/sysDef.cpp:549 +msgid "1Fxx: Set ADPCM-A global volume (0 to 3F)" +msgstr "" + +#: src/engine/sysDef.cpp:553 +msgid "10xx: Set patch (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:555 src/engine/sysDef.cpp:576 +#: src/engine/sysDef.cpp:631 +msgid "12xx: Set level of operator 1 (0 highest, 3F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:556 src/engine/sysDef.cpp:577 +#: src/engine/sysDef.cpp:632 +msgid "13xx: Set level of operator 2 (0 highest, 3F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:557 +msgid "16xy: Set operator multiplier (x: operator from 1 to 2; y: multiplier)" +msgstr "" + +#: src/engine/sysDef.cpp:558 src/engine/sysDef.cpp:582 +#: src/engine/sysDef.cpp:637 +msgid "19xx: Set attack of all operators (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:559 src/engine/sysDef.cpp:583 +#: src/engine/sysDef.cpp:638 +msgid "1Axx: Set attack of operator 1 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:560 src/engine/sysDef.cpp:584 +#: src/engine/sysDef.cpp:639 +msgid "1Bxx: Set attack of operator 2 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:561 +msgid "50xy: Set AM (x: operator from 1 to 2 (0 for all ops); y: AM)" +msgstr "" + +#: src/engine/sysDef.cpp:562 +msgid "" +"51xy: Set sustain level (x: operator from 1 to 2 (0 for all ops); y: sustain)" +msgstr "" + +#: src/engine/sysDef.cpp:563 +msgid "52xy: Set release (x: operator from 1 to 2 (0 for all ops); y: release)" +msgstr "" + +#: src/engine/sysDef.cpp:564 +msgid "53xy: Set vibrato (x: operator from 1 to 2 (0 for all ops); y: enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:565 +msgid "" +"54xy: Set envelope scale (x: operator from 1 to 2 (0 for all ops); y: scale " +"from 0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:566 +msgid "" +"55xy: Set envelope sustain (x: operator from 1 to 2 (0 for all ops); y: " +"enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:567 src/engine/sysDef.cpp:594 +#: src/engine/sysDef.cpp:662 +msgid "56xx: Set decay of all operators (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:568 src/engine/sysDef.cpp:595 +#: src/engine/sysDef.cpp:663 +msgid "57xx: Set decay of operator 1 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:569 src/engine/sysDef.cpp:596 +#: src/engine/sysDef.cpp:664 +msgid "58xx: Set decay of operator 2 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:570 +msgid "" +"5Bxy: Set whether key will scale envelope (x: operator from 1 to 2 (0 for " +"all ops); y: enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:574 +msgid "10xx: Set global AM depth (0: 1dB, 1: 4.8dB)" +msgstr "" + +#: src/engine/sysDef.cpp:578 src/engine/sysDef.cpp:633 +msgid "14xx: Set level of operator 3 (0 highest, 3F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:579 src/engine/sysDef.cpp:634 +msgid "15xx: Set level of operator 4 (0 highest, 3F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:581 +msgid "17xx: Set global vibrato depth (0: normal, 1: double)" +msgstr "" + +#: src/engine/sysDef.cpp:585 src/engine/sysDef.cpp:640 +msgid "1Cxx: Set attack of operator 3 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:586 src/engine/sysDef.cpp:641 +msgid "1Dxx: Set attack of operator 4 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:587 +msgid "" +"2Axy: Set waveform (x: operator from 1 to 4 (0 for all ops); y: waveform " +"from 0 to 3 in OPL2 and 0 to 7 in OPL3)" +msgstr "" + +#: src/engine/sysDef.cpp:591 src/engine/sysDef.cpp:659 +msgid "53xy: Set vibrato (x: operator from 1 to 4 (0 for all ops); y: enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:593 src/engine/sysDef.cpp:661 +msgid "" +"55xy: Set envelope sustain (x: operator from 1 to 4 (0 for all ops); y: " +"enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:597 src/engine/sysDef.cpp:665 +msgid "59xx: Set decay of operator 3 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:598 src/engine/sysDef.cpp:666 +msgid "5Axx: Set decay of operator 4 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:599 src/engine/sysDef.cpp:667 +msgid "" +"5Bxy: Set whether key will scale envelope (x: operator from 1 to 4 (0 for " +"all ops); y: enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:603 src/engine/sysDef.cpp:680 +msgid "" +"10xx: Set waveform (bit 0: triangle; bit 1: saw; bit 2: pulse; bit 3: noise)" +msgstr "" + +#: src/engine/sysDef.cpp:604 +msgid "11xx: Set coarse cutoff (not recommended; use 4xxx instead)" +msgstr "" + +#: src/engine/sysDef.cpp:605 +msgid "12xx: Set coarse pulse width (not recommended; use 3xxx instead)" +msgstr "" + +#: src/engine/sysDef.cpp:606 +msgid "13xx: Set resonance (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:607 +msgid "" +"14xx: Set filter mode (bit 0: low pass; bit 1: band pass; bit 2: high pass)" +msgstr "" + +#: src/engine/sysDef.cpp:608 +msgid "15xx: Set envelope reset time" +msgstr "" + +#: src/engine/sysDef.cpp:609 +msgid "1Axx: Disable envelope reset for this channel (1 disables; 0 enables)" +msgstr "" + +#: src/engine/sysDef.cpp:610 +msgid "1Bxy: Reset cutoff (x: on new note; y: now)" +msgstr "" + +#: src/engine/sysDef.cpp:611 +msgid "1Cxy: Reset pulse width (x: on new note; y: now)" +msgstr "" + +#: src/engine/sysDef.cpp:612 +msgid "1Exy: Change other parameters (LEGACY)" +msgstr "" + +#: src/engine/sysDef.cpp:613 +msgid "20xy: Set attack/decay (x: attack; y: decay)" +msgstr "" + +#: src/engine/sysDef.cpp:614 +msgid "21xy: Set sustain/release (x: sustain; y: release)" +msgstr "" + +#: src/engine/sysDef.cpp:616 src/engine/sysDef.cpp:688 +msgid "3xxx: Set pulse width (0 to FFF)" +msgstr "" + +#: src/engine/sysDef.cpp:617 +msgid "4xxx: Set cutoff (0 to 7FF)" +msgstr "" + +#: src/engine/sysDef.cpp:622 src/engine/sysDef.cpp:745 +#: src/engine/sysDef.cpp:762 src/engine/sysDef.cpp:1000 +#: src/engine/sysDef.cpp:1050 src/engine/sysDef.cpp:1268 +#: src/engine/sysDef.cpp:1320 src/engine/sysDef.cpp:1590 +#: src/engine/sysDef.cpp:1788 src/engine/sysDef.cpp:1792 +#: src/engine/sysDef.cpp:1893 src/engine/sysDef.cpp:2063 +#: src/engine/sysDef.cpp:2077 +msgid "10xx: Set waveform" +msgstr "10xx: ตั้งแบบคลื่น" + +#: src/engine/sysDef.cpp:626 +msgid "20xx: Set PCM frequency" +msgstr "20xx: ตั้งความถี่ของ PCM" + +#: src/engine/sysDef.cpp:630 +msgid "" +"10xy: Set AM depth (x: operator from 1 to 4 (0 for all ops); y: depth (0: " +"1dB, 1: 4.8dB))" +msgstr "" + +#: src/engine/sysDef.cpp:636 +msgid "" +"17xy: Set vibrato depth (x: operator from 1 to 4 (0 for all ops); y: depth " +"(0: normal, 1: double))" +msgstr "" + +#: src/engine/sysDef.cpp:642 +msgid "20xy: Set panning of operator 1 (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:643 +msgid "21xy: Set panning of operator 2 (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:644 +msgid "22xy: Set panning of operator 3 (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:645 +msgid "23xy: Set panning of operator 4 (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:646 +msgid "" +"24xy: Set output level register (x: operator from 1 to 4 (0 for all ops); y: " +"level from 0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:647 +msgid "" +"25xy: Set modulation input level (x: operator from 1 to 4 (0 for all ops); " +"y: level from 0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:648 +msgid "" +"26xy: Set envelope delay (x: operator from 1 to 4 (0 for all ops); y: delay " +"from 0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:649 +msgid "27xx: Set noise mode for operator 4 (x: mode from 0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:651 +msgid "" +"2Fxy: Set fixed frequency block (x: operator from 1 to 4; y: octave from 0 " +"to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:652 +msgid "40xx: Set detune of operator 1 (80: center)" +msgstr "" + +#: src/engine/sysDef.cpp:653 +msgid "41xx: Set detune of operator 2 (80: center)" +msgstr "" + +#: src/engine/sysDef.cpp:654 +msgid "42xx: Set detune of operator 3 (80: center)" +msgstr "" + +#: src/engine/sysDef.cpp:655 +msgid "43xx: Set detune of operator 4 (80: center)" +msgstr "" + +#: src/engine/sysDef.cpp:670 +msgid "" +"3xyy: Set fixed frequency F-num of operator 1 (x: high 2 bits from 0 to 3; " +"y: low 8 bits of F-num)" +msgstr "" + +#: src/engine/sysDef.cpp:671 +msgid "" +"3xyy: Set fixed frequency F-num of operator 2 (x: high 2 bits from 4 to 7; " +"y: low 8 bits of F-num)" +msgstr "" + +#: src/engine/sysDef.cpp:672 +msgid "" +"3xyy: Set fixed frequency F-num of operator 3 (x: high 2 bits from 8 to B; " +"y: low 8 bits of F-num)" +msgstr "" + +#: src/engine/sysDef.cpp:673 +msgid "" +"3xyy: Set fixed frequency F-num of operator 4 (x: high 2 bits from C to F; " +"y: low 8 bits of F-num)" +msgstr "" + +#: src/engine/sysDef.cpp:681 +msgid "11xx: Set resonance (0 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:682 +msgid "" +"12xx: Set filter mode (bit 0: low pass; bit 1: band pass; bit 2: high pass)" +msgstr "" + +#: src/engine/sysDef.cpp:683 +msgid "13xx: Disable envelope reset for this channel (1 disables; 0 enables)" +msgstr "" + +#: src/engine/sysDef.cpp:684 +msgid "14xy: Reset cutoff (x: on new note; y: now)" +msgstr "" + +#: src/engine/sysDef.cpp:685 +msgid "15xy: Reset pulse width (x: on new note; y: now)" +msgstr "" + +#: src/engine/sysDef.cpp:686 +msgid "16xy: Change other parameters" +msgstr "" + +#: src/engine/sysDef.cpp:689 src/engine/sysDef.cpp:1733 +msgid "4xxx: Set cutoff (0 to FFF)" +msgstr "" + +#: src/engine/sysDef.cpp:697 +msgid "Yamaha YMU759 (MA-2)" +msgstr "" + +#: src/engine/sysDef.cpp:698 +msgid "" +"a chip which found its way inside mobile phones in the 2000's.\n" +"as proprietary as it is, it passed away after losing to MP3 in the mobile " +"hardware battle." +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:807 src/engine/sysDef.cpp:819 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:915 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1237 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1314 src/engine/sysDef.cpp:1356 +#: src/engine/sysDef.cpp:1396 src/engine/sysDef.cpp:1499 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1572 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1608 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1799 src/engine/sysDef.cpp:1810 +#: src/engine/sysDef.cpp:1821 src/engine/sysDef.cpp:1832 +#: src/engine/sysDef.cpp:1900 src/engine/sysDef.cpp:1910 +#: src/engine/sysDef.cpp:1920 src/engine/sysDef.cpp:1944 +#: src/engine/sysDef.cpp:1957 src/engine/sysDef.cpp:1970 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2037 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2122 +#: src/engine/sysDef.cpp:2138 src/engine/sysDef.cpp:2150 +msgid "Channel 1" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:807 src/engine/sysDef.cpp:819 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:915 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1237 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1314 src/engine/sysDef.cpp:1356 +#: src/engine/sysDef.cpp:1396 src/engine/sysDef.cpp:1499 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1572 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1608 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1799 src/engine/sysDef.cpp:1810 +#: src/engine/sysDef.cpp:1821 src/engine/sysDef.cpp:1832 +#: src/engine/sysDef.cpp:1900 src/engine/sysDef.cpp:1910 +#: src/engine/sysDef.cpp:1920 src/engine/sysDef.cpp:1944 +#: src/engine/sysDef.cpp:1957 src/engine/sysDef.cpp:1970 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2037 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2122 +#: src/engine/sysDef.cpp:2138 src/engine/sysDef.cpp:2150 +msgid "Channel 2" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:807 src/engine/sysDef.cpp:819 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1237 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1314 +#: src/engine/sysDef.cpp:1356 src/engine/sysDef.cpp:1396 +#: src/engine/sysDef.cpp:1499 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1572 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1799 src/engine/sysDef.cpp:1810 +#: src/engine/sysDef.cpp:1821 src/engine/sysDef.cpp:1832 +#: src/engine/sysDef.cpp:1910 src/engine/sysDef.cpp:1944 +#: src/engine/sysDef.cpp:1957 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2037 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +#: src/engine/sysDef.cpp:2122 src/engine/sysDef.cpp:2138 +#: src/engine/sysDef.cpp:2150 +msgid "Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1237 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1314 +#: src/engine/sysDef.cpp:1356 src/engine/sysDef.cpp:1396 +#: src/engine/sysDef.cpp:1499 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1572 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1910 +#: src/engine/sysDef.cpp:1944 src/engine/sysDef.cpp:1957 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +#: src/engine/sysDef.cpp:2122 src/engine/sysDef.cpp:2150 +msgid "Channel 4" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1314 +#: src/engine/sysDef.cpp:1356 src/engine/sysDef.cpp:1396 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1572 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1705 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 5" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1356 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 6" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 7" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 8" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 9" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 10" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 11" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 12" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 13" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 14" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 15" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 16" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:700 +#: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1767 src/engine/sysDef.cpp:1888 +#: src/engine/sysDef.cpp:1944 src/engine/sysDef.cpp:1945 +#: src/gui/settings.cpp:4094 +msgid "PCM" +msgstr "" + +#: src/engine/sysDef.cpp:706 +msgid "Sega Genesis/Mega Drive" +msgstr "" + +#: src/engine/sysDef.cpp:712 +msgid "Sega Genesis Extended Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:718 src/gui/sysConf.cpp:158 +msgid "TI SN76489" +msgstr "" + +#: src/engine/sysDef.cpp:719 +msgid "" +"a square/noise sound chip found on the Sega Master System, ColecoVision, " +"Tandy, TI's own 99/4A and a few other places." +msgstr "" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 +msgid "Square 1" +msgstr "" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 +msgid "Square 2" +msgstr "" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 +msgid "Square 3" +msgstr "" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:739 +#: src/engine/sysDef.cpp:773 src/engine/sysDef.cpp:955 +#: src/engine/sysDef.cpp:1314 src/engine/sysDef.cpp:1874 +#: src/engine/sysDef.cpp:1920 src/engine/sysDef.cpp:2037 +#: src/engine/sysDef.cpp:2100 src/gui/settings.cpp:4093 +#: src/gui/insEdit.cpp:6978 src/gui/insEdit.cpp:7129 src/gui/insEdit.cpp:7223 +#: src/gui/insEdit.cpp:7315 +msgid "Noise" +msgstr "" + +#: src/engine/sysDef.cpp:726 +msgid "20xy: Set noise mode (x: preset freq/ch3 freq; y: thin pulse/noise)" +msgstr "" + +#: src/engine/sysDef.cpp:731 +msgid "Sega Master System + FM Expansion" +msgstr "" + +#: src/engine/sysDef.cpp:737 src/gui/settings.cpp:4025 +msgid "Game Boy" +msgstr "" + +#: src/engine/sysDef.cpp:738 +msgid "the most popular portable game console of the era." +msgstr "" + +#: src/engine/sysDef.cpp:739 src/engine/sysDef.cpp:773 +#: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:2100 +msgid "Pulse 1" +msgstr "" + +#: src/engine/sysDef.cpp:739 src/engine/sysDef.cpp:773 +#: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:2100 +msgid "Pulse 2" +msgstr "" + +#: src/engine/sysDef.cpp:739 src/gui/settings.cpp:3930 +#: src/gui/guiConst.cpp:1395 src/gui/insEdit.cpp:6652 +msgid "Wavetable" +msgstr "" + +#: src/engine/sysDef.cpp:746 +msgid "11xx: Set noise length (0: long; 1: short)" +msgstr "" + +#: src/engine/sysDef.cpp:747 +msgid "12xx: Set duty cycle (0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:748 +msgid "13xy: Setup sweep (x: time; y: shift)" +msgstr "" + +#: src/engine/sysDef.cpp:749 +msgid "14xx: Set sweep direction (0: up; 1: down)" +msgstr "" + +#: src/engine/sysDef.cpp:754 +msgid "PC Engine/TurboGrafx-16" +msgstr "" + +#: src/engine/sysDef.cpp:755 +msgid "an '80s game console with a wavetable sound chip, popular in Japan." +msgstr "" + +#: src/engine/sysDef.cpp:763 src/engine/sysDef.cpp:1001 +#: src/engine/sysDef.cpp:1793 +msgid "11xx: Toggle noise mode" +msgstr "" + +#: src/engine/sysDef.cpp:764 +msgid "12xx: Setup LFO (0: disabled; 1: 1x depth; 2: 16x depth; 3: 256x depth)" +msgstr "" + +#: src/engine/sysDef.cpp:765 +msgid "13xx: Set LFO speed" +msgstr "" + +#: src/engine/sysDef.cpp:771 +msgid "NES (Ricoh 2A03)" +msgstr "" + +#: src/engine/sysDef.cpp:772 +msgid "" +"also known as Famicom in Japan, it's the most well-known game console of the " +"'80s." +msgstr "" + +#: src/engine/sysDef.cpp:773 src/gui/waveEdit.cpp:31 src/gui/waveEdit.cpp:217 +#: src/gui/insEdit.cpp:200 src/gui/insEdit.cpp:324 src/gui/insEdit.cpp:658 +msgid "Triangle" +msgstr "" + +#: src/engine/sysDef.cpp:773 src/engine/sysDef.cpp:2100 +#: src/gui/insEdit.cpp:2629 +msgid "DPCM" +msgstr "" + +#: src/engine/sysDef.cpp:779 src/engine/sysDef.cpp:2106 +msgid "11xx: Write to delta modulation counter (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:780 src/engine/sysDef.cpp:1068 +msgid "12xx: Set duty cycle/noise mode (pulse: 0 to 3; noise: 0 or 1)" +msgstr "" + +#: src/engine/sysDef.cpp:781 src/engine/sysDef.cpp:2108 +msgid "13xy: Sweep up (x: time; y: shift)" +msgstr "" + +#: src/engine/sysDef.cpp:782 src/engine/sysDef.cpp:2109 +msgid "14xy: Sweep down (x: time; y: shift)" +msgstr "" + +#: src/engine/sysDef.cpp:783 src/engine/sysDef.cpp:2110 +msgid "" +"15xx: Set envelope mode (0: envelope, 1: length, 2: looping, 3: constant)" +msgstr "" + +#: src/engine/sysDef.cpp:784 src/engine/sysDef.cpp:2111 +msgid "16xx: Set length counter (refer to manual for a list of values)" +msgstr "" + +#: src/engine/sysDef.cpp:785 src/engine/sysDef.cpp:2112 +msgid "17xx: Set frame counter mode (0: 4-step, 1: 5-step)" +msgstr "" + +#: src/engine/sysDef.cpp:786 src/engine/sysDef.cpp:2113 +msgid "18xx: Select PCM/DPCM mode (0: PCM; 1: DPCM)" +msgstr "" + +#: src/engine/sysDef.cpp:787 src/engine/sysDef.cpp:2114 +msgid "19xx: Set triangle linear counter (0 to 7F; 80 and higher halt)" +msgstr "" + +#: src/engine/sysDef.cpp:788 src/engine/sysDef.cpp:2115 +msgid "20xx: Set DPCM frequency (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:793 +msgid "NES + Konami VRC7" +msgstr "" + +#: src/engine/sysDef.cpp:799 +msgid "Famicom Disk System" +msgstr "" + +#: src/engine/sysDef.cpp:805 +msgid "Commodore 64 (SID 6581)" +msgstr "" + +#: src/engine/sysDef.cpp:806 +msgid "" +"this computer is powered by the SID chip, which had synthesizer features " +"like a filter and ADSR." +msgstr "" + +#: src/engine/sysDef.cpp:817 +msgid "Commodore 64 (SID 8580)" +msgstr "" + +#: src/engine/sysDef.cpp:818 +msgid "" +"this computer is powered by the SID chip, which had synthesizer features " +"like a filter and ADSR.\n" +"this is the newer revision of the chip." +msgstr "" + +#: src/engine/sysDef.cpp:829 +msgid "DefleCade" +msgstr "" + +#: src/engine/sysDef.cpp:835 +msgid "Neo Geo CD" +msgstr "" + +#: src/engine/sysDef.cpp:836 +msgid "" +"like Neo Geo, but lacking the ADPCM-B channel since they couldn't connect " +"the pins." +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1173 +#: src/engine/sysDef.cpp:1185 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1443 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +#: src/engine/sysDef.cpp:2006 +msgid "FM 1" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:891 +#: src/engine/sysDef.cpp:903 src/engine/sysDef.cpp:1032 +#: src/engine/sysDef.cpp:1097 src/engine/sysDef.cpp:1109 +#: src/engine/sysDef.cpp:1122 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1546 +#: src/engine/sysDef.cpp:1559 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:1693 src/engine/sysDef.cpp:1849 +#: src/engine/sysDef.cpp:1861 src/engine/sysDef.cpp:2006 +msgid "FM 2" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1173 +#: src/engine/sysDef.cpp:1185 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1443 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:2006 +msgid "FM 3" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1546 +#: src/engine/sysDef.cpp:1559 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:1693 src/engine/sysDef.cpp:1849 +#: src/engine/sysDef.cpp:1861 src/engine/sysDef.cpp:2006 +msgid "FM 4" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:862 src/engine/sysDef.cpp:927 +#: src/engine/sysDef.cpp:943 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "PSG 1" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:862 src/engine/sysDef.cpp:927 +#: src/engine/sysDef.cpp:943 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "PSG 2" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:862 src/engine/sysDef.cpp:927 +#: src/engine/sysDef.cpp:943 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "PSG 3" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 1" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 2" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 3" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 4" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 5" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 6" +msgstr "" + +#: src/engine/sysDef.cpp:847 +msgid "Neo Geo CD Extended Channel 2" +msgstr "" + +#: src/engine/sysDef.cpp:848 +msgid "" +"like Neo Geo, but lacking the ADPCM-B channel since they couldn't connect " +"the pins.\n" +"this one is in Extended Channel mode, which turns the second FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP1" +msgstr "" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP2" +msgstr "" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP3" +msgstr "" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP4" +msgstr "" + +#: src/engine/sysDef.cpp:860 src/gui/sysConf.cpp:913 +msgid "AY-3-8910" +msgstr "" + +#: src/engine/sysDef.cpp:861 +msgid "" +"this chip is everywhere! ZX Spectrum, MSX, Amstrad CPC, Intellivision, " +"Vectrex...\n" +"the discovery of envelope bass helped it beat the SN76489 with ease." +msgstr "" + +#: src/engine/sysDef.cpp:872 +msgid "Amiga" +msgstr "" + +#: src/engine/sysDef.cpp:873 +msgid "" +"a computer from the '80s with full sampling capabilities, giving it a sound " +"ahead of its time." +msgstr "" + +#: src/engine/sysDef.cpp:881 +msgid "10xx: Toggle filter (0 disables; 1 enables)" +msgstr "" + +#: src/engine/sysDef.cpp:882 +msgid "11xx: Toggle AM with next channel" +msgstr "" + +#: src/engine/sysDef.cpp:883 +msgid "12xx: Toggle period modulation with next channel" +msgstr "" + +#: src/engine/sysDef.cpp:884 +msgid "13xx: Set waveform" +msgstr "" + +#: src/engine/sysDef.cpp:889 +msgid "Yamaha YM2151 (OPM)" +msgstr "" + +#: src/engine/sysDef.cpp:890 +msgid "" +"this was Yamaha's first integrated FM chip.\n" +"it was used in several synthesizers, computers and arcade boards." +msgstr "" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1279 src/engine/sysDef.cpp:1332 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1370 +#: src/engine/sysDef.cpp:1383 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +#: src/engine/sysDef.cpp:2006 +msgid "FM 5" +msgstr "" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:2006 +msgid "FM 6" +msgstr "" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:1032 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1279 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:2006 +msgid "FM 7" +msgstr "" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:1032 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:2006 +msgid "FM 8" +msgstr "" + +#: src/engine/sysDef.cpp:901 +msgid "Yamaha YM2612 (OPN2)" +msgstr "" + +#: src/engine/sysDef.cpp:902 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer)." +msgstr "" + +#: src/engine/sysDef.cpp:913 +msgid "Atari TIA" +msgstr "" + +#: src/engine/sysDef.cpp:914 +msgid "" +"it's a challenge to make music on this chip which barely has musical " +"capabilities..." +msgstr "" + +#: src/engine/sysDef.cpp:925 +msgid "Philips SAA1099" +msgstr "" + +#: src/engine/sysDef.cpp:926 +msgid "" +"supposedly an upgrade from the AY-3-8910, this was present on the Creative " +"Music System (Game Blaster) and SAM Coupé." +msgstr "" + +#: src/engine/sysDef.cpp:927 +msgid "PSG 4" +msgstr "" + +#: src/engine/sysDef.cpp:927 +msgid "PSG 5" +msgstr "" + +#: src/engine/sysDef.cpp:927 +msgid "PSG 6" +msgstr "" + +#: src/engine/sysDef.cpp:934 +msgid "10xy: Set channel mode (x: noise; y: tone)" +msgstr "" + +#: src/engine/sysDef.cpp:935 +msgid "11xx: Set noise frequency" +msgstr "" + +#: src/engine/sysDef.cpp:936 +msgid "12xx: Setup envelope (refer to docs for more information)" +msgstr "" + +#: src/engine/sysDef.cpp:941 +msgid "Microchip AY8930" +msgstr "" + +#: src/engine/sysDef.cpp:942 +msgid "" +"an improved version of the AY-3-8910 with a bigger frequency range, duty " +"cycles, configurable noise and per-channel envelopes!" +msgstr "" + +#: src/engine/sysDef.cpp:953 +msgid "Commodore VIC-20" +msgstr "" + +#: src/engine/sysDef.cpp:954 +msgid "" +"Commodore's successor to the PET.\n" +"its square wave channels are more than just square..." +msgstr "" + +#: src/engine/sysDef.cpp:955 src/gui/settings.cpp:136 src/gui/settings.cpp:206 +#: src/gui/settings.cpp:3970 +msgid "Low" +msgstr "" + +#: src/engine/sysDef.cpp:955 +msgid "Mid" +msgstr "" + +#: src/engine/sysDef.cpp:955 src/gui/settings.cpp:135 src/gui/settings.cpp:208 +#: src/gui/settings.cpp:3971 +msgid "High" +msgstr "" + +#: src/engine/sysDef.cpp:964 +msgid "Commodore PET" +msgstr "" + +#: src/engine/sysDef.cpp:965 +msgid "" +"one channel of 1-bit wavetable which is better (and worse) than the PC " +"Speaker." +msgstr "" + +#: src/engine/sysDef.cpp:966 src/engine/sysDef.cpp:1262 +#: src/engine/sysDef.cpp:2100 src/gui/editControls.cpp:433 +#: src/gui/settings.cpp:4017 src/gui/settings.cpp:4095 +msgid "Wave" +msgstr "" + +#: src/engine/sysDef.cpp:975 src/gui/settings.cpp:4052 +msgid "SNES" +msgstr "" + +#: src/engine/sysDef.cpp:976 +msgid "FM? nah... samples! Nintendo's answer to Sega." +msgstr "" + +#: src/engine/sysDef.cpp:983 +msgid "18xx: Enable echo buffer" +msgstr "" + +#: src/engine/sysDef.cpp:984 +msgid "19xx: Set echo delay (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:985 +msgid "1Axx: Set left echo volume" +msgstr "" + +#: src/engine/sysDef.cpp:986 +msgid "1Bxx: Set right echo volume" +msgstr "" + +#: src/engine/sysDef.cpp:987 +msgid "1Cxx: Set echo feedback" +msgstr "" + +#: src/engine/sysDef.cpp:988 +msgid "1Exx: Set dry output volume (left)" +msgstr "" + +#: src/engine/sysDef.cpp:989 +msgid "1Fxx: Set dry output volume (right)" +msgstr "" + +#: src/engine/sysDef.cpp:990 +msgid "30xx: Set echo filter coefficient 0" +msgstr "" + +#: src/engine/sysDef.cpp:991 +msgid "31xx: Set echo filter coefficient 1" +msgstr "" + +#: src/engine/sysDef.cpp:992 +msgid "32xx: Set echo filter coefficient 2" +msgstr "" + +#: src/engine/sysDef.cpp:993 +msgid "33xx: Set echo filter coefficient 3" +msgstr "" + +#: src/engine/sysDef.cpp:994 +msgid "34xx: Set echo filter coefficient 4" +msgstr "" + +#: src/engine/sysDef.cpp:995 +msgid "35xx: Set echo filter coefficient 5" +msgstr "" + +#: src/engine/sysDef.cpp:996 +msgid "36xx: Set echo filter coefficient 6" +msgstr "" + +#: src/engine/sysDef.cpp:997 +msgid "37xx: Set echo filter coefficient 7" +msgstr "" + +#: src/engine/sysDef.cpp:1002 +msgid "12xx: Toggle echo on this channel" +msgstr "" + +#: src/engine/sysDef.cpp:1003 +msgid "13xx: Toggle pitch modulation" +msgstr "" + +#: src/engine/sysDef.cpp:1004 +msgid "14xy: Toggle invert (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:1005 +msgid "" +"15xx: Set envelope mode (0: ADSR, 1: gain/direct, 2: dec, 3: exp, 4: inc, 5: " +"bent)" +msgstr "" + +#: src/engine/sysDef.cpp:1006 +msgid "16xx: Set gain (00 to 7F if direct; 00 to 1F otherwise)" +msgstr "" + +#: src/engine/sysDef.cpp:1007 +msgid "1Dxx: Set noise frequency (00 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:1008 +msgid "20xx: Set attack (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:1009 +msgid "21xx: Set decay (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1010 +msgid "22xx: Set sustain (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1011 +msgid "23xx: Set release (00 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:1016 +msgid "Konami VRC6" +msgstr "" + +#: src/engine/sysDef.cpp:1017 +msgid "an expansion chip for the Famicom, featuring a quirky sawtooth channel." +msgstr "" + +#: src/engine/sysDef.cpp:1018 +msgid "VRC6 1" +msgstr "" + +#: src/engine/sysDef.cpp:1018 +msgid "VRC6 2" +msgstr "" + +#: src/engine/sysDef.cpp:1018 +msgid "VRC6 Saw" +msgstr "" + +#: src/engine/sysDef.cpp:1024 src/engine/sysDef.cpp:2092 +msgid "12xx: Set duty cycle (pulse: 0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1030 +msgid "Yamaha YM2413 (OPLL)" +msgstr "" + +#: src/engine/sysDef.cpp:1031 +msgid "" +"cost-reduced version of the OPL with 16 patches and only one of them is user-" +"configurable." +msgstr "" + +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1173 +#: src/engine/sysDef.cpp:1185 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:2006 +msgid "FM 9" +msgstr "" + +#: src/engine/sysDef.cpp:1042 +msgid "Famicom Disk System (chip)" +msgstr "" + +#: src/engine/sysDef.cpp:1043 +msgid "a disk drive for the Famicom which also contains one wavetable channel." +msgstr "" + +#: src/engine/sysDef.cpp:1044 src/gui/settings.cpp:4039 +msgid "FDS" +msgstr "" + +#: src/engine/sysDef.cpp:1051 +msgid "11xx: Set modulation depth" +msgstr "" + +#: src/engine/sysDef.cpp:1052 +msgid "12xy: Set modulation speed high byte (x: enable; y: value)" +msgstr "" + +#: src/engine/sysDef.cpp:1053 +msgid "13xx: Set modulation speed low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1054 +msgid "14xx: Set modulator position" +msgstr "" + +#: src/engine/sysDef.cpp:1055 +msgid "15xx: Set modulator table to waveform" +msgstr "" + +#: src/engine/sysDef.cpp:1060 +msgid "MMC5" +msgstr "" + +#: src/engine/sysDef.cpp:1061 +msgid "" +"an expansion chip for the Famicom, featuring a little-known PCM channel." +msgstr "" + +#: src/engine/sysDef.cpp:1073 src/gui/settings.cpp:4041 +msgid "Namco 163" +msgstr "" + +#: src/engine/sysDef.cpp:1074 +msgid "an expansion chip for the Famicom, with full wavetable." +msgstr "" + +#: src/engine/sysDef.cpp:1081 +msgid "18xx: Change channel limits (0 to 7, x + 1)" +msgstr "" + +#: src/engine/sysDef.cpp:1082 +msgid "20xx: Load a waveform into memory" +msgstr "" + +#: src/engine/sysDef.cpp:1083 +msgid "21xx: Set position for wave load" +msgstr "" + +#: src/engine/sysDef.cpp:1086 +msgid "10xx: Select waveform" +msgstr "" + +#: src/engine/sysDef.cpp:1087 +msgid "11xx: Set waveform position in RAM" +msgstr "" + +#: src/engine/sysDef.cpp:1088 +msgid "12xx: Set waveform length in RAM (04 to FC in steps of 4)" +msgstr "" + +#: src/engine/sysDef.cpp:1089 +msgid "15xx: Set waveform load position" +msgstr "" + +#: src/engine/sysDef.cpp:1090 +msgid "16xx: Set waveform load length (04 to FC in steps of 4)" +msgstr "" + +#: src/engine/sysDef.cpp:1095 +msgid "Yamaha YM2203 (OPN)" +msgstr "" + +#: src/engine/sysDef.cpp:1096 +msgid "" +"cost-reduced version of the OPM with a different register layout and no " +"stereo...\n" +"...but it has a built-in AY-3-8910! (actually an YM2149)" +msgstr "" + +#: src/engine/sysDef.cpp:1107 +msgid "Yamaha YM2203 (OPN) Extended Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:1108 +msgid "" +"cost-reduced version of the OPM with a different register layout and no " +"stereo...\n" +"...but it has a built-in AY-3-8910! (actually an YM2149)\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies" +msgstr "" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP1" +msgstr "" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP2" +msgstr "" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP3" +msgstr "" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP4" +msgstr "" + +#: src/engine/sysDef.cpp:1120 +msgid "Yamaha YM2203 (OPN) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1121 +msgid "" +"cost-reduced version of the OPM with a different register layout and no " +"stereo...\n" +"...but it has a built-in AY-3-8910! (actually an YM2149)\n" +"CSM blah blah" +msgstr "" + +#: src/engine/sysDef.cpp:1122 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1383 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1559 src/engine/sysDef.cpp:1861 +msgid "CSM Timer" +msgstr "" + +#: src/engine/sysDef.cpp:1133 +msgid "Yamaha YM2608 (OPNA)" +msgstr "" + +#: src/engine/sysDef.cpp:1134 +msgid "" +"OPN but twice the FM channels, stereo makes a come-back and has rhythm and " +"ADPCM channels." +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1481 +#: src/gui/insEdit.cpp:3302 src/gui/insEdit.cpp:3624 +msgid "Kick" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:210 src/gui/insEdit.cpp:218 +msgid "Snare" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:212 src/gui/insEdit.cpp:220 +#: src/gui/insEdit.cpp:1909 src/gui/insEdit.cpp:2014 +msgid "Top" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:213 src/gui/insEdit.cpp:219 +msgid "HiHat" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:211 +msgid "Tom" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 +msgid "Rim" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:1693 +msgid "ADPCM" +msgstr "" + +#: src/engine/sysDef.cpp:1145 +msgid "Yamaha YM2608 (OPNA) Extended Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:1146 +msgid "" +"OPN but twice the FM channels, stereo makes a come-back and has rhythm and " +"ADPCM channels.\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies" +msgstr "" + +#: src/engine/sysDef.cpp:1158 +msgid "Yamaha YM2608 (OPNA) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1159 +msgid "" +"OPN but twice the FM channels, stereo makes a come-back and has rhythm and " +"ADPCM channels.\n" +"CSM blah blah" +msgstr "" + +#: src/engine/sysDef.cpp:1171 +msgid "Yamaha YM3526 (OPL)" +msgstr "" + +#: src/engine/sysDef.cpp:1172 +msgid "" +"OPN, but what if you only had two operators, no stereo, no detune and a " +"lower ADSR parameter range?" +msgstr "" + +#: src/engine/sysDef.cpp:1183 +msgid "Yamaha YM3812 (OPL2)" +msgstr "" + +#: src/engine/sysDef.cpp:1184 +msgid "OPL, but what if you had more waveforms to choose than the normal sine?" +msgstr "" + +#: src/engine/sysDef.cpp:1195 +msgid "Yamaha YMF262 (OPL3)" +msgstr "" + +#: src/engine/sysDef.cpp:1196 +msgid "" +"OPL2, but what if you had twice the channels, 4-op mode, stereo and even " +"more waveforms?" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 1" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 3" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 5" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 7" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 9" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 10" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 11" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 12" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 13" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 14" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 15" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:2006 +msgid "FM 16" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:2006 +msgid "FM 17" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:2006 +msgid "FM 18" +msgstr "" + +#: src/engine/sysDef.cpp:1208 src/gui/settings.cpp:4051 +msgid "MultiPCM" +msgstr "" + +#: src/engine/sysDef.cpp:1209 +msgid "" +"how many channels of PCM do you want?\n" +"MultiPCM: yes" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 17" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 18" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 19" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 20" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 21" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 22" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 23" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 24" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 25" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 26" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 27" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 28" +msgstr "" + +#: src/engine/sysDef.cpp:1217 +msgid "PC Speaker" +msgstr "" + +#: src/engine/sysDef.cpp:1218 +msgid "good luck! you get one square and no volume control." +msgstr "" + +#: src/engine/sysDef.cpp:1219 src/engine/sysDef.cpp:1228 +#: src/gui/guiConst.cpp:1394 src/gui/waveEdit.cpp:199 src/gui/insEdit.cpp:183 +#: src/gui/insEdit.cpp:194 src/gui/insEdit.cpp:326 src/gui/insEdit.cpp:656 +msgid "Square" +msgstr "" + +#: src/engine/sysDef.cpp:1226 +msgid "Pong" +msgstr "" + +#: src/engine/sysDef.cpp:1227 +msgid "please don't use this chip. it was added as a joke." +msgstr "" + +#: src/engine/sysDef.cpp:1235 src/gui/settings.cpp:4044 +msgid "POKEY" +msgstr "" + +#: src/engine/sysDef.cpp:1236 +msgid "" +"TIA, but better and more flexible.\n" +"used in the Atari 8-bit family of computers (400/800/XL/XE)." +msgstr "" + +#: src/engine/sysDef.cpp:1243 src/engine/sysDef.cpp:1714 +msgid "10xx: Set waveform (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1244 +msgid "11xx: Set AUDCTL" +msgstr "" + +#: src/engine/sysDef.cpp:1245 +msgid "12xx: Toggle two-tone mode" +msgstr "" + +#: src/engine/sysDef.cpp:1250 +msgid "Ricoh RF5C68" +msgstr "" + +#: src/engine/sysDef.cpp:1251 +msgid "" +"this is like SNES' sound chip but without interpolation and the rest of nice " +"bits." +msgstr "" + +#: src/engine/sysDef.cpp:1260 src/gui/settings.cpp:4046 +msgid "WonderSwan" +msgstr "" + +#: src/engine/sysDef.cpp:1261 +msgid "developed by the makers of the Game Boy and the Virtual Boy..." +msgstr "" + +#: src/engine/sysDef.cpp:1262 +msgid "Wave/PCM" +msgstr "" + +#: src/engine/sysDef.cpp:1262 +msgid "Wave/Sweep" +msgstr "" + +#: src/engine/sysDef.cpp:1262 +msgid "Wave/Noise" +msgstr "" + +#: src/engine/sysDef.cpp:1269 +msgid "11xx: Setup noise mode (0: disabled; 1-8: enabled/tap)" +msgstr "" + +#: src/engine/sysDef.cpp:1270 +msgid "12xx: Setup sweep period (0: disabled; 1-20: enabled/period)" +msgstr "" + +#: src/engine/sysDef.cpp:1271 +msgid "13xx: Set sweep amount" +msgstr "" + +#: src/engine/sysDef.cpp:1277 +msgid "Yamaha YM2414 (OPZ)" +msgstr "" + +#: src/engine/sysDef.cpp:1278 +msgid "" +"like OPM, but with more waveforms, fixed frequency mode and totally... " +"undocumented.\n" +"used in the Yamaha TX81Z and some other synthesizers." +msgstr "" + +#: src/engine/sysDef.cpp:1285 +msgid "2Fxx: Toggle hard envelope reset on new notes" +msgstr "" + +#: src/engine/sysDef.cpp:1291 src/gui/settings.cpp:4069 +msgid "Pokémon Mini" +msgstr "" + +#: src/engine/sysDef.cpp:1292 +msgid "this one is like PC Speaker but has duty cycles." +msgstr "" + +#: src/engine/sysDef.cpp:1293 src/gui/settings.cpp:4092 src/gui/waveEdit.cpp:33 +msgid "Pulse" +msgstr "" + +#: src/engine/sysDef.cpp:1300 +msgid "SegaPCM" +msgstr "" + +#: src/engine/sysDef.cpp:1301 +msgid "" +"used in some Sega arcade boards (like OutRun), and usually paired with a " +"YM2151." +msgstr "" + +#: src/engine/sysDef.cpp:1312 src/gui/settings.cpp:4040 +msgid "Virtual Boy" +msgstr "" + +#: src/engine/sysDef.cpp:1313 +msgid "" +"a console which failed to sell well due to its headache-inducing features." +msgstr "" + +#: src/engine/sysDef.cpp:1321 +msgid "11xx: Set noise length (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1322 +msgid "" +"12xy: Setup envelope (x: enabled/loop (1: enable, 3: enable+loop); y: speed/" +"direction (0-7: down, 8-F: up))" +msgstr "" + +#: src/engine/sysDef.cpp:1323 +msgid "13xy: Setup sweep (x: speed; y: shift; channel 5 only)" +msgstr "" + +#: src/engine/sysDef.cpp:1324 +msgid "" +"14xy: Setup modulation (x: enabled/loop (1: enable, 3: enable+loop); y: " +"speed; channel 5 only)" +msgstr "" + +#: src/engine/sysDef.cpp:1325 +msgid "15xx: Set modulation waveform (x: wavetable; channel 5 only)" +msgstr "" + +#: src/engine/sysDef.cpp:1330 +msgid "Konami VRC7" +msgstr "" + +#: src/engine/sysDef.cpp:1331 +msgid "" +"like OPLL, but even more cost reductions applied. three FM channels went " +"missing, and drums mode did as well..." +msgstr "" + +#: src/engine/sysDef.cpp:1342 +msgid "Yamaha YM2610B (OPNB2)" +msgstr "" + +#: src/engine/sysDef.cpp:1343 +msgid "" +"so Taito asked Yamaha if they could get the two missing FM channels back, " +"and Yamaha gladly provided them with this chip." +msgstr "" + +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/gui/settings.cpp:4061 +msgid "ADPCM-B" +msgstr "" + +#: src/engine/sysDef.cpp:1354 +msgid "ZX Spectrum Beeper" +msgstr "" + +#: src/engine/sysDef.cpp:1355 +msgid "" +"the ZX Spectrum only had a basic beeper capable of...\n" +"...a bunch of thin pulses and tons of other interesting stuff!\n" +"Furnace provides a thin pulse system." +msgstr "" + +#: src/engine/sysDef.cpp:1362 src/engine/sysDef.cpp:1950 +msgid "12xx: Set pulse width" +msgstr "" + +#: src/engine/sysDef.cpp:1363 +msgid "17xx: Trigger overlay drum" +msgstr "" + +#: src/engine/sysDef.cpp:1368 +msgid "Yamaha YM2612 (OPN2) Extended Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:1369 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:1381 +msgid "Yamaha YM2612 (OPN2) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1382 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this one includes CSM mode control for special effects on Channel 3." +msgstr "" + +#: src/engine/sysDef.cpp:1394 src/gui/settings.cpp:4042 +msgid "Konami SCC" +msgstr "" + +#: src/engine/sysDef.cpp:1395 +msgid "" +"a wavetable chip made by Konami for use with the MSX.\n" +"the last channel shares its wavetable with the previous one though." +msgstr "" + +#: src/engine/sysDef.cpp:1405 +msgid "Yamaha YM3526 (OPL) with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1406 +msgid "the OPL chip but with drums mode enabled." +msgstr "" + +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1693 +msgid "Kick/FM 7" +msgstr "" + +#: src/engine/sysDef.cpp:1417 +msgid "Yamaha YM3812 (OPL2) with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1418 +msgid "the OPL2 chip but with drums mode enabled." +msgstr "" + +#: src/engine/sysDef.cpp:1429 +msgid "Yamaha YMF262 (OPL3) with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1430 +msgid "the OPL3 chip but with drums mode enabled." +msgstr "" + +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1631 +msgid "Kick/FM 16" +msgstr "" + +#: src/engine/sysDef.cpp:1441 +msgid "Yamaha YM2610 (OPNB)" +msgstr "" + +#: src/engine/sysDef.cpp:1442 +msgid "" +"this chip was used in SNK's Neo Geo arcade board and video game console.\n" +"it's like OPNA but the rhythm channels are ADPCM channels and two FM " +"channels went missing." +msgstr "" + +#: src/engine/sysDef.cpp:1453 +msgid "Yamaha YM2610 (OPNB) Extended Channel 2" +msgstr "" + +#: src/engine/sysDef.cpp:1454 +msgid "" +"this chip was used in SNK's Neo Geo arcade board and video game console.\n" +"it's like OPNA but the rhythm channels are ADPCM channels and two FM " +"channels went missing.\n" +"this one is in Extended Channel mode, which turns the second FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:1466 +msgid "Yamaha YM2610 (OPNB) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1467 +msgid "" +"this chip was used in SNK's Neo Geo arcade board and video game console.\n" +"it's like OPNA but the rhythm channels are ADPCM channels and two FM " +"channels went missing.\n" +"this one includes CSM mode control for special effects on Channel 2." +msgstr "" + +#: src/engine/sysDef.cpp:1479 +msgid "Yamaha YM2413 (OPLL) with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1480 +msgid "the OPLL chips but with drums mode turned on." +msgstr "" + +#: src/engine/sysDef.cpp:1491 +msgid "3xxx: Load LFSR (0 to FFF)" +msgstr "" + +#: src/engine/sysDef.cpp:1497 +msgid "Atari Lynx" +msgstr "" + +#: src/engine/sysDef.cpp:1498 +msgid "" +"a portable console made by Atari. it has all of Atari's trademark waveforms." +msgstr "" + +#: src/engine/sysDef.cpp:1509 +msgid "10xx: Set echo feedback level (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1510 +msgid "11xx: Set channel echo level (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1511 +msgid "12xx: Toggle QSound algorithm (0: disabled; 1: enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:1513 +msgid "3xxx: Set echo delay buffer length (000 to AA5)" +msgstr "" + +#: src/engine/sysDef.cpp:1519 +msgid "Capcom QSound" +msgstr "" + +#: src/engine/sysDef.cpp:1520 +msgid "" +"used in some of Capcom's arcade boards. surround-like sampled sound with " +"echo." +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +#: src/engine/sysDef.cpp:2056 +msgid "PCM 1" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +#: src/engine/sysDef.cpp:2056 +msgid "PCM 2" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 3" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 4" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 5" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 6" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 7" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 8" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 9" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 10" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 11" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 12" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 13" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 14" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 15" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 16" +msgstr "" + +#: src/engine/sysDef.cpp:1521 +msgid "ADPCM 1" +msgstr "" + +#: src/engine/sysDef.cpp:1521 +msgid "ADPCM 2" +msgstr "" + +#: src/engine/sysDef.cpp:1521 +msgid "ADPCM 3" +msgstr "" + +#: src/engine/sysDef.cpp:1530 src/gui/settings.cpp:4048 +msgid "VERA" +msgstr "" + +#: src/engine/sysDef.cpp:1531 +msgid "the chip used in a computer design created by The 8-Bit Guy." +msgstr "" + +#: src/engine/sysDef.cpp:1538 +msgid "20xx: Set waveform" +msgstr "" + +#: src/engine/sysDef.cpp:1539 +msgid "22xx: Set duty cycle (0 to 3F)" +msgstr "" + +#: src/engine/sysDef.cpp:1544 +msgid "Yamaha YM2610B (OPNB2) Extended Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:1545 +msgid "" +"so Taito asked Yamaha if they could get the two missing FM channels back, " +"and Yamaha gladly provided them with this chip.\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:1557 +msgid "Yamaha YM2610B (OPNB2) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1558 +msgid "" +"so Taito asked Yamaha if they could get the two missing FM channels back, " +"and Yamaha gladly provided them with this chip.\n" +"CSM blah blah" +msgstr "" + +#: src/engine/sysDef.cpp:1570 +msgid "SegaPCM (compatible 5-channel mode)" +msgstr "" + +#: src/engine/sysDef.cpp:1571 +msgid "" +"this is the same thing as SegaPCM, but only exposes 5 of the channels for " +"compatibility with DefleMask." +msgstr "" + +#: src/engine/sysDef.cpp:1582 +msgid "Seta/Allumer X1-010" +msgstr "" + +#: src/engine/sysDef.cpp:1583 +msgid "" +"a sound chip used in several Seta/Allumer-manufactured arcade boards with " +"too many channels of wavetable sound, which also are capable of sampled " +"sound." +msgstr "" + +#: src/engine/sysDef.cpp:1591 +msgid "11xx: Set envelope shape" +msgstr "" + +#: src/engine/sysDef.cpp:1592 +msgid "12xx: Set sample bank slot (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1596 +msgid "20xx: Set PCM frequency (1 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1597 +msgid "" +"22xx: Set envelope mode (bit 0: enable; bit 1: one-shot; bit 2: split shape " +"to L/R; bit 3/5: H.invert right/left; bit 4/6: V.invert right/left)" +msgstr "" + +#: src/engine/sysDef.cpp:1598 +msgid "23xx: Set envelope period" +msgstr "" + +#: src/engine/sysDef.cpp:1606 +msgid "Konami Bubble System WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1607 +msgid "" +"this is the wavetable part of the Bubble System, which also had two " +"AY-3-8910s." +msgstr "" + +#: src/engine/sysDef.cpp:1619 +msgid "Yamaha YMF278B (OPL4)" +msgstr "" + +#: src/engine/sysDef.cpp:1620 +msgid "like OPL3, but this time it also has a 24-channel version of MultiPCM." +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 17" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 18" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 19" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 20" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 21" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 22" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 23" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 24" +msgstr "" + +#: src/engine/sysDef.cpp:1629 +msgid "Yamaha YMF278B (OPL4) with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1630 +msgid "the OPL4 but with drums mode turned on." +msgstr "" + +#: src/engine/sysDef.cpp:1638 +msgid "11xx: Set filter mode (00 to 03)" +msgstr "" + +#: src/engine/sysDef.cpp:1639 +msgid "14xx: Set filter coefficient K1 low byte (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1640 +msgid "15xx: Set filter coefficient K1 high byte (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1641 +msgid "16xx: Set filter coefficient K2 low byte (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1642 +msgid "17xx: Set filter coefficient K2 high byte (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1643 +msgid "18xx: Set filter coefficient K1 slide up (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1644 +msgid "19xx: Set filter coefficient K1 slide down (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1645 +msgid "1Axx: Set filter coefficient K2 slide up (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1646 +msgid "1Bxx: Set filter coefficient K2 slide down (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1647 +msgid "22xx: Set envelope left volume ramp (signed) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1648 +msgid "23xx: Set envelope right volume ramp (signed) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1649 +msgid "24xx: Set envelope filter coefficient k1 ramp (signed) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1650 +msgid "" +"25xx: Set envelope filter coefficient k1 ramp (signed, slower) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1651 +msgid "26xx: Set envelope filter coefficient k2 ramp (signed) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1652 +msgid "" +"27xx: Set envelope filter coefficient k2 ramp (signed, slower) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1656 +msgid "120x: Set pause (bit 0)" +msgstr "" + +#: src/engine/sysDef.cpp:1658 +msgid "2xxx: Set envelope count (000 to 1FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1659 +msgid "3xxx: Set filter coefficient K1 (000 to FFF)" +msgstr "" + +#: src/engine/sysDef.cpp:1660 +msgid "4xxx: Set filter coefficient K2 (000 to FFF)" +msgstr "" + +#: src/engine/sysDef.cpp:1667 +msgid "Ensoniq ES5506" +msgstr "" + +#: src/engine/sysDef.cpp:1668 +msgid "" +"a sample chip made by Ensoniq, which is the basis for the GF1 chip found in " +"Gravis' Ultrasound cards." +msgstr "" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 29" +msgstr "" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 30" +msgstr "" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 31" +msgstr "" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 32" +msgstr "" + +#: src/engine/sysDef.cpp:1679 +msgid "Yamaha Y8950" +msgstr "" + +#: src/engine/sysDef.cpp:1680 +msgid "like OPL but with an ADPCM channel." +msgstr "" + +#: src/engine/sysDef.cpp:1691 +msgid "Yamaha Y8950 with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1692 +msgid "the Y8950 chip, in drums mode." +msgstr "" + +#: src/engine/sysDef.cpp:1703 +msgid "Konami SCC+" +msgstr "" + +#: src/engine/sysDef.cpp:1704 +msgid "" +"this is a variant of Konami's SCC chip with the last channel's wavetable " +"being independent." +msgstr "" + +#: src/engine/sysDef.cpp:1715 +msgid "12xx: Set pulse width (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:1716 +msgid "13xx: Set resonance (0 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1717 +msgid "" +"14xx: Set filter mode (bit 0: ring mod; bit 1: low pass; bit 2: high pass; " +"bit 3: band pass)" +msgstr "" + +#: src/engine/sysDef.cpp:1718 +msgid "15xx: Set frequency sweep period low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1719 +msgid "16xx: Set frequency sweep period high byte" +msgstr "" + +#: src/engine/sysDef.cpp:1720 +msgid "17xx: Set volume sweep period low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1721 +msgid "18xx: Set volume sweep period high byte" +msgstr "" + +#: src/engine/sysDef.cpp:1722 +msgid "19xx: Set cutoff sweep period low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1723 +msgid "1Axx: Set cutoff sweep period high byte" +msgstr "" + +#: src/engine/sysDef.cpp:1724 +msgid "1Bxx: Set frequency sweep boundary" +msgstr "" + +#: src/engine/sysDef.cpp:1725 +msgid "1Cxx: Set volume sweep boundary" +msgstr "" + +#: src/engine/sysDef.cpp:1726 +msgid "1Dxx: Set cutoff sweep boundary" +msgstr "" + +#: src/engine/sysDef.cpp:1727 +msgid "1Exx: Set phase reset period low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1728 +msgid "1Fxx: Set phase reset period high byte" +msgstr "" + +#: src/engine/sysDef.cpp:1729 +msgid "20xx: Toggle frequency sweep (bit 0-6: speed; bit 7: direction is up)" +msgstr "" + +#: src/engine/sysDef.cpp:1730 +msgid "" +"21xx: Toggle volume sweep (bit 0-4: speed; bit 5: direction is up; bit 6: " +"loop; bit 7: alternate)" +msgstr "" + +#: src/engine/sysDef.cpp:1731 +msgid "22xx: Toggle cutoff sweep (bit 0-6: speed; bit 7: direction is up)" +msgstr "" + +#: src/engine/sysDef.cpp:1739 +msgid "tildearrow Sound Unit" +msgstr "" + +#: src/engine/sysDef.cpp:1740 +msgid "" +"tildearrow's fantasy sound chip. put SID, AY and VERA in a blender, and you " +"get this!" +msgstr "" + +#: src/engine/sysDef.cpp:1751 +msgid "OKI MSM6295" +msgstr "" + +#: src/engine/sysDef.cpp:1752 +msgid "an ADPCM sound chip manufactured by OKI and used in many arcade boards." +msgstr "" + +#: src/engine/sysDef.cpp:1759 +msgid "20xx: Set chip output rate (0: clock/132; 1: clock/165)" +msgstr "" + +#: src/engine/sysDef.cpp:1764 +msgid "OKI MSM6258" +msgstr "" + +#: src/engine/sysDef.cpp:1765 +msgid "an ADPCM sound chip manufactured by OKI and used in the Sharp X68000." +msgstr "" + +#: src/engine/sysDef.cpp:1766 src/engine/sysDef.cpp:1887 +#: src/gui/editControls.cpp:437 src/gui/settings.cpp:4223 +#: src/gui/guiConst.cpp:1397 src/gui/insEdit.cpp:2628 src/gui/insEdit.cpp:2666 +msgid "Sample" +msgstr "" + +#: src/engine/sysDef.cpp:1772 +msgid "20xx: Set frequency divider (0-2)" +msgstr "" + +#: src/engine/sysDef.cpp:1773 +msgid "21xx: Select clock rate (0: full; 1: half)" +msgstr "" + +#: src/engine/sysDef.cpp:1778 +msgid "Yamaha YMZ280B (PCMD8)" +msgstr "" + +#: src/engine/sysDef.cpp:1779 +msgid "" +"used in some arcade boards. Can play back either 4-bit ADPCM, 8-bit PCM or " +"16-bit PCM." +msgstr "" + +#: src/engine/sysDef.cpp:1797 src/gui/settings.cpp:4054 +msgid "Namco WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1798 +msgid "" +"a wavetable sound chip used in Pac-Man, among other early Namco arcade games." +msgstr "" + +#: src/engine/sysDef.cpp:1808 +msgid "Namco C15 WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1809 +msgid "" +"successor of the original Namco WSG chip, used in later Namco arcade games." +msgstr "" + +#: src/engine/sysDef.cpp:1819 +msgid "Namco C30 WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1820 +msgid "like Namco C15 but with stereo sound." +msgstr "" + +#: src/engine/sysDef.cpp:1830 +msgid "OKI MSM5232" +msgstr "" + +#: src/engine/sysDef.cpp:1831 +msgid "" +"a square wave additive synthesis chip made by OKI. used in some arcade " +"machines and instruments." +msgstr "" + +#: src/engine/sysDef.cpp:1839 +msgid "10xy: Set group control (x: sustain; y: part toggle bitmask)" +msgstr "" + +#: src/engine/sysDef.cpp:1840 src/engine/sysDef.cpp:1998 +msgid "11xx: Set noise mode" +msgstr "" + +#: src/engine/sysDef.cpp:1841 +msgid "12xx: Set group attack (0 to 5)" +msgstr "" + +#: src/engine/sysDef.cpp:1842 +msgid "13xx: Set group decay (0 to 11)" +msgstr "" + +#: src/engine/sysDef.cpp:1847 +msgid "Yamaha YM2612 (OPN2) with DualPCM" +msgstr "" + +#: src/engine/sysDef.cpp:1848 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this system uses software mixing to provide two sample channels." +msgstr "" + +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +msgid "FM 6/PCM 1" +msgstr "" + +#: src/engine/sysDef.cpp:1859 +msgid "Yamaha YM2612 (OPN2) Extended Channel 3 with DualPCM and CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1860 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this system uses software mixing to provide two sample channels.\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:1872 src/gui/settings.cpp:4024 +msgid "T6W28" +msgstr "" + +#: src/engine/sysDef.cpp:1873 +msgid "" +"an SN76489 derivative used in Neo Geo Pocket, has independent stereo volume " +"and noise channel frequency." +msgstr "" + +#: src/engine/sysDef.cpp:1880 +msgid "20xx: Set noise length (0: short, 1: long)" +msgstr "" + +#: src/engine/sysDef.cpp:1885 +msgid "Generic PCM DAC" +msgstr "" + +#: src/engine/sysDef.cpp:1886 +msgid "as generic sample playback as it gets." +msgstr "" + +#: src/engine/sysDef.cpp:1898 +msgid "Konami K007232" +msgstr "" + +#: src/engine/sysDef.cpp:1899 +msgid "this PCM chip was widely used at Konami arcade boards in 1986-1990." +msgstr "" + +#: src/engine/sysDef.cpp:1908 +msgid "Irem GA20" +msgstr "" + +#: src/engine/sysDef.cpp:1909 +msgid "" +"yet another PCM chip from Irem. like Amiga, but less pitch resolution and no " +"sample loop." +msgstr "" + +#: src/engine/sysDef.cpp:1918 +msgid "Sharp SM8521" +msgstr "" + +#: src/engine/sysDef.cpp:1919 +msgid "a SoC with wavetable sound hardware." +msgstr "" + +#: src/engine/sysDef.cpp:1929 +msgid "Casio PV-1000" +msgstr "" + +#: src/engine/sysDef.cpp:1930 +msgid "" +"a game console with 3 channels of square wave. it's what happens after " +"fusing TIA and VIC together." +msgstr "" + +#: src/engine/sysDef.cpp:1937 +msgid "10xx: Set ring modulation (0: disable, 1: enable)" +msgstr "" + +#: src/engine/sysDef.cpp:1942 +msgid "ZX Spectrum Beeper (QuadTone Engine)" +msgstr "" + +#: src/engine/sysDef.cpp:1943 +msgid "" +"another ZX Spectrum beeper system with full PWM pulses and 3-level volume " +"per channel. it also has a pitchable overlay sample channel." +msgstr "" + +#: src/engine/sysDef.cpp:1955 +msgid "Konami K053260" +msgstr "" + +#: src/engine/sysDef.cpp:1956 +msgid "this PCM chip was widely used at Konami arcade boards in 1990-1992." +msgstr "" + +#: src/engine/sysDef.cpp:1968 +msgid "MOS Technology TED" +msgstr "" + +#: src/engine/sysDef.cpp:1969 +msgid "" +"two square waves (one may be turned into noise). used in the Commodore " +"Plus/4, 16 and 116." +msgstr "" + +#: src/engine/sysDef.cpp:1978 +msgid "Namco C140" +msgstr "" + +#: src/engine/sysDef.cpp:1979 +msgid "Namco's first PCM chip from 1987. it's pretty good for being so." +msgstr "" + +#: src/engine/sysDef.cpp:1989 +msgid "Namco C219" +msgstr "" + +#: src/engine/sysDef.cpp:1990 +msgid "" +"Namco's PCM chip used in their NA-1/2 hardware.\n" +"very similar to C140, but has noise generator." +msgstr "" + +#: src/engine/sysDef.cpp:1999 +msgid "12xy: Set invert mode (x: surround; y: invert)" +msgstr "" + +#: src/engine/sysDef.cpp:2004 +msgid "ESS ES1xxx series (ESFM)" +msgstr "" + +#: src/engine/sysDef.cpp:2005 +msgid "" +"a unique FM synth featured in PC sound cards.\n" +"based on the OPL3 design, but with lots of its features extended." +msgstr "" + +#: src/engine/sysDef.cpp:2006 +msgid "FM 11" +msgstr "" + +#: src/engine/sysDef.cpp:2012 +msgid "2Exx: Toggle hard envelope reset on new notes" +msgstr "" + +#: src/engine/sysDef.cpp:2018 +msgid "PowerNoise" +msgstr "" + +#: src/engine/sysDef.cpp:2019 +msgid "" +"a fantasy sound chip designed by jvsTSX and The Beesh-Spweesh!\n" +"used in the Hexheld fantasy console." +msgstr "" + +#: src/engine/sysDef.cpp:2020 +msgid "Noise 1" +msgstr "" + +#: src/engine/sysDef.cpp:2020 +msgid "Noise 2" +msgstr "" + +#: src/engine/sysDef.cpp:2020 +msgid "Noise 3" +msgstr "" + +#: src/engine/sysDef.cpp:2020 +msgid "Slope" +msgstr "" + +#: src/engine/sysDef.cpp:2026 +msgid "" +"20xx: Load low byte of noise channel LFSR (00 to FF) or slope channel " +"accumulator (00 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:2027 +msgid "21xx: Load high byte of noise channel LFSR (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:2028 +msgid "22xx: Write to I/O port A" +msgstr "" + +#: src/engine/sysDef.cpp:2029 +msgid "23xx: Write to I/O port B" +msgstr "" + +#: src/engine/sysDef.cpp:2035 src/gui/settings.cpp:4079 +msgid "Dave" +msgstr "" + +#: src/engine/sysDef.cpp:2036 +msgid "" +"this chip was featured in the Enterprise 128 computer. it is similar to " +"POKEY, but with stereo output." +msgstr "" + +#: src/engine/sysDef.cpp:2037 +msgid "DAC Left" +msgstr "" + +#: src/engine/sysDef.cpp:2037 +msgid "DAC Right" +msgstr "" + +#: src/engine/sysDef.cpp:2043 +msgid "10xx: Set waveform (0 to 4; 0 to 3 on noise)" +msgstr "" + +#: src/engine/sysDef.cpp:2044 +msgid "11xx: Set noise frequency source (0: fixed; 1-3: channels 1 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:2045 +msgid "12xx: Toggle high-pass with next channel" +msgstr "" + +#: src/engine/sysDef.cpp:2046 +msgid "13xx: Toggle ring modulation with channel+2" +msgstr "" + +#: src/engine/sysDef.cpp:2047 +msgid "14xx: Toggle swap counters (noise only)" +msgstr "" + +#: src/engine/sysDef.cpp:2048 +msgid "15xx: Toggle low pass (noise only)" +msgstr "" + +#: src/engine/sysDef.cpp:2049 +msgid "16xx: Set clock divider (0: /2; 1: /3)" +msgstr "" + +#: src/engine/sysDef.cpp:2054 +msgid "Game Boy Advance DMA Sound" +msgstr "" + +#: src/engine/sysDef.cpp:2055 +msgid "" +"additional PCM FIFO channels in Game Boy Advance driven directly by its DMA " +"hardware." +msgstr "" + +#: src/engine/sysDef.cpp:2068 +msgid "Game Boy Advance MinMod" +msgstr "" + +#: src/engine/sysDef.cpp:2069 +msgid "" +"additional PCM FIFO channels in Game Boy Advance driven by software mixing " +"to provide up to sixteen sample channels" +msgstr "" + +#: src/engine/sysDef.cpp:2078 +msgid "11xy: Set echo channel (x: left/right source; y: delay (0 disables))" +msgstr "" + +#: src/engine/sysDef.cpp:2079 +msgid "12xy: Toggle invert (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:2084 src/gui/settings.cpp:4080 +msgid "Nintendo DS" +msgstr "" + +#: src/engine/sysDef.cpp:2085 +msgid "a handheld video game console with two screens. it uses a stylus." +msgstr "" + +#: src/engine/sysDef.cpp:2093 +msgid "1Fxx: Set global volume (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:2098 +msgid "5E01" +msgstr "" + +#: src/engine/sysDef.cpp:2099 +msgid "" +"a fantasy sound chip created by Euly. it is based on Ricoh 2A03, adding a " +"couple features such as 32 noise pitches, an extra duty cycle, and three " +"waveforms (besides triangle)." +msgstr "" + +#: src/engine/sysDef.cpp:2107 +msgid "" +"12xx: Set duty cycle/noise mode/waveform (pulse/wave: 0 to 3; noise: 0 or 1)" +msgstr "" + +#: src/engine/sysDef.cpp:2120 src/gui/settings.cpp:4083 +msgid "Bifurcator" +msgstr "" + +#: src/engine/sysDef.cpp:2121 +msgid "a fantasy sound chip using logistic map iterations to generate sound." +msgstr "" + +#: src/engine/sysDef.cpp:2128 +msgid "10xx: Load low byte of channel sample state" +msgstr "" + +#: src/engine/sysDef.cpp:2129 +msgid "11xx: Load high byte of channel sample state" +msgstr "" + +#: src/engine/sysDef.cpp:2130 +msgid "12xx: Set low byte of channel parameter" +msgstr "" + +#: src/engine/sysDef.cpp:2131 +msgid "13xx: Set high byte of channel parameter" +msgstr "" + +#: src/engine/sysDef.cpp:2136 src/gui/settings.cpp:4084 +msgid "SID2" +msgstr "" + +#: src/engine/sysDef.cpp:2137 +msgid "" +"a fantasy sound chip created by LTVA. it is similar to the SID chip, but " +"with many of its problems fixed." +msgstr "" + +#: src/engine/sysDef.cpp:2148 +msgid "Dummy System" +msgstr "" + +#: src/engine/sysDef.cpp:2149 +msgid "this is a system designed for testing purposes." +msgstr "" + +#: src/engine/engine.cpp:51 +msgid "00xy: Arpeggio" +msgstr "00xy: อาร์เปจโจ" + +#: src/engine/engine.cpp:53 +msgid "01xx: Pitch slide up" +msgstr "01xx: เลื่อนระดับเสียงขึ้น" + +#: src/engine/engine.cpp:55 +msgid "02xx: Pitch slide down" +msgstr "02xx: เลื่อนระดับเสียงลง" + +#: src/engine/engine.cpp:57 +msgid "03xx: Portamento" +msgstr "03xx: เสียงเลื่อนไหล" + +#: src/engine/engine.cpp:59 +msgid "04xy: Vibrato (x: speed; y: depth)" +msgstr "04xy: เสียงสั่น (x: ความเร็ว; y: ความลึก)" + +#: src/engine/engine.cpp:61 +msgid "05xy: Volume slide + vibrato (compatibility only!)" +msgstr "05xy: เลื่อนความดัง + เสียงสั่น (สำหรับการรองรับเท่านั้น!)" + +#: src/engine/engine.cpp:63 +msgid "06xy: Volume slide + portamento (compatibility only!)" +msgstr "06xy: เลื่อนความดัง + เสียงเลื่อนไหล (สำหรับการรองรับเท่านั้น!)" + +#: src/engine/engine.cpp:65 +msgid "07xy: Tremolo (x: speed; y: depth)" +msgstr "07xy: เสียงรัว (x: ความเร็ว; y: ความลึก)" + +#: src/engine/engine.cpp:67 +msgid "08xy: Set panning (x: left; y: right)" +msgstr "08xy: ตั้งแพน (x: ซ้าย; y: ขวา)" + +#: src/engine/engine.cpp:69 +msgid "09xx: Set groove pattern (speed 1 if no grooves exist)" +msgstr "09xx: ตั้งแบบกรูฟ (ความเร็ว 1 ถ้าไม่มีกรูฟอยู่)" + +#: src/engine/engine.cpp:71 +msgid "0Axy: Volume slide (0y: down; x0: up)" +msgstr "0Axy: เลื่อนความดัง (0y: ลง; x0: ขึ้น)" + +#: src/engine/engine.cpp:73 +msgid "0Bxx: Jump to pattern" +msgstr "0Bxx: กระโดดไปที่ช่อง" + +#: src/engine/engine.cpp:75 +msgid "0Cxx: Retrigger" +msgstr "0Cxx: กระตุ้นซ้ำ" + +#: src/engine/engine.cpp:77 +msgid "0Dxx: Jump to next pattern" +msgstr "0Dxx: กระโดดไปยังแถวของช่องถัดไป" + +#: src/engine/engine.cpp:79 +msgid "0Fxx: Set speed (speed 2 if no grooves exist)" +msgstr "0Fxx: ตั้งความเร็ว (ความเร็ว 2 ถ้าไม่มีกรูฟอยู่)" + +#: src/engine/engine.cpp:81 +msgid "80xx: Set panning (00: left; 80: center; FF: right)" +msgstr "80xx: ตั้งแพน (00: ซ้าย; 80: กลาง; FF: ขวา)" + +#: src/engine/engine.cpp:83 +msgid "81xx: Set panning (left channel)" +msgstr "81xx: ตั้งแพน (ช่องซ้าย)" + +#: src/engine/engine.cpp:85 +msgid "82xx: Set panning (right channel)" +msgstr "82xx: ตั้งแพน (ช่องขวา)" + +#: src/engine/engine.cpp:87 +msgid "88xy: Set panning (rear channels; x: left; y: right)" +msgstr "88xy: ตั้งแพน (ช่องหลัง; x: ซ้าย; y: ขวา)" + +#: src/engine/engine.cpp:90 +msgid "89xx: Set panning (rear left channel)" +msgstr "89xx: ตั้งแพน (ช่องหลังซ้าย)" + +#: src/engine/engine.cpp:93 +msgid "8Axx: Set panning (rear right channel)" +msgstr "8Axx: ตั้งแพน (ช่องหลังขวา)" + +#: src/engine/engine.cpp:96 +msgid "Cxxx: Set tick rate (hz)" +msgstr "Cxxx: ตั้งอัตราติ๊ก (hz)" + +#: src/engine/engine.cpp:98 +msgid "E0xx: Set arp speed" +msgstr "E0xx: ตั้งความเร็วอาร์เปจโจ" + +#: src/engine/engine.cpp:100 +msgid "E1xy: Note slide up (x: speed; y: semitones)" +msgstr "E1xy: เลื่อนระดับเสียงขึ้น (x: ความเร็ว; y: ครึ่งเสียง)" + +#: src/engine/engine.cpp:102 +msgid "E2xy: Note slide down (x: speed; y: semitones)" +msgstr "E2xy: เลื่อนระดับเสียงลง (x: ความเร็ว; y: ครึ่งเสียง)" + +#: src/engine/engine.cpp:104 +msgid "E3xx: Set vibrato shape (0: up/down; 1: up only; 2: down only)" +msgstr "E3xx: ตั้งรูปแบบเสียงสั่น (0: ขึ้นลง; 1: ขึ้นเท่านั้น; 2: ลงเท่านั้น)" + +#: src/engine/engine.cpp:106 +msgid "E4xx: Set vibrato range" +msgstr "E4xx: ตั้งระยะเสียงสั่น" + +#: src/engine/engine.cpp:108 +msgid "E5xx: Set pitch (80: center)" +msgstr "E5xx: ตั้งระดับเสียงย่อย (80: ตรงกลาง)" + +#: src/engine/engine.cpp:110 +msgid "E6xy: Quick legato (x: time (0-7 up; 8-F down); y: semitones)" +msgstr "E6xy: เลื่อนเสียงเป็นขั้นโดยเร็ว (x: ครั้ง (0-7 ขึ้น; 8-F ลง); y: ครึ่งเสียง)" + +#: src/engine/engine.cpp:112 +msgid "E7xx: Macro release" +msgstr "E7xx: ปล่อยมาโคร" + +#: src/engine/engine.cpp:114 +msgid "E8xy: Quick legato up (x: time; y: semitones)" +msgstr "E8xy: เลื่อนเสียงเป็นขั้นขึ้นโดยเร็ว (x: ครั้ง; y: ครึ่งเสียง)" + +#: src/engine/engine.cpp:116 +msgid "E9xy: Quick legato down (x: time; y: semitones)" +msgstr "E9xy: เลื่อนเสียงเป็นขั้นลงโดยเร็ว (x: ครั้ง; y: ครึ่งเสียง)" + +#: src/engine/engine.cpp:118 +msgid "EAxx: Legato" +msgstr "EAxx: เลื่อนเสียงเป็นขั้น" + +#: src/engine/engine.cpp:120 +msgid "EBxx: Set LEGACY sample mode bank" +msgstr "EBxx: ตั้งแบงก์ของโหมดแซมเปิลเก่า" + +#: src/engine/engine.cpp:122 +msgid "ECxx: Note cut" +msgstr "ECxx: ตัดเสียง" + +#: src/engine/engine.cpp:124 +msgid "EDxx: Note delay" +msgstr "EDxx: ถ่วงเวลาเสียง" + +#: src/engine/engine.cpp:126 +msgid "EExx: Send external command" +msgstr "EExx: ส่งคำสั่งภายนอก" + +#: src/engine/engine.cpp:128 +msgid "F0xx: Set tick rate (bpm)" +msgstr "F0xx: ตั้งอัตราติ๊ก (bpm)" + +#: src/engine/engine.cpp:130 +msgid "F1xx: Single tick note slide up" +msgstr "F1xx: เลื่อนระดับเสียงขึ้นในติ๊กเดียว" + +#: src/engine/engine.cpp:132 +msgid "F2xx: Single tick note slide down" +msgstr "F2xx: เลื่อนระดับเสียงลงในติ๊กเดียว" + +#: src/engine/engine.cpp:134 +msgid "F3xx: Fine volume slide up" +msgstr "F3xx: เลื่อนความดังขึ้นโดยละเอียด" + +#: src/engine/engine.cpp:136 +msgid "F4xx: Fine volume slide down" +msgstr "F4xx: เลื่อนความดังลงโดยละเอียด" + +#: src/engine/engine.cpp:138 +msgid "F5xx: Disable macro (see manual)" +msgstr "F5xx: ปิดทางมาโคร (โปรดดูคู่มือ)" + +#: src/engine/engine.cpp:140 +msgid "F6xx: Enable macro (see manual)" +msgstr "F6xx: เปิดทางมาโคร (โปรดดูคู่มือ)" + +#: src/engine/engine.cpp:142 +msgid "F7xx: Restart macro (see manual)" +msgstr "F7xx: เริ่มมาโครใหม่ (โปรดดูคู่มือ)" + +#: src/engine/engine.cpp:144 +msgid "F8xx: Single tick volume slide up" +msgstr "F8xx: เลื่อนความดังขึ้นในติ๊กเดียว" + +#: src/engine/engine.cpp:146 +msgid "F9xx: Single tick volume slide down" +msgstr "F9xx: เลื่อนความดังลงในติ๊กเดียว" + +#: src/engine/engine.cpp:148 +msgid "FAxx: Fast volume slide (0y: down; x0: up)" +msgstr "FAxx: เลื่อนความดังโดยเร็ว (0y: ลง; x0: ขึ้น)" + +#: src/engine/engine.cpp:150 +msgid "FCxx: Note release" +msgstr "FCxx: ปล่อยเสียง" + +#: src/engine/engine.cpp:152 +msgid "FDxx: Set virtual tempo numerator" +msgstr "FDxx: ตั้งตัวต้นของความเร็วเสมือน" + +#: src/engine/engine.cpp:154 +msgid "FExx: Set virtual tempo denominator" +msgstr "FExx: ตั้งตัวหารของความเร็วเสมือน" + +#: src/engine/engine.cpp:156 +msgid "FFxx: Stop song" +msgstr "FFxx: หยุดเพลง" + +#: src/engine/engine.cpp:160 +msgid "9xxx: Set sample offset*256" +msgstr "9xxx: ตั้งออฟเซตแซมเปิล×256" + +#: src/engine/engine.cpp:164 +msgid "90xx: Set sample offset (first byte)" +msgstr "90xx: ตั้งออฟเซตแซมเปิล (ไบต์แรก)" + +#: src/engine/engine.cpp:166 +msgid "91xx: Set sample offset (second byte, ×256)" +msgstr "91xx: ตั้งออฟเซตแซมเปิล (ไบต์ที่สอง, ×256)" + +#: src/engine/engine.cpp:168 +msgid "92xx: Set sample offset (third byte, ×65536)" +msgstr "92xx: ตั้งออฟเซตแซมเปิล (ไบต์ที่สาม, ×65536)" + +#: src/engine/engine.cpp:187 src/gui/settings.cpp:4127 +msgid "Invalid effect" +msgstr "เอฟเฟกต์ไม่ถูกต้อง" + +#: src/engine/engine.cpp:354 src/gui/gui.cpp:2259 src/gui/gui.cpp:2422 +#, c-format +msgid "on seek: %s" +msgstr "" + +#: src/engine/engine.cpp:361 src/gui/gui.cpp:2266 src/gui/gui.cpp:2429 +#, c-format +msgid "on pre tell: %s" +msgstr "" + +#: src/engine/engine.cpp:368 src/engine/engine.cpp:2768 +#: src/gui/settings.cpp:5811 src/gui/gui.cpp:2273 src/gui/gui.cpp:2436 +msgid "file is empty" +msgstr "" + +#: src/engine/engine.cpp:371 src/gui/gui.cpp:2276 src/gui/gui.cpp:2439 +#, c-format +msgid "on tell: %s" +msgstr "" + +#: src/engine/engine.cpp:378 +#, c-format +msgid "ROM size mismatch, expected: %d bytes, was: %d" +msgstr "" + +#: src/engine/engine.cpp:383 src/gui/settings.cpp:5820 src/gui/gui.cpp:2283 +#: src/gui/gui.cpp:2446 +#, c-format +msgid "on get size: %s" +msgstr "" + +#: src/engine/engine.cpp:390 src/gui/settings.cpp:5827 src/gui/gui.cpp:2290 +#: src/gui/gui.cpp:2453 +#, c-format +msgid "on read: %s" +msgstr "" + +#: src/engine/engine.cpp:1076 src/engine/engine.cpp:1181 +#: src/engine/engine.cpp:1290 +msgid "invalid index" +msgstr "" + +#: src/engine/engine.cpp:1080 src/engine/engine.cpp:1135 +#: src/engine/engine.cpp:1189 +#, c-format +msgid "max number of total channels is %d" +msgstr "" + +#: src/engine/engine.cpp:1131 src/engine/engine.cpp:1185 +#, c-format +msgid "max number of systems is %d" +msgstr "" + +#: src/engine/engine.cpp:1286 +msgid "cannot remove the last one" +msgstr "" + +#: src/engine/engine.cpp:1460 +msgid "source and destination are equal" +msgstr "" + +#: src/engine/engine.cpp:1464 +msgid "invalid source index" +msgstr "" + +#: src/engine/engine.cpp:1468 +msgid "invalid destination index" +msgstr "" + +#: src/engine/engine.cpp:2636 +#, c-format +msgid "Instrument %d" +msgstr "" + +#: src/engine/engine.cpp:2710 src/engine/engine.cpp:2727 +#: src/gui/doAction.cpp:825 src/gui/doAction.cpp:843 src/gui/doAction.cpp:1634 +#: src/gui/gui.cpp:6159 src/gui/insEdit.cpp:6860 +msgid "too many wavetables!" +msgstr "" + +#: src/engine/engine.cpp:2752 +#, c-format +msgid "could not seek to end: %s" +msgstr "" + +#: src/engine/engine.cpp:2758 +#, c-format +msgid "could not determine file size: %s" +msgstr "" + +#: src/engine/engine.cpp:2763 +msgid "file size is invalid!" +msgstr "" + +#: src/engine/engine.cpp:2773 +#, c-format +msgid "could not seek to beginning: %s" +msgstr "" + +#: src/engine/engine.cpp:2780 +#, c-format +msgid "could not read entire file: %s" +msgstr "" + +#: src/engine/engine.cpp:2806 +msgid "invalid wavetable header/data!" +msgstr "" + +#: src/engine/engine.cpp:2877 +msgid "premature end of file" +msgstr "" + +#: src/engine/engine.cpp:2904 src/engine/engine.cpp:2926 +#: src/gui/doAction.cpp:909 src/gui/doAction.cpp:921 +msgid "too many samples!" +msgstr "" + +#: src/engine/engine.cpp:2911 +#, c-format +msgid "Sample %d" +msgstr "" + +#: src/engine/engine.cpp:3056 +#, c-format +msgid "no free patterns in channel %d!" +msgstr "" + +#: src/gui/mixer.cpp:28 src/gui/insEdit.cpp:484 +msgid "left" +msgstr "" + +#: src/gui/mixer.cpp:29 src/gui/insEdit.cpp:483 +msgid "right" +msgstr "" + +#: src/gui/mixer.cpp:128 +msgid "input" +msgstr "" + +#: src/gui/mixer.cpp:168 +msgid "output" +msgstr "" + +#: src/gui/mixer.cpp:226 src/gui/mixer.cpp:228 src/gui/editControls.cpp:454 +#: src/gui/guiConst.cpp:593 +msgid "Mixer" +msgstr "" + +#: src/gui/mixer.cpp:229 +msgid "Master Volume" +msgstr "" + +#: src/gui/mixer.cpp:250 src/gui/exportOptions.cpp:90 +#: src/gui/userPresets.cpp:393 src/gui/userPresets.cpp:405 +#: src/gui/settings.cpp:1080 src/gui/settings.cpp:1094 +#: src/gui/waveEdit.cpp:1096 src/gui/sampleEdit.cpp:1128 +#: src/gui/insEdit.cpp:519 +msgid "Invert" +msgstr "" + +#: src/gui/mixer.cpp:268 src/gui/chanOsc.cpp:37 src/gui/userPresets.cpp:417 +#: src/gui/settings.cpp:263 src/gui/settings.cpp:1109 src/gui/settings.cpp:1492 +#: src/gui/settings.cpp:1504 src/gui/settings.cpp:3369 +#: src/gui/settings.cpp:4015 src/gui/findReplace.cpp:687 +#: src/gui/findReplace.cpp:943 src/gui/guiConst.cpp:228 +#: src/gui/sampleEdit.cpp:1003 src/gui/insEdit.cpp:5575 +#: src/gui/insEdit.cpp:5660 src/gui/insEdit.cpp:6920 src/gui/insEdit.cpp:6928 +#: src/gui/insEdit.cpp:6936 src/gui/insEdit.cpp:6946 src/gui/insEdit.cpp:6961 +#: src/gui/insEdit.cpp:6975 src/gui/insEdit.cpp:6987 src/gui/insEdit.cpp:7000 +#: src/gui/insEdit.cpp:7016 src/gui/insEdit.cpp:7022 src/gui/insEdit.cpp:7032 +#: src/gui/insEdit.cpp:7039 src/gui/insEdit.cpp:7045 src/gui/insEdit.cpp:7058 +#: src/gui/insEdit.cpp:7065 src/gui/insEdit.cpp:7072 src/gui/insEdit.cpp:7081 +#: src/gui/insEdit.cpp:7091 src/gui/insEdit.cpp:7099 src/gui/insEdit.cpp:7105 +#: src/gui/insEdit.cpp:7113 src/gui/insEdit.cpp:7120 src/gui/insEdit.cpp:7126 +#: src/gui/insEdit.cpp:7136 src/gui/insEdit.cpp:7148 src/gui/insEdit.cpp:7156 +#: src/gui/insEdit.cpp:7172 src/gui/insEdit.cpp:7177 src/gui/insEdit.cpp:7190 +#: src/gui/insEdit.cpp:7197 src/gui/insEdit.cpp:7208 src/gui/insEdit.cpp:7221 +#: src/gui/insEdit.cpp:7230 src/gui/insEdit.cpp:7237 src/gui/insEdit.cpp:7245 +#: src/gui/insEdit.cpp:7258 src/gui/insEdit.cpp:7263 src/gui/insEdit.cpp:7269 +#: src/gui/insEdit.cpp:7276 src/gui/insEdit.cpp:7284 src/gui/insEdit.cpp:7295 +#: src/gui/insEdit.cpp:7302 src/gui/insEdit.cpp:7310 src/gui/insEdit.cpp:7318 +#: src/gui/insEdit.cpp:7327 src/gui/insEdit.cpp:7335 src/gui/insEdit.cpp:7341 +#: src/gui/insEdit.cpp:7347 src/gui/insEdit.cpp:7353 src/gui/insEdit.cpp:7358 +#: src/gui/insEdit.cpp:7365 src/gui/insEdit.cpp:7372 src/gui/insEdit.cpp:7380 +#: src/gui/insEdit.cpp:7389 src/gui/insEdit.cpp:7397 src/gui/insEdit.cpp:7409 +#: src/gui/insEdit.cpp:7422 src/gui/insEdit.cpp:7433 src/gui/insEdit.cpp:7443 +#: src/gui/insEdit.cpp:7451 src/gui/insEdit.cpp:7461 src/gui/insEdit.cpp:7470 +msgid "Volume" +msgstr "" + +#: src/gui/mixer.cpp:279 src/gui/userPresets.cpp:427 src/gui/settings.cpp:1120 +#: src/gui/guiConst.cpp:229 src/gui/insEdit.cpp:6923 src/gui/insEdit.cpp:6930 +#: src/gui/insEdit.cpp:6941 src/gui/insEdit.cpp:6965 src/gui/insEdit.cpp:7067 +#: src/gui/insEdit.cpp:7108 src/gui/insEdit.cpp:7152 src/gui/insEdit.cpp:7192 +#: src/gui/insEdit.cpp:7212 src/gui/insEdit.cpp:7232 src/gui/insEdit.cpp:7240 +#: src/gui/insEdit.cpp:7253 src/gui/insEdit.cpp:7265 src/gui/insEdit.cpp:7271 +#: src/gui/insEdit.cpp:7287 src/gui/insEdit.cpp:7297 src/gui/insEdit.cpp:7360 +#: src/gui/insEdit.cpp:7392 src/gui/insEdit.cpp:7438 src/gui/insEdit.cpp:7446 +msgid "Panning" +msgstr "" + +#: src/gui/mixer.cpp:290 src/gui/userPresets.cpp:433 src/gui/settings.cpp:1127 +msgid "Front/Rear" +msgstr "" + +#: src/gui/mixer.cpp:299 src/gui/settings.cpp:4208 +msgid "Patchbay" +msgstr "" + +#: src/gui/mixer.cpp:305 +msgid "Automatic patchbay" +msgstr "" + +#: src/gui/mixer.cpp:310 +msgid "Display hidden ports" +msgstr "" + +#: src/gui/mixer.cpp:312 +msgid "Display internal" +msgstr "" + +#: src/gui/mixer.cpp:322 src/gui/mixer.cpp:383 src/gui/settings.cpp:1901 +#: src/gui/settings.cpp:2089 src/gui/songInfo.cpp:69 +msgid "System" +msgstr "ระบบ" + +#: src/gui/mixer.cpp:354 +msgid "Sample Preview" +msgstr "" + +#: src/gui/mixer.cpp:367 src/gui/editControls.cpp:745 +#: src/gui/editControls.cpp:837 src/gui/editControls.cpp:953 +#: src/gui/editControls.cpp:1093 src/gui/settings.cpp:1490 +#: src/gui/guiConst.cpp:558 +msgid "Metronome" +msgstr "" + +#: src/gui/mixer.cpp:446 +msgid "disconnect all" +msgstr "" + +#: src/gui/editing.cpp:200 +#, c-format +msgid "no data in oldPatMap for channel %d!" +msgstr "" + +#: src/gui/editing.cpp:664 src/gui/editing.cpp:1203 +#, c-format +msgid "invalid clipboard data! failed at line %d char %d" +msgstr "" + +#: src/gui/editing.cpp:1565 src/gui/editing.cpp:1669 +msgid "can't collapse any further!" +msgstr "" + +#: src/gui/editing.cpp:1749 +msgid "can't expand any further!" +msgstr "" + +#: src/gui/editing.cpp:1836 src/gui/editing.cpp:1851 +#, c-format +msgid "copy: %s" +msgstr "" + +#: src/gui/memory.cpp:35 src/gui/settings.cpp:3696 src/gui/settings.cpp:4217 +#: src/gui/guiConst.cpp:613 +msgid "Memory Composition" +msgstr "" + +#: src/gui/memory.cpp:146 +#, c-format +msgid "bank %d" +msgstr "" + +#: src/gui/memory.cpp:175 src/gui/memory.cpp:176 +msgid "no chips with memory" +msgstr "" + +#: src/gui/intro.cpp:89 src/gui/gui.cpp:2345 src/gui/gui.cpp:3746 +#: src/gui/gui.cpp:5019 src/gui/gui.cpp:5041 src/gui/gui.cpp:5479 +#: src/gui/gui.cpp:5781 src/gui/gui.cpp:5791 +#, c-format +msgid "Error while loading file! (%s)" +msgstr "" + +#: src/gui/intro.cpp:122 +msgid "IntroMon X" +msgstr "" + +#: src/gui/intro.cpp:122 +msgid "Intro" +msgstr "" + +#: src/gui/intro.cpp:124 +msgid "Preview" +msgstr "" + +#: src/gui/intro.cpp:176 src/gui/intro.cpp:177 src/gui/intro.cpp:178 +msgid "SORRY NOTHING" +msgstr "" + +#: src/gui/intro.cpp:310 +msgid "hold to skip" +msgstr "" + +#: src/gui/dataList.cpp:76 +msgid "Bug!" +msgstr "" + +#: src/gui/dataList.cpp:79 src/gui/util.cpp:107 src/gui/util.cpp:109 +#: src/gui/settings.cpp:4220 src/gui/insEdit.cpp:5334 +msgid "Unknown" +msgstr "" + +#: src/gui/dataList.cpp:136 src/gui/dataList.cpp:260 +msgid "duplicate" +msgstr "" + +#: src/gui/dataList.cpp:139 src/gui/dataList.cpp:263 src/gui/dataList.cpp:388 +#: src/gui/dataList.cpp:731 src/gui/dataList.cpp:867 +msgid "replace..." +msgstr "" + +#: src/gui/dataList.cpp:142 src/gui/dataList.cpp:266 src/gui/gui.cpp:4232 +msgid "save" +msgstr "" + +#: src/gui/dataList.cpp:145 +msgid "save (.dmp)" +msgstr "" + +#: src/gui/dataList.cpp:148 src/gui/dataList.cpp:269 src/gui/dataList.cpp:617 +#: src/gui/dataList.cpp:994 src/gui/dataList.cpp:1040 +#: src/gui/editControls.cpp:50 src/gui/gui.cpp:2767 src/gui/gui.cpp:2776 +msgid "delete" +msgstr "" + +#: src/gui/dataList.cpp:243 +msgid "out of memory for this sample!" +msgstr "" + +#: src/gui/dataList.cpp:254 +msgid "make instrument" +msgstr "" + +#: src/gui/dataList.cpp:257 +msgid "make me a drum kit" +msgstr "" + +#: src/gui/dataList.cpp:290 src/gui/dataList.cpp:593 src/gui/gui.cpp:5914 +msgid "Instruments" +msgstr "" + +#: src/gui/dataList.cpp:312 src/gui/dataList.cpp:714 src/gui/dataList.cpp:846 +#: src/gui/subSongs.cpp:88 src/gui/insEdit.cpp:520 +msgid "Add" +msgstr "" + +#: src/gui/dataList.cpp:338 src/gui/dataList.cpp:721 src/gui/dataList.cpp:853 +#: src/gui/subSongs.cpp:108 +msgid "Duplicate" +msgstr "" + +#: src/gui/dataList.cpp:359 src/gui/dataList.cpp:728 src/gui/dataList.cpp:860 +#: src/gui/editControls.cpp:497 src/gui/waveEdit.cpp:435 +#: src/gui/waveEdit.cpp:467 src/gui/sampleEdit.cpp:122 +#: src/gui/sampleEdit.cpp:171 src/gui/insEdit.cpp:5239 src/gui/insEdit.cpp:5304 +msgid "Open" +msgstr "เปิด" + +#: src/gui/dataList.cpp:363 +msgid "replace instrument..." +msgstr "" + +#: src/gui/dataList.cpp:366 +msgid "load instrument from TX81Z" +msgstr "" + +#: src/gui/dataList.cpp:372 +msgid "replace wavetable..." +msgstr "" + +#: src/gui/dataList.cpp:378 +msgid "replace sample..." +msgstr "" + +#: src/gui/dataList.cpp:381 +msgid "import raw sample..." +msgstr "" + +#: src/gui/dataList.cpp:384 +msgid "import raw sample (replace)..." +msgstr "" + +#: src/gui/dataList.cpp:392 +msgid "load from TX81Z" +msgstr "" + +#: src/gui/dataList.cpp:399 +msgid "Open (insert; right-click to replace)" +msgstr "" + +#: src/gui/dataList.cpp:420 src/gui/dataList.cpp:741 src/gui/dataList.cpp:884 +#: src/gui/editControls.cpp:502 src/gui/waveEdit.cpp:474 +#: src/gui/sampleEdit.cpp:184 src/gui/insEdit.cpp:5311 +msgid "Save" +msgstr "" + +#: src/gui/dataList.cpp:424 +msgid "save instrument as .dmp..." +msgstr "" + +#: src/gui/dataList.cpp:430 +msgid "save wavetable as .dmw..." +msgstr "" + +#: src/gui/dataList.cpp:433 +msgid "save raw wavetable..." +msgstr "" + +#: src/gui/dataList.cpp:439 +msgid "save raw sample..." +msgstr "" + +#: src/gui/dataList.cpp:443 src/gui/insEdit.cpp:5314 +msgid "save as .dmp..." +msgstr "" + +#: src/gui/dataList.cpp:456 src/gui/dataList.cpp:761 src/gui/dataList.cpp:903 +msgid "Toggle folders/standard view" +msgstr "" + +#: src/gui/dataList.cpp:478 src/gui/dataList.cpp:769 src/gui/dataList.cpp:911 +#: src/gui/subSongs.cpp:55 +msgid "Move up" +msgstr "" + +#: src/gui/dataList.cpp:499 src/gui/dataList.cpp:776 src/gui/dataList.cpp:918 +#: src/gui/subSongs.cpp:62 +msgid "Move down" +msgstr "" + +#: src/gui/dataList.cpp:510 src/gui/dataList.cpp:787 src/gui/dataList.cpp:929 +msgid "Create" +msgstr "" + +#: src/gui/dataList.cpp:540 src/gui/dataList.cpp:797 src/gui/dataList.cpp:939 +msgid "New folder" +msgstr "" + +#: src/gui/dataList.cpp:549 src/gui/dataList.cpp:947 +msgid "Preview (right click to stop)" +msgstr "" + +#: src/gui/dataList.cpp:576 src/gui/dataList.cpp:807 src/gui/dataList.cpp:959 +#: src/gui/guiConst.cpp:666 src/gui/sampleEdit.cpp:1105 +msgid "Delete" +msgstr "" + +#: src/gui/dataList.cpp:608 src/gui/dataList.cpp:985 src/gui/dataList.cpp:1031 +msgid "" +msgstr "" + +#: src/gui/dataList.cpp:614 src/gui/dataList.cpp:991 src/gui/dataList.cpp:1037 +msgid "rename..." +msgstr "" + +#: src/gui/dataList.cpp:663 src/gui/dataList.cpp:707 src/gui/gui.cpp:5923 +msgid "Wavetables" +msgstr "" + +#: src/gui/dataList.cpp:674 src/gui/dataList.cpp:839 src/gui/xyOsc.cpp:68 +#: src/gui/sampleEdit.cpp:898 src/gui/sampleEdit.cpp:1072 src/gui/gui.cpp:5932 +msgid "Samples" +msgstr "" + +#: src/gui/dataList.cpp:745 src/gui/waveEdit.cpp:477 +msgid "save as .dmw..." +msgstr "" + +#: src/gui/dataList.cpp:748 src/gui/dataList.cpp:891 src/gui/waveEdit.cpp:480 +#: src/gui/sampleEdit.cpp:187 +msgid "save raw..." +msgstr "" + +#: src/gui/dataList.cpp:871 src/gui/sampleEdit.cpp:174 +msgid "import raw..." +msgstr "" + +#: src/gui/dataList.cpp:874 +msgid "import raw (replace)..." +msgstr "" + +#: src/gui/exportOptions.cpp:29 +msgid "Export type:" +msgstr "" + +#: src/gui/exportOptions.cpp:32 +msgid "one file" +msgstr "" + +#: src/gui/exportOptions.cpp:35 +msgid "multiple files (one per chip)" +msgstr "" + +#: src/gui/exportOptions.cpp:38 +msgid "multiple files (one per channel)" +msgstr "" + +#: src/gui/exportOptions.cpp:44 +msgid "Bit depth:" +msgstr "" + +#: src/gui/exportOptions.cpp:46 +msgid "16-bit integer" +msgstr "" + +#: src/gui/exportOptions.cpp:49 +msgid "32-bit float" +msgstr "" + +#: src/gui/exportOptions.cpp:55 src/gui/settings.cpp:1352 src/gui/gui.cpp:6270 +msgid "Sample rate" +msgstr "" + +#: src/gui/exportOptions.cpp:61 +msgid "Channels in file" +msgstr "" + +#: src/gui/exportOptions.cpp:67 src/gui/settings.cpp:930 +msgid "Loops" +msgstr "" + +#: src/gui/exportOptions.cpp:70 src/gui/settings.cpp:935 +msgid "Fade out (seconds)" +msgstr "" + +#: src/gui/exportOptions.cpp:76 +msgid "Channels to export:" +msgstr "" + +#: src/gui/exportOptions.cpp:78 src/gui/effectList.cpp:32 src/gui/gui.cpp:6186 +msgid "All" +msgstr "" + +#: src/gui/exportOptions.cpp:84 src/gui/sysConf.cpp:1870 +#: src/gui/effectList.cpp:34 src/gui/compatFlags.cpp:219 +#: src/gui/waveEdit.cpp:37 src/gui/gui.cpp:6192 src/gui/insEdit.cpp:518 +msgid "None" +msgstr "ไม่มี" + +#: src/gui/exportOptions.cpp:110 src/gui/exportOptions.cpp:214 +#: src/gui/exportOptions.cpp:225 src/gui/exportOptions.cpp:243 +#: src/gui/exportOptions.cpp:266 src/gui/exportOptions.cpp:297 +#: src/gui/exportOptions.cpp:318 src/gui/exportOptions.cpp:341 +#: src/gui/commandPalette.cpp:199 src/gui/settings.cpp:6673 +#: src/gui/newSong.cpp:273 src/gui/gui.cpp:5669 src/gui/gui.cpp:5693 +#: src/gui/gui.cpp:5717 src/gui/gui.cpp:5741 src/gui/gui.cpp:5765 +#: src/gui/gui.cpp:5796 src/gui/gui.cpp:5855 src/gui/gui.cpp:6229 +#: src/gui/gui.cpp:6353 +msgid "Cancel" +msgstr "" + +#: src/gui/exportOptions.cpp:115 src/gui/exportOptions.cpp:217 +#: src/gui/exportOptions.cpp:246 src/gui/exportOptions.cpp:300 +#: src/gui/exportOptions.cpp:321 src/gui/exportOptions.cpp:344 +#: src/gui/editControls.cpp:512 src/gui/userPresets.cpp:523 +#: src/gui/settings.cpp:1242 src/gui/settings.cpp:2165 +#: src/gui/settings.cpp:2557 src/gui/settings.cpp:3800 src/gui/guiConst.cpp:536 +#: src/gui/gui.cpp:5578 src/gui/gui.cpp:5630 +msgid "Export" +msgstr "ส่งออก" + +#: src/gui/exportOptions.cpp:130 +msgid "select at least one channel" +msgstr "" + +#: src/gui/exportOptions.cpp:137 +msgid "settings:" +msgstr "" + +#: src/gui/exportOptions.cpp:138 +msgid "format version" +msgstr "" + +#: src/gui/exportOptions.cpp:146 src/gui/exportOptions.cpp:238 +#: src/gui/insEdit.cpp:362 +msgid "loop" +msgstr "" + +#: src/gui/exportOptions.cpp:148 +msgid "loop trail:" +msgstr "" + +#: src/gui/exportOptions.cpp:150 +msgid "auto-detect" +msgstr "" + +#: src/gui/exportOptions.cpp:153 +msgid "add one loop" +msgstr "" + +#: src/gui/exportOptions.cpp:156 +msgid "custom" +msgstr "" + +#: src/gui/exportOptions.cpp:167 +msgid "add pattern change hints" +msgstr "" + +#: src/gui/exportOptions.cpp:170 +msgid "" +"inserts data blocks on pattern changes.\n" +"useful if you are writing a playback routine.\n" +"\n" +"the format of a pattern change data block is:\n" +"67 66 FE ll ll ll ll 01 oo rr pp pp pp ...\n" +"- ll: length, a 32-bit little-endian number\n" +"- oo: order\n" +"- rr: initial row (a 0Dxx effect is able to select a different row)\n" +"- pp: pattern index (one per channel)\n" +"\n" +"pattern indexes are ordered as they appear in the song." +msgstr "" + +#: src/gui/exportOptions.cpp:183 +msgid "direct stream mode" +msgstr "" + +#: src/gui/exportOptions.cpp:186 +msgid "" +"required for DualPCM and MSM6258 export.\n" +"\n" +"allows for volume/direction changes when playing samples,\n" +"at the cost of a massive increase in file size." +msgstr "" + +#: src/gui/exportOptions.cpp:191 +msgid "chips to export:" +msgstr "" + +#: src/gui/exportOptions.cpp:200 +#, c-format +msgid "this chip is only available in VGM %d.%.2x and higher!" +msgstr "" + +#: src/gui/exportOptions.cpp:204 +msgid "this chip is not supported by the VGM format!" +msgstr "" + +#: src/gui/exportOptions.cpp:210 +#, c-format +msgid "select the chip you wish to export, but only up to %d of each type." +msgstr "" + +#: src/gui/exportOptions.cpp:222 +msgid "nothing to export" +msgstr "" + +#: src/gui/exportOptions.cpp:233 +msgid "Commander X16 Zsound Music File" +msgstr "" + +#: src/gui/exportOptions.cpp:234 +msgid "Tick Rate (Hz)" +msgstr "" + +#: src/gui/exportOptions.cpp:240 +msgid "optimize size" +msgstr "" + +#: src/gui/exportOptions.cpp:256 src/gui/editControls.cpp:630 +msgid "" +"this is NOT ROM export! only use for making sure the\n" +"Furnace Amiga emulator is working properly by\n" +"comparing it with real Amiga output." +msgstr "" + +#: src/gui/exportOptions.cpp:261 src/gui/editControls.cpp:635 +#: src/gui/settings.cpp:3925 +msgid "Directory" +msgstr "" + +#: src/gui/exportOptions.cpp:269 src/gui/editControls.cpp:638 +msgid "Bake Data" +msgstr "" + +#: src/gui/exportOptions.cpp:284 src/gui/editControls.cpp:653 +#, c-format +msgid "Done! Baked %d files." +msgstr "" + +#: src/gui/exportOptions.cpp:293 +msgid "this option exports the song to a text file.\n" +msgstr "" + +#: src/gui/exportOptions.cpp:310 +msgid "" +"this option exports a text or binary file which\n" +"contains a dump of the internal command stream\n" +"produced when playing the song.\n" +"\n" +"technical/development use only!" +msgstr "" + +#: src/gui/exportOptions.cpp:331 +msgid "" +"export in DefleMask module format.\n" +"only do it if you really, really need to, or are downgrading an existing ." +"dmf." +msgstr "" + +#: src/gui/exportOptions.cpp:335 +msgid "format version:" +msgstr "" + +#: src/gui/exportOptions.cpp:336 +msgid "1.1.3 and higher" +msgstr "" + +#: src/gui/exportOptions.cpp:337 +msgid "1.0/legacy (0.12)" +msgstr "" + +#: src/gui/exportOptions.cpp:357 src/gui/settings.cpp:1253 +#: src/gui/settings.cpp:3929 +msgid "Audio" +msgstr "" + +#: src/gui/exportOptions.cpp:361 src/gui/settings.cpp:3931 +msgid "VGM" +msgstr "" + +#: src/gui/exportOptions.cpp:370 src/gui/settings.cpp:3932 +msgid "ZSM" +msgstr "" + +#: src/gui/exportOptions.cpp:380 +msgid "Amiga Validation" +msgstr "" + +#: src/gui/exportOptions.cpp:385 src/gui/settings.cpp:2959 +#: src/gui/settings.cpp:3891 +msgid "Text" +msgstr "" + +#: src/gui/exportOptions.cpp:389 +msgid "Command Stream" +msgstr "" + +#: src/gui/exportOptions.cpp:393 +msgid "DMF" +msgstr "" + +#: src/gui/exportOptions.cpp:422 +msgid "congratulations! you've unlocked a secret panel." +msgstr "" + +#: src/gui/exportOptions.cpp:423 +msgid "Toggle hidden systems" +msgstr "" + +#: src/gui/exportOptions.cpp:427 +msgid "Toggle all instrument types" +msgstr "" + +#: src/gui/exportOptions.cpp:431 +msgid "Set pitch linearity to Partial" +msgstr "" + +#: src/gui/exportOptions.cpp:435 +msgid "Enable multi-threading settings" +msgstr "" + +#: src/gui/exportOptions.cpp:439 +msgid "Set fat to max" +msgstr "" + +#: src/gui/exportOptions.cpp:446 +msgid "Set muscle and fat to zero" +msgstr "" + +#: src/gui/exportOptions.cpp:453 +msgid "Tell tildearrow this must be a mistake" +msgstr "" + +#: src/gui/exportOptions.cpp:454 +msgid "" +"yeah, it's a bug. write a bug report in the GitHub page and tell me how did " +"you get here." +msgstr "" + +#: src/gui/speed.cpp:32 src/gui/speed.cpp:102 src/gui/editControls.cpp:532 +#: src/gui/sysConf.cpp:2148 src/gui/guiConst.cpp:232 src/gui/guiConst.cpp:581 +#: src/gui/insEdit.cpp:2028 src/gui/insEdit.cpp:5693 src/gui/insEdit.cpp:6885 +msgid "Speed" +msgstr "ความเร็ว" + +#: src/gui/speed.cpp:41 +msgid "Base Tempo##TempoOrHz" +msgstr "" + +#: src/gui/speed.cpp:41 +msgid "Tick Rate##TempoOrHz" +msgstr "" + +#: src/gui/speed.cpp:46 +msgid "click to display tick rate" +msgstr "" + +#: src/gui/speed.cpp:48 +msgid "click to display base tempo" +msgstr "" + +#: src/gui/speed.cpp:80 +msgid "Groove" +msgstr "" + +#: src/gui/speed.cpp:87 +msgid "click for one speed" +msgstr "" + +#: src/gui/speed.cpp:90 +msgid "Speeds" +msgstr "" + +#: src/gui/speed.cpp:99 +msgid "click for groove pattern" +msgstr "" + +#: src/gui/speed.cpp:110 +msgid "click for two (alternating) speeds" +msgstr "" + +#: src/gui/speed.cpp:168 +msgid "Virtual Tempo" +msgstr "" + +#: src/gui/speed.cpp:177 +msgid "Numerator" +msgstr "" + +#: src/gui/speed.cpp:187 +msgid "Denominator (set to base tempo)" +msgstr "" + +#: src/gui/speed.cpp:193 +msgid "Divider" +msgstr "" + +#: src/gui/speed.cpp:208 +msgid "Highlight" +msgstr "" + +#: src/gui/speed.cpp:231 +msgid "Pattern Length" +msgstr "" + +#: src/gui/speed.cpp:245 +msgid "Song Length" +msgstr "" + +#: src/gui/channels.cpp:40 src/gui/editControls.cpp:446 +#: src/gui/guiConst.cpp:601 src/gui/gui.cpp:6280 +msgid "Channels" +msgstr "ช่อง" + +#: src/gui/channels.cpp:49 +msgid "Pat" +msgstr "" + +#: src/gui/channels.cpp:51 src/gui/editControls.cpp:550 +msgid "Osc" +msgstr "" + +#: src/gui/channels.cpp:53 +msgid "Swap" +msgstr "" + +#: src/gui/channels.cpp:55 src/gui/userPresets.cpp:368 +#: src/gui/effectList.cpp:45 src/gui/subSongs.cpp:125 src/gui/settings.cpp:1060 +#: src/gui/settings.cpp:4383 src/gui/sampleEdit.cpp:195 src/gui/songInfo.cpp:40 +#: src/gui/sysManager.cpp:54 src/gui/insEdit.cpp:5288 +msgid "Name" +msgstr "ชื่อ" + +#: src/gui/channels.cpp:64 +msgid "Show in pattern" +msgstr "" + +#: src/gui/channels.cpp:71 +msgid "Show in per-channel oscilloscope" +msgstr "" + +#: src/gui/channels.cpp:82 +#, c-format +msgid "" +"%s #%d\n" +"(drag to swap channels)" +msgstr "" + +#: src/gui/commandPalette.cpp:51 src/gui/sysPicker.cpp:35 +#: src/gui/newSong.cpp:133 +msgid "Search..." +msgstr "" + +#: src/gui/commandPalette.cpp:54 +msgid "Search recent files..." +msgstr "" + +#: src/gui/commandPalette.cpp:57 +msgid "Search instruments..." +msgstr "" + +#: src/gui/commandPalette.cpp:60 +msgid "Search samples..." +msgstr "" + +#: src/gui/commandPalette.cpp:63 +msgid "Search instruments (to change to)..." +msgstr "" + +#: src/gui/commandPalette.cpp:66 +msgid "Search chip (to add)..." +msgstr "" + +#: src/gui/commandPalette.cpp:93 src/gui/commandPalette.cpp:167 +msgid "- None -" +msgstr "- ไม่มี -" + +#: src/gui/commandPalette.cpp:123 src/gui/commandPalette.cpp:179 +#: src/gui/commandPalette.cpp:241 +msgid "invalid command palette type" +msgstr "" + +#: src/gui/regView.cpp:30 src/gui/guiConst.cpp:604 +msgid "Register View" +msgstr "" + +#: src/gui/regView.cpp:38 +msgid "- no register pool available" +msgstr "" + +#: src/gui/log.cpp:25 src/gui/effectList.cpp:84 +msgid "ERROR" +msgstr "" + +#: src/gui/log.cpp:26 +msgid "warning" +msgstr "" + +#: src/gui/log.cpp:27 +msgid "info" +msgstr "" + +#: src/gui/log.cpp:28 src/gui/gui.cpp:4513 +msgid "debug" +msgstr "แก้จุดบกพร่อง" + +#: src/gui/log.cpp:29 +msgid "trace" +msgstr "" + +#: src/gui/log.cpp:47 src/gui/settings.cpp:4243 src/gui/guiConst.cpp:605 +msgid "Log Viewer" +msgstr "" + +#: src/gui/log.cpp:48 src/gui/editControls.cpp:750 src/gui/editControls.cpp:883 +#: src/gui/editControls.cpp:1000 +msgid "Follow" +msgstr "ตาม" + +#: src/gui/log.cpp:50 src/gui/waveEdit.cpp:681 src/gui/insEdit.cpp:50 +msgid "Level" +msgstr "" + +#: src/gui/log.cpp:68 +msgid "time" +msgstr "" + +#: src/gui/log.cpp:70 +msgid "level" +msgstr "" + +#: src/gui/log.cpp:72 +msgid "message" +msgstr "" + +#: src/gui/pattern.cpp:433 src/gui/editControls.cpp:421 +#: src/gui/editControls.cpp:754 src/gui/editControls.cpp:887 +#: src/gui/editControls.cpp:1015 src/gui/settings.cpp:2344 +#: src/gui/settings.cpp:3297 src/gui/settings.cpp:4100 +#: src/gui/findReplace.cpp:794 src/gui/guiConst.cpp:582 src/gui/gui.cpp:5899 +msgid "Pattern" +msgstr "กรอบ" + +#: src/gui/pattern.cpp:468 +msgid "there aren't any channels to show." +msgstr "" + +#: src/gui/pattern.cpp:492 +msgid "click for pattern options (effect columns/pattern names/visualizer)" +msgstr "" + +#: src/gui/pattern.cpp:504 +msgid "Options:" +msgstr "" + +#: src/gui/pattern.cpp:506 +msgid "Effect columns/collapse" +msgstr "" + +#: src/gui/pattern.cpp:507 +msgid "Pattern names" +msgstr "" + +#: src/gui/pattern.cpp:508 +msgid "Channel group hints" +msgstr "" + +#: src/gui/pattern.cpp:509 +msgid "Visualizer" +msgstr "" + +#: src/gui/pattern.cpp:517 +msgid "Channel status:" +msgstr "" + +#: src/gui/pattern.cpp:519 +msgid "No##_PCS0" +msgstr "" + +#: src/gui/pattern.cpp:522 +msgid "Yes##_PCS1" +msgstr "" + +#: src/gui/pattern.cpp:1420 src/gui/pattern.cpp:1452 +msgid "WARNING!!" +msgstr "" + +#: src/gui/pattern.cpp:1422 src/gui/pattern.cpp:1459 +msgid "this instrument cannot be previewed because" +msgstr "" + +#: src/gui/pattern.cpp:1423 src/gui/pattern.cpp:1466 +msgid "none of the chips can play it" +msgstr "" + +#: src/gui/pattern.cpp:1424 src/gui/pattern.cpp:1473 +msgid "your instrument is in peril!! be careful..." +msgstr "" + +#: src/gui/osc.cpp:169 src/gui/settings.cpp:3710 src/gui/settings.cpp:3937 +msgid "Oscilloscope" +msgstr "" + +#: src/gui/osc.cpp:176 +#, c-format +msgid "zoom: %.2fx (%.1fdB)" +msgstr "" + +#: src/gui/osc.cpp:187 +#, c-format +msgid "window size: %.1fms" +msgstr "" + +#: src/gui/osc.cpp:385 +msgid "(-Infinity)dB" +msgstr "" + +#: src/gui/debugWindow.cpp:66 src/gui/editControls.cpp:610 +msgid "Debug" +msgstr "" + +#: src/gui/debugWindow.cpp:663 +msgid "This is a language test." +msgstr "" + +#: src/gui/debugWindow.cpp:664 +msgid "This is another language test." +msgstr "" + +#: src/gui/debugWindow.cpp:720 +#, c-format +msgid "%d apple" +msgid_plural "%d apples" +msgstr[0] "" +msgstr[1] "" + +#: src/gui/chanOsc.cpp:32 +msgid "None (0%)" +msgstr "" + +#: src/gui/chanOsc.cpp:33 +msgid "None (50%)" +msgstr "" + +#: src/gui/chanOsc.cpp:34 +msgid "None (100%)" +msgstr "" + +#: src/gui/chanOsc.cpp:36 +msgid "Frequency" +msgstr "" + +#: src/gui/chanOsc.cpp:38 src/gui/settings.cpp:1667 src/gui/settings.cpp:3406 +#: src/gui/settings.cpp:4088 +msgid "Channel" +msgstr "" + +#: src/gui/chanOsc.cpp:39 +msgid "Brightness" +msgstr "" + +#: src/gui/chanOsc.cpp:41 +msgid "Note Trigger" +msgstr "" + +#: src/gui/chanOsc.cpp:45 +msgid "Off" +msgstr "" + +#: src/gui/chanOsc.cpp:46 +msgid "Mode 1" +msgstr "" + +#: src/gui/chanOsc.cpp:47 +msgid "Mode 2" +msgstr "" + +#: src/gui/chanOsc.cpp:48 +msgid "Mode 3" +msgstr "" + +#: src/gui/chanOsc.cpp:135 src/gui/guiConst.cpp:607 +msgid "Oscilloscope (per-channel)" +msgstr "ออสซิลโลสโกป (ต่อช่อง)" + +#: src/gui/chanOsc.cpp:143 +msgid "Columns" +msgstr "" + +#: src/gui/chanOsc.cpp:152 +msgid "Size (ms)" +msgstr "" + +#: src/gui/chanOsc.cpp:163 +msgid "Automatic columns" +msgstr "" + +#: src/gui/chanOsc.cpp:177 +msgid "Center waveform" +msgstr "" + +#: src/gui/chanOsc.cpp:183 +msgid "Randomize phase on note" +msgstr "" + +#: src/gui/chanOsc.cpp:189 +msgid "Amplitude" +msgstr "" + +#: src/gui/chanOsc.cpp:199 src/gui/settings.cpp:3747 +msgid "Line size" +msgstr "" + +#: src/gui/chanOsc.cpp:211 +msgid "Gradient" +msgstr "" + +#: src/gui/chanOsc.cpp:218 +msgid "error while creating gradient texture!" +msgstr "" + +#: src/gui/chanOsc.cpp:236 +msgid "error while updating gradient texture!" +msgstr "" + +#: src/gui/chanOsc.cpp:292 src/gui/chanOsc.cpp:348 src/gui/settings.cpp:3793 +msgid "Color" +msgstr "" + +#: src/gui/chanOsc.cpp:296 +msgid "Distance" +msgstr "" + +#: src/gui/chanOsc.cpp:305 +msgid "Spread" +msgstr "" + +#: src/gui/chanOsc.cpp:314 src/gui/userPresets.cpp:370 src/gui/subSongs.cpp:121 +#: src/gui/settings.cpp:2281 src/gui/sysManager.cpp:124 +msgid "Remove" +msgstr "" + +#: src/gui/chanOsc.cpp:338 src/gui/settings.cpp:3885 src/gui/settings.cpp:4165 +#: src/gui/settings.cpp:4192 src/gui/settings.cpp:4218 +msgid "Background" +msgstr "" + +#: src/gui/chanOsc.cpp:341 +msgid "X Axis##AxisX" +msgstr "" + +#: src/gui/chanOsc.cpp:342 +msgid "Y Axis##AxisY" +msgstr "" + +#: src/gui/chanOsc.cpp:352 +msgid "Text format:" +msgstr "" + +#: src/gui/chanOsc.cpp:358 +msgid "" +"format guide:\n" +"- %c: channel name\n" +"- %C: channel short name\n" +"- %d: channel number (starting from 0)\n" +"- %D: channel number (starting from 1)\n" +"- %n: channel note\n" +"- %i: instrument name\n" +"- %I: instrument number (decimal)\n" +"- %x: instrument number (hex)\n" +"- %s: chip name\n" +"- %p: chip part number\n" +"- %S: chip ID\n" +"- %v: volume (decimal)\n" +"- %V: volume (percentage)\n" +"- %b: volume (hex)\n" +"- %l: new line\n" +"- %%: percent sign" +msgstr "" + +#: src/gui/chanOsc.cpp:380 +msgid "Text color" +msgstr "" + +#: src/gui/chanOsc.cpp:382 src/gui/xyOsc.cpp:80 src/gui/settings.cpp:6672 +#: src/gui/tutorial.cpp:689 src/gui/gui.cpp:5639 src/gui/gui.cpp:6055 +#: src/gui/gui.cpp:6223 src/gui/gui.cpp:6322 src/gui/gui.cpp:6371 +msgid "OK" +msgstr "" + +#: src/gui/chanOsc.cpp:400 +msgid "creating chan osc work pool" +msgstr "" + +#: src/gui/chanOsc.cpp:429 +#, c-format +msgid "creating FFT plan for channel %d" +msgstr "" + +#: src/gui/chanOsc.cpp:436 +msgid "failed to create plan!" +msgstr "" + +#: src/gui/chanOsc.cpp:438 +msgid "failed to create inverse plan!" +msgstr "" + +#: src/gui/chanOsc.cpp:440 +msgid "failed to create FFT buffers" +msgstr "" + +#: src/gui/chanOsc.cpp:585 +msgid "Error!" +msgstr "" + +#: src/gui/editControls.cpp:47 src/gui/sampleEdit.cpp:1736 src/gui/gui.cpp:2733 +#: src/gui/insEdit.cpp:363 +msgid "cut" +msgstr "" + +#: src/gui/editControls.cpp:48 src/gui/sampleEdit.cpp:1740 src/gui/gui.cpp:2734 +#: src/gui/insEdit.cpp:7538 +msgid "copy" +msgstr "" + +#: src/gui/editControls.cpp:49 src/gui/sampleEdit.cpp:1744 src/gui/gui.cpp:2735 +#: src/gui/gui.cpp:2788 src/gui/insEdit.cpp:7543 +msgid "paste" +msgstr "" + +#: src/gui/editControls.cpp:51 +msgid "" +"select\n" +"all" +msgstr "" + +#: src/gui/editControls.cpp:52 +msgid "piano" +msgstr "" + +#: src/gui/editControls.cpp:53 src/gui/gui.cpp:4429 +msgid "undo" +msgstr "" + +#: src/gui/editControls.cpp:54 src/gui/gui.cpp:4430 +msgid "redo" +msgstr "" + +#: src/gui/editControls.cpp:57 +msgid "" +"paste\n" +"mix" +msgstr "" + +#: src/gui/editControls.cpp:58 +msgid "" +"paste\n" +"mix bg" +msgstr "" + +#: src/gui/editControls.cpp:59 +msgid "" +"paste\n" +"ins" +msgstr "" + +#: src/gui/editControls.cpp:60 +msgid "" +"paste\n" +"ins bg" +msgstr "" + +#: src/gui/editControls.cpp:61 +msgid "" +"paste\n" +"flood" +msgstr "" + +#: src/gui/editControls.cpp:62 +msgid "" +"paste\n" +"overflow" +msgstr "" + +#: src/gui/editControls.cpp:63 +msgid "" +"transpose\n" +"notes" +msgstr "" + +#: src/gui/editControls.cpp:64 +msgid "" +"transpose\n" +"values" +msgstr "" + +#: src/gui/editControls.cpp:67 +msgid "" +"change\n" +"ins" +msgstr "" + +#: src/gui/editControls.cpp:68 +msgid "" +"find/\n" +"replace" +msgstr "" + +#: src/gui/editControls.cpp:69 src/gui/gui.cpp:3063 +msgid "collapse" +msgstr "" + +#: src/gui/editControls.cpp:70 src/gui/gui.cpp:3064 +msgid "expand" +msgstr "" + +#: src/gui/editControls.cpp:71 src/gui/gui.cpp:2820 +msgid "flip" +msgstr "" + +#: src/gui/editControls.cpp:72 src/gui/insEdit.cpp:430 +msgid "invert" +msgstr "" + +#: src/gui/editControls.cpp:73 src/gui/gui.cpp:2800 src/gui/gui.cpp:2960 +msgid "interpolate" +msgstr "" + +#: src/gui/editControls.cpp:74 src/gui/gui.cpp:2812 src/gui/insEdit.cpp:7610 +msgid "scale" +msgstr "" + +#: src/gui/editControls.cpp:77 src/gui/gui.cpp:2804 +msgid "fade" +msgstr "" + +#: src/gui/editControls.cpp:78 src/gui/gui.cpp:2816 src/gui/insEdit.cpp:7639 +msgid "randomize" +msgstr "" + +#: src/gui/editControls.cpp:79 +msgid "opmask" +msgstr "" + +#: src/gui/editControls.cpp:80 +msgid "" +"scroll\n" +"mode" +msgstr "" + +#: src/gui/editControls.cpp:81 +msgid "" +"input\n" +"latch" +msgstr "" + +#: src/gui/editControls.cpp:82 +msgid "" +"set\n" +"latch" +msgstr "" + +#: src/gui/editControls.cpp:83 +msgid "" +"clear\n" +"latch" +msgstr "" + +#: src/gui/editControls.cpp:84 src/gui/findReplace.cpp:43 +#: src/gui/insEdit.cpp:7557 +msgid "clear" +msgstr "" + +#: src/gui/editControls.cpp:333 +#, fuzzy +msgid "Mobile Controls" +msgstr "ตัวควบคุมการเล่นและแก้ไข" + +#: src/gui/editControls.cpp:408 +msgid "Mobile Menu" +msgstr "" + +#: src/gui/editControls.cpp:425 src/gui/editControls.cpp:752 +#: src/gui/editControls.cpp:885 src/gui/editControls.cpp:1007 +#: src/gui/settings.cpp:2485 src/gui/settings.cpp:3271 +#: src/gui/settings.cpp:3975 src/gui/orders.cpp:232 src/gui/guiConst.cpp:577 +#: src/gui/gui.cpp:5888 +msgid "Orders" +msgstr "ลำดับ" + +#: src/gui/editControls.cpp:429 src/gui/findReplace.cpp:669 +#: src/gui/findReplace.cpp:914 +msgid "Ins" +msgstr "" + +#: src/gui/editControls.cpp:442 src/gui/findReplace.cpp:788 +#: src/gui/guiConst.cpp:230 +msgid "Song" +msgstr "" + +#: src/gui/editControls.cpp:450 src/gui/sampleEdit.cpp:494 +msgid "Chips" +msgstr "ชิป" + +#: src/gui/editControls.cpp:458 src/gui/settings.cpp:2117 +#: src/gui/settings.cpp:3934 src/gui/settings.cpp:4018 +#: src/gui/compatFlags.cpp:319 +msgid "Other" +msgstr "" + +#: src/gui/editControls.cpp:487 src/gui/guiConst.cpp:531 +msgid "New" +msgstr "" + +#: src/gui/editControls.cpp:491 src/gui/doAction.cpp:38 src/gui/gui.cpp:4194 +msgid "Unsaved changes! Save changes before creating a new song?" +msgstr "" + +#: src/gui/editControls.cpp:507 +msgid "Save as..." +msgstr "" + +#: src/gui/editControls.cpp:516 src/gui/gui.cpp:1680 +msgid "Restore Backup" +msgstr "คืนค่าข้อมูลสำรอง" + +#: src/gui/editControls.cpp:524 +msgid "Song Info" +msgstr "ข้อมูลเพลง" + +#: src/gui/editControls.cpp:528 src/gui/subSongs.cpp:17 +#: src/gui/guiConst.cpp:608 +msgid "Subsongs" +msgstr "เพลงย่อย" + +#: src/gui/editControls.cpp:541 +msgid "Channels here..." +msgstr "" + +#: src/gui/editControls.cpp:544 +msgid "Chips here..." +msgstr "" + +#: src/gui/editControls.cpp:547 +msgid "What the hell..." +msgstr "" + +#: src/gui/editControls.cpp:554 +msgid "ChanOsc" +msgstr "" + +#: src/gui/editControls.cpp:558 +msgid "RegView" +msgstr "" + +#: src/gui/editControls.cpp:562 +msgid "Stats" +msgstr "" + +#: src/gui/editControls.cpp:566 src/gui/guiConst.cpp:611 src/gui/grooves.cpp:35 +msgid "Grooves" +msgstr "" + +#: src/gui/editControls.cpp:569 +msgid "Compat Flags" +msgstr "" + +#: src/gui/editControls.cpp:573 +msgid "XYOsc" +msgstr "" + +#: src/gui/editControls.cpp:577 +msgid "Meter" +msgstr "" + +#: src/gui/editControls.cpp:581 +msgid "Memory" +msgstr "" + +#: src/gui/editControls.cpp:585 +msgid "CV" +msgstr "" + +#: src/gui/editControls.cpp:589 +msgid "Presets" +msgstr "" + +#: src/gui/editControls.cpp:593 +msgid "PatManager" +msgstr "" + +#: src/gui/editControls.cpp:599 src/gui/guiConst.cpp:564 +msgid "Panic" +msgstr "" + +#: src/gui/editControls.cpp:601 src/gui/settings.cpp:560 +#: src/gui/guiConst.cpp:589 src/gui/guiConst.cpp:591 src/gui/gui.cpp:4439 +msgid "Settings" +msgstr "" + +#: src/gui/editControls.cpp:606 +msgid "Log" +msgstr "" + +#: src/gui/editControls.cpp:614 src/gui/guiConst.cpp:587 +msgid "About" +msgstr "" + +#: src/gui/editControls.cpp:619 +msgid "Switch to Desktop Mode" +msgstr "" + +#: src/gui/editControls.cpp:673 src/gui/editControls.cpp:784 +#: src/gui/editControls.cpp:904 +#, fuzzy +msgid "Play/Edit Controls" +msgstr "ตัวควบคุมการเล่นและแก้ไข" + +#: src/gui/editControls.cpp:681 src/gui/editControls.cpp:842 +#: src/gui/editControls.cpp:959 src/gui/editControls.cpp:1125 +msgid "Octave" +msgstr "คู่แปด" + +#: src/gui/editControls.cpp:698 src/gui/editControls.cpp:857 +msgid "Coarse Step" +msgstr "" + +#: src/gui/editControls.cpp:698 src/gui/editControls.cpp:857 +msgid "Edit Step" +msgstr "ระยะก้าว" + +#: src/gui/editControls.cpp:731 src/gui/editControls.cpp:797 +#: src/gui/editControls.cpp:911 src/gui/editControls.cpp:1048 +#: src/gui/guiConst.cpp:545 +msgid "Play" +msgstr "" + +#: src/gui/editControls.cpp:739 src/gui/editControls.cpp:789 +#: src/gui/editControls.cpp:918 src/gui/editControls.cpp:1040 +#: src/gui/guiConst.cpp:546 +msgid "Stop" +msgstr "" + +#: src/gui/editControls.cpp:742 src/gui/editControls.cpp:826 +#: src/gui/editControls.cpp:943 src/gui/editControls.cpp:1082 +#: src/gui/gui.cpp:4426 +msgid "Edit" +msgstr "" + +#: src/gui/editControls.cpp:757 src/gui/editControls.cpp:816 +#: src/gui/editControls.cpp:934 src/gui/editControls.cpp:1104 +msgid "Repeat pattern" +msgstr "" + +#: src/gui/editControls.cpp:766 src/gui/editControls.cpp:806 +#: src/gui/editControls.cpp:925 src/gui/editControls.cpp:1073 +msgid "Step one row" +msgstr "" + +#: src/gui/editControls.cpp:771 src/gui/editControls.cpp:891 +#: src/gui/editControls.cpp:1020 src/gui/editControls.cpp:1110 +msgid "Poly##PolyInput" +msgstr "ใส่หลาย" + +#: src/gui/editControls.cpp:771 src/gui/editControls.cpp:891 +#: src/gui/editControls.cpp:1020 src/gui/editControls.cpp:1110 +msgid "Mono##PolyInput" +msgstr "ใส่เดี่ยว" + +#: src/gui/editControls.cpp:776 src/gui/editControls.cpp:896 +#: src/gui/editControls.cpp:1025 src/gui/editControls.cpp:1115 +msgid "Polyphony" +msgstr "" + +#: src/gui/editControls.cpp:957 +msgid "Oct." +msgstr "" + +#: src/gui/editControls.cpp:974 src/gui/editControls.cpp:1142 +msgid "Coarse" +msgstr "" + +#: src/gui/editControls.cpp:974 src/gui/editControls.cpp:1142 +msgid "Step" +msgstr "" + +#: src/gui/editControls.cpp:998 +msgid "Foll." +msgstr "" + +#: src/gui/editControls.cpp:1003 +msgid "Ord##FollowOrders" +msgstr "" + +#: src/gui/editControls.cpp:1011 +msgid "Pat##FollowPattern" +msgstr "" + +#: src/gui/editControls.cpp:1033 +#, fuzzy +msgid "Play Controls" +msgstr "ตัวควบคุมการเล่นและแก้ไข" + +#: src/gui/editControls.cpp:1057 +msgid "Play from the beginning of this pattern" +msgstr "" + +#: src/gui/editControls.cpp:1065 +msgid "Repeat from the beginning of this pattern" +msgstr "" + +#: src/gui/editControls.cpp:1122 src/gui/guiConst.cpp:576 +msgid "Edit Controls" +msgstr "" + +#: src/gui/editControls.cpp:1169 src/gui/guiConst.cpp:560 +msgid "Follow orders" +msgstr "" + +#: src/gui/editControls.cpp:1170 src/gui/guiConst.cpp:561 +msgid "Follow pattern" +msgstr "" + +#: src/gui/songNotes.cpp:32 src/gui/guiConst.cpp:600 +msgid "Song Comments" +msgstr "" + +#: src/gui/util.cpp:93 +msgid "" +msgstr "" + +#: src/gui/util.cpp:97 +msgid "Ctrl-" +msgstr "" + +#: src/gui/util.cpp:99 +msgid "Alt-" +msgstr "" + +#: src/gui/util.cpp:100 +msgid "Shift-" +msgstr "" + +#: src/gui/stats.cpp:31 src/gui/guiConst.cpp:597 +msgid "Statistics" +msgstr "" + +#: src/gui/stats.cpp:36 +msgid "Audio load" +msgstr "" + +#: src/gui/xyOsc.cpp:40 src/gui/guiConst.cpp:612 +msgid "Oscilloscope (X-Y)" +msgstr "ออสซิลโลสโกป (X-Y)" + +#: src/gui/xyOsc.cpp:45 +msgid "X Channel" +msgstr "" + +#: src/gui/xyOsc.cpp:51 +msgid "Invert##X" +msgstr "" + +#: src/gui/xyOsc.cpp:52 +msgid "Y Channel" +msgstr "" + +#: src/gui/xyOsc.cpp:58 +msgid "Invert##Y" +msgstr "" + +#: src/gui/xyOsc.cpp:59 src/gui/sampleEdit.cpp:1353 +msgid "Zoom" +msgstr "" + +#: src/gui/xyOsc.cpp:71 +msgid "Decay Time (ms)" +msgstr "" + +#: src/gui/xyOsc.cpp:74 +msgid "Intensity" +msgstr "" + +#: src/gui/xyOsc.cpp:77 +msgid "Line Thickness" +msgstr "" + +#: src/gui/xyOsc.cpp:213 +msgid "(-Infinity)dB,(-Infinity)dB" +msgstr "" + +#: src/gui/xyOsc.cpp:215 +#, c-format +msgid "(-Infinity)dB,%.1fdB" +msgstr "" + +#: src/gui/xyOsc.cpp:217 +#, c-format +msgid "%.1fdB,(-Infinity)dB" +msgstr "" + +#: src/gui/xyOsc.cpp:219 +#, c-format +msgid "%.1fdB,%.1fdB" +msgstr "" + +#: src/gui/sysConf.cpp:49 src/gui/sysConf.cpp:121 src/gui/sysConf.cpp:486 +#: src/gui/sysConf.cpp:604 src/gui/sysConf.cpp:647 src/gui/sysConf.cpp:684 +#: src/gui/sysConf.cpp:843 src/gui/sysConf.cpp:1098 src/gui/sysConf.cpp:1181 +#: src/gui/sysConf.cpp:1220 src/gui/sysConf.cpp:1294 src/gui/sysConf.cpp:1380 +#: src/gui/sysConf.cpp:1444 src/gui/sysConf.cpp:1482 src/gui/sysConf.cpp:1572 +#: src/gui/sysConf.cpp:1668 src/gui/sysConf.cpp:1716 src/gui/sysConf.cpp:1757 +#: src/gui/sysConf.cpp:1810 src/gui/sysConf.cpp:2284 src/gui/sysConf.cpp:2307 +msgid "Clock rate:" +msgstr "" + +#: src/gui/sysConf.cpp:73 src/gui/sysConf.cpp:152 src/gui/sysConf.cpp:911 +#: src/gui/sysConf.cpp:1459 src/gui/sysConf.cpp:1783 +msgid "Chip type:" +msgstr "" + +#: src/gui/sysConf.cpp:75 +msgid "YM3438 (9-bit DAC)" +msgstr "" + +#: src/gui/sysConf.cpp:79 +msgid "YM2612 (9-bit DAC with distortion)" +msgstr "" + +#: src/gui/sysConf.cpp:83 +msgid "YMF276 (external DAC)" +msgstr "" + +#: src/gui/sysConf.cpp:90 src/gui/sysConf.cpp:804 src/gui/sysConf.cpp:1350 +#: src/gui/sysConf.cpp:1420 +msgid "Disable ExtCh FM macros (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:93 src/gui/sysConf.cpp:807 src/gui/sysConf.cpp:1353 +#: src/gui/sysConf.cpp:1423 +msgid "Ins change in ExtCh operator 2-4 affects FB (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:99 +msgid "Modified sine wave (joke)" +msgstr "" + +#: src/gui/sysConf.cpp:123 src/gui/sysConf.cpp:1296 src/gui/sysConf.cpp:1718 +#: src/gui/sysConf.cpp:2286 +msgid "3.58MHz (NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:127 +msgid "3.55MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:131 +msgid "4MHz (BBC Micro)" +msgstr "" + +#: src/gui/sysConf.cpp:135 +msgid "1.79MHz (Half NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:139 +msgid "3MHz (Exed Exes)" +msgstr "" + +#: src/gui/sysConf.cpp:143 +msgid "2MHz (Sega System 1)" +msgstr "" + +#: src/gui/sysConf.cpp:147 +msgid "447KHz (TI-99/4A)" +msgstr "" + +#: src/gui/sysConf.cpp:154 +msgid "Sega VDP/Master System" +msgstr "" + +#: src/gui/sysConf.cpp:162 +msgid "TI SN76489 with Atari-like short noise" +msgstr "" + +#: src/gui/sysConf.cpp:166 +msgid "Game Gear" +msgstr "" + +#: src/gui/sysConf.cpp:170 +msgid "TI SN76489A" +msgstr "" + +#: src/gui/sysConf.cpp:174 +msgid "TI SN76496" +msgstr "" + +#: src/gui/sysConf.cpp:178 +msgid "NCR 8496" +msgstr "" + +#: src/gui/sysConf.cpp:182 +msgid "Tandy PSSJ 3-voice sound" +msgstr "" + +#: src/gui/sysConf.cpp:186 +msgid "TI SN94624" +msgstr "" + +#: src/gui/sysConf.cpp:190 +msgid "TI SN76494" +msgstr "" + +#: src/gui/sysConf.cpp:196 +msgid "Disable noise period change phase reset" +msgstr "" + +#: src/gui/sysConf.cpp:200 src/gui/sysConf.cpp:2190 +msgid "Disable easy period to note mapping on upper octaves" +msgstr "" + +#: src/gui/sysConf.cpp:219 src/gui/sysConf.cpp:583 +msgid "Pseudo-PAL" +msgstr "" + +#: src/gui/sysConf.cpp:222 src/gui/sysConf.cpp:342 +msgid "Disable anti-click" +msgstr "" + +#: src/gui/sysConf.cpp:225 src/gui/sysConf.cpp:345 +msgid "Chip revision:" +msgstr "" + +#: src/gui/sysConf.cpp:227 +msgid "HuC6280 (original)" +msgstr "" + +#: src/gui/sysConf.cpp:231 +msgid "HuC6280A (SuperGrafx)" +msgstr "" + +#: src/gui/sysConf.cpp:257 +msgid "CPU rate:" +msgstr "" + +#: src/gui/sysConf.cpp:259 +msgid "6.18MHz (NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:263 +msgid "5.95MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:268 +msgid "Sample memory:" +msgstr "" + +#: src/gui/sysConf.cpp:270 +msgid "8K (rev A/B/E)" +msgstr "" + +#: src/gui/sysConf.cpp:274 +msgid "64K (rev D/F)" +msgstr "" + +#: src/gui/sysConf.cpp:279 +msgid "DAC resolution:" +msgstr "" + +#: src/gui/sysConf.cpp:281 +msgid "16-bit (rev A/B/D/F)" +msgstr "" + +#: src/gui/sysConf.cpp:285 +msgid "8-bit + TDM (rev C/E)" +msgstr "" + +#: src/gui/sysConf.cpp:290 src/gui/sysConf.cpp:1931 +msgid "Enable echo" +msgstr "" + +#: src/gui/sysConf.cpp:293 +msgid "Swap echo channels" +msgstr "" + +#: src/gui/sysConf.cpp:296 src/gui/sysConf.cpp:1151 +msgid "Echo delay:" +msgstr "" + +#: src/gui/sysConf.cpp:302 +msgid "Echo resolution:" +msgstr "" + +#: src/gui/sysConf.cpp:308 src/gui/sysConf.cpp:1159 +msgid "Echo feedback:" +msgstr "" + +#: src/gui/sysConf.cpp:314 src/gui/sysConf.cpp:1967 +msgid "Echo volume:" +msgstr "" + +#: src/gui/sysConf.cpp:347 +msgid "Original (DMG)" +msgstr "" + +#: src/gui/sysConf.cpp:351 +msgid "Game Boy Color (rev C)" +msgstr "" + +#: src/gui/sysConf.cpp:355 +msgid "Game Boy Color (rev E)" +msgstr "" + +#: src/gui/sysConf.cpp:359 +msgid "Game Boy Advance" +msgstr "" + +#: src/gui/sysConf.cpp:364 +msgid "Wave channel orientation:" +msgstr "" + +#: src/gui/sysConf.cpp:367 src/gui/compatFlags.cpp:298 src/gui/gui.cpp:6067 +#: src/gui/insEdit.cpp:217 src/gui/insEdit.cpp:231 +msgid "Normal" +msgstr "" + +#: src/gui/sysConf.cpp:371 +msgid "Inverted" +msgstr "" + +#: src/gui/sysConf.cpp:378 +msgid "Exact data (inverted)" +msgstr "" + +#: src/gui/sysConf.cpp:382 +msgid "Exact output (normal)" +msgstr "" + +#: src/gui/sysConf.cpp:388 +msgid "" +"Pretty please one more compat flag when I use arpeggio and my sound length" +msgstr "" + +#: src/gui/sysConf.cpp:405 src/gui/sysConf.cpp:438 +msgid "DAC bit depth (reduces output rate):" +msgstr "" + +#: src/gui/sysConf.cpp:426 src/gui/sysConf.cpp:1268 src/gui/sysConf.cpp:1919 +msgid "Volume scale:" +msgstr "" + +#: src/gui/sysConf.cpp:432 +msgid "Mix buffers (allows longer echo delay):" +msgstr "" + +#: src/gui/sysConf.cpp:444 +msgid "Channel limit:" +msgstr "" + +#: src/gui/sysConf.cpp:450 +msgid "Sample rate:" +msgstr "" + +#: src/gui/sysConf.cpp:460 +#, c-format +msgid "Actual sample rate: %d Hz" +msgstr "" + +#: src/gui/sysConf.cpp:462 +#, c-format +msgid "Max mixer CPU usage: %.0f%%" +msgstr "" + +#: src/gui/sysConf.cpp:488 +msgid "NTSC (3.58MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:492 src/gui/sysConf.cpp:557 +msgid "PAL (3.55MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:496 +msgid "Arcade (4MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:500 +msgid "Half NTSC (1.79MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:506 +msgid "Patch set:" +msgstr "" + +#: src/gui/sysConf.cpp:528 +msgid "Ignore top/hi-hat frequency changes" +msgstr "" + +#: src/gui/sysConf.cpp:531 +msgid "Apply fixed frequency to all drums at once" +msgstr "" + +#: src/gui/sysConf.cpp:553 +msgid "NTSC/X16 (3.58MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:561 +msgid "X1/X68000 (4MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:567 src/gui/sysConf.cpp:587 +msgid "Broken pitch macro/slides (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:607 src/gui/sysConf.cpp:650 src/gui/sysConf.cpp:1222 +#: src/gui/sysConf.cpp:2310 +msgid "NTSC (1.79MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:611 src/gui/sysConf.cpp:654 src/gui/sysConf.cpp:1226 +msgid "PAL (1.67MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:615 src/gui/sysConf.cpp:658 src/gui/sysConf.cpp:1230 +msgid "Dendy (1.77MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:621 +msgid "DPCM channel mode:" +msgstr "" + +#: src/gui/sysConf.cpp:624 +msgid "DPCM (muffled samples; low CPU usage)" +msgstr "" + +#: src/gui/sysConf.cpp:628 +msgid "PCM (crisp samples; high CPU usage)" +msgstr "" + +#: src/gui/sysConf.cpp:687 +msgid "NTSC (1.02MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:691 +msgid "PAL (0.99MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:695 +msgid "SSI 2001 (0.89MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:701 src/gui/sysConf.cpp:2320 +msgid "Global parameter priority:" +msgstr "" + +#: src/gui/sysConf.cpp:704 src/gui/sysConf.cpp:2323 +msgid "Left to right" +msgstr "" + +#: src/gui/sysConf.cpp:708 src/gui/sysConf.cpp:2327 +msgid "Last used channel" +msgstr "" + +#: src/gui/sysConf.cpp:714 +msgid "Hard reset envelope:" +msgstr "" + +#: src/gui/sysConf.cpp:716 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:1920 +#: src/gui/insEdit.cpp:6955 src/gui/insEdit.cpp:7481 +msgid "Attack" +msgstr "" + +#: src/gui/sysConf.cpp:721 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:1960 +#: src/gui/insEdit.cpp:6956 src/gui/insEdit.cpp:7482 +msgid "Decay" +msgstr "" + +#: src/gui/sysConf.cpp:726 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:1929 +#: src/gui/insEdit.cpp:6957 src/gui/insEdit.cpp:7483 +msgid "Sustain" +msgstr "" + +#: src/gui/sysConf.cpp:731 src/gui/settings.cpp:3987 src/gui/insEdit.cpp:50 +#: src/gui/insEdit.cpp:604 src/gui/insEdit.cpp:1983 src/gui/insEdit.cpp:6958 +#: src/gui/insEdit.cpp:7484 +msgid "Release" +msgstr "" + +#: src/gui/sysConf.cpp:737 +msgid "Envelope reset time:" +msgstr "" + +#: src/gui/sysConf.cpp:747 +msgid "" +"- 0 disables envelope reset. not recommended!\n" +"- 1 may trigger SID envelope bugs.\n" +"- values that are too high may result in notes being skipped." +msgstr "" + +#: src/gui/sysConf.cpp:749 +msgid "Disable 1Exy env update (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:753 +msgid "Relative duty and cutoff macros are coarse (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:757 +msgid "Cutoff macro race conditions (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:793 +msgid "8MHz (Neo Geo MVS)" +msgstr "" + +#: src/gui/sysConf.cpp:797 +msgid "8.06MHz (Neo Geo AES)" +msgstr "" + +#: src/gui/sysConf.cpp:812 src/gui/sysConf.cpp:1337 src/gui/sysConf.cpp:1407 +msgid "SSG Volume" +msgstr "" + +#: src/gui/sysConf.cpp:818 src/gui/sysConf.cpp:1413 +msgid "FM/ADPCM Volume" +msgstr "" + +#: src/gui/sysConf.cpp:845 +msgid "1.79MHz (ZX Spectrum NTSC/MSX)" +msgstr "" + +#: src/gui/sysConf.cpp:849 +msgid "1.77MHz (ZX Spectrum PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:853 +msgid "0.83MHz (Pre-divided Sunsoft 5B on PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:857 +msgid "0.89MHz (Pre-divided Sunsoft 5B)" +msgstr "" + +#: src/gui/sysConf.cpp:861 +msgid "1MHz (Amstrad CPC)" +msgstr "" + +#: src/gui/sysConf.cpp:865 +msgid "1.10MHz (Gamate/VIC-20 PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:869 +msgid "1.25MHz (Mag Max)" +msgstr "" + +#: src/gui/sysConf.cpp:873 +msgid "1.5MHz (Vectrex)" +msgstr "" + +#: src/gui/sysConf.cpp:877 +msgid "1.536MHz (Kyugo)" +msgstr "" + +#: src/gui/sysConf.cpp:881 +msgid "1.67MHz (?)" +msgstr "" + +#: src/gui/sysConf.cpp:885 +msgid "1.75MHz (ZX Spectrum 48K)" +msgstr "" + +#: src/gui/sysConf.cpp:889 +msgid "1.99MHz (PC-88)" +msgstr "" + +#: src/gui/sysConf.cpp:893 +msgid "2MHz (Atari ST/Sharp X1)" +msgstr "" + +#: src/gui/sysConf.cpp:897 +msgid "2^21Hz (Game Boy)" +msgstr "" + +#: src/gui/sysConf.cpp:901 +msgid "3.58MHz (Darky)" +msgstr "" + +#: src/gui/sysConf.cpp:905 +msgid "3.6MHz (Darky)" +msgstr "" + +#: src/gui/sysConf.cpp:917 +msgid "YM2149(F)" +msgstr "" + +#: src/gui/sysConf.cpp:921 +msgid "Sunsoft 5B" +msgstr "" + +#: src/gui/sysConf.cpp:925 +msgid "AY-3-8914" +msgstr "" + +#: src/gui/sysConf.cpp:931 +msgid "note: AY-3-8914 is not supported by the VGM format!" +msgstr "" + +#: src/gui/sysConf.cpp:935 +msgid "Stereo##_AY_STEREO" +msgstr "" + +#: src/gui/sysConf.cpp:940 +msgid "Separation" +msgstr "" + +#: src/gui/sysConf.cpp:949 +msgid "Half Clock divider##_AY_CLKSEL" +msgstr "" + +#: src/gui/sysConf.cpp:971 +msgid "SAM Coupé (8MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:975 +msgid "NTSC (7.15MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:979 +msgid "PAL (7.09MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:999 +msgid "Stereo separation:" +msgstr "" + +#: src/gui/sysConf.cpp:1006 src/gui/sysConf.cpp:2412 +msgid "Model:" +msgstr "" + +#: src/gui/sysConf.cpp:1008 +msgid "Amiga 500 (OCS)" +msgstr "" + +#: src/gui/sysConf.cpp:1012 +msgid "Amiga 1200 (AGA)" +msgstr "" + +#: src/gui/sysConf.cpp:1018 +msgid "Chip memory:" +msgstr "" + +#: src/gui/sysConf.cpp:1020 +msgid "2MB (ECS/AGA max)" +msgstr "" + +#: src/gui/sysConf.cpp:1030 +msgid "512KB (OCS max)" +msgstr "" + +#: src/gui/sysConf.cpp:1043 src/gui/sysConf.cpp:1081 src/gui/sysConf.cpp:2395 +#: src/gui/sysConf.cpp:2449 +msgid "PAL" +msgstr "" + +#: src/gui/sysConf.cpp:1046 +msgid "Bypass frequency limits" +msgstr "" + +#: src/gui/sysConf.cpp:1065 +msgid "Mixing mode:" +msgstr "" + +#: src/gui/sysConf.cpp:1067 src/gui/settings.cpp:3724 +msgid "Mono" +msgstr "" + +#: src/gui/sysConf.cpp:1071 +msgid "Mono (no distortion)" +msgstr "" + +#: src/gui/sysConf.cpp:1075 src/gui/sysConf.cpp:1197 src/gui/sysConf.cpp:1864 +#: src/gui/sysConf.cpp:2204 +msgid "Stereo" +msgstr "" + +#: src/gui/sysConf.cpp:1100 +msgid "1.19MHz (PC)" +msgstr "" + +#: src/gui/sysConf.cpp:1104 +msgid "1.99MHz (PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1108 +msgid "2.46MHz (PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1114 +msgid "Speaker type:" +msgstr "" + +#: src/gui/sysConf.cpp:1116 +msgid "Unfiltered" +msgstr "" + +#: src/gui/sysConf.cpp:1120 +msgid "Cone" +msgstr "" + +#: src/gui/sysConf.cpp:1124 +msgid "Piezo" +msgstr "" + +#: src/gui/sysConf.cpp:1128 +msgid "Use system beeper (Linux only!)" +msgstr "" + +#: src/gui/sysConf.cpp:1134 +msgid "Reset phase on frequency change" +msgstr "" + +#: src/gui/sysConf.cpp:1183 +msgid "16MHz (Seta 1)" +msgstr "" + +#: src/gui/sysConf.cpp:1187 +msgid "16.67MHz (Seta 2)" +msgstr "" + +#: src/gui/sysConf.cpp:1191 src/gui/sysConf.cpp:1759 +msgid "14.32MHz (NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:1201 +msgid "Bankswitched (Seta 2)" +msgstr "" + +#: src/gui/sysConf.cpp:1235 src/gui/sysConf.cpp:1261 +msgid "Initial channel limit:" +msgstr "" + +#: src/gui/sysConf.cpp:1241 src/gui/sysConf.cpp:2398 +msgid "Disable hissing" +msgstr "" + +#: src/gui/sysConf.cpp:1244 +msgid "Scale frequency to wave length" +msgstr "" + +#: src/gui/sysConf.cpp:1300 src/gui/sysConf.cpp:1722 +msgid "3.54MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:1304 src/gui/sysConf.cpp:1726 src/gui/sysConf.cpp:2290 +msgid "4MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1308 src/gui/sysConf.cpp:1730 +msgid "3MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1312 src/gui/sysConf.cpp:1734 +msgid "3.9936MHz (PC-88/PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1316 +msgid "1.5MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1321 src/gui/sysConf.cpp:1391 src/gui/sysConf.cpp:1639 +#: src/gui/sysConf.cpp:1852 +msgid "Output rate:" +msgstr "" + +#: src/gui/sysConf.cpp:1323 src/gui/sysConf.cpp:1397 +msgid "FM: clock / 72, SSG: clock / 16" +msgstr "" + +#: src/gui/sysConf.cpp:1327 +msgid "FM: clock / 36, SSG: clock / 8" +msgstr "" + +#: src/gui/sysConf.cpp:1331 +msgid "FM: clock / 24, SSG: clock / 4" +msgstr "" + +#: src/gui/sysConf.cpp:1343 +msgid "FM Volume" +msgstr "" + +#: src/gui/sysConf.cpp:1382 +msgid "8MHz (Arcade)" +msgstr "" + +#: src/gui/sysConf.cpp:1386 +msgid "7.987MHz (PC-88/PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1393 +msgid "FM: clock / 144, SSG: clock / 32" +msgstr "" + +#: src/gui/sysConf.cpp:1401 +msgid "FM: clock / 48, SSG: clock / 8" +msgstr "" + +#: src/gui/sysConf.cpp:1446 +msgid "8MHz (FM Towns)" +msgstr "" + +#: src/gui/sysConf.cpp:1450 +msgid "10MHz (Sega System 18)" +msgstr "" + +#: src/gui/sysConf.cpp:1454 +msgid "12.5MHz (Sega CD/System 32)" +msgstr "" + +#: src/gui/sysConf.cpp:1461 +msgid "RF5C68 (10-bit output)" +msgstr "" + +#: src/gui/sysConf.cpp:1465 +msgid "RF5C164 (16-bit output)" +msgstr "" + +#: src/gui/sysConf.cpp:1520 +msgid "Sample rate table:" +msgstr "" + +#: src/gui/sysConf.cpp:1524 +msgid "divider \\ clock" +msgstr "" + +#: src/gui/sysConf.cpp:1526 +msgid "full" +msgstr "" + +#: src/gui/sysConf.cpp:1528 +msgid "half" +msgstr "" + +#: src/gui/sysConf.cpp:1641 +msgid "clock / 132" +msgstr "" + +#: src/gui/sysConf.cpp:1645 +msgid "clock / 165" +msgstr "" + +#: src/gui/sysConf.cpp:1651 +msgid "Bankswitched (NMK112)" +msgstr "" + +#: src/gui/sysConf.cpp:1670 +msgid "1.79MHz (NTSC/MSX)" +msgstr "" + +#: src/gui/sysConf.cpp:1674 +msgid "1.77MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:1678 +msgid "1.5MHz (Arcade)" +msgstr "" + +#: src/gui/sysConf.cpp:1682 +msgid "2MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1697 +msgid "Consistent frequency across all duties" +msgstr "" + +#: src/gui/sysConf.cpp:1704 +msgid "note: only works for an initial LFSR value of 0!" +msgstr "" + +#: src/gui/sysConf.cpp:1738 +msgid "3.5MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1763 +msgid "14.19MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:1767 +msgid "14MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1771 +msgid "16MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1775 +msgid "15MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1779 +msgid "33.8688MHz (OPL3-L)" +msgstr "" + +#: src/gui/sysConf.cpp:1784 +msgid "OPL3 (YMF262)" +msgstr "" + +#: src/gui/sysConf.cpp:1788 +msgid "OPL3-L (YMF289B)" +msgstr "" + +#: src/gui/sysConf.cpp:1794 +msgid "Compatible panning (0800)" +msgstr "" + +#: src/gui/sysConf.cpp:1858 +msgid "Output bit depth:" +msgstr "" + +#: src/gui/sysConf.cpp:1868 +msgid "Interpolation:" +msgstr "" + +#: src/gui/sysConf.cpp:1874 src/gui/waveEdit.cpp:38 +msgid "Linear" +msgstr "" + +#: src/gui/sysConf.cpp:1878 src/gui/waveEdit.cpp:40 +msgid "Cubic" +msgstr "" + +#: src/gui/sysConf.cpp:1882 +msgid "Sinc" +msgstr "" + +#: src/gui/sysConf.cpp:1920 +msgid "Left##VolScaleL" +msgstr "" + +#: src/gui/sysConf.cpp:1925 +msgid "Right##VolScaleL" +msgstr "" + +#: src/gui/sysConf.cpp:1935 +msgid "Initial echo state:" +msgstr "" + +#: src/gui/sysConf.cpp:1955 +msgid "Delay##EchoDelay" +msgstr "" + +#: src/gui/sysConf.cpp:1961 +msgid "Feedback##EchoFeedback" +msgstr "" + +#: src/gui/sysConf.cpp:1968 +msgid "Left##EchoVolL" +msgstr "" + +#: src/gui/sysConf.cpp:1973 +msgid "Right##EchoVolL" +msgstr "" + +#: src/gui/sysConf.cpp:1979 +msgid "Echo filter:" +msgstr "" + +#: src/gui/sysConf.cpp:1989 +msgid "Hex##SNESFHex" +msgstr "" + +#: src/gui/sysConf.cpp:1989 +msgid "Dec##SNESFHex" +msgstr "" + +#: src/gui/sysConf.cpp:2031 +#, c-format +msgid "sum: %d" +msgstr "" + +#: src/gui/sysConf.cpp:2086 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:63 +#: src/gui/insEdit.cpp:75 +msgid "Detune" +msgstr "" + +#: src/gui/sysConf.cpp:2092 +msgid "Capacitor values (nF):" +msgstr "" + +#: src/gui/sysConf.cpp:2102 +msgid "Initial part volume (channel 1-4):" +msgstr "" + +#: src/gui/sysConf.cpp:2112 +msgid "Initial part volume (channel 5-8):" +msgstr "" + +#: src/gui/sysConf.cpp:2122 +msgid "Envelope mode (channel 1-4):" +msgstr "" + +#: src/gui/sysConf.cpp:2124 +msgid "Capacitor (attack/decay)##EM00" +msgstr "" + +#: src/gui/sysConf.cpp:2128 +msgid "External (volume macro)##EM01" +msgstr "" + +#: src/gui/sysConf.cpp:2134 +msgid "Envelope mode (channel 5-8):" +msgstr "" + +#: src/gui/sysConf.cpp:2136 +msgid "Capacitor (attack/decay)##EM10" +msgstr "" + +#: src/gui/sysConf.cpp:2140 +msgid "External (volume macro)##EM11" +msgstr "" + +#: src/gui/sysConf.cpp:2146 +msgid "Global vibrato:" +msgstr "" + +#: src/gui/sysConf.cpp:2153 +msgid "Depth" +msgstr "" + +#: src/gui/sysConf.cpp:2219 src/gui/sysConf.cpp:2373 +msgid "Waveform storage mode:" +msgstr "" + +#: src/gui/sysConf.cpp:2221 +msgid "RAM" +msgstr "" + +#: src/gui/sysConf.cpp:2225 +msgid "ROM (up to 8 waves)" +msgstr "" + +#: src/gui/sysConf.cpp:2241 +msgid "Compatible noise frequencies" +msgstr "" + +#: src/gui/sysConf.cpp:2256 +msgid "Legacy slides and pitch (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:2314 +msgid "PAL (1.77MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:2344 +msgid "Banking style:" +msgstr "" + +#: src/gui/sysConf.cpp:2346 +msgid "Namco System 2 (2MB)" +msgstr "" + +#: src/gui/sysConf.cpp:2351 +msgid "Namco System 21 (4MB)" +msgstr "" + +#: src/gui/sysConf.cpp:2356 +msgid "Raw (16MB; no VGM export!)" +msgstr "" + +#: src/gui/sysConf.cpp:2375 +msgid "Dynamic (unconfirmed)" +msgstr "" + +#: src/gui/sysConf.cpp:2379 +msgid "Static (up to 5 waves)" +msgstr "" + +#: src/gui/sysConf.cpp:2414 +msgid "DS (4MB RAM)" +msgstr "" + +#: src/gui/sysConf.cpp:2418 +msgid "DSi (16MB RAM)" +msgstr "" + +#: src/gui/sysConf.cpp:2444 src/gui/settings.cpp:727 +msgid "nothing to configure" +msgstr "" + +#: src/gui/sysConf.cpp:2467 +msgid "Custom clock rate" +msgstr "" + +#: src/gui/volMeter.cpp:36 src/gui/settings.cpp:3969 src/gui/guiConst.cpp:596 +msgid "Volume Meter" +msgstr "" + +#: src/gui/userPresets.cpp:325 +#, fuzzy +msgid "User Systems" +msgstr "ระบบที่กำหนดเอง..." + +#: src/gui/userPresets.cpp:337 +msgid "Error! User category does not exist!" +msgstr "" + +#: src/gui/userPresets.cpp:346 src/gui/newSong.cpp:181 +msgid "Systems" +msgstr "" + +#: src/gui/userPresets.cpp:349 +msgid "New Preset" +msgstr "" + +#: src/gui/userPresets.cpp:361 +msgid "select a preset" +msgstr "" + +#: src/gui/userPresets.cpp:374 +msgid "Remove##UPresetRemove" +msgstr "" + +#: src/gui/userPresets.cpp:439 src/gui/settings.cpp:1135 +msgid "Configure" +msgstr "" + +#: src/gui/userPresets.cpp:470 +msgid "Advanced" +msgstr "" + +#: src/gui/userPresets.cpp:476 +msgid "" +"insert additional settings in `option=value` format.\n" +"available options:\n" +"- tickRate" +msgstr "" + +#: src/gui/userPresets.cpp:509 +msgid "Save and Close" +msgstr "" + +#: src/gui/userPresets.cpp:515 src/gui/settings.cpp:1238 +#: src/gui/settings.cpp:2161 src/gui/settings.cpp:2553 +#: src/gui/settings.cpp:3796 +msgid "Import" +msgstr "" + +#: src/gui/userPresets.cpp:519 +msgid "Import (replace)" +msgstr "" + +#: src/gui/effectList.cpp:14 src/gui/guiConst.cpp:606 +msgid "Effect List" +msgstr "" + +#: src/gui/effectList.cpp:18 +#, c-format +msgid "Chip at cursor: %s" +msgstr "" + +#: src/gui/effectList.cpp:21 src/gui/settings.cpp:6674 +msgid "Search" +msgstr "" + +#: src/gui/effectList.cpp:25 +msgid "Effect types to show:" +msgstr "" + +#: src/gui/effectList.cpp:47 +msgid "Description" +msgstr "" + +#: src/gui/subSongs.cpp:22 src/gui/subSongs.cpp:32 +#, c-format +msgid "%d. " +msgstr "" + +#: src/gui/subSongs.cpp:73 src/gui/subSongs.cpp:93 +msgid "too many subsongs!" +msgstr "" + +#: src/gui/subSongs.cpp:114 +msgid "this is the only subsong!" +msgstr "" + +#: src/gui/subSongs.cpp:116 +msgid "are you sure you want to remove this subsong?" +msgstr "" + +#: src/gui/spoiler.cpp:30 +#, fuzzy +msgid "Spoiler" +msgstr "ตัวสปอย" + +#: src/gui/spoiler.cpp:32 +msgid "SPOILER" +msgstr "" + +#: src/gui/settings.cpp:104 src/gui/settings.cpp:114 src/gui/settings.cpp:124 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:105 src/gui/settings.cpp:115 src/gui/settings.cpp:125 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:168 +msgid "ASAP (C++ port)" +msgstr "" + +#: src/gui/settings.cpp:191 +msgid "ESFMu (fast)" +msgstr "" + +#: src/gui/settings.cpp:205 +msgid "Lower" +msgstr "" + +#: src/gui/settings.cpp:207 +msgid "Medium" +msgstr "" + +#: src/gui/settings.cpp:209 +msgid "Ultra" +msgstr "" + +#: src/gui/settings.cpp:210 +msgid "Ultimate" +msgstr "" + +#: src/gui/settings.cpp:214 +msgid "evdev SND_TONE" +msgstr "" + +#: src/gui/settings.cpp:215 +msgid "KIOCSOUND on /dev/tty1" +msgstr "" + +#: src/gui/settings.cpp:216 +msgid "/dev/port" +msgstr "" + +#: src/gui/settings.cpp:217 +msgid "KIOCSOUND on standard output" +msgstr "" + +#: src/gui/settings.cpp:218 +msgid "outb()" +msgstr "" + +#: src/gui/settings.cpp:222 src/gui/settings.cpp:232 +msgid "Disabled/custom" +msgstr "" + +#: src/gui/settings.cpp:223 +msgid "Two octaves (0 is C-4, F is D#5)" +msgstr "" + +#: src/gui/settings.cpp:224 +msgid "Raw (note number is value)" +msgstr "" + +#: src/gui/settings.cpp:225 +msgid "Two octaves alternate (lower keys are 0-9, upper keys are A-F)" +msgstr "" + +#: src/gui/settings.cpp:226 src/gui/settings.cpp:233 +msgid "Use dual control change (one for each nibble)" +msgstr "" + +#: src/gui/settings.cpp:227 src/gui/settings.cpp:234 +msgid "Use 14-bit control change" +msgstr "" + +#: src/gui/settings.cpp:228 src/gui/settings.cpp:235 +msgid "Use single control change (imprecise)" +msgstr "" + +#: src/gui/settings.cpp:239 +msgid "--select--" +msgstr "" + +#: src/gui/settings.cpp:240 src/gui/settings.cpp:241 src/gui/settings.cpp:242 +#: src/gui/settings.cpp:243 src/gui/settings.cpp:244 src/gui/settings.cpp:245 +#: src/gui/settings.cpp:246 +msgid "???" +msgstr "" + +#: src/gui/settings.cpp:247 +msgid "Note Off" +msgstr "" + +#: src/gui/settings.cpp:248 +msgid "Note On" +msgstr "" + +#: src/gui/settings.cpp:249 +msgid "Aftertouch" +msgstr "" + +#: src/gui/settings.cpp:250 src/gui/insEdit.cpp:7187 src/gui/insEdit.cpp:7217 +#: src/gui/insEdit.cpp:7382 src/gui/insEdit.cpp:7403 src/gui/insEdit.cpp:7415 +#: src/gui/insEdit.cpp:7430 +msgid "Control" +msgstr "" + +#: src/gui/settings.cpp:251 src/gui/settings.cpp:573 src/gui/settings.cpp:3177 +msgid "Program" +msgstr "" + +#: src/gui/settings.cpp:252 +msgid "ChanPressure" +msgstr "" + +#: src/gui/settings.cpp:253 +msgid "Pitch Bend" +msgstr "" + +#: src/gui/settings.cpp:254 +msgid "SysEx" +msgstr "" + +#: src/gui/settings.cpp:258 src/gui/settings.cpp:1713 src/gui/settings.cpp:1723 +#: src/gui/settings.cpp:1743 src/gui/settings.cpp:1749 +#, c-format +msgid "Any" +msgstr "" + +#: src/gui/settings.cpp:262 src/gui/settings.cpp:3363 src/gui/settings.cpp:3928 +#: src/gui/settings.cpp:4121 +msgid "Instrument" +msgstr "" + +#: src/gui/settings.cpp:264 +msgid "Effect 1 type" +msgstr "" + +#: src/gui/settings.cpp:265 +msgid "Effect 1 value" +msgstr "" + +#: src/gui/settings.cpp:266 +msgid "Effect 2 type" +msgstr "" + +#: src/gui/settings.cpp:267 +msgid "Effect 2 value" +msgstr "" + +#: src/gui/settings.cpp:268 +msgid "Effect 3 type" +msgstr "" + +#: src/gui/settings.cpp:269 +msgid "Effect 3 value" +msgstr "" + +#: src/gui/settings.cpp:270 +msgid "Effect 4 type" +msgstr "" + +#: src/gui/settings.cpp:271 +msgid "Effect 4 value" +msgstr "" + +#: src/gui/settings.cpp:272 +msgid "Effect 5 type" +msgstr "" + +#: src/gui/settings.cpp:273 +msgid "Effect 5 value" +msgstr "" + +#: src/gui/settings.cpp:274 +msgid "Effect 6 type" +msgstr "" + +#: src/gui/settings.cpp:275 +msgid "Effect 6 value" +msgstr "" + +#: src/gui/settings.cpp:276 +msgid "Effect 7 type" +msgstr "" + +#: src/gui/settings.cpp:277 +msgid "Effect 7 value" +msgstr "" + +#: src/gui/settings.cpp:278 +msgid "Effect 8 type" +msgstr "" + +#: src/gui/settings.cpp:279 +msgid "Effect 8 value" +msgstr "" + +#: src/gui/settings.cpp:315 +msgid "Press key..." +msgstr "" + +#: src/gui/settings.cpp:564 +msgid "Do you want to save your settings?" +msgstr "" + +#: src/gui/settings.cpp:571 +msgid "General" +msgstr "" + +#: src/gui/settings.cpp:588 +msgid "Language" +msgstr "" + +#: src/gui/settings.cpp:606 +msgid "Render backend" +msgstr "" + +#: src/gui/settings.cpp:661 src/gui/settings.cpp:680 src/gui/settings.cpp:1312 +msgid "you may need to restart Furnace for this setting to take effect." +msgstr "" + +#: src/gui/settings.cpp:664 +msgid "Advanced render backend settings" +msgstr "" + +#: src/gui/settings.cpp:666 +msgid "Render driver" +msgstr "" + +#: src/gui/settings.cpp:666 src/gui/settings.cpp:667 src/gui/settings.cpp:1298 +#: src/gui/settings.cpp:1299 src/gui/piano.cpp:108 +msgid "Automatic" +msgstr "" + +#: src/gui/settings.cpp:683 +msgid "" +"beware: changing these settings may render Furnace unusable! do so at your " +"own risk.\n" +"start Furnace with -safemode if you mess something up." +msgstr "" + +#: src/gui/settings.cpp:684 +msgid "Red bits" +msgstr "" + +#: src/gui/settings.cpp:689 +msgid "Green bits" +msgstr "" + +#: src/gui/settings.cpp:694 +msgid "Blue bits" +msgstr "" + +#: src/gui/settings.cpp:699 +msgid "Alpha bits" +msgstr "" + +#: src/gui/settings.cpp:704 +msgid "Color depth" +msgstr "" + +#: src/gui/settings.cpp:709 +msgid "Stencil buffer size" +msgstr "" + +#: src/gui/settings.cpp:714 src/gui/settings.cpp:1385 +msgid "Buffer size" +msgstr "" + +#: src/gui/settings.cpp:720 +msgid "Double buffer" +msgstr "" + +#: src/gui/settings.cpp:725 +msgid "" +"the following values are common (in red, green, blue, alpha order):\n" +"- 24 bits: 8, 8, 8, 0\n" +"- 16 bits: 5, 6, 5, 0\n" +"- 32 bits (with alpha): 8, 8, 8, 8\n" +"- 30 bits (deep): 10, 10, 10, 0" +msgstr "" + +#: src/gui/settings.cpp:732 +#, c-format +msgid "" +"current backend: %s\n" +"%s\n" +"%s\n" +"%s" +msgstr "" + +#: src/gui/settings.cpp:735 +msgid "VSync" +msgstr "" + +#: src/gui/settings.cpp:743 +msgid "Frame rate limit" +msgstr "" + +#: src/gui/settings.cpp:743 +msgid "Unlimited" +msgstr "" + +#: src/gui/settings.cpp:749 +msgid "only applies when VSync is disabled." +msgstr "" + +#: src/gui/settings.cpp:753 +msgid "Display render time" +msgstr "" + +#: src/gui/settings.cpp:760 +msgid "Late render clear" +msgstr "" + +#: src/gui/settings.cpp:765 +msgid "" +"calls rend->clear() after rend->present(). might reduce UI latency by one " +"frame in some drivers." +msgstr "" + +#: src/gui/settings.cpp:770 +msgid "Power-saving mode" +msgstr "" + +#: src/gui/settings.cpp:775 +msgid "" +"saves power by lowering the frame rate to 2fps when idle.\n" +"may cause issues under Mesa drivers!" +msgstr "" + +#: src/gui/settings.cpp:780 +msgid "Disable threaded input (restart after changing!)" +msgstr "" + +#: src/gui/settings.cpp:785 +msgid "" +"threaded input processes key presses for note preview on a separate thread " +"(on supported platforms), which reduces latency.\n" +"however, crashes have been reported when threaded input is on. enable this " +"option if that is the case." +msgstr "" + +#: src/gui/settings.cpp:790 +msgid "Enable event delay" +msgstr "" + +#: src/gui/settings.cpp:796 +msgid "may cause issues with high-polling-rate mice when previewing notes." +msgstr "" + +#: src/gui/settings.cpp:800 +msgid "Per-channel oscilloscope threads" +msgstr "" + +#: src/gui/settings.cpp:808 +msgid "you're being silly, aren't you? that's enough." +msgstr "" + +#: src/gui/settings.cpp:812 +msgid "what are you doing? stop!" +msgstr "" + +#: src/gui/settings.cpp:816 +#, c-format +msgid "" +"it is a bad idea to set this number higher than your CPU core count (%d)!" +msgstr "" + +#: src/gui/settings.cpp:821 +msgid "Oscilloscope rendering engine:" +msgstr "" + +#: src/gui/settings.cpp:823 +msgid "ImGui line plot" +msgstr "" + +#: src/gui/settings.cpp:827 +msgid "render using Dear ImGui's built-in line drawing functions." +msgstr "" + +#: src/gui/settings.cpp:829 +msgid "GLSL (if available)" +msgstr "" + +#: src/gui/settings.cpp:834 +msgid "" +"render using shaders that run on the graphics card.\n" +"only available in OpenGL ES 2.0 render backend." +msgstr "" + +#: src/gui/settings.cpp:836 +msgid "" +"render using shaders that run on the graphics card.\n" +"only available in OpenGL 3.0 render backend." +msgstr "" + +#: src/gui/settings.cpp:843 +msgid "Vibration" +msgstr "" + +#: src/gui/settings.cpp:845 +msgid "Strength" +msgstr "" + +#: src/gui/settings.cpp:851 src/gui/insEdit.cpp:2284 src/gui/insEdit.cpp:2382 +#: src/gui/insEdit.cpp:5582 src/gui/insEdit.cpp:6241 +msgid "Length" +msgstr "" + +#: src/gui/settings.cpp:859 src/gui/gui.cpp:4191 +msgid "File" +msgstr "ไฟล์" + +#: src/gui/settings.cpp:862 +msgid "Use system file picker" +msgstr "" + +#: src/gui/settings.cpp:867 +msgid "Number of recent files" +msgstr "" + +#: src/gui/settings.cpp:874 +msgid "Compress when saving" +msgstr "" + +#: src/gui/settings.cpp:879 +msgid "use zlib to compress saved songs." +msgstr "" + +#: src/gui/settings.cpp:883 +msgid "Save unused patterns" +msgstr "" + +#: src/gui/settings.cpp:889 +msgid "Use new pattern format when saving" +msgstr "" + +#: src/gui/settings.cpp:894 +msgid "" +"use a packed format which saves space when saving songs.\n" +"disable if you need compatibility with older Furnace and/or tools\n" +"which do not support this format." +msgstr "" + +#: src/gui/settings.cpp:898 +msgid "Don't apply compatibility flags when loading .dmf" +msgstr "" + +#: src/gui/settings.cpp:903 +msgid "do not report any issues arising from the use of this option!" +msgstr "" + +#: src/gui/settings.cpp:906 +msgid "Play after opening song:" +msgstr "" + +#: src/gui/settings.cpp:908 +msgid "No##pol0" +msgstr "" + +#: src/gui/settings.cpp:912 +msgid "Only if already playing##pol1" +msgstr "" + +#: src/gui/settings.cpp:916 +msgid "Yes##pol0" +msgstr "" + +#: src/gui/settings.cpp:922 +msgid "Audio export loop/fade out time:" +msgstr "" + +#: src/gui/settings.cpp:924 +msgid "Set to these values on start-up:##fot0" +msgstr "" + +#: src/gui/settings.cpp:942 +msgid "Remember last values##fot1" +msgstr "" + +#: src/gui/settings.cpp:949 +msgid "Store instrument name in .fui" +msgstr "" + +#: src/gui/settings.cpp:954 +msgid "" +"when enabled, saving an instrument will store its name.\n" +"this may increase file size." +msgstr "" + +#: src/gui/settings.cpp:958 +msgid "Load instrument name from .fui" +msgstr "" + +#: src/gui/settings.cpp:963 +msgid "" +"when enabled, loading an instrument will use the stored name (if present).\n" +"otherwise, it will use the file name." +msgstr "" + +#: src/gui/settings.cpp:967 +msgid "Auto-fill file name when saving" +msgstr "" + +#: src/gui/settings.cpp:972 +msgid "" +"fill the file name field with an appropriate file name when saving or " +"exporting." +msgstr "" + +#: src/gui/settings.cpp:976 src/gui/gui.cpp:5563 src/gui/gui.cpp:5613 +msgid "New Song" +msgstr "" + +#: src/gui/settings.cpp:978 +msgid "Initial system:" +msgstr "" + +#: src/gui/settings.cpp:980 +msgid "Current system" +msgstr "" + +#: src/gui/settings.cpp:993 src/gui/waveEdit.cpp:1149 src/gui/gui.cpp:3046 +msgid "Randomize" +msgstr "" + +#: src/gui/settings.cpp:1043 +msgid "Reset to defaults" +msgstr "" + +#: src/gui/settings.cpp:1178 +msgid "When creating new song:" +msgstr "" + +#: src/gui/settings.cpp:1180 +msgid "Display system preset selector##NSB0" +msgstr "" + +#: src/gui/settings.cpp:1184 +msgid "Start with initial system##NSB1" +msgstr "" + +#: src/gui/settings.cpp:1188 +msgid "Default author name" +msgstr "" + +#: src/gui/settings.cpp:1192 +msgid "Start-up" +msgstr "" + +#: src/gui/settings.cpp:1193 +msgid "Play intro on start-up:" +msgstr "" + +#: src/gui/settings.cpp:1195 +msgid "No##pis0" +msgstr "" + +#: src/gui/settings.cpp:1199 +msgid "Short##pis1" +msgstr "" + +#: src/gui/settings.cpp:1203 +msgid "Full (short when loading song)##pis2" +msgstr "" + +#: src/gui/settings.cpp:1207 +msgid "Full (always)##pis3" +msgstr "" + +#: src/gui/settings.cpp:1214 +msgid "Disable fade-in during start-up" +msgstr "" + +#: src/gui/settings.cpp:1220 +msgid "About screen party time" +msgstr "" + +#: src/gui/settings.cpp:1225 +msgid "Warning: may cause epileptic seizures." +msgstr "" + +#: src/gui/settings.cpp:1229 +msgid "Behavior" +msgstr "" + +#: src/gui/settings.cpp:1231 +msgid "New instruments are blank" +msgstr "" + +#: src/gui/settings.cpp:1237 src/gui/settings.cpp:4255 +msgid "Configuration" +msgstr "" + +#: src/gui/settings.cpp:1246 +msgid "Factory Reset" +msgstr "" + +#: src/gui/settings.cpp:1247 +msgid "" +"Are you sure you want to reset all Furnace settings?\n" +"You must restart Furnace after doing so." +msgstr "" + +#: src/gui/settings.cpp:1255 +msgid "Output" +msgstr "" + +#: src/gui/settings.cpp:1263 +msgid "Backend" +msgstr "" + +#: src/gui/settings.cpp:1296 +msgid "Driver" +msgstr "" + +#: src/gui/settings.cpp:1319 +msgid "Device" +msgstr "" + +#: src/gui/settings.cpp:1323 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:1324 +msgid "ALERT - TRESPASSER DETECTED" +msgstr "" + +#: src/gui/settings.cpp:1326 +msgid "you have been arrested for trying to engage with a disabled combo box." +msgstr "" + +#: src/gui/settings.cpp:1333 src/gui/settings.cpp:1335 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:1371 src/gui/insEdit.cpp:7186 +msgid "Outputs" +msgstr "" + +#: src/gui/settings.cpp:1379 +msgid "" +"common values:\n" +"- 1 for mono\n" +"- 2 for stereo\n" +"- 4 for quadraphonic\n" +"- 6 for 5.1 surround\n" +"- 8 for 7.1 surround" +msgstr "" + +#: src/gui/settings.cpp:1387 +#, c-format +msgid "%d (latency: ~%.1fms)" +msgstr "" + +#: src/gui/settings.cpp:1402 +msgid "Multi-threaded (EXPERIMENTAL)" +msgstr "" + +#: src/gui/settings.cpp:1411 +msgid "" +"runs chip emulation on separate threads.\n" +"may increase performance when using heavy emulation cores.\n" +"\n" +"warnings:\n" +"- experimental!\n" +"- only useful on multi-chip songs." +msgstr "" + +#: src/gui/settings.cpp:1416 +msgid "Number of threads" +msgstr "" + +#: src/gui/settings.cpp:1423 +msgid "that's the limit!" +msgstr "" + +#: src/gui/settings.cpp:1427 +#, c-format +msgid "" +"it is a VERY bad idea to set this number higher than your CPU core count " +"(%d)!" +msgstr "" + +#: src/gui/settings.cpp:1435 +msgid "Low-latency mode" +msgstr "" + +#: src/gui/settings.cpp:1440 +msgid "" +"reduces latency by running the engine faster than the tick rate.\n" +"useful for live playback/jam mode.\n" +"\n" +"warning: only enable if your buffer size is small (10ms or less)." +msgstr "" + +#: src/gui/settings.cpp:1444 +msgid "Force mono audio" +msgstr "" + +#: src/gui/settings.cpp:1452 +msgid "Exclusive mode" +msgstr "" + +#: src/gui/settings.cpp:1463 +#, c-format +msgid "want: %d samples @ %.0fHz (%d channel)" +msgid_plural "want: %d samples @ %.0fHz (%d channels)" +msgstr[0] "" +msgstr[1] "" + +#: src/gui/settings.cpp:1464 +#, c-format +msgid "got: %d samples @ %.0fHz (%d channel)" +msgid_plural "got: %d samples @ %.0fHz (%d channels)" +msgstr[0] "" +msgstr[1] "" + +#: src/gui/settings.cpp:1471 +msgid "Mixing" +msgstr "" + +#: src/gui/settings.cpp:1473 src/gui/settings.cpp:2082 +msgid "Quality" +msgstr "" + +#: src/gui/settings.cpp:1478 +msgid "Software clipping" +msgstr "" + +#: src/gui/settings.cpp:1484 +msgid "DC offset correction" +msgstr "" + +#: src/gui/settings.cpp:1502 src/gui/guiConst.cpp:740 +msgid "Sample preview" +msgstr "" + +#: src/gui/settings.cpp:1515 +msgid "MIDI" +msgstr "" + +#: src/gui/settings.cpp:1517 src/gui/settings.cpp:1519 +msgid "MIDI input" +msgstr "" + +#: src/gui/settings.cpp:1521 src/gui/settings.cpp:1524 +#: src/gui/settings.cpp:1815 src/gui/settings.cpp:1817 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:1540 +msgid "Re-scan MIDI devices" +msgstr "" + +#: src/gui/settings.cpp:1551 src/gui/settings.cpp:2258 +msgid "Note input" +msgstr "" + +#: src/gui/settings.cpp:1552 +msgid "Velocity input" +msgstr "" + +#: src/gui/settings.cpp:1556 +msgid "Map MIDI channels to direct channels" +msgstr "" + +#: src/gui/settings.cpp:1562 +msgid "Program change pass-through" +msgstr "" + +#: src/gui/settings.cpp:1567 +msgid "Map Yamaha FM voice data to instruments" +msgstr "" + +#: src/gui/settings.cpp:1569 +msgid "Program change is instrument selection" +msgstr "" + +#: src/gui/settings.cpp:1573 +msgid "Value input style" +msgstr "" + +#: src/gui/settings.cpp:1576 src/gui/settings.cpp:1601 +msgid "Control##valueCCS" +msgstr "" + +#: src/gui/settings.cpp:1582 src/gui/settings.cpp:1607 +msgid "CC of upper nibble##valueCC1" +msgstr "" + +#: src/gui/settings.cpp:1582 src/gui/settings.cpp:1607 +msgid "MSB CC##valueCC1" +msgstr "" + +#: src/gui/settings.cpp:1587 src/gui/settings.cpp:1612 +msgid "CC of lower nibble##valueCC2" +msgstr "" + +#: src/gui/settings.cpp:1587 src/gui/settings.cpp:1612 +msgid "LSB CC##valueCC2" +msgstr "" + +#: src/gui/settings.cpp:1594 +msgid "Per-column control change" +msgstr "" + +#: src/gui/settings.cpp:1624 src/gui/settings.cpp:1634 +msgid "Volume curve" +msgstr "" + +#: src/gui/settings.cpp:1637 +msgid "Actions:" +msgstr "" + +#: src/gui/settings.cpp:1651 +msgid "" +"(learning! press a button or move a slider/knob/something on your device.)" +msgstr "" + +#: src/gui/settings.cpp:1665 src/gui/settings.cpp:2277 +#: src/gui/settings.cpp:6687 src/gui/sampleEdit.cpp:501 +#: src/gui/insEdit.cpp:5321 +msgid "Type" +msgstr "" + +#: src/gui/settings.cpp:1669 +msgid "Note/Control" +msgstr "" + +#: src/gui/settings.cpp:1671 +msgid "Velocity/Value" +msgstr "" + +#: src/gui/settings.cpp:1673 +msgid "Action" +msgstr "" + +#: src/gui/settings.cpp:1765 src/gui/settings.cpp:1766 +msgid "--none--" +msgstr "" + +#: src/gui/settings.cpp:1787 +msgid "waiting...##BLearn" +msgstr "" + +#: src/gui/settings.cpp:1787 +msgid "Learn##BLearn" +msgstr "" + +#: src/gui/settings.cpp:1811 src/gui/settings.cpp:1813 +msgid "MIDI output" +msgstr "" + +#: src/gui/settings.cpp:1830 +msgid "Output mode:" +msgstr "" + +#: src/gui/settings.cpp:1832 +msgid "Off (use for TX81Z)" +msgstr "" + +#: src/gui/settings.cpp:1836 +msgid "Melodic" +msgstr "" + +#: src/gui/settings.cpp:1847 +msgid "Send Program Change" +msgstr "" + +#: src/gui/settings.cpp:1853 +msgid "Send MIDI clock" +msgstr "" + +#: src/gui/settings.cpp:1859 +msgid "Send MIDI timecode" +msgstr "" + +#: src/gui/settings.cpp:1865 +msgid "Timecode frame rate:" +msgstr "" + +#: src/gui/settings.cpp:1867 +msgid "Closest to Tick Rate" +msgstr "" + +#: src/gui/settings.cpp:1871 +msgid "Film (24fps)" +msgstr "" + +#: src/gui/settings.cpp:1875 +msgid "PAL (25fps)" +msgstr "" + +#: src/gui/settings.cpp:1879 +msgid "NTSC drop (29.97fps)" +msgstr "" + +#: src/gui/settings.cpp:1883 +msgid "NTSC non-drop (30fps)" +msgstr "" + +#: src/gui/settings.cpp:1892 +msgid "Emulation" +msgstr "" + +#: src/gui/settings.cpp:1894 +msgid "Cores" +msgstr "" + +#: src/gui/settings.cpp:1903 +msgid "Playback Core(s)" +msgstr "" + +#: src/gui/settings.cpp:1905 src/gui/settings.cpp:2093 +msgid "used for playback" +msgstr "" + +#: src/gui/settings.cpp:1908 +msgid "Render Core(s)" +msgstr "" + +#: src/gui/settings.cpp:1910 src/gui/settings.cpp:2098 +msgid "used in audio export" +msgstr "" + +#: src/gui/settings.cpp:2091 +msgid "Playback" +msgstr "" + +#: src/gui/settings.cpp:2096 +msgid "Render" +msgstr "" + +#: src/gui/settings.cpp:2120 +msgid "PC Speaker strategy" +msgstr "" + +#: src/gui/settings.cpp:2158 src/gui/settings.cpp:2160 +msgid "Keyboard" +msgstr "" + +#: src/gui/settings.cpp:2169 src/gui/settings.cpp:3804 +msgid "Reset defaults" +msgstr "" + +#: src/gui/settings.cpp:2170 +msgid "Are you sure you want to reset the keyboard settings?" +msgstr "" + +#: src/gui/settings.cpp:2172 +msgid "Global hotkeys" +msgstr "" + +#: src/gui/settings.cpp:2209 +msgid "Window activation" +msgstr "" + +#: src/gui/settings.cpp:2275 +msgid "Key" +msgstr "" + +#: src/gui/settings.cpp:2279 src/gui/findReplace.cpp:725 +#: src/gui/findReplace.cpp:1003 +msgid "Value" +msgstr "" + +#: src/gui/settings.cpp:2289 +#, c-format +msgid "Macro release##SNType_%d" +msgstr "" + +#: src/gui/settings.cpp:2294 +#, c-format +msgid "Note release##SNType_%d" +msgstr "" + +#: src/gui/settings.cpp:2299 +#, c-format +msgid "Note off##SNType_%d" +msgstr "" + +#: src/gui/settings.cpp:2304 +#, c-format +msgid "Note##SNType_%d" +msgstr "" + +#: src/gui/settings.cpp:2328 +msgid "Add..." +msgstr "" + +#: src/gui/settings.cpp:2418 +msgid "Instrument list" +msgstr "" + +#: src/gui/settings.cpp:2438 +msgid "Wavetable list" +msgstr "" + +#: src/gui/settings.cpp:2459 +msgid "Sample list" +msgstr "" + +#: src/gui/settings.cpp:2509 +msgid "Sample editor" +msgstr "" + +#: src/gui/settings.cpp:2547 src/gui/settings.cpp:3814 +#: src/gui/settings.cpp:3844 +msgid "Interface" +msgstr "" + +#: src/gui/settings.cpp:2549 +msgid "Layout" +msgstr "" + +#: src/gui/settings.cpp:2551 +msgid "Workspace layout:" +msgstr "" + +#: src/gui/settings.cpp:2561 src/gui/gui.cpp:2920 +msgid "Reset" +msgstr "" + +#: src/gui/settings.cpp:2562 src/gui/gui.cpp:4455 +msgid "Are you sure you want to reset the workspace layout?" +msgstr "คุณแน่ใจหรือไม่ที่จะตั้งเค้าโครงใหม่ทั้งหมด?" + +#: src/gui/settings.cpp:2566 +msgid "Allow docking editors" +msgstr "" + +#: src/gui/settings.cpp:2573 +msgid "Remember window position" +msgstr "" + +#: src/gui/settings.cpp:2578 +msgid "remembers the window's last position on start-up." +msgstr "" + +#: src/gui/settings.cpp:2583 +msgid "Only allow window movement when clicking on title bar" +msgstr "" + +#: src/gui/settings.cpp:2590 +msgid "Center pop-up windows" +msgstr "" + +#: src/gui/settings.cpp:2595 +msgid "Play/edit controls layout:" +msgstr "" + +#: src/gui/settings.cpp:2597 +msgid "Classic##ecl0" +msgstr "" + +#: src/gui/settings.cpp:2601 +msgid "Compact##ecl1" +msgstr "" + +#: src/gui/settings.cpp:2605 +msgid "Compact (vertical)##ecl2" +msgstr "" + +#: src/gui/settings.cpp:2609 +msgid "Split##ecl3" +msgstr "" + +#: src/gui/settings.cpp:2615 +msgid "Position of buttons in Orders:" +msgstr "" + +#: src/gui/settings.cpp:2617 +msgid "Top##obp0" +msgstr "" + +#: src/gui/settings.cpp:2621 +msgid "Left##obp1" +msgstr "" + +#: src/gui/settings.cpp:2625 +msgid "Right##obp2" +msgstr "" + +#: src/gui/settings.cpp:2632 +msgid "Mouse" +msgstr "" + +#: src/gui/settings.cpp:2634 +msgid "Double-click time (seconds)" +msgstr "" + +#: src/gui/settings.cpp:2643 +msgid "Don't raise pattern editor on click" +msgstr "" + +#: src/gui/settings.cpp:2649 +msgid "Focus pattern editor when selecting instrument" +msgstr "" + +#: src/gui/settings.cpp:2654 +msgid "Note preview behavior:" +msgstr "" + +#: src/gui/settings.cpp:2656 +msgid "Never##npb0" +msgstr "" + +#: src/gui/settings.cpp:2660 +msgid "When cursor is in Note column##npb1" +msgstr "" + +#: src/gui/settings.cpp:2664 +msgid "When cursor is in Note column or not in edit mode##npb2" +msgstr "" + +#: src/gui/settings.cpp:2668 +msgid "Always##npb3" +msgstr "" + +#: src/gui/settings.cpp:2674 +msgid "Allow dragging selection:" +msgstr "" + +#: src/gui/settings.cpp:2676 +msgid "No##dms0" +msgstr "" + +#: src/gui/settings.cpp:2680 +msgid "Yes##dms1" +msgstr "" + +#: src/gui/settings.cpp:2684 +msgid "Yes (while holding Ctrl only)##dms2" +msgstr "" + +#: src/gui/settings.cpp:2690 +msgid "Toggle channel solo on:" +msgstr "" + +#: src/gui/settings.cpp:2692 +msgid "Right-click or double-click##soloA" +msgstr "" + +#: src/gui/settings.cpp:2696 +msgid "Right-click##soloR" +msgstr "" + +#: src/gui/settings.cpp:2700 +msgid "Double-click##soloD" +msgstr "" + +#: src/gui/settings.cpp:2707 +msgid "Double click selects entire column" +msgstr "" + +#: src/gui/settings.cpp:2713 +msgid "Cursor behavior" +msgstr "" + +#: src/gui/settings.cpp:2715 +msgid "Insert pushes entire channel row" +msgstr "" + +#: src/gui/settings.cpp:2721 +msgid "Pull delete affects entire channel row" +msgstr "" + +#: src/gui/settings.cpp:2727 +msgid "Push value when overwriting instead of clearing it" +msgstr "" + +#: src/gui/settings.cpp:2733 +msgid "Keyboard note/value input repeat (hold key to input continuously)" +msgstr "" + +#: src/gui/settings.cpp:2738 +msgid "Effect input behavior:" +msgstr "" + +#: src/gui/settings.cpp:2740 +msgid "Move down##eicb0" +msgstr "" + +#: src/gui/settings.cpp:2744 +msgid "Move to effect value (otherwise move down)##eicb1" +msgstr "" + +#: src/gui/settings.cpp:2748 +msgid "Move to effect value/next effect and wrap around##eicb2" +msgstr "" + +#: src/gui/settings.cpp:2755 +msgid "Delete effect value when deleting effect" +msgstr "" + +#: src/gui/settings.cpp:2761 +msgid "Change current instrument when changing instrument column (absorb)" +msgstr "" + +#: src/gui/settings.cpp:2767 +msgid "Remove instrument value when inserting note off/release" +msgstr "" + +#: src/gui/settings.cpp:2773 +msgid "Remove volume value when inserting note off/release" +msgstr "" + +#: src/gui/settings.cpp:2779 +msgid "Cursor movement" +msgstr "" + +#: src/gui/settings.cpp:2781 +msgid "Wrap horizontally:" +msgstr "" + +#: src/gui/settings.cpp:2783 +msgid "No##wrapH0" +msgstr "" + +#: src/gui/settings.cpp:2787 +msgid "Yes##wrapH1" +msgstr "" + +#: src/gui/settings.cpp:2791 +msgid "Yes, and move to next/prev row##wrapH2" +msgstr "" + +#: src/gui/settings.cpp:2797 +msgid "Wrap vertically:" +msgstr "" + +#: src/gui/settings.cpp:2799 +msgid "No##wrapV0" +msgstr "" + +#: src/gui/settings.cpp:2803 +msgid "Yes##wrapV1" +msgstr "" + +#: src/gui/settings.cpp:2807 +msgid "Yes, and move to next/prev pattern##wrapV2" +msgstr "" + +#: src/gui/settings.cpp:2811 +msgid "Yes, and move to next/prev pattern (wrap around)##wrapV2" +msgstr "" + +#: src/gui/settings.cpp:2817 +msgid "Cursor movement keys behavior:" +msgstr "" + +#: src/gui/settings.cpp:2819 +msgid "Move by one##cmk0" +msgstr "" + +#: src/gui/settings.cpp:2823 +msgid "Move by Edit Step##cmk1" +msgstr "" + +#: src/gui/settings.cpp:2830 +msgid "Move cursor by edit step on delete" +msgstr "" + +#: src/gui/settings.cpp:2836 +msgid "Move cursor by edit step on insert (push)" +msgstr "" + +#: src/gui/settings.cpp:2842 +msgid "Move cursor up on backspace-delete" +msgstr "" + +#: src/gui/settings.cpp:2848 +msgid "Move cursor to end of clipboard content when pasting" +msgstr "" + +#: src/gui/settings.cpp:2854 +msgid "Scrolling" +msgstr "" + +#: src/gui/settings.cpp:2856 +msgid "Change order when scrolling outside of pattern bounds:" +msgstr "" + +#: src/gui/settings.cpp:2858 +msgid "No##pscroll0" +msgstr "" + +#: src/gui/settings.cpp:2862 +msgid "Yes##pscroll1" +msgstr "" + +#: src/gui/settings.cpp:2866 +msgid "Yes, and wrap around song##pscroll2" +msgstr "" + +#: src/gui/settings.cpp:2873 +msgid "Cursor follows current order when moving it" +msgstr "" + +#: src/gui/settings.cpp:2878 +msgid "applies when playback is stopped." +msgstr "" + +#: src/gui/settings.cpp:2882 +msgid "Don't scroll when moving cursor" +msgstr "" + +#: src/gui/settings.cpp:2887 +msgid "Move cursor with scroll wheel:" +msgstr "" + +#: src/gui/settings.cpp:2889 +msgid "No##csw0" +msgstr "" + +#: src/gui/settings.cpp:2893 +msgid "Yes##csw1" +msgstr "" + +#: src/gui/settings.cpp:2897 +msgid "Inverted##csw2" +msgstr "" + +#: src/gui/settings.cpp:2904 +msgid "How many steps to move with each scroll wheel step?" +msgstr "" + +#: src/gui/settings.cpp:2905 +msgid "One##cws0" +msgstr "" + +#: src/gui/settings.cpp:2909 +msgid "Edit Step##cws1" +msgstr "" + +#: src/gui/settings.cpp:2916 src/gui/settings.cpp:3531 +msgid "Assets" +msgstr "" + +#: src/gui/settings.cpp:2919 +msgid "Display instrument type menu when adding instrument" +msgstr "" + +#: src/gui/settings.cpp:2925 +msgid "Select asset after opening one" +msgstr "" + +#: src/gui/settings.cpp:2932 +msgid "Appearance" +msgstr "" + +#: src/gui/settings.cpp:2934 +msgid "Scaling" +msgstr "" + +#: src/gui/settings.cpp:2936 +msgid "Automatic UI scaling factor" +msgstr "" + +#: src/gui/settings.cpp:2945 +msgid "UI scaling factor" +msgstr "" + +#: src/gui/settings.cpp:2952 +msgid "Icon size" +msgstr "" + +#: src/gui/settings.cpp:2967 +msgid "Font renderer" +msgstr "" + +#: src/gui/settings.cpp:2977 +msgid "Main font" +msgstr "" + +#: src/gui/settings.cpp:2988 +msgid "Size##MainFontSize" +msgstr "" + +#: src/gui/settings.cpp:2996 +msgid "Header font" +msgstr "" + +#: src/gui/settings.cpp:3007 +msgid "Size##HeadFontSize" +msgstr "" + +#: src/gui/settings.cpp:3015 +msgid "Pattern font" +msgstr "" + +#: src/gui/settings.cpp:3026 +msgid "Size##PatFontSize" +msgstr "" + +#: src/gui/settings.cpp:3036 +msgid "Anti-aliased fonts" +msgstr "" + +#: src/gui/settings.cpp:3042 +msgid "Support bitmap fonts" +msgstr "" + +#: src/gui/settings.cpp:3047 +msgid "Hinting:" +msgstr "" + +#: src/gui/settings.cpp:3049 +msgid "Off (soft)##fh0" +msgstr "" + +#: src/gui/settings.cpp:3053 +msgid "Slight##fh1" +msgstr "" + +#: src/gui/settings.cpp:3057 +msgid "Normal##fh2" +msgstr "" + +#: src/gui/settings.cpp:3061 +msgid "Full (hard)##fh3" +msgstr "" + +#: src/gui/settings.cpp:3067 +msgid "Auto-hinter:" +msgstr "" + +#: src/gui/settings.cpp:3069 +msgid "Disable##fah0" +msgstr "" + +#: src/gui/settings.cpp:3073 +msgid "Enable##fah1" +msgstr "" + +#: src/gui/settings.cpp:3077 +msgid "Force##fah2" +msgstr "" + +#: src/gui/settings.cpp:3084 +msgid "Oversample" +msgstr "" + +#: src/gui/settings.cpp:3087 +msgid "1×##fos1" +msgstr "" + +#: src/gui/settings.cpp:3092 +msgid "" +"saves video memory. reduces font rendering quality.\n" +"use for pixel/bitmap fonts." +msgstr "" + +#: src/gui/settings.cpp:3095 +msgid "2×##fos2" +msgstr "" + +#: src/gui/settings.cpp:3100 +msgid "default." +msgstr "" + +#: src/gui/settings.cpp:3103 +msgid "3×##fos3" +msgstr "" + +#: src/gui/settings.cpp:3108 +msgid "" +"slightly better font rendering quality.\n" +"uses more video memory." +msgstr "" + +#: src/gui/settings.cpp:3112 +msgid "Load fallback font" +msgstr "" + +#: src/gui/settings.cpp:3117 +msgid "disable to save video memory." +msgstr "" + +#: src/gui/settings.cpp:3121 +msgid "Display Japanese characters" +msgstr "" + +#: src/gui/settings.cpp:3127 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"このオプションは、十分なグラフィックメモリがある場合にのみ切り替えてくださ" +"い。\n" +"これは、Dear ImGuiにダイナミックフォントアトラスが実装されるまでの一時的な解" +"決策です。" +msgstr "" + +#: src/gui/settings.cpp:3135 +msgid "Display Chinese (Simplified) characters" +msgstr "" + +#: src/gui/settings.cpp:3141 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"请在确保你有足够的显存后再启动此设定\n" +"这是一个在ImGui实现动态字体加载之前的临时解决方案" +msgstr "" + +#: src/gui/settings.cpp:3149 +msgid "Display Chinese (Traditional) characters" +msgstr "" + +#: src/gui/settings.cpp:3155 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"請在確保你有足夠的顯存后再啟動此設定\n" +"這是一個在ImGui實現動態字體加載之前的臨時解決方案" +msgstr "" + +#: src/gui/settings.cpp:3163 +msgid "Display Korean characters" +msgstr "" + +#: src/gui/settings.cpp:3169 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"그래픽 메모리가 충분한 경우에만 이 옵션을 선택하십시오.\n" +"이 옵션은 Dear ImGui에 동적 글꼴 아틀라스가 구현될 때까지 임시 솔루션입니다." +msgstr "" + +#: src/gui/settings.cpp:3178 +msgid "Title bar:" +msgstr "" + +#: src/gui/settings.cpp:3180 +msgid "Furnace##tbar0" +msgstr "" + +#: src/gui/settings.cpp:3185 +msgid "Song Name - Furnace##tbar1" +msgstr "" + +#: src/gui/settings.cpp:3190 +msgid "file_name.fur - Furnace##tbar2" +msgstr "" + +#: src/gui/settings.cpp:3195 +msgid "/path/to/file.fur - Furnace##tbar3" +msgstr "" + +#: src/gui/settings.cpp:3203 +msgid "Display system name on title bar" +msgstr "" + +#: src/gui/settings.cpp:3210 +msgid "Display chip names instead of \"multi-system\" in title bar" +msgstr "" + +#: src/gui/settings.cpp:3216 +msgid "Status bar:" +msgstr "" + +#: src/gui/settings.cpp:3218 +msgid "Cursor details##sbar0" +msgstr "" + +#: src/gui/settings.cpp:3222 +msgid "File path##sbar1" +msgstr "" + +#: src/gui/settings.cpp:3226 +msgid "Cursor details or file path##sbar2" +msgstr "" + +#: src/gui/settings.cpp:3230 +msgid "Nothing##sbar3" +msgstr "" + +#: src/gui/settings.cpp:3237 +msgid "Display playback status when playing" +msgstr "" + +#: src/gui/settings.cpp:3242 +msgid "Export options layout:" +msgstr "" + +#: src/gui/settings.cpp:3244 +msgid "Sub-menus in File menu##eol0" +msgstr "" + +#: src/gui/settings.cpp:3248 +msgid "Modal window with tabs##eol1" +msgstr "" + +#: src/gui/settings.cpp:3252 +msgid "Modal windows with options in File menu##eol2" +msgstr "" + +#: src/gui/settings.cpp:3259 +msgid "Capitalize menu bar" +msgstr "" + +#: src/gui/settings.cpp:3265 +msgid "Display add/configure/change/remove chip menus in File menu" +msgstr "" + +#: src/gui/settings.cpp:3279 +msgid "Highlight channel at cursor in Orders" +msgstr "" + +#: src/gui/settings.cpp:3284 +msgid "Orders row number format:" +msgstr "" + +#: src/gui/settings.cpp:3286 +msgid "Decimal##orbD" +msgstr "" + +#: src/gui/settings.cpp:3290 +msgid "Hexadecimal##orbH" +msgstr "" + +#: src/gui/settings.cpp:3299 +msgid "Center pattern view" +msgstr "" + +#: src/gui/settings.cpp:3305 +msgid "Overflow pattern highlights" +msgstr "" + +#: src/gui/settings.cpp:3311 +msgid "Display previous/next pattern" +msgstr "" + +#: src/gui/settings.cpp:3316 +msgid "Pattern row number format:" +msgstr "" + +#: src/gui/settings.cpp:3318 +msgid "Decimal##prbD" +msgstr "" + +#: src/gui/settings.cpp:3322 +msgid "Hexadecimal##prbH" +msgstr "" + +#: src/gui/settings.cpp:3328 +msgid "Pattern view labels:" +msgstr "" + +#: src/gui/settings.cpp:3333 +msgid "Note off (3-char)" +msgstr "" + +#: src/gui/settings.cpp:3338 +msgid "Note release (3-char)" +msgstr "" + +#: src/gui/settings.cpp:3343 +msgid "Macro release (3-char)" +msgstr "" + +#: src/gui/settings.cpp:3348 +msgid "Empty field (3-char)" +msgstr "" + +#: src/gui/settings.cpp:3353 +msgid "Empty field (2-char)" +msgstr "" + +#: src/gui/settings.cpp:3355 +msgid "Pattern view spacing after:" +msgstr "" + +#: src/gui/settings.cpp:3357 src/gui/settings.cpp:4115 +#: src/gui/findReplace.cpp:601 src/gui/findReplace.cpp:864 +#: src/gui/sampleEdit.cpp:590 +msgid "Note" +msgstr "" + +#: src/gui/settings.cpp:3375 src/gui/findReplace.cpp:707 +#: src/gui/findReplace.cpp:974 +msgid "Effect" +msgstr "" + +#: src/gui/settings.cpp:3381 +msgid "Effect value" +msgstr "" + +#: src/gui/settings.cpp:3388 +msgid "Single-digit effects for 00-0F" +msgstr "" + +#: src/gui/settings.cpp:3394 +msgid "Use flats instead of sharps" +msgstr "" + +#: src/gui/settings.cpp:3400 +msgid "Use German notation" +msgstr "" + +#: src/gui/settings.cpp:3408 +msgid "Channel style:" +msgstr "" + +#: src/gui/settings.cpp:3410 +msgid "Classic##CHS0" +msgstr "" + +#: src/gui/settings.cpp:3414 +msgid "Line##CHS1" +msgstr "" + +#: src/gui/settings.cpp:3418 +msgid "Round##CHS2" +msgstr "" + +#: src/gui/settings.cpp:3422 +msgid "Split button##CHS3" +msgstr "" + +#: src/gui/settings.cpp:3426 +msgid "Square border##CH42" +msgstr "" + +#: src/gui/settings.cpp:3430 +msgid "Round border##CHS5" +msgstr "" + +#: src/gui/settings.cpp:3436 +msgid "Channel volume bar:" +msgstr "" + +#: src/gui/settings.cpp:3438 +msgid "None##CHV0" +msgstr "" + +#: src/gui/settings.cpp:3442 +msgid "Simple##CHV1" +msgstr "" + +#: src/gui/settings.cpp:3446 +msgid "Stereo##CHV2" +msgstr "" + +#: src/gui/settings.cpp:3450 +msgid "Real##CHV3" +msgstr "" + +#: src/gui/settings.cpp:3454 +msgid "Real (stereo)##CHV4" +msgstr "" + +#: src/gui/settings.cpp:3460 +msgid "Channel feedback style:" +msgstr "" + +#: src/gui/settings.cpp:3462 +msgid "Off##CHF0" +msgstr "" + +#: src/gui/settings.cpp:3466 +msgid "Note##CHF1" +msgstr "" + +#: src/gui/settings.cpp:3470 +msgid "Volume##CHF2" +msgstr "" + +#: src/gui/settings.cpp:3474 +msgid "Active##CHF3" +msgstr "" + +#: src/gui/settings.cpp:3480 +msgid "Channel font:" +msgstr "" + +#: src/gui/settings.cpp:3482 +msgid "Regular##CHFont0" +msgstr "" + +#: src/gui/settings.cpp:3486 +msgid "Monospace##CHFont1" +msgstr "" + +#: src/gui/settings.cpp:3493 +msgid "Center channel name" +msgstr "" + +#: src/gui/settings.cpp:3498 +msgid "Channel colors:" +msgstr "" + +#: src/gui/settings.cpp:3500 +msgid "Single##CHC0" +msgstr "" + +#: src/gui/settings.cpp:3504 +msgid "Channel type##CHC1" +msgstr "" + +#: src/gui/settings.cpp:3508 +msgid "Instrument type##CHC2" +msgstr "" + +#: src/gui/settings.cpp:3514 +msgid "Channel name colors:" +msgstr "" + +#: src/gui/settings.cpp:3516 +msgid "Single##CTC0" +msgstr "" + +#: src/gui/settings.cpp:3520 +msgid "Channel type##CTC1" +msgstr "" + +#: src/gui/settings.cpp:3524 +msgid "Instrument type##CTC2" +msgstr "" + +#: src/gui/settings.cpp:3533 +msgid "Unified instrument/wavetable/sample list" +msgstr "" + +#: src/gui/settings.cpp:3543 +msgid "Horizontal instrument list" +msgstr "" + +#: src/gui/settings.cpp:3549 +msgid "Instrument list icon style:" +msgstr "" + +#: src/gui/settings.cpp:3551 +msgid "None##iis0" +msgstr "" + +#: src/gui/settings.cpp:3555 +msgid "Graphical icons##iis1" +msgstr "" + +#: src/gui/settings.cpp:3559 +msgid "Letter icons##iis2" +msgstr "" + +#: src/gui/settings.cpp:3566 +msgid "Colorize instrument editor using instrument type" +msgstr "" + +#: src/gui/settings.cpp:3572 src/gui/settings.cpp:4014 +msgid "Macro Editor" +msgstr "" + +#: src/gui/settings.cpp:3573 +msgid "Macro editor layout:" +msgstr "" + +#: src/gui/settings.cpp:3575 +msgid "Unified##mel0" +msgstr "" + +#: src/gui/settings.cpp:3585 +msgid "Grid##mel2" +msgstr "" + +#: src/gui/settings.cpp:3589 +msgid "Single (with list)##mel3" +msgstr "" + +#: src/gui/settings.cpp:3602 +msgid "Use classic macro editor vertical slider" +msgstr "" + +#: src/gui/settings.cpp:3608 +msgid "Wave Editor" +msgstr "" + +#: src/gui/settings.cpp:3610 +msgid "Use compact wave editor" +msgstr "" + +#: src/gui/settings.cpp:3616 src/gui/settings.cpp:3991 +msgid "FM Editor" +msgstr "" + +#: src/gui/settings.cpp:3617 +msgid "FM parameter names:" +msgstr "" + +#: src/gui/settings.cpp:3619 +msgid "Friendly##fmn0" +msgstr "" + +#: src/gui/settings.cpp:3623 +msgid "Technical##fmn1" +msgstr "" + +#: src/gui/settings.cpp:3627 +msgid "Technical (alternate)##fmn2" +msgstr "" + +#: src/gui/settings.cpp:3634 +msgid "Use standard OPL waveform names" +msgstr "" + +#: src/gui/settings.cpp:3639 +msgid "FM parameter editor layout:" +msgstr "" + +#: src/gui/settings.cpp:3641 +msgid "Modern##fml0" +msgstr "" + +#: src/gui/settings.cpp:3645 +msgid "Compact (2x2, classic)##fml1" +msgstr "" + +#: src/gui/settings.cpp:3649 +msgid "Compact (1x4)##fml2" +msgstr "" + +#: src/gui/settings.cpp:3653 +msgid "Compact (4x1)##fml3" +msgstr "" + +#: src/gui/settings.cpp:3657 +msgid "Alternate (2x2)##fml4" +msgstr "" + +#: src/gui/settings.cpp:3661 +msgid "Alternate (1x4)##fml5" +msgstr "" + +#: src/gui/settings.cpp:3665 +msgid "Alternate (4x1)##fml5" +msgstr "" + +#: src/gui/settings.cpp:3671 +msgid "Position of Sustain in FM editor:" +msgstr "" + +#: src/gui/settings.cpp:3673 +msgid "Between Decay and Sustain Rate##susp0" +msgstr "" + +#: src/gui/settings.cpp:3677 +msgid "After Release Rate##susp1" +msgstr "" + +#: src/gui/settings.cpp:3684 +msgid "Use separate colors for carriers/modulators in FM editor" +msgstr "" + +#: src/gui/settings.cpp:3690 +msgid "Unsigned FM detune values" +msgstr "" + +#: src/gui/settings.cpp:3697 +msgid "Chip memory usage unit:" +msgstr "" + +#: src/gui/settings.cpp:3699 +msgid "Bytes##MUU0" +msgstr "" + +#: src/gui/settings.cpp:3703 +msgid "Kilobytes##MUU1" +msgstr "" + +#: src/gui/settings.cpp:3712 +msgid "Rounded corners" +msgstr "" + +#: src/gui/settings.cpp:3718 src/gui/settings.cpp:3896 +#: src/gui/settings.cpp:3938 +msgid "Border" +msgstr "" + +#: src/gui/settings.cpp:3730 +msgid "Anti-aliased" +msgstr "" + +#: src/gui/settings.cpp:3736 +msgid "Fill entire window" +msgstr "" + +#: src/gui/settings.cpp:3742 +msgid "Waveform goes out of bounds" +msgstr "" + +#: src/gui/settings.cpp:3754 +msgid "Windows" +msgstr "" + +#: src/gui/settings.cpp:3756 +msgid "Rounded window corners" +msgstr "" + +#: src/gui/settings.cpp:3762 +msgid "Rounded buttons" +msgstr "" + +#: src/gui/settings.cpp:3768 +msgid "Rounded menu corners" +msgstr "" + +#: src/gui/settings.cpp:3774 +msgid "Rounded tabs" +msgstr "" + +#: src/gui/settings.cpp:3780 +msgid "Rounded scrollbars" +msgstr "" + +#: src/gui/settings.cpp:3786 +msgid "Borders around widgets" +msgstr "" + +#: src/gui/settings.cpp:3795 +msgid "Color scheme" +msgstr "" + +#: src/gui/settings.cpp:3805 +msgid "Are you sure you want to reset the color scheme?" +msgstr "" + +#: src/gui/settings.cpp:3808 +msgid "Guru mode" +msgstr "" + +#: src/gui/settings.cpp:3815 src/gui/settings.cpp:3845 +msgid "Frame shading" +msgstr "" + +#: src/gui/settings.cpp:3821 +msgid "Color scheme type:" +msgstr "" + +#: src/gui/settings.cpp:3823 +msgid "Dark##gcb0" +msgstr "" + +#: src/gui/settings.cpp:3828 +msgid "Light##gcb1" +msgstr "" + +#: src/gui/settings.cpp:3835 +msgid "Accent colors:" +msgstr "" + +#: src/gui/settings.cpp:3837 +msgid "Primary" +msgstr "" + +#: src/gui/settings.cpp:3838 +msgid "Secondary" +msgstr "" + +#: src/gui/settings.cpp:3852 +msgid "Button" +msgstr "" + +#: src/gui/settings.cpp:3853 +msgid "Button (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3854 +msgid "Button (active)" +msgstr "" + +#: src/gui/settings.cpp:3855 +msgid "Tab" +msgstr "" + +#: src/gui/settings.cpp:3856 +msgid "Tab (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3857 +msgid "Tab (active)" +msgstr "" + +#: src/gui/settings.cpp:3858 +msgid "Tab (unfocused)" +msgstr "" + +#: src/gui/settings.cpp:3859 +msgid "Tab (unfocused and active)" +msgstr "" + +#: src/gui/settings.cpp:3860 +msgid "ImGui header" +msgstr "" + +#: src/gui/settings.cpp:3861 +msgid "ImGui header (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3862 +msgid "ImGui header (active)" +msgstr "" + +#: src/gui/settings.cpp:3863 +msgid "Resize grip" +msgstr "" + +#: src/gui/settings.cpp:3864 +msgid "Resize grip (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3865 +msgid "Resize grip (active)" +msgstr "" + +#: src/gui/settings.cpp:3866 +msgid "Widget background" +msgstr "" + +#: src/gui/settings.cpp:3867 +msgid "Widget background (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3868 +msgid "Widget background (active)" +msgstr "" + +#: src/gui/settings.cpp:3869 +msgid "Slider grab" +msgstr "" + +#: src/gui/settings.cpp:3870 +msgid "Slider grab (active)" +msgstr "" + +#: src/gui/settings.cpp:3871 +msgid "Title background (active)" +msgstr "" + +#: src/gui/settings.cpp:3872 +msgid "Checkbox/radio button mark" +msgstr "" + +#: src/gui/settings.cpp:3873 +msgid "Text selection" +msgstr "" + +#: src/gui/settings.cpp:3874 +msgid "Line plot" +msgstr "" + +#: src/gui/settings.cpp:3875 +msgid "Line plot (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3876 +msgid "Histogram plot" +msgstr "" + +#: src/gui/settings.cpp:3877 +msgid "Histogram plot (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3878 +msgid "Table row (even)" +msgstr "" + +#: src/gui/settings.cpp:3879 +msgid "Table row (odd)" +msgstr "" + +#: src/gui/settings.cpp:3884 +msgid "Interface (other)" +msgstr "" + +#: src/gui/settings.cpp:3886 +msgid "Window background" +msgstr "" + +#: src/gui/settings.cpp:3887 +msgid "Sub-window background" +msgstr "" + +#: src/gui/settings.cpp:3888 +msgid "Pop-up background" +msgstr "" + +#: src/gui/settings.cpp:3889 +msgid "Modal backdrop" +msgstr "" + +#: src/gui/settings.cpp:3890 +msgid "Header" +msgstr "" + +#: src/gui/settings.cpp:3892 +msgid "Text (disabled)" +msgstr "" + +#: src/gui/settings.cpp:3893 +msgid "Title bar (inactive)" +msgstr "" + +#: src/gui/settings.cpp:3894 +msgid "Title bar (collapsed)" +msgstr "" + +#: src/gui/settings.cpp:3895 +msgid "Menu bar" +msgstr "" + +#: src/gui/settings.cpp:3897 +msgid "Border shadow" +msgstr "" + +#: src/gui/settings.cpp:3898 +msgid "Scroll bar" +msgstr "" + +#: src/gui/settings.cpp:3899 +msgid "Scroll bar (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3900 +msgid "Scroll bar (clicked)" +msgstr "" + +#: src/gui/settings.cpp:3901 +msgid "Scroll bar background" +msgstr "" + +#: src/gui/settings.cpp:3902 +msgid "Separator" +msgstr "" + +#: src/gui/settings.cpp:3903 +msgid "Separator (hover)" +msgstr "" + +#: src/gui/settings.cpp:3904 +msgid "Separator (active)" +msgstr "" + +#: src/gui/settings.cpp:3905 +msgid "Docking preview" +msgstr "" + +#: src/gui/settings.cpp:3906 +msgid "Docking empty" +msgstr "" + +#: src/gui/settings.cpp:3907 +msgid "Table header" +msgstr "" + +#: src/gui/settings.cpp:3908 +msgid "Table border (hard)" +msgstr "" + +#: src/gui/settings.cpp:3909 +msgid "Table border (soft)" +msgstr "" + +#: src/gui/settings.cpp:3910 +msgid "Drag and drop target" +msgstr "" + +#: src/gui/settings.cpp:3911 +msgid "Window switcher (highlight)" +msgstr "" + +#: src/gui/settings.cpp:3912 +msgid "Window switcher backdrop" +msgstr "" + +#: src/gui/settings.cpp:3915 src/gui/settings.cpp:4136 src/gui/guiConst.cpp:235 +msgid "Miscellaneous" +msgstr "" + +#: src/gui/settings.cpp:3916 +msgid "Toggle on" +msgstr "" + +#: src/gui/settings.cpp:3917 +msgid "Toggle off" +msgstr "" + +#: src/gui/settings.cpp:3918 +msgid "Playback status" +msgstr "" + +#: src/gui/settings.cpp:3919 +msgid "Destructive hint" +msgstr "" + +#: src/gui/settings.cpp:3920 +msgid "Warning hint" +msgstr "" + +#: src/gui/settings.cpp:3921 +msgid "Error hint" +msgstr "" + +#: src/gui/settings.cpp:3924 +msgid "File Picker (built-in)" +msgstr "" + +#: src/gui/settings.cpp:3926 +msgid "Song (native)" +msgstr "" + +#: src/gui/settings.cpp:3927 +msgid "Song (import)" +msgstr "" + +#: src/gui/settings.cpp:3933 +msgid "Font" +msgstr "" + +#: src/gui/settings.cpp:3939 +msgid "Background (top-left)" +msgstr "" + +#: src/gui/settings.cpp:3940 +msgid "Background (top-right)" +msgstr "" + +#: src/gui/settings.cpp:3941 +msgid "Background (bottom-left)" +msgstr "" + +#: src/gui/settings.cpp:3942 +msgid "Background (bottom-right)" +msgstr "" + +#: src/gui/settings.cpp:3943 src/gui/settings.cpp:3998 +#: src/gui/settings.cpp:4166 src/gui/waveEdit.cpp:730 src/gui/insEdit.cpp:50 +#: src/gui/insEdit.cpp:4148 src/gui/insEdit.cpp:5812 src/gui/insEdit.cpp:6940 +#: src/gui/insEdit.cpp:6949 src/gui/insEdit.cpp:6963 src/gui/insEdit.cpp:6980 +#: src/gui/insEdit.cpp:6991 src/gui/insEdit.cpp:7004 src/gui/insEdit.cpp:7018 +#: src/gui/insEdit.cpp:7025 src/gui/insEdit.cpp:7035 src/gui/insEdit.cpp:7041 +#: src/gui/insEdit.cpp:7050 src/gui/insEdit.cpp:7074 src/gui/insEdit.cpp:7084 +#: src/gui/insEdit.cpp:7094 src/gui/insEdit.cpp:7101 src/gui/insEdit.cpp:7116 +#: src/gui/insEdit.cpp:7131 src/gui/insEdit.cpp:7151 src/gui/insEdit.cpp:7158 +#: src/gui/insEdit.cpp:7200 src/gui/insEdit.cpp:7211 src/gui/insEdit.cpp:7224 +#: src/gui/insEdit.cpp:7349 src/gui/insEdit.cpp:7425 src/gui/insEdit.cpp:7445 +#: src/gui/insEdit.cpp:7453 src/gui/insEdit.cpp:7473 +msgid "Waveform" +msgstr "" + +#: src/gui/settings.cpp:3944 +msgid "Waveform (clip)" +msgstr "" + +#: src/gui/settings.cpp:3945 +msgid "Reference" +msgstr "" + +#: src/gui/settings.cpp:3946 +msgid "Guide" +msgstr "" + +#: src/gui/settings.cpp:3948 +msgid "Wave (non-mono)" +msgstr "" + +#: src/gui/settings.cpp:3949 +msgid "Waveform (1)" +msgstr "" + +#: src/gui/settings.cpp:3950 +msgid "Waveform (2)" +msgstr "" + +#: src/gui/settings.cpp:3951 +msgid "Waveform (3)" +msgstr "" + +#: src/gui/settings.cpp:3952 +msgid "Waveform (4)" +msgstr "" + +#: src/gui/settings.cpp:3953 +msgid "Waveform (5)" +msgstr "" + +#: src/gui/settings.cpp:3954 +msgid "Waveform (6)" +msgstr "" + +#: src/gui/settings.cpp:3955 +msgid "Waveform (7)" +msgstr "" + +#: src/gui/settings.cpp:3956 +msgid "Waveform (8)" +msgstr "" + +#: src/gui/settings.cpp:3957 +msgid "Waveform (9)" +msgstr "" + +#: src/gui/settings.cpp:3958 +msgid "Waveform (10)" +msgstr "" + +#: src/gui/settings.cpp:3959 +msgid "Waveform (11)" +msgstr "" + +#: src/gui/settings.cpp:3960 +msgid "Waveform (12)" +msgstr "" + +#: src/gui/settings.cpp:3961 +msgid "Waveform (13)" +msgstr "" + +#: src/gui/settings.cpp:3962 +msgid "Waveform (14)" +msgstr "" + +#: src/gui/settings.cpp:3963 +msgid "Waveform (15)" +msgstr "" + +#: src/gui/settings.cpp:3964 +msgid "Waveform (16)" +msgstr "" + +#: src/gui/settings.cpp:3972 +msgid "Clip" +msgstr "" + +#: src/gui/settings.cpp:3976 +msgid "Order number" +msgstr "" + +#: src/gui/settings.cpp:3977 +msgid "Playing order background" +msgstr "" + +#: src/gui/settings.cpp:3978 +msgid "Song loop" +msgstr "" + +#: src/gui/settings.cpp:3979 +msgid "Selected order" +msgstr "" + +#: src/gui/settings.cpp:3980 +msgid "Similar patterns" +msgstr "" + +#: src/gui/settings.cpp:3981 +msgid "Inactive patterns" +msgstr "" + +#: src/gui/settings.cpp:3984 +msgid "Envelope View" +msgstr "" + +#: src/gui/settings.cpp:3985 src/gui/insEdit.cpp:540 src/gui/insEdit.cpp:3547 +#: src/gui/insEdit.cpp:3548 src/gui/insEdit.cpp:4081 src/gui/insEdit.cpp:4151 +#: src/gui/insEdit.cpp:4790 src/gui/insEdit.cpp:5861 src/gui/insEdit.cpp:5862 +#: src/gui/insEdit.cpp:6487 src/gui/insEdit.cpp:6488 src/gui/insEdit.cpp:6555 +#: src/gui/insEdit.cpp:6556 src/gui/insEdit.cpp:6995 src/gui/insEdit.cpp:7009 +#: src/gui/insEdit.cpp:7029 src/gui/insEdit.cpp:7166 +#, c-format +msgid "Envelope" +msgstr "" + +#: src/gui/settings.cpp:3986 +msgid "Sustain guide" +msgstr "" + +#: src/gui/settings.cpp:3992 +msgid "Algorithm background" +msgstr "" + +#: src/gui/settings.cpp:3993 +msgid "Algorithm lines" +msgstr "" + +#: src/gui/settings.cpp:3994 +msgid "Modulator" +msgstr "" + +#: src/gui/settings.cpp:3995 +msgid "Carrier" +msgstr "" + +#: src/gui/settings.cpp:3997 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:4146 +msgid "SSG-EG" +msgstr "" + +#: src/gui/settings.cpp:4000 +msgid "" +"(the following colors only apply when \"Use separate colors for carriers/" +"modulators in FM editor\" is on!)" +msgstr "" + +#: src/gui/settings.cpp:4002 +msgid "Mod. accent (primary)" +msgstr "" + +#: src/gui/settings.cpp:4003 +msgid "Mod. accent (secondary)" +msgstr "" + +#: src/gui/settings.cpp:4004 +msgid "Mod. border" +msgstr "" + +#: src/gui/settings.cpp:4005 +msgid "Mod. border shadow" +msgstr "" + +#: src/gui/settings.cpp:4007 +msgid "Car. accent (primary)" +msgstr "" + +#: src/gui/settings.cpp:4008 +msgid "Car. accent (secondary)" +msgstr "" + +#: src/gui/settings.cpp:4009 +msgid "Car. border" +msgstr "" + +#: src/gui/settings.cpp:4010 +msgid "Car. border shadow" +msgstr "" + +#: src/gui/settings.cpp:4016 src/gui/guiConst.cpp:227 src/gui/insEdit.cpp:6924 +#: src/gui/insEdit.cpp:6931 src/gui/insEdit.cpp:6942 src/gui/insEdit.cpp:6950 +#: src/gui/insEdit.cpp:6971 src/gui/insEdit.cpp:6983 src/gui/insEdit.cpp:6993 +#: src/gui/insEdit.cpp:7006 src/gui/insEdit.cpp:7019 src/gui/insEdit.cpp:7028 +#: src/gui/insEdit.cpp:7036 src/gui/insEdit.cpp:7042 src/gui/insEdit.cpp:7052 +#: src/gui/insEdit.cpp:7061 src/gui/insEdit.cpp:7068 src/gui/insEdit.cpp:7075 +#: src/gui/insEdit.cpp:7087 src/gui/insEdit.cpp:7095 src/gui/insEdit.cpp:7102 +#: src/gui/insEdit.cpp:7109 src/gui/insEdit.cpp:7117 src/gui/insEdit.cpp:7123 +#: src/gui/insEdit.cpp:7132 src/gui/insEdit.cpp:7143 src/gui/insEdit.cpp:7153 +#: src/gui/insEdit.cpp:7161 src/gui/insEdit.cpp:7174 src/gui/insEdit.cpp:7182 +#: src/gui/insEdit.cpp:7193 src/gui/insEdit.cpp:7203 src/gui/insEdit.cpp:7213 +#: src/gui/insEdit.cpp:7227 src/gui/insEdit.cpp:7233 src/gui/insEdit.cpp:7241 +#: src/gui/insEdit.cpp:7248 src/gui/insEdit.cpp:7272 src/gui/insEdit.cpp:7280 +#: src/gui/insEdit.cpp:7289 src/gui/insEdit.cpp:7298 src/gui/insEdit.cpp:7306 +#: src/gui/insEdit.cpp:7323 src/gui/insEdit.cpp:7331 src/gui/insEdit.cpp:7337 +#: src/gui/insEdit.cpp:7344 src/gui/insEdit.cpp:7350 src/gui/insEdit.cpp:7355 +#: src/gui/insEdit.cpp:7361 src/gui/insEdit.cpp:7368 src/gui/insEdit.cpp:7376 +#: src/gui/insEdit.cpp:7385 src/gui/insEdit.cpp:7393 src/gui/insEdit.cpp:7401 +#: src/gui/insEdit.cpp:7413 src/gui/insEdit.cpp:7428 src/gui/insEdit.cpp:7439 +#: src/gui/insEdit.cpp:7447 src/gui/insEdit.cpp:7456 src/gui/insEdit.cpp:7466 +#: src/gui/insEdit.cpp:7474 +msgid "Pitch" +msgstr "" + +#: src/gui/settings.cpp:4021 +msgid "Instrument Types" +msgstr "" + +#: src/gui/settings.cpp:4022 +msgid "FM (OPN)" +msgstr "" + +#: src/gui/settings.cpp:4023 +msgid "SN76489/Sega PSG" +msgstr "" + +#: src/gui/settings.cpp:4026 +msgid "C64" +msgstr "" + +#: src/gui/settings.cpp:4027 +msgid "Amiga/Generic Sample" +msgstr "" + +#: src/gui/settings.cpp:4028 +msgid "PC Engine" +msgstr "" + +#: src/gui/settings.cpp:4029 +msgid "AY-3-8910/SSG" +msgstr "" + +#: src/gui/settings.cpp:4030 +msgid "AY8930" +msgstr "" + +#: src/gui/settings.cpp:4031 +msgid "TIA" +msgstr "" + +#: src/gui/settings.cpp:4032 +msgid "SAA1099" +msgstr "" + +#: src/gui/settings.cpp:4033 +msgid "VIC" +msgstr "" + +#: src/gui/settings.cpp:4034 +msgid "PET" +msgstr "" + +#: src/gui/settings.cpp:4035 +msgid "VRC6" +msgstr "" + +#: src/gui/settings.cpp:4036 src/gui/guiConst.cpp:149 +msgid "VRC6 (saw)" +msgstr "" + +#: src/gui/settings.cpp:4037 +msgid "FM (OPLL)" +msgstr "" + +#: src/gui/settings.cpp:4038 +msgid "FM (OPL)" +msgstr "" + +#: src/gui/settings.cpp:4043 +msgid "FM (OPZ)" +msgstr "" + +#: src/gui/settings.cpp:4045 +msgid "PC Beeper" +msgstr "" + +#: src/gui/settings.cpp:4047 +msgid "Lynx" +msgstr "" + +#: src/gui/settings.cpp:4049 +msgid "X1-010" +msgstr "" + +#: src/gui/settings.cpp:4050 +msgid "ES5506" +msgstr "" + +#: src/gui/settings.cpp:4053 +msgid "Sound Unit" +msgstr "" + +#: src/gui/settings.cpp:4055 +msgid "FM (OPL Drums)" +msgstr "" + +#: src/gui/settings.cpp:4056 +msgid "FM (OPM)" +msgstr "" + +#: src/gui/settings.cpp:4057 +msgid "NES" +msgstr "" + +#: src/gui/settings.cpp:4058 +msgid "MSM6258" +msgstr "" + +#: src/gui/settings.cpp:4059 +msgid "MSM6295" +msgstr "" + +#: src/gui/settings.cpp:4060 +msgid "ADPCM-A" +msgstr "" + +#: src/gui/settings.cpp:4062 +msgid "Sega PCM" +msgstr "" + +#: src/gui/settings.cpp:4063 +msgid "QSound" +msgstr "" + +#: src/gui/settings.cpp:4064 +msgid "YMZ280B" +msgstr "" + +#: src/gui/settings.cpp:4065 +msgid "RF5C68" +msgstr "" + +#: src/gui/settings.cpp:4066 +msgid "MSM5232" +msgstr "" + +#: src/gui/settings.cpp:4067 +msgid "K007232" +msgstr "" + +#: src/gui/settings.cpp:4068 +msgid "GA20" +msgstr "" + +#: src/gui/settings.cpp:4070 +msgid "SM8521" +msgstr "" + +#: src/gui/settings.cpp:4071 +msgid "PV-1000" +msgstr "" + +#: src/gui/settings.cpp:4072 +msgid "K053260" +msgstr "" + +#: src/gui/settings.cpp:4073 +msgid "TED" +msgstr "" + +#: src/gui/settings.cpp:4074 +msgid "C140" +msgstr "" + +#: src/gui/settings.cpp:4075 +msgid "C219" +msgstr "" + +#: src/gui/settings.cpp:4076 +msgid "ESFM" +msgstr "" + +#: src/gui/settings.cpp:4077 src/gui/guiConst.cpp:179 +msgid "PowerNoise (noise)" +msgstr "" + +#: src/gui/settings.cpp:4078 src/gui/guiConst.cpp:180 +msgid "PowerNoise (slope)" +msgstr "" + +#: src/gui/settings.cpp:4081 +msgid "GBA DMA" +msgstr "" + +#: src/gui/settings.cpp:4082 +msgid "GBA MinMod" +msgstr "" + +#: src/gui/settings.cpp:4085 +msgid "Other/Unknown" +msgstr "" + +#: src/gui/settings.cpp:4089 +msgid "Single color (background)" +msgstr "" + +#: src/gui/settings.cpp:4090 +msgid "Single color (text)" +msgstr "" + +#: src/gui/settings.cpp:4091 src/gui/guiConst.cpp:1393 src/gui/waveEdit.cpp:668 +msgid "FM" +msgstr "" + +#: src/gui/settings.cpp:4096 +msgid "FM operator" +msgstr "" + +#: src/gui/settings.cpp:4097 +msgid "Muted" +msgstr "" + +#: src/gui/settings.cpp:4101 +msgid "Playhead" +msgstr "" + +#: src/gui/settings.cpp:4102 +msgid "Editing" +msgstr "" + +#: src/gui/settings.cpp:4103 +msgid "Editing (will clone)" +msgstr "" + +#: src/gui/settings.cpp:4104 +msgid "Cursor" +msgstr "" + +#: src/gui/settings.cpp:4105 +msgid "Cursor (hovered)" +msgstr "" + +#: src/gui/settings.cpp:4106 +msgid "Cursor (clicked)" +msgstr "" + +#: src/gui/settings.cpp:4107 src/gui/settings.cpp:4172 +#: src/gui/findReplace.cpp:791 +msgid "Selection" +msgstr "" + +#: src/gui/settings.cpp:4108 +msgid "Selection (hovered)" +msgstr "" + +#: src/gui/settings.cpp:4109 +msgid "Selection (clicked)" +msgstr "" + +#: src/gui/settings.cpp:4110 +msgid "Highlight 1" +msgstr "" + +#: src/gui/settings.cpp:4111 +msgid "Highlight 2" +msgstr "" + +#: src/gui/settings.cpp:4112 +msgid "Row number" +msgstr "" + +#: src/gui/settings.cpp:4113 +msgid "Row number (highlight 1)" +msgstr "" + +#: src/gui/settings.cpp:4114 +msgid "Row number (highlight 2)" +msgstr "" + +#: src/gui/settings.cpp:4116 +msgid "Note (highlight 1)" +msgstr "" + +#: src/gui/settings.cpp:4117 +msgid "Note (highlight 2)" +msgstr "" + +#: src/gui/settings.cpp:4118 +msgid "Blank" +msgstr "" + +#: src/gui/settings.cpp:4119 +msgid "Blank (highlight 1)" +msgstr "" + +#: src/gui/settings.cpp:4120 +msgid "Blank (highlight 2)" +msgstr "" + +#: src/gui/settings.cpp:4122 +msgid "Instrument (invalid type)" +msgstr "" + +#: src/gui/settings.cpp:4123 +msgid "Instrument (out of range)" +msgstr "" + +#: src/gui/settings.cpp:4124 +msgid "Volume (0%)" +msgstr "" + +#: src/gui/settings.cpp:4125 +msgid "Volume (50%)" +msgstr "" + +#: src/gui/settings.cpp:4126 +msgid "Volume (100%)" +msgstr "" + +#: src/gui/settings.cpp:4128 +msgid "Pitch effect" +msgstr "" + +#: src/gui/settings.cpp:4129 +msgid "Volume effect" +msgstr "" + +#: src/gui/settings.cpp:4130 +msgid "Panning effect" +msgstr "" + +#: src/gui/settings.cpp:4131 +msgid "Song effect" +msgstr "" + +#: src/gui/settings.cpp:4132 +msgid "Time effect" +msgstr "" + +#: src/gui/settings.cpp:4133 +msgid "Speed effect" +msgstr "" + +#: src/gui/settings.cpp:4134 +msgid "Primary specific effect" +msgstr "" + +#: src/gui/settings.cpp:4135 +msgid "Secondary specific effect" +msgstr "" + +#: src/gui/settings.cpp:4137 +msgid "External command output" +msgstr "" + +#: src/gui/settings.cpp:4138 +msgid "Status: off/disabled" +msgstr "" + +#: src/gui/settings.cpp:4139 +msgid "Status: off + macro rel" +msgstr "" + +#: src/gui/settings.cpp:4140 +msgid "Status: on + macro rel" +msgstr "" + +#: src/gui/settings.cpp:4141 +msgid "Status: on" +msgstr "" + +#: src/gui/settings.cpp:4142 +msgid "Status: volume" +msgstr "" + +#: src/gui/settings.cpp:4143 +msgid "Status: pitch" +msgstr "" + +#: src/gui/settings.cpp:4144 +msgid "Status: panning" +msgstr "" + +#: src/gui/settings.cpp:4145 +msgid "Status: chip (primary)" +msgstr "" + +#: src/gui/settings.cpp:4146 +msgid "Status: chip (secondary)" +msgstr "" + +#: src/gui/settings.cpp:4147 +msgid "Status: mixing" +msgstr "" + +#: src/gui/settings.cpp:4148 +msgid "Status: DSP effect" +msgstr "" + +#: src/gui/settings.cpp:4149 +msgid "Status: note altering" +msgstr "" + +#: src/gui/settings.cpp:4150 +msgid "Status: misc color 1" +msgstr "" + +#: src/gui/settings.cpp:4151 +msgid "Status: misc color 2" +msgstr "" + +#: src/gui/settings.cpp:4152 +msgid "Status: misc color 3" +msgstr "" + +#: src/gui/settings.cpp:4153 +msgid "Status: attack" +msgstr "" + +#: src/gui/settings.cpp:4154 +msgid "Status: decay" +msgstr "" + +#: src/gui/settings.cpp:4155 +msgid "Status: sustain" +msgstr "" + +#: src/gui/settings.cpp:4156 +msgid "Status: release" +msgstr "" + +#: src/gui/settings.cpp:4157 +msgid "Status: decrease linear" +msgstr "" + +#: src/gui/settings.cpp:4158 +msgid "Status: decrease exp" +msgstr "" + +#: src/gui/settings.cpp:4159 +msgid "Status: increase" +msgstr "" + +#: src/gui/settings.cpp:4160 +msgid "Status: bent" +msgstr "" + +#: src/gui/settings.cpp:4161 +msgid "Status: direct" +msgstr "" + +#: src/gui/settings.cpp:4164 src/gui/guiConst.cpp:586 src/gui/sampleEdit.cpp:96 +msgid "Sample Editor" +msgstr "" + +#: src/gui/settings.cpp:4167 +msgid "Time background" +msgstr "" + +#: src/gui/settings.cpp:4168 +msgid "Time text" +msgstr "" + +#: src/gui/settings.cpp:4169 +msgid "Loop region" +msgstr "" + +#: src/gui/settings.cpp:4170 +msgid "Center guide" +msgstr "" + +#: src/gui/settings.cpp:4171 +msgid "Grid" +msgstr "" + +#: src/gui/settings.cpp:4173 +msgid "Selection points" +msgstr "" + +#: src/gui/settings.cpp:4174 +msgid "Preview needle" +msgstr "" + +#: src/gui/settings.cpp:4175 +msgid "Playing needles" +msgstr "" + +#: src/gui/settings.cpp:4176 +msgid "Loop markers" +msgstr "" + +#: src/gui/settings.cpp:4177 +msgid "Chip select: disabled" +msgstr "" + +#: src/gui/settings.cpp:4178 +msgid "Chip select: enabled" +msgstr "" + +#: src/gui/settings.cpp:4179 +msgid "Chip select: enabled (failure)" +msgstr "" + +#: src/gui/settings.cpp:4182 src/gui/guiConst.cpp:602 src/gui/patManager.cpp:35 +msgid "Pattern Manager" +msgstr "" + +#: src/gui/settings.cpp:4183 +msgid "Unallocated" +msgstr "" + +#: src/gui/settings.cpp:4184 +msgid "Unused" +msgstr "" + +#: src/gui/settings.cpp:4185 +msgid "Used" +msgstr "" + +#: src/gui/settings.cpp:4186 +msgid "Overused" +msgstr "" + +#: src/gui/settings.cpp:4187 +msgid "Really overused" +msgstr "" + +#: src/gui/settings.cpp:4188 +msgid "Combo Breaker" +msgstr "" + +#: src/gui/settings.cpp:4191 src/gui/guiConst.cpp:599 src/gui/piano.cpp:63 +msgid "Piano" +msgstr "" + +#: src/gui/settings.cpp:4193 +msgid "Upper key" +msgstr "" + +#: src/gui/settings.cpp:4194 +msgid "Upper key (feedback)" +msgstr "" + +#: src/gui/settings.cpp:4195 +msgid "Upper key (pressed)" +msgstr "" + +#: src/gui/settings.cpp:4196 +msgid "Lower key" +msgstr "" + +#: src/gui/settings.cpp:4197 +msgid "Lower key (feedback)" +msgstr "" + +#: src/gui/settings.cpp:4198 +msgid "Lower key (pressed)" +msgstr "" + +#: src/gui/settings.cpp:4201 src/gui/clock.cpp:31 src/gui/guiConst.cpp:610 +msgid "Clock" +msgstr "" + +#: src/gui/settings.cpp:4202 +msgid "Clock text" +msgstr "" + +#: src/gui/settings.cpp:4203 +msgid "Beat (off)" +msgstr "" + +#: src/gui/settings.cpp:4204 +msgid "Beat (on)" +msgstr "" + +#: src/gui/settings.cpp:4209 +msgid "PortSet" +msgstr "" + +#: src/gui/settings.cpp:4210 +msgid "Port" +msgstr "" + +#: src/gui/settings.cpp:4211 +msgid "Port (hidden/unavailable)" +msgstr "" + +#: src/gui/settings.cpp:4212 +msgid "Connection (selected)" +msgstr "" + +#: src/gui/settings.cpp:4213 +msgid "Connection (other)" +msgstr "" + +#: src/gui/settings.cpp:4219 +msgid "Waveform data" +msgstr "" + +#: src/gui/settings.cpp:4222 +msgid "Reserved" +msgstr "" + +#: src/gui/settings.cpp:4224 +msgid "Sample (alternate 1)" +msgstr "" + +#: src/gui/settings.cpp:4225 +msgid "Sample (alternate 2)" +msgstr "" + +#: src/gui/settings.cpp:4226 +msgid "Sample (alternate 3)" +msgstr "" + +#: src/gui/settings.cpp:4227 +msgid "Wave RAM" +msgstr "" + +#: src/gui/settings.cpp:4228 +msgid "Wavetable (static)" +msgstr "" + +#: src/gui/settings.cpp:4229 +msgid "Echo buffer" +msgstr "" + +#: src/gui/settings.cpp:4230 +msgid "Namco 163 load pos" +msgstr "" + +#: src/gui/settings.cpp:4231 +msgid "Namco 163 play pos" +msgstr "" + +#: src/gui/settings.cpp:4232 +msgid "Sample (bank 0)" +msgstr "" + +#: src/gui/settings.cpp:4233 +msgid "Sample (bank 1)" +msgstr "" + +#: src/gui/settings.cpp:4234 +msgid "Sample (bank 2)" +msgstr "" + +#: src/gui/settings.cpp:4235 +msgid "Sample (bank 3)" +msgstr "" + +#: src/gui/settings.cpp:4236 +msgid "Sample (bank 4)" +msgstr "" + +#: src/gui/settings.cpp:4237 +msgid "Sample (bank 5)" +msgstr "" + +#: src/gui/settings.cpp:4238 +msgid "Sample (bank 6)" +msgstr "" + +#: src/gui/settings.cpp:4239 +msgid "Sample (bank 7)" +msgstr "" + +#: src/gui/settings.cpp:4244 +msgid "Log level: Error" +msgstr "" + +#: src/gui/settings.cpp:4245 +msgid "Log level: Warning" +msgstr "" + +#: src/gui/settings.cpp:4246 +msgid "Log level: Info" +msgstr "" + +#: src/gui/settings.cpp:4247 +msgid "Log level: Debug" +msgstr "" + +#: src/gui/settings.cpp:4248 +msgid "Log level: Trace/Verbose" +msgstr "" + +#: src/gui/settings.cpp:4253 +msgid "Backup" +msgstr "" + +#: src/gui/settings.cpp:4258 +msgid "Enable backup system" +msgstr "" + +#: src/gui/settings.cpp:4263 +msgid "Interval (in seconds)" +msgstr "" + +#: src/gui/settings.cpp:4268 +msgid "Backups per file" +msgstr "" + +#: src/gui/settings.cpp:4274 +msgid "Backup Management" +msgstr "" + +#: src/gui/settings.cpp:4278 +msgid "Purge before:" +msgstr "" + +#: src/gui/settings.cpp:4352 +msgid "Go##PDate" +msgstr "" + +#: src/gui/settings.cpp:4359 +#, c-format +msgid "%PB used" +msgstr "" + +#: src/gui/settings.cpp:4361 +#, c-format +msgid "%TB used" +msgstr "" + +#: src/gui/settings.cpp:4363 +#, c-format +msgid "%GB used" +msgstr "" + +#: src/gui/settings.cpp:4365 +#, c-format +msgid "%MB used" +msgstr "" + +#: src/gui/settings.cpp:4367 +#, c-format +msgid "%KB used" +msgstr "" + +#: src/gui/settings.cpp:4369 +#, c-format +msgid "% bytes used" +msgstr "" + +#: src/gui/settings.cpp:4374 +msgid "Refresh" +msgstr "" + +#: src/gui/settings.cpp:4378 +msgid "Delete all" +msgstr "" + +#: src/gui/settings.cpp:4384 src/gui/settings.cpp:6688 +msgid "Size" +msgstr "" + +#: src/gui/settings.cpp:4385 +msgid "Latest" +msgstr "" + +#: src/gui/settings.cpp:4395 +#, c-format +msgid "%P" +msgstr "" + +#: src/gui/settings.cpp:4397 +#, c-format +msgid "%T" +msgstr "" + +#: src/gui/settings.cpp:4399 +#, c-format +msgid "%G" +msgstr "" + +#: src/gui/settings.cpp:4401 +#, c-format +msgid "%M" +msgstr "" + +#: src/gui/settings.cpp:4403 +#, c-format +msgid "%K" +msgstr "" + +#: src/gui/settings.cpp:4405 +#, c-format +msgid "%" +msgstr "" + +#: src/gui/settings.cpp:4529 +msgid "Cheat Codes" +msgstr "" + +#: src/gui/settings.cpp:4531 +msgid "Enter code:" +msgstr "" + +#: src/gui/settings.cpp:4533 +msgid "Submit" +msgstr "" + +#: src/gui/settings.cpp:4537 +msgid "invalid code" +msgstr "" + +#: src/gui/settings.cpp:4547 +msgid "toggled alternate UI" +msgstr "" + +#: src/gui/settings.cpp:4551 +msgid ":smile: :star_struck: :sunglasses: :ok_hand:" +msgstr "" + +#: src/gui/settings.cpp:4555 +msgid "enabled all instrument types" +msgstr "" + +#: src/gui/settings.cpp:4559 +msgid "OK, if I bring your Partial pitch linearity will you stop bothering me?" +msgstr "" + +#: src/gui/settings.cpp:4563 +msgid "unlocked audio multi-threading options!" +msgstr "" + +#: src/gui/settings.cpp:4567 +msgid "enabled \"comfortable\" mode" +msgstr "" + +#: src/gui/settings.cpp:4585 +msgid "OK##SettingsOK" +msgstr "" + +#: src/gui/settings.cpp:4591 +msgid "Cancel##SettingsCancel" +msgstr "" + +#: src/gui/settings.cpp:4599 +msgid "Apply##SettingsApply" +msgstr "" + +#: src/gui/settings.cpp:5673 +msgid "could not initialize audio!" +msgstr "" + +#: src/gui/settings.cpp:5683 src/gui/gui.cpp:4067 src/gui/gui.cpp:6662 +#: src/gui/gui.cpp:7088 +msgid "error while loading fonts! please check your settings." +msgstr "" + +#: src/gui/settings.cpp:5862 +#, c-format +msgid "error while loading config! (%s)" +msgstr "" + +#: src/gui/settings.cpp:6675 +msgid "[Dir]" +msgstr "" + +#: src/gui/settings.cpp:6676 +msgid "[Link]" +msgstr "" + +#: src/gui/settings.cpp:6677 +#, fuzzy +msgid "[File]" +msgstr "ไฟล์" + +#: src/gui/settings.cpp:6678 +#, fuzzy +msgid "Name:" +msgstr "ชื่อ" + +#: src/gui/settings.cpp:6679 +msgid "Path:" +msgstr "" + +#: src/gui/settings.cpp:6680 +msgid "Reset search" +msgstr "" + +#: src/gui/settings.cpp:6681 +msgid "Drives" +msgstr "" + +#: src/gui/settings.cpp:6682 +msgid "" +"Edit path\n" +"You can also right click on path buttons" +msgstr "" + +#: src/gui/settings.cpp:6683 +#, fuzzy +msgid "Go to home directory" +msgstr "เปิดไดเรกทอรีของสินทรัพย์ในตัว" + +#: src/gui/settings.cpp:6684 +#, fuzzy +msgid "Go to parent directory" +msgstr "เปิดไดเรกทอรีของสินทรัพย์ในตัว" + +#: src/gui/settings.cpp:6685 +#, fuzzy +msgid "Create Directory" +msgstr "สร้างใหม่" + +#: src/gui/settings.cpp:6686 +#, fuzzy +msgid "File name" +msgstr "ไฟล์" + +#: src/gui/settings.cpp:6689 +msgid "Date" +msgstr "" + +#: src/gui/settings.cpp:6690 src/gui/gui.cpp:5510 src/gui/gui.cpp:5645 +#: src/gui/gui.cpp:5646 +msgid "Warning" +msgstr "" + +#: src/gui/settings.cpp:6691 +msgid "The file you selected already exists! Would you like to overwrite it?" +msgstr "" + +#: src/gui/settings.cpp:6692 src/gui/gui.cpp:5650 src/gui/gui.cpp:5674 +#: src/gui/gui.cpp:5698 src/gui/gui.cpp:5722 src/gui/gui.cpp:5746 +#: src/gui/gui.cpp:5770 src/gui/gui.cpp:5802 src/gui/gui.cpp:5818 +#: src/gui/gui.cpp:5829 src/gui/gui.cpp:5841 src/gui/gui.cpp:5995 +#: src/gui/gui.cpp:6017 src/gui/gui.cpp:6032 src/gui/gui.cpp:6043 +msgid "Yes" +msgstr "" + +#: src/gui/settings.cpp:6693 src/gui/findReplace.cpp:828 src/gui/gui.cpp:5664 +#: src/gui/gui.cpp:5688 src/gui/gui.cpp:5712 src/gui/gui.cpp:5736 +#: src/gui/gui.cpp:5760 src/gui/gui.cpp:5788 src/gui/gui.cpp:5813 +#: src/gui/gui.cpp:5824 src/gui/gui.cpp:5836 src/gui/gui.cpp:5848 +#: src/gui/gui.cpp:6012 src/gui/gui.cpp:6027 src/gui/gui.cpp:6037 +#: src/gui/gui.cpp:6050 +msgid "No" +msgstr "" + +#: src/gui/settings.cpp:6694 +msgid "%Y/%m/%d %H:%M" +msgstr "" + +#: src/gui/orders.cpp:114 +msgid "Add new order" +msgstr "" + +#: src/gui/orders.cpp:125 src/gui/guiConst.cpp:794 +msgid "Remove order" +msgstr "" + +#: src/gui/orders.cpp:137 +msgid "Duplicate order (right-click to deep clone)" +msgstr "" + +#: src/gui/orders.cpp:146 src/gui/guiConst.cpp:795 +msgid "Move order up" +msgstr "" + +#: src/gui/orders.cpp:155 src/gui/guiConst.cpp:796 +msgid "Move order down" +msgstr "" + +#: src/gui/orders.cpp:167 +msgid "Place copy of current order at end of song (right-click to deep clone)" +msgstr "" + +#: src/gui/orders.cpp:177 +msgid "Order change mode: entire row" +msgstr "" + +#: src/gui/orders.cpp:179 +msgid "Order change mode: one" +msgstr "" + +#: src/gui/orders.cpp:205 +msgid "Order edit mode: Select and type (scroll vertically)" +msgstr "" + +#: src/gui/orders.cpp:207 +msgid "Order edit mode: Select and type (scroll horizontally)" +msgstr "" + +#: src/gui/orders.cpp:209 +msgid "Order edit mode: Select and type (don't scroll)" +msgstr "" + +#: src/gui/orders.cpp:211 +msgid "Order edit mode: Click to change" +msgstr "" + +#: src/gui/findReplace.cpp:29 +msgid "ignore" +msgstr "" + +#: src/gui/findReplace.cpp:30 +msgid "equals" +msgstr "" + +#: src/gui/findReplace.cpp:31 +msgid "not equal" +msgstr "" + +#: src/gui/findReplace.cpp:32 +msgid "between" +msgstr "" + +#: src/gui/findReplace.cpp:33 +msgid "not between" +msgstr "" + +#: src/gui/findReplace.cpp:34 +msgid "any" +msgstr "" + +#: src/gui/findReplace.cpp:35 src/gui/guiConst.cpp:217 +msgid "none" +msgstr "" + +#: src/gui/findReplace.cpp:39 +msgid "set" +msgstr "" + +#: src/gui/findReplace.cpp:40 +msgid "add" +msgstr "" + +#: src/gui/findReplace.cpp:41 +msgid "add (overflow)" +msgstr "" + +#: src/gui/findReplace.cpp:42 +msgid "scale %" +msgstr "" + +#: src/gui/findReplace.cpp:512 src/gui/guiConst.cpp:609 +msgid "Find/Replace" +msgstr "" + +#: src/gui/findReplace.cpp:520 src/gui/findReplace.cpp:850 +msgid "Find" +msgstr "" + +#: src/gui/findReplace.cpp:526 src/gui/findReplace.cpp:535 +msgid "order" +msgstr "" + +#: src/gui/findReplace.cpp:527 src/gui/findReplace.cpp:537 +msgid "row" +msgstr "" + +#: src/gui/findReplace.cpp:539 src/gui/csPlayer.cpp:146 +msgid "channel" +msgstr "" + +#: src/gui/findReplace.cpp:541 +msgid "go" +msgstr "" + +#: src/gui/findReplace.cpp:585 +msgid "no matches found!" +msgstr "" + +#: src/gui/findReplace.cpp:587 +msgid "Back" +msgstr "" + +#: src/gui/findReplace.cpp:750 +msgid "Delete query" +msgstr "" + +#: src/gui/findReplace.cpp:754 src/gui/findReplace.cpp:1037 +msgid "Add effect" +msgstr "" + +#: src/gui/findReplace.cpp:761 src/gui/findReplace.cpp:1044 +msgid "Remove effect" +msgstr "" + +#: src/gui/findReplace.cpp:786 +msgid "Search range:" +msgstr "" + +#: src/gui/findReplace.cpp:799 +msgid "Confine to channels" +msgstr "" + +#: src/gui/findReplace.cpp:803 src/gui/sampleEdit.cpp:1152 +msgid "From" +msgstr "" + +#: src/gui/findReplace.cpp:814 src/gui/sampleEdit.cpp:1156 +msgid "To" +msgstr "" + +#: src/gui/findReplace.cpp:826 +msgid "Match effect position:" +msgstr "" + +#: src/gui/findReplace.cpp:832 +msgid "match effects regardless of position." +msgstr "" + +#: src/gui/findReplace.cpp:834 src/gui/compatFlags.cpp:288 +msgid "Lax" +msgstr "" + +#: src/gui/findReplace.cpp:838 +msgid "match effects only if they appear in-order." +msgstr "" + +#: src/gui/findReplace.cpp:840 src/gui/compatFlags.cpp:276 +msgid "Strict" +msgstr "" + +#: src/gui/findReplace.cpp:844 +msgid "match effects only if they appear exactly as specified." +msgstr "" + +#: src/gui/findReplace.cpp:856 +msgid "Replace" +msgstr "" + +#: src/gui/findReplace.cpp:908 +msgid "INVALID" +msgstr "" + +#: src/gui/findReplace.cpp:1052 +msgid "Effect replace mode:" +msgstr "" + +#: src/gui/findReplace.cpp:1053 +msgid "Replace matches only" +msgstr "" + +#: src/gui/findReplace.cpp:1056 +msgid "Replace matches, then free spaces" +msgstr "" + +#: src/gui/findReplace.cpp:1059 +msgid "Clear effects" +msgstr "" + +#: src/gui/findReplace.cpp:1062 +msgid "Insert in free spaces" +msgstr "" + +#: src/gui/findReplace.cpp:1065 +msgid "Replace##QueryReplace" +msgstr "" + +#: src/gui/about.cpp:26 +msgid "is proud to present" +msgstr "" + +#: src/gui/about.cpp:30 +msgid "the biggest multi-system chiptune tracker!" +msgstr "" + +#: src/gui/about.cpp:31 +msgid "featuring DefleMask song compatibility." +msgstr "" + +#: src/gui/about.cpp:33 +msgid "> CREDITS <" +msgstr "" + +#: src/gui/about.cpp:35 +msgid "-- program --" +msgstr "" + +#: src/gui/about.cpp:37 +msgid "A M 4 N (intro tune)" +msgstr "" + +#: src/gui/about.cpp:52 +msgid "-- graphics/UI design --" +msgstr "" + +#: src/gui/about.cpp:59 +msgid "-- documentation --" +msgstr "" + +#: src/gui/about.cpp:69 +msgid "-- localization/translation team --" +msgstr "" + +#: src/gui/about.cpp:81 +msgid "-- demo songs --" +msgstr "" + +#: src/gui/about.cpp:207 +msgid "-- additional feedback/fixes --" +msgstr "" + +#: src/gui/about.cpp:218 +msgid "-- Metal backend test team --" +msgstr "" + +#: src/gui/about.cpp:224 +msgid "-- DirectX 9 backend test team --" +msgstr "" + +#: src/gui/about.cpp:231 +msgid "powered by:" +msgstr "" + +#: src/gui/about.cpp:232 +msgid "Dear ImGui by Omar Cornut" +msgstr "" + +#: src/gui/about.cpp:233 +msgid "SDL2 by Sam Lantinga" +msgstr "" + +#: src/gui/about.cpp:237 +msgid "zlib by Jean-loup Gailly" +msgstr "" + +#: src/gui/about.cpp:238 +msgid "and Mark Adler" +msgstr "" + +#: src/gui/about.cpp:239 +msgid "libsndfile by Erik de Castro Lopo" +msgstr "" + +#: src/gui/about.cpp:240 +msgid "Portable File Dialogs by Sam Hocevar" +msgstr "" + +#: src/gui/about.cpp:241 +msgid "Native File Dialog by Frogtoss Games" +msgstr "" + +#: src/gui/about.cpp:243 +msgid "Weak-JACK by x42" +msgstr "" + +#: src/gui/about.cpp:244 +msgid "RtMidi by Gary P. Scavone" +msgstr "" + +#: src/gui/about.cpp:245 +msgid "FFTW by Matteo Frigo and Steven G. Johnson" +msgstr "" + +#: src/gui/about.cpp:246 +msgid "backward-cpp by Google" +msgstr "" + +#: src/gui/about.cpp:247 +msgid "adpcm by superctr" +msgstr "" + +#: src/gui/about.cpp:248 +msgid "adpcm-xq by David Bryant" +msgstr "" + +#: src/gui/about.cpp:249 +msgid "Nuked-OPL3/OPLL/OPM/OPN2/PSG by nukeykt" +msgstr "" + +#: src/gui/about.cpp:250 +msgid "YM3812-LLE, YMF262-LLE, YMF276-LLE and YM2608-LLE by nukeykt" +msgstr "" + +#: src/gui/about.cpp:251 +msgid "ESFMu (modified version) by Kagamiin~" +msgstr "" + +#: src/gui/about.cpp:252 +msgid "ymfm by Aaron Giles" +msgstr "" + +#: src/gui/about.cpp:253 +msgid "emu2413 by Digital Sound Antiques" +msgstr "" + +#: src/gui/about.cpp:254 +msgid "MAME SN76496 by Nicola Salmoria" +msgstr "" + +#: src/gui/about.cpp:255 +msgid "MAME AY-3-8910 by Couriersud" +msgstr "" + +#: src/gui/about.cpp:256 +msgid "with AY8930 fixes by Eulous, cam900 and Grauw" +msgstr "" + +#: src/gui/about.cpp:257 +msgid "MAME SAA1099 by Juergen Buchmueller and Manuel Abadia" +msgstr "" + +#: src/gui/about.cpp:258 +msgid "MAME Namco WSG by Nicola Salmoria and Aaron Giles" +msgstr "" + +#: src/gui/about.cpp:259 +msgid "MAME RF5C68 core by Olivier Galibert and Aaron Giles" +msgstr "" + +#: src/gui/about.cpp:260 +msgid "MAME MSM5232 core by Jarek Burczynski and Hiromitsu Shioya" +msgstr "" + +#: src/gui/about.cpp:261 +msgid "MAME MSM6258 core by Barry Rodewald" +msgstr "" + +#: src/gui/about.cpp:262 +msgid "MAME YMZ280B core by Aaron Giles" +msgstr "" + +#: src/gui/about.cpp:263 +msgid "MAME GA20 core by Acho A. Tang and R. Belmont" +msgstr "" + +#: src/gui/about.cpp:264 +msgid "MAME SegaPCM core by Hiromitsu Shioya and Olivier Galibert" +msgstr "" + +#: src/gui/about.cpp:265 +msgid "SAASound by Dave Hooper and Simon Owen" +msgstr "" + +#: src/gui/about.cpp:266 +msgid "SameBoy by Lior Halphon" +msgstr "" + +#: src/gui/about.cpp:267 +msgid "Mednafen PCE, WonderSwan, T6W28 and Virtual Boy audio cores" +msgstr "" + +#: src/gui/about.cpp:268 +msgid "SNES DSP core by Blargg" +msgstr "" + +#: src/gui/about.cpp:269 +msgid "puNES (NES, MMC5 and FDS) by FHorse" +msgstr "" + +#: src/gui/about.cpp:270 +msgid "NSFPlay (NES and FDS) by Brad Smith and Brezza" +msgstr "" + +#: src/gui/about.cpp:271 +msgid "reSID by Dag Lem" +msgstr "" + +#: src/gui/about.cpp:272 +msgid "reSIDfp by Dag Lem, Antti Lankila" +msgstr "" + +#: src/gui/about.cpp:273 +msgid "and Leandro Nini" +msgstr "" + +#: src/gui/about.cpp:274 +msgid "dSID by DefleMask Team based on jsSID" +msgstr "" + +#: src/gui/about.cpp:275 +msgid "Stella by Stella Team" +msgstr "" + +#: src/gui/about.cpp:276 +msgid "QSound emulator by superctr and Valley Bell" +msgstr "" + +#: src/gui/about.cpp:277 +msgid "VICE VIC-20 sound core by Rami Rasanen and viznut" +msgstr "" + +#: src/gui/about.cpp:278 +msgid "VICE TED sound core by Andreas Boose, Tibor Biczo" +msgstr "" + +#: src/gui/about.cpp:279 +msgid "and Marco van den Heuvel" +msgstr "" + +#: src/gui/about.cpp:280 +msgid "VERA sound core by Frank van den Hoef" +msgstr "" + +#: src/gui/about.cpp:281 +msgid "mzpokeysnd POKEY emulator by Michael Borisov" +msgstr "" + +#: src/gui/about.cpp:282 +msgid "ASAP POKEY emulator by Piotr Fusik" +msgstr "" + +#: src/gui/about.cpp:283 +msgid "ported by laoo to C++" +msgstr "" + +#: src/gui/about.cpp:284 +msgid "vgsound_emu (second version, modified version) by cam900" +msgstr "" + +#: src/gui/about.cpp:285 +msgid "SM8521 emulator (modified version) by cam900" +msgstr "" + +#: src/gui/about.cpp:286 +msgid "D65010G031 emulator (modified version) by cam900" +msgstr "" + +#: src/gui/about.cpp:287 +msgid "Namco C140/C219 emulator (modified version) by cam900" +msgstr "" + +#: src/gui/about.cpp:288 +msgid "PowerNoise emulator by scratchminer" +msgstr "" + +#: src/gui/about.cpp:289 +msgid "ep128emu by Istvan Varga" +msgstr "" + +#: src/gui/about.cpp:290 +msgid "NDS sound emulator by cam900" +msgstr "" + +#: src/gui/about.cpp:292 +msgid "greetings to:" +msgstr "" + +#: src/gui/about.cpp:295 +msgid "all members of Deflers of Noice!" +msgstr "" + +#: src/gui/about.cpp:301 +msgid "copyright © 2021-2024 tildearrow" +msgstr "" + +#: src/gui/about.cpp:302 +msgid "(and contributors)." +msgstr "" + +#: src/gui/about.cpp:303 +msgid "licensed under GPLv2+! see" +msgstr "" + +#: src/gui/about.cpp:304 +msgid "LICENSE for more information." +msgstr "" + +#: src/gui/about.cpp:306 +msgid "help Furnace grow:" +msgstr "" + +#: src/gui/about.cpp:309 +msgid "contact tildearrow at:" +msgstr "" + +#: src/gui/about.cpp:312 +msgid "disclaimer:" +msgstr "" + +#: src/gui/about.cpp:313 +msgid "despite the fact this program works" +msgstr "" + +#: src/gui/about.cpp:314 +msgid "with the .dmf file format, it is NOT" +msgstr "" + +#: src/gui/about.cpp:315 +msgid "affiliated with Delek or DefleMask in" +msgstr "" + +#: src/gui/about.cpp:316 +msgid "any way, nor it is a replacement for" +msgstr "" + +#: src/gui/about.cpp:317 +msgid "the original program." +msgstr "" + +#: src/gui/about.cpp:319 +msgid "it also comes with ABSOLUTELY NO WARRANTY." +msgstr "" + +#: src/gui/about.cpp:321 +msgid "thanks to all contributors/bug reporters!" +msgstr "" + +#: src/gui/about.cpp:328 +msgid "About Furnace" +msgstr "" + +#: src/gui/about.cpp:418 +msgid "Unsaved changes! Save changes before playing?" +msgstr "" + +#: src/gui/compatFlags.cpp:31 src/gui/guiConst.cpp:598 +msgid "Compatibility Flags" +msgstr "" + +#: src/gui/compatFlags.cpp:32 +msgid "" +"these flags are designed to provide better DefleMask/older Furnace " +"compatibility.\n" +"it is recommended to disable most of these unless you rely on specific " +"quirks." +msgstr "" + +#: src/gui/compatFlags.cpp:34 src/gui/compatFlags.cpp:310 +msgid "DefleMask" +msgstr "" + +#: src/gui/compatFlags.cpp:35 +msgid "Limit slide range" +msgstr "" + +#: src/gui/compatFlags.cpp:37 +msgid "" +"when enabled, slides are limited to a compatible range.\n" +"may cause problems with slides in negative octaves." +msgstr "" + +#: src/gui/compatFlags.cpp:39 +msgid "Compatible noise layout on NES and PC Engine" +msgstr "" + +#: src/gui/compatFlags.cpp:41 +msgid "" +"use a rather unusual compatible noise frequency layout.\n" +"removes some noise frequencies on PC Engine." +msgstr "" + +#: src/gui/compatFlags.cpp:43 +msgid "Game Boy instrument duty is wave volume" +msgstr "" + +#: src/gui/compatFlags.cpp:45 +msgid "" +"if enabled, an instrument with duty macro in the wave channel will be mapped " +"to wavetable volume." +msgstr "" + +#: src/gui/compatFlags.cpp:48 +msgid "Restart macro on portamento" +msgstr "" + +#: src/gui/compatFlags.cpp:50 +msgid "" +"when enabled, a portamento effect will reset the channel's macro if used in " +"combination with a note." +msgstr "" + +#: src/gui/compatFlags.cpp:52 +msgid "Legacy volume slides" +msgstr "" + +#: src/gui/compatFlags.cpp:54 +msgid "" +"simulate glitchy volume slide behavior by silently overflowing the volume " +"when the slide goes below 0." +msgstr "" + +#: src/gui/compatFlags.cpp:56 +msgid "Compatible arpeggio" +msgstr "" + +#: src/gui/compatFlags.cpp:58 +msgid "delay arpeggio by one tick on every new note." +msgstr "" + +#: src/gui/compatFlags.cpp:60 +msgid "Disable DAC when sample ends" +msgstr "" + +#: src/gui/compatFlags.cpp:62 +msgid "" +"when enabled, the DAC in YM2612 will be disabled if there isn't any sample " +"playing." +msgstr "" + +#: src/gui/compatFlags.cpp:64 +msgid "Broken speed alternation" +msgstr "" + +#: src/gui/compatFlags.cpp:66 +msgid "" +"determines next speed based on whether the row is odd/even instead of " +"alternating between speeds." +msgstr "" + +#: src/gui/compatFlags.cpp:68 +msgid "Ignore duplicate slide effects" +msgstr "" + +#: src/gui/compatFlags.cpp:70 +msgid "" +"if this is on, only the first slide of a row in a channel will be considered." +msgstr "" + +#: src/gui/compatFlags.cpp:72 +msgid "Ignore 0Dxx on the last order" +msgstr "" + +#: src/gui/compatFlags.cpp:74 +msgid "" +"if this is on, a jump to next row effect will not take place when it is on " +"the last order of a song." +msgstr "" + +#: src/gui/compatFlags.cpp:76 +msgid "Buggy portamento after pitch slide" +msgstr "" + +#: src/gui/compatFlags.cpp:78 +msgid "simulates a bug in where portamento does not work after sliding." +msgstr "" + +#: src/gui/compatFlags.cpp:80 +msgid "FM pitch slide octave boundary odd behavior" +msgstr "" + +#: src/gui/compatFlags.cpp:82 +msgid "" +"if this is on, a pitch slide that crosses the octave boundary will stop for " +"one tick and then continue from the nearest octave boundary.\n" +"for .dmf compatibility." +msgstr "" + +#: src/gui/compatFlags.cpp:84 +msgid "Don't apply Game Boy envelope on note-less instrument change" +msgstr "" + +#: src/gui/compatFlags.cpp:86 +msgid "if this is on, an instrument change will not affect the envelope." +msgstr "" + +#: src/gui/compatFlags.cpp:88 +msgid "Ignore DAC mode change outside of intended channel in ExtCh mode" +msgstr "" + +#: src/gui/compatFlags.cpp:90 +msgid "if this is on, 17xx has no effect on the operator channels in YM2612." +msgstr "" + +#: src/gui/compatFlags.cpp:92 +msgid "E1xy/E2xy also take priority over slide stops" +msgstr "" + +#: src/gui/compatFlags.cpp:94 +msgid "does this make any sense by now?" +msgstr "" + +#: src/gui/compatFlags.cpp:96 +msgid "E1xy/E2xy stop when repeating the same note" +msgstr "" + +#: src/gui/compatFlags.cpp:98 +msgid "ugh, if only this wasn't a thing..." +msgstr "" + +#: src/gui/compatFlags.cpp:100 +msgid "SN76489 duty macro always resets phase" +msgstr "" + +#: src/gui/compatFlags.cpp:102 +msgid "" +"when enabled, duty macro will always reset phase, even if its value hasn't " +"changed." +msgstr "" + +#: src/gui/compatFlags.cpp:104 +msgid "Broken volume scaling strategy" +msgstr "" + +#: src/gui/compatFlags.cpp:106 +msgid "" +"when enabled:\n" +"- log scaling: multiply\n" +"- linear scaling: subtract\n" +"when disabled:\n" +"- log scaling: subtract\n" +"- linear scaling: multiply" +msgstr "" + +#: src/gui/compatFlags.cpp:108 +msgid "Don't persist volume macro after it finishes" +msgstr "" + +#: src/gui/compatFlags.cpp:110 +msgid "" +"when enabled, a value in the volume column that happens after the volume " +"macro is done will disregard the macro." +msgstr "" + +#: src/gui/compatFlags.cpp:112 +msgid "Broken output volume on instrument change" +msgstr "" + +#: src/gui/compatFlags.cpp:114 +msgid "" +"if enabled, no checks for the presence of a volume macro will be made.\n" +"this will cause the last macro value to linger unless a value in the volume " +"column is present." +msgstr "" + +#: src/gui/compatFlags.cpp:116 +msgid "Broken output volume - Episode 2 (PLEASE KEEP ME DISABLED)" +msgstr "" + +#: src/gui/compatFlags.cpp:118 +msgid "" +"these compatibility flags are getting SO damn ridiculous and out of " +"control.\n" +"as you may have guessed, this one exists due to yet ANOTHER DefleMask-" +"specific behavior.\n" +"please keep this off at all costs, because I will not support it when ROM " +"export comes.\n" +"oh, and don't start an argument out of it. Furnace isn't a DefleMask " +"replacement, and no,\n" +"I am not trying to make it look like one with all these flags.\n" +"\n" +"oh, and what about the other flags that don't have to do with DefleMask?\n" +"those are for .mod import, future FamiTracker import and personal taste!\n" +"\n" +"end of rant" +msgstr "" + +#: src/gui/compatFlags.cpp:120 +msgid "Treat SN76489 periods under 8 as 1" +msgstr "" + +#: src/gui/compatFlags.cpp:122 +msgid "" +"when enabled, any SN period under 8 will be written as 1 instead.\n" +"this replicates DefleMask behavior, but reduces available period range." +msgstr "" + +#: src/gui/compatFlags.cpp:126 src/gui/compatFlags.cpp:304 +msgid "Old Furnace" +msgstr "" + +#: src/gui/compatFlags.cpp:127 +msgid "Arpeggio inhibits non-porta slides" +msgstr "" + +#: src/gui/compatFlags.cpp:129 src/gui/compatFlags.cpp:133 +msgid "behavior changed in 0.5.5" +msgstr "" + +#: src/gui/compatFlags.cpp:131 +msgid "Wack FM algorithm macro" +msgstr "" + +#: src/gui/compatFlags.cpp:135 +msgid "Broken shortcut slides (E1xy/E2xy)" +msgstr "" + +#: src/gui/compatFlags.cpp:137 +msgid "behavior changed in 0.5.7" +msgstr "" + +#: src/gui/compatFlags.cpp:139 +msgid "Stop portamento on note off" +msgstr "" + +#: src/gui/compatFlags.cpp:141 src/gui/compatFlags.cpp:145 +#: src/gui/compatFlags.cpp:149 src/gui/compatFlags.cpp:153 +#: src/gui/compatFlags.cpp:157 src/gui/compatFlags.cpp:161 +#: src/gui/compatFlags.cpp:165 +msgid "behavior changed in 0.6pre1" +msgstr "" + +#: src/gui/compatFlags.cpp:143 +msgid "Don't allow instrument change during slides" +msgstr "" + +#: src/gui/compatFlags.cpp:147 +msgid "Don't reset note to base on arpeggio stop" +msgstr "" + +#: src/gui/compatFlags.cpp:151 +msgid "ExtCh channel status is not shared among operators" +msgstr "" + +#: src/gui/compatFlags.cpp:155 +msgid "Disable new SegaPCM features (macros and better panning)" +msgstr "" + +#: src/gui/compatFlags.cpp:159 +msgid "Old FM octave boundary behavior" +msgstr "" + +#: src/gui/compatFlags.cpp:163 +msgid "Disable OPN2 DAC volume control" +msgstr "" + +#: src/gui/compatFlags.cpp:167 +msgid "Broken initial position of portamento after arpeggio" +msgstr "" + +#: src/gui/compatFlags.cpp:169 +msgid "behavior changed in 0.6pre1.5" +msgstr "" + +#: src/gui/compatFlags.cpp:171 +msgid "Disable new sample features" +msgstr "" + +#: src/gui/compatFlags.cpp:173 src/gui/compatFlags.cpp:177 +msgid "behavior changed in 0.6pre2" +msgstr "" + +#: src/gui/compatFlags.cpp:175 +msgid "Old arpeggio macro + pitch slide strategy" +msgstr "" + +#: src/gui/compatFlags.cpp:179 +msgid "Broken portamento during legato" +msgstr "" + +#: src/gui/compatFlags.cpp:181 +msgid "behavior changed in 0.6pre4" +msgstr "" + +#: src/gui/compatFlags.cpp:183 +msgid "Broken macros in some FM chips after note off" +msgstr "" + +#: src/gui/compatFlags.cpp:185 +msgid "behavior changed in 0.6pre5" +msgstr "" + +#: src/gui/compatFlags.cpp:187 +msgid "Pre-note does not take effects into consideration" +msgstr "" + +#: src/gui/compatFlags.cpp:189 +msgid "behavior changed in 0.6pre9" +msgstr "" + +#: src/gui/compatFlags.cpp:191 +msgid "Disable new NES DPCM features" +msgstr "" + +#: src/gui/compatFlags.cpp:193 +msgid "behavior changed in 0.6.1" +msgstr "" + +#: src/gui/compatFlags.cpp:195 +msgid "Legacy technical ALWAYS_SET_VOLUME behavior" +msgstr "" + +#: src/gui/compatFlags.cpp:197 +msgid "" +"behavior changed in 0.6.1\n" +"this flag will be removed if I find out that none of the songs break after " +"disabling it." +msgstr "" + +#: src/gui/compatFlags.cpp:199 +msgid "Old sample offset effect" +msgstr "" + +#: src/gui/compatFlags.cpp:201 +msgid "behavior changed in 0.6.3" +msgstr "" + +#: src/gui/compatFlags.cpp:205 +msgid ".mod import" +msgstr "" + +#: src/gui/compatFlags.cpp:206 +msgid "Don't slide on the first tick of a row" +msgstr "" + +#: src/gui/compatFlags.cpp:208 +msgid "" +"simulates ProTracker's behavior of not applying volume/pitch slides on the " +"first tick of a row." +msgstr "" + +#: src/gui/compatFlags.cpp:210 +msgid "Reset arpeggio position on row change" +msgstr "" + +#: src/gui/compatFlags.cpp:212 +msgid "" +"simulates ProTracker's behavior of arpeggio being bound to the current tick " +"of a row." +msgstr "" + +#: src/gui/compatFlags.cpp:216 +msgid "Pitch/Playback" +msgstr "" + +#: src/gui/compatFlags.cpp:217 +msgid "Pitch linearity:" +msgstr "" + +#: src/gui/compatFlags.cpp:223 +msgid "like ProTracker/FamiTracker" +msgstr "" + +#: src/gui/compatFlags.cpp:227 +msgid "Partial (only 04xy/E5xx)" +msgstr "" + +#: src/gui/compatFlags.cpp:231 +msgid "" +"like DefleMask\n" +"\n" +"this pitch linearity mode is deprecated due to:\n" +"- excessive complexity\n" +"- lack of possible optimization\n" +"\n" +"it is recommended to change it now because I will remove this option in the " +"future!" +msgstr "" + +#: src/gui/compatFlags.cpp:235 +msgid "Full" +msgstr "" + +#: src/gui/compatFlags.cpp:239 +msgid "like Impulse Tracker" +msgstr "" + +#: src/gui/compatFlags.cpp:246 +msgid "Pitch slide speed multiplier" +msgstr "" + +#: src/gui/compatFlags.cpp:252 +msgid "Loop modality:" +msgstr "" + +#: src/gui/compatFlags.cpp:254 +msgid "Reset channels" +msgstr "" + +#: src/gui/compatFlags.cpp:258 +msgid "" +"select to reset channels on loop. may trigger a voltage click on every loop!" +msgstr "" + +#: src/gui/compatFlags.cpp:260 +msgid "Soft reset channels" +msgstr "" + +#: src/gui/compatFlags.cpp:264 +msgid "select to turn channels off on loop." +msgstr "" + +#: src/gui/compatFlags.cpp:266 +msgid "Do nothing" +msgstr "" + +#: src/gui/compatFlags.cpp:270 +msgid "select to not reset channels on loop." +msgstr "" + +#: src/gui/compatFlags.cpp:274 +msgid "Cut/delay effect policy:" +msgstr "" + +#: src/gui/compatFlags.cpp:280 +msgid "only when time is less than speed (like DefleMask/ProTracker)" +msgstr "" + +#: src/gui/compatFlags.cpp:282 +msgid "Strict (old)" +msgstr "" + +#: src/gui/compatFlags.cpp:286 +msgid "only when time is less than or equal to speed (original buggy behavior)" +msgstr "" + +#: src/gui/compatFlags.cpp:292 +msgid "no checks" +msgstr "" + +#: src/gui/compatFlags.cpp:296 +msgid "Simultaneous jump (0B+0D) treatment:" +msgstr "" + +#: src/gui/compatFlags.cpp:302 +msgid "accept 0B+0D to jump to a specific row of an order" +msgstr "" + +#: src/gui/compatFlags.cpp:308 +msgid "only accept the first jump effect" +msgstr "" + +#: src/gui/compatFlags.cpp:314 +msgid "only accept 0Dxx" +msgstr "" + +#: src/gui/compatFlags.cpp:320 +msgid "Auto-insert one tick gap between notes" +msgstr "" + +#: src/gui/compatFlags.cpp:322 +msgid "" +"when enabled, a one-tick note cut will be inserted between non-legato/non-" +"portamento notes.\n" +"this simulates the behavior of some Amiga/SNES music engines.\n" +"\n" +"ineffective on C64." +msgstr "" + +#: src/gui/compatFlags.cpp:327 +msgid "Don't reset slides after note off" +msgstr "" + +#: src/gui/compatFlags.cpp:329 +msgid "when enabled, note off will not reset the channel's slide effect." +msgstr "" + +#: src/gui/compatFlags.cpp:331 +msgid "Don't reset portamento after reaching target" +msgstr "" + +#: src/gui/compatFlags.cpp:333 +msgid "" +"when enabled, the slide effect will not be disabled after it reaches its " +"target." +msgstr "" + +#: src/gui/compatFlags.cpp:335 +msgid "Continuous vibrato" +msgstr "" + +#: src/gui/compatFlags.cpp:337 +msgid "when enabled, vibrato phase/position will not be reset on a new note." +msgstr "" + +#: src/gui/compatFlags.cpp:339 +msgid "Pitch macro is not linear" +msgstr "" + +#: src/gui/compatFlags.cpp:341 +msgid "" +"when enabled, the pitch macro of an instrument is in frequency/period space." +msgstr "" + +#: src/gui/compatFlags.cpp:343 +msgid "Reset arpeggio effect position on new note" +msgstr "" + +#: src/gui/compatFlags.cpp:345 +msgid "when enabled, arpeggio effect (00xy) position is reset on a new note." +msgstr "" + +#: src/gui/compatFlags.cpp:347 +msgid "Volume scaling rounds up" +msgstr "" + +#: src/gui/compatFlags.cpp:349 +msgid "" +"when enabled, volume macros round up when applied\n" +"this prevents volume scaling from causing vol=0, which is silent on some " +"chips\n" +"\n" +"ineffective on logarithmic channels" +msgstr "" + +#: src/gui/guiConst.cpp:127 +msgid "Generic Sample" +msgstr "" + +#: src/gui/guiConst.cpp:155 +msgid "OPL (drums)" +msgstr "" + +#: src/gui/guiConst.cpp:191 +msgid "Forward" +msgstr "" + +#: src/gui/guiConst.cpp:192 +msgid "Backward" +msgstr "" + +#: src/gui/guiConst.cpp:193 +msgid "Ping pong" +msgstr "" + +#: src/gui/guiConst.cpp:218 +msgid "linear" +msgstr "" + +#: src/gui/guiConst.cpp:219 +msgid "cubic spline" +msgstr "" + +#: src/gui/guiConst.cpp:220 +msgid "blep synthesis" +msgstr "" + +#: src/gui/guiConst.cpp:221 +msgid "sinc" +msgstr "" + +#: src/gui/guiConst.cpp:222 +msgid "best possible" +msgstr "" + +#: src/gui/guiConst.cpp:226 src/gui/sampleEdit.cpp:137 +#: src/gui/sampleEdit.cpp:143 +msgid "Invalid" +msgstr "" + +#: src/gui/guiConst.cpp:231 +msgid "Time" +msgstr "" + +#: src/gui/guiConst.cpp:233 +msgid "System (Primary)" +msgstr "" + +#: src/gui/guiConst.cpp:234 +msgid "System (Secondary)" +msgstr "" + +#: src/gui/guiConst.cpp:530 +msgid "---Global" +msgstr "" + +#: src/gui/guiConst.cpp:532 +msgid "Open file" +msgstr "" + +#: src/gui/guiConst.cpp:533 +msgid "Restore backup" +msgstr "" + +#: src/gui/guiConst.cpp:534 +msgid "Save file" +msgstr "" + +#: src/gui/guiConst.cpp:535 +msgid "Save as" +msgstr "" + +#: src/gui/guiConst.cpp:537 src/gui/sampleEdit.cpp:982 +msgid "Undo" +msgstr "" + +#: src/gui/guiConst.cpp:539 src/gui/guiConst.cpp:541 src/gui/sampleEdit.cpp:989 +msgid "Redo" +msgstr "" + +#: src/gui/guiConst.cpp:543 +msgid "Exit" +msgstr "" + +#: src/gui/guiConst.cpp:544 +msgid "Play/Stop (toggle)" +msgstr "" + +#: src/gui/guiConst.cpp:547 +msgid "Play (from beginning)" +msgstr "" + +#: src/gui/guiConst.cpp:548 +msgid "Play (repeat pattern)" +msgstr "" + +#: src/gui/guiConst.cpp:549 +msgid "Play from cursor" +msgstr "" + +#: src/gui/guiConst.cpp:550 +msgid "Step row" +msgstr "" + +#: src/gui/guiConst.cpp:551 +msgid "Octave up" +msgstr "เพิ่มคู่แปด" + +#: src/gui/guiConst.cpp:552 +msgid "Octave down" +msgstr "ลดคู่แปด" + +#: src/gui/guiConst.cpp:553 +msgid "Previous instrument" +msgstr "" + +#: src/gui/guiConst.cpp:554 +msgid "Next instrument" +msgstr "" + +#: src/gui/guiConst.cpp:555 +msgid "Increase edit step" +msgstr "" + +#: src/gui/guiConst.cpp:556 +msgid "Decrease edit step" +msgstr "" + +#: src/gui/guiConst.cpp:557 +msgid "Toggle edit mode" +msgstr "" + +#: src/gui/guiConst.cpp:559 +msgid "Toggle repeat pattern" +msgstr "" + +#: src/gui/guiConst.cpp:562 +msgid "Toggle full-screen" +msgstr "" + +#: src/gui/guiConst.cpp:563 +msgid "Request voice from TX81Z" +msgstr "" + +#: src/gui/guiConst.cpp:565 +msgid "Clear song data" +msgstr "" + +#: src/gui/guiConst.cpp:567 src/gui/gui.cpp:5573 src/gui/gui.cpp:5625 +msgid "Command Palette" +msgstr "" + +#: src/gui/guiConst.cpp:569 +msgid "Recent files (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:570 +msgid "Instruments (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:571 +msgid "Samples (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:572 +msgid "Change instrument (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:573 +msgid "Add chip (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:578 +msgid "Instrument List" +msgstr "" + +#: src/gui/guiConst.cpp:579 src/gui/insEdit.cpp:5203 +msgid "Instrument Editor" +msgstr "" + +#: src/gui/guiConst.cpp:580 +msgid "Song Information" +msgstr "" + +#: src/gui/guiConst.cpp:583 +msgid "Wavetable List" +msgstr "" + +#: src/gui/guiConst.cpp:584 src/gui/waveEdit.cpp:409 +msgid "Wavetable Editor" +msgstr "" + +#: src/gui/guiConst.cpp:585 +msgid "Sample List" +msgstr "" + +#: src/gui/guiConst.cpp:594 +msgid "Debug Menu" +msgstr "" + +#: src/gui/guiConst.cpp:595 +msgid "Oscilloscope (master)" +msgstr "ออสซิลโลสโกป (ช่องมาสเตอร์)" + +#: src/gui/guiConst.cpp:603 src/gui/sysManager.cpp:41 +msgid "Chip Manager" +msgstr "" + +#: src/gui/guiConst.cpp:614 src/gui/csPlayer.cpp:112 +msgid "Command Stream Player" +msgstr "" + +#: src/gui/guiConst.cpp:615 +msgid "User Presets" +msgstr "" + +#: src/gui/guiConst.cpp:617 +msgid "Collapse/expand current window" +msgstr "" + +#: src/gui/guiConst.cpp:618 +msgid "Close current window" +msgstr "" + +#: src/gui/guiConst.cpp:621 +msgid "---Pattern" +msgstr "" + +#: src/gui/guiConst.cpp:622 +msgid "Transpose (+1)" +msgstr "" + +#: src/gui/guiConst.cpp:623 +msgid "Transpose (-1)" +msgstr "" + +#: src/gui/guiConst.cpp:624 +msgid "Transpose (+1 octave)" +msgstr "" + +#: src/gui/guiConst.cpp:625 +msgid "Transpose (-1 octave)" +msgstr "" + +#: src/gui/guiConst.cpp:626 +msgid "Increase values (+1)" +msgstr "" + +#: src/gui/guiConst.cpp:627 +msgid "Increase values (-1)" +msgstr "" + +#: src/gui/guiConst.cpp:628 +msgid "Increase values (+16)" +msgstr "" + +#: src/gui/guiConst.cpp:629 +msgid "Increase values (-16)" +msgstr "" + +#: src/gui/guiConst.cpp:630 +msgid "Select all" +msgstr "" + +#: src/gui/guiConst.cpp:631 +msgid "Cut" +msgstr "" + +#: src/gui/guiConst.cpp:632 +msgid "Copy" +msgstr "" + +#: src/gui/guiConst.cpp:633 +msgid "Paste" +msgstr "" + +#: src/gui/guiConst.cpp:634 +msgid "Paste Mix (foreground)" +msgstr "" + +#: src/gui/guiConst.cpp:635 +msgid "Paste Mix (background)" +msgstr "" + +#: src/gui/guiConst.cpp:636 +msgid "Paste Flood" +msgstr "" + +#: src/gui/guiConst.cpp:637 +msgid "Paste Overflow" +msgstr "" + +#: src/gui/guiConst.cpp:638 +msgid "Move cursor up" +msgstr "" + +#: src/gui/guiConst.cpp:639 +msgid "Move cursor down" +msgstr "" + +#: src/gui/guiConst.cpp:640 +msgid "Move cursor left" +msgstr "" + +#: src/gui/guiConst.cpp:641 +msgid "Move cursor right" +msgstr "" + +#: src/gui/guiConst.cpp:642 +msgid "Move cursor up by one (override Edit Step)" +msgstr "" + +#: src/gui/guiConst.cpp:643 +msgid "Move cursor down by one (override Edit Step)" +msgstr "" + +#: src/gui/guiConst.cpp:644 +msgid "Move cursor to previous channel" +msgstr "" + +#: src/gui/guiConst.cpp:645 +msgid "Move cursor to next channel" +msgstr "" + +#: src/gui/guiConst.cpp:646 +msgid "Move cursor to next channel (overflow)" +msgstr "" + +#: src/gui/guiConst.cpp:647 +msgid "Move cursor to previous channel (overflow)" +msgstr "" + +#: src/gui/guiConst.cpp:648 +msgid "Move cursor to beginning of pattern" +msgstr "" + +#: src/gui/guiConst.cpp:649 +msgid "Move cursor to end of pattern" +msgstr "" + +#: src/gui/guiConst.cpp:650 +msgid "Move cursor up (coarse)" +msgstr "" + +#: src/gui/guiConst.cpp:651 +msgid "Move cursor down (coarse)" +msgstr "" + +#: src/gui/guiConst.cpp:652 +msgid "Expand selection upwards" +msgstr "" + +#: src/gui/guiConst.cpp:653 +msgid "Expand selection downwards" +msgstr "" + +#: src/gui/guiConst.cpp:654 +msgid "Expand selection to the left" +msgstr "" + +#: src/gui/guiConst.cpp:655 +msgid "Expand selection to the right" +msgstr "" + +#: src/gui/guiConst.cpp:656 +msgid "Expand selection upwards by one (override Edit Step)" +msgstr "" + +#: src/gui/guiConst.cpp:657 +msgid "Expand selection downwards by one (override Edit Step)" +msgstr "" + +#: src/gui/guiConst.cpp:658 +msgid "Expand selection to beginning of pattern" +msgstr "" + +#: src/gui/guiConst.cpp:659 +msgid "Expand selection to end of pattern" +msgstr "" + +#: src/gui/guiConst.cpp:660 +msgid "Expand selection upwards (coarse)" +msgstr "" + +#: src/gui/guiConst.cpp:661 +msgid "Expand selection downwards (coarse)" +msgstr "" + +#: src/gui/guiConst.cpp:662 +msgid "Move selection up" +msgstr "" + +#: src/gui/guiConst.cpp:663 +msgid "Move selection down" +msgstr "" + +#: src/gui/guiConst.cpp:664 +msgid "Move selection to previous channel" +msgstr "" + +#: src/gui/guiConst.cpp:665 +msgid "Move selection to next channel" +msgstr "" + +#: src/gui/guiConst.cpp:667 +msgid "Pull delete" +msgstr "" + +#: src/gui/guiConst.cpp:668 +msgid "Insert" +msgstr "" + +#: src/gui/guiConst.cpp:669 +msgid "Mute channel at cursor" +msgstr "" + +#: src/gui/guiConst.cpp:670 +msgid "Solo channel at cursor" +msgstr "" + +#: src/gui/guiConst.cpp:671 +msgid "Unmute all channels" +msgstr "" + +#: src/gui/guiConst.cpp:672 +msgid "Go to next order" +msgstr "" + +#: src/gui/guiConst.cpp:673 +msgid "Go to previous order" +msgstr "" + +#: src/gui/guiConst.cpp:674 +msgid "Collapse channel at cursor" +msgstr "" + +#: src/gui/guiConst.cpp:675 +msgid "Increase effect columns" +msgstr "" + +#: src/gui/guiConst.cpp:676 +msgid "Decrease effect columns" +msgstr "" + +#: src/gui/guiConst.cpp:677 +msgid "Interpolate" +msgstr "" + +#: src/gui/guiConst.cpp:678 src/gui/insEdit.cpp:530 +msgid "Fade" +msgstr "" + +#: src/gui/guiConst.cpp:679 +msgid "Invert values" +msgstr "" + +#: src/gui/guiConst.cpp:680 +msgid "Flip selection" +msgstr "" + +#: src/gui/guiConst.cpp:681 +msgid "Collapse rows" +msgstr "" + +#: src/gui/guiConst.cpp:682 +msgid "Expand rows" +msgstr "" + +#: src/gui/guiConst.cpp:683 +msgid "Collapse pattern" +msgstr "" + +#: src/gui/guiConst.cpp:684 +msgid "Expand pattern" +msgstr "" + +#: src/gui/guiConst.cpp:685 +msgid "Collapse song" +msgstr "" + +#: src/gui/guiConst.cpp:686 +msgid "Expand song" +msgstr "" + +#: src/gui/guiConst.cpp:687 +msgid "Set note input latch" +msgstr "" + +#: src/gui/guiConst.cpp:688 +msgid "Change mobile scroll mode" +msgstr "" + +#: src/gui/guiConst.cpp:689 +msgid "Clear note input latch" +msgstr "" + +#: src/gui/guiConst.cpp:692 +msgid "---Instrument list" +msgstr "" + +#: src/gui/guiConst.cpp:693 +msgid "Add instrument" +msgstr "" + +#: src/gui/guiConst.cpp:694 +msgid "Duplicate instrument" +msgstr "" + +#: src/gui/guiConst.cpp:695 +msgid "Open instrument" +msgstr "" + +#: src/gui/guiConst.cpp:696 +msgid "Open instrument (replace current)" +msgstr "" + +#: src/gui/guiConst.cpp:697 +msgid "Save instrument" +msgstr "" + +#: src/gui/guiConst.cpp:698 +msgid "Save instrument (.dmp)" +msgstr "" + +#: src/gui/guiConst.cpp:699 +msgid "Move instrument up in list" +msgstr "" + +#: src/gui/guiConst.cpp:700 +msgid "Move instrument down in list" +msgstr "" + +#: src/gui/guiConst.cpp:701 +msgid "Delete instrument" +msgstr "" + +#: src/gui/guiConst.cpp:702 +msgid "Edit instrument" +msgstr "" + +#: src/gui/guiConst.cpp:703 +msgid "Instrument cursor up" +msgstr "" + +#: src/gui/guiConst.cpp:704 +msgid "Instrument cursor down" +msgstr "" + +#: src/gui/guiConst.cpp:705 +msgid "Instruments: toggle folders/standard view" +msgstr "" + +#: src/gui/guiConst.cpp:708 +msgid "---Wavetable list" +msgstr "" + +#: src/gui/guiConst.cpp:709 +msgid "Add wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:710 +msgid "Duplicate wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:711 +msgid "Open wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:712 +msgid "Open wavetable (replace current)" +msgstr "" + +#: src/gui/guiConst.cpp:713 +msgid "Save wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:714 +msgid "Save wavetable (.dmw)" +msgstr "" + +#: src/gui/guiConst.cpp:715 +msgid "Save wavetable (raw)" +msgstr "" + +#: src/gui/guiConst.cpp:716 +msgid "Move wavetable up in list" +msgstr "" + +#: src/gui/guiConst.cpp:717 +msgid "Move wavetable down in list" +msgstr "" + +#: src/gui/guiConst.cpp:718 +msgid "Delete wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:719 +msgid "Edit wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:720 +msgid "Wavetable cursor up" +msgstr "" + +#: src/gui/guiConst.cpp:721 +msgid "Wavetable cursor down" +msgstr "" + +#: src/gui/guiConst.cpp:722 +msgid "Wavetables: toggle folders/standard view" +msgstr "" + +#: src/gui/guiConst.cpp:725 +msgid "---Sample list" +msgstr "" + +#: src/gui/guiConst.cpp:726 +msgid "Add sample" +msgstr "" + +#: src/gui/guiConst.cpp:727 +msgid "Duplicate sample" +msgstr "" + +#: src/gui/guiConst.cpp:728 +msgid "Open sample" +msgstr "" + +#: src/gui/guiConst.cpp:729 +msgid "Open sample (replace current)" +msgstr "" + +#: src/gui/guiConst.cpp:730 +msgid "Import raw sample data" +msgstr "" + +#: src/gui/guiConst.cpp:731 +msgid "Import raw sample data (replace current)" +msgstr "" + +#: src/gui/guiConst.cpp:732 +msgid "Save sample" +msgstr "" + +#: src/gui/guiConst.cpp:733 +msgid "Save sample (raw)" +msgstr "" + +#: src/gui/guiConst.cpp:734 +msgid "Move sample up in list" +msgstr "" + +#: src/gui/guiConst.cpp:735 +msgid "Move sample down in list" +msgstr "" + +#: src/gui/guiConst.cpp:736 +msgid "Delete sample" +msgstr "" + +#: src/gui/guiConst.cpp:737 +msgid "Edit sample" +msgstr "" + +#: src/gui/guiConst.cpp:738 +msgid "Sample cursor up" +msgstr "" + +#: src/gui/guiConst.cpp:739 +msgid "Sample cursor down" +msgstr "" + +#: src/gui/guiConst.cpp:741 src/gui/sampleEdit.cpp:1339 +msgid "Stop sample preview" +msgstr "" + +#: src/gui/guiConst.cpp:742 +msgid "Samples: Toggle folders/standard view" +msgstr "" + +#: src/gui/guiConst.cpp:743 +msgid "Samples: Make me a drum kit" +msgstr "" + +#: src/gui/guiConst.cpp:746 +msgid "---Sample editor" +msgstr "" + +#: src/gui/guiConst.cpp:747 +msgid "Sample editor mode: Select" +msgstr "" + +#: src/gui/guiConst.cpp:748 +msgid "Sample editor mode: Draw" +msgstr "" + +#: src/gui/guiConst.cpp:749 +msgid "Sample editor: Cut" +msgstr "" + +#: src/gui/guiConst.cpp:750 +msgid "Sample editor: Copy" +msgstr "" + +#: src/gui/guiConst.cpp:751 +msgid "Sample editor: Paste" +msgstr "" + +#: src/gui/guiConst.cpp:752 +msgid "Sample editor: Paste replace" +msgstr "" + +#: src/gui/guiConst.cpp:753 +msgid "Sample editor: Paste mix" +msgstr "" + +#: src/gui/guiConst.cpp:754 +msgid "Sample editor: Select all" +msgstr "" + +#: src/gui/guiConst.cpp:755 +msgid "Sample editor: Resize" +msgstr "" + +#: src/gui/guiConst.cpp:756 +msgid "Sample editor: Resample" +msgstr "" + +#: src/gui/guiConst.cpp:757 +msgid "Sample editor: Amplify" +msgstr "" + +#: src/gui/guiConst.cpp:758 +msgid "Sample editor: Normalize" +msgstr "" + +#: src/gui/guiConst.cpp:759 +msgid "Sample editor: Fade in" +msgstr "" + +#: src/gui/guiConst.cpp:760 +msgid "Sample editor: Fade out" +msgstr "" + +#: src/gui/guiConst.cpp:761 +msgid "Sample editor: Apply silence" +msgstr "" + +#: src/gui/guiConst.cpp:762 +msgid "Sample editor: Insert silence" +msgstr "" + +#: src/gui/guiConst.cpp:763 +msgid "Sample editor: Delete" +msgstr "" + +#: src/gui/guiConst.cpp:764 +msgid "Sample editor: Trim" +msgstr "" + +#: src/gui/guiConst.cpp:765 +msgid "Sample editor: Reverse" +msgstr "" + +#: src/gui/guiConst.cpp:766 +msgid "Sample editor: Invert" +msgstr "" + +#: src/gui/guiConst.cpp:767 +msgid "Sample editor: Signed/unsigned exchange" +msgstr "" + +#: src/gui/guiConst.cpp:768 +msgid "Sample editor: Apply filter" +msgstr "" + +#: src/gui/guiConst.cpp:769 +msgid "Sample editor: Crossfade loop points" +msgstr "" + +#: src/gui/guiConst.cpp:770 +msgid "Sample editor: Preview sample" +msgstr "" + +#: src/gui/guiConst.cpp:771 +msgid "Sample editor: Stop sample preview" +msgstr "" + +#: src/gui/guiConst.cpp:772 +msgid "Sample editor: Zoom in" +msgstr "" + +#: src/gui/guiConst.cpp:773 +msgid "Sample editor: Zoom out" +msgstr "" + +#: src/gui/guiConst.cpp:774 +msgid "Sample editor: Toggle auto-zoom" +msgstr "" + +#: src/gui/guiConst.cpp:775 +msgid "Sample editor: Create instrument from sample" +msgstr "" + +#: src/gui/guiConst.cpp:776 +msgid "Sample editor: Set loop to selection" +msgstr "" + +#: src/gui/guiConst.cpp:777 +msgid "Sample editor: Create wavetable from selection" +msgstr "" + +#: src/gui/guiConst.cpp:780 +msgid "---Orders" +msgstr "" + +#: src/gui/guiConst.cpp:781 +msgid "Previous order" +msgstr "" + +#: src/gui/guiConst.cpp:782 +msgid "Next order" +msgstr "" + +#: src/gui/guiConst.cpp:783 +msgid "Order cursor left" +msgstr "" + +#: src/gui/guiConst.cpp:784 +msgid "Order cursor right" +msgstr "" + +#: src/gui/guiConst.cpp:785 +msgid "Increase order value" +msgstr "" + +#: src/gui/guiConst.cpp:786 +msgid "Decrease order value" +msgstr "" + +#: src/gui/guiConst.cpp:787 +msgid "Switch order edit mode" +msgstr "" + +#: src/gui/guiConst.cpp:788 +msgid "Order: toggle alter entire row" +msgstr "" + +#: src/gui/guiConst.cpp:789 +msgid "Add order" +msgstr "" + +#: src/gui/guiConst.cpp:790 +msgid "Duplicate order" +msgstr "" + +#: src/gui/guiConst.cpp:791 +msgid "Deep clone order" +msgstr "" + +#: src/gui/guiConst.cpp:792 +msgid "Copy current order to end of song" +msgstr "" + +#: src/gui/guiConst.cpp:793 +msgid "Deep clone current order to end of song" +msgstr "" + +#: src/gui/guiConst.cpp:797 +msgid "Replay order" +msgstr "" + +#: src/gui/guiConst.cpp:1392 +msgid "All chips" +msgstr "" + +#: src/gui/guiConst.cpp:1396 src/gui/insEdit.cpp:6954 src/gui/insEdit.cpp:7204 +#: src/gui/insEdit.cpp:7458 src/gui/insEdit.cpp:7480 +msgid "Special" +msgstr "" + +#: src/gui/piano.cpp:103 +msgid "Options" +msgstr "" + +#: src/gui/piano.cpp:106 +msgid "Key layout:" +msgstr "" + +#: src/gui/piano.cpp:111 +msgid "Standard" +msgstr "" + +#: src/gui/piano.cpp:114 +msgid "Continuous" +msgstr "" + +#: src/gui/piano.cpp:118 +msgid "Value input pad:" +msgstr "" + +#: src/gui/piano.cpp:120 +msgid "Disabled" +msgstr "" + +#: src/gui/piano.cpp:123 +msgid "Replace piano" +msgstr "" + +#: src/gui/piano.cpp:126 +msgid "Split (automatic)" +msgstr "" + +#: src/gui/piano.cpp:129 +msgid "Split (always visible)" +msgstr "" + +#: src/gui/piano.cpp:133 +msgid "Share play/edit offset/range" +msgstr "" + +#: src/gui/piano.cpp:134 +msgid "Read-only (can't input notes)" +msgstr "" + +#: src/gui/waveEdit.cpp:30 src/gui/waveEdit.cpp:192 src/gui/insEdit.cpp:177 +#: src/gui/insEdit.cpp:188 src/gui/insEdit.cpp:199 +msgid "Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:32 src/gui/waveEdit.cpp:202 src/gui/insEdit.cpp:325 +#: src/gui/insEdit.cpp:654 +msgid "Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:39 +msgid "Cosine" +msgstr "" + +#: src/gui/waveEdit.cpp:193 +msgid "Rect. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:194 +msgid "Abs. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:195 +msgid "Quart. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:196 +msgid "Squish. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:197 +msgid "Abs. Squish. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:200 +msgid "rectSquare" +msgstr "" + +#: src/gui/waveEdit.cpp:203 +msgid "Rect. Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:204 +msgid "Abs. Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:206 +msgid "Cubed Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:207 +msgid "Rect. Cubed Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:208 +msgid "Abs. Cubed Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:210 +msgid "Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:211 +msgid "Rect. Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:212 +msgid "Abs. Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:213 +msgid "Quart. Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:214 +msgid "Squish. Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:215 +msgid "Squish. Abs. Cub. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:218 +msgid "Rect. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:219 +msgid "Abs. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:220 +msgid "Quart. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:221 +msgid "Squish. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:222 +msgid "Abs. Squish. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:224 +msgid "Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:225 +msgid "Rect. Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:226 +msgid "Abs. Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:227 +msgid "Quart. Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:228 +msgid "Squish. Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:229 +msgid "Squish. Abs. Cub. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:412 src/gui/waveEdit.cpp:413 +msgid "no wavetable selected" +msgstr "" + +#: src/gui/waveEdit.cpp:424 src/gui/sampleEdit.cpp:111 src/gui/insEdit.cpp:5223 +msgid "select one..." +msgstr "" + +#: src/gui/waveEdit.cpp:432 src/gui/waveEdit.cpp:439 src/gui/sampleEdit.cpp:119 +#: src/gui/sampleEdit.cpp:126 src/gui/insEdit.cpp:5236 src/gui/insEdit.cpp:5243 +msgid "or" +msgstr "หรือ" + +#: src/gui/waveEdit.cpp:441 src/gui/sampleEdit.cpp:128 src/gui/insEdit.cpp:5245 +msgid "Create New" +msgstr "สร้างใหม่" + +#: src/gui/waveEdit.cpp:487 +msgid "Steps" +msgstr "" + +#: src/gui/waveEdit.cpp:491 +msgid "Lines" +msgstr "" + +#: src/gui/waveEdit.cpp:496 src/gui/insEdit.cpp:2687 +msgid "Width" +msgstr "" + +#: src/gui/waveEdit.cpp:498 +msgid "" +"use a width of:\n" +"- any on Amiga/N163\n" +"- 32 on Game Boy, PC Engine, SCC, Konami Bubble System, Namco WSG, Virtual " +"Boy and WonderSwan\n" +"- 64 on FDS\n" +"- 128 on X1-010\n" +"any other widths will be scaled during playback." +msgstr "" + +#: src/gui/waveEdit.cpp:510 +msgid "Height" +msgstr "" + +#: src/gui/waveEdit.cpp:512 +msgid "" +"use a height of:\n" +"- 16 for Game Boy, WonderSwan, Namco WSG, Konami Bubble System, X1-010 " +"Envelope shape and N163\n" +"- 32 for PC Engine\n" +"- 64 for FDS and Virtual Boy\n" +"- 256 for X1-010 and SCC\n" +"any other heights will be scaled during playback." +msgstr "" + +#: src/gui/waveEdit.cpp:578 +msgid "Shapes" +msgstr "" + +#: src/gui/waveEdit.cpp:597 src/gui/insEdit.cpp:5879 src/gui/insEdit.cpp:6922 +#: src/gui/insEdit.cpp:6948 src/gui/insEdit.cpp:7008 src/gui/insEdit.cpp:7048 +#: src/gui/insEdit.cpp:7150 src/gui/insEdit.cpp:7436 src/gui/insEdit.cpp:7472 +msgid "Duty" +msgstr "" + +#: src/gui/waveEdit.cpp:607 +msgid "Exponent" +msgstr "" + +#: src/gui/waveEdit.cpp:617 +msgid "XOR Point" +msgstr "" + +#: src/gui/waveEdit.cpp:627 +msgid "Amplitude/Phase" +msgstr "" + +#: src/gui/waveEdit.cpp:679 src/gui/waveEdit.cpp:723 src/gui/waveEdit.cpp:728 +msgid "Op" +msgstr "" + +#: src/gui/waveEdit.cpp:683 +msgid "Mult" +msgstr "" + +#: src/gui/waveEdit.cpp:685 +msgid "FB" +msgstr "" + +#: src/gui/waveEdit.cpp:749 src/gui/waveEdit.cpp:750 +msgid "Connection Diagram" +msgstr "" + +#: src/gui/waveEdit.cpp:765 +msgid "Out" +msgstr "" + +#: src/gui/waveEdit.cpp:872 +msgid "WaveTools" +msgstr "" + +#: src/gui/waveEdit.cpp:890 +msgid "Scale X" +msgstr "" + +#: src/gui/waveEdit.cpp:896 +msgid "wavetable longer than 256 samples!" +msgstr "" + +#: src/gui/waveEdit.cpp:960 +msgid "Scale Y" +msgstr "" + +#: src/gui/waveEdit.cpp:978 +msgid "Offset X" +msgstr "" + +#: src/gui/waveEdit.cpp:1000 +msgid "Offset Y" +msgstr "" + +#: src/gui/waveEdit.cpp:1017 +msgid "Smooth" +msgstr "" + +#: src/gui/waveEdit.cpp:1045 src/gui/sampleEdit.cpp:996 +msgid "Amplify" +msgstr "" + +#: src/gui/waveEdit.cpp:1063 src/gui/sampleEdit.cpp:1046 +msgid "Normalize" +msgstr "" + +#: src/gui/waveEdit.cpp:1105 src/gui/sampleEdit.cpp:1121 +msgid "Reverse" +msgstr "" + +#: src/gui/waveEdit.cpp:1117 +msgid "Half" +msgstr "" + +#: src/gui/waveEdit.cpp:1127 +msgid "Double" +msgstr "" + +#: src/gui/waveEdit.cpp:1137 +msgid "Convert Signed/Unsigned" +msgstr "" + +#: src/gui/waveEdit.cpp:1167 +msgid "Dec" +msgstr "" + +#: src/gui/waveEdit.cpp:1171 src/gui/csPlayer.cpp:247 +msgid "Hex" +msgstr "" + +#: src/gui/waveEdit.cpp:1179 +msgid "Signed/Unsigned" +msgstr "" + +#: src/gui/sampleEdit.cpp:65 +#, c-format +msgid "%s: maximum sample rate is %d" +msgstr "" + +#: src/gui/sampleEdit.cpp:72 +#, c-format +msgid "%s: minimum sample rate is %d" +msgstr "" + +#: src/gui/sampleEdit.cpp:79 +#, c-format +msgid "%s: sample rate must be %d" +msgstr "" + +#: src/gui/sampleEdit.cpp:99 src/gui/sampleEdit.cpp:100 +msgid "no sample selected" +msgstr "" + +#: src/gui/sampleEdit.cpp:229 +#, c-format +msgid "SNES: loop start must be a multiple of 16 (try with %d)" +msgstr "" + +#: src/gui/sampleEdit.cpp:235 +#, c-format +msgid "SNES: loop end must be a multiple of 16 (try with %d)" +msgstr "" + +#: src/gui/sampleEdit.cpp:240 +msgid "SNES: sample length will be padded to multiple of 16" +msgstr "" + +#: src/gui/sampleEdit.cpp:249 +msgid "QSound: loop cannot be longer than 32767 samples" +msgstr "" + +#: src/gui/sampleEdit.cpp:259 +msgid "NES: loop point ignored on DPCM (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:263 +msgid "NES: maximum DPCM sample length is 32648" +msgstr "" + +#: src/gui/sampleEdit.cpp:268 +msgid "X1-010: samples can't loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:271 +msgid "X1-010: maximum sample length is 131072" +msgstr "" + +#: src/gui/sampleEdit.cpp:276 +msgid "GA20: samples can't loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:287 +msgid "YM2608: loop point ignored on ADPCM (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:290 +msgid "YM2608: sample length will be padded to multiple of 512" +msgstr "" + +#: src/gui/sampleEdit.cpp:300 +msgid "YM2610: ADPCM-A samples can't loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:302 +msgid "YM2610: loop point ignored on ADPCM-B (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:305 +msgid "YM2610: sample length will be padded to multiple of 512" +msgstr "" + +#: src/gui/sampleEdit.cpp:309 +msgid "YM2610: maximum ADPCM-A sample length is 2097152" +msgstr "" + +#: src/gui/sampleEdit.cpp:318 +msgid "Y8950: loop point ignored on ADPCM (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:321 +msgid "Y8950: sample length will be padded to multiple of 512" +msgstr "" + +#: src/gui/sampleEdit.cpp:328 +msgid "Amiga: loop start must be a multiple of 2" +msgstr "" + +#: src/gui/sampleEdit.cpp:331 +msgid "Amiga: loop end must be a multiple of 2" +msgstr "" + +#: src/gui/sampleEdit.cpp:335 +msgid "Amiga: maximum sample length is 131070" +msgstr "" + +#: src/gui/sampleEdit.cpp:344 +msgid "SegaPCM: maximum sample length is 65280" +msgstr "" + +#: src/gui/sampleEdit.cpp:353 +msgid "K053260: loop point ignored (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:357 +msgid "K053260: maximum sample length is 65535" +msgstr "" + +#: src/gui/sampleEdit.cpp:362 +msgid "C140: maximum sample length is 65535" +msgstr "" + +#: src/gui/sampleEdit.cpp:371 +msgid "C219: loop start must be a multiple of 2" +msgstr "" + +#: src/gui/sampleEdit.cpp:374 +msgid "C219: loop end must be a multiple of 2" +msgstr "" + +#: src/gui/sampleEdit.cpp:378 +msgid "C219: maximum sample length is 131072" +msgstr "" + +#: src/gui/sampleEdit.cpp:386 +msgid "MSM6295: samples can't loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:389 +msgid "MSM6295: maximum bankswitched sample length is 129024" +msgstr "" + +#: src/gui/sampleEdit.cpp:395 +msgid "GBA DMA: loop start must be a multiple of 4" +msgstr "" + +#: src/gui/sampleEdit.cpp:398 +msgid "GBA DMA: loop length must be a multiple of 16" +msgstr "" + +#: src/gui/sampleEdit.cpp:402 +msgid "GBA DMA: sample length will be padded to multiple of 16" +msgstr "" + +#: src/gui/sampleEdit.cpp:411 +msgid "ES5506: backward loop mode isn't supported" +msgstr "" + +#: src/gui/sampleEdit.cpp:414 +msgid "" +"backward/ping-pong only supported in Generic PCM DAC\n" +"ping-pong also on ES5506" +msgstr "" + +#: src/gui/sampleEdit.cpp:444 +msgid "Info" +msgstr "" + +#: src/gui/sampleEdit.cpp:447 src/gui/sampleEdit.cpp:933 +msgid "Rate" +msgstr "" + +#: src/gui/sampleEdit.cpp:453 +msgid "Compat Rate" +msgstr "" + +#: src/gui/sampleEdit.cpp:457 +msgid "" +"used in DefleMask-compatible sample mode (17xx), in where samples are mapped " +"to an octave." +msgstr "" + +#: src/gui/sampleEdit.cpp:463 +#, c-format +msgid "Loop (length: %d)##Loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:463 src/gui/insEdit.cpp:544 src/gui/insEdit.cpp:554 +#: src/gui/insEdit.cpp:605 src/gui/insEdit.cpp:6017 +msgid "Loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:487 src/gui/sampleEdit.cpp:716 +#: src/gui/sampleEdit.cpp:752 +msgid "changing the loop in a BRR sample may result in glitches!" +msgstr "" + +#: src/gui/sampleEdit.cpp:529 +msgid "BRR emphasis" +msgstr "" + +#: src/gui/sampleEdit.cpp:538 +msgid "" +"this is a BRR sample.\n" +"enabling this option will muffle it (only affects non-SNES chips)." +msgstr "" + +#: src/gui/sampleEdit.cpp:540 +msgid "" +"enable this option to slightly boost high frequencies\n" +"to compensate for the SNES' Gaussian filter's muffle." +msgstr "" + +#: src/gui/sampleEdit.cpp:546 +msgid "8-bit dither" +msgstr "" + +#: src/gui/sampleEdit.cpp:554 +msgid "dither the sample when used on a chip that only supports 8-bit samples." +msgstr "" + +#: src/gui/sampleEdit.cpp:695 src/gui/gui.cpp:2975 +msgid "Start" +msgstr "" + +#: src/gui/sampleEdit.cpp:731 src/gui/gui.cpp:2983 +msgid "End" +msgstr "" + +#: src/gui/sampleEdit.cpp:841 +#, c-format +msgid "" +"%s\n" +"%d bytes free" +msgstr "" + +#: src/gui/sampleEdit.cpp:843 +#, c-format +msgid "" +"%s (%s)\n" +"%d bytes free" +msgstr "" + +#: src/gui/sampleEdit.cpp:847 +msgid "" +"\n" +"\n" +"not enough memory for this sample!" +msgstr "" + +#: src/gui/sampleEdit.cpp:871 +msgid "Edit mode: Select" +msgstr "" + +#: src/gui/sampleEdit.cpp:880 +msgid "Edit mode: Draw" +msgstr "" + +#: src/gui/sampleEdit.cpp:891 src/gui/sampleEdit.cpp:902 +msgid "Resize" +msgstr "" + +#: src/gui/sampleEdit.cpp:906 +msgid "couldn't resize! make sure your sample is 8 or 16-bit." +msgstr "" + +#: src/gui/sampleEdit.cpp:926 src/gui/sampleEdit.cpp:957 +msgid "Resample" +msgstr "" + +#: src/gui/sampleEdit.cpp:951 +msgid "Factor" +msgstr "" + +#: src/gui/sampleEdit.cpp:956 +msgid "Filter" +msgstr "" + +#: src/gui/sampleEdit.cpp:961 +msgid "couldn't resample! make sure your sample is 8 or 16-bit." +msgstr "" + +#: src/gui/sampleEdit.cpp:1010 src/gui/sampleEdit.cpp:1197 +#: src/gui/sampleEdit.cpp:1281 +msgid "Apply" +msgstr "" + +#: src/gui/sampleEdit.cpp:1053 +msgid "Fade in" +msgstr "" + +#: src/gui/sampleEdit.cpp:1060 +msgid "Fade out" +msgstr "" + +#: src/gui/sampleEdit.cpp:1065 +msgid "Insert silence" +msgstr "" + +#: src/gui/sampleEdit.cpp:1076 +msgid "Go" +msgstr "" + +#: src/gui/sampleEdit.cpp:1081 +msgid "couldn't insert! make sure your sample is 8 or 16-bit." +msgstr "" + +#: src/gui/sampleEdit.cpp:1098 +msgid "Apply silence" +msgstr "" + +#: src/gui/sampleEdit.cpp:1112 +msgid "Trim" +msgstr "" + +#: src/gui/sampleEdit.cpp:1135 +msgid "Signed/unsigned exchange" +msgstr "" + +#: src/gui/sampleEdit.cpp:1140 +msgid "Apply filter" +msgstr "" + +#: src/gui/sampleEdit.cpp:1151 +msgid "Cutoff:" +msgstr "" + +#: src/gui/sampleEdit.cpp:1161 src/gui/insEdit.cpp:5895 +#: src/gui/insEdit.cpp:5898 src/gui/insEdit.cpp:6953 src/gui/insEdit.cpp:7216 +#: src/gui/insEdit.cpp:7478 +msgid "Resonance" +msgstr "" + +#: src/gui/sampleEdit.cpp:1167 src/gui/insEdit.cpp:6897 +msgid "Power" +msgstr "" + +#: src/gui/sampleEdit.cpp:1181 +msgid "Low-pass" +msgstr "" + +#: src/gui/sampleEdit.cpp:1186 +msgid "Band-pass" +msgstr "" + +#: src/gui/sampleEdit.cpp:1191 +msgid "High-pass" +msgstr "" + +#: src/gui/sampleEdit.cpp:1262 +msgid "Crossfade loop points" +msgstr "" + +#: src/gui/sampleEdit.cpp:1271 +msgid "Number of samples" +msgstr "" + +#: src/gui/sampleEdit.cpp:1277 +msgid "Linear <-> Equal power" +msgstr "" + +#: src/gui/sampleEdit.cpp:1283 +msgid "Crossfade: length would go out of bounds. Aborted..." +msgstr "" + +#: src/gui/sampleEdit.cpp:1286 +msgid "Crossfade: length would overflow loopStart. Try a smaller random value." +msgstr "" + +#: src/gui/sampleEdit.cpp:1332 +msgid "Preview sample" +msgstr "" + +#: src/gui/sampleEdit.cpp:1346 +msgid "Create instrument from sample" +msgstr "" + +#: src/gui/sampleEdit.cpp:1747 +msgid "paste (replace)" +msgstr "" + +#: src/gui/sampleEdit.cpp:1750 +msgid "paste (mix)" +msgstr "" + +#: src/gui/sampleEdit.cpp:1754 src/gui/gui.cpp:2769 +msgid "select all" +msgstr "" + +#: src/gui/sampleEdit.cpp:1758 +msgid "set loop to selection" +msgstr "" + +#: src/gui/sampleEdit.cpp:1761 +msgid "create wavetable from selection" +msgstr "" + +#: src/gui/sampleEdit.cpp:1767 +msgid "Draw" +msgstr "" + +#: src/gui/sampleEdit.cpp:1767 +msgid "Select" +msgstr "" + +#: src/gui/sampleEdit.cpp:1769 +#, c-format +msgid "%d samples, %d bytes" +msgstr "" + +#: src/gui/sampleEdit.cpp:1784 +#, c-format +msgid " (%d-%d: %d samples)" +msgstr "" + +#: src/gui/sampleEdit.cpp:1976 +msgid "Non-8/16-bit samples cannot be edited without prior conversion." +msgstr "" + +#: src/gui/newSong.cpp:122 src/gui/newSong.cpp:123 +msgid "Choose a System!" +msgstr "" + +#: src/gui/newSong.cpp:179 +msgid "Categories" +msgstr "" + +#: src/gui/newSong.cpp:210 +msgid "no systems here yet!" +msgstr "" + +#: src/gui/newSong.cpp:212 +msgid "no results" +msgstr "" + +#: src/gui/newSong.cpp:228 +msgid "I'm feeling lucky" +msgstr "" + +#: src/gui/newSong.cpp:230 +msgid "no categories available! what in the world." +msgstr "" + +#: src/gui/newSong.cpp:265 +msgid "it appears you're extremely lucky today!" +msgstr "" + +#: src/gui/cursor.cpp:205 +#, c-format +msgid "finish selection: %d.%d,%d - %d.%d,%d" +msgstr "" + +#: src/gui/tutorial.cpp:487 +msgid "" +"Play demo songs?\n" +"- Down: Play current song\n" +"- Up: Play demo songs" +msgstr "" + +#: src/gui/tutorial.cpp:491 +msgid "" +"Welcome to Combat Vehicle!\n" +"\n" +"Controls:\n" +"X - Shoot Arrow Key - Move\n" +"Z - Special Esc - Quit" +msgstr "" + +#: src/gui/tutorial.cpp:496 +msgid "GAME OVER" +msgstr "" + +#: src/gui/tutorial.cpp:498 +msgid "High Score!" +msgstr "" + +#: src/gui/tutorial.cpp:658 +msgid "Welcome!" +msgstr "" + +#: src/gui/tutorial.cpp:661 +msgid "welcome to Furnace, the biggest open-source chiptune tracker!" +msgstr "" + +#: src/gui/tutorial.cpp:665 +msgid "here are some tips to get you started:" +msgstr "" + +#: src/gui/tutorial.cpp:668 +msgid "" +"- add an instrument by clicking on + in Instruments\n" +"- click on the pattern view to focus it\n" +"- channel columns have the following, in this order: note, instrument, " +"volume and effects\n" +"- hit space bar while on the pattern to toggle Edit Mode\n" +"- click on the pattern or use arrow keys to move the cursor\n" +"- values (instrument, volume, effects and effect values) are in hexadecimal\n" +"- hit enter to play/stop the song\n" +"- extend the song by adding more orders in the Orders window\n" +"- click on the Orders matrix to change the patterns of a channel (left click " +"increases; right click decreases)" +msgstr "" + +#: src/gui/tutorial.cpp:680 +msgid "" +"if you need help, you may:\n" +"- read the manual (a file called manual.pdf)\n" +"- ask for help in Discussions (https://github.com/tildearrow/furnace/" +"discussions), the Furnace Discord (https://discord.gg/EfrwT2wq7z) or Furnace " +"in Revolt (official: https://rvlt.gg/GRPS6tmc)" +msgstr "" + +#: src/gui/tutorial.cpp:687 +msgid "" +"if you find any issues, be sure to report them! the issue tracker is here: " +"https://github.com/tildearrow/furnace/issues" +msgstr "" + +#: src/gui/tutorial.cpp:1428 +#, c-format +msgid "STAGE %d" +msgstr "" + +#: src/gui/songInfo.cpp:32 +#, fuzzy +msgid "Song Info##Song Information" +msgstr "ข้อมูลเพลง" + +#: src/gui/songInfo.cpp:50 +msgid "Author" +msgstr "ผู้ประพันธ์" + +#: src/gui/songInfo.cpp:60 +msgid "Album" +msgstr "อัลบั้ม" + +#: src/gui/songInfo.cpp:79 +msgid "Auto" +msgstr "อัตโนมัติ" + +#: src/gui/songInfo.cpp:100 +msgid "Tuning (A-4)" +msgstr "การตั้งเสียง (A-4)" + +#: src/gui/grooves.cpp:38 +msgid "use effect 09xx to select a groove pattern." +msgstr "" + +#: src/gui/grooves.cpp:48 src/gui/gui.cpp:4480 +msgid "pattern" +msgstr "กรอบ" + +#: src/gui/grooves.cpp:132 +msgid "remove" +msgstr "" + +#: src/gui/doAction.cpp:45 src/gui/gui.cpp:4201 +msgid "Unsaved changes! Save changes before opening another file?" +msgstr "" + +#: src/gui/doAction.cpp:52 +msgid "Unsaved changes! Save changes before opening backup?" +msgstr "" + +#: src/gui/doAction.cpp:62 src/gui/gui.cpp:4237 src/gui/gui.cpp:5025 +#: src/gui/gui.cpp:5063 src/gui/gui.cpp:5069 src/gui/gui.cpp:5657 +#: src/gui/gui.cpp:5681 src/gui/gui.cpp:5705 src/gui/gui.cpp:5729 +#: src/gui/gui.cpp:5753 src/gui/gui.cpp:5777 +#, c-format +msgid "Error while saving file! (%s)" +msgstr "" + +#: src/gui/doAction.cpp:189 +msgid "Error while sending request (MIDI output not configured?)" +msgstr "" + +#: src/gui/doAction.cpp:197 +msgid "Select an option: (cannot be undone!)" +msgstr "" + +#: src/gui/doAction.cpp:691 src/gui/doAction.cpp:720 src/gui/doAction.cpp:1593 +#: src/gui/gui.cpp:6091 +msgid "too many instruments!" +msgstr "" + +#: src/gui/doAction.cpp:1124 +msgid "couldn't paste! make sure your sample is 8 or 16-bit." +msgstr "" + +#: src/gui/doAction.cpp:1628 +msgid "select at least one sample!" +msgstr "" + +#: src/gui/doAction.cpp:1630 +msgid "maximum size is 256 samples!" +msgstr "" + +#: src/gui/csPlayer.cpp:113 +msgid "Load" +msgstr "" + +#: src/gui/csPlayer.cpp:117 +msgid "Kill" +msgstr "" + +#: src/gui/csPlayer.cpp:119 +msgid "Kikai wa mou shindeiru!" +msgstr "" + +#: src/gui/csPlayer.cpp:123 +msgid "Burn Current Song" +msgstr "" + +#: src/gui/csPlayer.cpp:141 +msgid "Status" +msgstr "" + +#: src/gui/csPlayer.cpp:148 +msgid "start" +msgstr "" + +#: src/gui/csPlayer.cpp:150 +msgid "PC" +msgstr "" + +#: src/gui/csPlayer.cpp:152 +msgid "wait" +msgstr "" + +#: src/gui/csPlayer.cpp:154 +msgid "SP" +msgstr "" + +#: src/gui/csPlayer.cpp:156 src/gui/insEdit.cpp:2733 +msgid "note" +msgstr "" + +#: src/gui/csPlayer.cpp:158 src/gui/insEdit.cpp:2728 +msgid "pitch" +msgstr "" + +#: src/gui/csPlayer.cpp:160 +msgid "vol" +msgstr "" + +#: src/gui/csPlayer.cpp:162 +msgid "vols" +msgstr "" + +#: src/gui/csPlayer.cpp:164 +msgid "vib" +msgstr "" + +#: src/gui/csPlayer.cpp:166 +msgid "porta" +msgstr "" + +#: src/gui/csPlayer.cpp:168 +msgid "arp" +msgstr "" + +#: src/gui/csPlayer.cpp:203 +msgid "Trace" +msgstr "" + +#: src/gui/csPlayer.cpp:244 +msgid "Disassemble" +msgstr "" + +#: src/gui/gui.cpp:1136 src/gui/gui.cpp:1140 +msgid "the song is over!" +msgstr "" + +#: src/gui/gui.cpp:1667 +msgid "Open File" +msgstr "" + +#: src/gui/gui.cpp:1668 src/gui/gui.cpp:1798 src/gui/gui.cpp:1838 +#: src/gui/gui.cpp:1953 src/gui/gui.cpp:1962 src/gui/gui.cpp:1971 +#: src/gui/gui.cpp:2073 src/gui/gui.cpp:2093 src/gui/gui.cpp:2111 +msgid "compatible files" +msgstr "" + +#: src/gui/gui.cpp:1669 src/gui/gui.cpp:1743 src/gui/gui.cpp:1799 +#: src/gui/gui.cpp:1839 src/gui/gui.cpp:1851 src/gui/gui.cpp:1870 +#: src/gui/gui.cpp:2074 src/gui/gui.cpp:2084 src/gui/gui.cpp:2095 +#: src/gui/gui.cpp:2113 +msgid "all files" +msgstr "" + +#: src/gui/gui.cpp:1676 +msgid "no backups made yet!" +msgstr "" + +#: src/gui/gui.cpp:1681 src/gui/gui.cpp:1690 src/gui/gui.cpp:2130 +msgid "Furnace song" +msgstr "" + +#: src/gui/gui.cpp:1689 +msgid "Save File" +msgstr "" + +#: src/gui/gui.cpp:1698 src/gui/gui.cpp:1708 +msgid "Export DMF" +msgstr "" + +#: src/gui/gui.cpp:1699 +msgid "DefleMask 1.1.3 module" +msgstr "" + +#: src/gui/gui.cpp:1709 +msgid "DefleMask 1.0/legacy module" +msgstr "" + +#: src/gui/gui.cpp:1726 +msgid "Load Instrument" +msgstr "" + +#: src/gui/gui.cpp:1727 +msgid "all compatible files" +msgstr "" + +#: src/gui/gui.cpp:1728 src/gui/gui.cpp:1777 +msgid "Furnace instrument" +msgstr "" + +#: src/gui/gui.cpp:1729 src/gui/gui.cpp:1787 +msgid "DefleMask preset" +msgstr "" + +#: src/gui/gui.cpp:1730 +msgid "TFM Music Maker instrument" +msgstr "" + +#: src/gui/gui.cpp:1731 +msgid "VGM Music Maker instrument" +msgstr "" + +#: src/gui/gui.cpp:1732 +msgid "Scream Tracker 3 instrument" +msgstr "" + +#: src/gui/gui.cpp:1733 +msgid "SoundBlaster instrument" +msgstr "" + +#: src/gui/gui.cpp:1734 +msgid "Wohlstand OPL instrument" +msgstr "" + +#: src/gui/gui.cpp:1735 +msgid "Wohlstand OPN instrument" +msgstr "" + +#: src/gui/gui.cpp:1736 +msgid "Gens KMod patch dump" +msgstr "" + +#: src/gui/gui.cpp:1737 +msgid "BNK file (AdLib)" +msgstr "" + +#: src/gui/gui.cpp:1738 +msgid "FF preset bank" +msgstr "" + +#: src/gui/gui.cpp:1739 +msgid "2612edit GYB preset bank" +msgstr "" + +#: src/gui/gui.cpp:1740 +msgid "VOPM preset bank" +msgstr "" + +#: src/gui/gui.cpp:1741 +msgid "Wohlstand WOPL bank" +msgstr "" + +#: src/gui/gui.cpp:1742 +msgid "Wohlstand WOPN bank" +msgstr "" + +#: src/gui/gui.cpp:1776 src/gui/gui.cpp:1786 +msgid "Save Instrument" +msgstr "" + +#: src/gui/gui.cpp:1797 +msgid "Load Wavetable" +msgstr "" + +#: src/gui/gui.cpp:1809 src/gui/gui.cpp:1818 src/gui/gui.cpp:1827 +msgid "Save Wavetable" +msgstr "" + +#: src/gui/gui.cpp:1810 +msgid "Furnace wavetable" +msgstr "" + +#: src/gui/gui.cpp:1819 +msgid "DefleMask wavetable" +msgstr "" + +#: src/gui/gui.cpp:1828 +msgid "raw data" +msgstr "" + +#: src/gui/gui.cpp:1837 +msgid "Load Sample" +msgstr "" + +#: src/gui/gui.cpp:1850 +msgid "Load Raw Sample" +msgstr "" + +#: src/gui/gui.cpp:1859 +msgid "Save Sample" +msgstr "" + +#: src/gui/gui.cpp:1860 src/gui/gui.cpp:1880 src/gui/gui.cpp:1890 +#: src/gui/gui.cpp:1900 +msgid "Wave file" +msgstr "" + +#: src/gui/gui.cpp:1869 +msgid "Save Raw Sample" +msgstr "" + +#: src/gui/gui.cpp:1879 src/gui/gui.cpp:1889 src/gui/gui.cpp:1899 +msgid "Export Audio" +msgstr "" + +#: src/gui/gui.cpp:1909 +msgid "Export VGM" +msgstr "" + +#: src/gui/gui.cpp:1910 +msgid "VGM file" +msgstr "" + +#: src/gui/gui.cpp:1919 +msgid "Export ZSM" +msgstr "" + +#: src/gui/gui.cpp:1920 +msgid "ZSM file" +msgstr "" + +#: src/gui/gui.cpp:1929 src/gui/gui.cpp:1939 +msgid "Export Command Stream" +msgstr "" + +#: src/gui/gui.cpp:1930 +msgid "text file" +msgstr "" + +#: src/gui/gui.cpp:1940 +msgid "binary file" +msgstr "" + +#: src/gui/gui.cpp:1947 src/gui/gui.cpp:5376 +msgid "Coming soon!" +msgstr "" + +#: src/gui/gui.cpp:1952 src/gui/gui.cpp:1961 src/gui/gui.cpp:1970 +msgid "Select Font" +msgstr "" + +#: src/gui/gui.cpp:1979 +msgid "Select Color File" +msgstr "" + +#: src/gui/gui.cpp:1980 src/gui/gui.cpp:1989 src/gui/gui.cpp:2008 +#: src/gui/gui.cpp:2017 src/gui/gui.cpp:2026 src/gui/gui.cpp:2035 +#: src/gui/gui.cpp:2053 src/gui/gui.cpp:2062 +msgid "configuration files" +msgstr "" + +#: src/gui/gui.cpp:1988 +msgid "Select Keybind File" +msgstr "" + +#: src/gui/gui.cpp:1997 +msgid "Select Layout File" +msgstr "" + +#: src/gui/gui.cpp:1998 src/gui/gui.cpp:2044 +msgid ".ini files" +msgstr "" + +#: src/gui/gui.cpp:2007 +msgid "Select User Presets File" +msgstr "" + +#: src/gui/gui.cpp:2016 +msgid "Select Settings File" +msgstr "" + +#: src/gui/gui.cpp:2025 +msgid "Export Colors" +msgstr "" + +#: src/gui/gui.cpp:2034 +msgid "Export Keybinds" +msgstr "" + +#: src/gui/gui.cpp:2043 +msgid "Export Layout" +msgstr "" + +#: src/gui/gui.cpp:2052 +msgid "Export User Presets" +msgstr "" + +#: src/gui/gui.cpp:2061 +msgid "Export Settings" +msgstr "" + +#: src/gui/gui.cpp:2072 +msgid "Load ROM" +msgstr "" + +#: src/gui/gui.cpp:2082 +msgid "Play Command Stream" +msgstr "" + +#: src/gui/gui.cpp:2083 +msgid "command stream" +msgstr "" + +#: src/gui/gui.cpp:2092 +msgid "Open Test" +msgstr "" + +#: src/gui/gui.cpp:2094 src/gui/gui.cpp:2112 +msgid "another option" +msgstr "" + +#: src/gui/gui.cpp:2110 +msgid "Open Test (Multi)" +msgstr "" + +#: src/gui/gui.cpp:2129 +msgid "Save Test" +msgstr "" + +#: src/gui/gui.cpp:2131 +msgid "DefleMask module" +msgstr "" + +#: src/gui/gui.cpp:2171 +msgid "compression error" +msgstr "" + +#: src/gui/gui.cpp:2183 +msgid "zlib stream error" +msgstr "" + +#: src/gui/gui.cpp:2205 +msgid "zlib finish stream error" +msgstr "" + +#: src/gui/gui.cpp:2316 +msgid "everything OK" +msgstr "" + +#: src/gui/gui.cpp:2334 +msgid "" +"you have loaded a backup!\n" +"if you need to, please save it somewhere.\n" +"\n" +"DO NOT RELY ON THE BACKUP SYSTEM FOR AUTO-SAVE!\n" +"Furnace will not save backups of backups." +msgstr "" + +#: src/gui/gui.cpp:2342 src/gui/gui.cpp:3743 src/gui/gui.cpp:4213 +msgid "Unsaved changes! Save changes before opening file?" +msgstr "" + +#: src/gui/gui.cpp:2736 +msgid "paste special..." +msgstr "" + +#: src/gui/gui.cpp:2737 +msgid "paste mix" +msgstr "" + +#: src/gui/gui.cpp:2738 +msgid "paste mix (background)" +msgstr "" + +#: src/gui/gui.cpp:2739 +msgid "paste with ins (foreground)" +msgstr "" + +#: src/gui/gui.cpp:2741 src/gui/gui.cpp:2753 src/gui/gui.cpp:2963 +msgid "no instruments available" +msgstr "" + +#: src/gui/gui.cpp:2751 +msgid "paste with ins (background)" +msgstr "" + +#: src/gui/gui.cpp:2763 +msgid "paste flood" +msgstr "" + +#: src/gui/gui.cpp:2764 +msgid "paste overflow" +msgstr "" + +#: src/gui/gui.cpp:2773 +msgid "operation mask..." +msgstr "" + +#: src/gui/gui.cpp:2780 +msgid "pull delete" +msgstr "" + +#: src/gui/gui.cpp:2784 +msgid "insert" +msgstr "" + +#: src/gui/gui.cpp:2792 +msgid "transpose (note)" +msgstr "" + +#: src/gui/gui.cpp:2796 +msgid "transpose (value)" +msgstr "" + +#: src/gui/gui.cpp:2808 src/gui/gui.cpp:3052 +msgid "invert values" +msgstr "" + +#: src/gui/gui.cpp:2824 +msgid "collapse/expand" +msgstr "" + +#: src/gui/gui.cpp:2829 +msgid "input latch" +msgstr "" + +#: src/gui/gui.cpp:2856 +msgid "" +"&&: selected instrument\n" +"..: no instrument" +msgstr "" + +#: src/gui/gui.cpp:2910 +msgid "Set" +msgstr "" + +#: src/gui/gui.cpp:2930 +msgid "note up" +msgstr "" + +#: src/gui/gui.cpp:2931 +msgid "note down" +msgstr "" + +#: src/gui/gui.cpp:2932 +msgid "octave up" +msgstr "" + +#: src/gui/gui.cpp:2933 +msgid "octave down" +msgstr "" + +#: src/gui/gui.cpp:2935 +msgid "values up" +msgstr "" + +#: src/gui/gui.cpp:2936 +msgid "values down" +msgstr "" + +#: src/gui/gui.cpp:2937 +msgid "values up (+16)" +msgstr "" + +#: src/gui/gui.cpp:2938 +msgid "values down (-16)" +msgstr "" + +#: src/gui/gui.cpp:2941 +msgid "transpose" +msgstr "" + +#: src/gui/gui.cpp:2949 +msgid "Notes" +msgstr "" + +#: src/gui/gui.cpp:2954 +msgid "Values" +msgstr "" + +#: src/gui/gui.cpp:2961 +msgid "change instrument..." +msgstr "" + +#: src/gui/gui.cpp:2974 +msgid "gradient/fade..." +msgstr "" + +#: src/gui/gui.cpp:2991 src/gui/gui.cpp:3036 +msgid "Nibble mode" +msgstr "" + +#: src/gui/gui.cpp:3000 +msgid "Go ahead" +msgstr "" + +#: src/gui/gui.cpp:3006 src/gui/insEdit.cpp:7604 +msgid "scale..." +msgstr "" + +#: src/gui/gui.cpp:3011 +msgid "Scale" +msgstr "" + +#: src/gui/gui.cpp:3017 src/gui/insEdit.cpp:7632 +msgid "randomize..." +msgstr "" + +#: src/gui/gui.cpp:3018 +msgid "Minimum" +msgstr "" + +#: src/gui/gui.cpp:3027 +msgid "Maximum" +msgstr "" + +#: src/gui/gui.cpp:3056 +msgid "flip selection" +msgstr "" + +#: src/gui/gui.cpp:3059 +msgid "collapse/expand amount##CollapseAmount" +msgstr "" + +#: src/gui/gui.cpp:3068 +msgid "collapse pattern" +msgstr "" + +#: src/gui/gui.cpp:3069 +msgid "expand pattern" +msgstr "" + +#: src/gui/gui.cpp:3074 +msgid "collapse song" +msgstr "" + +#: src/gui/gui.cpp:3075 +msgid "expand song" +msgstr "" + +#: src/gui/gui.cpp:3080 +msgid "find/replace" +msgstr "" + +#: src/gui/gui.cpp:3094 src/gui/gui.cpp:5807 src/gui/gui.cpp:7362 +#, c-format +msgid "could NOT save layout! %s" +msgstr "" + +#: src/gui/gui.cpp:3106 +#, c-format +msgid "could NOT load layout! %s" +msgstr "" + +#: src/gui/gui.cpp:3568 +msgid "" +"Furnace has been started in Safe Mode.\n" +"this means that:\n" +"\n" +"- software rendering is being used\n" +"- audio output may not work\n" +"- font loading is disabled\n" +"\n" +"check any settings which may have made Furnace start up in this mode.\n" +"font loading is one of these." +msgstr "" + +#: src/gui/gui.cpp:4053 +msgid "can't keep going without graphics! Furnace will quit now." +msgstr "" + +#: src/gui/gui.cpp:4191 +msgid "file" +msgstr "ไฟล์" + +#: src/gui/gui.cpp:4192 +msgid "new..." +msgstr "ใหม่..." + +#: src/gui/gui.cpp:4199 +msgid "open..." +msgstr "เปิด..." + +#: src/gui/gui.cpp:4206 +msgid "open recent" +msgstr "เปิดล่าสุด" + +#: src/gui/gui.cpp:4222 +msgid "nothing here yet" +msgstr "ยังไม่มีอะไรในนี้" + +#: src/gui/gui.cpp:4225 +msgid "clear history" +msgstr "ล้างประวัติ" + +#: src/gui/gui.cpp:4226 +msgid "Are you sure you want to clear the recent file list?" +msgstr "คุณแน่ใจหรือไม่ที่จะล้างรายชื่อไฟล์ล่าสุด?" + +#: src/gui/gui.cpp:4241 +msgid "save as..." +msgstr "บันทึกเป็น..." + +#: src/gui/gui.cpp:4246 src/gui/gui.cpp:4287 +msgid "export audio..." +msgstr "ส่งออกไฟล์เสียง..." + +#: src/gui/gui.cpp:4250 src/gui/gui.cpp:4291 +msgid "export VGM..." +msgstr "ส่งออกไฟล์ VGM.." + +#: src/gui/gui.cpp:4259 src/gui/gui.cpp:4300 +msgid "export ZSM..." +msgstr "ส่งออกไฟล์ ZSM..." + +#: src/gui/gui.cpp:4269 src/gui/gui.cpp:4310 +msgid "export Amiga validation data..." +msgstr "ส่งออกไฟล์ข้อมูลตรวจสอบเครื่อง Amiga..." + +#: src/gui/gui.cpp:4274 src/gui/gui.cpp:4315 +msgid "export text..." +msgstr "ส่งออกไฟล์อักษร..." + +#: src/gui/gui.cpp:4278 src/gui/gui.cpp:4319 +msgid "export command stream..." +msgstr "ส่งออกไฟล์สตรีมคำสั่ง..." + +#: src/gui/gui.cpp:4282 src/gui/gui.cpp:4323 +msgid "export .dmf..." +msgstr "ส่งออกไฟล์ .dmf" + +#: src/gui/gui.cpp:4328 +msgid "export..." +msgstr "ส่งออก..." + +#: src/gui/gui.cpp:4334 +msgid "manage chips" +msgstr "จัดการชิป" + +#: src/gui/gui.cpp:4338 +msgid "add chip..." +msgstr "เพิ่มชิป..." + +#: src/gui/gui.cpp:4343 src/gui/sysManager.cpp:138 +#, c-format +msgid "cannot add chip! (%s)" +msgstr "ไม่สามารถเพิ่มชิปได้! (%s)" + +#: src/gui/gui.cpp:4355 +msgid "configure chip..." +msgstr "ตั่งค่าชิป..." + +#: src/gui/gui.cpp:4365 +msgid "change chip..." +msgstr "เปลี่ยนชิป..." + +#: src/gui/gui.cpp:4367 src/gui/gui.cpp:4390 +msgid "Preserve channel positions" +msgstr "สงวนตำแหน่งช่อง" + +#: src/gui/gui.cpp:4379 src/gui/sysManager.cpp:109 +#, c-format +msgid "cannot change chip! (%s)" +msgstr "ไม่สามารถเปลี่ยนชิปได้! (%s)" + +#: src/gui/gui.cpp:4388 +msgid "remove chip..." +msgstr "เอาชิปออก..." + +#: src/gui/gui.cpp:4394 +#, c-format +msgid "cannot remove chip! (%s)" +msgstr "ไม่สามารถเอาชิปออกได้! (%s)" + +#: src/gui/gui.cpp:4408 +msgid "open built-in assets directory" +msgstr "เปิดไดเรกทอรีของสินทรัพย์ในตัว" + +#: src/gui/gui.cpp:4414 +msgid "restore backup" +msgstr "คืนค่าข้อมูลสำรอง" + +#: src/gui/gui.cpp:4418 +msgid "exit..." +msgstr "ออก..." + +#: src/gui/gui.cpp:4426 +msgid "edit" +msgstr "แก้ไข" + +#: src/gui/gui.cpp:4434 +msgid "clear..." +msgstr "ล้าง..." + +#: src/gui/gui.cpp:4439 +msgid "settings" +msgstr "การตั้งค่า" + +#: src/gui/gui.cpp:4441 +msgid "full screen" +msgstr "เต็มหน้าจอ" + +#: src/gui/gui.cpp:4445 +msgid "lock layout" +msgstr "ล็อคเค้าโครง" + +#: src/gui/gui.cpp:4448 +msgid "pattern visualizer" +msgstr "วิชวลไลเซอร์กรอบ" + +#: src/gui/gui.cpp:4454 +msgid "reset layout" +msgstr "ตั้งเค้าโครงใหม่" + +#: src/gui/gui.cpp:4458 +msgid "switch to mobile view" +msgstr "สลับไปยังมุมมองมือถือ" + +#: src/gui/gui.cpp:4462 +msgid "user systems..." +msgstr "ระบบที่กำหนดเอง..." + +#: src/gui/gui.cpp:4465 +msgid "settings..." +msgstr "ตั้งค่า..." + +#: src/gui/gui.cpp:4471 +msgid "Window" +msgstr "หน้าต่าง" + +#: src/gui/gui.cpp:4471 +msgid "window" +msgstr "หน้าต่าง" + +#: src/gui/gui.cpp:4472 +msgid "song" +msgstr "เพลง" + +#: src/gui/gui.cpp:4473 +msgid "song comments" +msgstr "ความคิดเห็นเพลง" + +#: src/gui/gui.cpp:4474 +msgid "song information" +msgstr "ข้อมูลเพลง" + +#: src/gui/gui.cpp:4475 +msgid "subsongs" +msgstr "เพลงย่อย" + +#: src/gui/gui.cpp:4477 +msgid "channels" +msgstr "ช่อง" + +#: src/gui/gui.cpp:4478 +msgid "chip manager" +msgstr "จัดการชิป" + +#: src/gui/gui.cpp:4479 +msgid "orders" +msgstr "ลำดับ" + +#: src/gui/gui.cpp:4481 +msgid "pattern manager" +msgstr "จัดการกรอบ" + +#: src/gui/gui.cpp:4482 +msgid "mixer" +msgstr "เครื่องผสมเสียง" + +#: src/gui/gui.cpp:4483 +msgid "compatibility flags" +msgstr "ตัวบ่งชี้ความเข้ากันได้" + +#: src/gui/gui.cpp:4486 src/gui/gui.cpp:4488 +msgid "assets" +msgstr "สินทรัพย์" + +#: src/gui/gui.cpp:4490 +msgid "instruments" +msgstr "เครื่องดนตรี" + +#: src/gui/gui.cpp:4491 +msgid "samples" +msgstr "แซมเปิล" + +#: src/gui/gui.cpp:4492 +msgid "wavetables" +msgstr "ตารางคลื่น" + +#: src/gui/gui.cpp:4495 +msgid "instrument editor" +msgstr "แก้ไขเครื่องดนตรี" + +#: src/gui/gui.cpp:4496 +msgid "sample editor" +msgstr "แก้ไขแซมเปิล" + +#: src/gui/gui.cpp:4497 +msgid "wavetable editor" +msgstr "แก้ไขตารางคลื่น" + +#: src/gui/gui.cpp:4500 +msgid "visualizers" +msgstr "วิชวลไลเซอร์" + +#: src/gui/gui.cpp:4501 +msgid "oscilloscope (master)" +msgstr "ออสซิลโลสโกป (ช่องมาสเตอร์)" + +#: src/gui/gui.cpp:4502 +msgid "oscilloscope (per-channel)" +msgstr "ออสซิลโลสโกป (ต่อช่อง)" + +#: src/gui/gui.cpp:4503 +msgid "oscilloscope (X-Y)" +msgstr "ออสซิลโลสโกป (X-Y)" + +#: src/gui/gui.cpp:4504 +msgid "volume meter" +msgstr "มาตรวัดความดัง" + +#: src/gui/gui.cpp:4507 +msgid "tempo" +msgstr "อัตราความเร็ว" + +#: src/gui/gui.cpp:4508 +msgid "clock" +msgstr "นาฬิกา" + +#: src/gui/gui.cpp:4509 +msgid "grooves" +msgstr "กรูฟ" + +#: src/gui/gui.cpp:4510 +msgid "speed" +msgstr "ความเร็ว" + +#: src/gui/gui.cpp:4514 +msgid "log viewer" +msgstr "ดูบันทึกล็อก" + +#: src/gui/gui.cpp:4515 +msgid "register view" +msgstr "ดูเรจิสเตอร์" + +#: src/gui/gui.cpp:4516 +msgid "statistics" +msgstr "สถิติ" + +#: src/gui/gui.cpp:4517 +msgid "memory composition" +msgstr "องค์ประกอบหน่วยความจำ" + +#: src/gui/gui.cpp:4521 src/gui/gui.cpp:4529 +msgid "effect list" +msgstr "รายชือเอฟเฟกต์" + +#: src/gui/gui.cpp:4522 +msgid "play/edit controls" +msgstr "ตัวควบคุมการเล่นและแก้ไข" + +#: src/gui/gui.cpp:4523 +msgid "piano/input pad" +msgstr "เปียโน/แผ่นป้อน" + +#: src/gui/gui.cpp:4524 +msgid "spoiler" +msgstr "ตัวสปอย" + +#: src/gui/gui.cpp:4528 +msgid "Help" +msgstr "ความช่วยเหลือ" + +#: src/gui/gui.cpp:4528 +msgid "help" +msgstr "ความช่วยเหลือ" + +#: src/gui/gui.cpp:4530 +msgid "debug menu" +msgstr "เมนูแก้จุดบกพร่อง" + +#: src/gui/gui.cpp:4531 +msgid "inspector" +msgstr "เครื่องตรวจ" + +#: src/gui/gui.cpp:4532 +msgid "panic" +msgstr "หยุดเสียงทั้งหมด" + +#: src/gui/gui.cpp:4533 +msgid "about..." +msgstr "เกี่ยวกับ..." + +#: src/gui/gui.cpp:4548 +#, c-format +msgid "| Speed %d:%d" +msgstr "| ความเร็ว %d:%d" + +#: src/gui/gui.cpp:4550 +#, c-format +msgid "| Speed %d" +msgstr "| ความเร็ว %d" + +#: src/gui/gui.cpp:4552 +msgid "| Groove" +msgstr "| กรูฟ" + +#: src/gui/gui.cpp:4555 +#, c-format +msgid " @ %gHz (%g BPM) " +msgstr " @ %gHz (%g BPM) " + +#: src/gui/gui.cpp:4558 +#, c-format +msgid "| Order %.2X/%.2X " +msgstr "| ลำดับ %.2X/%.2X " + +#: src/gui/gui.cpp:4560 +#, c-format +msgid "| Order %d/%d " +msgstr "| ลำดับ %d/%d " + +#: src/gui/gui.cpp:4564 +#, c-format +msgid "| Row %.2X/%.2X " +msgstr "| แถว %.2X/%.2X " + +#: src/gui/gui.cpp:4566 +#, c-format +msgid "| Row %d/%d " +msgstr "| แถว %d/%d " + +#: src/gui/gui.cpp:4569 +msgid "| " +msgstr "| " + +#: src/gui/gui.cpp:4572 +msgid "Don't you have anything better to do?" +msgstr "ว่างนักใช่ไหม?" + +#: src/gui/gui.cpp:4582 +#, c-format +msgid "%d year " +msgid_plural "%d years " +msgstr[0] "%d ปี" +msgstr[1] "%d ปี" + +#: src/gui/gui.cpp:4583 +#, c-format +msgid "%d month " +msgid_plural "%d months " +msgstr[0] "%d เดือน" +msgstr[1] "%d เดือน" + +#: src/gui/gui.cpp:4584 +#, c-format +msgid "%d day " +msgid_plural "%d days " +msgstr[0] "%d วัน" +msgstr[1] "%d วัน" + +#: src/gui/gui.cpp:4609 +msgid "Note off (cut)" +msgstr "" + +#: src/gui/gui.cpp:4611 +msgid "Note off (release)" +msgstr "" + +#: src/gui/gui.cpp:4613 +msgid "Macro release only" +msgstr "" + +#: src/gui/gui.cpp:4615 +#, c-format +msgid "Note on: %s" +msgstr "" + +#: src/gui/gui.cpp:4623 +#, c-format +msgid "Ins %d: " +msgstr "" + +#: src/gui/gui.cpp:4626 +#, c-format +msgid "Ins %d: %s" +msgstr "" + +#: src/gui/gui.cpp:4635 +#, c-format +msgid "Set volume: %d (%.2X, INVALID!)" +msgstr "" + +#: src/gui/gui.cpp:4638 +#, c-format +msgid "Set volume: %d (%.2X, %d%%)" +msgstr "" + +#: src/gui/gui.cpp:4660 +msgid "| modified" +msgstr "" + +#: src/gui/gui.cpp:4825 src/gui/gui.cpp:4828 +msgid "System File Dialog Pending" +msgstr "" + +#: src/gui/gui.cpp:4941 +msgid "" +"there was an error in the file dialog! you may want to report this issue " +"to:\n" +"https://github.com/tildearrow/furnace/issues\n" +"check the Log Viewer (window > log viewer) for more information.\n" +"\n" +"for now please disable the system file picker in Settings > General." +msgstr "" + +#: src/gui/gui.cpp:4944 +msgid "can't do anything without Storage permissions!" +msgstr "" + +#: src/gui/gui.cpp:4946 +msgid "" +"Zenity/KDialog not available!\n" +"please install one of these, or disable the system file picker in Settings > " +"General." +msgstr "" + +#: src/gui/gui.cpp:5082 +msgid "" +"error while saving instrument! only the following instrument types are " +"supported:\n" +"- FM (OPN)\n" +"- SN76489/Sega PSG\n" +"- Game Boy\n" +"- PC Engine\n" +"- NES\n" +"- C64\n" +"- FM (OPLL)\n" +"- FDS" +msgstr "" + +#: src/gui/gui.cpp:5110 +msgid "there were some errors while loading samples:\n" +msgstr "" + +#: src/gui/gui.cpp:5155 src/gui/gui.cpp:6339 +msgid "...but you haven't selected a sample!" +msgstr "" + +#: src/gui/gui.cpp:5170 src/gui/gui.cpp:5179 +msgid "could not save sample! open Log Viewer for more information." +msgstr "" + +#: src/gui/gui.cpp:5198 +msgid "there were some warnings/errors while loading instruments:\n" +msgstr "" + +#: src/gui/gui.cpp:5204 +#, c-format +msgid "> %s: cannot load instrument! (%s)\n" +msgstr "" + +#: src/gui/gui.cpp:5222 src/gui/gui.cpp:5276 +#, c-format +msgid "cannot load instrument! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5228 +msgid "" +"congratulations! you managed to load nothing.\n" +"you are entitled to a bug report." +msgstr "" + +#: src/gui/gui.cpp:5269 src/gui/gui.cpp:6243 +msgid "...but you haven't selected an instrument!" +msgstr "" + +#: src/gui/gui.cpp:5281 +msgid "there were some errors while loading wavetables:\n" +msgstr "" + +#: src/gui/gui.cpp:5290 src/gui/gui.cpp:5300 src/gui/gui.cpp:5319 +#, c-format +msgid "cannot load wavetable! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5327 +msgid "...but you haven't selected a wavetable!" +msgstr "" + +#: src/gui/gui.cpp:5342 src/gui/gui.cpp:5363 src/gui/gui.cpp:5387 +#: src/gui/gui.cpp:5408 +msgid "could not open file!" +msgstr "" + +#: src/gui/gui.cpp:5350 +#, c-format +msgid "could not write VGM! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5371 +#, c-format +msgid "Could not write ZSM! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5395 +#, c-format +msgid "could not write text! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5416 +#, c-format +msgid "could not write command stream! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5440 +msgid "could not import user presets!" +msgstr "" + +#: src/gui/gui.cpp:5445 src/gui/gui.cpp:5462 +#, c-format +msgid "could not import user presets! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5483 +#, c-format +msgid "You opened: %s" +msgstr "" + +#: src/gui/gui.cpp:5486 +msgid "You opened:" +msgstr "" + +#: src/gui/gui.cpp:5494 +#, c-format +msgid "You saved: %s" +msgstr "" + +#: src/gui/gui.cpp:5515 src/gui/gui.cpp:5636 src/gui/gui.cpp:5637 +#: src/gui/insEdit.cpp:7520 +msgid "Error" +msgstr "" + +#: src/gui/gui.cpp:5520 src/gui/gui.cpp:6177 src/gui/gui.cpp:6178 +msgid "Select Instrument" +msgstr "" + +#: src/gui/gui.cpp:5525 src/gui/gui.cpp:6256 src/gui/gui.cpp:6257 +msgid "Import Raw Sample" +msgstr "" + +#: src/gui/gui.cpp:5540 src/gui/gui.cpp:5593 src/gui/gui.cpp:5594 +msgid "Rendering..." +msgstr "" + +#: src/gui/gui.cpp:5595 +msgid "Please wait..." +msgstr "" + +#: src/gui/gui.cpp:5596 +msgid "Abort" +msgstr "" + +#: src/gui/gui.cpp:5638 +#, c-format +msgid "%s" +msgstr "" + +#: src/gui/gui.cpp:5868 +msgid "Erasing" +msgstr "" + +#: src/gui/gui.cpp:5871 +msgid "All subsongs" +msgstr "" + +#: src/gui/gui.cpp:5878 +msgid "Current subsong" +msgstr "" + +#: src/gui/gui.cpp:5945 +msgid "Optimization" +msgstr "" + +#: src/gui/gui.cpp:5948 src/gui/patManager.cpp:36 +msgid "De-duplicate patterns" +msgstr "" + +#: src/gui/gui.cpp:5957 +msgid "Remove unused instruments" +msgstr "" + +#: src/gui/gui.cpp:5970 +msgid "Remove unused samples" +msgstr "" + +#: src/gui/gui.cpp:5987 +msgid "Never mind! Cancel" +msgstr "" + +#: src/gui/gui.cpp:6066 +msgid "Drum kit mode:" +msgstr "" + +#: src/gui/gui.cpp:6070 +msgid "12 samples per octave" +msgstr "" + +#: src/gui/gui.cpp:6075 +msgid "Starting octave" +msgstr "" + +#: src/gui/gui.cpp:6095 +msgid "Drum Kit" +msgstr "" + +#: src/gui/gui.cpp:6181 +msgid "this is an instrument bank! select which one to use:" +msgstr "" + +#: src/gui/gui.cpp:6184 +msgid "this is an instrument bank! select which ones to load:" +msgstr "" + +#: src/gui/gui.cpp:6258 +msgid "Data type:" +msgstr "" + +#: src/gui/gui.cpp:6285 +msgid "(will be mixed down to mono)" +msgstr "" + +#: src/gui/gui.cpp:6286 +msgid "Unsigned" +msgstr "" + +#: src/gui/gui.cpp:6290 +msgid "Big endian" +msgstr "" + +#: src/gui/gui.cpp:6298 +msgid "Swap nibbles" +msgstr "" + +#: src/gui/gui.cpp:6302 +msgid "Swap words" +msgstr "" + +#: src/gui/gui.cpp:6306 +msgid "Encoding:" +msgstr "" + +#: src/gui/gui.cpp:6319 +msgid "Reverse bit order" +msgstr "" + +#: src/gui/gui.cpp:6361 +msgid "Error! No string provided!" +msgstr "" + +#: src/gui/gui.cpp:6683 +msgid "it appears I couldn't load these fonts. any setting you can check?" +msgstr "" + +#: src/gui/gui.cpp:6863 src/gui/gui.cpp:6971 +msgid "" +"could not init renderer!\n" +"falling back to software renderer. please restart Furnace." +msgstr "" + +#: src/gui/gui.cpp:6865 src/gui/gui.cpp:6973 +#, c-format +msgid "" +"could not init renderer! %s\n" +"falling back to software renderer. please restart Furnace." +msgstr "" + +#: src/gui/gui.cpp:6870 src/gui/gui.cpp:6978 +msgid "could not init renderer!" +msgstr "" + +#: src/gui/gui.cpp:6881 +#, c-format +msgid "could not open window! %s" +msgstr "" + +#: src/gui/gui.cpp:6886 +msgid "" +"\n" +"falling back to software renderer. please restart Furnace." +msgstr "" + +#: src/gui/gui.cpp:7034 +msgid "Size column to fit###SizeOne" +msgstr "" + +#: src/gui/gui.cpp:7036 +msgid "Size all columns to fit###SizeAll" +msgstr "" + +#: src/gui/gui.cpp:7038 +msgid "Size all columns to default###SizeAll" +msgstr "" + +#: src/gui/gui.cpp:7040 +msgid "Reset order###ResetOrder" +msgstr "" + +#: src/gui/gui.cpp:7042 +msgid "(Main menu bar)" +msgstr "" + +#: src/gui/gui.cpp:7044 +msgid "(Popup)" +msgstr "" + +#: src/gui/gui.cpp:7046 +msgid "(Untitled)" +msgstr "" + +#: src/gui/gui.cpp:7048 +msgid "Hide tab bar###HideTabBar" +msgstr "" + +#: src/gui/gui.cpp:7052 +msgid "LocaleSettings: ccjk" +msgstr "" + +#: src/gui/gui.cpp:7564 +msgid "Unsaved changes! Save changes before quitting?" +msgstr "" + +#: src/gui/sysManager.cpp:42 +msgid "Preserve channel order" +msgstr "" + +#: src/gui/sysManager.cpp:44 +msgid "Clone channel data" +msgstr "" + +#: src/gui/sysManager.cpp:46 +msgid "Clone at end" +msgstr "" + +#: src/gui/sysManager.cpp:56 +msgid "Actions" +msgstr "" + +#: src/gui/sysManager.cpp:69 +msgid "(drag to swap chips)" +msgstr "" + +#: src/gui/sysManager.cpp:90 +msgid "Clone##SysDup" +msgstr "" + +#: src/gui/sysManager.cpp:92 +#, c-format +msgid "cannot clone chip! (%s)" +msgstr "" + +#: src/gui/sysManager.cpp:98 +msgid "Change##SysChange" +msgstr "" + +#: src/gui/sysManager.cpp:120 +msgid "Are you sure you want to remove this chip?" +msgstr "" + +#: src/gui/patManager.cpp:43 +msgid "Re-arrange patterns" +msgstr "" + +#: src/gui/patManager.cpp:50 +msgid "Sort orders" +msgstr "" + +#: src/gui/patManager.cpp:57 +msgid "Make patterns unique" +msgstr "" + +#: src/gui/patManager.cpp:103 +#, c-format +msgid "" +"Pattern %.2X\n" +"- not allocated" +msgstr "" + +#: src/gui/patManager.cpp:105 +#, c-format +msgid "" +"Pattern %.2X\n" +"- use count: %d (%.0f%%)\n" +"\n" +"right-click to erase" +msgstr "" + +#: src/gui/insEdit.cpp:39 +msgid "Down Down Down" +msgstr "" + +#: src/gui/insEdit.cpp:40 +msgid "Down." +msgstr "" + +#: src/gui/insEdit.cpp:41 +msgid "Down Up Down Up" +msgstr "" + +#: src/gui/insEdit.cpp:42 +msgid "Down UP" +msgstr "" + +#: src/gui/insEdit.cpp:43 +msgid "Up Up Up" +msgstr "" + +#: src/gui/insEdit.cpp:44 +msgid "Up." +msgstr "" + +#: src/gui/insEdit.cpp:45 +msgid "Up Down Up Down" +msgstr "" + +#: src/gui/insEdit.cpp:46 +msgid "Up DOWN" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Algorithm" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Feedback" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "LFO > Freq" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "LFO > Amp" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Decay 2" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "EnvScale" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Multiplier" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Detune 2" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "AM" +msgstr "" + +#: src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:5438 src/gui/insEdit.cpp:6516 +msgid "AM Depth" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Vibrato Depth" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Sustained" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Level Scaling" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Vibrato" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Scale Rate" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "OP2 Half Sine" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "OP1 Half Sine" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "EnvShift" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Reverb" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Fine" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "LFO2 > Freq" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "LFO2 > Amp" +msgstr "" + +#: src/gui/insEdit.cpp:56 src/gui/insEdit.cpp:68 src/gui/insEdit.cpp:7391 +msgid "OP4 Noise Mode" +msgstr "" + +#: src/gui/insEdit.cpp:57 +msgid "Envelope Delay" +msgstr "" + +#: src/gui/insEdit.cpp:58 src/gui/insEdit.cpp:70 +msgid "Output Level" +msgstr "" + +#: src/gui/insEdit.cpp:59 +msgid "Modulation Input Level" +msgstr "" + +#: src/gui/insEdit.cpp:60 +msgid "Left Output" +msgstr "" + +#: src/gui/insEdit.cpp:61 +msgid "Right Output" +msgstr "" + +#: src/gui/insEdit.cpp:62 +msgid "Coarse Tune (semitones)" +msgstr "" + +#: src/gui/insEdit.cpp:64 +msgid "Fixed Frequency Mode" +msgstr "" + +#: src/gui/insEdit.cpp:69 +msgid "Env. Delay" +msgstr "" + +#: src/gui/insEdit.cpp:71 +msgid "ModInput" +msgstr "" + +#: src/gui/insEdit.cpp:72 +msgid "Left" +msgstr "" + +#: src/gui/insEdit.cpp:73 +msgid "Right" +msgstr "" + +#: src/gui/insEdit.cpp:74 +msgid "Tune" +msgstr "" + +#: src/gui/insEdit.cpp:76 src/gui/insEdit.cpp:610 src/gui/insEdit.cpp:3792 +#: src/gui/insEdit.cpp:4554 src/gui/insEdit.cpp:4848 +msgid "Fixed" +msgstr "" + +#: src/gui/insEdit.cpp:98 src/gui/insEdit.cpp:117 src/gui/insEdit.cpp:136 +#: src/gui/insEdit.cpp:156 +msgid "User" +msgstr "" + +#: src/gui/insEdit.cpp:99 +msgid "1. Violin" +msgstr "" + +#: src/gui/insEdit.cpp:100 src/gui/insEdit.cpp:138 src/gui/insEdit.cpp:158 +msgid "2. Guitar" +msgstr "" + +#: src/gui/insEdit.cpp:101 src/gui/insEdit.cpp:159 +msgid "3. Piano" +msgstr "" + +#: src/gui/insEdit.cpp:102 src/gui/insEdit.cpp:160 +msgid "4. Flute" +msgstr "" + +#: src/gui/insEdit.cpp:103 src/gui/insEdit.cpp:122 src/gui/insEdit.cpp:161 +msgid "5. Clarinet" +msgstr "" + +#: src/gui/insEdit.cpp:104 +msgid "6. Oboe" +msgstr "" + +#: src/gui/insEdit.cpp:105 src/gui/insEdit.cpp:124 src/gui/insEdit.cpp:143 +#: src/gui/insEdit.cpp:163 +msgid "7. Trumpet" +msgstr "" + +#: src/gui/insEdit.cpp:106 +msgid "8. Organ" +msgstr "" + +#: src/gui/insEdit.cpp:107 +msgid "9. Horn" +msgstr "" + +#: src/gui/insEdit.cpp:108 +msgid "10. Synth" +msgstr "" + +#: src/gui/insEdit.cpp:109 +msgid "11. Harpsichord" +msgstr "" + +#: src/gui/insEdit.cpp:110 src/gui/insEdit.cpp:129 src/gui/insEdit.cpp:148 +msgid "12. Vibraphone" +msgstr "" + +#: src/gui/insEdit.cpp:111 +msgid "13. Synth Bass" +msgstr "" + +#: src/gui/insEdit.cpp:112 +msgid "14. Acoustic Bass" +msgstr "" + +#: src/gui/insEdit.cpp:113 +msgid "15. Electric Guitar" +msgstr "" + +#: src/gui/insEdit.cpp:114 src/gui/insEdit.cpp:133 src/gui/insEdit.cpp:152 +#: src/gui/insEdit.cpp:172 src/gui/insEdit.cpp:3176 +msgid "Drums" +msgstr "" + +#: src/gui/insEdit.cpp:118 +msgid "1. Electric String" +msgstr "" + +#: src/gui/insEdit.cpp:119 +msgid "2. Bow wow" +msgstr "" + +#: src/gui/insEdit.cpp:120 src/gui/insEdit.cpp:139 +msgid "3. Electric Guitar" +msgstr "" + +#: src/gui/insEdit.cpp:121 +msgid "4. Organ" +msgstr "" + +#: src/gui/insEdit.cpp:123 +msgid "6. Saxophone" +msgstr "" + +#: src/gui/insEdit.cpp:125 +msgid "8. Street Organ" +msgstr "" + +#: src/gui/insEdit.cpp:126 +msgid "9. Synth Brass" +msgstr "" + +#: src/gui/insEdit.cpp:127 +msgid "10. Electric Piano" +msgstr "" + +#: src/gui/insEdit.cpp:128 +msgid "11. Bass" +msgstr "" + +#: src/gui/insEdit.cpp:130 +msgid "13. Chime" +msgstr "" + +#: src/gui/insEdit.cpp:131 +msgid "14. Tom Tom II" +msgstr "" + +#: src/gui/insEdit.cpp:132 +msgid "15. Noise" +msgstr "" + +#: src/gui/insEdit.cpp:137 +msgid "1. Strings" +msgstr "" + +#: src/gui/insEdit.cpp:140 +msgid "4. Electric Piano" +msgstr "" + +#: src/gui/insEdit.cpp:141 +msgid "5. Flute" +msgstr "" + +#: src/gui/insEdit.cpp:142 +msgid "6. Marimba" +msgstr "" + +#: src/gui/insEdit.cpp:144 +msgid "8. Harmonica" +msgstr "" + +#: src/gui/insEdit.cpp:145 +msgid "9. Tuba" +msgstr "" + +#: src/gui/insEdit.cpp:146 +msgid "10. Synth Brass" +msgstr "" + +#: src/gui/insEdit.cpp:147 +msgid "11. Short Saw" +msgstr "" + +#: src/gui/insEdit.cpp:149 +msgid "13. Electric Guitar 2" +msgstr "" + +#: src/gui/insEdit.cpp:150 +msgid "14. Synth Bass" +msgstr "" + +#: src/gui/insEdit.cpp:151 +msgid "15. Sitar" +msgstr "" + +#: src/gui/insEdit.cpp:157 +msgid "1. Bell" +msgstr "" + +#: src/gui/insEdit.cpp:162 +msgid "6. Rattling Bell" +msgstr "" + +#: src/gui/insEdit.cpp:164 +msgid "8. Reed Organ" +msgstr "" + +#: src/gui/insEdit.cpp:165 +msgid "9. Soft Bell" +msgstr "" + +#: src/gui/insEdit.cpp:166 +msgid "10. Xylophone" +msgstr "" + +#: src/gui/insEdit.cpp:167 +msgid "11. Vibraphone" +msgstr "" + +#: src/gui/insEdit.cpp:168 +msgid "12. Brass" +msgstr "" + +#: src/gui/insEdit.cpp:169 +msgid "13. Bass Guitar" +msgstr "" + +#: src/gui/insEdit.cpp:170 +msgid "14. Synth" +msgstr "" + +#: src/gui/insEdit.cpp:171 +msgid "15. Chorus" +msgstr "" + +#: src/gui/insEdit.cpp:178 src/gui/insEdit.cpp:189 +msgid "Half Sine" +msgstr "" + +#: src/gui/insEdit.cpp:179 src/gui/insEdit.cpp:190 +msgid "Absolute Sine" +msgstr "" + +#: src/gui/insEdit.cpp:180 +msgid "Quarter Sine" +msgstr "" + +#: src/gui/insEdit.cpp:181 src/gui/insEdit.cpp:203 +msgid "Squished Sine" +msgstr "" + +#: src/gui/insEdit.cpp:182 src/gui/insEdit.cpp:205 +msgid "Squished AbsSine" +msgstr "" + +#: src/gui/insEdit.cpp:184 src/gui/insEdit.cpp:195 +msgid "Derived Square" +msgstr "" + +#: src/gui/insEdit.cpp:191 +msgid "Pulse Sine" +msgstr "" + +#: src/gui/insEdit.cpp:192 +msgid "Sine (Even Periods)" +msgstr "" + +#: src/gui/insEdit.cpp:193 +msgid "AbsSine (Even Periods)" +msgstr "" + +#: src/gui/insEdit.cpp:201 +msgid "Cut Sine" +msgstr "" + +#: src/gui/insEdit.cpp:202 +msgid "Cut Triangle" +msgstr "" + +#: src/gui/insEdit.cpp:204 +msgid "Squished Triangle" +msgstr "" + +#: src/gui/insEdit.cpp:206 +msgid "Squished AbsTriangle" +msgstr "" + +#: src/gui/insEdit.cpp:224 +msgid "Noise disabled" +msgstr "" + +#: src/gui/insEdit.cpp:225 +msgid "Square + noise" +msgstr "" + +#: src/gui/insEdit.cpp:226 +msgid "Ringmod from OP3 + noise" +msgstr "" + +#: src/gui/insEdit.cpp:227 +msgid "" +"Ringmod from OP3 + double pitch ModInput\n" +"WARNING - has emulation issues; subject to change" +msgstr "" + +#: src/gui/insEdit.cpp:232 +msgid "Bitwise AND" +msgstr "" + +#: src/gui/insEdit.cpp:233 +msgid "Bitwise OR" +msgstr "" + +#: src/gui/insEdit.cpp:234 +msgid "Bitwise XOR" +msgstr "" + +#: src/gui/insEdit.cpp:239 src/gui/insEdit.cpp:390 +msgid "gate" +msgstr "" + +#: src/gui/insEdit.cpp:240 src/gui/insEdit.cpp:391 +msgid "sync" +msgstr "" + +#: src/gui/insEdit.cpp:241 src/gui/insEdit.cpp:392 +msgid "ring" +msgstr "" + +#: src/gui/insEdit.cpp:327 +msgid "How did you even" +msgstr "" + +#: src/gui/insEdit.cpp:335 +msgid "triangle" +msgstr "" + +#: src/gui/insEdit.cpp:336 src/gui/insEdit.cpp:5821 +msgid "saw" +msgstr "" + +#: src/gui/insEdit.cpp:337 src/gui/insEdit.cpp:5827 +msgid "pulse" +msgstr "" + +#: src/gui/insEdit.cpp:338 src/gui/insEdit.cpp:344 src/gui/insEdit.cpp:373 +#: src/gui/insEdit.cpp:424 src/gui/insEdit.cpp:429 src/gui/insEdit.cpp:5833 +msgid "noise" +msgstr "" + +#: src/gui/insEdit.cpp:343 +msgid "tone" +msgstr "" + +#: src/gui/insEdit.cpp:345 +msgid "envelope" +msgstr "" + +#: src/gui/insEdit.cpp:350 +msgid "hold" +msgstr "" + +#: src/gui/insEdit.cpp:351 +msgid "alternate" +msgstr "" + +#: src/gui/insEdit.cpp:352 src/gui/insEdit.cpp:364 +msgid "direction" +msgstr "" + +#: src/gui/insEdit.cpp:353 src/gui/insEdit.cpp:436 +msgid "enable" +msgstr "" + +#: src/gui/insEdit.cpp:357 src/gui/insEdit.cpp:368 +msgid "enabled" +msgstr "" + +#: src/gui/insEdit.cpp:361 +msgid "mirror" +msgstr "" + +#: src/gui/insEdit.cpp:365 +msgid "resolution" +msgstr "" + +#: src/gui/insEdit.cpp:366 +msgid "fixed" +msgstr "" + +#: src/gui/insEdit.cpp:367 +msgid "N/A" +msgstr "" + +#: src/gui/insEdit.cpp:374 +msgid "echo" +msgstr "" + +#: src/gui/insEdit.cpp:375 +msgid "pitch mod" +msgstr "" + +#: src/gui/insEdit.cpp:376 src/gui/insEdit.cpp:508 +msgid "invert right" +msgstr "" + +#: src/gui/insEdit.cpp:377 src/gui/insEdit.cpp:509 +msgid "invert left" +msgstr "" + +#: src/gui/insEdit.cpp:382 src/gui/insEdit.cpp:5905 +msgid "low" +msgstr "" + +#: src/gui/insEdit.cpp:383 src/gui/insEdit.cpp:5911 +msgid "band" +msgstr "" + +#: src/gui/insEdit.cpp:384 src/gui/insEdit.cpp:5917 +msgid "high" +msgstr "" + +#: src/gui/insEdit.cpp:385 src/gui/insEdit.cpp:5924 +msgid "ch3off" +msgstr "" + +#: src/gui/insEdit.cpp:393 +msgid "test" +msgstr "" + +#: src/gui/insEdit.cpp:398 +msgid "15KHz" +msgstr "" + +#: src/gui/insEdit.cpp:399 +msgid "filter 2+4" +msgstr "" + +#: src/gui/insEdit.cpp:400 +msgid "filter 1+3" +msgstr "" + +#: src/gui/insEdit.cpp:401 +msgid "16-bit 3+4" +msgstr "" + +#: src/gui/insEdit.cpp:402 +msgid "16-bit 1+2" +msgstr "" + +#: src/gui/insEdit.cpp:403 +msgid "high3" +msgstr "" + +#: src/gui/insEdit.cpp:404 +msgid "high1" +msgstr "" + +#: src/gui/insEdit.cpp:405 +msgid "poly9" +msgstr "" + +#: src/gui/insEdit.cpp:414 +msgid "16'" +msgstr "" + +#: src/gui/insEdit.cpp:415 +msgid "8'" +msgstr "" + +#: src/gui/insEdit.cpp:416 +msgid "4'" +msgstr "" + +#: src/gui/insEdit.cpp:417 +msgid "2'" +msgstr "" + +#: src/gui/insEdit.cpp:418 +msgid "sustain" +msgstr "" + +#: src/gui/insEdit.cpp:423 +msgid "square" +msgstr "" + +#: src/gui/insEdit.cpp:431 +msgid "surround" +msgstr "" + +#: src/gui/insEdit.cpp:437 +msgid "oneshot" +msgstr "" + +#: src/gui/insEdit.cpp:438 +msgid "split L/R" +msgstr "" + +#: src/gui/insEdit.cpp:439 +msgid "HinvR" +msgstr "" + +#: src/gui/insEdit.cpp:440 +msgid "VinvR" +msgstr "" + +#: src/gui/insEdit.cpp:441 +msgid "HinvL" +msgstr "" + +#: src/gui/insEdit.cpp:442 +msgid "VinvL" +msgstr "" + +#: src/gui/insEdit.cpp:447 src/gui/insEdit.cpp:476 +msgid "ring mod" +msgstr "" + +#: src/gui/insEdit.cpp:448 +msgid "low pass" +msgstr "" + +#: src/gui/insEdit.cpp:449 src/gui/insEdit.cpp:475 +msgid "high pass" +msgstr "" + +#: src/gui/insEdit.cpp:450 +msgid "band pass" +msgstr "" + +#: src/gui/insEdit.cpp:459 +msgid "enable tap B" +msgstr "" + +#: src/gui/insEdit.cpp:460 +msgid "AM with slope" +msgstr "" + +#: src/gui/insEdit.cpp:465 +msgid "invert B" +msgstr "" + +#: src/gui/insEdit.cpp:466 +msgid "invert A" +msgstr "" + +#: src/gui/insEdit.cpp:467 +msgid "reset B" +msgstr "" + +#: src/gui/insEdit.cpp:468 +msgid "reset A" +msgstr "" + +#: src/gui/insEdit.cpp:469 +msgid "clip B" +msgstr "" + +#: src/gui/insEdit.cpp:470 +msgid "clip A" +msgstr "" + +#: src/gui/insEdit.cpp:477 +msgid "swap counters (noise)" +msgstr "" + +#: src/gui/insEdit.cpp:478 +msgid "low pass (noise)" +msgstr "" + +#: src/gui/insEdit.cpp:485 +msgid "rear right" +msgstr "" + +#: src/gui/insEdit.cpp:486 +msgid "rear left" +msgstr "" + +#: src/gui/insEdit.cpp:491 +msgid "on" +msgstr "" + +#: src/gui/insEdit.cpp:496 +msgid "k1 slowdown" +msgstr "" + +#: src/gui/insEdit.cpp:497 +msgid "k2 slowdown" +msgstr "" + +#: src/gui/insEdit.cpp:502 +msgid "pause" +msgstr "" + +#: src/gui/insEdit.cpp:503 +msgid "reverse" +msgstr "" + +#: src/gui/insEdit.cpp:521 +msgid "Subtract" +msgstr "" + +#: src/gui/insEdit.cpp:522 +msgid "Average" +msgstr "" + +#: src/gui/insEdit.cpp:523 src/gui/insEdit.cpp:2037 +msgid "Phase" +msgstr "" + +#: src/gui/insEdit.cpp:524 +msgid "Chorus" +msgstr "" + +#: src/gui/insEdit.cpp:528 +msgid "None (dual)" +msgstr "" + +#: src/gui/insEdit.cpp:529 +msgid "Wipe" +msgstr "" + +#: src/gui/insEdit.cpp:531 +msgid "Fade (ping-pong)" +msgstr "" + +#: src/gui/insEdit.cpp:532 +msgid "Overlay" +msgstr "" + +#: src/gui/insEdit.cpp:533 +msgid "Negative Overlay" +msgstr "" + +#: src/gui/insEdit.cpp:534 +msgid "Slide" +msgstr "" + +#: src/gui/insEdit.cpp:535 +msgid "Mix Chorus" +msgstr "" + +#: src/gui/insEdit.cpp:536 +msgid "Phase Modulation" +msgstr "" + +#: src/gui/insEdit.cpp:541 +msgid "Sweep" +msgstr "" + +#: src/gui/insEdit.cpp:542 src/gui/insEdit.cpp:552 +msgid "Wait" +msgstr "" + +#: src/gui/insEdit.cpp:543 src/gui/insEdit.cpp:553 +msgid "Wait for Release" +msgstr "" + +#: src/gui/insEdit.cpp:545 src/gui/insEdit.cpp:555 +msgid "Loop until Release" +msgstr "" + +#: src/gui/insEdit.cpp:549 +msgid "Volume Sweep" +msgstr "" + +#: src/gui/insEdit.cpp:550 +msgid "Frequency Sweep" +msgstr "" + +#: src/gui/insEdit.cpp:551 +msgid "Cutoff Sweep" +msgstr "" + +#: src/gui/insEdit.cpp:559 src/gui/insEdit.cpp:6604 +msgid "Direct" +msgstr "" + +#: src/gui/insEdit.cpp:560 src/gui/insEdit.cpp:6608 +msgid "Decrease (linear)" +msgstr "" + +#: src/gui/insEdit.cpp:561 src/gui/insEdit.cpp:6612 +msgid "Decrease (logarithmic)" +msgstr "" + +#: src/gui/insEdit.cpp:562 src/gui/insEdit.cpp:6616 +msgid "Increase (linear)" +msgstr "" + +#: src/gui/insEdit.cpp:563 src/gui/insEdit.cpp:6620 +msgid "Increase (bent line)" +msgstr "" + +#: src/gui/insEdit.cpp:611 +msgid "Relative" +msgstr "" + +#: src/gui/insEdit.cpp:616 +#, c-format +msgid "%d: +%d (exponential)" +msgstr "" + +#: src/gui/insEdit.cpp:619 +#, c-format +msgid "%d: +%d (linear)" +msgstr "" + +#: src/gui/insEdit.cpp:622 +#, c-format +msgid "%d: -%d (exponential)" +msgstr "" + +#: src/gui/insEdit.cpp:625 +#, c-format +msgid "%d: -%d (linear)" +msgstr "" + +#: src/gui/insEdit.cpp:627 +#, c-format +msgid "%d: %d (direct)" +msgstr "" + +#: src/gui/insEdit.cpp:660 +msgid "Random" +msgstr "" + +#: src/gui/insEdit.cpp:1610 +msgid "" +"left click to restart\n" +"middle click to pause\n" +"right click to see algorithm" +msgstr "" + +#: src/gui/insEdit.cpp:1620 +msgid "" +"left click to configure TL scaling\n" +"right click to see FM preview" +msgstr "" + +#: src/gui/insEdit.cpp:1624 +msgid "right click to see FM preview" +msgstr "" + +#: src/gui/insEdit.cpp:1639 +msgid "operator level changes with volume?" +msgstr "" + +#: src/gui/insEdit.cpp:1648 +msgid "AUTO##OPKVS" +msgstr "" + +#: src/gui/insEdit.cpp:1650 +msgid "NO##OPKVS" +msgstr "" + +#: src/gui/insEdit.cpp:1652 +msgid "YES##OPKVS" +msgstr "" + +#: src/gui/insEdit.cpp:1900 src/gui/insEdit.cpp:2005 +msgid "Bottom" +msgstr "" + +#: src/gui/insEdit.cpp:1940 +msgid "Hold" +msgstr "" + +#: src/gui/insEdit.cpp:1949 +msgid "SusTime" +msgstr "" + +#: src/gui/insEdit.cpp:1969 +msgid "SusDecay" +msgstr "" + +#: src/gui/insEdit.cpp:2047 +msgid "Shape" +msgstr "" + +#: src/gui/insEdit.cpp:2100 +msgid "Macro type: Sequence" +msgstr "" + +#: src/gui/insEdit.cpp:2103 +msgid "Macro type: ADSR" +msgstr "" + +#: src/gui/insEdit.cpp:2106 +msgid "Macro type: LFO" +msgstr "" + +#: src/gui/insEdit.cpp:2109 +msgid "Macro type: What's going on here?" +msgstr "" + +#: src/gui/insEdit.cpp:2122 +msgid "Delay/Step Length" +msgstr "" + +#: src/gui/insEdit.cpp:2125 +msgid "Step Length (ticks)##IMacroSpeed" +msgstr "" + +#: src/gui/insEdit.cpp:2129 +msgid "Delay##IMacroDelay" +msgstr "" + +#: src/gui/insEdit.cpp:2142 +msgid "Release mode: Active (jump to release pos)" +msgstr "" + +#: src/gui/insEdit.cpp:2144 +msgid "Release mode: Passive (delayed release)" +msgstr "" + +#: src/gui/insEdit.cpp:2393 +msgid "StepLen" +msgstr "" + +#: src/gui/insEdit.cpp:2401 +msgid "Delay" +msgstr "" + +#: src/gui/insEdit.cpp:2425 +msgid "The heck? No, this isn't even working correctly..." +msgstr "" + +#: src/gui/insEdit.cpp:2428 +msgid "The only problem with that selectedMacro is that it's a bug..." +msgstr "" + +#: src/gui/insEdit.cpp:2589 +msgid "(copying)" +msgstr "" + +#: src/gui/insEdit.cpp:2591 +msgid "(swapping)" +msgstr "" + +#: src/gui/insEdit.cpp:2595 +msgid "" +"- drag to swap operator\n" +"- shift-drag to copy operator" +msgstr "" + +#: src/gui/insEdit.cpp:2632 +msgid "new DPCM features disabled (compatibility)!" +msgstr "" + +#: src/gui/insEdit.cpp:2633 +msgid "click here to enable them." +msgstr "" + +#: src/gui/insEdit.cpp:2644 +msgid "none selected" +msgstr "" + +#: src/gui/insEdit.cpp:2657 +msgid "Use sample" +msgstr "" + +#: src/gui/insEdit.cpp:2659 +msgid "Sample bank slot##BANKSLOT" +msgstr "" + +#: src/gui/insEdit.cpp:2681 +msgid "Use wavetable (Amiga/Generic DAC only)" +msgstr "" + +#: src/gui/insEdit.cpp:2681 +msgid "Use wavetable" +msgstr "" + +#: src/gui/insEdit.cpp:2708 +msgid "Use sample map" +msgstr "" + +#: src/gui/insEdit.cpp:2730 +msgid "delta" +msgstr "" + +#: src/gui/insEdit.cpp:2736 +msgid "sample name" +msgstr "" + +#: src/gui/insEdit.cpp:3001 +msgid "set entire map to this pitch" +msgstr "" + +#: src/gui/insEdit.cpp:3009 +msgid "set entire map to this delta counter value" +msgstr "" + +#: src/gui/insEdit.cpp:3018 +msgid "set entire map to this note" +msgstr "" + +#: src/gui/insEdit.cpp:3027 +msgid "set entire map to this sample" +msgstr "" + +#: src/gui/insEdit.cpp:3037 +msgid "reset pitches" +msgstr "" + +#: src/gui/insEdit.cpp:3042 +msgid "clear delta counter values" +msgstr "" + +#: src/gui/insEdit.cpp:3048 +msgid "reset notes" +msgstr "" + +#: src/gui/insEdit.cpp:3054 +msgid "clear map samples" +msgstr "" + +#: src/gui/insEdit.cpp:3148 +msgid "Request from TX81Z" +msgstr "" + +#: src/gui/insEdit.cpp:3234 +#, c-format +msgid "%s name" +msgstr "" + +#: src/gui/insEdit.cpp:3286 +msgid "Fixed frequency mode" +msgstr "" + +#: src/gui/insEdit.cpp:3288 +msgid "" +"when enabled, drums will be set to the specified frequencies, ignoring the " +"note." +msgstr "" + +#: src/gui/insEdit.cpp:3296 +msgid "Drum" +msgstr "" + +#: src/gui/insEdit.cpp:3298 src/gui/insEdit.cpp:3798 src/gui/insEdit.cpp:3904 +#: src/gui/insEdit.cpp:4404 src/gui/insEdit.cpp:4468 src/gui/insEdit.cpp:5068 +#: src/gui/insEdit.cpp:5518 +msgid "Block" +msgstr "" + +#: src/gui/insEdit.cpp:3300 src/gui/insEdit.cpp:3803 src/gui/insEdit.cpp:3909 +#: src/gui/insEdit.cpp:4993 src/gui/insEdit.cpp:5079 src/gui/insEdit.cpp:5519 +msgid "FreqNum" +msgstr "" + +#: src/gui/insEdit.cpp:3303 +msgid "Snare/Hi-hat" +msgstr "" + +#: src/gui/insEdit.cpp:3304 +msgid "Tom/Top" +msgstr "" + +#: src/gui/insEdit.cpp:3314 +msgid "Volume##TL" +msgstr "" + +#: src/gui/insEdit.cpp:3316 +msgid "this volume slider only works in compatibility (non-drums) system." +msgstr "" + +#: src/gui/insEdit.cpp:3626 +msgid "Env" +msgstr "" + +#: src/gui/insEdit.cpp:3980 src/gui/insEdit.cpp:4346 src/gui/insEdit.cpp:4396 +#: src/gui/insEdit.cpp:5104 +msgid "OPL2/3 only (last 4 waveforms are OPL3 only)" +msgstr "" + +#: src/gui/insEdit.cpp:4079 src/gui/insEdit.cpp:4788 +#, c-format +msgid "Envelope 2 (kick only)" +msgstr "" + +#: src/gui/insEdit.cpp:4084 +#, c-format +msgid "Operator %d" +msgstr "" + +#: src/gui/insEdit.cpp:4414 +msgid "Freq" +msgstr "" + +#: src/gui/insEdit.cpp:4443 +msgid "Only on YM2151 (OPM)" +msgstr "" + +#: src/gui/insEdit.cpp:4466 +msgid "Blk" +msgstr "" + +#: src/gui/insEdit.cpp:4479 +msgid "F" +msgstr "" + +#: src/gui/insEdit.cpp:4481 +msgid "Frequency (F-Num)" +msgstr "" + +#: src/gui/insEdit.cpp:4833 +msgid "SSG On" +msgstr "" + +#: src/gui/insEdit.cpp:5206 src/gui/insEdit.cpp:5207 +msgid "waiting..." +msgstr "" + +#: src/gui/insEdit.cpp:5210 src/gui/insEdit.cpp:5211 +msgid "no instrument selected" +msgstr "ไม่ได้เลือกเครื่องดนตรีไว้" + +#: src/gui/insEdit.cpp:5393 +msgid "" +"none of the currently present chips are able to play this instrument type!" +msgstr "" + +#: src/gui/insEdit.cpp:5413 +msgid "FM Macros" +msgstr "" + +#: src/gui/insEdit.cpp:5435 src/gui/insEdit.cpp:5440 +msgid "LFO Speed" +msgstr "" + +#: src/gui/insEdit.cpp:5439 src/gui/insEdit.cpp:6514 +msgid "PM Depth" +msgstr "" + +#: src/gui/insEdit.cpp:5441 +msgid "LFO Shape" +msgstr "" + +#: src/gui/insEdit.cpp:5444 +msgid "OpMask" +msgstr "" + +#: src/gui/insEdit.cpp:5446 +msgid "AM Depth 2" +msgstr "" + +#: src/gui/insEdit.cpp:5447 +msgid "PM Depth 2" +msgstr "" + +#: src/gui/insEdit.cpp:5448 +msgid "LFO2 Speed" +msgstr "" + +#: src/gui/insEdit.cpp:5449 +msgid "LFO2 Shape" +msgstr "" + +#: src/gui/insEdit.cpp:5458 +#, c-format +msgid "Operator Macros" +msgstr "" + +#: src/gui/insEdit.cpp:5460 +#, c-format +msgid "OP%d Macros" +msgstr "" + +#: src/gui/insEdit.cpp:5521 +msgid "Op. Arpeggio" +msgstr "" + +#: src/gui/insEdit.cpp:5522 +msgid "Op. Pitch" +msgstr "" + +#: src/gui/insEdit.cpp:5531 +msgid "Op. Panning" +msgstr "" + +#: src/gui/insEdit.cpp:5558 +msgid "Use software envelope" +msgstr "" + +#: src/gui/insEdit.cpp:5559 +msgid "Initialize envelope on every note" +msgstr "" + +#: src/gui/insEdit.cpp:5560 +msgid "Double wave length (GBA only)" +msgstr "" + +#: src/gui/insEdit.cpp:5589 src/gui/insEdit.cpp:5666 +msgid "Sound Length" +msgstr "" + +#: src/gui/insEdit.cpp:5592 src/gui/insEdit.cpp:5666 +msgid "Infinity" +msgstr "" + +#: src/gui/insEdit.cpp:5596 +msgid "Direction" +msgstr "" + +#: src/gui/insEdit.cpp:5599 src/gui/insEdit.cpp:5669 src/gui/insEdit.cpp:5697 +#: src/gui/insEdit.cpp:6008 src/gui/insEdit.cpp:6051 +msgid "Up" +msgstr "" + +#: src/gui/insEdit.cpp:5604 src/gui/insEdit.cpp:5674 src/gui/insEdit.cpp:5702 +#: src/gui/insEdit.cpp:6013 src/gui/insEdit.cpp:6056 +msgid "Down" +msgstr "" + +#: src/gui/insEdit.cpp:5620 src/gui/insEdit.cpp:5953 +msgid "Hardware Sequence" +msgstr "" + +#: src/gui/insEdit.cpp:5630 src/gui/insEdit.cpp:5963 +msgid "Tick" +msgstr "" + +#: src/gui/insEdit.cpp:5632 src/gui/insEdit.cpp:5965 +msgid "Command" +msgstr "" + +#: src/gui/insEdit.cpp:5634 src/gui/insEdit.cpp:5967 +msgid "Move/Remove" +msgstr "" + +#: src/gui/insEdit.cpp:5663 +msgid "Env Length" +msgstr "" + +#: src/gui/insEdit.cpp:5690 +msgid "Shift" +msgstr "" + +#: src/gui/insEdit.cpp:5717 src/gui/insEdit.cpp:6073 +msgid "Ticks" +msgstr "" + +#: src/gui/insEdit.cpp:5736 src/gui/insEdit.cpp:6092 src/gui/insEdit.cpp:6239 +msgid "Position" +msgstr "" + +#: src/gui/insEdit.cpp:5815 +msgid "tri" +msgstr "" + +#: src/gui/insEdit.cpp:5882 +msgid "Ring Modulation" +msgstr "" + +#: src/gui/insEdit.cpp:5886 +msgid "Oscillator Sync" +msgstr "" + +#: src/gui/insEdit.cpp:5890 +msgid "Enable filter" +msgstr "" + +#: src/gui/insEdit.cpp:5891 +msgid "Initialize filter" +msgstr "" + +#: src/gui/insEdit.cpp:5894 src/gui/insEdit.cpp:5897 src/gui/insEdit.cpp:6951 +#: src/gui/insEdit.cpp:7215 src/gui/insEdit.cpp:7476 +msgid "Cutoff" +msgstr "" + +#: src/gui/insEdit.cpp:5902 src/gui/insEdit.cpp:6408 src/gui/insEdit.cpp:6952 +#: src/gui/insEdit.cpp:7179 src/gui/insEdit.cpp:7477 +msgid "Filter Mode" +msgstr "" + +#: src/gui/insEdit.cpp:5931 src/gui/insEdit.cpp:7485 +msgid "Noise Mode" +msgstr "" + +#: src/gui/insEdit.cpp:5932 +msgid "Wave Mix Mode" +msgstr "" + +#: src/gui/insEdit.cpp:5935 +msgid "Absolute Cutoff Macro" +msgstr "" + +#: src/gui/insEdit.cpp:5939 +msgid "Absolute Duty Macro" +msgstr "" + +#: src/gui/insEdit.cpp:5945 +msgid "Don't test before new note" +msgstr "" + +#: src/gui/insEdit.cpp:5950 +msgid "Switch roles of frequency and phase reset timer" +msgstr "" + +#: src/gui/insEdit.cpp:5997 src/gui/insEdit.cpp:6040 +msgid "Period" +msgstr "" + +#: src/gui/insEdit.cpp:6002 src/gui/insEdit.cpp:6045 src/gui/insEdit.cpp:6892 +msgid "Amount" +msgstr "" + +#: src/gui/insEdit.cpp:6005 src/gui/insEdit.cpp:6048 +msgid "Bound" +msgstr "" + +#: src/gui/insEdit.cpp:6021 +msgid "Flip" +msgstr "" + +#: src/gui/insEdit.cpp:6210 +msgid "Load waveform" +msgstr "" + +#: src/gui/insEdit.cpp:6215 +msgid "" +"when enabled, a waveform will be loaded into RAM.\n" +"when disabled, only the offset and length change." +msgstr "" + +#: src/gui/insEdit.cpp:6219 +msgid "Waveform##WAVE" +msgstr "" + +#: src/gui/insEdit.cpp:6227 +msgid "Per-channel wave position/length" +msgstr "" + +#: src/gui/insEdit.cpp:6237 +msgid "Ch" +msgstr "" + +#: src/gui/insEdit.cpp:6286 +msgid "Compatibility mode" +msgstr "" + +#: src/gui/insEdit.cpp:6288 +msgid "" +"only use for compatibility with .dmf modules!\n" +"- initializes modulation table with first wavetable\n" +"- does not alter modulation parameters on instrument change" +msgstr "" + +#: src/gui/insEdit.cpp:6290 +msgid "Modulation depth" +msgstr "" + +#: src/gui/insEdit.cpp:6294 +msgid "Modulation speed" +msgstr "" + +#: src/gui/insEdit.cpp:6298 +msgid "Modulation table" +msgstr "" + +#: src/gui/insEdit.cpp:6347 +msgid "Set modulation table (channel 5 only)" +msgstr "" + +#: src/gui/insEdit.cpp:6411 src/gui/insEdit.cpp:7184 +msgid "Filter K1" +msgstr "" + +#: src/gui/insEdit.cpp:6413 src/gui/insEdit.cpp:7185 +msgid "Filter K2" +msgstr "" + +#: src/gui/insEdit.cpp:6417 +msgid "Envelope length" +msgstr "" + +#: src/gui/insEdit.cpp:6420 +msgid "Left Volume Ramp" +msgstr "" + +#: src/gui/insEdit.cpp:6422 +msgid "Right Volume Ramp" +msgstr "" + +#: src/gui/insEdit.cpp:6425 +msgid "Filter K1 Ramp" +msgstr "" + +#: src/gui/insEdit.cpp:6427 +msgid "Filter K2 Ramp" +msgstr "" + +#: src/gui/insEdit.cpp:6430 +msgid "K1 Ramp Slowdown" +msgstr "" + +#: src/gui/insEdit.cpp:6432 +msgid "K2 Ramp Slowdown" +msgstr "" + +#: src/gui/insEdit.cpp:6454 +msgid "Attack Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6460 +msgid "Decay 1 Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6466 +msgid "Decay Level" +msgstr "" + +#: src/gui/insEdit.cpp:6472 +msgid "Decay 2 Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6478 +msgid "Release Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6484 +msgid "Rate Correction" +msgstr "" + +#: src/gui/insEdit.cpp:6512 +msgid "LFO Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6523 +msgid "Use envelope" +msgstr "" + +#: src/gui/insEdit.cpp:6576 +msgid "Sustain/release mode:" +msgstr "" + +#: src/gui/insEdit.cpp:6577 +msgid "Direct (cut on release)" +msgstr "" + +#: src/gui/insEdit.cpp:6580 +msgid "Effective (linear decrease)" +msgstr "" + +#: src/gui/insEdit.cpp:6583 +msgid "Effective (exponential decrease)" +msgstr "" + +#: src/gui/insEdit.cpp:6586 +msgid "Delayed (write R on release)" +msgstr "" + +#: src/gui/insEdit.cpp:6596 src/gui/insEdit.cpp:6597 +msgid "Gain Mode" +msgstr "" + +#: src/gui/insEdit.cpp:6599 src/gui/insEdit.cpp:6600 src/gui/insEdit.cpp:7205 +msgid "Gain" +msgstr "" + +#: src/gui/insEdit.cpp:6633 +msgid "" +"using decrease modes will not produce any sound at all, unless you know what " +"you are doing.\n" +"it is recommended to use the Gain macro for decrease instead." +msgstr "" + +#: src/gui/insEdit.cpp:6703 +msgid "Enable synthesizer" +msgstr "" + +#: src/gui/insEdit.cpp:6721 +msgid "Single-waveform" +msgstr "" + +#: src/gui/insEdit.cpp:6730 +msgid "Dual-waveform" +msgstr "" + +#: src/gui/insEdit.cpp:6803 src/gui/insEdit.cpp:6812 +msgid "Wave 1" +msgstr "" + +#: src/gui/insEdit.cpp:6808 src/gui/insEdit.cpp:6823 +msgid "" +"waveform macro is controlling wave 1!\n" +"this value will be ineffective." +msgstr "" + +#: src/gui/insEdit.cpp:6829 +msgid "Wave 2" +msgstr "" + +#: src/gui/insEdit.cpp:6844 +msgid "Resume preview" +msgstr "" + +#: src/gui/insEdit.cpp:6846 +msgid "Pause preview" +msgstr "" + +#: src/gui/insEdit.cpp:6854 +msgid "Restart preview" +msgstr "" + +#: src/gui/insEdit.cpp:6874 +msgid "Copy to new wavetable" +msgstr "" + +#: src/gui/insEdit.cpp:6881 +msgid "Update Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6902 +msgid "Global" +msgstr "" + +#: src/gui/insEdit.cpp:6906 +msgid "" +"wavetable synthesizer disabled.\n" +"use the Waveform macro to set the wave for this instrument." +msgstr "" + +#: src/gui/insEdit.cpp:6912 +msgid "Macros" +msgstr "" + +#: src/gui/insEdit.cpp:6921 src/gui/insEdit.cpp:6929 src/gui/insEdit.cpp:6938 +#: src/gui/insEdit.cpp:6947 src/gui/insEdit.cpp:6962 src/gui/insEdit.cpp:6976 +#: src/gui/insEdit.cpp:6988 src/gui/insEdit.cpp:7001 src/gui/insEdit.cpp:7017 +#: src/gui/insEdit.cpp:7023 src/gui/insEdit.cpp:7033 src/gui/insEdit.cpp:7040 +#: src/gui/insEdit.cpp:7046 src/gui/insEdit.cpp:7059 src/gui/insEdit.cpp:7066 +#: src/gui/insEdit.cpp:7073 src/gui/insEdit.cpp:7082 src/gui/insEdit.cpp:7092 +#: src/gui/insEdit.cpp:7100 src/gui/insEdit.cpp:7106 src/gui/insEdit.cpp:7114 +#: src/gui/insEdit.cpp:7121 src/gui/insEdit.cpp:7127 src/gui/insEdit.cpp:7137 +#: src/gui/insEdit.cpp:7149 src/gui/insEdit.cpp:7157 src/gui/insEdit.cpp:7173 +#: src/gui/insEdit.cpp:7178 src/gui/insEdit.cpp:7191 src/gui/insEdit.cpp:7198 +#: src/gui/insEdit.cpp:7209 src/gui/insEdit.cpp:7222 src/gui/insEdit.cpp:7231 +#: src/gui/insEdit.cpp:7238 src/gui/insEdit.cpp:7246 src/gui/insEdit.cpp:7270 +#: src/gui/insEdit.cpp:7277 src/gui/insEdit.cpp:7285 src/gui/insEdit.cpp:7296 +#: src/gui/insEdit.cpp:7303 src/gui/insEdit.cpp:7311 src/gui/insEdit.cpp:7319 +#: src/gui/insEdit.cpp:7328 src/gui/insEdit.cpp:7336 src/gui/insEdit.cpp:7342 +#: src/gui/insEdit.cpp:7348 src/gui/insEdit.cpp:7354 src/gui/insEdit.cpp:7359 +#: src/gui/insEdit.cpp:7366 src/gui/insEdit.cpp:7373 src/gui/insEdit.cpp:7381 +#: src/gui/insEdit.cpp:7390 src/gui/insEdit.cpp:7398 src/gui/insEdit.cpp:7410 +#: src/gui/insEdit.cpp:7423 src/gui/insEdit.cpp:7434 src/gui/insEdit.cpp:7444 +#: src/gui/insEdit.cpp:7452 src/gui/insEdit.cpp:7462 src/gui/insEdit.cpp:7471 +msgid "Arpeggio" +msgstr "" + +#: src/gui/insEdit.cpp:6925 src/gui/insEdit.cpp:6932 src/gui/insEdit.cpp:6943 +#: src/gui/insEdit.cpp:6972 src/gui/insEdit.cpp:6984 src/gui/insEdit.cpp:6994 +#: src/gui/insEdit.cpp:7007 src/gui/insEdit.cpp:7054 src/gui/insEdit.cpp:7062 +#: src/gui/insEdit.cpp:7069 src/gui/insEdit.cpp:7088 src/gui/insEdit.cpp:7110 +#: src/gui/insEdit.cpp:7133 src/gui/insEdit.cpp:7144 src/gui/insEdit.cpp:7163 +#: src/gui/insEdit.cpp:7183 src/gui/insEdit.cpp:7194 src/gui/insEdit.cpp:7214 +#: src/gui/insEdit.cpp:7234 src/gui/insEdit.cpp:7242 src/gui/insEdit.cpp:7249 +#: src/gui/insEdit.cpp:7254 src/gui/insEdit.cpp:7260 src/gui/insEdit.cpp:7266 +#: src/gui/insEdit.cpp:7273 src/gui/insEdit.cpp:7281 src/gui/insEdit.cpp:7290 +#: src/gui/insEdit.cpp:7299 src/gui/insEdit.cpp:7307 src/gui/insEdit.cpp:7324 +#: src/gui/insEdit.cpp:7332 src/gui/insEdit.cpp:7338 src/gui/insEdit.cpp:7362 +#: src/gui/insEdit.cpp:7369 src/gui/insEdit.cpp:7377 src/gui/insEdit.cpp:7386 +#: src/gui/insEdit.cpp:7394 src/gui/insEdit.cpp:7402 src/gui/insEdit.cpp:7414 +#: src/gui/insEdit.cpp:7429 src/gui/insEdit.cpp:7440 src/gui/insEdit.cpp:7448 +#: src/gui/insEdit.cpp:7457 src/gui/insEdit.cpp:7475 +msgid "Phase Reset" +msgstr "" + +#: src/gui/insEdit.cpp:6939 src/gui/insEdit.cpp:7024 src/gui/insEdit.cpp:7210 +#: src/gui/insEdit.cpp:7247 +msgid "Duty/Noise" +msgstr "" + +#: src/gui/insEdit.cpp:6966 src/gui/insEdit.cpp:7288 +msgid "Surround" +msgstr "" + +#: src/gui/insEdit.cpp:6968 src/gui/insEdit.cpp:6981 src/gui/insEdit.cpp:7026 +#: src/gui/insEdit.cpp:7085 src/gui/insEdit.cpp:7141 src/gui/insEdit.cpp:7159 +#: src/gui/insEdit.cpp:7180 src/gui/insEdit.cpp:7201 src/gui/insEdit.cpp:7225 +#: src/gui/insEdit.cpp:7278 src/gui/insEdit.cpp:7304 src/gui/insEdit.cpp:7321 +#: src/gui/insEdit.cpp:7329 src/gui/insEdit.cpp:7374 src/gui/insEdit.cpp:7383 +#: src/gui/insEdit.cpp:7399 src/gui/insEdit.cpp:7411 src/gui/insEdit.cpp:7426 +#: src/gui/insEdit.cpp:7454 src/gui/insEdit.cpp:7464 +msgid "Panning (left)" +msgstr "" + +#: src/gui/insEdit.cpp:6969 src/gui/insEdit.cpp:6982 src/gui/insEdit.cpp:7027 +#: src/gui/insEdit.cpp:7086 src/gui/insEdit.cpp:7142 src/gui/insEdit.cpp:7160 +#: src/gui/insEdit.cpp:7181 src/gui/insEdit.cpp:7202 src/gui/insEdit.cpp:7226 +#: src/gui/insEdit.cpp:7279 src/gui/insEdit.cpp:7305 src/gui/insEdit.cpp:7322 +#: src/gui/insEdit.cpp:7330 src/gui/insEdit.cpp:7375 src/gui/insEdit.cpp:7384 +#: src/gui/insEdit.cpp:7400 src/gui/insEdit.cpp:7412 src/gui/insEdit.cpp:7427 +#: src/gui/insEdit.cpp:7455 src/gui/insEdit.cpp:7465 +msgid "Panning (right)" +msgstr "" + +#: src/gui/insEdit.cpp:6990 src/gui/insEdit.cpp:7003 src/gui/insEdit.cpp:7107 +#: src/gui/insEdit.cpp:7199 src/gui/insEdit.cpp:7239 src/gui/insEdit.cpp:7424 +msgid "Noise Freq" +msgstr "" + +#: src/gui/insEdit.cpp:6996 src/gui/insEdit.cpp:7010 src/gui/insEdit.cpp:7167 +msgid "AutoEnv Num" +msgstr "" + +#: src/gui/insEdit.cpp:6997 src/gui/insEdit.cpp:7011 src/gui/insEdit.cpp:7168 +msgid "AutoEnv Den" +msgstr "" + +#: src/gui/insEdit.cpp:7012 +msgid "Noise AND Mask" +msgstr "" + +#: src/gui/insEdit.cpp:7013 +msgid "Noise OR Mask" +msgstr "" + +#: src/gui/insEdit.cpp:7034 +msgid "On/Off" +msgstr "" + +#: src/gui/insEdit.cpp:7060 +msgid "Patch" +msgstr "" + +#: src/gui/insEdit.cpp:7076 +msgid "Mod Depth" +msgstr "" + +#: src/gui/insEdit.cpp:7077 +msgid "Mod Speed" +msgstr "" + +#: src/gui/insEdit.cpp:7078 +msgid "Mod Position" +msgstr "" + +#: src/gui/insEdit.cpp:7083 +msgid "Noise Length" +msgstr "" + +#: src/gui/insEdit.cpp:7093 +msgid "Wave Pos" +msgstr "" + +#: src/gui/insEdit.cpp:7096 +msgid "Wave Length" +msgstr "" + +#: src/gui/insEdit.cpp:7115 +msgid "AUDCTL" +msgstr "" + +#: src/gui/insEdit.cpp:7122 src/gui/insEdit.cpp:7343 +msgid "Pulse Width" +msgstr "" + +#: src/gui/insEdit.cpp:7139 +msgid "Duty/Int" +msgstr "" + +#: src/gui/insEdit.cpp:7145 src/gui/insEdit.cpp:7406 +msgid "Load LFSR" +msgstr "" + +#: src/gui/insEdit.cpp:7165 +msgid "Envelope Mode" +msgstr "" + +#: src/gui/insEdit.cpp:7218 +msgid "Phase Reset Timer" +msgstr "" + +#: src/gui/insEdit.cpp:7252 src/gui/insEdit.cpp:7259 +msgid "Freq Divider" +msgstr "" + +#: src/gui/insEdit.cpp:7255 +msgid "Clock Divider" +msgstr "" + +#: src/gui/insEdit.cpp:7264 +msgid "Global Volume" +msgstr "" + +#: src/gui/insEdit.cpp:7286 +msgid "Echo Level" +msgstr "" + +#: src/gui/insEdit.cpp:7291 +msgid "Echo Feedback" +msgstr "" + +#: src/gui/insEdit.cpp:7292 +msgid "Echo Length" +msgstr "" + +#: src/gui/insEdit.cpp:7312 +msgid "Group Ctrl" +msgstr "" + +#: src/gui/insEdit.cpp:7313 +msgid "Group Attack" +msgstr "" + +#: src/gui/insEdit.cpp:7314 +msgid "Group Decay" +msgstr "" + +#: src/gui/insEdit.cpp:7320 +msgid "Noise Type" +msgstr "" + +#: src/gui/insEdit.cpp:7367 +msgid "Square/Noise" +msgstr "" + +#: src/gui/insEdit.cpp:7404 +msgid "Tap A Location" +msgstr "" + +#: src/gui/insEdit.cpp:7405 +msgid "Tap B Location" +msgstr "" + +#: src/gui/insEdit.cpp:7416 +msgid "Portion A Length" +msgstr "" + +#: src/gui/insEdit.cpp:7417 +msgid "Portion B Length" +msgstr "" + +#: src/gui/insEdit.cpp:7418 +msgid "Portion A Offset" +msgstr "" + +#: src/gui/insEdit.cpp:7419 +msgid "Portion B Offset" +msgstr "" + +#: src/gui/insEdit.cpp:7463 +msgid "Parameter" +msgstr "" + +#: src/gui/insEdit.cpp:7467 +msgid "Load Value" +msgstr "" + +#: src/gui/insEdit.cpp:7479 +msgid "Filter Toggle" +msgstr "" + +#: src/gui/insEdit.cpp:7486 +msgid "Wave Mix" +msgstr "" + +#: src/gui/insEdit.cpp:7500 +msgid "Octave offset" +msgstr "" + +#: src/gui/insEdit.cpp:7505 +msgid "go to Macros for other parameters." +msgstr "" + +#: src/gui/insEdit.cpp:7521 +msgid "invalid instrument type! change it first." +msgstr "" + +#: src/gui/insEdit.cpp:7565 +msgid "clear contents" +msgstr "" + +#: src/gui/insEdit.cpp:7571 +msgid "offset..." +msgstr "" + +#: src/gui/insEdit.cpp:7572 src/gui/insEdit.cpp:7605 +msgid "X" +msgstr "" + +#: src/gui/insEdit.cpp:7573 src/gui/insEdit.cpp:7609 +msgid "Y" +msgstr "" + +#: src/gui/insEdit.cpp:7574 +msgid "offset" +msgstr "" + +#: src/gui/insEdit.cpp:7637 +msgid "Min" +msgstr "" + +#: src/gui/insEdit.cpp:7638 +msgid "Max" +msgstr "" diff --git a/po/tr.po b/po/tr.po new file mode 100644 index 000000000..8b6637853 --- /dev/null +++ b/po/tr.po @@ -0,0 +1,16025 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: furnace 0.6.3\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: tr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/engine/sysDef.cpp:428 src/engine/sysDef.cpp:441 +msgid "20xx: Set channel mode (bit 0: square; bit 1: noise; bit 2: envelope)" +msgstr "" + +#: src/engine/sysDef.cpp:429 +msgid "21xx: Set noise frequency (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:430 src/engine/sysDef.cpp:443 +msgid "22xy: Set envelope mode (x: shape, y: enable for this channel)" +msgstr "" + +#: src/engine/sysDef.cpp:431 src/engine/sysDef.cpp:444 +msgid "23xx: Set envelope period low byte" +msgstr "" + +#: src/engine/sysDef.cpp:432 src/engine/sysDef.cpp:445 +msgid "24xx: Set envelope period high byte" +msgstr "" + +#: src/engine/sysDef.cpp:433 src/engine/sysDef.cpp:446 +#: src/engine/sysDef.cpp:1599 +msgid "25xx: Envelope slide up" +msgstr "" + +#: src/engine/sysDef.cpp:434 src/engine/sysDef.cpp:447 +#: src/engine/sysDef.cpp:1600 +msgid "26xx: Envelope slide down" +msgstr "" + +#: src/engine/sysDef.cpp:435 src/engine/sysDef.cpp:448 +#: src/engine/sysDef.cpp:1601 +msgid "29xy: Set auto-envelope (x: numerator; y: denominator)" +msgstr "" + +#: src/engine/sysDef.cpp:436 src/engine/sysDef.cpp:449 +msgid "2Exx: Write to I/O port A" +msgstr "" + +#: src/engine/sysDef.cpp:437 src/engine/sysDef.cpp:450 +msgid "2Fxx: Write to I/O port B" +msgstr "" + +#: src/engine/sysDef.cpp:442 +msgid "21xx: Set noise frequency (0 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:451 +msgid "12xx: Set duty cycle (0 to 8)" +msgstr "" + +#: src/engine/sysDef.cpp:453 +msgid "27xx: Set noise AND mask" +msgstr "" + +#: src/engine/sysDef.cpp:454 +msgid "28xx: Set noise OR mask" +msgstr "" + +#: src/engine/sysDef.cpp:455 +msgid "" +"2Cxy: Automatic noise frequency (x: mode (0: disable, 1: freq, 2: freq + OR " +"mask); y: offset)" +msgstr "" + +#: src/engine/sysDef.cpp:456 +msgid "2Dxx: NOT TO BE EMPLOYED BY THE COMPOSER" +msgstr "" + +#: src/engine/sysDef.cpp:460 +msgid "30xx: Toggle hard envelope reset on new notes" +msgstr "" + +#: src/engine/sysDef.cpp:465 +msgid "18xx: Toggle extended channel 3 mode" +msgstr "" + +#: src/engine/sysDef.cpp:470 src/engine/sysDef.cpp:766 +#: src/engine/sysDef.cpp:1025 src/engine/sysDef.cpp:1272 +#: src/engine/sysDef.cpp:1593 +msgid "17xx: Toggle PCM mode (LEGACY)" +msgstr "" + +#: src/engine/sysDef.cpp:471 src/engine/sysDef.cpp:1653 +#: src/engine/sysDef.cpp:1963 +msgid "DFxx: Set sample playback direction (0: normal; 1: reverse)" +msgstr "" + +#: src/engine/sysDef.cpp:476 +msgid "18xx: Toggle drums mode (1: enabled; 0: disabled)" +msgstr "" + +#: src/engine/sysDef.cpp:480 src/engine/sysDef.cpp:554 +#: src/engine/sysDef.cpp:575 +msgid "11xx: Set feedback (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:481 +msgid "12xx: Set level of operator 1 (0 highest, 7F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:482 +msgid "13xx: Set level of operator 2 (0 highest, 7F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:483 +msgid "14xx: Set level of operator 3 (0 highest, 7F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:484 +msgid "15xx: Set level of operator 4 (0 highest, 7F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:485 src/engine/sysDef.cpp:580 +#: src/engine/sysDef.cpp:635 +msgid "16xy: Set operator multiplier (x: operator from 1 to 4; y: multiplier)" +msgstr "" + +#: src/engine/sysDef.cpp:486 +msgid "19xx: Set attack of all operators (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:487 +msgid "1Axx: Set attack of operator 1 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:488 +msgid "1Bxx: Set attack of operator 2 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:489 +msgid "1Cxx: Set attack of operator 3 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:490 +msgid "1Dxx: Set attack of operator 4 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:491 src/engine/sysDef.cpp:588 +#: src/engine/sysDef.cpp:656 +msgid "50xy: Set AM (x: operator from 1 to 4 (0 for all ops); y: AM)" +msgstr "" + +#: src/engine/sysDef.cpp:492 src/engine/sysDef.cpp:589 +#: src/engine/sysDef.cpp:657 +msgid "" +"51xy: Set sustain level (x: operator from 1 to 4 (0 for all ops); y: sustain)" +msgstr "" + +#: src/engine/sysDef.cpp:493 src/engine/sysDef.cpp:590 +#: src/engine/sysDef.cpp:658 +msgid "52xy: Set release (x: operator from 1 to 4 (0 for all ops); y: release)" +msgstr "" + +#: src/engine/sysDef.cpp:494 +msgid "" +"53xy: Set detune (x: operator from 1 to 4 (0 for all ops); y: detune where 3 " +"is center)" +msgstr "" + +#: src/engine/sysDef.cpp:495 src/engine/sysDef.cpp:592 +#: src/engine/sysDef.cpp:660 +msgid "" +"54xy: Set envelope scale (x: operator from 1 to 4 (0 for all ops); y: scale " +"from 0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:496 +msgid "56xx: Set decay of all operators (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:497 +msgid "57xx: Set decay of operator 1 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:498 +msgid "58xx: Set decay of operator 2 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:499 +msgid "59xx: Set decay of operator 3 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:500 +msgid "5Axx: Set decay of operator 4 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:501 +msgid "5Bxx: Set decay 2 of all operators (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:502 +msgid "5Cxx: Set decay 2 of operator 1 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:503 +msgid "5Dxx: Set decay 2 of operator 2 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:504 +msgid "5Exx: Set decay 2 of operator 3 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:505 +msgid "5Fxx: Set decay 2 of operator 4 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:510 +msgid "10xx: Set noise frequency (xx: value; 0 disables noise)" +msgstr "" + +#: src/engine/sysDef.cpp:511 +msgid "17xx: Set LFO speed" +msgstr "" + +#: src/engine/sysDef.cpp:512 +msgid "18xx: Set LFO waveform (0 saw, 1 square, 2 triangle, 3 noise)" +msgstr "" + +#: src/engine/sysDef.cpp:513 +msgid "1Exx: Set AM depth (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:514 +msgid "1Fxx: Set PM depth (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:515 +msgid "" +"55xy: Set detune 2 (x: operator from 1 to 4 (0 for all ops); y: detune from " +"0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:520 +msgid "24xx: Set LFO 2 speed" +msgstr "" + +#: src/engine/sysDef.cpp:521 +msgid "25xx: Set LFO 2 waveform (0 saw, 1 square, 2 triangle, 3 noise)" +msgstr "" + +#: src/engine/sysDef.cpp:522 +msgid "26xx: Set AM 2 depth (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:523 +msgid "27xx: Set PM 2 depth (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:524 +msgid "" +"28xy: Set reverb (x: operator from 1 to 4 (0 for all ops); y: reverb from 0 " +"to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:525 src/engine/sysDef.cpp:650 +msgid "" +"2Axy: Set waveform (x: operator from 1 to 4 (0 for all ops); y: waveform " +"from 0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:526 +msgid "" +"2Bxy: Set envelope generator shift (x: operator from 1 to 4 (0 for all ops); " +"y: shift from 0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:527 +msgid "" +"2Cxy: Set fine multiplier (x: operator from 1 to 4 (0 for all ops); y: fine)" +msgstr "" + +#: src/engine/sysDef.cpp:530 +msgid "" +"3xyy: Set fixed frequency of operator 1 (x: octave from 0 to 7; y: frequency)" +msgstr "" + +#: src/engine/sysDef.cpp:531 +msgid "" +"3xyy: Set fixed frequency of operator 2 (x: octave from 8 to F; y: frequency)" +msgstr "" + +#: src/engine/sysDef.cpp:532 +msgid "" +"4xyy: Set fixed frequency of operator 3 (x: octave from 0 to 7; y: frequency)" +msgstr "" + +#: src/engine/sysDef.cpp:533 +msgid "" +"4xyy: Set fixed frequency of operator 4 (x: octave from 8 to F; y: frequency)" +msgstr "" + +#: src/engine/sysDef.cpp:540 +msgid "10xy: Setup LFO (x: enable; y: speed)" +msgstr "" + +#: src/engine/sysDef.cpp:541 +msgid "" +"55xy: Set SSG envelope (x: operator from 1 to 4 (0 for all ops); y: 0-7 on, " +"8 off)" +msgstr "" + +#: src/engine/sysDef.cpp:549 +msgid "1Fxx: Set ADPCM-A global volume (0 to 3F)" +msgstr "" + +#: src/engine/sysDef.cpp:553 +msgid "10xx: Set patch (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:555 src/engine/sysDef.cpp:576 +#: src/engine/sysDef.cpp:631 +msgid "12xx: Set level of operator 1 (0 highest, 3F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:556 src/engine/sysDef.cpp:577 +#: src/engine/sysDef.cpp:632 +msgid "13xx: Set level of operator 2 (0 highest, 3F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:557 +msgid "16xy: Set operator multiplier (x: operator from 1 to 2; y: multiplier)" +msgstr "" + +#: src/engine/sysDef.cpp:558 src/engine/sysDef.cpp:582 +#: src/engine/sysDef.cpp:637 +msgid "19xx: Set attack of all operators (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:559 src/engine/sysDef.cpp:583 +#: src/engine/sysDef.cpp:638 +msgid "1Axx: Set attack of operator 1 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:560 src/engine/sysDef.cpp:584 +#: src/engine/sysDef.cpp:639 +msgid "1Bxx: Set attack of operator 2 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:561 +msgid "50xy: Set AM (x: operator from 1 to 2 (0 for all ops); y: AM)" +msgstr "" + +#: src/engine/sysDef.cpp:562 +msgid "" +"51xy: Set sustain level (x: operator from 1 to 2 (0 for all ops); y: sustain)" +msgstr "" + +#: src/engine/sysDef.cpp:563 +msgid "52xy: Set release (x: operator from 1 to 2 (0 for all ops); y: release)" +msgstr "" + +#: src/engine/sysDef.cpp:564 +msgid "53xy: Set vibrato (x: operator from 1 to 2 (0 for all ops); y: enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:565 +msgid "" +"54xy: Set envelope scale (x: operator from 1 to 2 (0 for all ops); y: scale " +"from 0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:566 +msgid "" +"55xy: Set envelope sustain (x: operator from 1 to 2 (0 for all ops); y: " +"enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:567 src/engine/sysDef.cpp:594 +#: src/engine/sysDef.cpp:662 +msgid "56xx: Set decay of all operators (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:568 src/engine/sysDef.cpp:595 +#: src/engine/sysDef.cpp:663 +msgid "57xx: Set decay of operator 1 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:569 src/engine/sysDef.cpp:596 +#: src/engine/sysDef.cpp:664 +msgid "58xx: Set decay of operator 2 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:570 +msgid "" +"5Bxy: Set whether key will scale envelope (x: operator from 1 to 2 (0 for " +"all ops); y: enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:574 +msgid "10xx: Set global AM depth (0: 1dB, 1: 4.8dB)" +msgstr "" + +#: src/engine/sysDef.cpp:578 src/engine/sysDef.cpp:633 +msgid "14xx: Set level of operator 3 (0 highest, 3F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:579 src/engine/sysDef.cpp:634 +msgid "15xx: Set level of operator 4 (0 highest, 3F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:581 +msgid "17xx: Set global vibrato depth (0: normal, 1: double)" +msgstr "" + +#: src/engine/sysDef.cpp:585 src/engine/sysDef.cpp:640 +msgid "1Cxx: Set attack of operator 3 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:586 src/engine/sysDef.cpp:641 +msgid "1Dxx: Set attack of operator 4 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:587 +msgid "" +"2Axy: Set waveform (x: operator from 1 to 4 (0 for all ops); y: waveform " +"from 0 to 3 in OPL2 and 0 to 7 in OPL3)" +msgstr "" + +#: src/engine/sysDef.cpp:591 src/engine/sysDef.cpp:659 +msgid "53xy: Set vibrato (x: operator from 1 to 4 (0 for all ops); y: enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:593 src/engine/sysDef.cpp:661 +msgid "" +"55xy: Set envelope sustain (x: operator from 1 to 4 (0 for all ops); y: " +"enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:597 src/engine/sysDef.cpp:665 +msgid "59xx: Set decay of operator 3 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:598 src/engine/sysDef.cpp:666 +msgid "5Axx: Set decay of operator 4 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:599 src/engine/sysDef.cpp:667 +msgid "" +"5Bxy: Set whether key will scale envelope (x: operator from 1 to 4 (0 for " +"all ops); y: enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:603 src/engine/sysDef.cpp:680 +msgid "" +"10xx: Set waveform (bit 0: triangle; bit 1: saw; bit 2: pulse; bit 3: noise)" +msgstr "" + +#: src/engine/sysDef.cpp:604 +msgid "11xx: Set coarse cutoff (not recommended; use 4xxx instead)" +msgstr "" + +#: src/engine/sysDef.cpp:605 +msgid "12xx: Set coarse pulse width (not recommended; use 3xxx instead)" +msgstr "" + +#: src/engine/sysDef.cpp:606 +msgid "13xx: Set resonance (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:607 +msgid "" +"14xx: Set filter mode (bit 0: low pass; bit 1: band pass; bit 2: high pass)" +msgstr "" + +#: src/engine/sysDef.cpp:608 +msgid "15xx: Set envelope reset time" +msgstr "" + +#: src/engine/sysDef.cpp:609 +msgid "1Axx: Disable envelope reset for this channel (1 disables; 0 enables)" +msgstr "" + +#: src/engine/sysDef.cpp:610 +msgid "1Bxy: Reset cutoff (x: on new note; y: now)" +msgstr "" + +#: src/engine/sysDef.cpp:611 +msgid "1Cxy: Reset pulse width (x: on new note; y: now)" +msgstr "" + +#: src/engine/sysDef.cpp:612 +msgid "1Exy: Change other parameters (LEGACY)" +msgstr "" + +#: src/engine/sysDef.cpp:613 +msgid "20xy: Set attack/decay (x: attack; y: decay)" +msgstr "" + +#: src/engine/sysDef.cpp:614 +msgid "21xy: Set sustain/release (x: sustain; y: release)" +msgstr "" + +#: src/engine/sysDef.cpp:616 src/engine/sysDef.cpp:688 +msgid "3xxx: Set pulse width (0 to FFF)" +msgstr "" + +#: src/engine/sysDef.cpp:617 +msgid "4xxx: Set cutoff (0 to 7FF)" +msgstr "" + +#: src/engine/sysDef.cpp:622 src/engine/sysDef.cpp:745 +#: src/engine/sysDef.cpp:762 src/engine/sysDef.cpp:1000 +#: src/engine/sysDef.cpp:1050 src/engine/sysDef.cpp:1268 +#: src/engine/sysDef.cpp:1320 src/engine/sysDef.cpp:1590 +#: src/engine/sysDef.cpp:1788 src/engine/sysDef.cpp:1792 +#: src/engine/sysDef.cpp:1893 src/engine/sysDef.cpp:2063 +#: src/engine/sysDef.cpp:2077 +msgid "10xx: Set waveform" +msgstr "" + +#: src/engine/sysDef.cpp:626 +msgid "20xx: Set PCM frequency" +msgstr "" + +#: src/engine/sysDef.cpp:630 +msgid "" +"10xy: Set AM depth (x: operator from 1 to 4 (0 for all ops); y: depth (0: " +"1dB, 1: 4.8dB))" +msgstr "" + +#: src/engine/sysDef.cpp:636 +msgid "" +"17xy: Set vibrato depth (x: operator from 1 to 4 (0 for all ops); y: depth " +"(0: normal, 1: double))" +msgstr "" + +#: src/engine/sysDef.cpp:642 +msgid "20xy: Set panning of operator 1 (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:643 +msgid "21xy: Set panning of operator 2 (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:644 +msgid "22xy: Set panning of operator 3 (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:645 +msgid "23xy: Set panning of operator 4 (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:646 +msgid "" +"24xy: Set output level register (x: operator from 1 to 4 (0 for all ops); y: " +"level from 0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:647 +msgid "" +"25xy: Set modulation input level (x: operator from 1 to 4 (0 for all ops); " +"y: level from 0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:648 +msgid "" +"26xy: Set envelope delay (x: operator from 1 to 4 (0 for all ops); y: delay " +"from 0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:649 +msgid "27xx: Set noise mode for operator 4 (x: mode from 0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:651 +msgid "" +"2Fxy: Set fixed frequency block (x: operator from 1 to 4; y: octave from 0 " +"to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:652 +msgid "40xx: Set detune of operator 1 (80: center)" +msgstr "" + +#: src/engine/sysDef.cpp:653 +msgid "41xx: Set detune of operator 2 (80: center)" +msgstr "" + +#: src/engine/sysDef.cpp:654 +msgid "42xx: Set detune of operator 3 (80: center)" +msgstr "" + +#: src/engine/sysDef.cpp:655 +msgid "43xx: Set detune of operator 4 (80: center)" +msgstr "" + +#: src/engine/sysDef.cpp:670 +msgid "" +"3xyy: Set fixed frequency F-num of operator 1 (x: high 2 bits from 0 to 3; " +"y: low 8 bits of F-num)" +msgstr "" + +#: src/engine/sysDef.cpp:671 +msgid "" +"3xyy: Set fixed frequency F-num of operator 2 (x: high 2 bits from 4 to 7; " +"y: low 8 bits of F-num)" +msgstr "" + +#: src/engine/sysDef.cpp:672 +msgid "" +"3xyy: Set fixed frequency F-num of operator 3 (x: high 2 bits from 8 to B; " +"y: low 8 bits of F-num)" +msgstr "" + +#: src/engine/sysDef.cpp:673 +msgid "" +"3xyy: Set fixed frequency F-num of operator 4 (x: high 2 bits from C to F; " +"y: low 8 bits of F-num)" +msgstr "" + +#: src/engine/sysDef.cpp:681 +msgid "11xx: Set resonance (0 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:682 +msgid "" +"12xx: Set filter mode (bit 0: low pass; bit 1: band pass; bit 2: high pass)" +msgstr "" + +#: src/engine/sysDef.cpp:683 +msgid "13xx: Disable envelope reset for this channel (1 disables; 0 enables)" +msgstr "" + +#: src/engine/sysDef.cpp:684 +msgid "14xy: Reset cutoff (x: on new note; y: now)" +msgstr "" + +#: src/engine/sysDef.cpp:685 +msgid "15xy: Reset pulse width (x: on new note; y: now)" +msgstr "" + +#: src/engine/sysDef.cpp:686 +msgid "16xy: Change other parameters" +msgstr "" + +#: src/engine/sysDef.cpp:689 src/engine/sysDef.cpp:1733 +msgid "4xxx: Set cutoff (0 to FFF)" +msgstr "" + +#: src/engine/sysDef.cpp:697 +msgid "Yamaha YMU759 (MA-2)" +msgstr "" + +#: src/engine/sysDef.cpp:698 +msgid "" +"a chip which found its way inside mobile phones in the 2000's.\n" +"as proprietary as it is, it passed away after losing to MP3 in the mobile " +"hardware battle." +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:807 src/engine/sysDef.cpp:819 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:915 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1237 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1314 src/engine/sysDef.cpp:1356 +#: src/engine/sysDef.cpp:1396 src/engine/sysDef.cpp:1499 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1572 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1608 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1799 src/engine/sysDef.cpp:1810 +#: src/engine/sysDef.cpp:1821 src/engine/sysDef.cpp:1832 +#: src/engine/sysDef.cpp:1900 src/engine/sysDef.cpp:1910 +#: src/engine/sysDef.cpp:1920 src/engine/sysDef.cpp:1944 +#: src/engine/sysDef.cpp:1957 src/engine/sysDef.cpp:1970 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2037 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2122 +#: src/engine/sysDef.cpp:2138 src/engine/sysDef.cpp:2150 +msgid "Channel 1" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:807 src/engine/sysDef.cpp:819 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:915 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1237 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1314 src/engine/sysDef.cpp:1356 +#: src/engine/sysDef.cpp:1396 src/engine/sysDef.cpp:1499 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1572 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1608 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1799 src/engine/sysDef.cpp:1810 +#: src/engine/sysDef.cpp:1821 src/engine/sysDef.cpp:1832 +#: src/engine/sysDef.cpp:1900 src/engine/sysDef.cpp:1910 +#: src/engine/sysDef.cpp:1920 src/engine/sysDef.cpp:1944 +#: src/engine/sysDef.cpp:1957 src/engine/sysDef.cpp:1970 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2037 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2122 +#: src/engine/sysDef.cpp:2138 src/engine/sysDef.cpp:2150 +msgid "Channel 2" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:807 src/engine/sysDef.cpp:819 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1237 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1314 +#: src/engine/sysDef.cpp:1356 src/engine/sysDef.cpp:1396 +#: src/engine/sysDef.cpp:1499 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1572 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1799 src/engine/sysDef.cpp:1810 +#: src/engine/sysDef.cpp:1821 src/engine/sysDef.cpp:1832 +#: src/engine/sysDef.cpp:1910 src/engine/sysDef.cpp:1944 +#: src/engine/sysDef.cpp:1957 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2037 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +#: src/engine/sysDef.cpp:2122 src/engine/sysDef.cpp:2138 +#: src/engine/sysDef.cpp:2150 +msgid "Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1237 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1314 +#: src/engine/sysDef.cpp:1356 src/engine/sysDef.cpp:1396 +#: src/engine/sysDef.cpp:1499 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1572 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1910 +#: src/engine/sysDef.cpp:1944 src/engine/sysDef.cpp:1957 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +#: src/engine/sysDef.cpp:2122 src/engine/sysDef.cpp:2150 +msgid "Channel 4" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1314 +#: src/engine/sysDef.cpp:1356 src/engine/sysDef.cpp:1396 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1572 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1705 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 5" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1356 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 6" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 7" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 8" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 9" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 10" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 11" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 12" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 13" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 14" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 15" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 16" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:700 +#: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1767 src/engine/sysDef.cpp:1888 +#: src/engine/sysDef.cpp:1944 src/engine/sysDef.cpp:1945 +#: src/gui/settings.cpp:4094 +msgid "PCM" +msgstr "" + +#: src/engine/sysDef.cpp:706 +msgid "Sega Genesis/Mega Drive" +msgstr "" + +#: src/engine/sysDef.cpp:712 +msgid "Sega Genesis Extended Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:718 src/gui/sysConf.cpp:158 +msgid "TI SN76489" +msgstr "" + +#: src/engine/sysDef.cpp:719 +msgid "" +"a square/noise sound chip found on the Sega Master System, ColecoVision, " +"Tandy, TI's own 99/4A and a few other places." +msgstr "" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 +msgid "Square 1" +msgstr "" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 +msgid "Square 2" +msgstr "" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 +msgid "Square 3" +msgstr "" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:739 +#: src/engine/sysDef.cpp:773 src/engine/sysDef.cpp:955 +#: src/engine/sysDef.cpp:1314 src/engine/sysDef.cpp:1874 +#: src/engine/sysDef.cpp:1920 src/engine/sysDef.cpp:2037 +#: src/engine/sysDef.cpp:2100 src/gui/settings.cpp:4093 +#: src/gui/insEdit.cpp:6978 src/gui/insEdit.cpp:7129 src/gui/insEdit.cpp:7223 +#: src/gui/insEdit.cpp:7315 +msgid "Noise" +msgstr "" + +#: src/engine/sysDef.cpp:726 +msgid "20xy: Set noise mode (x: preset freq/ch3 freq; y: thin pulse/noise)" +msgstr "" + +#: src/engine/sysDef.cpp:731 +msgid "Sega Master System + FM Expansion" +msgstr "" + +#: src/engine/sysDef.cpp:737 src/gui/settings.cpp:4025 +msgid "Game Boy" +msgstr "" + +#: src/engine/sysDef.cpp:738 +msgid "the most popular portable game console of the era." +msgstr "" + +#: src/engine/sysDef.cpp:739 src/engine/sysDef.cpp:773 +#: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:2100 +msgid "Pulse 1" +msgstr "" + +#: src/engine/sysDef.cpp:739 src/engine/sysDef.cpp:773 +#: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:2100 +msgid "Pulse 2" +msgstr "" + +#: src/engine/sysDef.cpp:739 src/gui/settings.cpp:3930 +#: src/gui/guiConst.cpp:1395 src/gui/insEdit.cpp:6652 +msgid "Wavetable" +msgstr "" + +#: src/engine/sysDef.cpp:746 +msgid "11xx: Set noise length (0: long; 1: short)" +msgstr "" + +#: src/engine/sysDef.cpp:747 +msgid "12xx: Set duty cycle (0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:748 +msgid "13xy: Setup sweep (x: time; y: shift)" +msgstr "" + +#: src/engine/sysDef.cpp:749 +msgid "14xx: Set sweep direction (0: up; 1: down)" +msgstr "" + +#: src/engine/sysDef.cpp:754 +msgid "PC Engine/TurboGrafx-16" +msgstr "" + +#: src/engine/sysDef.cpp:755 +msgid "an '80s game console with a wavetable sound chip, popular in Japan." +msgstr "" + +#: src/engine/sysDef.cpp:763 src/engine/sysDef.cpp:1001 +#: src/engine/sysDef.cpp:1793 +msgid "11xx: Toggle noise mode" +msgstr "" + +#: src/engine/sysDef.cpp:764 +msgid "12xx: Setup LFO (0: disabled; 1: 1x depth; 2: 16x depth; 3: 256x depth)" +msgstr "" + +#: src/engine/sysDef.cpp:765 +msgid "13xx: Set LFO speed" +msgstr "" + +#: src/engine/sysDef.cpp:771 +msgid "NES (Ricoh 2A03)" +msgstr "" + +#: src/engine/sysDef.cpp:772 +msgid "" +"also known as Famicom in Japan, it's the most well-known game console of the " +"'80s." +msgstr "" + +#: src/engine/sysDef.cpp:773 src/gui/waveEdit.cpp:31 src/gui/waveEdit.cpp:217 +#: src/gui/insEdit.cpp:200 src/gui/insEdit.cpp:324 src/gui/insEdit.cpp:658 +msgid "Triangle" +msgstr "" + +#: src/engine/sysDef.cpp:773 src/engine/sysDef.cpp:2100 +#: src/gui/insEdit.cpp:2629 +msgid "DPCM" +msgstr "" + +#: src/engine/sysDef.cpp:779 src/engine/sysDef.cpp:2106 +msgid "11xx: Write to delta modulation counter (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:780 src/engine/sysDef.cpp:1068 +msgid "12xx: Set duty cycle/noise mode (pulse: 0 to 3; noise: 0 or 1)" +msgstr "" + +#: src/engine/sysDef.cpp:781 src/engine/sysDef.cpp:2108 +msgid "13xy: Sweep up (x: time; y: shift)" +msgstr "" + +#: src/engine/sysDef.cpp:782 src/engine/sysDef.cpp:2109 +msgid "14xy: Sweep down (x: time; y: shift)" +msgstr "" + +#: src/engine/sysDef.cpp:783 src/engine/sysDef.cpp:2110 +msgid "" +"15xx: Set envelope mode (0: envelope, 1: length, 2: looping, 3: constant)" +msgstr "" + +#: src/engine/sysDef.cpp:784 src/engine/sysDef.cpp:2111 +msgid "16xx: Set length counter (refer to manual for a list of values)" +msgstr "" + +#: src/engine/sysDef.cpp:785 src/engine/sysDef.cpp:2112 +msgid "17xx: Set frame counter mode (0: 4-step, 1: 5-step)" +msgstr "" + +#: src/engine/sysDef.cpp:786 src/engine/sysDef.cpp:2113 +msgid "18xx: Select PCM/DPCM mode (0: PCM; 1: DPCM)" +msgstr "" + +#: src/engine/sysDef.cpp:787 src/engine/sysDef.cpp:2114 +msgid "19xx: Set triangle linear counter (0 to 7F; 80 and higher halt)" +msgstr "" + +#: src/engine/sysDef.cpp:788 src/engine/sysDef.cpp:2115 +msgid "20xx: Set DPCM frequency (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:793 +msgid "NES + Konami VRC7" +msgstr "" + +#: src/engine/sysDef.cpp:799 +msgid "Famicom Disk System" +msgstr "" + +#: src/engine/sysDef.cpp:805 +msgid "Commodore 64 (SID 6581)" +msgstr "" + +#: src/engine/sysDef.cpp:806 +msgid "" +"this computer is powered by the SID chip, which had synthesizer features " +"like a filter and ADSR." +msgstr "" + +#: src/engine/sysDef.cpp:817 +msgid "Commodore 64 (SID 8580)" +msgstr "" + +#: src/engine/sysDef.cpp:818 +msgid "" +"this computer is powered by the SID chip, which had synthesizer features " +"like a filter and ADSR.\n" +"this is the newer revision of the chip." +msgstr "" + +#: src/engine/sysDef.cpp:829 +msgid "DefleCade" +msgstr "" + +#: src/engine/sysDef.cpp:835 +msgid "Neo Geo CD" +msgstr "" + +#: src/engine/sysDef.cpp:836 +msgid "" +"like Neo Geo, but lacking the ADPCM-B channel since they couldn't connect " +"the pins." +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1173 +#: src/engine/sysDef.cpp:1185 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1443 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +#: src/engine/sysDef.cpp:2006 +msgid "FM 1" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:891 +#: src/engine/sysDef.cpp:903 src/engine/sysDef.cpp:1032 +#: src/engine/sysDef.cpp:1097 src/engine/sysDef.cpp:1109 +#: src/engine/sysDef.cpp:1122 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1546 +#: src/engine/sysDef.cpp:1559 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:1693 src/engine/sysDef.cpp:1849 +#: src/engine/sysDef.cpp:1861 src/engine/sysDef.cpp:2006 +msgid "FM 2" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1173 +#: src/engine/sysDef.cpp:1185 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1443 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:2006 +msgid "FM 3" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1546 +#: src/engine/sysDef.cpp:1559 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:1693 src/engine/sysDef.cpp:1849 +#: src/engine/sysDef.cpp:1861 src/engine/sysDef.cpp:2006 +msgid "FM 4" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:862 src/engine/sysDef.cpp:927 +#: src/engine/sysDef.cpp:943 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "PSG 1" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:862 src/engine/sysDef.cpp:927 +#: src/engine/sysDef.cpp:943 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "PSG 2" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:862 src/engine/sysDef.cpp:927 +#: src/engine/sysDef.cpp:943 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "PSG 3" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 1" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 2" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 3" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 4" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 5" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 6" +msgstr "" + +#: src/engine/sysDef.cpp:847 +msgid "Neo Geo CD Extended Channel 2" +msgstr "" + +#: src/engine/sysDef.cpp:848 +msgid "" +"like Neo Geo, but lacking the ADPCM-B channel since they couldn't connect " +"the pins.\n" +"this one is in Extended Channel mode, which turns the second FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP1" +msgstr "" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP2" +msgstr "" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP3" +msgstr "" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP4" +msgstr "" + +#: src/engine/sysDef.cpp:860 src/gui/sysConf.cpp:913 +msgid "AY-3-8910" +msgstr "" + +#: src/engine/sysDef.cpp:861 +msgid "" +"this chip is everywhere! ZX Spectrum, MSX, Amstrad CPC, Intellivision, " +"Vectrex...\n" +"the discovery of envelope bass helped it beat the SN76489 with ease." +msgstr "" + +#: src/engine/sysDef.cpp:872 +msgid "Amiga" +msgstr "" + +#: src/engine/sysDef.cpp:873 +msgid "" +"a computer from the '80s with full sampling capabilities, giving it a sound " +"ahead of its time." +msgstr "" + +#: src/engine/sysDef.cpp:881 +msgid "10xx: Toggle filter (0 disables; 1 enables)" +msgstr "" + +#: src/engine/sysDef.cpp:882 +msgid "11xx: Toggle AM with next channel" +msgstr "" + +#: src/engine/sysDef.cpp:883 +msgid "12xx: Toggle period modulation with next channel" +msgstr "" + +#: src/engine/sysDef.cpp:884 +msgid "13xx: Set waveform" +msgstr "" + +#: src/engine/sysDef.cpp:889 +msgid "Yamaha YM2151 (OPM)" +msgstr "" + +#: src/engine/sysDef.cpp:890 +msgid "" +"this was Yamaha's first integrated FM chip.\n" +"it was used in several synthesizers, computers and arcade boards." +msgstr "" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1279 src/engine/sysDef.cpp:1332 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1370 +#: src/engine/sysDef.cpp:1383 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +#: src/engine/sysDef.cpp:2006 +msgid "FM 5" +msgstr "" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:2006 +msgid "FM 6" +msgstr "" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:1032 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1279 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:2006 +msgid "FM 7" +msgstr "" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:1032 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:2006 +msgid "FM 8" +msgstr "" + +#: src/engine/sysDef.cpp:901 +msgid "Yamaha YM2612 (OPN2)" +msgstr "" + +#: src/engine/sysDef.cpp:902 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer)." +msgstr "" + +#: src/engine/sysDef.cpp:913 +msgid "Atari TIA" +msgstr "" + +#: src/engine/sysDef.cpp:914 +msgid "" +"it's a challenge to make music on this chip which barely has musical " +"capabilities..." +msgstr "" + +#: src/engine/sysDef.cpp:925 +msgid "Philips SAA1099" +msgstr "" + +#: src/engine/sysDef.cpp:926 +msgid "" +"supposedly an upgrade from the AY-3-8910, this was present on the Creative " +"Music System (Game Blaster) and SAM Coupé." +msgstr "" + +#: src/engine/sysDef.cpp:927 +msgid "PSG 4" +msgstr "" + +#: src/engine/sysDef.cpp:927 +msgid "PSG 5" +msgstr "" + +#: src/engine/sysDef.cpp:927 +msgid "PSG 6" +msgstr "" + +#: src/engine/sysDef.cpp:934 +msgid "10xy: Set channel mode (x: noise; y: tone)" +msgstr "" + +#: src/engine/sysDef.cpp:935 +msgid "11xx: Set noise frequency" +msgstr "" + +#: src/engine/sysDef.cpp:936 +msgid "12xx: Setup envelope (refer to docs for more information)" +msgstr "" + +#: src/engine/sysDef.cpp:941 +msgid "Microchip AY8930" +msgstr "" + +#: src/engine/sysDef.cpp:942 +msgid "" +"an improved version of the AY-3-8910 with a bigger frequency range, duty " +"cycles, configurable noise and per-channel envelopes!" +msgstr "" + +#: src/engine/sysDef.cpp:953 +msgid "Commodore VIC-20" +msgstr "" + +#: src/engine/sysDef.cpp:954 +msgid "" +"Commodore's successor to the PET.\n" +"its square wave channels are more than just square..." +msgstr "" + +#: src/engine/sysDef.cpp:955 src/gui/settings.cpp:136 src/gui/settings.cpp:206 +#: src/gui/settings.cpp:3970 +msgid "Low" +msgstr "" + +#: src/engine/sysDef.cpp:955 +msgid "Mid" +msgstr "" + +#: src/engine/sysDef.cpp:955 src/gui/settings.cpp:135 src/gui/settings.cpp:208 +#: src/gui/settings.cpp:3971 +msgid "High" +msgstr "" + +#: src/engine/sysDef.cpp:964 +msgid "Commodore PET" +msgstr "" + +#: src/engine/sysDef.cpp:965 +msgid "" +"one channel of 1-bit wavetable which is better (and worse) than the PC " +"Speaker." +msgstr "" + +#: src/engine/sysDef.cpp:966 src/engine/sysDef.cpp:1262 +#: src/engine/sysDef.cpp:2100 src/gui/editControls.cpp:433 +#: src/gui/settings.cpp:4017 src/gui/settings.cpp:4095 +msgid "Wave" +msgstr "" + +#: src/engine/sysDef.cpp:975 src/gui/settings.cpp:4052 +msgid "SNES" +msgstr "" + +#: src/engine/sysDef.cpp:976 +msgid "FM? nah... samples! Nintendo's answer to Sega." +msgstr "" + +#: src/engine/sysDef.cpp:983 +msgid "18xx: Enable echo buffer" +msgstr "" + +#: src/engine/sysDef.cpp:984 +msgid "19xx: Set echo delay (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:985 +msgid "1Axx: Set left echo volume" +msgstr "" + +#: src/engine/sysDef.cpp:986 +msgid "1Bxx: Set right echo volume" +msgstr "" + +#: src/engine/sysDef.cpp:987 +msgid "1Cxx: Set echo feedback" +msgstr "" + +#: src/engine/sysDef.cpp:988 +msgid "1Exx: Set dry output volume (left)" +msgstr "" + +#: src/engine/sysDef.cpp:989 +msgid "1Fxx: Set dry output volume (right)" +msgstr "" + +#: src/engine/sysDef.cpp:990 +msgid "30xx: Set echo filter coefficient 0" +msgstr "" + +#: src/engine/sysDef.cpp:991 +msgid "31xx: Set echo filter coefficient 1" +msgstr "" + +#: src/engine/sysDef.cpp:992 +msgid "32xx: Set echo filter coefficient 2" +msgstr "" + +#: src/engine/sysDef.cpp:993 +msgid "33xx: Set echo filter coefficient 3" +msgstr "" + +#: src/engine/sysDef.cpp:994 +msgid "34xx: Set echo filter coefficient 4" +msgstr "" + +#: src/engine/sysDef.cpp:995 +msgid "35xx: Set echo filter coefficient 5" +msgstr "" + +#: src/engine/sysDef.cpp:996 +msgid "36xx: Set echo filter coefficient 6" +msgstr "" + +#: src/engine/sysDef.cpp:997 +msgid "37xx: Set echo filter coefficient 7" +msgstr "" + +#: src/engine/sysDef.cpp:1002 +msgid "12xx: Toggle echo on this channel" +msgstr "" + +#: src/engine/sysDef.cpp:1003 +msgid "13xx: Toggle pitch modulation" +msgstr "" + +#: src/engine/sysDef.cpp:1004 +msgid "14xy: Toggle invert (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:1005 +msgid "" +"15xx: Set envelope mode (0: ADSR, 1: gain/direct, 2: dec, 3: exp, 4: inc, 5: " +"bent)" +msgstr "" + +#: src/engine/sysDef.cpp:1006 +msgid "16xx: Set gain (00 to 7F if direct; 00 to 1F otherwise)" +msgstr "" + +#: src/engine/sysDef.cpp:1007 +msgid "1Dxx: Set noise frequency (00 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:1008 +msgid "20xx: Set attack (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:1009 +msgid "21xx: Set decay (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1010 +msgid "22xx: Set sustain (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1011 +msgid "23xx: Set release (00 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:1016 +msgid "Konami VRC6" +msgstr "" + +#: src/engine/sysDef.cpp:1017 +msgid "an expansion chip for the Famicom, featuring a quirky sawtooth channel." +msgstr "" + +#: src/engine/sysDef.cpp:1018 +msgid "VRC6 1" +msgstr "" + +#: src/engine/sysDef.cpp:1018 +msgid "VRC6 2" +msgstr "" + +#: src/engine/sysDef.cpp:1018 +msgid "VRC6 Saw" +msgstr "" + +#: src/engine/sysDef.cpp:1024 src/engine/sysDef.cpp:2092 +msgid "12xx: Set duty cycle (pulse: 0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1030 +msgid "Yamaha YM2413 (OPLL)" +msgstr "" + +#: src/engine/sysDef.cpp:1031 +msgid "" +"cost-reduced version of the OPL with 16 patches and only one of them is user-" +"configurable." +msgstr "" + +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1173 +#: src/engine/sysDef.cpp:1185 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:2006 +msgid "FM 9" +msgstr "" + +#: src/engine/sysDef.cpp:1042 +msgid "Famicom Disk System (chip)" +msgstr "" + +#: src/engine/sysDef.cpp:1043 +msgid "a disk drive for the Famicom which also contains one wavetable channel." +msgstr "" + +#: src/engine/sysDef.cpp:1044 src/gui/settings.cpp:4039 +msgid "FDS" +msgstr "" + +#: src/engine/sysDef.cpp:1051 +msgid "11xx: Set modulation depth" +msgstr "" + +#: src/engine/sysDef.cpp:1052 +msgid "12xy: Set modulation speed high byte (x: enable; y: value)" +msgstr "" + +#: src/engine/sysDef.cpp:1053 +msgid "13xx: Set modulation speed low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1054 +msgid "14xx: Set modulator position" +msgstr "" + +#: src/engine/sysDef.cpp:1055 +msgid "15xx: Set modulator table to waveform" +msgstr "" + +#: src/engine/sysDef.cpp:1060 +msgid "MMC5" +msgstr "" + +#: src/engine/sysDef.cpp:1061 +msgid "" +"an expansion chip for the Famicom, featuring a little-known PCM channel." +msgstr "" + +#: src/engine/sysDef.cpp:1073 src/gui/settings.cpp:4041 +msgid "Namco 163" +msgstr "" + +#: src/engine/sysDef.cpp:1074 +msgid "an expansion chip for the Famicom, with full wavetable." +msgstr "" + +#: src/engine/sysDef.cpp:1081 +msgid "18xx: Change channel limits (0 to 7, x + 1)" +msgstr "" + +#: src/engine/sysDef.cpp:1082 +msgid "20xx: Load a waveform into memory" +msgstr "" + +#: src/engine/sysDef.cpp:1083 +msgid "21xx: Set position for wave load" +msgstr "" + +#: src/engine/sysDef.cpp:1086 +msgid "10xx: Select waveform" +msgstr "" + +#: src/engine/sysDef.cpp:1087 +msgid "11xx: Set waveform position in RAM" +msgstr "" + +#: src/engine/sysDef.cpp:1088 +msgid "12xx: Set waveform length in RAM (04 to FC in steps of 4)" +msgstr "" + +#: src/engine/sysDef.cpp:1089 +msgid "15xx: Set waveform load position" +msgstr "" + +#: src/engine/sysDef.cpp:1090 +msgid "16xx: Set waveform load length (04 to FC in steps of 4)" +msgstr "" + +#: src/engine/sysDef.cpp:1095 +msgid "Yamaha YM2203 (OPN)" +msgstr "" + +#: src/engine/sysDef.cpp:1096 +msgid "" +"cost-reduced version of the OPM with a different register layout and no " +"stereo...\n" +"...but it has a built-in AY-3-8910! (actually an YM2149)" +msgstr "" + +#: src/engine/sysDef.cpp:1107 +msgid "Yamaha YM2203 (OPN) Extended Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:1108 +msgid "" +"cost-reduced version of the OPM with a different register layout and no " +"stereo...\n" +"...but it has a built-in AY-3-8910! (actually an YM2149)\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies" +msgstr "" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP1" +msgstr "" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP2" +msgstr "" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP3" +msgstr "" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP4" +msgstr "" + +#: src/engine/sysDef.cpp:1120 +msgid "Yamaha YM2203 (OPN) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1121 +msgid "" +"cost-reduced version of the OPM with a different register layout and no " +"stereo...\n" +"...but it has a built-in AY-3-8910! (actually an YM2149)\n" +"CSM blah blah" +msgstr "" + +#: src/engine/sysDef.cpp:1122 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1383 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1559 src/engine/sysDef.cpp:1861 +msgid "CSM Timer" +msgstr "" + +#: src/engine/sysDef.cpp:1133 +msgid "Yamaha YM2608 (OPNA)" +msgstr "" + +#: src/engine/sysDef.cpp:1134 +msgid "" +"OPN but twice the FM channels, stereo makes a come-back and has rhythm and " +"ADPCM channels." +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1481 +#: src/gui/insEdit.cpp:3302 src/gui/insEdit.cpp:3624 +msgid "Kick" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:210 src/gui/insEdit.cpp:218 +msgid "Snare" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:212 src/gui/insEdit.cpp:220 +#: src/gui/insEdit.cpp:1909 src/gui/insEdit.cpp:2014 +msgid "Top" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:213 src/gui/insEdit.cpp:219 +msgid "HiHat" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:211 +msgid "Tom" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 +msgid "Rim" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:1693 +msgid "ADPCM" +msgstr "" + +#: src/engine/sysDef.cpp:1145 +msgid "Yamaha YM2608 (OPNA) Extended Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:1146 +msgid "" +"OPN but twice the FM channels, stereo makes a come-back and has rhythm and " +"ADPCM channels.\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies" +msgstr "" + +#: src/engine/sysDef.cpp:1158 +msgid "Yamaha YM2608 (OPNA) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1159 +msgid "" +"OPN but twice the FM channels, stereo makes a come-back and has rhythm and " +"ADPCM channels.\n" +"CSM blah blah" +msgstr "" + +#: src/engine/sysDef.cpp:1171 +msgid "Yamaha YM3526 (OPL)" +msgstr "" + +#: src/engine/sysDef.cpp:1172 +msgid "" +"OPN, but what if you only had two operators, no stereo, no detune and a " +"lower ADSR parameter range?" +msgstr "" + +#: src/engine/sysDef.cpp:1183 +msgid "Yamaha YM3812 (OPL2)" +msgstr "" + +#: src/engine/sysDef.cpp:1184 +msgid "OPL, but what if you had more waveforms to choose than the normal sine?" +msgstr "" + +#: src/engine/sysDef.cpp:1195 +msgid "Yamaha YMF262 (OPL3)" +msgstr "" + +#: src/engine/sysDef.cpp:1196 +msgid "" +"OPL2, but what if you had twice the channels, 4-op mode, stereo and even " +"more waveforms?" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 1" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 3" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 5" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 7" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 9" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 10" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 11" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 12" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 13" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 14" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 15" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:2006 +msgid "FM 16" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:2006 +msgid "FM 17" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:2006 +msgid "FM 18" +msgstr "" + +#: src/engine/sysDef.cpp:1208 src/gui/settings.cpp:4051 +msgid "MultiPCM" +msgstr "" + +#: src/engine/sysDef.cpp:1209 +msgid "" +"how many channels of PCM do you want?\n" +"MultiPCM: yes" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 17" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 18" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 19" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 20" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 21" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 22" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 23" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 24" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 25" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 26" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 27" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 28" +msgstr "" + +#: src/engine/sysDef.cpp:1217 +msgid "PC Speaker" +msgstr "" + +#: src/engine/sysDef.cpp:1218 +msgid "good luck! you get one square and no volume control." +msgstr "" + +#: src/engine/sysDef.cpp:1219 src/engine/sysDef.cpp:1228 +#: src/gui/guiConst.cpp:1394 src/gui/waveEdit.cpp:199 src/gui/insEdit.cpp:183 +#: src/gui/insEdit.cpp:194 src/gui/insEdit.cpp:326 src/gui/insEdit.cpp:656 +msgid "Square" +msgstr "" + +#: src/engine/sysDef.cpp:1226 +msgid "Pong" +msgstr "" + +#: src/engine/sysDef.cpp:1227 +msgid "please don't use this chip. it was added as a joke." +msgstr "" + +#: src/engine/sysDef.cpp:1235 src/gui/settings.cpp:4044 +msgid "POKEY" +msgstr "" + +#: src/engine/sysDef.cpp:1236 +msgid "" +"TIA, but better and more flexible.\n" +"used in the Atari 8-bit family of computers (400/800/XL/XE)." +msgstr "" + +#: src/engine/sysDef.cpp:1243 src/engine/sysDef.cpp:1714 +msgid "10xx: Set waveform (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1244 +msgid "11xx: Set AUDCTL" +msgstr "" + +#: src/engine/sysDef.cpp:1245 +msgid "12xx: Toggle two-tone mode" +msgstr "" + +#: src/engine/sysDef.cpp:1250 +msgid "Ricoh RF5C68" +msgstr "" + +#: src/engine/sysDef.cpp:1251 +msgid "" +"this is like SNES' sound chip but without interpolation and the rest of nice " +"bits." +msgstr "" + +#: src/engine/sysDef.cpp:1260 src/gui/settings.cpp:4046 +msgid "WonderSwan" +msgstr "" + +#: src/engine/sysDef.cpp:1261 +msgid "developed by the makers of the Game Boy and the Virtual Boy..." +msgstr "" + +#: src/engine/sysDef.cpp:1262 +msgid "Wave/PCM" +msgstr "" + +#: src/engine/sysDef.cpp:1262 +msgid "Wave/Sweep" +msgstr "" + +#: src/engine/sysDef.cpp:1262 +msgid "Wave/Noise" +msgstr "" + +#: src/engine/sysDef.cpp:1269 +msgid "11xx: Setup noise mode (0: disabled; 1-8: enabled/tap)" +msgstr "" + +#: src/engine/sysDef.cpp:1270 +msgid "12xx: Setup sweep period (0: disabled; 1-20: enabled/period)" +msgstr "" + +#: src/engine/sysDef.cpp:1271 +msgid "13xx: Set sweep amount" +msgstr "" + +#: src/engine/sysDef.cpp:1277 +msgid "Yamaha YM2414 (OPZ)" +msgstr "" + +#: src/engine/sysDef.cpp:1278 +msgid "" +"like OPM, but with more waveforms, fixed frequency mode and totally... " +"undocumented.\n" +"used in the Yamaha TX81Z and some other synthesizers." +msgstr "" + +#: src/engine/sysDef.cpp:1285 +msgid "2Fxx: Toggle hard envelope reset on new notes" +msgstr "" + +#: src/engine/sysDef.cpp:1291 src/gui/settings.cpp:4069 +msgid "Pokémon Mini" +msgstr "" + +#: src/engine/sysDef.cpp:1292 +msgid "this one is like PC Speaker but has duty cycles." +msgstr "" + +#: src/engine/sysDef.cpp:1293 src/gui/settings.cpp:4092 src/gui/waveEdit.cpp:33 +msgid "Pulse" +msgstr "" + +#: src/engine/sysDef.cpp:1300 +msgid "SegaPCM" +msgstr "" + +#: src/engine/sysDef.cpp:1301 +msgid "" +"used in some Sega arcade boards (like OutRun), and usually paired with a " +"YM2151." +msgstr "" + +#: src/engine/sysDef.cpp:1312 src/gui/settings.cpp:4040 +msgid "Virtual Boy" +msgstr "" + +#: src/engine/sysDef.cpp:1313 +msgid "" +"a console which failed to sell well due to its headache-inducing features." +msgstr "" + +#: src/engine/sysDef.cpp:1321 +msgid "11xx: Set noise length (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1322 +msgid "" +"12xy: Setup envelope (x: enabled/loop (1: enable, 3: enable+loop); y: speed/" +"direction (0-7: down, 8-F: up))" +msgstr "" + +#: src/engine/sysDef.cpp:1323 +msgid "13xy: Setup sweep (x: speed; y: shift; channel 5 only)" +msgstr "" + +#: src/engine/sysDef.cpp:1324 +msgid "" +"14xy: Setup modulation (x: enabled/loop (1: enable, 3: enable+loop); y: " +"speed; channel 5 only)" +msgstr "" + +#: src/engine/sysDef.cpp:1325 +msgid "15xx: Set modulation waveform (x: wavetable; channel 5 only)" +msgstr "" + +#: src/engine/sysDef.cpp:1330 +msgid "Konami VRC7" +msgstr "" + +#: src/engine/sysDef.cpp:1331 +msgid "" +"like OPLL, but even more cost reductions applied. three FM channels went " +"missing, and drums mode did as well..." +msgstr "" + +#: src/engine/sysDef.cpp:1342 +msgid "Yamaha YM2610B (OPNB2)" +msgstr "" + +#: src/engine/sysDef.cpp:1343 +msgid "" +"so Taito asked Yamaha if they could get the two missing FM channels back, " +"and Yamaha gladly provided them with this chip." +msgstr "" + +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/gui/settings.cpp:4061 +msgid "ADPCM-B" +msgstr "" + +#: src/engine/sysDef.cpp:1354 +msgid "ZX Spectrum Beeper" +msgstr "" + +#: src/engine/sysDef.cpp:1355 +msgid "" +"the ZX Spectrum only had a basic beeper capable of...\n" +"...a bunch of thin pulses and tons of other interesting stuff!\n" +"Furnace provides a thin pulse system." +msgstr "" + +#: src/engine/sysDef.cpp:1362 src/engine/sysDef.cpp:1950 +msgid "12xx: Set pulse width" +msgstr "" + +#: src/engine/sysDef.cpp:1363 +msgid "17xx: Trigger overlay drum" +msgstr "" + +#: src/engine/sysDef.cpp:1368 +msgid "Yamaha YM2612 (OPN2) Extended Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:1369 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:1381 +msgid "Yamaha YM2612 (OPN2) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1382 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this one includes CSM mode control for special effects on Channel 3." +msgstr "" + +#: src/engine/sysDef.cpp:1394 src/gui/settings.cpp:4042 +msgid "Konami SCC" +msgstr "" + +#: src/engine/sysDef.cpp:1395 +msgid "" +"a wavetable chip made by Konami for use with the MSX.\n" +"the last channel shares its wavetable with the previous one though." +msgstr "" + +#: src/engine/sysDef.cpp:1405 +msgid "Yamaha YM3526 (OPL) with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1406 +msgid "the OPL chip but with drums mode enabled." +msgstr "" + +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1693 +msgid "Kick/FM 7" +msgstr "" + +#: src/engine/sysDef.cpp:1417 +msgid "Yamaha YM3812 (OPL2) with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1418 +msgid "the OPL2 chip but with drums mode enabled." +msgstr "" + +#: src/engine/sysDef.cpp:1429 +msgid "Yamaha YMF262 (OPL3) with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1430 +msgid "the OPL3 chip but with drums mode enabled." +msgstr "" + +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1631 +msgid "Kick/FM 16" +msgstr "" + +#: src/engine/sysDef.cpp:1441 +msgid "Yamaha YM2610 (OPNB)" +msgstr "" + +#: src/engine/sysDef.cpp:1442 +msgid "" +"this chip was used in SNK's Neo Geo arcade board and video game console.\n" +"it's like OPNA but the rhythm channels are ADPCM channels and two FM " +"channels went missing." +msgstr "" + +#: src/engine/sysDef.cpp:1453 +msgid "Yamaha YM2610 (OPNB) Extended Channel 2" +msgstr "" + +#: src/engine/sysDef.cpp:1454 +msgid "" +"this chip was used in SNK's Neo Geo arcade board and video game console.\n" +"it's like OPNA but the rhythm channels are ADPCM channels and two FM " +"channels went missing.\n" +"this one is in Extended Channel mode, which turns the second FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:1466 +msgid "Yamaha YM2610 (OPNB) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1467 +msgid "" +"this chip was used in SNK's Neo Geo arcade board and video game console.\n" +"it's like OPNA but the rhythm channels are ADPCM channels and two FM " +"channels went missing.\n" +"this one includes CSM mode control for special effects on Channel 2." +msgstr "" + +#: src/engine/sysDef.cpp:1479 +msgid "Yamaha YM2413 (OPLL) with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1480 +msgid "the OPLL chips but with drums mode turned on." +msgstr "" + +#: src/engine/sysDef.cpp:1491 +msgid "3xxx: Load LFSR (0 to FFF)" +msgstr "" + +#: src/engine/sysDef.cpp:1497 +msgid "Atari Lynx" +msgstr "" + +#: src/engine/sysDef.cpp:1498 +msgid "" +"a portable console made by Atari. it has all of Atari's trademark waveforms." +msgstr "" + +#: src/engine/sysDef.cpp:1509 +msgid "10xx: Set echo feedback level (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1510 +msgid "11xx: Set channel echo level (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1511 +msgid "12xx: Toggle QSound algorithm (0: disabled; 1: enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:1513 +msgid "3xxx: Set echo delay buffer length (000 to AA5)" +msgstr "" + +#: src/engine/sysDef.cpp:1519 +msgid "Capcom QSound" +msgstr "" + +#: src/engine/sysDef.cpp:1520 +msgid "" +"used in some of Capcom's arcade boards. surround-like sampled sound with " +"echo." +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +#: src/engine/sysDef.cpp:2056 +msgid "PCM 1" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +#: src/engine/sysDef.cpp:2056 +msgid "PCM 2" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 3" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 4" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 5" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 6" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 7" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 8" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 9" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 10" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 11" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 12" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 13" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 14" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 15" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 16" +msgstr "" + +#: src/engine/sysDef.cpp:1521 +msgid "ADPCM 1" +msgstr "" + +#: src/engine/sysDef.cpp:1521 +msgid "ADPCM 2" +msgstr "" + +#: src/engine/sysDef.cpp:1521 +msgid "ADPCM 3" +msgstr "" + +#: src/engine/sysDef.cpp:1530 src/gui/settings.cpp:4048 +msgid "VERA" +msgstr "" + +#: src/engine/sysDef.cpp:1531 +msgid "the chip used in a computer design created by The 8-Bit Guy." +msgstr "" + +#: src/engine/sysDef.cpp:1538 +msgid "20xx: Set waveform" +msgstr "" + +#: src/engine/sysDef.cpp:1539 +msgid "22xx: Set duty cycle (0 to 3F)" +msgstr "" + +#: src/engine/sysDef.cpp:1544 +msgid "Yamaha YM2610B (OPNB2) Extended Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:1545 +msgid "" +"so Taito asked Yamaha if they could get the two missing FM channels back, " +"and Yamaha gladly provided them with this chip.\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:1557 +msgid "Yamaha YM2610B (OPNB2) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1558 +msgid "" +"so Taito asked Yamaha if they could get the two missing FM channels back, " +"and Yamaha gladly provided them with this chip.\n" +"CSM blah blah" +msgstr "" + +#: src/engine/sysDef.cpp:1570 +msgid "SegaPCM (compatible 5-channel mode)" +msgstr "" + +#: src/engine/sysDef.cpp:1571 +msgid "" +"this is the same thing as SegaPCM, but only exposes 5 of the channels for " +"compatibility with DefleMask." +msgstr "" + +#: src/engine/sysDef.cpp:1582 +msgid "Seta/Allumer X1-010" +msgstr "" + +#: src/engine/sysDef.cpp:1583 +msgid "" +"a sound chip used in several Seta/Allumer-manufactured arcade boards with " +"too many channels of wavetable sound, which also are capable of sampled " +"sound." +msgstr "" + +#: src/engine/sysDef.cpp:1591 +msgid "11xx: Set envelope shape" +msgstr "" + +#: src/engine/sysDef.cpp:1592 +msgid "12xx: Set sample bank slot (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1596 +msgid "20xx: Set PCM frequency (1 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1597 +msgid "" +"22xx: Set envelope mode (bit 0: enable; bit 1: one-shot; bit 2: split shape " +"to L/R; bit 3/5: H.invert right/left; bit 4/6: V.invert right/left)" +msgstr "" + +#: src/engine/sysDef.cpp:1598 +msgid "23xx: Set envelope period" +msgstr "" + +#: src/engine/sysDef.cpp:1606 +msgid "Konami Bubble System WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1607 +msgid "" +"this is the wavetable part of the Bubble System, which also had two " +"AY-3-8910s." +msgstr "" + +#: src/engine/sysDef.cpp:1619 +msgid "Yamaha YMF278B (OPL4)" +msgstr "" + +#: src/engine/sysDef.cpp:1620 +msgid "like OPL3, but this time it also has a 24-channel version of MultiPCM." +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 17" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 18" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 19" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 20" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 21" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 22" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 23" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 24" +msgstr "" + +#: src/engine/sysDef.cpp:1629 +msgid "Yamaha YMF278B (OPL4) with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1630 +msgid "the OPL4 but with drums mode turned on." +msgstr "" + +#: src/engine/sysDef.cpp:1638 +msgid "11xx: Set filter mode (00 to 03)" +msgstr "" + +#: src/engine/sysDef.cpp:1639 +msgid "14xx: Set filter coefficient K1 low byte (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1640 +msgid "15xx: Set filter coefficient K1 high byte (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1641 +msgid "16xx: Set filter coefficient K2 low byte (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1642 +msgid "17xx: Set filter coefficient K2 high byte (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1643 +msgid "18xx: Set filter coefficient K1 slide up (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1644 +msgid "19xx: Set filter coefficient K1 slide down (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1645 +msgid "1Axx: Set filter coefficient K2 slide up (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1646 +msgid "1Bxx: Set filter coefficient K2 slide down (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1647 +msgid "22xx: Set envelope left volume ramp (signed) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1648 +msgid "23xx: Set envelope right volume ramp (signed) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1649 +msgid "24xx: Set envelope filter coefficient k1 ramp (signed) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1650 +msgid "" +"25xx: Set envelope filter coefficient k1 ramp (signed, slower) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1651 +msgid "26xx: Set envelope filter coefficient k2 ramp (signed) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1652 +msgid "" +"27xx: Set envelope filter coefficient k2 ramp (signed, slower) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1656 +msgid "120x: Set pause (bit 0)" +msgstr "" + +#: src/engine/sysDef.cpp:1658 +msgid "2xxx: Set envelope count (000 to 1FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1659 +msgid "3xxx: Set filter coefficient K1 (000 to FFF)" +msgstr "" + +#: src/engine/sysDef.cpp:1660 +msgid "4xxx: Set filter coefficient K2 (000 to FFF)" +msgstr "" + +#: src/engine/sysDef.cpp:1667 +msgid "Ensoniq ES5506" +msgstr "" + +#: src/engine/sysDef.cpp:1668 +msgid "" +"a sample chip made by Ensoniq, which is the basis for the GF1 chip found in " +"Gravis' Ultrasound cards." +msgstr "" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 29" +msgstr "" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 30" +msgstr "" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 31" +msgstr "" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 32" +msgstr "" + +#: src/engine/sysDef.cpp:1679 +msgid "Yamaha Y8950" +msgstr "" + +#: src/engine/sysDef.cpp:1680 +msgid "like OPL but with an ADPCM channel." +msgstr "" + +#: src/engine/sysDef.cpp:1691 +msgid "Yamaha Y8950 with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1692 +msgid "the Y8950 chip, in drums mode." +msgstr "" + +#: src/engine/sysDef.cpp:1703 +msgid "Konami SCC+" +msgstr "" + +#: src/engine/sysDef.cpp:1704 +msgid "" +"this is a variant of Konami's SCC chip with the last channel's wavetable " +"being independent." +msgstr "" + +#: src/engine/sysDef.cpp:1715 +msgid "12xx: Set pulse width (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:1716 +msgid "13xx: Set resonance (0 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1717 +msgid "" +"14xx: Set filter mode (bit 0: ring mod; bit 1: low pass; bit 2: high pass; " +"bit 3: band pass)" +msgstr "" + +#: src/engine/sysDef.cpp:1718 +msgid "15xx: Set frequency sweep period low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1719 +msgid "16xx: Set frequency sweep period high byte" +msgstr "" + +#: src/engine/sysDef.cpp:1720 +msgid "17xx: Set volume sweep period low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1721 +msgid "18xx: Set volume sweep period high byte" +msgstr "" + +#: src/engine/sysDef.cpp:1722 +msgid "19xx: Set cutoff sweep period low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1723 +msgid "1Axx: Set cutoff sweep period high byte" +msgstr "" + +#: src/engine/sysDef.cpp:1724 +msgid "1Bxx: Set frequency sweep boundary" +msgstr "" + +#: src/engine/sysDef.cpp:1725 +msgid "1Cxx: Set volume sweep boundary" +msgstr "" + +#: src/engine/sysDef.cpp:1726 +msgid "1Dxx: Set cutoff sweep boundary" +msgstr "" + +#: src/engine/sysDef.cpp:1727 +msgid "1Exx: Set phase reset period low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1728 +msgid "1Fxx: Set phase reset period high byte" +msgstr "" + +#: src/engine/sysDef.cpp:1729 +msgid "20xx: Toggle frequency sweep (bit 0-6: speed; bit 7: direction is up)" +msgstr "" + +#: src/engine/sysDef.cpp:1730 +msgid "" +"21xx: Toggle volume sweep (bit 0-4: speed; bit 5: direction is up; bit 6: " +"loop; bit 7: alternate)" +msgstr "" + +#: src/engine/sysDef.cpp:1731 +msgid "22xx: Toggle cutoff sweep (bit 0-6: speed; bit 7: direction is up)" +msgstr "" + +#: src/engine/sysDef.cpp:1739 +msgid "tildearrow Sound Unit" +msgstr "" + +#: src/engine/sysDef.cpp:1740 +msgid "" +"tildearrow's fantasy sound chip. put SID, AY and VERA in a blender, and you " +"get this!" +msgstr "" + +#: src/engine/sysDef.cpp:1751 +msgid "OKI MSM6295" +msgstr "" + +#: src/engine/sysDef.cpp:1752 +msgid "an ADPCM sound chip manufactured by OKI and used in many arcade boards." +msgstr "" + +#: src/engine/sysDef.cpp:1759 +msgid "20xx: Set chip output rate (0: clock/132; 1: clock/165)" +msgstr "" + +#: src/engine/sysDef.cpp:1764 +msgid "OKI MSM6258" +msgstr "" + +#: src/engine/sysDef.cpp:1765 +msgid "an ADPCM sound chip manufactured by OKI and used in the Sharp X68000." +msgstr "" + +#: src/engine/sysDef.cpp:1766 src/engine/sysDef.cpp:1887 +#: src/gui/editControls.cpp:437 src/gui/settings.cpp:4223 +#: src/gui/guiConst.cpp:1397 src/gui/insEdit.cpp:2628 src/gui/insEdit.cpp:2666 +msgid "Sample" +msgstr "" + +#: src/engine/sysDef.cpp:1772 +msgid "20xx: Set frequency divider (0-2)" +msgstr "" + +#: src/engine/sysDef.cpp:1773 +msgid "21xx: Select clock rate (0: full; 1: half)" +msgstr "" + +#: src/engine/sysDef.cpp:1778 +msgid "Yamaha YMZ280B (PCMD8)" +msgstr "" + +#: src/engine/sysDef.cpp:1779 +msgid "" +"used in some arcade boards. Can play back either 4-bit ADPCM, 8-bit PCM or " +"16-bit PCM." +msgstr "" + +#: src/engine/sysDef.cpp:1797 src/gui/settings.cpp:4054 +msgid "Namco WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1798 +msgid "" +"a wavetable sound chip used in Pac-Man, among other early Namco arcade games." +msgstr "" + +#: src/engine/sysDef.cpp:1808 +msgid "Namco C15 WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1809 +msgid "" +"successor of the original Namco WSG chip, used in later Namco arcade games." +msgstr "" + +#: src/engine/sysDef.cpp:1819 +msgid "Namco C30 WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1820 +msgid "like Namco C15 but with stereo sound." +msgstr "" + +#: src/engine/sysDef.cpp:1830 +msgid "OKI MSM5232" +msgstr "" + +#: src/engine/sysDef.cpp:1831 +msgid "" +"a square wave additive synthesis chip made by OKI. used in some arcade " +"machines and instruments." +msgstr "" + +#: src/engine/sysDef.cpp:1839 +msgid "10xy: Set group control (x: sustain; y: part toggle bitmask)" +msgstr "" + +#: src/engine/sysDef.cpp:1840 src/engine/sysDef.cpp:1998 +msgid "11xx: Set noise mode" +msgstr "" + +#: src/engine/sysDef.cpp:1841 +msgid "12xx: Set group attack (0 to 5)" +msgstr "" + +#: src/engine/sysDef.cpp:1842 +msgid "13xx: Set group decay (0 to 11)" +msgstr "" + +#: src/engine/sysDef.cpp:1847 +msgid "Yamaha YM2612 (OPN2) with DualPCM" +msgstr "" + +#: src/engine/sysDef.cpp:1848 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this system uses software mixing to provide two sample channels." +msgstr "" + +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +msgid "FM 6/PCM 1" +msgstr "" + +#: src/engine/sysDef.cpp:1859 +msgid "Yamaha YM2612 (OPN2) Extended Channel 3 with DualPCM and CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1860 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this system uses software mixing to provide two sample channels.\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:1872 src/gui/settings.cpp:4024 +msgid "T6W28" +msgstr "" + +#: src/engine/sysDef.cpp:1873 +msgid "" +"an SN76489 derivative used in Neo Geo Pocket, has independent stereo volume " +"and noise channel frequency." +msgstr "" + +#: src/engine/sysDef.cpp:1880 +msgid "20xx: Set noise length (0: short, 1: long)" +msgstr "" + +#: src/engine/sysDef.cpp:1885 +msgid "Generic PCM DAC" +msgstr "" + +#: src/engine/sysDef.cpp:1886 +msgid "as generic sample playback as it gets." +msgstr "" + +#: src/engine/sysDef.cpp:1898 +msgid "Konami K007232" +msgstr "" + +#: src/engine/sysDef.cpp:1899 +msgid "this PCM chip was widely used at Konami arcade boards in 1986-1990." +msgstr "" + +#: src/engine/sysDef.cpp:1908 +msgid "Irem GA20" +msgstr "" + +#: src/engine/sysDef.cpp:1909 +msgid "" +"yet another PCM chip from Irem. like Amiga, but less pitch resolution and no " +"sample loop." +msgstr "" + +#: src/engine/sysDef.cpp:1918 +msgid "Sharp SM8521" +msgstr "" + +#: src/engine/sysDef.cpp:1919 +msgid "a SoC with wavetable sound hardware." +msgstr "" + +#: src/engine/sysDef.cpp:1929 +msgid "Casio PV-1000" +msgstr "" + +#: src/engine/sysDef.cpp:1930 +msgid "" +"a game console with 3 channels of square wave. it's what happens after " +"fusing TIA and VIC together." +msgstr "" + +#: src/engine/sysDef.cpp:1937 +msgid "10xx: Set ring modulation (0: disable, 1: enable)" +msgstr "" + +#: src/engine/sysDef.cpp:1942 +msgid "ZX Spectrum Beeper (QuadTone Engine)" +msgstr "" + +#: src/engine/sysDef.cpp:1943 +msgid "" +"another ZX Spectrum beeper system with full PWM pulses and 3-level volume " +"per channel. it also has a pitchable overlay sample channel." +msgstr "" + +#: src/engine/sysDef.cpp:1955 +msgid "Konami K053260" +msgstr "" + +#: src/engine/sysDef.cpp:1956 +msgid "this PCM chip was widely used at Konami arcade boards in 1990-1992." +msgstr "" + +#: src/engine/sysDef.cpp:1968 +msgid "MOS Technology TED" +msgstr "" + +#: src/engine/sysDef.cpp:1969 +msgid "" +"two square waves (one may be turned into noise). used in the Commodore " +"Plus/4, 16 and 116." +msgstr "" + +#: src/engine/sysDef.cpp:1978 +msgid "Namco C140" +msgstr "" + +#: src/engine/sysDef.cpp:1979 +msgid "Namco's first PCM chip from 1987. it's pretty good for being so." +msgstr "" + +#: src/engine/sysDef.cpp:1989 +msgid "Namco C219" +msgstr "" + +#: src/engine/sysDef.cpp:1990 +msgid "" +"Namco's PCM chip used in their NA-1/2 hardware.\n" +"very similar to C140, but has noise generator." +msgstr "" + +#: src/engine/sysDef.cpp:1999 +msgid "12xy: Set invert mode (x: surround; y: invert)" +msgstr "" + +#: src/engine/sysDef.cpp:2004 +msgid "ESS ES1xxx series (ESFM)" +msgstr "" + +#: src/engine/sysDef.cpp:2005 +msgid "" +"a unique FM synth featured in PC sound cards.\n" +"based on the OPL3 design, but with lots of its features extended." +msgstr "" + +#: src/engine/sysDef.cpp:2006 +msgid "FM 11" +msgstr "" + +#: src/engine/sysDef.cpp:2012 +msgid "2Exx: Toggle hard envelope reset on new notes" +msgstr "" + +#: src/engine/sysDef.cpp:2018 +msgid "PowerNoise" +msgstr "" + +#: src/engine/sysDef.cpp:2019 +msgid "" +"a fantasy sound chip designed by jvsTSX and The Beesh-Spweesh!\n" +"used in the Hexheld fantasy console." +msgstr "" + +#: src/engine/sysDef.cpp:2020 +msgid "Noise 1" +msgstr "" + +#: src/engine/sysDef.cpp:2020 +msgid "Noise 2" +msgstr "" + +#: src/engine/sysDef.cpp:2020 +msgid "Noise 3" +msgstr "" + +#: src/engine/sysDef.cpp:2020 +msgid "Slope" +msgstr "" + +#: src/engine/sysDef.cpp:2026 +msgid "" +"20xx: Load low byte of noise channel LFSR (00 to FF) or slope channel " +"accumulator (00 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:2027 +msgid "21xx: Load high byte of noise channel LFSR (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:2028 +msgid "22xx: Write to I/O port A" +msgstr "" + +#: src/engine/sysDef.cpp:2029 +msgid "23xx: Write to I/O port B" +msgstr "" + +#: src/engine/sysDef.cpp:2035 src/gui/settings.cpp:4079 +msgid "Dave" +msgstr "" + +#: src/engine/sysDef.cpp:2036 +msgid "" +"this chip was featured in the Enterprise 128 computer. it is similar to " +"POKEY, but with stereo output." +msgstr "" + +#: src/engine/sysDef.cpp:2037 +msgid "DAC Left" +msgstr "" + +#: src/engine/sysDef.cpp:2037 +msgid "DAC Right" +msgstr "" + +#: src/engine/sysDef.cpp:2043 +msgid "10xx: Set waveform (0 to 4; 0 to 3 on noise)" +msgstr "" + +#: src/engine/sysDef.cpp:2044 +msgid "11xx: Set noise frequency source (0: fixed; 1-3: channels 1 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:2045 +msgid "12xx: Toggle high-pass with next channel" +msgstr "" + +#: src/engine/sysDef.cpp:2046 +msgid "13xx: Toggle ring modulation with channel+2" +msgstr "" + +#: src/engine/sysDef.cpp:2047 +msgid "14xx: Toggle swap counters (noise only)" +msgstr "" + +#: src/engine/sysDef.cpp:2048 +msgid "15xx: Toggle low pass (noise only)" +msgstr "" + +#: src/engine/sysDef.cpp:2049 +msgid "16xx: Set clock divider (0: /2; 1: /3)" +msgstr "" + +#: src/engine/sysDef.cpp:2054 +msgid "Game Boy Advance DMA Sound" +msgstr "" + +#: src/engine/sysDef.cpp:2055 +msgid "" +"additional PCM FIFO channels in Game Boy Advance driven directly by its DMA " +"hardware." +msgstr "" + +#: src/engine/sysDef.cpp:2068 +msgid "Game Boy Advance MinMod" +msgstr "" + +#: src/engine/sysDef.cpp:2069 +msgid "" +"additional PCM FIFO channels in Game Boy Advance driven by software mixing " +"to provide up to sixteen sample channels" +msgstr "" + +#: src/engine/sysDef.cpp:2078 +msgid "11xy: Set echo channel (x: left/right source; y: delay (0 disables))" +msgstr "" + +#: src/engine/sysDef.cpp:2079 +msgid "12xy: Toggle invert (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:2084 src/gui/settings.cpp:4080 +msgid "Nintendo DS" +msgstr "" + +#: src/engine/sysDef.cpp:2085 +msgid "a handheld video game console with two screens. it uses a stylus." +msgstr "" + +#: src/engine/sysDef.cpp:2093 +msgid "1Fxx: Set global volume (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:2098 +msgid "5E01" +msgstr "" + +#: src/engine/sysDef.cpp:2099 +msgid "" +"a fantasy sound chip created by Euly. it is based on Ricoh 2A03, adding a " +"couple features such as 32 noise pitches, an extra duty cycle, and three " +"waveforms (besides triangle)." +msgstr "" + +#: src/engine/sysDef.cpp:2107 +msgid "" +"12xx: Set duty cycle/noise mode/waveform (pulse/wave: 0 to 3; noise: 0 or 1)" +msgstr "" + +#: src/engine/sysDef.cpp:2120 src/gui/settings.cpp:4083 +msgid "Bifurcator" +msgstr "" + +#: src/engine/sysDef.cpp:2121 +msgid "a fantasy sound chip using logistic map iterations to generate sound." +msgstr "" + +#: src/engine/sysDef.cpp:2128 +msgid "10xx: Load low byte of channel sample state" +msgstr "" + +#: src/engine/sysDef.cpp:2129 +msgid "11xx: Load high byte of channel sample state" +msgstr "" + +#: src/engine/sysDef.cpp:2130 +msgid "12xx: Set low byte of channel parameter" +msgstr "" + +#: src/engine/sysDef.cpp:2131 +msgid "13xx: Set high byte of channel parameter" +msgstr "" + +#: src/engine/sysDef.cpp:2136 src/gui/settings.cpp:4084 +msgid "SID2" +msgstr "" + +#: src/engine/sysDef.cpp:2137 +msgid "" +"a fantasy sound chip created by LTVA. it is similar to the SID chip, but " +"with many of its problems fixed." +msgstr "" + +#: src/engine/sysDef.cpp:2148 +msgid "Dummy System" +msgstr "" + +#: src/engine/sysDef.cpp:2149 +msgid "this is a system designed for testing purposes." +msgstr "" + +#: src/engine/engine.cpp:51 +msgid "00xy: Arpeggio" +msgstr "" + +#: src/engine/engine.cpp:53 +msgid "01xx: Pitch slide up" +msgstr "" + +#: src/engine/engine.cpp:55 +msgid "02xx: Pitch slide down" +msgstr "" + +#: src/engine/engine.cpp:57 +msgid "03xx: Portamento" +msgstr "" + +#: src/engine/engine.cpp:59 +msgid "04xy: Vibrato (x: speed; y: depth)" +msgstr "" + +#: src/engine/engine.cpp:61 +msgid "05xy: Volume slide + vibrato (compatibility only!)" +msgstr "" + +#: src/engine/engine.cpp:63 +msgid "06xy: Volume slide + portamento (compatibility only!)" +msgstr "" + +#: src/engine/engine.cpp:65 +msgid "07xy: Tremolo (x: speed; y: depth)" +msgstr "" + +#: src/engine/engine.cpp:67 +msgid "08xy: Set panning (x: left; y: right)" +msgstr "" + +#: src/engine/engine.cpp:69 +msgid "09xx: Set groove pattern (speed 1 if no grooves exist)" +msgstr "" + +#: src/engine/engine.cpp:71 +msgid "0Axy: Volume slide (0y: down; x0: up)" +msgstr "" + +#: src/engine/engine.cpp:73 +msgid "0Bxx: Jump to pattern" +msgstr "" + +#: src/engine/engine.cpp:75 +msgid "0Cxx: Retrigger" +msgstr "" + +#: src/engine/engine.cpp:77 +msgid "0Dxx: Jump to next pattern" +msgstr "" + +#: src/engine/engine.cpp:79 +msgid "0Fxx: Set speed (speed 2 if no grooves exist)" +msgstr "" + +#: src/engine/engine.cpp:81 +msgid "80xx: Set panning (00: left; 80: center; FF: right)" +msgstr "" + +#: src/engine/engine.cpp:83 +msgid "81xx: Set panning (left channel)" +msgstr "" + +#: src/engine/engine.cpp:85 +msgid "82xx: Set panning (right channel)" +msgstr "" + +#: src/engine/engine.cpp:87 +msgid "88xy: Set panning (rear channels; x: left; y: right)" +msgstr "" + +#: src/engine/engine.cpp:90 +msgid "89xx: Set panning (rear left channel)" +msgstr "" + +#: src/engine/engine.cpp:93 +msgid "8Axx: Set panning (rear right channel)" +msgstr "" + +#: src/engine/engine.cpp:96 +msgid "Cxxx: Set tick rate (hz)" +msgstr "" + +#: src/engine/engine.cpp:98 +msgid "E0xx: Set arp speed" +msgstr "" + +#: src/engine/engine.cpp:100 +msgid "E1xy: Note slide up (x: speed; y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:102 +msgid "E2xy: Note slide down (x: speed; y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:104 +msgid "E3xx: Set vibrato shape (0: up/down; 1: up only; 2: down only)" +msgstr "" + +#: src/engine/engine.cpp:106 +msgid "E4xx: Set vibrato range" +msgstr "" + +#: src/engine/engine.cpp:108 +msgid "E5xx: Set pitch (80: center)" +msgstr "" + +#: src/engine/engine.cpp:110 +msgid "E6xy: Quick legato (x: time (0-7 up; 8-F down); y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:112 +msgid "E7xx: Macro release" +msgstr "" + +#: src/engine/engine.cpp:114 +msgid "E8xy: Quick legato up (x: time; y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:116 +msgid "E9xy: Quick legato down (x: time; y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:118 +msgid "EAxx: Legato" +msgstr "" + +#: src/engine/engine.cpp:120 +msgid "EBxx: Set LEGACY sample mode bank" +msgstr "" + +#: src/engine/engine.cpp:122 +msgid "ECxx: Note cut" +msgstr "" + +#: src/engine/engine.cpp:124 +msgid "EDxx: Note delay" +msgstr "" + +#: src/engine/engine.cpp:126 +msgid "EExx: Send external command" +msgstr "" + +#: src/engine/engine.cpp:128 +msgid "F0xx: Set tick rate (bpm)" +msgstr "" + +#: src/engine/engine.cpp:130 +msgid "F1xx: Single tick note slide up" +msgstr "" + +#: src/engine/engine.cpp:132 +msgid "F2xx: Single tick note slide down" +msgstr "" + +#: src/engine/engine.cpp:134 +msgid "F3xx: Fine volume slide up" +msgstr "" + +#: src/engine/engine.cpp:136 +msgid "F4xx: Fine volume slide down" +msgstr "" + +#: src/engine/engine.cpp:138 +msgid "F5xx: Disable macro (see manual)" +msgstr "" + +#: src/engine/engine.cpp:140 +msgid "F6xx: Enable macro (see manual)" +msgstr "" + +#: src/engine/engine.cpp:142 +msgid "F7xx: Restart macro (see manual)" +msgstr "" + +#: src/engine/engine.cpp:144 +msgid "F8xx: Single tick volume slide up" +msgstr "" + +#: src/engine/engine.cpp:146 +msgid "F9xx: Single tick volume slide down" +msgstr "" + +#: src/engine/engine.cpp:148 +msgid "FAxx: Fast volume slide (0y: down; x0: up)" +msgstr "" + +#: src/engine/engine.cpp:150 +msgid "FCxx: Note release" +msgstr "" + +#: src/engine/engine.cpp:152 +msgid "FDxx: Set virtual tempo numerator" +msgstr "" + +#: src/engine/engine.cpp:154 +msgid "FExx: Set virtual tempo denominator" +msgstr "" + +#: src/engine/engine.cpp:156 +msgid "FFxx: Stop song" +msgstr "" + +#: src/engine/engine.cpp:160 +msgid "9xxx: Set sample offset*256" +msgstr "" + +#: src/engine/engine.cpp:164 +msgid "90xx: Set sample offset (first byte)" +msgstr "" + +#: src/engine/engine.cpp:166 +msgid "91xx: Set sample offset (second byte, ×256)" +msgstr "" + +#: src/engine/engine.cpp:168 +msgid "92xx: Set sample offset (third byte, ×65536)" +msgstr "" + +#: src/engine/engine.cpp:187 src/gui/settings.cpp:4127 +msgid "Invalid effect" +msgstr "" + +#: src/engine/engine.cpp:354 src/gui/gui.cpp:2259 src/gui/gui.cpp:2422 +#, c-format +msgid "on seek: %s" +msgstr "" + +#: src/engine/engine.cpp:361 src/gui/gui.cpp:2266 src/gui/gui.cpp:2429 +#, c-format +msgid "on pre tell: %s" +msgstr "" + +#: src/engine/engine.cpp:368 src/engine/engine.cpp:2768 +#: src/gui/settings.cpp:5811 src/gui/gui.cpp:2273 src/gui/gui.cpp:2436 +msgid "file is empty" +msgstr "" + +#: src/engine/engine.cpp:371 src/gui/gui.cpp:2276 src/gui/gui.cpp:2439 +#, c-format +msgid "on tell: %s" +msgstr "" + +#: src/engine/engine.cpp:378 +#, c-format +msgid "ROM size mismatch, expected: %d bytes, was: %d" +msgstr "" + +#: src/engine/engine.cpp:383 src/gui/settings.cpp:5820 src/gui/gui.cpp:2283 +#: src/gui/gui.cpp:2446 +#, c-format +msgid "on get size: %s" +msgstr "" + +#: src/engine/engine.cpp:390 src/gui/settings.cpp:5827 src/gui/gui.cpp:2290 +#: src/gui/gui.cpp:2453 +#, c-format +msgid "on read: %s" +msgstr "" + +#: src/engine/engine.cpp:1076 src/engine/engine.cpp:1181 +#: src/engine/engine.cpp:1290 +msgid "invalid index" +msgstr "" + +#: src/engine/engine.cpp:1080 src/engine/engine.cpp:1135 +#: src/engine/engine.cpp:1189 +#, c-format +msgid "max number of total channels is %d" +msgstr "" + +#: src/engine/engine.cpp:1131 src/engine/engine.cpp:1185 +#, c-format +msgid "max number of systems is %d" +msgstr "" + +#: src/engine/engine.cpp:1286 +msgid "cannot remove the last one" +msgstr "" + +#: src/engine/engine.cpp:1460 +msgid "source and destination are equal" +msgstr "" + +#: src/engine/engine.cpp:1464 +msgid "invalid source index" +msgstr "" + +#: src/engine/engine.cpp:1468 +msgid "invalid destination index" +msgstr "" + +#: src/engine/engine.cpp:2636 +#, c-format +msgid "Instrument %d" +msgstr "" + +#: src/engine/engine.cpp:2710 src/engine/engine.cpp:2727 +#: src/gui/doAction.cpp:825 src/gui/doAction.cpp:843 src/gui/doAction.cpp:1634 +#: src/gui/gui.cpp:6159 src/gui/insEdit.cpp:6860 +msgid "too many wavetables!" +msgstr "" + +#: src/engine/engine.cpp:2752 +#, c-format +msgid "could not seek to end: %s" +msgstr "" + +#: src/engine/engine.cpp:2758 +#, c-format +msgid "could not determine file size: %s" +msgstr "" + +#: src/engine/engine.cpp:2763 +msgid "file size is invalid!" +msgstr "" + +#: src/engine/engine.cpp:2773 +#, c-format +msgid "could not seek to beginning: %s" +msgstr "" + +#: src/engine/engine.cpp:2780 +#, c-format +msgid "could not read entire file: %s" +msgstr "" + +#: src/engine/engine.cpp:2806 +msgid "invalid wavetable header/data!" +msgstr "" + +#: src/engine/engine.cpp:2877 +msgid "premature end of file" +msgstr "" + +#: src/engine/engine.cpp:2904 src/engine/engine.cpp:2926 +#: src/gui/doAction.cpp:909 src/gui/doAction.cpp:921 +msgid "too many samples!" +msgstr "" + +#: src/engine/engine.cpp:2911 +#, c-format +msgid "Sample %d" +msgstr "" + +#: src/engine/engine.cpp:3056 +#, c-format +msgid "no free patterns in channel %d!" +msgstr "" + +#: src/gui/mixer.cpp:28 src/gui/insEdit.cpp:484 +msgid "left" +msgstr "" + +#: src/gui/mixer.cpp:29 src/gui/insEdit.cpp:483 +msgid "right" +msgstr "" + +#: src/gui/mixer.cpp:128 +msgid "input" +msgstr "" + +#: src/gui/mixer.cpp:168 +msgid "output" +msgstr "" + +#: src/gui/mixer.cpp:226 src/gui/mixer.cpp:228 src/gui/editControls.cpp:454 +#: src/gui/guiConst.cpp:593 +msgid "Mixer" +msgstr "" + +#: src/gui/mixer.cpp:229 +msgid "Master Volume" +msgstr "" + +#: src/gui/mixer.cpp:250 src/gui/exportOptions.cpp:90 +#: src/gui/userPresets.cpp:393 src/gui/userPresets.cpp:405 +#: src/gui/settings.cpp:1080 src/gui/settings.cpp:1094 +#: src/gui/waveEdit.cpp:1096 src/gui/sampleEdit.cpp:1128 +#: src/gui/insEdit.cpp:519 +msgid "Invert" +msgstr "" + +#: src/gui/mixer.cpp:268 src/gui/chanOsc.cpp:37 src/gui/userPresets.cpp:417 +#: src/gui/settings.cpp:263 src/gui/settings.cpp:1109 src/gui/settings.cpp:1492 +#: src/gui/settings.cpp:1504 src/gui/settings.cpp:3369 +#: src/gui/settings.cpp:4015 src/gui/findReplace.cpp:687 +#: src/gui/findReplace.cpp:943 src/gui/guiConst.cpp:228 +#: src/gui/sampleEdit.cpp:1003 src/gui/insEdit.cpp:5575 +#: src/gui/insEdit.cpp:5660 src/gui/insEdit.cpp:6920 src/gui/insEdit.cpp:6928 +#: src/gui/insEdit.cpp:6936 src/gui/insEdit.cpp:6946 src/gui/insEdit.cpp:6961 +#: src/gui/insEdit.cpp:6975 src/gui/insEdit.cpp:6987 src/gui/insEdit.cpp:7000 +#: src/gui/insEdit.cpp:7016 src/gui/insEdit.cpp:7022 src/gui/insEdit.cpp:7032 +#: src/gui/insEdit.cpp:7039 src/gui/insEdit.cpp:7045 src/gui/insEdit.cpp:7058 +#: src/gui/insEdit.cpp:7065 src/gui/insEdit.cpp:7072 src/gui/insEdit.cpp:7081 +#: src/gui/insEdit.cpp:7091 src/gui/insEdit.cpp:7099 src/gui/insEdit.cpp:7105 +#: src/gui/insEdit.cpp:7113 src/gui/insEdit.cpp:7120 src/gui/insEdit.cpp:7126 +#: src/gui/insEdit.cpp:7136 src/gui/insEdit.cpp:7148 src/gui/insEdit.cpp:7156 +#: src/gui/insEdit.cpp:7172 src/gui/insEdit.cpp:7177 src/gui/insEdit.cpp:7190 +#: src/gui/insEdit.cpp:7197 src/gui/insEdit.cpp:7208 src/gui/insEdit.cpp:7221 +#: src/gui/insEdit.cpp:7230 src/gui/insEdit.cpp:7237 src/gui/insEdit.cpp:7245 +#: src/gui/insEdit.cpp:7258 src/gui/insEdit.cpp:7263 src/gui/insEdit.cpp:7269 +#: src/gui/insEdit.cpp:7276 src/gui/insEdit.cpp:7284 src/gui/insEdit.cpp:7295 +#: src/gui/insEdit.cpp:7302 src/gui/insEdit.cpp:7310 src/gui/insEdit.cpp:7318 +#: src/gui/insEdit.cpp:7327 src/gui/insEdit.cpp:7335 src/gui/insEdit.cpp:7341 +#: src/gui/insEdit.cpp:7347 src/gui/insEdit.cpp:7353 src/gui/insEdit.cpp:7358 +#: src/gui/insEdit.cpp:7365 src/gui/insEdit.cpp:7372 src/gui/insEdit.cpp:7380 +#: src/gui/insEdit.cpp:7389 src/gui/insEdit.cpp:7397 src/gui/insEdit.cpp:7409 +#: src/gui/insEdit.cpp:7422 src/gui/insEdit.cpp:7433 src/gui/insEdit.cpp:7443 +#: src/gui/insEdit.cpp:7451 src/gui/insEdit.cpp:7461 src/gui/insEdit.cpp:7470 +msgid "Volume" +msgstr "" + +#: src/gui/mixer.cpp:279 src/gui/userPresets.cpp:427 src/gui/settings.cpp:1120 +#: src/gui/guiConst.cpp:229 src/gui/insEdit.cpp:6923 src/gui/insEdit.cpp:6930 +#: src/gui/insEdit.cpp:6941 src/gui/insEdit.cpp:6965 src/gui/insEdit.cpp:7067 +#: src/gui/insEdit.cpp:7108 src/gui/insEdit.cpp:7152 src/gui/insEdit.cpp:7192 +#: src/gui/insEdit.cpp:7212 src/gui/insEdit.cpp:7232 src/gui/insEdit.cpp:7240 +#: src/gui/insEdit.cpp:7253 src/gui/insEdit.cpp:7265 src/gui/insEdit.cpp:7271 +#: src/gui/insEdit.cpp:7287 src/gui/insEdit.cpp:7297 src/gui/insEdit.cpp:7360 +#: src/gui/insEdit.cpp:7392 src/gui/insEdit.cpp:7438 src/gui/insEdit.cpp:7446 +msgid "Panning" +msgstr "" + +#: src/gui/mixer.cpp:290 src/gui/userPresets.cpp:433 src/gui/settings.cpp:1127 +msgid "Front/Rear" +msgstr "" + +#: src/gui/mixer.cpp:299 src/gui/settings.cpp:4208 +msgid "Patchbay" +msgstr "" + +#: src/gui/mixer.cpp:305 +msgid "Automatic patchbay" +msgstr "" + +#: src/gui/mixer.cpp:310 +msgid "Display hidden ports" +msgstr "" + +#: src/gui/mixer.cpp:312 +msgid "Display internal" +msgstr "" + +#: src/gui/mixer.cpp:322 src/gui/mixer.cpp:383 src/gui/settings.cpp:1901 +#: src/gui/settings.cpp:2089 src/gui/songInfo.cpp:69 +msgid "System" +msgstr "" + +#: src/gui/mixer.cpp:354 +msgid "Sample Preview" +msgstr "" + +#: src/gui/mixer.cpp:367 src/gui/editControls.cpp:745 +#: src/gui/editControls.cpp:837 src/gui/editControls.cpp:953 +#: src/gui/editControls.cpp:1093 src/gui/settings.cpp:1490 +#: src/gui/guiConst.cpp:558 +msgid "Metronome" +msgstr "" + +#: src/gui/mixer.cpp:446 +msgid "disconnect all" +msgstr "" + +#: src/gui/editing.cpp:200 +#, c-format +msgid "no data in oldPatMap for channel %d!" +msgstr "" + +#: src/gui/editing.cpp:664 src/gui/editing.cpp:1203 +#, c-format +msgid "invalid clipboard data! failed at line %d char %d" +msgstr "" + +#: src/gui/editing.cpp:1565 src/gui/editing.cpp:1669 +msgid "can't collapse any further!" +msgstr "" + +#: src/gui/editing.cpp:1749 +msgid "can't expand any further!" +msgstr "" + +#: src/gui/editing.cpp:1836 src/gui/editing.cpp:1851 +#, c-format +msgid "copy: %s" +msgstr "" + +#: src/gui/memory.cpp:35 src/gui/settings.cpp:3696 src/gui/settings.cpp:4217 +#: src/gui/guiConst.cpp:613 +msgid "Memory Composition" +msgstr "" + +#: src/gui/memory.cpp:146 +#, c-format +msgid "bank %d" +msgstr "" + +#: src/gui/memory.cpp:175 src/gui/memory.cpp:176 +msgid "no chips with memory" +msgstr "" + +#: src/gui/intro.cpp:89 src/gui/gui.cpp:2345 src/gui/gui.cpp:3746 +#: src/gui/gui.cpp:5019 src/gui/gui.cpp:5041 src/gui/gui.cpp:5479 +#: src/gui/gui.cpp:5781 src/gui/gui.cpp:5791 +#, c-format +msgid "Error while loading file! (%s)" +msgstr "" + +#: src/gui/intro.cpp:122 +msgid "IntroMon X" +msgstr "" + +#: src/gui/intro.cpp:122 +msgid "Intro" +msgstr "" + +#: src/gui/intro.cpp:124 +msgid "Preview" +msgstr "" + +#: src/gui/intro.cpp:176 src/gui/intro.cpp:177 src/gui/intro.cpp:178 +msgid "SORRY NOTHING" +msgstr "" + +#: src/gui/intro.cpp:310 +msgid "hold to skip" +msgstr "" + +#: src/gui/dataList.cpp:76 +msgid "Bug!" +msgstr "" + +#: src/gui/dataList.cpp:79 src/gui/util.cpp:107 src/gui/util.cpp:109 +#: src/gui/settings.cpp:4220 src/gui/insEdit.cpp:5334 +msgid "Unknown" +msgstr "" + +#: src/gui/dataList.cpp:136 src/gui/dataList.cpp:260 +msgid "duplicate" +msgstr "" + +#: src/gui/dataList.cpp:139 src/gui/dataList.cpp:263 src/gui/dataList.cpp:388 +#: src/gui/dataList.cpp:731 src/gui/dataList.cpp:867 +msgid "replace..." +msgstr "" + +#: src/gui/dataList.cpp:142 src/gui/dataList.cpp:266 src/gui/gui.cpp:4232 +msgid "save" +msgstr "" + +#: src/gui/dataList.cpp:145 +msgid "save (.dmp)" +msgstr "" + +#: src/gui/dataList.cpp:148 src/gui/dataList.cpp:269 src/gui/dataList.cpp:617 +#: src/gui/dataList.cpp:994 src/gui/dataList.cpp:1040 +#: src/gui/editControls.cpp:50 src/gui/gui.cpp:2767 src/gui/gui.cpp:2776 +msgid "delete" +msgstr "" + +#: src/gui/dataList.cpp:243 +msgid "out of memory for this sample!" +msgstr "" + +#: src/gui/dataList.cpp:254 +msgid "make instrument" +msgstr "" + +#: src/gui/dataList.cpp:257 +msgid "make me a drum kit" +msgstr "" + +#: src/gui/dataList.cpp:290 src/gui/dataList.cpp:593 src/gui/gui.cpp:5914 +msgid "Instruments" +msgstr "" + +#: src/gui/dataList.cpp:312 src/gui/dataList.cpp:714 src/gui/dataList.cpp:846 +#: src/gui/subSongs.cpp:88 src/gui/insEdit.cpp:520 +msgid "Add" +msgstr "" + +#: src/gui/dataList.cpp:338 src/gui/dataList.cpp:721 src/gui/dataList.cpp:853 +#: src/gui/subSongs.cpp:108 +msgid "Duplicate" +msgstr "" + +#: src/gui/dataList.cpp:359 src/gui/dataList.cpp:728 src/gui/dataList.cpp:860 +#: src/gui/editControls.cpp:497 src/gui/waveEdit.cpp:435 +#: src/gui/waveEdit.cpp:467 src/gui/sampleEdit.cpp:122 +#: src/gui/sampleEdit.cpp:171 src/gui/insEdit.cpp:5239 src/gui/insEdit.cpp:5304 +msgid "Open" +msgstr "" + +#: src/gui/dataList.cpp:363 +msgid "replace instrument..." +msgstr "" + +#: src/gui/dataList.cpp:366 +msgid "load instrument from TX81Z" +msgstr "" + +#: src/gui/dataList.cpp:372 +msgid "replace wavetable..." +msgstr "" + +#: src/gui/dataList.cpp:378 +msgid "replace sample..." +msgstr "" + +#: src/gui/dataList.cpp:381 +msgid "import raw sample..." +msgstr "" + +#: src/gui/dataList.cpp:384 +msgid "import raw sample (replace)..." +msgstr "" + +#: src/gui/dataList.cpp:392 +msgid "load from TX81Z" +msgstr "" + +#: src/gui/dataList.cpp:399 +msgid "Open (insert; right-click to replace)" +msgstr "" + +#: src/gui/dataList.cpp:420 src/gui/dataList.cpp:741 src/gui/dataList.cpp:884 +#: src/gui/editControls.cpp:502 src/gui/waveEdit.cpp:474 +#: src/gui/sampleEdit.cpp:184 src/gui/insEdit.cpp:5311 +msgid "Save" +msgstr "" + +#: src/gui/dataList.cpp:424 +msgid "save instrument as .dmp..." +msgstr "" + +#: src/gui/dataList.cpp:430 +msgid "save wavetable as .dmw..." +msgstr "" + +#: src/gui/dataList.cpp:433 +msgid "save raw wavetable..." +msgstr "" + +#: src/gui/dataList.cpp:439 +msgid "save raw sample..." +msgstr "" + +#: src/gui/dataList.cpp:443 src/gui/insEdit.cpp:5314 +msgid "save as .dmp..." +msgstr "" + +#: src/gui/dataList.cpp:456 src/gui/dataList.cpp:761 src/gui/dataList.cpp:903 +msgid "Toggle folders/standard view" +msgstr "" + +#: src/gui/dataList.cpp:478 src/gui/dataList.cpp:769 src/gui/dataList.cpp:911 +#: src/gui/subSongs.cpp:55 +msgid "Move up" +msgstr "" + +#: src/gui/dataList.cpp:499 src/gui/dataList.cpp:776 src/gui/dataList.cpp:918 +#: src/gui/subSongs.cpp:62 +msgid "Move down" +msgstr "" + +#: src/gui/dataList.cpp:510 src/gui/dataList.cpp:787 src/gui/dataList.cpp:929 +msgid "Create" +msgstr "" + +#: src/gui/dataList.cpp:540 src/gui/dataList.cpp:797 src/gui/dataList.cpp:939 +msgid "New folder" +msgstr "" + +#: src/gui/dataList.cpp:549 src/gui/dataList.cpp:947 +msgid "Preview (right click to stop)" +msgstr "" + +#: src/gui/dataList.cpp:576 src/gui/dataList.cpp:807 src/gui/dataList.cpp:959 +#: src/gui/guiConst.cpp:666 src/gui/sampleEdit.cpp:1105 +msgid "Delete" +msgstr "" + +#: src/gui/dataList.cpp:608 src/gui/dataList.cpp:985 src/gui/dataList.cpp:1031 +msgid "" +msgstr "" + +#: src/gui/dataList.cpp:614 src/gui/dataList.cpp:991 src/gui/dataList.cpp:1037 +msgid "rename..." +msgstr "" + +#: src/gui/dataList.cpp:663 src/gui/dataList.cpp:707 src/gui/gui.cpp:5923 +msgid "Wavetables" +msgstr "" + +#: src/gui/dataList.cpp:674 src/gui/dataList.cpp:839 src/gui/xyOsc.cpp:68 +#: src/gui/sampleEdit.cpp:898 src/gui/sampleEdit.cpp:1072 src/gui/gui.cpp:5932 +msgid "Samples" +msgstr "" + +#: src/gui/dataList.cpp:745 src/gui/waveEdit.cpp:477 +msgid "save as .dmw..." +msgstr "" + +#: src/gui/dataList.cpp:748 src/gui/dataList.cpp:891 src/gui/waveEdit.cpp:480 +#: src/gui/sampleEdit.cpp:187 +msgid "save raw..." +msgstr "" + +#: src/gui/dataList.cpp:871 src/gui/sampleEdit.cpp:174 +msgid "import raw..." +msgstr "" + +#: src/gui/dataList.cpp:874 +msgid "import raw (replace)..." +msgstr "" + +#: src/gui/exportOptions.cpp:29 +msgid "Export type:" +msgstr "" + +#: src/gui/exportOptions.cpp:32 +msgid "one file" +msgstr "" + +#: src/gui/exportOptions.cpp:35 +msgid "multiple files (one per chip)" +msgstr "" + +#: src/gui/exportOptions.cpp:38 +msgid "multiple files (one per channel)" +msgstr "" + +#: src/gui/exportOptions.cpp:44 +msgid "Bit depth:" +msgstr "" + +#: src/gui/exportOptions.cpp:46 +msgid "16-bit integer" +msgstr "" + +#: src/gui/exportOptions.cpp:49 +msgid "32-bit float" +msgstr "" + +#: src/gui/exportOptions.cpp:55 src/gui/settings.cpp:1352 src/gui/gui.cpp:6270 +msgid "Sample rate" +msgstr "" + +#: src/gui/exportOptions.cpp:61 +msgid "Channels in file" +msgstr "" + +#: src/gui/exportOptions.cpp:67 src/gui/settings.cpp:930 +msgid "Loops" +msgstr "" + +#: src/gui/exportOptions.cpp:70 src/gui/settings.cpp:935 +msgid "Fade out (seconds)" +msgstr "" + +#: src/gui/exportOptions.cpp:76 +msgid "Channels to export:" +msgstr "" + +#: src/gui/exportOptions.cpp:78 src/gui/effectList.cpp:32 src/gui/gui.cpp:6186 +msgid "All" +msgstr "" + +#: src/gui/exportOptions.cpp:84 src/gui/sysConf.cpp:1870 +#: src/gui/effectList.cpp:34 src/gui/compatFlags.cpp:219 +#: src/gui/waveEdit.cpp:37 src/gui/gui.cpp:6192 src/gui/insEdit.cpp:518 +msgid "None" +msgstr "" + +#: src/gui/exportOptions.cpp:110 src/gui/exportOptions.cpp:214 +#: src/gui/exportOptions.cpp:225 src/gui/exportOptions.cpp:243 +#: src/gui/exportOptions.cpp:266 src/gui/exportOptions.cpp:297 +#: src/gui/exportOptions.cpp:318 src/gui/exportOptions.cpp:341 +#: src/gui/commandPalette.cpp:199 src/gui/settings.cpp:6673 +#: src/gui/newSong.cpp:273 src/gui/gui.cpp:5669 src/gui/gui.cpp:5693 +#: src/gui/gui.cpp:5717 src/gui/gui.cpp:5741 src/gui/gui.cpp:5765 +#: src/gui/gui.cpp:5796 src/gui/gui.cpp:5855 src/gui/gui.cpp:6229 +#: src/gui/gui.cpp:6353 +msgid "Cancel" +msgstr "" + +#: src/gui/exportOptions.cpp:115 src/gui/exportOptions.cpp:217 +#: src/gui/exportOptions.cpp:246 src/gui/exportOptions.cpp:300 +#: src/gui/exportOptions.cpp:321 src/gui/exportOptions.cpp:344 +#: src/gui/editControls.cpp:512 src/gui/userPresets.cpp:523 +#: src/gui/settings.cpp:1242 src/gui/settings.cpp:2165 +#: src/gui/settings.cpp:2557 src/gui/settings.cpp:3800 src/gui/guiConst.cpp:536 +#: src/gui/gui.cpp:5578 src/gui/gui.cpp:5630 +msgid "Export" +msgstr "" + +#: src/gui/exportOptions.cpp:130 +msgid "select at least one channel" +msgstr "" + +#: src/gui/exportOptions.cpp:137 +msgid "settings:" +msgstr "" + +#: src/gui/exportOptions.cpp:138 +msgid "format version" +msgstr "" + +#: src/gui/exportOptions.cpp:146 src/gui/exportOptions.cpp:238 +#: src/gui/insEdit.cpp:362 +msgid "loop" +msgstr "" + +#: src/gui/exportOptions.cpp:148 +msgid "loop trail:" +msgstr "" + +#: src/gui/exportOptions.cpp:150 +msgid "auto-detect" +msgstr "" + +#: src/gui/exportOptions.cpp:153 +msgid "add one loop" +msgstr "" + +#: src/gui/exportOptions.cpp:156 +msgid "custom" +msgstr "" + +#: src/gui/exportOptions.cpp:167 +msgid "add pattern change hints" +msgstr "" + +#: src/gui/exportOptions.cpp:170 +msgid "" +"inserts data blocks on pattern changes.\n" +"useful if you are writing a playback routine.\n" +"\n" +"the format of a pattern change data block is:\n" +"67 66 FE ll ll ll ll 01 oo rr pp pp pp ...\n" +"- ll: length, a 32-bit little-endian number\n" +"- oo: order\n" +"- rr: initial row (a 0Dxx effect is able to select a different row)\n" +"- pp: pattern index (one per channel)\n" +"\n" +"pattern indexes are ordered as they appear in the song." +msgstr "" + +#: src/gui/exportOptions.cpp:183 +msgid "direct stream mode" +msgstr "" + +#: src/gui/exportOptions.cpp:186 +msgid "" +"required for DualPCM and MSM6258 export.\n" +"\n" +"allows for volume/direction changes when playing samples,\n" +"at the cost of a massive increase in file size." +msgstr "" + +#: src/gui/exportOptions.cpp:191 +msgid "chips to export:" +msgstr "" + +#: src/gui/exportOptions.cpp:200 +#, c-format +msgid "this chip is only available in VGM %d.%.2x and higher!" +msgstr "" + +#: src/gui/exportOptions.cpp:204 +msgid "this chip is not supported by the VGM format!" +msgstr "" + +#: src/gui/exportOptions.cpp:210 +#, c-format +msgid "select the chip you wish to export, but only up to %d of each type." +msgstr "" + +#: src/gui/exportOptions.cpp:222 +msgid "nothing to export" +msgstr "" + +#: src/gui/exportOptions.cpp:233 +msgid "Commander X16 Zsound Music File" +msgstr "" + +#: src/gui/exportOptions.cpp:234 +msgid "Tick Rate (Hz)" +msgstr "" + +#: src/gui/exportOptions.cpp:240 +msgid "optimize size" +msgstr "" + +#: src/gui/exportOptions.cpp:256 src/gui/editControls.cpp:630 +msgid "" +"this is NOT ROM export! only use for making sure the\n" +"Furnace Amiga emulator is working properly by\n" +"comparing it with real Amiga output." +msgstr "" + +#: src/gui/exportOptions.cpp:261 src/gui/editControls.cpp:635 +#: src/gui/settings.cpp:3925 +msgid "Directory" +msgstr "" + +#: src/gui/exportOptions.cpp:269 src/gui/editControls.cpp:638 +msgid "Bake Data" +msgstr "" + +#: src/gui/exportOptions.cpp:284 src/gui/editControls.cpp:653 +#, c-format +msgid "Done! Baked %d files." +msgstr "" + +#: src/gui/exportOptions.cpp:293 +msgid "this option exports the song to a text file.\n" +msgstr "" + +#: src/gui/exportOptions.cpp:310 +msgid "" +"this option exports a text or binary file which\n" +"contains a dump of the internal command stream\n" +"produced when playing the song.\n" +"\n" +"technical/development use only!" +msgstr "" + +#: src/gui/exportOptions.cpp:331 +msgid "" +"export in DefleMask module format.\n" +"only do it if you really, really need to, or are downgrading an existing ." +"dmf." +msgstr "" + +#: src/gui/exportOptions.cpp:335 +msgid "format version:" +msgstr "" + +#: src/gui/exportOptions.cpp:336 +msgid "1.1.3 and higher" +msgstr "" + +#: src/gui/exportOptions.cpp:337 +msgid "1.0/legacy (0.12)" +msgstr "" + +#: src/gui/exportOptions.cpp:357 src/gui/settings.cpp:1253 +#: src/gui/settings.cpp:3929 +msgid "Audio" +msgstr "" + +#: src/gui/exportOptions.cpp:361 src/gui/settings.cpp:3931 +msgid "VGM" +msgstr "" + +#: src/gui/exportOptions.cpp:370 src/gui/settings.cpp:3932 +msgid "ZSM" +msgstr "" + +#: src/gui/exportOptions.cpp:380 +msgid "Amiga Validation" +msgstr "" + +#: src/gui/exportOptions.cpp:385 src/gui/settings.cpp:2959 +#: src/gui/settings.cpp:3891 +msgid "Text" +msgstr "" + +#: src/gui/exportOptions.cpp:389 +msgid "Command Stream" +msgstr "" + +#: src/gui/exportOptions.cpp:393 +msgid "DMF" +msgstr "" + +#: src/gui/exportOptions.cpp:422 +msgid "congratulations! you've unlocked a secret panel." +msgstr "" + +#: src/gui/exportOptions.cpp:423 +msgid "Toggle hidden systems" +msgstr "" + +#: src/gui/exportOptions.cpp:427 +msgid "Toggle all instrument types" +msgstr "" + +#: src/gui/exportOptions.cpp:431 +msgid "Set pitch linearity to Partial" +msgstr "" + +#: src/gui/exportOptions.cpp:435 +msgid "Enable multi-threading settings" +msgstr "" + +#: src/gui/exportOptions.cpp:439 +msgid "Set fat to max" +msgstr "" + +#: src/gui/exportOptions.cpp:446 +msgid "Set muscle and fat to zero" +msgstr "" + +#: src/gui/exportOptions.cpp:453 +msgid "Tell tildearrow this must be a mistake" +msgstr "" + +#: src/gui/exportOptions.cpp:454 +msgid "" +"yeah, it's a bug. write a bug report in the GitHub page and tell me how did " +"you get here." +msgstr "" + +#: src/gui/speed.cpp:32 src/gui/speed.cpp:102 src/gui/editControls.cpp:532 +#: src/gui/sysConf.cpp:2148 src/gui/guiConst.cpp:232 src/gui/guiConst.cpp:581 +#: src/gui/insEdit.cpp:2028 src/gui/insEdit.cpp:5693 src/gui/insEdit.cpp:6885 +msgid "Speed" +msgstr "" + +#: src/gui/speed.cpp:41 +msgid "Base Tempo##TempoOrHz" +msgstr "" + +#: src/gui/speed.cpp:41 +msgid "Tick Rate##TempoOrHz" +msgstr "" + +#: src/gui/speed.cpp:46 +msgid "click to display tick rate" +msgstr "" + +#: src/gui/speed.cpp:48 +msgid "click to display base tempo" +msgstr "" + +#: src/gui/speed.cpp:80 +msgid "Groove" +msgstr "" + +#: src/gui/speed.cpp:87 +msgid "click for one speed" +msgstr "" + +#: src/gui/speed.cpp:90 +msgid "Speeds" +msgstr "" + +#: src/gui/speed.cpp:99 +msgid "click for groove pattern" +msgstr "" + +#: src/gui/speed.cpp:110 +msgid "click for two (alternating) speeds" +msgstr "" + +#: src/gui/speed.cpp:168 +msgid "Virtual Tempo" +msgstr "" + +#: src/gui/speed.cpp:177 +msgid "Numerator" +msgstr "" + +#: src/gui/speed.cpp:187 +msgid "Denominator (set to base tempo)" +msgstr "" + +#: src/gui/speed.cpp:193 +msgid "Divider" +msgstr "" + +#: src/gui/speed.cpp:208 +msgid "Highlight" +msgstr "" + +#: src/gui/speed.cpp:231 +msgid "Pattern Length" +msgstr "" + +#: src/gui/speed.cpp:245 +msgid "Song Length" +msgstr "" + +#: src/gui/channels.cpp:40 src/gui/editControls.cpp:446 +#: src/gui/guiConst.cpp:601 src/gui/gui.cpp:6280 +msgid "Channels" +msgstr "" + +#: src/gui/channels.cpp:49 +msgid "Pat" +msgstr "" + +#: src/gui/channels.cpp:51 src/gui/editControls.cpp:550 +msgid "Osc" +msgstr "" + +#: src/gui/channels.cpp:53 +msgid "Swap" +msgstr "" + +#: src/gui/channels.cpp:55 src/gui/userPresets.cpp:368 +#: src/gui/effectList.cpp:45 src/gui/subSongs.cpp:125 src/gui/settings.cpp:1060 +#: src/gui/settings.cpp:4383 src/gui/sampleEdit.cpp:195 src/gui/songInfo.cpp:40 +#: src/gui/sysManager.cpp:54 src/gui/insEdit.cpp:5288 +msgid "Name" +msgstr "" + +#: src/gui/channels.cpp:64 +msgid "Show in pattern" +msgstr "" + +#: src/gui/channels.cpp:71 +msgid "Show in per-channel oscilloscope" +msgstr "" + +#: src/gui/channels.cpp:82 +#, c-format +msgid "" +"%s #%d\n" +"(drag to swap channels)" +msgstr "" + +#: src/gui/commandPalette.cpp:51 src/gui/sysPicker.cpp:35 +#: src/gui/newSong.cpp:133 +msgid "Search..." +msgstr "" + +#: src/gui/commandPalette.cpp:54 +msgid "Search recent files..." +msgstr "" + +#: src/gui/commandPalette.cpp:57 +msgid "Search instruments..." +msgstr "" + +#: src/gui/commandPalette.cpp:60 +msgid "Search samples..." +msgstr "" + +#: src/gui/commandPalette.cpp:63 +msgid "Search instruments (to change to)..." +msgstr "" + +#: src/gui/commandPalette.cpp:66 +msgid "Search chip (to add)..." +msgstr "" + +#: src/gui/commandPalette.cpp:93 src/gui/commandPalette.cpp:167 +msgid "- None -" +msgstr "" + +#: src/gui/commandPalette.cpp:123 src/gui/commandPalette.cpp:179 +#: src/gui/commandPalette.cpp:241 +msgid "invalid command palette type" +msgstr "" + +#: src/gui/regView.cpp:30 src/gui/guiConst.cpp:604 +msgid "Register View" +msgstr "" + +#: src/gui/regView.cpp:38 +msgid "- no register pool available" +msgstr "" + +#: src/gui/log.cpp:25 src/gui/effectList.cpp:84 +msgid "ERROR" +msgstr "" + +#: src/gui/log.cpp:26 +msgid "warning" +msgstr "" + +#: src/gui/log.cpp:27 +msgid "info" +msgstr "" + +#: src/gui/log.cpp:28 src/gui/gui.cpp:4513 +msgid "debug" +msgstr "" + +#: src/gui/log.cpp:29 +msgid "trace" +msgstr "" + +#: src/gui/log.cpp:47 src/gui/settings.cpp:4243 src/gui/guiConst.cpp:605 +msgid "Log Viewer" +msgstr "" + +#: src/gui/log.cpp:48 src/gui/editControls.cpp:750 src/gui/editControls.cpp:883 +#: src/gui/editControls.cpp:1000 +msgid "Follow" +msgstr "" + +#: src/gui/log.cpp:50 src/gui/waveEdit.cpp:681 src/gui/insEdit.cpp:50 +msgid "Level" +msgstr "" + +#: src/gui/log.cpp:68 +msgid "time" +msgstr "" + +#: src/gui/log.cpp:70 +msgid "level" +msgstr "" + +#: src/gui/log.cpp:72 +msgid "message" +msgstr "" + +#: src/gui/pattern.cpp:433 src/gui/editControls.cpp:421 +#: src/gui/editControls.cpp:754 src/gui/editControls.cpp:887 +#: src/gui/editControls.cpp:1015 src/gui/settings.cpp:2344 +#: src/gui/settings.cpp:3297 src/gui/settings.cpp:4100 +#: src/gui/findReplace.cpp:794 src/gui/guiConst.cpp:582 src/gui/gui.cpp:5899 +msgid "Pattern" +msgstr "" + +#: src/gui/pattern.cpp:468 +msgid "there aren't any channels to show." +msgstr "" + +#: src/gui/pattern.cpp:492 +msgid "click for pattern options (effect columns/pattern names/visualizer)" +msgstr "" + +#: src/gui/pattern.cpp:504 +msgid "Options:" +msgstr "" + +#: src/gui/pattern.cpp:506 +msgid "Effect columns/collapse" +msgstr "" + +#: src/gui/pattern.cpp:507 +msgid "Pattern names" +msgstr "" + +#: src/gui/pattern.cpp:508 +msgid "Channel group hints" +msgstr "" + +#: src/gui/pattern.cpp:509 +msgid "Visualizer" +msgstr "" + +#: src/gui/pattern.cpp:517 +msgid "Channel status:" +msgstr "" + +#: src/gui/pattern.cpp:519 +msgid "No##_PCS0" +msgstr "" + +#: src/gui/pattern.cpp:522 +msgid "Yes##_PCS1" +msgstr "" + +#: src/gui/pattern.cpp:1420 src/gui/pattern.cpp:1452 +msgid "WARNING!!" +msgstr "" + +#: src/gui/pattern.cpp:1422 src/gui/pattern.cpp:1459 +msgid "this instrument cannot be previewed because" +msgstr "" + +#: src/gui/pattern.cpp:1423 src/gui/pattern.cpp:1466 +msgid "none of the chips can play it" +msgstr "" + +#: src/gui/pattern.cpp:1424 src/gui/pattern.cpp:1473 +msgid "your instrument is in peril!! be careful..." +msgstr "" + +#: src/gui/osc.cpp:169 src/gui/settings.cpp:3710 src/gui/settings.cpp:3937 +msgid "Oscilloscope" +msgstr "" + +#: src/gui/osc.cpp:176 +#, c-format +msgid "zoom: %.2fx (%.1fdB)" +msgstr "" + +#: src/gui/osc.cpp:187 +#, c-format +msgid "window size: %.1fms" +msgstr "" + +#: src/gui/osc.cpp:385 +msgid "(-Infinity)dB" +msgstr "" + +#: src/gui/debugWindow.cpp:66 src/gui/editControls.cpp:610 +msgid "Debug" +msgstr "" + +#: src/gui/debugWindow.cpp:663 +msgid "This is a language test." +msgstr "" + +#: src/gui/debugWindow.cpp:664 +msgid "This is another language test." +msgstr "" + +#: src/gui/debugWindow.cpp:720 +#, c-format +msgid "%d apple" +msgid_plural "%d apples" +msgstr[0] "" +msgstr[1] "" + +#: src/gui/chanOsc.cpp:32 +msgid "None (0%)" +msgstr "" + +#: src/gui/chanOsc.cpp:33 +msgid "None (50%)" +msgstr "" + +#: src/gui/chanOsc.cpp:34 +msgid "None (100%)" +msgstr "" + +#: src/gui/chanOsc.cpp:36 +msgid "Frequency" +msgstr "" + +#: src/gui/chanOsc.cpp:38 src/gui/settings.cpp:1667 src/gui/settings.cpp:3406 +#: src/gui/settings.cpp:4088 +msgid "Channel" +msgstr "" + +#: src/gui/chanOsc.cpp:39 +msgid "Brightness" +msgstr "" + +#: src/gui/chanOsc.cpp:41 +msgid "Note Trigger" +msgstr "" + +#: src/gui/chanOsc.cpp:45 +msgid "Off" +msgstr "" + +#: src/gui/chanOsc.cpp:46 +msgid "Mode 1" +msgstr "" + +#: src/gui/chanOsc.cpp:47 +msgid "Mode 2" +msgstr "" + +#: src/gui/chanOsc.cpp:48 +msgid "Mode 3" +msgstr "" + +#: src/gui/chanOsc.cpp:135 src/gui/guiConst.cpp:607 +msgid "Oscilloscope (per-channel)" +msgstr "" + +#: src/gui/chanOsc.cpp:143 +msgid "Columns" +msgstr "" + +#: src/gui/chanOsc.cpp:152 +msgid "Size (ms)" +msgstr "" + +#: src/gui/chanOsc.cpp:163 +msgid "Automatic columns" +msgstr "" + +#: src/gui/chanOsc.cpp:177 +msgid "Center waveform" +msgstr "" + +#: src/gui/chanOsc.cpp:183 +msgid "Randomize phase on note" +msgstr "" + +#: src/gui/chanOsc.cpp:189 +msgid "Amplitude" +msgstr "" + +#: src/gui/chanOsc.cpp:199 src/gui/settings.cpp:3747 +msgid "Line size" +msgstr "" + +#: src/gui/chanOsc.cpp:211 +msgid "Gradient" +msgstr "" + +#: src/gui/chanOsc.cpp:218 +msgid "error while creating gradient texture!" +msgstr "" + +#: src/gui/chanOsc.cpp:236 +msgid "error while updating gradient texture!" +msgstr "" + +#: src/gui/chanOsc.cpp:292 src/gui/chanOsc.cpp:348 src/gui/settings.cpp:3793 +msgid "Color" +msgstr "" + +#: src/gui/chanOsc.cpp:296 +msgid "Distance" +msgstr "" + +#: src/gui/chanOsc.cpp:305 +msgid "Spread" +msgstr "" + +#: src/gui/chanOsc.cpp:314 src/gui/userPresets.cpp:370 src/gui/subSongs.cpp:121 +#: src/gui/settings.cpp:2281 src/gui/sysManager.cpp:124 +msgid "Remove" +msgstr "" + +#: src/gui/chanOsc.cpp:338 src/gui/settings.cpp:3885 src/gui/settings.cpp:4165 +#: src/gui/settings.cpp:4192 src/gui/settings.cpp:4218 +msgid "Background" +msgstr "" + +#: src/gui/chanOsc.cpp:341 +msgid "X Axis##AxisX" +msgstr "" + +#: src/gui/chanOsc.cpp:342 +msgid "Y Axis##AxisY" +msgstr "" + +#: src/gui/chanOsc.cpp:352 +msgid "Text format:" +msgstr "" + +#: src/gui/chanOsc.cpp:358 +msgid "" +"format guide:\n" +"- %c: channel name\n" +"- %C: channel short name\n" +"- %d: channel number (starting from 0)\n" +"- %D: channel number (starting from 1)\n" +"- %n: channel note\n" +"- %i: instrument name\n" +"- %I: instrument number (decimal)\n" +"- %x: instrument number (hex)\n" +"- %s: chip name\n" +"- %p: chip part number\n" +"- %S: chip ID\n" +"- %v: volume (decimal)\n" +"- %V: volume (percentage)\n" +"- %b: volume (hex)\n" +"- %l: new line\n" +"- %%: percent sign" +msgstr "" + +#: src/gui/chanOsc.cpp:380 +msgid "Text color" +msgstr "" + +#: src/gui/chanOsc.cpp:382 src/gui/xyOsc.cpp:80 src/gui/settings.cpp:6672 +#: src/gui/tutorial.cpp:689 src/gui/gui.cpp:5639 src/gui/gui.cpp:6055 +#: src/gui/gui.cpp:6223 src/gui/gui.cpp:6322 src/gui/gui.cpp:6371 +msgid "OK" +msgstr "" + +#: src/gui/chanOsc.cpp:400 +msgid "creating chan osc work pool" +msgstr "" + +#: src/gui/chanOsc.cpp:429 +#, c-format +msgid "creating FFT plan for channel %d" +msgstr "" + +#: src/gui/chanOsc.cpp:436 +msgid "failed to create plan!" +msgstr "" + +#: src/gui/chanOsc.cpp:438 +msgid "failed to create inverse plan!" +msgstr "" + +#: src/gui/chanOsc.cpp:440 +msgid "failed to create FFT buffers" +msgstr "" + +#: src/gui/chanOsc.cpp:585 +msgid "Error!" +msgstr "" + +#: src/gui/editControls.cpp:47 src/gui/sampleEdit.cpp:1736 src/gui/gui.cpp:2733 +#: src/gui/insEdit.cpp:363 +msgid "cut" +msgstr "" + +#: src/gui/editControls.cpp:48 src/gui/sampleEdit.cpp:1740 src/gui/gui.cpp:2734 +#: src/gui/insEdit.cpp:7538 +msgid "copy" +msgstr "" + +#: src/gui/editControls.cpp:49 src/gui/sampleEdit.cpp:1744 src/gui/gui.cpp:2735 +#: src/gui/gui.cpp:2788 src/gui/insEdit.cpp:7543 +msgid "paste" +msgstr "" + +#: src/gui/editControls.cpp:51 +msgid "" +"select\n" +"all" +msgstr "" + +#: src/gui/editControls.cpp:52 +msgid "piano" +msgstr "" + +#: src/gui/editControls.cpp:53 src/gui/gui.cpp:4429 +msgid "undo" +msgstr "" + +#: src/gui/editControls.cpp:54 src/gui/gui.cpp:4430 +msgid "redo" +msgstr "" + +#: src/gui/editControls.cpp:57 +msgid "" +"paste\n" +"mix" +msgstr "" + +#: src/gui/editControls.cpp:58 +msgid "" +"paste\n" +"mix bg" +msgstr "" + +#: src/gui/editControls.cpp:59 +msgid "" +"paste\n" +"ins" +msgstr "" + +#: src/gui/editControls.cpp:60 +msgid "" +"paste\n" +"ins bg" +msgstr "" + +#: src/gui/editControls.cpp:61 +msgid "" +"paste\n" +"flood" +msgstr "" + +#: src/gui/editControls.cpp:62 +msgid "" +"paste\n" +"overflow" +msgstr "" + +#: src/gui/editControls.cpp:63 +msgid "" +"transpose\n" +"notes" +msgstr "" + +#: src/gui/editControls.cpp:64 +msgid "" +"transpose\n" +"values" +msgstr "" + +#: src/gui/editControls.cpp:67 +msgid "" +"change\n" +"ins" +msgstr "" + +#: src/gui/editControls.cpp:68 +msgid "" +"find/\n" +"replace" +msgstr "" + +#: src/gui/editControls.cpp:69 src/gui/gui.cpp:3063 +msgid "collapse" +msgstr "" + +#: src/gui/editControls.cpp:70 src/gui/gui.cpp:3064 +msgid "expand" +msgstr "" + +#: src/gui/editControls.cpp:71 src/gui/gui.cpp:2820 +msgid "flip" +msgstr "" + +#: src/gui/editControls.cpp:72 src/gui/insEdit.cpp:430 +msgid "invert" +msgstr "" + +#: src/gui/editControls.cpp:73 src/gui/gui.cpp:2800 src/gui/gui.cpp:2960 +msgid "interpolate" +msgstr "" + +#: src/gui/editControls.cpp:74 src/gui/gui.cpp:2812 src/gui/insEdit.cpp:7610 +msgid "scale" +msgstr "" + +#: src/gui/editControls.cpp:77 src/gui/gui.cpp:2804 +msgid "fade" +msgstr "" + +#: src/gui/editControls.cpp:78 src/gui/gui.cpp:2816 src/gui/insEdit.cpp:7639 +msgid "randomize" +msgstr "" + +#: src/gui/editControls.cpp:79 +msgid "opmask" +msgstr "" + +#: src/gui/editControls.cpp:80 +msgid "" +"scroll\n" +"mode" +msgstr "" + +#: src/gui/editControls.cpp:81 +msgid "" +"input\n" +"latch" +msgstr "" + +#: src/gui/editControls.cpp:82 +msgid "" +"set\n" +"latch" +msgstr "" + +#: src/gui/editControls.cpp:83 +msgid "" +"clear\n" +"latch" +msgstr "" + +#: src/gui/editControls.cpp:84 src/gui/findReplace.cpp:43 +#: src/gui/insEdit.cpp:7557 +msgid "clear" +msgstr "" + +#: src/gui/editControls.cpp:333 +msgid "Mobile Controls" +msgstr "" + +#: src/gui/editControls.cpp:408 +msgid "Mobile Menu" +msgstr "" + +#: src/gui/editControls.cpp:425 src/gui/editControls.cpp:752 +#: src/gui/editControls.cpp:885 src/gui/editControls.cpp:1007 +#: src/gui/settings.cpp:2485 src/gui/settings.cpp:3271 +#: src/gui/settings.cpp:3975 src/gui/orders.cpp:232 src/gui/guiConst.cpp:577 +#: src/gui/gui.cpp:5888 +msgid "Orders" +msgstr "" + +#: src/gui/editControls.cpp:429 src/gui/findReplace.cpp:669 +#: src/gui/findReplace.cpp:914 +msgid "Ins" +msgstr "" + +#: src/gui/editControls.cpp:442 src/gui/findReplace.cpp:788 +#: src/gui/guiConst.cpp:230 +msgid "Song" +msgstr "" + +#: src/gui/editControls.cpp:450 src/gui/sampleEdit.cpp:494 +msgid "Chips" +msgstr "" + +#: src/gui/editControls.cpp:458 src/gui/settings.cpp:2117 +#: src/gui/settings.cpp:3934 src/gui/settings.cpp:4018 +#: src/gui/compatFlags.cpp:319 +msgid "Other" +msgstr "" + +#: src/gui/editControls.cpp:487 src/gui/guiConst.cpp:531 +msgid "New" +msgstr "" + +#: src/gui/editControls.cpp:491 src/gui/doAction.cpp:38 src/gui/gui.cpp:4194 +msgid "Unsaved changes! Save changes before creating a new song?" +msgstr "" + +#: src/gui/editControls.cpp:507 +msgid "Save as..." +msgstr "" + +#: src/gui/editControls.cpp:516 src/gui/gui.cpp:1680 +msgid "Restore Backup" +msgstr "" + +#: src/gui/editControls.cpp:524 +msgid "Song Info" +msgstr "" + +#: src/gui/editControls.cpp:528 src/gui/subSongs.cpp:17 +#: src/gui/guiConst.cpp:608 +msgid "Subsongs" +msgstr "" + +#: src/gui/editControls.cpp:541 +msgid "Channels here..." +msgstr "" + +#: src/gui/editControls.cpp:544 +msgid "Chips here..." +msgstr "" + +#: src/gui/editControls.cpp:547 +msgid "What the hell..." +msgstr "" + +#: src/gui/editControls.cpp:554 +msgid "ChanOsc" +msgstr "" + +#: src/gui/editControls.cpp:558 +msgid "RegView" +msgstr "" + +#: src/gui/editControls.cpp:562 +msgid "Stats" +msgstr "" + +#: src/gui/editControls.cpp:566 src/gui/guiConst.cpp:611 src/gui/grooves.cpp:35 +msgid "Grooves" +msgstr "" + +#: src/gui/editControls.cpp:569 +msgid "Compat Flags" +msgstr "" + +#: src/gui/editControls.cpp:573 +msgid "XYOsc" +msgstr "" + +#: src/gui/editControls.cpp:577 +msgid "Meter" +msgstr "" + +#: src/gui/editControls.cpp:581 +msgid "Memory" +msgstr "" + +#: src/gui/editControls.cpp:585 +msgid "CV" +msgstr "" + +#: src/gui/editControls.cpp:589 +msgid "Presets" +msgstr "" + +#: src/gui/editControls.cpp:593 +msgid "PatManager" +msgstr "" + +#: src/gui/editControls.cpp:599 src/gui/guiConst.cpp:564 +msgid "Panic" +msgstr "" + +#: src/gui/editControls.cpp:601 src/gui/settings.cpp:560 +#: src/gui/guiConst.cpp:589 src/gui/guiConst.cpp:591 src/gui/gui.cpp:4439 +msgid "Settings" +msgstr "" + +#: src/gui/editControls.cpp:606 +msgid "Log" +msgstr "" + +#: src/gui/editControls.cpp:614 src/gui/guiConst.cpp:587 +msgid "About" +msgstr "" + +#: src/gui/editControls.cpp:619 +msgid "Switch to Desktop Mode" +msgstr "" + +#: src/gui/editControls.cpp:673 src/gui/editControls.cpp:784 +#: src/gui/editControls.cpp:904 +msgid "Play/Edit Controls" +msgstr "" + +#: src/gui/editControls.cpp:681 src/gui/editControls.cpp:842 +#: src/gui/editControls.cpp:959 src/gui/editControls.cpp:1125 +msgid "Octave" +msgstr "" + +#: src/gui/editControls.cpp:698 src/gui/editControls.cpp:857 +msgid "Coarse Step" +msgstr "" + +#: src/gui/editControls.cpp:698 src/gui/editControls.cpp:857 +msgid "Edit Step" +msgstr "" + +#: src/gui/editControls.cpp:731 src/gui/editControls.cpp:797 +#: src/gui/editControls.cpp:911 src/gui/editControls.cpp:1048 +#: src/gui/guiConst.cpp:545 +msgid "Play" +msgstr "" + +#: src/gui/editControls.cpp:739 src/gui/editControls.cpp:789 +#: src/gui/editControls.cpp:918 src/gui/editControls.cpp:1040 +#: src/gui/guiConst.cpp:546 +msgid "Stop" +msgstr "" + +#: src/gui/editControls.cpp:742 src/gui/editControls.cpp:826 +#: src/gui/editControls.cpp:943 src/gui/editControls.cpp:1082 +#: src/gui/gui.cpp:4426 +msgid "Edit" +msgstr "" + +#: src/gui/editControls.cpp:757 src/gui/editControls.cpp:816 +#: src/gui/editControls.cpp:934 src/gui/editControls.cpp:1104 +msgid "Repeat pattern" +msgstr "" + +#: src/gui/editControls.cpp:766 src/gui/editControls.cpp:806 +#: src/gui/editControls.cpp:925 src/gui/editControls.cpp:1073 +msgid "Step one row" +msgstr "" + +#: src/gui/editControls.cpp:771 src/gui/editControls.cpp:891 +#: src/gui/editControls.cpp:1020 src/gui/editControls.cpp:1110 +msgid "Poly##PolyInput" +msgstr "" + +#: src/gui/editControls.cpp:771 src/gui/editControls.cpp:891 +#: src/gui/editControls.cpp:1020 src/gui/editControls.cpp:1110 +msgid "Mono##PolyInput" +msgstr "" + +#: src/gui/editControls.cpp:776 src/gui/editControls.cpp:896 +#: src/gui/editControls.cpp:1025 src/gui/editControls.cpp:1115 +msgid "Polyphony" +msgstr "" + +#: src/gui/editControls.cpp:957 +msgid "Oct." +msgstr "" + +#: src/gui/editControls.cpp:974 src/gui/editControls.cpp:1142 +msgid "Coarse" +msgstr "" + +#: src/gui/editControls.cpp:974 src/gui/editControls.cpp:1142 +msgid "Step" +msgstr "" + +#: src/gui/editControls.cpp:998 +msgid "Foll." +msgstr "" + +#: src/gui/editControls.cpp:1003 +msgid "Ord##FollowOrders" +msgstr "" + +#: src/gui/editControls.cpp:1011 +msgid "Pat##FollowPattern" +msgstr "" + +#: src/gui/editControls.cpp:1033 +msgid "Play Controls" +msgstr "" + +#: src/gui/editControls.cpp:1057 +msgid "Play from the beginning of this pattern" +msgstr "" + +#: src/gui/editControls.cpp:1065 +msgid "Repeat from the beginning of this pattern" +msgstr "" + +#: src/gui/editControls.cpp:1122 src/gui/guiConst.cpp:576 +msgid "Edit Controls" +msgstr "" + +#: src/gui/editControls.cpp:1169 src/gui/guiConst.cpp:560 +msgid "Follow orders" +msgstr "" + +#: src/gui/editControls.cpp:1170 src/gui/guiConst.cpp:561 +msgid "Follow pattern" +msgstr "" + +#: src/gui/songNotes.cpp:32 src/gui/guiConst.cpp:600 +msgid "Song Comments" +msgstr "" + +#: src/gui/util.cpp:93 +msgid "" +msgstr "" + +#: src/gui/util.cpp:97 +msgid "Ctrl-" +msgstr "" + +#: src/gui/util.cpp:99 +msgid "Alt-" +msgstr "" + +#: src/gui/util.cpp:100 +msgid "Shift-" +msgstr "" + +#: src/gui/stats.cpp:31 src/gui/guiConst.cpp:597 +msgid "Statistics" +msgstr "" + +#: src/gui/stats.cpp:36 +msgid "Audio load" +msgstr "" + +#: src/gui/xyOsc.cpp:40 src/gui/guiConst.cpp:612 +msgid "Oscilloscope (X-Y)" +msgstr "" + +#: src/gui/xyOsc.cpp:45 +msgid "X Channel" +msgstr "" + +#: src/gui/xyOsc.cpp:51 +msgid "Invert##X" +msgstr "" + +#: src/gui/xyOsc.cpp:52 +msgid "Y Channel" +msgstr "" + +#: src/gui/xyOsc.cpp:58 +msgid "Invert##Y" +msgstr "" + +#: src/gui/xyOsc.cpp:59 src/gui/sampleEdit.cpp:1353 +msgid "Zoom" +msgstr "" + +#: src/gui/xyOsc.cpp:71 +msgid "Decay Time (ms)" +msgstr "" + +#: src/gui/xyOsc.cpp:74 +msgid "Intensity" +msgstr "" + +#: src/gui/xyOsc.cpp:77 +msgid "Line Thickness" +msgstr "" + +#: src/gui/xyOsc.cpp:213 +msgid "(-Infinity)dB,(-Infinity)dB" +msgstr "" + +#: src/gui/xyOsc.cpp:215 +#, c-format +msgid "(-Infinity)dB,%.1fdB" +msgstr "" + +#: src/gui/xyOsc.cpp:217 +#, c-format +msgid "%.1fdB,(-Infinity)dB" +msgstr "" + +#: src/gui/xyOsc.cpp:219 +#, c-format +msgid "%.1fdB,%.1fdB" +msgstr "" + +#: src/gui/sysConf.cpp:49 src/gui/sysConf.cpp:121 src/gui/sysConf.cpp:486 +#: src/gui/sysConf.cpp:604 src/gui/sysConf.cpp:647 src/gui/sysConf.cpp:684 +#: src/gui/sysConf.cpp:843 src/gui/sysConf.cpp:1098 src/gui/sysConf.cpp:1181 +#: src/gui/sysConf.cpp:1220 src/gui/sysConf.cpp:1294 src/gui/sysConf.cpp:1380 +#: src/gui/sysConf.cpp:1444 src/gui/sysConf.cpp:1482 src/gui/sysConf.cpp:1572 +#: src/gui/sysConf.cpp:1668 src/gui/sysConf.cpp:1716 src/gui/sysConf.cpp:1757 +#: src/gui/sysConf.cpp:1810 src/gui/sysConf.cpp:2284 src/gui/sysConf.cpp:2307 +msgid "Clock rate:" +msgstr "" + +#: src/gui/sysConf.cpp:73 src/gui/sysConf.cpp:152 src/gui/sysConf.cpp:911 +#: src/gui/sysConf.cpp:1459 src/gui/sysConf.cpp:1783 +msgid "Chip type:" +msgstr "" + +#: src/gui/sysConf.cpp:75 +msgid "YM3438 (9-bit DAC)" +msgstr "" + +#: src/gui/sysConf.cpp:79 +msgid "YM2612 (9-bit DAC with distortion)" +msgstr "" + +#: src/gui/sysConf.cpp:83 +msgid "YMF276 (external DAC)" +msgstr "" + +#: src/gui/sysConf.cpp:90 src/gui/sysConf.cpp:804 src/gui/sysConf.cpp:1350 +#: src/gui/sysConf.cpp:1420 +msgid "Disable ExtCh FM macros (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:93 src/gui/sysConf.cpp:807 src/gui/sysConf.cpp:1353 +#: src/gui/sysConf.cpp:1423 +msgid "Ins change in ExtCh operator 2-4 affects FB (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:99 +msgid "Modified sine wave (joke)" +msgstr "" + +#: src/gui/sysConf.cpp:123 src/gui/sysConf.cpp:1296 src/gui/sysConf.cpp:1718 +#: src/gui/sysConf.cpp:2286 +msgid "3.58MHz (NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:127 +msgid "3.55MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:131 +msgid "4MHz (BBC Micro)" +msgstr "" + +#: src/gui/sysConf.cpp:135 +msgid "1.79MHz (Half NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:139 +msgid "3MHz (Exed Exes)" +msgstr "" + +#: src/gui/sysConf.cpp:143 +msgid "2MHz (Sega System 1)" +msgstr "" + +#: src/gui/sysConf.cpp:147 +msgid "447KHz (TI-99/4A)" +msgstr "" + +#: src/gui/sysConf.cpp:154 +msgid "Sega VDP/Master System" +msgstr "" + +#: src/gui/sysConf.cpp:162 +msgid "TI SN76489 with Atari-like short noise" +msgstr "" + +#: src/gui/sysConf.cpp:166 +msgid "Game Gear" +msgstr "" + +#: src/gui/sysConf.cpp:170 +msgid "TI SN76489A" +msgstr "" + +#: src/gui/sysConf.cpp:174 +msgid "TI SN76496" +msgstr "" + +#: src/gui/sysConf.cpp:178 +msgid "NCR 8496" +msgstr "" + +#: src/gui/sysConf.cpp:182 +msgid "Tandy PSSJ 3-voice sound" +msgstr "" + +#: src/gui/sysConf.cpp:186 +msgid "TI SN94624" +msgstr "" + +#: src/gui/sysConf.cpp:190 +msgid "TI SN76494" +msgstr "" + +#: src/gui/sysConf.cpp:196 +msgid "Disable noise period change phase reset" +msgstr "" + +#: src/gui/sysConf.cpp:200 src/gui/sysConf.cpp:2190 +msgid "Disable easy period to note mapping on upper octaves" +msgstr "" + +#: src/gui/sysConf.cpp:219 src/gui/sysConf.cpp:583 +msgid "Pseudo-PAL" +msgstr "" + +#: src/gui/sysConf.cpp:222 src/gui/sysConf.cpp:342 +msgid "Disable anti-click" +msgstr "" + +#: src/gui/sysConf.cpp:225 src/gui/sysConf.cpp:345 +msgid "Chip revision:" +msgstr "" + +#: src/gui/sysConf.cpp:227 +msgid "HuC6280 (original)" +msgstr "" + +#: src/gui/sysConf.cpp:231 +msgid "HuC6280A (SuperGrafx)" +msgstr "" + +#: src/gui/sysConf.cpp:257 +msgid "CPU rate:" +msgstr "" + +#: src/gui/sysConf.cpp:259 +msgid "6.18MHz (NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:263 +msgid "5.95MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:268 +msgid "Sample memory:" +msgstr "" + +#: src/gui/sysConf.cpp:270 +msgid "8K (rev A/B/E)" +msgstr "" + +#: src/gui/sysConf.cpp:274 +msgid "64K (rev D/F)" +msgstr "" + +#: src/gui/sysConf.cpp:279 +msgid "DAC resolution:" +msgstr "" + +#: src/gui/sysConf.cpp:281 +msgid "16-bit (rev A/B/D/F)" +msgstr "" + +#: src/gui/sysConf.cpp:285 +msgid "8-bit + TDM (rev C/E)" +msgstr "" + +#: src/gui/sysConf.cpp:290 src/gui/sysConf.cpp:1931 +msgid "Enable echo" +msgstr "" + +#: src/gui/sysConf.cpp:293 +msgid "Swap echo channels" +msgstr "" + +#: src/gui/sysConf.cpp:296 src/gui/sysConf.cpp:1151 +msgid "Echo delay:" +msgstr "" + +#: src/gui/sysConf.cpp:302 +msgid "Echo resolution:" +msgstr "" + +#: src/gui/sysConf.cpp:308 src/gui/sysConf.cpp:1159 +msgid "Echo feedback:" +msgstr "" + +#: src/gui/sysConf.cpp:314 src/gui/sysConf.cpp:1967 +msgid "Echo volume:" +msgstr "" + +#: src/gui/sysConf.cpp:347 +msgid "Original (DMG)" +msgstr "" + +#: src/gui/sysConf.cpp:351 +msgid "Game Boy Color (rev C)" +msgstr "" + +#: src/gui/sysConf.cpp:355 +msgid "Game Boy Color (rev E)" +msgstr "" + +#: src/gui/sysConf.cpp:359 +msgid "Game Boy Advance" +msgstr "" + +#: src/gui/sysConf.cpp:364 +msgid "Wave channel orientation:" +msgstr "" + +#: src/gui/sysConf.cpp:367 src/gui/compatFlags.cpp:298 src/gui/gui.cpp:6067 +#: src/gui/insEdit.cpp:217 src/gui/insEdit.cpp:231 +msgid "Normal" +msgstr "" + +#: src/gui/sysConf.cpp:371 +msgid "Inverted" +msgstr "" + +#: src/gui/sysConf.cpp:378 +msgid "Exact data (inverted)" +msgstr "" + +#: src/gui/sysConf.cpp:382 +msgid "Exact output (normal)" +msgstr "" + +#: src/gui/sysConf.cpp:388 +msgid "" +"Pretty please one more compat flag when I use arpeggio and my sound length" +msgstr "" + +#: src/gui/sysConf.cpp:405 src/gui/sysConf.cpp:438 +msgid "DAC bit depth (reduces output rate):" +msgstr "" + +#: src/gui/sysConf.cpp:426 src/gui/sysConf.cpp:1268 src/gui/sysConf.cpp:1919 +msgid "Volume scale:" +msgstr "" + +#: src/gui/sysConf.cpp:432 +msgid "Mix buffers (allows longer echo delay):" +msgstr "" + +#: src/gui/sysConf.cpp:444 +msgid "Channel limit:" +msgstr "" + +#: src/gui/sysConf.cpp:450 +msgid "Sample rate:" +msgstr "" + +#: src/gui/sysConf.cpp:460 +#, c-format +msgid "Actual sample rate: %d Hz" +msgstr "" + +#: src/gui/sysConf.cpp:462 +#, c-format +msgid "Max mixer CPU usage: %.0f%%" +msgstr "" + +#: src/gui/sysConf.cpp:488 +msgid "NTSC (3.58MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:492 src/gui/sysConf.cpp:557 +msgid "PAL (3.55MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:496 +msgid "Arcade (4MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:500 +msgid "Half NTSC (1.79MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:506 +msgid "Patch set:" +msgstr "" + +#: src/gui/sysConf.cpp:528 +msgid "Ignore top/hi-hat frequency changes" +msgstr "" + +#: src/gui/sysConf.cpp:531 +msgid "Apply fixed frequency to all drums at once" +msgstr "" + +#: src/gui/sysConf.cpp:553 +msgid "NTSC/X16 (3.58MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:561 +msgid "X1/X68000 (4MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:567 src/gui/sysConf.cpp:587 +msgid "Broken pitch macro/slides (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:607 src/gui/sysConf.cpp:650 src/gui/sysConf.cpp:1222 +#: src/gui/sysConf.cpp:2310 +msgid "NTSC (1.79MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:611 src/gui/sysConf.cpp:654 src/gui/sysConf.cpp:1226 +msgid "PAL (1.67MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:615 src/gui/sysConf.cpp:658 src/gui/sysConf.cpp:1230 +msgid "Dendy (1.77MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:621 +msgid "DPCM channel mode:" +msgstr "" + +#: src/gui/sysConf.cpp:624 +msgid "DPCM (muffled samples; low CPU usage)" +msgstr "" + +#: src/gui/sysConf.cpp:628 +msgid "PCM (crisp samples; high CPU usage)" +msgstr "" + +#: src/gui/sysConf.cpp:687 +msgid "NTSC (1.02MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:691 +msgid "PAL (0.99MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:695 +msgid "SSI 2001 (0.89MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:701 src/gui/sysConf.cpp:2320 +msgid "Global parameter priority:" +msgstr "" + +#: src/gui/sysConf.cpp:704 src/gui/sysConf.cpp:2323 +msgid "Left to right" +msgstr "" + +#: src/gui/sysConf.cpp:708 src/gui/sysConf.cpp:2327 +msgid "Last used channel" +msgstr "" + +#: src/gui/sysConf.cpp:714 +msgid "Hard reset envelope:" +msgstr "" + +#: src/gui/sysConf.cpp:716 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:1920 +#: src/gui/insEdit.cpp:6955 src/gui/insEdit.cpp:7481 +msgid "Attack" +msgstr "" + +#: src/gui/sysConf.cpp:721 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:1960 +#: src/gui/insEdit.cpp:6956 src/gui/insEdit.cpp:7482 +msgid "Decay" +msgstr "" + +#: src/gui/sysConf.cpp:726 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:1929 +#: src/gui/insEdit.cpp:6957 src/gui/insEdit.cpp:7483 +msgid "Sustain" +msgstr "" + +#: src/gui/sysConf.cpp:731 src/gui/settings.cpp:3987 src/gui/insEdit.cpp:50 +#: src/gui/insEdit.cpp:604 src/gui/insEdit.cpp:1983 src/gui/insEdit.cpp:6958 +#: src/gui/insEdit.cpp:7484 +msgid "Release" +msgstr "" + +#: src/gui/sysConf.cpp:737 +msgid "Envelope reset time:" +msgstr "" + +#: src/gui/sysConf.cpp:747 +msgid "" +"- 0 disables envelope reset. not recommended!\n" +"- 1 may trigger SID envelope bugs.\n" +"- values that are too high may result in notes being skipped." +msgstr "" + +#: src/gui/sysConf.cpp:749 +msgid "Disable 1Exy env update (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:753 +msgid "Relative duty and cutoff macros are coarse (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:757 +msgid "Cutoff macro race conditions (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:793 +msgid "8MHz (Neo Geo MVS)" +msgstr "" + +#: src/gui/sysConf.cpp:797 +msgid "8.06MHz (Neo Geo AES)" +msgstr "" + +#: src/gui/sysConf.cpp:812 src/gui/sysConf.cpp:1337 src/gui/sysConf.cpp:1407 +msgid "SSG Volume" +msgstr "" + +#: src/gui/sysConf.cpp:818 src/gui/sysConf.cpp:1413 +msgid "FM/ADPCM Volume" +msgstr "" + +#: src/gui/sysConf.cpp:845 +msgid "1.79MHz (ZX Spectrum NTSC/MSX)" +msgstr "" + +#: src/gui/sysConf.cpp:849 +msgid "1.77MHz (ZX Spectrum PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:853 +msgid "0.83MHz (Pre-divided Sunsoft 5B on PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:857 +msgid "0.89MHz (Pre-divided Sunsoft 5B)" +msgstr "" + +#: src/gui/sysConf.cpp:861 +msgid "1MHz (Amstrad CPC)" +msgstr "" + +#: src/gui/sysConf.cpp:865 +msgid "1.10MHz (Gamate/VIC-20 PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:869 +msgid "1.25MHz (Mag Max)" +msgstr "" + +#: src/gui/sysConf.cpp:873 +msgid "1.5MHz (Vectrex)" +msgstr "" + +#: src/gui/sysConf.cpp:877 +msgid "1.536MHz (Kyugo)" +msgstr "" + +#: src/gui/sysConf.cpp:881 +msgid "1.67MHz (?)" +msgstr "" + +#: src/gui/sysConf.cpp:885 +msgid "1.75MHz (ZX Spectrum 48K)" +msgstr "" + +#: src/gui/sysConf.cpp:889 +msgid "1.99MHz (PC-88)" +msgstr "" + +#: src/gui/sysConf.cpp:893 +msgid "2MHz (Atari ST/Sharp X1)" +msgstr "" + +#: src/gui/sysConf.cpp:897 +msgid "2^21Hz (Game Boy)" +msgstr "" + +#: src/gui/sysConf.cpp:901 +msgid "3.58MHz (Darky)" +msgstr "" + +#: src/gui/sysConf.cpp:905 +msgid "3.6MHz (Darky)" +msgstr "" + +#: src/gui/sysConf.cpp:917 +msgid "YM2149(F)" +msgstr "" + +#: src/gui/sysConf.cpp:921 +msgid "Sunsoft 5B" +msgstr "" + +#: src/gui/sysConf.cpp:925 +msgid "AY-3-8914" +msgstr "" + +#: src/gui/sysConf.cpp:931 +msgid "note: AY-3-8914 is not supported by the VGM format!" +msgstr "" + +#: src/gui/sysConf.cpp:935 +msgid "Stereo##_AY_STEREO" +msgstr "" + +#: src/gui/sysConf.cpp:940 +msgid "Separation" +msgstr "" + +#: src/gui/sysConf.cpp:949 +msgid "Half Clock divider##_AY_CLKSEL" +msgstr "" + +#: src/gui/sysConf.cpp:971 +msgid "SAM Coupé (8MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:975 +msgid "NTSC (7.15MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:979 +msgid "PAL (7.09MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:999 +msgid "Stereo separation:" +msgstr "" + +#: src/gui/sysConf.cpp:1006 src/gui/sysConf.cpp:2412 +msgid "Model:" +msgstr "" + +#: src/gui/sysConf.cpp:1008 +msgid "Amiga 500 (OCS)" +msgstr "" + +#: src/gui/sysConf.cpp:1012 +msgid "Amiga 1200 (AGA)" +msgstr "" + +#: src/gui/sysConf.cpp:1018 +msgid "Chip memory:" +msgstr "" + +#: src/gui/sysConf.cpp:1020 +msgid "2MB (ECS/AGA max)" +msgstr "" + +#: src/gui/sysConf.cpp:1030 +msgid "512KB (OCS max)" +msgstr "" + +#: src/gui/sysConf.cpp:1043 src/gui/sysConf.cpp:1081 src/gui/sysConf.cpp:2395 +#: src/gui/sysConf.cpp:2449 +msgid "PAL" +msgstr "" + +#: src/gui/sysConf.cpp:1046 +msgid "Bypass frequency limits" +msgstr "" + +#: src/gui/sysConf.cpp:1065 +msgid "Mixing mode:" +msgstr "" + +#: src/gui/sysConf.cpp:1067 src/gui/settings.cpp:3724 +msgid "Mono" +msgstr "" + +#: src/gui/sysConf.cpp:1071 +msgid "Mono (no distortion)" +msgstr "" + +#: src/gui/sysConf.cpp:1075 src/gui/sysConf.cpp:1197 src/gui/sysConf.cpp:1864 +#: src/gui/sysConf.cpp:2204 +msgid "Stereo" +msgstr "" + +#: src/gui/sysConf.cpp:1100 +msgid "1.19MHz (PC)" +msgstr "" + +#: src/gui/sysConf.cpp:1104 +msgid "1.99MHz (PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1108 +msgid "2.46MHz (PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1114 +msgid "Speaker type:" +msgstr "" + +#: src/gui/sysConf.cpp:1116 +msgid "Unfiltered" +msgstr "" + +#: src/gui/sysConf.cpp:1120 +msgid "Cone" +msgstr "" + +#: src/gui/sysConf.cpp:1124 +msgid "Piezo" +msgstr "" + +#: src/gui/sysConf.cpp:1128 +msgid "Use system beeper (Linux only!)" +msgstr "" + +#: src/gui/sysConf.cpp:1134 +msgid "Reset phase on frequency change" +msgstr "" + +#: src/gui/sysConf.cpp:1183 +msgid "16MHz (Seta 1)" +msgstr "" + +#: src/gui/sysConf.cpp:1187 +msgid "16.67MHz (Seta 2)" +msgstr "" + +#: src/gui/sysConf.cpp:1191 src/gui/sysConf.cpp:1759 +msgid "14.32MHz (NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:1201 +msgid "Bankswitched (Seta 2)" +msgstr "" + +#: src/gui/sysConf.cpp:1235 src/gui/sysConf.cpp:1261 +msgid "Initial channel limit:" +msgstr "" + +#: src/gui/sysConf.cpp:1241 src/gui/sysConf.cpp:2398 +msgid "Disable hissing" +msgstr "" + +#: src/gui/sysConf.cpp:1244 +msgid "Scale frequency to wave length" +msgstr "" + +#: src/gui/sysConf.cpp:1300 src/gui/sysConf.cpp:1722 +msgid "3.54MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:1304 src/gui/sysConf.cpp:1726 src/gui/sysConf.cpp:2290 +msgid "4MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1308 src/gui/sysConf.cpp:1730 +msgid "3MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1312 src/gui/sysConf.cpp:1734 +msgid "3.9936MHz (PC-88/PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1316 +msgid "1.5MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1321 src/gui/sysConf.cpp:1391 src/gui/sysConf.cpp:1639 +#: src/gui/sysConf.cpp:1852 +msgid "Output rate:" +msgstr "" + +#: src/gui/sysConf.cpp:1323 src/gui/sysConf.cpp:1397 +msgid "FM: clock / 72, SSG: clock / 16" +msgstr "" + +#: src/gui/sysConf.cpp:1327 +msgid "FM: clock / 36, SSG: clock / 8" +msgstr "" + +#: src/gui/sysConf.cpp:1331 +msgid "FM: clock / 24, SSG: clock / 4" +msgstr "" + +#: src/gui/sysConf.cpp:1343 +msgid "FM Volume" +msgstr "" + +#: src/gui/sysConf.cpp:1382 +msgid "8MHz (Arcade)" +msgstr "" + +#: src/gui/sysConf.cpp:1386 +msgid "7.987MHz (PC-88/PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1393 +msgid "FM: clock / 144, SSG: clock / 32" +msgstr "" + +#: src/gui/sysConf.cpp:1401 +msgid "FM: clock / 48, SSG: clock / 8" +msgstr "" + +#: src/gui/sysConf.cpp:1446 +msgid "8MHz (FM Towns)" +msgstr "" + +#: src/gui/sysConf.cpp:1450 +msgid "10MHz (Sega System 18)" +msgstr "" + +#: src/gui/sysConf.cpp:1454 +msgid "12.5MHz (Sega CD/System 32)" +msgstr "" + +#: src/gui/sysConf.cpp:1461 +msgid "RF5C68 (10-bit output)" +msgstr "" + +#: src/gui/sysConf.cpp:1465 +msgid "RF5C164 (16-bit output)" +msgstr "" + +#: src/gui/sysConf.cpp:1520 +msgid "Sample rate table:" +msgstr "" + +#: src/gui/sysConf.cpp:1524 +msgid "divider \\ clock" +msgstr "" + +#: src/gui/sysConf.cpp:1526 +msgid "full" +msgstr "" + +#: src/gui/sysConf.cpp:1528 +msgid "half" +msgstr "" + +#: src/gui/sysConf.cpp:1641 +msgid "clock / 132" +msgstr "" + +#: src/gui/sysConf.cpp:1645 +msgid "clock / 165" +msgstr "" + +#: src/gui/sysConf.cpp:1651 +msgid "Bankswitched (NMK112)" +msgstr "" + +#: src/gui/sysConf.cpp:1670 +msgid "1.79MHz (NTSC/MSX)" +msgstr "" + +#: src/gui/sysConf.cpp:1674 +msgid "1.77MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:1678 +msgid "1.5MHz (Arcade)" +msgstr "" + +#: src/gui/sysConf.cpp:1682 +msgid "2MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1697 +msgid "Consistent frequency across all duties" +msgstr "" + +#: src/gui/sysConf.cpp:1704 +msgid "note: only works for an initial LFSR value of 0!" +msgstr "" + +#: src/gui/sysConf.cpp:1738 +msgid "3.5MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1763 +msgid "14.19MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:1767 +msgid "14MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1771 +msgid "16MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1775 +msgid "15MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1779 +msgid "33.8688MHz (OPL3-L)" +msgstr "" + +#: src/gui/sysConf.cpp:1784 +msgid "OPL3 (YMF262)" +msgstr "" + +#: src/gui/sysConf.cpp:1788 +msgid "OPL3-L (YMF289B)" +msgstr "" + +#: src/gui/sysConf.cpp:1794 +msgid "Compatible panning (0800)" +msgstr "" + +#: src/gui/sysConf.cpp:1858 +msgid "Output bit depth:" +msgstr "" + +#: src/gui/sysConf.cpp:1868 +msgid "Interpolation:" +msgstr "" + +#: src/gui/sysConf.cpp:1874 src/gui/waveEdit.cpp:38 +msgid "Linear" +msgstr "" + +#: src/gui/sysConf.cpp:1878 src/gui/waveEdit.cpp:40 +msgid "Cubic" +msgstr "" + +#: src/gui/sysConf.cpp:1882 +msgid "Sinc" +msgstr "" + +#: src/gui/sysConf.cpp:1920 +msgid "Left##VolScaleL" +msgstr "" + +#: src/gui/sysConf.cpp:1925 +msgid "Right##VolScaleL" +msgstr "" + +#: src/gui/sysConf.cpp:1935 +msgid "Initial echo state:" +msgstr "" + +#: src/gui/sysConf.cpp:1955 +msgid "Delay##EchoDelay" +msgstr "" + +#: src/gui/sysConf.cpp:1961 +msgid "Feedback##EchoFeedback" +msgstr "" + +#: src/gui/sysConf.cpp:1968 +msgid "Left##EchoVolL" +msgstr "" + +#: src/gui/sysConf.cpp:1973 +msgid "Right##EchoVolL" +msgstr "" + +#: src/gui/sysConf.cpp:1979 +msgid "Echo filter:" +msgstr "" + +#: src/gui/sysConf.cpp:1989 +msgid "Hex##SNESFHex" +msgstr "" + +#: src/gui/sysConf.cpp:1989 +msgid "Dec##SNESFHex" +msgstr "" + +#: src/gui/sysConf.cpp:2031 +#, c-format +msgid "sum: %d" +msgstr "" + +#: src/gui/sysConf.cpp:2086 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:63 +#: src/gui/insEdit.cpp:75 +msgid "Detune" +msgstr "" + +#: src/gui/sysConf.cpp:2092 +msgid "Capacitor values (nF):" +msgstr "" + +#: src/gui/sysConf.cpp:2102 +msgid "Initial part volume (channel 1-4):" +msgstr "" + +#: src/gui/sysConf.cpp:2112 +msgid "Initial part volume (channel 5-8):" +msgstr "" + +#: src/gui/sysConf.cpp:2122 +msgid "Envelope mode (channel 1-4):" +msgstr "" + +#: src/gui/sysConf.cpp:2124 +msgid "Capacitor (attack/decay)##EM00" +msgstr "" + +#: src/gui/sysConf.cpp:2128 +msgid "External (volume macro)##EM01" +msgstr "" + +#: src/gui/sysConf.cpp:2134 +msgid "Envelope mode (channel 5-8):" +msgstr "" + +#: src/gui/sysConf.cpp:2136 +msgid "Capacitor (attack/decay)##EM10" +msgstr "" + +#: src/gui/sysConf.cpp:2140 +msgid "External (volume macro)##EM11" +msgstr "" + +#: src/gui/sysConf.cpp:2146 +msgid "Global vibrato:" +msgstr "" + +#: src/gui/sysConf.cpp:2153 +msgid "Depth" +msgstr "" + +#: src/gui/sysConf.cpp:2219 src/gui/sysConf.cpp:2373 +msgid "Waveform storage mode:" +msgstr "" + +#: src/gui/sysConf.cpp:2221 +msgid "RAM" +msgstr "" + +#: src/gui/sysConf.cpp:2225 +msgid "ROM (up to 8 waves)" +msgstr "" + +#: src/gui/sysConf.cpp:2241 +msgid "Compatible noise frequencies" +msgstr "" + +#: src/gui/sysConf.cpp:2256 +msgid "Legacy slides and pitch (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:2314 +msgid "PAL (1.77MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:2344 +msgid "Banking style:" +msgstr "" + +#: src/gui/sysConf.cpp:2346 +msgid "Namco System 2 (2MB)" +msgstr "" + +#: src/gui/sysConf.cpp:2351 +msgid "Namco System 21 (4MB)" +msgstr "" + +#: src/gui/sysConf.cpp:2356 +msgid "Raw (16MB; no VGM export!)" +msgstr "" + +#: src/gui/sysConf.cpp:2375 +msgid "Dynamic (unconfirmed)" +msgstr "" + +#: src/gui/sysConf.cpp:2379 +msgid "Static (up to 5 waves)" +msgstr "" + +#: src/gui/sysConf.cpp:2414 +msgid "DS (4MB RAM)" +msgstr "" + +#: src/gui/sysConf.cpp:2418 +msgid "DSi (16MB RAM)" +msgstr "" + +#: src/gui/sysConf.cpp:2444 src/gui/settings.cpp:727 +msgid "nothing to configure" +msgstr "" + +#: src/gui/sysConf.cpp:2467 +msgid "Custom clock rate" +msgstr "" + +#: src/gui/volMeter.cpp:36 src/gui/settings.cpp:3969 src/gui/guiConst.cpp:596 +msgid "Volume Meter" +msgstr "" + +#: src/gui/userPresets.cpp:325 +msgid "User Systems" +msgstr "" + +#: src/gui/userPresets.cpp:337 +msgid "Error! User category does not exist!" +msgstr "" + +#: src/gui/userPresets.cpp:346 src/gui/newSong.cpp:181 +msgid "Systems" +msgstr "" + +#: src/gui/userPresets.cpp:349 +msgid "New Preset" +msgstr "" + +#: src/gui/userPresets.cpp:361 +msgid "select a preset" +msgstr "" + +#: src/gui/userPresets.cpp:374 +msgid "Remove##UPresetRemove" +msgstr "" + +#: src/gui/userPresets.cpp:439 src/gui/settings.cpp:1135 +msgid "Configure" +msgstr "" + +#: src/gui/userPresets.cpp:470 +msgid "Advanced" +msgstr "" + +#: src/gui/userPresets.cpp:476 +msgid "" +"insert additional settings in `option=value` format.\n" +"available options:\n" +"- tickRate" +msgstr "" + +#: src/gui/userPresets.cpp:509 +msgid "Save and Close" +msgstr "" + +#: src/gui/userPresets.cpp:515 src/gui/settings.cpp:1238 +#: src/gui/settings.cpp:2161 src/gui/settings.cpp:2553 +#: src/gui/settings.cpp:3796 +msgid "Import" +msgstr "" + +#: src/gui/userPresets.cpp:519 +msgid "Import (replace)" +msgstr "" + +#: src/gui/effectList.cpp:14 src/gui/guiConst.cpp:606 +msgid "Effect List" +msgstr "" + +#: src/gui/effectList.cpp:18 +#, c-format +msgid "Chip at cursor: %s" +msgstr "" + +#: src/gui/effectList.cpp:21 src/gui/settings.cpp:6674 +msgid "Search" +msgstr "" + +#: src/gui/effectList.cpp:25 +msgid "Effect types to show:" +msgstr "" + +#: src/gui/effectList.cpp:47 +msgid "Description" +msgstr "" + +#: src/gui/subSongs.cpp:22 src/gui/subSongs.cpp:32 +#, c-format +msgid "%d. " +msgstr "" + +#: src/gui/subSongs.cpp:73 src/gui/subSongs.cpp:93 +msgid "too many subsongs!" +msgstr "" + +#: src/gui/subSongs.cpp:114 +msgid "this is the only subsong!" +msgstr "" + +#: src/gui/subSongs.cpp:116 +msgid "are you sure you want to remove this subsong?" +msgstr "" + +#: src/gui/spoiler.cpp:30 +msgid "Spoiler" +msgstr "" + +#: src/gui/spoiler.cpp:32 +msgid "SPOILER" +msgstr "" + +#: src/gui/settings.cpp:104 src/gui/settings.cpp:114 src/gui/settings.cpp:124 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:105 src/gui/settings.cpp:115 src/gui/settings.cpp:125 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:168 +msgid "ASAP (C++ port)" +msgstr "" + +#: src/gui/settings.cpp:191 +msgid "ESFMu (fast)" +msgstr "" + +#: src/gui/settings.cpp:205 +msgid "Lower" +msgstr "" + +#: src/gui/settings.cpp:207 +msgid "Medium" +msgstr "" + +#: src/gui/settings.cpp:209 +msgid "Ultra" +msgstr "" + +#: src/gui/settings.cpp:210 +msgid "Ultimate" +msgstr "" + +#: src/gui/settings.cpp:214 +msgid "evdev SND_TONE" +msgstr "" + +#: src/gui/settings.cpp:215 +msgid "KIOCSOUND on /dev/tty1" +msgstr "" + +#: src/gui/settings.cpp:216 +msgid "/dev/port" +msgstr "" + +#: src/gui/settings.cpp:217 +msgid "KIOCSOUND on standard output" +msgstr "" + +#: src/gui/settings.cpp:218 +msgid "outb()" +msgstr "" + +#: src/gui/settings.cpp:222 src/gui/settings.cpp:232 +msgid "Disabled/custom" +msgstr "" + +#: src/gui/settings.cpp:223 +msgid "Two octaves (0 is C-4, F is D#5)" +msgstr "" + +#: src/gui/settings.cpp:224 +msgid "Raw (note number is value)" +msgstr "" + +#: src/gui/settings.cpp:225 +msgid "Two octaves alternate (lower keys are 0-9, upper keys are A-F)" +msgstr "" + +#: src/gui/settings.cpp:226 src/gui/settings.cpp:233 +msgid "Use dual control change (one for each nibble)" +msgstr "" + +#: src/gui/settings.cpp:227 src/gui/settings.cpp:234 +msgid "Use 14-bit control change" +msgstr "" + +#: src/gui/settings.cpp:228 src/gui/settings.cpp:235 +msgid "Use single control change (imprecise)" +msgstr "" + +#: src/gui/settings.cpp:239 +msgid "--select--" +msgstr "" + +#: src/gui/settings.cpp:240 src/gui/settings.cpp:241 src/gui/settings.cpp:242 +#: src/gui/settings.cpp:243 src/gui/settings.cpp:244 src/gui/settings.cpp:245 +#: src/gui/settings.cpp:246 +msgid "???" +msgstr "" + +#: src/gui/settings.cpp:247 +msgid "Note Off" +msgstr "" + +#: src/gui/settings.cpp:248 +msgid "Note On" +msgstr "" + +#: src/gui/settings.cpp:249 +msgid "Aftertouch" +msgstr "" + +#: src/gui/settings.cpp:250 src/gui/insEdit.cpp:7187 src/gui/insEdit.cpp:7217 +#: src/gui/insEdit.cpp:7382 src/gui/insEdit.cpp:7403 src/gui/insEdit.cpp:7415 +#: src/gui/insEdit.cpp:7430 +msgid "Control" +msgstr "" + +#: src/gui/settings.cpp:251 src/gui/settings.cpp:573 src/gui/settings.cpp:3177 +msgid "Program" +msgstr "" + +#: src/gui/settings.cpp:252 +msgid "ChanPressure" +msgstr "" + +#: src/gui/settings.cpp:253 +msgid "Pitch Bend" +msgstr "" + +#: src/gui/settings.cpp:254 +msgid "SysEx" +msgstr "" + +#: src/gui/settings.cpp:258 src/gui/settings.cpp:1713 src/gui/settings.cpp:1723 +#: src/gui/settings.cpp:1743 src/gui/settings.cpp:1749 +#, c-format +msgid "Any" +msgstr "" + +#: src/gui/settings.cpp:262 src/gui/settings.cpp:3363 src/gui/settings.cpp:3928 +#: src/gui/settings.cpp:4121 +msgid "Instrument" +msgstr "" + +#: src/gui/settings.cpp:264 +msgid "Effect 1 type" +msgstr "" + +#: src/gui/settings.cpp:265 +msgid "Effect 1 value" +msgstr "" + +#: src/gui/settings.cpp:266 +msgid "Effect 2 type" +msgstr "" + +#: src/gui/settings.cpp:267 +msgid "Effect 2 value" +msgstr "" + +#: src/gui/settings.cpp:268 +msgid "Effect 3 type" +msgstr "" + +#: src/gui/settings.cpp:269 +msgid "Effect 3 value" +msgstr "" + +#: src/gui/settings.cpp:270 +msgid "Effect 4 type" +msgstr "" + +#: src/gui/settings.cpp:271 +msgid "Effect 4 value" +msgstr "" + +#: src/gui/settings.cpp:272 +msgid "Effect 5 type" +msgstr "" + +#: src/gui/settings.cpp:273 +msgid "Effect 5 value" +msgstr "" + +#: src/gui/settings.cpp:274 +msgid "Effect 6 type" +msgstr "" + +#: src/gui/settings.cpp:275 +msgid "Effect 6 value" +msgstr "" + +#: src/gui/settings.cpp:276 +msgid "Effect 7 type" +msgstr "" + +#: src/gui/settings.cpp:277 +msgid "Effect 7 value" +msgstr "" + +#: src/gui/settings.cpp:278 +msgid "Effect 8 type" +msgstr "" + +#: src/gui/settings.cpp:279 +msgid "Effect 8 value" +msgstr "" + +#: src/gui/settings.cpp:315 +msgid "Press key..." +msgstr "" + +#: src/gui/settings.cpp:564 +msgid "Do you want to save your settings?" +msgstr "" + +#: src/gui/settings.cpp:571 +msgid "General" +msgstr "" + +#: src/gui/settings.cpp:588 +msgid "Language" +msgstr "" + +#: src/gui/settings.cpp:606 +msgid "Render backend" +msgstr "" + +#: src/gui/settings.cpp:661 src/gui/settings.cpp:680 src/gui/settings.cpp:1312 +msgid "you may need to restart Furnace for this setting to take effect." +msgstr "" + +#: src/gui/settings.cpp:664 +msgid "Advanced render backend settings" +msgstr "" + +#: src/gui/settings.cpp:666 +msgid "Render driver" +msgstr "" + +#: src/gui/settings.cpp:666 src/gui/settings.cpp:667 src/gui/settings.cpp:1298 +#: src/gui/settings.cpp:1299 src/gui/piano.cpp:108 +msgid "Automatic" +msgstr "" + +#: src/gui/settings.cpp:683 +msgid "" +"beware: changing these settings may render Furnace unusable! do so at your " +"own risk.\n" +"start Furnace with -safemode if you mess something up." +msgstr "" + +#: src/gui/settings.cpp:684 +msgid "Red bits" +msgstr "" + +#: src/gui/settings.cpp:689 +msgid "Green bits" +msgstr "" + +#: src/gui/settings.cpp:694 +msgid "Blue bits" +msgstr "" + +#: src/gui/settings.cpp:699 +msgid "Alpha bits" +msgstr "" + +#: src/gui/settings.cpp:704 +msgid "Color depth" +msgstr "" + +#: src/gui/settings.cpp:709 +msgid "Stencil buffer size" +msgstr "" + +#: src/gui/settings.cpp:714 src/gui/settings.cpp:1385 +msgid "Buffer size" +msgstr "" + +#: src/gui/settings.cpp:720 +msgid "Double buffer" +msgstr "" + +#: src/gui/settings.cpp:725 +msgid "" +"the following values are common (in red, green, blue, alpha order):\n" +"- 24 bits: 8, 8, 8, 0\n" +"- 16 bits: 5, 6, 5, 0\n" +"- 32 bits (with alpha): 8, 8, 8, 8\n" +"- 30 bits (deep): 10, 10, 10, 0" +msgstr "" + +#: src/gui/settings.cpp:732 +#, c-format +msgid "" +"current backend: %s\n" +"%s\n" +"%s\n" +"%s" +msgstr "" + +#: src/gui/settings.cpp:735 +msgid "VSync" +msgstr "" + +#: src/gui/settings.cpp:743 +msgid "Frame rate limit" +msgstr "" + +#: src/gui/settings.cpp:743 +msgid "Unlimited" +msgstr "" + +#: src/gui/settings.cpp:749 +msgid "only applies when VSync is disabled." +msgstr "" + +#: src/gui/settings.cpp:753 +msgid "Display render time" +msgstr "" + +#: src/gui/settings.cpp:760 +msgid "Late render clear" +msgstr "" + +#: src/gui/settings.cpp:765 +msgid "" +"calls rend->clear() after rend->present(). might reduce UI latency by one " +"frame in some drivers." +msgstr "" + +#: src/gui/settings.cpp:770 +msgid "Power-saving mode" +msgstr "" + +#: src/gui/settings.cpp:775 +msgid "" +"saves power by lowering the frame rate to 2fps when idle.\n" +"may cause issues under Mesa drivers!" +msgstr "" + +#: src/gui/settings.cpp:780 +msgid "Disable threaded input (restart after changing!)" +msgstr "" + +#: src/gui/settings.cpp:785 +msgid "" +"threaded input processes key presses for note preview on a separate thread " +"(on supported platforms), which reduces latency.\n" +"however, crashes have been reported when threaded input is on. enable this " +"option if that is the case." +msgstr "" + +#: src/gui/settings.cpp:790 +msgid "Enable event delay" +msgstr "" + +#: src/gui/settings.cpp:796 +msgid "may cause issues with high-polling-rate mice when previewing notes." +msgstr "" + +#: src/gui/settings.cpp:800 +msgid "Per-channel oscilloscope threads" +msgstr "" + +#: src/gui/settings.cpp:808 +msgid "you're being silly, aren't you? that's enough." +msgstr "" + +#: src/gui/settings.cpp:812 +msgid "what are you doing? stop!" +msgstr "" + +#: src/gui/settings.cpp:816 +#, c-format +msgid "" +"it is a bad idea to set this number higher than your CPU core count (%d)!" +msgstr "" + +#: src/gui/settings.cpp:821 +msgid "Oscilloscope rendering engine:" +msgstr "" + +#: src/gui/settings.cpp:823 +msgid "ImGui line plot" +msgstr "" + +#: src/gui/settings.cpp:827 +msgid "render using Dear ImGui's built-in line drawing functions." +msgstr "" + +#: src/gui/settings.cpp:829 +msgid "GLSL (if available)" +msgstr "" + +#: src/gui/settings.cpp:834 +msgid "" +"render using shaders that run on the graphics card.\n" +"only available in OpenGL ES 2.0 render backend." +msgstr "" + +#: src/gui/settings.cpp:836 +msgid "" +"render using shaders that run on the graphics card.\n" +"only available in OpenGL 3.0 render backend." +msgstr "" + +#: src/gui/settings.cpp:843 +msgid "Vibration" +msgstr "" + +#: src/gui/settings.cpp:845 +msgid "Strength" +msgstr "" + +#: src/gui/settings.cpp:851 src/gui/insEdit.cpp:2284 src/gui/insEdit.cpp:2382 +#: src/gui/insEdit.cpp:5582 src/gui/insEdit.cpp:6241 +msgid "Length" +msgstr "" + +#: src/gui/settings.cpp:859 src/gui/gui.cpp:4191 +msgid "File" +msgstr "" + +#: src/gui/settings.cpp:862 +msgid "Use system file picker" +msgstr "" + +#: src/gui/settings.cpp:867 +msgid "Number of recent files" +msgstr "" + +#: src/gui/settings.cpp:874 +msgid "Compress when saving" +msgstr "" + +#: src/gui/settings.cpp:879 +msgid "use zlib to compress saved songs." +msgstr "" + +#: src/gui/settings.cpp:883 +msgid "Save unused patterns" +msgstr "" + +#: src/gui/settings.cpp:889 +msgid "Use new pattern format when saving" +msgstr "" + +#: src/gui/settings.cpp:894 +msgid "" +"use a packed format which saves space when saving songs.\n" +"disable if you need compatibility with older Furnace and/or tools\n" +"which do not support this format." +msgstr "" + +#: src/gui/settings.cpp:898 +msgid "Don't apply compatibility flags when loading .dmf" +msgstr "" + +#: src/gui/settings.cpp:903 +msgid "do not report any issues arising from the use of this option!" +msgstr "" + +#: src/gui/settings.cpp:906 +msgid "Play after opening song:" +msgstr "" + +#: src/gui/settings.cpp:908 +msgid "No##pol0" +msgstr "" + +#: src/gui/settings.cpp:912 +msgid "Only if already playing##pol1" +msgstr "" + +#: src/gui/settings.cpp:916 +msgid "Yes##pol0" +msgstr "" + +#: src/gui/settings.cpp:922 +msgid "Audio export loop/fade out time:" +msgstr "" + +#: src/gui/settings.cpp:924 +msgid "Set to these values on start-up:##fot0" +msgstr "" + +#: src/gui/settings.cpp:942 +msgid "Remember last values##fot1" +msgstr "" + +#: src/gui/settings.cpp:949 +msgid "Store instrument name in .fui" +msgstr "" + +#: src/gui/settings.cpp:954 +msgid "" +"when enabled, saving an instrument will store its name.\n" +"this may increase file size." +msgstr "" + +#: src/gui/settings.cpp:958 +msgid "Load instrument name from .fui" +msgstr "" + +#: src/gui/settings.cpp:963 +msgid "" +"when enabled, loading an instrument will use the stored name (if present).\n" +"otherwise, it will use the file name." +msgstr "" + +#: src/gui/settings.cpp:967 +msgid "Auto-fill file name when saving" +msgstr "" + +#: src/gui/settings.cpp:972 +msgid "" +"fill the file name field with an appropriate file name when saving or " +"exporting." +msgstr "" + +#: src/gui/settings.cpp:976 src/gui/gui.cpp:5563 src/gui/gui.cpp:5613 +msgid "New Song" +msgstr "" + +#: src/gui/settings.cpp:978 +msgid "Initial system:" +msgstr "" + +#: src/gui/settings.cpp:980 +msgid "Current system" +msgstr "" + +#: src/gui/settings.cpp:993 src/gui/waveEdit.cpp:1149 src/gui/gui.cpp:3046 +msgid "Randomize" +msgstr "" + +#: src/gui/settings.cpp:1043 +msgid "Reset to defaults" +msgstr "" + +#: src/gui/settings.cpp:1178 +msgid "When creating new song:" +msgstr "" + +#: src/gui/settings.cpp:1180 +msgid "Display system preset selector##NSB0" +msgstr "" + +#: src/gui/settings.cpp:1184 +msgid "Start with initial system##NSB1" +msgstr "" + +#: src/gui/settings.cpp:1188 +msgid "Default author name" +msgstr "" + +#: src/gui/settings.cpp:1192 +msgid "Start-up" +msgstr "" + +#: src/gui/settings.cpp:1193 +msgid "Play intro on start-up:" +msgstr "" + +#: src/gui/settings.cpp:1195 +msgid "No##pis0" +msgstr "" + +#: src/gui/settings.cpp:1199 +msgid "Short##pis1" +msgstr "" + +#: src/gui/settings.cpp:1203 +msgid "Full (short when loading song)##pis2" +msgstr "" + +#: src/gui/settings.cpp:1207 +msgid "Full (always)##pis3" +msgstr "" + +#: src/gui/settings.cpp:1214 +msgid "Disable fade-in during start-up" +msgstr "" + +#: src/gui/settings.cpp:1220 +msgid "About screen party time" +msgstr "" + +#: src/gui/settings.cpp:1225 +msgid "Warning: may cause epileptic seizures." +msgstr "" + +#: src/gui/settings.cpp:1229 +msgid "Behavior" +msgstr "" + +#: src/gui/settings.cpp:1231 +msgid "New instruments are blank" +msgstr "" + +#: src/gui/settings.cpp:1237 src/gui/settings.cpp:4255 +msgid "Configuration" +msgstr "" + +#: src/gui/settings.cpp:1246 +msgid "Factory Reset" +msgstr "" + +#: src/gui/settings.cpp:1247 +msgid "" +"Are you sure you want to reset all Furnace settings?\n" +"You must restart Furnace after doing so." +msgstr "" + +#: src/gui/settings.cpp:1255 +msgid "Output" +msgstr "" + +#: src/gui/settings.cpp:1263 +msgid "Backend" +msgstr "" + +#: src/gui/settings.cpp:1296 +msgid "Driver" +msgstr "" + +#: src/gui/settings.cpp:1319 +msgid "Device" +msgstr "" + +#: src/gui/settings.cpp:1323 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:1324 +msgid "ALERT - TRESPASSER DETECTED" +msgstr "" + +#: src/gui/settings.cpp:1326 +msgid "you have been arrested for trying to engage with a disabled combo box." +msgstr "" + +#: src/gui/settings.cpp:1333 src/gui/settings.cpp:1335 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:1371 src/gui/insEdit.cpp:7186 +msgid "Outputs" +msgstr "" + +#: src/gui/settings.cpp:1379 +msgid "" +"common values:\n" +"- 1 for mono\n" +"- 2 for stereo\n" +"- 4 for quadraphonic\n" +"- 6 for 5.1 surround\n" +"- 8 for 7.1 surround" +msgstr "" + +#: src/gui/settings.cpp:1387 +#, c-format +msgid "%d (latency: ~%.1fms)" +msgstr "" + +#: src/gui/settings.cpp:1402 +msgid "Multi-threaded (EXPERIMENTAL)" +msgstr "" + +#: src/gui/settings.cpp:1411 +msgid "" +"runs chip emulation on separate threads.\n" +"may increase performance when using heavy emulation cores.\n" +"\n" +"warnings:\n" +"- experimental!\n" +"- only useful on multi-chip songs." +msgstr "" + +#: src/gui/settings.cpp:1416 +msgid "Number of threads" +msgstr "" + +#: src/gui/settings.cpp:1423 +msgid "that's the limit!" +msgstr "" + +#: src/gui/settings.cpp:1427 +#, c-format +msgid "" +"it is a VERY bad idea to set this number higher than your CPU core count " +"(%d)!" +msgstr "" + +#: src/gui/settings.cpp:1435 +msgid "Low-latency mode" +msgstr "" + +#: src/gui/settings.cpp:1440 +msgid "" +"reduces latency by running the engine faster than the tick rate.\n" +"useful for live playback/jam mode.\n" +"\n" +"warning: only enable if your buffer size is small (10ms or less)." +msgstr "" + +#: src/gui/settings.cpp:1444 +msgid "Force mono audio" +msgstr "" + +#: src/gui/settings.cpp:1452 +msgid "Exclusive mode" +msgstr "" + +#: src/gui/settings.cpp:1463 +#, c-format +msgid "want: %d samples @ %.0fHz (%d channel)" +msgid_plural "want: %d samples @ %.0fHz (%d channels)" +msgstr[0] "" +msgstr[1] "" + +#: src/gui/settings.cpp:1464 +#, c-format +msgid "got: %d samples @ %.0fHz (%d channel)" +msgid_plural "got: %d samples @ %.0fHz (%d channels)" +msgstr[0] "" +msgstr[1] "" + +#: src/gui/settings.cpp:1471 +msgid "Mixing" +msgstr "" + +#: src/gui/settings.cpp:1473 src/gui/settings.cpp:2082 +msgid "Quality" +msgstr "" + +#: src/gui/settings.cpp:1478 +msgid "Software clipping" +msgstr "" + +#: src/gui/settings.cpp:1484 +msgid "DC offset correction" +msgstr "" + +#: src/gui/settings.cpp:1502 src/gui/guiConst.cpp:740 +msgid "Sample preview" +msgstr "" + +#: src/gui/settings.cpp:1515 +msgid "MIDI" +msgstr "" + +#: src/gui/settings.cpp:1517 src/gui/settings.cpp:1519 +msgid "MIDI input" +msgstr "" + +#: src/gui/settings.cpp:1521 src/gui/settings.cpp:1524 +#: src/gui/settings.cpp:1815 src/gui/settings.cpp:1817 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:1540 +msgid "Re-scan MIDI devices" +msgstr "" + +#: src/gui/settings.cpp:1551 src/gui/settings.cpp:2258 +msgid "Note input" +msgstr "" + +#: src/gui/settings.cpp:1552 +msgid "Velocity input" +msgstr "" + +#: src/gui/settings.cpp:1556 +msgid "Map MIDI channels to direct channels" +msgstr "" + +#: src/gui/settings.cpp:1562 +msgid "Program change pass-through" +msgstr "" + +#: src/gui/settings.cpp:1567 +msgid "Map Yamaha FM voice data to instruments" +msgstr "" + +#: src/gui/settings.cpp:1569 +msgid "Program change is instrument selection" +msgstr "" + +#: src/gui/settings.cpp:1573 +msgid "Value input style" +msgstr "" + +#: src/gui/settings.cpp:1576 src/gui/settings.cpp:1601 +msgid "Control##valueCCS" +msgstr "" + +#: src/gui/settings.cpp:1582 src/gui/settings.cpp:1607 +msgid "CC of upper nibble##valueCC1" +msgstr "" + +#: src/gui/settings.cpp:1582 src/gui/settings.cpp:1607 +msgid "MSB CC##valueCC1" +msgstr "" + +#: src/gui/settings.cpp:1587 src/gui/settings.cpp:1612 +msgid "CC of lower nibble##valueCC2" +msgstr "" + +#: src/gui/settings.cpp:1587 src/gui/settings.cpp:1612 +msgid "LSB CC##valueCC2" +msgstr "" + +#: src/gui/settings.cpp:1594 +msgid "Per-column control change" +msgstr "" + +#: src/gui/settings.cpp:1624 src/gui/settings.cpp:1634 +msgid "Volume curve" +msgstr "" + +#: src/gui/settings.cpp:1637 +msgid "Actions:" +msgstr "" + +#: src/gui/settings.cpp:1651 +msgid "" +"(learning! press a button or move a slider/knob/something on your device.)" +msgstr "" + +#: src/gui/settings.cpp:1665 src/gui/settings.cpp:2277 +#: src/gui/settings.cpp:6687 src/gui/sampleEdit.cpp:501 +#: src/gui/insEdit.cpp:5321 +msgid "Type" +msgstr "" + +#: src/gui/settings.cpp:1669 +msgid "Note/Control" +msgstr "" + +#: src/gui/settings.cpp:1671 +msgid "Velocity/Value" +msgstr "" + +#: src/gui/settings.cpp:1673 +msgid "Action" +msgstr "" + +#: src/gui/settings.cpp:1765 src/gui/settings.cpp:1766 +msgid "--none--" +msgstr "" + +#: src/gui/settings.cpp:1787 +msgid "waiting...##BLearn" +msgstr "" + +#: src/gui/settings.cpp:1787 +msgid "Learn##BLearn" +msgstr "" + +#: src/gui/settings.cpp:1811 src/gui/settings.cpp:1813 +msgid "MIDI output" +msgstr "" + +#: src/gui/settings.cpp:1830 +msgid "Output mode:" +msgstr "" + +#: src/gui/settings.cpp:1832 +msgid "Off (use for TX81Z)" +msgstr "" + +#: src/gui/settings.cpp:1836 +msgid "Melodic" +msgstr "" + +#: src/gui/settings.cpp:1847 +msgid "Send Program Change" +msgstr "" + +#: src/gui/settings.cpp:1853 +msgid "Send MIDI clock" +msgstr "" + +#: src/gui/settings.cpp:1859 +msgid "Send MIDI timecode" +msgstr "" + +#: src/gui/settings.cpp:1865 +msgid "Timecode frame rate:" +msgstr "" + +#: src/gui/settings.cpp:1867 +msgid "Closest to Tick Rate" +msgstr "" + +#: src/gui/settings.cpp:1871 +msgid "Film (24fps)" +msgstr "" + +#: src/gui/settings.cpp:1875 +msgid "PAL (25fps)" +msgstr "" + +#: src/gui/settings.cpp:1879 +msgid "NTSC drop (29.97fps)" +msgstr "" + +#: src/gui/settings.cpp:1883 +msgid "NTSC non-drop (30fps)" +msgstr "" + +#: src/gui/settings.cpp:1892 +msgid "Emulation" +msgstr "" + +#: src/gui/settings.cpp:1894 +msgid "Cores" +msgstr "" + +#: src/gui/settings.cpp:1903 +msgid "Playback Core(s)" +msgstr "" + +#: src/gui/settings.cpp:1905 src/gui/settings.cpp:2093 +msgid "used for playback" +msgstr "" + +#: src/gui/settings.cpp:1908 +msgid "Render Core(s)" +msgstr "" + +#: src/gui/settings.cpp:1910 src/gui/settings.cpp:2098 +msgid "used in audio export" +msgstr "" + +#: src/gui/settings.cpp:2091 +msgid "Playback" +msgstr "" + +#: src/gui/settings.cpp:2096 +msgid "Render" +msgstr "" + +#: src/gui/settings.cpp:2120 +msgid "PC Speaker strategy" +msgstr "" + +#: src/gui/settings.cpp:2158 src/gui/settings.cpp:2160 +msgid "Keyboard" +msgstr "" + +#: src/gui/settings.cpp:2169 src/gui/settings.cpp:3804 +msgid "Reset defaults" +msgstr "" + +#: src/gui/settings.cpp:2170 +msgid "Are you sure you want to reset the keyboard settings?" +msgstr "" + +#: src/gui/settings.cpp:2172 +msgid "Global hotkeys" +msgstr "" + +#: src/gui/settings.cpp:2209 +msgid "Window activation" +msgstr "" + +#: src/gui/settings.cpp:2275 +msgid "Key" +msgstr "" + +#: src/gui/settings.cpp:2279 src/gui/findReplace.cpp:725 +#: src/gui/findReplace.cpp:1003 +msgid "Value" +msgstr "" + +#: src/gui/settings.cpp:2289 +#, c-format +msgid "Macro release##SNType_%d" +msgstr "" + +#: src/gui/settings.cpp:2294 +#, c-format +msgid "Note release##SNType_%d" +msgstr "" + +#: src/gui/settings.cpp:2299 +#, c-format +msgid "Note off##SNType_%d" +msgstr "" + +#: src/gui/settings.cpp:2304 +#, c-format +msgid "Note##SNType_%d" +msgstr "" + +#: src/gui/settings.cpp:2328 +msgid "Add..." +msgstr "" + +#: src/gui/settings.cpp:2418 +msgid "Instrument list" +msgstr "" + +#: src/gui/settings.cpp:2438 +msgid "Wavetable list" +msgstr "" + +#: src/gui/settings.cpp:2459 +msgid "Sample list" +msgstr "" + +#: src/gui/settings.cpp:2509 +msgid "Sample editor" +msgstr "" + +#: src/gui/settings.cpp:2547 src/gui/settings.cpp:3814 +#: src/gui/settings.cpp:3844 +msgid "Interface" +msgstr "" + +#: src/gui/settings.cpp:2549 +msgid "Layout" +msgstr "" + +#: src/gui/settings.cpp:2551 +msgid "Workspace layout:" +msgstr "" + +#: src/gui/settings.cpp:2561 src/gui/gui.cpp:2920 +msgid "Reset" +msgstr "" + +#: src/gui/settings.cpp:2562 src/gui/gui.cpp:4455 +msgid "Are you sure you want to reset the workspace layout?" +msgstr "" + +#: src/gui/settings.cpp:2566 +msgid "Allow docking editors" +msgstr "" + +#: src/gui/settings.cpp:2573 +msgid "Remember window position" +msgstr "" + +#: src/gui/settings.cpp:2578 +msgid "remembers the window's last position on start-up." +msgstr "" + +#: src/gui/settings.cpp:2583 +msgid "Only allow window movement when clicking on title bar" +msgstr "" + +#: src/gui/settings.cpp:2590 +msgid "Center pop-up windows" +msgstr "" + +#: src/gui/settings.cpp:2595 +msgid "Play/edit controls layout:" +msgstr "" + +#: src/gui/settings.cpp:2597 +msgid "Classic##ecl0" +msgstr "" + +#: src/gui/settings.cpp:2601 +msgid "Compact##ecl1" +msgstr "" + +#: src/gui/settings.cpp:2605 +msgid "Compact (vertical)##ecl2" +msgstr "" + +#: src/gui/settings.cpp:2609 +msgid "Split##ecl3" +msgstr "" + +#: src/gui/settings.cpp:2615 +msgid "Position of buttons in Orders:" +msgstr "" + +#: src/gui/settings.cpp:2617 +msgid "Top##obp0" +msgstr "" + +#: src/gui/settings.cpp:2621 +msgid "Left##obp1" +msgstr "" + +#: src/gui/settings.cpp:2625 +msgid "Right##obp2" +msgstr "" + +#: src/gui/settings.cpp:2632 +msgid "Mouse" +msgstr "" + +#: src/gui/settings.cpp:2634 +msgid "Double-click time (seconds)" +msgstr "" + +#: src/gui/settings.cpp:2643 +msgid "Don't raise pattern editor on click" +msgstr "" + +#: src/gui/settings.cpp:2649 +msgid "Focus pattern editor when selecting instrument" +msgstr "" + +#: src/gui/settings.cpp:2654 +msgid "Note preview behavior:" +msgstr "" + +#: src/gui/settings.cpp:2656 +msgid "Never##npb0" +msgstr "" + +#: src/gui/settings.cpp:2660 +msgid "When cursor is in Note column##npb1" +msgstr "" + +#: src/gui/settings.cpp:2664 +msgid "When cursor is in Note column or not in edit mode##npb2" +msgstr "" + +#: src/gui/settings.cpp:2668 +msgid "Always##npb3" +msgstr "" + +#: src/gui/settings.cpp:2674 +msgid "Allow dragging selection:" +msgstr "" + +#: src/gui/settings.cpp:2676 +msgid "No##dms0" +msgstr "" + +#: src/gui/settings.cpp:2680 +msgid "Yes##dms1" +msgstr "" + +#: src/gui/settings.cpp:2684 +msgid "Yes (while holding Ctrl only)##dms2" +msgstr "" + +#: src/gui/settings.cpp:2690 +msgid "Toggle channel solo on:" +msgstr "" + +#: src/gui/settings.cpp:2692 +msgid "Right-click or double-click##soloA" +msgstr "" + +#: src/gui/settings.cpp:2696 +msgid "Right-click##soloR" +msgstr "" + +#: src/gui/settings.cpp:2700 +msgid "Double-click##soloD" +msgstr "" + +#: src/gui/settings.cpp:2707 +msgid "Double click selects entire column" +msgstr "" + +#: src/gui/settings.cpp:2713 +msgid "Cursor behavior" +msgstr "" + +#: src/gui/settings.cpp:2715 +msgid "Insert pushes entire channel row" +msgstr "" + +#: src/gui/settings.cpp:2721 +msgid "Pull delete affects entire channel row" +msgstr "" + +#: src/gui/settings.cpp:2727 +msgid "Push value when overwriting instead of clearing it" +msgstr "" + +#: src/gui/settings.cpp:2733 +msgid "Keyboard note/value input repeat (hold key to input continuously)" +msgstr "" + +#: src/gui/settings.cpp:2738 +msgid "Effect input behavior:" +msgstr "" + +#: src/gui/settings.cpp:2740 +msgid "Move down##eicb0" +msgstr "" + +#: src/gui/settings.cpp:2744 +msgid "Move to effect value (otherwise move down)##eicb1" +msgstr "" + +#: src/gui/settings.cpp:2748 +msgid "Move to effect value/next effect and wrap around##eicb2" +msgstr "" + +#: src/gui/settings.cpp:2755 +msgid "Delete effect value when deleting effect" +msgstr "" + +#: src/gui/settings.cpp:2761 +msgid "Change current instrument when changing instrument column (absorb)" +msgstr "" + +#: src/gui/settings.cpp:2767 +msgid "Remove instrument value when inserting note off/release" +msgstr "" + +#: src/gui/settings.cpp:2773 +msgid "Remove volume value when inserting note off/release" +msgstr "" + +#: src/gui/settings.cpp:2779 +msgid "Cursor movement" +msgstr "" + +#: src/gui/settings.cpp:2781 +msgid "Wrap horizontally:" +msgstr "" + +#: src/gui/settings.cpp:2783 +msgid "No##wrapH0" +msgstr "" + +#: src/gui/settings.cpp:2787 +msgid "Yes##wrapH1" +msgstr "" + +#: src/gui/settings.cpp:2791 +msgid "Yes, and move to next/prev row##wrapH2" +msgstr "" + +#: src/gui/settings.cpp:2797 +msgid "Wrap vertically:" +msgstr "" + +#: src/gui/settings.cpp:2799 +msgid "No##wrapV0" +msgstr "" + +#: src/gui/settings.cpp:2803 +msgid "Yes##wrapV1" +msgstr "" + +#: src/gui/settings.cpp:2807 +msgid "Yes, and move to next/prev pattern##wrapV2" +msgstr "" + +#: src/gui/settings.cpp:2811 +msgid "Yes, and move to next/prev pattern (wrap around)##wrapV2" +msgstr "" + +#: src/gui/settings.cpp:2817 +msgid "Cursor movement keys behavior:" +msgstr "" + +#: src/gui/settings.cpp:2819 +msgid "Move by one##cmk0" +msgstr "" + +#: src/gui/settings.cpp:2823 +msgid "Move by Edit Step##cmk1" +msgstr "" + +#: src/gui/settings.cpp:2830 +msgid "Move cursor by edit step on delete" +msgstr "" + +#: src/gui/settings.cpp:2836 +msgid "Move cursor by edit step on insert (push)" +msgstr "" + +#: src/gui/settings.cpp:2842 +msgid "Move cursor up on backspace-delete" +msgstr "" + +#: src/gui/settings.cpp:2848 +msgid "Move cursor to end of clipboard content when pasting" +msgstr "" + +#: src/gui/settings.cpp:2854 +msgid "Scrolling" +msgstr "" + +#: src/gui/settings.cpp:2856 +msgid "Change order when scrolling outside of pattern bounds:" +msgstr "" + +#: src/gui/settings.cpp:2858 +msgid "No##pscroll0" +msgstr "" + +#: src/gui/settings.cpp:2862 +msgid "Yes##pscroll1" +msgstr "" + +#: src/gui/settings.cpp:2866 +msgid "Yes, and wrap around song##pscroll2" +msgstr "" + +#: src/gui/settings.cpp:2873 +msgid "Cursor follows current order when moving it" +msgstr "" + +#: src/gui/settings.cpp:2878 +msgid "applies when playback is stopped." +msgstr "" + +#: src/gui/settings.cpp:2882 +msgid "Don't scroll when moving cursor" +msgstr "" + +#: src/gui/settings.cpp:2887 +msgid "Move cursor with scroll wheel:" +msgstr "" + +#: src/gui/settings.cpp:2889 +msgid "No##csw0" +msgstr "" + +#: src/gui/settings.cpp:2893 +msgid "Yes##csw1" +msgstr "" + +#: src/gui/settings.cpp:2897 +msgid "Inverted##csw2" +msgstr "" + +#: src/gui/settings.cpp:2904 +msgid "How many steps to move with each scroll wheel step?" +msgstr "" + +#: src/gui/settings.cpp:2905 +msgid "One##cws0" +msgstr "" + +#: src/gui/settings.cpp:2909 +msgid "Edit Step##cws1" +msgstr "" + +#: src/gui/settings.cpp:2916 src/gui/settings.cpp:3531 +msgid "Assets" +msgstr "" + +#: src/gui/settings.cpp:2919 +msgid "Display instrument type menu when adding instrument" +msgstr "" + +#: src/gui/settings.cpp:2925 +msgid "Select asset after opening one" +msgstr "" + +#: src/gui/settings.cpp:2932 +msgid "Appearance" +msgstr "" + +#: src/gui/settings.cpp:2934 +msgid "Scaling" +msgstr "" + +#: src/gui/settings.cpp:2936 +msgid "Automatic UI scaling factor" +msgstr "" + +#: src/gui/settings.cpp:2945 +msgid "UI scaling factor" +msgstr "" + +#: src/gui/settings.cpp:2952 +msgid "Icon size" +msgstr "" + +#: src/gui/settings.cpp:2967 +msgid "Font renderer" +msgstr "" + +#: src/gui/settings.cpp:2977 +msgid "Main font" +msgstr "" + +#: src/gui/settings.cpp:2988 +msgid "Size##MainFontSize" +msgstr "" + +#: src/gui/settings.cpp:2996 +msgid "Header font" +msgstr "" + +#: src/gui/settings.cpp:3007 +msgid "Size##HeadFontSize" +msgstr "" + +#: src/gui/settings.cpp:3015 +msgid "Pattern font" +msgstr "" + +#: src/gui/settings.cpp:3026 +msgid "Size##PatFontSize" +msgstr "" + +#: src/gui/settings.cpp:3036 +msgid "Anti-aliased fonts" +msgstr "" + +#: src/gui/settings.cpp:3042 +msgid "Support bitmap fonts" +msgstr "" + +#: src/gui/settings.cpp:3047 +msgid "Hinting:" +msgstr "" + +#: src/gui/settings.cpp:3049 +msgid "Off (soft)##fh0" +msgstr "" + +#: src/gui/settings.cpp:3053 +msgid "Slight##fh1" +msgstr "" + +#: src/gui/settings.cpp:3057 +msgid "Normal##fh2" +msgstr "" + +#: src/gui/settings.cpp:3061 +msgid "Full (hard)##fh3" +msgstr "" + +#: src/gui/settings.cpp:3067 +msgid "Auto-hinter:" +msgstr "" + +#: src/gui/settings.cpp:3069 +msgid "Disable##fah0" +msgstr "" + +#: src/gui/settings.cpp:3073 +msgid "Enable##fah1" +msgstr "" + +#: src/gui/settings.cpp:3077 +msgid "Force##fah2" +msgstr "" + +#: src/gui/settings.cpp:3084 +msgid "Oversample" +msgstr "" + +#: src/gui/settings.cpp:3087 +msgid "1×##fos1" +msgstr "" + +#: src/gui/settings.cpp:3092 +msgid "" +"saves video memory. reduces font rendering quality.\n" +"use for pixel/bitmap fonts." +msgstr "" + +#: src/gui/settings.cpp:3095 +msgid "2×##fos2" +msgstr "" + +#: src/gui/settings.cpp:3100 +msgid "default." +msgstr "" + +#: src/gui/settings.cpp:3103 +msgid "3×##fos3" +msgstr "" + +#: src/gui/settings.cpp:3108 +msgid "" +"slightly better font rendering quality.\n" +"uses more video memory." +msgstr "" + +#: src/gui/settings.cpp:3112 +msgid "Load fallback font" +msgstr "" + +#: src/gui/settings.cpp:3117 +msgid "disable to save video memory." +msgstr "" + +#: src/gui/settings.cpp:3121 +msgid "Display Japanese characters" +msgstr "" + +#: src/gui/settings.cpp:3127 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"このオプションは、十分なグラフィックメモリがある場合にのみ切り替えてくださ" +"い。\n" +"これは、Dear ImGuiにダイナミックフォントアトラスが実装されるまでの一時的な解" +"決策です。" +msgstr "" + +#: src/gui/settings.cpp:3135 +msgid "Display Chinese (Simplified) characters" +msgstr "" + +#: src/gui/settings.cpp:3141 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"请在确保你有足够的显存后再启动此设定\n" +"这是一个在ImGui实现动态字体加载之前的临时解决方案" +msgstr "" + +#: src/gui/settings.cpp:3149 +msgid "Display Chinese (Traditional) characters" +msgstr "" + +#: src/gui/settings.cpp:3155 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"請在確保你有足夠的顯存后再啟動此設定\n" +"這是一個在ImGui實現動態字體加載之前的臨時解決方案" +msgstr "" + +#: src/gui/settings.cpp:3163 +msgid "Display Korean characters" +msgstr "" + +#: src/gui/settings.cpp:3169 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"그래픽 메모리가 충분한 경우에만 이 옵션을 선택하십시오.\n" +"이 옵션은 Dear ImGui에 동적 글꼴 아틀라스가 구현될 때까지 임시 솔루션입니다." +msgstr "" + +#: src/gui/settings.cpp:3178 +msgid "Title bar:" +msgstr "" + +#: src/gui/settings.cpp:3180 +msgid "Furnace##tbar0" +msgstr "" + +#: src/gui/settings.cpp:3185 +msgid "Song Name - Furnace##tbar1" +msgstr "" + +#: src/gui/settings.cpp:3190 +msgid "file_name.fur - Furnace##tbar2" +msgstr "" + +#: src/gui/settings.cpp:3195 +msgid "/path/to/file.fur - Furnace##tbar3" +msgstr "" + +#: src/gui/settings.cpp:3203 +msgid "Display system name on title bar" +msgstr "" + +#: src/gui/settings.cpp:3210 +msgid "Display chip names instead of \"multi-system\" in title bar" +msgstr "" + +#: src/gui/settings.cpp:3216 +msgid "Status bar:" +msgstr "" + +#: src/gui/settings.cpp:3218 +msgid "Cursor details##sbar0" +msgstr "" + +#: src/gui/settings.cpp:3222 +msgid "File path##sbar1" +msgstr "" + +#: src/gui/settings.cpp:3226 +msgid "Cursor details or file path##sbar2" +msgstr "" + +#: src/gui/settings.cpp:3230 +msgid "Nothing##sbar3" +msgstr "" + +#: src/gui/settings.cpp:3237 +msgid "Display playback status when playing" +msgstr "" + +#: src/gui/settings.cpp:3242 +msgid "Export options layout:" +msgstr "" + +#: src/gui/settings.cpp:3244 +msgid "Sub-menus in File menu##eol0" +msgstr "" + +#: src/gui/settings.cpp:3248 +msgid "Modal window with tabs##eol1" +msgstr "" + +#: src/gui/settings.cpp:3252 +msgid "Modal windows with options in File menu##eol2" +msgstr "" + +#: src/gui/settings.cpp:3259 +msgid "Capitalize menu bar" +msgstr "" + +#: src/gui/settings.cpp:3265 +msgid "Display add/configure/change/remove chip menus in File menu" +msgstr "" + +#: src/gui/settings.cpp:3279 +msgid "Highlight channel at cursor in Orders" +msgstr "" + +#: src/gui/settings.cpp:3284 +msgid "Orders row number format:" +msgstr "" + +#: src/gui/settings.cpp:3286 +msgid "Decimal##orbD" +msgstr "" + +#: src/gui/settings.cpp:3290 +msgid "Hexadecimal##orbH" +msgstr "" + +#: src/gui/settings.cpp:3299 +msgid "Center pattern view" +msgstr "" + +#: src/gui/settings.cpp:3305 +msgid "Overflow pattern highlights" +msgstr "" + +#: src/gui/settings.cpp:3311 +msgid "Display previous/next pattern" +msgstr "" + +#: src/gui/settings.cpp:3316 +msgid "Pattern row number format:" +msgstr "" + +#: src/gui/settings.cpp:3318 +msgid "Decimal##prbD" +msgstr "" + +#: src/gui/settings.cpp:3322 +msgid "Hexadecimal##prbH" +msgstr "" + +#: src/gui/settings.cpp:3328 +msgid "Pattern view labels:" +msgstr "" + +#: src/gui/settings.cpp:3333 +msgid "Note off (3-char)" +msgstr "" + +#: src/gui/settings.cpp:3338 +msgid "Note release (3-char)" +msgstr "" + +#: src/gui/settings.cpp:3343 +msgid "Macro release (3-char)" +msgstr "" + +#: src/gui/settings.cpp:3348 +msgid "Empty field (3-char)" +msgstr "" + +#: src/gui/settings.cpp:3353 +msgid "Empty field (2-char)" +msgstr "" + +#: src/gui/settings.cpp:3355 +msgid "Pattern view spacing after:" +msgstr "" + +#: src/gui/settings.cpp:3357 src/gui/settings.cpp:4115 +#: src/gui/findReplace.cpp:601 src/gui/findReplace.cpp:864 +#: src/gui/sampleEdit.cpp:590 +msgid "Note" +msgstr "" + +#: src/gui/settings.cpp:3375 src/gui/findReplace.cpp:707 +#: src/gui/findReplace.cpp:974 +msgid "Effect" +msgstr "" + +#: src/gui/settings.cpp:3381 +msgid "Effect value" +msgstr "" + +#: src/gui/settings.cpp:3388 +msgid "Single-digit effects for 00-0F" +msgstr "" + +#: src/gui/settings.cpp:3394 +msgid "Use flats instead of sharps" +msgstr "" + +#: src/gui/settings.cpp:3400 +msgid "Use German notation" +msgstr "" + +#: src/gui/settings.cpp:3408 +msgid "Channel style:" +msgstr "" + +#: src/gui/settings.cpp:3410 +msgid "Classic##CHS0" +msgstr "" + +#: src/gui/settings.cpp:3414 +msgid "Line##CHS1" +msgstr "" + +#: src/gui/settings.cpp:3418 +msgid "Round##CHS2" +msgstr "" + +#: src/gui/settings.cpp:3422 +msgid "Split button##CHS3" +msgstr "" + +#: src/gui/settings.cpp:3426 +msgid "Square border##CH42" +msgstr "" + +#: src/gui/settings.cpp:3430 +msgid "Round border##CHS5" +msgstr "" + +#: src/gui/settings.cpp:3436 +msgid "Channel volume bar:" +msgstr "" + +#: src/gui/settings.cpp:3438 +msgid "None##CHV0" +msgstr "" + +#: src/gui/settings.cpp:3442 +msgid "Simple##CHV1" +msgstr "" + +#: src/gui/settings.cpp:3446 +msgid "Stereo##CHV2" +msgstr "" + +#: src/gui/settings.cpp:3450 +msgid "Real##CHV3" +msgstr "" + +#: src/gui/settings.cpp:3454 +msgid "Real (stereo)##CHV4" +msgstr "" + +#: src/gui/settings.cpp:3460 +msgid "Channel feedback style:" +msgstr "" + +#: src/gui/settings.cpp:3462 +msgid "Off##CHF0" +msgstr "" + +#: src/gui/settings.cpp:3466 +msgid "Note##CHF1" +msgstr "" + +#: src/gui/settings.cpp:3470 +msgid "Volume##CHF2" +msgstr "" + +#: src/gui/settings.cpp:3474 +msgid "Active##CHF3" +msgstr "" + +#: src/gui/settings.cpp:3480 +msgid "Channel font:" +msgstr "" + +#: src/gui/settings.cpp:3482 +msgid "Regular##CHFont0" +msgstr "" + +#: src/gui/settings.cpp:3486 +msgid "Monospace##CHFont1" +msgstr "" + +#: src/gui/settings.cpp:3493 +msgid "Center channel name" +msgstr "" + +#: src/gui/settings.cpp:3498 +msgid "Channel colors:" +msgstr "" + +#: src/gui/settings.cpp:3500 +msgid "Single##CHC0" +msgstr "" + +#: src/gui/settings.cpp:3504 +msgid "Channel type##CHC1" +msgstr "" + +#: src/gui/settings.cpp:3508 +msgid "Instrument type##CHC2" +msgstr "" + +#: src/gui/settings.cpp:3514 +msgid "Channel name colors:" +msgstr "" + +#: src/gui/settings.cpp:3516 +msgid "Single##CTC0" +msgstr "" + +#: src/gui/settings.cpp:3520 +msgid "Channel type##CTC1" +msgstr "" + +#: src/gui/settings.cpp:3524 +msgid "Instrument type##CTC2" +msgstr "" + +#: src/gui/settings.cpp:3533 +msgid "Unified instrument/wavetable/sample list" +msgstr "" + +#: src/gui/settings.cpp:3543 +msgid "Horizontal instrument list" +msgstr "" + +#: src/gui/settings.cpp:3549 +msgid "Instrument list icon style:" +msgstr "" + +#: src/gui/settings.cpp:3551 +msgid "None##iis0" +msgstr "" + +#: src/gui/settings.cpp:3555 +msgid "Graphical icons##iis1" +msgstr "" + +#: src/gui/settings.cpp:3559 +msgid "Letter icons##iis2" +msgstr "" + +#: src/gui/settings.cpp:3566 +msgid "Colorize instrument editor using instrument type" +msgstr "" + +#: src/gui/settings.cpp:3572 src/gui/settings.cpp:4014 +msgid "Macro Editor" +msgstr "" + +#: src/gui/settings.cpp:3573 +msgid "Macro editor layout:" +msgstr "" + +#: src/gui/settings.cpp:3575 +msgid "Unified##mel0" +msgstr "" + +#: src/gui/settings.cpp:3585 +msgid "Grid##mel2" +msgstr "" + +#: src/gui/settings.cpp:3589 +msgid "Single (with list)##mel3" +msgstr "" + +#: src/gui/settings.cpp:3602 +msgid "Use classic macro editor vertical slider" +msgstr "" + +#: src/gui/settings.cpp:3608 +msgid "Wave Editor" +msgstr "" + +#: src/gui/settings.cpp:3610 +msgid "Use compact wave editor" +msgstr "" + +#: src/gui/settings.cpp:3616 src/gui/settings.cpp:3991 +msgid "FM Editor" +msgstr "" + +#: src/gui/settings.cpp:3617 +msgid "FM parameter names:" +msgstr "" + +#: src/gui/settings.cpp:3619 +msgid "Friendly##fmn0" +msgstr "" + +#: src/gui/settings.cpp:3623 +msgid "Technical##fmn1" +msgstr "" + +#: src/gui/settings.cpp:3627 +msgid "Technical (alternate)##fmn2" +msgstr "" + +#: src/gui/settings.cpp:3634 +msgid "Use standard OPL waveform names" +msgstr "" + +#: src/gui/settings.cpp:3639 +msgid "FM parameter editor layout:" +msgstr "" + +#: src/gui/settings.cpp:3641 +msgid "Modern##fml0" +msgstr "" + +#: src/gui/settings.cpp:3645 +msgid "Compact (2x2, classic)##fml1" +msgstr "" + +#: src/gui/settings.cpp:3649 +msgid "Compact (1x4)##fml2" +msgstr "" + +#: src/gui/settings.cpp:3653 +msgid "Compact (4x1)##fml3" +msgstr "" + +#: src/gui/settings.cpp:3657 +msgid "Alternate (2x2)##fml4" +msgstr "" + +#: src/gui/settings.cpp:3661 +msgid "Alternate (1x4)##fml5" +msgstr "" + +#: src/gui/settings.cpp:3665 +msgid "Alternate (4x1)##fml5" +msgstr "" + +#: src/gui/settings.cpp:3671 +msgid "Position of Sustain in FM editor:" +msgstr "" + +#: src/gui/settings.cpp:3673 +msgid "Between Decay and Sustain Rate##susp0" +msgstr "" + +#: src/gui/settings.cpp:3677 +msgid "After Release Rate##susp1" +msgstr "" + +#: src/gui/settings.cpp:3684 +msgid "Use separate colors for carriers/modulators in FM editor" +msgstr "" + +#: src/gui/settings.cpp:3690 +msgid "Unsigned FM detune values" +msgstr "" + +#: src/gui/settings.cpp:3697 +msgid "Chip memory usage unit:" +msgstr "" + +#: src/gui/settings.cpp:3699 +msgid "Bytes##MUU0" +msgstr "" + +#: src/gui/settings.cpp:3703 +msgid "Kilobytes##MUU1" +msgstr "" + +#: src/gui/settings.cpp:3712 +msgid "Rounded corners" +msgstr "" + +#: src/gui/settings.cpp:3718 src/gui/settings.cpp:3896 +#: src/gui/settings.cpp:3938 +msgid "Border" +msgstr "" + +#: src/gui/settings.cpp:3730 +msgid "Anti-aliased" +msgstr "" + +#: src/gui/settings.cpp:3736 +msgid "Fill entire window" +msgstr "" + +#: src/gui/settings.cpp:3742 +msgid "Waveform goes out of bounds" +msgstr "" + +#: src/gui/settings.cpp:3754 +msgid "Windows" +msgstr "" + +#: src/gui/settings.cpp:3756 +msgid "Rounded window corners" +msgstr "" + +#: src/gui/settings.cpp:3762 +msgid "Rounded buttons" +msgstr "" + +#: src/gui/settings.cpp:3768 +msgid "Rounded menu corners" +msgstr "" + +#: src/gui/settings.cpp:3774 +msgid "Rounded tabs" +msgstr "" + +#: src/gui/settings.cpp:3780 +msgid "Rounded scrollbars" +msgstr "" + +#: src/gui/settings.cpp:3786 +msgid "Borders around widgets" +msgstr "" + +#: src/gui/settings.cpp:3795 +msgid "Color scheme" +msgstr "" + +#: src/gui/settings.cpp:3805 +msgid "Are you sure you want to reset the color scheme?" +msgstr "" + +#: src/gui/settings.cpp:3808 +msgid "Guru mode" +msgstr "" + +#: src/gui/settings.cpp:3815 src/gui/settings.cpp:3845 +msgid "Frame shading" +msgstr "" + +#: src/gui/settings.cpp:3821 +msgid "Color scheme type:" +msgstr "" + +#: src/gui/settings.cpp:3823 +msgid "Dark##gcb0" +msgstr "" + +#: src/gui/settings.cpp:3828 +msgid "Light##gcb1" +msgstr "" + +#: src/gui/settings.cpp:3835 +msgid "Accent colors:" +msgstr "" + +#: src/gui/settings.cpp:3837 +msgid "Primary" +msgstr "" + +#: src/gui/settings.cpp:3838 +msgid "Secondary" +msgstr "" + +#: src/gui/settings.cpp:3852 +msgid "Button" +msgstr "" + +#: src/gui/settings.cpp:3853 +msgid "Button (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3854 +msgid "Button (active)" +msgstr "" + +#: src/gui/settings.cpp:3855 +msgid "Tab" +msgstr "" + +#: src/gui/settings.cpp:3856 +msgid "Tab (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3857 +msgid "Tab (active)" +msgstr "" + +#: src/gui/settings.cpp:3858 +msgid "Tab (unfocused)" +msgstr "" + +#: src/gui/settings.cpp:3859 +msgid "Tab (unfocused and active)" +msgstr "" + +#: src/gui/settings.cpp:3860 +msgid "ImGui header" +msgstr "" + +#: src/gui/settings.cpp:3861 +msgid "ImGui header (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3862 +msgid "ImGui header (active)" +msgstr "" + +#: src/gui/settings.cpp:3863 +msgid "Resize grip" +msgstr "" + +#: src/gui/settings.cpp:3864 +msgid "Resize grip (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3865 +msgid "Resize grip (active)" +msgstr "" + +#: src/gui/settings.cpp:3866 +msgid "Widget background" +msgstr "" + +#: src/gui/settings.cpp:3867 +msgid "Widget background (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3868 +msgid "Widget background (active)" +msgstr "" + +#: src/gui/settings.cpp:3869 +msgid "Slider grab" +msgstr "" + +#: src/gui/settings.cpp:3870 +msgid "Slider grab (active)" +msgstr "" + +#: src/gui/settings.cpp:3871 +msgid "Title background (active)" +msgstr "" + +#: src/gui/settings.cpp:3872 +msgid "Checkbox/radio button mark" +msgstr "" + +#: src/gui/settings.cpp:3873 +msgid "Text selection" +msgstr "" + +#: src/gui/settings.cpp:3874 +msgid "Line plot" +msgstr "" + +#: src/gui/settings.cpp:3875 +msgid "Line plot (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3876 +msgid "Histogram plot" +msgstr "" + +#: src/gui/settings.cpp:3877 +msgid "Histogram plot (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3878 +msgid "Table row (even)" +msgstr "" + +#: src/gui/settings.cpp:3879 +msgid "Table row (odd)" +msgstr "" + +#: src/gui/settings.cpp:3884 +msgid "Interface (other)" +msgstr "" + +#: src/gui/settings.cpp:3886 +msgid "Window background" +msgstr "" + +#: src/gui/settings.cpp:3887 +msgid "Sub-window background" +msgstr "" + +#: src/gui/settings.cpp:3888 +msgid "Pop-up background" +msgstr "" + +#: src/gui/settings.cpp:3889 +msgid "Modal backdrop" +msgstr "" + +#: src/gui/settings.cpp:3890 +msgid "Header" +msgstr "" + +#: src/gui/settings.cpp:3892 +msgid "Text (disabled)" +msgstr "" + +#: src/gui/settings.cpp:3893 +msgid "Title bar (inactive)" +msgstr "" + +#: src/gui/settings.cpp:3894 +msgid "Title bar (collapsed)" +msgstr "" + +#: src/gui/settings.cpp:3895 +msgid "Menu bar" +msgstr "" + +#: src/gui/settings.cpp:3897 +msgid "Border shadow" +msgstr "" + +#: src/gui/settings.cpp:3898 +msgid "Scroll bar" +msgstr "" + +#: src/gui/settings.cpp:3899 +msgid "Scroll bar (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3900 +msgid "Scroll bar (clicked)" +msgstr "" + +#: src/gui/settings.cpp:3901 +msgid "Scroll bar background" +msgstr "" + +#: src/gui/settings.cpp:3902 +msgid "Separator" +msgstr "" + +#: src/gui/settings.cpp:3903 +msgid "Separator (hover)" +msgstr "" + +#: src/gui/settings.cpp:3904 +msgid "Separator (active)" +msgstr "" + +#: src/gui/settings.cpp:3905 +msgid "Docking preview" +msgstr "" + +#: src/gui/settings.cpp:3906 +msgid "Docking empty" +msgstr "" + +#: src/gui/settings.cpp:3907 +msgid "Table header" +msgstr "" + +#: src/gui/settings.cpp:3908 +msgid "Table border (hard)" +msgstr "" + +#: src/gui/settings.cpp:3909 +msgid "Table border (soft)" +msgstr "" + +#: src/gui/settings.cpp:3910 +msgid "Drag and drop target" +msgstr "" + +#: src/gui/settings.cpp:3911 +msgid "Window switcher (highlight)" +msgstr "" + +#: src/gui/settings.cpp:3912 +msgid "Window switcher backdrop" +msgstr "" + +#: src/gui/settings.cpp:3915 src/gui/settings.cpp:4136 src/gui/guiConst.cpp:235 +msgid "Miscellaneous" +msgstr "" + +#: src/gui/settings.cpp:3916 +msgid "Toggle on" +msgstr "" + +#: src/gui/settings.cpp:3917 +msgid "Toggle off" +msgstr "" + +#: src/gui/settings.cpp:3918 +msgid "Playback status" +msgstr "" + +#: src/gui/settings.cpp:3919 +msgid "Destructive hint" +msgstr "" + +#: src/gui/settings.cpp:3920 +msgid "Warning hint" +msgstr "" + +#: src/gui/settings.cpp:3921 +msgid "Error hint" +msgstr "" + +#: src/gui/settings.cpp:3924 +msgid "File Picker (built-in)" +msgstr "" + +#: src/gui/settings.cpp:3926 +msgid "Song (native)" +msgstr "" + +#: src/gui/settings.cpp:3927 +msgid "Song (import)" +msgstr "" + +#: src/gui/settings.cpp:3933 +msgid "Font" +msgstr "" + +#: src/gui/settings.cpp:3939 +msgid "Background (top-left)" +msgstr "" + +#: src/gui/settings.cpp:3940 +msgid "Background (top-right)" +msgstr "" + +#: src/gui/settings.cpp:3941 +msgid "Background (bottom-left)" +msgstr "" + +#: src/gui/settings.cpp:3942 +msgid "Background (bottom-right)" +msgstr "" + +#: src/gui/settings.cpp:3943 src/gui/settings.cpp:3998 +#: src/gui/settings.cpp:4166 src/gui/waveEdit.cpp:730 src/gui/insEdit.cpp:50 +#: src/gui/insEdit.cpp:4148 src/gui/insEdit.cpp:5812 src/gui/insEdit.cpp:6940 +#: src/gui/insEdit.cpp:6949 src/gui/insEdit.cpp:6963 src/gui/insEdit.cpp:6980 +#: src/gui/insEdit.cpp:6991 src/gui/insEdit.cpp:7004 src/gui/insEdit.cpp:7018 +#: src/gui/insEdit.cpp:7025 src/gui/insEdit.cpp:7035 src/gui/insEdit.cpp:7041 +#: src/gui/insEdit.cpp:7050 src/gui/insEdit.cpp:7074 src/gui/insEdit.cpp:7084 +#: src/gui/insEdit.cpp:7094 src/gui/insEdit.cpp:7101 src/gui/insEdit.cpp:7116 +#: src/gui/insEdit.cpp:7131 src/gui/insEdit.cpp:7151 src/gui/insEdit.cpp:7158 +#: src/gui/insEdit.cpp:7200 src/gui/insEdit.cpp:7211 src/gui/insEdit.cpp:7224 +#: src/gui/insEdit.cpp:7349 src/gui/insEdit.cpp:7425 src/gui/insEdit.cpp:7445 +#: src/gui/insEdit.cpp:7453 src/gui/insEdit.cpp:7473 +msgid "Waveform" +msgstr "" + +#: src/gui/settings.cpp:3944 +msgid "Waveform (clip)" +msgstr "" + +#: src/gui/settings.cpp:3945 +msgid "Reference" +msgstr "" + +#: src/gui/settings.cpp:3946 +msgid "Guide" +msgstr "" + +#: src/gui/settings.cpp:3948 +msgid "Wave (non-mono)" +msgstr "" + +#: src/gui/settings.cpp:3949 +msgid "Waveform (1)" +msgstr "" + +#: src/gui/settings.cpp:3950 +msgid "Waveform (2)" +msgstr "" + +#: src/gui/settings.cpp:3951 +msgid "Waveform (3)" +msgstr "" + +#: src/gui/settings.cpp:3952 +msgid "Waveform (4)" +msgstr "" + +#: src/gui/settings.cpp:3953 +msgid "Waveform (5)" +msgstr "" + +#: src/gui/settings.cpp:3954 +msgid "Waveform (6)" +msgstr "" + +#: src/gui/settings.cpp:3955 +msgid "Waveform (7)" +msgstr "" + +#: src/gui/settings.cpp:3956 +msgid "Waveform (8)" +msgstr "" + +#: src/gui/settings.cpp:3957 +msgid "Waveform (9)" +msgstr "" + +#: src/gui/settings.cpp:3958 +msgid "Waveform (10)" +msgstr "" + +#: src/gui/settings.cpp:3959 +msgid "Waveform (11)" +msgstr "" + +#: src/gui/settings.cpp:3960 +msgid "Waveform (12)" +msgstr "" + +#: src/gui/settings.cpp:3961 +msgid "Waveform (13)" +msgstr "" + +#: src/gui/settings.cpp:3962 +msgid "Waveform (14)" +msgstr "" + +#: src/gui/settings.cpp:3963 +msgid "Waveform (15)" +msgstr "" + +#: src/gui/settings.cpp:3964 +msgid "Waveform (16)" +msgstr "" + +#: src/gui/settings.cpp:3972 +msgid "Clip" +msgstr "" + +#: src/gui/settings.cpp:3976 +msgid "Order number" +msgstr "" + +#: src/gui/settings.cpp:3977 +msgid "Playing order background" +msgstr "" + +#: src/gui/settings.cpp:3978 +msgid "Song loop" +msgstr "" + +#: src/gui/settings.cpp:3979 +msgid "Selected order" +msgstr "" + +#: src/gui/settings.cpp:3980 +msgid "Similar patterns" +msgstr "" + +#: src/gui/settings.cpp:3981 +msgid "Inactive patterns" +msgstr "" + +#: src/gui/settings.cpp:3984 +msgid "Envelope View" +msgstr "" + +#: src/gui/settings.cpp:3985 src/gui/insEdit.cpp:540 src/gui/insEdit.cpp:3547 +#: src/gui/insEdit.cpp:3548 src/gui/insEdit.cpp:4081 src/gui/insEdit.cpp:4151 +#: src/gui/insEdit.cpp:4790 src/gui/insEdit.cpp:5861 src/gui/insEdit.cpp:5862 +#: src/gui/insEdit.cpp:6487 src/gui/insEdit.cpp:6488 src/gui/insEdit.cpp:6555 +#: src/gui/insEdit.cpp:6556 src/gui/insEdit.cpp:6995 src/gui/insEdit.cpp:7009 +#: src/gui/insEdit.cpp:7029 src/gui/insEdit.cpp:7166 +#, c-format +msgid "Envelope" +msgstr "" + +#: src/gui/settings.cpp:3986 +msgid "Sustain guide" +msgstr "" + +#: src/gui/settings.cpp:3992 +msgid "Algorithm background" +msgstr "" + +#: src/gui/settings.cpp:3993 +msgid "Algorithm lines" +msgstr "" + +#: src/gui/settings.cpp:3994 +msgid "Modulator" +msgstr "" + +#: src/gui/settings.cpp:3995 +msgid "Carrier" +msgstr "" + +#: src/gui/settings.cpp:3997 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:4146 +msgid "SSG-EG" +msgstr "" + +#: src/gui/settings.cpp:4000 +msgid "" +"(the following colors only apply when \"Use separate colors for carriers/" +"modulators in FM editor\" is on!)" +msgstr "" + +#: src/gui/settings.cpp:4002 +msgid "Mod. accent (primary)" +msgstr "" + +#: src/gui/settings.cpp:4003 +msgid "Mod. accent (secondary)" +msgstr "" + +#: src/gui/settings.cpp:4004 +msgid "Mod. border" +msgstr "" + +#: src/gui/settings.cpp:4005 +msgid "Mod. border shadow" +msgstr "" + +#: src/gui/settings.cpp:4007 +msgid "Car. accent (primary)" +msgstr "" + +#: src/gui/settings.cpp:4008 +msgid "Car. accent (secondary)" +msgstr "" + +#: src/gui/settings.cpp:4009 +msgid "Car. border" +msgstr "" + +#: src/gui/settings.cpp:4010 +msgid "Car. border shadow" +msgstr "" + +#: src/gui/settings.cpp:4016 src/gui/guiConst.cpp:227 src/gui/insEdit.cpp:6924 +#: src/gui/insEdit.cpp:6931 src/gui/insEdit.cpp:6942 src/gui/insEdit.cpp:6950 +#: src/gui/insEdit.cpp:6971 src/gui/insEdit.cpp:6983 src/gui/insEdit.cpp:6993 +#: src/gui/insEdit.cpp:7006 src/gui/insEdit.cpp:7019 src/gui/insEdit.cpp:7028 +#: src/gui/insEdit.cpp:7036 src/gui/insEdit.cpp:7042 src/gui/insEdit.cpp:7052 +#: src/gui/insEdit.cpp:7061 src/gui/insEdit.cpp:7068 src/gui/insEdit.cpp:7075 +#: src/gui/insEdit.cpp:7087 src/gui/insEdit.cpp:7095 src/gui/insEdit.cpp:7102 +#: src/gui/insEdit.cpp:7109 src/gui/insEdit.cpp:7117 src/gui/insEdit.cpp:7123 +#: src/gui/insEdit.cpp:7132 src/gui/insEdit.cpp:7143 src/gui/insEdit.cpp:7153 +#: src/gui/insEdit.cpp:7161 src/gui/insEdit.cpp:7174 src/gui/insEdit.cpp:7182 +#: src/gui/insEdit.cpp:7193 src/gui/insEdit.cpp:7203 src/gui/insEdit.cpp:7213 +#: src/gui/insEdit.cpp:7227 src/gui/insEdit.cpp:7233 src/gui/insEdit.cpp:7241 +#: src/gui/insEdit.cpp:7248 src/gui/insEdit.cpp:7272 src/gui/insEdit.cpp:7280 +#: src/gui/insEdit.cpp:7289 src/gui/insEdit.cpp:7298 src/gui/insEdit.cpp:7306 +#: src/gui/insEdit.cpp:7323 src/gui/insEdit.cpp:7331 src/gui/insEdit.cpp:7337 +#: src/gui/insEdit.cpp:7344 src/gui/insEdit.cpp:7350 src/gui/insEdit.cpp:7355 +#: src/gui/insEdit.cpp:7361 src/gui/insEdit.cpp:7368 src/gui/insEdit.cpp:7376 +#: src/gui/insEdit.cpp:7385 src/gui/insEdit.cpp:7393 src/gui/insEdit.cpp:7401 +#: src/gui/insEdit.cpp:7413 src/gui/insEdit.cpp:7428 src/gui/insEdit.cpp:7439 +#: src/gui/insEdit.cpp:7447 src/gui/insEdit.cpp:7456 src/gui/insEdit.cpp:7466 +#: src/gui/insEdit.cpp:7474 +msgid "Pitch" +msgstr "" + +#: src/gui/settings.cpp:4021 +msgid "Instrument Types" +msgstr "" + +#: src/gui/settings.cpp:4022 +msgid "FM (OPN)" +msgstr "" + +#: src/gui/settings.cpp:4023 +msgid "SN76489/Sega PSG" +msgstr "" + +#: src/gui/settings.cpp:4026 +msgid "C64" +msgstr "" + +#: src/gui/settings.cpp:4027 +msgid "Amiga/Generic Sample" +msgstr "" + +#: src/gui/settings.cpp:4028 +msgid "PC Engine" +msgstr "" + +#: src/gui/settings.cpp:4029 +msgid "AY-3-8910/SSG" +msgstr "" + +#: src/gui/settings.cpp:4030 +msgid "AY8930" +msgstr "" + +#: src/gui/settings.cpp:4031 +msgid "TIA" +msgstr "" + +#: src/gui/settings.cpp:4032 +msgid "SAA1099" +msgstr "" + +#: src/gui/settings.cpp:4033 +msgid "VIC" +msgstr "" + +#: src/gui/settings.cpp:4034 +msgid "PET" +msgstr "" + +#: src/gui/settings.cpp:4035 +msgid "VRC6" +msgstr "" + +#: src/gui/settings.cpp:4036 src/gui/guiConst.cpp:149 +msgid "VRC6 (saw)" +msgstr "" + +#: src/gui/settings.cpp:4037 +msgid "FM (OPLL)" +msgstr "" + +#: src/gui/settings.cpp:4038 +msgid "FM (OPL)" +msgstr "" + +#: src/gui/settings.cpp:4043 +msgid "FM (OPZ)" +msgstr "" + +#: src/gui/settings.cpp:4045 +msgid "PC Beeper" +msgstr "" + +#: src/gui/settings.cpp:4047 +msgid "Lynx" +msgstr "" + +#: src/gui/settings.cpp:4049 +msgid "X1-010" +msgstr "" + +#: src/gui/settings.cpp:4050 +msgid "ES5506" +msgstr "" + +#: src/gui/settings.cpp:4053 +msgid "Sound Unit" +msgstr "" + +#: src/gui/settings.cpp:4055 +msgid "FM (OPL Drums)" +msgstr "" + +#: src/gui/settings.cpp:4056 +msgid "FM (OPM)" +msgstr "" + +#: src/gui/settings.cpp:4057 +msgid "NES" +msgstr "" + +#: src/gui/settings.cpp:4058 +msgid "MSM6258" +msgstr "" + +#: src/gui/settings.cpp:4059 +msgid "MSM6295" +msgstr "" + +#: src/gui/settings.cpp:4060 +msgid "ADPCM-A" +msgstr "" + +#: src/gui/settings.cpp:4062 +msgid "Sega PCM" +msgstr "" + +#: src/gui/settings.cpp:4063 +msgid "QSound" +msgstr "" + +#: src/gui/settings.cpp:4064 +msgid "YMZ280B" +msgstr "" + +#: src/gui/settings.cpp:4065 +msgid "RF5C68" +msgstr "" + +#: src/gui/settings.cpp:4066 +msgid "MSM5232" +msgstr "" + +#: src/gui/settings.cpp:4067 +msgid "K007232" +msgstr "" + +#: src/gui/settings.cpp:4068 +msgid "GA20" +msgstr "" + +#: src/gui/settings.cpp:4070 +msgid "SM8521" +msgstr "" + +#: src/gui/settings.cpp:4071 +msgid "PV-1000" +msgstr "" + +#: src/gui/settings.cpp:4072 +msgid "K053260" +msgstr "" + +#: src/gui/settings.cpp:4073 +msgid "TED" +msgstr "" + +#: src/gui/settings.cpp:4074 +msgid "C140" +msgstr "" + +#: src/gui/settings.cpp:4075 +msgid "C219" +msgstr "" + +#: src/gui/settings.cpp:4076 +msgid "ESFM" +msgstr "" + +#: src/gui/settings.cpp:4077 src/gui/guiConst.cpp:179 +msgid "PowerNoise (noise)" +msgstr "" + +#: src/gui/settings.cpp:4078 src/gui/guiConst.cpp:180 +msgid "PowerNoise (slope)" +msgstr "" + +#: src/gui/settings.cpp:4081 +msgid "GBA DMA" +msgstr "" + +#: src/gui/settings.cpp:4082 +msgid "GBA MinMod" +msgstr "" + +#: src/gui/settings.cpp:4085 +msgid "Other/Unknown" +msgstr "" + +#: src/gui/settings.cpp:4089 +msgid "Single color (background)" +msgstr "" + +#: src/gui/settings.cpp:4090 +msgid "Single color (text)" +msgstr "" + +#: src/gui/settings.cpp:4091 src/gui/guiConst.cpp:1393 src/gui/waveEdit.cpp:668 +msgid "FM" +msgstr "" + +#: src/gui/settings.cpp:4096 +msgid "FM operator" +msgstr "" + +#: src/gui/settings.cpp:4097 +msgid "Muted" +msgstr "" + +#: src/gui/settings.cpp:4101 +msgid "Playhead" +msgstr "" + +#: src/gui/settings.cpp:4102 +msgid "Editing" +msgstr "" + +#: src/gui/settings.cpp:4103 +msgid "Editing (will clone)" +msgstr "" + +#: src/gui/settings.cpp:4104 +msgid "Cursor" +msgstr "" + +#: src/gui/settings.cpp:4105 +msgid "Cursor (hovered)" +msgstr "" + +#: src/gui/settings.cpp:4106 +msgid "Cursor (clicked)" +msgstr "" + +#: src/gui/settings.cpp:4107 src/gui/settings.cpp:4172 +#: src/gui/findReplace.cpp:791 +msgid "Selection" +msgstr "" + +#: src/gui/settings.cpp:4108 +msgid "Selection (hovered)" +msgstr "" + +#: src/gui/settings.cpp:4109 +msgid "Selection (clicked)" +msgstr "" + +#: src/gui/settings.cpp:4110 +msgid "Highlight 1" +msgstr "" + +#: src/gui/settings.cpp:4111 +msgid "Highlight 2" +msgstr "" + +#: src/gui/settings.cpp:4112 +msgid "Row number" +msgstr "" + +#: src/gui/settings.cpp:4113 +msgid "Row number (highlight 1)" +msgstr "" + +#: src/gui/settings.cpp:4114 +msgid "Row number (highlight 2)" +msgstr "" + +#: src/gui/settings.cpp:4116 +msgid "Note (highlight 1)" +msgstr "" + +#: src/gui/settings.cpp:4117 +msgid "Note (highlight 2)" +msgstr "" + +#: src/gui/settings.cpp:4118 +msgid "Blank" +msgstr "" + +#: src/gui/settings.cpp:4119 +msgid "Blank (highlight 1)" +msgstr "" + +#: src/gui/settings.cpp:4120 +msgid "Blank (highlight 2)" +msgstr "" + +#: src/gui/settings.cpp:4122 +msgid "Instrument (invalid type)" +msgstr "" + +#: src/gui/settings.cpp:4123 +msgid "Instrument (out of range)" +msgstr "" + +#: src/gui/settings.cpp:4124 +msgid "Volume (0%)" +msgstr "" + +#: src/gui/settings.cpp:4125 +msgid "Volume (50%)" +msgstr "" + +#: src/gui/settings.cpp:4126 +msgid "Volume (100%)" +msgstr "" + +#: src/gui/settings.cpp:4128 +msgid "Pitch effect" +msgstr "" + +#: src/gui/settings.cpp:4129 +msgid "Volume effect" +msgstr "" + +#: src/gui/settings.cpp:4130 +msgid "Panning effect" +msgstr "" + +#: src/gui/settings.cpp:4131 +msgid "Song effect" +msgstr "" + +#: src/gui/settings.cpp:4132 +msgid "Time effect" +msgstr "" + +#: src/gui/settings.cpp:4133 +msgid "Speed effect" +msgstr "" + +#: src/gui/settings.cpp:4134 +msgid "Primary specific effect" +msgstr "" + +#: src/gui/settings.cpp:4135 +msgid "Secondary specific effect" +msgstr "" + +#: src/gui/settings.cpp:4137 +msgid "External command output" +msgstr "" + +#: src/gui/settings.cpp:4138 +msgid "Status: off/disabled" +msgstr "" + +#: src/gui/settings.cpp:4139 +msgid "Status: off + macro rel" +msgstr "" + +#: src/gui/settings.cpp:4140 +msgid "Status: on + macro rel" +msgstr "" + +#: src/gui/settings.cpp:4141 +msgid "Status: on" +msgstr "" + +#: src/gui/settings.cpp:4142 +msgid "Status: volume" +msgstr "" + +#: src/gui/settings.cpp:4143 +msgid "Status: pitch" +msgstr "" + +#: src/gui/settings.cpp:4144 +msgid "Status: panning" +msgstr "" + +#: src/gui/settings.cpp:4145 +msgid "Status: chip (primary)" +msgstr "" + +#: src/gui/settings.cpp:4146 +msgid "Status: chip (secondary)" +msgstr "" + +#: src/gui/settings.cpp:4147 +msgid "Status: mixing" +msgstr "" + +#: src/gui/settings.cpp:4148 +msgid "Status: DSP effect" +msgstr "" + +#: src/gui/settings.cpp:4149 +msgid "Status: note altering" +msgstr "" + +#: src/gui/settings.cpp:4150 +msgid "Status: misc color 1" +msgstr "" + +#: src/gui/settings.cpp:4151 +msgid "Status: misc color 2" +msgstr "" + +#: src/gui/settings.cpp:4152 +msgid "Status: misc color 3" +msgstr "" + +#: src/gui/settings.cpp:4153 +msgid "Status: attack" +msgstr "" + +#: src/gui/settings.cpp:4154 +msgid "Status: decay" +msgstr "" + +#: src/gui/settings.cpp:4155 +msgid "Status: sustain" +msgstr "" + +#: src/gui/settings.cpp:4156 +msgid "Status: release" +msgstr "" + +#: src/gui/settings.cpp:4157 +msgid "Status: decrease linear" +msgstr "" + +#: src/gui/settings.cpp:4158 +msgid "Status: decrease exp" +msgstr "" + +#: src/gui/settings.cpp:4159 +msgid "Status: increase" +msgstr "" + +#: src/gui/settings.cpp:4160 +msgid "Status: bent" +msgstr "" + +#: src/gui/settings.cpp:4161 +msgid "Status: direct" +msgstr "" + +#: src/gui/settings.cpp:4164 src/gui/guiConst.cpp:586 src/gui/sampleEdit.cpp:96 +msgid "Sample Editor" +msgstr "" + +#: src/gui/settings.cpp:4167 +msgid "Time background" +msgstr "" + +#: src/gui/settings.cpp:4168 +msgid "Time text" +msgstr "" + +#: src/gui/settings.cpp:4169 +msgid "Loop region" +msgstr "" + +#: src/gui/settings.cpp:4170 +msgid "Center guide" +msgstr "" + +#: src/gui/settings.cpp:4171 +msgid "Grid" +msgstr "" + +#: src/gui/settings.cpp:4173 +msgid "Selection points" +msgstr "" + +#: src/gui/settings.cpp:4174 +msgid "Preview needle" +msgstr "" + +#: src/gui/settings.cpp:4175 +msgid "Playing needles" +msgstr "" + +#: src/gui/settings.cpp:4176 +msgid "Loop markers" +msgstr "" + +#: src/gui/settings.cpp:4177 +msgid "Chip select: disabled" +msgstr "" + +#: src/gui/settings.cpp:4178 +msgid "Chip select: enabled" +msgstr "" + +#: src/gui/settings.cpp:4179 +msgid "Chip select: enabled (failure)" +msgstr "" + +#: src/gui/settings.cpp:4182 src/gui/guiConst.cpp:602 src/gui/patManager.cpp:35 +msgid "Pattern Manager" +msgstr "" + +#: src/gui/settings.cpp:4183 +msgid "Unallocated" +msgstr "" + +#: src/gui/settings.cpp:4184 +msgid "Unused" +msgstr "" + +#: src/gui/settings.cpp:4185 +msgid "Used" +msgstr "" + +#: src/gui/settings.cpp:4186 +msgid "Overused" +msgstr "" + +#: src/gui/settings.cpp:4187 +msgid "Really overused" +msgstr "" + +#: src/gui/settings.cpp:4188 +msgid "Combo Breaker" +msgstr "" + +#: src/gui/settings.cpp:4191 src/gui/guiConst.cpp:599 src/gui/piano.cpp:63 +msgid "Piano" +msgstr "" + +#: src/gui/settings.cpp:4193 +msgid "Upper key" +msgstr "" + +#: src/gui/settings.cpp:4194 +msgid "Upper key (feedback)" +msgstr "" + +#: src/gui/settings.cpp:4195 +msgid "Upper key (pressed)" +msgstr "" + +#: src/gui/settings.cpp:4196 +msgid "Lower key" +msgstr "" + +#: src/gui/settings.cpp:4197 +msgid "Lower key (feedback)" +msgstr "" + +#: src/gui/settings.cpp:4198 +msgid "Lower key (pressed)" +msgstr "" + +#: src/gui/settings.cpp:4201 src/gui/clock.cpp:31 src/gui/guiConst.cpp:610 +msgid "Clock" +msgstr "" + +#: src/gui/settings.cpp:4202 +msgid "Clock text" +msgstr "" + +#: src/gui/settings.cpp:4203 +msgid "Beat (off)" +msgstr "" + +#: src/gui/settings.cpp:4204 +msgid "Beat (on)" +msgstr "" + +#: src/gui/settings.cpp:4209 +msgid "PortSet" +msgstr "" + +#: src/gui/settings.cpp:4210 +msgid "Port" +msgstr "" + +#: src/gui/settings.cpp:4211 +msgid "Port (hidden/unavailable)" +msgstr "" + +#: src/gui/settings.cpp:4212 +msgid "Connection (selected)" +msgstr "" + +#: src/gui/settings.cpp:4213 +msgid "Connection (other)" +msgstr "" + +#: src/gui/settings.cpp:4219 +msgid "Waveform data" +msgstr "" + +#: src/gui/settings.cpp:4222 +msgid "Reserved" +msgstr "" + +#: src/gui/settings.cpp:4224 +msgid "Sample (alternate 1)" +msgstr "" + +#: src/gui/settings.cpp:4225 +msgid "Sample (alternate 2)" +msgstr "" + +#: src/gui/settings.cpp:4226 +msgid "Sample (alternate 3)" +msgstr "" + +#: src/gui/settings.cpp:4227 +msgid "Wave RAM" +msgstr "" + +#: src/gui/settings.cpp:4228 +msgid "Wavetable (static)" +msgstr "" + +#: src/gui/settings.cpp:4229 +msgid "Echo buffer" +msgstr "" + +#: src/gui/settings.cpp:4230 +msgid "Namco 163 load pos" +msgstr "" + +#: src/gui/settings.cpp:4231 +msgid "Namco 163 play pos" +msgstr "" + +#: src/gui/settings.cpp:4232 +msgid "Sample (bank 0)" +msgstr "" + +#: src/gui/settings.cpp:4233 +msgid "Sample (bank 1)" +msgstr "" + +#: src/gui/settings.cpp:4234 +msgid "Sample (bank 2)" +msgstr "" + +#: src/gui/settings.cpp:4235 +msgid "Sample (bank 3)" +msgstr "" + +#: src/gui/settings.cpp:4236 +msgid "Sample (bank 4)" +msgstr "" + +#: src/gui/settings.cpp:4237 +msgid "Sample (bank 5)" +msgstr "" + +#: src/gui/settings.cpp:4238 +msgid "Sample (bank 6)" +msgstr "" + +#: src/gui/settings.cpp:4239 +msgid "Sample (bank 7)" +msgstr "" + +#: src/gui/settings.cpp:4244 +msgid "Log level: Error" +msgstr "" + +#: src/gui/settings.cpp:4245 +msgid "Log level: Warning" +msgstr "" + +#: src/gui/settings.cpp:4246 +msgid "Log level: Info" +msgstr "" + +#: src/gui/settings.cpp:4247 +msgid "Log level: Debug" +msgstr "" + +#: src/gui/settings.cpp:4248 +msgid "Log level: Trace/Verbose" +msgstr "" + +#: src/gui/settings.cpp:4253 +msgid "Backup" +msgstr "" + +#: src/gui/settings.cpp:4258 +msgid "Enable backup system" +msgstr "" + +#: src/gui/settings.cpp:4263 +msgid "Interval (in seconds)" +msgstr "" + +#: src/gui/settings.cpp:4268 +msgid "Backups per file" +msgstr "" + +#: src/gui/settings.cpp:4274 +msgid "Backup Management" +msgstr "" + +#: src/gui/settings.cpp:4278 +msgid "Purge before:" +msgstr "" + +#: src/gui/settings.cpp:4352 +msgid "Go##PDate" +msgstr "" + +#: src/gui/settings.cpp:4359 +#, c-format +msgid "%PB used" +msgstr "" + +#: src/gui/settings.cpp:4361 +#, c-format +msgid "%TB used" +msgstr "" + +#: src/gui/settings.cpp:4363 +#, c-format +msgid "%GB used" +msgstr "" + +#: src/gui/settings.cpp:4365 +#, c-format +msgid "%MB used" +msgstr "" + +#: src/gui/settings.cpp:4367 +#, c-format +msgid "%KB used" +msgstr "" + +#: src/gui/settings.cpp:4369 +#, c-format +msgid "% bytes used" +msgstr "" + +#: src/gui/settings.cpp:4374 +msgid "Refresh" +msgstr "" + +#: src/gui/settings.cpp:4378 +msgid "Delete all" +msgstr "" + +#: src/gui/settings.cpp:4384 src/gui/settings.cpp:6688 +msgid "Size" +msgstr "" + +#: src/gui/settings.cpp:4385 +msgid "Latest" +msgstr "" + +#: src/gui/settings.cpp:4395 +#, c-format +msgid "%P" +msgstr "" + +#: src/gui/settings.cpp:4397 +#, c-format +msgid "%T" +msgstr "" + +#: src/gui/settings.cpp:4399 +#, c-format +msgid "%G" +msgstr "" + +#: src/gui/settings.cpp:4401 +#, c-format +msgid "%M" +msgstr "" + +#: src/gui/settings.cpp:4403 +#, c-format +msgid "%K" +msgstr "" + +#: src/gui/settings.cpp:4405 +#, c-format +msgid "%" +msgstr "" + +#: src/gui/settings.cpp:4529 +msgid "Cheat Codes" +msgstr "" + +#: src/gui/settings.cpp:4531 +msgid "Enter code:" +msgstr "" + +#: src/gui/settings.cpp:4533 +msgid "Submit" +msgstr "" + +#: src/gui/settings.cpp:4537 +msgid "invalid code" +msgstr "" + +#: src/gui/settings.cpp:4547 +msgid "toggled alternate UI" +msgstr "" + +#: src/gui/settings.cpp:4551 +msgid ":smile: :star_struck: :sunglasses: :ok_hand:" +msgstr "" + +#: src/gui/settings.cpp:4555 +msgid "enabled all instrument types" +msgstr "" + +#: src/gui/settings.cpp:4559 +msgid "OK, if I bring your Partial pitch linearity will you stop bothering me?" +msgstr "" + +#: src/gui/settings.cpp:4563 +msgid "unlocked audio multi-threading options!" +msgstr "" + +#: src/gui/settings.cpp:4567 +msgid "enabled \"comfortable\" mode" +msgstr "" + +#: src/gui/settings.cpp:4585 +msgid "OK##SettingsOK" +msgstr "" + +#: src/gui/settings.cpp:4591 +msgid "Cancel##SettingsCancel" +msgstr "" + +#: src/gui/settings.cpp:4599 +msgid "Apply##SettingsApply" +msgstr "" + +#: src/gui/settings.cpp:5673 +msgid "could not initialize audio!" +msgstr "" + +#: src/gui/settings.cpp:5683 src/gui/gui.cpp:4067 src/gui/gui.cpp:6662 +#: src/gui/gui.cpp:7088 +msgid "error while loading fonts! please check your settings." +msgstr "" + +#: src/gui/settings.cpp:5862 +#, c-format +msgid "error while loading config! (%s)" +msgstr "" + +#: src/gui/settings.cpp:6675 +msgid "[Dir]" +msgstr "" + +#: src/gui/settings.cpp:6676 +msgid "[Link]" +msgstr "" + +#: src/gui/settings.cpp:6677 +msgid "[File]" +msgstr "" + +#: src/gui/settings.cpp:6678 +msgid "Name:" +msgstr "" + +#: src/gui/settings.cpp:6679 +msgid "Path:" +msgstr "" + +#: src/gui/settings.cpp:6680 +msgid "Reset search" +msgstr "" + +#: src/gui/settings.cpp:6681 +msgid "Drives" +msgstr "" + +#: src/gui/settings.cpp:6682 +msgid "" +"Edit path\n" +"You can also right click on path buttons" +msgstr "" + +#: src/gui/settings.cpp:6683 +msgid "Go to home directory" +msgstr "" + +#: src/gui/settings.cpp:6684 +msgid "Go to parent directory" +msgstr "" + +#: src/gui/settings.cpp:6685 +msgid "Create Directory" +msgstr "" + +#: src/gui/settings.cpp:6686 +msgid "File name" +msgstr "" + +#: src/gui/settings.cpp:6689 +msgid "Date" +msgstr "" + +#: src/gui/settings.cpp:6690 src/gui/gui.cpp:5510 src/gui/gui.cpp:5645 +#: src/gui/gui.cpp:5646 +msgid "Warning" +msgstr "" + +#: src/gui/settings.cpp:6691 +msgid "The file you selected already exists! Would you like to overwrite it?" +msgstr "" + +#: src/gui/settings.cpp:6692 src/gui/gui.cpp:5650 src/gui/gui.cpp:5674 +#: src/gui/gui.cpp:5698 src/gui/gui.cpp:5722 src/gui/gui.cpp:5746 +#: src/gui/gui.cpp:5770 src/gui/gui.cpp:5802 src/gui/gui.cpp:5818 +#: src/gui/gui.cpp:5829 src/gui/gui.cpp:5841 src/gui/gui.cpp:5995 +#: src/gui/gui.cpp:6017 src/gui/gui.cpp:6032 src/gui/gui.cpp:6043 +msgid "Yes" +msgstr "" + +#: src/gui/settings.cpp:6693 src/gui/findReplace.cpp:828 src/gui/gui.cpp:5664 +#: src/gui/gui.cpp:5688 src/gui/gui.cpp:5712 src/gui/gui.cpp:5736 +#: src/gui/gui.cpp:5760 src/gui/gui.cpp:5788 src/gui/gui.cpp:5813 +#: src/gui/gui.cpp:5824 src/gui/gui.cpp:5836 src/gui/gui.cpp:5848 +#: src/gui/gui.cpp:6012 src/gui/gui.cpp:6027 src/gui/gui.cpp:6037 +#: src/gui/gui.cpp:6050 +msgid "No" +msgstr "" + +#: src/gui/settings.cpp:6694 +msgid "%Y/%m/%d %H:%M" +msgstr "" + +#: src/gui/orders.cpp:114 +msgid "Add new order" +msgstr "" + +#: src/gui/orders.cpp:125 src/gui/guiConst.cpp:794 +msgid "Remove order" +msgstr "" + +#: src/gui/orders.cpp:137 +msgid "Duplicate order (right-click to deep clone)" +msgstr "" + +#: src/gui/orders.cpp:146 src/gui/guiConst.cpp:795 +msgid "Move order up" +msgstr "" + +#: src/gui/orders.cpp:155 src/gui/guiConst.cpp:796 +msgid "Move order down" +msgstr "" + +#: src/gui/orders.cpp:167 +msgid "Place copy of current order at end of song (right-click to deep clone)" +msgstr "" + +#: src/gui/orders.cpp:177 +msgid "Order change mode: entire row" +msgstr "" + +#: src/gui/orders.cpp:179 +msgid "Order change mode: one" +msgstr "" + +#: src/gui/orders.cpp:205 +msgid "Order edit mode: Select and type (scroll vertically)" +msgstr "" + +#: src/gui/orders.cpp:207 +msgid "Order edit mode: Select and type (scroll horizontally)" +msgstr "" + +#: src/gui/orders.cpp:209 +msgid "Order edit mode: Select and type (don't scroll)" +msgstr "" + +#: src/gui/orders.cpp:211 +msgid "Order edit mode: Click to change" +msgstr "" + +#: src/gui/findReplace.cpp:29 +msgid "ignore" +msgstr "" + +#: src/gui/findReplace.cpp:30 +msgid "equals" +msgstr "" + +#: src/gui/findReplace.cpp:31 +msgid "not equal" +msgstr "" + +#: src/gui/findReplace.cpp:32 +msgid "between" +msgstr "" + +#: src/gui/findReplace.cpp:33 +msgid "not between" +msgstr "" + +#: src/gui/findReplace.cpp:34 +msgid "any" +msgstr "" + +#: src/gui/findReplace.cpp:35 src/gui/guiConst.cpp:217 +msgid "none" +msgstr "" + +#: src/gui/findReplace.cpp:39 +msgid "set" +msgstr "" + +#: src/gui/findReplace.cpp:40 +msgid "add" +msgstr "" + +#: src/gui/findReplace.cpp:41 +msgid "add (overflow)" +msgstr "" + +#: src/gui/findReplace.cpp:42 +msgid "scale %" +msgstr "" + +#: src/gui/findReplace.cpp:512 src/gui/guiConst.cpp:609 +msgid "Find/Replace" +msgstr "" + +#: src/gui/findReplace.cpp:520 src/gui/findReplace.cpp:850 +msgid "Find" +msgstr "" + +#: src/gui/findReplace.cpp:526 src/gui/findReplace.cpp:535 +msgid "order" +msgstr "" + +#: src/gui/findReplace.cpp:527 src/gui/findReplace.cpp:537 +msgid "row" +msgstr "" + +#: src/gui/findReplace.cpp:539 src/gui/csPlayer.cpp:146 +msgid "channel" +msgstr "" + +#: src/gui/findReplace.cpp:541 +msgid "go" +msgstr "" + +#: src/gui/findReplace.cpp:585 +msgid "no matches found!" +msgstr "" + +#: src/gui/findReplace.cpp:587 +msgid "Back" +msgstr "" + +#: src/gui/findReplace.cpp:750 +msgid "Delete query" +msgstr "" + +#: src/gui/findReplace.cpp:754 src/gui/findReplace.cpp:1037 +msgid "Add effect" +msgstr "" + +#: src/gui/findReplace.cpp:761 src/gui/findReplace.cpp:1044 +msgid "Remove effect" +msgstr "" + +#: src/gui/findReplace.cpp:786 +msgid "Search range:" +msgstr "" + +#: src/gui/findReplace.cpp:799 +msgid "Confine to channels" +msgstr "" + +#: src/gui/findReplace.cpp:803 src/gui/sampleEdit.cpp:1152 +msgid "From" +msgstr "" + +#: src/gui/findReplace.cpp:814 src/gui/sampleEdit.cpp:1156 +msgid "To" +msgstr "" + +#: src/gui/findReplace.cpp:826 +msgid "Match effect position:" +msgstr "" + +#: src/gui/findReplace.cpp:832 +msgid "match effects regardless of position." +msgstr "" + +#: src/gui/findReplace.cpp:834 src/gui/compatFlags.cpp:288 +msgid "Lax" +msgstr "" + +#: src/gui/findReplace.cpp:838 +msgid "match effects only if they appear in-order." +msgstr "" + +#: src/gui/findReplace.cpp:840 src/gui/compatFlags.cpp:276 +msgid "Strict" +msgstr "" + +#: src/gui/findReplace.cpp:844 +msgid "match effects only if they appear exactly as specified." +msgstr "" + +#: src/gui/findReplace.cpp:856 +msgid "Replace" +msgstr "" + +#: src/gui/findReplace.cpp:908 +msgid "INVALID" +msgstr "" + +#: src/gui/findReplace.cpp:1052 +msgid "Effect replace mode:" +msgstr "" + +#: src/gui/findReplace.cpp:1053 +msgid "Replace matches only" +msgstr "" + +#: src/gui/findReplace.cpp:1056 +msgid "Replace matches, then free spaces" +msgstr "" + +#: src/gui/findReplace.cpp:1059 +msgid "Clear effects" +msgstr "" + +#: src/gui/findReplace.cpp:1062 +msgid "Insert in free spaces" +msgstr "" + +#: src/gui/findReplace.cpp:1065 +msgid "Replace##QueryReplace" +msgstr "" + +#: src/gui/about.cpp:26 +msgid "is proud to present" +msgstr "" + +#: src/gui/about.cpp:30 +msgid "the biggest multi-system chiptune tracker!" +msgstr "" + +#: src/gui/about.cpp:31 +msgid "featuring DefleMask song compatibility." +msgstr "" + +#: src/gui/about.cpp:33 +msgid "> CREDITS <" +msgstr "" + +#: src/gui/about.cpp:35 +msgid "-- program --" +msgstr "" + +#: src/gui/about.cpp:37 +msgid "A M 4 N (intro tune)" +msgstr "" + +#: src/gui/about.cpp:52 +msgid "-- graphics/UI design --" +msgstr "" + +#: src/gui/about.cpp:59 +msgid "-- documentation --" +msgstr "" + +#: src/gui/about.cpp:69 +msgid "-- localization/translation team --" +msgstr "" + +#: src/gui/about.cpp:81 +msgid "-- demo songs --" +msgstr "" + +#: src/gui/about.cpp:207 +msgid "-- additional feedback/fixes --" +msgstr "" + +#: src/gui/about.cpp:218 +msgid "-- Metal backend test team --" +msgstr "" + +#: src/gui/about.cpp:224 +msgid "-- DirectX 9 backend test team --" +msgstr "" + +#: src/gui/about.cpp:231 +msgid "powered by:" +msgstr "" + +#: src/gui/about.cpp:232 +msgid "Dear ImGui by Omar Cornut" +msgstr "" + +#: src/gui/about.cpp:233 +msgid "SDL2 by Sam Lantinga" +msgstr "" + +#: src/gui/about.cpp:237 +msgid "zlib by Jean-loup Gailly" +msgstr "" + +#: src/gui/about.cpp:238 +msgid "and Mark Adler" +msgstr "" + +#: src/gui/about.cpp:239 +msgid "libsndfile by Erik de Castro Lopo" +msgstr "" + +#: src/gui/about.cpp:240 +msgid "Portable File Dialogs by Sam Hocevar" +msgstr "" + +#: src/gui/about.cpp:241 +msgid "Native File Dialog by Frogtoss Games" +msgstr "" + +#: src/gui/about.cpp:243 +msgid "Weak-JACK by x42" +msgstr "" + +#: src/gui/about.cpp:244 +msgid "RtMidi by Gary P. Scavone" +msgstr "" + +#: src/gui/about.cpp:245 +msgid "FFTW by Matteo Frigo and Steven G. Johnson" +msgstr "" + +#: src/gui/about.cpp:246 +msgid "backward-cpp by Google" +msgstr "" + +#: src/gui/about.cpp:247 +msgid "adpcm by superctr" +msgstr "" + +#: src/gui/about.cpp:248 +msgid "adpcm-xq by David Bryant" +msgstr "" + +#: src/gui/about.cpp:249 +msgid "Nuked-OPL3/OPLL/OPM/OPN2/PSG by nukeykt" +msgstr "" + +#: src/gui/about.cpp:250 +msgid "YM3812-LLE, YMF262-LLE, YMF276-LLE and YM2608-LLE by nukeykt" +msgstr "" + +#: src/gui/about.cpp:251 +msgid "ESFMu (modified version) by Kagamiin~" +msgstr "" + +#: src/gui/about.cpp:252 +msgid "ymfm by Aaron Giles" +msgstr "" + +#: src/gui/about.cpp:253 +msgid "emu2413 by Digital Sound Antiques" +msgstr "" + +#: src/gui/about.cpp:254 +msgid "MAME SN76496 by Nicola Salmoria" +msgstr "" + +#: src/gui/about.cpp:255 +msgid "MAME AY-3-8910 by Couriersud" +msgstr "" + +#: src/gui/about.cpp:256 +msgid "with AY8930 fixes by Eulous, cam900 and Grauw" +msgstr "" + +#: src/gui/about.cpp:257 +msgid "MAME SAA1099 by Juergen Buchmueller and Manuel Abadia" +msgstr "" + +#: src/gui/about.cpp:258 +msgid "MAME Namco WSG by Nicola Salmoria and Aaron Giles" +msgstr "" + +#: src/gui/about.cpp:259 +msgid "MAME RF5C68 core by Olivier Galibert and Aaron Giles" +msgstr "" + +#: src/gui/about.cpp:260 +msgid "MAME MSM5232 core by Jarek Burczynski and Hiromitsu Shioya" +msgstr "" + +#: src/gui/about.cpp:261 +msgid "MAME MSM6258 core by Barry Rodewald" +msgstr "" + +#: src/gui/about.cpp:262 +msgid "MAME YMZ280B core by Aaron Giles" +msgstr "" + +#: src/gui/about.cpp:263 +msgid "MAME GA20 core by Acho A. Tang and R. Belmont" +msgstr "" + +#: src/gui/about.cpp:264 +msgid "MAME SegaPCM core by Hiromitsu Shioya and Olivier Galibert" +msgstr "" + +#: src/gui/about.cpp:265 +msgid "SAASound by Dave Hooper and Simon Owen" +msgstr "" + +#: src/gui/about.cpp:266 +msgid "SameBoy by Lior Halphon" +msgstr "" + +#: src/gui/about.cpp:267 +msgid "Mednafen PCE, WonderSwan, T6W28 and Virtual Boy audio cores" +msgstr "" + +#: src/gui/about.cpp:268 +msgid "SNES DSP core by Blargg" +msgstr "" + +#: src/gui/about.cpp:269 +msgid "puNES (NES, MMC5 and FDS) by FHorse" +msgstr "" + +#: src/gui/about.cpp:270 +msgid "NSFPlay (NES and FDS) by Brad Smith and Brezza" +msgstr "" + +#: src/gui/about.cpp:271 +msgid "reSID by Dag Lem" +msgstr "" + +#: src/gui/about.cpp:272 +msgid "reSIDfp by Dag Lem, Antti Lankila" +msgstr "" + +#: src/gui/about.cpp:273 +msgid "and Leandro Nini" +msgstr "" + +#: src/gui/about.cpp:274 +msgid "dSID by DefleMask Team based on jsSID" +msgstr "" + +#: src/gui/about.cpp:275 +msgid "Stella by Stella Team" +msgstr "" + +#: src/gui/about.cpp:276 +msgid "QSound emulator by superctr and Valley Bell" +msgstr "" + +#: src/gui/about.cpp:277 +msgid "VICE VIC-20 sound core by Rami Rasanen and viznut" +msgstr "" + +#: src/gui/about.cpp:278 +msgid "VICE TED sound core by Andreas Boose, Tibor Biczo" +msgstr "" + +#: src/gui/about.cpp:279 +msgid "and Marco van den Heuvel" +msgstr "" + +#: src/gui/about.cpp:280 +msgid "VERA sound core by Frank van den Hoef" +msgstr "" + +#: src/gui/about.cpp:281 +msgid "mzpokeysnd POKEY emulator by Michael Borisov" +msgstr "" + +#: src/gui/about.cpp:282 +msgid "ASAP POKEY emulator by Piotr Fusik" +msgstr "" + +#: src/gui/about.cpp:283 +msgid "ported by laoo to C++" +msgstr "" + +#: src/gui/about.cpp:284 +msgid "vgsound_emu (second version, modified version) by cam900" +msgstr "" + +#: src/gui/about.cpp:285 +msgid "SM8521 emulator (modified version) by cam900" +msgstr "" + +#: src/gui/about.cpp:286 +msgid "D65010G031 emulator (modified version) by cam900" +msgstr "" + +#: src/gui/about.cpp:287 +msgid "Namco C140/C219 emulator (modified version) by cam900" +msgstr "" + +#: src/gui/about.cpp:288 +msgid "PowerNoise emulator by scratchminer" +msgstr "" + +#: src/gui/about.cpp:289 +msgid "ep128emu by Istvan Varga" +msgstr "" + +#: src/gui/about.cpp:290 +msgid "NDS sound emulator by cam900" +msgstr "" + +#: src/gui/about.cpp:292 +msgid "greetings to:" +msgstr "" + +#: src/gui/about.cpp:295 +msgid "all members of Deflers of Noice!" +msgstr "" + +#: src/gui/about.cpp:301 +msgid "copyright © 2021-2024 tildearrow" +msgstr "" + +#: src/gui/about.cpp:302 +msgid "(and contributors)." +msgstr "" + +#: src/gui/about.cpp:303 +msgid "licensed under GPLv2+! see" +msgstr "" + +#: src/gui/about.cpp:304 +msgid "LICENSE for more information." +msgstr "" + +#: src/gui/about.cpp:306 +msgid "help Furnace grow:" +msgstr "" + +#: src/gui/about.cpp:309 +msgid "contact tildearrow at:" +msgstr "" + +#: src/gui/about.cpp:312 +msgid "disclaimer:" +msgstr "" + +#: src/gui/about.cpp:313 +msgid "despite the fact this program works" +msgstr "" + +#: src/gui/about.cpp:314 +msgid "with the .dmf file format, it is NOT" +msgstr "" + +#: src/gui/about.cpp:315 +msgid "affiliated with Delek or DefleMask in" +msgstr "" + +#: src/gui/about.cpp:316 +msgid "any way, nor it is a replacement for" +msgstr "" + +#: src/gui/about.cpp:317 +msgid "the original program." +msgstr "" + +#: src/gui/about.cpp:319 +msgid "it also comes with ABSOLUTELY NO WARRANTY." +msgstr "" + +#: src/gui/about.cpp:321 +msgid "thanks to all contributors/bug reporters!" +msgstr "" + +#: src/gui/about.cpp:328 +msgid "About Furnace" +msgstr "" + +#: src/gui/about.cpp:418 +msgid "Unsaved changes! Save changes before playing?" +msgstr "" + +#: src/gui/compatFlags.cpp:31 src/gui/guiConst.cpp:598 +msgid "Compatibility Flags" +msgstr "" + +#: src/gui/compatFlags.cpp:32 +msgid "" +"these flags are designed to provide better DefleMask/older Furnace " +"compatibility.\n" +"it is recommended to disable most of these unless you rely on specific " +"quirks." +msgstr "" + +#: src/gui/compatFlags.cpp:34 src/gui/compatFlags.cpp:310 +msgid "DefleMask" +msgstr "" + +#: src/gui/compatFlags.cpp:35 +msgid "Limit slide range" +msgstr "" + +#: src/gui/compatFlags.cpp:37 +msgid "" +"when enabled, slides are limited to a compatible range.\n" +"may cause problems with slides in negative octaves." +msgstr "" + +#: src/gui/compatFlags.cpp:39 +msgid "Compatible noise layout on NES and PC Engine" +msgstr "" + +#: src/gui/compatFlags.cpp:41 +msgid "" +"use a rather unusual compatible noise frequency layout.\n" +"removes some noise frequencies on PC Engine." +msgstr "" + +#: src/gui/compatFlags.cpp:43 +msgid "Game Boy instrument duty is wave volume" +msgstr "" + +#: src/gui/compatFlags.cpp:45 +msgid "" +"if enabled, an instrument with duty macro in the wave channel will be mapped " +"to wavetable volume." +msgstr "" + +#: src/gui/compatFlags.cpp:48 +msgid "Restart macro on portamento" +msgstr "" + +#: src/gui/compatFlags.cpp:50 +msgid "" +"when enabled, a portamento effect will reset the channel's macro if used in " +"combination with a note." +msgstr "" + +#: src/gui/compatFlags.cpp:52 +msgid "Legacy volume slides" +msgstr "" + +#: src/gui/compatFlags.cpp:54 +msgid "" +"simulate glitchy volume slide behavior by silently overflowing the volume " +"when the slide goes below 0." +msgstr "" + +#: src/gui/compatFlags.cpp:56 +msgid "Compatible arpeggio" +msgstr "" + +#: src/gui/compatFlags.cpp:58 +msgid "delay arpeggio by one tick on every new note." +msgstr "" + +#: src/gui/compatFlags.cpp:60 +msgid "Disable DAC when sample ends" +msgstr "" + +#: src/gui/compatFlags.cpp:62 +msgid "" +"when enabled, the DAC in YM2612 will be disabled if there isn't any sample " +"playing." +msgstr "" + +#: src/gui/compatFlags.cpp:64 +msgid "Broken speed alternation" +msgstr "" + +#: src/gui/compatFlags.cpp:66 +msgid "" +"determines next speed based on whether the row is odd/even instead of " +"alternating between speeds." +msgstr "" + +#: src/gui/compatFlags.cpp:68 +msgid "Ignore duplicate slide effects" +msgstr "" + +#: src/gui/compatFlags.cpp:70 +msgid "" +"if this is on, only the first slide of a row in a channel will be considered." +msgstr "" + +#: src/gui/compatFlags.cpp:72 +msgid "Ignore 0Dxx on the last order" +msgstr "" + +#: src/gui/compatFlags.cpp:74 +msgid "" +"if this is on, a jump to next row effect will not take place when it is on " +"the last order of a song." +msgstr "" + +#: src/gui/compatFlags.cpp:76 +msgid "Buggy portamento after pitch slide" +msgstr "" + +#: src/gui/compatFlags.cpp:78 +msgid "simulates a bug in where portamento does not work after sliding." +msgstr "" + +#: src/gui/compatFlags.cpp:80 +msgid "FM pitch slide octave boundary odd behavior" +msgstr "" + +#: src/gui/compatFlags.cpp:82 +msgid "" +"if this is on, a pitch slide that crosses the octave boundary will stop for " +"one tick and then continue from the nearest octave boundary.\n" +"for .dmf compatibility." +msgstr "" + +#: src/gui/compatFlags.cpp:84 +msgid "Don't apply Game Boy envelope on note-less instrument change" +msgstr "" + +#: src/gui/compatFlags.cpp:86 +msgid "if this is on, an instrument change will not affect the envelope." +msgstr "" + +#: src/gui/compatFlags.cpp:88 +msgid "Ignore DAC mode change outside of intended channel in ExtCh mode" +msgstr "" + +#: src/gui/compatFlags.cpp:90 +msgid "if this is on, 17xx has no effect on the operator channels in YM2612." +msgstr "" + +#: src/gui/compatFlags.cpp:92 +msgid "E1xy/E2xy also take priority over slide stops" +msgstr "" + +#: src/gui/compatFlags.cpp:94 +msgid "does this make any sense by now?" +msgstr "" + +#: src/gui/compatFlags.cpp:96 +msgid "E1xy/E2xy stop when repeating the same note" +msgstr "" + +#: src/gui/compatFlags.cpp:98 +msgid "ugh, if only this wasn't a thing..." +msgstr "" + +#: src/gui/compatFlags.cpp:100 +msgid "SN76489 duty macro always resets phase" +msgstr "" + +#: src/gui/compatFlags.cpp:102 +msgid "" +"when enabled, duty macro will always reset phase, even if its value hasn't " +"changed." +msgstr "" + +#: src/gui/compatFlags.cpp:104 +msgid "Broken volume scaling strategy" +msgstr "" + +#: src/gui/compatFlags.cpp:106 +msgid "" +"when enabled:\n" +"- log scaling: multiply\n" +"- linear scaling: subtract\n" +"when disabled:\n" +"- log scaling: subtract\n" +"- linear scaling: multiply" +msgstr "" + +#: src/gui/compatFlags.cpp:108 +msgid "Don't persist volume macro after it finishes" +msgstr "" + +#: src/gui/compatFlags.cpp:110 +msgid "" +"when enabled, a value in the volume column that happens after the volume " +"macro is done will disregard the macro." +msgstr "" + +#: src/gui/compatFlags.cpp:112 +msgid "Broken output volume on instrument change" +msgstr "" + +#: src/gui/compatFlags.cpp:114 +msgid "" +"if enabled, no checks for the presence of a volume macro will be made.\n" +"this will cause the last macro value to linger unless a value in the volume " +"column is present." +msgstr "" + +#: src/gui/compatFlags.cpp:116 +msgid "Broken output volume - Episode 2 (PLEASE KEEP ME DISABLED)" +msgstr "" + +#: src/gui/compatFlags.cpp:118 +msgid "" +"these compatibility flags are getting SO damn ridiculous and out of " +"control.\n" +"as you may have guessed, this one exists due to yet ANOTHER DefleMask-" +"specific behavior.\n" +"please keep this off at all costs, because I will not support it when ROM " +"export comes.\n" +"oh, and don't start an argument out of it. Furnace isn't a DefleMask " +"replacement, and no,\n" +"I am not trying to make it look like one with all these flags.\n" +"\n" +"oh, and what about the other flags that don't have to do with DefleMask?\n" +"those are for .mod import, future FamiTracker import and personal taste!\n" +"\n" +"end of rant" +msgstr "" + +#: src/gui/compatFlags.cpp:120 +msgid "Treat SN76489 periods under 8 as 1" +msgstr "" + +#: src/gui/compatFlags.cpp:122 +msgid "" +"when enabled, any SN period under 8 will be written as 1 instead.\n" +"this replicates DefleMask behavior, but reduces available period range." +msgstr "" + +#: src/gui/compatFlags.cpp:126 src/gui/compatFlags.cpp:304 +msgid "Old Furnace" +msgstr "" + +#: src/gui/compatFlags.cpp:127 +msgid "Arpeggio inhibits non-porta slides" +msgstr "" + +#: src/gui/compatFlags.cpp:129 src/gui/compatFlags.cpp:133 +msgid "behavior changed in 0.5.5" +msgstr "" + +#: src/gui/compatFlags.cpp:131 +msgid "Wack FM algorithm macro" +msgstr "" + +#: src/gui/compatFlags.cpp:135 +msgid "Broken shortcut slides (E1xy/E2xy)" +msgstr "" + +#: src/gui/compatFlags.cpp:137 +msgid "behavior changed in 0.5.7" +msgstr "" + +#: src/gui/compatFlags.cpp:139 +msgid "Stop portamento on note off" +msgstr "" + +#: src/gui/compatFlags.cpp:141 src/gui/compatFlags.cpp:145 +#: src/gui/compatFlags.cpp:149 src/gui/compatFlags.cpp:153 +#: src/gui/compatFlags.cpp:157 src/gui/compatFlags.cpp:161 +#: src/gui/compatFlags.cpp:165 +msgid "behavior changed in 0.6pre1" +msgstr "" + +#: src/gui/compatFlags.cpp:143 +msgid "Don't allow instrument change during slides" +msgstr "" + +#: src/gui/compatFlags.cpp:147 +msgid "Don't reset note to base on arpeggio stop" +msgstr "" + +#: src/gui/compatFlags.cpp:151 +msgid "ExtCh channel status is not shared among operators" +msgstr "" + +#: src/gui/compatFlags.cpp:155 +msgid "Disable new SegaPCM features (macros and better panning)" +msgstr "" + +#: src/gui/compatFlags.cpp:159 +msgid "Old FM octave boundary behavior" +msgstr "" + +#: src/gui/compatFlags.cpp:163 +msgid "Disable OPN2 DAC volume control" +msgstr "" + +#: src/gui/compatFlags.cpp:167 +msgid "Broken initial position of portamento after arpeggio" +msgstr "" + +#: src/gui/compatFlags.cpp:169 +msgid "behavior changed in 0.6pre1.5" +msgstr "" + +#: src/gui/compatFlags.cpp:171 +msgid "Disable new sample features" +msgstr "" + +#: src/gui/compatFlags.cpp:173 src/gui/compatFlags.cpp:177 +msgid "behavior changed in 0.6pre2" +msgstr "" + +#: src/gui/compatFlags.cpp:175 +msgid "Old arpeggio macro + pitch slide strategy" +msgstr "" + +#: src/gui/compatFlags.cpp:179 +msgid "Broken portamento during legato" +msgstr "" + +#: src/gui/compatFlags.cpp:181 +msgid "behavior changed in 0.6pre4" +msgstr "" + +#: src/gui/compatFlags.cpp:183 +msgid "Broken macros in some FM chips after note off" +msgstr "" + +#: src/gui/compatFlags.cpp:185 +msgid "behavior changed in 0.6pre5" +msgstr "" + +#: src/gui/compatFlags.cpp:187 +msgid "Pre-note does not take effects into consideration" +msgstr "" + +#: src/gui/compatFlags.cpp:189 +msgid "behavior changed in 0.6pre9" +msgstr "" + +#: src/gui/compatFlags.cpp:191 +msgid "Disable new NES DPCM features" +msgstr "" + +#: src/gui/compatFlags.cpp:193 +msgid "behavior changed in 0.6.1" +msgstr "" + +#: src/gui/compatFlags.cpp:195 +msgid "Legacy technical ALWAYS_SET_VOLUME behavior" +msgstr "" + +#: src/gui/compatFlags.cpp:197 +msgid "" +"behavior changed in 0.6.1\n" +"this flag will be removed if I find out that none of the songs break after " +"disabling it." +msgstr "" + +#: src/gui/compatFlags.cpp:199 +msgid "Old sample offset effect" +msgstr "" + +#: src/gui/compatFlags.cpp:201 +msgid "behavior changed in 0.6.3" +msgstr "" + +#: src/gui/compatFlags.cpp:205 +msgid ".mod import" +msgstr "" + +#: src/gui/compatFlags.cpp:206 +msgid "Don't slide on the first tick of a row" +msgstr "" + +#: src/gui/compatFlags.cpp:208 +msgid "" +"simulates ProTracker's behavior of not applying volume/pitch slides on the " +"first tick of a row." +msgstr "" + +#: src/gui/compatFlags.cpp:210 +msgid "Reset arpeggio position on row change" +msgstr "" + +#: src/gui/compatFlags.cpp:212 +msgid "" +"simulates ProTracker's behavior of arpeggio being bound to the current tick " +"of a row." +msgstr "" + +#: src/gui/compatFlags.cpp:216 +msgid "Pitch/Playback" +msgstr "" + +#: src/gui/compatFlags.cpp:217 +msgid "Pitch linearity:" +msgstr "" + +#: src/gui/compatFlags.cpp:223 +msgid "like ProTracker/FamiTracker" +msgstr "" + +#: src/gui/compatFlags.cpp:227 +msgid "Partial (only 04xy/E5xx)" +msgstr "" + +#: src/gui/compatFlags.cpp:231 +msgid "" +"like DefleMask\n" +"\n" +"this pitch linearity mode is deprecated due to:\n" +"- excessive complexity\n" +"- lack of possible optimization\n" +"\n" +"it is recommended to change it now because I will remove this option in the " +"future!" +msgstr "" + +#: src/gui/compatFlags.cpp:235 +msgid "Full" +msgstr "" + +#: src/gui/compatFlags.cpp:239 +msgid "like Impulse Tracker" +msgstr "" + +#: src/gui/compatFlags.cpp:246 +msgid "Pitch slide speed multiplier" +msgstr "" + +#: src/gui/compatFlags.cpp:252 +msgid "Loop modality:" +msgstr "" + +#: src/gui/compatFlags.cpp:254 +msgid "Reset channels" +msgstr "" + +#: src/gui/compatFlags.cpp:258 +msgid "" +"select to reset channels on loop. may trigger a voltage click on every loop!" +msgstr "" + +#: src/gui/compatFlags.cpp:260 +msgid "Soft reset channels" +msgstr "" + +#: src/gui/compatFlags.cpp:264 +msgid "select to turn channels off on loop." +msgstr "" + +#: src/gui/compatFlags.cpp:266 +msgid "Do nothing" +msgstr "" + +#: src/gui/compatFlags.cpp:270 +msgid "select to not reset channels on loop." +msgstr "" + +#: src/gui/compatFlags.cpp:274 +msgid "Cut/delay effect policy:" +msgstr "" + +#: src/gui/compatFlags.cpp:280 +msgid "only when time is less than speed (like DefleMask/ProTracker)" +msgstr "" + +#: src/gui/compatFlags.cpp:282 +msgid "Strict (old)" +msgstr "" + +#: src/gui/compatFlags.cpp:286 +msgid "only when time is less than or equal to speed (original buggy behavior)" +msgstr "" + +#: src/gui/compatFlags.cpp:292 +msgid "no checks" +msgstr "" + +#: src/gui/compatFlags.cpp:296 +msgid "Simultaneous jump (0B+0D) treatment:" +msgstr "" + +#: src/gui/compatFlags.cpp:302 +msgid "accept 0B+0D to jump to a specific row of an order" +msgstr "" + +#: src/gui/compatFlags.cpp:308 +msgid "only accept the first jump effect" +msgstr "" + +#: src/gui/compatFlags.cpp:314 +msgid "only accept 0Dxx" +msgstr "" + +#: src/gui/compatFlags.cpp:320 +msgid "Auto-insert one tick gap between notes" +msgstr "" + +#: src/gui/compatFlags.cpp:322 +msgid "" +"when enabled, a one-tick note cut will be inserted between non-legato/non-" +"portamento notes.\n" +"this simulates the behavior of some Amiga/SNES music engines.\n" +"\n" +"ineffective on C64." +msgstr "" + +#: src/gui/compatFlags.cpp:327 +msgid "Don't reset slides after note off" +msgstr "" + +#: src/gui/compatFlags.cpp:329 +msgid "when enabled, note off will not reset the channel's slide effect." +msgstr "" + +#: src/gui/compatFlags.cpp:331 +msgid "Don't reset portamento after reaching target" +msgstr "" + +#: src/gui/compatFlags.cpp:333 +msgid "" +"when enabled, the slide effect will not be disabled after it reaches its " +"target." +msgstr "" + +#: src/gui/compatFlags.cpp:335 +msgid "Continuous vibrato" +msgstr "" + +#: src/gui/compatFlags.cpp:337 +msgid "when enabled, vibrato phase/position will not be reset on a new note." +msgstr "" + +#: src/gui/compatFlags.cpp:339 +msgid "Pitch macro is not linear" +msgstr "" + +#: src/gui/compatFlags.cpp:341 +msgid "" +"when enabled, the pitch macro of an instrument is in frequency/period space." +msgstr "" + +#: src/gui/compatFlags.cpp:343 +msgid "Reset arpeggio effect position on new note" +msgstr "" + +#: src/gui/compatFlags.cpp:345 +msgid "when enabled, arpeggio effect (00xy) position is reset on a new note." +msgstr "" + +#: src/gui/compatFlags.cpp:347 +msgid "Volume scaling rounds up" +msgstr "" + +#: src/gui/compatFlags.cpp:349 +msgid "" +"when enabled, volume macros round up when applied\n" +"this prevents volume scaling from causing vol=0, which is silent on some " +"chips\n" +"\n" +"ineffective on logarithmic channels" +msgstr "" + +#: src/gui/guiConst.cpp:127 +msgid "Generic Sample" +msgstr "" + +#: src/gui/guiConst.cpp:155 +msgid "OPL (drums)" +msgstr "" + +#: src/gui/guiConst.cpp:191 +msgid "Forward" +msgstr "" + +#: src/gui/guiConst.cpp:192 +msgid "Backward" +msgstr "" + +#: src/gui/guiConst.cpp:193 +msgid "Ping pong" +msgstr "" + +#: src/gui/guiConst.cpp:218 +msgid "linear" +msgstr "" + +#: src/gui/guiConst.cpp:219 +msgid "cubic spline" +msgstr "" + +#: src/gui/guiConst.cpp:220 +msgid "blep synthesis" +msgstr "" + +#: src/gui/guiConst.cpp:221 +msgid "sinc" +msgstr "" + +#: src/gui/guiConst.cpp:222 +msgid "best possible" +msgstr "" + +#: src/gui/guiConst.cpp:226 src/gui/sampleEdit.cpp:137 +#: src/gui/sampleEdit.cpp:143 +msgid "Invalid" +msgstr "" + +#: src/gui/guiConst.cpp:231 +msgid "Time" +msgstr "" + +#: src/gui/guiConst.cpp:233 +msgid "System (Primary)" +msgstr "" + +#: src/gui/guiConst.cpp:234 +msgid "System (Secondary)" +msgstr "" + +#: src/gui/guiConst.cpp:530 +msgid "---Global" +msgstr "" + +#: src/gui/guiConst.cpp:532 +msgid "Open file" +msgstr "" + +#: src/gui/guiConst.cpp:533 +msgid "Restore backup" +msgstr "" + +#: src/gui/guiConst.cpp:534 +msgid "Save file" +msgstr "" + +#: src/gui/guiConst.cpp:535 +msgid "Save as" +msgstr "" + +#: src/gui/guiConst.cpp:537 src/gui/sampleEdit.cpp:982 +msgid "Undo" +msgstr "" + +#: src/gui/guiConst.cpp:539 src/gui/guiConst.cpp:541 src/gui/sampleEdit.cpp:989 +msgid "Redo" +msgstr "" + +#: src/gui/guiConst.cpp:543 +msgid "Exit" +msgstr "" + +#: src/gui/guiConst.cpp:544 +msgid "Play/Stop (toggle)" +msgstr "" + +#: src/gui/guiConst.cpp:547 +msgid "Play (from beginning)" +msgstr "" + +#: src/gui/guiConst.cpp:548 +msgid "Play (repeat pattern)" +msgstr "" + +#: src/gui/guiConst.cpp:549 +msgid "Play from cursor" +msgstr "" + +#: src/gui/guiConst.cpp:550 +msgid "Step row" +msgstr "" + +#: src/gui/guiConst.cpp:551 +msgid "Octave up" +msgstr "" + +#: src/gui/guiConst.cpp:552 +msgid "Octave down" +msgstr "" + +#: src/gui/guiConst.cpp:553 +msgid "Previous instrument" +msgstr "" + +#: src/gui/guiConst.cpp:554 +msgid "Next instrument" +msgstr "" + +#: src/gui/guiConst.cpp:555 +msgid "Increase edit step" +msgstr "" + +#: src/gui/guiConst.cpp:556 +msgid "Decrease edit step" +msgstr "" + +#: src/gui/guiConst.cpp:557 +msgid "Toggle edit mode" +msgstr "" + +#: src/gui/guiConst.cpp:559 +msgid "Toggle repeat pattern" +msgstr "" + +#: src/gui/guiConst.cpp:562 +msgid "Toggle full-screen" +msgstr "" + +#: src/gui/guiConst.cpp:563 +msgid "Request voice from TX81Z" +msgstr "" + +#: src/gui/guiConst.cpp:565 +msgid "Clear song data" +msgstr "" + +#: src/gui/guiConst.cpp:567 src/gui/gui.cpp:5573 src/gui/gui.cpp:5625 +msgid "Command Palette" +msgstr "" + +#: src/gui/guiConst.cpp:569 +msgid "Recent files (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:570 +msgid "Instruments (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:571 +msgid "Samples (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:572 +msgid "Change instrument (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:573 +msgid "Add chip (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:578 +msgid "Instrument List" +msgstr "" + +#: src/gui/guiConst.cpp:579 src/gui/insEdit.cpp:5203 +msgid "Instrument Editor" +msgstr "" + +#: src/gui/guiConst.cpp:580 +msgid "Song Information" +msgstr "" + +#: src/gui/guiConst.cpp:583 +msgid "Wavetable List" +msgstr "" + +#: src/gui/guiConst.cpp:584 src/gui/waveEdit.cpp:409 +msgid "Wavetable Editor" +msgstr "" + +#: src/gui/guiConst.cpp:585 +msgid "Sample List" +msgstr "" + +#: src/gui/guiConst.cpp:594 +msgid "Debug Menu" +msgstr "" + +#: src/gui/guiConst.cpp:595 +msgid "Oscilloscope (master)" +msgstr "" + +#: src/gui/guiConst.cpp:603 src/gui/sysManager.cpp:41 +msgid "Chip Manager" +msgstr "" + +#: src/gui/guiConst.cpp:614 src/gui/csPlayer.cpp:112 +msgid "Command Stream Player" +msgstr "" + +#: src/gui/guiConst.cpp:615 +msgid "User Presets" +msgstr "" + +#: src/gui/guiConst.cpp:617 +msgid "Collapse/expand current window" +msgstr "" + +#: src/gui/guiConst.cpp:618 +msgid "Close current window" +msgstr "" + +#: src/gui/guiConst.cpp:621 +msgid "---Pattern" +msgstr "" + +#: src/gui/guiConst.cpp:622 +msgid "Transpose (+1)" +msgstr "" + +#: src/gui/guiConst.cpp:623 +msgid "Transpose (-1)" +msgstr "" + +#: src/gui/guiConst.cpp:624 +msgid "Transpose (+1 octave)" +msgstr "" + +#: src/gui/guiConst.cpp:625 +msgid "Transpose (-1 octave)" +msgstr "" + +#: src/gui/guiConst.cpp:626 +msgid "Increase values (+1)" +msgstr "" + +#: src/gui/guiConst.cpp:627 +msgid "Increase values (-1)" +msgstr "" + +#: src/gui/guiConst.cpp:628 +msgid "Increase values (+16)" +msgstr "" + +#: src/gui/guiConst.cpp:629 +msgid "Increase values (-16)" +msgstr "" + +#: src/gui/guiConst.cpp:630 +msgid "Select all" +msgstr "" + +#: src/gui/guiConst.cpp:631 +msgid "Cut" +msgstr "" + +#: src/gui/guiConst.cpp:632 +msgid "Copy" +msgstr "" + +#: src/gui/guiConst.cpp:633 +msgid "Paste" +msgstr "" + +#: src/gui/guiConst.cpp:634 +msgid "Paste Mix (foreground)" +msgstr "" + +#: src/gui/guiConst.cpp:635 +msgid "Paste Mix (background)" +msgstr "" + +#: src/gui/guiConst.cpp:636 +msgid "Paste Flood" +msgstr "" + +#: src/gui/guiConst.cpp:637 +msgid "Paste Overflow" +msgstr "" + +#: src/gui/guiConst.cpp:638 +msgid "Move cursor up" +msgstr "" + +#: src/gui/guiConst.cpp:639 +msgid "Move cursor down" +msgstr "" + +#: src/gui/guiConst.cpp:640 +msgid "Move cursor left" +msgstr "" + +#: src/gui/guiConst.cpp:641 +msgid "Move cursor right" +msgstr "" + +#: src/gui/guiConst.cpp:642 +msgid "Move cursor up by one (override Edit Step)" +msgstr "" + +#: src/gui/guiConst.cpp:643 +msgid "Move cursor down by one (override Edit Step)" +msgstr "" + +#: src/gui/guiConst.cpp:644 +msgid "Move cursor to previous channel" +msgstr "" + +#: src/gui/guiConst.cpp:645 +msgid "Move cursor to next channel" +msgstr "" + +#: src/gui/guiConst.cpp:646 +msgid "Move cursor to next channel (overflow)" +msgstr "" + +#: src/gui/guiConst.cpp:647 +msgid "Move cursor to previous channel (overflow)" +msgstr "" + +#: src/gui/guiConst.cpp:648 +msgid "Move cursor to beginning of pattern" +msgstr "" + +#: src/gui/guiConst.cpp:649 +msgid "Move cursor to end of pattern" +msgstr "" + +#: src/gui/guiConst.cpp:650 +msgid "Move cursor up (coarse)" +msgstr "" + +#: src/gui/guiConst.cpp:651 +msgid "Move cursor down (coarse)" +msgstr "" + +#: src/gui/guiConst.cpp:652 +msgid "Expand selection upwards" +msgstr "" + +#: src/gui/guiConst.cpp:653 +msgid "Expand selection downwards" +msgstr "" + +#: src/gui/guiConst.cpp:654 +msgid "Expand selection to the left" +msgstr "" + +#: src/gui/guiConst.cpp:655 +msgid "Expand selection to the right" +msgstr "" + +#: src/gui/guiConst.cpp:656 +msgid "Expand selection upwards by one (override Edit Step)" +msgstr "" + +#: src/gui/guiConst.cpp:657 +msgid "Expand selection downwards by one (override Edit Step)" +msgstr "" + +#: src/gui/guiConst.cpp:658 +msgid "Expand selection to beginning of pattern" +msgstr "" + +#: src/gui/guiConst.cpp:659 +msgid "Expand selection to end of pattern" +msgstr "" + +#: src/gui/guiConst.cpp:660 +msgid "Expand selection upwards (coarse)" +msgstr "" + +#: src/gui/guiConst.cpp:661 +msgid "Expand selection downwards (coarse)" +msgstr "" + +#: src/gui/guiConst.cpp:662 +msgid "Move selection up" +msgstr "" + +#: src/gui/guiConst.cpp:663 +msgid "Move selection down" +msgstr "" + +#: src/gui/guiConst.cpp:664 +msgid "Move selection to previous channel" +msgstr "" + +#: src/gui/guiConst.cpp:665 +msgid "Move selection to next channel" +msgstr "" + +#: src/gui/guiConst.cpp:667 +msgid "Pull delete" +msgstr "" + +#: src/gui/guiConst.cpp:668 +msgid "Insert" +msgstr "" + +#: src/gui/guiConst.cpp:669 +msgid "Mute channel at cursor" +msgstr "" + +#: src/gui/guiConst.cpp:670 +msgid "Solo channel at cursor" +msgstr "" + +#: src/gui/guiConst.cpp:671 +msgid "Unmute all channels" +msgstr "" + +#: src/gui/guiConst.cpp:672 +msgid "Go to next order" +msgstr "" + +#: src/gui/guiConst.cpp:673 +msgid "Go to previous order" +msgstr "" + +#: src/gui/guiConst.cpp:674 +msgid "Collapse channel at cursor" +msgstr "" + +#: src/gui/guiConst.cpp:675 +msgid "Increase effect columns" +msgstr "" + +#: src/gui/guiConst.cpp:676 +msgid "Decrease effect columns" +msgstr "" + +#: src/gui/guiConst.cpp:677 +msgid "Interpolate" +msgstr "" + +#: src/gui/guiConst.cpp:678 src/gui/insEdit.cpp:530 +msgid "Fade" +msgstr "" + +#: src/gui/guiConst.cpp:679 +msgid "Invert values" +msgstr "" + +#: src/gui/guiConst.cpp:680 +msgid "Flip selection" +msgstr "" + +#: src/gui/guiConst.cpp:681 +msgid "Collapse rows" +msgstr "" + +#: src/gui/guiConst.cpp:682 +msgid "Expand rows" +msgstr "" + +#: src/gui/guiConst.cpp:683 +msgid "Collapse pattern" +msgstr "" + +#: src/gui/guiConst.cpp:684 +msgid "Expand pattern" +msgstr "" + +#: src/gui/guiConst.cpp:685 +msgid "Collapse song" +msgstr "" + +#: src/gui/guiConst.cpp:686 +msgid "Expand song" +msgstr "" + +#: src/gui/guiConst.cpp:687 +msgid "Set note input latch" +msgstr "" + +#: src/gui/guiConst.cpp:688 +msgid "Change mobile scroll mode" +msgstr "" + +#: src/gui/guiConst.cpp:689 +msgid "Clear note input latch" +msgstr "" + +#: src/gui/guiConst.cpp:692 +msgid "---Instrument list" +msgstr "" + +#: src/gui/guiConst.cpp:693 +msgid "Add instrument" +msgstr "" + +#: src/gui/guiConst.cpp:694 +msgid "Duplicate instrument" +msgstr "" + +#: src/gui/guiConst.cpp:695 +msgid "Open instrument" +msgstr "" + +#: src/gui/guiConst.cpp:696 +msgid "Open instrument (replace current)" +msgstr "" + +#: src/gui/guiConst.cpp:697 +msgid "Save instrument" +msgstr "" + +#: src/gui/guiConst.cpp:698 +msgid "Save instrument (.dmp)" +msgstr "" + +#: src/gui/guiConst.cpp:699 +msgid "Move instrument up in list" +msgstr "" + +#: src/gui/guiConst.cpp:700 +msgid "Move instrument down in list" +msgstr "" + +#: src/gui/guiConst.cpp:701 +msgid "Delete instrument" +msgstr "" + +#: src/gui/guiConst.cpp:702 +msgid "Edit instrument" +msgstr "" + +#: src/gui/guiConst.cpp:703 +msgid "Instrument cursor up" +msgstr "" + +#: src/gui/guiConst.cpp:704 +msgid "Instrument cursor down" +msgstr "" + +#: src/gui/guiConst.cpp:705 +msgid "Instruments: toggle folders/standard view" +msgstr "" + +#: src/gui/guiConst.cpp:708 +msgid "---Wavetable list" +msgstr "" + +#: src/gui/guiConst.cpp:709 +msgid "Add wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:710 +msgid "Duplicate wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:711 +msgid "Open wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:712 +msgid "Open wavetable (replace current)" +msgstr "" + +#: src/gui/guiConst.cpp:713 +msgid "Save wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:714 +msgid "Save wavetable (.dmw)" +msgstr "" + +#: src/gui/guiConst.cpp:715 +msgid "Save wavetable (raw)" +msgstr "" + +#: src/gui/guiConst.cpp:716 +msgid "Move wavetable up in list" +msgstr "" + +#: src/gui/guiConst.cpp:717 +msgid "Move wavetable down in list" +msgstr "" + +#: src/gui/guiConst.cpp:718 +msgid "Delete wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:719 +msgid "Edit wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:720 +msgid "Wavetable cursor up" +msgstr "" + +#: src/gui/guiConst.cpp:721 +msgid "Wavetable cursor down" +msgstr "" + +#: src/gui/guiConst.cpp:722 +msgid "Wavetables: toggle folders/standard view" +msgstr "" + +#: src/gui/guiConst.cpp:725 +msgid "---Sample list" +msgstr "" + +#: src/gui/guiConst.cpp:726 +msgid "Add sample" +msgstr "" + +#: src/gui/guiConst.cpp:727 +msgid "Duplicate sample" +msgstr "" + +#: src/gui/guiConst.cpp:728 +msgid "Open sample" +msgstr "" + +#: src/gui/guiConst.cpp:729 +msgid "Open sample (replace current)" +msgstr "" + +#: src/gui/guiConst.cpp:730 +msgid "Import raw sample data" +msgstr "" + +#: src/gui/guiConst.cpp:731 +msgid "Import raw sample data (replace current)" +msgstr "" + +#: src/gui/guiConst.cpp:732 +msgid "Save sample" +msgstr "" + +#: src/gui/guiConst.cpp:733 +msgid "Save sample (raw)" +msgstr "" + +#: src/gui/guiConst.cpp:734 +msgid "Move sample up in list" +msgstr "" + +#: src/gui/guiConst.cpp:735 +msgid "Move sample down in list" +msgstr "" + +#: src/gui/guiConst.cpp:736 +msgid "Delete sample" +msgstr "" + +#: src/gui/guiConst.cpp:737 +msgid "Edit sample" +msgstr "" + +#: src/gui/guiConst.cpp:738 +msgid "Sample cursor up" +msgstr "" + +#: src/gui/guiConst.cpp:739 +msgid "Sample cursor down" +msgstr "" + +#: src/gui/guiConst.cpp:741 src/gui/sampleEdit.cpp:1339 +msgid "Stop sample preview" +msgstr "" + +#: src/gui/guiConst.cpp:742 +msgid "Samples: Toggle folders/standard view" +msgstr "" + +#: src/gui/guiConst.cpp:743 +msgid "Samples: Make me a drum kit" +msgstr "" + +#: src/gui/guiConst.cpp:746 +msgid "---Sample editor" +msgstr "" + +#: src/gui/guiConst.cpp:747 +msgid "Sample editor mode: Select" +msgstr "" + +#: src/gui/guiConst.cpp:748 +msgid "Sample editor mode: Draw" +msgstr "" + +#: src/gui/guiConst.cpp:749 +msgid "Sample editor: Cut" +msgstr "" + +#: src/gui/guiConst.cpp:750 +msgid "Sample editor: Copy" +msgstr "" + +#: src/gui/guiConst.cpp:751 +msgid "Sample editor: Paste" +msgstr "" + +#: src/gui/guiConst.cpp:752 +msgid "Sample editor: Paste replace" +msgstr "" + +#: src/gui/guiConst.cpp:753 +msgid "Sample editor: Paste mix" +msgstr "" + +#: src/gui/guiConst.cpp:754 +msgid "Sample editor: Select all" +msgstr "" + +#: src/gui/guiConst.cpp:755 +msgid "Sample editor: Resize" +msgstr "" + +#: src/gui/guiConst.cpp:756 +msgid "Sample editor: Resample" +msgstr "" + +#: src/gui/guiConst.cpp:757 +msgid "Sample editor: Amplify" +msgstr "" + +#: src/gui/guiConst.cpp:758 +msgid "Sample editor: Normalize" +msgstr "" + +#: src/gui/guiConst.cpp:759 +msgid "Sample editor: Fade in" +msgstr "" + +#: src/gui/guiConst.cpp:760 +msgid "Sample editor: Fade out" +msgstr "" + +#: src/gui/guiConst.cpp:761 +msgid "Sample editor: Apply silence" +msgstr "" + +#: src/gui/guiConst.cpp:762 +msgid "Sample editor: Insert silence" +msgstr "" + +#: src/gui/guiConst.cpp:763 +msgid "Sample editor: Delete" +msgstr "" + +#: src/gui/guiConst.cpp:764 +msgid "Sample editor: Trim" +msgstr "" + +#: src/gui/guiConst.cpp:765 +msgid "Sample editor: Reverse" +msgstr "" + +#: src/gui/guiConst.cpp:766 +msgid "Sample editor: Invert" +msgstr "" + +#: src/gui/guiConst.cpp:767 +msgid "Sample editor: Signed/unsigned exchange" +msgstr "" + +#: src/gui/guiConst.cpp:768 +msgid "Sample editor: Apply filter" +msgstr "" + +#: src/gui/guiConst.cpp:769 +msgid "Sample editor: Crossfade loop points" +msgstr "" + +#: src/gui/guiConst.cpp:770 +msgid "Sample editor: Preview sample" +msgstr "" + +#: src/gui/guiConst.cpp:771 +msgid "Sample editor: Stop sample preview" +msgstr "" + +#: src/gui/guiConst.cpp:772 +msgid "Sample editor: Zoom in" +msgstr "" + +#: src/gui/guiConst.cpp:773 +msgid "Sample editor: Zoom out" +msgstr "" + +#: src/gui/guiConst.cpp:774 +msgid "Sample editor: Toggle auto-zoom" +msgstr "" + +#: src/gui/guiConst.cpp:775 +msgid "Sample editor: Create instrument from sample" +msgstr "" + +#: src/gui/guiConst.cpp:776 +msgid "Sample editor: Set loop to selection" +msgstr "" + +#: src/gui/guiConst.cpp:777 +msgid "Sample editor: Create wavetable from selection" +msgstr "" + +#: src/gui/guiConst.cpp:780 +msgid "---Orders" +msgstr "" + +#: src/gui/guiConst.cpp:781 +msgid "Previous order" +msgstr "" + +#: src/gui/guiConst.cpp:782 +msgid "Next order" +msgstr "" + +#: src/gui/guiConst.cpp:783 +msgid "Order cursor left" +msgstr "" + +#: src/gui/guiConst.cpp:784 +msgid "Order cursor right" +msgstr "" + +#: src/gui/guiConst.cpp:785 +msgid "Increase order value" +msgstr "" + +#: src/gui/guiConst.cpp:786 +msgid "Decrease order value" +msgstr "" + +#: src/gui/guiConst.cpp:787 +msgid "Switch order edit mode" +msgstr "" + +#: src/gui/guiConst.cpp:788 +msgid "Order: toggle alter entire row" +msgstr "" + +#: src/gui/guiConst.cpp:789 +msgid "Add order" +msgstr "" + +#: src/gui/guiConst.cpp:790 +msgid "Duplicate order" +msgstr "" + +#: src/gui/guiConst.cpp:791 +msgid "Deep clone order" +msgstr "" + +#: src/gui/guiConst.cpp:792 +msgid "Copy current order to end of song" +msgstr "" + +#: src/gui/guiConst.cpp:793 +msgid "Deep clone current order to end of song" +msgstr "" + +#: src/gui/guiConst.cpp:797 +msgid "Replay order" +msgstr "" + +#: src/gui/guiConst.cpp:1392 +msgid "All chips" +msgstr "" + +#: src/gui/guiConst.cpp:1396 src/gui/insEdit.cpp:6954 src/gui/insEdit.cpp:7204 +#: src/gui/insEdit.cpp:7458 src/gui/insEdit.cpp:7480 +msgid "Special" +msgstr "" + +#: src/gui/piano.cpp:103 +msgid "Options" +msgstr "" + +#: src/gui/piano.cpp:106 +msgid "Key layout:" +msgstr "" + +#: src/gui/piano.cpp:111 +msgid "Standard" +msgstr "" + +#: src/gui/piano.cpp:114 +msgid "Continuous" +msgstr "" + +#: src/gui/piano.cpp:118 +msgid "Value input pad:" +msgstr "" + +#: src/gui/piano.cpp:120 +msgid "Disabled" +msgstr "" + +#: src/gui/piano.cpp:123 +msgid "Replace piano" +msgstr "" + +#: src/gui/piano.cpp:126 +msgid "Split (automatic)" +msgstr "" + +#: src/gui/piano.cpp:129 +msgid "Split (always visible)" +msgstr "" + +#: src/gui/piano.cpp:133 +msgid "Share play/edit offset/range" +msgstr "" + +#: src/gui/piano.cpp:134 +msgid "Read-only (can't input notes)" +msgstr "" + +#: src/gui/waveEdit.cpp:30 src/gui/waveEdit.cpp:192 src/gui/insEdit.cpp:177 +#: src/gui/insEdit.cpp:188 src/gui/insEdit.cpp:199 +msgid "Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:32 src/gui/waveEdit.cpp:202 src/gui/insEdit.cpp:325 +#: src/gui/insEdit.cpp:654 +msgid "Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:39 +msgid "Cosine" +msgstr "" + +#: src/gui/waveEdit.cpp:193 +msgid "Rect. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:194 +msgid "Abs. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:195 +msgid "Quart. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:196 +msgid "Squish. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:197 +msgid "Abs. Squish. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:200 +msgid "rectSquare" +msgstr "" + +#: src/gui/waveEdit.cpp:203 +msgid "Rect. Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:204 +msgid "Abs. Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:206 +msgid "Cubed Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:207 +msgid "Rect. Cubed Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:208 +msgid "Abs. Cubed Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:210 +msgid "Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:211 +msgid "Rect. Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:212 +msgid "Abs. Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:213 +msgid "Quart. Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:214 +msgid "Squish. Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:215 +msgid "Squish. Abs. Cub. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:218 +msgid "Rect. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:219 +msgid "Abs. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:220 +msgid "Quart. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:221 +msgid "Squish. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:222 +msgid "Abs. Squish. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:224 +msgid "Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:225 +msgid "Rect. Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:226 +msgid "Abs. Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:227 +msgid "Quart. Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:228 +msgid "Squish. Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:229 +msgid "Squish. Abs. Cub. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:412 src/gui/waveEdit.cpp:413 +msgid "no wavetable selected" +msgstr "" + +#: src/gui/waveEdit.cpp:424 src/gui/sampleEdit.cpp:111 src/gui/insEdit.cpp:5223 +msgid "select one..." +msgstr "" + +#: src/gui/waveEdit.cpp:432 src/gui/waveEdit.cpp:439 src/gui/sampleEdit.cpp:119 +#: src/gui/sampleEdit.cpp:126 src/gui/insEdit.cpp:5236 src/gui/insEdit.cpp:5243 +msgid "or" +msgstr "" + +#: src/gui/waveEdit.cpp:441 src/gui/sampleEdit.cpp:128 src/gui/insEdit.cpp:5245 +msgid "Create New" +msgstr "" + +#: src/gui/waveEdit.cpp:487 +msgid "Steps" +msgstr "" + +#: src/gui/waveEdit.cpp:491 +msgid "Lines" +msgstr "" + +#: src/gui/waveEdit.cpp:496 src/gui/insEdit.cpp:2687 +msgid "Width" +msgstr "" + +#: src/gui/waveEdit.cpp:498 +msgid "" +"use a width of:\n" +"- any on Amiga/N163\n" +"- 32 on Game Boy, PC Engine, SCC, Konami Bubble System, Namco WSG, Virtual " +"Boy and WonderSwan\n" +"- 64 on FDS\n" +"- 128 on X1-010\n" +"any other widths will be scaled during playback." +msgstr "" + +#: src/gui/waveEdit.cpp:510 +msgid "Height" +msgstr "" + +#: src/gui/waveEdit.cpp:512 +msgid "" +"use a height of:\n" +"- 16 for Game Boy, WonderSwan, Namco WSG, Konami Bubble System, X1-010 " +"Envelope shape and N163\n" +"- 32 for PC Engine\n" +"- 64 for FDS and Virtual Boy\n" +"- 256 for X1-010 and SCC\n" +"any other heights will be scaled during playback." +msgstr "" + +#: src/gui/waveEdit.cpp:578 +msgid "Shapes" +msgstr "" + +#: src/gui/waveEdit.cpp:597 src/gui/insEdit.cpp:5879 src/gui/insEdit.cpp:6922 +#: src/gui/insEdit.cpp:6948 src/gui/insEdit.cpp:7008 src/gui/insEdit.cpp:7048 +#: src/gui/insEdit.cpp:7150 src/gui/insEdit.cpp:7436 src/gui/insEdit.cpp:7472 +msgid "Duty" +msgstr "" + +#: src/gui/waveEdit.cpp:607 +msgid "Exponent" +msgstr "" + +#: src/gui/waveEdit.cpp:617 +msgid "XOR Point" +msgstr "" + +#: src/gui/waveEdit.cpp:627 +msgid "Amplitude/Phase" +msgstr "" + +#: src/gui/waveEdit.cpp:679 src/gui/waveEdit.cpp:723 src/gui/waveEdit.cpp:728 +msgid "Op" +msgstr "" + +#: src/gui/waveEdit.cpp:683 +msgid "Mult" +msgstr "" + +#: src/gui/waveEdit.cpp:685 +msgid "FB" +msgstr "" + +#: src/gui/waveEdit.cpp:749 src/gui/waveEdit.cpp:750 +msgid "Connection Diagram" +msgstr "" + +#: src/gui/waveEdit.cpp:765 +msgid "Out" +msgstr "" + +#: src/gui/waveEdit.cpp:872 +msgid "WaveTools" +msgstr "" + +#: src/gui/waveEdit.cpp:890 +msgid "Scale X" +msgstr "" + +#: src/gui/waveEdit.cpp:896 +msgid "wavetable longer than 256 samples!" +msgstr "" + +#: src/gui/waveEdit.cpp:960 +msgid "Scale Y" +msgstr "" + +#: src/gui/waveEdit.cpp:978 +msgid "Offset X" +msgstr "" + +#: src/gui/waveEdit.cpp:1000 +msgid "Offset Y" +msgstr "" + +#: src/gui/waveEdit.cpp:1017 +msgid "Smooth" +msgstr "" + +#: src/gui/waveEdit.cpp:1045 src/gui/sampleEdit.cpp:996 +msgid "Amplify" +msgstr "" + +#: src/gui/waveEdit.cpp:1063 src/gui/sampleEdit.cpp:1046 +msgid "Normalize" +msgstr "" + +#: src/gui/waveEdit.cpp:1105 src/gui/sampleEdit.cpp:1121 +msgid "Reverse" +msgstr "" + +#: src/gui/waveEdit.cpp:1117 +msgid "Half" +msgstr "" + +#: src/gui/waveEdit.cpp:1127 +msgid "Double" +msgstr "" + +#: src/gui/waveEdit.cpp:1137 +msgid "Convert Signed/Unsigned" +msgstr "" + +#: src/gui/waveEdit.cpp:1167 +msgid "Dec" +msgstr "" + +#: src/gui/waveEdit.cpp:1171 src/gui/csPlayer.cpp:247 +msgid "Hex" +msgstr "" + +#: src/gui/waveEdit.cpp:1179 +msgid "Signed/Unsigned" +msgstr "" + +#: src/gui/sampleEdit.cpp:65 +#, c-format +msgid "%s: maximum sample rate is %d" +msgstr "" + +#: src/gui/sampleEdit.cpp:72 +#, c-format +msgid "%s: minimum sample rate is %d" +msgstr "" + +#: src/gui/sampleEdit.cpp:79 +#, c-format +msgid "%s: sample rate must be %d" +msgstr "" + +#: src/gui/sampleEdit.cpp:99 src/gui/sampleEdit.cpp:100 +msgid "no sample selected" +msgstr "" + +#: src/gui/sampleEdit.cpp:229 +#, c-format +msgid "SNES: loop start must be a multiple of 16 (try with %d)" +msgstr "" + +#: src/gui/sampleEdit.cpp:235 +#, c-format +msgid "SNES: loop end must be a multiple of 16 (try with %d)" +msgstr "" + +#: src/gui/sampleEdit.cpp:240 +msgid "SNES: sample length will be padded to multiple of 16" +msgstr "" + +#: src/gui/sampleEdit.cpp:249 +msgid "QSound: loop cannot be longer than 32767 samples" +msgstr "" + +#: src/gui/sampleEdit.cpp:259 +msgid "NES: loop point ignored on DPCM (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:263 +msgid "NES: maximum DPCM sample length is 32648" +msgstr "" + +#: src/gui/sampleEdit.cpp:268 +msgid "X1-010: samples can't loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:271 +msgid "X1-010: maximum sample length is 131072" +msgstr "" + +#: src/gui/sampleEdit.cpp:276 +msgid "GA20: samples can't loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:287 +msgid "YM2608: loop point ignored on ADPCM (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:290 +msgid "YM2608: sample length will be padded to multiple of 512" +msgstr "" + +#: src/gui/sampleEdit.cpp:300 +msgid "YM2610: ADPCM-A samples can't loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:302 +msgid "YM2610: loop point ignored on ADPCM-B (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:305 +msgid "YM2610: sample length will be padded to multiple of 512" +msgstr "" + +#: src/gui/sampleEdit.cpp:309 +msgid "YM2610: maximum ADPCM-A sample length is 2097152" +msgstr "" + +#: src/gui/sampleEdit.cpp:318 +msgid "Y8950: loop point ignored on ADPCM (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:321 +msgid "Y8950: sample length will be padded to multiple of 512" +msgstr "" + +#: src/gui/sampleEdit.cpp:328 +msgid "Amiga: loop start must be a multiple of 2" +msgstr "" + +#: src/gui/sampleEdit.cpp:331 +msgid "Amiga: loop end must be a multiple of 2" +msgstr "" + +#: src/gui/sampleEdit.cpp:335 +msgid "Amiga: maximum sample length is 131070" +msgstr "" + +#: src/gui/sampleEdit.cpp:344 +msgid "SegaPCM: maximum sample length is 65280" +msgstr "" + +#: src/gui/sampleEdit.cpp:353 +msgid "K053260: loop point ignored (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:357 +msgid "K053260: maximum sample length is 65535" +msgstr "" + +#: src/gui/sampleEdit.cpp:362 +msgid "C140: maximum sample length is 65535" +msgstr "" + +#: src/gui/sampleEdit.cpp:371 +msgid "C219: loop start must be a multiple of 2" +msgstr "" + +#: src/gui/sampleEdit.cpp:374 +msgid "C219: loop end must be a multiple of 2" +msgstr "" + +#: src/gui/sampleEdit.cpp:378 +msgid "C219: maximum sample length is 131072" +msgstr "" + +#: src/gui/sampleEdit.cpp:386 +msgid "MSM6295: samples can't loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:389 +msgid "MSM6295: maximum bankswitched sample length is 129024" +msgstr "" + +#: src/gui/sampleEdit.cpp:395 +msgid "GBA DMA: loop start must be a multiple of 4" +msgstr "" + +#: src/gui/sampleEdit.cpp:398 +msgid "GBA DMA: loop length must be a multiple of 16" +msgstr "" + +#: src/gui/sampleEdit.cpp:402 +msgid "GBA DMA: sample length will be padded to multiple of 16" +msgstr "" + +#: src/gui/sampleEdit.cpp:411 +msgid "ES5506: backward loop mode isn't supported" +msgstr "" + +#: src/gui/sampleEdit.cpp:414 +msgid "" +"backward/ping-pong only supported in Generic PCM DAC\n" +"ping-pong also on ES5506" +msgstr "" + +#: src/gui/sampleEdit.cpp:444 +msgid "Info" +msgstr "" + +#: src/gui/sampleEdit.cpp:447 src/gui/sampleEdit.cpp:933 +msgid "Rate" +msgstr "" + +#: src/gui/sampleEdit.cpp:453 +msgid "Compat Rate" +msgstr "" + +#: src/gui/sampleEdit.cpp:457 +msgid "" +"used in DefleMask-compatible sample mode (17xx), in where samples are mapped " +"to an octave." +msgstr "" + +#: src/gui/sampleEdit.cpp:463 +#, c-format +msgid "Loop (length: %d)##Loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:463 src/gui/insEdit.cpp:544 src/gui/insEdit.cpp:554 +#: src/gui/insEdit.cpp:605 src/gui/insEdit.cpp:6017 +msgid "Loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:487 src/gui/sampleEdit.cpp:716 +#: src/gui/sampleEdit.cpp:752 +msgid "changing the loop in a BRR sample may result in glitches!" +msgstr "" + +#: src/gui/sampleEdit.cpp:529 +msgid "BRR emphasis" +msgstr "" + +#: src/gui/sampleEdit.cpp:538 +msgid "" +"this is a BRR sample.\n" +"enabling this option will muffle it (only affects non-SNES chips)." +msgstr "" + +#: src/gui/sampleEdit.cpp:540 +msgid "" +"enable this option to slightly boost high frequencies\n" +"to compensate for the SNES' Gaussian filter's muffle." +msgstr "" + +#: src/gui/sampleEdit.cpp:546 +msgid "8-bit dither" +msgstr "" + +#: src/gui/sampleEdit.cpp:554 +msgid "dither the sample when used on a chip that only supports 8-bit samples." +msgstr "" + +#: src/gui/sampleEdit.cpp:695 src/gui/gui.cpp:2975 +msgid "Start" +msgstr "" + +#: src/gui/sampleEdit.cpp:731 src/gui/gui.cpp:2983 +msgid "End" +msgstr "" + +#: src/gui/sampleEdit.cpp:841 +#, c-format +msgid "" +"%s\n" +"%d bytes free" +msgstr "" + +#: src/gui/sampleEdit.cpp:843 +#, c-format +msgid "" +"%s (%s)\n" +"%d bytes free" +msgstr "" + +#: src/gui/sampleEdit.cpp:847 +msgid "" +"\n" +"\n" +"not enough memory for this sample!" +msgstr "" + +#: src/gui/sampleEdit.cpp:871 +msgid "Edit mode: Select" +msgstr "" + +#: src/gui/sampleEdit.cpp:880 +msgid "Edit mode: Draw" +msgstr "" + +#: src/gui/sampleEdit.cpp:891 src/gui/sampleEdit.cpp:902 +msgid "Resize" +msgstr "" + +#: src/gui/sampleEdit.cpp:906 +msgid "couldn't resize! make sure your sample is 8 or 16-bit." +msgstr "" + +#: src/gui/sampleEdit.cpp:926 src/gui/sampleEdit.cpp:957 +msgid "Resample" +msgstr "" + +#: src/gui/sampleEdit.cpp:951 +msgid "Factor" +msgstr "" + +#: src/gui/sampleEdit.cpp:956 +msgid "Filter" +msgstr "" + +#: src/gui/sampleEdit.cpp:961 +msgid "couldn't resample! make sure your sample is 8 or 16-bit." +msgstr "" + +#: src/gui/sampleEdit.cpp:1010 src/gui/sampleEdit.cpp:1197 +#: src/gui/sampleEdit.cpp:1281 +msgid "Apply" +msgstr "" + +#: src/gui/sampleEdit.cpp:1053 +msgid "Fade in" +msgstr "" + +#: src/gui/sampleEdit.cpp:1060 +msgid "Fade out" +msgstr "" + +#: src/gui/sampleEdit.cpp:1065 +msgid "Insert silence" +msgstr "" + +#: src/gui/sampleEdit.cpp:1076 +msgid "Go" +msgstr "" + +#: src/gui/sampleEdit.cpp:1081 +msgid "couldn't insert! make sure your sample is 8 or 16-bit." +msgstr "" + +#: src/gui/sampleEdit.cpp:1098 +msgid "Apply silence" +msgstr "" + +#: src/gui/sampleEdit.cpp:1112 +msgid "Trim" +msgstr "" + +#: src/gui/sampleEdit.cpp:1135 +msgid "Signed/unsigned exchange" +msgstr "" + +#: src/gui/sampleEdit.cpp:1140 +msgid "Apply filter" +msgstr "" + +#: src/gui/sampleEdit.cpp:1151 +msgid "Cutoff:" +msgstr "" + +#: src/gui/sampleEdit.cpp:1161 src/gui/insEdit.cpp:5895 +#: src/gui/insEdit.cpp:5898 src/gui/insEdit.cpp:6953 src/gui/insEdit.cpp:7216 +#: src/gui/insEdit.cpp:7478 +msgid "Resonance" +msgstr "" + +#: src/gui/sampleEdit.cpp:1167 src/gui/insEdit.cpp:6897 +msgid "Power" +msgstr "" + +#: src/gui/sampleEdit.cpp:1181 +msgid "Low-pass" +msgstr "" + +#: src/gui/sampleEdit.cpp:1186 +msgid "Band-pass" +msgstr "" + +#: src/gui/sampleEdit.cpp:1191 +msgid "High-pass" +msgstr "" + +#: src/gui/sampleEdit.cpp:1262 +msgid "Crossfade loop points" +msgstr "" + +#: src/gui/sampleEdit.cpp:1271 +msgid "Number of samples" +msgstr "" + +#: src/gui/sampleEdit.cpp:1277 +msgid "Linear <-> Equal power" +msgstr "" + +#: src/gui/sampleEdit.cpp:1283 +msgid "Crossfade: length would go out of bounds. Aborted..." +msgstr "" + +#: src/gui/sampleEdit.cpp:1286 +msgid "Crossfade: length would overflow loopStart. Try a smaller random value." +msgstr "" + +#: src/gui/sampleEdit.cpp:1332 +msgid "Preview sample" +msgstr "" + +#: src/gui/sampleEdit.cpp:1346 +msgid "Create instrument from sample" +msgstr "" + +#: src/gui/sampleEdit.cpp:1747 +msgid "paste (replace)" +msgstr "" + +#: src/gui/sampleEdit.cpp:1750 +msgid "paste (mix)" +msgstr "" + +#: src/gui/sampleEdit.cpp:1754 src/gui/gui.cpp:2769 +msgid "select all" +msgstr "" + +#: src/gui/sampleEdit.cpp:1758 +msgid "set loop to selection" +msgstr "" + +#: src/gui/sampleEdit.cpp:1761 +msgid "create wavetable from selection" +msgstr "" + +#: src/gui/sampleEdit.cpp:1767 +msgid "Draw" +msgstr "" + +#: src/gui/sampleEdit.cpp:1767 +msgid "Select" +msgstr "" + +#: src/gui/sampleEdit.cpp:1769 +#, c-format +msgid "%d samples, %d bytes" +msgstr "" + +#: src/gui/sampleEdit.cpp:1784 +#, c-format +msgid " (%d-%d: %d samples)" +msgstr "" + +#: src/gui/sampleEdit.cpp:1976 +msgid "Non-8/16-bit samples cannot be edited without prior conversion." +msgstr "" + +#: src/gui/newSong.cpp:122 src/gui/newSong.cpp:123 +msgid "Choose a System!" +msgstr "" + +#: src/gui/newSong.cpp:179 +msgid "Categories" +msgstr "" + +#: src/gui/newSong.cpp:210 +msgid "no systems here yet!" +msgstr "" + +#: src/gui/newSong.cpp:212 +msgid "no results" +msgstr "" + +#: src/gui/newSong.cpp:228 +msgid "I'm feeling lucky" +msgstr "" + +#: src/gui/newSong.cpp:230 +msgid "no categories available! what in the world." +msgstr "" + +#: src/gui/newSong.cpp:265 +msgid "it appears you're extremely lucky today!" +msgstr "" + +#: src/gui/cursor.cpp:205 +#, c-format +msgid "finish selection: %d.%d,%d - %d.%d,%d" +msgstr "" + +#: src/gui/tutorial.cpp:487 +msgid "" +"Play demo songs?\n" +"- Down: Play current song\n" +"- Up: Play demo songs" +msgstr "" + +#: src/gui/tutorial.cpp:491 +msgid "" +"Welcome to Combat Vehicle!\n" +"\n" +"Controls:\n" +"X - Shoot Arrow Key - Move\n" +"Z - Special Esc - Quit" +msgstr "" + +#: src/gui/tutorial.cpp:496 +msgid "GAME OVER" +msgstr "" + +#: src/gui/tutorial.cpp:498 +msgid "High Score!" +msgstr "" + +#: src/gui/tutorial.cpp:658 +msgid "Welcome!" +msgstr "" + +#: src/gui/tutorial.cpp:661 +msgid "welcome to Furnace, the biggest open-source chiptune tracker!" +msgstr "" + +#: src/gui/tutorial.cpp:665 +msgid "here are some tips to get you started:" +msgstr "" + +#: src/gui/tutorial.cpp:668 +msgid "" +"- add an instrument by clicking on + in Instruments\n" +"- click on the pattern view to focus it\n" +"- channel columns have the following, in this order: note, instrument, " +"volume and effects\n" +"- hit space bar while on the pattern to toggle Edit Mode\n" +"- click on the pattern or use arrow keys to move the cursor\n" +"- values (instrument, volume, effects and effect values) are in hexadecimal\n" +"- hit enter to play/stop the song\n" +"- extend the song by adding more orders in the Orders window\n" +"- click on the Orders matrix to change the patterns of a channel (left click " +"increases; right click decreases)" +msgstr "" + +#: src/gui/tutorial.cpp:680 +msgid "" +"if you need help, you may:\n" +"- read the manual (a file called manual.pdf)\n" +"- ask for help in Discussions (https://github.com/tildearrow/furnace/" +"discussions), the Furnace Discord (https://discord.gg/EfrwT2wq7z) or Furnace " +"in Revolt (official: https://rvlt.gg/GRPS6tmc)" +msgstr "" + +#: src/gui/tutorial.cpp:687 +msgid "" +"if you find any issues, be sure to report them! the issue tracker is here: " +"https://github.com/tildearrow/furnace/issues" +msgstr "" + +#: src/gui/tutorial.cpp:1428 +#, c-format +msgid "STAGE %d" +msgstr "" + +#: src/gui/songInfo.cpp:32 +msgid "Song Info##Song Information" +msgstr "" + +#: src/gui/songInfo.cpp:50 +msgid "Author" +msgstr "" + +#: src/gui/songInfo.cpp:60 +msgid "Album" +msgstr "" + +#: src/gui/songInfo.cpp:79 +msgid "Auto" +msgstr "" + +#: src/gui/songInfo.cpp:100 +msgid "Tuning (A-4)" +msgstr "" + +#: src/gui/grooves.cpp:38 +msgid "use effect 09xx to select a groove pattern." +msgstr "" + +#: src/gui/grooves.cpp:48 src/gui/gui.cpp:4480 +msgid "pattern" +msgstr "" + +#: src/gui/grooves.cpp:132 +msgid "remove" +msgstr "" + +#: src/gui/doAction.cpp:45 src/gui/gui.cpp:4201 +msgid "Unsaved changes! Save changes before opening another file?" +msgstr "" + +#: src/gui/doAction.cpp:52 +msgid "Unsaved changes! Save changes before opening backup?" +msgstr "" + +#: src/gui/doAction.cpp:62 src/gui/gui.cpp:4237 src/gui/gui.cpp:5025 +#: src/gui/gui.cpp:5063 src/gui/gui.cpp:5069 src/gui/gui.cpp:5657 +#: src/gui/gui.cpp:5681 src/gui/gui.cpp:5705 src/gui/gui.cpp:5729 +#: src/gui/gui.cpp:5753 src/gui/gui.cpp:5777 +#, c-format +msgid "Error while saving file! (%s)" +msgstr "" + +#: src/gui/doAction.cpp:189 +msgid "Error while sending request (MIDI output not configured?)" +msgstr "" + +#: src/gui/doAction.cpp:197 +msgid "Select an option: (cannot be undone!)" +msgstr "" + +#: src/gui/doAction.cpp:691 src/gui/doAction.cpp:720 src/gui/doAction.cpp:1593 +#: src/gui/gui.cpp:6091 +msgid "too many instruments!" +msgstr "" + +#: src/gui/doAction.cpp:1124 +msgid "couldn't paste! make sure your sample is 8 or 16-bit." +msgstr "" + +#: src/gui/doAction.cpp:1628 +msgid "select at least one sample!" +msgstr "" + +#: src/gui/doAction.cpp:1630 +msgid "maximum size is 256 samples!" +msgstr "" + +#: src/gui/csPlayer.cpp:113 +msgid "Load" +msgstr "" + +#: src/gui/csPlayer.cpp:117 +msgid "Kill" +msgstr "" + +#: src/gui/csPlayer.cpp:119 +msgid "Kikai wa mou shindeiru!" +msgstr "" + +#: src/gui/csPlayer.cpp:123 +msgid "Burn Current Song" +msgstr "" + +#: src/gui/csPlayer.cpp:141 +msgid "Status" +msgstr "" + +#: src/gui/csPlayer.cpp:148 +msgid "start" +msgstr "" + +#: src/gui/csPlayer.cpp:150 +msgid "PC" +msgstr "" + +#: src/gui/csPlayer.cpp:152 +msgid "wait" +msgstr "" + +#: src/gui/csPlayer.cpp:154 +msgid "SP" +msgstr "" + +#: src/gui/csPlayer.cpp:156 src/gui/insEdit.cpp:2733 +msgid "note" +msgstr "" + +#: src/gui/csPlayer.cpp:158 src/gui/insEdit.cpp:2728 +msgid "pitch" +msgstr "" + +#: src/gui/csPlayer.cpp:160 +msgid "vol" +msgstr "" + +#: src/gui/csPlayer.cpp:162 +msgid "vols" +msgstr "" + +#: src/gui/csPlayer.cpp:164 +msgid "vib" +msgstr "" + +#: src/gui/csPlayer.cpp:166 +msgid "porta" +msgstr "" + +#: src/gui/csPlayer.cpp:168 +msgid "arp" +msgstr "" + +#: src/gui/csPlayer.cpp:203 +msgid "Trace" +msgstr "" + +#: src/gui/csPlayer.cpp:244 +msgid "Disassemble" +msgstr "" + +#: src/gui/gui.cpp:1136 src/gui/gui.cpp:1140 +msgid "the song is over!" +msgstr "" + +#: src/gui/gui.cpp:1667 +msgid "Open File" +msgstr "" + +#: src/gui/gui.cpp:1668 src/gui/gui.cpp:1798 src/gui/gui.cpp:1838 +#: src/gui/gui.cpp:1953 src/gui/gui.cpp:1962 src/gui/gui.cpp:1971 +#: src/gui/gui.cpp:2073 src/gui/gui.cpp:2093 src/gui/gui.cpp:2111 +msgid "compatible files" +msgstr "" + +#: src/gui/gui.cpp:1669 src/gui/gui.cpp:1743 src/gui/gui.cpp:1799 +#: src/gui/gui.cpp:1839 src/gui/gui.cpp:1851 src/gui/gui.cpp:1870 +#: src/gui/gui.cpp:2074 src/gui/gui.cpp:2084 src/gui/gui.cpp:2095 +#: src/gui/gui.cpp:2113 +msgid "all files" +msgstr "" + +#: src/gui/gui.cpp:1676 +msgid "no backups made yet!" +msgstr "" + +#: src/gui/gui.cpp:1681 src/gui/gui.cpp:1690 src/gui/gui.cpp:2130 +msgid "Furnace song" +msgstr "" + +#: src/gui/gui.cpp:1689 +msgid "Save File" +msgstr "" + +#: src/gui/gui.cpp:1698 src/gui/gui.cpp:1708 +msgid "Export DMF" +msgstr "" + +#: src/gui/gui.cpp:1699 +msgid "DefleMask 1.1.3 module" +msgstr "" + +#: src/gui/gui.cpp:1709 +msgid "DefleMask 1.0/legacy module" +msgstr "" + +#: src/gui/gui.cpp:1726 +msgid "Load Instrument" +msgstr "" + +#: src/gui/gui.cpp:1727 +msgid "all compatible files" +msgstr "" + +#: src/gui/gui.cpp:1728 src/gui/gui.cpp:1777 +msgid "Furnace instrument" +msgstr "" + +#: src/gui/gui.cpp:1729 src/gui/gui.cpp:1787 +msgid "DefleMask preset" +msgstr "" + +#: src/gui/gui.cpp:1730 +msgid "TFM Music Maker instrument" +msgstr "" + +#: src/gui/gui.cpp:1731 +msgid "VGM Music Maker instrument" +msgstr "" + +#: src/gui/gui.cpp:1732 +msgid "Scream Tracker 3 instrument" +msgstr "" + +#: src/gui/gui.cpp:1733 +msgid "SoundBlaster instrument" +msgstr "" + +#: src/gui/gui.cpp:1734 +msgid "Wohlstand OPL instrument" +msgstr "" + +#: src/gui/gui.cpp:1735 +msgid "Wohlstand OPN instrument" +msgstr "" + +#: src/gui/gui.cpp:1736 +msgid "Gens KMod patch dump" +msgstr "" + +#: src/gui/gui.cpp:1737 +msgid "BNK file (AdLib)" +msgstr "" + +#: src/gui/gui.cpp:1738 +msgid "FF preset bank" +msgstr "" + +#: src/gui/gui.cpp:1739 +msgid "2612edit GYB preset bank" +msgstr "" + +#: src/gui/gui.cpp:1740 +msgid "VOPM preset bank" +msgstr "" + +#: src/gui/gui.cpp:1741 +msgid "Wohlstand WOPL bank" +msgstr "" + +#: src/gui/gui.cpp:1742 +msgid "Wohlstand WOPN bank" +msgstr "" + +#: src/gui/gui.cpp:1776 src/gui/gui.cpp:1786 +msgid "Save Instrument" +msgstr "" + +#: src/gui/gui.cpp:1797 +msgid "Load Wavetable" +msgstr "" + +#: src/gui/gui.cpp:1809 src/gui/gui.cpp:1818 src/gui/gui.cpp:1827 +msgid "Save Wavetable" +msgstr "" + +#: src/gui/gui.cpp:1810 +msgid "Furnace wavetable" +msgstr "" + +#: src/gui/gui.cpp:1819 +msgid "DefleMask wavetable" +msgstr "" + +#: src/gui/gui.cpp:1828 +msgid "raw data" +msgstr "" + +#: src/gui/gui.cpp:1837 +msgid "Load Sample" +msgstr "" + +#: src/gui/gui.cpp:1850 +msgid "Load Raw Sample" +msgstr "" + +#: src/gui/gui.cpp:1859 +msgid "Save Sample" +msgstr "" + +#: src/gui/gui.cpp:1860 src/gui/gui.cpp:1880 src/gui/gui.cpp:1890 +#: src/gui/gui.cpp:1900 +msgid "Wave file" +msgstr "" + +#: src/gui/gui.cpp:1869 +msgid "Save Raw Sample" +msgstr "" + +#: src/gui/gui.cpp:1879 src/gui/gui.cpp:1889 src/gui/gui.cpp:1899 +msgid "Export Audio" +msgstr "" + +#: src/gui/gui.cpp:1909 +msgid "Export VGM" +msgstr "" + +#: src/gui/gui.cpp:1910 +msgid "VGM file" +msgstr "" + +#: src/gui/gui.cpp:1919 +msgid "Export ZSM" +msgstr "" + +#: src/gui/gui.cpp:1920 +msgid "ZSM file" +msgstr "" + +#: src/gui/gui.cpp:1929 src/gui/gui.cpp:1939 +msgid "Export Command Stream" +msgstr "" + +#: src/gui/gui.cpp:1930 +msgid "text file" +msgstr "" + +#: src/gui/gui.cpp:1940 +msgid "binary file" +msgstr "" + +#: src/gui/gui.cpp:1947 src/gui/gui.cpp:5376 +msgid "Coming soon!" +msgstr "" + +#: src/gui/gui.cpp:1952 src/gui/gui.cpp:1961 src/gui/gui.cpp:1970 +msgid "Select Font" +msgstr "" + +#: src/gui/gui.cpp:1979 +msgid "Select Color File" +msgstr "" + +#: src/gui/gui.cpp:1980 src/gui/gui.cpp:1989 src/gui/gui.cpp:2008 +#: src/gui/gui.cpp:2017 src/gui/gui.cpp:2026 src/gui/gui.cpp:2035 +#: src/gui/gui.cpp:2053 src/gui/gui.cpp:2062 +msgid "configuration files" +msgstr "" + +#: src/gui/gui.cpp:1988 +msgid "Select Keybind File" +msgstr "" + +#: src/gui/gui.cpp:1997 +msgid "Select Layout File" +msgstr "" + +#: src/gui/gui.cpp:1998 src/gui/gui.cpp:2044 +msgid ".ini files" +msgstr "" + +#: src/gui/gui.cpp:2007 +msgid "Select User Presets File" +msgstr "" + +#: src/gui/gui.cpp:2016 +msgid "Select Settings File" +msgstr "" + +#: src/gui/gui.cpp:2025 +msgid "Export Colors" +msgstr "" + +#: src/gui/gui.cpp:2034 +msgid "Export Keybinds" +msgstr "" + +#: src/gui/gui.cpp:2043 +msgid "Export Layout" +msgstr "" + +#: src/gui/gui.cpp:2052 +msgid "Export User Presets" +msgstr "" + +#: src/gui/gui.cpp:2061 +msgid "Export Settings" +msgstr "" + +#: src/gui/gui.cpp:2072 +msgid "Load ROM" +msgstr "" + +#: src/gui/gui.cpp:2082 +msgid "Play Command Stream" +msgstr "" + +#: src/gui/gui.cpp:2083 +msgid "command stream" +msgstr "" + +#: src/gui/gui.cpp:2092 +msgid "Open Test" +msgstr "" + +#: src/gui/gui.cpp:2094 src/gui/gui.cpp:2112 +msgid "another option" +msgstr "" + +#: src/gui/gui.cpp:2110 +msgid "Open Test (Multi)" +msgstr "" + +#: src/gui/gui.cpp:2129 +msgid "Save Test" +msgstr "" + +#: src/gui/gui.cpp:2131 +msgid "DefleMask module" +msgstr "" + +#: src/gui/gui.cpp:2171 +msgid "compression error" +msgstr "" + +#: src/gui/gui.cpp:2183 +msgid "zlib stream error" +msgstr "" + +#: src/gui/gui.cpp:2205 +msgid "zlib finish stream error" +msgstr "" + +#: src/gui/gui.cpp:2316 +msgid "everything OK" +msgstr "" + +#: src/gui/gui.cpp:2334 +msgid "" +"you have loaded a backup!\n" +"if you need to, please save it somewhere.\n" +"\n" +"DO NOT RELY ON THE BACKUP SYSTEM FOR AUTO-SAVE!\n" +"Furnace will not save backups of backups." +msgstr "" + +#: src/gui/gui.cpp:2342 src/gui/gui.cpp:3743 src/gui/gui.cpp:4213 +msgid "Unsaved changes! Save changes before opening file?" +msgstr "" + +#: src/gui/gui.cpp:2736 +msgid "paste special..." +msgstr "" + +#: src/gui/gui.cpp:2737 +msgid "paste mix" +msgstr "" + +#: src/gui/gui.cpp:2738 +msgid "paste mix (background)" +msgstr "" + +#: src/gui/gui.cpp:2739 +msgid "paste with ins (foreground)" +msgstr "" + +#: src/gui/gui.cpp:2741 src/gui/gui.cpp:2753 src/gui/gui.cpp:2963 +msgid "no instruments available" +msgstr "" + +#: src/gui/gui.cpp:2751 +msgid "paste with ins (background)" +msgstr "" + +#: src/gui/gui.cpp:2763 +msgid "paste flood" +msgstr "" + +#: src/gui/gui.cpp:2764 +msgid "paste overflow" +msgstr "" + +#: src/gui/gui.cpp:2773 +msgid "operation mask..." +msgstr "" + +#: src/gui/gui.cpp:2780 +msgid "pull delete" +msgstr "" + +#: src/gui/gui.cpp:2784 +msgid "insert" +msgstr "" + +#: src/gui/gui.cpp:2792 +msgid "transpose (note)" +msgstr "" + +#: src/gui/gui.cpp:2796 +msgid "transpose (value)" +msgstr "" + +#: src/gui/gui.cpp:2808 src/gui/gui.cpp:3052 +msgid "invert values" +msgstr "" + +#: src/gui/gui.cpp:2824 +msgid "collapse/expand" +msgstr "" + +#: src/gui/gui.cpp:2829 +msgid "input latch" +msgstr "" + +#: src/gui/gui.cpp:2856 +msgid "" +"&&: selected instrument\n" +"..: no instrument" +msgstr "" + +#: src/gui/gui.cpp:2910 +msgid "Set" +msgstr "" + +#: src/gui/gui.cpp:2930 +msgid "note up" +msgstr "" + +#: src/gui/gui.cpp:2931 +msgid "note down" +msgstr "" + +#: src/gui/gui.cpp:2932 +msgid "octave up" +msgstr "" + +#: src/gui/gui.cpp:2933 +msgid "octave down" +msgstr "" + +#: src/gui/gui.cpp:2935 +msgid "values up" +msgstr "" + +#: src/gui/gui.cpp:2936 +msgid "values down" +msgstr "" + +#: src/gui/gui.cpp:2937 +msgid "values up (+16)" +msgstr "" + +#: src/gui/gui.cpp:2938 +msgid "values down (-16)" +msgstr "" + +#: src/gui/gui.cpp:2941 +msgid "transpose" +msgstr "" + +#: src/gui/gui.cpp:2949 +msgid "Notes" +msgstr "" + +#: src/gui/gui.cpp:2954 +msgid "Values" +msgstr "" + +#: src/gui/gui.cpp:2961 +msgid "change instrument..." +msgstr "" + +#: src/gui/gui.cpp:2974 +msgid "gradient/fade..." +msgstr "" + +#: src/gui/gui.cpp:2991 src/gui/gui.cpp:3036 +msgid "Nibble mode" +msgstr "" + +#: src/gui/gui.cpp:3000 +msgid "Go ahead" +msgstr "" + +#: src/gui/gui.cpp:3006 src/gui/insEdit.cpp:7604 +msgid "scale..." +msgstr "" + +#: src/gui/gui.cpp:3011 +msgid "Scale" +msgstr "" + +#: src/gui/gui.cpp:3017 src/gui/insEdit.cpp:7632 +msgid "randomize..." +msgstr "" + +#: src/gui/gui.cpp:3018 +msgid "Minimum" +msgstr "" + +#: src/gui/gui.cpp:3027 +msgid "Maximum" +msgstr "" + +#: src/gui/gui.cpp:3056 +msgid "flip selection" +msgstr "" + +#: src/gui/gui.cpp:3059 +msgid "collapse/expand amount##CollapseAmount" +msgstr "" + +#: src/gui/gui.cpp:3068 +msgid "collapse pattern" +msgstr "" + +#: src/gui/gui.cpp:3069 +msgid "expand pattern" +msgstr "" + +#: src/gui/gui.cpp:3074 +msgid "collapse song" +msgstr "" + +#: src/gui/gui.cpp:3075 +msgid "expand song" +msgstr "" + +#: src/gui/gui.cpp:3080 +msgid "find/replace" +msgstr "" + +#: src/gui/gui.cpp:3094 src/gui/gui.cpp:5807 src/gui/gui.cpp:7362 +#, c-format +msgid "could NOT save layout! %s" +msgstr "" + +#: src/gui/gui.cpp:3106 +#, c-format +msgid "could NOT load layout! %s" +msgstr "" + +#: src/gui/gui.cpp:3568 +msgid "" +"Furnace has been started in Safe Mode.\n" +"this means that:\n" +"\n" +"- software rendering is being used\n" +"- audio output may not work\n" +"- font loading is disabled\n" +"\n" +"check any settings which may have made Furnace start up in this mode.\n" +"font loading is one of these." +msgstr "" + +#: src/gui/gui.cpp:4053 +msgid "can't keep going without graphics! Furnace will quit now." +msgstr "" + +#: src/gui/gui.cpp:4191 +msgid "file" +msgstr "" + +#: src/gui/gui.cpp:4192 +msgid "new..." +msgstr "" + +#: src/gui/gui.cpp:4199 +msgid "open..." +msgstr "" + +#: src/gui/gui.cpp:4206 +msgid "open recent" +msgstr "" + +#: src/gui/gui.cpp:4222 +msgid "nothing here yet" +msgstr "" + +#: src/gui/gui.cpp:4225 +msgid "clear history" +msgstr "" + +#: src/gui/gui.cpp:4226 +msgid "Are you sure you want to clear the recent file list?" +msgstr "" + +#: src/gui/gui.cpp:4241 +msgid "save as..." +msgstr "" + +#: src/gui/gui.cpp:4246 src/gui/gui.cpp:4287 +msgid "export audio..." +msgstr "" + +#: src/gui/gui.cpp:4250 src/gui/gui.cpp:4291 +msgid "export VGM..." +msgstr "" + +#: src/gui/gui.cpp:4259 src/gui/gui.cpp:4300 +msgid "export ZSM..." +msgstr "" + +#: src/gui/gui.cpp:4269 src/gui/gui.cpp:4310 +msgid "export Amiga validation data..." +msgstr "" + +#: src/gui/gui.cpp:4274 src/gui/gui.cpp:4315 +msgid "export text..." +msgstr "" + +#: src/gui/gui.cpp:4278 src/gui/gui.cpp:4319 +msgid "export command stream..." +msgstr "" + +#: src/gui/gui.cpp:4282 src/gui/gui.cpp:4323 +msgid "export .dmf..." +msgstr "" + +#: src/gui/gui.cpp:4328 +msgid "export..." +msgstr "" + +#: src/gui/gui.cpp:4334 +msgid "manage chips" +msgstr "" + +#: src/gui/gui.cpp:4338 +msgid "add chip..." +msgstr "" + +#: src/gui/gui.cpp:4343 src/gui/sysManager.cpp:138 +#, c-format +msgid "cannot add chip! (%s)" +msgstr "" + +#: src/gui/gui.cpp:4355 +msgid "configure chip..." +msgstr "" + +#: src/gui/gui.cpp:4365 +msgid "change chip..." +msgstr "" + +#: src/gui/gui.cpp:4367 src/gui/gui.cpp:4390 +msgid "Preserve channel positions" +msgstr "" + +#: src/gui/gui.cpp:4379 src/gui/sysManager.cpp:109 +#, c-format +msgid "cannot change chip! (%s)" +msgstr "" + +#: src/gui/gui.cpp:4388 +msgid "remove chip..." +msgstr "" + +#: src/gui/gui.cpp:4394 +#, c-format +msgid "cannot remove chip! (%s)" +msgstr "" + +#: src/gui/gui.cpp:4408 +msgid "open built-in assets directory" +msgstr "" + +#: src/gui/gui.cpp:4414 +msgid "restore backup" +msgstr "" + +#: src/gui/gui.cpp:4418 +msgid "exit..." +msgstr "" + +#: src/gui/gui.cpp:4426 +msgid "edit" +msgstr "" + +#: src/gui/gui.cpp:4434 +msgid "clear..." +msgstr "" + +#: src/gui/gui.cpp:4439 +msgid "settings" +msgstr "" + +#: src/gui/gui.cpp:4441 +msgid "full screen" +msgstr "" + +#: src/gui/gui.cpp:4445 +msgid "lock layout" +msgstr "" + +#: src/gui/gui.cpp:4448 +msgid "pattern visualizer" +msgstr "" + +#: src/gui/gui.cpp:4454 +msgid "reset layout" +msgstr "" + +#: src/gui/gui.cpp:4458 +msgid "switch to mobile view" +msgstr "" + +#: src/gui/gui.cpp:4462 +msgid "user systems..." +msgstr "" + +#: src/gui/gui.cpp:4465 +msgid "settings..." +msgstr "" + +#: src/gui/gui.cpp:4471 +msgid "Window" +msgstr "" + +#: src/gui/gui.cpp:4471 +msgid "window" +msgstr "" + +#: src/gui/gui.cpp:4472 +msgid "song" +msgstr "" + +#: src/gui/gui.cpp:4473 +msgid "song comments" +msgstr "" + +#: src/gui/gui.cpp:4474 +msgid "song information" +msgstr "" + +#: src/gui/gui.cpp:4475 +msgid "subsongs" +msgstr "" + +#: src/gui/gui.cpp:4477 +msgid "channels" +msgstr "" + +#: src/gui/gui.cpp:4478 +msgid "chip manager" +msgstr "" + +#: src/gui/gui.cpp:4479 +msgid "orders" +msgstr "" + +#: src/gui/gui.cpp:4481 +msgid "pattern manager" +msgstr "" + +#: src/gui/gui.cpp:4482 +msgid "mixer" +msgstr "" + +#: src/gui/gui.cpp:4483 +msgid "compatibility flags" +msgstr "" + +#: src/gui/gui.cpp:4486 src/gui/gui.cpp:4488 +msgid "assets" +msgstr "" + +#: src/gui/gui.cpp:4490 +msgid "instruments" +msgstr "" + +#: src/gui/gui.cpp:4491 +msgid "samples" +msgstr "" + +#: src/gui/gui.cpp:4492 +msgid "wavetables" +msgstr "" + +#: src/gui/gui.cpp:4495 +msgid "instrument editor" +msgstr "" + +#: src/gui/gui.cpp:4496 +msgid "sample editor" +msgstr "" + +#: src/gui/gui.cpp:4497 +msgid "wavetable editor" +msgstr "" + +#: src/gui/gui.cpp:4500 +msgid "visualizers" +msgstr "" + +#: src/gui/gui.cpp:4501 +msgid "oscilloscope (master)" +msgstr "" + +#: src/gui/gui.cpp:4502 +msgid "oscilloscope (per-channel)" +msgstr "" + +#: src/gui/gui.cpp:4503 +msgid "oscilloscope (X-Y)" +msgstr "" + +#: src/gui/gui.cpp:4504 +msgid "volume meter" +msgstr "" + +#: src/gui/gui.cpp:4507 +msgid "tempo" +msgstr "" + +#: src/gui/gui.cpp:4508 +msgid "clock" +msgstr "" + +#: src/gui/gui.cpp:4509 +msgid "grooves" +msgstr "" + +#: src/gui/gui.cpp:4510 +msgid "speed" +msgstr "" + +#: src/gui/gui.cpp:4514 +msgid "log viewer" +msgstr "" + +#: src/gui/gui.cpp:4515 +msgid "register view" +msgstr "" + +#: src/gui/gui.cpp:4516 +msgid "statistics" +msgstr "" + +#: src/gui/gui.cpp:4517 +msgid "memory composition" +msgstr "" + +#: src/gui/gui.cpp:4521 src/gui/gui.cpp:4529 +msgid "effect list" +msgstr "" + +#: src/gui/gui.cpp:4522 +msgid "play/edit controls" +msgstr "" + +#: src/gui/gui.cpp:4523 +msgid "piano/input pad" +msgstr "" + +#: src/gui/gui.cpp:4524 +msgid "spoiler" +msgstr "" + +#: src/gui/gui.cpp:4528 +msgid "Help" +msgstr "" + +#: src/gui/gui.cpp:4528 +msgid "help" +msgstr "" + +#: src/gui/gui.cpp:4530 +msgid "debug menu" +msgstr "" + +#: src/gui/gui.cpp:4531 +msgid "inspector" +msgstr "" + +#: src/gui/gui.cpp:4532 +msgid "panic" +msgstr "" + +#: src/gui/gui.cpp:4533 +msgid "about..." +msgstr "" + +#: src/gui/gui.cpp:4548 +#, c-format +msgid "| Speed %d:%d" +msgstr "" + +#: src/gui/gui.cpp:4550 +#, c-format +msgid "| Speed %d" +msgstr "" + +#: src/gui/gui.cpp:4552 +msgid "| Groove" +msgstr "" + +#: src/gui/gui.cpp:4555 +#, c-format +msgid " @ %gHz (%g BPM) " +msgstr "" + +#: src/gui/gui.cpp:4558 +#, c-format +msgid "| Order %.2X/%.2X " +msgstr "" + +#: src/gui/gui.cpp:4560 +#, c-format +msgid "| Order %d/%d " +msgstr "" + +#: src/gui/gui.cpp:4564 +#, c-format +msgid "| Row %.2X/%.2X " +msgstr "" + +#: src/gui/gui.cpp:4566 +#, c-format +msgid "| Row %d/%d " +msgstr "" + +#: src/gui/gui.cpp:4569 +msgid "| " +msgstr "" + +#: src/gui/gui.cpp:4572 +msgid "Don't you have anything better to do?" +msgstr "" + +#: src/gui/gui.cpp:4582 +#, c-format +msgid "%d year " +msgid_plural "%d years " +msgstr[0] "" +msgstr[1] "" + +#: src/gui/gui.cpp:4583 +#, c-format +msgid "%d month " +msgid_plural "%d months " +msgstr[0] "" +msgstr[1] "" + +#: src/gui/gui.cpp:4584 +#, c-format +msgid "%d day " +msgid_plural "%d days " +msgstr[0] "" +msgstr[1] "" + +#: src/gui/gui.cpp:4609 +msgid "Note off (cut)" +msgstr "" + +#: src/gui/gui.cpp:4611 +msgid "Note off (release)" +msgstr "" + +#: src/gui/gui.cpp:4613 +msgid "Macro release only" +msgstr "" + +#: src/gui/gui.cpp:4615 +#, c-format +msgid "Note on: %s" +msgstr "" + +#: src/gui/gui.cpp:4623 +#, c-format +msgid "Ins %d: " +msgstr "" + +#: src/gui/gui.cpp:4626 +#, c-format +msgid "Ins %d: %s" +msgstr "" + +#: src/gui/gui.cpp:4635 +#, c-format +msgid "Set volume: %d (%.2X, INVALID!)" +msgstr "" + +#: src/gui/gui.cpp:4638 +#, c-format +msgid "Set volume: %d (%.2X, %d%%)" +msgstr "" + +#: src/gui/gui.cpp:4660 +msgid "| modified" +msgstr "" + +#: src/gui/gui.cpp:4825 src/gui/gui.cpp:4828 +msgid "System File Dialog Pending" +msgstr "" + +#: src/gui/gui.cpp:4941 +msgid "" +"there was an error in the file dialog! you may want to report this issue " +"to:\n" +"https://github.com/tildearrow/furnace/issues\n" +"check the Log Viewer (window > log viewer) for more information.\n" +"\n" +"for now please disable the system file picker in Settings > General." +msgstr "" + +#: src/gui/gui.cpp:4944 +msgid "can't do anything without Storage permissions!" +msgstr "" + +#: src/gui/gui.cpp:4946 +msgid "" +"Zenity/KDialog not available!\n" +"please install one of these, or disable the system file picker in Settings > " +"General." +msgstr "" + +#: src/gui/gui.cpp:5082 +msgid "" +"error while saving instrument! only the following instrument types are " +"supported:\n" +"- FM (OPN)\n" +"- SN76489/Sega PSG\n" +"- Game Boy\n" +"- PC Engine\n" +"- NES\n" +"- C64\n" +"- FM (OPLL)\n" +"- FDS" +msgstr "" + +#: src/gui/gui.cpp:5110 +msgid "there were some errors while loading samples:\n" +msgstr "" + +#: src/gui/gui.cpp:5155 src/gui/gui.cpp:6339 +msgid "...but you haven't selected a sample!" +msgstr "" + +#: src/gui/gui.cpp:5170 src/gui/gui.cpp:5179 +msgid "could not save sample! open Log Viewer for more information." +msgstr "" + +#: src/gui/gui.cpp:5198 +msgid "there were some warnings/errors while loading instruments:\n" +msgstr "" + +#: src/gui/gui.cpp:5204 +#, c-format +msgid "> %s: cannot load instrument! (%s)\n" +msgstr "" + +#: src/gui/gui.cpp:5222 src/gui/gui.cpp:5276 +#, c-format +msgid "cannot load instrument! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5228 +msgid "" +"congratulations! you managed to load nothing.\n" +"you are entitled to a bug report." +msgstr "" + +#: src/gui/gui.cpp:5269 src/gui/gui.cpp:6243 +msgid "...but you haven't selected an instrument!" +msgstr "" + +#: src/gui/gui.cpp:5281 +msgid "there were some errors while loading wavetables:\n" +msgstr "" + +#: src/gui/gui.cpp:5290 src/gui/gui.cpp:5300 src/gui/gui.cpp:5319 +#, c-format +msgid "cannot load wavetable! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5327 +msgid "...but you haven't selected a wavetable!" +msgstr "" + +#: src/gui/gui.cpp:5342 src/gui/gui.cpp:5363 src/gui/gui.cpp:5387 +#: src/gui/gui.cpp:5408 +msgid "could not open file!" +msgstr "" + +#: src/gui/gui.cpp:5350 +#, c-format +msgid "could not write VGM! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5371 +#, c-format +msgid "Could not write ZSM! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5395 +#, c-format +msgid "could not write text! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5416 +#, c-format +msgid "could not write command stream! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5440 +msgid "could not import user presets!" +msgstr "" + +#: src/gui/gui.cpp:5445 src/gui/gui.cpp:5462 +#, c-format +msgid "could not import user presets! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5483 +#, c-format +msgid "You opened: %s" +msgstr "" + +#: src/gui/gui.cpp:5486 +msgid "You opened:" +msgstr "" + +#: src/gui/gui.cpp:5494 +#, c-format +msgid "You saved: %s" +msgstr "" + +#: src/gui/gui.cpp:5515 src/gui/gui.cpp:5636 src/gui/gui.cpp:5637 +#: src/gui/insEdit.cpp:7520 +msgid "Error" +msgstr "" + +#: src/gui/gui.cpp:5520 src/gui/gui.cpp:6177 src/gui/gui.cpp:6178 +msgid "Select Instrument" +msgstr "" + +#: src/gui/gui.cpp:5525 src/gui/gui.cpp:6256 src/gui/gui.cpp:6257 +msgid "Import Raw Sample" +msgstr "" + +#: src/gui/gui.cpp:5540 src/gui/gui.cpp:5593 src/gui/gui.cpp:5594 +msgid "Rendering..." +msgstr "" + +#: src/gui/gui.cpp:5595 +msgid "Please wait..." +msgstr "" + +#: src/gui/gui.cpp:5596 +msgid "Abort" +msgstr "" + +#: src/gui/gui.cpp:5638 +#, c-format +msgid "%s" +msgstr "" + +#: src/gui/gui.cpp:5868 +msgid "Erasing" +msgstr "" + +#: src/gui/gui.cpp:5871 +msgid "All subsongs" +msgstr "" + +#: src/gui/gui.cpp:5878 +msgid "Current subsong" +msgstr "" + +#: src/gui/gui.cpp:5945 +msgid "Optimization" +msgstr "" + +#: src/gui/gui.cpp:5948 src/gui/patManager.cpp:36 +msgid "De-duplicate patterns" +msgstr "" + +#: src/gui/gui.cpp:5957 +msgid "Remove unused instruments" +msgstr "" + +#: src/gui/gui.cpp:5970 +msgid "Remove unused samples" +msgstr "" + +#: src/gui/gui.cpp:5987 +msgid "Never mind! Cancel" +msgstr "" + +#: src/gui/gui.cpp:6066 +msgid "Drum kit mode:" +msgstr "" + +#: src/gui/gui.cpp:6070 +msgid "12 samples per octave" +msgstr "" + +#: src/gui/gui.cpp:6075 +msgid "Starting octave" +msgstr "" + +#: src/gui/gui.cpp:6095 +msgid "Drum Kit" +msgstr "" + +#: src/gui/gui.cpp:6181 +msgid "this is an instrument bank! select which one to use:" +msgstr "" + +#: src/gui/gui.cpp:6184 +msgid "this is an instrument bank! select which ones to load:" +msgstr "" + +#: src/gui/gui.cpp:6258 +msgid "Data type:" +msgstr "" + +#: src/gui/gui.cpp:6285 +msgid "(will be mixed down to mono)" +msgstr "" + +#: src/gui/gui.cpp:6286 +msgid "Unsigned" +msgstr "" + +#: src/gui/gui.cpp:6290 +msgid "Big endian" +msgstr "" + +#: src/gui/gui.cpp:6298 +msgid "Swap nibbles" +msgstr "" + +#: src/gui/gui.cpp:6302 +msgid "Swap words" +msgstr "" + +#: src/gui/gui.cpp:6306 +msgid "Encoding:" +msgstr "" + +#: src/gui/gui.cpp:6319 +msgid "Reverse bit order" +msgstr "" + +#: src/gui/gui.cpp:6361 +msgid "Error! No string provided!" +msgstr "" + +#: src/gui/gui.cpp:6683 +msgid "it appears I couldn't load these fonts. any setting you can check?" +msgstr "" + +#: src/gui/gui.cpp:6863 src/gui/gui.cpp:6971 +msgid "" +"could not init renderer!\n" +"falling back to software renderer. please restart Furnace." +msgstr "" + +#: src/gui/gui.cpp:6865 src/gui/gui.cpp:6973 +#, c-format +msgid "" +"could not init renderer! %s\n" +"falling back to software renderer. please restart Furnace." +msgstr "" + +#: src/gui/gui.cpp:6870 src/gui/gui.cpp:6978 +msgid "could not init renderer!" +msgstr "" + +#: src/gui/gui.cpp:6881 +#, c-format +msgid "could not open window! %s" +msgstr "" + +#: src/gui/gui.cpp:6886 +msgid "" +"\n" +"falling back to software renderer. please restart Furnace." +msgstr "" + +#: src/gui/gui.cpp:7034 +msgid "Size column to fit###SizeOne" +msgstr "" + +#: src/gui/gui.cpp:7036 +msgid "Size all columns to fit###SizeAll" +msgstr "" + +#: src/gui/gui.cpp:7038 +msgid "Size all columns to default###SizeAll" +msgstr "" + +#: src/gui/gui.cpp:7040 +msgid "Reset order###ResetOrder" +msgstr "" + +#: src/gui/gui.cpp:7042 +msgid "(Main menu bar)" +msgstr "" + +#: src/gui/gui.cpp:7044 +msgid "(Popup)" +msgstr "" + +#: src/gui/gui.cpp:7046 +msgid "(Untitled)" +msgstr "" + +#: src/gui/gui.cpp:7048 +msgid "Hide tab bar###HideTabBar" +msgstr "" + +#: src/gui/gui.cpp:7052 +msgid "LocaleSettings: ccjk" +msgstr "" + +#: src/gui/gui.cpp:7564 +msgid "Unsaved changes! Save changes before quitting?" +msgstr "" + +#: src/gui/sysManager.cpp:42 +msgid "Preserve channel order" +msgstr "" + +#: src/gui/sysManager.cpp:44 +msgid "Clone channel data" +msgstr "" + +#: src/gui/sysManager.cpp:46 +msgid "Clone at end" +msgstr "" + +#: src/gui/sysManager.cpp:56 +msgid "Actions" +msgstr "" + +#: src/gui/sysManager.cpp:69 +msgid "(drag to swap chips)" +msgstr "" + +#: src/gui/sysManager.cpp:90 +msgid "Clone##SysDup" +msgstr "" + +#: src/gui/sysManager.cpp:92 +#, c-format +msgid "cannot clone chip! (%s)" +msgstr "" + +#: src/gui/sysManager.cpp:98 +msgid "Change##SysChange" +msgstr "" + +#: src/gui/sysManager.cpp:120 +msgid "Are you sure you want to remove this chip?" +msgstr "" + +#: src/gui/patManager.cpp:43 +msgid "Re-arrange patterns" +msgstr "" + +#: src/gui/patManager.cpp:50 +msgid "Sort orders" +msgstr "" + +#: src/gui/patManager.cpp:57 +msgid "Make patterns unique" +msgstr "" + +#: src/gui/patManager.cpp:103 +#, c-format +msgid "" +"Pattern %.2X\n" +"- not allocated" +msgstr "" + +#: src/gui/patManager.cpp:105 +#, c-format +msgid "" +"Pattern %.2X\n" +"- use count: %d (%.0f%%)\n" +"\n" +"right-click to erase" +msgstr "" + +#: src/gui/insEdit.cpp:39 +msgid "Down Down Down" +msgstr "" + +#: src/gui/insEdit.cpp:40 +msgid "Down." +msgstr "" + +#: src/gui/insEdit.cpp:41 +msgid "Down Up Down Up" +msgstr "" + +#: src/gui/insEdit.cpp:42 +msgid "Down UP" +msgstr "" + +#: src/gui/insEdit.cpp:43 +msgid "Up Up Up" +msgstr "" + +#: src/gui/insEdit.cpp:44 +msgid "Up." +msgstr "" + +#: src/gui/insEdit.cpp:45 +msgid "Up Down Up Down" +msgstr "" + +#: src/gui/insEdit.cpp:46 +msgid "Up DOWN" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Algorithm" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Feedback" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "LFO > Freq" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "LFO > Amp" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Decay 2" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "EnvScale" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Multiplier" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Detune 2" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "AM" +msgstr "" + +#: src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:5438 src/gui/insEdit.cpp:6516 +msgid "AM Depth" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Vibrato Depth" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Sustained" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Level Scaling" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Vibrato" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Scale Rate" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "OP2 Half Sine" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "OP1 Half Sine" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "EnvShift" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Reverb" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Fine" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "LFO2 > Freq" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "LFO2 > Amp" +msgstr "" + +#: src/gui/insEdit.cpp:56 src/gui/insEdit.cpp:68 src/gui/insEdit.cpp:7391 +msgid "OP4 Noise Mode" +msgstr "" + +#: src/gui/insEdit.cpp:57 +msgid "Envelope Delay" +msgstr "" + +#: src/gui/insEdit.cpp:58 src/gui/insEdit.cpp:70 +msgid "Output Level" +msgstr "" + +#: src/gui/insEdit.cpp:59 +msgid "Modulation Input Level" +msgstr "" + +#: src/gui/insEdit.cpp:60 +msgid "Left Output" +msgstr "" + +#: src/gui/insEdit.cpp:61 +msgid "Right Output" +msgstr "" + +#: src/gui/insEdit.cpp:62 +msgid "Coarse Tune (semitones)" +msgstr "" + +#: src/gui/insEdit.cpp:64 +msgid "Fixed Frequency Mode" +msgstr "" + +#: src/gui/insEdit.cpp:69 +msgid "Env. Delay" +msgstr "" + +#: src/gui/insEdit.cpp:71 +msgid "ModInput" +msgstr "" + +#: src/gui/insEdit.cpp:72 +msgid "Left" +msgstr "" + +#: src/gui/insEdit.cpp:73 +msgid "Right" +msgstr "" + +#: src/gui/insEdit.cpp:74 +msgid "Tune" +msgstr "" + +#: src/gui/insEdit.cpp:76 src/gui/insEdit.cpp:610 src/gui/insEdit.cpp:3792 +#: src/gui/insEdit.cpp:4554 src/gui/insEdit.cpp:4848 +msgid "Fixed" +msgstr "" + +#: src/gui/insEdit.cpp:98 src/gui/insEdit.cpp:117 src/gui/insEdit.cpp:136 +#: src/gui/insEdit.cpp:156 +msgid "User" +msgstr "" + +#: src/gui/insEdit.cpp:99 +msgid "1. Violin" +msgstr "" + +#: src/gui/insEdit.cpp:100 src/gui/insEdit.cpp:138 src/gui/insEdit.cpp:158 +msgid "2. Guitar" +msgstr "" + +#: src/gui/insEdit.cpp:101 src/gui/insEdit.cpp:159 +msgid "3. Piano" +msgstr "" + +#: src/gui/insEdit.cpp:102 src/gui/insEdit.cpp:160 +msgid "4. Flute" +msgstr "" + +#: src/gui/insEdit.cpp:103 src/gui/insEdit.cpp:122 src/gui/insEdit.cpp:161 +msgid "5. Clarinet" +msgstr "" + +#: src/gui/insEdit.cpp:104 +msgid "6. Oboe" +msgstr "" + +#: src/gui/insEdit.cpp:105 src/gui/insEdit.cpp:124 src/gui/insEdit.cpp:143 +#: src/gui/insEdit.cpp:163 +msgid "7. Trumpet" +msgstr "" + +#: src/gui/insEdit.cpp:106 +msgid "8. Organ" +msgstr "" + +#: src/gui/insEdit.cpp:107 +msgid "9. Horn" +msgstr "" + +#: src/gui/insEdit.cpp:108 +msgid "10. Synth" +msgstr "" + +#: src/gui/insEdit.cpp:109 +msgid "11. Harpsichord" +msgstr "" + +#: src/gui/insEdit.cpp:110 src/gui/insEdit.cpp:129 src/gui/insEdit.cpp:148 +msgid "12. Vibraphone" +msgstr "" + +#: src/gui/insEdit.cpp:111 +msgid "13. Synth Bass" +msgstr "" + +#: src/gui/insEdit.cpp:112 +msgid "14. Acoustic Bass" +msgstr "" + +#: src/gui/insEdit.cpp:113 +msgid "15. Electric Guitar" +msgstr "" + +#: src/gui/insEdit.cpp:114 src/gui/insEdit.cpp:133 src/gui/insEdit.cpp:152 +#: src/gui/insEdit.cpp:172 src/gui/insEdit.cpp:3176 +msgid "Drums" +msgstr "" + +#: src/gui/insEdit.cpp:118 +msgid "1. Electric String" +msgstr "" + +#: src/gui/insEdit.cpp:119 +msgid "2. Bow wow" +msgstr "" + +#: src/gui/insEdit.cpp:120 src/gui/insEdit.cpp:139 +msgid "3. Electric Guitar" +msgstr "" + +#: src/gui/insEdit.cpp:121 +msgid "4. Organ" +msgstr "" + +#: src/gui/insEdit.cpp:123 +msgid "6. Saxophone" +msgstr "" + +#: src/gui/insEdit.cpp:125 +msgid "8. Street Organ" +msgstr "" + +#: src/gui/insEdit.cpp:126 +msgid "9. Synth Brass" +msgstr "" + +#: src/gui/insEdit.cpp:127 +msgid "10. Electric Piano" +msgstr "" + +#: src/gui/insEdit.cpp:128 +msgid "11. Bass" +msgstr "" + +#: src/gui/insEdit.cpp:130 +msgid "13. Chime" +msgstr "" + +#: src/gui/insEdit.cpp:131 +msgid "14. Tom Tom II" +msgstr "" + +#: src/gui/insEdit.cpp:132 +msgid "15. Noise" +msgstr "" + +#: src/gui/insEdit.cpp:137 +msgid "1. Strings" +msgstr "" + +#: src/gui/insEdit.cpp:140 +msgid "4. Electric Piano" +msgstr "" + +#: src/gui/insEdit.cpp:141 +msgid "5. Flute" +msgstr "" + +#: src/gui/insEdit.cpp:142 +msgid "6. Marimba" +msgstr "" + +#: src/gui/insEdit.cpp:144 +msgid "8. Harmonica" +msgstr "" + +#: src/gui/insEdit.cpp:145 +msgid "9. Tuba" +msgstr "" + +#: src/gui/insEdit.cpp:146 +msgid "10. Synth Brass" +msgstr "" + +#: src/gui/insEdit.cpp:147 +msgid "11. Short Saw" +msgstr "" + +#: src/gui/insEdit.cpp:149 +msgid "13. Electric Guitar 2" +msgstr "" + +#: src/gui/insEdit.cpp:150 +msgid "14. Synth Bass" +msgstr "" + +#: src/gui/insEdit.cpp:151 +msgid "15. Sitar" +msgstr "" + +#: src/gui/insEdit.cpp:157 +msgid "1. Bell" +msgstr "" + +#: src/gui/insEdit.cpp:162 +msgid "6. Rattling Bell" +msgstr "" + +#: src/gui/insEdit.cpp:164 +msgid "8. Reed Organ" +msgstr "" + +#: src/gui/insEdit.cpp:165 +msgid "9. Soft Bell" +msgstr "" + +#: src/gui/insEdit.cpp:166 +msgid "10. Xylophone" +msgstr "" + +#: src/gui/insEdit.cpp:167 +msgid "11. Vibraphone" +msgstr "" + +#: src/gui/insEdit.cpp:168 +msgid "12. Brass" +msgstr "" + +#: src/gui/insEdit.cpp:169 +msgid "13. Bass Guitar" +msgstr "" + +#: src/gui/insEdit.cpp:170 +msgid "14. Synth" +msgstr "" + +#: src/gui/insEdit.cpp:171 +msgid "15. Chorus" +msgstr "" + +#: src/gui/insEdit.cpp:178 src/gui/insEdit.cpp:189 +msgid "Half Sine" +msgstr "" + +#: src/gui/insEdit.cpp:179 src/gui/insEdit.cpp:190 +msgid "Absolute Sine" +msgstr "" + +#: src/gui/insEdit.cpp:180 +msgid "Quarter Sine" +msgstr "" + +#: src/gui/insEdit.cpp:181 src/gui/insEdit.cpp:203 +msgid "Squished Sine" +msgstr "" + +#: src/gui/insEdit.cpp:182 src/gui/insEdit.cpp:205 +msgid "Squished AbsSine" +msgstr "" + +#: src/gui/insEdit.cpp:184 src/gui/insEdit.cpp:195 +msgid "Derived Square" +msgstr "" + +#: src/gui/insEdit.cpp:191 +msgid "Pulse Sine" +msgstr "" + +#: src/gui/insEdit.cpp:192 +msgid "Sine (Even Periods)" +msgstr "" + +#: src/gui/insEdit.cpp:193 +msgid "AbsSine (Even Periods)" +msgstr "" + +#: src/gui/insEdit.cpp:201 +msgid "Cut Sine" +msgstr "" + +#: src/gui/insEdit.cpp:202 +msgid "Cut Triangle" +msgstr "" + +#: src/gui/insEdit.cpp:204 +msgid "Squished Triangle" +msgstr "" + +#: src/gui/insEdit.cpp:206 +msgid "Squished AbsTriangle" +msgstr "" + +#: src/gui/insEdit.cpp:224 +msgid "Noise disabled" +msgstr "" + +#: src/gui/insEdit.cpp:225 +msgid "Square + noise" +msgstr "" + +#: src/gui/insEdit.cpp:226 +msgid "Ringmod from OP3 + noise" +msgstr "" + +#: src/gui/insEdit.cpp:227 +msgid "" +"Ringmod from OP3 + double pitch ModInput\n" +"WARNING - has emulation issues; subject to change" +msgstr "" + +#: src/gui/insEdit.cpp:232 +msgid "Bitwise AND" +msgstr "" + +#: src/gui/insEdit.cpp:233 +msgid "Bitwise OR" +msgstr "" + +#: src/gui/insEdit.cpp:234 +msgid "Bitwise XOR" +msgstr "" + +#: src/gui/insEdit.cpp:239 src/gui/insEdit.cpp:390 +msgid "gate" +msgstr "" + +#: src/gui/insEdit.cpp:240 src/gui/insEdit.cpp:391 +msgid "sync" +msgstr "" + +#: src/gui/insEdit.cpp:241 src/gui/insEdit.cpp:392 +msgid "ring" +msgstr "" + +#: src/gui/insEdit.cpp:327 +msgid "How did you even" +msgstr "" + +#: src/gui/insEdit.cpp:335 +msgid "triangle" +msgstr "" + +#: src/gui/insEdit.cpp:336 src/gui/insEdit.cpp:5821 +msgid "saw" +msgstr "" + +#: src/gui/insEdit.cpp:337 src/gui/insEdit.cpp:5827 +msgid "pulse" +msgstr "" + +#: src/gui/insEdit.cpp:338 src/gui/insEdit.cpp:344 src/gui/insEdit.cpp:373 +#: src/gui/insEdit.cpp:424 src/gui/insEdit.cpp:429 src/gui/insEdit.cpp:5833 +msgid "noise" +msgstr "" + +#: src/gui/insEdit.cpp:343 +msgid "tone" +msgstr "" + +#: src/gui/insEdit.cpp:345 +msgid "envelope" +msgstr "" + +#: src/gui/insEdit.cpp:350 +msgid "hold" +msgstr "" + +#: src/gui/insEdit.cpp:351 +msgid "alternate" +msgstr "" + +#: src/gui/insEdit.cpp:352 src/gui/insEdit.cpp:364 +msgid "direction" +msgstr "" + +#: src/gui/insEdit.cpp:353 src/gui/insEdit.cpp:436 +msgid "enable" +msgstr "" + +#: src/gui/insEdit.cpp:357 src/gui/insEdit.cpp:368 +msgid "enabled" +msgstr "" + +#: src/gui/insEdit.cpp:361 +msgid "mirror" +msgstr "" + +#: src/gui/insEdit.cpp:365 +msgid "resolution" +msgstr "" + +#: src/gui/insEdit.cpp:366 +msgid "fixed" +msgstr "" + +#: src/gui/insEdit.cpp:367 +msgid "N/A" +msgstr "" + +#: src/gui/insEdit.cpp:374 +msgid "echo" +msgstr "" + +#: src/gui/insEdit.cpp:375 +msgid "pitch mod" +msgstr "" + +#: src/gui/insEdit.cpp:376 src/gui/insEdit.cpp:508 +msgid "invert right" +msgstr "" + +#: src/gui/insEdit.cpp:377 src/gui/insEdit.cpp:509 +msgid "invert left" +msgstr "" + +#: src/gui/insEdit.cpp:382 src/gui/insEdit.cpp:5905 +msgid "low" +msgstr "" + +#: src/gui/insEdit.cpp:383 src/gui/insEdit.cpp:5911 +msgid "band" +msgstr "" + +#: src/gui/insEdit.cpp:384 src/gui/insEdit.cpp:5917 +msgid "high" +msgstr "" + +#: src/gui/insEdit.cpp:385 src/gui/insEdit.cpp:5924 +msgid "ch3off" +msgstr "" + +#: src/gui/insEdit.cpp:393 +msgid "test" +msgstr "" + +#: src/gui/insEdit.cpp:398 +msgid "15KHz" +msgstr "" + +#: src/gui/insEdit.cpp:399 +msgid "filter 2+4" +msgstr "" + +#: src/gui/insEdit.cpp:400 +msgid "filter 1+3" +msgstr "" + +#: src/gui/insEdit.cpp:401 +msgid "16-bit 3+4" +msgstr "" + +#: src/gui/insEdit.cpp:402 +msgid "16-bit 1+2" +msgstr "" + +#: src/gui/insEdit.cpp:403 +msgid "high3" +msgstr "" + +#: src/gui/insEdit.cpp:404 +msgid "high1" +msgstr "" + +#: src/gui/insEdit.cpp:405 +msgid "poly9" +msgstr "" + +#: src/gui/insEdit.cpp:414 +msgid "16'" +msgstr "" + +#: src/gui/insEdit.cpp:415 +msgid "8'" +msgstr "" + +#: src/gui/insEdit.cpp:416 +msgid "4'" +msgstr "" + +#: src/gui/insEdit.cpp:417 +msgid "2'" +msgstr "" + +#: src/gui/insEdit.cpp:418 +msgid "sustain" +msgstr "" + +#: src/gui/insEdit.cpp:423 +msgid "square" +msgstr "" + +#: src/gui/insEdit.cpp:431 +msgid "surround" +msgstr "" + +#: src/gui/insEdit.cpp:437 +msgid "oneshot" +msgstr "" + +#: src/gui/insEdit.cpp:438 +msgid "split L/R" +msgstr "" + +#: src/gui/insEdit.cpp:439 +msgid "HinvR" +msgstr "" + +#: src/gui/insEdit.cpp:440 +msgid "VinvR" +msgstr "" + +#: src/gui/insEdit.cpp:441 +msgid "HinvL" +msgstr "" + +#: src/gui/insEdit.cpp:442 +msgid "VinvL" +msgstr "" + +#: src/gui/insEdit.cpp:447 src/gui/insEdit.cpp:476 +msgid "ring mod" +msgstr "" + +#: src/gui/insEdit.cpp:448 +msgid "low pass" +msgstr "" + +#: src/gui/insEdit.cpp:449 src/gui/insEdit.cpp:475 +msgid "high pass" +msgstr "" + +#: src/gui/insEdit.cpp:450 +msgid "band pass" +msgstr "" + +#: src/gui/insEdit.cpp:459 +msgid "enable tap B" +msgstr "" + +#: src/gui/insEdit.cpp:460 +msgid "AM with slope" +msgstr "" + +#: src/gui/insEdit.cpp:465 +msgid "invert B" +msgstr "" + +#: src/gui/insEdit.cpp:466 +msgid "invert A" +msgstr "" + +#: src/gui/insEdit.cpp:467 +msgid "reset B" +msgstr "" + +#: src/gui/insEdit.cpp:468 +msgid "reset A" +msgstr "" + +#: src/gui/insEdit.cpp:469 +msgid "clip B" +msgstr "" + +#: src/gui/insEdit.cpp:470 +msgid "clip A" +msgstr "" + +#: src/gui/insEdit.cpp:477 +msgid "swap counters (noise)" +msgstr "" + +#: src/gui/insEdit.cpp:478 +msgid "low pass (noise)" +msgstr "" + +#: src/gui/insEdit.cpp:485 +msgid "rear right" +msgstr "" + +#: src/gui/insEdit.cpp:486 +msgid "rear left" +msgstr "" + +#: src/gui/insEdit.cpp:491 +msgid "on" +msgstr "" + +#: src/gui/insEdit.cpp:496 +msgid "k1 slowdown" +msgstr "" + +#: src/gui/insEdit.cpp:497 +msgid "k2 slowdown" +msgstr "" + +#: src/gui/insEdit.cpp:502 +msgid "pause" +msgstr "" + +#: src/gui/insEdit.cpp:503 +msgid "reverse" +msgstr "" + +#: src/gui/insEdit.cpp:521 +msgid "Subtract" +msgstr "" + +#: src/gui/insEdit.cpp:522 +msgid "Average" +msgstr "" + +#: src/gui/insEdit.cpp:523 src/gui/insEdit.cpp:2037 +msgid "Phase" +msgstr "" + +#: src/gui/insEdit.cpp:524 +msgid "Chorus" +msgstr "" + +#: src/gui/insEdit.cpp:528 +msgid "None (dual)" +msgstr "" + +#: src/gui/insEdit.cpp:529 +msgid "Wipe" +msgstr "" + +#: src/gui/insEdit.cpp:531 +msgid "Fade (ping-pong)" +msgstr "" + +#: src/gui/insEdit.cpp:532 +msgid "Overlay" +msgstr "" + +#: src/gui/insEdit.cpp:533 +msgid "Negative Overlay" +msgstr "" + +#: src/gui/insEdit.cpp:534 +msgid "Slide" +msgstr "" + +#: src/gui/insEdit.cpp:535 +msgid "Mix Chorus" +msgstr "" + +#: src/gui/insEdit.cpp:536 +msgid "Phase Modulation" +msgstr "" + +#: src/gui/insEdit.cpp:541 +msgid "Sweep" +msgstr "" + +#: src/gui/insEdit.cpp:542 src/gui/insEdit.cpp:552 +msgid "Wait" +msgstr "" + +#: src/gui/insEdit.cpp:543 src/gui/insEdit.cpp:553 +msgid "Wait for Release" +msgstr "" + +#: src/gui/insEdit.cpp:545 src/gui/insEdit.cpp:555 +msgid "Loop until Release" +msgstr "" + +#: src/gui/insEdit.cpp:549 +msgid "Volume Sweep" +msgstr "" + +#: src/gui/insEdit.cpp:550 +msgid "Frequency Sweep" +msgstr "" + +#: src/gui/insEdit.cpp:551 +msgid "Cutoff Sweep" +msgstr "" + +#: src/gui/insEdit.cpp:559 src/gui/insEdit.cpp:6604 +msgid "Direct" +msgstr "" + +#: src/gui/insEdit.cpp:560 src/gui/insEdit.cpp:6608 +msgid "Decrease (linear)" +msgstr "" + +#: src/gui/insEdit.cpp:561 src/gui/insEdit.cpp:6612 +msgid "Decrease (logarithmic)" +msgstr "" + +#: src/gui/insEdit.cpp:562 src/gui/insEdit.cpp:6616 +msgid "Increase (linear)" +msgstr "" + +#: src/gui/insEdit.cpp:563 src/gui/insEdit.cpp:6620 +msgid "Increase (bent line)" +msgstr "" + +#: src/gui/insEdit.cpp:611 +msgid "Relative" +msgstr "" + +#: src/gui/insEdit.cpp:616 +#, c-format +msgid "%d: +%d (exponential)" +msgstr "" + +#: src/gui/insEdit.cpp:619 +#, c-format +msgid "%d: +%d (linear)" +msgstr "" + +#: src/gui/insEdit.cpp:622 +#, c-format +msgid "%d: -%d (exponential)" +msgstr "" + +#: src/gui/insEdit.cpp:625 +#, c-format +msgid "%d: -%d (linear)" +msgstr "" + +#: src/gui/insEdit.cpp:627 +#, c-format +msgid "%d: %d (direct)" +msgstr "" + +#: src/gui/insEdit.cpp:660 +msgid "Random" +msgstr "" + +#: src/gui/insEdit.cpp:1610 +msgid "" +"left click to restart\n" +"middle click to pause\n" +"right click to see algorithm" +msgstr "" + +#: src/gui/insEdit.cpp:1620 +msgid "" +"left click to configure TL scaling\n" +"right click to see FM preview" +msgstr "" + +#: src/gui/insEdit.cpp:1624 +msgid "right click to see FM preview" +msgstr "" + +#: src/gui/insEdit.cpp:1639 +msgid "operator level changes with volume?" +msgstr "" + +#: src/gui/insEdit.cpp:1648 +msgid "AUTO##OPKVS" +msgstr "" + +#: src/gui/insEdit.cpp:1650 +msgid "NO##OPKVS" +msgstr "" + +#: src/gui/insEdit.cpp:1652 +msgid "YES##OPKVS" +msgstr "" + +#: src/gui/insEdit.cpp:1900 src/gui/insEdit.cpp:2005 +msgid "Bottom" +msgstr "" + +#: src/gui/insEdit.cpp:1940 +msgid "Hold" +msgstr "" + +#: src/gui/insEdit.cpp:1949 +msgid "SusTime" +msgstr "" + +#: src/gui/insEdit.cpp:1969 +msgid "SusDecay" +msgstr "" + +#: src/gui/insEdit.cpp:2047 +msgid "Shape" +msgstr "" + +#: src/gui/insEdit.cpp:2100 +msgid "Macro type: Sequence" +msgstr "" + +#: src/gui/insEdit.cpp:2103 +msgid "Macro type: ADSR" +msgstr "" + +#: src/gui/insEdit.cpp:2106 +msgid "Macro type: LFO" +msgstr "" + +#: src/gui/insEdit.cpp:2109 +msgid "Macro type: What's going on here?" +msgstr "" + +#: src/gui/insEdit.cpp:2122 +msgid "Delay/Step Length" +msgstr "" + +#: src/gui/insEdit.cpp:2125 +msgid "Step Length (ticks)##IMacroSpeed" +msgstr "" + +#: src/gui/insEdit.cpp:2129 +msgid "Delay##IMacroDelay" +msgstr "" + +#: src/gui/insEdit.cpp:2142 +msgid "Release mode: Active (jump to release pos)" +msgstr "" + +#: src/gui/insEdit.cpp:2144 +msgid "Release mode: Passive (delayed release)" +msgstr "" + +#: src/gui/insEdit.cpp:2393 +msgid "StepLen" +msgstr "" + +#: src/gui/insEdit.cpp:2401 +msgid "Delay" +msgstr "" + +#: src/gui/insEdit.cpp:2425 +msgid "The heck? No, this isn't even working correctly..." +msgstr "" + +#: src/gui/insEdit.cpp:2428 +msgid "The only problem with that selectedMacro is that it's a bug..." +msgstr "" + +#: src/gui/insEdit.cpp:2589 +msgid "(copying)" +msgstr "" + +#: src/gui/insEdit.cpp:2591 +msgid "(swapping)" +msgstr "" + +#: src/gui/insEdit.cpp:2595 +msgid "" +"- drag to swap operator\n" +"- shift-drag to copy operator" +msgstr "" + +#: src/gui/insEdit.cpp:2632 +msgid "new DPCM features disabled (compatibility)!" +msgstr "" + +#: src/gui/insEdit.cpp:2633 +msgid "click here to enable them." +msgstr "" + +#: src/gui/insEdit.cpp:2644 +msgid "none selected" +msgstr "" + +#: src/gui/insEdit.cpp:2657 +msgid "Use sample" +msgstr "" + +#: src/gui/insEdit.cpp:2659 +msgid "Sample bank slot##BANKSLOT" +msgstr "" + +#: src/gui/insEdit.cpp:2681 +msgid "Use wavetable (Amiga/Generic DAC only)" +msgstr "" + +#: src/gui/insEdit.cpp:2681 +msgid "Use wavetable" +msgstr "" + +#: src/gui/insEdit.cpp:2708 +msgid "Use sample map" +msgstr "" + +#: src/gui/insEdit.cpp:2730 +msgid "delta" +msgstr "" + +#: src/gui/insEdit.cpp:2736 +msgid "sample name" +msgstr "" + +#: src/gui/insEdit.cpp:3001 +msgid "set entire map to this pitch" +msgstr "" + +#: src/gui/insEdit.cpp:3009 +msgid "set entire map to this delta counter value" +msgstr "" + +#: src/gui/insEdit.cpp:3018 +msgid "set entire map to this note" +msgstr "" + +#: src/gui/insEdit.cpp:3027 +msgid "set entire map to this sample" +msgstr "" + +#: src/gui/insEdit.cpp:3037 +msgid "reset pitches" +msgstr "" + +#: src/gui/insEdit.cpp:3042 +msgid "clear delta counter values" +msgstr "" + +#: src/gui/insEdit.cpp:3048 +msgid "reset notes" +msgstr "" + +#: src/gui/insEdit.cpp:3054 +msgid "clear map samples" +msgstr "" + +#: src/gui/insEdit.cpp:3148 +msgid "Request from TX81Z" +msgstr "" + +#: src/gui/insEdit.cpp:3234 +#, c-format +msgid "%s name" +msgstr "" + +#: src/gui/insEdit.cpp:3286 +msgid "Fixed frequency mode" +msgstr "" + +#: src/gui/insEdit.cpp:3288 +msgid "" +"when enabled, drums will be set to the specified frequencies, ignoring the " +"note." +msgstr "" + +#: src/gui/insEdit.cpp:3296 +msgid "Drum" +msgstr "" + +#: src/gui/insEdit.cpp:3298 src/gui/insEdit.cpp:3798 src/gui/insEdit.cpp:3904 +#: src/gui/insEdit.cpp:4404 src/gui/insEdit.cpp:4468 src/gui/insEdit.cpp:5068 +#: src/gui/insEdit.cpp:5518 +msgid "Block" +msgstr "" + +#: src/gui/insEdit.cpp:3300 src/gui/insEdit.cpp:3803 src/gui/insEdit.cpp:3909 +#: src/gui/insEdit.cpp:4993 src/gui/insEdit.cpp:5079 src/gui/insEdit.cpp:5519 +msgid "FreqNum" +msgstr "" + +#: src/gui/insEdit.cpp:3303 +msgid "Snare/Hi-hat" +msgstr "" + +#: src/gui/insEdit.cpp:3304 +msgid "Tom/Top" +msgstr "" + +#: src/gui/insEdit.cpp:3314 +msgid "Volume##TL" +msgstr "" + +#: src/gui/insEdit.cpp:3316 +msgid "this volume slider only works in compatibility (non-drums) system." +msgstr "" + +#: src/gui/insEdit.cpp:3626 +msgid "Env" +msgstr "" + +#: src/gui/insEdit.cpp:3980 src/gui/insEdit.cpp:4346 src/gui/insEdit.cpp:4396 +#: src/gui/insEdit.cpp:5104 +msgid "OPL2/3 only (last 4 waveforms are OPL3 only)" +msgstr "" + +#: src/gui/insEdit.cpp:4079 src/gui/insEdit.cpp:4788 +#, c-format +msgid "Envelope 2 (kick only)" +msgstr "" + +#: src/gui/insEdit.cpp:4084 +#, c-format +msgid "Operator %d" +msgstr "" + +#: src/gui/insEdit.cpp:4414 +msgid "Freq" +msgstr "" + +#: src/gui/insEdit.cpp:4443 +msgid "Only on YM2151 (OPM)" +msgstr "" + +#: src/gui/insEdit.cpp:4466 +msgid "Blk" +msgstr "" + +#: src/gui/insEdit.cpp:4479 +msgid "F" +msgstr "" + +#: src/gui/insEdit.cpp:4481 +msgid "Frequency (F-Num)" +msgstr "" + +#: src/gui/insEdit.cpp:4833 +msgid "SSG On" +msgstr "" + +#: src/gui/insEdit.cpp:5206 src/gui/insEdit.cpp:5207 +msgid "waiting..." +msgstr "" + +#: src/gui/insEdit.cpp:5210 src/gui/insEdit.cpp:5211 +msgid "no instrument selected" +msgstr "" + +#: src/gui/insEdit.cpp:5393 +msgid "" +"none of the currently present chips are able to play this instrument type!" +msgstr "" + +#: src/gui/insEdit.cpp:5413 +msgid "FM Macros" +msgstr "" + +#: src/gui/insEdit.cpp:5435 src/gui/insEdit.cpp:5440 +msgid "LFO Speed" +msgstr "" + +#: src/gui/insEdit.cpp:5439 src/gui/insEdit.cpp:6514 +msgid "PM Depth" +msgstr "" + +#: src/gui/insEdit.cpp:5441 +msgid "LFO Shape" +msgstr "" + +#: src/gui/insEdit.cpp:5444 +msgid "OpMask" +msgstr "" + +#: src/gui/insEdit.cpp:5446 +msgid "AM Depth 2" +msgstr "" + +#: src/gui/insEdit.cpp:5447 +msgid "PM Depth 2" +msgstr "" + +#: src/gui/insEdit.cpp:5448 +msgid "LFO2 Speed" +msgstr "" + +#: src/gui/insEdit.cpp:5449 +msgid "LFO2 Shape" +msgstr "" + +#: src/gui/insEdit.cpp:5458 +#, c-format +msgid "Operator Macros" +msgstr "" + +#: src/gui/insEdit.cpp:5460 +#, c-format +msgid "OP%d Macros" +msgstr "" + +#: src/gui/insEdit.cpp:5521 +msgid "Op. Arpeggio" +msgstr "" + +#: src/gui/insEdit.cpp:5522 +msgid "Op. Pitch" +msgstr "" + +#: src/gui/insEdit.cpp:5531 +msgid "Op. Panning" +msgstr "" + +#: src/gui/insEdit.cpp:5558 +msgid "Use software envelope" +msgstr "" + +#: src/gui/insEdit.cpp:5559 +msgid "Initialize envelope on every note" +msgstr "" + +#: src/gui/insEdit.cpp:5560 +msgid "Double wave length (GBA only)" +msgstr "" + +#: src/gui/insEdit.cpp:5589 src/gui/insEdit.cpp:5666 +msgid "Sound Length" +msgstr "" + +#: src/gui/insEdit.cpp:5592 src/gui/insEdit.cpp:5666 +msgid "Infinity" +msgstr "" + +#: src/gui/insEdit.cpp:5596 +msgid "Direction" +msgstr "" + +#: src/gui/insEdit.cpp:5599 src/gui/insEdit.cpp:5669 src/gui/insEdit.cpp:5697 +#: src/gui/insEdit.cpp:6008 src/gui/insEdit.cpp:6051 +msgid "Up" +msgstr "" + +#: src/gui/insEdit.cpp:5604 src/gui/insEdit.cpp:5674 src/gui/insEdit.cpp:5702 +#: src/gui/insEdit.cpp:6013 src/gui/insEdit.cpp:6056 +msgid "Down" +msgstr "" + +#: src/gui/insEdit.cpp:5620 src/gui/insEdit.cpp:5953 +msgid "Hardware Sequence" +msgstr "" + +#: src/gui/insEdit.cpp:5630 src/gui/insEdit.cpp:5963 +msgid "Tick" +msgstr "" + +#: src/gui/insEdit.cpp:5632 src/gui/insEdit.cpp:5965 +msgid "Command" +msgstr "" + +#: src/gui/insEdit.cpp:5634 src/gui/insEdit.cpp:5967 +msgid "Move/Remove" +msgstr "" + +#: src/gui/insEdit.cpp:5663 +msgid "Env Length" +msgstr "" + +#: src/gui/insEdit.cpp:5690 +msgid "Shift" +msgstr "" + +#: src/gui/insEdit.cpp:5717 src/gui/insEdit.cpp:6073 +msgid "Ticks" +msgstr "" + +#: src/gui/insEdit.cpp:5736 src/gui/insEdit.cpp:6092 src/gui/insEdit.cpp:6239 +msgid "Position" +msgstr "" + +#: src/gui/insEdit.cpp:5815 +msgid "tri" +msgstr "" + +#: src/gui/insEdit.cpp:5882 +msgid "Ring Modulation" +msgstr "" + +#: src/gui/insEdit.cpp:5886 +msgid "Oscillator Sync" +msgstr "" + +#: src/gui/insEdit.cpp:5890 +msgid "Enable filter" +msgstr "" + +#: src/gui/insEdit.cpp:5891 +msgid "Initialize filter" +msgstr "" + +#: src/gui/insEdit.cpp:5894 src/gui/insEdit.cpp:5897 src/gui/insEdit.cpp:6951 +#: src/gui/insEdit.cpp:7215 src/gui/insEdit.cpp:7476 +msgid "Cutoff" +msgstr "" + +#: src/gui/insEdit.cpp:5902 src/gui/insEdit.cpp:6408 src/gui/insEdit.cpp:6952 +#: src/gui/insEdit.cpp:7179 src/gui/insEdit.cpp:7477 +msgid "Filter Mode" +msgstr "" + +#: src/gui/insEdit.cpp:5931 src/gui/insEdit.cpp:7485 +msgid "Noise Mode" +msgstr "" + +#: src/gui/insEdit.cpp:5932 +msgid "Wave Mix Mode" +msgstr "" + +#: src/gui/insEdit.cpp:5935 +msgid "Absolute Cutoff Macro" +msgstr "" + +#: src/gui/insEdit.cpp:5939 +msgid "Absolute Duty Macro" +msgstr "" + +#: src/gui/insEdit.cpp:5945 +msgid "Don't test before new note" +msgstr "" + +#: src/gui/insEdit.cpp:5950 +msgid "Switch roles of frequency and phase reset timer" +msgstr "" + +#: src/gui/insEdit.cpp:5997 src/gui/insEdit.cpp:6040 +msgid "Period" +msgstr "" + +#: src/gui/insEdit.cpp:6002 src/gui/insEdit.cpp:6045 src/gui/insEdit.cpp:6892 +msgid "Amount" +msgstr "" + +#: src/gui/insEdit.cpp:6005 src/gui/insEdit.cpp:6048 +msgid "Bound" +msgstr "" + +#: src/gui/insEdit.cpp:6021 +msgid "Flip" +msgstr "" + +#: src/gui/insEdit.cpp:6210 +msgid "Load waveform" +msgstr "" + +#: src/gui/insEdit.cpp:6215 +msgid "" +"when enabled, a waveform will be loaded into RAM.\n" +"when disabled, only the offset and length change." +msgstr "" + +#: src/gui/insEdit.cpp:6219 +msgid "Waveform##WAVE" +msgstr "" + +#: src/gui/insEdit.cpp:6227 +msgid "Per-channel wave position/length" +msgstr "" + +#: src/gui/insEdit.cpp:6237 +msgid "Ch" +msgstr "" + +#: src/gui/insEdit.cpp:6286 +msgid "Compatibility mode" +msgstr "" + +#: src/gui/insEdit.cpp:6288 +msgid "" +"only use for compatibility with .dmf modules!\n" +"- initializes modulation table with first wavetable\n" +"- does not alter modulation parameters on instrument change" +msgstr "" + +#: src/gui/insEdit.cpp:6290 +msgid "Modulation depth" +msgstr "" + +#: src/gui/insEdit.cpp:6294 +msgid "Modulation speed" +msgstr "" + +#: src/gui/insEdit.cpp:6298 +msgid "Modulation table" +msgstr "" + +#: src/gui/insEdit.cpp:6347 +msgid "Set modulation table (channel 5 only)" +msgstr "" + +#: src/gui/insEdit.cpp:6411 src/gui/insEdit.cpp:7184 +msgid "Filter K1" +msgstr "" + +#: src/gui/insEdit.cpp:6413 src/gui/insEdit.cpp:7185 +msgid "Filter K2" +msgstr "" + +#: src/gui/insEdit.cpp:6417 +msgid "Envelope length" +msgstr "" + +#: src/gui/insEdit.cpp:6420 +msgid "Left Volume Ramp" +msgstr "" + +#: src/gui/insEdit.cpp:6422 +msgid "Right Volume Ramp" +msgstr "" + +#: src/gui/insEdit.cpp:6425 +msgid "Filter K1 Ramp" +msgstr "" + +#: src/gui/insEdit.cpp:6427 +msgid "Filter K2 Ramp" +msgstr "" + +#: src/gui/insEdit.cpp:6430 +msgid "K1 Ramp Slowdown" +msgstr "" + +#: src/gui/insEdit.cpp:6432 +msgid "K2 Ramp Slowdown" +msgstr "" + +#: src/gui/insEdit.cpp:6454 +msgid "Attack Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6460 +msgid "Decay 1 Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6466 +msgid "Decay Level" +msgstr "" + +#: src/gui/insEdit.cpp:6472 +msgid "Decay 2 Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6478 +msgid "Release Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6484 +msgid "Rate Correction" +msgstr "" + +#: src/gui/insEdit.cpp:6512 +msgid "LFO Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6523 +msgid "Use envelope" +msgstr "" + +#: src/gui/insEdit.cpp:6576 +msgid "Sustain/release mode:" +msgstr "" + +#: src/gui/insEdit.cpp:6577 +msgid "Direct (cut on release)" +msgstr "" + +#: src/gui/insEdit.cpp:6580 +msgid "Effective (linear decrease)" +msgstr "" + +#: src/gui/insEdit.cpp:6583 +msgid "Effective (exponential decrease)" +msgstr "" + +#: src/gui/insEdit.cpp:6586 +msgid "Delayed (write R on release)" +msgstr "" + +#: src/gui/insEdit.cpp:6596 src/gui/insEdit.cpp:6597 +msgid "Gain Mode" +msgstr "" + +#: src/gui/insEdit.cpp:6599 src/gui/insEdit.cpp:6600 src/gui/insEdit.cpp:7205 +msgid "Gain" +msgstr "" + +#: src/gui/insEdit.cpp:6633 +msgid "" +"using decrease modes will not produce any sound at all, unless you know what " +"you are doing.\n" +"it is recommended to use the Gain macro for decrease instead." +msgstr "" + +#: src/gui/insEdit.cpp:6703 +msgid "Enable synthesizer" +msgstr "" + +#: src/gui/insEdit.cpp:6721 +msgid "Single-waveform" +msgstr "" + +#: src/gui/insEdit.cpp:6730 +msgid "Dual-waveform" +msgstr "" + +#: src/gui/insEdit.cpp:6803 src/gui/insEdit.cpp:6812 +msgid "Wave 1" +msgstr "" + +#: src/gui/insEdit.cpp:6808 src/gui/insEdit.cpp:6823 +msgid "" +"waveform macro is controlling wave 1!\n" +"this value will be ineffective." +msgstr "" + +#: src/gui/insEdit.cpp:6829 +msgid "Wave 2" +msgstr "" + +#: src/gui/insEdit.cpp:6844 +msgid "Resume preview" +msgstr "" + +#: src/gui/insEdit.cpp:6846 +msgid "Pause preview" +msgstr "" + +#: src/gui/insEdit.cpp:6854 +msgid "Restart preview" +msgstr "" + +#: src/gui/insEdit.cpp:6874 +msgid "Copy to new wavetable" +msgstr "" + +#: src/gui/insEdit.cpp:6881 +msgid "Update Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6902 +msgid "Global" +msgstr "" + +#: src/gui/insEdit.cpp:6906 +msgid "" +"wavetable synthesizer disabled.\n" +"use the Waveform macro to set the wave for this instrument." +msgstr "" + +#: src/gui/insEdit.cpp:6912 +msgid "Macros" +msgstr "" + +#: src/gui/insEdit.cpp:6921 src/gui/insEdit.cpp:6929 src/gui/insEdit.cpp:6938 +#: src/gui/insEdit.cpp:6947 src/gui/insEdit.cpp:6962 src/gui/insEdit.cpp:6976 +#: src/gui/insEdit.cpp:6988 src/gui/insEdit.cpp:7001 src/gui/insEdit.cpp:7017 +#: src/gui/insEdit.cpp:7023 src/gui/insEdit.cpp:7033 src/gui/insEdit.cpp:7040 +#: src/gui/insEdit.cpp:7046 src/gui/insEdit.cpp:7059 src/gui/insEdit.cpp:7066 +#: src/gui/insEdit.cpp:7073 src/gui/insEdit.cpp:7082 src/gui/insEdit.cpp:7092 +#: src/gui/insEdit.cpp:7100 src/gui/insEdit.cpp:7106 src/gui/insEdit.cpp:7114 +#: src/gui/insEdit.cpp:7121 src/gui/insEdit.cpp:7127 src/gui/insEdit.cpp:7137 +#: src/gui/insEdit.cpp:7149 src/gui/insEdit.cpp:7157 src/gui/insEdit.cpp:7173 +#: src/gui/insEdit.cpp:7178 src/gui/insEdit.cpp:7191 src/gui/insEdit.cpp:7198 +#: src/gui/insEdit.cpp:7209 src/gui/insEdit.cpp:7222 src/gui/insEdit.cpp:7231 +#: src/gui/insEdit.cpp:7238 src/gui/insEdit.cpp:7246 src/gui/insEdit.cpp:7270 +#: src/gui/insEdit.cpp:7277 src/gui/insEdit.cpp:7285 src/gui/insEdit.cpp:7296 +#: src/gui/insEdit.cpp:7303 src/gui/insEdit.cpp:7311 src/gui/insEdit.cpp:7319 +#: src/gui/insEdit.cpp:7328 src/gui/insEdit.cpp:7336 src/gui/insEdit.cpp:7342 +#: src/gui/insEdit.cpp:7348 src/gui/insEdit.cpp:7354 src/gui/insEdit.cpp:7359 +#: src/gui/insEdit.cpp:7366 src/gui/insEdit.cpp:7373 src/gui/insEdit.cpp:7381 +#: src/gui/insEdit.cpp:7390 src/gui/insEdit.cpp:7398 src/gui/insEdit.cpp:7410 +#: src/gui/insEdit.cpp:7423 src/gui/insEdit.cpp:7434 src/gui/insEdit.cpp:7444 +#: src/gui/insEdit.cpp:7452 src/gui/insEdit.cpp:7462 src/gui/insEdit.cpp:7471 +msgid "Arpeggio" +msgstr "" + +#: src/gui/insEdit.cpp:6925 src/gui/insEdit.cpp:6932 src/gui/insEdit.cpp:6943 +#: src/gui/insEdit.cpp:6972 src/gui/insEdit.cpp:6984 src/gui/insEdit.cpp:6994 +#: src/gui/insEdit.cpp:7007 src/gui/insEdit.cpp:7054 src/gui/insEdit.cpp:7062 +#: src/gui/insEdit.cpp:7069 src/gui/insEdit.cpp:7088 src/gui/insEdit.cpp:7110 +#: src/gui/insEdit.cpp:7133 src/gui/insEdit.cpp:7144 src/gui/insEdit.cpp:7163 +#: src/gui/insEdit.cpp:7183 src/gui/insEdit.cpp:7194 src/gui/insEdit.cpp:7214 +#: src/gui/insEdit.cpp:7234 src/gui/insEdit.cpp:7242 src/gui/insEdit.cpp:7249 +#: src/gui/insEdit.cpp:7254 src/gui/insEdit.cpp:7260 src/gui/insEdit.cpp:7266 +#: src/gui/insEdit.cpp:7273 src/gui/insEdit.cpp:7281 src/gui/insEdit.cpp:7290 +#: src/gui/insEdit.cpp:7299 src/gui/insEdit.cpp:7307 src/gui/insEdit.cpp:7324 +#: src/gui/insEdit.cpp:7332 src/gui/insEdit.cpp:7338 src/gui/insEdit.cpp:7362 +#: src/gui/insEdit.cpp:7369 src/gui/insEdit.cpp:7377 src/gui/insEdit.cpp:7386 +#: src/gui/insEdit.cpp:7394 src/gui/insEdit.cpp:7402 src/gui/insEdit.cpp:7414 +#: src/gui/insEdit.cpp:7429 src/gui/insEdit.cpp:7440 src/gui/insEdit.cpp:7448 +#: src/gui/insEdit.cpp:7457 src/gui/insEdit.cpp:7475 +msgid "Phase Reset" +msgstr "" + +#: src/gui/insEdit.cpp:6939 src/gui/insEdit.cpp:7024 src/gui/insEdit.cpp:7210 +#: src/gui/insEdit.cpp:7247 +msgid "Duty/Noise" +msgstr "" + +#: src/gui/insEdit.cpp:6966 src/gui/insEdit.cpp:7288 +msgid "Surround" +msgstr "" + +#: src/gui/insEdit.cpp:6968 src/gui/insEdit.cpp:6981 src/gui/insEdit.cpp:7026 +#: src/gui/insEdit.cpp:7085 src/gui/insEdit.cpp:7141 src/gui/insEdit.cpp:7159 +#: src/gui/insEdit.cpp:7180 src/gui/insEdit.cpp:7201 src/gui/insEdit.cpp:7225 +#: src/gui/insEdit.cpp:7278 src/gui/insEdit.cpp:7304 src/gui/insEdit.cpp:7321 +#: src/gui/insEdit.cpp:7329 src/gui/insEdit.cpp:7374 src/gui/insEdit.cpp:7383 +#: src/gui/insEdit.cpp:7399 src/gui/insEdit.cpp:7411 src/gui/insEdit.cpp:7426 +#: src/gui/insEdit.cpp:7454 src/gui/insEdit.cpp:7464 +msgid "Panning (left)" +msgstr "" + +#: src/gui/insEdit.cpp:6969 src/gui/insEdit.cpp:6982 src/gui/insEdit.cpp:7027 +#: src/gui/insEdit.cpp:7086 src/gui/insEdit.cpp:7142 src/gui/insEdit.cpp:7160 +#: src/gui/insEdit.cpp:7181 src/gui/insEdit.cpp:7202 src/gui/insEdit.cpp:7226 +#: src/gui/insEdit.cpp:7279 src/gui/insEdit.cpp:7305 src/gui/insEdit.cpp:7322 +#: src/gui/insEdit.cpp:7330 src/gui/insEdit.cpp:7375 src/gui/insEdit.cpp:7384 +#: src/gui/insEdit.cpp:7400 src/gui/insEdit.cpp:7412 src/gui/insEdit.cpp:7427 +#: src/gui/insEdit.cpp:7455 src/gui/insEdit.cpp:7465 +msgid "Panning (right)" +msgstr "" + +#: src/gui/insEdit.cpp:6990 src/gui/insEdit.cpp:7003 src/gui/insEdit.cpp:7107 +#: src/gui/insEdit.cpp:7199 src/gui/insEdit.cpp:7239 src/gui/insEdit.cpp:7424 +msgid "Noise Freq" +msgstr "" + +#: src/gui/insEdit.cpp:6996 src/gui/insEdit.cpp:7010 src/gui/insEdit.cpp:7167 +msgid "AutoEnv Num" +msgstr "" + +#: src/gui/insEdit.cpp:6997 src/gui/insEdit.cpp:7011 src/gui/insEdit.cpp:7168 +msgid "AutoEnv Den" +msgstr "" + +#: src/gui/insEdit.cpp:7012 +msgid "Noise AND Mask" +msgstr "" + +#: src/gui/insEdit.cpp:7013 +msgid "Noise OR Mask" +msgstr "" + +#: src/gui/insEdit.cpp:7034 +msgid "On/Off" +msgstr "" + +#: src/gui/insEdit.cpp:7060 +msgid "Patch" +msgstr "" + +#: src/gui/insEdit.cpp:7076 +msgid "Mod Depth" +msgstr "" + +#: src/gui/insEdit.cpp:7077 +msgid "Mod Speed" +msgstr "" + +#: src/gui/insEdit.cpp:7078 +msgid "Mod Position" +msgstr "" + +#: src/gui/insEdit.cpp:7083 +msgid "Noise Length" +msgstr "" + +#: src/gui/insEdit.cpp:7093 +msgid "Wave Pos" +msgstr "" + +#: src/gui/insEdit.cpp:7096 +msgid "Wave Length" +msgstr "" + +#: src/gui/insEdit.cpp:7115 +msgid "AUDCTL" +msgstr "" + +#: src/gui/insEdit.cpp:7122 src/gui/insEdit.cpp:7343 +msgid "Pulse Width" +msgstr "" + +#: src/gui/insEdit.cpp:7139 +msgid "Duty/Int" +msgstr "" + +#: src/gui/insEdit.cpp:7145 src/gui/insEdit.cpp:7406 +msgid "Load LFSR" +msgstr "" + +#: src/gui/insEdit.cpp:7165 +msgid "Envelope Mode" +msgstr "" + +#: src/gui/insEdit.cpp:7218 +msgid "Phase Reset Timer" +msgstr "" + +#: src/gui/insEdit.cpp:7252 src/gui/insEdit.cpp:7259 +msgid "Freq Divider" +msgstr "" + +#: src/gui/insEdit.cpp:7255 +msgid "Clock Divider" +msgstr "" + +#: src/gui/insEdit.cpp:7264 +msgid "Global Volume" +msgstr "" + +#: src/gui/insEdit.cpp:7286 +msgid "Echo Level" +msgstr "" + +#: src/gui/insEdit.cpp:7291 +msgid "Echo Feedback" +msgstr "" + +#: src/gui/insEdit.cpp:7292 +msgid "Echo Length" +msgstr "" + +#: src/gui/insEdit.cpp:7312 +msgid "Group Ctrl" +msgstr "" + +#: src/gui/insEdit.cpp:7313 +msgid "Group Attack" +msgstr "" + +#: src/gui/insEdit.cpp:7314 +msgid "Group Decay" +msgstr "" + +#: src/gui/insEdit.cpp:7320 +msgid "Noise Type" +msgstr "" + +#: src/gui/insEdit.cpp:7367 +msgid "Square/Noise" +msgstr "" + +#: src/gui/insEdit.cpp:7404 +msgid "Tap A Location" +msgstr "" + +#: src/gui/insEdit.cpp:7405 +msgid "Tap B Location" +msgstr "" + +#: src/gui/insEdit.cpp:7416 +msgid "Portion A Length" +msgstr "" + +#: src/gui/insEdit.cpp:7417 +msgid "Portion B Length" +msgstr "" + +#: src/gui/insEdit.cpp:7418 +msgid "Portion A Offset" +msgstr "" + +#: src/gui/insEdit.cpp:7419 +msgid "Portion B Offset" +msgstr "" + +#: src/gui/insEdit.cpp:7463 +msgid "Parameter" +msgstr "" + +#: src/gui/insEdit.cpp:7467 +msgid "Load Value" +msgstr "" + +#: src/gui/insEdit.cpp:7479 +msgid "Filter Toggle" +msgstr "" + +#: src/gui/insEdit.cpp:7486 +msgid "Wave Mix" +msgstr "" + +#: src/gui/insEdit.cpp:7500 +msgid "Octave offset" +msgstr "" + +#: src/gui/insEdit.cpp:7505 +msgid "go to Macros for other parameters." +msgstr "" + +#: src/gui/insEdit.cpp:7521 +msgid "invalid instrument type! change it first." +msgstr "" + +#: src/gui/insEdit.cpp:7565 +msgid "clear contents" +msgstr "" + +#: src/gui/insEdit.cpp:7571 +msgid "offset..." +msgstr "" + +#: src/gui/insEdit.cpp:7572 src/gui/insEdit.cpp:7605 +msgid "X" +msgstr "" + +#: src/gui/insEdit.cpp:7573 src/gui/insEdit.cpp:7609 +msgid "Y" +msgstr "" + +#: src/gui/insEdit.cpp:7574 +msgid "offset" +msgstr "" + +#: src/gui/insEdit.cpp:7637 +msgid "Min" +msgstr "" + +#: src/gui/insEdit.cpp:7638 +msgid "Max" +msgstr "" diff --git a/po/uk.po b/po/uk.po new file mode 100644 index 000000000..254eb6040 --- /dev/null +++ b/po/uk.po @@ -0,0 +1,16032 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: furnace 0.6.3\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#: src/engine/sysDef.cpp:428 src/engine/sysDef.cpp:441 +msgid "20xx: Set channel mode (bit 0: square; bit 1: noise; bit 2: envelope)" +msgstr "" + +#: src/engine/sysDef.cpp:429 +msgid "21xx: Set noise frequency (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:430 src/engine/sysDef.cpp:443 +msgid "22xy: Set envelope mode (x: shape, y: enable for this channel)" +msgstr "" + +#: src/engine/sysDef.cpp:431 src/engine/sysDef.cpp:444 +msgid "23xx: Set envelope period low byte" +msgstr "" + +#: src/engine/sysDef.cpp:432 src/engine/sysDef.cpp:445 +msgid "24xx: Set envelope period high byte" +msgstr "" + +#: src/engine/sysDef.cpp:433 src/engine/sysDef.cpp:446 +#: src/engine/sysDef.cpp:1599 +msgid "25xx: Envelope slide up" +msgstr "" + +#: src/engine/sysDef.cpp:434 src/engine/sysDef.cpp:447 +#: src/engine/sysDef.cpp:1600 +msgid "26xx: Envelope slide down" +msgstr "" + +#: src/engine/sysDef.cpp:435 src/engine/sysDef.cpp:448 +#: src/engine/sysDef.cpp:1601 +msgid "29xy: Set auto-envelope (x: numerator; y: denominator)" +msgstr "" + +#: src/engine/sysDef.cpp:436 src/engine/sysDef.cpp:449 +msgid "2Exx: Write to I/O port A" +msgstr "" + +#: src/engine/sysDef.cpp:437 src/engine/sysDef.cpp:450 +msgid "2Fxx: Write to I/O port B" +msgstr "" + +#: src/engine/sysDef.cpp:442 +msgid "21xx: Set noise frequency (0 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:451 +msgid "12xx: Set duty cycle (0 to 8)" +msgstr "" + +#: src/engine/sysDef.cpp:453 +msgid "27xx: Set noise AND mask" +msgstr "" + +#: src/engine/sysDef.cpp:454 +msgid "28xx: Set noise OR mask" +msgstr "" + +#: src/engine/sysDef.cpp:455 +msgid "" +"2Cxy: Automatic noise frequency (x: mode (0: disable, 1: freq, 2: freq + OR " +"mask); y: offset)" +msgstr "" + +#: src/engine/sysDef.cpp:456 +msgid "2Dxx: NOT TO BE EMPLOYED BY THE COMPOSER" +msgstr "" + +#: src/engine/sysDef.cpp:460 +msgid "30xx: Toggle hard envelope reset on new notes" +msgstr "" + +#: src/engine/sysDef.cpp:465 +msgid "18xx: Toggle extended channel 3 mode" +msgstr "" + +#: src/engine/sysDef.cpp:470 src/engine/sysDef.cpp:766 +#: src/engine/sysDef.cpp:1025 src/engine/sysDef.cpp:1272 +#: src/engine/sysDef.cpp:1593 +msgid "17xx: Toggle PCM mode (LEGACY)" +msgstr "" + +#: src/engine/sysDef.cpp:471 src/engine/sysDef.cpp:1653 +#: src/engine/sysDef.cpp:1963 +msgid "DFxx: Set sample playback direction (0: normal; 1: reverse)" +msgstr "" + +#: src/engine/sysDef.cpp:476 +msgid "18xx: Toggle drums mode (1: enabled; 0: disabled)" +msgstr "" + +#: src/engine/sysDef.cpp:480 src/engine/sysDef.cpp:554 +#: src/engine/sysDef.cpp:575 +msgid "11xx: Set feedback (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:481 +msgid "12xx: Set level of operator 1 (0 highest, 7F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:482 +msgid "13xx: Set level of operator 2 (0 highest, 7F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:483 +msgid "14xx: Set level of operator 3 (0 highest, 7F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:484 +msgid "15xx: Set level of operator 4 (0 highest, 7F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:485 src/engine/sysDef.cpp:580 +#: src/engine/sysDef.cpp:635 +msgid "16xy: Set operator multiplier (x: operator from 1 to 4; y: multiplier)" +msgstr "" + +#: src/engine/sysDef.cpp:486 +msgid "19xx: Set attack of all operators (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:487 +msgid "1Axx: Set attack of operator 1 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:488 +msgid "1Bxx: Set attack of operator 2 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:489 +msgid "1Cxx: Set attack of operator 3 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:490 +msgid "1Dxx: Set attack of operator 4 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:491 src/engine/sysDef.cpp:588 +#: src/engine/sysDef.cpp:656 +msgid "50xy: Set AM (x: operator from 1 to 4 (0 for all ops); y: AM)" +msgstr "" + +#: src/engine/sysDef.cpp:492 src/engine/sysDef.cpp:589 +#: src/engine/sysDef.cpp:657 +msgid "" +"51xy: Set sustain level (x: operator from 1 to 4 (0 for all ops); y: sustain)" +msgstr "" + +#: src/engine/sysDef.cpp:493 src/engine/sysDef.cpp:590 +#: src/engine/sysDef.cpp:658 +msgid "52xy: Set release (x: operator from 1 to 4 (0 for all ops); y: release)" +msgstr "" + +#: src/engine/sysDef.cpp:494 +msgid "" +"53xy: Set detune (x: operator from 1 to 4 (0 for all ops); y: detune where 3 " +"is center)" +msgstr "" + +#: src/engine/sysDef.cpp:495 src/engine/sysDef.cpp:592 +#: src/engine/sysDef.cpp:660 +msgid "" +"54xy: Set envelope scale (x: operator from 1 to 4 (0 for all ops); y: scale " +"from 0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:496 +msgid "56xx: Set decay of all operators (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:497 +msgid "57xx: Set decay of operator 1 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:498 +msgid "58xx: Set decay of operator 2 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:499 +msgid "59xx: Set decay of operator 3 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:500 +msgid "5Axx: Set decay of operator 4 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:501 +msgid "5Bxx: Set decay 2 of all operators (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:502 +msgid "5Cxx: Set decay 2 of operator 1 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:503 +msgid "5Dxx: Set decay 2 of operator 2 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:504 +msgid "5Exx: Set decay 2 of operator 3 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:505 +msgid "5Fxx: Set decay 2 of operator 4 (0 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:510 +msgid "10xx: Set noise frequency (xx: value; 0 disables noise)" +msgstr "" + +#: src/engine/sysDef.cpp:511 +msgid "17xx: Set LFO speed" +msgstr "" + +#: src/engine/sysDef.cpp:512 +msgid "18xx: Set LFO waveform (0 saw, 1 square, 2 triangle, 3 noise)" +msgstr "" + +#: src/engine/sysDef.cpp:513 +msgid "1Exx: Set AM depth (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:514 +msgid "1Fxx: Set PM depth (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:515 +msgid "" +"55xy: Set detune 2 (x: operator from 1 to 4 (0 for all ops); y: detune from " +"0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:520 +msgid "24xx: Set LFO 2 speed" +msgstr "" + +#: src/engine/sysDef.cpp:521 +msgid "25xx: Set LFO 2 waveform (0 saw, 1 square, 2 triangle, 3 noise)" +msgstr "" + +#: src/engine/sysDef.cpp:522 +msgid "26xx: Set AM 2 depth (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:523 +msgid "27xx: Set PM 2 depth (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:524 +msgid "" +"28xy: Set reverb (x: operator from 1 to 4 (0 for all ops); y: reverb from 0 " +"to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:525 src/engine/sysDef.cpp:650 +msgid "" +"2Axy: Set waveform (x: operator from 1 to 4 (0 for all ops); y: waveform " +"from 0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:526 +msgid "" +"2Bxy: Set envelope generator shift (x: operator from 1 to 4 (0 for all ops); " +"y: shift from 0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:527 +msgid "" +"2Cxy: Set fine multiplier (x: operator from 1 to 4 (0 for all ops); y: fine)" +msgstr "" + +#: src/engine/sysDef.cpp:530 +msgid "" +"3xyy: Set fixed frequency of operator 1 (x: octave from 0 to 7; y: frequency)" +msgstr "" + +#: src/engine/sysDef.cpp:531 +msgid "" +"3xyy: Set fixed frequency of operator 2 (x: octave from 8 to F; y: frequency)" +msgstr "" + +#: src/engine/sysDef.cpp:532 +msgid "" +"4xyy: Set fixed frequency of operator 3 (x: octave from 0 to 7; y: frequency)" +msgstr "" + +#: src/engine/sysDef.cpp:533 +msgid "" +"4xyy: Set fixed frequency of operator 4 (x: octave from 8 to F; y: frequency)" +msgstr "" + +#: src/engine/sysDef.cpp:540 +msgid "10xy: Setup LFO (x: enable; y: speed)" +msgstr "" + +#: src/engine/sysDef.cpp:541 +msgid "" +"55xy: Set SSG envelope (x: operator from 1 to 4 (0 for all ops); y: 0-7 on, " +"8 off)" +msgstr "" + +#: src/engine/sysDef.cpp:549 +msgid "1Fxx: Set ADPCM-A global volume (0 to 3F)" +msgstr "" + +#: src/engine/sysDef.cpp:553 +msgid "10xx: Set patch (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:555 src/engine/sysDef.cpp:576 +#: src/engine/sysDef.cpp:631 +msgid "12xx: Set level of operator 1 (0 highest, 3F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:556 src/engine/sysDef.cpp:577 +#: src/engine/sysDef.cpp:632 +msgid "13xx: Set level of operator 2 (0 highest, 3F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:557 +msgid "16xy: Set operator multiplier (x: operator from 1 to 2; y: multiplier)" +msgstr "" + +#: src/engine/sysDef.cpp:558 src/engine/sysDef.cpp:582 +#: src/engine/sysDef.cpp:637 +msgid "19xx: Set attack of all operators (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:559 src/engine/sysDef.cpp:583 +#: src/engine/sysDef.cpp:638 +msgid "1Axx: Set attack of operator 1 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:560 src/engine/sysDef.cpp:584 +#: src/engine/sysDef.cpp:639 +msgid "1Bxx: Set attack of operator 2 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:561 +msgid "50xy: Set AM (x: operator from 1 to 2 (0 for all ops); y: AM)" +msgstr "" + +#: src/engine/sysDef.cpp:562 +msgid "" +"51xy: Set sustain level (x: operator from 1 to 2 (0 for all ops); y: sustain)" +msgstr "" + +#: src/engine/sysDef.cpp:563 +msgid "52xy: Set release (x: operator from 1 to 2 (0 for all ops); y: release)" +msgstr "" + +#: src/engine/sysDef.cpp:564 +msgid "53xy: Set vibrato (x: operator from 1 to 2 (0 for all ops); y: enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:565 +msgid "" +"54xy: Set envelope scale (x: operator from 1 to 2 (0 for all ops); y: scale " +"from 0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:566 +msgid "" +"55xy: Set envelope sustain (x: operator from 1 to 2 (0 for all ops); y: " +"enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:567 src/engine/sysDef.cpp:594 +#: src/engine/sysDef.cpp:662 +msgid "56xx: Set decay of all operators (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:568 src/engine/sysDef.cpp:595 +#: src/engine/sysDef.cpp:663 +msgid "57xx: Set decay of operator 1 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:569 src/engine/sysDef.cpp:596 +#: src/engine/sysDef.cpp:664 +msgid "58xx: Set decay of operator 2 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:570 +msgid "" +"5Bxy: Set whether key will scale envelope (x: operator from 1 to 2 (0 for " +"all ops); y: enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:574 +msgid "10xx: Set global AM depth (0: 1dB, 1: 4.8dB)" +msgstr "" + +#: src/engine/sysDef.cpp:578 src/engine/sysDef.cpp:633 +msgid "14xx: Set level of operator 3 (0 highest, 3F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:579 src/engine/sysDef.cpp:634 +msgid "15xx: Set level of operator 4 (0 highest, 3F lowest)" +msgstr "" + +#: src/engine/sysDef.cpp:581 +msgid "17xx: Set global vibrato depth (0: normal, 1: double)" +msgstr "" + +#: src/engine/sysDef.cpp:585 src/engine/sysDef.cpp:640 +msgid "1Cxx: Set attack of operator 3 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:586 src/engine/sysDef.cpp:641 +msgid "1Dxx: Set attack of operator 4 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:587 +msgid "" +"2Axy: Set waveform (x: operator from 1 to 4 (0 for all ops); y: waveform " +"from 0 to 3 in OPL2 and 0 to 7 in OPL3)" +msgstr "" + +#: src/engine/sysDef.cpp:591 src/engine/sysDef.cpp:659 +msgid "53xy: Set vibrato (x: operator from 1 to 4 (0 for all ops); y: enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:593 src/engine/sysDef.cpp:661 +msgid "" +"55xy: Set envelope sustain (x: operator from 1 to 4 (0 for all ops); y: " +"enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:597 src/engine/sysDef.cpp:665 +msgid "59xx: Set decay of operator 3 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:598 src/engine/sysDef.cpp:666 +msgid "5Axx: Set decay of operator 4 (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:599 src/engine/sysDef.cpp:667 +msgid "" +"5Bxy: Set whether key will scale envelope (x: operator from 1 to 4 (0 for " +"all ops); y: enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:603 src/engine/sysDef.cpp:680 +msgid "" +"10xx: Set waveform (bit 0: triangle; bit 1: saw; bit 2: pulse; bit 3: noise)" +msgstr "" + +#: src/engine/sysDef.cpp:604 +msgid "11xx: Set coarse cutoff (not recommended; use 4xxx instead)" +msgstr "" + +#: src/engine/sysDef.cpp:605 +msgid "12xx: Set coarse pulse width (not recommended; use 3xxx instead)" +msgstr "" + +#: src/engine/sysDef.cpp:606 +msgid "13xx: Set resonance (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:607 +msgid "" +"14xx: Set filter mode (bit 0: low pass; bit 1: band pass; bit 2: high pass)" +msgstr "" + +#: src/engine/sysDef.cpp:608 +msgid "15xx: Set envelope reset time" +msgstr "" + +#: src/engine/sysDef.cpp:609 +msgid "1Axx: Disable envelope reset for this channel (1 disables; 0 enables)" +msgstr "" + +#: src/engine/sysDef.cpp:610 +msgid "1Bxy: Reset cutoff (x: on new note; y: now)" +msgstr "" + +#: src/engine/sysDef.cpp:611 +msgid "1Cxy: Reset pulse width (x: on new note; y: now)" +msgstr "" + +#: src/engine/sysDef.cpp:612 +msgid "1Exy: Change other parameters (LEGACY)" +msgstr "" + +#: src/engine/sysDef.cpp:613 +msgid "20xy: Set attack/decay (x: attack; y: decay)" +msgstr "" + +#: src/engine/sysDef.cpp:614 +msgid "21xy: Set sustain/release (x: sustain; y: release)" +msgstr "" + +#: src/engine/sysDef.cpp:616 src/engine/sysDef.cpp:688 +msgid "3xxx: Set pulse width (0 to FFF)" +msgstr "" + +#: src/engine/sysDef.cpp:617 +msgid "4xxx: Set cutoff (0 to 7FF)" +msgstr "" + +#: src/engine/sysDef.cpp:622 src/engine/sysDef.cpp:745 +#: src/engine/sysDef.cpp:762 src/engine/sysDef.cpp:1000 +#: src/engine/sysDef.cpp:1050 src/engine/sysDef.cpp:1268 +#: src/engine/sysDef.cpp:1320 src/engine/sysDef.cpp:1590 +#: src/engine/sysDef.cpp:1788 src/engine/sysDef.cpp:1792 +#: src/engine/sysDef.cpp:1893 src/engine/sysDef.cpp:2063 +#: src/engine/sysDef.cpp:2077 +msgid "10xx: Set waveform" +msgstr "" + +#: src/engine/sysDef.cpp:626 +msgid "20xx: Set PCM frequency" +msgstr "" + +#: src/engine/sysDef.cpp:630 +msgid "" +"10xy: Set AM depth (x: operator from 1 to 4 (0 for all ops); y: depth (0: " +"1dB, 1: 4.8dB))" +msgstr "" + +#: src/engine/sysDef.cpp:636 +msgid "" +"17xy: Set vibrato depth (x: operator from 1 to 4 (0 for all ops); y: depth " +"(0: normal, 1: double))" +msgstr "" + +#: src/engine/sysDef.cpp:642 +msgid "20xy: Set panning of operator 1 (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:643 +msgid "21xy: Set panning of operator 2 (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:644 +msgid "22xy: Set panning of operator 3 (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:645 +msgid "23xy: Set panning of operator 4 (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:646 +msgid "" +"24xy: Set output level register (x: operator from 1 to 4 (0 for all ops); y: " +"level from 0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:647 +msgid "" +"25xy: Set modulation input level (x: operator from 1 to 4 (0 for all ops); " +"y: level from 0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:648 +msgid "" +"26xy: Set envelope delay (x: operator from 1 to 4 (0 for all ops); y: delay " +"from 0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:649 +msgid "27xx: Set noise mode for operator 4 (x: mode from 0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:651 +msgid "" +"2Fxy: Set fixed frequency block (x: operator from 1 to 4; y: octave from 0 " +"to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:652 +msgid "40xx: Set detune of operator 1 (80: center)" +msgstr "" + +#: src/engine/sysDef.cpp:653 +msgid "41xx: Set detune of operator 2 (80: center)" +msgstr "" + +#: src/engine/sysDef.cpp:654 +msgid "42xx: Set detune of operator 3 (80: center)" +msgstr "" + +#: src/engine/sysDef.cpp:655 +msgid "43xx: Set detune of operator 4 (80: center)" +msgstr "" + +#: src/engine/sysDef.cpp:670 +msgid "" +"3xyy: Set fixed frequency F-num of operator 1 (x: high 2 bits from 0 to 3; " +"y: low 8 bits of F-num)" +msgstr "" + +#: src/engine/sysDef.cpp:671 +msgid "" +"3xyy: Set fixed frequency F-num of operator 2 (x: high 2 bits from 4 to 7; " +"y: low 8 bits of F-num)" +msgstr "" + +#: src/engine/sysDef.cpp:672 +msgid "" +"3xyy: Set fixed frequency F-num of operator 3 (x: high 2 bits from 8 to B; " +"y: low 8 bits of F-num)" +msgstr "" + +#: src/engine/sysDef.cpp:673 +msgid "" +"3xyy: Set fixed frequency F-num of operator 4 (x: high 2 bits from C to F; " +"y: low 8 bits of F-num)" +msgstr "" + +#: src/engine/sysDef.cpp:681 +msgid "11xx: Set resonance (0 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:682 +msgid "" +"12xx: Set filter mode (bit 0: low pass; bit 1: band pass; bit 2: high pass)" +msgstr "" + +#: src/engine/sysDef.cpp:683 +msgid "13xx: Disable envelope reset for this channel (1 disables; 0 enables)" +msgstr "" + +#: src/engine/sysDef.cpp:684 +msgid "14xy: Reset cutoff (x: on new note; y: now)" +msgstr "" + +#: src/engine/sysDef.cpp:685 +msgid "15xy: Reset pulse width (x: on new note; y: now)" +msgstr "" + +#: src/engine/sysDef.cpp:686 +msgid "16xy: Change other parameters" +msgstr "" + +#: src/engine/sysDef.cpp:689 src/engine/sysDef.cpp:1733 +msgid "4xxx: Set cutoff (0 to FFF)" +msgstr "" + +#: src/engine/sysDef.cpp:697 +msgid "Yamaha YMU759 (MA-2)" +msgstr "" + +#: src/engine/sysDef.cpp:698 +msgid "" +"a chip which found its way inside mobile phones in the 2000's.\n" +"as proprietary as it is, it passed away after losing to MP3 in the mobile " +"hardware battle." +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:807 src/engine/sysDef.cpp:819 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:915 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1237 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1314 src/engine/sysDef.cpp:1356 +#: src/engine/sysDef.cpp:1396 src/engine/sysDef.cpp:1499 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1572 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1608 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1799 src/engine/sysDef.cpp:1810 +#: src/engine/sysDef.cpp:1821 src/engine/sysDef.cpp:1832 +#: src/engine/sysDef.cpp:1900 src/engine/sysDef.cpp:1910 +#: src/engine/sysDef.cpp:1920 src/engine/sysDef.cpp:1944 +#: src/engine/sysDef.cpp:1957 src/engine/sysDef.cpp:1970 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2037 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2122 +#: src/engine/sysDef.cpp:2138 src/engine/sysDef.cpp:2150 +msgid "Channel 1" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:807 src/engine/sysDef.cpp:819 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:915 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1237 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1314 src/engine/sysDef.cpp:1356 +#: src/engine/sysDef.cpp:1396 src/engine/sysDef.cpp:1499 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1572 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1608 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1799 src/engine/sysDef.cpp:1810 +#: src/engine/sysDef.cpp:1821 src/engine/sysDef.cpp:1832 +#: src/engine/sysDef.cpp:1900 src/engine/sysDef.cpp:1910 +#: src/engine/sysDef.cpp:1920 src/engine/sysDef.cpp:1944 +#: src/engine/sysDef.cpp:1957 src/engine/sysDef.cpp:1970 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2037 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2122 +#: src/engine/sysDef.cpp:2138 src/engine/sysDef.cpp:2150 +msgid "Channel 2" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:807 src/engine/sysDef.cpp:819 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1237 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1314 +#: src/engine/sysDef.cpp:1356 src/engine/sysDef.cpp:1396 +#: src/engine/sysDef.cpp:1499 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1572 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1799 src/engine/sysDef.cpp:1810 +#: src/engine/sysDef.cpp:1821 src/engine/sysDef.cpp:1832 +#: src/engine/sysDef.cpp:1910 src/engine/sysDef.cpp:1944 +#: src/engine/sysDef.cpp:1957 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2037 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +#: src/engine/sysDef.cpp:2122 src/engine/sysDef.cpp:2138 +#: src/engine/sysDef.cpp:2150 +msgid "Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:874 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1237 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1314 +#: src/engine/sysDef.cpp:1356 src/engine/sysDef.cpp:1396 +#: src/engine/sysDef.cpp:1499 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1572 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1705 +#: src/engine/sysDef.cpp:1741 src/engine/sysDef.cpp:1753 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1910 +#: src/engine/sysDef.cpp:1944 src/engine/sysDef.cpp:1957 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +#: src/engine/sysDef.cpp:2122 src/engine/sysDef.cpp:2150 +msgid "Channel 4" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1314 +#: src/engine/sysDef.cpp:1356 src/engine/sysDef.cpp:1396 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1572 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1705 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 5" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:756 +#: src/engine/sysDef.cpp:977 src/engine/sysDef.cpp:1075 +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1252 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1356 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 6" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 7" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:977 +#: src/engine/sysDef.cpp:1075 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1252 src/engine/sysDef.cpp:1302 +#: src/engine/sysDef.cpp:1532 src/engine/sysDef.cpp:1584 +#: src/engine/sysDef.cpp:1669 src/engine/sysDef.cpp:1741 +#: src/engine/sysDef.cpp:1810 src/engine/sysDef.cpp:1821 +#: src/engine/sysDef.cpp:1832 src/engine/sysDef.cpp:1980 +#: src/engine/sysDef.cpp:1991 src/engine/sysDef.cpp:2070 +#: src/engine/sysDef.cpp:2086 src/engine/sysDef.cpp:2150 +msgid "Channel 8" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 9" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 10" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 11" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 12" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 13" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 14" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 15" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:1210 +#: src/engine/sysDef.cpp:1302 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1584 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 src/engine/sysDef.cpp:1991 +#: src/engine/sysDef.cpp:2070 src/engine/sysDef.cpp:2086 +msgid "Channel 16" +msgstr "" + +#: src/engine/sysDef.cpp:699 src/engine/sysDef.cpp:700 +#: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:1532 +#: src/engine/sysDef.cpp:1767 src/engine/sysDef.cpp:1888 +#: src/engine/sysDef.cpp:1944 src/engine/sysDef.cpp:1945 +#: src/gui/settings.cpp:4094 +msgid "PCM" +msgstr "" + +#: src/engine/sysDef.cpp:706 +msgid "Sega Genesis/Mega Drive" +msgstr "" + +#: src/engine/sysDef.cpp:712 +msgid "Sega Genesis Extended Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:718 src/gui/sysConf.cpp:158 +msgid "TI SN76489" +msgstr "" + +#: src/engine/sysDef.cpp:719 +msgid "" +"a square/noise sound chip found on the Sega Master System, ColecoVision, " +"Tandy, TI's own 99/4A and a few other places." +msgstr "" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 +msgid "Square 1" +msgstr "" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 +msgid "Square 2" +msgstr "" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1874 src/engine/sysDef.cpp:1931 +msgid "Square 3" +msgstr "" + +#: src/engine/sysDef.cpp:720 src/engine/sysDef.cpp:739 +#: src/engine/sysDef.cpp:773 src/engine/sysDef.cpp:955 +#: src/engine/sysDef.cpp:1314 src/engine/sysDef.cpp:1874 +#: src/engine/sysDef.cpp:1920 src/engine/sysDef.cpp:2037 +#: src/engine/sysDef.cpp:2100 src/gui/settings.cpp:4093 +#: src/gui/insEdit.cpp:6978 src/gui/insEdit.cpp:7129 src/gui/insEdit.cpp:7223 +#: src/gui/insEdit.cpp:7315 +msgid "Noise" +msgstr "" + +#: src/engine/sysDef.cpp:726 +msgid "20xy: Set noise mode (x: preset freq/ch3 freq; y: thin pulse/noise)" +msgstr "" + +#: src/engine/sysDef.cpp:731 +msgid "Sega Master System + FM Expansion" +msgstr "" + +#: src/engine/sysDef.cpp:737 src/gui/settings.cpp:4025 +msgid "Game Boy" +msgstr "" + +#: src/engine/sysDef.cpp:738 +msgid "the most popular portable game console of the era." +msgstr "" + +#: src/engine/sysDef.cpp:739 src/engine/sysDef.cpp:773 +#: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:2100 +msgid "Pulse 1" +msgstr "" + +#: src/engine/sysDef.cpp:739 src/engine/sysDef.cpp:773 +#: src/engine/sysDef.cpp:1062 src/engine/sysDef.cpp:2100 +msgid "Pulse 2" +msgstr "" + +#: src/engine/sysDef.cpp:739 src/gui/settings.cpp:3930 +#: src/gui/guiConst.cpp:1395 src/gui/insEdit.cpp:6652 +msgid "Wavetable" +msgstr "" + +#: src/engine/sysDef.cpp:746 +msgid "11xx: Set noise length (0: long; 1: short)" +msgstr "" + +#: src/engine/sysDef.cpp:747 +msgid "12xx: Set duty cycle (0 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:748 +msgid "13xy: Setup sweep (x: time; y: shift)" +msgstr "" + +#: src/engine/sysDef.cpp:749 +msgid "14xx: Set sweep direction (0: up; 1: down)" +msgstr "" + +#: src/engine/sysDef.cpp:754 +msgid "PC Engine/TurboGrafx-16" +msgstr "" + +#: src/engine/sysDef.cpp:755 +msgid "an '80s game console with a wavetable sound chip, popular in Japan." +msgstr "" + +#: src/engine/sysDef.cpp:763 src/engine/sysDef.cpp:1001 +#: src/engine/sysDef.cpp:1793 +msgid "11xx: Toggle noise mode" +msgstr "" + +#: src/engine/sysDef.cpp:764 +msgid "12xx: Setup LFO (0: disabled; 1: 1x depth; 2: 16x depth; 3: 256x depth)" +msgstr "" + +#: src/engine/sysDef.cpp:765 +msgid "13xx: Set LFO speed" +msgstr "" + +#: src/engine/sysDef.cpp:771 +msgid "NES (Ricoh 2A03)" +msgstr "" + +#: src/engine/sysDef.cpp:772 +msgid "" +"also known as Famicom in Japan, it's the most well-known game console of the " +"'80s." +msgstr "" + +#: src/engine/sysDef.cpp:773 src/gui/waveEdit.cpp:31 src/gui/waveEdit.cpp:217 +#: src/gui/insEdit.cpp:200 src/gui/insEdit.cpp:324 src/gui/insEdit.cpp:658 +msgid "Triangle" +msgstr "" + +#: src/engine/sysDef.cpp:773 src/engine/sysDef.cpp:2100 +#: src/gui/insEdit.cpp:2629 +msgid "DPCM" +msgstr "" + +#: src/engine/sysDef.cpp:779 src/engine/sysDef.cpp:2106 +msgid "11xx: Write to delta modulation counter (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:780 src/engine/sysDef.cpp:1068 +msgid "12xx: Set duty cycle/noise mode (pulse: 0 to 3; noise: 0 or 1)" +msgstr "" + +#: src/engine/sysDef.cpp:781 src/engine/sysDef.cpp:2108 +msgid "13xy: Sweep up (x: time; y: shift)" +msgstr "" + +#: src/engine/sysDef.cpp:782 src/engine/sysDef.cpp:2109 +msgid "14xy: Sweep down (x: time; y: shift)" +msgstr "" + +#: src/engine/sysDef.cpp:783 src/engine/sysDef.cpp:2110 +msgid "" +"15xx: Set envelope mode (0: envelope, 1: length, 2: looping, 3: constant)" +msgstr "" + +#: src/engine/sysDef.cpp:784 src/engine/sysDef.cpp:2111 +msgid "16xx: Set length counter (refer to manual for a list of values)" +msgstr "" + +#: src/engine/sysDef.cpp:785 src/engine/sysDef.cpp:2112 +msgid "17xx: Set frame counter mode (0: 4-step, 1: 5-step)" +msgstr "" + +#: src/engine/sysDef.cpp:786 src/engine/sysDef.cpp:2113 +msgid "18xx: Select PCM/DPCM mode (0: PCM; 1: DPCM)" +msgstr "" + +#: src/engine/sysDef.cpp:787 src/engine/sysDef.cpp:2114 +msgid "19xx: Set triangle linear counter (0 to 7F; 80 and higher halt)" +msgstr "" + +#: src/engine/sysDef.cpp:788 src/engine/sysDef.cpp:2115 +msgid "20xx: Set DPCM frequency (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:793 +msgid "NES + Konami VRC7" +msgstr "" + +#: src/engine/sysDef.cpp:799 +msgid "Famicom Disk System" +msgstr "" + +#: src/engine/sysDef.cpp:805 +msgid "Commodore 64 (SID 6581)" +msgstr "" + +#: src/engine/sysDef.cpp:806 +msgid "" +"this computer is powered by the SID chip, which had synthesizer features " +"like a filter and ADSR." +msgstr "" + +#: src/engine/sysDef.cpp:817 +msgid "Commodore 64 (SID 8580)" +msgstr "" + +#: src/engine/sysDef.cpp:818 +msgid "" +"this computer is powered by the SID chip, which had synthesizer features " +"like a filter and ADSR.\n" +"this is the newer revision of the chip." +msgstr "" + +#: src/engine/sysDef.cpp:829 +msgid "DefleCade" +msgstr "" + +#: src/engine/sysDef.cpp:835 +msgid "Neo Geo CD" +msgstr "" + +#: src/engine/sysDef.cpp:836 +msgid "" +"like Neo Geo, but lacking the ADPCM-B channel since they couldn't connect " +"the pins." +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1173 +#: src/engine/sysDef.cpp:1185 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1443 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +#: src/engine/sysDef.cpp:2006 +msgid "FM 1" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:891 +#: src/engine/sysDef.cpp:903 src/engine/sysDef.cpp:1032 +#: src/engine/sysDef.cpp:1097 src/engine/sysDef.cpp:1109 +#: src/engine/sysDef.cpp:1122 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1546 +#: src/engine/sysDef.cpp:1559 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:1693 src/engine/sysDef.cpp:1849 +#: src/engine/sysDef.cpp:1861 src/engine/sysDef.cpp:2006 +msgid "FM 2" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1173 +#: src/engine/sysDef.cpp:1185 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1443 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:2006 +msgid "FM 3" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1546 +#: src/engine/sysDef.cpp:1559 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:1693 src/engine/sysDef.cpp:1849 +#: src/engine/sysDef.cpp:1861 src/engine/sysDef.cpp:2006 +msgid "FM 4" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:862 src/engine/sysDef.cpp:927 +#: src/engine/sysDef.cpp:943 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "PSG 1" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:862 src/engine/sysDef.cpp:927 +#: src/engine/sysDef.cpp:943 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "PSG 2" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:862 src/engine/sysDef.cpp:927 +#: src/engine/sysDef.cpp:943 src/engine/sysDef.cpp:1097 +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "PSG 3" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 1" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 2" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 3" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 4" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 5" +msgstr "" + +#: src/engine/sysDef.cpp:837 src/engine/sysDef.cpp:849 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +msgid "ADPCM-A 6" +msgstr "" + +#: src/engine/sysDef.cpp:847 +msgid "Neo Geo CD Extended Channel 2" +msgstr "" + +#: src/engine/sysDef.cpp:848 +msgid "" +"like Neo Geo, but lacking the ADPCM-B channel since they couldn't connect " +"the pins.\n" +"this one is in Extended Channel mode, which turns the second FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP1" +msgstr "" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP2" +msgstr "" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP3" +msgstr "" + +#: src/engine/sysDef.cpp:849 src/engine/sysDef.cpp:1455 +#: src/engine/sysDef.cpp:1468 +msgid "FM 2 OP4" +msgstr "" + +#: src/engine/sysDef.cpp:860 src/gui/sysConf.cpp:913 +msgid "AY-3-8910" +msgstr "" + +#: src/engine/sysDef.cpp:861 +msgid "" +"this chip is everywhere! ZX Spectrum, MSX, Amstrad CPC, Intellivision, " +"Vectrex...\n" +"the discovery of envelope bass helped it beat the SN76489 with ease." +msgstr "" + +#: src/engine/sysDef.cpp:872 +msgid "Amiga" +msgstr "" + +#: src/engine/sysDef.cpp:873 +msgid "" +"a computer from the '80s with full sampling capabilities, giving it a sound " +"ahead of its time." +msgstr "" + +#: src/engine/sysDef.cpp:881 +msgid "10xx: Toggle filter (0 disables; 1 enables)" +msgstr "" + +#: src/engine/sysDef.cpp:882 +msgid "11xx: Toggle AM with next channel" +msgstr "" + +#: src/engine/sysDef.cpp:883 +msgid "12xx: Toggle period modulation with next channel" +msgstr "" + +#: src/engine/sysDef.cpp:884 +msgid "13xx: Set waveform" +msgstr "" + +#: src/engine/sysDef.cpp:889 +msgid "Yamaha YM2151 (OPM)" +msgstr "" + +#: src/engine/sysDef.cpp:890 +msgid "" +"this was Yamaha's first integrated FM chip.\n" +"it was used in several synthesizers, computers and arcade boards." +msgstr "" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1279 src/engine/sysDef.cpp:1332 +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1370 +#: src/engine/sysDef.cpp:1383 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +#: src/engine/sysDef.cpp:2006 +msgid "FM 5" +msgstr "" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:903 +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1135 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1332 src/engine/sysDef.cpp:1344 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1481 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1681 src/engine/sysDef.cpp:1693 +#: src/engine/sysDef.cpp:2006 +msgid "FM 6" +msgstr "" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:1032 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1279 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:2006 +msgid "FM 7" +msgstr "" + +#: src/engine/sysDef.cpp:891 src/engine/sysDef.cpp:1032 +#: src/engine/sysDef.cpp:1173 src/engine/sysDef.cpp:1185 +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1279 +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:2006 +msgid "FM 8" +msgstr "" + +#: src/engine/sysDef.cpp:901 +msgid "Yamaha YM2612 (OPN2)" +msgstr "" + +#: src/engine/sysDef.cpp:902 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer)." +msgstr "" + +#: src/engine/sysDef.cpp:913 +msgid "Atari TIA" +msgstr "" + +#: src/engine/sysDef.cpp:914 +msgid "" +"it's a challenge to make music on this chip which barely has musical " +"capabilities..." +msgstr "" + +#: src/engine/sysDef.cpp:925 +msgid "Philips SAA1099" +msgstr "" + +#: src/engine/sysDef.cpp:926 +msgid "" +"supposedly an upgrade from the AY-3-8910, this was present on the Creative " +"Music System (Game Blaster) and SAM Coupé." +msgstr "" + +#: src/engine/sysDef.cpp:927 +msgid "PSG 4" +msgstr "" + +#: src/engine/sysDef.cpp:927 +msgid "PSG 5" +msgstr "" + +#: src/engine/sysDef.cpp:927 +msgid "PSG 6" +msgstr "" + +#: src/engine/sysDef.cpp:934 +msgid "10xy: Set channel mode (x: noise; y: tone)" +msgstr "" + +#: src/engine/sysDef.cpp:935 +msgid "11xx: Set noise frequency" +msgstr "" + +#: src/engine/sysDef.cpp:936 +msgid "12xx: Setup envelope (refer to docs for more information)" +msgstr "" + +#: src/engine/sysDef.cpp:941 +msgid "Microchip AY8930" +msgstr "" + +#: src/engine/sysDef.cpp:942 +msgid "" +"an improved version of the AY-3-8910 with a bigger frequency range, duty " +"cycles, configurable noise and per-channel envelopes!" +msgstr "" + +#: src/engine/sysDef.cpp:953 +msgid "Commodore VIC-20" +msgstr "" + +#: src/engine/sysDef.cpp:954 +msgid "" +"Commodore's successor to the PET.\n" +"its square wave channels are more than just square..." +msgstr "" + +#: src/engine/sysDef.cpp:955 src/gui/settings.cpp:136 src/gui/settings.cpp:206 +#: src/gui/settings.cpp:3970 +msgid "Low" +msgstr "" + +#: src/engine/sysDef.cpp:955 +msgid "Mid" +msgstr "" + +#: src/engine/sysDef.cpp:955 src/gui/settings.cpp:135 src/gui/settings.cpp:208 +#: src/gui/settings.cpp:3971 +msgid "High" +msgstr "" + +#: src/engine/sysDef.cpp:964 +msgid "Commodore PET" +msgstr "" + +#: src/engine/sysDef.cpp:965 +msgid "" +"one channel of 1-bit wavetable which is better (and worse) than the PC " +"Speaker." +msgstr "" + +#: src/engine/sysDef.cpp:966 src/engine/sysDef.cpp:1262 +#: src/engine/sysDef.cpp:2100 src/gui/editControls.cpp:433 +#: src/gui/settings.cpp:4017 src/gui/settings.cpp:4095 +msgid "Wave" +msgstr "" + +#: src/engine/sysDef.cpp:975 src/gui/settings.cpp:4052 +msgid "SNES" +msgstr "" + +#: src/engine/sysDef.cpp:976 +msgid "FM? nah... samples! Nintendo's answer to Sega." +msgstr "" + +#: src/engine/sysDef.cpp:983 +msgid "18xx: Enable echo buffer" +msgstr "" + +#: src/engine/sysDef.cpp:984 +msgid "19xx: Set echo delay (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:985 +msgid "1Axx: Set left echo volume" +msgstr "" + +#: src/engine/sysDef.cpp:986 +msgid "1Bxx: Set right echo volume" +msgstr "" + +#: src/engine/sysDef.cpp:987 +msgid "1Cxx: Set echo feedback" +msgstr "" + +#: src/engine/sysDef.cpp:988 +msgid "1Exx: Set dry output volume (left)" +msgstr "" + +#: src/engine/sysDef.cpp:989 +msgid "1Fxx: Set dry output volume (right)" +msgstr "" + +#: src/engine/sysDef.cpp:990 +msgid "30xx: Set echo filter coefficient 0" +msgstr "" + +#: src/engine/sysDef.cpp:991 +msgid "31xx: Set echo filter coefficient 1" +msgstr "" + +#: src/engine/sysDef.cpp:992 +msgid "32xx: Set echo filter coefficient 2" +msgstr "" + +#: src/engine/sysDef.cpp:993 +msgid "33xx: Set echo filter coefficient 3" +msgstr "" + +#: src/engine/sysDef.cpp:994 +msgid "34xx: Set echo filter coefficient 4" +msgstr "" + +#: src/engine/sysDef.cpp:995 +msgid "35xx: Set echo filter coefficient 5" +msgstr "" + +#: src/engine/sysDef.cpp:996 +msgid "36xx: Set echo filter coefficient 6" +msgstr "" + +#: src/engine/sysDef.cpp:997 +msgid "37xx: Set echo filter coefficient 7" +msgstr "" + +#: src/engine/sysDef.cpp:1002 +msgid "12xx: Toggle echo on this channel" +msgstr "" + +#: src/engine/sysDef.cpp:1003 +msgid "13xx: Toggle pitch modulation" +msgstr "" + +#: src/engine/sysDef.cpp:1004 +msgid "14xy: Toggle invert (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:1005 +msgid "" +"15xx: Set envelope mode (0: ADSR, 1: gain/direct, 2: dec, 3: exp, 4: inc, 5: " +"bent)" +msgstr "" + +#: src/engine/sysDef.cpp:1006 +msgid "16xx: Set gain (00 to 7F if direct; 00 to 1F otherwise)" +msgstr "" + +#: src/engine/sysDef.cpp:1007 +msgid "1Dxx: Set noise frequency (00 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:1008 +msgid "20xx: Set attack (0 to F)" +msgstr "" + +#: src/engine/sysDef.cpp:1009 +msgid "21xx: Set decay (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1010 +msgid "22xx: Set sustain (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1011 +msgid "23xx: Set release (00 to 1F)" +msgstr "" + +#: src/engine/sysDef.cpp:1016 +msgid "Konami VRC6" +msgstr "" + +#: src/engine/sysDef.cpp:1017 +msgid "an expansion chip for the Famicom, featuring a quirky sawtooth channel." +msgstr "" + +#: src/engine/sysDef.cpp:1018 +msgid "VRC6 1" +msgstr "" + +#: src/engine/sysDef.cpp:1018 +msgid "VRC6 2" +msgstr "" + +#: src/engine/sysDef.cpp:1018 +msgid "VRC6 Saw" +msgstr "" + +#: src/engine/sysDef.cpp:1024 src/engine/sysDef.cpp:2092 +msgid "12xx: Set duty cycle (pulse: 0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1030 +msgid "Yamaha YM2413 (OPLL)" +msgstr "" + +#: src/engine/sysDef.cpp:1031 +msgid "" +"cost-reduced version of the OPL with 16 patches and only one of them is user-" +"configurable." +msgstr "" + +#: src/engine/sysDef.cpp:1032 src/engine/sysDef.cpp:1173 +#: src/engine/sysDef.cpp:1185 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:2006 +msgid "FM 9" +msgstr "" + +#: src/engine/sysDef.cpp:1042 +msgid "Famicom Disk System (chip)" +msgstr "" + +#: src/engine/sysDef.cpp:1043 +msgid "a disk drive for the Famicom which also contains one wavetable channel." +msgstr "" + +#: src/engine/sysDef.cpp:1044 src/gui/settings.cpp:4039 +msgid "FDS" +msgstr "" + +#: src/engine/sysDef.cpp:1051 +msgid "11xx: Set modulation depth" +msgstr "" + +#: src/engine/sysDef.cpp:1052 +msgid "12xy: Set modulation speed high byte (x: enable; y: value)" +msgstr "" + +#: src/engine/sysDef.cpp:1053 +msgid "13xx: Set modulation speed low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1054 +msgid "14xx: Set modulator position" +msgstr "" + +#: src/engine/sysDef.cpp:1055 +msgid "15xx: Set modulator table to waveform" +msgstr "" + +#: src/engine/sysDef.cpp:1060 +msgid "MMC5" +msgstr "" + +#: src/engine/sysDef.cpp:1061 +msgid "" +"an expansion chip for the Famicom, featuring a little-known PCM channel." +msgstr "" + +#: src/engine/sysDef.cpp:1073 src/gui/settings.cpp:4041 +msgid "Namco 163" +msgstr "" + +#: src/engine/sysDef.cpp:1074 +msgid "an expansion chip for the Famicom, with full wavetable." +msgstr "" + +#: src/engine/sysDef.cpp:1081 +msgid "18xx: Change channel limits (0 to 7, x + 1)" +msgstr "" + +#: src/engine/sysDef.cpp:1082 +msgid "20xx: Load a waveform into memory" +msgstr "" + +#: src/engine/sysDef.cpp:1083 +msgid "21xx: Set position for wave load" +msgstr "" + +#: src/engine/sysDef.cpp:1086 +msgid "10xx: Select waveform" +msgstr "" + +#: src/engine/sysDef.cpp:1087 +msgid "11xx: Set waveform position in RAM" +msgstr "" + +#: src/engine/sysDef.cpp:1088 +msgid "12xx: Set waveform length in RAM (04 to FC in steps of 4)" +msgstr "" + +#: src/engine/sysDef.cpp:1089 +msgid "15xx: Set waveform load position" +msgstr "" + +#: src/engine/sysDef.cpp:1090 +msgid "16xx: Set waveform load length (04 to FC in steps of 4)" +msgstr "" + +#: src/engine/sysDef.cpp:1095 +msgid "Yamaha YM2203 (OPN)" +msgstr "" + +#: src/engine/sysDef.cpp:1096 +msgid "" +"cost-reduced version of the OPM with a different register layout and no " +"stereo...\n" +"...but it has a built-in AY-3-8910! (actually an YM2149)" +msgstr "" + +#: src/engine/sysDef.cpp:1107 +msgid "Yamaha YM2203 (OPN) Extended Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:1108 +msgid "" +"cost-reduced version of the OPM with a different register layout and no " +"stereo...\n" +"...but it has a built-in AY-3-8910! (actually an YM2149)\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies" +msgstr "" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP1" +msgstr "" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP2" +msgstr "" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP3" +msgstr "" + +#: src/engine/sysDef.cpp:1109 src/engine/sysDef.cpp:1122 +#: src/engine/sysDef.cpp:1147 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1370 src/engine/sysDef.cpp:1383 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/engine/sysDef.cpp:1861 +msgid "FM 3 OP4" +msgstr "" + +#: src/engine/sysDef.cpp:1120 +msgid "Yamaha YM2203 (OPN) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1121 +msgid "" +"cost-reduced version of the OPM with a different register layout and no " +"stereo...\n" +"...but it has a built-in AY-3-8910! (actually an YM2149)\n" +"CSM blah blah" +msgstr "" + +#: src/engine/sysDef.cpp:1122 src/engine/sysDef.cpp:1160 +#: src/engine/sysDef.cpp:1383 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1559 src/engine/sysDef.cpp:1861 +msgid "CSM Timer" +msgstr "" + +#: src/engine/sysDef.cpp:1133 +msgid "Yamaha YM2608 (OPNA)" +msgstr "" + +#: src/engine/sysDef.cpp:1134 +msgid "" +"OPN but twice the FM channels, stereo makes a come-back and has rhythm and " +"ADPCM channels." +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1481 +#: src/gui/insEdit.cpp:3302 src/gui/insEdit.cpp:3624 +msgid "Kick" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:210 src/gui/insEdit.cpp:218 +msgid "Snare" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:212 src/gui/insEdit.cpp:220 +#: src/gui/insEdit.cpp:1909 src/gui/insEdit.cpp:2014 +msgid "Top" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:213 src/gui/insEdit.cpp:219 +msgid "HiHat" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1407 +#: src/engine/sysDef.cpp:1419 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1481 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:1693 src/gui/insEdit.cpp:211 +msgid "Tom" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 +msgid "Rim" +msgstr "" + +#: src/engine/sysDef.cpp:1135 src/engine/sysDef.cpp:1147 +#: src/engine/sysDef.cpp:1160 src/engine/sysDef.cpp:1681 +#: src/engine/sysDef.cpp:1693 +msgid "ADPCM" +msgstr "" + +#: src/engine/sysDef.cpp:1145 +msgid "Yamaha YM2608 (OPNA) Extended Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:1146 +msgid "" +"OPN but twice the FM channels, stereo makes a come-back and has rhythm and " +"ADPCM channels.\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies" +msgstr "" + +#: src/engine/sysDef.cpp:1158 +msgid "Yamaha YM2608 (OPNA) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1159 +msgid "" +"OPN but twice the FM channels, stereo makes a come-back and has rhythm and " +"ADPCM channels.\n" +"CSM blah blah" +msgstr "" + +#: src/engine/sysDef.cpp:1171 +msgid "Yamaha YM3526 (OPL)" +msgstr "" + +#: src/engine/sysDef.cpp:1172 +msgid "" +"OPN, but what if you only had two operators, no stereo, no detune and a " +"lower ADSR parameter range?" +msgstr "" + +#: src/engine/sysDef.cpp:1183 +msgid "Yamaha YM3812 (OPL2)" +msgstr "" + +#: src/engine/sysDef.cpp:1184 +msgid "OPL, but what if you had more waveforms to choose than the normal sine?" +msgstr "" + +#: src/engine/sysDef.cpp:1195 +msgid "Yamaha YMF262 (OPL3)" +msgstr "" + +#: src/engine/sysDef.cpp:1196 +msgid "" +"OPL2, but what if you had twice the channels, 4-op mode, stereo and even " +"more waveforms?" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 1" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 3" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 5" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 7" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 9" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 10" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "4OP 11" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 12" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 13" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 14" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1431 +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +#: src/engine/sysDef.cpp:2006 +msgid "FM 15" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:2006 +msgid "FM 16" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:2006 +msgid "FM 17" +msgstr "" + +#: src/engine/sysDef.cpp:1197 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:2006 +msgid "FM 18" +msgstr "" + +#: src/engine/sysDef.cpp:1208 src/gui/settings.cpp:4051 +msgid "MultiPCM" +msgstr "" + +#: src/engine/sysDef.cpp:1209 +msgid "" +"how many channels of PCM do you want?\n" +"MultiPCM: yes" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 17" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 18" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 19" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 20" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 21" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 22" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 23" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +#: src/engine/sysDef.cpp:1980 +msgid "Channel 24" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 25" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 26" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 27" +msgstr "" + +#: src/engine/sysDef.cpp:1210 src/engine/sysDef.cpp:1669 +msgid "Channel 28" +msgstr "" + +#: src/engine/sysDef.cpp:1217 +msgid "PC Speaker" +msgstr "" + +#: src/engine/sysDef.cpp:1218 +msgid "good luck! you get one square and no volume control." +msgstr "" + +#: src/engine/sysDef.cpp:1219 src/engine/sysDef.cpp:1228 +#: src/gui/guiConst.cpp:1394 src/gui/waveEdit.cpp:199 src/gui/insEdit.cpp:183 +#: src/gui/insEdit.cpp:194 src/gui/insEdit.cpp:326 src/gui/insEdit.cpp:656 +msgid "Square" +msgstr "" + +#: src/engine/sysDef.cpp:1226 +msgid "Pong" +msgstr "" + +#: src/engine/sysDef.cpp:1227 +msgid "please don't use this chip. it was added as a joke." +msgstr "" + +#: src/engine/sysDef.cpp:1235 src/gui/settings.cpp:4044 +msgid "POKEY" +msgstr "" + +#: src/engine/sysDef.cpp:1236 +msgid "" +"TIA, but better and more flexible.\n" +"used in the Atari 8-bit family of computers (400/800/XL/XE)." +msgstr "" + +#: src/engine/sysDef.cpp:1243 src/engine/sysDef.cpp:1714 +msgid "10xx: Set waveform (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1244 +msgid "11xx: Set AUDCTL" +msgstr "" + +#: src/engine/sysDef.cpp:1245 +msgid "12xx: Toggle two-tone mode" +msgstr "" + +#: src/engine/sysDef.cpp:1250 +msgid "Ricoh RF5C68" +msgstr "" + +#: src/engine/sysDef.cpp:1251 +msgid "" +"this is like SNES' sound chip but without interpolation and the rest of nice " +"bits." +msgstr "" + +#: src/engine/sysDef.cpp:1260 src/gui/settings.cpp:4046 +msgid "WonderSwan" +msgstr "" + +#: src/engine/sysDef.cpp:1261 +msgid "developed by the makers of the Game Boy and the Virtual Boy..." +msgstr "" + +#: src/engine/sysDef.cpp:1262 +msgid "Wave/PCM" +msgstr "" + +#: src/engine/sysDef.cpp:1262 +msgid "Wave/Sweep" +msgstr "" + +#: src/engine/sysDef.cpp:1262 +msgid "Wave/Noise" +msgstr "" + +#: src/engine/sysDef.cpp:1269 +msgid "11xx: Setup noise mode (0: disabled; 1-8: enabled/tap)" +msgstr "" + +#: src/engine/sysDef.cpp:1270 +msgid "12xx: Setup sweep period (0: disabled; 1-20: enabled/period)" +msgstr "" + +#: src/engine/sysDef.cpp:1271 +msgid "13xx: Set sweep amount" +msgstr "" + +#: src/engine/sysDef.cpp:1277 +msgid "Yamaha YM2414 (OPZ)" +msgstr "" + +#: src/engine/sysDef.cpp:1278 +msgid "" +"like OPM, but with more waveforms, fixed frequency mode and totally... " +"undocumented.\n" +"used in the Yamaha TX81Z and some other synthesizers." +msgstr "" + +#: src/engine/sysDef.cpp:1285 +msgid "2Fxx: Toggle hard envelope reset on new notes" +msgstr "" + +#: src/engine/sysDef.cpp:1291 src/gui/settings.cpp:4069 +msgid "Pokémon Mini" +msgstr "" + +#: src/engine/sysDef.cpp:1292 +msgid "this one is like PC Speaker but has duty cycles." +msgstr "" + +#: src/engine/sysDef.cpp:1293 src/gui/settings.cpp:4092 src/gui/waveEdit.cpp:33 +msgid "Pulse" +msgstr "" + +#: src/engine/sysDef.cpp:1300 +msgid "SegaPCM" +msgstr "" + +#: src/engine/sysDef.cpp:1301 +msgid "" +"used in some Sega arcade boards (like OutRun), and usually paired with a " +"YM2151." +msgstr "" + +#: src/engine/sysDef.cpp:1312 src/gui/settings.cpp:4040 +msgid "Virtual Boy" +msgstr "" + +#: src/engine/sysDef.cpp:1313 +msgid "" +"a console which failed to sell well due to its headache-inducing features." +msgstr "" + +#: src/engine/sysDef.cpp:1321 +msgid "11xx: Set noise length (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1322 +msgid "" +"12xy: Setup envelope (x: enabled/loop (1: enable, 3: enable+loop); y: speed/" +"direction (0-7: down, 8-F: up))" +msgstr "" + +#: src/engine/sysDef.cpp:1323 +msgid "13xy: Setup sweep (x: speed; y: shift; channel 5 only)" +msgstr "" + +#: src/engine/sysDef.cpp:1324 +msgid "" +"14xy: Setup modulation (x: enabled/loop (1: enable, 3: enable+loop); y: " +"speed; channel 5 only)" +msgstr "" + +#: src/engine/sysDef.cpp:1325 +msgid "15xx: Set modulation waveform (x: wavetable; channel 5 only)" +msgstr "" + +#: src/engine/sysDef.cpp:1330 +msgid "Konami VRC7" +msgstr "" + +#: src/engine/sysDef.cpp:1331 +msgid "" +"like OPLL, but even more cost reductions applied. three FM channels went " +"missing, and drums mode did as well..." +msgstr "" + +#: src/engine/sysDef.cpp:1342 +msgid "Yamaha YM2610B (OPNB2)" +msgstr "" + +#: src/engine/sysDef.cpp:1343 +msgid "" +"so Taito asked Yamaha if they could get the two missing FM channels back, " +"and Yamaha gladly provided them with this chip." +msgstr "" + +#: src/engine/sysDef.cpp:1344 src/engine/sysDef.cpp:1443 +#: src/engine/sysDef.cpp:1455 src/engine/sysDef.cpp:1468 +#: src/engine/sysDef.cpp:1546 src/engine/sysDef.cpp:1559 +#: src/gui/settings.cpp:4061 +msgid "ADPCM-B" +msgstr "" + +#: src/engine/sysDef.cpp:1354 +msgid "ZX Spectrum Beeper" +msgstr "" + +#: src/engine/sysDef.cpp:1355 +msgid "" +"the ZX Spectrum only had a basic beeper capable of...\n" +"...a bunch of thin pulses and tons of other interesting stuff!\n" +"Furnace provides a thin pulse system." +msgstr "" + +#: src/engine/sysDef.cpp:1362 src/engine/sysDef.cpp:1950 +msgid "12xx: Set pulse width" +msgstr "" + +#: src/engine/sysDef.cpp:1363 +msgid "17xx: Trigger overlay drum" +msgstr "" + +#: src/engine/sysDef.cpp:1368 +msgid "Yamaha YM2612 (OPN2) Extended Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:1369 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:1381 +msgid "Yamaha YM2612 (OPN2) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1382 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this one includes CSM mode control for special effects on Channel 3." +msgstr "" + +#: src/engine/sysDef.cpp:1394 src/gui/settings.cpp:4042 +msgid "Konami SCC" +msgstr "" + +#: src/engine/sysDef.cpp:1395 +msgid "" +"a wavetable chip made by Konami for use with the MSX.\n" +"the last channel shares its wavetable with the previous one though." +msgstr "" + +#: src/engine/sysDef.cpp:1405 +msgid "Yamaha YM3526 (OPL) with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1406 +msgid "the OPL chip but with drums mode enabled." +msgstr "" + +#: src/engine/sysDef.cpp:1407 src/engine/sysDef.cpp:1419 +#: src/engine/sysDef.cpp:1693 +msgid "Kick/FM 7" +msgstr "" + +#: src/engine/sysDef.cpp:1417 +msgid "Yamaha YM3812 (OPL2) with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1418 +msgid "the OPL2 chip but with drums mode enabled." +msgstr "" + +#: src/engine/sysDef.cpp:1429 +msgid "Yamaha YMF262 (OPL3) with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1430 +msgid "the OPL3 chip but with drums mode enabled." +msgstr "" + +#: src/engine/sysDef.cpp:1431 src/engine/sysDef.cpp:1631 +msgid "Kick/FM 16" +msgstr "" + +#: src/engine/sysDef.cpp:1441 +msgid "Yamaha YM2610 (OPNB)" +msgstr "" + +#: src/engine/sysDef.cpp:1442 +msgid "" +"this chip was used in SNK's Neo Geo arcade board and video game console.\n" +"it's like OPNA but the rhythm channels are ADPCM channels and two FM " +"channels went missing." +msgstr "" + +#: src/engine/sysDef.cpp:1453 +msgid "Yamaha YM2610 (OPNB) Extended Channel 2" +msgstr "" + +#: src/engine/sysDef.cpp:1454 +msgid "" +"this chip was used in SNK's Neo Geo arcade board and video game console.\n" +"it's like OPNA but the rhythm channels are ADPCM channels and two FM " +"channels went missing.\n" +"this one is in Extended Channel mode, which turns the second FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:1466 +msgid "Yamaha YM2610 (OPNB) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1467 +msgid "" +"this chip was used in SNK's Neo Geo arcade board and video game console.\n" +"it's like OPNA but the rhythm channels are ADPCM channels and two FM " +"channels went missing.\n" +"this one includes CSM mode control for special effects on Channel 2." +msgstr "" + +#: src/engine/sysDef.cpp:1479 +msgid "Yamaha YM2413 (OPLL) with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1480 +msgid "the OPLL chips but with drums mode turned on." +msgstr "" + +#: src/engine/sysDef.cpp:1491 +msgid "3xxx: Load LFSR (0 to FFF)" +msgstr "" + +#: src/engine/sysDef.cpp:1497 +msgid "Atari Lynx" +msgstr "" + +#: src/engine/sysDef.cpp:1498 +msgid "" +"a portable console made by Atari. it has all of Atari's trademark waveforms." +msgstr "" + +#: src/engine/sysDef.cpp:1509 +msgid "10xx: Set echo feedback level (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1510 +msgid "11xx: Set channel echo level (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1511 +msgid "12xx: Toggle QSound algorithm (0: disabled; 1: enabled)" +msgstr "" + +#: src/engine/sysDef.cpp:1513 +msgid "3xxx: Set echo delay buffer length (000 to AA5)" +msgstr "" + +#: src/engine/sysDef.cpp:1519 +msgid "Capcom QSound" +msgstr "" + +#: src/engine/sysDef.cpp:1520 +msgid "" +"used in some of Capcom's arcade boards. surround-like sampled sound with " +"echo." +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +#: src/engine/sysDef.cpp:2056 +msgid "PCM 1" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +#: src/engine/sysDef.cpp:2056 +msgid "PCM 2" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 3" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 4" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 5" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 6" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 7" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 src/engine/sysDef.cpp:1780 +msgid "PCM 8" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 9" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 10" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 11" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 12" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 13" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 14" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 15" +msgstr "" + +#: src/engine/sysDef.cpp:1521 src/engine/sysDef.cpp:1621 +#: src/engine/sysDef.cpp:1631 +msgid "PCM 16" +msgstr "" + +#: src/engine/sysDef.cpp:1521 +msgid "ADPCM 1" +msgstr "" + +#: src/engine/sysDef.cpp:1521 +msgid "ADPCM 2" +msgstr "" + +#: src/engine/sysDef.cpp:1521 +msgid "ADPCM 3" +msgstr "" + +#: src/engine/sysDef.cpp:1530 src/gui/settings.cpp:4048 +msgid "VERA" +msgstr "" + +#: src/engine/sysDef.cpp:1531 +msgid "the chip used in a computer design created by The 8-Bit Guy." +msgstr "" + +#: src/engine/sysDef.cpp:1538 +msgid "20xx: Set waveform" +msgstr "" + +#: src/engine/sysDef.cpp:1539 +msgid "22xx: Set duty cycle (0 to 3F)" +msgstr "" + +#: src/engine/sysDef.cpp:1544 +msgid "Yamaha YM2610B (OPNB2) Extended Channel 3" +msgstr "" + +#: src/engine/sysDef.cpp:1545 +msgid "" +"so Taito asked Yamaha if they could get the two missing FM channels back, " +"and Yamaha gladly provided them with this chip.\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:1557 +msgid "Yamaha YM2610B (OPNB2) CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1558 +msgid "" +"so Taito asked Yamaha if they could get the two missing FM channels back, " +"and Yamaha gladly provided them with this chip.\n" +"CSM blah blah" +msgstr "" + +#: src/engine/sysDef.cpp:1570 +msgid "SegaPCM (compatible 5-channel mode)" +msgstr "" + +#: src/engine/sysDef.cpp:1571 +msgid "" +"this is the same thing as SegaPCM, but only exposes 5 of the channels for " +"compatibility with DefleMask." +msgstr "" + +#: src/engine/sysDef.cpp:1582 +msgid "Seta/Allumer X1-010" +msgstr "" + +#: src/engine/sysDef.cpp:1583 +msgid "" +"a sound chip used in several Seta/Allumer-manufactured arcade boards with " +"too many channels of wavetable sound, which also are capable of sampled " +"sound." +msgstr "" + +#: src/engine/sysDef.cpp:1591 +msgid "11xx: Set envelope shape" +msgstr "" + +#: src/engine/sysDef.cpp:1592 +msgid "12xx: Set sample bank slot (0 to 7)" +msgstr "" + +#: src/engine/sysDef.cpp:1596 +msgid "20xx: Set PCM frequency (1 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1597 +msgid "" +"22xx: Set envelope mode (bit 0: enable; bit 1: one-shot; bit 2: split shape " +"to L/R; bit 3/5: H.invert right/left; bit 4/6: V.invert right/left)" +msgstr "" + +#: src/engine/sysDef.cpp:1598 +msgid "23xx: Set envelope period" +msgstr "" + +#: src/engine/sysDef.cpp:1606 +msgid "Konami Bubble System WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1607 +msgid "" +"this is the wavetable part of the Bubble System, which also had two " +"AY-3-8910s." +msgstr "" + +#: src/engine/sysDef.cpp:1619 +msgid "Yamaha YMF278B (OPL4)" +msgstr "" + +#: src/engine/sysDef.cpp:1620 +msgid "like OPL3, but this time it also has a 24-channel version of MultiPCM." +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 17" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 18" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 19" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 20" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 21" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 22" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 23" +msgstr "" + +#: src/engine/sysDef.cpp:1621 src/engine/sysDef.cpp:1631 +msgid "PCM 24" +msgstr "" + +#: src/engine/sysDef.cpp:1629 +msgid "Yamaha YMF278B (OPL4) with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1630 +msgid "the OPL4 but with drums mode turned on." +msgstr "" + +#: src/engine/sysDef.cpp:1638 +msgid "11xx: Set filter mode (00 to 03)" +msgstr "" + +#: src/engine/sysDef.cpp:1639 +msgid "14xx: Set filter coefficient K1 low byte (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1640 +msgid "15xx: Set filter coefficient K1 high byte (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1641 +msgid "16xx: Set filter coefficient K2 low byte (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1642 +msgid "17xx: Set filter coefficient K2 high byte (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1643 +msgid "18xx: Set filter coefficient K1 slide up (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1644 +msgid "19xx: Set filter coefficient K1 slide down (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1645 +msgid "1Axx: Set filter coefficient K2 slide up (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1646 +msgid "1Bxx: Set filter coefficient K2 slide down (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1647 +msgid "22xx: Set envelope left volume ramp (signed) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1648 +msgid "23xx: Set envelope right volume ramp (signed) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1649 +msgid "24xx: Set envelope filter coefficient k1 ramp (signed) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1650 +msgid "" +"25xx: Set envelope filter coefficient k1 ramp (signed, slower) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1651 +msgid "26xx: Set envelope filter coefficient k2 ramp (signed) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1652 +msgid "" +"27xx: Set envelope filter coefficient k2 ramp (signed, slower) (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1656 +msgid "120x: Set pause (bit 0)" +msgstr "" + +#: src/engine/sysDef.cpp:1658 +msgid "2xxx: Set envelope count (000 to 1FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1659 +msgid "3xxx: Set filter coefficient K1 (000 to FFF)" +msgstr "" + +#: src/engine/sysDef.cpp:1660 +msgid "4xxx: Set filter coefficient K2 (000 to FFF)" +msgstr "" + +#: src/engine/sysDef.cpp:1667 +msgid "Ensoniq ES5506" +msgstr "" + +#: src/engine/sysDef.cpp:1668 +msgid "" +"a sample chip made by Ensoniq, which is the basis for the GF1 chip found in " +"Gravis' Ultrasound cards." +msgstr "" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 29" +msgstr "" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 30" +msgstr "" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 31" +msgstr "" + +#: src/engine/sysDef.cpp:1669 +msgid "Channel 32" +msgstr "" + +#: src/engine/sysDef.cpp:1679 +msgid "Yamaha Y8950" +msgstr "" + +#: src/engine/sysDef.cpp:1680 +msgid "like OPL but with an ADPCM channel." +msgstr "" + +#: src/engine/sysDef.cpp:1691 +msgid "Yamaha Y8950 with drums" +msgstr "" + +#: src/engine/sysDef.cpp:1692 +msgid "the Y8950 chip, in drums mode." +msgstr "" + +#: src/engine/sysDef.cpp:1703 +msgid "Konami SCC+" +msgstr "" + +#: src/engine/sysDef.cpp:1704 +msgid "" +"this is a variant of Konami's SCC chip with the last channel's wavetable " +"being independent." +msgstr "" + +#: src/engine/sysDef.cpp:1715 +msgid "12xx: Set pulse width (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:1716 +msgid "13xx: Set resonance (0 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:1717 +msgid "" +"14xx: Set filter mode (bit 0: ring mod; bit 1: low pass; bit 2: high pass; " +"bit 3: band pass)" +msgstr "" + +#: src/engine/sysDef.cpp:1718 +msgid "15xx: Set frequency sweep period low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1719 +msgid "16xx: Set frequency sweep period high byte" +msgstr "" + +#: src/engine/sysDef.cpp:1720 +msgid "17xx: Set volume sweep period low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1721 +msgid "18xx: Set volume sweep period high byte" +msgstr "" + +#: src/engine/sysDef.cpp:1722 +msgid "19xx: Set cutoff sweep period low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1723 +msgid "1Axx: Set cutoff sweep period high byte" +msgstr "" + +#: src/engine/sysDef.cpp:1724 +msgid "1Bxx: Set frequency sweep boundary" +msgstr "" + +#: src/engine/sysDef.cpp:1725 +msgid "1Cxx: Set volume sweep boundary" +msgstr "" + +#: src/engine/sysDef.cpp:1726 +msgid "1Dxx: Set cutoff sweep boundary" +msgstr "" + +#: src/engine/sysDef.cpp:1727 +msgid "1Exx: Set phase reset period low byte" +msgstr "" + +#: src/engine/sysDef.cpp:1728 +msgid "1Fxx: Set phase reset period high byte" +msgstr "" + +#: src/engine/sysDef.cpp:1729 +msgid "20xx: Toggle frequency sweep (bit 0-6: speed; bit 7: direction is up)" +msgstr "" + +#: src/engine/sysDef.cpp:1730 +msgid "" +"21xx: Toggle volume sweep (bit 0-4: speed; bit 5: direction is up; bit 6: " +"loop; bit 7: alternate)" +msgstr "" + +#: src/engine/sysDef.cpp:1731 +msgid "22xx: Toggle cutoff sweep (bit 0-6: speed; bit 7: direction is up)" +msgstr "" + +#: src/engine/sysDef.cpp:1739 +msgid "tildearrow Sound Unit" +msgstr "" + +#: src/engine/sysDef.cpp:1740 +msgid "" +"tildearrow's fantasy sound chip. put SID, AY and VERA in a blender, and you " +"get this!" +msgstr "" + +#: src/engine/sysDef.cpp:1751 +msgid "OKI MSM6295" +msgstr "" + +#: src/engine/sysDef.cpp:1752 +msgid "an ADPCM sound chip manufactured by OKI and used in many arcade boards." +msgstr "" + +#: src/engine/sysDef.cpp:1759 +msgid "20xx: Set chip output rate (0: clock/132; 1: clock/165)" +msgstr "" + +#: src/engine/sysDef.cpp:1764 +msgid "OKI MSM6258" +msgstr "" + +#: src/engine/sysDef.cpp:1765 +msgid "an ADPCM sound chip manufactured by OKI and used in the Sharp X68000." +msgstr "" + +#: src/engine/sysDef.cpp:1766 src/engine/sysDef.cpp:1887 +#: src/gui/editControls.cpp:437 src/gui/settings.cpp:4223 +#: src/gui/guiConst.cpp:1397 src/gui/insEdit.cpp:2628 src/gui/insEdit.cpp:2666 +msgid "Sample" +msgstr "" + +#: src/engine/sysDef.cpp:1772 +msgid "20xx: Set frequency divider (0-2)" +msgstr "" + +#: src/engine/sysDef.cpp:1773 +msgid "21xx: Select clock rate (0: full; 1: half)" +msgstr "" + +#: src/engine/sysDef.cpp:1778 +msgid "Yamaha YMZ280B (PCMD8)" +msgstr "" + +#: src/engine/sysDef.cpp:1779 +msgid "" +"used in some arcade boards. Can play back either 4-bit ADPCM, 8-bit PCM or " +"16-bit PCM." +msgstr "" + +#: src/engine/sysDef.cpp:1797 src/gui/settings.cpp:4054 +msgid "Namco WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1798 +msgid "" +"a wavetable sound chip used in Pac-Man, among other early Namco arcade games." +msgstr "" + +#: src/engine/sysDef.cpp:1808 +msgid "Namco C15 WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1809 +msgid "" +"successor of the original Namco WSG chip, used in later Namco arcade games." +msgstr "" + +#: src/engine/sysDef.cpp:1819 +msgid "Namco C30 WSG" +msgstr "" + +#: src/engine/sysDef.cpp:1820 +msgid "like Namco C15 but with stereo sound." +msgstr "" + +#: src/engine/sysDef.cpp:1830 +msgid "OKI MSM5232" +msgstr "" + +#: src/engine/sysDef.cpp:1831 +msgid "" +"a square wave additive synthesis chip made by OKI. used in some arcade " +"machines and instruments." +msgstr "" + +#: src/engine/sysDef.cpp:1839 +msgid "10xy: Set group control (x: sustain; y: part toggle bitmask)" +msgstr "" + +#: src/engine/sysDef.cpp:1840 src/engine/sysDef.cpp:1998 +msgid "11xx: Set noise mode" +msgstr "" + +#: src/engine/sysDef.cpp:1841 +msgid "12xx: Set group attack (0 to 5)" +msgstr "" + +#: src/engine/sysDef.cpp:1842 +msgid "13xx: Set group decay (0 to 11)" +msgstr "" + +#: src/engine/sysDef.cpp:1847 +msgid "Yamaha YM2612 (OPN2) with DualPCM" +msgstr "" + +#: src/engine/sysDef.cpp:1848 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this system uses software mixing to provide two sample channels." +msgstr "" + +#: src/engine/sysDef.cpp:1849 src/engine/sysDef.cpp:1861 +msgid "FM 6/PCM 1" +msgstr "" + +#: src/engine/sysDef.cpp:1859 +msgid "Yamaha YM2612 (OPN2) Extended Channel 3 with DualPCM and CSM" +msgstr "" + +#: src/engine/sysDef.cpp:1860 +msgid "" +"this chip is mostly known for being in the Sega Genesis (but it also was on " +"the FM Towns computer).\n" +"this system uses software mixing to provide two sample channels.\n" +"this one is in Extended Channel mode, which turns the third FM channel into " +"four operators with independent notes/frequencies." +msgstr "" + +#: src/engine/sysDef.cpp:1872 src/gui/settings.cpp:4024 +msgid "T6W28" +msgstr "" + +#: src/engine/sysDef.cpp:1873 +msgid "" +"an SN76489 derivative used in Neo Geo Pocket, has independent stereo volume " +"and noise channel frequency." +msgstr "" + +#: src/engine/sysDef.cpp:1880 +msgid "20xx: Set noise length (0: short, 1: long)" +msgstr "" + +#: src/engine/sysDef.cpp:1885 +msgid "Generic PCM DAC" +msgstr "" + +#: src/engine/sysDef.cpp:1886 +msgid "as generic sample playback as it gets." +msgstr "" + +#: src/engine/sysDef.cpp:1898 +msgid "Konami K007232" +msgstr "" + +#: src/engine/sysDef.cpp:1899 +msgid "this PCM chip was widely used at Konami arcade boards in 1986-1990." +msgstr "" + +#: src/engine/sysDef.cpp:1908 +msgid "Irem GA20" +msgstr "" + +#: src/engine/sysDef.cpp:1909 +msgid "" +"yet another PCM chip from Irem. like Amiga, but less pitch resolution and no " +"sample loop." +msgstr "" + +#: src/engine/sysDef.cpp:1918 +msgid "Sharp SM8521" +msgstr "" + +#: src/engine/sysDef.cpp:1919 +msgid "a SoC with wavetable sound hardware." +msgstr "" + +#: src/engine/sysDef.cpp:1929 +msgid "Casio PV-1000" +msgstr "" + +#: src/engine/sysDef.cpp:1930 +msgid "" +"a game console with 3 channels of square wave. it's what happens after " +"fusing TIA and VIC together." +msgstr "" + +#: src/engine/sysDef.cpp:1937 +msgid "10xx: Set ring modulation (0: disable, 1: enable)" +msgstr "" + +#: src/engine/sysDef.cpp:1942 +msgid "ZX Spectrum Beeper (QuadTone Engine)" +msgstr "" + +#: src/engine/sysDef.cpp:1943 +msgid "" +"another ZX Spectrum beeper system with full PWM pulses and 3-level volume " +"per channel. it also has a pitchable overlay sample channel." +msgstr "" + +#: src/engine/sysDef.cpp:1955 +msgid "Konami K053260" +msgstr "" + +#: src/engine/sysDef.cpp:1956 +msgid "this PCM chip was widely used at Konami arcade boards in 1990-1992." +msgstr "" + +#: src/engine/sysDef.cpp:1968 +msgid "MOS Technology TED" +msgstr "" + +#: src/engine/sysDef.cpp:1969 +msgid "" +"two square waves (one may be turned into noise). used in the Commodore " +"Plus/4, 16 and 116." +msgstr "" + +#: src/engine/sysDef.cpp:1978 +msgid "Namco C140" +msgstr "" + +#: src/engine/sysDef.cpp:1979 +msgid "Namco's first PCM chip from 1987. it's pretty good for being so." +msgstr "" + +#: src/engine/sysDef.cpp:1989 +msgid "Namco C219" +msgstr "" + +#: src/engine/sysDef.cpp:1990 +msgid "" +"Namco's PCM chip used in their NA-1/2 hardware.\n" +"very similar to C140, but has noise generator." +msgstr "" + +#: src/engine/sysDef.cpp:1999 +msgid "12xy: Set invert mode (x: surround; y: invert)" +msgstr "" + +#: src/engine/sysDef.cpp:2004 +msgid "ESS ES1xxx series (ESFM)" +msgstr "" + +#: src/engine/sysDef.cpp:2005 +msgid "" +"a unique FM synth featured in PC sound cards.\n" +"based on the OPL3 design, but with lots of its features extended." +msgstr "" + +#: src/engine/sysDef.cpp:2006 +msgid "FM 11" +msgstr "" + +#: src/engine/sysDef.cpp:2012 +msgid "2Exx: Toggle hard envelope reset on new notes" +msgstr "" + +#: src/engine/sysDef.cpp:2018 +msgid "PowerNoise" +msgstr "" + +#: src/engine/sysDef.cpp:2019 +msgid "" +"a fantasy sound chip designed by jvsTSX and The Beesh-Spweesh!\n" +"used in the Hexheld fantasy console." +msgstr "" + +#: src/engine/sysDef.cpp:2020 +msgid "Noise 1" +msgstr "" + +#: src/engine/sysDef.cpp:2020 +msgid "Noise 2" +msgstr "" + +#: src/engine/sysDef.cpp:2020 +msgid "Noise 3" +msgstr "" + +#: src/engine/sysDef.cpp:2020 +msgid "Slope" +msgstr "" + +#: src/engine/sysDef.cpp:2026 +msgid "" +"20xx: Load low byte of noise channel LFSR (00 to FF) or slope channel " +"accumulator (00 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:2027 +msgid "21xx: Load high byte of noise channel LFSR (00 to FF)" +msgstr "" + +#: src/engine/sysDef.cpp:2028 +msgid "22xx: Write to I/O port A" +msgstr "" + +#: src/engine/sysDef.cpp:2029 +msgid "23xx: Write to I/O port B" +msgstr "" + +#: src/engine/sysDef.cpp:2035 src/gui/settings.cpp:4079 +msgid "Dave" +msgstr "" + +#: src/engine/sysDef.cpp:2036 +msgid "" +"this chip was featured in the Enterprise 128 computer. it is similar to " +"POKEY, but with stereo output." +msgstr "" + +#: src/engine/sysDef.cpp:2037 +msgid "DAC Left" +msgstr "" + +#: src/engine/sysDef.cpp:2037 +msgid "DAC Right" +msgstr "" + +#: src/engine/sysDef.cpp:2043 +msgid "10xx: Set waveform (0 to 4; 0 to 3 on noise)" +msgstr "" + +#: src/engine/sysDef.cpp:2044 +msgid "11xx: Set noise frequency source (0: fixed; 1-3: channels 1 to 3)" +msgstr "" + +#: src/engine/sysDef.cpp:2045 +msgid "12xx: Toggle high-pass with next channel" +msgstr "" + +#: src/engine/sysDef.cpp:2046 +msgid "13xx: Toggle ring modulation with channel+2" +msgstr "" + +#: src/engine/sysDef.cpp:2047 +msgid "14xx: Toggle swap counters (noise only)" +msgstr "" + +#: src/engine/sysDef.cpp:2048 +msgid "15xx: Toggle low pass (noise only)" +msgstr "" + +#: src/engine/sysDef.cpp:2049 +msgid "16xx: Set clock divider (0: /2; 1: /3)" +msgstr "" + +#: src/engine/sysDef.cpp:2054 +msgid "Game Boy Advance DMA Sound" +msgstr "" + +#: src/engine/sysDef.cpp:2055 +msgid "" +"additional PCM FIFO channels in Game Boy Advance driven directly by its DMA " +"hardware." +msgstr "" + +#: src/engine/sysDef.cpp:2068 +msgid "Game Boy Advance MinMod" +msgstr "" + +#: src/engine/sysDef.cpp:2069 +msgid "" +"additional PCM FIFO channels in Game Boy Advance driven by software mixing " +"to provide up to sixteen sample channels" +msgstr "" + +#: src/engine/sysDef.cpp:2078 +msgid "11xy: Set echo channel (x: left/right source; y: delay (0 disables))" +msgstr "" + +#: src/engine/sysDef.cpp:2079 +msgid "12xy: Toggle invert (x: left; y: right)" +msgstr "" + +#: src/engine/sysDef.cpp:2084 src/gui/settings.cpp:4080 +msgid "Nintendo DS" +msgstr "" + +#: src/engine/sysDef.cpp:2085 +msgid "a handheld video game console with two screens. it uses a stylus." +msgstr "" + +#: src/engine/sysDef.cpp:2093 +msgid "1Fxx: Set global volume (0 to 7F)" +msgstr "" + +#: src/engine/sysDef.cpp:2098 +msgid "5E01" +msgstr "" + +#: src/engine/sysDef.cpp:2099 +msgid "" +"a fantasy sound chip created by Euly. it is based on Ricoh 2A03, adding a " +"couple features such as 32 noise pitches, an extra duty cycle, and three " +"waveforms (besides triangle)." +msgstr "" + +#: src/engine/sysDef.cpp:2107 +msgid "" +"12xx: Set duty cycle/noise mode/waveform (pulse/wave: 0 to 3; noise: 0 or 1)" +msgstr "" + +#: src/engine/sysDef.cpp:2120 src/gui/settings.cpp:4083 +msgid "Bifurcator" +msgstr "" + +#: src/engine/sysDef.cpp:2121 +msgid "a fantasy sound chip using logistic map iterations to generate sound." +msgstr "" + +#: src/engine/sysDef.cpp:2128 +msgid "10xx: Load low byte of channel sample state" +msgstr "" + +#: src/engine/sysDef.cpp:2129 +msgid "11xx: Load high byte of channel sample state" +msgstr "" + +#: src/engine/sysDef.cpp:2130 +msgid "12xx: Set low byte of channel parameter" +msgstr "" + +#: src/engine/sysDef.cpp:2131 +msgid "13xx: Set high byte of channel parameter" +msgstr "" + +#: src/engine/sysDef.cpp:2136 src/gui/settings.cpp:4084 +msgid "SID2" +msgstr "" + +#: src/engine/sysDef.cpp:2137 +msgid "" +"a fantasy sound chip created by LTVA. it is similar to the SID chip, but " +"with many of its problems fixed." +msgstr "" + +#: src/engine/sysDef.cpp:2148 +msgid "Dummy System" +msgstr "" + +#: src/engine/sysDef.cpp:2149 +msgid "this is a system designed for testing purposes." +msgstr "" + +#: src/engine/engine.cpp:51 +msgid "00xy: Arpeggio" +msgstr "" + +#: src/engine/engine.cpp:53 +msgid "01xx: Pitch slide up" +msgstr "" + +#: src/engine/engine.cpp:55 +msgid "02xx: Pitch slide down" +msgstr "" + +#: src/engine/engine.cpp:57 +msgid "03xx: Portamento" +msgstr "" + +#: src/engine/engine.cpp:59 +msgid "04xy: Vibrato (x: speed; y: depth)" +msgstr "" + +#: src/engine/engine.cpp:61 +msgid "05xy: Volume slide + vibrato (compatibility only!)" +msgstr "" + +#: src/engine/engine.cpp:63 +msgid "06xy: Volume slide + portamento (compatibility only!)" +msgstr "" + +#: src/engine/engine.cpp:65 +msgid "07xy: Tremolo (x: speed; y: depth)" +msgstr "" + +#: src/engine/engine.cpp:67 +msgid "08xy: Set panning (x: left; y: right)" +msgstr "" + +#: src/engine/engine.cpp:69 +msgid "09xx: Set groove pattern (speed 1 if no grooves exist)" +msgstr "" + +#: src/engine/engine.cpp:71 +msgid "0Axy: Volume slide (0y: down; x0: up)" +msgstr "" + +#: src/engine/engine.cpp:73 +msgid "0Bxx: Jump to pattern" +msgstr "" + +#: src/engine/engine.cpp:75 +msgid "0Cxx: Retrigger" +msgstr "" + +#: src/engine/engine.cpp:77 +msgid "0Dxx: Jump to next pattern" +msgstr "" + +#: src/engine/engine.cpp:79 +msgid "0Fxx: Set speed (speed 2 if no grooves exist)" +msgstr "" + +#: src/engine/engine.cpp:81 +msgid "80xx: Set panning (00: left; 80: center; FF: right)" +msgstr "" + +#: src/engine/engine.cpp:83 +msgid "81xx: Set panning (left channel)" +msgstr "" + +#: src/engine/engine.cpp:85 +msgid "82xx: Set panning (right channel)" +msgstr "" + +#: src/engine/engine.cpp:87 +msgid "88xy: Set panning (rear channels; x: left; y: right)" +msgstr "" + +#: src/engine/engine.cpp:90 +msgid "89xx: Set panning (rear left channel)" +msgstr "" + +#: src/engine/engine.cpp:93 +msgid "8Axx: Set panning (rear right channel)" +msgstr "" + +#: src/engine/engine.cpp:96 +msgid "Cxxx: Set tick rate (hz)" +msgstr "" + +#: src/engine/engine.cpp:98 +msgid "E0xx: Set arp speed" +msgstr "" + +#: src/engine/engine.cpp:100 +msgid "E1xy: Note slide up (x: speed; y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:102 +msgid "E2xy: Note slide down (x: speed; y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:104 +msgid "E3xx: Set vibrato shape (0: up/down; 1: up only; 2: down only)" +msgstr "" + +#: src/engine/engine.cpp:106 +msgid "E4xx: Set vibrato range" +msgstr "" + +#: src/engine/engine.cpp:108 +msgid "E5xx: Set pitch (80: center)" +msgstr "" + +#: src/engine/engine.cpp:110 +msgid "E6xy: Quick legato (x: time (0-7 up; 8-F down); y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:112 +msgid "E7xx: Macro release" +msgstr "" + +#: src/engine/engine.cpp:114 +msgid "E8xy: Quick legato up (x: time; y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:116 +msgid "E9xy: Quick legato down (x: time; y: semitones)" +msgstr "" + +#: src/engine/engine.cpp:118 +msgid "EAxx: Legato" +msgstr "" + +#: src/engine/engine.cpp:120 +msgid "EBxx: Set LEGACY sample mode bank" +msgstr "" + +#: src/engine/engine.cpp:122 +msgid "ECxx: Note cut" +msgstr "" + +#: src/engine/engine.cpp:124 +msgid "EDxx: Note delay" +msgstr "" + +#: src/engine/engine.cpp:126 +msgid "EExx: Send external command" +msgstr "" + +#: src/engine/engine.cpp:128 +msgid "F0xx: Set tick rate (bpm)" +msgstr "" + +#: src/engine/engine.cpp:130 +msgid "F1xx: Single tick note slide up" +msgstr "" + +#: src/engine/engine.cpp:132 +msgid "F2xx: Single tick note slide down" +msgstr "" + +#: src/engine/engine.cpp:134 +msgid "F3xx: Fine volume slide up" +msgstr "" + +#: src/engine/engine.cpp:136 +msgid "F4xx: Fine volume slide down" +msgstr "" + +#: src/engine/engine.cpp:138 +msgid "F5xx: Disable macro (see manual)" +msgstr "" + +#: src/engine/engine.cpp:140 +msgid "F6xx: Enable macro (see manual)" +msgstr "" + +#: src/engine/engine.cpp:142 +msgid "F7xx: Restart macro (see manual)" +msgstr "" + +#: src/engine/engine.cpp:144 +msgid "F8xx: Single tick volume slide up" +msgstr "" + +#: src/engine/engine.cpp:146 +msgid "F9xx: Single tick volume slide down" +msgstr "" + +#: src/engine/engine.cpp:148 +msgid "FAxx: Fast volume slide (0y: down; x0: up)" +msgstr "" + +#: src/engine/engine.cpp:150 +msgid "FCxx: Note release" +msgstr "" + +#: src/engine/engine.cpp:152 +msgid "FDxx: Set virtual tempo numerator" +msgstr "" + +#: src/engine/engine.cpp:154 +msgid "FExx: Set virtual tempo denominator" +msgstr "" + +#: src/engine/engine.cpp:156 +msgid "FFxx: Stop song" +msgstr "" + +#: src/engine/engine.cpp:160 +msgid "9xxx: Set sample offset*256" +msgstr "" + +#: src/engine/engine.cpp:164 +msgid "90xx: Set sample offset (first byte)" +msgstr "" + +#: src/engine/engine.cpp:166 +msgid "91xx: Set sample offset (second byte, ×256)" +msgstr "" + +#: src/engine/engine.cpp:168 +msgid "92xx: Set sample offset (third byte, ×65536)" +msgstr "" + +#: src/engine/engine.cpp:187 src/gui/settings.cpp:4127 +msgid "Invalid effect" +msgstr "" + +#: src/engine/engine.cpp:354 src/gui/gui.cpp:2259 src/gui/gui.cpp:2422 +#, c-format +msgid "on seek: %s" +msgstr "" + +#: src/engine/engine.cpp:361 src/gui/gui.cpp:2266 src/gui/gui.cpp:2429 +#, c-format +msgid "on pre tell: %s" +msgstr "" + +#: src/engine/engine.cpp:368 src/engine/engine.cpp:2768 +#: src/gui/settings.cpp:5811 src/gui/gui.cpp:2273 src/gui/gui.cpp:2436 +msgid "file is empty" +msgstr "" + +#: src/engine/engine.cpp:371 src/gui/gui.cpp:2276 src/gui/gui.cpp:2439 +#, c-format +msgid "on tell: %s" +msgstr "" + +#: src/engine/engine.cpp:378 +#, c-format +msgid "ROM size mismatch, expected: %d bytes, was: %d" +msgstr "" + +#: src/engine/engine.cpp:383 src/gui/settings.cpp:5820 src/gui/gui.cpp:2283 +#: src/gui/gui.cpp:2446 +#, c-format +msgid "on get size: %s" +msgstr "" + +#: src/engine/engine.cpp:390 src/gui/settings.cpp:5827 src/gui/gui.cpp:2290 +#: src/gui/gui.cpp:2453 +#, c-format +msgid "on read: %s" +msgstr "" + +#: src/engine/engine.cpp:1076 src/engine/engine.cpp:1181 +#: src/engine/engine.cpp:1290 +msgid "invalid index" +msgstr "" + +#: src/engine/engine.cpp:1080 src/engine/engine.cpp:1135 +#: src/engine/engine.cpp:1189 +#, c-format +msgid "max number of total channels is %d" +msgstr "" + +#: src/engine/engine.cpp:1131 src/engine/engine.cpp:1185 +#, c-format +msgid "max number of systems is %d" +msgstr "" + +#: src/engine/engine.cpp:1286 +msgid "cannot remove the last one" +msgstr "" + +#: src/engine/engine.cpp:1460 +msgid "source and destination are equal" +msgstr "" + +#: src/engine/engine.cpp:1464 +msgid "invalid source index" +msgstr "" + +#: src/engine/engine.cpp:1468 +msgid "invalid destination index" +msgstr "" + +#: src/engine/engine.cpp:2636 +#, c-format +msgid "Instrument %d" +msgstr "" + +#: src/engine/engine.cpp:2710 src/engine/engine.cpp:2727 +#: src/gui/doAction.cpp:825 src/gui/doAction.cpp:843 src/gui/doAction.cpp:1634 +#: src/gui/gui.cpp:6159 src/gui/insEdit.cpp:6860 +msgid "too many wavetables!" +msgstr "" + +#: src/engine/engine.cpp:2752 +#, c-format +msgid "could not seek to end: %s" +msgstr "" + +#: src/engine/engine.cpp:2758 +#, c-format +msgid "could not determine file size: %s" +msgstr "" + +#: src/engine/engine.cpp:2763 +msgid "file size is invalid!" +msgstr "" + +#: src/engine/engine.cpp:2773 +#, c-format +msgid "could not seek to beginning: %s" +msgstr "" + +#: src/engine/engine.cpp:2780 +#, c-format +msgid "could not read entire file: %s" +msgstr "" + +#: src/engine/engine.cpp:2806 +msgid "invalid wavetable header/data!" +msgstr "" + +#: src/engine/engine.cpp:2877 +msgid "premature end of file" +msgstr "" + +#: src/engine/engine.cpp:2904 src/engine/engine.cpp:2926 +#: src/gui/doAction.cpp:909 src/gui/doAction.cpp:921 +msgid "too many samples!" +msgstr "" + +#: src/engine/engine.cpp:2911 +#, c-format +msgid "Sample %d" +msgstr "" + +#: src/engine/engine.cpp:3056 +#, c-format +msgid "no free patterns in channel %d!" +msgstr "" + +#: src/gui/mixer.cpp:28 src/gui/insEdit.cpp:484 +msgid "left" +msgstr "" + +#: src/gui/mixer.cpp:29 src/gui/insEdit.cpp:483 +msgid "right" +msgstr "" + +#: src/gui/mixer.cpp:128 +msgid "input" +msgstr "" + +#: src/gui/mixer.cpp:168 +msgid "output" +msgstr "" + +#: src/gui/mixer.cpp:226 src/gui/mixer.cpp:228 src/gui/editControls.cpp:454 +#: src/gui/guiConst.cpp:593 +msgid "Mixer" +msgstr "" + +#: src/gui/mixer.cpp:229 +msgid "Master Volume" +msgstr "" + +#: src/gui/mixer.cpp:250 src/gui/exportOptions.cpp:90 +#: src/gui/userPresets.cpp:393 src/gui/userPresets.cpp:405 +#: src/gui/settings.cpp:1080 src/gui/settings.cpp:1094 +#: src/gui/waveEdit.cpp:1096 src/gui/sampleEdit.cpp:1128 +#: src/gui/insEdit.cpp:519 +msgid "Invert" +msgstr "" + +#: src/gui/mixer.cpp:268 src/gui/chanOsc.cpp:37 src/gui/userPresets.cpp:417 +#: src/gui/settings.cpp:263 src/gui/settings.cpp:1109 src/gui/settings.cpp:1492 +#: src/gui/settings.cpp:1504 src/gui/settings.cpp:3369 +#: src/gui/settings.cpp:4015 src/gui/findReplace.cpp:687 +#: src/gui/findReplace.cpp:943 src/gui/guiConst.cpp:228 +#: src/gui/sampleEdit.cpp:1003 src/gui/insEdit.cpp:5575 +#: src/gui/insEdit.cpp:5660 src/gui/insEdit.cpp:6920 src/gui/insEdit.cpp:6928 +#: src/gui/insEdit.cpp:6936 src/gui/insEdit.cpp:6946 src/gui/insEdit.cpp:6961 +#: src/gui/insEdit.cpp:6975 src/gui/insEdit.cpp:6987 src/gui/insEdit.cpp:7000 +#: src/gui/insEdit.cpp:7016 src/gui/insEdit.cpp:7022 src/gui/insEdit.cpp:7032 +#: src/gui/insEdit.cpp:7039 src/gui/insEdit.cpp:7045 src/gui/insEdit.cpp:7058 +#: src/gui/insEdit.cpp:7065 src/gui/insEdit.cpp:7072 src/gui/insEdit.cpp:7081 +#: src/gui/insEdit.cpp:7091 src/gui/insEdit.cpp:7099 src/gui/insEdit.cpp:7105 +#: src/gui/insEdit.cpp:7113 src/gui/insEdit.cpp:7120 src/gui/insEdit.cpp:7126 +#: src/gui/insEdit.cpp:7136 src/gui/insEdit.cpp:7148 src/gui/insEdit.cpp:7156 +#: src/gui/insEdit.cpp:7172 src/gui/insEdit.cpp:7177 src/gui/insEdit.cpp:7190 +#: src/gui/insEdit.cpp:7197 src/gui/insEdit.cpp:7208 src/gui/insEdit.cpp:7221 +#: src/gui/insEdit.cpp:7230 src/gui/insEdit.cpp:7237 src/gui/insEdit.cpp:7245 +#: src/gui/insEdit.cpp:7258 src/gui/insEdit.cpp:7263 src/gui/insEdit.cpp:7269 +#: src/gui/insEdit.cpp:7276 src/gui/insEdit.cpp:7284 src/gui/insEdit.cpp:7295 +#: src/gui/insEdit.cpp:7302 src/gui/insEdit.cpp:7310 src/gui/insEdit.cpp:7318 +#: src/gui/insEdit.cpp:7327 src/gui/insEdit.cpp:7335 src/gui/insEdit.cpp:7341 +#: src/gui/insEdit.cpp:7347 src/gui/insEdit.cpp:7353 src/gui/insEdit.cpp:7358 +#: src/gui/insEdit.cpp:7365 src/gui/insEdit.cpp:7372 src/gui/insEdit.cpp:7380 +#: src/gui/insEdit.cpp:7389 src/gui/insEdit.cpp:7397 src/gui/insEdit.cpp:7409 +#: src/gui/insEdit.cpp:7422 src/gui/insEdit.cpp:7433 src/gui/insEdit.cpp:7443 +#: src/gui/insEdit.cpp:7451 src/gui/insEdit.cpp:7461 src/gui/insEdit.cpp:7470 +msgid "Volume" +msgstr "" + +#: src/gui/mixer.cpp:279 src/gui/userPresets.cpp:427 src/gui/settings.cpp:1120 +#: src/gui/guiConst.cpp:229 src/gui/insEdit.cpp:6923 src/gui/insEdit.cpp:6930 +#: src/gui/insEdit.cpp:6941 src/gui/insEdit.cpp:6965 src/gui/insEdit.cpp:7067 +#: src/gui/insEdit.cpp:7108 src/gui/insEdit.cpp:7152 src/gui/insEdit.cpp:7192 +#: src/gui/insEdit.cpp:7212 src/gui/insEdit.cpp:7232 src/gui/insEdit.cpp:7240 +#: src/gui/insEdit.cpp:7253 src/gui/insEdit.cpp:7265 src/gui/insEdit.cpp:7271 +#: src/gui/insEdit.cpp:7287 src/gui/insEdit.cpp:7297 src/gui/insEdit.cpp:7360 +#: src/gui/insEdit.cpp:7392 src/gui/insEdit.cpp:7438 src/gui/insEdit.cpp:7446 +msgid "Panning" +msgstr "" + +#: src/gui/mixer.cpp:290 src/gui/userPresets.cpp:433 src/gui/settings.cpp:1127 +msgid "Front/Rear" +msgstr "" + +#: src/gui/mixer.cpp:299 src/gui/settings.cpp:4208 +msgid "Patchbay" +msgstr "" + +#: src/gui/mixer.cpp:305 +msgid "Automatic patchbay" +msgstr "" + +#: src/gui/mixer.cpp:310 +msgid "Display hidden ports" +msgstr "" + +#: src/gui/mixer.cpp:312 +msgid "Display internal" +msgstr "" + +#: src/gui/mixer.cpp:322 src/gui/mixer.cpp:383 src/gui/settings.cpp:1901 +#: src/gui/settings.cpp:2089 src/gui/songInfo.cpp:69 +msgid "System" +msgstr "" + +#: src/gui/mixer.cpp:354 +msgid "Sample Preview" +msgstr "" + +#: src/gui/mixer.cpp:367 src/gui/editControls.cpp:745 +#: src/gui/editControls.cpp:837 src/gui/editControls.cpp:953 +#: src/gui/editControls.cpp:1093 src/gui/settings.cpp:1490 +#: src/gui/guiConst.cpp:558 +msgid "Metronome" +msgstr "" + +#: src/gui/mixer.cpp:446 +msgid "disconnect all" +msgstr "" + +#: src/gui/editing.cpp:200 +#, c-format +msgid "no data in oldPatMap for channel %d!" +msgstr "" + +#: src/gui/editing.cpp:664 src/gui/editing.cpp:1203 +#, c-format +msgid "invalid clipboard data! failed at line %d char %d" +msgstr "" + +#: src/gui/editing.cpp:1565 src/gui/editing.cpp:1669 +msgid "can't collapse any further!" +msgstr "" + +#: src/gui/editing.cpp:1749 +msgid "can't expand any further!" +msgstr "" + +#: src/gui/editing.cpp:1836 src/gui/editing.cpp:1851 +#, c-format +msgid "copy: %s" +msgstr "" + +#: src/gui/memory.cpp:35 src/gui/settings.cpp:3696 src/gui/settings.cpp:4217 +#: src/gui/guiConst.cpp:613 +msgid "Memory Composition" +msgstr "" + +#: src/gui/memory.cpp:146 +#, c-format +msgid "bank %d" +msgstr "" + +#: src/gui/memory.cpp:175 src/gui/memory.cpp:176 +msgid "no chips with memory" +msgstr "" + +#: src/gui/intro.cpp:89 src/gui/gui.cpp:2345 src/gui/gui.cpp:3746 +#: src/gui/gui.cpp:5019 src/gui/gui.cpp:5041 src/gui/gui.cpp:5479 +#: src/gui/gui.cpp:5781 src/gui/gui.cpp:5791 +#, c-format +msgid "Error while loading file! (%s)" +msgstr "" + +#: src/gui/intro.cpp:122 +msgid "IntroMon X" +msgstr "" + +#: src/gui/intro.cpp:122 +msgid "Intro" +msgstr "" + +#: src/gui/intro.cpp:124 +msgid "Preview" +msgstr "" + +#: src/gui/intro.cpp:176 src/gui/intro.cpp:177 src/gui/intro.cpp:178 +msgid "SORRY NOTHING" +msgstr "" + +#: src/gui/intro.cpp:310 +msgid "hold to skip" +msgstr "" + +#: src/gui/dataList.cpp:76 +msgid "Bug!" +msgstr "" + +#: src/gui/dataList.cpp:79 src/gui/util.cpp:107 src/gui/util.cpp:109 +#: src/gui/settings.cpp:4220 src/gui/insEdit.cpp:5334 +msgid "Unknown" +msgstr "" + +#: src/gui/dataList.cpp:136 src/gui/dataList.cpp:260 +msgid "duplicate" +msgstr "" + +#: src/gui/dataList.cpp:139 src/gui/dataList.cpp:263 src/gui/dataList.cpp:388 +#: src/gui/dataList.cpp:731 src/gui/dataList.cpp:867 +msgid "replace..." +msgstr "" + +#: src/gui/dataList.cpp:142 src/gui/dataList.cpp:266 src/gui/gui.cpp:4232 +msgid "save" +msgstr "" + +#: src/gui/dataList.cpp:145 +msgid "save (.dmp)" +msgstr "" + +#: src/gui/dataList.cpp:148 src/gui/dataList.cpp:269 src/gui/dataList.cpp:617 +#: src/gui/dataList.cpp:994 src/gui/dataList.cpp:1040 +#: src/gui/editControls.cpp:50 src/gui/gui.cpp:2767 src/gui/gui.cpp:2776 +msgid "delete" +msgstr "" + +#: src/gui/dataList.cpp:243 +msgid "out of memory for this sample!" +msgstr "" + +#: src/gui/dataList.cpp:254 +msgid "make instrument" +msgstr "" + +#: src/gui/dataList.cpp:257 +msgid "make me a drum kit" +msgstr "" + +#: src/gui/dataList.cpp:290 src/gui/dataList.cpp:593 src/gui/gui.cpp:5914 +msgid "Instruments" +msgstr "" + +#: src/gui/dataList.cpp:312 src/gui/dataList.cpp:714 src/gui/dataList.cpp:846 +#: src/gui/subSongs.cpp:88 src/gui/insEdit.cpp:520 +msgid "Add" +msgstr "" + +#: src/gui/dataList.cpp:338 src/gui/dataList.cpp:721 src/gui/dataList.cpp:853 +#: src/gui/subSongs.cpp:108 +msgid "Duplicate" +msgstr "" + +#: src/gui/dataList.cpp:359 src/gui/dataList.cpp:728 src/gui/dataList.cpp:860 +#: src/gui/editControls.cpp:497 src/gui/waveEdit.cpp:435 +#: src/gui/waveEdit.cpp:467 src/gui/sampleEdit.cpp:122 +#: src/gui/sampleEdit.cpp:171 src/gui/insEdit.cpp:5239 src/gui/insEdit.cpp:5304 +msgid "Open" +msgstr "" + +#: src/gui/dataList.cpp:363 +msgid "replace instrument..." +msgstr "" + +#: src/gui/dataList.cpp:366 +msgid "load instrument from TX81Z" +msgstr "" + +#: src/gui/dataList.cpp:372 +msgid "replace wavetable..." +msgstr "" + +#: src/gui/dataList.cpp:378 +msgid "replace sample..." +msgstr "" + +#: src/gui/dataList.cpp:381 +msgid "import raw sample..." +msgstr "" + +#: src/gui/dataList.cpp:384 +msgid "import raw sample (replace)..." +msgstr "" + +#: src/gui/dataList.cpp:392 +msgid "load from TX81Z" +msgstr "" + +#: src/gui/dataList.cpp:399 +msgid "Open (insert; right-click to replace)" +msgstr "" + +#: src/gui/dataList.cpp:420 src/gui/dataList.cpp:741 src/gui/dataList.cpp:884 +#: src/gui/editControls.cpp:502 src/gui/waveEdit.cpp:474 +#: src/gui/sampleEdit.cpp:184 src/gui/insEdit.cpp:5311 +msgid "Save" +msgstr "" + +#: src/gui/dataList.cpp:424 +msgid "save instrument as .dmp..." +msgstr "" + +#: src/gui/dataList.cpp:430 +msgid "save wavetable as .dmw..." +msgstr "" + +#: src/gui/dataList.cpp:433 +msgid "save raw wavetable..." +msgstr "" + +#: src/gui/dataList.cpp:439 +msgid "save raw sample..." +msgstr "" + +#: src/gui/dataList.cpp:443 src/gui/insEdit.cpp:5314 +msgid "save as .dmp..." +msgstr "" + +#: src/gui/dataList.cpp:456 src/gui/dataList.cpp:761 src/gui/dataList.cpp:903 +msgid "Toggle folders/standard view" +msgstr "" + +#: src/gui/dataList.cpp:478 src/gui/dataList.cpp:769 src/gui/dataList.cpp:911 +#: src/gui/subSongs.cpp:55 +msgid "Move up" +msgstr "" + +#: src/gui/dataList.cpp:499 src/gui/dataList.cpp:776 src/gui/dataList.cpp:918 +#: src/gui/subSongs.cpp:62 +msgid "Move down" +msgstr "" + +#: src/gui/dataList.cpp:510 src/gui/dataList.cpp:787 src/gui/dataList.cpp:929 +msgid "Create" +msgstr "" + +#: src/gui/dataList.cpp:540 src/gui/dataList.cpp:797 src/gui/dataList.cpp:939 +msgid "New folder" +msgstr "" + +#: src/gui/dataList.cpp:549 src/gui/dataList.cpp:947 +msgid "Preview (right click to stop)" +msgstr "" + +#: src/gui/dataList.cpp:576 src/gui/dataList.cpp:807 src/gui/dataList.cpp:959 +#: src/gui/guiConst.cpp:666 src/gui/sampleEdit.cpp:1105 +msgid "Delete" +msgstr "" + +#: src/gui/dataList.cpp:608 src/gui/dataList.cpp:985 src/gui/dataList.cpp:1031 +msgid "" +msgstr "" + +#: src/gui/dataList.cpp:614 src/gui/dataList.cpp:991 src/gui/dataList.cpp:1037 +msgid "rename..." +msgstr "" + +#: src/gui/dataList.cpp:663 src/gui/dataList.cpp:707 src/gui/gui.cpp:5923 +msgid "Wavetables" +msgstr "" + +#: src/gui/dataList.cpp:674 src/gui/dataList.cpp:839 src/gui/xyOsc.cpp:68 +#: src/gui/sampleEdit.cpp:898 src/gui/sampleEdit.cpp:1072 src/gui/gui.cpp:5932 +msgid "Samples" +msgstr "" + +#: src/gui/dataList.cpp:745 src/gui/waveEdit.cpp:477 +msgid "save as .dmw..." +msgstr "" + +#: src/gui/dataList.cpp:748 src/gui/dataList.cpp:891 src/gui/waveEdit.cpp:480 +#: src/gui/sampleEdit.cpp:187 +msgid "save raw..." +msgstr "" + +#: src/gui/dataList.cpp:871 src/gui/sampleEdit.cpp:174 +msgid "import raw..." +msgstr "" + +#: src/gui/dataList.cpp:874 +msgid "import raw (replace)..." +msgstr "" + +#: src/gui/exportOptions.cpp:29 +msgid "Export type:" +msgstr "" + +#: src/gui/exportOptions.cpp:32 +msgid "one file" +msgstr "" + +#: src/gui/exportOptions.cpp:35 +msgid "multiple files (one per chip)" +msgstr "" + +#: src/gui/exportOptions.cpp:38 +msgid "multiple files (one per channel)" +msgstr "" + +#: src/gui/exportOptions.cpp:44 +msgid "Bit depth:" +msgstr "" + +#: src/gui/exportOptions.cpp:46 +msgid "16-bit integer" +msgstr "" + +#: src/gui/exportOptions.cpp:49 +msgid "32-bit float" +msgstr "" + +#: src/gui/exportOptions.cpp:55 src/gui/settings.cpp:1352 src/gui/gui.cpp:6270 +msgid "Sample rate" +msgstr "" + +#: src/gui/exportOptions.cpp:61 +msgid "Channels in file" +msgstr "" + +#: src/gui/exportOptions.cpp:67 src/gui/settings.cpp:930 +msgid "Loops" +msgstr "" + +#: src/gui/exportOptions.cpp:70 src/gui/settings.cpp:935 +msgid "Fade out (seconds)" +msgstr "" + +#: src/gui/exportOptions.cpp:76 +msgid "Channels to export:" +msgstr "" + +#: src/gui/exportOptions.cpp:78 src/gui/effectList.cpp:32 src/gui/gui.cpp:6186 +msgid "All" +msgstr "" + +#: src/gui/exportOptions.cpp:84 src/gui/sysConf.cpp:1870 +#: src/gui/effectList.cpp:34 src/gui/compatFlags.cpp:219 +#: src/gui/waveEdit.cpp:37 src/gui/gui.cpp:6192 src/gui/insEdit.cpp:518 +msgid "None" +msgstr "" + +#: src/gui/exportOptions.cpp:110 src/gui/exportOptions.cpp:214 +#: src/gui/exportOptions.cpp:225 src/gui/exportOptions.cpp:243 +#: src/gui/exportOptions.cpp:266 src/gui/exportOptions.cpp:297 +#: src/gui/exportOptions.cpp:318 src/gui/exportOptions.cpp:341 +#: src/gui/commandPalette.cpp:199 src/gui/settings.cpp:6673 +#: src/gui/newSong.cpp:273 src/gui/gui.cpp:5669 src/gui/gui.cpp:5693 +#: src/gui/gui.cpp:5717 src/gui/gui.cpp:5741 src/gui/gui.cpp:5765 +#: src/gui/gui.cpp:5796 src/gui/gui.cpp:5855 src/gui/gui.cpp:6229 +#: src/gui/gui.cpp:6353 +msgid "Cancel" +msgstr "" + +#: src/gui/exportOptions.cpp:115 src/gui/exportOptions.cpp:217 +#: src/gui/exportOptions.cpp:246 src/gui/exportOptions.cpp:300 +#: src/gui/exportOptions.cpp:321 src/gui/exportOptions.cpp:344 +#: src/gui/editControls.cpp:512 src/gui/userPresets.cpp:523 +#: src/gui/settings.cpp:1242 src/gui/settings.cpp:2165 +#: src/gui/settings.cpp:2557 src/gui/settings.cpp:3800 src/gui/guiConst.cpp:536 +#: src/gui/gui.cpp:5578 src/gui/gui.cpp:5630 +msgid "Export" +msgstr "" + +#: src/gui/exportOptions.cpp:130 +msgid "select at least one channel" +msgstr "" + +#: src/gui/exportOptions.cpp:137 +msgid "settings:" +msgstr "" + +#: src/gui/exportOptions.cpp:138 +msgid "format version" +msgstr "" + +#: src/gui/exportOptions.cpp:146 src/gui/exportOptions.cpp:238 +#: src/gui/insEdit.cpp:362 +msgid "loop" +msgstr "" + +#: src/gui/exportOptions.cpp:148 +msgid "loop trail:" +msgstr "" + +#: src/gui/exportOptions.cpp:150 +msgid "auto-detect" +msgstr "" + +#: src/gui/exportOptions.cpp:153 +msgid "add one loop" +msgstr "" + +#: src/gui/exportOptions.cpp:156 +msgid "custom" +msgstr "" + +#: src/gui/exportOptions.cpp:167 +msgid "add pattern change hints" +msgstr "" + +#: src/gui/exportOptions.cpp:170 +msgid "" +"inserts data blocks on pattern changes.\n" +"useful if you are writing a playback routine.\n" +"\n" +"the format of a pattern change data block is:\n" +"67 66 FE ll ll ll ll 01 oo rr pp pp pp ...\n" +"- ll: length, a 32-bit little-endian number\n" +"- oo: order\n" +"- rr: initial row (a 0Dxx effect is able to select a different row)\n" +"- pp: pattern index (one per channel)\n" +"\n" +"pattern indexes are ordered as they appear in the song." +msgstr "" + +#: src/gui/exportOptions.cpp:183 +msgid "direct stream mode" +msgstr "" + +#: src/gui/exportOptions.cpp:186 +msgid "" +"required for DualPCM and MSM6258 export.\n" +"\n" +"allows for volume/direction changes when playing samples,\n" +"at the cost of a massive increase in file size." +msgstr "" + +#: src/gui/exportOptions.cpp:191 +msgid "chips to export:" +msgstr "" + +#: src/gui/exportOptions.cpp:200 +#, c-format +msgid "this chip is only available in VGM %d.%.2x and higher!" +msgstr "" + +#: src/gui/exportOptions.cpp:204 +msgid "this chip is not supported by the VGM format!" +msgstr "" + +#: src/gui/exportOptions.cpp:210 +#, c-format +msgid "select the chip you wish to export, but only up to %d of each type." +msgstr "" + +#: src/gui/exportOptions.cpp:222 +msgid "nothing to export" +msgstr "" + +#: src/gui/exportOptions.cpp:233 +msgid "Commander X16 Zsound Music File" +msgstr "" + +#: src/gui/exportOptions.cpp:234 +msgid "Tick Rate (Hz)" +msgstr "" + +#: src/gui/exportOptions.cpp:240 +msgid "optimize size" +msgstr "" + +#: src/gui/exportOptions.cpp:256 src/gui/editControls.cpp:630 +msgid "" +"this is NOT ROM export! only use for making sure the\n" +"Furnace Amiga emulator is working properly by\n" +"comparing it with real Amiga output." +msgstr "" + +#: src/gui/exportOptions.cpp:261 src/gui/editControls.cpp:635 +#: src/gui/settings.cpp:3925 +msgid "Directory" +msgstr "" + +#: src/gui/exportOptions.cpp:269 src/gui/editControls.cpp:638 +msgid "Bake Data" +msgstr "" + +#: src/gui/exportOptions.cpp:284 src/gui/editControls.cpp:653 +#, c-format +msgid "Done! Baked %d files." +msgstr "" + +#: src/gui/exportOptions.cpp:293 +msgid "this option exports the song to a text file.\n" +msgstr "" + +#: src/gui/exportOptions.cpp:310 +msgid "" +"this option exports a text or binary file which\n" +"contains a dump of the internal command stream\n" +"produced when playing the song.\n" +"\n" +"technical/development use only!" +msgstr "" + +#: src/gui/exportOptions.cpp:331 +msgid "" +"export in DefleMask module format.\n" +"only do it if you really, really need to, or are downgrading an existing ." +"dmf." +msgstr "" + +#: src/gui/exportOptions.cpp:335 +msgid "format version:" +msgstr "" + +#: src/gui/exportOptions.cpp:336 +msgid "1.1.3 and higher" +msgstr "" + +#: src/gui/exportOptions.cpp:337 +msgid "1.0/legacy (0.12)" +msgstr "" + +#: src/gui/exportOptions.cpp:357 src/gui/settings.cpp:1253 +#: src/gui/settings.cpp:3929 +msgid "Audio" +msgstr "" + +#: src/gui/exportOptions.cpp:361 src/gui/settings.cpp:3931 +msgid "VGM" +msgstr "" + +#: src/gui/exportOptions.cpp:370 src/gui/settings.cpp:3932 +msgid "ZSM" +msgstr "" + +#: src/gui/exportOptions.cpp:380 +msgid "Amiga Validation" +msgstr "" + +#: src/gui/exportOptions.cpp:385 src/gui/settings.cpp:2959 +#: src/gui/settings.cpp:3891 +msgid "Text" +msgstr "" + +#: src/gui/exportOptions.cpp:389 +msgid "Command Stream" +msgstr "" + +#: src/gui/exportOptions.cpp:393 +msgid "DMF" +msgstr "" + +#: src/gui/exportOptions.cpp:422 +msgid "congratulations! you've unlocked a secret panel." +msgstr "" + +#: src/gui/exportOptions.cpp:423 +msgid "Toggle hidden systems" +msgstr "" + +#: src/gui/exportOptions.cpp:427 +msgid "Toggle all instrument types" +msgstr "" + +#: src/gui/exportOptions.cpp:431 +msgid "Set pitch linearity to Partial" +msgstr "" + +#: src/gui/exportOptions.cpp:435 +msgid "Enable multi-threading settings" +msgstr "" + +#: src/gui/exportOptions.cpp:439 +msgid "Set fat to max" +msgstr "" + +#: src/gui/exportOptions.cpp:446 +msgid "Set muscle and fat to zero" +msgstr "" + +#: src/gui/exportOptions.cpp:453 +msgid "Tell tildearrow this must be a mistake" +msgstr "" + +#: src/gui/exportOptions.cpp:454 +msgid "" +"yeah, it's a bug. write a bug report in the GitHub page and tell me how did " +"you get here." +msgstr "" + +#: src/gui/speed.cpp:32 src/gui/speed.cpp:102 src/gui/editControls.cpp:532 +#: src/gui/sysConf.cpp:2148 src/gui/guiConst.cpp:232 src/gui/guiConst.cpp:581 +#: src/gui/insEdit.cpp:2028 src/gui/insEdit.cpp:5693 src/gui/insEdit.cpp:6885 +msgid "Speed" +msgstr "" + +#: src/gui/speed.cpp:41 +msgid "Base Tempo##TempoOrHz" +msgstr "" + +#: src/gui/speed.cpp:41 +msgid "Tick Rate##TempoOrHz" +msgstr "" + +#: src/gui/speed.cpp:46 +msgid "click to display tick rate" +msgstr "" + +#: src/gui/speed.cpp:48 +msgid "click to display base tempo" +msgstr "" + +#: src/gui/speed.cpp:80 +msgid "Groove" +msgstr "" + +#: src/gui/speed.cpp:87 +msgid "click for one speed" +msgstr "" + +#: src/gui/speed.cpp:90 +msgid "Speeds" +msgstr "" + +#: src/gui/speed.cpp:99 +msgid "click for groove pattern" +msgstr "" + +#: src/gui/speed.cpp:110 +msgid "click for two (alternating) speeds" +msgstr "" + +#: src/gui/speed.cpp:168 +msgid "Virtual Tempo" +msgstr "" + +#: src/gui/speed.cpp:177 +msgid "Numerator" +msgstr "" + +#: src/gui/speed.cpp:187 +msgid "Denominator (set to base tempo)" +msgstr "" + +#: src/gui/speed.cpp:193 +msgid "Divider" +msgstr "" + +#: src/gui/speed.cpp:208 +msgid "Highlight" +msgstr "" + +#: src/gui/speed.cpp:231 +msgid "Pattern Length" +msgstr "" + +#: src/gui/speed.cpp:245 +msgid "Song Length" +msgstr "" + +#: src/gui/channels.cpp:40 src/gui/editControls.cpp:446 +#: src/gui/guiConst.cpp:601 src/gui/gui.cpp:6280 +msgid "Channels" +msgstr "" + +#: src/gui/channels.cpp:49 +msgid "Pat" +msgstr "" + +#: src/gui/channels.cpp:51 src/gui/editControls.cpp:550 +msgid "Osc" +msgstr "" + +#: src/gui/channels.cpp:53 +msgid "Swap" +msgstr "" + +#: src/gui/channels.cpp:55 src/gui/userPresets.cpp:368 +#: src/gui/effectList.cpp:45 src/gui/subSongs.cpp:125 src/gui/settings.cpp:1060 +#: src/gui/settings.cpp:4383 src/gui/sampleEdit.cpp:195 src/gui/songInfo.cpp:40 +#: src/gui/sysManager.cpp:54 src/gui/insEdit.cpp:5288 +msgid "Name" +msgstr "" + +#: src/gui/channels.cpp:64 +msgid "Show in pattern" +msgstr "" + +#: src/gui/channels.cpp:71 +msgid "Show in per-channel oscilloscope" +msgstr "" + +#: src/gui/channels.cpp:82 +#, c-format +msgid "" +"%s #%d\n" +"(drag to swap channels)" +msgstr "" + +#: src/gui/commandPalette.cpp:51 src/gui/sysPicker.cpp:35 +#: src/gui/newSong.cpp:133 +msgid "Search..." +msgstr "" + +#: src/gui/commandPalette.cpp:54 +msgid "Search recent files..." +msgstr "" + +#: src/gui/commandPalette.cpp:57 +msgid "Search instruments..." +msgstr "" + +#: src/gui/commandPalette.cpp:60 +msgid "Search samples..." +msgstr "" + +#: src/gui/commandPalette.cpp:63 +msgid "Search instruments (to change to)..." +msgstr "" + +#: src/gui/commandPalette.cpp:66 +msgid "Search chip (to add)..." +msgstr "" + +#: src/gui/commandPalette.cpp:93 src/gui/commandPalette.cpp:167 +msgid "- None -" +msgstr "" + +#: src/gui/commandPalette.cpp:123 src/gui/commandPalette.cpp:179 +#: src/gui/commandPalette.cpp:241 +msgid "invalid command palette type" +msgstr "" + +#: src/gui/regView.cpp:30 src/gui/guiConst.cpp:604 +msgid "Register View" +msgstr "" + +#: src/gui/regView.cpp:38 +msgid "- no register pool available" +msgstr "" + +#: src/gui/log.cpp:25 src/gui/effectList.cpp:84 +msgid "ERROR" +msgstr "" + +#: src/gui/log.cpp:26 +msgid "warning" +msgstr "" + +#: src/gui/log.cpp:27 +msgid "info" +msgstr "" + +#: src/gui/log.cpp:28 src/gui/gui.cpp:4513 +msgid "debug" +msgstr "" + +#: src/gui/log.cpp:29 +msgid "trace" +msgstr "" + +#: src/gui/log.cpp:47 src/gui/settings.cpp:4243 src/gui/guiConst.cpp:605 +msgid "Log Viewer" +msgstr "" + +#: src/gui/log.cpp:48 src/gui/editControls.cpp:750 src/gui/editControls.cpp:883 +#: src/gui/editControls.cpp:1000 +msgid "Follow" +msgstr "" + +#: src/gui/log.cpp:50 src/gui/waveEdit.cpp:681 src/gui/insEdit.cpp:50 +msgid "Level" +msgstr "" + +#: src/gui/log.cpp:68 +msgid "time" +msgstr "" + +#: src/gui/log.cpp:70 +msgid "level" +msgstr "" + +#: src/gui/log.cpp:72 +msgid "message" +msgstr "" + +#: src/gui/pattern.cpp:433 src/gui/editControls.cpp:421 +#: src/gui/editControls.cpp:754 src/gui/editControls.cpp:887 +#: src/gui/editControls.cpp:1015 src/gui/settings.cpp:2344 +#: src/gui/settings.cpp:3297 src/gui/settings.cpp:4100 +#: src/gui/findReplace.cpp:794 src/gui/guiConst.cpp:582 src/gui/gui.cpp:5899 +msgid "Pattern" +msgstr "" + +#: src/gui/pattern.cpp:468 +msgid "there aren't any channels to show." +msgstr "" + +#: src/gui/pattern.cpp:492 +msgid "click for pattern options (effect columns/pattern names/visualizer)" +msgstr "" + +#: src/gui/pattern.cpp:504 +msgid "Options:" +msgstr "" + +#: src/gui/pattern.cpp:506 +msgid "Effect columns/collapse" +msgstr "" + +#: src/gui/pattern.cpp:507 +msgid "Pattern names" +msgstr "" + +#: src/gui/pattern.cpp:508 +msgid "Channel group hints" +msgstr "" + +#: src/gui/pattern.cpp:509 +msgid "Visualizer" +msgstr "" + +#: src/gui/pattern.cpp:517 +msgid "Channel status:" +msgstr "" + +#: src/gui/pattern.cpp:519 +msgid "No##_PCS0" +msgstr "" + +#: src/gui/pattern.cpp:522 +msgid "Yes##_PCS1" +msgstr "" + +#: src/gui/pattern.cpp:1420 src/gui/pattern.cpp:1452 +msgid "WARNING!!" +msgstr "" + +#: src/gui/pattern.cpp:1422 src/gui/pattern.cpp:1459 +msgid "this instrument cannot be previewed because" +msgstr "" + +#: src/gui/pattern.cpp:1423 src/gui/pattern.cpp:1466 +msgid "none of the chips can play it" +msgstr "" + +#: src/gui/pattern.cpp:1424 src/gui/pattern.cpp:1473 +msgid "your instrument is in peril!! be careful..." +msgstr "" + +#: src/gui/osc.cpp:169 src/gui/settings.cpp:3710 src/gui/settings.cpp:3937 +msgid "Oscilloscope" +msgstr "" + +#: src/gui/osc.cpp:176 +#, c-format +msgid "zoom: %.2fx (%.1fdB)" +msgstr "" + +#: src/gui/osc.cpp:187 +#, c-format +msgid "window size: %.1fms" +msgstr "" + +#: src/gui/osc.cpp:385 +msgid "(-Infinity)dB" +msgstr "" + +#: src/gui/debugWindow.cpp:66 src/gui/editControls.cpp:610 +msgid "Debug" +msgstr "" + +#: src/gui/debugWindow.cpp:663 +msgid "This is a language test." +msgstr "" + +#: src/gui/debugWindow.cpp:664 +msgid "This is another language test." +msgstr "" + +#: src/gui/debugWindow.cpp:720 +#, c-format +msgid "%d apple" +msgid_plural "%d apples" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/gui/chanOsc.cpp:32 +msgid "None (0%)" +msgstr "" + +#: src/gui/chanOsc.cpp:33 +msgid "None (50%)" +msgstr "" + +#: src/gui/chanOsc.cpp:34 +msgid "None (100%)" +msgstr "" + +#: src/gui/chanOsc.cpp:36 +msgid "Frequency" +msgstr "" + +#: src/gui/chanOsc.cpp:38 src/gui/settings.cpp:1667 src/gui/settings.cpp:3406 +#: src/gui/settings.cpp:4088 +msgid "Channel" +msgstr "" + +#: src/gui/chanOsc.cpp:39 +msgid "Brightness" +msgstr "" + +#: src/gui/chanOsc.cpp:41 +msgid "Note Trigger" +msgstr "" + +#: src/gui/chanOsc.cpp:45 +msgid "Off" +msgstr "" + +#: src/gui/chanOsc.cpp:46 +msgid "Mode 1" +msgstr "" + +#: src/gui/chanOsc.cpp:47 +msgid "Mode 2" +msgstr "" + +#: src/gui/chanOsc.cpp:48 +msgid "Mode 3" +msgstr "" + +#: src/gui/chanOsc.cpp:135 src/gui/guiConst.cpp:607 +msgid "Oscilloscope (per-channel)" +msgstr "" + +#: src/gui/chanOsc.cpp:143 +msgid "Columns" +msgstr "" + +#: src/gui/chanOsc.cpp:152 +msgid "Size (ms)" +msgstr "" + +#: src/gui/chanOsc.cpp:163 +msgid "Automatic columns" +msgstr "" + +#: src/gui/chanOsc.cpp:177 +msgid "Center waveform" +msgstr "" + +#: src/gui/chanOsc.cpp:183 +msgid "Randomize phase on note" +msgstr "" + +#: src/gui/chanOsc.cpp:189 +msgid "Amplitude" +msgstr "" + +#: src/gui/chanOsc.cpp:199 src/gui/settings.cpp:3747 +msgid "Line size" +msgstr "" + +#: src/gui/chanOsc.cpp:211 +msgid "Gradient" +msgstr "" + +#: src/gui/chanOsc.cpp:218 +msgid "error while creating gradient texture!" +msgstr "" + +#: src/gui/chanOsc.cpp:236 +msgid "error while updating gradient texture!" +msgstr "" + +#: src/gui/chanOsc.cpp:292 src/gui/chanOsc.cpp:348 src/gui/settings.cpp:3793 +msgid "Color" +msgstr "" + +#: src/gui/chanOsc.cpp:296 +msgid "Distance" +msgstr "" + +#: src/gui/chanOsc.cpp:305 +msgid "Spread" +msgstr "" + +#: src/gui/chanOsc.cpp:314 src/gui/userPresets.cpp:370 src/gui/subSongs.cpp:121 +#: src/gui/settings.cpp:2281 src/gui/sysManager.cpp:124 +msgid "Remove" +msgstr "" + +#: src/gui/chanOsc.cpp:338 src/gui/settings.cpp:3885 src/gui/settings.cpp:4165 +#: src/gui/settings.cpp:4192 src/gui/settings.cpp:4218 +msgid "Background" +msgstr "" + +#: src/gui/chanOsc.cpp:341 +msgid "X Axis##AxisX" +msgstr "" + +#: src/gui/chanOsc.cpp:342 +msgid "Y Axis##AxisY" +msgstr "" + +#: src/gui/chanOsc.cpp:352 +msgid "Text format:" +msgstr "" + +#: src/gui/chanOsc.cpp:358 +msgid "" +"format guide:\n" +"- %c: channel name\n" +"- %C: channel short name\n" +"- %d: channel number (starting from 0)\n" +"- %D: channel number (starting from 1)\n" +"- %n: channel note\n" +"- %i: instrument name\n" +"- %I: instrument number (decimal)\n" +"- %x: instrument number (hex)\n" +"- %s: chip name\n" +"- %p: chip part number\n" +"- %S: chip ID\n" +"- %v: volume (decimal)\n" +"- %V: volume (percentage)\n" +"- %b: volume (hex)\n" +"- %l: new line\n" +"- %%: percent sign" +msgstr "" + +#: src/gui/chanOsc.cpp:380 +msgid "Text color" +msgstr "" + +#: src/gui/chanOsc.cpp:382 src/gui/xyOsc.cpp:80 src/gui/settings.cpp:6672 +#: src/gui/tutorial.cpp:689 src/gui/gui.cpp:5639 src/gui/gui.cpp:6055 +#: src/gui/gui.cpp:6223 src/gui/gui.cpp:6322 src/gui/gui.cpp:6371 +msgid "OK" +msgstr "" + +#: src/gui/chanOsc.cpp:400 +msgid "creating chan osc work pool" +msgstr "" + +#: src/gui/chanOsc.cpp:429 +#, c-format +msgid "creating FFT plan for channel %d" +msgstr "" + +#: src/gui/chanOsc.cpp:436 +msgid "failed to create plan!" +msgstr "" + +#: src/gui/chanOsc.cpp:438 +msgid "failed to create inverse plan!" +msgstr "" + +#: src/gui/chanOsc.cpp:440 +msgid "failed to create FFT buffers" +msgstr "" + +#: src/gui/chanOsc.cpp:585 +msgid "Error!" +msgstr "" + +#: src/gui/editControls.cpp:47 src/gui/sampleEdit.cpp:1736 src/gui/gui.cpp:2733 +#: src/gui/insEdit.cpp:363 +msgid "cut" +msgstr "" + +#: src/gui/editControls.cpp:48 src/gui/sampleEdit.cpp:1740 src/gui/gui.cpp:2734 +#: src/gui/insEdit.cpp:7538 +msgid "copy" +msgstr "" + +#: src/gui/editControls.cpp:49 src/gui/sampleEdit.cpp:1744 src/gui/gui.cpp:2735 +#: src/gui/gui.cpp:2788 src/gui/insEdit.cpp:7543 +msgid "paste" +msgstr "" + +#: src/gui/editControls.cpp:51 +msgid "" +"select\n" +"all" +msgstr "" + +#: src/gui/editControls.cpp:52 +msgid "piano" +msgstr "" + +#: src/gui/editControls.cpp:53 src/gui/gui.cpp:4429 +msgid "undo" +msgstr "" + +#: src/gui/editControls.cpp:54 src/gui/gui.cpp:4430 +msgid "redo" +msgstr "" + +#: src/gui/editControls.cpp:57 +msgid "" +"paste\n" +"mix" +msgstr "" + +#: src/gui/editControls.cpp:58 +msgid "" +"paste\n" +"mix bg" +msgstr "" + +#: src/gui/editControls.cpp:59 +msgid "" +"paste\n" +"ins" +msgstr "" + +#: src/gui/editControls.cpp:60 +msgid "" +"paste\n" +"ins bg" +msgstr "" + +#: src/gui/editControls.cpp:61 +msgid "" +"paste\n" +"flood" +msgstr "" + +#: src/gui/editControls.cpp:62 +msgid "" +"paste\n" +"overflow" +msgstr "" + +#: src/gui/editControls.cpp:63 +msgid "" +"transpose\n" +"notes" +msgstr "" + +#: src/gui/editControls.cpp:64 +msgid "" +"transpose\n" +"values" +msgstr "" + +#: src/gui/editControls.cpp:67 +msgid "" +"change\n" +"ins" +msgstr "" + +#: src/gui/editControls.cpp:68 +msgid "" +"find/\n" +"replace" +msgstr "" + +#: src/gui/editControls.cpp:69 src/gui/gui.cpp:3063 +msgid "collapse" +msgstr "" + +#: src/gui/editControls.cpp:70 src/gui/gui.cpp:3064 +msgid "expand" +msgstr "" + +#: src/gui/editControls.cpp:71 src/gui/gui.cpp:2820 +msgid "flip" +msgstr "" + +#: src/gui/editControls.cpp:72 src/gui/insEdit.cpp:430 +msgid "invert" +msgstr "" + +#: src/gui/editControls.cpp:73 src/gui/gui.cpp:2800 src/gui/gui.cpp:2960 +msgid "interpolate" +msgstr "" + +#: src/gui/editControls.cpp:74 src/gui/gui.cpp:2812 src/gui/insEdit.cpp:7610 +msgid "scale" +msgstr "" + +#: src/gui/editControls.cpp:77 src/gui/gui.cpp:2804 +msgid "fade" +msgstr "" + +#: src/gui/editControls.cpp:78 src/gui/gui.cpp:2816 src/gui/insEdit.cpp:7639 +msgid "randomize" +msgstr "" + +#: src/gui/editControls.cpp:79 +msgid "opmask" +msgstr "" + +#: src/gui/editControls.cpp:80 +msgid "" +"scroll\n" +"mode" +msgstr "" + +#: src/gui/editControls.cpp:81 +msgid "" +"input\n" +"latch" +msgstr "" + +#: src/gui/editControls.cpp:82 +msgid "" +"set\n" +"latch" +msgstr "" + +#: src/gui/editControls.cpp:83 +msgid "" +"clear\n" +"latch" +msgstr "" + +#: src/gui/editControls.cpp:84 src/gui/findReplace.cpp:43 +#: src/gui/insEdit.cpp:7557 +msgid "clear" +msgstr "" + +#: src/gui/editControls.cpp:333 +msgid "Mobile Controls" +msgstr "" + +#: src/gui/editControls.cpp:408 +msgid "Mobile Menu" +msgstr "" + +#: src/gui/editControls.cpp:425 src/gui/editControls.cpp:752 +#: src/gui/editControls.cpp:885 src/gui/editControls.cpp:1007 +#: src/gui/settings.cpp:2485 src/gui/settings.cpp:3271 +#: src/gui/settings.cpp:3975 src/gui/orders.cpp:232 src/gui/guiConst.cpp:577 +#: src/gui/gui.cpp:5888 +msgid "Orders" +msgstr "" + +#: src/gui/editControls.cpp:429 src/gui/findReplace.cpp:669 +#: src/gui/findReplace.cpp:914 +msgid "Ins" +msgstr "" + +#: src/gui/editControls.cpp:442 src/gui/findReplace.cpp:788 +#: src/gui/guiConst.cpp:230 +msgid "Song" +msgstr "" + +#: src/gui/editControls.cpp:450 src/gui/sampleEdit.cpp:494 +msgid "Chips" +msgstr "" + +#: src/gui/editControls.cpp:458 src/gui/settings.cpp:2117 +#: src/gui/settings.cpp:3934 src/gui/settings.cpp:4018 +#: src/gui/compatFlags.cpp:319 +msgid "Other" +msgstr "" + +#: src/gui/editControls.cpp:487 src/gui/guiConst.cpp:531 +msgid "New" +msgstr "" + +#: src/gui/editControls.cpp:491 src/gui/doAction.cpp:38 src/gui/gui.cpp:4194 +msgid "Unsaved changes! Save changes before creating a new song?" +msgstr "" + +#: src/gui/editControls.cpp:507 +msgid "Save as..." +msgstr "" + +#: src/gui/editControls.cpp:516 src/gui/gui.cpp:1680 +msgid "Restore Backup" +msgstr "" + +#: src/gui/editControls.cpp:524 +msgid "Song Info" +msgstr "" + +#: src/gui/editControls.cpp:528 src/gui/subSongs.cpp:17 +#: src/gui/guiConst.cpp:608 +msgid "Subsongs" +msgstr "" + +#: src/gui/editControls.cpp:541 +msgid "Channels here..." +msgstr "" + +#: src/gui/editControls.cpp:544 +msgid "Chips here..." +msgstr "" + +#: src/gui/editControls.cpp:547 +msgid "What the hell..." +msgstr "" + +#: src/gui/editControls.cpp:554 +msgid "ChanOsc" +msgstr "" + +#: src/gui/editControls.cpp:558 +msgid "RegView" +msgstr "" + +#: src/gui/editControls.cpp:562 +msgid "Stats" +msgstr "" + +#: src/gui/editControls.cpp:566 src/gui/guiConst.cpp:611 src/gui/grooves.cpp:35 +msgid "Grooves" +msgstr "" + +#: src/gui/editControls.cpp:569 +msgid "Compat Flags" +msgstr "" + +#: src/gui/editControls.cpp:573 +msgid "XYOsc" +msgstr "" + +#: src/gui/editControls.cpp:577 +msgid "Meter" +msgstr "" + +#: src/gui/editControls.cpp:581 +msgid "Memory" +msgstr "" + +#: src/gui/editControls.cpp:585 +msgid "CV" +msgstr "" + +#: src/gui/editControls.cpp:589 +msgid "Presets" +msgstr "" + +#: src/gui/editControls.cpp:593 +msgid "PatManager" +msgstr "" + +#: src/gui/editControls.cpp:599 src/gui/guiConst.cpp:564 +msgid "Panic" +msgstr "" + +#: src/gui/editControls.cpp:601 src/gui/settings.cpp:560 +#: src/gui/guiConst.cpp:589 src/gui/guiConst.cpp:591 src/gui/gui.cpp:4439 +msgid "Settings" +msgstr "" + +#: src/gui/editControls.cpp:606 +msgid "Log" +msgstr "" + +#: src/gui/editControls.cpp:614 src/gui/guiConst.cpp:587 +msgid "About" +msgstr "" + +#: src/gui/editControls.cpp:619 +msgid "Switch to Desktop Mode" +msgstr "" + +#: src/gui/editControls.cpp:673 src/gui/editControls.cpp:784 +#: src/gui/editControls.cpp:904 +msgid "Play/Edit Controls" +msgstr "" + +#: src/gui/editControls.cpp:681 src/gui/editControls.cpp:842 +#: src/gui/editControls.cpp:959 src/gui/editControls.cpp:1125 +msgid "Octave" +msgstr "" + +#: src/gui/editControls.cpp:698 src/gui/editControls.cpp:857 +msgid "Coarse Step" +msgstr "" + +#: src/gui/editControls.cpp:698 src/gui/editControls.cpp:857 +msgid "Edit Step" +msgstr "" + +#: src/gui/editControls.cpp:731 src/gui/editControls.cpp:797 +#: src/gui/editControls.cpp:911 src/gui/editControls.cpp:1048 +#: src/gui/guiConst.cpp:545 +msgid "Play" +msgstr "" + +#: src/gui/editControls.cpp:739 src/gui/editControls.cpp:789 +#: src/gui/editControls.cpp:918 src/gui/editControls.cpp:1040 +#: src/gui/guiConst.cpp:546 +msgid "Stop" +msgstr "" + +#: src/gui/editControls.cpp:742 src/gui/editControls.cpp:826 +#: src/gui/editControls.cpp:943 src/gui/editControls.cpp:1082 +#: src/gui/gui.cpp:4426 +msgid "Edit" +msgstr "" + +#: src/gui/editControls.cpp:757 src/gui/editControls.cpp:816 +#: src/gui/editControls.cpp:934 src/gui/editControls.cpp:1104 +msgid "Repeat pattern" +msgstr "" + +#: src/gui/editControls.cpp:766 src/gui/editControls.cpp:806 +#: src/gui/editControls.cpp:925 src/gui/editControls.cpp:1073 +msgid "Step one row" +msgstr "" + +#: src/gui/editControls.cpp:771 src/gui/editControls.cpp:891 +#: src/gui/editControls.cpp:1020 src/gui/editControls.cpp:1110 +msgid "Poly##PolyInput" +msgstr "" + +#: src/gui/editControls.cpp:771 src/gui/editControls.cpp:891 +#: src/gui/editControls.cpp:1020 src/gui/editControls.cpp:1110 +msgid "Mono##PolyInput" +msgstr "" + +#: src/gui/editControls.cpp:776 src/gui/editControls.cpp:896 +#: src/gui/editControls.cpp:1025 src/gui/editControls.cpp:1115 +msgid "Polyphony" +msgstr "" + +#: src/gui/editControls.cpp:957 +msgid "Oct." +msgstr "" + +#: src/gui/editControls.cpp:974 src/gui/editControls.cpp:1142 +msgid "Coarse" +msgstr "" + +#: src/gui/editControls.cpp:974 src/gui/editControls.cpp:1142 +msgid "Step" +msgstr "" + +#: src/gui/editControls.cpp:998 +msgid "Foll." +msgstr "" + +#: src/gui/editControls.cpp:1003 +msgid "Ord##FollowOrders" +msgstr "" + +#: src/gui/editControls.cpp:1011 +msgid "Pat##FollowPattern" +msgstr "" + +#: src/gui/editControls.cpp:1033 +msgid "Play Controls" +msgstr "" + +#: src/gui/editControls.cpp:1057 +msgid "Play from the beginning of this pattern" +msgstr "" + +#: src/gui/editControls.cpp:1065 +msgid "Repeat from the beginning of this pattern" +msgstr "" + +#: src/gui/editControls.cpp:1122 src/gui/guiConst.cpp:576 +msgid "Edit Controls" +msgstr "" + +#: src/gui/editControls.cpp:1169 src/gui/guiConst.cpp:560 +msgid "Follow orders" +msgstr "" + +#: src/gui/editControls.cpp:1170 src/gui/guiConst.cpp:561 +msgid "Follow pattern" +msgstr "" + +#: src/gui/songNotes.cpp:32 src/gui/guiConst.cpp:600 +msgid "Song Comments" +msgstr "" + +#: src/gui/util.cpp:93 +msgid "" +msgstr "" + +#: src/gui/util.cpp:97 +msgid "Ctrl-" +msgstr "" + +#: src/gui/util.cpp:99 +msgid "Alt-" +msgstr "" + +#: src/gui/util.cpp:100 +msgid "Shift-" +msgstr "" + +#: src/gui/stats.cpp:31 src/gui/guiConst.cpp:597 +msgid "Statistics" +msgstr "" + +#: src/gui/stats.cpp:36 +msgid "Audio load" +msgstr "" + +#: src/gui/xyOsc.cpp:40 src/gui/guiConst.cpp:612 +msgid "Oscilloscope (X-Y)" +msgstr "" + +#: src/gui/xyOsc.cpp:45 +msgid "X Channel" +msgstr "" + +#: src/gui/xyOsc.cpp:51 +msgid "Invert##X" +msgstr "" + +#: src/gui/xyOsc.cpp:52 +msgid "Y Channel" +msgstr "" + +#: src/gui/xyOsc.cpp:58 +msgid "Invert##Y" +msgstr "" + +#: src/gui/xyOsc.cpp:59 src/gui/sampleEdit.cpp:1353 +msgid "Zoom" +msgstr "" + +#: src/gui/xyOsc.cpp:71 +msgid "Decay Time (ms)" +msgstr "" + +#: src/gui/xyOsc.cpp:74 +msgid "Intensity" +msgstr "" + +#: src/gui/xyOsc.cpp:77 +msgid "Line Thickness" +msgstr "" + +#: src/gui/xyOsc.cpp:213 +msgid "(-Infinity)dB,(-Infinity)dB" +msgstr "" + +#: src/gui/xyOsc.cpp:215 +#, c-format +msgid "(-Infinity)dB,%.1fdB" +msgstr "" + +#: src/gui/xyOsc.cpp:217 +#, c-format +msgid "%.1fdB,(-Infinity)dB" +msgstr "" + +#: src/gui/xyOsc.cpp:219 +#, c-format +msgid "%.1fdB,%.1fdB" +msgstr "" + +#: src/gui/sysConf.cpp:49 src/gui/sysConf.cpp:121 src/gui/sysConf.cpp:486 +#: src/gui/sysConf.cpp:604 src/gui/sysConf.cpp:647 src/gui/sysConf.cpp:684 +#: src/gui/sysConf.cpp:843 src/gui/sysConf.cpp:1098 src/gui/sysConf.cpp:1181 +#: src/gui/sysConf.cpp:1220 src/gui/sysConf.cpp:1294 src/gui/sysConf.cpp:1380 +#: src/gui/sysConf.cpp:1444 src/gui/sysConf.cpp:1482 src/gui/sysConf.cpp:1572 +#: src/gui/sysConf.cpp:1668 src/gui/sysConf.cpp:1716 src/gui/sysConf.cpp:1757 +#: src/gui/sysConf.cpp:1810 src/gui/sysConf.cpp:2284 src/gui/sysConf.cpp:2307 +msgid "Clock rate:" +msgstr "" + +#: src/gui/sysConf.cpp:73 src/gui/sysConf.cpp:152 src/gui/sysConf.cpp:911 +#: src/gui/sysConf.cpp:1459 src/gui/sysConf.cpp:1783 +msgid "Chip type:" +msgstr "" + +#: src/gui/sysConf.cpp:75 +msgid "YM3438 (9-bit DAC)" +msgstr "" + +#: src/gui/sysConf.cpp:79 +msgid "YM2612 (9-bit DAC with distortion)" +msgstr "" + +#: src/gui/sysConf.cpp:83 +msgid "YMF276 (external DAC)" +msgstr "" + +#: src/gui/sysConf.cpp:90 src/gui/sysConf.cpp:804 src/gui/sysConf.cpp:1350 +#: src/gui/sysConf.cpp:1420 +msgid "Disable ExtCh FM macros (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:93 src/gui/sysConf.cpp:807 src/gui/sysConf.cpp:1353 +#: src/gui/sysConf.cpp:1423 +msgid "Ins change in ExtCh operator 2-4 affects FB (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:99 +msgid "Modified sine wave (joke)" +msgstr "" + +#: src/gui/sysConf.cpp:123 src/gui/sysConf.cpp:1296 src/gui/sysConf.cpp:1718 +#: src/gui/sysConf.cpp:2286 +msgid "3.58MHz (NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:127 +msgid "3.55MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:131 +msgid "4MHz (BBC Micro)" +msgstr "" + +#: src/gui/sysConf.cpp:135 +msgid "1.79MHz (Half NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:139 +msgid "3MHz (Exed Exes)" +msgstr "" + +#: src/gui/sysConf.cpp:143 +msgid "2MHz (Sega System 1)" +msgstr "" + +#: src/gui/sysConf.cpp:147 +msgid "447KHz (TI-99/4A)" +msgstr "" + +#: src/gui/sysConf.cpp:154 +msgid "Sega VDP/Master System" +msgstr "" + +#: src/gui/sysConf.cpp:162 +msgid "TI SN76489 with Atari-like short noise" +msgstr "" + +#: src/gui/sysConf.cpp:166 +msgid "Game Gear" +msgstr "" + +#: src/gui/sysConf.cpp:170 +msgid "TI SN76489A" +msgstr "" + +#: src/gui/sysConf.cpp:174 +msgid "TI SN76496" +msgstr "" + +#: src/gui/sysConf.cpp:178 +msgid "NCR 8496" +msgstr "" + +#: src/gui/sysConf.cpp:182 +msgid "Tandy PSSJ 3-voice sound" +msgstr "" + +#: src/gui/sysConf.cpp:186 +msgid "TI SN94624" +msgstr "" + +#: src/gui/sysConf.cpp:190 +msgid "TI SN76494" +msgstr "" + +#: src/gui/sysConf.cpp:196 +msgid "Disable noise period change phase reset" +msgstr "" + +#: src/gui/sysConf.cpp:200 src/gui/sysConf.cpp:2190 +msgid "Disable easy period to note mapping on upper octaves" +msgstr "" + +#: src/gui/sysConf.cpp:219 src/gui/sysConf.cpp:583 +msgid "Pseudo-PAL" +msgstr "" + +#: src/gui/sysConf.cpp:222 src/gui/sysConf.cpp:342 +msgid "Disable anti-click" +msgstr "" + +#: src/gui/sysConf.cpp:225 src/gui/sysConf.cpp:345 +msgid "Chip revision:" +msgstr "" + +#: src/gui/sysConf.cpp:227 +msgid "HuC6280 (original)" +msgstr "" + +#: src/gui/sysConf.cpp:231 +msgid "HuC6280A (SuperGrafx)" +msgstr "" + +#: src/gui/sysConf.cpp:257 +msgid "CPU rate:" +msgstr "" + +#: src/gui/sysConf.cpp:259 +msgid "6.18MHz (NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:263 +msgid "5.95MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:268 +msgid "Sample memory:" +msgstr "" + +#: src/gui/sysConf.cpp:270 +msgid "8K (rev A/B/E)" +msgstr "" + +#: src/gui/sysConf.cpp:274 +msgid "64K (rev D/F)" +msgstr "" + +#: src/gui/sysConf.cpp:279 +msgid "DAC resolution:" +msgstr "" + +#: src/gui/sysConf.cpp:281 +msgid "16-bit (rev A/B/D/F)" +msgstr "" + +#: src/gui/sysConf.cpp:285 +msgid "8-bit + TDM (rev C/E)" +msgstr "" + +#: src/gui/sysConf.cpp:290 src/gui/sysConf.cpp:1931 +msgid "Enable echo" +msgstr "" + +#: src/gui/sysConf.cpp:293 +msgid "Swap echo channels" +msgstr "" + +#: src/gui/sysConf.cpp:296 src/gui/sysConf.cpp:1151 +msgid "Echo delay:" +msgstr "" + +#: src/gui/sysConf.cpp:302 +msgid "Echo resolution:" +msgstr "" + +#: src/gui/sysConf.cpp:308 src/gui/sysConf.cpp:1159 +msgid "Echo feedback:" +msgstr "" + +#: src/gui/sysConf.cpp:314 src/gui/sysConf.cpp:1967 +msgid "Echo volume:" +msgstr "" + +#: src/gui/sysConf.cpp:347 +msgid "Original (DMG)" +msgstr "" + +#: src/gui/sysConf.cpp:351 +msgid "Game Boy Color (rev C)" +msgstr "" + +#: src/gui/sysConf.cpp:355 +msgid "Game Boy Color (rev E)" +msgstr "" + +#: src/gui/sysConf.cpp:359 +msgid "Game Boy Advance" +msgstr "" + +#: src/gui/sysConf.cpp:364 +msgid "Wave channel orientation:" +msgstr "" + +#: src/gui/sysConf.cpp:367 src/gui/compatFlags.cpp:298 src/gui/gui.cpp:6067 +#: src/gui/insEdit.cpp:217 src/gui/insEdit.cpp:231 +msgid "Normal" +msgstr "" + +#: src/gui/sysConf.cpp:371 +msgid "Inverted" +msgstr "" + +#: src/gui/sysConf.cpp:378 +msgid "Exact data (inverted)" +msgstr "" + +#: src/gui/sysConf.cpp:382 +msgid "Exact output (normal)" +msgstr "" + +#: src/gui/sysConf.cpp:388 +msgid "" +"Pretty please one more compat flag when I use arpeggio and my sound length" +msgstr "" + +#: src/gui/sysConf.cpp:405 src/gui/sysConf.cpp:438 +msgid "DAC bit depth (reduces output rate):" +msgstr "" + +#: src/gui/sysConf.cpp:426 src/gui/sysConf.cpp:1268 src/gui/sysConf.cpp:1919 +msgid "Volume scale:" +msgstr "" + +#: src/gui/sysConf.cpp:432 +msgid "Mix buffers (allows longer echo delay):" +msgstr "" + +#: src/gui/sysConf.cpp:444 +msgid "Channel limit:" +msgstr "" + +#: src/gui/sysConf.cpp:450 +msgid "Sample rate:" +msgstr "" + +#: src/gui/sysConf.cpp:460 +#, c-format +msgid "Actual sample rate: %d Hz" +msgstr "" + +#: src/gui/sysConf.cpp:462 +#, c-format +msgid "Max mixer CPU usage: %.0f%%" +msgstr "" + +#: src/gui/sysConf.cpp:488 +msgid "NTSC (3.58MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:492 src/gui/sysConf.cpp:557 +msgid "PAL (3.55MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:496 +msgid "Arcade (4MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:500 +msgid "Half NTSC (1.79MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:506 +msgid "Patch set:" +msgstr "" + +#: src/gui/sysConf.cpp:528 +msgid "Ignore top/hi-hat frequency changes" +msgstr "" + +#: src/gui/sysConf.cpp:531 +msgid "Apply fixed frequency to all drums at once" +msgstr "" + +#: src/gui/sysConf.cpp:553 +msgid "NTSC/X16 (3.58MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:561 +msgid "X1/X68000 (4MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:567 src/gui/sysConf.cpp:587 +msgid "Broken pitch macro/slides (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:607 src/gui/sysConf.cpp:650 src/gui/sysConf.cpp:1222 +#: src/gui/sysConf.cpp:2310 +msgid "NTSC (1.79MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:611 src/gui/sysConf.cpp:654 src/gui/sysConf.cpp:1226 +msgid "PAL (1.67MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:615 src/gui/sysConf.cpp:658 src/gui/sysConf.cpp:1230 +msgid "Dendy (1.77MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:621 +msgid "DPCM channel mode:" +msgstr "" + +#: src/gui/sysConf.cpp:624 +msgid "DPCM (muffled samples; low CPU usage)" +msgstr "" + +#: src/gui/sysConf.cpp:628 +msgid "PCM (crisp samples; high CPU usage)" +msgstr "" + +#: src/gui/sysConf.cpp:687 +msgid "NTSC (1.02MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:691 +msgid "PAL (0.99MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:695 +msgid "SSI 2001 (0.89MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:701 src/gui/sysConf.cpp:2320 +msgid "Global parameter priority:" +msgstr "" + +#: src/gui/sysConf.cpp:704 src/gui/sysConf.cpp:2323 +msgid "Left to right" +msgstr "" + +#: src/gui/sysConf.cpp:708 src/gui/sysConf.cpp:2327 +msgid "Last used channel" +msgstr "" + +#: src/gui/sysConf.cpp:714 +msgid "Hard reset envelope:" +msgstr "" + +#: src/gui/sysConf.cpp:716 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:1920 +#: src/gui/insEdit.cpp:6955 src/gui/insEdit.cpp:7481 +msgid "Attack" +msgstr "" + +#: src/gui/sysConf.cpp:721 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:1960 +#: src/gui/insEdit.cpp:6956 src/gui/insEdit.cpp:7482 +msgid "Decay" +msgstr "" + +#: src/gui/sysConf.cpp:726 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:1929 +#: src/gui/insEdit.cpp:6957 src/gui/insEdit.cpp:7483 +msgid "Sustain" +msgstr "" + +#: src/gui/sysConf.cpp:731 src/gui/settings.cpp:3987 src/gui/insEdit.cpp:50 +#: src/gui/insEdit.cpp:604 src/gui/insEdit.cpp:1983 src/gui/insEdit.cpp:6958 +#: src/gui/insEdit.cpp:7484 +msgid "Release" +msgstr "" + +#: src/gui/sysConf.cpp:737 +msgid "Envelope reset time:" +msgstr "" + +#: src/gui/sysConf.cpp:747 +msgid "" +"- 0 disables envelope reset. not recommended!\n" +"- 1 may trigger SID envelope bugs.\n" +"- values that are too high may result in notes being skipped." +msgstr "" + +#: src/gui/sysConf.cpp:749 +msgid "Disable 1Exy env update (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:753 +msgid "Relative duty and cutoff macros are coarse (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:757 +msgid "Cutoff macro race conditions (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:793 +msgid "8MHz (Neo Geo MVS)" +msgstr "" + +#: src/gui/sysConf.cpp:797 +msgid "8.06MHz (Neo Geo AES)" +msgstr "" + +#: src/gui/sysConf.cpp:812 src/gui/sysConf.cpp:1337 src/gui/sysConf.cpp:1407 +msgid "SSG Volume" +msgstr "" + +#: src/gui/sysConf.cpp:818 src/gui/sysConf.cpp:1413 +msgid "FM/ADPCM Volume" +msgstr "" + +#: src/gui/sysConf.cpp:845 +msgid "1.79MHz (ZX Spectrum NTSC/MSX)" +msgstr "" + +#: src/gui/sysConf.cpp:849 +msgid "1.77MHz (ZX Spectrum PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:853 +msgid "0.83MHz (Pre-divided Sunsoft 5B on PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:857 +msgid "0.89MHz (Pre-divided Sunsoft 5B)" +msgstr "" + +#: src/gui/sysConf.cpp:861 +msgid "1MHz (Amstrad CPC)" +msgstr "" + +#: src/gui/sysConf.cpp:865 +msgid "1.10MHz (Gamate/VIC-20 PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:869 +msgid "1.25MHz (Mag Max)" +msgstr "" + +#: src/gui/sysConf.cpp:873 +msgid "1.5MHz (Vectrex)" +msgstr "" + +#: src/gui/sysConf.cpp:877 +msgid "1.536MHz (Kyugo)" +msgstr "" + +#: src/gui/sysConf.cpp:881 +msgid "1.67MHz (?)" +msgstr "" + +#: src/gui/sysConf.cpp:885 +msgid "1.75MHz (ZX Spectrum 48K)" +msgstr "" + +#: src/gui/sysConf.cpp:889 +msgid "1.99MHz (PC-88)" +msgstr "" + +#: src/gui/sysConf.cpp:893 +msgid "2MHz (Atari ST/Sharp X1)" +msgstr "" + +#: src/gui/sysConf.cpp:897 +msgid "2^21Hz (Game Boy)" +msgstr "" + +#: src/gui/sysConf.cpp:901 +msgid "3.58MHz (Darky)" +msgstr "" + +#: src/gui/sysConf.cpp:905 +msgid "3.6MHz (Darky)" +msgstr "" + +#: src/gui/sysConf.cpp:917 +msgid "YM2149(F)" +msgstr "" + +#: src/gui/sysConf.cpp:921 +msgid "Sunsoft 5B" +msgstr "" + +#: src/gui/sysConf.cpp:925 +msgid "AY-3-8914" +msgstr "" + +#: src/gui/sysConf.cpp:931 +msgid "note: AY-3-8914 is not supported by the VGM format!" +msgstr "" + +#: src/gui/sysConf.cpp:935 +msgid "Stereo##_AY_STEREO" +msgstr "" + +#: src/gui/sysConf.cpp:940 +msgid "Separation" +msgstr "" + +#: src/gui/sysConf.cpp:949 +msgid "Half Clock divider##_AY_CLKSEL" +msgstr "" + +#: src/gui/sysConf.cpp:971 +msgid "SAM Coupé (8MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:975 +msgid "NTSC (7.15MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:979 +msgid "PAL (7.09MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:999 +msgid "Stereo separation:" +msgstr "" + +#: src/gui/sysConf.cpp:1006 src/gui/sysConf.cpp:2412 +msgid "Model:" +msgstr "" + +#: src/gui/sysConf.cpp:1008 +msgid "Amiga 500 (OCS)" +msgstr "" + +#: src/gui/sysConf.cpp:1012 +msgid "Amiga 1200 (AGA)" +msgstr "" + +#: src/gui/sysConf.cpp:1018 +msgid "Chip memory:" +msgstr "" + +#: src/gui/sysConf.cpp:1020 +msgid "2MB (ECS/AGA max)" +msgstr "" + +#: src/gui/sysConf.cpp:1030 +msgid "512KB (OCS max)" +msgstr "" + +#: src/gui/sysConf.cpp:1043 src/gui/sysConf.cpp:1081 src/gui/sysConf.cpp:2395 +#: src/gui/sysConf.cpp:2449 +msgid "PAL" +msgstr "" + +#: src/gui/sysConf.cpp:1046 +msgid "Bypass frequency limits" +msgstr "" + +#: src/gui/sysConf.cpp:1065 +msgid "Mixing mode:" +msgstr "" + +#: src/gui/sysConf.cpp:1067 src/gui/settings.cpp:3724 +msgid "Mono" +msgstr "" + +#: src/gui/sysConf.cpp:1071 +msgid "Mono (no distortion)" +msgstr "" + +#: src/gui/sysConf.cpp:1075 src/gui/sysConf.cpp:1197 src/gui/sysConf.cpp:1864 +#: src/gui/sysConf.cpp:2204 +msgid "Stereo" +msgstr "" + +#: src/gui/sysConf.cpp:1100 +msgid "1.19MHz (PC)" +msgstr "" + +#: src/gui/sysConf.cpp:1104 +msgid "1.99MHz (PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1108 +msgid "2.46MHz (PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1114 +msgid "Speaker type:" +msgstr "" + +#: src/gui/sysConf.cpp:1116 +msgid "Unfiltered" +msgstr "" + +#: src/gui/sysConf.cpp:1120 +msgid "Cone" +msgstr "" + +#: src/gui/sysConf.cpp:1124 +msgid "Piezo" +msgstr "" + +#: src/gui/sysConf.cpp:1128 +msgid "Use system beeper (Linux only!)" +msgstr "" + +#: src/gui/sysConf.cpp:1134 +msgid "Reset phase on frequency change" +msgstr "" + +#: src/gui/sysConf.cpp:1183 +msgid "16MHz (Seta 1)" +msgstr "" + +#: src/gui/sysConf.cpp:1187 +msgid "16.67MHz (Seta 2)" +msgstr "" + +#: src/gui/sysConf.cpp:1191 src/gui/sysConf.cpp:1759 +msgid "14.32MHz (NTSC)" +msgstr "" + +#: src/gui/sysConf.cpp:1201 +msgid "Bankswitched (Seta 2)" +msgstr "" + +#: src/gui/sysConf.cpp:1235 src/gui/sysConf.cpp:1261 +msgid "Initial channel limit:" +msgstr "" + +#: src/gui/sysConf.cpp:1241 src/gui/sysConf.cpp:2398 +msgid "Disable hissing" +msgstr "" + +#: src/gui/sysConf.cpp:1244 +msgid "Scale frequency to wave length" +msgstr "" + +#: src/gui/sysConf.cpp:1300 src/gui/sysConf.cpp:1722 +msgid "3.54MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:1304 src/gui/sysConf.cpp:1726 src/gui/sysConf.cpp:2290 +msgid "4MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1308 src/gui/sysConf.cpp:1730 +msgid "3MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1312 src/gui/sysConf.cpp:1734 +msgid "3.9936MHz (PC-88/PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1316 +msgid "1.5MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1321 src/gui/sysConf.cpp:1391 src/gui/sysConf.cpp:1639 +#: src/gui/sysConf.cpp:1852 +msgid "Output rate:" +msgstr "" + +#: src/gui/sysConf.cpp:1323 src/gui/sysConf.cpp:1397 +msgid "FM: clock / 72, SSG: clock / 16" +msgstr "" + +#: src/gui/sysConf.cpp:1327 +msgid "FM: clock / 36, SSG: clock / 8" +msgstr "" + +#: src/gui/sysConf.cpp:1331 +msgid "FM: clock / 24, SSG: clock / 4" +msgstr "" + +#: src/gui/sysConf.cpp:1343 +msgid "FM Volume" +msgstr "" + +#: src/gui/sysConf.cpp:1382 +msgid "8MHz (Arcade)" +msgstr "" + +#: src/gui/sysConf.cpp:1386 +msgid "7.987MHz (PC-88/PC-98)" +msgstr "" + +#: src/gui/sysConf.cpp:1393 +msgid "FM: clock / 144, SSG: clock / 32" +msgstr "" + +#: src/gui/sysConf.cpp:1401 +msgid "FM: clock / 48, SSG: clock / 8" +msgstr "" + +#: src/gui/sysConf.cpp:1446 +msgid "8MHz (FM Towns)" +msgstr "" + +#: src/gui/sysConf.cpp:1450 +msgid "10MHz (Sega System 18)" +msgstr "" + +#: src/gui/sysConf.cpp:1454 +msgid "12.5MHz (Sega CD/System 32)" +msgstr "" + +#: src/gui/sysConf.cpp:1461 +msgid "RF5C68 (10-bit output)" +msgstr "" + +#: src/gui/sysConf.cpp:1465 +msgid "RF5C164 (16-bit output)" +msgstr "" + +#: src/gui/sysConf.cpp:1520 +msgid "Sample rate table:" +msgstr "" + +#: src/gui/sysConf.cpp:1524 +msgid "divider \\ clock" +msgstr "" + +#: src/gui/sysConf.cpp:1526 +msgid "full" +msgstr "" + +#: src/gui/sysConf.cpp:1528 +msgid "half" +msgstr "" + +#: src/gui/sysConf.cpp:1641 +msgid "clock / 132" +msgstr "" + +#: src/gui/sysConf.cpp:1645 +msgid "clock / 165" +msgstr "" + +#: src/gui/sysConf.cpp:1651 +msgid "Bankswitched (NMK112)" +msgstr "" + +#: src/gui/sysConf.cpp:1670 +msgid "1.79MHz (NTSC/MSX)" +msgstr "" + +#: src/gui/sysConf.cpp:1674 +msgid "1.77MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:1678 +msgid "1.5MHz (Arcade)" +msgstr "" + +#: src/gui/sysConf.cpp:1682 +msgid "2MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1697 +msgid "Consistent frequency across all duties" +msgstr "" + +#: src/gui/sysConf.cpp:1704 +msgid "note: only works for an initial LFSR value of 0!" +msgstr "" + +#: src/gui/sysConf.cpp:1738 +msgid "3.5MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1763 +msgid "14.19MHz (PAL)" +msgstr "" + +#: src/gui/sysConf.cpp:1767 +msgid "14MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1771 +msgid "16MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1775 +msgid "15MHz" +msgstr "" + +#: src/gui/sysConf.cpp:1779 +msgid "33.8688MHz (OPL3-L)" +msgstr "" + +#: src/gui/sysConf.cpp:1784 +msgid "OPL3 (YMF262)" +msgstr "" + +#: src/gui/sysConf.cpp:1788 +msgid "OPL3-L (YMF289B)" +msgstr "" + +#: src/gui/sysConf.cpp:1794 +msgid "Compatible panning (0800)" +msgstr "" + +#: src/gui/sysConf.cpp:1858 +msgid "Output bit depth:" +msgstr "" + +#: src/gui/sysConf.cpp:1868 +msgid "Interpolation:" +msgstr "" + +#: src/gui/sysConf.cpp:1874 src/gui/waveEdit.cpp:38 +msgid "Linear" +msgstr "" + +#: src/gui/sysConf.cpp:1878 src/gui/waveEdit.cpp:40 +msgid "Cubic" +msgstr "" + +#: src/gui/sysConf.cpp:1882 +msgid "Sinc" +msgstr "" + +#: src/gui/sysConf.cpp:1920 +msgid "Left##VolScaleL" +msgstr "" + +#: src/gui/sysConf.cpp:1925 +msgid "Right##VolScaleL" +msgstr "" + +#: src/gui/sysConf.cpp:1935 +msgid "Initial echo state:" +msgstr "" + +#: src/gui/sysConf.cpp:1955 +msgid "Delay##EchoDelay" +msgstr "" + +#: src/gui/sysConf.cpp:1961 +msgid "Feedback##EchoFeedback" +msgstr "" + +#: src/gui/sysConf.cpp:1968 +msgid "Left##EchoVolL" +msgstr "" + +#: src/gui/sysConf.cpp:1973 +msgid "Right##EchoVolL" +msgstr "" + +#: src/gui/sysConf.cpp:1979 +msgid "Echo filter:" +msgstr "" + +#: src/gui/sysConf.cpp:1989 +msgid "Hex##SNESFHex" +msgstr "" + +#: src/gui/sysConf.cpp:1989 +msgid "Dec##SNESFHex" +msgstr "" + +#: src/gui/sysConf.cpp:2031 +#, c-format +msgid "sum: %d" +msgstr "" + +#: src/gui/sysConf.cpp:2086 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:63 +#: src/gui/insEdit.cpp:75 +msgid "Detune" +msgstr "" + +#: src/gui/sysConf.cpp:2092 +msgid "Capacitor values (nF):" +msgstr "" + +#: src/gui/sysConf.cpp:2102 +msgid "Initial part volume (channel 1-4):" +msgstr "" + +#: src/gui/sysConf.cpp:2112 +msgid "Initial part volume (channel 5-8):" +msgstr "" + +#: src/gui/sysConf.cpp:2122 +msgid "Envelope mode (channel 1-4):" +msgstr "" + +#: src/gui/sysConf.cpp:2124 +msgid "Capacitor (attack/decay)##EM00" +msgstr "" + +#: src/gui/sysConf.cpp:2128 +msgid "External (volume macro)##EM01" +msgstr "" + +#: src/gui/sysConf.cpp:2134 +msgid "Envelope mode (channel 5-8):" +msgstr "" + +#: src/gui/sysConf.cpp:2136 +msgid "Capacitor (attack/decay)##EM10" +msgstr "" + +#: src/gui/sysConf.cpp:2140 +msgid "External (volume macro)##EM11" +msgstr "" + +#: src/gui/sysConf.cpp:2146 +msgid "Global vibrato:" +msgstr "" + +#: src/gui/sysConf.cpp:2153 +msgid "Depth" +msgstr "" + +#: src/gui/sysConf.cpp:2219 src/gui/sysConf.cpp:2373 +msgid "Waveform storage mode:" +msgstr "" + +#: src/gui/sysConf.cpp:2221 +msgid "RAM" +msgstr "" + +#: src/gui/sysConf.cpp:2225 +msgid "ROM (up to 8 waves)" +msgstr "" + +#: src/gui/sysConf.cpp:2241 +msgid "Compatible noise frequencies" +msgstr "" + +#: src/gui/sysConf.cpp:2256 +msgid "Legacy slides and pitch (compatibility)" +msgstr "" + +#: src/gui/sysConf.cpp:2314 +msgid "PAL (1.77MHz)" +msgstr "" + +#: src/gui/sysConf.cpp:2344 +msgid "Banking style:" +msgstr "" + +#: src/gui/sysConf.cpp:2346 +msgid "Namco System 2 (2MB)" +msgstr "" + +#: src/gui/sysConf.cpp:2351 +msgid "Namco System 21 (4MB)" +msgstr "" + +#: src/gui/sysConf.cpp:2356 +msgid "Raw (16MB; no VGM export!)" +msgstr "" + +#: src/gui/sysConf.cpp:2375 +msgid "Dynamic (unconfirmed)" +msgstr "" + +#: src/gui/sysConf.cpp:2379 +msgid "Static (up to 5 waves)" +msgstr "" + +#: src/gui/sysConf.cpp:2414 +msgid "DS (4MB RAM)" +msgstr "" + +#: src/gui/sysConf.cpp:2418 +msgid "DSi (16MB RAM)" +msgstr "" + +#: src/gui/sysConf.cpp:2444 src/gui/settings.cpp:727 +msgid "nothing to configure" +msgstr "" + +#: src/gui/sysConf.cpp:2467 +msgid "Custom clock rate" +msgstr "" + +#: src/gui/volMeter.cpp:36 src/gui/settings.cpp:3969 src/gui/guiConst.cpp:596 +msgid "Volume Meter" +msgstr "" + +#: src/gui/userPresets.cpp:325 +msgid "User Systems" +msgstr "" + +#: src/gui/userPresets.cpp:337 +msgid "Error! User category does not exist!" +msgstr "" + +#: src/gui/userPresets.cpp:346 src/gui/newSong.cpp:181 +msgid "Systems" +msgstr "" + +#: src/gui/userPresets.cpp:349 +msgid "New Preset" +msgstr "" + +#: src/gui/userPresets.cpp:361 +msgid "select a preset" +msgstr "" + +#: src/gui/userPresets.cpp:374 +msgid "Remove##UPresetRemove" +msgstr "" + +#: src/gui/userPresets.cpp:439 src/gui/settings.cpp:1135 +msgid "Configure" +msgstr "" + +#: src/gui/userPresets.cpp:470 +msgid "Advanced" +msgstr "" + +#: src/gui/userPresets.cpp:476 +msgid "" +"insert additional settings in `option=value` format.\n" +"available options:\n" +"- tickRate" +msgstr "" + +#: src/gui/userPresets.cpp:509 +msgid "Save and Close" +msgstr "" + +#: src/gui/userPresets.cpp:515 src/gui/settings.cpp:1238 +#: src/gui/settings.cpp:2161 src/gui/settings.cpp:2553 +#: src/gui/settings.cpp:3796 +msgid "Import" +msgstr "" + +#: src/gui/userPresets.cpp:519 +msgid "Import (replace)" +msgstr "" + +#: src/gui/effectList.cpp:14 src/gui/guiConst.cpp:606 +msgid "Effect List" +msgstr "" + +#: src/gui/effectList.cpp:18 +#, c-format +msgid "Chip at cursor: %s" +msgstr "" + +#: src/gui/effectList.cpp:21 src/gui/settings.cpp:6674 +msgid "Search" +msgstr "" + +#: src/gui/effectList.cpp:25 +msgid "Effect types to show:" +msgstr "" + +#: src/gui/effectList.cpp:47 +msgid "Description" +msgstr "" + +#: src/gui/subSongs.cpp:22 src/gui/subSongs.cpp:32 +#, c-format +msgid "%d. " +msgstr "" + +#: src/gui/subSongs.cpp:73 src/gui/subSongs.cpp:93 +msgid "too many subsongs!" +msgstr "" + +#: src/gui/subSongs.cpp:114 +msgid "this is the only subsong!" +msgstr "" + +#: src/gui/subSongs.cpp:116 +msgid "are you sure you want to remove this subsong?" +msgstr "" + +#: src/gui/spoiler.cpp:30 +msgid "Spoiler" +msgstr "" + +#: src/gui/spoiler.cpp:32 +msgid "SPOILER" +msgstr "" + +#: src/gui/settings.cpp:104 src/gui/settings.cpp:114 src/gui/settings.cpp:124 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:105 src/gui/settings.cpp:115 src/gui/settings.cpp:125 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:168 +msgid "ASAP (C++ port)" +msgstr "" + +#: src/gui/settings.cpp:191 +msgid "ESFMu (fast)" +msgstr "" + +#: src/gui/settings.cpp:205 +msgid "Lower" +msgstr "" + +#: src/gui/settings.cpp:207 +msgid "Medium" +msgstr "" + +#: src/gui/settings.cpp:209 +msgid "Ultra" +msgstr "" + +#: src/gui/settings.cpp:210 +msgid "Ultimate" +msgstr "" + +#: src/gui/settings.cpp:214 +msgid "evdev SND_TONE" +msgstr "" + +#: src/gui/settings.cpp:215 +msgid "KIOCSOUND on /dev/tty1" +msgstr "" + +#: src/gui/settings.cpp:216 +msgid "/dev/port" +msgstr "" + +#: src/gui/settings.cpp:217 +msgid "KIOCSOUND on standard output" +msgstr "" + +#: src/gui/settings.cpp:218 +msgid "outb()" +msgstr "" + +#: src/gui/settings.cpp:222 src/gui/settings.cpp:232 +msgid "Disabled/custom" +msgstr "" + +#: src/gui/settings.cpp:223 +msgid "Two octaves (0 is C-4, F is D#5)" +msgstr "" + +#: src/gui/settings.cpp:224 +msgid "Raw (note number is value)" +msgstr "" + +#: src/gui/settings.cpp:225 +msgid "Two octaves alternate (lower keys are 0-9, upper keys are A-F)" +msgstr "" + +#: src/gui/settings.cpp:226 src/gui/settings.cpp:233 +msgid "Use dual control change (one for each nibble)" +msgstr "" + +#: src/gui/settings.cpp:227 src/gui/settings.cpp:234 +msgid "Use 14-bit control change" +msgstr "" + +#: src/gui/settings.cpp:228 src/gui/settings.cpp:235 +msgid "Use single control change (imprecise)" +msgstr "" + +#: src/gui/settings.cpp:239 +msgid "--select--" +msgstr "" + +#: src/gui/settings.cpp:240 src/gui/settings.cpp:241 src/gui/settings.cpp:242 +#: src/gui/settings.cpp:243 src/gui/settings.cpp:244 src/gui/settings.cpp:245 +#: src/gui/settings.cpp:246 +msgid "???" +msgstr "" + +#: src/gui/settings.cpp:247 +msgid "Note Off" +msgstr "" + +#: src/gui/settings.cpp:248 +msgid "Note On" +msgstr "" + +#: src/gui/settings.cpp:249 +msgid "Aftertouch" +msgstr "" + +#: src/gui/settings.cpp:250 src/gui/insEdit.cpp:7187 src/gui/insEdit.cpp:7217 +#: src/gui/insEdit.cpp:7382 src/gui/insEdit.cpp:7403 src/gui/insEdit.cpp:7415 +#: src/gui/insEdit.cpp:7430 +msgid "Control" +msgstr "" + +#: src/gui/settings.cpp:251 src/gui/settings.cpp:573 src/gui/settings.cpp:3177 +msgid "Program" +msgstr "" + +#: src/gui/settings.cpp:252 +msgid "ChanPressure" +msgstr "" + +#: src/gui/settings.cpp:253 +msgid "Pitch Bend" +msgstr "" + +#: src/gui/settings.cpp:254 +msgid "SysEx" +msgstr "" + +#: src/gui/settings.cpp:258 src/gui/settings.cpp:1713 src/gui/settings.cpp:1723 +#: src/gui/settings.cpp:1743 src/gui/settings.cpp:1749 +#, c-format +msgid "Any" +msgstr "" + +#: src/gui/settings.cpp:262 src/gui/settings.cpp:3363 src/gui/settings.cpp:3928 +#: src/gui/settings.cpp:4121 +msgid "Instrument" +msgstr "" + +#: src/gui/settings.cpp:264 +msgid "Effect 1 type" +msgstr "" + +#: src/gui/settings.cpp:265 +msgid "Effect 1 value" +msgstr "" + +#: src/gui/settings.cpp:266 +msgid "Effect 2 type" +msgstr "" + +#: src/gui/settings.cpp:267 +msgid "Effect 2 value" +msgstr "" + +#: src/gui/settings.cpp:268 +msgid "Effect 3 type" +msgstr "" + +#: src/gui/settings.cpp:269 +msgid "Effect 3 value" +msgstr "" + +#: src/gui/settings.cpp:270 +msgid "Effect 4 type" +msgstr "" + +#: src/gui/settings.cpp:271 +msgid "Effect 4 value" +msgstr "" + +#: src/gui/settings.cpp:272 +msgid "Effect 5 type" +msgstr "" + +#: src/gui/settings.cpp:273 +msgid "Effect 5 value" +msgstr "" + +#: src/gui/settings.cpp:274 +msgid "Effect 6 type" +msgstr "" + +#: src/gui/settings.cpp:275 +msgid "Effect 6 value" +msgstr "" + +#: src/gui/settings.cpp:276 +msgid "Effect 7 type" +msgstr "" + +#: src/gui/settings.cpp:277 +msgid "Effect 7 value" +msgstr "" + +#: src/gui/settings.cpp:278 +msgid "Effect 8 type" +msgstr "" + +#: src/gui/settings.cpp:279 +msgid "Effect 8 value" +msgstr "" + +#: src/gui/settings.cpp:315 +msgid "Press key..." +msgstr "" + +#: src/gui/settings.cpp:564 +msgid "Do you want to save your settings?" +msgstr "" + +#: src/gui/settings.cpp:571 +msgid "General" +msgstr "" + +#: src/gui/settings.cpp:588 +msgid "Language" +msgstr "" + +#: src/gui/settings.cpp:606 +msgid "Render backend" +msgstr "" + +#: src/gui/settings.cpp:661 src/gui/settings.cpp:680 src/gui/settings.cpp:1312 +msgid "you may need to restart Furnace for this setting to take effect." +msgstr "" + +#: src/gui/settings.cpp:664 +msgid "Advanced render backend settings" +msgstr "" + +#: src/gui/settings.cpp:666 +msgid "Render driver" +msgstr "" + +#: src/gui/settings.cpp:666 src/gui/settings.cpp:667 src/gui/settings.cpp:1298 +#: src/gui/settings.cpp:1299 src/gui/piano.cpp:108 +msgid "Automatic" +msgstr "" + +#: src/gui/settings.cpp:683 +msgid "" +"beware: changing these settings may render Furnace unusable! do so at your " +"own risk.\n" +"start Furnace with -safemode if you mess something up." +msgstr "" + +#: src/gui/settings.cpp:684 +msgid "Red bits" +msgstr "" + +#: src/gui/settings.cpp:689 +msgid "Green bits" +msgstr "" + +#: src/gui/settings.cpp:694 +msgid "Blue bits" +msgstr "" + +#: src/gui/settings.cpp:699 +msgid "Alpha bits" +msgstr "" + +#: src/gui/settings.cpp:704 +msgid "Color depth" +msgstr "" + +#: src/gui/settings.cpp:709 +msgid "Stencil buffer size" +msgstr "" + +#: src/gui/settings.cpp:714 src/gui/settings.cpp:1385 +msgid "Buffer size" +msgstr "" + +#: src/gui/settings.cpp:720 +msgid "Double buffer" +msgstr "" + +#: src/gui/settings.cpp:725 +msgid "" +"the following values are common (in red, green, blue, alpha order):\n" +"- 24 bits: 8, 8, 8, 0\n" +"- 16 bits: 5, 6, 5, 0\n" +"- 32 bits (with alpha): 8, 8, 8, 8\n" +"- 30 bits (deep): 10, 10, 10, 0" +msgstr "" + +#: src/gui/settings.cpp:732 +#, c-format +msgid "" +"current backend: %s\n" +"%s\n" +"%s\n" +"%s" +msgstr "" + +#: src/gui/settings.cpp:735 +msgid "VSync" +msgstr "" + +#: src/gui/settings.cpp:743 +msgid "Frame rate limit" +msgstr "" + +#: src/gui/settings.cpp:743 +msgid "Unlimited" +msgstr "" + +#: src/gui/settings.cpp:749 +msgid "only applies when VSync is disabled." +msgstr "" + +#: src/gui/settings.cpp:753 +msgid "Display render time" +msgstr "" + +#: src/gui/settings.cpp:760 +msgid "Late render clear" +msgstr "" + +#: src/gui/settings.cpp:765 +msgid "" +"calls rend->clear() after rend->present(). might reduce UI latency by one " +"frame in some drivers." +msgstr "" + +#: src/gui/settings.cpp:770 +msgid "Power-saving mode" +msgstr "" + +#: src/gui/settings.cpp:775 +msgid "" +"saves power by lowering the frame rate to 2fps when idle.\n" +"may cause issues under Mesa drivers!" +msgstr "" + +#: src/gui/settings.cpp:780 +msgid "Disable threaded input (restart after changing!)" +msgstr "" + +#: src/gui/settings.cpp:785 +msgid "" +"threaded input processes key presses for note preview on a separate thread " +"(on supported platforms), which reduces latency.\n" +"however, crashes have been reported when threaded input is on. enable this " +"option if that is the case." +msgstr "" + +#: src/gui/settings.cpp:790 +msgid "Enable event delay" +msgstr "" + +#: src/gui/settings.cpp:796 +msgid "may cause issues with high-polling-rate mice when previewing notes." +msgstr "" + +#: src/gui/settings.cpp:800 +msgid "Per-channel oscilloscope threads" +msgstr "" + +#: src/gui/settings.cpp:808 +msgid "you're being silly, aren't you? that's enough." +msgstr "" + +#: src/gui/settings.cpp:812 +msgid "what are you doing? stop!" +msgstr "" + +#: src/gui/settings.cpp:816 +#, c-format +msgid "" +"it is a bad idea to set this number higher than your CPU core count (%d)!" +msgstr "" + +#: src/gui/settings.cpp:821 +msgid "Oscilloscope rendering engine:" +msgstr "" + +#: src/gui/settings.cpp:823 +msgid "ImGui line plot" +msgstr "" + +#: src/gui/settings.cpp:827 +msgid "render using Dear ImGui's built-in line drawing functions." +msgstr "" + +#: src/gui/settings.cpp:829 +msgid "GLSL (if available)" +msgstr "" + +#: src/gui/settings.cpp:834 +msgid "" +"render using shaders that run on the graphics card.\n" +"only available in OpenGL ES 2.0 render backend." +msgstr "" + +#: src/gui/settings.cpp:836 +msgid "" +"render using shaders that run on the graphics card.\n" +"only available in OpenGL 3.0 render backend." +msgstr "" + +#: src/gui/settings.cpp:843 +msgid "Vibration" +msgstr "" + +#: src/gui/settings.cpp:845 +msgid "Strength" +msgstr "" + +#: src/gui/settings.cpp:851 src/gui/insEdit.cpp:2284 src/gui/insEdit.cpp:2382 +#: src/gui/insEdit.cpp:5582 src/gui/insEdit.cpp:6241 +msgid "Length" +msgstr "" + +#: src/gui/settings.cpp:859 src/gui/gui.cpp:4191 +msgid "File" +msgstr "" + +#: src/gui/settings.cpp:862 +msgid "Use system file picker" +msgstr "" + +#: src/gui/settings.cpp:867 +msgid "Number of recent files" +msgstr "" + +#: src/gui/settings.cpp:874 +msgid "Compress when saving" +msgstr "" + +#: src/gui/settings.cpp:879 +msgid "use zlib to compress saved songs." +msgstr "" + +#: src/gui/settings.cpp:883 +msgid "Save unused patterns" +msgstr "" + +#: src/gui/settings.cpp:889 +msgid "Use new pattern format when saving" +msgstr "" + +#: src/gui/settings.cpp:894 +msgid "" +"use a packed format which saves space when saving songs.\n" +"disable if you need compatibility with older Furnace and/or tools\n" +"which do not support this format." +msgstr "" + +#: src/gui/settings.cpp:898 +msgid "Don't apply compatibility flags when loading .dmf" +msgstr "" + +#: src/gui/settings.cpp:903 +msgid "do not report any issues arising from the use of this option!" +msgstr "" + +#: src/gui/settings.cpp:906 +msgid "Play after opening song:" +msgstr "" + +#: src/gui/settings.cpp:908 +msgid "No##pol0" +msgstr "" + +#: src/gui/settings.cpp:912 +msgid "Only if already playing##pol1" +msgstr "" + +#: src/gui/settings.cpp:916 +msgid "Yes##pol0" +msgstr "" + +#: src/gui/settings.cpp:922 +msgid "Audio export loop/fade out time:" +msgstr "" + +#: src/gui/settings.cpp:924 +msgid "Set to these values on start-up:##fot0" +msgstr "" + +#: src/gui/settings.cpp:942 +msgid "Remember last values##fot1" +msgstr "" + +#: src/gui/settings.cpp:949 +msgid "Store instrument name in .fui" +msgstr "" + +#: src/gui/settings.cpp:954 +msgid "" +"when enabled, saving an instrument will store its name.\n" +"this may increase file size." +msgstr "" + +#: src/gui/settings.cpp:958 +msgid "Load instrument name from .fui" +msgstr "" + +#: src/gui/settings.cpp:963 +msgid "" +"when enabled, loading an instrument will use the stored name (if present).\n" +"otherwise, it will use the file name." +msgstr "" + +#: src/gui/settings.cpp:967 +msgid "Auto-fill file name when saving" +msgstr "" + +#: src/gui/settings.cpp:972 +msgid "" +"fill the file name field with an appropriate file name when saving or " +"exporting." +msgstr "" + +#: src/gui/settings.cpp:976 src/gui/gui.cpp:5563 src/gui/gui.cpp:5613 +msgid "New Song" +msgstr "" + +#: src/gui/settings.cpp:978 +msgid "Initial system:" +msgstr "" + +#: src/gui/settings.cpp:980 +msgid "Current system" +msgstr "" + +#: src/gui/settings.cpp:993 src/gui/waveEdit.cpp:1149 src/gui/gui.cpp:3046 +msgid "Randomize" +msgstr "" + +#: src/gui/settings.cpp:1043 +msgid "Reset to defaults" +msgstr "" + +#: src/gui/settings.cpp:1178 +msgid "When creating new song:" +msgstr "" + +#: src/gui/settings.cpp:1180 +msgid "Display system preset selector##NSB0" +msgstr "" + +#: src/gui/settings.cpp:1184 +msgid "Start with initial system##NSB1" +msgstr "" + +#: src/gui/settings.cpp:1188 +msgid "Default author name" +msgstr "" + +#: src/gui/settings.cpp:1192 +msgid "Start-up" +msgstr "" + +#: src/gui/settings.cpp:1193 +msgid "Play intro on start-up:" +msgstr "" + +#: src/gui/settings.cpp:1195 +msgid "No##pis0" +msgstr "" + +#: src/gui/settings.cpp:1199 +msgid "Short##pis1" +msgstr "" + +#: src/gui/settings.cpp:1203 +msgid "Full (short when loading song)##pis2" +msgstr "" + +#: src/gui/settings.cpp:1207 +msgid "Full (always)##pis3" +msgstr "" + +#: src/gui/settings.cpp:1214 +msgid "Disable fade-in during start-up" +msgstr "" + +#: src/gui/settings.cpp:1220 +msgid "About screen party time" +msgstr "" + +#: src/gui/settings.cpp:1225 +msgid "Warning: may cause epileptic seizures." +msgstr "" + +#: src/gui/settings.cpp:1229 +msgid "Behavior" +msgstr "" + +#: src/gui/settings.cpp:1231 +msgid "New instruments are blank" +msgstr "" + +#: src/gui/settings.cpp:1237 src/gui/settings.cpp:4255 +msgid "Configuration" +msgstr "" + +#: src/gui/settings.cpp:1246 +msgid "Factory Reset" +msgstr "" + +#: src/gui/settings.cpp:1247 +msgid "" +"Are you sure you want to reset all Furnace settings?\n" +"You must restart Furnace after doing so." +msgstr "" + +#: src/gui/settings.cpp:1255 +msgid "Output" +msgstr "" + +#: src/gui/settings.cpp:1263 +msgid "Backend" +msgstr "" + +#: src/gui/settings.cpp:1296 +msgid "Driver" +msgstr "" + +#: src/gui/settings.cpp:1319 +msgid "Device" +msgstr "" + +#: src/gui/settings.cpp:1323 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:1324 +msgid "ALERT - TRESPASSER DETECTED" +msgstr "" + +#: src/gui/settings.cpp:1326 +msgid "you have been arrested for trying to engage with a disabled combo box." +msgstr "" + +#: src/gui/settings.cpp:1333 src/gui/settings.cpp:1335 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:1371 src/gui/insEdit.cpp:7186 +msgid "Outputs" +msgstr "" + +#: src/gui/settings.cpp:1379 +msgid "" +"common values:\n" +"- 1 for mono\n" +"- 2 for stereo\n" +"- 4 for quadraphonic\n" +"- 6 for 5.1 surround\n" +"- 8 for 7.1 surround" +msgstr "" + +#: src/gui/settings.cpp:1387 +#, c-format +msgid "%d (latency: ~%.1fms)" +msgstr "" + +#: src/gui/settings.cpp:1402 +msgid "Multi-threaded (EXPERIMENTAL)" +msgstr "" + +#: src/gui/settings.cpp:1411 +msgid "" +"runs chip emulation on separate threads.\n" +"may increase performance when using heavy emulation cores.\n" +"\n" +"warnings:\n" +"- experimental!\n" +"- only useful on multi-chip songs." +msgstr "" + +#: src/gui/settings.cpp:1416 +msgid "Number of threads" +msgstr "" + +#: src/gui/settings.cpp:1423 +msgid "that's the limit!" +msgstr "" + +#: src/gui/settings.cpp:1427 +#, c-format +msgid "" +"it is a VERY bad idea to set this number higher than your CPU core count " +"(%d)!" +msgstr "" + +#: src/gui/settings.cpp:1435 +msgid "Low-latency mode" +msgstr "" + +#: src/gui/settings.cpp:1440 +msgid "" +"reduces latency by running the engine faster than the tick rate.\n" +"useful for live playback/jam mode.\n" +"\n" +"warning: only enable if your buffer size is small (10ms or less)." +msgstr "" + +#: src/gui/settings.cpp:1444 +msgid "Force mono audio" +msgstr "" + +#: src/gui/settings.cpp:1452 +msgid "Exclusive mode" +msgstr "" + +#: src/gui/settings.cpp:1463 +#, c-format +msgid "want: %d samples @ %.0fHz (%d channel)" +msgid_plural "want: %d samples @ %.0fHz (%d channels)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/gui/settings.cpp:1464 +#, c-format +msgid "got: %d samples @ %.0fHz (%d channel)" +msgid_plural "got: %d samples @ %.0fHz (%d channels)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/gui/settings.cpp:1471 +msgid "Mixing" +msgstr "" + +#: src/gui/settings.cpp:1473 src/gui/settings.cpp:2082 +msgid "Quality" +msgstr "" + +#: src/gui/settings.cpp:1478 +msgid "Software clipping" +msgstr "" + +#: src/gui/settings.cpp:1484 +msgid "DC offset correction" +msgstr "" + +#: src/gui/settings.cpp:1502 src/gui/guiConst.cpp:740 +msgid "Sample preview" +msgstr "" + +#: src/gui/settings.cpp:1515 +msgid "MIDI" +msgstr "" + +#: src/gui/settings.cpp:1517 src/gui/settings.cpp:1519 +msgid "MIDI input" +msgstr "" + +#: src/gui/settings.cpp:1521 src/gui/settings.cpp:1524 +#: src/gui/settings.cpp:1815 src/gui/settings.cpp:1817 +msgid "" +msgstr "" + +#: src/gui/settings.cpp:1540 +msgid "Re-scan MIDI devices" +msgstr "" + +#: src/gui/settings.cpp:1551 src/gui/settings.cpp:2258 +msgid "Note input" +msgstr "" + +#: src/gui/settings.cpp:1552 +msgid "Velocity input" +msgstr "" + +#: src/gui/settings.cpp:1556 +msgid "Map MIDI channels to direct channels" +msgstr "" + +#: src/gui/settings.cpp:1562 +msgid "Program change pass-through" +msgstr "" + +#: src/gui/settings.cpp:1567 +msgid "Map Yamaha FM voice data to instruments" +msgstr "" + +#: src/gui/settings.cpp:1569 +msgid "Program change is instrument selection" +msgstr "" + +#: src/gui/settings.cpp:1573 +msgid "Value input style" +msgstr "" + +#: src/gui/settings.cpp:1576 src/gui/settings.cpp:1601 +msgid "Control##valueCCS" +msgstr "" + +#: src/gui/settings.cpp:1582 src/gui/settings.cpp:1607 +msgid "CC of upper nibble##valueCC1" +msgstr "" + +#: src/gui/settings.cpp:1582 src/gui/settings.cpp:1607 +msgid "MSB CC##valueCC1" +msgstr "" + +#: src/gui/settings.cpp:1587 src/gui/settings.cpp:1612 +msgid "CC of lower nibble##valueCC2" +msgstr "" + +#: src/gui/settings.cpp:1587 src/gui/settings.cpp:1612 +msgid "LSB CC##valueCC2" +msgstr "" + +#: src/gui/settings.cpp:1594 +msgid "Per-column control change" +msgstr "" + +#: src/gui/settings.cpp:1624 src/gui/settings.cpp:1634 +msgid "Volume curve" +msgstr "" + +#: src/gui/settings.cpp:1637 +msgid "Actions:" +msgstr "" + +#: src/gui/settings.cpp:1651 +msgid "" +"(learning! press a button or move a slider/knob/something on your device.)" +msgstr "" + +#: src/gui/settings.cpp:1665 src/gui/settings.cpp:2277 +#: src/gui/settings.cpp:6687 src/gui/sampleEdit.cpp:501 +#: src/gui/insEdit.cpp:5321 +msgid "Type" +msgstr "" + +#: src/gui/settings.cpp:1669 +msgid "Note/Control" +msgstr "" + +#: src/gui/settings.cpp:1671 +msgid "Velocity/Value" +msgstr "" + +#: src/gui/settings.cpp:1673 +msgid "Action" +msgstr "" + +#: src/gui/settings.cpp:1765 src/gui/settings.cpp:1766 +msgid "--none--" +msgstr "" + +#: src/gui/settings.cpp:1787 +msgid "waiting...##BLearn" +msgstr "" + +#: src/gui/settings.cpp:1787 +msgid "Learn##BLearn" +msgstr "" + +#: src/gui/settings.cpp:1811 src/gui/settings.cpp:1813 +msgid "MIDI output" +msgstr "" + +#: src/gui/settings.cpp:1830 +msgid "Output mode:" +msgstr "" + +#: src/gui/settings.cpp:1832 +msgid "Off (use for TX81Z)" +msgstr "" + +#: src/gui/settings.cpp:1836 +msgid "Melodic" +msgstr "" + +#: src/gui/settings.cpp:1847 +msgid "Send Program Change" +msgstr "" + +#: src/gui/settings.cpp:1853 +msgid "Send MIDI clock" +msgstr "" + +#: src/gui/settings.cpp:1859 +msgid "Send MIDI timecode" +msgstr "" + +#: src/gui/settings.cpp:1865 +msgid "Timecode frame rate:" +msgstr "" + +#: src/gui/settings.cpp:1867 +msgid "Closest to Tick Rate" +msgstr "" + +#: src/gui/settings.cpp:1871 +msgid "Film (24fps)" +msgstr "" + +#: src/gui/settings.cpp:1875 +msgid "PAL (25fps)" +msgstr "" + +#: src/gui/settings.cpp:1879 +msgid "NTSC drop (29.97fps)" +msgstr "" + +#: src/gui/settings.cpp:1883 +msgid "NTSC non-drop (30fps)" +msgstr "" + +#: src/gui/settings.cpp:1892 +msgid "Emulation" +msgstr "" + +#: src/gui/settings.cpp:1894 +msgid "Cores" +msgstr "" + +#: src/gui/settings.cpp:1903 +msgid "Playback Core(s)" +msgstr "" + +#: src/gui/settings.cpp:1905 src/gui/settings.cpp:2093 +msgid "used for playback" +msgstr "" + +#: src/gui/settings.cpp:1908 +msgid "Render Core(s)" +msgstr "" + +#: src/gui/settings.cpp:1910 src/gui/settings.cpp:2098 +msgid "used in audio export" +msgstr "" + +#: src/gui/settings.cpp:2091 +msgid "Playback" +msgstr "" + +#: src/gui/settings.cpp:2096 +msgid "Render" +msgstr "" + +#: src/gui/settings.cpp:2120 +msgid "PC Speaker strategy" +msgstr "" + +#: src/gui/settings.cpp:2158 src/gui/settings.cpp:2160 +msgid "Keyboard" +msgstr "" + +#: src/gui/settings.cpp:2169 src/gui/settings.cpp:3804 +msgid "Reset defaults" +msgstr "" + +#: src/gui/settings.cpp:2170 +msgid "Are you sure you want to reset the keyboard settings?" +msgstr "" + +#: src/gui/settings.cpp:2172 +msgid "Global hotkeys" +msgstr "" + +#: src/gui/settings.cpp:2209 +msgid "Window activation" +msgstr "" + +#: src/gui/settings.cpp:2275 +msgid "Key" +msgstr "" + +#: src/gui/settings.cpp:2279 src/gui/findReplace.cpp:725 +#: src/gui/findReplace.cpp:1003 +msgid "Value" +msgstr "" + +#: src/gui/settings.cpp:2289 +#, c-format +msgid "Macro release##SNType_%d" +msgstr "" + +#: src/gui/settings.cpp:2294 +#, c-format +msgid "Note release##SNType_%d" +msgstr "" + +#: src/gui/settings.cpp:2299 +#, c-format +msgid "Note off##SNType_%d" +msgstr "" + +#: src/gui/settings.cpp:2304 +#, c-format +msgid "Note##SNType_%d" +msgstr "" + +#: src/gui/settings.cpp:2328 +msgid "Add..." +msgstr "" + +#: src/gui/settings.cpp:2418 +msgid "Instrument list" +msgstr "" + +#: src/gui/settings.cpp:2438 +msgid "Wavetable list" +msgstr "" + +#: src/gui/settings.cpp:2459 +msgid "Sample list" +msgstr "" + +#: src/gui/settings.cpp:2509 +msgid "Sample editor" +msgstr "" + +#: src/gui/settings.cpp:2547 src/gui/settings.cpp:3814 +#: src/gui/settings.cpp:3844 +msgid "Interface" +msgstr "" + +#: src/gui/settings.cpp:2549 +msgid "Layout" +msgstr "" + +#: src/gui/settings.cpp:2551 +msgid "Workspace layout:" +msgstr "" + +#: src/gui/settings.cpp:2561 src/gui/gui.cpp:2920 +msgid "Reset" +msgstr "" + +#: src/gui/settings.cpp:2562 src/gui/gui.cpp:4455 +msgid "Are you sure you want to reset the workspace layout?" +msgstr "" + +#: src/gui/settings.cpp:2566 +msgid "Allow docking editors" +msgstr "" + +#: src/gui/settings.cpp:2573 +msgid "Remember window position" +msgstr "" + +#: src/gui/settings.cpp:2578 +msgid "remembers the window's last position on start-up." +msgstr "" + +#: src/gui/settings.cpp:2583 +msgid "Only allow window movement when clicking on title bar" +msgstr "" + +#: src/gui/settings.cpp:2590 +msgid "Center pop-up windows" +msgstr "" + +#: src/gui/settings.cpp:2595 +msgid "Play/edit controls layout:" +msgstr "" + +#: src/gui/settings.cpp:2597 +msgid "Classic##ecl0" +msgstr "" + +#: src/gui/settings.cpp:2601 +msgid "Compact##ecl1" +msgstr "" + +#: src/gui/settings.cpp:2605 +msgid "Compact (vertical)##ecl2" +msgstr "" + +#: src/gui/settings.cpp:2609 +msgid "Split##ecl3" +msgstr "" + +#: src/gui/settings.cpp:2615 +msgid "Position of buttons in Orders:" +msgstr "" + +#: src/gui/settings.cpp:2617 +msgid "Top##obp0" +msgstr "" + +#: src/gui/settings.cpp:2621 +msgid "Left##obp1" +msgstr "" + +#: src/gui/settings.cpp:2625 +msgid "Right##obp2" +msgstr "" + +#: src/gui/settings.cpp:2632 +msgid "Mouse" +msgstr "" + +#: src/gui/settings.cpp:2634 +msgid "Double-click time (seconds)" +msgstr "" + +#: src/gui/settings.cpp:2643 +msgid "Don't raise pattern editor on click" +msgstr "" + +#: src/gui/settings.cpp:2649 +msgid "Focus pattern editor when selecting instrument" +msgstr "" + +#: src/gui/settings.cpp:2654 +msgid "Note preview behavior:" +msgstr "" + +#: src/gui/settings.cpp:2656 +msgid "Never##npb0" +msgstr "" + +#: src/gui/settings.cpp:2660 +msgid "When cursor is in Note column##npb1" +msgstr "" + +#: src/gui/settings.cpp:2664 +msgid "When cursor is in Note column or not in edit mode##npb2" +msgstr "" + +#: src/gui/settings.cpp:2668 +msgid "Always##npb3" +msgstr "" + +#: src/gui/settings.cpp:2674 +msgid "Allow dragging selection:" +msgstr "" + +#: src/gui/settings.cpp:2676 +msgid "No##dms0" +msgstr "" + +#: src/gui/settings.cpp:2680 +msgid "Yes##dms1" +msgstr "" + +#: src/gui/settings.cpp:2684 +msgid "Yes (while holding Ctrl only)##dms2" +msgstr "" + +#: src/gui/settings.cpp:2690 +msgid "Toggle channel solo on:" +msgstr "" + +#: src/gui/settings.cpp:2692 +msgid "Right-click or double-click##soloA" +msgstr "" + +#: src/gui/settings.cpp:2696 +msgid "Right-click##soloR" +msgstr "" + +#: src/gui/settings.cpp:2700 +msgid "Double-click##soloD" +msgstr "" + +#: src/gui/settings.cpp:2707 +msgid "Double click selects entire column" +msgstr "" + +#: src/gui/settings.cpp:2713 +msgid "Cursor behavior" +msgstr "" + +#: src/gui/settings.cpp:2715 +msgid "Insert pushes entire channel row" +msgstr "" + +#: src/gui/settings.cpp:2721 +msgid "Pull delete affects entire channel row" +msgstr "" + +#: src/gui/settings.cpp:2727 +msgid "Push value when overwriting instead of clearing it" +msgstr "" + +#: src/gui/settings.cpp:2733 +msgid "Keyboard note/value input repeat (hold key to input continuously)" +msgstr "" + +#: src/gui/settings.cpp:2738 +msgid "Effect input behavior:" +msgstr "" + +#: src/gui/settings.cpp:2740 +msgid "Move down##eicb0" +msgstr "" + +#: src/gui/settings.cpp:2744 +msgid "Move to effect value (otherwise move down)##eicb1" +msgstr "" + +#: src/gui/settings.cpp:2748 +msgid "Move to effect value/next effect and wrap around##eicb2" +msgstr "" + +#: src/gui/settings.cpp:2755 +msgid "Delete effect value when deleting effect" +msgstr "" + +#: src/gui/settings.cpp:2761 +msgid "Change current instrument when changing instrument column (absorb)" +msgstr "" + +#: src/gui/settings.cpp:2767 +msgid "Remove instrument value when inserting note off/release" +msgstr "" + +#: src/gui/settings.cpp:2773 +msgid "Remove volume value when inserting note off/release" +msgstr "" + +#: src/gui/settings.cpp:2779 +msgid "Cursor movement" +msgstr "" + +#: src/gui/settings.cpp:2781 +msgid "Wrap horizontally:" +msgstr "" + +#: src/gui/settings.cpp:2783 +msgid "No##wrapH0" +msgstr "" + +#: src/gui/settings.cpp:2787 +msgid "Yes##wrapH1" +msgstr "" + +#: src/gui/settings.cpp:2791 +msgid "Yes, and move to next/prev row##wrapH2" +msgstr "" + +#: src/gui/settings.cpp:2797 +msgid "Wrap vertically:" +msgstr "" + +#: src/gui/settings.cpp:2799 +msgid "No##wrapV0" +msgstr "" + +#: src/gui/settings.cpp:2803 +msgid "Yes##wrapV1" +msgstr "" + +#: src/gui/settings.cpp:2807 +msgid "Yes, and move to next/prev pattern##wrapV2" +msgstr "" + +#: src/gui/settings.cpp:2811 +msgid "Yes, and move to next/prev pattern (wrap around)##wrapV2" +msgstr "" + +#: src/gui/settings.cpp:2817 +msgid "Cursor movement keys behavior:" +msgstr "" + +#: src/gui/settings.cpp:2819 +msgid "Move by one##cmk0" +msgstr "" + +#: src/gui/settings.cpp:2823 +msgid "Move by Edit Step##cmk1" +msgstr "" + +#: src/gui/settings.cpp:2830 +msgid "Move cursor by edit step on delete" +msgstr "" + +#: src/gui/settings.cpp:2836 +msgid "Move cursor by edit step on insert (push)" +msgstr "" + +#: src/gui/settings.cpp:2842 +msgid "Move cursor up on backspace-delete" +msgstr "" + +#: src/gui/settings.cpp:2848 +msgid "Move cursor to end of clipboard content when pasting" +msgstr "" + +#: src/gui/settings.cpp:2854 +msgid "Scrolling" +msgstr "" + +#: src/gui/settings.cpp:2856 +msgid "Change order when scrolling outside of pattern bounds:" +msgstr "" + +#: src/gui/settings.cpp:2858 +msgid "No##pscroll0" +msgstr "" + +#: src/gui/settings.cpp:2862 +msgid "Yes##pscroll1" +msgstr "" + +#: src/gui/settings.cpp:2866 +msgid "Yes, and wrap around song##pscroll2" +msgstr "" + +#: src/gui/settings.cpp:2873 +msgid "Cursor follows current order when moving it" +msgstr "" + +#: src/gui/settings.cpp:2878 +msgid "applies when playback is stopped." +msgstr "" + +#: src/gui/settings.cpp:2882 +msgid "Don't scroll when moving cursor" +msgstr "" + +#: src/gui/settings.cpp:2887 +msgid "Move cursor with scroll wheel:" +msgstr "" + +#: src/gui/settings.cpp:2889 +msgid "No##csw0" +msgstr "" + +#: src/gui/settings.cpp:2893 +msgid "Yes##csw1" +msgstr "" + +#: src/gui/settings.cpp:2897 +msgid "Inverted##csw2" +msgstr "" + +#: src/gui/settings.cpp:2904 +msgid "How many steps to move with each scroll wheel step?" +msgstr "" + +#: src/gui/settings.cpp:2905 +msgid "One##cws0" +msgstr "" + +#: src/gui/settings.cpp:2909 +msgid "Edit Step##cws1" +msgstr "" + +#: src/gui/settings.cpp:2916 src/gui/settings.cpp:3531 +msgid "Assets" +msgstr "" + +#: src/gui/settings.cpp:2919 +msgid "Display instrument type menu when adding instrument" +msgstr "" + +#: src/gui/settings.cpp:2925 +msgid "Select asset after opening one" +msgstr "" + +#: src/gui/settings.cpp:2932 +msgid "Appearance" +msgstr "" + +#: src/gui/settings.cpp:2934 +msgid "Scaling" +msgstr "" + +#: src/gui/settings.cpp:2936 +msgid "Automatic UI scaling factor" +msgstr "" + +#: src/gui/settings.cpp:2945 +msgid "UI scaling factor" +msgstr "" + +#: src/gui/settings.cpp:2952 +msgid "Icon size" +msgstr "" + +#: src/gui/settings.cpp:2967 +msgid "Font renderer" +msgstr "" + +#: src/gui/settings.cpp:2977 +msgid "Main font" +msgstr "" + +#: src/gui/settings.cpp:2988 +msgid "Size##MainFontSize" +msgstr "" + +#: src/gui/settings.cpp:2996 +msgid "Header font" +msgstr "" + +#: src/gui/settings.cpp:3007 +msgid "Size##HeadFontSize" +msgstr "" + +#: src/gui/settings.cpp:3015 +msgid "Pattern font" +msgstr "" + +#: src/gui/settings.cpp:3026 +msgid "Size##PatFontSize" +msgstr "" + +#: src/gui/settings.cpp:3036 +msgid "Anti-aliased fonts" +msgstr "" + +#: src/gui/settings.cpp:3042 +msgid "Support bitmap fonts" +msgstr "" + +#: src/gui/settings.cpp:3047 +msgid "Hinting:" +msgstr "" + +#: src/gui/settings.cpp:3049 +msgid "Off (soft)##fh0" +msgstr "" + +#: src/gui/settings.cpp:3053 +msgid "Slight##fh1" +msgstr "" + +#: src/gui/settings.cpp:3057 +msgid "Normal##fh2" +msgstr "" + +#: src/gui/settings.cpp:3061 +msgid "Full (hard)##fh3" +msgstr "" + +#: src/gui/settings.cpp:3067 +msgid "Auto-hinter:" +msgstr "" + +#: src/gui/settings.cpp:3069 +msgid "Disable##fah0" +msgstr "" + +#: src/gui/settings.cpp:3073 +msgid "Enable##fah1" +msgstr "" + +#: src/gui/settings.cpp:3077 +msgid "Force##fah2" +msgstr "" + +#: src/gui/settings.cpp:3084 +msgid "Oversample" +msgstr "" + +#: src/gui/settings.cpp:3087 +msgid "1×##fos1" +msgstr "" + +#: src/gui/settings.cpp:3092 +msgid "" +"saves video memory. reduces font rendering quality.\n" +"use for pixel/bitmap fonts." +msgstr "" + +#: src/gui/settings.cpp:3095 +msgid "2×##fos2" +msgstr "" + +#: src/gui/settings.cpp:3100 +msgid "default." +msgstr "" + +#: src/gui/settings.cpp:3103 +msgid "3×##fos3" +msgstr "" + +#: src/gui/settings.cpp:3108 +msgid "" +"slightly better font rendering quality.\n" +"uses more video memory." +msgstr "" + +#: src/gui/settings.cpp:3112 +msgid "Load fallback font" +msgstr "" + +#: src/gui/settings.cpp:3117 +msgid "disable to save video memory." +msgstr "" + +#: src/gui/settings.cpp:3121 +msgid "Display Japanese characters" +msgstr "" + +#: src/gui/settings.cpp:3127 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"このオプションは、十分なグラフィックメモリがある場合にのみ切り替えてくださ" +"い。\n" +"これは、Dear ImGuiにダイナミックフォントアトラスが実装されるまでの一時的な解" +"決策です。" +msgstr "" + +#: src/gui/settings.cpp:3135 +msgid "Display Chinese (Simplified) characters" +msgstr "" + +#: src/gui/settings.cpp:3141 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"请在确保你有足够的显存后再启动此设定\n" +"这是一个在ImGui实现动态字体加载之前的临时解决方案" +msgstr "" + +#: src/gui/settings.cpp:3149 +msgid "Display Chinese (Traditional) characters" +msgstr "" + +#: src/gui/settings.cpp:3155 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"請在確保你有足夠的顯存后再啟動此設定\n" +"這是一個在ImGui實現動態字體加載之前的臨時解決方案" +msgstr "" + +#: src/gui/settings.cpp:3163 +msgid "Display Korean characters" +msgstr "" + +#: src/gui/settings.cpp:3169 +msgid "" +"Only toggle this option if you have enough graphics memory.\n" +"This is a temporary solution until dynamic font atlas is implemented in Dear " +"ImGui.\n" +"\n" +"그래픽 메모리가 충분한 경우에만 이 옵션을 선택하십시오.\n" +"이 옵션은 Dear ImGui에 동적 글꼴 아틀라스가 구현될 때까지 임시 솔루션입니다." +msgstr "" + +#: src/gui/settings.cpp:3178 +msgid "Title bar:" +msgstr "" + +#: src/gui/settings.cpp:3180 +msgid "Furnace##tbar0" +msgstr "" + +#: src/gui/settings.cpp:3185 +msgid "Song Name - Furnace##tbar1" +msgstr "" + +#: src/gui/settings.cpp:3190 +msgid "file_name.fur - Furnace##tbar2" +msgstr "" + +#: src/gui/settings.cpp:3195 +msgid "/path/to/file.fur - Furnace##tbar3" +msgstr "" + +#: src/gui/settings.cpp:3203 +msgid "Display system name on title bar" +msgstr "" + +#: src/gui/settings.cpp:3210 +msgid "Display chip names instead of \"multi-system\" in title bar" +msgstr "" + +#: src/gui/settings.cpp:3216 +msgid "Status bar:" +msgstr "" + +#: src/gui/settings.cpp:3218 +msgid "Cursor details##sbar0" +msgstr "" + +#: src/gui/settings.cpp:3222 +msgid "File path##sbar1" +msgstr "" + +#: src/gui/settings.cpp:3226 +msgid "Cursor details or file path##sbar2" +msgstr "" + +#: src/gui/settings.cpp:3230 +msgid "Nothing##sbar3" +msgstr "" + +#: src/gui/settings.cpp:3237 +msgid "Display playback status when playing" +msgstr "" + +#: src/gui/settings.cpp:3242 +msgid "Export options layout:" +msgstr "" + +#: src/gui/settings.cpp:3244 +msgid "Sub-menus in File menu##eol0" +msgstr "" + +#: src/gui/settings.cpp:3248 +msgid "Modal window with tabs##eol1" +msgstr "" + +#: src/gui/settings.cpp:3252 +msgid "Modal windows with options in File menu##eol2" +msgstr "" + +#: src/gui/settings.cpp:3259 +msgid "Capitalize menu bar" +msgstr "" + +#: src/gui/settings.cpp:3265 +msgid "Display add/configure/change/remove chip menus in File menu" +msgstr "" + +#: src/gui/settings.cpp:3279 +msgid "Highlight channel at cursor in Orders" +msgstr "" + +#: src/gui/settings.cpp:3284 +msgid "Orders row number format:" +msgstr "" + +#: src/gui/settings.cpp:3286 +msgid "Decimal##orbD" +msgstr "" + +#: src/gui/settings.cpp:3290 +msgid "Hexadecimal##orbH" +msgstr "" + +#: src/gui/settings.cpp:3299 +msgid "Center pattern view" +msgstr "" + +#: src/gui/settings.cpp:3305 +msgid "Overflow pattern highlights" +msgstr "" + +#: src/gui/settings.cpp:3311 +msgid "Display previous/next pattern" +msgstr "" + +#: src/gui/settings.cpp:3316 +msgid "Pattern row number format:" +msgstr "" + +#: src/gui/settings.cpp:3318 +msgid "Decimal##prbD" +msgstr "" + +#: src/gui/settings.cpp:3322 +msgid "Hexadecimal##prbH" +msgstr "" + +#: src/gui/settings.cpp:3328 +msgid "Pattern view labels:" +msgstr "" + +#: src/gui/settings.cpp:3333 +msgid "Note off (3-char)" +msgstr "" + +#: src/gui/settings.cpp:3338 +msgid "Note release (3-char)" +msgstr "" + +#: src/gui/settings.cpp:3343 +msgid "Macro release (3-char)" +msgstr "" + +#: src/gui/settings.cpp:3348 +msgid "Empty field (3-char)" +msgstr "" + +#: src/gui/settings.cpp:3353 +msgid "Empty field (2-char)" +msgstr "" + +#: src/gui/settings.cpp:3355 +msgid "Pattern view spacing after:" +msgstr "" + +#: src/gui/settings.cpp:3357 src/gui/settings.cpp:4115 +#: src/gui/findReplace.cpp:601 src/gui/findReplace.cpp:864 +#: src/gui/sampleEdit.cpp:590 +msgid "Note" +msgstr "" + +#: src/gui/settings.cpp:3375 src/gui/findReplace.cpp:707 +#: src/gui/findReplace.cpp:974 +msgid "Effect" +msgstr "" + +#: src/gui/settings.cpp:3381 +msgid "Effect value" +msgstr "" + +#: src/gui/settings.cpp:3388 +msgid "Single-digit effects for 00-0F" +msgstr "" + +#: src/gui/settings.cpp:3394 +msgid "Use flats instead of sharps" +msgstr "" + +#: src/gui/settings.cpp:3400 +msgid "Use German notation" +msgstr "" + +#: src/gui/settings.cpp:3408 +msgid "Channel style:" +msgstr "" + +#: src/gui/settings.cpp:3410 +msgid "Classic##CHS0" +msgstr "" + +#: src/gui/settings.cpp:3414 +msgid "Line##CHS1" +msgstr "" + +#: src/gui/settings.cpp:3418 +msgid "Round##CHS2" +msgstr "" + +#: src/gui/settings.cpp:3422 +msgid "Split button##CHS3" +msgstr "" + +#: src/gui/settings.cpp:3426 +msgid "Square border##CH42" +msgstr "" + +#: src/gui/settings.cpp:3430 +msgid "Round border##CHS5" +msgstr "" + +#: src/gui/settings.cpp:3436 +msgid "Channel volume bar:" +msgstr "" + +#: src/gui/settings.cpp:3438 +msgid "None##CHV0" +msgstr "" + +#: src/gui/settings.cpp:3442 +msgid "Simple##CHV1" +msgstr "" + +#: src/gui/settings.cpp:3446 +msgid "Stereo##CHV2" +msgstr "" + +#: src/gui/settings.cpp:3450 +msgid "Real##CHV3" +msgstr "" + +#: src/gui/settings.cpp:3454 +msgid "Real (stereo)##CHV4" +msgstr "" + +#: src/gui/settings.cpp:3460 +msgid "Channel feedback style:" +msgstr "" + +#: src/gui/settings.cpp:3462 +msgid "Off##CHF0" +msgstr "" + +#: src/gui/settings.cpp:3466 +msgid "Note##CHF1" +msgstr "" + +#: src/gui/settings.cpp:3470 +msgid "Volume##CHF2" +msgstr "" + +#: src/gui/settings.cpp:3474 +msgid "Active##CHF3" +msgstr "" + +#: src/gui/settings.cpp:3480 +msgid "Channel font:" +msgstr "" + +#: src/gui/settings.cpp:3482 +msgid "Regular##CHFont0" +msgstr "" + +#: src/gui/settings.cpp:3486 +msgid "Monospace##CHFont1" +msgstr "" + +#: src/gui/settings.cpp:3493 +msgid "Center channel name" +msgstr "" + +#: src/gui/settings.cpp:3498 +msgid "Channel colors:" +msgstr "" + +#: src/gui/settings.cpp:3500 +msgid "Single##CHC0" +msgstr "" + +#: src/gui/settings.cpp:3504 +msgid "Channel type##CHC1" +msgstr "" + +#: src/gui/settings.cpp:3508 +msgid "Instrument type##CHC2" +msgstr "" + +#: src/gui/settings.cpp:3514 +msgid "Channel name colors:" +msgstr "" + +#: src/gui/settings.cpp:3516 +msgid "Single##CTC0" +msgstr "" + +#: src/gui/settings.cpp:3520 +msgid "Channel type##CTC1" +msgstr "" + +#: src/gui/settings.cpp:3524 +msgid "Instrument type##CTC2" +msgstr "" + +#: src/gui/settings.cpp:3533 +msgid "Unified instrument/wavetable/sample list" +msgstr "" + +#: src/gui/settings.cpp:3543 +msgid "Horizontal instrument list" +msgstr "" + +#: src/gui/settings.cpp:3549 +msgid "Instrument list icon style:" +msgstr "" + +#: src/gui/settings.cpp:3551 +msgid "None##iis0" +msgstr "" + +#: src/gui/settings.cpp:3555 +msgid "Graphical icons##iis1" +msgstr "" + +#: src/gui/settings.cpp:3559 +msgid "Letter icons##iis2" +msgstr "" + +#: src/gui/settings.cpp:3566 +msgid "Colorize instrument editor using instrument type" +msgstr "" + +#: src/gui/settings.cpp:3572 src/gui/settings.cpp:4014 +msgid "Macro Editor" +msgstr "" + +#: src/gui/settings.cpp:3573 +msgid "Macro editor layout:" +msgstr "" + +#: src/gui/settings.cpp:3575 +msgid "Unified##mel0" +msgstr "" + +#: src/gui/settings.cpp:3585 +msgid "Grid##mel2" +msgstr "" + +#: src/gui/settings.cpp:3589 +msgid "Single (with list)##mel3" +msgstr "" + +#: src/gui/settings.cpp:3602 +msgid "Use classic macro editor vertical slider" +msgstr "" + +#: src/gui/settings.cpp:3608 +msgid "Wave Editor" +msgstr "" + +#: src/gui/settings.cpp:3610 +msgid "Use compact wave editor" +msgstr "" + +#: src/gui/settings.cpp:3616 src/gui/settings.cpp:3991 +msgid "FM Editor" +msgstr "" + +#: src/gui/settings.cpp:3617 +msgid "FM parameter names:" +msgstr "" + +#: src/gui/settings.cpp:3619 +msgid "Friendly##fmn0" +msgstr "" + +#: src/gui/settings.cpp:3623 +msgid "Technical##fmn1" +msgstr "" + +#: src/gui/settings.cpp:3627 +msgid "Technical (alternate)##fmn2" +msgstr "" + +#: src/gui/settings.cpp:3634 +msgid "Use standard OPL waveform names" +msgstr "" + +#: src/gui/settings.cpp:3639 +msgid "FM parameter editor layout:" +msgstr "" + +#: src/gui/settings.cpp:3641 +msgid "Modern##fml0" +msgstr "" + +#: src/gui/settings.cpp:3645 +msgid "Compact (2x2, classic)##fml1" +msgstr "" + +#: src/gui/settings.cpp:3649 +msgid "Compact (1x4)##fml2" +msgstr "" + +#: src/gui/settings.cpp:3653 +msgid "Compact (4x1)##fml3" +msgstr "" + +#: src/gui/settings.cpp:3657 +msgid "Alternate (2x2)##fml4" +msgstr "" + +#: src/gui/settings.cpp:3661 +msgid "Alternate (1x4)##fml5" +msgstr "" + +#: src/gui/settings.cpp:3665 +msgid "Alternate (4x1)##fml5" +msgstr "" + +#: src/gui/settings.cpp:3671 +msgid "Position of Sustain in FM editor:" +msgstr "" + +#: src/gui/settings.cpp:3673 +msgid "Between Decay and Sustain Rate##susp0" +msgstr "" + +#: src/gui/settings.cpp:3677 +msgid "After Release Rate##susp1" +msgstr "" + +#: src/gui/settings.cpp:3684 +msgid "Use separate colors for carriers/modulators in FM editor" +msgstr "" + +#: src/gui/settings.cpp:3690 +msgid "Unsigned FM detune values" +msgstr "" + +#: src/gui/settings.cpp:3697 +msgid "Chip memory usage unit:" +msgstr "" + +#: src/gui/settings.cpp:3699 +msgid "Bytes##MUU0" +msgstr "" + +#: src/gui/settings.cpp:3703 +msgid "Kilobytes##MUU1" +msgstr "" + +#: src/gui/settings.cpp:3712 +msgid "Rounded corners" +msgstr "" + +#: src/gui/settings.cpp:3718 src/gui/settings.cpp:3896 +#: src/gui/settings.cpp:3938 +msgid "Border" +msgstr "" + +#: src/gui/settings.cpp:3730 +msgid "Anti-aliased" +msgstr "" + +#: src/gui/settings.cpp:3736 +msgid "Fill entire window" +msgstr "" + +#: src/gui/settings.cpp:3742 +msgid "Waveform goes out of bounds" +msgstr "" + +#: src/gui/settings.cpp:3754 +msgid "Windows" +msgstr "" + +#: src/gui/settings.cpp:3756 +msgid "Rounded window corners" +msgstr "" + +#: src/gui/settings.cpp:3762 +msgid "Rounded buttons" +msgstr "" + +#: src/gui/settings.cpp:3768 +msgid "Rounded menu corners" +msgstr "" + +#: src/gui/settings.cpp:3774 +msgid "Rounded tabs" +msgstr "" + +#: src/gui/settings.cpp:3780 +msgid "Rounded scrollbars" +msgstr "" + +#: src/gui/settings.cpp:3786 +msgid "Borders around widgets" +msgstr "" + +#: src/gui/settings.cpp:3795 +msgid "Color scheme" +msgstr "" + +#: src/gui/settings.cpp:3805 +msgid "Are you sure you want to reset the color scheme?" +msgstr "" + +#: src/gui/settings.cpp:3808 +msgid "Guru mode" +msgstr "" + +#: src/gui/settings.cpp:3815 src/gui/settings.cpp:3845 +msgid "Frame shading" +msgstr "" + +#: src/gui/settings.cpp:3821 +msgid "Color scheme type:" +msgstr "" + +#: src/gui/settings.cpp:3823 +msgid "Dark##gcb0" +msgstr "" + +#: src/gui/settings.cpp:3828 +msgid "Light##gcb1" +msgstr "" + +#: src/gui/settings.cpp:3835 +msgid "Accent colors:" +msgstr "" + +#: src/gui/settings.cpp:3837 +msgid "Primary" +msgstr "" + +#: src/gui/settings.cpp:3838 +msgid "Secondary" +msgstr "" + +#: src/gui/settings.cpp:3852 +msgid "Button" +msgstr "" + +#: src/gui/settings.cpp:3853 +msgid "Button (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3854 +msgid "Button (active)" +msgstr "" + +#: src/gui/settings.cpp:3855 +msgid "Tab" +msgstr "" + +#: src/gui/settings.cpp:3856 +msgid "Tab (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3857 +msgid "Tab (active)" +msgstr "" + +#: src/gui/settings.cpp:3858 +msgid "Tab (unfocused)" +msgstr "" + +#: src/gui/settings.cpp:3859 +msgid "Tab (unfocused and active)" +msgstr "" + +#: src/gui/settings.cpp:3860 +msgid "ImGui header" +msgstr "" + +#: src/gui/settings.cpp:3861 +msgid "ImGui header (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3862 +msgid "ImGui header (active)" +msgstr "" + +#: src/gui/settings.cpp:3863 +msgid "Resize grip" +msgstr "" + +#: src/gui/settings.cpp:3864 +msgid "Resize grip (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3865 +msgid "Resize grip (active)" +msgstr "" + +#: src/gui/settings.cpp:3866 +msgid "Widget background" +msgstr "" + +#: src/gui/settings.cpp:3867 +msgid "Widget background (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3868 +msgid "Widget background (active)" +msgstr "" + +#: src/gui/settings.cpp:3869 +msgid "Slider grab" +msgstr "" + +#: src/gui/settings.cpp:3870 +msgid "Slider grab (active)" +msgstr "" + +#: src/gui/settings.cpp:3871 +msgid "Title background (active)" +msgstr "" + +#: src/gui/settings.cpp:3872 +msgid "Checkbox/radio button mark" +msgstr "" + +#: src/gui/settings.cpp:3873 +msgid "Text selection" +msgstr "" + +#: src/gui/settings.cpp:3874 +msgid "Line plot" +msgstr "" + +#: src/gui/settings.cpp:3875 +msgid "Line plot (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3876 +msgid "Histogram plot" +msgstr "" + +#: src/gui/settings.cpp:3877 +msgid "Histogram plot (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3878 +msgid "Table row (even)" +msgstr "" + +#: src/gui/settings.cpp:3879 +msgid "Table row (odd)" +msgstr "" + +#: src/gui/settings.cpp:3884 +msgid "Interface (other)" +msgstr "" + +#: src/gui/settings.cpp:3886 +msgid "Window background" +msgstr "" + +#: src/gui/settings.cpp:3887 +msgid "Sub-window background" +msgstr "" + +#: src/gui/settings.cpp:3888 +msgid "Pop-up background" +msgstr "" + +#: src/gui/settings.cpp:3889 +msgid "Modal backdrop" +msgstr "" + +#: src/gui/settings.cpp:3890 +msgid "Header" +msgstr "" + +#: src/gui/settings.cpp:3892 +msgid "Text (disabled)" +msgstr "" + +#: src/gui/settings.cpp:3893 +msgid "Title bar (inactive)" +msgstr "" + +#: src/gui/settings.cpp:3894 +msgid "Title bar (collapsed)" +msgstr "" + +#: src/gui/settings.cpp:3895 +msgid "Menu bar" +msgstr "" + +#: src/gui/settings.cpp:3897 +msgid "Border shadow" +msgstr "" + +#: src/gui/settings.cpp:3898 +msgid "Scroll bar" +msgstr "" + +#: src/gui/settings.cpp:3899 +msgid "Scroll bar (hovered)" +msgstr "" + +#: src/gui/settings.cpp:3900 +msgid "Scroll bar (clicked)" +msgstr "" + +#: src/gui/settings.cpp:3901 +msgid "Scroll bar background" +msgstr "" + +#: src/gui/settings.cpp:3902 +msgid "Separator" +msgstr "" + +#: src/gui/settings.cpp:3903 +msgid "Separator (hover)" +msgstr "" + +#: src/gui/settings.cpp:3904 +msgid "Separator (active)" +msgstr "" + +#: src/gui/settings.cpp:3905 +msgid "Docking preview" +msgstr "" + +#: src/gui/settings.cpp:3906 +msgid "Docking empty" +msgstr "" + +#: src/gui/settings.cpp:3907 +msgid "Table header" +msgstr "" + +#: src/gui/settings.cpp:3908 +msgid "Table border (hard)" +msgstr "" + +#: src/gui/settings.cpp:3909 +msgid "Table border (soft)" +msgstr "" + +#: src/gui/settings.cpp:3910 +msgid "Drag and drop target" +msgstr "" + +#: src/gui/settings.cpp:3911 +msgid "Window switcher (highlight)" +msgstr "" + +#: src/gui/settings.cpp:3912 +msgid "Window switcher backdrop" +msgstr "" + +#: src/gui/settings.cpp:3915 src/gui/settings.cpp:4136 src/gui/guiConst.cpp:235 +msgid "Miscellaneous" +msgstr "" + +#: src/gui/settings.cpp:3916 +msgid "Toggle on" +msgstr "" + +#: src/gui/settings.cpp:3917 +msgid "Toggle off" +msgstr "" + +#: src/gui/settings.cpp:3918 +msgid "Playback status" +msgstr "" + +#: src/gui/settings.cpp:3919 +msgid "Destructive hint" +msgstr "" + +#: src/gui/settings.cpp:3920 +msgid "Warning hint" +msgstr "" + +#: src/gui/settings.cpp:3921 +msgid "Error hint" +msgstr "" + +#: src/gui/settings.cpp:3924 +msgid "File Picker (built-in)" +msgstr "" + +#: src/gui/settings.cpp:3926 +msgid "Song (native)" +msgstr "" + +#: src/gui/settings.cpp:3927 +msgid "Song (import)" +msgstr "" + +#: src/gui/settings.cpp:3933 +msgid "Font" +msgstr "" + +#: src/gui/settings.cpp:3939 +msgid "Background (top-left)" +msgstr "" + +#: src/gui/settings.cpp:3940 +msgid "Background (top-right)" +msgstr "" + +#: src/gui/settings.cpp:3941 +msgid "Background (bottom-left)" +msgstr "" + +#: src/gui/settings.cpp:3942 +msgid "Background (bottom-right)" +msgstr "" + +#: src/gui/settings.cpp:3943 src/gui/settings.cpp:3998 +#: src/gui/settings.cpp:4166 src/gui/waveEdit.cpp:730 src/gui/insEdit.cpp:50 +#: src/gui/insEdit.cpp:4148 src/gui/insEdit.cpp:5812 src/gui/insEdit.cpp:6940 +#: src/gui/insEdit.cpp:6949 src/gui/insEdit.cpp:6963 src/gui/insEdit.cpp:6980 +#: src/gui/insEdit.cpp:6991 src/gui/insEdit.cpp:7004 src/gui/insEdit.cpp:7018 +#: src/gui/insEdit.cpp:7025 src/gui/insEdit.cpp:7035 src/gui/insEdit.cpp:7041 +#: src/gui/insEdit.cpp:7050 src/gui/insEdit.cpp:7074 src/gui/insEdit.cpp:7084 +#: src/gui/insEdit.cpp:7094 src/gui/insEdit.cpp:7101 src/gui/insEdit.cpp:7116 +#: src/gui/insEdit.cpp:7131 src/gui/insEdit.cpp:7151 src/gui/insEdit.cpp:7158 +#: src/gui/insEdit.cpp:7200 src/gui/insEdit.cpp:7211 src/gui/insEdit.cpp:7224 +#: src/gui/insEdit.cpp:7349 src/gui/insEdit.cpp:7425 src/gui/insEdit.cpp:7445 +#: src/gui/insEdit.cpp:7453 src/gui/insEdit.cpp:7473 +msgid "Waveform" +msgstr "" + +#: src/gui/settings.cpp:3944 +msgid "Waveform (clip)" +msgstr "" + +#: src/gui/settings.cpp:3945 +msgid "Reference" +msgstr "" + +#: src/gui/settings.cpp:3946 +msgid "Guide" +msgstr "" + +#: src/gui/settings.cpp:3948 +msgid "Wave (non-mono)" +msgstr "" + +#: src/gui/settings.cpp:3949 +msgid "Waveform (1)" +msgstr "" + +#: src/gui/settings.cpp:3950 +msgid "Waveform (2)" +msgstr "" + +#: src/gui/settings.cpp:3951 +msgid "Waveform (3)" +msgstr "" + +#: src/gui/settings.cpp:3952 +msgid "Waveform (4)" +msgstr "" + +#: src/gui/settings.cpp:3953 +msgid "Waveform (5)" +msgstr "" + +#: src/gui/settings.cpp:3954 +msgid "Waveform (6)" +msgstr "" + +#: src/gui/settings.cpp:3955 +msgid "Waveform (7)" +msgstr "" + +#: src/gui/settings.cpp:3956 +msgid "Waveform (8)" +msgstr "" + +#: src/gui/settings.cpp:3957 +msgid "Waveform (9)" +msgstr "" + +#: src/gui/settings.cpp:3958 +msgid "Waveform (10)" +msgstr "" + +#: src/gui/settings.cpp:3959 +msgid "Waveform (11)" +msgstr "" + +#: src/gui/settings.cpp:3960 +msgid "Waveform (12)" +msgstr "" + +#: src/gui/settings.cpp:3961 +msgid "Waveform (13)" +msgstr "" + +#: src/gui/settings.cpp:3962 +msgid "Waveform (14)" +msgstr "" + +#: src/gui/settings.cpp:3963 +msgid "Waveform (15)" +msgstr "" + +#: src/gui/settings.cpp:3964 +msgid "Waveform (16)" +msgstr "" + +#: src/gui/settings.cpp:3972 +msgid "Clip" +msgstr "" + +#: src/gui/settings.cpp:3976 +msgid "Order number" +msgstr "" + +#: src/gui/settings.cpp:3977 +msgid "Playing order background" +msgstr "" + +#: src/gui/settings.cpp:3978 +msgid "Song loop" +msgstr "" + +#: src/gui/settings.cpp:3979 +msgid "Selected order" +msgstr "" + +#: src/gui/settings.cpp:3980 +msgid "Similar patterns" +msgstr "" + +#: src/gui/settings.cpp:3981 +msgid "Inactive patterns" +msgstr "" + +#: src/gui/settings.cpp:3984 +msgid "Envelope View" +msgstr "" + +#: src/gui/settings.cpp:3985 src/gui/insEdit.cpp:540 src/gui/insEdit.cpp:3547 +#: src/gui/insEdit.cpp:3548 src/gui/insEdit.cpp:4081 src/gui/insEdit.cpp:4151 +#: src/gui/insEdit.cpp:4790 src/gui/insEdit.cpp:5861 src/gui/insEdit.cpp:5862 +#: src/gui/insEdit.cpp:6487 src/gui/insEdit.cpp:6488 src/gui/insEdit.cpp:6555 +#: src/gui/insEdit.cpp:6556 src/gui/insEdit.cpp:6995 src/gui/insEdit.cpp:7009 +#: src/gui/insEdit.cpp:7029 src/gui/insEdit.cpp:7166 +#, c-format +msgid "Envelope" +msgstr "" + +#: src/gui/settings.cpp:3986 +msgid "Sustain guide" +msgstr "" + +#: src/gui/settings.cpp:3992 +msgid "Algorithm background" +msgstr "" + +#: src/gui/settings.cpp:3993 +msgid "Algorithm lines" +msgstr "" + +#: src/gui/settings.cpp:3994 +msgid "Modulator" +msgstr "" + +#: src/gui/settings.cpp:3995 +msgid "Carrier" +msgstr "" + +#: src/gui/settings.cpp:3997 src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:4146 +msgid "SSG-EG" +msgstr "" + +#: src/gui/settings.cpp:4000 +msgid "" +"(the following colors only apply when \"Use separate colors for carriers/" +"modulators in FM editor\" is on!)" +msgstr "" + +#: src/gui/settings.cpp:4002 +msgid "Mod. accent (primary)" +msgstr "" + +#: src/gui/settings.cpp:4003 +msgid "Mod. accent (secondary)" +msgstr "" + +#: src/gui/settings.cpp:4004 +msgid "Mod. border" +msgstr "" + +#: src/gui/settings.cpp:4005 +msgid "Mod. border shadow" +msgstr "" + +#: src/gui/settings.cpp:4007 +msgid "Car. accent (primary)" +msgstr "" + +#: src/gui/settings.cpp:4008 +msgid "Car. accent (secondary)" +msgstr "" + +#: src/gui/settings.cpp:4009 +msgid "Car. border" +msgstr "" + +#: src/gui/settings.cpp:4010 +msgid "Car. border shadow" +msgstr "" + +#: src/gui/settings.cpp:4016 src/gui/guiConst.cpp:227 src/gui/insEdit.cpp:6924 +#: src/gui/insEdit.cpp:6931 src/gui/insEdit.cpp:6942 src/gui/insEdit.cpp:6950 +#: src/gui/insEdit.cpp:6971 src/gui/insEdit.cpp:6983 src/gui/insEdit.cpp:6993 +#: src/gui/insEdit.cpp:7006 src/gui/insEdit.cpp:7019 src/gui/insEdit.cpp:7028 +#: src/gui/insEdit.cpp:7036 src/gui/insEdit.cpp:7042 src/gui/insEdit.cpp:7052 +#: src/gui/insEdit.cpp:7061 src/gui/insEdit.cpp:7068 src/gui/insEdit.cpp:7075 +#: src/gui/insEdit.cpp:7087 src/gui/insEdit.cpp:7095 src/gui/insEdit.cpp:7102 +#: src/gui/insEdit.cpp:7109 src/gui/insEdit.cpp:7117 src/gui/insEdit.cpp:7123 +#: src/gui/insEdit.cpp:7132 src/gui/insEdit.cpp:7143 src/gui/insEdit.cpp:7153 +#: src/gui/insEdit.cpp:7161 src/gui/insEdit.cpp:7174 src/gui/insEdit.cpp:7182 +#: src/gui/insEdit.cpp:7193 src/gui/insEdit.cpp:7203 src/gui/insEdit.cpp:7213 +#: src/gui/insEdit.cpp:7227 src/gui/insEdit.cpp:7233 src/gui/insEdit.cpp:7241 +#: src/gui/insEdit.cpp:7248 src/gui/insEdit.cpp:7272 src/gui/insEdit.cpp:7280 +#: src/gui/insEdit.cpp:7289 src/gui/insEdit.cpp:7298 src/gui/insEdit.cpp:7306 +#: src/gui/insEdit.cpp:7323 src/gui/insEdit.cpp:7331 src/gui/insEdit.cpp:7337 +#: src/gui/insEdit.cpp:7344 src/gui/insEdit.cpp:7350 src/gui/insEdit.cpp:7355 +#: src/gui/insEdit.cpp:7361 src/gui/insEdit.cpp:7368 src/gui/insEdit.cpp:7376 +#: src/gui/insEdit.cpp:7385 src/gui/insEdit.cpp:7393 src/gui/insEdit.cpp:7401 +#: src/gui/insEdit.cpp:7413 src/gui/insEdit.cpp:7428 src/gui/insEdit.cpp:7439 +#: src/gui/insEdit.cpp:7447 src/gui/insEdit.cpp:7456 src/gui/insEdit.cpp:7466 +#: src/gui/insEdit.cpp:7474 +msgid "Pitch" +msgstr "" + +#: src/gui/settings.cpp:4021 +msgid "Instrument Types" +msgstr "" + +#: src/gui/settings.cpp:4022 +msgid "FM (OPN)" +msgstr "" + +#: src/gui/settings.cpp:4023 +msgid "SN76489/Sega PSG" +msgstr "" + +#: src/gui/settings.cpp:4026 +msgid "C64" +msgstr "" + +#: src/gui/settings.cpp:4027 +msgid "Amiga/Generic Sample" +msgstr "" + +#: src/gui/settings.cpp:4028 +msgid "PC Engine" +msgstr "" + +#: src/gui/settings.cpp:4029 +msgid "AY-3-8910/SSG" +msgstr "" + +#: src/gui/settings.cpp:4030 +msgid "AY8930" +msgstr "" + +#: src/gui/settings.cpp:4031 +msgid "TIA" +msgstr "" + +#: src/gui/settings.cpp:4032 +msgid "SAA1099" +msgstr "" + +#: src/gui/settings.cpp:4033 +msgid "VIC" +msgstr "" + +#: src/gui/settings.cpp:4034 +msgid "PET" +msgstr "" + +#: src/gui/settings.cpp:4035 +msgid "VRC6" +msgstr "" + +#: src/gui/settings.cpp:4036 src/gui/guiConst.cpp:149 +msgid "VRC6 (saw)" +msgstr "" + +#: src/gui/settings.cpp:4037 +msgid "FM (OPLL)" +msgstr "" + +#: src/gui/settings.cpp:4038 +msgid "FM (OPL)" +msgstr "" + +#: src/gui/settings.cpp:4043 +msgid "FM (OPZ)" +msgstr "" + +#: src/gui/settings.cpp:4045 +msgid "PC Beeper" +msgstr "" + +#: src/gui/settings.cpp:4047 +msgid "Lynx" +msgstr "" + +#: src/gui/settings.cpp:4049 +msgid "X1-010" +msgstr "" + +#: src/gui/settings.cpp:4050 +msgid "ES5506" +msgstr "" + +#: src/gui/settings.cpp:4053 +msgid "Sound Unit" +msgstr "" + +#: src/gui/settings.cpp:4055 +msgid "FM (OPL Drums)" +msgstr "" + +#: src/gui/settings.cpp:4056 +msgid "FM (OPM)" +msgstr "" + +#: src/gui/settings.cpp:4057 +msgid "NES" +msgstr "" + +#: src/gui/settings.cpp:4058 +msgid "MSM6258" +msgstr "" + +#: src/gui/settings.cpp:4059 +msgid "MSM6295" +msgstr "" + +#: src/gui/settings.cpp:4060 +msgid "ADPCM-A" +msgstr "" + +#: src/gui/settings.cpp:4062 +msgid "Sega PCM" +msgstr "" + +#: src/gui/settings.cpp:4063 +msgid "QSound" +msgstr "" + +#: src/gui/settings.cpp:4064 +msgid "YMZ280B" +msgstr "" + +#: src/gui/settings.cpp:4065 +msgid "RF5C68" +msgstr "" + +#: src/gui/settings.cpp:4066 +msgid "MSM5232" +msgstr "" + +#: src/gui/settings.cpp:4067 +msgid "K007232" +msgstr "" + +#: src/gui/settings.cpp:4068 +msgid "GA20" +msgstr "" + +#: src/gui/settings.cpp:4070 +msgid "SM8521" +msgstr "" + +#: src/gui/settings.cpp:4071 +msgid "PV-1000" +msgstr "" + +#: src/gui/settings.cpp:4072 +msgid "K053260" +msgstr "" + +#: src/gui/settings.cpp:4073 +msgid "TED" +msgstr "" + +#: src/gui/settings.cpp:4074 +msgid "C140" +msgstr "" + +#: src/gui/settings.cpp:4075 +msgid "C219" +msgstr "" + +#: src/gui/settings.cpp:4076 +msgid "ESFM" +msgstr "" + +#: src/gui/settings.cpp:4077 src/gui/guiConst.cpp:179 +msgid "PowerNoise (noise)" +msgstr "" + +#: src/gui/settings.cpp:4078 src/gui/guiConst.cpp:180 +msgid "PowerNoise (slope)" +msgstr "" + +#: src/gui/settings.cpp:4081 +msgid "GBA DMA" +msgstr "" + +#: src/gui/settings.cpp:4082 +msgid "GBA MinMod" +msgstr "" + +#: src/gui/settings.cpp:4085 +msgid "Other/Unknown" +msgstr "" + +#: src/gui/settings.cpp:4089 +msgid "Single color (background)" +msgstr "" + +#: src/gui/settings.cpp:4090 +msgid "Single color (text)" +msgstr "" + +#: src/gui/settings.cpp:4091 src/gui/guiConst.cpp:1393 src/gui/waveEdit.cpp:668 +msgid "FM" +msgstr "" + +#: src/gui/settings.cpp:4096 +msgid "FM operator" +msgstr "" + +#: src/gui/settings.cpp:4097 +msgid "Muted" +msgstr "" + +#: src/gui/settings.cpp:4101 +msgid "Playhead" +msgstr "" + +#: src/gui/settings.cpp:4102 +msgid "Editing" +msgstr "" + +#: src/gui/settings.cpp:4103 +msgid "Editing (will clone)" +msgstr "" + +#: src/gui/settings.cpp:4104 +msgid "Cursor" +msgstr "" + +#: src/gui/settings.cpp:4105 +msgid "Cursor (hovered)" +msgstr "" + +#: src/gui/settings.cpp:4106 +msgid "Cursor (clicked)" +msgstr "" + +#: src/gui/settings.cpp:4107 src/gui/settings.cpp:4172 +#: src/gui/findReplace.cpp:791 +msgid "Selection" +msgstr "" + +#: src/gui/settings.cpp:4108 +msgid "Selection (hovered)" +msgstr "" + +#: src/gui/settings.cpp:4109 +msgid "Selection (clicked)" +msgstr "" + +#: src/gui/settings.cpp:4110 +msgid "Highlight 1" +msgstr "" + +#: src/gui/settings.cpp:4111 +msgid "Highlight 2" +msgstr "" + +#: src/gui/settings.cpp:4112 +msgid "Row number" +msgstr "" + +#: src/gui/settings.cpp:4113 +msgid "Row number (highlight 1)" +msgstr "" + +#: src/gui/settings.cpp:4114 +msgid "Row number (highlight 2)" +msgstr "" + +#: src/gui/settings.cpp:4116 +msgid "Note (highlight 1)" +msgstr "" + +#: src/gui/settings.cpp:4117 +msgid "Note (highlight 2)" +msgstr "" + +#: src/gui/settings.cpp:4118 +msgid "Blank" +msgstr "" + +#: src/gui/settings.cpp:4119 +msgid "Blank (highlight 1)" +msgstr "" + +#: src/gui/settings.cpp:4120 +msgid "Blank (highlight 2)" +msgstr "" + +#: src/gui/settings.cpp:4122 +msgid "Instrument (invalid type)" +msgstr "" + +#: src/gui/settings.cpp:4123 +msgid "Instrument (out of range)" +msgstr "" + +#: src/gui/settings.cpp:4124 +msgid "Volume (0%)" +msgstr "" + +#: src/gui/settings.cpp:4125 +msgid "Volume (50%)" +msgstr "" + +#: src/gui/settings.cpp:4126 +msgid "Volume (100%)" +msgstr "" + +#: src/gui/settings.cpp:4128 +msgid "Pitch effect" +msgstr "" + +#: src/gui/settings.cpp:4129 +msgid "Volume effect" +msgstr "" + +#: src/gui/settings.cpp:4130 +msgid "Panning effect" +msgstr "" + +#: src/gui/settings.cpp:4131 +msgid "Song effect" +msgstr "" + +#: src/gui/settings.cpp:4132 +msgid "Time effect" +msgstr "" + +#: src/gui/settings.cpp:4133 +msgid "Speed effect" +msgstr "" + +#: src/gui/settings.cpp:4134 +msgid "Primary specific effect" +msgstr "" + +#: src/gui/settings.cpp:4135 +msgid "Secondary specific effect" +msgstr "" + +#: src/gui/settings.cpp:4137 +msgid "External command output" +msgstr "" + +#: src/gui/settings.cpp:4138 +msgid "Status: off/disabled" +msgstr "" + +#: src/gui/settings.cpp:4139 +msgid "Status: off + macro rel" +msgstr "" + +#: src/gui/settings.cpp:4140 +msgid "Status: on + macro rel" +msgstr "" + +#: src/gui/settings.cpp:4141 +msgid "Status: on" +msgstr "" + +#: src/gui/settings.cpp:4142 +msgid "Status: volume" +msgstr "" + +#: src/gui/settings.cpp:4143 +msgid "Status: pitch" +msgstr "" + +#: src/gui/settings.cpp:4144 +msgid "Status: panning" +msgstr "" + +#: src/gui/settings.cpp:4145 +msgid "Status: chip (primary)" +msgstr "" + +#: src/gui/settings.cpp:4146 +msgid "Status: chip (secondary)" +msgstr "" + +#: src/gui/settings.cpp:4147 +msgid "Status: mixing" +msgstr "" + +#: src/gui/settings.cpp:4148 +msgid "Status: DSP effect" +msgstr "" + +#: src/gui/settings.cpp:4149 +msgid "Status: note altering" +msgstr "" + +#: src/gui/settings.cpp:4150 +msgid "Status: misc color 1" +msgstr "" + +#: src/gui/settings.cpp:4151 +msgid "Status: misc color 2" +msgstr "" + +#: src/gui/settings.cpp:4152 +msgid "Status: misc color 3" +msgstr "" + +#: src/gui/settings.cpp:4153 +msgid "Status: attack" +msgstr "" + +#: src/gui/settings.cpp:4154 +msgid "Status: decay" +msgstr "" + +#: src/gui/settings.cpp:4155 +msgid "Status: sustain" +msgstr "" + +#: src/gui/settings.cpp:4156 +msgid "Status: release" +msgstr "" + +#: src/gui/settings.cpp:4157 +msgid "Status: decrease linear" +msgstr "" + +#: src/gui/settings.cpp:4158 +msgid "Status: decrease exp" +msgstr "" + +#: src/gui/settings.cpp:4159 +msgid "Status: increase" +msgstr "" + +#: src/gui/settings.cpp:4160 +msgid "Status: bent" +msgstr "" + +#: src/gui/settings.cpp:4161 +msgid "Status: direct" +msgstr "" + +#: src/gui/settings.cpp:4164 src/gui/guiConst.cpp:586 src/gui/sampleEdit.cpp:96 +msgid "Sample Editor" +msgstr "" + +#: src/gui/settings.cpp:4167 +msgid "Time background" +msgstr "" + +#: src/gui/settings.cpp:4168 +msgid "Time text" +msgstr "" + +#: src/gui/settings.cpp:4169 +msgid "Loop region" +msgstr "" + +#: src/gui/settings.cpp:4170 +msgid "Center guide" +msgstr "" + +#: src/gui/settings.cpp:4171 +msgid "Grid" +msgstr "" + +#: src/gui/settings.cpp:4173 +msgid "Selection points" +msgstr "" + +#: src/gui/settings.cpp:4174 +msgid "Preview needle" +msgstr "" + +#: src/gui/settings.cpp:4175 +msgid "Playing needles" +msgstr "" + +#: src/gui/settings.cpp:4176 +msgid "Loop markers" +msgstr "" + +#: src/gui/settings.cpp:4177 +msgid "Chip select: disabled" +msgstr "" + +#: src/gui/settings.cpp:4178 +msgid "Chip select: enabled" +msgstr "" + +#: src/gui/settings.cpp:4179 +msgid "Chip select: enabled (failure)" +msgstr "" + +#: src/gui/settings.cpp:4182 src/gui/guiConst.cpp:602 src/gui/patManager.cpp:35 +msgid "Pattern Manager" +msgstr "" + +#: src/gui/settings.cpp:4183 +msgid "Unallocated" +msgstr "" + +#: src/gui/settings.cpp:4184 +msgid "Unused" +msgstr "" + +#: src/gui/settings.cpp:4185 +msgid "Used" +msgstr "" + +#: src/gui/settings.cpp:4186 +msgid "Overused" +msgstr "" + +#: src/gui/settings.cpp:4187 +msgid "Really overused" +msgstr "" + +#: src/gui/settings.cpp:4188 +msgid "Combo Breaker" +msgstr "" + +#: src/gui/settings.cpp:4191 src/gui/guiConst.cpp:599 src/gui/piano.cpp:63 +msgid "Piano" +msgstr "" + +#: src/gui/settings.cpp:4193 +msgid "Upper key" +msgstr "" + +#: src/gui/settings.cpp:4194 +msgid "Upper key (feedback)" +msgstr "" + +#: src/gui/settings.cpp:4195 +msgid "Upper key (pressed)" +msgstr "" + +#: src/gui/settings.cpp:4196 +msgid "Lower key" +msgstr "" + +#: src/gui/settings.cpp:4197 +msgid "Lower key (feedback)" +msgstr "" + +#: src/gui/settings.cpp:4198 +msgid "Lower key (pressed)" +msgstr "" + +#: src/gui/settings.cpp:4201 src/gui/clock.cpp:31 src/gui/guiConst.cpp:610 +msgid "Clock" +msgstr "" + +#: src/gui/settings.cpp:4202 +msgid "Clock text" +msgstr "" + +#: src/gui/settings.cpp:4203 +msgid "Beat (off)" +msgstr "" + +#: src/gui/settings.cpp:4204 +msgid "Beat (on)" +msgstr "" + +#: src/gui/settings.cpp:4209 +msgid "PortSet" +msgstr "" + +#: src/gui/settings.cpp:4210 +msgid "Port" +msgstr "" + +#: src/gui/settings.cpp:4211 +msgid "Port (hidden/unavailable)" +msgstr "" + +#: src/gui/settings.cpp:4212 +msgid "Connection (selected)" +msgstr "" + +#: src/gui/settings.cpp:4213 +msgid "Connection (other)" +msgstr "" + +#: src/gui/settings.cpp:4219 +msgid "Waveform data" +msgstr "" + +#: src/gui/settings.cpp:4222 +msgid "Reserved" +msgstr "" + +#: src/gui/settings.cpp:4224 +msgid "Sample (alternate 1)" +msgstr "" + +#: src/gui/settings.cpp:4225 +msgid "Sample (alternate 2)" +msgstr "" + +#: src/gui/settings.cpp:4226 +msgid "Sample (alternate 3)" +msgstr "" + +#: src/gui/settings.cpp:4227 +msgid "Wave RAM" +msgstr "" + +#: src/gui/settings.cpp:4228 +msgid "Wavetable (static)" +msgstr "" + +#: src/gui/settings.cpp:4229 +msgid "Echo buffer" +msgstr "" + +#: src/gui/settings.cpp:4230 +msgid "Namco 163 load pos" +msgstr "" + +#: src/gui/settings.cpp:4231 +msgid "Namco 163 play pos" +msgstr "" + +#: src/gui/settings.cpp:4232 +msgid "Sample (bank 0)" +msgstr "" + +#: src/gui/settings.cpp:4233 +msgid "Sample (bank 1)" +msgstr "" + +#: src/gui/settings.cpp:4234 +msgid "Sample (bank 2)" +msgstr "" + +#: src/gui/settings.cpp:4235 +msgid "Sample (bank 3)" +msgstr "" + +#: src/gui/settings.cpp:4236 +msgid "Sample (bank 4)" +msgstr "" + +#: src/gui/settings.cpp:4237 +msgid "Sample (bank 5)" +msgstr "" + +#: src/gui/settings.cpp:4238 +msgid "Sample (bank 6)" +msgstr "" + +#: src/gui/settings.cpp:4239 +msgid "Sample (bank 7)" +msgstr "" + +#: src/gui/settings.cpp:4244 +msgid "Log level: Error" +msgstr "" + +#: src/gui/settings.cpp:4245 +msgid "Log level: Warning" +msgstr "" + +#: src/gui/settings.cpp:4246 +msgid "Log level: Info" +msgstr "" + +#: src/gui/settings.cpp:4247 +msgid "Log level: Debug" +msgstr "" + +#: src/gui/settings.cpp:4248 +msgid "Log level: Trace/Verbose" +msgstr "" + +#: src/gui/settings.cpp:4253 +msgid "Backup" +msgstr "" + +#: src/gui/settings.cpp:4258 +msgid "Enable backup system" +msgstr "" + +#: src/gui/settings.cpp:4263 +msgid "Interval (in seconds)" +msgstr "" + +#: src/gui/settings.cpp:4268 +msgid "Backups per file" +msgstr "" + +#: src/gui/settings.cpp:4274 +msgid "Backup Management" +msgstr "" + +#: src/gui/settings.cpp:4278 +msgid "Purge before:" +msgstr "" + +#: src/gui/settings.cpp:4352 +msgid "Go##PDate" +msgstr "" + +#: src/gui/settings.cpp:4359 +#, c-format +msgid "%PB used" +msgstr "" + +#: src/gui/settings.cpp:4361 +#, c-format +msgid "%TB used" +msgstr "" + +#: src/gui/settings.cpp:4363 +#, c-format +msgid "%GB used" +msgstr "" + +#: src/gui/settings.cpp:4365 +#, c-format +msgid "%MB used" +msgstr "" + +#: src/gui/settings.cpp:4367 +#, c-format +msgid "%KB used" +msgstr "" + +#: src/gui/settings.cpp:4369 +#, c-format +msgid "% bytes used" +msgstr "" + +#: src/gui/settings.cpp:4374 +msgid "Refresh" +msgstr "" + +#: src/gui/settings.cpp:4378 +msgid "Delete all" +msgstr "" + +#: src/gui/settings.cpp:4384 src/gui/settings.cpp:6688 +msgid "Size" +msgstr "" + +#: src/gui/settings.cpp:4385 +msgid "Latest" +msgstr "" + +#: src/gui/settings.cpp:4395 +#, c-format +msgid "%P" +msgstr "" + +#: src/gui/settings.cpp:4397 +#, c-format +msgid "%T" +msgstr "" + +#: src/gui/settings.cpp:4399 +#, c-format +msgid "%G" +msgstr "" + +#: src/gui/settings.cpp:4401 +#, c-format +msgid "%M" +msgstr "" + +#: src/gui/settings.cpp:4403 +#, c-format +msgid "%K" +msgstr "" + +#: src/gui/settings.cpp:4405 +#, c-format +msgid "%" +msgstr "" + +#: src/gui/settings.cpp:4529 +msgid "Cheat Codes" +msgstr "" + +#: src/gui/settings.cpp:4531 +msgid "Enter code:" +msgstr "" + +#: src/gui/settings.cpp:4533 +msgid "Submit" +msgstr "" + +#: src/gui/settings.cpp:4537 +msgid "invalid code" +msgstr "" + +#: src/gui/settings.cpp:4547 +msgid "toggled alternate UI" +msgstr "" + +#: src/gui/settings.cpp:4551 +msgid ":smile: :star_struck: :sunglasses: :ok_hand:" +msgstr "" + +#: src/gui/settings.cpp:4555 +msgid "enabled all instrument types" +msgstr "" + +#: src/gui/settings.cpp:4559 +msgid "OK, if I bring your Partial pitch linearity will you stop bothering me?" +msgstr "" + +#: src/gui/settings.cpp:4563 +msgid "unlocked audio multi-threading options!" +msgstr "" + +#: src/gui/settings.cpp:4567 +msgid "enabled \"comfortable\" mode" +msgstr "" + +#: src/gui/settings.cpp:4585 +msgid "OK##SettingsOK" +msgstr "" + +#: src/gui/settings.cpp:4591 +msgid "Cancel##SettingsCancel" +msgstr "" + +#: src/gui/settings.cpp:4599 +msgid "Apply##SettingsApply" +msgstr "" + +#: src/gui/settings.cpp:5673 +msgid "could not initialize audio!" +msgstr "" + +#: src/gui/settings.cpp:5683 src/gui/gui.cpp:4067 src/gui/gui.cpp:6662 +#: src/gui/gui.cpp:7088 +msgid "error while loading fonts! please check your settings." +msgstr "" + +#: src/gui/settings.cpp:5862 +#, c-format +msgid "error while loading config! (%s)" +msgstr "" + +#: src/gui/settings.cpp:6675 +msgid "[Dir]" +msgstr "" + +#: src/gui/settings.cpp:6676 +msgid "[Link]" +msgstr "" + +#: src/gui/settings.cpp:6677 +msgid "[File]" +msgstr "" + +#: src/gui/settings.cpp:6678 +msgid "Name:" +msgstr "" + +#: src/gui/settings.cpp:6679 +msgid "Path:" +msgstr "" + +#: src/gui/settings.cpp:6680 +msgid "Reset search" +msgstr "" + +#: src/gui/settings.cpp:6681 +msgid "Drives" +msgstr "" + +#: src/gui/settings.cpp:6682 +msgid "" +"Edit path\n" +"You can also right click on path buttons" +msgstr "" + +#: src/gui/settings.cpp:6683 +msgid "Go to home directory" +msgstr "" + +#: src/gui/settings.cpp:6684 +msgid "Go to parent directory" +msgstr "" + +#: src/gui/settings.cpp:6685 +msgid "Create Directory" +msgstr "" + +#: src/gui/settings.cpp:6686 +msgid "File name" +msgstr "" + +#: src/gui/settings.cpp:6689 +msgid "Date" +msgstr "" + +#: src/gui/settings.cpp:6690 src/gui/gui.cpp:5510 src/gui/gui.cpp:5645 +#: src/gui/gui.cpp:5646 +msgid "Warning" +msgstr "" + +#: src/gui/settings.cpp:6691 +msgid "The file you selected already exists! Would you like to overwrite it?" +msgstr "" + +#: src/gui/settings.cpp:6692 src/gui/gui.cpp:5650 src/gui/gui.cpp:5674 +#: src/gui/gui.cpp:5698 src/gui/gui.cpp:5722 src/gui/gui.cpp:5746 +#: src/gui/gui.cpp:5770 src/gui/gui.cpp:5802 src/gui/gui.cpp:5818 +#: src/gui/gui.cpp:5829 src/gui/gui.cpp:5841 src/gui/gui.cpp:5995 +#: src/gui/gui.cpp:6017 src/gui/gui.cpp:6032 src/gui/gui.cpp:6043 +msgid "Yes" +msgstr "" + +#: src/gui/settings.cpp:6693 src/gui/findReplace.cpp:828 src/gui/gui.cpp:5664 +#: src/gui/gui.cpp:5688 src/gui/gui.cpp:5712 src/gui/gui.cpp:5736 +#: src/gui/gui.cpp:5760 src/gui/gui.cpp:5788 src/gui/gui.cpp:5813 +#: src/gui/gui.cpp:5824 src/gui/gui.cpp:5836 src/gui/gui.cpp:5848 +#: src/gui/gui.cpp:6012 src/gui/gui.cpp:6027 src/gui/gui.cpp:6037 +#: src/gui/gui.cpp:6050 +msgid "No" +msgstr "" + +#: src/gui/settings.cpp:6694 +msgid "%Y/%m/%d %H:%M" +msgstr "" + +#: src/gui/orders.cpp:114 +msgid "Add new order" +msgstr "" + +#: src/gui/orders.cpp:125 src/gui/guiConst.cpp:794 +msgid "Remove order" +msgstr "" + +#: src/gui/orders.cpp:137 +msgid "Duplicate order (right-click to deep clone)" +msgstr "" + +#: src/gui/orders.cpp:146 src/gui/guiConst.cpp:795 +msgid "Move order up" +msgstr "" + +#: src/gui/orders.cpp:155 src/gui/guiConst.cpp:796 +msgid "Move order down" +msgstr "" + +#: src/gui/orders.cpp:167 +msgid "Place copy of current order at end of song (right-click to deep clone)" +msgstr "" + +#: src/gui/orders.cpp:177 +msgid "Order change mode: entire row" +msgstr "" + +#: src/gui/orders.cpp:179 +msgid "Order change mode: one" +msgstr "" + +#: src/gui/orders.cpp:205 +msgid "Order edit mode: Select and type (scroll vertically)" +msgstr "" + +#: src/gui/orders.cpp:207 +msgid "Order edit mode: Select and type (scroll horizontally)" +msgstr "" + +#: src/gui/orders.cpp:209 +msgid "Order edit mode: Select and type (don't scroll)" +msgstr "" + +#: src/gui/orders.cpp:211 +msgid "Order edit mode: Click to change" +msgstr "" + +#: src/gui/findReplace.cpp:29 +msgid "ignore" +msgstr "" + +#: src/gui/findReplace.cpp:30 +msgid "equals" +msgstr "" + +#: src/gui/findReplace.cpp:31 +msgid "not equal" +msgstr "" + +#: src/gui/findReplace.cpp:32 +msgid "between" +msgstr "" + +#: src/gui/findReplace.cpp:33 +msgid "not between" +msgstr "" + +#: src/gui/findReplace.cpp:34 +msgid "any" +msgstr "" + +#: src/gui/findReplace.cpp:35 src/gui/guiConst.cpp:217 +msgid "none" +msgstr "" + +#: src/gui/findReplace.cpp:39 +msgid "set" +msgstr "" + +#: src/gui/findReplace.cpp:40 +msgid "add" +msgstr "" + +#: src/gui/findReplace.cpp:41 +msgid "add (overflow)" +msgstr "" + +#: src/gui/findReplace.cpp:42 +msgid "scale %" +msgstr "" + +#: src/gui/findReplace.cpp:512 src/gui/guiConst.cpp:609 +msgid "Find/Replace" +msgstr "" + +#: src/gui/findReplace.cpp:520 src/gui/findReplace.cpp:850 +msgid "Find" +msgstr "" + +#: src/gui/findReplace.cpp:526 src/gui/findReplace.cpp:535 +msgid "order" +msgstr "" + +#: src/gui/findReplace.cpp:527 src/gui/findReplace.cpp:537 +msgid "row" +msgstr "" + +#: src/gui/findReplace.cpp:539 src/gui/csPlayer.cpp:146 +msgid "channel" +msgstr "" + +#: src/gui/findReplace.cpp:541 +msgid "go" +msgstr "" + +#: src/gui/findReplace.cpp:585 +msgid "no matches found!" +msgstr "" + +#: src/gui/findReplace.cpp:587 +msgid "Back" +msgstr "" + +#: src/gui/findReplace.cpp:750 +msgid "Delete query" +msgstr "" + +#: src/gui/findReplace.cpp:754 src/gui/findReplace.cpp:1037 +msgid "Add effect" +msgstr "" + +#: src/gui/findReplace.cpp:761 src/gui/findReplace.cpp:1044 +msgid "Remove effect" +msgstr "" + +#: src/gui/findReplace.cpp:786 +msgid "Search range:" +msgstr "" + +#: src/gui/findReplace.cpp:799 +msgid "Confine to channels" +msgstr "" + +#: src/gui/findReplace.cpp:803 src/gui/sampleEdit.cpp:1152 +msgid "From" +msgstr "" + +#: src/gui/findReplace.cpp:814 src/gui/sampleEdit.cpp:1156 +msgid "To" +msgstr "" + +#: src/gui/findReplace.cpp:826 +msgid "Match effect position:" +msgstr "" + +#: src/gui/findReplace.cpp:832 +msgid "match effects regardless of position." +msgstr "" + +#: src/gui/findReplace.cpp:834 src/gui/compatFlags.cpp:288 +msgid "Lax" +msgstr "" + +#: src/gui/findReplace.cpp:838 +msgid "match effects only if they appear in-order." +msgstr "" + +#: src/gui/findReplace.cpp:840 src/gui/compatFlags.cpp:276 +msgid "Strict" +msgstr "" + +#: src/gui/findReplace.cpp:844 +msgid "match effects only if they appear exactly as specified." +msgstr "" + +#: src/gui/findReplace.cpp:856 +msgid "Replace" +msgstr "" + +#: src/gui/findReplace.cpp:908 +msgid "INVALID" +msgstr "" + +#: src/gui/findReplace.cpp:1052 +msgid "Effect replace mode:" +msgstr "" + +#: src/gui/findReplace.cpp:1053 +msgid "Replace matches only" +msgstr "" + +#: src/gui/findReplace.cpp:1056 +msgid "Replace matches, then free spaces" +msgstr "" + +#: src/gui/findReplace.cpp:1059 +msgid "Clear effects" +msgstr "" + +#: src/gui/findReplace.cpp:1062 +msgid "Insert in free spaces" +msgstr "" + +#: src/gui/findReplace.cpp:1065 +msgid "Replace##QueryReplace" +msgstr "" + +#: src/gui/about.cpp:26 +msgid "is proud to present" +msgstr "" + +#: src/gui/about.cpp:30 +msgid "the biggest multi-system chiptune tracker!" +msgstr "" + +#: src/gui/about.cpp:31 +msgid "featuring DefleMask song compatibility." +msgstr "" + +#: src/gui/about.cpp:33 +msgid "> CREDITS <" +msgstr "" + +#: src/gui/about.cpp:35 +msgid "-- program --" +msgstr "" + +#: src/gui/about.cpp:37 +msgid "A M 4 N (intro tune)" +msgstr "" + +#: src/gui/about.cpp:52 +msgid "-- graphics/UI design --" +msgstr "" + +#: src/gui/about.cpp:59 +msgid "-- documentation --" +msgstr "" + +#: src/gui/about.cpp:69 +msgid "-- localization/translation team --" +msgstr "" + +#: src/gui/about.cpp:81 +msgid "-- demo songs --" +msgstr "" + +#: src/gui/about.cpp:207 +msgid "-- additional feedback/fixes --" +msgstr "" + +#: src/gui/about.cpp:218 +msgid "-- Metal backend test team --" +msgstr "" + +#: src/gui/about.cpp:224 +msgid "-- DirectX 9 backend test team --" +msgstr "" + +#: src/gui/about.cpp:231 +msgid "powered by:" +msgstr "" + +#: src/gui/about.cpp:232 +msgid "Dear ImGui by Omar Cornut" +msgstr "" + +#: src/gui/about.cpp:233 +msgid "SDL2 by Sam Lantinga" +msgstr "" + +#: src/gui/about.cpp:237 +msgid "zlib by Jean-loup Gailly" +msgstr "" + +#: src/gui/about.cpp:238 +msgid "and Mark Adler" +msgstr "" + +#: src/gui/about.cpp:239 +msgid "libsndfile by Erik de Castro Lopo" +msgstr "" + +#: src/gui/about.cpp:240 +msgid "Portable File Dialogs by Sam Hocevar" +msgstr "" + +#: src/gui/about.cpp:241 +msgid "Native File Dialog by Frogtoss Games" +msgstr "" + +#: src/gui/about.cpp:243 +msgid "Weak-JACK by x42" +msgstr "" + +#: src/gui/about.cpp:244 +msgid "RtMidi by Gary P. Scavone" +msgstr "" + +#: src/gui/about.cpp:245 +msgid "FFTW by Matteo Frigo and Steven G. Johnson" +msgstr "" + +#: src/gui/about.cpp:246 +msgid "backward-cpp by Google" +msgstr "" + +#: src/gui/about.cpp:247 +msgid "adpcm by superctr" +msgstr "" + +#: src/gui/about.cpp:248 +msgid "adpcm-xq by David Bryant" +msgstr "" + +#: src/gui/about.cpp:249 +msgid "Nuked-OPL3/OPLL/OPM/OPN2/PSG by nukeykt" +msgstr "" + +#: src/gui/about.cpp:250 +msgid "YM3812-LLE, YMF262-LLE, YMF276-LLE and YM2608-LLE by nukeykt" +msgstr "" + +#: src/gui/about.cpp:251 +msgid "ESFMu (modified version) by Kagamiin~" +msgstr "" + +#: src/gui/about.cpp:252 +msgid "ymfm by Aaron Giles" +msgstr "" + +#: src/gui/about.cpp:253 +msgid "emu2413 by Digital Sound Antiques" +msgstr "" + +#: src/gui/about.cpp:254 +msgid "MAME SN76496 by Nicola Salmoria" +msgstr "" + +#: src/gui/about.cpp:255 +msgid "MAME AY-3-8910 by Couriersud" +msgstr "" + +#: src/gui/about.cpp:256 +msgid "with AY8930 fixes by Eulous, cam900 and Grauw" +msgstr "" + +#: src/gui/about.cpp:257 +msgid "MAME SAA1099 by Juergen Buchmueller and Manuel Abadia" +msgstr "" + +#: src/gui/about.cpp:258 +msgid "MAME Namco WSG by Nicola Salmoria and Aaron Giles" +msgstr "" + +#: src/gui/about.cpp:259 +msgid "MAME RF5C68 core by Olivier Galibert and Aaron Giles" +msgstr "" + +#: src/gui/about.cpp:260 +msgid "MAME MSM5232 core by Jarek Burczynski and Hiromitsu Shioya" +msgstr "" + +#: src/gui/about.cpp:261 +msgid "MAME MSM6258 core by Barry Rodewald" +msgstr "" + +#: src/gui/about.cpp:262 +msgid "MAME YMZ280B core by Aaron Giles" +msgstr "" + +#: src/gui/about.cpp:263 +msgid "MAME GA20 core by Acho A. Tang and R. Belmont" +msgstr "" + +#: src/gui/about.cpp:264 +msgid "MAME SegaPCM core by Hiromitsu Shioya and Olivier Galibert" +msgstr "" + +#: src/gui/about.cpp:265 +msgid "SAASound by Dave Hooper and Simon Owen" +msgstr "" + +#: src/gui/about.cpp:266 +msgid "SameBoy by Lior Halphon" +msgstr "" + +#: src/gui/about.cpp:267 +msgid "Mednafen PCE, WonderSwan, T6W28 and Virtual Boy audio cores" +msgstr "" + +#: src/gui/about.cpp:268 +msgid "SNES DSP core by Blargg" +msgstr "" + +#: src/gui/about.cpp:269 +msgid "puNES (NES, MMC5 and FDS) by FHorse" +msgstr "" + +#: src/gui/about.cpp:270 +msgid "NSFPlay (NES and FDS) by Brad Smith and Brezza" +msgstr "" + +#: src/gui/about.cpp:271 +msgid "reSID by Dag Lem" +msgstr "" + +#: src/gui/about.cpp:272 +msgid "reSIDfp by Dag Lem, Antti Lankila" +msgstr "" + +#: src/gui/about.cpp:273 +msgid "and Leandro Nini" +msgstr "" + +#: src/gui/about.cpp:274 +msgid "dSID by DefleMask Team based on jsSID" +msgstr "" + +#: src/gui/about.cpp:275 +msgid "Stella by Stella Team" +msgstr "" + +#: src/gui/about.cpp:276 +msgid "QSound emulator by superctr and Valley Bell" +msgstr "" + +#: src/gui/about.cpp:277 +msgid "VICE VIC-20 sound core by Rami Rasanen and viznut" +msgstr "" + +#: src/gui/about.cpp:278 +msgid "VICE TED sound core by Andreas Boose, Tibor Biczo" +msgstr "" + +#: src/gui/about.cpp:279 +msgid "and Marco van den Heuvel" +msgstr "" + +#: src/gui/about.cpp:280 +msgid "VERA sound core by Frank van den Hoef" +msgstr "" + +#: src/gui/about.cpp:281 +msgid "mzpokeysnd POKEY emulator by Michael Borisov" +msgstr "" + +#: src/gui/about.cpp:282 +msgid "ASAP POKEY emulator by Piotr Fusik" +msgstr "" + +#: src/gui/about.cpp:283 +msgid "ported by laoo to C++" +msgstr "" + +#: src/gui/about.cpp:284 +msgid "vgsound_emu (second version, modified version) by cam900" +msgstr "" + +#: src/gui/about.cpp:285 +msgid "SM8521 emulator (modified version) by cam900" +msgstr "" + +#: src/gui/about.cpp:286 +msgid "D65010G031 emulator (modified version) by cam900" +msgstr "" + +#: src/gui/about.cpp:287 +msgid "Namco C140/C219 emulator (modified version) by cam900" +msgstr "" + +#: src/gui/about.cpp:288 +msgid "PowerNoise emulator by scratchminer" +msgstr "" + +#: src/gui/about.cpp:289 +msgid "ep128emu by Istvan Varga" +msgstr "" + +#: src/gui/about.cpp:290 +msgid "NDS sound emulator by cam900" +msgstr "" + +#: src/gui/about.cpp:292 +msgid "greetings to:" +msgstr "" + +#: src/gui/about.cpp:295 +msgid "all members of Deflers of Noice!" +msgstr "" + +#: src/gui/about.cpp:301 +msgid "copyright © 2021-2024 tildearrow" +msgstr "" + +#: src/gui/about.cpp:302 +msgid "(and contributors)." +msgstr "" + +#: src/gui/about.cpp:303 +msgid "licensed under GPLv2+! see" +msgstr "" + +#: src/gui/about.cpp:304 +msgid "LICENSE for more information." +msgstr "" + +#: src/gui/about.cpp:306 +msgid "help Furnace grow:" +msgstr "" + +#: src/gui/about.cpp:309 +msgid "contact tildearrow at:" +msgstr "" + +#: src/gui/about.cpp:312 +msgid "disclaimer:" +msgstr "" + +#: src/gui/about.cpp:313 +msgid "despite the fact this program works" +msgstr "" + +#: src/gui/about.cpp:314 +msgid "with the .dmf file format, it is NOT" +msgstr "" + +#: src/gui/about.cpp:315 +msgid "affiliated with Delek or DefleMask in" +msgstr "" + +#: src/gui/about.cpp:316 +msgid "any way, nor it is a replacement for" +msgstr "" + +#: src/gui/about.cpp:317 +msgid "the original program." +msgstr "" + +#: src/gui/about.cpp:319 +msgid "it also comes with ABSOLUTELY NO WARRANTY." +msgstr "" + +#: src/gui/about.cpp:321 +msgid "thanks to all contributors/bug reporters!" +msgstr "" + +#: src/gui/about.cpp:328 +msgid "About Furnace" +msgstr "" + +#: src/gui/about.cpp:418 +msgid "Unsaved changes! Save changes before playing?" +msgstr "" + +#: src/gui/compatFlags.cpp:31 src/gui/guiConst.cpp:598 +msgid "Compatibility Flags" +msgstr "" + +#: src/gui/compatFlags.cpp:32 +msgid "" +"these flags are designed to provide better DefleMask/older Furnace " +"compatibility.\n" +"it is recommended to disable most of these unless you rely on specific " +"quirks." +msgstr "" + +#: src/gui/compatFlags.cpp:34 src/gui/compatFlags.cpp:310 +msgid "DefleMask" +msgstr "" + +#: src/gui/compatFlags.cpp:35 +msgid "Limit slide range" +msgstr "" + +#: src/gui/compatFlags.cpp:37 +msgid "" +"when enabled, slides are limited to a compatible range.\n" +"may cause problems with slides in negative octaves." +msgstr "" + +#: src/gui/compatFlags.cpp:39 +msgid "Compatible noise layout on NES and PC Engine" +msgstr "" + +#: src/gui/compatFlags.cpp:41 +msgid "" +"use a rather unusual compatible noise frequency layout.\n" +"removes some noise frequencies on PC Engine." +msgstr "" + +#: src/gui/compatFlags.cpp:43 +msgid "Game Boy instrument duty is wave volume" +msgstr "" + +#: src/gui/compatFlags.cpp:45 +msgid "" +"if enabled, an instrument with duty macro in the wave channel will be mapped " +"to wavetable volume." +msgstr "" + +#: src/gui/compatFlags.cpp:48 +msgid "Restart macro on portamento" +msgstr "" + +#: src/gui/compatFlags.cpp:50 +msgid "" +"when enabled, a portamento effect will reset the channel's macro if used in " +"combination with a note." +msgstr "" + +#: src/gui/compatFlags.cpp:52 +msgid "Legacy volume slides" +msgstr "" + +#: src/gui/compatFlags.cpp:54 +msgid "" +"simulate glitchy volume slide behavior by silently overflowing the volume " +"when the slide goes below 0." +msgstr "" + +#: src/gui/compatFlags.cpp:56 +msgid "Compatible arpeggio" +msgstr "" + +#: src/gui/compatFlags.cpp:58 +msgid "delay arpeggio by one tick on every new note." +msgstr "" + +#: src/gui/compatFlags.cpp:60 +msgid "Disable DAC when sample ends" +msgstr "" + +#: src/gui/compatFlags.cpp:62 +msgid "" +"when enabled, the DAC in YM2612 will be disabled if there isn't any sample " +"playing." +msgstr "" + +#: src/gui/compatFlags.cpp:64 +msgid "Broken speed alternation" +msgstr "" + +#: src/gui/compatFlags.cpp:66 +msgid "" +"determines next speed based on whether the row is odd/even instead of " +"alternating between speeds." +msgstr "" + +#: src/gui/compatFlags.cpp:68 +msgid "Ignore duplicate slide effects" +msgstr "" + +#: src/gui/compatFlags.cpp:70 +msgid "" +"if this is on, only the first slide of a row in a channel will be considered." +msgstr "" + +#: src/gui/compatFlags.cpp:72 +msgid "Ignore 0Dxx on the last order" +msgstr "" + +#: src/gui/compatFlags.cpp:74 +msgid "" +"if this is on, a jump to next row effect will not take place when it is on " +"the last order of a song." +msgstr "" + +#: src/gui/compatFlags.cpp:76 +msgid "Buggy portamento after pitch slide" +msgstr "" + +#: src/gui/compatFlags.cpp:78 +msgid "simulates a bug in where portamento does not work after sliding." +msgstr "" + +#: src/gui/compatFlags.cpp:80 +msgid "FM pitch slide octave boundary odd behavior" +msgstr "" + +#: src/gui/compatFlags.cpp:82 +msgid "" +"if this is on, a pitch slide that crosses the octave boundary will stop for " +"one tick and then continue from the nearest octave boundary.\n" +"for .dmf compatibility." +msgstr "" + +#: src/gui/compatFlags.cpp:84 +msgid "Don't apply Game Boy envelope on note-less instrument change" +msgstr "" + +#: src/gui/compatFlags.cpp:86 +msgid "if this is on, an instrument change will not affect the envelope." +msgstr "" + +#: src/gui/compatFlags.cpp:88 +msgid "Ignore DAC mode change outside of intended channel in ExtCh mode" +msgstr "" + +#: src/gui/compatFlags.cpp:90 +msgid "if this is on, 17xx has no effect on the operator channels in YM2612." +msgstr "" + +#: src/gui/compatFlags.cpp:92 +msgid "E1xy/E2xy also take priority over slide stops" +msgstr "" + +#: src/gui/compatFlags.cpp:94 +msgid "does this make any sense by now?" +msgstr "" + +#: src/gui/compatFlags.cpp:96 +msgid "E1xy/E2xy stop when repeating the same note" +msgstr "" + +#: src/gui/compatFlags.cpp:98 +msgid "ugh, if only this wasn't a thing..." +msgstr "" + +#: src/gui/compatFlags.cpp:100 +msgid "SN76489 duty macro always resets phase" +msgstr "" + +#: src/gui/compatFlags.cpp:102 +msgid "" +"when enabled, duty macro will always reset phase, even if its value hasn't " +"changed." +msgstr "" + +#: src/gui/compatFlags.cpp:104 +msgid "Broken volume scaling strategy" +msgstr "" + +#: src/gui/compatFlags.cpp:106 +msgid "" +"when enabled:\n" +"- log scaling: multiply\n" +"- linear scaling: subtract\n" +"when disabled:\n" +"- log scaling: subtract\n" +"- linear scaling: multiply" +msgstr "" + +#: src/gui/compatFlags.cpp:108 +msgid "Don't persist volume macro after it finishes" +msgstr "" + +#: src/gui/compatFlags.cpp:110 +msgid "" +"when enabled, a value in the volume column that happens after the volume " +"macro is done will disregard the macro." +msgstr "" + +#: src/gui/compatFlags.cpp:112 +msgid "Broken output volume on instrument change" +msgstr "" + +#: src/gui/compatFlags.cpp:114 +msgid "" +"if enabled, no checks for the presence of a volume macro will be made.\n" +"this will cause the last macro value to linger unless a value in the volume " +"column is present." +msgstr "" + +#: src/gui/compatFlags.cpp:116 +msgid "Broken output volume - Episode 2 (PLEASE KEEP ME DISABLED)" +msgstr "" + +#: src/gui/compatFlags.cpp:118 +msgid "" +"these compatibility flags are getting SO damn ridiculous and out of " +"control.\n" +"as you may have guessed, this one exists due to yet ANOTHER DefleMask-" +"specific behavior.\n" +"please keep this off at all costs, because I will not support it when ROM " +"export comes.\n" +"oh, and don't start an argument out of it. Furnace isn't a DefleMask " +"replacement, and no,\n" +"I am not trying to make it look like one with all these flags.\n" +"\n" +"oh, and what about the other flags that don't have to do with DefleMask?\n" +"those are for .mod import, future FamiTracker import and personal taste!\n" +"\n" +"end of rant" +msgstr "" + +#: src/gui/compatFlags.cpp:120 +msgid "Treat SN76489 periods under 8 as 1" +msgstr "" + +#: src/gui/compatFlags.cpp:122 +msgid "" +"when enabled, any SN period under 8 will be written as 1 instead.\n" +"this replicates DefleMask behavior, but reduces available period range." +msgstr "" + +#: src/gui/compatFlags.cpp:126 src/gui/compatFlags.cpp:304 +msgid "Old Furnace" +msgstr "" + +#: src/gui/compatFlags.cpp:127 +msgid "Arpeggio inhibits non-porta slides" +msgstr "" + +#: src/gui/compatFlags.cpp:129 src/gui/compatFlags.cpp:133 +msgid "behavior changed in 0.5.5" +msgstr "" + +#: src/gui/compatFlags.cpp:131 +msgid "Wack FM algorithm macro" +msgstr "" + +#: src/gui/compatFlags.cpp:135 +msgid "Broken shortcut slides (E1xy/E2xy)" +msgstr "" + +#: src/gui/compatFlags.cpp:137 +msgid "behavior changed in 0.5.7" +msgstr "" + +#: src/gui/compatFlags.cpp:139 +msgid "Stop portamento on note off" +msgstr "" + +#: src/gui/compatFlags.cpp:141 src/gui/compatFlags.cpp:145 +#: src/gui/compatFlags.cpp:149 src/gui/compatFlags.cpp:153 +#: src/gui/compatFlags.cpp:157 src/gui/compatFlags.cpp:161 +#: src/gui/compatFlags.cpp:165 +msgid "behavior changed in 0.6pre1" +msgstr "" + +#: src/gui/compatFlags.cpp:143 +msgid "Don't allow instrument change during slides" +msgstr "" + +#: src/gui/compatFlags.cpp:147 +msgid "Don't reset note to base on arpeggio stop" +msgstr "" + +#: src/gui/compatFlags.cpp:151 +msgid "ExtCh channel status is not shared among operators" +msgstr "" + +#: src/gui/compatFlags.cpp:155 +msgid "Disable new SegaPCM features (macros and better panning)" +msgstr "" + +#: src/gui/compatFlags.cpp:159 +msgid "Old FM octave boundary behavior" +msgstr "" + +#: src/gui/compatFlags.cpp:163 +msgid "Disable OPN2 DAC volume control" +msgstr "" + +#: src/gui/compatFlags.cpp:167 +msgid "Broken initial position of portamento after arpeggio" +msgstr "" + +#: src/gui/compatFlags.cpp:169 +msgid "behavior changed in 0.6pre1.5" +msgstr "" + +#: src/gui/compatFlags.cpp:171 +msgid "Disable new sample features" +msgstr "" + +#: src/gui/compatFlags.cpp:173 src/gui/compatFlags.cpp:177 +msgid "behavior changed in 0.6pre2" +msgstr "" + +#: src/gui/compatFlags.cpp:175 +msgid "Old arpeggio macro + pitch slide strategy" +msgstr "" + +#: src/gui/compatFlags.cpp:179 +msgid "Broken portamento during legato" +msgstr "" + +#: src/gui/compatFlags.cpp:181 +msgid "behavior changed in 0.6pre4" +msgstr "" + +#: src/gui/compatFlags.cpp:183 +msgid "Broken macros in some FM chips after note off" +msgstr "" + +#: src/gui/compatFlags.cpp:185 +msgid "behavior changed in 0.6pre5" +msgstr "" + +#: src/gui/compatFlags.cpp:187 +msgid "Pre-note does not take effects into consideration" +msgstr "" + +#: src/gui/compatFlags.cpp:189 +msgid "behavior changed in 0.6pre9" +msgstr "" + +#: src/gui/compatFlags.cpp:191 +msgid "Disable new NES DPCM features" +msgstr "" + +#: src/gui/compatFlags.cpp:193 +msgid "behavior changed in 0.6.1" +msgstr "" + +#: src/gui/compatFlags.cpp:195 +msgid "Legacy technical ALWAYS_SET_VOLUME behavior" +msgstr "" + +#: src/gui/compatFlags.cpp:197 +msgid "" +"behavior changed in 0.6.1\n" +"this flag will be removed if I find out that none of the songs break after " +"disabling it." +msgstr "" + +#: src/gui/compatFlags.cpp:199 +msgid "Old sample offset effect" +msgstr "" + +#: src/gui/compatFlags.cpp:201 +msgid "behavior changed in 0.6.3" +msgstr "" + +#: src/gui/compatFlags.cpp:205 +msgid ".mod import" +msgstr "" + +#: src/gui/compatFlags.cpp:206 +msgid "Don't slide on the first tick of a row" +msgstr "" + +#: src/gui/compatFlags.cpp:208 +msgid "" +"simulates ProTracker's behavior of not applying volume/pitch slides on the " +"first tick of a row." +msgstr "" + +#: src/gui/compatFlags.cpp:210 +msgid "Reset arpeggio position on row change" +msgstr "" + +#: src/gui/compatFlags.cpp:212 +msgid "" +"simulates ProTracker's behavior of arpeggio being bound to the current tick " +"of a row." +msgstr "" + +#: src/gui/compatFlags.cpp:216 +msgid "Pitch/Playback" +msgstr "" + +#: src/gui/compatFlags.cpp:217 +msgid "Pitch linearity:" +msgstr "" + +#: src/gui/compatFlags.cpp:223 +msgid "like ProTracker/FamiTracker" +msgstr "" + +#: src/gui/compatFlags.cpp:227 +msgid "Partial (only 04xy/E5xx)" +msgstr "" + +#: src/gui/compatFlags.cpp:231 +msgid "" +"like DefleMask\n" +"\n" +"this pitch linearity mode is deprecated due to:\n" +"- excessive complexity\n" +"- lack of possible optimization\n" +"\n" +"it is recommended to change it now because I will remove this option in the " +"future!" +msgstr "" + +#: src/gui/compatFlags.cpp:235 +msgid "Full" +msgstr "" + +#: src/gui/compatFlags.cpp:239 +msgid "like Impulse Tracker" +msgstr "" + +#: src/gui/compatFlags.cpp:246 +msgid "Pitch slide speed multiplier" +msgstr "" + +#: src/gui/compatFlags.cpp:252 +msgid "Loop modality:" +msgstr "" + +#: src/gui/compatFlags.cpp:254 +msgid "Reset channels" +msgstr "" + +#: src/gui/compatFlags.cpp:258 +msgid "" +"select to reset channels on loop. may trigger a voltage click on every loop!" +msgstr "" + +#: src/gui/compatFlags.cpp:260 +msgid "Soft reset channels" +msgstr "" + +#: src/gui/compatFlags.cpp:264 +msgid "select to turn channels off on loop." +msgstr "" + +#: src/gui/compatFlags.cpp:266 +msgid "Do nothing" +msgstr "" + +#: src/gui/compatFlags.cpp:270 +msgid "select to not reset channels on loop." +msgstr "" + +#: src/gui/compatFlags.cpp:274 +msgid "Cut/delay effect policy:" +msgstr "" + +#: src/gui/compatFlags.cpp:280 +msgid "only when time is less than speed (like DefleMask/ProTracker)" +msgstr "" + +#: src/gui/compatFlags.cpp:282 +msgid "Strict (old)" +msgstr "" + +#: src/gui/compatFlags.cpp:286 +msgid "only when time is less than or equal to speed (original buggy behavior)" +msgstr "" + +#: src/gui/compatFlags.cpp:292 +msgid "no checks" +msgstr "" + +#: src/gui/compatFlags.cpp:296 +msgid "Simultaneous jump (0B+0D) treatment:" +msgstr "" + +#: src/gui/compatFlags.cpp:302 +msgid "accept 0B+0D to jump to a specific row of an order" +msgstr "" + +#: src/gui/compatFlags.cpp:308 +msgid "only accept the first jump effect" +msgstr "" + +#: src/gui/compatFlags.cpp:314 +msgid "only accept 0Dxx" +msgstr "" + +#: src/gui/compatFlags.cpp:320 +msgid "Auto-insert one tick gap between notes" +msgstr "" + +#: src/gui/compatFlags.cpp:322 +msgid "" +"when enabled, a one-tick note cut will be inserted between non-legato/non-" +"portamento notes.\n" +"this simulates the behavior of some Amiga/SNES music engines.\n" +"\n" +"ineffective on C64." +msgstr "" + +#: src/gui/compatFlags.cpp:327 +msgid "Don't reset slides after note off" +msgstr "" + +#: src/gui/compatFlags.cpp:329 +msgid "when enabled, note off will not reset the channel's slide effect." +msgstr "" + +#: src/gui/compatFlags.cpp:331 +msgid "Don't reset portamento after reaching target" +msgstr "" + +#: src/gui/compatFlags.cpp:333 +msgid "" +"when enabled, the slide effect will not be disabled after it reaches its " +"target." +msgstr "" + +#: src/gui/compatFlags.cpp:335 +msgid "Continuous vibrato" +msgstr "" + +#: src/gui/compatFlags.cpp:337 +msgid "when enabled, vibrato phase/position will not be reset on a new note." +msgstr "" + +#: src/gui/compatFlags.cpp:339 +msgid "Pitch macro is not linear" +msgstr "" + +#: src/gui/compatFlags.cpp:341 +msgid "" +"when enabled, the pitch macro of an instrument is in frequency/period space." +msgstr "" + +#: src/gui/compatFlags.cpp:343 +msgid "Reset arpeggio effect position on new note" +msgstr "" + +#: src/gui/compatFlags.cpp:345 +msgid "when enabled, arpeggio effect (00xy) position is reset on a new note." +msgstr "" + +#: src/gui/compatFlags.cpp:347 +msgid "Volume scaling rounds up" +msgstr "" + +#: src/gui/compatFlags.cpp:349 +msgid "" +"when enabled, volume macros round up when applied\n" +"this prevents volume scaling from causing vol=0, which is silent on some " +"chips\n" +"\n" +"ineffective on logarithmic channels" +msgstr "" + +#: src/gui/guiConst.cpp:127 +msgid "Generic Sample" +msgstr "" + +#: src/gui/guiConst.cpp:155 +msgid "OPL (drums)" +msgstr "" + +#: src/gui/guiConst.cpp:191 +msgid "Forward" +msgstr "" + +#: src/gui/guiConst.cpp:192 +msgid "Backward" +msgstr "" + +#: src/gui/guiConst.cpp:193 +msgid "Ping pong" +msgstr "" + +#: src/gui/guiConst.cpp:218 +msgid "linear" +msgstr "" + +#: src/gui/guiConst.cpp:219 +msgid "cubic spline" +msgstr "" + +#: src/gui/guiConst.cpp:220 +msgid "blep synthesis" +msgstr "" + +#: src/gui/guiConst.cpp:221 +msgid "sinc" +msgstr "" + +#: src/gui/guiConst.cpp:222 +msgid "best possible" +msgstr "" + +#: src/gui/guiConst.cpp:226 src/gui/sampleEdit.cpp:137 +#: src/gui/sampleEdit.cpp:143 +msgid "Invalid" +msgstr "" + +#: src/gui/guiConst.cpp:231 +msgid "Time" +msgstr "" + +#: src/gui/guiConst.cpp:233 +msgid "System (Primary)" +msgstr "" + +#: src/gui/guiConst.cpp:234 +msgid "System (Secondary)" +msgstr "" + +#: src/gui/guiConst.cpp:530 +msgid "---Global" +msgstr "" + +#: src/gui/guiConst.cpp:532 +msgid "Open file" +msgstr "" + +#: src/gui/guiConst.cpp:533 +msgid "Restore backup" +msgstr "" + +#: src/gui/guiConst.cpp:534 +msgid "Save file" +msgstr "" + +#: src/gui/guiConst.cpp:535 +msgid "Save as" +msgstr "" + +#: src/gui/guiConst.cpp:537 src/gui/sampleEdit.cpp:982 +msgid "Undo" +msgstr "" + +#: src/gui/guiConst.cpp:539 src/gui/guiConst.cpp:541 src/gui/sampleEdit.cpp:989 +msgid "Redo" +msgstr "" + +#: src/gui/guiConst.cpp:543 +msgid "Exit" +msgstr "" + +#: src/gui/guiConst.cpp:544 +msgid "Play/Stop (toggle)" +msgstr "" + +#: src/gui/guiConst.cpp:547 +msgid "Play (from beginning)" +msgstr "" + +#: src/gui/guiConst.cpp:548 +msgid "Play (repeat pattern)" +msgstr "" + +#: src/gui/guiConst.cpp:549 +msgid "Play from cursor" +msgstr "" + +#: src/gui/guiConst.cpp:550 +msgid "Step row" +msgstr "" + +#: src/gui/guiConst.cpp:551 +msgid "Octave up" +msgstr "" + +#: src/gui/guiConst.cpp:552 +msgid "Octave down" +msgstr "" + +#: src/gui/guiConst.cpp:553 +msgid "Previous instrument" +msgstr "" + +#: src/gui/guiConst.cpp:554 +msgid "Next instrument" +msgstr "" + +#: src/gui/guiConst.cpp:555 +msgid "Increase edit step" +msgstr "" + +#: src/gui/guiConst.cpp:556 +msgid "Decrease edit step" +msgstr "" + +#: src/gui/guiConst.cpp:557 +msgid "Toggle edit mode" +msgstr "" + +#: src/gui/guiConst.cpp:559 +msgid "Toggle repeat pattern" +msgstr "" + +#: src/gui/guiConst.cpp:562 +msgid "Toggle full-screen" +msgstr "" + +#: src/gui/guiConst.cpp:563 +msgid "Request voice from TX81Z" +msgstr "" + +#: src/gui/guiConst.cpp:565 +msgid "Clear song data" +msgstr "" + +#: src/gui/guiConst.cpp:567 src/gui/gui.cpp:5573 src/gui/gui.cpp:5625 +msgid "Command Palette" +msgstr "" + +#: src/gui/guiConst.cpp:569 +msgid "Recent files (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:570 +msgid "Instruments (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:571 +msgid "Samples (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:572 +msgid "Change instrument (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:573 +msgid "Add chip (Palette)" +msgstr "" + +#: src/gui/guiConst.cpp:578 +msgid "Instrument List" +msgstr "" + +#: src/gui/guiConst.cpp:579 src/gui/insEdit.cpp:5203 +msgid "Instrument Editor" +msgstr "" + +#: src/gui/guiConst.cpp:580 +msgid "Song Information" +msgstr "" + +#: src/gui/guiConst.cpp:583 +msgid "Wavetable List" +msgstr "" + +#: src/gui/guiConst.cpp:584 src/gui/waveEdit.cpp:409 +msgid "Wavetable Editor" +msgstr "" + +#: src/gui/guiConst.cpp:585 +msgid "Sample List" +msgstr "" + +#: src/gui/guiConst.cpp:594 +msgid "Debug Menu" +msgstr "" + +#: src/gui/guiConst.cpp:595 +msgid "Oscilloscope (master)" +msgstr "" + +#: src/gui/guiConst.cpp:603 src/gui/sysManager.cpp:41 +msgid "Chip Manager" +msgstr "" + +#: src/gui/guiConst.cpp:614 src/gui/csPlayer.cpp:112 +msgid "Command Stream Player" +msgstr "" + +#: src/gui/guiConst.cpp:615 +msgid "User Presets" +msgstr "" + +#: src/gui/guiConst.cpp:617 +msgid "Collapse/expand current window" +msgstr "" + +#: src/gui/guiConst.cpp:618 +msgid "Close current window" +msgstr "" + +#: src/gui/guiConst.cpp:621 +msgid "---Pattern" +msgstr "" + +#: src/gui/guiConst.cpp:622 +msgid "Transpose (+1)" +msgstr "" + +#: src/gui/guiConst.cpp:623 +msgid "Transpose (-1)" +msgstr "" + +#: src/gui/guiConst.cpp:624 +msgid "Transpose (+1 octave)" +msgstr "" + +#: src/gui/guiConst.cpp:625 +msgid "Transpose (-1 octave)" +msgstr "" + +#: src/gui/guiConst.cpp:626 +msgid "Increase values (+1)" +msgstr "" + +#: src/gui/guiConst.cpp:627 +msgid "Increase values (-1)" +msgstr "" + +#: src/gui/guiConst.cpp:628 +msgid "Increase values (+16)" +msgstr "" + +#: src/gui/guiConst.cpp:629 +msgid "Increase values (-16)" +msgstr "" + +#: src/gui/guiConst.cpp:630 +msgid "Select all" +msgstr "" + +#: src/gui/guiConst.cpp:631 +msgid "Cut" +msgstr "" + +#: src/gui/guiConst.cpp:632 +msgid "Copy" +msgstr "" + +#: src/gui/guiConst.cpp:633 +msgid "Paste" +msgstr "" + +#: src/gui/guiConst.cpp:634 +msgid "Paste Mix (foreground)" +msgstr "" + +#: src/gui/guiConst.cpp:635 +msgid "Paste Mix (background)" +msgstr "" + +#: src/gui/guiConst.cpp:636 +msgid "Paste Flood" +msgstr "" + +#: src/gui/guiConst.cpp:637 +msgid "Paste Overflow" +msgstr "" + +#: src/gui/guiConst.cpp:638 +msgid "Move cursor up" +msgstr "" + +#: src/gui/guiConst.cpp:639 +msgid "Move cursor down" +msgstr "" + +#: src/gui/guiConst.cpp:640 +msgid "Move cursor left" +msgstr "" + +#: src/gui/guiConst.cpp:641 +msgid "Move cursor right" +msgstr "" + +#: src/gui/guiConst.cpp:642 +msgid "Move cursor up by one (override Edit Step)" +msgstr "" + +#: src/gui/guiConst.cpp:643 +msgid "Move cursor down by one (override Edit Step)" +msgstr "" + +#: src/gui/guiConst.cpp:644 +msgid "Move cursor to previous channel" +msgstr "" + +#: src/gui/guiConst.cpp:645 +msgid "Move cursor to next channel" +msgstr "" + +#: src/gui/guiConst.cpp:646 +msgid "Move cursor to next channel (overflow)" +msgstr "" + +#: src/gui/guiConst.cpp:647 +msgid "Move cursor to previous channel (overflow)" +msgstr "" + +#: src/gui/guiConst.cpp:648 +msgid "Move cursor to beginning of pattern" +msgstr "" + +#: src/gui/guiConst.cpp:649 +msgid "Move cursor to end of pattern" +msgstr "" + +#: src/gui/guiConst.cpp:650 +msgid "Move cursor up (coarse)" +msgstr "" + +#: src/gui/guiConst.cpp:651 +msgid "Move cursor down (coarse)" +msgstr "" + +#: src/gui/guiConst.cpp:652 +msgid "Expand selection upwards" +msgstr "" + +#: src/gui/guiConst.cpp:653 +msgid "Expand selection downwards" +msgstr "" + +#: src/gui/guiConst.cpp:654 +msgid "Expand selection to the left" +msgstr "" + +#: src/gui/guiConst.cpp:655 +msgid "Expand selection to the right" +msgstr "" + +#: src/gui/guiConst.cpp:656 +msgid "Expand selection upwards by one (override Edit Step)" +msgstr "" + +#: src/gui/guiConst.cpp:657 +msgid "Expand selection downwards by one (override Edit Step)" +msgstr "" + +#: src/gui/guiConst.cpp:658 +msgid "Expand selection to beginning of pattern" +msgstr "" + +#: src/gui/guiConst.cpp:659 +msgid "Expand selection to end of pattern" +msgstr "" + +#: src/gui/guiConst.cpp:660 +msgid "Expand selection upwards (coarse)" +msgstr "" + +#: src/gui/guiConst.cpp:661 +msgid "Expand selection downwards (coarse)" +msgstr "" + +#: src/gui/guiConst.cpp:662 +msgid "Move selection up" +msgstr "" + +#: src/gui/guiConst.cpp:663 +msgid "Move selection down" +msgstr "" + +#: src/gui/guiConst.cpp:664 +msgid "Move selection to previous channel" +msgstr "" + +#: src/gui/guiConst.cpp:665 +msgid "Move selection to next channel" +msgstr "" + +#: src/gui/guiConst.cpp:667 +msgid "Pull delete" +msgstr "" + +#: src/gui/guiConst.cpp:668 +msgid "Insert" +msgstr "" + +#: src/gui/guiConst.cpp:669 +msgid "Mute channel at cursor" +msgstr "" + +#: src/gui/guiConst.cpp:670 +msgid "Solo channel at cursor" +msgstr "" + +#: src/gui/guiConst.cpp:671 +msgid "Unmute all channels" +msgstr "" + +#: src/gui/guiConst.cpp:672 +msgid "Go to next order" +msgstr "" + +#: src/gui/guiConst.cpp:673 +msgid "Go to previous order" +msgstr "" + +#: src/gui/guiConst.cpp:674 +msgid "Collapse channel at cursor" +msgstr "" + +#: src/gui/guiConst.cpp:675 +msgid "Increase effect columns" +msgstr "" + +#: src/gui/guiConst.cpp:676 +msgid "Decrease effect columns" +msgstr "" + +#: src/gui/guiConst.cpp:677 +msgid "Interpolate" +msgstr "" + +#: src/gui/guiConst.cpp:678 src/gui/insEdit.cpp:530 +msgid "Fade" +msgstr "" + +#: src/gui/guiConst.cpp:679 +msgid "Invert values" +msgstr "" + +#: src/gui/guiConst.cpp:680 +msgid "Flip selection" +msgstr "" + +#: src/gui/guiConst.cpp:681 +msgid "Collapse rows" +msgstr "" + +#: src/gui/guiConst.cpp:682 +msgid "Expand rows" +msgstr "" + +#: src/gui/guiConst.cpp:683 +msgid "Collapse pattern" +msgstr "" + +#: src/gui/guiConst.cpp:684 +msgid "Expand pattern" +msgstr "" + +#: src/gui/guiConst.cpp:685 +msgid "Collapse song" +msgstr "" + +#: src/gui/guiConst.cpp:686 +msgid "Expand song" +msgstr "" + +#: src/gui/guiConst.cpp:687 +msgid "Set note input latch" +msgstr "" + +#: src/gui/guiConst.cpp:688 +msgid "Change mobile scroll mode" +msgstr "" + +#: src/gui/guiConst.cpp:689 +msgid "Clear note input latch" +msgstr "" + +#: src/gui/guiConst.cpp:692 +msgid "---Instrument list" +msgstr "" + +#: src/gui/guiConst.cpp:693 +msgid "Add instrument" +msgstr "" + +#: src/gui/guiConst.cpp:694 +msgid "Duplicate instrument" +msgstr "" + +#: src/gui/guiConst.cpp:695 +msgid "Open instrument" +msgstr "" + +#: src/gui/guiConst.cpp:696 +msgid "Open instrument (replace current)" +msgstr "" + +#: src/gui/guiConst.cpp:697 +msgid "Save instrument" +msgstr "" + +#: src/gui/guiConst.cpp:698 +msgid "Save instrument (.dmp)" +msgstr "" + +#: src/gui/guiConst.cpp:699 +msgid "Move instrument up in list" +msgstr "" + +#: src/gui/guiConst.cpp:700 +msgid "Move instrument down in list" +msgstr "" + +#: src/gui/guiConst.cpp:701 +msgid "Delete instrument" +msgstr "" + +#: src/gui/guiConst.cpp:702 +msgid "Edit instrument" +msgstr "" + +#: src/gui/guiConst.cpp:703 +msgid "Instrument cursor up" +msgstr "" + +#: src/gui/guiConst.cpp:704 +msgid "Instrument cursor down" +msgstr "" + +#: src/gui/guiConst.cpp:705 +msgid "Instruments: toggle folders/standard view" +msgstr "" + +#: src/gui/guiConst.cpp:708 +msgid "---Wavetable list" +msgstr "" + +#: src/gui/guiConst.cpp:709 +msgid "Add wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:710 +msgid "Duplicate wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:711 +msgid "Open wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:712 +msgid "Open wavetable (replace current)" +msgstr "" + +#: src/gui/guiConst.cpp:713 +msgid "Save wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:714 +msgid "Save wavetable (.dmw)" +msgstr "" + +#: src/gui/guiConst.cpp:715 +msgid "Save wavetable (raw)" +msgstr "" + +#: src/gui/guiConst.cpp:716 +msgid "Move wavetable up in list" +msgstr "" + +#: src/gui/guiConst.cpp:717 +msgid "Move wavetable down in list" +msgstr "" + +#: src/gui/guiConst.cpp:718 +msgid "Delete wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:719 +msgid "Edit wavetable" +msgstr "" + +#: src/gui/guiConst.cpp:720 +msgid "Wavetable cursor up" +msgstr "" + +#: src/gui/guiConst.cpp:721 +msgid "Wavetable cursor down" +msgstr "" + +#: src/gui/guiConst.cpp:722 +msgid "Wavetables: toggle folders/standard view" +msgstr "" + +#: src/gui/guiConst.cpp:725 +msgid "---Sample list" +msgstr "" + +#: src/gui/guiConst.cpp:726 +msgid "Add sample" +msgstr "" + +#: src/gui/guiConst.cpp:727 +msgid "Duplicate sample" +msgstr "" + +#: src/gui/guiConst.cpp:728 +msgid "Open sample" +msgstr "" + +#: src/gui/guiConst.cpp:729 +msgid "Open sample (replace current)" +msgstr "" + +#: src/gui/guiConst.cpp:730 +msgid "Import raw sample data" +msgstr "" + +#: src/gui/guiConst.cpp:731 +msgid "Import raw sample data (replace current)" +msgstr "" + +#: src/gui/guiConst.cpp:732 +msgid "Save sample" +msgstr "" + +#: src/gui/guiConst.cpp:733 +msgid "Save sample (raw)" +msgstr "" + +#: src/gui/guiConst.cpp:734 +msgid "Move sample up in list" +msgstr "" + +#: src/gui/guiConst.cpp:735 +msgid "Move sample down in list" +msgstr "" + +#: src/gui/guiConst.cpp:736 +msgid "Delete sample" +msgstr "" + +#: src/gui/guiConst.cpp:737 +msgid "Edit sample" +msgstr "" + +#: src/gui/guiConst.cpp:738 +msgid "Sample cursor up" +msgstr "" + +#: src/gui/guiConst.cpp:739 +msgid "Sample cursor down" +msgstr "" + +#: src/gui/guiConst.cpp:741 src/gui/sampleEdit.cpp:1339 +msgid "Stop sample preview" +msgstr "" + +#: src/gui/guiConst.cpp:742 +msgid "Samples: Toggle folders/standard view" +msgstr "" + +#: src/gui/guiConst.cpp:743 +msgid "Samples: Make me a drum kit" +msgstr "" + +#: src/gui/guiConst.cpp:746 +msgid "---Sample editor" +msgstr "" + +#: src/gui/guiConst.cpp:747 +msgid "Sample editor mode: Select" +msgstr "" + +#: src/gui/guiConst.cpp:748 +msgid "Sample editor mode: Draw" +msgstr "" + +#: src/gui/guiConst.cpp:749 +msgid "Sample editor: Cut" +msgstr "" + +#: src/gui/guiConst.cpp:750 +msgid "Sample editor: Copy" +msgstr "" + +#: src/gui/guiConst.cpp:751 +msgid "Sample editor: Paste" +msgstr "" + +#: src/gui/guiConst.cpp:752 +msgid "Sample editor: Paste replace" +msgstr "" + +#: src/gui/guiConst.cpp:753 +msgid "Sample editor: Paste mix" +msgstr "" + +#: src/gui/guiConst.cpp:754 +msgid "Sample editor: Select all" +msgstr "" + +#: src/gui/guiConst.cpp:755 +msgid "Sample editor: Resize" +msgstr "" + +#: src/gui/guiConst.cpp:756 +msgid "Sample editor: Resample" +msgstr "" + +#: src/gui/guiConst.cpp:757 +msgid "Sample editor: Amplify" +msgstr "" + +#: src/gui/guiConst.cpp:758 +msgid "Sample editor: Normalize" +msgstr "" + +#: src/gui/guiConst.cpp:759 +msgid "Sample editor: Fade in" +msgstr "" + +#: src/gui/guiConst.cpp:760 +msgid "Sample editor: Fade out" +msgstr "" + +#: src/gui/guiConst.cpp:761 +msgid "Sample editor: Apply silence" +msgstr "" + +#: src/gui/guiConst.cpp:762 +msgid "Sample editor: Insert silence" +msgstr "" + +#: src/gui/guiConst.cpp:763 +msgid "Sample editor: Delete" +msgstr "" + +#: src/gui/guiConst.cpp:764 +msgid "Sample editor: Trim" +msgstr "" + +#: src/gui/guiConst.cpp:765 +msgid "Sample editor: Reverse" +msgstr "" + +#: src/gui/guiConst.cpp:766 +msgid "Sample editor: Invert" +msgstr "" + +#: src/gui/guiConst.cpp:767 +msgid "Sample editor: Signed/unsigned exchange" +msgstr "" + +#: src/gui/guiConst.cpp:768 +msgid "Sample editor: Apply filter" +msgstr "" + +#: src/gui/guiConst.cpp:769 +msgid "Sample editor: Crossfade loop points" +msgstr "" + +#: src/gui/guiConst.cpp:770 +msgid "Sample editor: Preview sample" +msgstr "" + +#: src/gui/guiConst.cpp:771 +msgid "Sample editor: Stop sample preview" +msgstr "" + +#: src/gui/guiConst.cpp:772 +msgid "Sample editor: Zoom in" +msgstr "" + +#: src/gui/guiConst.cpp:773 +msgid "Sample editor: Zoom out" +msgstr "" + +#: src/gui/guiConst.cpp:774 +msgid "Sample editor: Toggle auto-zoom" +msgstr "" + +#: src/gui/guiConst.cpp:775 +msgid "Sample editor: Create instrument from sample" +msgstr "" + +#: src/gui/guiConst.cpp:776 +msgid "Sample editor: Set loop to selection" +msgstr "" + +#: src/gui/guiConst.cpp:777 +msgid "Sample editor: Create wavetable from selection" +msgstr "" + +#: src/gui/guiConst.cpp:780 +msgid "---Orders" +msgstr "" + +#: src/gui/guiConst.cpp:781 +msgid "Previous order" +msgstr "" + +#: src/gui/guiConst.cpp:782 +msgid "Next order" +msgstr "" + +#: src/gui/guiConst.cpp:783 +msgid "Order cursor left" +msgstr "" + +#: src/gui/guiConst.cpp:784 +msgid "Order cursor right" +msgstr "" + +#: src/gui/guiConst.cpp:785 +msgid "Increase order value" +msgstr "" + +#: src/gui/guiConst.cpp:786 +msgid "Decrease order value" +msgstr "" + +#: src/gui/guiConst.cpp:787 +msgid "Switch order edit mode" +msgstr "" + +#: src/gui/guiConst.cpp:788 +msgid "Order: toggle alter entire row" +msgstr "" + +#: src/gui/guiConst.cpp:789 +msgid "Add order" +msgstr "" + +#: src/gui/guiConst.cpp:790 +msgid "Duplicate order" +msgstr "" + +#: src/gui/guiConst.cpp:791 +msgid "Deep clone order" +msgstr "" + +#: src/gui/guiConst.cpp:792 +msgid "Copy current order to end of song" +msgstr "" + +#: src/gui/guiConst.cpp:793 +msgid "Deep clone current order to end of song" +msgstr "" + +#: src/gui/guiConst.cpp:797 +msgid "Replay order" +msgstr "" + +#: src/gui/guiConst.cpp:1392 +msgid "All chips" +msgstr "" + +#: src/gui/guiConst.cpp:1396 src/gui/insEdit.cpp:6954 src/gui/insEdit.cpp:7204 +#: src/gui/insEdit.cpp:7458 src/gui/insEdit.cpp:7480 +msgid "Special" +msgstr "" + +#: src/gui/piano.cpp:103 +msgid "Options" +msgstr "" + +#: src/gui/piano.cpp:106 +msgid "Key layout:" +msgstr "" + +#: src/gui/piano.cpp:111 +msgid "Standard" +msgstr "" + +#: src/gui/piano.cpp:114 +msgid "Continuous" +msgstr "" + +#: src/gui/piano.cpp:118 +msgid "Value input pad:" +msgstr "" + +#: src/gui/piano.cpp:120 +msgid "Disabled" +msgstr "" + +#: src/gui/piano.cpp:123 +msgid "Replace piano" +msgstr "" + +#: src/gui/piano.cpp:126 +msgid "Split (automatic)" +msgstr "" + +#: src/gui/piano.cpp:129 +msgid "Split (always visible)" +msgstr "" + +#: src/gui/piano.cpp:133 +msgid "Share play/edit offset/range" +msgstr "" + +#: src/gui/piano.cpp:134 +msgid "Read-only (can't input notes)" +msgstr "" + +#: src/gui/waveEdit.cpp:30 src/gui/waveEdit.cpp:192 src/gui/insEdit.cpp:177 +#: src/gui/insEdit.cpp:188 src/gui/insEdit.cpp:199 +msgid "Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:32 src/gui/waveEdit.cpp:202 src/gui/insEdit.cpp:325 +#: src/gui/insEdit.cpp:654 +msgid "Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:39 +msgid "Cosine" +msgstr "" + +#: src/gui/waveEdit.cpp:193 +msgid "Rect. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:194 +msgid "Abs. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:195 +msgid "Quart. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:196 +msgid "Squish. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:197 +msgid "Abs. Squish. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:200 +msgid "rectSquare" +msgstr "" + +#: src/gui/waveEdit.cpp:203 +msgid "Rect. Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:204 +msgid "Abs. Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:206 +msgid "Cubed Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:207 +msgid "Rect. Cubed Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:208 +msgid "Abs. Cubed Saw" +msgstr "" + +#: src/gui/waveEdit.cpp:210 +msgid "Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:211 +msgid "Rect. Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:212 +msgid "Abs. Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:213 +msgid "Quart. Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:214 +msgid "Squish. Cubed Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:215 +msgid "Squish. Abs. Cub. Sine" +msgstr "" + +#: src/gui/waveEdit.cpp:218 +msgid "Rect. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:219 +msgid "Abs. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:220 +msgid "Quart. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:221 +msgid "Squish. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:222 +msgid "Abs. Squish. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:224 +msgid "Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:225 +msgid "Rect. Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:226 +msgid "Abs. Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:227 +msgid "Quart. Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:228 +msgid "Squish. Cubed Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:229 +msgid "Squish. Abs. Cub. Triangle" +msgstr "" + +#: src/gui/waveEdit.cpp:412 src/gui/waveEdit.cpp:413 +msgid "no wavetable selected" +msgstr "" + +#: src/gui/waveEdit.cpp:424 src/gui/sampleEdit.cpp:111 src/gui/insEdit.cpp:5223 +msgid "select one..." +msgstr "" + +#: src/gui/waveEdit.cpp:432 src/gui/waveEdit.cpp:439 src/gui/sampleEdit.cpp:119 +#: src/gui/sampleEdit.cpp:126 src/gui/insEdit.cpp:5236 src/gui/insEdit.cpp:5243 +msgid "or" +msgstr "" + +#: src/gui/waveEdit.cpp:441 src/gui/sampleEdit.cpp:128 src/gui/insEdit.cpp:5245 +msgid "Create New" +msgstr "" + +#: src/gui/waveEdit.cpp:487 +msgid "Steps" +msgstr "" + +#: src/gui/waveEdit.cpp:491 +msgid "Lines" +msgstr "" + +#: src/gui/waveEdit.cpp:496 src/gui/insEdit.cpp:2687 +msgid "Width" +msgstr "" + +#: src/gui/waveEdit.cpp:498 +msgid "" +"use a width of:\n" +"- any on Amiga/N163\n" +"- 32 on Game Boy, PC Engine, SCC, Konami Bubble System, Namco WSG, Virtual " +"Boy and WonderSwan\n" +"- 64 on FDS\n" +"- 128 on X1-010\n" +"any other widths will be scaled during playback." +msgstr "" + +#: src/gui/waveEdit.cpp:510 +msgid "Height" +msgstr "" + +#: src/gui/waveEdit.cpp:512 +msgid "" +"use a height of:\n" +"- 16 for Game Boy, WonderSwan, Namco WSG, Konami Bubble System, X1-010 " +"Envelope shape and N163\n" +"- 32 for PC Engine\n" +"- 64 for FDS and Virtual Boy\n" +"- 256 for X1-010 and SCC\n" +"any other heights will be scaled during playback." +msgstr "" + +#: src/gui/waveEdit.cpp:578 +msgid "Shapes" +msgstr "" + +#: src/gui/waveEdit.cpp:597 src/gui/insEdit.cpp:5879 src/gui/insEdit.cpp:6922 +#: src/gui/insEdit.cpp:6948 src/gui/insEdit.cpp:7008 src/gui/insEdit.cpp:7048 +#: src/gui/insEdit.cpp:7150 src/gui/insEdit.cpp:7436 src/gui/insEdit.cpp:7472 +msgid "Duty" +msgstr "" + +#: src/gui/waveEdit.cpp:607 +msgid "Exponent" +msgstr "" + +#: src/gui/waveEdit.cpp:617 +msgid "XOR Point" +msgstr "" + +#: src/gui/waveEdit.cpp:627 +msgid "Amplitude/Phase" +msgstr "" + +#: src/gui/waveEdit.cpp:679 src/gui/waveEdit.cpp:723 src/gui/waveEdit.cpp:728 +msgid "Op" +msgstr "" + +#: src/gui/waveEdit.cpp:683 +msgid "Mult" +msgstr "" + +#: src/gui/waveEdit.cpp:685 +msgid "FB" +msgstr "" + +#: src/gui/waveEdit.cpp:749 src/gui/waveEdit.cpp:750 +msgid "Connection Diagram" +msgstr "" + +#: src/gui/waveEdit.cpp:765 +msgid "Out" +msgstr "" + +#: src/gui/waveEdit.cpp:872 +msgid "WaveTools" +msgstr "" + +#: src/gui/waveEdit.cpp:890 +msgid "Scale X" +msgstr "" + +#: src/gui/waveEdit.cpp:896 +msgid "wavetable longer than 256 samples!" +msgstr "" + +#: src/gui/waveEdit.cpp:960 +msgid "Scale Y" +msgstr "" + +#: src/gui/waveEdit.cpp:978 +msgid "Offset X" +msgstr "" + +#: src/gui/waveEdit.cpp:1000 +msgid "Offset Y" +msgstr "" + +#: src/gui/waveEdit.cpp:1017 +msgid "Smooth" +msgstr "" + +#: src/gui/waveEdit.cpp:1045 src/gui/sampleEdit.cpp:996 +msgid "Amplify" +msgstr "" + +#: src/gui/waveEdit.cpp:1063 src/gui/sampleEdit.cpp:1046 +msgid "Normalize" +msgstr "" + +#: src/gui/waveEdit.cpp:1105 src/gui/sampleEdit.cpp:1121 +msgid "Reverse" +msgstr "" + +#: src/gui/waveEdit.cpp:1117 +msgid "Half" +msgstr "" + +#: src/gui/waveEdit.cpp:1127 +msgid "Double" +msgstr "" + +#: src/gui/waveEdit.cpp:1137 +msgid "Convert Signed/Unsigned" +msgstr "" + +#: src/gui/waveEdit.cpp:1167 +msgid "Dec" +msgstr "" + +#: src/gui/waveEdit.cpp:1171 src/gui/csPlayer.cpp:247 +msgid "Hex" +msgstr "" + +#: src/gui/waveEdit.cpp:1179 +msgid "Signed/Unsigned" +msgstr "" + +#: src/gui/sampleEdit.cpp:65 +#, c-format +msgid "%s: maximum sample rate is %d" +msgstr "" + +#: src/gui/sampleEdit.cpp:72 +#, c-format +msgid "%s: minimum sample rate is %d" +msgstr "" + +#: src/gui/sampleEdit.cpp:79 +#, c-format +msgid "%s: sample rate must be %d" +msgstr "" + +#: src/gui/sampleEdit.cpp:99 src/gui/sampleEdit.cpp:100 +msgid "no sample selected" +msgstr "" + +#: src/gui/sampleEdit.cpp:229 +#, c-format +msgid "SNES: loop start must be a multiple of 16 (try with %d)" +msgstr "" + +#: src/gui/sampleEdit.cpp:235 +#, c-format +msgid "SNES: loop end must be a multiple of 16 (try with %d)" +msgstr "" + +#: src/gui/sampleEdit.cpp:240 +msgid "SNES: sample length will be padded to multiple of 16" +msgstr "" + +#: src/gui/sampleEdit.cpp:249 +msgid "QSound: loop cannot be longer than 32767 samples" +msgstr "" + +#: src/gui/sampleEdit.cpp:259 +msgid "NES: loop point ignored on DPCM (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:263 +msgid "NES: maximum DPCM sample length is 32648" +msgstr "" + +#: src/gui/sampleEdit.cpp:268 +msgid "X1-010: samples can't loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:271 +msgid "X1-010: maximum sample length is 131072" +msgstr "" + +#: src/gui/sampleEdit.cpp:276 +msgid "GA20: samples can't loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:287 +msgid "YM2608: loop point ignored on ADPCM (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:290 +msgid "YM2608: sample length will be padded to multiple of 512" +msgstr "" + +#: src/gui/sampleEdit.cpp:300 +msgid "YM2610: ADPCM-A samples can't loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:302 +msgid "YM2610: loop point ignored on ADPCM-B (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:305 +msgid "YM2610: sample length will be padded to multiple of 512" +msgstr "" + +#: src/gui/sampleEdit.cpp:309 +msgid "YM2610: maximum ADPCM-A sample length is 2097152" +msgstr "" + +#: src/gui/sampleEdit.cpp:318 +msgid "Y8950: loop point ignored on ADPCM (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:321 +msgid "Y8950: sample length will be padded to multiple of 512" +msgstr "" + +#: src/gui/sampleEdit.cpp:328 +msgid "Amiga: loop start must be a multiple of 2" +msgstr "" + +#: src/gui/sampleEdit.cpp:331 +msgid "Amiga: loop end must be a multiple of 2" +msgstr "" + +#: src/gui/sampleEdit.cpp:335 +msgid "Amiga: maximum sample length is 131070" +msgstr "" + +#: src/gui/sampleEdit.cpp:344 +msgid "SegaPCM: maximum sample length is 65280" +msgstr "" + +#: src/gui/sampleEdit.cpp:353 +msgid "K053260: loop point ignored (may only loop entire sample)" +msgstr "" + +#: src/gui/sampleEdit.cpp:357 +msgid "K053260: maximum sample length is 65535" +msgstr "" + +#: src/gui/sampleEdit.cpp:362 +msgid "C140: maximum sample length is 65535" +msgstr "" + +#: src/gui/sampleEdit.cpp:371 +msgid "C219: loop start must be a multiple of 2" +msgstr "" + +#: src/gui/sampleEdit.cpp:374 +msgid "C219: loop end must be a multiple of 2" +msgstr "" + +#: src/gui/sampleEdit.cpp:378 +msgid "C219: maximum sample length is 131072" +msgstr "" + +#: src/gui/sampleEdit.cpp:386 +msgid "MSM6295: samples can't loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:389 +msgid "MSM6295: maximum bankswitched sample length is 129024" +msgstr "" + +#: src/gui/sampleEdit.cpp:395 +msgid "GBA DMA: loop start must be a multiple of 4" +msgstr "" + +#: src/gui/sampleEdit.cpp:398 +msgid "GBA DMA: loop length must be a multiple of 16" +msgstr "" + +#: src/gui/sampleEdit.cpp:402 +msgid "GBA DMA: sample length will be padded to multiple of 16" +msgstr "" + +#: src/gui/sampleEdit.cpp:411 +msgid "ES5506: backward loop mode isn't supported" +msgstr "" + +#: src/gui/sampleEdit.cpp:414 +msgid "" +"backward/ping-pong only supported in Generic PCM DAC\n" +"ping-pong also on ES5506" +msgstr "" + +#: src/gui/sampleEdit.cpp:444 +msgid "Info" +msgstr "" + +#: src/gui/sampleEdit.cpp:447 src/gui/sampleEdit.cpp:933 +msgid "Rate" +msgstr "" + +#: src/gui/sampleEdit.cpp:453 +msgid "Compat Rate" +msgstr "" + +#: src/gui/sampleEdit.cpp:457 +msgid "" +"used in DefleMask-compatible sample mode (17xx), in where samples are mapped " +"to an octave." +msgstr "" + +#: src/gui/sampleEdit.cpp:463 +#, c-format +msgid "Loop (length: %d)##Loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:463 src/gui/insEdit.cpp:544 src/gui/insEdit.cpp:554 +#: src/gui/insEdit.cpp:605 src/gui/insEdit.cpp:6017 +msgid "Loop" +msgstr "" + +#: src/gui/sampleEdit.cpp:487 src/gui/sampleEdit.cpp:716 +#: src/gui/sampleEdit.cpp:752 +msgid "changing the loop in a BRR sample may result in glitches!" +msgstr "" + +#: src/gui/sampleEdit.cpp:529 +msgid "BRR emphasis" +msgstr "" + +#: src/gui/sampleEdit.cpp:538 +msgid "" +"this is a BRR sample.\n" +"enabling this option will muffle it (only affects non-SNES chips)." +msgstr "" + +#: src/gui/sampleEdit.cpp:540 +msgid "" +"enable this option to slightly boost high frequencies\n" +"to compensate for the SNES' Gaussian filter's muffle." +msgstr "" + +#: src/gui/sampleEdit.cpp:546 +msgid "8-bit dither" +msgstr "" + +#: src/gui/sampleEdit.cpp:554 +msgid "dither the sample when used on a chip that only supports 8-bit samples." +msgstr "" + +#: src/gui/sampleEdit.cpp:695 src/gui/gui.cpp:2975 +msgid "Start" +msgstr "" + +#: src/gui/sampleEdit.cpp:731 src/gui/gui.cpp:2983 +msgid "End" +msgstr "" + +#: src/gui/sampleEdit.cpp:841 +#, c-format +msgid "" +"%s\n" +"%d bytes free" +msgstr "" + +#: src/gui/sampleEdit.cpp:843 +#, c-format +msgid "" +"%s (%s)\n" +"%d bytes free" +msgstr "" + +#: src/gui/sampleEdit.cpp:847 +msgid "" +"\n" +"\n" +"not enough memory for this sample!" +msgstr "" + +#: src/gui/sampleEdit.cpp:871 +msgid "Edit mode: Select" +msgstr "" + +#: src/gui/sampleEdit.cpp:880 +msgid "Edit mode: Draw" +msgstr "" + +#: src/gui/sampleEdit.cpp:891 src/gui/sampleEdit.cpp:902 +msgid "Resize" +msgstr "" + +#: src/gui/sampleEdit.cpp:906 +msgid "couldn't resize! make sure your sample is 8 or 16-bit." +msgstr "" + +#: src/gui/sampleEdit.cpp:926 src/gui/sampleEdit.cpp:957 +msgid "Resample" +msgstr "" + +#: src/gui/sampleEdit.cpp:951 +msgid "Factor" +msgstr "" + +#: src/gui/sampleEdit.cpp:956 +msgid "Filter" +msgstr "" + +#: src/gui/sampleEdit.cpp:961 +msgid "couldn't resample! make sure your sample is 8 or 16-bit." +msgstr "" + +#: src/gui/sampleEdit.cpp:1010 src/gui/sampleEdit.cpp:1197 +#: src/gui/sampleEdit.cpp:1281 +msgid "Apply" +msgstr "" + +#: src/gui/sampleEdit.cpp:1053 +msgid "Fade in" +msgstr "" + +#: src/gui/sampleEdit.cpp:1060 +msgid "Fade out" +msgstr "" + +#: src/gui/sampleEdit.cpp:1065 +msgid "Insert silence" +msgstr "" + +#: src/gui/sampleEdit.cpp:1076 +msgid "Go" +msgstr "" + +#: src/gui/sampleEdit.cpp:1081 +msgid "couldn't insert! make sure your sample is 8 or 16-bit." +msgstr "" + +#: src/gui/sampleEdit.cpp:1098 +msgid "Apply silence" +msgstr "" + +#: src/gui/sampleEdit.cpp:1112 +msgid "Trim" +msgstr "" + +#: src/gui/sampleEdit.cpp:1135 +msgid "Signed/unsigned exchange" +msgstr "" + +#: src/gui/sampleEdit.cpp:1140 +msgid "Apply filter" +msgstr "" + +#: src/gui/sampleEdit.cpp:1151 +msgid "Cutoff:" +msgstr "" + +#: src/gui/sampleEdit.cpp:1161 src/gui/insEdit.cpp:5895 +#: src/gui/insEdit.cpp:5898 src/gui/insEdit.cpp:6953 src/gui/insEdit.cpp:7216 +#: src/gui/insEdit.cpp:7478 +msgid "Resonance" +msgstr "" + +#: src/gui/sampleEdit.cpp:1167 src/gui/insEdit.cpp:6897 +msgid "Power" +msgstr "" + +#: src/gui/sampleEdit.cpp:1181 +msgid "Low-pass" +msgstr "" + +#: src/gui/sampleEdit.cpp:1186 +msgid "Band-pass" +msgstr "" + +#: src/gui/sampleEdit.cpp:1191 +msgid "High-pass" +msgstr "" + +#: src/gui/sampleEdit.cpp:1262 +msgid "Crossfade loop points" +msgstr "" + +#: src/gui/sampleEdit.cpp:1271 +msgid "Number of samples" +msgstr "" + +#: src/gui/sampleEdit.cpp:1277 +msgid "Linear <-> Equal power" +msgstr "" + +#: src/gui/sampleEdit.cpp:1283 +msgid "Crossfade: length would go out of bounds. Aborted..." +msgstr "" + +#: src/gui/sampleEdit.cpp:1286 +msgid "Crossfade: length would overflow loopStart. Try a smaller random value." +msgstr "" + +#: src/gui/sampleEdit.cpp:1332 +msgid "Preview sample" +msgstr "" + +#: src/gui/sampleEdit.cpp:1346 +msgid "Create instrument from sample" +msgstr "" + +#: src/gui/sampleEdit.cpp:1747 +msgid "paste (replace)" +msgstr "" + +#: src/gui/sampleEdit.cpp:1750 +msgid "paste (mix)" +msgstr "" + +#: src/gui/sampleEdit.cpp:1754 src/gui/gui.cpp:2769 +msgid "select all" +msgstr "" + +#: src/gui/sampleEdit.cpp:1758 +msgid "set loop to selection" +msgstr "" + +#: src/gui/sampleEdit.cpp:1761 +msgid "create wavetable from selection" +msgstr "" + +#: src/gui/sampleEdit.cpp:1767 +msgid "Draw" +msgstr "" + +#: src/gui/sampleEdit.cpp:1767 +msgid "Select" +msgstr "" + +#: src/gui/sampleEdit.cpp:1769 +#, c-format +msgid "%d samples, %d bytes" +msgstr "" + +#: src/gui/sampleEdit.cpp:1784 +#, c-format +msgid " (%d-%d: %d samples)" +msgstr "" + +#: src/gui/sampleEdit.cpp:1976 +msgid "Non-8/16-bit samples cannot be edited without prior conversion." +msgstr "" + +#: src/gui/newSong.cpp:122 src/gui/newSong.cpp:123 +msgid "Choose a System!" +msgstr "" + +#: src/gui/newSong.cpp:179 +msgid "Categories" +msgstr "" + +#: src/gui/newSong.cpp:210 +msgid "no systems here yet!" +msgstr "" + +#: src/gui/newSong.cpp:212 +msgid "no results" +msgstr "" + +#: src/gui/newSong.cpp:228 +msgid "I'm feeling lucky" +msgstr "" + +#: src/gui/newSong.cpp:230 +msgid "no categories available! what in the world." +msgstr "" + +#: src/gui/newSong.cpp:265 +msgid "it appears you're extremely lucky today!" +msgstr "" + +#: src/gui/cursor.cpp:205 +#, c-format +msgid "finish selection: %d.%d,%d - %d.%d,%d" +msgstr "" + +#: src/gui/tutorial.cpp:487 +msgid "" +"Play demo songs?\n" +"- Down: Play current song\n" +"- Up: Play demo songs" +msgstr "" + +#: src/gui/tutorial.cpp:491 +msgid "" +"Welcome to Combat Vehicle!\n" +"\n" +"Controls:\n" +"X - Shoot Arrow Key - Move\n" +"Z - Special Esc - Quit" +msgstr "" + +#: src/gui/tutorial.cpp:496 +msgid "GAME OVER" +msgstr "" + +#: src/gui/tutorial.cpp:498 +msgid "High Score!" +msgstr "" + +#: src/gui/tutorial.cpp:658 +msgid "Welcome!" +msgstr "" + +#: src/gui/tutorial.cpp:661 +msgid "welcome to Furnace, the biggest open-source chiptune tracker!" +msgstr "" + +#: src/gui/tutorial.cpp:665 +msgid "here are some tips to get you started:" +msgstr "" + +#: src/gui/tutorial.cpp:668 +msgid "" +"- add an instrument by clicking on + in Instruments\n" +"- click on the pattern view to focus it\n" +"- channel columns have the following, in this order: note, instrument, " +"volume and effects\n" +"- hit space bar while on the pattern to toggle Edit Mode\n" +"- click on the pattern or use arrow keys to move the cursor\n" +"- values (instrument, volume, effects and effect values) are in hexadecimal\n" +"- hit enter to play/stop the song\n" +"- extend the song by adding more orders in the Orders window\n" +"- click on the Orders matrix to change the patterns of a channel (left click " +"increases; right click decreases)" +msgstr "" + +#: src/gui/tutorial.cpp:680 +msgid "" +"if you need help, you may:\n" +"- read the manual (a file called manual.pdf)\n" +"- ask for help in Discussions (https://github.com/tildearrow/furnace/" +"discussions), the Furnace Discord (https://discord.gg/EfrwT2wq7z) or Furnace " +"in Revolt (official: https://rvlt.gg/GRPS6tmc)" +msgstr "" + +#: src/gui/tutorial.cpp:687 +msgid "" +"if you find any issues, be sure to report them! the issue tracker is here: " +"https://github.com/tildearrow/furnace/issues" +msgstr "" + +#: src/gui/tutorial.cpp:1428 +#, c-format +msgid "STAGE %d" +msgstr "" + +#: src/gui/songInfo.cpp:32 +msgid "Song Info##Song Information" +msgstr "" + +#: src/gui/songInfo.cpp:50 +msgid "Author" +msgstr "" + +#: src/gui/songInfo.cpp:60 +msgid "Album" +msgstr "" + +#: src/gui/songInfo.cpp:79 +msgid "Auto" +msgstr "" + +#: src/gui/songInfo.cpp:100 +msgid "Tuning (A-4)" +msgstr "" + +#: src/gui/grooves.cpp:38 +msgid "use effect 09xx to select a groove pattern." +msgstr "" + +#: src/gui/grooves.cpp:48 src/gui/gui.cpp:4480 +msgid "pattern" +msgstr "" + +#: src/gui/grooves.cpp:132 +msgid "remove" +msgstr "" + +#: src/gui/doAction.cpp:45 src/gui/gui.cpp:4201 +msgid "Unsaved changes! Save changes before opening another file?" +msgstr "" + +#: src/gui/doAction.cpp:52 +msgid "Unsaved changes! Save changes before opening backup?" +msgstr "" + +#: src/gui/doAction.cpp:62 src/gui/gui.cpp:4237 src/gui/gui.cpp:5025 +#: src/gui/gui.cpp:5063 src/gui/gui.cpp:5069 src/gui/gui.cpp:5657 +#: src/gui/gui.cpp:5681 src/gui/gui.cpp:5705 src/gui/gui.cpp:5729 +#: src/gui/gui.cpp:5753 src/gui/gui.cpp:5777 +#, c-format +msgid "Error while saving file! (%s)" +msgstr "" + +#: src/gui/doAction.cpp:189 +msgid "Error while sending request (MIDI output not configured?)" +msgstr "" + +#: src/gui/doAction.cpp:197 +msgid "Select an option: (cannot be undone!)" +msgstr "" + +#: src/gui/doAction.cpp:691 src/gui/doAction.cpp:720 src/gui/doAction.cpp:1593 +#: src/gui/gui.cpp:6091 +msgid "too many instruments!" +msgstr "" + +#: src/gui/doAction.cpp:1124 +msgid "couldn't paste! make sure your sample is 8 or 16-bit." +msgstr "" + +#: src/gui/doAction.cpp:1628 +msgid "select at least one sample!" +msgstr "" + +#: src/gui/doAction.cpp:1630 +msgid "maximum size is 256 samples!" +msgstr "" + +#: src/gui/csPlayer.cpp:113 +msgid "Load" +msgstr "" + +#: src/gui/csPlayer.cpp:117 +msgid "Kill" +msgstr "" + +#: src/gui/csPlayer.cpp:119 +msgid "Kikai wa mou shindeiru!" +msgstr "The machine is already dead!" + +#: src/gui/csPlayer.cpp:123 +msgid "Burn Current Song" +msgstr "" + +#: src/gui/csPlayer.cpp:141 +msgid "Status" +msgstr "" + +#: src/gui/csPlayer.cpp:148 +msgid "start" +msgstr "" + +#: src/gui/csPlayer.cpp:150 +msgid "PC" +msgstr "" + +#: src/gui/csPlayer.cpp:152 +msgid "wait" +msgstr "" + +#: src/gui/csPlayer.cpp:154 +msgid "SP" +msgstr "" + +#: src/gui/csPlayer.cpp:156 src/gui/insEdit.cpp:2733 +msgid "note" +msgstr "" + +#: src/gui/csPlayer.cpp:158 src/gui/insEdit.cpp:2728 +msgid "pitch" +msgstr "" + +#: src/gui/csPlayer.cpp:160 +msgid "vol" +msgstr "" + +#: src/gui/csPlayer.cpp:162 +msgid "vols" +msgstr "" + +#: src/gui/csPlayer.cpp:164 +msgid "vib" +msgstr "" + +#: src/gui/csPlayer.cpp:166 +msgid "porta" +msgstr "" + +#: src/gui/csPlayer.cpp:168 +msgid "arp" +msgstr "" + +#: src/gui/csPlayer.cpp:203 +msgid "Trace" +msgstr "" + +#: src/gui/csPlayer.cpp:244 +msgid "Disassemble" +msgstr "" + +#: src/gui/gui.cpp:1136 src/gui/gui.cpp:1140 +msgid "the song is over!" +msgstr "" + +#: src/gui/gui.cpp:1667 +msgid "Open File" +msgstr "" + +#: src/gui/gui.cpp:1668 src/gui/gui.cpp:1798 src/gui/gui.cpp:1838 +#: src/gui/gui.cpp:1953 src/gui/gui.cpp:1962 src/gui/gui.cpp:1971 +#: src/gui/gui.cpp:2073 src/gui/gui.cpp:2093 src/gui/gui.cpp:2111 +msgid "compatible files" +msgstr "" + +#: src/gui/gui.cpp:1669 src/gui/gui.cpp:1743 src/gui/gui.cpp:1799 +#: src/gui/gui.cpp:1839 src/gui/gui.cpp:1851 src/gui/gui.cpp:1870 +#: src/gui/gui.cpp:2074 src/gui/gui.cpp:2084 src/gui/gui.cpp:2095 +#: src/gui/gui.cpp:2113 +msgid "all files" +msgstr "" + +#: src/gui/gui.cpp:1676 +msgid "no backups made yet!" +msgstr "" + +#: src/gui/gui.cpp:1681 src/gui/gui.cpp:1690 src/gui/gui.cpp:2130 +msgid "Furnace song" +msgstr "" + +#: src/gui/gui.cpp:1689 +msgid "Save File" +msgstr "" + +#: src/gui/gui.cpp:1698 src/gui/gui.cpp:1708 +msgid "Export DMF" +msgstr "" + +#: src/gui/gui.cpp:1699 +msgid "DefleMask 1.1.3 module" +msgstr "" + +#: src/gui/gui.cpp:1709 +msgid "DefleMask 1.0/legacy module" +msgstr "" + +#: src/gui/gui.cpp:1726 +msgid "Load Instrument" +msgstr "" + +#: src/gui/gui.cpp:1727 +msgid "all compatible files" +msgstr "" + +#: src/gui/gui.cpp:1728 src/gui/gui.cpp:1777 +msgid "Furnace instrument" +msgstr "" + +#: src/gui/gui.cpp:1729 src/gui/gui.cpp:1787 +msgid "DefleMask preset" +msgstr "" + +#: src/gui/gui.cpp:1730 +msgid "TFM Music Maker instrument" +msgstr "" + +#: src/gui/gui.cpp:1731 +msgid "VGM Music Maker instrument" +msgstr "" + +#: src/gui/gui.cpp:1732 +msgid "Scream Tracker 3 instrument" +msgstr "" + +#: src/gui/gui.cpp:1733 +msgid "SoundBlaster instrument" +msgstr "" + +#: src/gui/gui.cpp:1734 +msgid "Wohlstand OPL instrument" +msgstr "" + +#: src/gui/gui.cpp:1735 +msgid "Wohlstand OPN instrument" +msgstr "" + +#: src/gui/gui.cpp:1736 +msgid "Gens KMod patch dump" +msgstr "" + +#: src/gui/gui.cpp:1737 +msgid "BNK file (AdLib)" +msgstr "" + +#: src/gui/gui.cpp:1738 +msgid "FF preset bank" +msgstr "" + +#: src/gui/gui.cpp:1739 +msgid "2612edit GYB preset bank" +msgstr "" + +#: src/gui/gui.cpp:1740 +msgid "VOPM preset bank" +msgstr "" + +#: src/gui/gui.cpp:1741 +msgid "Wohlstand WOPL bank" +msgstr "" + +#: src/gui/gui.cpp:1742 +msgid "Wohlstand WOPN bank" +msgstr "" + +#: src/gui/gui.cpp:1776 src/gui/gui.cpp:1786 +msgid "Save Instrument" +msgstr "" + +#: src/gui/gui.cpp:1797 +msgid "Load Wavetable" +msgstr "" + +#: src/gui/gui.cpp:1809 src/gui/gui.cpp:1818 src/gui/gui.cpp:1827 +msgid "Save Wavetable" +msgstr "" + +#: src/gui/gui.cpp:1810 +msgid "Furnace wavetable" +msgstr "" + +#: src/gui/gui.cpp:1819 +msgid "DefleMask wavetable" +msgstr "" + +#: src/gui/gui.cpp:1828 +msgid "raw data" +msgstr "" + +#: src/gui/gui.cpp:1837 +msgid "Load Sample" +msgstr "" + +#: src/gui/gui.cpp:1850 +msgid "Load Raw Sample" +msgstr "" + +#: src/gui/gui.cpp:1859 +msgid "Save Sample" +msgstr "" + +#: src/gui/gui.cpp:1860 src/gui/gui.cpp:1880 src/gui/gui.cpp:1890 +#: src/gui/gui.cpp:1900 +msgid "Wave file" +msgstr "" + +#: src/gui/gui.cpp:1869 +msgid "Save Raw Sample" +msgstr "" + +#: src/gui/gui.cpp:1879 src/gui/gui.cpp:1889 src/gui/gui.cpp:1899 +msgid "Export Audio" +msgstr "" + +#: src/gui/gui.cpp:1909 +msgid "Export VGM" +msgstr "" + +#: src/gui/gui.cpp:1910 +msgid "VGM file" +msgstr "" + +#: src/gui/gui.cpp:1919 +msgid "Export ZSM" +msgstr "" + +#: src/gui/gui.cpp:1920 +msgid "ZSM file" +msgstr "" + +#: src/gui/gui.cpp:1929 src/gui/gui.cpp:1939 +msgid "Export Command Stream" +msgstr "" + +#: src/gui/gui.cpp:1930 +msgid "text file" +msgstr "" + +#: src/gui/gui.cpp:1940 +msgid "binary file" +msgstr "" + +#: src/gui/gui.cpp:1947 src/gui/gui.cpp:5376 +msgid "Coming soon!" +msgstr "" + +#: src/gui/gui.cpp:1952 src/gui/gui.cpp:1961 src/gui/gui.cpp:1970 +msgid "Select Font" +msgstr "" + +#: src/gui/gui.cpp:1979 +msgid "Select Color File" +msgstr "" + +#: src/gui/gui.cpp:1980 src/gui/gui.cpp:1989 src/gui/gui.cpp:2008 +#: src/gui/gui.cpp:2017 src/gui/gui.cpp:2026 src/gui/gui.cpp:2035 +#: src/gui/gui.cpp:2053 src/gui/gui.cpp:2062 +msgid "configuration files" +msgstr "" + +#: src/gui/gui.cpp:1988 +msgid "Select Keybind File" +msgstr "" + +#: src/gui/gui.cpp:1997 +msgid "Select Layout File" +msgstr "" + +#: src/gui/gui.cpp:1998 src/gui/gui.cpp:2044 +msgid ".ini files" +msgstr "" + +#: src/gui/gui.cpp:2007 +msgid "Select User Presets File" +msgstr "" + +#: src/gui/gui.cpp:2016 +msgid "Select Settings File" +msgstr "" + +#: src/gui/gui.cpp:2025 +msgid "Export Colors" +msgstr "" + +#: src/gui/gui.cpp:2034 +msgid "Export Keybinds" +msgstr "" + +#: src/gui/gui.cpp:2043 +msgid "Export Layout" +msgstr "" + +#: src/gui/gui.cpp:2052 +msgid "Export User Presets" +msgstr "" + +#: src/gui/gui.cpp:2061 +msgid "Export Settings" +msgstr "" + +#: src/gui/gui.cpp:2072 +msgid "Load ROM" +msgstr "" + +#: src/gui/gui.cpp:2082 +msgid "Play Command Stream" +msgstr "" + +#: src/gui/gui.cpp:2083 +msgid "command stream" +msgstr "" + +#: src/gui/gui.cpp:2092 +msgid "Open Test" +msgstr "" + +#: src/gui/gui.cpp:2094 src/gui/gui.cpp:2112 +msgid "another option" +msgstr "" + +#: src/gui/gui.cpp:2110 +msgid "Open Test (Multi)" +msgstr "" + +#: src/gui/gui.cpp:2129 +msgid "Save Test" +msgstr "" + +#: src/gui/gui.cpp:2131 +msgid "DefleMask module" +msgstr "" + +#: src/gui/gui.cpp:2171 +msgid "compression error" +msgstr "" + +#: src/gui/gui.cpp:2183 +msgid "zlib stream error" +msgstr "" + +#: src/gui/gui.cpp:2205 +msgid "zlib finish stream error" +msgstr "" + +#: src/gui/gui.cpp:2316 +msgid "everything OK" +msgstr "" + +#: src/gui/gui.cpp:2334 +msgid "" +"you have loaded a backup!\n" +"if you need to, please save it somewhere.\n" +"\n" +"DO NOT RELY ON THE BACKUP SYSTEM FOR AUTO-SAVE!\n" +"Furnace will not save backups of backups." +msgstr "" + +#: src/gui/gui.cpp:2342 src/gui/gui.cpp:3743 src/gui/gui.cpp:4213 +msgid "Unsaved changes! Save changes before opening file?" +msgstr "" + +#: src/gui/gui.cpp:2736 +msgid "paste special..." +msgstr "" + +#: src/gui/gui.cpp:2737 +msgid "paste mix" +msgstr "" + +#: src/gui/gui.cpp:2738 +msgid "paste mix (background)" +msgstr "" + +#: src/gui/gui.cpp:2739 +msgid "paste with ins (foreground)" +msgstr "" + +#: src/gui/gui.cpp:2741 src/gui/gui.cpp:2753 src/gui/gui.cpp:2963 +msgid "no instruments available" +msgstr "" + +#: src/gui/gui.cpp:2751 +msgid "paste with ins (background)" +msgstr "" + +#: src/gui/gui.cpp:2763 +msgid "paste flood" +msgstr "" + +#: src/gui/gui.cpp:2764 +msgid "paste overflow" +msgstr "" + +#: src/gui/gui.cpp:2773 +msgid "operation mask..." +msgstr "" + +#: src/gui/gui.cpp:2780 +msgid "pull delete" +msgstr "" + +#: src/gui/gui.cpp:2784 +msgid "insert" +msgstr "" + +#: src/gui/gui.cpp:2792 +msgid "transpose (note)" +msgstr "" + +#: src/gui/gui.cpp:2796 +msgid "transpose (value)" +msgstr "" + +#: src/gui/gui.cpp:2808 src/gui/gui.cpp:3052 +msgid "invert values" +msgstr "" + +#: src/gui/gui.cpp:2824 +msgid "collapse/expand" +msgstr "" + +#: src/gui/gui.cpp:2829 +msgid "input latch" +msgstr "" + +#: src/gui/gui.cpp:2856 +msgid "" +"&&: selected instrument\n" +"..: no instrument" +msgstr "" + +#: src/gui/gui.cpp:2910 +msgid "Set" +msgstr "" + +#: src/gui/gui.cpp:2930 +msgid "note up" +msgstr "" + +#: src/gui/gui.cpp:2931 +msgid "note down" +msgstr "" + +#: src/gui/gui.cpp:2932 +msgid "octave up" +msgstr "" + +#: src/gui/gui.cpp:2933 +msgid "octave down" +msgstr "" + +#: src/gui/gui.cpp:2935 +msgid "values up" +msgstr "" + +#: src/gui/gui.cpp:2936 +msgid "values down" +msgstr "" + +#: src/gui/gui.cpp:2937 +msgid "values up (+16)" +msgstr "" + +#: src/gui/gui.cpp:2938 +msgid "values down (-16)" +msgstr "" + +#: src/gui/gui.cpp:2941 +msgid "transpose" +msgstr "" + +#: src/gui/gui.cpp:2949 +msgid "Notes" +msgstr "" + +#: src/gui/gui.cpp:2954 +msgid "Values" +msgstr "" + +#: src/gui/gui.cpp:2961 +msgid "change instrument..." +msgstr "" + +#: src/gui/gui.cpp:2974 +msgid "gradient/fade..." +msgstr "" + +#: src/gui/gui.cpp:2991 src/gui/gui.cpp:3036 +msgid "Nibble mode" +msgstr "" + +#: src/gui/gui.cpp:3000 +msgid "Go ahead" +msgstr "" + +#: src/gui/gui.cpp:3006 src/gui/insEdit.cpp:7604 +msgid "scale..." +msgstr "" + +#: src/gui/gui.cpp:3011 +msgid "Scale" +msgstr "" + +#: src/gui/gui.cpp:3017 src/gui/insEdit.cpp:7632 +msgid "randomize..." +msgstr "" + +#: src/gui/gui.cpp:3018 +msgid "Minimum" +msgstr "" + +#: src/gui/gui.cpp:3027 +msgid "Maximum" +msgstr "" + +#: src/gui/gui.cpp:3056 +msgid "flip selection" +msgstr "" + +#: src/gui/gui.cpp:3059 +msgid "collapse/expand amount##CollapseAmount" +msgstr "" + +#: src/gui/gui.cpp:3068 +msgid "collapse pattern" +msgstr "" + +#: src/gui/gui.cpp:3069 +msgid "expand pattern" +msgstr "" + +#: src/gui/gui.cpp:3074 +msgid "collapse song" +msgstr "" + +#: src/gui/gui.cpp:3075 +msgid "expand song" +msgstr "" + +#: src/gui/gui.cpp:3080 +msgid "find/replace" +msgstr "" + +#: src/gui/gui.cpp:3094 src/gui/gui.cpp:5807 src/gui/gui.cpp:7362 +#, c-format +msgid "could NOT save layout! %s" +msgstr "" + +#: src/gui/gui.cpp:3106 +#, c-format +msgid "could NOT load layout! %s" +msgstr "" + +#: src/gui/gui.cpp:3568 +msgid "" +"Furnace has been started in Safe Mode.\n" +"this means that:\n" +"\n" +"- software rendering is being used\n" +"- audio output may not work\n" +"- font loading is disabled\n" +"\n" +"check any settings which may have made Furnace start up in this mode.\n" +"font loading is one of these." +msgstr "" + +#: src/gui/gui.cpp:4053 +msgid "can't keep going without graphics! Furnace will quit now." +msgstr "" + +#: src/gui/gui.cpp:4191 +msgid "file" +msgstr "" + +#: src/gui/gui.cpp:4192 +msgid "new..." +msgstr "" + +#: src/gui/gui.cpp:4199 +msgid "open..." +msgstr "" + +#: src/gui/gui.cpp:4206 +msgid "open recent" +msgstr "" + +#: src/gui/gui.cpp:4222 +msgid "nothing here yet" +msgstr "" + +#: src/gui/gui.cpp:4225 +msgid "clear history" +msgstr "" + +#: src/gui/gui.cpp:4226 +msgid "Are you sure you want to clear the recent file list?" +msgstr "" + +#: src/gui/gui.cpp:4241 +msgid "save as..." +msgstr "" + +#: src/gui/gui.cpp:4246 src/gui/gui.cpp:4287 +msgid "export audio..." +msgstr "" + +#: src/gui/gui.cpp:4250 src/gui/gui.cpp:4291 +msgid "export VGM..." +msgstr "" + +#: src/gui/gui.cpp:4259 src/gui/gui.cpp:4300 +msgid "export ZSM..." +msgstr "" + +#: src/gui/gui.cpp:4269 src/gui/gui.cpp:4310 +msgid "export Amiga validation data..." +msgstr "" + +#: src/gui/gui.cpp:4274 src/gui/gui.cpp:4315 +msgid "export text..." +msgstr "" + +#: src/gui/gui.cpp:4278 src/gui/gui.cpp:4319 +msgid "export command stream..." +msgstr "" + +#: src/gui/gui.cpp:4282 src/gui/gui.cpp:4323 +msgid "export .dmf..." +msgstr "" + +#: src/gui/gui.cpp:4328 +msgid "export..." +msgstr "" + +#: src/gui/gui.cpp:4334 +msgid "manage chips" +msgstr "" + +#: src/gui/gui.cpp:4338 +msgid "add chip..." +msgstr "" + +#: src/gui/gui.cpp:4343 src/gui/sysManager.cpp:138 +#, c-format +msgid "cannot add chip! (%s)" +msgstr "" + +#: src/gui/gui.cpp:4355 +msgid "configure chip..." +msgstr "" + +#: src/gui/gui.cpp:4365 +msgid "change chip..." +msgstr "" + +#: src/gui/gui.cpp:4367 src/gui/gui.cpp:4390 +msgid "Preserve channel positions" +msgstr "" + +#: src/gui/gui.cpp:4379 src/gui/sysManager.cpp:109 +#, c-format +msgid "cannot change chip! (%s)" +msgstr "" + +#: src/gui/gui.cpp:4388 +msgid "remove chip..." +msgstr "" + +#: src/gui/gui.cpp:4394 +#, c-format +msgid "cannot remove chip! (%s)" +msgstr "" + +#: src/gui/gui.cpp:4408 +msgid "open built-in assets directory" +msgstr "" + +#: src/gui/gui.cpp:4414 +msgid "restore backup" +msgstr "" + +#: src/gui/gui.cpp:4418 +msgid "exit..." +msgstr "" + +#: src/gui/gui.cpp:4426 +msgid "edit" +msgstr "" + +#: src/gui/gui.cpp:4434 +msgid "clear..." +msgstr "" + +#: src/gui/gui.cpp:4439 +msgid "settings" +msgstr "" + +#: src/gui/gui.cpp:4441 +msgid "full screen" +msgstr "" + +#: src/gui/gui.cpp:4445 +msgid "lock layout" +msgstr "" + +#: src/gui/gui.cpp:4448 +msgid "pattern visualizer" +msgstr "" + +#: src/gui/gui.cpp:4454 +msgid "reset layout" +msgstr "" + +#: src/gui/gui.cpp:4458 +msgid "switch to mobile view" +msgstr "" + +#: src/gui/gui.cpp:4462 +msgid "user systems..." +msgstr "" + +#: src/gui/gui.cpp:4465 +msgid "settings..." +msgstr "" + +#: src/gui/gui.cpp:4471 +msgid "Window" +msgstr "" + +#: src/gui/gui.cpp:4471 +msgid "window" +msgstr "" + +#: src/gui/gui.cpp:4472 +msgid "song" +msgstr "" + +#: src/gui/gui.cpp:4473 +msgid "song comments" +msgstr "" + +#: src/gui/gui.cpp:4474 +msgid "song information" +msgstr "" + +#: src/gui/gui.cpp:4475 +msgid "subsongs" +msgstr "" + +#: src/gui/gui.cpp:4477 +msgid "channels" +msgstr "" + +#: src/gui/gui.cpp:4478 +msgid "chip manager" +msgstr "" + +#: src/gui/gui.cpp:4479 +msgid "orders" +msgstr "" + +#: src/gui/gui.cpp:4481 +msgid "pattern manager" +msgstr "" + +#: src/gui/gui.cpp:4482 +msgid "mixer" +msgstr "" + +#: src/gui/gui.cpp:4483 +msgid "compatibility flags" +msgstr "" + +#: src/gui/gui.cpp:4486 src/gui/gui.cpp:4488 +msgid "assets" +msgstr "" + +#: src/gui/gui.cpp:4490 +msgid "instruments" +msgstr "" + +#: src/gui/gui.cpp:4491 +msgid "samples" +msgstr "" + +#: src/gui/gui.cpp:4492 +msgid "wavetables" +msgstr "" + +#: src/gui/gui.cpp:4495 +msgid "instrument editor" +msgstr "" + +#: src/gui/gui.cpp:4496 +msgid "sample editor" +msgstr "" + +#: src/gui/gui.cpp:4497 +msgid "wavetable editor" +msgstr "" + +#: src/gui/gui.cpp:4500 +msgid "visualizers" +msgstr "" + +#: src/gui/gui.cpp:4501 +msgid "oscilloscope (master)" +msgstr "" + +#: src/gui/gui.cpp:4502 +msgid "oscilloscope (per-channel)" +msgstr "" + +#: src/gui/gui.cpp:4503 +msgid "oscilloscope (X-Y)" +msgstr "" + +#: src/gui/gui.cpp:4504 +msgid "volume meter" +msgstr "" + +#: src/gui/gui.cpp:4507 +msgid "tempo" +msgstr "" + +#: src/gui/gui.cpp:4508 +msgid "clock" +msgstr "" + +#: src/gui/gui.cpp:4509 +msgid "grooves" +msgstr "" + +#: src/gui/gui.cpp:4510 +msgid "speed" +msgstr "" + +#: src/gui/gui.cpp:4514 +msgid "log viewer" +msgstr "" + +#: src/gui/gui.cpp:4515 +msgid "register view" +msgstr "" + +#: src/gui/gui.cpp:4516 +msgid "statistics" +msgstr "" + +#: src/gui/gui.cpp:4517 +msgid "memory composition" +msgstr "" + +#: src/gui/gui.cpp:4521 src/gui/gui.cpp:4529 +msgid "effect list" +msgstr "" + +#: src/gui/gui.cpp:4522 +msgid "play/edit controls" +msgstr "" + +#: src/gui/gui.cpp:4523 +msgid "piano/input pad" +msgstr "" + +#: src/gui/gui.cpp:4524 +msgid "spoiler" +msgstr "" + +#: src/gui/gui.cpp:4528 +msgid "Help" +msgstr "" + +#: src/gui/gui.cpp:4528 +msgid "help" +msgstr "" + +#: src/gui/gui.cpp:4530 +msgid "debug menu" +msgstr "" + +#: src/gui/gui.cpp:4531 +msgid "inspector" +msgstr "" + +#: src/gui/gui.cpp:4532 +msgid "panic" +msgstr "" + +#: src/gui/gui.cpp:4533 +msgid "about..." +msgstr "" + +#: src/gui/gui.cpp:4548 +#, c-format +msgid "| Speed %d:%d" +msgstr "" + +#: src/gui/gui.cpp:4550 +#, c-format +msgid "| Speed %d" +msgstr "" + +#: src/gui/gui.cpp:4552 +msgid "| Groove" +msgstr "" + +#: src/gui/gui.cpp:4555 +#, c-format +msgid " @ %gHz (%g BPM) " +msgstr "" + +#: src/gui/gui.cpp:4558 +#, c-format +msgid "| Order %.2X/%.2X " +msgstr "" + +#: src/gui/gui.cpp:4560 +#, c-format +msgid "| Order %d/%d " +msgstr "" + +#: src/gui/gui.cpp:4564 +#, c-format +msgid "| Row %.2X/%.2X " +msgstr "" + +#: src/gui/gui.cpp:4566 +#, c-format +msgid "| Row %d/%d " +msgstr "" + +#: src/gui/gui.cpp:4569 +msgid "| " +msgstr "" + +#: src/gui/gui.cpp:4572 +msgid "Don't you have anything better to do?" +msgstr "" + +#: src/gui/gui.cpp:4582 +#, c-format +msgid "%d year " +msgid_plural "%d years " +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/gui/gui.cpp:4583 +#, c-format +msgid "%d month " +msgid_plural "%d months " +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/gui/gui.cpp:4584 +#, c-format +msgid "%d day " +msgid_plural "%d days " +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: src/gui/gui.cpp:4609 +msgid "Note off (cut)" +msgstr "" + +#: src/gui/gui.cpp:4611 +msgid "Note off (release)" +msgstr "" + +#: src/gui/gui.cpp:4613 +msgid "Macro release only" +msgstr "" + +#: src/gui/gui.cpp:4615 +#, c-format +msgid "Note on: %s" +msgstr "" + +#: src/gui/gui.cpp:4623 +#, c-format +msgid "Ins %d: " +msgstr "" + +#: src/gui/gui.cpp:4626 +#, c-format +msgid "Ins %d: %s" +msgstr "" + +#: src/gui/gui.cpp:4635 +#, c-format +msgid "Set volume: %d (%.2X, INVALID!)" +msgstr "" + +#: src/gui/gui.cpp:4638 +#, c-format +msgid "Set volume: %d (%.2X, %d%%)" +msgstr "" + +#: src/gui/gui.cpp:4660 +msgid "| modified" +msgstr "" + +#: src/gui/gui.cpp:4825 src/gui/gui.cpp:4828 +msgid "System File Dialog Pending" +msgstr "" + +#: src/gui/gui.cpp:4941 +msgid "" +"there was an error in the file dialog! you may want to report this issue " +"to:\n" +"https://github.com/tildearrow/furnace/issues\n" +"check the Log Viewer (window > log viewer) for more information.\n" +"\n" +"for now please disable the system file picker in Settings > General." +msgstr "" + +#: src/gui/gui.cpp:4944 +msgid "can't do anything without Storage permissions!" +msgstr "" + +#: src/gui/gui.cpp:4946 +msgid "" +"Zenity/KDialog not available!\n" +"please install one of these, or disable the system file picker in Settings > " +"General." +msgstr "" + +#: src/gui/gui.cpp:5082 +msgid "" +"error while saving instrument! only the following instrument types are " +"supported:\n" +"- FM (OPN)\n" +"- SN76489/Sega PSG\n" +"- Game Boy\n" +"- PC Engine\n" +"- NES\n" +"- C64\n" +"- FM (OPLL)\n" +"- FDS" +msgstr "" + +#: src/gui/gui.cpp:5110 +msgid "there were some errors while loading samples:\n" +msgstr "" + +#: src/gui/gui.cpp:5155 src/gui/gui.cpp:6339 +msgid "...but you haven't selected a sample!" +msgstr "" + +#: src/gui/gui.cpp:5170 src/gui/gui.cpp:5179 +msgid "could not save sample! open Log Viewer for more information." +msgstr "" + +#: src/gui/gui.cpp:5198 +msgid "there were some warnings/errors while loading instruments:\n" +msgstr "" + +#: src/gui/gui.cpp:5204 +#, c-format +msgid "> %s: cannot load instrument! (%s)\n" +msgstr "" + +#: src/gui/gui.cpp:5222 src/gui/gui.cpp:5276 +#, c-format +msgid "cannot load instrument! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5228 +msgid "" +"congratulations! you managed to load nothing.\n" +"you are entitled to a bug report." +msgstr "" + +#: src/gui/gui.cpp:5269 src/gui/gui.cpp:6243 +msgid "...but you haven't selected an instrument!" +msgstr "" + +#: src/gui/gui.cpp:5281 +msgid "there were some errors while loading wavetables:\n" +msgstr "" + +#: src/gui/gui.cpp:5290 src/gui/gui.cpp:5300 src/gui/gui.cpp:5319 +#, c-format +msgid "cannot load wavetable! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5327 +msgid "...but you haven't selected a wavetable!" +msgstr "" + +#: src/gui/gui.cpp:5342 src/gui/gui.cpp:5363 src/gui/gui.cpp:5387 +#: src/gui/gui.cpp:5408 +msgid "could not open file!" +msgstr "" + +#: src/gui/gui.cpp:5350 +#, c-format +msgid "could not write VGM! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5371 +#, c-format +msgid "Could not write ZSM! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5395 +#, c-format +msgid "could not write text! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5416 +#, c-format +msgid "could not write command stream! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5440 +msgid "could not import user presets!" +msgstr "" + +#: src/gui/gui.cpp:5445 src/gui/gui.cpp:5462 +#, c-format +msgid "could not import user presets! (%s)" +msgstr "" + +#: src/gui/gui.cpp:5483 +#, c-format +msgid "You opened: %s" +msgstr "" + +#: src/gui/gui.cpp:5486 +msgid "You opened:" +msgstr "" + +#: src/gui/gui.cpp:5494 +#, c-format +msgid "You saved: %s" +msgstr "" + +#: src/gui/gui.cpp:5515 src/gui/gui.cpp:5636 src/gui/gui.cpp:5637 +#: src/gui/insEdit.cpp:7520 +msgid "Error" +msgstr "" + +#: src/gui/gui.cpp:5520 src/gui/gui.cpp:6177 src/gui/gui.cpp:6178 +msgid "Select Instrument" +msgstr "" + +#: src/gui/gui.cpp:5525 src/gui/gui.cpp:6256 src/gui/gui.cpp:6257 +msgid "Import Raw Sample" +msgstr "" + +#: src/gui/gui.cpp:5540 src/gui/gui.cpp:5593 src/gui/gui.cpp:5594 +msgid "Rendering..." +msgstr "" + +#: src/gui/gui.cpp:5595 +msgid "Please wait..." +msgstr "" + +#: src/gui/gui.cpp:5596 +msgid "Abort" +msgstr "" + +#: src/gui/gui.cpp:5638 +#, c-format +msgid "%s" +msgstr "" + +#: src/gui/gui.cpp:5868 +msgid "Erasing" +msgstr "" + +#: src/gui/gui.cpp:5871 +msgid "All subsongs" +msgstr "" + +#: src/gui/gui.cpp:5878 +msgid "Current subsong" +msgstr "" + +#: src/gui/gui.cpp:5945 +msgid "Optimization" +msgstr "" + +#: src/gui/gui.cpp:5948 src/gui/patManager.cpp:36 +msgid "De-duplicate patterns" +msgstr "" + +#: src/gui/gui.cpp:5957 +msgid "Remove unused instruments" +msgstr "" + +#: src/gui/gui.cpp:5970 +msgid "Remove unused samples" +msgstr "" + +#: src/gui/gui.cpp:5987 +msgid "Never mind! Cancel" +msgstr "" + +#: src/gui/gui.cpp:6066 +msgid "Drum kit mode:" +msgstr "" + +#: src/gui/gui.cpp:6070 +msgid "12 samples per octave" +msgstr "" + +#: src/gui/gui.cpp:6075 +msgid "Starting octave" +msgstr "" + +#: src/gui/gui.cpp:6095 +msgid "Drum Kit" +msgstr "" + +#: src/gui/gui.cpp:6181 +msgid "this is an instrument bank! select which one to use:" +msgstr "" + +#: src/gui/gui.cpp:6184 +msgid "this is an instrument bank! select which ones to load:" +msgstr "" + +#: src/gui/gui.cpp:6258 +msgid "Data type:" +msgstr "" + +#: src/gui/gui.cpp:6285 +msgid "(will be mixed down to mono)" +msgstr "" + +#: src/gui/gui.cpp:6286 +msgid "Unsigned" +msgstr "" + +#: src/gui/gui.cpp:6290 +msgid "Big endian" +msgstr "" + +#: src/gui/gui.cpp:6298 +msgid "Swap nibbles" +msgstr "" + +#: src/gui/gui.cpp:6302 +msgid "Swap words" +msgstr "" + +#: src/gui/gui.cpp:6306 +msgid "Encoding:" +msgstr "" + +#: src/gui/gui.cpp:6319 +msgid "Reverse bit order" +msgstr "" + +#: src/gui/gui.cpp:6361 +msgid "Error! No string provided!" +msgstr "" + +#: src/gui/gui.cpp:6683 +msgid "it appears I couldn't load these fonts. any setting you can check?" +msgstr "" + +#: src/gui/gui.cpp:6863 src/gui/gui.cpp:6971 +msgid "" +"could not init renderer!\n" +"falling back to software renderer. please restart Furnace." +msgstr "" + +#: src/gui/gui.cpp:6865 src/gui/gui.cpp:6973 +#, c-format +msgid "" +"could not init renderer! %s\n" +"falling back to software renderer. please restart Furnace." +msgstr "" + +#: src/gui/gui.cpp:6870 src/gui/gui.cpp:6978 +msgid "could not init renderer!" +msgstr "" + +#: src/gui/gui.cpp:6881 +#, c-format +msgid "could not open window! %s" +msgstr "" + +#: src/gui/gui.cpp:6886 +msgid "" +"\n" +"falling back to software renderer. please restart Furnace." +msgstr "" + +#: src/gui/gui.cpp:7034 +msgid "Size column to fit###SizeOne" +msgstr "" + +#: src/gui/gui.cpp:7036 +msgid "Size all columns to fit###SizeAll" +msgstr "" + +#: src/gui/gui.cpp:7038 +msgid "Size all columns to default###SizeAll" +msgstr "" + +#: src/gui/gui.cpp:7040 +msgid "Reset order###ResetOrder" +msgstr "" + +#: src/gui/gui.cpp:7042 +msgid "(Main menu bar)" +msgstr "" + +#: src/gui/gui.cpp:7044 +msgid "(Popup)" +msgstr "" + +#: src/gui/gui.cpp:7046 +msgid "(Untitled)" +msgstr "" + +#: src/gui/gui.cpp:7048 +msgid "Hide tab bar###HideTabBar" +msgstr "" + +#: src/gui/gui.cpp:7052 +msgid "LocaleSettings: ccjk" +msgstr "" + +#: src/gui/gui.cpp:7564 +msgid "Unsaved changes! Save changes before quitting?" +msgstr "" + +#: src/gui/sysManager.cpp:42 +msgid "Preserve channel order" +msgstr "" + +#: src/gui/sysManager.cpp:44 +msgid "Clone channel data" +msgstr "" + +#: src/gui/sysManager.cpp:46 +msgid "Clone at end" +msgstr "" + +#: src/gui/sysManager.cpp:56 +msgid "Actions" +msgstr "" + +#: src/gui/sysManager.cpp:69 +msgid "(drag to swap chips)" +msgstr "" + +#: src/gui/sysManager.cpp:90 +msgid "Clone##SysDup" +msgstr "" + +#: src/gui/sysManager.cpp:92 +#, c-format +msgid "cannot clone chip! (%s)" +msgstr "" + +#: src/gui/sysManager.cpp:98 +msgid "Change##SysChange" +msgstr "" + +#: src/gui/sysManager.cpp:120 +msgid "Are you sure you want to remove this chip?" +msgstr "" + +#: src/gui/patManager.cpp:43 +msgid "Re-arrange patterns" +msgstr "" + +#: src/gui/patManager.cpp:50 +msgid "Sort orders" +msgstr "" + +#: src/gui/patManager.cpp:57 +msgid "Make patterns unique" +msgstr "" + +#: src/gui/patManager.cpp:103 +#, c-format +msgid "" +"Pattern %.2X\n" +"- not allocated" +msgstr "" + +#: src/gui/patManager.cpp:105 +#, c-format +msgid "" +"Pattern %.2X\n" +"- use count: %d (%.0f%%)\n" +"\n" +"right-click to erase" +msgstr "" + +#: src/gui/insEdit.cpp:39 +msgid "Down Down Down" +msgstr "" + +#: src/gui/insEdit.cpp:40 +msgid "Down." +msgstr "" + +#: src/gui/insEdit.cpp:41 +msgid "Down Up Down Up" +msgstr "" + +#: src/gui/insEdit.cpp:42 +msgid "Down UP" +msgstr "" + +#: src/gui/insEdit.cpp:43 +msgid "Up Up Up" +msgstr "" + +#: src/gui/insEdit.cpp:44 +msgid "Up." +msgstr "" + +#: src/gui/insEdit.cpp:45 +msgid "Up Down Up Down" +msgstr "" + +#: src/gui/insEdit.cpp:46 +msgid "Up DOWN" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Algorithm" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Feedback" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "LFO > Freq" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "LFO > Amp" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Decay 2" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "EnvScale" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Multiplier" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Detune 2" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "AM" +msgstr "" + +#: src/gui/insEdit.cpp:50 src/gui/insEdit.cpp:5438 src/gui/insEdit.cpp:6516 +msgid "AM Depth" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Vibrato Depth" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Sustained" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Level Scaling" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Vibrato" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Scale Rate" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "OP2 Half Sine" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "OP1 Half Sine" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "EnvShift" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Reverb" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "Fine" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "LFO2 > Freq" +msgstr "" + +#: src/gui/insEdit.cpp:50 +msgid "LFO2 > Amp" +msgstr "" + +#: src/gui/insEdit.cpp:56 src/gui/insEdit.cpp:68 src/gui/insEdit.cpp:7391 +msgid "OP4 Noise Mode" +msgstr "" + +#: src/gui/insEdit.cpp:57 +msgid "Envelope Delay" +msgstr "" + +#: src/gui/insEdit.cpp:58 src/gui/insEdit.cpp:70 +msgid "Output Level" +msgstr "" + +#: src/gui/insEdit.cpp:59 +msgid "Modulation Input Level" +msgstr "" + +#: src/gui/insEdit.cpp:60 +msgid "Left Output" +msgstr "" + +#: src/gui/insEdit.cpp:61 +msgid "Right Output" +msgstr "" + +#: src/gui/insEdit.cpp:62 +msgid "Coarse Tune (semitones)" +msgstr "" + +#: src/gui/insEdit.cpp:64 +msgid "Fixed Frequency Mode" +msgstr "" + +#: src/gui/insEdit.cpp:69 +msgid "Env. Delay" +msgstr "" + +#: src/gui/insEdit.cpp:71 +msgid "ModInput" +msgstr "" + +#: src/gui/insEdit.cpp:72 +msgid "Left" +msgstr "" + +#: src/gui/insEdit.cpp:73 +msgid "Right" +msgstr "" + +#: src/gui/insEdit.cpp:74 +msgid "Tune" +msgstr "" + +#: src/gui/insEdit.cpp:76 src/gui/insEdit.cpp:610 src/gui/insEdit.cpp:3792 +#: src/gui/insEdit.cpp:4554 src/gui/insEdit.cpp:4848 +msgid "Fixed" +msgstr "" + +#: src/gui/insEdit.cpp:98 src/gui/insEdit.cpp:117 src/gui/insEdit.cpp:136 +#: src/gui/insEdit.cpp:156 +msgid "User" +msgstr "" + +#: src/gui/insEdit.cpp:99 +msgid "1. Violin" +msgstr "" + +#: src/gui/insEdit.cpp:100 src/gui/insEdit.cpp:138 src/gui/insEdit.cpp:158 +msgid "2. Guitar" +msgstr "" + +#: src/gui/insEdit.cpp:101 src/gui/insEdit.cpp:159 +msgid "3. Piano" +msgstr "" + +#: src/gui/insEdit.cpp:102 src/gui/insEdit.cpp:160 +msgid "4. Flute" +msgstr "" + +#: src/gui/insEdit.cpp:103 src/gui/insEdit.cpp:122 src/gui/insEdit.cpp:161 +msgid "5. Clarinet" +msgstr "" + +#: src/gui/insEdit.cpp:104 +msgid "6. Oboe" +msgstr "" + +#: src/gui/insEdit.cpp:105 src/gui/insEdit.cpp:124 src/gui/insEdit.cpp:143 +#: src/gui/insEdit.cpp:163 +msgid "7. Trumpet" +msgstr "" + +#: src/gui/insEdit.cpp:106 +msgid "8. Organ" +msgstr "" + +#: src/gui/insEdit.cpp:107 +msgid "9. Horn" +msgstr "" + +#: src/gui/insEdit.cpp:108 +msgid "10. Synth" +msgstr "" + +#: src/gui/insEdit.cpp:109 +msgid "11. Harpsichord" +msgstr "" + +#: src/gui/insEdit.cpp:110 src/gui/insEdit.cpp:129 src/gui/insEdit.cpp:148 +msgid "12. Vibraphone" +msgstr "" + +#: src/gui/insEdit.cpp:111 +msgid "13. Synth Bass" +msgstr "" + +#: src/gui/insEdit.cpp:112 +msgid "14. Acoustic Bass" +msgstr "" + +#: src/gui/insEdit.cpp:113 +msgid "15. Electric Guitar" +msgstr "" + +#: src/gui/insEdit.cpp:114 src/gui/insEdit.cpp:133 src/gui/insEdit.cpp:152 +#: src/gui/insEdit.cpp:172 src/gui/insEdit.cpp:3176 +msgid "Drums" +msgstr "" + +#: src/gui/insEdit.cpp:118 +msgid "1. Electric String" +msgstr "" + +#: src/gui/insEdit.cpp:119 +msgid "2. Bow wow" +msgstr "" + +#: src/gui/insEdit.cpp:120 src/gui/insEdit.cpp:139 +msgid "3. Electric Guitar" +msgstr "" + +#: src/gui/insEdit.cpp:121 +msgid "4. Organ" +msgstr "" + +#: src/gui/insEdit.cpp:123 +msgid "6. Saxophone" +msgstr "" + +#: src/gui/insEdit.cpp:125 +msgid "8. Street Organ" +msgstr "" + +#: src/gui/insEdit.cpp:126 +msgid "9. Synth Brass" +msgstr "" + +#: src/gui/insEdit.cpp:127 +msgid "10. Electric Piano" +msgstr "" + +#: src/gui/insEdit.cpp:128 +msgid "11. Bass" +msgstr "" + +#: src/gui/insEdit.cpp:130 +msgid "13. Chime" +msgstr "" + +#: src/gui/insEdit.cpp:131 +msgid "14. Tom Tom II" +msgstr "" + +#: src/gui/insEdit.cpp:132 +msgid "15. Noise" +msgstr "" + +#: src/gui/insEdit.cpp:137 +msgid "1. Strings" +msgstr "" + +#: src/gui/insEdit.cpp:140 +msgid "4. Electric Piano" +msgstr "" + +#: src/gui/insEdit.cpp:141 +msgid "5. Flute" +msgstr "" + +#: src/gui/insEdit.cpp:142 +msgid "6. Marimba" +msgstr "" + +#: src/gui/insEdit.cpp:144 +msgid "8. Harmonica" +msgstr "" + +#: src/gui/insEdit.cpp:145 +msgid "9. Tuba" +msgstr "" + +#: src/gui/insEdit.cpp:146 +msgid "10. Synth Brass" +msgstr "" + +#: src/gui/insEdit.cpp:147 +msgid "11. Short Saw" +msgstr "" + +#: src/gui/insEdit.cpp:149 +msgid "13. Electric Guitar 2" +msgstr "" + +#: src/gui/insEdit.cpp:150 +msgid "14. Synth Bass" +msgstr "" + +#: src/gui/insEdit.cpp:151 +msgid "15. Sitar" +msgstr "" + +#: src/gui/insEdit.cpp:157 +msgid "1. Bell" +msgstr "" + +#: src/gui/insEdit.cpp:162 +msgid "6. Rattling Bell" +msgstr "" + +#: src/gui/insEdit.cpp:164 +msgid "8. Reed Organ" +msgstr "" + +#: src/gui/insEdit.cpp:165 +msgid "9. Soft Bell" +msgstr "" + +#: src/gui/insEdit.cpp:166 +msgid "10. Xylophone" +msgstr "" + +#: src/gui/insEdit.cpp:167 +msgid "11. Vibraphone" +msgstr "" + +#: src/gui/insEdit.cpp:168 +msgid "12. Brass" +msgstr "" + +#: src/gui/insEdit.cpp:169 +msgid "13. Bass Guitar" +msgstr "" + +#: src/gui/insEdit.cpp:170 +msgid "14. Synth" +msgstr "" + +#: src/gui/insEdit.cpp:171 +msgid "15. Chorus" +msgstr "" + +#: src/gui/insEdit.cpp:178 src/gui/insEdit.cpp:189 +msgid "Half Sine" +msgstr "" + +#: src/gui/insEdit.cpp:179 src/gui/insEdit.cpp:190 +msgid "Absolute Sine" +msgstr "" + +#: src/gui/insEdit.cpp:180 +msgid "Quarter Sine" +msgstr "" + +#: src/gui/insEdit.cpp:181 src/gui/insEdit.cpp:203 +msgid "Squished Sine" +msgstr "" + +#: src/gui/insEdit.cpp:182 src/gui/insEdit.cpp:205 +msgid "Squished AbsSine" +msgstr "" + +#: src/gui/insEdit.cpp:184 src/gui/insEdit.cpp:195 +msgid "Derived Square" +msgstr "" + +#: src/gui/insEdit.cpp:191 +msgid "Pulse Sine" +msgstr "" + +#: src/gui/insEdit.cpp:192 +msgid "Sine (Even Periods)" +msgstr "" + +#: src/gui/insEdit.cpp:193 +msgid "AbsSine (Even Periods)" +msgstr "" + +#: src/gui/insEdit.cpp:201 +msgid "Cut Sine" +msgstr "" + +#: src/gui/insEdit.cpp:202 +msgid "Cut Triangle" +msgstr "" + +#: src/gui/insEdit.cpp:204 +msgid "Squished Triangle" +msgstr "" + +#: src/gui/insEdit.cpp:206 +msgid "Squished AbsTriangle" +msgstr "" + +#: src/gui/insEdit.cpp:224 +msgid "Noise disabled" +msgstr "" + +#: src/gui/insEdit.cpp:225 +msgid "Square + noise" +msgstr "" + +#: src/gui/insEdit.cpp:226 +msgid "Ringmod from OP3 + noise" +msgstr "" + +#: src/gui/insEdit.cpp:227 +msgid "" +"Ringmod from OP3 + double pitch ModInput\n" +"WARNING - has emulation issues; subject to change" +msgstr "" + +#: src/gui/insEdit.cpp:232 +msgid "Bitwise AND" +msgstr "" + +#: src/gui/insEdit.cpp:233 +msgid "Bitwise OR" +msgstr "" + +#: src/gui/insEdit.cpp:234 +msgid "Bitwise XOR" +msgstr "" + +#: src/gui/insEdit.cpp:239 src/gui/insEdit.cpp:390 +msgid "gate" +msgstr "" + +#: src/gui/insEdit.cpp:240 src/gui/insEdit.cpp:391 +msgid "sync" +msgstr "" + +#: src/gui/insEdit.cpp:241 src/gui/insEdit.cpp:392 +msgid "ring" +msgstr "" + +#: src/gui/insEdit.cpp:327 +msgid "How did you even" +msgstr "" + +#: src/gui/insEdit.cpp:335 +msgid "triangle" +msgstr "" + +#: src/gui/insEdit.cpp:336 src/gui/insEdit.cpp:5821 +msgid "saw" +msgstr "" + +#: src/gui/insEdit.cpp:337 src/gui/insEdit.cpp:5827 +msgid "pulse" +msgstr "" + +#: src/gui/insEdit.cpp:338 src/gui/insEdit.cpp:344 src/gui/insEdit.cpp:373 +#: src/gui/insEdit.cpp:424 src/gui/insEdit.cpp:429 src/gui/insEdit.cpp:5833 +msgid "noise" +msgstr "" + +#: src/gui/insEdit.cpp:343 +msgid "tone" +msgstr "" + +#: src/gui/insEdit.cpp:345 +msgid "envelope" +msgstr "" + +#: src/gui/insEdit.cpp:350 +msgid "hold" +msgstr "" + +#: src/gui/insEdit.cpp:351 +msgid "alternate" +msgstr "" + +#: src/gui/insEdit.cpp:352 src/gui/insEdit.cpp:364 +msgid "direction" +msgstr "" + +#: src/gui/insEdit.cpp:353 src/gui/insEdit.cpp:436 +msgid "enable" +msgstr "" + +#: src/gui/insEdit.cpp:357 src/gui/insEdit.cpp:368 +msgid "enabled" +msgstr "" + +#: src/gui/insEdit.cpp:361 +msgid "mirror" +msgstr "" + +#: src/gui/insEdit.cpp:365 +msgid "resolution" +msgstr "" + +#: src/gui/insEdit.cpp:366 +msgid "fixed" +msgstr "" + +#: src/gui/insEdit.cpp:367 +msgid "N/A" +msgstr "" + +#: src/gui/insEdit.cpp:374 +msgid "echo" +msgstr "" + +#: src/gui/insEdit.cpp:375 +msgid "pitch mod" +msgstr "" + +#: src/gui/insEdit.cpp:376 src/gui/insEdit.cpp:508 +msgid "invert right" +msgstr "" + +#: src/gui/insEdit.cpp:377 src/gui/insEdit.cpp:509 +msgid "invert left" +msgstr "" + +#: src/gui/insEdit.cpp:382 src/gui/insEdit.cpp:5905 +msgid "low" +msgstr "" + +#: src/gui/insEdit.cpp:383 src/gui/insEdit.cpp:5911 +msgid "band" +msgstr "" + +#: src/gui/insEdit.cpp:384 src/gui/insEdit.cpp:5917 +msgid "high" +msgstr "" + +#: src/gui/insEdit.cpp:385 src/gui/insEdit.cpp:5924 +msgid "ch3off" +msgstr "" + +#: src/gui/insEdit.cpp:393 +msgid "test" +msgstr "" + +#: src/gui/insEdit.cpp:398 +msgid "15KHz" +msgstr "" + +#: src/gui/insEdit.cpp:399 +msgid "filter 2+4" +msgstr "" + +#: src/gui/insEdit.cpp:400 +msgid "filter 1+3" +msgstr "" + +#: src/gui/insEdit.cpp:401 +msgid "16-bit 3+4" +msgstr "" + +#: src/gui/insEdit.cpp:402 +msgid "16-bit 1+2" +msgstr "" + +#: src/gui/insEdit.cpp:403 +msgid "high3" +msgstr "" + +#: src/gui/insEdit.cpp:404 +msgid "high1" +msgstr "" + +#: src/gui/insEdit.cpp:405 +msgid "poly9" +msgstr "" + +#: src/gui/insEdit.cpp:414 +msgid "16'" +msgstr "" + +#: src/gui/insEdit.cpp:415 +msgid "8'" +msgstr "" + +#: src/gui/insEdit.cpp:416 +msgid "4'" +msgstr "" + +#: src/gui/insEdit.cpp:417 +msgid "2'" +msgstr "" + +#: src/gui/insEdit.cpp:418 +msgid "sustain" +msgstr "" + +#: src/gui/insEdit.cpp:423 +msgid "square" +msgstr "" + +#: src/gui/insEdit.cpp:431 +msgid "surround" +msgstr "" + +#: src/gui/insEdit.cpp:437 +msgid "oneshot" +msgstr "" + +#: src/gui/insEdit.cpp:438 +msgid "split L/R" +msgstr "" + +#: src/gui/insEdit.cpp:439 +msgid "HinvR" +msgstr "" + +#: src/gui/insEdit.cpp:440 +msgid "VinvR" +msgstr "" + +#: src/gui/insEdit.cpp:441 +msgid "HinvL" +msgstr "" + +#: src/gui/insEdit.cpp:442 +msgid "VinvL" +msgstr "" + +#: src/gui/insEdit.cpp:447 src/gui/insEdit.cpp:476 +msgid "ring mod" +msgstr "" + +#: src/gui/insEdit.cpp:448 +msgid "low pass" +msgstr "" + +#: src/gui/insEdit.cpp:449 src/gui/insEdit.cpp:475 +msgid "high pass" +msgstr "" + +#: src/gui/insEdit.cpp:450 +msgid "band pass" +msgstr "" + +#: src/gui/insEdit.cpp:459 +msgid "enable tap B" +msgstr "" + +#: src/gui/insEdit.cpp:460 +msgid "AM with slope" +msgstr "" + +#: src/gui/insEdit.cpp:465 +msgid "invert B" +msgstr "" + +#: src/gui/insEdit.cpp:466 +msgid "invert A" +msgstr "" + +#: src/gui/insEdit.cpp:467 +msgid "reset B" +msgstr "" + +#: src/gui/insEdit.cpp:468 +msgid "reset A" +msgstr "" + +#: src/gui/insEdit.cpp:469 +msgid "clip B" +msgstr "" + +#: src/gui/insEdit.cpp:470 +msgid "clip A" +msgstr "" + +#: src/gui/insEdit.cpp:477 +msgid "swap counters (noise)" +msgstr "" + +#: src/gui/insEdit.cpp:478 +msgid "low pass (noise)" +msgstr "" + +#: src/gui/insEdit.cpp:485 +msgid "rear right" +msgstr "" + +#: src/gui/insEdit.cpp:486 +msgid "rear left" +msgstr "" + +#: src/gui/insEdit.cpp:491 +msgid "on" +msgstr "" + +#: src/gui/insEdit.cpp:496 +msgid "k1 slowdown" +msgstr "" + +#: src/gui/insEdit.cpp:497 +msgid "k2 slowdown" +msgstr "" + +#: src/gui/insEdit.cpp:502 +msgid "pause" +msgstr "" + +#: src/gui/insEdit.cpp:503 +msgid "reverse" +msgstr "" + +#: src/gui/insEdit.cpp:521 +msgid "Subtract" +msgstr "" + +#: src/gui/insEdit.cpp:522 +msgid "Average" +msgstr "" + +#: src/gui/insEdit.cpp:523 src/gui/insEdit.cpp:2037 +msgid "Phase" +msgstr "" + +#: src/gui/insEdit.cpp:524 +msgid "Chorus" +msgstr "" + +#: src/gui/insEdit.cpp:528 +msgid "None (dual)" +msgstr "" + +#: src/gui/insEdit.cpp:529 +msgid "Wipe" +msgstr "" + +#: src/gui/insEdit.cpp:531 +msgid "Fade (ping-pong)" +msgstr "" + +#: src/gui/insEdit.cpp:532 +msgid "Overlay" +msgstr "" + +#: src/gui/insEdit.cpp:533 +msgid "Negative Overlay" +msgstr "" + +#: src/gui/insEdit.cpp:534 +msgid "Slide" +msgstr "" + +#: src/gui/insEdit.cpp:535 +msgid "Mix Chorus" +msgstr "" + +#: src/gui/insEdit.cpp:536 +msgid "Phase Modulation" +msgstr "" + +#: src/gui/insEdit.cpp:541 +msgid "Sweep" +msgstr "" + +#: src/gui/insEdit.cpp:542 src/gui/insEdit.cpp:552 +msgid "Wait" +msgstr "" + +#: src/gui/insEdit.cpp:543 src/gui/insEdit.cpp:553 +msgid "Wait for Release" +msgstr "" + +#: src/gui/insEdit.cpp:545 src/gui/insEdit.cpp:555 +msgid "Loop until Release" +msgstr "" + +#: src/gui/insEdit.cpp:549 +msgid "Volume Sweep" +msgstr "" + +#: src/gui/insEdit.cpp:550 +msgid "Frequency Sweep" +msgstr "" + +#: src/gui/insEdit.cpp:551 +msgid "Cutoff Sweep" +msgstr "" + +#: src/gui/insEdit.cpp:559 src/gui/insEdit.cpp:6604 +msgid "Direct" +msgstr "" + +#: src/gui/insEdit.cpp:560 src/gui/insEdit.cpp:6608 +msgid "Decrease (linear)" +msgstr "" + +#: src/gui/insEdit.cpp:561 src/gui/insEdit.cpp:6612 +msgid "Decrease (logarithmic)" +msgstr "" + +#: src/gui/insEdit.cpp:562 src/gui/insEdit.cpp:6616 +msgid "Increase (linear)" +msgstr "" + +#: src/gui/insEdit.cpp:563 src/gui/insEdit.cpp:6620 +msgid "Increase (bent line)" +msgstr "" + +#: src/gui/insEdit.cpp:611 +msgid "Relative" +msgstr "" + +#: src/gui/insEdit.cpp:616 +#, c-format +msgid "%d: +%d (exponential)" +msgstr "" + +#: src/gui/insEdit.cpp:619 +#, c-format +msgid "%d: +%d (linear)" +msgstr "" + +#: src/gui/insEdit.cpp:622 +#, c-format +msgid "%d: -%d (exponential)" +msgstr "" + +#: src/gui/insEdit.cpp:625 +#, c-format +msgid "%d: -%d (linear)" +msgstr "" + +#: src/gui/insEdit.cpp:627 +#, c-format +msgid "%d: %d (direct)" +msgstr "" + +#: src/gui/insEdit.cpp:660 +msgid "Random" +msgstr "" + +#: src/gui/insEdit.cpp:1610 +msgid "" +"left click to restart\n" +"middle click to pause\n" +"right click to see algorithm" +msgstr "" + +#: src/gui/insEdit.cpp:1620 +msgid "" +"left click to configure TL scaling\n" +"right click to see FM preview" +msgstr "" + +#: src/gui/insEdit.cpp:1624 +msgid "right click to see FM preview" +msgstr "" + +#: src/gui/insEdit.cpp:1639 +msgid "operator level changes with volume?" +msgstr "" + +#: src/gui/insEdit.cpp:1648 +msgid "AUTO##OPKVS" +msgstr "" + +#: src/gui/insEdit.cpp:1650 +msgid "NO##OPKVS" +msgstr "" + +#: src/gui/insEdit.cpp:1652 +msgid "YES##OPKVS" +msgstr "" + +#: src/gui/insEdit.cpp:1900 src/gui/insEdit.cpp:2005 +msgid "Bottom" +msgstr "" + +#: src/gui/insEdit.cpp:1940 +msgid "Hold" +msgstr "" + +#: src/gui/insEdit.cpp:1949 +msgid "SusTime" +msgstr "" + +#: src/gui/insEdit.cpp:1969 +msgid "SusDecay" +msgstr "" + +#: src/gui/insEdit.cpp:2047 +msgid "Shape" +msgstr "" + +#: src/gui/insEdit.cpp:2100 +msgid "Macro type: Sequence" +msgstr "" + +#: src/gui/insEdit.cpp:2103 +msgid "Macro type: ADSR" +msgstr "" + +#: src/gui/insEdit.cpp:2106 +msgid "Macro type: LFO" +msgstr "" + +#: src/gui/insEdit.cpp:2109 +msgid "Macro type: What's going on here?" +msgstr "" + +#: src/gui/insEdit.cpp:2122 +msgid "Delay/Step Length" +msgstr "" + +#: src/gui/insEdit.cpp:2125 +msgid "Step Length (ticks)##IMacroSpeed" +msgstr "" + +#: src/gui/insEdit.cpp:2129 +msgid "Delay##IMacroDelay" +msgstr "" + +#: src/gui/insEdit.cpp:2142 +msgid "Release mode: Active (jump to release pos)" +msgstr "" + +#: src/gui/insEdit.cpp:2144 +msgid "Release mode: Passive (delayed release)" +msgstr "" + +#: src/gui/insEdit.cpp:2393 +msgid "StepLen" +msgstr "" + +#: src/gui/insEdit.cpp:2401 +msgid "Delay" +msgstr "" + +#: src/gui/insEdit.cpp:2425 +msgid "The heck? No, this isn't even working correctly..." +msgstr "" + +#: src/gui/insEdit.cpp:2428 +msgid "The only problem with that selectedMacro is that it's a bug..." +msgstr "" + +#: src/gui/insEdit.cpp:2589 +msgid "(copying)" +msgstr "" + +#: src/gui/insEdit.cpp:2591 +msgid "(swapping)" +msgstr "" + +#: src/gui/insEdit.cpp:2595 +msgid "" +"- drag to swap operator\n" +"- shift-drag to copy operator" +msgstr "" + +#: src/gui/insEdit.cpp:2632 +msgid "new DPCM features disabled (compatibility)!" +msgstr "" + +#: src/gui/insEdit.cpp:2633 +msgid "click here to enable them." +msgstr "" + +#: src/gui/insEdit.cpp:2644 +msgid "none selected" +msgstr "" + +#: src/gui/insEdit.cpp:2657 +msgid "Use sample" +msgstr "" + +#: src/gui/insEdit.cpp:2659 +msgid "Sample bank slot##BANKSLOT" +msgstr "" + +#: src/gui/insEdit.cpp:2681 +msgid "Use wavetable (Amiga/Generic DAC only)" +msgstr "" + +#: src/gui/insEdit.cpp:2681 +msgid "Use wavetable" +msgstr "" + +#: src/gui/insEdit.cpp:2708 +msgid "Use sample map" +msgstr "" + +#: src/gui/insEdit.cpp:2730 +msgid "delta" +msgstr "" + +#: src/gui/insEdit.cpp:2736 +msgid "sample name" +msgstr "" + +#: src/gui/insEdit.cpp:3001 +msgid "set entire map to this pitch" +msgstr "" + +#: src/gui/insEdit.cpp:3009 +msgid "set entire map to this delta counter value" +msgstr "" + +#: src/gui/insEdit.cpp:3018 +msgid "set entire map to this note" +msgstr "" + +#: src/gui/insEdit.cpp:3027 +msgid "set entire map to this sample" +msgstr "" + +#: src/gui/insEdit.cpp:3037 +msgid "reset pitches" +msgstr "" + +#: src/gui/insEdit.cpp:3042 +msgid "clear delta counter values" +msgstr "" + +#: src/gui/insEdit.cpp:3048 +msgid "reset notes" +msgstr "" + +#: src/gui/insEdit.cpp:3054 +msgid "clear map samples" +msgstr "" + +#: src/gui/insEdit.cpp:3148 +msgid "Request from TX81Z" +msgstr "" + +#: src/gui/insEdit.cpp:3234 +#, c-format +msgid "%s name" +msgstr "" + +#: src/gui/insEdit.cpp:3286 +msgid "Fixed frequency mode" +msgstr "" + +#: src/gui/insEdit.cpp:3288 +msgid "" +"when enabled, drums will be set to the specified frequencies, ignoring the " +"note." +msgstr "" + +#: src/gui/insEdit.cpp:3296 +msgid "Drum" +msgstr "" + +#: src/gui/insEdit.cpp:3298 src/gui/insEdit.cpp:3798 src/gui/insEdit.cpp:3904 +#: src/gui/insEdit.cpp:4404 src/gui/insEdit.cpp:4468 src/gui/insEdit.cpp:5068 +#: src/gui/insEdit.cpp:5518 +msgid "Block" +msgstr "" + +#: src/gui/insEdit.cpp:3300 src/gui/insEdit.cpp:3803 src/gui/insEdit.cpp:3909 +#: src/gui/insEdit.cpp:4993 src/gui/insEdit.cpp:5079 src/gui/insEdit.cpp:5519 +msgid "FreqNum" +msgstr "" + +#: src/gui/insEdit.cpp:3303 +msgid "Snare/Hi-hat" +msgstr "" + +#: src/gui/insEdit.cpp:3304 +msgid "Tom/Top" +msgstr "" + +#: src/gui/insEdit.cpp:3314 +msgid "Volume##TL" +msgstr "" + +#: src/gui/insEdit.cpp:3316 +msgid "this volume slider only works in compatibility (non-drums) system." +msgstr "" + +#: src/gui/insEdit.cpp:3626 +msgid "Env" +msgstr "" + +#: src/gui/insEdit.cpp:3980 src/gui/insEdit.cpp:4346 src/gui/insEdit.cpp:4396 +#: src/gui/insEdit.cpp:5104 +msgid "OPL2/3 only (last 4 waveforms are OPL3 only)" +msgstr "" + +#: src/gui/insEdit.cpp:4079 src/gui/insEdit.cpp:4788 +#, c-format +msgid "Envelope 2 (kick only)" +msgstr "" + +#: src/gui/insEdit.cpp:4084 +#, c-format +msgid "Operator %d" +msgstr "" + +#: src/gui/insEdit.cpp:4414 +msgid "Freq" +msgstr "" + +#: src/gui/insEdit.cpp:4443 +msgid "Only on YM2151 (OPM)" +msgstr "" + +#: src/gui/insEdit.cpp:4466 +msgid "Blk" +msgstr "" + +#: src/gui/insEdit.cpp:4479 +msgid "F" +msgstr "" + +#: src/gui/insEdit.cpp:4481 +msgid "Frequency (F-Num)" +msgstr "" + +#: src/gui/insEdit.cpp:4833 +msgid "SSG On" +msgstr "" + +#: src/gui/insEdit.cpp:5206 src/gui/insEdit.cpp:5207 +msgid "waiting..." +msgstr "" + +#: src/gui/insEdit.cpp:5210 src/gui/insEdit.cpp:5211 +msgid "no instrument selected" +msgstr "" + +#: src/gui/insEdit.cpp:5393 +msgid "" +"none of the currently present chips are able to play this instrument type!" +msgstr "" + +#: src/gui/insEdit.cpp:5413 +msgid "FM Macros" +msgstr "" + +#: src/gui/insEdit.cpp:5435 src/gui/insEdit.cpp:5440 +msgid "LFO Speed" +msgstr "" + +#: src/gui/insEdit.cpp:5439 src/gui/insEdit.cpp:6514 +msgid "PM Depth" +msgstr "" + +#: src/gui/insEdit.cpp:5441 +msgid "LFO Shape" +msgstr "" + +#: src/gui/insEdit.cpp:5444 +msgid "OpMask" +msgstr "" + +#: src/gui/insEdit.cpp:5446 +msgid "AM Depth 2" +msgstr "" + +#: src/gui/insEdit.cpp:5447 +msgid "PM Depth 2" +msgstr "" + +#: src/gui/insEdit.cpp:5448 +msgid "LFO2 Speed" +msgstr "" + +#: src/gui/insEdit.cpp:5449 +msgid "LFO2 Shape" +msgstr "" + +#: src/gui/insEdit.cpp:5458 +#, c-format +msgid "Operator Macros" +msgstr "" + +#: src/gui/insEdit.cpp:5460 +#, c-format +msgid "OP%d Macros" +msgstr "" + +#: src/gui/insEdit.cpp:5521 +msgid "Op. Arpeggio" +msgstr "" + +#: src/gui/insEdit.cpp:5522 +msgid "Op. Pitch" +msgstr "" + +#: src/gui/insEdit.cpp:5531 +msgid "Op. Panning" +msgstr "" + +#: src/gui/insEdit.cpp:5558 +msgid "Use software envelope" +msgstr "" + +#: src/gui/insEdit.cpp:5559 +msgid "Initialize envelope on every note" +msgstr "" + +#: src/gui/insEdit.cpp:5560 +msgid "Double wave length (GBA only)" +msgstr "" + +#: src/gui/insEdit.cpp:5589 src/gui/insEdit.cpp:5666 +msgid "Sound Length" +msgstr "" + +#: src/gui/insEdit.cpp:5592 src/gui/insEdit.cpp:5666 +msgid "Infinity" +msgstr "" + +#: src/gui/insEdit.cpp:5596 +msgid "Direction" +msgstr "" + +#: src/gui/insEdit.cpp:5599 src/gui/insEdit.cpp:5669 src/gui/insEdit.cpp:5697 +#: src/gui/insEdit.cpp:6008 src/gui/insEdit.cpp:6051 +msgid "Up" +msgstr "" + +#: src/gui/insEdit.cpp:5604 src/gui/insEdit.cpp:5674 src/gui/insEdit.cpp:5702 +#: src/gui/insEdit.cpp:6013 src/gui/insEdit.cpp:6056 +msgid "Down" +msgstr "" + +#: src/gui/insEdit.cpp:5620 src/gui/insEdit.cpp:5953 +msgid "Hardware Sequence" +msgstr "" + +#: src/gui/insEdit.cpp:5630 src/gui/insEdit.cpp:5963 +msgid "Tick" +msgstr "" + +#: src/gui/insEdit.cpp:5632 src/gui/insEdit.cpp:5965 +msgid "Command" +msgstr "" + +#: src/gui/insEdit.cpp:5634 src/gui/insEdit.cpp:5967 +msgid "Move/Remove" +msgstr "" + +#: src/gui/insEdit.cpp:5663 +msgid "Env Length" +msgstr "" + +#: src/gui/insEdit.cpp:5690 +msgid "Shift" +msgstr "" + +#: src/gui/insEdit.cpp:5717 src/gui/insEdit.cpp:6073 +msgid "Ticks" +msgstr "" + +#: src/gui/insEdit.cpp:5736 src/gui/insEdit.cpp:6092 src/gui/insEdit.cpp:6239 +msgid "Position" +msgstr "" + +#: src/gui/insEdit.cpp:5815 +msgid "tri" +msgstr "" + +#: src/gui/insEdit.cpp:5882 +msgid "Ring Modulation" +msgstr "" + +#: src/gui/insEdit.cpp:5886 +msgid "Oscillator Sync" +msgstr "" + +#: src/gui/insEdit.cpp:5890 +msgid "Enable filter" +msgstr "" + +#: src/gui/insEdit.cpp:5891 +msgid "Initialize filter" +msgstr "" + +#: src/gui/insEdit.cpp:5894 src/gui/insEdit.cpp:5897 src/gui/insEdit.cpp:6951 +#: src/gui/insEdit.cpp:7215 src/gui/insEdit.cpp:7476 +msgid "Cutoff" +msgstr "" + +#: src/gui/insEdit.cpp:5902 src/gui/insEdit.cpp:6408 src/gui/insEdit.cpp:6952 +#: src/gui/insEdit.cpp:7179 src/gui/insEdit.cpp:7477 +msgid "Filter Mode" +msgstr "" + +#: src/gui/insEdit.cpp:5931 src/gui/insEdit.cpp:7485 +msgid "Noise Mode" +msgstr "" + +#: src/gui/insEdit.cpp:5932 +msgid "Wave Mix Mode" +msgstr "" + +#: src/gui/insEdit.cpp:5935 +msgid "Absolute Cutoff Macro" +msgstr "" + +#: src/gui/insEdit.cpp:5939 +msgid "Absolute Duty Macro" +msgstr "" + +#: src/gui/insEdit.cpp:5945 +msgid "Don't test before new note" +msgstr "" + +#: src/gui/insEdit.cpp:5950 +msgid "Switch roles of frequency and phase reset timer" +msgstr "" + +#: src/gui/insEdit.cpp:5997 src/gui/insEdit.cpp:6040 +msgid "Period" +msgstr "" + +#: src/gui/insEdit.cpp:6002 src/gui/insEdit.cpp:6045 src/gui/insEdit.cpp:6892 +msgid "Amount" +msgstr "" + +#: src/gui/insEdit.cpp:6005 src/gui/insEdit.cpp:6048 +msgid "Bound" +msgstr "" + +#: src/gui/insEdit.cpp:6021 +msgid "Flip" +msgstr "" + +#: src/gui/insEdit.cpp:6210 +msgid "Load waveform" +msgstr "" + +#: src/gui/insEdit.cpp:6215 +msgid "" +"when enabled, a waveform will be loaded into RAM.\n" +"when disabled, only the offset and length change." +msgstr "" + +#: src/gui/insEdit.cpp:6219 +msgid "Waveform##WAVE" +msgstr "" + +#: src/gui/insEdit.cpp:6227 +msgid "Per-channel wave position/length" +msgstr "" + +#: src/gui/insEdit.cpp:6237 +msgid "Ch" +msgstr "" + +#: src/gui/insEdit.cpp:6286 +msgid "Compatibility mode" +msgstr "" + +#: src/gui/insEdit.cpp:6288 +msgid "" +"only use for compatibility with .dmf modules!\n" +"- initializes modulation table with first wavetable\n" +"- does not alter modulation parameters on instrument change" +msgstr "" + +#: src/gui/insEdit.cpp:6290 +msgid "Modulation depth" +msgstr "" + +#: src/gui/insEdit.cpp:6294 +msgid "Modulation speed" +msgstr "" + +#: src/gui/insEdit.cpp:6298 +msgid "Modulation table" +msgstr "" + +#: src/gui/insEdit.cpp:6347 +msgid "Set modulation table (channel 5 only)" +msgstr "" + +#: src/gui/insEdit.cpp:6411 src/gui/insEdit.cpp:7184 +msgid "Filter K1" +msgstr "" + +#: src/gui/insEdit.cpp:6413 src/gui/insEdit.cpp:7185 +msgid "Filter K2" +msgstr "" + +#: src/gui/insEdit.cpp:6417 +msgid "Envelope length" +msgstr "" + +#: src/gui/insEdit.cpp:6420 +msgid "Left Volume Ramp" +msgstr "" + +#: src/gui/insEdit.cpp:6422 +msgid "Right Volume Ramp" +msgstr "" + +#: src/gui/insEdit.cpp:6425 +msgid "Filter K1 Ramp" +msgstr "" + +#: src/gui/insEdit.cpp:6427 +msgid "Filter K2 Ramp" +msgstr "" + +#: src/gui/insEdit.cpp:6430 +msgid "K1 Ramp Slowdown" +msgstr "" + +#: src/gui/insEdit.cpp:6432 +msgid "K2 Ramp Slowdown" +msgstr "" + +#: src/gui/insEdit.cpp:6454 +msgid "Attack Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6460 +msgid "Decay 1 Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6466 +msgid "Decay Level" +msgstr "" + +#: src/gui/insEdit.cpp:6472 +msgid "Decay 2 Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6478 +msgid "Release Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6484 +msgid "Rate Correction" +msgstr "" + +#: src/gui/insEdit.cpp:6512 +msgid "LFO Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6523 +msgid "Use envelope" +msgstr "" + +#: src/gui/insEdit.cpp:6576 +msgid "Sustain/release mode:" +msgstr "" + +#: src/gui/insEdit.cpp:6577 +msgid "Direct (cut on release)" +msgstr "" + +#: src/gui/insEdit.cpp:6580 +msgid "Effective (linear decrease)" +msgstr "" + +#: src/gui/insEdit.cpp:6583 +msgid "Effective (exponential decrease)" +msgstr "" + +#: src/gui/insEdit.cpp:6586 +msgid "Delayed (write R on release)" +msgstr "" + +#: src/gui/insEdit.cpp:6596 src/gui/insEdit.cpp:6597 +msgid "Gain Mode" +msgstr "" + +#: src/gui/insEdit.cpp:6599 src/gui/insEdit.cpp:6600 src/gui/insEdit.cpp:7205 +msgid "Gain" +msgstr "" + +#: src/gui/insEdit.cpp:6633 +msgid "" +"using decrease modes will not produce any sound at all, unless you know what " +"you are doing.\n" +"it is recommended to use the Gain macro for decrease instead." +msgstr "" + +#: src/gui/insEdit.cpp:6703 +msgid "Enable synthesizer" +msgstr "" + +#: src/gui/insEdit.cpp:6721 +msgid "Single-waveform" +msgstr "" + +#: src/gui/insEdit.cpp:6730 +msgid "Dual-waveform" +msgstr "" + +#: src/gui/insEdit.cpp:6803 src/gui/insEdit.cpp:6812 +msgid "Wave 1" +msgstr "" + +#: src/gui/insEdit.cpp:6808 src/gui/insEdit.cpp:6823 +msgid "" +"waveform macro is controlling wave 1!\n" +"this value will be ineffective." +msgstr "" + +#: src/gui/insEdit.cpp:6829 +msgid "Wave 2" +msgstr "" + +#: src/gui/insEdit.cpp:6844 +msgid "Resume preview" +msgstr "" + +#: src/gui/insEdit.cpp:6846 +msgid "Pause preview" +msgstr "" + +#: src/gui/insEdit.cpp:6854 +msgid "Restart preview" +msgstr "" + +#: src/gui/insEdit.cpp:6874 +msgid "Copy to new wavetable" +msgstr "" + +#: src/gui/insEdit.cpp:6881 +msgid "Update Rate" +msgstr "" + +#: src/gui/insEdit.cpp:6902 +msgid "Global" +msgstr "" + +#: src/gui/insEdit.cpp:6906 +msgid "" +"wavetable synthesizer disabled.\n" +"use the Waveform macro to set the wave for this instrument." +msgstr "" + +#: src/gui/insEdit.cpp:6912 +msgid "Macros" +msgstr "" + +#: src/gui/insEdit.cpp:6921 src/gui/insEdit.cpp:6929 src/gui/insEdit.cpp:6938 +#: src/gui/insEdit.cpp:6947 src/gui/insEdit.cpp:6962 src/gui/insEdit.cpp:6976 +#: src/gui/insEdit.cpp:6988 src/gui/insEdit.cpp:7001 src/gui/insEdit.cpp:7017 +#: src/gui/insEdit.cpp:7023 src/gui/insEdit.cpp:7033 src/gui/insEdit.cpp:7040 +#: src/gui/insEdit.cpp:7046 src/gui/insEdit.cpp:7059 src/gui/insEdit.cpp:7066 +#: src/gui/insEdit.cpp:7073 src/gui/insEdit.cpp:7082 src/gui/insEdit.cpp:7092 +#: src/gui/insEdit.cpp:7100 src/gui/insEdit.cpp:7106 src/gui/insEdit.cpp:7114 +#: src/gui/insEdit.cpp:7121 src/gui/insEdit.cpp:7127 src/gui/insEdit.cpp:7137 +#: src/gui/insEdit.cpp:7149 src/gui/insEdit.cpp:7157 src/gui/insEdit.cpp:7173 +#: src/gui/insEdit.cpp:7178 src/gui/insEdit.cpp:7191 src/gui/insEdit.cpp:7198 +#: src/gui/insEdit.cpp:7209 src/gui/insEdit.cpp:7222 src/gui/insEdit.cpp:7231 +#: src/gui/insEdit.cpp:7238 src/gui/insEdit.cpp:7246 src/gui/insEdit.cpp:7270 +#: src/gui/insEdit.cpp:7277 src/gui/insEdit.cpp:7285 src/gui/insEdit.cpp:7296 +#: src/gui/insEdit.cpp:7303 src/gui/insEdit.cpp:7311 src/gui/insEdit.cpp:7319 +#: src/gui/insEdit.cpp:7328 src/gui/insEdit.cpp:7336 src/gui/insEdit.cpp:7342 +#: src/gui/insEdit.cpp:7348 src/gui/insEdit.cpp:7354 src/gui/insEdit.cpp:7359 +#: src/gui/insEdit.cpp:7366 src/gui/insEdit.cpp:7373 src/gui/insEdit.cpp:7381 +#: src/gui/insEdit.cpp:7390 src/gui/insEdit.cpp:7398 src/gui/insEdit.cpp:7410 +#: src/gui/insEdit.cpp:7423 src/gui/insEdit.cpp:7434 src/gui/insEdit.cpp:7444 +#: src/gui/insEdit.cpp:7452 src/gui/insEdit.cpp:7462 src/gui/insEdit.cpp:7471 +msgid "Arpeggio" +msgstr "" + +#: src/gui/insEdit.cpp:6925 src/gui/insEdit.cpp:6932 src/gui/insEdit.cpp:6943 +#: src/gui/insEdit.cpp:6972 src/gui/insEdit.cpp:6984 src/gui/insEdit.cpp:6994 +#: src/gui/insEdit.cpp:7007 src/gui/insEdit.cpp:7054 src/gui/insEdit.cpp:7062 +#: src/gui/insEdit.cpp:7069 src/gui/insEdit.cpp:7088 src/gui/insEdit.cpp:7110 +#: src/gui/insEdit.cpp:7133 src/gui/insEdit.cpp:7144 src/gui/insEdit.cpp:7163 +#: src/gui/insEdit.cpp:7183 src/gui/insEdit.cpp:7194 src/gui/insEdit.cpp:7214 +#: src/gui/insEdit.cpp:7234 src/gui/insEdit.cpp:7242 src/gui/insEdit.cpp:7249 +#: src/gui/insEdit.cpp:7254 src/gui/insEdit.cpp:7260 src/gui/insEdit.cpp:7266 +#: src/gui/insEdit.cpp:7273 src/gui/insEdit.cpp:7281 src/gui/insEdit.cpp:7290 +#: src/gui/insEdit.cpp:7299 src/gui/insEdit.cpp:7307 src/gui/insEdit.cpp:7324 +#: src/gui/insEdit.cpp:7332 src/gui/insEdit.cpp:7338 src/gui/insEdit.cpp:7362 +#: src/gui/insEdit.cpp:7369 src/gui/insEdit.cpp:7377 src/gui/insEdit.cpp:7386 +#: src/gui/insEdit.cpp:7394 src/gui/insEdit.cpp:7402 src/gui/insEdit.cpp:7414 +#: src/gui/insEdit.cpp:7429 src/gui/insEdit.cpp:7440 src/gui/insEdit.cpp:7448 +#: src/gui/insEdit.cpp:7457 src/gui/insEdit.cpp:7475 +msgid "Phase Reset" +msgstr "" + +#: src/gui/insEdit.cpp:6939 src/gui/insEdit.cpp:7024 src/gui/insEdit.cpp:7210 +#: src/gui/insEdit.cpp:7247 +msgid "Duty/Noise" +msgstr "" + +#: src/gui/insEdit.cpp:6966 src/gui/insEdit.cpp:7288 +msgid "Surround" +msgstr "" + +#: src/gui/insEdit.cpp:6968 src/gui/insEdit.cpp:6981 src/gui/insEdit.cpp:7026 +#: src/gui/insEdit.cpp:7085 src/gui/insEdit.cpp:7141 src/gui/insEdit.cpp:7159 +#: src/gui/insEdit.cpp:7180 src/gui/insEdit.cpp:7201 src/gui/insEdit.cpp:7225 +#: src/gui/insEdit.cpp:7278 src/gui/insEdit.cpp:7304 src/gui/insEdit.cpp:7321 +#: src/gui/insEdit.cpp:7329 src/gui/insEdit.cpp:7374 src/gui/insEdit.cpp:7383 +#: src/gui/insEdit.cpp:7399 src/gui/insEdit.cpp:7411 src/gui/insEdit.cpp:7426 +#: src/gui/insEdit.cpp:7454 src/gui/insEdit.cpp:7464 +msgid "Panning (left)" +msgstr "" + +#: src/gui/insEdit.cpp:6969 src/gui/insEdit.cpp:6982 src/gui/insEdit.cpp:7027 +#: src/gui/insEdit.cpp:7086 src/gui/insEdit.cpp:7142 src/gui/insEdit.cpp:7160 +#: src/gui/insEdit.cpp:7181 src/gui/insEdit.cpp:7202 src/gui/insEdit.cpp:7226 +#: src/gui/insEdit.cpp:7279 src/gui/insEdit.cpp:7305 src/gui/insEdit.cpp:7322 +#: src/gui/insEdit.cpp:7330 src/gui/insEdit.cpp:7375 src/gui/insEdit.cpp:7384 +#: src/gui/insEdit.cpp:7400 src/gui/insEdit.cpp:7412 src/gui/insEdit.cpp:7427 +#: src/gui/insEdit.cpp:7455 src/gui/insEdit.cpp:7465 +msgid "Panning (right)" +msgstr "" + +#: src/gui/insEdit.cpp:6990 src/gui/insEdit.cpp:7003 src/gui/insEdit.cpp:7107 +#: src/gui/insEdit.cpp:7199 src/gui/insEdit.cpp:7239 src/gui/insEdit.cpp:7424 +msgid "Noise Freq" +msgstr "" + +#: src/gui/insEdit.cpp:6996 src/gui/insEdit.cpp:7010 src/gui/insEdit.cpp:7167 +msgid "AutoEnv Num" +msgstr "" + +#: src/gui/insEdit.cpp:6997 src/gui/insEdit.cpp:7011 src/gui/insEdit.cpp:7168 +msgid "AutoEnv Den" +msgstr "" + +#: src/gui/insEdit.cpp:7012 +msgid "Noise AND Mask" +msgstr "" + +#: src/gui/insEdit.cpp:7013 +msgid "Noise OR Mask" +msgstr "" + +#: src/gui/insEdit.cpp:7034 +msgid "On/Off" +msgstr "" + +#: src/gui/insEdit.cpp:7060 +msgid "Patch" +msgstr "" + +#: src/gui/insEdit.cpp:7076 +msgid "Mod Depth" +msgstr "" + +#: src/gui/insEdit.cpp:7077 +msgid "Mod Speed" +msgstr "" + +#: src/gui/insEdit.cpp:7078 +msgid "Mod Position" +msgstr "" + +#: src/gui/insEdit.cpp:7083 +msgid "Noise Length" +msgstr "" + +#: src/gui/insEdit.cpp:7093 +msgid "Wave Pos" +msgstr "" + +#: src/gui/insEdit.cpp:7096 +msgid "Wave Length" +msgstr "" + +#: src/gui/insEdit.cpp:7115 +msgid "AUDCTL" +msgstr "" + +#: src/gui/insEdit.cpp:7122 src/gui/insEdit.cpp:7343 +msgid "Pulse Width" +msgstr "" + +#: src/gui/insEdit.cpp:7139 +msgid "Duty/Int" +msgstr "" + +#: src/gui/insEdit.cpp:7145 src/gui/insEdit.cpp:7406 +msgid "Load LFSR" +msgstr "" + +#: src/gui/insEdit.cpp:7165 +msgid "Envelope Mode" +msgstr "" + +#: src/gui/insEdit.cpp:7218 +msgid "Phase Reset Timer" +msgstr "" + +#: src/gui/insEdit.cpp:7252 src/gui/insEdit.cpp:7259 +msgid "Freq Divider" +msgstr "" + +#: src/gui/insEdit.cpp:7255 +msgid "Clock Divider" +msgstr "" + +#: src/gui/insEdit.cpp:7264 +msgid "Global Volume" +msgstr "" + +#: src/gui/insEdit.cpp:7286 +msgid "Echo Level" +msgstr "" + +#: src/gui/insEdit.cpp:7291 +msgid "Echo Feedback" +msgstr "" + +#: src/gui/insEdit.cpp:7292 +msgid "Echo Length" +msgstr "" + +#: src/gui/insEdit.cpp:7312 +msgid "Group Ctrl" +msgstr "" + +#: src/gui/insEdit.cpp:7313 +msgid "Group Attack" +msgstr "" + +#: src/gui/insEdit.cpp:7314 +msgid "Group Decay" +msgstr "" + +#: src/gui/insEdit.cpp:7320 +msgid "Noise Type" +msgstr "" + +#: src/gui/insEdit.cpp:7367 +msgid "Square/Noise" +msgstr "" + +#: src/gui/insEdit.cpp:7404 +msgid "Tap A Location" +msgstr "" + +#: src/gui/insEdit.cpp:7405 +msgid "Tap B Location" +msgstr "" + +#: src/gui/insEdit.cpp:7416 +msgid "Portion A Length" +msgstr "" + +#: src/gui/insEdit.cpp:7417 +msgid "Portion B Length" +msgstr "" + +#: src/gui/insEdit.cpp:7418 +msgid "Portion A Offset" +msgstr "" + +#: src/gui/insEdit.cpp:7419 +msgid "Portion B Offset" +msgstr "" + +#: src/gui/insEdit.cpp:7463 +msgid "Parameter" +msgstr "" + +#: src/gui/insEdit.cpp:7467 +msgid "Load Value" +msgstr "" + +#: src/gui/insEdit.cpp:7479 +msgid "Filter Toggle" +msgstr "" + +#: src/gui/insEdit.cpp:7486 +msgid "Wave Mix" +msgstr "" + +#: src/gui/insEdit.cpp:7500 +msgid "Octave offset" +msgstr "" + +#: src/gui/insEdit.cpp:7505 +msgid "go to Macros for other parameters." +msgstr "" + +#: src/gui/insEdit.cpp:7521 +msgid "invalid instrument type! change it first." +msgstr "" + +#: src/gui/insEdit.cpp:7565 +msgid "clear contents" +msgstr "" + +#: src/gui/insEdit.cpp:7571 +msgid "offset..." +msgstr "" + +#: src/gui/insEdit.cpp:7572 src/gui/insEdit.cpp:7605 +msgid "X" +msgstr "" + +#: src/gui/insEdit.cpp:7573 src/gui/insEdit.cpp:7609 +msgid "Y" +msgstr "" + +#: src/gui/insEdit.cpp:7574 +msgid "offset" +msgstr "" + +#: src/gui/insEdit.cpp:7637 +msgid "Min" +msgstr "" + +#: src/gui/insEdit.cpp:7638 +msgid "Max" +msgstr "" diff --git a/res/fonts/IBMPlexMono-Regular.otf b/res/fonts/IBMPlexMono-Regular.otf new file mode 100644 index 000000000..e5b6bfed7 Binary files /dev/null and b/res/fonts/IBMPlexMono-Regular.otf differ diff --git a/res/fonts/IBMPlexMono-Regular.ttf b/res/fonts/IBMPlexMono-Regular.ttf deleted file mode 100644 index f99c8e989..000000000 Binary files a/res/fonts/IBMPlexMono-Regular.ttf and /dev/null differ diff --git a/res/fonts/IBMPlexSans-Regular.otf b/res/fonts/IBMPlexSans-Regular.otf new file mode 100644 index 000000000..51b38a267 Binary files /dev/null and b/res/fonts/IBMPlexSans-Regular.otf differ diff --git a/res/fonts/IBMPlexSans-Regular.ttf b/res/fonts/IBMPlexSans-Regular.ttf deleted file mode 100644 index 2e892ab57..000000000 Binary files a/res/fonts/IBMPlexSans-Regular.ttf and /dev/null differ diff --git a/res/fonts/IBMPlexSansJP-Regular.otf b/res/fonts/IBMPlexSansJP-Regular.otf new file mode 100644 index 000000000..32b53b591 Binary files /dev/null and b/res/fonts/IBMPlexSansJP-Regular.otf differ diff --git a/res/fonts/IBMPlexSansKR-Regular.otf b/res/fonts/IBMPlexSansKR-Regular.otf new file mode 100644 index 000000000..c11874070 Binary files /dev/null and b/res/fonts/IBMPlexSansKR-Regular.otf differ diff --git a/res/fonts/bake.sh b/res/fonts/bake.sh index 6405879a4..e63d35615 100755 --- a/res/fonts/bake.sh +++ b/res/fonts/bake.sh @@ -4,8 +4,10 @@ fonts=( "Exo-Medium.ttf" "font_exo" "papers/exo-license.txt" "font_exo.cpp" "FontAwesome.otf" "iconFont" "Font Awesome by Dave Gandy - http://fontawesome.io" "font_icon.cpp" -"IBMPlexMono-Regular.ttf" "font_plexMono" "papers/ibm-plex-license.txt" "font_plexMono.cpp" -"IBMPlexSans-Regular.ttf" "font_plexSans" "papers/ibm-plex-license.txt" "font_plexSans.cpp" +"IBMPlexMono-Regular.otf" "font_plexMono" "papers/ibm-plex-license.txt" "font_plexMono.cpp" +"IBMPlexSans-Regular.otf" "font_plexSans" "papers/ibm-plex-license.txt" "font_plexSans.cpp" +"IBMPlexSansJP-Regular.otf" "font_plexSansJP" "papers/ibm-plex-license.txt" "font_plexSansJP.cpp" +"IBMPlexSansKR-Regular.otf" "font_plexSansKR" "papers/ibm-plex-license.txt" "font_plexSansKR.cpp" "LiberationSans-Regular.ttf" "font_liberationSans" "papers/liberation-license.txt" "font_liberationSans.cpp" "mononoki-Regular.ttf" "font_mononoki" "papers/mononoki-license.txt" "font_mononoki.cpp" "ProggyClean.ttf" "font_proggyClean" "papers/proggy-license.txt" "font_proggyClean.cpp" diff --git a/res/tile.gif b/res/tile.gif index 0ab4d9bb2..9dc56b214 100644 Binary files a/res/tile.gif and b/res/tile.gif differ diff --git a/scripts/build-po.sh b/scripts/build-po.sh new file mode 100755 index 000000000..8ccddafa3 --- /dev/null +++ b/scripts/build-po.sh @@ -0,0 +1,7 @@ +#!/bin/sh +EXPORT_LANGS=("de" "es" "fr" "fi" "hy" "ko" "nl" "pl" "pt_BR" "ru" "sk" "sv" "th" "tr" "uk") + +for i in ${EXPORT_LANGS[@]}; do + echo "compiling $i.po..." + mkdir -p "po/locale/$i/LC_MESSAGES/" && msgfmt "po/$i.po" -o "po/locale/$i/LC_MESSAGES/furnace.mo" +done diff --git a/scripts/update-po.sh b/scripts/update-po.sh new file mode 100755 index 000000000..66f6da672 --- /dev/null +++ b/scripts/update-po.sh @@ -0,0 +1,27 @@ +#!/bin/bash + +FUR_VERSION="0.6.3" + +EXPORT_LANGS=("de" "es" "fr" "fi" "hy" "ja" "ko" "nl" "pl" "pt_BR" "ru" "sk" "sv" "th" "tr" "uk") + +echo '# +msgid "" +msgstr ""' > po/furnace.pot +echo '"Project-Id-Version: furnace '"$FUR_VERSION"'\n"' >> po/furnace.pot +echo '"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +' >> po/furnace.pot + +find src/ -type f -regex ".*\(cpp\|h\)$" | xargs xgettext --omit-header -k_ -k_N -L C++ --from-code=UTF-8 -j -o po/furnace.pot || exit 1 + +cd po +for i in ${EXPORT_LANGS[@]}; do + if [ -e "$i".po ]; then + echo "merging $i"".po..." + msgmerge --backup=none -U "$i".po furnace.pot + else + echo "creating $i"".po..." + msginit -i furnace.pot -l "$i".UTF-8 --no-translator + fi +done diff --git a/src/check/check_dirent_type.c b/src/check/check_dirent_type.c index e65a0d6be..b302f6b11 100644 --- a/src/check/check_dirent_type.c +++ b/src/check/check_dirent_type.c @@ -1,6 +1,6 @@ #include -int main(int, char**) { +int main(int argc, char** argv) { struct dirent deTest = { }; unsigned char deType = deTest.d_type; return 0; diff --git a/src/check/check_setlocale.c b/src/check/check_setlocale.c new file mode 100644 index 000000000..e7130f123 --- /dev/null +++ b/src/check/check_setlocale.c @@ -0,0 +1,7 @@ +#include + +int main(int argc, char** argv) { + setlocale(LC_CTYPE,""); + setlocale(LC_MESSAGES,""); + return 0; +} diff --git a/src/check/check_sysIO.c b/src/check/check_sysIO.c index 653721e6d..ee121241b 100644 --- a/src/check/check_sysIO.c +++ b/src/check/check_sysIO.c @@ -1,6 +1,6 @@ #include -int main(int, char**) { +int main(int argc, char** argv) { inb(0x61); outb(0x00,0x61); } diff --git a/src/engine/engine.cpp b/src/engine/engine.cpp index 3812779cd..1d0cef2aa 100644 --- a/src/engine/engine.cpp +++ b/src/engine/engine.cpp @@ -48,124 +48,124 @@ void process(void* u, float** in, float** out, int inChans, int outChans, unsign const char* DivEngine::getEffectDesc(unsigned char effect, int chan, bool notNull) { switch (effect) { case 0x00: - return "00xy: Arpeggio"; + return _("00xy: Arpeggio"); case 0x01: - return "01xx: Pitch slide up"; + return _("01xx: Pitch slide up"); case 0x02: - return "02xx: Pitch slide down"; + return _("02xx: Pitch slide down"); case 0x03: - return "03xx: Portamento"; + return _("03xx: Portamento"); case 0x04: - return "04xy: Vibrato (x: speed; y: depth)"; + return _("04xy: Vibrato (x: speed; y: depth)"); case 0x05: - return "05xy: Volume slide + vibrato (compatibility only!)"; + return _("05xy: Volume slide + vibrato (compatibility only!)"); case 0x06: - return "06xy: Volume slide + portamento (compatibility only!)"; + return _("06xy: Volume slide + portamento (compatibility only!)"); case 0x07: - return "07xy: Tremolo (x: speed; y: depth)"; + return _("07xy: Tremolo (x: speed; y: depth)"); case 0x08: - return "08xy: Set panning (x: left; y: right)"; + return _("08xy: Set panning (x: left; y: right)"); case 0x09: - return "09xx: Set groove pattern (speed 1 if no grooves exist)"; + return _("09xx: Set groove pattern (speed 1 if no grooves exist)"); case 0x0a: - return "0Axy: Volume slide (0y: down; x0: up)"; + return _("0Axy: Volume slide (0y: down; x0: up)"); case 0x0b: - return "0Bxx: Jump to pattern"; + return _("0Bxx: Jump to pattern"); case 0x0c: - return "0Cxx: Retrigger"; + return _("0Cxx: Retrigger"); case 0x0d: - return "0Dxx: Jump to next pattern"; + return _("0Dxx: Jump to next pattern"); case 0x0f: - return "0Fxx: Set speed (speed 2 if no grooves exist)"; + return _("0Fxx: Set speed (speed 2 if no grooves exist)"); case 0x80: - return "80xx: Set panning (00: left; 80: center; FF: right)"; + return _("80xx: Set panning (00: left; 80: center; FF: right)"); case 0x81: - return "81xx: Set panning (left channel)"; + return _("81xx: Set panning (left channel)"); case 0x82: - return "82xx: Set panning (right channel)"; + return _("82xx: Set panning (right channel)"); case 0x88: - return "88xy: Set panning (rear channels; x: left; y: right)"; + return _("88xy: Set panning (rear channels; x: left; y: right)"); break; case 0x89: - return "89xx: Set panning (rear left channel)"; + return _("89xx: Set panning (rear left channel)"); break; case 0x8a: - return "8Axx: Set panning (rear right channel)"; + return _("8Axx: Set panning (rear right channel)"); break; case 0xc0: case 0xc1: case 0xc2: case 0xc3: - return "Cxxx: Set tick rate (hz)"; + return _("Cxxx: Set tick rate (hz)"); case 0xe0: - return "E0xx: Set arp speed"; + return _("E0xx: Set arp speed"); case 0xe1: - return "E1xy: Note slide up (x: speed; y: semitones)"; + return _("E1xy: Note slide up (x: speed; y: semitones)"); case 0xe2: - return "E2xy: Note slide down (x: speed; y: semitones)"; + return _("E2xy: Note slide down (x: speed; y: semitones)"); case 0xe3: - return "E3xx: Set vibrato shape (0: up/down; 1: up only; 2: down only)"; + return _("E3xx: Set vibrato shape (0: up/down; 1: up only; 2: down only)"); case 0xe4: - return "E4xx: Set vibrato range"; + return _("E4xx: Set vibrato range"); case 0xe5: - return "E5xx: Set pitch (80: center)"; + return _("E5xx: Set pitch (80: center)"); case 0xe6: - return "E6xy: Quick legato (x: time (0-7 up; 8-F down); y: semitones)"; + return _("E6xy: Quick legato (x: time (0-7 up; 8-F down); y: semitones)"); case 0xe7: - return "E7xx: Macro release"; + return _("E7xx: Macro release"); case 0xe8: - return "E8xy: Quick legato up (x: time; y: semitones)"; + return _("E8xy: Quick legato up (x: time; y: semitones)"); case 0xe9: - return "E9xy: Quick legato down (x: time; y: semitones)"; + return _("E9xy: Quick legato down (x: time; y: semitones)"); case 0xea: - return "EAxx: Legato"; + return _("EAxx: Legato"); case 0xeb: - return "EBxx: Set LEGACY sample mode bank"; + return _("EBxx: Set LEGACY sample mode bank"); case 0xec: - return "ECxx: Note cut"; + return _("ECxx: Note cut"); case 0xed: - return "EDxx: Note delay"; + return _("EDxx: Note delay"); case 0xee: - return "EExx: Send external command"; + return _("EExx: Send external command"); case 0xf0: - return "F0xx: Set tick rate (bpm)"; + return _("F0xx: Set tick rate (bpm)"); case 0xf1: - return "F1xx: Single tick note slide up"; + return _("F1xx: Single tick note slide up"); case 0xf2: - return "F2xx: Single tick note slide down"; + return _("F2xx: Single tick note slide down"); case 0xf3: - return "F3xx: Fine volume slide up"; + return _("F3xx: Fine volume slide up"); case 0xf4: - return "F4xx: Fine volume slide down"; + return _("F4xx: Fine volume slide down"); case 0xf5: - return "F5xx: Disable macro (see manual)"; + return _("F5xx: Disable macro (see manual)"); case 0xf6: - return "F6xx: Enable macro (see manual)"; + return _("F6xx: Enable macro (see manual)"); case 0xf7: - return "F7xx: Restart macro (see manual)"; + return _("F7xx: Restart macro (see manual)"); case 0xf8: - return "F8xx: Single tick volume slide up"; + return _("F8xx: Single tick volume slide up"); case 0xf9: - return "F9xx: Single tick volume slide down"; + return _("F9xx: Single tick volume slide down"); case 0xfa: - return "FAxx: Fast volume slide (0y: down; x0: up)"; + return _("FAxx: Fast volume slide (0y: down; x0: up)"); case 0xfc: - return "FCxx: Note release"; + return _("FCxx: Note release"); case 0xfd: - return "FDxx: Set virtual tempo numerator"; + return _("FDxx: Set virtual tempo numerator"); case 0xfe: - return "FExx: Set virtual tempo denominator"; + return _("FExx: Set virtual tempo denominator"); case 0xff: - return "FFxx: Stop song"; + return _("FFxx: Stop song"); default: if ((effect&0xf0)==0x90) { if (song.oldSampleOffset) { - return "9xxx: Set sample offset*256"; + return _("9xxx: Set sample offset*256"); } switch (effect) { case 0x90: - return "90xx: Set sample offset (first byte)"; + return _("90xx: Set sample offset (first byte)"); case 0x91: - return "91xx: Set sample offset (second byte, ×256)"; + return _("91xx: Set sample offset (second byte, ×256)"); case 0x92: - return "92xx: Set sample offset (third byte, ×65536)"; + return _("92xx: Set sample offset (third byte, ×65536)"); } } else if (chan>=0 && chan>1)) { logE("could not get file length: %s",strerror(errno)); - lastError=fmt::sprintf("on pre tell: %s",strerror(errno)); + lastError=fmt::sprintf(_("on pre tell: %s"),strerror(errno)); fclose(f); return -1; } if (len<1) { if (len==0) { logE("that file is empty!"); - lastError="file is empty"; + lastError=_("file is empty"); } else { logE("tell error: %s",strerror(errno)); - lastError=fmt::sprintf("on tell: %s",strerror(errno)); + lastError=fmt::sprintf(_("on tell: %s"),strerror(errno)); } fclose(f); return -1; } if (len!=expectedSize) { logE("ROM size mismatch, expected: %d bytes, was: %d bytes", expectedSize, len); - lastError=fmt::sprintf("ROM size mismatch, expected: %d bytes, was: %d", expectedSize, len); + lastError=fmt::sprintf(_("ROM size mismatch, expected: %d bytes, was: %d"), expectedSize, len); return -1; } if (fseek(f,0,SEEK_SET)<0) { logE("size error: %s",strerror(errno)); - lastError=fmt::sprintf("on get size: %s",strerror(errno)); + lastError=fmt::sprintf(_("on get size: %s"),strerror(errno)); fclose(f); return -1; } unsigned char* file=new unsigned char[len]; if (fread(file,1,(size_t)len,f)!=(size_t)len) { logE("read error: %s",strerror(errno)); - lastError=fmt::sprintf("on read: %s",strerror(errno)); + lastError=fmt::sprintf(_("on read: %s"),strerror(errno)); fclose(f); delete[] file; return -1; @@ -1073,11 +1073,11 @@ void DivEngine::delUnusedSamples() { bool DivEngine::changeSystem(int index, DivSystem which, bool preserveOrder) { if (index<0 || index>=song.systemLen) { - lastError="invalid index"; + lastError=_("invalid index"); return false; } if (chans-getChannelCount(song.system[index])+getChannelCount(which)>DIV_MAX_CHANS) { - lastError=fmt::sprintf("max number of total channels is %d",DIV_MAX_CHANS); + lastError=fmt::sprintf(_("max number of total channels is %d"),DIV_MAX_CHANS); return false; } @@ -1128,11 +1128,11 @@ bool DivEngine::changeSystem(int index, DivSystem which, bool preserveOrder) { bool DivEngine::addSystem(DivSystem which) { if (song.systemLen>=DIV_MAX_CHIPS) { - lastError=fmt::sprintf("max number of systems is %d",DIV_MAX_CHIPS); + lastError=fmt::sprintf(_("max number of systems is %d"),DIV_MAX_CHIPS); return false; } if (chans+getChannelCount(which)>DIV_MAX_CHANS) { - lastError=fmt::sprintf("max number of total channels is %d",DIV_MAX_CHANS); + lastError=fmt::sprintf(_("max number of total channels is %d"),DIV_MAX_CHANS); return false; } quitDispatch(); @@ -1178,15 +1178,15 @@ bool DivEngine::addSystem(DivSystem which) { bool DivEngine::duplicateSystem(int index, bool pat, bool end) { if (index<0 || index>=song.systemLen) { - lastError="invalid index"; + lastError=_("invalid index"); return false; } if (song.systemLen>=DIV_MAX_CHIPS) { - lastError=fmt::sprintf("max number of systems is %d",DIV_MAX_CHIPS); + lastError=fmt::sprintf(_("max number of systems is %d"),DIV_MAX_CHIPS); return false; } if (chans+getChannelCount(song.system[index])>DIV_MAX_CHANS) { - lastError=fmt::sprintf("max number of total channels is %d",DIV_MAX_CHANS); + lastError=fmt::sprintf(_("max number of total channels is %d"),DIV_MAX_CHANS); return false; } quitDispatch(); @@ -1283,11 +1283,11 @@ bool DivEngine::duplicateSystem(int index, bool pat, bool end) { // TODO: maybe issue with subsongs? bool DivEngine::removeSystem(int index, bool preserveOrder) { if (song.systemLen<=1) { - lastError="cannot remove the last one"; + lastError=_("cannot remove the last one"); return false; } if (index<0 || index>=song.systemLen) { - lastError="invalid index"; + lastError=_("invalid index"); return false; } int chanCount=chans; @@ -1457,15 +1457,15 @@ void DivEngine::swapSystemUnsafe(int src, int dest, bool preserveOrder) { bool DivEngine::swapSystem(int src, int dest, bool preserveOrder) { if (src==dest) { - lastError="source and destination are equal"; + lastError=_("source and destination are equal"); return false; } if (src<0 || src>=song.systemLen) { - lastError="invalid source index"; + lastError=_("invalid source index"); return false; } if (dest<0 || dest>=song.systemLen) { - lastError="invalid destination index"; + lastError=_("invalid destination index"); return false; } //int chanCount=chans; @@ -2633,7 +2633,7 @@ int DivEngine::addInstrument(int refChan, DivInstrumentType fallbackType) { *ins=song.nullInsQSound; } } - ins->name=fmt::sprintf("Instrument %d",insCount); + ins->name=fmt::sprintf(_("Instrument %d"),insCount); if (prefType!=DIV_INS_NULL) { ins->type=prefType; } @@ -2707,7 +2707,7 @@ void DivEngine::delInstrument(int index) { int DivEngine::addWave() { if (song.wave.size()>=256) { - lastError="too many wavetables!"; + lastError=_("too many wavetables!"); return -1; } BUSY_BEGIN; @@ -2724,7 +2724,7 @@ int DivEngine::addWave() { int DivEngine::addWavePtr(DivWavetable* which) { if (song.wave.size()>=256) { - lastError="too many wavetables!"; + lastError=_("too many wavetables!"); delete which; return -1; } @@ -2749,35 +2749,35 @@ DivWavetable* DivEngine::waveFromFile(const char* path, bool addRaw) { ssize_t len; if (fseek(f,0,SEEK_END)!=0) { fclose(f); - lastError=fmt::sprintf("could not seek to end: %s",strerror(errno)); + lastError=fmt::sprintf(_("could not seek to end: %s"),strerror(errno)); return NULL; } len=ftell(f); if (len<0) { fclose(f); - lastError=fmt::sprintf("could not determine file size: %s",strerror(errno)); + lastError=fmt::sprintf(_("could not determine file size: %s"),strerror(errno)); return NULL; } if (len==(SIZE_MAX>>1)) { fclose(f); - lastError="file size is invalid!"; + lastError=_("file size is invalid!"); return NULL; } if (len==0) { fclose(f); - lastError="file is empty"; + lastError=_("file is empty"); return NULL; } if (fseek(f,0,SEEK_SET)!=0) { fclose(f); - lastError=fmt::sprintf("could not seek to beginning: %s",strerror(errno)); + lastError=fmt::sprintf(_("could not seek to beginning: %s"),strerror(errno)); return NULL; } buf=new unsigned char[len]; if (fread(buf,1,len,f)!=(size_t)len) { logW("did not read entire wavetable file buffer!"); delete[] buf; - lastError=fmt::sprintf("could not read entire file: %s",strerror(errno)); + lastError=fmt::sprintf(_("could not read entire file: %s"),strerror(errno)); return NULL; } fclose(f); @@ -2803,7 +2803,7 @@ DivWavetable* DivEngine::waveFromFile(const char* path, bool addRaw) { reader.readS(); // reserved reader.seek(20,SEEK_SET); if (wave->readWaveData(reader,version)!=DIV_DATA_SUCCESS) { - lastError="invalid wavetable header/data!"; + lastError=_("invalid wavetable header/data!"); delete wave; delete[] buf; return NULL; @@ -2874,7 +2874,7 @@ DivWavetable* DivEngine::waveFromFile(const char* path, bool addRaw) { } catch (EndOfFileException& e) { delete wave; delete[] buf; - lastError="premature end of file"; + lastError=_("premature end of file"); return NULL; } @@ -2901,14 +2901,14 @@ void DivEngine::delWave(int index) { int DivEngine::addSample() { if (song.sample.size()>=256) { - lastError="too many samples!"; + lastError=_("too many samples!"); return -1; } BUSY_BEGIN; saveLock.lock(); DivSample* sample=new DivSample; int sampleCount=(int)song.sample.size(); - sample->name=fmt::sprintf("Sample %d",sampleCount); + sample->name=fmt::sprintf(_("Sample %d"),sampleCount); song.sample.push_back(sample); song.sampleLen=sampleCount+1; sPreview.sample=-1; @@ -2923,7 +2923,7 @@ int DivEngine::addSample() { int DivEngine::addSamplePtr(DivSample* which) { if (song.sample.size()>=256) { - lastError="too many samples!"; + lastError=_("too many samples!"); delete which; return -1; } @@ -3053,7 +3053,7 @@ void DivEngine::deepCloneOrder(int pos, bool where) { } } if (didNotFind) { - addWarning(fmt::sprintf("no free patterns in channel %d!",i)); + addWarning(fmt::sprintf(_("no free patterns in channel %d!"),i)); } } if (where) { // at the end @@ -3956,15 +3956,24 @@ bool DivEngine::deinitAudioBackend(bool dueToSwitchMaster) { return true; } -bool DivEngine::preInit(bool noSafeMode) { - bool wantSafe=false; - // register systems - if (!systemsRegistered) registerSystems(); - +bool DivEngine::prePreInit() { // init config initConfDir(); logD("config path: %s",configPath.c_str()); + configLoaded=true; + return loadConf(); +} + +bool DivEngine::preInit(bool noSafeMode) { + bool wantSafe=false; + if (!configLoaded) prePreInit(); + + logI("Furnace version " DIV_VERSION "."); + + // register systems + if (!systemsRegistered) registerSystems(); + // TODO: re-enable with a better approach // see issue #1581 /* @@ -3979,10 +3988,6 @@ bool DivEngine::preInit(bool noSafeMode) { String logPath=configPath+DIR_SEPARATOR_STR+"furnace.log"; startLogFile(logPath.c_str()); - logI("Furnace version " DIV_VERSION "."); - - loadConf(); - if (!conf.has("opn1Core")) { if (conf.has("opnCore")) { conf.set("opn1Core",conf.getString("opnCore","")); diff --git a/src/engine/engine.h b/src/engine/engine.h index 370de2a5f..0bbfaed79 100644 --- a/src/engine/engine.h +++ b/src/engine/engine.h @@ -430,6 +430,7 @@ class DivEngine { String exportPath; std::thread* exportThread; int chans; + bool configLoaded; bool active; bool lowQuality; bool dcHiPass; @@ -1295,6 +1296,9 @@ class DivEngine { // quit dispatch void quitDispatch(); + // pre-pre-initialize the engine. + bool prePreInit(); + // pre-initialize the engine. returns whether Furnace should run in safe mode. bool preInit(bool noSafeMode=true); @@ -1315,6 +1319,7 @@ class DivEngine { output(NULL), exportThread(NULL), chans(0), + configLoaded(false), active(false), lowQuality(false), dcHiPass(true), diff --git a/src/engine/sysDef.cpp b/src/engine/sysDef.cpp index 1e52ce837..20e8461d5 100644 --- a/src/engine/sysDef.cpp +++ b/src/engine/sysDef.cpp @@ -425,120 +425,120 @@ void DivEngine::registerSystems() { // Common effect handler maps EffectHandlerMap ayPostEffectHandlerMap={ - {0x20, {DIV_CMD_STD_NOISE_MODE, "20xx: Set channel mode (bit 0: square; bit 1: noise; bit 2: envelope)"}}, - {0x21, {DIV_CMD_STD_NOISE_FREQ, "21xx: Set noise frequency (0 to 1F)"}}, - {0x22, {DIV_CMD_AY_ENVELOPE_SET, "22xy: Set envelope mode (x: shape, y: enable for this channel)"}}, - {0x23, {DIV_CMD_AY_ENVELOPE_LOW, "23xx: Set envelope period low byte"}}, - {0x24, {DIV_CMD_AY_ENVELOPE_HIGH, "24xx: Set envelope period high byte"}}, - {0x25, {DIV_CMD_AY_ENVELOPE_SLIDE, "25xx: Envelope slide up", negEffectVal}}, - {0x26, {DIV_CMD_AY_ENVELOPE_SLIDE, "26xx: Envelope slide down"}}, - {0x29, {DIV_CMD_AY_AUTO_ENVELOPE, "29xy: Set auto-envelope (x: numerator; y: denominator)"}}, - {0x2e, {DIV_CMD_AY_IO_WRITE, "2Exx: Write to I/O port A", constVal<0>, effectVal}}, - {0x2f, {DIV_CMD_AY_IO_WRITE, "2Fxx: Write to I/O port B", constVal<1>, effectVal}}, + {0x20, {DIV_CMD_STD_NOISE_MODE, _("20xx: Set channel mode (bit 0: square; bit 1: noise; bit 2: envelope)")}}, + {0x21, {DIV_CMD_STD_NOISE_FREQ, _("21xx: Set noise frequency (0 to 1F)")}}, + {0x22, {DIV_CMD_AY_ENVELOPE_SET, _("22xy: Set envelope mode (x: shape, y: enable for this channel)")}}, + {0x23, {DIV_CMD_AY_ENVELOPE_LOW, _("23xx: Set envelope period low byte")}}, + {0x24, {DIV_CMD_AY_ENVELOPE_HIGH, _("24xx: Set envelope period high byte")}}, + {0x25, {DIV_CMD_AY_ENVELOPE_SLIDE, _("25xx: Envelope slide up"), negEffectVal}}, + {0x26, {DIV_CMD_AY_ENVELOPE_SLIDE, _("26xx: Envelope slide down")}}, + {0x29, {DIV_CMD_AY_AUTO_ENVELOPE, _("29xy: Set auto-envelope (x: numerator; y: denominator)")}}, + {0x2e, {DIV_CMD_AY_IO_WRITE, _("2Exx: Write to I/O port A"), constVal<0>, effectVal}}, + {0x2f, {DIV_CMD_AY_IO_WRITE, _("2Fxx: Write to I/O port B"), constVal<1>, effectVal}}, }; EffectHandlerMap ay8930PostEffectHandlerMap={ - {0x20, {DIV_CMD_STD_NOISE_MODE, "20xx: Set channel mode (bit 0: square; bit 1: noise; bit 2: envelope)"}}, - {0x21, {DIV_CMD_STD_NOISE_FREQ, "21xx: Set noise frequency (0 to FF)"}}, - {0x22, {DIV_CMD_AY_ENVELOPE_SET, "22xy: Set envelope mode (x: shape, y: enable for this channel)"}}, - {0x23, {DIV_CMD_AY_ENVELOPE_LOW, "23xx: Set envelope period low byte"}}, - {0x24, {DIV_CMD_AY_ENVELOPE_HIGH, "24xx: Set envelope period high byte"}}, - {0x25, {DIV_CMD_AY_ENVELOPE_SLIDE, "25xx: Envelope slide up", negEffectVal}}, - {0x26, {DIV_CMD_AY_ENVELOPE_SLIDE, "26xx: Envelope slide down"}}, - {0x29, {DIV_CMD_AY_AUTO_ENVELOPE, "29xy: Set auto-envelope (x: numerator; y: denominator)"}}, - {0x2e, {DIV_CMD_AY_IO_WRITE, "2Exx: Write to I/O port A", constVal<0>, effectVal}}, - {0x2f, {DIV_CMD_AY_IO_WRITE, "2Fxx: Write to I/O port B", constVal<1>, effectVal}}, - {0x12, {DIV_CMD_STD_NOISE_MODE, "12xx: Set duty cycle (0 to 8)", + {0x20, {DIV_CMD_STD_NOISE_MODE, _("20xx: Set channel mode (bit 0: square; bit 1: noise; bit 2: envelope)")}}, + {0x21, {DIV_CMD_STD_NOISE_FREQ, _("21xx: Set noise frequency (0 to FF)")}}, + {0x22, {DIV_CMD_AY_ENVELOPE_SET, _("22xy: Set envelope mode (x: shape, y: enable for this channel)")}}, + {0x23, {DIV_CMD_AY_ENVELOPE_LOW, _("23xx: Set envelope period low byte")}}, + {0x24, {DIV_CMD_AY_ENVELOPE_HIGH, _("24xx: Set envelope period high byte")}}, + {0x25, {DIV_CMD_AY_ENVELOPE_SLIDE, _("25xx: Envelope slide up"), negEffectVal}}, + {0x26, {DIV_CMD_AY_ENVELOPE_SLIDE, _("26xx: Envelope slide down")}}, + {0x29, {DIV_CMD_AY_AUTO_ENVELOPE, _("29xy: Set auto-envelope (x: numerator; y: denominator)")}}, + {0x2e, {DIV_CMD_AY_IO_WRITE, _("2Exx: Write to I/O port A"), constVal<0>, effectVal}}, + {0x2f, {DIV_CMD_AY_IO_WRITE, _("2Fxx: Write to I/O port B"), constVal<1>, effectVal}}, + {0x12, {DIV_CMD_STD_NOISE_MODE, _("12xx: Set duty cycle (0 to 8)"), [](unsigned char, unsigned char val) -> int { return 0x10+(val&15); }}}, - {0x27, {DIV_CMD_AY_NOISE_MASK_AND, "27xx: Set noise AND mask"}}, - {0x28, {DIV_CMD_AY_NOISE_MASK_OR, "28xx: Set noise OR mask"}}, - {0x2c, {DIV_CMD_AY_AUTO_PWM, "2Cxy: Automatic noise frequency (x: mode (0: disable, 1: freq, 2: freq + OR mask); y: offset"}}, - {0x2d, {DIV_CMD_AY_IO_WRITE, "2Dxx: NOT TO BE EMPLOYED BY THE COMPOSER", constVal<255>, effectVal}}, + {0x27, {DIV_CMD_AY_NOISE_MASK_AND, _("27xx: Set noise AND mask")}}, + {0x28, {DIV_CMD_AY_NOISE_MASK_OR, _("28xx: Set noise OR mask")}}, + {0x2c, {DIV_CMD_AY_AUTO_PWM, _("2Cxy: Automatic noise frequency (x: mode (0: disable, 1: freq, 2: freq + OR mask); y: offset)")}}, + {0x2d, {DIV_CMD_AY_IO_WRITE, _("2Dxx: NOT TO BE EMPLOYED BY THE COMPOSER"), constVal<255>, effectVal}}, }; EffectHandlerMap fmEffectHandlerMap={ - {0x30, {DIV_CMD_FM_HARD_RESET, "30xx: Toggle hard envelope reset on new notes"}}, + {0x30, {DIV_CMD_FM_HARD_RESET, _("30xx: Toggle hard envelope reset on new notes")}}, }; EffectHandlerMap fmExtChEffectHandlerMap(fmEffectHandlerMap); fmExtChEffectHandlerMap.insert({ - {0x18, {DIV_CMD_FM_EXTCH, "18xx: Toggle extended channel 3 mode"}}, + {0x18, {DIV_CMD_FM_EXTCH, _("18xx: Toggle extended channel 3 mode")}}, }); EffectHandlerMap fmOPN2EffectHandlerMap(fmEffectHandlerMap); fmOPN2EffectHandlerMap.insert({ - {0x17, {DIV_CMD_SAMPLE_MODE, "17xx: Toggle PCM mode (LEGACY)"}}, - {0xdf, {DIV_CMD_SAMPLE_DIR, "DFxx: Set sample playback direction (0: normal; 1: reverse)"}}, + {0x17, {DIV_CMD_SAMPLE_MODE, _("17xx: Toggle PCM mode (LEGACY)")}}, + {0xdf, {DIV_CMD_SAMPLE_DIR, _("DFxx: Set sample playback direction (0: normal; 1: reverse)")}}, }); EffectHandlerMap fmOPLDrumsEffectHandlerMap(fmEffectHandlerMap); fmOPLDrumsEffectHandlerMap.insert({ - {0x18, {DIV_CMD_FM_EXTCH, "18xx: Toggle drums mode (1: enabled; 0: disabled)"}}, + {0x18, {DIV_CMD_FM_EXTCH, _("18xx: Toggle drums mode (1: enabled; 0: disabled)")}}, }); EffectHandlerMap fmOPNPostEffectHandlerMap={ - {0x11, {DIV_CMD_FM_FB, "11xx: Set feedback (0 to 7)"}}, - {0x12, {DIV_CMD_FM_TL, "12xx: Set level of operator 1 (0 highest, 7F lowest)", constVal<0>, effectVal}}, - {0x13, {DIV_CMD_FM_TL, "13xx: Set level of operator 2 (0 highest, 7F lowest)", constVal<1>, effectVal}}, - {0x14, {DIV_CMD_FM_TL, "14xx: Set level of operator 3 (0 highest, 7F lowest)", constVal<2>, effectVal}}, - {0x15, {DIV_CMD_FM_TL, "15xx: Set level of operator 4 (0 highest, 7F lowest)", constVal<3>, effectVal}}, - {0x16, {DIV_CMD_FM_MULT, "16xy: Set operator multiplier (x: operator from 1 to 4; y: multiplier)", effectOpValNoZero<4>, effectValAnd<15>}}, - {0x19, {DIV_CMD_FM_AR, "19xx: Set attack of all operators (0 to 1F)", constVal<-1>, effectValAnd<31>}}, - {0x1a, {DIV_CMD_FM_AR, "1Axx: Set attack of operator 1 (0 to 1F)", constVal<0>, effectValAnd<31>}}, - {0x1b, {DIV_CMD_FM_AR, "1Bxx: Set attack of operator 2 (0 to 1F)", constVal<1>, effectValAnd<31>}}, - {0x1c, {DIV_CMD_FM_AR, "1Cxx: Set attack of operator 3 (0 to 1F)", constVal<2>, effectValAnd<31>}}, - {0x1d, {DIV_CMD_FM_AR, "1Dxx: Set attack of operator 4 (0 to 1F)", constVal<3>, effectValAnd<31>}}, - {0x50, {DIV_CMD_FM_AM, "50xy: Set AM (x: operator from 1 to 4 (0 for all ops); y: AM)", effectOpVal<4>, effectValAnd<1>}}, - {0x51, {DIV_CMD_FM_SL, "51xy: Set sustain level (x: operator from 1 to 4 (0 for all ops); y: sustain)", effectOpVal<4>, effectValAnd<15>}}, - {0x52, {DIV_CMD_FM_RR, "52xy: Set release (x: operator from 1 to 4 (0 for all ops); y: release)", effectOpVal<4>, effectValAnd<15>}}, - {0x53, {DIV_CMD_FM_DT, "53xy: Set detune (x: operator from 1 to 4 (0 for all ops); y: detune where 3 is center)", effectOpVal<4>, effectValAnd<7>}}, - {0x54, {DIV_CMD_FM_RS, "54xy: Set envelope scale (x: operator from 1 to 4 (0 for all ops); y: scale from 0 to 3)", effectOpVal<4>, effectValAnd<3>}}, - {0x56, {DIV_CMD_FM_DR, "56xx: Set decay of all operators (0 to 1F)", constVal<-1>, effectValAnd<31>}}, - {0x57, {DIV_CMD_FM_DR, "57xx: Set decay of operator 1 (0 to 1F)", constVal<0>, effectValAnd<31>}}, - {0x58, {DIV_CMD_FM_DR, "58xx: Set decay of operator 2 (0 to 1F)", constVal<1>, effectValAnd<31>}}, - {0x59, {DIV_CMD_FM_DR, "59xx: Set decay of operator 3 (0 to 1F)", constVal<2>, effectValAnd<31>}}, - {0x5a, {DIV_CMD_FM_DR, "5Axx: Set decay of operator 4 (0 to 1F)", constVal<3>, effectValAnd<31>}}, - {0x5b, {DIV_CMD_FM_D2R, "5Bxx: Set decay 2 of all operators (0 to 1F)", constVal<-1>, effectValAnd<31>}}, - {0x5c, {DIV_CMD_FM_D2R, "5Cxx: Set decay 2 of operator 1 (0 to 1F)", constVal<0>, effectValAnd<31>}}, - {0x5d, {DIV_CMD_FM_D2R, "5Dxx: Set decay 2 of operator 2 (0 to 1F)", constVal<1>, effectValAnd<31>}}, - {0x5e, {DIV_CMD_FM_D2R, "5Exx: Set decay 2 of operator 3 (0 to 1F)", constVal<2>, effectValAnd<31>}}, - {0x5f, {DIV_CMD_FM_D2R, "5Fxx: Set decay 2 of operator 4 (0 to 1F)", constVal<3>, effectValAnd<31>}}, + {0x11, {DIV_CMD_FM_FB, _("11xx: Set feedback (0 to 7)")}}, + {0x12, {DIV_CMD_FM_TL, _("12xx: Set level of operator 1 (0 highest, 7F lowest)"), constVal<0>, effectVal}}, + {0x13, {DIV_CMD_FM_TL, _("13xx: Set level of operator 2 (0 highest, 7F lowest)"), constVal<1>, effectVal}}, + {0x14, {DIV_CMD_FM_TL, _("14xx: Set level of operator 3 (0 highest, 7F lowest)"), constVal<2>, effectVal}}, + {0x15, {DIV_CMD_FM_TL, _("15xx: Set level of operator 4 (0 highest, 7F lowest)"), constVal<3>, effectVal}}, + {0x16, {DIV_CMD_FM_MULT, _("16xy: Set operator multiplier (x: operator from 1 to 4; y: multiplier)"), effectOpValNoZero<4>, effectValAnd<15>}}, + {0x19, {DIV_CMD_FM_AR, _("19xx: Set attack of all operators (0 to 1F)"), constVal<-1>, effectValAnd<31>}}, + {0x1a, {DIV_CMD_FM_AR, _("1Axx: Set attack of operator 1 (0 to 1F)"), constVal<0>, effectValAnd<31>}}, + {0x1b, {DIV_CMD_FM_AR, _("1Bxx: Set attack of operator 2 (0 to 1F)"), constVal<1>, effectValAnd<31>}}, + {0x1c, {DIV_CMD_FM_AR, _("1Cxx: Set attack of operator 3 (0 to 1F)"), constVal<2>, effectValAnd<31>}}, + {0x1d, {DIV_CMD_FM_AR, _("1Dxx: Set attack of operator 4 (0 to 1F)"), constVal<3>, effectValAnd<31>}}, + {0x50, {DIV_CMD_FM_AM, _("50xy: Set AM (x: operator from 1 to 4 (0 for all ops); y: AM)"), effectOpVal<4>, effectValAnd<1>}}, + {0x51, {DIV_CMD_FM_SL, _("51xy: Set sustain level (x: operator from 1 to 4 (0 for all ops); y: sustain)"), effectOpVal<4>, effectValAnd<15>}}, + {0x52, {DIV_CMD_FM_RR, _("52xy: Set release (x: operator from 1 to 4 (0 for all ops); y: release)"), effectOpVal<4>, effectValAnd<15>}}, + {0x53, {DIV_CMD_FM_DT, _("53xy: Set detune (x: operator from 1 to 4 (0 for all ops); y: detune where 3 is center)"), effectOpVal<4>, effectValAnd<7>}}, + {0x54, {DIV_CMD_FM_RS, _("54xy: Set envelope scale (x: operator from 1 to 4 (0 for all ops); y: scale from 0 to 3)"), effectOpVal<4>, effectValAnd<3>}}, + {0x56, {DIV_CMD_FM_DR, _("56xx: Set decay of all operators (0 to 1F)"), constVal<-1>, effectValAnd<31>}}, + {0x57, {DIV_CMD_FM_DR, _("57xx: Set decay of operator 1 (0 to 1F)"), constVal<0>, effectValAnd<31>}}, + {0x58, {DIV_CMD_FM_DR, _("58xx: Set decay of operator 2 (0 to 1F)"), constVal<1>, effectValAnd<31>}}, + {0x59, {DIV_CMD_FM_DR, _("59xx: Set decay of operator 3 (0 to 1F)"), constVal<2>, effectValAnd<31>}}, + {0x5a, {DIV_CMD_FM_DR, _("5Axx: Set decay of operator 4 (0 to 1F)"), constVal<3>, effectValAnd<31>}}, + {0x5b, {DIV_CMD_FM_D2R, _("5Bxx: Set decay 2 of all operators (0 to 1F)"), constVal<-1>, effectValAnd<31>}}, + {0x5c, {DIV_CMD_FM_D2R, _("5Cxx: Set decay 2 of operator 1 (0 to 1F)"), constVal<0>, effectValAnd<31>}}, + {0x5d, {DIV_CMD_FM_D2R, _("5Dxx: Set decay 2 of operator 2 (0 to 1F)"), constVal<1>, effectValAnd<31>}}, + {0x5e, {DIV_CMD_FM_D2R, _("5Exx: Set decay 2 of operator 3 (0 to 1F)"), constVal<2>, effectValAnd<31>}}, + {0x5f, {DIV_CMD_FM_D2R, _("5Fxx: Set decay 2 of operator 4 (0 to 1F)"), constVal<3>, effectValAnd<31>}}, }; EffectHandlerMap fmOPMPostEffectHandlerMap(fmOPNPostEffectHandlerMap); fmOPMPostEffectHandlerMap.insert({ - {0x10, {DIV_CMD_STD_NOISE_FREQ, "10xx: Set noise frequency (xx: value; 0 disables noise)"}}, - {0x17, {DIV_CMD_FM_LFO, "17xx: Set LFO speed"}}, - {0x18, {DIV_CMD_FM_LFO_WAVE, "18xx: Set LFO waveform (0 saw, 1 square, 2 triangle, 3 noise)"}}, - {0x1e, {DIV_CMD_FM_AM_DEPTH, "1Exx: Set AM depth (0 to 7F)", effectValAnd<127>}}, - {0x1f, {DIV_CMD_FM_PM_DEPTH, "1Fxx: Set PM depth (0 to 7F)", effectValAnd<127>}}, - {0x55, {DIV_CMD_FM_SSG, "55xy: Set detune 2 (x: operator from 1 to 4 (0 for all ops); y: detune from 0 to 3)", effectOpVal<4>, effectValAnd<3>}}, + {0x10, {DIV_CMD_STD_NOISE_FREQ, _("10xx: Set noise frequency (xx: value; 0 disables noise)")}}, + {0x17, {DIV_CMD_FM_LFO, _("17xx: Set LFO speed")}}, + {0x18, {DIV_CMD_FM_LFO_WAVE, _("18xx: Set LFO waveform (0 saw, 1 square, 2 triangle, 3 noise)")}}, + {0x1e, {DIV_CMD_FM_AM_DEPTH, _("1Exx: Set AM depth (0 to 7F)"), effectValAnd<127>}}, + {0x1f, {DIV_CMD_FM_PM_DEPTH, _("1Fxx: Set PM depth (0 to 7F)"), effectValAnd<127>}}, + {0x55, {DIV_CMD_FM_SSG, _("55xy: Set detune 2 (x: operator from 1 to 4 (0 for all ops); y: detune from 0 to 3)"), effectOpVal<4>, effectValAnd<3>}}, }); EffectHandlerMap fmOPZPostEffectHandlerMap(fmOPMPostEffectHandlerMap); fmOPZPostEffectHandlerMap.insert({ - {0x24, {DIV_CMD_FM_LFO2, "24xx: Set LFO 2 speed"}}, - {0x25, {DIV_CMD_FM_LFO2_WAVE, "25xx: Set LFO 2 waveform (0 saw, 1 square, 2 triangle, 3 noise)"}}, - {0x26, {DIV_CMD_FM_AM2_DEPTH, "26xx: Set AM 2 depth (0 to 7F)", effectValAnd<127>}}, - {0x27, {DIV_CMD_FM_PM2_DEPTH, "27xx: Set PM 2 depth (0 to 7F)", effectValAnd<127>}}, - {0x28, {DIV_CMD_FM_REV, "28xy: Set reverb (x: operator from 1 to 4 (0 for all ops); y: reverb from 0 to 7)", effectOpVal<4>, effectValAnd<7>}}, - {0x2a, {DIV_CMD_FM_WS, "2Axy: Set waveform (x: operator from 1 to 4 (0 for all ops); y: waveform from 0 to 7)", effectOpVal<4>, effectValAnd<7>}}, - {0x2b, {DIV_CMD_FM_EG_SHIFT, "2Bxy: Set envelope generator shift (x: operator from 1 to 4 (0 for all ops); y: shift from 0 to 3)", effectOpVal<4>, effectValAnd<3>}}, - {0x2c, {DIV_CMD_FM_FINE, "2Cxy: Set fine multiplier (x: operator from 1 to 4 (0 for all ops); y: fine)", effectOpVal<4>, effectValAnd<15>}}, + {0x24, {DIV_CMD_FM_LFO2, _("24xx: Set LFO 2 speed")}}, + {0x25, {DIV_CMD_FM_LFO2_WAVE, _("25xx: Set LFO 2 waveform (0 saw, 1 square, 2 triangle, 3 noise)")}}, + {0x26, {DIV_CMD_FM_AM2_DEPTH, _("26xx: Set AM 2 depth (0 to 7F)"), effectValAnd<127>}}, + {0x27, {DIV_CMD_FM_PM2_DEPTH, _("27xx: Set PM 2 depth (0 to 7F)"), effectValAnd<127>}}, + {0x28, {DIV_CMD_FM_REV, _("28xy: Set reverb (x: operator from 1 to 4 (0 for all ops); y: reverb from 0 to 7)"), effectOpVal<4>, effectValAnd<7>}}, + {0x2a, {DIV_CMD_FM_WS, _("2Axy: Set waveform (x: operator from 1 to 4 (0 for all ops); y: waveform from 0 to 7)"), effectOpVal<4>, effectValAnd<7>}}, + {0x2b, {DIV_CMD_FM_EG_SHIFT, _("2Bxy: Set envelope generator shift (x: operator from 1 to 4 (0 for all ops); y: shift from 0 to 3)"), effectOpVal<4>, effectValAnd<3>}}, + {0x2c, {DIV_CMD_FM_FINE, _("2Cxy: Set fine multiplier (x: operator from 1 to 4 (0 for all ops); y: fine)"), effectOpVal<4>, effectValAnd<15>}}, }); const EffectHandler fmOPZFixFreqHandler[4]={ - {DIV_CMD_FM_FIXFREQ, "3xyy: Set fixed frequency of operator 1 (x: octave from 0 to 7; y: frequency)", constVal<0>, effectValLong<11>}, - {DIV_CMD_FM_FIXFREQ, "3xyy: Set fixed frequency of operator 2 (x: octave from 8 to F; y: frequency)", constVal<1>, effectValLong<11>}, - {DIV_CMD_FM_FIXFREQ, "4xyy: Set fixed frequency of operator 3 (x: octave from 0 to 7; y: frequency)", constVal<2>, effectValLong<11>}, - {DIV_CMD_FM_FIXFREQ, "4xyy: Set fixed frequency of operator 4 (x: octave from 8 to F; y: frequency)", constVal<3>, effectValLong<11>}, + {DIV_CMD_FM_FIXFREQ, _("3xyy: Set fixed frequency of operator 1 (x: octave from 0 to 7; y: frequency)"), constVal<0>, effectValLong<11>}, + {DIV_CMD_FM_FIXFREQ, _("3xyy: Set fixed frequency of operator 2 (x: octave from 8 to F; y: frequency)"), constVal<1>, effectValLong<11>}, + {DIV_CMD_FM_FIXFREQ, _("4xyy: Set fixed frequency of operator 3 (x: octave from 0 to 7; y: frequency)"), constVal<2>, effectValLong<11>}, + {DIV_CMD_FM_FIXFREQ, _("4xyy: Set fixed frequency of operator 4 (x: octave from 8 to F; y: frequency)"), constVal<3>, effectValLong<11>}, }; for (int i=0; i<32; i++) { fmOPZPostEffectHandlerMap.emplace(0x30+i,fmOPZFixFreqHandler[i/8]); } fmOPNPostEffectHandlerMap.insert({ - {0x10, {DIV_CMD_FM_LFO, "10xy: Setup LFO (x: enable; y: speed)"}}, - {0x55, {DIV_CMD_FM_SSG, "55xy: Set SSG envelope (x: operator from 1 to 4 (0 for all ops); y: 0-7 on, 8 off)", effectOpVal<4>, effectValAnd<15>}}, + {0x10, {DIV_CMD_FM_LFO, _("10xy: Setup LFO (x: enable; y: speed)")}}, + {0x55, {DIV_CMD_FM_SSG, _("55xy: Set SSG envelope (x: operator from 1 to 4 (0 for all ops); y: 0-7 on, 8 off)"), effectOpVal<4>, effectValAnd<15>}}, }); EffectHandlerMap fmOPN2PostEffectHandlerMap(fmOPNPostEffectHandlerMap); @@ -546,147 +546,147 @@ void DivEngine::registerSystems() { EffectHandlerMap fmOPNAPostEffectHandlerMap(fmOPNPostEffectHandlerMap); fmOPNAPostEffectHandlerMap.insert({ - {0x1f, {DIV_CMD_ADPCMA_GLOBAL_VOLUME, "1Fxx: Set ADPCM-A global volume (0 to 3F)"}}, + {0x1f, {DIV_CMD_ADPCMA_GLOBAL_VOLUME, _("1Fxx: Set ADPCM-A global volume (0 to 3F)")}}, }); EffectHandlerMap fmOPLLPostEffectHandlerMap={ - {0x10, {DIV_CMD_WAVE, "10xx: Set patch (0 to F)"}}, - {0x11, {DIV_CMD_FM_FB, "11xx: Set feedback (0 to 7)"}}, - {0x12, {DIV_CMD_FM_TL, "12xx: Set level of operator 1 (0 highest, 3F lowest)", constVal<0>, effectVal}}, - {0x13, {DIV_CMD_FM_TL, "13xx: Set level of operator 2 (0 highest, 3F lowest)", constVal<1>, effectVal}}, - {0x16, {DIV_CMD_FM_MULT, "16xy: Set operator multiplier (x: operator from 1 to 2; y: multiplier)", effectOpValNoZero<2>, effectValAnd<15>}}, - {0x19, {DIV_CMD_FM_AR, "19xx: Set attack of all operators (0 to F)", constVal<-1>, effectValAnd<15>}}, - {0x1a, {DIV_CMD_FM_AR, "1Axx: Set attack of operator 1 (0 to F)", constVal<0>, effectValAnd<15>}}, - {0x1b, {DIV_CMD_FM_AR, "1Bxx: Set attack of operator 2 (0 to F)", constVal<1>, effectValAnd<15>}}, - {0x50, {DIV_CMD_FM_AM, "50xy: Set AM (x: operator from 1 to 2 (0 for all ops); y: AM)", effectOpVal<2>, effectValAnd<1>}}, - {0x51, {DIV_CMD_FM_SL, "51xy: Set sustain level (x: operator from 1 to 2 (0 for all ops); y: sustain)", effectOpVal<2>, effectValAnd<15>}}, - {0x52, {DIV_CMD_FM_RR, "52xy: Set release (x: operator from 1 to 2 (0 for all ops); y: release)", effectOpVal<2>, effectValAnd<15>}}, - {0x53, {DIV_CMD_FM_VIB, "53xy: Set vibrato (x: operator from 1 to 2 (0 for all ops); y: enabled)", effectOpVal<2>, effectValAnd<1>}}, - {0x54, {DIV_CMD_FM_RS, "54xy: Set envelope scale (x: operator from 1 to 2 (0 for all ops); y: scale from 0 to 3)", effectOpVal<2>, effectValAnd<3>}}, - {0x55, {DIV_CMD_FM_SUS, "55xy: Set envelope sustain (x: operator from 1 to 2 (0 for all ops); y: enabled)", effectOpVal<2>, effectValAnd<1>}}, - {0x56, {DIV_CMD_FM_DR, "56xx: Set decay of all operators (0 to F)", constVal<-1>, effectValAnd<15>}}, - {0x57, {DIV_CMD_FM_DR, "57xx: Set decay of operator 1 (0 to F)", constVal<0>, effectValAnd<15>}}, - {0x58, {DIV_CMD_FM_DR, "58xx: Set decay of operator 2 (0 to F)", constVal<1>, effectValAnd<15>}}, - {0x5b, {DIV_CMD_FM_KSR, "5Bxy: Set whether key will scale envelope (x: operator from 1 to 2 (0 for all ops); y: enabled)", effectOpVal<2>, effectValAnd<1>}}, + {0x10, {DIV_CMD_WAVE, _("10xx: Set patch (0 to F)")}}, + {0x11, {DIV_CMD_FM_FB, _("11xx: Set feedback (0 to 7)")}}, + {0x12, {DIV_CMD_FM_TL, _("12xx: Set level of operator 1 (0 highest, 3F lowest)"), constVal<0>, effectVal}}, + {0x13, {DIV_CMD_FM_TL, _("13xx: Set level of operator 2 (0 highest, 3F lowest)"), constVal<1>, effectVal}}, + {0x16, {DIV_CMD_FM_MULT, _("16xy: Set operator multiplier (x: operator from 1 to 2; y: multiplier)"), effectOpValNoZero<2>, effectValAnd<15>}}, + {0x19, {DIV_CMD_FM_AR, _("19xx: Set attack of all operators (0 to F)"), constVal<-1>, effectValAnd<15>}}, + {0x1a, {DIV_CMD_FM_AR, _("1Axx: Set attack of operator 1 (0 to F)"), constVal<0>, effectValAnd<15>}}, + {0x1b, {DIV_CMD_FM_AR, _("1Bxx: Set attack of operator 2 (0 to F)"), constVal<1>, effectValAnd<15>}}, + {0x50, {DIV_CMD_FM_AM, _("50xy: Set AM (x: operator from 1 to 2 (0 for all ops); y: AM)"), effectOpVal<2>, effectValAnd<1>}}, + {0x51, {DIV_CMD_FM_SL, _("51xy: Set sustain level (x: operator from 1 to 2 (0 for all ops); y: sustain)"), effectOpVal<2>, effectValAnd<15>}}, + {0x52, {DIV_CMD_FM_RR, _("52xy: Set release (x: operator from 1 to 2 (0 for all ops); y: release)"), effectOpVal<2>, effectValAnd<15>}}, + {0x53, {DIV_CMD_FM_VIB, _("53xy: Set vibrato (x: operator from 1 to 2 (0 for all ops); y: enabled)"), effectOpVal<2>, effectValAnd<1>}}, + {0x54, {DIV_CMD_FM_RS, _("54xy: Set envelope scale (x: operator from 1 to 2 (0 for all ops); y: scale from 0 to 3)"), effectOpVal<2>, effectValAnd<3>}}, + {0x55, {DIV_CMD_FM_SUS, _("55xy: Set envelope sustain (x: operator from 1 to 2 (0 for all ops); y: enabled)"), effectOpVal<2>, effectValAnd<1>}}, + {0x56, {DIV_CMD_FM_DR, _("56xx: Set decay of all operators (0 to F)"), constVal<-1>, effectValAnd<15>}}, + {0x57, {DIV_CMD_FM_DR, _("57xx: Set decay of operator 1 (0 to F)"), constVal<0>, effectValAnd<15>}}, + {0x58, {DIV_CMD_FM_DR, _("58xx: Set decay of operator 2 (0 to F)"), constVal<1>, effectValAnd<15>}}, + {0x5b, {DIV_CMD_FM_KSR, _("5Bxy: Set whether key will scale envelope (x: operator from 1 to 2 (0 for all ops); y: enabled)"), effectOpVal<2>, effectValAnd<1>}}, }; EffectHandlerMap fmOPLPostEffectHandlerMap={ - {0x10, {DIV_CMD_FM_LFO, "10xx: Set global AM depth (0: 1dB, 1: 4.8dB)", effectValAnd<1>}}, - {0x11, {DIV_CMD_FM_FB, "11xx: Set feedback (0 to 7)"}}, - {0x12, {DIV_CMD_FM_TL, "12xx: Set level of operator 1 (0 highest, 3F lowest)", constVal<0>, effectVal}}, - {0x13, {DIV_CMD_FM_TL, "13xx: Set level of operator 2 (0 highest, 3F lowest)", constVal<1>, effectVal}}, - {0x14, {DIV_CMD_FM_TL, "14xx: Set level of operator 3 (0 highest, 3F lowest)", constVal<2>, effectVal}}, - {0x15, {DIV_CMD_FM_TL, "15xx: Set level of operator 4 (0 highest, 3F lowest)", constVal<3>, effectVal}}, - {0x16, {DIV_CMD_FM_MULT, "16xy: Set operator multiplier (x: operator from 1 to 4; y: multiplier)", effectOpValNoZero<4>, effectValAnd<15>}}, - {0x17, {DIV_CMD_FM_LFO, "17xx: Set global vibrato depth (0: normal, 1: double)", [](unsigned char, unsigned char val) -> int { return (val&1)+2; }}}, - {0x19, {DIV_CMD_FM_AR, "19xx: Set attack of all operators (0 to F)", constVal<-1>, effectValAnd<15>}}, - {0x1a, {DIV_CMD_FM_AR, "1Axx: Set attack of operator 1 (0 to F)", constVal<0>, effectValAnd<15>}}, - {0x1b, {DIV_CMD_FM_AR, "1Bxx: Set attack of operator 2 (0 to F)", constVal<1>, effectValAnd<15>}}, - {0x1c, {DIV_CMD_FM_AR, "1Cxx: Set attack of operator 3 (0 to F)", constVal<2>, effectValAnd<15>}}, - {0x1d, {DIV_CMD_FM_AR, "1Dxx: Set attack of operator 4 (0 to F)", constVal<3>, effectValAnd<15>}}, - {0x2a, {DIV_CMD_FM_WS, "2Axy: Set waveform (x: operator from 1 to 4 (0 for all ops); y: waveform from 0 to 3 in OPL2 and 0 to 7 in OPL3)", effectOpVal<4>, effectValAnd<7>}}, - {0x50, {DIV_CMD_FM_AM, "50xy: Set AM (x: operator from 1 to 4 (0 for all ops); y: AM)", effectOpVal<4>, effectValAnd<1>}}, - {0x51, {DIV_CMD_FM_SL, "51xy: Set sustain level (x: operator from 1 to 4 (0 for all ops); y: sustain)", effectOpVal<4>, effectValAnd<15>}}, - {0x52, {DIV_CMD_FM_RR, "52xy: Set release (x: operator from 1 to 4 (0 for all ops); y: release)", effectOpVal<4>, effectValAnd<15>}}, - {0x53, {DIV_CMD_FM_VIB, "53xy: Set vibrato (x: operator from 1 to 4 (0 for all ops); y: enabled)", effectOpVal<4>, effectValAnd<1>}}, - {0x54, {DIV_CMD_FM_RS, "54xy: Set envelope scale (x: operator from 1 to 4 (0 for all ops); y: scale from 0 to 3)", effectOpVal<4>, effectValAnd<3>}}, - {0x55, {DIV_CMD_FM_SUS, "55xy: Set envelope sustain (x: operator from 1 to 4 (0 for all ops); y: enabled)", effectOpVal<4>, effectValAnd<1>}}, - {0x56, {DIV_CMD_FM_DR, "56xx: Set decay of all operators (0 to F)", constVal<-1>, effectValAnd<15>}}, - {0x57, {DIV_CMD_FM_DR, "57xx: Set decay of operator 1 (0 to F)", constVal<0>, effectValAnd<15>}}, - {0x58, {DIV_CMD_FM_DR, "58xx: Set decay of operator 2 (0 to F)", constVal<1>, effectValAnd<15>}}, - {0x59, {DIV_CMD_FM_DR, "59xx: Set decay of operator 3 (0 to F)", constVal<2>, effectValAnd<15>}}, - {0x5a, {DIV_CMD_FM_DR, "5Axx: Set decay of operator 4 (0 to F)", constVal<3>, effectValAnd<15>}}, - {0x5b, {DIV_CMD_FM_KSR, "5Bxy: Set whether key will scale envelope (x: operator from 1 to 4 (0 for all ops); y: enabled)", effectOpVal<4>, effectValAnd<1>}}, + {0x10, {DIV_CMD_FM_LFO, _("10xx: Set global AM depth (0: 1dB, 1: 4.8dB)"), effectValAnd<1>}}, + {0x11, {DIV_CMD_FM_FB, _("11xx: Set feedback (0 to 7)")}}, + {0x12, {DIV_CMD_FM_TL, _("12xx: Set level of operator 1 (0 highest, 3F lowest)"), constVal<0>, effectVal}}, + {0x13, {DIV_CMD_FM_TL, _("13xx: Set level of operator 2 (0 highest, 3F lowest)"), constVal<1>, effectVal}}, + {0x14, {DIV_CMD_FM_TL, _("14xx: Set level of operator 3 (0 highest, 3F lowest)"), constVal<2>, effectVal}}, + {0x15, {DIV_CMD_FM_TL, _("15xx: Set level of operator 4 (0 highest, 3F lowest)"), constVal<3>, effectVal}}, + {0x16, {DIV_CMD_FM_MULT, _("16xy: Set operator multiplier (x: operator from 1 to 4; y: multiplier)"), effectOpValNoZero<4>, effectValAnd<15>}}, + {0x17, {DIV_CMD_FM_LFO, _("17xx: Set global vibrato depth (0: normal, 1: double)"), [](unsigned char, unsigned char val) -> int { return (val&1)+2; }}}, + {0x19, {DIV_CMD_FM_AR, _("19xx: Set attack of all operators (0 to F)"), constVal<-1>, effectValAnd<15>}}, + {0x1a, {DIV_CMD_FM_AR, _("1Axx: Set attack of operator 1 (0 to F)"), constVal<0>, effectValAnd<15>}}, + {0x1b, {DIV_CMD_FM_AR, _("1Bxx: Set attack of operator 2 (0 to F)"), constVal<1>, effectValAnd<15>}}, + {0x1c, {DIV_CMD_FM_AR, _("1Cxx: Set attack of operator 3 (0 to F)"), constVal<2>, effectValAnd<15>}}, + {0x1d, {DIV_CMD_FM_AR, _("1Dxx: Set attack of operator 4 (0 to F)"), constVal<3>, effectValAnd<15>}}, + {0x2a, {DIV_CMD_FM_WS, _("2Axy: Set waveform (x: operator from 1 to 4 (0 for all ops); y: waveform from 0 to 3 in OPL2 and 0 to 7 in OPL3)"), effectOpVal<4>, effectValAnd<7>}}, + {0x50, {DIV_CMD_FM_AM, _("50xy: Set AM (x: operator from 1 to 4 (0 for all ops); y: AM)"), effectOpVal<4>, effectValAnd<1>}}, + {0x51, {DIV_CMD_FM_SL, _("51xy: Set sustain level (x: operator from 1 to 4 (0 for all ops); y: sustain)"), effectOpVal<4>, effectValAnd<15>}}, + {0x52, {DIV_CMD_FM_RR, _("52xy: Set release (x: operator from 1 to 4 (0 for all ops); y: release)"), effectOpVal<4>, effectValAnd<15>}}, + {0x53, {DIV_CMD_FM_VIB, _("53xy: Set vibrato (x: operator from 1 to 4 (0 for all ops); y: enabled)"), effectOpVal<4>, effectValAnd<1>}}, + {0x54, {DIV_CMD_FM_RS, _("54xy: Set envelope scale (x: operator from 1 to 4 (0 for all ops); y: scale from 0 to 3)"), effectOpVal<4>, effectValAnd<3>}}, + {0x55, {DIV_CMD_FM_SUS, _("55xy: Set envelope sustain (x: operator from 1 to 4 (0 for all ops); y: enabled)"), effectOpVal<4>, effectValAnd<1>}}, + {0x56, {DIV_CMD_FM_DR, _("56xx: Set decay of all operators (0 to F)"), constVal<-1>, effectValAnd<15>}}, + {0x57, {DIV_CMD_FM_DR, _("57xx: Set decay of operator 1 (0 to F)"), constVal<0>, effectValAnd<15>}}, + {0x58, {DIV_CMD_FM_DR, _("58xx: Set decay of operator 2 (0 to F)"), constVal<1>, effectValAnd<15>}}, + {0x59, {DIV_CMD_FM_DR, _("59xx: Set decay of operator 3 (0 to F)"), constVal<2>, effectValAnd<15>}}, + {0x5a, {DIV_CMD_FM_DR, _("5Axx: Set decay of operator 4 (0 to F)"), constVal<3>, effectValAnd<15>}}, + {0x5b, {DIV_CMD_FM_KSR, _("5Bxy: Set whether key will scale envelope (x: operator from 1 to 4 (0 for all ops); y: enabled)"), effectOpVal<4>, effectValAnd<1>}}, }; EffectHandlerMap c64PostEffectHandlerMap={ - {0x10, {DIV_CMD_WAVE, "10xx: Set waveform (bit 0: triangle; bit 1: saw; bit 2: pulse; bit 3: noise)"}}, - {0x11, {DIV_CMD_C64_CUTOFF, "11xx: Set coarse cutoff (not recommended; use 4xxx instead)"}}, - {0x12, {DIV_CMD_STD_NOISE_MODE, "12xx: Set coarse pulse width (not recommended; use 3xxx instead)"}}, - {0x13, {DIV_CMD_C64_RESONANCE, "13xx: Set resonance (0 to F)"}}, - {0x14, {DIV_CMD_C64_FILTER_MODE, "14xx: Set filter mode (bit 0: low pass; bit 1: band pass; bit 2: high pass)"}}, - {0x15, {DIV_CMD_C64_RESET_TIME, "15xx: Set envelope reset time"}}, - {0x1a, {DIV_CMD_C64_RESET_MASK, "1Axx: Disable envelope reset for this channel (1 disables; 0 enables)"}}, - {0x1b, {DIV_CMD_C64_FILTER_RESET, "1Bxy: Reset cutoff (x: on new note; y: now)"}}, - {0x1c, {DIV_CMD_C64_DUTY_RESET, "1Cxy: Reset pulse width (x: on new note; y: now)"}}, - {0x1e, {DIV_CMD_C64_EXTENDED, "1Exy: Change other parameters (LEGACY)"}}, - {0x20, {DIV_CMD_C64_AD, "20xy: Set attack/decay (x: attack; y: decay)"}}, - {0x21, {DIV_CMD_C64_SR, "21xy: Set sustain/release (x: sustain; y: release)"}}, + {0x10, {DIV_CMD_WAVE, _("10xx: Set waveform (bit 0: triangle; bit 1: saw; bit 2: pulse; bit 3: noise)")}}, + {0x11, {DIV_CMD_C64_CUTOFF, _("11xx: Set coarse cutoff (not recommended; use 4xxx instead)")}}, + {0x12, {DIV_CMD_STD_NOISE_MODE, _("12xx: Set coarse pulse width (not recommended; use 3xxx instead)")}}, + {0x13, {DIV_CMD_C64_RESONANCE, _("13xx: Set resonance (0 to F)")}}, + {0x14, {DIV_CMD_C64_FILTER_MODE, _("14xx: Set filter mode (bit 0: low pass; bit 1: band pass; bit 2: high pass)")}}, + {0x15, {DIV_CMD_C64_RESET_TIME, _("15xx: Set envelope reset time")}}, + {0x1a, {DIV_CMD_C64_RESET_MASK, _("1Axx: Disable envelope reset for this channel (1 disables; 0 enables)")}}, + {0x1b, {DIV_CMD_C64_FILTER_RESET, _("1Bxy: Reset cutoff (x: on new note; y: now)")}}, + {0x1c, {DIV_CMD_C64_DUTY_RESET, _("1Cxy: Reset pulse width (x: on new note; y: now)")}}, + {0x1e, {DIV_CMD_C64_EXTENDED, _("1Exy: Change other parameters (LEGACY)")}}, + {0x20, {DIV_CMD_C64_AD, _("20xy: Set attack/decay (x: attack; y: decay)")}}, + {0x21, {DIV_CMD_C64_SR, _("21xy: Set sustain/release (x: sustain; y: release)")}}, }; - const EffectHandler c64FineDutyHandler(DIV_CMD_C64_FINE_DUTY, "3xxx: Set pulse width (0 to FFF)", effectValLong<12>); - const EffectHandler c64FineCutoffHandler(DIV_CMD_C64_FINE_CUTOFF, "4xxx: Set cutoff (0 to 7FF)", effectValLong<11>); + const EffectHandler c64FineDutyHandler(DIV_CMD_C64_FINE_DUTY, _("3xxx: Set pulse width (0 to FFF)"), effectValLong<12>); + const EffectHandler c64FineCutoffHandler(DIV_CMD_C64_FINE_CUTOFF, _("4xxx: Set cutoff (0 to 7FF)"), effectValLong<11>); for (int i=0; i<16; i++) c64PostEffectHandlerMap.emplace(0x30+i,c64FineDutyHandler); for (int i=0; i<8; i++) c64PostEffectHandlerMap.emplace(0x40+i,c64FineCutoffHandler); EffectHandlerMap waveOnlyEffectHandlerMap={ - {0x10, {DIV_CMD_WAVE, "10xx: Set waveform"}}, + {0x10, {DIV_CMD_WAVE, _("10xx: Set waveform")}}, }; EffectHandlerMap segaPCMPostEffectHandlerMap={ - {0x20, {DIV_CMD_SAMPLE_FREQ, "20xx: Set PCM frequency"}} + {0x20, {DIV_CMD_SAMPLE_FREQ, _("20xx: Set PCM frequency")}} }; EffectHandlerMap fmESFMPostEffectHandlerMap={ - {0x10, {DIV_CMD_FM_AM_DEPTH, "10xy: Set AM depth (x: operator from 1 to 4 (0 for all ops); y: depth (0: 1dB, 1: 4.8dB))", effectOpVal<4>, effectValAnd<1>}}, - {0x12, {DIV_CMD_FM_TL, "12xx: Set level of operator 1 (0 highest, 3F lowest)", constVal<0>, effectVal}}, - {0x13, {DIV_CMD_FM_TL, "13xx: Set level of operator 2 (0 highest, 3F lowest)", constVal<1>, effectVal}}, - {0x14, {DIV_CMD_FM_TL, "14xx: Set level of operator 3 (0 highest, 3F lowest)", constVal<2>, effectVal}}, - {0x15, {DIV_CMD_FM_TL, "15xx: Set level of operator 4 (0 highest, 3F lowest)", constVal<3>, effectVal}}, - {0x16, {DIV_CMD_FM_MULT, "16xy: Set operator multiplier (x: operator from 1 to 4; y: multiplier)", effectOpValNoZero<4>, effectValAnd<15>}}, - {0x17, {DIV_CMD_FM_PM_DEPTH, "17xy: Set vibrato depth (x: operator from 1 to 4 (0 for all ops); y: depth (0: normal, 1: double))", effectOpVal<4>, effectValAnd<1>}}, - {0x19, {DIV_CMD_FM_AR, "19xx: Set attack of all operators (0 to F)", constVal<-1>, effectValAnd<15>}}, - {0x1a, {DIV_CMD_FM_AR, "1Axx: Set attack of operator 1 (0 to F)", constVal<0>, effectValAnd<15>}}, - {0x1b, {DIV_CMD_FM_AR, "1Bxx: Set attack of operator 2 (0 to F)", constVal<1>, effectValAnd<15>}}, - {0x1c, {DIV_CMD_FM_AR, "1Cxx: Set attack of operator 3 (0 to F)", constVal<2>, effectValAnd<15>}}, - {0x1d, {DIV_CMD_FM_AR, "1Dxx: Set attack of operator 4 (0 to F)", constVal<3>, effectValAnd<15>}}, - {0x20, {DIV_CMD_ESFM_OP_PANNING, "20xy: Set panning of operator 1 (x: left; y: right)", constVal<0>, effectVal}}, - {0x21, {DIV_CMD_ESFM_OP_PANNING, "21xy: Set panning of operator 2 (x: left; y: right)", constVal<1>, effectVal}}, - {0x22, {DIV_CMD_ESFM_OP_PANNING, "22xy: Set panning of operator 3 (x: left; y: right)", constVal<2>, effectVal}}, - {0x23, {DIV_CMD_ESFM_OP_PANNING, "23xy: Set panning of operator 4 (x: left; y: right)", constVal<3>, effectVal}}, - {0x24, {DIV_CMD_ESFM_OUTLVL, "24xy: Set output level register (x: operator from 1 to 4 (0 for all ops); y: level from 0 to 7)", effectOpVal<4>, effectValAnd<7>}}, - {0x25, {DIV_CMD_ESFM_MODIN, "25xy: Set modulation input level (x: operator from 1 to 4 (0 for all ops); y: level from 0 to 7)", effectOpVal<4>, effectValAnd<7>}}, - {0x26, {DIV_CMD_ESFM_ENV_DELAY, "26xy: Set envelope delay (x: operator from 1 to 4 (0 for all ops); y: delay from 0 to 7)", effectOpVal<4>, effectValAnd<7>}}, - {0x27, {DIV_CMD_STD_NOISE_MODE, "27xx: Set noise mode for operator 4 (x: mode from 0 to 3)", effectValAnd<3>}}, - {0x2a, {DIV_CMD_FM_WS, "2Axy: Set waveform (x: operator from 1 to 4 (0 for all ops); y: waveform from 0 to 7)", effectOpVal<4>, effectValAnd<7>}}, - {0x2f, {DIV_CMD_FM_FIXFREQ, "2Fxy: Set fixed frequency block (x: operator from 1 to 4; y: octave from 0 to 7)", effectOpValNoZero<4>, effectValAnd<7>}}, - {0x40, {DIV_CMD_FM_DT, "40xx: Set detune of operator 1 (80: center)", constVal<0>, effectVal}}, - {0x41, {DIV_CMD_FM_DT, "41xx: Set detune of operator 2 (80: center)", constVal<1>, effectVal}}, - {0x42, {DIV_CMD_FM_DT, "42xx: Set detune of operator 3 (80: center)", constVal<2>, effectVal}}, - {0x43, {DIV_CMD_FM_DT, "43xx: Set detune of operator 4 (80: center)", constVal<3>, effectVal}}, - {0x50, {DIV_CMD_FM_AM, "50xy: Set AM (x: operator from 1 to 4 (0 for all ops); y: AM)", effectOpVal<4>, effectValAnd<1>}}, - {0x51, {DIV_CMD_FM_SL, "51xy: Set sustain level (x: operator from 1 to 4 (0 for all ops); y: sustain)", effectOpVal<4>, effectValAnd<15>}}, - {0x52, {DIV_CMD_FM_RR, "52xy: Set release (x: operator from 1 to 4 (0 for all ops); y: release)", effectOpVal<4>, effectValAnd<15>}}, - {0x53, {DIV_CMD_FM_VIB, "53xy: Set vibrato (x: operator from 1 to 4 (0 for all ops); y: enabled)", effectOpVal<4>, effectValAnd<1>}}, - {0x54, {DIV_CMD_FM_RS, "54xy: Set envelope scale (x: operator from 1 to 4 (0 for all ops); y: scale from 0 to 3)", effectOpVal<4>, effectValAnd<3>}}, - {0x55, {DIV_CMD_FM_SUS, "55xy: Set envelope sustain (x: operator from 1 to 4 (0 for all ops); y: enabled)", effectOpVal<4>, effectValAnd<1>}}, - {0x56, {DIV_CMD_FM_DR, "56xx: Set decay of all operators (0 to F)", constVal<-1>, effectValAnd<15>}}, - {0x57, {DIV_CMD_FM_DR, "57xx: Set decay of operator 1 (0 to F)", constVal<0>, effectValAnd<15>}}, - {0x58, {DIV_CMD_FM_DR, "58xx: Set decay of operator 2 (0 to F)", constVal<1>, effectValAnd<15>}}, - {0x59, {DIV_CMD_FM_DR, "59xx: Set decay of operator 3 (0 to F)", constVal<2>, effectValAnd<15>}}, - {0x5a, {DIV_CMD_FM_DR, "5Axx: Set decay of operator 4 (0 to F)", constVal<3>, effectValAnd<15>}}, - {0x5b, {DIV_CMD_FM_KSR, "5Bxy: Set whether key will scale envelope (x: operator from 1 to 4 (0 for all ops); y: enabled)", effectOpVal<4>, effectValAnd<1>}} + {0x10, {DIV_CMD_FM_AM_DEPTH, _("10xy: Set AM depth (x: operator from 1 to 4 (0 for all ops); y: depth (0: 1dB, 1: 4.8dB))"), effectOpVal<4>, effectValAnd<1>}}, + {0x12, {DIV_CMD_FM_TL, _("12xx: Set level of operator 1 (0 highest, 3F lowest)"), constVal<0>, effectVal}}, + {0x13, {DIV_CMD_FM_TL, _("13xx: Set level of operator 2 (0 highest, 3F lowest)"), constVal<1>, effectVal}}, + {0x14, {DIV_CMD_FM_TL, _("14xx: Set level of operator 3 (0 highest, 3F lowest)"), constVal<2>, effectVal}}, + {0x15, {DIV_CMD_FM_TL, _("15xx: Set level of operator 4 (0 highest, 3F lowest)"), constVal<3>, effectVal}}, + {0x16, {DIV_CMD_FM_MULT, _("16xy: Set operator multiplier (x: operator from 1 to 4; y: multiplier)"), effectOpValNoZero<4>, effectValAnd<15>}}, + {0x17, {DIV_CMD_FM_PM_DEPTH, _("17xy: Set vibrato depth (x: operator from 1 to 4 (0 for all ops); y: depth (0: normal, 1: double))"), effectOpVal<4>, effectValAnd<1>}}, + {0x19, {DIV_CMD_FM_AR, _("19xx: Set attack of all operators (0 to F)"), constVal<-1>, effectValAnd<15>}}, + {0x1a, {DIV_CMD_FM_AR, _("1Axx: Set attack of operator 1 (0 to F)"), constVal<0>, effectValAnd<15>}}, + {0x1b, {DIV_CMD_FM_AR, _("1Bxx: Set attack of operator 2 (0 to F)"), constVal<1>, effectValAnd<15>}}, + {0x1c, {DIV_CMD_FM_AR, _("1Cxx: Set attack of operator 3 (0 to F)"), constVal<2>, effectValAnd<15>}}, + {0x1d, {DIV_CMD_FM_AR, _("1Dxx: Set attack of operator 4 (0 to F)"), constVal<3>, effectValAnd<15>}}, + {0x20, {DIV_CMD_ESFM_OP_PANNING, _("20xy: Set panning of operator 1 (x: left; y: right)"), constVal<0>, effectVal}}, + {0x21, {DIV_CMD_ESFM_OP_PANNING, _("21xy: Set panning of operator 2 (x: left; y: right)"), constVal<1>, effectVal}}, + {0x22, {DIV_CMD_ESFM_OP_PANNING, _("22xy: Set panning of operator 3 (x: left; y: right)"), constVal<2>, effectVal}}, + {0x23, {DIV_CMD_ESFM_OP_PANNING, _("23xy: Set panning of operator 4 (x: left; y: right)"), constVal<3>, effectVal}}, + {0x24, {DIV_CMD_ESFM_OUTLVL, _("24xy: Set output level register (x: operator from 1 to 4 (0 for all ops); y: level from 0 to 7)"), effectOpVal<4>, effectValAnd<7>}}, + {0x25, {DIV_CMD_ESFM_MODIN, _("25xy: Set modulation input level (x: operator from 1 to 4 (0 for all ops); y: level from 0 to 7)"), effectOpVal<4>, effectValAnd<7>}}, + {0x26, {DIV_CMD_ESFM_ENV_DELAY, _("26xy: Set envelope delay (x: operator from 1 to 4 (0 for all ops); y: delay from 0 to 7)"), effectOpVal<4>, effectValAnd<7>}}, + {0x27, {DIV_CMD_STD_NOISE_MODE, _("27xx: Set noise mode for operator 4 (x: mode from 0 to 3)"), effectValAnd<3>}}, + {0x2a, {DIV_CMD_FM_WS, _("2Axy: Set waveform (x: operator from 1 to 4 (0 for all ops); y: waveform from 0 to 7)"), effectOpVal<4>, effectValAnd<7>}}, + {0x2f, {DIV_CMD_FM_FIXFREQ, _("2Fxy: Set fixed frequency block (x: operator from 1 to 4; y: octave from 0 to 7)"), effectOpValNoZero<4>, effectValAnd<7>}}, + {0x40, {DIV_CMD_FM_DT, _("40xx: Set detune of operator 1 (80: center)"), constVal<0>, effectVal}}, + {0x41, {DIV_CMD_FM_DT, _("41xx: Set detune of operator 2 (80: center)"), constVal<1>, effectVal}}, + {0x42, {DIV_CMD_FM_DT, _("42xx: Set detune of operator 3 (80: center)"), constVal<2>, effectVal}}, + {0x43, {DIV_CMD_FM_DT, _("43xx: Set detune of operator 4 (80: center)"), constVal<3>, effectVal}}, + {0x50, {DIV_CMD_FM_AM, _("50xy: Set AM (x: operator from 1 to 4 (0 for all ops); y: AM)"), effectOpVal<4>, effectValAnd<1>}}, + {0x51, {DIV_CMD_FM_SL, _("51xy: Set sustain level (x: operator from 1 to 4 (0 for all ops); y: sustain)"), effectOpVal<4>, effectValAnd<15>}}, + {0x52, {DIV_CMD_FM_RR, _("52xy: Set release (x: operator from 1 to 4 (0 for all ops); y: release)"), effectOpVal<4>, effectValAnd<15>}}, + {0x53, {DIV_CMD_FM_VIB, _("53xy: Set vibrato (x: operator from 1 to 4 (0 for all ops); y: enabled)"), effectOpVal<4>, effectValAnd<1>}}, + {0x54, {DIV_CMD_FM_RS, _("54xy: Set envelope scale (x: operator from 1 to 4 (0 for all ops); y: scale from 0 to 3)"), effectOpVal<4>, effectValAnd<3>}}, + {0x55, {DIV_CMD_FM_SUS, _("55xy: Set envelope sustain (x: operator from 1 to 4 (0 for all ops); y: enabled)"), effectOpVal<4>, effectValAnd<1>}}, + {0x56, {DIV_CMD_FM_DR, _("56xx: Set decay of all operators (0 to F)"), constVal<-1>, effectValAnd<15>}}, + {0x57, {DIV_CMD_FM_DR, _("57xx: Set decay of operator 1 (0 to F)"), constVal<0>, effectValAnd<15>}}, + {0x58, {DIV_CMD_FM_DR, _("58xx: Set decay of operator 2 (0 to F)"), constVal<1>, effectValAnd<15>}}, + {0x59, {DIV_CMD_FM_DR, _("59xx: Set decay of operator 3 (0 to F)"), constVal<2>, effectValAnd<15>}}, + {0x5a, {DIV_CMD_FM_DR, _("5Axx: Set decay of operator 4 (0 to F)"), constVal<3>, effectValAnd<15>}}, + {0x5b, {DIV_CMD_FM_KSR, _("5Bxy: Set whether key will scale envelope (x: operator from 1 to 4 (0 for all ops); y: enabled)"), effectOpVal<4>, effectValAnd<1>}} }; const EffectHandler fmESFMFixFreqFNumHandler[4]={ - {DIV_CMD_FM_FIXFREQ, "3xyy: Set fixed frequency F-num of operator 1 (x: high 2 bits from 0 to 3; y: low 8 bits of F-num)", constVal<4>, effectValLong<10>}, - {DIV_CMD_FM_FIXFREQ, "3xyy: Set fixed frequency F-num of operator 2 (x: high 2 bits from 4 to 7; y: low 8 bits of F-num)", constVal<5>, effectValLong<10>}, - {DIV_CMD_FM_FIXFREQ, "3xyy: Set fixed frequency F-num of operator 3 (x: high 2 bits from 8 to B; y: low 8 bits of F-num)", constVal<6>, effectValLong<10>}, - {DIV_CMD_FM_FIXFREQ, "3xyy: Set fixed frequency F-num of operator 4 (x: high 2 bits from C to F; y: low 8 bits of F-num)", constVal<7>, effectValLong<10>}, + {DIV_CMD_FM_FIXFREQ, _("3xyy: Set fixed frequency F-num of operator 1 (x: high 2 bits from 0 to 3; y: low 8 bits of F-num)"), constVal<4>, effectValLong<10>}, + {DIV_CMD_FM_FIXFREQ, _("3xyy: Set fixed frequency F-num of operator 2 (x: high 2 bits from 4 to 7; y: low 8 bits of F-num)"), constVal<5>, effectValLong<10>}, + {DIV_CMD_FM_FIXFREQ, _("3xyy: Set fixed frequency F-num of operator 3 (x: high 2 bits from 8 to B; y: low 8 bits of F-num)"), constVal<6>, effectValLong<10>}, + {DIV_CMD_FM_FIXFREQ, _("3xyy: Set fixed frequency F-num of operator 4 (x: high 2 bits from C to F; y: low 8 bits of F-num)"), constVal<7>, effectValLong<10>}, }; for (int i=0; i<16; i++) { fmESFMPostEffectHandlerMap.emplace(0x30+i,fmESFMFixFreqFNumHandler[i/4]); } EffectHandlerMap SID2PostEffectHandlerMap={ - {0x10, {DIV_CMD_WAVE, "10xx: Set waveform (bit 0: triangle; bit 1: saw; bit 2: pulse; bit 3: noise)"}}, - {0x11, {DIV_CMD_C64_RESONANCE, "11xx: Set resonance (0 to FF)"}}, - {0x12, {DIV_CMD_C64_FILTER_MODE, "12xx: Set filter mode (bit 0: low pass; bit 1: band pass; bit 2: high pass)"}}, - {0x13, {DIV_CMD_C64_RESET_MASK, "13xx: Disable envelope reset for this channel (1 disables; 0 enables)"}}, - {0x14, {DIV_CMD_C64_FILTER_RESET, "14xy: Reset cutoff (x: on new note; y: now)"}}, - {0x15, {DIV_CMD_C64_DUTY_RESET, "15xy: Reset pulse width (x: on new note; y: now)"}}, - {0x16, {DIV_CMD_C64_EXTENDED, "16xy: Change other parameters"}}, + {0x10, {DIV_CMD_WAVE, _("10xx: Set waveform (bit 0: triangle; bit 1: saw; bit 2: pulse; bit 3: noise)")}}, + {0x11, {DIV_CMD_C64_RESONANCE, _("11xx: Set resonance (0 to FF)")}}, + {0x12, {DIV_CMD_C64_FILTER_MODE, _("12xx: Set filter mode (bit 0: low pass; bit 1: band pass; bit 2: high pass)")}}, + {0x13, {DIV_CMD_C64_RESET_MASK, _("13xx: Disable envelope reset for this channel (1 disables; 0 enables)")}}, + {0x14, {DIV_CMD_C64_FILTER_RESET, _("14xy: Reset cutoff (x: on new note; y: now)")}}, + {0x15, {DIV_CMD_C64_DUTY_RESET, _("15xy: Reset pulse width (x: on new note; y: now)")}}, + {0x16, {DIV_CMD_C64_EXTENDED, _("16xy: Change other parameters")}}, }; - const EffectHandler SID2FineDutyHandler(DIV_CMD_C64_FINE_DUTY, "3xxx: Set pulse width (0 to FFF)", effectValLong<12>); - const EffectHandler SID2FineCutoffHandler(DIV_CMD_C64_FINE_CUTOFF, "4xxx: Set cutoff (0 to FFF)", effectValLong<11>); + const EffectHandler SID2FineDutyHandler(DIV_CMD_C64_FINE_DUTY, _("3xxx: Set pulse width (0 to FFF)"), effectValLong<12>); + const EffectHandler SID2FineCutoffHandler(DIV_CMD_C64_FINE_CUTOFF, _("4xxx: Set cutoff (0 to FFF)"), effectValLong<11>); for (int i=0; i<16; i++) SID2PostEffectHandlerMap.emplace(0x30+i,SID2FineDutyHandler); for (int i=0; i<16; i++) SID2PostEffectHandlerMap.emplace(0x40+i,SID2FineCutoffHandler); @@ -694,117 +694,117 @@ void DivEngine::registerSystems() { // this chip uses YMZ ADPCM, but the emulator uses ADPCM-B because I got it wrong back then. sysDefs[DIV_SYSTEM_YMU759]=new DivSysDef( - "Yamaha YMU759 (MA-2)", NULL, 0x01, 0x01, 17, true, false, 0, false, (1U<", {}, {}, {}, {} ); sysDefs[DIV_SYSTEM_GENESIS_EXT]=new DivSysDef( - "Sega Genesis Extended Channel 3", NULL, 0x42, 0x42, 13, true, true, 0, true, 0, 0, 0, + _("Sega Genesis Extended Channel 3"), NULL, 0x42, 0x42, 13, true, true, 0, true, 0, 0, 0, "", {}, {}, {}, {} ); sysDefs[DIV_SYSTEM_SMS]=new DivSysDef( - "TI SN76489", NULL, 0x03, 0x03, 4, false, true, 0x150, false, 0, 0, 0, - "a square/noise sound chip found on the Sega Master System, ColecoVision, Tandy, TI's own 99/4A and a few other places.", - {"Square 1", "Square 2", "Square 3", "Noise"}, + _("TI SN76489"), NULL, 0x03, 0x03, 4, false, true, 0x150, false, 0, 0, 0, + _("a square/noise sound chip found on the Sega Master System, ColecoVision, Tandy, TI's own 99/4A and a few other places."), + {_("Square 1"), _("Square 2"), _("Square 3"), _("Noise")}, {"S1", "S2", "S3", "NO"}, {DIV_CH_PULSE, DIV_CH_PULSE, DIV_CH_PULSE, DIV_CH_NOISE}, {DIV_INS_STD, DIV_INS_STD, DIV_INS_STD, DIV_INS_STD}, {}, { - {0x20, {DIV_CMD_STD_NOISE_MODE, "20xy: Set noise mode (x: preset freq/ch3 freq; y: thin pulse/noise)"}} + {0x20, {DIV_CMD_STD_NOISE_MODE, _("20xy: Set noise mode (x: preset freq/ch3 freq; y: thin pulse/noise)")}} } ); sysDefs[DIV_SYSTEM_SMS_OPLL]=new DivSysDef( - "Sega Master System + FM Expansion", NULL, 0x43, 0x43, 13, true, true, 0, true, 0, 0, 0, + _("Sega Master System + FM Expansion"), NULL, 0x43, 0x43, 13, true, true, 0, true, 0, 0, 0, "", {}, {}, {}, {} ); sysDefs[DIV_SYSTEM_GB]=new DivSysDef( - "Game Boy", NULL, 0x04, 0x04, 4, false, true, 0x161, false, 0, 32, 16, - "the most popular portable game console of the era.", - {"Pulse 1", "Pulse 2", "Wavetable", "Noise"}, + _("Game Boy"), NULL, 0x04, 0x04, 4, false, true, 0x161, false, 0, 32, 16, + _("the most popular portable game console of the era."), + {_("Pulse 1"), _("Pulse 2"), _("Wavetable"), _("Noise")}, {"S1", "S2", "WA", "NO"}, {DIV_CH_PULSE, DIV_CH_PULSE, DIV_CH_WAVE, DIV_CH_NOISE}, {DIV_INS_GB, DIV_INS_GB, DIV_INS_GB, DIV_INS_GB}, {}, { - {0x10, {DIV_CMD_WAVE, "10xx: Set waveform"}}, - {0x11, {DIV_CMD_STD_NOISE_MODE, "11xx: Set noise length (0: long; 1: short)"}}, - {0x12, {DIV_CMD_STD_NOISE_MODE, "12xx: Set duty cycle (0 to 3)"}}, - {0x13, {DIV_CMD_GB_SWEEP_TIME, "13xy: Setup sweep (x: time; y: shift)"}}, - {0x14, {DIV_CMD_GB_SWEEP_DIR, "14xx: Set sweep direction (0: up; 1: down)"}} + {0x10, {DIV_CMD_WAVE, _("10xx: Set waveform")}}, + {0x11, {DIV_CMD_STD_NOISE_MODE, _("11xx: Set noise length (0: long; 1: short)")}}, + {0x12, {DIV_CMD_STD_NOISE_MODE, _("12xx: Set duty cycle (0 to 3)")}}, + {0x13, {DIV_CMD_GB_SWEEP_TIME, _("13xy: Setup sweep (x: time; y: shift)")}}, + {0x14, {DIV_CMD_GB_SWEEP_DIR, _("14xx: Set sweep direction (0: up; 1: down)")}} } ); sysDefs[DIV_SYSTEM_PCE]=new DivSysDef( - "PC Engine/TurboGrafx-16", NULL, 0x05, 0x05, 6, false, true, 0x161, false, 1U<,effectVal}}, - {0x14, {DIV_CMD_NES_SWEEP, "14xy: Sweep down (x: time; y: shift)",constVal<1>,effectVal}}, - {0x15, {DIV_CMD_NES_ENV_MODE, "15xx: Set envelope mode (0: envelope, 1: length, 2: looping, 3: constant)"}}, - {0x16, {DIV_CMD_NES_LENGTH, "16xx: Set length counter (refer to manual for a list of values)"}}, - {0x17, {DIV_CMD_NES_COUNT_MODE, "17xx: Set frame counter mode (0: 4-step, 1: 5-step)"}}, - {0x18, {DIV_CMD_SAMPLE_MODE, "18xx: Select PCM/DPCM mode (0: PCM; 1: DPCM)"}}, - {0x19, {DIV_CMD_NES_LINEAR_LENGTH, "19xx: Set triangle linear counter (0 to 7F; 80 and higher halt)"}}, - {0x20, {DIV_CMD_SAMPLE_FREQ, "20xx: Set DPCM frequency (0 to F)"}} + {0x11, {DIV_CMD_NES_DMC, _("11xx: Write to delta modulation counter (0 to 7F)")}}, + {0x12, {DIV_CMD_STD_NOISE_MODE, _("12xx: Set duty cycle/noise mode (pulse: 0 to 3; noise: 0 or 1)")}}, + {0x13, {DIV_CMD_NES_SWEEP, _("13xy: Sweep up (x: time; y: shift)"),constVal<0>,effectVal}}, + {0x14, {DIV_CMD_NES_SWEEP, _("14xy: Sweep down (x: time; y: shift)"),constVal<1>,effectVal}}, + {0x15, {DIV_CMD_NES_ENV_MODE, _("15xx: Set envelope mode (0: envelope, 1: length, 2: looping, 3: constant)")}}, + {0x16, {DIV_CMD_NES_LENGTH, _("16xx: Set length counter (refer to manual for a list of values)")}}, + {0x17, {DIV_CMD_NES_COUNT_MODE, _("17xx: Set frame counter mode (0: 4-step, 1: 5-step)")}}, + {0x18, {DIV_CMD_SAMPLE_MODE, _("18xx: Select PCM/DPCM mode (0: PCM; 1: DPCM)")}}, + {0x19, {DIV_CMD_NES_LINEAR_LENGTH, _("19xx: Set triangle linear counter (0 to 7F; 80 and higher halt)")}}, + {0x20, {DIV_CMD_SAMPLE_FREQ, _("20xx: Set DPCM frequency (0 to F)")}} } ); sysDefs[DIV_SYSTEM_NES_VRC7]=new DivSysDef( - "NES + Konami VRC7", NULL, 0x46, 0x46, 11, true, true, 0, true, 0, 0, 0, + _("NES + Konami VRC7"), NULL, 0x46, 0x46, 11, true, true, 0, true, 0, 0, 0, "", {}, {}, {}, {} ); sysDefs[DIV_SYSTEM_NES_FDS]=new DivSysDef( - "Famicom Disk System", NULL, 0, 0x86, 6, false, true, 0, true, 0, 0, 0, + _("Famicom Disk System"), NULL, 0, 0x86, 6, false, true, 0, true, 0, 0, 0, "", {}, {}, {}, {} ); sysDefs[DIV_SYSTEM_C64_6581]=new DivSysDef( - "Commodore 64 (SID 6581)", NULL, 0x47, 0x47, 3, false, true, 0, false, 0, 0, 0, - "this computer is powered by the SID chip, which had synthesizer features like a filter and ADSR.", - {"Channel 1", "Channel 2", "Channel 3"}, + _("Commodore 64 (SID 6581)"), NULL, 0x47, 0x47, 3, false, true, 0, false, 0, 0, 0, + _("this computer is powered by the SID chip, which had synthesizer features like a filter and ADSR."), + {_("Channel 1"), _("Channel 2"), _("Channel 3")}, {"CH1", "CH2", "CH3"}, {DIV_CH_NOISE, DIV_CH_NOISE, DIV_CH_NOISE}, {DIV_INS_C64, DIV_INS_C64, DIV_INS_C64}, @@ -814,9 +814,9 @@ void DivEngine::registerSystems() { ); sysDefs[DIV_SYSTEM_C64_8580]=new DivSysDef( - "Commodore 64 (SID 8580)", NULL, 0x07, 0x07, 3, false, true, 0, false, 0, 0, 0, - "this computer is powered by the SID chip, which had synthesizer features like a filter and ADSR.\nthis is the newer revision of the chip.", - {"Channel 1", "Channel 2", "Channel 3"}, + _("Commodore 64 (SID 8580)"), NULL, 0x07, 0x07, 3, false, true, 0, false, 0, 0, 0, + _("this computer is powered by the SID chip, which had synthesizer features like a filter and ADSR.\nthis is the newer revision of the chip."), + {_("Channel 1"), _("Channel 2"), _("Channel 3")}, {"CH1", "CH2", "CH3"}, {DIV_CH_NOISE, DIV_CH_NOISE, DIV_CH_NOISE}, {DIV_INS_C64, DIV_INS_C64, DIV_INS_C64}, @@ -826,15 +826,15 @@ void DivEngine::registerSystems() { ); sysDefs[DIV_SYSTEM_ARCADE]=new DivSysDef( - "DefleCade", NULL, 0x08, 0x08, 13, true, false, 0, true, 0, 0, 0, + _("DefleCade"), NULL, 0x08, 0x08, 13, true, false, 0, true, 0, 0, 0, "", {}, {}, {}, {} ); sysDefs[DIV_SYSTEM_YM2610]=new DivSysDef( - "Neo Geo CD", NULL, 0x09, 0x09, 13, true, true, 0x151, false, (1U<,effectVal}}, - {0x31, {DIV_CMD_SNES_ECHO_FIR, "31xx: Set echo filter coefficient 1",constVal<1>,effectVal}}, - {0x32, {DIV_CMD_SNES_ECHO_FIR, "32xx: Set echo filter coefficient 2",constVal<2>,effectVal}}, - {0x33, {DIV_CMD_SNES_ECHO_FIR, "33xx: Set echo filter coefficient 3",constVal<3>,effectVal}}, - {0x34, {DIV_CMD_SNES_ECHO_FIR, "34xx: Set echo filter coefficient 4",constVal<4>,effectVal}}, - {0x35, {DIV_CMD_SNES_ECHO_FIR, "35xx: Set echo filter coefficient 5",constVal<5>,effectVal}}, - {0x36, {DIV_CMD_SNES_ECHO_FIR, "36xx: Set echo filter coefficient 6",constVal<6>,effectVal}}, - {0x37, {DIV_CMD_SNES_ECHO_FIR, "37xx: Set echo filter coefficient 7",constVal<7>,effectVal}}, + {0x18, {DIV_CMD_SNES_ECHO_ENABLE, _("18xx: Enable echo buffer")}}, + {0x19, {DIV_CMD_SNES_ECHO_DELAY, _("19xx: Set echo delay (0 to F)")}}, + {0x1a, {DIV_CMD_SNES_ECHO_VOL_LEFT, _("1Axx: Set left echo volume")}}, + {0x1b, {DIV_CMD_SNES_ECHO_VOL_RIGHT, _("1Bxx: Set right echo volume")}}, + {0x1c, {DIV_CMD_SNES_ECHO_FEEDBACK, _("1Cxx: Set echo feedback")}}, + {0x1e, {DIV_CMD_SNES_GLOBAL_VOL_LEFT, _("1Exx: Set dry output volume (left)")}}, + {0x1f, {DIV_CMD_SNES_GLOBAL_VOL_RIGHT, _("1Fxx: Set dry output volume (right)")}}, + {0x30, {DIV_CMD_SNES_ECHO_FIR, _("30xx: Set echo filter coefficient 0"),constVal<0>,effectVal}}, + {0x31, {DIV_CMD_SNES_ECHO_FIR, _("31xx: Set echo filter coefficient 1"),constVal<1>,effectVal}}, + {0x32, {DIV_CMD_SNES_ECHO_FIR, _("32xx: Set echo filter coefficient 2"),constVal<2>,effectVal}}, + {0x33, {DIV_CMD_SNES_ECHO_FIR, _("33xx: Set echo filter coefficient 3"),constVal<3>,effectVal}}, + {0x34, {DIV_CMD_SNES_ECHO_FIR, _("34xx: Set echo filter coefficient 4"),constVal<4>,effectVal}}, + {0x35, {DIV_CMD_SNES_ECHO_FIR, _("35xx: Set echo filter coefficient 5"),constVal<5>,effectVal}}, + {0x36, {DIV_CMD_SNES_ECHO_FIR, _("36xx: Set echo filter coefficient 6"),constVal<6>,effectVal}}, + {0x37, {DIV_CMD_SNES_ECHO_FIR, _("37xx: Set echo filter coefficient 7"),constVal<7>,effectVal}}, }, { - {0x10, {DIV_CMD_WAVE, "10xx: Set waveform"}}, - {0x11, {DIV_CMD_STD_NOISE_MODE, "11xx: Toggle noise mode"}}, - {0x12, {DIV_CMD_SNES_ECHO, "12xx: Toggle echo on this channel"}}, - {0x13, {DIV_CMD_SNES_PITCH_MOD, "13xx: Toggle pitch modulation"}}, - {0x14, {DIV_CMD_SNES_INVERT, "14xy: Toggle invert (x: left; y: right)"}}, - {0x15, {DIV_CMD_SNES_GAIN_MODE, "15xx: Set envelope mode (0: ADSR, 1: gain/direct, 2: dec, 3: exp, 4: inc, 5: bent)"}}, - {0x16, {DIV_CMD_SNES_GAIN, "16xx: Set gain (00 to 7F if direct; 00 to 1F otherwise)"}}, - {0x1d, {DIV_CMD_STD_NOISE_FREQ, "1Dxx: Set noise frequency (00 to 1F)"}}, - {0x20, {DIV_CMD_FM_AR, "20xx: Set attack (0 to F)"}}, - {0x21, {DIV_CMD_FM_DR, "21xx: Set decay (0 to 7)"}}, - {0x22, {DIV_CMD_FM_SL, "22xx: Set sustain (0 to 7)"}}, - {0x23, {DIV_CMD_FM_RR, "23xx: Set release (00 to 1F)"}}, + {0x10, {DIV_CMD_WAVE, _("10xx: Set waveform")}}, + {0x11, {DIV_CMD_STD_NOISE_MODE, _("11xx: Toggle noise mode")}}, + {0x12, {DIV_CMD_SNES_ECHO, _("12xx: Toggle echo on this channel")}}, + {0x13, {DIV_CMD_SNES_PITCH_MOD, _("13xx: Toggle pitch modulation")}}, + {0x14, {DIV_CMD_SNES_INVERT, _("14xy: Toggle invert (x: left; y: right)")}}, + {0x15, {DIV_CMD_SNES_GAIN_MODE, _("15xx: Set envelope mode (0: ADSR, 1: gain/direct, 2: dec, 3: exp, 4: inc, 5: bent)")}}, + {0x16, {DIV_CMD_SNES_GAIN, _("16xx: Set gain (00 to 7F if direct; 00 to 1F otherwise)")}}, + {0x1d, {DIV_CMD_STD_NOISE_FREQ, _("1Dxx: Set noise frequency (00 to 1F)")}}, + {0x20, {DIV_CMD_FM_AR, _("20xx: Set attack (0 to F)")}}, + {0x21, {DIV_CMD_FM_DR, _("21xx: Set decay (0 to 7)")}}, + {0x22, {DIV_CMD_FM_SL, _("22xx: Set sustain (0 to 7)")}}, + {0x23, {DIV_CMD_FM_RR, _("23xx: Set release (00 to 1F)")}}, } ); sysDefs[DIV_SYSTEM_VRC6]=new DivSysDef( - "Konami VRC6", NULL, 0x88, 0, 3, false, true, 0, false, 1U<); + const EffectHandler lynxLFSRHandler(DIV_CMD_LYNX_LFSR_LOAD, _("3xxx: Load LFSR (0 to FFF)"), effectValLong<12>); for (int i=0; i<16; i++) { lynxEffectHandlerMap.emplace(0x30+i, lynxLFSRHandler); } sysDefs[DIV_SYSTEM_LYNX]=new DivSysDef( - "Atari Lynx", NULL, 0xa8, 0, 4, false, true, 0x172, false, 1U<); + const EffectHandler qSoundEchoDelayHandler(DIV_CMD_QSOUND_ECHO_DELAY, _("3xxx: Set echo delay buffer length (000 to AA5)"), effectValLong<12>); for (int i=0; i<16; i++) { qSoundEffectHandlerMap.emplace(0x30+i, qSoundEchoDelayHandler); } sysDefs[DIV_SYSTEM_QSOUND]=new DivSysDef( - "Capcom QSound", NULL, 0xe0, 0, 19, false, true, 0x161, false, (1U<}}, - {0x14, {DIV_CMD_ES5506_FILTER_K1, "14xx: Set filter coefficient K1 low byte (00 to FF)",effectValShift<0>,constVal<0x00ff>}}, - {0x15, {DIV_CMD_ES5506_FILTER_K1, "15xx: Set filter coefficient K1 high byte (00 to FF)",effectValShift<8>,constVal<0xff00>}}, - {0x16, {DIV_CMD_ES5506_FILTER_K2, "16xx: Set filter coefficient K2 low byte (00 to FF)",effectValShift<0>,constVal<0x00ff>}}, - {0x17, {DIV_CMD_ES5506_FILTER_K2, "17xx: Set filter coefficient K2 high byte (00 to FF)",effectValShift<8>,constVal<0xff00>}}, - {0x18, {DIV_CMD_ES5506_FILTER_K1_SLIDE, "18xx: Set filter coefficient K1 slide up (00 to FF)",effectVal,constVal<0>}}, - {0x19, {DIV_CMD_ES5506_FILTER_K1_SLIDE, "19xx: Set filter coefficient K1 slide down (00 to FF)",effectVal,constVal<1>}}, - {0x1a, {DIV_CMD_ES5506_FILTER_K2_SLIDE, "1Axx: Set filter coefficient K2 slide up (00 to FF)",effectVal,constVal<0>}}, - {0x1b, {DIV_CMD_ES5506_FILTER_K2_SLIDE, "1Bxx: Set filter coefficient K2 slide down (00 to FF)",effectVal,constVal<1>}}, - {0x22, {DIV_CMD_ES5506_ENVELOPE_LVRAMP, "22xx: Set envelope left volume ramp (signed) (00 to FF)",effectVal}}, - {0x23, {DIV_CMD_ES5506_ENVELOPE_RVRAMP, "23xx: Set envelope right volume ramp (signed) (00 to FF)",effectVal}}, - {0x24, {DIV_CMD_ES5506_ENVELOPE_K1RAMP, "24xx: Set envelope filter coefficient k1 ramp (signed) (00 to FF)",effectVal,constVal<0>}}, - {0x25, {DIV_CMD_ES5506_ENVELOPE_K1RAMP, "25xx: Set envelope filter coefficient k1 ramp (signed, slower) (00 to FF)",effectVal,constVal<1>}}, - {0x26, {DIV_CMD_ES5506_ENVELOPE_K2RAMP, "26xx: Set envelope filter coefficient k2 ramp (signed) (00 to FF)",effectVal,constVal<0>}}, - {0x27, {DIV_CMD_ES5506_ENVELOPE_K2RAMP, "27xx: Set envelope filter coefficient k2 ramp (signed, slower) (00 to FF)",effectVal,constVal<1>}}, - {0xdf, {DIV_CMD_SAMPLE_DIR, "DFxx: Set sample playback direction (0: normal; 1: reverse)"}} + {0x11, {DIV_CMD_ES5506_FILTER_MODE, _("11xx: Set filter mode (00 to 03)"),effectValAnd<3>}}, + {0x14, {DIV_CMD_ES5506_FILTER_K1, _("14xx: Set filter coefficient K1 low byte (00 to FF)"),effectValShift<0>,constVal<0x00ff>}}, + {0x15, {DIV_CMD_ES5506_FILTER_K1, _("15xx: Set filter coefficient K1 high byte (00 to FF)"),effectValShift<8>,constVal<0xff00>}}, + {0x16, {DIV_CMD_ES5506_FILTER_K2, _("16xx: Set filter coefficient K2 low byte (00 to FF)"),effectValShift<0>,constVal<0x00ff>}}, + {0x17, {DIV_CMD_ES5506_FILTER_K2, _("17xx: Set filter coefficient K2 high byte (00 to FF)"),effectValShift<8>,constVal<0xff00>}}, + {0x18, {DIV_CMD_ES5506_FILTER_K1_SLIDE, _("18xx: Set filter coefficient K1 slide up (00 to FF)"),effectVal,constVal<0>}}, + {0x19, {DIV_CMD_ES5506_FILTER_K1_SLIDE, _("19xx: Set filter coefficient K1 slide down (00 to FF)"),effectVal,constVal<1>}}, + {0x1a, {DIV_CMD_ES5506_FILTER_K2_SLIDE, _("1Axx: Set filter coefficient K2 slide up (00 to FF)"),effectVal,constVal<0>}}, + {0x1b, {DIV_CMD_ES5506_FILTER_K2_SLIDE, _("1Bxx: Set filter coefficient K2 slide down (00 to FF)"),effectVal,constVal<1>}}, + {0x22, {DIV_CMD_ES5506_ENVELOPE_LVRAMP, _("22xx: Set envelope left volume ramp (signed) (00 to FF)"),effectVal}}, + {0x23, {DIV_CMD_ES5506_ENVELOPE_RVRAMP, _("23xx: Set envelope right volume ramp (signed) (00 to FF)"),effectVal}}, + {0x24, {DIV_CMD_ES5506_ENVELOPE_K1RAMP, _("24xx: Set envelope filter coefficient k1 ramp (signed) (00 to FF)"),effectVal,constVal<0>}}, + {0x25, {DIV_CMD_ES5506_ENVELOPE_K1RAMP, _("25xx: Set envelope filter coefficient k1 ramp (signed, slower) (00 to FF)"),effectVal,constVal<1>}}, + {0x26, {DIV_CMD_ES5506_ENVELOPE_K2RAMP, _("26xx: Set envelope filter coefficient k2 ramp (signed) (00 to FF)"),effectVal,constVal<0>}}, + {0x27, {DIV_CMD_ES5506_ENVELOPE_K2RAMP, _("27xx: Set envelope filter coefficient k2 ramp (signed, slower) (00 to FF)"),effectVal,constVal<1>}}, + {0xdf, {DIV_CMD_SAMPLE_DIR, _("DFxx: Set sample playback direction (0: normal; 1: reverse)")}} }; EffectHandlerMap es5506PostEffectHandlerMap={ - {0x12, {DIV_CMD_ES5506_PAUSE, "120x: Set pause (bit 0)",effectValAnd<1>}} + {0x12, {DIV_CMD_ES5506_PAUSE, _("120x: Set pause (bit 0)"),effectValAnd<1>}} }; - const EffectHandler es5506ECountHandler(DIV_CMD_ES5506_ENVELOPE_COUNT, "2xxx: Set envelope count (000 to 1FF)", effectValLong<9>); - const EffectHandler es5506K1Handler(DIV_CMD_ES5506_FILTER_K1, "3xxx: Set filter coefficient K1 (000 to FFF)", effectValLongShift<12,4>,constVal<0xfff0>); - const EffectHandler es5506K2Handler(DIV_CMD_ES5506_FILTER_K2, "4xxx: Set filter coefficient K2 (000 to FFF)", effectValLongShift<12,4>,constVal<0xfff0>); + const EffectHandler es5506ECountHandler(DIV_CMD_ES5506_ENVELOPE_COUNT, _("2xxx: Set envelope count (000 to 1FF)"), effectValLong<9>); + const EffectHandler es5506K1Handler(DIV_CMD_ES5506_FILTER_K1, _("3xxx: Set filter coefficient K1 (000 to FFF)"), effectValLongShift<12,4>,constVal<0xfff0>); + const EffectHandler es5506K2Handler(DIV_CMD_ES5506_FILTER_K2, _("4xxx: Set filter coefficient K2 (000 to FFF)"), effectValLongShift<12,4>,constVal<0xfff0>); for (int i=0; i<2; i++) es5506PreEffectHandlerMap.emplace(0x20+i,es5506ECountHandler); for (int i=0; i<16; i++) es5506PreEffectHandlerMap.emplace(0x30+i, es5506K1Handler); for (int i=0; i<16; i++) es5506PreEffectHandlerMap.emplace(0x40+i, es5506K2Handler); // TODO: custom sample format sysDefs[DIV_SYSTEM_ES5506]=new DivSysDef( - "Ensoniq ES5506", NULL, 0xb1, 0, 32, false, true, 0/*0x171*/, false, (1U<, effectVal}}, - {0x16, {DIV_CMD_SU_SWEEP_PERIOD_HIGH, "16xx: Set frequency sweep period high byte", constVal<0>, effectVal}}, - {0x17, {DIV_CMD_SU_SWEEP_PERIOD_LOW, "17xx: Set volume sweep period low byte", constVal<1>, effectVal}}, - {0x18, {DIV_CMD_SU_SWEEP_PERIOD_HIGH, "18xx: Set volume sweep period high byte", constVal<1>, effectVal}}, - {0x19, {DIV_CMD_SU_SWEEP_PERIOD_LOW, "19xx: Set cutoff sweep period low byte", constVal<2>, effectVal}}, - {0x1a, {DIV_CMD_SU_SWEEP_PERIOD_HIGH, "1Axx: Set cutoff sweep period high byte", constVal<2>, effectVal}}, - {0x1b, {DIV_CMD_SU_SWEEP_BOUND, "1Bxx: Set frequency sweep boundary", constVal<0>, effectVal}}, - {0x1c, {DIV_CMD_SU_SWEEP_BOUND, "1Cxx: Set volume sweep boundary", constVal<1>, effectVal}}, - {0x1d, {DIV_CMD_SU_SWEEP_BOUND, "1Dxx: Set cutoff sweep boundary", constVal<2>, effectVal}}, - {0x1e, {DIV_CMD_SU_SYNC_PERIOD_LOW, "1Exx: Set phase reset period low byte"}}, - {0x1f, {DIV_CMD_SU_SYNC_PERIOD_HIGH, "1Fxx: Set phase reset period high byte"}}, - {0x20, {DIV_CMD_SU_SWEEP_ENABLE, "20xx: Toggle frequency sweep (bit 0-6: speed; bit 7: direction is up)", constVal<0>, effectVal}}, - {0x21, {DIV_CMD_SU_SWEEP_ENABLE, "21xx: Toggle volume sweep (bit 0-4: speed; bit 5: direction is up; bit 6: loop; bit 7: alternate)", constVal<1>, effectVal}}, - {0x22, {DIV_CMD_SU_SWEEP_ENABLE, "22xx: Toggle cutoff sweep (bit 0-6: speed; bit 7: direction is up)", constVal<2>, effectVal}}, + {0x10, {DIV_CMD_WAVE, _("10xx: Set waveform (0 to 7)")}}, + {0x12, {DIV_CMD_STD_NOISE_MODE, _("12xx: Set pulse width (0 to 7F)")}}, + {0x13, {DIV_CMD_C64_RESONANCE, _("13xx: Set resonance (0 to FF)")}}, + {0x14, {DIV_CMD_C64_FILTER_MODE, _("14xx: Set filter mode (bit 0: ring mod; bit 1: low pass; bit 2: high pass; bit 3: band pass)")}}, + {0x15, {DIV_CMD_SU_SWEEP_PERIOD_LOW, _("15xx: Set frequency sweep period low byte"), constVal<0>, effectVal}}, + {0x16, {DIV_CMD_SU_SWEEP_PERIOD_HIGH, _("16xx: Set frequency sweep period high byte"), constVal<0>, effectVal}}, + {0x17, {DIV_CMD_SU_SWEEP_PERIOD_LOW, _("17xx: Set volume sweep period low byte"), constVal<1>, effectVal}}, + {0x18, {DIV_CMD_SU_SWEEP_PERIOD_HIGH, _("18xx: Set volume sweep period high byte"), constVal<1>, effectVal}}, + {0x19, {DIV_CMD_SU_SWEEP_PERIOD_LOW, _("19xx: Set cutoff sweep period low byte"), constVal<2>, effectVal}}, + {0x1a, {DIV_CMD_SU_SWEEP_PERIOD_HIGH, _("1Axx: Set cutoff sweep period high byte"), constVal<2>, effectVal}}, + {0x1b, {DIV_CMD_SU_SWEEP_BOUND, _("1Bxx: Set frequency sweep boundary"), constVal<0>, effectVal}}, + {0x1c, {DIV_CMD_SU_SWEEP_BOUND, _("1Cxx: Set volume sweep boundary"), constVal<1>, effectVal}}, + {0x1d, {DIV_CMD_SU_SWEEP_BOUND, _("1Dxx: Set cutoff sweep boundary"), constVal<2>, effectVal}}, + {0x1e, {DIV_CMD_SU_SYNC_PERIOD_LOW, _("1Exx: Set phase reset period low byte")}}, + {0x1f, {DIV_CMD_SU_SYNC_PERIOD_HIGH, _("1Fxx: Set phase reset period high byte")}}, + {0x20, {DIV_CMD_SU_SWEEP_ENABLE, _("20xx: Toggle frequency sweep (bit 0-6: speed; bit 7: direction is up)"), constVal<0>, effectVal}}, + {0x21, {DIV_CMD_SU_SWEEP_ENABLE, _("21xx: Toggle volume sweep (bit 0-4: speed; bit 5: direction is up; bit 6: loop; bit 7: alternate)"), constVal<1>, effectVal}}, + {0x22, {DIV_CMD_SU_SWEEP_ENABLE, _("22xx: Toggle cutoff sweep (bit 0-6: speed; bit 7: direction is up)"), constVal<2>, effectVal}}, }; - const EffectHandler suCutoffHandler(DIV_CMD_C64_FINE_CUTOFF, "4xxx: Set cutoff (0 to FFF)", effectValLong<12>); + const EffectHandler suCutoffHandler(DIV_CMD_C64_FINE_CUTOFF, _("4xxx: Set cutoff (0 to FFF)"), effectValLong<12>); for (int i=0; i<16; i++) { suEffectHandlerMap.emplace(0x40+i, suCutoffHandler); } sysDefs[DIV_SYSTEM_SOUND_UNIT]=new DivSysDef( - "tildearrow Sound Unit", NULL, 0xb5, 0, 8, false, true, 0, false, 1U<, effectVal}}, - {0x21, {DIV_CMD_POWERNOISE_COUNTER_LOAD, "21xx: Load high byte of noise channel LFSR (00 to FF)", constVal<1>, effectVal}}, - {0x22, {DIV_CMD_POWERNOISE_IO_WRITE, "22xx: Write to I/O port A", constVal<0>, effectVal}}, - {0x23, {DIV_CMD_POWERNOISE_IO_WRITE, "23xx: Write to I/O port B", constVal<1>, effectVal}}, + {0x20, {DIV_CMD_POWERNOISE_COUNTER_LOAD, _("20xx: Load low byte of noise channel LFSR (00 to FF) or slope channel accumulator (00 to 7F)"), constVal<0>, effectVal}}, + {0x21, {DIV_CMD_POWERNOISE_COUNTER_LOAD, _("21xx: Load high byte of noise channel LFSR (00 to FF)"), constVal<1>, effectVal}}, + {0x22, {DIV_CMD_POWERNOISE_IO_WRITE, _("22xx: Write to I/O port A"), constVal<0>, effectVal}}, + {0x23, {DIV_CMD_POWERNOISE_IO_WRITE, _("23xx: Write to I/O port B"), constVal<1>, effectVal}}, }, {} ); sysDefs[DIV_SYSTEM_DAVE]=new DivSysDef( - "Dave", NULL, 0xd5, 0, 6, false, true, 0, false, 1U<,effectVal}}, - {0x14, {DIV_CMD_NES_SWEEP, "14xy: Sweep down (x: time; y: shift)",constVal<1>,effectVal}}, - {0x15, {DIV_CMD_NES_ENV_MODE, "15xx: Set envelope mode (0: envelope, 1: length, 2: looping, 3: constant)"}}, - {0x16, {DIV_CMD_NES_LENGTH, "16xx: Set length counter (refer to manual for a list of values)"}}, - {0x17, {DIV_CMD_NES_COUNT_MODE, "17xx: Set frame counter mode (0: 4-step, 1: 5-step)"}}, - {0x18, {DIV_CMD_SAMPLE_MODE, "18xx: Select PCM/DPCM mode (0: PCM; 1: DPCM)"}}, - {0x19, {DIV_CMD_NES_LINEAR_LENGTH, "19xx: Set triangle linear counter (0 to 7F; 80 and higher halt)"}}, - {0x20, {DIV_CMD_SAMPLE_FREQ, "20xx: Set DPCM frequency (0 to F)"}} + {0x11, {DIV_CMD_NES_DMC, _("11xx: Write to delta modulation counter (0 to 7F)")}}, + {0x12, {DIV_CMD_STD_NOISE_MODE, _("12xx: Set duty cycle/noise mode/waveform (pulse/wave: 0 to 3; noise: 0 or 1)")}}, + {0x13, {DIV_CMD_NES_SWEEP, _("13xy: Sweep up (x: time; y: shift)"),constVal<0>,effectVal}}, + {0x14, {DIV_CMD_NES_SWEEP, _("14xy: Sweep down (x: time; y: shift)"),constVal<1>,effectVal}}, + {0x15, {DIV_CMD_NES_ENV_MODE, _("15xx: Set envelope mode (0: envelope, 1: length, 2: looping, 3: constant)")}}, + {0x16, {DIV_CMD_NES_LENGTH, _("16xx: Set length counter (refer to manual for a list of values)")}}, + {0x17, {DIV_CMD_NES_COUNT_MODE, _("17xx: Set frame counter mode (0: 4-step, 1: 5-step)")}}, + {0x18, {DIV_CMD_SAMPLE_MODE, _("18xx: Select PCM/DPCM mode (0: PCM; 1: DPCM)")}}, + {0x19, {DIV_CMD_NES_LINEAR_LENGTH, _("19xx: Set triangle linear counter (0 to 7F; 80 and higher halt)")}}, + {0x20, {DIV_CMD_SAMPLE_FREQ, _("20xx: Set DPCM frequency (0 to F)")}} } ); sysDefs[DIV_SYSTEM_BIFURCATOR]=new DivSysDef( - "Bifurcator", NULL, 0xd9, 0, 4, false, true, 0, false, 0, 0, 0, - "a fantasy sound chip using logistic map iterations to generate sound.", - {"Channel 1", "Channel 2", "Channel 3", "Channel 4"}, + _("Bifurcator"), NULL, 0xd9, 0, 4, false, true, 0, false, 0, 0, 0, + _("a fantasy sound chip using logistic map iterations to generate sound."), + {_("Channel 1"), _("Channel 2"), _("Channel 3"), _("Channel 4")}, {"CH1", "CH2", "CH3", "CH4"}, {DIV_CH_NOISE, DIV_CH_NOISE, DIV_CH_NOISE, DIV_CH_NOISE}, {DIV_INS_BIFURCATOR, DIV_INS_BIFURCATOR, DIV_INS_BIFURCATOR, DIV_INS_BIFURCATOR}, {}, { - {0x10, {DIV_CMD_BIFURCATOR_STATE_LOAD, "10xx: Load low byte of channel sample state", constVal<0>, effectVal}}, - {0x11, {DIV_CMD_BIFURCATOR_STATE_LOAD, "11xx: Load high byte of channel sample state", constVal<1>, effectVal}}, - {0x12, {DIV_CMD_BIFURCATOR_PARAMETER, "12xx: Set low byte of channel parameter", constVal<0>, effectVal}}, - {0x13, {DIV_CMD_BIFURCATOR_PARAMETER, "13xx: Set high byte of channel parameter", constVal<1>, effectVal}}, + {0x10, {DIV_CMD_BIFURCATOR_STATE_LOAD, _("10xx: Load low byte of channel sample state"), constVal<0>, effectVal}}, + {0x11, {DIV_CMD_BIFURCATOR_STATE_LOAD, _("11xx: Load high byte of channel sample state"), constVal<1>, effectVal}}, + {0x12, {DIV_CMD_BIFURCATOR_PARAMETER, _("12xx: Set low byte of channel parameter"), constVal<0>, effectVal}}, + {0x13, {DIV_CMD_BIFURCATOR_PARAMETER, _("13xx: Set high byte of channel parameter"), constVal<1>, effectVal}}, } ); sysDefs[DIV_SYSTEM_SID2]=new DivSysDef( - "SID2", NULL, 0xf0, 0, 3, false, true, 0, false, 0, 0, 0, - "a fantasy sound chip created by LTVA. it is similar to the SID chip, but with many of its problems fixed.", - {"Channel 1", "Channel 2", "Channel 3"}, + _("SID2"), NULL, 0xf0, 0, 3, false, true, 0, false, 0, 0, 0, + _("a fantasy sound chip created by LTVA. it is similar to the SID chip, but with many of its problems fixed."), + {_("Channel 1"), _("Channel 2"), _("Channel 3")}, {"CH1", "CH2", "CH3"}, {DIV_CH_NOISE, DIV_CH_NOISE, DIV_CH_NOISE}, {DIV_INS_SID2, DIV_INS_SID2, DIV_INS_SID2}, @@ -2145,9 +2145,9 @@ void DivEngine::registerSystems() { ); sysDefs[DIV_SYSTEM_DUMMY]=new DivSysDef( - "Dummy System", NULL, 0xfd, 0, 8, false, true, 0, false, 0, 0, 0, - "this is a system designed for testing purposes.", - {"Channel 1", "Channel 2", "Channel 3", "Channel 4", "Channel 5", "Channel 6", "Channel 7", "Channel 8"}, + _("Dummy System"), NULL, 0xfd, 0, 8, false, true, 0, false, 0, 0, 0, + _("this is a system designed for testing purposes."), + {_("Channel 1"), _("Channel 2"), _("Channel 3"), _("Channel 4"), _("Channel 5"), _("Channel 6"), _("Channel 7"), _("Channel 8")}, {"CH1", "CH2", "CH3", "CH4", "CH5", "CH6", "CH7", "CH8"}, {DIV_CH_NOISE, DIV_CH_NOISE, DIV_CH_NOISE, DIV_CH_NOISE, DIV_CH_NOISE, DIV_CH_NOISE, DIV_CH_NOISE, DIV_CH_NOISE}, {DIV_INS_STD, DIV_INS_STD, DIV_INS_STD, DIV_INS_STD, DIV_INS_STD, DIV_INS_STD, DIV_INS_STD, DIV_INS_STD} diff --git a/src/gui/about.cpp b/src/gui/about.cpp index bf24eff4c..a187e9d77 100644 --- a/src/gui/about.cpp +++ b/src/gui/about.cpp @@ -23,25 +23,25 @@ const char* aboutLine[]={ "tildearrow", - "is proud to present", + _N("is proud to present"), "", ("Furnace " DIV_VERSION), "", - "the biggest multi-system chiptune tracker!", - "featuring DefleMask song compatibility.", + _N("the biggest multi-system chiptune tracker!"), + _N("featuring DefleMask song compatibility."), "", - "> CREDITS <", + _N("> CREDITS <"), "", - "-- program --", + _N("-- program --"), "tildearrow", - "A M 4 N (intro tune)", + _N("A M 4 N (intro tune)"), "akumanatt", "cam900", "djtuBIG-MaliceX", "Eknous", "Kagamiin~", "laoo", - "LTVA1", + "LTVA", "MooingLemur", "OPNA2608", "scratchminer", @@ -49,14 +49,14 @@ const char* aboutLine[]={ "System64", "techmetx11", "", - "-- graphics/UI design --", + _N("-- graphics/UI design --"), "tildearrow", "BlastBrothers", "Electric Keet", "Mahbod Karamoozian", "Raijin", "", - "-- documentation --", + _N("-- documentation --"), "brickblock369", "cam900", "DeMOSic", @@ -66,7 +66,19 @@ const char* aboutLine[]={ "Lunathir", "tildearrow", "", - "-- demo songs --", + _N("-- localization/translation team --"), + "Español: CrimsonZN, ThaCuber, tildearrow", + "Հայերեն: Eknous", + "한국어: Heemin, leejh20", + "Nederlands: Lunathir", + "Polski: freq-mod, PoznańskiSzybkowiec", + "Português (Brasil): Kagamiin~", + "Русский: Background2982, LTVA", + "Slovenčina: Mr. Hassium", + "Svenska: RevvoBolt", + "ไทย: akumanatt", + "", + _N("-- demo songs --"), "0x5066", "Abstract 64", "Aburtos", @@ -121,7 +133,7 @@ const char* aboutLine[]={ "Laggy", "leejh20", "LovelyA72", - "LTVA1", + "LTVA", "LunaMoth", "Lunathir", "LVintageNerd", @@ -192,7 +204,7 @@ const char* aboutLine[]={ "Zaxolotl", "ZoomTen (Zumi)", "", - "-- additional feedback/fixes --", + _N("-- additional feedback/fixes --"), "Electric Keet", "fd", "GENATARi", @@ -203,106 +215,117 @@ const char* aboutLine[]={ "plane", "TheEssem", "", - "-- Metal backend test team --", + _N("-- Metal backend test team --"), "Diggo", "konard", "NaxeCode", "scratchminer", "", - "powered by:", - "Dear ImGui by Omar Cornut", - "SDL2 by Sam Lantinga", + _N("-- DirectX 9 backend test team --"), + "EpicTyphlosion", + "Lunathir", + "Mr. Hassium", + "wbcbz7", + "Yuzu4K", + "", + _N("powered by:"), + _N("Dear ImGui by Omar Cornut"), + _N("SDL2 by Sam Lantinga"), #ifdef HAVE_FREETYPE "FreeType", #endif - "zlib by Jean-loup Gailly", - "and Mark Adler", - "libsndfile by Erik de Castro Lopo", - "Portable File Dialogs by Sam Hocevar", - "Native File Dialog by Frogtoss Games", + _N("zlib by Jean-loup Gailly"), + _N("and Mark Adler"), + _N("libsndfile by Erik de Castro Lopo"), + _N("Portable File Dialogs by Sam Hocevar"), + _N("Native File Dialog by Frogtoss Games"), "PortAudio", - "Weak-JACK by x42", - "RtMidi by Gary P. Scavone", - "FFTW by Matteo Frigo and Steven G. Johnson", - "backward-cpp by Google", - "adpcm by superctr", - "adpcm-xq by David Bryant", - "Nuked-OPL3/OPLL/OPM/OPN2/PSG by nukeykt", - "YM3812-LLE, YMF262-LLE, YMF276-LLE and YM2608-LLE by nukeykt", - "ESFMu (modified version) by Kagamiin~", - "ymfm by Aaron Giles", - "emu2413 by Digital Sound Antiques", - "MAME SN76496 by Nicola Salmoria", - "MAME AY-3-8910 by Couriersud", - "with AY8930 fixes by Eulous, cam900 and Grauw", - "MAME SAA1099 by Juergen Buchmueller and Manuel Abadia", - "MAME Namco WSG by Nicola Salmoria and Aaron Giles", - "MAME RF5C68 core by Olivier Galibert and Aaron Giles", - "MAME MSM5232 core by Jarek Burczynski and Hiromitsu Shioya", - "MAME MSM6258 core by Barry Rodewald", - "MAME YMZ280B core by Aaron Giles", - "MAME GA20 core by Acho A. Tang and R. Belmont", - "MAME SegaPCM core by Hiromitsu Shioya and Olivier Galibert", - "SAASound by Dave Hooper and Simon Owen", - "SameBoy by Lior Halphon", - "Mednafen PCE, WonderSwan, T6W28 and Virtual Boy audio cores", - "SNES DSP core by Blargg", - "puNES (NES, MMC5 and FDS) by FHorse", - "NSFPlay (NES and FDS) by Brad Smith and Brezza", - "reSID by Dag Lem", - "reSIDfp by Dag Lem, Antti Lankila", - "and Leandro Nini", - "dSID by DefleMask Team based on jsSID", - "Stella by Stella Team", - "QSound emulator by superctr and Valley Bell", - "VICE VIC-20 sound core by Rami Rasanen and viznut", - "VICE TED sound core by Andreas Boose, Tibor Biczo", - "and Marco van den Heuvel", - "VERA sound core by Frank van den Hoef", - "mzpokeysnd POKEY emulator by Michael Borisov", - "ASAP POKEY emulator by Piotr Fusik", - "ported by laoo to C++", - "vgsound_emu (second version, modified version) by cam900", - "SM8521 emulator (modified version) by cam900", - "D65010G031 emulator (modified version) by cam900", - "Namco C140/C219 emulator (modified version) by cam900", - "PowerNoise emulator by scratchminer", - "ep128emu by Istvan Varga", - "NDS sound emulator by cam900", + _N("Weak-JACK by x42"), + _N("RtMidi by Gary P. Scavone"), + _N("FFTW by Matteo Frigo and Steven G. Johnson"), + _N("backward-cpp by Google"), + _N("adpcm by superctr"), + _N("adpcm-xq by David Bryant"), + _N("Nuked-OPL3/OPLL/OPM/OPN2/PSG by nukeykt"), + _N("YM3812-LLE, YMF262-LLE, YMF276-LLE and YM2608-LLE by nukeykt"), + _N("ESFMu (modified version) by Kagamiin~"), + _N("ymfm by Aaron Giles"), + _N("emu2413 by Digital Sound Antiques"), + _N("MAME SN76496 by Nicola Salmoria"), + _N("MAME AY-3-8910 by Couriersud"), + _N("with AY8930 fixes by Eulous, cam900 and Grauw"), + _N("MAME SAA1099 by Juergen Buchmueller and Manuel Abadia"), + _N("MAME Namco WSG by Nicola Salmoria and Aaron Giles"), + _N("MAME RF5C68 core by Olivier Galibert and Aaron Giles"), + _N("MAME MSM5232 core by Jarek Burczynski and Hiromitsu Shioya"), + _N("MAME MSM6258 core by Barry Rodewald"), + _N("MAME YMZ280B core by Aaron Giles"), + _N("MAME GA20 core by Acho A. Tang and R. Belmont"), + _N("MAME SegaPCM core by Hiromitsu Shioya and Olivier Galibert"), + _N("SAASound by Dave Hooper and Simon Owen"), + _N("SameBoy by Lior Halphon"), + _N("Mednafen PCE, WonderSwan, T6W28 and Virtual Boy audio cores"), + _N("SNES DSP core by Blargg"), + _N("puNES (NES, MMC5 and FDS) by FHorse"), + _N("NSFPlay (NES and FDS) by Brad Smith and Brezza"), + _N("reSID by Dag Lem"), + _N("reSIDfp by Dag Lem, Antti Lankila"), + _N("and Leandro Nini"), + _N("dSID by DefleMask Team based on jsSID"), + _N("Stella by Stella Team"), + _N("QSound emulator by superctr and Valley Bell"), + _N("VICE VIC-20 sound core by Rami Rasanen and viznut"), + _N("VICE TED sound core by Andreas Boose, Tibor Biczo"), + _N("and Marco van den Heuvel"), + _N("VERA sound core by Frank van den Hoef"), + _N("mzpokeysnd POKEY emulator by Michael Borisov"), + _N("ASAP POKEY emulator by Piotr Fusik"), + _N("ported by laoo to C++"), + _N("vgsound_emu (second version, modified version) by cam900"), + _N("SM8521 emulator (modified version) by cam900"), + _N("D65010G031 emulator (modified version) by cam900"), + _N("Namco C140/C219 emulator (modified version) by cam900"), + _N("PowerNoise emulator by scratchminer"), + _N("ep128emu by Istvan Varga"), + _N("NDS sound emulator by cam900"), "", - "greetings to:", + _N("greetings to:"), "NEOART Costa Rica", "Xenium Demoparty", - "all members of Deflers of Noice!", + _N("all members of Deflers of Noice!"), "", - "copyright © 2021-2024 tildearrow", - "(and contributors).", - "licensed under GPLv2+! see", - "LICENSE for more information.", + "fuckings to:", + "cream", + "Monsia", "", - "help Furnace grow:", + _N("copyright © 2021-2024 tildearrow"), + _N("(and contributors)."), + _N("licensed under GPLv2+! see"), + _N("LICENSE for more information."), + "", + _N("help Furnace grow:"), "https://github.com/tildearrow/furnace", "", - "contact tildearrow at:", + _N("contact tildearrow at:"), "https://tildearrow.org/?p=contact", "", - "disclaimer:", - "despite the fact this program works", - "with the .dmf file format, it is NOT", - "affiliated with Delek or DefleMask in", - "any way, nor it is a replacement for", - "the original program.", + _N("disclaimer:"), + _N("despite the fact this program works"), + _N("with the .dmf file format, it is NOT"), + _N("affiliated with Delek or DefleMask in"), + _N("any way, nor it is a replacement for"), + _N("the original program."), "", - "it also comes with ABSOLUTELY NO WARRANTY.", + _N("it also comes with ABSOLUTELY NO WARRANTY."), "", - "thanks to all contributors/bug reporters!" + _N("thanks to all contributors/bug reporters!") }; const size_t aboutCount=sizeof(aboutLine)/sizeof(aboutLine[0]); void FurnaceGUI::drawAbout() { // do stuff - if (ImGui::Begin("About Furnace",NULL,ImGuiWindowFlags_Modal|ImGuiWindowFlags_NoMove|ImGuiWindowFlags_NoResize|ImGuiWindowFlags_NoDocking|ImGuiWindowFlags_NoTitleBar)) { + if (ImGui::Begin("About Furnace",NULL,ImGuiWindowFlags_Modal|ImGuiWindowFlags_NoMove|ImGuiWindowFlags_NoResize|ImGuiWindowFlags_NoDocking|ImGuiWindowFlags_NoTitleBar,_("About Furnace"))) { ImGui::SetWindowPos(ImVec2(0,0)); ImGui::SetWindowSize(ImVec2(canvasW,canvasH)); ImGui::PushFont(bigFont); @@ -356,24 +379,26 @@ void FurnaceGUI::drawAbout() { } for (size_t i=0; icanvasH) continue; dl->AddText(bigFont,bigFont->FontSize, ImVec2(posX+dpiScale,posY+dpiScale), - 0xff000000,aboutLine[i]); + 0xff000000,nextLine); dl->AddText(bigFont,bigFont->FontSize, ImVec2(posX+dpiScale,posY-dpiScale), - 0xff000000,aboutLine[i]); + 0xff000000,nextLine); dl->AddText(bigFont,bigFont->FontSize, ImVec2(posX-dpiScale,posY+dpiScale), - 0xff000000,aboutLine[i]); + 0xff000000,nextLine); dl->AddText(bigFont,bigFont->FontSize, ImVec2(posX-dpiScale,posY-dpiScale), - 0xff000000,aboutLine[i]); + 0xff000000,nextLine); dl->AddText(bigFont,bigFont->FontSize, ImVec2(posX,posY), - 0xffffffff,aboutLine[i]); + 0xffffffff,nextLine); } ImGui::PopFont(); @@ -390,7 +415,7 @@ void FurnaceGUI::drawAbout() { if (ImGui::IsKeyPressed(ImGuiKey_Space)) { aboutOpen=false; if (modified) { - showWarning("Unsaved changes! Save changes before playing?",GUI_WARN_CV); + showWarning(_("Unsaved changes! Save changes before playing?"),GUI_WARN_CV); } else { cvOpen=true; cvNotSerious=true; diff --git a/src/gui/chanOsc.cpp b/src/gui/chanOsc.cpp index 111c59b65..892eb122c 100644 --- a/src/gui/chanOsc.cpp +++ b/src/gui/chanOsc.cpp @@ -29,23 +29,23 @@ #define FURNACE_FFT_CUTOFF 0.1 const char* chanOscRefs[]={ - "None (0%)", - "None (50%)", - "None (100%)", + _N("None (0%)"), + _N("None (50%)"), + _N("None (100%)"), - "Frequency", - "Volume", - "Channel", - "Brightness", + _N("Frequency"), + _N("Volume"), + _N("Channel"), + _N("Brightness"), - "Note Trigger" + _N("Note Trigger") }; const char* autoColsTypes[]={ - "Off", - "Mode 1", - "Mode 2", - "Mode 3" + _N("Off"), + _N("Mode 1"), + _N("Mode 2"), + _N("Mode 3") }; static void _drawOsc(const ImDrawList* drawList, const ImDrawCmd* cmd) { @@ -132,7 +132,7 @@ void FurnaceGUI::drawChanOsc() { } if (!chanOscOpen) return; ImGui::SetNextWindowSizeConstraints(ImVec2(64.0f*dpiScale,32.0f*dpiScale),ImVec2(canvasW,canvasH)); - if (ImGui::Begin("Oscilloscope (per-channel)",&chanOscOpen,globalWinFlags)) { + if (ImGui::Begin("Oscilloscope (per-channel)",&chanOscOpen,globalWinFlags,_("Oscilloscope (per-channel)"))) { bool centerSettingReset=false; ImDrawList* dl=ImGui::GetWindowDrawList(); if (chanOscOptions) { @@ -140,7 +140,7 @@ void FurnaceGUI::drawChanOsc() { ImGui::TableNextRow(); ImGui::TableNextColumn(); ImGui::AlignTextToFramePadding(); - ImGui::Text("Columns"); + ImGui::Text(_("Columns")); ImGui::SameLine(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); if (ImGui::InputInt("##COSColumns",&chanOscCols,1,3)) { @@ -149,7 +149,7 @@ void FurnaceGUI::drawChanOsc() { } ImGui::TableNextColumn(); - ImGui::Text("Size (ms)"); + ImGui::Text(_("Size (ms)")); ImGui::SameLine(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); if (ImGui::InputFloat("##COSWinSize",&chanOscWindowSize,1.0f,10.0f)) { @@ -160,7 +160,7 @@ void FurnaceGUI::drawChanOsc() { ImGui::TableNextRow(); ImGui::TableNextColumn(); ImGui::AlignTextToFramePadding(); - ImGui::Text("Automatic columns"); + ImGui::Text(_("Automatic columns")); ImGui::SameLine(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); const char* previewColType=autoColsTypes[chanOscAutoColsType&3]; @@ -174,19 +174,19 @@ void FurnaceGUI::drawChanOsc() { } ImGui::TableNextColumn(); - if (ImGui::Checkbox("Center waveform",&chanOscWaveCorr)) { + if (ImGui::Checkbox(_("Center waveform"),&chanOscWaveCorr)) { centerSettingReset=true; } ImGui::TableNextRow(); ImGui::TableNextColumn(); - if (ImGui::Checkbox("Randomize phase on note",&chanOscRandomPhase)) { + if (ImGui::Checkbox(_("Randomize phase on note"),&chanOscRandomPhase)) { } ImGui::TableNextRow(); ImGui::TableNextColumn(); ImGui::AlignTextToFramePadding(); - ImGui::Text("Amplitude"); + ImGui::Text(_("Amplitude")); ImGui::SameLine(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); if (CWSliderFloat("##COSAmp",&chanOscAmplify,0.0f,2.0f)) { @@ -196,7 +196,7 @@ void FurnaceGUI::drawChanOsc() { ImGui::TableNextColumn(); ImGui::AlignTextToFramePadding(); - ImGui::Text("Line size"); + ImGui::Text(_("Line size")); ImGui::SameLine(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); if (CWSliderFloat("##COSLine",&chanOscLineSize,0.25f,16.0f)) { @@ -208,14 +208,14 @@ void FurnaceGUI::drawChanOsc() { ImGui::EndTable(); } - ImGui::Checkbox("Gradient",&chanOscUseGrad); + ImGui::Checkbox(_("Gradient"),&chanOscUseGrad); if (chanOscUseGrad) { if (chanOscGradTex==NULL) { chanOscGradTex=rend->createTexture(true,chanOscGrad.width,chanOscGrad.height,true,bestTexFormat); if (chanOscGradTex==NULL) { - logE("error while creating gradient texture!"); + logE(_("error while creating gradient texture!")); } else { updateChanOscGradTex=true; } @@ -233,7 +233,7 @@ void FurnaceGUI::drawChanOsc() { if (rend->updateTexture(chanOscGradTex,chanOscGrad.grad.get(),chanOscGrad.width*4)) { updateChanOscGradTex=false; } else { - logE("error while updating gradient texture!"); + logE(_("error while updating gradient texture!")); } } @@ -289,11 +289,11 @@ void FurnaceGUI::drawChanOsc() { i.prevY=i.y; } if (ImGui::BeginPopup("gradPointSettings",ImGuiWindowFlags_NoTitleBar|ImGuiWindowFlags_NoMove|ImGuiWindowFlags_AlwaysAutoResize)) { - if (ImGui::ColorPicker4("Color",(float*)&i.color)) { + if (ImGui::ColorPicker4(_("Color"),(float*)&i.color)) { updateChanOscGradTex=true; } ImGui::AlignTextToFramePadding(); - ImGui::Text("Distance"); + ImGui::Text(_("Distance")); ImGui::SameLine(); float pDist=i.distance*100.0f; if (ImGui::SliderFloat("##PDistance",&pDist,0.0f,150.0f,"%.1f%%")) { @@ -302,7 +302,7 @@ void FurnaceGUI::drawChanOsc() { } ImGui::AlignTextToFramePadding(); - ImGui::Text("Spread"); + ImGui::Text(_("Spread")); ImGui::SameLine(); float pSpread=i.spread*100.0f; if (ImGui::SliderFloat("##PSpread",&pSpread,0.0f,150.0f,"%.1f%%")) { @@ -311,7 +311,7 @@ void FurnaceGUI::drawChanOsc() { } pushDestColor(); - if (ImGui::Button("Remove")) { + if (ImGui::Button(_("Remove"))) { removePoint=index; ImGui::CloseCurrentPopup(); } @@ -335,26 +335,26 @@ void FurnaceGUI::drawChanOsc() { } ImGui::TableNextColumn(); - if (ImGui::ColorEdit4("Background",(float*)&chanOscGrad.bgColor)) { + if (ImGui::ColorEdit4(_("Background"),(float*)&chanOscGrad.bgColor)) { updateChanOscGradTex=true; } - ImGui::Combo("X Axis##AxisX",&chanOscColorX,chanOscRefs,GUI_OSCREF_MAX); - ImGui::Combo("Y Axis##AxisY",&chanOscColorY,chanOscRefs,GUI_OSCREF_MAX); + ImGui::Combo(_("X Axis##AxisX"),&chanOscColorX,LocalizedComboGetter,chanOscRefs,GUI_OSCREF_MAX); + ImGui::Combo(_("Y Axis##AxisY"),&chanOscColorY,LocalizedComboGetter,chanOscRefs,GUI_OSCREF_MAX); ImGui::EndTable(); } } else { ImGui::SetNextItemWidth(400.0f*dpiScale); - ImGui::ColorPicker4("Color",(float*)&chanOscColor); + ImGui::ColorPicker4(_("Color"),(float*)&chanOscColor); } ImGui::AlignTextToFramePadding(); - ImGui::Text("Text format:"); + ImGui::Text(_("Text format:")); ImGui::SameLine(); ImGui::InputText("##TextFormat",&chanOscTextFormat); if (ImGui::IsItemHovered()) { if (ImGui::BeginTooltip()) { - ImGui::TextUnformatted( + ImGui::TextUnformatted(_( "format guide:\n" "- %c: channel name\n" "- %C: channel short name\n" @@ -372,14 +372,14 @@ void FurnaceGUI::drawChanOsc() { "- %b: volume (hex)\n" "- %l: new line\n" "- %%: percent sign" - ); + )); ImGui::EndTooltip(); } } - ImGui::ColorEdit4("Text color",(float*)&chanOscTextColor); + ImGui::ColorEdit4(_("Text color"),(float*)&chanOscTextColor); - if (ImGui::Button("OK")) { + if (ImGui::Button(_("OK"))) { chanOscOptions=false; } } else { @@ -397,7 +397,7 @@ void FurnaceGUI::drawChanOsc() { // check work thread if (chanOscWorkPool==NULL) { - logV("creating chan osc work pool"); + logV(_("creating chan osc work pool")); chanOscWorkPool=new DivWorkPool(settings.chanOscThreads); } @@ -426,18 +426,18 @@ void FurnaceGUI::drawChanOsc() { // check FFT status existence if (!fft_->ready) { - logD("creating FFT plan for channel %d",fft_->relatedCh); + logD(_("creating FFT plan for channel %d"),fft_->relatedCh); fft_->inBuf=(double*)fftw_malloc(FURNACE_FFT_SIZE*sizeof(double)); fft_->outBuf=(fftw_complex*)fftw_malloc(FURNACE_FFT_SIZE*sizeof(fftw_complex)); fft_->corrBuf=(double*)fftw_malloc(FURNACE_FFT_SIZE*sizeof(double)); fft_->plan=fftw_plan_dft_r2c_1d(FURNACE_FFT_SIZE,fft_->inBuf,fft_->outBuf,FFTW_ESTIMATE); fft_->planI=fftw_plan_dft_c2r_1d(FURNACE_FFT_SIZE,fft_->outBuf,fft_->corrBuf,FFTW_ESTIMATE); if (fft_->plan==NULL) { - logE("failed to create plan!"); + logE(_("failed to create plan!")); } else if (fft_->planI==NULL) { - logE("failed to create inverse plan!"); + logE(_("failed to create inverse plan!")); } else if (fft_->inBuf==NULL || fft_->outBuf==NULL || fft_->corrBuf==NULL) { - logE("failed to create FFT buffers"); + logE(_("failed to create FFT buffers")); } else { fft_->ready=true; } @@ -582,7 +582,7 @@ void FurnaceGUI::drawChanOsc() { ChanOscStatus* fft=oscFFTs[i]; int ch=oscChans[i]; if (buf==NULL) { - ImGui::Text("Error!"); + ImGui::Text(_("Error!")); } else { ImVec2 size=ImGui::GetContentRegionAvail(); size.y=availY/rows; diff --git a/src/gui/channels.cpp b/src/gui/channels.cpp index 69ed7385c..bf08d4d2d 100644 --- a/src/gui/channels.cpp +++ b/src/gui/channels.cpp @@ -37,7 +37,7 @@ void FurnaceGUI::drawChannels() { } else { //ImGui::SetNextWindowSizeConstraints(ImVec2(440.0f*dpiScale,400.0f*dpiScale),ImVec2(canvasW,canvasH)); } - if (ImGui::Begin("Channels",&channelsOpen,globalWinFlags)) { + if (ImGui::Begin("Channels",&channelsOpen,globalWinFlags,_("Channels"))) { if (ImGui::BeginTable("ChannelList",5)) { ImGui::TableSetupColumn("c0",ImGuiTableColumnFlags_WidthFixed,0.0); ImGui::TableSetupColumn("c1",ImGuiTableColumnFlags_WidthFixed,0.0); @@ -46,13 +46,13 @@ void FurnaceGUI::drawChannels() { ImGui::TableSetupColumn("c4",ImGuiTableColumnFlags_WidthFixed,48.0f*dpiScale); ImGui::TableNextRow(ImGuiTableRowFlags_Headers); ImGui::TableNextColumn(); - ImGui::Text("Pat"); + ImGui::Text(_("Pat")); ImGui::TableNextColumn(); - ImGui::Text("Osc"); + ImGui::Text(_("Osc")); ImGui::TableNextColumn(); - ImGui::Text("Swap"); + ImGui::Text(_("Swap")); ImGui::TableNextColumn(); - ImGui::Text("Name"); + ImGui::Text(_("Name")); for (int i=0; igetTotalChannelCount(); i++) { ImGui::PushID(i); ImGui::TableNextRow(); @@ -61,14 +61,14 @@ void FurnaceGUI::drawChannels() { MARK_MODIFIED; } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Show in pattern"); + ImGui::SetTooltip(_("Show in pattern")); } ImGui::TableNextColumn(); if (ImGui::Checkbox("##VisibleChanOsc",&e->curSubSong->chanShowChanOsc[i])) { MARK_MODIFIED; } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Show in per-channel oscilloscope"); + ImGui::SetTooltip(_("Show in per-channel oscilloscope")); } ImGui::TableNextColumn(); if (ImGui::Button(ICON_FA_ARROWS)) { @@ -79,7 +79,7 @@ void FurnaceGUI::drawChannels() { ImGui::Button(ICON_FA_ARROWS "##ChanDrag"); ImGui::EndDragDropSource(); } else if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("%s #%d\n(drag to swap channels)",e->getSystemName(e->sysOfChan[i]),e->dispatchChanOfChan[i]); + ImGui::SetTooltip(_("%s #%d\n(drag to swap channels)"),e->getSystemName(e->sysOfChan[i]),e->dispatchChanOfChan[i]); } if (ImGui::BeginDragDropTarget()) { const ImGuiPayload* dragItem=ImGui::AcceptDragDropPayload("FUR_CHAN"); diff --git a/src/gui/clock.cpp b/src/gui/clock.cpp index 2f4a541c6..a52be5b87 100644 --- a/src/gui/clock.cpp +++ b/src/gui/clock.cpp @@ -28,7 +28,7 @@ void FurnaceGUI::drawClock() { nextWindow=GUI_WINDOW_NOTHING; } if (!clockOpen) return; - if (ImGui::Begin("Clock",&clockOpen,globalWinFlags)) { + if (ImGui::Begin("Clock",&clockOpen,globalWinFlags,_("Clock"))) { int row=oldRow; int elapsedBars=e->getElapsedBars(); int elapsedBeats=e->getElapsedBeats(); diff --git a/src/gui/commandPalette.cpp b/src/gui/commandPalette.cpp index 01c26c010..e4cca5bf9 100644 --- a/src/gui/commandPalette.cpp +++ b/src/gui/commandPalette.cpp @@ -48,22 +48,22 @@ void FurnaceGUI::drawPalette() { int width=ImGui::GetContentRegionAvail().x; ImGui::SetNextItemWidth(width); - const char* hint="Search..."; + const char* hint=_("Search..."); switch (curPaletteType) { case CMDPAL_TYPE_RECENT: - hint="Search recent files..."; + hint=_("Search recent files..."); break; case CMDPAL_TYPE_INSTRUMENTS: - hint="Search instruments..."; + hint=_("Search instruments..."); break; case CMDPAL_TYPE_SAMPLES: - hint="Search samples..."; + hint=_("Search samples..."); break; case CMDPAL_TYPE_INSTRUMENT_CHANGE: - hint="Search instruments (to change to)..."; + hint=_("Search instruments (to change to)..."); break; case CMDPAL_TYPE_ADD_CHIP: - hint="Search chip (to add)..."; + hint=_("Search chip (to add)..."); break; } @@ -90,7 +90,7 @@ void FurnaceGUI::drawPalette() { case CMDPAL_TYPE_INSTRUMENTS: case CMDPAL_TYPE_INSTRUMENT_CHANGE: - if (matchFuzzy("- None -",paletteQuery.c_str())) { + if (matchFuzzy(_("- None -"),paletteQuery.c_str())) { paletteSearchResults.push_back(0); } for (int i=0; isong.insLen; i++) { @@ -120,7 +120,7 @@ void FurnaceGUI::drawPalette() { break; default: - logE("invalid command palette type"); + logE(_("invalid command palette type")); ImGui::CloseCurrentPopup(); break; }; @@ -164,7 +164,7 @@ void FurnaceGUI::drawPalette() { case CMDPAL_TYPE_INSTRUMENTS: case CMDPAL_TYPE_INSTRUMENT_CHANGE: if (id==0) { - s="- None -"; + s=_("- None -"); } else { s=fmt::sprintf("%02X: %s", id-1, e->song.ins[id-1]->name.c_str()); } @@ -176,7 +176,7 @@ void FurnaceGUI::drawPalette() { s=getSystemName((DivSystem)id); break; default: - logE("invalid command palette type"); + logE(_("invalid command palette type")); break; }; @@ -196,7 +196,7 @@ void FurnaceGUI::drawPalette() { accepted=ImGui::IsKeyPressed(ImGuiKey_Enter); } - if (ImGui::Button("Cancel") || ImGui::IsKeyPressed(ImGuiKey_Escape)) { + if (ImGui::Button(_("Cancel")) || ImGui::IsKeyPressed(ImGuiKey_Escape)) { ImGui::CloseCurrentPopup(); } @@ -238,7 +238,7 @@ void FurnaceGUI::drawPalette() { } break; default: - logE("invalid command palette type"); + logE(_("invalid command palette type")); break; }; } diff --git a/src/gui/compatFlags.cpp b/src/gui/compatFlags.cpp index 0c2d92a9b..48d36fc91 100644 --- a/src/gui/compatFlags.cpp +++ b/src/gui/compatFlags.cpp @@ -28,325 +28,325 @@ void FurnaceGUI::drawCompatFlags() { nextWindow=GUI_WINDOW_NOTHING; } if (!compatFlagsOpen) return; - if (ImGui::Begin("Compatibility Flags",&compatFlagsOpen,globalWinFlags)) { - ImGui::TextWrapped("these flags are designed to provide better DefleMask/older Furnace compatibility.\nit is recommended to disable most of these unless you rely on specific quirks."); + if (ImGui::Begin("Compatibility Flags",&compatFlagsOpen,globalWinFlags,_("Compatibility Flags"))) { + ImGui::TextWrapped(_("these flags are designed to provide better DefleMask/older Furnace compatibility.\nit is recommended to disable most of these unless you rely on specific quirks.")); if (ImGui::BeginTabBar("settingsTab")) { - if (ImGui::BeginTabItem("DefleMask")) { - ImGui::Checkbox("Limit slide range",&e->song.limitSlides); + if (ImGui::BeginTabItem(_("DefleMask"))) { + ImGui::Checkbox(_("Limit slide range"),&e->song.limitSlides); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("when enabled, slides are limited to a compatible range.\nmay cause problems with slides in negative octaves."); + ImGui::SetTooltip(_("when enabled, slides are limited to a compatible range.\nmay cause problems with slides in negative octaves.")); } - InvCheckbox("Compatible noise layout on NES and PC Engine",&e->song.properNoiseLayout); + InvCheckbox(_("Compatible noise layout on NES and PC Engine"),&e->song.properNoiseLayout); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("use a rather unusual compatible noise frequency layout.\nremoves some noise frequencies on PC Engine."); + ImGui::SetTooltip(_("use a rather unusual compatible noise frequency layout.\nremoves some noise frequencies on PC Engine.")); } - ImGui::Checkbox("Game Boy instrument duty is wave volume",&e->song.waveDutyIsVol); + ImGui::Checkbox(_("Game Boy instrument duty is wave volume"),&e->song.waveDutyIsVol); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("if enabled, an instrument with duty macro in the wave channel will be mapped to wavetable volume."); + ImGui::SetTooltip(_("if enabled, an instrument with duty macro in the wave channel will be mapped to wavetable volume.")); } - ImGui::Checkbox("Restart macro on portamento",&e->song.resetMacroOnPorta); + ImGui::Checkbox(_("Restart macro on portamento"),&e->song.resetMacroOnPorta); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("when enabled, a portamento effect will reset the channel's macro if used in combination with a note."); + ImGui::SetTooltip(_("when enabled, a portamento effect will reset the channel's macro if used in combination with a note.")); } - ImGui::Checkbox("Legacy volume slides",&e->song.legacyVolumeSlides); + ImGui::Checkbox(_("Legacy volume slides"),&e->song.legacyVolumeSlides); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("simulate glitchy volume slide behavior by silently overflowing the volume when the slide goes below 0."); + ImGui::SetTooltip(_("simulate glitchy volume slide behavior by silently overflowing the volume when the slide goes below 0.")); } - ImGui::Checkbox("Compatible arpeggio",&e->song.compatibleArpeggio); + ImGui::Checkbox(_("Compatible arpeggio"),&e->song.compatibleArpeggio); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("delay arpeggio by one tick on every new note."); + ImGui::SetTooltip(_("delay arpeggio by one tick on every new note.")); } - ImGui::Checkbox("Disable DAC when sample ends",&e->song.brokenDACMode); + ImGui::Checkbox(_("Disable DAC when sample ends"),&e->song.brokenDACMode); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("when enabled, the DAC in YM2612 will be disabled if there isn't any sample playing."); + ImGui::SetTooltip(_("when enabled, the DAC in YM2612 will be disabled if there isn't any sample playing.")); } - ImGui::Checkbox("Broken speed alternation",&e->song.brokenSpeedSel); + ImGui::Checkbox(_("Broken speed alternation"),&e->song.brokenSpeedSel); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("determines next speed based on whether the row is odd/even instead of alternating between speeds."); + ImGui::SetTooltip(_("determines next speed based on whether the row is odd/even instead of alternating between speeds.")); } - ImGui::Checkbox("Ignore duplicate slide effects",&e->song.ignoreDuplicateSlides); + ImGui::Checkbox(_("Ignore duplicate slide effects"),&e->song.ignoreDuplicateSlides); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("if this is on, only the first slide of a row in a channel will be considered."); + ImGui::SetTooltip(_("if this is on, only the first slide of a row in a channel will be considered.")); } - ImGui::Checkbox("Ignore 0Dxx on the last order",&e->song.ignoreJumpAtEnd); + ImGui::Checkbox(_("Ignore 0Dxx on the last order"),&e->song.ignoreJumpAtEnd); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("if this is on, a jump to next row effect will not take place when it is on the last order of a song."); + ImGui::SetTooltip(_("if this is on, a jump to next row effect will not take place when it is on the last order of a song.")); } - ImGui::Checkbox("Buggy portamento after pitch slide",&e->song.buggyPortaAfterSlide); + ImGui::Checkbox(_("Buggy portamento after pitch slide"),&e->song.buggyPortaAfterSlide); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("simulates a bug in where portamento does not work after sliding."); + ImGui::SetTooltip(_("simulates a bug in where portamento does not work after sliding.")); } - ImGui::Checkbox("FM pitch slide octave boundary odd behavior",&e->song.fbPortaPause); + ImGui::Checkbox(_("FM pitch slide octave boundary odd behavior"),&e->song.fbPortaPause); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("if this is on, a pitch slide that crosses the octave boundary will stop for one tick and then continue from the nearest octave boundary.\nfor .dmf compatibility."); + ImGui::SetTooltip(_("if this is on, a pitch slide that crosses the octave boundary will stop for one tick and then continue from the nearest octave boundary.\nfor .dmf compatibility.")); } - InvCheckbox("Don't apply Game Boy envelope on note-less instrument change",&e->song.gbInsAffectsEnvelope); + InvCheckbox(_("Don't apply Game Boy envelope on note-less instrument change"),&e->song.gbInsAffectsEnvelope); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("if this is on, an instrument change will not affect the envelope."); + ImGui::SetTooltip(_("if this is on, an instrument change will not affect the envelope.")); } - ImGui::Checkbox("Ignore DAC mode change outside of intended channel in ExtCh mode",&e->song.ignoreDACModeOutsideIntendedChannel); + ImGui::Checkbox(_("Ignore DAC mode change outside of intended channel in ExtCh mode"),&e->song.ignoreDACModeOutsideIntendedChannel); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("if this is on, 17xx has no effect on the operator channels in YM2612."); + ImGui::SetTooltip(_("if this is on, 17xx has no effect on the operator channels in YM2612.")); } - ImGui::Checkbox("E1xy/E2xy also take priority over slide stops",&e->song.e1e2AlsoTakePriority); + ImGui::Checkbox(_("E1xy/E2xy also take priority over slide stops"),&e->song.e1e2AlsoTakePriority); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("does this make any sense by now?"); + ImGui::SetTooltip(_("does this make any sense by now?")); } - ImGui::Checkbox("E1xy/E2xy stop when repeating the same note",&e->song.e1e2StopOnSameNote); + ImGui::Checkbox(_("E1xy/E2xy stop when repeating the same note"),&e->song.e1e2StopOnSameNote); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("ugh, if only this wasn't a thing..."); + ImGui::SetTooltip(_("ugh, if only this wasn't a thing...")); } - ImGui::Checkbox("SN76489 duty macro always resets phase",&e->song.snDutyReset); + ImGui::Checkbox(_("SN76489 duty macro always resets phase"),&e->song.snDutyReset); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("when enabled, duty macro will always reset phase, even if its value hasn't changed."); + ImGui::SetTooltip(_("when enabled, duty macro will always reset phase, even if its value hasn't changed.")); } - InvCheckbox("Broken volume scaling strategy",&e->song.newVolumeScaling); + InvCheckbox(_("Broken volume scaling strategy"),&e->song.newVolumeScaling); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("when enabled:\n- log scaling: multiply\n- linear scaling: subtract\nwhen disabled:\n- log scaling: subtract\n- linear scaling: multiply"); + ImGui::SetTooltip(_("when enabled:\n- log scaling: multiply\n- linear scaling: subtract\nwhen disabled:\n- log scaling: subtract\n- linear scaling: multiply")); } - InvCheckbox("Don't persist volume macro after it finishes",&e->song.volMacroLinger); + InvCheckbox(_("Don't persist volume macro after it finishes"),&e->song.volMacroLinger); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("when enabled, a value in the volume column that happens after the volume macro is done will disregard the macro."); + ImGui::SetTooltip(_("when enabled, a value in the volume column that happens after the volume macro is done will disregard the macro.")); } - ImGui::Checkbox("Broken output volume on instrument change",&e->song.brokenOutVol); + ImGui::Checkbox(_("Broken output volume on instrument change"),&e->song.brokenOutVol); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("if enabled, no checks for the presence of a volume macro will be made.\nthis will cause the last macro value to linger unless a value in the volume column is present."); + ImGui::SetTooltip(_("if enabled, no checks for the presence of a volume macro will be made.\nthis will cause the last macro value to linger unless a value in the volume column is present.")); } - ImGui::Checkbox("Broken output volume - Episode 2 (PLEASE KEEP ME DISABLED)",&e->song.brokenOutVol2); + ImGui::Checkbox(_("Broken output volume - Episode 2 (PLEASE KEEP ME DISABLED)"),&e->song.brokenOutVol2); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("these compatibility flags are getting SO damn ridiculous and out of control.\nas you may have guessed, this one exists due to yet ANOTHER DefleMask-specific behavior.\nplease keep this off at all costs, because I will not support it when ROM export comes.\noh, and don't start an argument out of it. Furnace isn't a DefleMask replacement, and no,\nI am not trying to make it look like one with all these flags.\n\noh, and what about the other flags that don't have to do with DefleMask?\nthose are for .mod import, future FamiTracker import and personal taste!\n\nend of rant"); + ImGui::SetTooltip(_("these compatibility flags are getting SO damn ridiculous and out of control.\nas you may have guessed, this one exists due to yet ANOTHER DefleMask-specific behavior.\nplease keep this off at all costs, because I will not support it when ROM export comes.\noh, and don't start an argument out of it. Furnace isn't a DefleMask replacement, and no,\nI am not trying to make it look like one with all these flags.\n\noh, and what about the other flags that don't have to do with DefleMask?\nthose are for .mod import, future FamiTracker import and personal taste!\n\nend of rant")); } - ImGui::Checkbox("Treat SN76489 periods under 8 as 1",&e->song.snNoLowPeriods); + ImGui::Checkbox(_("Treat SN76489 periods under 8 as 1"),&e->song.snNoLowPeriods); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("when enabled, any SN period under 8 will be written as 1 instead.\nthis replicates DefleMask behavior, but reduces available period range."); + ImGui::SetTooltip(_("when enabled, any SN period under 8 will be written as 1 instead.\nthis replicates DefleMask behavior, but reduces available period range.")); } ImGui::EndTabItem(); } - if (ImGui::BeginTabItem("Old Furnace")) { - ImGui::Checkbox("Arpeggio inhibits non-porta slides",&e->song.arpNonPorta); + if (ImGui::BeginTabItem(_("Old Furnace"))) { + ImGui::Checkbox(_("Arpeggio inhibits non-porta slides"),&e->song.arpNonPorta); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("behavior changed in 0.5.5"); + ImGui::SetTooltip(_("behavior changed in 0.5.5")); } - ImGui::Checkbox("Wack FM algorithm macro",&e->song.algMacroBehavior); + ImGui::Checkbox(_("Wack FM algorithm macro"),&e->song.algMacroBehavior); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("behavior changed in 0.5.5"); + ImGui::SetTooltip(_("behavior changed in 0.5.5")); } - ImGui::Checkbox("Broken shortcut slides (E1xy/E2xy)",&e->song.brokenShortcutSlides); + ImGui::Checkbox(_("Broken shortcut slides (E1xy/E2xy)"),&e->song.brokenShortcutSlides); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("behavior changed in 0.5.7"); + ImGui::SetTooltip(_("behavior changed in 0.5.7")); } - ImGui::Checkbox("Stop portamento on note off",&e->song.stopPortaOnNoteOff); + ImGui::Checkbox(_("Stop portamento on note off"),&e->song.stopPortaOnNoteOff); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("behavior changed in 0.6pre1"); + ImGui::SetTooltip(_("behavior changed in 0.6pre1")); } - InvCheckbox("Don't allow instrument change during slides",&e->song.newInsTriggersInPorta); + InvCheckbox(_("Don't allow instrument change during slides"),&e->song.newInsTriggersInPorta); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("behavior changed in 0.6pre1"); + ImGui::SetTooltip(_("behavior changed in 0.6pre1")); } - InvCheckbox("Don't reset note to base on arpeggio stop",&e->song.arp0Reset); + InvCheckbox(_("Don't reset note to base on arpeggio stop"),&e->song.arp0Reset); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("behavior changed in 0.6pre1"); + ImGui::SetTooltip(_("behavior changed in 0.6pre1")); } - InvCheckbox("ExtCh channel status is not shared among operators",&e->song.sharedExtStat); + InvCheckbox(_("ExtCh channel status is not shared among operators"),&e->song.sharedExtStat); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("behavior changed in 0.6pre1"); + ImGui::SetTooltip(_("behavior changed in 0.6pre1")); } - InvCheckbox("Disable new SegaPCM features (macros and better panning)",&e->song.newSegaPCM); + InvCheckbox(_("Disable new SegaPCM features (macros and better panning)"),&e->song.newSegaPCM); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("behavior changed in 0.6pre1"); + ImGui::SetTooltip(_("behavior changed in 0.6pre1")); } - ImGui::Checkbox("Old FM octave boundary behavior",&e->song.oldOctaveBoundary); + ImGui::Checkbox(_("Old FM octave boundary behavior"),&e->song.oldOctaveBoundary); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("behavior changed in 0.6pre1"); + ImGui::SetTooltip(_("behavior changed in 0.6pre1")); } - ImGui::Checkbox("Disable OPN2 DAC volume control",&e->song.noOPN2Vol); + ImGui::Checkbox(_("Disable OPN2 DAC volume control"),&e->song.noOPN2Vol); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("behavior changed in 0.6pre1"); + ImGui::SetTooltip(_("behavior changed in 0.6pre1")); } - ImGui::Checkbox("Broken initial position of portamento after arpeggio",&e->song.brokenPortaArp); + ImGui::Checkbox(_("Broken initial position of portamento after arpeggio"),&e->song.brokenPortaArp); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("behavior changed in 0.6pre1.5"); + ImGui::SetTooltip(_("behavior changed in 0.6pre1.5")); } - ImGui::Checkbox("Disable new sample features",&e->song.disableSampleMacro); + ImGui::Checkbox(_("Disable new sample features"),&e->song.disableSampleMacro); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("behavior changed in 0.6pre2"); + ImGui::SetTooltip(_("behavior changed in 0.6pre2")); } - ImGui::Checkbox("Old arpeggio macro + pitch slide strategy",&e->song.oldArpStrategy); + ImGui::Checkbox(_("Old arpeggio macro + pitch slide strategy"),&e->song.oldArpStrategy); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("behavior changed in 0.6pre2"); + ImGui::SetTooltip(_("behavior changed in 0.6pre2")); } - ImGui::Checkbox("Broken portamento during legato",&e->song.brokenPortaLegato); + ImGui::Checkbox(_("Broken portamento during legato"),&e->song.brokenPortaLegato); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("behavior changed in 0.6pre4"); + ImGui::SetTooltip(_("behavior changed in 0.6pre4")); } - ImGui::Checkbox("Broken macros in some FM chips after note off",&e->song.brokenFMOff); + ImGui::Checkbox(_("Broken macros in some FM chips after note off"),&e->song.brokenFMOff); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("behavior changed in 0.6pre5"); + ImGui::SetTooltip(_("behavior changed in 0.6pre5")); } - ImGui::Checkbox("Pre-note does not take effects into consideration",&e->song.preNoteNoEffect); + ImGui::Checkbox(_("Pre-note does not take effects into consideration"),&e->song.preNoteNoEffect); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("behavior changed in 0.6pre9"); + ImGui::SetTooltip(_("behavior changed in 0.6pre9")); } - ImGui::Checkbox("Disable new NES DPCM features",&e->song.oldDPCM); + ImGui::Checkbox(_("Disable new NES DPCM features"),&e->song.oldDPCM); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("behavior changed in 0.6.1"); + ImGui::SetTooltip(_("behavior changed in 0.6.1")); } - ImGui::Checkbox("Legacy technical ALWAYS_SET_VOLUME behavior",&e->song.oldAlwaysSetVolume); + ImGui::Checkbox(_("Legacy technical ALWAYS_SET_VOLUME behavior"),&e->song.oldAlwaysSetVolume); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("behavior changed in 0.6.1\nthis flag will be removed if I find out that none of the songs break after disabling it."); + ImGui::SetTooltip(_("behavior changed in 0.6.1\nthis flag will be removed if I find out that none of the songs break after disabling it.")); } - ImGui::Checkbox("Old sample offset effect",&e->song.oldSampleOffset); + ImGui::Checkbox(_("Old sample offset effect"),&e->song.oldSampleOffset); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("behavior changed in 0.6.3"); + ImGui::SetTooltip(_("behavior changed in 0.6.3")); } ImGui::EndTabItem(); } - if (ImGui::BeginTabItem(".mod import")) { - ImGui::Checkbox("Don't slide on the first tick of a row",&e->song.noSlidesOnFirstTick); + if (ImGui::BeginTabItem(_(".mod import"))) { + ImGui::Checkbox(_("Don't slide on the first tick of a row"),&e->song.noSlidesOnFirstTick); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("simulates ProTracker's behavior of not applying volume/pitch slides on the first tick of a row."); + ImGui::SetTooltip(_("simulates ProTracker's behavior of not applying volume/pitch slides on the first tick of a row.")); } - ImGui::Checkbox("Reset arpeggio position on row change",&e->song.rowResetsArpPos); + ImGui::Checkbox(_("Reset arpeggio position on row change"),&e->song.rowResetsArpPos); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("simulates ProTracker's behavior of arpeggio being bound to the current tick of a row."); + ImGui::SetTooltip(_("simulates ProTracker's behavior of arpeggio being bound to the current tick of a row.")); } ImGui::EndTabItem(); } - if (ImGui::BeginTabItem("Pitch/Playback")) { - ImGui::Text("Pitch linearity:"); + if (ImGui::BeginTabItem(_("Pitch/Playback"))) { + ImGui::Text(_("Pitch linearity:")); ImGui::Indent(); - if (ImGui::RadioButton("None",e->song.linearPitch==0)) { + if (ImGui::RadioButton(_("None"),e->song.linearPitch==0)) { e->song.linearPitch=0; } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("like ProTracker/FamiTracker"); + ImGui::SetTooltip(_("like ProTracker/FamiTracker")); } if (e->song.linearPitch==1) { pushWarningColor(true); - if (ImGui::RadioButton("Partial (only 04xy/E5xx)",e->song.linearPitch==1)) { + if (ImGui::RadioButton(_("Partial (only 04xy/E5xx)"),e->song.linearPitch==1)) { e->song.linearPitch=1; } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("like DefleMask\n\nthis pitch linearity mode is deprecated due to:\n- excessive complexity\n- lack of possible optimization\n\nit is recommended to change it now because I will remove this option in the future!"); + ImGui::SetTooltip(_("like DefleMask\n\nthis pitch linearity mode is deprecated due to:\n- excessive complexity\n- lack of possible optimization\n\nit is recommended to change it now because I will remove this option in the future!")); } popWarningColor(); } - if (ImGui::RadioButton("Full",e->song.linearPitch==2)) { + if (ImGui::RadioButton(_("Full"),e->song.linearPitch==2)) { e->song.linearPitch=2; } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("like Impulse Tracker"); + ImGui::SetTooltip(_("like Impulse Tracker")); } ImGui::Unindent(); if (e->song.linearPitch==2) { ImGui::SameLine(); ImGui::SetNextItemWidth(120.0f*dpiScale); - if (ImGui::InputScalar("Pitch slide speed multiplier",ImGuiDataType_U8,&e->song.pitchSlideSpeed,&_ONE,&_ONE)) { + if (ImGui::InputScalar(_("Pitch slide speed multiplier"),ImGuiDataType_U8,&e->song.pitchSlideSpeed,&_ONE,&_ONE)) { if (e->song.pitchSlideSpeed<1) e->song.pitchSlideSpeed=1; if (e->song.pitchSlideSpeed>64) e->song.pitchSlideSpeed=64; } } - ImGui::Text("Loop modality:"); + ImGui::Text(_("Loop modality:")); ImGui::Indent(); - if (ImGui::RadioButton("Reset channels",e->song.loopModality==0)) { + if (ImGui::RadioButton(_("Reset channels"),e->song.loopModality==0)) { e->song.loopModality=0; } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("select to reset channels on loop. may trigger a voltage click on every loop!"); + ImGui::SetTooltip(_("select to reset channels on loop. may trigger a voltage click on every loop!")); } - if (ImGui::RadioButton("Soft reset channels",e->song.loopModality==1)) { + if (ImGui::RadioButton(_("Soft reset channels"),e->song.loopModality==1)) { e->song.loopModality=1; } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("select to turn channels off on loop."); + ImGui::SetTooltip(_("select to turn channels off on loop.")); } - if (ImGui::RadioButton("Do nothing",e->song.loopModality==2)) { + if (ImGui::RadioButton(_("Do nothing"),e->song.loopModality==2)) { e->song.loopModality=2; } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("select to not reset channels on loop."); + ImGui::SetTooltip(_("select to not reset channels on loop.")); } ImGui::Unindent(); - ImGui::Text("Cut/delay effect policy:"); + ImGui::Text(_("Cut/delay effect policy:")); ImGui::Indent(); - if (ImGui::RadioButton("Strict",e->song.delayBehavior==0)) { + if (ImGui::RadioButton(_("Strict"),e->song.delayBehavior==0)) { e->song.delayBehavior=0; } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("only when time is less than speed (like DefleMask/ProTracker)"); + ImGui::SetTooltip(_("only when time is less than speed (like DefleMask/ProTracker)")); } - if (ImGui::RadioButton("Strict (old)",e->song.delayBehavior==1)) { + if (ImGui::RadioButton(_("Strict (old)"),e->song.delayBehavior==1)) { e->song.delayBehavior=1; } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("only when time is less than or equal to speed (original buggy behavior)"); + ImGui::SetTooltip(_("only when time is less than or equal to speed (original buggy behavior)")); } - if (ImGui::RadioButton("Lax",e->song.delayBehavior==2)) { + if (ImGui::RadioButton(_("Lax"),e->song.delayBehavior==2)) { e->song.delayBehavior=2; } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("no checks"); + ImGui::SetTooltip(_("no checks")); } ImGui::Unindent(); - ImGui::Text("Simultaneous jump (0B+0D) treatment:"); + ImGui::Text(_("Simultaneous jump (0B+0D) treatment:")); ImGui::Indent(); - if (ImGui::RadioButton("Normal",e->song.jumpTreatment==0)) { + if (ImGui::RadioButton(_("Normal"),e->song.jumpTreatment==0)) { e->song.jumpTreatment=0; } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("accept 0B+0D to jump to a specific row of an order"); + ImGui::SetTooltip(_("accept 0B+0D to jump to a specific row of an order")); } - if (ImGui::RadioButton("Old Furnace",e->song.jumpTreatment==1)) { + if (ImGui::RadioButton(_("Old Furnace"),e->song.jumpTreatment==1)) { e->song.jumpTreatment=1; } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("only accept the first jump effect"); + ImGui::SetTooltip(_("only accept the first jump effect")); } - if (ImGui::RadioButton("DefleMask",e->song.jumpTreatment==2)) { + if (ImGui::RadioButton(_("DefleMask"),e->song.jumpTreatment==2)) { e->song.jumpTreatment=2; } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("only accept 0Dxx"); + ImGui::SetTooltip(_("only accept 0Dxx")); } ImGui::Unindent(); ImGui::EndTabItem(); } - if (ImGui::BeginTabItem("Other")) { - ImGui::Checkbox("Auto-insert one tick gap between notes",&e->song.oneTickCut); + if (ImGui::BeginTabItem(_("Other"))) { + ImGui::Checkbox(_("Auto-insert one tick gap between notes"),&e->song.oneTickCut); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("when enabled, a one-tick note cut will be inserted between non-legato/non-portamento notes.\nthis simulates the behavior of some Amiga/SNES music engines.\n\nineffective on C64."); + ImGui::SetTooltip(_("when enabled, a one-tick note cut will be inserted between non-legato/non-portamento notes.\nthis simulates the behavior of some Amiga/SNES music engines.\n\nineffective on C64.")); } ImGui::Separator(); - InvCheckbox("Don't reset slides after note off",&e->song.noteOffResetsSlides); + InvCheckbox(_("Don't reset slides after note off"),&e->song.noteOffResetsSlides); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("when enabled, note off will not reset the channel's slide effect."); + ImGui::SetTooltip(_("when enabled, note off will not reset the channel's slide effect.")); } - InvCheckbox("Don't reset portamento after reaching target",&e->song.targetResetsSlides); + InvCheckbox(_("Don't reset portamento after reaching target"),&e->song.targetResetsSlides); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("when enabled, the slide effect will not be disabled after it reaches its target."); + ImGui::SetTooltip(_("when enabled, the slide effect will not be disabled after it reaches its target.")); } - ImGui::Checkbox("Continuous vibrato",&e->song.continuousVibrato); + ImGui::Checkbox(_("Continuous vibrato"),&e->song.continuousVibrato); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("when enabled, vibrato phase/position will not be reset on a new note."); + ImGui::SetTooltip(_("when enabled, vibrato phase/position will not be reset on a new note.")); } - InvCheckbox("Pitch macro is not linear",&e->song.pitchMacroIsLinear); + InvCheckbox(_("Pitch macro is not linear"),&e->song.pitchMacroIsLinear); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("when enabled, the pitch macro of an instrument is in frequency/period space."); + ImGui::SetTooltip(_("when enabled, the pitch macro of an instrument is in frequency/period space.")); } - ImGui::Checkbox("Reset arpeggio effect position on new note",&e->song.resetArpPhaseOnNewNote); + ImGui::Checkbox(_("Reset arpeggio effect position on new note"),&e->song.resetArpPhaseOnNewNote); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("when enabled, arpeggio effect (00xy) position is reset on a new note."); + ImGui::SetTooltip(_("when enabled, arpeggio effect (00xy) position is reset on a new note.")); } - ImGui::Checkbox("Volume scaling rounds up",&e->song.ceilVolumeScaling); + ImGui::Checkbox(_("Volume scaling rounds up"),&e->song.ceilVolumeScaling); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("when enabled, volume macros round up when applied\nthis prevents volume scaling from causing vol=0, which is silent on some chips\n\nineffective on logarithmic channels"); + ImGui::SetTooltip(_("when enabled, volume macros round up when applied\nthis prevents volume scaling from causing vol=0, which is silent on some chips\n\nineffective on logarithmic channels")); } ImGui::EndTabItem(); } diff --git a/src/gui/csPlayer.cpp b/src/gui/csPlayer.cpp index bc43fe99f..6bbae43ce 100644 --- a/src/gui/csPlayer.cpp +++ b/src/gui/csPlayer.cpp @@ -109,18 +109,18 @@ void FurnaceGUI::drawCSPlayer() { nextWindow=GUI_WINDOW_NOTHING; } if (!csPlayerOpen) return; - if (ImGui::Begin("Command Stream Player",&csPlayerOpen,globalWinFlags)) { - if (ImGui::Button("Load")) { + if (ImGui::Begin("Command Stream Player",&csPlayerOpen,globalWinFlags,_("Command Stream Player"))) { + if (ImGui::Button(_("Load"))) { openFileDialog(GUI_FILE_CMDSTREAM_OPEN); } ImGui::SameLine(); - if (ImGui::Button("Kill")) { + if (ImGui::Button(_("Kill"))) { if (!e->killStream()) { - showError("Kikai wa mou shindeiru!"); + showError(_("Kikai wa mou shindeiru!")); } } ImGui::SameLine(); - if (ImGui::Button("Burn Current Song")) { + if (ImGui::Button(_("Burn Current Song"))) { SafeWriter* w=e->saveCommand(); if (w!=NULL) { if (!e->playStream(w->getFinalBuf(),w->size())) { @@ -138,34 +138,34 @@ void FurnaceGUI::drawCSPlayer() { if (cs) { if (ImGui::BeginTabBar("CSOptions")) { int chans=e->getTotalChannelCount(); - if (ImGui::BeginTabItem("Status")) { + if (ImGui::BeginTabItem(_("Status"))) { if (ImGui::BeginTable("CSStat",12,ImGuiTableFlags_SizingFixedSame|ImGuiTableFlags_ScrollX|ImGuiTableFlags_Borders)) { ImGui::TableSetupScrollFreeze(1,1); ImGui::TableNextRow(ImGuiTableRowFlags_Headers); ImGui::TableNextColumn(); - ImGui::Text("channel"); + ImGui::Text(_("channel")); ImGui::TableNextColumn(); - ImGui::Text("start"); + ImGui::Text(_("start")); ImGui::TableNextColumn(); - ImGui::Text("PC"); + ImGui::Text(_("PC")); ImGui::TableNextColumn(); - ImGui::Text("wait"); + ImGui::Text(_("wait")); ImGui::TableNextColumn(); - ImGui::Text("SP"); + ImGui::Text(_("SP")); ImGui::TableNextColumn(); - ImGui::Text("note"); + ImGui::Text(_("note")); ImGui::TableNextColumn(); - ImGui::Text("pitch"); + ImGui::Text(_("pitch")); ImGui::TableNextColumn(); - ImGui::Text("vol"); + ImGui::Text(_("vol")); ImGui::TableNextColumn(); - ImGui::Text("vols"); + ImGui::Text(_("vols")); ImGui::TableNextColumn(); - ImGui::Text("vib"); + ImGui::Text(_("vib")); ImGui::TableNextColumn(); - ImGui::Text("porta"); + ImGui::Text(_("porta")); ImGui::TableNextColumn(); - ImGui::Text("arp"); + ImGui::Text(_("arp")); for (int i=0; igetChanState(i); @@ -200,7 +200,7 @@ void FurnaceGUI::drawCSPlayer() { } ImGui::EndTabItem(); } - if (ImGui::BeginTabItem("Trace")) { + if (ImGui::BeginTabItem(_("Trace"))) { ImGui::PushFont(patFont); if (ImGui::BeginTable("CSTrace",chans,ImGuiTableFlags_SizingFixedSame|ImGuiTableFlags_Borders|ImGuiTableFlags_ScrollX)) { char tempID[32]; @@ -241,10 +241,10 @@ void FurnaceGUI::drawCSPlayer() { ImGui::PopFont(); ImGui::EndTabItem(); } - if (ImGui::BeginTabItem("Disassemble")) { + if (ImGui::BeginTabItem(_("Disassemble"))) { ImGui::EndTabItem(); } - if (ImGui::BeginTabItem("Hex")) { + if (ImGui::BeginTabItem(_("Hex"))) { ImGui::PushFont(patFont); if (ImGui::BeginTable("CSHexPos",chans,ImGuiTableFlags_SizingStretchSame)) { ImGui::TableNextRow(); diff --git a/src/gui/cursor.cpp b/src/gui/cursor.cpp index 80dcd17f8..64f7114b3 100644 --- a/src/gui/cursor.cpp +++ b/src/gui/cursor.cpp @@ -202,7 +202,7 @@ void FurnaceGUI::finishSelection() { selEnd.xFine=2+e->curPat[selEnd.xCoarse].effectCols*2; } - logV("finish selection: %d.%d,%d - %d.%d,%d",selStart.xCoarse,selStart.xFine,selStart.y,selEnd.xCoarse,selEnd.xFine,selEnd.y); + logV(_("finish selection: %d.%d,%d - %d.%d,%d"),selStart.xCoarse,selStart.xFine,selStart.y,selEnd.xCoarse,selEnd.xFine,selEnd.y); e->setMidiBaseChan(cursor.xCoarse); } diff --git a/src/gui/dataList.cpp b/src/gui/dataList.cpp index e86e830e8..bdccea60e 100644 --- a/src/gui/dataList.cpp +++ b/src/gui/dataList.cpp @@ -73,10 +73,10 @@ const char* sampleNote[12]={ void FurnaceGUI::insListItem(int i, int dir, int asset) { ImGui::PushID(i); String name=(settings.insIconsStyle==0)?"":ICON_FA_CIRCLE_O; - const char* insType="Bug!"; + const char* insType=_("Bug!"); if (i>=0 && isong.insLen) { DivInstrument* ins=e->song.ins[i]; - insType=(ins->type>=DIV_INS_MAX)?"Unknown":insTypes[ins->type][0]; + insType=(ins->type>=DIV_INS_MAX)?_("Unknown"):_(insTypes[ins->type][0]); const char** insIcon=NULL; if (ins->type>=DIV_INS_MAX) { @@ -133,19 +133,19 @@ void FurnaceGUI::insListItem(int i, int dir, int asset) { curIns=i; updateFMPreview=true; ImGui::PushStyleColor(ImGuiCol_Text,uiColors[GUI_COLOR_TEXT]); - if (ImGui::MenuItem("duplicate")) { + if (ImGui::MenuItem(_("duplicate"))) { doAction(GUI_ACTION_INS_LIST_DUPLICATE); } - if (ImGui::MenuItem("replace...")) { + if (ImGui::MenuItem(_("replace..."))) { doAction((curIns>=0 && curIns<(int)e->song.ins.size())?GUI_ACTION_INS_LIST_OPEN_REPLACE:GUI_ACTION_INS_LIST_OPEN); } - if (ImGui::MenuItem("save")) { + if (ImGui::MenuItem(_("save"))) { doAction(GUI_ACTION_INS_LIST_SAVE); } - if (ImGui::MenuItem("save (.dmp)")) { + if (ImGui::MenuItem(_("save (.dmp)"))) { doAction(GUI_ACTION_INS_LIST_SAVE_DMP); } - if (ImGui::MenuItem("delete")) { + if (ImGui::MenuItem(_("delete"))) { doAction(GUI_ACTION_INS_LIST_DELETE); } ImGui::PopStyleColor(); @@ -240,7 +240,7 @@ void FurnaceGUI::sampleListItem(int i, int dir, int asset) { ImGui::Text(ICON_FA_EXCLAMATION_TRIANGLE); if (ImGui::IsItemHovered() && !mobileUI) { ImGui::PushStyleColor(ImGuiCol_Text,uiColors[GUI_COLOR_TEXT]); - ImGui::SetTooltip("out of memory for this sample!"); + ImGui::SetTooltip(_("out of memory for this sample!")); ImGui::PopStyleColor(); } ImGui::PopStyleColor(); @@ -251,22 +251,22 @@ void FurnaceGUI::sampleListItem(int i, int dir, int asset) { updateSampleTex=true; lastAssetType=2; ImGui::PushStyleColor(ImGuiCol_Text,uiColors[GUI_COLOR_TEXT]); - if (ImGui::MenuItem("make instrument")) { + if (ImGui::MenuItem(_("make instrument"))) { doAction(GUI_ACTION_SAMPLE_MAKE_INS); } - if (ImGui::MenuItem("make me a drum kit")) { + if (ImGui::MenuItem(_("make me a drum kit"))) { doAction(GUI_ACTION_SAMPLE_LIST_MAKE_MAP); } - if (ImGui::MenuItem("duplicate")) { + if (ImGui::MenuItem(_("duplicate"))) { doAction(GUI_ACTION_SAMPLE_LIST_DUPLICATE); } - if (ImGui::MenuItem("replace...")) { + if (ImGui::MenuItem(_("replace..."))) { doAction((curSample>=0 && curSample<(int)e->song.sample.size())?GUI_ACTION_SAMPLE_LIST_OPEN_REPLACE:GUI_ACTION_SAMPLE_LIST_OPEN); } - if (ImGui::MenuItem("save")) { + if (ImGui::MenuItem(_("save"))) { doAction(GUI_ACTION_SAMPLE_LIST_SAVE); } - if (ImGui::MenuItem("delete")) { + if (ImGui::MenuItem(_("delete"))) { doAction(GUI_ACTION_SAMPLE_LIST_DELETE); } ImGui::PopStyleColor(); @@ -287,7 +287,7 @@ void FurnaceGUI::drawInsList(bool asChild) { if (asChild) { began=ImGui::BeginChild("Instruments"); } else { - began=ImGui::Begin("Instruments",&insListOpen,globalWinFlags); + began=ImGui::Begin("Instruments",&insListOpen,globalWinFlags,_("Instruments")); } if (began) { if (settings.unifiedDataView) settings.horizontalDataView=0; @@ -309,7 +309,7 @@ void FurnaceGUI::drawInsList(bool asChild) { } } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Add"); + ImGui::SetTooltip(_("Add")); } if (ImGui::IsItemClicked(ImGuiMouseButton_Right)) { makeInsTypeList=e->getPossibleInsTypes(); @@ -335,7 +335,7 @@ void FurnaceGUI::drawInsList(bool asChild) { } } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Duplicate"); + ImGui::SetTooltip(_("Duplicate")); } ImGui::SameLine(); if (ImGui::Button(ICON_FA_FOLDER_OPEN "##InsLoad")) { @@ -356,47 +356,47 @@ void FurnaceGUI::drawInsList(bool asChild) { } } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Open"); + ImGui::SetTooltip(_("Open")); } if (ImGui::BeginPopupContextItem("InsOpenOpt")) { if (settings.unifiedDataView) { - if (ImGui::MenuItem("replace instrument...")) { + if (ImGui::MenuItem(_("replace instrument..."))) { doAction((curIns>=0 && curIns<(int)e->song.ins.size())?GUI_ACTION_INS_LIST_OPEN_REPLACE:GUI_ACTION_INS_LIST_OPEN); } - if (ImGui::MenuItem("load instrument from TX81Z")) { + if (ImGui::MenuItem(_("load instrument from TX81Z"))) { doAction(GUI_ACTION_TX81Z_REQUEST); } ImGui::Separator(); - if (ImGui::MenuItem("replace wavetable...")) { + if (ImGui::MenuItem(_("replace wavetable..."))) { doAction((curWave>=0 && curWave<(int)e->song.wave.size())?GUI_ACTION_WAVE_LIST_OPEN_REPLACE:GUI_ACTION_WAVE_LIST_OPEN); } ImGui::Separator(); - if (ImGui::MenuItem("replace sample...")) { + if (ImGui::MenuItem(_("replace sample..."))) { doAction((curSample>=0 && curSample<(int)e->song.sample.size())?GUI_ACTION_SAMPLE_LIST_OPEN_REPLACE:GUI_ACTION_SAMPLE_LIST_OPEN); } - if (ImGui::MenuItem("import raw sample...")) { + if (ImGui::MenuItem(_("import raw sample..."))) { doAction(GUI_ACTION_SAMPLE_LIST_OPEN_RAW); } - if (ImGui::MenuItem("import raw sample (replace)...")) { + if (ImGui::MenuItem(_("import raw sample (replace)..."))) { doAction((curSample>=0 && curSample<(int)e->song.sample.size())?GUI_ACTION_SAMPLE_LIST_OPEN_REPLACE_RAW:GUI_ACTION_SAMPLE_LIST_OPEN_RAW); } } else { - if (ImGui::MenuItem("replace...")) { + if (ImGui::MenuItem(_("replace..."))) { doAction((curIns>=0 && curIns<(int)e->song.ins.size())?GUI_ACTION_INS_LIST_OPEN_REPLACE:GUI_ACTION_INS_LIST_OPEN); } ImGui::Separator(); - if (ImGui::MenuItem("load from TX81Z")) { + if (ImGui::MenuItem(_("load from TX81Z"))) { doAction(GUI_ACTION_TX81Z_REQUEST); } } ImGui::EndPopup(); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Open (insert; right-click to replace)"); + ImGui::SetTooltip(_("Open (insert; right-click to replace)")); } ImGui::SameLine(); if (ImGui::Button(ICON_FA_FLOPPY_O "##InsSave")) { @@ -417,30 +417,30 @@ void FurnaceGUI::drawInsList(bool asChild) { } } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Save"); + ImGui::SetTooltip(_("Save")); } if (ImGui::BeginPopupContextItem("InsSaveFormats",ImGuiMouseButton_Right)) { if (settings.unifiedDataView) { - if (ImGui::MenuItem("save instrument as .dmp...")) { + if (ImGui::MenuItem(_("save instrument as .dmp..."))) { doAction(GUI_ACTION_INS_LIST_SAVE_DMP); } ImGui::Separator(); - if (ImGui::MenuItem("save wavetable as .dmw...")) { + if (ImGui::MenuItem(_("save wavetable as .dmw..."))) { doAction(GUI_ACTION_WAVE_LIST_SAVE_DMW); } - if (ImGui::MenuItem("save raw wavetable...")) { + if (ImGui::MenuItem(_("save raw wavetable..."))) { doAction(GUI_ACTION_WAVE_LIST_SAVE_RAW); } ImGui::Separator(); - if (ImGui::MenuItem("save raw sample...")) { + if (ImGui::MenuItem(_("save raw sample..."))) { doAction(GUI_ACTION_SAMPLE_LIST_SAVE_RAW); } } else { - if (ImGui::MenuItem("save as .dmp...")) { + if (ImGui::MenuItem(_("save as .dmp..."))) { doAction(GUI_ACTION_INS_LIST_SAVE_DMP); } } @@ -453,7 +453,7 @@ void FurnaceGUI::drawInsList(bool asChild) { } popToggleColors(); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Toggle folders/standard view"); + ImGui::SetTooltip(_("Toggle folders/standard view")); } if (!insListDir) { ImGui::SameLine(); @@ -475,7 +475,7 @@ void FurnaceGUI::drawInsList(bool asChild) { } } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Move up"); + ImGui::SetTooltip(_("Move up")); } ImGui::SameLine(); if (ImGui::Button(ICON_FA_ARROW_DOWN "##InsDown")) { @@ -496,7 +496,7 @@ void FurnaceGUI::drawInsList(bool asChild) { } } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Move down"); + ImGui::SetTooltip(_("Move down")); } } else { ImGui::SameLine(); @@ -507,7 +507,7 @@ void FurnaceGUI::drawInsList(bool asChild) { ImGui::InputText("##FolderName",&folderString); ImGui::SameLine(); ImGui::BeginDisabled(folderString.empty()); - if (ImGui::Button("Create")) { + if (ImGui::Button(_("Create"))) { if (settings.unifiedDataView) { switch (lastAssetType) { case 0: @@ -537,7 +537,7 @@ void FurnaceGUI::drawInsList(bool asChild) { ImGui::EndPopup(); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("New folder"); + ImGui::SetTooltip(_("New folder")); } } if (lastAssetType==2) { @@ -546,7 +546,7 @@ void FurnaceGUI::drawInsList(bool asChild) { doAction(GUI_ACTION_SAMPLE_LIST_PREVIEW); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Preview (right click to stop)"); + ImGui::SetTooltip(_("Preview (right click to stop)")); } if (ImGui::IsItemClicked(ImGuiMouseButton_Right)) { doAction(GUI_ACTION_SAMPLE_LIST_STOP_PREVIEW); @@ -573,7 +573,7 @@ void FurnaceGUI::drawInsList(bool asChild) { } popDestColor(); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Delete"); + ImGui::SetTooltip(_("Delete")); } ImGui::Separator(); int availableRows=ImGui::GetContentRegionAvail().y/ImGui::GetFrameHeight(); @@ -590,7 +590,7 @@ void FurnaceGUI::drawInsList(bool asChild) { lastAssetType=0; } ImGui::SameLine(); - ImGui::Text("Instruments"); + ImGui::Text(_("Instruments")); ImGui::Indent(); } @@ -605,16 +605,16 @@ void FurnaceGUI::drawInsList(bool asChild) { int dirIndex=0; int dirToDelete=-1; for (DivAssetDir& i: e->song.insDir) { - String nodeName=fmt::sprintf("%s %s##_ADI%d",i.name.empty()?ICON_FA_FOLDER_O:ICON_FA_FOLDER,i.name.empty()?"":i.name,i.name.empty()?-1:dirIndex); + String nodeName=fmt::sprintf("%s %s##_ADI%d",i.name.empty()?ICON_FA_FOLDER_O:ICON_FA_FOLDER,i.name.empty()?_(""):i.name,i.name.empty()?-1:dirIndex); String popupID=fmt::sprintf("DirRightMenu%d",dirIndex); bool treeNode=ImGui::TreeNodeEx(nodeName.c_str(),ImGuiTreeNodeFlags_SpanAvailWidth|(i.name.empty()?ImGuiTreeNodeFlags_DefaultOpen:0)); DRAG_SOURCE(dirIndex,-1,"FUR_INSDIR"); DRAG_TARGET(dirIndex,-1,e->song.insDir,"FUR_INSDIR"); if (ImGui::BeginPopupContextItem(popupID.c_str())) { - if (ImGui::MenuItem("rename...")) { + if (ImGui::MenuItem(_("rename..."))) { editStr(&i.name); } - if (ImGui::MenuItem("delete")) { + if (ImGui::MenuItem(_("delete"))) { dirToDelete=dirIndex; } ImGui::EndPopup(); @@ -660,7 +660,7 @@ void FurnaceGUI::drawInsList(bool asChild) { lastAssetType=1; } ImGui::SameLine(); - ImGui::Text("Wavetables"); + ImGui::Text(_("Wavetables")); ImGui::Indent(); actualWaveList(); ImGui::Unindent(); @@ -671,7 +671,7 @@ void FurnaceGUI::drawInsList(bool asChild) { lastAssetType=2; } ImGui::SameLine(); - ImGui::Text("Samples"); + ImGui::Text(_("Samples")); ImGui::Indent(); actualSampleList(); ImGui::Unindent(); @@ -704,31 +704,31 @@ void FurnaceGUI::drawWaveList(bool asChild) { if (asChild) { began=ImGui::BeginChild("Wavetables"); } else { - began=ImGui::Begin("Wavetables",&waveListOpen,globalWinFlags); + began=ImGui::Begin("Wavetables",&waveListOpen,globalWinFlags,_("Wavetables")); } if (began) { if (ImGui::Button(ICON_FA_PLUS "##WaveAdd")) { doAction(GUI_ACTION_WAVE_LIST_ADD); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Add"); + ImGui::SetTooltip(_("Add")); } ImGui::SameLine(); if (ImGui::Button(ICON_FA_FILES_O "##WaveClone")) { doAction(GUI_ACTION_WAVE_LIST_DUPLICATE); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Duplicate"); + ImGui::SetTooltip(_("Duplicate")); } ImGui::SameLine(); if (ImGui::Button(ICON_FA_FOLDER_OPEN "##WaveLoad")) { doAction(GUI_ACTION_WAVE_LIST_OPEN); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Open"); + ImGui::SetTooltip(_("Open")); } if (ImGui::BeginPopupContextItem("WaveOpenOpt")) { - if (ImGui::MenuItem("replace...")) { + if (ImGui::MenuItem(_("replace..."))) { doAction((curWave>=0 && curWave<(int)e->song.wave.size())?GUI_ACTION_WAVE_LIST_OPEN_REPLACE:GUI_ACTION_WAVE_LIST_OPEN); } ImGui::EndPopup(); @@ -738,14 +738,14 @@ void FurnaceGUI::drawWaveList(bool asChild) { doAction(GUI_ACTION_WAVE_LIST_SAVE); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Save"); + ImGui::SetTooltip(_("Save")); } if (!settings.unifiedDataView) { if (ImGui::BeginPopupContextItem("WaveSaveFormats",ImGuiMouseButton_Right)) { - if (ImGui::MenuItem("save as .dmw...")) { + if (ImGui::MenuItem(_("save as .dmw..."))) { doAction(GUI_ACTION_WAVE_LIST_SAVE_DMW); } - if (ImGui::MenuItem("save raw...")) { + if (ImGui::MenuItem(_("save raw..."))) { doAction(GUI_ACTION_WAVE_LIST_SAVE_RAW); } ImGui::EndPopup(); @@ -758,7 +758,7 @@ void FurnaceGUI::drawWaveList(bool asChild) { } popToggleColors(); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Toggle folders/standard view"); + ImGui::SetTooltip(_("Toggle folders/standard view")); } if (!waveListDir) { ImGui::SameLine(); @@ -766,14 +766,14 @@ void FurnaceGUI::drawWaveList(bool asChild) { doAction(GUI_ACTION_WAVE_LIST_MOVE_UP); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Move up"); + ImGui::SetTooltip(_("Move up")); } ImGui::SameLine(); if (ImGui::Button(ICON_FA_ARROW_DOWN "##WaveDown")) { doAction(GUI_ACTION_WAVE_LIST_MOVE_DOWN); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Move down"); + ImGui::SetTooltip(_("Move down")); } } else { ImGui::SameLine(); @@ -784,7 +784,7 @@ void FurnaceGUI::drawWaveList(bool asChild) { ImGui::InputText("##FolderName",&folderString); ImGui::SameLine(); ImGui::BeginDisabled(folderString.empty()); - if (ImGui::Button("Create")) { + if (ImGui::Button(_("Create"))) { e->lockEngine([this]() { e->song.waveDir.push_back(DivAssetDir(folderString)); }); @@ -794,7 +794,7 @@ void FurnaceGUI::drawWaveList(bool asChild) { ImGui::EndPopup(); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("New folder"); + ImGui::SetTooltip(_("New folder")); } } ImGui::SameLine(); @@ -804,7 +804,7 @@ void FurnaceGUI::drawWaveList(bool asChild) { } popDestColor(); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Delete"); + ImGui::SetTooltip(_("Delete")); } ImGui::Separator(); if (ImGui::BeginTable("WaveListScroll",1,ImGuiTableFlags_ScrollY)) { @@ -836,42 +836,42 @@ void FurnaceGUI::drawSampleList(bool asChild) { if (asChild) { began=ImGui::BeginChild("Samples"); } else { - began=ImGui::Begin("Samples",&sampleListOpen,globalWinFlags); + began=ImGui::Begin("Samples",&sampleListOpen,globalWinFlags,_("Samples")); } if (began) { if (ImGui::Button(ICON_FA_FILE "##SampleAdd")) { doAction(GUI_ACTION_SAMPLE_LIST_ADD); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Add"); + ImGui::SetTooltip(_("Add")); } ImGui::SameLine(); if (ImGui::Button(ICON_FA_FILES_O "##SampleClone")) { doAction(GUI_ACTION_SAMPLE_LIST_DUPLICATE); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Duplicate"); + ImGui::SetTooltip(_("Duplicate")); } ImGui::SameLine(); if (ImGui::Button(ICON_FA_FOLDER_OPEN "##SampleLoad")) { doAction(GUI_ACTION_SAMPLE_LIST_OPEN); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Open"); + ImGui::SetTooltip(_("Open")); } if (mobileUI && ImGui::IsItemActive() && CHECK_LONG_HOLD) { ImGui::OpenPopup("SampleOpenOpt"); NOTIFY_LONG_HOLD; } if (ImGui::BeginPopupContextItem("SampleOpenOpt")) { - if (ImGui::MenuItem("replace...")) { + if (ImGui::MenuItem(_("replace..."))) { doAction((curSample>=0 && curSample<(int)e->song.sample.size())?GUI_ACTION_SAMPLE_LIST_OPEN_REPLACE:GUI_ACTION_SAMPLE_LIST_OPEN); } ImGui::Separator(); - if (ImGui::MenuItem("import raw...")) { + if (ImGui::MenuItem(_("import raw..."))) { doAction(GUI_ACTION_SAMPLE_LIST_OPEN_RAW); } - if (ImGui::MenuItem("import raw (replace)...")) { + if (ImGui::MenuItem(_("import raw (replace)..."))) { doAction((curSample>=0 && curSample<(int)e->song.sample.size())?GUI_ACTION_SAMPLE_LIST_OPEN_REPLACE_RAW:GUI_ACTION_SAMPLE_LIST_OPEN_RAW); } ImGui::EndPopup(); @@ -881,14 +881,14 @@ void FurnaceGUI::drawSampleList(bool asChild) { doAction(GUI_ACTION_SAMPLE_LIST_SAVE); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Save"); + ImGui::SetTooltip(_("Save")); } if (mobileUI && ImGui::IsItemActive() && CHECK_LONG_HOLD) { ImGui::OpenPopup("SampleSaveOpt"); NOTIFY_LONG_HOLD; } if (ImGui::BeginPopupContextItem("SampleSaveOpt")) { - if (ImGui::MenuItem("save raw...")) { + if (ImGui::MenuItem(_("save raw..."))) { doAction(GUI_ACTION_SAMPLE_LIST_SAVE_RAW); } ImGui::EndPopup(); @@ -900,7 +900,7 @@ void FurnaceGUI::drawSampleList(bool asChild) { } popToggleColors(); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Toggle folders/standard view"); + ImGui::SetTooltip(_("Toggle folders/standard view")); } if (!sampleListDir) { ImGui::SameLine(); @@ -908,14 +908,14 @@ void FurnaceGUI::drawSampleList(bool asChild) { doAction(GUI_ACTION_SAMPLE_LIST_MOVE_UP); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Move up"); + ImGui::SetTooltip(_("Move up")); } ImGui::SameLine(); if (ImGui::Button(ICON_FA_ARROW_DOWN "##SampleDown")) { doAction(GUI_ACTION_SAMPLE_LIST_MOVE_DOWN); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Move down"); + ImGui::SetTooltip(_("Move down")); } } else { ImGui::SameLine(); @@ -926,7 +926,7 @@ void FurnaceGUI::drawSampleList(bool asChild) { ImGui::InputText("##FolderName",&folderString); ImGui::SameLine(); ImGui::BeginDisabled(folderString.empty()); - if (ImGui::Button("Create")) { + if (ImGui::Button(_("Create"))) { e->lockEngine([this]() { e->song.sampleDir.push_back(DivAssetDir(folderString)); }); @@ -936,7 +936,7 @@ void FurnaceGUI::drawSampleList(bool asChild) { ImGui::EndPopup(); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("New folder"); + ImGui::SetTooltip(_("New folder")); } } ImGui::SameLine(); @@ -944,7 +944,7 @@ void FurnaceGUI::drawSampleList(bool asChild) { doAction(GUI_ACTION_SAMPLE_LIST_PREVIEW); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Preview (right click to stop)"); + ImGui::SetTooltip(_("Preview (right click to stop)")); } if (ImGui::IsItemClicked(ImGuiMouseButton_Right)) { doAction(GUI_ACTION_SAMPLE_LIST_STOP_PREVIEW); @@ -956,7 +956,7 @@ void FurnaceGUI::drawSampleList(bool asChild) { } popDestColor(); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Delete"); + ImGui::SetTooltip(_("Delete")); } ImGui::Separator(); if (ImGui::BeginTable("SampleListScroll",1,ImGuiTableFlags_ScrollY)) { @@ -982,16 +982,16 @@ void FurnaceGUI::actualWaveList() { int dirIndex=0; int dirToDelete=-1; for (DivAssetDir& i: e->song.waveDir) { - String nodeName=fmt::sprintf("%s %s##_ADW%d",i.name.empty()?ICON_FA_FOLDER_O:ICON_FA_FOLDER,i.name.empty()?"":i.name,i.name.empty()?-1:dirIndex); + String nodeName=fmt::sprintf("%s %s##_ADW%d",i.name.empty()?ICON_FA_FOLDER_O:ICON_FA_FOLDER,i.name.empty()?_(""):i.name,i.name.empty()?-1:dirIndex); String popupID=fmt::sprintf("DirRightMenu%d",dirIndex); bool treeNode=ImGui::TreeNodeEx(nodeName.c_str(),ImGuiTreeNodeFlags_SpanAvailWidth|(i.name.empty()?ImGuiTreeNodeFlags_DefaultOpen:0)); DRAG_SOURCE(dirIndex,-1,"FUR_WAVEDIR"); DRAG_TARGET(dirIndex,-1,e->song.waveDir,"FUR_WAVEDIR"); if (ImGui::BeginPopupContextItem(popupID.c_str())) { - if (ImGui::MenuItem("rename...")) { + if (ImGui::MenuItem(_("rename..."))) { editStr(&i.name); } - if (ImGui::MenuItem("delete")) { + if (ImGui::MenuItem(_("delete"))) { dirToDelete=dirIndex; } ImGui::EndPopup(); @@ -1028,16 +1028,16 @@ void FurnaceGUI::actualSampleList() { int dirIndex=0; int dirToDelete=-1; for (DivAssetDir& i: e->song.sampleDir) { - String nodeName=fmt::sprintf("%s %s##_ADS%d",i.name.empty()?ICON_FA_FOLDER_O:ICON_FA_FOLDER,i.name.empty()?"":i.name,i.name.empty()?-1:dirIndex); + String nodeName=fmt::sprintf("%s %s##_ADS%d",i.name.empty()?ICON_FA_FOLDER_O:ICON_FA_FOLDER,i.name.empty()?_(""):i.name,i.name.empty()?-1:dirIndex); String popupID=fmt::sprintf("DirRightMenu%d",dirIndex); bool treeNode=ImGui::TreeNodeEx(nodeName.c_str(),ImGuiTreeNodeFlags_SpanAvailWidth|(i.name.empty()?ImGuiTreeNodeFlags_DefaultOpen:0)); DRAG_SOURCE(dirIndex,-1,"FUR_SDIR"); DRAG_TARGET(dirIndex,-1,e->song.sampleDir,"FUR_SDIR"); if (ImGui::BeginPopupContextItem(popupID.c_str())) { - if (ImGui::MenuItem("rename...")) { + if (ImGui::MenuItem(_("rename..."))) { editStr(&i.name); } - if (ImGui::MenuItem("delete")) { + if (ImGui::MenuItem(_("delete"))) { dirToDelete=dirIndex; } ImGui::EndPopup(); diff --git a/src/gui/debugWindow.cpp b/src/gui/debugWindow.cpp index 53b8aa9ae..07c9d6c9b 100644 --- a/src/gui/debugWindow.cpp +++ b/src/gui/debugWindow.cpp @@ -35,6 +35,7 @@ static float oscDebugMin=-1.0; static float oscDebugMax=1.0; static float oscDebugPower=1.0; static int oscDebugRepeat=1; +static int numApples=1; static void _drawOsc(const ImDrawList* drawList, const ImDrawCmd* cmd) { if (cmd!=NULL) { @@ -62,7 +63,7 @@ void FurnaceGUI::drawDebug() { } if (!debugOpen) return; ImGui::SetNextWindowSizeConstraints(ImVec2(100.0f*dpiScale,100.0f*dpiScale),ImVec2(canvasW,canvasH)); - if (ImGui::Begin("Debug",&debugOpen,globalWinFlags|ImGuiWindowFlags_NoDocking)) { + if (ImGui::Begin("Debug",&debugOpen,globalWinFlags|ImGuiWindowFlags_NoDocking,_("Debug"))) { ImGui::Text("NOTE: use with caution."); if (ImGui::TreeNode("Debug Controls")) { if (e->isHalted()) { @@ -658,6 +659,11 @@ void FurnaceGUI::drawDebug() { } ImGui::TreePop(); } + if (ImGui::TreeNode("Locale Test")) { + ImGui::TextUnformatted(_("This is a language test.")); + ImGui::TextUnformatted(_("This is another language test.")); + ImGui::TreePop(); + } if (ImGui::TreeNode("Osc Render Test")) { ImGui::InputInt("Length",&oscDebugLen); ImGui::InputInt("Height",&oscDebugHeight); @@ -708,6 +714,13 @@ void FurnaceGUI::drawDebug() { } ImGui::TreePop(); } +#ifdef HAVE_LOCALE + if (ImGui::TreeNode("Plural Form Test")) { + ImGui::InputInt("Number",&numApples); + ImGui::Text(ngettext("%d apple","%d apples",numApples),numApples); + ImGui::TreePop(); + } +#endif if (ImGui::TreeNode("User Interface")) { if (ImGui::Button("Inspect")) { inspectorOpen=!inspectorOpen; diff --git a/src/gui/doAction.cpp b/src/gui/doAction.cpp index 2820c7355..985fc06ca 100644 --- a/src/gui/doAction.cpp +++ b/src/gui/doAction.cpp @@ -35,21 +35,21 @@ void FurnaceGUI::doAction(int what) { switch (what) { case GUI_ACTION_NEW: if (modified) { - showWarning("Unsaved changes! Save changes before creating a new song?",GUI_WARN_NEW); + showWarning(_("Unsaved changes! Save changes before creating a new song?"),GUI_WARN_NEW); } else { displayNew=true; } break; case GUI_ACTION_OPEN: if (modified) { - showWarning("Unsaved changes! Save changes before opening another file?",GUI_WARN_OPEN); + showWarning(_("Unsaved changes! Save changes before opening another file?"),GUI_WARN_OPEN); } else { openFileDialog(GUI_FILE_OPEN); } break; case GUI_ACTION_OPEN_BACKUP: if (modified) { - showWarning("Unsaved changes! Save changes before opening backup?",GUI_WARN_OPEN_BACKUP); + showWarning(_("Unsaved changes! Save changes before opening backup?"),GUI_WARN_OPEN_BACKUP); } else { openFileDialog(GUI_FILE_OPEN_BACKUP); } @@ -59,7 +59,7 @@ void FurnaceGUI::doAction(int what) { openFileDialog(GUI_FILE_SAVE); } else { if (save(curFileName,e->song.isDMF?e->song.version:0)>0) { - showError(fmt::sprintf("Error while saving file! (%s)",lastError)); + showError(fmt::sprintf(_("Error while saving file! (%s)"),lastError)); } } break; @@ -186,7 +186,7 @@ void FurnaceGUI::doAction(int what) { msg.sysExLen=15; memcpy(msg.sysExData.get(),avRequest,15); if (!e->sendMidiMessage(msg)) { - showError("Error while sending request (MIDI output not configured?)"); + showError(_("Error while sending request (MIDI output not configured?)")); } break; } @@ -194,7 +194,7 @@ void FurnaceGUI::doAction(int what) { e->syncReset(); break; case GUI_ACTION_CLEAR: - showWarning("Select an option: (cannot be undone!)",GUI_WARN_CLEAR); + showWarning(_("Select an option: (cannot be undone!)"),GUI_WARN_CLEAR); break; case GUI_ACTION_COMMAND_PALETTE: displayPalette=true; @@ -688,7 +688,7 @@ void FurnaceGUI::doAction(int what) { } curIns=e->addInstrument(cursor.xCoarse); if (curIns==-1) { - showError("too many instruments!"); + showError(_("too many instruments!")); } else { if (settings.blankIns) { e->song.ins[curIns]->fm.fb=0; @@ -717,7 +717,7 @@ void FurnaceGUI::doAction(int what) { int prevIns=curIns; curIns=e->addInstrument(cursor.xCoarse); if (curIns==-1) { - showError("too many instruments!"); + showError(_("too many instruments!")); } else { (*e->song.ins[curIns])=(*e->song.ins[prevIns]); wantScrollListIns=true; @@ -822,7 +822,7 @@ void FurnaceGUI::doAction(int what) { curWave=e->addWave(); if (curWave==-1) { - showError("too many wavetables!"); + showError(_("too many wavetables!")); } else { wantScrollListWave=true; e->song.wave[curWave]->len=finalWidth; @@ -840,7 +840,7 @@ void FurnaceGUI::doAction(int what) { int prevWave=curWave; curWave=e->addWave(); if (curWave==-1) { - showError("too many wavetables!"); + showError(_("too many wavetables!")); } else { (*e->song.wave[curWave])=(*e->song.wave[prevWave]); wantScrollListWave=true; @@ -906,7 +906,7 @@ void FurnaceGUI::doAction(int what) { case GUI_ACTION_SAMPLE_LIST_ADD: curSample=e->addSample(); if (curSample==-1) { - showError("too many samples!"); + showError(_("too many samples!")); } else { wantScrollListSample=true; MARK_MODIFIED; @@ -918,7 +918,7 @@ void FurnaceGUI::doAction(int what) { DivSample* prevSample=e->getSample(curSample); curSample=e->addSample(); if (curSample==-1) { - showError("too many samples!"); + showError(_("too many samples!")); } else { e->lockEngine([this,prevSample]() { DivSample* sample=e->getSample(curSample); @@ -1121,7 +1121,7 @@ void FurnaceGUI::doAction(int what) { e->lockEngine([this,sample,pos]() { if (!sample->insert(pos,sampleClipboardLen)) { - showError("couldn't paste! make sure your sample is 8 or 16-bit."); + showError(_("couldn't paste! make sure your sample is 8 or 16-bit.")); } else { if (sample->depth==DIV_SAMPLE_DEPTH_8BIT) { for (size_t i=0; isong.sample[curSample]; curIns=e->addInstrument(cursor.xCoarse); if (curIns==-1) { - showError("too many instruments!"); + showError(_("too many instruments!")); } else { e->song.ins[curIns]->type=insType; e->song.ins[curIns]->name=sample->name; @@ -1625,13 +1625,13 @@ void FurnaceGUI::doAction(int what) { DivSample* sample=e->song.sample[curSample]; SAMPLE_OP_BEGIN; if (end-start<1) { - showError("select at least one sample!"); + showError(_("select at least one sample!")); } else if (end-start>256) { - showError("maximum size is 256 samples!"); + showError(_("maximum size is 256 samples!")); } else { curWave=e->addWave(); if (curWave==-1) { - showError("too many wavetables!"); + showError(_("too many wavetables!")); } else { DivWavetable* wave=e->song.wave[curWave]; wave->min=0; diff --git a/src/gui/editControls.cpp b/src/gui/editControls.cpp index 649aeb927..5527f5598 100644 --- a/src/gui/editControls.cpp +++ b/src/gui/editControls.cpp @@ -44,44 +44,44 @@ const float mobileButtonDistances[4][8]={ const char* mobileButtonLabels[32]={ // page 1 - "cut", - "copy", - "paste", - "delete", - "select\nall", - "piano", - "undo", - "redo", + _N("cut"), + _N("copy"), + _N("paste"), + _N("delete"), + _N("select\nall"), + _N("piano"), + _N("undo"), + _N("redo"), // page 2 - "paste\nmix", - "paste\nmix bg", - "paste\nins", - "paste\nins bg", - "paste\nflood", - "paste\noverflow", - "transpose\nnotes", - "transpose\nvalues", + _N("paste\nmix"), + _N("paste\nmix bg"), + _N("paste\nins"), + _N("paste\nins bg"), + _N("paste\nflood"), + _N("paste\noverflow"), + _N("transpose\nnotes"), + _N("transpose\nvalues"), // page 3 - "change\nins", - "find/\nreplace", - "collapse", - "expand", - "flip", - "invert", - "interpolate", - "scale", + _N("change\nins"), + _N("find/\nreplace"), + _N("collapse"), + _N("expand"), + _N("flip"), + _N("invert"), + _N("interpolate"), + _N("scale"), // page 4 - "fade", - "randomize", - "opmask", - "scroll\nmode", - "input\nlatch", - "set\nlatch", - "clear\nlatch", - "clear" + _N("fade"), + _N("randomize"), + _N("opmask"), + _N("scroll\nmode"), + _N("input\nlatch"), + _N("set\nlatch"), + _N("clear\nlatch"), + _N("clear") }; const int mobileButtonActions[32]={ @@ -293,7 +293,7 @@ void FurnaceGUI::drawMobileControls() { (mobileEditButtonPos.x*canvasW)+cos(buttonDir*2.0*M_PI)*buttonDist*buttonMirrorX*anim, (mobileEditButtonPos.y*canvasH)+sin(buttonDir*2.0*M_PI)*buttonDist*buttonMirrorY*anim )); - if (ImGui::Button(mobileButtonLabels[i+mobileEditPage*8],mobileEditButtonSize)) { + if (ImGui::Button(_(mobileButtonLabels[i+mobileEditPage*8]),mobileEditButtonSize)) { if (mobileButtonActions[i+mobileEditPage*8]) { doAction(mobileButtonActions[i+mobileEditPage*8]); } @@ -330,7 +330,7 @@ void FurnaceGUI::drawMobileControls() { ImGui::SetNextWindowPos(portrait?ImVec2(0.0f,((1.0-mobileMenuPos*0.65)*canvasH)-(0.16*canvasW)):ImVec2(0.5*canvasW*mobileMenuPos,0.0f)); ImGui::SetNextWindowSize(portrait?ImVec2(canvasW,0.16*canvasW):ImVec2(0.16*canvasH,canvasH)); - if (ImGui::Begin("Mobile Controls",NULL,ImGuiWindowFlags_NoScrollbar|ImGuiWindowFlags_NoScrollWithMouse|globalWinFlags)) { + if (ImGui::Begin("Mobile Controls",NULL,ImGuiWindowFlags_NoScrollbar|ImGuiWindowFlags_NoScrollWithMouse|globalWinFlags,_("Mobile Controls"))) { float avail=portrait?ImGui::GetContentRegionAvail().y:ImGui::GetContentRegionAvail().x; ImVec2 buttonSize=ImVec2(avail,avail); const char* mobButtonName=ICON_FA_CHEVRON_RIGHT "##MobileMenu"; @@ -405,7 +405,7 @@ void FurnaceGUI::drawMobileControls() { ImGui::SetNextWindowPos(portrait?ImVec2(0.0f,((1.0-mobileMenuPos*0.65)*canvasH)):ImVec2(0.5*canvasW*(mobileMenuPos-1.0),0.0f)); ImGui::SetNextWindowSize(portrait?ImVec2(canvasW,0.65*canvasH):ImVec2(0.5*canvasW,canvasH)); - if (ImGui::Begin("Mobile Menu",NULL,ImGuiWindowFlags_NoScrollbar|ImGuiWindowFlags_NoScrollWithMouse|globalWinFlags)) { + if (ImGui::Begin("Mobile Menu",NULL,ImGuiWindowFlags_NoScrollbar|ImGuiWindowFlags_NoScrollWithMouse|globalWinFlags,_("Mobile Menu"))) { if (ImGui::BeginTable("SceneSel",5)) { ImGui::TableSetupColumn("c0",ImGuiTableColumnFlags_WidthStretch,1.0f); ImGui::TableSetupColumn("c1",ImGuiTableColumnFlags_WidthStretch,1.0f); @@ -418,44 +418,44 @@ void FurnaceGUI::drawMobileControls() { ImVec2 buttonSize=ImGui::GetContentRegionAvail(); buttonSize.y=30.0f*dpiScale; - if (ImGui::Button("Pattern",buttonSize)) { + if (ImGui::Button(_("Pattern"),buttonSize)) { mobScene=GUI_SCENE_PATTERN; } ImGui::TableNextColumn(); - if (ImGui::Button("Orders",buttonSize)) { + if (ImGui::Button(_("Orders"),buttonSize)) { mobScene=GUI_SCENE_ORDERS; } ImGui::TableNextColumn(); - if (ImGui::Button("Ins",buttonSize)) { + if (ImGui::Button(_("Ins"),buttonSize)) { mobScene=GUI_SCENE_INSTRUMENT; } ImGui::TableNextColumn(); - if (ImGui::Button("Wave",buttonSize)) { + if (ImGui::Button(_("Wave"),buttonSize)) { mobScene=GUI_SCENE_WAVETABLE; } ImGui::TableNextColumn(); - if (ImGui::Button("Sample",buttonSize)) { + if (ImGui::Button(_("Sample"),buttonSize)) { mobScene=GUI_SCENE_SAMPLE; } ImGui::TableNextRow(); ImGui::TableNextColumn(); - if (ImGui::Button("Song",buttonSize)) { + if (ImGui::Button(_("Song"),buttonSize)) { mobScene=GUI_SCENE_SONG; } ImGui::TableNextColumn(); - if (ImGui::Button("Channels",buttonSize)) { + if (ImGui::Button(_("Channels"),buttonSize)) { mobScene=GUI_SCENE_CHANNELS; } ImGui::TableNextColumn(); - if (ImGui::Button("Chips",buttonSize)) { + if (ImGui::Button(_("Chips"),buttonSize)) { mobScene=GUI_SCENE_CHIPS; } ImGui::TableNextColumn(); - if (ImGui::Button("Mixer",buttonSize)) { + if (ImGui::Button(_("Mixer"),buttonSize)) { mobScene=GUI_SCENE_MIXER; } ImGui::TableNextColumn(); - if (ImGui::Button("Other",buttonSize)) { + if (ImGui::Button(_("Other"),buttonSize)) { mobScene=GUI_SCENE_OTHER; } ImGui::EndTable(); @@ -484,36 +484,36 @@ void FurnaceGUI::drawMobileControls() { } break; case GUI_SCENE_SONG: { - if (ImGui::Button("New")) { + if (ImGui::Button(_("New"))) { mobileMenuOpen=false; //doAction(GUI_ACTION_NEW); if (modified) { - showWarning("Unsaved changes! Save changes before creating a new song?",GUI_WARN_NEW); + showWarning(_("Unsaved changes! Save changes before creating a new song?"),GUI_WARN_NEW); } else { displayNew=true; } } ImGui::SameLine(); - if (ImGui::Button("Open")) { + if (ImGui::Button(_("Open"))) { mobileMenuOpen=false; doAction(GUI_ACTION_OPEN); } ImGui::SameLine(); - if (ImGui::Button("Save")) { + if (ImGui::Button(_("Save"))) { mobileMenuOpen=false; doAction(GUI_ACTION_SAVE); } ImGui::SameLine(); - if (ImGui::Button("Save as...")) { + if (ImGui::Button(_("Save as..."))) { mobileMenuOpen=false; doAction(GUI_ACTION_SAVE_AS); } - if (ImGui::Button("Export")) { + if (ImGui::Button(_("Export"))) { doAction(GUI_ACTION_EXPORT); } - if (ImGui::Button("Restore Backup")) { + if (ImGui::Button(_("Restore Backup"))) { mobileMenuOpen=false; doAction(GUI_ACTION_OPEN_BACKUP); } @@ -521,15 +521,15 @@ void FurnaceGUI::drawMobileControls() { ImGui::Separator(); if (ImGui::BeginTabBar("MobileSong")) { - if (ImGui::BeginTabItem("Song Info")) { + if (ImGui::BeginTabItem(_("Song Info"))) { drawSongInfo(true); ImGui::EndTabItem(); } - if (ImGui::BeginTabItem("Subsongs")) { + if (ImGui::BeginTabItem(_("Subsongs"))) { drawSubSongs(true); ImGui::EndTabItem(); } - if (ImGui::BeginTabItem("Speed")) { + if (ImGui::BeginTabItem(_("Speed"))) { drawSpeed(true); ImGui::EndTabItem(); } @@ -538,85 +538,85 @@ void FurnaceGUI::drawMobileControls() { break; } case GUI_SCENE_CHANNELS: - ImGui::Text("Channels here..."); + ImGui::Text(_("Channels here...")); break; case GUI_SCENE_CHIPS: - ImGui::Text("Chips here..."); + ImGui::Text(_("Chips here...")); break; case GUI_SCENE_MIXER: - ImGui::Text("What the hell..."); + ImGui::Text(_("What the hell...")); break; case GUI_SCENE_OTHER: { - if (ImGui::Button("Osc")) { + if (ImGui::Button(_("Osc"))) { oscOpen=!oscOpen; } ImGui::SameLine(); - if (ImGui::Button("ChanOsc")) { + if (ImGui::Button(_("ChanOsc"))) { chanOscOpen=!chanOscOpen; } ImGui::SameLine(); - if (ImGui::Button("RegView")) { + if (ImGui::Button(_("RegView"))) { regViewOpen=!regViewOpen; } ImGui::SameLine(); - if (ImGui::Button("Stats")) { + if (ImGui::Button(_("Stats"))) { statsOpen=!statsOpen; } ImGui::SameLine(); - if (ImGui::Button("Grooves")) { + if (ImGui::Button(_("Grooves"))) { groovesOpen=!groovesOpen; } - if (ImGui::Button("Compat Flags")) { + if (ImGui::Button(_("Compat Flags"))) { compatFlagsOpen=!compatFlagsOpen; } ImGui::SameLine(); - if (ImGui::Button("XYOsc")) { + if (ImGui::Button(_("XYOsc"))) { xyOscOpen=!xyOscOpen; } ImGui::SameLine(); - if (ImGui::Button("Meter")) { + if (ImGui::Button(_("Meter"))) { volMeterOpen=!volMeterOpen; } ImGui::SameLine(); - if (ImGui::Button("Memory")) { + if (ImGui::Button(_("Memory"))) { memoryOpen=!memoryOpen; } - if (ImGui::Button("CV")) { + if (ImGui::Button(_("CV"))) { cvOpen=!cvOpen; } ImGui::SameLine(); - if (ImGui::Button("Presets")) { + if (ImGui::Button(_("Presets"))) { userPresetsOpen=!userPresetsOpen; } ImGui::SameLine(); - if (ImGui::Button("PatManager")) { + if (ImGui::Button(_("PatManager"))) { patManagerOpen=!patManagerOpen; } ImGui::Separator(); - ImGui::Button("Panic"); + ImGui::Button(_("Panic")); ImGui::SameLine(); - if (ImGui::Button("Settings")) { + if (ImGui::Button(_("Settings"))) { mobileMenuOpen=false; settingsOpen=true; } ImGui::SameLine(); - if (ImGui::Button("Log")) { + if (ImGui::Button(_("Log"))) { logOpen=!logOpen; } ImGui::SameLine(); - if (ImGui::Button("Debug")) { + if (ImGui::Button(_("Debug"))) { debugOpen=!debugOpen; } ImGui::SameLine(); - if (ImGui::Button("About")) { + if (ImGui::Button(_("About"))) { mobileMenuOpen=false; mobileMenuPos=0.0f; aboutOpen=true; } - if (ImGui::Button("Switch to Desktop Mode")) { + if (ImGui::Button(_("Switch to Desktop Mode"))) { toggleMobileUI(!mobileUI); } @@ -626,16 +626,16 @@ void FurnaceGUI::drawMobileControls() { } if (numAmiga) { - ImGui::Text( + ImGui::Text(_( "this is NOT ROM export! only use for making sure the\n" "Furnace Amiga emulator is working properly by\n" "comparing it with real Amiga output." - ); + )); ImGui::AlignTextToFramePadding(); - ImGui::Text("Directory"); + ImGui::Text(_("Directory")); ImGui::SameLine(); ImGui::InputText("##AVDPath",&workingDirROMExport); - if (ImGui::Button("Bake Data")) { + if (ImGui::Button(_("Bake Data"))) { std::vector out=e->buildROM(DIV_ROM_AMIGA_VALIDATION); if (workingDirROMExport.size()>0) { if (workingDirROMExport[workingDirROMExport.size()-1]!=DIR_SEPARATOR) workingDirROMExport+=DIR_SEPARATOR_STR; @@ -650,7 +650,7 @@ void FurnaceGUI::drawMobileControls() { i.data->finish(); delete i.data; } - showError(fmt::sprintf("Done! Baked %d files.",(int)out.size())); + showError(fmt::sprintf(_("Done! Baked %d files."),(int)out.size())); } } @@ -670,7 +670,7 @@ void FurnaceGUI::drawEditControls() { if (!editControlsOpen) return; switch (settings.controlLayout) { case 0: // classic - if (ImGui::Begin("Play/Edit Controls",&editControlsOpen,globalWinFlags)) { + if (ImGui::Begin("Play/Edit Controls",&editControlsOpen,globalWinFlags,_("Play/Edit Controls"))) { if (ImGui::BeginTable("PlayEditAlign",2)) { ImGui::TableSetupColumn("c0",ImGuiTableColumnFlags_WidthFixed); ImGui::TableSetupColumn("c1",ImGuiTableColumnFlags_WidthStretch); @@ -678,7 +678,7 @@ void FurnaceGUI::drawEditControls() { ImGui::TableNextRow(); ImGui::TableNextColumn(); ImGui::AlignTextToFramePadding(); - ImGui::Text("Octave"); + ImGui::Text(_("Octave")); ImGui::TableNextColumn(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); if (ImGui::InputInt("##Octave",&curOctave,1,1)) { @@ -695,7 +695,7 @@ void FurnaceGUI::drawEditControls() { ImGui::TableNextRow(); ImGui::TableNextColumn(); ImGui::AlignTextToFramePadding(); - if (ImGui::SmallButton(changeCoarse?"Coarse Step":"Edit Step")) { + if (ImGui::SmallButton(changeCoarse?_("Coarse Step"):_("Edit Step"))) { changeCoarse=!changeCoarse; } ImGui::TableNextColumn(); @@ -728,7 +728,7 @@ void FurnaceGUI::drawEditControls() { play(); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Play"); + ImGui::SetTooltip(_("Play")); } popToggleColors(); ImGui::SameLine(); @@ -736,25 +736,25 @@ void FurnaceGUI::drawEditControls() { stop(); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Stop"); + ImGui::SetTooltip(_("Stop")); } ImGui::SameLine(); - ImGui::Checkbox("Edit",&edit); + ImGui::Checkbox(_("Edit"),&edit); ImGui::SameLine(); bool metro=e->getMetronome(); - if (ImGui::Checkbox("Metronome",&metro)) { + if (ImGui::Checkbox(_("Metronome"),&metro)) { e->setMetronome(metro); } ImGui::AlignTextToFramePadding(); - ImGui::Text("Follow"); + ImGui::Text(_("Follow")); ImGui::SameLine(); - unimportant(ImGui::Checkbox("Orders",&followOrders)); + unimportant(ImGui::Checkbox(_("Orders"),&followOrders)); ImGui::SameLine(); - unimportant(ImGui::Checkbox("Pattern",&followPattern)); + unimportant(ImGui::Checkbox(_("Pattern"),&followPattern)); bool repeatPattern=e->getRepeatPattern(); - if (ImGui::Checkbox("Repeat pattern",&repeatPattern)) { + if (ImGui::Checkbox(_("Repeat pattern"),&repeatPattern)) { e->setRepeatPattern(repeatPattern); } ImGui::SameLine(); @@ -763,17 +763,17 @@ void FurnaceGUI::drawEditControls() { pendingStepUpdate=1; } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Step one row"); + ImGui::SetTooltip(_("Step one row")); } ImGui::SameLine(); pushToggleColors(noteInputPoly); - if (ImGui::Button(noteInputPoly?("Poly##PolyInput"):("Mono##PolyInput"))) { + if (ImGui::Button(noteInputPoly?(_("Poly##PolyInput")):(_("Mono##PolyInput")))) { noteInputPoly=!noteInputPoly; e->setAutoNotePoly(noteInputPoly); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Polyphony"); + ImGui::SetTooltip(_("Polyphony")); } popToggleColors(); } @@ -781,12 +781,12 @@ void FurnaceGUI::drawEditControls() { ImGui::End(); break; case 1: // compact - if (ImGui::Begin("Play/Edit Controls",&editControlsOpen,ImGuiWindowFlags_NoScrollbar|ImGuiWindowFlags_NoScrollWithMouse|globalWinFlags)) { + if (ImGui::Begin("Play/Edit Controls",&editControlsOpen,ImGuiWindowFlags_NoScrollbar|ImGuiWindowFlags_NoScrollWithMouse|globalWinFlags,_("Play/Edit Controls"))) { if (ImGui::Button(ICON_FA_STOP "##Stop")) { stop(); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Stop"); + ImGui::SetTooltip(_("Stop")); } ImGui::SameLine(); pushToggleColors(e->isPlaying()); @@ -794,7 +794,7 @@ void FurnaceGUI::drawEditControls() { play(); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Play"); + ImGui::SetTooltip(_("Play")); } popToggleColors(); ImGui::SameLine(); @@ -803,7 +803,7 @@ void FurnaceGUI::drawEditControls() { pendingStepUpdate=1; } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Step one row"); + ImGui::SetTooltip(_("Step one row")); } ImGui::SameLine(); @@ -813,7 +813,7 @@ void FurnaceGUI::drawEditControls() { e->setRepeatPattern(!repeatPattern); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Repeat pattern"); + ImGui::SetTooltip(_("Repeat pattern")); } popToggleColors(); @@ -823,7 +823,7 @@ void FurnaceGUI::drawEditControls() { edit=!edit; } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Edit"); + ImGui::SetTooltip(_("Edit")); } popToggleColors(); @@ -834,12 +834,12 @@ void FurnaceGUI::drawEditControls() { e->setMetronome(!metro); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Metronome"); + ImGui::SetTooltip(_("Metronome")); } popToggleColors(); ImGui::SameLine(); - ImGui::Text("Octave"); + ImGui::Text(_("Octave")); ImGui::SameLine(); ImGui::SetNextItemWidth(96.0f*dpiScale); if (ImGui::InputInt("##Octave",&curOctave,1,1)) { @@ -854,7 +854,7 @@ void FurnaceGUI::drawEditControls() { } ImGui::SameLine(); - if (ImGui::SmallButton(changeCoarse?"Coarse Step":"Edit Step")) { + if (ImGui::SmallButton(changeCoarse?_("Coarse Step"):_("Edit Step"))) { changeCoarse=!changeCoarse; } ImGui::SameLine(); @@ -880,20 +880,20 @@ void FurnaceGUI::drawEditControls() { } ImGui::SameLine(); - ImGui::Text("Follow"); + ImGui::Text(_("Follow")); ImGui::SameLine(); - unimportant(ImGui::Checkbox("Orders",&followOrders)); + unimportant(ImGui::Checkbox(_("Orders"),&followOrders)); ImGui::SameLine(); - unimportant(ImGui::Checkbox("Pattern",&followPattern)); + unimportant(ImGui::Checkbox(_("Pattern"),&followPattern)); ImGui::SameLine(); pushToggleColors(noteInputPoly); - if (ImGui::Button(noteInputPoly?("Poly##PolyInput"):("Mono##PolyInput"))) { + if (ImGui::Button(noteInputPoly?_("Poly##PolyInput"):_("Mono##PolyInput"))) { noteInputPoly=!noteInputPoly; e->setAutoNotePoly(noteInputPoly); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Polyphony"); + ImGui::SetTooltip(_("Polyphony")); } popToggleColors(); } @@ -901,28 +901,28 @@ void FurnaceGUI::drawEditControls() { ImGui::End(); break; case 2: // compact vertical - if (ImGui::Begin("Play/Edit Controls",&editControlsOpen,ImGuiWindowFlags_NoScrollbar|ImGuiWindowFlags_NoScrollWithMouse|globalWinFlags)) { + if (ImGui::Begin("Play/Edit Controls",&editControlsOpen,ImGuiWindowFlags_NoScrollbar|ImGuiWindowFlags_NoScrollWithMouse|globalWinFlags,_("Play/Edit Controls"))) { ImVec2 buttonSize=ImVec2(ImGui::GetContentRegionAvail().x,0.0f); pushToggleColors(e->isPlaying()); if (ImGui::Button(ICON_FA_PLAY "##Play",buttonSize)) { play(); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Play"); + ImGui::SetTooltip(_("Play")); } popToggleColors(); if (ImGui::Button(ICON_FA_STOP "##Stop",buttonSize)) { stop(); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Stop"); + ImGui::SetTooltip(_("Stop")); } if (ImGui::Button(ICON_FA_ARROW_DOWN "##StepOne",buttonSize)) { e->stepOne(cursor.y); pendingStepUpdate=1; } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Step one row"); + ImGui::SetTooltip(_("Step one row")); } bool repeatPattern=e->getRepeatPattern(); @@ -931,7 +931,7 @@ void FurnaceGUI::drawEditControls() { e->setRepeatPattern(!repeatPattern); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Repeat pattern"); + ImGui::SetTooltip(_("Repeat pattern")); } popToggleColors(); @@ -940,7 +940,7 @@ void FurnaceGUI::drawEditControls() { edit=!edit; } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Edit"); + ImGui::SetTooltip(_("Edit")); } popToggleColors(); @@ -950,13 +950,13 @@ void FurnaceGUI::drawEditControls() { e->setMetronome(!metro); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Metronome"); + ImGui::SetTooltip(_("Metronome")); } popToggleColors(); - ImGui::Text("Oct."); + ImGui::Text(_("Oct.")); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Octave"); + ImGui::SetTooltip(_("Octave")); } float avail=ImGui::GetContentRegionAvail().x; ImGui::SetNextItemWidth(avail); @@ -971,7 +971,7 @@ void FurnaceGUI::drawEditControls() { } } - if (ImGui::SmallButton(changeCoarse?"Coarse":"Step")) { + if (ImGui::SmallButton(changeCoarse?_("Coarse"):_("Step"))) { changeCoarse=!changeCoarse; } ImGui::SetNextItemWidth(avail); @@ -995,34 +995,34 @@ void FurnaceGUI::drawEditControls() { } } - ImGui::Text("Foll."); + ImGui::Text(_("Foll.")); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Follow"); + ImGui::SetTooltip(_("Follow")); } pushToggleColors(followOrders); - if (ImGui::Button("Ord##FollowOrders",buttonSize)) { handleUnimportant + if (ImGui::Button(_("Ord##FollowOrders"),buttonSize)) { handleUnimportant followOrders=!followOrders; } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Orders"); + ImGui::SetTooltip(_("Orders")); } popToggleColors(); pushToggleColors(followPattern); - if (ImGui::Button("Pat##FollowPattern",buttonSize)) { handleUnimportant + if (ImGui::Button(_("Pat##FollowPattern"),buttonSize)) { handleUnimportant followPattern=!followPattern; } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Pattern"); + ImGui::SetTooltip(_("Pattern")); } popToggleColors(); pushToggleColors(noteInputPoly); - if (ImGui::Button(noteInputPoly?("Poly##PolyInput"):("Mono##PolyInput"))) { + if (ImGui::Button(noteInputPoly?_("Poly##PolyInput"):_("Mono##PolyInput"))) { noteInputPoly=!noteInputPoly; e->setAutoNotePoly(noteInputPoly); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Polyphony"); + ImGui::SetTooltip(_("Polyphony")); } popToggleColors(); } @@ -1030,14 +1030,14 @@ void FurnaceGUI::drawEditControls() { ImGui::End(); break; case 3: // split - if (ImGui::Begin("Play Controls",&editControlsOpen,ImGuiWindowFlags_NoScrollbar|ImGuiWindowFlags_NoScrollWithMouse|globalWinFlags)) { + if (ImGui::Begin("Play Controls",&editControlsOpen,ImGuiWindowFlags_NoScrollbar|ImGuiWindowFlags_NoScrollWithMouse|globalWinFlags,_("Play Controls"))) { if (e->isPlaying()) { pushToggleColors(true); if (ImGui::Button(ICON_FA_STOP "##Stop")) { stop(); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Stop"); + ImGui::SetTooltip(_("Stop")); } popToggleColors(); } else { @@ -1045,7 +1045,7 @@ void FurnaceGUI::drawEditControls() { play(oldRow); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Play"); + ImGui::SetTooltip(_("Play")); } } ImGui::SameLine(); @@ -1054,7 +1054,7 @@ void FurnaceGUI::drawEditControls() { play(); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Play from the beginning of this pattern"); + ImGui::SetTooltip(_("Play from the beginning of this pattern")); } ImGui::SameLine(); if (ImGui::Button(ICON_FA_STEP_FORWARD "##PlayRepeat")) { @@ -1062,7 +1062,7 @@ void FurnaceGUI::drawEditControls() { play(); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Repeat from the beginning of this pattern"); + ImGui::SetTooltip(_("Repeat from the beginning of this pattern")); } ImGui::SameLine(); if (ImGui::Button(ICON_FA_ARROW_DOWN "##StepOne")) { @@ -1070,7 +1070,7 @@ void FurnaceGUI::drawEditControls() { pendingStepUpdate=1; } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Step one row"); + ImGui::SetTooltip(_("Step one row")); } ImGui::SameLine(); @@ -1079,7 +1079,7 @@ void FurnaceGUI::drawEditControls() { edit=!edit; } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Edit"); + ImGui::SetTooltip(_("Edit")); } popToggleColors(); @@ -1090,7 +1090,7 @@ void FurnaceGUI::drawEditControls() { e->setMetronome(!metro); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Metronome"); + ImGui::SetTooltip(_("Metronome")); } popToggleColors(); @@ -1101,28 +1101,28 @@ void FurnaceGUI::drawEditControls() { e->setRepeatPattern(!repeatPattern); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Repeat pattern"); + ImGui::SetTooltip(_("Repeat pattern")); } popToggleColors(); ImGui::SameLine(); pushToggleColors(noteInputPoly); - if (ImGui::Button(noteInputPoly?("Poly##PolyInput"):("Mono##PolyInput"))) { + if (ImGui::Button(noteInputPoly?_("Poly##PolyInput"):_("Mono##PolyInput"))) { noteInputPoly=!noteInputPoly; e->setAutoNotePoly(noteInputPoly); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Polyphony"); + ImGui::SetTooltip(_("Polyphony")); } popToggleColors(); } if (ImGui::IsWindowFocused(ImGuiFocusedFlags_ChildWindows)) curWindow=GUI_WINDOW_EDIT_CONTROLS; ImGui::End(); - if (ImGui::Begin("Edit Controls",&editControlsOpen,globalWinFlags)) { + if (ImGui::Begin("Edit Controls",&editControlsOpen,globalWinFlags,_("Edit Controls"))) { ImGui::Columns(2); ImGui::AlignTextToFramePadding(); - ImGui::Text("Octave"); + ImGui::Text(_("Octave")); ImGui::SameLine(); float cursor=ImGui::GetCursorPosX(); float avail=ImGui::GetContentRegionAvail().x; @@ -1139,7 +1139,7 @@ void FurnaceGUI::drawEditControls() { } ImGui::AlignTextToFramePadding(); - if (ImGui::SmallButton(changeCoarse?"Coarse":"Step")) { + if (ImGui::SmallButton(changeCoarse?_("Coarse"):_("Step"))) { changeCoarse=!changeCoarse; } ImGui::SameLine(); @@ -1166,8 +1166,8 @@ void FurnaceGUI::drawEditControls() { } ImGui::NextColumn(); - unimportant(ImGui::Checkbox("Follow orders",&followOrders)); - unimportant(ImGui::Checkbox("Follow pattern",&followPattern)); + unimportant(ImGui::Checkbox(_("Follow orders"),&followOrders)); + unimportant(ImGui::Checkbox(_("Follow pattern"),&followPattern)); } if (ImGui::IsWindowFocused(ImGuiFocusedFlags_ChildWindows)) curWindow=GUI_WINDOW_EDIT_CONTROLS; ImGui::End(); diff --git a/src/gui/editing.cpp b/src/gui/editing.cpp index dad5f3efb..1a4449098 100644 --- a/src/gui/editing.cpp +++ b/src/gui/editing.cpp @@ -197,7 +197,7 @@ void FurnaceGUI::makeUndo(ActionType action, UndoRegion region) { auto it=oldPatMap.find(id); if (it==oldPatMap.end()) { - logW("no data in oldPatMap for channel %d!",i); + logW(_("no data in oldPatMap for channel %d!"),i); continue; } else { op=it->second; @@ -661,7 +661,7 @@ void FurnaceGUI::doPasteFurnace(PasteMode mode, int arg, bool readClipboard, Str } if (invalidData) { - logW("invalid clipboard data! failed at line %d char %d",i,charPos); + logW(_("invalid clipboard data! failed at line %d char %d"),i,charPos); logW("%s",line.c_str()); break; } @@ -1200,7 +1200,7 @@ void FurnaceGUI::doPasteMPT(PasteMode mode, int arg, bool readClipboard, String if (invalidData) { - logW("invalid clipboard data! failed at line %d char %d",i,charPos); + logW(_("invalid clipboard data! failed at line %d char %d"),i,charPos); logW("%s",line.c_str()); break; } @@ -1562,7 +1562,7 @@ void FurnaceGUI::doFlip() { void FurnaceGUI::doCollapse(int divider, const SelectionPoint& sStart, const SelectionPoint& sEnd) { if (divider<2) return; if (e->curSubSong->patLencurSubSong->patLencurSubSong->patLen>(256/multiplier)) { - showError("can't expand any further!"); + showError(_("can't expand any further!")); return; } finishSelection(); @@ -1833,7 +1833,7 @@ void FurnaceGUI::doDrag() { // copy and clear String c=doCopy(true,false,dragStart,dragEnd); - logV("copy: %s",c); + logV(_("copy: %s"),c); // replace cursor=selStart; @@ -1848,7 +1848,7 @@ void FurnaceGUI::moveSelected(int x, int y) { // copy and clear String c=doCopy(true,false,selStart,selEnd); - logV("copy: %s",c); + logV(_("copy: %s"),c); // replace selStart.xCoarse+=x; diff --git a/src/gui/effectList.cpp b/src/gui/effectList.cpp index 7f8ecd40c..ac0767645 100644 --- a/src/gui/effectList.cpp +++ b/src/gui/effectList.cpp @@ -11,27 +11,27 @@ void FurnaceGUI::drawEffectList() { } if (!effectListOpen) return; ImGui::SetNextWindowSizeConstraints(ImVec2(60.0f*dpiScale,20.0f*dpiScale),ImVec2(canvasW,canvasH)); - if (ImGui::Begin("Effect List",&effectListOpen,globalWinFlags)) { + if (ImGui::Begin("Effect List",&effectListOpen,globalWinFlags,_("Effect List"))) { float availB=ImGui::GetContentRegionAvail().x-ImGui::GetFrameHeightWithSpacing(); if (availB>0) { ImGui::PushTextWrapPos(availB); - ImGui::TextWrapped("Chip at cursor: %s",e->getSystemName(e->sysOfChan[cursor.xCoarse])); + ImGui::TextWrapped(_("Chip at cursor: %s"),e->getSystemName(e->sysOfChan[cursor.xCoarse])); ImGui::PopTextWrapPos(); } - effectSearch.Draw("Search"); + effectSearch.Draw(_("Search")); ImGui::SameLine(); ImGui::Button(ICON_FA_BARS "##SortEffects"); if (ImGui::BeginPopupContextItem("effectSort",ImGuiPopupFlags_MouseButtonLeft)) { - ImGui::Text("Effect types to show:"); + ImGui::Text(_("Effect types to show:")); for (int i=1; i<10; i++) { ImGui::PushStyleColor(ImGuiCol_Text,uiColors[i+GUI_COLOR_PATTERN_EFFECT_INVALID]); - ImGui::Checkbox(fxColorsNames[i],&effectsShow[i]); + ImGui::Checkbox(_(fxColorsNames[i]),&effectsShow[i]); ImGui::PopStyleColor(); } - if (ImGui::Button("All")) memset(effectsShow,1,sizeof(bool)*10); + if (ImGui::Button(_("All"))) memset(effectsShow,1,sizeof(bool)*10); ImGui::SameLine(); - if (ImGui::Button("None")) memset(effectsShow,0,sizeof(bool)*10); + if (ImGui::Button(_("None"))) memset(effectsShow,0,sizeof(bool)*10); ImGui::EndPopup(); } @@ -42,9 +42,9 @@ void FurnaceGUI::drawEffectList() { ImGui::TableNextRow(ImGuiTableRowFlags_Headers); ImGui::TableNextColumn(); - ImGui::Text("Name"); + ImGui::Text(_("Name")); ImGui::TableNextColumn(); - ImGui::Text("Description"); + ImGui::Text(_("Description")); const char* prevName=NULL; for (int i=0; i<256; i++) { @@ -81,7 +81,7 @@ void FurnaceGUI::drawEffectList() { if (strlen(name)>6) { ImGui::TextWrapped("%s",&name[6]); } else { - ImGui::Text("ERROR"); + ImGui::Text(_("ERROR")); } } } diff --git a/src/gui/exportOptions.cpp b/src/gui/exportOptions.cpp index 47747465b..47710d327 100644 --- a/src/gui/exportOptions.cpp +++ b/src/gui/exportOptions.cpp @@ -26,68 +26,68 @@ void FurnaceGUI::drawExportAudio(bool onWindow) { exitDisabledTimer=1; - ImGui::Text("Export type:"); + ImGui::Text(_("Export type:")); ImGui::Indent(); - if (ImGui::RadioButton("one file",audioExportOptions.mode==DIV_EXPORT_MODE_ONE)) { + if (ImGui::RadioButton(_("one file"),audioExportOptions.mode==DIV_EXPORT_MODE_ONE)) { audioExportOptions.mode=DIV_EXPORT_MODE_ONE; } - if (ImGui::RadioButton("multiple files (one per chip)",audioExportOptions.mode==DIV_EXPORT_MODE_MANY_SYS)) { + if (ImGui::RadioButton(_("multiple files (one per chip)"),audioExportOptions.mode==DIV_EXPORT_MODE_MANY_SYS)) { audioExportOptions.mode=DIV_EXPORT_MODE_MANY_SYS; } - if (ImGui::RadioButton("multiple files (one per channel)",audioExportOptions.mode==DIV_EXPORT_MODE_MANY_CHAN)) { + if (ImGui::RadioButton(_("multiple files (one per channel)"),audioExportOptions.mode==DIV_EXPORT_MODE_MANY_CHAN)) { audioExportOptions.mode=DIV_EXPORT_MODE_MANY_CHAN; } ImGui::Unindent(); if (audioExportOptions.mode!=DIV_EXPORT_MODE_MANY_SYS) { - ImGui::Text("Bit depth:"); + ImGui::Text(_("Bit depth:")); ImGui::Indent(); - if (ImGui::RadioButton("16-bit integer",audioExportOptions.format==DIV_EXPORT_FORMAT_S16)) { + if (ImGui::RadioButton(_("16-bit integer"),audioExportOptions.format==DIV_EXPORT_FORMAT_S16)) { audioExportOptions.format=DIV_EXPORT_FORMAT_S16; } - if (ImGui::RadioButton("32-bit float",audioExportOptions.format==DIV_EXPORT_FORMAT_F32)) { + if (ImGui::RadioButton(_("32-bit float"),audioExportOptions.format==DIV_EXPORT_FORMAT_F32)) { audioExportOptions.format=DIV_EXPORT_FORMAT_F32; } ImGui::Unindent(); } - if (ImGui::InputInt("Sample rate",&audioExportOptions.sampleRate,100,10000)) { + if (ImGui::InputInt(_("Sample rate"),&audioExportOptions.sampleRate,100,10000)) { if (audioExportOptions.sampleRate<8000) audioExportOptions.sampleRate=8000; if (audioExportOptions.sampleRate>384000) audioExportOptions.sampleRate=384000; } if (audioExportOptions.mode!=DIV_EXPORT_MODE_MANY_SYS) { - if (ImGui::InputInt("Channels in file",&audioExportOptions.chans,1,1)) { + if (ImGui::InputInt(_("Channels in file"),&audioExportOptions.chans,1,1)) { if (audioExportOptions.chans<1) audioExportOptions.chans=1; if (audioExportOptions.chans>16) audioExportOptions.chans=16; } } - if (ImGui::InputInt("Loops",&audioExportOptions.loops,1,2)) { + if (ImGui::InputInt(_("Loops"),&audioExportOptions.loops,1,2)) { if (audioExportOptions.loops<0) audioExportOptions.loops=0; } - if (ImGui::InputDouble("Fade out (seconds)",&audioExportOptions.fadeOut,1.0,2.0,"%.1f")) { + if (ImGui::InputDouble(_("Fade out (seconds)"),&audioExportOptions.fadeOut,1.0,2.0,"%.1f")) { if (audioExportOptions.fadeOut<0.0) audioExportOptions.fadeOut=0.0; } bool isOneOn=false; if (audioExportOptions.mode==DIV_EXPORT_MODE_MANY_CHAN) { - ImGui::Text("Channels to export:"); + ImGui::Text(_("Channels to export:")); ImGui::SameLine(); - if (ImGui::SmallButton("All")) { + if (ImGui::SmallButton(_("All"))) { for (int i=0; i>8,vgmExportVersion&0xff).c_str())) { + ImGui::Text(_("settings:")); + if (ImGui::BeginCombo(_("format version"),fmt::sprintf("%d.%.2x",vgmExportVersion>>8,vgmExportVersion&0xff).c_str())) { for (int i=0; i<7; i++) { if (ImGui::Selectable(fmt::sprintf("%d.%.2x",vgmVersions[i]>>8,vgmVersions[i]&0xff).c_str(),vgmExportVersion==vgmVersions[i])) { vgmExportVersion=vgmVersions[i]; @@ -143,17 +143,17 @@ void FurnaceGUI::drawExportVGM(bool onWindow) { } ImGui::EndCombo(); } - ImGui::Checkbox("loop",&vgmExportLoop); + ImGui::Checkbox(_("loop"),&vgmExportLoop); if (vgmExportLoop && e->song.loopModality==2) { - ImGui::Text("loop trail:"); + ImGui::Text(_("loop trail:")); ImGui::Indent(); - if (ImGui::RadioButton("auto-detect",vgmExportTrailingTicks==-1)) { + if (ImGui::RadioButton(_("auto-detect"),vgmExportTrailingTicks==-1)) { vgmExportTrailingTicks=-1; } - if (ImGui::RadioButton("add one loop",vgmExportTrailingTicks==-2)) { + if (ImGui::RadioButton(_("add one loop"),vgmExportTrailingTicks==-2)) { vgmExportTrailingTicks=-2; } - if (ImGui::RadioButton("custom",vgmExportTrailingTicks>=0)) { + if (ImGui::RadioButton(_("custom"),vgmExportTrailingTicks>=0)) { vgmExportTrailingTicks=0; } if (vgmExportTrailingTicks>=0) { @@ -164,9 +164,9 @@ void FurnaceGUI::drawExportVGM(bool onWindow) { } ImGui::Unindent(); } - ImGui::Checkbox("add pattern change hints",&vgmExportPatternHints); + ImGui::Checkbox(_("add pattern change hints"),&vgmExportPatternHints); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip( + ImGui::SetTooltip(_( "inserts data blocks on pattern changes.\n" "useful if you are writing a playback routine.\n\n" @@ -178,17 +178,17 @@ void FurnaceGUI::drawExportVGM(bool onWindow) { "- pp: pattern index (one per channel)\n\n" "pattern indexes are ordered as they appear in the song." - ); + )); } - ImGui::Checkbox("direct stream mode",&vgmExportDirectStream); + ImGui::Checkbox(_("direct stream mode"),&vgmExportDirectStream); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip( + ImGui::SetTooltip(_( "required for DualPCM and MSM6258 export.\n\n" "allows for volume/direction changes when playing samples,\n" "at the cost of a massive increase in file size." - ); + )); } - ImGui::Text("chips to export:"); + ImGui::Text(_("chips to export:")); bool hasOneAtLeast=false; for (int i=0; isong.systemLen; i++) { int minVersion=e->minVGMVersion(e->song.system[i]); @@ -197,32 +197,32 @@ void FurnaceGUI::drawExportVGM(bool onWindow) { ImGui::EndDisabled(); if (minVersion>vgmExportVersion) { if (ImGui::IsItemHovered(ImGuiHoveredFlags_AllowWhenDisabled)) { - ImGui::SetTooltip("this chip is only available in VGM %d.%.2x and higher!",minVersion>>8,minVersion&0xff); + ImGui::SetTooltip(_("this chip is only available in VGM %d.%.2x and higher!"),minVersion>>8,minVersion&0xff); } } else if (minVersion==0) { if (ImGui::IsItemHovered(ImGuiHoveredFlags_AllowWhenDisabled)) { - ImGui::SetTooltip("this chip is not supported by the VGM format!"); + ImGui::SetTooltip(_("this chip is not supported by the VGM format!")); } } else { if (willExport[i]) hasOneAtLeast=true; } } - ImGui::Text("select the chip you wish to export, but only up to %d of each type.",(vgmExportVersion>=0x151)?2:1); + ImGui::Text(_("select the chip you wish to export, but only up to %d of each type."),(vgmExportVersion>=0x151)?2:1); if (hasOneAtLeast) { if (onWindow) { ImGui::Separator(); - if (ImGui::Button("Cancel",ImVec2(200.0f*dpiScale,0))) ImGui::CloseCurrentPopup(); + if (ImGui::Button(_("Cancel"),ImVec2(200.0f*dpiScale,0))) ImGui::CloseCurrentPopup(); ImGui::SameLine(); } - if (ImGui::Button("Export",ImVec2(200.0f*dpiScale,0))) { + if (ImGui::Button(_("Export"),ImVec2(200.0f*dpiScale,0))) { openFileDialog(GUI_FILE_EXPORT_VGM); ImGui::CloseCurrentPopup(); } } else { - ImGui::Text("nothing to export"); + ImGui::Text(_("nothing to export")); if (onWindow) { ImGui::Separator(); - if (ImGui::Button("Cancel",ImVec2(400.0f*dpiScale,0))) ImGui::CloseCurrentPopup(); + if (ImGui::Button(_("Cancel"),ImVec2(400.0f*dpiScale,0))) ImGui::CloseCurrentPopup(); } } } @@ -230,20 +230,20 @@ void FurnaceGUI::drawExportVGM(bool onWindow) { void FurnaceGUI::drawExportZSM(bool onWindow) { exitDisabledTimer=1; - ImGui::Text("Commander X16 Zsound Music File"); - if (ImGui::InputInt("Tick Rate (Hz)",&zsmExportTickRate,1,2)) { + ImGui::Text(_("Commander X16 Zsound Music File")); + if (ImGui::InputInt(_("Tick Rate (Hz)"),&zsmExportTickRate,1,2)) { if (zsmExportTickRate<1) zsmExportTickRate=1; if (zsmExportTickRate>44100) zsmExportTickRate=44100; } - ImGui::Checkbox("loop",&zsmExportLoop); + ImGui::Checkbox(_("loop"),&zsmExportLoop); ImGui::SameLine(); - ImGui::Checkbox("optimize size",&zsmExportOptimize); + ImGui::Checkbox(_("optimize size"),&zsmExportOptimize); if (onWindow) { ImGui::Separator(); - if (ImGui::Button("Cancel",ImVec2(200.0f*dpiScale,0))) ImGui::CloseCurrentPopup(); + if (ImGui::Button(_("Cancel"),ImVec2(200.0f*dpiScale,0))) ImGui::CloseCurrentPopup(); ImGui::SameLine(); } - if (ImGui::Button("Export",ImVec2(200.0f*dpiScale,0))) { + if (ImGui::Button(_("Export"),ImVec2(200.0f*dpiScale,0))) { openFileDialog(GUI_FILE_EXPORT_ZSM); ImGui::CloseCurrentPopup(); } @@ -252,21 +252,21 @@ void FurnaceGUI::drawExportZSM(bool onWindow) { void FurnaceGUI::drawExportAmigaVal(bool onWindow) { exitDisabledTimer=1; - ImGui::Text( + ImGui::Text(_( "this is NOT ROM export! only use for making sure the\n" "Furnace Amiga emulator is working properly by\n" "comparing it with real Amiga output." - ); + )); ImGui::AlignTextToFramePadding(); - ImGui::Text("Directory"); + ImGui::Text(_("Directory")); ImGui::SameLine(); ImGui::InputText("##AVDPath",&workingDirROMExport); if (onWindow) { ImGui::Separator(); - if (ImGui::Button("Cancel",ImVec2(200.0f*dpiScale,0))) ImGui::CloseCurrentPopup(); + if (ImGui::Button(_("Cancel"),ImVec2(200.0f*dpiScale,0))) ImGui::CloseCurrentPopup(); ImGui::SameLine(); } - if (ImGui::Button("Bake Data",ImVec2(200.0f*dpiScale,0))) { + if (ImGui::Button(_("Bake Data"),ImVec2(200.0f*dpiScale,0))) { std::vector out=e->buildROM(DIV_ROM_AMIGA_VALIDATION); if (workingDirROMExport.size()>0) { if (workingDirROMExport[workingDirROMExport.size()-1]!=DIR_SEPARATOR) workingDirROMExport+=DIR_SEPARATOR_STR; @@ -281,7 +281,7 @@ void FurnaceGUI::drawExportAmigaVal(bool onWindow) { i.data->finish(); delete i.data; } - showError(fmt::sprintf("Done! Baked %d files.",(int)out.size())); + showError(fmt::sprintf(_("Done! Baked %d files."),(int)out.size())); ImGui::CloseCurrentPopup(); } } @@ -290,14 +290,14 @@ void FurnaceGUI::drawExportText(bool onWindow) { exitDisabledTimer=1; ImGui::Text( - "this option exports the song to a text file.\n" + _("this option exports the song to a text file.\n") ); if (onWindow) { ImGui::Separator(); - if (ImGui::Button("Cancel",ImVec2(200.0f*dpiScale,0))) ImGui::CloseCurrentPopup(); + if (ImGui::Button(_("Cancel"),ImVec2(200.0f*dpiScale,0))) ImGui::CloseCurrentPopup(); ImGui::SameLine(); } - if (ImGui::Button("Export",ImVec2(200.0f*dpiScale,0))) { + if (ImGui::Button(_("Export"),ImVec2(200.0f*dpiScale,0))) { openFileDialog(GUI_FILE_EXPORT_TEXT); ImGui::CloseCurrentPopup(); } @@ -306,19 +306,19 @@ void FurnaceGUI::drawExportText(bool onWindow) { void FurnaceGUI::drawExportCommand(bool onWindow) { exitDisabledTimer=1; - ImGui::Text( + ImGui::Text(_( "this option exports a text or binary file which\n" "contains a dump of the internal command stream\n" "produced when playing the song.\n\n" "technical/development use only!" - ); + )); if (onWindow) { ImGui::Separator(); - if (ImGui::Button("Cancel",ImVec2(200.0f*dpiScale,0))) ImGui::CloseCurrentPopup(); + if (ImGui::Button(_("Cancel"),ImVec2(200.0f*dpiScale,0))) ImGui::CloseCurrentPopup(); ImGui::SameLine(); } - if (ImGui::Button("Export",ImVec2(200.0f*dpiScale,0))) { + if (ImGui::Button(_("Export"),ImVec2(200.0f*dpiScale,0))) { openFileDialog(GUI_FILE_EXPORT_CMDSTREAM); ImGui::CloseCurrentPopup(); } @@ -327,21 +327,21 @@ void FurnaceGUI::drawExportCommand(bool onWindow) { void FurnaceGUI::drawExportDMF(bool onWindow) { exitDisabledTimer=1; - ImGui::Text( + ImGui::Text(_( "export in DefleMask module format.\n" "only do it if you really, really need to, or are downgrading an existing .dmf." - ); + )); - ImGui::Text("format version:"); - ImGui::RadioButton("1.1.3 and higher",&dmfExportVersion,0); - ImGui::RadioButton("1.0/legacy (0.12)",&dmfExportVersion,1); + ImGui::Text(_("format version:")); + ImGui::RadioButton(_("1.1.3 and higher"),&dmfExportVersion,0); + ImGui::RadioButton(_("1.0/legacy (0.12)"),&dmfExportVersion,1); if (onWindow) { ImGui::Separator(); - if (ImGui::Button("Cancel",ImVec2(200.0f*dpiScale,0))) ImGui::CloseCurrentPopup(); + if (ImGui::Button(_("Cancel"),ImVec2(200.0f*dpiScale,0))) ImGui::CloseCurrentPopup(); ImGui::SameLine(); } - if (ImGui::Button("Export",ImVec2(200.0f*dpiScale,0))) { + if (ImGui::Button(_("Export"),ImVec2(200.0f*dpiScale,0))) { if (dmfExportVersion==1) { openFileDialog(GUI_FILE_SAVE_DMF_LEGACY); } else { @@ -354,11 +354,11 @@ void FurnaceGUI::drawExportDMF(bool onWindow) { void FurnaceGUI::drawExport() { if (settings.exportOptionsLayout==1 || curExportType==GUI_EXPORT_NONE) { if (ImGui::BeginTabBar("ExportTypes")) { - if (ImGui::BeginTabItem("Audio")) { + if (ImGui::BeginTabItem(_("Audio"))) { drawExportAudio(true); ImGui::EndTabItem(); } - if (ImGui::BeginTabItem("VGM")) { + if (ImGui::BeginTabItem(_("VGM"))) { drawExportVGM(true); ImGui::EndTabItem(); } @@ -367,7 +367,7 @@ void FurnaceGUI::drawExport() { if ((e->song.system[i]==DIV_SYSTEM_VERA) || (e->song.system[i]==DIV_SYSTEM_YM2151)) numZSMCompat++; } if (numZSMCompat>0) { - if (ImGui::BeginTabItem("ZSM")) { + if (ImGui::BeginTabItem(_("ZSM"))) { drawExportZSM(true); ImGui::EndTabItem(); } @@ -377,20 +377,20 @@ void FurnaceGUI::drawExport() { if (e->song.system[i]==DIV_SYSTEM_AMIGA) numAmiga++; } if (numAmiga && settings.iCannotWait) { - if (ImGui::BeginTabItem("Amiga Validation")) { + if (ImGui::BeginTabItem(_("Amiga Validation"))) { drawExportAmigaVal(true); ImGui::EndTabItem(); } } - if (ImGui::BeginTabItem("Text")) { + if (ImGui::BeginTabItem(_("Text"))) { drawExportText(true); ImGui::EndTabItem(); } - if (ImGui::BeginTabItem("Command Stream")) { + if (ImGui::BeginTabItem(_("Command Stream"))) { drawExportCommand(true); ImGui::EndTabItem(); } - if (ImGui::BeginTabItem("DMF")) { + if (ImGui::BeginTabItem(_("DMF"))) { drawExportDMF(true); ImGui::EndTabItem(); } @@ -419,39 +419,39 @@ void FurnaceGUI::drawExport() { drawExportDMF(true); break; default: - ImGui::Text("congratulations! you've unlocked a secret panel."); - if (ImGui::Button("Toggle hidden systems")) { + ImGui::Text(_("congratulations! you've unlocked a secret panel.")); + if (ImGui::Button(_("Toggle hidden systems"))) { settings.hiddenSystems=!settings.hiddenSystems; ImGui::CloseCurrentPopup(); } - if (ImGui::Button("Toggle all instrument types")) { + if (ImGui::Button(_("Toggle all instrument types"))) { settings.displayAllInsTypes=!settings.displayAllInsTypes; ImGui::CloseCurrentPopup(); } - if (ImGui::Button("Set pitch linearity to Partial")) { + if (ImGui::Button(_("Set pitch linearity to Partial"))) { e->song.linearPitch=1; ImGui::CloseCurrentPopup(); } - if (ImGui::Button("Enable multi-threading settings")) { + if (ImGui::Button(_("Enable multi-threading settings"))) { settings.showPool=1; ImGui::CloseCurrentPopup(); } - if (ImGui::Button("Set fat to max")) { + if (ImGui::Button(_("Set fat to max"))) { ImGuiStyle& sty=ImGui::GetStyle(); sty.FramePadding=ImVec2(20.0f*dpiScale,20.0f*dpiScale); sty.ItemSpacing=ImVec2(10.0f*dpiScale,10.0f*dpiScale); sty.ItemInnerSpacing=ImVec2(10.0f*dpiScale,10.0f*dpiScale); ImGui::CloseCurrentPopup(); } - if (ImGui::Button("Set muscle and fat to zero")) { + if (ImGui::Button(_("Set muscle and fat to zero"))) { ImGuiStyle& sty=ImGui::GetStyle(); sty.FramePadding=ImVec2(0,0); sty.ItemSpacing=ImVec2(0,0); sty.ItemInnerSpacing=ImVec2(0,0); ImGui::CloseCurrentPopup(); } - if (ImGui::Button("Tell tildearrow this must be a mistake")) { - showError("yeah, it's a bug. write a bug report in the GitHub page and tell me how did you get here."); + if (ImGui::Button(_("Tell tildearrow this must be a mistake"))) { + showError(_("yeah, it's a bug. write a bug report in the GitHub page and tell me how did you get here.")); ImGui::CloseCurrentPopup(); } break; diff --git a/src/gui/findReplace.cpp b/src/gui/findReplace.cpp index dd87d5313..711f15e62 100644 --- a/src/gui/findReplace.cpp +++ b/src/gui/findReplace.cpp @@ -26,21 +26,21 @@ #include "../ta-log.h" const char* queryModes[GUI_QUERY_MAX]={ - "ignore", - "equals", - "not equal", - "between", - "not between", - "any", - "none" + _N("ignore"), + _N("equals"), + _N("not equal"), + _N("between"), + _N("not between"), + _N("any"), + _N("none") }; const char* queryReplaceModes[GUI_QUERY_REPLACE_MAX]={ - "set", - "add", - "add (overflow)", - "scale %", - "clear" + _N("set"), + _N("add"), + _N("add (overflow)"), + _N("scale %"), + _N("clear") }; int queryNote(int note, int octave) { @@ -509,7 +509,7 @@ void FurnaceGUI::drawFindReplace() { } if (!findOpen) return; ImGui::SetNextWindowSizeConstraints(ImVec2(64.0f*dpiScale,32.0f*dpiScale),ImVec2(canvasW,canvasH)); - if (ImGui::Begin("Find/Replace",&findOpen,globalWinFlags)) { + if (ImGui::Begin("Find/Replace",&findOpen,globalWinFlags,_("Find/Replace"))) { if (curQuery.empty()) { curQuery.push_back(FurnaceGUIFindQuery()); } @@ -517,14 +517,14 @@ void FurnaceGUI::drawFindReplace() { int eraseIndex=-1; char tempID[1024]; if (ImGui::BeginTabBar("FindOrReplace")) { - if (ImGui::BeginTabItem("Find")) { + if (ImGui::BeginTabItem(_("Find"))) { if (queryViewingResults) { if (!curQueryResults.empty()) { ImVec2 avail=ImGui::GetContentRegionAvail(); avail.y-=ImGui::GetFrameHeightWithSpacing(); if (ImGui::BeginTable("FindResults",4,ImGuiTableFlags_Borders|ImGuiTableFlags_ScrollY,avail)) { - ImGui::TableSetupColumn("c0",ImGuiTableColumnFlags_WidthFixed,ImGui::CalcTextSize("order").x); - ImGui::TableSetupColumn("c1",ImGuiTableColumnFlags_WidthFixed,ImGui::CalcTextSize("row").x); + ImGui::TableSetupColumn("c0",ImGuiTableColumnFlags_WidthFixed,ImGui::CalcTextSize(_("order")).x); + ImGui::TableSetupColumn("c1",ImGuiTableColumnFlags_WidthFixed,ImGui::CalcTextSize(_("row")).x); ImGui::TableSetupColumn("c2",ImGuiTableColumnFlags_WidthStretch); ImGui::TableSetupColumn("c3",ImGuiTableColumnFlags_WidthFixed); @@ -532,13 +532,13 @@ void FurnaceGUI::drawFindReplace() { ImGui::TableNextRow(ImGuiTableRowFlags_Headers); ImGui::TableNextColumn(); - ImGui::Text("order"); + ImGui::Text(_("order")); ImGui::TableNextColumn(); - ImGui::Text("row"); + ImGui::Text(_("row")); ImGui::TableNextColumn(); - ImGui::Text("channel"); + ImGui::Text(_("channel")); ImGui::TableNextColumn(); - ImGui::Text("go"); + ImGui::Text(_("go")); int index=0; for (FurnaceGUIQueryResult& i: curQueryResults) { @@ -582,9 +582,9 @@ void FurnaceGUI::drawFindReplace() { ImGui::EndTable(); } } else { - ImGui::Text("no matches found!"); + ImGui::Text(_("no matches found!")); } - if (ImGui::Button("Back")) { + if (ImGui::Button(_("Back"))) { queryViewingResults=false; } } else { @@ -598,10 +598,10 @@ void FurnaceGUI::drawFindReplace() { ImGui::TableNextRow(); ImGui::TableNextColumn(); ImGui::AlignTextToFramePadding(); - ImGui::Text("Note"); + ImGui::Text(_("Note")); ImGui::TableNextColumn(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); - ImGui::Combo("##NCondition",&i.noteMode,queryModes,GUI_QUERY_MAX); + ImGui::Combo("##NCondition",&i.noteMode,LocalizedComboGetter,queryModes,GUI_QUERY_MAX); ImGui::TableNextColumn(); if (FIRST_VISIBLE(i.noteMode)) { if ((i.noteMode==GUI_QUERY_RANGE || i.noteMode==GUI_QUERY_RANGE_NOT) && i.note>=120) { @@ -666,10 +666,10 @@ void FurnaceGUI::drawFindReplace() { ImGui::TableNextRow(); ImGui::TableNextColumn(); ImGui::AlignTextToFramePadding(); - ImGui::Text("Ins"); + ImGui::Text(_("Ins")); ImGui::TableNextColumn(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); - ImGui::Combo("##ICondition",&i.insMode,queryModes,GUI_QUERY_MAX); + ImGui::Combo("##ICondition",&i.insMode,LocalizedComboGetter,queryModes,GUI_QUERY_MAX); ImGui::TableNextColumn(); if (FIRST_VISIBLE(i.insMode)) { ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); @@ -684,10 +684,10 @@ void FurnaceGUI::drawFindReplace() { ImGui::TableNextRow(); ImGui::TableNextColumn(); ImGui::AlignTextToFramePadding(); - ImGui::Text("Volume"); + ImGui::Text(_("Volume")); ImGui::TableNextColumn(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); - ImGui::Combo("##VCondition",&i.volMode,queryModes,GUI_QUERY_MAX); + ImGui::Combo("##VCondition",&i.volMode,LocalizedComboGetter,queryModes,GUI_QUERY_MAX); ImGui::TableNextColumn(); if (FIRST_VISIBLE(i.volMode)) { ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); @@ -704,10 +704,10 @@ void FurnaceGUI::drawFindReplace() { ImGui::TableNextRow(); ImGui::TableNextColumn(); ImGui::AlignTextToFramePadding(); - ImGui::Text("Effect"); + ImGui::Text(_("Effect")); ImGui::TableNextColumn(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); - ImGui::Combo("##ECondition",&i.effectMode[j],queryModes,GUI_QUERY_MAX); + ImGui::Combo("##ECondition",&i.effectMode[j],LocalizedComboGetter,queryModes,GUI_QUERY_MAX); ImGui::TableNextColumn(); if (FIRST_VISIBLE(i.effectMode[j])) { ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); @@ -722,10 +722,10 @@ void FurnaceGUI::drawFindReplace() { ImGui::TableNextRow(); ImGui::TableNextColumn(); ImGui::AlignTextToFramePadding(); - ImGui::Text("Value"); + ImGui::Text(_("Value")); ImGui::TableNextColumn(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); - ImGui::Combo("##EVCondition",&i.effectValMode[j],queryModes,GUI_QUERY_MAX); + ImGui::Combo("##EVCondition",&i.effectValMode[j],LocalizedComboGetter,queryModes,GUI_QUERY_MAX); ImGui::TableNextColumn(); if (FIRST_VISIBLE(i.effectValMode[j])) { ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); @@ -747,18 +747,18 @@ void FurnaceGUI::drawFindReplace() { } popDestColor(); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Delete query"); + ImGui::SetTooltip(_("Delete query")); } ImGui::TableNextColumn(); if (i.effectCount<8) { - if (ImGui::Button("Add effect")) { + if (ImGui::Button(_("Add effect"))) { i.effectCount++; } } ImGui::TableNextColumn(); if (i.effectCount>0) { pushDestColor(); - if (ImGui::Button("Remove effect")) { + if (ImGui::Button(_("Remove effect"))) { i.effectCount--; } popDestColor(); @@ -783,24 +783,24 @@ void FurnaceGUI::drawFindReplace() { ImGui::TableNextRow(); ImGui::TableNextColumn(); - ImGui::Text("Search range:"); + ImGui::Text(_("Search range:")); - if (ImGui::RadioButton("Song",curQueryRangeY==0)) { + if (ImGui::RadioButton(_("Song"),curQueryRangeY==0)) { curQueryRangeY=0; } - if (ImGui::RadioButton("Selection",curQueryRangeY==1)) { + if (ImGui::RadioButton(_("Selection"),curQueryRangeY==1)) { curQueryRangeY=1; } - if (ImGui::RadioButton("Pattern",curQueryRangeY==2)) { + if (ImGui::RadioButton(_("Pattern"),curQueryRangeY==2)) { curQueryRangeY=2; } ImGui::TableNextColumn(); - ImGui::Checkbox("Confine to channels",&curQueryRangeX); + ImGui::Checkbox(_("Confine to channels"),&curQueryRangeX); ImGui::BeginDisabled(!curQueryRangeX); snprintf(tempID,1024,"%d: %s",curQueryRangeXMin+1,e->getChannelName(curQueryRangeXMin)); - if (ImGui::BeginCombo("From",tempID)) { + if (ImGui::BeginCombo(_("From"),tempID)) { for (int i=0; igetTotalChannelCount(); i++) { snprintf(tempID,1024,"%d: %s",i+1,e->getChannelName(i)); if (ImGui::Selectable(tempID,curQueryRangeXMin==i)) { @@ -811,7 +811,7 @@ void FurnaceGUI::drawFindReplace() { } snprintf(tempID,1024,"%d: %s",curQueryRangeXMax+1,e->getChannelName(curQueryRangeXMax)); - if (ImGui::BeginCombo("To",tempID)) { + if (ImGui::BeginCombo(_("To"),tempID)) { for (int i=0; igetTotalChannelCount(); i++) { snprintf(tempID,1024,"%d: %s",i+1,e->getChannelName(i)); if (ImGui::Selectable(tempID,curQueryRangeXMax==i)) { @@ -823,37 +823,37 @@ void FurnaceGUI::drawFindReplace() { ImGui::EndDisabled(); ImGui::TableNextColumn(); - ImGui::Text("Match effect position:"); + ImGui::Text(_("Match effect position:")); - if (ImGui::RadioButton("No",curQueryEffectPos==0)) { + if (ImGui::RadioButton(_("No"),curQueryEffectPos==0)) { curQueryEffectPos=0; } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("match effects regardless of position."); + ImGui::SetTooltip(_("match effects regardless of position.")); } - if (ImGui::RadioButton("Lax",curQueryEffectPos==1)) { + if (ImGui::RadioButton(_("Lax"),curQueryEffectPos==1)) { curQueryEffectPos=1; } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("match effects only if they appear in-order."); + ImGui::SetTooltip(_("match effects only if they appear in-order.")); } - if (ImGui::RadioButton("Strict",curQueryEffectPos==2)) { + if (ImGui::RadioButton(_("Strict"),curQueryEffectPos==2)) { curQueryEffectPos=2; } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("match effects only if they appear exactly as specified."); + ImGui::SetTooltip(_("match effects only if they appear exactly as specified.")); } ImGui::EndTable(); } - if (ImGui::Button("Find")) { + if (ImGui::Button(_("Find"))) { doFind(); } } ImGui::EndTabItem(); } - if (ImGui::BeginTabItem("Replace")) { + if (ImGui::BeginTabItem(_("Replace"))) { if (ImGui::BeginTable("QueryReplace",3,ImGuiTableFlags_BordersOuter)) { ImGui::TableSetupColumn("c0",ImGuiTableColumnFlags_WidthFixed); ImGui::TableSetupColumn("c1",ImGuiTableColumnFlags_WidthStretch,0.5); @@ -861,11 +861,11 @@ void FurnaceGUI::drawFindReplace() { ImGui::TableNextRow(); ImGui::TableNextColumn(); - ImGui::Checkbox("Note",&queryReplaceNoteDo); + ImGui::Checkbox(_("Note"),&queryReplaceNoteDo); ImGui::TableNextColumn(); ImGui::BeginDisabled(!queryReplaceNoteDo); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); - ImGui::Combo("##NRMode",&queryReplaceNoteMode,queryReplaceModes,GUI_QUERY_REPLACE_MAX); + ImGui::Combo("##NRMode",&queryReplaceNoteMode,LocalizedComboGetter,queryReplaceModes,GUI_QUERY_REPLACE_MAX); ImGui::TableNextColumn(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); if (queryReplaceNoteMode==GUI_QUERY_REPLACE_SET) { @@ -905,17 +905,17 @@ void FurnaceGUI::drawFindReplace() { if (queryReplaceNote>180) queryReplaceNote=180; } } else if (queryReplaceNoteMode==GUI_QUERY_REPLACE_SCALE) { - ImGui::Text("INVALID"); + ImGui::Text(_("INVALID")); } ImGui::EndDisabled(); ImGui::TableNextRow(); ImGui::TableNextColumn(); - ImGui::Checkbox("Ins",&queryReplaceInsDo); + ImGui::Checkbox(_("Ins"),&queryReplaceInsDo); ImGui::TableNextColumn(); ImGui::BeginDisabled(!queryReplaceInsDo); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); - ImGui::Combo("##IRMode",&queryReplaceInsMode,queryReplaceModes,GUI_QUERY_REPLACE_MAX); + ImGui::Combo("##IRMode",&queryReplaceInsMode,LocalizedComboGetter,queryReplaceModes,GUI_QUERY_REPLACE_MAX); ImGui::TableNextColumn(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); if (queryReplaceInsMode==GUI_QUERY_REPLACE_SET) { @@ -940,11 +940,11 @@ void FurnaceGUI::drawFindReplace() { ImGui::TableNextRow(); ImGui::TableNextColumn(); - ImGui::Checkbox("Volume",&queryReplaceVolDo); + ImGui::Checkbox(_("Volume"),&queryReplaceVolDo); ImGui::TableNextColumn(); ImGui::BeginDisabled(!queryReplaceVolDo); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); - ImGui::Combo("##VRMode",&queryReplaceVolMode,queryReplaceModes,GUI_QUERY_REPLACE_MAX); + ImGui::Combo("##VRMode",&queryReplaceVolMode,LocalizedComboGetter,queryReplaceModes,GUI_QUERY_REPLACE_MAX); ImGui::TableNextColumn(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); if (queryReplaceVolMode==GUI_QUERY_REPLACE_SET) { @@ -971,11 +971,11 @@ void FurnaceGUI::drawFindReplace() { ImGui::PushID(0x100+i); ImGui::TableNextRow(); ImGui::TableNextColumn(); - ImGui::Checkbox("Effect",&queryReplaceEffectDo[i]); + ImGui::Checkbox(_("Effect"),&queryReplaceEffectDo[i]); ImGui::TableNextColumn(); ImGui::BeginDisabled(!queryReplaceEffectDo[i]); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); - ImGui::Combo("##ERMode",&queryReplaceEffectMode[i],queryReplaceModes,GUI_QUERY_REPLACE_MAX); + ImGui::Combo("##ERMode",&queryReplaceEffectMode[i],LocalizedComboGetter,queryReplaceModes,GUI_QUERY_REPLACE_MAX); ImGui::TableNextColumn(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); if (queryReplaceEffectMode[i]==GUI_QUERY_REPLACE_SET) { @@ -1000,11 +1000,11 @@ void FurnaceGUI::drawFindReplace() { ImGui::TableNextRow(); ImGui::TableNextColumn(); - ImGui::Checkbox("Value",&queryReplaceEffectValDo[i]); + ImGui::Checkbox(_("Value"),&queryReplaceEffectValDo[i]); ImGui::TableNextColumn(); ImGui::BeginDisabled(!queryReplaceEffectValDo[i]); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); - ImGui::Combo("##ERModeV",&queryReplaceEffectValMode[i],queryReplaceModes,GUI_QUERY_REPLACE_MAX); + ImGui::Combo("##ERModeV",&queryReplaceEffectValMode[i],LocalizedComboGetter,queryReplaceModes,GUI_QUERY_REPLACE_MAX); ImGui::TableNextColumn(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); if (queryReplaceEffectValMode[i]==GUI_QUERY_REPLACE_SET) { @@ -1034,14 +1034,14 @@ void FurnaceGUI::drawFindReplace() { ImGui::TableNextColumn(); ImGui::TableNextColumn(); if (queryReplaceEffectCount<8) { - if (ImGui::Button("Add effect")) { + if (ImGui::Button(_("Add effect"))) { queryReplaceEffectCount++; } } ImGui::TableNextColumn(); if (queryReplaceEffectCount>0) { pushDestColor(); - if (ImGui::Button("Remove effect")) { + if (ImGui::Button(_("Remove effect"))) { queryReplaceEffectCount--; } popDestColor(); @@ -1049,20 +1049,20 @@ void FurnaceGUI::drawFindReplace() { ImGui::EndTable(); } - ImGui::Text("Effect replace mode:"); - if (ImGui::RadioButton("Replace matches only",queryReplaceEffectPos==1)) { + ImGui::Text(_("Effect replace mode:")); + if (ImGui::RadioButton(_("Replace matches only"),queryReplaceEffectPos==1)) { queryReplaceEffectPos=1; } - if (ImGui::RadioButton("Replace matches, then free spaces",queryReplaceEffectPos==2)) { + if (ImGui::RadioButton(_("Replace matches, then free spaces"),queryReplaceEffectPos==2)) { queryReplaceEffectPos=2; } - if (ImGui::RadioButton("Clear effects",queryReplaceEffectPos==0)) { + if (ImGui::RadioButton(_("Clear effects"),queryReplaceEffectPos==0)) { queryReplaceEffectPos=0; } - if (ImGui::RadioButton("Insert in free spaces",queryReplaceEffectPos==3)) { + if (ImGui::RadioButton(_("Insert in free spaces"),queryReplaceEffectPos==3)) { queryReplaceEffectPos=3; } - if (ImGui::Button("Replace##QueryReplace")) { + if (ImGui::Button(_("Replace##QueryReplace"))) { doReplace(); } ImGui::EndTabItem(); diff --git a/src/gui/font_plexMono.cpp b/src/gui/font_plexMono.cpp index 322ec3392..0f84b8c89 100644 --- a/src/gui/font_plexMono.cpp +++ b/src/gui/font_plexMono.cpp @@ -1,4219 +1,4537 @@ // papers/ibm-plex-license.txt -// File: 'IBMPlexMono-Regular.ttf' (113376 bytes) +// File: 'IBMPlexMono-Regular.otf' (82328 bytes) #include "fonts.h" const unsigned char font_plexMono_compressed_data[]={ -0x78,0xda,0xcc,0xbd,0x09,0x78,0x5b,0xc5,0xb5,0x38,0x3e,0x33, -0x57,0x8b,0x77,0x4b,0xb6,0x65,0xc9,0xb2,0x2c,0x6b,0xb1,0x25, -0x5b,0xb2,0x25,0xdb,0xb2,0x24,0x2f,0xb2,0xbc,0xc9,0xfb,0x12, -0xef,0xb1,0x9d,0xc5,0xd9,0xf7,0x3d,0x21,0x40,0x48,0x42,0x48, -0x43,0x80,0xb0,0x05,0x48,0x21,0x2c,0x81,0x90,0x50,0x0a,0x01, -0x42,0x4a,0x69,0x9a,0x98,0x16,0xf2,0x80,0x07,0xb4,0xa5,0xe0, -0x47,0x29,0x4d,0x69,0x1e,0x09,0x34,0x6d,0xd9,0xa1,0x34,0xd0, -0x40,0x13,0xf9,0x7f,0x66,0xee,0x48,0x96,0x97,0x00,0xed,0xf7, -0x7e,0xdf,0xf7,0x8f,0x73,0x74,0xaf,0xe6,0xde,0x3b,0x77,0xce, -0x99,0x33,0x67,0x9b,0x33,0x23,0x84,0x11,0x42,0x49,0xf0,0x21, -0x41,0x86,0x40,0x77,0x53,0x03,0x7c,0xc3,0x08,0x0f,0x9f,0x84, -0x63,0x54,0x43,0xa0,0xae,0x3e,0x7d,0x51,0x7a,0x13,0xc2,0x8f, -0xdd,0x04,0xdf,0xb7,0x37,0x74,0x4c,0xeb,0xd6,0xdc,0x33,0xf8, -0x00,0xc2,0x8f,0x2b,0x10,0x92,0xc6,0x35,0x74,0xf7,0xd6,0x14, -0xae,0xba,0x66,0x19,0xc2,0x3f,0xd1,0x21,0x14,0x3d,0x3c,0xad, -0xdb,0x59,0x74,0xe3,0x37,0x4b,0x17,0x41,0x15,0x8f,0xc0,0xfd, -0x73,0xe6,0xaf,0x9c,0xbb,0xe6,0xe0,0x5d,0x49,0x1f,0x20,0x94, -0xd8,0x8f,0x50,0xcc,0xa2,0xf9,0x1b,0x37,0x18,0x12,0x3c,0xe4, -0x00,0x42,0xba,0xf7,0xe1,0x7a,0xd5,0xa2,0x35,0x8b,0x57,0xca, -0x06,0xee,0xf3,0x22,0x94,0x76,0x02,0x9e,0x59,0xbf,0x78,0xee, -0xfa,0x35,0x48,0x83,0x8c,0xf0,0xbe,0xcd,0x70,0x5d,0xb1,0x78, -0xc5,0x95,0x8b,0xe4,0xbb,0xe7,0x5d,0x83,0x90,0xf9,0x4d,0x84, -0xe7,0x3d,0xb2,0x64,0xe1,0xdc,0x05,0xf1,0x4b,0x94,0x57,0xc0, -0xbd,0x79,0x70,0xdd,0xb3,0x04,0x0a,0xa4,0xd7,0x0b,0x77,0xc2, -0xf7,0x05,0xf0,0x3d,0x6b,0xc9,0xca,0x0d,0x57,0xcc,0xfe,0xe0, -0x0d,0x0b,0x42,0x24,0x0a,0xa1,0xf8,0x8e,0x15,0xab,0xe7,0xcf, -0x6d,0x1a,0xfd,0xf4,0x7e,0x84,0x32,0x72,0x10,0x92,0x1d,0x5a, -0x39,0xf7,0x8a,0x35,0xd2,0x5d,0xc2,0x34,0xb8,0xff,0x7a,0xb8, -0xdf,0xb0,0x6a,0xee,0xca,0x85,0x8f,0x95,0x4e,0x97,0x23,0xbc, -0x13,0xde,0x17,0xf5,0xc9,0x9a,0xd5,0xeb,0x37,0x08,0x5f,0xb7, -0x94,0x21,0x7c,0xeb,0x0a,0x68,0x63,0xe2,0x9a,0x75,0x0b,0xd7, -0x7c,0x6c,0xad,0x7f,0x19,0xa1,0xf4,0x62,0x78,0xe6,0x69,0x44, -0x69,0x45,0x10,0xfa,0xed,0x03,0x2b,0x47,0x87,0x12,0x7d,0x5f, -0xa2,0x68,0x81,0xe2,0x81,0xde,0x9a,0xf7,0xc9,0x7d,0xe2,0xf1, -0xf4,0xed,0xc1,0x0b,0xa3,0x52,0x72,0xbd,0x64,0x08,0xbe,0x46, -0xd3,0x7b,0xd9,0x3f,0x4a,0x5e,0x1c,0xfc,0x04,0x1e,0xee,0x0f, -0x5e,0x08,0x5e,0x20,0xd7,0xb3,0x9a,0x22,0xfe,0x09,0x3d,0xb4, -0x04,0x3e,0x7f,0x83,0x4c,0x68,0x29,0x92,0xf1,0xeb,0x31,0xf4, -0x75,0x24,0x0d,0x09,0xf0,0x5d,0x20,0xfd,0x78,0x37,0x92,0x42, -0xc9,0x2e,0x02,0xd4,0x44,0x2d,0xe2,0x11,0xcf,0x46,0x3e,0xec, -0x86,0xd2,0x58,0x69,0xb4,0x94,0x08,0x88,0x08,0xfb,0x11,0x59, -0xdd,0x81,0x0c,0x57,0x85,0xea,0x6e,0xaa,0x69,0x33,0xa0,0x2a, -0x84,0xfe,0x45,0x84,0xb8,0xd1,0x2c,0x9c,0x27,0xc1,0x38,0xd9, -0x80,0xf0,0x5d,0xf4,0x1a,0x91,0x90,0x61,0x4a,0x09,0x5a,0x3b, -0x7c,0xd2,0x92,0xfe,0x30,0xd4,0x00,0xf8,0x00,0x86,0x00,0x7a, -0xf8,0x79,0x2d,0x40,0x13,0x3f,0x86,0xbe,0xcf,0x03,0x58,0x06, -0x30,0x0b,0x60,0x29,0x40,0x07,0x80,0x87,0x97,0xd7,0xf0,0xe7, -0xe9,0xbd,0x6d,0xfc,0x7e,0x2b,0xc0,0x4c,0x80,0x2a,0x00,0x3d, -0x40,0x05,0x80,0x1b,0xa0,0x17,0x20,0x13,0xa0,0x1f,0xa0,0x9e, -0x3f,0x37,0xc8,0xa1,0x84,0xd7,0x4b,0xdb,0xd1,0xcc,0xef,0xbd, -0x02,0x20,0xc0,0xcb,0x4b,0x22,0xee,0xa3,0xc7,0x7c,0x80,0x34, -0x7e,0x2d,0x0b,0xc0,0x0c,0xa0,0x05,0x50,0x02,0x14,0xf0,0xfb, -0x42,0x40,0xdf,0x5d,0xcd,0xcb,0x4d,0x1c,0xbf,0x2a,0x5e,0xe6, -0xe5,0xe7,0xb4,0x2e,0x3f,0xc0,0xbd,0x1c,0x7c,0x9c,0x46,0xf4, -0xf8,0x1e,0x40,0x1e,0x3f,0xbe,0x2a,0x02,0x96,0xc1,0xf1,0x30, -0xc0,0x0b,0x00,0xa7,0x01,0xba,0x00,0x56,0xf1,0xeb,0xf4,0x78, -0x08,0xe0,0x65,0x8e,0x4b,0x2d,0x7f,0xf6,0x3d,0xde,0x76,0x4a, -0xa7,0xdf,0x72,0x9a,0xbe,0xcb,0xe9,0xb0,0x94,0x43,0x88,0x1e, -0x49,0x1c,0xa0,0x0d,0x38,0x5a,0x04,0xd4,0xc9,0xf1,0xa6,0xed, -0xba,0x0c,0x40,0x01,0x40,0x79,0xe4,0x26,0x80,0x6b,0x00,0xec, -0x9c,0xae,0xf5,0xfc,0x1a,0xbd,0xb7,0x98,0xe3,0x15,0x82,0xfe, -0x88,0xf3,0xd0,0xb5,0xde,0x09,0x40,0xdb,0xf9,0x14,0x80,0x8d, -0x5f,0xd7,0x70,0xfa,0xc6,0x72,0x1a,0xd7,0xf3,0x77,0xd5,0xf0, -0xfe,0x82,0xef,0xa3,0xbf,0xe7,0xf5,0x15,0x01,0xa4,0x46,0xf4, -0x31,0x2d,0x4b,0x07,0x28,0xe4,0xcf,0x96,0x73,0x5a,0xe9,0xf8, -0x77,0x1d,0xef,0xa3,0x74,0x7e,0x7f,0x7e,0x44,0xbf,0xe5,0xf3, -0x7a,0x2c,0x1c,0x6a,0xfe,0x0f,0x41,0x1d,0x71,0xee,0xfb,0x3f, -0x84,0xf4,0x88,0xf3,0x18,0x0e,0x3d,0x53,0x40,0x3e,0xbf,0xa7, -0x86,0xf3,0xc7,0x7f,0x02,0xb6,0xef,0xb8,0x3e,0xb1,0x6d,0x46, -0xe8,0xa7,0x0f,0x39,0xdf,0x7d,0x5f,0xa0,0x7d,0xb5,0x80,0x8f, -0xfd,0x59,0x11,0x32,0x60,0x19,0x1f,0x7b,0x13,0x61,0xde,0x04, -0x40,0x11,0x72,0xe2,0xbb,0xc0,0xc9,0xe1,0xfb,0xdc,0x9b,0x13, -0x71,0x9e,0xc0,0xc7,0x54,0x5b,0x84,0x0c,0x9a,0x08,0x8b,0x38, -0xaf,0x59,0x27,0xc0,0x10,0x97,0x55,0xff,0x17,0xa0,0x9f,0x00, -0xee,0x6f,0x81,0xc8,0xf1,0x96,0xf9,0xff,0x08,0x52,0x38,0xd4, -0x4f,0x01,0x43,0x7c,0x9c,0xa6,0x46,0xc8,0x9c,0x7f,0x17,0xf2, -0x27,0xc8,0xef,0x89,0x10,0x13,0x21,0xd3,0xbf,0x2f,0x84,0x68, -0xd2,0x1c,0xa1,0x07,0x36,0x72,0x5d,0x10,0x82,0x9c,0x4b,0xf0, -0x5e,0xc9,0xf7,0x80,0x10,0x8f,0x7d,0x9f,0x7b,0x73,0x22,0xce, -0xb3,0xa7,0xc0,0x7d,0x22,0x54,0x72,0x3d,0x12,0x09,0x83,0x97, -0x68,0xeb,0x7f,0x02,0xe6,0x09,0xa0,0xfc,0x16,0x28,0x88,0x00, -0x3a,0xfe,0x1c,0x00,0xed,0xbc,0x8d,0x1e,0xce,0x17,0x21,0xd9, -0x57,0x07,0xb0,0x1c,0xe0,0x3a,0xce,0x0f,0xb5,0x11,0x7a,0x7b, -0x88,0xc3,0x72,0x2e,0xaf,0x1b,0xf9,0x77,0xfa,0xec,0xdc,0x08, -0xdb,0xa1,0x9e,0xf3,0x75,0x1e,0x7f,0xae,0x27,0xc2,0x4e,0xf0, -0x70,0xdd,0x41,0x8f,0xab,0xf9,0x35,0x0f,0xd7,0xed,0x99,0xbc, -0x8f,0xa9,0x9c,0xdf,0xc1,0xc7,0x32,0xa5,0x19,0x99,0xa2,0x9f, -0xa5,0x13,0xec,0x81,0x6e,0x7e,0x6f,0x3d,0xa7,0x75,0x1e,0x6f, -0xa3,0x96,0xdf,0xe3,0x8b,0xa0,0x41,0x0c,0x3f,0xce,0xe4,0x3a, -0xa8,0x80,0x8f,0xff,0x89,0x3a,0x20,0x86,0xd3,0xe1,0x3a,0x5e, -0xdf,0xaa,0x09,0x72,0xa4,0x27,0x62,0x7c,0xa7,0x72,0x5c,0x2b, -0xf8,0xfb,0x86,0x26,0xd0,0x6b,0x3e,0xc0,0x74,0x8e,0x3b,0x89, -0xc0,0xdb,0x33,0x41,0x96,0xf5,0x4c,0x21,0x1f,0xaa,0x38,0x84, -0xea,0x6e,0x89,0xa0,0x67,0x2d,0xa7,0xfd,0xb2,0x08,0xbb,0xcc, -0xc8,0x61,0x1e,0xbf,0x1e,0x29,0x03,0x76,0x70,0x70,0x71,0x3a, -0x47,0xf2,0x71,0x2d,0x6f,0x1b,0xc0,0xe8,0x79,0x4e,0xf3,0x9c, -0x88,0xfe,0x8b,0x84,0x46,0x4e,0x23,0x7a,0x6f,0x90,0x97,0x15, -0x70,0xdd,0x1e,0x39,0x6e,0xea,0x39,0xed,0x22,0x21,0xc4,0x97, -0x29,0xbc,0x0e,0x77,0x44,0xff,0xe4,0xf3,0xbe,0xec,0x89,0xb0, -0xff,0x42,0xba,0xb3,0x9f,0xd7,0x49,0x6d,0xb2,0x7b,0x00,0x1e, -0x04,0xb8,0x0b,0xe0,0x0e,0x80,0xfd,0xfc,0xfb,0x43,0x00,0xf7, -0x01,0xec,0xfb,0x37,0xee,0x7b,0x84,0xdb,0x68,0x4f,0x00,0xfc, -0x98,0x5f,0x7b,0x8a,0x7f,0x0f,0x1d,0x1f,0xfb,0x37,0xee,0x4b, -0xfa,0x0e,0x48,0xfc,0x1e,0xf7,0x38,0xb8,0xfd,0x94,0x12,0xa1, -0x6b,0x33,0x38,0xbf,0xea,0x22,0x8e,0xb9,0x1c,0x32,0x38,0xaf, -0x87,0x8e,0x5d,0x1c,0x42,0x72,0x1f,0xf1,0x3a,0x24,0x7c,0x5c, -0x85,0xca,0x43,0x63,0x84,0xf2,0xc4,0xed,0x9c,0x3e,0x9f,0x00, -0xdc,0x09,0xf0,0x53,0x80,0x51,0x80,0x67,0x00,0x6e,0x8c,0x80, -0x6b,0x01,0x8e,0x71,0xf8,0x07,0xc0,0xb3,0x00,0xd4,0xe6,0xbb, -0x1c,0xa1,0xd1,0x01,0x80,0xcb,0x00,0x9e,0x07,0x58,0x0e,0x00, -0xbe,0xd7,0xe8,0x9b,0x00,0xbb,0x01,0xe6,0x44,0xc0,0xcd,0x00, -0x8f,0x03,0xbc,0x22,0x7a,0x4c,0xa3,0x3f,0x05,0x38,0x04,0x00, -0xfe,0xd7,0xe8,0x11,0x80,0x56,0x80,0xc1,0x08,0xa0,0xf5,0x2e, -0xe0,0xcf,0x86,0x8e,0x73,0x11,0x0a,0x5e,0x88,0x28,0x1b,0xf8, -0x4f,0xf1,0xe0,0x6d,0xf9,0x4f,0xde,0x47,0xe9,0xda,0x4e,0x9d, -0x3a,0x11,0x48,0x0a,0xf7,0xe6,0x74,0xcc,0x8f,0xa3,0xdf,0x65, -0xf8,0x3c,0xf3,0x0f,0xff,0xc9,0xee,0x41,0xfc,0xde,0xef,0xfe, -0x27,0xa0,0x39,0xa8,0x07,0x5d,0x85,0xee,0x46,0x2b,0x50,0x03, -0xea,0x46,0xf3,0xd1,0x02,0x74,0x05,0xda,0x8a,0x3a,0x51,0x13, -0xbc,0x71,0x29,0x2a,0x47,0x7e,0x54,0x09,0xbe,0x5e,0x35,0xaa, -0x41,0xb5,0x28,0x80,0xea,0x50,0x3d,0xea,0x40,0x5d,0x68,0x27, -0xfa,0x01,0xba,0x0e,0xcd,0x43,0x8d,0xe0,0x5b,0x9b,0x90,0x19, -0x65,0xa1,0x6c,0x64,0x41,0x56,0x94,0x83,0x72,0x91,0x0d,0xd9, -0x51,0x1e,0xca,0x47,0x0e,0xe4,0x44,0x05,0xa8,0x10,0x15,0x21, -0x17,0x2a,0x46,0x6e,0xe4,0x41,0x5e,0x54,0x82,0x4a,0x51,0x19, -0x5a,0x88,0x96,0xa1,0x45,0x68,0x33,0x6a,0x13,0x62,0x91,0x04, -0x7c,0x53,0x39,0x8a,0x82,0xb6,0xc7,0xa0,0x58,0x94,0x80,0x12, -0x91,0x02,0x29,0x51,0x12,0x4a,0x46,0x29,0x48,0x85,0x52,0x91, -0x1a,0xfc,0xf7,0x34,0xa4,0x45,0xe9,0x80,0x6d,0x06,0xd2,0xa3, -0x4c,0xf0,0x2a,0x17,0xa3,0x55,0x68,0x09,0xda,0x02,0x9d,0xba, -0x14,0xaf,0xc6,0xdb,0xf0,0x4e,0x7c,0x14,0x3f,0x83,0xdf,0x45, -0x47,0xd0,0xcf,0xd0,0x53,0xe8,0xa7,0xe8,0x19,0x74,0x1c,0x9d, -0x41,0x7f,0x45,0x9f,0xa0,0x0f,0xd0,0x87,0x58,0xc0,0x51,0x58, -0x8a,0x65,0x58,0x87,0x33,0x71,0x16,0x36,0x62,0x13,0xb6,0xe1, -0x7a,0xdc,0x82,0x1b,0x71,0x13,0xba,0x12,0xf8,0xe9,0x87,0x68, -0x2f,0x5a,0x83,0x6e,0x44,0x6b,0x71,0x25,0x5a,0x8f,0xd6,0xa1, -0x0d,0x42,0x8c,0x10,0x85,0xae,0xc5,0x9b,0xf1,0x7f,0xa1,0xdd, -0x68,0x1b,0xba,0x1e,0xdd,0x80,0xee,0xc1,0x41,0xb4,0x87,0x60, -0xf0,0x9d,0x05,0x74,0x2b,0xba,0x0c,0x6d,0x04,0xda,0x9d,0xc2, -0x39,0x68,0x2e,0x1a,0x42,0x37,0xa3,0x5b,0xd0,0x5d,0x68,0x07, -0x1e,0x45,0xb3,0xd0,0x6c,0x34,0x4d,0xe8,0xc2,0xcb,0xf1,0x5a, -0xfc,0x02,0x7e,0x1d,0x7b,0x50,0x0b,0x6a,0x45,0xd3,0x11,0x68, -0x1c,0xd4,0x87,0xb6,0xa3,0x9b,0xf0,0x6c,0xfc,0x4f,0xb4,0x1c, -0xdd,0x89,0x66,0xa0,0x99,0xe8,0x30,0x7a,0x12,0x6d,0x42,0xbb, -0xd0,0x00,0x1a,0x44,0x2b,0xf1,0x12,0x7c,0x03,0x5e,0x84,0x77, -0xe1,0x9b,0xf1,0xfd,0x78,0x3f,0x7e,0x10,0x3f,0x84,0x8f,0x61, -0xf0,0xa4,0xf1,0x2f,0xf1,0x3b,0xf8,0x0c,0xfe,0x33,0x06,0x5f, -0x5b,0x90,0x08,0x32,0x21,0x41,0x90,0x0b,0x0a,0x21,0x45,0x88, -0x16,0x54,0x42,0x3c,0x92,0x44,0x75,0x41,0x4b,0x7e,0x0d,0xad, -0x94,0xa1,0x66,0x38,0x8b,0x07,0x8a,0x57,0x41,0xab,0x16,0x43, -0x1f,0x1e,0xc4,0x5b,0xf1,0xad,0xf8,0x76,0xa8,0xeb,0x08,0x1e, -0x25,0xe9,0xc4,0x4b,0x06,0xc8,0x2f,0xc8,0xcb,0xe4,0x7f,0xa1, -0x9e,0x38,0x21,0x09,0x9e,0x4f,0x17,0xcc,0x42,0x8e,0x70,0x42, -0x92,0x28,0x29,0x90,0x0c,0x49,0xd6,0x4b,0xf6,0x49,0x7e,0x24, -0x79,0x4c,0xf2,0x53,0xc9,0x33,0x92,0xe7,0x25,0x7f,0x94,0x9c, -0x96,0x7c,0x20,0xf9,0x52,0xf2,0x75,0x42,0xa5,0xfe,0x5a,0xfd, -0xfd,0xfa,0xaf,0x0d,0x29,0x06,0xad,0x41,0x6f,0x30,0x19,0x2c, -0x86,0x02,0x43,0x99,0x21,0x60,0x58,0x63,0xb8,0xd2,0x70,0x83, -0xe1,0x41,0xc3,0x43,0x86,0x87,0x0d,0x87,0x0d,0x4f,0x19,0x7e, -0x66,0x18,0x36,0xfc,0xd2,0xf0,0x9c,0x31,0xd9,0x98,0x6a,0x34, -0x19,0x2d,0x46,0x87,0xb1,0xd3,0xd8,0x63,0x1c,0x34,0xce,0x36, -0xde,0x6d,0x3c,0x64,0xfc,0xa9,0xf1,0xe7,0xc6,0x67,0x8c,0x2f, -0x1a,0x5f,0x32,0x11,0x93,0xcc,0x94,0x68,0x4a,0x32,0x69,0x4d, -0x7a,0x93,0xdd,0xd4,0x68,0x9a,0x63,0x5a,0x98,0xfd,0x6b,0x6b, -0xb2,0xb5,0xd5,0xae,0xfc,0xe8,0x6f,0x5f,0x9d,0xfc,0x17,0x19, -0x1d,0x65,0xbc,0x19,0x0f,0x3d,0x5d,0x08,0x9c,0x37,0x0f,0xfa, -0x7a,0x3f,0xfa,0x11,0xc3,0x65,0x3f,0x7e,0x12,0x7f,0x43,0x34, -0x0c,0x97,0x67,0xc8,0x4b,0xe4,0xa4,0x80,0x80,0x26,0x21,0x5c, -0x2c,0x80,0x0b,0x92,0x28,0x24,0x85,0x92,0x75,0x92,0xdd,0x92, -0xfd,0x92,0x43,0x92,0xc3,0x92,0xa3,0x92,0x13,0x92,0xd7,0x25, -0xa7,0x24,0xef,0x49,0x3e,0x95,0x9c,0x07,0x5c,0xb6,0x01,0x2e, -0xfb,0x0d,0xc9,0x06,0x8d,0x41,0x67,0x30,0x30,0x5c,0x4a,0x19, -0x2e,0x1b,0x0c,0xdb,0x38,0x2e,0x8f,0x18,0x7e,0x62,0x78,0xda, -0x70,0x6c,0x02,0x2e,0x1d,0xc6,0x6e,0x63,0xaf,0x71,0x86,0x71, -0xb7,0xf1,0x51,0xe3,0x11,0xe3,0x51,0xe3,0x70,0x04,0x2e,0xca, -0x08,0x5c,0x16,0x70,0x5c,0x12,0x00,0x97,0x3f,0xfc,0x0b,0x03, -0x2e,0x78,0xf4,0x4b,0x71,0xb0,0x8d,0x3e,0xc4,0x47,0x5d,0xd4, -0xa8,0x34,0x34,0x00,0x83,0x27,0x83,0xf7,0x03,0x87,0xd4,0xf3, -0xaf,0x0a,0x18,0x01,0xd1,0x74,0xec,0x06,0x6b,0xbf,0x7d,0xe0, -0x7e,0x31,0x13,0xa1,0x3f,0x97,0x21,0x74,0xa6,0x44,0xfc,0x7e, -0x26,0xf7,0x4c,0xc5,0x19,0xd3,0x19,0xeb,0x7b,0x95,0xf0,0x57, -0x7a,0xfa,0x5f,0xa7,0xbf,0x3e,0x0d,0x12,0xe1,0xf4,0xb9,0xd3, -0xff,0x38,0xfd,0xf7,0xd3,0x9f,0x9d,0xfe,0xf4,0xf4,0xd5,0xa7, -0xb7,0x9c,0xee,0x3a,0x73,0xea,0xf4,0x7c,0x84,0xde,0xbd,0xf6, -0xdd,0xeb,0xde,0x05,0x99,0xf9,0xee,0x74,0x80,0x46,0xf8,0xf3, -0xbe,0x5b,0xfc,0xce,0xed,0xf0,0xc4,0xdf,0x11,0x7a,0x67,0xc3, -0x3b,0xeb,0xde,0x59,0xf0,0x8e,0xef,0x9d,0xec,0x77,0xb2,0xde, -0x7e,0xfe,0x4f,0xbf,0xff,0xd3,0xbe,0xf0,0x2b,0x45,0x99,0xf3, -0x12,0xfa,0x2b,0x96,0xc0,0x97,0x1a,0xbc,0x0a,0x6f,0x60,0x22, -0xc4,0x24,0x64,0x01,0xe5,0x0b,0xc2,0x22,0xc5,0x21,0x94,0x08, -0x55,0xe1,0x6f,0x01,0x80,0x7a,0x61,0x81,0xf0,0x10,0xf4,0x0c, -0x91,0xe8,0x24,0x16,0x49,0x8e,0xa4,0x48,0xe2,0x93,0x54,0x49, -0x7a,0x24,0x83,0x92,0x25,0x12,0x18,0x49,0x0c,0xb6,0x22,0x24, -0x75,0x48,0x8b,0xa4,0x9e,0xa9,0xb0,0x95,0x5a,0xa6,0x2c,0xd5, -0xf3,0xa3,0x16,0xc0,0x36,0xe1,0x9a,0x69,0x8a,0xfb,0x93,0xa4, -0x1a,0xf8,0xd3,0xfe,0xff,0x44,0xee,0xfd,0x5b,0xb2,0x4e,0xe8, -0x02,0x49,0x43,0x25,0xd5,0x3d,0x68,0x35,0x5a,0x03,0xf2,0x69, -0x1d,0x48,0xa1,0x59,0x20,0x7b,0x9a,0xd1,0x7a,0x41,0x06,0x52, -0x6c,0x1b,0xf9,0x09,0x79,0x4a,0x88,0x01,0x39,0xb5,0x16,0xed, -0x12,0x52,0xc8,0x11,0x90,0x51,0xb3,0xc9,0xdb,0xe4,0x0f,0xe4, -0x4f,0x68,0x2e,0x48,0xa4,0x45,0x20,0x61,0xd6,0x32,0x79,0xb9, -0x19,0x24,0xe6,0xcd,0x20,0x33,0x6f,0x00,0x69,0xf3,0x10,0x97, -0x36,0xd7,0x82,0x04,0xfd,0x25,0x95,0x38,0x20,0xb7,0x9e,0x41, -0xd7,0xe0,0xff,0x02,0x89,0x43,0xe5,0xce,0xbb,0xf8,0x1c,0xfe, -0x5f,0x90,0x8b,0x3f,0x03,0xd9,0xfa,0x14,0xc8,0xd5,0x9f,0x82, -0x64,0x3d,0x05,0xb2,0xf5,0x13,0x90,0xae,0x54,0xb6,0x46,0x81, -0x74,0x05,0xd9,0x8a,0xfe,0x02,0xd2,0x35,0x0b,0xe4,0xab,0x11, -0x64,0xab,0x09,0x6d,0xc7,0x39,0x20,0x5f,0xeb,0xa9,0x84,0xc5, -0x33,0x71,0x1d,0x48,0xbd,0x95,0xe8,0xe7,0x78,0x31,0xfa,0x09, -0x5e,0x85,0x8e,0xe1,0xad,0xe8,0x1d,0x7c,0x0d,0x7a,0x17,0x6f, -0x47,0xef,0xe1,0xab,0xd1,0x69,0xfc,0x03,0xf4,0x67,0xbc,0x03, -0x9d,0xc5,0xb7,0xa2,0xcf,0xf0,0x75,0xe8,0x6f,0xf8,0x46,0xf4, -0x11,0xde,0x8d,0x3e,0xc7,0xd7,0xa3,0xf7,0xf1,0xdd,0xe8,0x6b, -0xbc,0x17,0x9d,0xc7,0xf7,0xa2,0x7f,0xe1,0x7b,0xd0,0x37,0x78, -0x1f,0xc6,0xf8,0x3e,0x8c,0xf0,0x23,0x38,0x0e,0x3f,0x8c,0x63, -0xf0,0x03,0x58,0x82,0x7f,0x8c,0x63,0xf1,0x01,0x4c,0xf0,0xa3, -0x38,0x1e,0x3f,0x8e,0x95,0xf8,0x09,0x9c,0x84,0x93,0xf1,0x61, -0x9c,0x02,0x72,0x2f,0x15,0xe4,0x85,0x0a,0xff,0x04,0xab,0xf1, -0x53,0x58,0x83,0x7f,0x8a,0xd3,0xf0,0xcf,0x70,0x3a,0x7e,0x1a, -0x6b,0x71,0x06,0xfe,0x39,0xd6,0xe3,0x13,0xd8,0x8a,0x8f,0x63, -0x03,0x7e,0x0e,0x5b,0xa8,0xbc,0xc6,0x23,0xd8,0x8b,0xdf,0xc0, -0xa5,0xf8,0x7f,0x70,0x09,0xfe,0x1d,0x2e,0xc3,0x6f,0xe1,0x0a, -0xfc,0x7b,0xec,0xc3,0x6f,0xe2,0x72,0xfc,0x27,0x5c,0x8b,0xdf, -0x06,0xbe,0xff,0x23,0xae,0xc6,0x1f,0xe0,0x4e,0xfc,0x57,0xdc, -0x8e,0x4f,0xe3,0x06,0xfc,0x3e,0xee,0xc0,0x7f,0xc1,0x6d,0xf8, -0x6f,0x78,0x1a,0xfe,0x3b,0x1e,0xc0,0x5f,0xe2,0x59,0xf8,0x9f, -0xf8,0x5f,0x78,0x3e,0xbe,0x88,0x17,0xe2,0x0b,0x78,0x01,0x7e, -0x11,0xdb,0xf1,0x87,0xb8,0x0b,0xaf,0x41,0xc3,0x78,0x0b,0xfa, -0x5f,0xfc,0x3c,0xce,0xc5,0x7f,0xc0,0x7e,0x7c,0x0a,0x07,0xb8, -0x3c,0x57,0x81,0x4c,0x8e,0x16,0x74,0x20,0xc5,0x32,0x84,0x54, -0x41,0x2d,0x64,0x0a,0x1a,0x21,0x4d,0x30,0x0a,0x06,0x41,0x2b, -0xe8,0x05,0xab,0x90,0x2d,0xe4,0x90,0xed,0xe4,0x07,0xe4,0x31, -0xb2,0x95,0x5c,0x4b,0x1e,0x26,0x8f,0x90,0x47,0xc9,0x21,0x72, -0x07,0xf9,0x21,0x79,0x9c,0xdc,0x4a,0x6e,0x26,0xf7,0x93,0x1f, -0x93,0x6c,0x62,0x21,0x56,0x92,0x43,0x72,0x89,0x8d,0xd8,0x49, -0x1e,0xc9,0x27,0x0e,0xe2,0x24,0x05,0xa4,0x90,0x14,0x11,0x17, -0x29,0x26,0x6e,0xe2,0x01,0xb9,0x59,0x42,0x4a,0x49,0x19,0x29, -0x27,0x3e,0x52,0x41,0xfc,0xa4,0x92,0x54,0x91,0x6a,0x52,0x43, -0x6a,0x49,0x80,0x48,0x88,0x8c,0xc8,0x49,0x14,0x89,0x26,0x31, -0x24,0x96,0xc4,0x91,0x78,0x92,0x40,0x12,0x89,0x82,0x28,0x49, -0x12,0x49,0x26,0x29,0x44,0x45,0x52,0x89,0x1a,0x64,0x6f,0x1a, -0xd1,0x82,0x36,0xd1,0x91,0x0c,0xa2,0x27,0x99,0xc4,0x40,0x8c, -0xc4,0x44,0xcc,0x24,0x8b,0xb4,0x93,0x69,0xe4,0x72,0xd2,0x4c, -0x3a,0xc9,0x3a,0xb2,0x81,0x5c,0x46,0x36,0x92,0x21,0x32,0x97, -0x5c,0x41,0x66,0x80,0xac,0x5e,0x46,0xd6,0x93,0xbd,0x64,0x01, -0xb9,0x9a,0xb4,0x90,0x6d,0xa4,0x95,0x5c,0x43,0xda,0xc8,0xf5, -0xa4,0x87,0xec,0x22,0x7d,0x64,0x37,0x99,0x49,0x6e,0x23,0xb3, -0xc8,0xed,0x64,0x36,0xd9,0x43,0xe6,0x90,0x3b,0xc9,0x3c,0x72, -0x0f,0x59,0x44,0x1e,0x20,0xcb,0xc9,0x7e,0xb2,0x82,0x3c,0x48, -0x56,0x92,0x83,0x64,0x35,0x79,0x88,0xac,0x21,0x4f,0x90,0x2b, -0xc9,0x8d,0xe4,0x3a,0xd2,0x4d,0xa6,0x93,0xcd,0xa4,0x9e,0x5c, -0x45,0xea,0xc8,0x16,0xd2,0x44,0x76,0x90,0x0e,0x72,0x98,0x6c, -0x22,0x3b,0x49,0x17,0xb9,0x81,0xf4,0x92,0x5b,0xc8,0x20,0xb9, -0x89,0xf4,0x93,0xbb,0xc8,0x7c,0x72,0x37,0x59,0x48,0xee,0x25, -0x8b,0xc9,0x7d,0x64,0x09,0xd9,0x47,0x96,0x92,0x03,0x64,0x15, -0xf9,0x11,0x59,0x8b,0xff,0x81,0x67,0xe0,0xcf,0x71,0x3f,0xfe, -0x02,0x0f,0xe2,0x65,0xe8,0x69,0xbc,0x02,0x1d,0xc5,0x97,0xa3, -0xff,0xc2,0x57,0xa2,0x17,0xf0,0x26,0xf4,0x22,0xbe,0x0a,0xfd, -0x37,0xbe,0x02,0x3d,0x8f,0xd7,0xa1,0x5f,0x80,0xa4,0x7b,0x16, -0x5f,0x86,0x9e,0xc3,0x1b,0xd1,0x09,0xbc,0x1e,0xfd,0x12,0xdf, -0x84,0x3e,0xc6,0xb7,0xa0,0x4f,0xf1,0x6d,0xe8,0xef,0xf8,0x76, -0xf4,0x05,0xde,0x83,0xce,0xe1,0x1f,0xa2,0x2f,0xf1,0x9d,0xe8, -0x2b,0x7c,0x07,0xfa,0x07,0xfe,0x11,0x8e,0xc6,0x07,0xb1,0x1c, -0xff,0x02,0x9b,0xf1,0xb3,0x38,0x1b,0xff,0x1a,0x17,0xe2,0x57, -0xb1,0x0b,0xff,0x16,0x17,0xe3,0xd7,0xb0,0x1b,0xff,0x06,0x17, -0xe1,0xff,0xc6,0x79,0xf8,0x65,0xec,0xc0,0xaf,0x60,0x27,0xfe, -0x15,0x2e,0xc0,0x2f,0xe1,0x7c,0xfc,0x1e,0x6e,0xc6,0x67,0x71, -0x2b,0xfe,0x08,0x77,0xe3,0x4f,0x70,0x2f,0xfe,0x14,0xf7,0xe1, -0xcf,0xf0,0x74,0xfc,0x31,0xee,0xc1,0xe7,0xf1,0x1c,0xfc,0x15, -0x1e,0xc2,0x5f,0xe3,0xb9,0xf8,0x1b,0x3c,0x8f,0xd9,0x14,0x03, -0xcc,0xba,0x18,0x04,0x3b,0x66,0x13,0x58,0x30,0x0f,0x80,0x9e, -0x7c,0x10,0x1d,0x00,0xfb,0xe2,0x20,0xf8,0x0d,0xef,0x91,0xbf, -0x91,0x0f,0xc9,0x47,0xe4,0x13,0xf2,0x31,0xb9,0x40,0x2e,0x92, -0x4f,0xc9,0x67,0xe4,0xef,0xe4,0x73,0xf2,0x05,0x39,0x4f,0xfe, -0x41,0xbe,0x26,0x18,0x5d,0x4d,0xfe,0x49,0xbe,0x24,0x5f,0x91, -0x73,0x42,0xb7,0x90,0x2f,0x38,0x99,0x45,0x42,0x0d,0xd5,0xbc, -0x96,0x63,0x28,0xba,0xa3,0xff,0x27,0x18,0xdf,0x32,0x70,0x0c, -0x8f,0x5e,0x7b,0x0c,0x05,0x32,0x8e,0x53,0xbd,0x34,0x34,0x3b, -0xff,0x18,0xc2,0x79,0x06,0x43,0xdd,0xd2,0xc0,0x11,0x3c,0x07, -0xbe,0x90,0x3c,0x28,0xb0,0x19,0xe1,0x4c,0xc8,0x33,0xd4,0x1f, -0x11,0xb2,0xeb,0xbb,0xfa,0xcd,0x03,0x86,0x5d,0x86,0x5d,0x4d, -0x0b,0x76,0x19,0xea,0x0d,0x4b,0xe6,0x2e,0x38,0x22,0xc9,0x66, -0x47,0xb8,0xb0,0x70,0xd7,0x80,0xd3,0x70,0x04,0x75,0xf7,0x2f, -0x85,0xcf,0x9e,0x7e,0xe3,0x91,0xaa,0x81,0xf4,0xf0,0xe9,0xc2, -0x81,0x81,0x32,0xa8,0x47,0x42,0xeb,0x91,0xb0,0x7a,0x76,0x0d, -0x40,0x0d,0xcb,0x78,0x0d,0xcb,0x58,0x0d,0x50,0xc1,0x45,0xb8, -0x49,0x9a,0xd7,0x62,0x38,0x22,0x58,0x3a,0xfa,0x3b,0xfb,0x8f, -0x6c,0x0b,0xa4,0x1f,0xa9,0x0a,0x0c,0xa4,0x1b,0x8d,0x86,0xba, -0x23,0x27,0x3a,0xfa,0x8f,0x9c,0x08,0xa4,0x1b,0x07,0x06,0xe0, -0x2e,0x59,0xb8,0xa5,0x70,0xdc,0xb2,0x54,0xc3,0xdb,0x2c,0x87, -0x36,0xcb,0x6c,0x70,0x12,0x25,0xd6,0xd2,0xdd,0x7f,0xa4,0x2a, -0xfd,0x08,0x1a,0xd8,0xb5,0x4b,0xfc,0x66,0x36,0x1e,0xd9,0xb6, -0x6b,0x57,0xfa,0x2e,0xc0,0x83,0x7f,0x3f,0x86,0x4e,0x4c,0x28, -0xc0,0x68,0x62,0x41,0x15,0x2f,0x00,0x4a,0xd0,0x1a,0x85,0xec, -0xba,0x63,0x78,0x5b,0x07,0xbb,0xb4,0xcd,0x6c,0x4c,0xa7,0x05, -0x66,0xa3,0xd9,0x08,0xed,0x1c,0x08,0xc0,0xbb,0xa3,0xf3,0x5a, -0xba,0xfb,0xeb,0xa0,0xa5,0xc6,0x81,0x7c,0x4a,0x73,0x3b,0x1a, -0x06,0x0d,0x1b,0x8b,0x88,0x1d,0xcc,0xbe,0x38,0x3a,0x4b,0x63, -0xc7,0xcf,0xc1,0x49,0x00,0xb4,0x87,0x1d,0x34,0x41,0x32,0xb5, -0x1b,0xec,0xcf,0x81,0x55,0x54,0x05,0x3a,0x25,0x17,0xb4,0x43, -0x12,0x2b,0x41,0xcf,0xc1,0x63,0x33,0xc1,0xd0,0x2c,0x07,0x05, -0x94,0xca,0x6f,0x22,0xa0,0xc8,0x6a,0x41,0xf9,0x58,0x40,0xa1, -0x88,0x25,0x02,0x28,0x91,0x5e,0x28,0xcb,0x43,0x7a,0x5e,0x22, -0x01,0x15,0x57,0x04,0xcf,0x18,0x40,0xf9,0x88,0x25,0x52,0x50, -0x71,0x35,0xa0,0xb4,0xb2,0xc3,0xf5,0xc8,0x40,0x95,0x59,0xe1, -0x09,0x35,0x34,0x44,0x2c,0x91,0x83,0x62,0xb3,0x80,0xe2,0x53, -0x81,0xea,0x12,0x4b,0xa2,0x40,0x61,0x56,0x41,0x4d,0x59,0xe1, -0xa7,0xa2,0xa1,0x56,0x13,0xa8,0xb1,0x64,0x40,0x47,0x2c,0x89, -0x41,0xb7,0x81,0x8a,0x9a,0x05,0xb5,0xe7,0xf0,0x92,0x58,0x68, -0xb1,0x1f,0xd4,0x64,0xe8,0x29,0xc0,0x9e,0x5a,0x3e,0x72,0x3b, -0x90,0x42,0xec,0xab,0x61,0xa8,0x35,0x09,0xe1,0xcb,0x86,0xe1, -0x4d,0x70,0xdc,0x30,0x0c,0x0a,0x59,0x3c,0x56,0xf1,0xe3,0x1a, -0x7e,0xdc,0xcf,0x8f,0x0a,0x7e,0x7f,0x25,0x3f,0x56,0x01,0x66, -0xe2,0x73,0xe2,0xf1,0x01,0x7e,0xdc,0xcf,0x8f,0xaf,0xf3,0xe3, -0x1a,0x7e,0x5c,0x0d,0x6d,0xa1,0xc7,0x39,0x40,0x35,0xbc,0x9e, -0x7e,0xd7,0xb0,0xef,0x89,0xf4,0x78,0x19,0xff,0x7e,0x19,0xad, -0x87,0x1e,0x81,0x28,0x3e,0xe8,0x1d,0x37,0x8c,0xbe,0x1a,0xd0, -0xb5,0xeb,0xc0,0x46,0xd8,0x05,0xa4,0x69,0x02,0x2b,0xa1,0x0f, -0x50,0x8a,0x1b,0x2d,0x41,0x71,0xe0,0x61,0xc8,0xf0,0x72,0x80, -0x69,0x00,0x6b,0x91,0x8c,0x48,0x50,0x1c,0x81,0xee,0x25,0x67, -0x19,0x41,0x8b,0xf8,0xdf,0x30,0x48,0x81,0x03,0xf8,0x3c,0xc8, -0xba,0x33,0x42,0x89,0x24,0x4e,0x72,0xa7,0x74,0x81,0xf4,0x84, -0x4c,0x2b,0x5b,0x25,0x1b,0x96,0x7d,0x21,0xdf,0x24,0x7f,0x2b, -0xca,0x16,0x75,0x7f,0x74,0x52,0xf4,0xb2,0xe8,0x0f,0x63,0xca, -0x62,0xee,0x8c,0x79,0x2d,0xd6,0x16,0xbb,0x33,0xf6,0x8d,0xb8, -0xa4,0xb8,0xd9,0x71,0xaf,0xc6,0x9b,0xe2,0x97,0xc4,0x1f,0x8a, -0xff,0x6b,0xc2,0xcc,0x84,0xa7,0x13,0x3e,0x4d,0x2c,0x4a,0xdc, -0x96,0x78,0x48,0x41,0x14,0xcd,0x8a,0x47,0x14,0xe7,0x94,0x4b, -0x94,0x2f,0x25,0x95,0x24,0x2d,0x4b,0x3a,0x9a,0xf4,0x79,0x72, -0x7b,0xf2,0xa1,0xe4,0xcf,0x53,0x0a,0x52,0x0e,0xab,0x8a,0x54, -0x65,0xaa,0xad,0xaa,0x93,0xa9,0xfd,0xa9,0x0f,0xa9,0x13,0xd4, -0xdb,0xd5,0xc3,0x9a,0x56,0xcd,0x89,0xb4,0x4d,0xda,0x24,0xad, -0x4d,0x5b,0xa4,0x6d,0xd6,0xce,0xd6,0x6e,0xd4,0xee,0x4f,0x8f, -0x4b,0xd7,0xa4,0x17,0xa4,0xfb,0xd2,0x07,0xd3,0x17,0xa5,0xef, -0x48,0x3f,0x90,0x7e,0x38,0x7d,0x38,0xfd,0x8d,0xf4,0x77,0xd2, -0xbf,0xd1,0xa5,0xea,0x4c,0x3a,0x87,0x6e,0x99,0xee,0x70,0x46, -0x4c,0xc6,0x9a,0x8c,0xfd,0x19,0x23,0x19,0x5f,0xe9,0x75,0xfa, -0xdd,0x99,0xb2,0x4c,0x43,0x66,0x59,0xe6,0x15,0x86,0x3c,0x63, -0x9c,0x31,0xcb,0xd8,0x6a,0x3c,0x6f,0x2a,0x30,0xbd,0x64,0xde, -0x63,0x3e,0x9f,0xb5,0x3d,0xeb,0xad,0xec,0x9c,0xec,0xf6,0xec, -0xdd,0xd9,0x1f,0x5b,0xe6,0x58,0x76,0x58,0xde,0xb4,0x5c,0xb0, -0xa6,0x58,0x3b,0xac,0xdb,0xad,0x6f,0x5a,0x2f,0xe4,0x44,0xe5, -0x74,0xe4,0xac,0xca,0xb9,0x29,0xe7,0x17,0x39,0x1f,0xe7,0x2a, -0x72,0x8b,0x73,0x37,0xe6,0xde,0x9e,0xfb,0xa6,0x2d,0xce,0xb6, -0xdb,0x2e,0xb1,0x6f,0xca,0x4b,0xca,0xdb,0x9e,0xf7,0x55,0xfe, -0x86,0xfc,0x57,0x1c,0x25,0x8e,0x33,0x4e,0x9f,0xf3,0x4c,0xc1, -0xde,0x42,0x43,0xe1,0xd3,0x45,0x0b,0x8a,0x82,0xae,0x55,0xc5, -0x09,0xc5,0x6b,0x8a,0xbf,0xf1,0xc4,0x79,0x0e,0x7b,0x97,0x78, -0xbf,0x28,0x29,0x2a,0x39,0x5c,0x5a,0x5f,0x7a,0xa4,0xac,0xbe, -0xec,0xd9,0x72,0x4b,0x79,0x51,0xb9,0xbf,0xbc,0xb9,0xbc,0xaf, -0x7c,0x5e,0xf9,0xaa,0xf2,0x4d,0xe5,0x3b,0x7d,0xc5,0xbe,0x2a, -0x5f,0xab,0xaf,0xdf,0xb7,0xc0,0xb7,0xc1,0xb7,0xcd,0x77,0x93, -0x6f,0xaf,0xef,0x21,0xdf,0xd3,0xbe,0x13,0xbe,0x57,0x7d,0x27, -0x7d,0x67,0x7d,0x9f,0xfb,0x2e,0x54,0x44,0x55,0xa4,0x54,0x18, -0x2a,0xf2,0x2a,0x4a,0x2a,0xde,0xac,0x38,0x53,0xf1,0x71,0xc5, -0x79,0xbf,0xc4,0x9f,0xe2,0x37,0xf8,0xf3,0xfc,0x25,0xfe,0x80, -0xbf,0xc7,0x3f,0xc7,0xbf,0xc2,0x7f,0x45,0x65,0x63,0x65,0x4f, -0xe5,0x9c,0xca,0x15,0x95,0x17,0xaa,0xa2,0xaa,0x52,0xaa,0xee, -0xa9,0x76,0x54,0x1f,0xaa,0x3e,0x5a,0xfd,0x7c,0xf5,0x6b,0xd5, -0x6f,0x57,0xff,0xb5,0xfa,0x8b,0xea,0x60,0x4d,0x4c,0x4d,0x6a, -0x8d,0xa9,0xe6,0xf9,0x9a,0xd7,0x6a,0xde,0xae,0xf9,0xb0,0xe6, -0xab,0x5a,0x52,0x9b,0x50,0xbb,0xad,0xf6,0xa6,0xda,0xbd,0xb5, -0x0f,0xd5,0x1e,0xa9,0xfd,0x45,0xed,0x2b,0xb5,0x6f,0xd6,0x9e, -0x09,0xcc,0x0c,0x2c,0x09,0xec,0x0f,0x3c,0x1e,0x38,0x16,0x78, -0x31,0x30,0x12,0x38,0x15,0x78,0x3f,0x70,0xae,0x0e,0xd5,0x5d, -0x5f,0xb7,0xa7,0x5e,0x5b,0xbf,0xad,0xfe,0x68,0xfd,0xf3,0xf5, -0xaf,0xd5,0xbf,0xdd,0x60,0x69,0x28,0x6b,0xa8,0x6f,0xe8,0x6a, -0x98,0xdd,0xf0,0xeb,0x86,0xb7,0x1a,0xde,0x6b,0xf8,0xb4,0xe1, -0x9b,0xc6,0x25,0x8d,0xaf,0x36,0x9e,0x6c,0x3c,0xdb,0xf8,0x79, -0xe3,0x85,0xa6,0xa8,0xa6,0x94,0x26,0x43,0x53,0x5e,0x53,0x49, -0xd3,0x48,0xd3,0xa9,0xa6,0xf7,0x9b,0x67,0x37,0x2f,0x6b,0xde, -0xd8,0xbc,0xbd,0xf9,0x96,0xe6,0x7b,0x9a,0x1f,0x6e,0x3e,0xda, -0xfc,0x7c,0xf3,0x6b,0xcd,0x6f,0xb7,0xdc,0xd4,0xb2,0xb7,0xe5, -0xa1,0x96,0x23,0x2d,0xbf,0x68,0x79,0xa5,0x75,0x7b,0xeb,0x2d, -0xad,0xf7,0xb4,0x25,0xb5,0x1d,0x69,0xd7,0xb6,0x5b,0xda,0x8b, -0xda,0xfd,0xed,0x4f,0xb5,0x3f,0xdb,0xfe,0xeb,0xf6,0xb7,0xda, -0xdf,0x6b,0xff,0xb4,0xfd,0x9b,0x69,0xb2,0x69,0x49,0xd3,0xf4, -0xd3,0xee,0x9f,0x76,0x68,0xda,0xd1,0x8e,0xac,0x8e,0x82,0x0e, -0x5f,0x47,0x63,0x47,0x4f,0xc7,0x9c,0x8e,0x15,0x1d,0x57,0x74, -0xec,0xe8,0xd8,0xdd,0x71,0x5f,0xc7,0x23,0x1d,0x4f,0x77,0x9c, -0xe8,0x78,0xb5,0xe3,0x64,0xc7,0xd9,0x8e,0xcf,0x3b,0x2e,0x74, -0x46,0x75,0xa6,0x74,0x1a,0x3a,0xf3,0x3a,0x4b,0x3a,0x03,0x9d, -0x1d,0x9d,0x33,0x3b,0x97,0x74,0xbe,0xdd,0xf9,0xd7,0xce,0x2f, -0x3a,0x83,0x5d,0x31,0x5d,0xda,0x2e,0x4b,0x57,0x51,0x97,0xbf, -0xab,0xb9,0x6b,0xb0,0x6b,0x51,0xd7,0xba,0xae,0xad,0x5d,0x7f, -0xed,0xfa,0xa2,0x2b,0xd8,0x1d,0xd3,0x7d,0x5f,0xf7,0x23,0xdd, -0x4f,0x77,0x9f,0xe8,0x31,0xf4,0xe4,0xf4,0x14,0xf7,0x54,0xf5, -0xb4,0xf6,0xf4,0xf7,0x2c,0xe8,0x59,0xd3,0xb3,0xb9,0xe7,0xfa, -0x9e,0x3d,0x3d,0xfb,0x7b,0x15,0xbd,0xba,0xde,0x9c,0xde,0x92, -0xde,0x40,0x6f,0x47,0xef,0xcc,0xde,0x5f,0xf7,0xbe,0xd5,0xfb, -0x5e,0xef,0xa7,0xbd,0xdf,0xf4,0x6d,0xea,0xdb,0xd9,0x77,0x7b, -0xdf,0xfd,0x7d,0x87,0xfa,0x8e,0xf6,0x3d,0xdf,0xf7,0x5a,0xdf, -0xdb,0x7d,0x7f,0xed,0xfb,0x62,0x7a,0xff,0xf4,0x05,0xd3,0x9f, -0x9e,0xfe,0xe2,0xf4,0x91,0xe9,0xa7,0xa6,0xbf,0x3f,0xfd,0x5c, -0x3f,0xea,0x8f,0xeb,0xd7,0xf4,0x6f,0xee,0xbf,0xbe,0x7f,0x4f, -0xff,0xfe,0xfe,0xc7,0x07,0x62,0x06,0x52,0x07,0x4c,0x03,0x8e, -0x81,0xb2,0x81,0xfa,0x81,0xae,0x81,0xd9,0x03,0xcb,0x06,0x36, -0x0e,0xa6,0x0e,0x9a,0x06,0x1d,0x83,0x87,0x07,0x87,0x07,0x5f, -0x1a,0x7c,0x63,0xf0,0x9d,0xc1,0x0f,0x07,0xbf,0x9a,0x21,0x9b, -0x91,0x34,0x43,0x3f,0xc3,0x36,0x63,0xe7,0x8c,0xdb,0x67,0xdc, -0x3f,0xe3,0xd0,0x8c,0xa3,0x33,0x9e,0x9f,0xb9,0x64,0xe6,0x86, -0x99,0xdb,0x66,0xbe,0x3f,0xab,0x78,0x56,0xd5,0xac,0xd6,0x59, -0xfd,0xb3,0x1e,0x9f,0x75,0x6c,0xd6,0x8b,0xb3,0x46,0x66,0x9d, -0x9a,0xf5,0xfe,0xac,0x73,0xb3,0xd1,0xec,0xb8,0xd9,0x9a,0xd9, -0x7b,0x67,0x3f,0x34,0xfb,0xc8,0x50,0xc2,0x90,0x76,0xc8,0x32, -0x54,0x34,0xe4,0x1f,0x6a,0x1e,0xea,0x1b,0x9a,0x37,0xb4,0x6a, -0x68,0xd3,0xd0,0xce,0xa1,0xdb,0x87,0xee,0x1f,0x3a,0x34,0x74, -0x74,0xe8,0xf9,0xa1,0xd7,0x86,0xde,0x1e,0xfa,0xeb,0xd0,0x17, -0x73,0x66,0xce,0xb9,0x67,0xce,0x1b,0x73,0xf5,0x73,0xaf,0x9f, -0xfb,0xc6,0xdc,0xb7,0xe7,0xbe,0x37,0xaf,0x6f,0xde,0x8b,0xf3, -0x3e,0x9f,0x1f,0x98,0xdf,0x3a,0xff,0xad,0x05,0x35,0x0b,0x6e, -0x5a,0xb0,0x77,0x21,0x5a,0xd8,0xba,0xf0,0xc0,0xc2,0x4f,0x17, -0x7e,0xb5,0xc8,0xb1,0xc8,0xb3,0xc8,0xbf,0x68,0xd5,0xa2,0x8d, -0x8b,0xeb,0x17,0xb7,0x2f,0xbe,0x65,0xf1,0xfb,0x4b,0x1c,0x4b, -0xb6,0x2d,0x79,0x7b,0x69,0xe3,0xd2,0x7b,0x96,0x06,0x97,0x5d, -0xbf,0xec,0xfc,0x72,0xb4,0xbc,0x67,0xf9,0xcc,0xe5,0xd7,0x2f, -0xff,0x7c,0xf9,0xf9,0x15,0x77,0xae,0x94,0xac,0x6c,0x5f,0x39, -0xb8,0xf2,0xd7,0xab,0x34,0xab,0x0c,0xab,0x72,0x56,0x15,0xac, -0x5a,0xb2,0x6a,0xcd,0xaa,0x2b,0x56,0x6d,0x5b,0xf5,0xea,0xea, -0x8e,0xd5,0xfd,0xab,0x1f,0x5f,0x43,0xd6,0x34,0xae,0x39,0xbc, -0x96,0xac,0x5d,0xb2,0xf6,0xa9,0x75,0x29,0xeb,0xee,0x59,0x1f, -0xb3,0x3e,0x75,0xbd,0x69,0xbd,0x63,0x7d,0xd9,0xfa,0x9a,0xf5, -0xed,0xeb,0xb7,0xad,0x7f,0x7b,0x43,0xfb,0x86,0xc1,0x0d,0x8b, -0x36,0xac,0xdb,0xf0,0xd6,0x86,0xf7,0x36,0x7c,0x7a,0xd9,0x8e, -0xcb,0x76,0x6f,0x8c,0xda,0x18,0xd8,0xd8,0xb1,0x71,0xe6,0xc6, -0x25,0x1b,0x37,0x6c,0x7c,0xe7,0xf2,0x99,0x97,0xbf,0x7a,0x45, -0xe3,0x15,0x07,0xae,0xd4,0x5d,0xb9,0xe6,0xca,0xcd,0x57,0xbe, -0x77,0xe5,0x87,0x9b,0x9a,0x37,0xf5,0x6d,0x9a,0xb7,0x69,0xd5, -0xa6,0x4d,0x9b,0x4e,0x5c,0xa5,0xb9,0x6a,0xfb,0x55,0xb7,0x5c, -0xf5,0xd5,0xe6,0x05,0x9b,0xd7,0x6c,0xbe,0x62,0xf3,0xf0,0xe6, -0xe7,0x37,0xbf,0xb6,0xf9,0xad,0x2d,0x83,0x5b,0xe6,0x6d,0x59, -0xb6,0x65,0xdd,0x96,0xad,0x5b,0x76,0x6d,0xb9,0x7d,0xcb,0xfd, -0x5b,0x46,0xb6,0x1a,0xb6,0xee,0xd9,0xba,0x7f,0xeb,0xe3,0x5b, -0x8f,0x5d,0xad,0xbf,0xda,0x76,0xb5,0xe7,0xea,0x73,0xdb,0xd0, -0xb6,0x2b,0xb6,0x6d,0xdb,0x76,0xd3,0xb6,0xbd,0xdb,0x1e,0xda, -0x76,0xe4,0x9a,0x92,0x6b,0x4e,0x6c,0xf7,0x6c,0x7f,0xfc,0x07, -0x86,0x1f,0xdc,0xf7,0x83,0xaf,0x76,0x90,0x1d,0x1b,0x76,0x6c, -0xde,0xf1,0xce,0x8e,0x0f,0x77,0x7c,0x75,0x2d,0xb9,0x36,0xe1, -0xda,0xd4,0x6b,0x97,0x5d,0xfb,0xfe,0xb5,0xe7,0x76,0xae,0xd9, -0x79,0x66,0xe7,0xc7,0x3b,0xcf,0x5d,0xd7,0x7c,0x5d,0xd7,0x75, -0xb3,0xaf,0x5b,0x74,0xdd,0xc9,0xeb,0x6b,0xae,0x7f,0xe4,0xfa, -0x23,0x37,0x68,0x6f,0x98,0x7d,0xc3,0xd1,0x5d,0xb6,0x5d,0x9b, -0x76,0x9d,0xbc,0xd1,0x77,0xe3,0xaa,0x1b,0x3f,0xbd,0xa9,0xef, -0xa6,0x13,0x37,0x93,0x9b,0xfb,0x6f,0x7e,0xe5,0x16,0xcd,0x2d, -0x1b,0x6f,0x79,0xfb,0xd6,0xb8,0x5b,0x6f,0xba,0xf5,0xdc,0xee, -0x35,0xbb,0x9f,0xbe,0x2d,0xea,0xb6,0xed,0xb7,0xbd,0x71,0xbb, -0xe3,0xf6,0xdb,0x6f,0x7f,0xf1,0x8e,0xe6,0x3b,0x8e,0xec,0xd1, -0xee,0x99,0xb9,0xe7,0xf0,0x0f,0x73,0x7e,0x78,0xc5,0x0f,0xdf, -0xbc,0xb3,0xe4,0xce,0x65,0x77,0x7e,0x7e,0x57,0xcf,0x5d,0x0b, -0xee,0xda,0x70,0xd7,0x8e,0xbb,0xf6,0xdc,0xf5,0xd0,0x5d,0x4f, -0xdf,0xf5,0xe2,0x5d,0x6f,0xde,0x75,0xf6,0xae,0x73,0x7b,0x25, -0x7b,0x53,0xf6,0x66,0xed,0x2d,0xde,0x1b,0xd8,0xdb,0xb3,0x77, -0xc1,0xde,0xdd,0x7b,0x9f,0xde,0xfb,0xce,0xdd,0x29,0x77,0x37, -0xdf,0xbd,0xe1,0xee,0xfb,0xef,0x7e,0xe5,0xee,0x2f,0xee,0xd1, -0xdd,0xd3,0x71,0xcf,0x8e,0x7b,0x8e,0xdc,0x73,0xea,0xde,0xa8, -0x7b,0x8b,0xef,0x5d,0x76,0xef,0xfd,0xf7,0x3e,0x7e,0xef,0xf0, -0xbd,0xe7,0xee,0x2b,0xbb,0x6f,0xf3,0x7d,0xcf,0xde,0x17,0xdc, -0xe7,0xdf,0x77,0xf8,0x7e,0xfd,0xfd,0xbb,0xee,0xff,0xe2,0x01, -0xd3,0x03,0xf5,0x0f,0xec,0x7c,0xe0,0xd8,0x03,0x27,0x1f,0x38, -0xbf,0x3f,0x6f,0xff,0xbc,0xfd,0xf7,0xef,0x1f,0x79,0xd0,0xf6, -0xe0,0xde,0x07,0x8f,0x3d,0x78,0xf6,0x80,0xed,0xc0,0xbc,0x03, -0x2b,0x0e,0x6c,0x3c,0xb0,0xed,0xc0,0xae,0x03,0x7b,0x0e,0xdc, -0x7f,0xe0,0x91,0x03,0x4f,0x1d,0xf8,0xc5,0x81,0x97,0x0e,0x8c, -0x1c,0xd4,0x1c,0x34,0x1d,0xcc,0x3b,0xd8,0x7e,0xb0,0xff,0xe0, -0xc6,0x83,0x3b,0x0f,0xee,0x3e,0x38,0xf2,0x90,0xe2,0xa1,0x39, -0x0f,0x9d,0xfa,0x91,0xe9,0x47,0x2b,0x7e,0xf4,0xd4,0x8f,0xde, -0x7f,0xb8,0xf8,0xe1,0x65,0x0f,0x3f,0xf5,0xf0,0x37,0x3f,0x5e, -0xf4,0xe3,0x97,0x1e,0xb1,0x3c,0xd2,0xf7,0xc8,0xae,0x47,0xce, -0x3c,0x1a,0xf7,0x68,0xde,0xa3,0xad,0x8f,0x6e,0x7e,0xf4,0xf0, -0xa3,0xe7,0x0e,0xd9,0x0e,0xdd,0x72,0xe8,0xfc,0x63,0x8e,0xc7, -0x96,0x3d,0xf6,0xf0,0x63,0x9f,0x3f,0xbe,0xec,0xf1,0x67,0x9f, -0x48,0x7d,0x62,0xd9,0x13,0xfb,0x9f,0xf8,0xf8,0xb0,0xe9,0xf0, -0x92,0xc3,0xc3,0x4f,0x66,0x3d,0x99,0xf5,0x93,0x1e,0x96,0xa3, -0x62,0x80,0x8f,0x12,0x21,0x0e,0x0c,0x09,0x39,0x2a,0x1b,0x06, -0xeb,0x21,0x0a,0x45,0x2b,0x93,0x4a,0xc1,0x5e,0x53,0x80,0xca, -0x1e,0xa1,0x26,0x4c,0x5d,0x3f,0x7c,0x38,0xd3,0x8f,0xc3,0xfd, -0x09,0xfe,0x01,0xb0,0x0b,0x4f,0xc1,0x77,0xb8,0x2a,0x81,0x23, -0x86,0xa3,0xfc,0x54,0x41,0xa1,0x4b,0x69,0x54,0x66,0x1b,0x95, -0x46,0x03,0xd1,0x04,0xb3,0xf0,0xfe,0xe0,0x1c,0x21,0xee,0xc2, -0x39,0x1f,0xd9,0xc3,0xde,0x51,0x33,0x7a,0x0e,0x7c,0x18,0x05, -0xf8,0xd6,0x4e,0xb4,0x6b,0x18,0x8c,0x1c,0x70,0xa3,0xd9,0x3b, -0x72,0xe1,0xe9,0xf8,0xf0,0x3b,0xd2,0xe9,0x3b,0xd2,0x91,0x96, -0xbe,0x83,0x15,0xc8,0x69,0x81,0x5c,0x7c,0xe9,0xa4,0x56,0xc8, -0x15,0xc7,0xc1,0x1a,0x89,0x3a,0x37,0x0c,0xa6,0x93,0x1c,0xa5, -0xb3,0xfa,0xe2,0x9d,0xc7,0xa1,0x76,0x5a,0x26,0x81,0x6b,0xb9, -0x50,0xb6,0x19,0x9a,0xe9,0xd4,0x40,0xdd,0x70,0x77,0x12,0x5c, -0xa1,0x2d,0x3f,0x0e,0x66,0x57,0xd4,0xb9,0x82,0x42,0xa3,0xc9, -0x62,0x35,0x27,0x60,0xb3,0xc9,0xe2,0x2e,0xf6,0x94,0x63,0x77, -0xb1,0xc5,0x6c,0x92,0xc9,0xad,0x7e,0xc1,0x55,0x94,0xaa,0x52, -0xba,0x54,0xd9,0x45,0x7e,0x52,0x01,0x97,0x65,0x19,0x38,0x25, -0x15,0x7f,0xe6,0xcc,0x91,0x4a,0x95,0x2d,0x95,0x9d,0x73,0x96, -0x5e,0xb6,0xaa,0xaa,0xbc,0xb8,0x26,0xc5,0x13,0x63,0x2a,0xaa, -0xb2,0xce,0x58,0xde,0x18,0xfc,0x53,0xa6,0xcb,0xa2,0x5a,0xd5, -0x58,0x53,0x5a,0x90,0x95,0xef,0xea,0x69,0x6a,0x6c,0x77,0x95, -0x96,0xe6,0x9a,0x73,0x52,0x2c,0x19,0xca,0x99,0x5d,0xc1,0xb3, -0xf5,0xde,0xc4,0x34,0x73,0x4a,0x6f,0x8e,0x45,0x95,0x93,0x4b, -0xe9,0xe1,0x1b,0x3d,0x87,0xbf,0x06,0x7a,0x28,0xa0,0x91,0xd7, -0x0c,0x23,0x25,0x0d,0x38,0xb0,0xf6,0x2b,0x81,0x1e,0x42,0x98, -0x1e,0xf1,0x14,0xdb,0xf8,0x08,0x7a,0x44,0xd3,0x82,0xe8,0x88, -0x02,0x81,0x16,0x08,0x11,0x04,0x52,0xd0,0x02,0x85,0x58,0x10, -0x0d,0x88,0xea,0x18,0xca,0x02,0x9c,0x29,0x19,0x59,0x30,0x94, -0x28,0xe1,0x55,0xc3,0x60,0xa8,0x29,0x91,0x0e,0xce,0x0a,0x0a, -0xb3,0xcd,0x32,0x91,0x04,0xae,0x22,0xb5,0xcb,0xed,0x52,0x9a, -0xad,0x0c,0xef,0x62,0x07,0x09,0xa1,0xfe,0xa8,0xa4,0x68,0xe5, -0xd0,0xf2,0xe5,0x43,0x2b,0x8b,0x24,0x1d,0x1d,0x3b,0xd2,0x0b, -0xb2,0x54,0xaa,0xac,0x82,0xf4,0xfa,0xb6,0xb6,0x9e,0x39,0xb7, -0x6c,0xdb,0x76,0xcb,0x9c,0x9e,0x8b,0x17,0xca,0x13,0xd2,0xad, -0xda,0x61,0xad,0x35,0x3d,0xa1,0xb7,0xbe,0xbf,0xbe,0x97,0x25, -0x08,0xa1,0x21,0xe8,0x77,0x1d,0xd8,0x44,0x53,0xe2,0x19,0x1b, -0xc6,0x13,0xd3,0x46,0x63,0xa4,0x0f,0x63,0x21,0xa5,0x05,0xd2, -0x08,0x3c,0x63,0x69,0x41,0x6c,0x04,0x9e,0x89,0xb4,0x20,0x51, -0x2c,0x90,0x02,0x76,0x1a,0x86,0x67,0x6c,0x18,0x4f,0x01,0x4a, -0x44,0x3c,0xe3,0xa1,0x44,0xc3,0xf0,0x4c,0x76,0x29,0x5d,0x1e, -0xda,0xb5,0x29,0x80,0xaf,0xd5,0xac,0x32,0x7b,0x8b,0x3c,0x80, -0x26,0x74,0x7a,0x02,0x01,0x34,0xf5,0x64,0xa8,0x23,0x02,0xcf, -0x37,0x01,0xbd,0x7a,0x8e,0x2a,0x39,0x1b,0x7c,0x95,0x63,0x5a, -0xce,0xd0,0x0b,0x23,0x2b,0xc6,0xcf,0x7a,0x00,0x4f,0x09,0xa1, -0x58,0xd6,0x8e,0x61,0x19,0xc2,0x2e,0x86,0x36,0x35,0x26,0x02, -0x99,0x48,0x26,0x8e,0xe1,0x2d,0x16,0xd9,0x52,0xc7,0xd8,0x52, -0x6a,0x72,0x10,0x77,0xb1,0x9f,0x40,0x53,0xd5,0x72,0x07,0x0e, -0x37,0xcf,0x55,0xe4,0xf1,0xaa,0x13,0x30,0xf6,0x97,0x4c,0xf7, -0x65,0x1a,0x7c,0x7d,0xde,0x96,0xd9,0xa9,0x55,0x09,0xd5,0x05, -0x66,0xaf,0x25,0x39,0xd9,0x52,0x92,0x55,0x1c,0x48,0x29,0x55, -0xcf,0x8d,0xb3,0xd6,0x2f,0xa8,0xa8,0x58,0xd0,0x60,0xa9,0x71, -0x9b,0x72,0xf2,0xd4,0xb6,0x32,0x53,0xbf,0xa9,0xcc,0xa6,0x2e, -0xb0,0x59,0x8b,0x03,0x63,0xbc,0x77,0xf6,0xbb,0x78,0x2f,0x81, -0x36,0x32,0x21,0xa2,0x4f,0xfe,0x3d,0xde,0x13,0xc2,0x78,0x85, -0xb8,0x90,0xf2,0x9e,0xc8,0x71,0x94,0xf7,0x44,0x2e,0x9c,0xc0, -0x7b,0xca,0xff,0x84,0xf7,0x70,0xf1,0x45,0xdd,0x64,0xe6,0x23, -0xa8,0x16,0xfa,0x44,0x05,0x7d,0x92,0x01,0x4e,0xcb,0xf2,0x61, -0xf0,0x75,0xec,0x28,0x8f,0xe1,0xa9,0x07,0x3c,0x63,0x46,0xbe, -0x47,0xef,0x1c,0x07,0x4f,0x80,0x62,0x40,0xfb,0x48,0xcf,0x30, -0x50,0x42,0x89,0x5e,0x24,0x96,0x13,0xf0,0x1d,0x39,0x86,0xb4, -0x14,0x9c,0x94,0x78,0xc7,0xc1,0xe5,0x19,0xdf,0x7b,0x7a,0xe8, -0x36,0xa3,0x6a,0xac,0xe3,0x04,0xd6,0x91,0x46,0x37,0x20,0x87, -0xdd,0x25,0x03,0x95,0x26,0xb3,0x7f,0xba,0xbb,0xb8,0xd7,0x67, -0x08,0x6e,0x4f,0xcd,0x2d,0xcf,0x2a,0x6e,0x4d,0x29,0x57,0x2f, -0xef,0x32,0x96,0xe4,0xaa,0x71,0x8e,0x2a,0xdb,0x1d,0x67,0x69, -0x98,0x5f,0xe1,0x87,0x8e,0xb4,0xd4,0xce,0xf4,0x5a,0x34,0x62, -0x27,0xe6,0x14,0xd7,0xe2,0xb7,0x35,0xb6,0x52,0x93,0x3c,0xd6, -0x54,0x92,0x0b,0x6e,0x0d,0xf8,0x25,0x88,0x18,0xa0,0x3f,0x53, -0xd0,0x3a,0xda,0x40,0x15,0x4a,0x8d,0xe0,0x3d,0xde,0x69,0x63, -0xbd,0x28,0xa1,0x05,0x92,0x08,0x74,0x53,0x68,0x41,0x8a,0x88, -0x2e,0x62,0xe8,0x4a,0x14,0xb4,0x5b,0x43,0x5d,0x17,0xc7,0xcb, -0xa8,0x9c,0xa6,0xdd,0x2a,0xa2,0x4d,0xa5,0xbf,0x72,0xa4,0xa0, -0xd0,0x0b,0x3d,0xe6,0x76,0x31,0xe9,0xa9,0x32,0xab,0x5c,0x2a, -0x33,0x48,0x4d,0x63,0xf7,0xe1,0x63,0xc7,0xbc,0xe5,0x4f,0xbc, -0xfe,0xfa,0xeb,0xc7,0x82,0xcd,0x01,0xbc,0x39,0xb0,0xac,0xb8, -0x26,0x70,0x5f,0x20,0xb8,0x83,0x86,0x8c,0xa1,0x5f,0xf2,0x48, -0x21,0x69,0x46,0xa5,0xa8,0x1e,0xf5,0xa0,0x97,0xe8,0x50,0xed, -0x45,0x7d,0x8c,0xa8,0xb4,0xf6,0x00,0x7f,0x4b,0x43,0xb8,0x87, -0xd2,0x68,0x0b,0xd3,0x22,0x9a,0x6c,0xa4,0x05,0xc6,0xc9,0x9c, -0xa8,0xa0,0x05,0x46,0x68,0xb3,0x81,0x75,0x96,0x1d,0x8a,0xd2, -0x58,0xbd,0x76,0x67,0x35,0x5c,0x85,0x02,0xbc,0xae,0x5a,0x0a, -0x5e,0xa0,0x1d,0x3c,0x43,0x3b,0x22,0xb3,0x86,0x51,0x05,0xdc, -0x63,0x67,0xf7,0x54,0x38,0xe1,0xd2,0x03,0x50,0xf0,0x24,0x00, -0x59,0x0b,0x0f,0x8c,0xc0,0x09,0x9e,0x75,0x1c,0xdc,0xf4,0x58, -0x2e,0x42,0x6b,0x19,0x2d,0xec,0x70,0xd6,0xc0,0xce,0xd2,0xe0, -0xac,0x5d,0xec,0xf4,0x14,0xce,0xc6,0x5e,0xb7,0x03,0x87,0x0f, -0x94,0x09,0xd4,0x21,0xe2,0xe8,0xb1,0x2a,0x25,0x01,0xb8,0xda, -0x62,0x4d,0x10,0x54,0x29,0xa9,0xe5,0xb8,0x28,0x55,0x5e,0x6c, -0xb1,0x63,0x99,0xf8,0xc5,0x23,0x84,0x84,0x11,0x63,0x7b,0x52, -0xb8,0x7d,0xfb,0x96,0x95,0x79,0x39,0xa9,0x1a,0x77,0x4e,0x81, -0x5b,0xe7,0x6e,0xce,0x2f,0xcb,0xd3,0x99,0x86,0x36,0xe8,0xf4, -0x19,0xc5,0x2d,0xf9,0xf1,0x9a,0xb8,0x38,0x6d,0x6a,0x82,0x23, -0x7b,0xdd,0x82,0xc1,0x96,0x22,0xff,0x4f,0x8b,0x3d,0x95,0xed, -0xf5,0xed,0xbf,0xf4,0x95,0x96,0xfa,0x7c,0x25,0x25,0xe5,0xed, -0x2d,0x35,0x7e,0x9b,0x23,0x36,0x2e,0xd6,0xa4,0xcd,0xc9,0x89, -0x91,0xa8,0xba,0xbc,0xd6,0x1a,0xa7,0x56,0x15,0xad,0xcf,0xa9, -0x37,0x6b,0x6a,0x72,0xe9,0x17,0x42,0x48,0x74,0x62,0x4a,0xbc, -0x3a,0xb1,0xa5,0x36,0x33,0x5b,0x55,0x68,0x2a,0xb4,0xe3,0xee, -0x12,0x47,0x86,0xc3,0xeb,0x85,0x8f,0x12,0x51,0x4e,0xe4,0x31, -0x1d,0x95,0x89,0x0a,0xd1,0x75,0xc3,0x40,0xd3,0x22,0xe4,0x62, -0x94,0x32,0x8c,0x1b,0x3f,0x7a,0x4a,0x7b,0x7d,0x44,0x67,0x68, -0x69,0x81,0x36,0xa2,0x20,0x52,0x2c,0x4c,0xe8,0x2e,0x3a,0xf2, -0x28,0x21,0x15,0xbc,0xd3,0xe0,0x69,0x38,0xb3,0x73,0xa5,0x6e, -0x60,0x5d,0x33,0x0c,0x23,0xd8,0x8e,0x0c,0xa2,0xb4,0x60,0x64, -0xb6,0x7a,0xf5,0xd8,0x55,0x04,0x8a,0x19,0xbe,0x84,0xc6,0x1a, -0x55,0x5c,0xc2,0x44,0xd1,0xf1,0xf5,0xc6,0x95,0x95,0x33,0x32, -0x9d,0xda,0x40,0xfe,0xed,0x20,0x44,0x9c,0x2d,0xc5,0x3a,0x5d, -0x71,0x8b,0x93,0x09,0xf7,0x08,0x39,0xa2,0x5c,0xbe,0xc9,0x6a, -0xf0,0xa6,0x67,0xdc,0xd3,0x37,0x27,0x3b,0x30,0xb7,0xa2,0x62, -0x6e,0x20,0x7b,0x4e,0x4f,0xb0,0x8e,0x8a,0x94,0xc7,0x45,0x91, -0xd2,0x2c,0xea,0xb3,0x10,0xef,0x2a,0x50,0x31,0xaa,0x41,0xd3, -0xd0,0xf3,0x34,0x21,0xb6,0x03,0x75,0x32,0xaa,0xb8,0xf9,0xa8, -0x68,0x0b,0x53,0x26,0x95,0xa2,0x99,0x1a,0x41,0x88,0x49,0x8c, -0xcc,0x45,0x0d,0xe3,0x5b,0xca,0x4b,0x5a,0x86,0xb8,0x19,0x8a, -0x52,0x59,0x9d,0x66,0x91,0x6f,0xcd,0x21,0xbe,0x35,0x03,0xdf, -0x9a,0x19,0xdf,0xd2,0x69,0x25,0x33,0xbb,0xa7,0x5e,0xe4,0xdb, -0x7a,0xe0,0xdb,0xfa,0x10,0xdf,0xd6,0x33,0xbe,0x75,0x32,0xbe, -0x35,0x43,0xbd,0x6e,0x46,0xda,0x54,0x38,0xf3,0x85,0x55,0x4d, -0x1b,0x17,0x56,0x53,0x33,0x2d,0x8c,0xe4,0x29,0xf8,0x15,0x14, -0xe7,0x78,0x2e,0x4d,0x8e,0x64,0x60,0x9c,0x3f,0x9e,0x61,0xed, -0xe6,0x9f,0xcd,0x4e,0x56,0x4e,0x64,0xd7,0xed,0x3b,0x39,0x97, -0x7e,0x1d,0xe6,0xdb,0x37,0xa7,0xe2,0xd6,0xb8,0xaa,0x14,0x77, -0xc6,0x78,0x4e,0xad,0x6c,0x6f,0xc1,0xcf,0x8e,0x31,0x69,0xf0, -0x0f,0x9c,0x73,0x45,0x1d,0x3c,0x0f,0x3e,0x2e,0x80,0x1c,0xd4, -0x50,0x69,0xaf,0xa4,0x74,0x8e,0x90,0x83,0x93,0x2c,0x8c,0x28, -0x5a,0x10,0x15,0xd1,0x17,0x6a,0x5a,0xa0,0x8e,0xe0,0xd2,0x38, -0x5a,0x10,0x27,0x16,0x44,0x85,0xed,0x0a,0x42,0x75,0x00,0x54, -0xbc,0xe5,0x18,0x22,0x4e,0x8d,0x68,0x53,0x70,0x7b,0xd1,0xac, -0x14,0x4d,0x09,0x38,0x9b,0xd7,0x21,0x89,0xd2,0x98,0x0b,0x0c, -0x9d,0xf3,0x3a,0xfc,0x3e,0x8d,0x23,0x2b,0xb5,0x83,0x5a,0x10, -0xc9,0x66,0xad,0x62,0xf1,0xec,0xe0,0xcf,0x70,0x45,0x43,0x5d, -0x9c,0xc6,0x92,0x16,0xbc,0x87,0x8e,0xb3,0x65,0xf0,0x61,0x22, -0x1f,0x03,0xbf,0xab,0xd1,0x7c,0x31,0x26,0x25,0x4a,0xad,0xc4, -0x71,0xfa,0x38,0x89,0x36,0x27,0xe9,0x12,0x0d,0x4e,0x52,0x50, -0x3e,0x92,0x9f,0xa3,0xc6,0xb2,0x0c,0x3a,0x58,0xad,0xa0,0xba, -0x9b,0x76,0x75,0x52,0x58,0x0f,0x27,0x40,0x75,0x29,0x20,0xb2, -0xb1,0xc9,0x02,0x3d,0x48,0xed,0x20,0xe8,0x41,0x19,0xa6,0x02, -0xdc,0x48,0xa5,0x36,0x6e,0x35,0xeb,0x74,0x66,0x80,0xe0,0xbf, -0x86,0x87,0x71,0xcc,0xe1,0x60,0x23,0xd9,0x98,0x91,0xaa,0x48, -0xcd,0x60,0x1f,0x17,0x5f,0x03,0x39,0x1e,0xac,0x0a,0x88,0x76, -0xdd,0xac,0xd1,0x12,0xfc,0x32,0xb4,0x39,0x06,0x1a,0x3b,0x7d, -0x18,0x14,0x8c,0x48,0x6d,0xaa,0x31,0xe0,0x45,0xe1,0x36,0x4f, -0x52,0x36,0x5c,0xd9,0x2a,0xa6,0x52,0x36,0xf4,0x2c,0x96,0xe1, -0x90,0x04,0x38,0x14,0x14,0x82,0x39,0x60,0x84,0x96,0xa5,0xc8, -0xec,0x78,0x7c,0x93,0x17,0x7d,0x13,0xbc,0x88,0xbb,0xbd,0xe5, -0x27,0xb1,0x89,0xb7,0x78,0x07,0x09,0x04,0x2e,0x1e,0x2a,0xae, -0x11,0xfc,0x63,0x0d,0x66,0x3c,0xb1,0x14,0x1a,0xeb,0x07,0x9e, -0x88,0xa7,0x94,0x65,0x13,0x73,0x11,0x3c,0xc1,0x47,0xdf,0xb7, -0x58,0x9d,0x5c,0x7b,0x8e,0xf1,0x04,0x37,0xc8,0xa1,0x80,0x72, -0x82,0x14,0xc5,0x33,0xa4,0x09,0x33,0x66,0x45,0x5e,0xa8,0xc4, -0x2e,0x79,0xb2,0x59,0x90,0xab,0xcc,0x4b,0x3b,0x24,0x83,0x8f, -0xcf,0x7b,0xeb,0xb3,0xf9,0xbf,0x1a,0xa0,0xbd,0x9f,0xdf,0x7b, -0xff,0xaf,0x83,0x2f,0xe1,0xb8,0xce,0x67,0xa0,0x5d,0x1d,0x74, -0xdd,0x01,0xb4,0x2b,0x1a,0x35,0x50,0xb3,0x28,0x06,0xc5,0x46, -0xb4,0x8b,0x53,0x4d,0x3f,0x45,0x33,0x26,0x53,0x8d,0x8a,0x1c, -0x59,0x48,0x11,0xb3,0x7e,0xec,0x78,0xfa,0x69,0x2c,0x79,0x3a, -0xd8,0x18,0x20,0x33,0x03,0x17,0xe7,0x04,0x18,0x1d,0x3c,0x8c, -0xc7,0x14,0x60,0xa1,0xfc,0x78,0x18,0xde,0x96,0x8d,0x2c,0x93, -0xc7,0xc6,0x24,0xaf,0x6b,0xac,0x80,0xdb,0x82,0x53,0x5b,0xb0, -0xac,0x40,0x47,0x0b,0x74,0x11,0x05,0xc9,0xb4,0x20,0x79,0xcc, -0x51,0x33,0x70,0xab,0x1c,0xbc,0x4d,0x71,0xf4,0x08,0xd4,0x29, -0x4b,0x50,0x88,0x36,0x16,0x6d,0x94,0x9a,0xd9,0x86,0x5b,0x28, -0x93,0x68,0xa8,0x3b,0xe9,0x52,0xb9,0xfc,0x98,0x9a,0xc0,0xe2, -0x21,0x34,0xbe,0x64,0x11,0x27,0x9e,0x66,0x49,0x5c,0x9e,0x3d, -0x3f,0x4f,0x2a,0x24,0x14,0x3b,0x2a,0xed,0xcd,0xe9,0x59,0x86, -0x9c,0xe6,0x74,0xb3,0x21,0x97,0x48,0x7c,0x7a,0x5b,0x7e,0x96, -0xd9,0xd1,0xdf,0x15,0xbc,0x07,0x0f,0xd4,0xb8,0x72,0x6d,0xc1, -0x6b,0x43,0xc7,0xb0,0xac,0x50,0x88,0xb2,0x22,0x69,0x6a,0x59, -0xf1,0x2d,0x5e,0xd7,0x24,0xf4,0x39,0x81,0xc2,0x5e,0x57,0x12, -0xc7,0x36,0x29,0x02,0xdb,0x10,0x4e,0x13,0x85,0xc5,0x24,0x59, -0x41,0x24,0x3d,0x53,0x49,0x8a,0x90,0x1f,0x9d,0x0a,0xed,0x4e, -0x06,0xf3,0xa7,0x96,0x6a,0x1f,0x13,0xd7,0x02,0x29,0xdf,0xcf, -0x9e,0x4d,0x09,0xdb,0xb3,0xe9,0x93,0x6c,0x55,0x2a,0xed,0xad, -0xe3,0xa4,0x3b,0xce,0xf3,0x4c,0xaf,0x30,0x18,0x2a,0xa6,0x7b, -0x42,0xc7,0xda,0xae,0xae,0x5a,0x00,0x6a,0x99,0xfa,0xa9,0x8b, -0x61,0x69,0x58,0x50,0xe1,0x9f,0xdf,0x60,0xa9,0xeb,0xe8,0x69, -0xee,0xe9,0x60,0x1f,0xdc,0xef,0x2b,0x01,0xbf,0x4f,0xf1,0x5d, -0x7e,0x1f,0x6f,0x9a,0xf6,0xd2,0x23,0x90,0xdb,0x0e,0x8a,0x29, -0x1d,0xc1,0xa9,0xfc,0x3e,0x12,0xf6,0xfb,0x12,0x22,0xfc,0x3e, -0x55,0xa4,0xdf,0xa7,0x34,0x27,0x7f,0x6f,0xbf,0x4f,0xc2,0x9d, -0x8c,0xe0,0x59,0x2c,0x4c,0x72,0xfc,0xa8,0x8d,0x54,0xf2,0xff, -0xd6,0x8f,0x57,0x5c,0xca,0x97,0x42,0x61,0x5f,0x2a,0x6e,0x6a, -0x5f,0x8a,0xfa,0xf1,0xc2,0xbf,0xef,0xc7,0x17,0x63,0x61,0x92, -0x2f,0x85,0xc1,0x58,0x00,0x6d,0x47,0x24,0x53,0xfb,0x18,0x97, -0x92,0xf2,0xdf,0xcf,0xc7,0xa0,0xcc,0x18,0x0f,0x96,0xca,0x30, -0x92,0xc1,0x91,0x0f,0x17,0x19,0x15,0x0e,0xe3,0x7d,0x0c,0x2a, -0x0d,0xa8,0x1d,0x4d,0x31,0x01,0x29,0xd7,0x76,0xd7,0x5d,0x7f, -0x93,0x2a,0x06,0xea,0x1a,0xe7,0xd6,0xf5,0xbe,0x12,0xec,0xa4, -0x5e,0xc6,0xf6,0x8a,0xba,0x8e,0x8e,0xea,0xd3,0x01,0x68,0x2f, -0xf5,0xfd,0xe2,0xa0,0x5f,0x5c,0x74,0x7c,0x9b,0x69,0xb2,0x46, -0x44,0x7b,0x27,0x19,0xa8,0x91,0xc3,0x99,0xda,0x9f,0x66,0x46, -0x61,0x6a,0x77,0x21,0xd6,0x99,0xd4,0x5c,0x92,0xf3,0xa0,0x92, -0x02,0xc9,0x19,0xd5,0xed,0x54,0x40,0xb2,0x33,0x3d,0xdc,0x67, -0x67,0xf4,0x97,0x86,0x4c,0x53,0x0f,0x75,0xf1,0x9c,0xd8,0x21, -0x8c,0x79,0xf1,0x02,0x15,0x58,0xc0,0x6a,0x99,0x58,0x0f,0xd6, -0x94,0x0c,0x17,0x75,0x5e,0x96,0xeb,0xc9,0xee,0xf7,0xfb,0xda, -0x12,0xb5,0x86,0xa4,0xce,0xf4,0xca,0x62,0x73,0x66,0x49,0x6b, -0x7e,0xfd,0xe2,0xec,0xe2,0xe8,0x74,0x6b,0xb1,0xa9,0xa2,0x3a, -0x51,0x6b,0x54,0x76,0xea,0xfc,0xc5,0xe6,0xcb,0xe3,0xbc,0x0e, -0xa7,0xd5,0x66,0x77,0xa4,0xa4,0x2b,0xa2,0x85,0x38,0x49,0x42, -0x66,0xb1,0xcd,0x5a,0x6a,0x4d,0xce,0xb3,0x16,0xc6,0xaa,0x93, -0xe3,0x6c,0x39,0x11,0xe5,0x6d,0x3d,0xac,0xbf,0xac,0xd0,0x5f, -0x09,0x64,0x18,0xe4,0xc4,0x02,0xda,0x5f,0x29,0x48,0x15,0x81, -0x3f,0x1f,0x42,0xba,0x30,0xfe,0x32,0x5a,0x20,0xbb,0x04,0x41, -0x64,0x0a,0x3a,0x22,0x69,0x4f,0xc9,0xb8,0x0f,0x28,0x0d,0xfb, -0x80,0x22,0x5b,0xb2,0x38,0x9a,0x9b,0xf6,0x11,0x1d,0x56,0x2e, -0xee,0x05,0xe2,0xba,0x72,0xef,0xe3,0xdb,0xb4,0xaa,0xb6,0x8f, -0x3e,0xfa,0xa8,0xa6,0x18,0x37,0x07,0x54,0xda,0xeb,0x8e,0x8a, -0x3e,0x20,0x46,0x33,0x47,0xcf,0xe1,0xaf,0x80,0x9f,0x34,0x68, -0x29,0xb5,0x78,0xc6,0xcb,0xdf,0x49,0xec,0xa3,0xa2,0x05,0xaa, -0x88,0x02,0xde,0xe0,0xb1,0xd1,0xa2,0xa1,0x05,0x9a,0xb1,0x06, -0x27,0xf2,0x31,0x92,0x88,0x62,0xc4,0x1e,0x74,0xd2,0xd1,0x91, -0x20,0xd0,0xe1,0xa1,0x74,0x29,0x53,0x52,0x5d,0x30,0x32,0xe8, -0x99,0x19,0x3f,0x3c,0xd1,0x52,0xeb,0xe0,0xd2,0x17,0xb7,0x04, -0x5f,0xa0,0xd2,0x37,0x5b,0x8b,0x17,0x5d,0xbc,0x20,0xda,0x98, -0x55,0x40,0x57,0x0d,0xb4,0x3b,0x1a,0x05,0x28,0x33,0x8c,0xd7, -0xdb,0x93,0xf4,0xc6,0x24,0x1b,0x33,0x92,0xae,0x52,0xe0,0x6c, -0x97,0xe0,0xca,0xc4,0xd4,0x64,0x10,0xbe,0x3e,0xde,0xd9,0xdc, -0x21,0xe9,0x68,0x9e,0x76,0x9c,0x48,0x4e,0x7e,0xf0,0xc1,0x49, -0xf6,0x42,0x4c,0xa7,0x74,0x49,0x19,0xbc,0x2f,0x11,0x6d,0xa2, -0x0e,0x91,0x82,0x0d,0xf4,0x4b,0x4a,0xcf,0x49,0x03,0x71,0x52, -0x03,0x22,0xa3,0x66,0x93,0xc4,0x29,0xb5,0x37,0xc9,0x08,0xb5, -0x6b,0xa9,0x49,0x11,0xf2,0xf9,0xa9,0xf8,0x0c,0xfd,0x09,0x66, -0xfa,0xa7,0x6f,0x28,0x8f,0xee,0xef,0xef,0x8f,0x2e,0xaf,0x9b, -0xb6,0xa4,0x2b,0xaa,0x67,0x09,0x91,0x04,0x6b,0xf0,0xb3,0x14, -0x2e,0x5e,0xc0,0x47,0x82,0x1d,0xd0,0xee,0x0a,0x68,0xb7,0x0e, -0xda,0xad,0x44,0x97,0x53,0x41,0x9c,0x84,0x92,0x23,0xda,0x4d, -0xe8,0x3b,0xc9,0xf7,0xa5,0xd3,0x04,0x5b,0x7c,0x18,0x98,0x91, -0xb0,0x71,0x49,0x2b,0x8e,0x42,0x71,0xec,0x0c,0x43,0x69,0x02, -0xeb,0x69,0xcc,0x9c,0x53,0x20,0x6d,0xb2,0x95,0xd3,0x16,0xcc, -0x31,0x27,0x36,0x27,0xe2,0x8a,0x13,0xcf,0xcc,0x69,0xf7,0x4b, -0x7c,0x6d,0x33,0x7f,0xf9,0xfc,0x9c,0xe9,0xe5,0x92,0xd2,0x1e, -0x2c,0x0b,0xae,0xec,0xeb,0x5b,0x79,0x31,0xf8,0xf5,0x95,0x5d, -0x5d,0x57,0x52,0x7a,0xbb,0x41,0x6f,0x99,0x59,0xbb,0xfb,0x29, -0x5f,0x8e,0x6f,0x37,0x6f,0xc4,0xa4,0x66,0x4e,0x42,0x84,0x99, -0xb7,0xd1,0x8c,0x05,0x13,0x69,0xfc,0x24,0x6c,0xcd,0x53,0x23, -0x11,0xbb,0x70,0x82,0x60,0xc7,0x6e,0x97,0x97,0x75,0xbe,0x17, -0xff,0xae,0x63,0x14,0x45,0xa7,0xea,0x6d,0x19,0xad,0x57,0x94, -0x8d,0x74,0x4d,0x6f,0x93,0xb4,0x11,0xc9,0xc5,0x1b,0x53,0x8d, -0xaa,0xd8,0xc0,0x2d,0xf8,0x9b,0x93,0x2f,0xbe,0x08,0xed,0x02, -0x29,0x4c,0x04,0xc6,0x77,0xdd,0x54,0xc5,0x4d,0x69,0x2f,0x6a, -0xa7,0xb4,0x17,0xa3,0xc6,0x89,0x5b,0x4a,0xa9,0x28,0x24,0x30, -0x9a,0xc9,0x68,0x09,0x93,0x5b,0x2e,0x37,0x06,0x4b,0x5b,0x85, -0x8d,0xaa,0x5e,0xdc,0x16,0x7c,0x16,0xdf,0x1d,0xfc,0x29,0x9e, -0xde,0x86,0xd7,0x07,0xda,0x82,0x37,0x07,0x98,0x9e,0xcb,0x64, -0x7c,0x38,0x0c,0x32,0x2f,0x96,0x4a,0x14,0x20,0x3b,0x37,0x7d, -0xa3,0x14,0x94,0x93,0xd1,0x78,0xf5,0xad,0x9b,0xc8,0x91,0x53, -0xc5,0xef,0xa9,0xc9,0x27,0x45,0x12,0x56,0x4b,0x8c,0x93,0x32, -0x04,0xf5,0x56,0xa9,0x6c,0x89,0x06,0x2a,0x19,0xad,0x66,0xb9, -0x19,0x58,0x0e,0x9b,0x05,0x17,0x7e,0xb7,0xfc,0xcb,0xf2,0xe9, -0x6f,0xad,0x7e,0x2b,0xf8,0x55,0xf4,0xbc,0xdf,0xbe,0xfc,0x32, -0x19,0xbe,0x58,0x4f,0xe6,0x06,0x9f,0x84,0xf6,0xd3,0x0c,0xea, -0x4c,0x42,0x45,0x5c,0x3a,0x18,0xb5,0x2b,0x87,0x41,0x15,0x5a, -0x90,0x95,0xd5,0xa9,0x83,0x9a,0xf0,0x88,0x78,0x4c,0x9a,0x68, -0x71,0x8c,0xb5,0x50,0x49,0x0b,0x94,0x22,0xad,0xd2,0x99,0x1a, -0xca,0x86,0xeb,0xe2,0x64,0x42,0xb6,0x33,0xe4,0x92,0xcb,0xa1, -0x54,0x1b,0xd6,0x05,0x59,0x70,0x1f,0x1d,0x16,0xcc,0xa2,0x90, -0x87,0x02,0x3b,0x46,0x1e,0x4d,0xb6,0x63,0x55,0x72,0xf8,0xac, -0xff,0x93,0xc1,0x45,0x15,0x05,0xe5,0xad,0x3a,0x57,0x5d,0x4e, -0xf0,0xcb,0x2f,0xca,0x6a,0x6a,0xca,0xee,0xdf,0xed,0xf6,0xf9, -0xdc,0xbb,0xc9,0xf0,0xbc,0xae,0xca,0xc6,0x44,0x21,0xa1,0xad, -0xc9,0xd6,0xec,0xc9,0x6c,0x2a,0xf6,0xe4,0xba,0xdd,0x17,0x71, -0x8d,0xb3,0xc0,0x5a,0x50,0xf0,0x57,0xe8,0xa7,0x7a,0xd0,0x61, -0x5a,0xf2,0x92,0x18,0x53,0x46,0x13,0x62,0xca,0x5c,0x02,0xea, -0x2e,0x29,0xb2,0x95,0x8c,0x9c,0x88,0x59,0x48,0xb1,0x61,0x47, -0x9f,0xda,0x79,0x5c,0x19,0x51,0x7b,0x80,0x4a,0x41,0xaf,0x3a, -0x41,0xc0,0xb5,0xdb,0xb6,0x6c,0xd9,0x56,0x50,0x5f,0x64,0x8a, -0x6f,0x8c,0xd6,0x18,0xf3,0x0d,0xdd,0x9d,0x9d,0xdd,0x86,0x7c, -0xa3,0x26,0xba,0x31,0xde,0x54,0x54,0x1f,0x37,0xfc,0xe4,0x93, -0xc3,0xda,0x3c,0xaf,0xce,0xa8,0xce,0xcd,0x4c,0xda,0xba,0x74, -0xdd,0xd2,0xad,0x49,0x99,0xb9,0x6a,0x63,0x86,0x27,0x4f,0xcb, -0xe3,0xfc,0x2c,0x06,0x49,0x19,0x23,0x09,0xb5,0x50,0x72,0x25, -0xa3,0x14,0x46,0x2e,0x39,0xeb,0xcf,0x4b,0x52,0x9f,0x0f,0x18, -0x91,0x3f,0xc2,0xad,0x8e,0x62,0x16,0x74,0x04,0x8d,0xed,0x38, -0x4c,0x5b,0xe5,0xd0,0x0b,0xdb,0xb6,0x6e,0xdd,0xf6,0xc2,0x73, -0x3d,0xbd,0xbd,0x3d,0xcb,0xc9,0xf0,0x91,0x27,0x9e,0x38,0xd2, -0xb4,0x61,0xd9,0x8a,0x65,0x1b,0x2e,0x9e,0x14,0x65,0xf4,0x20, -0xf3,0xad,0x68,0x8c,0x99,0x79,0xa6,0x22,0xa7,0x4e,0x90,0xd1, -0x53,0xd3,0x0d,0x2b,0x28,0xb3,0x52,0x1e,0x88,0x82,0xa3,0xa8, -0xfb,0xa3,0x9c,0x94,0xa3,0x43,0xb4,0x8c,0x66,0xad,0x02,0xc7, -0x54,0x15,0xfa,0x1b,0xc4,0x87,0x83,0x0f,0xe3,0xf6,0xe0,0x53, -0x78,0x90,0x0c,0x37,0x7d,0xd4,0x74,0xae,0x29,0xd4,0x86,0x24, -0x42,0x5f,0xdf,0x36,0x2c,0x26,0xc0,0xff,0x5f,0xb4,0x21,0xe2, -0xcd,0xca,0x41,0x7c,0x2c,0x78,0x1f,0xae,0x0f,0x0e,0xb3,0xb7, -0x06,0x5f,0x10,0x71,0x2f,0x01,0x9e,0x89,0x01,0x9e,0xc9,0x45, -0x1b,0x69,0xc4,0xce,0xc6,0x0c,0x93,0x09,0xf2,0x4b,0x77,0x69, -0x35,0x9a,0x4b,0x0b,0x72,0xc5,0x82,0x38,0xe6,0x9a,0x89,0x03, -0x42,0x8d,0x64,0x7c,0x40,0x88,0xcc,0x65,0x60,0xe5,0x08,0xae, -0x18,0xc4,0x72,0x28,0xb3,0xb0,0x06,0x86,0x94,0xec,0x44,0x56, -0x63,0x31,0xf0,0x0a,0x6c,0xa6,0x56,0x29,0xfe,0x85,0x34,0x5a, -0x93,0x5d,0x9c,0xb5,0x6e,0xf5,0xa6,0xab,0x0b,0x1b,0x5d,0xa6, -0xd8,0xc6,0x68,0xb5,0xd1,0x91,0xd9,0x33,0x4d,0x91,0x5d,0x6e, -0x0f,0xb4,0xde,0xf1,0x6e,0xfb,0xac,0x14,0x4b,0x46,0xd2,0xb1, -0xc7,0x9f,0x8e,0x64,0xba,0x15,0xee,0xe9,0x55,0xe6,0xae,0xea, -0xc6,0xda,0xe0,0x8f,0x45,0x5c,0x3b,0xc2,0xfd,0xbc,0x8d,0xca, -0xc4,0xf1,0xfd,0xcc,0x05,0xcf,0x24,0x4e,0xd3,0x5d,0xda,0xe2, -0x1e,0x53,0x85,0x54,0x4a,0x4a,0x98,0x94,0xa4,0x9d,0x55,0x4d, -0x17,0x06,0x60,0x84,0xd7,0x86,0x4e,0x66,0xc1,0xc9,0x73,0xec, -0x84,0x52,0x8f,0x62,0x8d,0x8d,0xe0,0xcf,0xd1,0x09,0x50,0x8a, -0xdd,0xd3,0xc1,0xcf,0x7b,0x7a,0xb0,0x02,0xa0,0x22,0xf8,0x02, -0x19,0x0e,0xbe,0x8a,0x8b,0x2f,0xd6,0xd3,0x39,0x22,0xbe,0x86, -0x3e,0x96,0x8e,0x90,0x89,0xed,0x9d,0x24,0x39,0x23,0xbd,0x36, -0xcc,0x45,0xa3,0xc8,0x19,0x80,0xcb,0x88,0xa8,0xe7,0xa8,0xa0, -0x64,0x76,0x3e,0x08,0x6f,0x6a,0x72,0xf5,0x1c,0x3e,0x8c,0x8f, -0x1c,0x3e,0x5c,0x4b,0x8a,0x6b,0x6b,0x2f,0xbe,0x5a,0x0b,0xcf, -0x35,0x83,0x9d,0x75,0x06,0xde,0xa9,0x42,0x95,0x54,0x17,0xa5, -0xb2,0xd0,0x15,0x1a,0x6f,0x56,0x4d,0xc5,0x0f,0xd4,0x48,0xa0, -0x6f,0x52,0x29,0xa8,0xdd,0xce,0x50,0x54,0xf2,0x60,0xa0,0x57, -0x2f,0x50,0x03,0x17,0x5e,0x8a,0xcf,0xe8,0xbd,0xad,0xf9,0x1d, -0x4b,0x14,0x1d,0x52,0x65,0x86,0x2d,0xa3,0xb4,0xf2,0x02,0x48, -0xe6,0x7f,0xe5,0x35,0x16,0xa5,0x77,0xb7,0x28,0x55,0xd9,0xe9, -0x8a,0xea,0x3a,0xfc,0x44,0x13,0xeb,0x2b,0xaa,0xbf,0x6a,0xc8, -0xb0,0x18,0x87,0x89,0x9d,0x10,0x87,0x99,0xd4,0x57,0x5c,0x7f, -0x7d,0x4b,0x5f,0x45,0xc6,0x61,0x64,0xe1,0xbe,0x92,0x31,0x91, -0x0f,0x6d,0x95,0x53,0x72,0xb0,0x58,0x8c,0x90,0x6c,0xc6,0xf1, -0x0b,0x7a,0x7a,0x84,0x99,0xaf,0x2d,0xfc,0xf2,0xc2,0x3c,0xdc, -0xb7,0x11,0xc8,0x11,0xdc,0xb3,0xe1,0x7c,0xf0,0xed,0xe0,0x0a, -0x91,0x8f,0xae,0x80,0xb6,0xa9,0x09,0xb5,0x2b,0xdc,0xd4,0x65, -0x97,0x31,0x03,0xff,0x7b,0x8c,0x55,0xda,0x22,0x71,0x4c,0xd2, -0x51,0x79,0x45,0x0f,0x6e,0x01,0xf4,0x6f,0x15,0xf1,0xa5,0x13, -0x6d,0x29,0x84,0xfa,0x10,0x6b,0x69,0x9d,0x4a,0x94,0x34,0x79, -0x4e,0x46,0x37,0x11,0x9b,0x4b,0x88,0xc5,0x89,0x21,0xf4,0x78, -0x6e,0xa6,0x51,0xd5,0x2b,0x9c,0x12,0x43,0x6e,0x52,0x3e,0x69, -0xc2,0x0c,0x0c,0xb7,0x39,0x16,0x9b,0x69,0x84,0x81,0xd9,0x6c, -0xc0,0x91,0x2f,0x47,0xdd,0x71,0x47,0x54,0xdb,0x8a,0xab,0x64, -0x57,0x2d,0x69,0xc3,0xb3,0xff,0x37,0x78,0x37,0x5e,0xfc,0xbf, -0xc1,0x03,0x61,0xd6,0x1c,0x37,0x96,0xe6,0xd2,0x8f,0xff,0xc3, -0xb1,0x14,0x4a,0x23,0xa0,0x3e,0x3a,0xa8,0x03,0x6a,0x4e,0x9a, -0xc5,0xa6,0xd1,0xc1,0x72,0x50,0xde,0x7a,0xf9,0xa7,0x00,0x64, -0xda,0xc5,0x9f,0x00,0xf5,0x7e,0x4e,0x9a,0x68,0x7b,0x08,0x93, -0x63,0x06,0x90,0x63,0xc9,0x20,0x8d,0x98,0xf6,0xb3,0xf1,0x59, -0x9a,0x49,0x71,0x0e,0xdd,0x25,0xe2,0x1c,0xb1,0xdc,0xb5,0xcc, -0xe4,0xda,0x6f,0x62,0x9c,0x23,0xec,0x18,0xf3,0x10,0x00,0xce, -0xab,0x9a,0xe9,0xd3,0xe9,0x7c,0x33,0xab,0x42,0x47,0x5b,0x99, -0x45,0xa9,0xb4,0x94,0xd9,0xf8,0x31,0xae,0x70,0xe6,0xce,0xbe, -0xde,0xeb,0x66,0x16,0x16,0xce,0xbc,0xae,0xb7,0x6f,0xe7,0xcc, -0xc2,0x26,0xa3,0xaf,0xd7,0xbd,0xae,0xb8,0xcf,0x67,0x34,0xfa, -0xfa,0x8a,0xd7,0xb9,0x7b,0x7d,0x46,0xa6,0x0b,0x07,0xb9,0x4d, -0x12,0x03,0xad,0xe8,0xa5,0xee,0xb9,0x8a,0x47,0xf3,0xe3,0x14, -0x74,0xe8,0x7e,0x0f,0xce,0xa2,0x5d,0x80,0xb9,0xec,0x8f,0x75, -0x8a,0x5a,0x47,0xd4,0x0c,0x29,0x21,0x8e,0xe3,0x6a,0x31,0x0d, -0xbb,0x42,0x8a,0x71,0x30,0x38,0x77,0xd1,0xa2,0xb9,0x87,0x1e, -0x71,0x97,0x97,0xbb,0x1f,0x21,0xc3,0xcb,0x86,0x86,0x96,0x05, -0x4f,0xe2,0xb5,0xee,0xc2,0xe2,0x42,0x37,0x12,0x69,0x3a,0x93, -0xd1,0x34,0x0d,0x39,0x69,0x2f,0x6b,0xc3,0x39,0x18,0x5a,0x68, -0x57,0x62,0xb8,0x5d,0xdc,0x45,0xd0,0x4d,0x8c,0xc9,0xb0,0xbe, -0xd4,0x8c,0x50,0x5f,0x6b,0x4c,0x22,0x1d,0x43,0xea,0x11,0x51, -0x32,0x69,0x59,0x49,0x22,0x9c,0x65,0x8b,0x14,0x37,0xd3,0x98, -0x6d,0xc8,0x03,0xa6,0x54,0x07,0x4b,0xc9,0x35,0x05,0xdd,0x3f, -0xba,0xac,0xdc,0xeb,0x6e,0x2b,0xd2,0x84,0x48,0x3f,0x6f,0xd9, -0x5d,0xcf,0x4d,0x20,0xfd,0x43,0x35,0xc5,0xd9,0x72,0xef,0x8c, -0xab,0xdb,0x43,0xe4,0xdf,0xf7,0x4c,0xc2,0xf4,0x7d,0x53,0x92, -0x9f,0xd3,0x3f,0x9b,0xc9,0x1a,0x35,0x5a,0x43,0xe9,0x1f,0x8a, -0xa7,0xc7,0x8d,0x8b,0x4d,0x73,0x2f,0x64,0x0c,0x4f,0xde,0x21, -0x53,0x2b,0x04,0x35,0xdc,0x8a,0x59,0x2d,0x6a,0x27,0x1d,0xab, -0xd4,0x28,0x8c,0x86,0xd2,0x50,0x00,0x98,0x4e,0xf4,0xb0,0xae, -0x31,0xf3,0xbe,0xa1,0x41,0x60,0xf3,0x98,0xd5,0x72,0xb8,0x07, -0xba,0xa7,0xbf,0xe7,0xa9,0xd9,0x87,0x56,0x8f,0xf5,0x50,0xef, -0xa2,0xa8,0xe0,0x1b,0xd8,0xd6,0xc0,0xfa,0x68,0x94,0x8e,0xc3, -0x7c,0xe0,0x7b,0x3d,0xf4,0x91,0x9d,0xca,0x49,0x39,0x5d,0x74, -0x12,0x31,0x0e,0xf9,0x7c,0xd2,0xd4,0x1c,0x2f,0x67,0xf4,0xa7, -0x53,0x3c,0x19,0x4c,0x39,0x27,0xc0,0x51,0xe4,0xa0,0x04,0xe6, -0xc6,0xd1,0x30,0x48,0x2a,0x13,0x6d,0x74,0x4a,0xe8,0x18,0xca, -0x1a,0x19,0x1f,0xaf,0xb0,0x88,0xe1,0x0a,0x4f,0x38,0xe7,0x80, -0xce,0xea,0x84,0x82,0x15,0xb6,0xd9,0x57,0x58,0x2b,0x72,0x67, -0x54,0xb6,0x76,0x94,0x35,0xb6,0xbb,0xea,0x6c,0x49,0x5b,0x97, -0xf7,0xac,0x37,0x97,0x67,0x74,0x55,0x37,0xb4,0x96,0x36,0xb7, -0xb8,0xea,0xed,0x49,0x57,0xc7,0xd5,0x79,0x8a,0x5c,0x45,0xf5, -0x95,0xae,0xd2,0xb8,0xf8,0xe8,0x2c,0x57,0x85,0x71,0xce,0xbc, -0x12,0x97,0xcb,0x52,0xe0,0xf3,0x39,0xcb,0xe3,0xa1,0xa4,0xc8, -0x6f,0x9a,0xbb,0x8a,0xe2,0x98,0x06,0xfd,0x53,0xc9,0x7c,0x89, -0x0a,0xaa,0x07,0xc5,0x6c,0xa3,0x4b,0xea,0x41,0xde,0x4d,0xe1, -0x78,0x9f,0xa8,0x01,0x11,0x95,0x73,0x20,0x46,0xa8,0xe6,0xc3, -0x7d,0x3d,0x1f,0x10,0x0b,0x59,0x7b,0xf1,0x56,0xb2,0xb6,0xa9, -0x89,0xdb,0x06,0x40,0x47,0x2a,0xcf,0xd2,0x50,0x3d,0x0d,0x82, -0x68,0x99,0x41,0x3f,0x61,0x3e,0x59,0x37,0xd1,0xbb,0xd4,0x4d, -0x11,0xbc,0x0e,0x69,0xf8,0x64,0x25,0x33,0x61,0xc4,0xa0,0x01, -0xd3,0x84,0x20,0x50,0x94,0x0f,0xc9,0xb4,0xde,0xc2,0x42,0xaf, -0x56,0xd6,0x93,0xe8,0x9c,0xde,0xd0,0x30,0xdd,0x99,0x08,0x42, -0x75,0x96,0xab,0xa3,0x54,0xaf,0x2f,0xed,0x70,0xe1,0x83,0xc1, -0xb5,0xed,0x1b,0xda,0xad,0x56,0xf8,0xc0,0xb7,0xb2,0x76,0x65, -0x01,0xee,0xc5,0xcc,0x2e,0xbc,0x74,0xfc,0x40,0x37,0x31,0x0e, -0x3f,0xb5,0xa1,0x28,0x11,0xe3,0x07,0xe9,0x98,0xfe,0x17,0xfe, -0xf1,0xfa,0xc0,0xfc,0x16,0x69,0xcb,0xfc,0xbe,0xd7,0xa1,0x05, -0x07,0x83,0xe7,0x71,0x14,0x9e,0x45,0x45,0x29,0xd4,0x67,0x86, -0x77,0xba,0x99,0x8f,0x74,0xb9,0x98,0x49,0x9d,0xfc,0x6d,0xef, -0x9c,0x14,0x1c,0xfa,0xd6,0x58,0x37,0x4b,0x02,0x1b,0x19,0x16, -0x77,0x21,0x12,0x75,0xb0,0x53,0x94,0xf8,0xd4,0x46,0x91,0xb1, -0x40,0x11,0x6b,0x66,0xb2,0x9a,0x29,0x23,0x2f,0x8f,0x21,0x0c, -0x7a,0x5b,0x32,0x12,0xa3,0x66,0xce,0x9e,0x19,0x95,0x98,0xd1, -0xe4,0xbd,0xb2,0x37,0xaa,0x17,0x9a,0xbd,0xe6,0x77,0xf8,0x89, -0x60,0xf7,0xef,0xf0,0xee,0x8b,0xf5,0xf8,0xc1,0xe0,0x10,0x6d, -0xbb,0x96,0xf3,0x0a,0x6b,0xbb,0x64,0x42,0xdb,0x27,0xe9,0xd1, -0x49,0xa2,0x6b,0x52,0xfa,0xd8,0xd8,0x18,0xa7,0xd5,0x25,0xb2, -0x21,0x4d,0x45,0x44,0x34,0x8f,0xea,0x51,0xc7,0x56,0x12,0x76, -0x6c,0x69,0xf0,0xd1,0x28,0x06,0x0f,0xcc,0xc9,0xe1,0x50,0x0d, -0xa9,0x1c,0xea,0x9e,0x29,0x19,0xea,0x9f,0x79,0xf6,0x0f,0x43, -0x9d,0xd3,0x25,0x7d,0x3d,0x33,0x4f,0xde,0xb8,0x77,0xef,0x8d, -0x78,0x01,0xee,0xbb,0xee,0xe6,0x9b,0xaf,0x0b,0x3e,0xc6,0xf2, -0x5c,0x10,0x69,0x60,0xfa,0x74,0x90,0x1a,0x16,0xe3,0xf5,0xe9, -0x24,0xc9,0x33,0x49,0x9f,0x46,0xaa,0x82,0x50,0xb8,0x83,0x8e, -0x0d,0xd1,0xa3,0x95,0xf2,0x10,0x87,0x51,0x19,0x6e,0x93,0x12, -0x93,0xbf,0xcf,0x59,0xd0,0x2b,0x99,0xbe,0x60,0xf6,0xdf,0x71, -0x12,0x7e,0xe4,0xe8,0x03,0x0f,0x1c,0x0d,0xf6,0x07,0x3f,0xa5, -0x34,0x2c,0x80,0xb6,0xe4,0x30,0x9e,0xeb,0xa6,0xb6,0xc8,0x78, -0x9e,0x9b,0x34,0xde,0xc6,0x28,0x44,0x9b,0x14,0x69,0x77,0xd2, -0x11,0x2b,0x61,0x11,0x03,0x71,0xd8,0xca,0x59,0xec,0x20,0x17, -0x87,0x82,0x07,0x24,0x27,0x18,0x85,0x6f,0x0c,0xee,0xc4,0x6f, -0x05,0x37,0xe0,0x7d,0x2d,0xc4,0xd2,0xd4,0x72,0xf1,0x6d,0x78, -0x61,0xa4,0x2e,0xf7,0xa2,0x21,0xaa,0xcd,0x4b,0x50,0x29,0xd7, -0xe6,0x22,0x0b,0xd9,0xfe,0x13,0xad,0x3e,0x0c,0x46,0x41,0x26, -0x27,0x8d,0x0d,0x84,0x72,0x21,0x9b,0x35,0xfc,0x6e,0x4d,0xef, -0x1d,0x3f,0xff,0x39,0x59,0xef,0xfb,0xb2,0x93,0x92,0xb2,0x7d, -0xb6,0xd0,0xd1,0x9c,0x9e,0x6e,0x06,0xf8,0x3e,0xfa,0xff,0x2f, -0xba,0x94,0xd4,0x14,0x1d,0xfb,0x10,0xf3,0x05,0xc6,0x70,0x37, -0xa0,0x7c,0xca,0xc3,0x88,0x2e,0x22,0x1c,0x87,0xbb,0xf1,0xfb, -0xe0,0x2e,0x62,0x9d,0x12,0xf6,0x43,0x8d,0x0c,0xff,0x0c,0xb8, -0xdb,0xc8,0x63,0xd0,0xa1,0x33,0x1b,0x5d,0xf4,0xc1,0x23,0xd4, -0x88,0x39,0xe1,0x93,0x69,0x22,0xe6,0x21,0xa5,0xa4,0xaa,0xb1, -0x03,0xf3,0x29,0x02,0x8b,0x15,0xeb,0xf1,0xd4,0xb4,0x20,0x04, -0xdc,0x9b,0xda,0x62,0xf1,0x34,0x78,0x5a,0x59,0x3b,0x89,0x12, -0xe4,0x06,0x46,0x01,0xa5,0x31,0x11,0xfb,0xf2,0x0b,0x2f,0x9e, -0x60,0x84,0x81,0x6f,0xc1,0x17,0xf3,0x0b,0xe9,0xea,0xd8,0xd1, -0x10,0x1d,0x08,0x5d,0x76,0xc2,0xe2,0x6c,0xc0,0x93,0xb9,0x6c, -0x7c,0xcc,0x98,0xec,0x0b,0x7d,0xcb,0x70,0x08,0x59,0x1e,0x51, -0x61,0x9e,0xa4,0xd6,0x3f,0xe6,0xd6,0x7f,0x28,0x50,0x3d,0xce, -0x37,0x92,0x5b,0xbd,0x74,0xde,0xad,0xf7,0x15,0xf9,0x91,0xc2, -0xe3,0x3f,0x38,0xd6,0x44,0x5c,0x0f,0xb9,0x9f,0x08,0xd9,0xe9, -0xd5,0xd0,0x8e,0x34,0xe8,0x9f,0x4c,0x71,0x6c,0x18,0x18,0x11, -0xd1,0x78,0x2d,0x30,0xf5,0xd8,0xd0,0xb3,0xb7,0x0b,0x70,0x5d, -0xcc,0x07,0x4b,0x56,0xd0,0xbe,0x0b,0xf5,0x0a,0x0e,0x8d,0x0d, -0xaf,0x1f,0xf3,0x09,0x35,0x31,0xad,0x54,0xec,0x80,0x44,0x18, -0x2d,0x69,0x41,0xc7,0x07,0xae,0x9a,0x9a,0xea,0xaa,0x3a,0x65, -0x4b,0x8c,0xd9,0xd3,0xe6,0x2a,0xee,0xf4,0x66,0xa8,0x73,0x4b, -0xcd,0x2f,0xe0,0xab,0xfa,0xde,0x70,0xcc,0xf5,0xc4,0x55,0xd6, -0x55,0x7b,0x74,0x99,0xe5,0x0e,0x9d,0xde,0xd3,0x9c,0x97,0x53, -0x5f,0x55,0xa1,0x3f,0xc4,0xc6,0x33,0xd0,0x52,0x06,0x6d,0x2e, -0xa5,0x56,0x9c,0x02,0x95,0xa1,0xf2,0x88,0x36,0x73,0x47,0x61, -0xac,0xcd,0xd9,0xb4,0x20,0x5b,0xe4,0x21,0x85,0x42,0xb4,0x13, -0x86,0x61,0x00,0x2a,0x50,0x36,0x6b,0x77,0x09,0x8c,0x9c,0x52, -0x56,0xa6,0x85,0x63,0x49,0xd8,0x9d,0x2f,0x10,0xbd,0xbe,0xf0, -0x7c,0x60,0x64,0xf3,0xe5,0x2a,0x6a,0x16,0x88,0x4a,0x90,0xfb, -0x83,0xa2,0x99,0xe3,0xc6,0x09,0x4d,0x4d,0x0d,0xa5,0x25,0x75, -0xa9,0x95,0xf1,0x16,0x57,0xad,0x3d,0xbf,0xbd,0xcc,0xa8,0xca, -0x2e,0xd2,0x65,0x78,0x6c,0x69,0xe6,0xca,0x01,0x8f,0xa3,0xc1, -0x9b,0xab,0xa8,0x4c,0xd0,0x5b,0x8b,0x8c,0xcd,0xd3,0xda,0xda, -0xba,0xf1,0xed,0xd5,0x2e,0x79,0x49,0x49,0x61,0x4e,0x81,0x2a, -0xd7,0x90,0xa2,0xce,0xaf,0xb1,0x99,0x3c,0x39,0x3a,0xb9,0x44, -0x96,0x6e,0xaf,0xb0,0xe6,0xb7,0xb8,0xf5,0x29,0x26,0x9b,0xba, -0x40,0x65,0x4a,0x4b,0x08,0x54,0x46,0xf9,0x03,0x8d,0xcc,0xbe, -0x33,0xc1,0x47,0x11,0xb3,0xaf,0x13,0xa8,0x34,0xa1,0x62,0x5c, -0x11,0xce,0x57,0x4e,0x18,0xf9,0x1e,0x1e,0xb5,0x18,0x2f,0x46, -0xdc,0xbf,0xa7,0xaa,0x9f,0xf2,0x94,0x2c,0xec,0x55,0x8b,0x22, -0x96,0x86,0xbe,0x41,0xb2,0xb9,0x31,0x65,0x1f,0xb3,0x2a,0x1b, -0x7c,0x7c,0xbc,0x29,0xf8,0x08,0x76,0x6c,0x5a,0xb2,0x24,0x78, -0x10,0xc7,0x4b,0x6e,0x68,0xc6,0x7f,0x0b,0xa6,0xd4,0xdd,0xf0, -0x1a,0x7e,0x8c,0xf6,0x4b,0x13,0xcb,0x37,0x1c,0x46,0x39,0x34, -0xee,0x94,0x4e,0x97,0x0d,0x47,0xf4,0x8b,0x95,0xbe,0xdc,0x1a, -0xd1,0x9a,0x48,0x8f,0xce,0xaa,0x10,0xf9,0x7a,0x18,0x70,0x53, -0xf0,0xf0,0xa5,0xc9,0x29,0x9a,0x1e,0x62,0xaf,0xa5,0xf3,0x30, -0x83,0xc0,0xe6,0xc2,0xc5,0x5e,0x98,0x40,0x7d,0xd6,0x47,0xc9, -0x46,0xfc,0x65,0xf0,0x95,0x14,0xb9,0xb6,0xaa,0xc4,0xd1,0x56, -0x62,0x30,0xf8,0xfb,0x4b,0xf2,0xea,0xdc,0x39,0x40,0xf3,0x0c, -0x4b,0x81,0xa1,0xb1,0xad,0xbd,0xa9,0xc8,0xab,0x6e,0x48,0xc3, -0x9b,0xc9,0xda,0xe0,0x97,0xe6,0xdc,0x8c,0x92,0x69,0x2e,0x57, -0x6f,0x85,0x29,0x4c,0xe6,0xf6,0xba,0xa8,0xba,0x76,0x53,0x5a, -0x0c,0xde,0x26,0xda,0xd2,0x55,0x80,0x93,0x86,0x88,0x19,0x58, -0x8b,0xa9,0x98,0x11,0x2d,0x52,0x31,0x87,0x12,0x7d,0x1f,0xc9, -0x45,0xc3,0x47,0x31,0x9c,0xd6,0x34,0x7c,0x84,0x14,0xa1,0xb1, -0xa3,0x84,0x2b,0x63,0xb9,0x94,0xd9,0x61,0xef,0x26,0x24,0xad, -0xbc,0xae,0x04,0x41,0xae,0x1e,0xc3,0x77,0xc2,0xdc,0x74,0xbe, -0xb7,0xbf,0xc2,0xe8,0x6c,0x1a,0xb4,0xaf,0x28,0x1d,0x08,0x38, -0x12,0xa5,0x69,0x5d,0xd5,0x8e,0xd6,0x92,0x4c,0x53,0xc5,0x74, -0x4f,0xe3,0xb4,0x69,0x8d,0x00,0x71,0xd9,0x75,0x0b,0xfc,0xed, -0x37,0xac,0x9d,0x9e,0x9e,0xdb,0xde,0x3b,0xb7,0x82,0xd8,0x4b, -0xf5,0x25,0x1d,0x85,0x14,0xdf,0x86,0xf6,0x86,0xa8,0x86,0x76, -0xf6,0x81,0xc2,0x72,0x20,0x99,0xc5,0x2f,0x1b,0x86,0xc5,0x2d, -0x2b,0xbe,0x5f,0x6c,0x46,0xd4,0x8e,0x84,0xe1,0x23,0xa1,0x14, -0x13,0x19,0xd1,0x09,0xb2,0x07,0x1b,0x55,0xcc,0x3a,0x7d,0x02, -0x2b,0x83,0xaf,0xb5,0xe0,0x37,0x82,0xe7,0xc8,0xba,0xed,0xbf, -0x6e,0xbe,0xb8,0x9b,0xea,0x05,0x2f,0xd0,0xd5,0x08,0x63,0x98, -0xd2,0xb5,0x94,0xc6,0xaf,0x10,0x1f,0xc7,0x40,0x59,0xae,0x17, -0xf2,0x2e,0xed,0x91,0x45,0xbe,0x9f,0x7a,0x5c,0xae,0xb0,0x5e, -0xd0,0xf3,0x80,0x9d,0x8b,0x53,0x36,0x9b,0x46,0xaf,0xce,0x40, -0x01,0x8d,0x55,0xe5,0xf1,0xb0,0x62,0x1e,0x1b,0xfa,0xc3,0xe0, -0x0e,0x88,0x67,0x21,0x92,0x87,0xd2,0xc0,0xc6,0xc7,0xb5,0xc7, -0x93,0x3d,0x79,0x42,0x82,0x40,0xc5,0xcc,0x8a,0xcc,0xf6,0xaa, -0x92,0xea,0x8d,0xcb,0x96,0x6d,0xac,0x2e,0xa9,0x6a,0xcf,0xf4, -0xcf,0xa8,0x68,0xee,0xe9,0x6e,0x69,0xe9,0xee,0x69,0x0e,0x34, -0x34,0xd5,0xd4,0x34,0x35,0xc4,0x65,0x7a,0x9a,0xed,0x8d,0x3d, -0xca,0xa8,0xe4,0x5e,0x5f,0xc7,0xd0,0x50,0x87,0xaf,0x37,0x39, -0x4a,0xd9,0xd3,0x68,0x6f,0xf6,0x64,0x36,0xd4,0xf8,0x52,0x7d, -0x35,0xec,0x03,0xf7,0x95,0x79,0x12,0x3c,0x65,0xec,0x83,0xf3, -0x1e,0x9b,0x6b,0x7b,0x69,0x6a,0xde,0x4b,0x1b,0xb9,0xa4,0x35, -0x1f,0xe9,0xaf,0xa6,0x71,0x7f,0x94,0x3e,0x9e,0x86,0xa4,0xe2, -0xe3,0x4e,0x6a,0xf1,0x85,0x78,0x2f,0xce,0x49,0x2b,0x14,0xe3, -0x5d,0x30,0xc2,0xa8,0x74,0x33,0xfb,0x05,0xaf,0x95,0xae,0x0a, -0x18,0xd3,0x9a,0xf2,0xf1,0xb9,0x99,0x1a,0x67,0xf3,0x40,0x88, -0xef,0xb4,0x9d,0xd5,0x8e,0x36,0x6f,0xa6,0xd1,0x3f,0xdd,0x4d, -0x39,0xf2,0x63,0xce,0x7c,0x78,0x78,0x02,0xe7,0x4d,0x2b,0xa2, -0x9c,0x07,0x2c,0xf9,0xd8,0x38,0xe6,0x23,0x28,0x0d,0x78,0xc1, -0x07,0x78,0x96,0xa0,0x5a,0x74,0x94,0x76,0x5e,0x00,0xd5,0x71, -0x31,0x7c,0x0c,0x95,0x4e,0xcc,0xff,0xfa,0x16,0xc3,0xbc,0x98, -0x16,0x14,0x8f,0x05,0xd3,0x4b,0x99,0x97,0x9a,0x05,0x0f,0x89, -0xd6,0x56,0x12,0x4f,0xfb,0xa0,0x59,0xaf,0xe9,0xdc,0x48,0x88, -0x81,0xeb,0x15,0xec,0xcc,0xc2,0xef,0x1b,0x06,0x43,0x25,0x89, -0x0f,0xd8,0x7c,0x67,0x28,0x19,0xd3,0x1d,0x7e,0xa2,0x08,0xee, -0x74,0xb3,0x33,0x1f,0x3f,0x2b,0x28,0x54,0x87,0x86,0x6c,0x28, -0x7f,0x90,0x85,0x7e,0x71,0x28,0xf4,0x9b,0x49,0x40,0x6c,0x79, -0x41,0x88,0xd2,0x01,0x6d,0xa6,0x2b,0x2e,0x80,0xa9,0x28,0x89, -0x29,0x31,0xff,0xe8,0x68,0x28,0xd4,0xc6,0xe9,0x0b,0x2d,0xba, -0xec,0x8c,0xc2,0x9a,0x6c,0xa3,0xd7,0x96,0x21,0xaf,0x89,0x2f, -0xb6,0xe6,0xbb,0xa3,0x94,0xe9,0xc9,0x83,0x4d,0x52,0xb9,0x84, -0xdc,0xdc,0x22,0xc8,0xa2,0x62,0xa2,0x37,0x0d,0x4d,0x97,0x26, -0xf4,0x39,0xed,0x35,0xc9,0x87,0x1d,0x96,0xc6,0x38,0xbd,0xbb, -0x3e,0x47,0x5b,0xe2,0x2e,0x4c,0xce,0x6a,0xcd,0xb7,0xf8,0xf3, -0x35,0xc9,0x7a,0x4b,0xb2,0x29,0x33,0xd7,0x6b,0x8f,0x52,0xe8, -0x8d,0x16,0xcd,0xea,0x41,0xeb,0x82,0x82,0x5a,0x8d,0x2d,0x27, -0x57,0xbd,0x7b,0x71,0x71,0x65,0x43,0x96,0xe1,0x8d,0x8c,0x26, -0x7b,0xa2,0xa7,0x0a,0x68,0xee,0x1f,0xdd,0x4d,0xe2,0x81,0xe6, -0x85,0xa8,0x12,0xed,0xa4,0x66,0x48,0x15,0xaa,0x16,0xc3,0x2d, -0x40,0xf3,0x0a,0x4a,0xf3,0x6a,0xe7,0x14,0x0e,0x51,0x35,0x0d, -0x30,0x9e,0xa2,0xa2,0x2b,0x96,0xdf,0x4f,0x45,0x97,0x7a,0xe4, -0x38,0x50,0x25,0x8a,0xa9,0x7e,0x35,0xb3,0xae,0x8f,0xa1,0x0c, -0x67,0x88,0xfe,0xc9,0x70,0x4d,0xa4,0xab,0x09,0x4a,0x8a,0xf8, -0x5b,0xa8,0x32,0x88,0xe2,0x41,0x9d,0x02,0x31,0x15,0x27,0x92, -0xdf,0x54,0xe0,0xd9,0x86,0x17,0xa6,0x30,0x72,0xba,0xdc,0x21, -0xf6,0xd3,0x93,0x72,0x3c,0x41,0x16,0xbe,0x74,0x55,0xeb,0xe2, -0xca,0xf4,0x4c,0xdf,0x40,0xb9,0xaf,0xd7,0x93,0xd6,0x20,0x8d, -0x71,0xe4,0x55,0x34,0x36,0x56,0xa4,0x1a,0x35,0x0a,0xa9,0xb4, -0xa1,0x63,0xa0,0x4d,0x61,0x6f,0xf1,0x5d,0x35,0x2d,0xcb,0x6e, -0xcf,0xb2,0xd9,0xed,0x6b,0x5c,0x8b,0xef,0x59,0xb2,0x61,0xdf, -0x9c,0x5c,0x4b,0xcd,0x8c,0xe2,0xe0,0x4d,0xa5,0x5a,0xfb,0xe2, -0xd5,0xab,0x97,0xc4,0xa5,0x68,0xe2,0x35,0xbd,0xf3,0x6e,0xb8, -0xeb,0x9a,0xb2,0x85,0x2d,0xf6,0x67,0x72,0x2c,0x77,0x5b,0x72, -0x4a,0x6b,0x2b,0x6a,0x4b,0xa9,0x7c,0xbc,0x17,0xcb,0xf0,0x2f, -0xf1,0x20,0x48,0x2e,0x35,0x95,0x55,0x12,0x36,0x94,0xd0,0x33, -0x6c,0x5d,0x33,0x7c,0xb5,0x83,0x83,0x0c,0xb2,0xee,0x5e,0x6c, -0xc2,0xb2,0x9e,0x1e,0xb0,0xf7,0xf8,0xfd,0x60,0xef,0x89,0x76, -0x96,0x0f,0xc7,0x12,0x1d,0xee,0xfd,0x8e,0xe7,0x7d,0xf8,0x0c, -0x8e,0x6d,0x6e,0xa6,0xbe,0x24,0xdc,0xdf,0xcf,0xee,0x8f,0x1f, -0x77,0x97,0x12,0xee,0x82,0x0b,0xf4,0x26,0xb1,0xde,0xd1,0xe9, -0x44,0x37,0xfa,0xa0,0x58,0x2f,0x9e,0xaa,0x5e,0xb5,0x58,0xef, -0xa3,0xf4,0x09,0x8c,0xde,0x1b,0xfd,0x27,0xde,0x88,0xae,0x81, -0x5a,0xb3,0x68,0x3b,0xa6,0xcc,0x07,0xe4,0xe1,0x94,0x68,0x71, -0xd2,0x6c,0x9c,0xab,0x90,0x6b,0x34,0xe6,0x02,0x44,0x9b,0xb4, -0x49,0x5a,0x13,0xfb,0x80,0x37,0xe7,0x8d,0x5e,0x20,0x79,0xe8, -0x6a,0xa8,0x93,0x2a,0xfd,0x05,0x34,0xf4,0x12,0x8a,0x56,0x26, -0xb0,0x90,0xac,0x78,0xcc,0x9c,0x72,0x25,0xd5,0x64,0x8f,0x7a, -0x52,0x36,0x1d,0x5b,0x5f,0x75,0x0c,0xa9,0x46,0xc4,0xd9,0x34, -0xf3,0x08,0x1d,0x6f,0x91,0xed,0x72,0x7d,0xcb,0xb7,0xe5,0x3c, -0x43,0xf2,0xfe,0x09,0x47,0x49,0x46,0x6a,0x06,0x4d,0x94,0xbc, -0xc4,0x07,0xb5,0xd9,0x19,0xad,0x60,0x94,0x58,0xd8,0x0e,0x55, -0x72,0xfa,0x89,0x6f,0x02,0x1a,0xbe,0x3a,0xba,0x1e,0x6f,0x47, -0xd7,0x03,0xe6,0x2a,0x6a,0xbb,0x73,0x9a,0x53,0xb4,0x68,0x20, -0xb8,0xa0,0x30,0x1b,0x5c,0x7c,0x8c,0xaf,0x59,0x5f,0x7b,0x7d, -0xf0,0x23,0x5a,0x0f,0xbb,0x9f,0xd5,0xd3,0x19,0x59,0x0f,0x70, -0xc8,0xeb,0xb8,0x8b,0x9c,0x85,0x7a,0xf4,0x11,0x3c,0x31,0x29, -0x5f,0x97,0x06,0x7a,0x5c,0x4a,0x2c,0x6b,0x85,0xdb,0x55,0x50, -0x23,0xf3,0x27,0x0e,0xc3,0x97,0xc7,0xc8,0x59,0xa8,0xb3,0xfb, -0x11,0x04,0x76,0x52,0xf7,0x80,0xc8,0x0f,0x74,0x6f,0xa6,0x2b, -0x2f,0x55,0xe7,0x58,0xbe,0x27,0x9d,0x85,0x87,0x46,0x7a,0x6a, -0xdd,0xd7,0x90,0xb3,0xac,0x4e,0x78,0xf6,0x34,0x3c,0xfb,0xc3, -0xd0,0xb3,0xe4,0xbb,0x9e,0x4d,0x01,0x04,0xf9,0xb3,0xd0,0x9e, -0x2e,0x78,0xf6,0x9f,0xac,0x3d,0xbd,0xb7,0xd2,0xf6,0xf4,0x6e, -0x15,0xcb,0x57,0xe1,0xd7,0xc1,0xae,0xa0,0xe5,0x7d,0xac,0xbc, -0x6f,0xab,0xf8,0xae,0x7f,0x97,0x86,0xab,0x46,0xd7,0x93,0x64, -0x74,0x3d,0xd4,0x33,0x70,0x80,0xd2,0x70,0x00,0xdd,0xc6,0xea, -0x39,0x84,0x4a,0xf0,0x6d,0xf8,0x2c,0xd4,0xac,0xa2,0x91,0x02, -0x39,0x73,0xcf,0x11,0xad,0x83,0xe7,0xbc,0x58,0xdd,0x5e,0xb5, -0x5c,0x8d,0xaf,0x78,0xed,0xb5,0xb4,0x3d,0x7b,0x4a,0x0e,0x77, -0x1c,0x2e,0xdd,0xb7,0x0f,0x9e,0x7b,0x19,0x9e,0x3b,0x1c,0x7a, -0x0e,0x8f,0x7f,0x4e,0x06,0xcf,0x55,0x62,0xab,0x57,0xad,0x92, -0xbf,0xbc,0x67,0x4f,0xda,0x6b,0xaf,0xad,0xdd,0xb7,0xaf,0x14, -0x9e,0xa4,0xed,0x68,0x46,0x25,0x24,0x15,0x53,0x7c,0x66,0xec, -0xa7,0xed,0x98,0x81,0xae,0x65,0x78,0xd6,0x42,0x79,0x22,0x94, -0x5b,0xd1,0xcc,0x51,0xba,0x1f,0xb7,0x0c,0xcd,0x9c,0x4b,0x75, -0xdb,0x7b,0xa3,0xcd,0x94,0x87,0xa0,0x69,0x20,0x06,0xa9,0xb3, -0x26,0x66,0x22,0x89,0xa1,0x21,0x32,0x45,0x7e,0x1c,0x35,0x7a, -0xa3,0xcf,0xd1,0xc9,0x04,0x39,0x1d,0x7f,0xee,0x64,0x57,0xb2, -0x4a,0x18,0x3f,0x0a,0x91,0xce,0xa0,0x0b,0x8d,0xc4,0xa3,0xbf, -0xc1,0xb2,0xe0,0x37,0xbf,0x21,0xa5,0x11,0x23,0x52,0x7c,0x2f, -0xe5,0xdd,0x61,0xf6,0xde,0xda,0x89,0xef,0x45,0x97,0x8e,0x01, -0x47,0xce,0x80,0xc5,0xb3,0x86,0x48,0x59,0x43,0xb2,0x05,0xb7, -0x4b,0x25,0xc8,0xc7,0x37,0x44,0xa7,0xeb,0xd7,0x29,0x78,0x43, -0x3e,0xc0,0xb2,0xdf,0xfc,0x26,0xf8,0xcd,0x17,0x13,0xda,0x31, -0x38,0xea,0x27,0xb1,0x80,0xbf,0x0e,0x44,0x82,0x8f,0x72,0x64, -0x68,0x0d,0x52,0xc6,0x08,0xef,0x6d,0xf6,0xda,0x2c,0xfa,0xda, -0x2c,0x11,0xff,0x0c,0xf6,0xda,0x38,0x78,0xad,0xa8,0xc5,0x27, -0x18,0xc5,0xd0,0x0e,0x51,0x6f,0x8a,0x6b,0x8a,0x84,0x09,0xc4, -0xb1,0x17,0xb4,0x79,0xf4,0x26,0x4f,0x9d,0x79,0x5a,0xdf,0xbc, -0xda,0x32,0x5f,0x63,0x42,0x4b,0x4c,0x96,0xb7,0x25,0x83,0xb7, -0xf2,0xf9,0xf4,0xc2,0x7a,0xbb,0xb3,0xa1,0x28,0x53,0xb6,0x70, -0x9f,0xa4,0x36,0x90,0x50,0x52,0x52,0xe3,0xd2,0x19,0xcb,0xf3, -0xb4,0xa4,0x2e,0xb2,0xe1,0x04,0xb5,0x01,0xfd,0x82,0xa0,0x1f, -0x69,0xbb,0x3b,0xa9,0xbe,0x0b,0xb5,0x9b,0xe6,0x35,0x66,0x84, -0xe9,0xc7,0x93,0x27,0xc6,0xe8,0x97,0x41,0x0b,0x32,0x44,0xc1, -0x45,0x57,0x44,0x89,0x11,0xa4,0x0c,0x96,0x33,0x41,0xd1,0xd2, -0x31,0x6a,0x7a,0xdd,0x53,0x7a,0xc5,0x72,0xd5,0x78,0x02,0x7f, -0x16,0x89,0x42,0x41,0x08,0xb1,0x2c,0x8e,0xcb,0x1f,0xc6,0x63, -0x30,0x86,0xd9,0x99,0x71,0x7d,0x80,0xd1,0x6f,0x47,0x37,0xe2, -0x4f,0xc9,0x79,0x30,0x77,0x55,0xd4,0xf0,0x53,0xb3,0xa4,0x50, -0x24,0x86,0xd3,0x92,0x80,0xd7,0x93,0xb9,0xaf,0xc1,0x54,0xab, -0xda,0xec,0x10,0x7e,0x6b,0x2c,0x6d,0xb5,0x75,0xe6,0xb5,0x95, -0x9b,0x4c,0xe5,0x6d,0x79,0x9d,0xb6,0xd6,0x52,0x23,0xf6,0x36, -0x5d,0xb7,0x61,0x96,0xc1,0x38,0x7d,0xf1,0xe5,0x55,0x7d,0x55, -0x97,0x2f,0x9e,0x6e,0xcc,0x9c,0xbd,0xe1,0x3a,0x71,0x2c,0x2f, -0x83,0xfa,0x6f,0x0c,0xd5,0x1f,0x3b,0x56,0xbf,0x92,0x8f,0xa5, -0x90,0x4d,0xc9,0xa2,0x50,0x56,0x97,0x5e,0xc0,0x37,0xb2,0x17, -0xd8,0xdb,0xe9,0x0b,0xda,0xed,0x63,0x2f,0x98,0x9d,0x19,0xf1, -0x02,0xc3,0x2c,0xf6,0x02,0x8c,0xde,0x85,0xfa,0xbf,0x86,0xfa, -0xe5,0x28,0x97,0x32,0x74,0x38,0x5e,0x8e,0x9d,0x22,0x07,0x89, -0x19,0x03,0xa1,0x65,0x1d,0x52,0x66,0x4c,0xa8,0x95,0xe2,0x8c, -0xf0,0xbb,0x58,0xf3,0xbb,0xdf,0xed,0x12,0xb6,0xfb,0x2f,0x7c, -0xe3,0xa7,0x75,0x0d,0x41,0x5d,0x97,0xb3,0xba,0xb2,0xc7,0x56, -0xfa,0x22,0x1a,0x28,0xa5,0x83,0x21,0x94,0x92,0x49,0xf3,0xb5, -0x65,0xac,0x1e,0xac,0x34,0xb2,0xf9,0x65,0x7c,0x79,0xf0,0xfd, -0xdf,0xfd,0x8e,0x9c,0xbf,0xb0,0xd5,0x2f,0xc8,0xfc,0x22,0xde, -0x4b,0xa1,0xae,0xcf,0xa0,0xae,0x72,0xea,0x33,0x95,0x80,0x35, -0x58,0x21,0xd6,0x65,0xe4,0xed,0x32,0xf2,0x15,0x71,0x74,0xe2, -0x39,0x8b,0x1b,0x94,0x89,0xce,0x50,0x6e,0xb4,0x03,0x8e,0x89, -0xe1,0x8c,0x9a,0xd2,0xd0,0x62,0x14,0x20,0x12,0xf4,0x86,0x9f, -0x2e,0xc5,0xa5,0x39,0x52,0x6c,0x66,0xc2,0xea,0xa0,0xb4,0x13, -0x17,0x51,0xa5,0xa4,0xaa,0xa9,0x5b,0xc2,0xbd,0x13,0x99,0x9c, -0x8e,0x05,0x97,0x0a,0x57,0xda,0x6c,0xb1,0x8a,0x94,0x68,0x65, -0x7c,0x7d,0xa0,0xbd,0x3d,0x50,0x1f,0xaf,0x8c,0x4e,0x51,0xc4, -0xda,0x6c,0x47,0x9e,0xd3,0x28,0x94,0xfa,0x72,0x97,0xab,0x5c, -0xaf,0x54,0x68,0x9e,0xdb,0xe5,0x34,0x57,0xa6,0xe7,0x18,0xd2, -0x62,0x53,0x32,0x14,0x16,0xb3,0xdf,0x6c,0x51,0x64,0xa4,0xc4, -0xa6,0x65,0xe6,0xa6,0x57,0x9a,0x9d,0xfe,0xb6,0xdc,0x3c,0x55, -0xaa,0xd3,0x60,0x2b,0x96,0x4b,0xe4,0xc5,0x36,0x83,0x33,0x55, -0x95,0x97,0xdb,0xe6,0x9f,0x88,0x67,0xf6,0x18,0x9e,0xe5,0x4e, -0xea,0xa5,0xc3,0x11,0xda,0x5f,0xc6,0x70,0x4a,0x82,0xa3,0x49, -0x34,0xb5,0x9d,0x62,0x0e,0x22,0xdc,0x11,0xce,0x27,0x75,0xd0, -0x84,0x32,0x66,0x2e,0x63,0xc6,0xdf,0xc0,0x15,0x09,0x98,0x2d, -0x9d,0x51,0x89,0xb3,0x2d,0x6a,0x3d,0xe5,0x41,0x19,0xc5,0x9b, -0x61,0x8d,0x23,0x56,0xe6,0xd0,0x01,0x03,0xdd,0x90,0xf6,0xbd, -0xf0,0x24,0xe7,0x29,0xa2,0xb9,0x99,0x13,0x10,0x35,0xe4,0x7c, -0x1b,0xa2,0x62,0xee,0x0c,0xe0,0x1a,0x04,0x5c,0x99,0x5e,0x12, -0xc6,0xf4,0x12,0xe6,0xfa,0x44,0x8d,0x5d,0x78,0x10,0xcf,0x6c, -0x0c,0x3e,0x04,0x4c,0x75,0x61,0xeb,0xe4,0x67,0xd0,0xe4,0x67, -0xa4,0xf0,0x0c,0x3e,0x1a,0x7c,0xa8,0x11,0xcf,0xe4,0x0f,0x11, -0xea,0x60,0x90,0x7a,0x32,0xcc,0xd6,0x9c,0x77,0x8f,0x71,0xb5, -0x18,0x78,0x11,0x2e,0x9d,0x2f,0x34,0x16,0xd0,0x17,0x9f,0x15, -0xb9,0x4a,0x70,0x52,0x66,0x0e,0x7d,0xa3,0xde,0x37,0x55,0xd1, -0x72,0xaa,0x43,0x83,0x8d,0xfb,0x1b,0x1f,0x07,0x20,0xc3,0xc1, -0x37,0xe7,0x05,0xdf,0xa4,0x9a,0x29,0x09,0xfc,0xad,0x7a,0x90, -0x6d,0xb1,0xe0,0x11,0x66,0x20,0x23,0xb8,0x3b,0xe5,0xe8,0xf8, -0x58,0xcf,0x8a,0x7e,0x17,0x0d,0x02,0x65,0xb3,0x79,0x51,0xf1, -0x98,0xc1,0x8f,0x99,0x23,0x13,0xfd,0xb2,0x49,0x99,0x58,0x3c, -0xbd,0x58,0x37,0x71,0xb9,0xe2,0x98,0x79,0x67,0xa2,0x05,0x26, -0x11,0x0b,0x04,0x57,0x64,0x3c,0x47,0x35,0xb4,0xd8,0x92,0x46, -0x32,0x93,0x19,0xcf,0xe4,0x40,0x45,0x22,0x47,0xe5,0x38,0x45, -0x5e,0x72,0xb0,0x3b,0x72,0xf8,0xa2,0x2e,0x90,0x5e,0xdc,0x45, -0xa0,0x2e,0xfb,0x04,0xaf,0x80,0xd3,0x40,0x7a,0xc9,0x3b,0x1e, -0xad,0xe9,0xee,0xae,0xa1,0x90,0x95,0x9f,0x9f,0x05,0x80,0xaf, -0xe4,0xd4,0xc2,0xfb,0x26,0x5e,0x59,0x30,0xd0,0xdf,0x3f,0x40, -0xc1,0x53,0x54,0x00,0x7f,0xec,0x03,0x1b,0x18,0x4d,0xe3,0xa6, -0xb8,0x44,0xe9,0x8c,0x80,0xce,0xfd,0x61,0x3a,0xd3,0x15,0x73, -0x1d,0xe8,0x0c,0x95,0x14,0x9d,0xa8,0x4b,0x0c,0x3d,0x72,0x3a, -0x97,0x70,0x3a,0xd3,0x63,0x3a,0x3f,0xea,0xf9,0xb1,0xfd,0xd2, -0x74,0xe6,0x0b,0x0f,0xc7,0xc8,0xea,0xa4,0x05,0xce,0x10,0x59, -0x65,0xcc,0xc1,0xdf,0x4c,0xe9,0xaa,0x99,0x4c,0xd8,0x2c,0x7e, -0x7d,0x0b,0x55,0xbe,0x1a,0x71,0x5d,0x1c,0x0d,0x81,0xc6,0x21, -0x1f,0x8f,0x31,0x88,0x04,0xa6,0x7e,0xb1,0x8f,0x79,0xb9,0x70, -0x23,0xb4,0x27,0x77,0x84,0x7a,0xc0,0xa1,0x12,0x67,0x78,0x4d, -0xa8,0x0f,0xae,0x35,0x8f,0x7c,0x5b,0x77,0xc8,0xb3,0xd5,0xd2, -0xe4,0x70,0x76,0x7e,0xc4,0x72,0x84,0x84,0x09,0xde,0x9c,0x6b, -0xdc,0xb7,0x1b,0xab,0x9b,0x9b,0x6a,0x28,0x98,0xb2,0xb3,0x4d, -0x00,0x79,0xf8,0xf9,0x94,0xa0,0xff,0xc7,0x95,0x4d,0x4d,0x95, -0xb5,0x56,0x69,0x76,0x80,0x9e,0x04,0xb2,0x65,0x49,0xee,0x4c, -0x7e,0xc3,0x39,0x7e,0xc4,0xbb,0xdb,0xda,0xc5,0xbf,0xa2,0xfc, -0xac,0x02,0xda,0x8f,0xf0,0xb1,0xe9,0x48,0xd1,0x91,0xe0,0x3b, -0xed,0x6d,0x50,0x58,0xc4,0x3e,0x35,0xda,0x88,0xab,0x63,0x1f, -0x30,0xae,0x71,0x34,0x8c,0xeb,0x69,0xdf,0x36,0xae,0xa9,0x59, -0x1e,0x5d,0x1f,0x1a,0xd3,0x11,0xf7,0x8f,0xd3,0x2e,0x11,0xfb, -0x48,0xd0,0x27,0x25,0x4e,0x5a,0x99,0x14,0x09,0x76,0xd1,0xb0, -0x17,0xc4,0x5a,0xea,0xeb,0xc1,0x8e,0x5d,0x1c,0xbc,0xfb,0xe2, -0x5f,0xe8,0x27,0xb3,0x9d,0x3a,0x47,0x17,0x82,0xed,0x44,0xe3, -0xdc,0x2d,0x34,0xfb,0x39,0x09,0xb5,0xa2,0x36,0x1e,0xc7,0x38, -0x86,0xea,0x47,0xb8,0x06,0x8f,0x1c,0x50,0xba,0x50,0x40,0x2e, -0x2e,0x2c,0x7a,0x73,0xb9,0x60,0xce,0x65,0xad,0x1f,0x06,0xf6, -0x30,0xf1,0x94,0xe1,0xaa,0x70,0x99,0x16,0x4a,0xab,0xd8,0x59, -0x53,0xf8,0xaa,0x07,0xce,0x93,0xf8,0x92,0xd3,0x50,0xde,0xd3, -0xd8,0x44,0xf9,0xf8,0xc5,0x92,0xe3,0x27,0xcc,0x43,0xda,0xc9, -0x4a,0xef,0xb4,0x58,0x99,0x88,0xcf,0xc4,0xa9,0x6a,0x3f,0xc6, -0x7f,0xcb,0x70,0x37,0xe7,0x3b,0x06,0xcc,0x4e,0x8d,0xdf,0x52, -0x5a,0xe5,0x75,0x55,0x75,0x37,0x97,0x79,0xac,0xd9,0x53,0x97, -0xda,0xcb,0xfc,0x95,0x4a,0x65,0x66,0x16,0x3f,0x08,0x59,0x65, -0xb6,0x54,0xad,0xbe,0x24,0x45,0xed,0xcc,0xb5,0xe4,0x27,0x24, -0xa9,0x3b,0x5d,0x05,0xcd,0x2a,0xa9,0x26,0x90,0x73,0xa9,0x0b, -0xa7,0xec,0xc5,0x4a,0xa5,0x44,0xae,0xf2,0x9a,0x43,0x27,0xa2, -0x8c,0xcf,0x1f,0x5d,0x8e,0xcf,0xb3,0x39,0xd5,0xe2,0x61,0x71, -0x93,0xca,0x31,0x7b,0x65,0x42,0x34,0x37,0xa4,0xc4,0xd0,0x29, -0xd1,0xf2,0xa3,0x21,0xf1,0x6c,0x6e,0x89,0x96,0xb3,0xf9,0x77, -0xa5,0x19,0x27,0x38,0x3b,0xfd,0x66,0xb3,0xbf,0xd3,0xf9,0x61, -0xe3,0x60,0xe3,0x57,0x26,0x5f,0x77,0x61,0x61,0xb7,0xcf,0x74, -0xe1,0x27,0x42,0xe2,0x85,0xbf,0x8b,0xbb,0x15,0x27,0x81,0x1c, -0x78,0x84,0xcd,0xff,0x05,0x68,0x8e,0x2e,0xa2,0x9b,0x6e,0x4e, -0x9e,0xff,0x8b,0x71,0x8a,0x32,0x30,0x05,0x09,0xe1,0x59,0x3e, -0x7a,0x96,0x42,0x6f,0x80,0x06,0x64,0xc2,0xb1,0xe0,0x14,0x5d, -0x8e,0x4d,0x4b,0x6d,0x70,0xdd,0x0f,0x67,0xc3,0x20,0x59,0xbc, -0xc8,0xcf,0xaa,0x2b,0x06,0xde,0xaa,0x0e,0x7f,0xab,0x76,0x8e, -0x35,0xf6,0x5b,0x67,0x03,0xc7,0x65,0x3d,0x8c,0x99,0xd6,0x18, -0xe7,0x55,0xae,0xec,0x74,0x3a,0x3b,0x57,0x56,0x86,0x8e,0xae, -0xe9,0x95,0x59,0x59,0x95,0xd3,0x5d,0xfc,0x58,0xd2,0xd4,0xd9, -0xd5,0x58,0x50,0xa1,0x74,0xc7,0x9a,0x74,0x56,0xbb,0x2d,0x57, -0x9f,0x95,0x50,0xa4,0xac,0x4e,0x72,0xf4,0x6d,0x6a,0x6b,0xbd, -0xaa,0xcf,0xe1,0xe8,0xbb,0xaa,0xb5,0x6d,0x53,0x9f,0xc3,0x6b, -0xa9,0x1d,0x74,0xf9,0x5c,0x83,0xb5,0x96,0xf0,0xc9,0xbc,0xb9, -0x9d,0x5d,0x73,0xf2,0xb2,0x32,0x34,0x3a,0x57,0x6e,0xa9,0xcd, -0xa5,0x4f,0xcb,0x34,0x3b,0xe8,0x10,0xbb,0x0c,0xb4,0xeb,0x9f, -0xf9,0x5c,0xa9,0x07,0xf0,0xfb,0x84,0x52,0xab,0x92,0x71,0xe7, -0x18,0xb5,0x42,0x2b,0x8d,0xbd,0x53,0xc4,0xdf,0x29,0xd1,0x62, -0xd8,0xda,0xf7,0x4c,0x36,0xf9,0xb7,0x99,0x2e,0x7e,0xd7,0x54, -0x47,0xa3,0xfd,0x50,0x74,0x04,0xe0,0x04,0xc0,0x08,0x80,0x64, -0xd6,0xd8,0x92,0x78,0xf9,0xb8,0xab,0x02,0x4d,0x74,0x2c,0xa0, -0x57,0xe8,0x2d,0x9f,0x8b,0x27,0x52,0xe6,0xbb,0xd0,0xfb,0xc9, -0xda,0x61,0xe8,0x22,0x3b,0xaa,0x14,0xdb,0x44,0x03,0xcc,0x6c, -0x3b,0xb6,0xb5,0x54,0x53,0xd3,0x57,0xe7,0xf1,0x57,0x1f,0x43, -0x79,0xd0,0x9b,0x15,0xac,0xcc,0x0f,0x47,0x31,0x24,0xe2,0x87, -0x32,0x0f,0x2b,0x2b,0x82,0x52,0x8f,0xb8,0x3c,0x1f,0x90,0x29, -0x66,0x2b,0x53,0xbf,0xab,0xb7,0xac,0x74,0x91,0x09,0x08,0x4e, -0x16,0x46,0xf4,0x16,0xc1,0x45,0x3b,0x56,0xe1,0x3c,0x4b,0x6d, -0x91,0x4e,0x57,0x44,0xe9,0x5b,0x98,0x91,0x51,0x58,0x6b,0xc9, -0x28,0xa4,0x0b,0x9b,0xe8,0x39,0x3b,0xe2,0x9c,0x5e,0x5d,0x66, -0xb6,0x23,0xdf,0x9a,0x91,0xa5,0xd5,0x66,0xe1,0x41,0x5d,0x41, -0xad,0xd5,0x5a,0x5b,0xa0,0x0b,0x1d,0x73,0x93,0x4d,0x05,0xfa, -0x14,0x7d,0x81,0x29,0x39,0x7c,0x52,0x78,0x3c,0x53,0x6b,0x8d, -0x6f,0xad,0xcf,0xd0,0xc8,0x35,0x5e,0x31,0x1e,0xad,0xc0,0x07, -0x89,0x9e,0xe5,0xad,0x68,0xa8,0x3c,0x8a,0x0a,0xaf,0x79,0x1d, -0x9f,0x03,0xcf,0x73,0xe1,0xbe,0x25,0x9b,0x31,0x32,0xdd,0x8f, -0x26,0xed,0xd1,0xd1,0x25,0xb0,0x69,0x84,0x18,0x3e,0x0d,0x85, -0x78,0x02,0x05,0xe2,0x2b,0x6d,0x68,0x8a,0x5f,0x2a,0x1c,0x93, -0xa9,0x86,0x71,0xd3,0xc5,0x50,0x66,0x95,0x4b,0xe9,0x52,0xbb, -0xd8,0xd2,0x28,0xaf,0x59,0x6e,0x35,0xab,0x55,0x8b,0xfa,0xce, -0xf4,0x6d,0xab,0xae,0x16,0xaa,0xfd,0x05,0x58,0x32,0x6d,0x9a, -0x04,0xe3,0x83,0x1f,0x38,0x1c,0x1f,0x60,0xf5,0xce,0x9d,0xc1, -0x0f,0xae,0xee,0xbe,0xef,0xbe,0xee,0xab,0x19,0x1e,0xbb,0xf0, -0x2c,0xfc,0x3a,0xf0,0x98,0x01,0x3a,0xf1,0x1e,0x9a,0x26,0x15, -0x8a,0xab,0xc7,0x87,0x66,0xa3,0x0d,0xce,0x49,0xa6,0x0c,0xf4, -0xf2,0x7e,0x78,0x82,0xb1,0xc4,0x48,0xe8,0x44,0x11,0x3a,0x31, -0xd0,0x93,0xb5,0x74,0x67,0x00,0x71,0xd0,0x52,0xe3,0x2c,0x93, -0xe5,0x06,0x0f,0x23,0x2b,0x3f,0xdb,0x4c,0x27,0xc1,0x34,0xd4, -0x7a,0x13,0xd8,0xe2,0x7e,0x2d,0xca,0xe4,0x3b,0xf6,0x88,0x8b, -0xae,0x94,0x6c,0x58,0xc7,0xb3,0xc9,0x6d,0xe1,0x1c,0x5b,0xa6, -0x3c,0x7e,0x6f,0x9e,0xb1,0xad,0x79,0xa8,0xc9,0x6f,0x65,0x43, -0x95,0xe9,0x4a,0xfc,0x84,0x51,0x47,0x24,0xb1,0x5e,0xa7,0xa7, -0x74,0x5a,0x63,0x53,0x9b,0xd9,0x19,0x6b,0x93,0xa7,0x99,0xf2, -0x74,0x55,0x4d,0x96,0x23,0xb6,0xbc,0x8a,0x1c,0x1f,0x5e,0xa8, -0x4b,0x53,0x5b,0x3c,0xf9,0x9e,0x22,0x5d,0x7b,0x86,0xda,0x14, -0x9f,0x96,0x12,0x57,0x53,0x71,0xa8,0xe4,0x87,0x1a,0x75,0x4c, -0xa1,0x59,0x9f,0x0b,0x34,0xb9,0x09,0x68,0xf2,0x2a,0xb7,0x55, -0x7a,0xe9,0x98,0xd3,0xf2,0x25,0x00,0x71,0xe3,0xfc,0xf4,0x31, -0x1b,0x04,0x90,0xa6,0x7b,0x59,0x73,0x7a,0xf0,0x93,0xfd,0xec, -0x44,0xf4,0x68,0xe2,0x18,0x3a,0xa2,0xc1,0xc1,0xd1,0xb9,0x94, -0x9d,0x96,0xd7,0xda,0xd3,0xdb,0xd2,0xd2,0xdb,0xdb,0x92,0xef, -0x70,0xe4,0x03,0xe0,0x59,0x73,0x7a,0x7b,0xe6,0xcc,0xe9,0xe9, -0x9d,0xe3,0xf6,0xda,0xcb,0xed,0x5e,0xf6,0x21,0xf2,0xe0,0x35, -0x78,0x0d,0xfe,0x03,0x93,0x0f,0x99,0x62,0x5e,0xa4,0x38,0x63, -0x1d,0xca,0x8b,0x9c,0x2c,0xc1,0xab,0xe9,0x7e,0xc8,0x63,0xad, -0x1a,0x93,0xad,0x5a,0xde,0xaa,0x49,0xeb,0x3f,0xc5,0x38,0xb3, -0x8a,0xb6,0x2b,0xcb,0xef,0xd4,0x6a,0x9d,0xfe,0xac,0xd0,0x91, -0xae,0xbb,0x07,0xc0,0x6b,0xb4,0x0e,0x2a,0xff,0x1c,0xda,0xd0, -0xb1,0xca,0x9f,0x9f,0xef,0xa7,0x40,0xf5,0x8b,0x1d,0x35,0x92, -0x7c,0x52,0x42,0xd7,0x5f,0x0e,0x8b,0x5b,0x21,0x8b,0xfa,0x85, -0xfa,0xc2,0x5e,0x2b,0xfc,0xa9,0x81,0x7f,0x69,0x54,0x4a,0x6e, -0x7d,0xb2,0x74,0xf3,0xcb,0xaa,0x97,0x9b,0x01,0x36,0x97,0x6e, -0x69,0xb4,0x1d,0xaa,0xa9,0xa9,0x3a,0x79,0xb2,0xaa,0xa6,0xe6, -0x90,0xed,0x71,0x51,0x57,0xd5,0x8f,0x96,0x90,0x24,0x72,0x56, -0xcc,0xa3,0x41,0x53,0xe7,0x4c,0x7f,0xcb,0xde,0x26,0x91,0xfb, -0x2b,0x48,0xd8,0x24,0x6b,0x68,0x2f,0x13,0xf9,0xc8,0xd8,0x52, -0x21,0x29,0xdb,0xc2,0x44,0x5c,0xb7,0x86,0xa3,0x5f,0x78,0xa1, -0xfe,0x85,0x17,0x5e,0x21,0x37,0x55,0x9d,0x39,0x53,0x75,0x71, -0x43,0x44,0x1b,0x92,0xd1,0x56,0x1a,0x2b,0x1b,0xbf,0x96,0x6e, -0xd2,0xfe,0x2a,0x97,0x5a,0xcb,0xa4,0x10,0x53,0x8e,0xa2,0xc2, -0x4e,0x4a,0xa8,0x35,0x51,0xe1,0xb4,0x85,0x28,0x1e,0x2d,0x96, -0xb2,0x79,0x6c,0xb1,0x9d,0x89,0xbc,0x9d,0x49,0xb4,0x9d,0x6e, -0x96,0x3e,0x1f,0x6e,0x2b,0x95,0x02,0xb4,0xbd,0xac,0xc5,0xd0, -0xe6,0x33,0x55,0x78,0x05,0x6d,0x75,0x70,0x4f,0xd5,0x19,0x2a, -0xaf,0x80,0x61,0x1a,0x89,0x18,0x92,0xd8,0x37,0x2c,0x6e,0x41, -0x2d,0x66,0x30,0x8e,0x5b,0x93,0x31,0x29,0xdb,0x62,0x52,0x36, -0xdc,0xa4,0xbd,0x97,0xc6,0x76,0x1e,0xa0,0x03,0x3d,0x8a,0x4f, -0x79,0x08,0x4e,0x71,0x71,0xa7,0x88,0x66,0x6c,0x18,0x4d,0xb9, -0xb8,0xfb,0x00,0x47,0x48,0xc9,0x33,0x95,0x93,0xb8,0x78,0x53, -0xd1,0x05,0x9e,0x80,0x13,0x03,0xea,0xb1,0xb9,0xe4,0x80,0x17, -0x03,0xf3,0x9e,0x1d,0xbb,0xd5,0x3f,0xb8,0xd5,0xd2,0x74,0x55, -0x13,0x76,0x35,0x59,0xf8,0x97,0x93,0x35,0x3b,0x6b,0x4e,0x5e, -0x04,0xe7,0x91,0x9d,0x50,0x7b,0x06,0x67,0x12,0x3b,0x93,0xcb, -0x7a,0x71,0x79,0xd3,0xd4,0xf9,0x84,0xc0,0xec,0x82,0x59,0xb0, -0xd2,0x35,0x45,0x1f,0xfc,0x52,0xf2,0x4b,0xff,0x1b,0x83,0x6f, -0xe0,0x4c,0xdc,0x17,0x3c,0x94,0x89,0x37,0x07,0x77,0xc0,0x83, -0xc5,0xe8,0x13,0x92,0x85,0x2f,0x03,0x09,0xd0,0x44,0xd1,0xe2, -0x39,0x83,0xcf,0xd0,0x48,0x08,0x88,0x2b,0x89,0x9d,0x07,0x0f, -0x4f,0xd1,0x4c,0x2a,0x59,0x68,0xa1,0x6a,0xb4,0xb8,0x50,0x35, -0xe4,0x56,0xa4,0xc2,0x9d,0xc9,0xa2,0xb0,0x4b,0xa5,0x2b,0xbe, -0xb3,0x4d,0xd4,0x8f,0x17,0x25,0x17,0x5b,0xcb,0xce,0x8c,0x48, -0x66,0x5c,0xec,0xcd,0x2c,0xd1,0x6a,0xdd,0x69,0x19,0x59,0xf1, -0x15,0x09,0xf5,0x25,0x91,0x5f,0x3e,0x49,0x8e,0x8f,0xd7,0x58, -0xf5,0x69,0x05,0x95,0xe1,0x13,0x3a,0x16,0xfc,0xc8,0x4f,0xb4, -0x24,0x0b,0x7a,0xc2,0x1a,0x31,0x16,0x9e,0x61,0xb9,0x58,0x02, -0x6b,0x9f,0xc0,0x19,0x9b,0x70,0xc6,0xce,0x76,0x87,0x99,0x45, -0x85,0x65,0xaf,0xbc,0xd2,0xfa,0xca,0x2b,0xfe,0xff,0x09,0xfc, -0x0f,0xfc,0x67,0xf5,0xe1,0x44,0xa2,0xc5,0xdd,0x53,0xcc,0xc9, -0x44,0x45,0xcc,0xc9,0xd0,0xbd,0xac,0x13,0x03,0x01,0x3a,0x67, -0x06,0xfc,0xa4,0x25,0xcb,0xe0,0xfd,0x89,0xa2,0xec,0x11,0x57, -0x23,0x32,0x19,0xf9,0x0c,0xe3,0x03,0x02,0x4f,0x3d,0x43,0x93, -0x63,0x69,0x16,0x9d,0x7d,0x98,0x49,0xac,0x78,0xee,0xdb,0x7e, -0x7b,0xeb,0xa4,0x74,0xa6,0x5c,0x6c,0x61,0xf0,0x63,0x7c,0x6a, -0xef,0xcb,0x81,0x97,0xe1,0xff,0xde,0x00,0x5d,0xcb,0x4b,0x7f, -0x79,0x04,0x11,0x29,0xbc,0xd7,0x79,0x49,0x19,0x30,0xd5,0xde, -0x05,0x74,0x1d,0x00,0x13,0x37,0x4c,0xd6,0xe0,0xbc,0x83,0x85, -0x07,0x43,0xff,0x31,0x8a,0xf8,0x42,0x6d,0x54,0x3f,0x2a,0x06, -0xdc,0x1c,0x2c,0x55,0x9f,0x49,0x56,0x49,0x58,0xb2,0x86,0xd2, -0xd7,0x25,0xe2,0x3a,0xb2,0x31,0xfa,0x88,0xfc,0x1b,0x7b,0x8a, -0x8a,0x1c,0x19,0xcf,0x3a,0x4a,0x3a,0x45,0xe7,0xa2,0x69,0x1e, -0x1a,0xa5,0xdd,0xf8,0x70,0xe6,0xf8,0x48,0x2d,0xd0,0xf5,0x53, -0x9e,0x59,0x16,0x02,0x4a,0xe7,0x3f,0x8d,0x65,0x90,0xe1,0x1d, -0x91,0xd9,0x64,0x94,0xfe,0x8f,0x43,0x7f,0x1d,0x63,0xfe,0x55, -0xee,0x14,0xfe,0xd5,0x58,0xcb,0x9e,0x61,0x01,0x15,0x49,0xb8, -0x0f,0xa5,0x62,0x3f,0x06,0xb3,0xa0,0x2f,0x37,0x04,0x02,0xaf, -0x00,0x59,0x47,0x47,0x81,0xdf,0x6f,0x04,0x7e,0xff,0x23,0xb1, -0xa0,0x2d,0x68,0x01,0x70,0xf4,0x16,0x74,0x3f,0x12,0xf9,0xac, -0x11,0x68,0xa1,0x03,0x8e,0xee,0xa4,0xa1,0x3b,0x2e,0xef,0x9e, -0x61,0xbf,0xe5,0x21,0x63,0xb5,0x87,0xfa,0x5a,0xec,0x4b,0x6a, -0xbe,0xb0,0x65,0x5e,0xfc,0x18,0xcb,0x33,0x3f,0x13,0xf8,0x48, -0x4f,0xe4,0x7d,0x4e,0x45,0x58,0x25,0x16,0x87,0xba,0xd1,0x1b, -0x1a,0xe6,0x46,0xf9,0x0d,0xde,0xed,0x3f,0x6e,0xf8,0x14,0x27, -0x7b,0x1a,0xd9,0x49,0xf0,0x13,0x4f,0xe3,0x82,0xc0,0x8e,0xc0, -0x02,0xf6,0xc1,0xd6,0x8e,0x28,0x88,0x40,0xba,0xe0,0xfd,0xaa, -0x88,0xf8,0x27,0x1d,0xef,0x84,0x79,0x91,0xc9,0xee,0x6c,0x95, -0x14,0xfe,0x7a,0xf1,0xe1,0xe0,0x3e,0x3c,0x1f,0x47,0x77,0x7c, -0xdd,0xfd,0xab,0xa8,0x5f,0xf5,0xa2,0x89,0xcf,0xe2,0xc8,0x67, -0x25,0xec,0x59,0x6f,0xb6,0x3b,0xdb,0x0d,0x0f,0xf7,0xe2,0xf9, -0xf0,0xec,0xe1,0x60,0xd7,0x7c,0xfa,0xe4,0xd7,0x1d,0x5f,0x43, -0xdd,0xe2,0x9a,0xcb,0x4e,0xba,0xca,0x03,0xe5,0xd1,0x39,0x84, -0xd0,0x9a,0x47,0xd9,0x25,0xf6,0x45,0x14,0x25,0x3a,0x4d,0x3b, -0x33,0xaa,0x94,0xb4,0x45,0x50,0x39,0x6f,0x54,0xb0,0x0b,0x1f, -0x0e,0x04,0x08,0xde,0x2b,0xbf,0xab,0xeb,0xb9,0x81,0x13,0x6c, -0x64,0x84,0xea,0x97,0x8b,0xf5,0xe3,0x70,0xfd,0x78,0xdc,0x1e, -0x09,0x63,0xd2,0x57,0x5c,0xcc,0x39,0xd6,0x68,0xba,0x0e,0x2c, -0xdc,0x70,0x0a,0xbf,0xe2,0xd5,0xbb,0xd9,0x1a,0xeb,0xf7,0xd0, -0x47,0x78,0x23,0xc8,0xb3,0x78,0x71,0x7c,0xf3,0xb9,0x4e,0xda, -0x8f,0xd1,0x7c,0x7c,0x67,0x4f,0x3d,0xbd,0xf9,0x51,0x64,0x00, -0x1d,0xa3,0xa7,0xd0,0x30,0x7e,0x18,0x3f,0x0c,0xf5,0xa8,0x22, -0xea,0xa1,0x34,0x44,0x8c,0x86,0x13,0x6b,0xa9,0xf5,0x7a,0x6b, -0x01,0x86,0x7d,0x79,0xba,0x3c,0x1f,0xfb,0x10,0x6d,0x17,0x1b, -0xdb,0x43,0x80,0x76,0x61,0x2c,0x8d,0xa4,0xc6,0x86,0xf1,0x8d, -0xfd,0xf6,0x39,0x99,0xc8,0xe9,0x52,0xc2,0x43,0x46,0x88,0xaf, -0x75,0x31,0x0a,0x20,0xcf,0x41,0xa8,0x83,0x64,0x4f,0xc6,0x92, -0xb7,0xdf,0xee,0x7c,0xfb,0xed,0xec,0xc7,0x1e,0x93,0x3f,0xf6, -0x18,0xd8,0x73,0xb3,0x82,0x07,0x83,0x07,0x5b,0x70,0x12,0x4e, -0x0a,0x7e,0x4a,0x33,0x61,0x45,0xde,0x6e,0x27,0x31,0x20,0xf3, -0xa4,0x22,0x4d,0xf8,0x5a,0x9f,0x31,0x8e,0xa6,0x52,0x89,0x6e, -0x3a,0x83,0xff,0x3b,0x78,0x25,0x7e,0xb5,0xfd,0xbf,0x02,0xc1, -0x7f,0xb1,0xe7,0x34,0xd0,0x76,0x1f,0xd3,0xa5,0x5d,0x63,0x9c, -0x30,0xc1,0xe2,0xd7,0x5e,0xda,0xe2,0x8f,0x44,0x41,0xb4,0xf4, -0xc3,0x5b,0xb7,0xd0,0x9d,0x33,0x05,0x18,0x14,0xea,0x64,0x96, -0xc7,0x7d,0xf1,0xea,0x45,0x07,0xf3,0xdb,0xa4,0x9d,0xf3,0xdb, -0x7f,0x8b,0x5f,0xac,0xfa,0x51,0xf0,0x2c,0xd6,0xe1,0x19,0xe2, -0x1a,0x1d,0x33,0xd8,0x21,0xe9,0x6c,0x2f,0x9b,0x4a,0xaa,0x82, -0xc6,0xcf,0x5d,0x73,0xcb,0x54,0x3f,0xd1,0xc9,0x88,0xd8,0x69, -0x47,0xc6,0x77,0x31,0x60,0x3b,0xeb,0x88,0xe1,0x74,0xb6,0xb9, -0x8e,0xf9,0x4d,0x6f,0xf9,0x53,0x14,0x76,0x90,0x2f,0x8a,0x6b, -0xea,0x2e,0x26,0x16,0xd7,0xb0,0xdc,0xd5,0x58,0xb4,0x95,0xb4, -0xe1,0xb3,0x20,0xcf,0x2c,0xc8,0x45,0xd7,0x31,0xa5,0xf2,0x7d, -0x14,0xe8,0x32,0x03,0x31,0x22,0x4a,0x8f,0x85,0x54,0xf2,0x18, -0xc2,0xb2,0x01,0x51,0xe3,0x87,0xc9,0x06,0xba,0xac,0xc4,0x3a, -0x42,0x9b,0x6a,0x60,0x39,0x6d,0x21,0x6d,0x19,0xda,0x46,0x80, -0xa2,0x9f,0x3c,0x22,0x6e,0x27,0xe6,0x18,0xa1,0xd5,0x6b,0x91, -0x23,0x42,0x77,0x8e,0x79,0xe6,0x7c,0x03,0x18,0x71,0xef,0x2f, -0x9e,0x3d,0x12,0x76,0xd6,0x8d,0x63,0xe9,0x6f,0x7a,0xbc,0xaf, -0xbe,0xb5,0xab,0xd1,0xd3,0x92,0x2a,0x89,0xaf,0xb1,0xd7,0xb7, -0xf1,0xd3,0x5a,0x93,0xc9,0xad,0x50,0xb8,0x4d,0x59,0x76,0x3b, -0x2e,0xa0,0x39,0x10,0xec,0xeb,0xd6,0xd9,0xbd,0xbd,0xb3,0x2b, -0xeb,0x6b,0x6a,0x43,0x47,0x7f,0x95,0xd7,0x53,0xe1,0xc8,0xf3, -0xe4,0x39,0xd8,0x07,0xfd,0xc6,0xf8,0x56,0x3b,0x7a,0x8e,0xf8, -0xc1,0xe6,0xd6,0x83,0x2b,0xb3,0x9a,0x5a,0xb4,0x39,0x6c,0x5f, -0x51,0x71,0x56,0xdf,0x1c,0xe6,0x5b,0xbe,0x05,0x81,0x6e,0x8a, -0x59,0x7d,0xca,0x1d,0x31,0x2c,0x07,0x49,0xc3,0x57,0xaa,0xe9, -0x9d,0x34,0x01,0x24,0x86,0xa5,0x63,0x09,0x8c,0x3a,0x62,0x97, -0x8a,0x39,0x49,0x1a,0x36,0x67,0x10,0x43,0x87,0x3a,0xb5,0x17, -0xc4,0x35,0xba,0xe3,0xd2,0x43,0x8c,0xd9,0x6e,0xd1,0xac,0x50, -0xdd,0xa6,0x99,0x56,0x6c,0xf1,0x17,0xe6,0x28,0x72,0x93,0x1c, -0xbe,0x56,0x87,0x7f,0x61,0xa3,0xd5,0xda,0xb8,0xd0,0x4f,0x8f, -0xc1,0x6e,0xec,0xd1,0xb6,0xbb,0x5c,0xed,0xda,0x95,0xfa,0xfc, -0x94,0xac,0x22,0xbd,0xda,0x58,0x9a,0x97,0xe6,0x9d,0xb3,0xa3, -0xbd,0x7d,0xc7,0x1c,0x2f,0x3d,0xe6,0xfc,0x36,0x33,0x37,0x37, -0xf3,0xb7,0xe2,0xf8,0xac,0x1f,0x3d,0x87,0x83,0xe4,0x73,0x78, -0xb3,0x83,0xe6,0x55,0x2a,0xe9,0x8f,0x9d,0x84,0xe7,0xfc,0xb2, -0x26,0xce,0xf9,0xe9,0xa7,0x64,0x6e,0x65,0x78,0xce,0x47,0x1d, -0x9e,0xf3,0x41,0xe1,0xb4,0xa3,0x1c,0xba,0x4e,0x3b,0xb4,0x53, -0x46,0x05,0x4e,0xc0,0xd4,0x2a,0xf2,0x2a,0xc5,0x20,0x1a,0x0b, -0x9b,0x45,0x4c,0x6b,0x42,0xe7,0x8a,0xb3,0x84,0xb8,0xba,0xa3, -0x2b,0x21,0x3d,0xd1,0x98,0xea,0x50,0xa9,0xac,0x5e,0x63,0x5d, -0xe3,0x8a,0x45,0xf9,0xb6,0x3c,0xaf,0xae,0x2c,0xce,0xe8,0xf4, -0x15,0x65,0x5a,0x6b,0xea,0xb2,0xe2,0x86,0x5a,0x35,0xb1,0xca, -0x68,0x4f,0x82,0x4e,0x89,0x73,0x3c,0x2d,0x4e,0x55,0x5f,0xe7, -0xfc,0x27,0x06,0xf3,0x03,0xde,0x12,0x97,0x39,0xc3,0x95,0x9d, -0x4a,0x8e,0xbb,0xeb,0x2f,0xd6,0xee,0xa8,0x55,0xba,0xd8,0x8f, -0xc9,0x48,0x68,0x6e,0x34,0x69,0x23,0xcf,0x53,0xbd,0x00,0xf8, -0x5a,0xd1,0x11,0x9a,0x49,0x1b,0xea,0x57,0x05,0x5f,0x60,0xa7, -0x60,0xfe,0xb0,0x78,0xcc,0x1a,0xf9,0xfe,0xab,0x15,0x79,0xc7, -0x7f,0xcb,0x72,0xbe,0xb1,0x45,0xe7,0xcf,0xa0,0x6c,0x60,0x80, -0x2c,0x36,0x60,0xb2,0x15,0x63,0x91,0xb6,0x38,0xbe,0xb0,0x2f, -0xe5,0x94,0x48,0xc0,0x54,0xe6,0xb8,0x49,0xd8,0xf2,0x1e,0xd1, -0x71,0x73,0x17,0xbb,0x8a,0x54,0x29,0x58,0x49,0xc5,0x06,0x5d, -0x4a,0x17,0x8b,0xc1,0x7b,0x19,0x1f,0x71,0x06,0xe3,0x0a,0xbf, -0xbb,0x62,0xc5,0x8a,0x8b,0xef,0x5c,0xed,0xb2,0xc8,0x02,0xf4, -0x03,0xaf,0xd3,0x25,0x25,0xe9,0x32,0x94,0xca,0x96,0x11,0x3c, -0xf0,0xb3,0xa7,0x9f,0xfe,0x59,0xf0,0xc7,0x6c,0xc1,0xc8,0x45, -0x32,0xe7,0x62,0x3d,0x08,0x4d,0xe1,0xe2,0x7e,0x7c,0xab,0xc3, -0xde,0x62,0x77,0xb0,0x8f,0x5b,0x4b,0x4b,0x23,0xf6,0x1d,0x12, -0xf3,0x40,0x87,0x26,0xe6,0xe2,0x49,0x2f,0x3d,0x06,0xc6,0x72, -0xf1,0xc4,0x8d,0xcd,0xa4,0xe1,0x59,0xc0,0x6c,0x26,0x93,0xa4, -0xe1,0x9d,0x35,0x93,0x78,0x46,0x9e,0x38,0x5f,0x6a,0x8e,0xd8, -0x01,0xd5,0xeb,0x10,0xe8,0xac,0xe9,0x84,0xed,0x11,0x53,0x0d, -0xbe,0x5e,0x77,0xc9,0x40,0x85,0xc1,0x50,0xda,0xee,0xf0,0x4f, -0x4b,0x93,0x28,0x2b,0x3a,0xe7,0x14,0xff,0xc0,0x3a,0xa3,0xdd, -0xfd,0x21,0xdf,0xa5,0x08,0x2b,0x9a,0x96,0xd7,0x9b,0xb2,0x02, -0x43,0xe5,0xe5,0x73,0x6a,0xb3,0x4a,0xad,0xa4,0xa0,0xbb,0xd1, -0x97,0xa6,0xae,0x9d,0x7f,0x53,0xf0,0x95,0xd6,0xf6,0xfa,0xf6, -0x56,0xf6,0xc1,0xf0,0xeb,0x19,0xbd,0x85,0x48,0xc8,0x46,0x3a, -0xdb,0x82,0xd6,0x8b,0x5b,0xba,0x64,0x85,0xf1,0xc3,0x61,0xfc, -0x26,0x6d,0x8c,0x15,0xb9,0x66,0x2c,0xd2,0x06,0x8a,0x19,0x11, -0x67,0x51,0x33,0x19,0x96,0xca,0x11,0x71,0x96,0x56,0x2f,0xee, -0xc8,0xc6,0x5d,0xba,0x34,0x7e,0xd4,0x9e,0xa2,0xae,0x1d,0x8f, -0x29,0xbb,0x54,0x7a,0x4c,0x23,0x91,0x56,0x25,0x8c,0x0c,0x70, -0x13,0xe4,0x2a,0x21,0x25,0x55,0xad,0x4c,0xc0,0x2a,0xac,0x9e, -0xbd,0x70,0xd1,0x2c,0x7f,0x75,0x57,0x4a,0x55,0x7c,0xb1,0xd5, -0x5e,0xae,0x2c,0x55,0xf5,0x05,0x1e,0x2b,0xf1,0x78,0x4a,0xd6, -0x2d,0x8d,0xbf,0x65,0xcd,0x9a,0x5b,0xe2,0x97,0x2e,0x96,0x56, -0x17,0x98,0xcc,0x76,0x69,0x70,0x8d,0xd4,0x61,0xb1,0x16,0xd4, -0x48,0x17,0xe3,0xc6,0xf2,0xee,0x58,0xbc,0x2b,0xb6,0xbb,0x3c, -0xe4,0x4f,0x8b,0x7b,0x0a,0xe4,0xd0,0xac,0x37,0x34,0x21,0x47, -0xf9,0xdf,0xd8,0x53,0x40,0xcc,0x33,0x4d,0x85,0xa3,0xe8,0x02, -0xa4,0xd2,0x4d,0x08,0x9d,0x50,0x50,0x09,0x40,0x66,0xd1,0x65, -0xc5,0xa1,0x1d,0x07,0xd3,0x90,0xe4,0x5c,0xb5,0x80,0x4e,0xc3, -0x09,0x0b,0x92,0x24,0xb2,0x13,0x71,0x63,0x85,0x29,0xb6,0x25, -0x90,0xbb,0xc4,0x7d,0x44,0xc7,0x04,0x5f,0xc4,0xe6,0x04,0xf5, -0xd1,0x1a,0xa3,0xd3,0xd0,0xd8,0x11,0x7b,0xf6,0x6f,0x7f,0x3b, -0x1b,0xdb,0xd1,0x68,0x70,0x1a,0x35,0xd1,0xf5,0xe3,0xb6,0x28, -0x30,0x68,0x72,0x33,0x93,0x66,0x77,0xd6,0xcd,0xac,0xeb,0x9c, -0x9d,0x94,0x99,0xab,0x31,0xf0,0x4d,0x0a,0xf0,0xe8,0xef,0x41, -0x7f,0xce,0x63,0x6b,0xa1,0x87,0xa8,0x0e,0x1f,0xbf,0x16,0x7a, -0xd2,0x20,0xe6,0x5b,0x16,0x29,0x42,0x66,0xdd,0xd8,0x66,0xa8, -0xd4,0x39,0x8c,0xe3,0x6b,0x0e,0xa8,0xcf,0x2b,0xce,0xbd,0x8f, -0x6d,0x8e,0x5a,0x50,0x28,0x77,0x25,0x9b,0xbd,0x2e,0x2f,0xdd, -0xaf,0x48,0x0e,0x36,0xae,0xdc,0x2c,0x24,0x60,0x3b,0xce,0xfc, -0x5d,0xf7,0xf1,0xd8,0x61,0x4d,0xb4,0xaf,0xfc,0xe7,0x71,0x6f, -0x1a,0x8e,0xc7,0x1e,0x6f,0x85,0xd3,0xa3,0x3b,0xf0,0x57,0x81, -0x3b,0x8a,0x2b,0xea,0x9e,0x0b,0x04,0xbd,0xc5,0x15,0x88,0xf9, -0xa1,0x88,0x58,0xa0,0x8f,0xf2,0xe8,0x1a,0xc0,0x34,0xfa,0xb3, -0x53,0x11,0xed,0xfc,0xd6,0x2c,0xd0,0x24,0x46,0xee,0x50,0x1f, -0xd9,0x78,0xba,0x6f,0x1a,0xeb,0x64,0x71,0x17,0x81,0x68,0xd6, -0xd6,0x4c,0xbe,0x7a,0xd8,0xc4,0xd6,0x48,0xb0,0xc9,0x76,0x1a, -0x58,0x9d,0x62,0x3e,0x83,0xee,0x03,0x99,0x2a,0xe6,0x66,0x18, -0x55,0x2d,0xb6,0x6c,0x81,0xcc,0x6d,0x8f,0x55,0xd1,0x9d,0xc0, -0x3a,0x96,0x1a,0x2b,0x75,0x2d,0xa5,0x35,0x6d,0xc9,0xb1,0xbf, -0x3a,0x2a,0x24,0x6a,0x32,0x12,0xf0,0xb6,0xa5,0xca,0x80,0x33, -0x5e,0x13,0x57,0x67,0x0a,0xd8,0x1c,0xed,0x25,0x99,0x95,0xae, -0xfc,0xdc,0xfc,0x9a,0xb6,0xdc,0x1a,0x43,0x5d,0x4a,0x72,0xa6, -0x2b,0x57,0x1f,0x2d,0xed,0x00,0xda,0x15,0x8d,0xde,0x4a,0x72, -0x04,0x3b,0x48,0x5d,0x07,0x72,0xd3,0xfd,0xe8,0xe4,0xf4,0x87, -0xb4,0xc2,0xbb,0x45,0xd8,0x79,0x9e,0x9b,0xeb,0xd2,0x59,0x26, -0x93,0xd7,0x3d,0x52,0xbd,0x33,0x96,0xde,0x8c,0xc2,0x6a,0x2b, -0x89,0x8b,0x53,0x1a,0x3a,0xcf,0xe3,0xd3,0x8b,0x62,0xe5,0x74, -0xab,0x90,0x14,0xbe,0xa1,0x29,0xb5,0x44,0xb2,0xb9,0x45,0x62, -0x3d,0x45,0x83,0xe7,0x4a,0xbe,0x1e,0xac,0x88,0xee,0x2b,0x22, -0x6a,0x2c,0x18,0x93,0xa0,0x8d,0xd5,0x4a,0x2b,0x5b,0x26,0x19, -0x31,0x52,0x55,0x6a,0xb6,0x48,0x52,0xae,0x32,0xd3,0xa1,0xea, -0x06,0xd7,0x1e,0xc8,0x09,0xfe,0x16,0x56,0x77,0xaf,0xca,0xaa, -0xc8,0xea,0x70,0xab,0x8b,0xeb,0x6d,0x49,0x2b,0x87,0xfc,0x75, -0x0b,0x2d,0x95,0xe9,0x75,0x45,0x7a,0xba,0x5c,0x72,0xe5,0x22, -0xff,0x55,0xa5,0xb5,0xbe,0x2a,0x5c,0x5e,0x51,0x5f,0x19,0x88, -0x95,0xd6,0x16,0x15,0xe5,0x17,0x49,0xb1,0x54,0x12,0x9d,0xed, -0xaa,0x34,0xf5,0xce,0x95,0x2f,0x5a,0x24,0x2d,0x75,0xe5,0x67, -0xe5,0x49,0xbf,0x94,0x46,0x67,0xb9,0xaa,0xcc,0xfd,0xcb,0xa2, -0x16,0x91,0x2b,0x0b,0x4b,0x12,0x3e,0x96,0x95,0x07,0xb7,0x7b, -0x4a,0xe2,0xbe,0x91,0xd7,0x88,0x63,0x3a,0x95,0xaf,0xad,0x4f, -0xa6,0x7b,0x3e,0x44,0x4d,0x88,0x4f,0x4d,0x1a,0xd3,0x93,0x52, -0xf5,0x23,0xd7,0x3a,0x22,0xbe,0xa8,0x45,0xc6,0x82,0x18,0x21, -0xf6,0x0e,0x6d,0x39,0x40,0xfd,0xcc,0xb8,0x08,0xa7,0x0e,0x71, -0x76,0xf7,0xba,0xa8,0x27,0x2f,0x88,0x3b,0x04,0x89,0xc3,0xd7, -0xd8,0x72,0xfc,0xf8,0xcd,0xcf,0xcf,0x3a,0x26,0x39,0x36,0xe3, -0xf9,0x9b,0x8f,0x1f,0x0f,0xfa,0xeb,0x86,0xeb,0xf0,0xc6,0xe0, -0x2e,0x0a,0x70,0xca,0x66,0x00,0xfb,0x81,0x0f,0xb4,0xc0,0x07, -0xe9,0x20,0x25,0xad,0x40,0x73,0x17,0xfa,0x19,0x9d,0x3c,0x08, -0xd9,0x98,0xa1,0xee,0xa2,0x47,0x1d,0x3f,0x1a,0xf8,0x31,0xe7, -0xd2,0xda,0x38,0x72,0x29,0x3a,0xdd,0xa6,0x5e,0xc2,0x8c,0xec, -0xb1,0x35,0x89,0x42,0x78,0x7f,0xd9,0x4c,0x6a,0x07,0xb0,0x57, -0x65,0x3a,0xc5,0xaa,0x33,0xd9,0xa8,0xa1,0x23,0x84,0xf2,0x47, -0x22,0xd8,0xad,0xae,0xf0,0xb6,0xc4,0xe9,0x23,0xa2,0xfa,0x15, -0x65,0xb8,0x75,0x44,0x9c,0xb5,0xc8,0xa3,0x61,0x39,0xb3,0xdb, -0xac,0x64,0x81,0x8c,0x50,0xde,0x3c,0x5b,0x1c,0x63,0xc7,0x82, -0x1b,0x48,0xc1,0xb5,0x96,0x40,0xd7,0xbc,0xf3,0x73,0x5c,0xef, -0x3f,0x72,0xc4,0x1f,0x35,0xb8,0xa8,0xaa,0x50,0xeb,0x30,0x25, -0xd3,0xad,0x61,0x34,0x15,0x43,0xf7,0x96,0xfa,0x7c,0xa5,0xbe, -0xa1,0x7b,0x2b,0xab,0xab,0x2b,0xd7,0xae,0x25,0xc3,0x6b,0xd7, -0xce,0xeb,0xaa,0x6d,0x50,0x08,0x51,0x5a,0x6b,0xb1,0x99,0xee, -0x10,0x83,0x77,0x7d,0xf0,0x81,0xb3,0x20,0xb7,0xa0,0xf0,0xe2, -0x9b,0x18,0x81,0xfb,0xee,0xc9,0x73,0xbb,0xa9,0x9d,0x5e,0xcf, -0xe9,0x98,0x43,0x13,0x8d,0xd1,0xcf,0x23,0xd7,0x12,0xe4,0xf1, -0x5e,0xf2,0x7c,0xbf,0xb5,0x04,0x74,0x37,0x81,0xc4,0xf0,0xa4, -0x29,0x9d,0xf2,0xc9,0x0d,0x5b,0x70,0x4e,0x56,0x46,0x63,0x3f, -0xce,0xf0,0x76,0x46,0xf1,0xa7,0xa8,0x05,0x4f,0x25,0xaa,0x58, -0x4a,0xc7,0x54,0x2e,0x4f,0x13,0xcf,0x80,0x27,0x12,0x79,0x62, -0x79,0xa8,0x1e,0x81,0x75,0x1d,0x4d,0x26,0x0f,0x5d,0xf3,0xf0, -0xfb,0x81,0x8a,0x16,0xab,0xdc,0xcc,0xf2,0xc7,0x3d,0x74,0xcf, -0x26,0xa6,0xf8,0x5d,0x72,0x3e,0xc4,0x04,0xa6,0x0c,0x05,0xba, -0x0c,0xd3,0x86,0xe5,0x42,0xaa,0x3a,0xd9,0x81,0x85,0x14,0x75, -0x32,0x55,0x8b,0x39,0x86,0xb4,0x38,0x7f,0x62,0x89,0x67,0x60, -0x46,0x9c,0x3f,0x36,0x26,0x5e,0x13,0x1b,0xeb,0x8f,0xcf,0x2d, -0x54,0x06,0xa2,0xd5,0xca,0xb2,0x7c,0x87,0x22,0x10,0xa7,0xb7, -0x95,0x5a,0x63,0xfd,0x16,0x69,0xb4,0xb4,0x3c,0xcd,0x5c,0x11, -0xa3,0x3a,0x6a,0x2d,0x76,0xe4,0xc7,0x0a,0xd1,0xeb,0x6e,0xb3, -0xed,0x5f,0xbf,0xe7,0xa7,0x69,0xab,0x16,0x12,0xb2,0x74,0x4b, -0x6a,0x9d,0x45,0xaf,0xce,0x4d,0xbc,0x78,0x3a,0xb6,0xc2,0x9a, -0xa9,0x2d,0xca,0xcd,0x90,0x2e,0x26,0x5f,0xe0,0x8b,0xaf,0x26, -0x0a,0x30,0xb8,0x84,0xe0,0xc1,0xa5,0x15,0xf8,0x73,0xed,0xea, -0x69,0x11,0xf2,0xb9,0x10,0x6d,0xa7,0x68,0x8a,0xbb,0x22,0x5f, -0x72,0x8d,0xf6,0x98,0x85,0xf0,0x0c,0xf0,0x96,0x04,0xac,0x1c, -0x89,0x9d,0x69,0x41,0x1b,0x0b,0xca,0xdb,0x38,0x3b,0x8a,0xf3, -0x3e,0x36,0x1e,0x22,0xcb,0xe6,0x23,0x2d,0x9b,0x9b,0xd3,0xa2, -0x7a,0x09,0x2d,0xee,0x0e,0x65,0x8d,0xd3,0xbc,0xc0,0x5c,0x0c, -0xf2,0xdb,0xcb,0x84,0xf7,0xb7,0x88,0x70,0x20,0x23,0xcd,0xbe, -0x07,0x6b,0xc2,0x48,0xb4,0xc1,0x42,0x73,0xb6,0x74,0xc1,0x7c, -0x21,0x56,0xde,0x5e,0x2a,0x95,0x8d,0x93,0xe5,0x52,0xc9,0x3b, -0xbf,0x96,0xc7,0x91,0x9f,0x1d,0x8d,0x72,0x6a,0x40,0x9c,0x27, -0x78,0xb2,0xaa,0x53,0x73,0x52,0xaa,0x93,0xac,0xaa,0x08,0x79, -0x9e,0x92,0xa5,0xac,0x4e,0xc9,0x49,0xad,0x76,0xf8,0x15,0x52, -0xca,0x7f,0xe9,0x40,0x8f,0x0a,0x32,0xcc,0xc6,0xb1,0x19,0xbd, -0x40,0xf9,0x2f,0x8b,0x2f,0x2e,0xd3,0x71,0xfe,0x1b,0xf3,0x92, -0x26,0x05,0x97,0x27,0x2d,0x58,0x9b,0xb4,0x97,0x04,0xff,0x51, -0x08,0x46,0xc1,0x68,0xf6,0xab,0xb2,0x62,0x2c,0x36,0xbc,0xda, -0x6f,0x44,0xd4,0xcd,0x31,0xe1,0x38,0x73,0x0c,0x8f,0x2f,0x47, -0x2b,0xc4,0xb4,0x69,0x19,0x9f,0x3e,0x93,0x72,0xab,0x2b,0x8e, -0x27,0x98,0xc8,0x78,0x42,0x4f,0x3a,0x17,0x2d,0xd1,0x3c,0xbd, -0x3a,0xdb,0xac,0x32,0xb3,0xe0,0x24,0x0b,0x50,0xaa,0x43,0x41, -0x4a,0x0a,0xcc,0xcc,0x96,0xd2,0x4d,0x35,0x6c,0xd7,0xd7,0x57, -0xc3,0xbf,0x2d,0xbd,0xfc,0xb8,0x74,0xa5,0x1c,0xc7,0xcb,0x37, -0x9c,0x3f,0x7f,0xae,0xba,0xa3,0xfa,0x1c,0x3f,0xe0,0x02,0xec, -0x0f,0x3e,0x7f,0x16,0xfb,0xc1,0xc6,0x2c,0x04,0xdb,0xab,0x0d, -0xe8,0x54,0x8a,0x6a,0xd1,0x01,0xba,0x06,0x23,0xb4,0xce,0xa3, -0x62,0xdc,0x08,0xfd,0xd6,0xdd,0x81,0x58,0x81,0x8b,0x16,0xb8, -0x44,0xa3,0xba,0x36,0xbc,0xf0,0xba,0x16,0x64,0x75,0x09,0x1b, -0xa4,0x51,0x34,0x1d,0x97,0x95,0xb9,0xc2,0x26,0x4b,0x3a,0xdd, -0x14,0x91,0x95,0xa5,0x3b,0x43,0xbf,0x9a,0x91,0x02,0x47,0x17, -0x5f,0x34,0x9a,0xce,0xf2,0x1e,0x44,0xce,0xaa,0x19,0xb7,0xc9, -0x84,0x5c,0x1d,0xb9,0xa3,0x21,0x9e,0xb0,0x45,0x40,0x78,0x43, -0x43,0x70,0xcd,0x9d,0x40,0x9a,0xb1,0x9d,0xaf,0x0a,0xaf,0x99, -0xd9,0xe1,0xf0,0xf4,0x2b,0xf3,0x2d,0x59,0x39,0xf2,0x84,0x94, -0xf8,0x64,0x83,0xad,0xb2,0x3c,0xad,0x40,0x6d,0x88,0xd7,0x2b, -0xd3,0xb4,0xb2,0xf8,0x94,0xc4,0x44,0x45,0x86,0x2a,0xae,0xad, -0xb3,0xac,0x5b,0x33,0x2b,0xcf,0xe6,0x72,0x38,0x5c,0x36,0x32, -0x3c,0x77,0x30,0xd0,0xaf,0x1c,0xb1,0x66,0x19,0x8d,0x09,0xaa, -0xe4,0x64,0x78,0xa8,0xc2,0x56,0x58,0x93,0xa8,0xf4,0xc4,0xc4, -0xa5,0x6b,0x62,0x93,0x93,0x53,0xe9,0x43,0x86,0xec,0x34,0x5f, -0x93,0xa3,0xfc,0x2f,0xc1,0x67,0xf1,0xf5,0x05,0x0e,0x87,0xa3, -0xe0,0x43,0x16,0xaf,0xd0,0xb2,0xbd,0x7e,0x23,0xf8,0x30,0x2d, -0xcc,0x87,0x69,0x3c,0x5e,0x91,0xc6,0x8c,0x9e,0xef,0x3f,0xf3, -0x31,0xc6,0x7a,0x93,0x66,0x3e,0x68,0x8c,0x55,0x12,0x8e,0x82, -0x86,0x6c,0x44,0x29,0xcf,0x9c,0x14,0x3d,0x80,0x50,0x14,0x54, -0xca,0xe7,0x3d,0x88,0x62,0xcc,0xfa,0x57,0xf1,0x72,0x3d,0xe7, -0x3f,0xca,0x87,0x7a,0xd6,0x3c,0x31,0xd3,0xc1,0xcc,0xe7,0x45, -0xe8,0xa8,0xb6,0xba,0xd4,0x63,0x01,0x53,0xb3,0x9c,0x6d,0xc2, -0xe7,0x4d,0x36,0x27,0x1b,0x01,0x06,0x2a,0x2b,0x84,0xb2,0x12, -0x79,0x8b,0x80,0x73,0x84,0x26,0x79,0x49,0x99,0x50,0x51,0x19, -0xb5,0xbd,0x5a,0x51,0xbd,0xbd,0xc3,0xd3,0x26,0xc3,0x5a,0x59, -0x9b,0xe7,0x7c,0x75,0x5f,0xf5,0x87,0x9f,0x7d,0xf6,0x21,0x1c, -0xce,0xe3,0x3d,0xc1,0x15,0xcd,0xb8,0x39,0x78,0x94,0x02,0xb4, -0x1e,0xdc,0x02,0x62,0x24,0xe2,0xc6,0xa5,0x97,0xd1,0x4c,0xf4, -0x10,0xc5,0x08,0x53,0x79,0xe8,0x3b,0x8c,0x86,0xb1,0x02,0x6e, -0x97,0x4e,0xe5,0xe2,0x8a,0x6b,0x63,0x4d,0x11,0x89,0x24,0xa1, -0x00,0x58,0xfa,0x29,0x71,0xcf,0xe4,0xb1,0x6d,0x15,0xec,0x44, -0xc9,0x97,0xbf,0x28,0x81,0xdf,0xec,0x58,0xf9,0x62,0x6b,0x8f, -0x2a,0xc7,0x90,0xdc,0xa6,0x2b,0xaa,0xcf,0xdd,0x7f,0xc3,0x81, -0xdc,0xba,0x42,0x5d,0x6b,0x72,0x66,0x8e,0xaa,0x97,0x58,0x83, -0x69,0x71,0xba,0x7c,0x23,0x91,0x04,0xe3,0x8a,0x9a,0x8b,0x34, -0x64,0x58,0x03,0x87,0xe0,0x03,0x78,0xad,0x31,0x5f,0x17,0x77, -0x71,0xa7,0xb8,0xfe,0xba,0x0b,0xf0,0xcb,0x23,0x67,0x81,0x37, -0xf2,0x40,0x60,0xfe,0x9c,0x32,0x47,0x21,0x5f,0x83,0x93,0xce, -0xb6,0x2e,0x10,0x8f,0xf9,0x23,0x13,0xd6,0xfc,0x8e,0x45,0x37, -0xf2,0x69,0x41,0x7e,0x08,0x0f,0x31,0xc2,0x2f,0x26,0xc5,0xc4, -0x9c,0x02,0x39,0x7e,0x82,0x2e,0xf6,0x9d,0x45,0x77,0xbf,0xa2, -0x45,0xf9,0xe1,0x04,0x3d,0xc9,0xa9,0x6a,0x39,0x7a,0x12,0x38, -0x84,0xfe,0x1c,0xdf,0xeb,0x34,0xda,0x3c,0x8b,0x0a,0x46,0x0b, -0xdb,0x5d,0x20,0x14,0x0f,0x49,0x80,0x87,0xd3,0xc3,0x29,0x4d, -0x94,0x23,0xa8,0x56,0xd5,0x8c,0x0c,0xb3,0x5f,0x8a,0x15,0xf7, -0x21,0xd0,0x8a,0x3b,0x57,0x86,0x97,0x02,0x81,0x3c,0x1f,0x9b, -0x37,0x99,0xfc,0x6b,0x19,0x72,0x3a,0x91,0x72,0xaf,0x24,0xb5, -0xa1,0xa8,0x77,0xce,0x9c,0xde,0xa2,0x86,0x54,0xc9,0xdd,0x77, -0xb7,0xd6,0xd5,0xb5,0x5e,0xa6,0xb1,0x19,0x92,0x61,0x08,0x6a, -0xfc,0x81,0xc0,0x9d,0xf8,0xe9,0x11,0x4b,0xce,0xea,0x25,0x4b, -0x57,0xe7,0x58,0xae,0xaf,0xf0,0xf9,0x2a,0x82,0x06,0x6f,0xbc, -0xc6,0xa4,0xba,0x5c,0x65,0xd2,0xc4,0x57,0x7a,0xea,0x3c,0x95, -0xcf,0x07,0x02,0xa2,0x6d,0xa9,0xe3,0x6b,0x6d,0x93,0xe9,0xee, -0xb6,0x71,0xff,0xb6,0x6d,0x39,0x69,0x4b,0x95,0x31,0xae,0x10, -0xcd,0xcc,0x89,0x5e,0xd4,0x54,0x66,0xa6,0xa0,0x10,0x13,0x1f, -0x5c,0x74,0xbb,0x0f,0x1a,0xea,0xe0,0x66,0x26,0xdd,0x60,0xe5, -0x58,0x4f,0x63,0x63,0x8f,0xe7,0xf7,0x43,0x27,0x4f,0xfe,0xcf, -0xbb,0x8b,0x4e,0x95,0xe0,0x86,0x3a,0xec,0x08,0xbe,0x41,0xa1, -0x2e,0x78,0x1c,0x37,0xa0,0xc8,0x3d,0x24,0xd4,0xe8,0x57,0xe2, -0xf6,0xc0,0x69,0x11,0x38,0x4c,0xda,0x7a,0x69,0x6c,0xbf,0x91, -0x67,0xd8,0x1c,0x8a,0x94,0x45,0x35,0x93,0xe1,0x2c,0x95,0x8d, -0x75,0x69,0x38,0xdb,0x3a,0x35,0xbc,0x77,0x35,0x8d,0x28,0xa9, -0x99,0x20,0x15,0xc2,0x67,0x32,0x78,0x32,0x95,0x9d,0xd1,0x79, -0x93,0x64,0x9e,0x28,0x12,0xf2,0xc0,0x92,0xc3,0x7b,0x44,0xc7, -0x40,0x49,0x12,0x4f,0xbf,0x08,0xad,0x44,0x56,0x8c,0xd0,0x11, -0x29,0x96,0x53,0x31,0x2d,0x3e,0x4f,0xed,0x2c,0xb1,0x4e,0xe0, -0x08,0x50,0x50,0x72,0xb7,0x97,0x01,0xdb,0xfd,0x4b,0xe5,0x55, -0xc9,0x01,0xf0,0xf4,0xde,0x9b,0xe0,0xdf,0xfb,0x24,0xfb,0x7d, -0x38,0xfc,0xf1,0x8f,0x3f,0xa9,0xae,0xab,0x9e,0x01,0xf0,0xa7, -0xa6,0xa6,0x9f,0x8a,0xa7,0x62,0xfc,0x4b,0xc7,0x65,0xa5,0x1e, -0x06,0x7c,0x0e,0x72,0xe0,0x07,0xe8,0x6f,0x32,0x85,0xe2,0x7d, -0xb9,0x5c,0x5a,0xe6,0x32,0x31,0x24,0x1e,0x73,0x2e,0x2d,0x0b, -0x22,0x3b,0x39,0x26,0x1c,0xff,0x8b,0x82,0x23,0xe6,0x7e,0x67, -0xb5,0x14,0xdc,0xff,0x28,0xf4,0x19,0x0d,0xb2,0xcf,0xaa,0x8e, -0x46,0xf4,0xa7,0x25,0x5f,0x07,0x08,0x15,0x4a,0xd6,0xc2,0x60, -0xd9,0x06,0x27,0xbb,0x01,0xf6,0xd3,0x90,0xe8,0x2c,0xf6,0x73, -0x07,0x51,0x68,0x0d,0x7d,0x64,0xad,0x18,0xb7,0xae,0xa6,0x39, -0x25,0x72,0x18,0x6d,0x62,0xb2,0x2f,0xe6,0x13,0xcc,0xac,0x3e, -0x71,0x8c,0x9d,0x06,0xf8,0x8c,0xce,0x7b,0xad,0x85,0xc2,0x44, -0x38,0xa1,0x26,0xbe,0x13,0xa0,0x92,0x16,0xce,0x82,0x97,0x84, -0xee,0x18,0x65,0x23,0x12,0x5e,0x12,0xba,0x8b,0xbe,0x84,0x26, -0xbf,0xb3,0x30,0x86,0x00,0x0f,0x08,0xd0,0x54,0xd1,0x4b,0x4e, -0xe0,0x3e,0xa3,0x92,0xf3,0xa6,0x9a,0xf3,0xa4,0x76,0x84,0xe6, -0x74,0x0b,0xbc,0x21,0x0e,0x11,0x4b,0x07,0x54,0xef,0xa0,0x58, -0x0a,0x68,0x08,0x4e,0xf0,0x5a,0xd6,0x3c,0x07,0x34,0xcf,0x11, -0xbe,0x2a,0xa1,0x09,0x56,0xdb,0xe8,0xd5,0x59,0x21,0x7f,0x22, -0x8a,0x6b,0x00,0xb9,0x42,0xf4,0x2d,0x24,0x8c,0xe4,0xe2,0x7b, -0xf2,0xc3,0xbc,0x2f,0x0e,0xfc,0x22,0xd1,0x2b,0x4f,0x51,0xe9, -0xb0,0x9c,0x59,0x75,0x20,0x26,0x8d,0x0e,0xf8,0xa4,0xd3,0x7c, -0xea,0x22,0x8f,0xd7,0xa8,0xfa,0x51,0x97,0x17,0xfe,0xfd,0xbd, -0xbd,0x5f,0x59,0x5b,0x8a,0x71,0x69,0xad,0xb2,0xbf,0xfd,0x01, -0x1c,0x1b,0xed,0x71,0xee,0xc3,0x89,0xc1,0xbf,0xef,0x73,0x7a, -0xa2,0x83,0x5f,0xe2,0x5e,0x30,0x50,0xee,0x68,0xaf,0xab,0x8e, -0x49,0x8e,0x8d,0x4d,0x8e,0xa9,0xae,0x6b,0xc7,0xf3,0x2d,0xb6, -0x77,0x7b,0x7a,0x6e,0xb6,0x59,0x3a,0xc4,0xbd,0x2b,0x6e,0x25, -0x71,0xe0,0x57,0x98,0xa0,0xa5,0x5e,0xf4,0x00,0xb5,0x75,0x43, -0xfb,0x76,0x64,0x70,0x87,0x99,0x1e,0x9d,0x97,0xce,0xd0,0x8d, -0x5c,0x0d,0x22,0x0b,0xaf,0xc4,0x45,0x50,0x94,0x1d,0x9e,0x48, -0x8b,0x39,0x25,0xae,0x0f,0x71,0xb2,0x6b,0x71,0xf4,0x87,0x49, -0x39,0xaf,0x67,0xf3,0xb3,0x62,0x28,0xcb,0xe0,0xf9,0x7d,0xe2, -0x36,0x4b,0xe2,0x8b,0x8d,0xa7,0x86,0xd9,0x2f,0x72,0xcb,0xd8, -0x88,0x10,0x5d,0x07,0x57,0x19,0x66,0x6e,0x83,0x20,0xba,0x0d, -0xae,0xd0,0x2f,0x58,0xc8,0xcd,0xc9,0xa1,0xdd,0xbe,0x53,0x33, -0x59,0x94,0xd4,0x0c,0xbe,0xc5,0x1b,0x6d,0x6d,0x5b,0xae,0x96, -0xc7,0xcb,0x92,0x2a,0x53,0xb4,0x39,0x7a,0x4d,0x74,0x20,0xde, -0x98,0x51,0xf8,0xac,0xd6,0xd3,0x55,0x12,0xad,0x8c,0x4a,0xaa, -0xdc,0x29,0x89,0xb1,0x57,0xd9,0x54,0x36,0x5b,0x57,0xa0,0x69, -0xab,0x55,0x1a,0x2f,0x35,0x1c,0xde,0x75,0xe4,0x38,0x5e,0xb4, -0x3e,0x46,0x9f,0x9d,0xab,0xd2,0x67,0x16,0x27,0x06,0xdf,0x5f, -0x58,0x32,0x3b,0x60,0xc1,0x78,0x31,0xf9,0x3b,0x36,0xfa,0xfb, -0x3c,0xeb,0xda,0x56,0xa5,0xab,0x67,0x76,0x16,0x9f,0xc6,0x98, -0xc9,0x9e,0x74,0xb0,0xf9,0x2a,0x58,0x0e,0xeb,0xeb,0x94,0x7e, -0xe3,0xf7,0x6a,0xe0,0xe4,0x99,0xca,0xd2,0x7b,0x06,0x46,0x18, -0xfd,0xb9,0x02,0xe6,0x2b,0x6c,0xa3,0x3a,0x66,0x2d,0xb0,0x57, -0x15,0x9c,0x74,0x00,0x90,0xb5,0xe2,0x48,0x8b,0x16,0x47,0xc5, -0x6a,0xb8,0x91,0xed,0x4e,0xf8,0x24,0x3d,0x99,0xc5,0x9e,0xe0, -0x25,0x23,0xac,0x44,0xdc,0x67,0x5f,0xd4,0x5a,0x19,0x7c,0xab, -0x2a,0x6a,0x1e,0xa5,0xf2,0x15,0x18,0x89,0xbc,0x3b,0x13,0x38, -0xd7,0xc5,0xb0,0x94,0x4c,0xd1,0x1e,0xce,0xe7,0x1b,0x3d,0xbb, -0xd8,0x33,0x1e,0x78,0xa7,0x6b,0xdc,0x92,0x71,0x3a,0x9f,0x4b, -0xa7,0xcc,0xfc,0x63,0xbf,0x9e,0x86,0x43,0xfb,0x7d,0x51,0x63, -0x85,0x4e,0x52,0xb2,0x1c,0xd8,0x50,0xde,0x43,0x01,0xfd,0x19, -0x96,0xd8,0xa8,0xd9,0xb7,0xed,0x0e,0x9e,0xc6,0xab,0xa3,0xe4, -0xfe,0x12,0x4b,0x43,0xa6,0xdb,0xbe,0xd8,0x63,0x6f,0x28,0xd2, -0x45,0xc9,0xe6,0xee,0xd9,0x8d,0xb3,0x82,0xb7,0xc5,0xc6,0xd5, -0xf8,0x72,0xdb,0x6c,0xae,0xdc,0x35,0x71,0xba,0xc2,0xda,0x9c, -0x74,0xab,0xa2,0x7a,0xba,0x50,0x1d,0x97,0x9e,0xe4,0xf1,0xea, -0xcd,0x85,0x8e,0x1c,0x4d,0xbe,0xdf,0x9a,0x9a,0x19,0x4f,0x0b, -0x13,0xb3,0xd4,0x65,0x55,0x66,0xbb,0xab,0xa0,0x30,0x34,0x8f, -0x21,0xfa,0xc3,0xc0,0x3f,0xe8,0x07,0x54,0x7c,0x86,0xf6,0x39, -0xa3,0x89,0xa4,0x96,0x4b,0x73,0x6b,0x64,0x9a,0xbe,0x8c,0x6f, -0x68,0x29,0xe6,0xe7,0x5b,0xc2,0xdc,0x1a,0x75,0x4a,0x5c,0xd7, -0x22,0x52,0x30,0x86,0x86,0x11,0x19,0x8f,0x26,0xc3,0xdd,0x62, -0xba,0x80,0x91,0x4e,0x16,0x9c,0x1a,0x66,0xc1,0xd0,0x48,0xce, -0x2c,0xc7,0x11,0x7c,0x99,0x3a,0x36,0xa9,0x43,0x59,0x33,0xb4, -0x1d,0xcb,0xc9,0xe6,0xc6,0x2d,0xdb,0x14,0xc0,0x8d,0x3a,0x9b, -0x31,0x2d,0x26,0x90,0x90,0x6d,0x58,0xa8,0x50,0x19,0x9d,0x26, -0xca,0x99,0xa6,0xa2,0xfa,0x82,0xf4,0x94,0xe4,0xca,0x9d,0xf9, -0x35,0x76,0x95,0xc5,0x1a,0x63,0x7a,0x6c,0xe7,0x93,0xc3,0x0b, -0xd7,0x44,0xeb,0x2d,0xf6,0x54,0xbd,0xd1,0x9b,0x70,0xf1,0x15, -0x49,0x92,0xc1,0xa6,0xce,0xa4,0xe1,0x4e,0xc9,0x52,0xf2,0x05, -0xe3,0xc6,0xc6,0x65,0x19,0x22,0x4d,0xf2,0xe1,0xc3,0xce,0xd6, -0x5b,0xc4,0xd2,0x59,0xfd,0x4b,0xcd,0x65,0x4f,0xf2,0x3d,0x22, -0x77,0x08,0xc5,0x0a,0x31,0x40,0x44,0xf9,0x4e,0x72,0x2e,0xb4, -0xb6,0x4b,0x32,0xc2,0x73,0x1d,0xf8,0x6e,0x5c,0xf9,0x38,0xf8, -0xfb,0x9e,0xdf,0xe3,0x20,0xb9,0xac,0xae,0xee,0x81,0xa0,0x0d, -0xbf,0x55,0x57,0x47,0xf7,0x25,0x85,0xf7,0xdb,0xd8,0xfc,0xc1, -0xbd,0x34,0x48,0xa0,0x67,0xb9,0x7f,0xdf,0x7b,0x7f,0x03,0xf1, -0x97,0x4c,0xa2,0xa9,0xbd,0xb5,0x06,0x5e,0x8e,0x67,0x31,0x75, -0x11,0x0d,0xea,0x82,0xe6,0xb5,0x46,0x23,0x61,0x6d,0x68,0x9f, -0x63,0xe1,0x14,0x4b,0x78,0x13,0x44,0xee,0x3f,0x41,0x4f,0x66, -0x85,0xac,0xcd,0x84,0x08,0xaf,0x30,0x95,0x47,0x40,0xd3,0x58, -0x1c,0x50,0x60,0xfb,0x36,0xd0,0xd9,0x64,0xb6,0x87,0x39,0x65, -0x67,0x2a,0x4f,0x99,0x5e,0x0d,0xbb,0xce,0xc9,0xf8,0x8e,0x77, -0xb6,0x3c,0xee,0xad,0x0b,0x9e,0xc4,0xd9,0xd2,0xda,0xc2,0xc7, -0xf1,0x17,0xcf,0xa5,0x64,0x45,0x6f,0xbd,0x42,0xda,0x51,0xff, -0x67,0x6c,0xae,0xf3,0x94,0xd4,0xd9,0x9d,0x75,0x75,0xd2,0xe8, -0x9c,0xac,0xba,0x9a,0xd9,0x09,0xc1,0x93,0xe2,0x7e,0xac,0x1c, -0xef,0x4c,0xf4,0x3b,0xaa,0x6c,0xc7,0xef,0x2f,0x33,0xc9,0xff, -0xc8,0xa4,0x05,0x99,0xe2,0xf8,0x27,0x61,0xdb,0x23,0x8e,0x6d, -0x71,0x32,0xde,0xcf,0xa0,0x54,0x51,0x70,0xdb,0x03,0xb3,0x04, -0x3b,0xda,0xb7,0x84,0x47,0x55,0xe8,0x93,0x71,0x7c,0x39,0x4d, -0xc8,0x1f,0x89,0x63,0xbf,0xae,0x22,0xee,0x65,0x2c,0x63,0xd9, -0x59,0x22,0xff,0xc6,0xf2,0xdf,0xc8,0x93,0xf2,0xc4,0xf7,0x84, -0x70,0x2d,0x4a,0x5e,0xb3,0x18,0x17,0x4b,0x62,0x1c,0xaf,0xa1, -0x56,0x8b,0x38,0x47,0x49,0xb3,0xf9,0x42,0x26,0x88,0x8b,0x9b, -0x1f,0x72,0x15,0xb3,0xe5,0x5d,0x2c,0xfc,0x75,0xef,0x7c,0xf8, -0xd7,0x73,0x14,0xfe,0x15,0xdb,0x02,0x8e,0xb4,0x2e,0x63,0xd5, -0xdc,0xaa,0x9b,0xff,0xe9,0xa8,0x73,0xcc,0x00,0x78,0xe7,0xe7, -0xbd,0x75,0xbd,0x33,0x00,0x7e,0x6f,0xf4,0xf5,0xb9,0xab,0x56, -0x77,0x3b,0xc7,0xf1,0x69,0x2a,0x90,0xea,0x2a,0x3a,0x29,0x64, -0x0c,0x2d,0xa8,0x62,0x86,0xf1,0x25,0x77,0xb0,0x8f,0xb4,0xda, -0xa4,0x2c,0x35,0x66,0xbc,0xad,0x86,0x46,0x22,0xad,0xaf,0x28, -0x3e,0xf3,0x2c,0xe5,0x91,0xe1,0x68,0xae,0xd5,0x63,0xf9,0xd6, -0xb6,0x80,0xd9,0x58,0x00,0x20,0xbc,0xd7,0x22,0x18,0xdc,0xd6, -0xf0,0x4e,0x37,0x6f,0xf6,0x74,0xc3,0xbf,0xb3,0x73,0x17,0x2d, -0x9e,0x7b,0xeb,0x9f,0xff,0xbc,0x9b,0x6e,0xe9,0xb7,0x7b,0xe7, -0xce,0x9d,0x75,0x33,0xea,0xf0,0xb4,0x15,0x73,0xe6,0x2c,0x99, -0x51,0xf7,0x97,0xe2,0x02,0x7f,0x41,0x31,0xdd,0xa3,0x1a,0xe4, -0x51,0xa6,0x40,0x13,0xb2,0x73,0x41,0x8a,0xee,0x1b,0x06,0x9c, -0x42,0x31,0x4e,0x23,0xcf,0x2d,0x32,0xb2,0xb8,0xf7,0x25,0x25, -0x53,0xe4,0x8e,0x16,0xa1,0x0d,0xc0,0x68,0xac,0x2e,0x24,0x91, -0x64,0x7c,0xc6,0x29,0x8a,0x5b,0xce,0xd2,0x70,0xf4,0xdf,0x00, -0xf5,0x88,0xd1,0x7f,0x83,0x93,0xca,0x70,0xd1,0xed,0x8f,0x8c, -0x6b,0x66,0x8e,0x88,0xd2,0x2e,0x97,0xe1,0x6d,0x64,0x91,0x0f, -0x31,0x9a,0xc9,0x22,0xdc,0x11,0x1b,0x81,0xd0,0x00,0x77,0x18, -0x7f,0x65,0xf8,0x0c,0x57,0xd6,0xf9,0x17,0x2c,0xf0,0xd7,0xf9, -0xab,0x1a,0xcb,0x8b,0x2a,0x9a,0x35,0xf6,0xf2,0x2c,0xff,0x1d, -0xb7,0x51,0x82,0xdc,0xf6,0x40,0x59,0x75,0x75,0xd9,0x03,0x62, -0x30,0x73,0xed,0xe5,0x09,0x33,0xea,0xfc,0x0d,0x4a,0x21,0xa1, -0xbd,0xd1,0x1a,0x70,0x9b,0xa4,0xeb,0xf1,0x05,0xba,0xd5,0x75, -0xe1,0xc5,0xb7,0xdc,0x74,0xe7,0x6b,0x51,0x4e,0x59,0xe0,0x23, -0x9e,0x7c,0x0c,0x1d,0x6f,0x40,0x37,0xd3,0x29,0xf1,0x50,0xff, -0x8b,0x83,0x76,0xc2,0xc8,0xd1,0x4f,0x0c,0x1a,0x69,0x2f,0xed, -0x8f,0x46,0xae,0xb1,0x17,0x14,0xa1,0x9c,0x88,0x31,0x9e,0x10, -0x78,0xe6,0x52,0x28,0xe5,0x5a,0x60,0x39,0x7d,0xf4,0xd7,0x88, -0xb4,0x62,0x3e,0x57,0xc4,0xcf,0xdc,0x19,0xf9,0xca,0x87,0x71, -0x89,0x2f,0x2b,0xea,0xeb,0xbd,0xe5,0x6b,0xef,0xc0,0x65,0x1d, -0x1f,0x76,0xe0,0x79,0x7c,0x99,0x3d,0x3e,0x21,0xfe,0xf6,0xdd, -0xc5,0x0b,0xf8,0x44,0xb0,0x2a,0xf2,0xf7,0x94,0xc2,0xf8,0xe2, -0xaf,0xd8,0x6f,0x31,0xa6,0xa0,0x5b,0xe8,0x30,0x0c,0xed,0x15, -0x1a,0xaf,0x88,0xdc,0xeb,0x94,0xcf,0x3b,0xea,0x27,0xf2,0xbb, -0x76,0xa2,0x63,0xa5,0xbf,0xf4,0x8f,0xae,0x8d,0xfd,0x06,0x47, -0xa4,0x20,0x91,0x87,0x03,0x67,0x84,0x13,0x00,0x33,0x93,0x77, -0x3c,0xc2,0xcc,0xd5,0xa4,0xbf,0x14,0xc5,0x90,0xbc,0x6a,0xdf, -0xbe,0x7d,0x1d,0x80,0x67,0x47,0x08,0xbb,0x00,0xa0,0x76,0xf6, -0xa2,0x6e,0x74,0x54,0xfc,0x9d,0x57,0x21,0x96,0x58,0xd8,0x6e, -0x38,0x32,0x21,0xe6,0x73,0x71,0x1d,0xbc,0x58,0x8e,0xc2,0xe5, -0x09,0x91,0xe5,0xe4,0x62,0xb8,0x3c,0x6e,0x5c,0xf9,0x9b,0xe1, -0xf2,0xa8,0x70,0x79,0x0f,0xfd,0x1d,0x59,0x5e,0x2e,0x17,0x2c, -0x38,0x3d,0xa2,0xfe,0xb1,0xf7,0xc6,0x4e,0x59,0xbf,0x5c,0x30, -0x46,0xde,0x4f,0xfe,0x2b,0x7c,0xbf,0xec,0xf3,0xd0,0xef,0xeb, -0x14,0x92,0x72,0xa2,0x40,0x6e,0x54,0x8b,0x1e,0xa4,0xe6,0x4e, -0x28,0x46,0xe7,0x19,0x17,0x39,0x2a,0xa0,0xb4,0x2c,0x88,0x20, -0xff,0xa4,0x9f,0x3f,0xe2,0x7b,0x2b,0x4f,0xe2,0x3f,0x85,0x98, -0xc6,0x25,0xb0,0xbd,0x9e,0x0a,0xd8,0x2f,0xb8,0x88,0x7b,0x3d, -0x79,0x58,0x27,0xe8,0x14,0x74,0xc5,0x44,0x14,0xb3,0xce,0x3c, -0x6c,0x39,0xe2,0x66,0xba,0xc3,0x8d,0x06,0x5e,0x19,0xde,0x32, -0x84,0xee,0xc9,0x5c,0x2c,0xfe,0xec,0x06,0xfb,0x61,0x36,0x57, -0x11,0xb5,0xab,0xf8,0xaf,0x0f,0x5a,0x69,0x1c,0xf8,0xd2,0xbf, -0x68,0x9b,0x3d,0xb6,0xef,0x7b,0x05,0x26,0x16,0x6b,0xbe,0x5a, -0xa6,0x55,0x64,0xaa,0x72,0x62,0xf2,0x2d,0x8e,0xca,0xb2,0x52, -0x9c,0x9d,0x23,0x8c,0xfd,0xc2,0xad,0xcf,0x15,0xf9,0x0b,0xb7, -0xdf,0x34,0xd6,0x94,0xfe,0x7f,0xc4,0xbd,0x09,0x60,0x5b,0x57, -0x95,0x30,0xfc,0x16,0x2d,0xb6,0x65,0xcb,0x96,0x65,0x2d,0x96, -0x25,0x4b,0xb2,0x64,0x59,0x5e,0x65,0x5b,0xb6,0xe5,0x7d,0x89, -0x97,0xc4,0x4e,0x9c,0x38,0x8e,0xb2,0x34,0x71,0x9a,0x38,0x89, -0xb3,0xef,0x71,0x5a,0x96,0x36,0x53,0x3a,0x2d,0xa1,0x74,0x1d, -0x96,0x0e,0x50,0x98,0x06,0x0a,0x04,0x42,0xb7,0xa1,0xa5,0xd3, -0x49,0x29,0xb4,0xd0,0x29,0x65,0xad,0x07,0x0a,0x53,0x98,0xfc, -0x03,0xfc,0xf4,0x83,0x02,0xed,0x40,0xa7,0x61,0xaf,0xe5,0xef, -0x9e,0x73,0xef,0xbb,0x7a,0x4f,0x4f,0xb6,0x53,0xca,0xfc,0x7f, -0x53,0xe9,0x5d,0x9f,0xf7,0xf4,0xee,0xbd,0xe7,0x2e,0x67,0xb9, -0x67,0x69,0x86,0x2c,0xb7,0xee,0x70,0x59,0x89,0xd9,0x51,0xe4, -0xa9,0xb6,0xb9,0xa3,0xd1,0x70,0x4f,0x99,0x2c,0x37,0x84,0xb2, -0xe5,0xbc,0xfd,0x14,0x66,0xbb,0xc5,0xbc,0xb7,0xaa,0x31,0x8a, -0x70,0x9c,0x17,0x69,0xe6,0xc6,0x17,0x39,0xdc,0xa6,0x19,0xbb, -0x17,0x39,0xdc,0xa0,0x79,0xfe,0x66,0x3e,0xa6,0xd5,0x7c,0x4c, -0x93,0xaa,0x39,0x16,0xc1,0x39,0xc6,0x66,0x48,0xd6,0xdf,0xd5, -0x68,0xe6,0xce,0x3b,0x38,0xbc,0x56,0x03,0x3f,0xc1,0xe1,0x75, -0x1a,0xf8,0x2d,0x1c,0xde,0xa8,0xae,0x9f,0xcf,0xb5,0x08,0xce, -0x65,0x75,0xfd,0xae,0x8c,0xdf,0x35,0x6b,0xde,0x77,0x86,0xc3, -0xe3,0x1a,0xf8,0x75,0x1c,0xde,0xca,0xe0,0x98,0xbf,0x15,0xe7, -0xba,0x91,0xae,0xb1,0xcb,0x82,0x0a,0x2e,0x70,0xb8,0x55,0x0d, -0xc7,0x76,0x51,0x78,0xbe,0x06,0xfe,0x02,0x87,0xe7,0x70,0x78, -0x12,0x72,0x1a,0x31,0x38,0xf4,0xc0,0x9f,0xb5,0x5e,0x4b,0xd6, -0xf7,0xc3,0x1a,0x53,0x3d,0x8f,0x6b,0x8c,0x3e,0x6f,0xba,0x2c, -0xb0,0x9c,0x49,0x4d,0x92,0x95,0xac,0xb1,0x4a,0x22,0x55,0x7e, -0x14,0x8e,0x87,0x14,0xa9,0x32,0xa2,0xf1,0xfd,0xd5,0x65,0x4f, -0xd4,0x25,0xc0,0x53,0x27,0x7d,0xd1,0x65,0xec,0xd3,0xd9,0xff, -0xc3,0xe1,0x78,0x13,0x67,0x85,0x22,0x2c,0x82,0x6f,0x13,0x32, -0xf7,0x20,0x6e,0x46,0x98,0x94,0x20,0x20,0x13,0x20,0xa7,0x73, -0x23,0x56,0x11,0x8a,0xa8,0xcd,0xab,0xa4,0x5a,0x76,0xba,0x0c, -0x4b,0xff,0x8c,0xeb,0xa8,0x40,0x95,0x67,0x49,0xb5,0xc8,0x3e, -0xaf,0xca,0xb8,0xf4,0x3c,0x5d,0x3c,0xe9,0x04,0xca,0xaa,0x75, -0x25,0xe6,0x65,0xe6,0x60,0xe2,0xf8,0x8f,0x70,0x7c,0x16,0x69, -0xc6,0xfd,0x8b,0x1c,0x6e,0xd3,0x8c,0xcb,0x8b,0x1c,0x6e,0xd0, -0x3c,0x7f,0x33,0x1f,0xaf,0x6a,0x3e,0x5e,0x49,0xd5,0xfc,0x89, -0xe0,0xfc,0x61,0xa3,0x9f,0xf5,0x77,0x35,0x9a,0x79,0xf1,0x0e, -0x0e,0xaf,0xd5,0xc0,0x4f,0x70,0x78,0x5d,0x1a,0x2e,0x85,0x70, -0x1d,0x18,0xd9,0xfa,0x51,0xd5,0xcf,0xe7,0x51,0x04,0xe7,0xa9, -0xba,0xfe,0x32,0x7c,0x5f,0xfa,0x77,0xcd,0xaa,0xf7,0x99,0x71, -0xfd,0x18,0xd9,0xfa,0x51,0xd7,0x7f,0x1d,0x87,0xb7,0xe2,0x9b, -0x64,0x21,0x0f,0xfd,0xbf,0xe9,0x1e,0xbf,0x46,0xf8,0x36,0x30, -0xb5,0xe3,0xc2,0x5a,0x66,0x78,0xf7,0xb8,0xd0,0x35,0x47,0xaf, -0xab,0xf8,0x4c,0x64,0x94,0xd3,0x93,0x79,0x2c,0xb0,0x44,0xbe, -0x9a,0xb4,0x2b,0x32,0x88,0x9d,0xc0,0xab,0x8a,0xcc,0x2a,0xa3, -0x8d,0x94,0x40,0x00,0xb3,0x30,0xdf,0x37,0x53,0x0c,0x34,0x93, -0xca,0x5f,0x31,0xd4,0x9f,0xc1,0xb3,0x90,0xae,0x7c,0x08,0x9f, -0xf5,0x13,0xc8,0x10,0x3b,0xa7,0xbe,0x48,0x78,0xb8,0x36,0xe6, -0x5b,0x61,0x42,0x5a,0x01,0xcf,0x02,0x7f,0x3e,0x4a,0x4a,0x18, -0x18,0x48,0xbf,0xef,0x33,0xfb,0x49,0xcc,0x45,0xac,0x92,0x3c, -0x99,0x29,0xa5,0x3a,0xc3,0x39,0xe6,0xd6,0x22,0xbf,0xbd,0xbd, -0x63,0x6c,0xdb,0xe6,0xbe,0xda,0x48,0xa4,0xd6,0xda,0x9a,0x53, -0x56,0xd9,0x54,0x5e,0xdf,0x6b,0x93,0x4b,0x06,0xaa,0xd6,0x4e, -0xa4,0x52,0x4d,0x31,0xbb,0xdf,0x65,0x33,0x75,0xe6,0x94,0x55, -0xc5,0xfd,0xf1,0x31,0x87,0x6c,0x1d,0x0c,0xba,0xc3,0xee,0xfc, -0x96,0x44,0x4f,0x40,0x6c,0x6a,0x68,0x7e,0xaa,0x39,0x7f,0xcd, -0xd8,0xda,0x75,0xad,0x83,0xad,0x75,0xa1,0x60,0x49,0xa4,0xbc, -0x38,0x1a,0xa9,0x0d,0x5d,0x7b,0xba,0xad,0x74,0xe5,0xd6,0xc2, -0xd2,0x80,0xad,0xcc,0x55,0x1f,0x76,0x76,0xb7,0x75,0x25,0x7a, -0x6d,0xbe,0x4a,0x47,0x32,0xda,0x50,0x58,0xdd,0x20,0x7e,0x72, -0x78,0x55,0x45,0xc5,0xaa,0x61,0x3a,0xce,0x38,0x3e,0xb8,0xcf, -0x5c,0xa2,0xfb,0x1b,0x1b,0x7f,0xcc,0xb1,0x8d,0x70,0x33,0x85, -0x17,0xa8,0xe1,0x46,0x0e,0x2f,0x28,0x50,0x72,0x72,0x37,0x61, -0x4e,0xee,0x2e,0xc8,0x59,0xd6,0x9c,0x8e,0xdb,0x90,0x3d,0x75, -0x4f,0x66,0xf0,0x34,0xea,0xb5,0xd2,0xc2,0x93,0xc6,0xb7,0xb0, -0xb3,0x43,0xb8,0xfa,0x40,0xb9,0x5f,0x48,0x84,0x59,0x3f,0x1e, -0x73,0xfb,0x04,0x79,0xfb,0xe3,0x42,0x33,0x61,0xc4,0xeb,0x2e, -0x81,0x92,0x0b,0xed,0xf3,0xb2,0xa7,0xee,0x2e,0x14,0x5d,0xd4, -0x07,0x4c,0xe7,0x53,0xcc,0x42,0xa7,0x89,0x3d,0xd9,0x72,0x7a, -0x4f,0xad,0xce,0x93,0xed,0x25,0xbe,0xaa,0x62,0x7f,0xd4,0x59, -0x1d,0xb3,0x44,0x72,0xcb,0x9d,0xf6,0x52,0x4f,0x8d,0xd7,0x3a, -0x35,0x13,0xe8,0xde,0x24,0x15,0xe9,0x32,0x7d,0xc7,0x07,0xa5, -0x26,0xd9,0x54,0x11,0x70,0x04,0x4a,0xf2,0xca,0xac,0xd5,0x16, -0x5b,0x61,0x91,0xd5,0x61,0x32,0x0c,0x59,0xef,0x38,0x06,0x69, -0xfb,0xd2,0x78,0xc3,0xf5,0x46,0xf1,0x96,0xaf,0xc6,0xa7,0xf4, -0x23,0x0e,0x37,0x17,0xd0,0xb3,0x14,0x88,0x4d,0xfe,0x1e,0x96, -0x37,0x3c,0x02,0x9e,0x83,0x36,0xc2,0x90,0x44,0xb9,0xa9,0x0d, -0xc8,0x31,0x36,0x8d,0x86,0x85,0x69,0x8a,0xd3,0x3c,0x69,0x08, -0x00,0x21,0x15,0x60,0xc9,0xc4,0x63,0x19,0x89,0x1e,0xe8,0x84, -0xf7,0xf2,0x40,0x27,0x36,0xb6,0x83,0x7b,0x79,0xba,0x3f,0x25, -0x0d,0x9e,0x4b,0x93,0x4f,0x9c,0x6c,0xde,0xba,0x94,0xe2,0x71, -0x73,0xe8,0xd5,0x6d,0x33,0x33,0xdb,0xf6,0xc6,0x0c,0x13,0x13, -0x86,0xd8,0x9a,0xd2,0x86,0x90,0xc3,0x11,0x6a,0x28,0x5d,0xb1, -0x62,0x85,0x38,0xb5,0xaf,0xa9,0x27,0x9f,0x27,0x16,0x4f,0xee, -0x5c,0xc9,0xb7,0xe2,0x0d,0xab,0xb6,0xac,0xda,0x20,0x7d,0xf6, -0x49,0x9a,0x43,0x5d,0xea,0xc4,0x5c,0xb3,0x35,0xc2,0xe7,0x81, -0x59,0x53,0xe2,0xe3,0x94,0x6a,0x62,0x90,0xea,0xb8,0x72,0x5d, -0xde,0x3f,0x5d,0xd6,0xd9,0xf4,0xf1,0x37,0xd8,0x72,0xe5,0x5c, -0x1e,0x80,0x41,0xc8,0x25,0x48,0x07,0x33,0xea,0x5c,0x9c,0x69, -0xb9,0x5c,0xc9,0x2e,0xc0,0x19,0x27,0x0b,0x61,0x1d,0xc6,0x73, -0x0d,0x30,0x5b,0xc9,0x65,0x46,0x79,0x60,0x66,0x69,0x65,0xea, -0x02,0x2a,0xf0,0x5a,0x51,0x8a,0xca,0x4c,0x14,0xb8,0xc4,0x71, -0x92,0x3a,0x61,0xe0,0x87,0x3f,0x3c,0x31,0x30,0x90,0x2d,0x69, -0xe0,0xc3,0xbd,0x23,0x23,0xbd,0xf3,0xe7,0xb2,0xe5,0x60,0xa7, -0x76,0xa3,0xaf,0x61,0x44,0xca,0x1d,0x40,0xeb,0x15,0xc9,0x37, -0xa2,0xf1,0x41,0x0b,0x40,0xa7,0x03,0x59,0x33,0x9e,0x5e,0xc4, -0xd8,0xc9,0xd4,0xd1,0xc5,0x1e,0x83,0xa3,0x38,0xc5,0x16,0x2f, -0xc2,0x3c,0xae,0xea,0x91,0x84,0x83,0xb7,0x0f,0x3b,0x88,0x56, -0x9b,0x8e,0x8a,0x55,0xe6,0x2a,0xf8,0x8e,0x97,0x8b,0xae,0x84, -0xd6,0x84,0x54,0xfc,0xe6,0x66,0x7f,0x57,0x7d,0xd9,0x75,0x87, -0xda,0xb7,0xa0,0x15,0x69,0xac,0x67,0xc2,0x6d,0x28,0x1d,0xac, -0xd9,0x1d,0x99,0x0a,0xae,0x8a,0x9c,0xb1,0x55,0x96,0x5c,0xfd, -0x76,0x66,0x49,0x2a,0x3d,0xd3,0xe3,0x5f,0x7b,0xf5,0x89,0x81, -0xdb,0xde,0x8b,0xd6,0xa4,0x3b,0x86,0xc2,0xed,0x51,0xa9,0x77, -0x67,0x74,0xa4,0xbe,0xdf,0xd3,0xe0,0xb0,0x94,0x16,0x0d,0xcc, -0xaf,0x4a,0x5b,0x94,0x42,0x3c,0x2c,0x88,0x05,0x8b,0x7b,0x55, -0x2e,0xdd,0xab,0x24,0xba,0xb6,0x28,0x5c,0xe0,0x70,0xab,0x06, -0x6e,0xe4,0xf0,0x02,0x35,0x1c,0xd7,0x28,0x85,0xe7,0x6b,0xe0, -0x2f,0x70,0x78,0x8e,0x06,0xfe,0x23,0x0e,0x37,0x73,0x78,0x92, -0xc0,0x8b,0x18,0x1c,0xa8,0x6a,0xab,0xaa,0xde,0x74,0x3b,0x2d, -0x59,0xeb,0x05,0x9e,0xae,0x41,0x05,0x7f,0x9a,0x3f,0x6f,0x92, -0x28,0x4f,0x37,0x48,0xf6,0x5a,0xf2,0x7e,0x42,0x9b,0x06,0xc1, -0x2a,0x26,0x97,0xcb,0x4d,0xb9,0x4a,0x3c,0x45,0xf5,0xe9,0xea, -0x12,0x09,0x76,0xd5,0x1c,0x5b,0x2e,0x4f,0x0a,0x6e,0xe7,0x62, -0x91,0x87,0x40,0x7a,0xd8,0xc1,0x28,0x3d,0x9d,0x12,0x90,0xaf, -0x93,0x59,0xea,0xf0,0xc1,0xb4,0x55,0x69,0x66,0x0c,0x4f,0xa4, -0x7f,0xca,0x4e,0x2c,0x9b,0x55,0x4c,0x9c,0xbd,0x95,0xfb,0x98, -0x8b,0x07,0x1a,0xfa,0x4e,0x48,0x79,0xfe,0x92,0x96,0x4d,0x10, -0xd4,0x60,0x73,0x6b,0xcb,0xc6,0xee,0x40,0xea,0x46,0x67,0x75, -0x57,0xb8,0x65,0x4d,0x49,0x97,0xb9,0xb4,0x3c,0x58,0xe4,0x0a, -0x96,0xe4,0x32,0x86,0xae,0xd1,0x51,0xd9,0x1a,0x08,0xb6,0x57, -0xbb,0x08,0x37,0x37,0xd4,0x2a,0x1b,0x8c,0x34,0x31,0xea,0x48, -0x55,0x64,0x70,0x2a,0x11,0x71,0xd3,0xdd,0x38,0x5a,0xe4,0xf7, -0x7b,0x0b,0xec,0x3e,0x57,0x89,0x85,0xb1,0x77,0x7f,0xb2,0x54, -0xb4,0x57,0x3b,0xdd,0x35,0x1d,0x15,0x66,0x35,0xbe,0x5f,0xe4, -0x78,0x35,0xa8,0xc6,0xa1,0x19,0x79,0x9e,0x5c,0xc6,0x2b,0x35, -0xa8,0xc6,0x53,0x19,0x9f,0x08,0xce,0x0b,0x36,0xaa,0x78,0xbf, -0x06,0xc7,0x35,0xfd,0xbb,0x66,0xd5,0xf8,0x39,0x91,0x57,0xca, -0x65,0xbc,0x92,0x6a,0x5c,0x91,0x57,0xca,0x65,0xbc,0x52,0x03, -0x1b,0xd7,0xcb,0x38,0xae,0x3e,0xb2,0xcf,0xed,0x03,0x46,0x45, -0xd9,0xe7,0x5c,0x1a,0xab,0x1e,0x5d,0x7e,0x53,0xf5,0xb6,0x56, -0xc0,0x75,0x90,0x2e,0x1e,0x0b,0x09,0x5c,0x6f,0x42,0xdc,0x33, -0x30,0x97,0x0d,0x63,0x35,0x8d,0x39,0x45,0x47,0x43,0x75,0x92, -0x40,0xed,0xc1,0x7b,0x44,0x17,0xcb,0xc1,0xd0,0x23,0x06,0xc5, -0xa7,0x95,0x21,0x71,0x1d,0x1a,0x4f,0x6c,0xed,0xab,0x08,0xf5, -0x6e,0x69,0x81,0xb1,0xda,0xa4,0x8c,0x48,0xea,0x45,0xd1,0xa9, -0x0c,0x40,0xcb,0x20,0x19,0x97,0x9e,0x5e,0x48,0x58,0x0b,0xe3, -0xb2,0x32,0x8d,0x7d,0xec,0x7b,0x1d,0x21,0x96,0xb0,0x26,0x0b, -0xe8,0x9a,0x4c,0x29,0xb8,0x87,0x5c,0xef,0xf3,0x1c,0x9e,0xaf, -0x86,0x93,0x15,0x17,0xc1,0x18,0x93,0x26,0xb9,0x58,0xf3,0xfc, -0x8f,0x38,0xdc,0x9c,0x52,0xf8,0xe6,0x3a,0xc6,0x57,0xe7,0x67, -0xc8,0x65,0x75,0x8c,0xdf,0xcd,0xcf,0x90,0xcb,0xe0,0xf9,0x1c, -0x0e,0x2f,0xd6,0x3c,0xff,0x23,0x0e,0x37,0x5f,0xa6,0x7c,0x4e, -0x90,0xe5,0x3d,0x0f,0x80,0x34,0xe5,0x61,0x1a,0xb3,0x0c,0x0a, -0xa4,0x4b,0x9d,0x59,0xbe,0x38,0xc9,0x65,0x82,0x17,0x01,0x20, -0xed,0xb1,0x81,0x9f,0x27,0x79,0xb9,0x0d,0x4d,0x18,0xc0,0xcd, -0xc7,0x96,0x61,0x4e,0x2c,0x32,0xd5,0xa3,0x61,0x8e,0x1a,0x77, -0x78,0x98,0xa9,0xa0,0x47,0x71,0x92,0xb5,0xd0,0xe4,0xc7,0x69, -0x77,0xcf,0x2c,0x49,0x90,0x09,0x69,0xf9,0xf0,0x87,0x33,0x13, -0x21,0xef,0x04,0xca,0xf2,0x70,0xb6,0x64,0xc8,0x0b,0x0b,0x0b, -0xbf,0x82,0x7e,0xcb,0x8f,0x10,0x7c,0x58,0x71,0xce,0xe6,0x2f, -0xec,0x10,0x1e,0x83,0x78,0x6c,0x98,0xeb,0xda,0xb0,0x64,0x6e, -0x6d,0xcf,0x5f,0x99,0x5b,0xfb,0x20,0xcb,0x8c,0x3e,0xa4,0x24, -0x43,0x27,0xe3,0x82,0xf5,0xc1,0x1e,0x2a,0x4a,0x74,0xaf,0x0f, -0x08,0x2a,0xb8,0xc0,0xe1,0x56,0x35,0x1c,0xc6,0x9d,0xc1,0xf3, -0x35,0xf0,0x17,0x38,0x3c,0x47,0x81,0x93,0xb5,0x5e,0x21,0xbd, -0x42,0xfa,0x59,0xc8,0xf6,0xee,0x35,0x59,0xeb,0xb5,0x64,0x7d, -0x3f,0xec,0xdd,0xaa,0xe7,0x61,0xef,0x66,0xcf,0x9b,0x02,0x74, -0xef,0x3e,0x48,0xf6,0xee,0x84,0xf4,0x0a,0x3a,0x75,0xdc,0x09, -0x87,0x02,0xd4,0xe2,0x9c,0x1e,0x03,0x56,0x2c,0xbe,0xc6,0x75, -0x5e,0x2d,0xea,0xbd,0x5b,0x67,0x03,0x94,0xd6,0xb4,0x16,0xf0, -0x00,0x3d,0xb9,0xdc,0x90,0x18,0x78,0x1d,0x25,0xfc,0x83,0x1f, -0xb5,0xae,0x11,0x96,0xcd,0x81,0x8a,0xe0,0x34,0x0a,0x1d,0x0c, -0x81,0x5a,0xf6,0xd6,0x3a,0x1e,0xfe,0x08,0x25,0xef,0xd4,0xad, -0x38,0x44,0x2a,0xa1,0xfb,0x51,0xa6,0x8b,0x65,0x02,0x37,0x1b, -0x3a,0x95,0xb4,0x2d,0x0f,0xa7,0xd5,0xb2,0x1c,0x4f,0x2f,0x72, -0x3c,0x19,0x02,0xd4,0x66,0x62,0x72,0xa1,0x5d,0x32,0x11,0x3c, -0x81,0xf5,0xbf,0x47,0x88,0x0a,0xef,0x87,0x39,0x5e,0xcd,0xd4, -0xeb,0x16,0xe6,0x33,0x64,0x29,0xa2,0x49,0x92,0x2c,0x68,0xda, -0x25,0x2c,0xc3,0xe7,0x7a,0x32,0x55,0x17,0x45,0x59,0xf3,0xde, -0xe4,0x6b,0x22,0xfc,0x15,0x20,0x7e,0x4a,0xd0,0xe7,0xb8,0x80, -0x59,0x26,0x97,0x30,0x6b,0x7e,0x48,0xf7,0x85,0x6c,0x2f,0x1c, -0x58,0x68,0xf1,0x13,0xd4,0xfc,0x75,0x60,0x62,0x62,0xe2,0xe7, -0x13,0x89,0xae,0x67,0xa2,0x8a,0xa6,0xda,0xce,0x0a,0x92,0x61, -0xfe,0x8d,0x9b,0xa4,0xf7,0xcc,0x5f,0x68,0x59,0x21,0xf7,0xa6, -0x11,0xa3,0xd6,0x5c,0x1b,0x84,0x3d,0x04,0x17,0xed,0xb2,0x05, -0x71,0x01,0xba,0xeb,0x77,0x02,0xdf,0xa9,0xe8,0xae,0x95,0x3c, -0xb2,0x85,0x4c,0xa3,0x5c,0x88,0xc6,0x13,0x8b,0x4a,0x5e,0x3a, -0xe4,0xa8,0xbb,0x9e,0x81,0x9c,0x34,0x1e,0x1e,0x17,0x8a,0x2e, -0x81,0x8a,0x3c,0xb3,0xcf,0x09,0x97,0xb9,0x92,0x7c,0x78,0xff, -0x36,0x6e,0x1c,0x3d,0x28,0x4a,0xe4,0x4b,0xdd,0xaf,0xea,0x0b, -0xa1,0x7b,0xdd,0xe4,0x83,0xfb,0xe7,0xf6,0x85,0x76,0xf1,0x61, -0x09,0x92,0xf1,0xa0,0x5f,0xa5,0x05,0x0f,0xc2,0x96,0xcb,0x6d, -0x5d,0xa4,0xdf,0x2f,0xd0,0xaf,0x12,0x9c,0x47,0xa1,0x1d,0x7b, -0xff,0x9c,0x9a,0x17,0x37,0x24,0xba,0x5e,0xbc,0x49,0x1a,0x1a, -0x82,0x3a,0xe9,0xda,0x84,0xba,0x50,0x87,0x26,0x16,0xd2,0xbd, -0x62,0x8a,0xc3,0xa5,0x6a,0x5c,0xb3,0x14,0x9e,0xcf,0xe0,0x07, -0x16,0x8c,0x52,0x2f,0xc6,0x8f,0xb5,0xe1,0x5a,0xae,0x12,0x07, -0x69,0xcc,0x49,0xb4,0xf9,0x37,0xd0,0x7c,0x7a,0x39,0xd9,0xf3, -0xe9,0xbd,0x99,0x6c,0xe3,0x4b,0xe7,0xd3,0xab,0x4c,0xe7,0xd3, -0x33,0xdb,0x43,0x62,0xd9,0x34,0x11,0x9a,0x76,0x5c,0xd8,0xf5, -0x83,0xdf,0xec,0x9e,0xdf,0xf2,0x29,0xc9,0x90,0xfa,0xcb,0xf6, -0xcf,0x7c,0x37,0xf5,0x1d,0x68,0x2f,0xe6,0x91,0x93,0x81,0x3f, -0x2c,0x26,0xcd,0x34,0xa3,0xec,0xfe,0x18,0x41,0x29,0x4d,0xf6, -0x0a,0xde,0xc2,0xb4,0x5f,0x13,0x18,0xdb,0xfd,0x25,0xfa,0x1c, -0xe9,0x97,0x5d,0x78,0x85,0xc2,0x49,0x7f,0x73,0x54,0xf0,0x2a, -0xb1,0x8e,0x3f,0x3f,0xa0,0x82,0x9b,0x85,0x1f,0xa4,0xde,0xcf, -0xf3,0xd6,0xbd,0x44,0xb0,0x73,0x0f,0xec,0xf5,0xda,0xfc,0x40, -0xba,0x53,0x22,0x75,0xae,0xd7,0xf4,0xf9,0x8f,0x99,0xf9,0xf4, -0xa8,0xa3,0x09,0x5a,0xf8,0x5f,0x96,0x98,0x62,0x42,0x2b,0xc1, -0x6c,0x67,0xe7,0x66,0x74,0x1e,0x5e,0xc4,0xb3,0x46,0xe5,0x2c, -0xd5,0xc0,0xcf,0x52,0x95,0xe7,0x04,0x76,0x94,0x92,0x88,0xc3, -0x29,0x29,0x6e,0x60,0x78,0x46,0xea,0x08,0x4e,0x3c,0xfa,0xe1, -0x0f,0x3f,0x2a,0x12,0x91,0xea,0x51,0x42,0x4b,0x2e,0x35,0x0f, -0x36,0x8b,0x3d,0x43,0xa9,0xbb,0xc9,0xf5,0x75,0x4a,0x53,0x76, -0x21,0x6d,0x03,0xbe,0xbc,0x84,0xce,0x13,0x59,0x50,0xc1,0x8d, -0x1c,0x5e,0xa0,0xc0,0x17,0x8c,0x84,0x07,0x28,0x62,0x70,0xc0, -0x5b,0x2c,0xfd,0x3c,0xf2,0x95,0xf4,0x79,0x83,0x4c,0xf7,0x7c, -0x81,0xf1,0x0c,0x6e,0x22,0x34,0xdf,0x04,0x92,0xbc,0x4f,0x49, -0xc5,0x80,0x86,0x4d,0xc2,0x32,0x09,0x8e,0xd3,0x00,0x16,0x7d, -0xbf,0x7c,0x71,0xa5,0xac,0x5a,0x82,0xcf,0xe1,0x72,0xbb,0x44, -0xae,0x6e,0xca,0x1d,0x48,0xc0,0x1d,0xd8,0xe3,0x59,0x98,0x82, -0x90,0x4c,0x04,0xf5,0x5d,0x13,0x99,0x09,0xba,0x37,0x6d,0x6f, -0x69,0x95,0x0c,0x49,0x3d,0x5b,0x20,0xbd,0x04,0xc7,0x5a,0xbb, -0xc8,0x1a,0x7b,0x03,0x79,0xd6,0x13,0x30,0x40,0x5a,0x5b,0x03, -0x1d,0x15,0xd3,0xe5,0x16,0xd7,0x29,0x91,0xd9,0xd9,0x8e,0xca, -0x13,0xcc,0xc1,0x6c,0xcf,0x61,0xd3,0xa3,0xe7,0xe6,0xd7,0x83, -0xb4,0xed,0xa6,0x9e,0xd5,0x4a,0xe3,0x6d,0xe9,0x2e,0xc1,0x8e, -0xf0,0xf9,0x3f,0x2b,0xf9,0xc5,0x95,0xfe,0xc0,0xee,0x20,0x3e, -0xcd,0x1b,0xcf,0x7b,0xb4,0x9b,0xec,0x16,0x4c,0xff,0xef,0xc4, -0x39,0xe0,0xd0,0xe8,0xc1,0x28,0x5c,0xe0,0x70,0xab,0x1a,0x8e, -0xfc,0x24,0x85,0xe7,0x6b,0xe0,0x2f,0x70,0x78,0x8e,0x90,0x3e, -0x4b,0x73,0xe2,0x9c,0x71,0x30,0xbe,0xa2,0x4e,0xc8,0x56,0xaf, -0x25,0xeb,0xfb,0x81,0xaf,0x50,0x3f,0x9f,0xc7,0x9f,0xcf,0xd5, -0x3c,0xff,0x34,0x87,0x9b,0x04,0xaa,0x47,0x8a,0x2d,0xbc,0x48, -0xf6,0xba,0x3a,0xa1,0x4c,0x08,0x13,0x56,0xe3,0x5e,0x90,0x2a, -0x94,0x9c,0x48,0x2e,0xe6,0xeb,0xe3,0x42,0x83,0x24,0x61,0x79, -0xa5,0x09,0x2c,0xfa,0x5c,0xb4,0xb8,0xa4,0x1e,0xa5,0x34,0x97, -0x57,0x25,0x57,0x84,0x54,0xb2,0x00,0x7f,0xf4,0x19,0x2a,0x52, -0x7a,0xf1,0xb9,0x0a,0x7e,0x37,0x44,0x20,0x2e,0x96,0x31,0x49, -0x29,0xd5,0xb1,0xbb,0x64,0x44,0x13,0x69,0x9f,0x0a,0x42,0x57, -0x58,0xae,0x67,0x30,0x29,0xb3,0xa3,0x1a,0xc1,0x65,0x8f,0x50, -0xb5,0x42,0x95,0xec,0x8c,0x0d,0xbb,0x3d,0xe0,0x4f,0x51,0xb7, -0xca,0xd7,0x57,0xaf,0x2a,0xcf,0x0d,0x4e,0x16,0xfe,0xba,0xb2, -0x1f,0xbf,0x4d,0xc9,0xd0,0xb6,0x36,0xd0,0xc1,0x79,0x5c,0xe3, -0x15,0x50,0xee,0xdd,0x8d,0x65,0xf1,0xf5,0x89,0xe4,0x58,0x73, -0x50,0xf4,0x57,0xa4,0x8e,0x62,0x29,0xf5,0xd3,0x0a,0x8a,0x47, -0xc4,0x17,0xd2,0x8c,0xa8,0x7e,0x1e,0xe0,0xda,0xa6,0xf8,0x35, -0x08,0x02,0xd7,0xb9,0x78,0xa5,0x59,0x8c,0x46,0x7f,0x12,0xb6, -0x23,0x25,0x1a,0x7d,0x01,0x62,0x57,0xd0,0x22,0x51,0xb7,0x94, -0x3d,0x59,0x57,0x6e,0x5a,0x74,0x33,0x92,0x1f,0x85,0x78,0x3e, -0x32,0x18,0xa9,0xb2,0x4b,0x94,0x71,0xf3,0x52,0xf1,0x0d,0x8d, -0x25,0x14,0x3c,0x29,0xe2,0xb7,0x2b,0xde,0x9a,0xe1,0xc0,0xeb, -0x2d,0x8d,0x38,0x23,0xd5,0x80,0xa2,0xb6,0xcd,0x3d,0x01,0xb8, -0xd6,0x86,0xb7,0x7e,0x56,0x51,0xb8,0xcc,0xee,0x29,0x0d,0x87, -0x0e,0x0e,0x01,0x72,0xa8,0x48,0xbd,0x32,0x92,0x7f,0x7c,0xfe, -0xdf,0x08,0x66,0x92,0x13,0xf8,0x95,0xc6,0x81,0x17,0x71,0x53, -0x9b,0x81,0x9b,0x24,0xe0,0x80,0xc1,0xb5,0x73,0x5b,0xfd,0xbc, -0x7a,0x6e,0x7b,0x91,0xfe,0xd6,0xea,0xe6,0xb6,0x17,0x79,0x72, -0xfa,0xbc,0x51,0xf5,0x7c,0x23,0xca,0xd7,0x0e,0x26,0x97,0xd7, -0xa9,0xd6,0x94,0xb2,0x46,0x22,0xb8,0x06,0x59,0xed,0x78,0x3f, -0x8a,0x6b,0x25,0xfd,0xbb,0x66,0xcd,0x1a,0x3a,0xc3,0xe1,0x71, -0x0d,0xfc,0x3a,0x0e,0x6f,0xc5,0x37,0x11,0xca,0xcd,0xce,0x30, -0x0a,0x88,0xa0,0x36,0x20,0x3c,0x00,0x53,0x77,0x05,0xf3,0xef, -0xa8,0xc5,0x53,0x34,0x7a,0x4d,0x5b,0x4c,0xb0,0xfc,0x43,0xe9, -0xc1,0x6d,0x00,0x40,0xc3,0x52,0x9a,0xc8,0xb4,0xf5,0x26,0xd0, -0x00,0x38,0x67,0xa8,0x42,0x6a,0x09,0xa5,0x06,0xd4,0x8b,0x8b, -0x4c,0xa6,0x4f,0xe0,0x39,0x45,0x9c,0x40,0xa8,0x1b,0x67,0x1c, -0xed,0x34,0x45,0x74,0x3b,0x11,0x58,0x74,0x83,0x1a,0xf2,0x4b, -0x1f,0xb5,0x87,0xd3,0xcc,0x83,0x4a,0x25,0xaf,0x85,0x1d,0x0e, -0x24,0x34,0xda,0x3b,0xe5,0xd8,0x22,0xa4,0x3a,0xb6,0x78,0x38, -0x5a,0x5f,0x1f,0x25,0x1f,0xf1,0xba,0x58,0x5d,0x5d,0x6c,0x7b, -0xcd,0x0a,0x97,0x1c,0xdd,0x10,0xed,0xac,0xb2,0xdb,0xab,0x3a, -0xa3,0x75,0x03,0xc5,0xb2,0x73,0xa8,0x66,0xf5,0xea,0x3f,0x36, -0x35,0x14,0x7b,0x1d,0x56,0x53,0xa7,0xb9,0x34,0xdc,0xd4,0xb8, -0x72,0xd3,0xc1,0x4d,0x2b,0xf1,0xeb,0x0f,0x15,0xab,0x86,0x87, -0x57,0x55,0xa4,0xbe,0x5d,0x57,0xbd,0x51,0x99,0x56,0xb1,0x58, -0x4b,0x0d,0x1c,0x4f,0xac,0xba,0x8a,0x1f,0x4f,0xd0,0xb1,0x1a, -0x87,0x78,0x25,0xb8,0x0f,0xba,0xe9,0xdc,0x6a,0x55,0xc3,0x8d, -0x1c,0x5e,0xa0,0xc0,0x09,0xef,0x12,0x93,0x0c,0x0c,0x0e,0x34, -0x38,0x9f,0xeb,0x56,0xf2,0xf1,0x3d,0xa5,0xf4,0x3d,0x0b,0x82, -0x0a,0x6e,0xe4,0xf0,0x82,0x05,0x2a,0xcf,0x83,0x2e,0x2d,0x9f, -0x8c,0xed,0x5a,0xe1,0x6e,0x38,0xb7,0x58,0x27,0x4c,0xa8,0xe8, -0x17,0xcb,0xd0,0x9d,0x1e,0xb6,0x41,0x00,0x0c,0xd2,0x61,0x5b, -0x49,0xcf,0x25,0x56,0x12,0x11,0x6a,0xa5,0x10,0x23,0x1f,0xd0, -0x16,0x83,0x93,0x9e,0xf9,0x12,0x0c,0x21,0x08,0x58,0x83,0x4c, -0xe4,0xaa,0x2e,0x52,0x72,0x96,0xf8,0xc9,0x95,0xce,0x9c,0x41, -0x34,0x6c,0xa4,0x39,0x4b,0xfc,0xcc,0xb0,0xb1,0x93,0x54,0xe6, -0x64,0x59,0x61,0x9a,0x85,0x4e,0x25,0x78,0x43,0xc6,0xc9,0x05, -0xff,0x13,0x7d,0x84,0xe4,0xb4,0x0f,0x9a,0xac,0x75,0x12,0x52, -0x1d,0x7f,0x88,0x6d,0xea,0x83,0x8c,0x82,0xa1,0x3d,0xe1,0xb6, -0xca,0x2d,0xbd,0xdd,0xe3,0x85,0x9e,0x40,0xf1,0xfa,0xb2,0xbe, -0x96,0x90,0xbf,0x7d,0x4d,0xfd,0xc8,0xbe,0xca,0x96,0xdc,0xb2, -0xaa,0x96,0x8a,0x9e,0x81,0x42,0x4f,0xd0,0xb6,0xde,0xdb,0xdb, -0x12,0x3a,0x7a,0x75,0xae,0x72,0x16,0xf2,0xbc,0xea,0x68,0x63, -0xd0,0xd8,0x5a,0x1d,0xab,0xaa,0xa9,0x6d,0x28,0x29,0x2b,0xca, -0x95,0xf3,0x0d,0x56,0x7f,0x4b,0x4d,0x55,0x47,0x95,0xbd,0xae, -0xaa,0xc9,0xe2,0xb2,0xe7,0xd7,0x44,0x55,0xf0,0xb1,0xa4,0xcc, -0x4f,0x47,0x54,0x63,0x81,0xeb,0x96,0x8e,0x45,0x3e,0x1f,0x23, -0x23,0x8c,0x05,0x83,0xc3,0x98,0x46,0x70,0x8c,0xf6,0x12,0x7e, -0xbd,0x9b,0xf0,0x4f,0x15,0x60,0xa5,0xe4,0x63,0xd1,0x02,0x32, -0xf8,0xef,0x25,0x62,0xc2,0x31,0x3d,0x68,0x51,0x96,0x88,0xd0, -0x54,0x9e,0x30,0xb3,0xa1,0xc9,0x61,0xe6,0x4f,0xfe,0x98,0x12, -0x27,0xc1,0x42,0xa0,0xe9,0x8c,0x73,0x4e,0xce,0xc5,0x06,0x69, -0xe8,0x21,0x9b,0x62,0xa2,0xe4,0x60,0xa4,0x8a,0x46,0x51,0x67, -0xe9,0xd9,0x12,0x41,0xdb,0xde,0x44,0xd7,0x2d,0x9f,0x13,0x37, -0x3f,0xb0,0xef,0x74,0xe5,0xd0,0x74,0xf7,0x8a,0x15,0x5b,0x37, -0x6f,0xdf,0x5b,0xf4,0x70,0xea,0x7f,0xa4,0xa3,0x2d,0x2b,0x86, -0xef,0x59,0xf7,0x53,0xf3,0xce,0x1d,0x2d,0x13,0x6d,0xde,0xa1, -0xfe,0x95,0xa5,0x83,0x1d,0x43,0x2f,0xa5,0xfa,0xa9,0x1f,0x08, -0xe6,0x28,0xfa,0xad,0xd0,0x21,0xfc,0x13,0xb8,0x6f,0x6a,0xed, -0x98,0x75,0x31,0xf0,0x74,0xd6,0x49,0x4d,0x00,0x68,0xd2,0x9f, -0xa0,0xa6,0x37,0x9b,0x0e,0x00,0x74,0x64,0x5a,0x27,0x35,0x71, -0xe3,0xcf,0xb2,0xa2,0xb4,0xd7,0x5a,0x13,0x22,0x05,0x3c,0x16, -0xac,0xcc,0x7d,0x26,0x37,0x1d,0x0e,0x1b,0xad,0x96,0x70,0xfa, -0xf9,0xb4,0x31,0x79,0x43,0x59,0x92,0xdd,0x26,0x70,0xf3,0x21, -0xbc,0xda,0xde,0xb1,0xb1,0xb2,0xd6,0x35,0x8d,0x3b,0xf7,0xc6, -0xba,0xfb,0xab,0xc3,0xee,0x95,0x83,0xdb,0xd6,0x27,0xd6,0x05, -0xe2,0xae,0xee,0xca,0xfa,0x58,0x59,0x75,0xa9,0xb7,0x35,0x5a, -0xba,0x75,0x6d,0x67,0xdf,0x75,0xeb,0xc4,0xa7,0x86,0x8c,0x90, -0xf2,0xf1,0xcc,0x81,0x9e,0x48,0x7d,0xb8,0x3c,0x3f,0xc7,0x35, -0xd0,0x37,0xbe,0x3a,0x1c,0x6d,0x08,0x78,0x22,0x35,0xde,0xc6, -0x82,0x9c,0xdc,0x12,0x7f,0x63,0xe5,0xc8,0x98,0x94,0xb3,0x7e, -0xcd,0xc7,0xe6,0x7f,0x0b,0xb8,0xab,0x22,0xfb,0x85,0x15,0xfd, -0xd2,0xde,0x03,0xac,0x88,0x17,0xb7,0xc1,0x45,0xf3,0xf5,0x31, -0xd3,0x46,0x4f,0xd6,0x54,0x6a,0x70,0x6c,0xac,0xa4,0x59,0x55, -0x8e,0x28,0x2d,0xdc,0x82,0xcb,0xc2,0x0c,0x5c,0xf3,0x8a,0xd2, -0xd9,0x62,0x9c,0xcc,0x0d,0xad,0x74,0x2e,0x1d,0x88,0x05,0xcc, -0xfc,0x40,0x19,0xc0,0x0c,0x1c,0x61,0x76,0xa4,0x1d,0x1c,0xe3, -0x52,0xfe,0xd7,0xba,0x12,0x47,0x8e,0xdc,0x7f,0x83,0xc7,0x31, -0xfe,0xeb,0x5f,0x3f,0xf0,0xc0,0x2f,0x57,0xb4,0xbc,0xab,0xf7, -0xd6,0x21,0x87,0xe7,0xec,0x63,0x43,0xb7,0xf6,0x3e,0x42,0xd7, -0x05,0xed,0xd3,0x1f,0xc9,0xba,0xf0,0x30,0xf9,0xed,0xdf,0x84, -0x12,0x80,0x93,0xf5,0x42,0xfa,0xca,0xe1,0x55,0xe2,0xb5,0xf4, -0xf9,0x6c,0x70,0x32,0x45,0x76,0x90,0x75,0xe4,0x65,0x67,0x8a, -0xef,0xa2,0x6e,0x68,0x61,0x2e,0x87,0x58,0xe6,0xf4,0xd9,0x57, -0x16,0x0b,0xfb,0xc6,0xf0,0x58,0x94,0x35,0x68,0x21,0xd8,0x43, -0xba,0x39,0xb2,0x14,0x01,0xc4,0xcd,0x0e,0x0e,0x0b,0x98,0x28, -0x42,0x7d,0xd1,0x54,0x81,0xb9,0x6d,0x21,0x9e,0xed,0x8c,0x9d, -0xe2,0xee,0x98,0x50,0xd9,0x75,0xbc,0x30,0x32,0x3e,0x3e,0xc2, -0x4e,0xc3,0xa4,0x97,0x52,0xdf,0xa2,0x87,0x61,0xa9,0x97,0x44, -0x19,0xcf,0xbf,0xf8,0x69,0x18,0xf4,0x7f,0x6a,0xe1,0xb2,0xf8, -0x7b,0xa4,0x01,0x65,0x94,0x06,0x30,0xdd,0x30,0x85,0x0b,0x1c, -0x6e,0x55,0xc3,0x71,0x3f,0x2a,0xd3,0xe8,0x9e,0x29,0xfc,0x05, -0x0e,0xcf,0xe1,0xf0,0x24,0x81,0x1b,0x18,0x1c,0x38,0x8e,0x6a, -0x21,0x5b,0xbd,0x96,0xac,0xef,0x07,0x7e,0x47,0xfd,0x7c,0x1e, -0x7f,0x3e,0x57,0xf3,0xfc,0xd3,0x1c,0x6e,0x4a,0x51,0x5a,0x35, -0x45,0x68,0x95,0x45,0x32,0x10,0xe2,0x70,0x03,0x9c,0xee,0x51, -0x3e,0x5e,0xd0,0x1a,0xd4,0xa7,0x07,0xa9,0x0e,0x00,0x75,0x4b, -0x1d,0xf7,0xaa,0x3d,0x46,0xb2,0x9a,0xcd,0x51,0x07,0x86,0x08, -0x0b,0x31,0xa4,0x18,0xdd,0xbb,0x62,0xd9,0x8d,0xe1,0x20,0x89, -0x16,0x58,0x3a,0xa0,0x77,0xa1,0x93,0xf9,0x19,0x8a,0xbf,0xd7, -0x99,0xbd,0x15,0x64,0x8a,0x98,0x3a,0x1b,0x37,0x26,0x9b,0x89, -0xab,0x53,0x5f,0x05,0x81,0xad,0xd2,0x23,0xee,0x4d,0xe3,0x2b, -0xc2,0xf1,0x52,0xa4,0xc1,0xd7,0x8b,0x1c,0x6e,0xe0,0xf8,0xba, -0x2c,0xad,0x26,0xbc,0xb9,0x5f,0xf8,0x3b,0x6a,0xe4,0x1c,0x5c, -0x4a,0x57,0xcf,0x24,0x4f,0x4f,0x56,0x73,0x7c,0x9d,0xde,0x06, -0xbc,0xba,0x0a,0x98,0x53,0x14,0x65,0xc8,0x9d,0xcc,0xde,0xdb, -0xc6,0x14,0x73,0x90,0xe5,0xc3,0x0b,0x8a,0xc9,0x4b,0x10,0x65, -0x87,0x70,0xe9,0xb6,0xac,0x08,0x6a,0x8d,0x4b,0xab,0x09,0x73, -0x9e,0x29,0x77,0x5f,0xbd,0x52,0xb2,0x7a,0x2a,0x53,0x4d,0x59, -0x50,0x71,0x9c,0xf5,0x59,0x5a,0x8d,0xbc,0xf5,0x64,0xc6,0x1c, -0x4f,0x42,0x9f,0x19,0x5c,0x33,0x37,0x35,0xcf,0xab,0xe6,0x26, -0x79,0x7e,0x9e,0x3f,0x1f,0x54,0x3f,0x8f,0xbc,0x38,0x7d,0xde, -0xc8,0x9e,0x2f,0x27,0x1b,0x49,0x27,0xce,0x71,0x9f,0x46,0x06, -0x40,0x38,0xce,0x71,0x9f,0x46,0x1e,0xa6,0xf0,0x17,0x38,0x3c, -0x47,0xc8,0xfe,0x1e,0x45,0x36,0x68,0x25,0x7b,0x54,0x08,0xe1, -0x7e,0xcd,0xfb,0x11,0x8e,0xef,0xf7,0x6b,0xde,0x4f,0xe1,0x2f, -0x70,0x78,0x8e,0x06,0x6e,0x60,0x70,0xc0,0xc3,0xb7,0xb2,0xbe, -0xdf,0x92,0xf5,0xfd,0x69,0x99,0x84,0xc2,0x5f,0xe4,0xcf,0x1b, -0xd8,0xf3,0x18,0x4f,0x10,0xdf,0x13,0xd0,0xb4,0x93,0xc2,0x8d, -0x1c,0x5e,0xa0,0x86,0xe3,0x79,0x12,0x85,0x9b,0x19,0xdc,0x8f, -0x78,0xf8,0x02,0x81,0x07,0x11,0xde,0xad,0x81,0x5f,0xe0,0xf0, -0x7e,0x0d,0xfc,0x3c,0x87,0xf7,0x6a,0xe0,0x67,0x38,0xbc,0x53, -0x81,0x93,0xf9,0xd0,0x89,0xb4,0x20,0xa8,0x91,0xcd,0x32,0xeb, -0xed,0xc9,0xfa,0x7e,0xb3,0x3c,0xa4,0x79,0xfe,0x10,0x7f,0xbe, -0x9d,0xc9,0xbf,0x7e,0xb2,0x27,0xad,0x93,0xc0,0xaf,0x03,0x7d, -0x08,0x7c,0xdc,0x86,0xdc,0x97,0x2d,0x6e,0xa3,0x77,0x71,0x1b, -0x5e,0x9d,0x2a,0x2b,0x4d,0x64,0x80,0xe4,0xca,0xc8,0xa1,0x09, -0xcc,0x86,0x17,0x38,0x34,0x0f,0x8b,0xbd,0x03,0xaa,0x7f,0xa0, -0x26,0xf6,0x6c,0x5b,0x52,0x55,0xc8,0x1c,0x12,0x43,0x72,0xfc, -0x77,0xc7,0x7e,0xa0,0xdb,0x87,0x9c,0x5d,0xbf,0xeb,0xda,0x2c, -0xda,0x72,0x77,0x7d,0x5b,0xba,0x38,0x3f,0xa2,0xdb,0x84,0xbe, -0xf6,0x35,0x69,0x3a,0xf5,0x50,0xba,0xef,0x73,0xbc,0xef,0x2b, -0xd4,0xb8,0x32,0xec,0xe0,0xf0,0x41,0x0d,0x0e,0x6f,0xe4,0xf0, -0x36,0xcd,0xf3,0x31,0x8e,0xdb,0x61,0x05,0xb7,0x30,0x46,0x7c, -0xac,0x23,0x38,0xd6,0x6a,0x39,0x36,0xf3,0x77,0x23,0xea,0x31, -0x31,0x84,0x39,0x7c,0xa5,0x06,0x5e,0xc6,0xe1,0xab,0x34,0xf0, -0x38,0x87,0xaf,0xd1,0xd4,0x7f,0x9e,0xd7,0xdf,0x9b,0xb5,0xfe, -0xf4,0xef,0xd6,0x6a,0xde,0x17,0xe5,0xf0,0x75,0x1a,0x78,0x84, -0xc3,0xd7,0xe3,0x9b,0x24,0xd0,0x8a,0x4a,0x8d,0x12,0xe8,0x8a, -0xec,0xc2,0x6d,0xe9,0x68,0xa7,0xf4,0xcc,0xa2,0x78,0xf1,0x5c, -0xc2,0xba,0x8c,0x7d,0xe9,0x33,0x0b,0xe0,0x62,0x8c,0x82,0x95, -0x65,0x87,0x54,0x12,0x56,0x53,0x47,0x1c,0x0b,0x32,0xf0,0x26, -0x76,0x17,0x54,0xcb,0xd4,0x89,0xca,0x8a,0xc7,0x3a,0x98,0x84, -0x98,0x39,0x3b,0x57,0x92,0x59,0x62,0x0f,0x2a,0x3c,0x19,0x84, -0x9d,0x88,0xdb,0xc4,0xf6,0x0f,0xb5,0x27,0xbf,0x23,0xae,0xfd, -0xcc,0x47,0x3f,0xfa,0x99,0x3f,0xfa,0xf7,0xbd,0xfb,0xeb,0x5f, -0x97,0x2e,0x0e,0xbf,0x36,0xfc,0xe7,0x61,0xe9,0x4c,0xea,0x2e, -0x11,0xf7,0x60,0xec,0x0f,0xac,0x21,0xf1,0x3a,0xba,0x76,0xb7, -0x53,0x7c,0x61,0xdc,0x2f,0x5c,0x5b,0x21,0x0a,0xf7,0xaa,0xe1, -0x0f,0x71,0x78,0x9f,0x57,0x89,0x13,0xd6,0x84,0x71,0xc2,0x7a, -0x40,0x83,0x54,0x2b,0xf4,0x62,0xb4,0x7f,0x41,0x1b,0x7f,0x22, -0xbb,0xf3,0x7f,0x9c,0x79,0x89,0x51,0x83,0x5b,0x33,0x2b,0x11, -0x46,0x94,0xca,0xa6,0x4e,0x90,0x2c,0xd1,0x39,0x0e,0x64,0xd3, -0x5a,0x22,0x9b,0x56,0x5e,0x02,0xd1,0x46,0x66,0x8f,0xd5,0x63, -0x1a,0x00,0x6e,0xa4,0x4e,0xa3,0xbe,0x2c,0x69,0x33,0xc7,0x83, -0x87,0x89,0x83,0x1b,0xd6,0xaf,0xdf,0x10,0xa8,0x0f,0xba,0x73, -0x57,0x15,0x04,0x9b,0x06,0x1b,0x72,0xb3,0xda,0xcc,0x15,0x1c, -0xda,0xcf,0xa2,0x89,0xad,0xca,0x75,0x07,0xeb,0xa5,0xeb,0xcf, -0x1c,0x38,0x79,0xe0,0x4c,0xb1,0xbf,0xda,0x15,0xf4,0xb6,0xd5, -0x96,0x89,0x59,0xed,0xe6,0x0a,0x1f,0xfb,0x38,0x0d,0x2f,0x16, -0x74,0x55,0xfb,0x8b,0xd5,0xb8,0x3b,0xcf,0x71,0xd7,0xab,0xc1, -0xe9,0x4d,0x1c,0xde,0xc1,0xe0,0x3b,0xc8,0xd8,0x04,0x10,0xd7, -0x61,0x8a,0xeb,0x5f,0xd1,0xfd,0x0a,0xe2,0x37,0x05,0xa4,0x8b, -0x78,0xaa,0x78,0x0c,0xe6,0x47,0x19,0xdb,0x52,0x2c,0x18,0x28, -0x73,0xd1,0x48,0x47,0x69,0x45,0x35,0xf5,0x40,0xcf,0xe7,0x59, -0x84,0x64,0x7e,0x2e,0xe5,0x40,0xfc,0xcb,0x4c,0x10,0x10,0x78, -0xfc,0x13,0xba,0x57,0x51,0x71,0x89,0x3b,0x38,0x25,0x78,0xec, -0x0e,0xb0,0x05,0xdb,0x3b,0x31,0xf1,0xc5,0x1b,0xce,0x9c,0xb9, -0xe1,0x8b,0x8f,0x27,0x37,0x6e,0x4c,0xee,0xb9,0xfd,0x76,0x71, -0xa2,0x5f,0xac,0x79,0xf8,0x81,0x07,0x1e,0x1e,0x9d,0x3d,0x78, -0xf8,0xe0,0xec,0x4f,0xfb,0x53,0x7f,0xc2,0x7e,0xb1,0xf6,0x4b, -0x26,0xf1,0x26,0xfc,0x7b,0x2b,0x9e,0x01,0xc1,0x5c,0xab,0xa4, -0x73,0xcd,0x28,0xa8,0xe0,0x17,0x38,0xbc,0x5f,0x03,0x7f,0x88, -0xc3,0xfb,0x34,0xf0,0xf3,0x1c,0xde,0xab,0x81,0x9f,0xe1,0xf0, -0x4e,0x0d,0xfc,0x26,0x0e,0xef,0x50,0xe0,0x64,0x2f,0xc9,0x41, -0x7a,0x53,0xc9,0x76,0x91,0xa6,0xac,0xed,0xec,0xc9,0x5a,0x2f, -0xd0,0x1b,0xf5,0xf3,0x87,0xf8,0xf3,0xed,0x46,0x25,0x67,0x56, -0x93,0xe4,0x93,0xc0,0xd7,0xea,0x1d,0x20,0xe4,0x69,0xed,0x2f, -0x74,0x54,0x86,0x99,0xba,0xe9,0xa8,0x4c,0x91,0x62,0x78,0x2a, -0xe3,0x2e,0x61,0x86,0x6c,0xf4,0x8c,0x69,0x53,0x62,0x70,0x05, -0x78,0x42,0xbd,0x00,0x73,0xf8,0x72,0xa3,0x1a,0x0e,0xec,0x4d, -0xc9,0x5e,0xa1,0xfc,0xcb,0x42,0x74,0x82,0x5b,0xc5,0x07,0x53, -0x9f,0x16,0xd7,0xa6,0x3e,0x2f,0x6e,0xd5,0x11,0x9d,0xd4,0x07, -0xa5,0x8b,0xa3,0xbf,0x1e,0xbd,0x3c,0xaa,0xa3,0x37,0x6a,0x7c, -0xdc,0xc8,0xfb,0xdd,0xa6,0xc2,0x53,0x2b,0xee,0xc1,0x95,0x6c, -0xef,0x6e,0x4a,0xe3,0x9b,0xe3,0x2f,0x82,0xe3,0xc6,0xb0,0x8e, -0xf7,0xc1,0xc7,0x2f,0x47,0xf5,0xbb,0xb5,0x2a,0xfc,0x96,0xe2, -0xde,0x5d,0xc9,0xf6,0x6e,0x15,0xde,0x71,0xef,0xae,0x64,0x7b, -0x77,0x13,0xae,0x9b,0x76,0xb2,0xce,0x02,0x98,0x1f,0xba,0x06, -0x6c,0x0b,0xd3,0xb9,0x15,0xcb,0xe7,0x16,0x8d,0xc6,0xa4,0x15, -0xa6,0x9d,0x5c,0x98,0xa6,0xd1,0x1c,0x0a,0x34,0xf1,0x0d,0xd3, -0x3e,0xeb,0xd4,0xdb,0xb9,0x47,0x0c,0x2a,0x76,0x62,0x2a,0x27, -0x67,0x6a,0x31,0x89,0x96,0x65,0x62,0x5d,0xff,0x54,0xb7,0x57, -0xbc,0xd3,0x56,0xd5,0xdf,0xe0,0xa8,0xab,0x0e,0x5b,0x47,0x5c, -0xd7,0x6c,0x1b,0xdc,0xd1,0x5d,0x76,0xfa,0x86,0x9a,0xae,0xca, -0xe2,0xd4,0x73,0xc5,0x95,0x5d,0xf9,0x4d,0x53,0xef,0xde,0xe4, -0x0c,0xb6,0x6c,0xea,0x0d,0xe6,0xf9,0xda,0xea,0x83,0x9b,0xb7, -0x35,0x6f,0xbf,0x39,0x79,0xff,0x97,0x46,0x83,0xdd,0x1b,0x5b, -0xf3,0xf2,0x5a,0x37,0x76,0x07,0xa1,0xcf,0xd0,0xb7,0x3c,0x5c, -0x2b,0x55,0x74,0xad,0x98,0x28,0xee,0x28,0xfc,0x3c,0x87,0xf7, -0x72,0xb8,0x51,0xca,0x93,0x9e,0x65,0xf0,0xf4,0xb9,0x29,0x7d, -0xfe,0x26,0xfe,0x7c,0x87,0x89,0xee,0x39,0x84,0x37,0x94,0xd6, -0x62,0x5c,0x0f,0x97,0xf0,0x48,0x3a,0x2a,0x06,0xf5,0x02,0x73, -0xbd,0x89,0x08,0x39,0xba,0x93,0xe4,0x74,0x38,0x39,0x10,0xd0, -0x72,0xd8,0x49,0xb2,0x8b,0xc6,0x87,0x74,0x09,0x7d,0xe4,0x83, -0xd1,0x11,0x7e,0x4c,0x0a,0xe0,0x9b,0x2b,0xb2,0xdc,0xe9,0xca, -0x93,0xe9,0x8c,0x01,0x79,0x4c,0x85,0xa1,0xce,0x1c,0x60,0x60, -0x06,0xac,0x22,0xba,0xe0,0xa1,0x3d,0x51,0x50,0xb1,0x5d,0x85, -0xdc,0xc0,0xe2,0xa3,0xa9,0xdf,0x26,0x47,0x46,0x92,0x62,0x11, -0x7c,0xa7,0x7e,0x2b,0xf6,0xa4,0xbe,0x2a,0x99,0xfa,0x67,0xc9, -0x7f,0xfd,0xf3,0x7f,0x16,0xdf,0x7d,0xc3,0x0d,0xe9,0xf3,0x67, -0x3a,0x47,0xa3,0x1a,0x9e,0x35,0x49,0xe0,0x06,0xdc,0x13,0xaa, -0x35,0xbc,0x2f,0x85,0x5f,0xe0,0xf0,0x7e,0x0d,0xfc,0x3c,0x87, -0x6b,0xdf,0x73,0x86,0xc3,0x3b,0x35,0xf0,0x9b,0x38,0xbc,0x83, -0xdb,0xb6,0x27,0x89,0x64,0x70,0x91,0xc1,0xd3,0x3c,0x71,0x66, -0x7b,0x7a,0xb2,0xd6,0x9b,0xe6,0x89,0x29,0xfc,0x10,0x7f,0x9e, -0xf2,0xc4,0xd4,0x16,0xbe,0x14,0xf7,0xa8,0x83,0xfa,0x3d,0x4a, -0x47,0x59,0x96,0xdc,0xa3,0x02,0x45,0x7a,0x43,0x29,0xb3,0x2a, -0x67,0x4d,0x7a,0x4f,0xa2,0x66,0x53,0x98,0xa8,0x22,0xdb,0x9e, -0x94,0x7c,0xf0,0x41,0xf1,0xe1,0x07,0x1f,0xd4,0xef,0x47,0xef, -0x1f,0x94,0x5a,0x06,0x07,0xe7,0xbf,0x35,0x98,0x65,0x43,0xe2, -0x7d,0xbc,0x91,0xf7,0xb1,0x8d,0xf1,0xfd,0x1b,0x31,0x7e,0x31, -0x9d,0xd3,0x6b,0x69,0xb8,0xd9,0x52,0xce,0xcb,0x39,0x33,0xbd, -0x39,0x96,0x88,0x65,0xa4,0x4e,0x02,0xcb,0xd2,0xc2,0xdb,0x38, -0xf3,0x01,0x2e,0xb0,0xad,0xb6,0x20,0x44,0x00,0x4b,0x05,0x3a, -0x26,0x1a,0x27,0x8f,0x16,0x25,0x0d,0x36,0x5f,0x5d,0xb0,0x77, -0x28,0xf5,0x70,0x32,0x29,0x5d,0x4c,0x19,0x63,0xab,0x5b,0x7c, -0x93,0xab,0x1d,0x25,0x95,0xbe,0xe2,0x91,0x31,0xf1,0x95,0xd4, -0x7e,0x26,0x6f,0x91,0xb5,0x38,0x8c,0xbc,0xd9,0x67,0xe1,0x54, -0x44,0xee,0x5e,0xb8,0x0a,0xc7,0xae,0x5b,0xf8,0x0c,0xde,0x1f, -0x23,0xed,0xff,0x09,0x8e,0x75,0x0d,0x9d,0x7b,0xcc,0x1e,0x9f, -0xc2,0xcf,0x73,0x78,0x6f,0x81,0xf2,0x3e,0x23,0xc4,0x7d,0x24, -0xf0,0x5a,0xb6,0xe6,0x57,0x20,0xfc,0x1a,0x82,0x0c,0x17,0xbe, -0xa7,0x8e,0xbe,0x7f,0x81,0xea,0xe0,0xde,0x06,0x70,0xb4,0xa1, -0xa8,0xc3,0xf7,0xd8,0xf7,0xd0,0xf7,0xbc,0x8d,0xbc,0xc7,0x85, -0xef,0xa9,0x63,0xef,0x59,0xa9,0x7a,0x3e,0x0d,0x37,0x0b,0x67, -0x53,0xe7,0xc9,0x5c,0x8a,0x52,0x38,0xd9,0x2d,0xff,0x01,0x98, -0x96,0xac,0x71,0xc8,0xb3,0x45,0x87,0xd1,0x46,0xfc,0xa1,0xde, -0xe7,0xf4,0xaf,0xbc,0x18,0xb5,0xae,0xc8,0xd3,0x58,0x57,0xa4, -0x63,0x5c,0x50,0x3b,0x8b,0x5c,0xd4,0xd6,0xe5,0xf0,0x92,0x85, -0xff,0x42,0x64,0x91,0x73,0x20,0x1c,0x9e,0x0d,0x2c,0x2d,0xe2, -0x68,0x67,0x11,0x94,0x5c,0xa9,0xe9,0x89,0x89,0xe4,0xf7,0xbe, -0x27,0xae,0x16,0x0b,0x3d,0xc3,0x1e,0x71,0x6f,0xea,0xf3,0xc3, -0xc3,0xc3,0xff,0xa5,0xde,0x03,0x00,0x4f,0x0d,0x9a,0xb5,0x3e, -0xc1,0xf9,0x11,0x0a,0xef,0x53,0xe0,0x68,0x9b,0x72,0x91,0xc1, -0xb5,0xb6,0x29,0x94,0x3e,0x36,0xa8,0xe6,0xa3,0x48,0x9e,0x6f, -0x87,0xe7,0xc9,0x62,0xb8,0x8e,0x0a,0x18,0x25,0xfa,0xfc,0xd6, -0x3a,0x1f,0xef,0x25,0xc2,0xbe,0xb1,0x30,0x09,0xd6,0x4c,0x15, -0x67,0x11,0x0d,0x93,0x40,0xed,0x2f,0x2d,0xdc,0xb8,0x4e,0x64, -0xd1,0x39,0x31,0x5e,0x12,0xb3,0x8e,0x6a,0x0d,0xb6,0x86,0xe4, -0x90,0x6d,0xe2,0xda,0xff,0x36,0xaf,0x49,0x74,0xfd,0x49,0xf4, -0xd7,0xfe,0xb7,0x99,0x48,0x9a,0xff,0x22,0x8d,0xbe,0x71,0xb9, -0x65,0xc5,0xd0,0x4d,0xd2,0xba,0xf9,0x7f,0xe6,0x74,0x23,0x80, -0xb8,0x89,0x69,0x70,0x43,0xe1,0x17,0x38,0xbc,0x5f,0x03,0x3f, -0xcf,0xe1,0xbd,0x1a,0xf8,0x19,0x0e,0xef,0xe4,0xf0,0x24,0xd0, -0x6e,0x06,0x4f,0xef,0x77,0x99,0xf5,0xf6,0x64,0x7d,0x7f,0x7a, -0xbf,0xa3,0xf0,0x47,0xf9,0xf3,0x5d,0x9a,0xe7,0x0f,0x71,0x78, -0x3b,0xb7,0x3d,0x78,0x41,0xaa,0x96,0x7e,0xce,0x62,0xda,0xdf, -0x0b,0x5c,0x03,0xf7,0xc5,0x57,0x02,0xc0,0xce,0x2d,0x1a,0x1b, -0x4a,0x3d,0x24,0x34,0x51,0x95,0x05,0x35,0xc9,0x02,0xaa,0xf1, -0x68,0xc4,0xcc,0x20,0x77,0x22,0xac,0xc2,0xbb,0x85,0xe4,0x0d, -0xf4,0x04,0xb4,0x98,0x97,0x7c,0xe4,0x5e,0x01,0x96,0xca,0x41, -0x1e,0xc5,0x52,0x23,0x2f,0x35,0xb1,0xbb,0xc0,0x75,0x50,0xef, -0x05,0x76,0x84,0xce,0xcd,0x0f,0x20,0xce,0xac,0x9d,0x3a,0x17, -0x39,0xec,0xd4,0x63,0x23,0x52,0x25,0x97,0x8b,0x62,0xdd,0xb6, -0x44,0xac,0xbb,0xdb,0x53,0xea,0xed,0x9e,0xea,0xdf,0xda,0xae, -0x14,0xff,0xd3,0x94,0xf3,0x47,0x7b,0x6b,0xa8,0xa6,0x33,0x62, -0xbb,0x07,0xbe,0xf0,0xcf,0xfc,0xc6,0x89,0xf0,0xde,0x86,0x1b, -0xd6,0x6f,0x3c,0x3b,0xd5,0xc4,0x8a,0x9b,0xde,0x3d,0xd5,0x24, -0x36,0x56,0x74,0x95,0x8a,0x1f,0x77,0xba,0x83,0xdd,0x9b,0x5a, -0x52,0xe7,0x81,0x2b,0x39,0x49,0x20,0xa9,0x1d,0x4e,0x37,0xb5, -0x45,0x20,0xf8,0xc3,0x3d,0xec,0xe9,0x2c,0xf3,0xe2,0x46,0x8e, -0x6f,0x65,0x4f,0x06,0x78,0xa5,0x5c,0x83,0x61,0xd7,0x4e,0xc2, -0x6e,0xd1,0xcc,0x42,0x0f,0xe4,0x6b,0x6c,0x11,0x74,0x7c,0x9a, -0x2e,0x90,0xb8,0xda,0x2a,0xc7,0xc9,0x91,0x6b,0x20,0x57,0x27, -0x57,0x79,0x3a,0x31,0x98,0x36,0x15,0x6f,0xbc,0x74,0xdf,0x5e, -0xc4,0x14,0x21,0x2e,0xeb,0x32,0xcb,0x49,0x95,0xa5,0x11,0x6f, -0x43,0x14,0x30,0x07,0x5c,0x1c,0x5c,0xeb,0xc2,0xbb,0x56,0xfe, -0x09,0x10,0x66,0x8b,0x74,0xd6,0xb0,0xab,0xf4,0xac,0xa7,0xb2, -0xee,0x83,0x07,0x00,0x55,0xc0,0xc9,0x01,0xf6,0xf2,0x8f,0xcf, -0xdb,0x11,0x4f,0x70,0x2e,0x04,0x68,0x3b,0x89,0x5c,0x1c,0xc7, -0x4b,0x25,0xe2,0xeb,0x99,0x0c,0x7c,0x25,0x01,0x2f,0x0c,0xae, -0x9d,0xff,0xea,0xe7,0xd5,0xf3,0xbf,0x12,0xe6,0x3f,0x7b,0x7e, -0x48,0xf3,0xfc,0x19,0xfe,0x7c,0x42,0xf5,0x7c,0x23,0xf2,0xd8, -0x31,0x8d,0x5e,0x05,0xd7,0x1d,0x5f,0x47,0x7a,0xbd,0x0a,0xd8, -0x27,0x04,0x54,0xbf,0x5b,0xab,0x5e,0x67,0xc8,0x9b,0xc7,0x34, -0x7a,0x15,0x0a,0x8f,0x70,0xb8,0xa2,0x57,0xa9,0x64,0x7a,0x95, -0x22,0x22,0x67,0xee,0xa3,0xe1,0xec,0xa8,0x4c,0xeb,0xd1,0xe8, -0xe0,0x96,0x8d,0x38,0x6e,0x47,0x3e,0x3c,0x77,0x0e,0xa8,0x8d, -0x9d,0x71,0xeb,0x05,0x31,0xd0,0xbe,0x29,0x9c,0x3a,0xd5,0xb9, -0x81,0x95,0x5d,0x90,0x7a,0x34,0xa5,0x95,0x26,0x55,0x36,0x25, -0x9f,0xa3,0x18,0xbc,0xe1,0xba,0xeb,0x6e,0x10,0x0b,0x51,0x73, -0x62,0xdf,0xb8,0x69,0xd3,0x46,0x90,0x63,0x51,0x77,0x32,0x2c, -0x35,0x5e,0x73,0xf8,0xf0,0xe1,0x6b,0xd2,0x32,0x0d,0xe2,0x9f, -0x4c,0x54,0x1c,0xaf,0x1c,0x35,0xfc,0x21,0x0e,0xef,0x53,0xe0, -0x84,0x26,0x54,0x22,0x4d,0x68,0x66,0x34,0xa1,0x85,0xca,0x38, -0x04,0x2f,0xe5,0xf8,0x9e,0x38,0x7d,0x0f,0x3b,0x4f,0xa6,0xf0, -0x87,0x38,0xbc,0x6f,0x41,0xc9,0xc9,0xd9,0x24,0x95,0x13,0x59, -0x66,0x04,0xbc,0x67,0x9c,0xc2,0x4a,0x61,0x95,0x8a,0x56,0x54, -0x02,0x52,0x2a,0x55,0x58,0x52,0x53,0x82,0x3e,0xaa,0x57,0xe9, -0x13,0xfc,0xe4,0x13,0x83,0xc0,0x65,0xba,0x33,0xff,0xc2,0x22, -0x25,0x6c,0x56,0x25,0x0f,0x93,0xed,0x23,0xd7,0x42,0x16,0xe2, -0xba,0x52,0x65,0xb7,0xdb,0x35,0xb7,0xe4,0xf9,0xbe,0x72,0x70, -0x9a,0x99,0xf4,0x34,0xf3,0x70,0xbf,0x55,0xa3,0x71,0x99,0x3c, -0x14,0xee,0xa9,0xde,0xd6,0xb7,0x66,0xa2,0x73,0xd5,0xda,0xf8, -0x70,0x4d,0xf1,0x99,0x43,0xc9,0x53,0xa1,0x2e,0xdf,0xe4,0xc0, -0xca,0x35,0x1d,0x63,0xab,0x21,0x1c,0xf6,0xec,0xc1,0xbc,0x6c, -0x87,0xfa,0x2b,0x8c,0x2b,0xe2,0xcd,0xf1,0xe6,0x91,0xbe,0x78, -0x47,0x7e,0x41,0x6e,0x38,0xde,0x13,0xdc,0xb9,0xab,0x3d,0x1e, -0x8f,0x34,0x76,0x77,0xc7,0xba,0x0a,0x08,0xa4,0xb9,0xb7,0x62, -0xfb,0x61,0x63,0x73,0xfa,0x30,0x9f,0xe3,0xf8,0x3c,0xc7,0x71, -0x2f,0xc7,0xbd,0x11,0x70,0xcc,0xe0,0x30,0x56,0xd5,0x88,0xfb, -0x3e,0xf2,0xfc,0x10,0xc6,0xc2,0x3b,0x0e,0x9e,0x7c,0x34,0x5b, -0xe1,0xa2,0xf2,0x3b,0xb3,0xff,0xb5,0x66,0x4d,0x43,0x9c,0xc7, -0x8f,0x17,0xe1,0x98,0xd3,0xc6,0xfd,0x94,0x80,0x32,0x7b,0x8a, -0xa8,0x43,0x1f,0x9d,0xb6,0x74,0x7f,0x22,0x52,0x3b,0x4b,0x64, -0x9e,0xd6,0x6c,0xa5,0x8f,0xea,0x43,0x7d,0xe2,0x0f,0x3f,0xbb, -0xe7,0xc4,0x89,0xe9,0x8e,0xa9,0x40,0xa7,0x6b,0x20,0xd2,0xd6, -0xdf,0x9f,0xb8,0xfa,0x81,0xd4,0x1c,0x61,0x32,0x27,0xbf,0x67, -0x90,0x0e,0xec,0xde,0x75,0xa4,0xba,0xae,0xc9,0x1f,0xec,0x4f, -0x84,0x13,0xfd,0xe3,0x2f,0xce,0xdf,0x49,0xe7,0x52,0x29,0x8b, -0x77,0x58,0x28,0x4c,0x5f,0xc4,0x34,0x70,0xb6,0xa5,0xe2,0xdc, -0xab,0x15,0x97,0x32,0xb9,0x23,0xf1,0xc8,0x30,0x02,0x8b,0x82, -0x62,0xe2,0x1e,0x77,0x54,0xf9,0x90,0x3f,0xa7,0xe4,0x70,0x01, -0xc6,0x58,0x09,0x4c,0x47,0x97,0x9d,0xb8,0x29,0xf9,0xc0,0x03, -0xbf,0x94,0x22,0xbf,0x7c,0x40,0x9c,0x48,0x3d,0x2c,0x4e,0xf4, -0xff,0x74,0x74,0xf4,0xa7,0xfd,0x14,0xff,0xd8,0x2e,0x9c,0xfb, -0x2d,0x1a,0xbe,0xaa,0x94,0x8c,0x4b,0x1f,0xae,0xa1,0x16,0x0d, -0x5f,0x95,0x15,0x4e,0x9a,0x0a,0x6b,0xd1,0x8f,0xfa,0x32,0x27, -0x58,0x3f,0xe7,0x41,0x66,0x3b,0xee,0xaf,0x60,0xbd,0x92,0x38, -0xba,0xd0,0x53,0x51,0x63,0xed,0x2b,0x30,0x4e,0x14,0x54,0xb2, -0x05,0x4c,0x67,0x46,0x17,0x0d,0x32,0x50,0x0e,0x1e,0x03,0x28, -0x6d,0x4c,0xb1,0x35,0x79,0x61,0x7a,0xef,0xde,0xe9,0x0b,0x17, -0x20,0xd4,0xcd,0x05,0xe9,0xe2,0x3f,0x1c,0x9a,0x9a,0x3a,0x74, -0xcf,0x4b,0x2d,0x8d,0xe4,0x1f,0xe3,0x17,0x2f,0x33,0xfe,0xb2, -0x55,0xcb,0x5f,0x22,0xfc,0x02,0x87,0xf7,0x6b,0xe0,0xe7,0x39, -0xbc,0x57,0x03,0x3f,0xc3,0xe1,0x9d,0x1c,0xae,0xe8,0xb5,0x5a, -0x35,0x34,0x24,0xb3,0xde,0x9e,0xac,0xef,0x4f,0xd3,0x10,0x0a, -0x7f,0x94,0x3f,0xdf,0xa5,0x79,0xfe,0x10,0x87,0xb7,0x73,0xbe, -0xb6,0x09,0xf9,0xda,0x26,0xd0,0x56,0x9a,0x32,0xe2,0x5f,0x33, -0x4b,0x8f,0x25,0x34,0x06,0xb5,0x00,0xa8,0x55,0x2d,0x20,0x76, -0x4c,0x8c,0x6c,0x6c,0x2d,0x57,0x93,0xdb,0xc9,0xb5,0x96,0x05, -0x49,0x02,0xb3,0x05,0x54,0x72,0xd9,0x98,0x03,0x18,0x8b,0x16, -0x6b,0xce,0x22,0x56,0x32,0x9f,0x3f,0xdb,0x27,0x4d,0x9e,0x44, -0x53,0x53,0xc2,0x63,0x4a,0x9a,0x9c,0xb5,0x61,0x5b,0x55,0x85, -0xab,0xd4,0x96,0x16,0x32,0xa5,0x7c,0xb7,0x75,0x78,0x63,0x43, -0x21,0x11,0xd7,0xb6,0xc7,0x27,0x3a,0xca,0xcb,0x3b,0x26,0xe2, -0xe2,0x7d,0xa9,0x13,0x1d,0x5b,0x46,0x3a,0xca,0xf2,0xcb,0x7c, -0x81,0xa2,0x62,0x1b,0x88,0x9d,0xd5,0x91,0x50,0xbb,0xc7,0x20, -0x4b,0xd1,0xb5,0xb3,0xe3,0xe2,0x9d,0x6a,0xbc,0xcc,0x71,0xbc, -0xac,0xd0,0xe0,0xeb,0x46,0x0e,0x4f,0xcb,0x01,0x97,0xa5,0x2d, -0x84,0x07,0x0a,0x08,0x53,0x7a,0xff,0x2c,0x26,0x6a,0x2f,0x81, -0x2f,0x96,0x83,0x15,0xa5,0x51,0x13,0x5d,0x80,0x30,0xcf,0x2f, -0x81,0x25,0x4c,0x3e,0xcb,0x40,0x5b,0x12,0xd3,0x22,0xa7,0x35, -0x8e,0xb3,0xd5,0xa6,0xf0,0x3d,0x69,0x6c,0x6c,0x5f,0x59,0x1a, -0xb1,0x15,0xc6,0x36,0xaf,0x5c,0xb9,0x39,0x96,0xd1,0xfb,0xe3, -0x7b,0x3d,0x95,0xa9,0x4f,0xaf,0x9d,0x5d,0x5b,0x55,0x45,0xbe, -0x48,0x6f,0x59,0x9f,0xb6,0x20,0x3f,0xf2,0xab,0x8c,0x39,0x9c, -0x84,0x3e,0x31,0xb8,0x76,0xee,0xa9,0x9f,0x57,0xcf,0xbd,0x2d, -0xc8,0xbf,0xfc,0x4a,0x37,0xf7,0xb6,0x20,0xff,0xf2,0x2b,0x0d, -0xff,0x12,0x02,0xdd,0x22,0xce,0xe1,0x84,0xa6,0x5e,0x0a,0x3f, -0xcf,0xe1,0xbd,0x1a,0xf8,0x19,0x0e,0xef,0x5c,0xe4,0x3d,0x4a, -0x7b,0x6c,0x04,0xbe,0x12,0xe1,0x1d,0x9a,0xf7,0x53,0xf8,0x79, -0x0e,0x57,0xde,0x6f,0x23,0xfd,0x5d,0x89,0x6b,0xad,0x43,0xd3, -0x5f,0xfa,0xfc,0x19,0xfe,0x7c,0xe7,0x22,0xef,0xef,0xc9,0xfa, -0xfe,0x34,0x1e,0x28,0xfc,0x46,0xfe,0xbc,0x72,0x3e,0xd7,0x48, -0xe0,0x51,0x7c,0x4f,0xa7,0xa6,0x9d,0x14,0xfe,0x10,0x87,0xf7, -0x69,0xe0,0x37,0x71,0x78,0x07,0x9b,0x83,0x60,0x13,0xff,0x7b, -0xc9,0x40,0xe6,0xd1,0x8d,0x20,0xa6,0x50,0x6e,0x2c,0x63,0xa7, -0xf4,0x2c,0x6e,0x83,0xa4,0x3b,0xee,0xd2,0xb9,0x7a,0xa5,0xe3, -0x1d,0xa5,0x4d,0xe3,0x45,0x4c,0xf7,0x73,0x1d,0x9a,0xc6,0x83, -0x32,0xd0,0x88,0x67,0x6b,0x8d,0x4d,0x2e,0x58,0xbd,0xca,0x32, -0x66,0x16,0x08,0x90,0xc0,0x78,0xd7,0xc4,0xb5,0xee,0xfa,0x90, -0x63,0x62,0xc2,0x90,0xeb,0x0a,0xd6,0x97,0xaf,0xf6,0x1a,0xcc, -0xcf,0x49,0xdf,0x4a,0x7d,0xf5,0x36,0x6a,0x64,0x30,0xff,0x46, -0xb2,0x24,0xe4,0x29,0x6c,0x49,0x7e,0x94,0xca,0x16,0x0d,0x2c, -0xb6,0x9e,0x91,0x50,0xad,0x51,0xd8,0x89,0xf2,0x78,0x60,0x0c, -0x75,0xce,0x9e,0xc5,0x24,0x6d,0x16,0xd3,0x90,0x2a,0xaf,0x8c, -0x8c,0xba,0x35,0x36,0x25,0xec,0x71,0xbb,0x23,0x28,0x86,0xe4, -0x60,0xc3,0xd7,0x8e,0x3d,0x9b,0x32,0x88,0x52,0xee,0x27,0xc5, -0x89,0xd5,0xd2,0xb1,0xf9,0x7f,0x58,0x2d,0xed,0x9a,0xff,0x05, -0xc5,0xe7,0x5a,0x52,0x77,0x1e,0xe6,0x1c,0x1d,0xbb,0x88,0x09, -0x42,0x73,0x97,0xe2,0x19,0x58,0xf8,0x2e,0x6b,0x76,0xad,0x29, -0x3a,0x13,0x50,0x6e,0x80,0x50,0x53,0xf2,0x59,0x2b,0x7e,0x31, -0x99,0x7a,0x25,0x09,0x47,0xc0,0xd2,0x09,0xa0,0xea,0xc0,0xa3, -0xb4,0x4b,0x76,0xd4,0xb9,0x6c,0x03,0xe2,0x75,0x65,0x3a,0x17, -0x4c,0x39,0x6b,0x81,0x93,0xea,0x5a,0x7a,0x98,0x24,0x33,0xe3, -0x30,0x03,0x8b,0xf9,0x96,0xcb,0x93,0x09,0x50,0xed,0x89,0x31, -0xd8,0x2a,0xb6,0x42,0xd8,0xc3,0xa0,0xdd,0x21,0x07,0x25,0x7b, -0xaa,0x4e,0xb4,0xa4,0x7e,0x27,0xbe,0x90,0x7a,0xf7,0x5f,0xfe, -0x22,0xbe,0xe3,0xb9,0xd5,0xe2,0xac,0x41,0x9c,0x5d,0x3d,0x9a, -0xba,0xaf,0x2d,0x75,0x1f,0xc5,0x43,0x1b,0xfa,0xca,0x3d,0x4b, -0xf6,0xf3,0xab,0x41,0xb9,0x48,0xb3,0x42,0x2d,0x1a,0x29,0x58, -0xb7,0xf5,0xa7,0x5d,0x4d,0xe9,0xd6,0x2f,0xf0,0xc0,0xca,0x76, -0xae,0x00,0x62,0x01,0xf9,0xe2,0xad,0x8a,0x1c,0x4c,0x63,0x8b, -0x02,0x8f,0xdf,0xda,0x2b,0xa7,0x2d,0x89,0xcb,0x25,0x97,0x23, -0xd4,0x76,0xcb,0x40,0x6f,0x59,0xc7,0xd6,0xde,0xde,0xad,0x1d, -0x65,0xbd,0x03,0xb7,0xcc,0xb9,0xab,0xbd,0x45,0x83,0x13,0xeb, -0x86,0x8a,0xbc,0xd5,0xee,0xb9,0xa1,0xbc,0xc8,0xa7,0x8e,0x8f, -0x9d,0x9e,0xac,0xab,0x9b,0x3c,0x3d,0x76,0xfc,0x53,0x91,0xbc, -0xa1,0xfd,0xb9,0x75,0xbd,0x63,0x91,0x43,0x3b,0x0e,0x1c,0xd8, -0x71,0x28,0x32,0xd6,0x5b,0x97,0xbb,0x1f,0x13,0xfc,0x92,0x3d, -0x83,0xac,0x95,0x22,0xd8,0xaf,0xf3,0xc9,0xd2,0x2c,0x56,0xf5, -0x49,0x67,0xda,0xa8,0xf3,0x60,0x57,0x07,0x5e,0x4b,0x5b,0x32, -0x62,0x18,0x78,0x96,0xa8,0xc0,0xa4,0x58,0x2a,0x52,0xdd,0x28, -0x9a,0xdf,0x10,0x36,0xea,0xf8,0x94,0x14,0x9c,0x9a,0xea,0xec, -0x4a,0x7c,0x1d,0x02,0xab,0x0d,0xa5,0x6e,0x1a,0x5a,0xd1,0x22, -0x8e,0xa5,0xfa,0xd3,0xb1,0xb0,0x8a,0x24,0xf0,0xcd,0x4a,0xc7, -0xf6,0x81,0xbf,0x8d,0xb8,0x16,0x86,0xd1,0x17,0xe0,0x15,0xc2, -0xbc,0xd6,0x0b,0x33,0xa0,0xd5,0x50,0x3c,0x2a,0x02,0x99,0x31, -0x13,0xb3,0x3b,0xfe,0xa6,0xd5,0x46,0x02,0x73,0xba,0xa7,0xe6, -0x49,0x16,0x96,0xdd,0x89,0xc6,0x1e,0x03,0xaa,0x5c,0x85,0xec, -0xb1,0x12,0xff,0xb5,0x57,0xea,0x13,0x1d,0x84,0x0c,0x9b,0xe3, -0x69,0x5f,0xed,0x8c,0xec,0xd6,0xf5,0x2d,0x1b,0x7b,0x2a,0xfc, -0x03,0x33,0x23,0xff,0xf4,0xe9,0xda,0x9e,0x6a,0xb7,0xc9,0xe8, -0x58,0xd3,0xd1,0x34,0xd9,0x19,0xac,0xe8,0xdd,0xd8,0x32,0xb0, -0x61,0xfd,0xc0,0x9a,0xd1,0xf5,0xf9,0x91,0xb5,0xd7,0x4e,0x9e, -0x3c,0xb7,0xbf,0xd9,0x98,0xb7,0xce,0x22,0x7b,0x3a,0xa6,0x86, -0x9b,0x13,0xe1,0xc1,0xdd,0x7d,0x5d,0x3b,0x47,0x22,0xc3,0xeb, -0xd7,0xf6,0x25,0x93,0xa3,0x1d,0x33,0x6b,0x21,0x13,0xe7,0x21, -0xd2,0x59,0x0b,0x8e,0x8d,0x47,0x08,0x0b,0x47,0x40,0x97,0x5d, -0xc9,0xc2,0xb3,0x96,0x15,0x51,0x4f,0xe4,0xb2,0xa5,0xbd,0x0d, -0xd3,0xc3,0xa3,0x38,0x2a,0x87,0x99,0xa3,0xf2,0xe3,0x42,0x38, -0x46,0x59,0x74,0x58,0xd2,0x61,0xa6,0x3c,0x16,0x98,0xe3,0x03, -0x2c,0x4f,0xcc,0x3c,0xcf,0xa2,0x21,0x86,0x82,0xe9,0xe3,0xd2, -0x74,0xe9,0x90,0x68,0xee,0x5b,0x35,0xd3,0xdd,0x55,0x12,0x69, -0x0f,0xa7,0x7e,0xff,0xfb,0xea,0xba,0xda,0xf0,0xfd,0x9f,0x08, -0x46,0x22,0xc1,0x4f,0x48,0x86,0x95,0xdd,0xd3,0xf9,0x06,0xe3, -0x40,0xa3,0xbf,0xbd,0xa6,0xb4,0x3f,0x1a,0x72,0x85,0xaa,0xee, -0xff,0x75,0x85,0xdf,0xe9,0x0f,0x7d,0x98,0xae,0xa5,0xb3,0xe4, -0xeb,0x4f,0x12,0xc4,0xee,0xc4,0x10,0x9e,0x2c,0x37,0xe5,0x62, -0xfd,0x50,0xef,0x62,0x02,0xf7,0x40,0x84,0x63,0x40,0x5b,0xe8, -0xac,0x78,0x32,0xf5,0x5f,0x13,0x92,0x61,0x88,0x4c,0x1e,0x49, -0x70,0x2e,0xcc,0x4a,0x09,0x09,0xa2,0x09,0x63,0xe6,0xab,0x62, -0x96,0xf9,0x8a,0x9e,0xb7,0x1b,0xe6,0x16,0xcd,0xa4,0x9b,0x56, -0xb9,0x28,0x0b,0xd3,0x3c,0xa7,0x30,0x1f,0xf4,0x74,0xc6,0xc8, -0xc4,0x1d,0x55,0x26,0xe7,0x38,0xe4,0xec,0x03,0x3f,0x5d,0x9c, -0xdd,0x95,0xb6,0x10,0xac,0x55,0x67,0x67,0xa0,0x52,0x1c,0xdf, -0x38,0x9a,0x3a,0x31,0x2a,0x5e,0xf7,0x50,0x79,0xf9,0x50,0xfc, -0xd6,0xab,0x3f,0x99,0xea,0x9f,0xbb,0xed,0xb6,0x39,0xf1,0xba, -0x3d,0xdb,0x6f,0x6e,0x53,0xc5,0x40,0x80,0x39,0x9d,0x8b,0xf8, -0xa0,0x76,0x5a,0x90,0x88,0xf7,0x61,0xd8,0x5b,0xb4,0x7c,0x13, -0xdb,0x5b,0x74,0x24,0x6a,0x89,0x70,0x61,0xba,0xa3,0x2a,0xdd, -0x31,0x47,0xda,0x02,0x08,0xfc,0x8a,0xb8,0x76,0x39,0x36,0x20, -0x0b,0x0f,0x13,0x80,0x78,0x42,0x71,0x05,0x34,0xf3,0x04,0x60, -0x10,0xaa,0xdd,0x05,0xfe,0x73,0x3c,0x73,0x6b,0x39,0xb3,0xde, -0x48,0xb4,0x25,0x5a,0x89,0xb8,0xcc,0xd2,0x87,0x24,0xe2,0x66, -0x48,0xbf,0x42,0x64,0xe5,0x50,0x55,0xc8,0x11,0x12,0xcd,0x5b, -0x06,0x26,0x3a,0x8a,0xa2,0x11,0x6b,0x62,0x4d,0xdf,0x96,0xb1, -0x2d,0xfd,0xab,0xdb,0x73,0x5c,0x25,0xb5,0xd6,0xf6,0xf5,0xfd, -0x5b,0xc6,0x7e,0xf9,0xcb,0x6f,0x26,0x4c,0x86,0xdc,0xe6,0x27, -0x7f,0x48,0xfe,0x7b,0xd2,0xe3,0x35,0x1a,0x4c,0x89,0x6f,0xfe, -0xf2,0x97,0x80,0x93,0x1e,0xb2,0xee,0x2f,0x4b,0x45,0x42,0x8d, -0xb0,0x1d,0xec,0x4c,0xe8,0x89,0xa7,0xa0,0x95,0x44,0x3d,0x8b, -0xe4,0xc9,0x82,0x86,0x17,0x41,0x14,0x49,0xda,0xf0,0x98,0x12, -0x11,0xba,0x9c,0xc7,0xb1,0x0f,0x93,0xfb,0x85,0x19,0x26,0xfe, -0x4c,0x1c,0x8d,0x37,0x2b,0x49,0x36,0xab,0x94,0x64,0x9c,0x4c, -0x72,0x15,0x5d,0x13,0x07,0x82,0x5d,0xee,0xb5,0x1d,0xab,0xfa, -0xe3,0x8d,0xb7,0xbe,0x6b,0x57,0x62,0xa8,0x7b,0xd4,0xd5,0x1e, -0xda,0xb3,0x7e,0xdf,0x4c,0x73,0x7d,0x4b,0xdb,0xa9,0xfc,0x96, -0xc6,0xc6,0x48,0x75,0x43,0xd8,0x5a,0x55,0x3d,0x38,0x9a,0x1f, -0xac,0x8e,0x86,0x23,0xf1,0xf6,0xb1,0x81,0xc6,0x76,0x8b,0x21, -0xa7,0xaf,0x69,0xf5,0x66,0x1c,0xeb,0x1d,0x6c,0xee,0x17,0x08, -0xdb,0xf5,0xfe,0xac,0x8b,0xcd,0xfd,0x25,0x5c,0xd1,0xd5,0xae, -0x4b,0x32,0x8b,0x98,0x6a,0xa1,0xbe,0xc2,0xe6,0x38,0x04,0xb2, -0xb4,0x25,0x42,0x62,0x68,0xc7,0x44,0x8e,0x41,0x94,0x57,0x93, -0xef,0xd4,0xfc,0x6a,0xc9,0x90,0xfa,0xd3,0x4d,0xe2,0xad,0xf3, -0x6f,0x88,0xe6,0x9b,0x52,0xa7,0xa9,0xbd,0x06,0x8d,0xdb,0x20, -0xd1,0xf8,0x0f,0x85,0xf3,0x74,0x9d,0xc2,0x1e,0x54,0x4a,0xda, -0xea,0x06,0x5e,0xca,0x01,0x1e,0x53,0x4b,0xb5,0x55,0xe7,0x8c, -0xab,0x76,0x8a,0xcf,0x30,0x33,0x83,0x3d,0xd7,0xcd,0xf6,0x22, -0x27,0x9d,0x75,0x4e,0x9c,0x75,0x12,0x8b,0x75,0x24,0x31,0x4d, -0x8d,0x8d,0xd9,0xc5,0x53,0xbf,0x49,0x36,0xb7,0xca,0x45,0xbf, -0x88,0xd4,0x24,0x26,0x92,0x19,0x76,0x68,0xe2,0xe8,0xad,0x1b, -0xce,0xd8,0x3c,0xc5,0x25,0xde,0xc2,0x64,0x67,0xa7,0x27,0x62, -0xdf,0x7d,0x94,0x6c,0x09,0x2f,0xbe,0xf8,0x8c,0xc7,0x61,0x34, -0xc8,0x0e,0xcf,0xfb,0x86,0xbc,0x81,0xfb,0x5f,0xa6,0xf9,0x11, -0xc4,0xff,0x26,0xfd,0x29,0x11,0x92,0xe9,0x08,0xa4,0x8b,0x66, -0x3c,0x54,0x87,0x11,0xd5,0x29,0x44,0x4a,0x34,0x71,0x45,0xf3, -0x69,0xb6,0xe2,0x38,0x50,0x69,0x3c,0xaf,0x85,0x49,0x03,0xe1, -0xea,0x3d,0xfd,0x85,0xae,0xc2,0x1c,0x71,0xf3,0xc4,0xbf,0x56, -0x57,0xd8,0x1b,0x02,0xfe,0x21,0x7b,0xcb,0xaa,0x1d,0x7d,0xef, -0x87,0x20,0xa9,0xeb,0x6f,0xbb,0xb7,0xc2,0x5e,0x88,0x78,0x5e, -0x45,0xf0,0x5c,0x84,0x7b,0xfd,0x11,0x60,0x63,0xb4,0x74,0x78, -0x79,0x3c,0xeb,0x02,0xa0,0xaa,0xb9,0xb0,0x22,0xcc,0xdc,0x4d, -0xdd,0xd4,0x0d,0xcc,0x98,0x42,0x60,0x3a,0x0d,0x3b,0x26,0x32, -0xc3,0x29,0x62,0x11,0x43,0x2e,0x5b,0x68,0xd5,0xd1,0x6b,0x4d, -0xd7,0xee,0x1d,0x97,0x4d,0x1f,0xf8,0x80,0x49,0x1e,0x87,0x79, -0x22,0x9a,0x49,0x5b,0x07,0xa7,0x20,0xc5,0xc4,0x54,0xea,0x49, -0xd5,0xfc,0xb5,0x08,0x47,0x41,0x23,0xa1,0xcd,0x0f,0xbc,0x7c, -0x5b,0xd5,0xc6,0xea,0x19,0x6d,0xa5,0x2e,0xe9,0x74,0x4e,0xe4, -0xd2,0x39,0x91,0xcb,0xe7,0x04,0x1d,0x7f,0x8c,0x8d,0x40,0x86, -0x7c,0xc7,0xc4,0x9f,0x27,0xc8,0xff,0x30,0xc8,0xf3,0x6f,0xbc, -0xfc,0x72,0xda,0x47,0x10,0xf6,0x54,0x07,0xe2,0x74,0x9a,0x7c, -0xfd,0x41,0x32,0x2c,0xc9,0xb7,0x7a,0xde,0x0c,0xdf,0x9a,0xa3, -0xf0,0xad,0xe4,0xdf,0xb4,0x78,0xf7,0xc4,0xef,0x27,0xc0,0xcf, -0x1e,0x82,0xdd,0x52,0x9b,0x27,0xb4,0xef,0x87,0xfa,0x9d,0xaa, -0xd8,0x62,0xf0,0xb7,0x99,0xda,0x99,0x91,0x31,0x2e,0xc6,0xf6, -0xf4,0xd0,0x44,0x19,0xb9,0x4b,0xf1,0x5a,0xea,0xf6,0xa8,0x72, -0xee,0x80,0x1e,0x8a,0x32,0x53,0x21,0xd1,0xf0,0x25,0xf1,0x5b, -0x5f,0xa2,0xfc,0x53,0xbf,0xca,0xe6,0xd6,0x24,0xd0,0xd8,0x7f, -0x75,0xe4,0xef,0x3a,0xc2,0xaf,0xda,0x84,0x2e,0x61,0x1c,0x62, -0x72,0x17,0x13,0x56,0x7e,0x1d,0xa7,0x86,0xb0,0x55,0xc0,0x75, -0xf5,0xdc,0xa2,0xba,0x57,0x46,0x34,0x3c,0x99,0x4c,0x6d,0x1a, -0xd0,0x05,0x80,0x2e,0x95,0x6c,0xa4,0xe6,0x72,0x11,0xd0,0x0a, -0x80,0xd6,0xf4,0x61,0x06,0xa5,0xae,0x01,0xee,0xf7,0x63,0x27, -0x10,0x27,0xf3,0x4d,0x0d,0x20,0x1b,0x40,0xd9,0xe3,0x95,0x2c, -0x8b,0x6e,0xad,0xb0,0x12,0x61,0xad,0x04,0xd6,0x8d,0xb0,0x76, -0x72,0x6d,0xd5,0x7a,0xd7,0xb1,0x73,0x0d,0x57,0x48,0x1d,0x05, -0xc9,0x49,0xa9,0x91,0x3a,0xb0,0x4e,0x04,0xe8,0x51,0x22,0x23, -0xee,0xd7,0x57,0x82,0xe1,0x70,0xb0,0xd8,0x5b,0x9c,0x97,0x57, -0xec,0xdd,0x2c,0xdb,0xea,0x7d,0xe5,0xb1,0x40,0x51,0x51,0x20, -0x56,0xee,0xab,0xb7,0xc9,0x63,0x3a,0xc0,0x9d,0xec,0xd1,0x62, -0xf2,0xb3,0x44,0x24,0x92,0x8a,0x44,0xac,0xe1,0x9e,0xd8,0xd6, -0x58,0x4f,0x98,0xd4,0x50,0x5e,0xda,0xbb,0x7f,0xdd,0xba,0xfd, -0xbd,0xa5,0xe5,0xa1,0x3f,0xfc,0x41,0xfd,0xd7,0xfc,0x02,0x7f, -0x0a,0x7f,0x43,0xc6,0x8b,0xc8,0xc9,0x64,0xbe,0xc0,0x78,0x95, -0x33,0xbb,0x85,0x59,0xe4,0x01,0x30,0xef,0xb6,0x31,0x63,0x5d, -0xe9,0xe6,0x87,0x2e,0x92,0x44,0xfa,0xf0,0x59,0x9d,0x60,0x06, -0xf3,0xab,0x5f,0xc2,0xc3,0xe2,0x38,0xfd,0x47,0x08,0xf2,0x6b, -0xa9,0xdd,0x13,0xaf,0x4d,0x6c,0x1c,0x25,0xcb,0xbb,0x1f,0xa6, -0xef,0x1c,0xd5,0xdd,0x90,0xaf,0x5f,0xe1,0xde,0x38,0xab,0xdf, -0x1b,0x75,0x6e,0x5d,0x3a,0x03,0xfe,0xf4,0x66,0x09,0xbf,0xce, -0xc1,0x13,0x60,0x20,0x4e,0x64,0x19,0xaf,0x23,0x00,0x91,0x66, -0x20,0x29,0x20,0x93,0xb3,0x00,0xb3,0xa6,0xd2,0xa0,0x02,0x22, -0xf9,0xcb,0x40,0xd3,0xbc,0xd0,0x50,0xbe,0xe0,0x9f,0x83,0x09, -0x14,0x7a,0x80,0x74,0x89,0x1f,0x31,0x7a,0x57,0x26,0x92,0x9b, -0x27,0xda,0x7a,0xba,0x57,0x4f,0x4c,0xbc,0xea,0xf7,0xaf,0x9b, -0x78,0xec,0xa1,0xc6,0x06,0x7f,0xe0,0x3b,0xf3,0x6f,0x70,0x99, -0x0c,0x70,0xb6,0x8d,0xa6,0x2a,0x7d,0x73,0x7b,0x91,0xae,0x57, -0xea,0x04,0xf4,0x12,0x4b,0x55,0x47,0x7d,0x65,0xd8,0xbf,0x60, -0xdb,0xd8,0x59,0xf2,0x2f,0x55,0x42,0x70,0xd7,0x2b,0x7e,0x05, -0x3e,0xa4,0x21,0x54,0x3e,0x24,0xe3,0xb7,0x45,0x82,0xf8,0xf5, -0x87,0x60,0xfc,0xb4,0xba,0xe8,0xe5,0xc7,0x4f,0xc7,0xe5,0x65, -0x1f,0x50,0x25,0x63,0x10,0x0c,0x6c,0xa1,0x66,0x60,0xe9,0xe0, -0x4a,0xc5,0xa9,0x30,0x36,0xb1,0x6d,0x24,0xdd,0x44,0x3a,0xc4, -0xa4,0x7e,0xb2,0xbb,0x4a,0xf5,0xa4,0x8d,0xa0,0x4f,0x3e,0x0c, -0x24,0x58,0xd1,0x27,0x3b,0x35,0xfc,0xb1,0xae,0xb5,0xea,0x23, -0x49,0x65,0x37,0x02,0x86,0x20,0x9f,0xe9,0xd0,0x1d,0x60,0xf3, -0x24,0x10,0x40,0x11,0xf9,0x28,0xa3,0x4b,0x4f,0x27,0x9d,0xdc, -0x57,0xcd,0xa1,0x37,0xbe,0xfc,0xf8,0xdd,0x3f,0x7f,0xdf,0xda, -0xa9,0xad,0xeb,0x7e,0xf6,0x1f,0xf5,0xf1,0x78,0xfd,0x59,0xb2, -0x97,0x3d,0xb1,0x65,0x7c,0xed,0xa6,0xa1,0x70,0xb4,0x26,0x1a, -0x7a,0x9a,0x9e,0x63,0x2b,0x63,0x9c,0x47,0x66,0x97,0x1b,0x2c, -0x97,0xad,0x8c,0x0f,0xa1,0x31,0xfe,0x72,0x59,0xac,0x3f,0xf7, -0xe2,0x72,0x90,0x2e,0xee,0x81,0xee,0x60,0x43,0xcd,0x97,0xd8, -0xc1,0x62,0x8c,0xc5,0xe0,0xc3,0x5e,0xd9,0x49,0xaf,0xec,0xd8, -0x2b,0x89,0x4b,0xea,0x25,0x9c,0x22,0xe9,0xfa,0x04,0xf3,0xb6, -0x6d,0x62,0x33,0x74,0xeb,0x33,0x1f,0x85,0x6e,0xad,0x11,0xd7, -0x4c,0x10,0x52,0xa1,0xee,0x99,0xf8,0x14,0xcc,0x1a,0x49,0x38, -0x46,0xbe,0x72,0x59,0xdf,0x76,0x01,0xe5,0x57,0xe2,0xca,0x58, -0x34,0xf1,0x81,0x75,0x3d,0x4a,0x77,0xe0,0xad,0xb7,0xf7,0xd8, -0xc4,0x39,0x68,0xeb,0x6b,0xff,0x07,0xda,0xfa,0x41,0x6d,0x3b, -0xe9,0xbe,0x84,0x74,0x4c,0x88,0x08,0x9b,0x21,0x7e,0x2c,0x8d, -0x83,0x29,0x2c,0x26,0x8a,0xa4,0x31,0x49,0x33,0x42,0x83,0x80, -0xee,0x67,0x46,0xe0,0x10,0xff,0xcc,0xca,0xe3,0x8d,0x0a,0xcc, -0xb9,0x09,0x9a,0x95,0x35,0x0c,0x1a,0x63,0xcb,0x31,0x68,0xeb, -0x77,0x7e,0x02,0x01,0x42,0x5b,0xfb,0x8b,0x7b,0x5d,0x57,0xaf, -0x4f,0x6c,0xee,0x0e,0x04,0xba,0x37,0x25,0xd6,0xee,0x72,0x75, -0x95,0xac,0x68,0x0b,0x25,0x2a,0x4b,0x7e,0x22,0x46,0x72,0x20, -0x00,0x5a,0x6d,0x75,0xb0,0x65,0xa8,0x6a,0x64,0x4f,0x0f,0x78, -0xd3,0x0f,0x35,0x57,0xd7,0x34,0x42,0xa8,0xd0,0x02,0xc0,0x75, -0x1b,0xe9,0x47,0x8d,0x04,0xd2,0x74,0xa3,0xf0,0x5e,0x08,0x7b, -0xa0,0x64,0x47,0xab,0xc3,0x25,0xb5,0xa8,0x67,0x92,0x2e,0x24, -0x83,0xce,0x5a,0x25,0xcd,0x92,0xa7,0x19,0x0d,0x58,0xe1,0xc8, -0xc1,0x98,0x90,0x83,0xb1,0xf0,0x2e,0x97,0xd1,0x34,0xd9,0xbc, -0xf3,0xa0,0x5c,0x00,0xb2,0xa4,0x84,0xd0,0x50,0x14,0x0b,0x99, -0x87,0xf6,0xe2,0xcd,0x91,0xee,0x1a,0x97,0xb4,0x73,0x6c,0x6c, -0x5a,0x26,0x7d,0x8a,0x44,0x7b,0x6a,0x9c,0xce,0x9a,0x9e,0xa8, -0x33,0xe8,0xb4,0x58,0xc8,0x17,0xbb,0xe6,0x3b,0x12,0x3b,0xc7, -0xc8,0x36,0xfe,0x9f,0xc3,0x5b,0x5b,0x4a,0x5c,0xdd,0x07,0x26, -0x27,0x0f,0x74,0xbb,0x56,0x58,0x43,0x3d,0xb1,0xab,0x63,0x3d, -0x21,0x2b,0x2f,0xd0,0xfd,0x60,0x88,0xed,0xf9,0x4e,0x6a,0xd1, -0x6b,0xe3,0xfe,0x23,0x36,0x4c,0x97,0x90,0x91,0xc9,0xd2,0xb3, -0x38,0x99,0x57,0x1f,0xd3,0x3a,0xf9,0x06,0xe1,0x87,0x8d,0x86, -0xbb,0x8c,0xd8,0x98,0xba,0xc1,0xcf,0x4e,0x0b,0xf3,0x99,0xab, -0x22,0xf0,0xcd,0x89,0x5e,0x31,0xd1,0xca,0x92,0xc7,0x00,0x87, -0x87,0xbc,0xb3,0x12,0xab,0xb7,0x4b,0x1c,0xea,0xac,0xcf,0xf7, -0x96,0xf4,0xad,0xdb,0xba,0xee,0xe5,0x89,0xeb,0x57,0x16,0x57, -0x07,0x12,0xe2,0xa6,0xdb,0x60,0xbe,0xde,0x36,0xb4,0xd1,0xe5, -0x96,0x0d,0xf2,0xea,0x55,0x63,0x1b,0xe7,0xdf,0xf8,0xda,0xcd, -0xc1,0xa0,0xf8,0x54,0x38,0xea,0x8f,0x86,0x55,0xbe,0x13,0x60, -0xaf,0x8d,0xbe,0x10,0x12,0xfa,0x01,0xb9,0xd9,0x79,0xda,0x0e, -0xa0,0x53,0xca,0xfe,0x57,0x90,0xcd,0x07,0x33,0xbb,0x49,0x86, -0x62,0xb8,0xac,0x6c,0x6f,0xd4,0x38,0x43,0xb1,0xaf,0x05,0x9b, -0x4e,0x87,0x72,0xe0,0x19,0x64,0xcb,0x4d,0xa5,0x40,0xb1,0x6d, -0x14,0xdf,0x9b,0xfa,0xc6,0xfd,0x57,0xcf,0xcc,0x5c,0xbd,0x20, -0xa4,0x9a,0x3b,0x3b,0x9b,0x2f,0x48,0x17,0x47,0x9f,0x3f,0x3c, -0x33,0x73,0x78,0xb4,0xb5,0xa3,0xa5,0xa3,0x35,0xf5,0x5b,0xd2, -0xee,0x2d,0xf4,0xdc,0x8f,0xb4,0xbb,0x02,0x69,0xcb,0x4d,0xa8, -0x0b,0xba,0xb8,0xa4,0xbe,0xc4,0xbb,0x84,0xbe,0xc4,0xc2,0xf5, -0x25,0x37,0x89,0x67,0x53,0xdf,0x4e,0x92,0x2a,0xe7,0xef,0x84, -0xa3,0xd0,0x85,0x83,0x52,0xbf,0x74,0x11,0xf5,0x25,0x67,0x61, -0xfc,0x15,0x7d,0x89,0x2d,0x9b,0xbe,0xc4,0x9b,0x55,0x5f,0x42, -0x9d,0x3e,0xd2,0xfa,0x12,0x32,0xeb,0x17,0x68,0x72,0x26,0x23, -0x91,0x15,0xac,0x98,0xb2,0x49,0x82,0x14,0x35,0x77,0x2a,0x29, -0x9b,0xfc,0x2c,0x53,0x93,0xa2,0x57,0x29,0x62,0xba,0x59,0x1a, -0xe3,0x2a,0x43,0xaf,0x22,0xa2,0x28,0x15,0xb7,0x76,0xd7,0x37, -0x88,0x23,0x1b,0xc7,0x53,0xfb,0xc7,0xc5,0x5b,0xce,0xd5,0x56, -0xbc,0x3a,0xda,0xff,0xf5,0x7b,0xbe,0x3d,0x7f,0xe7,0x8f,0xef, -0xbe,0x5b,0x36,0xbf,0xf7,0xde,0xe7,0x12,0x69,0xfb,0x69,0xc4, -0x5b,0x25,0xe2,0x4d,0x22,0x7f,0x6f,0x22,0xfd,0xab,0x12,0xfe, -0x15,0xbe,0xa2,0x98,0x9c,0x37,0x63,0xef,0xd2,0xf9,0x76,0x78, -0x33,0xa7,0xf9,0x12,0x26,0xc0,0x2c,0xd6,0x84,0x35,0x33,0xee, -0x2f,0xd7,0xab,0x58,0xd3,0x7a,0x95,0x3b,0x41,0xaf,0x02,0xfd, -0xff,0x32,0x16,0x68,0xbf,0x41,0x84,0x2a,0x62,0x0a,0x96,0x12, -0x46,0xd7,0x2b,0xe7,0x40,0xd9,0x57,0xc2,0xa2,0xb2,0x88,0x21, -0x39,0x64,0xef,0x95,0x61,0x79,0x54,0xc9,0xd4,0xbe,0x0d,0xb2, -0x02,0xa2,0x18,0x2c,0xbb,0x20,0x33,0x20,0xe1,0x93,0xe4,0xe1, -0xbd,0x9b,0x92,0x39,0x45,0x36,0xbb,0xc5,0x11,0xc8,0x1f,0x9b, -0xdc,0x3a,0x3c,0x39,0xbc,0x6d,0xfd,0xea,0x82,0x72,0x87,0xa5, -0xa4,0xb8,0x30,0x67,0xc3,0xe6,0x99,0xe1,0x49,0xc8,0xce,0x2a, -0xe6,0xba,0x03,0xf6,0x3c,0xc9,0x68,0xac,0xa8,0x15,0xe5,0xd4, -0xb7,0xc4,0x16,0xfc,0xa4,0xea,0x2a,0x8c,0x46,0x29,0xaf,0xc4, -0xef,0x4e,0xfd,0x01,0x9e,0xa2,0xfc,0x0c,0xd8,0xc7,0xe4,0x12, -0xf9,0xa1,0x1e,0xf4,0x14,0x05,0x19,0xfe,0xae,0x4b,0xe4,0xf3, -0x52,0x4e,0x35,0x0b,0x79,0x2e,0x33,0x1a,0x9c,0xd7,0xa2,0xc9, -0xc8,0x15,0x82,0xdd,0x22,0xad,0x7f,0x71,0x2e,0xa7,0x7e,0xc1, -0x3c,0xd3,0x62,0xe9,0xa6,0xd3,0x91,0x9e,0xb1,0x83,0xc3,0x93, -0x23,0x63,0xbb,0xa6,0xce,0x0e,0xae,0xe8,0x1c,0x73,0xf7,0x85, -0x0f,0xac,0x3d,0x7a,0x6c,0x4d,0x87,0xbf,0x2d,0xea,0x0e,0xf6, -0x5e,0x95,0x3f,0xd2,0xda,0x3c,0xb3,0xa2,0xc7,0x11,0x1f,0x18, -0x3d,0xe9,0x68,0xec,0xac,0x09,0x57,0xb7,0xb6,0xef,0x49,0x8e, -0xae,0xcb,0x35,0x1a,0x9c,0xd1,0xae,0xaa,0x86,0xf1,0x44,0x39, -0x8f,0xa5,0x75,0x71,0x49,0x1d,0xcc,0x12,0xf6,0x8a,0x3a,0x61, -0xf1,0xca,0x74,0x30,0x13,0x49,0xab,0x51,0xf4,0xc1,0x77,0xea, -0x67,0x13,0xd2,0xc5,0xd4,0xb9,0x6f,0x48,0x35,0xf3,0x23,0xe2, -0xce,0x6f,0xcc,0xff,0x80,0xdb,0x56,0x5e,0x90,0x22,0x52,0x3d, -0xea,0x60,0x06,0x94,0x33,0x55,0x02,0xaf,0x92,0x80,0xf4,0xde, -0xba,0xa8,0x0e,0xc6,0x9b,0xc9,0xe3,0x7a,0x17,0xf7,0xec,0x53, -0xe7,0xa5,0xcc,0xd0,0xc1,0xdc,0x09,0x3a,0x18,0x3a,0x43,0x9d, -0x2c,0x9b,0x94,0x05,0x95,0x31,0x4e,0xc6,0xe7,0x51,0x65,0x0c, -0xee,0x26,0xaa,0x59,0xa8,0x52,0xc6,0xd8,0x48,0x27,0xdf,0xf9, -0x81,0xab,0x6e,0xb6,0x95,0x17,0x3b,0xcb,0x8b,0xb7,0x0e,0xf4, -0x95,0x37,0xd8,0x0e,0xbf,0x13,0x4c,0x85,0x61,0xa2,0xbd,0x12, -0x2a,0x93,0x8d,0x46,0x7f,0xf5,0x37,0x46,0x43,0x55,0x97,0x95, -0x79,0x66,0x44,0x1e,0x08,0xda,0x92,0x04,0x1b,0x0e,0xba,0x23, -0x0b,0x8b,0x19,0x2c,0xeb,0xd4,0x07,0x6a,0x52,0x64,0x2f,0x52, -0xb6,0x23,0x0b,0x3f,0xe8,0x81,0xfd,0x03,0x8e,0xcf,0x21,0xc9, -0x95,0xa2,0x9e,0x11,0xbf,0xf0,0x4c,0x81,0x3b,0xec,0x72,0xb4, -0x84,0xfd,0x83,0xae,0xa0,0x23,0x4f,0x3c,0x98,0x94,0x4e,0x9c, -0x39,0xfc,0x91,0x83,0x43,0x2e,0x87,0x7d,0xd4,0xd9,0xb7,0xfb, -0xae,0xfd,0x4f,0xcf,0x8f,0x90,0x31,0x21,0xf4,0x51,0x2a,0xc1, -0xfd,0xa4,0x3e,0x6d,0xff,0x8a,0x7f,0x47,0xd3,0x36,0x61,0xd2, -0xb3,0xe4,0xef,0x18,0xf6,0x65,0x03,0xb9,0x6f,0xfc,0xdf,0x3a, -0x2b,0xdb,0x20,0x7e,0x3e,0x99,0xfa,0x7d,0xfa,0xac,0x8c,0xed, -0x77,0x94,0x4e,0x34,0xa6,0xfd,0xb1,0xb0,0x3d,0xa1,0xb4,0x1d, -0x0a,0xde,0x6f,0xc1,0xf6,0xd5,0xb1,0x1c,0xa7,0x36,0x61,0x0b, -0xb4,0x4f,0x1b,0x43,0x8e,0xd5,0xee,0xcd,0xe4,0x7c,0xbc,0x8b, -0x04,0x95,0xb3,0xb0,0x40,0x71,0x94,0x9a,0x4b,0x31,0x25,0x80, -0x68,0x82,0xec,0x52,0xae,0x78,0x02,0x66,0x87,0x5c,0x2b,0xde, -0xba,0x3f,0xf4,0xab,0xad,0xb7,0x56,0x4b,0x91,0x77,0x6c,0x7a, -0xc9,0xe2,0xf6,0x57,0x7b,0xbb,0x47,0xb7,0x4a,0xae,0xd4,0xe3, -0xc7,0x8f,0x89,0xa3,0xf3,0x9f,0x2e,0x8f,0x38,0xc0,0xfd,0xc7, -0xb3,0xf0,0x33,0xa9,0x57,0xfa,0x3e,0x69,0x6f,0x50,0xa8,0x16, -0x6e,0x81,0xbc,0x51,0x35,0xdc,0x24,0x82,0x3a,0x72,0x05,0x95, -0x08,0x9d,0x79,0x31,0x40,0x25,0xe6,0x3e,0xcb,0xa3,0xb3,0xf5, -0x5e,0xa5,0xd0,0xa8,0x14,0x04,0x2c,0xd0,0x13,0x40,0xd0,0x7d, -0xe5,0x15,0xd1,0xb4,0xe2,0x02,0xcb,0x7e,0x85,0xde,0x61,0x97, -0x28,0x6b,0xec,0xe1,0xf6,0x75,0x41,0x2c,0x55,0xcc,0x51,0xd3, -0xbd,0x6a,0x50,0x6e,0xd3,0x00,0x2f,0x90,0xf5,0x8b,0xee,0x40, -0x66,0x47,0xc8,0x6e,0x15,0x31,0x83,0x1d,0x92,0xa9,0x96,0x48, -0x95,0x28,0xf5,0x6e,0xee,0xf0,0x78,0x3a,0x36,0xf7,0x26,0x7b, -0xb6,0x40,0x61,0x4b,0x4f,0x52,0x5a,0x37,0x34,0xb4,0x6e,0x02, -0xbe,0x7a,0x0c,0xb1,0xf1,0x99,0xce,0xce,0x99,0xf1,0x98,0x61, -0xeb,0x56,0x55,0x59,0x5a,0x9f,0xb3,0x63,0xd5,0xe4,0xaa,0x1d, -0x39,0xec,0x42,0xf9,0x15,0x0f,0x1f,0xaf,0x76,0x66,0x4f,0x71, -0x10,0x73,0x97,0x5a,0x80,0x3b,0x5b,0x44,0x27,0xa0,0x33,0xe6, -0xf7,0x2e,0x22,0x42,0x5a,0x34,0x3a,0x01,0x5c,0xee,0x16,0x8a, -0xae,0x05,0xa5,0xe0,0xa7,0x05,0x20,0xdc,0x16,0x42,0xb8,0x2d, -0x84,0x70,0xeb,0x74,0x07,0x3b,0x92,0x7f,0x49,0xae,0x1e,0x27, -0xb3,0xf0,0x4e,0x98,0x85,0x3f,0xc6,0x76,0x76,0x03,0x73,0x85, -0x7b,0x14,0xea,0xea,0xb5,0x7b,0x94,0xee,0x6c,0x94,0xc9,0x63, -0xde,0xac,0xe2,0x97,0x8d,0x3c,0xea,0x66,0x1e,0xa5,0xc8,0x40, -0xdb,0x70,0x27,0x32,0xb0,0xc5,0x4c,0x35,0x3c,0xa8,0x25,0xa0, -0xf1,0xad,0xe1,0x5c,0x5d,0xbc,0xdf,0x58,0xb6,0xb2,0xa6,0x77, -0x53,0x8b,0x2b,0x69,0x0d,0x26,0xa2,0xf5,0x03,0x81,0x64,0x52, -0xb4,0x5b,0xf2,0xcb,0x7b,0xb7,0xf7,0x3d,0xfb,0x6c,0xe3,0x60, -0xb5,0x3d,0x3f,0x5f,0xdc,0x3e,0x3f,0x82,0x6d,0x45,0xbb,0x01, -0xc4,0xe9,0xe2,0x3a,0x83,0x25,0xf6,0x53,0x9d,0x9f,0x90,0x56, -0x67,0x60,0xc9,0xa2,0x33,0x68,0x9c,0x7c,0x17,0xf9,0x97,0xca, -0x51,0x70,0x46,0x3e,0x23,0x74,0xef,0x6b,0x24,0xe3,0xbb,0x01, -0xed,0xd7,0xde,0x0f,0x74,0x28,0xab,0xce,0x60,0x89,0xf1,0x5d, -0x22,0x3f,0xad,0x7a,0xc0,0xb5,0x3a,0x03,0x1c,0xf8,0x42,0x65, -0xe0,0x0b,0x95,0x81,0x2f,0x54,0x06,0xbe,0x90,0x0c,0x7c,0x61, -0xc6,0xc0,0x33,0xdd,0x42,0x4e,0x2a,0x3a,0x79,0x82,0xfc,0x5b, -0xbd,0x5a,0xd5,0x15,0x9c,0x02,0xcc,0xcf,0x6a,0x28,0xcd,0x5b, -0x2f,0xa3,0x5b,0xf0,0x2e,0xa1,0x5b,0xd0,0xf3,0xd6,0x52,0x26, -0x6f,0x9d,0xd5,0x97,0xd3,0x76,0xe1,0xdc,0xe5,0xbf,0x07,0xce, -0xfa,0x3f,0xbe,0x0f,0x8c,0xf5,0xbb,0xa4,0x13,0xa3,0xa9,0x97, -0xd5,0x9c,0x35,0xea,0x13,0x94,0xf1,0xa7,0xfa,0x84,0x77,0x66, -0xea,0x13,0x4c,0x8b,0xe9,0x13,0xae,0x68,0xfe,0xea,0xe4,0x73, -0x10,0xbd,0xe9,0x46,0x59,0xc2,0x28,0xad,0x14,0xa3,0xb6,0xbe, -0x2c,0x1f,0x78,0x66,0x1f,0x80,0x5b,0x68,0x9c,0x1c,0x81,0x6e, -0x7c,0xe8,0x43,0xd0,0x8d,0x11,0x31,0x39,0x39,0x49,0x08,0xa8, -0xa6,0x27,0x38,0x85,0x24,0x61,0x8a,0xf4,0xa5,0x9c,0xf5,0x65, -0x7d,0xa6,0xfe,0x20,0x77,0xee,0x0a,0x2c,0x3b,0xdf,0x74,0xfb, -0xa6,0x92,0x9f,0x43,0xe1,0x65,0x1e,0xda,0xf6,0xd9,0xcc,0x76, -0x91,0xd1,0xeb,0xc2,0xb3,0xcd,0x67,0x89,0x78,0xbb,0x01,0x84, -0x7f,0xad,0xbe,0x80,0x19,0xc0,0x65,0xe7,0x1b,0x2d,0xd8,0x12, -0x1b,0xb9,0x06,0xb9,0x4b,0x39,0x95,0x0d,0x82,0xdc,0x42,0x11, -0xc5,0x65,0xea,0x9a,0x44,0xa3,0xfa,0x50,0xfd,0xaf,0x92,0xf6, -0xab,0xc4,0x24,0x3a,0x9a,0x56,0xc6,0xd1,0xe1,0xb9,0xa2,0x21, -0xb8,0x71,0xf2,0x17,0xbf,0x98,0xdc,0x18,0x6c,0xa8,0x00,0x3f, -0xe9,0x8a,0xf8,0xca,0xa6,0x1b,0xcf,0x9c,0xc9,0xf7,0xd4,0xb5, -0xf9,0xd0,0xb7,0xf9,0xcc,0x81,0xd2,0xd1,0x22,0xc5,0x1f,0x3a, -0x51,0xe7,0xb9,0xf8,0xd0,0x43,0x17,0xe9,0x5c,0x6e,0x24,0x7d, -0x00,0xdd,0x39,0xe8,0x0a,0xde,0x95,0xa9,0x2b,0x10,0xe6,0x84, -0x65,0x08,0xa4,0x77,0xd9,0xc0,0xd1,0x4c,0x57,0x90,0xcb,0x32, -0x4c,0x42,0x88,0x23,0x0b,0xa7,0x43,0x65,0x58,0xb2,0xb1,0xbc, -0xac,0x8a,0x8a,0xc0,0x86,0x71,0x69,0x97,0x54,0x11,0x9c,0x89, -0xf5,0x57,0x97,0x48,0x6b,0x27,0x27,0xd7,0x4a,0x25,0xd5,0x03, -0x0d,0x0d,0x2b,0x6a,0x4a,0x4a,0x6a,0x56,0x34,0x38,0x83,0x0e, -0x8b,0xc5,0x01,0x2a,0x02,0xbc,0xe6,0x7b,0x47,0x6f,0xd8,0x93, -0xfa,0x2a,0xf0,0x64,0x3b,0xaf,0x5b,0xe5,0xf5,0x4e,0xdc,0x7e, -0xfc,0xc4,0x6d,0x13,0xde,0x51,0x6b,0xed,0xba,0x81,0x07,0x07, -0xd6,0xd5,0x5a,0x79,0x01,0x71,0x01,0xf1,0x8f,0x24,0x96,0xa7, -0x72,0x79,0x1d,0x81,0xf7,0xca,0x75,0x04,0x94,0x83,0xc8,0xd4, -0x11,0x58,0x50,0x47,0x60,0xc3,0x48,0xa6,0x8a,0x8e,0xc0,0x92, -0x45,0x47,0x60,0xcb,0xd4,0x11,0x54,0xf5,0x4f,0x16,0x06,0xdc, -0x53,0x5b,0x67,0xae,0xfe,0x5d,0xf2,0xcc,0xd1,0x92,0x5a,0x5f, -0x9f,0x78,0xf6,0x5e,0x98,0xa4,0xf7,0x8e,0x7e,0x2e,0x50,0x66, -0x34,0x1a,0x77,0x6f,0xd8,0x76,0x88,0xb0,0xdb,0x75,0xff,0xa7, -0xba,0x5c,0x3a,0xd1,0xda,0x11,0xec,0x68,0x5d,0x26,0xff,0x9e, -0x36,0x8f,0x5f,0xe1,0x6f,0x97,0xcb,0x25,0xa6,0xcd,0x49,0x56, -0x78,0x59,0x95,0xe3,0x07,0xcf,0x81,0x2e,0xe1,0xdf,0x68,0xfb, -0x00,0xb1,0x4b,0xa4,0x1c,0x1a,0xbb,0xa4,0x44,0x6d,0x13,0x71, -0x17,0x61,0x08,0x07,0xde,0xec,0x79,0x15,0x04,0xa1,0xbe,0xa4, -0x3d,0xa6,0x02,0x6f,0x51,0xb0,0x8e,0xa8,0x1e,0x45,0xf3,0x88, -0xdb,0xe6,0x52,0xfd,0x8c,0xff,0xb3,0xe0,0xd9,0xf3,0x4d,0x7a, -0x7f,0x36,0x9d,0x7a,0x5c,0x2d,0xd5,0xa4,0x23,0xb5,0x49,0x10, -0x95,0x9b,0xed,0x14,0x84,0x60,0xfc,0x86,0x00,0x16,0x80,0xfa, -0x03,0xf5,0x38,0x46,0x0a,0x7f,0xa7,0xfc,0x11,0x23,0x85,0x3e, -0xfc,0x43,0x39,0xbe,0x92,0x8a,0x54,0x1c,0x08,0xf0,0x8a,0xb0, -0x80,0x51,0x4d,0xe2,0x08,0x39,0x42,0x1f,0x3e,0x72,0x04,0x8c, -0x39,0x9e,0x7e,0x7a,0xe2,0xc7,0xbd,0xbf,0x18,0xba,0xaf,0xf7, -0xc7,0x14,0x2f,0x47,0xd1,0xb7,0x0c,0x6c,0x23,0xde,0x43,0x53, -0x14,0x57,0x2c,0xa5,0x7f,0x54,0xb7,0x59,0x7d,0x88,0xa5,0x0a, -0x62,0x6d,0xe5,0x96,0xeb,0x4e,0x72,0x2d,0x50,0xc4,0x1f,0x68, -0xbd,0x93,0xb4,0xde,0xa9,0xb4,0xde,0x49,0x5a,0xef,0xc4,0xd6, -0xe7,0xb0,0xa3,0x2a,0x27,0x2e,0x57,0xb2,0x20,0x19,0xef,0x87, -0x73,0x8f,0xf0,0xe6,0x18,0xe6,0x9f,0x06,0x70,0xc4,0x30,0x74, -0xe2,0x60,0xb2,0xb0,0x18,0x8f,0x2c,0xc4,0x91,0xdf,0xd3,0x13, -0x0c,0x67,0x34,0x51,0xd1,0x70,0x53,0x71,0x7f,0xfd,0xf4,0x50, -0xab,0x3f,0x70,0xb7,0x64,0x18,0xfa,0xa9,0xdf,0xbf,0x71,0xd7, -0xb5,0x4d,0xc3,0x75,0x0e,0xe1,0x0a,0xf2,0x93,0x2c,0x92,0xff, -0x44,0x95,0x5f,0xa5,0x50,0x52,0xfc,0x5f,0x55,0xfa,0x5a,0x5b, -0xc6,0xfe,0xab,0x3b,0x65,0x50,0x2b,0x33,0xf3,0x54,0x36,0x2e, -0x8a,0x65,0x94,0x8b,0x5c,0xf3,0x98,0x5f,0x33,0xb5,0x22,0x4a, -0xdb,0x43,0xc5,0xd5,0x89,0x9f,0x60,0x08,0xd3,0xc9,0x9f,0xc4, -0xde,0xf6,0xcd,0xdd,0x7e,0x50,0xd2,0xaa,0x72,0x3c,0xfd,0xe4, -0x27,0x3c,0xcb,0xd3,0x74,0x3e,0x28,0x69,0x21,0x26,0x25,0xcf, -0xe7,0x94,0x33,0x58,0xc0,0x32,0x3a,0xb5,0x0c,0x69,0x62,0x17, -0x49,0x96,0x2c,0xb1,0x8b,0x04,0x0e,0x2f,0x64,0x72,0x32,0xd8, -0xfe,0x6c,0x24,0xf3,0x24,0x2c,0x7c,0x05,0x98,0x06,0x6a,0x2b, -0x95,0x11,0x7b,0x4e,0x77,0x5c,0xa5,0x53,0x5c,0x2f,0x61,0xed, -0xa6,0x51,0xab,0x65,0xfa,0x7b,0x9a,0x21,0x71,0x11,0x0b,0x62, -0x80,0x6c,0xab,0x59,0x10,0x4f,0x50,0x65,0x80,0x99,0x25,0xd6, -0x02,0x75,0x83,0x19,0x4f,0xf6,0xc1,0x47,0x17,0xfc,0x52,0x64, -0xb6,0xf3,0x89,0x2c,0xa8,0x21,0x4d,0x13,0x10,0xbe,0x04,0x51, -0xeb,0xaa,0x30,0x3d,0xed,0xe2,0xb6,0x35,0xc0,0x8f,0x15,0x36, -0xf4,0x6f,0x19,0xcb,0x6e,0x5d,0x53,0xd9,0x36,0xf2,0xcb,0x5f, -0x66,0xb3,0xae,0x39,0x3b,0x07,0x67,0x8f,0x68,0x5b,0x03,0xb8, -0xa5,0xf9,0x35,0x72,0xfe,0x87,0xe2,0xb0,0x67,0x61,0x16,0x6d, -0x6e,0xea,0xc1,0x0e,0xc1,0x96,0xa1,0xf3,0xb9,0x02,0x9b,0x1b, -0x1b,0xb7,0xb9,0xb1,0xf1,0x84,0x4c,0x6a,0x9b,0x1b,0x9b,0x72, -0x12,0x80,0x49,0x80,0xe9,0xb5,0x8e,0x74,0xd7,0xc5,0xfd,0x6e, -0x96,0xb5,0xc1,0x21,0x12,0xd8,0xeb,0x03,0x5b,0x7c,0x8b,0x5b, -0xe1,0xec,0xdc,0x32,0x9a,0x67,0x6c,0xae,0x5d,0xc2,0x10,0x67, -0x28,0x99,0x73,0x63,0x5a,0xb7,0x02,0x31,0xd5,0x2d,0xc2,0x6a, -0x50,0xd7,0x69,0x65,0x01,0x5d,0x6c,0x4b,0x35,0xa7,0xbf,0xb8, -0x5b,0xb8,0xc6,0x19,0x3c,0x38,0xf1,0xe8,0xa3,0xe2,0xe3,0x8f, -0x42,0xe8,0x73,0x69,0x6a,0x68,0x68,0xfe,0x93,0x43,0x4a,0x7c, -0x14,0x4a,0x43,0x98,0xbd,0x4d,0xce,0xbc,0x90,0x86,0x23,0x6d, -0xa0,0x70,0x8b,0x1a,0x0e,0x31,0xe9,0x18,0xdc,0xc4,0xe0,0x68, -0x9f,0x83,0xcf,0xb3,0x18,0xfb,0xcc,0x6e,0x67,0x37,0x59,0x0b, -0x2e,0xb2,0x16,0x4a,0xc1,0x6e,0x07,0x4c,0xa1,0xcb,0x96,0x3a, -0xcb,0xd5,0xa9,0xf7,0x75,0x8a,0x09,0x35,0xd7,0x42,0x28,0x0c, -0xdb,0xff,0x8d,0x74,0xa6,0x1b,0xf1,0x84,0x23,0x8f,0x4d,0x80, -0x3c,0xb4,0x84,0xa6,0x5b,0x08,0x3d,0xfb,0x0b,0x36,0x88,0x68, -0xa6,0x63,0xd3,0xd9,0xef,0x88,0xdf,0x71,0x55,0xd8,0x76,0x1f, -0x9d,0x50,0xdb,0xef,0xf4,0x8f,0xca,0x5e,0xdf,0xfd,0x2f,0x6b, -0xcc,0x77,0xe6,0xa0,0x4f,0x9b,0xd9,0xd9,0x65,0x00,0xe2,0x72, -0xfa,0xb3,0xfb,0xf5,0x2f,0xd1,0x27,0x9d,0xea,0x96,0xc5,0x80, -0xe6,0x9a,0x5a,0x83,0xde,0x02,0x8e,0xba,0x03,0xa9,0xd3,0x4e, -0x53,0xab,0x37,0xda,0xcf,0x72,0x96,0x05,0x4d,0x09,0x4d,0x0a, -0xf7,0x02,0x97,0x80,0xaa,0xd1,0xbe,0xb6,0x2e,0x66,0xaf,0xf4, -0xff,0xb4,0x4d,0x4c,0xb4,0xf5,0x46,0x6f,0xde,0xf0,0x36,0xec, -0xb3,0x75,0x5d,0x67,0xa7,0xa7,0xaa,0x64,0x5b,0xb4,0xf7,0x65, -0xe8,0xf6,0x35,0xd7,0xbc,0xf8,0xd5,0x32,0x6e,0xb7,0x14,0xfe, -0xcc,0x69,0x90,0x88,0x48,0xdf,0x13,0x68,0xd3,0x7e,0x1b,0x6c, -0xc9,0x5a,0x9b,0xf6,0xe5,0xcf,0x96,0xd3,0x7e,0x15,0xba,0xc8, -0x15,0xea,0xf3,0x5c,0x37,0xbc,0x85,0x65,0x3c,0x47,0x2c,0xb8, -0x11,0x0b,0x06,0x16,0x8c,0xd5,0xc0,0xe4,0x39,0x3b,0x4b,0xc8, -0xae,0x9c,0xea,0x66,0xed,0xe3,0xc7,0xef,0xfe,0xf9,0xce,0x77, -0x6d,0x38,0x5d,0x58,0x5e,0x5c,0xe2,0xb7,0xae,0x26,0x1d,0x8c, -0x3a,0x93,0x3b,0xc1,0x58,0xe5,0xc5,0x17,0xbf,0xe2,0x71,0x91, -0xde,0xb9,0x3d,0x77,0x0e,0x95,0xd7,0x9c,0x7b,0x19,0x79,0x4c, -0xd0,0xd3,0x8f,0x91,0xfe,0x81,0xb7,0x30,0x9e,0x43,0x50,0x4d, -0x3d,0xe5,0x31,0xab,0xe6,0x16,0xb5,0xd0,0xd2,0xc5,0x50,0x54, -0x5b,0x9c,0xf9,0x98,0xb9,0x09,0x44,0x6b,0xb4,0xb1,0x29,0x1b, -0xa1,0x47,0xa4,0x11,0x01,0xe8,0x23,0x90,0xf6,0x5c,0x6e,0xc2, -0x65,0xe7,0x5c,0x77,0x95,0xca,0x98,0x2b,0x7d,0x62,0x6a,0x4b, -0x2b,0x12,0x2b,0xf9,0xe1,0xa9,0xd4,0x64,0x75,0x15,0xe6,0xa4, -0x3a,0xd7,0x25,0x93,0xeb,0x6e,0x3a,0x6c,0x29,0xf1,0x16,0xd9, -0x1b,0x3c,0x85,0xe2,0x87,0x63,0x4d,0x4d,0xb1,0x86,0x15,0xf6, -0xd6,0xd1,0x3d,0x43,0xb7,0x3c,0xb1,0x69,0xed,0xda,0xcd,0xe2, -0x57,0x46,0xc7,0x4e,0x6e,0x68,0x2f,0xb2,0x17,0xae,0x88,0x44, -0xab,0xa3,0x91,0x7f,0xd3,0xd8,0x7c,0x14,0x42,0x4c,0x49,0x4b, -0x86,0xfc,0xbf,0xbc,0xfd,0xc2,0x62,0x6e,0xf2,0xcc,0x08,0x43, -0x40,0xf6,0x8e,0x19,0x61,0x3c,0x0c,0x46,0x18,0x27,0x94,0x33, -0x61,0x0b,0x77,0x76,0x43,0x49,0xf1,0x12,0xb7,0xae,0x8a,0x63, -0x36,0x78,0x32,0x80,0x49,0x34,0x11,0x99,0x7a,0x0d,0x6d,0xac, -0xc0,0x80,0xf5,0xe5,0x97,0xa9,0x6c,0xd4,0xc6,0xc6,0xaa,0x58, -0xf0,0x42,0xde,0x68,0x2b,0xcf,0xa7,0x60,0xd5,0xf8,0x39,0x2f, -0xdf,0xfa,0x25,0xf2,0x96,0x83,0xf5,0x66,0x31,0x93,0x47,0x8b, -0x68,0xeb,0x8b,0x54,0xd6,0x81,0x65,0xe4,0x29,0xba,0x5c,0xcb, -0xe8,0x78,0x96,0x91,0xdb,0x65,0x38,0x9e,0x26,0xce,0xe2,0x79, -0x55,0x46,0x63,0x7c,0x10,0xa1,0x67,0xe9,0xd1,0x6b,0x1b,0xbb, -0x6f,0x8c,0x0e,0xdd,0x7d,0x63,0xe2,0x0c,0x8e,0x99,0x64,0xf8, -0xe1,0x0f,0x71,0xc0,0x7e,0xf9,0x4b,0x3e,0x50,0xd4,0xce,0xa4, -0x1f,0xf9,0xe6,0xb7,0x81,0x3a,0x7c,0x19,0x9b,0xcd,0x25,0x19, -0x69,0x5d,0xce,0x3f,0x0b,0x8c,0x14,0xf3,0xc8,0xc3,0x9e,0x5a, -0x54,0xe3,0xa4,0xb0,0xdd,0xac,0x23,0x68,0xf8,0x05,0x7d,0x68, -0x9b,0xf8,0x82,0x68,0xfc,0xc2,0xc4,0x17,0x70,0x74,0x86,0x52, -0xfd,0x30,0x38,0x8b,0xe5,0x3f,0x20,0x7b,0x1b,0xb3,0x8d,0x03, -0x4d,0xba,0x10,0xa2,0x11,0x84,0xc2,0x78,0xbc,0x44,0x0f,0x9d, -0x80,0x70,0xf9,0xe6,0xae,0x80,0x47,0xa4,0x86,0x04,0x60,0xa2, -0x5c,0xc2,0xb8,0xc2,0x40,0x4c,0x71,0xf5,0x04,0xee,0xd1,0x97, -0xc1,0x1f,0xaa,0xac,0xe4,0x21,0x21,0xab,0xbd,0xc2,0xe4,0x08, -0xb6,0x44,0xc4,0x3a,0x25,0x0c,0xbe,0x72,0x1d,0x9c,0x4c,0xfd, -0x00,0x82,0xe1,0x8b,0x35,0x93,0xf9,0x4a,0xb0,0xf2,0xc8,0x4a, -0x7a,0x8a,0x3f,0x3c,0x91,0x34,0x99,0x92,0x13,0xe2,0xfb,0x26, -0x92,0xc9,0x09,0xb5,0x9d,0x9f,0xb4,0x87,0xaf,0x21,0xe0,0x77, -0x43,0xa0,0x6f,0x28,0x64,0xfd,0x5a,0x94,0xd6,0xa9,0xf9,0x5d, -0x88,0x25,0x5d,0xc8,0xf9,0x5d,0x0f,0xb7,0xee,0x56,0xc2,0x23, -0x84,0xc8,0xb2,0x30,0xa6,0x53,0x22,0x64,0xc9,0x71,0x4a,0x98, -0x11,0xd1,0xb3,0x63,0x5f,0x06,0x9f,0xab,0x70,0xb9,0x25,0xeb, -0x7a,0x47,0xf3,0xf2,0xef,0x3a,0xae,0x61,0x73,0x95,0xb4,0xa5, -0x0d,0xfd,0xc0,0x84,0x70,0xbb,0xbd,0xa7,0x79,0x8c,0x4b,0xd3, -0x95,0xc4,0xd6,0xc4,0xb8,0xb5,0x7e,0x4d,0x0e,0x0a,0x0a,0x17, -0x38,0x5c,0xe1,0x8b,0xfb,0x09,0xdc,0x8d,0x36,0x52,0xdb,0x81, -0x17,0xd0,0xf2,0x38,0x3a,0x7f,0x28,0xdd,0x16,0xab,0x8e,0xbc, -0xa1,0xc3,0xa0,0x81,0x61,0x2a,0x17,0x7c,0xd2,0xe5,0x38,0x21, -0x00,0x7d,0x62,0x5c,0x26,0x48,0x31,0x3c,0xb3,0x7e,0x6c,0xc2, -0x30,0x31,0xb6,0xee,0x19,0x32,0x43,0xbf,0xf1,0x93,0x9f,0x7c, -0x63,0xfe,0x8d,0xe7,0x54,0x6d,0xb1,0x09,0xa7,0x80,0x65,0xd6, -0x9e,0x3f,0x2c,0x96,0x7f,0x68,0x09,0x1a,0xce,0xb6,0x7b,0x6c, -0x9c,0xcc,0xad,0x0b,0x65,0xe6,0xe9,0x24,0x33,0xbd,0xa7,0x80, -0x81,0xe0,0xc9,0x58,0x12,0x72,0xc5,0x1b,0x89,0x22,0xa7,0x68, -0x38,0x7b,0x96,0xb7,0xf4,0xec,0xd9,0x89,0xde,0x5e,0xa5,0xb5, -0xbd,0xef,0x65,0xfc,0xb0,0xd4,0x47,0xda,0xeb,0x80,0x33,0x09, -0x99,0x9d,0x8e,0x2f,0x9a,0xab,0x83,0x6d,0xc7,0x4b,0xf0,0x51, -0x6a,0x89,0x01,0x2c,0x41,0x73,0x59,0x42,0xd3,0x5c,0x24,0x4f, -0xa0,0x02,0xce,0x67,0x1b,0x5b,0x0e,0x8b,0x02,0x25,0xf2,0xac, -0xbc,0xc0,0x5e,0x38,0x50,0x34,0x20,0x04,0xb6,0x50,0x0c,0xd9, -0xab,0x58,0x57,0xcc,0x2e,0x60,0xa5,0x7e,0xdf,0xb9,0xb9,0xcb, -0xd0,0x91,0x9c,0x7a,0xea,0x89,0x9d,0x6b,0x7b,0x0d,0xdd,0xe3, -0x53,0x4f,0xde,0xb5,0x71,0xf4,0xed,0x93,0x93,0x6f,0x17,0x4d, -0xa9,0x23,0x9b,0x36,0x1d,0x99,0xff,0xea,0x1c,0x8f,0xf9,0x22, -0xfe,0x0a,0x79,0x4f,0xaf,0x86,0xf7,0x5f,0xcd,0x68,0x91,0x5b, -0x78,0x37,0xac,0xa3,0xac,0x3a,0x7c,0x5d,0x58,0x77,0x4f,0xd6, -0xae,0x15,0xc2,0xf1,0x0b,0x3b,0xfa,0x45,0xfb,0xbf,0x42,0xc5, -0xfe,0xaf,0x10,0x35,0xcd,0xca,0x46,0x4d,0xc3,0xe4,0x14,0x72, -0x19,0xc8,0xc1,0x3b,0xea,0xc6,0x8e,0xb6,0x66,0xb1,0x09,0xc4, -0x43,0x88,0x29,0xa3,0x77,0xa4,0x5d,0x31,0x0b,0xdc,0x38,0xaa, -0xb6,0x0b,0x64,0xb6,0x6e,0x69,0x7b,0x46,0xb7,0x70,0x17,0x30, -0xad,0xcb,0xf4,0x47,0x67,0x23,0xa6,0x3e,0x93,0xb0,0xf2,0x33, -0x09,0x6b,0x0c,0xbb,0x61,0x45,0x1b,0x06,0x0c,0xee,0xb5,0x0e, -0x8d,0x19,0x14,0x01,0x88,0xac,0x0b,0xc6,0x69,0x18,0x58,0x48, -0x2f,0xd3,0x25,0x4a,0x19,0x0b,0xd9,0xd5,0x36,0x47,0x6d,0x1d, -0xc9,0xd6,0xd1,0x5a,0x81,0x3d,0x73,0x11,0xfa,0x04,0xfa,0x04, -0x6a,0xef,0x58,0xdc,0x50,0xda,0xfb,0xe0,0xc4,0xd5,0xbd,0x35, -0x2d,0x13,0x13,0xaf,0x38,0xbc,0xa6,0xa9,0x4d,0xf7,0x3e,0xf6, -0xd0,0x16,0xe3,0x5d,0x77,0x19,0xcb,0xcb,0xbe,0x83,0xb6,0x86, -0x64,0x0c,0xdb,0x94,0xfc,0x79,0x52,0x40,0xb3,0x37,0xd0,0xd8, -0xfe,0xa0,0x6b,0x2a,0xa5,0x36,0xd0,0x44,0x9e,0xfb,0x03,0xae, -0xfd,0x4d,0x6f,0xcd,0x56,0x3b,0xcd,0x37,0xd0,0xa5,0x95,0xe6, -0x1a,0xf0,0x70,0x00,0x65,0xd5,0xe9,0x89,0xdf,0x4f,0x7c,0x7a, -0xf4,0x3c,0xb5,0x2a,0x9d,0x7f,0xe3,0xb6,0xdb,0xd4,0x39,0xfa, -0x5e,0x21,0x6d,0x2a,0x5c,0x32,0xf7,0x1f,0xe4,0x0b,0xfb,0x1a, -0x3e,0x57,0x44,0x73,0x3d,0x62,0x6e,0xa3,0x97,0x88,0x20,0x7f, -0x0e,0xc6,0x2f,0x82,0x01,0x65,0x16,0xcd,0x36,0xcc,0x38,0xc1, -0x25,0x72,0x1b,0x31,0xf3,0x66,0xae,0x08,0xc2,0x8c,0x8f,0x3e, -0x01,0x92,0x27,0x05,0x58,0x5e,0x6b,0x9f,0x2a,0xd9,0x91,0x4d, -0x63,0xbc,0xa0,0xcf,0x2c,0x0c,0xec,0x32,0x4d,0x88,0x94,0x91, -0x0a,0x49,0x9f,0xfa,0x51,0x93,0x12,0x49,0x93,0xfc,0x31,0x23, -0x2d,0x92,0x26,0x07,0x24,0xa4,0x46,0x02,0xbc,0xb0,0x9c,0x97, -0x92,0x49,0x54,0xe5,0xc5,0x82,0xbf,0x21,0x17,0xa4,0xc6,0x97, -0xe8,0x0f,0x4b,0xc7,0x22,0xce,0x88,0x69,0x3c,0xc0,0xe0,0x2c, -0x2e,0x2c,0x79,0xff,0x75,0xf8,0x37,0xda,0x1a,0x81,0x1f,0xae, -0x44,0xe3,0xc5,0x75,0x97,0x09,0x69,0x1b,0x24,0x79,0x62,0x49, -0xfd,0xa4,0xf7,0x4d,0xea,0x27,0x6f,0x12,0x3b,0xc7,0xd1,0x1c, -0xe9,0xee,0x1f,0xcf,0x83,0x79,0x4c,0x9c,0xd4,0xe1,0x43,0xbb, -0x8c,0x63,0x7a,0x3e,0x4b,0xe7,0xdd,0xaa,0x36,0xe3,0x14,0x8b, -0xe8,0x89,0x17,0xec,0xa6,0xca,0xe6,0x93,0x0f,0x8b,0xf5,0x5e, -0x02,0x78,0x08,0x0c,0x55,0x61,0xb1,0xfe,0x1d,0x38,0x33,0x6d, -0x57,0xe2,0x1e,0x18,0x99,0xcd,0x12,0xc8,0xec,0x76,0x1b,0xd3, -0x43,0xe2,0x08,0xde,0x0d,0x56,0x52,0xcf,0x3e,0x9b,0xdc,0x2d, -0xde,0x25,0xd6,0x8c,0xfe,0xb4,0x1f,0xe3,0x3b,0x90,0xba,0xb7, -0x2c,0x4c,0x49,0x5e,0x09,0x32,0x2a,0xfd,0x3d,0xac,0x27,0x9e, -0x0b,0xa3,0x22,0xb6,0x58,0x8e,0x83,0x34,0x8b,0x8e,0xc7,0xd2, -0x15,0x78,0x2c,0x5d,0xc1,0x03,0xc7,0x16,0x31,0xc1,0x03,0x66, -0x53,0x21,0x52,0x43,0x26,0x7c,0x41,0x48,0x37,0x91,0x36,0xd9, -0x4d,0x37,0xcf,0x18,0x29,0xf4,0x81,0x8c,0xb6,0x9d,0xc6,0x84, -0x81,0x69,0x87,0x6a,0x48,0x6a,0x3a,0x09,0x36,0x02,0xd0,0x03, -0x6a,0x41,0xe9,0xc3,0x70,0x40,0xff,0x73,0x9f,0xcb,0xab,0x1c, -0x88,0x42,0x8f,0xf0,0x94,0x74,0x63,0xab,0xeb,0xaa,0xe4,0xf5, -0xdb,0x8a,0x57,0x0d,0x6c,0xa1,0x27,0xa3,0xa9,0x7f,0x97,0x2e, -0x8e,0xfe,0x91,0x9e,0x96,0x6e,0x79,0xdb,0xe1,0xe5,0xe3,0x85, -0x2e,0x16,0x8f,0x34,0x1d,0xef,0x74,0xc0,0xa8,0xe4,0x77,0xb9, -0x4c,0xc6,0xf3,0x59,0xa1,0x06,0x78,0xb3,0x4c,0x1f,0x2e,0x96, -0x85,0x27,0xbb,0x79,0x01,0x75,0xff,0x77,0x61,0x2a,0x0c,0x40, -0x4f,0x35,0x81,0x50,0xd3,0xb4,0x6a,0xb2,0x20,0x6b,0xe8,0xf9, -0x94,0x83,0x85,0x01,0x80,0xd0,0xb9,0x4a,0x92,0x6f,0x1a,0x20, -0x57,0xd1,0x49,0x7e,0xb4,0xa4,0xba,0xaf,0x36,0x18,0x0b,0xaa, -0xce,0x7f,0x6e,0x54,0xce,0x87,0x08,0xb8,0xb6,0xaf,0xba,0xe4, -0x17,0x62,0x4f,0x29,0x44,0x31,0xc2,0x63,0x20,0x5f,0x5b,0x9d, -0xe7,0x89,0x07,0x1f,0x7c,0x82,0xc7,0xbf,0x85,0x20,0x47,0x45, -0xa3,0xd0,0x47,0xb4,0x25,0x83,0xbe,0x4b,0xb5,0x9a,0x75,0x45, -0xe1,0x17,0x38,0x9c,0xd9,0xed,0x2c,0xfc,0x71,0xe1,0xa0,0x74, -0x9d,0x04,0x21,0x85,0x5f,0x07,0x62,0xaf,0xf5,0x17,0xd6,0x45, -0xe6,0xd3,0x45,0x81,0x62,0x0e,0x7a,0xde,0xb7,0xa0,0x8f,0x2c, -0x49,0xeb,0x23,0xbf,0x0c,0xfa,0xc8,0xed,0x78,0xf4,0x6b,0xc6, -0x29,0xa8,0x28,0x26,0xe9,0x19,0x2b,0xf8,0xca,0x51,0x55,0xa4, -0x67,0x0e,0x8c,0x2f,0x64,0xa6,0x07,0x80,0x55,0x15,0xe5,0xd6, -0x79,0xb5,0xf4,0xec,0xb8,0x56,0x39,0x3b,0xae,0x55,0xce,0x8e, -0x6b,0x95,0xb3,0xe3,0x5a,0xe1,0x18,0xf9,0xc0,0xd9,0x71,0x10, -0xed,0xd2,0x6c,0x4b,0xd9,0xae,0x51,0x1d,0x66,0x53,0xff,0xcc, -0xe0,0xe4,0xa0,0xd6,0x7a,0x8d,0x00,0x54,0xd6,0x6b,0xdd,0xab, -0x57,0xa3,0xed,0xda,0x15,0xd8,0xaf,0x3d,0xf5,0xe3,0x74,0x6c, -0xa7,0x5c,0x1c,0x2b,0x1a,0xff,0xaf,0xf3,0x35,0xc5,0xa6,0xed, -0x20,0xda,0xb4,0x35,0x80,0x7e,0xb3,0x80,0x2c,0xa9,0xc6,0x37, -0x6b,0xd3,0xe6,0x13,0x4c,0xcb,0xda,0xb4,0x31,0xbd,0x26,0xe3, -0x3c,0x1b,0x14,0xfd,0xe6,0x95,0xd8,0xb8,0x81,0x7a,0xf3,0xf2, -0xca,0x3d,0xc1,0x25,0x8c,0xdc,0x0e,0x5e,0x3d,0x9e,0x97,0xb3, -0x22,0xb6,0x94,0x95,0xdb,0xc6,0xa3,0x96,0xdb,0xd2,0xf1,0x23, -0xd1,0x9e,0xa4,0x5a,0x15,0xbf,0xef,0x0c,0xb7,0x31,0xeb,0x14, -0x32,0xe2,0x03,0x32,0x78,0x8f,0x06,0x7e,0x88,0xc3,0xdb,0x55, -0xf0,0x2a,0x7c,0x9e,0xc5,0xcc,0x7b,0x9d,0xe2,0x77,0x15,0xc1, -0x6f,0x4c,0x82,0xd0,0x42,0x4f,0x80,0xbf,0x51,0x56,0xbd,0xe3, -0x12,0xf1,0x3f,0x96,0xd1,0x3b,0x9a,0xd9,0x69,0xa9,0x91,0xda, -0xaa,0x19,0x15,0x5b,0x35,0x23,0xee,0xe9,0x79,0xec,0xf4,0xd8, -0xc8,0x24,0x53,0x01,0xf5,0xce,0x68,0x9b,0x8a,0xd6,0x3e,0xf8, -0x9b,0x52,0x65,0xee,0x96,0x2a,0x73,0xb7,0x54,0x99,0xbb,0xa5, -0x64,0xee,0x96,0xd2,0xb9,0xcb,0x4c,0xd9,0x6c,0x3a,0x1b,0x37, -0xf1,0xff,0x0d,0xd6,0x83,0x3d,0x9b,0xda,0xc6,0x6d,0xfd,0x78, -0x38,0x72,0x39,0xf5,0x95,0x4c,0x13,0xb7,0x1f,0x2b,0x76,0x31, -0x5d,0x48,0x2f,0xce,0x83,0xce,0x32,0x6b,0xee,0xa4,0x37,0x13, -0x71,0x36,0x9d,0x4b,0x48,0xa7,0xb3,0xd4,0x59,0x97,0xd2,0x1d, -0x34,0x53,0x79,0x19,0x60,0xca,0xcb,0x00,0x73,0x24,0xa7,0xc7, -0xab,0xf4,0x5e,0x05,0x30,0x74,0xac,0xdf,0xc0,0xc2,0x68,0x57, -0x2a,0x53,0xec,0x3d,0xd7,0x9e,0x4c,0xb6,0xaf,0x88,0xdd,0x71, -0xd5,0xdf,0x15,0x06,0x8a,0x2d,0xc5,0x85,0x45,0xb9,0x1b,0xd1, -0xca,0x6f,0x6f,0x6c,0x05,0xac,0x50,0x40,0xc3,0x47,0x3e,0x42, -0x10,0xf1,0x6a,0xb0,0x5c,0x36,0x4a,0xb9,0xc5,0x5e,0xe7,0x73, -0x60,0xed,0xf7,0x11,0x6e,0x8f,0xbb,0x59,0x82,0xd0,0x30,0x1f, -0x5c,0x54,0x8f,0xb9,0x84,0xbd,0xcb,0x15,0xe8,0x31,0x2d,0x7a, -0x3d,0xe6,0x9d,0x0a,0x29,0xfd,0x32,0x16,0x14,0x3e,0x21,0x53, -0xa1,0x99,0xb6,0x2b,0xc9,0x6a,0xd7,0xf8,0x89,0x73,0x97,0x67, -0xde,0x73,0xd5,0xdb,0x6d,0x3e,0x87,0xd3,0x67,0x9b,0x1c,0xe8, -0xf3,0xc5,0x8a,0x77,0xcc,0x24,0xc1,0xc4,0x04,0x86,0xfd,0xb5, -0xb0,0xcf,0x48,0x86,0x3d,0xfa,0xcd,0xd1,0xca,0xfa,0x57,0xc0, -0xb2,0x51,0x5a,0x48,0x31,0xdb,0x63,0xd0,0x69,0xbe,0x03,0x2e, -0x8a,0x4e,0xd3,0xa7,0xd1,0x69,0x2e,0x6f,0xe1,0xa8,0x56,0x72, -0xea,0x2d,0x1c,0xe9,0x06,0x44,0x63,0x04,0x3a,0xc8,0xd5,0xce, -0x1c,0x72,0x14,0xe3,0x81,0x2c,0xf6,0x8f,0x59,0x8c,0x4e,0x9a, -0x8e,0xe7,0x16,0xfb,0xec,0xae,0xe6,0xb0,0x25,0x66,0xf7,0x14, -0x99,0xc5,0xe2,0x22,0x30,0xf2,0xd8,0xb5,0x0b,0xce,0xcf,0x8b, -0xa4,0x13,0x5b,0x6e,0x7e,0xf0,0x68,0x8f,0xdd,0x65,0x1b,0xb5, -0xb7,0xec,0xf9,0xf4,0xcd,0xf7,0xe8,0x6c,0x3e,0x14,0x3b,0xb5, -0x42,0xe1,0x9f,0x61,0x62,0x6a,0xf5,0x98,0xcb,0x9b,0x2d,0x2d, -0x49,0xc9,0x64,0x72,0xc7,0xc4,0xe2,0x57,0xe1,0x68,0xca,0xca, -0x68,0xca,0x38,0x9a,0x39,0x9a,0xc8,0x1e,0x6f,0xde,0xca,0x29, -0x88,0x74,0x4a,0x6d,0xe2,0x36,0xf9,0x97,0x24,0xda,0xb8,0x61, -0x44,0x65,0x5c,0xd6,0xd4,0xc8,0x49,0x42,0xdb,0xa1,0x4d,0x18, -0xe7,0xd4,0x2b,0x7c,0x0c,0x2e,0x8a,0xee,0xb3,0x58,0xa3,0xfb, -0x5c,0xde,0x68,0x4c,0xb7,0xb2,0xd3,0xca,0x50,0xdd,0xca,0xfe, -0xb2,0xb2,0xb2,0xef,0xd4,0xac,0xec,0x62,0x16,0x5a,0x0d,0x18, -0x51,0x2f,0xdb,0x19,0xf3,0x62,0xd4,0x7a,0x04,0x86,0x3d,0xdd, -0x27,0xfd,0x70,0xfb,0xee,0x99,0x9c,0xbc,0x67,0x32,0x0c,0x63, -0x7c,0xcd,0x35,0x30,0xc6,0xe1,0x74,0x5f,0x75,0x26,0x53,0xa4, -0xd6,0x26,0xd4,0xf9,0x02,0xc9,0x7c,0x97,0x9e,0x2f,0xd7,0xf5, -0x56,0x27,0x0c,0xbc,0x19,0xfd,0x27,0x37,0x4a,0xfc,0x32,0x16, -0x14,0x9b,0x3a,0x03,0xcb,0xb0,0xc0,0x44,0xce,0x20,0x65,0xd4, -0x6d,0xa1,0xa6,0xe4,0x63,0x62,0xe1,0x13,0xc9,0xc7,0x98,0x89, -0xf1,0xe8,0xfc,0x9d,0xd0,0x93,0x45,0xe3,0xb1,0x12,0xcc,0x2a, -0xb1,0xd4,0xed,0x44,0xec,0xab,0xa7,0xba,0x50,0x25,0x82,0x88, -0xa2,0x0b,0x8d,0xce,0x2d,0x6a,0xbb,0xa8,0xd5,0x85,0x02,0xf6, -0x83,0x5c,0x17,0x1a,0x8c,0x29,0xb6,0x3b,0x79,0x8c,0x6f,0xca, -0xa6,0x0b,0xe5,0x31,0xd4,0x65,0x1e,0x63,0xdd,0x41,0xc3,0xa9, -0xab,0x03,0x72,0x42,0x0c,0xce,0xd4,0x37,0x6c,0x91,0xce,0x13, -0x62,0x9b,0x12,0x93,0x33,0x5f,0x09,0xc3,0xd9,0x34,0x75,0x76, -0x23,0x84,0xe5,0xc4,0x48,0xea,0xa5,0xc8,0xbd,0x8a,0xa3,0x45, -0x4a,0x4c,0x4e,0xb5,0x5d,0xb2,0xf4,0x21,0x96,0xe3,0xe2,0x20, -0xe6,0xb8,0xa8,0xa4,0x36,0x59,0x5a,0x59,0x7a,0xd9,0xc8,0x94, -0x36,0x6e,0x99,0xe4,0xe6,0x59,0x5f,0x42,0x0c,0x55,0x95,0x8a, -0x8e,0x54,0xc5,0x7a,0x6b,0x52,0x5a,0x80,0x8a,0xd4,0x7b,0xe4, -0x80,0x3a,0x0f,0x45,0x20,0x9d,0xbc,0x22,0xdf,0x57,0xd3,0x1e, -0x19,0xcf,0xb5,0xfe,0x8b,0x3a,0xe7,0x44,0x3a,0x4b,0x85,0xa7, -0xa9,0xda,0x67,0xbc,0x9d,0xf2,0x1c,0x68,0xbb,0x8c,0xbc,0x48, -0xbb,0x86,0x17,0xa1,0xf0,0x33,0x1c,0xde,0xa9,0x81,0x3f,0xca, -0xe1,0x5d,0x1a,0xf8,0x05,0x0e,0x1f,0x50,0xc7,0xab,0x42,0x5e, -0xa9,0x03,0x71,0xc6,0xfe,0x26,0xd7,0xfd,0xc0,0xbf,0x6b,0x75, -0x95,0x3a,0x59,0x94,0xb1,0x2e,0xde,0xac,0x87,0x19,0xf0,0xba, -0xb4,0x0b,0x5c,0x5a,0x69,0x4a,0x91,0x4a,0x55,0xd0,0xf9,0xe0, -0xda,0xad,0xd5,0x4e,0xb6,0x86,0x5a,0x45,0xe9,0xb5,0x9d,0x7b, -0x36,0x1a,0x36,0xef,0xb9,0xfa,0xb5,0x0f,0x7e,0x30,0xf9,0x41, -0xb1,0x58,0xfc,0xcc,0x63,0xf7,0xde,0xfb,0x58,0x6a,0x4b,0xff, -0x77,0xbf,0xdb,0x4f,0xd7,0x66,0x09,0x19,0xdb,0xed,0x12,0x6c, -0xfe,0xff,0x7c,0x11,0x93,0xa4,0xba,0x96,0x8a,0x81,0xc8,0xe4, -0x51,0xef,0x95,0xea,0x28,0x0b,0x51,0x96,0xce,0xd4,0x51,0xca, -0x59,0x74,0x94,0x16,0xae,0xa3,0xc4,0x55,0xec,0x50,0xf6,0x5e, -0x87,0xb2,0xf7,0x3a,0x94,0xbd,0xd7,0x41,0xf6,0x5e,0x07,0xdb, -0x7b,0x99,0x2e,0x93,0x77,0xdc,0x0e,0x32,0x41,0x51,0x5b,0x72, -0xca,0xb0,0x63,0xf3,0xd4,0x4b,0xff,0xb1,0x63,0xfd,0x66,0xc3, -0xa6,0xe4,0xd4,0x8b,0x9f,0x5f,0x3f,0x7e,0xfb,0x87,0x3e,0x74, -0xbb,0xb8,0x47,0xdc,0x74,0xf6,0xf6,0xdb,0xcf,0xa6,0x3e,0x97, -0x7a,0xe9,0xc7,0x60,0x73,0x05,0x9b,0x32,0x8e,0x7d,0x37,0x1d, -0x7b,0xc6,0x87,0xb6,0x32,0x7a,0x84,0x27,0x54,0x76,0xb6,0x4b, -0x2f,0x6a,0xa9,0xa6,0x13,0x44,0xd5,0x28,0xb0,0xf3,0xf8,0x27, -0x76,0x7a,0x3c,0x63,0xe7,0x7b,0x30,0xd8,0x42,0x99,0x18,0xc1, -0x15,0x31,0xe4,0xa5,0x82,0x03,0x2f,0xc5,0x81,0x57,0xc1,0x81, -0x57,0xc1,0x81,0x57,0xc1,0x81,0x97,0xe0,0xc0,0xcb,0xe9,0x4f, -0x36,0xab,0x66,0x4a,0x8a,0x8c,0xee,0xa1,0xfa,0x9e,0x24,0x1a, -0x36,0xb7,0x56,0x35,0xf6,0xfa,0x80,0x2c,0xe9,0x2d,0x9b,0xef, -0x64,0xb6,0x52,0x8a,0x1d,0xb6,0x17,0x4e,0x51,0xcb,0x32,0xfa, -0xad,0x5b,0xe7,0x3a,0x7f,0xa7,0x74,0x64,0x33,0x9a,0xbb,0xc7, -0x91,0x71,0x2c,0xb5,0x5d,0x51,0x5b,0x80,0xfa,0x2f,0xff,0x12, -0xbd,0x5a,0xe7,0xc0,0x90,0x4a,0x89,0xdb,0x20,0x60,0x52,0x75, -0x7a,0xf5,0x5e,0x42,0x0b,0x7a,0xaa,0xbe,0xa5,0x5a,0x4e,0x34, -0xd7,0xb6,0x51,0xf5,0xa7,0x28,0xb4,0xad,0x8e,0x95,0x24,0x9b, -0xfa,0x56,0xf8,0x9b,0x4b,0x93,0x49,0xa3,0x23,0xee,0x5b,0x31, -0x2f,0x07,0x7b,0xaf,0xea,0x7e,0xf6,0xd9,0x4d,0xeb,0xcd,0x9f, -0xf9,0x8c,0x64,0xc9,0x03,0xab,0x6d,0xd1,0x9e,0x93,0x2f,0xdd, -0xaa,0x8a,0xf9,0x06,0xe3,0xdd,0xaf,0x59,0xeb,0x18,0x07,0x15, -0xfd,0x1e,0xe2,0xd4,0x0f,0x83,0x8c,0xbf,0x11,0x6d,0xbc,0xcf, -0xc0,0xea,0x7b,0xeb,0x76,0xf3,0x22,0x5b,0xaf,0x6f,0xd6,0x76, -0x3e,0x08,0x44,0x38,0x48,0x35,0xa4,0xa2,0xe9,0x91,0xa4,0x98, -0x97,0xfc,0xbc,0x62,0x3b,0x3f,0x72,0x77,0x56,0x19,0x6d,0xb1, -0x7c,0x0a,0x18,0x1b,0x1f,0x9f,0xab,0xc1,0x3e,0xe6,0x2d,0x4c, -0xa1,0x1d,0xb3,0x0f,0xf2,0xb2,0x16,0xa7,0x73,0xbf,0xfb,0x62, -0x8b,0xc5,0xf4,0x4e,0xeb,0xcb,0x50,0x17,0xe5,0x43,0x45,0x80, -0x8f,0x5b,0x62,0x3a,0xc8,0xc3,0x79,0x8a,0x3b,0x37,0x8c,0x38, -0x5b,0xb9,0xfd,0x4a,0xe1,0x06,0x2c,0x50,0xb7,0x14,0x1a,0x15, -0x9c,0x72,0x5c,0x45,0x28,0x53,0x38,0xd0,0xf0,0x83,0x2b,0x43, -0x51,0x23,0xc5,0x62,0xa5,0x52,0x19,0x17,0xf5,0xa0,0xa9,0x1f, -0x34,0x77,0xf8,0x3a,0x1c,0xc9,0x73,0xe2,0x07,0xce,0x19,0x5d, -0xed,0x9e,0x99,0xcd,0x89,0xae,0xc7,0xb7,0x89,0x03,0xc3,0x2b, -0x2c,0xb9,0xa9,0xf3,0x84,0x9d,0x1e,0xfd,0x4e,0x8e,0xe5,0xc8, -0xee,0xd4,0x2b,0x2d,0x2b,0xa0,0x8f,0xcc,0x56,0xdb,0x0d,0xf3, -0xd9,0x9c,0xa1,0xc3,0xd7,0x8d,0xa3,0xce,0x0c,0x5b,0x7d,0x3e, -0x9e,0x36,0x2d,0x37,0xce,0x01,0xcb,0x24,0x29,0x91,0x54,0x63, -0xd8,0xb3,0x3c,0xa5,0xaf,0xac,0xf0,0x30,0x16,0x14,0xe5,0x1c, -0x04,0xdc,0xb3,0xd3,0xbc,0x99,0xea,0x2e,0xf9,0xc4,0x50,0xab, -0xd2,0xd7,0x0b,0xe9,0x1e,0x25,0x69,0x17,0x79,0x67,0x7e,0xfe, -0x73,0xda,0x3b,0xba,0x46,0xb7,0x60,0xdc,0x07,0xe8,0xd3,0xf5, -0xb0,0xbb,0x2c,0xe3,0xcf,0xa5,0xeb,0x93,0x3a,0x0d,0x22,0x1c, -0x15,0xba,0x15,0x67,0x63,0x23,0x3a,0x1b,0x3f,0x45,0x3e,0x12, -0x1d,0x2c,0x93,0xd2,0x25,0x93,0xaa,0x27,0xca,0x8e,0x45,0xf9, -0x28,0x45,0x59,0x18,0x6a,0xe5,0x5a,0xc4,0x2d,0x49,0x45,0x4b, -0xc8,0x7d,0x29,0x08,0x6b,0xf5,0xaa,0x76,0xcb,0xc1,0x98,0x78, -0x6a,0x3e,0x43,0xfc,0x47,0xe4,0xad,0xee,0x11,0x07,0xc5,0x27, -0xa5,0xa7,0xc8,0xe4,0x2f,0x25,0xa2,0x08,0xf2,0x56,0x8a,0xd4, -0xa3,0x1c,0xc4,0x79,0x96,0x8d,0x88,0x5d,0x0c,0xcb,0x2e,0x1f, -0xc3,0x39,0xd3,0xb8,0xd8,0x32,0x06,0x19,0x36,0xb1,0x1d,0xc6, -0x13,0x03,0x63,0x39,0x88,0x91,0x2a,0x32,0x95,0x9f,0x13,0x73, -0xd3,0xa8,0x23,0xb1,0x25,0xe0,0xd0,0x08,0x6f,0x81,0x22,0x54, -0xac,0x5b,0x3d,0x32,0xb2,0x1a,0x3e,0xb5,0xa1,0x50,0x2d,0x7c, -0x6c,0xf9,0xf9,0x36,0xf2,0x11,0x07,0x77,0x4f,0x6d,0xdb,0xbd, -0x7b,0xdb,0xd4,0xee,0x78,0x67,0xd3,0x40,0x53,0x27,0x7e,0x1d, -0xb5,0xe6,0x59,0xf2,0xac,0xf8,0x85,0xe3,0xf5,0x11,0x71,0x54, -0xfc,0x12,0xda,0xd8,0x6f,0xbb,0x88,0x21,0x14,0xf2,0xf5,0x31, -0x83,0xb2,0xf7,0x41,0xc4,0x3e,0x98,0xd1,0x46,0x4c,0x46,0x4f, -0x06,0x59,0xf1,0x12,0x46,0x4d,0xb8,0xcc,0x36,0x16,0xd4,0x3f, -0x13,0xc1,0xd3,0x5c,0x95,0x80,0x6d,0xff,0xe1,0x23,0x07,0x4b, -0xcf,0x0c,0xed,0x12,0x47,0x9b,0xc5,0xdc,0x44,0xdd,0x40,0xea, -0xe9,0x66,0x6c,0xc7,0xc7,0x49,0x3b,0x1e,0x23,0xb8,0x2d,0x03, -0xbb,0x4e,0x7b,0x46,0x6e,0x5d,0x9d,0x14,0xc9,0xb6,0xb0,0x62, -0x1a,0xfb,0x0d,0x6a,0x92,0xe6,0x40,0x96,0xb2,0x33,0xc9,0xd8, -0x5e,0xa4,0xe4,0xf5,0x2b,0x65,0xfa,0x72,0xc8,0x34,0xd3,0x9a, -0xe0,0x86,0xad,0x69,0x8b,0xfa,0x42,0x31,0x2e,0x3e,0x96,0xfa, -0xed,0x8d,0xbe,0x60,0x30,0x10,0x0a,0xe5,0xb4,0x99,0x1c,0xc1, -0x86,0xf2,0xde,0x15,0xad,0x35,0xd3,0xdf,0x16,0x47,0x3b,0x0e, -0x90,0x19,0x6a,0xf2,0xf8,0x2b,0xdc,0x25,0xc5,0x81,0xd2,0xc2, -0x9e,0xc6,0xba,0x81,0xc0,0x6a,0x6c,0xef,0x3f,0x92,0xb9,0xf0, -0x20,0x69,0x6f,0x0d,0xc4,0x09,0xb2,0x66,0xe8,0x7e,0x75,0xbe, -0xb7,0x4c,0xb3,0x51,0x0c,0xd3,0x3a,0xca,0x93,0x1d,0x47,0x61, -0x5a,0xf7,0x13,0xc0,0x04,0xf9,0x48,0x27,0x95,0x28,0xdf,0x34, -0x88,0x80,0x8c,0x7b,0x96,0x80,0xf6,0xad,0x4a,0xd6,0x64,0x9c, -0x16,0x7c,0x2a,0xe8,0x8c,0x07,0x35,0xa1,0xa7,0x89,0x40,0x2c, -0x7a,0x22,0x95,0xa1,0x72,0x5f,0xd4,0x5a,0x6b,0xeb,0x69,0xee, -0x18,0x6d,0x08,0x54,0x34,0x8f,0xaf,0x48,0xf4,0xda,0x63,0xd6, -0x68,0x28,0x52,0x35,0x5e,0x2f,0x55,0xf8,0x5c,0x86,0xd2,0x32, -0xb7,0xa3,0xa2,0x34,0xdc,0x5c,0x1f,0xae,0x31,0xcb,0xa6,0xba, -0x68,0x53,0x57,0xd4,0x53,0xe1,0xf4,0x06,0x7c,0xa6,0x44,0x9c, -0x4c,0x88,0xf7,0x93,0x71,0x79,0x06,0xe7,0x87,0x15,0x22,0x7f, -0x00,0xcb,0x54,0xc4,0x06,0x59,0x1d,0x57,0x60,0x31,0x29,0x09, -0x7b,0x0c,0x27,0x61,0x06,0xee,0x7d,0x51,0x80,0x5d,0x93,0x59, -0x68,0x14,0xea,0x92,0x22,0x31,0x02,0x04,0x33,0xc7,0x42,0xbb, -0x49,0xd8,0xc3,0x04,0x3d,0x68,0x92,0x43,0xe6,0xb8,0x38,0xf1, -0xe4,0x27,0x37,0xb6,0xb7,0x77,0x1b,0x6e,0x7c,0xb7,0x38,0xba, -0xaa,0xe5,0x77,0x7f,0x6a,0x5c,0x25,0xb6,0x3f,0x45,0xc6,0xe1, -0x1c,0x19,0x87,0x47,0x30,0x1f,0x0e,0xce,0x1b,0xad,0xdd,0x9c, -0x1f,0x1a,0xe1,0xd7,0xeb,0xa0,0x8a,0x01,0xe0,0x2f,0x52,0xe6, -0x70,0x3e,0x5f,0x87,0xe0,0xbe,0x6f,0xe7,0x3e,0x0b,0x1e,0xda, -0x92,0x90,0x39,0xae,0x20,0x5a,0x1b,0xdc,0x1b,0xc7,0x20,0x11, -0x17,0xef,0x7d,0xc4,0x62,0xb0,0x86,0x2b,0x5a,0x46,0x56,0x0f, -0xb5,0xf6,0x14,0xd7,0x17,0x46,0x42,0x11,0xf2,0x9f,0xc7,0x6f, -0x69,0xb1,0xbe,0x24,0xbd,0xe7,0x66,0x67,0x59,0x4f,0x5b,0xfb, -0x08,0x62,0x35,0x1c,0x30,0x06,0xc2,0xc5,0x16,0xf3,0x77,0x50, -0xde,0xfe,0x38,0x69,0xfb,0x13,0x12,0xa8,0x8a,0x2a,0xa1,0xf5, -0x8a,0xe4,0xa2,0xf6,0xce,0xd1,0x89,0xd6,0xea,0x15,0xe8,0xc6, -0x36,0x17,0x93,0xfb,0x74,0x9b,0x2c,0x8e,0x41,0x6f,0x65,0xd4, -0xe4,0xfa,0x59,0x26,0x64,0xdc,0x45,0x88,0xac,0x12,0x27,0xb2, -0x8a,0x4b,0xe9,0x46,0x46,0x60,0xc7,0x86,0xc1,0x31,0x4f,0x4d, -0xbc,0x34,0x19,0x6a,0x8b,0x96,0x99,0x0d,0x05,0xb5,0x91,0xf8, -0xd0,0x78,0x7f,0xa8,0xba,0x3a,0x44,0x3e,0xe2,0xe0,0xf8,0x60, -0x74,0xa4,0x2b,0x56,0xe8,0xaa,0xa9,0x6b,0x22,0xb3,0x2c,0xd0, -0xd3,0xda,0x3e,0xdc,0x58,0x11,0x32,0x86,0x2a,0xf0,0x0b,0xd6, -0xc2,0x27,0xc9,0x1c,0x79,0x54,0x02,0xde,0xb9,0x07,0xbe,0x72, -0x91,0xce,0x0a,0xcb,0xa4,0x43,0x29,0x56,0xf2,0x39,0x4b,0x38, -0x06,0x06,0xc2,0x4d,0x95,0x81,0x06,0x8e,0x10,0x20,0xf9,0xa7, -0x1f,0xb8,0xa7,0x4d,0x2c,0xba,0x8b,0xbc,0xb6,0x6f,0xe8,0x9a, -0x16,0x22,0xf0,0xca,0xc2,0x47,0x09,0xae,0xbe,0x48,0xd6,0x5b, -0xa9,0x10,0x22,0xf2,0xfa,0x29,0xc0,0x96,0x92,0x81,0x42,0x61, -0xc8,0xc2,0xcb,0xe6,0xfb,0x40,0xac,0x85,0xd9,0x8e,0x5b,0xc0, -0x12,0x54,0xc3,0x8e,0x5b,0x8b,0x30,0x33,0x81,0xd6,0xa2,0x14, -0x60,0x67,0x25,0xca,0x07,0xf8,0x55,0xfb,0x31,0xf3,0xd1,0xd0, -0xac,0xbb,0x2a,0xd0,0x77,0x87,0x2a,0x08,0x2e,0x5d,0x5a,0xc4, -0xd6,0x8d,0x8c,0xd5,0x87,0xca,0x2b,0x87,0xfa,0xfa,0x86,0x2a, -0xcb,0xc3,0x75,0x63,0x23,0xc3,0xe4,0xbf,0x48,0x55,0x55,0x84, -0x7c,0xc4,0xc1,0x9e,0x86,0x70,0x7d,0xae,0x21,0xaf,0x36,0x50, -0xdb,0xd2,0x42,0xbe,0xf2,0x0c,0xb9,0xf5,0xe1,0x86,0x9e,0x4b, -0x2d,0xb9,0x2d,0xe4,0xff,0xfb,0xcb,0xcb,0xf2,0xcb,0xca,0xf1, -0x0b,0xe7,0xca,0xc7,0xd8,0xfe,0x08,0x73,0x65,0x07,0xec,0x0c, -0xca,0x5c,0x71,0x68,0xbc,0xb9,0x74,0xce,0x5b,0x8c,0x0c,0x21, -0xb6,0x1d,0x45,0xe9,0xf9,0x61,0x62,0x2e,0x28,0xa0,0xe9,0xa7, -0xf3,0x28,0x9f,0x5c,0xfd,0x74,0xce,0x80,0x4a,0x2d,0xd4,0x2b, -0xd3,0x18,0xdc,0x8c,0x0a,0x99,0xb5,0x5d,0x7b,0xcc,0x53,0x4d, -0x66,0x4c,0x05,0xce,0x98,0xfc,0xda,0x48,0xcb,0xe0,0x9a,0x81, -0x15,0x63,0xb7,0xb3,0x49,0x23,0x35,0xaa,0xa6,0x8c,0x33,0xd0, -0x4b,0xa6,0xcc,0xf8,0xa9,0x8a,0x90,0x09,0xe6,0x8c,0x09,0xe6, -0x0c,0xa1,0xa5,0x0b,0x7f,0x16,0x9f,0x14,0xaf,0x7d,0x53,0xb4, -0xd4,0x9d,0x55,0x4f,0xa1,0xa7,0xa5,0x02,0xd3,0xa8,0xa5,0x69, -0xa9,0xf1,0xad,0xd2,0x52,0xd3,0xb2,0xa4,0x14,0x68,0x29,0xf9, -0xfa,0x92,0x78,0x62,0x49,0x5a,0x9a,0xbd,0x0f,0x6f,0x86,0x96, -0xc6,0x75,0xb4,0x34,0x4d,0x49,0x09,0x1d,0x25,0x6d,0x78,0x8c, -0xe0,0x75,0x29,0x3a,0xea,0xce,0x2a,0x0a,0x5c,0x29,0x1d,0xad, -0x16,0xdf,0x2c,0x1d,0x25,0x54,0xb4,0xd1,0xa3,0xa3,0xa2,0x84, -0x86,0x92,0x39,0xf0,0x20,0x69,0x6b,0x8d,0xb0,0x67,0x51,0x1a, -0xea,0xce,0x7a,0x3a,0x70,0xc5,0x34,0x54,0x4d,0x39,0x2b,0xff, -0x76,0x94,0xf3,0x87,0xcb,0x11,0x4e,0x5c,0xb3,0xef,0x27,0x63, -0xf1,0x0c,0xce,0x87,0x25,0x69,0x27,0xdb,0x21,0xdd,0x59,0xcf, -0x85,0x80,0x76,0x1a,0xb3,0xd0,0x4e,0xa3,0x8e,0x76,0x1a,0x39, -0xed,0x0c,0x2e,0x4a,0x3b,0xd3,0x94,0x13,0xe6,0xeb,0x39,0x82, -0xff,0x47,0x48,0xfb,0x90,0x76,0x16,0x67,0xd0,0x4e,0xe6,0x0f, -0xe1,0xce,0xaa,0xb9,0x2f,0x2f,0x52,0x10,0x6d,0x61,0x49,0xe2, -0xe0,0x04,0xab,0x9c,0xb9,0x7f,0x18,0xd1,0x6a,0x12,0xe3,0xfc, -0x2f,0x43,0x3a,0x1d,0xaf,0x2c,0x4e,0x39,0xc5,0xbe,0xac,0x94, -0xb3,0x99,0xe2,0xf6,0xe3,0xa4,0xed,0x4f,0x90,0xb6,0x2f,0x4f, -0x3b,0xb3,0xaf,0x38,0x85,0x76,0xba,0x99,0x6e,0x39,0x1b,0xed, -0x34,0xbe,0x45,0xda,0x69,0x5a,0x8e,0x74,0x02,0xed,0x24,0x5f, -0x8f,0x92,0x7e,0x2c,0x45,0x3b,0xdd,0x59,0x75,0x97,0x5a,0xda, -0x19,0xb7,0x67,0xd0,0xce,0xbe,0xc1,0xd3,0x40,0x39,0x61,0xaf, -0xfd,0x28,0xc1,0xd5,0x17,0xc9,0x3a,0x83,0x9d,0x76,0x11,0xda, -0x19,0xcd,0xa4,0x9d,0xd9,0xb1,0xe6,0x41,0x0c,0x45,0xc9,0x7d, -0x0f,0x5b,0x7d,0x74,0x87,0x05,0xda,0x19,0x65,0xb9,0xb3,0xec, -0xac,0x44,0x69,0x67,0xbd,0x6a,0xff,0xcd,0x4e,0x3b,0x35,0xbb, -0x31,0xa7,0xa4,0x7a,0xda,0xc9,0xe8,0x66,0x84,0x90,0x50,0x53, -0x76,0xd2,0xd9,0x98,0xa6,0x99,0xf7,0x53,0x2a,0x4a,0xe7,0xca, -0xc7,0xd8,0x9e,0x78,0x65,0xb4,0xd3,0x9d,0x25,0x7d,0xa0,0x96, -0x76,0xfa,0x55,0xa7,0xe4,0x99,0xb4,0xb3,0xf2,0xad,0xd2,0xce, -0x5f,0x2c,0x43,0x3a,0xc9,0x78,0x7e,0x46,0x9c,0x11,0x1f,0xe6, -0x72,0xe8,0x8d,0x7f,0x9d,0x1c,0x5a,0xb2,0x9c,0x1c,0x8a,0xd6, -0x7f,0x1e,0x41,0x3c,0x81,0x6e,0x90,0x1e,0x01,0xe2,0x37,0x48, -0xd4,0xce,0xd1,0x43,0x50,0x40,0xfe,0x38,0xf1,0xe6,0x45,0xd5, -0xe1,0xbe,0xbe,0x61,0xf8,0x54,0xfa,0xfd,0x95,0xf0,0x51,0x44, -0xd5,0x99,0x6d,0x1b,0x26,0xb7,0x6d,0x9b,0xdc,0xb0,0xad,0xb9, -0xb9,0xb6,0xa7,0x96,0x7e,0xed,0xb0,0xe6,0xe5,0x02,0x7d,0xcd, -0x55,0xe8,0xeb,0x05,0xf1,0x90,0xf8,0x80,0x22,0xab,0x8a,0x19, -0xf4,0x75,0xb1,0x73,0xb8,0x12,0x6a,0x11,0xa7,0xf4,0x53,0x62, -0x3b,0xa8,0xa4,0xc9,0x51,0x28,0x33,0xbd,0xbf,0x19,0x63,0x1b, -0xb4,0x32,0xf2,0x1a,0x7a,0xf2,0xea,0xab,0xdc,0x87,0x87,0x36, -0xfc,0x56,0xfc,0xd8,0xcf,0xeb,0xeb,0xda,0x53,0x3f,0x6b,0xa6, -0xed,0x78,0x80,0xb4,0xe3,0xb3,0x04,0xff,0x6e,0xd8,0x79,0xac, -0x19,0x3a,0x0e,0x9d,0xec,0xc7,0x74,0x1c,0xd8,0x0e,0x07,0xad, -0x69,0x0e,0x9a,0x6f,0x65,0x0a,0xc8,0xb4,0xb8,0x57,0x02,0xfc, -0x01,0xd5,0x5e,0x24,0xf4,0xa4,0xaa,0x10,0x8e,0x6b,0x1f,0x39, -0xd1,0x56,0xe6,0xf1,0xf8,0xf3,0x5a,0x2d,0x3d,0xad,0x1d,0x1d, -0xad,0x95,0xe3,0x8f,0xfe,0x5e,0xfc,0xd4,0xd6,0xda,0x98,0xd1, -0x5e,0xe6,0xf3,0x38,0x2b,0xe2,0x1d,0xd1,0x9a,0x7e,0x5f,0x17, -0x6b,0xe7,0x79,0x32,0x4f,0xee,0x43,0x19,0xf5,0x6d,0x90,0x14, -0x29,0x6b,0x8c,0xe9,0xec,0xf3,0x82,0xb6,0xc7,0x0a,0xde,0x88, -0x8a,0x61,0x28,0xb3,0x05,0x85,0x50,0x57,0x13,0x50,0x38,0x89, -0x11,0x49,0xa0,0x00,0x47,0x28,0x32,0x73,0x85,0xa3,0xcb,0x41, -0x71,0x85,0xc3,0x99,0x91,0xe9,0xfa,0xc6,0x7a,0xa6,0x0f,0x3f, -0x5d,0xd9,0xd2,0x59,0x14,0xcb,0x0f,0x05,0x7c,0xc1,0x70,0x30, -0x14,0x0a,0xf8,0xcb,0x3d,0xb1,0xd2,0x9a,0xe2,0xb6,0xba,0xb6, -0xfe,0x6a,0x5f,0xa0,0x6e,0x58,0x9c,0xa9,0xf5,0x06,0x5d,0xe5, -0x65,0x2e,0xb3,0xcb,0xd5,0xec,0xb6,0x99,0x4b,0xdc,0xd5,0x15, -0x9e,0x40,0x2c,0x1a,0xac,0x32,0x1a,0x8c,0xd1,0x50,0x7d,0x1b, -0xae,0xf5,0x4f,0x92,0xb1,0x79,0x24,0x2d,0xaf,0xca,0x9c,0xe6, -0xca,0x9a,0x1c,0xdc,0xba,0x68,0x30,0xe9,0xd9,0xa2,0x8d,0x18, -0x0e,0x63,0x29,0xa3,0x66,0xc9,0xca,0xce,0x05,0x8c,0x73,0x0a, -0x2f,0x46,0x67,0x4f,0x01,0x93,0x12,0x15,0x92,0x1b,0xea,0x21, -0x12,0xa3,0xb8,0xf2,0xbe,0x3b,0x26,0x63,0xb1,0x1e,0xf9,0xa4, -0xf8,0xb9,0xae,0x17,0x7e,0xdc,0xd8,0x7f,0xfc,0xc2,0x05,0x1c, -0x93,0xcf,0x93,0x31,0xb9,0x1f,0xe5,0xd5,0x0d,0x80,0x60,0x2d, -0xcd,0xd5,0xe9,0x39,0xf4,0x63,0x52,0x46,0xee,0x9b,0x99,0x73, -0x08,0x6d,0x1b,0xe5,0xd2,0x9c,0xca,0x42,0xcc,0x42,0x64,0x55, -0x02,0xac,0x58,0xd3,0xdc,0x6e,0xad,0x2f,0x08,0xfa,0xfc,0xa1, -0xb0,0xd7,0xe5,0xcd,0x69,0x2d,0x98,0x3b,0x97,0x6b,0xb4,0x04, -0x02,0x0d,0xbd,0x43,0xe2,0x4c,0x4d,0x59,0x85,0xb3,0xbc,0xa2, -0x4c,0xf6,0x94,0x17,0xe7,0xe6,0x3c,0x19,0x3f,0xed,0xf4,0xb4, -0x35,0xc7,0x57,0x20,0x5e,0x1f,0x20,0xed,0x7e,0xe0,0xaf,0x93, -0x55,0x4b,0xfe,0x96,0xb2,0x6a,0x7d,0xf7,0x90,0x2b,0x5c,0xe7, -0xdc,0x1c,0x88,0x47,0x3c,0x26,0x93,0xa5,0x3a,0x54,0xdf,0x35, -0xdc,0xe5,0x0b,0x87,0x7d,0xe4,0x23,0xce,0xac,0xea,0x0e,0xf7, -0xb7,0xd6,0x58,0x9d,0xd1,0x68,0x5d,0xa9,0x58,0x12,0x68,0x6f, -0x8c,0xaf,0x68,0xf4,0x97,0x59,0xca,0xfc,0xf8,0x45,0xf1,0x7f, -0x48,0x3c,0x8f,0xb2,0x6a,0x1f,0x35,0x23,0xcb,0x5b,0xea,0xac, -0x97,0x75,0xa9,0x44,0xf1,0x11,0x07,0x3e,0x5d,0x89,0xd0,0x8f, -0xc2,0x6a,0x9c,0x70,0x58,0xe2,0xc1,0x77,0x25,0x7e,0x77,0xa6, -0x5f,0x7a,0x77,0xff,0x6c,0x5b,0xea,0x17,0xe4,0x2e,0xe0,0xea, -0x73,0x28,0xab,0x56,0x09,0xad,0x94,0xde,0xb6,0x09,0x89,0xa5, -0xe9,0x6d,0x76,0xac,0x45,0xb9,0xac,0x1a,0xe5,0x12,0x4d,0x8c, -0xcb,0xaa,0x31,0x2e,0xab,0xc6,0x38,0xbd,0x0d,0x2e,0x2b,0xab, -0xaa,0xd1,0x99,0x29,0xaf,0xf6,0x0e,0x44,0x03,0xde,0x70,0x6f, -0x47,0x47,0x6f,0xd8,0x1b,0x88,0x0e,0xf4,0xfa,0xfc,0x7e,0x1f, -0x7c,0xfc,0x15,0x15,0x7e,0xf2,0x11,0x67,0x12,0x35,0x15,0xd1, -0x1c,0x43,0x6e,0xc4,0x17,0x69,0x6e,0x26,0x5f,0xb9,0x86,0x9c, -0x68,0x45,0x4d,0xe2,0xb9,0x52,0x87,0xd9,0x51,0x8a,0x5f,0x1f, -0x2a,0x73,0xe5,0xba,0xca,0xf0,0x0b,0xe7,0xcd,0xe7,0x08,0xbe, -0x01,0x17,0x0e,0xea,0x99,0xe3,0xe4,0x9e,0x39,0x4e,0xcd,0x7a, -0x5c,0x02,0x0b,0xb4,0x5f,0x3e,0xd6,0x6b,0x1f,0xdb,0x91,0x20, -0x99,0xba,0x93,0xc9,0x4a,0x4e,0x14,0x72,0xc8,0xae,0xd9,0x2b, -0x6a,0xc8,0x2e,0x9a,0x86,0x68,0x3b,0xfc,0x1f,0x7d,0x6b,0xf3, -0x95,0x59,0x43,0x67,0x92,0xac,0x4c,0x9e,0x43,0xb5,0xe3,0x71, -0x36,0x67,0xd8,0x34,0xfa,0xb4,0x7a,0xea,0x00,0xdd,0x25,0x7c, -0xd4,0xc3,0xe2,0xc6,0x37,0x25,0xb3,0x3a,0xaf,0x58,0x66,0xb5, -0xff,0xd5,0x32,0xeb,0x22,0x44,0xd5,0x74,0x45,0x34,0x95,0x7c, -0x3d,0x20,0xae,0x5b,0x92,0xa6,0x3a,0xb3,0x46,0x56,0x79,0x33, -0x34,0x35,0xa1,0xa7,0xa9,0xcd,0x0a,0x49,0x25,0xf4,0x94,0xb4, -0xe1,0xb3,0x04,0xaf,0x4b,0xd1,0x53,0x67,0xd6,0x18,0xac,0x57, -0x4a,0x4f,0xfb,0xc4,0x2b,0xa7,0xa7,0x9d,0x59,0xc8,0x29,0xa1, -0xa5,0x64,0xec,0xef,0x23,0x6d,0x5c,0x8a,0x96,0x3a,0x17,0xf1, -0x1d,0xff,0x1b,0xd1,0x52,0xe3,0xdf,0x8e,0x96,0x9a,0x96,0x27, -0xa5,0x40,0x4b,0xc9,0xb8,0x3c,0x82,0x73,0x63,0x49,0x5a,0xca, -0x76,0x4d,0x67,0xd6,0xf8,0xbd,0x22,0xb9,0x93,0x8d,0x96,0x1a, -0x74,0xb4,0xd4,0x50,0x44,0xd7,0x05,0x38,0x90,0x2c,0x42,0x4b, -0xfb,0x55,0xa4,0x14,0xf6,0x72,0x32,0x26,0xf7,0x93,0xf6,0x2d, -0x45,0x4b,0x97,0x1a,0x93,0x32,0x72,0xb5,0x2f,0x4a,0x4b,0x8d, -0x6f,0x85,0x96,0x9a,0x16,0x25,0xa5,0x40,0x4b,0x49,0xbb,0x61, -0xcd,0x2d,0x4f,0x4b,0x9d,0xff,0xab,0xb2,0xeb,0x52,0xb4,0xd4, -0xb4,0x1c,0x29,0x05,0xfc,0x93,0xaf,0xf3,0xa4,0x1f,0x39,0x34, -0xe6,0x7f,0x56,0x5a,0xea,0xcc,0x1a,0x2c,0xc8,0xc0,0x75,0xef, -0xf2,0x25,0x3d,0x25,0x15,0xcb,0x28,0x25,0x85,0x3d,0x17,0x70, -0xf5,0x39,0xb2,0xee,0xde,0x0c,0x2d,0xcd,0x8e,0x35,0x85,0x96, -0x46,0x59,0x50,0x94,0x2b,0xa5,0xa5,0xc6,0xff,0x1d,0x5a,0x6a, -0x7a,0x93,0xa4,0x14,0x68,0x29,0xc1,0x37,0xe0,0xe2,0xca,0x68, -0xa9,0x73,0xd1,0x6c,0xd7,0x0a,0x2d,0x15,0x98,0x13,0x50,0x36, -0x5a,0x1a,0x7f,0x2b,0xb4,0x74,0x29,0x4a,0xba,0xb0,0x00,0xbe, -0xcf,0xd2,0x88,0x74,0x51,0xaa,0x92,0x9e,0x59,0x38,0x84,0xd3, -0x1f,0xbe,0xcd,0xd2,0xf3,0x02,0xb5,0x19,0x28,0x5e,0xf8,0x73, -0xd6,0xfb,0x73,0x9a,0xfb,0x4f,0x91,0xfb,0xff,0x96,0xfd,0x3e, -0x79,0xff,0x68,0x96,0xdf,0xff,0xbb,0xe6,0x3e,0xfc,0xfe,0xd9, -0xec,0xf7,0x17,0xa9,0xff,0xbb,0xcb,0xd4,0xaf,0xbf,0xff,0x6c, -0xd6,0xfb,0x85,0xfc,0xfd,0x5f,0x5b,0xe2,0xf7,0xfa,0xfa,0xbf, -0xa7,0xbb,0xff,0x5c,0xf6,0xfb,0x8b,0xe0,0xf7,0x85,0x65,0xde, -0xff,0xfd,0x65,0xda,0xff,0xfd,0x65,0xea,0xd7,0xdf,0xff,0x46, -0xf6,0xfb,0x8b,0xb4,0xef,0x07,0x70,0x9f,0xec,0x0b,0x90,0x0f, -0x70,0x52,0x7a,0x8e,0x6c,0x28,0x35,0xc0,0xa8,0xd3,0x6c,0x80, -0x02,0x50,0x10,0x60,0x49,0xb2,0x38,0x8c,0xc8,0x20,0xb6,0x27, -0xfc,0x62,0x3c,0x61,0x77,0x89,0xa1,0x86,0x35,0x63,0xab,0x8d, -0x1b,0x3e,0xb9,0x32,0xf5,0xf2,0x26,0xf1,0x25,0xe7,0xd7,0x5f, -0x7c,0x51,0xfc,0xc7,0xd2,0xf9,0xf5,0xe4,0xbd,0xcd,0x42,0xa1, -0x14,0x91,0x3e,0x07,0x4c,0x4e,0xda,0x5f,0x10,0x12,0x05,0xca, -0x89,0x32,0xd1,0x25,0xdb,0xcd,0x16,0xb1,0xf9,0x5b,0xdf,0xea, -0xfb,0xe2,0xc5,0x3e,0xfc,0x4e,0x88,0x51,0x31,0x1c,0x4d,0xbd, -0x26,0x16,0x46,0x53,0x2f,0xa6,0x2e,0x45,0xc5,0xc2,0xd4,0x6b, -0xd4,0x26,0x4d,0xb8,0x43,0xea,0x96,0xea,0x08,0xc5,0x70,0x81, -0xea,0x87,0x52,0x45,0xe1,0x09,0xd2,0x54,0x49,0x30,0x0a,0x86, -0x5a,0xd2,0x18,0x57,0xa1,0xe8,0x4a,0x04,0x1d,0xc1,0x2a,0xb3, -0x5f,0x34,0x57,0xfd,0xac,0x71,0x53,0xb3,0xb8,0x13,0x12,0xe9, -0xee,0x14,0x9b,0x37,0x35,0x3e,0x2f,0xd5,0x35,0x6e,0xaa,0x91, -0x4d,0x43,0x26,0xb9,0x86,0xfc,0x85,0xef,0xdc,0x4e,0xbe,0xfe, -0x22,0x3d,0x4b,0xde,0x19,0x03,0x5a,0xc6,0xde,0xb9,0x98,0x4e, -0x21,0x6d,0xd6,0x46,0x76,0x4f,0x73,0x4c,0x34,0xbb,0x20,0x08, -0x6f,0x55,0xa1,0x58,0x95,0x10,0xff,0xa2,0x7e,0xb7,0xf8,0x87, -0xa6,0xcd,0xcd,0xe2,0x74,0xca,0x2e,0xbe,0x3a,0x2d,0x36,0x6f, -0x6e,0x7a,0x1e,0xeb,0x5a,0xb8,0x4c,0xea,0xba,0x98,0xbd,0x2e, -0x9d,0x1e,0x25,0x6d,0xea,0x07,0x7c,0x94,0x9f,0x6c,0x0b,0xb6, -0xb8,0xcd,0xec,0xea,0x13,0x5d,0xe6,0xed,0xea,0xaa,0xbe,0x8a, -0x35,0x89,0xaf,0xa6,0xec,0x4a,0x4d,0x50,0x97,0x8f,0xe0,0x6a, -0x58,0xc1,0x95,0x98,0xc6,0x95,0x19,0x6d,0x35,0x00,0x57,0x95, -0x55,0x7d,0x62,0x95,0x39,0xd8,0x1a,0x74,0x25,0x62,0x62,0xc2, -0x25,0x5e,0x83,0xc8,0x02,0x9f,0x34,0x8a,0xac,0x3b,0x74,0xb8, -0xea,0x12,0x66,0x08,0xfe,0xf7,0xea,0xde,0x49,0x63,0x6d,0xc0, -0x3b,0x45,0x47,0xa8,0xca,0xec,0x12,0xcd,0xe4,0xc5,0x2e,0x47, -0xc8,0x26,0xee,0x7c,0xc7,0x80,0xb8,0x4a,0x9c,0x68,0x4c,0x3d, -0xdc,0x4f,0x5e,0x25,0xed,0x25,0x6f,0xeb,0x4f,0x3d,0xdc,0x28, -0x4e,0xac,0x12,0x07,0xde,0x21,0x56,0x82,0xad,0x23,0x79,0xa7, -0x4f,0x79,0xa7,0x6a,0x4c,0x0b,0xc8,0x1b,0xf3,0xe9,0x3b,0x09, -0x57,0x52,0x45,0xde,0x48,0x10,0x60,0x0e,0xb5,0x06,0x25,0x5f, -0xc6,0x4b,0xc8,0x17,0xa9,0x04,0x01,0x50,0x49,0x66,0x3b,0x0b, -0xd2,0xef,0xb4,0x50,0x0e,0xa8,0x16,0xc3,0x1e,0x98,0x5d,0x09, -0x91,0xb4,0xd4,0x45,0x78,0x8b,0x60,0x17,0xbc,0x12,0x9b,0x09, -0xaf,0x4c,0xfd,0xa7,0xf8,0x5e,0x4d,0xbb,0x85,0xcc,0x76,0x0a, -0xe9,0x77,0x8a,0xf4,0x94,0x9d,0xbc,0x33,0xd1,0x1a,0x77,0x25, -0x48,0x2b,0xc9,0x04,0xac,0x6a,0x8d,0xdb,0xfe,0xa8,0x69,0xd5, -0x4c,0x46,0x0d,0x88,0xcf,0x6a,0x82,0x38,0x13,0xe6,0x78,0x8f, -0xc2,0x7c,0xd0,0xe6,0x67,0x4a,0x93,0xed,0x27,0xc8,0xe4,0x86, -0x40,0x98,0xaa,0x09,0x0e,0x46,0x50,0x74,0x8a,0xff,0x91,0x4e, -0x71,0xe3,0xd0,0xd3,0x6c,0x8a,0x5f,0xc4,0x61,0x9b,0x7f,0x5d, -0xfc,0x3a,0x1b,0xb9,0x65,0xea,0x49,0xdb,0x9a,0xe8,0xeb,0x41, -0x9b,0x68,0x75,0x3d,0x4f,0x0f,0xa5,0xfe,0x42,0xeb,0x11,0xff, -0x09,0xeb,0x11,0xbf,0x3e,0xff,0x3a,0xaf,0xc7,0x27,0xfc,0xbd, -0xd4,0x2b,0xcd,0x92,0x7a,0x5c,0xc0,0x6c,0xb2,0x7a,0x9e,0x00, -0xdb,0x21,0xb2,0x63,0xe0,0x58,0xe2,0x9a,0x71,0x40,0xcc,0x78, -0xb6,0x6a,0x9e,0xa0,0xaf,0x69,0x4c,0xdd,0xc6,0x16,0xce,0xa7, -0x70,0x3a,0xbf,0x30,0x24,0xba,0xd9,0x74,0x86,0xfc,0x5a,0x7f, -0x2f,0x75,0x29,0xef,0x2d,0x48,0xbf,0x17,0xd6,0xbd,0x59,0xf5, -0x5e,0x1b,0x99,0xcc,0xad,0xf4,0xbd,0x52,0x17,0xbe,0x37,0x75, -0x9b,0xd8,0xa8,0x79,0x6f,0xea,0xe5,0xa1,0x17,0xf8,0x7b,0x7d, -0x64,0x4c,0x7b,0xa5,0x4d,0xba,0xf7,0xa6,0xdb,0x0b,0x9b,0x1b, -0x59,0x77,0xe0,0x02,0x49,0x57,0x9e,0x8f,0x36,0x77,0x36,0x35, -0xc7,0x5e,0xdb,0x42,0x57,0x9f,0x9b,0xbf,0x16,0xdb,0x3b,0x43, -0xda,0xbb,0x49,0x87,0x87,0x74,0x7b,0xe9,0x7b,0x49,0x6b,0x83, -0x6c,0x45,0x7f,0x8c,0x36,0x77,0x4e,0x9c,0xd5,0xbc,0xf7,0x85, -0xa1,0xd4,0xcb,0xe9,0xf7,0x4e,0x92,0x71,0x8c,0x29,0xe3,0x28, -0x2e,0x31,0x5f,0x72,0xf9,0x22,0x17,0x71,0x91,0x83,0x4d,0xbb, -0xb2,0xcc,0x77,0xb2,0x81,0x14,0x8d,0x6c,0x20,0xbd,0xb4,0xea, -0x84,0x54,0xc0,0x97,0xfa,0x72,0x75,0xa9,0xe7,0x4c,0xba,0xae, -0x20,0xdd,0x50,0xc0,0xc8,0x54,0x53,0x57,0xea,0x2f,0xca,0xe4, -0xc4,0x9a,0xa4,0x82,0x54,0x82,0xd5,0x04,0x7e,0xc2,0x0b,0xbf, -0x23,0xfb,0xd4,0xb3,0x84,0x26,0x41,0xfe,0xe2,0x8f,0x10,0x6a, -0xf4,0x2a,0xa1,0x55,0xfb,0x04,0xe5,0xde,0x10,0xde,0x7b,0x95, -0xfc,0x05,0xf7,0x7e,0x45,0xef,0x41,0xee,0x71,0xb2,0xbf,0x6d, -0x21,0xfb,0x5b,0x29,0xe0,0xd8,0xa5,0xf8,0x84,0x3d,0x01,0x29, -0x4a,0x34,0xb4,0x80,0x35,0xc5,0x4c,0xf1,0x40,0xe7,0xf2,0xf3, -0x88,0xdb,0x4f,0x53,0xc4,0x6a,0xfe,0x60,0x04,0x82,0x36,0xef, -0x79,0x55,0x59,0x48,0xef,0xdf,0xcf,0x92,0x3a,0x63,0x70,0x30, -0xab,0xf5,0x43,0xd3,0xd9,0xff,0xa6,0x23,0x41,0xf1,0xfd,0x9b, -0xce,0x4d,0x17,0x9d,0xac,0xea,0xad,0x5c,0x5f,0x21,0xdb,0xd5, -0x03,0xea,0x46,0xa6,0x7e,0x92,0x9e,0x0b,0x06,0xa1,0x5a,0x5a, -0x2d,0xdd,0x41,0x58,0x51,0x17,0x38,0x0b,0xb0,0xb8,0x74,0x74, -0x8f,0x73,0x63,0xff,0x69,0x9d,0x8a,0x97,0x00,0xb7,0xc6,0x03, -0x0f,0x56,0x5a,0xb5,0x01,0xab,0x2b,0x6b,0x19,0x6f,0xae,0x5f, -0xdd,0x56,0x3e,0xe4,0x08,0x37,0xfb,0x2a,0x5b,0x83,0x85,0xb4, -0xfe,0x3f,0x62,0x8d,0xf7,0x35,0x6c,0xec,0x8f,0xf8,0x13,0x6b, -0x1b,0x2d,0x96,0x60,0x6b,0x95,0xc3,0x17,0xeb,0x0e,0x7c,0x22, -0xdd,0x06,0x2b,0x69,0xc3,0x46,0xa5,0x0d,0x52,0xba,0x0d,0x6e, -0x3c,0x84,0x57,0xb7,0x41,0xa9,0x38,0x94,0x6e,0x0e,0x6d,0xc3, -0xbf,0x60,0x1b,0x0a,0x83,0xad,0x95,0xbe,0xe6,0xb0,0x63,0xa8, -0xbc,0x6d,0x75,0x7d,0xf3,0x78,0x4b,0x99,0xba,0x0d,0x9f,0x08, -0x74,0xc7,0x7c,0x0e,0xb2,0x58,0x2c,0x96,0xc6,0xb5,0x09,0x7f, -0xa4,0x7f,0x63,0xc3,0x7d,0xe9,0x36,0x94,0x08,0xe3,0x64,0x8e, -0x1c,0x15,0x2a,0xa0,0x0d,0x01,0xc5,0x17,0xee,0x09,0xb0,0x82, -0xd6,0xce,0x03,0xc8,0x96,0x0c,0xed,0x68,0x65,0x2e,0x13,0xb5, -0x22,0xe3,0x11,0xb0,0x92,0x5b,0x3c,0x8d,0x61,0xa7,0x33,0xdc, -0xe8,0xa9,0x19,0xeb,0x08,0x06,0x3b,0xc6,0x6a,0x6e,0xa1,0x55, -0x88,0xbf,0xc6,0x06,0x5a,0xbd,0xf5,0x7e,0x7f,0xbd,0xd7,0x3a, -0xe4,0x8a,0x8d,0x34,0xc4,0x86,0x63,0x2e,0xbe,0xe7,0x69,0xea, -0x17,0xd3,0xf5,0xc3,0x1e,0x52,0xa6,0xa2,0xb3,0x3c,0x83,0x98, -0x03,0x3c,0x33,0x4a,0xca,0xa5,0x2e,0x91,0x2d,0x92,0xd3,0xb4, -0x01,0x4a,0xc5,0x4a,0x43,0x58,0x03,0xc6,0xb1,0x7e,0x17,0xa9, -0xb3,0x61,0x24,0xe6,0x1a,0x52,0x1a,0xc2,0xeb,0xf7,0x2c,0x5c, -0x46,0x9b,0xf4,0x46,0x88,0xd4,0x5b,0xc8,0x22,0xca,0x2e,0x6a, -0xf7,0xa9,0x09,0xed,0x84,0xb2,0xa0,0x84,0x21,0x08,0x20,0x2e, -0xa3,0x44,0xe4,0x90,0x18,0x81,0x50,0x1f,0xbe,0x58,0x4c,0xa1, -0xe6,0x34,0x44,0x39,0x6d,0x3f,0x86,0xa7,0x51,0xfc,0xa3,0x01, -0x9d,0xb8,0x9d,0x87,0x6c,0x52,0xcb,0xa9,0x1e,0x31,0x5a,0xd6, -0x5a,0xed,0xa9,0x5a,0x39,0xd3,0xdb,0xbd,0x67,0xac,0x7a,0xdb, -0x58,0x64,0xc5,0x70,0x79,0x62,0x4d,0x43,0x6c,0x4d,0xab,0xaf, -0x38,0x50,0x57,0x56,0x2b,0x1b,0x87,0xa4,0x8b,0x43,0x46,0x39, -0xe8,0x6c,0x5b,0x39,0xd5,0x35,0x7c,0x6a,0x43,0x43,0xed,0xfa, -0x13,0x2b,0xa7,0xef,0xa9,0x6f,0xaa,0x79,0xe7,0x86,0x8e,0x6d, -0xfd,0x15,0x91,0xa1,0x6d,0x6d,0xf5,0xab,0x3a,0x9b,0x5c,0x61, -0xb1,0x63,0x56,0x0c,0xd0,0x7d,0x48,0xd3,0xbf,0x40,0x46,0xff, -0x62,0xd0,0x9d,0x98,0x3e,0xb7,0x1c,0xf6,0x2f,0x46,0x7a,0xd5, -0x80,0xfd,0x0b,0xa0,0x3b,0x84,0x84,0x89,0xc1,0x1a,0x94,0xc0, -0x20,0x31,0x85,0xb3,0xb0,0xca,0xe9,0x0e,0xa1,0xe6,0x21,0xdd, -0x5d,0x48,0xce,0x8b,0x4c,0x87,0x38,0x44,0x1a,0x5e,0x5b,0x56, -0x17,0x28,0xf6,0xb5,0xae,0x89,0x35,0xac,0x49,0x94,0x0f,0xaf, -0x88,0x8c,0x6d,0xab,0x1e,0xdb,0xd3,0xdd,0x3b,0xb3,0xb2,0xca, -0x53,0xdd,0x5a,0x16,0x15,0x7b,0x4e,0x89,0x01,0xf1,0x23,0xb3, -0x1d,0x62,0xd8,0xd5,0xd4,0xb9,0xaa,0xbe,0x6d,0xdb,0x50,0xa4, -0xa2,0x7f,0x5b,0xc7,0x86,0x77,0xd6,0x34,0xd5,0xdf,0x33,0xbd, -0xf2,0xc4,0xfa,0xda,0x86,0x0d,0xa7,0x86,0xbb,0xa6,0x56,0xb6, -0x39,0x83,0x04,0x19,0x2c,0xfe,0x81,0xb4,0x47,0x7c,0x41,0x7a, -0x91,0x6c,0x14,0xef,0x02,0x4d,0x0f,0xdb,0x53,0xae,0x87,0xb1, -0x73,0xa3,0xbe,0x4a,0xa0,0xf6,0xb6,0x31,0xa5,0xf0,0xbc,0x52, -0x28,0x54,0x0a,0x13,0x50,0x38,0x81,0xaa,0x2c,0x01,0xc3,0x43, -0x9a,0x2e,0x81,0x3b,0x15,0x3d,0x51,0xbc,0x1e,0x38,0x76,0x37, -0xd5,0x17,0x16,0x08,0x46,0xe6,0x71,0x63,0x27,0x25,0x10,0x64, -0x0b,0x50,0x0f,0x73,0x1d,0x44,0x2a,0x75,0xd3,0x53,0x0c,0x88, -0x46,0xa4,0x28,0xeb,0x5c,0xa8,0x85,0xc1,0xc0,0x9b,0xa7,0x3d, -0x91,0x22,0x77,0xb0,0xc0,0xe6,0x29,0x0c,0x5a,0x1b,0x42,0xea, -0x3f,0xa4,0x3d,0xc5,0x39,0x05,0x16,0x6b,0x41,0xb4,0x24,0xc8, -0x0b,0xa4,0x5f,0xef,0x93,0xf6,0x8b,0xcf,0x12,0xc9,0xa7,0x14, -0xf4,0x76,0xfa,0x7e,0x3d,0xaf,0xeb,0xd7,0xff,0xa7,0xdd,0x39, -0xe4,0x0a,0x5a,0xed,0x6e,0x6b,0x51,0x99,0x35,0x68,0xad,0x0f, -0xa8,0xff,0x90,0xf6,0x17,0x9a,0xf3,0xf2,0xb0,0x17,0xbc,0x80, -0x36,0x1b,0xd2,0xf5,0xe2,0xe3,0xd2,0xd3,0xa4,0x2b,0x43,0xd0, -0x1f,0x03,0x1a,0x82,0x08,0xcc,0x7b,0xf0,0x38,0x38,0x0d,0x9e, -0xc0,0x6e,0xc9,0x4a,0xce,0x00,0x56,0x78,0x4a,0xb9,0x55,0x84, -0x05,0x58,0x8e,0x46,0x96,0x36,0xe7,0x9c,0xe8,0x4e,0xbd,0x2c, -0x3d,0x3d,0x84,0xf3,0xe0,0x55,0x32,0x0f,0x0e,0x49,0x3f,0x82, -0xe4,0x41,0x34,0xde,0x4b,0xa1,0xc2,0xaf,0x9b,0x18,0x7f,0x29, -0x66,0x68,0x9f,0x43,0x5e,0x6f,0x88,0x7c,0xa4,0x3d,0x3e,0x67, -0x91,0xd3,0x87,0x5f,0x64,0xcf,0xb9,0x5b,0x3a,0x28,0x7e,0x85, -0xe0,0xbd,0x80,0xec,0x3e,0xf5,0xe0,0xaa,0xe0,0x65,0xca,0x06, -0x0b,0xcd,0xea,0x4c,0xf5,0x0f,0x90,0xcf,0x5c,0x28,0xa2,0x49, -0xb5,0xcd,0x2c,0xf3,0xb0,0x5d,0xf3,0xfe,0xb8,0xe6,0xaf,0xe7, -0xfd,0x1e,0x8f,0x9f,0x7c,0xee,0x61,0x57,0xe9,0xa0,0xa7,0xc4, -0x5a,0xe2,0xc9,0xf8,0x02,0x39,0xe0,0x11,0x69,0x4c,0x7c,0x55, -0xce,0x23,0x9d,0x35,0x0b,0xed,0x80,0x29,0x25,0x71,0x15,0xe8, -0x2e,0x8d,0xa8,0x2b,0x89,0x2d,0x31,0xec,0xe0,0xc7,0x44,0x9a, -0x52,0x45,0xf8,0x23,0x42,0x28,0x7f,0xd6,0xb8,0x71,0xb8,0x8d, -0x7c,0xa4,0x31,0xe7,0x85,0xe0,0xbd,0xe4,0x43,0xd7,0xcc,0x82, -0x34,0x2a,0x7e,0x4c,0xb6,0x90,0x97,0x87,0x00,0x57,0x7c,0x2c, -0xb2,0xbd,0x19,0x58,0x20,0xb2,0xc9,0xc6,0x5b,0x36,0x8e,0x4a, -0xa3,0xee,0x0b,0x21,0xf8,0xfd,0x13,0xe4,0xf7,0x57,0x29,0xbf, -0xcf,0x1c,0xcb,0x98,0x32,0x72,0x85,0x58,0x00,0x5e,0xcd,0x65, -0x7e,0x62,0x74,0x63,0x8b,0xf4,0x72,0xe8,0x82,0x1b,0xeb,0xbf, -0x55,0x5a,0x27,0x7e,0x5b,0x9a,0x27,0x23,0xb3,0xe2,0x22,0x76, -0x34,0x87,0xfe,0xde,0x40,0x43,0x6c,0x18,0x14,0xbf,0x06,0x83, -0x32,0x8f,0x0d,0xd8,0x33,0x25,0x55,0x2a,0xcc,0x67,0x88,0x50, -0x44,0x33,0x14,0x12,0x22,0x58,0x65,0x26,0x8c,0xf0,0xd5,0xc7, -0xea,0x4f,0x9f,0xae,0x3d,0x26,0xcd,0xdf,0xe9,0x3f,0x7d,0xda, -0x7f,0x27,0xad,0x67,0xb3,0xf8,0x6d,0xd9,0x48,0x1e,0x5d,0xa9, -0xa9,0x47,0xa0,0x73,0x2e,0x13,0x83,0x45,0xca,0xc2,0x41,0x2b, -0xa3,0xed,0x10,0x1d,0x85,0x9e,0x0e,0x30,0x8b,0x36,0x8a,0x58, -0x17,0xe9,0xce,0x9f,0x8f,0x35,0x9c,0x3e,0x5d,0x73,0x4c,0xda, -0xac,0xae,0x6b,0x03,0xa9,0x4b,0x20,0xac,0x54,0x35,0xe0,0xd4, -0x8d,0xc9,0xbb,0x95,0xba,0x78,0x15,0xb4,0x52,0xe0,0x73,0x8c, -0x78,0xda,0x05,0x51,0xd3,0x5d,0x10,0x36,0x1d,0x76,0x4a,0x97, -0x55,0x16,0xeb,0xa2,0x89,0x4a,0xa7,0x39,0xee,0xc8,0x2f,0xb6, -0xbb,0x6c,0x45,0x6e,0x7b,0x71,0xbe,0x23,0x6e,0x76,0x56,0x26, -0xa4,0x0d,0xe5,0xf5,0xad,0x2e,0x67,0x85,0xdd,0x5b,0x9c,0x9b, -0x5b,0xec,0xb5,0x57,0x38,0x5d,0xad,0xf5,0x90,0x33,0xe7,0x66, -0x52,0xef,0xf7,0xc0,0xe8,0x4e,0x08,0x40,0xbd,0x69,0x7f,0xb8, -0x74,0xbd,0xa0,0x6e,0xa0,0xd5,0x45,0x80,0x60,0xe2,0x2a,0x06, -0xde,0x81,0xac,0xe3,0xba,0x78,0xbf,0xdb,0xbb,0x2a,0x6a,0x09, -0xe4,0xe7,0x07,0x2c,0xd1,0x55,0x5e,0x77,0xbf,0xb4,0xa1,0xbe, -0xb1,0xc3,0x75,0xd0,0x20,0x49,0x86,0x83,0xae,0x8e,0xc6,0x7a, -0x98,0x93,0x8f,0x4b,0xfd,0xe2,0x39,0x39,0x82,0x66,0xca,0xe3, -0x17,0x31,0x5e,0x4a,0x88,0x79,0x66,0xea,0x7a,0xa8,0xdf,0x70, -0x03,0x6c,0x62,0x96,0x5d,0xa2,0x36,0x79,0x74,0xcb,0x29,0x61, -0xe7,0x7d,0x59,0x62,0xd2,0xa9,0x74,0x91,0xee,0x5a,0x7f,0x71, -0xb1,0xbf,0xd6,0xad,0x5c,0x41,0x17,0x47,0x3e,0x52,0xbf,0xcd, -0x5f,0x53,0x5a,0x5a,0xe3,0xb7,0x29,0xd7,0x26,0x9f,0xc7,0xe9, -0xf1,0xe1,0x17,0xf5,0x27,0x7d,0x5c,0x6a,0x23,0x6d,0xfe,0x22, -0x29,0x81,0xb6,0x7a,0x2f,0xa8,0x08,0x15,0x6d,0xb5,0x01,0xa3, -0xc5,0xd3,0x2b,0x6a,0xae,0xb5,0xf3,0xee,0x98,0x52,0x88,0x29, -0x85,0x75,0x4a,0xe1,0x79,0x2c,0x3c,0x2e,0xf8,0x2f,0x29,0x6a, -0x77,0xe1,0x12,0x55,0x0a,0xbb,0x69,0x77,0xc8,0x68,0xca,0x4b, -0x77,0x29,0x51,0xbd,0xba,0xfb,0xc0,0x22,0xdd,0x92,0x1b,0x3c, -0xb3,0x95,0xa9,0x7b,0x97,0xe9,0x9b,0x28,0xbc,0x2e,0xad,0x16, -0xaf,0x93,0x73,0x74,0xeb,0x37,0xfb,0xfa,0x13,0xe3,0xe6,0x90, -0xd8,0xd7,0xe3,0x3d,0x22,0xe7,0x3c,0x49,0x7f,0xff,0x25,0xa9, -0x4a,0xac,0x93,0x5e,0x22,0xf7,0x7b,0x35,0xeb,0x57,0xa4,0xbf, -0x17,0x15,0x3c,0x88,0x4a,0xf7,0x35,0x9e,0xce,0xa4,0x60,0xc5, -0x02,0xb8,0xdd,0x24,0xe2,0x7f,0xe9,0x31,0xef,0x93,0xaa,0x9e, -0x84,0xf7,0x7e,0x7f,0xa1,0x49,0x3c,0x4f,0x46,0xb6,0x4c,0x68, -0x01,0x79,0x90,0xdb,0x70,0x16,0xc5,0xc8,0x54,0xb9,0x34,0x60, -0x26,0x4d,0x2a,0x11,0xfc,0xe4,0x13,0x83,0xe1,0xdf,0x4e,0x93, -0xbf,0x98,0x2f,0xd1,0x23,0x39,0xf5,0xc1,0x05,0x61,0x24,0xc8, -0x4c,0x8d,0x9b,0x5d,0x8a,0x06,0x57,0x6c,0xaf,0x8e,0x59,0x22, -0xb9,0xe5,0x4e,0x7b,0xa9,0xa7,0xc6,0x6b,0x6f,0x2e,0x92,0xed, -0x25,0xbe,0xaa,0x62,0x7f,0xf4,0xf9,0x32,0x6b,0xb5,0xc5,0x56, -0x58,0x64,0x75,0x98,0x0c,0xd3,0xeb,0x65,0x53,0x45,0xc0,0x11, -0x28,0xc9,0x23,0x6d,0xb9,0x96,0xb4,0x65,0x00,0x83,0x83,0x87, -0x81,0xfa,0x69,0xf3,0x17,0x31,0xbe,0x0e,0x83,0x4e,0xd9,0xb0, -0x6e,0x17,0x55,0x96,0x57,0x81,0x6f,0x2c,0x46,0x35,0x03,0x32, -0xf7,0x52,0x43,0x5f,0x67,0x87,0x69,0xc0,0x5c,0x55,0xef,0x32, -0x79,0x8a,0xfc,0x8e,0x68,0x5e,0xfd,0xf3,0xd1,0x68,0xb8,0xa7, -0xac,0xd0,0x6c,0x77,0x87,0xcb,0x4a,0xcc,0x8e,0x22,0x4f,0xb5, -0xcd,0x0d,0xb2,0xd6,0xc2,0x55,0xd2,0x1e,0xe1,0xb3,0x84,0x0f, -0x31,0xcb,0x86,0xd4,0xf7,0xa9,0x6f,0xd8,0xc2,0x69,0xe9,0x7a, -0xe1,0x76,0x42,0xf3,0xcc,0x44,0x3c,0x54,0x60,0x5f,0x21,0xcf, -0xf5,0x13,0x3a,0x65,0x96,0xcd,0x1c,0x76,0x48,0x3a,0x28,0xfc, -0x23,0xa1,0x39,0x66,0x39,0x87,0xc3,0xde,0x23,0x8d,0x09,0x5f, -0x21,0x74,0xc0,0x2c,0xe7,0x72,0xd8,0x0b,0xd2,0xa8,0x70,0x92, -0xec,0xbb,0x66,0x39,0x8f,0xc3,0xee,0x22,0xb0,0x06,0x84,0x59, -0x38,0x6c,0xa7,0xb4,0x4e,0xf8,0x04,0xd9,0x5f,0xcd,0x72,0xbe, -0x0a,0xb6,0x59,0xf8,0x04,0xd9,0x0b,0xcd,0x72,0x81,0x0a,0xb6, -0x81,0xc0,0x04,0x02,0xb3,0x72,0xd8,0xed,0x52,0xbf,0x70,0x9a, -0xac,0x75,0xb3,0x5c,0x44,0x61,0x82,0xb8,0x70,0xbf,0x34,0x20, -0xec,0x20,0xef,0xb3,0x08,0xd3,0x02,0x08,0xca,0x64,0x06,0xcc, -0x11,0xba,0xc4,0x16,0x49,0x0e,0xf5,0xaf,0xbb,0x97,0x14,0x1e, -0x02,0x11,0x9d,0x86,0x47,0xca,0xa1,0x5b,0x69,0xa1,0xf2,0xdc, -0x43,0x0a,0x44,0x80,0xc2,0x49,0xf2,0x03,0x78,0xc5,0x4f,0xe0, -0x07,0x27,0xc0,0x79,0x4f,0x21,0xec,0xdc,0x2a,0xb7,0x2a,0x11, -0x4a,0x1e,0x89,0x04,0x3c,0x2e,0x77,0x43,0xe7,0x35,0xd2,0x7c, -0xc0,0xe5,0x6c,0xf1,0x95,0xbb,0xf6,0x43,0x1b,0x9f,0x93,0x56, -0x0b,0xeb,0xc9,0xfc,0x37,0xcb,0xc5,0x4a,0xbb,0x05,0x51,0xaa, -0x12,0x8e,0x91,0x39,0x6d,0x96,0xed,0x0b,0x83,0xac,0xdd,0x8f, -0x88,0xcf,0x13,0xe9,0x62,0x96,0xd4,0x11,0x10,0xb2,0x24,0x6e, -0x97,0x2f,0xd1,0x94,0x60,0x66,0x08,0xb0,0x81,0x61,0x48,0xe3, -0xad,0xf1,0xf1,0xd2,0xc8,0xb6,0x0d,0x2b,0x25,0xab,0xa7,0xb2, -0xf5,0x38,0xd4,0x75,0x61,0xa1,0x49,0xb8,0x0e,0x4e,0x64,0xe5, -0x12,0x8e,0x8f,0xaf,0x2d,0x24,0x85,0x8e,0x85,0x2f,0x91,0x29, -0x5e,0x20,0xd0,0x53,0x08,0x41,0x30,0x91,0xb6,0x3b,0x34,0x34, -0x9f,0x91,0xfa,0xfb,0xd5,0xf4,0x5d,0x5c,0x78,0x78,0xc1,0x48, -0x7e,0xfb,0x15,0x24,0x47,0x30,0x11,0x1b,0x9b,0xcc,0x64,0x7d, -0xb6,0x1c,0x59,0xd3,0xd3,0xfb,0x24,0xd4,0xb7,0x86,0xd4,0xe7, -0x04,0x5b,0x19,0xd9,0xc1,0xea,0x93,0x16,0xb6,0x92,0x31,0xfe, -0xb4,0x7c,0x33,0x81,0xba,0x84,0x3a,0x65,0xc7,0x5d,0x8c,0x03, -0x84,0x4d,0x16,0xf8,0xba,0x12,0xd2,0x2b,0x99,0x11,0x18,0xb6, -0xe3,0x5b,0x65,0x14,0x98,0xa2,0xed,0x55,0x44,0x84,0x76,0xb8, -0xab,0x83,0xc1,0x6a,0xb7,0x23,0x96,0x53,0x5a,0xd5,0xee,0x6f, -0xda,0x38,0x22,0x8d,0x96,0x55,0x37,0x39,0x5d,0x81,0x70,0x79, -0x79,0x38,0xe0,0x72,0x37,0x47,0x4b,0xdf,0xe9,0xba,0x50,0xf1, -0x57,0xd7,0xef,0x02,0xac,0x66,0xd6,0x2f,0x13,0xe2,0x29,0x56, -0xb5,0x57,0x95,0xe6,0xa4,0xeb,0x37,0xbb,0xaa,0xda,0x3f,0x32, -0xb2,0xb1,0x49,0x1a,0x2d,0x8d,0x36,0xbb,0x95,0xfa,0x9d,0x4d, -0xd5,0x65,0xa2,0xa7,0xe2,0x82,0x8b,0xd7,0xff,0x0e,0x52,0xbf, -0x5f,0x68,0xbb,0xd2,0xfa,0xbd,0x64,0x74,0xcb,0x2f,0xc1,0x51, -0x3b,0xf2,0x8b,0xba,0x96,0xa8,0xe6,0x59,0xb6,0x16,0x9d,0xb9, -0x9a,0xcd,0xbd,0x7d,0x59,0xda,0xd5,0xc4,0x67,0x23,0x8e,0xcf, -0x55,0xa4,0x7d,0xe7,0xe5,0x13,0xa4,0x7d,0xf5,0xc2,0xfe,0x2b, -0x6d,0x1f,0x46,0x20,0x9c,0x83,0x71,0x7a,0x5c,0xf0,0x5c,0x82, -0x43,0x3b,0xe0,0xc1,0x7d,0x10,0xb8,0x80,0xf2,0xe9,0x3e,0xe0, -0xd3,0x4b,0x30,0x8a,0x08,0xdc,0xa9,0x61,0x77,0x08,0x77,0x5e, -0x03,0xdc,0xb9,0xae,0x47,0x89,0xc5,0xd9,0xf5,0x2c,0xfd,0xf3, -0x73,0x19,0xc4,0xaf,0x16,0x48,0xc8,0x1f,0xfa,0xfe,0x3e,0x4e, -0x05,0x93,0xb0,0x22,0xa1,0x84,0x81,0xa5,0x17,0xe4,0x85,0x3d, -0xd2,0x46,0xe1,0xa3,0xf2,0x2d,0x90,0x6c,0x8c,0x8c,0x4c,0x8d, -0x96,0x92,0x82,0xcd,0xb5,0xe9,0x72,0x9a,0xd2,0x16,0xb3,0xf8, -0x84,0xa5,0x8c,0x8d,0x92,0x97,0x60,0x97,0xf3,0xc9,0x74,0xfc, -0x21,0x5b,0x3f,0xe7,0x15,0x96,0xf9,0x39,0x32,0x1b,0x53,0xff, -0x9d,0x9d,0x6f,0x96,0xc9,0x5e,0xb6,0x51,0x38,0x27,0x9f,0x25, -0xbc,0x5e,0x09,0x61,0x4f,0x6a,0x04,0x16,0x61,0xab,0x10,0x03, -0x6b,0x01,0xb5,0x36,0x31,0x6a,0x4d,0xd9,0x75,0x25,0x2e,0x32, -0x59,0x23,0xc8,0xd2,0x15,0x8a,0x4b,0x34,0xa7,0x6e,0xb6,0xe6, -0xf4,0xe9,0xba,0xd9,0x3b,0x33,0x5b,0xf4,0xc3,0xbb,0xca,0x4f, -0x9d,0x2a,0xbf,0xeb,0xa6,0xc5,0xda,0x74,0x45,0xf8,0x91,0xb3, -0xe0,0x47,0x5e,0xa6,0x41,0xd7,0x90,0xe5,0xb2,0x39,0xa3,0x35, -0xf2,0x3e,0xb2,0x58,0x4e,0x65,0x6f,0x0a,0x99,0xa3,0x3b,0xa5, -0x61,0xd1,0x80,0x6d,0xc9,0x13,0x12,0xca,0x2e,0x1e,0x53,0x76, -0x67,0xba,0x4d,0x53,0x04,0xe5,0xb0,0x74,0x4b,0x70,0xcd,0xbb, -0x04,0xf2,0x4e,0x0e,0x1e,0x90,0xd3,0x61,0x33,0x53,0x76,0xfb, -0x23,0x64,0x84,0xbe,0x7b,0xb4,0x8e,0x70,0xc1,0x47,0x71,0x60, -0x66,0xef,0x2a,0xbf,0xf6,0xda,0xf2,0xbb,0xe8,0x7a,0x98,0x96, -0x56,0x09,0xf7,0xca,0x27,0x21,0xd8,0xb9,0xc0,0xf9,0x7a,0xce, -0x4d,0x15,0x32,0x26,0x4a,0xcb,0xce,0x1b,0x98,0x6d,0x32,0xb0, -0x03,0x36,0xba,0x64,0xb1,0xa6,0x3e,0x31,0x73,0x9e,0x37,0x1c, -0xaf,0xb8,0xfe,0xfa,0xc0,0xf1,0x86,0x48,0x5b,0x25,0xd9,0xc6, -0x4a,0x4a,0x6a,0x7d,0xbe,0xda,0x92,0x12,0x32,0xa9,0x2b,0xdb, -0xa4,0x7f,0xdf,0x57,0xb1,0x79,0x73,0xc5,0x3e,0xb7,0x33,0x58, -0x5d,0xec,0xf2,0x95,0x17,0x17,0x97,0xfb,0x5c,0xc5,0xd5,0x41, -0x27,0xb6,0x2b,0xf5,0x86,0x34,0x4c,0xe6,0xc8,0x72,0x38,0x90, -0xb3,0xe2,0x20,0x8f,0x25,0x19,0x01,0x5d,0x68,0x82,0xe2,0x20, -0xf5,0x06,0x19,0x86,0x6f,0x51,0x24,0x20,0xf6,0x6b,0x39,0x12, -0x10,0xdf,0xc2,0xcb,0xf2,0x19,0x32,0xc8,0xc5,0xc2,0xa8,0xc0, -0xe2,0x65,0xc7,0x20,0x5e,0x36,0xad,0xab,0x08,0xeb,0x2a,0xbe, -0x04,0x4a,0xa7,0x62,0x3c,0x0c,0x81,0x23,0xc3,0x62,0x14,0x5b, -0xaf,0x83,0xa6,0xb9,0xd3,0x54,0x11,0x02,0x12,0xc2,0x66,0x01, -0xe7,0x2e,0xe9,0x5d,0x8b,0x8d,0x44,0x2b,0x27,0x92,0x32,0x6b, -0xca,0x19,0x65,0x77,0x5a,0xcb,0xdb,0xa3,0xcc,0xc5,0x0e,0x36, -0x17,0x1b,0x17,0x99,0x8b,0xbc,0x42,0xdd,0x8c,0x24,0xf2,0xb6, -0x6b,0x89,0x19,0x79,0x1b,0xc8,0xe2,0xd5,0x99,0x53,0xb2,0x63, -0xe8,0xdc,0x22,0x72,0x2e,0xd9,0x33,0x87,0xc9,0x9e,0x79,0x9d, -0x50,0x4a,0x68,0xf3,0x21,0x01,0x4c,0x91,0x10,0x3f,0xe5,0x0a, -0x7e,0xca,0x11,0x3f,0x01,0x32,0x16,0x05,0xe4,0x63,0xe7,0x0d, -0x2b,0xc0,0x10,0xe9,0xc6,0xcb,0x69,0x95,0xc6,0x75,0xa8,0xd2, -0xb8,0x88,0x54,0xb3,0x80,0x6e,0x9d,0x4e,0xc0,0x5e,0x39,0x2e, -0x70,0xd8,0x52,0xcb,0x99,0x4e,0xce,0x47,0xa8,0xad,0xac,0xde, -0x18,0x43,0xea,0x2d,0x13,0x94,0x99,0x04,0x9f,0xab,0x16,0xdd, -0x18,0x3f,0xc6,0xf0,0x7b,0x9d,0x7e,0x3b,0x7c,0xff,0xbb,0xcb, -0x8f,0x1d,0x2b,0x7f,0x37,0xe8,0xa3,0x64,0xab,0xf8,0x82,0x7c, -0x23,0xe9,0xd7,0x7e,0x95,0xde,0x46,0x4b,0x13,0x8c,0x84,0x93, -0x16,0x08,0xc3,0x24,0x50,0x66,0x49,0xf8,0xff,0x43,0xed,0x24, -0x5b,0xb3,0xa8,0x9d,0x40,0xef,0x24,0x17,0x8b,0xcf,0x92,0x79, -0xfb,0x57,0xb7,0x9f,0x3a,0xb1,0x2d,0xdd,0x7e,0x3a,0x50,0x6f, -0x49,0xcf,0x24,0x17,0x2f,0xa2,0x67,0x92,0xab,0xc4,0xc7,0xe5, -0x43,0xa4,0xe9,0x83,0x99,0xba,0x09,0x60,0x39,0x65,0xc2,0x72, -0xca,0xb4,0xd9,0x4c,0xc5,0x64,0x44,0x15,0x13,0xdc,0x91,0x4e, -0x28,0x50,0xbd,0x9a,0x49,0x3e,0xc4,0xf4,0x8d,0xaf,0x92,0xf1, -0x3d,0x24,0xdf,0x44,0x3a,0xd5,0xa6,0xd2,0x33,0x31,0xfc,0x08, -0x8a,0x06,0x61,0x4e,0x41,0xd4,0x4e,0x52,0x38,0x8e,0x88,0x82, -0x03,0x1f,0xd3,0xe5,0x45,0xd5,0x50,0xb2,0x55,0xa5,0x86,0x02, -0x3d,0x94,0x5c,0x22,0x7e,0x85,0x8c,0x43,0x01,0xf5,0x88,0xd3, -0xe9,0xa1,0xb0,0x46,0xf5,0xfb,0x49,0xad,0xe7,0x14,0x4e,0x83, -0xb7,0x83,0x2a,0x85,0x68,0xd5,0x6f,0x4d,0x63,0x25,0x97,0x2c, -0x42,0x5a,0x50,0x67,0x75,0x59,0x7c,0x55,0x7e,0x14,0x79,0xda, -0xd8,0x15,0xe8,0xac,0xe6,0x98,0x7e,0x25,0xab,0xaa,0xea,0xb2, -0xa2,0xaa,0x02,0x3d,0xd5,0xeb,0xe2,0xc7,0xe4,0x2f,0x2c,0xa3, -0xa7,0x9a,0xd3,0xe9,0xa9,0x5e,0xe7,0x7a,0xaa,0xd7,0xc5,0xab, -0x94,0xdf,0x2f,0xaa,0xa7,0x9a,0xcb,0xd0,0x53,0xc9,0xef,0x4b, -0xeb,0xa9,0xfe,0x24,0x7e,0x5b,0x3e,0x4f,0x96,0x64,0x87,0x5e, -0x4f,0xc5,0xe9,0xd9,0x5c,0x56,0x7a,0xb6,0x88,0x7a,0x4a,0x3e, -0xaf,0xa8,0x8c,0xe0,0xfd,0xb2,0x48,0xde,0xff,0x10,0x79,0xb6, -0x47,0xaf,0x9f,0xda,0xa9,0xe3,0x1f,0xe7,0x94,0xc2,0x39,0xae, -0x9f,0xca,0xd0,0x4a,0xd1,0x2a,0x44,0x5e,0x05,0xf6,0x61,0x9e, -0xd4,0x71,0x81,0x70,0xee,0x5d,0x7a,0xbd,0xd4,0xe3,0xba,0x3a, -0xce,0x69,0x2b,0xfb,0x6b,0x34,0x55,0xf3,0x59,0x35,0x55,0x02, -0xea,0xaa,0xe6,0xc5,0xef,0x91,0xb6,0xd8,0xa8,0x8e,0x4c,0xab, -0xab,0x8a,0x65,0xd6,0xfc,0x66,0x94,0x56,0xf3,0x19,0x4a,0x2b, -0xd0,0x59,0xfd,0x4a,0x3c,0x27,0xcf,0xa1,0xce,0x6a,0x77,0x76, -0x9d,0xd5,0x0d,0xca,0x2a,0xd9,0xa1,0x54,0x7d,0xaf,0xb2,0x6c, -0xc1,0x4e,0x30,0xa6,0x2c,0xab,0x7e,0xe5,0x39,0xe1,0x7f,0x41, -0x93,0xf5,0xab,0x25,0xb5,0x3d,0xa0,0xc7,0xfa,0x89,0x78,0xce, -0xb0,0x83,0xe9,0xb1,0xa6,0x97,0xd7,0x63,0xed,0xd0,0x2a,0xab, -0xb0,0x33,0x06,0x9c,0xad,0x12,0xed,0xe2,0x5b,0x56,0x61,0x75, -0xc6,0x46,0x47,0x8e,0x2e,0xa6,0xc2,0xfa,0x4f,0xfb,0x89,0xd2, -0xd4,0x47,0x96,0xea,0x14,0xe8,0x13,0x7e,0x2d,0xec,0x20,0xeb, -0xca,0x22,0xf4,0x64,0x9c,0xbe,0x97,0x63,0x10,0x9c,0x7b,0x15, -0x96,0x6c,0x87,0xa2,0x5c,0xf0,0x93,0x42,0x0c,0x95,0x0b,0xcb, -0xeb,0x0a,0xe4,0xf3,0x69,0xe9,0x0c,0x64,0xc7,0xd7,0x85,0x4f, -0x1b,0x62,0x28,0xbb,0x86,0x16,0x9d,0x6b,0x7f,0xad,0xc8,0xfc, -0x7a,0x76,0x91,0xf9,0x4d,0xd6,0xfb,0xe6,0x45,0xe5,0xd7,0xb3, -0x8b,0xca,0xbc,0xde,0x30,0xc1,0xad,0x9f,0x48,0xa3,0x18,0x6d, -0x1b,0xea,0xcd,0x57,0xea,0xa5,0x91,0xb6,0x9d,0x58,0x2f,0x44, -0x21,0xcd,0x8e,0x4d,0x57,0x66,0x6b,0x36,0x72,0x71,0x78,0x53, -0x96,0x36,0x19,0xc2,0x0a,0xca,0x2f,0x67,0x36,0x8c,0xf2,0x7a, -0xaf,0x0b,0xe7,0x0d,0x65,0x84,0xa7,0xa8,0x17,0x76,0x0b,0xcc, -0x47,0x2f,0x06,0x3e,0x7a,0xb4,0x4d,0x1e,0x6c,0x53,0x18,0xdb, -0x04,0x1c,0x5f,0x74,0x8e,0xce,0xca,0x2b,0x67,0x28,0xb4,0x0c, -0x91,0x7d,0x51,0x86,0xc2,0x9c,0xd9,0xaf,0xc5,0xb9,0xbd,0x83, -0x59,0xfa,0x29,0x7f,0x4e,0xcf,0xfa,0x3d,0xae,0xef,0x31,0xe5, -0xb7,0x17,0x84,0x8f,0x1a,0xe2,0x8c,0xdf,0x1e,0x56,0x56,0xe7, -0x9c,0x4e,0xb9,0x7c,0x4e,0x29,0xec,0xfc,0x5f,0x11,0x9b,0xe5, -0x93,0x4b,0x88,0xcd,0x28,0x37,0x2f,0x08,0xe7,0x0c,0x4d,0x4c, -0x6e,0x1e,0x56,0xe4,0xe6,0x39,0x25,0x32,0x75,0x4c,0x29,0x9c, -0x53,0x0a,0x3b,0xff,0x36,0x22,0x35,0xf0,0xd2,0x3a,0x91,0x5a, -0xfe,0xfb,0x25,0x45,0xea,0xbf,0x01,0x5e,0xff,0x56,0xe2,0xb6, -0xc1,0xb6,0x84,0xb8,0x8d,0xf2,0xdf,0x6f,0x44,0x03,0xb6,0x33, -0x9b,0xac,0x39,0xb7,0xa4,0xbc,0xad,0xc8,0x9a,0xd9,0xe5,0x6d, -0x1c,0xd1,0x0c,0x79,0xfb,0x7f,0x84,0x7b,0x0d,0xde,0x45,0xe4, -0xed,0xa5,0xf8,0x93,0xb7,0x28,0x6f,0xcb,0xef,0x5c,0x46,0xde, -0xfe,0x0d,0x99,0x5b,0xcb,0xe1,0xe0,0xaf,0x92,0xb7,0x11,0xfd, -0x5a,0x79,0xfb,0x37,0xc2,0xcb,0x86,0x28,0xca,0xdb,0x2b,0x51, -0xde,0x06,0x5b,0x1e,0x23,0x9e,0xfd,0xaa,0x25,0xef,0x39,0x26, -0x79,0x83,0x44,0x0d,0xd2,0x77,0x0e,0x93,0xbe,0x15,0x19,0x3b, -0x2d,0x8f,0x5f,0x99,0xb4,0x6d,0x88,0x66,0x4a,0xdb,0x6c,0x8e, -0xca,0x3f,0x63,0x73,0x74,0xc5,0x22,0x23,0xa2,0x9f,0x9a,0x7f, -0x63,0xe9,0xfb,0x67,0x8b,0x49,0xdf,0x74,0x4f,0xfe,0x0d,0xd9, -0x93,0x23,0x28,0x7f,0xef,0x5d,0x44,0xfe,0xc6,0xa6,0x5e,0x89, -0x20,0x4e,0xb7,0xe8,0xa5,0x05,0xf1,0xbf,0x85,0xe8,0x6d,0x88, -0x2c,0x2e,0x7a,0x93,0xdd,0x6b,0xed,0x42,0x58,0xca,0x93,0x21, -0x26,0xa6,0x1d,0xc3,0x58,0x57,0x08,0xd5,0x42,0xab,0x30,0x40, -0x76,0x89,0x51,0x61,0x5c,0x58,0x2f,0x6c,0x14,0xae,0x12,0xb6, -0x0b,0xd3,0xc2,0x8c,0x70,0x40,0x38,0x22,0x9c,0x10,0x4e,0x0b, -0x6f,0x17,0xae,0x17,0xde,0x25,0xdc,0x2c,0xdc,0x22,0xdc,0x2e, -0xfc,0x83,0xf0,0x41,0xe1,0x43,0xc2,0x27,0x85,0x87,0x85,0x2f, -0x0a,0xdf,0x90,0x4a,0x2f,0x0a,0x77,0x08,0xdf,0x14,0xbe,0x85, -0x53,0xe3,0x0e,0xd2,0x83,0x3b,0xe6,0x68,0x8c,0x50,0x28,0x17, -0xb1,0xab,0x83,0x5d,0x4b,0xd9,0xd5,0xcb,0xae,0x21,0x76,0xad, -0x67,0xd7,0x3e,0x76,0x1d,0x66,0xd7,0x11,0x76,0x1d,0x67,0xd7, -0xb5,0xec,0x3a,0xc9,0xae,0x57,0xb1,0xeb,0x14,0xbb,0xee,0x60, -0xd7,0x3d,0xec,0xba,0x8f,0x5d,0x8f,0xb0,0xeb,0x31,0x76,0xbd, -0x96,0x5d,0xaf,0x63,0xd7,0x9b,0xd8,0xf5,0x16,0x76,0xbd,0x95, -0x5d,0xef,0x62,0xd7,0x0f,0xb2,0xeb,0x87,0xd8,0xf5,0x13,0xec, -0xfa,0x19,0x76,0x7d,0x94,0x5d,0x9f,0x04,0xbb,0x87,0x67,0x08, -0x76,0xe4,0x5a,0x60,0x40,0x3f,0x24,0x3c,0x83,0xfa,0xaa,0x22, -0x5e,0xf2,0xf3,0x52,0x80,0x97,0x22,0xbc,0x54,0xc5,0x4b,0xc3, -0xbc,0x34,0xc2,0x4b,0xe3,0xbc,0xb4,0x96,0x97,0x26,0x79,0xe9, -0x2a,0x56,0x22,0x8d,0x24,0x0d,0xd9,0x35,0x47,0xaf,0x7b,0xc9, -0x3a,0x3d,0xc8,0x9f,0x39,0xc4,0x4b,0xef,0xe6,0xa5,0xb3,0xbc, -0x74,0x2b,0x2f,0xdd,0xce,0x4b,0x77,0xf0,0xd2,0x5d,0xbc,0xf4, -0x3e,0x5e,0x7a,0x3f,0x2f,0x3d,0xc5,0x4b,0xcf,0xb1,0x52,0x63, -0x53,0x25,0x48,0x24,0x2e,0xd8,0x18,0x82,0x70,0x68,0xd8,0x27, -0x12,0x99,0x04,0x52,0x26,0x83,0x2f,0x90,0x99,0xcc,0xea,0xb8, -0x55,0x84,0x99,0x1e,0xea,0x15,0x13,0x2a,0x4f,0x48,0x95,0x43, -0x8a,0x49,0x6e,0x8d,0xbb,0xe2,0x89,0xb8,0xa3,0x92,0x5d,0xcd, -0x09,0xfc,0xb1,0xcb,0xdc,0x4a,0xd3,0xe2,0x19,0xd9,0xb5,0x2a, -0x6e,0x0e,0xe1,0x95,0x7c,0xcc,0xec,0xaa,0x94,0x13,0xe4,0x1e, -0xe4,0x9f,0x6d,0x4a,0xc4,0x0b,0xe1,0x84,0xd7,0x15,0x37,0xcb, -0xaa,0xba,0xaa,0x30,0x33,0x13,0x0d,0x83,0xc8,0x56,0x1b,0xb2, -0x42,0x55,0x64,0xc1,0xb5,0x52,0xa6,0xc8,0xd1,0x20,0x8a,0xdf, -0x2d,0xf1,0x19,0x23,0x6f,0x2f,0x0b,0xa6,0x3e,0xe6,0x0a,0x96, -0xbd,0x3d,0x62,0xf4,0x5d,0xfa,0x00,0xf9,0x6f,0xac,0x24,0x94, -0x7b,0x43,0x6e,0xa8,0x84,0x5e,0x7a,0xad,0x76,0xbb,0x95,0x7c, -0x76,0xb1,0xeb,0xdb,0x66,0xcd,0xcd,0xe6,0xd9,0xd4,0x8b,0xfb, -0x4d,0x6b,0x4c,0xfb,0xcf,0x9a,0xa6,0xfe,0x6b,0xca,0x74,0x76, -0xfb,0xd1,0xed,0xa9,0x17,0xc9,0xd7,0x97,0x37,0x99,0xc6,0xa6, -0xda,0xe1,0xbf,0xff,0xc2,0x6f,0x77,0xaf,0xb9,0xb1,0xd4,0xd4, -0x68,0x36,0x37,0x9a,0x06,0xc3,0x26,0xb7,0x29,0xdf,0x54,0xe9, -0x28,0x2a,0x72,0xc0,0xa7,0xa1,0x31,0x14,0x6a,0x84,0xcf,0x2f, -0x8a,0x27,0x9a,0x9b,0x27,0x8a,0xf1,0xfb,0xc6,0x9a,0x55,0xa5, -0x8e,0xd1,0xfa,0xfa,0x51,0x47,0xe9,0xaa,0x73,0xae,0x92,0x3b, -0x26,0xed,0x3e,0x57,0x20,0xe0,0xf2,0xd9,0x27,0xef,0x28,0x71, -0x4d,0x55,0x1e,0xab,0x3c,0x56,0x62,0xb3,0x95,0x88,0x32,0x7c, -0xe7,0x15,0x5b,0xad,0xc5,0xea,0x4f,0xea,0x76,0x3b,0xf9,0xaf, -0x12,0xbe,0xc6,0xe0,0xeb,0x03,0xfc,0xcf,0x1b,0x69,0x61,0x0c, -0xbf,0x2b,0xd9,0x6d,0xfc,0x9a,0xb2,0x17,0xdb,0xe5,0x08,0x6d, -0x91,0xa3,0x88,0x36,0xa8,0x31,0x54,0xdf,0xd1,0x51,0x4f,0x3e, -0xfb,0xc2,0x3e,0x6f,0xa4,0xbe,0x3e,0xe2,0xf5,0x85,0x51,0xf6, -0xab,0x12,0x7f,0x84,0x96,0xb3,0xf0,0x5f,0x3d,0xb3,0xa2,0x85, -0xef,0x02,0xf2,0x17,0x2d,0x83,0x7d,0x72,0x27,0x2b,0x43,0x62, -0xb2,0x01,0x56,0x36,0xa8,0x9e,0x31,0x92,0xf2,0x66,0x56,0x36, -0x91,0xad,0x7f,0x0f,0x2b,0x9b,0xc9,0x0e,0x75,0x8c,0x95,0x73, -0x08,0xfc,0x29,0x56,0xce,0x15,0xe2,0x64,0x23,0xa2,0x65,0xf0, -0xe0,0x4d,0xb1,0x72,0xbe,0x50,0x2c,0xba,0x58,0xb9,0x40,0xb8, -0x4b,0xac,0x66,0x65,0xab,0xe0,0x11,0xff,0x95,0x96,0xc9,0x57, -0xb1,0xf8,0x3d,0x56,0x16,0x49,0xf9,0xff,0xb0,0xb2,0x24,0xd8, -0xc5,0x3f,0xb0,0x32,0xa1,0x52,0x52,0x1e,0x2b,0x1b,0x04,0x8f, -0x54,0x06,0xfa,0x10,0x03,0x6c,0xea,0x5b,0xa5,0x56,0x56,0x16, -0x09,0xfc,0x4e,0x56,0x96,0x04,0xab,0xf4,0x59,0x56,0x96,0x85, -0x3a,0xe9,0x5f,0x58,0xd9,0xa0,0x7a,0xc6,0x48,0xca,0x3f,0x63, -0x65,0x93,0xe0,0x94,0xe6,0x59,0xd9,0x2c,0x7c,0x42,0xb6,0xb3, -0x72,0x8e,0xe0,0x44,0xdd,0x0c,0x94,0x73,0x85,0xbd,0xf2,0x37, -0x59,0xd9,0x22,0x34,0x13,0x7e,0x94,0x96,0xf3,0x85,0xb0,0x61, -0x37,0x2b,0x17,0x88,0x01,0xc3,0x59,0x56,0xb6,0x0a,0x2d,0xc6, -0xf3,0xac,0x6c,0x17,0x66,0x8d,0xff,0x49,0xcb,0xa4,0x13,0x61, -0xd3,0x3a,0x56,0x16,0x49,0xf9,0x14,0x2b,0x4b,0x42,0xc4,0xf4, -0x8f,0xac,0x2c,0x0b,0x15,0xa6,0x27,0x59,0xd9,0x20,0xb4,0x98, -0x7e,0x3c,0x78,0xec,0xf8,0xdb,0x4f,0x1e,0xd8,0xb7,0x7f,0x36, -0xd0,0xdc,0xd8,0x94,0x08,0x8c,0xae,0x18,0x0f,0x0c,0x1e,0x3b, -0x79,0xbc,0x21,0x30,0x70,0xf8,0x70,0x00,0x6f,0x9c,0x0a,0x9c, -0x9c,0x39,0x35,0x73,0xf2,0x9a,0x99,0x3d,0x0d,0x70,0x77,0xe2, -0xf0,0xcc,0xdb,0x02,0xe3,0xc7,0x8e,0x1e,0x9b,0x9c,0xd9,0x77, -0xfa,0xf0,0xf4,0xc9,0xe6,0x86,0xc6,0xc6,0xc6,0x2e,0xb8,0x03, -0x5f,0x70,0x17,0x6e,0x6e,0x9a,0x39,0x79,0xea,0xc0,0xb1,0xa3, -0x01,0xbc,0xab,0x82,0x2b,0x6f,0xb8,0x10,0x38,0x70,0x2a,0x30, -0x1d,0x98,0x3d,0x39,0xbd,0x67,0xe6,0xc8,0xf4,0xc9,0x43,0x81, -0x63,0x7b,0x79,0xdd,0x75,0xa4,0xc2,0x7d,0x07,0x4e,0xcd,0xce, -0x9c,0x9c,0xd9,0x13,0x38,0x70,0x34,0x70,0x64,0xfa,0xe8,0xdb, -0x03,0x07,0x4f,0x9f,0x3c,0x70,0x6a,0xcf,0x81,0xdd,0xb3,0xe4, -0xad,0xa7,0x02,0xd7,0x1e,0x3b,0x79,0x78,0xcf,0xb5,0x07,0xf6, -0xcc,0x34,0xac,0x38,0x76,0x78,0x0f,0x34,0x67,0xcf,0xf4,0xdb, -0xc7,0x0f,0x1c,0x9a,0x09,0x0c,0xec,0xda,0x75,0xe0,0xe8,0xa1, -0xba,0xc0,0xc4,0xf4,0xe9,0xc3,0x81,0x6b,0xa6,0x8f,0x06,0xf6, -0xcc,0x9c,0x0c,0xac,0x99,0x9e,0x3e,0x4a,0x40,0x07,0x66,0xc8, -0x3b,0x11,0x38,0x79,0xec,0xd4,0x91,0xe9,0xc3,0x33,0x47,0xf7, -0xcf,0xce,0x1e,0xef,0x8c,0xc5,0xae,0xbd,0xf6,0xda,0x86,0x5d, -0xe4,0x45,0x47,0xf0,0x3d,0x0d,0xbb,0x8f,0x1d,0x51,0xdd,0x38, -0xb0,0xeb,0x08,0x40,0x92,0xfb,0x49,0x8b,0x47,0x8e,0x1d,0x9d, -0x0d,0x6c,0x38,0xb6,0x77,0xf6,0xda,0xe9,0x93,0x33,0xd0,0x85, -0xc3,0x07,0x76,0xcf,0x1c,0x3d,0x45,0xda,0x79,0xfa,0x28,0x54, -0x34,0xbb,0x7f,0x26,0xb0,0x61,0x74,0x4d,0x60,0xdd,0xf1,0x99, -0xa3,0xf4,0xe1,0x35,0xf4,0x81,0xba,0x80,0x82,0x91,0xa6,0x86, -0xa6,0x86,0x00,0xbe,0x8c,0xfd,0x16,0x31,0x71,0xcd,0xf4,0x81, -0xc3,0xd3,0xbb,0x0e,0xcf,0x04,0xae,0x3d,0x30,0xbb,0x9f,0x20, -0x66,0x64,0x60,0x7d,0x60,0x7a,0xb6,0x33,0xc0,0xda,0x71,0x6a, -0xf7,0xc9,0x03,0xc7,0x67,0x4f,0x35,0x9c,0x3a,0x70,0xb8,0xe1, -0xd8,0xc9,0x7d,0xb1,0x75,0x23,0x6b,0x16,0xbf,0x73,0xea,0xc0, -0x91,0xe3,0xe4,0x4d,0x87,0x8f,0x5d,0x3b,0x73,0x72,0xf7,0x34, -0xa9,0x60,0x5a,0x07,0xd9,0x77,0xea,0xf0,0xf4,0xa9,0xfd,0xa4, -0xd9,0x47,0x4f,0x1f,0xd9,0x45,0xda,0xfd,0x8e,0x99,0x93,0xc7, -0x8e,0x1f,0x9e,0x26,0xc8,0x56,0x01,0xa6,0x0f,0x13,0x74,0x1d, -0x9d,0x9e,0x55,0xff,0x70,0xe6,0xd4,0x3b,0x66,0x66,0x67,0x85, -0x41,0xb2,0x58,0x8f,0x13,0x06,0xe2,0x24,0x61,0x26,0xf6,0x09, -0xfb,0x85,0x59,0x42,0xfa,0x9a,0x85,0x46,0xa1,0x89,0xb0,0xba, -0x01,0xc2,0x70,0xac,0x20,0x84,0x2d,0x80,0x4f,0x9d,0x24,0xcf, -0x35,0x90,0xf2,0x80,0x70,0x98,0xfc,0x0b,0xa8,0x7e,0x71,0x0a, -0xff,0x9a,0x21,0xd7,0x19,0x72,0xbd,0x86,0x7c,0xef,0x21,0x4f, -0x2a,0xbf,0x9d,0x20,0x4f,0xcf,0x08,0x6f,0x23,0xa5,0x71,0xf2, -0x96,0xa3,0xe4,0x33,0x49,0xfe,0xde,0x47,0xd8,0x96,0xc3,0x84, -0x89,0x39,0x49,0x6a,0x6b,0x20,0xf5,0xc1,0xbf,0x2e,0xfe,0x1b, -0xa5,0xa4,0xfc,0x56,0xf9,0xe5,0x26,0xac,0xe1,0x14,0xa9,0x19, -0xfe,0x0e,0xa8,0x7e,0x9b,0xfd,0xf9,0x8c,0x36,0x04,0x2b,0x48, -0xf9,0x00,0xb6,0x77,0x9a,0x7c,0x66,0xc9,0xbb,0xa6,0x49,0x5b, -0x67,0x08,0x1b,0x05,0x2d,0x39,0x44,0x60,0xc7,0x08,0x1b,0xa9, -0xef,0x77,0x1d,0xeb,0xe1,0x3e,0xfc,0xf5,0x2c,0xb6,0x02,0x7a, -0x09,0x6f,0x83,0x76,0xc0,0xef,0x8f,0x12,0x2c,0x06,0x08,0x39, -0x3f,0x8d,0x98,0x39,0x45,0xee,0x1e,0x10,0x76,0x93,0x67,0x69, -0x5b,0xa1,0xce,0x6b,0xf1,0x6d,0x87,0xc9,0x9d,0x6b,0x09,0x14, -0xea,0x6d,0x20,0xf5,0x1c,0x43,0x88,0x82,0x9d,0x3d,0xe4,0x4d, -0x6f,0x27,0xe5,0x03,0xa4,0x35,0x33,0x88,0xed,0x5d,0xe4,0x1f, -0xd4,0x72,0x08,0x5b,0x31,0x41,0xee,0x9f,0x46,0xfc,0x5f,0x83, -0x75,0x06,0xf0,0x3d,0x27,0xc9,0x75,0x0d,0xf9,0x1b,0x20,0xf4, -0xa9,0x03,0x04,0x3a,0xcb,0xee,0x28,0x4f,0x4e,0x92,0x1a,0x4e, -0x61,0x5b,0x01,0x1b,0x47,0x71,0xec,0x66,0x49,0xef,0x3a,0x09, -0xc7,0x1c,0x23,0x6d,0x82,0x7f,0x0d,0xa4,0x36,0xda,0xa2,0x23, -0xaa,0xf6,0x34,0x90,0x9e,0x1c,0x23,0x90,0xec,0xbf,0x38,0x40, -0x7e,0x73,0x84,0x3f,0x93,0x24,0x4f,0x51,0x1c,0x8f,0xe0,0x1b, -0x60,0x46,0x6d,0x40,0xbc,0xce,0x92,0xa7,0xa7,0x11,0x73,0xca, -0x28,0x1c,0x46,0x1c,0xcd,0x20,0x7e,0xfe,0x6f,0x6f,0x4f,0x1e, -0x27,0x57,0x51,0x74,0x55,0xf5,0xec,0x6c,0xb2,0x47,0xb2,0x59, -0x02,0xe4,0xdc,0x6c,0x0e,0x72,0x13,0xe6,0xdc,0xdd,0x21,0xe7, -0x9c,0x39,0x08,0x89,0xe4,0x20,0x21,0x22,0x38,0xd9,0x6c,0x36, -0x9b,0xdd,0x9d,0x8d,0x7b,0x10,0x88,0x08,0x08,0xa8,0x21,0xca, -0x21,0x62,0xd0,0x88,0x18,0x51,0x01,0x11,0x11,0x11,0x11,0x51, -0x51,0x30,0xdc,0x47,0xb8,0x6f,0xc2,0x61,0x20,0x88,0x8a,0x8a, -0xc8,0x07,0xe1,0xfa,0xaa,0xab,0xeb,0xed,0xbc,0x49,0xf0,0xf3, -0xa7,0x7f,0x7c,0x3b,0xbf,0xad,0x7a,0xdd,0x5d,0x5d,0x55,0x5d, -0xd5,0x5d,0xaf,0xfa,0xcd,0x9b,0xf7,0x9c,0x3d,0xfb,0x44,0xa6, -0xd3,0xbb,0x97,0x39,0xb5,0x48,0xef,0x85,0x3c,0xba,0x7a,0x58, -0xca,0x92,0x5b,0x64,0x24,0x45,0xce,0x8b,0x4b,0x38,0xd8,0xb1, -0x1f,0x38,0x47,0xc2,0xac,0x59,0x58,0x66,0x6e,0x51,0xb3,0x52, -0xb9,0xc5,0x39,0x61,0x2d,0xd5,0x26,0xf3,0x72,0xad,0xd8,0xa8, -0x5e,0x3c,0x65,0xf5,0x70,0x33,0x26,0xc7,0xfe,0x38,0x4e,0x8e, -0x7b,0xd9,0x06,0xf5,0x07,0xd8,0xa3,0x87,0x79,0x5a,0xdf,0x6f, -0x92,0x35,0x31,0x43,0x74,0xe8,0x60,0x6c,0xbd,0xde,0xca,0xed, -0x4b,0xb9,0xff,0xe2,0xff,0xaa,0xcf,0x02,0x2e,0x6f,0x96,0x39, -0x98,0x87,0x2d,0xd2,0xb6,0x96,0x8f,0x9a,0x79,0x4e,0x1c,0x29, -0x33,0xae,0x93,0xfb,0xdb,0x39,0xd2,0x2a,0xdb,0xa0,0x6e,0xa6, -0x68,0x95,0x11,0x35,0xab,0xe7,0xed,0x58,0xec,0xba,0xb4,0xf3, -0xc6,0x4a,0xb0,0xab,0xd1,0xf6,0xb0,0x9b,0x07,0x67,0xf7,0x56, -0xf6,0x72,0x27,0xd3,0xe6,0x65,0x7e,0xf7,0xc0,0x58,0xa1,0xb3, -0x7c,0x9d,0x1d,0x3a,0x44,0x03,0x6b,0xd9,0x66,0xa1,0x69,0x11, -0x2b,0xfc,0x7b,0x1a,0xab,0x47,0x87,0x94,0x36,0xa8,0xa4,0x82, -0xe8,0xbb,0x56,0x7d,0xbc,0x45,0x70,0x97,0xf0,0xc8,0xeb,0x6a, -0xfa,0x78,0x0a,0x3b,0x6b,0xdd,0x8c,0x2e,0x88,0xfd,0xff,0x95, -0x44,0x1b,0x87,0xb6,0xc8,0xec,0xef,0x75,0xb9,0x8c,0xfc,0x7d, -0xd4,0x6b,0x9f,0x5f,0xdf,0x9f,0xf7,0xf4,0xff,0x99,0x15,0x92, -0x54,0x90,0xbd,0xa3,0x9b,0xcf,0xa9,0x59,0x36,0xf7,0x7c,0x36, -0xf7,0x42,0x58,0x84,0x01,0x2c,0x83,0x63,0xd8,0xf8,0xc7,0x72, -0x46,0xbf,0x94,0x97,0xd4,0x71,0xbc,0x80,0x96,0xf3,0x24,0x5a, -0xc9,0x53,0x6c,0x15,0xac,0xe6,0x9c,0x7e,0x0d,0x7c,0x12,0x4e, -0xe4,0xbd,0xd8,0x04,0xfb,0xa3,0x17,0xde,0x1f,0x4c,0xe6,0x9d, -0xda,0x54,0xfb,0x70,0x0a,0x76,0xcb,0x0c,0xfb,0x02,0x30,0xfb, -0x43,0x05,0xce,0x7b,0x62,0xbc,0x7f,0x6b,0xe0,0x80,0xda,0x04, -0x09,0x76,0xfb,0x4c,0xd6,0x64,0x36,0x67,0x2e,0x41,0x2c,0x87, -0xa1,0x70,0xa8,0x7d,0xa9,0x82,0xfd,0x42,0xc3,0x7e,0x49,0x09, -0xa3,0x38,0x87,0x18,0x0f,0x35,0x38,0x00,0x6e,0x80,0x9f,0x71, -0x70,0x18,0x02,0x3f,0x82,0xd1,0xb2,0x8f,0xad,0xe0,0x6c,0xe4, -0x26,0xf8,0x05,0xdc,0x08,0x3f,0xe7,0x3d,0xcc,0x1d,0x70,0x2b, -0xfc,0x16,0x7e,0x08,0xd7,0xc0,0xf7,0x38,0x63,0xb9,0xc2,0xbe, -0xc7,0x8e,0xb3,0x8c,0x39,0x30,0x0f,0x4e,0xe2,0xed,0x78,0x2d, -0xcc,0xe5,0xdd,0xdf,0x00,0xb8,0x13,0x4e,0x86,0xd7,0x78,0x37, -0xb1,0x95,0x77,0x0f,0xdb,0xe0,0x2b,0xf0,0x6d,0xb8,0x1c,0xce, -0xe1,0x2c,0xeb,0x6c,0xb8,0x9d,0xf3,0x99,0x24,0x9b,0x6c,0x10, -0xfc,0x95,0xf7,0x09,0x7f,0xe3,0x9d,0x73,0x3d,0x5c,0x05,0x17, -0xf2,0x0e,0x68,0x2c,0x5c,0xc2,0x3b,0xc8,0xdf,0xf3,0xce,0xe3, -0x97,0xbc,0x8b,0xfc,0x01,0x5c,0x06,0x17,0xe3,0x40,0xac,0xc0, -0x4a,0xde,0x39,0x9c,0x8b,0x55,0x70,0x25,0xef,0x33,0xcb,0x61, -0x3b,0x56,0xe3,0x20,0x1c,0x8c,0x35,0x38,0x04,0x6b,0xf1,0x10, -0x1c,0x8a,0x87,0xe2,0x61,0x78,0x38,0x0e,0xc3,0xe1,0x38,0x02, -0x47,0xe2,0x28,0x1c,0x8d,0x75,0x38,0x86,0xb3,0xbf,0xdb,0xa0, -0x0d,0xed,0x77,0xe3,0x1d,0x38,0x16,0x36,0xe2,0x38,0x1c,0x8f, -0x13,0xa0,0x80,0x47,0x40,0x27,0x4e,0xc4,0x49,0x38,0x19,0xa7, -0xe0,0x54,0x9c,0x86,0xd3,0xf1,0x48,0x9c,0x81,0x47,0x61,0x08, -0xc3,0x18,0xc1,0x28,0xc6,0x30,0x8e,0x0d,0xd8,0x88,0x4d,0x98, -0xc0,0xa3,0x71,0x26,0xce,0xc2,0xd9,0x38,0x07,0xe7,0xe2,0x3c, -0x4c,0x62,0x0a,0xd3,0x98,0xc1,0x2c,0xec,0xc4,0x1c,0x7c,0xc8, -0x0e,0xed,0xc2,0xf9,0xb8,0x00,0x17,0x72,0xa6,0xf4,0x3a,0x6c, -0xc2,0x45,0x78,0x8c,0x5d,0xfe,0xb8,0x18,0x8f,0x85,0xcf,0xe0, -0x12,0x5c,0x8a,0x9f,0xc0,0xe3,0x70,0x19,0x2e,0xc7,0x15,0xb8, -0x12,0x8f,0xc7,0x55,0xf0,0x2e,0xae,0xc6,0x13,0x70,0x0d,0x7e, -0x12,0x4f,0xc4,0x4f,0xe1,0x49,0x78,0x32,0x7e,0x1a,0x9e,0x84, -0x5e,0xb4,0xcb,0x7f,0x33,0xae,0x85,0x3e,0x6c,0xc6,0x75,0xd8, -0x82,0xeb,0xb1,0x15,0x37,0x60,0x1b,0x6e,0xc4,0x76,0xec,0xc0, -0x4e,0x2c,0x60,0x17,0x6e,0xc2,0xcf,0xc0,0x1f,0xb0,0x1b,0x7b, -0xb0,0x17,0x4e,0xc5,0x3e,0x3c,0x05,0x4e,0xc3,0xcd,0xf0,0x59, -0x38,0x1d,0x4f,0x85,0x2d,0x78,0x1a,0x6e,0xc1,0xcf,0xc2,0x77, -0xf1,0x74,0xf8,0x1c,0x7e,0x0e,0xcf,0xc0,0x33,0xf1,0x2c,0xfc, -0x3c,0x9e,0x8d,0xe7,0xe0,0xb9,0xf8,0x05,0xfc,0x22,0x7e,0x09, -0x7e,0x8a,0x5b,0xf1,0x3c,0xdc,0x86,0x5f,0x86,0x57,0xe0,0x7d, -0xfc,0x0a,0x9e,0x0f,0xe7,0xe1,0x05,0x78,0x21,0x5e,0x84,0x5f, -0xc5,0x8b,0xe1,0x0d,0x38,0x03,0xbf,0x06,0x67,0xc1,0xe7,0xf1, -0x12,0x38,0x13,0xbf,0x8e,0xdb,0xf1,0x52,0xfc,0x06,0x7e,0x13, -0x77,0xe0,0xb7,0xf0,0x32,0xfc,0x36,0x5e,0x8e,0xdf,0xc1,0x9d, -0xf8,0x5d,0xbc,0x02,0xbf,0x87,0xdf,0x87,0x3f,0xe3,0x0f,0xe0, -0x16,0xbc,0x12,0xaf,0xc2,0xab,0xf1,0x87,0x78,0x0d,0xec,0xc3, -0x1f,0xc1,0x3d,0x78,0x2d,0xdc,0x05,0x6b,0xf1,0xc7,0xf0,0x63, -0xbc,0x0e,0x7f,0x82,0xd7,0x43,0x33,0xfe,0x14,0xae,0xc3,0x1b, -0xf0,0x67,0x78,0x23,0xfe,0x1c,0x6f,0xc2,0x5f,0xe0,0xcd,0xf8, -0x4b,0xbc,0x05,0x7f,0xc5,0xb9,0xf6,0xaf,0xe1,0x03,0xf8,0x08, -0xd6,0xe1,0x6f,0xf0,0x56,0xfc,0x2d,0xfe,0x0e,0xfe,0x08,0x2d, -0x78,0x1b,0xde,0xce,0xbb,0xc4,0x7b,0xf1,0xf7,0xb8,0x0b,0xee, -0xc3,0x3b,0xf0,0x4e,0xbc,0x0b,0xef,0xc6,0x7b,0xf0,0x5e,0xbc, -0x0f,0xef,0xc7,0x07,0xf0,0x41,0x78,0x07,0x77,0xe3,0x43,0xf8, -0x30,0x3e,0xc2,0x39,0xf9,0xfd,0xf8,0x18,0x3c,0x00,0x0f,0xc2, -0x7e,0x7c,0x1c,0x76,0xe3,0x13,0xf8,0x24,0x3e,0x85,0x4f,0xe3, -0x33,0xf8,0x2c,0x3e,0x87,0xcf,0xe3,0x1e,0x7c,0x01,0x5f,0xc4, -0x97,0xf0,0x65,0x78,0x19,0xff,0x80,0x7b,0x39,0x6f,0x5f,0x8f, -0xaf,0xc2,0x43,0xb8,0x0f,0x1e,0x86,0x56,0x7c,0x0d,0x1e,0xc5, -0x3f,0xe2,0xeb,0xf8,0x27,0xf8,0x2a,0xfe,0x19,0x7e,0x82,0x7f, -0xc1,0x37,0xf0,0xaf,0xf8,0x37,0xfc,0x3b,0xbe,0x89,0xff,0xc0, -0xb7,0xf0,0x9f,0xf8,0x36,0x67,0xf7,0xd7,0xe3,0x3b,0xf8,0x2e, -0xee,0xc7,0xf7,0x60,0x2f,0xbc,0x87,0xef,0xe3,0x07,0xf8,0x21, -0x7e,0x44,0x40,0x48,0x04,0x7f,0x81,0xc7,0xc8,0xc0,0xe3,0xb0, -0x81,0x02,0xf0,0x04,0x95,0x51,0x90,0xca,0x69,0x00,0x0d,0xa4, -0x0a,0xaa,0xa4,0x2a,0xaa,0xa6,0x41,0x34,0x98,0x6a,0x68,0x08, -0xd5,0xd2,0x21,0x34,0x14,0xfe,0x44,0x87,0xd2,0x61,0xf0,0x2b, -0x3a,0x9c,0x86,0xd1,0x70,0x1a,0x01,0xaf,0xf2,0x1e,0xe1,0x52, -0xb8,0x1a,0x76,0xc0,0x37,0xe1,0x3b,0xf0,0x2d,0x1a,0x45,0xa3, -0xa9,0x8e,0xc6,0x50,0x3d,0x8d,0xa5,0x71,0x34,0x9e,0x26,0xd0, -0x11,0x34,0x91,0x26,0xd1,0x64,0x9a,0x42,0x53,0x69,0x1a,0x4d, -0xa7,0x23,0x69,0x06,0x1d,0x45,0x21,0x0a,0x53,0x84,0xa2,0x14, -0xa3,0x38,0x35,0x50,0x23,0x35,0x51,0x82,0x8e,0xa6,0x99,0x34, -0x8b,0x66,0xd3,0x1c,0x9a,0x4b,0xf3,0x28,0x49,0x29,0x4a,0x53, -0x86,0xb2,0x94,0xa3,0xf9,0xb4,0x80,0x16,0xd2,0x22,0x3a,0x86, -0x16,0xd3,0xb1,0xb4,0x84,0x96,0xd2,0x27,0xe8,0x38,0x5a,0x46, -0xcb,0x69,0x05,0xad,0xa4,0xe3,0x69,0x15,0xad,0xa6,0x13,0x68, -0x0d,0x7d,0x92,0x4e,0xa4,0x4f,0xd1,0x49,0x74,0x32,0x7d,0x9a, -0xf2,0xb4,0x96,0x9a,0x69,0x1d,0xb5,0xd0,0x7a,0x6a,0xa5,0x0d, -0xd4,0x46,0x1b,0xa9,0x9d,0x3a,0xa8,0x93,0x0a,0xd4,0x45,0x9b, -0xe8,0x33,0xd4,0x4d,0x3d,0xd4,0x4b,0x7d,0x74,0x0a,0x6d,0xa6, -0x53,0xe9,0x34,0xda,0x42,0x9f,0xa5,0xd3,0xe9,0x73,0x74,0x06, -0x9d,0x49,0x67,0xd1,0xe7,0xe9,0x6c,0x3a,0x87,0xce,0xa5,0x2f, -0xd0,0x17,0xe9,0x4b,0xb4,0x95,0xce,0xa3,0x6d,0xf4,0x65,0xfa, -0x0a,0x9d,0x4f,0x17,0xd0,0x85,0x74,0x11,0x7d,0x95,0x2e,0xa6, -0xaf,0xd1,0x25,0xf4,0x75,0xda,0x4e,0x97,0xd2,0x37,0xe8,0x9b, -0xb4,0x83,0xbe,0x45,0x97,0xd1,0xb7,0xe9,0x72,0xfa,0x0e,0xed, -0xa4,0xef,0xd2,0x15,0xf4,0x3d,0xfa,0x3e,0xfd,0x80,0xae,0xa4, -0xab,0xe8,0x6a,0xfa,0x21,0x5d,0x43,0x3f,0xa2,0x6b,0xe9,0xc7, -0x74,0x1d,0xfd,0x84,0xae,0xa7,0x9f,0xd2,0x0d,0xf4,0x33,0xba, -0x91,0x7e,0x4e,0x37,0xd1,0x2f,0xe8,0x66,0xfa,0x25,0xdd,0x42, -0xbf,0xa2,0x5f,0xd3,0x6f,0xe8,0x56,0xfa,0x2d,0xfd,0x8e,0x6e, -0xa3,0xdb,0xe9,0xf7,0xb4,0x8b,0xee,0xa0,0x3b,0xe9,0x2e,0xf8, -0x3b,0xbc,0x09,0xff,0xa0,0xbb,0xe9,0x1e,0xba,0x97,0xee,0xa3, -0xfb,0xe9,0x01,0x7a,0x90,0x76,0xd3,0x43,0xf4,0x30,0x3d,0x42, -0x8f,0xd2,0x63,0xf4,0x38,0x3d,0x41,0x4f,0xd2,0x53,0xf4,0x34, -0x3d,0x43,0xcf,0xd2,0x73,0xf4,0x3c,0xed,0xa1,0x17,0xe8,0x45, -0x7a,0x89,0x5e,0xa6,0x3f,0xd0,0x5e,0x7a,0x85,0x5e,0xa5,0x7d, -0xf4,0x1a,0xfd,0x91,0x5e,0xa7,0x3f,0xc1,0x5b,0xf4,0x67,0xfa, -0x0b,0xfc,0x13,0xde,0xa6,0x37,0xe8,0xaf,0xf4,0x37,0xfa,0x3b, -0xbd,0x49,0xff,0xa0,0xb7,0xe8,0x9f,0xf4,0x36,0xfd,0x0f,0xbd, -0x43,0xef,0xd2,0x7e,0x7a,0x8f,0xde,0xa7,0x0f,0xe8,0x43,0xfa, -0xc8,0x80,0x41,0x43,0xc6,0x98,0x80,0x29,0x33,0x41,0x53,0x6e, -0x06,0x98,0x81,0xa6,0xc2,0x54,0x9a,0x2a,0x53,0x6d,0x06,0x99, -0xc1,0xa6,0xc6,0x0c,0x31,0xb5,0xe6,0x10,0x33,0xd4,0x1c,0x0a, -0x4f,0x9b,0xc3,0xe0,0x19,0x78,0x0e,0x2e,0x80,0x17,0xe0,0x7c, -0x4e,0xfd,0x9e,0x82,0x97,0xe0,0x59,0x73,0x38,0x3c,0x6f,0x86, -0x99,0xe1,0x66,0x04,0xec,0x81,0x17,0xcd,0x48,0x33,0xca,0x8c, -0x36,0x75,0x66,0x8c,0xa9,0x37,0x63,0xcd,0x38,0x33,0xde,0x4c, -0x30,0x47,0x98,0x89,0x66,0x92,0x99,0x6c,0xa6,0x98,0xa9,0x66, -0x9a,0x99,0x6e,0x8e,0x34,0x33,0xcc,0x51,0x26,0x64,0xc2,0x26, -0x62,0xa2,0x26,0x66,0xe2,0xa6,0xc1,0x34,0x9a,0x26,0x93,0x30, -0x47,0x9b,0x99,0x66,0x96,0x99,0x6d,0xe6,0x98,0xb9,0x66,0x9e, -0x49,0x9a,0x94,0x49,0x9b,0x8c,0xc9,0x9a,0x9c,0x99,0x6f,0x16, -0x98,0x85,0x66,0x91,0x39,0xc6,0x2c,0x36,0xc7,0x9a,0x25,0x66, -0xa9,0xf9,0x84,0x39,0xce,0x2c,0x33,0xcb,0xcd,0x0a,0xb3,0xd2, -0x1c,0x6f,0x56,0x99,0xd5,0xe5,0x7d,0x85,0x36,0xde,0x82,0x65, -0xca,0xf3,0x33,0x38,0x9f,0x0f,0x85,0xcb,0x5b,0x4b,0x70,0xa4, -0xc2,0x66,0xfa,0xae,0xaa,0x78,0x18,0x71,0xbd,0x92,0x19,0x8b, -0x23,0xe1,0x48,0xd6,0xe1,0x70,0x54,0x71,0x43,0x20,0xdb,0xd7, -0xdd,0x25,0x44,0xd9,0x68,0x4e,0x2a,0x43,0xc9,0xb0,0xe2,0x98, -0xe2,0x06,0xc5,0x4d,0x8a,0x13,0x8a,0x93,0x8a,0x53,0x8a,0x33, -0x8a,0x9d,0x90,0x50,0x4a,0xf9,0xa4,0x22,0x8a,0x95,0x5f,0x2a, -0xae,0x58,0xf9,0xa5,0x94,0x5f,0x4a,0xf9,0xa5,0x94,0x4f,0x2a, -0x17,0xcc,0xaf,0xed,0x6e,0x39,0xa5,0xc5,0x16,0xc3,0x59,0xa7, -0x16,0xe3,0x68,0x79,0xbe,0x33,0xdf,0xdc,0xdd,0x55,0x28,0xcf, -0x77,0xb5,0x76,0x15,0x5a,0xda,0x2b,0xf2,0xdd,0x6d,0x85,0xd6, -0x7c,0x73,0x5f,0xaf,0x47,0x9a,0x73,0x38,0xd5,0xa8,0x58,0xbb, -0xa6,0xa2,0x8a,0xe3,0x4a,0xe7,0xe1,0x8c,0x62,0xa5,0x77,0x23, -0x64,0x9c,0xaa,0xca,0x0b,0x5b,0x67,0xd6,0x2a,0xa7,0x8e,0x2b, -0x0c,0xc9,0x37,0xb7,0x75,0x37,0xf7,0x75,0xae,0xe7,0x3d,0xb0, -0xab,0x19,0x9c,0x5f,0xd7,0xc6,0x3b,0xdd,0x9e,0xb6,0x1e,0x57, -0xae,0x56,0xb5,0xbd,0xce,0xad,0xdd,0x79,0xaf,0xb3,0x36,0x45, -0xb5,0xa4,0xe3,0xf1,0x4a,0x6e,0x54,0xae,0x54,0x29,0x63,0x73, -0xc7,0x35,0xc5,0x71,0x7a,0x3c,0x7b,0xdb,0x3a,0xd6,0x95,0xf2, -0xcc,0xf9,0x4b,0xa9,0xc6,0x92,0x52,0xb8,0xa4,0x14,0x2d,0x29, -0xc5,0x4b,0xb8,0x94,0x96,0x32,0x25,0xa5,0x12,0x9e,0xc9,0x44, -0x49,0x29,0xa5,0x73,0x32,0xdf,0x22,0x6a,0x56,0x36,0x17,0x8d, -0x54,0xd1,0xbc,0xae,0xab,0x37,0xdf,0xcc,0x3b,0xe5,0xde,0xe0, -0xba,0xe6,0x3c,0x8f,0x37,0xd8,0x22,0xf6,0x0c,0xb6,0x48,0xa9, -0xa2,0xa5,0xbf,0x5d,0xbd,0xa4,0x5e,0x48,0xa5,0xca,0x5b,0xd4, -0xe1,0x2d,0xce,0x34,0x5a,0xaf,0x5e,0x4b,0xa9,0xb7,0xd3,0xea, -0xbd,0xb4,0x7a,0x3b,0xad,0xde,0x4e,0x8b,0x97,0x43,0x91,0x78, -0xa2,0xb2,0xb5,0xa8,0x4e,0x55,0x6b,0x73,0x57,0x67,0x67,0xde, -0x09,0xac,0x68,0xed,0x97,0x5d,0xd5,0xea,0x77,0x72,0xeb,0x81, -0x4e,0xae,0xf5,0x77,0x53,0xb7,0x14,0x3b,0xbb,0x8a,0xc0,0x86, -0xb5,0xf9,0xee,0xca,0x0d,0xc5,0xae,0xc1,0x36,0xdf,0x3c,0x4e, -0xa7,0x14,0x27,0xca,0xdb,0x74,0x58,0x6d,0x6e,0x58,0xc1,0x36, -0x71,0x27,0xb5,0x6d,0x2c,0x6f,0xdb,0xd8,0x3f,0x9d,0x43,0x91, -0x68,0x63,0xd0,0x15,0x2b,0x37,0xfa,0xf4,0x6f,0xf7,0x29,0x52, -0xd5,0xde,0xda,0xdd,0xd2,0x52,0xe8,0xc8,0x17,0xd6,0xb5,0x35, -0x07,0x3b,0x84,0x38,0xd8,0x21,0x66,0xad,0xea,0xf0,0xd1,0x05, -0x3a,0x58,0xd5,0x60,0xc1,0xb5,0x17,0x5c,0x7b,0xc1,0xd7,0x5e, -0x59,0xc8,0x6f,0xea,0xea,0xe9,0xed,0xee,0xda,0xb4,0xa1,0xc5, -0xb4,0x14,0x5a,0x83,0x5d,0x7e,0xc5,0xd5,0xde,0xe9,0x5c,0x75, -0xd7,0x86,0x3e,0x9e,0x88,0xdd,0x7d,0x9d,0x1d,0xf9,0xbe,0xde, -0xf2,0x2e,0x37,0x8c,0xca,0x2e,0xb9,0x16,0x21,0xcc,0xcb,0xba, -0x36,0x74,0x75,0x17,0x1c,0x7d,0x46,0x07,0x9c,0x55,0x7f,0x64, -0x94,0x4f,0x46,0xfd,0x96,0x55,0x7f,0x65,0x3c,0xac,0x7e,0xcf, -0x78,0xf4,0xba,0x4a,0x33,0x8d,0xc1,0x6e,0xa7,0x79,0xb7,0xd3, -0xbc,0xdb,0xa7,0x79,0xb0,0xc7,0x59,0xa8,0xc7,0x67,0xa1,0x1e, -0x5f,0x7b,0x4d,0x6b,0x4b,0x77,0x27,0x9b,0x67,0x6d,0x87,0xae, -0xce,0x40,0x2f,0x3b,0x29,0xd8,0xeb,0x38,0xf5,0xfa,0x28,0x9d, -0xcd,0xc3,0xa9,0x60,0x9f,0x6f,0xec,0x59,0xd5,0x21,0xdb,0x58, -0xdd,0x57,0x32,0xf6,0x3e,0x75,0x61,0x9f,0x73,0x61,0x59,0x9f, -0x5d,0xa2,0xc1,0x3e,0x71,0x64,0x59,0x5f,0xd1,0x08,0x59,0x1d, -0x54,0x4e,0x07,0x99,0xf5,0x8c,0xa2,0xc6,0xc8,0xe6,0x82,0x9b, -0xdd,0x08,0x36,0x17,0x47,0x30,0x70,0xb3,0x17,0x51,0x82,0x9b, -0x25,0x7a,0x54,0x9e,0x56,0x6c,0x54,0x7e,0xf1,0xe0,0x69,0xd2, -0xa4,0x45,0x5d,0x03,0xb9,0x44,0x70,0x8b,0xb0,0xab,0xd8,0x52, -0x5c,0x75,0x49,0x7f,0x34,0x0d,0x29,0x8e,0x94,0x27,0x75,0x08, -0x49,0x8d,0xa6,0xc9,0x03,0xa3,0x69,0x56,0xd7,0x59,0x83,0x62, -0xed,0xea,0xe2,0x3a,0xe3,0x98,0xd2,0x79,0x38,0xad,0x58,0xe9, -0xdd,0x79,0x83,0x71,0xb2,0x3c,0x99,0x75,0x63,0x4c,0xfb,0xc2, -0x42,0xba,0xa8,0x60,0xc6,0x85,0x85,0x0c,0xab,0x93,0xef,0x0d, -0x66,0x5d,0x74,0xc8,0xba,0xe8,0x90,0x3d,0x30,0x3a,0x28,0x57, -0x3e,0x6b,0x64,0x75,0x00,0xd9,0x92,0xe8,0xa0,0x5a,0xa4,0x54, -0xfb,0xb4,0x6a,0x93,0x56,0xed,0xd3,0xaa,0x7d,0x5a,0xb4,0x0e, -0x85,0x9b,0x72,0x95,0xf3,0x7d,0x73,0x67,0xbe,0x3f,0x3a,0xcc, -0xef,0x97,0x1d,0x58,0x60,0x97,0xf6,0x02,0xdf,0xd2,0x5e,0xe8, -0x5f,0x21,0x49,0xc5,0x4d,0xe5,0x0b,0x55,0xa7,0x85,0xba,0xb4, -0x17,0xba,0xa5,0xbd,0x70,0x51,0xf9,0xc2,0x45,0x6e,0x12,0x3b, -0x54,0xb9,0xc8,0x27,0xf4,0x18,0xff,0x84,0x5e,0xec,0xc8,0x16, -0xbb,0x19,0xba,0xd8,0xbf,0x8a,0x17,0xdb,0x55,0xbc,0xc4,0xb5, -0x2f,0x71,0xed,0x4b,0x7c,0xed,0x26,0xcb,0x53,0x70,0xa9,0x5f, -0x2f,0xb5,0x45,0x3a,0x5b,0xbd,0xb4,0x64,0xf6,0x2e,0xd5,0x95, -0xbb,0xd4,0xb7,0x72,0x97,0xfa,0x56,0xae,0x8e,0x27,0xab,0xb6, -0xca,0x28,0x9f,0x8c,0xda,0x34,0xab,0xb6,0xcc,0x78,0x58,0x7d, -0x92,0xf1,0xe8,0x75,0x46,0x64,0x1a,0x82,0xcb,0x9c,0xb6,0xcb, -0x9c,0xb6,0xcb,0xfc,0x03,0x5d,0xee,0x0c,0xb1,0xdc,0x67,0x88, -0xe5,0x07,0xac,0xc7,0x70,0x36,0x91,0x0d,0xac,0xb0,0x0b,0x76, -0x85,0x63,0xb0,0xe2,0xe0,0x05,0x9b,0x0c,0xae,0xf4,0x2f,0x58, -0x15,0x9d,0x6d,0xa8,0x5e,0x59,0x32,0xe4,0x95,0xea,0x98,0x95, -0xba,0x60,0x57,0xca,0x82,0x5d,0xe9,0x16,0xec,0x4a,0xdf,0x82, -0xd5,0xb1,0xe4,0x74,0x6c,0x59,0xcf,0x16,0x6a,0x83,0x6c,0x36, -0xb8,0xca,0x29,0xbe,0xca,0xb7,0x60,0x57,0xf5,0x2f,0xd8,0x55, -0x6e,0xc1,0x9e,0x70,0xd0,0x82,0x8d,0x05,0x4f,0xf0,0x2f,0x58, -0x9d,0x96,0xb9,0xa6,0xe0,0x1a,0xb7,0x60,0xd7,0x94,0x4c,0xf4, -0x50,0x2c,0x1a,0xaa,0x56,0xac,0xe7,0x56,0x57,0xf2,0x70,0x44, -0x71,0x54,0x71,0x4c,0x71,0x5c,0x71,0x83,0xe2,0x46,0xc5,0x4d, -0x8a,0x13,0x8a,0x93,0x8a,0x53,0x8a,0xd3,0x8a,0x33,0x8a,0xb3, -0x8a,0x73,0x0e,0xc7,0x42,0x8a,0x55,0x7e,0x4c,0xe5,0xc7,0x54, -0x7e,0x4c,0xe5,0xc7,0x54,0x7e,0x4c,0xe5,0xc7,0x54,0x7e,0x4c, -0xe5,0xc7,0x54,0x7e,0x4c,0xe5,0xc7,0x54,0x7e,0x4c,0xe5,0xc7, -0x54,0x7e,0x4c,0xe5,0xc7,0x54,0x7e,0x58,0xe5,0x87,0x55,0x7e, -0x58,0xe5,0x87,0x55,0x7e,0x58,0xe5,0x87,0x55,0x7e,0x58,0xe5, -0x87,0x55,0x7e,0x58,0xe5,0x87,0x55,0x7e,0x58,0xe5,0x87,0x55, -0x7e,0x58,0xe5,0x87,0x55,0x7e,0x58,0xe5,0x87,0x55,0x7e,0x44, -0xe5,0x47,0x54,0x7e,0x44,0xe5,0x47,0x54,0x7e,0x44,0xe5,0x47, -0x54,0x7e,0x44,0xe5,0x47,0x54,0x7e,0x44,0xe5,0x47,0x54,0x7e, -0x44,0xe5,0x47,0x54,0x7e,0x44,0xe5,0x47,0x54,0x7e,0x44,0xe5, -0x47,0x54,0x7e,0x46,0xe5,0x64,0xc2,0xd5,0x5a,0x2e,0xe6,0x5f, -0xb6,0xd6,0x3f,0x47,0x32,0xaa,0x43,0x5c,0xfb,0x24,0xb4,0x3e, -0xe1,0x95,0xbd,0x76,0x1d,0x53,0xdc,0xeb,0xa7,0xba,0xc6,0x75, -0x2c,0x19,0xd5,0x25,0xad,0x63,0x4d,0x68,0x7b,0x46,0x75,0x4a, -0xe8,0x58,0xd2,0x5a,0xce,0x7a,0x7c,0xb5,0x5f,0x56,0xe5,0xc5, -0x75,0x6c,0x09,0x1d,0x6b,0x42,0xdb,0x93,0x2a,0x37,0xae,0x7c, -0x92,0x1e,0xbd,0xda,0x26,0xa9,0xfc,0xb2,0x2a,0xb7,0x51,0xdb, -0xb3,0x1e,0xbd,0xf2,0xcb,0xaa,0xfc,0x9c,0xf2,0xcb,0x79,0x7c, -0xd4,0x86,0x49,0x6d,0x4f,0x69,0x7b,0x4a,0xdb,0x73,0xca,0x3f, -0xa5,0xfc,0x53,0xca,0x37,0xa7,0x38,0xee,0x8d,0x47,0xfb,0xc7, -0xd5,0xa7,0x71,0xcf,0x4e,0xea,0xd3,0xb8,0xda,0x27,0xae,0xfa, -0xa4,0x14,0x67,0x94,0x4f,0x46,0xdb,0x33,0x6a,0xef,0x8c,0xda, -0x37,0xe4,0xf9,0x43,0xeb,0x13,0x9e,0x9d,0xbd,0x76,0xad,0xef, -0xf7,0xab,0xca,0x0f,0x79,0xfe,0x51,0xbb,0xa6,0x3d,0xff,0x6a, -0x7b,0x46,0xc7,0x9d,0x50,0xfd,0xd2,0xca,0x27,0xeb,0xf1,0xf5, -0xfc,0xa3,0xf2,0x42,0x9e,0x7f,0xd4,0xee,0x09,0x2d,0x27,0x3d, -0xf9,0x9e,0xbd,0x3d,0x7a,0xcf,0x3f,0xca,0x2f,0xab,0x72,0x1b, -0xb5,0x3d,0xab,0x72,0x93,0x4a,0x97,0x55,0x7d,0x72,0xca,0x2f, -0xe7,0xf1,0xf1,0xfc,0xa3,0x38,0xa5,0xed,0x29,0x6d,0xcf,0x29, -0xff,0x94,0xf2,0x4f,0x29,0xdf,0x9c,0xe2,0x90,0xfa,0x27,0xa4, -0xfe,0x09,0x79,0xf6,0x51,0xff,0x84,0x3c,0x3a,0x4f,0x9e,0xe7, -0x1f,0xd5,0x2b,0xa3,0x1b,0xd1,0xc6,0x90,0x62,0xdd,0xa8,0x36, -0xea,0x46,0xb5,0x51,0x37,0xc0,0x8d,0x8d,0x8a,0x3d,0x7a,0xdd, -0xb8,0x36,0x69,0xbf,0x26,0xdd,0xf0,0x36,0xe9,0x86,0xb7,0x29, -0xaa,0x58,0xf9,0x35,0x29,0xbf,0x26,0xe5,0xd7,0xa4,0xfc,0x9a, -0x94,0x5f,0x53,0x62,0xa0,0x6c,0xdc,0x0b,0x7d,0x9d,0xdd,0x03, -0xf8,0xe4,0xe4,0x0e,0x7a,0x37,0xbb,0x9a,0x8a,0xde,0x0d,0x9c, -0xe3,0xcb,0xe1,0xc0,0xf5,0x5d,0x7d,0xdd,0x7a,0xd4,0x76,0x8a, -0xd2,0xf5,0xb4,0x9d,0xea,0xe8,0x7a,0xf8,0x24,0x58,0x70,0x87, -0x2d,0xf6,0x6b,0x5f,0x47,0x58,0x68,0x53,0x86,0x4e,0xc6,0xba, -0x42,0x57,0xa7,0xc8,0x90,0x03,0x2b,0xc3,0x1e,0xa8,0x0c,0x7b, -0xe8,0x64,0xb8,0x23,0x2b,0x43,0xe8,0xac,0x0c,0xa1,0x73,0x32, -0xe4,0xd0,0xc9,0x10,0x42,0x91,0x61,0x8f,0xdc,0xd5,0x85,0xb8, -0x5e,0x65,0x70,0x71,0x84,0x71,0x5c,0x71,0x83,0xe2,0x46,0xc5, -0x4d,0x8a,0x13,0x8a,0x93,0x8a,0x43,0x8a,0x53,0x8a,0xd3,0x8a, -0xf5,0x6a,0x46,0x5c,0xaf,0x66,0xb8,0xb8,0x15,0x69,0xd4,0xab, -0x1a,0x8d,0x31,0xa5,0x4b,0x68,0x7f,0x17,0xf7,0x18,0xab,0x3e, -0x6e,0x7d,0x31,0x56,0x3d,0x12,0xaa,0x47,0x42,0xe5,0x27,0x54, -0x9f,0x94,0xf6,0xd7,0x0b,0x18,0x29,0x77,0xce,0x89,0xa4,0xdc, -0x3c,0xe3,0x72,0x48,0xcb,0xaa,0x87,0x5e,0xf0,0x08,0xa7,0x54, -0x4e,0x5a,0xf9,0xa7,0x75,0xfc,0x09,0x0f,0xab,0x1d,0x52,0xda, -0x9e,0x52,0xf9,0x7a,0x61,0x25,0xac,0x17,0x56,0xc2,0x29,0x0f, -0xa7,0x2a,0x7d,0xfb,0xfc,0x0a,0xb7,0x3f,0x6d,0x3e,0xad,0xbb, -0x63,0x60,0x49,0xa6,0x1e,0x8a,0x68,0xc0,0x89,0xb8,0xdc,0x37, -0x14,0xd5,0xc0,0x12,0xd5,0x40,0x11,0xd5,0x05,0x11,0xd5,0x05, -0x11,0xd5,0x85,0x10,0xd5,0xc0,0x12,0xd5,0x40,0x13,0xd5,0x85, -0x12,0x0d,0x79,0x7c,0x1a,0x14,0x27,0x15,0xbb,0x40,0x10,0xd5, -0x93,0x6f,0x54,0x4f,0xb6,0x51,0x3d,0x89,0x46,0xf5,0x64,0x17, -0xd5,0x93,0x62,0x54,0x4f,0x82,0xd1,0x48,0x93,0x53,0xde,0x25, -0x3a,0x72,0x28,0xa9,0xd0,0x40,0x39,0xdc,0xd0,0xd5,0xd5,0xee, -0x2a,0x65,0xb4,0xd5,0x5e,0x2a,0x25,0xd4,0xfd,0x25,0xc9,0xff, -0xfa,0x4b,0xd2,0x7d,0x70,0x31,0xc7,0x12,0x5a,0x5f,0x59,0xd8, -0xf9,0xca,0x42,0x3f,0xa8,0x58,0xb6,0x32,0x07,0x79,0xcc,0x5c, -0x66,0xe8,0xa3,0x16,0x3d,0x2a,0x9c,0xed,0xed,0x97,0xe6,0x35, -0x3e,0x37,0x48,0x45,0xa5,0x5e,0xb8,0xb1,0xc7,0x83,0x8a,0x57, -0x01,0x6c,0xb1,0x5f,0x45,0x29,0x0d,0xf1,0xe7,0xa0,0x52,0x53, -0xe1,0xae,0xe3,0xc8,0xa1,0xbb,0x32,0x64,0x0f,0x7d,0xc2,0x5d, -0x93,0x0c,0xd7,0x1d,0xaa,0xdf,0x2d,0x55,0x71,0x0a,0x9c,0x6c, -0xcb,0x32,0x0f,0x9c,0x12,0xc5,0x2b,0x44,0xb6,0x58,0xa5,0xee, -0xf2,0xf5,0x2a,0x36,0x0e,0x2e,0x3a,0xc0,0xf5,0xed,0xf7,0x82, -0xaf,0xb9,0x38,0xf8,0xda,0x12,0x7f,0x94,0x56,0x15,0xb5,0xac, -0x2d,0xf1,0x8c,0x54,0x0d,0x3d,0xc0,0x3d,0x07,0x56,0x16,0xc7, -0x35,0xf4,0x00,0x47,0x49,0xe5,0x21,0xa5,0xde,0x72,0x75,0xa5, -0x2e,0x3b,0xb0,0x73,0x51,0x69,0xbd,0xfc,0x29,0xf3,0x9a,0xb7, -0x82,0x8d,0x20,0x6f,0x17,0xb1,0x0f,0xb5,0xad,0x81,0x32,0xfb, -0x2c,0x60,0xf9,0x46,0xb0,0x4a,0xbf,0x0c,0x24,0x38,0xc4,0xbd, -0x95,0x1c,0x86,0xc8,0xfd,0x4f,0x73,0x20,0xc7,0xe5,0x36,0xfe, -0x04,0xa0,0x9d,0x3f,0x01,0x78,0x8e,0x3f,0x88,0x84,0xc4,0x70, -0x30,0x32,0x25,0x4e,0xc6,0xc9,0x0c,0xa7,0xe1,0x34,0x86,0xcb, -0x70,0x19,0xc3,0xd3,0xf1,0x74,0x86,0xb7,0xe1,0x6d,0x0c,0x77, -0xe1,0x2e,0x86,0xaf,0xe3,0xeb,0x80,0xf4,0x24,0xed,0x03,0x32, -0x87,0x99,0xf1,0x60,0xcc,0x11,0x26,0xce,0x30,0x63,0x8e,0xb3, -0x6f,0x9a,0x13,0x1d,0x2a,0x20,0x05,0x5b,0xc0,0x64,0x72,0x8b, -0x57,0xc0,0x50,0xeb,0x59,0xa8,0xef,0xc8,0xf7,0xda,0xaf,0xf3, -0x03,0xde,0xb3,0x21,0xe4,0x0e,0x2c,0xef,0x18,0x7d,0xc7,0x04, -0xc6,0xde,0x7a,0x03,0x43,0x05,0xd6,0x0b,0x9c,0xae,0xd4,0xd2, -0xfa,0x2f,0x8f,0x03,0x2c,0xb7,0x16,0x46,0xc0,0x38,0xad,0xab, -0x77,0x18,0xb5,0x8c,0x67,0x38,0x6c,0x52,0xfc,0xdf,0x6b,0xce, -0x60,0x8a,0x2a,0xfb,0x16,0x2a,0xae,0xdb,0xd2,0xff,0x1f,0x87, -0x6e,0x38,0x15,0xce,0x80,0x73,0x61,0x1b,0x5c,0x04,0xdb,0x19, -0x5f,0x06,0x57,0xc0,0xd5,0xfc,0x39,0x97,0xff,0xaf,0x83,0x1b, -0xc1,0xde,0x81,0x78,0xb5,0x7c,0xee,0x14,0x78,0x3f,0x53,0x3d, -0x02,0x4f,0xc1,0x1e,0xad,0x7d,0x04,0xf6,0xc2,0xeb,0x7a,0xbc, -0x87,0xdb,0x3c,0x6a,0xef,0x73,0x19,0xff,0xbb,0x3a,0xbd,0x57, -0x0d,0x47,0x0a,0x94,0xe7,0xa0,0xe3,0x6c,0x81,0xf2,0xa3,0x14, -0x1c,0x21,0x30,0x2e,0x30,0x26,0x70,0xb1,0xc0,0xb4,0xc0,0xe9, -0x02,0xab,0x04,0x4e,0x14,0xb8,0x59,0xe0,0x14,0x81,0xf7,0x0b, -0x9c,0x29,0xf0,0x50,0x81,0x61,0xf7,0x6c,0x36,0x39,0x4e,0x09, -0x9c,0x2f,0xb7,0x9d,0xd9,0xb7,0x6d,0x5a,0x4b,0xd4,0x8a,0x3e, -0xa3,0xd8,0x86,0xa3,0xd8,0x82,0x93,0x61,0x06,0xc4,0x78,0xde, -0xcc,0x93,0xaf,0xec,0x67,0x78,0xba,0x92,0x93,0xf4,0xae,0xc0, -0x2f,0x49,0x8d,0xbc,0x7b,0x0c,0xdf,0x96,0xe3,0xa3,0x05,0x0e, -0x10,0xe8,0x6c,0xbe,0x4d,0x8e,0x0b,0x74,0xae,0xc8,0xb8,0x8e, -0xf9,0x02,0x0e,0xfb,0x7f,0xfa,0xaf,0xfb,0xaf,0xfe,0x8f,0x86, -0xb3,0x61,0x2b,0x5c,0x00,0x97,0xc0,0x0e,0xc6,0x3b,0xe1,0x4a, -0xb8,0x96,0xe1,0x0d,0xfc,0x7f,0x33,0xdc,0x0a,0xbb,0xe0,0x5e, -0xae,0xdf,0xd9,0xff,0xb9,0x16,0x1e,0x82,0x27,0x78,0x1d,0xbd, -0x0c,0xaf,0xc1,0x1b,0x5c,0xba,0x16,0xde,0xe2,0xcf,0x7e,0x39, -0x92,0x0f,0x4f,0xee,0x60,0xb1,0x24,0x9f,0x9d,0x58,0x85,0xb5, -0xd2,0x7b,0x07,0xeb,0xe9,0xea,0xd0,0xbe,0xcb,0x5c,0xe0,0x2d, -0x76,0x46,0xd8,0x63,0x1c,0x23,0x30,0x21,0x70,0x86,0xc0,0x29, -0x02,0xa7,0x0b,0xe5,0x36,0xa1,0x9c,0x2e,0xf0,0x28,0xa9,0x9f, -0x2d,0x70,0x84,0xc0,0xbc,0xc0,0xa9,0x02,0x27,0x09,0xcd,0x02, -0x81,0x87,0x0a,0x0c,0x0b,0x6c,0x10,0x18,0x11,0x98,0x90,0x59, -0x70,0x85,0x1c,0xc7,0x04,0x4e,0x15,0xb8,0x58,0x38,0x6c,0x15, -0x78,0x9e,0xd4,0x8c,0xe2,0xf5,0x54,0x9c,0x2f,0x35,0xbc,0xa6, -0x6a,0xe0,0x30,0x99,0x33,0x56,0xfb,0xbd,0xec,0xed,0x46,0x0b, -0xf1,0x1a,0x81,0xe7,0xd0,0x3b,0x76,0x05,0xf2,0x31,0x47,0x19, -0x8e,0x14,0x93,0x24,0x32,0x55,0xc8,0x5a,0x95,0x9f,0xea,0x42, -0xb9,0xbc,0x11,0x7d,0x20,0x0c,0x93,0xd7,0x56,0x44,0xd8,0xfe, -0x93,0x24,0x26,0x85,0x24,0x0e,0x85,0x25,0x0e,0x45,0x24,0xf6, -0x44,0x25,0xf6,0xc4,0x6c,0xbc,0x30,0x93,0xe5,0x9d,0xe7,0x01, -0x28,0xe3,0x9e,0x83,0x61,0xa4,0x3c,0x2e,0x74,0x0a,0xc4,0xd1, -0x3e,0xb5,0xd9,0x70,0x5c,0xb2,0x2f,0x06,0x9d,0xc2,0x71,0xa9, -0x5a,0xe2,0xd2,0x08,0xae,0xad,0x11,0x6a,0x7b,0x4f,0x67,0xb9, -0x3c,0x0b,0xd7,0xde,0x29,0x59,0x69,0x9f,0x9d,0xcc,0x23,0x19, -0xce,0x51,0x74,0x24,0x4b,0xae,0x91,0x98,0x18,0x12,0xf9,0x61, -0x89,0x89,0x11,0x89,0x89,0x51,0xd1,0x25,0x26,0xba,0xc4,0x25, -0x26,0x36,0x48,0x4c,0x6c,0x14,0xbd,0x9a,0x44,0xaf,0x84,0xe8, -0x35,0x5e,0x62,0xd9,0x00,0x89,0x43,0xd3,0x35,0x16,0x6e,0xa7, -0xdf,0x95,0xc4,0xc2,0x59,0x12,0x0b,0xd7,0xf5,0xc7,0xbc,0xc1, -0x72,0x67,0x6a,0x10,0x06,0xca,0xc3,0xa2,0x6b,0xed,0x7b,0xe3, -0x58,0x9b,0x3a,0x1e,0xd3,0x04,0x98,0x04,0x53,0x7d,0x74,0x96, -0xb7,0xfd,0x1d,0x46,0x35,0x6b,0x6a,0x9f,0xa3,0x34,0x9c,0xed, -0x3e,0x86,0x2d,0x7f,0x04,0xaf,0xab,0x69,0x3e,0x3a,0xfb,0x9c, -0xd0,0x01,0x32,0xba,0x21,0x30,0x54,0x1e,0x25,0x3b,0x5a,0x1e, -0x24,0x3a,0x91,0x6d,0x34,0x1d,0x8e,0xcc,0xf3,0x49,0x1f,0x6b, -0x04,0x0e,0x13,0x58,0xdf,0xdc,0xdc,0xb9,0x09,0x27,0x0b,0x0c, -0x09,0x6c,0xb2,0x99,0x2f,0xce,0x13,0x98,0x13,0xb8,0x78,0x7d, -0x77,0xbe,0x19,0x97,0x09,0x5c,0x2d,0xf0,0x24,0x9b,0x81,0xe3, -0x3a,0x81,0x1b,0x05,0x6e,0xea,0xea,0x5e,0x57,0xc0,0x53,0x04, -0x9e,0x2e,0xf0,0xec,0x1e,0xcb,0x7f,0xab,0xc0,0x0b,0x04,0x5e, -0xd2,0xd3,0x56,0x58,0x8f,0x3b,0x04,0xee,0x14,0x78,0x65,0x4f, -0x4f,0x28,0x8c,0xd7,0x0a,0xbc,0x41,0xe0,0xcd,0x0c,0x23,0x78, -0xab,0xc0,0x5d,0x02,0xef,0x65,0x18,0xc5,0x87,0x04,0x3e,0x21, -0xf0,0x39,0x86,0x31,0x7c,0x59,0xe0,0x6b,0x02,0xdf,0x60,0x18, -0xc7,0xb7,0x04,0xee,0xb7,0x90,0xa0,0xa7,0x6f,0x53,0x0f,0x05, -0x05,0x56,0x09,0xac,0xb5,0x1b,0x06,0x1a,0x26,0xb0,0x4e,0xe0, -0x04,0xbd,0xaf,0x06,0x3f,0x16,0xbb,0x73,0xcc,0x81,0x18,0xe5, -0x89,0x83,0xa5,0xb0,0xec,0x20,0x18,0x3c,0x08,0x06,0x0e,0x82, -0x35,0x07,0xc1,0x81,0x7e,0x68,0xf6,0xdb,0x17,0xe9,0x98,0xb7, -0x04,0xbe,0x61,0x61,0x60,0xa2,0x5d,0x7d,0x81,0x7a,0x81,0x23, -0x04,0xda,0xb5,0x50,0x1d,0x18,0x27,0x70,0x94,0x40,0xdb,0x3a, -0x48,0x5a,0x07,0x05,0x86,0x0a,0x1c,0x66,0x1f,0x6e,0x1e,0xa8, -0x15,0x58,0x25,0x0f,0x3a,0xb7,0xfc,0x07,0x1c,0x04,0x2b,0x4a, -0x60,0x2d,0xcf,0x98,0x19,0xd0,0xc0,0xb9,0xc3,0x12,0x38,0x1e, -0x4e,0x82,0xf5,0x50,0x80,0x53,0xf8,0xec,0xf8,0x45,0x8e,0x8f, -0xdb,0xe1,0x72,0x8e,0x8d,0xd7,0xc1,0x4d,0x62,0x29,0x0c,0x0c, -0x72,0x96,0x09,0x6c,0xd1,0x91,0x6d,0x95,0x31,0x97,0xc1,0x7e, -0x8e,0x76,0x75,0x18,0xe2,0x73,0x8e,0xd0,0x61,0x46,0xcf,0xc6, -0x39,0x57,0xa6,0xeb,0x15,0xdf,0xae,0xf8,0x31,0xc5,0xaf,0x2a, -0x7e,0x47,0xf1,0x7e,0x87,0x4d,0x48,0xf1,0x2c,0xc5,0x73,0x14, -0xcf,0x2b,0x2d,0x07,0x36,0xf0,0xff,0x36,0xd6,0xa9,0x8a,0x47, -0xb0,0x5a,0xe2,0x8d,0xc4,0x29,0x13,0xe3,0xbc,0xe5,0x70,0x73, -0x24,0xc3,0x91,0xe6,0x28,0x86,0xa3,0xcc,0x0c,0x86,0x75,0xac, -0x69,0x95,0xbc,0x07,0xa5,0x0e,0x26,0x70,0xdc,0xb0,0xb9,0x4d, -0x48,0x68,0x22,0x42,0x13,0x66,0x38,0xc6,0x44,0x19,0x8e,0xf5, -0xf1,0x9a,0x2e,0x74,0x53,0x84,0x6e,0xaa,0xd0,0x4d,0x13,0x0a, -0x7b,0x27,0x33,0x5b,0x3f,0x30,0x51,0xe7,0xd1,0x90,0xfe,0x9a, -0x7a,0x5f,0x8d,0xd5,0x72,0xa8,0xab,0xf7,0xd5,0xb0,0xa7,0x02, -0x03,0x7c,0xbd,0xd8,0x5b,0x81,0xd5,0xfd,0xbd,0x28,0x70,0x3c, -0xcf,0xc1,0x3e,0xf6,0x02,0x06,0x56,0xd8,0x97,0x31,0x73,0x46, -0xb2,0x87,0x63,0x72,0x04,0x4f,0x64,0x9d,0xec,0x53,0x76,0x6c, -0x04,0x4d,0xc1,0x22,0x58,0x06,0x6b,0x60,0x2d,0x6c,0xe4,0x7c, -0x66,0x0b,0x9f,0xd1,0xb6,0xc1,0xc5,0xb0,0x83,0x9e,0x64,0x8e, -0x6d,0x30,0x97,0x9e,0x12,0x6c,0x9f,0x79,0x66,0x71,0x92,0x9e, -0x13,0x9c,0xa2,0x17,0x05,0xa7,0xe9,0x65,0xc1,0x19,0xb9,0x5f, -0xbc,0x0d,0xb2,0xb4,0x4f,0x70,0x4e,0xfa,0xb7,0x6b,0xff,0x76, -0xed,0xdf,0xae,0xfd,0xdb,0xb5,0x7f,0xbb,0xf6,0x6f,0xd7,0xfe, -0xed,0xda,0xbf,0x5d,0xf2,0x4f,0xcd,0xd0,0xe8,0x69,0xd5,0xe0, -0x79,0x95,0xfc,0xb4,0x72,0x7c,0xde,0x71,0xb2,0xaf,0xca,0x64, -0x0b,0xd7,0xb9,0xf9,0x47,0xcf,0xaa,0x9e,0x7b,0x94,0x7a,0xaf, -0xea,0xf5,0xac,0xca,0xdf,0xa3,0xf2,0xf7,0x3a,0x79,0xf2,0xf8, -0xee,0x41,0xf4,0x82,0x52,0xbf,0xa0,0x3c,0x8b,0xd2,0x5f,0xd2, -0x71,0xbe,0xa2,0x7c,0x5e,0x52,0xbd,0x5f,0x29,0xe9,0xff,0xaa, -0xb6,0xbe,0xea,0xd5,0xd2,0x9b,0x50,0x51,0xbc,0x17,0xa4,0x78, -0x17,0x08,0xb7,0x3c,0xc5,0x2d,0x1f,0x73,0x2f,0x08,0xb7,0xdc, -0xca,0x2d,0x1f,0x73,0x9f,0x09,0xb7,0x7c,0x9f,0x5b,0x3e,0xe6, -0x6e,0x13,0x9e,0xeb,0x3b,0xac,0xb7,0xed,0xe9,0x94,0xb6,0xb3, -0xbe,0x65,0x9c,0x69,0xde,0x05,0x77,0xc3,0x3d,0x9c,0x7b,0xdc, -0xc7,0xf9,0xa6,0xbd,0x47,0x69,0x37,0xe7,0x1d,0x0f,0x73,0xae, -0xf9,0x28,0x3c,0x06,0x8f,0x73,0x06,0xf2,0x24,0x67,0xa0,0x4f, -0xc3,0x33,0xf0,0x2c,0x95,0xd9,0xbb,0x74,0xe4,0xb7,0x05,0x44, -0xbd,0x32,0xab,0xdf,0x87,0x0f,0xe0,0x43,0xf8,0x48,0x7e,0x63, -0x80,0x24,0xeb,0x03,0x79,0x66,0x51,0xcc,0xc6,0x39,0xe4,0x33, -0x3b,0xad,0xb1,0x19,0x34,0xc3,0xb1,0x42,0x3f,0xfb,0x3f,0x91, -0xe7,0x71,0xc7,0x79,0x2a,0x99,0x28,0x07,0x8d,0xff,0x99,0xce, -0x07,0xf2,0x38,0xe8,0xfe,0x92,0x7f,0x73,0x6f,0x09,0x8f,0xa0, -0x96,0xcf,0x89,0xf5,0x3c,0x5b,0x42,0x1c,0xad,0x66,0xb1,0xaf, -0x17,0x70,0xc4,0x5a,0xc1,0x2b,0xe0,0xd3,0x12,0xb3,0xec,0x7b, -0x17,0xaa,0xd9,0xff,0xb3,0x60,0x36,0xfb,0xef,0x01,0xd6,0x71, -0x17,0x3d,0xc8,0xf0,0x0e,0xda,0xcd,0xf0,0x4e,0x7a,0x88,0xe1, -0x5d,0xf4,0x30,0xc3,0xbb,0xe9,0x11,0x86,0xf7,0xd0,0xa3,0x0c, -0xef,0xe5,0x58,0x44,0xec,0xdf,0xc7,0x19,0xde,0xcf,0xbe,0x34, -0xa6,0xcc,0xde,0xfd,0xc2,0x78,0x9e,0x19,0x6c,0x92,0x40,0x78, -0x0b,0xd4,0x72,0xae,0x30,0xd8,0x8c,0x67,0xed,0xc6,0xfd,0x5f, -0xfa,0x71,0x9f,0xe1,0x66,0xb4,0x19,0x73,0x40,0x76,0x80,0xa6, -0x4e,0x76,0x3f,0x95,0x72,0x3c,0x49,0x8e,0xed,0xd9,0xdb,0x46, -0x95,0x09,0x9a,0xc1,0x0c,0x96,0xda,0x1a,0x19,0xc3,0x58,0x5e, -0xdb,0x80,0x05,0x2c,0xc0,0x08,0xc9,0x42,0x46,0xe2,0x59,0x78, -0x16,0x8c,0xc2,0x8b,0xf0,0x22,0x18,0x8d,0x97,0xe2,0xa5,0x50, -0x87,0x57,0xe1,0x55,0x30,0x46,0xb2,0x93,0x7a,0xc9,0x4e,0xc6, -0xe2,0x6e,0xdc,0x0d,0xe3,0x70,0x1f,0xee,0x83,0xf1,0x92,0xa9, -0x4c,0x10,0x09,0x63,0x39,0x4e,0x39,0x09,0x28,0xfb,0xa7,0x00, -0xe7,0x1d,0xf6,0xfc,0x36,0x07,0xec,0xee,0x20,0xc3,0x9f,0x32, -0x29,0xcf,0x04,0xbb,0x8b,0xb0,0xbb,0x47,0x94,0xcf,0x4c,0xa1, -0x0d,0x48,0x14,0xbf,0x1e,0xee,0xb0,0x99,0x3e,0x67,0x87,0x87, -0xdb,0xfb,0xc3,0x60,0x98,0x9c,0xfb,0x2a,0xe1,0x1d,0x78,0x97, -0x73,0xe0,0xf7,0x2c,0x3d,0xce,0x65,0xfa,0x01,0x4a,0x5f,0x29, -0x23,0x9d,0x29,0x3c,0x6c,0x5f,0xc3,0x94,0xef,0xc1,0x70,0x9c, -0xcb,0x54,0xa3,0x85,0x4f,0x9d,0xf0,0x19,0xa3,0x39,0x62,0xbf, -0x0c,0xa1,0x3b,0x5c,0xe8,0x46,0x0a,0xdd,0x28,0xa1,0x1b,0x6d, -0x82,0xa6,0x1a,0xc6,0xd8,0x3b,0x9f,0x60,0x92,0x8c,0x68,0x8a, -0x8c,0x68,0xaa,0xfc,0x02,0xa8,0x92,0xe5,0xcc,0x81,0xb9,0xbc, -0x87,0x49,0xf2,0x98,0xd2,0x3c,0xa2,0x2c,0xe4,0x4c,0xc0,0x0c, -0x92,0xfc,0xc8,0x3e,0xef,0x09,0x4c,0x1d,0x7b,0xc0,0xd9,0xc2, -0x98,0x49,0xec,0x81,0x80,0xf4,0x2f,0xd3,0x5f,0x11,0xf1,0xdf, -0xff,0x02,0xa2,0x53,0x4c,0x65 +0x78,0xda,0x9c,0xbc,0x07,0x40,0x53,0x49,0x17,0x30,0x3a,0x73, +0x6f,0xee,0x0d,0xe4,0x42,0x80,0x84,0x84,0x12,0x53,0xb0,0xaf, +0x95,0x16,0x8a,0x58,0x20,0x34,0x0b,0x36,0xec,0x0d,0x09,0x10, +0x20,0x10,0x8a,0x54,0xb1,0x61,0x17,0x2b,0x76,0xf4,0xb3,0xf7, +0x5e,0xd6,0xde,0xcb,0xae,0x6b,0x57,0x2c,0x58,0x56,0x56,0xb1, +0xed,0xae,0xeb,0x36,0xd7,0xd5,0x1d,0xf4,0xe2,0xfa,0xe6,0xde, +0x89,0x8a,0xfb,0xed,0xf7,0xfe,0xff,0x3d,0x31,0x39,0xe7,0x4e, +0x39,0x6d,0xce,0x39,0x73,0x66,0x02,0xe9,0xd9,0xb7,0x6f,0x4f, +0x20,0x07,0xe3,0x01,0x0d,0x12,0x23,0x63,0x62,0x0c,0x5e,0xb6, +0x5d,0xf1,0x00,0xa8,0x3d,0x01,0x78,0xdb,0x2a,0xaa,0x4f,0x97, +0x58,0x00,0x00,0x04,0x30,0x62,0x2e,0x86,0x0e,0xb1,0x51,0xd1, +0x31,0xb3,0xf7,0xce,0x69,0x0d,0xa0,0x6b,0x14,0x6e,0x5e,0x1e, +0xdb,0xab,0x67,0x9f,0x1f,0xa8,0x76,0xc1,0x00,0xba,0x3d,0x04, +0xc0,0xf9,0x6a,0x6c,0x9f,0x7e,0xa6,0x43,0xf7,0x3c,0xdf,0x01, +0xa8,0xdf,0x0d,0x80,0xab,0x67,0xcf,0x3e,0x6d,0xfd,0xd7,0x55, +0x6f,0xca,0xc0,0x63,0x7b,0xe1,0xf9,0x89,0xc9,0x59,0xe6,0xdc, +0x4d,0x77,0x8e,0x37,0x03,0x80,0xb3,0x01,0x20,0x9b,0x95,0x6e, +0x31,0xa7,0x34,0xfa,0xfd,0x25,0x7e,0x06,0xbf,0xe0,0x57,0x50, +0x3a,0x6e,0x60,0xca,0x24,0x1b,0xf0,0xf8,0xc6,0xf8,0xb9,0x71, +0x7a,0x56,0xc1,0xc8,0x0b,0xbc,0xf3,0xef,0x00,0xb6,0x3d,0x0f, +0x80,0xdb,0xac,0x2c,0xf3,0xc8,0x5c,0x49,0xb2,0x40,0x0a,0x76, +0xc6,0x6f,0x6c,0x96,0xa5,0xc0,0x3c,0x6a,0xe7,0xf8,0x30,0x2c, +0x5f,0x5f,0xfc,0xdc,0x3e,0xdb,0x9c,0x65,0xf9,0xa1,0xbd,0x1c, +0xcb,0x0e,0x31,0x7f,0xc7,0x63,0xb9,0x39,0xf9,0x05,0xef,0x8b, +0x41,0x07,0x00,0x54,0xb5,0xb8,0xdf,0x80,0x35,0x01,0x80,0x82, +0xec,0xcc,0x84,0x46,0x1b,0x87,0xbb,0xb4,0x7f,0x0d,0x68,0xfa, +0x19,0x6e,0x01,0x8f,0xb6,0xdc,0xdf,0x44,0x60,0xe5,0xd2,0xbf, +0xeb,0xfe,0x5e,0x4b,0x95,0x49,0x86,0xe3,0x47,0x1a,0x50,0x80, +0xfc,0xc3,0xf3,0x24,0xf0,0xef,0x5f,0xf1,0xe4,0x81,0xb8,0xbf, +0x8e,0x2a,0x13,0x29,0xd5,0xfb,0x27,0x49,0x06,0xa0,0x97,0xf8, +0x0e,0x24,0xd4,0x40,0x38,0x17,0x30,0x78,0xec,0x0c,0x6a,0x20, +0x7e,0xee,0x46,0x20,0x4c,0x00,0xed,0xa1,0xd1,0xc1,0x91,0xe2, +0x18,0x47,0x86,0xc2,0xa4,0xe9,0xd5,0x80,0xca,0x09,0x07,0x21, +0x61,0x1f,0x68,0x74,0x31,0x75,0x37,0xc0,0x70,0x60,0x78,0xff, +0x8e,0x76,0x7a,0xdf,0x18,0xb6,0x92,0x40,0xa8,0x4c,0x04,0xb0, +0x42,0xe8,0xa3,0x24,0xd4,0x11,0x51,0x03,0x1a,0xbf,0xb7,0xa4, +0x64,0x1f,0xf9,0xb7,0x26,0xd2,0x89,0xef,0xce,0xf8,0x89,0xe0, +0x14,0x90,0x82,0x76,0x76,0x9c,0x06,0x3a,0x10,0x61,0xc7,0x25, +0xf5,0xc6,0x30,0x18,0x1f,0x6e,0xc7,0x59,0xc0,0x01,0x9b,0x1d, +0x97,0x82,0xde,0xa0,0xd8,0x8e,0x3b,0xe0,0xf6,0xf3,0x76,0xdc, +0x11,0x04,0x80,0x9b,0x76,0x9c,0x03,0x5e,0x90,0xb5,0xe3,0x4e, +0x40,0x01,0xf5,0x76,0xdc,0x19,0xcc,0x85,0x7e,0x76,0x5c,0x0e, +0xbc,0xe1,0x69,0x82,0xe3,0x37,0x05,0xac,0xb6,0xe3,0x10,0xe3, +0xbf,0xda,0x71,0x0a,0x28,0xe1,0x7b,0x3b,0x4e,0x03,0x37,0x4a, +0x61,0xc7,0x25,0xc0,0x9b,0x6a,0x64,0xc7,0x19,0xa0,0xa2,0x3a, +0xd8,0x71,0x16,0x78,0x52,0xf1,0x58,0x23,0x28,0x71,0xc4,0x8f, +0x83,0xa9,0x0c,0x3b,0x0e,0xf1,0xf8,0x33,0x76,0x9c,0x02,0x72, +0xea,0x81,0x1d,0xa7,0x41,0x7b,0xea,0x17,0x3b,0x2e,0xa9,0x37, +0x86,0x01,0xde,0x74,0x73,0x3b,0xce,0x02,0x35,0x6d,0xb2,0xe3, +0x52,0xb0,0x96,0x1e,0x68,0xc7,0x1d,0x70,0xfb,0x5b,0x3b,0xee, +0x08,0x52,0x25,0xae,0x76,0x9c,0x03,0xfe,0x92,0x22,0x3b,0xee, +0x04,0x1a,0x4b,0x36,0xdb,0x71,0x67,0x68,0x90,0x5c,0xb6,0xe3, +0x72,0x10,0xc8,0x7c,0xe0,0xab,0x04,0x05,0xac,0x81,0xe0,0x58, +0x89,0xc6,0xec,0x42,0x3b,0x0e,0x31,0x7e,0xc8,0x8e,0x53,0xa0, +0x29,0xfb,0x9d,0x1d,0xa7,0x41,0x43,0x29,0x65,0xc7,0x25,0x20, +0x50,0xda,0xd8,0x8e,0x33,0xa0,0x85,0xd4,0x2e,0x1b,0xb6,0x83, +0xaf,0x74,0x62,0x64,0x4e,0x6e,0x49,0x9e,0x35,0x2d,0xbd,0xc0, +0xe0,0xef,0xeb,0x17,0x6c,0x10,0xdc,0x27,0x32,0x27,0x2f,0xb7, +0x8d,0x21,0xc2,0x66,0x33,0x88,0x1d,0xf9,0x86,0x3c,0x4b,0xbe, +0x25,0xaf,0xc8,0x92,0xd2,0x46,0xe8,0xed,0x65,0xb3,0x8c,0x34, +0x74,0xcf,0xc9,0xce,0x89,0xb7,0xa4,0x15,0xda,0xcc,0x79,0xfe, +0x6d,0x7c,0x7d,0x03,0xc3,0x84,0x1e,0xe1,0x4d,0xe8,0x15,0x3a, +0x5b,0xdb,0x7b,0xfb,0x5b,0xf2,0xf2,0xad,0x39,0xd9,0x06,0x71, +0x54,0xbd,0xfe,0x0f,0x94,0x36,0x1b,0xac,0xf9,0x06,0xb3,0xa1, +0x20,0xcf,0x9c,0x62,0xc9,0x32,0xe7,0x65,0x1a,0x72,0x52,0x3f, +0xca,0xd0,0x0a,0x33,0x4e,0xb3,0xe6,0x17,0x58,0xf2,0x2c,0x29, +0x06,0x6b,0xb6,0x21,0xcb,0x9c,0x5d,0x62,0xc8,0x28,0xcc,0xb3, +0xe6,0xa7,0x58,0x93,0x0b,0x30,0xd5,0x7c,0x43,0x71,0x4e,0x9e, +0x2d,0xa5,0xd8,0x9a,0x62,0x69,0x63,0xca,0xb1,0xa5,0x08,0x62, +0xa5,0x98,0x4b,0xba,0x5b,0x33,0x2d,0x86,0x88,0xa4,0x24,0x6b, +0x76,0x66,0x2b,0x43,0x2f,0x73,0xa1,0xcd,0x50,0x64,0xce,0x36, +0xa4,0x58,0xf2,0x0c,0x71,0x66,0x73,0x36,0x6e,0xb2,0x5a,0x30, +0x4d,0xb1,0x31,0x3e,0x27,0x3f,0xcb,0x6c,0xb3,0x64,0xa7,0x17, +0x14,0xe4,0xb6,0x6b,0xdb,0xb6,0xb8,0xb8,0xb8,0x4d,0x12,0x26, +0x94,0x25,0xd2,0x69,0x93,0x9c,0x93,0x55,0xaf,0xc3,0x9a,0x94, +0x25,0xb4,0xf4,0x4d,0xc7,0x12,0xc7,0xe4,0x64,0x17,0x18,0xfa, +0xe4,0xa4,0x16,0x14,0x9b,0xf3,0x2c,0x82,0x0a,0x36,0x6b,0xb2, +0x25,0x3b,0x1f,0xcb,0x59,0x98,0x2d,0x30,0x2a,0x48,0xb7,0x18, +0xfa,0x74,0x89,0x33,0xf4,0xcc,0xb5,0x64,0x93,0xc1,0x71,0x64, +0x40,0x2b,0xc3,0x07,0x8b,0xf8,0xb5,0xf1,0x6b,0x63,0x10,0x89, +0xd9,0xe7,0x8a,0x96,0x28,0x32,0x5b,0x6d,0xe6,0x24,0x9b,0xc5, +0x50,0x6c,0x2d,0x48,0xc7,0x86,0x89,0x89,0xe8,0x6d,0x30,0x17, +0xb4,0x33,0xd8,0xe5,0xc8,0x4f,0xce,0xb3,0xe6,0x16,0xe4,0xb7, +0xc9,0xb7,0xda,0xda,0xe4,0xe4,0xa5,0xb5,0xed,0x19,0x13,0xf7, +0xbf,0x7b,0xf2,0xad,0x59,0xb9,0x98,0x92,0x2d,0xa7,0xd8,0x92, +0x97,0x6c,0xc6,0x0c,0xcc,0xff,0xd5,0x92,0x96,0x6f,0x33,0xe7, +0xa7,0x63,0xb1,0xb3,0x0b,0xb3,0x92,0xb0,0xdc,0xa3,0x2c,0x79, +0x39,0xb9,0x36,0x33,0x36,0x76,0xbd,0x06,0xb3,0x0d,0x9b,0x2b, +0xdb,0x5c,0x50,0x7f,0xa2,0x25,0x7f,0x94,0xa5,0xa0,0xe0,0x53, +0x8f,0x7d,0x78,0xbe,0x35,0x2d,0xdb,0x54,0x68,0x4b,0x33,0xe7, +0x59,0xb1,0x75,0x23,0xb1,0x67,0xd9,0xb0,0x76,0x86,0xd4,0x9c, +0xbc,0xac,0x7c,0x10,0x09,0x72,0x40,0x2e,0x28,0x01,0x79,0xc0, +0x0a,0xd2,0x40,0x3a,0x28,0xc0,0x99,0xc8,0x1f,0xf8,0x02,0x3f, +0x10,0x8c,0xb1,0x2e,0xc0,0x04,0xba,0x63,0x28,0x8c,0xca,0xc3, +0xe3,0xda,0x60,0x3c,0x02,0xe7,0x13,0x1b,0x86,0x9f,0x66,0xe4, +0x8b,0x4f,0x16,0x0c,0x2d,0x18,0x16,0xe1,0xf7,0x14,0x3c,0xf2, +0xc3,0xdc,0x5e,0x78,0xb4,0x05,0x8c,0xc4,0x58,0x77,0x4c,0x25, +0x1b,0xbf,0xe2,0xf1,0x73,0x1a,0x28,0xc4,0xed,0x66,0x3c,0xde, +0x1f,0x8f,0xf5,0xc5,0x3f,0x81,0x20,0xec,0xe3,0x9c,0x0f,0xd8, +0x87,0xb9,0x1f,0x66,0xb6,0xfe,0xc7,0xdc,0xfe,0x22,0xc7,0x7c, +0x2c,0x89,0xd0,0x6f,0xa8,0x47,0xeb,0xdf,0xe7,0xff,0x53,0xa6, +0x9d,0x18,0xb7,0x8a,0xf2,0x9b,0xf1,0xab,0x00,0xd3,0x32,0x63, +0xd9,0x2d,0x20,0x4b,0xa4,0x9e,0x89,0xdb,0x72,0x40,0xea,0xbf, +0xd8,0xa1,0x95,0x5d,0xe3,0x34,0x71,0x76,0x81,0x28,0x85,0xa0, +0xb5,0x40,0x4d,0x90,0x43,0x98,0x9f,0x8d,0xad,0x6a,0x00,0x19, +0x58,0xd6,0x3c,0x71,0x54,0x0a,0x7e,0x4f,0xc6,0x63,0x89,0xac, +0x02,0xcf,0x62,0x91,0x9a,0x0d,0xf7,0x14,0xe3,0x56,0x81,0x6f, +0x1b,0xcc,0x27,0x47,0x6c,0xf9,0x60,0xad,0x14,0x4c,0xa9,0x04, +0xe3,0x56,0x2c,0x8d,0x45,0xb4,0x7e,0x12,0xfe,0x11,0xb8,0x64, +0x8a,0x52,0xf4,0xc2,0xfd,0x85,0xe2,0x7a,0x14,0x89,0x3c,0x0d, +0x22,0x9d,0x3c,0x0c,0xe3,0xf0,0xb3,0xd0,0x42,0x46,0x59,0x71, +0x6b,0x81,0xbd,0xe7,0xc3,0xc8,0x78,0xcc,0x21,0x5f,0x94,0x55, +0xb0,0x46,0xb6,0xb8,0x96,0x05,0x58,0xbb,0x76,0xa0,0x2d,0xfe, +0x29,0x16,0x7f,0xda,0x60,0x6e,0x44,0xa2,0xac,0x7a,0xf2,0xb4, +0xc1,0x9a,0xe4,0xe0,0x96,0x7f,0x9f,0x61,0xc5,0x73,0xb2,0x3e, +0x8e,0xe9,0x8b,0x47,0x11,0x1b,0xc7,0x88,0x14,0x04,0x0f,0xeb, +0x23,0xda,0xb5,0x00,0x8f,0x36,0x8b,0x96,0xfb,0xb0,0x0a,0x36, +0xd1,0x46,0x16,0xd1,0x3e,0xc4,0x9e,0x85,0x22,0x4f,0x22,0x77, +0x01,0xa6,0x64,0x11,0x67,0x77,0xc1,0xda,0x19,0x40,0x4f,0xcc, +0xd9,0x22,0x6a,0xf2,0x89,0x72,0xdc,0x67,0x14,0x04,0xdd,0xff, +0xe9,0x23,0x7e,0x58,0x32,0x3f,0xd1,0x93,0x3f,0x49,0xf6,0x39, +0xdf,0x4f,0x3e,0x21,0x58,0xca,0x2a,0xfa,0x5a,0x92,0x68,0x23, +0x83,0xb8,0x52,0x82,0x1c,0xc4,0x63,0x62,0xf0,0x7a,0xf4,0x16, +0xf1,0x02,0x6c,0x03,0xc3,0x3f,0xec,0x91,0x8f,0x69,0x0a,0x6b, +0x9f,0x2b,0xc6,0x48,0x1b,0x51,0x06,0x1b,0x86,0xc2,0xaa,0xa7, +0xe1,0xfe,0x9e,0x78,0x7e,0xdc,0xff,0xaf,0x39,0x9d,0xf1,0x73, +0xb1,0xe8,0x83,0x66,0x30,0x4a,0xec,0x4b,0xc2,0x58,0x32,0xf6, +0x89,0xd6,0xa2,0xc7,0x65,0xe1,0xf9,0x82,0x8f,0xa4,0xe1,0x31, +0xa9,0xb8,0x37,0x07,0x63,0x82,0x46,0xc9,0xf6,0x95,0x17,0x74, +0x11,0xe2,0x54,0xf0,0x1b,0x81,0x83,0x10,0x9d,0xc2,0x8c,0x11, +0x78,0x2e,0xb1,0x7b,0x1a,0x5e,0xe5,0x2c,0x3c,0xd6,0x2c,0xfa, +0x77,0x3e,0xf0,0x11,0xc7,0x09,0x74,0x89,0x1d,0x6c,0xa2,0x04, +0x82,0x65,0x93,0xc5,0x31,0x16,0xd1,0x0a,0xff,0xe7,0x31,0x82, +0x1c,0x36,0xf1,0x29,0xdd,0xce,0x29,0x5b,0x94,0x37,0xc9,0xbe, +0xc6,0xa3,0x44,0x98,0x23,0xd2,0x30,0xdb,0xa3,0xe9,0xdf,0x47, +0x08,0x5e,0x4b,0x3c,0x3a,0x5b,0xb4,0xff,0xff,0xe2,0x28,0xe4, +0xa5,0x51,0xa2,0xf7,0x17,0xfc,0xeb,0x9c,0xcf,0xa9,0xe7,0x8b, +0x59,0x2d,0x1b,0xc7,0xa1,0x10,0x55,0x69,0xa2,0x7f,0x5a,0xed, +0x56,0x8b,0xb4,0xe7,0x49,0x9b,0xdd,0x5f,0x04,0xdb,0x0a,0xb6, +0xcf,0xc2,0xb3,0x80,0x58,0xbf,0x09,0xaf,0x06,0xa4,0xa2,0x71, +0x10,0xab,0x01,0xf1,0x59,0xe2,0x30,0x12,0xc3,0x1b,0xb8,0x12, +0x67,0x71,0xcc,0xf9,0x82,0x50,0x10,0x0e,0x06,0x63,0xda,0xa3, +0xc0,0x38,0x58,0x0a,0xcb,0xe1,0x7c,0xb8,0x06,0xee,0x86,0xdf, +0xc1,0xf7,0x94,0x86,0x0a,0xa6,0x06,0x51,0xc7,0xa8,0x73,0xd4, +0x7d,0x5a,0x42,0x3b,0xd1,0x0a,0x5a,0x45,0x6b,0xe8,0x46,0x74, +0x73,0xfa,0x94,0x44,0x23,0x69,0x2c,0x69,0x2b,0x19,0x2e,0x49, +0x96,0x64,0x4a,0x0a,0x25,0x5f,0x49,0xbe,0x95,0xfc,0x24,0x79, +0xc3,0x34,0x91,0x77,0xd2,0x4d,0xd1,0xad,0xd4,0xbd,0x31,0x38, +0x1b,0x54,0x06,0x6f,0x83,0xce,0xd0,0xd0,0xd0,0xd4,0xf0,0x85, +0xc1,0xd7,0x10,0x60,0x68,0x67,0x88,0x32,0x0c,0x37,0xe4,0x1a, +0x4a,0x0c,0xd3,0x0d,0x6b,0x0c,0xeb,0x0d,0x1b,0x0d,0x3b,0x0d, +0x7b,0x0c,0xfb,0x0d,0x47,0x0c,0xc7,0x0d,0x27,0x7d,0x94,0x3e, +0x6a,0x9f,0x86,0x3e,0x4d,0x7d,0xda,0xf8,0xf4,0xf6,0x49,0xf0, +0x59,0xea,0xb3,0xd5,0x67,0xaf,0xcf,0x41,0x9f,0xa3,0x3e,0x67, +0x7c,0xce,0x36,0xa4,0x1a,0xb2,0x0d,0x5d,0x1a,0x2a,0x1a,0xaa, +0x1a,0x7a,0x37,0xd4,0x35,0x6c,0xd9,0x30,0xa8,0x61,0xe7,0x86, +0x89,0x0d,0x2d,0x4d,0x56,0x35,0xb9,0xd8,0x4c,0xd9,0x2c,0xae, +0xa5,0x9b,0x2f,0xf8,0xeb,0x2e,0x4f,0xfd,0xfd,0xfe,0xfd,0xbb, +0xf7,0xef,0xc5,0xea,0xd5,0x0f,0xfb,0x6f,0x04,0x18,0x82,0x57, +0x75,0x34,0x58,0x2d,0xea,0xb4,0x1a,0xee,0x82,0x57,0xe0,0x5b, +0xca,0x53,0xd4,0xe9,0x28,0x75,0x96,0xba,0x4b,0x03,0x9a,0xfd, +0xa8,0x53,0x53,0xac,0x13,0x90,0x34,0x90,0x34,0x91,0xf8,0x4a, +0x92,0x24,0x19,0x92,0x3c,0xc9,0x5c,0x49,0xa5,0xe4,0x3b,0xc9, +0x6f,0x4c,0x63,0xac,0xd3,0x78,0xac,0xd3,0x6a,0x03,0x30,0xb8, +0x1a,0x3c,0x0d,0x0d,0x0c,0x06,0xac,0x53,0x73,0x43,0x5b,0x83, +0xbf,0x21,0xd4,0xae,0x53,0x81,0x61,0xbc,0x5d,0xa7,0xcd,0x86, +0x2f,0x0d,0xfb,0x0c,0x87,0xfe,0xa1,0x53,0x2f,0x9f,0x3e,0x3e, +0x73,0x7d,0xb6,0xf8,0xec,0xf6,0x39,0xe0,0x73,0xa4,0x9e,0x4e, +0x6e,0x58,0x27,0xaf,0x7a,0x3a,0xa5,0x34,0x01,0x76,0x9d,0xe4, +0x58,0xa7,0x3b,0x3c,0xfc,0xa8,0x93,0x0c,0x80,0xf7,0xf7,0xf1, +0x6b,0x9d,0x58,0xf3,0x36,0x7d,0xef,0xf9,0xe9,0x4c,0xf0,0xf7, +0x6f,0x7f,0xef,0x85,0x3d,0x61,0x47,0xfb,0x11,0xc2,0x11,0x4a, +0x71,0x9d,0x57,0x87,0xdb,0xd3,0xf1,0xab,0xd7,0xdf,0xbd,0xc1, +0x7f,0xfd,0x7b,0x99,0x03,0xc0,0x93,0xc1,0x02,0xf6,0x30,0x92, +0xb4,0x3c,0x34,0x3e,0x35,0xe2,0xf7,0x3e,0x0f,0xdb,0x3c,0x0c, +0x78,0xf2,0xfa,0x71,0x05,0xfe,0x99,0xf7,0x50,0xfe,0xd0,0xe9, +0x21,0x87,0x5b,0xa5,0x0f,0xd9,0x87,0x92,0x87,0xd4,0x43,0x58, +0x33,0xaf,0xa6,0xbc,0x66,0xf8,0x23,0x58,0x53,0x48,0x66,0x3d, +0xda,0x85,0x5f,0xab,0xf1,0x4f,0xf9,0xa3,0x59,0x0f,0xd6,0x3f, +0xd4,0x3d,0x54,0x03,0xf0,0x00,0x9f,0x4d,0x1e,0x4c,0x7e,0x50, +0xf4,0x20,0xed,0x41,0xdc,0x03,0xe3,0x83,0xc0,0x07,0x43,0xef, +0x55,0x7d,0xd7,0xba,0xfa,0x35,0x00,0x55,0x3d,0xf1,0x61,0xe0, +0x14,0x33,0x4c,0x62,0xc1,0x9e,0x78,0x03,0x4f,0x7f,0x81,0x5f, +0x6f,0xb1,0xc4,0xae,0x50,0x2d,0x1e,0x26,0xae,0x51,0x37,0xa8, +0x2a,0xea,0x25,0x55,0xf7,0x41,0x4e,0xea,0xad,0xe0,0x77,0x1f, +0x9e,0x68,0x57,0xfc,0x52,0x88,0x58,0x14,0xbd,0x96,0x5e,0x4f, +0x6f,0xa4,0xb7,0x4b,0x5c,0xb1,0x1f,0x76,0x94,0xe0,0x53,0x99, +0xf8,0x1a,0xca,0xc8,0x31,0x8f,0xa6,0x4c,0x0b,0xa6,0x8d,0x78, +0xf4,0x68,0x03,0xfe,0xe5,0x1f,0xd3,0xe0,0x5f,0x5b,0xdd,0x19, +0x35,0xd3,0x0a,0xc3,0xf6,0xff,0x68,0x0f,0x24,0xaf,0x7f,0x99, +0xd1,0x50,0xe0,0xf5,0xf1,0x64,0xd6,0x0d,0xc7,0x61,0x22,0x98, +0x01,0xb6,0xe3,0xb8,0xec,0x85,0x4f,0x3c,0x42,0xd6,0x98,0x06, +0xe6,0x80,0x61,0x38,0xca,0x06,0xe3,0xf8,0x0d,0x01,0x43,0x41, +0x02,0x58,0x0c,0x16,0x80,0x0a,0x1c,0xbf,0xbd,0x71,0x76,0x2b, +0xc2,0xd1,0x3a,0x0b,0x0c,0x92,0x08,0x91,0x49,0xe3,0x73,0x03, +0x83,0x23,0x52,0x8a,0xcf,0x03,0xf9,0xd8,0x6b,0x0b,0xc0,0x6c, +0x49,0x1c,0xce,0xa0,0x9b,0xc1,0x36,0xb0,0x09,0xec,0x00,0x63, +0xc0,0x58,0x09,0x00,0xa5,0x60,0x22,0x8e,0xf5,0x55,0xf8,0xd4, +0x38,0x9e,0xfe,0x1b,0x4c,0x06,0x73,0x69,0x47,0x5a,0x26,0xa1, +0xf0,0x19,0x66,0x1c,0x58,0x26,0x71,0xa2,0x1d,0xc0,0x24,0x90, +0x41,0xfb,0xd3,0x6d,0xe9,0x00,0x90,0x05,0xa7,0xc3,0x49,0x70, +0x2a,0xf6,0xfe,0x69,0x70,0x36,0xfc,0x0f,0x5c,0x09,0xb7,0xc1, +0xf5,0x70,0x13,0xdc,0x0c,0xbf,0x86,0xc7,0xe0,0x49,0x78,0x0a, +0xae,0x83,0xb7,0xe0,0x7d,0x78,0x07,0xde,0x83,0x4f,0xf0,0xa9, +0x69,0x1e,0x7c,0x44,0xe1,0xc3,0x27,0x05,0x29,0x8a,0xf2,0x82, +0xef,0xe0,0x00,0x70,0x01,0x7c,0x0d,0xce,0x82,0x4a,0x70,0x0e, +0x5c,0x01,0x7f,0x80,0xd7,0xd8,0xab,0x78,0xf0,0x37,0x78,0x0f, +0x75,0xd0,0x13,0x6a,0x60,0x03,0xf0,0x16,0xfa,0xc3,0x30,0x68, +0x84,0x21,0x30,0x02,0x86,0x82,0xf9,0xb0,0x13,0x4c,0x81,0x09, +0xd0,0x0c,0x93,0x60,0x09,0x1c,0x06,0x47,0xc3,0x99,0xe0,0x12, +0x9c,0x0c,0xce,0xc0,0x59,0xe0,0x32,0x5c,0x0e,0xfe,0x84,0xab, +0xc0,0x5f,0x70,0x35,0x40,0x70,0x05,0x78,0x05,0xd7,0x80,0x5a, +0xb8,0x16,0xbc,0x81,0x3b,0xa0,0x04,0x6e,0x00,0x75,0x70,0x0b, +0x3e,0xfc,0xef,0x84,0x0c,0xdc,0x08,0xde,0xc1,0x83,0x50,0x0e, +0x0f,0x40,0x67,0x78,0x18,0x7b,0xc6,0x21,0xe8,0x02,0x8f,0x42, +0x35,0x3c,0x02,0x55,0xf0,0x1c,0x6c,0x08,0xbf,0x81,0x06,0x78, +0x1c,0x7a,0xc1,0xb3,0xd0,0x07,0x9e,0x86,0x1e,0xf0,0x3c,0x6c, +0x04,0x2f,0xc1,0x66,0xf0,0x32,0x6c,0x0e,0xbf,0xc0,0x11,0xde, +0x02,0x56,0xc2,0x56,0xf0,0x2a,0x6c,0x09,0xaf,0xc1,0xd6,0xf0, +0x3a,0x6c,0x03,0x6f,0xc0,0xb6,0xb0,0x0a,0xfa,0xc1,0x9b,0xd0, +0x17,0x06,0xc0,0xdb,0x30,0x10,0x3e,0x84,0x1d,0xe1,0x5d,0x18, +0x04,0x6b,0x60,0x07,0xf8,0x3b,0xec,0x0e,0x5f,0xc0,0x1e,0xf0, +0x25,0xec,0x05,0xff,0xc0,0x51,0xf4,0x27,0xec,0x0d,0xff,0x82, +0x7d,0xe1,0x6b,0xd8,0x07,0xbe,0x82,0xf1,0xb0,0x0e,0x0e,0x85, +0x6f,0xe1,0x60,0xf8,0x06,0x0e,0xa2,0x64,0x30,0x83,0x92,0xc2, +0x34,0xf8,0x1e,0x0e,0xa7,0x1c,0xa1,0x95,0x62,0x61,0x2a,0xe5, +0x00,0xd3,0x29,0x35,0x2c,0xa2,0xbc,0xe1,0x28,0xaa,0x01,0x65, +0x80,0xe3,0xa9,0x86,0x70,0x22,0xe5,0x03,0x27,0xc0,0xfe,0xf0, +0x29,0x34,0x51,0x1c,0xcc,0x84,0x53,0xc0,0x37,0xf0,0x04,0xf4, +0x86,0xdf,0xc2,0x60,0x0a,0xc0,0x44,0xca,0x0d,0x8e,0xa0,0x14, +0x30,0x8f,0x72,0x87,0x05,0x94,0x12,0xe6,0xc3,0x39,0xe0,0x2a, +0x5c,0x06,0x5e,0xc2,0xc7,0x30,0x1c,0x22,0xd8,0x0f,0xf2,0x70, +0x88,0x84,0xa5,0xdf,0x4b,0x1c,0x24,0xce,0x74,0x9d,0x04,0x4a, +0xdc,0x25,0x4a,0x89,0x4a,0x22,0x97,0xb8,0x48,0x3c,0xb0,0xbf, +0xbb,0x49,0xbc,0x25,0x5e,0x12,0x85,0x44,0x2d,0x31,0x48,0x74, +0x12,0x1f,0xea,0x2a,0x55,0x49,0xbd,0xa7,0x2e,0x50,0xd7,0xa9, +0xb7,0x54,0x1d,0xf5,0x8e,0xfa,0x9b,0x7a,0x4c,0x3d,0xc5,0xe7, +0xfe,0xfb,0x54,0x35,0xf5,0x07,0xc5,0x53,0xc3,0xa8,0x04,0x6a, +0x38,0x95,0x48,0x99,0xa9,0x64,0x2a,0x85,0xb2,0x50,0xa9,0x54, +0x1a,0x95,0x4e,0x65,0x50,0x5f,0x50,0x2d,0xa9,0x56,0x54,0x1b, +0xca,0x97,0xf2,0xa7,0x02,0x28,0x23,0xce,0x8b,0xa1,0x54,0x18, +0xd5,0x81,0xea,0x44,0x85,0x53,0x11,0x94,0x89,0x8a,0xa2,0xa2, +0xa9,0x18,0xaa,0x33,0xd5,0x85,0xea,0x46,0xc5,0x51,0x3d,0xa8, +0x9e,0x54,0x6f,0xaa,0x0f,0xd5,0x8f,0xea,0x4f,0x0d,0xc4,0x19, +0x74,0x08,0x35,0x8b,0x9a,0x4d,0x9d,0xa0,0xa6,0x51,0xe5,0xd4, +0x61,0x9c,0x4f,0x8f,0x51,0xc7,0xa9,0x35,0xd4,0x3a,0xea,0x24, +0xb5,0x9c,0x5a,0x4a,0xed,0xa6,0x8e,0x50,0x6f,0xa8,0x43,0xd4, +0x2d,0x6a,0x01,0xf5,0x23,0xb5,0x91,0x66,0xa9,0x6f,0xa8,0x8b, +0x54,0x19,0x75,0x99,0x9a,0x41,0x5d,0xa1,0x66,0xe2,0x28,0x9f, +0x4f,0xdd,0xa1,0x16,0x51,0x0f,0xa8,0x15,0x54,0x0d,0xb5,0x92, +0x7a,0x44,0xad,0xa6,0x1e,0x52,0xab,0xa8,0x27,0xd4,0x5a,0xea, +0x7b,0x6a,0x3d,0xf5,0x9c,0xda,0x42,0x33,0xd4,0x19,0xea,0x67, +0x6a,0x2b,0xf5,0x0b,0xb5,0x0d,0xe7,0x84,0x2f,0xa9,0x3f,0xa9, +0x3d,0xd4,0x2b,0x6a,0x2f,0xf5,0x2b,0xb5,0x9d,0xfa,0x8b,0xda, +0x4f,0x21,0xea,0x00,0x0d,0xa9,0x53,0x34,0x4d,0x7d,0x45,0x4b, +0xa8,0xaf,0xa9,0x6f,0xa9,0x9b,0xd4,0x3c,0xaa,0x02,0xef,0x56, +0x93,0x70,0x76,0x9f,0x48,0x9d,0xa7,0xa6,0xe2,0x8c,0x32,0x87, +0xa6,0xa8,0xd3,0x38,0xaf,0xcc,0xa5,0x6e,0x53,0x0b,0xa9,0xbb, +0xd4,0x62,0xea,0x3b,0x6a,0x19,0x75,0x8f,0x5a,0x42,0xfd,0x40, +0x6d,0xa0,0x9e,0x51,0x9b,0xa8,0xdf,0xa8,0x1d,0xd4,0xef,0xd4, +0x4e,0xea,0x05,0xb5,0x8b,0x7a,0x4d,0xed,0xa3,0x2e,0x51,0xd3, +0xa9,0x5a,0xea,0x20,0xf5,0x13,0xb5,0x99,0xf2,0x84,0x23,0x29, +0x15,0x2c,0xa4,0x3c,0x60,0x31,0x2c,0x03,0xe7,0xe1,0x0c,0x70, +0x11,0x2e,0x02,0xb7,0x60,0x05,0xb8,0x03,0x97,0x80,0xbb,0x70, +0x29,0xf8,0x16,0x2e,0x06,0xb7,0xe1,0x5c,0x70,0x0d,0xce,0x07, +0x37,0xe0,0x02,0x70,0x13,0x2e,0x04,0x55,0x70,0x1e,0xb8,0x0e, +0xb7,0x42,0x08,0xb7,0x43,0x1a,0xef,0x3b,0x2c,0xde,0x4f,0xa5, +0x70,0x0f,0xce,0xcc,0x7b,0xa1,0x0c,0xee,0x83,0x1c,0xfc,0x12, +0x3a,0xc0,0x33,0x50,0x0f,0xbf,0x82,0x5a,0xbc,0xd3,0xb6,0x83, +0x0f,0x60,0x7b,0xf8,0x1c,0x76,0x86,0xbf,0xc0,0xae,0xf0,0x57, +0xd8,0x0d,0xfe,0x06,0xe3,0xe0,0xcf,0xb0,0x0b,0xfc,0x1e,0x46, +0xc2,0x1f,0x61,0x34,0x7c,0x06,0x63,0xe0,0x4f,0x30,0x16,0xfe, +0x00,0xa3,0x28,0x1a,0x26,0x53,0x0c,0xb4,0x50,0x4e,0xd0,0x46, +0xc9,0x61,0x36,0xe5,0x02,0x73,0x28,0x57,0x98,0x4b,0x39,0xc3, +0x2c,0x4a,0x0b,0xc7,0x52,0x1a,0x38,0x86,0xd2,0xc1,0x71,0x94, +0x1e,0x96,0x4a,0x7a,0x49,0xba,0x4b,0x7a,0x4b,0x7a,0x48,0xe2, +0x25,0x7d,0x24,0xfd,0x24,0xfd,0x25,0x03,0x24,0x03,0x25,0x83, +0x25,0x43,0x24,0x89,0x12,0xb3,0x58,0x45,0x5a,0x70,0xdd,0x90, +0x82,0xeb,0x86,0x32,0x30,0x1d,0x2c,0x97,0x0c,0xc2,0x35,0xc0, +0x1e,0xb0,0x17,0xec,0x03,0xfb,0xc1,0x16,0x70,0x00,0x1c,0xa4, +0xdb,0xd1,0x9d,0x68,0x5f,0xda,0x8f,0x0e,0xa4,0x8d,0x74,0x10, +0x1d,0x4c,0x87,0xd0,0xa1,0x74,0x18,0xdd,0x9e,0xee,0x40,0x77, +0xa4,0x4d,0x74,0x24,0x1d,0x8d,0x33,0x71,0x5f,0xba,0x1f,0x1d, +0x43,0xc7,0xd2,0x5d,0xe8,0xce,0x74,0x57,0xba,0x17,0xdd,0x8d, +0xee,0x4d,0x35,0x05,0xe5,0xe0,0x3f,0x60,0x35,0xdd,0x93,0xee, +0x4e,0xf7,0xa0,0xe3,0x24,0x4d,0x25,0xcd,0x01,0x0b,0x6b,0xc5, +0xdb,0x1d,0x84,0x33,0xe5,0x87,0x8c,0xf9,0x7f,0xf1,0xef,0xff, +0x22,0xaf,0x86,0x81,0xf6,0xa0,0x03,0xe8,0x08,0x3a,0xe1,0x4a, +0x26,0x02,0xd7,0x4a,0x91,0xff,0xc8,0xb4,0x3a,0xa0,0xc7,0x35, +0x81,0x0f,0x68,0x08,0x1a,0x81,0xc6,0xa0,0x09,0x68,0x0a,0x9a, +0x81,0xe6,0xe0,0x0b,0xd0,0x02,0xb4,0xc4,0x35,0x79,0x6b,0x5c, +0xcf,0xb6,0x15,0xcf,0x98,0xfe,0x20,0x00,0x9f,0xd5,0x8c,0x20, +0x08,0x9f,0x36,0xff,0x77,0x76,0xe6,0x80,0x13,0x70,0x06,0x72, +0xe0,0x02,0x5c,0x81,0x1b,0x50,0x00,0x25,0x70,0x07,0x2a,0xa0, +0x06,0x1e,0xc0,0x13,0x78,0x01,0x6f,0xa0,0xc1,0x35,0x96,0xf6, +0x43,0x0e,0xc7,0xbb,0x9b,0x90,0x7d,0x57,0xe2,0xcc,0x7b,0x0b, +0x56,0x53,0x14,0xce,0xa8,0x17,0x70,0x4e,0x3d,0x87,0xb3,0xea, +0x15,0xf0,0x1a,0xf0,0x38,0xa7,0x0a,0x19,0xd5,0x13,0xe7,0x54, +0x9c,0x51,0x71,0x3e,0x35,0xe2,0x8c,0x1a,0x02,0x43,0x71,0x46, +0x4d,0xc0,0xd9,0x14,0xe7,0x52,0xbc,0x36,0x93,0xc5,0x5d,0x60, +0x2c,0x58,0x8e,0x2b,0xb4,0x01,0xb8,0x6e,0x2b,0x05,0x13,0x24, +0x14,0xde,0x0d,0x16,0xe1,0xac,0xfe,0x08,0xac,0x05,0x73,0xc1, +0x12,0xb0,0x14,0xec,0xc0,0xbb,0xc0,0x46,0xaa,0x29,0xd5,0x84, +0x6a,0x0e,0xd6,0xe0,0x7d,0x62,0x12,0x36,0xde,0x1f,0xb0,0x13, +0xae,0x07,0x33,0xc1,0x2a,0xb0,0x1a,0x6c,0x05,0x0b,0xa9,0xc6, +0x78,0xf7,0xc8,0x00,0x43,0x24,0x71,0x78,0x6f,0x28,0xc7,0x59, +0x1f,0x67,0x3f,0x7c,0x22,0x19,0x20,0x7a,0x81,0xe0,0x0f,0xf3, +0xc1,0x4a,0x38,0x9a,0x6a,0x80,0xab,0xd6,0x2d,0xe2,0x69,0xfa, +0x34,0xf8,0x0a,0x7b,0xc6,0x32,0xec,0x27,0xa9,0x60,0x14,0xde, +0x4b,0x36,0xe1,0x1d,0x65,0x33,0xde,0x47,0xc8,0xfe,0xf1,0xb5, +0xb0,0x77,0x60,0x0d,0xef,0x8b,0xbb,0x86,0x04,0x7a,0x48,0x24, +0x74,0x1d,0xfd,0xb7,0x3d,0x77,0x39,0xe1,0xcc,0xe5,0x2c,0x61, +0xc4,0x2a,0x14,0xff,0x7b,0x5f,0x00,0xda,0x7f,0xbc,0x43,0xac, +0xf7,0x0f,0x02,0x09,0x4e,0x8a,0x10,0x3a,0xd5,0xbb,0xfa,0x11, +0x9e,0xbb,0xd4,0xba,0x62,0x33,0x02,0x86,0x81,0xc2,0x3b,0xeb, +0x24,0x3e,0x48,0x29,0xf1,0x9d,0x16,0xde,0x1d,0x24,0xb3,0x9c, +0x20,0xdf,0xd1,0x89,0x3e,0xe7,0x24,0xe1,0x97,0xf0,0x2f,0xdf, +0x34,0x78,0xfb,0x27,0x83,0x3b,0x22,0x8e,0xb8,0x9c,0xc7,0xe0, +0xfb,0xef,0x15,0xf8,0x3d,0x6a,0xa2,0x1b,0x3d,0x11,0xd3,0xc7, +0xeb,0xe6,0x82,0xd7,0xc8,0x80,0xd7,0x3c,0x00,0x7b,0x48,0x6f, +0x30,0x08,0xeb,0x9b,0x89,0x57,0x68,0x2c,0x98,0x82,0x7d,0x75, +0x29,0xb6,0xe2,0x16,0xb0,0x1b,0x1c,0x04,0x27,0xc0,0x37,0xe0, +0x32,0xb8,0x09,0x9e,0x80,0xdf,0xc0,0x5f,0x78,0x65,0x38,0xa8, +0xc0,0xbb,0x8d,0x01,0xef,0x30,0x6d,0x61,0x30,0xde,0x37,0xa2, +0x71,0x64,0x0e,0x80,0x43,0xf0,0x1e,0x67,0x85,0xb9,0x38,0x2b, +0x8c,0x83,0x53,0xe0,0x2c,0xb8,0x00,0xaf,0xc4,0x1a,0x6c,0x99, +0x5d,0x78,0xdf,0x3a,0x8e,0x23,0xfb,0x12,0xde,0x75,0xbe,0xc5, +0xfb,0xcc,0x0f,0x38,0x9a,0x5f,0x41,0x1e,0xef,0xa8,0x8e,0x94, +0x92,0xf2,0xa6,0x7c,0xa8,0xe6,0x54,0x5b,0x2a,0x08,0x67,0xd9, +0x28,0x9c,0x55,0xe3,0x71,0x1e,0xb5,0x50,0x23,0xa8,0x71,0x38, +0x87,0xae,0xc4,0x59,0xee,0x20,0xce,0x78,0xd7,0x71,0x4e,0xfc, +0x89,0x7a,0x43,0x33,0xb8,0x32,0xd5,0xd3,0xad,0x70,0xbc,0xc5, +0xd0,0x7d,0xe8,0x44,0x3a,0x8b,0x1e,0x45,0x4f,0xa3,0xe7,0xd0, +0x0b,0xe9,0xff,0xd0,0x1b,0xe8,0x5d,0xf4,0x7e,0xfa,0x28,0x7d, +0x9a,0x3e,0x47,0x5f,0xa7,0xef,0xd2,0x35,0xf4,0x0f,0xf4,0xaf, +0xf4,0x2b,0x9a,0xc7,0x5e,0xe1,0x88,0x77,0x08,0x0f,0xbc,0x2f, +0x08,0xd5,0x79,0x98,0x24,0x1a,0x47,0x7f,0x92,0xa4,0x40,0x32, +0x59,0x52,0x26,0x59,0x20,0x59,0x2a,0x59,0x2d,0xd9,0x24,0xd9, +0x29,0xd9,0x2f,0x39,0x86,0x2b,0xf6,0x33,0x92,0x4b,0x92,0x1b, +0x92,0xbb,0x92,0x27,0x92,0xdf,0x25,0x3c,0x03,0x19,0x29,0xa3, +0x64,0x3c,0x18,0x2d,0xd3,0x88,0x69,0xcb,0xb4,0x63,0x3a,0x30, +0x91,0x4c,0x57,0xa6,0x37,0x33,0x90,0xb1,0x30,0x36,0xa6,0x98, +0x19,0xc3,0x4c,0x62,0x66,0x30,0xf3,0x98,0x25,0xcc,0x2a,0x66, +0x23,0xb3,0x83,0xd9,0xc7,0x1c,0x65,0xbe,0x62,0xce,0x33,0x57, +0x99,0x7b,0xcc,0x43,0xe6,0x19,0xf3,0x27,0xf3,0x9e,0x65,0x59, +0x35,0xeb,0xcd,0x1a,0xd8,0x66,0x6c,0x1b,0x36,0x90,0x0d,0x63, +0x4d,0x6c,0x17,0xb6,0x3f,0x3b,0x8c,0x4d,0x61,0xad,0x6c,0x0e, +0x5b,0xc0,0x8e,0x66,0x27,0xb2,0xd3,0xd9,0xb9,0x6c,0x05,0xbb, +0x92,0xdd,0xc0,0x6e,0x67,0xf7,0xb2,0x87,0xd9,0x33,0xec,0x15, +0xf6,0x26,0xfb,0x80,0xfd,0x9e,0xfd,0x99,0x7d,0xc9,0xbe,0x61, +0xdf,0x4b,0x1d,0xa5,0x2e,0x52,0xb5,0x54,0x2b,0x6d,0x2c,0x6d, +0x29,0xf5,0x97,0xb6,0x97,0x46,0x4a,0xbb,0x4a,0x7b,0x4b,0x07, +0x4a,0x87,0x4b,0x53,0xa5,0x59,0xd2,0x02,0xe9,0x68,0xe9,0x44, +0xe9,0x74,0x69,0xb9,0x74,0x91,0x74,0xb5,0x74,0xab,0x74,0xb7, +0xf4,0x80,0xf4,0x98,0xf4,0x2b,0xe9,0x65,0xe9,0x4d,0xe9,0x3d, +0xe9,0x23,0xe9,0x33,0xe9,0xef,0xd2,0xbf,0xa4,0xef,0x1c,0x24, +0x0e,0x9c,0x83,0xc2,0xc1,0xcb,0x41,0xef,0xd0,0xc2,0x21,0xc8, +0x21,0xdc,0x21,0xca,0xa1,0xa7,0x43,0x3f,0x87,0xa1,0x0e,0xa9, +0x0e,0x59,0x0e,0x05,0x0e,0xa3,0x1d,0x26,0x3a,0x94,0x39,0xcc, +0x70,0x98,0xe7,0x50,0xe1,0xb0,0xd6,0x61,0xa7,0xc3,0x3e,0x87, +0x23,0x0e,0x67,0x1d,0x2e,0x3a,0x5c,0x73,0xb8,0xed,0xf0,0xd8, +0xe1,0x7b,0x87,0x9f,0x1d,0x5e,0x3a,0xbc,0x71,0x04,0x8e,0xce, +0x8e,0xee,0x8e,0x7a,0xc7,0xc6,0x8e,0x2d,0x1d,0xfd,0x1d,0x43, +0x1d,0xc3,0x1d,0x63,0x1d,0x7b,0x38,0xf6,0x73,0x1c,0xea,0x98, +0xec,0x98,0xe1,0x98,0xeb,0x58,0xe4,0x38,0xd1,0xb1,0xcc,0x71, +0xae,0xe3,0x32,0xc7,0x4d,0x8e,0x3b,0x1d,0xf7,0x38,0x1e,0x72, +0x3c,0xe9,0x78,0xd6,0xf1,0xb2,0xe3,0x4d,0xc7,0x7b,0x8e,0x8f, +0x1c,0x7f,0x73,0x7c,0xed,0x58,0x27,0x83,0x32,0xa9,0xcc,0x49, +0xa6,0x94,0x79,0xcb,0x7c,0x64,0xcd,0x65,0x6d,0x65,0x41,0xb2, +0x0e,0xb2,0x28,0x59,0x37,0x59,0x6f,0xd9,0x50,0x99,0x45,0x96, +0x29,0x2b,0x92,0x8d,0x95,0x4d,0x92,0xcd,0x90,0xcd,0x93,0x55, +0xc8,0xd6,0xc8,0x36,0xca,0x76,0xc8,0x0e,0xc8,0x8e,0xca,0x8e, +0xcb,0xce,0xc8,0xae,0xcb,0xee,0xca,0x6a,0x64,0xbf,0xc9,0x5e, +0x73,0x12,0x8e,0xe3,0xbc,0x39,0x1f,0xae,0x39,0x17,0xcc,0x75, +0xe4,0xba,0x73,0x7d,0xb9,0x64,0x2e,0x83,0x2b,0xe1,0xc6,0x73, +0xe5,0xdc,0x62,0x6e,0x03,0xb7,0x9d,0xdb,0xcb,0x1d,0xe1,0x4e, +0x73,0xd7,0xb8,0x3b,0xdc,0x03,0xee,0x7b,0xee,0x15,0xc7,0x3b, +0x51,0x4e,0x6e,0x4e,0x9e,0x4e,0x7a,0xa7,0x36,0x4e,0x46,0xa7, +0xf6,0x4e,0xdd,0x9c,0xe2,0x9d,0xcc,0x4e,0xe9,0x4e,0xc5,0x4e, +0xe3,0x9c,0xa6,0x38,0x2d,0x74,0x5a,0xe6,0xb4,0xd6,0xe9,0x4b, +0xa7,0x43,0x4e,0xe7,0x9c,0xae,0x3a,0xdd,0x72,0xfa,0xce,0xe9, +0x89,0xd3,0x73,0xa7,0x37,0xce,0xc0,0x59,0xea,0x2c,0x77,0x56, +0x39,0x37,0x70,0x6e,0xe4,0xec,0xef,0x1c,0xea,0xdc,0xd9,0xb9, +0xa7,0x73,0x7f,0xe7,0x61,0xce,0x29,0xce,0x99,0xce,0x79,0xce, +0x25,0xce,0xe3,0x9d,0xa7,0x39,0x2f,0x76,0x5e,0xe1,0xbc,0xde, +0x79,0x9b,0xf3,0x1e,0xe7,0xc3,0xce,0xa7,0x9c,0xcf,0x39,0x5f, +0x75,0xbe,0xe5,0xfc,0x9d,0xf3,0x13,0xe7,0x97,0xce,0x6f,0xe4, +0x40,0xee,0x2c,0xf7,0x96,0xfb,0xc8,0x9b,0xcb,0xdb,0xca,0x83, +0xe4,0x1d,0xe4,0x51,0xf2,0x6e,0xf2,0x78,0xf9,0x20,0x79,0xa2, +0x3c,0x4d,0x9e,0x2d,0x2f,0x94,0x8f,0x91,0x4f,0x92,0xcf,0x90, +0xcf,0x93,0x2f,0x91,0xaf,0x92,0x6f,0x94,0xef,0x97,0x1f,0x93, +0x7f,0x2d,0xbf,0x28,0xbf,0x2e,0xbf,0x2b,0xaf,0x91,0xff,0x20, +0xff,0x55,0xfe,0x4a,0xce,0xbb,0x50,0x2e,0x8e,0x2e,0xae,0x2e, +0x1e,0x2e,0x3a,0x97,0x26,0x2e,0xad,0x5c,0x02,0x5c,0xda,0xb9, +0x44,0xb8,0x74,0x76,0xe9,0xe9,0xd2,0xdf,0x65,0x98,0x4b,0x8a, +0x4b,0xa6,0x4b,0x9e,0x4b,0x89,0xcb,0x78,0x97,0x69,0x2e,0x73, +0x5c,0x16,0xb9,0x2c,0x77,0x59,0xe7,0xb2,0xd5,0xe5,0x4b,0x97, +0x43,0x2e,0x27,0x5d,0xce,0xba,0x5c,0x71,0xa9,0x72,0xa9,0x76, +0x79,0xec,0xf2,0x93,0xcb,0x0b,0x17,0xe4,0xf2,0xb7,0x2b,0xe3, +0xea,0xe4,0xaa,0x74,0xf5,0x76,0xf5,0x71,0x6d,0xee,0xda,0xd6, +0x35,0xc8,0xb5,0x83,0x6b,0x94,0x6b,0x37,0xd7,0x78,0xd7,0x41, +0xae,0x89,0xae,0x69,0xae,0xd9,0xae,0x85,0xae,0x63,0x5c,0x27, +0xb9,0xce,0x70,0x9d,0xe7,0xba,0xc4,0x75,0x95,0xeb,0x46,0xd7, +0x1d,0xae,0xfb,0x5c,0x8f,0xba,0x7e,0xe5,0x7a,0xc1,0xf5,0x9a, +0xeb,0x1d,0xd7,0x07,0xae,0xdf,0xbb,0xfe,0xe2,0xfa,0xa7,0xeb, +0x5b,0x37,0xe8,0xe6,0xe0,0xe6,0xe2,0xa6,0x76,0xd3,0xba,0x35, +0x76,0x6b,0xe9,0xe6,0xef,0x16,0xea,0x16,0xee,0x16,0xeb,0xd6, +0xc3,0xad,0x9f,0xdb,0x50,0xb7,0x64,0xb7,0x0c,0xb7,0x11,0x6e, +0x23,0xdd,0x4a,0xdd,0xa6,0xba,0xcd,0x76,0x5b,0xe8,0xb6,0xcc, +0x6d,0xad,0xdb,0x16,0xb7,0xdd,0x6e,0x07,0xdd,0x4e,0xb8,0x7d, +0xe3,0x76,0xd9,0xed,0xa6,0xdb,0x3d,0xb7,0x47,0x6e,0xcf,0xdc, +0x7e,0x77,0xfb,0xcb,0xed,0x9d,0x42,0xa2,0xe0,0x14,0x0a,0x85, +0x97,0xc2,0xa0,0xf8,0x42,0xe1,0xa7,0x08,0x55,0x44,0x2a,0xe2, +0x14,0xfd,0x14,0xc3,0x14,0x69,0x8a,0x11,0x8a,0x51,0x8a,0x49, +0x8a,0x99,0x8a,0x05,0x8a,0x15,0x8a,0x8d,0x8a,0x5d,0x8a,0x83, +0x8a,0xd3,0x8a,0x4b,0x8a,0x2a,0x45,0xb5,0xe2,0xb1,0xe2,0x27, +0xc5,0x0b,0x05,0x52,0xfc,0xad,0x64,0x94,0x4e,0x4a,0xa5,0xd2, +0x5b,0xe9,0xa3,0x6c,0xae,0x6c,0xab,0x0c,0x52,0x76,0x50,0x46, +0x29,0xbb,0x29,0xe3,0x95,0x83,0x94,0x89,0xca,0x34,0x65,0xb6, +0xb2,0x50,0x39,0x46,0x39,0x49,0x39,0x43,0x39,0x4f,0xb9,0x44, +0xb9,0x4a,0xb9,0x51,0xb9,0x43,0xb9,0x4f,0x79,0x54,0xf9,0x95, +0xf2,0x82,0xf2,0x9a,0xf2,0x8e,0xf2,0x81,0xf2,0x7b,0xe5,0x2f, +0xca,0x3f,0x95,0x6f,0xdd,0xa1,0xbb,0x83,0xbb,0x8b,0xbb,0xda, +0x5d,0xeb,0xde,0xd8,0xbd,0xa5,0xbb,0xbf,0x7b,0xa8,0x7b,0xb8, +0x7b,0xac,0x7b,0x0f,0xf7,0x7e,0xee,0x43,0xdd,0x93,0xdd,0x33, +0xdc,0x47,0xb8,0x8f,0x74,0x2f,0x75,0x9f,0xea,0x3e,0xdb,0x7d, +0xa1,0xfb,0x32,0xf7,0xb5,0xee,0x5b,0xdc,0x77,0xbb,0x1f,0x74, +0x3f,0xe1,0xfe,0x8d,0xfb,0x65,0xf7,0x9b,0xee,0xf7,0xdc,0x1f, +0xb9,0x3f,0x73,0xff,0xdd,0xfd,0x2f,0xf7,0x77,0x2a,0x89,0x8a, +0x53,0x29,0x54,0x5e,0x2a,0x83,0xaa,0x99,0xaa,0x8d,0xca,0xa8, +0x6a,0xaf,0x8a,0x54,0x75,0x55,0xf5,0x56,0x0d,0x54,0x0d,0x57, +0xa5,0xaa,0xb2,0x54,0x05,0xaa,0xd1,0xaa,0x89,0xaa,0xe9,0xaa, +0xb9,0xaa,0x0a,0xd5,0x4a,0xd5,0x06,0xd5,0x76,0xd5,0x5e,0xd5, +0x11,0xd5,0x69,0xd5,0x79,0x55,0xa5,0xea,0xb6,0xea,0xbe,0xea, +0xa9,0xea,0x67,0xd5,0x4b,0xd5,0x1b,0x35,0x50,0x4b,0xd5,0x72, +0xb5,0x4a,0xdd,0x40,0xdd,0x48,0xdd,0x42,0xed,0xa7,0x0e,0x51, +0x77,0x52,0xc7,0xa8,0xbb,0xab,0xfb,0xaa,0x87,0xa8,0x93,0xd4, +0x56,0x75,0xae,0xba,0x58,0x3d,0x4e,0x3d,0x45,0x3d,0x4b,0xbd, +0x40,0xfd,0x1f,0xf5,0x1a,0xf5,0x66,0xf5,0x2e,0xf5,0x01,0xf5, +0x71,0xf5,0x19,0xf5,0x25,0xf5,0x0d,0xf5,0xb7,0xea,0x87,0xea, +0x1f,0xd5,0xbf,0xa9,0x5f,0xab,0xeb,0x3c,0x68,0x0f,0x99,0x87, +0x9b,0x87,0xa7,0x87,0xde,0xa3,0xa9,0x47,0x6b,0x8f,0x40,0x8f, +0x30,0x0f,0x93,0x47,0x17,0x8f,0x5e,0x1e,0x03,0x3c,0x12,0x3c, +0x2c,0x1e,0x36,0x8f,0x7c,0x8f,0x51,0x1e,0x13,0x3c,0xca,0x3c, +0xca,0x3d,0x16,0x7b,0xac,0xf0,0x58,0xef,0xb1,0xcd,0x63,0x8f, +0xc7,0x61,0x8f,0x53,0x1e,0xe7,0x3c,0xae,0x7a,0xdc,0xf2,0xf8, +0xce,0xe3,0x89,0xc7,0x73,0x8f,0x3f,0x3c,0x6a,0x3d,0xde,0x7b, +0xb2,0x9e,0xce,0x9e,0xee,0x9e,0x1a,0xcf,0x86,0x9e,0x5f,0x78, +0xfa,0x7a,0x06,0x7b,0x76,0xf4,0x8c,0xf6,0x8c,0xf3,0xec,0xe3, +0x39,0xd8,0xd3,0xe2,0x99,0xe3,0x39,0xd2,0xb3,0xd4,0x73,0xaa, +0xe7,0x6c,0xcf,0x85,0x9e,0xcb,0x3c,0xd7,0x7a,0x6e,0xf1,0xdc, +0xed,0x79,0xd0,0xf3,0x84,0xe7,0x37,0x9e,0x97,0x3d,0xef,0x7a, +0xd6,0x78,0xfe,0xe0,0xf9,0xab,0xe7,0x2b,0x4f,0xde,0x8b,0xf2, +0x72,0xf4,0x72,0xf5,0xf2,0xf0,0xf2,0xf1,0x6a,0xe9,0x15,0xe8, +0xd5,0xd1,0xab,0x9b,0xd7,0x40,0x2f,0x8b,0x57,0x81,0xd7,0x24, +0xaf,0xf9,0x5e,0xab,0xbd,0x76,0x7a,0x1d,0xf7,0x3a,0xe7,0x75, +0xc7,0xeb,0xb1,0xd7,0x0b,0xaf,0x77,0xde,0x72,0x6f,0x4f,0xef, +0x86,0xde,0x7e,0xde,0x61,0xde,0xd1,0xde,0x7d,0xbd,0x87,0x79, +0x67,0x7a,0x17,0x7b,0x4f,0xf5,0x5e,0xe4,0xbd,0xce,0x7b,0x8f, +0xf7,0x19,0xef,0xdb,0xde,0xcf,0xbc,0xeb,0x34,0xae,0x9a,0xc6, +0x9a,0x60,0x4d,0x57,0x4d,0x82,0xc6,0xa2,0xb1,0x69,0xf2,0x35, +0xa3,0x34,0x13,0x34,0x65,0x9a,0x72,0xcd,0x62,0xcd,0x0a,0xcd, +0x7a,0xcd,0x36,0xcd,0x1e,0xcd,0x61,0xcd,0x29,0xcd,0x39,0xcd, +0x55,0xcd,0x2d,0xcd,0x77,0x9a,0x27,0x9a,0xe7,0x9a,0x3f,0x34, +0xb5,0x9a,0xf7,0x0d,0xfa,0x37,0x98,0xd4,0x60,0x6e,0x83,0xc5, +0xe6,0x36,0x66,0x5b,0x81,0xaf,0x5f,0x5a,0x7d,0xe0,0x2f,0xdc, +0xde,0x93,0x86,0x8f,0x18,0x69,0x2b,0xc8,0xc9,0x4f,0xfd,0x88, +0xd4,0x1b,0xf1,0xf1,0xd1,0x3f,0x27,0xdb,0x22,0x3e,0x15,0x14, +0x93,0xd6,0x82,0xf4,0x3c,0x0b,0x69,0x49,0xcd,0x29,0xcc,0x23, +0x88,0xb5,0x88,0xb4,0xe4,0x5b,0x47,0x12,0x68,0x29,0xb2,0x64, +0x8b,0x98,0x45,0xf8,0xe0,0x48,0xc4,0xb2,0xad,0x76,0x42,0x85, +0xd9,0x56,0x7f,0x5f,0x3f,0x5f,0x02,0xfc,0x08,0xf0,0x27,0xc0, +0x28,0x00,0x7f,0x02,0x7c,0x03,0x48,0x63,0x40,0x00,0xf9,0x48, +0x41,0xf8,0x44,0x81,0x08,0x68,0xce,0xcd,0xcd,0xcb,0x19,0x69, +0x19,0x51,0x68,0xb6,0x65,0xe7,0x14,0x88,0xd0,0x66,0xc9,0xcf, +0x17,0x91,0xb4,0x3c,0x8b,0x59,0xf8,0x9c,0x48,0xc0,0x09,0xb1, +0x50,0x11,0x04,0x04,0xd9,0x72,0x46,0x59,0xb2,0xd3,0x2c,0x79, +0xe6,0x14,0x6b,0xb2,0xd9,0x66,0xcd,0x2e,0xb0,0xa4,0xe5,0x09, +0x30,0xd5,0x9a,0x6d,0x2d,0x28,0x11,0x06,0xf9,0xf9,0x47,0x8b, +0xc0,0x2f,0x80,0x80,0xa0,0x5c,0x73,0x5e,0x81,0xd5,0x6c,0x4b, +0xb1,0xa6,0xa6,0x46,0x17,0xe6,0xe5,0xe0,0x56,0xdf,0xe8,0x80, +0x18,0x51,0xaa,0x08,0x22,0x78,0x44,0x20,0x01,0x41,0x04,0x84, +0x10,0x10,0x4a,0x40,0x04,0x01,0x26,0x02,0xa2,0x08,0x10,0x59, +0xf8,0x9a,0xc8,0x74,0x13,0x51,0xd1,0x44,0xa8,0x98,0x88,0xde, +0x26,0x42,0xc5,0x44,0xa8,0x98,0x08,0x15,0x13,0x99,0x6e,0x8a, +0x31,0x27,0xe5,0x61,0xe3,0x0a,0xa2,0xf8,0x45,0x0a,0xb4,0xfc, +0xa2,0x45,0x51,0x30,0x08,0x30,0x67,0x99,0x93,0xf3,0x72,0xb2, +0xcd,0x39,0x69,0x78,0xcd,0x32,0xcd,0x79,0xd6,0xec,0x34,0x73, +0x72,0x61,0x81,0x85,0x74,0xc7,0x88,0xc0,0x14,0x4c,0x00,0x99, +0x63,0x0a,0x20,0xc0,0x48,0x86,0xd8,0x41,0x14,0x01,0x64,0xa4, +0xa8,0x0c,0x06,0x26,0xb3,0x48,0xcb,0xbe,0x02,0xa2,0x10,0x04, +0xb7,0x8b,0x62,0xef,0x48,0xb6,0xe6,0x25,0x17,0x66,0xa5,0xe2, +0x0a,0xcf,0xde,0x90,0x62,0xc5,0xab,0x91,0x6f,0xcd,0xff,0x38, +0x58,0x10,0xd8,0xde,0x87,0x17,0xa0,0x1e,0x15,0x41,0x05,0x7b, +0x07,0x51,0xc4,0xfe,0x40,0xd4,0xb1,0x3f,0x08,0x4a,0xd5,0x43, +0xeb,0xcb,0x54,0x60,0xb5,0xa5,0x7c,0x46,0x2d,0xa6,0xde,0x83, +0x29,0xb8,0xfe,0x83,0x5f,0xfd,0x87,0x80,0xfa,0x0f,0xc6,0xfa, +0x04,0x3e,0x7b,0x88,0xaa,0xff,0x50,0x9f,0x5a,0x44,0x68,0xfd, +0x07,0x93,0x5d,0x1a,0x8b,0x28,0x5a,0x32,0x79,0x4f,0x36,0x63, +0x75,0x92,0x3f,0xd9,0x26,0x39,0x25,0xa7,0xc0,0x9c,0x9c,0x6c, +0xc9,0x2e,0x48,0x11,0xbb,0x52,0xb0,0xba,0xd8,0x6d,0x45,0xab, +0x5a,0xc4,0x16,0xcb,0xc7,0x11,0x44,0x2e,0xb2,0x0a,0x26,0x93, +0x85,0x98,0xc6,0x42,0x8c,0x42,0x1a,0xc9,0x7a,0x99,0xc8,0x02, +0x47,0x92,0x65,0x8b,0x24,0xe2,0x44,0x92,0x05,0x8e,0x14,0x56, +0xd6,0xd7,0xdf,0x18,0x9a,0x26,0xb2,0x48,0xfb,0x24,0x49,0x5a, +0x72,0x4e,0x56,0x96,0x99,0x70,0x4a,0xfb,0xc8,0x33,0xad,0xde, +0xfa,0xa6,0xfd,0x73,0x49,0xeb,0x4f,0xb1,0xb7,0x7c,0x9c,0x48, +0x9e,0xd3,0x93,0xcc,0x79,0xe9,0x9f,0xa6,0x59,0x3f,0xb9,0x6c, +0x94,0x2f,0x91,0xc7,0x44,0x40,0xa8,0x95,0xa8,0x63,0x25,0xea, +0x58,0xc5,0x25,0xb4,0x66,0x58,0x33,0x3e,0xf8,0xad,0xaf,0x7f, +0x40,0x30,0x79,0xc8,0xf8,0x44,0x2f,0xb3,0x9e,0x00,0x99,0x38, +0xe0,0x2d,0xd9,0x36,0x73,0x36,0x8e,0x6a,0x9b,0x38,0xd0,0x26, +0xda,0xcf,0x56,0x6f,0x8c,0x0d,0x8b,0x97,0x2d,0xf6,0x65,0x8b, +0x7d,0xd9,0xf5,0xfa,0xb2,0xcd,0xc2,0x6f,0x75,0xe4,0xe5,0xe4, +0xa6,0x63,0x32,0x69,0x39,0xf5,0x24,0xf5,0x27,0x22,0x12,0xe3, +0x46,0xc6,0xe4,0xa4,0x17,0x62,0x77,0xcb,0x2b,0xcc,0xb2,0x99, +0x0b,0x0b,0x72,0x88,0xd8,0x39,0xe2,0x87,0xa6,0x22,0xe5,0x9c, +0xf4,0x9c,0xbc,0x6c,0x71,0x68,0x14,0xd1,0x2d,0x9a,0x58,0x3e, +0x8a,0xcc,0x8f,0x22,0x8b,0x13,0x4d,0x56,0x25,0xca,0x0e,0xc8, +0xa2,0x46,0xd9,0x47,0x92,0xe8,0x8b,0x0a,0xce,0x13,0x09,0xe6, +0x89,0xa2,0xe6,0xd5,0x13,0x35,0x5f,0x6c,0xcf,0x4f,0xb6,0xa4, +0x58,0x6d,0x98,0xef,0x27,0x7b,0xe4,0xd7,0x1b,0x24,0xca,0x1e, +0x1c,0x83,0xf3,0x5c,0x16,0xb6,0x49,0x92,0xcd,0x1e,0x77,0x05, +0x78,0x45,0x0a,0x44,0x8a,0xa2,0x51,0xfd,0x4c,0xe2,0xb8,0xa0, +0x80,0xc2,0x7a,0x0a,0x07,0x12,0x11,0x89,0x18,0xd1,0xc1,0x85, +0xf5,0x15,0x2e,0x24,0x0a,0x17,0xda,0xdd,0x4e,0x08,0xbd,0x42, +0x71,0xb1,0x0a,0x3f,0xea,0x1d,0x4d,0xb4,0x89,0x21,0xba,0x45, +0xdb,0xad,0x40,0xd4,0x8f,0x8e,0x21,0x2c,0x82,0x08,0x08,0x21, +0x20,0x92,0x80,0x88,0x62,0x51,0xb1,0xe2,0x4f,0x0a,0x15,0x7f, +0x48,0x1a,0xc5,0x62,0x86,0x28,0xf9,0xd4,0x43,0x58,0x18,0x4b, +0xc4,0x76,0xf2,0x40,0xfc,0x3d,0x26,0x74,0x94,0x48,0x65,0xd4, +0x47,0x57,0x8c,0xa8,0x97,0x28,0xed,0x19,0x8d,0x38,0x5f,0x84, +0x7f,0x04,0xd1,0x26,0x82,0x68,0x13,0xf1,0x8f,0x44,0x49,0xb2, +0xaa,0x29,0x88,0x00,0x32,0xc7,0x44,0xbc,0xc1,0x44,0x6c,0x14, +0x61,0x07,0x91,0x04,0x90,0x91,0x62,0xf2,0xc7,0x20,0x22,0x22, +0x5a,0x24,0x16,0x49,0xde,0x45,0xa3,0x47,0x7e,0xd2,0x20,0xf2, +0xa3,0x80,0x51,0x62,0x57,0x94,0x18,0xfa,0xd1,0xa2,0xb0,0xd1, +0x62,0x4b,0xf4,0x3f,0x42,0x9f,0xd0,0x35,0x45,0x44,0x13,0xa9, +0xa3,0xeb,0x87,0x3e,0x91,0xc0,0x44,0x44,0x8e,0x24,0x82,0x44, +0xda,0x63,0xcc,0xee,0xc0,0x81,0xa2,0x09,0x42,0x62,0x62,0x45, +0x16,0xb1,0x9f,0x24,0x89,0xad,0xe7,0x36,0xb1,0x1f,0x79,0x76, +0xc6,0x9e,0xd2,0xf9,0xd3,0xa0,0x2e,0xf5,0xac,0x18,0xd3,0xe5, +0x73,0xc9,0x22,0x23,0x08,0x08,0xe9,0x42,0x24,0xeb,0x42,0x24, +0xeb,0x22,0x3a,0x46,0x97,0xae,0x5d,0xba,0x8a,0x16,0xb0,0xbf, +0x7f,0x22,0xd9,0xad,0x1e,0xdf,0x38,0xb1,0x33,0x4e,0xd4,0x3b, +0xae,0x7e,0x3b,0xe6,0xd4,0x43,0xec,0xeb,0x21,0xf6,0xf5,0xa8, +0xd7,0x17,0x9d,0x9d,0xd6,0xb3,0x9e,0xdb,0xda,0x13,0x1d,0xb1, +0x44,0x64,0x74,0xcf,0xfa,0x6e,0xdb,0x93,0x08,0xd6,0xf3,0x53, +0x9c,0xf6,0xfc,0x14,0xa7,0x44,0xfa,0x68,0x62,0xa6,0x28,0x32, +0x3f,0x8a,0x58,0x32,0x9a,0x98,0xd0,0x9e,0xad,0xa2,0xc8,0x0a, +0xd8,0x33,0x82,0x3d,0x4e,0xa2,0x82,0xe2,0x45,0x82,0xf1,0xa2, +0x7c,0xf1,0xf5,0xe4,0xeb,0x23,0xb6,0xf7,0xb1,0xc7,0x69,0x9f, +0x4f,0x8a,0xf7,0xf9,0x3c,0x4e,0xfd,0xa2,0x43,0xa3,0xfb,0x62, +0x6b,0xf7,0xad,0x17,0x97,0x11,0x24,0x2e,0xfd,0xfb,0xd5,0x53, +0x90,0xa4,0x87,0x68,0x7b,0x78,0x06,0xf5,0xab,0xaf,0x60,0x3f, +0xa2,0x60,0x3f,0x62,0xf9,0x7e,0x82,0x27,0xf7,0x13,0xcd,0xdf, +0xef,0x53,0x5c,0x12,0xe9,0x63,0x88,0x2e,0xd1,0x76,0xad,0x89, +0xba,0xd1,0xd1,0x84,0x85,0x91,0x80,0x60,0x02,0x48,0x72,0x88, +0x0a,0x1d,0x20,0x2a,0x32,0xe0,0x93,0x02,0x03,0x3e,0xc4,0xe5, +0x00,0x31,0xfe,0x06,0xfd,0x33,0x2e,0x03,0x07,0xd5,0x8b,0x4b, +0xe2,0x8c,0x31,0x21,0x83,0x45,0x2a,0x83,0x3f,0xb9,0xbd,0xc5, +0x56,0x60,0xc6,0x05,0x5c,0x4a,0x61,0x72,0x41,0x7e,0x21,0x36, +0x88,0xf0,0x0b,0x3c,0x3d,0xb3,0x2c,0x69,0xe6,0x5c,0xab,0xc0, +0x38,0x30,0xc0,0xd7,0x0e,0x3e,0xd5,0x17,0x81,0x01,0x76,0xe0, +0x6f,0x07,0x6d,0x6c,0x39,0xc9,0x36,0x53,0x6c,0x3c,0x79,0x0c, +0xb0,0x83,0xcf,0x5b,0x03,0xed,0xe0,0xf3,0x56,0x23,0x01,0x41, +0x76,0xf0,0x79,0x67,0xb0,0x1d,0x7c,0xde,0x1a,0x62,0x07,0x9f, +0xb7,0x86,0xda,0xc1,0xe7,0xad,0x11,0x76,0xf0,0x79,0xab,0xc9, +0x0e,0x3e,0x6f,0x8d,0x24,0x20,0x8a,0x80,0x68,0x02,0x62,0xec, +0xe0,0xb3,0xa1,0x81,0xc4,0x24,0x81,0xc4,0x0a,0x81,0xfe,0x76, +0xf0,0xf9,0x18,0x62,0x85,0xc0,0x40,0x3b,0xf8,0xbc,0x93,0xa8, +0x1d,0x18,0x64,0x07,0x9f,0x77,0x12,0xb5,0x03,0x43,0xec,0xe0, +0xf3,0xce,0x50,0x3b,0xf8,0xbc,0x35,0xc2,0x0e,0x3e,0x6f,0x25, +0x7a,0x06,0x46,0xda,0xc1,0xe7,0x9d,0x44,0xcf,0xc0,0x68,0x3b, +0xf8,0xbc,0x33,0xc6,0x0e,0x3e,0x6b,0xf5,0x23,0x6a,0xfb,0x11, +0xb5,0xfd,0x88,0xda,0x7e,0x44,0x4f,0xbf,0x40,0x3b,0xf8,0x7c, +0x06,0xd1,0xd3,0x8f,0xe8,0xe9,0x47,0x14,0xf3,0x23,0x8a,0xf9, +0x11,0x4d,0x48,0x8c,0x61,0xf0,0xf9,0x44,0x93,0x1d,0x7c,0xde, +0x4a,0x34,0xf1,0x23,0xa2,0xfb,0x11,0xd1,0xfd,0x88,0xac,0xfe, +0x44,0x38,0x7f,0x22,0x9c,0x3f,0x11,0xce,0x9f,0x08,0xe7,0x1f, +0x68,0x07,0x9f,0x51,0xf3,0x27,0xc2,0xf9,0x13,0xe1,0xfc,0x89, +0x70,0xfe,0x44,0x38,0x7f,0x22,0x9c,0x3f,0x11,0xce,0x9f,0x48, +0xe3,0x4f,0xd8,0xfb,0x13,0xf6,0xfe,0x84,0xbd,0xbf,0x9d,0xfd, +0xe7,0xa6,0x8a,0x22,0x8c,0xa3,0xfc,0xec,0x4f,0xf5,0x62,0x27, +0xca,0xaf,0xfe,0x03,0x91,0xc1,0x48,0x86,0x87,0x92,0xc6,0x18, +0x22,0x4a,0xa8,0xbd,0xd1,0x3e,0x84,0xe8,0x67,0xb4,0xcf,0x23, +0x43,0x8c,0x44,0xb1,0x28,0x22,0x51,0x24,0x51,0x3a,0x94,0xf4, +0x05,0x11,0xa1,0xa3,0x88,0x7c,0xa1,0x44,0xa1,0x68,0x32,0x3d, +0x92,0x34,0x46,0xdb,0x49,0x47,0xd9,0xc1,0x67,0x2a,0x44,0x13, +0xf6,0x46,0xa2,0x74,0x28,0xa1,0x16,0x4a,0x86,0x46,0x10,0x32, +0xa1,0x84,0x8c,0x91,0xd0,0x8e,0xb0,0x4f,0x20,0x36,0x8b,0x20, +0xb4,0xa3,0x89,0x30,0xc1,0xa4,0x4f,0x2c,0x4a,0x7c,0x8d,0x76, +0xcb,0x47,0x90,0xbe,0x08,0x42,0x3a,0x82,0x90,0x36,0xd9,0xe7, +0x11,0xd2,0x31,0x76,0x8b,0xd8,0x49,0x13,0x93,0x47,0x90,0x3e, +0x13,0xe9,0x33,0x91,0xbe,0x18,0x32,0xcf,0x44,0x68,0x9a,0x88, +0x48,0x31,0x04,0x04,0xd9,0xa7,0xdb,0xd5,0xb5,0x4b,0x4d,0xd6, +0xdd,0x68,0xb7,0x24,0x59,0x77,0x23,0x31,0xa1,0x91,0x88,0x64, +0xb2,0x9b,0x90,0x50,0x31,0xd9,0x05,0x24,0xd3,0x23,0x48,0x63, +0x30,0xa1,0x19,0x45,0xe6,0x45,0x91,0x45,0x8a,0x22,0xcb,0xe2, +0x6b,0x5f,0x40,0xd2,0x18,0x43,0xf8,0x85,0xda,0x17,0xc9,0x3e, +0x84,0xf4,0x7d,0xf0,0x06,0x32,0xc4,0xd7,0xbe,0xaa,0xc4,0xf2, +0x91,0x76,0x5b,0x93,0xbe,0x20,0x62,0xdd,0x28,0x62,0x89,0x50, +0x22,0x75,0x34,0xa1,0x12,0x49,0x40,0xb4,0x9d,0x34,0x11,0x37, +0x9a,0xf0,0xf3,0xb5,0x2f,0x23,0x99,0x1e,0x4a,0x9e,0x22,0xc8, +0x84,0x50,0x42,0xcc,0xd7,0xbe,0x8c,0xf6,0x09,0xf6,0x65,0x24, +0xc4,0xa2,0x09,0xf7,0x60,0xd2,0x27,0xee,0x61,0x78,0x19,0x49, +0x5f,0x04,0xe9,0x8b,0xb0,0x4f,0x20,0xa4,0x4d,0xf6,0x79,0x84, +0x74,0x8c,0xdd,0x04,0x76,0xd2,0xf6,0x65,0x24,0xc0,0x44,0xfa, +0x4c,0xa4,0x2f,0x86,0xcc,0x33,0x11,0x9a,0x26,0xa2,0x5f,0x0c, +0x01,0x41,0xf6,0xe9,0xc4,0xe4,0xbe,0x64,0x1d,0x7c,0xed,0x36, +0x23,0xcb,0xe8,0x4b,0x46,0xfa,0xda,0x47,0xda,0x97,0xd1,0x6e, +0x33,0xd2,0x67,0xb2,0x0b,0x68,0x17,0x82,0x34,0x06,0x93,0x23, +0x7f,0x30,0xb9,0x06,0xf9,0xf0,0x44,0x2e,0x00,0x82,0xc9,0x6d, +0x42,0x70,0x30,0x01,0xe4,0x3a,0x20,0x98,0x5c,0x07,0x84,0x90, +0x09,0x21,0xe4,0xfe,0x20,0x84,0xdc,0x1f,0x84,0x04,0x10,0x40, +0xa8,0x84,0x10,0x2a,0x21,0x84,0x4a,0x08,0xa1,0x12,0x42,0xa8, +0x84,0x84,0x8a,0xb7,0x3b,0xd9,0x85,0x59,0xc2,0x21,0x52,0x84, +0xc2,0xbd,0x8e,0x08,0xc5,0x7b,0x1d,0x01,0x13,0xef,0x75,0x44, +0x44,0xb8,0xd7,0x11,0x10,0xe1,0x5e,0x47,0x84,0xe2,0xbd,0x8e, +0x80,0x91,0x7b,0x1d,0x01,0x13,0xef,0x75,0x04,0x44,0xa4,0x9c, +0x92,0x9d,0x93,0x25,0x50,0x16,0xa0,0x40,0x59,0x84,0x22,0x65, +0x01,0x13,0x29,0x8b,0x88,0x40,0x59,0x40,0x04,0xca,0x22,0x14, +0x29,0x0b,0x18,0xa1,0x2c,0x60,0x22,0x65,0x01,0x11,0xaf,0x63, +0x8c,0xe4,0x56,0x46,0xcc,0x40,0x18,0x18,0x09,0x08,0x22,0x20, +0x98,0x80,0x10,0x02,0x42,0x09,0x88,0x20,0xc0,0x97,0x00,0x13, +0x01,0x91,0x04,0x44,0x11,0x40,0x2e,0x7c,0xc4,0x1c,0xe7,0x1f, +0x4c,0xee,0x7d,0x82,0x03,0xc9,0x90,0x50,0x32,0x4f,0x4c,0x91, +0x18,0x10,0xee,0x62,0x30,0x61,0x40,0xd8,0x86,0x12,0xb6,0xa1, +0x84,0x5f,0x28,0xe1,0x6e,0x22,0xf3,0xc8,0xd5,0x8e,0x89,0x5c, +0x70,0x99,0x44,0xdf,0xc1,0x4f,0xbe,0xe4,0x89,0xb0,0x25,0x97, +0x40,0x7e,0x26,0x42,0x3a,0x92,0xd0,0x8c,0x24,0xfa,0x85,0xda, +0x01,0x51,0xd3,0x44,0xfa,0x4c,0x84,0x1f,0xb9,0x5f,0xf2,0x23, +0xf7,0x4b,0x7e,0x26,0x3b,0x10,0xf5,0x33,0x8a,0xf1,0x8d,0x81, +0x1f,0x01,0xfe,0x04,0x04,0x10,0x10,0x48,0x80,0x91,0x80,0x20, +0x02,0x82,0x09,0x08,0x21,0x20,0x94,0x80,0x08,0x02,0xec,0x34, +0x23,0x09,0x88,0x22,0x20,0x9a,0x00,0x51,0x23,0x23,0xd1,0xc8, +0x48,0xd4,0x34,0x92,0x7b,0x3c,0x23,0x31,0xa4,0xd1,0x8f,0xf0, +0x23,0xd7,0x79,0x46,0x3f,0xc2,0xcf,0x8f,0xf0,0xf3,0x23,0xfc, +0xc8,0xed,0x9c,0xd1,0x8f,0xf0,0xf3,0x23,0xfc,0xfc,0x08,0x3f, +0x3f,0xc2,0xcf,0x8f,0xf0,0xf3,0x23,0xfc,0xfc,0x09,0x3f,0x7f, +0xc2,0xcf,0x9f,0xf0,0xf3,0x27,0xfc,0xfc,0x09,0x3f,0x7f,0xc2, +0xcf,0x9f,0xf0,0xf3,0x27,0xfc,0xfc,0x09,0x3f,0x7f,0xc2,0xcf, +0x9f,0xf0,0xf3,0x27,0xfc,0xfc,0x09,0x3f,0x7f,0xc2,0x8f,0x5c, +0x02,0x1a,0xfd,0x09,0xbf,0x00,0xc2,0x2f,0x80,0xf0,0x23,0x57, +0x92,0xc6,0x00,0xc2,0x2f,0x80,0xf0,0x0b,0x20,0xfc,0x02,0x08, +0xbf,0x00,0xc2,0x2f,0x80,0xf0,0x0b,0x20,0xfc,0x02,0x08,0xbf, +0x00,0xc2,0x2f,0x80,0xf0,0x0b,0x20,0xfc,0x02,0x08,0x3f,0x72, +0xaf,0x68,0x0c,0x24,0xfc,0x02,0x09,0xbf,0x40,0xc2,0x2f,0x90, +0xf0,0x0b,0x24,0xfc,0x02,0x09,0xbf,0x40,0xc2,0x2f,0x90,0xf0, +0x0b,0x24,0xfc,0x02,0x09,0xbf,0x40,0xc2,0x2f,0x90,0xf0,0x23, +0x0e,0x6d,0x0c,0x24,0xfc,0x02,0x09,0xbf,0x40,0xc2,0x8f,0x44, +0x87,0x91,0x44,0x80,0xd1,0x48,0xf8,0x91,0x50,0x33,0x92,0x50, +0x33,0x92,0x50,0x33,0x92,0x50,0x33,0x92,0x50,0x33,0x92,0x50, +0x33,0x92,0x50,0x33,0x92,0x50,0x33,0x92,0x18,0x33,0x92,0x18, +0x33,0x92,0x18,0x33,0x92,0x18,0x33,0x1a,0x09,0xbf,0x20,0xc2, +0x2f,0x88,0xf0,0x0b,0x22,0xfc,0x82,0x08,0xbf,0x20,0xc2,0x2f, +0x88,0xf0,0x0b,0x22,0xfc,0x82,0x08,0xbf,0x20,0xc2,0x2f,0x88, +0xf0,0x0b,0x22,0xfc,0x82,0x08,0xbf,0x20,0xc2,0x2f,0x88,0xf0, +0x0b,0x22,0xfc,0x82,0x08,0x3f,0x92,0x60,0x8d,0xc1,0x84,0x5f, +0x30,0xe1,0x17,0x4c,0xf8,0x91,0xac,0x6b,0x24,0x59,0xd7,0x48, +0xb2,0xae,0x91,0x64,0x5d,0x23,0xc9,0xba,0x46,0x92,0x75,0x8d, +0xc1,0x84,0x5f,0x30,0xe1,0x17,0x4c,0xf8,0x05,0x13,0x7e,0xc1, +0x84,0x5f,0x30,0xe1,0x47,0xf2,0xb3,0x91,0xe4,0x67,0x23,0xc9, +0xcf,0x46,0x92,0x9f,0x8d,0x24,0x3f,0x1b,0x49,0x7e,0x36,0x92, +0xfc,0x6c,0x24,0xf9,0xd9,0x48,0xf2,0xb3,0x31,0x84,0xf0,0x0b, +0x21,0xfc,0x42,0x08,0xbf,0x10,0xc2,0x2f,0x84,0xf0,0x0b,0x21, +0xfc,0x42,0x08,0x3f,0x92,0xa5,0x8c,0x24,0x4b,0x19,0x49,0x7a, +0x32,0x92,0x64,0x65,0x24,0x39,0xc4,0x48,0x72,0x88,0x91,0xe4, +0x2c,0x23,0xc9,0x59,0x46,0x92,0xac,0x8c,0x24,0x75,0x19,0x43, +0x09,0xbf,0x50,0xc2,0x2f,0x94,0xf0,0x0b,0x25,0xfc,0x42,0x09, +0xbf,0xd0,0x98,0x7a,0xf7,0xab,0xe4,0x7a,0x30,0xb9,0x24,0xcf, +0x56,0xff,0xee,0xc4,0xd7,0x9f,0xd4,0x2f,0xfe,0x64,0xc7,0x0b, +0x20,0xe5,0x48,0x00,0xa9,0x2e,0x02,0xc8,0x86,0x19,0x40,0x36, +0xcc,0x00,0xb2,0x53,0x06,0x90,0x3a,0x24,0x80,0x54,0x25,0x01, +0x64,0x17,0x0d,0xf0,0xb5,0x4f,0x0f,0xb2,0x03,0x91,0x11,0xc1, +0x23,0x08,0x10,0x0b,0x87,0x00,0x72,0x20,0x08,0x20,0x35,0x7f, +0x00,0xa9,0xe0,0x03,0x48,0x59,0x1d,0x40,0x0a,0xf1,0x00,0x52, +0x6b,0x07,0xf8,0x87,0x88,0x12,0x8b,0x82,0x92,0x1b,0x50,0xe1, +0x9c,0x2a,0x62,0xe9,0x39,0x39,0x99,0x22,0x22,0xaa,0xf7,0xe1, +0x80,0x2b,0x8e,0xfc,0xf0,0x40,0xae,0x68,0xed,0x0f,0xe2,0xcc, +0x4f,0x07,0x5f,0x72,0xbf,0xfb,0xf1,0x51,0xa4,0x54,0xef,0x76, +0xf5,0xf3,0xc1,0x02,0xaf,0x0f,0x74,0xc8,0xc1,0xfd,0x53,0x9f, +0xc8,0x9e,0x98,0x58,0xf8,0xbb,0x8a,0x7a,0xc6,0x16,0x9f,0xed, +0x37,0xe2,0x02,0xfa,0xe9,0xb2,0x55,0x7c,0xfa,0x70,0xbf,0x2e, +0x3c,0xd4,0xbf,0x1a,0x10,0x1b,0xc8,0xfd,0xb8,0x80,0x91,0xbb, +0x76,0x01,0xab,0x77,0x9f,0x2b,0x3e,0x9a,0x3f,0x10,0xb6,0xaf, +0xea,0x27,0x0c,0x9b,0x7d,0xb8,0xf0,0x28,0x5e,0xba,0x7f,0x40, +0x3e,0x91,0xb4,0xaf,0xc5,0xa7,0x19,0x9f,0xba,0x3e,0x19,0xf9, +0xd3,0xa3,0xa0,0xfd,0xa7,0xa7,0x4f,0xaa,0x7e,0x66,0xf3,0xcf, +0x5a,0x3e,0x89,0xf6,0x99,0xf5,0xff,0xa1,0xc5,0xa7,0x79,0xff, +0x58,0x87,0x7f,0xb4,0xfd,0xdb,0xdc,0x8f,0x32,0x7d,0xbe,0x2c, +0xff,0x18,0xf5,0x49,0x56,0x41,0x65,0xdf,0x08,0x52,0x83,0x91, +0x3d,0xd6,0x57,0xf4,0x72,0xec,0xc1,0xf6,0x46,0x3b,0x20,0x85, +0x19,0xd9,0x71,0x7d,0xc9,0x8e,0xeb,0x4b,0x52,0xa0,0x2f,0xd9, +0x78,0x7d,0xc9,0xc6,0xeb,0x4b,0x36,0x5e,0x5f,0xb2,0xf1,0xfa, +0xfa,0xdb,0x87,0x90,0x0f,0x7d,0xc4,0x20,0x89,0x89,0x8e,0x21, +0x8d,0x64,0x0b,0xf3,0x25,0x27,0xc5,0x0f,0x9f,0x27,0x91,0xbd, +0xd9,0x57,0xdc,0x9b,0x63,0x62,0x62,0xa2,0x06,0x58,0x0c,0xc2, +0x1f,0x22,0x99,0x6d,0xb6,0x56,0x86,0xa4,0x12,0x83,0xf0,0x87, +0x52,0xb9,0x79,0xe6,0xe4,0x02,0xe1,0x33,0x2f,0x43,0x8a,0x45, +0xfc,0xb0,0x4b,0xf8,0xa3,0xa3,0x9c,0x54,0xf1,0x4f,0x93,0x8a, +0x73,0xf2,0x52,0xf2,0x5b,0x19,0x52,0x73,0x72,0x6c,0xb9,0x79, +0x39,0xb8,0xd1,0x9c,0x2d,0xfc,0x85,0x55,0xb2,0x39,0x57,0xfc, +0xdb,0x23,0xdc,0x60,0xc9,0xcb,0xcb,0xc9,0x6b,0xf3,0xff,0xff, +0x8f,0xc3,0x7a,0xe4,0xe4,0x65,0x99,0x6d,0xb0,0x87,0xf0,0xdb, +0x39,0x81,0xa0,0x1d,0x08,0x07,0x5d,0x41,0x1f,0x30,0x50,0xfc, +0x4b,0x8c,0x91,0x60,0x2c,0xa8,0x00,0x5b,0xc1,0x21,0x70,0x12, +0x5c,0x05,0xb7,0xc1,0x7d,0xf0,0x18,0xfc,0x0e,0xde,0x82,0xbf, +0x61,0x03,0xd8,0x18,0x36,0x83,0x21,0x30,0x16,0x26,0xc0,0x64, +0x68,0x85,0x59,0x70,0x1b,0xbc,0x00,0xaf,0xc1,0x1f,0xe1,0xdf, +0x94,0x1b,0x65,0xa0,0x9a,0x53,0x01,0x54,0x04,0xd5,0x99,0xea, +0x41,0xf5,0xa3,0x2c,0xd4,0x04,0x6a,0x11,0xb5,0x93,0xda,0x43, +0x1d,0xa6,0xbe,0xa6,0x2e,0x52,0xaf,0xe8,0x66,0x74,0x37,0x3a, +0x97,0x2e,0xa3,0xd7,0xd1,0x5b,0xe8,0x53,0xf4,0x79,0xfa,0x3a, +0xfd,0x2d,0xfd,0x94,0xfe,0x85,0x7e,0x21,0x31,0x48,0xc2,0x24, +0x7d,0x24,0xf9,0x92,0x19,0x92,0x25,0x92,0xf5,0x92,0xed,0x92, +0xc3,0x92,0x53,0x92,0xcb,0x92,0x7b,0x92,0x47,0x92,0x9f,0x24, +0x2f,0x24,0x48,0xf2,0x37,0x23,0x61,0x38,0x46,0xc1,0x78,0x33, +0x4d,0x98,0x04,0x66,0x0a,0x73,0x86,0xb9,0xcc,0xfc,0xc8,0xfc, +0xcd,0xaa,0xd9,0x10,0xd6,0xc4,0xf6,0x61,0xd3,0xd9,0x3c,0x76, +0x0c,0x3b,0x97,0x5d,0xc2,0x6e,0x65,0xf7,0xb1,0xa7,0xd8,0xfb, +0xec,0x0f,0xec,0x6f,0xec,0x6b,0xf1,0xf7,0x59,0x14,0x52,0x8d, +0xb4,0xb1,0xb4,0xb5,0x34,0x44,0x6a,0x92,0xc6,0x49,0xfb,0x4a, +0x87,0x4a,0x93,0xa5,0x99,0xd2,0x7c,0xe9,0x68,0xe9,0x24,0xf1, +0x37,0x59,0x76,0x4b,0x7f,0x72,0x08,0x73,0xc8,0x74,0xd8,0xe2, +0x70,0xd8,0xe1,0x7b,0x87,0x77,0x8e,0x7a,0xc7,0x66,0x8e,0x2d, +0x1d,0x7b,0x39,0x8e,0x70,0x9c,0xeb,0xb8,0xc2,0x71,0xad,0xe3, +0x09,0xc7,0x3b,0x8e,0x3f,0x3a,0xd6,0xca,0x5c,0x64,0x3a,0x59, +0x23,0x59,0xa0,0x2c,0x4c,0x16,0x27,0xeb,0x27,0x4b,0x91,0xa5, +0xcb,0xf2,0x65,0x13,0x64,0xe5,0xb2,0x45,0xb2,0xe5,0xb2,0x2d, +0xb2,0x3d,0xb2,0xa3,0xb2,0x73,0xb2,0x9b,0xb2,0xef,0x64,0x3f, +0xca,0x5e,0xca,0xea,0x38,0x96,0x93,0x73,0x6a,0xae,0x31,0xd7, +0x9c,0xf3,0xe3,0xda,0x71,0x91,0x5c,0x1c,0xd7,0x97,0x33,0x73, +0xe9,0x5c,0x0e,0x57,0xcc,0x95,0x3a,0x35,0x70,0x8a,0x77,0x5a, +0xe5,0x74,0xcb,0xe9,0xbd,0xb3,0xc1,0x39,0xd3,0xf9,0x86,0x3c, +0x54,0x6e,0x91,0x17,0xc9,0x2b,0xe5,0xef,0x5c,0x7a,0xba,0xac, +0x71,0xd9,0xea,0x72,0xcf,0x95,0x73,0xed,0xed,0x3a,0xc7,0xf5, +0xa4,0x1b,0xe5,0x66,0x72,0x2b,0x71,0x3b,0xe4,0x76,0xcb,0xed, +0xa9,0xa2,0xa1,0x22,0x56,0x31,0x50,0x91,0xaf,0x18,0xaf,0x38, +0xa0,0xf8,0x45,0xe9,0xa3,0xec,0xa7,0x9c,0xa6,0xdc,0xa9,0x7c, +0xe0,0xee,0xe4,0xde,0xd8,0xbd,0xb7,0xfb,0x60,0xf7,0x4c,0xf7, +0x5c,0xf7,0xc5,0xee,0xeb,0xdc,0xb7,0xba,0x1f,0x73,0x7f,0xec, +0xfe,0xa7,0x3b,0x52,0x69,0x54,0x81,0xaa,0x48,0x55,0xaa,0x2a, +0x53,0x35,0x5d,0xb5,0x56,0xf5,0x95,0xea,0xac,0xea,0xb1,0x9a, +0x52,0x6b,0xd5,0xed,0xd5,0xbd,0xd4,0x36,0xf5,0x54,0xf5,0x4c, +0xf5,0x7a,0xf5,0x09,0xf5,0x5d,0xf5,0x4b,0x0f,0x27,0x8f,0x26, +0x1e,0x2d,0x3c,0x4c,0x1e,0x83,0x3d,0x46,0x78,0x8c,0xf3,0x58, +0xe8,0xb1,0xd2,0x63,0xb7,0xc7,0xd7,0x1e,0x77,0x3c,0x7e,0xf6, +0xf8,0xdd,0x13,0x78,0x2a,0x3d,0x1b,0x7b,0x06,0x79,0x76,0xf6, +0x1c,0xec,0x69,0xf3,0x2c,0xf6,0x2c,0xf3,0x5c,0xea,0xb9,0xd5, +0xf3,0x88,0xe7,0x45,0xcf,0xdb,0x9e,0x3f,0x78,0xfe,0xe5,0xc5, +0x78,0xb9,0x7b,0x35,0xf2,0xf2,0xf7,0x8a,0xf0,0xea,0xe5,0x35, +0xcc,0x2b,0xdd,0x6b,0x84,0xd7,0x28,0xaf,0x32,0xaf,0xc5,0x5e, +0xeb,0xbd,0x76,0x78,0x1d,0xf5,0xba,0xe0,0x75,0xc7,0xeb,0x89, +0xd7,0x2f,0x5e,0xaf,0xbd,0x29,0x6f,0x17,0xef,0x06,0xde,0x5f, +0x78,0x1b,0xbd,0x23,0xbc,0xbb,0x7b,0x0f,0xf2,0xb6,0x78,0x8f, +0xf0,0x1e,0xeb,0x3d,0xdd,0x7b,0x91,0xf7,0x1a,0xef,0x2d,0xde, +0x5f,0x7a,0x1f,0xf3,0x3e,0xe7,0x7d,0xc3,0xfb,0xbe,0xf7,0x33, +0xef,0x3f,0xbd,0xff,0xd6,0x38,0x6a,0x14,0x1a,0x8d,0x6a,0xdf, +0xb2,0x55,0x1b,0xf4,0x4b,0xa5,0x1b,0x46,0xaf,0x4a,0x4a,0x1a, +0x5d,0x3c,0x42,0x37,0x56,0x3a,0x62,0x59,0xf1,0x3e,0x1d,0xea, +0xa1,0xfe,0x1f,0x3d,0xf2,0xd2,0xaa,0xda,0xaa,0x2a,0x6e,0x66, +0x65,0xad,0x6b,0x25,0xa7,0x3a,0xb9,0x2e,0x08,0x75,0x34,0xa5, +0x33,0xf2,0xd5,0x45,0x68,0x48,0x15,0xfa,0xfe,0x29,0x77,0x06, +0xf5,0x57,0x70,0x1b,0xb5,0x17,0xb5,0x88,0x3e,0xe8,0xcb,0x1b, +0x74,0x31,0x5a,0xae,0xc5,0xb5,0x9e,0x08,0xd4,0x1c,0xdb,0x7d, +0x76,0x8d,0x6e,0x2e,0xcb,0x95,0x5e,0xd2,0x72,0x8a,0xad,0xb5, +0xbb,0x38,0x7e,0xe2,0x57,0xaa,0x2e,0x49,0x9b,0x4e,0xe9,0x57, +0x4b,0x8f,0x1f,0xd8,0xf4,0x5c,0x87,0xa8,0x20,0xb6,0x7f,0x2f, +0x73,0xa8,0x8e,0x53,0x17,0x2f,0x1b,0xbd,0x6a,0xd5,0xb2,0x65, +0xab,0x56,0x8d,0x5e,0x56,0x5c,0x3c,0x7a,0x74,0xb1,0x8e,0xdb, +0xa4,0xbd,0xa3,0x7d,0x7a,0xae,0x3f,0x4f,0xeb,0x90,0x4e,0xcb, +0xf1,0x9e,0x79,0xa8,0xb9,0x96,0x53,0xdd,0x64,0x97,0x69,0xeb, +0xc6,0xbf,0xeb,0x21,0x22,0x9c,0x0a,0x6d,0xaf,0xe4,0xb7,0xb3, +0xf2,0x21,0xf3,0xd6,0xa5,0x5d,0xd0,0x70,0x7c,0xf8,0xeb,0xd3, +0x5c,0x96,0x76,0x98,0x6d,0x44,0x6e,0x89,0x7e,0x7b,0x72,0xaa, +0x96,0xab,0xed,0xa0,0xae,0xae,0x5d,0x12,0x16,0x3c,0x8d,0xe5, +0xf8,0x53,0xac,0xbc,0xf6,0xaa,0xfa,0x9a,0x96,0xcf,0x78,0xd7, +0x83,0x79,0xcc,0x9e,0x45,0x43,0x18,0x34,0x9d,0x3d,0xcb,0x0f, +0x61,0xda,0xa3,0xf5,0x28,0x57,0xcb,0x95,0xde,0xb0,0x14,0xd5, +0x2e,0x29,0xe6,0x54,0x23,0xb5,0xaa,0xc3,0xcb,0xd7,0x6c,0xd6, +0x2f,0x2b,0xd2,0x8e,0x96,0x66,0x2f,0x2f,0x3c,0xac,0x93,0xab, +0xfe,0xda,0x53,0x7d,0x76,0xe5,0x58,0x6d,0xd7,0xd5,0xfb,0x23, +0xfe,0xd4,0x60,0xc6,0x34,0x6a,0x64,0xde,0xca,0x3b,0x0a,0x3f, +0xc8,0x71,0x98,0x0d,0xd1,0x7c,0x23,0x46,0x7e,0x65,0xf4,0x15, +0x05,0x37,0xb3,0xaa,0xf6,0x58,0x15,0x57,0xf7,0x0b,0x2b,0xaf, +0x56,0x16,0xd6,0x1e,0x51,0x5f,0x8f,0x44,0xbb,0xa5,0x08,0x76, +0xbc,0xcc,0x3b,0x37,0xec,0x32,0xa8,0xdf,0x08,0xdd,0xe9,0x64, +0xe6,0xc8,0xc6,0xfd,0x9b,0xaf,0x69,0xbe,0x3d,0x94,0x12,0xae, +0x1f,0xc8,0x53,0x52,0xbe,0x6d,0xe7,0xbe,0xad,0xf4,0xca,0xfd, +0xcd,0xb4,0xca,0x42,0x5f,0xad,0x72,0x7f,0x0b,0xad,0x52,0x86, +0x79,0xc8,0xd8,0xde,0x8d,0x0e,0x17,0xac,0xdb,0xc2,0x6c,0xdd, +0xb3,0x62,0xe7,0x66,0xef,0x2d,0x23,0xd7,0x0f,0xd4,0xf1,0x90, +0x6d,0xcc,0xeb,0xc7,0x68,0x27,0x69,0xf9,0xc4,0x03,0x63,0xb4, +0x2a,0x1e,0x33,0x3e,0x60,0x43,0x8e,0xc2,0x0f,0xef,0x78,0x68, +0x2b,0x8f,0x05,0x63,0x38,0x55,0xcc,0xf6,0x20,0xbe,0xe3,0xd1, +0x42,0x06,0xad,0x44,0x01,0x1f,0x1f,0xe4,0xea,0x71,0x8b,0xc7, +0x2f,0x59,0xb2,0x78,0xf1,0x92,0x25,0xe3,0x17,0x8f,0x1b,0x37, +0x7e,0xfc,0x38,0x1d,0x97,0x78,0xf8,0x27,0x1d,0xba,0x1e,0xc6, +0xd7,0x48,0x79,0xb7,0x1b,0x91,0x5c,0xd6,0xba,0xfc,0x2d,0xa7, +0xb5,0x3a,0x8e,0x67,0xa5,0xbc,0x61,0xb8,0x2f,0xb6,0x3e,0x77, +0x1c,0x8d,0x3b,0x31,0xb3,0x58,0xb1,0xa2,0xf6,0x7c,0x5d,0xbf, +0x8b,0xdc,0xe1,0xad,0x1b,0x36,0xae,0xd0,0x73,0x70,0x66,0xed, +0x2f,0x34,0x57,0x54,0x3b,0xec,0x46,0x69,0x31,0xf7,0x4f,0x63, +0x65,0x69,0xd7,0xf0,0xcd,0x54,0x3c,0xc5,0x7b,0xef,0xcf,0xc2, +0x72,0xd1,0x58,0x32,0xfa,0xe0,0x16,0x9e,0x42,0xde,0x8c,0x3c, +0x43,0xdb,0x59,0x6b,0xdb,0xc5,0x8c,0x2a,0x1e,0x3d,0xa1,0x50, +0x33,0xaa,0x68,0xfe,0xf2,0x4c,0x3d,0x27,0xf9,0x5f,0x9e,0xa7, +0x4e,0xc7,0x2b,0xff,0xb2,0x01,0xe3,0x0e,0xb9,0x1f,0x90,0x41, +0x8f,0x58,0x29,0x32,0x70,0xec,0xb7,0xbb,0x8e,0x5d,0xd3,0x73, +0x5f,0xce,0xdf,0xb6,0xe1,0xa0,0xf7,0xa9,0xa1,0x3b,0xa2,0x7a, +0x5b,0x0b,0xd2,0xf3,0x75,0xfb,0xad,0xcc,0x86,0x65,0xeb,0xff, +0xb3,0x55,0xb3,0x73,0x75,0xc9,0x08,0xfd,0x64,0x69,0x41,0x51, +0x89,0x59,0x97,0x3e,0x68,0x27,0xcb,0x29,0xaf,0xd5,0xba,0xa2, +0x53,0xaa,0x8e,0xfc,0x40,0x66,0x1a,0xdb,0x11,0x0d,0x0c,0x44, +0x36,0x26,0x94,0x45,0x29,0x75,0x73,0x7a,0xf3,0x0d,0x19,0xde, +0x29,0xf6,0x0e,0xfb,0xed,0x96,0x4d,0x67,0xd7,0xe9,0xd1,0xc2, +0x37,0x8e,0x4c,0x18,0xab,0x6c,0xce,0xa1,0x18,0x35,0x7a,0x2b, +0xad,0xbc,0xb4,0xf5,0xd2,0xbd,0x03,0xc3,0x5a,0xeb,0xf8,0xeb, +0xd5,0xa8,0x46,0x8a,0xdc,0xa2,0x6e,0xf2,0x20,0x28,0x39,0x61, +0x60,0xa1,0x0e,0x3b,0x54,0xb5,0x32,0xa3,0xb6,0x9d,0xe8,0x5e, +0xfc,0x5b,0x56,0xb9,0x35,0xb6,0x9b,0xad,0x5b,0xfb,0x28,0x2d, +0x02,0x0f,0xf7,0x1e,0x3a,0xb1,0x46,0x57,0xce,0x2a,0x33,0x94, +0xee,0x5c,0xfb,0xd4,0x7d,0xe7,0xf5,0x9b,0xa5,0xe7,0x77,0xef, +0xbd,0x57,0xbd,0x3b,0xb9,0x87,0x2e,0x5b,0xda,0x23,0x35,0x29, +0x4c,0xc7,0x1d,0x5c,0x3f,0x3a,0x0b,0x0b,0x99,0x55,0x50,0x9c, +0x62,0x2e,0x5a,0xbb,0x65,0xb4,0x6e,0x68,0x06,0x93,0xba,0x7a, +0x97,0xf5,0x1a,0xf6,0xe2,0x64,0xd5,0x78,0xec,0xb9,0x4b,0xd4, +0x57,0x79,0x53,0xed,0x79,0x64,0xba,0x5a,0x17,0xd5,0x19,0x99, +0xea,0xce,0xf3,0xa6,0xce,0x52,0xee,0x35,0xe4,0x7d,0x57,0x6a, +0x69,0x1c,0x8d,0x28,0xa4,0x12,0xd9,0x8a,0x39,0x29,0x4f,0xf7, +0xec,0xef,0xaf,0xe3,0x2e,0x66,0xf4,0xdb,0x1e,0xa9,0xe1,0x15, +0x9d,0x9a,0x72,0x7c,0xc7,0x08,0xde,0x8b,0x1f,0x89,0x3d,0x5e, +0x2a,0xaf,0x51,0x56,0x55,0xbf,0xe9,0xa1,0xaa,0x6b,0x24,0xe5, +0x93,0xb7,0x34,0x42,0xf1,0x28,0x7e,0xcb,0x9f,0x28,0x59,0x57, +0xdb,0x28,0xb8,0x2e,0x58,0xca,0x6b,0xa6,0x86,0xf0,0x1e,0xbc, +0xc7,0xd4,0x07,0x48,0xa3,0xab,0x0d,0x96,0x0a,0x8a,0x9f,0x2d, +0x55,0x21,0xcf,0x47,0x67,0xff,0x40,0x92,0xc6,0xab,0x22,0x16, +0xeb,0x5f,0x69,0x99,0x1e,0xa7,0xef,0x26,0x23,0xa0,0xe1,0x92, +0xf2,0x57,0x6e,0xd5,0x2f,0x94,0x6e,0x5d,0xb7,0x72,0xdf,0xbe, +0x75,0x23,0x6d,0xba,0x89,0x52,0x5b,0xfe,0xc8,0x24,0x9d,0x5c, +0x8a,0xa6,0xd4,0xb6,0x67,0x5a,0xb3,0xcd,0xf8,0xae,0x81,0x7c, +0x00,0x36,0x71,0x10,0x0a,0x68,0x86,0xba,0x32,0x2d,0x59,0x34, +0xa5,0xae,0x3d,0xc3,0xed,0xae,0xd8,0xb8,0x7e,0x8f,0xf7,0x89, +0xc4,0xdd,0x9d,0x3a,0x25,0xa6,0x0e,0x4c,0xd9,0x98,0xb7,0xbb, +0x54,0x37,0x4d,0xca,0x31,0xcb,0x57,0x2d,0x5b,0xb4,0x46,0xb3, +0x7c,0xf5,0xe4,0x51,0xdb,0xf4,0x1c,0xb2,0xa9,0x4c,0x3b,0xb1, +0x97,0x9e,0xcc,0x67,0xe4,0x09,0xbb,0xd2,0x0e,0x55,0x61,0x1f, +0x94,0xce,0x6b,0x51,0x36,0xc3,0x7c,0xdc,0xf8,0x78,0xc8,0x60, +0x46,0x3e,0x7e,0xf5,0xba,0x31,0x3b,0xb1,0x71,0xd2,0xaf,0xa3, +0xc6,0x37,0x6a,0xdd,0x05,0xb7,0x83,0x68,0x0c,0x6a,0x40,0xa3, +0x31,0xfc,0x4b,0x15,0x6a,0xc0,0x2d,0x2e,0xca,0xff,0x4f,0xba, +0x86,0x9b,0x89,0x9c,0xd1,0x46,0xe4,0xcc,0x29,0xce,0x3d,0x2a, +0x46,0xb7,0x39,0xd4,0xe4,0xe9,0x6b,0x14,0xc2,0xbd,0x56,0xa0, +0x16,0x08,0xe7,0x80,0xe4,0xaf,0x91,0x9e,0x53,0xae,0xb6,0xa2, +0x31,0x2a,0x4e,0x71,0xa5,0x26,0x07,0x8f,0xe0,0x47,0xde,0xe2, +0xbd,0x50,0x47,0x4e,0xba,0x79,0xd4,0x9a,0x61,0xc3,0x46,0x15, +0x66,0xeb,0x38,0x1c,0x5b,0x34,0x2f,0xfd,0x9f,0x99,0x72,0xf0, +0xff,0xcc,0x94,0x95,0x7b,0x36,0x5f,0xda,0xa6,0xdf,0x74,0x26, +0x72,0x6d,0xb2,0x0f,0x33,0x75,0x6c,0xde,0x8c,0xd1,0x9a,0xd1, +0x79,0xb3,0xe6,0x8e,0xd5,0x27,0xbf,0x8e,0x2c,0xd8,0x14,0xcf, +0x74,0xdb,0xb6,0x27,0xbb,0x52,0x23,0x57,0x7d,0x7b,0xfc,0x58, +0xe5,0xc5,0xe1,0xfb,0x7a,0x0e,0x1d,0x91,0x97,0x3b,0x56,0x3f, +0x65,0xd6,0xb2,0xca,0x53,0x87,0x6a,0xbe,0xf1,0x0a,0x64,0x7b, +0x5b,0x3a,0x87,0xb7,0xf4,0x0e,0x3b,0x3a,0xa0,0x5a,0x77,0x54, +0x92,0x32,0x62,0xcd,0x2e,0xfd,0x62,0xe9,0xae,0x0d,0x6b,0xf6, +0xec,0xd9,0x50,0x98,0xa6,0x1b,0x2f,0x4d,0x1b,0x51,0x98,0xa2, +0x93,0x2b,0xaf,0x21,0xa0,0xc5,0x6b,0x95,0x52,0xb4,0x62,0x93, +0x7e,0xbe,0x74,0xd3,0xea,0x15,0x7b,0xf6,0xac,0x2e,0xc9,0xd1, +0x4d,0x96,0xe6,0x14,0x95,0xa4,0xe8,0xf8,0x56,0x12,0x4e,0x08, +0xbe,0xc6,0x62,0xf0,0x71,0x38,0xf8,0x38,0x31,0xf8,0x1a,0x33, +0x72,0xfd,0xd0,0xb5,0x45,0x99,0xcc,0x90,0xcc,0xc2,0x92,0xe1, +0x9a,0xe1,0x85,0x2b,0x8e,0x66,0xea,0x8b,0xb6,0x0d,0x2d,0x60, +0x38,0x36,0x18,0x35,0x2d,0xde,0x31,0xaa,0x62,0x44,0xb9,0x57, +0xb9,0x74,0xdd,0xbc,0xa5,0x8b,0xd7,0xee,0x44,0x0a,0x34,0xd0, +0x33,0x84,0xe5,0xf5,0xbc,0x8d,0xe1,0x29,0x0e,0xf9,0x69,0x57, +0x2d,0xda,0xfc,0xf2,0xb2,0x9e,0x3b,0x7b,0x72,0xc3,0x99,0x03, +0xd9,0x6b,0x53,0x4a,0xc7,0x4e,0x9f,0x36,0x4e,0x5f,0x36,0x87, +0x13,0x56,0x81,0x2c,0x85,0x60,0x56,0xb4,0xb2,0xee,0x1e,0x5e, +0x0d,0x31,0x73,0xeb,0x85,0xcc,0xad,0x8a,0xde,0x81,0xd7,0xf5, +0x18,0xe6,0xc2,0xb3,0xec,0x60,0xeb,0xfc,0xad,0x3b,0x0f,0xac, +0xd8,0x3a,0x4f,0x5f,0xb6,0x6c,0xd9,0x8c,0xe5,0x1a,0xee,0xb5, +0xba,0x36,0xae,0xf2,0x88,0x96,0x7b,0x76,0xfa,0xc2,0xb3,0x1b, +0xe7,0x53,0x63,0x74,0x7c,0xb8,0x34,0xa6,0x47,0x6a,0x94,0x8e, +0x9b,0x72,0x22,0xbf,0x08,0x85,0x1e,0xbf,0x76,0x82,0x43,0xa7, +0xb0,0x4f,0x76,0xbc,0x85,0xbc,0xd0,0x48,0x6e,0xd3,0x34,0xe6, +0xeb,0x49,0x15,0x63,0x4a,0xbc,0x8b,0x46,0x4e,0xc8,0xcb,0x2e, +0x5e,0xf2,0x9f,0x52,0x9d,0x25,0x89,0x19,0xb9,0x74,0x6b,0xe1, +0x69,0x0d,0x87,0x56,0x5e,0xd7,0x5a,0xd1,0x4a,0x15,0xc7,0x37, +0xa8,0xbb,0xc7,0xaf,0x64,0xe5,0x68,0x70,0x65,0xe5,0x75,0x2d, +0x37,0xe5,0x68,0x51,0x11,0x6a,0x79,0xe0,0xb7,0xa3,0x5c,0xad, +0xf5,0x8d,0x83,0x8a,0x97,0xf8,0x49,0x39,0x09,0x6a,0x80,0x06, +0xf1,0x0d,0x58,0x9c,0x66,0x31,0xca,0x4b,0xb0,0x73,0x3c,0x60, +0x63,0x76,0x0d,0xfe,0x56,0xc7,0x7d,0x9f,0x73,0x73,0xe0,0x11, +0xdd,0x1a,0x56,0xdc,0x10,0xd0,0xd6,0xab,0xe8,0x50,0x15,0x57, +0x3b,0xbb,0x76,0x89,0x4a,0xdc,0x47,0xc8,0x26,0xa1,0xf8,0xb1, +0x5a,0x98,0x59,0x29,0x4e,0x6c,0x50,0x57,0x27,0x70,0x93,0x54, +0xa2,0x41,0xb1,0x2c,0x07,0xaf,0x3c,0x44,0x27,0x1e,0xd2,0x64, +0x3b,0x49,0x3e,0xc5,0xa1,0x40,0x74,0x8a,0x89,0x64,0xb1,0x1a, +0x6f,0x74,0x78,0x13,0xe2,0xa4,0xca,0xd5,0x75,0xf7,0x38,0xc4, +0xd6,0x60,0x87,0x44,0x15,0xea,0xfb,0xe8,0xc6,0x35,0xf6,0x05, +0x7f,0x03,0x6f,0x49,0x21,0x68,0x05,0x6a,0xa9,0x8d,0x41,0xe7, +0x43,0xf9,0xf3,0x31,0x48,0xad,0xbd,0xc6,0x72,0x6d,0x54,0xff, +0xb5,0x33,0xa2,0xa1,0x2d,0xb5,0x75,0x8d,0x5b,0x6a,0x91,0xa4, +0x8d,0xea,0xbf,0xf2,0x39,0x1a,0x1a,0x89,0x3b,0x23,0xb5,0xdc, +0xd3,0x2e,0x37,0x94,0x5b,0x6a,0x0f,0xbf,0x39,0xa1,0x8a,0xe2, +0x25,0x5f,0xb0,0xca,0x8b,0x0b,0xf2,0x73,0xcb,0xb3,0x35,0xc3, +0xb5,0x85,0x5a,0xbb,0x2d,0xf5,0xca,0xad,0x48,0x9f,0xf7,0xa2, +0xc7,0x37,0xba,0x4d,0xac,0xf2,0xc2,0xf1,0x25,0x9b,0x76,0xea, +0xf9,0xd9,0xef,0x84,0x1d,0x65,0x78,0x6f,0xed,0xc1,0x1f,0x10, +0xad,0x53,0x5e,0x24,0x5b,0xba,0x3e,0x46,0x8b,0x53,0x59,0x90, +0xf6,0xc5,0x6b,0xac,0xb6,0x6d,0xa5,0xd6,0x56,0xad,0xb4,0xd6, +0x4b,0x7d,0x5b,0xfe,0x3b,0xf5,0x59,0x95,0x6a,0xae,0xb4,0xea, +0x8d,0x5b,0xf1,0xd3,0xd7,0x8a,0xea,0x9a,0xe2,0x95,0xda,0xe2, +0x1a,0xe5,0x8d,0xff,0x0f,0x89,0xa8,0x15,0x57,0xa3,0x3c,0x8f, +0x9e,0xab,0xd1,0xc6,0x14,0x2d,0xbf,0x51,0xaa,0xf4,0xe5,0xee, +0x54,0x9c,0x39,0xf9,0x8b,0x37,0xa2,0xc3,0xab,0xf8,0xa6,0x8d, +0x63,0x53,0xa2,0x87,0xe8,0x2e,0x26,0x31,0x47,0xb7,0x1d,0xd9, +0x72,0x57,0xf3,0xe4,0x50,0x62,0x9c,0xbe,0x48,0xda,0x69,0xb8, +0xc5,0x57,0xd7,0xd6,0xf4,0x2b,0xcb,0x95,0x69,0xd1,0xc8,0x08, +0xe4,0xc5,0x77,0x14,0xb4,0xd5,0x57,0x49,0xb0,0x46,0xc2,0xf6, +0x21,0x3a,0x52,0xae,0x16,0x85,0xf8,0xbf,0xe6,0x9b,0xf0,0x4d, +0xfc,0x7d,0xf8,0x10,0x3e,0xe4,0xa9,0x0f,0x6a,0xa2,0xbf,0x26, +0xf1,0xef,0x79,0x0a,0xd1,0x7a,0x2e,0x5a,0xcb,0x0f,0x55,0x47, +0x6b,0xb1,0x77,0xa8,0xb4,0xac,0x1f,0x4a,0xc8,0xff,0x6a,0xf4, +0xb2,0xac,0x79,0x5e,0x73,0xa5,0xeb,0xca,0x57,0x2c,0x5d,0x7b, +0x04,0x9b,0x6d,0xb3,0xa7,0x3f,0xcb,0x37,0xe7,0xcf,0x33,0xbc, +0x0b,0x3a,0x1f,0x2c,0xec,0x2d,0xc7,0xaa,0x54,0x75,0x7e,0x6c, +0xad,0xa1,0xf6,0x08,0x73,0xbb,0x2e,0xc3,0x54,0x2b,0x97,0xd6, +0xe9,0xeb,0x8e,0x30,0xe1,0xb5,0xb3,0xc4,0x84,0xda,0x9b,0x3f, +0xae,0xea,0xd3,0x37,0xbb,0x8d,0xae,0x03,0x1b,0x9c,0xf1,0xe5, +0xa1,0xed,0x2b,0xd6,0xee,0x58,0xaa,0x47,0xb1,0xec,0x83,0xcd, +0xb9,0x49,0x7a,0xae,0xf6,0x9b,0x5e,0xaa,0x9a,0xf8,0xd3,0xbc, +0x97,0x6e,0xb2,0x16,0x2f,0x36,0x66,0xbd,0xb0,0xa4,0x68,0x89, +0x4d,0x93,0x98,0x45,0x6a,0x18,0x66,0xf9,0xca,0xe5,0x8b,0x56, +0x6b,0x56,0x2c,0x9d,0x3c,0x6e,0x3d,0x56,0xc0,0xb9,0xba,0xea, +0xd5,0xe9,0xa2,0x43,0xa9,0xdb,0xf4,0x3b,0x91,0xc3,0xf5,0x56, +0xd2,0x84,0x51,0x59,0xc9,0xfa,0x89,0x52,0xb2,0x03,0x6f,0x2e, +0xd2,0x66,0x93,0x1d,0x18,0xc7,0x7f,0x32,0x9f,0x7c,0x74,0xf0, +0xa3,0xc7,0xfb,0x8f,0xcf,0x99,0x31,0xa5,0x05,0x2e,0x08,0x0e, +0x6c,0x11,0xf6,0xed,0x8c,0xbd,0xcc,0xa8,0x91,0xa3,0x26,0x14, +0x69,0x4a,0xc6,0xce,0x5f,0x92,0xa7,0xe7,0x34,0xbc,0x73,0x7b, +0x53,0x43,0xd3,0x97,0xf1,0x17,0x73,0xf4,0x38,0x27,0xab,0x90, +0x41,0xcb,0xb1,0xa8,0x63,0x0d,0x72,0x42,0x25,0xa8,0x24,0x18, +0x39,0xf1,0x1d,0xf5,0xdc,0x2c,0x1c,0x54,0x8f,0x55,0x5c,0xff, +0xb1,0xb6,0xac,0xbe,0xde,0xa1,0x95,0xc3,0x50,0x3b,0xdd,0xb4, +0xda,0x78,0x15,0xe7,0xa3,0x3d,0x84,0x4b,0xbf,0xaf,0x9f,0x72, +0x78,0x9f,0xea,0xcb,0xaf,0x8c,0x45,0x3d,0xea,0x5c,0xf9,0x1e, +0xd8,0xa9,0x87,0x69,0xe5,0x42,0x18,0xe2,0x54,0x50,0x87,0x53, +0x01,0x9f,0x7e,0x09,0xb5,0xbe,0xf5,0xec,0x02,0xca,0xbe,0x34, +0xe8,0x82,0x3d,0x5b,0xac,0xac,0x14,0x93,0x05,0xc7,0xaf,0xac, +0xad,0xab,0xd0,0xfa,0x69,0x6f,0x58,0xba,0x6a,0xb9,0x2d,0xeb, +0xd6,0x6d,0xd9,0x92,0xbf,0x2e,0x2b,0x2b,0x3f,0x3f,0x8b,0x53, +0x55,0xd6,0x1e,0x42,0x63,0x2a,0x03,0xb5,0xfc,0xa9,0xda,0x7b, +0xb1,0x75,0xf7,0x02,0xb5,0x62,0x3c,0x0d,0xbb,0x81,0xd2,0x8b, +0x15,0x5c,0x0d,0xba,0x81,0x5c,0x58,0x04,0xf8,0x32,0x86,0xbb, +0xd0,0xef,0x2c,0x72,0x3a,0xdb,0xef,0x02,0x27,0x3d,0xbc,0x65, +0xed,0xe1,0xc3,0x5b,0x0a,0x86,0xe9,0xb8,0x62,0xc5,0xe9,0x5b, +0x48,0x23,0xfc,0xe7,0x54,0x51,0x3d,0x76,0x5f,0xd3,0xa3,0x1e, +0x52,0x4e,0x2c,0x1f,0x04,0xc7,0xe6,0xae,0xa1,0x2e,0xe7,0x50, +0xc8,0x15,0x4e,0x99,0x28,0x44,0xae,0x54,0x0e,0x85,0x44,0x51, +0x49,0xa3,0xc1,0x78,0x2b,0xa9,0xe4,0x24,0xcb,0x85,0xca,0xd2, +0x1b,0x67,0x05,0x6f,0x1c,0xdc,0x19,0x6f,0x7a,0x30,0x3c,0xcd, +0x72,0x95,0xf6,0x41,0x62,0xd1,0x53,0x7d,0xe1,0x3a,0x3e,0x75, +0x5c,0xab,0x6d,0x7a,0x6d,0xa9,0x96,0x3b,0xb4,0x6b,0xd7,0xa1, +0x43,0x69,0xbb,0x12,0x12,0xd2,0xd2,0x12,0x38,0xe9,0xb0,0x2c, +0x2c,0x80,0xfc,0x8d,0x6f,0xe5,0x3b,0x5f,0x56,0x7e,0x4b,0x8a, +0xe8,0x73,0xa7,0x9e,0x72,0x38,0xd9,0xe4,0x0a,0xc9,0xa6,0xf4, +0x02,0xea,0x75,0x06,0x45,0x9c,0x83,0x8b,0xaa,0x50,0xfb,0x2a, +0xd4,0xf7,0x0a,0x8d,0x7c,0x4a,0x55,0x17,0x8e,0xee,0xfa,0x76, +0x85,0x7e,0x0e,0x1b,0xb9,0xe9,0xb8,0xb9,0x52,0x53,0x73,0xf2, +0xf2,0xf9,0x55,0xfa,0xde,0x1b,0x99,0x84,0x51,0xb9,0xc3,0x07, +0x68,0xe2,0x32,0xae,0xfe,0xa4,0x5f,0x8f,0x16,0x9f,0x96,0xa2, +0xb6,0xfd,0xbe,0x6b,0x34,0x20,0xa1,0x28,0x3e,0x57,0x57,0xc6, +0x1e,0x2f,0x48,0xda,0xd4,0x53,0x13,0x36,0x68,0x40,0xbf,0x22, +0xfd,0xa9,0x0c,0xe6,0xc8,0xca,0xf5,0xdb,0x4e,0x68,0x4e,0x6c, +0xb1,0xf9,0xeb,0xfb,0xc7,0x49,0x79,0x69,0x5c,0xff,0x46,0x5f, +0x7c,0x3d,0xe0,0xb6,0x7e,0xe9,0x05,0x55,0xff,0x91,0xdb,0x4f, +0xeb,0xff,0x23,0x3d,0x7f,0x60,0x7d,0x95,0xee,0x64,0x30,0xdb, +0xd7,0x36,0xb8,0xab,0x0e,0xad,0xa8,0x0d,0x51,0x9d,0xdf,0x39, +0xac,0x95,0xde,0xca,0xf7,0xdd,0x21,0x7d,0xbe,0xf3,0xf0,0x79, +0x9d,0xbc,0x8d,0x56,0xb9,0xbb,0x33,0x5a,0xcf,0x9f,0x55,0xdd, +0x3f,0xb4,0xff,0xab,0x43,0x59,0x1b,0xcc,0x8b,0xf5,0xe5,0x52, +0xe5,0x6e,0x5f,0x0b,0xee,0xe8,0x65,0x1e,0x9f,0x35,0x22,0xc1, +0xbb,0xef,0x21,0xf3,0x7d,0x9c,0x64,0x24,0xb8,0x75,0xb4,0x30, +0x3c,0x59,0xcb,0x27,0x9f,0x46,0x3e,0xc2,0x09,0x01,0x5e,0x7f, +0x8a,0xcc,0x57,0x69,0x74,0xe7,0x8d,0x9b,0xea,0xe1,0xf6,0x81, +0xdd,0xd7,0xeb,0x6f,0x6e,0x47,0x51,0x5a,0xde,0x7a,0x8d,0x77, +0x43,0x0d,0x8b,0xf5,0xe3,0x62,0xa7,0x6b,0xc7,0x6b,0x17,0x1e, +0x43,0x2e,0x73,0x4e,0xdc,0xde,0x71,0xdb,0x2b,0x72,0x3b,0xd3, +0x3d,0x2f,0x63,0x60,0x90,0x86,0xa7,0xfb,0xf7,0xd6,0x9e,0x12, +0x12,0x8e,0x5c,0x24,0x26,0x98,0x15,0xd6,0x3c,0x42,0xbd,0x31, +0xb1,0xeb,0xb5,0xeb,0x55,0x7c,0xd3,0x40,0x21,0x54,0x9b,0xdd, +0x68,0x82,0xe4,0x25,0xfa,0xb1,0x22,0x99,0x45,0xc7,0x7e,0x9b, +0x73,0xfe,0xd8,0x96,0x4a,0x2f,0xe4,0xa1,0x95,0xef,0xc4,0x29, +0x0f,0x47,0x2d,0x12,0x42,0x17,0xc9,0xfe,0x25,0x65,0x8a,0xe9, +0x12,0xa7,0x4d,0x4e,0x50,0xd1,0x80,0x56,0x60,0x15,0x6f,0x9f, +0xd8,0x73,0xee,0x48,0xc6,0x86,0xc4,0xf9,0xa2,0x8a,0xe1,0x7d, +0x84,0x8e,0x81,0x5a,0x79,0x8e,0xb6,0xa0,0x5a,0x79,0x6b,0xa1, +0x56,0xf9,0x7d,0x82,0x96,0x0f,0xe2,0x83,0xee,0x34,0x45,0x8a, +0x9b,0xa7,0xb7,0x5f,0xdc,0xae,0x2f,0x37,0xb2,0x4d,0x06,0x0f, +0x68,0xd1,0x2b,0x61,0xd5,0xae,0x74,0xdd,0xd0,0xbe,0x8c,0x79, +0xdf,0xb9,0xec,0x1a,0x0d,0x6a,0xfc,0xe0,0x31,0x6a,0xa8,0x57, +0xde,0xe2,0xd3,0xbf,0x56,0xb5,0xe9,0x77,0xe1,0x99,0xfe,0x96, +0x54,0xf9,0xfd,0x54,0xa1,0x7e,0x9f,0x59,0x85,0xe6,0x5d,0x43, +0xa3,0xaa,0x14,0x4f,0x6a,0xd0,0xa2,0x27,0x71,0x4f,0x95,0xaf, +0x9e,0xa8,0xd1,0x2a,0xec,0xb4,0xd5,0x4f,0x10,0xf3,0x4b,0xfc, +0xb1,0x0e,0x78,0xc9,0xa5,0xca,0xda,0x4b,0xab,0x0e,0x1d,0x79, +0xe0,0x8d,0xa0,0xe9,0x06,0xcf,0xe9,0xf8,0x09,0x6c,0xcd,0x3b, +0x46,0x85,0xe6,0x21,0x7f,0xa9,0xf2,0xd5,0xdd,0x23,0x69,0xd1, +0xfa,0x24,0x69,0xd4,0xd0,0xf4,0x8e,0x3a,0xde,0x1f,0xdd,0x56, +0xa1,0x51,0xa8,0x31,0x9e,0x72,0xfd,0x40,0x66,0x37,0x7d,0x8a, +0xb4,0x5b,0xa2,0x2d,0x5a,0x27,0x47,0x26,0xc5,0xb5,0x87,0xa3, +0xd0,0xed,0xe9,0x0f,0x95,0x55,0xe8,0x04,0xde,0x29,0xdb,0x3e, +0xfd,0x16,0xa9,0x7e,0x48,0xb8,0xc3,0x6b,0xd7,0xe9,0xc3,0x97, +0x30,0xcd,0x97,0x67,0xee,0xbd,0xe0,0x7d,0xef,0xd4,0xbe,0x9f, +0x1e,0x1f,0x4f,0x1f,0xb8,0x47,0x77,0xf6,0x04,0x73,0x75,0x68, +0xa7,0xbd,0x3c,0xad,0xe1,0x1b,0xfa,0x76,0xe1,0xdd,0x03,0x0e, +0xb4,0x47,0xda,0x02,0xfd,0xb7,0xe3,0x98,0xe7,0xa3,0x77,0xa6, +0xc5,0x7a,0x07,0xf7,0x1d,0xdc,0x34,0x38,0x7e,0x7b,0x65,0x3f, +0x5d,0x8f,0x41,0x4c,0xe4,0xc9,0x3b,0x03,0x91,0x9b,0x06,0xe7, +0xb1,0x50,0xed,0x0d,0x14,0xa7,0xfa,0xaf,0xda,0x5d,0x29,0x1b, +0xff,0xe1,0xc0,0xb5,0x35,0x2d,0x55,0xab,0x74,0x1a,0x9f,0xa1, +0x15,0x44,0xfa,0xf9,0x9e,0x05,0xdd,0x1e,0x7b,0x4f,0x59,0x95, +0x24,0x54,0x2a,0xa5,0x55,0x68,0xca,0x35,0xb4,0xb2,0x0a,0x7e, +0xfd,0x18,0x5d,0x7e,0x4a,0x7f,0xda,0xd0,0x4b,0x50,0x41,0x34, +0x8e,0xb3,0x58,0xde,0x39,0x2c,0x8e,0x97,0xda,0xf4,0xd7,0x33, +0x18,0xc4,0xed,0xbe,0xb8,0xf2,0x6b,0x0d,0x72,0x39,0xd0,0x06, +0xef,0x3c,0x19,0x75,0x8d,0x0a,0xa5,0x85,0x5a,0xdd,0x8c,0x2a, +0xbc,0x2f,0x25,0x08,0x59,0x7c,0x11,0xba,0x3c,0x01,0x9f,0x4d, +0x12,0x84,0xb3,0x09,0x5e,0x2e,0x3e,0x1b,0xb1,0xdf,0x55,0x2b, +0x5b,0x84,0x07,0x68,0x95,0xf1,0xe1,0x78,0xd1,0x3a,0xf0,0x1d, +0xea,0x2d,0x1a,0xab,0xf4,0x0f,0xc7,0xed,0xad,0xb5,0x4a,0x06, +0x70,0xaa,0x81,0x87,0xa4,0xc7,0x37,0x8e,0xb2,0xe8,0xa7,0x48, +0x2d,0xb9,0x05,0x83,0x86,0xe5,0xaf,0xde,0x3c,0x52,0x37,0xd4, +0xca,0x58,0xd7,0x7f,0x99,0x59,0xa5,0x79,0xfc,0xf5,0x81,0xcb, +0xa7,0x52,0x36,0x27,0x2c,0x10,0x96,0xe5,0xc5,0xfe,0x85,0xbb, +0x36,0x1d,0xf5,0x3e,0xd7,0x77,0x67,0x78,0x97,0x94,0x9c,0x8c, +0x02,0xdd,0x01,0x2b,0xb3,0x69,0xc5,0x86,0xe5,0x7b,0x34,0x7b, +0xd7,0x8f,0xcc,0xc0,0xb9,0x32,0x2b,0xbf,0x70,0xa0,0x68,0xfc, +0xab,0x35,0x13,0xd0,0xed,0xd1,0x8f,0x94,0xcf,0xd1,0x85,0x52, +0xd5,0x1f,0xb7,0x8e,0x5f,0xdb,0xaa,0xef,0xb5,0x97,0xe9,0x93, +0x3b,0xc0,0x1a,0xa3,0x69,0xd1,0xe3,0xca,0x0f,0xfa,0x75,0xb5, +0x8a,0x2f,0xa5,0xa8,0xa9,0xdf,0x6b,0x5c,0x4b,0x19,0x5a,0xf8, +0xf0,0xa1,0x7c,0xf0,0x4f,0x3e,0xa8,0xb9,0x6e,0x6a,0x6d,0xb6, +0xea,0xe1,0x37,0xdd,0x7d,0xf5,0xe3,0xf9,0x63,0xf3,0xa5,0xdf, +0x5f,0xbe,0xfa,0x44,0x87,0x77,0x59,0x1f,0x2d,0x8e,0x23,0xfa, +0x57,0xad,0x9c,0x1f,0x5a,0x59,0x7b,0xb7,0x12,0xb1,0x48,0xa6, +0x40,0xf7,0x91,0xa2,0x71,0xb5,0xf2,0xd9,0x1f,0xfc,0x50,0x15, +0xb2,0xc5,0x6b,0x6b,0x9f,0xf3,0x3f,0xc6,0xa2,0x8a,0xba,0xbb, +0xfc,0x1c,0x29,0x3a,0xf0,0x66,0x8e,0x4a,0xf9,0xa2,0x9b,0xb6, +0xa1,0x96,0x8c,0x5d,0x23,0x8e,0x7d,0x81,0x1e,0xbe,0x91,0xfd, +0xf3,0x14,0xcb,0x17,0xbd,0x93,0xa9,0x70,0xbd,0xc5,0x2a,0x9f, +0x1d,0xd1,0xca,0x27,0x22,0x1d,0x5a,0x8c,0x74,0x0a,0x54,0x84, +0x9a,0x2b,0x57,0xa3,0x53,0x13,0x55,0xa7,0x57,0x6d,0xd8,0xa1, +0x5f,0x21,0xdd,0x51,0xbc,0xa1,0x5f,0xbf,0xe2,0x11,0x56,0x5d, +0x89,0xd4,0xba,0x6a,0xc4,0x69,0x9d,0x32,0xb1,0xd6,0x20,0xf9, +0x1f,0x7d,0xf2,0xd5,0x37,0xb4,0xf0,0xd7,0x6a,0x34,0xa7,0x9a, +0xfe,0x3f,0x9f,0x99,0x50,0x14,0x6a,0x7d,0x81,0x6f,0x7d,0x3d, +0x2c,0xba,0x6b,0xf7,0xcb,0x75,0xaf,0x70,0x7d,0x76,0x07,0x3b, +0x82,0xfb,0xa9,0xbb,0x77,0x76,0xe8,0xff,0x3b,0x1b,0x88,0x39, +0x44,0x47,0x72,0xc8,0x98,0x07,0x3c,0xf6,0x18,0x3d,0xf7,0x14, +0x9b,0xd9,0x84,0x4e,0xe0,0xe3,0x37,0xde,0xa5,0xf8,0x13,0xcc, +0x4f,0x2c,0x1f,0x83,0xbe,0x62,0x10,0xbd,0xf8,0xfc,0x4d,0x24, +0xf1,0x46,0x8a,0xe8,0xdb,0xbc,0x4a,0xc7,0xcf,0x7f,0xd7,0xa3, +0x86,0xad,0x65,0x24,0x68,0x21,0x6a,0x2f,0xbd,0xbe,0x3f,0xb5, +0xab,0x7e,0x80,0xb4,0xab,0x39,0x35,0x5a,0x30,0xb0,0xea,0x31, +0xfb,0xcd,0x97,0x57,0x6f,0xff,0xec,0x5d,0x3d,0xe4,0x64,0x58, +0x87,0x41,0x83,0x63,0xe3,0x0e,0x26,0x9d,0x3b,0xb2,0x61,0xfd, +0xc6,0xa5,0xba,0x79,0x33,0x46,0xc7,0xf6,0x4f,0x08,0xee,0xed, +0x55,0x83,0xda,0xa9,0xfe,0x57,0xf5,0xbd,0xba,0x08,0x1d,0xab, +0x42,0xc3,0xb5,0x6a,0x74,0x0c,0x75,0x94,0x22,0xd5,0xf5,0xdb, +0xb8,0x54,0x16,0xf9,0xea,0x05,0xbe,0x6c,0xcd,0x1b,0x1c,0xbf, +0xed,0xd9,0xfa,0x5c,0xf9,0xf6,0xac,0x30,0x2d,0x1d,0xc5,0xa0, +0x2e,0x48,0x09,0x2b,0xef,0xa2,0x8b,0x77,0xe9,0xda,0x21,0xea, +0xbb,0x6f,0x7a,0x34,0x62,0x79,0x17,0x5c,0x4c,0x4c,0x61,0x85, +0x72,0x82,0xe1,0xc1,0xbb,0x1e,0x77,0xd1,0x4b,0x16,0x8d,0x58, +0x20,0x45,0xcd,0x78,0x1e,0x35,0x43,0x3c,0xb3,0x80,0x1f,0xc1, +0xca,0x55,0x2f,0xff,0xe5,0x2e,0xa0,0x35,0xfb,0x88,0xff,0x26, +0x54,0x2b,0xdf,0xab,0x55,0x26,0xee,0xd2,0x2a,0x57,0x4f,0x5c, +0xb1,0x7a,0xdc,0x56,0x8d,0xbc,0x5d,0x05,0x33,0x6c,0x7e,0xc2, +0xd2,0xd3,0xde,0xa7,0x0e,0x6d,0xfe,0xee,0x87,0xc3,0x69,0xd9, +0xeb,0x74,0x27,0x8f,0x31,0x27,0x07,0xc7,0x6e,0x6d,0xa3,0xe1, +0x9d,0x02,0x06,0x36,0xe6,0x25,0x7f,0x16,0x57,0x8d,0xd7,0x7f, +0x57,0xca,0x1c,0x99,0x7c,0x70,0x6c,0x3f,0xef,0x1e,0xf1,0x39, +0x61,0xa1,0x7d,0x36,0x9f,0x1c,0xac,0xeb,0x37,0x94,0xfb,0x97, +0x18,0xdf,0xfd,0x59,0x88,0x5f,0xcb,0xd0,0x72,0x5f,0x68,0xeb, +0x22,0xd1,0x6d,0x21,0xf6,0x94,0x05,0x46,0x21,0xd9,0xa1,0x1b, +0xa5,0xaa,0x97,0x97,0x4f,0x5c,0xdb,0xa2,0xc7,0x09,0xd9,0x9e, +0xb0,0x83,0x1f,0x19,0x50,0x73,0xa1,0xa6,0x12,0x13,0xb3,0x98, +0xa2,0xb9,0xd5,0xf6,0x2d,0xdc,0xee,0x33,0xbf,0xaa,0xab,0xd1, +0x5b,0xf6,0xff,0xd5,0x67,0xce,0x87,0x61,0x3f,0xf1,0xc7,0x67, +0x1e,0xa8,0xfe,0x93,0xad,0xa9,0x8d,0x62,0x16,0xb0,0xf7,0xeb, +0xa2,0x98,0x3f,0xd9,0x7b,0xb5,0x4b,0x98,0x18,0xb6,0x57,0x5d, +0x3c,0x33,0x91,0x0d,0xa8,0x8d,0x67,0x02,0xd8,0x00,0x11,0xef, +0x85,0xf1,0x28,0xe1,0x10,0x7f,0x54,0x8d,0x5a,0xb1,0xc8,0x0d, +0x2f,0x90,0x37,0xf2,0xc6,0x0b,0xe4,0xa6,0x8f,0x46,0xdb,0x43, +0xd9,0xfb,0x42,0x82,0x5d,0x7f,0x5d,0x7a,0x65,0x7f,0x7a,0x38, +0x5e,0xa1,0x70,0x73,0x7a,0x17,0x1d,0x5a,0x6b,0x52,0xdd,0x7f, +0xd3,0x23,0x14,0x17,0x2f,0x33,0x8e,0xf3,0x9d,0xd9,0xbb,0x67, +0x99,0x63,0x5f,0xee,0xdb,0xff,0x95,0xf7,0xa9,0x94,0x83,0xe1, +0x51,0x29,0x29,0xc3,0xc6,0xe8,0x4e,0x15,0x32,0x3b,0x96,0xac, +0x5c,0xbd,0x53,0xb3,0x63,0x65,0x51,0x9e,0x7e,0xaa,0xd4,0x56, +0x92,0x95,0x96,0xad,0xe3,0x19,0x3f,0x06,0x17,0x81,0x48,0xaf, +0x3e,0xc7,0xde,0xd9,0xbc,0xac,0x1a,0xeb,0x3f,0xb2,0xf6,0x37, +0xc6,0xc8,0xf2,0x72,0xfe,0xbe,0x85,0xa7,0x99,0xe9,0x6c,0x12, +0x92,0xf0,0x7a,0xf4,0x1d,0xe3,0xc7,0xa2,0x71,0x75,0xdb,0xd2, +0xfd,0x98,0x46,0x2c,0x77,0x5a,0x8d,0x5d,0xe4,0xd5,0xa5,0xf3, +0x2f,0xff,0xe8,0x72,0xb1,0x91,0x3e,0x10,0xf5,0x0c,0x63,0xab, +0xeb,0xfa,0xaa,0x50,0xbf,0x3b,0xa8,0xaf,0x16,0x2d,0x8c,0x55, +0x09,0xb5,0x35,0x3e,0x9b,0x3c,0xbe,0x70,0x4e,0xb8,0xd8,0xe9, +0x7e,0x2e,0x30,0xb0,0x7b,0x4f,0xe1,0xae,0xe9,0x42,0xcf,0xc7, +0xfa,0xd3,0x92,0x21,0x19,0x3b,0x2f,0xea,0x8f,0x4b,0x2f,0x6e, +0xdf,0x79,0xf4,0xe8,0xf6,0xf4,0x38,0xdd,0x20,0x69,0x5c,0x46, +0xfa,0x10,0x1d,0xc7,0x3e,0xe7,0xc7,0x33,0xbd,0xd6,0x6d,0x2d, +0xd8,0xa3,0xb9,0x58,0xd5,0x95,0x0d,0x45,0xc3,0x0b,0x4f,0xdb, +0x0b,0xd8,0x4d,0xf3,0x96,0x2f,0x5b,0x73,0x14,0x1f,0x8e,0xd7, +0x09,0x05,0x6c,0x03,0xec,0x73,0xdc,0x41,0x2d,0x0a,0xd7,0xd6, +0x4a,0x62,0x55,0xe8,0x54,0x25,0x3f,0xa6,0xf6,0x50,0x2c,0x5b, +0x27,0x79,0x37,0x59,0xc5,0xf5,0xc9,0xb5,0x5a,0xbb,0x6a,0xda, +0x24,0x0a,0xb9,0x0b,0xfd,0x20,0xe4,0xae,0xf0,0xd7,0xbc,0x27, +0x2f,0xef,0xe0,0xcf,0xfb,0x8c,0xd3,0x25,0x22,0x49,0x14,0x0f, +0xd9,0xb4,0x25,0xb9,0xc7,0x74,0xc7,0x59,0x5c,0xa7,0x57,0x21, +0xa5,0x90,0xe3,0x51,0x29,0xd2,0x41,0x21,0x97,0xe0,0xf4,0x8e, +0xf1,0x66,0x5a,0x16,0xb9,0x0a,0xeb,0x8d,0xae,0x57,0xa1,0xf3, +0xc5,0xb0,0xba,0x06,0xad,0xaf,0xa1,0x6b,0x3b,0xab,0x6b,0xde, +0xf4,0x08,0xe6,0xcf,0xf3,0xeb,0x71,0xf5,0x8c,0xa3,0x14,0x5d, +0x47,0xeb,0x59,0xf9,0xac,0x32,0x06,0x35,0xfa,0x70,0xc0,0x44, +0x27,0xf9,0x53,0xfb,0xb5,0xf2,0xda,0xb5,0xea,0x4a,0xbe,0xb4, +0xd6,0x15,0xe5,0x6b,0xa5,0xa8,0x40,0x3b,0x4f,0xcb,0x55,0xab, +0xab,0x59,0xf4,0x65,0xed,0x09,0x66,0x2e,0x3b,0x96,0x4f,0x60, +0xf8,0x57,0x98,0x54,0x98,0x94,0xff,0xb2,0xee,0x04,0x33,0x95, +0x5d,0x8a,0x12,0x18,0xf4,0x2a,0x18,0x57,0x79,0x26,0x05,0xd2, +0x63,0xdf,0x1c,0x8e,0x4f,0x10,0x83,0xb5,0xf8,0xe4,0x80,0xbc, +0xb4,0x72,0x5c,0xcb,0x9f,0x67,0x42,0xd9,0x5b,0x7c,0xc5,0xb2, +0xf8,0xd5,0x23,0x37,0x4d,0xf1,0x9a,0x2a,0xcd,0x9a,0x52,0x3c, +0xba,0xa8,0x6b,0x30,0xbf,0xc2,0xf3,0x11,0xfb,0x07,0xba,0xc1, +0x70,0x28,0x4e,0xfb,0x44,0xfa,0xc3,0xa9,0x2b,0x3f,0x5d,0x3a, +0x68,0xeb,0xbf,0x52,0x77,0x69,0x07,0x73,0x3d,0xbb,0xfb,0xb1, +0x66,0xc2,0xb1,0xb2,0x52,0xa8,0x53,0xf9,0x06,0x2b,0xb4,0x42, +0xb1,0xf8,0xd7,0xce,0xef,0xcf,0xaf,0xd4,0x0f,0x5c,0x53,0x64, +0x65,0x06,0xd9,0xc6,0xe6,0xe3,0x93,0xf4,0xd8,0x75,0xc7,0x6d, +0xfa,0xa2,0x1d,0x03,0x0b,0x99,0x1e,0x2b,0x77,0xfa,0xfd,0x25, +0x5c,0x0f,0x76,0xd4,0x8a,0x95,0x6e,0x93,0x4a,0x85,0x00,0xf2, +0xb5,0xe4,0x58,0xcc,0xe2,0x54,0x5a,0x27,0x92,0xc3,0x43,0x84, +0x0a,0xfd,0xa8,0xf1,0xd1,0xa0,0xfd,0xb3,0xe6,0xfc,0x3c,0x85, +0x41,0x4f,0x2b,0xf9,0xa7,0xb8,0x72,0xe6,0x6e,0x7e,0x7d,0xb4, +0x0f,0x9a,0x1d,0x24,0xc5,0x01,0x34,0x9d,0x19,0x80,0x7a,0x47, +0x4a,0x91,0x93,0x04,0x57,0xa2,0x48,0x8d,0xfa,0x32,0xe5,0xac, +0x3c,0x62,0xd8,0x27,0xd2,0x2b,0x2b,0x31,0xe5,0x53,0x75,0xf7, +0x2a,0x09,0x61,0xbc,0x8c,0xa7,0xb8,0xf3,0x97,0x8e,0x1c,0x1d, +0x8a,0xf2,0x43,0x59,0xbe,0x21,0x9f,0xce,0xf4,0x42,0xf8,0x74, +0xe5,0x78,0x54,0x85,0xf7,0x86,0x8e,0xcc,0x1c,0xbe,0xa3,0x70, +0x6d,0xf5,0xfa,0x95,0x78,0x74,0x63,0xab,0xdf,0x25,0xaa,0xd0, +0x40,0x61,0x3b,0x09,0x7b,0xd7,0x80,0x1f,0x25,0xe5,0x1e,0xd3, +0xe8,0xb7,0x37,0x83,0x55,0x7c,0xe3,0x18,0x5e,0xca,0x0f,0x99, +0xa0,0x37,0x0b,0x4b,0x2d,0x13,0x96,0xfa,0xb8,0xee,0x18,0xcb, +0x85,0xa7,0x25,0x27,0x0f,0xf1,0xee,0x7f,0x34,0xf7,0xfc,0xf1, +0x2d,0x2b,0xd7,0x2c,0xd1,0xa1,0x81,0x58,0x12,0xa1,0x26,0x16, +0xeb,0x79,0xb4,0x52,0x28,0x9e,0x71,0xd1,0x2e,0x48,0x51,0x89, +0xdf,0x39,0xde,0x07,0x6d,0x81,0x28,0x11,0x75,0xa5,0x51,0x22, +0xef,0xa3,0xba,0xca,0x22,0x29,0xda,0xc2,0xf0,0x2a,0x7c,0x52, +0x46,0x6d,0xb5,0xf2,0xff,0xb5,0xdd,0xc8,0x49,0x1d,0xf5,0x44, +0xfa,0xe9,0x4e,0xa0,0x87,0xfd,0x4e,0x20,0x6e,0xfb,0xe9,0x8c, +0x9b,0x1a,0xa4,0xb8,0xf3,0x02,0x75,0x40,0x1d,0x3a,0xbd,0xe0, +0x15,0x91,0xfd,0x32,0xe2,0xf0,0x76,0xcc,0x21,0x46,0xc5,0x37, +0x47,0x7e,0x08,0xbf,0xf2,0xce,0xf0,0x49,0xbc,0x89,0x09,0x93, +0x22,0x01,0x70,0xc5,0x97,0x0a,0x97,0xdb,0x23,0x60,0xe5,0xca, +0xe5,0xdf,0xdc,0x46,0x8b,0x3d,0xdb,0xb1,0xbe,0x82,0xff,0x4b, +0x91,0x67,0xff,0x3b,0xbc,0xc6,0x9a,0x34,0x71,0x42,0x96,0x6e, +0x2a,0x4a,0x42,0x81,0x55,0x75,0xcd,0x4d,0x28,0x90,0xfb,0x1a, +0xb5,0x11,0x4e,0x00,0x49,0xc8,0xc4,0x54,0x4b,0x79,0x0c,0xf2, +0xe2,0x51,0x73,0xde,0x0f,0x1f,0xfb,0x70,0xb0,0x1f,0x5e,0xb6, +0x7a,0xa3,0x7e,0x8d,0x74,0xe3,0xe8,0xd5,0xc3,0x86,0x8d,0x2e, +0xca,0xd5,0x15,0x4a,0x73,0x97,0x15,0xe1,0x23,0x97,0x82,0x2c, +0x8a,0xf2,0x14,0x86,0x2b,0x55,0xca,0xd5,0x3b,0xea,0xea,0x2a, +0x6b,0xeb,0x84,0xdb,0x3c,0xd1,0x5a,0x7a,0xd1,0x5a,0x1f,0x0e, +0x3f,0x76,0x63,0xdd,0xc3,0xa1,0xd2,0x80,0xbb,0xa2,0x6d,0xc0, +0xb8,0xc7,0xb2,0x18,0xc3,0x7b,0xb8,0x2f,0xb6,0xe6,0xa2,0x6a, +0xfa,0x81,0xba,0xb6,0x6b,0x25,0x1f,0xc7,0xa1,0x55,0xb7,0xe0, +0xb9,0xda,0x02,0xba,0x76,0x37,0x5a,0xa5,0xba,0x55,0x57,0x10, +0x21,0x95,0x5f,0xda,0x99,0x33,0x40,0x3f,0x56,0x3a,0x24,0xc9, +0xda,0xaa,0xd3,0xc0,0x4d,0x27,0x32,0x75,0xbd,0x86,0x70,0xbf, +0x1e,0x1e,0x12,0x8b,0x8f,0xc0,0xed,0x7a,0x0d,0x6b,0x1b,0xd9, +0x7b,0x7b,0xe5,0x20,0x5c,0xbb,0x71,0xd8,0x07,0xe5,0xe2,0x11, +0xa5,0x89,0xf6,0xca,0xc3,0x3f,0x91,0xff,0x2e,0x5c,0x20,0x72, +0x68,0x07,0xde,0x71,0x5b,0x7c,0xff,0x10,0xb9,0xbc,0xea,0x7c, +0x2c,0x74,0x91,0x7e,0x2e,0x3e,0xf4,0x7d,0xb7,0x57,0x2c,0x42, +0xe6,0xe2,0x22,0xe4,0xc8,0xd5,0x1a,0x9d,0x7c,0x66,0x65,0xed, +0x0b,0x2c,0xc5,0x92,0x6a,0xba,0x5a,0xb8,0x9d,0xe1,0x3b,0x73, +0xfc,0x0d,0x34,0xe8,0x1c,0x1a,0x74,0x49,0xfc,0x7f,0x11,0x0d, +0x82,0xdc,0x25,0x16,0xef,0x7a,0x3b,0x98,0xd3,0xfc,0x74,0xde, +0xe1,0xab,0x4b,0x48,0x25,0xe5,0x8a,0x90,0xe6,0x28,0x6a,0x7c, +0x14,0x22,0xbf,0x4b,0xa8,0xd5,0x65,0xba,0xb6,0x2b,0x3e,0x6e, +0xd7,0xd6,0xc5,0xd6,0x1d,0xe2,0xc7,0xb0,0xc2,0x79,0x14,0x25, +0x0f,0x19,0xf2,0xc8,0x78,0xdc,0x3c,0xa3,0xac,0xe5,0x3c,0x86, +0x3b,0x81,0x9c,0x8e,0x5f,0xfb,0x70,0xad,0x2c,0xb9,0x74,0x88, +0xab,0xae,0xa8,0xa2,0x6b,0xa7,0xf0,0x06,0x55,0x15,0x4a,0x09, +0xaa,0xed,0x1b,0xc6,0x31,0x77,0xac,0xfd,0xef,0xf2,0xee,0x1a, +0xbe,0x63,0x08,0xaf,0xe2,0xc7,0x70,0x02,0x85,0xc1,0x43,0x1e, +0x8b,0x14,0x5a,0x60,0x0a,0xbd,0xb4,0xc2,0x15,0x34,0xff,0x52, +0x52,0xfb,0x0b,0x97,0x7e,0x04,0xb9,0xeb,0xd1,0xe0,0x60,0x7e, +0xb0,0x94,0x6f,0x7f,0x26,0x0c,0x1f,0xd1,0x60,0x15,0xea,0x59, +0x05,0x85,0x93,0x6c,0x46,0x0d,0xcd,0xd5,0x2b,0x09,0x75,0xe5, +0xc2,0x47,0x01,0x38,0x73,0xf0,0xd3,0x59,0xde,0x2d,0xba,0x23, +0xef,0xcc,0x5d,0x42,0x05,0xc5,0x10,0xad,0xb8,0x4e,0xa3,0x27, +0xb8,0xc0,0xe2,0xe2,0xf7,0x30,0x7d,0x46,0x24,0x08,0xd5,0xdb, +0x00,0x9c,0x01,0xf1,0x51,0xd3,0xf9,0xcc,0x7d,0x1c,0x78,0x67, +0x43,0x1f,0xf3,0xce,0x0c,0x37,0x66,0xf3,0x13,0x1d,0xfa,0x35, +0x82,0x7f,0x2b,0xe5,0xe1,0x9a,0x1e,0x1c,0xdb,0x62,0xca,0x8c, +0x39,0xc7,0xf7,0x3f,0x7e,0x34,0xf8,0x28,0x23,0x17,0x94,0x3d, +0x15,0x8b,0x4e,0xc5,0x06,0x6a,0xff,0xa3,0xbd,0x86,0xcf,0xc6, +0x3f,0x56,0xe3,0x7a,0x2e,0xee,0x44,0x13,0x2d,0x3e,0x24,0xb3, +0xcb,0xf6,0xef,0x5d,0x70,0x4e,0xf3,0xd7,0xce,0xa1,0xbc,0xbb, +0x9e,0x93,0x9e,0xdb,0x55,0xd8,0x5f,0x6f,0x96,0xf6,0x4f,0x2b, +0xe8,0xa9,0xe3,0xf8,0x90,0x2a,0x24,0x29,0x42,0xd5,0x55,0xa8, +0xb0,0x0a,0x72,0xe4,0x2e,0xe2,0x8e,0x96,0x3b,0x8e,0x26,0x9d, +0x9c,0x42,0x4c,0xa4,0xbe,0xc2,0x25,0xef,0x63,0x46,0x8f,0x1b, +0x85,0x77,0xe5,0xa2,0xa2,0x85,0x9b,0xb8,0xa2,0x4b,0x47,0x51, +0xc7,0x53,0x10,0x55,0x9f,0xa7,0x51,0x35,0x97,0x92,0xa9,0xe3, +0xd5,0x0d,0x99,0x78,0xb4,0x5e,0x2a,0x47,0x9e,0x38,0xc7,0x32, +0xe8,0x1c,0xc7,0x1b,0x88,0x2d,0x39,0xb6,0xa5,0x28,0xe4,0xa3, +0x47,0x43,0x8e,0x32,0x1c,0x1f,0x5b,0x84,0x7a,0xdd,0xa8,0x6d, +0x78,0xa3,0x14,0x9f,0xa3,0xd1,0xc2,0x2a,0xf8,0x7d,0x0d,0xda, +0x8e,0x6b,0x72,0x13,0x57,0x2c,0xae,0x39,0x5a,0x82,0x8d,0x50, +0xcd,0x4d,0xf8,0x72,0xe4,0xca,0x1c,0xe1,0x3a,0x70,0xc3,0x3c, +0x8e,0xfd,0x65,0xde,0xac,0xb2,0x41,0xe6,0x40,0xe3,0xb1,0x21, +0x9c,0x74,0xca,0x2f,0x73,0x66,0xed,0x1f,0xf4,0x28,0xf0,0xe8, +0x31,0x0e,0x85,0x57,0x22,0xcf,0x4a,0x78,0xa1,0x36,0x17,0x9b, +0xf8,0x04,0xca,0x7d,0x45,0xfe,0xd7,0x4b,0x0a,0x56,0x0e,0x13, +0x3b,0xcc,0x7e,0x7f,0xfe,0x14,0x52,0xeb,0x39,0xe1,0x13,0x24, +0xd4,0x15,0xb3,0x49,0xab,0xe6,0x6e,0xa2,0x79,0x55,0xf0,0xd6, +0x53,0xb4,0x0a,0x2f,0x4f,0x11,0xda,0x75,0x12,0xa2,0x98,0xaf, +0x68,0x34,0x96,0xb3,0xda,0x4f,0xfb,0x8a,0xab,0x77,0x86,0xd5, +0x74,0xba,0xc6,0x95,0x5e,0xc9,0x28,0x42,0xe3,0x2e,0xa2,0xd0, +0x2b,0xdc,0x34,0x5c,0x76,0x8f,0x98,0x56,0x32,0x7a,0x74,0x16, +0x37,0xf3,0x1a,0xf2,0xbc,0x76,0xec,0x1a,0x3e,0x55,0x60,0xd7, +0x32,0xb3,0xbf,0xa2,0xef,0x99,0x85,0x78,0xef,0xbe,0x0b,0xf9, +0x25,0xb5,0x21,0x34,0xdf,0x86,0x13,0x7d,0x46,0x2c,0x1b,0xf1, +0xc6,0x84,0xf7,0x11,0xd4,0xb5,0x23,0xaf,0xe1,0xd2,0xc7,0x95, +0x5a,0x75,0xbc,0x7b,0x2c,0x0a,0xe7,0x50,0x5b,0x29,0x8e,0xe7, +0x9b,0x8c,0x5c,0xf0,0xd1,0x3a,0xe1,0xc3,0x21,0x08,0x4c,0x00, +0x4e,0x03,0x20,0x92,0x81,0x65,0x10,0x74,0x51,0x80,0x86,0x5e, +0xc0,0x0d,0xc0,0x19,0x10,0x28,0x1c,0xe0,0x2c,0x0e,0x48,0x01, +0xf0,0x11,0xbe,0x9e,0x15,0x2e,0xa1,0x40,0x0e,0x00,0xd3,0x01, +0x5c,0x06,0x40,0x38,0x00,0x2e,0x00,0x94,0x00,0xa0,0x11,0xbe, +0xc5,0x15,0x34,0x00,0x20,0x5d,0xfc,0xa2,0xb2,0x08,0xe1,0x4b, +0x60,0x81,0x15,0x80,0x62,0x00,0x0a,0x21,0xc8,0x84,0x20,0x03, +0x80,0x91,0x00,0x24,0x0a,0x5f,0x32,0x0b,0x46,0x0b,0x5f,0xea, +0x05,0x1c,0xa1,0xf0,0x15,0x12,0x1d,0x01,0x18,0x0a,0x40,0x02, +0x00,0xae,0x40,0xf8,0xc6,0xdd,0x64,0x00,0x97,0x0b,0x5f,0x2c, +0x0b,0x46,0x01,0x30,0x0c,0x80,0xd5,0x00,0xa4,0x02,0xe1,0x1b, +0xd0,0xb6,0x02,0xb0,0x01,0x80,0xa5,0x00,0xcc,0x04,0xa0,0x1c, +0x80,0x35,0x00,0xae,0x80,0x80,0x03,0x20,0x17,0x02,0x09,0x80, +0xab,0x00,0xe8,0x04,0xc0,0x70,0xe1,0x5b,0x65,0xc1,0x46,0x00, +0x30,0x85,0xcd,0x00,0xe0,0x46,0x1d,0x80,0xab,0xa1,0xf0,0x55, +0x13,0x7a,0x00,0xd7,0x52,0x20,0x0f,0x80,0x02,0x00,0x37,0x40, +0x50,0x01,0xe0,0x26,0x16,0xa4,0x01,0x60,0x06,0x70,0x27,0x00, +0x16,0x00,0x92,0x84,0x6f,0xb6,0x05,0x29,0x00,0xee,0x52,0x80, +0x2c,0x28,0x7c,0x7b,0xed,0x57,0x10,0x5c,0x80,0xf0,0x0c,0x00, +0x97,0x00,0xfc,0x86,0x02,0x97,0x01,0x3c,0x0f,0xc0,0x15,0x00, +0x2f,0x18,0xc0,0x5c,0x00,0x9f,0x53,0xe0,0x2a,0x80,0xbf,0xd2, +0x60,0x13,0x00,0x95,0x00,0xfe,0x01,0xc1,0x35,0x08,0xff,0x14, +0xbe,0x08,0x0b,0xbe,0x56,0x82,0x79,0x00,0xdc,0x04,0x14,0x56, +0xb0,0x0a,0x52,0x58,0xc8,0xdb,0x80,0x72,0x92,0x83,0xf9,0x80, +0xd2,0x50,0xe0,0x0e,0xa0,0x74,0x10,0xdc,0x05,0x94,0x01,0x82, +0x6f,0x21,0xd5,0x10,0x80,0x6a,0x40,0x35,0xa2,0xc0,0x02,0x40, +0x35,0x05,0xe0,0x3b,0x40,0x35,0x93,0x81,0x85,0x80,0xf2,0xa7, +0xc1,0x7d,0x40,0x05,0xd1,0x60,0x11,0xa0,0xda,0x49,0xc0,0x5a, +0x00,0x1e,0x00,0xaa,0x13,0x04,0x35,0x90,0xc2,0xb6,0x7d,0x04, +0x28,0x93,0x12,0x3c,0x06,0x54,0x7f,0x00,0x9e,0x00,0x6a,0x80, +0x04,0x3c,0x05,0x14,0x36,0xe3,0x36,0x40,0x0d,0x83,0x60,0x3b, +0xa4,0xb0,0x29,0x76,0x02,0x2a,0x91,0x02,0xbb,0x00,0x95,0x0c, +0xc0,0x6e,0x40,0xa5,0x38,0x82,0x19,0x80,0xca,0xa6,0xc0,0x97, +0x80,0x1a,0x41,0x83,0xff,0x00,0xb0,0x07,0x50,0x78,0x69,0xf6, +0x42,0xaa,0x18,0x82,0xfd,0x80,0x2a,0x71,0x01,0x07,0x00,0x35, +0x1d,0x82,0x83,0x90,0x9a,0x09,0xc1,0x61,0x40,0xcd,0x76,0x02, +0xb3,0x00,0xf5,0x1f,0x0a,0x1c,0x01,0xd4,0x0a,0x00,0x8e,0x02, +0x6a,0x25,0x04,0xc7,0x20,0x85,0x17,0xe5,0x04,0xa0,0xd6,0x50, +0x60,0x36,0xa0,0xd6,0x03,0x70,0x12,0x50,0x1b,0x64,0x60,0x0e, +0xa0,0x76,0xd3,0xe0,0x14,0xa0,0xf6,0x49,0x01,0x1e,0x7c,0x1a, +0x50,0xc7,0x20,0xf8,0x0a,0x52,0x27,0x00,0x38,0x03,0xa8,0x93, +0x4a,0xf0,0x0d,0xa0,0x6e,0x42,0x70,0x16,0x50,0xb7,0x68,0x70, +0x0e,0x50,0xdf,0x02,0xb0,0x04,0x50,0xf7,0x9e,0x80,0xc5,0x00, +0x60,0x22,0x5b,0x00,0x7d,0xa2,0x11,0x58,0x06,0xe8,0xc7,0x10, +0xac,0x04,0x60,0x1d,0xa0,0x9f,0x9e,0x03,0xa5,0x40,0xb2,0x1d, +0x80,0xf1,0x00,0x4c,0x84,0x60,0x2a,0x00,0x63,0x01,0x18,0x03, +0xc0,0x38,0x00,0xca,0x00,0x98,0x00,0x24,0x3b,0x00,0x98,0x0c, +0x24,0x3b,0x29,0x30,0x05,0x80,0x69,0x40,0xf2,0x65,0x7b,0xe1, +0xcb,0x47,0x7e,0x53,0x4b,0x92,0x85,0x5f,0x41,0x68,0x08,0xc2, +0x40,0x3c,0xf6,0xbe,0x12,0x4c,0x6d,0x2b,0x56,0xe6,0x67,0xf0, +0x2b,0x0c,0x84,0xc1,0x30,0x14,0x86,0xc1,0xae,0x70,0x00,0x5c, +0x06,0x77,0xc0,0x3d,0x70,0x1f,0x7c,0x2a,0xfe,0x9a,0x41,0x34, +0xd5,0x97,0x1a,0x4f,0x1d,0xa1,0x8e,0x51,0x67,0xa9,0x67,0xd4, +0x4b,0xea,0x15,0xf5,0x17,0xad,0xa7,0x9b,0xd3,0x5d,0xe8,0xc1, +0xf4,0x30,0x7a,0x38,0x6d,0xa6,0x67,0xd3,0x6b,0xe8,0x75,0xf4, +0x2e,0xfa,0x28,0x7d,0x5c,0xe2,0x2d,0x49,0x90,0x64,0x49,0x72, +0x25,0x63,0x24,0x9b,0x25,0xcf,0x24,0xcf,0x25,0x7f,0x32,0x1e, +0x4c,0x0c,0x33,0x8d,0x59,0xc0,0x1c,0x65,0x25,0x6c,0x2e,0xbb, +0x9a,0xad,0x95,0x0e,0x94,0x8e,0x92,0xbe,0x77,0x30,0x3b,0x7c, +0xed,0xe8,0xe5,0xd8,0xcb,0xb1,0xd8,0xf1,0xa8,0xac,0xa5,0x2c, +0x41,0x76,0x90,0xf3,0xe0,0xda,0x73,0xa7,0x9d,0x1a,0x39,0xed, +0x77,0x0e,0x73,0xee,0xe0,0xdc,0xc9,0x39,0xc2,0x39,0xca,0x39, +0xd6,0xb9,0xab,0x73,0x77,0xe7,0x44,0xe7,0x11,0xce,0x73,0x9d, +0xe7,0x3b,0x2f,0x72,0x3e,0xe0,0x7c,0xd1,0xf9,0x17,0xe7,0x3a, +0xb9,0x93,0xbc,0x99,0x3c,0x4c,0xde,0x51,0xde,0x47,0x9e,0x24, +0x1f,0x21,0x5f,0x25,0x3f,0x24,0x7f,0xe2,0x22,0x77,0x49,0x70, +0xd9,0xe1,0xf2,0x83,0xab,0xde,0xb5,0x83,0xeb,0x60,0xd7,0x4a, +0xb7,0x48,0xb7,0x04,0xb7,0x12,0xb7,0xa9,0x6e,0x0b,0xdc,0xee, +0x2a,0xfa,0x29,0x92,0x14,0x25,0x4a,0x3f,0xe5,0x60,0xe5,0x6f, +0xee,0x49,0xee,0xdb,0x55,0x1e,0xaa,0x41,0xaa,0x79,0xaa,0x35, +0xaa,0x33,0xaa,0xb7,0x6a,0x4e,0xdd,0x5a,0x5d,0xaa,0xfe,0xd9, +0x43,0xe9,0x31,0xc8,0x63,0x94,0x47,0x99,0xc7,0x97,0x1e,0x4f, +0x3c,0x1d,0x3d,0x1b,0x78,0xae,0xf2,0xbc,0xe5,0xf9,0xc6,0x4b, +0xef,0xd5,0xc3,0x6b,0xac,0xd7,0x78,0xaf,0x49,0x5e,0x5b,0xbd, +0xb6,0x7b,0x3d,0xf2,0xaa,0xf5,0x6e,0xe1,0xdd,0xcb,0xfb,0x82, +0xa6,0xa9,0x66,0x71,0x83,0xe0,0x06,0x63,0x1b,0xbc,0xd3,0x26, +0x6a,0xf7,0xeb,0x18,0x5d,0x86,0xee,0x8d,0xbe,0x9d,0xfe,0xb0, +0x21,0xd1,0x70,0xc7,0xc7,0xdf,0xe7,0x46,0xc3,0xe8,0x86,0xf3, +0x1a,0xf2,0x8d,0xda,0x35,0x2a,0x6c,0xf4,0x7d,0xe3,0x11,0x8d, +0x5f,0x34,0x49,0x6c,0x52,0xd6,0xe4,0xdb,0xa6,0xad,0x9b,0x96, +0x36,0x7d,0xd7,0x2c,0xa8,0x59,0x6a,0xb3,0x91,0xcd,0xa6,0x36, +0x5b,0xd4,0x6c,0x7d,0xb3,0xcb,0xcd,0x7e,0x6f,0x0e,0x9a,0x2b, +0x9b,0xb7,0x6f,0x7e,0xa2,0xf9,0xcf,0x5f,0x34,0xf9,0x62,0xc0, +0x17,0xd6,0x2f,0xfe,0xf3,0xc5,0x9e,0x2f,0x7e,0x6c,0xa1,0x68, +0xd1,0xac,0xc5,0xe0,0x16,0x13,0x5a,0x6c,0x68,0x71,0xb7,0xc5, +0xcf,0x2d,0xde,0xb4,0x74,0x68,0xe9,0xd1,0xb2,0x63,0xcb,0x61, +0x2d,0x47,0xb6,0x9c,0xd9,0x72,0x43,0xcb,0xdb,0xad,0x60,0xab, +0x90,0x56,0xd6,0x56,0x73,0x5a,0xad,0x6e,0x75,0xa6,0x15,0x6a, +0x6d,0x68,0x6d,0x6c,0xdd,0xa5,0x75,0x76,0xeb,0xb9,0xad,0x4f, +0xb7,0xfe,0xba,0x8d,0xad,0xcd,0xd8,0x36,0xe5,0x6d,0xe6,0xb5, +0x59,0xd7,0x66,0x7f,0x5b,0xd7,0xb6,0x91,0x6d,0x57,0xb5,0x3d, +0xd0,0xf6,0xf7,0xb6,0x6f,0x7c,0x69,0x5f,0x6f,0x5f,0x7f,0xdf, +0x2e,0xbe,0xc3,0x7d,0x8b,0x7d,0xe7,0xfa,0xfe,0xe4,0xe7,0xe2, +0xf7,0x85,0x5f,0x6f,0x3f,0x9b,0xdf,0x64,0xbf,0xe5,0x7e,0x2b, +0xfd,0x7e,0xf1,0x0f,0xf6,0xcf,0xf5,0xdf,0xe0,0xbf,0xdb,0xff, +0x98,0xff,0xc3,0x00,0x26,0x40,0x1a,0xe0,0x17,0x10,0x16,0xd0, +0x33,0x20,0x29,0x20,0x2b,0x60,0x64,0xc0,0xdc,0x80,0x6f,0x02, +0xee,0x06,0xfc,0x1e,0xc8,0x04,0x76,0x0e,0x4c,0x0f,0x9c,0x15, +0x78,0x25,0xf0,0x4e,0xe0,0x0b,0xa3,0xa3,0xb1,0x99,0xb1,0x9f, +0x71,0x8c,0x71,0xb1,0x71,0x8f,0xf1,0x9a,0xf1,0x6d,0x90,0x67, +0x50,0x50,0x50,0xbf,0xa0,0xdc,0xa0,0xe5,0x41,0x55,0x41,0xef, +0x82,0x95,0xc1,0xda,0xe0,0x66,0xc1,0x1d,0x83,0xfb,0x07,0xdb, +0x82,0x27,0x07,0x2f,0x0f,0x3e,0x1a,0xe2,0x1d,0x32,0x21,0x64, +0x75,0xc8,0xc9,0x90,0xab,0x21,0x6f,0x43,0x1d,0x42,0x35,0xa1, +0x71,0xa1,0xa9,0xa1,0xb3,0x43,0x37,0x87,0x9e,0x0a,0x7d,0xd8, +0xce,0xd6,0xae,0xac,0xdd,0x86,0x76,0xe7,0xda,0x3d,0x6c,0xf7, +0x6b,0x98,0x4f,0x58,0x9b,0xb0,0xae,0x61,0xf1,0x61,0x3b,0xda, +0x1b,0xdb,0x8f,0x69,0x5f,0xd1,0xfe,0x40,0xfb,0x9a,0x0e,0x2e, +0x1d,0x82,0x3a,0x74,0xe9,0x90,0xd5,0x61,0x42,0x87,0xd5,0x1d, +0x8e,0x76,0xb8,0xd0,0xe1,0x7e,0x47,0x59,0xc7,0x90,0x8e,0xa9, +0x1d,0x67,0x77,0x3c,0xd2,0xf1,0x76,0xc7,0x17,0x9d,0x14,0x9d, +0x02,0x3a,0x0d,0xea,0x34,0xba,0xd3,0xda,0x4e,0x5b,0x3a,0x7d, +0xd9,0xe9,0x7a,0xa7,0x9a,0x4e,0x6f,0xc2,0xdd,0xc2,0x75,0xe1, +0xfe,0xe1,0xb1,0xe1,0x5d,0xc2,0x53,0xc2,0x47,0x86,0xcf,0x0d, +0xaf,0x0e,0x7f,0x11,0xc1,0x44,0x78,0x47,0x18,0x23,0x62,0x22, +0xb2,0x22,0x4a,0x23,0x16,0x46,0x6c,0x8b,0x38,0x1e,0x71,0x35, +0xe2,0x91,0xc9,0xcb,0x14,0x60,0x1a,0x60,0xca,0x36,0x95,0x9a, +0x16,0x99,0xb6,0x9b,0xbe,0x36,0xbd,0x8d,0x74,0x8e,0x6c,0x1c, +0x19,0x15,0xd9,0x37,0xd2,0x16,0x99,0x1d,0x39,0x25,0x72,0x69, +0xe4,0xb6,0xc8,0x1d,0x91,0x27,0x23,0xaf,0x47,0xa2,0xc8,0x37, +0x91,0x7c,0x94,0x53,0x94,0x2e,0xea,0x8b,0x28,0xff,0xa8,0xce, +0x51,0xc3,0xa3,0x8a,0xa3,0x4a,0xa2,0x66,0x45,0xad,0x8c,0xba, +0x14,0xf5,0x24,0xea,0xaf,0xe8,0x06,0xd1,0x01,0xd1,0x31,0xd1, +0xc3,0xa2,0x87,0x47,0x8f,0x8d,0x5e,0x1e,0x7d,0x26,0xfa,0x49, +0x8c,0x4f,0x4c,0xdf,0x98,0xd4,0x98,0x92,0x98,0x29,0x31,0xe5, +0x31,0x1b,0x62,0x0e,0xc5,0xdc,0x8c,0x79,0x1a,0x4b,0xc5,0xaa, +0x62,0x23,0x63,0x93,0x62,0x57,0xc5,0xfe,0xdd,0xd9,0xa5,0x73, +0x93,0xce,0xc9,0x9d,0xa7,0x76,0x5e,0xd1,0xf9,0x70,0xe7,0xdb, +0x5d,0x24,0x5d,0xb4,0x5d,0x92,0xbb,0x4c,0xe8,0x72,0xa2,0x0b, +0xea,0xca,0x75,0xf5,0xe9,0xda,0xb2,0xab,0xb1,0x6b,0x5c,0xd7, +0x94,0xae,0xc5,0x5d,0xcb,0xbb,0x6e,0xea,0x7a,0xb2,0x5b,0xa3, +0x6e,0xe5,0xdd,0x76,0x76,0xab,0xea,0xf6,0x34,0xae,0x69,0x9c, +0x31,0xae,0x73,0xdc,0xf8,0xb8,0xa5,0x71,0xa7,0xe2,0xaa,0xe3, +0xfe,0xec,0xae,0xec,0x3e,0xbc,0x7b,0x51,0xf7,0xf2,0xee,0xcf, +0x7b,0xb0,0x3d,0x94,0x3d,0xa6,0xf6,0x58,0xd0,0x63,0x57,0x4f, +0x69,0xcf,0xc0,0x9e,0x09,0x3d,0x47,0xf7,0xdc,0xd0,0xf3,0xa7, +0x9e,0x7f,0xf5,0x6a,0xda,0x2b,0xba,0x57,0xcf,0x5e,0xa9,0xbd, +0xc6,0xf7,0x9a,0xd3,0x6b,0x73,0xaf,0xbb,0xbd,0x7e,0xee,0x1d, +0xd5,0xdb,0xdc,0x7b,0x4a,0xef,0xc5,0xbd,0x77,0xf7,0xbe,0xdc, +0xfb,0xc7,0x78,0x2e,0xde,0x3f,0xbe,0x47,0x7c,0xff,0xf8,0x84, +0xf8,0xd2,0xf8,0xf9,0xf1,0x1b,0xe2,0x8f,0xc5,0x57,0xc6,0x3f, +0x89,0x7f,0xd5,0x47,0xde,0xa7,0x71,0x9f,0xa0,0x3e,0x7d,0xfb, +0x14,0xf4,0x99,0xd6,0x67,0x79,0x9f,0x2f,0xfb,0xbc,0xec,0xab, +0xeb,0xdb,0xae,0xef,0x88,0xbe,0x97,0xfb,0xfe,0xda,0x8f,0xed, +0xa7,0xed,0x37,0xa1,0xdf,0xd3,0xfe,0xc3,0xfa,0xe7,0xf4,0xbf, +0x3e,0x40,0x3e,0xc0,0x75,0x40,0x83,0x01,0x4d,0x07,0x74,0x1b, +0xb0,0x65,0xa0,0x7a,0x60,0xf4,0xc0,0xbe,0x03,0x33,0x07,0x2e, +0x19,0xb8,0x77,0x20,0x1a,0xf4,0xc5,0xa0,0xde,0x83,0xe6,0x0e, +0xda,0x3f,0xe8,0xc8,0xa0,0xdb,0x83,0x9e,0x0d,0x7a,0x3e,0xe8, +0x97,0xc1,0xec,0xe0,0xb8,0xc1,0xfd,0x07,0xff,0x34,0xa4,0xd7, +0x90,0xf8,0x21,0xb6,0x21,0xdb,0x87,0x54,0x0d,0xe1,0x87,0x76, +0x1b,0x3a,0x7a,0xe8,0x8d,0xa1,0xef,0x86,0x75,0x1f,0x96,0x34, +0x6c,0xfa,0xb0,0x5b,0x09,0x8d,0x13,0x62,0x13,0x32,0x13,0x36, +0x24,0xdc,0x4c,0xb8,0x9f,0x50,0x97,0xf0,0xf7,0x70,0xd7,0xe1, +0xbd,0x87,0x2f,0x1c,0xbe,0x62,0xf8,0x8e,0xe1,0x17,0x87,0xdf, +0x49,0x54,0x24,0x36,0x4f,0xb4,0x26,0xae,0x48,0x3c,0x96,0x78, +0x22,0xf1,0x74,0xe2,0x95,0xc4,0x9f,0x12,0x7f,0x4e,0xfc,0x35, +0xf1,0x85,0xb9,0x99,0x79,0xb6,0xf9,0x8d,0x99,0x4f,0x6a,0x9a, +0x34,0x24,0xa9,0x34,0x69,0x67,0xd2,0x8d,0xa4,0x1f,0x93,0x1d, +0x93,0x07,0x24,0x1f,0x4f,0x61,0x53,0x4c,0x29,0x19,0x29,0xf3, +0x52,0x0e,0xa5,0x5c,0x4c,0xb9,0x9c,0xf2,0x87,0x45,0x66,0xd1, +0x5b,0x62,0x2d,0xb3,0x2d,0xeb,0x2c,0x47,0x2c,0x37,0x52,0xdd, +0x53,0x5b,0xa4,0x46,0xa4,0x8e,0x49,0xbd,0x96,0xfa,0x3e,0xad, +0x5d,0xda,0xdc,0xb4,0x15,0x69,0xfb,0xd2,0x2e,0xa7,0xdd,0x4b, +0x7b,0x99,0xae,0x49,0x8f,0x48,0x9f,0x97,0xfe,0x9d,0x95,0xb1, +0x0e,0xb7,0x4e,0xb0,0xde,0xb2,0xfe,0x9d,0xa1,0xca,0xc8,0xcb, +0xa8,0xc8,0xd8,0x9b,0x09,0x33,0xe9,0x4c,0x4d,0x66,0x64,0xe6, +0xc0,0xcc,0xc1,0x99,0x39,0x99,0x13,0x33,0xe7,0x66,0x6e,0xcf, +0x7c,0x66,0xd3,0xda,0x22,0x6c,0x65,0xb6,0x9d,0xb6,0xa7,0xb6, +0x3f,0xb3,0x3c,0xb2,0xbc,0xb2,0xfc,0xb2,0x02,0xb2,0xb2,0xb3, +0x72,0xb3,0xf2,0xb3,0x0a,0xb3,0x96,0x67,0x5d,0xc8,0x4e,0xc8, +0x9e,0x9f,0xbd,0x29,0xfb,0x58,0xf6,0x89,0xec,0x47,0xd9,0x6f, +0x73,0x1a,0xe4,0x44,0xe5,0x8c,0xce,0x19,0x9b,0xb3,0x20,0x67, +0x43,0xce,0xcf,0xb9,0xd2,0xdc,0xc6,0xb9,0xfd,0x73,0x77,0xe7, +0xde,0x1d,0xe1,0x3e,0xc2,0x3a,0x22,0x73,0xc4,0x86,0x11,0x87, +0x47,0x5c,0x19,0xf1,0x57,0x9e,0x7b,0x5e,0x72,0xde,0xe4,0xbc, +0x5d,0x79,0xbf,0xe5,0xbb,0xe7,0xf7,0xce,0x1f,0x95,0x3f,0x2f, +0xff,0x75,0x81,0xb6,0x20,0xba,0x60,0x51,0x41,0x45,0xc1,0xfe, +0x82,0x67,0x05,0x75,0x85,0xca,0xc2,0xe6,0x85,0xed,0x0b,0xa3, +0x0b,0xd3,0x0a,0xe7,0x15,0x9e,0x2b,0x7c,0x5d,0xd4,0xb1,0x28, +0xa5,0xa8,0xa2,0x68,0x63,0xd1,0xc5,0xa2,0xcb,0x45,0x8f,0x8b, +0x9e,0x16,0x33,0xc5,0x5e,0xc5,0x1d,0x8a,0x3b,0x15,0xa7,0x16, +0x2f,0x1c,0xe9,0x3b,0x32,0x65,0xe4,0x89,0x91,0x4f,0x4a,0xf4, +0x25,0x41,0x25,0x11,0x25,0x0b,0x4b,0xaa,0x4b,0x5e,0x8e,0x2a, +0x1e,0x35,0x7e,0x54,0xcd,0x68,0x38,0x3a,0x6c,0x74,0xef,0xd1, +0x83,0x46,0x6f,0x19,0xfd,0xdb,0x18,0x6a,0xcc,0xc4,0x31,0x33, +0xc6,0x3c,0x1a,0xcb,0x8e,0xf5,0x1c,0x1b,0x34,0x36,0x7c,0x6c, +0x9f,0xb1,0x19,0x63,0x0b,0xc7,0x2e,0x1b,0xbb,0x7e,0x1c,0x18, +0xe7,0x36,0xce,0x30,0xae,0xfd,0xb8,0xe8,0x71,0xfd,0xc7,0x65, +0x8e,0xcb,0x1f,0xf7,0x4d,0xa9,0x63,0x69,0xeb,0xd2,0x6e,0xa5, +0x99,0xa5,0x33,0x4b,0xf7,0x97,0xde,0x2c,0xfd,0x73,0xbc,0x66, +0x7c,0xd7,0xf1,0xb6,0xf1,0xe5,0xe3,0x77,0x8d,0xbf,0x34,0x41, +0x32,0x21,0x6c,0x42,0xda,0x84,0x39,0x13,0xf6,0x4d,0x78,0x36, +0x01,0x4d,0x74,0x9a,0xd8,0x70,0xa2,0xef,0xc4,0x61,0x13,0x67, +0x4d,0x3c,0x38,0xf1,0xe9,0x24,0xa7,0x49,0xc6,0x49,0x83,0x26, +0xe5,0x4f,0x9a,0x39,0x69,0xe7,0xa4,0x8b,0x93,0x5e,0x4d,0xe6, +0x26,0x07,0x4d,0x4e,0x98,0x3c,0x7d,0xf2,0xd1,0xc9,0xbf,0x4c, +0x69,0x36,0x65,0xe0,0x94,0xaf,0xa6,0xb6,0x9a,0xda,0x6e,0x6a, +0xb7,0xa9,0x03,0xa6,0xda,0xa6,0xce,0x9c,0xba,0x6d,0xea,0xcd, +0xa9,0xb5,0xd3,0x74,0xd3,0x62,0xa6,0xa5,0x4f,0x9b,0x3d,0x6d, +0xfe,0xb4,0x8a,0x69,0x6b,0xa7,0x6d,0x9f,0xb6,0x67,0xda,0xa1, +0x69,0xa7,0xa6,0x9d,0x9f,0xf6,0xed,0xb4,0x1f,0xa6,0xa1,0x32, +0x87,0x32,0x65,0x99,0xae,0xac,0x69,0x59,0xdb,0xb2,0xd0,0xb2, +0xc8,0xb2,0xde,0x65,0x19,0x65,0xf9,0x65,0xb3,0xcb,0x36,0x97, +0xed,0x2b,0x3b,0x55,0x76,0xb1,0xec,0x56,0xd9,0xf3,0xb2,0x3f, +0xca,0xea,0xa6,0xbb,0x4c,0x57,0x4f,0xd7,0x4f,0x6f,0x31,0xdd, +0x38,0x3d,0x62,0x7a,0xec,0xf4,0xf8,0xe9,0xc3,0xa7,0xa7,0x4d, +0xcf,0x9e,0x3e,0x79,0xfa,0xda,0xe9,0x5b,0xa7,0x7f,0x39,0xfd, +0xc4,0xf4,0xab,0xd3,0xab,0xa7,0x3f,0x9d,0xfe,0xdb,0xf4,0x77, +0x33,0xa4,0x33,0x14,0x33,0x9a,0xcc,0x68,0x39,0x23,0x76,0x46, +0xf2,0x8c,0x31,0x33,0xd6,0xce,0xd8,0x33,0xe3,0xcc,0x8c,0xeb, +0x33,0xbe,0x9d,0xf1,0xe3,0x4c,0x87,0x99,0x2d,0x67,0xc6,0xcc, +0xb4,0xce,0x9c,0x38,0x73,0xf9,0xcc,0x35,0x33,0xf7,0xcf,0xbc, +0x38,0xf3,0xf6,0xcc,0x9a,0x99,0xbf,0xce,0x72,0x9a,0xd5,0x64, +0x56,0x87,0x59,0xb1,0xb3,0x06,0xcf,0xca,0x9d,0x35,0x6a,0xd6, +0xbc,0x59,0x5b,0x67,0x1d,0x99,0x75,0x6d,0xd6,0x6f,0xb3,0xe9, +0xd9,0x0e,0xb3,0x1b,0xcc,0xf6,0x9b,0xdd,0x61,0xb6,0x69,0x76, +0xff,0xd9,0x89,0xb3,0xf3,0x67,0x2f,0x98,0xbd,0x7f,0xf6,0xad, +0xd9,0x68,0x0e,0x3d,0xc7,0x6b,0x4e,0xcc,0x9c,0x01,0x73,0x52, +0xe7,0x94,0xcc,0x29,0x9b,0xb3,0x70,0xce,0x86,0x39,0x7b,0xe7, +0x1c,0x9d,0x53,0x3d,0xe7,0x75,0xb9,0xba,0xbc,0x71,0x79,0x40, +0x79,0x87,0xf2,0xd8,0xf2,0xde,0xe5,0x43,0xca,0x2d,0xe5,0x39, +0xe5,0xa3,0xcb,0x27,0x96,0x2f,0x28,0x5f,0x5f,0xbe,0xbf,0xfc, +0x4c,0xf9,0xad,0xf2,0x1f,0xca,0x5f,0xcd,0x95,0xce,0x5d,0x37, +0x4f,0x3b,0xef,0xdb,0x79,0xcf,0xe6,0xbd,0x9d,0xef,0x30,0x5f, +0x3b,0xbf,0xe5,0xfc,0xa0,0xf9,0xf1,0xf3,0x53,0xe6,0x17,0xcf, +0x9f,0x3c,0x7f,0xe1,0xfc,0x15,0xf3,0x0f,0xce,0xbf,0x30,0xff, +0xee,0xfc,0x67,0xf3,0xd1,0x02,0xe9,0x02,0x8f,0x05,0xcd,0x16, +0x04,0x2c,0xe8,0xb4,0xa0,0xeb,0x82,0x41,0x0b,0xb2,0x17,0x4c, +0x59,0xb0,0x68,0xc1,0xfa,0x05,0x87,0x17,0x54,0x2e,0xf8,0x71, +0x01,0x5a,0xc8,0x2e,0x54,0x2d,0x6c,0xb2,0xd0,0xb8,0x30,0x7a, +0x61,0xbf,0x85,0x96,0x85,0xf9,0x0b,0x27,0x2e,0x3c,0xb9,0xf0, +0xf2,0xc2,0xea,0x85,0xcf,0x17,0xd1,0x8b,0x3c,0x16,0x35,0x5e, +0x14,0xb0,0xa8,0xcb,0xa2,0x3e,0x8b,0x92,0x17,0x8d,0x5d,0xb4, +0x78,0xd1,0x9a,0x45,0x67,0x16,0x5d,0x5d,0x74,0x77,0xd1,0x8f, +0x8b,0xfe,0x58,0xf4,0x7e,0xb1,0xe3,0x62,0x9f,0xc5,0x61,0x8b, +0xbb,0x2f,0x1e,0xba,0xd8,0xb6,0x78,0xf4,0xe2,0x99,0x8b,0x97, +0x2d,0xde,0xb6,0xf8,0xe0,0xe2,0xaf,0x17,0x5f,0x5d,0x7c,0x7f, +0xf1,0xb3,0x0a,0xa6,0x42,0x51,0xd1,0xa0,0xa2,0x55,0x45,0xfb, +0x8a,0x7e,0x15,0x89,0x15,0x93,0x2a,0x66,0x57,0x54,0x54,0x6c, +0xac,0xd8,0x5d,0x71,0xa2,0xe2,0x7c,0xc5,0xc3,0x8a,0x47,0x15, +0x8f,0x2b,0x9e,0x54,0x3c,0xad,0xf8,0xbe,0xe2,0x87,0x8a,0x1f, +0x2b,0x9e,0x55,0xfc,0x54,0xf1,0xbc,0xe2,0xe7,0x8a,0x5f,0x2a, +0x7e,0xad,0xf8,0xad,0xe2,0xf7,0x8a,0x17,0x15,0x2f,0x2b,0x5e, +0x55,0xfc,0x55,0x51,0x5b,0xf1,0x76,0x89,0xf3,0x92,0xd0,0x25, +0x4b,0x67,0x9e,0x7b,0xd3,0xfc,0x1c,0xdc,0x76,0xae,0x36,0xf0, +0x1c,0xbd,0x4d,0x5d,0xbb,0xfd,0xcd,0xea,0xba,0xed,0xec,0xb9, +0x77,0x29,0xaa,0x37,0xcd,0x6b,0x03,0xdf,0x35,0x97,0xca,0x1b, +0xcb,0x14,0x57,0x6a,0xd0,0xac,0x6a,0xe5,0x98,0x16,0x32,0xe5, +0xb1,0x66,0x5a,0xe5,0x18,0x5f,0xad,0xf2,0x58,0x0b,0xad,0xbc, +0x89,0x4c,0x71,0xee,0x11,0xda,0x56,0xad,0x1c,0x1a,0xa0,0x55, +0x6e,0x6f,0x25,0x53,0xda,0x94,0xdb,0x5b,0x6b,0xe5,0x67,0xb4, +0xcf,0xab,0xd1,0xb6,0x47,0xca,0x31,0xcf,0xd5,0xd5,0x35,0xe5, +0xac,0xf2,0x18,0xfa,0x42,0x2b,0xdc,0x30,0x2a,0xc7,0x60,0x34, +0xfd,0x5d,0x87,0x0b,0x5a,0xa4,0x91,0xdd,0x90,0x9d,0xd1,0x92, +0xc9,0x63,0x84,0xdf,0x1f,0x7b,0x33,0x32,0x8c,0x3f,0x3f,0x8d, +0x15,0x3e,0x5a,0xd0,0xe3,0x51,0x5d,0xb4,0xc2,0x60,0x4c,0xab, +0xb9,0x16,0x5e,0xad,0x41,0xc7,0x1e,0xd1,0xcd,0x64,0x72,0x14, +0xa8,0xad,0x75,0x45,0xc9,0x95,0xf8,0x90,0xea,0x8b,0xe4,0xb2, +0x2d,0x32,0xfb,0xf1,0x05,0x4d,0xae,0x29,0xbd,0xad,0xfc,0x23, +0x7c,0x87,0x56,0xf9,0xcb,0xf8,0xdd,0x5a,0xe5,0xcb,0xf1,0x4b, +0xb3,0xad,0xf3,0x53,0xf6,0x69,0x95,0x7f,0x8c,0x3f,0x24,0x53, +0xbe,0x0a,0x9f,0x27,0xc3,0x6d,0x03,0xb4,0xf2,0x0b,0xb2,0xe3, +0xda,0x7f,0xcc,0x41,0xa7,0xf9,0x74,0x15,0x0a,0x7f,0x72,0xec, +0x4f,0xf1,0x03,0x62,0xfd,0x64,0xad,0xf2,0xd5,0xf8,0xf5,0x32, +0xe5,0xf3,0xf1,0x0b,0x0a,0x46,0x94,0x67,0x7f,0xa4,0x31,0xfe, +0x90,0x16,0xb7,0x0d,0xc0,0xbd,0xe1,0xdb,0xb5,0x72,0x44,0x69, +0x9f,0x6b,0x7f,0xd2,0xae,0x16,0x7e,0x49,0x01,0x95,0x15,0xc3, +0x57,0xd5,0xf4,0x6f,0xb2,0x7a,0x47,0xfa,0x62,0x99,0x1c,0xf7, +0x25,0x5d,0x29,0x3d,0xaf,0x55,0x7e,0x87,0xfe,0x1f,0xe6,0xde, +0x03,0x2c,0x8a,0xe4,0x69,0x1c,0x66,0x6f,0x99,0x19,0x6f,0xee, +0x6e,0xf5,0x18,0x97,0xd3,0xdd,0x9b,0x59,0x14,0xc1,0x9c,0x30, +0x81,0x01,0x01,0x15,0x14,0x05,0x13,0x22,0x8a,0x98,0x15,0x45, +0x4c,0x88,0x62,0x06,0xb3,0x67,0x3e,0x73,0x0e,0x88,0x19,0xd3, +0x19,0x40,0x31,0x20,0x06,0x82,0x08,0x0b,0x22,0x20,0xab,0x2e, +0x22,0x9c,0x9e,0x7a,0x9e,0x9e,0xa1,0x66,0xed,0xf5,0xbe,0xaf, +0x7a,0x16,0xc3,0xfd,0xde,0xfb,0xbd,0xff,0xf7,0xf7,0x7f,0x9f, +0xef,0x79,0xbe,0x87,0x30,0x33,0xdd,0xd5,0xd5,0x35,0xd5,0xd5, +0x5d,0x55,0x3d,0xdd,0xd5,0xd5,0x1d,0xc1,0x97,0x3f,0x7b,0x7e, +0x2e,0x2f,0x57,0xe5,0xd2,0x0e,0x1d,0x38,0x93,0x32,0x97,0x87, +0xf7,0x1c,0xa8,0xa6,0x66,0xb4,0x09,0x1c,0x37,0x76,0xd0,0x74, +0x69,0x29,0x9b,0xb2,0x68,0x42,0x62,0x2f,0x7d,0x9f,0xc9,0xe3, +0x46,0xcc,0x32,0x2c,0x41,0x8e,0xa5,0x7b,0x5b,0x37,0x73,0x9a, +0xdd,0xfe,0xa2,0x83,0x32,0x85,0x2b,0x14,0xf7,0x13,0x85,0xe4, +0x10,0x5e,0x73,0x5b,0x6c,0x24,0x6a,0xb2,0x79,0x18,0x5c,0xc9, +0xbb,0x7b,0x72,0x07,0xea,0x48,0x5a,0x86,0xd2,0x55,0x13,0xc2, +0xf3,0x46,0x3c,0xa9,0x11,0xf5,0xb7,0x99,0x1d,0xa8,0xcd,0x77, +0x96,0x34,0x69,0xbc,0x03,0x4c,0x37,0x09,0xc6,0x62,0x47,0xf9, +0xc7,0x5c,0xd2,0x0a,0xa6,0xb0,0xa6,0xd4,0xec,0x97,0xd2,0x73, +0x53,0x27,0x96,0xd8,0x85,0x05,0xf8,0xc5,0x18,0x16,0x83,0x23, +0x99,0xc5,0x0a,0x27,0x16,0xf2,0x9a,0xd8,0x1c,0xb9,0x41,0x8e, +0xea,0x59,0x09,0xc4,0x97,0xa8,0x87,0x8b,0x9a,0xe5,0x30,0x46, +0x54,0x7f,0x9a,0x27,0xfc,0xe4,0xe6,0x71,0x9f,0xdd,0xbc,0x9f, +0x45,0x4d,0xec,0x06,0x91,0x92,0x39,0xbd,0x0d,0x2f,0x24,0xfb, +0x20,0x27,0x72,0xe4,0x7e,0x31,0xaa,0x9b,0x72,0xa4,0x1a,0x5e, +0x3b,0x42,0x80,0xbc,0x99,0x69,0xcf,0x7a,0x93,0xc8,0x76,0x64, +0x0e,0xb3,0x84,0x6d,0x07,0x73,0xbc,0x21,0x92,0x69,0xcb,0x42, +0x80,0x75,0x33,0xa3,0x59,0x9e,0x07,0x7f,0x99,0x55,0x87,0xe4, +0x13,0xea,0xff,0x70,0xf2,0x59,0x73,0x9b,0xf7,0xe0,0x55,0xa9, +0xf2,0x7c,0x75,0x28,0xaf,0xa9,0x2d,0xaa,0x4a,0x65,0x1f,0xb5, +0xbc,0x09,0xe9,0x7c,0xc6,0xc1,0x43,0x99,0x63,0x8a,0xad,0x8d, +0xfd,0xa0,0x90,0x23,0x0f,0xad,0x1c,0xe3,0x89,0x52,0x2c,0xaa, +0x0e,0xcb,0xc7,0xd5,0xad,0x44,0x4d,0xa9,0xf8,0x44,0x6c,0x2f, +0xaa,0x9e,0x9a,0xe1,0x60,0xb9,0xfa,0xa9,0x23,0xf4,0x3f,0x2b, +0x92,0xfe,0x3f,0xf1,0xf2,0x85,0x77,0x1c,0xa8,0xaf,0x7b,0x10, +0x27,0x03,0xb1,0xe3,0x88,0x53,0x6f,0x0f,0xfa,0xf1,0xab,0x3e, +0x8f,0xbe,0xbb,0xba,0x35,0x6d,0x50,0x3a,0xc9,0x1a,0x4b,0x5d, +0x79,0xf4,0xe3,0x1d,0x21,0x0f,0x4a,0x0a,0x48,0x09,0xc4,0x82, +0x5c,0x60,0xed,0xf1,0x21,0x90,0xd3,0xac,0x13,0x1d,0xae,0x96, +0xc3,0xe5,0xbb,0xc2,0xec,0xc1,0xd8,0x4d,0x06,0xa2,0xbc,0x56, +0x15,0x37,0xf0,0x65,0xbc,0x37,0x5f,0x6a,0x56,0xcb,0xd1,0x8e, +0xbf,0xb3,0x64,0x8d,0x5c,0x0f,0x7e,0x82,0xf3,0x8c,0x2b,0x4b, +0x86,0x93,0x15,0x4d,0x49,0x15,0x66,0xa9,0x6c,0xa7,0xcc,0xd0, +0x46,0xb3,0x7f,0x00,0xcf,0x68,0x9a,0xf0,0x2a,0xf8,0x16,0xa1, +0x8f,0x38,0x16,0x10,0xb3,0x85,0x69,0x43,0xf1,0xbe,0x12,0x17, +0xf1,0x2a,0x53,0x11,0x9c,0x2e,0x52,0x6f,0xe5,0x35,0xb5,0x44, +0x15,0xd6,0x92,0x55,0xae,0x76,0x15,0x35,0x2f,0x45,0xe2,0x9e, +0x5b,0x96,0x47,0x3f,0x0b,0x63,0x1a,0x67,0x02,0xae,0xbc,0xfa, +0x8f,0x72,0x6c,0x43,0x2d,0x69,0x58,0xc6,0x42,0xad,0x9d,0x59, +0xe0,0x08,0xa3,0x74,0x95,0xcb,0x34,0x2a,0x17,0xac,0x91,0x51, +0x99,0xc4,0x11,0x6a,0x4f,0x97,0x46,0x73,0xca,0x42,0x1c,0xf8, +0x9a,0x25,0x7d,0x61,0xea,0xe7,0x05,0x29,0x9f,0x16,0x98,0xd2, +0x37,0xbe,0x94,0x0f,0x43,0xc4,0xff,0xc5,0xa7,0x20,0x4d,0xec, +0x6d,0xb9,0xf0,0xb6,0xca,0x58,0x0a,0x57,0x4b,0xd5,0x11,0xc8, +0x12,0x8e,0x77,0xe7,0x2b,0xa7,0xa9,0x7b,0xa0,0x9c,0x94,0xca, +0x96,0x18,0xd5,0x71,0x39,0x41,0x0d,0x16,0x47,0x18,0x61,0x09, +0x64,0x5a,0xb1,0xf5,0xc8,0x2b,0x2f,0xb2,0x9d,0x59,0xcc,0x7a, +0xc1,0xf6,0x7a,0xf0,0x8a,0x71,0x63,0x61,0xc4,0x87,0x40,0x46, +0x33,0x82,0x57,0x1d,0x93,0xf7,0xab,0x21,0xdc,0xb1,0x54,0x6e, +0x85,0x22,0x52,0x6a,0x6d,0xc5,0xc0,0x77,0x6c,0x1a,0x16,0xf2, +0x61,0x27,0x58,0xeb,0xcc,0x26,0xe1,0xcc,0x02,0xb6,0xa9,0xec, +0xcd,0x34,0x66,0x9b,0x5a,0xbd,0xf1,0x7e,0x36,0x84,0x4f,0x90, +0xeb,0x30,0x5e,0x6c,0x1a,0x2d,0x9f,0x87,0x0d,0x01,0x1b,0xcd, +0xea,0x09,0xbc,0x06,0x1b,0x3f,0x45,0x5e,0xa1,0xfe,0xef,0x16, +0x95,0x68,0x62,0x0b,0x60,0x06,0xf0,0x30,0x83,0x7e,0x4e,0x7d, +0x0a,0xd5,0x9e,0x96,0x55,0xb7,0xbe,0xe3,0x0b,0xec,0x89,0xfd, +0xe0,0xde,0x62,0xf2,0xaf,0x60,0x0f,0xf6,0xc9,0x94,0x4d,0x10, +0x82,0x30,0xe0,0x2a,0xd2,0x66,0x29,0x83,0x9c,0x32,0xf5,0x3b, +0xde,0x22,0xda,0x1b,0x93,0xc6,0xf6,0x8c,0x37,0x90,0x33,0xc4, +0xc8,0x2c,0xdd,0xb5,0x6c,0x4f,0xbc,0x4e,0x59,0x15,0x41,0x8b, +0x49,0xd6,0x02,0x7b,0xdf,0x21,0x47,0xd3,0xa3,0x0d,0x70,0x06, +0x8c,0xcc,0xaa,0x98,0x15,0x53,0xa3,0x75,0x88,0xe4,0x6f,0xed, +0xba,0xbc,0x40,0x4e,0xcf,0x54,0xc1,0x49,0x14,0x84,0x8b,0x28, +0x08,0x3d,0x2c,0x0c,0xf9,0x81,0x23,0x01,0xc4,0xfb,0x42,0x30, +0x74,0x06,0x77,0x66,0xad,0x35,0x9d,0x0c,0xf2,0x61,0x29,0x5c, +0x46,0x81,0x4a,0xf6,0x78,0xa4,0x96,0x8f,0xe2,0xab,0x54,0x65, +0xa1,0x3f,0x78,0x32,0x4f,0xee,0x65,0xdd,0x7d,0xab,0x03,0xbe, +0x83,0x99,0x18,0x88,0xd8,0xc3,0xc3,0x63,0x92,0x54,0x38,0x91, +0xb9,0xbd,0xe7,0xec,0xf9,0x52,0xfd,0xc3,0xe4,0xd0,0x36,0x86, +0x58,0xae,0xf3,0x40,0x7f,0xbf,0x40,0x89,0xcc,0x21,0xa3,0x99, +0x56,0xf2,0x68,0xe5,0x65,0xf7,0xdc,0x46,0xd9,0x76,0x90,0x5b, +0x3e,0xf2,0x7e,0x24,0x3c,0x81,0x7e,0xb2,0xab,0xb6,0xd3,0x03, +0xee,0xd5,0xe5,0x50,0x0f,0xc3,0x02,0xce,0x3d,0x28,0xb4,0x7e, +0x8b,0xe1,0xbf,0xa4,0x8d,0x96,0x7a,0x84,0x32,0x3d,0xcf,0x66, +0xf5,0x82,0xaa,0x7a,0x70,0x79,0xf6,0x00,0xbe,0x7d,0xe3,0x73, +0xd5,0x73,0x2b,0xfd,0xb8,0xff,0xb2,0x68,0x67,0xfa,0x95,0x0a, +0x1d,0x30,0x8d,0xb2,0xc8,0x37,0x84,0x0d,0xe8,0xdd,0x37,0x5c, +0xca,0x0a,0x65,0x52,0x0f,0x26,0x1d,0xbf,0xa3,0x2f,0xba,0x3c, +0xca,0xdb,0xb0,0x90,0xeb,0x3a,0x70,0x60,0x03,0xe5,0xd3,0x9e, +0x68,0x94,0x3b,0x66,0xab,0x64,0x8d,0x49,0x2d,0x0f,0x76,0x04, +0xf1,0xb5,0xd1,0x59,0x8e,0x23,0x1a,0x8e,0xa4,0x59,0x67,0x31, +0xde,0xf0,0x9c,0x88,0xdc,0x12,0xcb,0x77,0xda,0xd5,0xd6,0x8e, +0x64,0x0f,0x4b,0x69,0x4b,0xcb,0x87,0xbe,0xf8,0x9e,0x7d,0xca, +0xd4,0xf2,0x4f,0x74,0x79,0x53,0x35,0x36,0xca,0x5a,0x3d,0x7f, +0x1e,0x93,0x78,0xe8,0xc8,0xbe,0x5b,0xfa,0xe7,0x57,0x82,0x9a, +0x22,0x91,0xcd,0x82,0xfb,0x36,0x6c,0x35,0xea,0x13,0x91,0x19, +0xbd,0x80,0xd7,0x43,0xfd,0xf2,0xa7,0xf0,0x23,0xe8,0xdd,0x4c, +0x44,0xe3,0x3d,0x6a,0xc2,0xa0,0xb1,0x86,0x85,0xec,0x2e,0xd8, +0xc5,0x40,0x36,0xe2,0xcd,0x87,0x1b,0x46,0xd8,0x8e,0xc3,0x54, +0x29,0xa4,0x95,0xaa,0xe1,0x4a,0xac,0x16,0x6a,0x3f,0xf9,0x0d, +0x44,0xa8,0xd1,0xf2,0x01,0xd1,0xb4,0x0c,0x19,0xda,0x67,0xac, +0x61,0xf1,0xca,0x5f,0xa0,0xb5,0xf9,0x57,0x68,0x04,0xaa,0x9a, +0xc4,0x8e,0x25,0xac,0x0f,0xf2,0xb4,0x35,0x19,0xa1,0x23,0x6d, +0x2b,0x5c,0xa0,0xae,0xb4,0x2c,0x5f,0xdb,0xa8,0x6f,0xda,0x6f, +0x86,0x75,0xdc,0x6f,0x57,0xd3,0x9e,0x3e,0xbd,0x1a,0xd4,0x58, +0x5a,0xc0,0x35,0xee,0x1b,0xd4,0x88,0xbe,0xa7,0x85,0xbd,0xad, +0xca,0x2e,0x54,0xc3,0x36,0x47,0xd8,0x6d,0xb1,0x67,0xee,0x58, +0x47,0x93,0xc1,0x85,0xd8,0x25,0x6f,0x70,0x64,0xdf,0x07,0x96, +0xa1,0x14,0xec,0xcf,0x85,0xf9,0xf9,0x0e,0x69,0x65,0xdd,0x4a, +0xe1,0x70,0x69,0xb7,0x32,0xe1,0x4f,0xe5,0xab,0x7d,0xeb,0x07, +0x65,0xc0,0x3d,0xed,0x93,0xd6,0x3a,0x1e,0x11,0x0b,0xcf,0xef, +0x24,0x9c,0xbf,0x61,0xd2,0xbd,0x75,0x37,0x92,0x5a,0xa4,0x96, +0xbb,0x6f,0xad,0x76,0xe7,0x7b,0xdd,0x89,0xc2,0x7a,0x84,0x3f, +0x5b,0x47,0xf7,0x09,0x6a,0xa4,0x23,0xdc,0x83,0x96,0xd0,0x5a, +0xca,0xb7,0xaf,0xdf,0xf3,0x7c,0x89,0x61,0x0f,0x67,0xba,0x7e, +0xee,0x8f,0x3f,0xae,0x87,0xb5,0x93,0xa6,0x72,0xed,0x7b,0x0e, +0xaa,0x2f,0xc1,0x53,0x7b,0xe1,0x79,0xf3,0x81,0xa7,0xf3,0x0d, +0x5b,0xb8,0xfc,0x4b,0xa7,0x1f,0x3d,0xba,0x34,0xbc,0xb3,0x34, +0x07,0x85,0x60,0x78,0x73,0xa5,0x39,0xb6,0x1b,0xe1,0x46,0x7e, +0x25,0x1b,0xe4,0x44,0x39,0x50,0x0b,0x6d,0x9b,0xbf,0x22,0x75, +0x49,0xed,0x26,0x8d,0x89,0x48,0x6a,0x94,0xb9,0x83,0xa6,0xec, +0xd2,0xd9,0x6b,0x47,0xa5,0x35,0x3f,0x8d,0x24,0xad,0xdb,0x34, +0x23,0x8d,0x88,0xaa,0x26,0xd8,0xb1,0xc0,0x16,0x80,0x01,0x5a, +0x03,0x72,0x23,0x8e,0xa8,0xfe,0x2d,0x23,0xf0,0x35,0x9b,0xbd, +0x85,0x66,0xf9,0xaa,0x1b,0x0f,0x5f,0xbf,0x7a,0xfd,0xb0,0xba, +0x15,0x52,0x61,0x9c,0xf6,0x18,0x9d,0xe1,0xdf,0xc8,0xed,0x9f, +0xb5,0x6b,0xcc,0x18,0x3a,0xc3,0x1f,0xc7,0x4d,0xda,0x16,0x73, +0x4c,0x22,0xcd,0xec,0x5b,0x77,0xb9,0x00,0x2a,0xc3,0x2b,0x54, +0x90,0x79,0x17,0x4a,0x4b,0xf3,0x06,0x12,0x95,0x04,0xed,0xf9, +0xce,0xf6,0xe0,0xf4,0xf2,0x4f,0xe8,0x02,0x5d,0x5c,0xff,0x24, +0x4e,0xc4,0xc9,0xb5,0x0e,0xe9,0x42,0xba,0xbc,0xac,0x03,0x4e, +0x06,0x0d,0xd4,0xe7,0x91,0x6b,0xff,0x2e,0x3b,0xdf,0x3e,0x6c, +0xd8,0x96,0xc3,0x13,0x0d,0xb0,0x0d,0xf6,0x33,0x6b,0x66,0xae, +0x8a,0x99,0xaa,0x73,0xe1,0x88,0xaa,0xcb,0xc0,0xd6,0x92,0xdc, +0xda,0xfe,0xdc,0x99,0x39,0x91,0x07,0x0c,0x64,0x1b,0xd9,0xcf, +0x2c,0xde,0xbe,0x74,0xd7,0x1e,0x5d,0x65,0xc5,0x12,0xc5,0x7a, +0x43,0xfb,0x9f,0x13,0xb3,0x3c,0x4f,0x1e,0x1d,0x83,0x9d,0x17, +0x85,0x3b,0xc9,0x31,0x8f,0xf8,0xcb,0xa3,0x1b,0x70,0x64,0x24, +0xf9,0xfe,0x78,0x6f,0xf0,0x07,0x35,0xf6,0x5d,0x89,0x0c,0xee, +0xc2,0x52,0xb0,0x86,0xf9,0x2a,0xd9,0xf9,0xa1,0xfa,0x91,0xa3, +0x1c,0x98,0x47,0x9e,0xb1,0xa0,0xce,0x65,0x5e,0x67,0x3d,0xc8, +0x7d,0xa9,0x83,0xaf,0x3a,0xe7,0x92,0x1f,0x6a,0x07,0xf6,0xe8, +0x36,0x4e,0xca,0x18,0xc1,0x5c,0x8c,0x3f,0x93,0x92,0xaf,0xbf, +0x73,0x36,0xdc,0x17,0xbb,0x6e,0xf7,0xae,0xc1,0x9e,0x21,0x12, +0x69,0x47,0xd4,0x8c,0x86,0x78,0xe6,0x2b,0xfd,0x36,0xdf,0x41, +0x6e,0xf6,0xb0,0xd3,0x43,0xec,0xb7,0x07,0x88,0xa7,0x16,0x9c, +0x7f,0x7b,0x08,0xdf,0xfc,0xe9,0x75,0xa5,0xa3,0xad,0x67,0x16, +0xee,0xcc,0xa4,0x3d,0xd3,0xbe,0x49,0x26,0xf9,0x9a,0x7c,0xd5, +0x93,0xf6,0xcc,0xf4,0x30,0xa5,0x67,0x22,0xd2,0xcb,0x23,0x7d, +0x68,0xcf,0x1c,0x30,0xb0,0xb1,0xe4,0xd3,0xa9,0x84,0x15,0x9e, +0xbc,0x48,0x0d,0x6b,0x87,0xbd,0xc9,0xa3,0x6f,0x70,0x23,0x8f, +0x11,0x27,0xb1,0x37,0xf5,0x1c,0x8c,0xbd,0x29,0xbd,0x17,0x54, +0xd1,0x6b,0x88,0x38,0x0d,0xdc,0x94,0xd7,0x93,0xbf,0xc5,0xd7, +0x1b,0x44,0xdc,0xb4,0xe0,0xf6,0x3a,0xcf,0x59,0x1e,0x4d,0x1c, +0x38,0x72,0xc9,0x3a,0x5c,0xe9,0xbd,0x6e,0xd8,0x7b,0xbf,0xc6, +0xde,0xeb,0x42,0xb6,0xb3,0x0a,0x89,0xe9,0x79,0xd0,0x2b,0x4f, +0x25,0x07,0x3c,0x54,0xc3,0x39,0x4a,0x5f,0xdd,0xb2,0x67,0xd8, +0x29,0x75,0x2d,0xef,0x13,0x4d,0xd7,0xe1,0x13,0x06,0x8f,0x53, +0x3a,0xe5,0x56,0x06,0xd2,0xf2,0xac,0xf6,0xd8,0xb3,0xbf,0x35, +0xce,0x63,0x8e,0x1c,0x3c,0xbc,0x2f,0x53,0xff,0xec,0x4a,0xef, +0x66,0xb4,0x67,0xf7,0xef,0xd5,0xd8,0x7d,0xe4,0x89,0x2b,0xe1, +0x94,0x96,0x5e,0x67,0xaf,0xf7,0x06,0x4e,0x5f,0x39,0x2c,0xd0, +0xee,0xfb,0x10,0x52,0x1f,0xfe,0xdf,0x76,0xdf,0x02,0x6d,0xa3, +0xa0,0x54,0x45,0x6a,0xd3,0x52,0x9f,0x3e,0x4d,0x0b,0x56,0xa4, +0x36,0x28,0x18,0xa5,0x16,0xdf,0xd5,0x62,0x9f,0xa7,0x2a,0xc6, +0xfe,0xbb,0x87,0xbe,0xe7,0x6a,0xcb,0x57,0xcc,0x6d,0x6b,0x4f, +0xda,0x83,0x6b,0xc0,0x49,0x8e,0xac,0xff,0x60,0x8f,0x3d,0xd8, +0x08,0x07,0x73,0x61,0xa1,0xd1,0x21,0xe3,0xa1,0xbf,0x19,0x76, +0x9b,0xfd,0xe9,0x0a,0x15,0xda,0x83,0x5b,0x98,0xfe,0xa9,0x07, +0xb7,0x33,0x12,0x89,0x48,0xed,0xfe,0xa9,0x07,0x9b,0x5a,0x42, +0x0b,0xc9,0x68,0xdf,0xb0,0x4f,0x0a,0xed,0xc1,0x25,0x57,0x53, +0x9e,0x3f,0xbf,0x1a,0xda,0x9e,0xf6,0xe0,0x3e,0xa1,0x0d,0x25, +0x78,0x8e,0x3d,0xb8,0xe5,0xa0,0xa4,0x3c,0xda,0x83,0x2f,0x9c, +0x2e,0x2d,0xbd,0xa0,0xf4,0xe0,0x2e,0x83,0x86,0xb4,0x54,0x28, +0x85,0xcd,0xf9,0x90,0x56,0xf0,0x91,0x15,0x97,0xe5,0x64,0xed, +0x7f,0xe9,0xbc,0x86,0x35,0x3f,0x8d,0x22,0x6e,0x6d,0x1a,0x93, +0xba,0xb5,0x94,0xbe,0xab,0xca,0x07,0x09,0xdc,0x61,0x88,0xce, +0xd6,0xd9,0xa5,0x15,0xd6,0x6f,0xfe,0x2d,0x2f,0x94,0x25,0xba, +0x39,0x39,0xb0,0x25,0xd7,0x21,0xe1,0xc1,0xf4,0x12,0x21,0x19, +0xc6,0xc7,0x6a,0x2b,0x6e,0x9c,0x33,0xee,0x34,0xac,0x61,0x85, +0xe8,0xb2,0x3a,0xcc,0x53,0x96,0x68,0xa0,0x4e,0x7c,0xe6,0xea, +0xa4,0xf5,0x37,0x6b,0x16,0xe6,0x90,0x5a,0xec,0xd2,0xee,0xcb, +0x3a,0xcf,0xef,0x5f,0x65,0x31,0xeb,0x53,0xd1,0x1c,0xc5,0x3e, +0xe4,0x66,0xcc,0xb1,0x33,0xba,0x75,0xdc,0xb5,0x93,0xa7,0xd3, +0x2f,0x1f,0x8b,0x1c,0xbe,0x5d,0xba,0x75,0x94,0xb9,0x34,0xbd, +0x77,0x9a,0x9b,0xbe,0x9e,0x87,0x9f,0x6b,0xaf,0x03,0x03,0x4e, +0x84,0x1a,0x84,0xe4,0xba,0x21,0x13,0x3c,0xba,0xe8,0x9c,0xf2, +0x5a,0x81,0x46,0xda,0x9d,0xaf,0xf5,0x0c,0x3e,0x77,0xdb,0xb0, +0x95,0xbb,0x16,0x7f,0x31,0xe3,0xa4,0x04,0x3e,0xa8,0xae,0x86, +0x46,0x85,0x45,0xf5,0x41,0x49,0xb4,0xbf,0x09,0x42,0x3a,0x64, +0xa6,0x83,0x74,0x53,0x95,0x59,0x58,0x72,0x07,0xdc,0xf3,0xd5, +0xf2,0xc0,0x50,0x2d,0xa9,0xca,0x92,0x16,0x63,0x40,0x03,0x4d, +0x0d,0xa0,0xe5,0x20,0xec,0x7c,0x19,0x7c,0xf3,0x2e,0xa9,0x0b, +0x61,0xa4,0x29,0x8b,0xb9,0xa3,0x73,0x27,0x1e,0xeb,0xa5,0x6f, +0xdb,0xbf,0x2b,0xa9,0x47,0xea,0x5e,0xee,0x7a,0xef,0xc6,0x81, +0x63,0x47,0x37,0x1b,0xd6,0xf4,0xc9,0x97,0xab,0xb0,0xe0,0xd4, +0xfd,0x1d,0x69,0x49,0x9a,0xb9,0xbb,0x92,0x4c,0x72,0xf0,0x16, +0xf9,0x11,0x86,0x48,0x50,0x95,0x6d,0x0f,0xab,0xb5,0x41,0xe3, +0x8f,0x95,0x1b,0x32,0xb8,0xf2,0x43,0xc7,0xd2,0x52,0x0e,0x4f, +0xc2,0xce,0xd7,0x98,0x0b,0x89,0x9c,0x14,0x2a,0x69,0x76,0xf1, +0xf4,0x07,0x5a,0x89,0xf4,0xf7,0x07,0x1e,0x7f,0x49,0x87,0x8f, +0x5f,0x12,0x49,0x87,0xca,0x2f,0x89,0xf3,0x3f,0x7f,0xb1,0x9f, +0xaf,0x85,0xef,0x79,0xcd,0x12,0xf8,0x41,0x95,0x04,0x0e,0x39, +0xca,0x6f,0xf5,0x49,0xef,0x96,0x68,0x4f,0x8a,0xd0,0xcf,0xb1, +0xf2,0x9f,0xe6,0x99,0x08,0x2e,0x22,0xfd,0xaa,0x0b,0xab,0xe9, +0xba,0xa1,0xa1,0xe0,0x4f,0x5a,0x2a,0x6b,0x87,0x86,0x92,0x5a, +0x73,0x78,0xa1,0xd7,0x59,0x4c,0xaf,0x2b,0x5a,0xa6,0xe3,0x18, +0xb3,0xb5,0x48,0x0d,0xbf,0xca,0x23,0xb4,0x70,0xa8,0x23,0x39, +0xc4,0x69,0x30,0xcd,0x01,0xbc,0x8b,0x5e,0x15,0x09,0xa9,0xb0, +0xf2,0x53,0x32,0x96,0x5c,0xeb,0xf8,0x19,0x42,0x85,0x36,0x82, +0xbf,0x1a,0xfa,0xcb,0x23,0xa0,0x13,0xaf,0x3c,0x4f,0xa1,0xcf, +0x53,0xe4,0x11,0x73,0x78,0x05,0xc3,0x3d,0xf0,0xbf,0x0e,0xfe, +0x42,0xea,0x3d,0x84,0xe8,0xcb,0x63,0xe9,0xef,0xc9,0x21,0x1b, +0xa8,0x03,0xa8,0x2a,0xf3,0x40,0x85,0x99,0xf6,0x7c,0x25,0xa1, +0x5f,0xa6,0xe3,0xb3,0x3d,0x7f,0x55,0xf6,0x52,0x81,0x27,0xcc, +0x52,0xcb,0x2e,0x80,0x6e,0xa2,0xf2,0x18,0x8a,0x8f,0x10,0x0d, +0x8d,0x95,0x47,0x87,0x02,0x98,0xb5,0x0c,0x66,0x61,0x81,0x6b, +0x08,0x80,0x75,0xac,0xbb,0xf6,0x6f,0xbe,0x2c,0x2b,0xd0,0xb7, +0x2a,0xa1,0x7f,0xc5,0xe2,0x14,0xb8,0x0f,0x34,0x11,0x35,0xf2, +0x0f,0x95,0xcb,0xaa,0x08,0xff,0x08,0x13,0x9f,0x13,0x7f,0x2d, +0x0c,0xe1,0x26,0xe2,0x40,0x32,0x8e,0x9d,0x48,0xb6,0x32,0x64, +0x08,0x97,0x24,0xdf,0xd2,0x0a,0xa9,0x13,0x79,0x6c,0x02,0xf9, +0x56,0xcc,0x27,0x60,0x23,0x18,0x61,0x8e,0xf6,0x00,0x1d,0x72, +0x86,0xb4,0x40,0xb0,0x03,0x08,0xbd,0x8d,0x2c,0xd6,0x0a,0xa5, +0x13,0x79,0x12,0x5c,0x20,0xaf,0x41,0xc4,0x15,0x65,0x39,0x08, +0xfc,0x55,0x09,0x8e,0xa9,0x97,0x49,0xb0,0x16,0xaa,0xe7,0xdd, +0x79,0xb4,0xcf,0xe0,0x75,0x80,0xe9,0x3a,0x23,0x74,0x40,0x3b, +0xbd,0x67,0xe8,0xc9,0x3b,0xd8,0x17,0x2b,0xf2,0x92,0x80,0x5d, +0x23,0x41,0xf3,0xf6,0xae,0x5c,0xe3,0x99,0xf5,0x03,0x88,0x03, +0x76,0xe5,0xfb,0xde,0x20,0x48,0x3b,0xe5,0xbb,0x5a,0xe1,0xa5, +0xad,0xea,0x35,0x05,0x0e,0x30,0x12,0xb1,0x7d,0x5d,0xf2,0xa6, +0x4c,0x28,0x86,0x7c,0xd4,0x7e,0x2f,0xb9,0xdf,0xb6,0xff,0x9e, +0x09,0x0e,0x3a,0xe0,0x3c,0xee,0x10,0x81,0x54,0xef,0xe2,0xdd, +0x62,0x32,0x35,0xd3,0x72,0x76,0xa4,0x5c,0x34,0xe9,0x8b,0x53, +0xd0,0x60,0x9a,0xc3,0x35,0xef,0x32,0x84,0xb0,0x8b,0x25,0xd2, +0x9c,0x3b,0x4b,0xa2,0xb5,0xc2,0x13,0x24,0x4f,0x7a,0xef,0xa8, +0x82,0x61,0x38,0x28,0x0d,0x83,0x9b,0x5a,0xd2,0xff,0x29,0xf1, +0x04,0xa6,0x8d,0x74,0x8f,0x25,0x55,0xca,0xea,0x23,0xf7,0x3a, +0xea,0x1e,0x72,0xd0,0xf1,0x77,0xbc,0xab,0x52,0x26,0xb5,0x65, +0x09,0xd3,0xa6,0x11,0x5a,0xfe,0xfd,0x75,0x1a,0x5b,0xc1,0x82, +0x42,0xb5,0x6c,0xc0,0x82,0xd0,0xbf,0x11,0x9a,0xf3,0x8c,0x19, +0x41,0xa0,0x4a,0xcb,0xdf,0xb1,0x3b,0x74,0xd4,0xb5,0xe2,0x48, +0xc7,0xfa,0x78,0x57,0xa5,0x25,0xa2,0x03,0xc6,0xfc,0x14,0x5b, +0x50,0x29,0x98,0x69,0xd9,0x8a,0xc6,0xe8,0x54,0xa3,0x5a,0x5e, +0x49,0x24,0x6d,0x26,0x09,0xb7,0x6c,0x85,0xf0,0x4c,0x92,0xf8, +0x97,0x23,0xf7,0x29,0xf7,0x86,0x51,0xfd,0xd4,0xb2,0x42,0x1b, +0x00,0xe1,0x1f,0xb6,0x92,0xf0,0x00,0x48,0x7c,0x8f,0x99,0x30, +0x80,0x87,0x58,0xe3,0xf6,0xbc,0xea,0xa5,0xf2,0x02,0xa5,0x64, +0xdf,0x62,0x2e,0x6d,0x67,0xfc,0xee,0x03,0xd2,0x9e,0x83,0x09, +0x87,0xce,0xe8,0xd2,0x86,0x9e,0xe8,0xba,0x5e,0x5a,0xcd,0xe5, +0xac,0x3f,0x7b,0x22,0x4d,0x77,0x26,0xea,0xd0,0xd4,0x83,0xd2, +0xb4,0x03,0xd3,0xe3,0xd3,0x74,0xc5,0xd0,0x37,0x93,0x74,0xe6, +0x82,0x26,0x84,0x87,0x19,0x7a,0x70,0x9d,0x8e,0x44,0xec,0x1d, +0x2f,0xed,0x99,0xb4,0x6e,0xe6,0x34,0xdd,0x80,0xd0,0xe8,0xe6, +0x52,0x87,0x80,0xbb,0x6c,0x45,0x4a,0xf4,0x80,0x69,0x0b,0x66, +0x4e,0x9d,0x64,0x98,0x32,0x7e,0x5c,0x44,0x27,0x5d,0x0f,0x2e, +0xec,0x60,0x78,0x9a,0xa4,0x54,0x3a,0x2a,0x6f,0xbb,0xb1,0x7a, +0xe9,0x1b,0x85,0xa0,0xbe,0x9e,0x5c,0xd0,0xf4,0xe8,0x69,0x13, +0xa5,0xa9,0x13,0xa2,0xc6,0x0f,0xd3,0x05,0x9d,0x1d,0x9d,0x33, +0x5f,0x5a,0xc2,0x75,0x9d,0x3f,0x74,0x74,0x90,0x6e,0x58,0xc2, +0xf8,0x3d,0x13,0xa4,0xdd,0x13,0x77,0x46,0x07,0xe9,0x3c,0x49, +0xdf,0x00,0xe8,0xcc,0xa5,0x1d,0x3c,0x7e,0xce,0x90,0xc5,0xdd, +0x1e,0x97,0x38,0xe5,0x90,0x34,0x75,0xff,0x82,0xed,0xbb,0x75, +0x17,0x53,0xe2,0x2b,0xa4,0xbb,0x99,0x1d,0xd8,0xe6,0xa1,0xf1, +0x17,0x77,0xaf,0xdb,0xbe,0x67,0xbf,0x61,0xef,0xa1,0x23,0x89, +0xb7,0x75,0x59,0xdc,0xb9,0x09,0xc7,0x83,0x24,0x1b,0x73,0x2b, +0x64,0x77,0x35,0xb4,0xc6,0xf7,0x84,0x97,0xef,0x1d,0x19,0x74, +0xac,0x5f,0xfe,0xe5,0xc8,0x7c,0xce,0x92,0xd7,0x62,0x16,0xb1, +0x65,0x81,0x92,0xe5,0xcd,0xef,0x90,0x33,0xd4,0xf0,0xa7,0x5c, +0x1b,0xa5,0xf9,0x6f,0x0f,0xb1,0x57,0xa6,0x4d,0x83,0xd3,0x57, +0xb6,0x5c,0x81,0x65,0x57,0x62,0x63,0x1c,0x76,0xe5,0x42,0xeb, +0xdc,0x70,0xfa,0x4f,0x48,0xf1,0x82,0x0e,0x20,0x43,0x15,0x51, +0x98,0x96,0x0a,0xdd,0x62,0xbf,0xdc,0xa9,0x27,0xcc,0xf2,0xda, +0x26,0x0a,0xe7,0x53,0xe1,0x67,0x92,0x8d,0x00,0x9a,0xd8,0x8b, +0x30,0xfa,0xe2,0x2b,0xfa,0x4f,0xb5,0x3c,0x37,0x29,0xf7,0x10, +0xfe,0x41,0xed,0x5c,0x35,0x18,0xe4,0x3a,0xda,0xb2,0xcb,0xa9, +0xaf,0xfe,0x0c,0xbe,0xdc,0xaa,0x65,0xff,0x60,0x97,0x3a,0xa9, +0xfd,0x1f,0x1a,0x2e,0xda,0xef,0xe0,0x7b,0x13,0x2f,0xad,0x8c, +0x0e,0x46,0xcc,0x45,0x6b,0x30,0xe9,0xcc,0x40,0x4f,0xf2,0x44, +0x9b,0x7c,0x7c,0xc7,0x91,0xbd,0x86,0x9f,0xd9,0x71,0x7b,0x8f, +0xcf,0x48,0xd6,0x9b,0xb1,0xd8,0xab,0xfe,0xa9,0x6d,0x06,0x87, +0xcf,0x18,0x37,0xc5,0xb0,0x98,0x3d,0x12,0x15,0xbe,0x63,0xb0, +0xbe,0x0d,0x22,0x71,0xb9,0x1c,0x6c,0x36,0xac,0xba,0xa8,0xdd, +0xc1,0xc3,0x68,0xc7,0x1d,0xe8,0xe7,0xf5,0x40,0x51,0xd5,0xbe, +0x77,0xec,0x42,0x85,0x04,0x1f,0x64,0x17,0x2d,0xa0,0x89,0x44, +0xb8,0x3c,0xeb,0xf1,0xca,0x3b,0x0d,0x69,0x6a,0xb4,0x8c,0x33, +0x3a,0xdc,0x2b,0x19,0x5a,0x02,0x63,0xf0,0x9f,0xf0,0x44,0x9e, +0xb5,0x4a,0x9b,0x3a,0xe5,0x7c,0xff,0x23,0xd2,0x1a,0x4e,0x28, +0xc8,0x3f,0x70,0xfa,0xd2,0x4d,0x5d,0xee,0xa0,0xab,0xe4,0xab, +0xc3,0x52,0xf7,0x1d,0x4c,0xd7,0x9d,0x23,0x0f,0x5c,0xd4,0x5d, +0x49,0x3e,0x5a,0x74,0xe9,0xf4,0xac,0x49,0x47,0xa4,0xf3,0x57, +0x99,0x53,0x83,0x02,0xb6,0x05,0xea,0xc9,0xb7,0x6d,0x03,0x1a, +0x06,0xef,0x1d,0x74,0x79,0x9c,0x61,0x31,0x27,0x3c,0xe9,0x3c, +0x71,0x78,0x48,0x77,0x9d,0xdf,0xf9,0xbe,0xf0,0x55,0xa4,0x74, +0x73,0x06,0x93,0x33,0xfd,0x97,0x89,0x03,0x74,0xfd,0x06,0x8f, +0xed,0x18,0x32,0x7c,0xdb,0xfe,0x71,0xd2,0xa0,0xbe,0xcc,0x88, +0xf3,0x99,0xb3,0x32,0xf4,0xf0,0xed,0xbd,0xcc,0x67,0x06,0xa1, +0x7c,0x28,0x6c,0xd6,0x0e,0x9a,0x1c,0x3e,0x7c,0xa2,0x34,0x6f, +0x75,0xec,0xea,0xd8,0x55,0x3d,0xb6,0xd7,0xf0,0xd8,0x33,0x2a, +0xf1,0x9a,0xee,0xfc,0xbe,0xe3,0xa7,0x0f,0x48,0x1b,0x96,0x6c, +0x5a,0xb2,0x69,0x69,0xd6,0xcc,0x1a,0xf7,0xa7,0x9e,0x8c,0xe8, +0xa3,0xd3,0x58,0x34,0x37,0x55,0x10,0x7f,0xbb,0xe2,0xb6,0x1a, +0xe2,0x49,0x7d,0xed,0x6d,0xcb,0xde,0x8a,0x0f,0x7b,0x6f,0x5b, +0x1e,0x91,0xb9,0x2c,0xa9,0xe6,0xda,0x88,0x6e,0xb1,0x78,0xd9, +0x08,0xaa,0x19,0x34,0x3b,0xd2,0x7e,0xbf,0x06,0x8b,0xaf,0xfd, +0x9e,0xa6,0x5a,0x9e,0xf5,0xe8,0x36,0xe4,0x64,0xa1,0x0a,0xd8, +0xa1,0x85,0x76,0x50,0x13,0x04,0x1c,0xd7,0x87,0x12,0xbc,0xa2, +0x21,0xd7,0x0e,0xdd,0x72,0x81,0x0c,0x25,0x43,0xd1,0x4b,0x17, +0xa0,0x9d,0x21,0xcd,0x9e,0x88,0x75,0x71,0x48,0x15,0x0d,0xe9, +0x1c,0x88,0x7f,0xd0,0x3b,0xbc,0x10,0x15,0x11,0xa5,0x9e,0x1c, +0x66,0x29,0x77,0x6b,0x7e,0xd7,0x66,0x27,0x1d,0x3d,0xbf,0xc7, +0x30,0xe0,0x30,0x13,0x31,0x63,0xea,0xd4,0x11,0xfa,0x7e,0x13, +0x4e,0xa6,0x19,0xae,0x71,0x57,0x0e,0x9d,0xbc,0x7c,0x62,0x4f, +0xcc,0xb8,0x2d,0x52,0xea,0x41,0x26,0x65,0xea,0xf0,0x23,0x3d, +0xf4,0x0d,0x7b,0xfb,0x62,0x19,0xbb,0x6b,0x5d,0x9e,0xa3,0xa9, +0xfc,0xe2,0x34,0x7c,0x73,0x30,0xed,0x70,0xca,0x69,0x15,0x7c, +0x9d,0x92,0x7d,0x2a,0xf3,0x4c,0x46,0x0a,0x5d,0x4b,0xf6,0x42, +0xfb,0xea,0xde,0xdd,0xd7,0xaf,0xdb,0xde,0x75,0x71,0x69,0xdb, +0xc1,0xd9,0xf9,0x5e,0x87,0x57,0x86,0xd3,0xf6,0x9e,0xbd,0x2f, +0x97,0x18,0x76,0x71,0x25,0xd7,0x2f,0x17,0x17,0x5f,0xef,0xdf, +0x5e,0x8a,0xe1,0xda,0xf7,0xee,0xef,0x29,0x8d,0x87,0x6f,0xb4, +0x07,0xd9,0x5f,0xba,0x30,0xc9,0x6c,0x58,0x11,0x13,0xbf,0x6e, +0xcb,0xce,0x04,0xdd,0xb1,0xa9,0x7b,0x46,0x4b,0xad,0x49,0xc0, +0x29,0xf6,0x85,0x7d,0xda,0x71,0x6e,0xdb,0x86,0xf9,0xb3,0xd1, +0xae,0x9c,0x3d,0x6f,0xfe,0x2c,0x49,0x63,0x71,0x3a,0xa7,0x7a, +0x75,0x19,0xaa,0x5f,0x02,0xb7,0x4b,0x6a,0x68,0x22,0xb7,0xd1, +0xc2,0x9c,0x87,0xe7,0x48,0x74,0xd8,0x43,0x32,0x87,0x83,0xe9, +0x8e,0x20,0x70,0xcb,0x1e,0x30,0xab,0xd9,0x12,0xd2,0xac,0x04, +0x9a,0xe1,0xcd,0x32,0x77,0x86,0x08,0x29,0x70,0x24,0x80,0xf3, +0x27,0x3a,0x66,0x29,0xeb,0x0f,0x3a,0xc6,0x9f,0x1c,0x61,0x35, +0xf0,0xea,0xd2,0xd0,0xab,0x4f,0xce,0xbd,0xbd,0xec,0x00,0x52, +0x16,0xb4,0xca,0x12,0x66,0xa3,0x1e,0xb2,0x68,0xaf,0x8e,0x02, +0x4f,0xee,0x5e,0xff,0x73,0xad,0xbd,0x87,0x84,0x8f,0x8d,0xa1, +0x9b,0x14,0x0f,0x6d,0x3d,0xb2,0xe7,0x9c,0xfe,0xe2,0xfe,0xa8, +0x60,0xc3,0x44,0x1f,0xae,0x61,0x50,0x44,0x67,0x83,0x70,0xa1, +0xd7,0x2f,0x23,0x6e,0x67,0x1e,0x3f,0x74,0x78,0x2b,0xdd,0x3c, +0x33,0x3b,0x62,0xe5,0xf6,0x98,0x24,0x7d,0x57,0xa8,0xaf,0x1d, +0xce,0x09,0x17,0x46,0x0c,0x8a,0x0a,0x1e,0x31,0x6d,0xeb,0x51, +0x69,0x03,0x77,0xf8,0xf0,0x36,0x3a,0x8e,0xbc,0x4a,0x85,0x75, +0xa9,0x2a,0x70,0x32,0x82,0xbf,0x91,0x72,0xe8,0x95,0xf6,0x8f, +0x74,0x23,0xfa,0xfd,0xea,0x9e,0xc6,0xba,0x75,0x7b,0xfa,0x12, +0x35,0xb1,0xbf,0xe1,0xfb,0xd2,0x90,0x6a,0xdf,0x33,0xf2,0xf4, +0x35,0xc3,0x0d,0xee,0xda,0xe1,0xd3,0xe9,0xe9,0x87,0x87,0xf7, +0x91,0x7a,0x71,0x7d,0x22,0x87,0xf7,0x94,0x34,0x32,0xda,0x28, +0x11,0x28,0x2a,0xda,0x3c,0x18,0x9c,0x87,0x18,0x64,0x7b,0xed, +0xb3,0xc2,0x3b,0xcf,0x9f,0x7b,0xdd,0x69,0xd8,0xd0,0xcb,0xbb, +0x41,0x83,0x42,0xef,0x67,0x86,0x9b,0xf6,0x81,0x23,0xce,0xa7, +0xa7,0x9f,0x3a,0x9f,0x91,0x71,0x6a,0x50,0xcf,0x9e,0x23,0x06, +0x05,0x1a,0x34,0x72,0x35,0xc8,0x57,0x41,0x2c,0x38,0xaa,0x21, +0x13,0x5a,0xf1,0xca,0xb3,0x03,0xb8,0x82,0xe3,0x79,0x70,0x44, +0x8d,0x39,0x09,0xd3,0x50,0xdf,0xad,0x76,0xbc,0x0a,0xf9,0x8c, +0x37,0xdb,0x97,0xe4,0x33,0x9a,0xcb,0xf2,0x42,0xd5,0x59,0x79, +0x23,0x25,0x33,0x1a,0x6d,0x0c,0xe2,0x75,0xed,0x0c,0xa9,0x86, +0xe3,0x77,0xe8,0xad,0x69,0xb7,0x48,0x68,0x77,0x06,0x22,0xbd, +0x49,0x24,0x47,0x42,0x6f,0x4e,0xeb,0x06,0xa1,0xdd,0x48,0x35, +0xe2,0x79,0x6d,0x18,0x8e,0x4d,0x7e,0xd3,0x2c,0x4e,0xd0,0x5d, +0xc4,0x7f,0x2e,0xfc,0x07,0x27,0x8e,0x26,0x40,0xf4,0x4d,0xd9, +0x0e,0xd3,0x50,0x55,0xf7,0xbf,0x49,0xfa,0xe3,0xbd,0x0b,0x6f, +0xb5,0x23,0xfd,0xbb,0x43,0x7f,0x12,0xcd,0x51,0x6f,0x31,0xf2, +0x16,0xe8,0x6e,0x41,0x64,0x8c,0x6a,0x9b,0x9c,0xad,0x86,0xaf, +0x1c,0x0b,0x58,0xa8,0xaa,0xcc,0xc1,0x8c,0xa2,0x9b,0xd8,0x9c, +0xbb,0xc1,0x0f,0x6c,0x34,0xb6,0x1a,0xa9,0xd3,0x0d,0x6a,0xb0, +0xe0,0x4a,0x22,0xb5,0x05,0xec,0x49,0x88,0x64,0xc0,0xf9,0x16, +0xf9,0x81,0x8d,0xc7,0xa6,0x84,0x3a,0xb7,0x48,0x0d,0x25,0xcd, +0x47,0x59,0xb2,0x1b,0x99,0x05,0x4e,0x59,0x5f,0x60,0xcc,0xb3, +0xc1,0x7f,0xad,0x60,0xac,0x7c,0x70,0xce,0xc2,0x22,0x09,0xe0, +0x54,0x79,0x47,0xd3,0xba,0xd8,0x6a,0xfc,0xfa,0xcb,0x07,0xe7, +0x1e,0x58,0x69,0x14,0x71,0xaa,0xbc,0xbb,0x97,0xa5,0x55,0xca, +0x7c,0xad,0xa4,0x69,0xe0,0x94,0xdc,0x54,0x95,0x2c,0xaf,0x55, +0xcb,0x97,0x21,0x5f,0x4b,0x46,0xcb,0xd5,0x98,0xe6,0x2c,0x19, +0x6d,0xad,0x96,0x19,0x09,0xbd,0xe1,0x29,0x4a,0x1e,0xf4,0x26, +0x4f,0x11,0x6e,0x40,0xce,0xfd,0x1c,0x15,0x32,0x55,0x2d,0xbb, +0xc2,0x00,0x6d,0xf9,0x2f,0x4f,0x5e,0xec,0x30,0x04,0x6e,0x61, +0x02,0x67,0xcf,0xee,0xd0,0x4f,0x3f,0x76,0x62,0xf2,0xd1,0x09, +0x86,0xe3,0xe3,0x23,0x8e,0x86,0xe8,0x9b,0x8f,0x6a,0x52,0x6f, +0x86,0x21,0x63,0x0e,0x93,0xb1,0x75,0xeb,0xdd,0x2b,0xfa,0xa3, +0x07,0x06,0x8f,0x3d,0x68,0x08,0x3f,0x94,0x38,0xf6,0x92,0x5e, +0x03,0x7b,0x73,0x2b,0x4d,0xb4,0x4c,0x2d,0x8c,0x82,0x41,0xb9, +0x64,0x10,0x8c,0xea,0x48,0x46,0x91,0x41,0x7e,0x30,0x88,0x8c, +0xe2,0x14,0x00,0xba,0xac,0x47,0x3e,0x06,0x7b,0x2f,0xf1,0xcb, +0x73,0xe1,0xf8,0xc7,0x02,0xd0,0x48,0x8b,0x06,0x93,0x52,0x22, +0xb4,0x23,0x09,0xb5,0x95,0x08,0xe5,0xe0,0x20,0x69,0x74,0x89, +0x7f,0x22,0xb7,0x57,0x3d,0x92,0xdb,0xab,0xe5,0x11,0x4f,0xb4, +0x17,0x2e,0x90,0x36,0xa0,0xfc,0x0c,0xc4,0x3b,0xfa,0x83,0x77, +0x03,0xa1,0x8d,0xed,0xfe,0xc2,0x40,0x9a,0x83,0xe2,0x01,0xfc, +0xcb,0xdc,0x97,0xc0,0xab,0x60,0x3e,0x54,0x43,0x6d,0x8c,0xf5, +0x69,0x73,0xad,0x93,0xfc,0x38,0x98,0x4f,0x26,0x6a,0xa1,0xa9, +0x28,0xd7,0x00,0x57,0x11,0x46,0x8a,0xf2,0x31,0xb9,0x8a,0x2d, +0x47,0x9e,0x44,0x06,0x5d,0xe2,0x41,0xca,0x59,0x99,0x93,0x85, +0x7f,0x36,0x66,0x34,0x82,0x0a,0xed,0x9d,0x94,0x94,0x2c,0x64, +0x46,0x02,0x33,0x62,0xe6,0xd4,0x09,0x23,0xf5,0x11,0xe1,0xbb, +0xb6,0x8f,0x31,0x6c,0x1f,0x33,0x7a,0xeb,0x70,0xbd,0x77,0x68, +0x68,0x0f,0x64,0x46,0x14,0x73,0x6a,0xfb,0x9e,0x83,0xbf,0xe8, +0x13,0x8f,0xc7,0xcc,0x3c,0x66,0x98,0x79,0xec,0xc4,0xec,0xd3, +0x7a,0x12,0x6a,0xff,0x7f,0x57,0x50,0x83,0x54,0xc1,0xa8,0xdb, +0xda,0x2b,0x7f,0x30,0x70,0x20,0x97,0xcc,0x67,0xf3,0xa1,0x06, +0x03,0xed,0x72,0x89,0x23,0x9b,0xf6,0x07,0xaa,0xd2,0x7e,0x75, +0x19,0x72,0xc0,0x0f,0xe6,0xb3,0x9d,0x49,0x0d,0x86,0xb4,0xf3, +0x03,0x47,0x36,0xa8,0x2e,0xa3,0xd9,0x26,0x17,0x56,0xce,0x07, +0x6f,0xd3,0x96,0x72,0x04,0x20,0x8c,0x59,0xc7,0x01,0xbd,0x3c, +0xe0,0xac,0x3e,0x64,0x25,0x9a,0x97,0x9f,0x60,0x4a,0xb7,0x69, +0x65,0x1f,0x58,0xc9,0x98,0x30,0x07,0x2f,0xad,0x11,0x8e,0x84, +0x31,0x0b,0xb0,0x14,0x5e,0x34,0xcb,0x73,0x3f,0x4d,0x2c,0x5b, +0x7d,0x90,0x2f,0x3e,0x72,0x85,0x16,0x31,0x04,0x31,0x6e,0x78, +0x4f,0xfa,0x32,0xf7,0x29,0xf6,0x86,0xcc,0x5a,0x8a,0xbd,0xd1, +0x27,0xf0,0x52,0xf8,0x8e,0x22,0x0d,0x62,0xca,0x29,0xd2,0xbe, +0x8c,0x07,0x45,0xda,0x90,0x59,0x48,0x91,0x36,0x62,0x48,0x98, +0xbd,0xec,0x83,0xe8,0x70,0x40,0xfb,0x4e,0xa4,0xbf,0x81,0x10, +0xa7,0x02,0x5f,0x58,0x4a,0x3b,0x70,0xa0,0xb6,0x3c,0x31,0xf9, +0x86,0xe1,0x00,0x77,0x23,0x22,0xd9,0xcd,0x2d,0x62,0x70,0x2f, +0x69,0x22,0xd7,0x2b,0x71,0x70,0xb9,0x84,0x9e,0x81,0x37,0x7f, +0x46,0xde,0xa2,0x86,0xdf,0x1c,0x61,0x02,0xbc,0x22,0xf8,0xc7, +0xa0,0x8d,0x37,0x81,0xbc,0x02,0xfc,0x63,0x4e,0x14,0x6a,0x49, +0x47,0xd8,0x0f,0xf8,0xc7,0xac,0x65,0xa1,0x23,0xd9,0x4f,0xf0, +0x8f,0x51,0xc4,0x4c,0x1e,0x80,0xe6,0xdb,0xce,0xbb,0x5a,0xd8, +0x62,0x1d,0xea,0x27,0xeb,0x49,0x3f,0x8e,0xce,0xd1,0x6b,0x6f, +0xd2,0x85,0x62,0x7b,0xe5,0x64,0xb5,0xac,0x76,0x84,0x61,0xd8, +0x8b,0x3b,0xb0,0xf5,0xc8,0x1f,0x6d,0xc9,0x09,0x66,0x31,0xeb, +0x09,0x27,0x06,0x83,0x07,0x43,0xda,0x74,0x7f,0xc5,0x82,0x60, +0x0d,0x61,0xe8,0x66,0x09,0x4b,0x92,0x51,0x05,0xcb,0x4d,0xea, +0x63,0x74,0x93,0x84,0x6f,0x1f,0xd1,0xb2,0x08,0xc6,0x18,0x89, +0x2f,0xd7,0x21,0x7c,0xa0,0xaf,0xe1,0xc3,0x62,0x32,0x06,0xa5, +0xda,0x21,0x13,0xe6,0x66,0xaa,0x36,0x16,0xc9,0x9e,0x28,0xca, +0xcd,0xc1,0x41,0x7b,0xed,0x42,0xf2,0xa3,0xed,0x86,0xd5,0x6c, +0x93,0x83,0x97,0x46,0xe4,0xeb,0x9f,0x5d,0xbf,0x05,0x0c,0x30, +0xfd,0x6e,0x35,0xe9,0x13,0x3a,0xb8,0xc5,0x4c,0xc3,0x12,0xf6, +0xc9,0x84,0x90,0x53,0x9d,0x51,0x4b,0x75,0x23,0x0c,0x61,0x52, +0xbb,0x3d,0x31,0xac,0xcf,0xd4,0x86,0x46,0x1e,0xb9,0x6e,0xb8, +0xc2,0x5d,0x3f,0x7c,0x24,0x25,0xf9,0xc4,0x90,0xce,0xbb,0x25, +0x9f,0x69,0xa3,0xc3,0x06,0xeb,0x61,0xb7,0xe3,0xe0,0xd1,0x49, +0xf9,0xd3,0x0c,0x05,0xbb,0x4f,0x9c,0x4b,0xd6,0xa7,0x1c,0x1e, +0xd7,0xdb,0xd0,0x8f,0xeb,0x1d,0x39,0x0e,0xbd,0xb1,0xd8,0x73, +0x90,0x7b,0x0a,0x0e,0x25,0xa9,0xf6,0xc1,0x37,0x90,0x05,0xdf, +0xa8,0xc1,0x05,0x07,0x6d,0xd9,0x9b,0x85,0x11,0xc4,0x0e,0x9a, +0x90,0xb6,0xf8,0x63,0x47,0x9a,0xd0,0x4d,0x7b,0x80,0x57,0x68, +0x0b,0xd5,0x0a,0x6f,0x97,0x9d,0x97,0x86,0xc7,0x33,0xed,0x87, +0xf6,0xec,0xe3,0xa2,0xf7,0xed,0x77,0xec,0xd4,0x38,0x03,0x24, +0xda,0xc3,0x30,0xee,0xf4,0xd1,0xd4,0xc3,0xb9,0xfa,0xdc,0xd4, +0xc8,0xe1,0x47,0x0d,0x64,0x18,0xa7,0x89,0xcd,0xb1,0xf0,0x39, +0x2a,0x68,0x51,0x02,0x7a,0x34,0xbe,0xef,0xc4,0x6a,0xff,0xb8, +0x9e,0x59,0x7c,0xd8,0xd0,0xfb,0x18,0xe3,0x37,0x3a,0x72,0x64, +0x2f,0x7d,0xd0,0xb8,0xc4,0x0a,0x43,0x32,0x07,0x3f,0xc2,0xb7, +0x77,0x50,0x63,0xd7,0xd4,0x81,0xdd,0x80,0x1b,0xcd,0x5a,0xf4, +0xec,0x47,0x9c,0x25,0x72,0x81,0x9b,0x38,0x75,0xdc,0xf4,0x09, +0x33,0x12,0xfb,0xd5,0xd8,0xb5,0x69,0xfb,0xc6,0x9d,0x5b,0xaa, +0x4c,0xe1,0x5c,0xaf,0x76,0x79,0x2b,0xcd,0xb5,0x04,0x68,0x4f, +0xee,0x8f,0xf2,0x33,0xcc,0xe4,0x9a,0x87,0xb6,0x6c,0xe9,0x26, +0xc1,0xcf,0xdc,0x93,0x83,0x87,0x4e,0x4b,0x9a,0xe5,0x15,0xe0, +0x71,0xed,0xc8,0x65,0x18,0x53,0x31,0xe4,0xb2,0xc3,0xd9,0x5c, +0x68,0x92,0x7b,0x2a,0xf3,0x71,0xa6,0xf0,0x4b,0x9c,0x3c,0x15, +0x9e,0x6b,0x4b,0x0e,0xde,0x00,0x8d,0x41,0xf8,0xc6,0x0e,0x34, +0x13,0x6e,0xb4,0x6f,0x3f,0xa1,0x17,0xd1,0x48,0x98,0x47,0x34, +0x07,0x7b,0x95,0x48,0x56,0x96,0x3c,0xd7,0xca,0x6f,0x7e,0xe6, +0x4e,0x92,0x4d,0x8c,0xa0,0xb1,0xbb,0x84,0xb2,0x01,0x82,0x25, +0x90,0x15,0x7e,0xb5,0xf3,0x63,0x31,0xc1,0xfa,0x66,0x11,0x27, +0x9c,0xb5,0x1b,0x05,0x9b,0x42,0x50,0x82,0x88,0xf0,0x01,0xb3, +0x10,0xb1,0xbf,0xec,0xa4,0x15,0x4e,0xd9,0x8d,0x5a,0x70,0x30, +0xc5,0xf0,0x9a,0x43,0xb8,0x94,0xf5,0x07,0x4f,0x9c,0x5c,0x37, +0x21,0x54,0x72,0xe6,0xb0,0x68,0xe8,0xfc,0x09,0xa3,0xa5,0xd7, +0xa4,0x96,0xf6,0x1a,0x19,0xd9,0x87,0xa3,0x8b,0x5e,0x35,0x46, +0x08,0x8e,0xd9,0x22,0xca,0x87,0x21,0x41,0x0b,0x1b,0x89,0xdb, +0xdb,0x3a,0x99,0x12,0x0e,0xf1,0x60,0xe8,0x06,0x55,0x1b,0x27, +0x93,0xea,0x4b,0x7e,0xaa,0x71,0x39,0x22,0x24,0xc9,0x43,0x4f, +0xaa,0x36,0xaf,0x4b,0xdc,0x48,0xf3,0x47,0xae,0xd0,0x00,0x6a, +0x95,0x57,0x40,0xb0,0x81,0xcc,0x25,0xe3,0xe0,0x6b,0x1e,0xbe, +0xc9,0x81,0x92,0x1c,0xd5,0xb3,0x52,0x98,0x5f,0x4a,0x85,0xff, +0x1b,0xed,0xb1,0x23,0x6b,0x37,0xef,0x37,0x18,0x09,0x9f,0x71, +0xcc,0x1b,0x1c,0x98,0x63,0xa7,0x76,0x5e,0xcb,0xd3,0x19,0xa7, +0x5f,0x1f,0x73,0x4a,0xba,0x03,0x0e,0x81,0xc7,0x7c,0x09,0xcf, +0x6c,0x9e,0x34,0x6e,0xed,0x18,0xfd,0x98,0x71,0x0b,0xe7,0x4e, +0x32,0xf8,0x02,0x1f,0x38,0xe6,0x0e,0x71,0x60,0xc6,0x8c,0x98, +0xde,0xdb,0x57,0xd7,0x65,0x67,0x9f,0x63,0x23,0x24,0x6f,0xe2, +0x90,0x31,0xc6,0x08,0x3c,0x33,0x77,0xff,0x91,0x85,0xc7,0xf4, +0x39,0xf6,0x9d,0x43,0xcf,0x3e,0x32,0xdc,0xe4,0x1e,0xa5,0x9c, +0xcd,0xcf,0x4f,0x19,0xda,0x42,0xea,0xce,0xb5,0x08,0x1d,0xda, +0x59,0xd2,0xc4,0x19,0xe5,0x3a,0xca,0x36,0x38,0x55,0x26,0x76, +0x2b,0xc2,0x6a,0xff,0xe4,0x2a,0xd6,0x5e,0x4b,0x39,0x70,0xb3, +0xcf,0x2f,0x35,0xa2,0x07,0x8c,0x8c,0xe8,0xb3,0xa8,0x8a,0x5c, +0x87,0xbb,0xbc,0xf0,0xd8,0xf8,0xed,0x61,0x37,0x8f,0xd6,0x98, +0x74,0xb3,0xdf,0xf9,0x56,0x6b,0xab,0xfc,0x19,0x50,0x9b,0x23, +0x55,0x67,0x76,0x72,0x25,0xf5,0x75,0xa4,0x5e,0xbe,0x0b,0x54, +0x9b,0x29,0x61,0x8a,0x0a,0xee,0x69,0x1f,0x71,0x77,0x7f,0x49, +0xcf,0xdf,0x2a,0x59,0x25,0xae,0xd3,0xd6,0x51,0xe9,0x77,0x75, +0x74,0xfa,0xb3,0x93,0xf1,0xb1,0x11,0x3a,0xe5,0xab,0xf2,0xca, +0xd4,0x5f,0x6c,0xc6,0xe9,0x72,0x84,0xe9,0x11,0x35,0x36,0xa4, +0x95,0xbe,0x61,0x70,0x0e,0xd8,0xcd,0x31,0xc0,0x74,0x23,0x99, +0xf5,0x18,0x66,0x19,0xc9,0x74,0x16,0xec,0xb6,0xa4,0xe6,0x3c, +0xd3,0x3f,0x3c,0x1a,0xd2,0x23,0xc1,0x90,0x77,0xe4,0xf3,0x32, +0x5d,0x88,0x12,0xc1,0xd3,0xa0,0xec,0x5b,0x5a,0x96,0x0b,0x7d, +0x8d,0xaa,0xa1,0x96,0x5a,0xea,0xa1,0xb4,0x37,0xfa,0xb3,0x77, +0x4f,0x26,0x19,0x37,0x19,0x8a,0xe4,0x30,0x06,0x02,0xd8,0x8d, +0xb9,0x0c,0x09,0x60,0x8f,0xe0,0xd8,0x03,0x63,0xd8,0x4d,0x46, +0x86,0x74,0x67,0x3b,0x8c,0x1a,0xe2,0x1b,0x6b,0x98,0x42,0x70, +0xc8,0x0c,0x64,0xe3,0xfc,0x28,0x94,0xbb,0x75,0x19,0x43,0xc2, +0x59,0xcd,0x72,0x13,0x0c,0x37,0xc2,0xb1,0x02,0x87,0xdf,0x1f, +0x8e,0xbf,0x8f,0x86,0xf8,0x31,0x47,0x93,0xb5,0xfa,0x1a,0xee, +0x64,0x42,0x52,0xda,0x7d,0xdd,0x96,0x65,0x9b,0x7e,0xda,0x2c, +0xa1,0x19,0x44,0xc2,0x58,0xe1,0xe5,0x9c,0x33,0xb3,0xce,0x5e, +0xd1,0xbd,0xba,0x7a,0xba,0xac,0xe8,0xfc,0xb8,0x7e,0x27,0xa4, +0xac,0x64,0x26,0x77,0x88,0xdf,0xb9,0x5a,0x7a,0xe2,0xe2,0xd6, +0x92,0x54,0x0b,0xda,0x3e,0x64,0xeb,0x60,0x43,0x07,0xdf,0xe7, +0xac,0xf0,0x64,0xd5,0xac,0x95,0xb3,0x66,0xea,0x02,0xa2,0x07, +0xf5,0x8d,0x46,0xfe,0x68,0xe2,0x0a,0xe4,0xdb,0xb7,0x55,0x85, +0xf7,0xa0,0x6a,0x26,0x38,0xde,0x53,0xc3,0x11,0xc2,0x68,0x33, +0x71,0x70,0xd1,0x6f,0x2c,0x2a,0x84,0x2a,0xba,0xdf,0x06,0xdf, +0x25,0x62,0xbc,0x34,0x7e,0x0d,0x03,0x3f,0x71,0xb7,0x16,0x26, +0x8d,0x3f,0x1e,0x9a,0x95,0x5c,0x63,0x40,0x6e,0xb7,0x93,0x4d, +0xd7,0x56,0x79,0x15,0xe0,0xc2,0x11,0x87,0xf9,0x1d,0xfc,0x88, +0xbd,0xae,0x59,0x52,0x3b,0x90,0xa2,0xa5,0xf8,0x25,0x0c,0xd9, +0xc2,0x75,0x59,0x1b,0x92,0x18,0x9a,0x1e,0x38,0xa0,0x46,0x4a, +0xd7,0xbc,0x50,0x50,0x2f,0xac,0x42,0xaa,0xca,0x07,0xb4,0xc6, +0xe4,0x53,0x25,0xeb,0x24,0x12,0xc7,0xb9,0xed,0x18,0x73,0x3c, +0x5b,0x07,0xb9,0xe4,0x81,0xd6,0x67,0x50,0x58,0x9b,0xf9,0x12, +0xac,0xe2,0x9e,0xcc,0x3a,0x39,0xa6,0xb3,0x4e,0xb3,0xdc,0x08, +0x81,0x46,0x99,0xb7,0x2d,0xc8,0x2d,0x74,0x94,0x83,0x8d,0x24, +0x00,0x47,0xe2,0x00,0x23,0xa9,0xc5,0x42,0xb0,0xcc,0x33,0xcd, +0x58,0xd2,0xc3,0xca,0x33,0x4b,0xf0,0x82,0x4f,0x4d,0x30,0x11, +0x9f,0x48,0x2d,0x5f,0x08,0x20,0x81,0xc8,0x5b,0xcd,0xf2,0x7c, +0x58,0x9f,0x03,0x73,0xf2,0x1d,0x1e,0xdd,0xff,0x2d,0x13,0xaa, +0x98,0x7d,0x4a,0x85,0xf7,0x50,0xe2,0xb8,0xb7,0x72,0xf7,0xe1, +0x93,0xa0,0xe4,0x2e,0x7b,0xe8,0x36,0x37,0x6b,0xf6,0xee,0x94, +0xa4,0xf2,0x8f,0xbb,0x0f,0x17,0x00,0x13,0x80,0x03,0x5d,0xe7, +0x0f,0x81,0xd0,0x99,0x30,0x99,0x2c,0x69,0x26,0xaf,0x46,0x83, +0xf8,0x29,0xda,0xc2,0xe9,0x30,0x47,0x5b,0x74,0x3a,0xa2,0xbb, +0x61,0x38,0xd7,0x7d,0x78,0x64,0x47,0x89,0x34,0x25,0x45,0x5a, +0x58,0xff,0x94,0xac,0xc7,0xac,0xf5,0x5a,0xe1,0xfd,0x83,0xe4, +0xf0,0x2e,0x86,0x21,0x5c,0xe7,0xc1,0x63,0xdc,0x15,0xd9,0x35, +0x19,0x55,0x79,0x0f,0xd4,0x70,0x92,0x32,0x92,0xdd,0xf8,0xe7, +0x9f,0x9b,0xcf,0x19,0x0f,0x1b,0x6b,0xfa,0x1d,0x9e,0xd6,0x7f, +0xd2,0xe0,0x5e,0x73,0x6a,0x5e,0x97,0xcf,0xec,0x89,0xd9,0x3a, +0x71,0x53,0x64,0xcd,0xdc,0x43,0x53,0x2f,0x46,0x5e,0xec,0x77, +0xb0,0xe6,0x66,0xf8,0x9e,0x09,0x60,0xe3,0x6a,0x33,0xab,0xe6, +0xcc,0x5c,0x31,0x53,0x3f,0x8f,0xdd,0xf8,0x12,0x9f,0x63,0xc9, +0x57,0x0c,0xf9,0x2e,0xa2,0x17,0xa9,0x4a,0x42,0x74,0xa4,0xf1, +0x71,0x62,0x77,0xa7,0xaf,0x34,0x9b,0xb8,0x20,0x79,0x9b,0x80, +0xdd,0xbe,0x68,0xe7,0x92,0xdd,0x3f,0xd5,0xdc,0x6f,0x71,0xd2, +0x6e,0xdb,0xf2,0xd3,0xd2,0xcd,0x86,0x40,0x6b,0x61,0xf4,0xca, +0x98,0x9f,0x67,0x6e,0xa8,0x79,0x43,0xce,0x60,0x56,0xfc,0xfc, +0xf3,0xf2,0xb5,0x28,0x9a,0xe4,0x95,0x16,0x58,0xee,0xcd,0xa1, +0xe2,0x8c,0xa3,0x52,0x7f,0xeb,0x42,0x66,0xf2,0xe9,0xb9,0x57, +0x8d,0x3a,0x2a,0x5a,0xda,0xec,0xfb,0xd9,0x10,0x49,0x85,0x2b, +0xe2,0x81,0xf0,0x46,0x3e,0x66,0xd2,0xa2,0x70,0xb1,0x47,0x76, +0x1f,0x3f,0xb3,0x31,0xa3,0x0a,0xf8,0x67,0x93,0x6e,0xec,0xd2, +0x83,0xf3,0xf7,0xcd,0xdf,0x5f,0x05,0x06,0x67,0x93,0x28,0x56, +0x90,0x17,0xc7,0x2f,0x89,0xdf,0xff,0xef,0x85,0x6c,0xe2,0x9a, +0xc9,0x3f,0x4f,0x31,0xf4,0xf1,0xbf,0xcb,0x0a,0x6f,0xd6,0x4f, +0x5e,0x37,0x69,0xf5,0x84,0x2a,0xf5,0xfc,0xff,0x60,0x17,0x85, +0x4e,0x19,0x3d,0x68,0x7a,0x95,0xda,0xf2,0x08,0x54,0x6f,0x45, +0xd0,0x3e,0xdb,0x94,0x0d,0xed,0x8b,0x54,0x8f,0xf3,0xe0,0x60, +0x9e,0x5a,0x5e,0x23,0xd7,0xd4,0x66,0x67,0xfb,0xc3,0xd2,0x2e, +0x64,0x05,0xf9,0x91,0x6d,0x0d,0x2b,0x18,0xf2,0x3d,0x59,0xea, +0xef,0x9f,0xdd,0x0e,0xff,0xc8,0xd2,0x3c,0x58,0x01,0x3f,0xb2, +0xa5,0x64,0x05,0x03,0xdf,0xc3,0x52,0x84,0x64,0xc9,0x8b,0xc5, +0x5a,0xc8,0x47,0xd5,0xae,0x42,0x23,0x3b,0xa9,0x42,0x0b,0x55, +0x48,0xfe,0x42,0x16,0x75,0xc1,0xd8,0x69,0x50,0x98,0xb7,0xeb, +0x26,0x34,0xb8,0xed,0x70,0xc1,0x04,0x86,0xfb,0xdb,0x0b,0x6f, +0x17,0x0a,0xb1,0x71,0xa0,0x75,0x84,0xc2,0x24,0xee,0x09,0x99, +0xc1,0x08,0x97,0xe3,0x3a,0x1c,0xb9,0x3a,0xa9,0x58,0x0f,0x76, +0x17,0xaf,0x94,0xdc,0x1a,0x73,0x68,0xe8,0x59,0xc3,0xec,0xad, +0xcc,0xc8,0x5f,0x66,0x6f,0x3f,0xa4,0x3b,0xb2,0x63,0x67,0x62, +0xfc,0xae,0xf9,0x73,0xb7,0x4b,0x47,0xae,0x30,0xf1,0xe3,0x23, +0xd6,0x47,0xe8,0x3b,0x0c,0x19,0xe0,0x1f,0x74,0x64,0xd4,0x99, +0x61,0x86,0x9d,0xd3,0x99,0xa3,0x63,0x77,0xcd,0x19,0xa5,0x1b, +0x32,0x71,0x6a,0xe8,0x80,0x89,0xf1,0x97,0xa7,0x4a,0x2d,0x60, +0x24,0x93,0x1f,0x7f,0x30,0xbd,0x42,0x07,0xdf,0x0c,0xc8,0xc5, +0xb1,0x9e,0x68,0x59,0xac,0xee,0x43,0x20,0x67,0x92,0x7f,0xd4, +0xc2,0xdc,0x33,0x5c,0xce,0xa1,0x88,0x40,0x43,0x18,0x17,0x38, +0x3e,0xa2,0x2b,0xea,0x8e,0x3b,0xe0,0x93,0xfd,0x30,0x1b,0xe6, +0xc6,0xa8,0xf6,0x51,0xdd,0xbe,0x59,0x76,0xd6,0x5e,0xcf,0xee, +0xcb,0xae,0x85,0xb9,0x68,0x71,0x2f,0x25,0x0b,0x18,0x72,0x81, +0x5d,0x0a,0x0b,0x18,0x2f,0x76,0x2d,0x99,0xcb,0xf4,0xf5,0xbf, +0xce,0xae,0x6a,0xc5,0x04,0xfa,0x67,0xb1,0xeb,0xe8,0xcb,0x3b, +0xb2,0xd9,0x72,0x3d,0x66,0x1b,0x9b,0x6d,0xad,0x47,0x1f,0xd6, +0x21,0x9f,0xb2,0xb2,0x03,0x59,0xf2,0x96,0x2c,0xd0,0x2e,0x82, +0x07,0x4c,0x31,0xdb,0x8f,0x3c,0x60,0x60,0x85,0x63,0x3f,0xe5, +0x61,0x11,0x3e,0x68,0x96,0xdf,0x94,0x73,0x6e,0xaa,0x6e,0x14, +0xa7,0x17,0xe1,0x4f,0xb1,0x1a,0x42,0x1c,0xa1,0x25,0x0b,0x5f, +0x95,0x64,0x43,0x4d,0x83,0xbc,0xd4,0xd3,0xba,0x99,0x6b,0xd1, +0x77,0x7c,0x5f,0xa9,0x8d,0x3c,0xab,0x23,0xdb,0xd3,0x9a,0xa2, +0xb5,0x68,0x4a,0xb9,0xab,0x69,0xe3,0x5b,0x18,0xac,0x4c,0x11, +0xbc,0xe5,0xa0,0xa6,0x67,0x36,0xf9,0x4a,0x22,0xad,0x51,0x15, +0xa1,0x09,0x95,0x79,0x13,0xae,0xde,0xbc,0x9e,0x91,0x1e,0xa3, +0x7a,0x70,0x0f,0x96,0x17,0xa9,0xe5,0xa6,0x60,0xd0,0x16,0xc9, +0xd1,0xc6,0x0c,0xdf,0xf4,0x8e,0x3d,0x49,0xe3,0x40,0x68,0x4c, +0x7e,0x5c,0xc2,0x5e,0x9c,0x10,0x7a,0xa0,0x9b,0x9e,0xd8,0xfb, +0x7a,0x12,0x03,0x91,0x8c,0x9e,0x60,0x7f,0x2b,0xe5,0xc0,0xc5, +0x83,0x68,0x69,0x90,0xaf,0xe7,0x68,0x3d,0x42,0xcf,0xe5,0x1b, +0x8c,0x5c,0x7e,0xca,0xb9,0xfb,0x59,0x57,0x46,0x07,0x49,0xe4, +0x1b,0xae,0x6f,0xbf,0xf0,0x1e,0x12,0x44,0x93,0x60,0xb4,0x71, +0xbb,0xfa,0x29,0xde,0x8c,0xc9,0x08,0x69,0x31,0xaa,0x3f,0xcc, +0x6a,0xe8,0x01,0x26,0xed,0x55,0x16,0x26,0x11,0x13,0xf3,0x8a, +0x25,0x53,0xc1,0xc4,0xc0,0x28,0x23,0x89,0x64,0x21,0x12,0xd2, +0x98,0x46,0x2c,0x19,0x4b,0xd2,0x98,0x7e,0x90,0xd6,0x86,0xa4, +0x75,0xf2,0xbd,0x4d,0x4c,0x66,0xea,0xba,0x58,0x98,0x02,0x15, +0x6c,0x2c,0x55,0xcb,0x31,0x70,0x4c,0x6b,0xe4,0x88,0x93,0x3f, +0xf3,0x2b,0x07,0x4e,0xd9,0x8c,0xed,0x1e,0xfc,0x60,0x76,0x81, +0xf5,0x9c,0x0f,0xcc,0x26,0x13,0xa1,0x1b,0xdf,0x0c,0xff,0x48, +0x97,0x52,0x18,0xaf,0xd4,0x1c,0x6c,0xbc,0x8b,0xf2,0x79,0xd7, +0xa8,0x7a,0x70,0x1f,0xf6,0xe2,0x68,0xe8,0x01,0xc1,0x5a,0x68, +0xc1,0xbe,0xbe,0x96,0xf6,0x78,0x8f,0x21,0x27,0xbb,0x0f,0xbb, +0x62,0xf3,0xf2,0xcd,0x5b,0x74,0x5b,0x96,0x6f,0x5e,0xb6,0x59, +0xba,0x96,0xdd,0x95,0x7d,0x3c,0xb5,0x4f,0x9a,0xb3,0x9e,0x2c, +0x22,0x75,0x83,0xfc,0xd3,0xda,0xe1,0x1f,0xf9,0xed,0x3e,0x6b, +0xf9,0xda,0x1e,0x9a,0xb3,0x99,0xc7,0x27,0x84,0x6c,0x32,0x90, +0x5d,0x2c,0x71,0xb1,0x37,0xc3,0xde,0x36,0x1c,0xd9,0x8b,0x8a, +0xda,0x04,0xbb,0xb8,0x90,0xd8,0xf0,0x09,0x01,0x7a,0xcd,0xbc, +0x6c,0x98,0x9a,0x0d,0x29,0x46,0xd5,0xd5,0x07,0x90,0x8e,0x66, +0x59,0x6f,0x1c,0x31,0xb2,0xd8,0x1d,0x7f,0x32,0xcb,0x36,0x6e, +0x5c,0xb6,0x49,0x0f,0x0d,0x72,0xdf,0x41,0x7d,0xc3,0x4b,0xd2, +0x87,0xbb,0x00,0x89,0x27,0x63,0x76,0x8d,0xde,0x3e,0x1c,0xc7, +0x8c,0xa8,0xab,0x63,0xae,0xf9,0xee,0xab,0xb9,0x0b,0x38,0xa6, +0x07,0x3b,0xc3,0x85,0x59,0xb1,0x60,0xfe,0xf2,0xf9,0x7a,0xd2, +0xbe,0x0d,0xa9,0x4e,0xe6,0x90,0xee,0x97,0x09,0xff,0x6a,0xa8, +0x61,0x73,0x81,0x36,0xe8,0xf8,0x84,0xa2,0x57,0xca,0x37,0x6e, +0xe7,0xab,0x8f,0x81,0x5d,0xb3,0x66,0xf9,0xb2,0xd5,0xd2,0x0c, +0xeb,0x7d,0xed,0x82,0xf9,0x2b,0x56,0x2c,0x34,0xfc,0x02,0x53, +0x18,0x70,0xe8,0xcf,0x12,0xbb,0x10,0xff,0xe6,0x68,0xa7,0xe5, +0x41,0x48,0x76,0x45,0x36,0xb4,0xcd,0x53,0xbd,0xba,0x07,0xd3, +0xf0,0xd5,0xaf,0xc5,0x6a,0x1f,0x94,0x1c,0xcd,0xba,0x62,0x08, +0xb9,0xc4,0xf4,0x09,0x0a,0x99,0xd6,0x4f,0xdf,0x7e,0x50,0x72, +0xf1,0xe1,0x75,0xf1,0x5b,0x77,0x19,0x64,0x75,0x36,0x49,0x5e, +0xc5,0x42,0x9d,0x32,0x06,0xea,0x65,0x37,0x60,0xd7,0x6d,0xff, +0x79,0xd7,0x41,0xdd,0x9f,0x9e,0x39,0x84,0xeb,0xdc,0x29,0x2a, +0xb0,0x8f,0x94,0x3a,0x90,0x39,0x7f,0xfa,0xc2,0x8e,0x8b,0xfa, +0x3b,0x49,0xa3,0x3a,0x4f,0x59,0x3c,0x73,0xde,0x2c,0x83,0x55, +0xed,0x0f,0x67,0x96,0xb2,0xa4,0x4e,0x4b,0x86,0xb8,0xf8,0xff, +0xc6,0xce,0x9b,0x36,0x3f,0x2a,0x5c,0x57,0xab,0xb8,0x03,0x7c, +0x2f,0x51,0xc3,0xe5,0x9e,0x6d,0xd8,0x0c,0x56,0x98,0xb0,0xf3, +0x0d,0xb3,0x74,0xeb,0xd6,0x65,0xdb,0xf5,0x95,0x6a,0xd9,0xef, +0x30,0x13,0x10,0x35,0x36,0xb8,0x85,0x7e,0x6e,0xec,0x8a,0x55, +0xb1,0x86,0x97,0x72,0xf6,0xd9,0xe9,0x7b,0x46,0xee,0x18,0x82, +0xfc,0x98,0x7c,0x63,0xd4,0x0d,0xef,0xbd,0xc8,0x0f,0x7b,0xca, +0x0f,0x57,0x66,0x16,0x5b,0xb9,0x6f,0x86,0x74,0x49,0x21,0x5f, +0xff,0x3e,0xd8,0xb0,0xa5,0x50,0xdb,0xff,0x64,0x54,0xc1,0x33, +0x1b,0x2f,0xae,0x3c,0x86,0xef,0xe8,0x07,0x56,0x39,0xc2,0x58, +0x81,0x66,0xf3,0x46,0x33,0xfa,0x9d,0x96,0xaf,0xb5,0x46,0xeb, +0x5a,0x5f,0x4e,0x5e,0x4b,0x5a,0x28,0x77,0x30,0xd6,0x1a,0x61, +0x96,0x23,0x14,0x91,0x48,0x32,0xc2,0x57,0x0a,0xe8,0x9b,0xfb, +0x6a,0x79,0x95,0x23,0x89,0x81,0x0b,0x4f,0x76,0x5c,0xcd,0xfd, +0xf9,0x51,0x4d,0xf8,0xd6,0x48,0x1c,0xd8,0xd8,0x94,0x49,0x09, +0x93,0x37,0x55,0x59,0x83,0x7a,0xdf,0xba,0xd8,0x17,0xbc,0xb8, +0xec,0x8b,0x11,0x7d,0x7e,0x36,0x90,0x73,0xbe,0x70,0x81,0xf5, +0x0e,0x09,0xf7,0x91,0x88,0x97,0x2f,0x7c,0xcf,0x42,0x14,0x49, +0xb2,0xad,0x25,0x69,0x6a,0x86,0x39,0xf7,0xd5,0xd0,0xd4,0x11, +0x50,0xa7,0x75,0x2c,0x03,0x3d,0x1a,0x0f,0x74,0xd3,0x9a,0x5f, +0x73,0xc2,0x48,0xfd,0x61,0x2c,0x0b,0xfe,0xa5,0x54,0x58,0xfd, +0x5b,0x53,0xc1,0xfd,0x74,0x0f,0xdd,0xdb,0x90,0x28,0xae,0x5e, +0x18,0xe3,0xcb,0xbd,0x38,0xc7,0x34,0xfb,0x74,0x47,0x89,0xd4, +0x19,0x7f,0x35,0xc2,0x56,0x94,0xfb,0xea,0x66,0x58,0x5f,0xa6, +0x96,0xbb,0x83,0x4e,0x6b,0x24,0x31,0xbf,0x82,0x33,0x07,0xda, +0xfc,0x02,0x10,0x40,0xe8,0x52,0x4c,0xf7,0xe9,0x4e,0x27,0x8f, +0xdc,0x7d,0x1f,0x34,0xc3,0x3f,0xa2,0x33,0x83,0x8e,0x95,0x63, +0xed,0xa1,0x0e,0x9b,0x77,0x26,0xbc,0xbb,0x21,0x80,0xeb,0x3e, +0x2c,0xbc,0x8b,0x44,0xea,0x60,0x6f,0xbf,0x0d,0x6b,0x8d,0x30, +0xeb,0xb6,0xc3,0x23,0xf3,0xb6,0x4c,0x63,0x66,0x0a,0xdd,0xc3, +0xff,0x01,0x6e,0x53,0x8d,0x06,0x1c,0xfb,0x74,0x73,0xce,0xfd, +0xd7,0xba,0xa7,0xfd,0x2e,0xb6,0xdd,0x29,0xa1,0x26,0xfd,0xeb, +0xd6,0x9e,0xb3,0xe7,0xee,0xeb,0x7e,0x0d,0xb9,0xd9,0x7a,0xa7, +0x04,0xdf,0xa0,0x1e,0xf5,0x55,0xb4,0x69,0xdd,0x0f,0x81,0x7f, +0xa0,0x2e,0x05,0x4a,0x7e,0x5d,0x0b,0xab,0x05,0x17,0xac,0x27, +0x42,0xd9,0xbe,0x3f,0x2c,0x12,0xeb,0x71,0x61,0x7d,0xed,0xb1, +0x6f,0x09,0x1f,0x8a,0xcf,0xd9,0x36,0xfb,0x87,0x85,0x7b,0x4a, +0xa4,0x05,0xed,0xc2,0x72,0x90,0xb2,0xfd,0xbb,0x63,0xae,0x03, +0x6a,0x6d,0x08,0x57,0xf6,0x75,0x97,0x80,0x9d,0xa3,0x49,0x0e, +0x82,0xb9,0xd6,0x20,0x93,0xbc,0x99,0xe4,0x40,0x33,0xa8,0x9b, +0x4b,0x18,0xe8,0xca,0x0b,0xcf,0xe1,0x1d,0xf8,0x6b,0xbb,0x8b, +0xb6,0x82,0x74,0x1f,0x19,0x96,0x9a,0x6b,0x52,0x57,0x96,0x68, +0x9e,0x4b,0x9a,0x23,0x34,0x5e,0xaa,0x22,0x34,0xe4,0x58,0x83, +0xb4,0x74,0x69,0x1b,0xab,0xa9,0xc3,0xbb,0x88,0xb7,0xcc,0x8f, +0xc0,0x6d,0xa5,0xa7,0x08,0x06,0x4b,0x17,0x27,0xbe,0x0e,0x9f, +0x93,0x1d,0x2d,0x86,0x79,0x8a,0xfb,0xe4,0x13,0x6e,0xf8,0x94, +0x0f,0x3e,0xca,0x63,0x91,0x7c,0xba,0xad,0x58,0x87,0xcf,0xaa, +0x7c,0x9c,0x62,0x19,0xe8,0x8c,0xb9,0x15,0x6f,0x1d,0x6e,0x99, +0x67,0xd6,0xe6,0xc7,0x98,0x84,0xe8,0xb8,0x06,0xbc,0x70,0x3a, +0xae,0xae,0x88,0x77,0xcd,0x44,0xbc,0x6b,0x20,0xa2,0x27,0xd0, +0x55,0x4e,0x77,0x12,0x9b,0x8b,0xb3,0xe9,0x5a,0xbd,0x22,0x60, +0xaf,0x9b,0x84,0x0e,0x08,0x16,0x86,0x50,0x1d,0x10,0x28,0x0c, +0x61,0xe6,0xef,0x23,0x31,0xae,0xbc,0x8d,0x90,0x5d,0xe0,0x96, +0xe7,0x29,0xee,0x94,0xf7,0x3b,0x63,0x55,0xd0,0x39,0x83,0x2e, +0xf0,0x6b,0x97,0xb1,0xcb,0x53,0xec,0x6d,0x11,0x1b,0x22,0x0c, +0xa8,0x72,0x31,0x69,0x21,0x24,0x46,0x99,0x84,0xa9,0x88,0x47, +0x09,0x9a,0x66,0x0b,0x00,0x67,0x0b,0x9c,0x46,0x58,0xb9,0xa4, +0xa9,0x18,0x25,0xe6,0x04,0xe5,0x81,0x47,0x3a,0x78,0x50,0x70, +0x98,0x98,0x3b,0xd2,0x24,0x5c,0x94,0xcf,0xe7,0x69,0x3b,0xc1, +0x09,0xf6,0x1f,0xa2,0xb1,0xe5,0xea,0x4b,0xfe,0x25,0x1a,0xdb, +0x7d,0x44,0x7c,0x69,0xf5,0xa0,0xfd,0x11,0x17,0x96,0xac,0x58, +0x5a,0xc3,0xb6,0xf9,0x51,0xb8,0x1f,0x9c,0x32,0x09,0x9c,0x79, +0xe1,0x12,0xdd,0x84,0x05,0x3d,0x79,0x04,0x23,0x8d,0x20,0x56, +0xdb,0x9a,0xa3,0x81,0xec,0x68,0x70,0x3b,0xa9,0x32,0xb8,0x1d, +0xf2,0x35,0xe5,0x02,0xd4,0xb8,0x80,0xb5,0x6f,0xbf,0x0e,0x55, +0xae,0x2f,0x33,0x09,0x51,0x5e,0x48,0xef,0x2f,0x5e,0x88,0x37, +0xca,0x0b,0xdf,0xfc,0x17,0x2f,0x24,0xf7,0xbb,0xb8,0x7d,0xf2, +0x8e,0xb6,0xf8,0x5e,0x27,0xff,0x47,0xc0,0xf0,0x83,0xe5,0x8d, +0xb6,0xe7,0x09,0x2f,0x52,0xe5,0xf4,0x64,0x26,0x8e,0xac,0xa0, +0x25,0xcd,0xed,0x90,0x6d,0x63,0xa0,0x3c,0x18,0x0b,0xd1,0x06, +0xf8,0x85,0x36,0x40,0x14,0x6d,0x80,0x5f,0x68,0x03,0x7c,0x6d, +0xf7,0x42,0xbe,0xd2,0x82,0x17,0x18,0x3b,0x37,0xfa,0xd0,0x18, +0x4b,0x5c,0xbb,0x89,0x15,0x45,0x40,0x69,0x88,0xa7,0x98,0x20, +0xef,0x8f,0xe4,0x69,0xe3,0xd0,0x26,0xa7,0x1b,0xba,0xb1,0x79, +0xda,0xd2,0xaa,0x07,0xd2,0xaa,0xdb,0xd2,0xaa,0x07,0xd2,0xaa, +0x19,0x3b,0x14,0x86,0x71,0xbc,0x10,0x17,0xf7,0x61,0x5d,0xa0, +0xf8,0x37,0x14,0xfb,0xe5,0xfd,0x1e,0xe2,0x02,0xa8,0xea,0xc7, +0x6b,0x68,0x3a,0x74,0x55,0xda,0xac,0x61,0xc6,0xf1,0x7f,0xa6, +0xe7,0x3b,0x3b,0xa5,0x40,0x2b,0x58,0xaa,0xfd,0xb3,0x33,0xdf, +0x98,0xb5,0x15,0xfa,0xb6,0x19,0x6f,0xc3,0x67,0x12,0x26,0xd3, +0xea,0x4f,0xd2,0xea,0x27,0xd3,0xea,0x4f,0xd2,0xea,0xbf,0x8d, +0xc3,0x42,0x65,0x58,0x6f,0x2a,0x14,0x23,0xf6,0x49,0xb2,0x3b, +0x71,0x41,0x71,0xfd,0xc5,0x72,0xcd,0x4b,0x11,0x2d,0x45,0x26, +0xff,0x5b,0xf2,0x51,0x5a,0xbd,0x45,0x24,0x7f,0xc0,0x5f,0x1d, +0xa8,0xa8,0x51,0x3c,0xf1,0xb2,0xbb,0xf5,0x3b,0x65,0xf9,0xe8, +0x14,0x2c,0x71,0x0a,0x0b,0x4c,0x41,0xf8,0x53,0xb4,0x3a,0x52, +0xdd,0xe2,0xd2,0x91,0x4a,0xdb,0xf5,0x0c,0xdb,0x0a,0xd3,0x29, +0x19,0xc2,0x34,0x04,0x3a,0x8b,0x40,0xd3,0x10,0xe8,0x2c,0x65, +0x6c,0x89,0x65,0x67,0x47,0x2a,0xa4,0x6b,0x28,0xed,0x93,0xa0, +0x60,0xf0,0x3f,0xbf,0x30,0x63,0x17,0x66,0xb9,0xdb,0x89,0x47, +0xde,0x07,0xd0,0x87,0x1e,0xa2,0x0b,0x5f,0x0e,0xc1,0x0e,0xe9, +0x0f,0x9f,0x81,0x5b,0x42,0x2b,0xfe,0x9d,0xc5,0xdb,0x89,0x77, +0xe1,0x5f,0x64,0x4f,0x14,0xa3,0x5b,0xf1,0x8b,0xe4,0x44,0x37, +0x7c,0xfa,0x13,0x7c,0x94,0xc7,0x24,0xf9,0x44,0x5b,0x84,0x7f, +0x5a,0xf9,0xd8,0xd7,0x12,0xec,0x8c,0xb9,0xa0,0x79,0x8b,0xc5, +0xe7,0xd7,0xe6,0x63,0x4d,0x42,0x50,0x5c,0x0b,0x51,0x48,0x88, +0x6b,0xc4,0x0b,0x23,0xe3,0xf0,0xda,0x98,0xf6,0xb8,0x7a,0xf2, +0x55,0x27,0x31,0x55,0x44,0x18,0xb3,0x12,0x1d,0xa3,0x31,0x82, +0xf4,0x43,0x88,0x56,0x42,0x3f,0xcc,0x9f,0xbf,0x88,0xcc,0x72, +0xe5,0x3f,0x12,0x71,0x00,0xdc,0x9e,0xb4,0xe2,0xe7,0xca,0xf1, +0x9f,0x43,0x3b,0x62,0x05,0x23,0x33,0xe8,0xfa,0xd9,0x4e,0x19, +0x67,0x5b,0xf1,0xcd,0x2d,0x35,0x1b,0xd2,0x3a,0x6b,0xe5,0x62, +0xd2,0x0a,0x48,0xfc,0xa9,0x15,0x4f,0x5c,0xe5,0xc2,0x8f,0xb1, +0x17,0xd1,0xeb,0xfb,0x51,0x59,0x6c,0xeb,0x9b,0x9b,0x68,0x12, +0x8e,0xcb,0x5d,0x62,0x45,0x25,0xe2,0x22,0x27,0x14,0x61,0x8d, +0x49,0x6d,0x36,0x73,0x2b,0x96,0xa6,0xf2,0x92,0x50,0x44,0x9c, +0x60,0x27,0xd4,0xa3,0x4b,0x73,0x4d,0x8a,0xa8,0xa7,0x3f,0x4c, +0xa0,0xa2,0xbe,0xc7,0x24,0xf4,0xa1,0xc1,0x3b,0xe2,0xbd,0x10, +0x7c,0xb8,0x17,0x5e,0x1b,0x53,0x41,0x5f,0x24,0x6f,0x69,0x8b, +0xb5,0xe6,0xfd,0x0f,0x40,0x5f,0x58,0x5e,0xfe,0xbd,0x4b,0xc4, +0xe6,0x8f,0x02,0x1f,0x3e,0xfd,0xe1,0x24,0x28,0x1f,0x8f,0x45, +0x28,0x83,0xe2,0x29,0x83,0x86,0xc7,0xe1,0xb5,0x31,0xed,0x04, +0x39,0xf2,0xc5,0x2f,0x7b,0x04,0xf2,0xe2,0x26,0x56,0x12,0x05, +0xa5,0x13,0x5b,0xf1,0x0b,0x91,0x15,0xaf,0xcf,0xdc,0xc9,0xde, +0x3d,0x47,0xec,0xb5,0xf3,0x97,0x76,0xef,0xf4,0x38,0x08,0x1f, +0x5b,0x20,0x6a,0x52,0xc5,0x17,0xd9,0x15,0x22,0xb6,0xcf,0xa7, +0x5e,0xf0,0xb7,0x62,0x8b,0xb1,0xd8,0xdf,0x82,0x44,0xda,0x7a, +0x04,0x85,0xa1,0x3d,0x02,0x19,0xd4,0x22,0xe3,0xc6,0x3f,0x51, +0xf3,0x9d,0x1d,0x16,0xfd,0xb2,0x3f,0x28,0x45,0xb0,0x3f,0xd8, +0x30,0x9b,0x84,0xde,0xf4,0x9d,0xf7,0xd0,0x77,0x1e,0xe6,0x85, +0xd7,0xc6,0xb4,0x37,0x60,0x91,0x32,0xac,0xbf,0x14,0xa5,0x38, +0xfd,0xe1,0x74,0xec,0x0d,0x9a,0x56,0x3c,0xac,0xb5,0xa4,0x7a, +0x61,0xb3,0xa3,0xb0,0x54,0x88,0x28,0x29,0x9f,0xc5,0xdd,0x06, +0xb8,0x1f,0xc5,0xfd,0x07,0x65,0x6d,0x6e,0x5f,0x44,0xb8,0x17, +0xf1,0x8d,0x10,0xf6,0x52,0x6c,0xa4,0xa5,0xa5,0x56,0x47,0xda, +0xc4,0x15,0x19,0xb6,0x55,0xd3,0x83,0x32,0x84,0x60,0x04,0xd9, +0x8f,0x20,0xa3,0x85,0xfd,0x94,0x63,0xe7,0x2d,0x5b,0x3b,0x62, +0x7d,0x70,0x82,0x92,0x35,0x1d,0x0a,0xa6,0xfe,0xd3,0x9b,0x30, +0x76,0x1d,0x2c,0x77,0xbe,0x14,0xf4,0xbb,0xe2,0xc7,0x80,0x47, +0x34,0x48,0xa8,0x12,0xf3,0xc8,0x17,0xdc,0xfe,0xbc,0x25,0xfc, +0xfe,0xff,0x9f,0xb0,0x47,0x82,0xc3,0x42,0xd8,0xef,0xc4,0xd7, +0x43,0xe5,0x63,0x7e,0xf8,0x3b,0xb8,0xcd,0x14,0xc1,0xce,0xb2, +0x94,0x26,0xa0,0xda,0x73,0x30,0x3f,0x9c,0x01,0x85,0x33,0xc5, +0x64,0x19,0xda,0x8a,0xf7,0xc4,0x7a,0x74,0x9c,0xf9,0x98,0x16, +0x64,0xd9,0xe1,0x8c,0x50,0x66,0xe0,0x31,0xc5,0x04,0x0e,0x33, +0xc5,0xc5,0x16,0x7b,0x77,0xf1,0x9a,0x98,0xfc,0x10,0x36,0x99, +0x72,0xe1,0x2b,0xe1,0x12,0xcc,0x8b,0xd5,0xe6,0x5c,0x4a,0xcc, +0x3a,0x4c,0x03,0xd1,0xcc,0x6d,0x53,0xb9,0x94,0x9c,0xcb,0x8a, +0x0c,0x49,0xec,0xaa,0x27,0xdf,0x76,0x72,0xa5,0x4b,0xca,0x2f, +0x91,0x0e,0xb7,0x5d,0xe1,0x5b,0x69,0x5f,0xbe,0xb6,0xe5,0xe0, +0x1b,0xcf,0x0c,0x8f,0xb8,0x67,0xc9,0x37,0xca,0x6e,0x41,0x6d, +0xbe,0x9b,0x04,0x07,0xe4,0x38,0x6d,0x06,0x7b,0x01,0x7a,0x33, +0x75,0xe8,0xba,0xc0,0x51,0xf9,0x62,0xe5,0xba,0xf6,0xb9,0x4a, +0x68,0xd3,0x37,0xd9,0x99,0xfe,0x79,0xed,0xba,0x90,0xc6,0x01, +0xe8,0x77,0x74,0xfe,0xb8,0x48,0xfd,0x12,0x5d,0xa4,0x3e,0x57, +0xb8,0xd4,0x58,0xac,0x9c,0x0b,0x8b,0xa3,0x73,0x61,0x1e,0x96, +0x45,0xda,0xc6,0xfe,0x93,0x77,0x4f,0xde,0x3e,0x75,0x4b,0x4d, +0x34,0xd9,0x2e,0x4d,0x4c,0x19,0x9f,0x34,0xa6,0x69,0xf7,0x1a, +0x27,0x07,0xbf,0xc8,0xbb,0x1a,0x9c,0xdc,0x23,0xd1,0xa3,0xe6, +0x92,0x9f,0x98,0xd4,0x71,0xfd,0xcf,0xb6,0xd5,0x93,0xef,0xdd, +0x5c,0x49,0x73,0x65,0x5e,0xac,0x3e,0xd4,0x2e,0x7f,0x0c,0x81, +0xe0,0x83,0x36,0x6a,0x9b,0xfb,0x86,0xb2,0x0c,0x86,0xb4,0xf8, +0x60,0x80,0xaf,0xf9,0x7a,0xa2,0x8b,0x98,0x63,0x7e,0x0b,0x6e, +0x47,0x1e,0x0a,0x4f,0xeb,0xf2,0x42,0x75,0x50,0xc3,0x31,0x64, +0x9c,0x98,0x93,0xfd,0x39,0x2a,0x0e,0x4d,0xff,0x09,0x6a,0x6a, +0xff,0xcf,0x51,0x13,0x34,0xf5,0xc4,0xfc,0xc7,0x62,0x0a,0x88, +0x6d,0xc5,0x7a,0x62,0xd6,0x63,0xb1,0x3f,0x5c,0x45,0xfe,0x8a, +0x68,0x5e,0xe4,0x98,0x57,0xd4,0xe6,0x17,0x3f,0x14,0x7e,0x43, +0x64,0x8e,0x8d,0xa0,0x99,0x13,0x02,0x50,0xb6,0xe7,0xa0,0xd5, +0xe2,0x70,0xff,0x53,0x25,0x0d,0xdc,0x51,0x15,0xdc,0x14,0x31, +0xf9,0x25,0x8e,0x7a,0x0f,0x85,0x99,0x98,0xbc,0x70,0xcd,0x07, +0x8d,0x6b,0x25,0xa5,0x27,0xc1,0xed,0x8f,0x4a,0xe0,0xf9,0x50, +0xd5,0x19,0x91,0x50,0xf3,0x22,0xc7,0x0c,0x01,0x19,0x17,0x2b, +0xd3,0x5b,0xc1,0xe2,0x86,0x08,0x4d,0x6d,0x8c,0x1c,0xf3,0x46, +0x48,0x5c,0x53,0x99,0x4e,0x6a,0x43,0x27,0x6a,0x53,0x54,0x06, +0x0e,0x53,0x61,0x15,0xb9,0x20,0x3c,0x54,0xc3,0x07,0x68,0x2e, +0x1e,0x8c,0xdf,0x93,0x79,0xc9,0x70,0xe6,0xe8,0xc5,0xb3,0x3b, +0xcf,0xf4,0x3a,0x55,0x03,0x78,0xde,0x89,0xb4,0x21,0xee,0xcf, +0x6b,0x81,0xb4,0x7f,0xf7,0xea,0x35,0x9b,0xa5,0x95,0x4b,0x19, +0xef,0x31,0x23,0x47,0x0e,0x52,0x62,0x27,0x48,0x64,0xb4,0xbc, +0x52,0x6b,0x0b,0xf8,0x43,0xc3,0xff,0x48,0x71,0x1c,0xbe,0xb9, +0x99,0x86,0x8e,0xcd,0x31,0xcf,0x84,0xf2,0xe8,0x87,0x42,0x05, +0x56,0xe9,0x90,0x0f,0x0d,0xb4,0x5d,0xc5,0x88,0x53,0x61,0xbc, +0xc0,0xe3,0x30,0xe5,0xd0,0x18,0xe9,0xa2,0x4a,0x2b,0xc7,0x3c, +0x1f,0xbb,0x3b,0xf7,0x91,0xe5,0x1b,0xe5,0xc6,0x5e,0xca,0x6b, +0x67,0x7d,0x8c,0x45,0x44,0xc2,0x95,0xb7,0x8f,0x8e,0xc3,0x7c, +0xde,0x0e,0xb9,0x88,0xe3,0xc0,0x3c,0xbb,0xa1,0x74,0x1c,0xb0, +0x61,0x38,0x83,0xe3,0x80,0x81,0xee,0x5c,0x10,0x7e,0x45,0x90, +0x1a,0xa4,0x19,0xac,0xea,0x48,0x5f,0xfa,0xba,0xc2,0x8c,0x0b, +0x0f,0x7b,0x66,0x08,0xcf,0x29,0x05,0x97,0x64,0xae,0x23,0x65, +0x12,0xaa,0x37,0xac,0x14,0x0a,0x66,0xdb,0x28,0xe3,0xbd,0x65, +0x9f,0x95,0x7c,0x0e,0x7f,0x51,0x69,0x67,0x65,0xcb,0xc2,0x28, +0x28,0x1c,0x42,0x37,0x2d,0xbc,0x5c,0xf3,0x0f,0x9b,0x16,0xfe, +0x74,0x4a,0xe0,0x85,0xdf,0x9c,0x94,0x4d,0x0b,0x93,0x78,0x7c, +0x4c,0x16,0xf1,0xb1,0x3f,0x66,0x54,0x4b,0x14,0x05,0x7b,0x2f, +0xd2,0xdb,0xe2,0xea,0x86,0xd8,0xf0,0x05,0x20,0x52,0xfc,0xdf, +0xa1,0x5a,0x60,0x31,0x3a,0xf3,0x87,0xf8,0x15,0xd0,0xbb,0x92, +0xb2,0x5b,0x20,0x9e,0xb0,0xa1,0x3b,0x2a,0x0a,0x4f,0x9d,0x4e, +0x88,0xc2,0x2b,0x27,0x65,0x0b,0x06,0x2d,0x5e,0xed,0x67,0x1e, +0x1f,0xfb,0xd3,0x92,0x7d,0xe0,0x6d,0x1c,0x16,0xdc,0x07,0x3c, +0xd2,0x90,0x0e,0x0e,0x57,0xfe,0x27,0x85,0x64,0x8d,0x7d,0x77, +0x71,0x1c,0xaa,0x05,0x33,0xaa,0x85,0x9d,0x6e,0xfc,0x38,0x3a, +0xf4,0x9a,0x71,0xe8,0xed,0xea,0x8c,0xf7,0xbf,0x22,0x11,0x54, +0x01,0x8b,0xd7,0x2b,0x23,0x8a,0xad,0xe6,0x85,0x3b,0x27,0x78, +0x5b,0x74,0xb0,0x1e,0xf2,0xc6,0x38,0x84,0x81,0x2a,0x40,0x75, +0xe7,0x5d,0x70,0x28,0xfc,0x07,0xa0,0x45,0xf2,0x71,0x77,0xf1, +0xb9,0xf8,0x31,0x66,0x4e,0x2a,0xb6,0x70,0x34,0xb6,0x6f,0x98, +0xb2,0xef,0xe2,0x57,0x5b,0xec,0x1c,0x33,0xaf,0xec,0x5f,0xa9, +0x31,0x0f,0x46,0x38,0xf3,0xb5,0x45,0x15,0x24,0x9b,0xd4,0x8b, +0x44,0x4d,0x6d,0x25,0xfe,0x00,0x9c,0x02,0x37,0xd2,0x78,0x1a, +0x0f,0x8f,0x2d,0xee,0x4e,0x98,0x5b,0x92,0xed,0x00,0x1d,0x29, +0x06,0x4c,0x9a,0x26,0xef,0x75,0xc3,0xa4,0x07,0x6f,0x78,0x38, +0x28,0x1f,0x68,0x2b,0xd6,0x16,0x0b,0xf1,0xb6,0xb3,0x25,0x80, +0xa2,0x79,0xf5,0xd6,0x01,0xfc,0x81,0x5d,0x62,0x5a,0x02,0xec, +0x74,0x5e,0x68,0x09,0x35,0xe5,0xf3,0x4e,0x22,0xf1,0x7a,0x7b, +0x4b,0xd9,0xc3,0xff,0x31,0xd0,0x14,0xf9,0x16,0xd8,0x06,0x26, +0x61,0xba,0x12,0x6c,0xea,0x29,0xff,0x39,0xbe,0x54,0xd4,0x79, +0x51,0x58,0x08,0xd3,0xc8,0x42,0x57,0xbe,0x92,0x92,0x89,0xe0, +0xd6,0x1a,0x6b,0x9d,0x28,0x6f,0x71,0xa6,0xa1,0xaa,0x7a,0x65, +0x38,0x20,0xa5,0x8b,0x32,0x04,0xe3,0x22,0x51,0xa8,0x07,0xb5, +0x2d,0xd5,0x1a,0x22,0x24,0x7c,0x87,0xbe,0x4e,0x10,0x24,0x92, +0xae,0x26,0xac,0xb5,0xd9,0x43,0xf9,0x56,0x53,0x91,0xc6,0x6c, +0x6d,0xf8,0xb7,0x5a,0xeb,0x98,0x16,0xe6,0x0a,0x7f,0xca,0x13, +0x62,0xc5,0x5c,0x4e,0x78,0xf3,0xb7,0xe0,0x83,0x7e,0xf2,0xd7, +0xec,0x8a,0xa5,0x8c,0xf0,0x27,0x04,0xf3,0x12,0xa9,0x6d,0xb9, +0xab,0x15,0x64,0x1a,0x1a,0xeb,0x59,0x3b,0x11,0xdc,0xa1,0x9c, +0xa0,0x13,0x70,0x4d,0xa9,0xf0,0xb2,0x7c,0x1a,0x0d,0x80,0x1a, +0xd8,0xb1,0xea,0x35,0xe6,0xfb,0xf3,0x74,0xb3,0x8c,0x0e,0xd1, +0x2b,0x81,0xb6,0x60,0x04,0xfe,0x87,0x5a,0xe2,0x08,0x1a,0x59, +0xeb,0xfd,0x53,0x1e,0xb2,0x1c,0xbb,0x8b,0x0a,0x0c,0xb5,0x98, +0xfe,0xa0,0x2c,0x35,0xc1,0x54,0x7a,0x41,0xa0,0x08,0xcb,0x30, +0xad,0x60,0x79,0x0b,0x2d,0x18,0xe1,0xad,0xcf,0x31,0x46,0x78, +0xdf,0x9a,0x78,0x32,0xf0,0xd7,0x14,0xed,0xe7,0xa4,0x77,0x34, +0x49,0x73,0x19,0x7d,0xde,0x37,0x26,0xf5,0x76,0x1e,0xef,0x14, +0x8e,0xd8,0x10,0x09,0x19,0xdb,0xf1,0x4d,0xe5,0xba,0xef,0xed, +0x9c,0xf8,0xcb,0x7c,0x21,0x8d,0x5e,0x33,0x4b,0x69,0x63,0x5b, +0x06,0x2c,0x7c,0xaf,0x75,0xe6,0xc9,0x6a,0xe8,0xfd,0xa0,0x72, +0x47,0x8f,0xc3,0x1b,0xd3,0x75,0x10,0x85,0xe9,0x2f,0x70,0x70, +0x03,0xe9,0xaf,0x29,0x4d,0x79,0x65,0xaf,0x8f,0xea,0xad,0x49, +0x2d,0x4f,0x71,0x7c,0xc1,0x92,0x05,0x70,0x03,0x22,0x60,0x34, +0x53,0x9f,0x25,0x9e,0xa4,0x7d,0xa3,0x26,0xcc,0x12,0xd8,0xd2, +0xce,0xba,0xd9,0x04,0x1e,0xec,0xf3,0x47,0x8c,0x6d,0x2b,0xd0, +0x7e,0x4a,0xc0,0xba,0x4a,0x02,0x2a,0xa3,0x7c,0x58,0x5a,0x92, +0xcd,0x17,0x68,0x95,0x0f,0x2d,0x2f,0x9c,0x78,0x05,0x6c,0x79, +0x8c,0x03,0x6c,0x36,0x3d,0x44,0x55,0x66,0x8c,0xe1,0x85,0x7a, +0xf2,0x20,0x4b,0xcb,0x21,0x0a,0x31,0x99,0x34,0xd7,0x01,0x26, +0x81,0x88,0xcd,0x3f,0x06,0xf3,0xd6,0x80,0x13,0xb9,0xdd,0x94, +0x7e,0x29,0xf6,0xc5,0x2e,0x94,0x91,0x4b,0xcb,0xa1,0x3a,0x70, +0x10,0x4e,0x60,0x66,0x57,0xd9,0x17,0x7c,0xd1,0x33,0x85,0xf6, +0x22,0x2c,0x61,0xa1,0xf1,0x45,0x26,0x87,0x23,0x8d,0x07,0x20, +0x9b,0xc8,0x66,0x3f,0xe8,0x4a,0xf2,0x94,0xa7,0xae,0x1c,0xcd, +0x21,0x93,0x48,0x57,0x65,0x7b,0x11,0xe5,0xf5,0xef,0x26,0x13, +0xb8,0x6d,0x32,0x09,0x59,0xfd,0x44,0xe1,0x70,0x08,0x1d,0xee, +0xf2,0x2d,0xb3,0x9d,0x78,0xcc,0x45,0xfb,0x18,0x73,0xc3,0xa1, +0x30,0xfc,0xcb,0xdc,0x75,0xf2,0xb3,0xb6,0xa2,0xc2,0x2c,0x65, +0x7b,0x52,0x32,0x88,0xb9,0x26,0x21,0x02,0xb3,0x07,0x86,0x50, +0x6e,0x7d,0x4f,0x56,0x23,0xb7,0xd0,0x34,0xfc,0xdd,0x34,0x14, +0xca,0x87,0x9a,0x84,0xeb,0x98,0xb5,0x0f,0xb3,0x1c,0xe0,0xb0, +0x2c,0x8f,0xa5,0x78,0x29,0x83,0x97,0xbf,0x59,0xa8,0xf4,0xb0, +0xc2,0x8f,0x3d,0x8c,0x15,0xce,0x9a,0xdb,0x71,0x42,0x49,0xfd, +0x5f,0xb4,0xa9,0xec,0x65,0x08,0x60,0x9a,0xb0,0x1a,0x94,0x07, +0x1a,0xfb,0xba,0x72,0x13,0xd4,0x73,0xf0,0xfd,0x18,0x9b,0xad, +0xf9,0x6e,0x84,0xbf,0x67,0x56,0x38,0xfe,0x9e,0x13,0x9e,0x7f, +0x0a,0x6e,0x65,0xed,0x47,0x56,0x71,0x1a,0xf0,0x10,0xbf,0x0c, +0x43,0x0a,0xd5,0x79,0x83,0xd1,0x1e,0x82,0x2b,0x43,0x9d,0x7b, +0x87,0x51,0xe1,0x64,0x2c,0x9d,0xa8,0xfd,0x81,0xc3,0xeb,0xad, +0xd2,0x58,0x28,0x8c,0x2d,0x15,0x0a,0x1a,0x61,0xba,0x7c,0xec, +0x10,0x5a,0x20,0xf9,0x46,0xfe,0xa2,0xfc,0x4b,0x5b,0x6a,0x8b, +0x18,0xf9,0x01,0x96,0x10,0x6a,0x83,0x50,0x17,0xbc,0x74,0x59, +0x6d,0x7e,0x59,0xa9,0x90,0x8f,0x90,0x8d,0x9a,0xc8,0xd7,0xa9, +0xc7,0x4d,0x83,0xbf,0x60,0xc6,0x63,0x60,0x1f,0x97,0x0a,0xd1, +0x98,0xb1,0x94,0xcc,0x08,0x14,0xa9,0xa5,0x73,0xab,0xf4,0x38, +0xb8,0xbd,0xae,0xc4,0xbb,0x50,0x4e,0x40,0x65,0x68,0xf3,0xb5, +0x4b,0xa1,0x7b,0xc6,0x95,0xca,0xf4,0x36,0x16,0x3d,0x2a,0x43, +0xfe,0x3a,0x04,0x61,0xfa,0x01,0xc8,0x19,0x52,0x99,0x9e,0x68, +0xe9,0xec,0x43,0xe1,0xa9,0x23,0x5e,0xba,0x1e,0x12,0xd7,0x57, +0xa6,0x13,0x27,0xb9,0xf8,0xa3,0x57,0x70,0x5b,0x7c,0x3c,0x42, +0x9b,0x55,0xcc,0x44,0x9e,0xbc,0x30,0xe3,0xba,0x7e,0x92,0x78, +0x7b,0x46,0xe6,0xb8,0x73,0x06,0xa3,0x79,0xf0,0xd1,0x1e,0x9e, +0xcc,0xe1,0x51,0x03,0x77,0xf4,0x86,0x00,0xbe,0xd3,0x8e,0x80, +0x23,0x61,0x06,0xdf,0x36,0x0c,0xfc,0x2c,0x8f,0xd2,0x9e,0x3e, +0x16,0x17,0x9d,0x60,0x20,0xb1,0xe4,0x14,0x33,0x6f,0xcf,0xe2, +0x83,0x47,0x74,0xd0,0x81,0xb7,0xba,0xda,0x0f,0x1f,0xb3,0x31, +0x3e,0xca,0x00,0xb1,0x70,0x8a,0xd9,0x30,0x75,0xcd,0x84,0x71, +0x3a,0xe4,0x11,0xe5,0xe2,0xff,0x97,0xf8,0x3f,0xb7,0x01,0xf5, +0xad,0x4b,0xa7,0x43,0xf9,0xf4,0x52,0x21,0x0b,0xdf,0xb1,0x4e, +0x81,0x7c,0x19,0xc7,0x8d,0xea,0x38,0x6e,0xd4,0x69,0xcc,0x2f, +0xe5,0x1d,0x94,0x58,0xbf,0xfe,0xf9,0xc2,0xe9,0x55,0xa2,0x50, +0x3c,0x95,0x17,0x92,0xd7,0x8a,0x42,0x41,0x14,0x2f,0x14,0xcf, +0x47,0x22,0x5b,0xf0,0x34,0xec,0xce,0x0a,0xde,0x86,0xcc,0xd6, +0x1e,0x81,0x17,0x3e,0xb6,0x08,0x96,0x1a,0x80,0xa5,0x22,0xb0, +0xd4,0x40,0x2c,0x35,0x16,0x4b,0x45,0xcc,0xc7,0x61,0x93,0xb6, +0x11,0x16,0xa5,0x0d,0xb4,0x82,0x57,0xda,0x66,0x29,0x4f,0xc7, +0x4b,0x5b,0xdb,0xac,0xe0,0x95,0x66,0x59,0xca,0xff,0x71,0x6b, +0xca,0x2d,0x4c,0x5b,0x0c,0x19,0x8b,0x29,0xaa,0x84,0x38,0xc4, +0x75,0xdd,0x0e,0x91,0xed,0xb3,0x43,0x6c,0xd7,0xe2,0x10,0xdd, +0x75,0x3b,0xc4,0xe7,0x60,0x97,0x25,0x5f,0x5d,0x85,0xaf,0xa2, +0x78,0xce,0xa5,0x71,0x68,0x3c,0xa8,0x2b,0x1b,0x0c,0x36,0x5b, +0xd2,0xbc,0x2a,0xe5,0x84,0x9a,0x0f,0x8a,0xb4,0x51,0x27,0x1a, +0xc5,0x65,0x2c,0x02,0x54,0x47,0xf1,0x42,0xe3,0x61,0xbe,0xe2, +0x43,0xd8,0x10,0x9c,0x42,0xdb,0x41,0xa2,0xef,0x2c,0x64,0x23, +0x40,0x33,0xd2,0xc4,0xe2,0x8c,0xb6,0x83,0xcd,0x4d,0xa6,0xc9, +0x3d,0x32,0x84,0x62,0xca,0xa7,0x54,0xcb,0xf6,0x8e,0x54,0x46, +0xa8,0x6b,0x5c,0x1a,0x07,0x05,0x71,0x36,0xfe,0x55,0xef,0x64, +0x29,0x42,0x07,0xa1,0x0e,0xfa,0x07,0xd5,0x7b,0x88,0xb1,0xe9, +0xd0,0x47,0x89,0x86,0xba,0xa5,0x18,0x3c,0x0b,0xc0,0xff,0x96, +0x1a,0x3a,0xa7,0x68,0x83,0xc7,0x9d,0x01,0xce,0xf0,0x96,0x03, +0xee,0xc8,0x99,0xd4,0xd4,0x23,0xc3,0x08,0x27,0xd5,0x42,0xd3, +0x7e,0xdc,0xb0,0x60,0x09,0xdc,0x60,0xb9,0x16,0xed,0xf6,0xc4, +0x73,0xd7,0xaf,0x27,0x86,0x35,0x92,0xc6,0x72,0x6e,0x24,0x5d, +0x7b,0xef,0x7c,0x36,0x9a,0x96,0xd4,0x73,0x98,0x1d,0x3d,0x64, +0xa0,0x3e,0x70,0xec,0xad,0xa7,0xe8,0x39,0xac,0xa0,0x9e,0x43, +0xc8,0xbd,0x7a,0x41,0xa1,0x51,0xbe,0x13,0xd0,0x73,0xc8,0x9c, +0x32,0xf8,0x48,0x6f,0x7d,0xad,0x01,0x4a,0xd4,0xdf,0x8b,0xb5, +0xde,0x5e,0x3b,0x75,0x28,0x6d,0x1f,0x7a,0x1f,0xfd,0x0e,0x25, +0x47,0x5e,0xd5,0x6b,0xd2,0x6c,0x83,0xf2,0x74,0xd3,0x72,0x70, +0x13,0x32,0x36,0xf1,0xc2,0xc1,0x85,0xd8,0xce,0x72,0x4d,0xaa, +0x38,0xd3,0xf8,0x07,0x74,0x5c,0x0e,0x42,0xe6,0xfc,0x82,0x0a, +0x04,0x33,0x13,0x30,0xb3,0x06,0x94,0x50,0xbd,0x59,0x39,0x1c, +0xda,0x9b,0xfc,0x70,0xd0,0xeb,0xa5,0x0c,0x88,0x23,0x11,0x22, +0x08,0x21,0x96,0x82,0x9a,0x0e,0x8a,0xca,0xae,0x45,0x17,0xf1, +0x59,0xc9,0x5d,0x70,0x3b,0x5a,0x19,0x12,0xf3,0x0d,0x75,0x31, +0x94,0x8c,0xfc,0x47,0xe2,0x19,0xea,0x5d,0x28,0xa1,0x4f,0x3f, +0xee,0x6f,0xf4,0xcb,0xd9,0x5b,0xa2,0x86,0xac,0x01,0xe2,0xfa, +0x0b,0x0c,0x54,0x5b,0x6d,0xba,0xf1,0xbb,0xce,0x16,0x90,0x5d, +0x7a,0x23,0xa6,0xf4,0xbb,0x35,0xaa,0x62,0x61,0xcd,0xb9,0x5d, +0x7b,0xd9,0x10,0x64,0x3d,0x12,0x7b,0x53,0x57,0x84,0x12,0x72, +0x91,0x26,0x38,0x3c,0x2b,0xf9,0x05,0xc4,0xdf,0x4a,0x84,0x68, +0xac,0x69,0x69,0x53,0xb2,0xa0,0x29,0x4f,0xf7,0xa7,0xbe,0x04, +0x0d,0x6a,0x3a,0x68,0x94,0x0e,0x71,0xb9,0xd0,0xd4,0xa8,0x7a, +0x65,0x82,0xeb,0xa5,0x6a,0xf0,0x77,0x94,0x83,0x20,0x9e,0x23, +0x9d,0xc9,0x74,0xc6,0x6f,0x1b,0x07,0xfa,0xf4,0x31,0x6e,0x86, +0x28,0xae,0x71,0xef,0xe1,0xe4,0x1b,0xa9,0x9b,0xdf,0x2d,0x16, +0x5a,0xbe,0x2a,0x04,0x03,0x38,0xb8,0x67,0x11,0x71,0xbd,0x01, +0xbc,0x61,0x2a,0x53,0x42,0x9e,0x41,0x53,0xe8,0x68,0x24,0x62, +0xe5,0xf2,0x8a,0xaf,0x38,0x4d,0xec,0xcd,0x48,0x3a,0xf1,0xd8, +0x37,0x1d,0x3c,0x72,0x1c,0x5e,0x95,0x14,0x17,0x3e,0xb9,0xbb, +0xb0,0x50,0x18,0x62,0xf7,0xca,0xb1,0x44,0x4e,0x60,0xdf,0x9c, +0xba,0x6c,0x7e,0x70,0x72,0x80,0x93,0xb4,0x80,0xab,0xf3,0x93, +0x7f,0x48,0x13,0x5d,0xfd,0xfc,0xe8,0xc2,0x29,0x52,0xc2,0x02, +0x46,0xd8,0x19,0x77,0x65,0xe6,0x96,0x31,0xa3,0x75,0x7d,0xc7, +0x4d,0xe9,0x39,0x70,0xc4,0xb6,0x33,0x91,0x52,0x48,0x18,0x13, +0x7c,0xe6,0x52,0x74,0x81,0xfe,0x5d,0xf6,0xc5,0x57,0xe6,0x21, +0xc7,0x1b,0x1f,0x36,0x4c,0x59,0xc7,0x84,0x6e,0x9b,0xb0,0x25, +0x45,0x97,0x9e,0x14,0x6f,0x92,0x84,0x5d,0x76,0xe7,0x33,0x58, +0x70,0xea,0xf2,0x2b,0xa9,0x4e,0xb4,0x5e,0x74,0xb7,0x9b,0x30, +0xd1,0x6e,0xb1,0xb7,0xdf,0x1d,0x0e,0xf5,0x1b,0xf8,0x65,0x82, +0xe1,0x63,0xa0,0x21,0xb5,0xbc,0x3b,0x57,0x4b,0xe6,0x80,0x1f, +0x78,0x67,0x12,0x6f,0x7c,0x8f,0x4f,0xdb,0x44,0xd9,0xcf,0xdb, +0x44,0x89,0x81,0xa8,0x02,0x40,0x45,0xb4,0xb6,0x08,0xe0,0x10, +0xca,0xa2,0x01,0x85,0x08,0xee,0xa3,0xfe,0x0b,0x37,0x3d,0x43, +0xfd,0xf7,0x04,0x1c,0x50,0x64,0xc1,0xcb,0xb2,0xe2,0x93,0x02, +0x54,0x62,0x19,0xd1,0xfc,0xd5,0x54,0x1d,0xd3,0xfc,0x85,0xe3, +0xa9,0x82,0xa1,0x0d,0xd9,0x18,0xc6,0x88,0xe0,0x94,0xa3,0x96, +0x7f,0x18,0x20,0x6e,0xca,0x60,0xc0,0xe1,0x63,0x28,0x3b,0x56, +0x09,0x65,0x97,0xc0,0xce,0xf6,0xec,0xc5,0x7f,0x8a,0xc4,0x44, +0xe3,0x21,0x2a,0xfb,0x92,0xd5,0xaf,0x15,0x6b,0xce,0xb6,0x13, +0xd9,0x98,0x71,0x22,0xff,0xc9,0x95,0x80,0x26,0x52,0x0b,0xae, +0x49,0x3f,0xbc,0x68,0x52,0x78,0x9b,0x36,0x8c,0x68,0xc3,0xff, +0x9b,0xe3,0x06,0x62,0x2d,0xf5,0x9c,0xf8,0xd6,0x68,0x90,0x3a, +0x3c,0x56,0x74,0x63,0xb0,0x48,0xbe,0x97,0xd7,0xb9,0x61,0x12, +0xd5,0x97,0x1f,0xd3,0xbc,0xe4,0x4d,0xff,0x7a,0x7e,0x05,0x74, +0x41,0x98,0xa7,0x5f,0xc0,0x90,0x4e,0x96,0x0e,0xce,0x98,0x46, +0x67,0x9a,0x1e,0x9b,0xa2,0x6a,0xf3,0x51,0x26,0x61,0x2c,0xd6, +0x7b,0xc8,0x87,0xa7,0xc1,0xbd,0xc9,0x04,0xf9,0x30,0xd5,0x30, +0x1b,0x44,0x34,0xcb,0x50,0xc7,0xb6,0xc5,0xac,0x81,0x98,0xd5, +0x16,0x87,0xaf,0xef,0xc9,0x7a,0x57,0x3e,0x85,0xdf,0x04,0x6e, +0x26,0xc4,0x53,0x43,0xfe,0xc9,0x59,0x44,0x3c,0x23,0x33,0x10, +0x0f,0xb4,0xc8,0x38,0x84,0x69,0xa3,0x2c,0x76,0x0d,0x11,0x77, +0x05,0x2a,0x96,0xc7,0xc8,0xbd,0x1c,0xbf,0xff,0xee,0x9d,0x9a, +0x5a,0xea,0xfb,0x50,0x04,0xb5,0x72,0x11,0x78,0x36,0x24,0xce, +0xfe,0xef,0x80,0xc9,0x0e,0xf9,0x22,0xf5,0xd3,0x36,0x88,0x50, +0x9f,0x4e,0x47,0x3d,0x90,0x97,0xd1,0xb8,0xed,0xe4,0x3d,0xfb, +0x5f,0xc1,0x2f,0xb5,0xd9,0xcc,0x41,0x35,0x51,0xd3,0x5a,0xb4, +0xcd,0x47,0x3d,0x36,0xad,0xa7,0x93,0x4c,0xeb,0xb1,0xff,0xc6, +0x61,0x05,0x09,0x71,0x3e,0xca,0x94,0x9a,0xde,0x0e,0x79,0x18, +0xd7,0x96,0xf2,0xa2,0x4a,0x3b,0xf1,0x71,0xa5,0xe5,0x30,0x0a, +0x21,0xf6,0xfd,0x57,0x9c,0xa3,0x04,0x87,0xfe,0x72,0xc2,0x58, +0x7e,0xab,0x48,0xdf,0x76,0x95,0x69,0x4b,0xbe,0x70,0x21,0x80, +0x17,0x66,0xb7,0x31,0xc9,0x23,0xf6,0x70,0x4a,0x8c,0x75,0x0d, +0xf4,0x16,0x95,0x76,0xc4,0xbc,0x23,0x98,0x37,0x6e,0x28,0xf5, +0x2f,0xbb,0xc0,0x04,0xaa,0x21,0x6c,0x21,0xe3,0xb1,0xac,0xc2, +0x56,0x84,0x08,0x45,0x88,0x76,0x08,0xb1,0x90,0x9c,0xfd,0x10, +0xe8,0xca,0x63,0x59,0xca,0xd7,0xbf,0x97,0xbd,0x78,0xe3,0xf3, +0xd4,0xdd,0x56,0xc5,0xb4,0xb6,0x71,0xfa,0x6f,0x50,0x56,0x1e, +0x4d,0x30,0xe0,0x3b,0xf3,0x44,0xc5,0x22,0x94,0xa2,0x3d,0x1e, +0x9b,0x26,0x40,0xc6,0x04,0x0a,0xb6,0x2f,0x0e,0xe1,0x46,0xc5, +0x21,0xa0,0x83,0x1d,0x89,0xa9,0x58,0xc5,0xd3,0x60,0xef,0x57, +0x28,0xc7,0x23,0x95,0x40,0xf5,0x91,0xff,0x95,0x29,0x3b,0x2c, +0xad,0xc6,0xf0,0xf1,0xe2,0x42,0xcb,0x81,0x18,0x31,0x5e,0x24, +0xa2,0xa5,0x4a,0x38,0x3e,0xb6,0xb5,0xd4,0xd4,0xa2,0x53,0x53, +0x67,0xc8,0x21,0x94,0x2c,0x0e,0x65,0x8b,0x1b,0x36,0x1e,0xaa, +0x90,0x3a,0x4c,0x10,0xa9,0xd1,0x93,0x07,0x2f,0x9e,0xe4,0x82, +0x5a,0x94,0x05,0x98,0x8e,0x26,0x26,0xdd,0x5e,0x4d,0x2d,0xde, +0x43,0xf2,0x09,0x1a,0x4e,0xf4,0x11,0x9a,0x98,0x68,0x52,0xae, +0x74,0xb6,0xe5,0xa0,0x0f,0x42,0x33,0xdc,0x6b,0xf3,0x98,0xd1, +0x08,0xba,0xbc,0x72,0x12,0xb1,0xbc,0x55,0xc0,0xf2,0xb0,0xcd, +0xe8,0x2c,0x7a,0x28,0x13,0x98,0xa9,0xf2,0x7c,0x92,0x0c,0x6e, +0x41,0x62,0x3f,0x8a,0xd2,0x83,0xce,0x94,0xd2,0x34,0x6b,0x23, +0x28,0x0c,0x12,0xc9,0x78,0x8a,0x2d,0x83,0x27,0x83,0x72,0x47, +0xbc,0x95,0x4b,0x62,0x14,0xe8,0x3a,0xc0,0x0a,0x27,0x42,0xd1, +0x2a,0x5d,0xf8,0xa1,0xb3,0x2b,0xff,0x19,0x8b,0x95,0x62,0x21, +0x3e,0x0a,0x66,0x2a,0xae,0x34,0x6d,0x2c,0x3a,0x28,0x08,0x5a, +0x0f,0xbb,0x7c,0xaf,0x86,0x08,0x4b,0x45,0x80,0x62,0x6f,0x01, +0xe5,0x42,0xc6,0x7f,0x78,0xaa,0x48,0x9d,0xc6,0xcf,0x3e,0x9b, +0x0e,0x36,0xaf,0xa8,0x54,0xf6,0x21,0x9b,0xc1,0x6d,0x0b,0x0f, +0xf7,0xa8,0x5d,0x8b,0xde,0x18,0x52,0x8f,0x89,0xd6,0x6f,0xa1, +0x10,0x13,0x77,0x50,0x73,0x16,0x9d,0x17,0x74,0x4c,0x28,0xe4, +0x61,0x70,0xc0,0xc4,0x71,0xb2,0xec,0x2e,0xd6,0x11,0x5d,0xc4, +0xc3,0xf2,0x71,0x64,0xa6,0x5b,0x73,0x34,0xc4,0xe0,0xfa,0xe7, +0xd3,0x33,0xea,0xa0,0x5b,0x6e,0x0b,0xcf,0xda,0x9c,0x5f,0x02, +0xcd,0xdc,0xf8,0x3a,0x62,0x3e,0xf8,0x7c,0x4c,0x39,0x07,0x2d, +0x95,0xbe,0x3f,0xf4,0x53,0xdf,0x1f,0x5c,0x79,0x76,0x4d,0x1d, +0xea,0x80,0x7f,0x04,0xeb,0x07,0x25,0xce,0x58,0xb0,0xe2,0x2d, +0x26,0x60,0x03,0x08,0x4f,0x5a,0x89,0x82,0x63,0x03,0xf0,0x53, +0x7c,0xc0,0xb2,0xf9,0x7c,0x7d,0x91,0x98,0x90,0x8d,0xd3,0x31, +0x79,0xe1,0x92,0x0f,0x7b,0x5c,0xf9,0x4a,0x82,0xb0,0x75,0x90, +0xa0,0x38,0x70,0x75,0x46,0x12,0xd1,0xa0,0x44,0xb8,0xb8,0x8c, +0xe6,0x7c,0x0b,0xd8,0xd1,0x10,0x41,0xd0,0x62,0x44,0x7c,0x4d, +0x20,0xb1,0x39,0x8f,0xad,0x30,0xd0,0xe6,0xdb,0x79,0x29,0xd8, +0xba,0xe5,0x0a,0xf2,0x61,0xc7,0xbf,0x9d,0xca,0xb3,0x47,0xf1, +0xe4,0xde,0x80,0xb3,0x68,0x10,0x64,0xe8,0xc9,0x4b,0x46,0x11, +0x9a,0x5b,0x3d,0x61,0x92,0x88,0xb4,0x2a,0x9f,0x56,0x10,0x99, +0x23,0xed,0xb2,0x42,0x39,0xd2,0xa1,0x5f,0x02,0x62,0x5b,0x5a, +0xc9,0xc4,0xcf,0xe9,0x0a,0xd9,0x6f,0xe5,0x19,0xda,0x2e,0x09, +0x3e,0x84,0x39,0x3f,0x9d,0x99,0x43,0x56,0x53,0x18,0xb4,0xea, +0x28,0xb1,0xfe,0xd8,0x8a,0xb4,0xa8,0x83,0x11,0xbc,0xc7,0x62, +0xf2,0xb5,0x9b,0x58,0xb2,0x2b,0x94,0x36,0xe7,0x17,0x83,0x6b, +0x24,0x6f,0x7b,0xd5,0x9c,0xec,0x77,0x22,0xf2,0x71,0x1c,0x2f, +0xcc,0xfb,0xab,0x83,0xfd,0xaf,0x7f,0x03,0x5b,0x0a,0xae,0x9f, +0xbe,0x7c,0x88,0xca,0x97,0x0f,0x7c,0x95,0x35,0x19,0x0a,0x52, +0x9d,0x9b,0xac,0xfb,0x53,0x54,0x92,0xbf,0x6d,0xc6,0xd3,0xea, +0xb0,0x88,0x50,0x86,0x39,0x35,0x73,0xe1,0x81,0x12,0x65,0x37, +0x8c,0x17,0xb4,0x7f,0x0b,0xad,0x5b,0x33,0x42,0xec,0x4c,0x7a, +0x78,0xd0,0x17,0x44,0x63,0x0b,0x6b,0xf1,0x91,0xdd,0xb1,0x7d, +0xd7,0xcb,0x9d,0xbd,0x2a,0x19,0x8f,0x6d,0xf4,0x0e,0x45,0xbd, +0x84,0xce,0xe9,0x0c,0xf8,0xeb,0x31,0x65,0xbc,0x0d,0x72,0x3f, +0x85,0x24,0x6e,0xb0,0x4f,0x7b,0x21,0x1e,0xc7,0x82,0x2e,0x63, +0x19,0x18,0x4d,0xaa,0xcc,0xa6,0xcd,0x70,0x1d,0xa9,0xaa,0x87, +0xad,0x70,0x41,0x96,0x3a,0xd2,0xe7,0x35,0x36,0x72,0xba,0x41, +0x99,0x42,0x28,0xdf,0x51,0x1e,0xb0,0x92,0x2f,0x40,0xdf,0x1c, +0xdb,0x10,0xb2,0x4d,0x43,0xd0,0x00,0x7a,0x53,0xce,0x0b,0x3c, +0xfa,0xb8,0x07,0x9d,0x78,0x5b,0x94,0xff,0xbc,0x72,0xa8,0x06, +0x6e,0xe3,0x79,0xe0,0xdf,0xbb,0xd1,0xb4,0x1b,0x28,0xa8,0x79, +0xe5,0xeb,0xa0,0x70,0x3c,0x9f,0x66,0xd9,0xd3,0x8e,0x37,0x89, +0xb5,0xc4,0x4b,0x9f,0xd3,0x06,0xbf,0xf7,0x73,0x46,0xa8,0xdb, +0x28,0xb9,0x79,0xe5,0x6f,0xc1,0x61,0x3c,0xbf,0xc6,0x72,0xcc, +0x5d,0x6c,0x4f,0x45,0xd1,0xe1,0xa9,0xb9,0x07,0x14,0x6e,0x2f, +0x17,0x0a,0xfe,0x16,0xe0,0x00,0x6a,0x62,0x3f,0x3b,0x6d,0xe9, +0xd1,0x8e,0xcf,0xc5,0x9f,0xfa,0xe8,0xa4,0x54,0x98,0x1f,0x82, +0x5b,0x07,0xec,0x1b,0xef,0x5d,0x9d,0x30,0x01,0xdd,0xa1,0x0a, +0xf3,0x78,0x28,0xc4,0x94,0x71,0x96,0x9f,0xdd,0x30,0x25,0xff, +0x15,0xf6,0x11,0xcb,0x86,0x76,0x78,0x9b,0x85,0xb7,0x1e,0xd1, +0x78,0x83,0xae,0x50,0x85,0x79,0x3a,0x15,0xd9,0xd6,0xbc,0xe0, +0x08,0x1a,0xcb,0x41,0x27,0xb1,0xbe,0x32,0x49,0x5b,0x61,0xce, +0x45,0x7f,0x94,0x26,0x57,0x47,0x04,0xf1,0xee,0xca,0x74,0x46, +0x12,0x4d,0xbf,0x43,0x45,0xb9,0x35,0xf5,0x10,0xc7,0x11,0x2f, +0x57,0xfe,0x2e,0xa2,0xa1,0xce,0x50,0x85,0x19,0x3c,0x32,0xb0, +0xb6,0x1f,0x2c,0x7f,0x35,0xa4,0x49,0xe8,0xef,0x54,0x98,0xe7, +0x43,0x62,0x07,0xbe,0xd0,0x92,0x52,0x39,0x31,0x51,0x00,0x4b, +0x2b,0x23,0x2f,0x80,0x47,0xae,0xba,0xc2,0x11,0xfe,0x1f,0xd0, +0x88,0x05,0xe4,0x05,0x2c,0x85,0xb2,0x02,0x52,0x86,0x6e,0xc5, +0x8b,0x02,0xab,0x0f,0xa7,0x41,0x12,0xe8,0x0c,0x5f,0x85,0x79, +0x34,0x95,0xb9,0xd6,0xd4,0xe5,0x3c,0x6d,0x89,0x1f,0x8b,0x68, +0xa9,0x55,0x5d,0x61,0x9e,0x20,0xbb,0x77,0xe0,0xe5,0x89,0xef, +0xf7,0x79,0x55,0x92,0x45,0xed,0x71,0xe5,0x75,0x6d,0x41,0x96, +0x5b,0xd3,0xf6,0xf0,0x78,0xdf,0xee,0x53,0xbb,0xdb,0x0a,0x26, +0xa3,0x39,0xfe,0x8d,0x59,0x41,0x58,0x23,0xe3,0x3d,0xdb,0x91, +0x92,0x79,0x5d,0xa1,0x3c,0x8d,0x52,0xbe,0xfb,0x7d,0x6c,0x47, +0x7c,0x7b,0xda,0xe2,0x15,0xe6,0x70,0xda,0xde,0x0a,0x1e,0xe7, +0xf7,0xe7,0x57,0xf2,0xe5,0xe2,0x3a,0x31,0x2d,0xdb,0xe1,0x6a, +0xf9,0x72,0x28,0x8c,0xbe,0x2b,0x4c,0x1d,0xcc,0x0b,0x67,0x06, +0xf2,0xc2,0x54,0x81,0x27,0x92,0xa5,0xa5,0x1b,0xbf,0x4e,0x69, +0xcf,0x7f,0xca,0xee,0x65,0x79,0x50,0x69,0x6d,0x7e,0x3a,0x1f, +0x05,0xe1,0x0a,0x41,0x2c,0xbb,0x2b,0x74,0x40,0xb8,0x30,0x84, +0xeb,0x20,0xcc,0x27,0xd1,0xe4,0x79,0x53,0x44,0x43,0x85,0xe0, +0x6a,0xf9,0xef,0xe0,0x50,0xf8,0xaf,0xb5,0x74,0x71,0x17,0x6d, +0xa1,0x2b,0xaa,0xdf,0x84,0x2a,0x5f,0x86,0x08,0x96,0xb7,0xe6, +0xdd,0xec,0x02,0x55,0xda,0x90,0x2a,0x24,0x41,0xb9,0x74,0xe9, +0x9e,0x67,0xdd,0x6a,0x0b,0x16,0x4c,0x12,0x0a,0xb4,0x50,0x1d, +0x12,0x48,0x75,0x4e,0xf3,0x31,0xba,0x30,0x1d,0x36,0x4d,0xe6, +0x28,0x28,0x8c,0x32,0x0b,0x4f,0xff,0x39,0xc6,0x30,0xea,0xc9, +0x40,0xf9,0x2f,0x7a,0xdc,0x1c,0x0a,0x39,0x9d,0xf9,0x68,0x3a, +0x88,0x87,0xfb,0x54,0xb2,0x5a,0x52,0xc9,0xb2,0x85,0x0c,0xc6, +0xa4,0x48,0x2a,0x5a,0x2d,0xf9,0x7c,0xa8,0x2e,0xc2,0x4e,0x2a, +0x5b,0x2d,0xb1,0x29,0xf0,0xbe,0x6d,0x34,0xde,0x55,0x4c,0x16, +0x17,0x99,0x17,0x61,0x7b,0xd0,0xc8,0xc2,0x2d,0xa1,0x2a,0x15, +0xae,0x96,0x8a,0x70,0xc1,0x3c,0x70,0xa8,0xad,0x14,0xaf,0x14, +0xac,0x1c,0x39,0x23,0xc7,0x01,0x96,0x00,0x5b,0xcf,0x2c,0x8c, +0x41,0xe8,0x35,0x10,0x49,0x65,0x4b,0xa9,0xbe,0x27,0xb8,0xb5, +0x44,0xd8,0x51,0x96,0x25,0xce,0x58,0x9c,0x8a,0x1a,0x6c,0x34, +0x2f,0x40,0x55,0x43,0x0f,0x7d,0x02,0x96,0xef,0xca,0xa1,0x22, +0xac,0x41,0xa5,0xae,0xa5,0x22,0x75,0xd0,0x12,0x12,0x89,0xff, +0x20,0xbe,0xe8,0x93,0xd8,0xd9,0xb0,0x6f,0x34,0x2f,0xcc,0x15, +0x9e,0x98,0x1d,0x65,0x15,0x0a,0x5d,0x0e,0x27,0xbc,0xfc,0xd7, +0x03,0xa3,0x58,0x0d,0xa5,0xce,0x8d,0xff,0x12,0xef,0x19,0x4b, +0xfc,0xe7,0x99,0xaf,0xd8,0x3b,0x96,0x6a,0x31,0x54,0x78,0xd7, +0x20,0xe3,0x3d,0x69,0x00,0x83,0x38,0xae,0x7e,0x68,0x98,0x47, +0xcb,0x89,0x97,0x2f,0xc7,0x4a,0x6d,0xa6,0x31,0x75,0x77,0xdf, +0xed,0x03,0x2a,0x3d,0x54,0x2f,0x2f,0x81,0x6a,0x06,0x79,0x35, +0x67,0x75,0xb7,0x36,0xd2,0x9a,0xe5,0x46,0x6d,0x58,0x8d,0x52, +0xb8,0x18,0x07,0x87,0x32,0xca,0x4e,0x33,0xac,0x54,0x2e,0x42, +0xd6,0x7f,0x8a,0x48,0x68,0x86,0xce,0xc4,0xe7,0xf3,0x9f,0x84, +0x3a,0x72,0x20,0xb4,0x40,0xef,0xe8,0x8e,0x9c,0x5e,0x80,0xdc, +0xda,0x8d,0xe3,0xce,0x13,0xbe,0x5f,0xb8,0xa8,0x24,0xd0,0x7e, +0x01,0xa8,0xdc,0x3b,0x3c,0xe1,0x51,0xbb,0xcf,0xfb,0x38,0x37, +0x66,0x09,0x8c,0x71,0x28,0x35,0x17,0xa0,0x25,0x3e,0xe9,0x7f, +0x16,0xcf,0x44,0x58,0x3a,0xc9,0x5a,0xd1,0x94,0x6f,0xc2,0xd3, +0x17,0x80,0xaf,0x6d,0xa4,0x67,0x7c,0x19,0xdd,0x84,0x92,0x45, +0xe5,0xa3,0x09,0x9f,0x89,0x66,0xfe,0xb7,0x66,0x65,0x1a,0xec, +0x08,0xb5,0x51,0x12,0x2d,0xd3,0x2b,0xbd,0x80,0x02,0x0b,0xa3, +0xe4,0x9d,0xa5,0x15,0x1f,0xa1,0x1e,0x9f,0x40,0x5d,0x80,0xe5, +0x05,0xd0,0x0f,0x78,0xc8,0x51,0xf2,0xa0,0x3d,0x9d,0x06,0xc3, +0xcc,0xae,0x90,0x0b,0x3b,0xdd,0xc5,0x4f,0x81,0x54,0x0a,0xb4, +0xc4,0x0c,0x51,0x2c,0x84,0x1b,0xe9,0xe2,0x90,0x70,0x5f,0x06, +0xca,0xda,0x90,0xf7,0x5c,0xbb,0xc9,0x8c,0x2f,0x67,0xda,0xc7, +0x90,0xbd,0x72,0x0b,0x4e,0xb3,0x88,0xa7,0x9f,0xce,0x4c,0x45, +0x2f,0xc0,0xed,0x70,0x91,0x50,0xb0,0x95,0xd6,0xbf,0x0a,0x4a, +0x9c,0xf8,0x45,0xca,0xf7,0x29,0x53,0xd1,0x4c,0x28,0x9c,0x89, +0x19,0xb2,0x8b,0x23,0x7c,0x63,0x09,0xec,0x68,0x2d,0x5d,0xc8, +0x92,0xf9,0x72,0x29,0x43,0xbe,0xf9,0x10,0x58,0x24,0x97,0xae, +0x65,0xb1,0x40,0x4f,0xe8,0xf6,0x6f,0xb4,0xbe,0xf2,0x16,0xf0, +0x95,0x1c,0x05,0x5f,0x21,0xae,0x9b,0xd8,0x87,0x8b,0x84,0x68, +0xac,0x64,0xe9,0xb5,0x0f,0xa6,0xa6,0x58,0x07,0x6a,0x4a,0x53, +0xd1,0x14,0x28,0x9f,0x52,0x84,0xed,0xfa,0xef,0xab,0xa8,0x03, +0xa3,0x21,0xf8,0xe3,0xe7,0x8a,0x4a,0x13,0x07,0x8d,0x2e,0xa8, +0x01,0x8c,0x1c,0xf5,0xae,0x32,0x44,0x0c,0x34,0x73,0x94,0x1f, +0xad,0xe5,0x60,0xbe,0xf5,0x11,0x73,0x96,0xd4,0x20,0xa7,0xfc, +0x60,0x65,0x1f,0xd1,0xb2,0xbb,0xa3,0xf5,0xfe,0x42,0x0e,0x11, +0xde,0x57,0x10,0xb2,0x9a,0x73,0x22,0x7c,0x05,0x6e,0x67,0x50, +0x41,0xb8,0xda,0x66,0x62,0x7e,0xa3,0x1a,0x47,0x19,0xab,0x16, +0x41,0xe1,0xa2,0xca,0x74,0x4b,0xd0,0x21,0xd4,0x39,0x37,0x6e, +0xf1,0x17,0x2d,0x21,0xed,0x30,0xff,0xd2,0x2d,0x7e,0x80,0xe5, +0x2f,0xaa,0x75,0xee,0xbe,0x45,0xc8,0x35,0xb5,0xf9,0x35,0xe5, +0x42,0xbe,0x2b,0x9d,0x0d,0xb3,0x8c,0xa3,0xbe,0x0a,0x3d,0xa3, +0x44,0x19,0x88,0xd8,0xdf,0xcb,0x85,0x68,0x57,0x3a,0x1b,0x36, +0x27,0x50,0x3c,0x27,0x9e,0x01,0x37,0xf8,0xaa,0x12,0xe9,0x42, +0x8b,0xbf,0x33,0x62,0x05,0xf7,0x0c,0x1a,0x30,0xa7,0x77,0x46, +0x7a,0x65,0x7a,0x1b,0xcb,0x95,0x86,0x88,0xf9,0x1c,0x7a,0x2c, +0x57,0xcb,0x8f,0x42,0xce,0xa8,0xca,0xf4,0x44,0xcb,0x53,0x1f, +0x84,0x7f,0x9e,0x8b,0xc9,0x5b,0x21,0x71,0x6b,0x65,0x32,0x71, +0xb2,0xcc,0x6d,0x2a,0x7e,0x8a,0x9b,0xb2,0x54,0x7c,0x37,0xab, +0x6c,0x4c,0x86,0x21,0xfd,0x55,0xcf,0xe3,0x83,0xda,0x31,0x47, +0x46,0x0f,0xdc,0xd6,0x53,0x3f,0x44,0x74,0xda,0xd6,0xf2,0x58, +0xa0,0xa1,0xa7,0x4b,0x7a,0xf8,0x79,0x13,0x33,0xee,0xc4,0x85, +0x59,0xe9,0x7a,0xd2,0x14,0xae,0x69,0xb3,0xc4,0xf3,0xc7,0x66, +0x4e,0x48,0x90,0xc8,0x0a,0x6b,0x2b,0x66,0x5e,0xe2,0x92,0x53, +0xc9,0x3a,0x68,0x4a,0x66,0x69,0x07,0x8d,0xd9,0x7e,0x30,0xca, +0x00,0x2b,0xe4,0x56,0xcc,0x86,0x88,0xd5,0x23,0x06,0xeb,0x7c, +0xc5,0x2f,0x78,0xf5,0xff,0x5d,0x25,0x9f,0xdb,0xe0,0x76,0x3b, +0xf1,0x6a,0xf9,0x5c,0x28,0x9f,0x5b,0x2e,0x64,0xb9,0xd2,0xd9, +0x30,0xcb,0xa8,0xcf,0x26,0xed,0x15,0x3a,0xcc,0xe3,0xeb,0x76, +0xcb,0x17,0x4e,0xef,0xe7,0x85,0xe2,0x07,0xbc,0x90,0x7c,0x8c, +0x17,0x0a,0xd6,0xe1,0xfd,0xa7,0x73,0xa4,0x34,0xd0,0xc7,0x46, +0xf1,0x1e,0xd1,0x86,0xd4,0xd6,0x2e,0x3d,0x2e,0x7d,0x6c,0x19, +0x2c,0x3d,0x00,0x4b,0x47,0xd8,0x8e,0xab,0x82,0x86,0xfc,0xa7, +0xd3,0xaa,0x06,0x22,0xb2,0xb1,0x88,0x2c,0xe2,0xf3,0xa1,0x54, +0x0b,0x69,0x0b,0x22,0x46,0xa5,0x09,0xf7,0x88,0x4a,0xeb,0x5d, +0x51,0x06,0x54,0x5b,0xeb,0xed,0x11,0x95,0x86,0xbb,0xc2,0x3f, +0xa2,0xee,0xce,0xd5,0xf2,0x15,0x90,0xb1,0x82,0xd6,0x90,0x10, +0xb7,0x9f,0xce,0x8e,0x3d,0xa0,0x93,0x65,0x88,0xf5,0x5a,0xdc, +0x3a,0xfa,0xf8,0x19,0xaf,0x83,0x5d,0x96,0x65,0xec,0x2a,0x7c, +0xe1,0xd3,0xa8,0x63,0xaf,0x96,0x2f,0x96,0xdd,0x6b,0x7f,0x94, +0xc6,0xcd,0xef,0xc7,0x78,0x55,0x0a,0x93,0x4d,0x3f,0x2e,0xb2, +0xa9,0x68,0x94,0xa9,0xb1,0xae,0xca,0x94,0xd9,0x5f,0xb6,0x29, +0x33,0xd4,0xd1,0xb6,0xf2,0x74,0xca,0xac,0x1e,0x65,0x8c,0x90, +0xed,0x6a,0x9b,0x32,0xcb,0xec,0x88,0x59,0x70,0x2e,0xc3,0xc6, +0x2f,0x9f,0x0c,0xa1,0x98,0x32,0x33,0xf5,0xbd,0x4f,0x47,0x2a, +0x7b,0x0b,0x9b,0xf1,0x57,0xcb,0x63,0xa1,0x2c,0xd6,0xc6,0xe4, +0xea,0x9d,0xde,0xcf,0xf9,0x3c,0x65,0xb6,0xdc,0x08,0xab,0x68, +0xd8,0x63,0xd5,0x89,0x52,0xe8,0x63,0x52,0xcb,0xd7,0x1c,0x8d, +0xa4,0x3d,0x0e,0x08,0xcd,0x8c,0xa4,0x19,0x2c,0x82,0xf6,0x46, +0xb2,0x97,0x23,0x1d,0xdc,0xc9,0xb7,0x64,0x06,0x99,0xf1,0x80, +0x7c,0x0b,0x1d,0x0c,0xab,0x8d,0x5a,0x62,0xdf,0xeb,0x01,0x38, +0x1b,0xc0,0x8e,0x03,0xe7,0x1b,0x0f,0xc0,0x5e,0xda,0x69,0xbd, +0xc6,0x56,0x06,0x51,0x5a,0x5f,0x40,0x2d,0xad,0x72,0x70,0x4b, +0x7c,0x21,0x96,0xc8,0x67,0x9c,0xf8,0x8f,0xc9,0xf9,0x8a,0x05, +0x32,0x09,0x0a,0x67,0xbf,0x10,0xb7,0xc9,0x75,0xda,0x55,0x8e, +0xb4,0xb6,0x4c,0xcc,0xb9,0x02,0x62,0x79,0xb9,0x30,0xf3,0x7f, +0x77,0x1e,0xc7,0x42,0xc2,0x7e,0xb0,0x6b,0xca,0x2b,0xb1,0x98, +0xa8,0x9d,0x69,0x2c,0xc5,0x81,0xee,0x5c,0xa9,0x50,0x10,0x41, +0x07,0x3a,0x86,0x1a,0x9b,0x4a,0xde,0x8d,0x87,0xe2,0x45,0x6a, +0x67,0xd2,0xc9,0x95,0xda,0xf9,0x95,0x81,0x9b,0x42,0x73,0x4e, +0x94,0xaa,0x21,0x73,0x80,0xb8,0xe1,0x22,0x03,0xb5,0xd6,0xde, +0x2b,0x82,0xaa,0x3a,0xdb,0xc1,0x37,0xd2,0xff,0xf2,0xe0,0x9b, +0x94,0xae,0xb9,0xa1,0xa0,0x5a,0x58,0x73,0x6e,0xb7,0x5e,0xb6, +0xfa,0x2f,0x3d,0x14,0x07,0x50,0x9b,0x56,0x31,0x7b,0x68,0x02, +0x52,0x9a,0x05,0xe2,0x9f,0xa5,0x42,0x34,0x52,0xba,0xb4,0x2d, +0x9d,0x64,0x8b,0xcd,0x1b,0x3d,0x0d,0x4a,0x8d,0x10,0x5d,0xe0, +0x90,0x65,0x86,0xe7,0xe5,0xc2,0xec,0x2c,0x25,0x12,0xf7,0x35, +0x96,0x78,0x93,0x48,0xc6,0xf3,0x37,0xae,0xe0,0x5c,0x98,0x8f, +0x21,0x9c,0x13,0x2e,0xf8,0x84,0x85,0x75,0x0a,0x19,0x12,0x7f, +0x3a,0x52,0xea,0x3d,0x90,0xe9,0x7d,0x26,0x6b,0x52,0x91,0x1e, +0xb4,0xf7,0x8a,0xc1,0x11,0x7e,0x68,0x5b,0x40,0x6a,0xac,0x34, +0xac,0xe6,0xa0,0x03,0x84,0x33,0xf7,0xad,0xb6,0x15,0xb9,0xe5, +0x37,0x69,0x64,0x70,0x65,0x9d,0xe6,0x26,0x28,0xd7,0xde,0x24, +0xde,0x68,0x9c,0xcf,0x29,0xb0,0x9e,0xf7,0x81,0x39,0x64,0x2a, +0xf1,0xee,0x0e,0xde,0xa4,0xdc,0x0c,0xe5,0x9c,0x6d,0xe5,0x6f, +0xfe,0x97,0x87,0x20,0xc8,0xb7,0x2d,0x8c,0xd6,0x06,0xfa,0x81, +0x41,0x7a,0x50,0xb1,0xad,0x83,0x4f,0xcd,0x89,0xd0,0xca,0x77, +0x1c,0x6a,0xa6,0x80,0x81,0x17,0xd6,0x10,0xcd,0x5f,0x76,0xb6, +0x49,0x2c,0x9f,0xca,0x45,0xc4,0xe6,0x2d,0x39,0x6a,0xc8,0x56, +0x26,0xb2,0xb6,0xe3,0xeb,0xcc,0xf9,0x88,0x6b,0xbb,0x32,0x8b, +0x85,0xd4,0x35,0x2d,0x80,0x35,0x05,0xe0,0x12,0xa3,0x92,0x07, +0x95,0x29,0x01,0xc8,0x9a,0xda,0x4e,0x46,0x29,0x06,0x0d,0x68, +0x6c,0x2b,0x2e,0x3d,0xc1,0xa5,0x0d,0x3d,0x1c,0x45,0x8e,0xd6, +0x82,0xa7,0x6d,0xa5,0x65,0xff,0xca,0x95,0x96,0x9e,0xac,0x06, +0xfc,0xf8,0x5f,0xc1,0x2d,0x7e,0x98,0x08,0x2b,0xc3,0x45,0x77, +0xbe,0x2c,0xfb,0x93,0x35,0xf7,0xef,0x4e,0xaf,0x9c,0x4c,0xc5, +0xe3,0xc7,0x1c,0x2d,0x68,0x11,0xfe,0xd7,0x7b,0x3c,0x04,0xe6, +0xff,0x1b,0x0d,0xe7,0xce,0x3f,0xb8,0xc7,0x3f,0xa4,0x96,0x82, +0x3b,0x0f,0x5f,0xd1,0xe3,0xe8,0xe6,0xd4,0xe6,0xe7,0x98,0x85, +0xfc,0x1e,0xbc,0xd0,0xe8,0x6c,0x85,0xa2,0x19,0x2c,0xdf,0xc7, +0x60,0x7a,0x09,0xb0,0x25,0x66,0x21,0xba,0x07,0x55,0xe3,0x3f, +0x7e,0x78,0xef,0xca,0x23,0x59,0xf1,0xe0,0xf6,0x2b,0x92,0xa5, +0xbd,0xe6,0x8c,0xf5,0x40,0x48,0x06,0x82,0x81,0x67,0xc6,0xe9, +0x61,0xe2,0x65,0xe8,0xfc,0x69,0x3a,0xc5,0x9d,0xbf,0x8b,0x8a, +0xc1,0x64,0xde,0x0a,0x39,0x7d,0xfe,0x0f,0x24,0x77,0x80,0xf1, +0x3e,0x14,0x93,0x36,0x17,0xe1,0x97,0x40,0xe2,0x92,0x61,0xe8, +0x5c,0xaa,0xe8,0x94,0x15,0x25,0x02,0x4d,0xe0,0xdc,0x5c,0xf8, +0xd1,0xac,0xfe,0x88,0x62,0xe8,0x21,0x27,0x08,0xd8,0xb1,0x6d, +0xc5,0xea,0x6d,0xd2,0xca,0x25,0x8c,0xd7,0xd8,0x11,0xa3,0xc3, +0x74,0x21,0x29,0x13,0xc1,0x99,0x9f,0x1a,0xb3,0x71,0x6f,0x92, +0xf1,0x54,0xd2,0x11,0xc3,0xf3,0xfc,0x0d,0x85,0xd0,0x58,0xf7, +0xcf,0x27,0xe9,0x21,0x6d,0xb9,0xca,0xec,0x96,0xc9,0xbc,0x8b, +0xba,0xc4,0xbb,0xcc,0x42,0x26,0xbe,0x60,0x6b,0xf8,0x31,0x45, +0xbb,0x16,0x39,0xf2,0x1a,0xf5,0xbb,0x79,0x1c,0x94,0x8f,0x43, +0xbb,0x0d,0xd3,0xeb,0xc0,0x28,0xf3,0xbf,0xa8,0xf1,0xd8,0x02, +0xf9,0x5e,0xaa,0xcd,0x36,0x5f,0x9f,0xaf,0x0e,0xe4,0x35,0x4a, +0x82,0x0b,0x16,0xa3,0x4d,0x86,0x69,0x42,0x61,0x20,0x7d,0x33, +0x6c,0x39,0x3a,0x2c,0xde,0x4b,0xfd,0xc8,0x49,0xcc,0x99,0x16, +0xf8,0x89,0x97,0x9f,0x4a,0x51,0x8e,0x7e,0x2e,0x45,0x19,0xab, +0x64,0xd1,0x41,0xdb,0xc6,0xdb,0x4f,0x99,0x5f,0xb2,0x58,0x81, +0x51,0x46,0x71,0x93,0x79,0x06,0x64,0xcc,0xa0,0x40,0x37,0x03, +0x29,0xc1,0xa1,0x8f,0x4e,0xe1,0xc8,0x78,0x1c,0x69,0x85,0xce, +0xf8,0x42,0xe5,0x74,0xda,0xca,0x64,0x8e,0x51,0xa6,0xad,0x62, +0x2a,0xdf,0x76,0x09,0xcc,0x18,0xc3,0xef,0x15,0x61,0x2d,0x3c, +0x8b,0x11,0xf1,0x5a,0x0d,0x7a,0x84,0xd3,0xe7,0xae,0x10,0xa6, +0xcc,0x56,0x0d,0xfb,0x34,0x5b,0x35,0xe4,0x8b,0xd9,0xaa,0x11, +0x8a,0x6d,0x78,0x4c,0xde,0x4f,0xb2,0x8a,0x78,0x28,0xa2,0xb6, +0xe0,0x08,0xe5,0x4b,0x00,0x26,0x59,0x3d,0xa1,0xb0,0x98,0x87, +0x96,0xd1,0x98,0x44,0xa5,0x8a,0x26,0xb5,0xa8,0xcd,0x97,0x50, +0x9f,0xf3,0x6b,0xea,0x16,0x7c,0x2a,0x6c,0xd5,0x60,0xe1,0x21, +0xd4,0xd4,0xf7,0xb7,0xd9,0x9a,0x8a,0xf3,0x91,0x20,0xda,0x8c, +0x4b,0x7f,0xdb,0xa7,0x05,0xa5,0xaf,0x26,0x88,0x0b,0xa2,0x95, +0x49,0x07,0xc5,0x9a,0xfd,0xe8,0x3b,0x4c,0xc0,0x3e,0x79,0x86, +0xba,0x0e,0xfe,0x58,0xd1,0x27,0xff,0x03,0x53,0x5b,0x86,0xd0, +0x7a,0x2a,0x91,0x52,0x97,0x22,0x41,0x3c,0x66,0xab,0x86,0xca, +0x69,0xa5,0x47,0xf1,0xc5,0x19,0x8a,0xf5,0x86,0x51,0x8f,0xc2, +0x9f,0x7e,0x93,0xe2,0xbf,0x4c,0x06,0xee,0x4b,0x8f,0xa0,0xbd, +0xe8,0x22,0xa6,0xc8,0x2b,0xc8,0x45,0x70,0x3b,0x22,0x12,0x03, +0xa5,0xd1,0xe6,0xb5,0x63,0xa2,0xb5,0x39,0x14,0x62,0xe2,0x60, +0xea,0x16,0xb5,0x57,0x56,0xe0,0x50,0x48,0xf4,0xaa,0x31,0x71, +0x0d,0x75,0x7c,0x5a,0x2b,0x41,0x21,0x97,0x9a,0x84,0x64,0xdb, +0xf7,0xd0,0x66,0xdc,0x42,0x33,0xb3,0x9a,0x1d,0xb3,0x33,0x71, +0xe6,0x25,0xbd,0xe9,0xc4,0xd9,0xd4,0x78,0xba,0x10,0x6a,0x7a, +0x1b,0xdb,0xc9,0x91,0x9c,0x90,0xec,0x17,0x18,0xd9,0xbd,0xc3, +0x70,0xdb,0x11,0xc4,0x1f,0x86,0x72,0x34,0x6c,0xdc,0xd1,0x47, +0xaa,0x73,0xf2,0x1a,0xf5,0x39,0x47,0x79,0x4d,0x21,0x4b,0x06, +0x5a,0xd4,0xf4,0xf4,0x3d,0x12,0xfa,0x41,0xcd,0xc8,0x1e,0x3f, +0x69,0x49,0x39,0x0b,0xee,0xf2,0x51,0x66,0xfd,0xc7,0x3d,0x0e, +0x77,0xcd,0x70,0xd0,0xac,0xbe,0xab,0x0c,0xb4,0x07,0xe9,0xf8, +0x16,0x68,0xed,0xc5,0x6a,0xc8,0xa0,0x02,0xcb,0xc2,0x02,0x55, +0x96,0x3c,0x46,0x2d,0x1f,0x20,0x82,0xd6,0xaa,0x61,0x61,0x35, +0xbc,0x62,0xae,0x70,0x84,0x5e,0x64,0x4d,0x81,0x75,0x8c,0x17, +0x0b,0xbb,0xac,0x55,0x98,0x25,0x1c,0xa1,0x17,0x2f,0x79,0x0c, +0xfd,0x76,0x20,0xe7,0xdc,0x56,0xdd,0x2c,0x3f,0x99,0x5f,0x94, +0x7f,0xb2,0x5c,0x7d,0xc5,0x11,0x46,0xbe,0x66,0xfd,0xe3,0x87, +0xbc,0x7a,0xa5,0x7b,0xc7,0x81,0xc3,0x99,0x3b,0x6f,0xde,0x9e, +0xf6,0x26,0x0e,0x92,0x13,0xe7,0x32,0xc4,0xc5,0x3f,0x5a,0x72, +0x86,0x91,0xb9,0x44,0xdc,0xc0,0x95,0x5d,0x3a,0x05,0x1c,0xd4, +0xd7,0xc1,0x80,0x2e,0xf0,0x2d,0xdd,0xcd,0xd9,0x05,0x15,0xf0, +0x00,0x52,0xff,0x14,0xe1,0xca,0x42,0xa4,0x79,0x44,0xe4,0x68, +0x14,0x48,0xb0,0x37,0x41,0x98,0x49,0x0d,0xf6,0xca,0x7a,0xec, +0xb0,0x9f,0xc5,0xeb,0xb9,0x4d,0xe5,0x6a,0x8f,0x73,0xad,0x67, +0xfc,0x1e,0xb3,0xff,0x71,0x28,0xd3,0x58,0xa3,0xac,0x33,0xc2, +0xec,0x18,0xaa,0x08,0x53,0x2a,0x83,0xc4,0x49,0x4f,0xdf,0x41, +0x33,0x68,0xdf,0xec,0x39,0xf9,0xa1,0xe3,0x80,0x91,0xdd,0x26, +0x1a,0x16,0xb3,0xdb,0xa0,0x47,0x72,0x1a,0xb0,0xeb,0xa0,0xed, +0xc6,0x1a,0x25,0x1c,0x71,0x9b,0xc7,0x90,0xc0,0xd8,0xb6,0x28, +0xee,0xd7,0x74,0x64,0xc2,0x6f,0xf5,0x40,0x92,0x8c,0xf6,0x2d, +0x7b,0xa6,0xbd,0x36,0xbc,0xe4,0x8a,0x52,0xae,0xbc,0x7c,0x98, +0xde,0x87,0xa8,0xa5,0x1e,0x5c,0x9d,0x80,0xbe,0xad,0x24,0xcd, +0xf2,0x9b,0xe0,0x95,0x05,0x8d,0x6f,0x3a,0xbc,0x33,0xc1,0x9c, +0xd2,0xae,0xa5,0xc2,0x9b,0x77,0x8e,0xb0,0x93,0x7d,0x9e,0x9a, +0xff,0xe0,0xe6,0xc8,0x94,0x76,0x3f,0xd3,0x20,0x5e,0xf2,0xad, +0x75,0xc7,0x4e,0xdc,0xd4,0x95,0x84,0x5c,0x6e,0x23,0x91,0x6d, +0xac,0xc9,0x1a,0xa2,0x05,0x2f,0xf0,0xe2,0x84,0x37,0x29,0x87, +0x27,0x0d,0x32,0x44,0x73,0x83,0x22,0x27,0xf6,0x93,0x48,0x5b, +0x40,0xfa,0x1a,0x43,0x6b,0x2c,0x90,0xb4,0x3f,0x6a,0xb8,0x61, +0x2a,0x37,0x7c,0xd2,0x94,0x21,0x74,0xcf,0x03,0xa4,0xe6,0xc2, +0x46,0xa3,0x43,0x91,0x09,0xd6,0x97,0xf6,0xc1,0x2a,0xe0,0x02, +0x8d,0x98,0x56,0xfe,0x08,0x24,0xb0,0xeb,0x93,0xed,0x62,0xab, +0xc4,0x14,0x7f,0x29,0xab,0x58,0x07,0x5f,0x35,0xbb,0x4f,0xbe, +0x23,0x0e,0xee,0xad,0xa9,0x55,0x91,0xc7,0x91,0xba,0xa6,0x56, +0xe0,0x24,0x11,0x27,0x19,0xfd,0x1b,0x47,0xce,0x94,0x92,0x72, +0xaf,0xe8,0xd2,0x50,0x7f,0x29,0x9c,0xf3,0x0d,0x1e,0xdc,0x5e, +0xda,0x66,0xb5,0xd7,0xba,0x85,0x5c,0x7c,0x44,0x23,0xc1,0x19, +0x90,0xa0,0x17,0xe7,0x46,0xb5,0x35,0x04,0x71,0xed,0xfb,0x0d, +0x52,0xa2,0xcb,0xc9,0x41,0xb9,0x2a,0xd0,0x63,0x83,0x78,0xf2, +0xb9,0x56,0x16,0xc7,0x98,0x5c,0xb9,0x5e,0xae,0xea,0xde,0x03, +0xd8,0xf4,0x40,0x4d,0x4f,0xd2,0x7b,0x7e,0x27,0x31,0x3b,0xcd, +0x10,0x72,0x81,0x09,0xea,0x17,0x3c,0xa5,0x8b,0xde,0x63,0x40, +0x62,0x5a,0x72,0xe2,0x6e,0xf3,0x56,0x43,0xf2,0x3a,0x06,0xbe, +0xdf,0x93,0x76,0xd9,0xa4,0xab,0xe8,0x78,0x89,0x38,0x34,0x69, +0x1f,0xd9,0x7f,0xa0,0x74,0x79,0x20,0x73,0x70,0x6f,0xea,0xb1, +0x5f,0xf5,0x85,0xc9,0x13,0x43,0x87,0x8c,0x9c,0xe0,0x1d,0x6b, +0x18,0xba,0x90,0x21,0x8e,0xd3,0xfa,0x06,0x7b,0xea,0x9a,0x3c, +0xe8,0x09,0x3a,0x89,0x0a,0xc1,0x9e,0x82,0x2b,0x77,0xa1,0x13, +0x3d,0xed,0x64,0x8f,0x72,0xd8,0x89,0x93,0xec,0xfc,0xf1,0x9c, +0x0e,0xf2,0x90,0xb8,0xb3,0xe4,0xfb,0x49,0xcd,0x86,0xf9,0x49, +0xbd,0x59,0x70,0x71,0x3c,0x75,0x7b,0x97,0x19,0xaa,0xe9,0xfe, +0x80,0x4e,0xd6,0x6a,0x9c,0x26,0x93,0xff,0x32,0xe2,0xec,0x02, +0xf4,0x22,0xb7,0xdd,0x51,0x2f,0xa3,0x77,0x34,0xce,0x2b,0x7d, +0x80,0x6d,0x8e,0x67,0xf8,0x7b,0x6c,0x5f,0x18,0x02,0xc3,0xc4, +0xad,0x3b,0x36,0x24,0xf2,0x72,0x80,0xb7,0x35,0x60,0x3d,0xcf, +0x52,0x36,0x77,0xce,0x81,0x16,0x46,0x07,0xb9,0x5e,0xa9,0x77, +0xa9,0xf0,0x04,0x44,0x5e,0x78,0x99,0xbe,0xf5,0xd8,0xf1,0x9b, +0xba,0x87,0x5d,0x53,0x89,0xe8,0xd4,0x63,0xa4,0x5f,0x98,0x74, +0x75,0x14,0x93,0x72,0xe8,0xdc,0x01,0x93,0xbe,0x22,0x71,0xfc, +0x10,0x43,0x2c,0x37,0x68,0xec,0xe4,0xee,0x12,0xd1,0x76,0x05, +0x03,0x2b,0x3c,0xf9,0x87,0x73,0x67,0x98,0xee,0x49,0xb9,0xe1, +0x6f,0xf5,0x1a,0x32,0xc6,0x08,0x47,0x8d,0xb0,0x06,0xd1,0x3b, +0x97,0xfa,0x53,0xf4,0x47,0xe9,0xda,0xad,0x1f,0x1e,0x97,0x41, +0xb5,0x67,0xbd,0x73,0x9b,0x6e,0xb2,0xc5,0x61,0xdc,0x7e,0xc5, +0x68,0xd2,0xbd,0x6d,0x53,0x4c,0xd8,0xa6,0xde,0x83,0xda,0x86, +0x4b,0xb9,0x63,0x99,0xf4,0xf8,0xe4,0xc4,0x0c,0xfd,0xed,0x73, +0xc3,0xfd,0x0d,0x13,0xb9,0xce,0xfd,0x06,0xb5,0x96,0x5a,0xfa, +0x96,0x61,0x65,0x4f,0x6f,0x0e,0xec,0x6c,0x18,0xcb,0x75,0x0c, +0x0a,0x71,0xf7,0xef,0x77,0xe4,0x46,0xb8,0xd4,0x3b,0x8c,0xe9, +0x94,0x74,0x77,0xd8,0xaf,0x7a,0xcd,0x04,0x91,0x7e,0x2c,0x5b, +0x65,0x52,0x3f,0x75,0x2c,0x64,0x61,0x93,0x6c,0xc0,0x11,0x66, +0x01,0xdd,0x62,0xbf,0x0d,0x87,0x15,0x2f,0x8e,0x6c,0xb2,0x1a, +0x98,0x25,0x28,0xf0,0x35,0x18,0xd8,0xd6,0x8e,0xfb,0xd7,0xf8, +0xaf,0x13,0xc4,0x92,0x0c,0x87,0xa7,0xa6,0x30,0x28,0x1b,0x65, +0x12,0x0a,0xa6,0x50,0x1d,0x14,0x56,0xd2,0x06,0x47,0xae,0x17, +0xf4,0xb3,0xc9,0x30,0x28,0x1b,0xf6,0xdf,0x7e,0x5f,0xfa,0x5e, +0x5e,0xd7,0x46,0x1c,0x24,0xaa,0xde,0x99,0xd4,0xef,0x1c,0xcf, +0xf2,0xcc,0xd0,0x84,0xbd,0x33,0x8f,0xea,0xaf,0xe7,0xf6,0x9e, +0x2b,0x42,0x64,0x3b,0xc5,0xa6,0x9e,0x4d,0xcf,0xe5,0xa6,0x4d, +0xa2,0xc0,0x98,0x60,0x36,0x70,0x2c,0xb4,0x20,0xb3,0x99,0x67, +0x2c,0xa9,0x0f,0x11,0x53,0x8f,0xcc,0xd8,0x52,0x79,0xce,0xf2, +0xa6,0xcd,0x09,0x89,0xe0,0x0a,0x21,0x35,0x5a,0xb0,0xa4,0x05, +0x8d,0x11,0xc1,0xc9,0x3d,0xda,0xb1,0xca,0x50,0xd1,0xf0,0x2e, +0x04,0x98,0xd4,0xfb,0x1c,0x0f,0xb3,0x67,0x0e,0xad,0x4f,0x48, +0x30,0x24,0x27,0x1f,0x7a,0x05,0x81,0xba,0x7b,0x10,0x60,0xdb, +0xf8,0xf1,0x8c,0xd4,0xe5,0x48,0xfb,0x69,0x6d,0x47,0xf4,0x97, +0xba,0x2b,0x7b,0x45,0x36,0xdb,0x82,0xda,0xde,0x74,0x2c,0x61, +0xef,0x40,0x24,0x76,0x57,0xe4,0x8a,0x89,0xcc,0xb9,0x83,0x68, +0xef,0xb1,0x84,0xc6,0xb9,0x75,0xa1,0x70,0x8f,0xc0,0x03,0x5a, +0xbf,0x54,0xdd,0x2e,0x86,0xb4,0x62,0xf5,0x6d,0xc7,0x62,0x28, +0x62,0x97,0x3e,0x66,0x7e,0x66,0xa1,0x1e,0x31,0x41,0x3d,0x30, +0xe1,0xed,0xd2,0xa6,0x0c,0x29,0x2a,0x96,0x37,0xbb,0x70,0xe4, +0x1b,0xb2,0x8d,0x1e,0x4d,0xf7,0x0d,0x6c,0x63,0xc8,0x57,0x9f, +0x5f,0xee,0x13,0xff,0xe9,0xcb,0xad,0x22,0xb3,0x95,0xe1,0x3c, +0x92,0xac,0x52,0x38,0xa0,0xc4,0x01,0xb6,0x75,0xae,0xe7,0x26, +0x58,0x66,0x52,0x3f,0x57,0x86,0xbb,0x65,0x0a,0xdd,0xd6,0x06, +0xec,0x3f,0x84,0x0e,0xce,0xe6,0xf3,0xf9,0xca,0xee,0xa8,0x1c, +0x40,0xa3,0x14,0xe8,0x93,0x6b,0x1d,0xea,0x07,0x7d,0xd8,0x4f, +0xe1,0x8a,0xab,0xff,0xf8,0xbf,0x09,0x58,0xfc,0x39,0x1e,0xaf, +0xf2,0xd9,0x95,0x7e,0x27,0xa7,0x5f,0x88,0x93,0x8a,0xc0,0xf9, +0x0e,0x38,0x17,0x55,0xd7,0x40,0x70,0x9a,0x36,0x74,0x72,0x22, +0x7c,0x6f,0xa8,0xe0,0xe0,0xfb,0x7d,0x89,0x29,0x49,0x09,0x93, +0x07,0xa0,0xeb,0xc2,0x0d,0x88,0x9a,0x3c,0x44,0x32,0x92,0x75, +0xda,0x3b,0xf0,0xf3,0x2a,0x36,0x6c,0xcf,0xe1,0xe9,0x27,0xf5, +0xf7,0x92,0xd2,0x61,0x34,0x8c,0x1e,0x92,0xde,0x76,0x54,0xe4, +0xf4,0xb0,0xa9,0x86,0xa5,0xb0,0xdc,0x9b,0x2c,0x5f,0xca,0x9e, +0x9b,0x1a,0xb9,0x73,0x94,0xbe,0xed,0x90,0x9e,0x64,0x34,0x19, +0x9d,0xd4,0xf3,0xde,0xc9,0xc3,0x3b,0xcf,0xed,0x31,0xac,0x62, +0xc1,0x79,0xa5,0x76,0x48,0xd4,0xbe,0x8b,0x06,0x58,0xcb,0x5d, +0x4c,0xd8,0x97,0x94,0xb2,0x2f,0x82,0x7c,0x2f,0x35,0xe7,0xc8, +0xf7,0x93,0x23,0x42,0x25,0x1b,0x49,0xb7,0xe4,0x46,0xb7,0xe8, +0x97,0x60,0x24,0xc9,0x5a,0x84,0x7d,0x19,0x15,0xe8,0x1d,0xe8, +0xb5,0x81,0x05,0xe1,0xfe,0x5b,0x70,0x07,0x77,0x8f,0xb7,0x44, +0x30,0xcc,0x83,0x31,0xde,0x64,0xcc,0x3c,0x96,0x08,0x1e,0xca, +0x42,0x86,0xfb,0xb5,0x40,0x30,0x6c,0x60,0xe7,0xdd,0xd2,0xb6, +0x0b,0x2e,0x78,0x6d,0xb8,0xc2,0xbd,0x4e,0x2d,0x30,0x49,0x1b, +0xac,0x8d,0xd8,0x3b,0x8e,0x72,0xa3,0x0d,0x9c,0x29,0xd5,0xc7, +0xd9,0xd0,0x8f,0x73,0x0e,0xf6,0x69,0x27,0x69,0x6e,0xd3,0x55, +0x5d,0x41,0x31,0x2a,0xb3,0x09,0x5d,0xc5,0x4e,0xa2,0x35,0x88, +0x2c,0x92,0x83,0xda,0x59,0x37,0xcb,0xcd,0xe9,0xda,0xe2,0x5e, +0x34,0x8f,0x7e,0x3a,0x8c,0x33,0xad,0x2f,0x10,0x66,0xcb,0x8b, +0x46,0xf3,0x1e,0x98,0x4d,0x4f,0x78,0xbe,0x80,0x9d,0xa1,0x4f, +0xa7,0xa1,0x36,0x3d,0x4d,0xcc,0x48,0x76,0x7e,0xa7,0x97,0x77, +0x3f,0xf6,0x8b,0xd9,0x6d,0x14,0xbf,0x03,0x3a,0xdd,0x86,0x3d, +0x68,0xc2,0x2a,0xb2,0x21,0x37,0xb1,0x1d,0x0f,0x3d,0x9c,0x1d, +0xd6,0x77,0x5a,0xfb,0xbd,0x7c,0x41,0xd2,0xee,0xd3,0x27,0xa4, +0x35,0xac,0x66,0xf9,0x2d,0x39,0x38,0x46,0xf5,0xf1,0x74,0xde, +0xea,0xee,0x57,0x1c,0xe5,0x38,0x79,0xb3,0xb7,0x35,0x98,0xe8, +0xe5,0xe0,0x8f,0x17,0x24,0xe7,0x56,0x84,0x72,0xcc,0xf6,0x27, +0xc0,0x1f,0x85,0x0b,0xd0,0x32,0x56,0x9b,0x71,0xe4,0xe8,0xf9, +0x9d,0xc8,0xd0,0xd0,0x9f,0x0f,0x46,0xdc,0xd0,0x5f,0xdb,0x77, +0xe4,0xd4,0x36,0x6a,0x52,0xcc,0xee,0x79,0x87,0x22,0xa9,0x8a, +0xae,0x55,0xd0,0xf8,0x89,0x43,0x07,0x41,0x20,0x8f,0x0f,0x78, +0x3b,0x2c,0x14,0x02,0x45,0x7a,0xa6,0x15,0x56,0x9b,0x21,0xce, +0xca,0x13,0xde,0xa0,0x39,0xe7,0xa4,0xcd,0x83,0x91,0xac,0x20, +0xf7,0x93,0x83,0xfe,0xa5,0x62,0xeb,0x66,0x16,0x21,0x26,0xd1, +0xfa,0xfb,0x29,0xec,0xf8,0x58,0xff,0xf4,0x02,0x61,0xa6,0xbc, +0x77,0x34,0x8f,0x55,0x29,0xa5,0xaa,0x22,0x53,0x82,0xa2,0x26, +0x0e,0x0a,0xad,0xac,0x29,0x6a,0x62,0xd8,0x40,0xac,0xa9,0x34, +0x7b,0x3f,0xd2,0x27,0xd9,0xe8,0x4b,0xd7,0x67,0xec,0xfe,0x44, +0x1f,0x27,0xcc,0x4c,0xa3,0x1b,0x48,0xa1,0x5f,0x2e,0xd0,0xb3, +0x84,0x5b,0x99,0x60,0x16,0x6a,0xed,0x56,0x8e,0x10,0x73,0x92, +0x27,0xae,0xd0,0x93,0xcc,0xf4,0x83,0x06,0xa8,0x3e,0xab,0x69, +0xa1,0x1f,0xe8,0xf7,0xf1,0xb1,0x39,0xb0,0x21,0x3f,0x1b,0x21, +0x9b,0x98,0x60,0x2e,0x42,0xbe,0x46,0xad,0xc8,0x9b,0x4b,0xe1, +0x6b,0x50,0x75,0x30,0xbb,0xf6,0x18,0x14,0xd1,0x73,0xb2,0x61, +0x09,0x4c,0x23,0x53,0xfc,0xc0,0x99,0xac,0x62,0x49,0xf5,0x62, +0x0f,0xf8,0x56,0xca,0xb1,0xf7,0x19,0x72,0xc6,0x68,0x38,0xc7, +0x65,0x25,0x9d,0x28,0x28,0x3c,0x33,0xaa,0x8b,0x34,0x86,0xeb, +0x34,0x74,0x98,0xb7,0x54,0x59,0x75,0x4f,0xe4,0xbd,0x09,0xbc, +0x4a,0x0b,0xb1,0x9f,0x71,0xe2,0xe7,0x44,0x50,0x9b,0xe0,0x27, +0xac,0x45,0xed,0x08,0x8b,0x90,0x9e,0x2f,0x4e,0x24,0x84,0xfa, +0x48,0x4b,0x2e,0xac,0xcf,0x87,0x9a,0x4a,0xc7,0x5f,0x66,0x56, +0x94,0x23,0x68,0x4a,0x1f,0xc0,0x37,0xa0,0xf6,0xbc,0x5f,0xcb, +0x7f,0xc0,0xb8,0xc0,0x89,0x94,0x96,0x76,0x24,0x9f,0x25,0x8e, +0x77,0xdb,0xc1,0xf7,0x52,0xae,0xbd,0x67,0xd8,0x69,0x85,0x8e, +0x73,0x27,0x8a,0x4b,0x92,0x6c,0x74,0x0c,0x1e,0xde,0x41,0x51, +0xf8,0x9e,0x39,0xe0,0x61,0x54,0xc9,0x3e,0x0f,0xd5,0x30,0x1c, +0x62,0xb4,0x10,0x3d,0x97,0x6d,0x16,0xdc,0xad,0x71,0xe7,0xa1, +0xc7,0xd2,0x26,0x4b,0xbd,0x86,0x33,0xdd,0x0e,0x65,0xf7,0x7f, +0xad,0x07,0xd7,0x32,0x2a,0xf7,0x6d,0x5a,0xbd,0x23,0xf5,0x88, +0x5d,0xcf,0x10,0xdf,0xf1,0x86,0xcc,0x08,0xe6,0xca,0xde,0xd3, +0x87,0xf2,0xf4,0xcf,0x2f,0x77,0x6b,0x66,0x58,0x40,0xc3,0xfe, +0xc0,0x78,0x31,0x96,0x36,0xd3,0xb3,0x62,0xe8,0x5c,0x2c,0x24, +0x81,0x03,0x36,0xd1,0x44,0x98,0x88,0x2d,0x79,0x07,0xe6,0x3e, +0xe3,0x84,0xa4,0x3f,0x78,0x04,0xa1,0x87,0x46,0x7f,0x84,0xb9, +0x8c,0x30,0x72,0x4f,0x6f,0x56,0x88,0xfd,0x30,0xdd,0x06,0x73, +0xf9,0x0f,0xba,0x70,0xf1,0x87,0x5b,0xd0,0x3d,0x57,0x55,0x5e, +0x8a,0xf2,0xaf,0xce,0x75,0x4c,0x63,0xcf,0x24,0xec,0x49,0xda, +0x6b,0xc0,0xd7,0xa6,0x9b,0xae,0xdb,0xf0,0x37,0x06,0x3c,0x80, +0x09,0xe2,0xe0,0xd6,0x35,0x50,0x35,0x3f,0x85,0x01,0x5a,0xe2, +0xc4,0x42,0x63,0x5e,0x19,0x14,0x43,0xbf,0x28,0x69,0x76,0x2c, +0x67,0xdf,0xd1,0x8f,0x98,0x8e,0x58,0xe6,0xfa,0x80,0x12,0x2c, +0x53,0xe5,0x35,0xd8,0xa3,0xed,0xc3,0x13,0x1c,0xa9,0x3f,0x87, +0xfa,0x3e,0xcd,0x97,0x9a,0xe1,0x70,0xb9,0xba,0xd4,0x11,0xd6, +0xf7,0x41,0xb3,0x1f,0x46,0x40,0x56,0x81,0x55,0xfa,0x89,0x87, +0x04,0xf0,0xec,0xcb,0x97,0x8a,0x95,0x7b,0x78,0x6b,0x20,0xbf, +0x43,0xc5,0x02,0xab,0x9e,0xa5,0xc1,0xa1,0xb7,0x14,0xdf,0xb9, +0x0f,0x2d,0xcd,0xeb,0x8a,0xd5,0x5b,0x48,0x03,0x6d,0x31,0x34, +0x90,0x1b,0x91,0x06,0xc5,0x30,0xa5,0xb5,0x85,0x21,0x25,0x64, +0x18,0x4b,0x46,0x44,0x12,0xa1,0x67,0x2b,0xa9,0x27,0x2b,0x8b, +0x8e,0x64,0x1e,0x7b,0xee,0xce,0x61,0xa8,0x0e,0x63,0x74,0x68, +0x4c,0xb5,0xe4,0x34,0x44,0x3b,0x0d,0x1a,0xd0,0x39,0x6b,0xd5, +0xce,0x62,0xb9,0x51,0xb1,0x7a,0xe7,0xdf,0x70,0x74,0x61,0x49, +0x13,0x0b,0xc3,0x10,0x16,0xaf,0x1f,0x18,0xa6,0x0b,0x0b,0xcd, +0x1d,0xef,0x80,0x29,0x19,0xdf,0x66,0x1d,0x7b,0x8e,0x84,0xde, +0x21,0x26,0xe6,0x6f,0x41,0xc7,0xf3,0x6f,0xd3,0x93,0x1d,0x61, +0xd3,0x7d,0xf5,0x2e,0xb4,0x47,0x6f,0xc3,0xf6,0x02,0x58,0x74, +0xdb,0x41,0x6e,0xf5,0xc8,0xa7,0x1c,0x4d,0x80,0xb6,0xa2,0xf0, +0x72,0x9f,0x88,0x37,0x55,0x78,0xcd,0xf0,0x8f,0x91,0xb5,0x41, +0x10,0xf1,0x21,0x87,0xfa,0x7a,0x91,0x50,0x16,0x49,0xbd,0xe5, +0xff,0xc9,0xa9,0x8e,0x74,0x61,0x40,0x8e,0x76,0xba,0x18,0xcb, +0x9b,0xd0,0x39,0x76,0xbc,0x2e,0xf6,0x8f,0x3f,0x34,0xf5,0x14, +0x3d,0xe4,0xf2,0xb0,0xc8,0x7e,0x26,0xe5,0xbe,0x59,0x7d,0xdf, +0xb1,0xf2,0x6c,0xf0,0x20,0x92,0xcf,0x3c,0x67,0x49,0x3b,0x38, +0x10,0x79,0x71,0xea,0xee,0xca,0x43,0xdc,0xf7,0x6c,0xdf,0x97, +0x84,0xc6,0xe0,0xc1,0x1a,0x8d,0x58,0xe2,0xfb,0xf1,0x10,0x77, +0x85,0xb1,0xd0,0xe2,0x3e,0x84,0x98,0xd5,0x72,0x37,0xfa,0xf1, +0x88,0xfc,0x45,0xfa,0xb1,0xe4,0x50,0x54,0xa3,0x80,0x9e,0x52, +0x57,0x9f,0xc3,0x6c,0x4a,0xe2,0xa6,0x03,0x07,0x0c,0x19,0x19, +0xc7,0x40,0x05,0x67,0x74,0xe0,0x00,0x21,0x9c,0xc6,0x9b,0x7e, +0x44,0x55,0xd3,0x6f,0xd6,0x25,0x90,0x60,0x3b,0x80,0xec,0x77, +0x52,0x51,0x42,0x12,0x98,0x72,0xd6,0x28,0x6a,0x5e,0x89,0x50, +0x55,0xfc,0x32,0x72,0xb6,0xad,0x39,0x1f,0x98,0x61,0xa7,0x59, +0xfd,0x40,0x71,0x57,0x76,0xda,0xdc,0x15,0x5f,0x56,0xf3,0x52, +0x7c,0x22,0x02,0xc7,0x37,0xe1,0x55,0x49,0xf2,0x56,0xf5,0x7f, +0x78,0x98,0xa8,0x26,0x23,0x5f,0xee,0x9c,0xaf,0xda,0x57,0x06, +0x2e,0x66,0x70,0x29,0xab,0xee,0x0e,0x1b,0x27,0x68,0xcd,0x15, +0xe8,0x27,0x6d,0xc8,0x85,0xaa,0xd0,0x44,0x07,0x4d,0xfc,0xa0, +0x2a,0x71,0xdf,0x20,0x55,0xb4,0x41,0x8d,0xe3,0x3e,0xcf,0x8f, +0x54,0x25,0x4d,0x74,0xa4,0x09,0xdd,0x09,0xea,0x3e,0x4f,0x5a, +0x99,0xaf,0xad,0xbd,0x61,0x98,0xf1,0x99,0xee,0x3e,0xf7,0xec, +0x8c,0xf1,0xcd,0x06,0xc9,0x64,0xed,0xac,0x95,0x3b,0x73,0x6f, +0xe6,0x9d,0xf1,0x6d,0xa8,0xf3,0xe0,0x1a,0x0e,0xf3,0xad,0x3d, +0x4f,0xd2,0x9c,0xcb,0x97,0x87,0xe7,0x57,0xc4,0x38,0x28,0xf5, +0x78,0x98,0xa0,0x6e,0x99,0xf0,0x1e,0x36,0x0e,0x51,0x6a,0x6a, +0xb0,0xfe,0xfe,0x3b,0xb4,0x4e,0x20,0xd0,0xe3,0x1d,0x69,0xb0, +0xde,0x56,0x4f,0x83,0xf9,0x1e,0x4e,0x24,0x50,0x47,0x02,0xef, +0x3b,0x41,0x83,0xf9,0x92,0xf0,0x0e,0xeb,0xa9,0xb7,0x3e,0x34, +0x0b,0x78,0xac,0x08,0xf8,0x94,0xac,0x17,0xeb,0xb1,0xa6,0xe1, +0x5a,0x79,0x38,0xf7,0x62,0x7e,0x4a,0x0f,0xc2,0x63,0x55,0x84, +0x0f,0xed,0x51,0x6f,0xbe,0xa4,0xc9,0x43,0x56,0xd0,0xd9,0x80, +0xd5,0xe6,0x9f,0x8a,0x85,0x27,0xf2,0x22,0x45,0x4c,0xa7,0xb0, +0xc2,0x4b,0x2f,0xfa,0x69,0x86,0x21,0xab,0x95,0x2f,0x34,0x68, +0x26,0xca,0xad,0x94,0xd6,0x5f,0x53,0x20,0x7f,0x1d,0xa3,0x4a, +0x37,0xc3,0x09,0x6c,0x41,0x2f,0xc7,0xeb,0xfc,0xac,0x61,0x23, +0x16,0xf4,0xd4,0x3b,0xfd,0xcb,0xb9,0x80,0xd0,0xf6,0x6a,0xca, +0xfa,0x2d,0xc7,0xa9,0x1a,0x42,0x56,0xa7,0xdc,0x07,0x2d,0xfd, +0xad,0xee,0x9e,0xe2,0x28,0xaf,0xb0,0x04,0x7a,0x20,0x62,0xad, +0x85,0xf9,0x78,0xa1,0x30,0x0e,0x08,0xc3,0xdc,0x87,0xfe,0x85, +0x3f,0xc8,0xdb,0x91,0x86,0x42,0x98,0x82,0x04,0xa0,0xe2,0xa0, +0x30,0x8c,0x0d,0x54,0xb9,0x04,0xca,0x91,0x2c,0x76,0x68,0x7a, +0xdc,0xe0,0xbc,0x72,0xf4,0x27,0x1c,0x61,0x1c,0x76,0xe9,0x1f, +0x20,0x91,0x2c,0xf5,0x81,0x96,0xac,0xd9,0x7a,0x41,0x8b,0xbd, +0x5a,0xdb,0x97,0x7e,0x18,0x4a,0x28,0x80,0xc4,0x18,0x5a,0xb9, +0x6f,0x59,0xe1,0x7d,0x74,0x06,0x69,0x4c,0xf5,0xca,0xc4,0xc7, +0x66,0x38,0x54,0xae,0x7e,0xec,0x08,0xff,0x6f,0x73,0xef,0x01, +0x1f,0xb5,0xd1,0x34,0x0e,0xab,0xdc,0x49,0x46,0x32,0x87,0xf1, +0x71,0x0e,0xd8,0xd6,0x9d,0xa9,0xa1,0x77,0x6c,0x3a,0xb6,0x01, +0x1b,0x4c,0xef,0x60,0xaa,0x31,0xbd,0x77,0x53,0x4c,0x09,0x3d, +0xc0,0x43,0x20,0x21,0xd4,0x60,0x0c,0xa1,0x87,0x16,0x4a,0x80, +0x18,0x83,0x09,0xcd,0xd4,0xa3,0x98,0x5e,0x4c,0x4b,0x48,0x08, +0x29,0x10,0x92,0xd1,0xb1,0x97,0xe4,0x9b,0x5d,0xc9,0xe6,0x20, +0xe4,0x79,0xc8,0xf3,0xbe,0xff,0xf7,0xf7,0x59,0x9e,0x91,0xb4, +0x3b,0xdb,0x66,0x67,0x77,0x67,0xf6,0x56,0xbb,0x1f,0x61,0xe8, +0x7a,0xb0,0x25,0x82,0x75,0x06,0x75,0xda,0x28,0xbb,0x14,0xbd, +0x25,0xc6,0xbb,0x09,0xbb,0xdd,0xc8,0x6c,0x70,0xa0,0xd6,0x95, +0x1c,0x01,0x0e,0x12,0x49,0x82,0xda,0xd5,0xad,0xd7,0xdf,0x75, +0x69,0x80,0xf5,0xe4,0xda,0xad,0x07,0xef,0x87,0x80,0xf5,0x30, +0x9d,0xc1,0x9e,0x40,0x26,0x44,0xc3,0x84,0x11,0x32,0x09,0x6b, +0x57,0x91,0x58,0xab,0xf6,0x3f,0x78,0x72,0x84,0xb3,0xfe,0x00, +0x6b,0xbd,0xad,0x87,0xeb,0x42,0x10,0xdd,0x9f,0x38,0x91,0xfd, +0x6e,0x3a,0x37,0x0b,0x7b,0xce,0xb4,0xdb,0xd7,0xef,0x43,0xf4, +0x7d,0xfb,0x5e,0x3d,0x10,0x63,0x0f,0x48,0xcf,0x84,0x0c,0xc8, +0xe8,0x94,0x49,0x02,0x48,0xbe,0xae,0x4d,0xc9,0xc7,0x33,0x5d, +0x75,0x68,0x7f,0x9a,0x89,0x65,0xbc,0x0d,0x17,0xae,0x63,0x7f, +0x4a,0x56,0x2d,0xd8,0xd7,0x0c,0x02,0x42,0xb2,0x2c,0x2d,0x87, +0x6e,0x80,0x28,0x17,0x44,0xcb,0x10,0xb5,0x61,0xc3,0xf1,0xe3, +0x1b,0x86,0x92,0x28,0x27,0x89,0x96,0x49,0xd4,0xd0,0xa1,0x2d, +0x9d,0xb4,0x54,0x49,0xd0,0x5f,0xdb,0x19,0x74,0x4a,0xfa,0x7c, +0xc3,0x27,0x87,0xd7,0xb9,0x40,0x80,0x71,0x56,0x6c,0x3b,0x71, +0x1a,0x11,0x4e,0x34,0x00,0xdb,0x0c,0xd7,0x4c,0x79,0xe0,0x8c, +0xb1,0x13,0x92,0x12,0x6a,0x90,0x7a,0x05,0x9b,0x48,0x7a,0x08, +0x1c,0x72,0x90,0x2a,0x52,0xe3,0x84,0x6d,0x57,0x5c,0x5b,0xe4, +0x2b,0x7b,0xb6,0x9d,0x75,0x02,0xfb,0x10,0x1a,0xb3,0xd4,0x5f, +0x3b,0x16,0xf4,0x48,0x82,0x62,0x90,0x61,0x85,0x50,0x1a,0x05, +0x77,0xbc,0x01,0x58,0xa7,0xbb,0x66,0x98,0x51,0xf8,0x7d,0x0f, +0x05,0x1c,0xaf,0x86,0x24,0x0b,0xa9,0x51,0xfd,0x76,0x5f,0x27, +0x17,0xa3,0x5d,0xd2,0xd9,0xec,0xfe,0x70,0xbf,0xc3,0xdf,0x7c, +0x55,0xbc,0x4e,0xdf,0x11,0xa1,0xbd,0xe5,0x97,0x97,0xc5,0x95, +0x1f,0xe9,0x87,0x74,0xc3,0xe1,0xfe,0x10,0xf6,0x41,0x67,0x84, +0x76,0xdd,0xf8,0x2a,0x9b,0x2d,0x31,0x0d,0xb9,0x79,0x82,0x9d, +0x67,0x1c,0xc2,0xd4,0xdc,0x2f,0xa8,0xe9,0x89,0xdd,0xdb,0x41, +0xba,0x7c,0x29,0xd7,0x26,0x85,0xc1,0x59,0xd4,0x2c,0x85,0x5e, +0xd1,0x24,0x8c,0xa4,0x1b,0x26,0x41,0x08,0x35,0x1a,0x21,0x04, +0xda,0x2a,0x46,0x20,0xca,0x98,0x91,0x27,0x21,0x02,0x03,0x94, +0xc3,0xd1,0xbc,0x1c,0x6a,0xe3,0x23,0xa1,0xdd,0x49,0xd2,0x0e, +0x22,0x18,0x01,0x99,0xc0,0x16,0x35,0xd2,0xa5,0xea,0xd0,0xff, +0x12,0xa3,0x13,0x8c,0x83,0xba,0xaf,0x42,0x5f,0x0d,0x54,0x19, +0x82,0x5a,0x64,0x10,0x31,0xba,0xfb,0x98,0x9e,0x7d,0x9c,0x33, +0x61,0x34,0xcc,0x71,0x93,0x1b,0x74,0xd5,0x7a,0x69,0x69,0xcf, +0x91,0xd4,0x1b,0xb7,0xb6,0x0e,0xaa,0xe4,0x2c,0x2d,0xb7,0x98, +0xd4,0x23,0x69,0xa4,0x13,0xfb,0xc8,0xbf,0xfb,0x86,0xea,0x6f, +0xbe,0xcf,0x3a,0x47,0x3f,0x26,0x9a,0x00,0xf7,0x47,0xfb,0x7c, +0x03,0x86,0xfd,0x77,0xce,0xe0,0x9f,0x8d,0x63,0xff,0xcb,0x23, +0xa3,0x9b,0x6a,0x4b,0x61,0xd4,0x39,0x32,0xea,0xa3,0x37,0x9d, +0xbf,0xfb,0xca,0x69,0xd2,0xd4,0xda,0xb5,0x0d,0xd7,0xe6,0x5c, +0x9e,0x03,0x92,0xfd,0xe1,0x1c,0xc5,0x1e,0xdc,0x46,0x77,0x84, +0x69,0xd3,0x28,0xc7,0xa1,0x10,0xdc,0x27,0x3d,0x2e,0x33,0xe7, +0x82,0x3b,0xe0,0x8f,0x08,0x0d,0x47,0xf5,0x1a,0x67,0x61,0x30, +0x8e,0x51,0x1f,0x5d,0x86,0xf8,0x0b,0xa2,0xfe,0xa9,0xa1,0xfb, +0xb5,0x93,0xfa,0x40,0x88,0xcf,0x09,0x97,0xcb,0x56,0x2e,0xde, +0x82,0x6a,0x42,0x14,0x19,0xbc,0x48,0x21,0x13,0xf7,0x28,0xfb, +0x99,0xd5,0xd1,0xf2,0x12,0xb3,0xaa,0x37,0xe1,0x00,0x75,0x06, +0xc6,0x5a,0x1f,0x10,0x54,0x17,0xc6,0x3e,0x90,0x4e,0x93,0xb1, +0x56,0x6a,0x64,0xc7,0x4f,0xf9,0x7c,0x9c,0x11,0xc1,0x7d,0x68, +0x61,0x3d,0xeb,0x9d,0xd8,0x58,0x7e,0x40,0x5a,0x58,0x67,0xc9, +0x43,0x67,0x8d,0x1f,0x3b,0xa5,0xb7,0x1f,0x04,0xde,0x73,0x44, +0x41,0x55,0xeb,0x42,0xb8,0x3a,0x43,0x8e,0x22,0x55,0xad,0xb9, +0x46,0x38,0xb2,0x0c,0x42,0x8a,0x28,0x83,0xa8,0x25,0x7e,0x8f, +0x5a,0xe2,0xf7,0xbf,0x53,0xf0,0x21,0x5c,0x33,0xed,0x69,0x7b, +0x68,0x55,0x8f,0x12,0xa6,0xbd,0x77,0xce,0xb4,0xd9,0x61,0x56, +0xd6,0x03,0x4a,0xfb,0x1c,0x66,0xb1,0x39,0x83,0x20,0x09,0xf2, +0x7c,0x7c,0xee,0xc4,0xd7,0xc1,0x67,0xfa,0xec,0x8b,0xf9,0xd8, +0x49,0xe7,0x47,0x30,0x82,0xe7,0x18,0xc1,0xce,0xd6,0x47,0xfb, +0xdf,0x9b,0x5e,0x08,0x0d,0xf2,0x8b,0xb0,0xcf,0x0d,0x49,0x17, +0x78,0xbd,0x12,0x72,0x7a,0x33,0xb5,0xc6,0x0b,0x7c,0x4b,0x37, +0x59,0x28,0x54,0xe1,0x2a,0x29,0x44,0x7f,0x5e,0xe8,0x00,0xc3, +0xac,0x59,0x5e,0xa1,0x21,0xf4,0x96,0x2f,0x2c,0xb0,0xce,0x94, +0x49,0x77,0x2c,0x57,0xa3,0x27,0xf2,0x83,0x03,0x9d,0xa2,0x5c, +0xbd,0xe4,0xe8,0x0e,0x6d,0xaa,0xc7,0x34,0xdf,0x74,0x78,0xb8, +0xb3,0x79,0x17,0x6b,0xc3,0xdd,0x17,0x7b,0x3f,0x0f,0xb1,0x41, +0x6d,0xba,0x8a,0xb8,0x91,0xdb,0xdb,0xf4,0x00,0x35,0xa4,0x9f, +0xfe,0x8a,0x86,0xf4,0x90,0x22,0xca,0x98,0x9b,0xf6,0x8b,0x23, +0xe9,0x12,0x3d,0xee,0x69,0x98,0x36,0x84,0x2d,0x6c,0x7b,0x7c, +0xf3,0x23,0xa8,0x9c,0x9d,0x63,0x60,0xb7,0x3f,0x5f,0x54,0x7b, +0x75,0x41,0xe8,0x10,0xf6,0xa9,0xcf,0xe3,0x9b,0x63,0x61,0xcb, +0x14,0x93,0x2a,0x13,0xf2,0x56,0x40,0xcb,0x9a,0xae,0xc6,0xfb, +0xed,0xe6,0x69,0x6c,0x21,0xdf,0xbe,0xc9,0xc0,0xb6,0x17,0x80, +0xaf,0x68,0x4b,0x41,0x13,0xfc,0xc7,0x9b,0xb0,0x3d,0x4b,0xd4, +0x7b,0xf6,0x51,0x9a,0x30,0x3f,0x2a,0xba,0xc9,0x20,0x48,0x3f, +0x92,0xc8,0xd5,0xbd,0x56,0x8f,0xdf,0x34,0xab,0x90,0x0d,0xa9, +0xee,0xdf,0x3c,0x7c,0x52,0x84,0xe1,0x20,0x3b,0x4e,0x42,0x9e, +0x5d,0xd2,0x37,0xa4,0xb6,0xb5,0xf3,0xba,0xb5,0x13,0x58,0x94, +0x52,0x6d,0x28,0x31,0x6e,0xeb,0xb8,0x25,0xa6,0x39,0xbe,0x7c, +0xf1,0xea,0xed,0xe0,0x0f,0x1d,0x0a,0x56,0x97,0x48,0x21,0xb4, +0x9b,0x13,0x41,0x69,0x46,0x94,0x76,0x39,0x51,0x1f,0x66,0xea, +0x7b,0x75,0x37,0x94,0x64,0xea,0x3b,0xd5,0xdd,0xd1,0xf5,0x7b, +0x29,0x1b,0xab,0xb6,0xcd,0xc6,0x9c,0x28,0x23,0xa1,0xe8,0xb8, +0xad,0x63,0x96,0x9b,0x51,0xa6,0x2c,0x5b,0xb5,0x15,0x35,0xf6, +0xf6,0x34,0x4a,0x07,0x46,0x59,0x06,0x06,0x19,0x7a,0x3e,0x66, +0xed,0xf8,0xc9,0x37,0xce,0x22,0x7c,0x04,0xa5,0x4f,0x92,0xd2, +0x90,0xaf,0x16,0xc9,0xd7,0xa4,0xd9,0x69,0x6a,0x30,0x41,0xa7, +0xb3,0x90,0xf7,0x2c,0xaa,0xe8,0x97,0x80,0xbb,0x0c,0x45,0x6e, +0x88,0xff,0x0a,0x5a,0x2e,0x6d,0xdb,0x4c,0xa7,0x05,0xbe,0xf8, +0xe2,0xb3,0xa7,0x10,0x1f,0x9c,0x05,0x9c,0xb7,0x3d,0x14,0x94, +0x9f,0x1f,0xcb,0xfc,0xe5,0x59,0xab,0xcc,0x22,0xae,0x56,0x68, +0x4f,0x7c,0x48,0x34,0x89,0x34,0x1a,0x5d,0xb3,0x77,0x07,0x67, +0xbc,0x04,0x7f,0x06,0x41,0xa7,0xfd,0xf2,0xc9,0xad,0x23,0xda, +0xbb,0x7a,0xca,0xed,0xfb,0x8f,0x68,0xe6,0xa4,0xdc,0xa1,0x96, +0x20,0xed,0x56,0xb2,0x99,0x29,0x3f,0x83,0x24,0x3f,0x82,0x2e, +0x1a,0xb5,0xe5,0x67,0x30,0x5b,0x1e,0xd3,0xae,0x75,0xb6,0xef, +0x59,0x34,0x10,0xa8,0x21,0x14,0x41,0x13,0xb7,0xdf,0x39,0x8c, +0x4a,0xe1,0x44,0x88,0x20,0x13,0xa1,0xa0,0x44,0x13,0x74,0xd9, +0x0f,0xd2,0x34,0x9d,0x98,0x26,0x2a,0xd5,0x77,0xc8,0x60,0x12, +0x81,0x4d,0x49,0x86,0xd3,0xde,0xf6,0x0e,0xfb,0xc1,0xbf,0xa4, +0x6a,0x4c,0x22,0x20,0x0f,0xd1,0x0e,0x69,0x7c,0x53,0x3c,0xcc, +0x52,0x6e,0x4c,0x27,0x11,0xda,0x42,0x63,0x37,0x59,0x86,0x89, +0x37,0x66,0x89,0xff,0xcd,0x67,0x2d,0xd8,0x88,0xca,0x9c,0x98, +0x74,0x02,0x8a,0x9d,0x37,0xbe,0x38,0xb0,0x1f,0xd8,0xa0,0x2d, +0x92,0x53,0x52,0x53,0x16,0x7e,0x1a,0xb2,0xf6,0xd3,0x69,0x13, +0x37,0xb8,0xec,0xb7,0x26,0x7c,0xb6,0x76,0xea,0xd6,0x90,0x4f, +0x37,0x2d,0x5e,0xb2,0xc4,0xf5,0x5e,0x57,0x4d,0x2f,0x61,0xa1, +0x9f,0xd7,0x58,0x5d,0x63,0xc7,0x8c,0x9d,0x31,0x32,0x64,0xc4, +0xc8,0x8f,0x96,0x0d,0x75,0xd9,0x0f,0xac,0x18,0x38,0x62,0x51, +0xff,0x90,0xd1,0x03,0xa7,0x4c,0x9e,0xec,0x02,0xe9,0x44,0xc6, +0x43,0xc3,0x38,0xc1,0x3a,0x3e,0xbf,0x4c,0xdb,0xa0,0x2d,0x84, +0x83,0x33,0x72,0xc3,0x8a,0x2e,0x72,0x50,0x02,0x91,0x11,0x15, +0x79,0x85,0x6f,0x98,0xed,0x19,0xde,0xb6,0x94,0x6f,0xde,0xe2, +0xac,0xaf,0x4d,0xba,0x04,0xa5,0xdc,0xbc,0xfb,0x3a,0x38,0xae, +0x83,0x76,0x5d,0xd4,0x65,0xda,0xdb,0x96,0x90,0x81,0x1f,0x9c, +0x59,0x83,0xce,0x4a,0x24,0x63,0x67,0xbb,0x07,0xf5,0xdb,0xa5, +0xd7,0x31,0xa8,0xc3,0xdb,0xf6,0x3a,0x94,0x95,0xd2,0xe6,0x6f, +0x5a,0xbf,0x3b,0xe4,0xcb,0x15,0x43,0xaa,0xb8,0x88,0x2c,0xb7, +0x98,0x48,0xfb,0xdc,0x70,0xc9,0x76,0x4b,0xa3,0x1d,0xff,0x52, +0xd6,0xf1,0x2f,0xa5,0x1d,0x7f,0xee,0xa4,0x08,0x75,0xaf,0x4a, +0x19,0xf8,0x2f,0x6c,0x02,0x73,0xfb,0x28,0x91,0xd4,0x90,0x6f, +0x4b,0x1a,0xeb,0x01,0xe0,0xef,0x26,0x59,0xb1,0xe0,0xef,0x6d, +0x0b,0xdf,0x4b,0xb6,0x1a,0xec,0xbb,0x7d,0xba,0x64,0x15,0xb5, +0x91,0xb6,0x1a,0x39,0x41,0x5b,0x59,0xa6,0x52,0x43,0xa1,0x8b, +0xaf,0xa9,0xb3,0x05,0xce,0xa1,0x73,0x30,0x8c,0x8b,0xd6,0x6a, +0xd0,0x4e,0x94,0xba,0x55,0x86,0xfb,0xe8,0x56,0xeb,0x46,0x84, +0x46,0xf7,0x61,0xed,0x01,0x3d,0x34,0xe8,0x02,0x82,0x31,0x73, +0xe2,0x3c,0xa9,0x2f,0xa5,0x0e,0x4e,0x08,0x39,0x49,0x42,0xd0, +0x95,0x84,0x34,0x83,0x10,0xda,0x34,0xe8,0xcc,0x82,0x3e,0x07, +0xb3,0x33,0xa7,0x8f,0x12,0x2e,0x91,0x62,0xd8,0xc3,0xb4,0x82, +0x85,0xd6,0x0a,0x52,0x5d,0xc2,0xb7,0xa8,0x66,0x9d,0x25,0x35, +0xbb,0x57,0x07,0x78,0x6b,0x19,0x89,0xc9,0x66,0x5b,0xb2,0xdc, +0x8a,0x03,0x7a,0x33,0xed,0x98,0x94,0x3b,0x77,0x40,0x07,0xd7, +0x9b,0xe6,0x62,0xf3,0xef,0xfe,0x6e,0x06,0x81,0x2d,0x3e,0xcf, +0x1f,0x86,0x7d,0xfb,0x6f,0x6c,0xbe,0xe1,0x0a,0x8e,0x69,0x50, +0x5f,0xa3,0x74,0x6d,0xc7,0xd4,0xfa,0x54,0xb9,0xfc,0x05,0xa3, +0x23,0xef,0x3d,0x32,0x22,0xce,0x82,0x54,0x3a,0x29,0xf1,0xdd, +0xc9,0xef,0x6e,0x16,0x08,0x7d,0x19,0x69,0xdf,0x5e,0x49,0x6d, +0x67,0x38,0xa1,0x58,0x33,0x52,0x4c,0x6e,0x3e,0x7f,0xc0,0xa6, +0x13,0xc1,0x50,0xbf,0x16,0x89,0x93,0x0b,0x1f,0x6f,0x0f,0xb2, +0xb3,0xda,0xc9,0x47,0xf2,0x96,0x8f,0x3e,0x4b,0xf9,0x74,0x83, +0xdf,0x02,0x29,0xd7,0x4a,0xa6,0xf9,0x3b,0x7c,0x73,0x05,0x48, +0x7b,0xee,0xb6,0x05,0x69,0xc5,0x4d,0xfb,0xe3,0x29,0x68,0x44, +0xdb,0x1d,0x1c,0x59,0xf2,0x94,0x66,0xc8,0xb0,0xed,0xa1,0x3d, +0x8e,0x37,0x79,0x0d,0x73,0x3a,0x6f,0x8e,0x39,0xad,0x42,0x55, +0x37,0xde,0xda,0xd7,0x22,0xed,0xc3,0x63,0xef,0xe6,0x98,0xf9, +0xd4,0xb4,0x7e,0xed,0x48,0x2b,0xc6,0xc6,0x27,0x37,0xef,0x67, +0xdd,0xa3,0x33,0x67,0x50,0x8b,0x4e,0x0e,0x87,0x41,0x4d,0xcc, +0x34,0x56,0xef,0x1c,0xac,0x65,0xc9,0xf6,0x58,0xfb,0xbb,0x0f, +0x34,0xbf,0xd3,0xe8,0xa2,0x9b,0x72,0x17,0x35,0xfe,0x07,0x63, +0xa4,0x37,0xbe,0x4a,0x93,0xae,0x6f,0x3f,0x70,0xde,0x45,0xbf, +0x4c,0x83,0x06,0x50,0xee,0x24,0x29,0x77,0xa1,0x56,0xc3,0xb8, +0x66,0x67,0xbc,0xcf,0xe9,0xe7,0x6d,0x50,0x52,0x31,0xbe,0x4c, +0x7b,0xa2,0x81,0xa0,0x9d,0x53,0xb0,0x09,0xc4,0x29,0xb0,0xe0, +0x1e,0x9b,0x71,0x78,0x72,0x34,0xfd,0xfc,0x66,0x57,0xcb,0x5d, +0x56,0x50,0x35,0x52,0x76,0xe1,0xf5,0x52,0x10,0x1a,0x32,0x53, +0x1f,0x02,0xb5,0xb4,0xa9,0x67,0x91,0xec,0xa7,0xac,0x1b,0xf7, +0x44,0xbd,0xe0,0x54,0xc7,0x95,0xc5,0xfb,0xf7,0xad,0x3f,0x41, +0x3f,0x7e,0x56,0xb5,0x05,0xc4,0x79,0xa6,0x3c,0x48,0x13,0xfc, +0xc8,0x3b,0x59,0x72,0x82,0xfe,0x23,0x12,0x77,0xbf,0xd0,0xfb, +0xb4,0xce,0x9f,0x1e,0x7b,0x36,0x70,0xd3,0x4d,0xc8,0x77,0x13, +0x6a,0xdc,0xb4,0x6f,0xd3,0xcf,0xaf,0x73,0x74,0x97,0x06,0x27, +0xcd,0xff,0x78,0x98,0xeb,0xd2,0xde,0x6d,0xb7,0x80,0x0b,0x86, +0xc2,0xf1,0x6e,0xba,0xd1,0x66,0xa7,0x58,0x52,0xb8,0xda,0x9a, +0xa8,0xaf,0x5a,0x39,0xed,0xdd,0xe6,0xcc,0x9c,0x32,0x67,0x5a, +0x08,0xb1,0xb5,0xbd,0xf4,0x8b,0xeb,0x81,0x7c,0x6f,0xdf,0x89, +0x5b,0x8b,0x3e,0x9c,0xfb,0xfe,0x22,0xe7,0xc2,0xb3,0xd6,0x79, +0x33,0x26,0xcf,0x9b,0x14,0x42,0x42,0x1b,0x16,0x27,0xe5,0x49, +0xdc,0x9d,0xe2,0x10,0xbd,0xe1,0xb3,0x0f,0x3e,0x5c,0xe3,0xb2, +0x6f,0x1b,0xb1,0x23,0x73,0xdc,0x89,0x90,0xbd,0x12,0x59,0x02, +0x3f,0x3a,0xae,0xac,0xdf,0x75,0xe4,0xc8,0xba,0xc4,0x48,0x67, +0x0b,0xb9,0xc6,0x80,0x16,0xad,0x87,0x39,0x3b,0xed,0x1a,0x71, +0xfc,0x42,0x30,0xdd,0x65,0x34,0xdf,0x05,0xfe,0xb4,0x3e,0x9b, +0x9d,0x04,0xf6,0xae,0xde,0xda,0x7a,0xf6,0x42,0x9c,0xd4,0x6d, +0xec,0xa8,0xbe,0x93,0x5d,0x1d,0x48,0xa5,0x86,0xec,0x44,0xb0, +0x3a,0xaf,0x9e,0x08,0xf6,0xc6,0x25,0xd1,0xc5,0x50,0xd9,0x41, +0x47,0xba,0x9e,0x96,0x3a,0x16,0x98,0x05,0x15,0x23,0xb4,0x2c, +0x85,0x19,0x7c,0x74,0xf1,0x16,0x9a,0xf0,0x67,0x99,0xc6,0x67, +0x1e,0xcc,0x4d,0x6d,0x79,0x1c,0x15,0x33,0xfb,0xbe,0x34,0xf1, +0x61,0xfc,0x35,0x6a,0xe5,0xc3,0xc8,0xba,0xa4,0x34,0x39,0x47, +0x0d,0x52,0x1a,0x0a,0x8d,0x9f,0xbb,0x18,0xc8,0x7e,0xfe,0x36, +0xb3,0xcf,0x25,0xfb,0xdd,0x48,0xfd,0x80,0x11,0xde,0x67,0x51, +0x40,0xe9,0x6c,0xf1,0xa0,0x5e,0xcc,0xd1,0xe4,0x47,0xb6,0x02, +0x00,0xe2,0x4f,0x93,0x78,0x54,0xe6,0x28,0x15,0x39,0x28,0xdb, +0xa0,0x9d,0xf6,0x80,0xd9,0x45,0x30,0x93,0x54,0x77,0xd0,0x1d, +0x98,0x2c,0x99,0x6e,0xa8,0xea,0x7a,0x00,0xa5,0x15,0x98,0xc7, +0xc8,0xe8,0xa2,0xb8,0x23,0xd0,0x46,0xab,0x22,0x57,0x1b,0xd3, +0x6d,0xf0,0x48,0x27,0x41,0x6d,0xef,0xfa,0xdf,0x2e,0xa5,0x3d, +0x47,0x97,0x97,0xf6,0x85,0xfb,0xc6,0x32,0xdc,0x08,0x6d,0x97, +0x72,0xee,0xa1,0xa8,0xbf,0x03,0x17,0x1c,0x59,0x64,0xc2,0x0a, +0x19,0xc2,0x32,0xbe,0x01,0xe9,0xc1,0x96,0x8e,0xcd,0xd6,0x3a, +0x2f,0x6d,0x31,0x76,0x87,0x7c,0x27,0x84,0x44,0xd1,0xdd,0x21, +0xa3,0xe0,0x1d,0xb6,0x8f,0x55,0xfd,0x2d,0xd6,0x66,0x23,0x06, +0x74,0xac,0x12,0x42,0xa4,0xf6,0xdf,0x40,0x98,0x6b,0xad,0x9c, +0x6b,0xc2,0xd3,0x9f,0x38,0x67,0xde,0x9e,0x49,0x95,0xbb,0x55, +0x9a,0x3d,0xb8,0x83,0x3e,0x20,0x4c,0xcb,0xf1,0xbb,0x6f,0xaa, +0x78,0xbd,0x6e,0x33,0xcf,0x82,0xbb,0xf5,0x36,0x11,0xda,0x64, +0x05,0xe6,0xde,0x86,0xe4,0x2b,0xa2,0x7e,0xcc,0xb4,0xd0,0xa4, +0x16,0xd0,0x16,0xca,0x68,0x8d,0xd0,0x68,0x21,0x99,0x8d,0x20, +0x48,0x3b,0x47,0x2e,0xde,0x86,0x8b,0xe7,0xa4,0x9f,0xc9,0x45, +0xeb,0x69,0x63,0xb6,0xe0,0x34,0xcc,0xbe,0xc4,0x26,0x2e,0xfe, +0x15,0x74,0x4f,0x7a,0x0a,0x17,0xad,0xe7,0x19,0xcd,0x79,0x46, +0x73,0x5f,0xaa,0x0e,0x2b,0x93,0x4e,0x8f,0xfe,0x64,0x14,0x9d, +0x34,0x80,0xbc,0xb0,0xda,0x7a,0xc9,0xbb,0xb3,0x3e,0x3e,0x91, +0xd5,0xa8,0x28,0x8d,0x42,0x83,0x63,0x4c,0x9c,0x1f,0xb8,0x20, +0x8f,0x23,0x0c,0xa6,0x59,0x17,0xe8,0xdc,0x4c,0x39,0x8c,0x4c, +0xb3,0xe6,0x4e,0x81,0x5c,0xc7,0xc6,0x19,0x5c,0x44,0x19,0x4f, +0xe7,0x41,0xee,0xd1,0x79,0x90,0xfb,0xeb,0x34,0x7c,0xf0,0x53, +0xec,0xa1,0x95,0x3c,0xbb,0x51,0xb1,0xbb,0x60,0x4e,0x95,0xc0, +0xec,0x6b,0xdf,0x53,0xa2,0xe7,0x30,0x9b,0x99,0xb8,0x61,0x12, +0xe4,0x5f,0x86,0x1d,0x9a,0x25,0xf8,0x79,0xa3,0x03,0x35,0x3e, +0xa6,0x7b,0xcd,0xeb,0x18,0xf4,0x39,0x44,0x68,0x7b,0x9b,0x9d, +0x8d,0xff,0xee,0xbd,0x42,0x34,0x8d,0x34,0x37,0x24,0xa0,0x62, +0x17,0x83,0x4d,0x74,0x2b,0xfd,0x51,0xed,0xde,0x5d,0xec,0x21, +0x0a,0x55,0xb8,0x46,0x4a,0x51,0xbd,0xae,0x0f,0xc4,0x58,0xbf, +0xf5,0x56,0x6d,0x08,0x6b,0x4c,0xbd,0x6e,0x16,0xe9,0x69,0x6d, +0xf4,0x9b,0xfc,0xc3,0xf1,0xf6,0x75,0x5c,0xc3,0xe4,0x88,0xe6, +0xed,0x2b,0xd4,0x6f,0xb5,0xc5,0xdd,0xc9,0xd9,0xbc,0x93,0xb5, +0x61,0xfa,0xb5,0xf6,0x20,0x85,0xd8,0x3e,0x56,0x7a,0xd2,0xda, +0xce,0x5d,0x1a,0xf1,0x76,0x73,0x32,0x65,0xc1,0xfe,0x75,0x98, +0xd6,0xd3,0x58,0xa0,0xc8,0x7e,0xd7,0x07,0x7f,0x0d,0xfa,0x1f, +0x2d,0x8a,0x6e,0x74,0xd9,0xaa,0xb1,0xc0,0x01,0xdd,0x6e,0xd2, +0x15,0x0e,0x68,0x0f,0xbe,0x4f,0x6b,0xf1,0x1a,0xa3,0xbe,0x46, +0x15,0xbc,0xd7,0x27,0x72,0x50,0xb9,0xbb,0xd4,0x17,0x6b,0xf4, +0x52,0x36,0xdc,0xb8,0x26,0xea,0x63,0x0c,0xb3,0xbf,0xe6,0x66, +0xed,0xf7,0xe6,0xc7,0xb4,0x8e,0x6b,0x36,0x8c,0xda,0x8b,0xc6, +0xab,0x72,0x22,0xfb,0xc8,0x59,0x11,0x07,0xa4,0xea,0x8e,0xb3, +0x50,0xfe,0x4b,0xe9,0x29,0x99,0x6d,0xed,0xb0,0x7a,0xb3,0x11, +0x89,0x14,0x0e,0x5d,0x46,0x1c,0x9b,0xb8,0xdc,0x9c,0xee,0x49, +0x5d,0xb9,0x6a,0x2f,0xd8,0x61,0x43,0xc1,0xca,0x12,0x29,0x42, +0x32,0xad,0x5d,0xa0,0x7c,0x63,0x52,0xbe,0x8d,0xb9,0x2c,0xf8, +0xe2,0x11,0x7a,0x4e,0x19,0xcd,0xd5,0x64,0x6c,0x46,0xe1,0xd8, +0x44,0xc2,0xe9,0xe4,0xd1,0xcf,0x90,0x47,0x2b,0x01,0x99,0x86, +0xe9,0x6e,0x12,0x54,0x3f,0x7d,0x13,0x3b,0x75,0x3b,0x9d,0xbf, +0x62,0xf3,0x4b,0x79,0x91,0x86,0xe4,0x85,0xea,0xe0,0x7f,0x9a, +0xf8,0xdf,0x8c,0xa8,0xf5,0x6e,0x93,0x9f,0xd8,0x04,0x80,0x15, +0xeb,0xee,0x36,0x04,0xdc,0x17,0xe1,0x58,0xd0,0x0f,0xad,0x95, +0x09,0xb0,0x85,0xac,0x27,0x15,0x24,0x02,0xe3,0x9b,0x74,0xec, +0xe8,0xec,0x12,0xbd,0x58,0x4a,0xdb,0xfc,0xf1,0xa6,0x4d,0xae, +0x43,0x87,0xd6,0x7c,0x0d,0x10,0xfc,0x00,0x2c,0xf2,0x6d,0x36, +0x39,0xb0,0x82,0xcd,0x0d,0xcc,0xa6,0x8b,0x99,0xd9,0xc4,0x07, +0x38,0x14,0x92,0x49,0x3e,0xc8,0x5d,0xc0,0xfc,0x01,0xb9,0x20, +0xd9,0x9f,0xdf,0x66,0xf9,0x99,0x9d,0xd5,0x8d,0x4e,0x17,0xd0, +0xc9,0x89,0x0a,0xb7,0xa1,0xd8,0x7d,0x54,0xb2,0x3e,0x0f,0x02, +0xa5,0xb5,0xd2,0x17,0xb6,0xd4,0xa0,0x1a,0x58,0x26,0xa9,0x90, +0x63,0xb1,0x43,0x05,0xf9,0x36,0x99,0x4d,0xf5,0xb0,0xb5,0xdb, +0xdb,0x28,0xb9,0x07,0x05,0x1e,0xc8,0x86,0xb8,0x6c,0xf1,0x40, +0x10,0x8d,0x3a,0x8e,0x5c,0xa0,0xdd,0x52,0x8b,0x2c,0xf2,0x29, +0x86,0x8c,0x63,0x13,0x62,0x7f,0xb3,0x88,0x72,0x72,0x16,0x8c, +0x3d,0xf3,0xfe,0x19,0x18,0x96,0x65,0x2c,0x5d,0xb3,0x1f,0x58, +0xaf,0xad,0x95,0xd7,0xa5,0xac,0x5e,0xb4,0x2e,0x64,0xe3,0xaa, +0xc9,0xe3,0xa8,0xee,0x35,0x7a,0x5b,0xea,0x94,0x9d,0x21,0xeb, +0x37,0x2f,0x5d,0xbe,0xd4,0x35,0x02,0x6a,0x29,0x7a,0x96,0xc5, +0x5c,0x58,0x37,0x5e,0x1e,0x3e,0x76,0xf4,0xd4,0xe1,0x21,0x43, +0x92,0x96,0xac,0xa4,0xfa,0xd7,0xea,0x7e,0x63,0x16,0xf7,0x0a, +0x19,0x36,0x68,0x52,0xf2,0x24,0xd7,0x27,0xd8,0x71,0xd0,0x23, +0xfe,0x9c,0xb6,0x5d,0x8a,0x31,0x65,0x86,0x31,0xc3,0xa9,0x57, +0x23,0x98,0x40,0x4e,0xad,0xc8,0xa5,0xc3,0x2e,0x32,0x67,0x86, +0xe8,0xe7,0x9b,0xac,0x63,0xfd,0xe0,0x77,0xab,0x64,0xff,0x36, +0xa7,0xaf,0xa4,0x73,0x45,0x5e,0x2c,0x0a,0x76,0x80,0xc6,0x4c, +0x4f,0xc8,0x6d,0x11,0x7e,0xc5,0x3e,0x30,0x43,0xfa,0xfa,0x64, +0x06,0x04,0xb9,0xa0,0x2f,0xea,0x64,0xfd,0x32,0xcb,0x0f,0x18, +0x36,0x75,0xe2,0x48,0xd4,0xc9,0x2e,0x93,0xfd,0xc8,0x32,0x8c, +0xc7,0xf1,0xbb,0xf5,0x36,0x1c,0x91,0x96,0xae,0x5c,0xb7,0x78, +0x4d,0x48,0xc6,0x72,0xaa,0x93,0x45,0x9b,0x76,0x70,0x25,0xc9, +0x76,0x53,0xa3,0x9d,0xf3,0x62,0xa3,0x73,0xae,0xae,0xc8,0xaf, +0xf6,0xce,0x46,0xd7,0x5d,0x26,0x1b,0x5a,0x1a,0x53,0x57,0xff, +0x7a,0x7d,0xea,0xaa,0x25,0xf6,0xe0,0x85,0xb2,0xc8,0xb3,0x68, +0x28,0xc4,0xb2,0x0b,0xbf,0xd1,0x89,0x26,0xba,0x1e,0x68,0xaf, +0xbe,0xdc,0x5b,0x02,0xb6,0x2c,0x50,0x52,0x3d,0x23,0x2a,0x68, +0xe5,0xd9,0xb2,0x12,0xea,0x56,0xb1,0x88,0x02,0x12,0xd6,0x80, +0xdb,0xd3,0x3d,0x0c,0x9d,0xe9,0x52,0x23,0xea,0x6c,0x87,0x73, +0x0b,0x14,0x68,0xef,0xb9,0x13,0x8d,0x8e,0xd8,0x35,0x52,0xb7, +0x28,0xb8,0x8f,0x6e,0xd5,0x3c,0x8d,0x22,0xb4,0xdc,0x13,0x05, +0xb1,0xce,0xfb,0x9c,0xd6,0x6b,0x27,0xb1,0xd5,0x63,0xc0,0xc3, +0x7a,0x47,0x13,0x28,0x45,0xfa,0x64,0x63,0x47,0x51,0xea,0x34, +0x29,0xd5,0x4b,0xa3,0x73,0x61,0xfa,0x5a,0x6c,0x6f,0x6b,0xcd, +0xf6,0x46,0xd7,0xf0,0xed,0xf8,0x59,0xb9,0x0f,0x85,0x1f,0x43, +0x59,0xeb,0x07,0xd2,0x23,0x52,0x36,0x9b,0x14,0xb6,0x1e,0x7e, +0x39,0xd5,0x46,0xb3,0x76,0x22,0x7b,0x5a,0x11,0x65,0x5a,0x36, +0x2a,0x6a,0x3e,0x13,0x6e,0x10,0xab,0xbd,0x9c,0x64,0x43,0x4d, +0x6d,0xb2,0xfe,0x71,0x18,0x6d,0xf9,0xb1,0x34,0x54,0x60,0x46, +0x36,0x6c,0xa6,0x82,0xfd,0x54,0x9a,0xd0,0xbb,0xf7,0xb4,0xa6, +0x21,0x45,0x29,0x79,0xc4,0xf1,0xfd,0x8b,0x96,0x7d,0x86,0x0a, +0xdb,0x06,0x43,0xc0,0x31,0x8d,0x85,0x59,0xba,0x1f,0x9b,0xce, +0xb3,0x9c,0xfd,0x15,0xf3,0xbc,0x08,0x24,0x6c,0xea,0x2e,0x69, +0xe7,0xfc,0xad,0x1f,0x6d,0x58,0xec,0x87,0x94,0xc7,0x94,0x01, +0x93,0x06,0x4e,0xeb,0xf9,0xbe,0x1f,0xd4,0x6e,0x4c,0x6a,0xcb, +0x11,0x8b,0x86,0xa6,0x83,0x1c,0x6c,0x4e,0xf4,0x55,0x39,0x58, +0x0b,0x8a,0x4f,0x73,0xe6,0x4e,0xab,0xd1,0xcc,0xa6,0xdd,0x5e, +0x05,0xd2,0xde,0xfb,0x2d,0x41,0x5a,0x75,0x9b,0x6a,0x6d,0x16, +0xa6,0xb5,0xad,0xf8,0x9a,0x65,0x0e,0xa9,0xd4,0xac,0x07,0xc8, +0x20,0x4b,0x36,0xac,0x7a,0x48,0xd7,0x67,0xc0,0xfb,0xad,0x15, +0x52,0x0d,0x95,0xb6,0x96,0x59,0xa4,0xe5,0x83,0x88,0x2a,0x25, +0xa3,0x7f,0x94,0xb2,0xbd,0xbd,0xe8,0x24,0x5e,0x95,0x36,0xca, +0x6b,0x07,0x47,0x22,0xfb,0xee,0x64,0x3f,0xbe,0xf6,0x1d,0xe6, +0x74,0xb9,0x31,0x9f,0x0e,0x31,0x9e,0xe6,0xb4,0xae,0x53,0xd8, +0x34,0x25,0xc4,0x4a,0xd8,0xc1,0xbe,0xf9,0xe3,0x81,0xfb,0x0a, +0xa9,0x9e,0x05,0x16,0x68,0xa4,0xc1,0x87,0x74,0x78,0x6e,0xda, +0x5a,0x83,0x8d,0x50,0x56,0xfb,0xdd,0x0a,0x25,0x14,0x72,0x99, +0xd0,0xcd,0x17,0xa9,0x67,0xdd,0x20,0xfa,0x3e,0x1e,0xf5,0x04, +0xf4,0x64,0x93,0x13,0x79,0xb2,0x60,0x41,0x12,0x6f,0x0c,0xed, +0x0f,0xb0,0x1d,0x3f,0xc5,0x01,0x9c,0xc4,0x67,0x43,0x3c,0x1d, +0xd7,0x37,0xa0,0xdc,0x3f,0xa4,0xad,0x35,0xe5,0x3c,0xcc,0xc8, +0xe2,0x3f,0xbe,0xb8,0xfb,0x21,0x66,0xbd,0x88,0x46,0xfa,0x7e, +0x70,0x8a,0x14,0x80,0x4a,0x21,0xbf,0x65,0x9d,0x02,0x79,0xb3, +0xab,0xe1,0x16,0xeb,0xd7,0xca,0xd4,0x0b,0x3e,0x64,0xdf,0x5f, +0xfb,0x11,0xe9,0x3e,0x20,0xed,0x0e,0x91,0x7c,0xe0,0x48,0xf2, +0x23,0x85,0xaf,0x41,0x61,0xf9,0xde,0xb2,0x13,0x27,0xd6,0xff, +0xdc,0x70,0x4b,0xc1,0xaf,0x95,0xee,0x97,0x13,0xb2,0xf4,0x09, +0x59,0xcb,0xae,0x04,0x7e,0x76,0x17,0xd4,0xbb,0x50,0xe3,0xae, +0xfd,0xa0,0x7e,0x65,0x93,0xa3,0x97,0xd4,0x7f,0xf0,0x87,0x8b, +0xc6,0xb9,0x2e,0x1c,0xde,0x0b,0x56,0x08,0x0e,0x86,0x16,0xad, +0xef,0x13,0x81,0x08,0xad,0xaa,0x92,0x16,0xa4,0xe0,0xd6,0xd2, +0x5f,0xb5,0x75,0xda,0x27,0xcd,0x99,0x3e,0x8d,0x2a,0x73,0x05, +0x5a,0xff,0x00,0x79,0x5d,0x50,0x5b,0x86,0x90,0x5d,0x87,0x6e, +0x2d,0x5a,0xc4,0xf4,0xb9,0x2b,0xa8,0xcf,0x8d,0x67,0xfa,0x5c, +0xa3,0x0a,0x68,0x1f,0xcc,0xfd,0x96,0x38,0xa0,0xe1,0xfa,0xcf, +0x16,0x7e,0xf4,0x29,0x1a,0x98,0x83,0xd2,0xd2,0x93,0x8f,0x84, +0xec,0x94,0xc8,0xc7,0x7a,0x27,0xc7,0xc3,0xf5,0xe9,0xa8,0xd0, +0x75,0xaa,0xec,0x24,0xf9,0xe5,0x52,0x7d,0xe2,0x3a,0x0e,0x70, +0x76,0xdc,0x3f,0xfc,0xc4,0xd7,0xc1,0xf4,0xcc,0xce,0xcf,0x2f, +0xf1,0xa9,0xfa,0x45,0x11,0xee,0x04,0x41,0x94,0x47,0xb2,0x3e, +0xba,0x54,0x45,0xea,0x32,0x6c,0x4c,0x9f,0x29,0xae,0xda,0x64, +0x6f,0x23,0x76,0x76,0x67,0x63,0xf8,0xa4,0xac,0x71,0x76,0x67, +0x07,0x7a,0xf6,0x26,0x5c,0x3d,0x08,0xc2,0x71,0x10,0x0e,0xf2, +0x50,0xe1,0xdc,0x81,0x63,0x07,0xce,0xb1,0x43,0x00,0xaf,0x3a, +0x7e,0xda,0x77,0x1e,0x6c,0x90,0xb7,0xdb,0xf9,0x77,0xdf,0xed, +0x16,0x43,0xf2,0x12,0xdb,0xbe,0x98,0x9f,0x5c,0x07,0x2d,0xad, +0xc7,0xec,0x39,0xe3,0x3a,0x23,0x9f,0x49,0xdd,0x73,0xf4,0x68, +0x6a,0x42,0x9c,0x33,0x4e,0x8e,0x1b,0x93,0xd0,0xda,0x09,0x82, +0x65,0xf5,0x87,0x8b,0x97,0xba,0x16,0x43,0x4b,0x65,0x8a,0x3c, +0xe9,0xc3,0x29,0xab,0x9d,0x36,0xb8,0x9d,0x0e,0xa9,0x18,0xed, +0xe7,0xa7,0x44,0xbd,0x35,0xdc,0x76,0xa4,0x97,0x82,0x4b,0xe5, +0xe5,0xe2,0xc5,0xb6,0xf7,0xf9,0xfa,0xa1,0x75,0x21,0x49,0x25, +0x7c,0x27,0x89,0x11,0xad,0x3b,0xc4,0xc3,0x8b,0x73,0xa2,0x1e, +0xa7,0xe7,0x73,0x90,0x04,0xe9,0xc9,0x15,0xeb,0x91,0x2f,0x76, +0xee,0x3a,0x16,0x7c,0xba,0xeb,0xbe,0x1a,0xb5,0x12,0x7b,0x74, +0x99,0xe0,0x3c,0x9c,0x64,0xfd,0x6c,0x71,0xea,0xba,0xfd,0x21, +0x7b,0xd6,0x8c,0xea,0xef,0x9a,0x21,0xf7,0x1d,0x35,0x18,0xe2, +0x35,0xb8,0x9a,0x0e,0xb6,0x83,0xc0,0xa5,0x07,0x82,0xe7,0x5c, +0x8b,0xb3,0xd8,0x97,0xcc,0xd4,0xbf,0xf8,0x46,0x83,0x67,0x80, +0x56,0xdf,0x6d,0x07,0x68,0x8c,0xa2,0x70,0x7a,0x76,0x3a,0xaf, +0x5b,0xcf,0x8a,0x7a,0x15,0x4f,0x73,0x07,0x19,0x8b,0x23,0x7a, +0xcf,0x43,0xd3,0xad,0xcb,0x97,0xaf,0x5c,0xb6,0x2d,0x24,0x7d, +0xdd,0xf0,0x04,0xd7,0x4c,0x39,0x61,0xf8,0xf0,0x4e,0x5d,0x47, +0xa7,0x6e,0x4c,0x72,0x76,0xeb,0x6f,0xed,0xff,0xe9,0x8e,0x81, +0x17,0x43,0xbe,0xce,0x38,0x74,0xf9,0x52,0xfb,0x2f,0x62,0xba, +0x8d,0x49,0x1a,0x32,0xce,0x35,0x4b,0x5a,0x4c,0x7f,0x07,0x43, +0x49,0x86,0xab,0x69,0x50,0x34,0x0d,0x42,0xb1,0xb9,0x54,0x3b, +0x03,0x65,0xcf,0x88,0xf0,0x15,0x72,0xeb,0xee,0x91,0x83,0x97, +0x2f,0x74,0xdc,0x1b,0xdb,0x69,0xd8,0x88,0xa1,0xe3,0x5d,0xb3, +0xe6,0xa5,0xdc,0x38,0x94,0xf6,0x28,0xb3,0x50,0x84,0xd4,0xb8, +0x67,0x9d,0x88,0xc2,0xc1,0x95,0x0f,0xb5,0x7d,0xe8,0x4c,0xb3, +0x74,0x1d,0xbc,0x66,0xbf,0x6b,0xc1,0x09,0x6d,0xe6,0x65,0x9a, +0xc9,0x26,0x2c,0x93,0xc5,0xe0,0x82,0xf5,0x10,0x59,0x4b,0x94, +0xc3,0x6e,0x18,0xad,0xd1,0xd8,0x03,0xf7,0x83,0x35,0x2d,0x10, +0x2a,0x9e,0x6b,0x77,0x12,0xad,0xcd,0x76,0xe7,0xe8,0xc9,0x93, +0x98,0xc4,0xb7,0x07,0xf7,0x67,0xa6,0x0d,0xdc,0xd4,0x99,0xad, +0x25,0x79,0xb2,0x6b,0xe9,0xfa,0x4d,0x7b,0x82,0x8f,0x76,0xfe, +0xbc,0x7a,0xf5,0xce,0xbd,0x5b,0x27,0xac,0x1f,0xbc,0x6b,0x92, +0x73,0x96,0x6c,0x7f,0xde,0x65,0xf2,0x80,0xc1,0x9d,0x83,0x9b, +0x1f,0xec,0xfa,0xad,0x13,0x86,0x59,0xec,0x4f,0xba,0x8e,0x4a, +0xd9,0xe2,0x5a,0x24,0x6f,0x59,0x93,0xb2,0x7f,0xff,0x9a,0xb1, +0x03,0x9c,0x53,0xe5,0x01,0xa3,0xc6,0x76,0x75,0x92,0x48,0x8b, +0xfd,0x59,0xa7,0x61,0xa9,0xdb,0x5d,0x4b,0xe4,0xed,0xeb,0x53, +0xd3,0xd3,0xd7,0x8f,0xe9,0xeb,0x9c,0x2c,0xf7,0x1d,0x36,0xa6, +0x13,0x56,0xdc,0x33,0xa8,0xa7,0xe9,0x47,0xaf,0x28,0x33,0xde, +0x20,0x1a,0x33,0xfe,0x5b,0xc9,0x90,0x97,0x4e,0x5f,0x3c,0x7a, +0xf4,0xf4,0x29,0x93,0x9c,0x39,0x02,0x32,0xd7,0x47,0x3e,0x82, +0xde,0x28,0x1d,0x73,0x7d,0x84,0x23,0xfd,0x2d,0x65,0xa3,0xff, +0xa8,0x81,0x28,0x1b,0x33,0xfe,0x22,0x1a,0x30,0xf8,0x1b,0x2d, +0x15,0x25,0x23,0x08,0xe5,0x62,0xc6,0x2b,0x62,0x01,0x97,0x1c, +0xe9,0x64,0xac,0xfc,0xdf,0xcb,0x85,0x6d,0xc6,0x5f,0x64,0x62, +0xc6,0x3f,0x17,0x89,0x54,0x94,0x88,0xa0,0x5c,0x79,0xc8,0x73, +0xf8,0x1c,0xca,0xc3,0x8c,0x37,0x8b,0xc3,0x8c,0xb7,0x93,0x86, +0x67,0x3e,0xd2,0x90,0x66,0xf9,0x9b,0xea,0x86,0xc8,0xbf,0x17, +0x13,0xec,0x7c,0xeb,0x69,0x30,0xe1,0x8a,0x02,0x9e,0xf4,0xc7, +0x47,0x1f,0xa7,0xf3,0x50,0xfb,0xf4,0xce,0x63,0x3b,0x4f,0xb3, +0x3e,0xc2,0xe3,0xf8,0x66,0xf7,0x69,0x10,0x80,0xef,0x79,0xba, +0x62,0xc5,0x9e,0x4d,0x08,0x4f,0x84,0xdd,0x4d,0xbe,0x71,0xa5, +0x5b,0xe2,0xc7,0x6e,0x3f,0xea,0xca,0x94,0x8f,0xa6,0x6c,0x3f, +0x70,0x20,0xa5,0x6f,0x6b,0x67,0x73,0xb9,0xf5,0xd8,0xbe,0xf1, +0xce,0xc7,0x86,0x20,0x2c,0xc2,0x2e,0x62,0x6a,0x4e,0x17,0xf1, +0x67,0x3a,0x4c,0x42,0x11,0xd8,0x7e,0x4a,0x84,0x56,0xf0,0xa7, +0x03,0xa6,0xa7,0x57,0x87,0xcf,0x2b,0x48,0x95,0x2b,0x6f,0xef, +0x7b,0xf5,0x32,0x8a,0xc1,0xa4,0x72,0x12,0x23,0x9a,0x86,0x52, +0xf0,0x23,0x6a,0xbd,0xb1,0xf0,0xe7,0x3d,0xc5,0x06,0x9e,0x83, +0xcf,0xd2,0x1f,0x1d,0x0c,0x84,0xa7,0xa7,0x5b,0x9d,0xc6,0xba, +0xdd,0x0f,0x9e,0x8d,0x8a,0xfd,0xe7,0x36,0x9a,0xfd,0xdb,0x8e, +0x9a,0x4d,0x2f,0x00,0x9d,0x34,0xf8,0x73,0x8f,0x46,0xe9,0xc0, +0x3f,0xfd,0xfc,0x41,0x5e,0xe7,0x4e,0x8b,0x70,0x10,0x3c,0xd8, +0xe4,0x3c,0x69,0x60,0xdf,0x0f,0xfe,0x58,0x55,0x51,0xa7,0x20, +0x08,0xd3,0x3d,0x0c,0x9e,0x71,0x1a,0x86,0x19,0x80,0x61,0x20, +0x98,0x06,0x4a,0x03,0xfe,0x8b,0x1f,0x91,0xe5,0x51,0xc7,0x35, +0xd6,0xf6,0x3c,0x80,0xf6,0xdf,0x93,0xde,0x68,0x87,0xac,0xc6, +0xfb,0x04,0x74,0x4c,0xa4,0x01,0xc2,0x14,0xf8,0xf3,0x27,0x14, +0xa5,0xd7,0x19,0x33,0xe3,0xbf,0xe4,0xcb,0xcb,0x06,0x32,0xf5, +0x65,0x03,0xc9,0xe5,0x4e,0x10,0x04,0x29,0xd4,0x21,0x97,0x13, +0x41,0x77,0xb1,0x7d,0xbe,0xca,0x86,0x19,0x3e,0x5c,0x48,0x45, +0x26,0x04,0x41,0x98,0x66,0x9b,0xf1,0x0a,0x0f,0x66,0x34,0x51, +0x66,0xfc,0x85,0x03,0x33,0xc6,0xa1,0xf0,0x0d,0x40,0xf2,0xea, +0x54,0xe0,0x5e,0x29,0xfc,0x0c,0xc7,0xed,0x7d,0x7b,0xbe,0xda, +0x37,0x78,0x5d,0xc2,0x62,0x26,0x69,0x94,0x0b,0x09,0x53,0x06, +0x0f,0xef,0x16,0xdc,0x76,0x5f,0xc2,0x6d,0x27,0x74,0x41,0xe1, +0xe9,0x35,0x66,0xe5,0x06,0xd7,0x87,0xf2,0x86,0xd4,0x95,0x3b, +0x77,0xa6,0x8e,0x1b,0xea,0x9c,0x2e,0x0f,0x1d,0x33,0xae,0x97, +0x93,0x94,0xb5,0x50,0x4e,0xa5,0x22,0xa3,0x82,0xee,0x4b,0xc7, +0x3e,0x3f,0x77,0xe5,0xfb,0xe0,0x9b,0x9d,0x0f,0xd5,0xaa,0xd3, +0x29,0x3e,0xb6,0xe9,0xde,0x9e,0x27,0xbe,0x5c,0xb7,0x76,0xfd, +0x32,0xe7,0xc2,0x39,0x13,0x62,0xdb,0x77,0x8b,0x68,0x55,0x28, +0x1b,0x6a,0x3a,0x7a,0x0d,0x5f,0xbd,0x1d,0x7b,0x8a,0xed,0xeb, +0x56,0xef,0xdc,0xb9,0x6e,0x74,0x5f,0xec,0x29,0xfa,0x0e,0x1f, +0xdd,0x8b,0x32,0x62,0xc8,0x18,0xd8,0x73,0x68,0x35,0xaa,0x4b, +0x19,0x67,0xed,0x85,0xb8,0x48,0xc5,0x1e,0xc3,0xc1,0xe9,0xe4, +0xf2,0x9a,0x3d,0x75,0x0a,0x94,0x21,0x19,0x0e,0xca,0x8c,0x91, +0x63,0xa0,0x24,0xf2,0x83,0x52,0x1d,0xa1,0x1c,0xf1,0x9f,0x82, +0x74,0xf5,0x29,0xdd,0x1d,0xed,0xa5,0x2f,0x74,0xd0,0xe0,0x3d, +0xc3,0x7b,0xe3,0x29,0xe6,0x7f,0x79,0xd4,0x1d,0xb4,0xb1,0x4f, +0xa7,0x41,0xdd,0x8c,0x0d,0x18,0x76,0x6b,0xa6,0x91,0xc2,0x4c, +0x33,0x85,0xbb,0x53,0x20,0x7f,0x8e,0xff,0xea,0x14,0xfa,0x69, +0xbc,0x3d,0x34,0x72,0x05,0xda,0xb2,0x53,0x90,0xd5,0xa1,0x91, +0x1d,0x35,0xfb,0x34,0x0e,0x12,0x77,0x53,0xca,0x30,0xa4,0x9c, +0xa5,0xd1,0x48,0x2e,0xfa,0x26,0x8f,0x5e,0x3b,0x22,0x61,0x0d, +0x39,0xde,0x44,0x41,0x5f,0x9a,0x81,0x05,0xaf,0x24,0xff,0x8a, +0x3f,0x4d,0xe2,0xfd,0xd3,0x76,0x5b,0x18,0x26,0x61,0x8b,0xc4, +0x24,0x6c,0x61,0x98,0x44,0xd4,0x14,0x23,0x89,0x1d,0x01,0x39, +0x74,0x07,0x8c,0x1c,0xcd,0x4d,0x0a,0x5c,0xa9,0x67,0x7a,0x4b, +0x65,0xc2,0x46,0x0c,0x14,0x09,0x0d,0xa9,0xe4,0x53,0xf2,0xa8, +0xba,0x94,0x3c,0xcc,0x20,0x87,0x56,0x4a,0x1a,0xe6,0xca,0x4e, +0x2b,0xfc,0xb5,0x8c,0xf5,0x80,0x75,0xe4,0xf8,0x38,0x0d,0x29, +0xf6,0x40,0xb4,0xc6,0x08,0x30,0x9a,0x92,0xc7,0x15,0x1a,0x49, +0x37,0x96,0x66,0x45,0x83,0x04,0x35,0xd3,0xed,0x87,0x68,0xe1, +0x0a,0x7e,0x65,0xaf,0x8c,0x51,0xcc,0x33,0x62,0x38,0x0c,0x09, +0x58,0x01,0x28,0x3b,0xff,0xd2,0x28,0xeb,0xed,0x27,0xdb,0x1d, +0x07,0xff,0xe3,0xed,0x4e,0xfa,0xa4,0x73,0x03,0xfd,0x56,0xa4, +0x28,0x87,0x8f,0x6b,0x7f,0x5b,0xae,0x40,0xe0,0x15,0xfb,0x0e, +0x7f,0x94,0xaf,0x1d,0x05,0x56,0xd3,0xa7,0x09,0xd4,0x31,0x91, +0x06,0xc4,0x6c,0xe5,0xc6,0xf9,0x7a,0xd6,0x8a,0xb1,0x60,0x05, +0x69,0xb0,0x92,0x34,0x58,0x41,0x1a,0xac,0x18,0x0d,0xf6,0x05, +0xcd,0xad,0xc9,0x9d,0x83,0x5f,0xc1,0x74,0x9f,0x6c,0xdd,0x61, +0x2d,0x9d,0x66,0xcd,0x49,0xe6,0xdd,0xa0,0xe5,0xf2,0xdf,0x0f, +0xf6,0x34,0x9a,0xfb,0xfc,0x8c,0x01,0xaf,0xd6,0x7f,0x06,0xb4, +0x20,0x19,0x3f,0x69,0x73,0x1f,0xf2,0xfb,0xf5,0x7d,0x22,0x8c, +0x0d,0xba,0x27,0xc1,0x16,0x4f,0xfd,0x06,0x6b,0x49,0x75,0x6f, +0x99,0xea,0x64,0x10,0x3b,0x10,0x7d,0x50,0x14,0x74,0xad,0x37, +0xda,0x6a,0x5b,0xee,0xa9,0xc8,0xa7,0xd3,0x39,0x35,0xeb,0x72, +0x07,0x34,0x87,0x4f,0xa1,0x25,0xf9,0xf4,0xd4,0x2e,0xd2,0x03, +0xf6,0x41,0x0f,0x38,0xd0,0x74,0x17,0x69,0x8e,0x66,0x66,0x4b, +0xf8,0xb4,0x69,0x22,0xf4,0x20,0xfb,0x48,0x0f,0x72,0x00,0x75, +0x30,0xb7,0x9b,0x5f,0xa5,0x1f,0x10,0x57,0xa1,0x16,0x1b,0x4a, +0x57,0x4a,0xf0,0x90,0xe2,0x16,0x21,0xc3,0x13,0xbf,0x53,0xf3, +0xbe,0xe7,0xd6,0xdf,0x83,0x8a,0xca,0xa2,0x31,0x9e,0xf8,0x24, +0xd3,0x7d,0x72,0x5b,0x45,0x7f,0x2f,0xd6,0xfb,0x5e,0x7f,0x8d, +0x86,0xdc,0x88,0x21,0xf5,0xeb,0xf0,0xf4,0x99,0xa2,0x7f,0xe1, +0xe6,0x8f,0xbb,0xc5,0xe3,0xfa,0x0b,0x07,0xd9,0xef,0x06,0x9b, +0x3c,0xe3,0xcc,0xfc,0x79,0xa7,0xeb,0xc3,0x43,0xf2,0x30,0x2d, +0x8d,0x3c,0x84,0x87,0xf5,0x4f,0xcf,0x9b,0x7f,0x66,0x86,0x15, +0x6c,0x6e,0xc9,0x46,0x89,0xf5,0xc1,0x6e,0x51,0xff,0x9c,0x91, +0xc7,0x82,0x4d,0x3a,0xb3,0x70,0xde,0xec,0xfa,0x4d,0x08,0x25, +0xef,0x0c,0x48,0x7e,0xfa,0xd2,0xfc,0x39,0x33,0xe2,0xac,0xc4, +0xe6,0x96,0x6d,0x3f,0x1b,0x51,0xff,0xec,0x80,0xfd,0x6e,0x62, +0x93,0xe2,0x66,0xcc,0x99,0x7f,0xe9,0x34,0x25,0xea,0x9c,0x46, +0x03,0x34,0xa9,0x3f,0x7b,0xde,0xc2,0x33,0x18,0x73,0x2c,0x23, +0x35,0x22,0xa6,0xc4,0xb1,0xc4,0x26,0x2f,0x8c,0x9b,0x3d,0xa7, +0xc9,0x25,0x9a,0x81,0xce,0x9d,0x69,0x66,0x2e,0x35,0x99,0x33, +0x3b,0x6e,0x21,0xc6,0x1b,0xcb,0x54,0xf9,0xae,0x67,0x78,0xbd, +0xbd,0x5b,0xdc,0xad,0x4f,0x76,0x40,0x22,0x49,0x4c,0x4b,0xab, +0x76,0xaf,0xd3,0x9e,0x79,0xf3,0xbf,0xc7,0x8c,0xb6,0xf3,0x76, +0x75,0xeb,0xab,0xc9,0xb2,0x34,0x0d,0x1a,0x9c,0xd1,0xbb,0x26, +0x19,0x84,0x90,0xf8,0x17,0xc2,0x65,0xfa,0xea,0x58,0x6f,0x57, +0xd2,0x0e,0x09,0xdf,0x71,0xf3,0xd0,0x0d,0xd9,0x34,0xc5,0xe3, +0xb7,0x53,0x23,0x5b,0x74,0x3f,0x37,0x39,0x0a,0xfd,0xe4,0x19, +0x4f,0xe6,0xcf,0xdb,0xd3,0xe9,0x5e,0xd5,0x34,0xca,0x70,0x4a, +0x73,0x07,0xb3,0xc8,0x31,0x9a,0x7e,0xe4,0x68,0xac,0xee,0x07, +0x5b,0x90,0xcd,0xfa,0xfa,0x9c,0xd0,0x3f,0xb7,0x55,0xa0,0x1f, +0x1c,0x75,0x7b,0xfd,0xc8,0x96,0xfe,0x1a,0x73,0x67,0x21,0xa8, +0xfb,0x16,0xaf,0x5f,0x2c,0x1c,0x25,0xfd,0xe4,0x85,0xa5,0x67, +0xcf,0x49,0x48,0xaf,0x76,0xbf,0x73,0xbc,0xd5,0x2c,0xc9,0x6d, +0xa4,0x39,0xa2,0x4f,0x86,0x28,0x8d,0x2c,0xf3,0xae,0x76,0xeb, +0x5d,0xa1,0x1d,0x54,0x50,0xcc,0xdc,0x33,0x4f,0xcc,0x3d,0x49, +0x84,0xc4,0xce,0x9d,0xef,0x55,0x4b,0x4f,0x98,0x33,0xbb,0x0c, +0x32,0xa2,0x9d,0xde,0x35,0xd6,0xbb,0x1a,0x96,0x51,0xca,0xd6, +0x8a,0x77,0x97,0x7e,0xc0,0xde,0x63,0x95,0x3e,0x17,0x85,0xc1, +0xbe,0x00,0x7e,0xf3,0x2e,0x79,0xc6,0x9c,0xf7,0xa0,0x73,0x4b, +0xfd,0xaa,0x3e,0xf7,0x57,0xc5,0x9e,0x4a,0x9e,0x97,0xf8,0x0b, +0x13,0x1e,0xba,0xb1,0xe6,0xa8,0x4c,0x34,0xd6,0xe0,0xa9,0x85, +0xfa,0x1e,0x48,0xab,0xca,0x7c,0x9f,0xa0,0x6f,0x4d,0xe8,0xa9, +0x01,0x26,0x0c,0x0d,0x35,0x52,0x13,0x5a,0x68,0x28,0x51,0x7d, +0x7c,0x24,0x0a,0x90,0xad,0x1a,0xcd,0x18,0x3d,0x85,0x29,0x2d, +0xfe,0xde,0xfd,0x3d,0xe9,0x58,0xfb,0xa5,0xad,0x64,0x37,0x96, +0xfe,0xee,0x59,0x1e,0x1a,0xba,0x61,0x3d,0xd2,0xf6,0xdd,0x8d, +0xb4,0xe1,0xf2,0xdd,0x9d,0x77,0x7e,0xbc,0x76,0xbc,0x65,0x55, +0xe7,0x14,0xf7,0x62,0x19,0xec,0x11,0x77,0x89,0x3f,0x29,0x14, +0x8d,0x83,0x5d,0x80,0x93,0x44,0x18,0x21,0x96,0xb1,0x00,0x7a, +0x30,0x0d,0x10,0x21,0x43,0x40,0x34,0xf0,0xa4,0x10,0xf1,0x8f, +0x08,0x27,0x76,0x16,0xea,0xfe,0xf1,0xe3,0xd7,0x7e,0xdc,0x59, +0x3d,0xdc,0x49,0xc2,0x51,0x92,0xe7,0xa3,0xd4,0xcc,0xbf,0x8c, +0x6d,0x60,0x87,0xe3,0xf5,0x9c,0x6b,0x12,0x88,0x8f,0x4f,0x42, +0x00,0x04,0x94,0x3d,0x49,0x44,0x57,0xac,0x7c,0xfe,0x54,0xbf, +0xea,0xd5,0x9b,0xf6,0x8b,0x71,0x11,0x0d,0x0b,0x42,0x83,0xae, +0xba,0x2c,0xea,0xd7,0x68,0x50,0x2c,0x9c,0x26,0xc5,0x34,0xdd, +0x76,0xe7,0xce,0xa9,0x6d,0xe7,0x5d,0x6e,0x99,0x88,0x65,0x9b, +0x91,0x00,0x12,0xf0,0xb8,0x19,0x88,0x2e,0xd0,0x90,0x07,0x56, +0xdb,0xe4,0x93,0xfa,0x35,0x37,0xbf,0xce,0x0d,0x71,0xf4,0xe4, +0x4e,0x11,0x36,0x52,0xc3,0x60,0xb7,0x1b,0xfc,0xe4,0x99,0x47, +0xe7,0xcf,0xfb,0xa2,0xaf,0xf5,0x62,0x8b,0xf4,0x46,0xc4,0x3f, +0x98,0x14,0xad,0x4d,0x38,0x12,0x48,0x6c,0xe1,0x8f,0xa1,0x0c, +0x08,0x5f,0xde,0x7e,0x70,0xc4,0xd9,0xfb,0x80,0xb5,0x54,0xcb, +0x46,0x68,0xd9,0x15,0x08,0xc6,0x66,0xec,0x47,0xfc,0xa1,0x0a, +0xd4,0x00,0x0e,0xd0,0x76,0x85,0xca,0x91,0xb7,0xea,0x1f,0x77, +0x26,0x6e,0x99,0x37,0x3f,0x73,0xa6,0x15,0x64,0x6c,0x64,0xb9, +0x29,0x85,0xd3,0xc4,0x44,0xb8,0xc6,0x52,0x8a,0x05,0x59,0xca, +0x5c,0x30,0x6f,0x76,0xe2,0x00,0x6b,0xfd,0x96,0x91,0x35,0x49, +0xe5,0x60,0xd2,0x14,0x38,0xb4,0xf7,0x6a,0x60,0x64,0x7e,0xe0, +0x0f,0x2d,0xa1,0x40,0x23,0x10,0x4a,0x1d,0x77,0xf6,0x8e,0xb7, +0x3e,0x68,0xf3,0x65,0x0d,0x22,0x04,0x93,0x32,0xe1,0x65,0x89, +0x8d,0x04,0xd6,0xc6,0xb4,0x8a,0xe2,0x88,0x7e,0xee,0xe2,0x09, +0xe7,0x17,0xdb,0xe7,0xcf,0x99,0xd9,0xda,0x4a,0xfc,0xb0,0x7d, +0x62,0x3d,0xf2,0xfd,0x3d,0x15,0xc5,0xfe,0x90,0xe2,0xb8,0xa2, +0x15,0x56,0xcc,0x97,0x64,0x87,0xa7,0x22,0x84,0x76,0x52,0x5a, +0x6a,0xac,0xa2,0x53,0xc8,0xb3,0xfd,0xf4,0x39,0x19,0x42,0x45, +0x48,0x26,0xcf,0x1c,0x10,0x1a,0x6a,0x2d,0x40,0x42,0x25,0x16, +0x7e,0x0b,0x3d,0x3e,0x90,0xfe,0x17,0x18,0xb6,0x05,0x52,0x8e, +0x28,0xd0,0x25,0xd6,0x44,0x36,0x8c,0xf0,0x15,0xdf,0x64,0xb7, +0x06,0x5d,0x48,0x68,0x0e,0xb6,0x41,0x6f,0x0d,0x86,0x25,0x28, +0xf0,0xdc,0xe1,0x86,0x61,0xb1,0x92,0x77,0x8f,0xe5,0x95,0xbb, +0x67,0x96,0x71,0x67,0x74,0x43,0xf9,0xc2,0x0a,0xa6,0x8e,0xb4, +0xd7,0x34,0x24,0x30,0x11,0x92,0x40,0x28,0x0c,0xcd,0xc9,0x4b, +0x0a,0x58,0x3e,0xcf,0xf9,0x17,0x53,0x20,0x65,0xb1,0x06,0xa5, +0x63,0x7d,0x11,0xcd,0xd2,0x6b,0x44,0xc9,0x0b,0xd0,0x8b,0x84, +0xbe,0x8a,0x6d,0x50,0xc7,0x2c,0xbb,0x9e,0x80,0x99,0xeb,0x84, +0x99,0xea,0xb6,0x54,0x63,0x10,0xbf,0x54,0xf3,0xdc,0x59,0x6a, +0x50,0x18,0x1c,0x41,0x12,0xcc,0x44,0x27,0xcc,0x84,0xb7,0xdb, +0x07,0x1a,0x83,0xf8,0x0f,0x90,0xe8,0x03,0x24,0x2a,0xa8,0xd4, +0x55,0xa0,0xb2,0x86,0x28,0xc5,0x3d,0x48,0x6b,0xa4,0x78,0x4b, +0x48,0x98,0x87,0x41,0x5a,0x6f,0xf6,0x34,0x41,0xf1,0x44,0xd6, +0x55,0xc6,0x2b,0x9e,0x9e,0x75,0x95,0x71,0xf8,0x4c,0xdd,0xde, +0xd3,0x3c,0x3d,0xe9,0xbd,0x31,0x06,0xc1,0x6a,0xd1,0x2d,0x6e, +0x92,0xa1,0x7b,0x63,0x69,0xb0,0x04,0xe5,0xa8,0x82,0x2f,0x37, +0x62,0x8d,0xd2,0x1a,0x0c,0x41,0x92,0x12,0xee,0x2f,0x15,0x2c, +0x98,0xf1,0x9e,0x8c,0xef,0xbd,0x14,0xc9,0xb6,0x55,0xd1,0x2d, +0x9e,0xc8,0x58,0xaf,0xb7,0xaa,0x76,0x50,0xc3,0xc7,0x9e,0xb1, +0xde,0x1b,0x55,0xb5,0xcd,0x8a,0x5e,0xc2,0x13,0xb9,0x44,0x03, +0x7f,0xfa,0xd0,0x73,0x2e,0x8e,0xcb,0x8a,0x19,0x3f,0x66,0xf3, +0x65,0xe4,0x50,0x11,0xb5,0x26,0xb7,0x64,0xcf,0xf8,0x92,0xe6, +0xfc,0x3d,0x85,0xd5,0x7a,0x23,0x45,0xc2,0x3e,0x84,0x52,0x7b, +0xbd,0x10,0x9f,0x53,0x24,0x9a,0xf6,0x7b,0x0a,0xa6,0x6b,0x4f, +0xdd,0xea,0xbd,0xe1,0xd6,0x6f,0xa0,0xf6,0x1b,0x8a,0x21,0x67, +0x29,0x34,0xcf,0x66,0xd0,0xde,0x66,0xd0,0x1b,0x98,0x0b,0xf4, +0xeb,0x6f,0x70,0x01,0x69,0x53,0x68,0x5e,0x27,0x28,0x28,0x50, +0x18,0x29,0xc9,0x90,0x6c,0xe3,0x8d,0x67,0xcc,0x2b,0xe4,0xc3, +0x40,0x19,0x5b,0x59,0x76,0x53,0xdc,0x81,0x85,0x95,0xe2,0x6e, +0x7b,0xc6,0x01,0xcd,0x13,0x89,0x51,0xf5,0x87,0x31,0xda,0x38, +0x4a,0x89,0x7e,0x79,0x0d,0x32,0x2c,0x4c,0x61,0xc5,0xa4,0xda, +0x80,0x2c,0x45,0x2a,0x18,0xa8,0xbd,0xa7,0x21,0xd1,0x5c,0x6d, +0x82,0xa2,0xa3,0x96,0xed,0xee,0xa4,0x80,0x4b,0x93,0x69,0x46, +0x2d,0x28,0xfd,0xa2,0x82,0x37,0x7b,0x8f,0xfe,0x3d,0xb4,0xf1, +0x8a,0x91,0xed,0xdf,0x2b,0x4a,0xb6,0x71,0x4a,0x23,0x05,0xe9, +0x42,0x0c,0xba,0x12,0x48,0xc7,0x61,0x65,0x51,0x3a,0x92,0x22, +0x63,0xf5,0xf4,0x56,0x28,0xd5,0x56,0xc5,0x53,0xd1,0xbd,0x5d, +0xd9,0xa9,0x8c,0x44,0xe6,0x4a,0xf6,0x1e,0x5b,0x31,0x76,0xc6, +0x9a,0x95,0x5a,0x0f,0x6d,0xa7,0x82,0xd4,0x58,0x33,0x90,0x41, +0xb3,0xaa,0xa3,0x8c,0xb2,0xa2,0x63,0x1c,0x5e,0x6f,0x0f,0xac, +0x0e,0xda,0xbc,0x8e,0x60,0x5d,0x60,0x14,0x87,0xb4,0x76,0x34, +0x8a,0x12,0x2c,0x8a,0x82,0xf8,0x02,0x35,0x15,0x16,0x08,0x2b, +0x51,0x3e,0x43,0xeb,0xc9,0x53,0xb1,0x97,0xe2,0xbd,0x41,0x52, +0x28,0x9b,0x58,0x21,0xb6,0xd3,0x42,0x98,0x29,0x61,0x19,0x7c, +0xa3,0xce,0x29,0xc7,0x11,0xca,0x3c,0xa3,0x02,0x0f,0xbd,0xc2, +0x3c,0x56,0x85,0xdb,0x15,0x5a,0x46,0x9a,0x32,0x3a,0x2e,0xa0, +0xed,0x1d,0x32,0x58,0xcd,0xa1,0xdf,0x56,0x33,0x23,0x60,0x67, +0xd9,0x90,0xed,0x0b,0x7c,0x2b,0x35,0x15,0x2b,0xf5,0x8c,0x11, +0x2e,0x75,0x03,0x12,0xf4,0x68,0xa4,0x20,0x53,0x30,0x14,0xd2, +0x21,0xb3,0x31,0x10,0x4a,0x06,0xa5,0xa3,0x35,0x0b,0xa1,0xe8, +0x9a,0x5b,0xe7,0xa9,0xfd,0x25,0x93,0x85,0x58,0x61,0xa6,0x88, +0x90,0x14,0xfd,0xc6,0x2b,0xb5,0xc6,0xc4,0x04,0x33,0x1f,0x82, +0xe5,0x23,0xa1,0x2b,0x35,0x46,0xce,0x29,0xb3,0x28,0x2b,0xde, +0x33,0xc5,0xc5,0xe0,0x05,0x6d,0x00,0x57,0xa0,0x34,0xbd,0xc4, +0x2b,0x94,0xd5,0xa5,0xdd,0xa4,0xb4,0x04,0x19,0xb1,0xe6,0x13, +0x6d,0xe9,0x2f,0xfd,0xb1,0x84,0xa5,0xb1,0x12,0x28,0x01,0x09, +0xcd,0x79,0xb6,0x11,0x2b,0x6c,0x84,0x0d,0xb0,0x21,0x41,0xd1, +0xe3,0xb0,0x95,0x6f,0x88,0x95,0x7e,0x3f,0x87,0x5d,0xce,0xc6, +0xd8,0x97,0x5e,0x46,0xa3,0x42,0x6f,0x6c,0xe1,0x1b,0xb0,0x85, +0x23,0x01,0x3e,0x6d,0x64,0x1d,0x4e,0xbc,0xdb,0x9d,0xd3,0x7d, +0xde,0xc7,0x1e,0xd3,0x8d,0x62,0x41,0x7a,0x58,0xae,0x68,0xd8, +0x55,0x52,0x2f,0x11,0xe2,0x51,0xf4,0xdd,0x54,0x9a,0x25,0xec, +0x31,0x5f,0x3c,0xd9,0xaf,0x40,0x31,0xa3,0x27,0x38,0x8b,0xc5, +0x73,0x7b,0xbd,0x6e,0xac,0xce,0x64,0xb7,0xb7,0x91,0x19,0xd7, +0x59,0x14,0x6d,0x6c,0xee,0xf8,0x8e,0x82,0x38,0xfd,0x2b,0x6d, +0x8d,0xe2,0x99,0xee,0xb5,0xc4,0x62,0x99,0xb0,0x2d,0xa8,0xb4, +0x7b,0x40,0xca,0xbd,0x28,0x6e,0xbf,0x47,0xba,0xd1,0xa7,0x11, +0x14,0x53,0x8c,0x3c,0x18,0x3d,0x15,0xc4,0x1b,0x9d,0x85,0xdb, +0x90,0xc4,0x7d,0xac,0x21,0x5f,0xc0,0xbc,0xd0,0x2e,0xa2,0x91, +0x9b,0x24,0xb3,0x76,0x1b,0xcb,0xda,0xfa,0x3c,0xea,0x1c,0x4f, +0x9d,0xbd,0xb4,0x93,0xc0,0x04,0xb1,0xde,0x0a,0xa3,0x91,0x5c, +0x96,0xf6,0x1a,0xd3,0xa1,0xa5,0x36,0x47,0xd3,0x1b,0xb1,0xee, +0x23,0x96,0x05,0x23,0xc9,0x34,0x50,0x7f,0x16,0xc6,0x33,0x3d, +0xf6,0xf7,0x48,0xaf,0x45,0x72,0x5b,0x20,0x12,0xbb,0xb8,0x62, +0x5a,0x6e,0x6a,0x6e,0xa8,0xa2,0x61,0x41,0x1d,0x46,0xc1,0x58, +0x8a,0x66,0xd9,0xd0,0x83,0xa5,0x80,0xbe,0x16,0xb7,0xbe,0x0f, +0x7d,0xab,0x62,0xf9,0x58,0x4b,0xdf,0x47,0x32,0x8c,0x32,0xce, +0xc1,0x0e,0x15,0x99,0x62,0x76,0x05,0xc9,0x12,0x2d,0xe8,0x7e, +0x05,0xb3,0x7a,0x3f,0x97,0x8f,0x5e,0x8b,0xd7,0x8b,0xc2,0x4a, +0xb3,0xb4,0x8f,0x24,0x53,0x06,0x38,0x15,0x83,0xed,0x28,0xc1, +0xfb,0x68,0xc4,0xac,0x8d,0x5b,0xb1,0x01,0xef,0xd5,0x72,0xab, +0x04,0x3a,0x60,0xa9,0xbc,0xde,0xaf,0x34,0xa4,0x66,0x79,0xa5, +0x69,0x52,0x0f,0xa4,0xe8,0xa4,0xcc,0xa1,0x84,0x34,0xaf,0x50, +0x49,0x01,0x45,0xbb,0x82,0xf9,0x62,0xf1,0xbc,0xe4,0x24,0xb2, +0x03,0xa3,0x7c,0x49,0x82,0xd9,0xc4,0xb4,0x68,0x6f,0x65,0x44, +0x4b,0xbb,0x6a,0x9a,0x45,0x78,0x26,0x41,0xf8,0x2f,0xbf,0x40, +0xb8,0x73,0xab,0xbb,0xbf,0x44,0x3a,0x93,0x10,0xbc,0x3a,0xbb, +0x68,0x57,0x4e,0x8b,0x00,0xcf,0x64,0x40,0x37,0x40,0x37,0x67, +0xff,0xd8,0xad,0x94,0xb6,0x28,0x09,0x77,0x91,0x67,0x32,0xa3, +0x78,0x11,0xe7,0x88,0x25,0xcf,0x24,0x12,0x5e,0x14,0x5d,0x0d, +0x82,0xce,0x80,0xd4,0x60,0xc4,0x90,0x82,0xfe,0x48,0x4a,0xd0, +0x0d,0xe3,0xe8,0x6c,0x24,0x11,0x5e,0x14,0x53,0x73,0x61,0xc4, +0x36,0x78,0x57,0xd1,0x8f,0xbd,0x58,0x66,0xbd,0xd8,0x4b,0xb6, +0x91,0xf9,0x2f,0xee,0x36,0xd6,0x76,0x7a,0xbe,0x71,0xf4,0x6a, +0x20,0xe9,0xc7,0xfe,0x58,0x66,0xdd,0x79,0x51,0xa2,0x14,0xa8, +0xf1,0x8e,0x84,0x65,0xde,0x91,0xf4,0x9d,0xb0,0x67,0x7d,0x24, +0x0d,0x81,0x5a,0xe7,0x48,0xfa,0x6e,0x45,0x7a,0xe6,0x6f,0x68, +0x06,0xba,0x85,0x69,0x06,0x28,0x55,0x54,0x6a,0x3d,0x91,0x38, +0x54,0xa7,0x38,0xdc,0x54,0x5e,0x98,0x3f,0x0e,0x8e,0x16,0x31, +0x67,0x90,0xaa,0x8b,0xfd,0x3c,0xa5,0xa0,0x7c,0x60,0x14,0x54, +0x9b,0xa0,0x11,0x1c,0x55,0x8c,0xc0,0xb9,0xc3,0x15,0x84,0xa6, +0xd3,0xd1,0xca,0x0c,0x4d,0xbd,0x69,0xc8,0x41,0x1a,0x75,0x2d, +0xee,0x0e,0xc4,0x06,0xf5,0x7a,0xe7,0x99,0xd3,0x4b,0x93,0x67, +0x28,0x04,0xe6,0x80,0x62,0x8c,0x02,0x39,0x43,0x51,0x6e,0xc8, +0x54,0xda,0x9b,0xf9,0x74,0xc8,0x39,0x7d,0x3d,0x0b,0x8a,0x83, +0x1a,0x1d,0x29,0xd2,0xb1,0xfb,0xf1,0x38,0x51,0xdd,0xcd,0xb0, +0xe8,0x4f,0x3c,0xce,0x3a,0x18,0x2f,0x84,0xc7,0xa0,0x7e,0xca, +0x9e,0xae,0xe3,0xd3,0x75,0xfa,0xa4,0x27,0xc7,0x28,0x7a,0x32, +0x7d,0xf2,0x38,0x63,0x14,0x83,0xce,0x73,0x18,0x9f,0x0e,0xd3, +0xa7,0x17,0x89,0x31,0xca,0x8b,0x44,0xfa,0x14,0x6a,0x19,0x11, +0xa3,0x20,0x42,0x7d,0x20,0x58,0xf1,0x3e,0x91,0x6c,0xb5,0x15, +0x7d,0xb5,0x48,0x9e,0x59,0xf4,0xd5,0x98,0xa6,0x77,0x35,0x73, +0x68,0xcf,0x1c,0xda,0x53,0x87,0xf6,0xcc,0x41,0x65,0x0e,0x2a, +0x75,0x50,0xa9,0x03,0x64,0x50,0x07,0xc8,0x40,0x87,0xaa,0x1a, +0xbe,0x8e,0x66,0xaf,0xa3,0xa9,0xa2,0x35,0x9a,0xf9,0x97,0x66, +0x0e,0xa5,0xa9,0x43,0x69,0xea,0x70,0x85,0xbe,0x5f,0xc1,0xd7, +0x48,0xc9,0x86,0xf2,0x99,0x81,0x11,0x60,0xe7,0x86,0xac,0x31, +0xa2,0x20,0x13,0x92,0x32,0x2e,0x6d,0x49,0xdb,0xe2,0x03,0x1b, +0x73,0x9f,0xf9,0x91,0x69,0xbb,0x2e,0xed,0x32,0x41,0xd4,0x7b, +0xa1,0x68,0x35,0x54,0x48,0x97,0x32,0x1a,0x05,0x38,0xf3,0x03, +0x3e,0xd7,0xd7,0xf4,0xe4,0xf2,0xe8,0xea,0x2d,0x86,0x2e,0xd4, +0xd5,0x52,0xde,0xb1,0x14,0xdf,0xea,0xe3,0x1b,0xc2,0xee,0x57, +0xfd,0x2a,0xfb,0xf8,0x3d,0x28,0x6f,0x46,0xa6,0xa3,0x37,0xd9, +0xfd,0x83,0xa2,0xa3,0x07,0xb1,0xa4,0x62,0x20,0x03,0x6c,0x24, +0xed,0xd2,0x7c,0xe0,0xe6,0xff,0x5b,0xc4,0xf7,0xbd,0xf4,0x31, +0x70,0x1f,0xe7,0x22,0x51,0x6f,0x8d,0xb9,0xdc,0x88,0x39,0x6c, +0xa5,0xc0,0xc5,0xf2,0x3e,0xf9,0xd5,0xc7,0xdc,0xd6,0x60,0xdb, +0x6d,0xed,0x76,0x79,0xf4,0xd6,0x8b,0xb5,0x52,0xc8,0xb6,0x57, +0x72,0xa0,0xcc,0x55,0x60,0x9b,0x01,0x36,0x72,0x16,0xb8,0x84, +0x3d,0xd7,0xf7,0x7c,0xfa,0x46,0x48,0x80,0xf0,0xc0,0x76,0xc0, +0xf5,0xdb,0xf6,0x68,0xdb,0xe7,0x0c,0xfa,0x41,0xb8,0xfd,0xd0, +0x8b,0xe7,0x7a,0x04,0x26,0xdd,0x0f,0x13,0x6b,0xc1,0x00,0x6e, +0x96,0x77,0x0c,0xfe,0x74,0xe4,0x26,0xa7,0xfd,0xd0,0xef,0x63, +0x0f,0x6b,0x2e,0xd2,0x25,0x08,0x13,0x1e,0x7c,0x42,0x81,0x75, +0x27,0x94,0xac,0xf2,0x48,0x69,0x3f,0xe4,0x7d,0x4e,0x29,0xf5, +0x62,0x18,0x62,0xdd,0x36,0x8d,0x12,0xd2,0x8c,0xb3,0xdc,0xd9, +0x4f,0x2b,0xf4,0x7d,0x31,0x92,0xe3,0xd3,0x64,0xe3,0x89,0x86, +0x82,0x2e,0x41,0xdd,0xb6,0xf7,0xdd,0xe7,0xb4,0x4f,0xf6,0x3e, +0xcf,0xd2,0x5c,0x5e,0x0c,0x0c,0xf6,0xf2,0x0e,0x4a,0x0c,0xbc, +0x66,0xf3,0x6c,0x84,0xf0,0xc6,0x9a,0x67,0x23,0x0a,0x2d,0x15, +0xd5,0x96,0x9a,0xbe,0xfa,0x8a,0x88,0x76,0xee,0x33,0x87,0x29, +0x05,0x54,0x50,0xf9,0xb9,0x4c,0x90,0xce,0x69,0xc6,0x9b,0xaf, +0x58,0x78,0x9c,0x38,0x8c,0x64,0x98,0x24,0x90,0x81,0x24,0x10, +0xa3,0x79,0x9c,0x84,0x79,0x50,0xea,0x40,0xf4,0xc0,0x7f,0x7b, +0x06,0xf5,0x44,0x31,0xc2,0x8e,0xdc,0x9e,0xfa,0x89,0x46,0xa5, +0xf5,0x89,0x21,0x9c,0x1e,0x27,0x85,0x3a,0x1a,0x73,0xc1,0xe6, +0x03,0x19,0xbf,0x3b,0x99,0xbc,0xd5,0x31,0x62,0xa6,0xc9,0x41, +0x55,0x85,0x85,0xc0,0x3b,0x61,0x71,0x60,0x0c,0xd8,0x30,0x08, +0x92,0x56,0xd5,0x74,0x9d,0x6e,0xe8,0x06,0x05,0xe1,0x21,0xaa, +0x08,0x79,0x74,0xbd,0x0a,0x2a,0x4a,0x95,0x35,0x7b,0x6a,0x39, +0xd4,0x6c,0xe8,0x3e,0x05,0x50,0x02,0x32,0x51,0x6d,0xfb,0x53, +0xf7,0xfe,0xa2,0x79,0xf2,0x63,0x17,0x53,0x15,0xb6,0x88,0x50, +0xd5,0x93,0xbf,0x02,0x06,0xa5,0x07,0x5e,0xbf,0x07,0x81,0xf4, +0xe8,0x75,0xbd,0xba,0xa6,0xff,0xf1,0x2b,0x0f,0xa5,0x8b,0x60, +0xa7,0x92,0xa8,0xff,0x11,0xa6,0xe9,0x77,0xa0,0x2d,0x0f,0xb1, +0x70,0x4e,0x84,0x7b,0x9e,0x89,0xd1,0x9a,0x7e,0x1b,0xda,0xf3, +0x74,0xdb,0x00,0x51,0xaf,0x44,0xb7,0x89,0x34,0xde,0x5b,0xe0, +0x3b,0xec,0xd7,0x6f,0x17,0xd5,0xf4,0x07,0x10,0xdd,0x5e,0x81, +0xf9,0x9e,0x85,0x45,0x15,0xfd,0x7b,0xf6,0xfc,0x8c,0xee,0x1c, +0xa9,0x3f,0x3a,0x83,0x8f,0x19,0xfa,0xa3,0xca,0x8a,0xfe,0x28, +0x93,0xa7,0x6b,0x67,0x68,0x82,0x8f,0x22,0x34,0x3d,0x8b,0xee, +0x09,0xc1,0x43,0x53,0xba,0x25,0x04,0x75,0xcb,0x72,0x7c,0xa8, +0xe8,0xa7,0x20,0x4a,0xd1,0x4b,0xbd,0x28,0xf3,0xea,0x61,0x3a, +0x7a,0x36,0xb4,0xe2,0x61,0x16,0x68,0x22,0xcc,0xd2,0xb3,0xa7, +0x28,0x9e,0xb1,0x68,0x34,0xb7,0x06,0x81,0xce,0xcf,0xd0,0x6d, +0xb0,0x12,0x0f,0xf3,0xa0,0x1b,0x1b,0x84,0xac,0xb8,0x65,0xed, +0x24,0x8d,0x2d,0xdd,0x12,0x1d,0x8f,0xf0,0xa0,0xe2,0x48,0x3e, +0x76,0xb2,0x36,0x3d,0x25,0x6e,0xfa,0xc2,0xe4,0x0c,0xc5,0x69, +0x0b,0xd3,0xf5,0x5a,0x1a,0xa9,0x4d,0x19,0x96,0xe5,0xcb,0xaf, +0x30,0xca,0x1e,0x12,0x86,0xec,0x21,0x61,0x94,0x3d,0x61,0x8c, +0x3f,0x4d,0x91,0x3d,0xba,0x6e,0x69,0x82,0xaf,0xc8,0x1e,0x42, +0xd9,0x53,0x9e,0x72,0x27,0x8c,0xb1,0x87,0xe4,0x45,0xf6,0x6c, +0xa1,0xdc,0x09,0x63,0xec,0xe8,0x46,0xb9,0x61,0xa5,0xdc,0x31, +0xde,0x51,0xe9,0xa9,0x2c,0x4e,0xa7,0xdc,0x09,0xa3,0xec,0xe1, +0x49,0x35,0xb8,0x22,0x76,0xa2,0x1c,0x0a,0xa3,0x2c,0x32,0xde, +0xd3,0x29,0x97,0xc2,0x90,0x4d,0xc6,0xab,0xfe,0x68,0x13,0x7d, +0xcb,0xe4,0x49,0x2d,0xe4,0x94,0xfe,0xc8,0x32,0x16,0x5f,0x0d, +0x4e,0x11,0x3f,0xc6,0x29,0x3d,0xcb,0x72,0xe6,0xe0,0x81,0xb3, +0x67,0x3b,0x1e,0x88,0x8b,0xeb,0x18,0xdf,0xb8,0xf1,0xc1,0xf8, +0x33,0xae,0x03,0x96,0xbe,0xa3,0x57,0x6d,0x73,0xad,0x96,0xb7, +0xad,0x5e,0xb5,0x7d,0xfb,0xea,0xa4,0x7e,0xce,0xd1,0x72,0xbf, +0xd1,0x49,0x7d,0xb1,0xbc,0x9e,0xb6,0x99,0xfc,0xd6,0x4c,0x31, +0xc2,0xd3,0xb6,0x0c,0x26,0x4b,0xf9,0xd8,0x1a,0xd9,0xd8,0x9a, +0x72,0x31,0x8c,0xb2,0x71,0x2e,0xe5,0xa2,0x40,0xb9,0x18,0xa6, +0x27,0x66,0xf0,0x0b,0x2f,0x8a,0xd7,0x3c,0x7e,0x8e,0x06,0xc4, +0x52,0xbd,0xfd,0x37,0x92,0xb1,0x59,0x6c,0x18,0xe5,0xef,0x91, +0x73,0xe2,0x12,0x1f,0xee,0x86,0x91,0xc8,0x5f,0x31,0x26,0x49, +0x24,0x91,0xcd,0xb5,0x30,0xba,0x8d,0x0b,0x5f,0x0b,0xe3,0xad, +0x45,0x77,0x1e,0x0b,0xa3,0xac,0x27,0x8d,0xdd,0x62,0xfd,0x57, +0x39,0x7f,0x7b,0xa6,0x32,0x47,0xbf,0x3d,0x48,0x61,0x4f,0xf3, +0xf4,0xdb,0x39,0xdb,0x56,0xe2,0x3b,0xdd,0xb6,0x92,0x5f,0x99, +0x29,0x32,0xd7,0x97,0xa7,0x10,0x31,0x1f,0xff,0x8a,0x0a,0xa9, +0x09,0x77,0xed,0xe7,0x99,0xe7,0x45,0x68,0xfa,0xab,0x86,0x1e, +0xdf,0x75,0xd6,0x40,0xf1,0x90,0x24,0x8d,0x3d,0xee,0xf5,0x0c, +0xfe,0x37,0x5b,0xbe,0x32,0x92,0xc9,0x9e,0x2e,0x7d,0xf1,0xe9, +0x3a,0xb4,0xc3,0x60,0x91,0x5a,0x98,0x67,0xe2,0x09,0x9e,0x54, +0x86,0xf3,0x62,0x57,0x4f,0xef,0x9b,0xcc,0x63,0xb8,0xe6,0xe9, +0x52,0x0f,0xb9,0x72,0x19,0xe5,0xb4,0x5e,0xa6,0x98,0xe1,0xb9, +0x5c,0x8f,0xc6,0x0e,0xe5,0x15,0xcf,0xfb,0xfd,0xd0,0x3d,0xb5, +0x22,0x5d,0x45,0x99,0x65,0xef,0x51,0xff,0x45,0x40,0x7d,0xc5, +0x9e,0xda,0x4c,0xb3,0xf7,0x68,0xaa,0x79,0xd6,0xf8,0xb6,0x41, +0xb6,0x8d,0x85,0x29,0x53,0x9e,0xf5,0xbe,0x6d,0xd0,0xb3,0x1e, +0xdb,0x60,0xda,0xcb,0x36,0x98,0x56,0x01,0x83,0xbe,0x6c,0x83, +0x74,0xeb,0x0a,0xcf,0xc6,0xdc,0x36,0x48,0x7f,0x98,0xf7,0xcc, +0x7e,0xd9,0x06,0x5f,0xbc,0x1b,0x8d,0xd6,0xf9,0xcb,0x36,0x48, +0xf7,0xc4,0x30,0xde,0x8d,0x36,0x48,0x37,0xdd,0xf0,0xfc,0xcb, +0x68,0x83,0x2f,0x6a,0x15,0x55,0x3c,0x1f,0x1b,0x6d,0x90,0x6e, +0x93,0xe1,0x59,0xc8,0xda,0x20,0xdd,0x54,0xd0,0xb3,0x30,0xb7, +0x0d,0xd2,0x75,0x73,0x9e,0x49,0xd8,0xdc,0xf0,0x71,0x52,0x4d, +0xe5,0x45,0xa9,0xdc,0xb6,0xa8,0x97,0x7f,0x71,0xe3,0xd5,0xdd, +0x4a,0xc3,0x3c,0x7f,0x98,0x52,0xf4,0x07,0x4a,0x91,0x67,0x16, +0x56,0xa4,0x67,0xd6,0x20,0xe3,0x69,0x9e,0x67,0x56,0x6e,0x45, +0x7a,0x66,0xe5,0x54,0x64,0xf8,0x8b,0x09,0xcf,0x34,0xf6,0x9e, +0x5b,0x7d,0x97,0x5e,0xd4,0xfb,0xd5,0xdc,0x5a,0x34,0xcc,0xf3, +0x11,0xad,0xbe,0x17,0xeb,0xb0,0xfa,0xe8,0xe3,0xde,0x17,0xef, +0xfc,0x9b,0x3d,0x50,0x18,0xc9,0xe4,0x17,0x12,0x56,0x9f,0x67, +0x1a,0x56,0x1f,0xdd,0xa0,0x32,0xec,0xc5,0xbb,0x39,0xd5,0xf7, +0x22,0xdf,0x4d,0xe6,0x31,0x5c,0xa3,0x9b,0x4f,0x86,0xbd,0x98, +0x6c,0x56,0x1f,0xdd,0x77,0x12,0x83,0x62,0xf5,0xbd,0xa8,0x82, +0xd5,0xf7,0x22,0x0e,0x33,0x82,0x8d,0x8a,0x56,0xdf,0x97,0x2f, +0xab,0xcf,0xf6,0xda,0x5f,0xd8,0xcb,0x8b,0x0c,0x7b,0x91,0xcc, +0x4f,0x5d,0x29,0x4e,0x25,0xc3,0x1c,0x2b,0x5f,0x24,0x8f,0x93, +0x98,0xd3,0x54,0xbe,0x34,0xb4,0x37,0xdd,0x02,0xa5,0xab,0xf5, +0x97,0x2c,0x0e,0xbf,0x75,0xf7,0xd6,0xe4,0xc5,0xe1,0x35,0xc3, +0x6f,0x4d,0x9e,0x72,0xb7,0x66,0x78,0xcd,0x25,0x53,0xae,0x5e, +0xb2,0xda,0x48,0x80,0xe7,0x7c,0x63,0x0d,0x3b,0xee,0x2d,0x0e, +0x54,0x7a,0x6b,0x93,0x0c,0x6f,0x6d,0x54,0xaa,0x4b,0x5a,0x37, +0xc3,0x29,0x47,0xdc,0x8f,0xd2,0xb9,0xf9,0x9b,0xd6,0x1d,0x08, +0xfe,0x48,0xde,0x31,0xec,0xd3,0xde,0xbd,0x86,0x0d,0xed,0x3b, +0xdd,0xd9,0x62,0xb5,0xf5,0xe0,0xf2,0x5d,0x07,0x6e,0x85,0xdc, +0x3a,0x14,0x5f,0x3f,0xaa,0x73,0x42,0xdb,0x69,0xae,0x81,0xa4, +0xab,0x63,0xe0,0xc4,0x95,0x6b,0x5c,0x8b,0xe5,0xd5,0xcb,0x3e, +0xf9,0xec,0xb3,0x65,0xe3,0x47,0x3b,0xa7,0xc8,0xa3,0x26,0x8e, +0x1b,0xe8,0xb4,0x4d,0x5e,0x02,0x0f,0x16,0x6e,0x58,0x08,0x85, +0x97,0x7c,0xb4,0x04,0x4a,0x2f,0xd9,0xb4,0x44,0x22,0xfd,0x10, +0xeb,0xa3,0xd1,0x51,0x76,0xa6,0xf6,0xec,0xee,0x9f,0x67,0xae, +0xbf,0xea,0x56,0x6e,0xaa,0xe9,0x4b,0x16,0x2e,0xf0,0xf7,0x77, +0x2f,0x59,0xb4,0xd6,0x3f,0xaf,0xfe,0xa4,0xc0,0x6f,0x8e,0x4c, +0x3b,0x5f,0x59,0xe0,0x78,0x4e,0xe5,0x02,0xb8,0x20,0xae,0x10, +0xa7,0x71,0x45,0xb8,0xe2,0x5c,0x1b,0xae,0x13,0xd7,0x95,0x9b, +0xc3,0x7d,0xc4,0xad,0xe7,0x36,0x71,0xdb,0xb9,0x2f,0xb9,0x43, +0xdc,0x71,0xee,0x24,0x77,0x81,0xbb,0xca,0x7d,0xc7,0xf3,0xbc, +0x3f,0x1f,0xc8,0x17,0xe2,0x43,0xf9,0x0a,0x7c,0x15,0xbe,0x26, +0x5f,0x97,0x8f,0xe1,0x9b,0xf3,0xad,0xf9,0x5e,0xfc,0x30,0x7e, +0x3a,0xbf,0x98,0x4f,0xe1,0x37,0xf2,0xdb,0xf8,0xbd,0x7c,0x3a, +0x9f,0xc1,0x67,0xf2,0x57,0xf9,0xc7,0xfc,0x53,0xfe,0x39,0xaf, +0x0b,0xb2,0xe0,0x10,0x4a,0x08,0xe5,0x85,0x6a,0x42,0x6d,0x21, +0x5a,0x88,0x11,0xde,0x13,0x76,0x08,0xfb,0x84,0xe3,0x42,0x96, +0x70,0x47,0x78,0x2c,0x3c,0x13,0x5e,0x88,0xa2,0xe8,0x27,0xe6, +0x13,0x83,0x44,0x4d,0x2c,0x25,0x56,0x11,0xe7,0x89,0x0b,0xc5, +0xf5,0xe2,0x56,0x71,0x9f,0x78,0x40,0x3c,0x2a,0x5e,0x13,0xbf, +0xb3,0xe4,0xb3,0x14,0xb0,0x14,0xb6,0xbc,0x6b,0xa9,0x66,0xa9, +0x69,0xa9,0x6f,0x69,0x62,0x69,0x63,0xe9,0x6a,0xe9,0x6f,0x19, +0x6e,0x99,0x60,0x99,0x69,0x59,0x60,0x59,0x6a,0x59,0x6d,0xd9, +0x6c,0xd9,0x69,0xf9,0xd2,0x72,0xd8,0x72,0xd2,0xe2,0xb6,0x3c, +0xb6,0xfc,0x61,0x2d,0x68,0x2d,0x62,0xad,0x60,0xed,0x6a,0x4d, +0xb4,0x2e,0xb6,0x1e,0xb6,0x5e,0xb1,0x7a,0x25,0x49,0xb2,0x49, +0x15,0xa4,0x28,0xa9,0x87,0x34,0x41,0x9a,0x2a,0x2d,0x91,0xb6, +0x4b,0x19,0x52,0x96,0xf4,0x40,0x42,0xfb,0x40,0xf6,0x97,0x35, +0xb9,0xb0,0x5c,0x56,0x8e,0x90,0x1b,0xca,0x6d,0xe4,0xee,0xf2, +0x20,0x79,0x9c,0x3c,0x45,0x9e,0x23,0x7f,0x20,0xaf,0x90,0xd7, +0xcb,0xdb,0xe5,0xfd,0xf2,0x11,0xf9,0xac,0x7c,0x55,0xce,0x96, +0x7f,0x94,0x7f,0x93,0xff,0xf0,0xf3,0xf7,0x73,0xf8,0x85,0xf8, +0x15,0xf1,0x2b,0xe5,0x57,0xde,0x2f,0xdc,0xaf,0xae,0x5f,0x8c, +0x5f,0x73,0xbf,0xf6,0x7e,0x9d,0xfd,0x92,0xfc,0x3e,0xf0,0xdb, +0xe8,0xb7,0xd5,0xef,0x88,0xdf,0x5d,0xbf,0xa7,0x79,0x22,0xf3, +0x0c,0xcd,0x33,0x25,0x4f,0x6a,0x9e,0xcd,0x79,0xee,0xe5,0x79, +0xa2,0x94,0x57,0x12,0x94,0x3e,0xca,0x40,0x25,0x59,0xd9,0xab, +0xfc,0xa4,0x10,0x35,0x40,0x2d,0xa2,0x96,0x53,0x2b,0xa9,0xe1, +0x6a,0x7d,0x75,0xb4,0xba,0x41,0xbd,0xa2,0xde,0x50,0xb3,0xd5, +0x47,0xfe,0x05,0xfc,0x8b,0xf9,0x57,0xf3,0xef,0xe6,0xdf,0xd7, +0x7f,0xbe,0xff,0x2e,0xff,0x6b,0xfe,0x0f,0xfc,0xbf,0xf1,0xff, +0xc5,0xff,0xcf,0xbc,0x6a,0xde,0xe0,0xbc,0x25,0xf2,0x96,0xcf, +0xdb,0x3c,0x6f,0xef,0xbc,0xc3,0xf2,0x8e,0xcb,0x3b,0x27,0xef, +0xd2,0xbc,0x6b,0xf3,0xa6,0xe7,0xbd,0x9a,0xf7,0xeb,0xbc,0x3f, +0xdb,0x78,0x5b,0x41,0x5b,0x79,0x5b,0x8c,0xad,0x9b,0x6d,0xb4, +0x6d,0xa2,0x6d,0x8e,0x6d,0x95,0x6d,0xb7,0xed,0xa8,0xed,0xa2, +0xed,0x6b,0xdb,0x13,0xdb,0xef,0xf9,0xa4,0x7c,0x05,0xf3,0x15, +0xc9,0x57,0x3a,0x5f,0xed,0x7c,0xb1,0xf9,0x5a,0xe7,0x4b,0xcc, +0x37,0x30,0xdf,0x84,0x7c,0x73,0xf3,0x2d,0xcd,0xb7,0x26,0xdf, +0xe7,0xf9,0x32,0xf2,0x1d,0xcb,0x77,0x26,0xdf,0xcd,0x7c,0x8f, +0xf2,0x7d,0x9f,0xef,0xe7,0x7c,0xbf,0x07,0xe4,0x09,0x08,0x0c, +0x08,0x09,0x28,0x15,0x10,0x11,0xd0,0x30,0xa0,0x4d,0x40,0x42, +0xc0,0x80,0x80,0x91,0x01,0xc9,0x01,0x53,0x02,0xde,0x0f,0x58, +0x1c,0xf0,0x69,0xc0,0x8e,0x80,0xbd,0x01,0x69,0x01,0x5f,0x05, +0x9c,0x0c,0x38,0x1f,0x70,0x2b,0xe0,0xdb,0x80,0xe7,0xf9,0xb9, +0xfc,0xfe,0xf9,0x0b,0xe6,0x0f,0xcb,0x5f,0x32,0x7f,0xf9,0xfc, +0x35,0xf2,0x37,0xc8,0xdf,0x22,0x7f,0x7c,0xfe,0xde,0xf9,0x87, +0xe5,0x9f,0x90,0x7f,0x66,0xfe,0x85,0xf9,0x3f,0xc9,0xbf,0xe6, +0xe5,0x9e,0xd0,0x74,0x76,0x4f,0x05,0xe9,0x12,0x48,0x6a,0x94, +0x66,0x9b,0x9c,0xac,0xa8,0x93,0x21,0x54,0x51,0x1f,0xa1,0x95, +0x7c,0x72,0xb2,0xe3,0xe9,0xe5,0x9c,0x45,0xde,0x8a,0x52,0x98, +0xd4,0x20,0x11,0xdf,0x15,0x86,0x92,0xce,0x99,0xfa,0x10,0x07, +0x3d,0x9f,0xca,0x35,0x85,0x1c,0x30,0x4e,0xab,0x72,0xaa,0x93, +0xe9,0x49,0x11,0xea,0xdc,0xbd,0x8a,0xaa,0x7f,0x19,0x74,0xa1, +0x3e,0xec,0x90,0xdf,0x70,0x92,0xe6,0xf9,0x90,0xeb,0xaf,0x9e, +0xa4,0xa9,0xe6,0xee,0xe2,0x44,0x8f,0x27,0x23,0x75,0xae,0x96, +0x80,0xc0,0x4b,0x87,0xb7,0x9c,0xda,0xe2,0xfa,0x40,0x52,0x07, +0xd0,0xef,0x1f,0x3d,0xd6,0x24,0xd5,0x91,0x29,0x5d,0x85,0x56, +0x56,0x4a,0x76,0x72,0xf2,0xc9,0x40,0xd5,0x58,0x4b,0xad,0x0e, +0x54,0x6c,0xe6,0x86,0x54,0xea,0x5c,0xba,0xeb,0xa9,0x7a,0xd3, +0xde,0xae,0x8a,0x66,0x5f,0x57,0x56,0xb1,0xf7,0xb6,0xaf,0x2b, +0xa7,0xd9,0x31,0x2f,0x9f,0x04,0xfd,0x65,0xc7,0xdd,0xdf,0x9b, +0xcb,0xaa,0x5e,0xd3,0x58,0xec,0xff,0x42,0x52,0x27,0xd3,0xdd, +0xb5,0x54,0xd2,0xc5,0xed,0x09,0xc5,0x94,0x3e,0x54,0x5e,0xdf, +0x2b,0x0c,0x1a,0x2a,0x2d,0xb5,0xb9,0xaa,0xb1,0x3b,0xb0,0xea, +0xb5,0x48,0xb6,0x58,0xc5,0xd8,0x3f,0x79,0x27,0xfd,0x59,0x3e, +0x48,0x51,0xe3,0x14,0x5e,0xfd,0xcb,0x96,0x20,0xaa,0xe3,0xe5, +0xe6,0xcd,0xaa,0xd4,0xaa,0xe8,0xfe,0x51,0x9f,0x6e,0xb2,0x6e, +0xde,0xb9,0x72,0xdb,0xc6,0xe0,0x4d,0x63,0xd7,0x76,0x74,0xaa, +0x49,0x2b,0x26,0xac,0x5a,0xb5,0x62,0xc5,0xaa,0x55,0x13,0x56, +0x24,0x25,0x4d,0x98,0x90,0xe4,0x54,0x1b,0x6b,0xd4,0x58,0x7a, +0xa2,0xe6,0x6e,0xd3,0xac,0xa2,0x29,0x9e,0xe2,0x56,0x0d,0x2b, +0xd4,0x2d,0xaa,0xa9,0x74,0xf7,0x27,0xf5,0xb2,0x62,0xbb,0xad, +0xb0,0x4d,0xc3,0x54,0x3d,0xdb,0x50,0x0a,0xca,0x61,0x41,0xa2, +0x15,0xf5,0xb6,0x02,0x3f,0x7e,0x62,0x6c,0x25,0xff,0x14,0x5d, +0xcb,0x0f,0xa7,0xf5,0x08,0xf1,0x41,0xdf,0x28,0xef,0x6b,0xb6, +0xa0,0x86,0x98,0x0f,0xc8,0x7f,0xe1,0x0a,0x04,0x43,0x70,0xc3, +0x2b,0x24,0xbf,0x4b,0x95,0xcf,0xee,0xe9,0x17,0xe9,0xea,0x20, +0x47,0x26,0xf4,0x6b,0xec,0xb4,0x39,0xe8,0x2f,0x20,0x9d,0x0f, +0x54,0xab,0x9a,0xd0,0x69,0xf6,0xbc,0x85,0x4f,0xac,0x2a,0x33, +0x37,0x0b,0x2b,0x2a,0x4f,0xf7,0xa0,0x12,0x55,0xf6,0xfd,0xc0, +0x18,0x95,0x1e,0x5f,0x23,0xab,0x74,0x72,0xb0,0x5a,0xbb,0xe6, +0x95,0x88,0xd4,0xf3,0x47,0x08,0x73,0xd2,0xed,0x03,0xc3,0x0e, +0x7e,0x03,0x96,0xec,0xdc,0xd5,0xdd,0x83,0xdb,0xb0,0xd5,0xdd, +0xb5,0x6b,0x92,0x02,0x64,0x2a,0x19,0x7b,0x99,0x14,0x80,0x32, +0xdf,0xef,0x3c,0x78,0x78,0x8d,0x6b,0x81,0xa4,0xfe,0xb3,0xfd, +0xd1,0xd5,0x6c,0xb6,0x30,0xae,0xa2,0x6a,0x1d,0x9f,0x34,0xe1, +0xbd,0xd1,0x21,0xe3,0xc7,0x7c,0xf8,0xc9,0x40,0x97,0xaa,0xb7, +0x0c,0xba,0x0e,0x3f,0x90,0xd1,0x8d,0xe0,0xdd,0xfa,0xc8,0xef, +0x62,0xd2,0x74,0xd2,0xca,0x9a,0x29,0xd9,0x7c,0x76,0xd4,0x57, +0xcd,0x59,0x23,0x75,0x2e,0x14,0xd3,0xcb,0x43,0x31,0x75,0xee, +0x7d,0xb8,0xf3,0x23,0xc4,0x25,0xa9,0x10,0x3a,0x0b,0xf9,0xc7, +0xe6,0xef,0x54,0xf6,0xe5,0x5c,0x2f,0x35,0x56,0x49,0x21,0xeb, +0x5b,0x28,0xe6,0x39,0x35,0xbb,0xc9,0xd8,0x16,0x4a,0x95,0xdc, +0x13,0xd6,0xd8,0xc6,0x06,0x15,0x1e,0x5e,0x07,0x87,0xb1,0x8d, +0xa0,0xeb,0x7f,0xb8,0x8d,0xa0,0xb5,0xfe,0xa1,0xab,0x1d,0x21, +0x7f,0x08,0xb6,0x80,0x42,0x9a,0xfa,0xc6,0x53,0x25,0xed,0xe7, +0x7f,0xd0,0xec,0x25,0xd5,0x97,0x1b,0x72,0xa9,0x90,0x5f,0xb1, +0xed,0xd6,0xec,0x3f,0xa7,0xee,0x53,0xd4,0x37,0xec,0xe8,0xa6, +0x62,0x99,0xb7,0xb8,0x7e,0x92,0xc9,0x74,0xaf,0xdb,0x01,0xed, +0x35,0xa7,0xfa,0x56,0xfb,0xe0,0xa8,0x74,0xef,0x68,0x1b,0xdd, +0x55,0x73,0x68,0x08,0x14,0x50,0x86,0x69,0x2e,0x95,0x9d,0xb1, +0xa5,0xbe,0x72,0xfa,0x93,0x6a,0xcf,0x9c,0xa1,0xa9,0x9b,0x15, +0x48,0xa1,0x93,0x9f,0xea,0x41,0x8d,0xcd,0xa6,0xaa,0x5b,0x51, +0x51,0xf1,0x7a,0xdd,0x6a,0xee,0x91,0xba,0xaa,0xe3,0x9c,0x04, +0x32,0x6c,0xb2,0x12,0x87,0xa4,0x2e,0x1f,0x52,0xc5,0x49,0x7e, +0xb8,0xac,0xe6,0xac,0xf0,0xe6,0xb1,0xb8,0xbc,0xb4,0x01,0x1b, +0x73,0x73,0xc9,0x66,0xce,0x87,0x42,0xb2,0x3a,0x06,0x3a,0x67, +0xc1,0xd7,0x0f,0x51,0xc0,0x61,0x22,0xfd,0x28,0x53,0x8d,0x85, +0x32,0xde,0x00,0x52,0x46,0xc6,0x7a,0x63,0x1b,0xd0,0xaa,0xa7, +0x79,0xaa,0xad,0xa0,0x10,0xa6,0xe8,0x37,0x48,0xa8,0xd1,0xdb, +0x34,0x3f,0xa0,0x4a,0xd9,0xbf,0x5b,0x1d,0xea,0x2b,0x9b,0x1b, +0xf9,0x7e,0xb0,0x29,0xa9,0xe5,0x31,0x3d,0x54,0x69,0xa8,0xa9, +0x4c,0x6d,0x78,0x6a,0xcb,0xab,0xf4,0x4c,0x9c,0x4d,0xf3,0x35, +0xfb,0xa9,0xd1,0x8a,0x7d,0xf3,0x87,0x9a,0xfd,0xe4,0x08,0xc5, +0x7e,0x6a,0x2a,0xed,0x51,0x50,0xff,0x08,0x6c,0x46,0x8f,0x60, +0xd3,0x76,0x21,0xe6,0xb6,0xd3,0xed,0x3e,0xa1,0x81,0x82,0x7d, +0x53,0x38,0x09,0xf7,0xe9,0x9b,0xaa,0x49,0xc5,0xe3,0x3b,0x94, +0x6e,0xd9,0x6d,0xd5,0xf6,0x7e,0xce,0x2e,0x6d,0xad,0x09,0xbb, +0x4f,0x0c,0xc9,0x0e,0x81,0x62,0x77,0xee,0x43,0x11,0x97,0x4a, +0x57,0xe4,0x96,0x54,0xdb,0x4f,0x1c,0x34,0xb8,0x6d,0x70,0x0d, +0x77,0x57,0xa8,0xc9,0x0e,0xaa,0x73,0x46,0xce,0x72,0xb4,0x69, +0x3b,0xa4,0xbc,0xb3,0x8e,0x14,0x31,0xe0,0xf3,0x7d,0x5b,0x56, +0xae,0xd9,0xba,0xcc,0x05,0xb1,0xd2,0x9d,0x8d,0xc3,0x7a,0xba, +0x48,0x2b,0x48,0x77,0xa8,0xff,0xc0,0x7e,0x60,0xc2,0x4d,0xfe, +0xf5,0xbb,0xe6,0x20,0x62,0xf7,0x56,0x1a,0x5b,0xf6,0xac,0x56, +0x91,0x9a,0xc2,0x60,0x6b,0x3d,0xe9,0x2b,0xd2,0xea,0xe3,0x7e, +0x2b,0xc6,0xad,0x9b,0x51,0x28,0xe7,0x83,0xd3,0xd6,0xa4,0x7b, +0x41,0xfa,0xa5,0xea,0x44,0xeb,0x03,0xb5,0xaa,0xc2,0x96,0xfb, +0xc6,0x6b,0xb6,0xc3,0xd4,0xfa,0x6e,0xa5,0xa8,0xd7,0x82,0xf4, +0x50,0x37,0x9a,0x39,0x23,0xa5,0x9b,0x19,0x67,0x7e,0x76,0x3e, +0xb9,0x59,0x5f,0x22,0x5c,0xd7,0x66,0xb1,0x49,0xae,0x99,0x10, +0x44,0x26,0x48,0xea,0xa4,0xc5,0x53,0x96,0x2e,0x5d,0xbc,0x78, +0xe9,0xd2,0x29,0x8b,0x27,0x4d,0x9a,0x32,0x65,0x92,0x53,0xb5, +0x9f,0xd7,0x97,0x04,0xb9,0xc9,0xf7,0x32,0xdc,0xd3,0x65,0xeb, +0x35,0x6f,0xb9,0x58,0xb8,0x22,0x93,0x7b,0x5e,0xd9,0x5a,0x57, +0xc6,0xc2,0xff,0xfd,0x76,0xc0,0x2a,0x14,0xa5,0x2b,0x92,0xd4, +0xa7,0x39,0x67,0x62,0x3d,0x26,0x8f,0x62,0x61,0x89,0xf7,0x1a, +0x99,0x2f,0xab,0xdd,0x86,0x6f,0x49,0x73,0xa5,0xc9,0x69,0xeb, +0xb6,0xec,0xdb,0xb7,0x6e,0x40,0x67,0x67,0x67,0xb9,0xf3,0xf0, +0x01,0xdd,0x9c,0x2a,0x5b,0xcb,0x33,0xc3,0x58,0xaf,0x60,0x3f, +0xdd,0xea,0xb4,0x0a,0xcb,0xb3,0x79,0xa8,0x00,0x5f,0x88,0x7a, +0x2b,0x58,0xee,0xc8,0x26,0x5f,0x44,0xc8,0x36,0x19,0xf2,0x37, +0xb8,0x44,0xb8,0xf0,0xc4,0x6e,0x1d,0x47,0x3b,0x67,0xa9,0xaf, +0xae,0xc4,0x51,0xa1,0xac,0xc2,0xe6,0x4e,0xd5,0x9a,0xfd,0x37, +0x9f,0x72,0x9a,0xdf,0x73,0x9d,0x68,0x0f,0xa2,0x0a,0x79,0x6f, +0x66,0x3d,0xff,0x7c,0xca,0x8e,0x11,0xeb,0x5d,0xdf,0x9d,0x26, +0x8d,0x31,0x87,0x6d,0x35,0x9b,0xbe,0xdf,0x73,0x90,0x76,0xac, +0xa5,0x24,0x95,0xfd,0x70,0x90,0xe2,0xbd,0x81,0x32,0xef,0xb8, +0x72,0x70,0xe7,0x89,0x2f,0x07,0xac,0xeb,0xf1,0xa1,0xeb,0x03, +0x59,0x25,0xfd,0x4e,0x43,0xb9,0xcb,0xdf,0x9e,0x84,0xe4,0x93, +0x93,0x2f,0xa8,0xe6,0x4f,0x55,0x74,0x4a,0x4f,0xf5,0xdd,0x2a, +0x5a,0xdd,0x76,0x04,0x5a,0x15,0x8c,0x94,0x9a,0x90,0xc1,0xd6, +0x2a,0x6a,0x63,0x85,0x11,0x80,0x6b,0xc4,0xcf,0xcd,0x8f,0x39, +0x37,0x48,0x2a,0xc9,0x80,0x31,0x1a,0xe9,0x77,0xc4,0x51,0xbe, +0xdd,0xc9,0x6f,0x5d,0x97,0x65,0x55,0x7a,0x7e,0x3a,0xf3,0xd9, +0xd3,0xc6,0xa7,0x8a,0xba,0x8c,0xfe,0x97,0x0e,0x00,0x93,0xb3, +0x60,0x11,0xfd,0x26,0x9f,0x57,0x8d,0x25,0xc9,0x89,0xf8,0x74, +0x19,0x26,0xd2,0xef,0x8d,0x27,0x5a,0xd5,0xdc,0x4f,0x5b,0x55, +0x73,0xc7,0x79,0xb5,0xfd,0xa4,0xc4,0x91,0xed,0x83,0xfb,0x7d, +0x32,0x7a,0xe3,0x44,0xe7,0x64,0x59,0x35,0x67,0x95,0x6d,0xd8, +0x76,0xbc,0x74,0x4a,0x7f,0x32,0x3d,0x4a,0xc4,0x38,0xb1,0xee, +0xd1,0x4d,0x6c,0x6a,0x8d,0xbc,0x3f,0x93,0x46,0x92,0xea,0x89, +0xa4,0x9e,0x0e,0xb7,0x77,0x58,0xac,0x6c,0xc3,0xce,0x5e,0xbf, +0xe6,0x56,0xad,0xd0,0x1e,0x15,0x02,0x63,0x1b,0x5e,0x75,0xae, +0x71,0x94,0x11,0x36,0xe1,0x60,0x37,0x09,0x46,0x46,0xd1,0x39, +0x48,0x64,0x0b,0xdb,0x52,0xfd,0x29,0xbe,0x7b,0x2e,0x2b,0xd8, +0xe0,0xbe,0xc7,0x96,0x66,0xcc,0xe9,0xe4,0x4e,0x1f,0x2d,0x46, +0x27,0x14,0xb4,0x1a,0xec,0x1b,0x79,0xfa,0x19,0x61,0xe1,0x22, +0x0a,0x3b,0x3d,0xa3,0x2c,0x59,0xfa,0x34,0x4c,0x1b,0x98,0x73, +0x72,0xe9,0xad,0x45,0x9a,0xfd,0xc9,0x07,0x8a,0xfd,0xd6,0x0e, +0xc5,0xfe,0x64,0xa6,0x66,0xa3,0x4b,0xda,0x54,0x73,0xd2,0x08, +0xa3,0xb5,0x6f,0xa3,0x0f,0x2c,0x56,0x15,0xba,0x69,0xec,0x5c, +0x1c,0xfb,0x93,0x5f,0x8c,0x43,0xd5,0x64,0xe8,0xe7,0xed,0x7a, +0x12,0xc3,0x43,0x88,0x92,0xb3,0xfb,0x6e,0xce,0x86,0xd0,0xea, +0xe4,0xb3,0x50,0xfd,0x04,0x34,0x3e,0xcf,0x9f,0xbb,0x07,0x07, +0xb2,0xc5,0x73,0xb0,0xd9,0xd1,0x5b,0x26,0x25,0xbe,0x2e,0x8c, +0x43,0x5b,0xd8,0x93,0x5f,0xa1,0x06,0x44,0x94,0xfb,0x95,0x94, +0x2c,0x1e,0xd5,0x29,0x66,0x90,0xf3,0x78,0xa2,0xf5,0xc8,0xfa, +0x43,0x5b,0xcf,0x87,0x3c,0xc9,0x6c,0x5c,0xd1,0x35,0x52,0x26, +0x07,0x5a,0x38,0xe0,0xc0,0x74,0xa9,0x52,0x5c,0xa3,0x2a,0xe1, +0xad,0x4e,0x7e,0xc3,0xd6,0x8f,0xaf,0x60,0x5f,0x58,0x3d,0xcd, +0x86,0xd5,0x0f,0xc5,0xa7,0x41,0xd0,0xf2,0x0b,0x8d,0xb4,0x24, +0x07,0x6b,0x35,0xb9,0x29,0x65,0x93,0x15,0x0e,0x58,0x01,0x85, +0x4f,0x93,0xc2,0x30,0xfa,0x27,0x28,0x84,0x9a,0x54,0xf4,0xab, +0xa7,0xb5,0xa9,0x51,0xca,0x3a,0x7d,0xbf,0x08,0xcf,0xc1,0xe3, +0xf8,0x59,0x79,0x00,0xae,0xdc,0xc5,0xf4,0x77,0x88,0xcb,0xfa, +0x98,0x7e,0xdf,0xca,0xbe,0x82,0xe7,0x34,0x73,0xfb,0xae,0x4c, +0x7d,0x24,0xfd,0x8a,0x1f,0x9a,0x69,0xdf,0x4b,0xa4,0x3d,0x46, +0xfe,0x1f,0xbe,0x9e,0xb4,0xc1,0x50,0x8d,0x87,0x33,0x37,0xc5, +0x87,0xa8,0x22,0xdd,0x4e,0x4b,0x3f,0x77,0xb6,0xcb,0xe7,0xcd, +0x13,0xc6,0x8d,0x1d,0x92,0xec,0x9a,0x29,0x2d,0x82,0x3c,0x56, +0xa8,0x7a,0x90,0xf4,0x92,0x26,0x91,0x56,0x19,0xd3,0xac,0x4b, +0x16,0xaf,0x5c,0xbe,0x29,0x64,0xc7,0xfa,0xd1,0xfd,0x5d,0xb3, +0xe5,0xbe,0x23,0x46,0xf4,0xec,0x35,0x76,0xcd,0xc6,0xf1,0x74, +0x59,0x67,0xdf,0x94,0xad,0x03,0xce,0xe1,0x08,0xf5,0xb0,0xc3, +0x57,0x55,0xaa,0xb5,0xed,0x18,0xd5,0x30,0xbd,0xdb,0xf9,0xf4, +0xf5,0x6b,0x37,0xae,0x70,0x7e,0x30,0x67,0x6c,0xed,0x0e,0x9d, +0x2b,0x36,0x2f,0x94,0x2d,0x9d,0xdb,0x7d,0x35,0xfb,0xd7,0x60, +0x52,0xb8,0xb3,0x83,0x2d,0xd8,0x5c,0x78,0x42,0x9b,0x71,0x59, +0x83,0xca,0xd7,0x14,0xf5,0x06,0x55,0x98,0x8c,0xd3,0x1a,0x56, +0xb2,0xd3,0x1a,0x7a,0x51,0x73,0xd8,0xfe,0x2d,0xf4,0x0d,0xba, +0xab,0x57,0xb3,0x7e,0x24,0xdd,0xf5,0x56,0xb3,0x42,0x5e,0xe9, +0x2b,0x4f,0x73,0x6b,0xb4,0x34,0xc4,0x5b,0x2c,0x99,0xf4,0xb5, +0x4e,0x93,0x2a,0xe8,0x51,0xd6,0x72,0x52,0x05,0x6f,0x14,0x3e, +0x27,0x43,0xdf,0x21,0x7a,0x31,0x6b,0xa4,0xf4,0xd5,0xef,0xcd, +0xad,0xaa,0x83,0x58,0x8a,0x7d,0xd6,0x1f,0xf2,0xdf,0x87,0xfc, +0x55,0xb7,0x6e,0x25,0x96,0x67,0xd6,0xae,0x9f,0x3a,0x9e,0x7e, +0x7e,0xe6,0x40,0x8a,0xab,0xcb,0x9a,0xa4,0x21,0xd6,0xc4,0x61, +0xc3,0xa6,0xf5,0x0e,0xe9,0x3d,0xec,0xa3,0x5d,0xc3,0x5c,0x49, +0x1b,0xbb,0x8c,0xb2,0xc6,0xa7,0x7c,0x1e,0xf7,0x34,0xc4,0x96, +0x7b,0x04,0x40,0x82,0xa6,0xbe,0x69,0x07,0x56,0xf5,0x2f,0x3b, +0x4a,0xab,0x50,0x52,0x21,0x17,0x6e,0x42,0x76,0xaa,0xa2,0x82, +0x55,0x43,0xdd,0xc8,0xaa,0xa9,0x6c,0x93,0x79,0x5e,0x0f,0xcb, +0x16,0x9f,0x28,0x38,0x38,0x03,0x1f,0xf4,0x8b,0x94,0xad,0x37, +0xc0,0x82,0xdc,0xf6,0x36,0xb0,0xfe,0x22,0xdd,0xd0,0x97,0x5a, +0x63,0xa4,0x96,0xde,0xd6,0xd6,0xa9,0x52,0x15,0xbd,0xb5,0xb5, +0x8a,0x54,0x85,0x3d,0xb7,0xc4,0xe7,0x06,0xd8,0x3c,0xce,0x04, +0xc1,0xbc,0xd7,0xb7,0x64,0xbe,0x2f,0x91,0x9e,0x58,0xb4,0x6c, +0xe9,0x08,0x74,0xb5,0x42,0x59,0x49,0x6f,0x6c,0xf1,0x5a,0x48, +0xb0,0xfc,0x4c,0xb7,0x58,0x55,0xa2,0xf6,0xe9,0x38,0xb6,0x4b, +0x48,0xe1,0x7e,0xdf,0x42,0x98,0x6b,0x0b,0x90,0xd5,0x32,0x8c, +0x8d,0x85,0x42,0xa4,0xa2,0x73,0x5e,0xb4,0xe3,0xc9,0x4e,0xfa, +0xdd,0xcb,0x7b,0x64,0xed,0xc7,0xa8,0x7a,0xed,0xfc,0xe6,0x89, +0xd3,0x06,0x01,0x58,0xdb,0x88,0xa8,0xba,0xf4,0x84,0x8e,0xdf, +0xff,0x64,0x13,0x3f,0x75,0xff,0x27,0xab,0x37,0xba,0x56,0x8c, +0xd1,0x26,0xc8,0x43,0x3e,0x19,0xbd,0xdf,0xa9,0x1a,0x93,0xb4, +0x87,0x72,0x27,0x69,0x55,0x28,0x86,0xac,0x8b,0x86,0x05,0xde, +0x28,0xb9,0x62,0xf7,0x1e,0xf5,0xea,0x0c,0xda,0x77,0x64,0x92, +0xb3,0xd6,0x78,0xeb,0xbb,0xa9,0x59,0xad,0x7e,0x0d,0x81,0xbc, +0x77,0xaf,0x80,0xe2,0xd2,0x97,0xc9,0x2a,0x9d,0x42,0xa7,0x53, +0xeb,0xea,0xf3,0xa0,0x9b,0xd0,0x42,0x7a,0x78,0x0b,0xba,0x92, +0x54,0x2b,0x3b,0x7e,0xf2,0x1c,0x0c,0x80,0x6e,0xf4,0xf8,0xc9, +0x48,0x52,0xb9,0x52,0xb8,0x75,0x96,0xde,0x17,0xb5,0x3b,0x12, +0xbf,0xe0,0x58,0xe7,0xa7,0x21,0x67,0x2d,0xad,0x06,0x6f,0x86, +0x40,0xd7,0x77,0x32,0x04,0x6e,0xda,0x7c,0xec,0xd8,0xa6,0x41, +0x24,0xd0,0x59,0x4e,0x26,0x81,0x83,0x07,0xb5,0xc2,0xc2,0x0d, +0x82,0xef,0x50,0xe4,0x23,0x48,0x48,0x35,0x52,0x18,0x65,0xbe, +0x2a,0x14,0xae,0x09,0x21,0xd6,0xb2,0x12,0x0c,0x24,0x8f,0xc9, +0x58,0xa2,0x5b,0x1f,0x21,0x8b,0xa3,0x73,0xce,0x01,0x51,0x7f, +0x55,0x6c,0x8f,0x71,0x8c,0xb9,0x09,0x3b,0x3e,0x90,0xa0,0x94, +0x46,0xbd,0x72,0xce,0x37,0x55,0xe9,0x0a,0xa4,0x87,0xb1,0xf0, +0x10,0xea,0x29,0xea,0x6c,0x0d,0xc6,0x46,0x21,0x4f,0xeb,0x76, +0xd7,0x46,0xa3,0xe2,0xd3,0x4e,0xb1,0xf7,0x38,0xa0,0x49,0xf6, +0xd4,0xde,0x48,0xb6,0x96,0x1c,0x87,0x70,0x05,0xb5,0xe6,0x8e, +0x58,0xb3,0xb5,0xa5,0x28,0xd2,0xad,0x16,0x19,0x85,0x69,0xd7, +0x82,0x51,0x51,0x58,0x8c,0x9a,0xe8,0xe1,0x5d,0x6a,0x55,0x5f, +0xfe,0x0e,0x8e,0x8a,0x90,0xf1,0xab,0x70,0x06,0x76,0x8b,0x13, +0x15,0x7b,0x2a,0xb6,0xc8,0x4d,0x13,0xb1,0x03,0x50,0x15,0xf6, +0x5b,0xa1,0xfa,0xfa,0x29,0x0c,0x6a,0x6a,0xce,0x46,0xca,0x22, +0xb8,0x90,0x2e,0x42,0xcb,0xf9,0xf0,0x4e,0x75,0x54,0x6e,0x91, +0xfe,0x8b,0xeb,0x82,0xfc,0xcb,0x89,0xf4,0x87,0x0f,0x4f,0x74, +0x2a,0xea,0x6c,0x28,0x17,0x6d,0xd1,0xa9,0xb2,0xd3,0xd6,0x66, +0x58,0x87,0xfe,0x31,0x21,0xa5,0x9b,0x9f,0xfd,0xc6,0xf5,0xa9, +0x1e,0xf8,0xb9,0x0c,0x25,0x2a,0xfd,0x4a,0x5c,0x24,0xac,0xb4, +0x6a,0xfe,0xb4,0x68,0xfc,0xea,0xaa,0x1a,0x6b,0x25,0xe8,0xf0, +0xa5,0x9a,0xbf,0x3d,0x8f,0xd4,0xcc,0x5f,0xc0,0x55,0x48,0x74, +0x93,0x28,0x89,0x1d,0xd0,0x56,0x98,0x34,0x8d,0x85,0xa6,0xa8, +0x6d,0x45,0xb3,0x95,0x32,0x86,0x52,0x96,0x9a,0x5b,0x1e,0xdd, +0xab,0xee,0x5e,0xb1,0x6a,0x9d,0x6b,0x99,0xbc,0x6e,0xc2,0xaa, +0x9e,0x3d,0x27,0x24,0x0d,0x77,0x4e,0x94,0x87,0xaf,0x48,0xda, +0xed,0x54,0x0f,0xaf,0x5a,0xb7,0xd5,0xb5,0x52,0xde,0x9a,0xb4, +0xae,0x5d,0xbb,0xa4,0xe1,0xfd,0x9d,0xe3,0xe4,0xfe,0xab,0x86, +0x1f,0x76,0xaa,0x7a,0xa1,0xc9,0x8e,0x5f,0x8f,0x1f,0x82,0x21, +0x30,0xa4,0xe5,0xa1,0xc2,0xef,0xb6,0xee,0x4a,0x9a,0x4d,0x77, +0x95,0x56,0xe9,0xef,0xe9,0x50,0x53,0x51,0x49,0xf1,0xca,0x6c, +0x7f,0xba,0x87,0x85,0xa1,0xb8,0x4a,0x3f,0x85,0x7a,0xfe,0x72, +0x17,0x1f,0x9d,0x7e,0x0a,0xa5,0xbe,0x69,0xad,0xb3,0x0a,0xab, +0x2e,0xb3,0x79,0x9b,0x55,0x8e,0xcb,0xde,0x27,0x51,0xec,0xc7, +0x44,0xf6,0x73,0x24,0x5b,0x2c,0xa0,0xca,0x20,0x1e,0xab,0x81, +0xed,0x81,0x70,0x32,0x09,0x6b,0x55,0x83,0xa0,0x3a,0x04,0x31, +0x74,0x51,0x84,0xfa,0x97,0xb3,0xd2,0xe8,0xe8,0x47,0xcf,0xe7, +0x54,0xe1,0x33,0xba,0x9b,0xe8,0xad,0x53,0x3f,0xb2,0xbd,0x32, +0xe8,0x90,0x0e,0x7d,0x34,0xe3,0x47,0x6e,0x15,0xaa,0x2b,0x74, +0x3f,0x6c,0xd5,0x5c,0xff,0xc8,0x43,0x3d,0x63,0x41,0xf0,0x40, +0x1c,0xfd,0x32,0xe8,0xef,0xa8,0xfb,0x62,0x25,0x35,0xb3,0x4f, +0x8c,0x93,0x34,0x97,0x63,0x9a,0xf7,0x51,0x33,0xd3,0x37,0xa5, +0xac,0x5e,0xea,0x4c,0xdc,0x6d,0x9d,0x30,0x69,0x3c,0x9a,0x28, +0xaa,0xf9,0x8b,0xac,0x0d,0x3a,0x9c,0x26,0x1d,0x60,0x54,0x43, +0x32,0x8a,0x74,0x68,0x02,0x1d,0xd4,0x6c,0xf8,0x41,0x5a,0xb2, +0x61,0xf7,0x47,0x9f,0x87,0x5c,0xdd,0xdc,0xa3,0x82,0x4b,0x35, +0x7e,0xc5,0x24,0xb1,0x96,0x06,0x3b,0x65,0x35,0xf7,0x40,0x50, +0x75,0xf2,0x45,0x3d,0xfc,0x22,0x7f,0xfc,0x1e,0x9c,0xc2,0x71, +0x20,0x03,0x8b,0x57,0xbb,0xf5,0x4d,0x52,0xb3,0x4d,0xe7,0xa9, +0x13,0xfb,0x3a,0x67,0xaa,0x54,0x56,0x59,0x66,0xe3,0x1d,0x6a, +0x8b,0xbe,0x6b,0x32,0x5c,0x9b,0xe5,0x8c,0xed,0x6b,0x4e,0x38, +0x21,0x4c,0xfd,0xf5,0xb0,0x9b,0x27,0x15,0x53,0x34,0x91,0x84, +0xa9,0x28,0xdf,0x36,0x48,0xd4,0xac,0xb6,0x57,0x7e,0xe0,0xae, +0xa5,0xd1,0x59,0x51,0xd2,0x27,0xdb,0x7e,0x54,0x9d,0xcd,0x8e, +0x36,0x3c,0x7b,0x57,0x15,0xe9,0x8f,0x1a,0x8e,0x4f,0x34,0xb4, +0xcc,0x1c,0x47,0xe0,0xa2,0x35,0x4a,0x6a,0x43,0x2e,0x62,0x8f, +0xeb,0xbb,0xc4,0x59,0x25,0x9d,0xe9,0xfe,0x92,0xc9,0x52,0x91, +0x26,0xcd,0x4b,0x95,0x51,0x5f,0xd9,0x3c,0x5c,0x1d,0x73,0x29, +0x0d,0xda,0x1e,0xe5,0xe1,0xe1,0x09,0x51,0x0f,0x53,0xcd,0x06, +0x91,0xa2,0x62,0x6d,0x74,0xaf,0x48,0x6b,0xa3,0xb8,0x4c,0xf8, +0x86,0xf1,0xe1,0x4e,0xf5,0x2a,0x9a,0x25,0x39,0x1b,0xdc,0xa8, +0xd2,0xf7,0x0b,0xe7,0xcd,0xee,0x94,0x50,0xad,0x5a,0x5a,0x67, +0xab,0xca,0x8e,0xf6,0xa2,0xf9,0xd9,0xa4,0xef,0x50,0x7d,0x7f, +0x85,0x50,0xe3,0xd8,0x01,0x6b,0x2a,0xb4,0x51,0x6c,0x53,0x57, +0xa6,0x4e,0xda,0x1c,0x62,0x33,0x77,0xf0,0x36,0xb6,0x7a,0x34, +0x6c,0x78,0xe3,0xeb,0x51,0xd5,0x94,0xea,0x86,0xb1,0x17,0x64, +0x9a,0x7a,0x9c,0x35,0x06,0xfb,0xc7,0x33,0x56,0x95,0x1e,0xcf, +0x3d,0x3e,0x89,0x4f,0xb9,0xb8,0x3b,0x1b,0x6b,0xf5,0x52,0x3a, +0x0f,0xd5,0x0f,0x8b,0xb0,0x4f,0x25,0xce,0x17,0x41,0x3c,0xac, +0xbc,0x20,0xc2,0x03,0x35,0xc4,0x90,0x4d,0x35,0x79,0xe3,0x03, +0x27,0xfc,0x10,0xa5,0xae,0xfa,0x78,0xe3,0xb3,0x33,0xea,0xcb, +0xd5,0xe7,0xea,0x8c,0xb4,0x31,0x63,0xa0,0x0e,0x5d,0x22,0xae, +0x42,0x35,0x37,0x4c,0x77,0x07,0xae,0xd2,0x0f,0xa0,0x48,0x38, +0xa4,0x0c,0xb4,0x78,0x50,0x89,0x0a,0x7a,0x64,0x6e,0xd9,0x1a, +0xa0,0xc2,0x35,0x9e,0x54,0xd5,0xab,0x8b,0xb0,0x54,0x8d,0xec, +0x9b,0x98,0xd8,0x99,0x1d,0xf1,0xad,0xbe,0xfc,0x55,0x5d,0x25, +0x12,0xe6,0xaf,0x5b,0x45,0x62,0x71,0x62,0x26,0x4e,0x82,0x4e, +0xff,0x79,0xd5,0x58,0x37,0xc4,0xf1,0x1c,0xc7,0xf9,0x73,0xc6, +0x9f,0xc0,0x45,0xe3,0xbb,0x3f,0x82,0x8d,0x8b,0x40,0x7c,0x98, +0xfb,0x0a,0xdd,0x8e,0x70,0x4f,0xf1,0xf9,0x17,0x0e,0x10,0x13, +0x5e,0xe5,0x78,0x3e,0x88,0x2f,0x82,0xb8,0x38,0x5f,0x1c,0x71, +0x29,0xbe,0x2c,0xe2,0x0a,0x7c,0x65,0xc4,0x55,0xf9,0x46,0x88, +0xe3,0xf8,0xa6,0x88,0x9b,0xf3,0xed,0x10,0x77,0xe2,0xbb,0x20, +0xee,0xc6,0x2f,0x47,0xfc,0x09,0xbf,0x1a,0xf1,0x5a,0x7e,0x37, +0xe2,0x2f,0xf8,0xfd,0x88,0xd3,0xf8,0x13,0x88,0x4f,0xf1,0x6e, +0xc4,0x17,0xf9,0xc7,0x88,0x9f,0xf0,0x3f,0x22,0xfe,0x99,0xc7, +0xb4,0x78,0x0f,0xef,0x45,0xfc,0x87,0x80,0x69,0x09,0xa5,0x84, +0xd2,0x88,0xcb,0x0b,0xe5,0x11,0x57,0x12,0xaa,0x20,0xae,0x26, +0x54,0x43,0x1c,0x21,0x54,0x47,0x5c,0x53,0xa8,0x85,0x38,0x4a, +0x88,0x42,0x5c,0x5f,0x68,0x88,0x38,0x56,0xc0,0x9c,0x08,0x4d, +0x84,0x26,0x88,0x9b,0x0b,0xcd,0x11,0xb7,0x13,0x30,0x3f,0x42, +0x57,0xa1,0x2b,0xe2,0xee,0x42,0x0f,0xc4,0x89,0x42,0x1f,0xc4, +0xfd,0x84,0x7e,0x88,0x07,0x09,0x43,0x10,0x0f,0x13,0x46,0x22, +0x1e,0x23,0x8c,0x41,0x3c,0x56,0x18,0x8b,0x38,0x59,0x48,0x46, +0x3c,0x55,0x98,0x89,0x78,0x9e,0x30,0x1f,0xf1,0x72,0x01,0xcb, +0x22,0xac,0x13,0xd6,0x21,0xde,0x2c,0x6c,0x46,0xbc,0x55,0xd8, +0x81,0x78,0xbf,0x80,0x25,0x12,0xd2,0x84,0x03,0x88,0x33,0x84, +0x0c,0xc4,0xc7,0x85,0x4c,0xc4,0xe7,0x84,0xf3,0x88,0xaf,0x0b, +0xd7,0x11,0x7f,0x23,0x7c,0x83,0xf8,0x7b,0xe1,0x7b,0xc4,0xcf, +0x84,0x67,0x88,0x5f,0x08,0x2f,0x10,0x7b,0x85,0x3f,0x38,0xde, +0x62,0xb3,0x84,0x72,0xa2,0xc5,0x69,0x29,0x8f,0xb8,0x8e,0x25, +0x8e,0x13,0x59,0xdd,0x28,0xdc,0x20,0xee,0x06,0x27,0x36,0x88, +0x69,0xda,0x96,0x2b,0x90,0x38,0x6e,0xc4,0x20,0x2e,0x6c,0x50, +0xc2,0xa8,0x21,0x5c,0x4d,0xce,0x42,0xab,0xec,0xcf,0x3f,0x4d, +0x2a,0x3e,0x3a,0xb6,0x75,0x18,0x17,0x68,0xba,0xf0,0xe6,0x5d, +0xe0,0x02,0x38,0xa1,0x59,0x8b,0xa6,0x61,0x5c,0xc1,0xd6,0x2d, +0x9a,0x85,0x71,0x61,0xa6,0xbb,0x68,0xde,0x2d,0xe6,0xdd,0xca, +0x49,0x83,0x13,0x46,0x0c,0xe4,0x4a,0x30,0x5c,0x99,0xe1,0xba, +0x0c,0xc7,0x31,0xdc,0x9e,0xe1,0x9e,0x98,0x12,0x4d,0x95,0xc6, +0x2b,0xfe,0x8f,0x9e,0x2d,0x98,0xe3,0x40,0x2e,0x98,0x2b,0x62, +0xba,0x85,0x19,0x77,0x71,0x8e,0x71,0xb7,0xc6,0x18,0x77,0xf9, +0x09,0xc7,0xfb,0x95,0xf5,0x0b,0x67,0x52,0x19,0x4c,0xe3,0x10, +0xee,0xe7,0x00,0xdf,0x5f,0xb8,0x21,0xdc,0x45,0x9e,0x3e,0x41, +0x5e,0xea,0xc2,0x1f,0xc2,0x13,0xd1,0x22,0x2a,0x62,0x80,0x18, +0x80,0x4f,0x01,0x62,0x90,0x18,0x2a,0x16,0x11,0x4b,0xd2,0x77, +0xbc,0xca,0x33,0x5c,0x55,0xf8,0x43,0xac,0x29,0x46,0x8a,0x31, +0xa6,0x6b,0x4d,0xb1,0xa9,0xd8,0xda,0x7c,0x8e,0x41,0xbf,0x1c, +0x6a,0xf3,0xc2,0xf8,0xdf,0xee,0xba,0xfb,0x96,0xd7,0x13,0xf3, +0xd2,0xff,0xed,0x45,0xcb,0xf1,0xa6,0xcb,0x2c,0x1b,0xbd,0x5e, +0xcd,0xe7,0xbf,0xbd,0x82,0x18,0x27,0x42,0x19,0x37,0x28,0x3f, +0xde,0xf6,0x0a,0xc8,0xe5,0xdc,0xcb,0x2b,0xe0,0x9f,0x5c,0x58, +0x23,0xec,0x62,0x1c,0xff,0x77,0xd7,0xbf,0x8f,0xa7,0x26,0x5e, +0xad,0x73,0x6b,0xe9,0x1f,0xa5,0xfe,0x5a,0x49,0xfe,0x87,0x17, +0xab,0x67,0xdd,0x88,0xd1,0xac,0x03,0x53,0xaa,0x72,0xcb,0x40, +0x65,0x28,0x47,0x6e,0x68,0x7d,0xb3,0xfa,0x64,0x39,0xc8,0xe1, +0x60,0x28,0xad,0x49,0xb3,0xfe,0x7c,0x4b,0x6f,0xe4,0xb2,0x26, +0x6b,0xcb,0x28,0xf7,0x7c,0x08,0xc3,0x2e,0x86,0xeb,0x30,0x5c, +0x81,0xe1,0x60,0x86,0xab,0x31,0x5c,0x95,0xe1,0xa6,0x0c,0xd7, +0x67,0xb8,0x2c,0xc3,0xfe,0x0c,0x97,0x60,0x38,0x89,0xe1,0x52, +0x0c,0x9f,0x61,0xb8,0x16,0xc3,0x0e,0x86,0x2b,0xb1,0xb6,0x37, +0x9d,0x3d,0x47,0x33,0x1c,0x4b,0xb1,0xf4,0xb3,0xf4,0x1b,0x6b, +0x71,0x81,0x34,0x3f,0x7c,0x32,0xf7,0x25,0x9f,0xcc,0x4f,0xe5, +0x67,0xf3,0xf3,0xf9,0x45,0xfc,0x72,0x3e,0x95,0x5f,0xcf,0x6f, +0x41,0x97,0xb7,0xbf,0xa6,0xfe,0x83,0x6b,0xf6,0x7f,0xb8,0xe6, +0xbf,0xf1,0x5a,0xf4,0x1f,0xae,0xe5,0xff,0xe0,0x4a,0xfd,0x0f, +0xd7,0xfa,0x37,0x5e,0x5b,0xfe,0xc3,0x65,0x70,0x70,0x91,0xc9, +0xc1,0x1c,0xae,0x18,0x65,0x5a,0xc4,0xca,0xf0,0x32,0x6d,0x16, +0x63,0x8e,0x2c,0x08,0x46,0x4d,0x7a,0x18,0x9e,0xc5,0x5c,0x8a, +0xb0,0xe7,0xdf,0xd8,0x73,0x4d,0x86,0xfd,0x18,0x66,0x7d,0x26, +0x3f,0x87,0xd5,0x61,0x59,0xc9,0x18,0xcb,0x77,0x72,0x58,0xfb, +0xfc,0x95,0xff,0x43,0xb8,0xf5,0x5f,0xc1,0x12,0xbe,0x36,0x1f, +0xcd,0x37,0x42,0xbd,0xa1,0x2d,0xde,0xe3,0xf9,0x1e,0x7c,0x1f, +0xc4,0x83,0x10,0x46,0xf0,0x63,0xf9,0x49,0xfc,0x74,0x74,0x8f, +0xcf,0xbd,0xfa,0xf0,0x73,0xf8,0x05,0xfc,0x62,0xd4,0x29,0xd6, +0xf0,0x1b,0xf1,0xad,0x0f,0xbf,0x0d,0xaf,0xdd,0xec,0xc9,0xb8, +0xbe,0xe4,0x33,0x7c,0xde,0xe8,0x55,0x9b,0xa5,0x40,0xe3,0xa6, +0xa9,0x34,0xe7,0x8f,0xf3,0x67,0x98,0xfb,0x20,0x96,0x8a,0x71, +0xd1,0x74,0x68,0x4a,0xc6,0x15,0xcf,0xfc,0x2f,0x62,0x4a,0x9f, +0xe0,0x95,0x93,0xce,0xee,0x57,0xd2,0x31,0x52,0x7a,0x3d,0xad, +0x3e,0x2c,0xad,0x6b,0x08,0xcd,0x31,0x96,0x3b,0xfc,0x43,0x8c, +0xed,0x21,0x2b,0xcf,0x08,0x4c,0xdd,0x48,0xeb,0x8e,0x59,0x8e, +0xc7,0x18,0x77,0x1f,0xd4,0x79,0xfa,0xf0,0xbf,0xe5,0x86,0x5e, +0x60,0xde,0x7f,0x63,0x5c,0x68,0x84,0x79,0xea,0x81,0xf9,0x30, +0xdc,0x69,0x5a,0xdb,0xa8,0x74,0x60,0x7d,0x53,0xfc,0x25,0xed, +0x2f,0xe8,0x33,0xef,0x62,0xb8,0x06,0xc3,0xe5,0x19,0x2e,0xc5, +0x70,0x59,0x46,0x39,0x87,0x51,0x96,0x65,0xb8,0x02,0x73,0xaf, +0xc3,0x70,0x30,0xc3,0x09,0x0c,0x97,0x66,0xf8,0x5d,0x46,0xd3, +0x88,0x61,0x07,0xc3,0x95,0x18,0x0e,0x67,0xb8,0x32,0xc3,0x35, +0x28,0xe6,0xd6,0xb0,0xe7,0xaa,0x0c,0x97,0x66,0xb8,0x29,0x8b, +0x61,0x36,0xc3,0xef,0x33,0x97,0x48,0xf6,0xac,0x31,0x5c,0x92, +0xe1,0x58,0xe6,0x1e,0xca,0xb0,0x93,0x62,0xcb,0x71,0xcb,0x99, +0x97,0x3d,0x0e,0xe7,0xe4,0x54,0x84,0x62,0x5c,0x69,0xae,0x22, +0x62,0x7a,0x2f,0xcd,0x9e,0x2b,0xb2,0xf2,0x3e,0x64,0x7a,0x1f, +0x62,0x7e,0x33,0xc3,0xd3,0x04,0x1d,0x71,0x11,0x7c,0x16,0x30, +0x26,0xa7,0x25,0x8c,0x69,0xb2,0xa8,0x77,0x72,0x32,0x3e,0xa9, +0x18,0xab,0x8c,0xfa,0x6c,0x20,0x97,0x87,0x73,0x70,0xe5,0xf0, +0xa9,0x02,0xea,0xb6,0xef,0xa2,0x56,0x7b,0x02,0xe3,0x3b,0xc9, +0x9d,0xe7,0xaa,0x71,0x17,0xb9,0xcb,0x5c,0x1d,0xee,0x2a,0x77, +0x87,0x8b,0xe2,0xee,0x72,0x8f,0xb8,0xc6,0xdc,0x77,0xdc,0x13, +0xae,0x15,0xf7,0x23,0xf7,0x33,0xd7,0x0e,0x35,0xdf,0xe7,0x5c, +0x47,0xee,0x37,0xd4,0x7f,0xe3,0x51,0xff,0xe5,0xb8,0x2e,0xbc, +0xc0,0xcb,0x5c,0x4f,0x3e,0x0f,0xea,0xc2,0xfd,0x50,0x17,0x0e, +0xe5,0x06,0xf2,0x4e,0xd4,0x88,0x47,0xa0,0x2e,0x5c,0x86,0x4b, +0x42,0x5d,0xb8,0x22,0x37,0x9e,0xaf,0x8c,0x1a,0x71,0x32,0x5f, +0x8d,0xaf,0xc1,0x4d,0xe4,0x6b,0x61,0xff,0x3c,0x95,0x6f,0x88, +0xda,0xf1,0x5c,0xa6,0x1d,0x7f,0x80,0x52,0xd1,0x82,0xfb,0x90, +0x6f,0xc5,0xb7,0xe6,0x16,0x51,0x49,0xe3,0x16,0xa3,0xa6,0x1c, +0x8f,0x6d,0xa0,0x1b,0xdf,0x93,0x5b,0xc6,0xf7,0xe2,0x07,0x71, +0x29,0xfc,0x10,0x7e,0x02,0xb7,0x81,0x9f,0x88,0x6d,0x7e,0x0f, +0xff,0x3e,0xbf,0x80,0xcb,0xe0,0x3f,0xe4,0x3f,0xe6,0x32,0xf9, +0x25,0xfc,0x32,0xee,0x0c,0xca,0xcc,0x4a,0xce,0xcd,0xaf,0x42, +0x9d,0xfa,0x02,0xea,0xd4,0x9b,0xb8,0x2c,0xfe,0x33,0x7e,0x07, +0x77,0x83,0xdf,0x89,0xfa,0xf5,0x5d,0xd4,0xaf,0xf7,0x72,0x0f, +0xf8,0xfd,0xa8,0x65,0x7f,0x8d,0x5a,0xf6,0x61,0xee,0x1b,0xfe, +0x08,0xea,0xda,0x3f,0xa0,0xae,0x7d,0x9a,0x7b,0xc6,0x9f,0xe5, +0xcf,0x71,0xcf,0x51,0x9e,0x2e,0x71,0xbf,0xf1,0x97,0xf9,0xcb, +0x9c,0xce,0x5f,0xe5,0x6f,0x72,0x1e,0xfe,0x36,0xff,0x35,0xf7, +0x07,0xff,0x08,0x25,0x52,0xa6,0x9a,0x38,0xaf,0xa2,0x54,0x3e, +0xe5,0x6d,0xfc,0x2f,0xfc,0x73,0x3e,0x00,0x65,0xf1,0x37,0x3e, +0x10,0xb5,0xf2,0x17,0xbc,0x1d,0xb5,0x72,0x01,0x25,0xc3,0x22, +0xf8,0xa3,0xf4,0xd8,0x84,0x60,0xbe,0xa8,0x10,0x2a,0x14,0xe1, +0x2b,0x52,0x3d,0x9d,0x8f,0x10,0x2a,0x0b,0x95,0x51,0x3e,0xaa, +0x0b,0xd5,0xf9,0x9a,0xa8,0x9b,0xd7,0xe4,0x6b,0x51,0xdd,0x9c, +0xaf,0x8d,0xba,0x79,0x7d,0x94,0xb9,0x86,0x42,0x43,0xbe,0x2e, +0xd5,0xd0,0xf9,0x7a,0x54,0x43,0xe7,0xa3,0xa8,0x56,0xce,0x47, +0xa3,0x56,0xde,0x9d,0xaf,0x8f,0x5a,0x79,0x22,0xdf,0x80,0xea, +0xe3,0x7c,0x43,0xd4,0xc7,0xb1,0xb5,0x50,0x7d,0x9c,0x6f,0x82, +0x3a,0xf8,0x0c,0x94,0x2d,0xd4,0xc1,0xf9,0x96,0x54,0x07,0xe7, +0xdb,0x50,0x1d,0x9c,0x6f,0x4b,0xb5,0x6f,0xbe,0x1d,0xd5,0xbe, +0xf9,0x4e,0x54,0xfb,0xe6,0xe3,0xa9,0xf6,0xcd,0x77,0x41,0xed, +0xfb,0x04,0xdf,0x95,0x6a,0xdf,0x7c,0x77,0xaa,0x7d,0xf3,0x3d, +0xa9,0xf6,0xcd,0x27,0x52,0xbd,0x9b,0xef,0x45,0xf5,0x6e,0xbe, +0x37,0xd5,0xbb,0xf9,0x3e,0x54,0x5b,0xb6,0x14,0x46,0x89,0x29, +0xc5,0x74,0x53,0x8e,0x93,0xf0,0x12,0x50,0x6a,0xfc,0x51,0xdf, +0x2c,0x88,0x97,0x05,0x65,0xd1,0x89,0x1a,0x72,0x11,0xbc,0x24, +0xae,0x04,0x5e,0x32,0x57,0x19,0x2f,0x3f,0x94,0xa1,0xd3,0x28, +0x55,0x67,0xb9,0xfb,0x28,0x5d,0x0f,0x51,0x56,0x4a,0xa2,0x7c, +0x58,0xb8,0x6a,0xbc,0x84,0x92,0x51,0x8f,0x7f,0x87,0x0f,0xe3, +0x1a,0xf2,0x45,0x50,0x32,0x5a,0x60,0xbd,0xf6,0xe5,0x5a,0xf2, +0xfd,0xf9,0x01,0x5c,0x3c,0x3f,0x9c,0x1f,0x85,0x32,0x34,0x8d, +0x9f,0xcb,0xf5,0xe0,0xff,0x85,0x75,0xd9,0x1f,0xeb,0x6f,0x2b, +0x37,0x86,0xdf,0x8e,0x35,0x37,0x85,0x3f,0xc0,0x1f,0xe3,0x66, +0xf2,0x27,0xb0,0xb6,0x16,0x20,0x97,0x65,0x6e,0xa1,0x90,0x47, +0x50,0xb8,0x15,0x42,0x7e,0xa1,0x00,0xb7,0x92,0xd9,0x41,0xab, +0x29,0x7f,0xb9,0x4f,0x29,0x7f,0xb9,0xb5,0x94,0xbf,0xdc,0x3a, +0x66,0xd7,0xac,0xa7,0xbc,0xe3,0x36,0x50,0x4e,0x71,0x1b,0x99, +0xb5,0xb2,0x85,0x59,0x2b,0xdb,0x99,0x55,0xb2,0x83,0x72,0x84, +0xdb,0xc9,0xec,0x91,0xdd,0xcc,0x1e,0xd9,0x8b,0xe5,0xff,0x9d, +0xdb,0x47,0xf5,0x71,0xb4,0x3d,0x50,0xe3,0xb0,0x14,0x41,0xdb, +0xc3,0xc6,0x6c,0x8f,0x10,0xe4,0xc5,0x12,0xc6,0x0f,0x0b,0x96, +0xd9,0x0f,0x4b,0xa9,0x60,0x4b,0xca,0x87,0xd6,0x44,0x7e,0x2c, +0xab,0x9d,0x2b,0x80,0x6d,0x29,0x08,0x79,0x53,0x08,0xb5,0xf2, +0x10,0x2e,0x94,0xd3,0x90,0x43,0x2e,0xd4,0xe2,0x0b,0x23,0x8f, +0x8a,0x62,0x8b,0x2d,0x8e,0x5c,0x7a,0x17,0xf9,0x51,0x0a,0xdb, +0x6d,0x19,0xae,0x2c,0xb6,0xbb,0xf2,0xd8,0xee,0x2a,0x72,0x95, +0x90,0x6f,0x55,0xb8,0xaa,0xd8,0xe6,0xc2,0xb1,0x15,0x66,0x72, +0x67,0xb8,0x6c,0xee,0x01,0xda,0x97,0xbf,0xf2,0x3c,0x6f,0x45, +0x8e,0x15,0xe7,0xcb,0xf0,0x65,0xf9,0x4a,0x68,0x49,0xd6,0xe4, +0xeb,0x61,0xef,0xd9,0x80,0x6f,0xc9,0xb7,0xe1,0xdb,0xf1,0x89, +0x7c,0x3f,0x7e,0x20,0x3f,0x18,0x47,0xcd,0xd9,0xfc,0x3c,0x1c, +0x27,0x53,0xf8,0xcd,0xd8,0x13,0xef,0xe3,0xbf,0x62,0xbd,0xf8, +0x39,0xde,0xcd,0x67,0xf1,0x57,0xf8,0x5b,0xfc,0x3d,0xec,0x65, +0xbf,0xe1,0x9f,0xf1,0xbf,0xf2,0x80,0x92,0x4a,0x78,0xaf,0x20, +0x0a,0x7e,0x82,0x2a,0xe4,0x15,0x42,0x28,0xef,0xd0,0x82,0xac, +0x84,0xdc,0xab,0x82,0xd6,0x23,0x5a,0x8e,0x02,0x95,0xcb,0xfa, +0x42,0x03,0x94,0x48,0x94,0x46,0x94,0xc5,0xe6,0x68,0x25,0x76, +0xa5,0xd6,0x21,0x72,0xb2,0x97,0xd0,0x5b,0xe8,0x83,0xd6,0xe1, +0x20,0x61,0xb0,0x30,0x04,0x25,0x71,0xb8,0x30,0x42,0x18,0x89, +0xb2,0x38,0x16,0x6d,0xc2,0x99,0x68,0xf9,0xed,0x47,0x39,0xcb, +0x44,0x3e,0x7e,0x4f,0x17,0xb1,0x18,0x16,0x1c,0xca,0x51,0x28, +0x5b,0x56,0x63,0x45,0x4e,0xbd,0xc3,0x95,0xe2,0x4b,0x63,0x59, +0x3a,0xf1,0x9d,0xf9,0x2e,0xd8,0xe2,0xdc,0x4c,0xd7,0x42,0x4b, +0x8d,0xef,0x28,0x77,0x7b,0xc5,0x9e,0x8b,0x61,0xf6,0xdc,0x8e, +0x5c,0x7b,0xae,0x00,0x93,0x41,0xda,0x17,0x16,0x44,0x6e,0x96, +0x44,0xce,0x55,0x45,0x6b,0x2f,0x92,0x8b,0xe1,0x9a,0x72,0xad, +0xb1,0x27,0xea,0xc6,0xf5,0xe2,0x06,0x70,0xc3,0xb8,0x31,0xb9, +0x56,0x5f,0x4d,0x16,0xce,0xc1,0x7a,0xbc,0xbc,0x58,0x3b,0x85, +0xb0,0x36,0x8a,0x22,0xef,0x2b,0x20,0x9f,0x6b,0x61,0x9f,0x16, +0xcb,0x35,0x63,0xcb,0x7b,0xba,0x73,0xbd,0xb9,0x81,0xdc,0x70, +0x2e,0xc9,0xa4,0x17,0xb0,0x66,0x6d,0x98,0x5e,0x30,0xd6,0x9d, +0xd1,0xdb,0x86,0x73,0xb5,0xb9,0x68,0xae,0x11,0xd7,0x9c,0x6b, +0x8b,0xbd,0x5d,0x0f,0xae,0x0f,0x5a,0x9f,0x23,0xb8,0xb1,0xb9, +0x56,0x64,0x5d,0x66,0x45,0x0e,0x31,0xf3,0x29,0xa2,0x5c,0xe4, +0xc3,0x78,0x42,0xb0,0xbe,0xcb,0x60,0xdd,0x46,0x60,0x2f,0x5a, +0x1f,0x7b,0xcf,0x16,0xd8,0x6b,0x76,0xe6,0x12,0xb8,0xbe,0xdc, +0x60,0x6e,0x24,0x37,0xce,0x4c,0x8d,0xda,0x7c,0x74,0xc1,0x51, +0x28,0xca,0x49,0x09,0x94,0x89,0xca,0x5c,0x75,0xae,0x2e,0xd7, +0x80,0x8b,0xe3,0x5a,0x72,0xed,0xb1,0xbf,0xee,0xc9,0xf5,0xc3, +0x98,0x47,0x71,0xe3,0x4d,0x7a,0x2b,0x72,0x32,0x3f,0xf2,0x51, +0x43,0xa9,0x7a,0x17,0x25,0xa8,0x0a,0x57,0x83,0xab,0xc7,0x35, +0xe4,0x9a,0x60,0xcf,0xdc,0x81,0xeb,0xca,0x25,0x72,0xfd,0xb9, +0xa1,0xdc,0x68,0x6e,0x02,0x97,0x9c,0x90,0x30,0x68,0x94,0xf0, +0x98,0xe1,0x67,0x0c,0xbf,0xa0,0x58,0x14,0x18,0x56,0x18,0x0e, +0x4c,0x4c,0x1c,0x3c,0x4c,0x0c,0x66,0xb8,0x08,0xc3,0xa5,0x19, +0xae,0xcc,0x70,0x4d,0x86,0xa3,0x7b,0x0d,0x19,0x3a,0x58,0x8c, +0x63,0xb8,0x25,0xc3,0xed,0x19,0xee,0xc2,0x70,0x4f,0x86,0xfb, +0xf5,0x19,0x91,0x90,0x28,0x0e,0x61,0x78,0x14,0xc3,0xe3,0x19, +0x9e,0xc2,0xf0,0x4c,0x86,0xe7,0x0d,0x1a,0x32,0x7a,0xb0,0xf8, +0x21,0xc3,0x4b,0x19,0x4e,0x61,0x78,0x2d,0xc3,0x9b,0x19,0xde, +0x31,0x68,0x68,0xe2,0x20,0xf1,0x0b,0x86,0x0f,0x30,0xfc,0x15, +0xc3,0x99,0xe8,0x39,0x42,0x3c,0xc7,0x70,0x16,0xc3,0x37,0x18, +0xbe,0xcb,0xf0,0x37,0x0c,0x3f,0x19,0x4a,0x63,0x78,0xc6,0xb0, +0xce,0xf0,0x1f,0x14,0x5b,0x2c,0x0c,0x2b,0x0c,0x07,0x0c,0x1d, +0xd1,0x6b,0x88,0x25,0x88,0xe1,0x50,0x86,0x8b,0x30,0x5c,0x92, +0xe1,0xf2,0x0c,0x57,0x1d,0x89,0x9c,0xb1,0xd4,0x64,0x38,0x92, +0xe1,0x18,0x86,0x9b,0x32,0xdc,0x9a,0xe1,0x8e,0x23,0xfb,0x0f, +0xe9,0x63,0xe9,0xc6,0x70,0x2f,0x86,0x07,0x30,0x3c,0x8c,0xe1, +0x31,0x0c,0x27,0x8f,0x1c,0x59,0xb1,0x92,0x65,0x2a,0xc3,0xb3, +0x19,0x9e,0xcf,0xf0,0x22,0x86,0x97,0x33,0x9c,0x8a,0xb8,0xb2, +0x65,0x3d,0xc3,0x5b,0x18,0xde,0xc9,0xf0,0x3e,0x86,0x0f,0x32, +0x7c,0x14,0x71,0x15,0xcb,0x29,0x86,0xcf,0x33,0x7c,0x85,0xe1, +0x5b,0x0c,0xdf,0x67,0xf8,0x5b,0xc4,0x55,0x2d,0x3f,0x32,0xfc, +0x9c,0xe1,0x17,0x14,0x5b,0x39,0x86,0x25,0x86,0xfd,0x11,0x57, +0xb3,0x06,0x32,0x5c,0x90,0x61,0x27,0xc3,0xc5,0x18,0x2e,0xcd, +0x70,0x45,0xc4,0xe1,0xd6,0x70,0x86,0x6b,0x33,0x1c,0xcd,0x70, +0x23,0x86,0x9b,0x33,0xdc,0x16,0x71,0x84,0x35,0x9e,0xe1,0x1e, +0x0c,0xf7,0x61,0x78,0x10,0xc3,0x23,0x18,0x1e,0x3b,0x72,0x74, +0xcf,0x91,0xd6,0x49,0x0c,0x4f,0x67,0x78,0x0e,0xc3,0x0b,0x18, +0x5e,0xcc,0xf0,0x27,0x23,0x47,0x0f,0x1b,0x69,0x5d,0xc3,0xf0, +0x46,0x86,0xb7,0x31,0xbc,0x9b,0xe1,0x2f,0x19,0xce,0x18,0xdf, +0x7b,0xc4,0x50,0xeb,0x71,0x86,0xcf,0x30,0x7c,0x91,0xe1,0x6b, +0x0c,0xdf,0x61,0xf8,0x21,0xd3,0x6c,0x8c,0x7e,0xe4,0xed,0xef, +0xb4,0x97,0x7e,0xfb,0x3b,0x8f,0x6d,0xfa,0x3f,0x63,0xf9,0x2d, +0xb0,0xed,0x2d,0xb0,0x31,0xfb,0x63,0x35,0xe7,0x85,0x38,0x63, +0x66,0x0a,0xb1,0xdf,0x5b,0xe0,0xbc,0x6f,0x81,0xa5,0xb7,0xc0, +0xef,0xbc,0x05,0x56,0xff,0x3d,0xe6,0xfb,0x21,0x0e,0x40,0xdd, +0x8d,0xe2,0x2e,0x0c,0xb7,0x67,0xb8,0x25,0xc3,0x71,0x0c,0x37, +0x42,0x9c,0x9f,0x8f,0x66,0xb8,0x36,0xc3,0xe1,0x0c,0x57,0x64, +0xb8,0x34,0xc3,0x25,0x11,0x07,0xd2,0xd9,0x55,0xc4,0xa1,0x0c, +0x07,0x31,0x1c,0xc0,0xb0,0xc2,0xb0,0x1f,0x62,0x3b,0x4f,0x17, +0x70,0xda,0x39,0x2f,0xc3,0xbf,0x31,0xfc,0x33,0xc3,0x8f,0x19, +0xfe,0x16,0x71,0x01,0xd4,0x4b,0x28,0xbe,0xc5,0xf0,0x15,0x86, +0xcf,0x33,0x7c,0x8a,0xe1,0x4c,0xc4,0x0e,0xee,0x2b,0x86,0x0f, +0x30,0xfc,0x05,0xc3,0x3b,0x18,0xde,0xcc,0xf0,0x46,0xc4,0x41, +0xdc,0x1a,0x86,0x3f,0x61,0x78,0x31,0xc3,0x0b,0x18,0x9e,0xc3, +0x30,0xc7,0x34,0xf7,0xff,0x8c,0x95,0xb7,0xc0,0xf9,0xfe,0x13, +0xe6,0x99,0x89,0x4b,0x8d,0x5d,0x3a,0x5d,0x88,0x60,0xa1,0xd3, +0x85,0xd4,0xe0,0xc5,0x51,0xa8,0x3a,0x8e,0x92,0x8d,0x70,0x34, +0xe9,0x88,0x23,0x57,0x3f,0x1c,0x21,0xc7,0x72,0x53,0xb8,0xd9, +0x98,0xd7,0xa5,0x5c,0x2a,0x96,0x64,0x07,0xea,0x3a,0x19,0x58, +0xea,0xf3,0xdc,0x35,0xd4,0xf2,0xbf,0x45,0x7e,0xe9,0x38,0x64, +0x07,0x18,0x51,0x5a,0xce,0x1b,0x92,0x67,0x8d,0x36,0xde,0x19, +0xa7,0xe8,0xfd,0x8a,0x79,0xbf,0x65,0xde,0x6f,0x98,0xf7,0x6b, +0xa6,0xec,0x9a,0xef,0x42,0x03,0xf3,0xde,0xde,0xbc,0xf7,0x33, +0xef,0xe3,0xcd,0xfb,0x3c,0xf3,0x9e,0x62,0xde,0x3f,0x31,0xef, +0xcb,0xcd,0xfb,0x52,0xf3,0x7e,0xca,0xbc,0x5f,0x34,0xef,0x66, +0x3e,0x84,0x73,0xe6,0xfd,0xcc,0x6b,0x74,0x99,0xe6,0xcc,0x69, +0x6d,0x26,0xcd,0x56,0x71,0x9b,0x98,0x21,0x5e,0x14,0x1f,0x8a, +0xbf,0x99,0xe5,0x7a,0xc2,0x09,0x56,0x1b,0x67,0x41,0x1d,0xaa, +0x33,0xea,0x44,0x04,0xdf,0x38,0x9f,0x37,0xde,0x62,0xe8,0x2d, +0x14,0x0b,0xd6,0xf2,0xd8,0x06,0xa7,0x72,0xd3,0x90,0x0b,0x65, +0x31,0xb6,0x40,0x6e,0x37,0x77,0x87,0x0f,0x45,0x4b,0xa6,0x0b, +0x8e,0xdb,0x45,0x50,0x3f,0xa8,0x8c,0x9a,0x46,0x34,0x8e,0xd7, +0xad,0x51,0x37,0xe8,0x89,0x3a,0xc8,0x08,0x1c,0xab,0xa7,0xa2, +0x14,0x7c,0xc8,0x2d,0x17,0x2b,0x20,0xff,0x46,0x73,0xb5,0xc5, +0x8a,0xec,0x5e,0x47,0xac,0xcc,0xee,0x75,0xc5,0xaa,0xec,0x5e, +0x4f,0xac,0xce,0xee,0x91,0x62,0x4d,0x76,0x8f,0x12,0x6b,0xb1, +0x7b,0xb4,0x58,0x8f,0xdd,0xeb,0xb3,0xf0,0x49,0x66,0xf8,0x24, +0x33,0x7c,0x92,0x19,0x3e,0xc9,0x0c,0x9f,0x64,0x86,0x4f,0x32, +0xc3,0x27,0x99,0xe1,0x93,0x50,0xeb,0xc8,0x9d,0x51,0x16,0x2b, +0x99,0x39,0xa8,0x66,0xa6,0x5c,0xc9,0x8c,0xb1,0x9a,0x11,0x13, +0x96,0xcc,0x86,0x52,0xeb,0x44,0x1d,0xa4,0x3c,0x17,0x2e,0x56, +0x31,0xf3,0x19,0x6e,0x52,0xd7,0x36,0xf3,0x55,0xc5,0x4c,0x3f, +0xdc,0x4c,0xbf,0xb6,0x91,0x1e,0x72,0x08,0xc3,0x8b,0x11,0x26, +0x75,0x84,0x19,0xe7,0xcb,0xd4,0x6b,0x98,0xe5,0xac,0x63,0xc6, +0x53,0xc3,0xcc,0x77,0x9d,0x57,0xc2,0xd7,0x35,0x7d,0xeb,0xe6, +0xb8,0x8a,0xa7,0x38,0x45,0x0c,0x11,0x43,0x45,0x4d,0x74,0x8a, +0x2e,0x31,0x4c,0x2c,0x2c,0x16,0x11,0x8b,0x8a,0xc5,0xd0,0x67, +0x07,0xfa,0x14,0x17,0x4b,0x88,0xef,0x8a,0x25,0xc5,0x52,0x62, +0x69,0xb1,0x8c,0x58,0x56,0x2c,0x27,0x62,0x5d,0x89,0x8b,0xd1, +0x47,0x16,0xfd,0xc4,0x3c,0xa2,0x22,0xaa,0xa2,0xbf,0x98,0x57, +0xb4,0x89,0xf9,0x44,0xd4,0xd5,0xc4,0x64,0xf4,0xc9,0x2f,0x06, +0x8a,0x76,0xb1,0x80,0xe8,0x10,0x83,0xc4,0x77,0xc4,0x82,0x62, +0x21,0x31,0x18,0x7d,0x7a,0xfe,0x8d,0x0f,0x2f,0x36,0xa2,0xbf, +0xfc,0x88,0xad,0xff,0x7c,0x8e,0x98,0xf6,0x61,0x82,0xd8,0x0d, +0x4b,0x24,0xa0,0x84,0xdf,0xe4,0x6e,0xa3,0x6d,0x9c,0x8d,0xad, +0xe6,0x1e,0xf6,0x29,0x0f,0xd0,0xd6,0xf9,0x9a,0xfb,0x06,0xed, +0xe4,0x6f,0xd1,0x4e,0x7e,0xcc,0x7d,0x8f,0xb6,0xf2,0x0f,0x68, +0x2b,0xff,0xc4,0xfd,0x8c,0x1a,0xf6,0x74,0xb4,0x3e,0x04,0x31, +0x06,0xfb,0xf4,0x3c,0x7c,0x7e,0xb4,0x17,0xed,0x7c,0x01,0x8c, +0x8f,0xfe,0xa6,0xc4,0x8b,0xd4,0xae,0xe2,0xb1,0x26,0xf9,0x1c, +0x4c,0x7f,0x57,0x41,0xea,0xca,0xa8,0xa5,0x0a,0x38,0xb2,0xd4, +0xe4,0xe6,0xfe,0x93,0xd4,0x72,0xe2,0xe7,0x3b,0x62,0xba,0xe5, +0x84,0x0a,0xa8,0xdb,0x57,0x15,0xc2,0x51,0xaf,0xaf,0x29,0xd4, +0x16,0xea,0xa2,0x66,0x1f,0x2b,0xc4,0x09,0xcd,0x84,0x96,0x42, +0x6b,0xa1,0xad,0xd0,0x41,0x88,0x17,0xba,0x08,0x3d,0x85,0xfe, +0xc2,0x40,0x61,0xb4,0xf0,0x1e,0xcd,0x27,0x6d,0x7b,0x4c,0xde, +0xfc,0x51,0x12,0x3a,0xbe,0xd4,0x4f,0x2d,0xe5,0x38,0xc1,0x92, +0xcf,0x52,0x02,0xb1,0xdd,0x52,0x12,0x71,0x01,0xcb,0xbb,0x88, +0x83,0xb0,0x4c,0x86,0x56,0xee,0xe4,0x8a,0xa1,0xa5,0x24,0xa0, +0xd5,0x54,0x8a,0xd1,0x94,0x61,0x34,0xa5,0x11,0xbf,0x63,0x29, +0x8b,0x38,0xd8,0x27,0xae,0xe2,0x8c,0xae,0x08,0xa3,0x2b,0xca, +0xe8,0x8a,0x31,0x0a,0x91,0xfe,0x4e,0xc4,0xda,0xb3,0xd1,0xa9, +0xbd,0x74,0x39,0xee,0xe3,0x42,0x5b,0xf8,0x97,0x86,0xbb,0x8f, +0xcb,0x51,0x84,0x6d,0x3e,0xa1,0xf6,0x61,0x39,0x2c,0xb9,0xa1, +0xd0,0xe4,0x41,0x4e,0x0a,0x26,0x2f,0x6f,0xfd,0x9f,0x72,0x93, +0xce,0xb7,0x84,0x62,0x5f,0xf1,0xd7,0x9e,0x42,0x60,0x36,0xa4, +0x8c,0x3a,0x7c,0x4d,0xd4,0xf9,0x1b,0x72,0x31,0x28,0xed,0xc5, +0x31,0xf7,0xb1,0x28,0xf3,0x25,0xf0,0xde,0x08,0x25,0xff,0x5d, +0xbc,0x37,0x46,0xf9,0x2f,0x89,0xf7,0x38,0x6c,0x05,0xa5,0xf0, +0xde,0x04,0xdb,0x42,0x69,0xbc,0x37,0xc5,0x16,0x51,0x06,0xef, +0xcd,0xb0,0x5d,0x94,0xc5,0x7b,0x73,0x6c,0x1d,0xe5,0xf0,0xde, +0x42,0x2c,0x46,0xdb,0x02,0xf6,0xa7,0x81,0xd4,0x7e,0xb4,0x84, +0xa2,0xfd,0x1a,0x62,0xa9,0x6b,0xa9,0x67,0x89,0xb4,0x44,0x59, +0xa2,0x2d,0xf5,0x2d,0x0d,0x2c,0x0d,0x2d,0x31,0x96,0x58,0x4b, +0x23,0x4b,0x63,0x0b,0x1d,0x89,0x2d,0x68,0x51,0x76,0x41,0x0b, +0xd1,0xcb,0x7a,0xbe,0x77,0x10,0x17,0x12,0xca,0xa2,0x65,0x58, +0xd1,0xb4,0x0b,0x6b,0xa0,0x5d,0x58,0x87,0x7d,0xac,0xd0,0x58, +0x68,0x2a,0xb4,0x10,0x5a,0x09,0x6d,0x84,0xf6,0x42,0x27,0xa1, +0xb3,0x90,0x80,0xf6,0xe0,0x00,0x61,0x94,0x30,0x45,0x58,0xc6, +0xf4,0x15,0x1c,0x8d,0x11,0x0b,0x28,0xbd,0xf5,0x90,0xf3,0x51, +0x78,0x59,0xd9,0x7b,0x75,0xbc,0x38,0x74,0xad,0xcf,0xa8,0x04, +0x2c,0x6f,0x03,0x7c,0x8f,0x45,0xbb,0x88,0x67,0x2e,0xd5,0xf1, +0x5d,0x40,0x5a,0xf6,0x3b,0x1d,0x77,0x84,0xc3,0xfa,0xe4,0x8e, +0x73,0xd7,0x39,0x11,0x6d,0xd4,0x52,0xdc,0x3b,0x68,0xc1,0x4f, +0x43,0x29,0xa3,0x7a,0x91,0x1f,0x9f,0x97,0xb7,0xf1,0xf9,0xd8, +0x28,0xc5,0xf3,0x1d,0x58,0x08,0x3a,0xea,0xd6,0x62,0x5a,0x50, +0x75,0x7c,0xa6,0xa1,0x8f,0x73,0x27,0x70,0x5c,0x3b,0x89,0xe3, +0xfa,0x69,0xb4,0xa8,0xcf,0x72,0xe7,0x38,0x37,0x8e,0x5f,0x17, +0xb8,0x8b,0xdc,0x25,0x2e,0x8b,0xbb,0x8c,0x63,0xd8,0x55,0x1c, +0xaf,0xae,0xe7,0xc4,0xc5,0x77,0xc0,0x74,0xfe,0x69,0x89,0x31, +0x4f,0xac,0xd4,0xa2,0x25,0xbf,0xc5,0xc1,0xb8,0x66,0xc9,0xb1, +0x73,0x19,0x1f,0x83,0x58,0xde,0xfc,0xd8,0x73,0x18,0x7b,0xf6, +0x37,0x67,0x16,0x50,0x83,0xb2,0x14,0xb2,0x68,0x9c,0xc2,0xe6, +0x17,0xf2,0x31,0xbf,0xbc,0x6c,0x86,0xc5,0x89,0x16,0x23,0x87, +0xf6,0xfc,0x3c,0x2e,0x98,0xce,0x7e,0x73,0x21,0x68,0xd7,0xa7, +0x70,0xa1,0x74,0x2e,0x97,0xd3,0xf8,0x3d,0xfc,0x1e,0xce,0x89, +0xf6,0xfd,0x71,0xce,0x85,0x76,0xfd,0x3d,0x2e,0x0c,0x6d,0xfb, +0x87,0x5c,0x61,0xfe,0x27,0xfe,0x27,0xae,0x08,0x5a,0xf5,0x7e, +0x5c,0x51,0xb4,0xec,0x55,0xb4,0x5c,0x05,0xda,0xa2,0xb0,0x4d, +0x19,0x33,0x18,0x34,0xfe,0x9a,0x8c,0x4f,0x94,0x37,0xc7,0xfe, +0x0f,0xb9,0x43,0x7f,0xd9,0xf4,0x63,0xda,0x29,0x95,0x00,0x9e, +0x49,0x80,0xc0,0x6a,0xda,0x9f,0xea,0xa3,0x96,0x20,0xe4,0x92, +0x91,0x53,0xd1,0x12,0x86,0x5c,0xb2,0xb0,0xfc,0x5a,0x85,0x8e, +0x5c,0x18,0x42,0x34,0x42,0x6d,0x84,0xee,0x08,0x6d,0xcd,0xe7, +0xfa,0x08,0x8d,0xcd,0x7b,0xce,0x7b,0x4f,0x84,0x01,0x08,0x5d, +0x11,0xfa,0x23,0xb4,0x44,0x08,0x37,0xdd,0xa3,0xcd,0xf0,0x94, +0xb6,0x99,0x49,0xff,0x2e,0x42,0x17,0x84,0x48,0x04,0x27,0x42, +0x1d,0x84,0x6a,0x08,0xed,0x10,0x5c,0x08,0x1d,0x11,0x62,0xcc, +0x70,0xf1,0x26,0x54,0x37,0xe3,0xa5,0xf9,0x88,0x33,0x69,0xc7, +0x22,0x34,0x30,0xdd,0xab,0xfb,0xd0,0xd1,0x7b,0x39,0x84,0x42, +0xa6,0x5f,0x31,0x84,0xa2,0x08,0xc1,0x08,0xf9,0x11,0x2a,0x9a, +0x74,0x39,0x40,0xd3,0x8e,0x32,0xdd,0x8b,0x98,0xe5,0x8b,0x34, +0xdd,0x22,0xcc,0xe7,0x5a,0x3e,0x50,0xdb,0x4c,0xbf,0xba,0xc9, +0xa7,0x66,0x26,0x4d,0x33,0xb3,0x2c,0x91,0x66,0xda,0x75,0x11, +0x56,0xf8,0x40,0x6d,0x13,0x38,0x13,0xe8,0xf3,0x7d,0x84,0xb2, +0xe6,0xfd,0x8c,0x01,0xbc,0x84,0xf7,0xad,0x08,0x47,0x10,0xb2, +0x11,0x5a,0x21,0x0c,0x36,0xfd,0xe9,0x7d,0x33,0xc2,0x09,0x33, +0x9f,0xd1,0x66,0xd8,0xfb,0x66,0xb9,0x69,0x1e,0xce,0x9a,0xf5, +0x71,0xcf,0xe4,0x61,0x7f,0x13,0x72,0x78,0x19,0xe8,0x03,0x98, +0x0f,0x3e,0x8f,0x01,0x2c,0x9d,0x72,0x66,0xde,0x46,0x23,0x04, +0x20,0xcc,0x41,0x98,0x87,0xf0,0x1e,0xc2,0xf7,0x08,0x1f,0x22, +0x94,0x31,0xeb,0x27,0xc6,0xa4,0x09,0x30,0xc3,0x55,0x35,0xcb, +0x9c,0x03,0x1d,0x7d,0x9e,0x73,0xfc,0xda,0xbd,0x06,0x39,0x79, +0xdf,0x69,0xde,0x4b,0x9b,0x74,0x05,0xcd,0x3a,0x53,0xcd,0x7a, +0x8b,0x31,0xd3,0xa5,0xe5,0x6d,0x6a,0xca,0x01,0xba,0xfd,0x79, +0xd9,0x8c,0xbb,0x32,0x42,0x90,0x8f,0xec,0x50,0xb7,0x10,0x84, +0x4a,0x66,0x78,0x5a,0x6f,0xad,0x11,0x42,0xcd,0xf7,0x50,0xb3, +0xfe,0x42,0x4c,0xfa,0x72,0x3e,0xf2,0x50,0xce,0x8c,0xa7,0x84, +0x09,0xd1,0xff,0xcb,0xf0,0x8e,0xcf,0x73,0xed,0xff,0x65,0x08, +0xf1,0x79,0x56,0x4c,0x68,0xfb,0x06,0x28,0x67,0xd2,0x44,0x9b, +0x6d,0xf2,0xbf,0x81,0xd2,0xff,0xc1,0xff,0xf5,0xbc,0x15,0xc6, +0xfa,0xfa,0xce,0x94,0xcd,0x7f,0x02,0xb4,0xde,0x7a,0x99,0xfd, +0x4b,0x57,0x9f,0x7e,0x66,0x80,0xd9,0xbe,0x5f,0x87,0x9e,0xaf, +0x01,0xe7,0xd3,0x17,0xbd,0x0d,0x54,0x30,0xe1,0x6d,0x68,0x4b, +0xfa,0x3c,0xdb,0xcc,0xf6,0xd7,0xcc,0xa7,0xaf,0x7b,0x1d,0x68, +0x9b,0xed,0x63,0xca,0xdf,0xbb,0xaf,0x41,0x77,0xb3,0x5f,0xfc, +0x7f,0x05,0xce,0xd7,0xa0,0xda,0xbf,0x01,0xdf,0x36,0xea,0xfa, +0x7f,0x08,0x05,0x4c,0x88,0x79,0x03,0x74,0x37,0xdb,0x74,0x90, +0x4f,0xdf,0xf5,0x4f,0xa1,0xdc,0x6b,0x63,0xc8,0xeb,0xa0,0xf8, +0x8c,0x2b,0xff,0x04,0x72,0x78,0x13,0xe7,0x33,0x1e,0x8d,0x36, +0xc7,0xa4,0x1c,0x28,0xf9,0x37,0xf2,0x59,0xfd,0x2d,0x21,0x47, +0x0e,0xdf,0x86,0xb6,0xa4,0xcf,0x73,0xf1,0x37,0xf0,0xe0,0x75, +0xa8,0x67,0x8e,0x51,0xbe,0x10,0xff,0x37,0xf9,0xfd,0xdf,0x82, +0xa2,0xaf,0x41,0xfe,0x7f,0x03,0x15,0x7d,0x80,0xb6,0xdd,0xf2, +0x08,0xcd,0xcd,0x7c,0x87,0x9b,0x32,0x93,0xd3,0x7f,0x36,0x44, +0x18,0x68,0x8e,0x0b,0xb3,0xcc,0x71,0x2c,0xc8,0x47,0x3f,0x71, +0xfa,0xe8,0x19,0x0d,0x7c,0xda,0x59,0xce,0x7d,0xa0,0x09,0xc1, +0xe6,0xd8,0xdd,0xc8,0xf4,0xa3,0xf1,0x27,0x98,0xe9,0x77,0x7f, +0x39,0xe6,0xb0,0xf4,0xab,0x99,0xe3,0x76,0x59,0x33,0xde,0xb6, +0x66,0x5c,0x39,0xba,0x8f,0x2f,0xa8,0x26,0xd0,0xe7,0xa1,0x3e, +0x71,0xe5,0xf8,0x37,0x30,0xdf,0x5d,0xa6,0x1c,0xd1,0xb1,0x67, +0xba,0xd9,0x9f,0xd8,0xcd,0x7a,0x11,0xde,0x20,0x4f,0xb4,0x5f, +0xb4,0x9a,0xe1,0x7c,0xf5,0xa0,0x36,0x66,0x98,0x18,0xb3,0x5e, +0xcb,0x9a,0x65,0xcb,0x81,0x96,0x26,0x6f,0x72,0xf8,0xab,0x98, +0xf7,0x2e,0xe6,0x38,0x59,0xd1,0xec,0x8f,0x6a,0xbe,0x61,0x9c, +0x52,0x4c,0x1e,0xe7,0x00,0x8d,0x7b,0xc8,0x6b,0x7d,0x5c,0x5b, +0x1f,0x9e,0x07,0xf9,0xf0,0x3e,0x07,0x5a,0x9a,0x3c,0xf0,0xad, +0x07,0xca,0xff,0x44,0x84,0x0e,0x26,0xaf,0xca,0x98,0x65,0xf6, +0xe5,0x93,0x6f,0xbf,0xdb,0xd6,0x87,0x6f,0x31,0x26,0x6f,0x5e, +0xef,0xc3,0x22,0x4d,0xc8,0x49,0xb3,0x89,0x4f,0xfd,0x14,0x33, +0xf3,0x9a,0xe0,0x33,0xce,0x74,0x35,0xc6,0x28,0x06,0x3d,0x4d, +0x7f,0xbb,0x09,0x4e,0x33,0x2e,0xdf,0x7e,0x6b,0xba,0x0f,0x54, +0x31,0xeb,0xcd,0xb7,0xdd,0xd5,0x37,0xcb,0x80,0xf0,0xa7,0xee, +0x53,0x87,0x39,0xd0,0xf6,0x0d,0x6d,0xa4,0x91,0xc9,0x67,0xc1, +0x18,0xcb,0xff,0xfc,0xc3,0x74,0xaf,0x68,0xea,0x32,0xbe,0x6d, +0x3e,0xc7,0x3d,0xa7,0x9e,0x03,0x7d,0x64,0x32,0x07,0x72,0xda, +0x53,0x01,0x33,0xde,0x6a,0x3e,0x75,0x9f,0xd7,0xec,0x0b,0xda, +0xf8,0xf4,0x6b,0x71,0x3e,0x7a,0x43,0x47,0x9f,0x3e,0x52,0x31, +0x75,0x5d,0x87,0xa9,0xcb,0x2e,0x43,0x58,0x8d,0xb0,0x04,0xe1, +0x23,0x84,0x54,0xf3,0x7d,0x2d,0xc2,0x27,0x08,0x2b,0xff,0x01, +0xdd,0x46,0x84,0x75,0xa6,0xce,0xbb,0xc1,0xf4,0xdb,0x69,0xbe, +0xe7,0xdc,0x3f,0xfb,0x07,0x74,0xf9,0x4c,0x08,0x34,0xef,0xf9, +0x7d,0xde,0xf3,0x9b,0xed,0xca,0xd7,0x3f,0x87,0x26,0xd0,0xc7, +0xad,0xbc,0xa9,0x53,0x16,0xf0,0xd1,0x39,0x34,0xb3,0x7d,0x84, +0xfa,0xdc,0x4b,0x99,0xa0,0x99,0x6d,0x2b,0xe7,0xde,0xda,0x84, +0x9c,0xf1,0x8d,0x33,0xe3,0xb0,0x98,0xe9,0xe7,0xb8,0x9b,0x6d, +0xf2,0xcf,0x3b,0x06,0xf0,0x94,0xcf,0xdf,0xbe,0x94,0xc3,0xdc, +0x77,0x53,0x0e,0x73,0xde,0xe9,0x3d,0xd7,0xef,0xdb,0x97,0xe1, +0x7d,0xe3,0xf9,0x27,0xfe,0xaf,0xc3,0xeb,0xf4,0xff,0x7f,0x03, +0xd6,0x96,0x9b,0xbc,0x2c,0x03,0x73,0x3b,0x6e,0xbe,0x1f,0x37, +0xe0,0xf5,0xf2,0xfe,0x13,0xf7,0xb7,0x01,0x1a,0xf6,0x95,0x78, +0xb8,0x97,0xe0,0xcb,0xe3,0x1c,0xba,0x9c,0x7a,0xcb,0xcd,0xaf, +0xcf,0xdd,0x37,0xec,0x7f,0x03,0x3c,0xb6,0xf5,0x3f,0x69,0x7c, +0xb7,0x10,0x4e,0x19,0x6e,0x42,0xde,0x97,0x7e,0x7f,0x17,0x26, +0xf7,0x7d,0xba,0x69,0xdb,0xd1,0xf6,0xf9,0x03,0xc2,0x62,0x84, +0x5d,0x08,0x7f,0x22,0xa4,0x21,0xcc,0xf5,0x81,0x19,0x08,0xfb, +0x4c,0xf8,0x05,0xe1,0x20,0x02,0xb5,0xc3,0xe8,0xaf,0xf8,0x18, +0xdb,0x9f,0xa3,0x10,0x0e,0x23,0x0c,0x40,0x98,0x85,0x70,0x09, +0xe1,0x03,0x84,0xee,0x3e,0xd0,0x09,0x61,0x1e,0xc2,0x16,0x84, +0x13,0xc6,0x62,0xff,0x3f,0x77,0x21,0x6c,0x32,0xde,0xff,0xdc, +0x81,0xd0,0x04,0x21,0xde,0x07,0x68,0x98,0x5e,0x08,0x3d,0x7c, +0xee,0x09,0x1c,0xf7,0x87,0xd7,0xc7,0xad,0xd3,0x7f,0x5b,0x16, +0x33,0x2f,0xff,0x4d,0x7a,0xff,0xa3,0xba,0x7b,0xf3,0xdf,0x9f, +0x80,0xb0,0xca,0xf4,0xe7,0x4d,0xc7,0x92,0xf4,0x57,0xd1,0x5e, +0x83,0x86,0xf4,0x35,0x9f,0x95,0x91,0xc6,0x73,0x65,0xfa,0xdc, +0x34,0x61,0xd4,0x90,0xb2,0x61,0xf5,0xc7,0x8d,0x18,0xf4,0xf2, +0x29,0x27,0xec,0xff,0x07,0x0c,0xdc,0xc4,0x0c }; -const unsigned int font_plexMono_compressed_size=50550; +const unsigned int font_plexMono_compressed_size=54369; diff --git a/src/gui/font_plexSans.cpp b/src/gui/font_plexSans.cpp index 1e5549003..452b85b90 100644 --- a/src/gui/font_plexSans.cpp +++ b/src/gui/font_plexSans.cpp @@ -1,6506 +1,6317 @@ // papers/ibm-plex-license.txt -// File: 'IBMPlexSans-Regular.ttf' (179740 bytes) +// File: 'IBMPlexSans-Regular.otf' (136352 bytes) #include "fonts.h" const unsigned char font_plexSans_compressed_data[]={ -0x78,0xda,0xb4,0x7d,0x09,0x60,0x53,0x45,0xfa,0xf8,0xcc,0xbc, -0xa4,0xe9,0xdd,0xa4,0x49,0x9a,0xb6,0x49,0xd3,0x1c,0x4d,0xd3, -0x36,0x69,0x93,0x36,0x4d,0xd2,0x96,0xde,0xf7,0x45,0x5b,0x7a, -0xd1,0x16,0x5a,0xca,0x55,0x4e,0xb9,0xa9,0x8a,0x8a,0x88,0x88, -0x88,0x08,0x88,0xae,0x07,0x5e,0xa8,0x88,0xc8,0x22,0x14,0xbc, -0xa0,0xb8,0x80,0xc7,0x2a,0xa2,0xab,0x5d,0xd7,0xf5,0xe7,0xba, -0x2c,0x74,0x5d,0x54,0x64,0x5d,0x65,0x5d,0x74,0x3d,0x20,0xfd, -0x7f,0x33,0xef,0x25,0x4d,0x0f,0xd0,0xdd,0xdf,0xff,0x47,0xf9, -0xde,0xcc,0x9b,0xf7,0xde,0x1c,0xdf,0x7c,0xe7,0x5c,0x41,0x18, -0x21,0x24,0x87,0x8b,0x08,0xd9,0x4b,0x9b,0xaa,0x2a,0xe0,0x0e, -0x23,0x72,0x54,0x01,0x61,0x60,0x45,0x69,0x59,0xf9,0xf6,0x37, -0xb6,0x4f,0x47,0xf8,0xbd,0xe7,0x21,0x79,0x5f,0x45,0x43,0x7d, -0x53,0x53,0xfc,0xa1,0x01,0x84,0x7f,0x3f,0x0b,0xa1,0xd3,0xa7, -0x2a,0x9a,0x5a,0x8a,0x9b,0x17,0x34,0x22,0x44,0xfa,0x0a,0x11, -0x0a,0xdb,0x5c,0xdf,0x64,0xcb,0xd8,0x54,0x32,0xbf,0x19,0xde, -0x3d,0x04,0xdf,0x77,0xcf,0xbc,0x66,0xfa,0x92,0xed,0xdf,0xbf, -0xbc,0x19,0x21,0xe9,0x0e,0x84,0x82,0x1b,0x67,0xf6,0xae,0xd0, -0x91,0x6b,0x42,0xb5,0x08,0x69,0x35,0xf0,0x3c,0xbf,0x67,0xc9, -0x9c,0x6b,0x02,0xda,0x1f,0x76,0x23,0x14,0x7b,0x11,0xbe,0x59, -0x3e,0x67,0xfa,0xf2,0x25,0x28,0x1a,0xe9,0xa1,0xbc,0x9d,0xf0, -0x5c,0x3a,0x67,0xe1,0xf5,0x3d,0x3b,0xce,0x7b,0x20,0x6e,0xda, -0x89,0xf0,0x6d,0x68,0xee,0xec,0xe9,0xb3,0x62,0xd7,0xe7,0x1c, -0x85,0x77,0x73,0xe1,0xb9,0x6b,0x2e,0x24,0x48,0xfe,0x14,0xb0, -0x0b,0xee,0x57,0xc0,0x7d,0xc2,0xdc,0x6b,0x56,0x5c,0xf7,0xcf, -0x63,0x07,0xa0,0xee,0x24,0x1a,0xa1,0xf0,0x0d,0x0b,0x17,0xcf, -0x9c,0x3e,0x61,0xcb,0x9f,0x12,0xa1,0xbc,0xa9,0x08,0x49,0xca, -0xaf,0x99,0x7e,0xdd,0x12,0xf1,0x6f,0x08,0x2d,0xeb,0x01,0x78, -0x5f,0x77,0xcd,0xec,0x15,0xd3,0x5d,0x77,0xe4,0xea,0x11,0xf9, -0xcd,0x00,0xdc,0x97,0x2e,0x9a,0x7e,0xcd,0xec,0xbd,0x9f,0x9f, -0xec,0x44,0x78,0x0f,0x94,0x19,0xa0,0x59,0xb2,0x78,0xf9,0x8a, -0x4b,0x77,0x1a,0x4f,0x23,0xdc,0x77,0x1c,0xf2,0xf8,0xdb,0x92, -0x65,0xb3,0x97,0x7c,0xac,0x59,0xff,0x05,0x42,0x9a,0xb9,0x90, -0xc7,0x41,0x44,0x71,0xc7,0xa1,0x5b,0x5d,0x73,0xb8,0xce,0x69, -0x11,0xb9,0xdf,0xa2,0x20,0xee,0x1c,0xa4,0xa0,0x8f,0xf7,0x38, -0xa6,0xd1,0xf0,0xd4,0xe7,0xaf,0x6e,0xf2,0x5c,0x1a,0x0a,0x11, -0xfd,0x49,0x44,0xef,0x83,0x10,0x41,0xfc,0x3f,0x8a,0x6e,0xec, -0xf9,0x07,0x42,0xe2,0x58,0xcf,0x25,0xcf,0x25,0xd1,0x9f,0x58, -0x4e,0x7e,0xff,0xb8,0x27,0x68,0x0a,0x5c,0x9b,0x91,0x04,0xcd, -0x40,0x62,0xe1,0x79,0x30,0xb4,0x0c,0x91,0x5c,0xe8,0x2b,0x8c, -0x44,0x64,0x22,0xde,0x0a,0x4f,0x10,0xd9,0x48,0xda,0xe0,0x59, -0x0d,0x1f,0xe2,0x2e,0x94,0x8b,0x9d,0x90,0x1a,0x22,0xe6,0xc4, -0x84,0x43,0x84,0xdb,0x81,0xc8,0xd7,0x0d,0x48,0x37,0xc1,0x9b, -0x77,0x55,0xf1,0x44,0x1d,0x86,0xfe,0xfa,0x89,0x70,0xa1,0x43, -0x09,0xd8,0x2a,0xc2,0x58,0xae,0x43,0xf8,0x31,0xfa,0x8c,0x88, -0x48,0x3f,0xc5,0x0c,0x22,0xf8,0x23,0xb8,0xd2,0x7f,0x5f,0xf2, -0x40,0xa2,0x90,0x95,0x94,0xa2,0x0c,0x80,0x16,0xfc,0x6f,0x64, -0x63,0x71,0x13,0xb2,0xe1,0x52,0x14,0x47,0xa4,0xc8,0xc2,0xee, -0xe5,0x10,0x66,0xa1,0x16,0xf4,0x23,0xaa,0x05,0xc0,0x24,0x02, -0xde,0x95,0xa2,0x16,0x6e,0x1e,0x6a,0xa1,0xe9,0xc4,0xce,0xbe, -0x6b,0xa1,0xef,0xe2,0xc5,0xf0,0xec,0x73,0x94,0x80,0xa7,0xc1, -0xf7,0x59,0xa8,0x01,0x7f,0x89,0x22,0x39,0x84,0xe2,0xf1,0x4f, -0x48,0x89,0xff,0x85,0x64,0x78,0x00,0xe9,0xc9,0x2d,0x48,0x45, -0xee,0x42,0x9d,0xe4,0x1a,0x94,0x43,0x1e,0x83,0xb0,0x02,0xc0, -0x06,0xf0,0x12,0xdc,0xbf,0x86,0x3a,0xa1,0xfd,0xb9,0xd8,0x83, -0x34,0x64,0x15,0xc4,0xbf,0x45,0x9d,0x9c,0x15,0x9e,0x41,0x3a, -0x79,0x1d,0x9e,0x77,0x09,0xe1,0x1a,0x08,0xcb,0x50,0x0a,0x60, -0x2d,0x8a,0xec,0x42,0x6d,0x64,0x3a,0x52,0x70,0x37,0x20,0x05, -0x99,0x8d,0xa2,0xc9,0x24,0x14,0x06,0x75,0x49,0x00,0xbc,0xe5, -0xfa,0x81,0x03,0xa0,0x0c,0x20,0x05,0x20,0x11,0x60,0x22,0x40, -0x89,0x90,0x96,0xc3,0xe2,0x2f,0xa2,0x4a,0xc8,0xa3,0x08,0x6f, -0x41,0x65,0x14,0x48,0x2d,0x4a,0xe0,0x42,0x21,0x1f,0x27,0xd2, -0x42,0x7b,0x6b,0x38,0x23,0xaa,0xc1,0x09,0xac,0xed,0x66,0x08, -0xd3,0x29,0xa0,0x6f,0xe0,0xfe,0x49,0x00,0x19,0xaa,0x00,0xb0, -0xe2,0x3f,0x43,0xf8,0x31,0x84,0x91,0xc8,0x08,0x71,0x23,0xb6, -0x03,0x2e,0xec,0x28,0x93,0x60,0xc8,0x07,0xa3,0x4c,0xac,0x41, -0x93,0x18,0xfc,0x01,0x99,0xf0,0x5f,0x90,0x0a,0xd7,0xa3,0x26, -0x5c,0x3f,0xf4,0x13,0xce,0x83,0xb6,0xe6,0x41,0xbb,0x27,0xa3, -0x28,0x80,0x5c,0x7c,0x33,0x0a,0x02,0x48,0x42,0xf7,0x0c,0x39, -0x29,0x70,0x8f,0xa1,0x22,0x71,0x2c,0xd4,0x2d,0x07,0xdd,0x40, -0x81,0x54,0xa3,0x5a,0xb2,0x09,0x65,0x72,0x81,0xc8,0x85,0x4f, -0xa1,0x24,0xb2,0x0d,0xe9,0xa0,0xce,0x49,0x78,0x33,0x94,0xfd, -0x01,0x2a,0x86,0x7a,0x65,0x41,0xbd,0xb2,0xf0,0xab,0x50,0x6e, -0x12,0xf4,0x21,0x85,0xb7,0x18,0x1e,0x32,0x00,0xf2,0x84,0xb6, -0x7b,0x61,0xaa,0x5f,0xdc,0xfb,0xac,0xc3,0x1f,0x70,0x39,0xea, -0x61,0x6d,0xdf,0x04,0xe5,0xb6,0x41,0x7f,0xf3,0xef,0xc4,0xe1, -0x3d,0x90,0xdf,0x59,0x24,0x25,0x1f,0x42,0x3b,0xcf,0x21,0x83, -0x88,0x83,0x7e,0xa9,0x47,0x05,0x64,0x16,0x8a,0x24,0x04,0xde, -0x5b,0x8a,0x72,0xf0,0xa7,0x43,0x97,0x49,0x13,0x94,0xdd,0x0a, -0x78,0xe8,0x44,0x06,0xb2,0x0e,0xde,0x59,0x01,0x38,0xa7,0x69, -0x87,0x50,0x04,0xd4,0xab,0x93,0x3b,0x84,0x4c,0x1c,0x81,0xf4, -0x52,0x54,0x41,0xe6,0xa1,0x60,0xd2,0x0d,0x6d,0x5a,0x81,0xb4, -0x64,0x27,0xbc,0xb7,0x02,0xa5,0xb1,0xf7,0x69,0x5a,0x27,0x72, -0x02,0x0d,0x84,0x91,0xc5,0xf0,0xec,0x56,0xa8,0xb7,0x1b,0xe8, -0xac,0x19,0x80,0xd2,0xf1,0xff,0x57,0x18,0xfa,0xde,0x17,0xe7, -0xf9,0xe3,0xff,0x27,0x44,0x7a,0xe3,0x5c,0x37,0xb2,0x52,0xa0, -0xbc,0x37,0x1a,0xc8,0x14,0x78,0xa7,0x02,0xc0,0x02,0x71,0xd3, -0x7f,0x0d,0xf2,0x11,0xf7,0x94,0x97,0xfd,0x61,0x74,0xdd,0xb2, -0x90,0x92,0x64,0x0d,0x9d,0x01,0x3e,0xa7,0xfc,0x3e,0x09,0xfd, -0x38,0xf4,0x19,0xc0,0x5f,0x04,0xb8,0x00,0x69,0xd5,0x00,0x61, -0x00,0xc9,0x70,0xff,0x0d,0x84,0x1c,0x84,0x1f,0xe2,0x0b,0xa8, -0x16,0xa0,0x9e,0xca,0x07,0x1e,0x86,0xfe,0x42,0xe5,0x84,0x20, -0x2b,0x26,0x01,0x3f,0x30,0x99,0x81,0x7b,0x00,0xa2,0xa0,0xfd, -0x59,0x82,0xec,0x10,0x80,0xb3,0x00,0x9e,0xbd,0xb2,0xe4,0x97, -0x40,0x16,0x32,0x32,0xf8,0x65,0xef,0x2b,0xbc,0x71,0xee,0x49, -0xc0,0x2d,0x95,0x51,0x8b,0xd1,0x04,0x80,0x5c,0x26,0xab,0x46, -0x43,0x14,0xd0,0xd3,0x1a,0x80,0x34,0x78,0x6f,0x36,0xf0,0x15, -0xc8,0x32,0x2f,0x30,0x39,0x07,0x72,0xed,0xff,0x0a,0xa8,0xac, -0xf4,0x07,0x26,0x33,0xaf,0x04,0x20,0x4b,0xbd,0xc0,0x64,0xea, -0xff,0x11,0x70,0x77,0x22,0x11,0x05,0x26,0xaf,0x47,0x03,0x95, -0xdf,0x4f,0x20,0x19,0x83,0x0a,0x41,0x96,0xff,0xe7,0x60,0xf5, -0xc5,0xa9,0x6c,0x7f,0x69,0x14,0xbc,0x85,0xd4,0x3e,0xbd,0xb0, -0x15,0xe4,0xee,0x56,0x90,0x73,0x3c,0xe4,0x08,0x69,0xe3,0x81, -0x9e,0xdc,0x06,0x7a,0xe1,0x36,0xe8,0x43,0xd0,0x25,0x7e,0xfa, -0x64,0x0a,0xd5,0x29,0x3e,0xb8,0x34,0xf4,0x03,0xd3,0x2d,0xa3, -0x81,0xd6,0xe3,0xff,0x10,0xb8,0x3f,0x09,0x3a,0xcc,0x0b,0x54, -0x97,0x8d,0x86,0x97,0x21,0xbd,0x1c,0xda,0x4e,0x75,0x9c,0x17, -0xa8,0xfe,0xa3,0xfa,0xee,0xff,0x08,0xa8,0x0e,0xf5,0x07,0xa6, -0x4b,0xaf,0x04,0x54,0xc7,0x7a,0x21,0x0f,0xf8,0xe2,0x56,0xe8, -0xc7,0x57,0x91,0x1d,0x7f,0x0f,0xfc,0xfd,0x0e,0xb4,0x6f,0x1d, -0xc8,0x93,0x2a,0x80,0x4a,0xe8,0x83,0xef,0x40,0xa6,0x53,0x1e, -0x0c,0x80,0xbe,0xd9,0x0b,0x61,0x1e,0x8a,0x27,0x19,0xa0,0x9f, -0xcc,0x82,0x8c,0xb8,0x8c,0x02,0x48,0x31,0x84,0x43,0x28,0x18, -0x9f,0x40,0xa9,0xec,0xdd,0x45,0xa0,0xcb,0x93,0xa0,0x8f,0xff, -0x06,0xf1,0x0a,0xe0,0xdb,0xbf,0x40,0x7d,0x28,0x9f,0xbc,0x0d, -0x76,0xc6,0x05,0x14,0x0a,0x3a,0xa7,0x81,0x0c,0x82,0x4e,0x11, -0xec,0x09,0xe0,0x89,0x4e,0x56,0x87,0x0a,0xa6,0x47,0x12,0xbc, -0xfd,0x48,0xe9,0x81,0xf6,0x3d,0x59,0x09,0xb4,0xec,0xb5,0x25, -0x2a,0x51,0x21,0xeb,0x8b,0x17,0x20,0x4e,0x71,0x9a,0x0d,0xba, -0x85,0xe2,0x17,0xda,0xc5,0x35,0x23,0x17,0xb5,0x23,0xb8,0x28, -0x54,0x3a,0xa2,0x1d,0x50,0x77,0x5a,0x6f,0x5a,0x67,0x6c,0x1e, -0xfa,0x37,0xc0,0x39,0x41,0x16,0x0d,0xf3,0xb0,0xb7,0x3e,0xd3, -0xe1,0xd9,0x5f,0x86,0xce,0xe1,0xb7,0x01,0x80,0x4e,0xc9,0x09, -0xb8,0x7f,0x0a,0x80,0xe2,0xed,0x1d,0x08,0xbd,0x7a,0x25,0x13, -0xec,0x12,0x2a,0x67,0x9e,0x03,0x3c,0xb4,0xa0,0x40,0x2a,0xa3, -0x41,0x0f,0x26,0x01,0x6d,0x6a,0xc0,0xfe,0x68,0x61,0x90,0x08, -0xe0,0x84,0x67,0x87,0x84,0x7b,0x3b,0xc3,0x5f,0x8b,0xd7,0x66, -0x03,0x9b,0x4e,0x41,0xe5,0x01,0xf9,0x0a,0x39,0xa8,0x9d,0x05, -0x7a,0xb9,0x85,0xc4,0x82,0x6e,0xd1,0x82,0x5c,0xcd,0x86,0x78, -0x1d,0xe0,0xed,0x03,0x08,0x03,0x19,0x7e,0x35,0x5c,0x18,0xc4, -0x55,0xc8,0xcc,0xea,0x79,0x23,0xb4,0xdd,0x8b,0xbb,0x0f,0xa1, -0x8f,0x00,0x77,0xdc,0xfb,0x40,0x7b,0x93,0x90,0xc9,0xc7,0x0b, -0xf7,0x01,0xec,0x45,0xc1,0x23,0xec,0x30,0x2f,0xde,0xa8,0x0c, -0xa0,0x78,0x6b,0x02,0x7a,0xa9,0x85,0xf6,0x50,0xfb,0xeb,0x63, -0x48,0xbf,0x0d,0x68,0x1c,0xe8,0x97,0xfb,0x2b,0xc4,0x3f,0x45, -0x51,0xdc,0x02,0x08,0x7b,0x01,0xae,0x05,0x3d,0x7f,0x9c,0xd1, -0x7c,0xf2,0x68,0xfd,0xca,0xf4,0xe0,0x73,0x3c,0x2e,0xf0,0x6f, -0x41,0xd6,0xc6,0x42,0x3d,0xfd,0x74,0x17,0xd4,0x9d,0xe1,0x86, -0x81,0x84,0xc7,0x11,0x05,0xaa,0xab,0x7c,0xb8,0xf2,0xe2,0xcb, -0xca,0xe3,0x87,0x2c,0x84,0x7a,0x99,0x00,0x77,0x73,0x00,0x17, -0x85,0x70,0xff,0xed,0x48,0x1d,0xc3,0xf0,0x37,0x5a,0xae,0x82, -0xcd,0x4a,0x01,0xf4,0xa3,0x92,0xe2,0x11,0x70,0x9f,0xc1,0xc2, -0x0f,0x78,0xdb,0x96,0xe2,0x9e,0xb7,0x85,0x99,0x3e,0xc4,0xbc, -0xce,0x64,0xc0,0xd7,0xd7,0x4f,0x6e,0x52,0xbc,0x32,0xdc,0x4a, -0x50,0x38,0xb9,0x61,0x94,0xdc,0xbb,0x16,0x70,0x04,0xb8,0x66, -0xf0,0xb1,0x80,0x73,0x00,0x46,0xaf,0xfe,0xb2,0x88,0xe2,0xff, -0x51,0x80,0xe7,0x01,0x9f,0x62,0xc0,0x25,0xe5,0xa5,0x73,0xa8, -0x53,0x14,0x06,0xf7,0xf7,0x8e,0x92,0x55,0xd7,0x30,0xbb,0x4a, -0x31,0x02,0xbc,0xfc,0xba,0x0e,0xfa,0x06,0xfa,0x85,0xec,0x01, -0xa0,0xfd,0xb3,0x40,0x90,0x3b,0x2f,0xf8,0x64,0x6b,0x0e,0x95, -0x93,0x5c,0x24,0x94,0xa1,0x81,0x3e,0xbd,0x4d,0xe0,0x9f,0x55, -0xd0,0x2f,0x73,0x40,0x0f,0x76,0x20,0x03,0x40,0x34,0x80,0x02, -0x4f,0x05,0x3d,0x39,0x07,0xfa,0xa0,0x1e,0xf8,0xe1,0x3a,0xf6, -0xdc,0xf4,0x4b,0xdf,0xe3,0xe6,0x22,0x1d,0x83,0x29,0xc8,0xc0, -0xd5,0x43,0x98,0x05,0xbc,0x06,0x7a,0x96,0x6b,0x83,0xfb,0x3a, -0x88,0x53,0x5a,0x9a,0x0a,0xf7,0x15,0x60,0x7f,0x77,0x42,0x78, -0x0b,0xc0,0x7c,0x48,0x5f,0x08,0xf7,0x35,0xa0,0x17,0x97,0xc0, -0xfd,0x56,0xb4,0x1a,0xe0,0x3a,0x2e,0x13,0xb9,0x01,0xde,0x16, -0x80,0xc6,0xf7,0x00,0xdc,0xe8,0x17,0xae,0x15,0xc0,0x3d,0x0a, -0x5e,0x11,0xc0,0x3f,0x8d,0xe6,0x11,0x06,0x10,0xee,0x97,0xd6, -0x0c,0xd0,0x02,0x3c,0xb5,0x0e,0x60,0x1b,0xc0,0x0e,0x80,0x1f, -0x00,0x1e,0x05,0x78,0x0e,0x60,0x08,0xe0,0x08,0xc0,0x9d,0x02, -0xdc,0x0b,0xb0,0x05,0xe0,0x90,0x00,0x3f,0x92,0x36,0x6c,0x85, -0xf0,0x8f,0x00,0xbb,0x20,0xae,0x82,0x70,0x23,0x42,0x43,0xed, -0x00,0x2b,0x01,0xde,0x05,0x58,0x0e,0xb0,0x01,0xe0,0x03,0x80, -0xad,0x00,0xdd,0x02,0xcc,0x03,0xb8,0x0b,0x60,0x2f,0xc0,0x7b, -0xbc,0x87,0x39,0xf4,0x1c,0xc0,0x1e,0x80,0xdf,0x01,0xfc,0x06, -0x00,0x7c,0xd0,0xa1,0x1e,0x3f,0xa0,0xf9,0x2e,0x14,0xbe,0xf7, -0x86,0x33,0x10,0xf2,0x5c,0xf2,0x4b,0x6b,0x1f,0xd5,0x9e,0x8b, -0x00,0x8f,0xfc,0xb2,0xf6,0x60,0x95,0x50,0x9f,0xb9,0x7e,0x40, -0xcb,0x5c,0x20,0xe4,0xbf,0x60,0x9c,0x32,0x17,0xb0,0x77,0xc0, -0xdf,0x14,0x45,0xa1,0x35,0xa2,0x07,0x51,0x21,0xf3,0xb0,0x79, -0xd0,0xf0,0x5e,0x70,0x60,0x07,0xdc,0x61,0x76,0x2f,0x0a,0xcc, -0x87,0xf0,0x2c,0x5a,0x83,0x02,0xd0,0x2c,0x88,0x85,0x21,0x3b, -0xca,0x86,0x6f,0x3a,0xd0,0x1c,0xb4,0x0a,0xad,0xc6,0x37,0xe3, -0x2d,0x78,0x1b,0x7e,0x1c,0xf7,0xe1,0x53,0x78,0x88,0xa8,0x89, -0x9b,0xb4,0x93,0x97,0xc9,0x9b,0xe4,0x2f,0x9c,0x88,0x0b,0xe5, -0x22,0x39,0x25,0xa7,0xe6,0x8c,0x5c,0x12,0xb7,0x9a,0xdb,0xc8, -0x6d,0xe2,0xb6,0x72,0x8f,0x73,0xcf,0x70,0x07,0xb8,0xb7,0xb8, -0x77,0x45,0x11,0x22,0x9b,0xc8,0x2e,0xaa,0x17,0x4d,0x13,0x2d, -0x17,0x3d,0x22,0x7a,0x4a,0xf4,0x6b,0xd1,0x73,0xa2,0x23,0xa2, -0x57,0xc1,0x93,0x3f,0x23,0xfa,0x42,0xf4,0xad,0xe8,0x87,0xf0, -0x02,0xed,0x6d,0xda,0x47,0xb5,0x3f,0xe8,0x14,0xba,0x58,0x9d, -0x56,0x67,0xd0,0x25,0xea,0xec,0x3a,0x87,0x2e,0x47,0x57,0xaa, -0x5b,0xa2,0xbb,0x5e,0x77,0x87,0xee,0x71,0xdd,0x4e,0xdd,0x2e, -0xdd,0x3e,0xdd,0x41,0xdd,0x0b,0xba,0x7e,0xdd,0x6f,0x74,0xc7, -0xf4,0x72,0x7d,0x94,0xde,0xa0,0x4f,0xd4,0xa7,0xe9,0x27,0xe9, -0xbb,0xf4,0x0f,0xea,0xf7,0xe8,0x9f,0xd3,0xbf,0xa4,0x3f,0xa2, -0x7f,0x5d,0xff,0x86,0x81,0x18,0x02,0x0c,0x11,0x86,0x48,0x83, -0xd2,0x10,0x6b,0xd0,0x1a,0x2c,0x86,0x4a,0x43,0xb7,0x61,0xb6, -0xe9,0xa4,0x59,0x6e,0xae,0xb5,0xc8,0xbe,0x1c,0xfc,0xfa,0x9d, -0xef,0x3e,0xfa,0x89,0x0c,0x0d,0x31,0x8f,0x3c,0x0c,0x3c,0xf3, -0x74,0x94,0x83,0x8a,0xd0,0x14,0x34,0x17,0xdd,0x80,0x76,0xb0, -0x56,0xee,0xc0,0xfb,0xf1,0xef,0xf0,0x8f,0x24,0x9a,0xb5,0xf2, -0x08,0x79,0x83,0x7c,0xc4,0x21,0x2e,0xc0,0xd7,0xca,0x44,0x68, -0xe5,0x3a,0x68,0xe5,0x66,0xee,0x6e,0xee,0x49,0x6e,0x0f,0x77, -0x90,0x3b,0x29,0x42,0x22,0x29,0xb4,0x32,0x5d,0xd4,0x20,0x5a, -0x26,0xda,0x2a,0xda,0x21,0xda,0x23,0xda,0x27,0x7a,0x51,0x74, -0x5c,0xf4,0x9e,0xe8,0x94,0xe8,0x13,0xd1,0x57,0xa2,0xef,0xa1, -0x95,0x6b,0xa0,0x95,0x3b,0x74,0x72,0x5d,0xb4,0x4e,0xa3,0xd3, -0xb1,0x56,0x66,0xe8,0xb2,0x59,0x2b,0x57,0xe8,0xd6,0x08,0xad, -0xdc,0xad,0x3b,0xa0,0x7b,0x5e,0x77,0x68,0x54,0x2b,0x1b,0xf4, -0x4d,0xfa,0xad,0xfa,0x67,0xf4,0x7d,0xfa,0x17,0xf5,0xfd,0x7e, -0xad,0x94,0x8d,0x68,0xe5,0x2c,0xa1,0x95,0xe1,0xac,0x95,0xff, -0xf3,0x13,0x86,0x56,0xe2,0xa1,0x6f,0x59,0x3b,0xd1,0xd0,0x20, -0xc0,0x2e,0xd6,0xea,0x98,0xa1,0x90,0xe1,0xf1,0x11,0xcf,0x5f, -0x3d,0xbb,0xd0,0xe3,0x68,0xab,0x70,0x3b,0x15,0x7a,0xbc,0x05, -0x7c,0x0a,0x74,0xe9,0x8f,0xf0,0xec,0x7d,0x80,0x9d,0x9e,0x27, -0xe1,0xba,0x80,0xbd,0xbb,0xdc,0x93,0xe1,0x71,0xa0,0x2b,0xfe, -0xfb,0x06,0xe8,0xef,0x6f,0x13,0x11,0x1a,0xcc,0xe2,0xef,0x07, -0x93,0x07,0x0b,0x06,0x2b,0x07,0x8d,0x83,0x49,0x9f,0x3c,0x02, -0x7f,0xf7,0x0f,0xe2,0x33,0x43,0x67,0x3c,0x08,0x9d,0xf9,0xf1, -0xcc,0x0f,0x67,0xfe,0x7d,0xe6,0xdb,0x33,0x17,0xcf,0xac,0x3b, -0xb3,0xf6,0x4c,0xf3,0xe0,0xc5,0x33,0x73,0xf9,0x2f,0xfe,0xfa, -0x38,0xc0,0x36,0xf8,0xbb,0xe5,0xaf,0xab,0x4f,0xdf,0x3f,0x28, -0x1b,0x0c,0x42,0xe8,0x74,0xdb,0xe9,0xeb,0x4f,0x5f,0x7b,0x7a, -0xde,0xe9,0xc2,0xd3,0xc9,0xa7,0x93,0x3e,0x7e,0xf3,0x54,0xfc, -0x9f,0x3f,0x47,0x28,0xea,0x15,0x39,0x70,0xae,0xf8,0x39,0x61, -0x3c,0x67,0x90,0x56,0x0f,0x98,0x35,0x10,0x40,0x0b,0x5e,0x33, -0x1d,0x81,0x39,0x4d,0x06,0xc9,0x27,0xd0,0x73,0xc1,0xbe,0xb1, -0xa0,0x40,0xe8,0xc3,0x58,0xdf,0x9d,0x16,0x40,0x07,0x90,0xc2, -0xee,0xe0,0xca,0xb9,0xb8,0x7c,0xe1,0x59,0x2b,0xb7,0x82,0xeb, -0x05,0x3a,0xde,0xce,0x3d,0xcc,0xed,0xe2,0xfa,0xb8,0xe7,0xb9, -0x13,0xdc,0xbb,0xdc,0x29,0xee,0x3c,0x3c,0xa3,0xf0,0x0d,0xf0, -0xd5,0x13,0xa2,0x5d,0xa2,0x3d,0xe3,0x63,0x42,0xf4,0xc0,0xb8, -0xa9,0x5b,0x45,0xdb,0x44,0xbb,0x21,0x3c,0x34,0x2a,0xbd,0x6f, -0xdc,0xb7,0x1f,0x65,0xd7,0x1d,0x7c,0x85,0xd0,0x74,0xe8,0x97, -0x9b,0xd1,0x63,0x68,0x11,0xaa,0x40,0xcd,0xc0,0xa3,0xb3,0xd1, -0x8d,0x68,0x2d,0x78,0x8b,0x55,0xa8,0x0e,0xcd,0x47,0x13,0x50, -0x03,0x6a,0x04,0x19,0x77,0x3b,0xba,0x13,0xcd,0x44,0x95,0xa8, -0x07,0x2d,0x00,0xce,0x5d,0x83,0x26,0x72,0x2d,0x48,0x04,0x3c, -0x2d,0x41,0x81,0x28,0x08,0x05,0xa3,0x10,0xa0,0xf3,0x25,0x68, -0x1e,0xba,0x85,0x7b,0x0c,0x75,0xa3,0x87,0xd0,0xa3,0x68,0x3b, -0xda,0x81,0x96,0xa2,0x65,0x5c,0x23,0x5a,0x81,0xae,0x45,0x5d, -0x68,0x1b,0x78,0x9b,0x2b,0xb9,0x06,0x74,0x3d,0x5a,0xc7,0x45, -0x70,0x52,0xae,0x19,0xec,0x85,0xe5,0x68,0x33,0xd7,0xc5,0x85, -0xa3,0xeb,0xd0,0x34,0x2e,0x81,0xd3,0x83,0x76,0x9f,0x81,0x6f, -0xc4,0xbd,0xf8,0x7a,0xbc,0x16,0xaf,0xc2,0x6b,0xf0,0x5d,0xf8, -0x6e,0xfc,0x28,0xbe,0x1f,0x6f,0xc7,0x0f,0xe1,0x17,0x81,0x7b, -0x0e,0xe2,0xe7,0xf0,0x7d,0xf8,0x04,0x1e,0xc0,0x27,0x81,0x93, -0x3e,0xc4,0xef,0xa2,0xdb,0xf0,0x07,0xf8,0xdf,0xf8,0x9f,0xf8, -0x22,0xfe,0x96,0x84,0xe2,0x0b,0xb8,0x1a,0xbd,0x8c,0x5e,0x44, -0x87,0xd1,0xab,0xa8,0x1f,0x1d,0x07,0xb9,0x73,0x0e,0x7d,0x8b, -0xbe,0x42,0xff,0x44,0xdf,0x60,0x19,0x0e,0xc1,0xe1,0x38,0x02, -0xfd,0x03,0x9b,0x70,0x1a,0x4e,0xc2,0x16,0x9c,0x89,0xad,0x68, -0x3d,0xce,0xc0,0x93,0xf1,0x24,0xdc,0x8c,0x5b,0xf0,0x42,0xdc, -0x80,0x17,0xe1,0xd5,0xe8,0x28,0xbe,0x16,0xbd,0x84,0x6f,0x46, -0xc7,0xf0,0x16,0xf4,0x19,0xde,0x86,0xbe,0xc0,0xf7,0xa0,0xf3, -0xa0,0x51,0x3f,0xc7,0xf7,0xa2,0xbf,0xe3,0x5f,0xa1,0x2f,0xf1, -0x0e,0xf4,0x6f,0xfc,0x00,0xfa,0x1a,0x3f,0x8c,0xfe,0x85,0x1f, -0x47,0xdf,0xe3,0x07,0xd1,0x05,0xbc,0x07,0x63,0xfc,0x0c,0x46, -0x78,0x2f,0xe6,0xf0,0xaf,0x31,0xc1,0xfb,0x70,0x10,0x7e,0x16, -0x07,0xe2,0x7e,0xac,0xc4,0x87,0xb0,0x1c,0x24,0x5c,0x28,0x3e, -0x8c,0x15,0xf8,0x79,0x1c,0x8c,0x8f,0xe0,0x28,0x7c,0x14,0xc7, -0xe2,0x63,0x58,0x8d,0x35,0xf8,0x38,0x8e,0xc3,0xaf,0xe2,0x78, -0xfc,0x0a,0x50,0xd8,0x6b,0x58,0x87,0x5f,0xc7,0x7a,0xfc,0x5b, -0x6c,0xc0,0x6f,0xe2,0x04,0xfc,0x06,0x36,0xe2,0x44,0xfc,0x16, -0x36,0xe3,0x3f,0xe0,0x74,0xfc,0x36,0x4e,0xc6,0xef,0x63,0x3b, -0xfe,0x04,0x17,0xe2,0xbf,0xe1,0x22,0xfc,0x29,0x2e,0xc1,0x67, -0x71,0x31,0xfe,0x0c,0x97,0xe2,0x2f,0x70,0x05,0x3e,0x87,0xcb, -0xf1,0xe7,0xb8,0x0c,0x7f,0x8d,0xeb,0xf1,0x3f,0xf0,0x44,0xfc, -0x25,0xae,0xc5,0x97,0x71,0x27,0xfe,0x11,0x77,0xe0,0x6f,0x70, -0x23,0xbe,0x84,0xa7,0xe2,0x1f,0x70,0x3b,0xfe,0x09,0x4f,0x21, -0x41,0x78,0x1e,0x09,0xc3,0xd7,0x90,0x08,0x22,0xc7,0xcb,0x89, -0x12,0xaf,0x24,0x0a,0xbc,0x02,0x57,0xe1,0xff,0xc1,0x4e,0xec, -0xc1,0x5d,0xa0,0xe1,0x0f,0xe1,0x03,0x38,0x0c,0xbf,0x83,0x53, -0xf0,0xbf,0x70,0x13,0x11,0xe1,0x59,0x44,0x8c,0x67,0x13,0x09, -0x9e,0x43,0x02,0x70,0x0f,0xbe,0x05,0xbd,0x82,0x37,0xa3,0x4f, -0xf1,0x1f,0xb1,0x03,0x9f,0xc7,0x95,0xf8,0x2b,0x5c,0xc7,0xb5, -0x71,0x93,0xb8,0x0e,0x6e,0x1a,0x57,0xc7,0x35,0x71,0x73,0xb9, -0x39,0xdc,0x3c,0x6e,0x06,0x37,0x93,0x5b,0xc0,0xcd,0xe2,0x66, -0x73,0xd7,0x70,0x0b,0xb9,0x1e,0x6e,0x3e,0xb7,0x9c,0x5b,0x0a, -0x3c,0xd0,0xcd,0x4d,0x27,0xed,0xa0,0x8b,0x3a,0xc8,0x14,0x32, -0x95,0x4c,0x23,0xd3,0x49,0x13,0xe9,0x24,0xdd,0x64,0x22,0xa9, -0x27,0x0d,0x64,0x12,0x99,0x0c,0xba,0xa0,0x91,0xb4,0x92,0x66, -0x02,0xfa,0x1a,0xf8,0xed,0xaf,0x5c,0x10,0x39,0x45,0xfe,0x06, -0x5a,0x21,0x80,0x93,0x70,0x81,0xe4,0x9f,0xe4,0x5f,0x5c,0x30, -0xf9,0x07,0xf9,0x3b,0xb9,0xc4,0x89,0xc9,0x5e,0xf2,0x2c,0xf9, -0x23,0xd9,0x4d,0xf6,0x93,0x01,0xf2,0x3e,0xf9,0x03,0xf9,0x80, -0xfc,0x86,0x1c,0x23,0x1f,0x92,0xc3,0xe4,0x25,0x72,0x82,0xfc, -0x9e,0x7c,0x47,0x5e,0x25,0x7f,0x21,0xcf,0x00,0xe7,0xee,0x21, -0x67,0xc8,0xaf,0xc9,0x67,0xe4,0x20,0x39,0x47,0x9e,0x27,0x5f, -0x91,0x7e,0xf2,0x35,0x48,0xe2,0x0b,0xa0,0x73,0xbe,0x21,0x47, -0xc9,0x45,0x72,0x9c,0x7c,0x4f,0x5e,0x27,0x97,0xc9,0x5b,0xc4, -0x43,0x4e,0x92,0x21,0xf2,0x36,0x87,0xc9,0xef,0x38,0x42,0xde, -0xe5,0x42,0xc8,0xff,0x90,0x2f,0xc8,0xa7,0xe4,0x00,0x79,0x81, -0x7c,0x4c,0x76,0x92,0x3f,0x91,0x27,0xc9,0x9f,0xc9,0xd3,0xe4, -0x13,0xb2,0x8f,0x0b,0x25,0x1f,0x91,0xb3,0xa4,0x8f,0x7c,0x4e, -0x9e,0x23,0x5f,0x92,0x43,0xe4,0x3c,0x79,0x91,0x7c,0x4b,0x5e, -0x21,0xff,0x26,0xaf,0x91,0x1f,0xc8,0x6f,0xc9,0x8f,0x20,0xeb, -0x7f,0x22,0x6f,0x72,0x88,0xbc,0xc3,0x71,0xe4,0x3d,0x12,0x82, -0x17,0x90,0x40,0x3c,0x97,0x04,0xe3,0xf9,0xf8,0x06,0x74,0x04, -0xdf,0x84,0x7e,0x83,0x37,0xa0,0x13,0x78,0x23,0x3a,0x89,0xef, -0x44,0x6f,0xe3,0x4d,0xe8,0x1d,0x7c,0x07,0x7a,0x0b,0xdf,0x8a, -0x5e,0xc3,0xb7,0xa1,0xdf,0xe2,0xf5,0xe8,0x0d,0x7c,0x3b,0x7a, -0x13,0xaf,0x43,0xaf,0xe3,0x47,0xd0,0x45,0xfc,0x18,0xfa,0x0e, -0x3f,0x81,0x7e,0xc0,0x4f,0xa2,0x1f,0xf1,0x53,0xe8,0x12,0xde, -0x85,0x2e,0xe3,0xa7,0x91,0x07,0xef,0x44,0x3f,0xe1,0x97,0x70, -0x24,0x7e,0x01,0x4b,0xf1,0x7b,0x38,0x15,0xff,0x1e,0x83,0xa7, -0x85,0x27,0xe0,0x33,0x38,0x0f,0x0f,0xe2,0x7c,0xfc,0x57,0x5c, -0x80,0x4f,0xe3,0x5c,0xfc,0x11,0x76,0xe1,0x8f,0x71,0x16,0xfe, -0x33,0xce,0x06,0xbd,0x9b,0x83,0xff,0x84,0xdd,0xf8,0x3b,0xdc, -0x8a,0xbf,0xc7,0x6d,0x78,0x08,0x4f,0x23,0x18,0x4f,0x27,0x04, -0xcf,0x20,0x1c,0x9e,0x49,0x10,0xee,0x26,0x52,0xbc,0x84,0x84, -0xe3,0xc5,0x44,0x86,0x97,0x92,0x48,0xbc,0x0c,0xb5,0xa2,0xc9, -0x20,0xcf,0xdb,0x50,0x3b,0xe8,0xb7,0x9b,0xd0,0x6a,0x90,0xf2, -0x4f,0xa1,0x5d,0xe8,0x69,0xb4,0x1b,0x3d,0x8c,0x9e,0x01,0x6b, -0xcd,0xca,0xa5,0x73,0x06,0xa6,0xd1,0xcc,0xa0,0xbb,0x93,0xb9, -0x14,0xce,0xc2,0xa5,0x72,0x69,0x9c,0x8d,0xb3,0x73,0x99,0x9c, -0x93,0x73,0x83,0x44,0x2c,0xe7,0x2a,0xb8,0x2c,0x2e,0x9b,0x9b, -0xc0,0xe5,0x70,0xb9,0x5c,0x31,0x97,0xc7,0x95,0x90,0x18,0x74, -0x2b,0x57,0xc4,0x15,0x70,0x85,0x5c,0x3e,0x77,0x3d,0xf8,0xac, -0x01,0xe0,0x7f,0xd2,0x51,0xf9,0x7f,0x33,0xeb,0x02,0x09,0x56, -0xc6,0xcf,0xff,0xfb,0x79,0xa9,0x96,0x8f,0x0a,0xc0,0x0a,0x29, -0x42,0xc5,0xa8,0x04,0x95,0xa2,0x32,0x54,0x3e,0x4a,0xce,0xe9, -0x91,0x01,0x19,0x51,0x02,0x32,0xa1,0x44,0x64,0x46,0x49,0x28, -0x19,0xa5,0x20,0x0b,0xb2,0xa2,0x54,0x94,0x86,0x6c,0x60,0xc3, -0xa4,0xa3,0x0c,0xe4,0x40,0x99,0xc8,0x89,0x5c,0xc8,0x8d,0xb2, -0xc0,0xa6,0xc9,0xb9,0x8a,0x6c,0x0c,0x47,0x11,0x48,0x8a,0x64, -0x28,0x12,0xc9,0x91,0x02,0x29,0x51,0x14,0x52,0xa1,0x68,0x14, -0x83,0x62,0x91,0x1a,0x6c,0xa4,0x38,0xa4,0x45,0xf1,0x60,0x31, -0x08,0x12,0x14,0x34,0x0d,0x95,0x7d,0x77,0x83,0xdc,0x3b,0x81, -0xdf,0x05,0xaf,0xe8,0x45,0x90,0x69,0x87,0x41,0x9e,0xbd,0x0a, -0x12,0xed,0x1c,0x48,0xb3,0x6f,0x99,0x3c,0x0b,0x01,0x89,0x06, -0xf2,0x0c,0xa4,0x59,0x12,0xc8,0x33,0x0b,0xb6,0x82,0x3c,0x9b, -0x04,0xb2,0x0c,0x24,0x19,0xf4,0xc9,0xf5,0x4c,0x06,0x2f,0x83, -0x9e,0x59,0x0e,0x32,0x71,0x25,0xc8,0xe0,0x5e,0xae,0x19,0x64, -0xf1,0x1d,0x20,0x53,0x3f,0x40,0xbf,0x42,0xeb,0xd0,0x26,0x74, -0x17,0xd8,0x8b,0x51,0xe8,0x41,0x12,0x03,0x16,0x89,0x05,0xdd, -0x0b,0x52,0xfa,0x3a,0xf0,0xb9,0xce,0xe2,0x0c,0x34,0x03,0x64, -0xf8,0x36,0x74,0x0f,0x7a,0x04,0x6d,0x00,0xef,0xb2,0x0b,0x4d, -0x43,0xf5,0xdc,0x63,0x20,0x99,0xd7,0x82,0xcc,0x05,0xd9,0x83, -0x6a,0xc0,0x63,0xa2,0xbd,0x4f,0xe9,0x60,0x3d,0xba,0x1b,0x2f, -0x02,0xbf,0x7f,0x21,0xf4,0xfd,0x54,0xd4,0x89,0x9e,0x47,0x2f, -0x00,0x45,0x6c,0x06,0xfa,0x98,0x82,0x16,0x83,0x24,0xdf,0x0e, -0xf2,0xfc,0x21,0x90,0xe2,0xbc,0xf4,0x7e,0x91,0x4a,0x6e,0x68, -0xe1,0x00,0x93,0xd9,0xff,0xc6,0xc1,0xa0,0x11,0xeb,0xb8,0x06, -0x41,0x72,0x74,0x81,0xdc,0x98,0xc6,0x4d,0x46,0x08,0x14,0x99, -0xb5,0xe6,0x10,0x0a,0x6a,0x68,0x3b,0x80,0xf1,0xe6,0xf6,0x43, -0x78,0xe8,0xb6,0x43,0xa8,0x34,0xee,0x30,0xe0,0x93,0x9b,0xd6, -0x95,0x7a,0x08,0x61,0xab,0x4e,0x57,0x36,0xaf,0xb4,0x0f,0x77, -0xc3,0x0d,0xb1,0x42,0x42,0x8a,0x1e,0x62,0x9c,0x55,0x57,0xde, -0xc7,0x99,0xca,0x1b,0xdb,0x8c,0xed,0xba,0x8d,0xba,0x8d,0x55, -0xb3,0x36,0xea,0xca,0x75,0x73,0xa7,0xcf,0xea,0x13,0x99,0x58, -0x08,0x0f,0x66,0x6f,0x6c,0xb7,0xe9,0xfa,0x50,0x53,0xdb,0x3c, -0xb8,0x36,0xb7,0xe9,0xfb,0x0a,0xdb,0xd5,0xbe,0xe8,0xec,0xf6, -0xf6,0x1c,0xc8,0x47,0x44,0xf3,0x11,0xb1,0x7c,0x36,0xb6,0x43, -0x0e,0xf3,0x85,0x1c,0xe6,0xb3,0x1c,0x20,0x83,0xcb,0xf0,0x92, -0xd8,0x5a,0xa3,0xeb,0xe3,0x12,0x1b,0xda,0x26,0xb5,0xf5,0xad, -0x29,0x55,0xf7,0x15,0x96,0xb6,0xab,0xf5,0x7a,0x5d,0x59,0xdf, -0xf1,0x86,0xb6,0xbe,0xe3,0xa5,0x6a,0x7d,0x7b,0x3b,0xbc,0x15, -0xe0,0xab,0x29,0x84,0x37,0xcd,0x8b,0x16,0xea,0x2c,0x81,0x3a, -0x07,0xa4,0x40,0x24,0x90,0xcf,0xa5,0xa9,0xad,0xaf,0x50,0xdd, -0x87,0xda,0x37,0x6e,0xe4,0xef,0x8c,0xfa,0xbe,0x35,0x1b,0x37, -0xaa,0x37,0x42,0x3b,0x84,0xfb,0x43,0xe8,0xf8,0xa8,0x04,0x8c, -0x46,0x27,0x14,0x0a,0x09,0x80,0x09,0x9a,0x23,0x67,0x2a,0x3b, -0x84,0xd7,0x34,0xb0,0x47,0x6b,0x8c,0x7a,0x35,0x4d,0x30,0xea, -0x8d,0x7a,0xa8,0x67,0x7b,0x29,0x94,0x1d,0x64,0xad,0x69,0x6a, -0x2b,0x83,0x9a,0xea,0xdb,0x53,0x29,0xce,0x2d,0x40,0x65,0x18, -0xac,0x3a,0x62,0xc1,0xfd,0x40,0xb4,0x1c,0x8d,0x1c,0x83,0xc8, -0x24,0xe0,0x92,0x4c,0xe0,0x05,0x15,0x35,0xee,0x2d,0xc7,0x80, -0x9a,0xcb,0x80,0xe2,0xad,0x40,0xb3,0x72,0x21,0x45,0x0a,0xdc, -0xe4,0x04,0x2e,0xd1,0x02,0x8d,0xd3,0x14,0x74,0x0c,0x32,0x6a, -0x02,0xd6,0x72,0x02,0xfb,0x78,0x3f,0x23,0xc0,0x24,0x76,0x60, -0x26,0xad,0xef,0x33,0x0e,0x48,0xa8,0x02,0x18,0x28,0xc9,0xf7, -0x8e,0x08,0xd8,0xa8,0x19,0x18,0xd3,0x86,0x34,0x42,0x8a,0x18, -0x58,0xb6,0x00,0xd8,0x6d,0x38,0x9f,0x00,0x20,0xb4,0x1a,0x60, -0xe2,0xe1,0x14,0x09,0x30,0x63,0x0a,0x30,0x6d,0x34,0x54,0x96, -0x4f,0x09,0x04,0x73,0x23,0x17,0x72,0x31,0x20,0x85,0x90,0x12, -0x04,0x66,0xc6,0x0c,0x34,0x11,0x4a,0xd3,0x0b,0x29,0xc1,0xe8, -0x41,0x60,0x95,0x19,0xc0,0xfc,0x29,0x42,0x4a,0x08,0xd4,0x44, -0x07,0xb9,0xc8,0xe8,0x44,0x1e,0x4b,0x09,0x05,0x26,0xea,0x80, -0x37,0x32,0xa0,0xd6,0x7c,0x4a,0x18,0x94,0xed,0x5f,0x1f,0xc0, -0x99,0x0c,0x2a,0x20,0xb1,0x00,0x02,0xf9,0x1e,0xee,0x07,0x64, -0x28,0x11,0x5e,0xd1,0x0f,0x0c,0xcd,0x87,0x05,0x42,0xb8,0x43, -0x08,0xa5,0x34,0x5c,0x29,0xbc,0x07,0x61,0x37,0xe4,0x85,0x97, -0xd3,0x74,0x15,0x7b,0xbe,0x58,0x08,0x23,0x68,0xb8,0x92,0x7e, -0xcf,0x87,0x8b,0x85,0xf0,0x31,0x16,0x42,0xf1,0x2a,0xe8,0x99, -0x6e,0xc8,0xc6,0x05,0x68,0xcc,0x05,0x1e,0xac,0x01,0xf9,0x94, -0x00,0xbc,0x9d,0x01,0xcd,0x2f,0x05,0x99,0xd6,0x0a,0xef,0x84, -0x0e,0x65,0xa1,0x50,0x5c,0x05,0xd2,0x74,0x29,0x0a,0x20,0x22, -0x14,0x4a,0xfa,0x01,0xce,0x42,0xd3,0xe8,0xbf,0x0c,0xe1,0xef, -0x5d,0xd0,0xe1,0xaf,0x12,0x05,0xd9,0xc4,0x11,0xae,0x19,0xbc, -0x8e,0x27,0xc4,0x33,0xc4,0x87,0xc4,0x97,0x02,0x6a,0x03,0x1e, -0x08,0x78,0x5d,0x52,0x27,0x79,0x42,0xf2,0x5d,0xe0,0x92,0xc0, -0x73,0x41,0xd6,0xa0,0xfb,0x82,0xce,0x06,0xe7,0x04,0x2f,0x0b, -0x7e,0x3f,0x44,0x17,0xb2,0x30,0x64,0x57,0xc8,0x77,0xa1,0xab, -0x42,0x4f,0x84,0x45,0x87,0x2d,0x09,0xeb,0x0b,0x4f,0x0c,0xdf, -0x14,0xfe,0x46,0x44,0x60,0x44,0x5d,0xc4,0x75,0x11,0xef,0x4b, -0xb5,0xd2,0x1b,0xa5,0x67,0x65,0xad,0xb2,0x81,0xc8,0xdc,0xc8, -0x45,0x91,0xcf,0x47,0x7e,0x25,0x6f,0x96,0xef,0x94,0x9f,0x53, -0x18,0x14,0xbd,0x8a,0xef,0x94,0xf3,0x95,0x7b,0xa3,0x82,0xa3, -0x5e,0x54,0x05,0xa8,0x56,0xa8,0xce,0x47,0x27,0x45,0x0f,0xc6, -0xb4,0xc5,0x26,0xc6,0x7a,0xd4,0x51,0x6a,0xad,0xda,0xa5,0xae, -0x53,0xf7,0xa8,0xb7,0xaa,0x77,0xa8,0xf7,0xaa,0x4f,0xab,0xcf, -0xab,0xbf,0xd3,0x44,0x6a,0xb4,0x9a,0x06,0xcd,0x3a,0xcd,0x56, -0xcd,0xc3,0x9a,0x93,0x9a,0x0f,0x35,0x17,0xe2,0x82,0xe3,0xa2, -0xe2,0x0c,0x71,0x5d,0x71,0x3b,0xe2,0x2e,0x69,0xbb,0xb5,0x5b, -0xb5,0xc7,0xb5,0x9f,0xc5,0x07,0xc7,0x37,0xc7,0xef,0x88,0x3f, -0x1e,0x3f,0xa8,0x23,0xba,0x60,0xdd,0x6e,0xfd,0x1a,0xfd,0x03, -0xfa,0x97,0x0d,0xf3,0x0d,0xbb,0x8d,0xdd,0x09,0xb1,0x09,0xab, -0x4d,0xe1,0xa6,0x36,0xd3,0x2e,0xd3,0xeb,0xa6,0x01,0x93,0x27, -0xb1,0x3c,0x71,0xa7,0x39,0xcb,0xdc,0x65,0xde,0x67,0xfe,0xd0, -0xfc,0x55,0x52,0x5a,0x52,0x5b,0xd2,0xee,0xa4,0x81,0xa4,0x53, -0xc9,0x9a,0xe4,0xc2,0xe4,0x9e,0xe4,0xed,0xc9,0xef,0x26,0x5f, -0x48,0xfe,0x31,0x45,0x93,0xd2,0x95,0xb2,0x2a,0xe5,0xe5,0x94, -0x8b,0x96,0x1b,0x2d,0x67,0xad,0xb3,0x52,0x15,0xa9,0x5b,0xd3, -0xa4,0x69,0x9b,0x6d,0x52,0xdb,0x46,0xdb,0x77,0xe9,0x59,0xe9, -0xdb,0x33,0x6e,0x74,0x5c,0xcc,0xdc,0xec,0x4c,0x74,0x0e,0xb8, -0x1e,0x70,0x07,0xb8,0x9f,0xc8,0x0a,0xcc,0xaa,0xcd,0x4e,0xca, -0x59,0x3b,0xa1,0x30,0x77,0x53,0xee,0x3b,0x79,0x1d,0x79,0xfb, -0xf2,0x0d,0xf9,0x9e,0x82,0x35,0x05,0x9b,0x0a,0x1e,0x28,0xd8, -0x59,0xd0,0x57,0xf0,0x72,0xc1,0x89,0x82,0x0f,0x0a,0x06,0x0b, -0xbe,0x2c,0xf8,0xbe,0xf0,0xfd,0xc2,0xd3,0x85,0xe7,0x0b,0xbf, -0x2b,0x22,0x45,0x91,0x45,0xda,0xa2,0x94,0x22,0x57,0x51,0x71, -0x51,0x63,0x51,0x57,0xd1,0xfc,0xa2,0xde,0xa2,0xb5,0x45,0x9b, -0x8b,0xb6,0x17,0xed,0x2a,0x3a,0x58,0x74,0xb4,0xe8,0x64,0xd1, -0x87,0x45,0x9f,0x14,0xef,0x28,0xde,0x5b,0x7c,0xa8,0xf8,0xf5, -0xe2,0x81,0xe2,0xc1,0xe2,0x2f,0x8b,0xbf,0x2f,0x11,0x95,0x48, -0x4b,0x74,0x25,0xd6,0x92,0xac,0x92,0xd2,0xd2,0x8c,0xd2,0xfc, -0xd2,0xea,0xd2,0xd6,0xd2,0xd3,0xa5,0xe7,0x4b,0xbf,0x2b,0x23, -0x65,0x4f,0x94,0x97,0x97,0x37,0x96,0x77,0x95,0xcf,0x2f,0xef, -0x2d,0x5f,0x5b,0xbe,0xb9,0x7c,0x7b,0xf9,0xae,0xf2,0x83,0xe5, -0x47,0x2b,0xd6,0x55,0x6c,0xad,0x78,0xb8,0x62,0x6f,0xc5,0xa1, -0x8a,0xd7,0x2b,0x06,0x2a,0xeb,0x2a,0x3b,0x2a,0x7b,0x2a,0x97, -0x55,0xae,0xae,0xdc,0x58,0x79,0x5f,0xe5,0x13,0x95,0xfb,0xaa, -0x52,0xaa,0xba,0xab,0xd6,0x55,0x6d,0xad,0x7a,0xb8,0x6a,0x77, -0xd5,0xf3,0x55,0xc7,0xab,0xde,0xa9,0xfa,0xa8,0xea,0x6c,0xd5, -0x85,0xea,0x1b,0xab,0x37,0x54,0xdf,0x5b,0xbd,0xbb,0xfa,0xc3, -0xea,0x4f,0xaa,0xbf,0xaa,0xfe,0xb1,0xa6,0xbc,0xa6,0xa3,0xa6, -0xa7,0x66,0x59,0xcd,0xea,0x9a,0x81,0x9a,0x53,0x35,0xe7,0x6a, -0x2e,0xd6,0xa2,0xda,0xd0,0xda,0xf9,0xb5,0xbd,0xb5,0x6b,0x6b, -0x37,0xd7,0x6e,0xaf,0xdd,0x55,0x7b,0xb0,0xf6,0x68,0xed,0xc9, -0xda,0x0f,0x6b,0x3f,0x99,0xd8,0x3b,0x71,0xed,0xc4,0xcd,0x75, -0xa8,0x2e,0xb4,0x2e,0xba,0x2e,0xa1,0xce,0x5e,0x97,0x5b,0x57, -0x59,0xd7,0x56,0x37,0xab,0x6e,0x49,0xdd,0x8d,0xf5,0xc5,0xf5, -0x75,0xf5,0x1d,0xf5,0x3d,0xf5,0xcb,0xea,0x57,0x37,0xe8,0x1a, -0xac,0x0d,0x59,0x0d,0x2b,0x26,0x29,0x26,0x6d,0x6d,0x14,0x35, -0x4a,0x1b,0x35,0x8d,0xbb,0x9b,0x0c,0x4d,0x69,0x4d,0x39,0x4d, -0xe5,0x4d,0x8d,0x4d,0x5d,0x4d,0xf3,0x9b,0x7a,0x9b,0xd6,0x36, -0x6d,0x6e,0xda,0xde,0x9c,0xd9,0x5c,0xd8,0x5c,0xdb,0xfc,0x7c, -0xf3,0xf1,0xe6,0x77,0x9a,0x3f,0x6a,0x3e,0xdb,0x7c,0xa1,0xf9, -0x52,0x4b,0x60,0x8b,0xa2,0x45,0xd7,0x62,0x6d,0xc9,0x6a,0x29, -0x6d,0x69,0x68,0x99,0xda,0x32,0xb7,0x65,0x45,0xcb,0x9a,0x96, -0x4d,0x2d,0x0f,0xb4,0xec,0x6c,0xe9,0x6b,0x79,0xb9,0xe5,0x44, -0xcb,0x07,0x2d,0x83,0x2d,0x5f,0xb6,0x7c,0xdf,0x2a,0x6a,0x95, -0xb6,0x6a,0x5a,0x93,0x5a,0x33,0x5b,0x4f,0xb4,0x7e,0xd0,0x3a, -0xd8,0xfa,0x65,0xeb,0xf7,0x93,0x03,0x27,0x2b,0x26,0xeb,0x26, -0x5b,0x27,0x67,0x4d,0xae,0x9c,0xdc,0x3c,0xb9,0x7b,0xf2,0xc2, -0xc9,0x5f,0x4d,0xfe,0xb1,0x2d,0xa0,0x2d,0xb2,0xed,0x81,0xb6, -0x9d,0x6d,0x7d,0x6d,0x2f,0xb7,0x57,0xb7,0x37,0xb6,0x77,0xb5, -0xcf,0x6f,0xef,0x6d,0x5f,0xdb,0xbe,0xb9,0x7d,0x7b,0xfb,0xae, -0xf6,0x83,0xed,0x47,0xdb,0x4f,0x76,0xf4,0x74,0x2c,0xeb,0x58, -0xdd,0xb1,0xb9,0x63,0x7b,0xc7,0xae,0x8e,0x83,0x53,0x12,0xa7, -0x64,0x4c,0xc9,0x9f,0x52,0x3d,0xa5,0x75,0xca,0xb9,0x29,0x17, -0xa7,0xa2,0xa9,0xa1,0x53,0xa3,0xa7,0x26,0x4c,0xb5,0x4f,0xcd, -0x9d,0x5a,0x39,0xb5,0x79,0x6a,0xf7,0xd4,0x85,0x53,0xbf,0x9c, -0xfa,0x7d,0x67,0x43,0x67,0x77,0xe7,0xc2,0xce,0xeb,0x3a,0xd7, -0x75,0x6e,0xed,0x7c,0xb8,0x73,0x77,0xe7,0xf3,0x5d,0xa2,0x2e, -0x69,0x97,0xa6,0x2b,0xa9,0x2b,0xb3,0xeb,0xde,0xae,0x1d,0x5d, -0x7b,0xbb,0x0e,0x75,0xbd,0xde,0x35,0xd0,0x75,0xaa,0xeb,0x5c, -0xd7,0xc5,0x69,0x68,0x5a,0xe8,0xb4,0x3d,0xd3,0x5e,0x9c,0xf6, -0x6a,0x77,0x7e,0x77,0x75,0x77,0x6b,0xf7,0x8c,0xee,0x45,0xdd, -0xab,0xba,0xd7,0x77,0xdf,0xd7,0xfd,0x44,0xf7,0xbe,0xee,0xfe, -0xe9,0x3d,0xd3,0x97,0x4d,0x5f,0x3d,0x7d,0xe3,0xf4,0xfb,0xa6, -0x3f,0x31,0xa3,0x72,0x46,0xf3,0x8c,0xee,0x19,0x6f,0xcc,0xcc, -0x9c,0x59,0x38,0xb3,0x76,0xe6,0xd1,0x59,0xae,0x59,0xc5,0xb3, -0xea,0x66,0x75,0xcc,0xea,0x99,0xb5,0x6c,0xd6,0xea,0x59,0x1b, -0x67,0xdd,0x37,0xeb,0x89,0x59,0xfb,0x66,0x17,0xcf,0xae,0x9b, -0xdd,0x31,0xbb,0x6f,0xf6,0xcb,0xb3,0x4f,0xcc,0xfe,0x60,0xf6, -0xe0,0xec,0x2f,0x67,0x7f,0xdf,0x23,0xea,0x91,0xf6,0x68,0x7a, -0x92,0x7a,0x32,0x7b,0x0a,0x7b,0x6a,0x7b,0xda,0x7a,0x66,0xf5, -0x2c,0xe9,0xb9,0xb1,0x67,0x43,0xcf,0xbd,0x3d,0x3b,0x7a,0xf6, -0xf6,0x1c,0xea,0x79,0x7d,0x8e,0x75,0xce,0xfc,0x39,0x7b,0xe6, -0xfc,0x38,0x77,0xc5,0xbc,0xe0,0x79,0x9b,0xe6,0x6b,0xe7,0xf7, -0xce,0xbf,0xb0,0xa0,0x6b,0xc1,0xf1,0x85,0xda,0x85,0x7d,0x0b, -0x4f,0x5f,0x93,0x79,0xcd,0xe6,0x6b,0x3c,0x8b,0x8a,0x17,0x7d, -0xb8,0xe8,0xf4,0xe2,0xa4,0xc5,0x5b,0x17,0x7f,0xb6,0xa4,0x74, -0xc9,0xea,0x25,0x47,0x97,0x56,0x2f,0xdd,0xb7,0x2c,0x7a,0xd9, -0xc1,0x65,0xfd,0xcb,0x5e,0x5d,0x76,0x72,0xd9,0xfb,0xcb,0x3e, -0x5e,0xf6,0xc9,0xb2,0xf3,0xcb,0x97,0x2d,0x5f,0xb5,0x7c,0xed, -0xf2,0xe3,0xcb,0x4f,0x2c,0x1f,0x58,0xa1,0x5d,0x91,0xb8,0x22, -0x6d,0x85,0x6b,0xc5,0xb2,0x15,0xab,0x56,0xac,0x5d,0xd9,0xb1, -0x72,0xc6,0xca,0x13,0x2b,0x07,0x56,0x9e,0x5a,0x79,0x6e,0xe5, -0xc5,0x5e,0xd4,0x1b,0xda,0x1b,0xdd,0x9b,0xd0,0x6b,0xef,0xcd, -0xed,0xad,0xec,0x6d,0xee,0xed,0xee,0x5d,0xd8,0x7b,0x5d,0xef, -0xba,0xde,0xad,0xbd,0x0f,0xf7,0xee,0xee,0x7d,0xbe,0xf7,0x78, -0xef,0x3b,0xbd,0x1f,0xf4,0x9e,0xba,0xb6,0xf9,0xda,0x57,0xaf, -0xfd,0xea,0xba,0xe2,0xeb,0xaa,0xaf,0x27,0xd7,0x2f,0xba,0xbe, -0xff,0xfa,0x37,0x56,0xe5,0xac,0xda,0xb0,0xea,0xf4,0x0d,0x89, -0x37,0xa4,0xdd,0xd0,0x73,0xc3,0xa2,0x1b,0x7a,0x6f,0xd8,0x75, -0xc3,0xbe,0x1b,0x7b,0x6e,0x5c,0x74,0xe3,0xbe,0x9b,0x02,0x6f, -0xaa,0xbb,0x69,0xc7,0x4d,0x3f,0xae,0x9e,0xbb,0xba,0xff,0xe6, -0xd8,0x9b,0xb7,0xae,0x41,0x6b,0x02,0xd7,0x74,0xad,0xe9,0x59, -0xb3,0x6d,0xcd,0xb9,0x35,0x17,0x6e,0x39,0xbe,0x36,0x63,0xed, -0x9a,0xb5,0x9b,0x6e,0x8d,0xbc,0xb5,0xeb,0xd6,0x9e,0x5b,0x17, -0xdd,0xda,0x7b,0xeb,0xbe,0x5b,0x5f,0xbc,0xf5,0xe8,0xad,0x6f, -0xac,0x53,0xac,0x7b,0x62,0xdd,0x9e,0x75,0xe7,0x6f,0xcb,0xbd, -0x6d,0xed,0x6d,0x1f,0xac,0x4f,0x59,0xbf,0x6d,0xfd,0xe9,0xdb, -0x73,0x6f,0xdf,0xb7,0xc1,0xb0,0x21,0x6d,0x43,0xce,0x86,0xf2, -0x0d,0x8d,0x1b,0x3a,0x36,0xf4,0x6c,0x78,0x60,0xc3,0xe9,0x3b, -0x8a,0xef,0xa8,0xbb,0xa3,0xe3,0x8e,0x9e,0x3b,0x4e,0xdc,0xf1, -0xc1,0x1d,0x83,0x1b,0x1f,0xdd,0xb8,0xe7,0xce,0x84,0x3b,0x2b, -0xef,0x6c,0xbe,0xb3,0xfb,0xce,0x85,0x77,0x5e,0x77,0xe7,0x37, -0x9b,0xae,0xdb,0xf4,0xcd,0x5d,0x8b,0xee,0x7a,0x7d,0x73,0xce, -0xe6,0x8d,0x9b,0xef,0xdb,0xec,0xd9,0x12,0xb0,0x65,0xc6,0x96, -0x45,0x5b,0x56,0x6d,0x59,0xbf,0x65,0xdb,0x96,0x8f,0xb7,0x66, -0x6c,0xdd,0xb4,0xf5,0x81,0xad,0x9e,0xbb,0x17,0xde,0x7d,0xdd, -0xdd,0x6b,0xee,0x7e,0xf5,0xee,0x93,0x77,0x7f,0x78,0xf7,0xe9, -0x6d,0x5d,0xdb,0x7a,0xb6,0x2d,0xda,0xd6,0xbb,0x6d,0xed,0xb6, -0xcd,0xdb,0xee,0xdb,0xf6,0xc4,0xb6,0x0f,0xee,0x31,0xdc,0xb3, -0xfd,0x9e,0x5d,0xf7,0x1c,0xbc,0xe7,0xe8,0xbd,0x9a,0x7b,0x93, -0xee,0xcd,0xfc,0x55,0xf0,0xaf,0xa2,0x7e,0xb5,0xf5,0x57,0x0f, -0xfc,0x6a,0xe7,0xaf,0xfa,0x7e,0xf5,0xf2,0xaf,0x4e,0xdc,0xd7, -0x7c,0xdf,0x85,0xfb,0x57,0xdf,0xff,0xfd,0x03,0x3d,0x0f,0x5c, -0x78,0xb0,0xe3,0xc1,0x9e,0x07,0x3f,0x7a,0x70,0x70,0x7b,0xce, -0xf6,0xf2,0xed,0x8d,0xdb,0xbb,0xb6,0xcf,0xdf,0xbe,0x6c,0xfb, -0xeb,0x0f,0xe9,0x1e,0xb2,0x3e,0xb4,0xf1,0xa1,0x6f,0x1e,0xf2, -0x3c,0x1c,0xf0,0x70,0xe5,0xc3,0x0d,0x0f,0x4f,0x7d,0x78,0xd6, -0xc3,0xef,0x3c,0x62,0x7d,0x64,0xfd,0x23,0x9b,0x1f,0xf9,0xe8, -0x51,0xe9,0xa3,0x3d,0x8f,0x9e,0x7b,0x2c,0xe3,0xb1,0x7b,0x77, -0xa0,0x1d,0x19,0x3b,0x0e,0x3e,0x6e,0x78,0x7c,0xe1,0xe3,0x4f, -0x3c,0xfe,0xdd,0x13,0xbd,0x4f,0x1c,0x7f,0xd2,0xf0,0xe4,0xe6, -0x27,0x8f,0xef,0xcc,0xdf,0xb9,0x6f,0xe7,0xd1,0x9d,0xef,0xee, -0x3c,0xbd,0xf3,0xab,0x9d,0x9e,0xa7,0xc2,0x9f,0xd2,0x3e,0x95, -0xf6,0x54,0xfe,0x53,0x75,0x4f,0x75,0x3d,0xb5,0xe8,0xa9,0xd5, -0x4f,0x6d,0x7e,0xea,0xd1,0xa7,0xf6,0x3d,0x75,0xf4,0xa9,0xf3, -0xbb,0x62,0x77,0x95,0xee,0x5a,0xb5,0xab,0x6f,0xd7,0xc7,0x4f, -0x8b,0x9e,0x4e,0x7b,0xba,0xed,0xe9,0xb5,0x4f,0x1f,0x7f,0xda, -0xb3,0x3b,0x65,0x77,0xeb,0xee,0xb5,0xbb,0xf7,0xed,0xfe,0xf2, -0x99,0x94,0x67,0xb2,0x9e,0x29,0x7f,0x66,0xed,0x33,0x27,0xf6, -0x04,0xef,0xa9,0xdd,0xb3,0x79,0xcf,0xc0,0xaf,0x73,0x7e,0xfd, -0xc4,0xde,0xd0,0xbd,0x8b,0xf6,0x6e,0xdf,0xfb,0xc6,0xb3,0x01, -0xcf,0xe6,0x3e,0xdb,0xf3,0xec,0xe6,0x67,0x5f,0xdf,0xa7,0xd8, -0x37,0x7f,0xdf,0xc1,0xfd,0xe1,0xfb,0xd7,0xed,0x3f,0xb8,0xff, -0xfd,0xbe,0xb4,0xbe,0xf5,0x7d,0xbb,0x0f,0x04,0x1c,0x90,0x1e, -0x88,0x3d,0x90,0x70,0x20,0xed,0x40,0xd6,0x81,0xe2,0x03,0xb5, -0x07,0x5a,0x0f,0x74,0x1f,0x98,0x7f,0x60,0xc5,0x81,0xfe,0x03, -0xaf,0x1f,0x78,0xf7,0xc0,0x85,0x03,0x3f,0x1e,0x8c,0x3e,0x58, -0x7e,0xb0,0xe1,0xe0,0x3b,0xcf,0x55,0x3e,0xf7,0xfe,0xf3,0x6b, -0x9f,0xff,0xe0,0x85,0x8c,0x17,0xd6,0xbe,0xf0,0xc9,0x8b,0x6d, -0x2f,0x1e,0x7a,0x29,0xed,0xa5,0xb5,0x87,0xa2,0x0f,0x6d,0x3c, -0x74,0xfe,0x70,0xf8,0xe1,0x86,0xc3,0x0f,0x1f,0x7e,0xfd,0xf0, -0xe0,0xe1,0x4b,0xfd,0xf9,0xfd,0x1b,0xfb,0x2f,0x1e,0xc9,0x3c, -0x72,0xdf,0xcb,0xe8,0x65,0xed,0xcb,0x75,0x2f,0xef,0x78,0xf9, -0x9b,0xdf,0x74,0xff,0xe6,0xdc,0xd1,0xdc,0xa3,0x0f,0x1f,0xfd, -0xea,0x98,0xeb,0xd8,0xd6,0x63,0x1f,0x1f,0xcf,0x39,0xbe,0xf5, -0x95,0x60,0xf8,0xfb,0xe8,0xd5,0x35,0x74,0x50,0x88,0xae,0xc5, -0xc1,0x87,0xb8,0x50,0x30,0x69,0x24,0x28,0xa7,0x1f,0xec,0x18, -0x30,0xfe,0x65,0x91,0xd9,0x60,0x4b,0x4a,0xc1,0x30,0x18,0xa0, -0xe6,0x55,0x59,0x1b,0x5c,0x6c,0xea,0xc3,0xf0,0xbe,0x2c,0xbf, -0x1d,0x6c,0xd6,0x53,0x70,0x0f,0x4f,0x45,0x10,0x62,0x08,0x25, -0xa7,0xec,0xe9,0x0e,0x99,0x5e,0x66,0xd2,0xcb,0xf4,0x3a,0xfc, -0x80,0x67,0x27,0xd6,0x79,0x06,0xb9,0xd0,0x4b,0x17,0x73,0xc9, -0xbd,0xac,0x0c,0xeb,0xd0,0x45,0xfc,0x03,0x91,0x82,0xb7,0x90, -0x8a,0x5e,0xe8,0x07,0x4b,0x04,0x9c,0x11,0x56,0x46,0x18,0x7c, -0x6d,0xf6,0x95,0x11,0x43,0xcb,0x88,0x41,0x31,0xb4,0x0c,0x96, -0x20,0xa1,0x09,0x12,0xbe,0xd0,0x31,0xb5,0x90,0x48,0x0f,0x43, -0xe5,0xc5,0x17,0x69,0x9d,0x75,0x28,0x86,0xe5,0x17,0x03,0x69, -0x91,0x2c,0x2d,0x0c,0x42,0x1d,0x5f,0x86,0xad,0x48,0x0c,0x06, -0x49,0x18,0x94,0x0e,0x16,0xe2,0x52,0xb8,0xb1,0x41,0xa4,0x80, -0xde,0x74,0x16,0x71,0xe8,0x6b,0x88,0xe0,0xa5,0xfd,0x60,0xd0, -0x44,0xa2,0x30,0xf6,0x01,0x82,0x4c,0xe2,0x20,0x13,0x5a,0xbd, -0xc3,0x60,0x2e,0x89,0x2f,0xda,0xd3,0xf5,0x86,0x44,0xb3,0x31, -0x1c,0x1b,0x0d,0x89,0xce,0x4c,0xd7,0x04,0xec,0xcc,0x4c,0x34, -0x1a,0x02,0x24,0xe6,0x7c,0xec,0xc8,0x88,0x52,0xca,0x1c,0x4a, -0x53,0x46,0x3e,0xc9,0x83,0xc7,0x01,0x71,0x58,0x11,0x85,0xdf, -0x49,0x35,0x8b,0xc5,0xb2,0x3a,0x57,0xe3,0x94,0x05,0x4b,0x7b, -0x72,0xf3,0x6d,0x05,0x4a,0xbb,0x72,0x6a,0x79,0xd7,0xdc,0x09, -0x9e,0x7f,0x68,0x33,0x12,0x14,0xf3,0xcb,0x0a,0xdc,0xf6,0x04, -0xbb,0xbd,0xb9,0xb2,0xaa,0xce,0xe1,0xce,0x49,0x31,0xa6,0xa6, -0x4c,0x98,0xda,0xe8,0x39,0x5b,0x9e,0x15,0x1e,0x6b,0x50,0xb4, -0x24,0x25,0x2a,0x13,0x53,0x18,0xde,0x32,0x00,0x6f,0x5f,0x13, -0x6a,0x74,0x99,0xd1,0x2d,0xfd,0xe0,0x7e,0x81,0x43,0xc7,0xaa, -0x18,0x05,0x78,0xe3,0x7c,0x78,0x0b,0xa3,0x58,0x09,0xf3,0xc3, -0x5b,0x24,0x4d,0x88,0xf4,0x4b,0xe0,0x68,0x02,0xe7,0x87,0x48, -0x25,0x4d,0x50,0xf2,0x09,0x1c,0xb4,0x32,0x8a,0x21,0x0d,0x43, -0x18,0x26,0x74,0xcc,0x61,0x30,0x37,0x69,0x9a,0x14,0x42,0x0e, -0xd2,0xec,0xe9,0x26,0x63,0x80,0xd1,0x90,0x46,0x9c,0x99,0xf9, -0x04,0x5a,0xad,0x72,0x38,0x1d,0x32,0xa3,0x99,0xb5,0x3b,0x33, -0x8d,0x78,0x9b,0xfe,0x98,0xc8,0x36,0xd7,0x5e,0xe7,0x8e,0x8b, -0x73,0xd7,0xd9,0x5d,0x13,0x15,0xa2,0x86,0x86,0xdb,0xd4,0xe9, -0x09,0x4a,0x65,0x42,0xba,0xba,0xb4,0xae,0xae,0xb9,0x3b,0xb1, -0x7c,0x56,0x7e,0xfe,0xac,0xf2,0x44,0x5b,0x7a,0xf3,0xe5,0x4b, -0xb9,0xe1,0x6a,0x73,0xcc,0x71,0xa5,0x29,0x36,0xa2,0xa5,0xac, -0xad,0xac,0x85,0xb5,0xb9,0x65,0xe8,0x22,0x89,0x04,0x2b,0x6f, -0xdc,0x36,0x4b,0x47,0xd3,0x63,0x9c,0xaf,0x45,0x01,0x34,0x21, -0xc0,0xaf,0xcd,0xfe,0x4d,0x64,0x09,0x52,0x9a,0x20,0xe5,0x13, -0x02,0x84,0x3e,0xee,0x07,0xac,0xc4,0x21,0x29,0x2b,0x40,0xea, -0xc3,0x43,0x24,0x64,0x14,0xc5,0xda,0x2c,0x77,0xc8,0x1c,0xb4, -0x93,0xb5,0x44,0xa9,0x08,0x87,0x46,0x9a,0x8d,0x4a,0xa3,0x3b, -0xc3,0x05,0x4d,0x06,0x02,0x08,0x27,0xd0,0x64,0x2d,0x69,0x69, -0x10,0x29,0x26,0xba,0xbc,0x8d,0x9e,0x97,0x26,0x6a,0xf8,0x23, -0x34,0xb5,0x54,0x68,0x36,0x39,0xeb,0x79,0x27,0xdd,0xe6,0x6d, -0x76,0x77,0x73,0x2e,0x6b,0x6a,0x44,0xac,0x49,0x79,0x3c,0xc6, -0xac,0x0e,0x67,0x33,0x2a,0x36,0xe8,0xe7,0x3f,0x33,0xfe,0x28, -0xe1,0x17,0xc9,0xe9,0xa1,0x70,0x6f,0x4b,0x83,0x69,0xb5,0x83, -0xfd,0x1a,0xe6,0xcf,0x04,0xc1,0x50,0x67,0x19,0xa3,0x55,0x4a, -0xb5,0xb1,0x8c,0x56,0xc5,0x7e,0x9d,0x24,0x49,0xc3,0x42,0x3d, -0xa3,0x1c,0x19,0x6e,0x55,0x38,0xc6,0x4a,0x57,0xeb,0x84,0xf8, -0xf8,0x09,0xad,0xae,0x89,0x9d,0xaa,0x92,0xf0,0x42,0x7b,0x82, -0x2b,0x21,0xb2,0xaa,0x62,0xba,0x25,0x27,0x66,0x66,0xa8,0xb7, -0x96,0x25,0x2e,0x43,0x92,0x55,0x95,0x9c,0x6d,0x68,0x2b,0x9d, -0xdc,0x61,0xce,0x2a,0x1e,0xa6,0x45,0xbe,0x5f,0x6e,0xba,0x32, -0x2d,0x0a,0xa4,0x37,0xdc,0x2f,0x63,0x88,0x73,0x4c,0xbf,0x0c, -0x13,0xe7,0x7f,0x47,0x87,0xb2,0xff,0x1d,0x1d,0xe2,0xcc,0xcb, -0x9a,0x31,0x84,0x48,0x58,0x9f,0x7c,0x07,0x7d,0x12,0x07,0x0d, -0x5d,0x46,0x7b,0x25,0x19,0xa5,0xb0,0x2a,0x69,0x07,0x7e,0x71, -0xcf,0x68,0x7d,0x3d,0xa3,0x62,0x6d,0x90,0x41,0x8a,0x8a,0x65, -0x22,0xa3,0x42,0x69,0x10,0x12,0x2e,0x00,0x90,0xce,0x7e,0xe8, -0x3a,0x19,0x7b,0x74,0x18,0xdc,0xa0,0x91,0x9d,0xa8,0x85,0xde, -0xd3,0x2b,0x81,0xce,0x1c,0x19,0x2e,0xda,0x83,0x1c,0xeb,0x4f, -0x3d,0x88,0x20,0xac,0x72,0xb6,0xe4,0xe9,0xf5,0x79,0x2d,0xce, -0xcc,0xc6,0x9c,0x78,0xcf,0x5d,0x4a,0x73,0x76,0x42,0x7a,0x95, -0x22,0x3b,0x66,0x7e,0x95,0xde,0x65,0x8e,0xc2,0x71,0x35,0xa1, -0x89,0x15,0x33,0xf3,0xf3,0x66,0x55,0x24,0x26,0x96,0x4c,0x75, -0x27,0x46,0xeb,0xb3,0x53,0xa2,0xd3,0x2c,0xc9,0xce,0x22,0xfc, -0x27,0x55,0x4a,0xb6,0x41,0x12,0x52,0xd6,0xc4,0xe8,0x2f,0x0e, -0x2e,0x76,0xba,0x86,0x0e,0x2d,0xa6,0xbe,0x9b,0x0c,0x45,0xfa, -0xd1,0x1f,0xa1,0x8d,0x22,0x7e,0xad,0x0c,0xa1,0x09,0x21,0x63, -0xc5,0x74,0xdc,0xb8,0x9c,0x46,0xa0,0xf5,0x98,0xe1,0x81,0x0a, -0xec,0x60,0x16,0x0b,0x81,0x58,0x38,0x6b,0xa6,0xdc,0xe8,0x74, -0x30,0x89,0xaa,0x34,0x2a,0x1d,0x4a,0xa3,0xcc,0xb8,0xb4,0xb9, -0x39,0x2b,0xbb,0x6e,0xf1,0xe2,0xc5,0x0d,0xf8,0x68,0xf9,0x5c, -0x57,0x31,0xd8,0xff,0x9e,0x62,0x3a,0x32,0x66,0x19,0xb2,0x92, -0x40,0x52,0x0d,0x8e,0x79,0x31,0xf8,0x87,0x8f,0xf7,0x83,0xb7, -0x3b,0x09,0x35,0x32,0x64,0x46,0x03,0x05,0x16,0x0c,0xf0,0x61, -0x89,0xaf,0x77,0xa2,0x69,0x25,0xa2,0xc7,0x0a,0x41,0x79,0x7e, -0xfb,0x11,0xda,0x33,0x40,0x4f,0x22,0x0b,0xfd,0xe8,0x30,0xf8, -0x9c,0xb4,0x77,0xb2,0x21,0xe4,0x58,0x86,0xd9,0x36,0x50,0x0c, -0x6b,0x20,0x01,0x77,0x1e,0x06,0x0f,0x3d,0x0c,0x1e,0x06,0x43, -0x98,0xcd,0x1e,0xa6,0x9c,0x82,0x87,0x76,0x70,0xbd,0xf1,0xd2, -0xc3,0xe0,0xc5,0xf2,0xb4,0x59,0x22,0x10,0x07,0x95,0xa5,0x05, -0x7c,0x07,0x2a,0x02,0x78,0x6d,0xe1,0x76,0xf2,0xd7,0x34,0xcc, -0xf7,0xa7,0xca,0xdb,0x5e,0x2d,0x16,0x64,0x4a,0x38,0x44,0xa2, -0x26,0xe0,0x8c,0x28,0x49,0x66,0xa2,0x05,0x07,0xf0,0x37,0x2e, -0xce,0x2b,0x66,0x18,0x41,0x93,0xc0,0x9b,0x6e,0xba,0x7e,0xbe, -0x35,0x31,0x2d,0xc3,0x9c,0xe6,0xd0,0x38,0x2a,0xac,0x6e,0x8b, -0x46,0x37,0x71,0x86,0x26,0x5e,0xe3,0xa8,0xb4,0xc6,0xc4,0xc4, -0xa6,0x58,0x8d,0x8b,0xba,0x27,0xd7,0xd8,0x72,0xf7,0xda,0x1d, -0x79,0xd5,0x25,0xd5,0xcf,0x39,0x72,0x73,0x1d,0x00,0xd9,0x0d, -0x35,0xc5,0x79,0x29,0xb6,0x90,0x90,0xa8,0x0c,0x73,0x72,0xb0, -0x28,0xaa,0xd1,0x65,0x2e,0xb6,0xc5,0x2a,0x82,0xb4,0xe6,0x72, -0x7d,0x74,0x49,0x0a,0xbd,0x11,0x4b,0xd4,0xd1,0x2a,0x69,0x55, -0x79,0xbc,0x29,0xca,0x6e,0xb0,0xa7,0xe0,0x96,0x74,0x28,0x20, -0x9d,0x5d,0x18,0xdf,0x5b,0x99,0x0e,0x32,0xa0,0x4c,0x74,0x77, -0x3f,0x32,0xd2,0xa1,0x43,0xd6,0x54,0x23,0x60,0x3b,0xd8,0x87, -0x6d,0x0d,0x45,0xae,0xc6,0x0f,0xdb,0x7a,0x9a,0xa0,0x1f,0xab, -0x94,0x64,0xe3,0xf4,0x07,0x4f,0x17,0xfd,0x40,0x43,0x91,0x28, -0x98,0x65,0x1e,0x09,0x78,0x34,0xb2,0xb4,0x08,0xc8,0xd5,0xc8, -0xd2,0x34,0x90,0x96,0xc6,0xd2,0xe2,0x21,0x8c,0xe4,0x65,0x01, -0xc3,0xb2,0xd9,0xad,0x05,0x19,0x0d,0xe8,0x62,0x2a,0x7a,0x84, -0x8a,0xe2,0x46,0x0b,0x86,0xaf,0xaf,0xbb,0xa6,0x60,0x8a,0xd6, -0x16,0x5b,0x9a,0x5a,0x3e,0x51,0xa4,0xaa,0x06,0xb9,0xed,0xd2, -0x6a,0x5d,0x82,0x90,0xf8,0x83,0xda,0x6e,0x54,0x2a,0x12,0xec, -0xea,0xd2,0x86,0x06,0xd9,0x82,0x55,0x66,0x9d,0x5b,0x1d,0x57, -0x57,0x5b,0x69,0xb7,0xfb,0xa9,0x2d,0x4f,0x16,0x08,0x8b,0xd8, -0x63,0x54,0x58,0xb4,0x96,0xb6,0x95,0xb6,0xfa,0x68,0x53,0x0a, -0x54,0x91,0x8f,0x6a,0xd0,0x41,0x4a,0x9b,0xb5,0x68,0xa2,0x8f, -0x36,0xd3,0x05,0xda,0xac,0xbc,0x32,0x6d,0xc6,0xd2,0x84,0xd8, -0x71,0x89,0x95,0x27,0xd1,0x2c,0xd6,0xf0,0x62,0x08,0x79,0x12, -0x2d,0xe6,0x49,0xb4,0x98,0x91,0x68,0x9a,0x40,0xa2,0x69,0xa8, -0x98,0x3d,0x34,0xf1,0x24,0x6a,0x62,0x24,0x9a,0x2e,0x90,0x68, -0x3a,0x32,0xb1,0x87,0xb1,0x3e,0xf3,0x86,0x12,0x6b,0xe5,0xcf, -0x10,0x2b,0x30,0xe5,0x58,0x3a,0x35,0x8f,0x20,0x4d,0xb9,0x3f, -0xd5,0x8e,0xa1,0x53,0x8b,0xf1,0xf1,0x06,0x99,0x62,0x04,0x95, -0x7a,0x04,0xda,0xfc,0xcc,0x47,0xad,0xe3,0x53,0x69,0x68,0xa1, -0x22,0x43,0xe7,0x47,0xa1,0x9f,0x0e,0x13,0xa6,0xe7,0x8f,0x02, -0xb5,0x32,0xf9,0x05,0x02,0x1b,0x9f,0x63,0xba,0x69,0x36,0x1d, -0xff,0x8b,0x62,0x92,0xf4,0x7f,0x61,0x29,0x08,0x12,0xce,0x67, -0x29,0x84,0x0b,0x96,0x42,0x38,0x0a,0x19,0x61,0x15,0x80,0xe9, -0x67,0x94,0x65,0x52,0x05,0x0b,0x11,0x30,0x03,0xe4,0x65,0x39, -0x0d,0x9d,0x0d,0x2b,0xa3,0x53,0x13,0x94,0x0d,0x54,0xef,0x5b, -0x33,0xe7,0x74,0x79,0x5e,0xc0,0x79,0x77,0x86,0x46,0x9b,0x62, -0x3c,0xdb,0x99,0x7d,0x53,0x0b,0xd7,0x7d,0x50,0xd7,0x30,0x10, -0xb3,0xb5,0x54,0xaf,0x44,0x22,0x39,0xaf,0x12,0x7c,0xd4,0x11, -0x4e,0x8b,0x0f,0xbf,0x9a,0x80,0x95,0xd1,0x04,0x99,0xd7,0x0e, -0x86,0x44,0xb0,0xc0,0xe5,0x86,0x44,0xe8,0x14,0x17,0xd4,0x0a, -0x3a,0x25,0x40,0x02,0x4a,0xf1,0xa6,0x58,0x95,0x2a,0x16,0xa0, -0xb8,0xa1,0x81,0xdc,0x14,0xa3,0x08,0x53,0xc4,0xb0,0xcb,0xf5, -0x97,0x2f,0x41,0x3d,0xf0,0x50,0x16,0xab,0x47,0x20,0xa0,0xab, -0xb5,0x1f,0x05,0xd1,0xa1,0x7d,0x56,0x8f,0x20,0xc8,0x8f,0x8c, -0xb6,0xb3,0x62,0x46,0xcb,0xf6,0x31,0xe8,0x64,0x6c,0x2c,0x61, -0x74,0x25,0x85,0x1c,0x82,0x4e,0x31,0x34,0x29,0x02,0x2c,0xd8, -0xe9,0x18,0x59,0xb5,0x96,0x06,0x57,0x4e,0x66,0x73,0x92,0x50, -0x39,0x22,0xba,0xbc,0x17,0xc4,0x3c,0x19,0x1a,0xae,0xa0,0xaf, -0x4f,0x3d,0x0c,0x4f,0x33,0xa9,0x85,0x1f,0x8e,0x22,0xfc,0xfa, -0x54,0x4c,0xcb,0x14,0x8f,0xd5,0xbc,0x63,0xcc,0x8e,0xe1,0x3e, -0x0d,0xa2,0x09,0x41,0x34,0xa1,0x1f,0x5a,0x2f,0x16,0xec,0x0b, -0x02,0x55,0x0d,0x19,0xe0,0x7b,0xb4,0x00,0x3b,0x24,0x72,0x23, -0x27,0x51,0xd2,0xae,0xac,0xdf,0x36,0xfd,0xd8,0xfb,0xd3,0x7f, -0x3d,0x91,0xf6,0xa3,0xa5,0xed,0x91,0x77,0x3c,0x27,0xb0,0xa4, -0xfe,0x10,0x5f,0x2f,0xf4,0x4f,0x86,0x37,0x67,0x3f,0x34,0x3b, -0x88,0x09,0x2c,0x6f,0xbd,0x44,0xb4,0x10,0x91,0x5f,0x35,0x86, -0x2d,0x02,0x8a,0x23,0xca,0x6a,0x0e,0xe0,0x33,0xb0,0x58,0x1c, -0xca,0x3d,0x29,0x96,0x86,0x5a,0x5b,0x02,0xb9,0xfb,0xf2,0x8c, -0x72,0x3e,0x5f,0x2e,0x06,0x64,0x48,0x0a,0x7a,0xa8,0x1f,0x85, -0xd2,0x49,0x1b,0xbf,0x7c,0x31,0xcd,0x06,0xfb,0xb5,0x57,0x68, -0xcd,0x98,0x6e,0x19,0xdf,0x16,0x61,0x09,0x3a,0x9a,0xa0,0xbb, -0x82,0x0f,0x10,0x24,0xe5,0x0d,0x0f,0x8a,0xea,0x04,0xc1,0x71, -0xa2,0xf6,0x70,0x8c,0xe0,0x4c,0xc5,0x20,0x25,0xa3,0x7c,0x5a, -0x71,0x47,0x3e,0xc7,0x84,0xeb,0x30,0x07,0x24,0x0a,0x2c,0xe0, -0x8b,0x01,0x02,0x83,0x54,0x7a,0xab,0xd6,0xd1,0xaa,0x24,0xe1, -0x13,0x8b,0xeb,0xdb,0x1b,0x5c,0x13,0xa2,0x2d,0x06,0x45,0x83, -0x2b,0x3b,0xda,0x6a,0x50,0x12,0x51,0xb3,0xc2,0x18,0x1b,0x91, -0x9e,0x95,0x52,0xc0,0x33,0x48,0x59,0x39,0xcf,0x21,0xc3,0x31, -0x3f,0xbe,0x96,0xf2,0x7c,0x1d,0x31,0x8a,0xaf,0xc7,0xe0,0x44, -0xe0,0x92,0xab,0xa0,0x20,0x94,0x26,0x84,0x0e,0xbb,0x8f,0x11, -0x42,0x8b,0x23,0x50,0xa8,0x5f,0xeb,0x46,0x31,0xf6,0x48,0xbe, -0x86,0xaa,0x8f,0xe6,0x6a,0x66,0x2b,0x12,0x0c,0xf5,0x94,0x83, -0xc2,0x63,0x16,0xbc,0x41,0x50,0x59,0x8a,0x5f,0x62,0x2b,0x1e, -0x46,0x0a,0xc6,0x36,0xd4,0x62,0x54,0x8f,0x31,0xfe,0xa8,0xec, -0x1d,0x29,0x6f,0x71,0x74,0x66,0x6b,0x9e,0xc1,0x90,0xd7,0x9a, -0x99,0xd9,0x92,0x6f,0x30,0xe4,0xb7,0x64,0x16,0x35,0x36,0x16, -0x01,0x0c,0x5b,0x7b,0x15,0xb3,0xf2,0xf2,0x67,0x56,0x24,0x56, -0x34,0x34,0x56,0x37,0x36,0xb0,0x8b,0xe0,0x5b,0x65,0x81,0x6f, -0x25,0xfd,0x39,0xdf,0x6a,0x8c,0x80,0xbc,0x92,0x10,0x18,0x43, -0x4b,0xf2,0x5f,0xe2,0x5b,0x45,0xa1,0x00,0x41,0x8a,0x2a,0x47, -0xf9,0x56,0x32,0xa3,0xfc,0x3f,0xf3,0xad,0x44,0xcd,0x7e,0xae, -0x95,0xe7,0x2c,0x16,0x8d,0x76,0xae,0xa8,0xfd,0x92,0xe5,0xf3, -0xa1,0x7f,0xde,0x6f,0x89,0xf9,0x59,0xbf,0x45,0x7e,0x55,0xbf, -0x25,0x8c,0xf9,0x8d,0xbf,0xdc,0x7f,0xe6,0xfe,0x37,0xfe,0x73, -0x26,0x16,0x8d,0xf6,0x5b,0x78,0x9e,0xe9,0x22,0x54,0x60,0x36, -0xf3,0xa4,0x2d,0xfd,0xaf,0x79,0x86,0x37,0xd8,0xc3,0x18,0x8b, -0x04,0x43,0x9a,0x1f,0x8b,0x50,0x03,0xd6,0x10,0x40,0x99,0x43, -0x1c,0x5e,0x59,0x10,0x6f,0x2b,0xaa,0x22,0xa2,0x69,0xa6,0x9c, -0x86,0x74,0x93,0xe7,0x09,0x7e,0x1f,0x5a,0x02,0xf8,0x4f,0xfb, -0xe9,0xfe,0x2d,0xd4,0x44,0xed,0x21,0x2b,0x4a,0xf5,0xab,0xc7, -0x18,0xfb,0xc7,0x9f,0x1b,0x78,0x25,0x42,0x8d,0x9e,0x78,0x86, -0xc1,0x70,0x08,0x69,0xe1,0xfd,0x60,0xd0,0x44,0x23,0x09,0xab, -0x86,0xca,0x67,0xf4,0x81,0x1f,0x64,0xc3,0x69,0xdc,0x08,0x87, -0x97,0x1a,0x23,0xf1,0x98,0xda,0x2d,0x01,0x17,0x2a,0xa7,0x1b, -0xb3,0xb5,0xd5,0xe9,0x8e,0x6c,0xb3,0x23,0x39,0x21,0x37,0x35, -0x46,0x93,0x5e,0x6a,0x2e,0x68,0xd1,0x39,0x65,0xc5,0x19,0x19, -0x0e,0x87,0x3d,0xa9,0xb5,0xb2,0x27,0xd4,0x9d,0x96,0x96,0x98, -0x6c,0x4d,0xd2,0x5a,0x02,0x03,0xc4,0x4a,0x63,0x66,0x42,0x62, -0x76,0xa2,0xdc,0x6a,0xb6,0x47,0x9b,0x2d,0xa6,0x44,0x43,0x60, -0x40,0x58,0xd5,0x84,0x9a,0x56,0xaf,0x9f,0xe4,0x20,0xf7,0x00, -0x9f,0xcf,0xa0,0xce,0x9c,0x82,0x09,0x45,0x44,0xed,0x85,0x2b, -0x71,0xce,0x18,0x2a,0xf2,0xc7,0x2f,0x65,0x14,0xb1,0x6f,0xa0, -0x49,0xea,0x73,0x16,0x65,0xc3,0x8a,0x02,0xdc,0x23,0xca,0x11, -0x0e,0xe6,0x1c,0x39,0x94,0x6f,0xa6,0x58,0x5a,0xec,0xb1,0xf2, -0xca,0xa5,0x4b,0xe7,0xd9,0x12,0xf1,0xbc,0x72,0x65,0x6c,0xf7, -0x96,0x72,0xcf,0x06,0xaa,0x3f,0x1a,0x00,0xdf,0x7f,0x83,0x7e, -0x57,0xa1,0xe9,0x14,0x65,0xd1,0x6c,0x44,0xec,0x8a,0xd2,0x47, -0x41,0x13,0x14,0x7e,0x09,0x2a,0x9a,0xa0,0xf2,0xe3,0x68,0xa1, -0x29,0xac,0x47,0xc2,0x05,0xea,0x0e,0x67,0xca,0x8e,0x52,0x72, -0x38,0x67,0xe4,0xf5,0x98,0xc2,0x01,0x14,0x4c,0x23,0x46,0x7c, -0x8f,0x28,0x50,0x65,0xb0,0xeb,0x1a,0xba,0x1a,0x7a,0xa3,0x53, -0x8d,0xca,0x86,0x86,0xe6,0x48,0xa3,0x5a,0x3a,0xa7,0x0b,0xd7, -0x78,0x5e,0xa3,0xb2,0x32,0x16,0xcf,0x06,0xcb,0x83,0xe2,0x31, -0x12,0x2e,0x1f,0x43,0x5d,0x83,0x50,0x29,0x4f,0x5b,0x21,0xff, -0x35,0x8d,0x8a,0x40,0x79,0x3b,0x38,0x87,0x5c,0xe5,0x70,0xcb, -0x1d,0xdc,0x9b,0x2f,0x34,0x74,0x64,0x89,0xb3,0xa6,0x4e,0x7c, -0x91,0x88,0x86,0x50,0x5f,0x1f,0x46,0x50,0x22,0xa6,0xf4,0x43, -0xfe,0x0a,0xe5,0x29,0x51,0x2f,0xed,0xb7,0x71,0xed,0xc3,0x98, -0x2b,0xdb,0x87,0x82,0xda,0x18,0x4e,0x88,0xa0,0x09,0x11,0x57, -0x1a,0x4e,0x03,0x6b,0x3f,0x82,0x5a,0x40,0x03,0xb4,0x87,0x41, -0xb2,0x30,0xf3,0x22,0x1e,0x53,0xfb,0x82,0xbf,0x72,0x46,0x1b, -0x36,0x46,0x60,0x63,0x7c,0x9d,0xdb,0x4d,0x0a,0x8a,0x2a,0x4a, -0x0a,0x89,0x33,0xab,0xe6,0x8e,0x99,0x95,0xa9,0xc4,0x5a,0x39, -0x9d,0x88,0xce,0x7c,0xf2,0xc9,0x19,0x0a,0x97,0x2f,0x7d,0xff, -0xc8,0x23,0xdf,0x43,0xfd,0x95,0x80,0xaf,0xcf,0xa0,0xfe,0x61, -0x54,0x0f,0x8e,0xb6,0x85,0xc6,0xf8,0xe7,0x63,0xea,0x2f,0xf4, -0xfe,0x78,0xc3,0xa8,0x34,0x3b,0x22,0x70,0x17,0x9d,0x57,0x25, -0x3c,0x93,0xcb,0x39,0x07,0x20,0x94,0x9a,0x43,0x66,0xa3,0x44, -0x79,0xec,0xa5,0xae,0x5b,0xb9,0x0d,0xed,0x2f,0xf6,0x77,0xad, -0xe7,0xee,0xc6,0x22,0x8c,0x8e,0x1f,0xff,0xd1,0xf3,0xdd,0xc9, -0x93,0xac,0x2f,0x65,0x20,0x5f,0x3f,0x81,0xba,0xc9,0x50,0x1b, -0x15,0x76,0xbc,0x35,0x8b,0xae,0x84,0xb9,0x31,0xc8,0x0e,0xa4, -0x09,0x81,0xbc,0xf5,0x18,0xc4,0xc8,0x2c,0x04,0xc2,0x50,0x26, -0x44,0x43,0x00,0x7b,0x11,0x80,0x3d,0xc0,0x58,0x38,0x47,0xed, -0x48,0x37,0xdf,0xd1,0xf8,0x9e,0xfa,0xcf,0x83,0x22,0x63,0xcd, -0x9a,0xe4,0x49,0xe6,0x57,0x1a,0x6e,0x8c,0x16,0x6b,0xc0,0x88, -0x5c,0xa7,0x8a,0x8f,0x0c,0x2c,0x5f,0x44,0xa2,0x3d,0x8f,0x37, -0x37,0x43,0xbd,0xf4,0x50,0xb9,0xfd,0x8c,0xc6,0x2a,0xa8,0xc1, -0x37,0x92,0xc6,0x04,0x3b,0xed,0x6a,0xf2,0x07,0x0f,0xd0,0x21, -0x70,0x2a,0xe0,0xe9,0x5d,0x00,0x25,0x33,0x27,0xd6,0x3b,0xf5, -0x4a,0xac,0x57,0xea,0xb1,0x09,0x94,0xcd,0x4d,0x9e,0x3f,0x62, -0x47,0x09,0xbe,0xa1,0x3c,0xd7,0xb3,0xba,0x9c,0xe9,0x57,0x15, -0x5c,0xe6,0x13,0xea,0xc7,0x86,0xa0,0xb9,0xfd,0xd0,0xac,0x50, -0xc1,0xcc,0x0c,0x84,0x96,0x88,0x07,0x46,0x59,0xaf,0x6a,0x5f, -0xe9,0x42,0x75,0xc6,0xef,0x20,0x6a,0xac,0x8a,0x78,0x63,0x15, -0xc4,0x8c,0x58,0xa0,0x2c,0x22,0xc8,0x66,0x7b,0xba,0xde,0xac, -0x97,0x18,0xe5,0x0e,0x39,0x36,0x72,0x0e,0x12,0x59,0xee,0xf9, -0xac,0xbc,0xe5,0xe2,0x82,0x8b,0x9e,0xff,0x11,0xf7,0xfe,0xf3, -0xdd,0x77,0x49,0xff,0xe5,0x72,0xb2,0xd0,0xb3,0x97,0x5f,0x5d, -0xd4,0x09,0xf5,0xab,0x23,0x74,0xac,0x3b,0x1e,0x25,0xa3,0xad, -0xfd,0x80,0xa4,0x14,0x64,0x61,0x79,0xeb,0xa5,0x7c,0x93,0x69, -0xa8,0x1a,0x6d,0xfd,0xab,0xc7,0x77,0x95,0xa0,0x0a,0xc9,0x50, -0x05,0x48,0x65,0xda,0x3d,0x8c,0x79,0xe6,0xc9,0x82,0x06,0x8c, -0xa7,0x0e,0xea,0x31,0x48,0xc0,0x9d,0x45,0x62,0xb4,0x03,0x22, -0x7d,0x00,0x64,0x19,0xa4,0x0e,0xd2,0xd4,0xa5,0xd4,0x18,0xa5, -0x9f,0x04,0x41,0x18,0xcf,0x1b,0x04,0x7a,0x30,0xbc,0xc0,0x14, -0x90,0x28,0xb5,0x1c,0x33,0x09,0xf4,0x6e,0x07,0x6f,0x0f,0xd0, -0xce,0xf7,0xc6,0x3a,0x71,0xfc,0xe4,0x99,0x51,0x86,0x24,0x99, -0xdc,0x96,0x12,0xa7,0xb6,0x17,0x9b,0x3d,0xaf,0x35,0xbf,0xe7, -0xca,0xcf,0x77,0xbd,0xf7,0x4a,0x46,0x56,0x56,0xc6,0x2b,0xa4, -0x7f,0x46,0xa3,0xd9,0x65,0x94,0x71,0x01,0x38,0xd2,0x9c,0x67, -0xb1,0x54,0xbb,0xe2,0xab,0xdd,0x4e,0x83,0xd3,0x5d,0x99,0x61, -0x33,0xd8,0x32,0x28,0xcd,0xe6,0x80,0xbd,0x56,0x49,0xde,0x40, -0x1a,0xde,0x5a,0x8b,0x43,0x5a,0x3f,0xda,0x10,0xd8,0x47,0x7d, -0x45,0x91,0x1d,0xc6,0xda,0x8c,0x84,0x36,0x53,0x6b,0x8d,0xfa, -0xcc,0x63,0x46,0x5b,0xd9,0x60,0x1d,0x6e,0xba,0xed,0xde,0x7b, -0x6f,0x6b,0xbb,0x56,0x5f,0xaa,0x6c,0x2d,0x4a,0xad,0x48,0x8f, -0x9d,0x35,0xa5,0xa4,0x43,0x59,0xa2,0xbf,0x31,0xf4,0x85,0xbe, -0xbe,0xdf,0x34,0x54,0x25,0xbb,0x8a,0x0c,0x05,0x93,0x5d,0x73, -0x17,0xae,0x2a,0xcb,0x4e,0xa9,0x6e,0x81,0xce,0xa6,0x7d,0x34, -0x9b,0xae,0x74,0x40,0xb1,0xa8,0x86,0x72,0x83,0x1a,0x69,0x7c, -0xdc,0x10,0x76,0xe5,0x9e,0xf1,0xb7,0x6d,0x11,0xb3,0xdc,0x69, -0x2d,0x43,0xd9,0xa8,0x30,0xad,0xa5,0xdc,0x6b,0x68,0x59,0xb0, -0xdb,0x6b,0x74,0x58,0xb0,0xac,0xf3,0x7c,0xd1,0xfc,0x9a,0xa4, -0xa4,0x9a,0xf9,0x45,0xe7,0xcf,0x5b,0x2a,0x33,0xe3,0xe2,0x32, -0x2b,0x2d,0xf7,0x91,0x7e,0xeb,0xe4,0x5b,0x27,0xc3,0x7f,0x6b, -0x75,0x5c,0xd6,0xa4,0xcc,0x65,0x99,0x93,0xb2,0xe2,0x2e,0x7f, -0xcc,0xeb,0x75,0x5a,0x3f,0x09,0xa1,0x15,0x5b,0x47,0xfb,0x8e, -0xa7,0xf0,0x51,0xb2,0x7b,0x7c,0xdc,0x61,0x29,0x25,0x72,0x2f, -0xee,0x82,0x58,0xe7,0x07,0x42,0x0a,0x3f,0xdd,0x14,0xc8,0xd3, -0x4b,0x20,0xa5,0x17,0x0e,0x9d,0xa1,0x91,0xa5,0xde,0x14,0x1a, -0xd9,0xe2,0x7d,0xc4,0x22,0x4b,0x29,0x03,0xd1,0x66,0x39,0x64, -0xc0,0x8e,0xc2,0x5f,0x27,0xde,0xe3,0xd9,0x83,0x8b,0x3d,0x47, -0x71,0x2b,0xe9,0xaf,0x3e,0x5f,0xfd,0x4d,0x35,0x5f,0x5f,0x7c, -0x99,0xd0,0xaa,0x32,0x2f,0x77,0x5c,0x5d,0x73,0xf5,0xfa,0xf2, -0xb5,0x44,0xc3,0xb5,0x1c,0x1c,0xbf,0x06,0xb2,0x4e,0xbc,0xc3, -0xf3,0x3c,0xb6,0x79,0x7e,0xcf,0x4a,0xf7,0xbc,0x8e,0xbc,0xb4, -0xb6,0x18,0x68,0xcd,0x42,0x47,0x91,0x45,0xa3,0xec,0x20,0xc1, -0xd3,0xbf,0x8a,0x24,0xb0,0xd0,0x04,0x8b,0xa0,0xeb,0xa4,0x5e, -0x9e,0xc1,0x10,0x86,0xb3,0x0a,0x85,0x4b,0x29,0x3f,0xd2,0x34, -0x33,0x84,0xbc,0x9c,0x30,0xdb,0x0e,0x83,0x95,0x4b,0xeb,0x66, -0x1a,0x35,0x20,0x36,0x4c,0xa0,0x74,0x38,0x99,0x4d,0x59,0x51, -0x2b,0x94,0xe8,0xb9,0xb0,0xd9,0x0d,0x85,0x0b,0x6a,0x2d,0x29, -0x75,0x8b,0x4a,0xba,0x56,0x1b,0xca,0xa2,0xa7,0x15,0xa7,0xd5, -0xba,0xb5,0x5a,0x77,0x43,0x46,0x42,0x51,0xba,0x66,0xfb,0x97, -0x75,0x3d,0xe9,0x45,0xb6,0x29,0xb7,0xb7,0x4d,0xbe,0x7d,0x8a, -0xbd,0xb9,0x2c,0x25,0xab,0x50,0x9f,0xdb,0x9c,0xb9,0x34,0xb3, -0x25,0x57,0x2f,0x4f,0xcc,0x36,0x97,0x55,0x7b,0x1e,0x14,0x68, -0xa3,0x87,0xd1,0xc6,0x43,0x54,0x6e,0x8d,0xa4,0x0d,0xa1,0x69, -0xea,0xd1,0xa2,0x5f,0x3d,0xee,0xb0,0xcb,0x28,0x0b,0x9b,0x36, -0x59,0x24,0x0c,0x7d,0x61,0x9e,0x52,0xb0,0x97,0x2e,0xfc,0x23, -0x3c,0xed,0x60,0x2f,0xed,0x08,0x29,0x83,0x2c,0x85,0x72,0x35, -0x45,0x0a,0xd6,0x83,0x73,0x47,0xe7,0x2b,0x69,0xcb,0x23,0x3d, -0x8f,0x35,0x37,0xe3,0xe9,0x00,0xb9,0x9e,0xd7,0x49,0xbf,0xe7, -0x1d,0x9c,0x79,0xb9,0x9c,0xf6,0x5b,0x2e,0x5c,0x9a,0x59,0x5b, -0x6a,0xc6,0xb6,0x65,0x8c,0x04,0xf7,0xd7,0x1f,0x98,0xd1,0xb8, -0xd8,0x47,0xed,0x81,0x03,0xfc,0x34,0x69,0x10,0xd3,0x21,0x50, -0x28,0x28,0x11,0x6a,0xcc,0xe5,0xce,0x98,0x81,0xa3,0x67,0xcc, -0x28,0x27,0x69,0xe5,0xe5,0x97,0xdf,0xa7,0x36,0x9c,0x06,0x6c, -0xb8,0x5d,0x50,0xa6,0x1c,0x15,0x50,0xa7,0xdb,0x67,0x5f,0xb2, -0x22,0xe4,0xb4,0x08,0xb9,0x5f,0x99,0xfe,0x16,0x1a,0x2f,0x93, -0xe4,0x6c,0xfa,0x93,0xb5,0x51,0xc6,0x5c,0x2a,0x9f,0x91,0x0c, -0x85,0xe2,0x5d,0x71,0xce,0x6a,0xeb,0xa4,0x99,0xe1,0xb5,0xc1, -0x59,0x2e,0x57,0xee,0x05,0x50,0x0d,0x3f,0x59,0x2b,0x33,0xd4, -0x93,0x2b,0x23,0x53,0xb3,0x8b,0x4b,0xf0,0xde,0x6a,0x1f,0x7f, -0xcf,0x22,0xb4,0xf8,0x49,0xfd,0xfc,0x12,0xd0,0xab,0xf5,0xa1, -0x30,0x0e,0xa1,0xbe,0xf2,0xb8,0xcb,0x70,0x1f,0x42,0xad,0x24, -0xb4,0xe1,0x6c,0xa4,0x25,0x08,0x1b,0xb1,0x62,0x66,0x73,0x33, -0x37,0xeb,0x0f,0x73,0x3c,0x97,0x70,0xd4,0x5c,0x3c,0x79,0xd1, -0x17,0x80,0xff,0xbb,0xae,0xff,0xd1,0xf3,0x47,0xcf,0x52,0x9f, -0xac,0x01,0x3b,0xb1,0x1f,0x30,0xed,0xa4,0xce,0x64,0x00,0x33, -0xfe,0x7f,0x01,0xef,0xd2,0x02,0x79,0xd6,0xa4,0xcc,0xd9,0xd9, -0x8c,0x93,0xa1,0xb1,0x5b,0x87,0xdb,0xf7,0x1e,0xa1,0xa6,0xca, -0x52,0x9a,0xe7,0xc8,0xb9,0x8e,0x2b,0x35,0x47,0x7d,0x65,0xcf, -0x57,0xa0,0x62,0x96,0x10,0x26,0x28,0x51,0xaa,0xee,0xb9,0x53, -0xfc,0x50,0x5a,0xc0,0x00,0x1d,0x68,0xe5,0x47,0x99,0xb0,0x51, -0x12,0x82,0xa9,0x9b,0x2b,0x73,0x80,0xc2,0xa6,0xe4,0x77,0x93, -0x78,0xc2,0xd3,0x4f,0x4f,0x10,0x37,0x2e,0x39,0x21,0x7e,0x6b, -0x61,0x23,0xa9,0x5d,0xe9,0x19,0xc0,0xf6,0x95,0x97,0x9f,0x07, -0x4c,0x6c,0xc0,0xd7,0x51,0x4a,0x44,0x7e,0x7c,0x15,0x46,0x6d, -0x7b,0x34,0xfe,0x58,0x98,0x7a,0xb4,0xb9,0x77,0x95,0x3e,0xf1, -0x97,0x32,0x62,0x36,0xdc,0xc7,0xd7,0x3d,0x90,0xd6,0x51,0xa8, -0x1f,0x3f,0xaf,0x86,0x03,0x9a,0xb9,0xc6,0xe9,0x43,0xf4,0x82, -0xf7,0x3c,0x74,0xf9,0x08,0xd4,0xab,0xf5,0x21,0x52,0x76,0x99, -0xb7,0x77,0xa8,0x6c,0xdb,0x08,0xb2,0x4d,0x0e,0x5a,0x9f,0x69, -0x52,0xaf,0x35,0x31,0x66,0xdc,0x43,0x7d,0x85,0x71,0x8f,0x30, -0x61,0xdc,0x23,0x5e,0xd0,0xa4,0xa3,0xc7,0x3d,0x7c,0xde,0xb1, -0x20,0xb4,0xf0,0x8c,0xd2,0x6b,0x26,0xa6,0xa4,0x4c,0xbc,0xa6, -0xb4,0x64,0x11,0x0d,0x17,0x95,0xa4,0x32,0x31,0x55,0x9b,0x2a, -0x84,0xa1,0x54,0x48,0xb5,0xad,0x9f,0x6a,0xb3,0x4d,0x5d,0xdf, -0xd6,0x76,0xfb,0x14,0x5b,0x8d,0x0e,0x04,0xd5,0x8a,0xcc,0xe6, -0x5c,0x9d,0x2f,0xc2,0xea,0x4e,0x71,0xea,0x22,0x74,0xd4,0x5c, -0x81,0x36,0x53,0x11,0xaf,0x14,0x0c,0x17,0xda,0x79,0xa1,0x03, -0xbf,0x58,0x43,0x28,0x04,0x23,0x46,0x21,0x68,0x88,0x20,0x3a, -0xb3,0x67,0x87,0x84,0x42,0x7a,0x2c,0x0b,0x5d,0x6e,0xd0,0x0d, -0x91,0x25,0xde,0x9b,0xad,0x10,0xd9,0xc1,0xdf,0x70,0x40,0x47, -0x41,0xbc,0xa4,0x1a,0xa4,0x91,0x4e,0x2a,0xfc,0x04,0x8d,0x42, -0x0d,0xa1,0x00,0x0b,0x8e,0xc1,0x7e,0x66,0x4f,0x54,0xd7,0xec, -0xd9,0x5d,0xaf,0xbe,0x9a,0xe1,0x76,0x67,0xbc,0x4a,0xfa,0x17, -0x74,0x76,0x2e,0xf0,0x7c,0x88,0x57,0x64,0xda,0xe1,0x8f,0xf5, -0xc5,0x54,0xd6,0x17,0x31,0xc8,0x86,0xd8,0x7c,0xa2,0x1d,0xa5, -0x0b,0xe3,0xfd,0xd4,0x8a,0x46,0x23,0x5d,0x97,0xe1,0xf6,0x08, -0xe4,0xc3,0xda,0x13,0x7d,0x6a,0x58,0x7a,0x51,0x33,0x90,0x97, -0x62,0xb1,0x2c,0x25,0x02,0x62,0x26,0xbe,0x97,0x8c,0x74,0x38, -0xd7,0xeb,0x72,0xd3,0x9e,0x0a,0x90,0x28,0x1d,0xe3,0xf4,0xd5, -0xa5,0x39,0x29,0x29,0xb9,0x33,0x4a,0x4d,0xde,0xee,0x5a,0xbf, -0x7c,0xc1,0xf6,0x51,0xdd,0xb5,0xd3,0x66,0xac,0x08,0xc8,0x9c, -0x72,0x4b,0xa3,0xb7,0xcb,0x1e,0x7f,0x41,0xda,0xf2,0xc8,0xb8, -0x5d,0x26,0xf4,0x59,0x35,0xe3,0x03,0x15,0x7a,0x9a,0x9a,0x48, -0xd1,0xc2,0xba,0x8f,0x50,0xa8,0x6e,0xf8,0xc0,0x28,0x8f,0x68, -0xb8,0x8d,0x42,0x27,0x8e,0x3f,0xc0,0x4f,0x7c,0xc6,0x6b,0x18, -0x84,0x18,0xf2,0xbb,0x89,0xb2,0x4c,0x34,0x74,0xd6,0x7b,0x90, -0x74,0xc6,0xbb,0x50,0x84,0x2e,0x1f,0x61,0xb6,0xec,0x63,0x10, -0xd9,0xef,0x4d,0xbd,0x99,0x4f,0xe5,0x50,0x3d,0x8b,0x50,0x1f, -0x9a,0xa7,0x07,0x15,0x53,0x18,0xd0,0x99,0x46,0xa1,0x37,0xe9, -0xd8,0xb2,0x77,0xed,0x80,0x05,0x2b,0x0f,0x34,0xe3,0xa8,0xa9, -0x73,0x2a,0xca,0x76,0x4c,0xbb,0xff,0x49,0x6f,0x9f,0xf6,0x74, -0x4f,0x9c,0x29,0x05,0x15,0x64,0xad,0x64,0xbd,0x7a,0x89,0xf2, -0x7e,0x0a,0xf0,0x98,0x8c,0xd9,0x0f,0x4d,0xfd,0x60,0xa9,0x8e, -0xb4,0x1f,0xa2,0x68,0x3b,0xa2,0xae,0xc0,0x5d,0x12,0xd6,0x6f, -0x51,0x6c,0x34,0x2e,0x8c,0x8d,0xa3,0xc4,0x09,0x9e,0x9e,0x11, -0xbe,0xe1,0xc7,0x51,0xc4,0xa3,0xc6,0x51,0xf0,0x15,0xc6,0x51, -0xc2,0x09,0xd6,0xb7,0x5c,0x97,0x92,0x6f,0xea,0xc8,0xab,0xa9, -0xcf,0x2d,0xcb,0xee,0x9e,0x6d,0xc8,0x6b,0x71,0xd4,0x2f,0x35, -0x17,0xc4,0x35,0xe6,0x95,0x4c,0x2c,0x2a,0xce,0x9e,0x33,0x55, -0x9f,0xdf,0x1e,0x5a,0x94,0x9d,0x99,0xee,0xa8,0xcc,0xcd,0x70, -0x49,0xc3,0xa2,0xda,0x27,0xa5,0x55,0xda,0x63,0x72,0xb2,0xd2, -0x92,0xd2,0xb2,0xb3,0x33,0x1c,0x11,0x61,0xaa,0xae,0x3a,0x3a, -0xdb,0xc6,0xcb,0xb4,0x28,0xe8,0xcb,0x44,0xe6,0x2b,0xe5,0x51, -0xfd,0xca,0xaf,0x3a,0xba,0xa2,0x4c,0x13,0xba,0x54,0x90,0x58, -0x3e,0x3b,0x92,0xca,0x2b,0x90,0x56,0x54,0xa3,0xe2,0xca,0xe6, -0xd3,0x44,0x4a,0x96,0x5c,0xde,0x4a,0x96,0x54,0x57,0xf3,0x65, -0xb4,0x01,0xee,0x78,0x7f,0xa7,0x9c,0xda,0x5e,0x23,0xfd,0x7e, -0xc1,0x95,0xb9,0x8a,0x3d,0x32,0xec,0xe6,0xf3,0x05,0x82,0x11, -0x2d,0x63,0x96,0x3d,0x1b,0xf8,0xa0,0xfa,0x15,0xc4,0x95,0x6c, -0x6f,0x75,0x67,0x67,0x75,0xb3,0x3a,0x77,0x7a,0x79,0xf9,0xb4, -0x9c,0x18,0x10,0x90,0x0d,0xb3,0xe6,0xcc,0x99,0x85,0xfb,0x3c, -0xb3,0x6a,0x97,0x54,0x27,0x24,0x54,0x2f,0xa9,0xc5,0x0f,0x43, -0x5d,0xe8,0xd9,0x51,0x13,0x99,0x1d,0x7a,0xe5,0x31,0x0f,0xf5, -0xe8,0x31,0x0f,0xf5,0xd5,0xc6,0x3c,0xd4,0x98,0xfe,0xe7,0x2e, -0x9d,0xeb,0x58,0x3e,0x51,0x5c,0xbf,0x62,0xf2,0xdf,0xa1,0xec, -0x1d,0x9e,0x1f,0x71,0x00,0xee,0x66,0xf2,0x99,0x95,0xc9,0xcd, -0x61,0xed,0xef,0xe5,0x07,0x5e,0x55,0xff,0x51,0x99,0x3f,0xaf, -0xfc,0x46,0xd6,0x8a,0x9f,0xf9,0x09,0x1e,0xe0,0xe7,0xa4,0xe4, -0xfe,0xb5,0x14,0xea,0x6a,0x0c,0xc1,0xf0,0xff,0xe8,0x9e,0xf6, -0x9a,0x1c,0x52,0xd4,0xd6,0xdd,0x52,0xc4,0xe5,0xd6,0xb7,0x3e, -0xd7,0x39,0xa5,0x90,0x14,0x77,0x42,0xed,0xfb,0x3c,0x3f,0x61, -0x31,0x6e,0x80,0xf0,0x12,0x16,0xe1,0x86,0xcb,0xe5,0x78,0x2a, -0x46,0x43,0xc8,0xb3,0x13,0xea,0x19,0x2d,0xe0,0x8f,0x8d,0x81, -0x04,0x8d,0xd2,0x81,0x63,0xaa,0x2e,0x30,0xf8,0xf8,0x62,0x6e, -0x94,0x4c,0xa0,0x66,0x80,0x98,0xf1,0x03,0xcd,0x18,0xbc,0x7f, -0xc6,0x19,0x7a,0xe0,0x56,0xce,0x28,0xe7,0x98,0xa6,0xe6,0xc8, -0xc4,0xd9,0x2f,0x91,0x97,0xba,0xcf,0x9e,0x9e,0xbd,0x9f,0x3c, -0xd7,0x3d,0x08,0xfe,0xff,0x9f,0xf1,0x4c,0x3c,0xd9,0x73,0x1e, -0x47,0x31,0xe7,0x9a,0x8e,0xfc,0x22,0x52,0xca,0xfa,0xb7,0x63, -0x6c,0xff,0x8e,0x91,0x48,0x57,0x71,0x32,0x87,0x87,0x64,0xa8, -0xa2,0xf6,0x0e,0x44,0xf0,0xca,0xd9,0x21,0x13,0xea,0x23,0xbb, -0x7c,0xa1,0xbb,0x9f,0xeb,0xef,0xfe,0x17,0x56,0xe0,0x5d,0x9e, -0x3e,0xc0,0x59,0xa7,0xe7,0x0b,0x7e,0xdc,0x15,0xea,0xa1,0x63, -0xf5,0xa8,0xa0,0x0d,0x1b,0x59,0x8f,0x31,0x7c,0x35,0x8c,0x05, -0x4a,0xfa,0x94,0xa7,0xc8,0x80,0x3f,0x87,0x49,0xa0,0xd0,0x64, -0xec,0x1d,0xf8,0x20,0x3a,0x8f,0x08,0xdf,0xe3,0x59,0x8b,0xff, -0xe4,0x59,0x88,0x9f,0xa8,0x25,0x09,0xd5,0xb5,0x97,0x4f,0x41, -0x65,0x73,0x81,0xcf,0x34,0x20,0xa3,0x42,0x46,0xcf,0x7f,0x84, -0x0e,0xfc,0x02,0xaf,0x9a,0xba,0xad,0xb4,0xac,0x00,0x29,0x2f, -0x3d,0xfd,0x3c,0x6a,0x10,0x9b,0xe3,0xe8,0x15,0xeb,0x4d,0xcb, -0x97,0xdf,0x44,0x21,0x39,0x27,0x41,0x26,0x4b,0xc8,0x49,0x16, -0xc2,0xd0,0xa3,0xbf,0xfe,0xf5,0x51,0x0a,0x55,0x86,0xfc,0x66, -0xc7,0x32,0x47,0x33,0x9d,0x1d,0x11,0x22,0x6c,0xfc,0xc3,0xbf, -0x9e,0x36,0xb4,0x8a,0xd6,0xd4,0xab,0x25,0x43,0x07,0xf8,0x35, -0x8d,0x86,0xff,0xa6,0xc6,0xfd,0x60,0xff,0x04,0xb0,0x2e,0xbb, -0xf1,0x10,0x4a,0x06,0xd5,0xc1,0xa1,0x06,0x48,0x62,0xaa,0xbd, -0x8f,0x46,0x3a,0x99,0xb2,0xa7,0x11,0x28,0xe1,0xd4,0xcf,0x35, -0xd0,0x3d,0x62,0xba,0xf4,0x8a,0xcd,0x4d,0x8e,0x8b,0x8d,0x8d, -0x03,0xb8,0x5a,0xb3,0x3f,0x8f,0x53,0x85,0xa8,0xb4,0x5a,0xb8, -0xc4,0x8d,0x68,0x7f,0x34,0xd0,0xc9,0x72,0xda,0x7e,0x13,0x4a, -0x1c,0xd1,0xfe,0xf8,0xff,0xb4,0xfd,0xf1,0xac,0xfd,0x4a,0xdf, -0x18,0x7d,0x94,0x2f,0xa6,0x86,0xaf,0x43,0x59,0x4c,0x23,0xc4, -0xc6,0x6d,0x78,0xa2,0x19,0x34,0x8c,0x59,0xa1,0xc2,0xbc,0x6f, -0xaa,0x1c,0xd9,0x5e,0x42,0x3c,0xe7,0x64,0x85,0xb3,0x39,0x1c, -0x2d,0x2b,0x70,0xd0,0x84,0x51,0xad,0x95,0xc5,0x47,0x78,0xde, -0x4c,0xcd,0xf8,0x5c,0xaf,0xc5,0x59,0xa9,0x0e,0x9a,0x04,0xe4, -0xec,0x00,0x1e,0x30,0x32,0xdf,0xad,0x7d,0xac,0xef,0x76,0x15, -0xd1,0xea,0xb5,0x7e,0xa8,0xf8,0x12,0x0d,0xd0,0xe9,0x5d,0x11, -0x33,0x08,0x28,0x32,0x78,0x77,0x7f,0x94,0x27,0x27,0x31,0xbb, -0xe9,0x84,0x48,0xdb,0x6b,0x92,0xbe,0xf4,0xc3,0xb7,0x3e,0x5f, -0x4d,0x32,0x76,0x3a,0x9f,0xa5,0x9e,0x06,0x46,0x65,0x50,0x07, -0x25,0xe0,0x5a,0x8f,0x26,0x53,0x3e,0xe4,0x39,0xe2,0x8a,0xba, -0xc7,0x9f,0x0f,0x75,0x02,0x1f,0xd2,0xcf,0x94,0xc2,0x5c,0xac, -0xd2,0x37,0x15,0x13,0x0f,0x21,0x66,0xb8,0x04,0xbe,0x74,0xe7, -0x63,0xef,0x74,0x99,0xc4,0x4c,0xa7,0x65,0x79,0xbb,0x39,0x02, -0x58,0x55,0xe9,0x71,0x9d,0x4d,0x2f,0x2e,0x2c,0xd2,0xd9,0x8d, -0x2a,0x49,0x4d,0xb0,0xd1,0x59,0xe3,0x70,0x34,0xb8,0xe2,0x54, -0x49,0xd9,0xfa,0x97,0xf1,0xe2,0xd6,0xf7,0x53,0x67,0x3b,0x42, -0x73,0x2a,0x23,0x75,0x96,0x98,0xb8,0xf8,0x09,0x69,0x1a,0xad, -0xab,0x3a,0x35,0xb9,0xbc,0x20,0x57,0xfb,0x0c,0x6f,0x73,0xe0, -0x1f,0xa0,0xee,0xd9,0xe8,0x08,0x75,0x94,0x72,0xd0,0x04,0xbf, -0xba,0x0b,0x4a,0x60,0xb8,0xee,0x26,0x9a,0x60,0xe2,0x45,0x2b, -0x9d,0xe7,0x93,0xb0,0x7a,0xba,0x21,0xe4,0x17,0x9c,0xb8,0xa9, -0xbf,0x7e,0x1c,0x12,0x30,0x35,0x80,0x11,0x44,0xa4,0x00,0x64, -0x59,0x51,0x04,0x58,0xc3,0x6e,0xb0,0x86,0xdd,0xc0,0x24,0x6e, -0xf6,0xc6,0x00,0xc0,0x20,0xc0,0x05,0xfa,0x39,0x3f,0x54,0x28, -0x7c,0xe6,0x7d,0x53,0xb0,0xa8,0xdd,0x60,0x51,0xd3,0x1b,0xda, -0x71,0xb4,0x34,0xba,0x8b,0xdd,0xcd,0xaf,0x7d,0x81,0x1a,0xd8, -0x79,0x1f,0xd8,0x37,0x6b,0xea,0x8f,0x1b,0xdf,0xe0,0x22,0x28, -0x6f,0x30,0x7d,0xb8,0xe1,0x11,0x46,0x2c,0xae,0xa8,0x28,0xcb, -0x72,0x95,0x46,0xe5,0x87,0x99,0x32,0x8a,0x53,0xac,0x75,0xd9, -0x7a,0x65,0x42,0xba,0x46,0xe3,0x4c,0x8e,0x31,0xe4,0xb7,0x39, -0x53,0xcb,0x5d,0xc9,0xd2,0x82,0xb0,0xf8,0x44,0xbb,0xae,0xba, -0xb6,0xb6,0xba,0x11,0x6f,0x2b,0x72,0x48,0xdc,0x6e,0x5b,0x92, -0x5d,0x99,0xac,0x53,0xa8,0x52,0x8b,0x53,0x0c,0xae,0x24,0x8d, -0x44,0x14,0xa0,0xb6,0xe4,0x99,0x53,0x6b,0x9c,0x5a,0x85,0x21, -0x45,0x65,0x57,0x1a,0xa2,0xc3,0x4a,0xf2,0x03,0xf3,0x4b,0xaa, -0x80,0x10,0x13,0x81,0x26,0xac,0xcc,0xe7,0x08,0x47,0x73,0x86, -0x67,0xe7,0x78,0xf9,0x3e,0x6c,0xbf,0x8e,0xf1,0xb2,0x47,0xa8, -0x59,0xf6,0x2a,0x25,0xeb,0x70,0x41,0x49,0x10,0x1b,0xef,0x38, -0xf0,0x53,0x0f,0x21,0x82,0xcf,0x49,0x04,0x3a,0x05,0xc9,0xed, -0xc4,0x94,0x48,0x8d,0x4a,0x93,0x1e,0x1c,0xba,0x6b,0x3d,0xfb, -0x71,0xc2,0x4d,0xb3,0x67,0x7b,0xf6,0x61,0x22,0xbe,0xa3,0x1a, -0x7f,0xee,0x51,0x96,0xdf,0xf1,0x1e,0xde,0x43,0x75,0xc7,0x44, -0xb6,0xf6,0xb6,0x1f,0x25,0x51,0x3f,0x53,0x2a,0xac,0x78,0xf4, -0xd6,0xca,0x4c,0x2b,0x61,0xbe,0x82,0x35,0x60,0x96,0x7a,0x79, -0x47,0xca,0x66,0xb1,0x69,0x9f,0x18,0xa8,0x75,0xc1,0x6a,0x68, -0xb0,0xf1,0x2c,0x20,0x65,0x0b,0x1c,0xbd,0xa3,0x30,0xdc,0x88, -0xd9,0xdf,0x11,0xbd,0xc1,0xfa,0x4c,0xae,0xc7,0xdf,0x78,0xde, -0x55,0x48,0x62,0x0a,0xdc,0xa9,0xb5,0x59,0xf1,0xba,0xbc,0xc9, -0x6e,0x6b,0x49,0xa6,0x19,0xfa,0x20,0xce,0x98,0xa6,0xab,0xac, -0xae,0xae,0xb4,0xbb,0xa3,0x2a,0x62,0x70,0x2f,0x59,0xe2,0xf9, -0xce,0x98,0xa2,0x75,0x37,0x38,0x1c,0x2d,0x79,0x06,0x1f,0xda, -0x6b,0xcb,0x82,0xcb,0x6a,0x8d,0xd1,0xc1,0x78,0x0d,0xf5,0x1d, -0x4a,0xa0,0x6d,0x4a,0x42,0x4d,0x68,0x0b,0xba,0xa6,0x1f,0x69, -0x05,0x4b,0xfa,0x10,0xd2,0x8e,0x58,0xe7,0x7e,0x55,0x7f,0x55, -0xcb,0xda,0x65,0x82,0xe7,0x5a,0x9e,0xd6,0xf8,0xd1,0x40,0x93, -0x57,0xc0,0xd3,0x48,0x3f,0x0b,0x11,0x6b,0xa9,0x62,0x84,0x57, -0xeb,0x76,0x84,0x73,0x12,0xd5,0x70,0x9b,0x47,0xcd,0xea,0xa7, -0xba,0x26,0xe7,0xe9,0xd2,0xaa,0xda,0x52,0x16,0x66,0xb5,0x15, -0xa7,0x85,0x8b,0x63,0xea,0x0b,0x53,0x6b,0x5d,0xf1,0xfa,0xbc, -0x56,0x67,0xd9,0xc4,0x89,0x65,0x00,0xa1,0xa6,0xb2,0x59,0xf9, -0x75,0x77,0x2c,0x9d,0xac,0x4e,0xae,0x6b,0x99,0x9e,0x47,0x2c, -0xd9,0xda,0xac,0x86,0x74,0xda,0xe6,0xaa,0xda,0x8a,0xc0,0x8a, -0x5a,0x76,0x41,0x82,0xec,0x89,0x20,0xd4,0xa9,0x9d,0xd4,0xcf, -0x6f,0xe6,0xfd,0x65,0x63,0x57,0xbc,0xe6,0x27,0xc2,0x94,0x2f, -0x6f,0x84,0xdc,0x44,0xe9,0x31,0x9a,0xa7,0x27,0x6a,0x0d,0x38, -0xb0,0x5e,0xc9,0xec,0xed,0xfd,0x38,0xc4,0xf3,0x61,0x0d,0x3e, -0xe9,0xf9,0x91,0x2c,0x5b,0x7b,0xb2,0xfa,0xf2,0x56,0x7e,0x8e, -0x81,0x8e,0x09,0x68,0x41,0x76,0x50,0x3c,0x67,0xa3,0xdf,0x51, -0x1d,0xc3,0xcb,0x0f,0xba,0x72,0x96,0xd7,0x31,0xd6,0x2b,0x7b, -0xa3,0xfe,0x75,0xa1,0x1e,0xa7,0xc3,0x37,0x5e,0xec,0xc5,0xbd, -0x63,0x18,0xf7,0x62,0xb6,0xc6,0xad,0x10,0x80,0xf0,0x92,0xc5, -0xc4,0x70,0x2f,0x48,0x16,0x13,0xc8,0x0b,0x13,0x48,0x16,0x13, -0x48,0x16,0x13,0x74,0xb0,0x89,0xf5,0xd4,0x05,0x00,0x41,0xb2, -0x98,0x78,0x05,0x2d,0xf5,0x46,0xf8,0x8e,0x3c,0x0c,0x84,0xc1, -0x7b,0x70,0x56,0x26,0xbf,0xa8,0x6e,0xe3,0x63,0xde,0x9e,0x14, -0x96,0xc7,0x09,0x5a,0x4c,0x22,0xac,0xe3,0x1c,0xb5,0x26,0x6e, -0x64,0xdf,0x5a,0x73,0x3b,0xf2,0xe2,0xeb,0x0a,0xdc,0x45,0x2b, -0xe6,0xcd,0x5b,0x51,0xe4,0x2e,0xa8,0x8b,0xcf,0xeb,0xc8,0xad, -0x6a,0x68,0xa8,0xa2,0x50,0x5c,0x5a,0x5a,0x0c,0x10,0x1a,0xef, -0xaa,0xb6,0x54,0x36,0xcb,0x02,0xe5,0x2d,0xb9,0x0d,0xd3,0xa6, -0x35,0xe4,0xb6,0xc8,0x03,0x65,0xcd,0x95,0x74,0xfe,0xa2,0xaa, -0x28,0x57,0x99,0x5b,0xc4,0x2e,0xb8,0x25,0xcb,0x15,0xe1,0xca, -0x62,0x17,0xe6,0x13,0x97,0x08,0x7a,0x86,0xe2,0x7b,0xe9,0x68, -0xba,0x8e,0x19,0xbd,0xb7,0x62,0xbc,0xd1,0x43,0x7e,0xdb,0x84, -0x89,0xb5,0x5a,0x0b,0x49,0xbc,0xd4,0xd6,0xda,0xd8,0xe6,0x08, -0x2d,0x4f,0xdb,0xf1,0x2c,0x42,0x35,0xaa,0x96,0xb9,0xdc,0xb4, -0xd7,0x18,0x17,0x53,0x89,0x6a,0xcc,0xe7,0xdc,0x66,0xff,0x81, -0x66,0x2d,0x91,0x8c,0x5c,0xbc,0xaa,0x1c,0x8f,0xae,0x5b,0x9c, -0x94,0xe2,0xbf,0x10,0x88,0x1b,0xf7,0x8f,0xa2,0xec,0xfa,0x0c, -0x4a,0xd9,0x40,0xf2,0xcf,0xf8,0x11,0x37,0x87,0x2a,0x81,0xbe, -0x1e,0x86,0xf6,0xa6,0xa2,0x3c,0x54,0x8d,0x4e,0xd0,0x39,0xac, -0x1a,0x54,0xeb,0x9b,0xc3,0x4a,0x13,0xe6,0xb0,0xf2,0x7d,0x2d, -0x17,0x66,0xb6,0xaf,0xe2,0x0a,0xa4,0xd2,0x84,0x54,0x3e,0x41, -0xe5,0x5b,0x64,0x8a,0x68,0xc8,0xf2,0xa5,0x4c,0x91,0xcf,0xd2, -0x9c,0x90,0x51,0x3e,0x23,0x8a,0x62,0xe1,0x29,0x5d,0x97,0xe4, -0x64,0xcb,0x2e,0x69,0x4d,0xbc,0x31,0x83,0xef,0xbd,0x24,0x88, -0xeb,0x59,0x2e,0x49,0x36,0x8a,0x64,0x9a,0x8b,0x05,0xd2,0x78, -0x13,0xa9,0x48,0x88,0xd9,0xd3,0x4d,0x74,0x46,0x5d,0x90,0x13, -0x5e,0x2f,0x5c,0x50,0x58,0x20,0x32,0xdc,0x20,0xbe,0xc3,0xb1, -0x44,0x65,0xe4,0x78,0x84,0xaa,0xf2,0x39,0x8a,0x5e,0x2e,0xc3, -0x05,0x88,0xe7,0x18,0x89,0x7d,0x11,0x62,0x48,0x2f,0x49,0xc9, -0x6c,0x70,0x69,0xa2,0x93,0x1d,0xea,0x04,0x4b,0xac,0xad,0x24, -0xd9,0x94,0x6f,0x8d,0x89,0xb1,0xe6,0xe8,0x1f,0x89,0x90,0x92, -0x0d,0x15,0x92,0x68,0xd9,0x86,0xb9,0x3f,0x59,0xdc,0x26,0x6d, -0x74,0xaa,0x31,0x2a,0x3b,0xc7,0x51,0x1d,0x7b,0x44,0x61,0xd2, -0xc8,0x6a,0x1a,0xc3,0xf4,0x1a,0x85,0xd6,0x59,0x9e,0x64,0xce, -0xb5,0x25,0x44,0x24,0xd6,0xdb,0x8c,0xf9,0xa9,0xb1,0x51,0xe6, -0x2c,0xbd,0xd1,0x9d,0x66,0x8e,0x7c,0x26,0xb1,0x35,0xb5,0xd4, -0x3a,0x51,0x7f,0x37,0xb9,0xd5,0x95,0x14,0xaa,0xcd,0x33,0x84, -0xc5,0x19,0x4c,0xca,0xd0,0x64,0xeb,0xe5,0x97,0xcc,0xfa,0x93, -0x21,0xd1,0x7a,0x4b,0x5c,0x84,0xbb,0x90,0xd1,0x62,0xd1,0xd0, -0xed,0x1c,0x3d,0x03,0xac,0x0c,0x35,0xa1,0x0f,0xe8,0x90,0x7d, -0x33,0x6a,0xe1,0x87,0xec,0xa1,0x47,0xca,0x69,0x8f,0x60,0xdb, -0x18,0x07,0x0d,0xa8,0xeb,0x31,0x36,0x50,0xcf,0x8f,0xa7,0x95, -0xa2,0x00,0xe0,0x78,0xcd,0x29,0x36,0xfc,0xa2,0x41,0x67,0x00, -0xd8,0x40,0xcb,0x7e,0x7a,0x4a,0x53,0x27,0x5b,0xd7,0xaa,0x61, -0x2f,0x2b,0x07,0xf8,0x25,0xc1,0xe5,0xec,0x03,0xba,0xa4,0x3c, -0x9b,0xc5,0x12,0x4f,0xb1,0x1c,0x13,0xbd,0x84,0x9b,0xc8,0x1b, -0x10,0x36,0x88,0x14,0x00,0x10,0x3a,0x84,0x73,0x1c,0x22,0x03, -0xec,0xa6,0x1f,0x98,0xa2,0x9c,0xd9,0xc0,0x87,0xd1,0x44,0xf8, -0x9e,0x9a,0xf2,0x13,0x85,0x19,0xb7,0x44,0xa8,0xb5,0x65,0x80, -0x37,0xbe,0xec,0xf0,0x8c,0x0d,0x7d,0x8d,0x1c,0xa1,0x34,0x7a, -0xf7,0x05,0x8d,0x5c,0xd7,0xc3,0x46,0x09,0x46,0x1a,0xf5,0x13, -0xf0,0x48,0x09,0x41,0x9e,0x3e,0xd7,0x7a,0xd7,0x2c,0x77,0x56, -0xcf,0xd6,0xf6,0xf2,0xf5,0x73,0x0a,0xe4,0x29,0xc5,0x36,0xbb, -0x5d,0x2c,0x52,0xe4,0xa4,0x19,0x0b,0xec,0x1a,0x8d,0xbd,0xc0, -0x98,0xe6,0x0a,0x17,0x95,0xa9,0x35,0x36,0xbb,0xad,0x71,0x49, -0x61,0x65,0x6f,0xab,0x2d,0xad,0x69,0x45,0xc5,0xe7,0xdf,0xd0, -0x99,0x50,0x57,0x46,0xc6,0xf5,0x39,0x0b,0xee,0xef,0xec,0xdc, -0xbe,0x38,0xdf,0x32,0xf5,0x9e,0x39,0x99,0x53,0xcb,0x92,0xed, -0x89,0x49,0x69,0x6a,0x57,0x53,0x56,0x56,0x93,0x4b,0x9d,0xaa, -0x2b,0xf5,0x0c,0x98,0xd5,0xdd,0xcd,0x69,0xc5,0x0b,0x6b,0x53, -0x32,0xda,0xaf,0x2d,0x9b,0x50,0x01,0x19,0xbc,0x96,0x91,0xb6, -0x2a,0x31,0x33,0x3f,0xb3,0x21,0x33,0x9f,0xf9,0x8a,0x65,0xe0, -0x6d,0x57,0xe3,0x29,0xd4,0xce,0xa4,0xf4,0x2e,0x62,0x14,0xcd, -0xf6,0xd2,0x83,0x24,0xb7,0xd8,0xd3,0xe5,0x20,0xe7,0xe9,0x3b, -0xe2,0xd6,0x56,0x84,0x86,0x86,0xbc,0xef,0x93,0x00,0x54,0xc5, -0xfb,0x9a,0x38,0x98,0x24,0x61,0xba,0x02,0x5a,0xe5,0xf7,0xfd, -0x11,0xde,0x1b,0x46,0x22,0x21,0x87,0x04,0x22,0xc2,0xc1,0xb5, -0xb5,0xc2,0xfb,0xe7,0xc6,0x79,0x9f,0x9e,0xc8,0x84,0xfd,0xde, -0x7f,0x5d,0x78,0x5f,0x3b,0x34,0x85,0xa8,0x86,0x1e,0xe7,0xdf, -0xc7,0xfe,0xef,0x8b,0x85,0xf7,0x55,0xf0,0xbe,0x16,0xff,0xf0, -0x54,0x39,0x9b,0xb3,0xa9,0x19,0xba,0x88,0x7e,0x8b,0x56,0x42, -0x6e,0x86,0xb1,0xe3,0xe4,0x23,0x56,0x36,0x9d,0x62,0x4b,0x88, -0xfc,0xbc,0xac,0x0d,0xba,0xb8,0x38,0x1d,0x40,0xa8,0x2e,0x36, -0x2c,0x56,0xc7,0x2e,0x88,0xb5,0x19,0xf2,0x24,0x1f,0x41,0x9e, -0x89,0xa8,0x0e,0x12,0xcc,0xa8,0x0e,0x07,0x41,0x28,0x41,0x75, -0x44,0xce,0x9e,0xb7,0x40,0x99,0xef,0x11,0x29,0x7d,0x1e,0xcc, -0xd2,0x51,0x30,0x7e,0x08,0xea,0x62,0x1e,0xba,0x81,0xd5,0x45, -0x86,0x12,0x87,0x57,0xf9,0xa2,0xf1,0x66,0xba,0x4e,0x81,0x6f, -0x0f,0xf5,0x71,0x0b,0x0b,0x77,0x8d,0xc0,0xee,0x69,0xd4,0xac, -0x77,0x41,0x9d,0xec,0x96,0x12,0xad,0x29,0x50,0x21,0x8f,0x5b, -0xa9,0x8f,0x0d,0x4f,0x9e,0x69,0xd2,0x65,0x1b,0xc5,0x1a,0x45, -0x78,0xac,0x9e,0x95,0x9d,0x0e,0x65,0xf0,0x65,0x4f,0x1a,0x2e, -0xfb,0x4a,0xe9,0x74,0x6d,0x18,0x7e,0x07,0x3d,0x42,0xce,0x02, -0x3e,0xb5,0x7e,0xf8,0x1f,0xe9,0x82,0xc4,0xd1,0x89,0x1a,0xb9, -0xcc,0x21,0x6b,0xa9,0xc4,0xef,0xe0,0x68,0xcf,0x39,0xda,0x46, -0x88,0xd5,0xc1,0x77,0x89,0xc0,0xd0,0x34,0xbf,0x66,0x74,0x80, -0xf5,0x7f,0x05,0x3e,0x8f,0x3e,0x85,0xf4,0x71,0xdb,0x38,0x62, -0xd1,0x32,0xb4,0x31,0x64,0x78,0x8d,0x32,0x58,0x42,0x58,0xa2, -0xc5,0xb4,0xb9,0xeb,0xfc,0xda,0x88,0xcf,0x8f,0x69,0x24,0x46, -0x56,0x7c,0x11,0x9d,0x24,0x5f,0x41,0x19,0x29,0x63,0xcb,0xf0, -0x5f,0xf6,0x1b,0x28,0xec,0x4a,0x64,0xe5,0x8c,0xc1,0xe5,0x5d, -0x7e,0xe5,0x90,0xaf,0x46,0x97,0x03,0x6d,0x84,0xb6,0xe0,0xfd, -0xac,0x8d,0xad,0xac,0x8d,0xad,0xe8,0x24,0xc3,0x31,0x94,0x8f, -0xef,0x81,0xf2,0x13,0xd1,0x64,0x96,0x3e,0x19,0xbd,0xc5,0xda, -0x6e,0x1c,0xda,0x84,0x5e,0x41,0xeb,0xa1,0x5e,0x71,0x23,0xeb, -0x65,0x1b,0x59,0x95,0xb1,0xdd,0xea,0xdf,0xe4,0xf5,0x63,0x5a, -0x4c,0xcb,0x84,0xbc,0xf1,0x46,0xc8,0x3b,0x11,0x75,0xb0,0x32, -0x3b,0x84,0x32,0x13,0x50,0x03,0xba,0x84,0xcf,0x51,0xb5,0x4d, -0x27,0xc5,0x24,0x28,0x90,0x2f,0x93,0xb3,0x41,0x39,0x66,0xa7, -0x5b,0x25,0x51,0x9d,0x3d,0x7e,0x3c,0xfa,0x8e,0x3b,0x1a,0x76, -0xd5,0xee,0x72,0xdd,0x77,0x1f,0xfd,0x26,0x13,0x35,0xe0,0x50, -0xef,0x37,0x78,0xe4,0x37,0x05,0xd8,0xec,0x56,0x29,0x25,0x99, -0x77,0xdc,0x11,0x7d,0xfc,0xf8,0xfa,0xfb,0xee,0x73,0xc1,0x67, -0xb4,0x7c,0x28,0x07,0xff,0x0e,0xbe,0x49,0x44,0x53,0x59,0xf9, -0x53,0xd1,0xef,0x59,0xbd,0x68,0x5e,0x7f,0x61,0xe9,0x9d,0x2c, -0xbd,0x93,0xa6,0x83,0xdc,0x9f,0x34,0x54,0x8d,0xde,0x06,0x7a, -0x13,0x23,0x39,0xca,0xa0,0x6e,0x33,0x3f,0x73,0xc9,0xaf,0x7f, -0xe2,0xd7,0x58,0xda,0xc6,0x59,0x10,0x17,0x00,0x68,0x22,0x94, -0x13,0x9d,0x72,0x87,0x5c,0xc9,0x8d,0xe0,0xc7,0xe9,0xd1,0x49, -0xd1,0x16,0x81,0x27,0x5f,0x7c,0x1b,0xbb,0x3c,0x27,0xdf,0x26, -0x65,0x23,0x78,0x93,0x95,0x7b,0x11,0xca,0xed,0x67,0xe5,0x16, -0x8c,0x2e,0x17,0x0d,0xfc,0xdc,0xe8,0x1b,0x3f,0x67,0x77,0x8a, -0x5f,0x3e,0xef,0xe6,0x9c,0x0e,0x25,0x27,0x19,0x51,0x89,0x55, -0xd1,0x6d,0xd1,0x0a,0xa1,0x12,0x87,0xb1,0xeb,0xed,0xb7,0x3d, -0x27,0x7f,0x3b,0xba,0x0e,0xa6,0xa1,0x7c,0xfc,0x06,0xb4,0x3d, -0x16,0x54,0x7d,0xa1,0xff,0x3e,0x31,0xf5,0x88,0x76,0x1b,0x68, -0x91,0x06,0xbe,0xdd,0x6a,0x3a,0x35,0x78,0x8a,0x27,0x93,0x90, -0x01,0xde,0xbc,0xe5,0xa7,0x6d,0x55,0x74,0x78,0x04,0x2c,0x00, -0xa8,0x4a,0x38,0x1e,0x5e,0x46,0xc2,0x8d,0xc4,0xcd,0x57,0x9d, -0x0b,0xf5,0x99,0xc5,0xfa,0x89,0x8d,0x9d,0x85,0xae,0x9c,0xb2, -0xd0,0xea,0x20,0xa3,0xb3,0x52,0x25,0x54,0xf3,0xd5,0x9e,0xc9, -0xf6,0x8a,0x0c,0x6d,0xc0,0xc2,0x9d,0xa2,0xca,0x82,0x70,0x47, -0x5e,0xb1,0x43,0xa3,0x9b,0x90,0x1a,0x4b,0x26,0x8d,0xae,0xb7, -0x0a,0x7c,0xfc,0x43,0x60,0x47,0xd1,0x7a,0x4f,0xa2,0xab,0xe2, -0xbc,0xf5,0x96,0x49,0xbd,0x75,0xf7,0xdb,0x69,0x30,0x8c,0x3b, -0x35,0x4d,0x50,0xf3,0xb8,0x33,0x40,0x03,0x62,0x01,0x62,0x4e, -0xf1,0xc3,0x94,0x32,0x29,0x1d,0x45,0xa4,0x8b,0x17,0xdd,0x4e, -0xef,0xc8,0x84,0xe0,0x7c,0x0b,0x0b,0x7b,0x46,0xe2,0xf7,0x39, -0xff,0x16,0xd8,0xf8,0x56,0x25,0x0a,0x0d,0x19,0x18,0xd9,0x00, -0x6f,0xb3,0x4e,0x8d,0x6c,0x07,0x46,0x4d,0x43,0xd7,0xe2,0x66, -0xf2,0x3d,0x8a,0xa2,0x3a,0x2c,0x54,0xd8,0xc5,0x80,0xa8,0x95, -0x47,0x17,0xf5,0x82,0x28,0x10,0x3c,0x2f,0xa6,0x84,0x55,0xc6, -0x34,0xae,0x49,0x93,0x5e,0x9c,0x58,0x9b,0x52,0x62,0x8b,0x8d, -0xb5,0x97,0x24,0xd7,0x9a,0x8a,0xd3,0xe3,0x70,0x56,0xe5,0xfa, -0xe5,0x5d,0xfa,0xc4,0xee,0x85,0x4b,0x32,0x5b,0x9d,0x4b,0x16, -0x76,0x27,0xc4,0x77,0xad,0xb8,0x9d,0xe5,0x3f,0xf4,0xd3,0xd0, -0xb5,0xe8,0x92,0x37,0xff,0x90,0xe1,0xfc,0x65,0x36,0x4a,0x47, -0x90,0xbf,0x60,0x01,0x33,0x6d,0x6f,0x76,0x68,0xb9,0x4b,0x71, -0xe9,0xc5,0xa6,0xda,0xe4,0x12,0x7b,0x2c,0x98,0x60,0x29,0xb5, -0x89,0xc5,0xe9,0x1a,0x9c,0x55,0x75,0xfb,0x8a,0xae,0xf8,0x04, -0xc8,0xdf,0xd9,0x9a,0x09,0xf9,0x27,0xea,0xbb,0x96,0xaf,0x17, -0xe6,0x76,0x87,0x7a,0x31,0x86,0xfc,0x25,0x28,0x99,0x12,0xb2, -0x6f,0x1e,0x84,0x59,0x4a,0x36,0xef,0x2a,0x94,0x00,0xc1,0x0b, -0x12,0x33,0x33,0x44,0x25,0xe3,0x97,0x83,0x76,0xee,0x9c,0x36, -0x6d,0x23,0xb7,0xb6,0xe0,0xd2,0xa5,0x02,0x96,0x57,0xee,0x50, -0x2f,0x1a,0x64,0x79,0x99,0x86,0x77,0x72,0x23,0x2a,0x8a,0xf9, -0x51,0x02,0x8e,0xe5,0x23,0xf1,0xe5,0x23,0x97,0xb1,0xe5,0x1f, -0xce,0x41,0xc8,0x87,0x7c,0x7f,0x69,0x75,0x01,0x27,0x2a,0x60, -0x73,0x33,0x50,0x27,0x35,0xe4,0x13,0x87,0x8a,0xe8,0x30,0x9e, -0x96,0xad,0xcf,0x42,0xd4,0x5d,0xa3,0x75,0xea,0x07,0x24,0x44, -0x81,0x7d,0x40,0x8d,0x65,0xaa,0x4a,0xf9,0xa5,0xd4,0x94,0x98, -0x23,0x18,0x21,0x7b,0xeb,0xaa,0xe6,0xeb,0xca,0x7a,0x3c,0xd1, -0xe8,0x64,0xd6,0x0f,0xbf,0xf3,0x8d,0xf7,0x9a,0xe2,0xb0,0x43, -0xf9,0x66,0x52,0x92,0x3b,0x25,0xc5,0x9d,0x94,0xd4,0x3c,0xcd, -0x99,0x92,0xe2,0x9c,0xb6,0xd1,0x66,0xbc,0x60,0x49,0xad,0x4b, -0xb5,0x5c,0x30,0xda,0x0a,0x7e,0xb4,0x55,0x05,0x4a,0x03,0xab, -0x6c,0x3f,0x16,0xf0,0x6d,0xc3,0x45,0xde,0x3a,0x45,0x0e,0xd7, -0x29,0xce,0x46,0x47,0x22,0xfa,0xd9,0xd9,0x54,0xe3,0xd5,0x49, -0xca,0x16,0xd4,0xd2,0x3a,0xc5,0x49,0xe9,0x0e,0x35,0xd6,0x6e, -0x46,0x7e,0x51,0x0e,0x25,0x33,0xc5,0xd8,0x16,0x15,0xc1,0xad, -0xa3,0x0b,0x62,0xb6,0x8e,0xaa,0x13,0xf9,0xfe,0x0a,0x95,0x62, -0x38,0x0f,0x1a,0x9a,0x87,0x5b,0x99,0x4e,0x35,0xf8,0xd9,0x28, -0x7e,0x9c,0xef,0xaf,0x57,0x55,0xd8,0x81,0x83,0xb0,0xb8,0xd2, -0xf3,0xd3,0xfd,0xdc,0x0d,0x97,0x6e,0xa3,0xdf,0x27,0xc1,0xf7, -0xcb,0xbd,0xdf,0x93,0x9f,0xf9,0x5e,0x0c,0xdf,0x63,0x8b,0xe7, -0x72,0x25,0xe6,0xf8,0x0c,0xf0,0x90,0x93,0xad,0xf7,0xa6,0xe3, -0x2b,0xa6,0x5f,0x30,0x67,0x6d,0x4f,0x37,0x42,0x16,0x6f,0xe3, -0xcf,0x4a,0x3c,0xb1,0x74,0x6d,0x20,0xd3,0x37,0xde,0x3c,0xc0, -0xae,0x5b,0xc8,0x6c,0xab,0xa2,0xa1,0x8b,0x5c,0x17,0xc8,0x06, -0x0e,0x9c,0x9b,0x18,0xc8,0xd7,0x86,0x0e,0xf4,0xb3,0x23,0x50, -0xd3,0x7d,0xbb,0xf6,0x39,0x61,0xc9,0x40,0xa4,0x10,0xc6,0x09, -0x61,0xda,0x95,0x67,0xce,0xaf,0x32,0xb4,0x32,0x72,0x17,0x9c, -0x30,0x09,0x12,0xec,0x9b,0x04,0xa1,0xc3,0x4c,0x01,0xc2,0x4a, -0x01,0x25,0x33,0xd2,0x75,0xf0,0x1a,0x3f,0x32,0xab,0xb3,0xf1, -0x5b,0xda,0x12,0xd9,0x1b,0x3a,0x29,0x5d,0x2d,0x45,0xfb,0xd8, -0x01,0xed,0xe4,0x46,0x8c,0x36,0x03,0xf9,0x19,0x0d,0xd0,0xdf, -0x78,0xdc,0xd4,0x97,0xf0,0xd9,0x89,0x1e,0x8d,0xa9,0xb6,0xb1, -0xb1,0x96,0x42,0x6b,0x6b,0x2b,0x71,0xfb,0xdf,0x00,0xb2,0x70, -0xce,0xec,0xe9,0xd3,0x67,0x53,0xc8,0x5c,0x91,0xbb,0x02,0xfe, -0x7b,0xd6,0x8f,0x4a,0x00,0xce,0x03,0xdc,0x89,0xfe,0x34,0x02, -0x77,0x13,0xc0,0x1f,0xfa,0x92,0xd2,0x46,0x39,0xaa,0xf0,0x79, -0x43,0x61,0xc2,0xa2,0xa0,0x48,0x21,0x8c,0x15,0xc2,0x34,0x21, -0x74,0x08,0x61,0xe9,0x95,0x47,0xa6,0xc6,0x20,0x78,0x18,0x7d, -0x57,0x42,0xb0,0x9d,0x26,0xd8,0x7f,0x19,0x82,0x31,0x8a,0xbd, -0x0a,0x82,0x69,0xec,0x10,0x72,0x41,0x2d,0xed,0x90,0x92,0xcb, -0x52,0x2c,0x90,0x52,0x34,0xf0,0x9f,0xa3,0x5e,0xfc,0xdf,0x74, -0x08,0xfe,0xfd,0x7f,0xdc,0x3b,0x99,0xa3,0x7b,0x8b,0xf2,0xdf, -0x0d,0x20,0x33,0x8f,0x81,0x5c,0x19,0xe9,0x03,0x79,0xe5,0x2f, -0x93,0xb5,0xb2,0x1b,0x4a,0x41,0xca,0x5e,0x5a,0xcd,0xf4,0xe6, -0xf0,0xfb,0x12,0x6a,0xf9,0x8d,0x73,0x5e,0x06,0xfd,0x52,0x64, -0xe3,0x8d,0x68,0x8e,0x7d,0x5d,0x5a,0x8a,0xef,0xc3,0x33,0x3c, -0x8f,0x5e,0x1e,0xa4,0x57,0x5e,0xff,0xd6,0x0e,0xcd,0xc6,0x1e, -0x36,0xc6,0x3e,0x91,0xce,0x44,0xd9,0xc0,0x48,0xaf,0x67,0xf9, -0xd8,0x20,0x9f,0xbc,0x01,0x41,0x83,0xf9,0xdb,0x0e,0x6a,0xef, -0x00,0x5d,0x28,0x5b,0x92,0x6c,0x60,0xcb,0x6f,0xf9,0x2d,0x35, -0xc9,0xc2,0x58,0x04,0x3d,0x37,0x2c,0x54,0x18,0x59,0xf0,0xa6, -0xc5,0x42,0x6a,0x11,0x8b,0xd5,0x40,0x1a,0xff,0xd4,0x0d,0xdf, -0xd4,0x08,0x1b,0x68,0x47,0xac,0x13,0xf3,0x2e,0x02,0xf0,0xdb, -0x02,0x3a,0x76,0x4f,0x05,0x15,0xde,0x66,0xfe,0x4d,0x7e,0x4f, -0x28,0x4d,0x57,0xe5,0x63,0xfc,0xe7,0xb8,0xcc,0x2a,0x6b,0xea, -0x64,0x63,0x5a,0x74,0x6e,0x62,0x56,0xbe,0x3b,0xbd,0x60,0x52, -0x65,0x76,0xa6,0x3e,0x59,0x43,0x53,0xdb,0x8c,0x36,0x5f,0x6a, -0x55,0xb6,0x33,0xc1,0x6c,0xcd,0xce,0xcd,0x07,0x49,0xaa,0x35, -0x66,0xf1,0x61,0x82,0xc8,0x34,0x21,0x39,0x2a,0x56,0x9b,0xa5, -0x50,0xd9,0x92,0x13,0xad,0x11,0xf2,0xe8,0x3a,0x87,0xbd,0x5a, -0x29,0x89,0x2a,0x4c,0x4d,0xc8,0x49,0x19,0xfb,0x20,0x40,0x55, -0xf4,0x51,0x8a,0x53,0x26,0x23,0x01,0x9c,0xd2,0x6d,0x14,0x62, -0x51,0x2e,0x66,0xf3,0x0e,0x2d,0x20,0x39,0x6c,0x1d,0x5d,0x2e, -0xc5,0x8e,0x6f,0x1d,0x9d,0xdc,0x36,0x86,0x97,0x7c,0xc7,0x27, -0x9c,0xe2,0x2d,0x1f,0xca,0x97,0x72,0x61,0xdd,0xb9,0xdc,0xeb, -0xd5,0xd3,0xf5,0x7a,0xec,0xef,0xbb,0xe4,0x72,0xa7,0x56,0xeb, -0x2c,0x4f,0xc6,0xa5,0x25,0x55,0x8b,0xab,0xb0,0x55,0xe7,0xaa, -0x4c,0x4e,0xaa,0x72,0xe9,0x4a,0x2f,0x7d,0xcb,0x85,0x5c,0xfa, -0x16,0xa8,0xc2,0x35,0xf4,0x2d,0x79,0x9f,0xfc,0x96,0xad,0x89, -0x2a,0x45,0xfb,0x29,0x4d,0x95,0xa1,0x72,0x61,0x55,0x14,0xef, -0x16,0xa4,0xfc,0x92,0xd1,0x66,0x78,0xfd,0x14,0x65,0xc8,0x43, -0x28,0x1e,0x42,0x85,0x94,0x6d,0x3c,0x17,0xb3,0x35,0x56,0x74, -0x93,0xa0,0x30,0x0f,0x92,0x82,0x96,0xd0,0x9b,0x4e,0x78,0x0b, -0xde,0xb0,0x9f,0x62,0x47,0x9d,0xd8,0x51,0x3c,0x00,0x7b,0x63, -0x31,0x44,0x6e,0xa6,0x37,0x9d,0x87,0xa1,0xd3,0x29,0x93,0xa6, -0xb0,0xc1,0x2c,0xca,0xe2,0x99,0x90,0x92,0x2f,0x10,0x0b,0x1f, -0xfb,0x25,0x2b,0xb0,0xdc,0x23,0x57,0x3b,0x07,0xf8,0x2f,0x76, -0x5e,0x57,0xbe,0xaa,0x23,0x33,0xb3,0x63,0x55,0xb9,0x37,0xcc, -0x99,0x51,0x61,0x36,0x57,0xcc,0xc8,0x99,0x30,0x9d,0x86,0xd3, -0x4b,0xea,0x26,0x4f,0xae,0x73,0x14,0xc9,0xb2,0x43,0x12,0xe2, -0xac,0xa9,0xa9,0x56,0x5d,0x62,0x84,0x4b,0x56,0x16,0x92,0xd1, -0xb9,0xbe,0xa9,0x69,0x7d,0x67,0x86,0x37,0xcc,0x4d,0xae,0x9c, -0x99,0x93,0x9b,0x33,0xb3,0x32,0xd9,0x17,0x99,0x3f,0xaf,0xbd, -0x7d,0x9e,0xdd,0xac,0x8b,0xd5,0xba,0xad,0x45,0x56,0xb7,0x5e, -0x6d,0x48,0xcc,0x60,0xc7,0x01,0xa3,0x24,0x9c,0x82,0x9f,0x17, -0xd6,0xa0,0xb9,0x51,0x01,0x7a,0x8d,0x62,0xbc,0x90,0x51,0xfc, -0x30,0xc6,0x5d,0x42,0x98,0x35,0x0e,0xe6,0xe9,0x14,0x66,0x30, -0x1b,0x95,0x53,0x30,0x9b,0xe2,0x46,0xba,0xe8,0x96,0x4e,0xe1, -0x0e,0x41,0x12,0x1b,0x18,0xb6,0xd1,0xc8,0xb2,0x7e,0x78,0x6e, -0x41,0x85,0x7c,0xbe,0x36,0x96,0xac,0x80,0x64,0x36,0xc6,0xa4, -0xe0,0x5f,0x44,0x2c,0x85,0x76,0x20,0xcd,0xd0,0x4a,0x1f,0xb0, -0xd7,0xad,0x36,0x8a,0x73,0x9a,0x56,0x00,0x21,0xbf,0x44,0xae, -0xc0,0x46,0x7b,0x84,0xa6,0x39,0x20,0x95,0x9f,0xbb,0xa2,0x02, -0xd4,0xe9,0x4f,0x78,0x57,0xec,0x05,0x33,0xdd,0x18,0xc4,0x86, -0x9f,0x55,0x46,0xb3,0xd1,0x4d,0x85,0xa6,0x05,0x2b,0xbf,0x4a, -0xae,0x74,0xc5,0xc7,0x53,0x92,0xac,0x74,0xe9,0x80,0x34,0x93, -0x0c,0xd9,0xc9,0x2a,0x7a,0x8e,0x87,0x10,0xe2,0xa4,0x0e,0xad, -0x21,0x4a,0x96,0x9e,0x6a,0x35,0xda,0x55,0x2a,0x3b,0x4e,0x89, -0xcf,0xaa,0xb1,0x5a,0x6b,0xb2,0xe2,0xbd,0x61,0x52,0xac,0x25, -0x4b,0x1b,0xa5,0xcd,0xb2,0xc4,0xfa,0x22,0x39,0xbf,0x37,0x6a, -0xa2,0xb5,0x92,0x96,0x06,0x9d,0x32,0x4a,0x59,0xc8,0xcb,0x2e, -0x1d,0x7e,0x92,0x14,0xb2,0xb5,0x3b,0xd1,0x54,0x76,0x05,0xd2, -0x23,0x41,0xc7,0xd9,0xe7,0x20,0x2c,0xfd,0xfc,0xf9,0xd5,0xa2, -0x6a,0xef,0x31,0x34,0x04,0x10,0xc2,0xf3,0x22,0x11,0xa6,0xb1, -0x90,0x94,0x5f,0x40,0x2b,0x15,0xec,0x0b,0xf9,0x00,0xbf,0xac, -0x32,0x8a,0xa2,0xc9,0x09,0x58,0xa0,0x07,0x47,0xc8,0xd8,0x6e, -0x15,0x30,0x64,0xdd,0x46,0x89,0xd9,0xa8,0x52,0xae,0xea,0xf8, -0xb4,0xfd,0xae,0x82,0x32,0xae,0x34,0x37,0x0d,0x8b,0x1a,0x9b, -0x44,0x04,0x3f,0x79,0x3e,0x35,0xf5,0x3c,0x56,0xdd,0x76,0x9b, -0xe7,0x8b,0xd5,0x4d,0x0f,0x3d,0xd4,0xc4,0xcb,0xf2,0x24,0xdc, -0x86,0xe7,0x92,0xe3,0x60,0x4c,0x5a,0xd0,0x4e,0xba,0x40,0xca, -0x3b,0x76,0x1e,0x3e,0x62,0x26,0x7c,0x78,0xec,0x9c,0x6f,0xab, -0x55,0x58,0x0a,0xee,0x5d,0xec,0x49,0xc7,0x75,0x43,0x2f,0x52, -0xeb,0xdd,0x34,0xe2,0x1c,0xa2,0x50,0xb6,0xe8,0x2a,0x52,0x18, -0x50,0x0f,0xb7,0x15,0x49,0xe8,0xb2,0x6d,0xe0,0xc6,0x70,0x20, -0xd0,0x70,0xc4,0x2d,0x85,0x84,0xe3,0x10,0x19,0x00,0x18,0xa4, -0x09,0x9d,0xfc,0x31,0x44,0xe1,0x82,0x95,0x40,0x17,0x6e,0x85, -0x5e,0xe4,0xd7,0x78,0xc7,0xa3,0x20,0x3a,0xdc,0x4e,0x77,0x5d, -0x8d,0x38,0x87,0x68,0xf8,0x18,0x22,0x30,0xa7,0xcd,0x8c,0x1d, -0xf9,0x85,0xdd,0x78,0xae,0x21,0x4e,0x2f,0x0a,0x71,0xa5,0x39, -0xb3,0x26,0x56,0x56,0xd4,0x18,0xd2,0x42,0x52,0x22,0x8a,0xdd, -0x05,0x95,0xa6,0x67,0x93,0x2d,0xb9,0x72,0xa3,0x5a,0x8a,0xbb, -0x62,0xd5,0xaa,0x04,0x97,0xd5,0x95,0xa1,0xa9,0x8b,0x53,0x19, -0x62,0xad,0xc5,0x79,0xbf,0xee,0x8a,0x56,0x05,0xdb,0x83,0x64, -0xaa,0x88,0x64,0xfe,0xdc,0x26,0xc0,0xcf,0x0c,0xc0,0x4f,0x08, -0x34,0xba,0x8c,0xf2,0x55,0xac,0x30,0xa1,0x37,0xde,0xba,0x0e, -0xba,0x38,0x39,0x94,0x8d,0x9b,0xcb,0x05,0x6a,0x40,0x94,0x4b, -0xa8,0x9b,0x46,0xd7,0x5e,0x87,0xc2,0x43,0x36,0x00,0xe4,0xa7, -0xea,0xfd,0xc7,0x43,0xdf,0xac,0x6a,0x6c,0xac,0xa2,0x60,0xb5, -0x58,0xac,0x00,0xb8,0x6d,0x5a,0x4b,0xcb,0x34,0x0a,0x99,0x2e, -0x4b,0xbe,0xc5,0xc5,0x2e,0x50,0xa7,0x62,0xbc,0x08,0x6f,0x63, -0xfc,0x1e,0x4f,0xa5,0xbb,0xf7,0xb4,0x9c,0xf1,0xd7,0x9c,0x52, -0x73,0x28,0xe0,0x22,0x5f,0x73,0x9d,0x50,0x27,0x3a,0x2d,0xc7, -0x9c,0x80,0xb1,0x9b,0x6c,0xf9,0x63,0x9d,0x40,0xa1,0x9d,0x4f, -0xc8,0x4b,0x8d,0x8d,0x4d,0xcd,0x4b,0xf0,0x86,0xa9,0x4e,0x67, -0x2a,0x00,0x5e,0x14,0x9b,0x56,0x60,0x32,0x15,0xa4,0xc5,0x7a, -0xc3,0xc2,0x82,0xd4,0xd4,0x02,0x0a,0x54,0xef,0x64,0xe1,0x55, -0xa8,0x9f,0xd9,0xe2,0x5a,0x7a,0x19,0x77,0x7c,0x4d,0x4d,0x8d, -0x70,0xba,0x16,0x2a,0x2b,0xab,0x1a,0xde,0xc7,0x85,0x9e,0xe3, -0x6c,0x6c,0x85,0xc6,0x17,0xc0,0xb7,0x89,0x68,0x15,0x1b,0x5b, -0x59,0x25,0x8c,0xb1,0x25,0xe0,0x75,0xf8,0x51,0xf2,0x77,0x20, -0x0f,0x6d,0x3f,0x7f,0x20,0xef,0xd8,0xbd,0x2a,0xfc,0x98,0x9d, -0xd9,0x6d,0x76,0xab,0xcc,0x0e,0x09,0x1d,0x06,0x92,0x98,0xb7, -0x64,0x4d,0xd9,0x1c,0xb5,0x31,0xa0,0x3c,0x60,0x63,0xd4,0xe6, -0x29,0x59,0x8d,0x78,0x5d,0xf2,0x0a,0x73,0x89,0xe3,0x9e,0x7b, -0x1c,0x25,0xe6,0x15,0xc9,0x37,0xf0,0xbe,0x0b,0xdd,0x1b,0xfb, -0x1d,0xf8,0x1e,0x21,0x74,0x4d,0x15,0x1a,0x7f,0x8d,0x7b,0xdc, -0xe8,0x95,0xdc,0x3f,0xbf,0x31,0x4f,0x3e,0xcc,0xce,0x01,0xbe, -0x73,0x5f,0x78,0xbf,0x95,0x1e,0xf7,0xc2,0x6f,0x66,0xfc,0xe7, -0xb1,0x63,0xe5,0xc7,0x8e,0x9d,0x20,0x9b,0x0a,0x07,0x07,0x0b, -0x2f,0xaf,0x18,0x51,0x1f,0x39,0xba,0xb5,0x9f,0x2d,0x5f,0x53, -0x7a,0xc7,0xaa,0x46,0x0a,0x90,0xb8,0x2b,0x57,0x61,0xcc,0xe1, -0x34,0x57,0xae,0x53,0x80,0x6f,0xe2,0x20,0x9c,0xc5,0x38,0xa6, -0xf6,0x79,0xd1,0x43,0x37,0xed,0xa9,0x9c,0xbc,0x77,0xec,0xad, -0x31,0x15,0x35,0x50,0x6b,0x56,0x6f,0xa8,0xf9,0x60,0x21,0x5e, -0x48,0xeb,0xee,0xb9,0xb7,0x70,0x90,0xae,0x81,0x02,0x86,0xb9, -0x9d,0x50,0x77,0x39,0x1e,0xbd,0x49,0x03,0x2f,0x5d,0xaa,0x21, -0x3b,0xcd,0xc0,0xa8,0x1d,0x71,0x63,0x66,0xd1,0xd5,0x57,0x3e, -0xab,0x6b,0x78,0xc4,0x85,0x8a,0x98,0x50,0x61,0x17,0x84,0x58, -0x10,0x3f,0x62,0xa1,0x25,0x74,0x55,0x81,0xf7,0x59,0x30,0x65, -0xbc,0x08,0xba,0x50,0x84,0x5f,0x99,0x1a,0xcc,0xe6,0x35,0x83, -0x04,0x13,0x9f,0xae,0x1f,0xe0,0x1d,0x0f,0x2a,0x48,0xe9,0xa4, -0xac,0x52,0xd8,0xaa,0x18,0x3f,0x40,0x05,0x2b,0xef,0x78,0xc4, -0x0c,0xd0,0xed,0x23,0x12,0xa3,0x1b,0x10,0xc0,0xc0,0x21,0x61, -0xa0,0x34,0x32,0x30,0xca,0x41,0xd6,0xe2,0xfb,0xb6,0x27,0x14, -0x26,0xac,0xd9,0xa8,0xb9,0x79,0xa3,0xb1,0xd0,0xb8,0x1d,0x60, -0xcd,0x9d,0x9a,0x35,0x1b,0x13,0x0a,0xd3,0x34,0xdb,0x35,0xbf, -0xfb,0xdd,0xef,0x72,0x77,0xe7,0xfe,0x4e,0x08,0x70,0xd0,0xee, -0xdd,0x7c,0x1f,0xe3,0x24,0x61,0xdd,0xa7,0xe1,0xea,0xeb,0x3e, -0x09,0x5d,0xdc,0xc9,0x19,0x39,0x33,0xdd,0xdb,0xf6,0xc5,0x11, -0xd1,0x91,0xbc,0xf7,0x5a,0xdf,0xc3,0x49,0xb8,0xd2,0x73,0x48, -0x87,0x97,0x79,0x36,0x43,0x5e,0x79,0xe8,0x4b,0xa2,0xc6,0xbd, -0x20,0x9d,0xaa,0x28,0xbf,0xf1,0xd2,0x09,0x1d,0x01,0xfa,0x11, -0xb3,0xf9,0x07,0x5e,0x7d,0x04,0x9c,0xa2,0xb3,0xb9,0x01,0xde, -0xd9,0xec,0x20,0x3a,0x9b,0xcd,0xef,0xe3,0xa2,0xc6,0x73,0x14, -0x84,0x72,0x5e,0xed,0x47,0xd9,0xa2,0xa1,0xcd,0x60,0x0c,0x33, -0xc3,0x46,0x10,0xab,0x2a,0x66,0x18,0x33,0xf3,0xe6,0x49,0x53, -0xb6,0x51,0xe3,0x8a,0x8f,0x31,0xaa,0xf4,0x0a,0x77,0xaa,0xff, -0xcd,0x97,0x0a,0x59,0xb8,0x22,0x42,0x66,0x8d,0xd1,0xfa,0x22, -0xb4,0xad,0x25,0x28,0x9f,0x28,0x49,0x02,0xd0,0xa3,0xd9,0x8f, -0xbf,0x8e,0xb0,0x2d,0x7d,0x1c,0xab,0x1f,0xc7,0x66,0xd5,0x79, -0x9a,0x0b,0xa6,0x18,0x77,0xfa,0xe8,0x4d,0x89,0x03,0x5e,0x7b, -0xad,0xf6,0xb5,0xd7,0xf2,0x7f,0x5f,0xfa,0x7b,0xf8,0xcf,0xf2, -0xc3,0x11,0x44,0x89,0x9b,0xc6,0x99,0x3f,0x11,0xfb,0xcd,0x9f, -0x94,0xe0,0xf7,0x71,0x44,0x69,0xa9,0x6f,0x6e,0x78,0x3e,0x94, -0x1f,0x81,0xaa,0xe9,0x17,0x52,0x24,0x1b,0x25,0xbf,0x87,0xb7, -0x8d,0xf9,0x57,0x2b,0x54,0x40,0x0f,0xaf,0x8b,0xaf,0x56,0x49, -0x31,0x5d,0x0a,0xc0,0x57,0xd4,0xf3,0x4f,0xfc,0xfe,0x03,0x6f, -0x96,0xbe,0x09,0xff,0x1f,0x80,0xe2,0xa1,0x46,0x53,0xe9,0xaf, -0x9b,0x11,0x31,0x9d,0x35,0xbe,0xa2,0x7c,0x89,0xe1,0x37,0x86, -0x30,0xe1,0xc5,0x24,0x17,0xb6,0x3e,0x96,0xfe,0x98,0xf7,0x3f, -0x46,0x4f,0xa6,0x3f,0xe9,0xfd,0xcf,0xd6,0x17,0x94,0xa0,0x4c, -0x68,0x53,0x1a,0xdb,0xba,0x11,0x4f,0x47,0x7d,0x45,0x3e,0x4e, -0xe3,0x3d,0x30,0x3e,0x8c,0x1c,0xf0,0xc3,0x8b,0x77,0x34,0x7e, -0xf8,0xc8,0xc2,0x48,0x36,0x6a,0xc9,0xe3,0x6b,0xe4,0x98,0xe4, -0xc8,0xa1,0x56,0xc0,0xe5,0x17,0x46,0xb5,0xda,0xe8,0x07,0x14, -0xb7,0x7f,0xd6,0x28,0xa2,0x14,0x1a,0x76,0xc1,0xeb,0x86,0xe3, -0xfc,0x7c,0xfc,0x5e,0xe8,0xa3,0x43,0xcc,0x3f,0x4c,0x1e,0xc7, -0x3f,0x3c,0x42,0xbb,0x8d,0x6e,0xe9,0xb4,0x8c,0xee,0x37,0x31, -0xdf,0x77,0x9e,0x34,0xe8,0xbf,0x15,0xa5,0xa5,0x27,0x00,0x87, -0xa0,0x17,0xf2,0xd0,0x46,0xa0,0xf1,0x8f,0x49,0x22,0xba,0x05, -0xcd,0x02,0x2a,0xbe,0x05,0x3d,0x8a,0x78,0xda,0xaa,0x04,0x3c, -0x68,0x80,0xd6,0x8b,0xe8,0x1c,0xb4,0x20,0x2b,0x8f,0xd0,0x53, -0x46,0xa0,0x64,0x9a,0xfb,0x70,0x77,0x4a,0xa4,0xfc,0x40,0x73, -0x80,0xc0,0xfb,0xa3,0x25,0x5d,0x01,0xe6,0x99,0x5c,0xef,0x63, -0x70,0xbd,0xe4,0x4e,0xd7,0xea,0x27,0xcb,0xce,0xe1,0x30,0x67, -0x25,0x8b,0x78,0xfe,0xe5,0xac,0x9c,0x55,0xba,0xae,0x74,0x16, -0xbb,0x40,0xf9,0x1d,0x43,0x17,0xc1,0x7f,0x75,0xf1,0x7c,0xec, -0x37,0x6e,0x49,0x6c,0x63,0x0e,0x6f,0xa4,0xc3,0xc1,0x26,0xa5, -0x18,0xfe,0x3a,0xf0,0x4e,0xcf,0xd3,0xb8,0xfd,0x1f,0x0d,0x3f, -0x34,0xbf,0x15,0xf8,0x16,0xfd,0x39,0xdf,0x91,0xf9,0xe0,0xe1, -0x7c,0x44,0xe3,0xe6,0x63,0x72,0x9a,0x9c,0x90,0x51,0x07,0x6e, -0x87,0x7c,0x76,0x7a,0xa6,0x56,0xd2,0x6c,0x7e,0x68,0xf8,0x81, -0xb7,0x4b,0x3b,0xd8,0x99,0x31,0xf5,0xd0,0xea,0x10,0x94,0x49, -0xe7,0x03,0xbc,0xfb,0x6f,0x7d,0xf3,0x01,0xbe,0x9d,0xfa,0x23, -0x17,0xfd,0x51,0x4a,0xa7,0x73,0x70,0x0e,0xe8,0x02,0x19,0xad, -0x28,0x94,0x43,0xeb,0xba,0x1b,0xb7,0x79,0xa6,0xe2,0x9d,0xe0, -0xbf,0x0f,0xdd,0x2f,0xb9,0x7f,0xd2,0xb1,0xf6,0xa3,0x23,0xca, -0x91,0xf0,0xe5,0x60,0x5f,0x39,0x98,0x21,0xda,0xbf,0xf6,0xc3, -0x33,0x7d,0xfc,0xd0,0x38,0x3f,0xf7,0xe8,0x6d,0x07,0xdd,0x36, -0xd8,0x01,0x65,0xec,0xa6,0x6d,0xa1,0x70,0x12,0x8a,0x69,0x38, -0xda,0x7e,0xcc,0xc9,0xf8,0xa7,0x07,0x5d,0x40,0x83,0x78,0x29, -0xb0,0xa2,0xd2,0x6f,0x3e,0xb3,0x9f,0xd9,0x07,0x74,0x7e,0x76, -0xe4,0x42,0xd1,0x27,0x85,0x91,0xf3,0x0b,0xc3,0x43,0xe4,0x6c, -0xee,0x6e,0x0b,0x9b,0x0b,0xf4,0xce,0x02,0xd2,0x7c,0x6b,0x51, -0x3f,0x2e,0xc4,0xbb,0x7e,0x61,0xbe,0x6f,0x94,0xb8,0xdd,0x25, -0x00,0xfd,0xb9,0x56,0x8d,0x35,0x97,0x5d,0xe8,0x99,0x27,0x80, -0x88,0x14,0x36,0xf7,0x12,0x42,0x57,0x1a,0x87,0xf8,0x70,0x10, -0x72,0xf5,0xb9,0x17,0x7f,0x0f,0x97,0x08,0x9b,0x99,0x91,0xb0, -0x3f,0x4a,0xcf,0x81,0xac,0x07,0x81,0x0f,0x52,0x5f,0x8e,0xc5, -0x1f,0x7e,0x58,0xff,0xe1,0x87,0x09,0xbb,0x76,0x49,0x76,0xed, -0xc2,0x9d,0xb8,0xd3,0xf3,0xa4,0xe7,0xc9,0x1a,0x1c,0x89,0x23, -0x3d,0x5f,0x79,0xbe,0x42,0x02,0x0f,0xd4,0x31,0x79,0x28,0xe6, -0xe5,0xa1,0xb0,0x3f,0x6c,0x98,0xf2,0xa9,0xa8,0xd2,0x3b,0xf5, -0x32,0x3c,0xe0,0x59,0x8e,0xdf,0xaf,0x7b,0xa5,0xd4,0xf3,0x93, -0xf7,0xbc,0x3b,0xe2,0x66,0xeb,0x43,0x1b,0x87,0xa9,0x04,0x5d, -0xc9,0xcc,0x19,0xe3,0xb5,0xf8,0x37,0x81,0x37,0x29,0xf8,0x93, -0x1b,0x84,0x6d,0xe2,0x1c,0x30,0x93,0x4a,0xce,0xd6,0xbb,0x5f, -0xbe,0x69,0xe6,0x8e,0xd4,0x1a,0x71,0xdd,0xf4,0xba,0xb7,0xf0, -0xeb,0x85,0xbb,0x3c,0x9f,0x62,0x35,0x9e,0xca,0xef,0x2f,0xa4, -0xb6,0xce,0x75,0xec,0x7c,0xa3,0x82,0xb1,0xeb,0xd9,0xc7,0xd8, -0x5e,0x82,0xa3,0xc4,0xb6,0xc9,0x23,0x56,0x9c,0xd8,0x37,0xd7, -0xa2,0x72,0xc8,0xf8,0x71,0x75,0x76,0xda,0x52,0xc6,0x0d,0xee, -0x9c,0x0e,0x0a,0x6b,0xc9,0x05,0x67,0x51,0xf9,0x65,0xa9,0xb3, -0x88,0xc9,0x4d,0x29,0x5a,0x4e,0x3e,0xc0,0x5f,0x23,0x3d,0x4a, -0x43,0x13,0xa8,0xbd,0xa7,0x05,0x93,0x25,0xcf,0xb7,0x52,0xc8, -0x34,0xc0,0x87,0xd9,0x54,0x42,0x25,0x41,0xd9,0xc1,0x3e,0x09, -0x65,0x80,0x18,0x1d,0xfe,0x4d,0x12,0x86,0x0b,0xa9,0x05,0x21, -0x13,0x7a,0x4d,0x3d,0x40,0x57,0xa4,0x1a,0x84,0x53,0xdb,0x0c, -0x90,0x62,0x83,0x27,0x49,0xcc,0xe5,0xa6,0x74,0xe4,0xb7,0x2c, -0xc2,0x7f,0xb1,0x1f,0x5b,0x34,0x01,0x06,0xb7,0xdb,0x37,0x84, -0xa0,0x1f,0x5e,0xf8,0xa7,0xc5,0xaf,0x26,0x17,0xa7,0xc5,0xc4, -0xa4,0x15,0x27,0xd7,0x77,0x44,0x8b,0x23,0x1a,0xb3,0x47,0xdd, -0xa6,0x97,0xc9,0x64,0x65,0xe9,0xd6,0xcc,0x4c,0xbc,0x09,0x2e, -0x56,0x76,0xbb,0x5c,0xe3,0x28,0x4f,0x4e,0x2e,0x77,0x68,0xca, -0x2a,0xaa,0x8b,0xfd,0xe3,0xa5,0x59,0xc5,0xc5,0x59,0x4e,0x6b, -0x86,0xd5,0xc9,0x2e,0xf4,0x8e,0xf1,0x70,0xc2,0xd0,0x45,0x72, -0x90,0xed,0x01,0x37,0xa1,0x69,0x74,0xe6,0x28,0x11,0x99,0x7d, -0x7b,0x89,0xf4,0x03,0x57,0xdc,0x61,0xe3,0xbf,0xcf,0x9a,0x13, -0xe6,0x19,0xf4,0xa7,0xe8,0x1a,0x67,0xbd,0x70,0x6c,0x81,0xc6, -0x46,0x89,0x4a,0x23,0xd8,0x62,0x26,0xca,0xee,0x5e,0x1b,0x82, -0x1b,0xb1,0x7e,0x44,0x6f,0x72,0xf2,0x96,0x86,0xf2,0x79,0xdd, -0x94,0xdc,0x8e,0xde,0x84,0x34,0x45,0x56,0x65,0xbb,0xb3,0xe2, -0xda,0xb6,0xf4,0xf4,0xb6,0x6b,0x2b,0xca,0xaf,0x6b,0x4b,0xf7, -0x10,0xbc,0x08,0x9e,0xe5,0x4e,0xd1,0x5d,0xa3,0x4d,0x6a,0x2c, -0x89,0x49,0x2c,0xb4,0xc5,0x3a,0xba,0x6e,0x6b,0x6a,0x5c,0xdf, -0xe5,0x70,0x74,0xad,0x6f,0xb4,0xbf,0xa6,0x4d,0x4a,0xd2,0xbe, -0x06,0xed,0x31,0x80,0x1c,0x7d,0x9b,0x5c,0x40,0x46,0xe8,0xdf, -0xe5,0x74,0x3e,0xcf,0x86,0xec,0xbe,0xf9,0xbc,0x84,0xd1,0xf3, -0x79,0x71,0xe3,0x12,0xb3,0x6c,0xc4,0x29,0x50,0xc8,0x77,0x1a, -0xae,0x5a,0x38,0x98,0x41,0xc6,0x0c,0x2c,0x3a,0xff,0x93,0x20, -0x2c,0x60,0x4a,0x12,0xd2,0xd8,0xca,0xee,0x3c,0x1c,0x8e,0xa9, -0xd5,0xe4,0x96,0xf1,0x7d,0xce,0x86,0x0a,0xfd,0xe6,0x30,0x03, -0x94,0x32,0x7e,0x56,0x10,0x4b,0xab,0x6b,0xc3,0xd5,0xe1,0x7a, -0x65,0xaa,0x42,0x69,0xca,0xd4,0x96,0x55,0xcc,0x9b,0x61,0x31, -0xa7,0x66,0x2b,0xb3,0xc3,0x8c,0x69,0x39,0xd6,0x38,0x53,0x41, -0xb1,0x21,0x74,0x5a,0x6d,0x70,0x48,0x64,0x90,0x2b,0x3c,0x4e, -0x8a,0xf3,0x5c,0x55,0xa9,0xf2,0xd6,0xc6,0x99,0xcf,0x76,0x58, -0x8b,0x5d,0x13,0xd2,0x8c,0x71,0x8e,0xc4,0x28,0x72,0x38,0xbd, -0xd4,0x73,0xa9,0xf8,0xb6,0x12,0x99,0xc3,0xc2,0x4c,0xa1,0x4e, -0x20,0xf2,0xff,0x61,0x7e,0x21,0x5d,0xdb,0xef,0x40,0xaf,0xd0, -0x95,0x3d,0x99,0xc8,0x29,0xf8,0xe3,0x74,0x5c,0x82,0x0f,0x53, -0x85,0xd0,0x3e,0x70,0xc5,0xd5,0xd8,0xc2,0x40,0xfa,0x55,0xa6, -0x2e,0x84,0xf3,0x53,0x86,0x8d,0xf4,0x38,0x9a,0x10,0xc7,0x1b, -0xe9,0xc0,0x0e,0x28,0x8e,0x37,0x29,0x0d,0xb6,0x68,0x8a,0x5d, -0x7e,0xfa,0xe9,0x10,0x8a,0x66,0xab,0x89,0x0e,0x21,0xdd,0x00, -0x3f,0xd6,0x9e,0x2c,0x4c,0x96,0x1d,0x42,0xe9,0xa7,0x98,0xaf, -0x9c,0xce,0x7c,0x65,0x7e,0xb1,0x11,0x1e,0xe5,0xa0,0x62,0xdf, -0xae,0x4c,0xce,0x6c,0x94,0xe1,0x11,0xde,0xb3,0x04,0x14,0x17, -0xe7,0x36,0xe4,0x58,0x62,0x62,0x2c,0x39,0x06,0x21,0xbc,0x2c, -0x9a,0x3a,0x38,0x9d,0xab,0xeb,0xfa,0xb2,0x89,0x23,0x9b,0x52, -0xec,0xf6,0x14,0x80,0x69,0x20,0x41,0x17,0xaa,0xac,0x45,0xc9, -0xc9,0x45,0x56,0x95,0x37,0xf4,0xdc,0x4b,0xfa,0x3d,0x0b,0x0e, -0x90,0xf2,0xcb,0xe5,0xf8,0xc9,0x87,0x2e,0xbf,0x8a,0x1f,0x77, -0x25,0x66,0x25,0xba,0xd8,0x65,0x5f,0x71,0x31,0xe3,0x97,0x02, -0xe0,0x97,0x10,0xe6,0xdf,0x24,0xa3,0xd5,0xd4,0xda,0xf6,0xee, -0xf5,0xe4,0x46,0xf8,0x37,0x63,0xf8,0xc5,0xff,0x94,0x24,0x8d, -0x70,0x9a,0x58,0x94,0xb0,0xc0,0x2a,0x8c,0x5f,0x3f,0x2b,0xec, -0xa0,0x5b,0xc3,0x47,0xe8,0x20,0x09,0x9d,0x6b,0x0a,0x43,0x85, -0x00,0x5c,0xa7,0xf7,0x20,0x48,0x29,0x84,0xfc,0x96,0x3a,0xac, -0x18,0x71,0x90,0x92,0x3b,0x8d,0xa3,0xf3,0xae,0xa3,0xce,0xcb, -0x0c,0xb9,0x61,0xae,0xbb,0x35,0x57,0x17,0x9f,0x33,0x29,0xc3, -0x9a,0x1b,0xc5,0x85,0xba,0xaa,0x26,0xa7,0xae,0x36,0xb4,0xd7, -0xbb,0x3e,0x2b,0xae,0xaf,0x2f,0x06,0xc0,0x61,0x5b,0x36,0x26, -0x94,0x4e,0x9b,0x30,0x61,0x5a,0x69,0x42,0x5c,0x2c,0x49,0x28, -0x2d,0xc8,0x8a,0x56,0x16,0xf7,0x6c,0xf1,0xbc,0x5d,0x5b,0x57, -0x5e,0x57,0xcb,0x2e,0xd0,0xee,0x48,0xb0,0xe1,0x1b,0xc9,0x8d, -0xac,0xdd,0x37,0xfb,0xef,0x71,0x65,0x6d,0x0e,0xb7,0xf1,0x0a, -0x34,0x45,0x18,0x5c,0xe0,0x07,0x6b,0xf8,0x0a,0x13,0x78,0x62, -0xf4,0x9d,0x32,0x27,0x16,0x26,0xfa,0x79,0x1c,0x84,0xc2,0x37, -0x1a,0x9f,0xb8,0x09,0x1a,0xa0,0xcd,0xf3,0xa6,0x48,0xd9,0x30, -0x17,0xbf,0xa6,0xdd,0xe8,0xdb,0xc2,0xa9,0xa2,0x86,0xb7,0xc1, -0x0c,0x86,0x72,0xa2,0x33,0x93,0x1a,0xcb,0xa0,0x9e,0xa9,0xc1, -0x0c,0x5c,0x46,0xdd,0xfd,0x51,0xa3,0x29,0x38,0xa3,0xd9,0xd5, -0x63,0x9f,0xaf,0xd3,0xcd,0xb7,0xf7,0xb8,0x9a,0xfd,0xe3,0x39, -0x15,0x15,0x39,0x00,0xd7,0xa6,0xf6,0xd8,0xe6,0x67,0xd5,0xd5, -0x65,0xcd,0xb7,0xf5,0xa4,0xfa,0xc7,0x4b,0x8a,0x8a,0x0b,0x8b, -0x8b,0xd8,0x05,0xf1,0xe7,0xe0,0x6e,0xc6,0xa7,0x48,0x2f,0x8a, -0x86,0x6e,0xb9,0x9b,0x17,0x73,0x06,0xe1,0x38,0x4e,0xea,0x80, -0xa2,0x2b,0x39,0xe2,0x63,0x8e,0x1c,0x1a,0xb3,0x09,0xd3,0xff, -0xc8,0x21,0x2c,0xe5,0x5d,0x0d,0x89,0x30,0x6b,0x1b,0xec,0x3b, -0x10,0x49,0xe5,0x3b,0xe1,0x18,0x0b,0xd8,0xe3,0xbd,0xf7,0x38, -0x5e,0xf7,0x39,0x85,0xd9,0x0a,0x87,0x52,0x8b,0x55,0x92,0x44, -0xb3,0x8c,0xb9,0x6a,0x12,0x25,0xa7,0x88,0x52,0xc9,0xc2,0xb1, -0xf2,0xef,0x53,0xa6,0xcf,0xe8,0x28,0x2f,0x68,0x50,0x16,0xaa, -0xab,0xeb,0x12,0x72,0xa2,0x5a,0x0b,0xf6,0x66,0x3a,0x1c,0x99, -0xcb,0xe6,0x85,0x6d,0x5e,0xb2,0xf4,0xae,0xb0,0x79,0x73,0xc4, -0x45,0x76,0x63,0x45,0x88,0x67,0x45,0x50,0xbd,0xd9,0x51,0x28, -0x9e,0x83,0x2b,0xb3,0x9b,0x42,0xf0,0xfa,0x90,0xc6,0x1c,0xe1, -0xec,0x86,0x32,0x90,0x29,0x06,0xb4,0x9d,0x76,0xb3,0x11,0x25, -0xfc,0xa7,0xe7,0x84,0xd0,0x39,0x88,0x00,0x41,0x92,0xca,0x6d, -0x6c,0x40,0x5e,0x8e,0x6e,0x06,0x60,0xfb,0x7f,0xf7,0x43,0x84, -0x7a,0xe6,0x52,0x84,0x99,0xff,0x1e,0x26,0x6c,0x07,0x90,0xb3, -0x7d,0xc5,0xe4,0x22,0xf3,0xe2,0x15,0xc2,0xb6,0x52,0xec,0x3b, -0xe4,0x99,0x66,0x1b,0x07,0x29,0xb1,0x23,0xb7,0xd4,0x08,0x03, -0xf2,0x12,0xe1,0x38,0x0a,0x9f,0xce,0xc1,0x8d,0xeb,0xee,0xbd, -0x77,0x5d,0xdb,0x4a,0x7d,0x91,0xb2,0xad,0xb0,0x7e,0x46,0x28, -0xc6,0x74,0x9b,0x9d,0x67,0x28,0x6c,0x7a,0x7d,0x71,0x47,0x54, -0x91,0xd4,0x3a,0xa1,0x36,0xb4,0x7f,0xff,0xfe,0xfe,0x49,0x95, -0x49,0xae,0xa2,0xae,0xba,0x92,0xee,0x92,0xba,0xae,0xf2,0x6c, -0x8b,0x21,0x27,0x25,0x1a,0xe1,0xa1,0xcb,0x43,0xab,0xf0,0xef, -0xd8,0x1e,0xc2,0x3d,0x23,0xce,0x4e,0x52,0xda,0xc6,0x98,0x47, -0x47,0xe8,0xb6,0x7b,0x10,0xc5,0xd4,0xe5,0xa0,0x6b,0x26,0xa9, -0xa1,0x52,0xc4,0xff,0xc6,0x26,0x63,0xf0,0xe3,0xde,0xc8,0x56, -0x6f,0xa4,0xdb,0x1b,0xb1,0x0f,0x47,0x44,0xde,0x97,0x45,0xde, -0x97,0x85,0x08,0xf2,0x46,0xba,0x59,0x84,0x3f,0xb4,0x90,0x9f, -0x0b,0x13,0x09,0x33,0x37,0x1c,0x3b,0xc7,0x8e,0x9a,0x44,0x72, -0xa3,0xdb,0xe1,0xa6,0xe7,0x94,0x49,0xc0,0x9d,0x91,0x18,0xb9, -0x70,0x6c,0xc1,0xa2,0xbb,0x4d,0x5b,0x02,0x37,0x2b,0xc5,0x05, -0x39,0xd7,0x07,0x3e,0x18,0xfb,0x8c,0xe4,0x19,0x9d,0x38,0x7f, -0xc2,0x92,0x42,0x7c,0x4d,0xd5,0xbb,0x60,0x29,0x79,0xaa,0x3c, -0xaf,0x65,0x16,0x23,0xe1,0xec,0x07,0xa2,0x83,0x7e,0x4f,0x41, -0x6c,0x7d,0xe8,0xc8,0xb3,0x18,0x85,0x93,0xe2,0xc6,0xeb,0xf7, -0x23,0xd4,0x22,0x03,0x5c,0x50,0x04,0x44,0xfa,0xce,0x60,0x09, -0x12,0x46,0x56,0x02,0xd9,0xf6,0x32,0xbe,0x13,0xf9,0xe3,0x39, -0x1c,0xce,0x7c,0x7a,0x94,0x3c,0x1d,0xcc,0x1f,0x67,0xb6,0x8d, -0x9e,0xbd,0xca,0xeb,0x50,0xbd,0xb2,0x31,0x45,0x4b,0x48,0x47, -0x45,0x88,0x82,0x9d,0xdc,0x3d,0xc7,0x50,0x10,0x5b,0xe5,0x2e, -0xaa,0x89,0x0c,0xfe,0xe8,0x0d,0x2e,0x55,0x8b,0x17,0xce,0x8a, -0x9c,0x98,0x12,0x16,0x13,0x52,0x6e,0x28,0x49,0x49,0xab,0xcb, -0x8a,0xcf,0x75,0xa5,0x25,0xa5,0x55,0x56,0x25,0x16,0xe9,0xca, -0x15,0x8a,0xac,0x0e,0x85,0xb8,0x86,0x5f,0x9b,0x9f,0x39,0xb4, -0x8f,0xa8,0xb9,0x50,0xd0,0xde,0x16,0x94,0x81,0xff,0x4a,0x47, -0xb3,0x1d,0x28,0xd3,0x37,0x72,0x9f,0x2c,0x54,0xd2,0xe6,0x9d, -0xc5,0x94,0xd9,0x8a,0xf4,0x40,0x81,0xf4,0x00,0x2d,0x0c,0x4a, -0x15,0x23,0xba,0x10,0xa3,0x1e,0x60,0x1a,0xc0,0x62,0x80,0x9b, -0x01,0xe8,0xb9,0x1b,0x74,0x01,0xef,0x7e,0x00,0x7a,0xe2,0xc6, -0x7b,0x00,0xf4,0x08,0x8e,0xaf,0x11,0xdd,0xbb,0x89,0x91,0x74, -0x29,0x23,0x63,0x8c,0xf0,0x32,0x2f,0x9f,0x17,0x05,0x41,0x1f, -0x22,0xb4,0x04,0x80,0xfe,0x08,0x01,0xdd,0x39,0x20,0xea,0x2c, -0x0a,0x63,0xbf,0xeb,0x23,0x65,0x43,0xba,0x74,0x63,0x1e,0x62, -0xbf,0xd1,0x4a,0x4f,0x2e,0x0c,0x58,0xca,0x56,0xf4,0x23,0x44, -0x7f,0xfc,0x91,0xfe,0x38,0xe4,0x71,0x44,0x5d,0x0c,0xfe,0x67, -0x2e,0x2f,0x50,0xb7,0x85,0x9f,0x7d,0x41,0x42,0x19,0xbc,0x65, -0x5c,0x44,0x57,0xd3,0xc9,0xd8,0x0f,0x98,0xe9,0x00,0xec,0x00, -0x85,0x00,0x0d,0x00,0xdd,0x00,0x4b,0x00,0xd6,0x00,0x6c,0x05, -0xd8,0x01,0xd0,0x07,0x70,0x1c,0x60,0x00,0xc0,0x7b,0x32,0xb7, -0x94,0xcf,0x57,0xc6,0xf2,0x95,0xb1,0x65,0xc0,0x62,0xb6,0x37, -0xc0,0x2e,0xac,0x3e,0x90,0xb1,0xb1,0x04,0xa8,0x7a,0x04,0x90, -0x44,0x3c,0x80,0x0d,0xa0,0x00,0xa0,0x1e,0x60,0x1a,0x5d,0x0c, -0xb3,0x14,0x1a,0xbb,0x18,0x22,0x37,0x03,0x6c,0x01,0x78,0x0c, -0x00,0x1a,0x1b,0xc1,0x22,0xfb,0x01,0x8e,0x01,0xbc,0x07,0x70, -0x06,0xe0,0x6b,0x80,0x21,0x00,0x09,0x8f,0xb3,0x48,0xa1,0x5c, -0x3a,0xb8,0xcd,0x5b,0x61,0x3c,0x06,0x8d,0x03,0xde,0xa9,0x5f, -0x0d,0x88,0x87,0x64,0xc1,0x12,0x53,0x33,0x6d,0x41,0x27,0x81, -0x65,0x6c,0x91,0x1f,0x88,0x06,0x90,0x8e,0x74,0x66,0x57,0x25, -0xe3,0xc9,0xcb,0x2b,0x26,0x21,0x55,0xa9,0x12,0xa6,0x72,0xe5, -0x40,0x7f,0xca,0x7c,0x4c,0x17,0x95,0x3b,0xc3,0x31,0x0e,0xaf, -0x9d,0x67,0x9a,0xa0,0x9b,0xe8,0x98,0x33,0x2d,0x2e,0xb3,0xd2, -0x9a,0x5f,0x3a,0x33,0x21,0x2f,0xa6,0xdc,0x1e,0x34,0x77,0xda, -0xe2,0xee,0x35,0x13,0xca,0x73,0xcb,0x3c,0xef,0x4c,0xc8,0x75, -0x15,0x35,0x36,0x8a,0x8b,0xd2,0x9d,0x16,0x87,0x04,0x63,0x55, -0x7b,0x5d,0x52,0x41,0x9a,0x5a,0xd4,0x38,0x29,0x20,0x3b,0x23, -0xcd,0x98,0x2a,0x39,0x4f,0x54,0xed,0xf5,0xad,0xf3,0x82,0x1a, -0xb1,0xd2,0xe1,0x92,0x7d,0x17,0x58,0x84,0x6f,0x74,0x38,0xa4, -0x7f,0x91,0x64,0xf2,0x3e,0x9b,0x01,0x78,0x6b,0x02,0xa1,0x36, -0xe4,0x2a,0x6a,0x0a,0x8c,0x3c,0xa7,0x6e,0xcc,0xb6,0xdd,0x31, -0x1b,0x44,0x86,0x37,0x82,0x53,0x66,0xc3,0x02,0xb3,0x05,0xb2, -0x25,0x4d,0xe4,0x22,0x5d,0x2a,0xc5,0xe4,0xa4,0x40,0xc9,0x74, -0xfe,0x2f,0x5c,0x18,0xe8,0x94,0x0d,0xf0,0xc7,0x1a,0x28,0xa9, -0x22,0x55,0x1a,0xd9,0x18,0x16,0x80,0xb0,0xa1,0x96,0xcd,0x23, -0x29,0x71,0x5b,0x53,0x5f,0x5f,0xdf,0x86,0x23,0x5d,0xfb,0xc5, -0x7b,0x3a,0x8f,0x6c,0xe8,0xeb,0xbb,0xfb,0xee,0xbb,0x41,0x1e, -0xe2,0x12,0xcf,0x6f,0xf1,0x04,0xcf,0x6f,0x20,0xca,0x3c,0xa2, -0x4e,0xe0,0xa3,0x32,0xe0,0xa3,0x38,0x50,0x86,0x16,0xc0,0x77, -0x36,0x4e,0xe8,0x07,0x92,0xf0,0xee,0x73,0xb1,0x0b,0xeb,0x61, -0xec,0xc2,0xf0,0xaa,0x5d,0x60,0x7c,0xbb,0x77,0xef,0x0b,0x1d, -0x1d,0xe0,0xa8,0xed,0x73,0x81,0x89,0x3d,0xfa,0x8b,0x1a,0xa0, -0x1a,0xa4,0xec,0x58,0x1f,0xcc,0x9f,0x91,0xb5,0x83,0xb6,0x64, -0x29,0x9b,0x85,0x14,0xa4,0xde,0x63,0xde,0xc8,0x7b,0xde,0xc8, -0x34,0x6f,0xc4,0xc6,0x47,0xd8,0xa0,0x27,0x64,0x23,0xe2,0xb5, -0xcb,0x12,0x6f,0x16,0x85,0x2c,0xc2,0x4b,0xc9,0x00,0x5a,0x52, -0x3c,0xe8,0x24,0x1b,0x00,0x59,0xe6,0xdd,0x5a,0xec,0x3d,0x5c, -0xc8,0x7b,0x2c,0xb4,0x8d,0x51,0x57,0x1a,0xa4,0xf0,0x3f,0xd4, -0x91,0xc6,0x9f,0xb9,0x93,0xc6,0x74,0x91,0x5e,0x38,0xcc,0x1e, -0x5c,0x49,0x9f,0x05,0x18,0x27,0xec,0xbb,0xa0,0xed,0xd4,0x09, -0xeb,0xe6,0x6d,0xcc,0xca,0x86,0x8f,0x99,0x5f,0x49,0x57,0xcf, -0x3b,0x8d,0x32,0x36,0x70,0x38,0xf2,0x9c,0x2f,0x0b,0xe6,0x9c, -0x46,0xe5,0x04,0xec,0xdd,0x89,0x37,0xf2,0x0e,0x4f,0xc9,0x3f, -0x7e,0x3c,0x3f,0xba,0x75,0xa6,0x5c,0x97,0x12,0x1d,0xed,0x48, -0x8e,0xd5,0xd8,0x8b,0xcd,0xce,0xbc,0x45,0x7b,0xd4,0x19,0x69, -0x69,0x19,0xea,0xdc,0x45,0x7b,0xe2,0x5d,0x05,0x05,0xae,0xf8, -0xc6,0x39,0x64,0xeb,0x9c,0x39,0x53,0x27,0xea,0xd3,0x0d,0x0a, -0x51,0x80,0x48,0x66,0x70,0x27,0x27,0x97,0x39,0xe2,0xf0,0x8a, -0xf7,0xdf,0x4f,0x4d,0xd5,0xa6,0xa6,0x7a,0x44,0x9f,0x7e,0x6a, -0x4f,0x37,0xa6,0xdb,0xbd,0xfb,0x94,0xf6,0x91,0x4a,0xe8,0x43, -0x33,0x34,0xca,0x45,0xd8,0x4c,0x92,0x1b,0x65,0xf1,0xd3,0xb0, -0x82,0x73,0xeb,0x18,0x40,0x37,0x51,0x12,0x8c,0x66,0x53,0x59, -0x54,0x12,0x22,0xba,0xb9,0x95,0x0e,0x7d,0x20,0xba,0xfa,0xab, -0x1e,0x60,0x1a,0xc0,0x62,0x80,0x9b,0x01,0xb6,0x00,0x3c,0x06, -0xb0,0x1f,0xe0,0x18,0x00,0xfd,0xb9,0xec,0x33,0x00,0x5f,0xd3, -0x55,0x56,0x54,0xb4,0xf1,0x5c,0xcd,0x4b,0x29,0x4e,0x28,0x44, -0x7c,0x8a,0x09,0x3e,0xda,0xfd,0x62,0xda,0x01,0x54,0xc4,0x40, -0x8f,0x89,0x41,0x4e,0x89,0x79,0xe9,0xd1,0x0d,0x91,0x25,0x00, -0x6b,0x10,0xdd,0x06,0x29,0xe6,0xa5,0x07,0x8d,0xec,0x00,0xe8, -0x43,0x74,0x37,0x83,0x18,0xa4,0x16,0xfd,0x3d,0x01,0x31,0x50, -0x94,0xd8,0x2b,0x0d,0xc5,0x7c,0x39,0x6c,0x58,0xa2,0x88,0x66, -0x11,0x01,0x59,0x44,0xf0,0xeb,0x02,0x06,0x21,0x72,0x81,0xbf, -0xa1,0xaf,0x46,0xf0,0x13,0xd9,0x36,0x1a,0xe1,0x49,0x4c,0x88, -0x0c,0xf1,0x11,0x31,0xb4,0x8d,0x4a,0xac,0x08,0x7e,0x2f,0x46, -0x97,0x37,0x75,0x07,0x44,0xfa,0xbc,0x79,0x22,0xf6,0x6b,0x91, -0xc2,0x4d,0x21,0x44,0x1a,0xd8,0x0d,0x7f,0x1a,0x62,0xa8,0x70, -0x2a,0x62,0xd8,0x29,0x26,0xfa,0xf8,0x13,0x34,0xe8,0x8f,0xd2, -0x79,0xcf,0xd8,0xa0,0xbf,0xc3,0x32,0x04,0x20,0x88,0xbe,0x30, -0x5a,0xa3,0x08,0xdf,0xef,0xb6,0x78,0x7f,0xb2,0x85,0x9e,0xb2, -0x31,0x0d,0x60,0x31,0xff,0x66,0x10,0x8b,0xd0,0x33,0x38,0xb6, -0x00,0xd0,0x6c,0x45,0x9d,0x7c,0x39,0x72,0x61,0xbe,0x58,0x21, -0xac,0xe7,0x88,0x1a,0xf0,0x9e,0x7a,0x8e,0xd8,0x68,0x87,0xf7, -0xc7,0x19,0xc4,0xec,0x17,0x68,0xf8,0xa5,0x8b,0x49,0x3e,0xf2, -0x4f,0xf6,0x9d,0xc5,0x69,0x61,0x31,0x6a,0x90,0x59,0xf9,0x83, -0x00,0x21,0x96,0xc1,0x62,0xa1,0x6c,0x7b,0x1a,0x3b,0xae,0x17, -0xe4,0xa9,0xc4,0xc8,0xb6,0xed,0xb8,0xe8,0x21,0xd2,0xcc,0x29, -0x71,0x48,0x04,0x49,0xcb,0x81,0x43,0xac,0xa2,0xbf,0x78,0x69, -0x94,0x73,0x51,0x2a,0x79,0xa2,0x91,0x9a,0xa6,0x72,0x30,0x4d, -0x71,0x6e,0x78,0x6c,0x48,0x70,0x69,0x68,0x69,0xd5,0xa2,0x59, -0x41,0xa5,0x41,0x1c,0x28,0xf0,0xa0,0xd2,0xe0,0x94,0x3c,0x65, -0x49,0xa8,0x5e,0xe5,0xb2,0xe7,0xcb,0x4a,0xe2,0xba,0x26,0x06, -0x95,0x2a,0xb2,0xa2,0xb5,0xd9,0x51,0xf2,0x57,0xe2,0x75,0x19, -0xee,0x1c,0x8c,0x39,0xae,0x6d,0x91,0x71,0xc7,0x8d,0x0f,0xee, -0x53,0xb4,0x36,0x10,0xd2,0xdc,0x23,0x2b,0x4d,0x4b,0x8e,0xb3, -0x45,0x5c,0xfe,0x21,0xa4,0x28,0xcd,0x9a,0xd7,0x1c,0xdc,0x44, -0x5e,0xbb,0x7c,0x36,0x04,0x13,0xa3,0xd8,0xf3,0x7c,0xf6,0x14, -0x0d,0xfe,0x5a,0xb9,0x70,0xa2,0xbf,0x4d,0x63,0x47,0xcf,0x50, -0xb5,0x91,0x8e,0x32,0x7e,0xd9,0x7e,0x64,0xde,0x94,0xd3,0x30, -0xa3,0x33,0x94,0x6e,0xbd,0xe1,0x67,0x51,0x42,0xd9,0x12,0x89, -0x78,0x48,0xc2,0xfc,0xaf,0xe8,0x84,0x7a,0x27,0x9b,0x42,0x99, -0x8c,0x90,0x78,0xcd,0x57,0x09,0xbb,0x0d,0x60,0x62,0x99,0x9f, -0x56,0xa0,0x31,0x2a,0x26,0x42,0x85,0x61,0x27,0x6a,0xf3,0x27, -0x09,0xa3,0xd3,0x96,0x01,0x5e,0x7f,0xdb,0x98,0x7d,0x94,0x8c, -0xa9,0x81,0xc4,0xac,0x23,0x6a,0x23,0x25,0x8e,0x6b,0x22,0x01, -0x9a,0xf9,0xdd,0x51,0x4a,0x3d,0x09,0xf3,0x94,0xa5,0x68,0xbb, -0x5a,0xc5,0x11,0x92,0x09,0x16,0x6e,0x84,0xa9,0x84,0xf1,0x37, -0x67,0x25,0xe1,0xe2,0x93,0xaf,0x11,0x6b,0x1c,0xb3,0x97,0x2c, -0x25,0x2a,0x4b,0x54,0x49,0xa4,0xd2,0xcf,0x5e,0x0a,0x8c,0x08, -0x2c,0x89,0xb2,0xa8,0x4a,0x5c,0xcd,0x0a,0x31,0x93,0x11,0xc0, -0xab,0xe4,0x19,0x61,0x4e,0xcf,0x88,0x4e,0xf6,0xf3,0x3f,0xad, -0xea,0xfb,0xf5,0x03,0xaa,0x65,0x8c,0xff,0x3f,0x67,0xf7,0x82, -0x7c,0x33,0x78,0x41,0xfc,0x0c,0x5e,0x90,0x80,0x3c,0xaa,0xd9, -0xc4,0x0c,0x71,0x78,0x80,0xb7,0x7b,0x83,0xd9,0x9d,0xff,0x44, -0x9e,0xf1,0x8a,0x13,0x79,0x3c,0xaa,0xa9,0x26,0x52,0xb3,0xb1, -0x07,0x3a,0xb1,0x37,0xac,0x00,0x9d,0x0e,0x95,0x77,0x32,0x87, -0x02,0x3d,0xa2,0x43,0x26,0xa6,0x47,0x3f,0xcd,0x3f,0xdc,0xd8, -0x00,0xff,0xa6,0xdd,0x79,0x94,0x85,0x33,0xf7,0x3c,0xc0,0xe1, -0x26,0x6e,0xc7,0x3f,0xfe,0x71,0x1e,0xf4,0xe0,0x79,0x21,0xc0, -0x29,0x38,0xcc,0xf3,0xaf,0x83,0x38,0x9a,0x9d,0xcf,0x03,0xfe, -0xd2,0xaf,0x01,0x5f,0x2e,0x60,0xff,0x47,0xe9,0xc2,0x96,0x22, -0xe1,0x07,0x09,0x1c,0x50,0x6e,0x0e,0x93,0xa6,0x6a,0x26,0x4d, -0xc7,0x5d,0xbe,0x38,0xbc,0x38,0xf1,0x0a,0x47,0x2d,0x15,0x08, -0x7b,0xf0,0x0a,0x04,0x87,0xca,0x69,0x3b,0x4c,0x25,0x25,0x3b, -0xa0,0xaf,0x50,0x18,0xe9,0xb1,0xfb,0x7c,0x02,0xb5,0xef,0x08, -0x66,0x25,0x84,0x76,0x66,0x1a,0x99,0x01,0xd3,0xbe,0xa3,0xbe, -0x85,0xf5,0x33,0xc2,0xc2,0xb7,0x34,0x22,0xac,0x7c,0x63,0x04, -0x96,0xe8,0x5b,0xf0,0x06,0x1a,0x8a,0xfe,0x36,0x82,0x0d,0xb0, -0x22,0xf7,0x1d,0xde,0xd3,0xf9,0x6c,0x47,0xbb,0xd3,0x3d,0x5d, -0x9e,0x62,0x4a,0x48,0x12,0x85,0x2a,0x65,0xf2,0x94,0xf8,0x82, -0x9c,0x58,0x87,0x4a,0xa7,0x49,0x88,0x8e,0x55,0x69,0x23,0x54, -0xda,0x48,0xc9,0xc4,0x49,0xd9,0x0d,0xb1,0x3d,0x93,0x5b,0xe8, -0xd9,0x3e,0x2d,0xa4,0x7f,0x7a,0x47,0x59,0xbb,0xec,0x1d,0x73, -0xa2,0x5e,0x17,0x22,0x93,0xa9,0xe0,0x8b,0x3c,0x43,0x46,0x71, -0xa8,0x2c,0x3b,0x4a,0x1d,0xad,0x4a,0x80,0x2f,0x0c,0xda,0x78, -0x45,0x6e,0xa5,0x6d,0xc2,0x59,0xcf,0x51,0xbc,0xc1,0x9e,0x96, -0x96,0x66,0x3f,0xcf,0xd4,0xb9,0x09,0x08,0xf1,0x1e,0x42,0x47, -0x59,0x4d,0x20,0x8c,0xd2,0xd1,0xbf,0xa8,0x81,0x97,0x81,0x1c, -0xbe,0xb5,0x82,0x32,0x41,0xd3,0xea,0x85,0x30,0xf9,0x3f,0xa0, -0x46,0x61,0x18,0xeb,0x2a,0xe4,0x19,0x4f,0x13,0xe2,0xff,0x97, -0xe4,0x19,0x25,0x90,0x28,0xe5,0x7a,0xea,0x64,0xc4,0x08,0x64, -0x6a,0x1d,0x18,0x5e,0xf8,0x1a,0x27,0xb8,0x6f,0x09,0x03,0xfc, -0x5a,0x36,0x8b,0x70,0x9c,0x8c,0x5d,0x98,0x87,0xa6,0x02,0x80, -0x01,0x5b,0xeb,0xa3,0x1a,0x31,0x17,0x8d,0xdd,0x46,0x95,0xdc, -0x61,0x92,0xd3,0xc0,0xe4,0x30,0x73,0x46,0x8e,0xb8,0x8f,0x15, -0x4c,0xc9,0xba,0x65,0x69,0xd4,0x94,0x9a,0xac,0x26,0xe7,0xb3, -0xf9,0xdd,0xb9,0x07,0xdc,0xcd,0xb9,0xb5,0x9d,0xd1,0x2b,0xd7, -0xe7,0x4d,0xf1,0x9c,0x0e,0xda,0x1c,0x98,0x43,0xf0,0xb6,0xdc, -0xa0,0x6d,0x41,0x45,0x9e,0x73,0x8f,0x86,0x15,0x92,0xe2,0xaf, -0xbe,0xfa,0x7b,0xc9,0x34,0x4a,0xd6,0x94,0xb0,0xa7,0x95,0xfc, -0x1d,0xcf,0x4f,0x4c,0x04,0x3f,0x19,0x8b,0x20,0xb8,0xf4,0xdb, -0x74,0x2c,0xf1,0xfc,0xe0,0x3b,0x83,0xea,0x29,0xc2,0x9b,0x3f, -0x2b,0xe9,0x20,0x8f,0xc1,0x6f,0x90,0x67,0x78,0xbf,0xed,0x98, -0xd3,0xfa,0xc6,0xcc,0x22,0xf8,0xff,0x86,0xc3,0x98,0x1f,0x48, -0x91,0xfb,0xac,0x31,0x7e,0x61,0xa2,0x77,0x92,0x81,0xce,0x59, -0xd2,0xdd,0xfc,0xc2,0xa1,0xcb,0xd4,0x78,0x22,0x32,0xef,0x79, -0xf5,0xec,0x40,0x4f,0x2c,0x6e,0xb8,0x4f,0x91,0xa8,0x8d,0x6c, -0xd0,0xa4,0x97,0x25,0x7d,0xb6,0xfb,0xdc,0xa4,0x39,0x0d,0xb2, -0xb8,0x44,0xe5,0xfd,0x44,0xe3,0x49,0x09,0x89,0xb1,0xe8,0x89, -0xc8,0x13,0x9a,0x51,0x9d,0x11,0x4d,0xfa,0x67,0xcc,0xf2,0xec, -0xc1,0x3d,0x7a,0x4b,0x4c,0xc8,0xe5,0x4d,0xbc,0x4d,0x54,0x01, -0x6d,0x8b,0x26,0x67,0xd9,0x9e,0x10,0x2b,0xea,0xa7,0x82,0x2f, -0x55,0xb0,0xf1,0xd4,0x52,0xfe,0x84,0x9f,0xff,0x47,0xdb,0x9b, -0x00,0xb6,0x55,0x5d,0xf9,0xc3,0xef,0x3e,0x49,0x96,0x77,0x5b, -0x96,0x65,0xd9,0xb2,0x25,0x4b,0x96,0x2c,0x79,0x97,0x6c,0x59, -0x92,0xf7,0xdd,0x72,0xec,0xc4,0x8e,0xe2,0x78,0x09,0x49,0x9c, -0x3d,0x84,0x00,0x21,0x01,0xc2,0x0e,0x81,0x06,0x1a,0x20,0x81, -0x12,0x68,0x4b,0x5b,0x68,0x0b,0xed,0x40,0xe9,0x36,0x85,0xe9, -0x94,0x4e,0x1b,0x4a,0x5b,0xda,0x0e,0xd3,0x99,0x76,0xc0,0x50, -0x68,0x29,0x4d,0x4b,0xa6,0x65,0x08,0x43,0x4b,0xa1,0x34,0xa5, -0xcb,0x60,0xf9,0xbb,0xe7,0xdc,0xfb,0xae,0xde,0xd3,0xe2,0x84, -0xe9,0xf7,0x27,0x3c,0x5b,0x3e,0x7e,0x7e,0xcb,0xbd,0xe7,0xde, -0xb3,0xfd,0xce,0x39,0x95,0x9a,0xfc,0x6d,0xfe,0x96,0x09,0x6f, -0x72,0x3d,0x10,0xea,0x99,0xb7,0xaf,0x81,0x99,0xe6,0x60,0xed, -0x41,0x7f,0x5c,0x50,0x5b,0x5f,0xa1,0xc7,0x5b,0xe0,0x21,0x58, -0x50,0x9c,0xca,0x26,0xfa,0xe7,0x3c,0xef,0xc4,0x9f,0x70,0x84, -0x14,0x63,0x25,0xcb,0x1b,0xc0,0x8b,0x54,0x0e,0xf1,0xb5,0x4a, -0x0c,0x30,0x00,0x08,0x96,0x39,0x10,0x6b,0x78,0xa5,0x4b,0x53, -0x31,0xdb,0xf3,0x8a,0xb9,0x6f,0x55,0x8f,0x48,0x6a,0xa5,0xee, -0xa5,0xe2,0x17,0x09,0x26,0xe2,0xd5,0xd0,0x29,0x2a,0xd9,0x6f, -0x4a,0x6e,0xd3,0x5b,0xa2,0x6d,0xeb,0xb6,0x6e,0x5d,0xd7,0x16, -0xb5,0xe8,0x3f,0xfa,0xd1,0x35,0x23,0x23,0x6b,0xae,0x08,0x0e, -0x0d,0x05,0x3b,0x86,0x87,0x3f,0x42,0xbe,0xf4,0x9c,0xb7,0x6e, -0xff,0x05,0x17,0xec,0xaf,0xf7,0xde,0xde,0xdb,0xd3,0xd3,0x1b, -0x77,0x45,0x82,0x0d,0x07,0x1b,0x82,0x03,0xa1,0x91,0xd0,0xc0, -0xf7,0x87,0x87,0xd1,0xa6,0xc9,0xe5,0x75,0x75,0xcd,0xd2,0x31, -0x10,0x92,0xda,0xba,0x8d,0x29,0x7e,0xa2,0x4c,0x40,0x6e,0x53, -0x1a,0xd6,0x60,0x65,0x0f,0x99,0xad,0xa9,0x63,0xde,0x52,0x9d, -0x92,0xad,0xae,0xc3,0xd5,0xa7,0x67,0xc1,0xcb,0x45,0xa6,0x62, -0xe9,0xb8,0xea,0x03,0xf0,0xd5,0xa0,0x1b,0xd3,0x3b,0x82,0x26, -0x6e,0xdf,0x40,0xfd,0xb1,0x7f,0x9a,0x9e,0x9d,0x9d,0x8e,0x9d, -0x5a,0x78,0xed,0xa7,0x8b,0x6f,0xef,0x3a,0x3d,0x4d,0xc6,0x46, -0x49,0x4b,0xfc,0x79,0x38,0x46,0xe3,0xdf,0x24,0x63,0x90,0x8f, -0x40,0xdf,0xa5,0x03,0xed,0x33,0xac,0xcb,0xa5,0xb5,0xcf,0x52, -0x2a,0x42,0xa9,0xeb,0x72,0x15,0x14,0x2b,0x75,0x61,0x8a,0xb9, -0x89,0x65,0x0c,0x45,0xf0,0xc0,0x8a,0x97,0x96,0x88,0xc5,0x48, -0x0f,0xb2,0x71,0xe6,0x83,0xf4,0xbf,0x5f,0xc9,0xc5,0xbf,0x3a, -0x72,0xe4,0xc8,0xcf,0x7f,0xfe,0xd8,0xc0,0xe8,0xc0,0x26,0x7a, -0xfc,0x62,0x62,0xe2,0xab,0x83,0xa3,0x83,0x9b,0x06,0x47,0x19, -0xae,0xd3,0x41,0x9f,0x63,0x87,0x0c,0x61,0x2a,0x0f,0x7d,0xa6, -0x16,0xd2,0x06,0x3e,0x2f,0x25,0xa6,0x61,0xe7,0xf2,0xce,0xce, -0x55,0x07,0xbb,0x66,0xdf,0x5b,0x71,0x80,0x73,0x79,0x8c,0x03, -0xfc,0x8c,0x83,0x50,0x8b,0x2f,0x9b,0x6a,0xb0,0xd9,0x54,0x87, -0xce,0xa6,0x3a,0x74,0x36,0x28,0xd7,0xa0,0xf5,0xf2,0x5a,0xb3, -0x8b,0xac,0xfa,0xac,0x41,0xfc,0x5a,0xbe,0x0c,0x54,0x1b,0x82, -0x86,0x26,0x55,0x70,0x72,0xe8,0x26,0xa8,0xa7,0xdb,0xa3,0x1e, -0x4d,0xb0,0x7e,0xe4,0xec,0x41,0xd0,0xd4,0xf5,0xe8,0xb6,0x02, -0xd4,0x2d,0x9d,0x25,0x76,0x1e,0x68,0x4b,0xa0,0x62,0xeb,0xe8, -0x79,0x3a,0xd4,0x53,0xb3,0xb9,0xa4,0x2e,0xe4,0x4a,0x10,0xe8, -0xa1,0x26,0xce,0xc5,0xf0,0x56,0x56,0x3e,0xa1,0xcd,0x7c,0x9b, -0x84,0xcf,0x2d,0x60,0xbf,0xbd,0x45,0x6d,0x96,0x65,0x7a,0x50, -0x65,0x1c,0xde,0xa0,0x85,0xbe,0x41,0x0b,0x7d,0xc4,0x16,0xfa, -0x88,0x2d,0xb8,0xb6,0x1c,0xac,0x82,0x3c,0x32,0x00,0x63,0xfe, -0xb6,0x32,0xa5,0x95,0x4f,0x96,0x11,0xd5,0x25,0xba,0x55,0x04, -0xa1,0xff,0x3a,0xa0,0x0e,0xac,0x6d,0xe1,0x88,0xdb,0xf2,0xd4, -0x7a,0x10,0xf3,0xa7,0x57,0xcd,0x9b,0x37,0xad,0x25,0xf4,0xbf, -0xb5,0x9b,0x4a,0xe6,0xc7,0x3f,0xf2,0xd7,0xbc,0x76,0xef,0x47, -0x08,0x89,0x2f,0x7f,0xc4,0x1b,0xce,0xfb,0x5f,0xb2,0x86,0x0a, -0xfd,0xdb,0x56,0x0d,0x0c,0xe7,0x57,0xe4,0xe7,0x97,0xe7,0x0d, -0x0f,0x8e,0x93,0x7d,0x8e,0xda,0xd7,0xce,0x3f,0xff,0x70,0xad, -0x73,0x54,0xd8,0x55,0x9b,0xa9,0x5d,0xe5,0xa0,0xc2,0x36,0x20, -0x3b,0xc0,0x8d,0xcd,0x74,0x4d,0xe6,0xc6,0x86,0xed,0xdd,0xc6, -0xf6,0x90,0x1b,0xc0,0x6b,0x5c,0x0e,0xd1,0x16,0xb4,0xad,0x6c, -0x74,0x7c,0x00,0xab,0x6e,0xa3,0xe3,0x63,0xa3,0x7a,0xa4,0x8d, -0x2a,0xfa,0x36,0xaa,0xdf,0xdb,0xa8,0x7e,0x6f,0xa3,0xfa,0xbd, -0x8d,0xea,0xf7,0x36,0x6a,0x36,0xd8,0xe8,0x6e,0x62,0xa3,0xbb, -0x89,0x8d,0xee,0x26,0x36,0x3a,0x14,0x36,0x3a,0x14,0x36,0xc5, -0xb6,0xb2,0xa1,0xcd,0x93,0xc9,0xc3,0x54,0x94,0xd1,0xc3,0xb4, -0x8d,0x39,0x91,0xde,0x87,0x97,0xc9,0xc6,0x65,0x16,0x61,0xb6, -0x95,0x91,0xde,0xc7,0xa8,0xd8,0x56,0x46,0x7a,0xba,0x51,0xb1, -0xad,0x8c,0x8a,0x6d,0x65,0x54,0x6c,0x2b,0xa3,0x62,0x5b,0x19, -0x15,0xdb,0xca,0x48,0xdf,0xcd,0xc8,0x6c,0xab,0xcd,0x0a,0xf5, -0x41,0xfa,0xe1,0x31,0xe5,0x9a,0x03,0xf4,0x43,0x4c,0xf9,0x01, -0xae,0x59,0x8c,0x3f,0x30,0xbe,0xc9,0xe1,0xfc,0x93,0xcb,0x6c, -0xab,0x5c,0x3a,0x48,0xb9,0x12,0xb4,0x09,0x7f,0x96,0x1e,0xaf, -0xd0,0xe3,0x2d,0x7a,0x2c,0xd3,0x83,0xdb,0x56,0xb9,0x8a,0x6d, -0x95,0x8b,0xd5,0x84,0xfc,0xf4,0xe8,0xa7,0x07,0xe0,0xc4,0xb6, -0xd2,0x63,0x3f,0x3b,0x33,0x07,0x3f,0xdc,0x48,0x8f,0xbb,0xe8, -0x01,0x97,0xd5,0x2f,0x30,0x31,0x9e,0xbf,0xc8,0xba,0x6c,0xb2, -0xbc,0x90,0x26,0xdc,0x93,0xcd,0xf4,0x79,0x9a,0xb8,0x9b,0x9b, -0x69,0x6b,0x35,0xc2,0x55,0xef,0x11,0x36,0x14,0xb3,0xb0,0xec, -0xdc,0xc2,0x0a,0xb4,0x5a,0x23,0x5c,0xe5,0x02,0x7b,0xa9,0x8c, -0x99,0x4b,0x41,0x25,0x44,0x6c,0x44,0x43,0x09,0x14,0x31,0xab, -0x91,0xf7,0xf7,0x7a,0xc5,0x34,0xbf,0xf5,0xa3,0x47,0xf4,0x85, -0x85,0x83,0xc5,0x07,0x83,0x23,0xc5,0x91,0x86,0xe6,0x3f,0xb4, -0xc7,0xb6,0x34,0x66,0x17,0xe6,0x16,0xdd,0x11,0x6e,0xdf,0x92, -0xb5,0xb0,0xfb,0x3f,0x3c,0x79,0x45,0xd9,0xeb,0x37,0x4d,0x6f, -0x71,0x7c,0xe1,0xce,0xaf,0x7c,0x85,0xac,0xdb,0x58,0x7d,0xa0, -0xbe,0xbe,0xa3,0x30,0x1e,0xdf,0x39,0xb5,0xbb,0xbb,0x9c,0x90, -0x69,0x72,0xd5,0xc4,0xf9,0x15,0x72,0xd9,0xc1,0x0b,0xae,0x7b, -0x8e,0x90,0x8d,0x53,0x8d,0xb0,0x7f,0xb7,0x50,0xbd,0x35,0x4a, -0x6d,0xa3,0x90,0xf4,0x6b,0x90,0x79,0x61,0x84,0x63,0x4b,0x5a, -0x05,0x3d,0x7d,0xa9,0x36,0xba,0x17,0x72,0x65,0x14,0x63,0x59, -0x92,0x52,0x23,0x72,0x91,0x7e,0x38,0xa5,0xf4,0x1b,0x55,0x62, -0x59,0x32,0xab,0x07,0x56,0xa0,0xd4,0x1d,0xe1,0x1f,0x8e,0xf3, -0xca,0x91,0xb9,0x8a,0xc9,0xa4,0xc0,0xf5,0x08,0xef,0x0c,0x51, -0x88,0x9f,0x2a,0x45,0xb1,0x51,0x2b,0xfd,0x5e,0x28,0x70,0xca, -0x35,0xdc,0xd2,0xad,0x5d,0x64,0xa1,0x79,0x2f,0x57,0xb6,0xea, -0xb9,0xab,0xd9,0x8f,0x7f,0xd3,0x46,0xaf,0xe7,0xd7,0x14,0x31, -0x01,0xc8,0x8f,0x2b,0xe4,0x0a,0xab,0x7b,0x99,0x42,0xa0,0x11, -0x55,0x2a,0x97,0xc5,0x85,0x99,0x1d,0x0a,0xf4,0xad,0x27,0x30, -0x19,0x76,0x64,0x1b,0x26,0x6e,0xf8,0x5c,0xfc,0x97,0xe4,0xaa, -0x9c,0xc1,0x2e,0x5f,0xd4,0x11,0x6a,0x38,0x3f,0xd2,0x34,0x1e, -0xb2,0xe7,0x4c,0x1d,0xfa,0x1c,0xf1,0xc4,0x6f,0xcb,0xce,0x1e, -0xeb,0x69,0x58,0x5d,0x1f,0xac,0xbb,0x24,0x9f,0xea,0x1e,0x0d, -0x65,0xee,0x22,0xba,0x57,0x94,0xd9,0xc3,0x21,0x87,0x3b,0xd4, -0x52,0x57,0xde,0x3c,0x58,0x57,0x53,0x4e,0x29,0x85,0xce,0xd2, -0x9e,0x1e,0x77,0x63,0x24,0xd0,0xca,0x6b,0xc8,0x32,0x3f,0x8c, -0x47,0xf2,0xcb,0x7a,0xc0,0xd8,0x2b,0x59,0x66,0xa5,0x2c,0x53, -0x42,0xd9,0x25,0x9c,0x6c,0x97,0x70,0x52,0x96,0x75,0xd2,0x77, -0x72,0x52,0x96,0x75,0x52,0x96,0x75,0x52,0x96,0x75,0x52,0x4e, -0x75,0x52,0x4e,0x75,0x52,0x4e,0x75,0x52,0x4e,0x75,0xd2,0x05, -0xe0,0xa4,0x0b,0xc0,0x49,0x17,0x80,0x93,0x2e,0x00,0x27,0x5d, -0x00,0x4e,0xba,0x00,0x9c,0xca,0x2e,0xe1,0x3c,0xcb,0x2e,0x71, -0x8e,0x9b,0xc0,0x59,0xf7,0x13,0xe6,0x0a,0x73,0x2b,0xbb,0x84, -0x6a,0x11,0xeb,0x70,0x69,0xf3,0xec,0x82,0x74,0xdb,0xc0,0xb2, -0xb2,0x4b,0x6c,0x4d,0xda,0x37,0x92,0x36,0x9b,0xc4,0x5e,0x90, -0x7e,0xe7,0xf9,0x3b,0x76,0x88,0x74,0x1b,0xc0,0x59,0xb7,0x8d, -0xc4,0x0e,0x61,0xc6,0xb5,0xee,0x2e,0x56,0xda,0x1b,0x39,0x79, -0x1b,0x4c,0xb6,0x3b,0xb0,0x9d,0x20,0x47,0xf8,0x5a,0x60,0x9f, -0x68,0x48,0xdd,0x13,0x14,0x1f,0x4a,0x59,0x9b,0x00,0x50,0x24, -0x36,0x86,0x42,0xd9,0xf2,0x8a,0x69,0xc3,0x96,0x0f,0xdf,0x92, -0x0d,0x1b,0x42,0xe7,0x9a,0xf2,0x91,0xc2,0x36,0xdf,0x96,0xec, -0x5c,0xc3,0xe8,0x46,0xcb,0x70,0x71,0x73,0xcf,0x64,0x6b,0x76, -0x51,0x5e,0xd1,0x1d,0xa1,0xd0,0x96,0xbc,0xe6,0x68,0x6b,0x05, -0xdd,0x13,0xbe,0x7c,0xeb,0x97,0xbe,0x46,0xd6,0x6d,0x32,0x45, -0x43,0xf5,0x9e,0x48,0xd1,0xd2,0xab,0x64,0xb4,0xb3,0xa1,0xa6, -0xab,0x91,0xed,0x0b,0xe3,0x17,0xd8,0xe4,0x72,0x67,0xe7,0x34, -0xe3,0x4b,0x45,0x0f,0x02,0x2c,0xd9,0xda,0xb4,0x58,0xb2,0xf4, -0x56,0xac,0x3a,0xb7,0x9c,0x14,0xb3,0xfa,0x64,0x90,0xee,0xad, -0xd4,0x57,0xd4,0x2f,0x72,0xd4,0x21,0xaf,0x5b,0x5a,0x47,0x15, -0x21,0xac,0x5c,0x7a,0x30,0x1a,0x7d,0x30,0xde,0x44,0x5e,0x88, -0xb2,0xda,0x9d,0x21,0xee,0x27,0xaf,0x96,0x9e,0x4c,0x60,0x1c, -0xcf,0xb9,0x6e,0x52,0x21,0x1b,0xde,0x93,0x18,0x48,0xe3,0x45, -0x86,0xa1,0x0e,0x31,0x8a,0x22,0xfc,0xc0,0xca,0xa0,0xe4,0xd0, -0x37,0xc9,0x41,0x3d,0x85,0x81,0xd3,0x74,0x27,0xd5,0x51,0xb9, -0x6a,0x45,0xd9,0x7c,0x8c,0x7d,0x30,0x60,0x08,0x6f,0x91,0x1e, -0xf0,0x17,0xcc,0x22,0x29,0x2c,0x4e,0xb8,0x20,0xca,0xb9,0xdb, -0xbd,0x92,0x63,0x0b,0x1d,0x88,0xe9,0xc2,0x1e,0x36,0x80,0xc3, -0x02,0x75,0x03,0x35,0x41,0x87,0x8e,0xb9,0x6c,0xdc,0x66,0x72, -0xf4,0x17,0xd7,0xfe,0x2a,0x38,0x14,0xff,0x47,0xb2,0x5e,0x1e, -0x08,0xfe,0x4a,0xce,0xfa,0x5c,0x56,0xa9,0xc5,0xa4,0xdb,0xb9, -0x33,0xe7,0xfc,0x0d,0xaf,0x90,0x86,0x68,0x20,0x10,0x6d,0x09, -0x44,0xa3,0x7a,0x92,0x65,0x76,0xdb,0xa3,0x53,0x1b,0xe2,0x3f, -0x55,0x6a,0x6d,0xb6,0x62,0x2d,0xaf,0xb5,0x20,0x79,0x44,0x2e, -0x70,0xfa,0x32,0xae,0x09,0x68,0x06,0x4b,0xb3,0x67,0x30,0xc3, -0x12,0x5e,0xad,0x90,0x7d,0xba,0x81,0xa3,0x7f,0x23,0x8a,0xca, -0x1a,0xe4,0xea,0xaa,0xd1,0x02,0x0f,0x1f,0x44,0x2f,0xf5,0x25, -0xdb,0xe9,0x7f,0x33,0x2f,0xd1,0xff,0x2e,0x5e,0xbf,0x65,0xda, -0x39,0xb0,0xb5,0xff,0x5f,0xff,0xe2,0x1f,0xf5,0x6f,0xa2,0xc7, -0x2f,0x1f,0xbf,0x60,0xf4,0x82,0x4d,0xf4,0xf8,0xd9,0x0d,0x17, -0x0d,0xec,0x5f,0xef,0x67,0x78,0x44,0xd0,0x61,0xc7,0x64,0xb8, -0x8b,0x53,0xba,0x1d,0x32,0xd1,0x94,0xd8,0x79,0x09,0x0e,0x56, -0xc6,0xa8,0x87,0x5a,0xab,0xd6,0x9f,0x54,0x47,0x45,0x1f,0xe4, -0xa1,0x4f,0x89,0x7b,0xec,0x0d,0xa8,0x8b,0x66,0xa3,0x05,0x9e, -0xc3,0xb4,0x5a,0x3e,0x1f,0x06,0xee,0xfc,0x54,0xe6,0x25,0x8f, -0x5b,0x94,0xf4,0x1d,0x13,0xbe,0x1f,0x51,0x68,0xda,0xe2,0xb2, -0xd4,0x8a,0x4a,0x78,0xdf,0x9b,0x01,0x45,0x90,0xd7,0x9b,0x26, -0xe6,0xf8,0x9b,0xac,0x3e,0xf1,0x2d,0xb7,0xdc,0x12,0xdd,0x1e, -0x25,0xe3,0x17,0x6f,0xde,0x7c,0xd1,0xf6,0xe8,0x9b,0xed,0x81, -0x48,0xa0,0x9d,0xd9,0x8d,0x9b,0xe9,0x1e,0x3e,0x42,0xf7,0x70, -0x37,0x35,0x17,0x23,0x04,0x6b,0xaf,0x74,0xf0,0x6e,0xa9,0xb5, -0xdc,0xcd,0x8d,0x31,0xc5,0x2c,0x68,0x60,0xc2,0xe2,0x1e,0x06, -0x16,0xf7,0xe0,0x0f,0xaa,0x63,0xf1,0x0f,0x40,0xc0,0xe8,0x94, -0xf8,0x47,0x16,0x63,0xbd,0xad,0xf0,0x81,0xed,0x7f,0x59,0x4a, -0xb4,0x23,0x4b,0x51,0xa0,0xb2,0x94,0xd0,0x48,0x96,0x12,0xff, -0xc8,0x82,0x4c,0x56,0x25,0xfe,0x91,0xa5,0xc4,0x3f,0xb2,0x30, -0xfe,0x91,0x85,0xe0,0x02,0x8c,0x7f,0x64,0xd3,0xab,0x64,0x63, -0xfc,0x23,0x8b,0x97,0xac,0xcd,0xe6,0x4e,0x6a,0x05,0x1f,0x0f, -0x8e,0xde,0x66,0x81,0xb4,0x63,0x25,0xa1,0x22,0xc2,0x1c,0xc6, -0x9a,0x86,0xaf,0xb0,0xe2,0x84,0x10,0x18,0x89,0x28,0x8d,0x06, -0x22,0x08,0xe0,0xf1,0x70,0x68,0xb9,0x87,0x27,0x76,0x11,0xee, -0x9f,0xd1,0xa1,0x38,0x50,0xfc,0x6f,0x2c,0x16,0x82,0x31,0x39, -0x4d,0x65,0x42,0x8b,0x3b,0x51,0x95,0xd0,0x24,0x3e,0x91,0x35, -0x3d,0xd1,0x4b,0x2e,0x89,0xf6,0x44,0x57,0xad,0x53,0x22,0x21, -0x95,0x81,0x41,0x6f,0xf4,0x53,0xff,0x0a,0x71,0x90,0x7f,0xfd, -0x77,0x08,0x82,0xfc,0xbb,0x65,0x0f,0x46,0x41,0xf6,0x5c,0x90, -0xbd,0x31,0x9a,0x14,0x08,0xd9,0x43,0x7e,0xd9,0xdc,0x5c,0x05, -0x71,0x90,0xb6,0x80,0x33,0xd0,0x06,0xfc,0x09,0xfd,0xac,0x7e, -0x4b,0xed,0xfd,0x12,0x3a,0xee,0x9f,0x01,0xff,0x8e,0xc2,0x9f, -0x2c,0xc3,0x4a,0xca,0xd4,0x7e,0xf2,0xec,0x2d,0x81,0x39,0x82, -0xca,0x9e,0xb9,0xfb,0x2b,0x6f,0x7d,0xb1,0x62,0x8f,0xe0,0x62, -0xae,0x64,0x52,0xe5,0xf1,0xa4,0xb6,0x57,0xb0,0x8b,0xe5,0x63, -0x12,0x0d,0x50,0x95,0xf7,0x0e,0x26,0xae,0xd8,0x73,0x31,0x32, -0xce,0xfb,0x4b,0x2a,0x6d,0x84,0x97,0xde,0x23,0xdf,0x8e,0x0f, -0xa9,0xfb,0x60,0xb2,0x5a,0x2b,0x80,0x05,0x0d,0x61,0xdd,0x97, -0x5c,0x14,0x99,0x25,0x64,0x84,0xd5,0x7d,0x81,0x1a,0x98,0xba, -0x3c,0xd9,0x0b,0xbd,0x3f,0xa4,0x2c,0xdd,0xcc,0x73,0x52,0x82, -0x2e,0x9f,0x16,0xf4,0x0d,0x6a,0xba,0xce,0x20,0xe8,0xf3,0x9a, -0xf3,0x97,0x04,0x7d,0x4e,0x43,0x7f,0x4e,0xd0,0xa7,0x05,0x7d, -0x9e,0xd2,0x8b,0x39,0xdd,0xa8,0xbb,0x4c,0xfa,0x53,0xda,0xe7, -0x99,0x4d,0x7b,0x7d,0xa3,0x6e,0x9f,0xf4,0x9e,0x8a,0xfe,0x94, -0x38,0x3f,0xf6,0x1c,0xdb,0x93,0x9a,0x96,0x5b,0xe5,0x42,0xb9, -0x98,0xca,0x97,0x61,0xe9,0x2f,0x27,0x28,0x87,0x8e,0x48,0xa3, -0x38,0xe7,0x1e,0x04,0x6d,0x4a,0x5a,0x67,0x6c,0x62,0x46,0x1d, -0x40,0x70,0xa4,0x4e,0xa0,0x39,0x8d,0x0c,0x1a,0x34,0x23,0x28, -0x0a,0x20,0x4d,0xea,0x84,0xb7,0x18,0x3d,0xb6,0xd1,0xe3,0x00, -0x3d,0x6e,0xa2,0x47,0xce,0x02,0x83,0x4b,0x51,0xab,0x1b,0x12, -0x53,0x78,0xd1,0x1c,0x2b,0x22,0x51,0xbf,0x29,0xf5,0xe2,0x1a, -0xaa,0xa4,0xdf,0x03,0xc2,0xb3,0xcb,0x82,0xde,0x1e,0xfa,0x9d, -0x21,0x57,0x3d,0xac,0x48,0x9d,0x47,0x29,0xf1,0xe5,0xa1,0x1a, -0x89,0x07,0xab,0x7a,0x35,0xd1,0x73,0x3c,0x02,0xc0,0xd8,0x8e, -0x8c,0xe4,0xa1,0x9f,0xc2,0xb8,0x05,0xba,0x0a,0x75,0x16,0xa5, -0x23,0xba,0x9b,0xd7,0x5c,0xf1,0x41,0x90,0x41,0x9d,0x5a,0x97, -0x50,0x8b,0xcb,0x2c,0x26,0x9e,0x5b,0x57,0xc6,0x93,0xeb,0xfe, -0xea,0xf4,0x52,0x09,0x5e,0x68,0x37,0xd7,0xe5,0x34,0xb9,0x7d, -0x1d,0xc5,0x55,0xb5,0x16,0xfa,0x97,0x7a,0x83,0x69,0x2a,0x3c, -0xbd,0xe9,0xa2,0x4b,0xcf,0xef,0xe9,0xf3,0xf7,0x5b,0x02,0x96, -0xcd,0xd1,0x2d,0x17,0x74,0xff,0x69,0xb4,0x3f,0xe2,0x77,0xb4, -0x79,0x4a,0xed,0x75,0x95,0xe6,0x6c,0x53,0x41,0xb9,0xaf,0xd8, -0xea,0xa9,0x33,0xd7,0x54,0x3b,0x8a,0x74,0x86,0x16,0x67,0x20, -0x30,0xb3,0x6a,0x7c,0x2a,0x18,0xe9,0x6a,0x70,0x37,0x37,0x74, -0x6f,0x9e,0x8e,0xbf,0xfa,0x70,0x9d,0xd7,0xe2,0x6d,0x28,0xb4, -0xd5,0x94,0xce,0xaa,0x79,0xcb,0x2b,0xe6,0x72,0xa3,0x86,0xe7, -0xbe,0x25,0xe8,0x9b,0x34,0x3c,0xf1,0x92,0xa0,0x4f,0x69,0xce, -0xbf,0x4e,0xf0,0xca,0x15,0x82,0x57,0xe6,0x55,0x3c,0xed,0x45, -0x9e,0xe6,0x9c,0x97,0xf6,0xef,0xae,0x54,0xf3,0x98,0xee,0x80, -0xa0,0x5f,0xa5,0xa1,0x1f,0x14,0xf4,0xab,0x13,0x74,0x59,0x52, -0x5d,0xe7,0x7a,0xcd,0xfd,0x97,0xc4,0xfd,0xe7,0xb4,0xf7,0x5f, -0xfe,0x4b,0xd2,0xfd,0x0f,0x65,0xb8,0xff,0x8d,0x19,0xee,0xff, -0x01,0x4e,0xc7,0x1e,0xf6,0xb8,0x86,0x0c,0x6c,0x4d,0xff,0x56, -0x4a,0xd0,0xf1,0xfd,0x19,0x7d,0x83,0x9a,0x8e,0x6b,0x9a,0xd1, -0xe7,0x7f,0xa7,0x3e,0x7f,0x49,0xd0,0xe7,0x34,0xd7,0x79,0x4e, -0xd0,0xa7,0x05,0x7d,0x1e,0x7a,0x50,0x72,0x3a,0x7d,0x33,0x62, -0x4d,0xfb,0x3c,0xb3,0xbf,0x4d,0x77,0x7d,0xba,0xa6,0x49,0x99, -0x8a,0xfe,0x94,0x38,0x3f,0xf6,0x5b,0xb6,0xa6,0xdb,0xe8,0x9a, -0xd6,0xd3,0x35,0xdd,0x24,0xf5,0x49,0xcf,0x9d,0xa0,0x42,0xaa, -0x9f,0xe7,0x29,0x37,0x6b,0xa2,0x53,0x5e,0x58,0xa0,0x5e,0xd5, -0x9a,0xe6,0xcd,0x85,0x12,0x04,0xde,0xc5,0x3b,0xb1,0xc8,0x79, -0xa3,0xc6,0xf4,0xab,0xbe,0x1c,0x35,0xe1,0xff,0xf3,0x62,0xaf, -0xe2,0x12,0x16,0x5c,0x44,0xcd,0xbc,0x0c,0xb5,0x57,0xb4,0xba, -0xae,0xa7,0xdf,0xab,0x58,0x25,0xf6,0x74,0x8b,0x95,0x8a,0xcf, -0xac,0xb3,0xb6,0xfa,0xd6,0x2e,0x52,0x53,0x95,0xa7,0x94,0x94, -0x24,0xf7,0xd7,0x7c,0x51,0xd5,0x5e,0x33,0x79,0x81,0xda,0x8b, -0x74,0x9a,0x8e,0x9b,0xd8,0xfa,0x5b,0xdd,0x6f,0x53,0xcc,0xa1, -0x57,0xcc,0xc9,0x46,0x0d,0xef,0x7c,0x4b,0xd0,0x37,0x69,0xe6, -0xf6,0x25,0x41,0x9f,0xd2,0x9c,0x7f,0x9d,0x98,0xf3,0x2b,0xc4, -0x9c,0xcf,0xab,0x78,0xd3,0x8b,0xbc,0xc9,0x39,0x28,0xed,0xdf, -0x5d,0xa9,0xe6,0x15,0x5c,0x1b,0x8c,0x7e,0x95,0x86,0x7e,0x50, -0xd0,0xaf,0x4e,0xd0,0x65,0x9b,0xea,0x3a,0xd7,0x6b,0xee,0xbf, -0x24,0xee,0x3f,0x97,0x74,0xff,0x92,0xa4,0xfb,0x1f,0x52,0xdd, -0xe7,0x7f,0x55,0xf7,0xbf,0x31,0xc3,0xfd,0x3f,0x00,0x74,0xaa, -0xf5,0xd1,0x35,0xab,0x6b,0x95,0x8b,0x11,0x12,0xb4,0x1e,0x24, -0xd3,0x5a,0x51,0x3d,0x72,0x2d,0x57,0xcd,0xd6,0x6a,0xb4,0xe6, -0x1e,0xe0,0xc4,0x1e,0x15,0xf3,0x8e,0x01,0x61,0x4c,0x45,0x68, -0x00,0x42,0x43,0xda,0x60,0x16,0xfd,0x73,0xca,0x69,0x21,0x14, -0x0b,0x0d,0xc5,0xac,0xe7,0x1f,0x40,0x78,0x42,0x98,0x42,0x02, -0xe2,0x0f,0x05,0x4b,0x80,0x09,0x16,0x4d,0x49,0x05,0x3f,0xfd, -0xd0,0xcf,0x4b,0x2a,0xb0,0x54,0x8c,0xb1,0x62,0xc5,0x1f,0x16, -0xe0,0xca,0x76,0x35,0x6f,0x9d,0xcc,0x24,0xda,0xd4,0x22,0xc8, -0xb1,0x29,0xf4,0xa4,0x43,0x09,0x5b,0xa3,0xd4,0x83,0x9f,0x3a, -0xe8,0xed,0x02,0xbc,0x00,0x43,0x08,0xa3,0x20,0x50,0x07,0x94, -0x24,0xc4,0x4c,0x6d,0x48,0x69,0x85,0x6b,0xe5,0xdc,0xdf,0x22, -0xfb,0x78,0xef,0xcd,0x64,0x19,0xe5,0x90,0xad,0x41,0x56,0xe5, -0xda,0x4e,0x5c,0x16,0x28,0x93,0xaf,0xa7,0x72,0x27,0x60,0xa7, -0xdc,0x4d,0xf6,0xad,0xee,0x73,0x85,0x7d,0x65,0x9f,0xd8,0xd9, -0xd8,0x59,0xb1,0x67,0xb8,0x7e,0xb8,0xd5,0xa1,0xcf,0xd2,0xd9, -0x03,0x23,0x8d,0x53,0x0b,0x97,0x5c,0x72,0x7e,0x4f,0x77,0x5b, -0x5f,0x59,0xa0,0x74,0x61,0xac,0xa9,0xbb,0xb6,0x84,0x2a,0x8c, -0x8e,0xc0,0xa0,0xaf,0x75,0x6d,0x87,0x23,0x7e,0xa7,0xc5,0xd7, -0xf9,0x7b,0xb9,0x5e,0x11,0x46,0x1b,0x7a,0xf2,0x46,0xd7,0x5b, -0x1b,0x3a,0x6b,0x8c,0x6f,0x6f,0xa8,0x0b,0x0f,0x58,0xdd,0xf5, -0x26,0x53,0x9d,0xbb,0x7c,0xfd,0xd8,0xea,0x75,0x81,0x48,0x57, -0x9d,0xa7,0xa9,0xbe,0xa7,0xc2,0x5d,0x57,0x44,0x69,0x56,0xef, -0xf0,0xe6,0x88,0xb7,0xdc,0xd5,0xd9,0x50,0xae,0xec,0xc7,0xba, -0x56,0xdc,0xe7,0x5e,0x65,0xfb,0xee,0x65,0x8c,0x77,0xfc,0x94, -0x17,0x7e,0x81,0x74,0x23,0xa3,0xff,0x8f,0x9a,0x6e,0x10,0xf4, -0xf9,0xff,0x61,0xd8,0x31,0xff,0x72,0x2b,0xf9,0x05,0xe5,0x91, -0x0e,0xe9,0xc2,0x13,0x52,0xab,0xd4,0x29,0x75,0xad,0xd4,0xc7, -0xb3,0x15,0x08,0xad,0x89,0x8e,0x78,0xac,0xaf,0x63,0xab,0xd0, -0x2b,0x5b,0x8b,0x59,0x64,0x12,0xbe,0x43,0x15,0x33,0x3f,0x3d, -0xea,0x4f,0xa2,0xa5,0x51,0x8f,0x1e,0xb8,0x1a,0xba,0x55,0x41, -0x19,0xf1,0xa4,0xc6,0x7e,0x0c,0xcd,0x61,0x0d,0x73,0x14,0x53, -0x52,0xf5,0x14,0x5e,0xbd,0x95,0x58,0x26,0x17,0xac,0xc3,0x85, -0x03,0x01,0x4f,0xd8,0x53,0x32,0x3e,0xb6,0xbd,0xb1,0xcb,0xba, -0x61,0x30,0x57,0x67,0x2e,0xb5,0xfb,0x4a,0xaa,0xeb,0xca,0xea, -0xfd,0x79,0xde,0x1c,0x47,0x99,0xb9,0xc2,0xd6,0x50,0x55,0xb0, -0x7d,0x6f,0x75,0xf7,0x9c,0x5c,0x3c,0x1c,0x72,0xd7,0x35,0x41, -0xb5,0x86,0x0d,0x23,0xf3,0x1b,0x7d,0xc1,0x41,0x43,0x9b,0x2e, -0xab,0xc6,0x69,0x71,0x96,0xe6,0x56,0x16,0xd6,0xe7,0x99,0x8a, -0x8a,0x0b,0x2d,0x59,0xfa,0xa1,0xdc,0xe3,0x97,0xc3,0x6e,0x94, -0x18,0x27,0x5c,0x9b,0x6c,0x9c,0xe6,0xd4,0xe3,0x27,0x3f,0x2b, -0xe8,0xeb,0xfe,0x47,0xec,0x15,0xf2,0x71,0xaa,0xeb,0xfa,0x74, -0x0b,0xd2,0xff,0xa2,0xb1,0x94,0xcd,0xe5,0xc7,0x19,0xd9,0x4f, -0xe9,0x10,0x60,0xf9,0x36,0x84,0x5c,0x14,0x1f,0x9c,0x03,0xc3, -0x49,0x49,0xd8,0x7e,0x7b,0xe6,0xee,0xb6,0x29,0xe1,0xe3,0x84, -0xed,0xcd,0x80,0x35,0x10,0x98,0x18,0x34,0xa2,0x9f,0x14,0x96, -0xba,0x13,0x11,0xfe,0x60,0x90,0x3b,0xb8,0x77,0xa5,0x40,0x68, -0x79,0x50,0x7f,0x5c,0x27,0xea,0x4d,0x99,0x4f,0xa2,0x79,0x65, -0x56,0xcc,0x60,0x06,0x9c,0x2e,0xc5,0xfc,0x89,0x72,0x8e,0xf1, -0xa9,0x5c,0x4c,0xd3,0x64,0x59,0x13,0xfa,0x3b,0x4b,0xb3,0xe5, -0x7b,0xef,0x8d,0x0d,0x0c,0x64,0x6c,0xb8,0xfc,0x58,0x5f,0x34, -0xda,0xb7,0xf4,0x60,0x4f,0x72,0xcf,0x65,0xec,0xff,0x4d,0xf5, -0x97,0x3f,0x48,0x3e,0xba,0x8c,0x3f,0x0f,0x89,0x32,0x61,0x6e, -0xf7,0xe5,0x61,0x24,0x47,0xd2,0xd6,0xf1,0x49,0x8c,0x1f,0x2f, -0xa9,0x6e,0x4f,0xd3,0x97,0x88,0x79,0xc8,0x00,0xbb,0x50,0x23, -0xd5,0x31,0x07,0x85,0x05,0x62,0xa1,0x76,0xe8,0xf3,0xc7,0x62, -0x60,0x7e,0x28,0x16,0xe0,0xc3,0x4c,0x13,0x40,0xf4,0x28,0x9f, -0x08,0xa5,0x56,0x89,0xa6,0x01,0x0c,0xc8,0x57,0x4e,0xbf,0xe7, -0xe1,0x6f,0xab,0xf9,0x6f,0x21,0xe7,0x36,0x51,0x08,0x3f,0x91, -0x4a,0x41,0x20,0xc3,0x80,0x7e,0x0d,0x3a,0x88,0x35,0xa2,0x4d, -0xa9,0x20,0x9f,0x9d,0xaa,0xee,0x69,0xa9,0xaa,0xe9,0x9d,0x69, -0x0b,0xcd,0x76,0x3b,0x9d,0xdd,0xb3,0xa1,0xd6,0xa1,0x22,0x7d, -0xde,0x68,0x60,0x6d,0x75,0xd4,0x39,0xe4,0xba,0xae,0xa8,0xc6, -0x34,0xbb,0x6f,0x70,0x6a,0x6a,0x90,0x1e,0xf2,0x0f,0x3b,0xaa, -0xa7,0xb6,0x5d,0x36,0x14,0xbd,0x70,0xcc,0xe3,0x1d,0xd9,0xda, -0xd9,0xb9,0x75,0xc4,0x4b,0x47,0xbe,0x73,0x6f,0x73,0x47,0x7d, -0x9b,0xad,0xa9,0x34,0xa7,0xbc,0xa8,0x77,0x69,0xd5,0xcc,0xaa, -0xa1,0x55,0x33,0xf8,0x45,0xf0,0xed,0xbb,0xb8,0x1f,0xe4,0xb0, -0xfd,0xe0,0x77,0x09,0x7e,0x7e,0x17,0x65,0x20,0xa3,0x6f,0x50, -0xd3,0x71,0x9f,0xc8,0xd1,0xe8,0x67,0xec,0xfc,0x25,0x41,0x9f, -0xd3,0xd0,0x9f,0x13,0xf4,0x69,0x0d,0xfd,0x59,0x41,0x5f,0x27, -0xe8,0xf3,0x94,0x5e,0xcc,0xe9,0x20,0xf5,0x2a,0xd3,0x3e,0xe7, -0x6c,0xda,0xfb,0x82,0xde,0x66,0x55,0xd1,0x9f,0x12,0xe7,0xc7, -0x7e,0x27,0xf1,0xdc,0x8a,0x56,0xb8,0xbe,0x14,0x91,0x86,0xa4, -0xe7,0x21,0x72,0x3c,0x2c,0x8d,0x88,0xa4,0x90,0x9e,0xe4,0x75, -0x57,0x91,0xbe,0xd7,0xa7,0xb6,0xc8,0x01,0x6a,0x63,0x99,0x7d, -0xd2,0x8a,0xab,0x1b,0xb4,0xb1,0x7c,0x91,0xa9,0x92,0x43,0xbf, -0xe7,0xf3,0xa6,0xe8,0x20,0x53,0x0d,0x98,0x60,0xd0,0xc3,0x81, -0x0d,0x76,0x16,0x77,0xb6,0x63,0x01,0x70,0x2f,0xfd,0xce,0x60, -0xc6,0x0d,0xe2,0x8f,0x24,0xc4,0xc4,0x81,0x5a,0xd7,0x7e,0x92, -0x45,0x77,0x86,0x78,0x1b,0x7b,0xae,0xac,0x69,0x6b,0x83,0x73, -0xf9,0xc4,0x43,0x0b,0x46,0x95,0x76,0x67,0x16,0xf2,0x8e,0xec, -0xf2,0x45,0x4a,0x1c,0x9e,0x12,0x7d,0x81,0xcf,0x1e,0x9a,0xed, -0x75,0x41,0xb5,0xf0,0xf6,0xe9,0xae,0x6a,0x94,0x49,0x9e,0xd6, -0xf1,0xd2,0x4e,0x70,0xed,0x36,0xf8,0x2a,0x41,0xbd,0xf3,0xe5, -0x34,0x55,0x30,0x09,0xf7,0xac,0xa7,0xbe,0xcc,0xeb,0xb4,0xe5, -0x1b,0x8c,0xb9,0xde,0xb1,0x9d,0x7d,0xbd,0xbb,0xc6,0xbc,0x09, -0x51,0xd4,0xd2,0x58,0x6f,0xb2,0x16,0x98,0x1b,0x9a,0xfd,0x65, -0xa6,0x42,0xd0,0xf1,0xc8,0x5f,0x15,0x81,0x26,0xe6,0xe8,0x25, -0x31,0x47,0x53,0x89,0x39,0x95,0x2b,0x51,0xbf,0xc9,0xe1,0x7a, -0x91,0x55,0xc5,0x1b,0xca,0x5c,0x7b,0x91,0xc7,0x38,0x87,0xe0, -0xef,0xcd,0xc8,0x23,0x89,0xbf,0x3b,0xa4,0xe2,0x85,0xf7,0x50, -0x2f,0xca,0xe1,0x7a,0x91,0x8a,0x47,0x50,0x2f,0xca,0xe1,0x7a, -0x91,0x55,0x52,0xf6,0x16,0xe0,0x11,0x3b,0xdd,0x10,0x6e,0x86, -0xd8,0x8f,0x52,0xa7,0xd3,0xaa,0xc9,0x53,0x4c,0xd9,0x8a,0xd5, -0xd9,0x35,0x05,0x58,0x23,0x42,0xc9,0xa6,0x71,0xf1,0xf9,0x75, -0x49,0x59,0xca,0xfc,0x1a,0xa4,0xef,0x50,0xc2,0xb3,0xf4,0x40, -0x15,0xe7,0x2d,0xfa,0x01,0x3c,0x23,0x60,0x48,0x43,0xe5,0x04, -0x3b,0x82,0x2f,0xea,0x70,0x52,0x49,0x88,0x6d,0xa0,0x89,0x80, -0x11,0xdb,0x42,0x7a,0x89,0x55,0x51,0x5b,0x5c,0xe4,0xb3,0xca, -0x2c,0x55,0x5c,0x38,0xde,0x3e,0x07,0xd3,0x37,0xd7,0x0e,0xd3, -0x37,0xc7,0xa6,0x29,0xfe,0x1b,0x52,0xa6,0x4c,0x49,0x68,0xd0, -0x3b,0xb6,0xab,0xb7,0x6f,0x27,0x9f,0xa9,0x31,0x3e,0x23,0x38, -0x26,0x8d,0xcb,0x4d,0x72,0x36,0xae,0xfb,0x02,0xb6,0xee,0x7f, -0x29,0xa9,0xe8,0x4b,0x82,0x3e,0xf7,0x8a,0x8a,0xae,0xcb,0x12, -0xf4,0xcd,0x6a,0x3a,0xae,0x6f,0x46,0x5f,0xf7,0x8a,0x22,0x0f, -0x9b,0xb8,0x6e,0x9d,0x9f,0x64,0xf7,0x35,0x71,0x9d,0x37,0x3f, -0xc9,0xbe,0xa3,0x74,0xbc,0x3e,0xa3,0x6f,0xd6,0x9c,0xff,0xac, -0xa0,0xaf,0xfb,0x2d,0xd3,0x57,0xa0,0x6f,0xf7,0xeb,0x28,0x57, -0x3f,0x0b,0x33,0xa7,0xf5,0x53,0x73,0x1f,0x7e,0x45,0x72,0x5d, -0x7a,0x7b,0xe6,0xf2,0x7d,0x89,0xac,0x43,0x94,0xa1,0x0c,0x6e, -0xeb,0x04,0x6c,0x01,0x47,0xbd,0xca,0x4c,0x4a,0xca,0x8a,0x94, -0x94,0x51,0x4a,0xf2,0xb2,0x9f,0xa2,0x82,0x03,0x0b,0x11,0x58, -0x79,0x52,0xa7,0x15,0x8b,0x54,0x01,0x22,0x2e,0x51,0xd5,0x21, -0xc8,0xbd,0x1e,0x6e,0x53,0x3b,0x86,0x59,0x4c,0xb3,0x54,0x2e, -0xde,0x7b,0xaf,0xde,0x3c,0xda,0x15,0x5b,0x88,0x5d,0x51,0xde, -0xec,0xb1,0xc8,0xdb,0x40,0x1c,0x3e,0xd6,0xd4,0xbe,0x67,0x4b, -0xfc,0x71,0xd2,0x0b,0x0d,0xde,0x2b,0xe2,0xf7,0x31,0x7b,0xfd, -0x15,0x78,0x6f,0xdd,0xfd,0x74,0x3c,0x0a,0xe9,0x27,0xa3,0x6e, -0x6e,0x79,0x46,0xfa,0xb4,0x34,0x2d,0x61,0xac,0x1f,0x12,0xfd, -0x6c,0xcc,0x6f,0x8a,0xf1,0xfa,0x05,0x74,0xa0,0xda,0x58,0xea, -0x9f,0x3a,0xf4,0xaf,0x63,0xef,0x60,0x63,0x3a,0xf8,0x00,0xfd, -0x10,0xa3,0x87,0xcc,0xc0,0x2f,0x70,0x7e,0xa0,0x15,0x6a,0x5a, -0xd3,0x5b,0x3e,0x2c,0xeb,0x01,0x5a,0x91,0xb1,0xa6,0x75,0x45, -0xda,0x4a,0x98,0x00,0x8d,0x99,0x8d,0xc9,0xfa,0xa5,0xf7,0x60, -0x0e,0xd7,0x01,0x50,0x1b,0xf6,0x74,0x82,0x7e,0x40,0xdd,0xcc, -0xf2,0x34,0xbe,0xcb,0x6b,0xf4,0x0d,0xca,0x80,0x47,0x38,0x7d, -0x03,0xa7,0x53,0x56,0x24,0xd5,0x20,0x7b,0x38,0x7d,0x5e,0x4d, -0x07,0xde,0xe1,0xf4,0x39,0x4e,0x7f,0x9b,0xd2,0xf3,0x41,0xf6, -0x70,0xfa,0x34,0xa3,0x4b,0x13,0xcb,0xf3,0xd2,0x63,0xf2,0xab, -0x74,0xac,0x8a,0x90,0x77,0x2e,0xbb,0x81,0xf1,0x14,0x70,0xea, -0x97,0x54,0xcf,0x33,0xcb,0xcf,0x87,0xca,0x4c,0x27,0xc5,0xf5, -0xb3,0x74,0xfb,0xd8,0xf9,0xcb,0xef,0xd0,0xeb,0xe7,0x82,0x8c, -0xe1,0xe7,0xc7,0xe0,0x7c,0xca,0x00,0xba,0xe5,0x56,0xe9,0x04, -0xc7,0x74,0x3d,0xc8,0xd2,0x37,0x1b,0x04,0xa2,0xab,0x3c,0xb3, -0x6e,0x92,0xa2,0x4e,0xa7,0x54,0x97,0xe4,0x68,0x42,0x74,0x05, -0xd8,0xb0,0x8b,0x28,0x0a,0x9f,0x62,0xfc,0xe7,0xa4,0x47,0x80, -0x1e,0x03,0xf4,0x88,0xd1,0x63,0x1b,0x3d,0x0e,0xd0,0xe3,0x26, -0x68,0x7a,0xb9,0xc0,0xca,0xb2,0xe6,0xa2,0xcc,0xc8,0x3f,0xc9, -0x12,0xc7,0x2b,0xc1,0xc5,0x1b,0x34,0xa5,0x35,0xf6,0xcd,0x1a, -0x3f,0xef,0x6c,0x2c,0xd9,0xb0,0xaf,0x2d,0x95,0x4b,0xea,0xb8, -0xc3,0x17,0x26,0x34,0xc9,0x90,0x77,0xd8,0x8b,0xf4,0x1a,0xcf, -0x2f,0x1d,0x2f,0x08,0x24,0x79,0x61,0xbf,0xe7,0xe3,0x35,0xc5, -0xc7,0x77,0xcd,0x72,0x07,0x79,0x08,0xfd,0xc1,0x45,0x3c,0xb8, -0xfa,0x2e,0xd2,0xd7,0x52,0xfa,0x29,0x5d,0x9e,0xc4,0xce,0xf7, -0x91,0x72,0xa0,0x53,0x4d,0x7a,0x66,0x39,0xc6,0x74,0x95,0x61, -0xb6,0xe6,0xc9,0x72,0x07,0xf2,0x63,0x36,0xf4,0xac,0xd5,0x27, -0xf5,0x5e,0x49,0x71,0x9c,0xf3,0x60,0x95,0xc8,0xeb,0xc7,0x6c, -0xfe,0x20,0x26,0xf2,0x93,0x99,0x58,0xb8,0xab,0xfd,0xb0,0x7c, -0x64,0xe9,0xcb,0xe1,0x21,0xc6,0x13,0x70,0x6d,0xc6,0xa3,0xe5, -0x1a,0x1e,0xfd,0x25,0x7d,0x36,0xc6,0x73,0xe5,0x6a,0x9e,0x93, -0x66,0x97,0xf3,0x48,0x1c,0x79,0xcb,0x84,0xf4,0xcb,0x89,0x07, -0x9f,0x71,0x16,0xeb,0x57,0xe8,0x29,0x8f,0xed,0x04,0xec,0x6c, -0xda,0x1e,0xbf,0x29,0xf5,0x0f,0x56,0xd0,0xf2,0x13,0x0d,0x66, -0x21,0x50,0x9a,0xc3,0xd5,0xf6,0x2c,0x4c,0x10,0xa5,0x93,0x8a, -0x5d,0x7f,0x2d,0xd0,0xf5,0xd7,0x68,0x76,0xbf,0x33,0x19,0x8b, -0xe9,0x63,0x1f,0xde,0xf1,0xbd,0xe7,0xb7,0x13,0xe3,0xda,0x6f, -0xc8,0xfa,0x3f,0x6e,0xb8,0xff,0x3f,0xe2,0x4f,0x4b,0xca,0x1a, -0xfc,0x83,0xee,0x27,0xf4,0x79,0x4b,0x70,0xdf,0x80,0xf7,0xfb, -0x21,0xdd,0xa2,0x40,0x0a,0xe9,0xb1,0x32,0x05,0x1b,0x07,0x78, -0xfe,0x28,0xcc,0x91,0x6e,0xe1,0x9f,0xc0,0x8a,0x29,0xe1,0x32, -0x97,0xbe,0xaf,0xf4,0x07,0x7c,0xdf,0x12,0xf6,0xbe,0xd2,0x43, -0xe2,0xfc,0x9d,0x38,0xa7,0x8c,0xbe,0x4e,0xd2,0xc7,0xef,0xa5, -0xe3,0x00,0x77,0x29,0xa2,0xf4,0x62,0xe9,0x22,0xa8,0xa1,0x92, -0xb6,0x17,0xb0,0x3d,0x6d,0xc7,0x40,0x23,0x84,0x50,0xf1,0x2d, -0x8d,0xc5,0xac,0x90,0xb9,0x81,0x87,0xd8,0x01,0x89,0x97,0xc7, -0xd1,0x78,0x06,0x1e,0x4b,0x2a,0xe0,0xa8,0xf6,0x22,0x0e,0xcb, -0x02,0x6e,0x36,0x86,0x22,0x74,0xa2,0x23,0x94,0x8f,0x83,0x67, -0xc6,0x1a,0x1a,0xa3,0xd1,0xd8,0x9e,0x3d,0x6b,0xfc,0x9e,0x77, -0xac,0x23,0x56,0xb2,0x29,0xfe,0xdd,0x9a,0x91,0x9a,0xf8,0x6b, -0xca,0xb3,0xbf,0x8e,0xba,0x66,0x29,0xe3,0xb3,0x3f,0x25,0xc6, -0xe0,0x75,0xd4,0x7d,0x19,0x7d,0xfe,0x4f,0x62,0x0c,0xa8,0xcc, -0x29,0xe6,0x74,0x98,0xf3,0xea,0xc4,0xf9,0xa8,0xdf,0xb0,0xf3, -0xa7,0xf8,0xf9,0x4d,0x74,0x93,0xf8,0x85,0xaa,0xbe,0x7d,0xa9, -0xf4,0x47,0xc6,0x23,0x94,0xa7,0x5e,0xc7,0xba,0xe6,0x17,0x01, -0x1f,0xb3,0x2e,0xf4,0x49,0xc8,0xe2,0x8a,0xe4,0xf0,0x4e,0x45, -0xe6,0x5e,0xde,0x7c,0xfb,0x50,0x55,0xb0,0x28,0x29,0x66,0xe8, -0x45,0x28,0x6b,0xa6,0x47,0xf3,0x84,0xaa,0x8c,0x41,0x45,0xe2, -0x20,0xcb,0x70,0x31,0x84,0xcb,0x61,0x64,0x06,0xe5,0x0e,0xe5, -0x1e,0x94,0x42,0xe1,0xce,0xd0,0x61,0xf2,0x1d,0x2e,0x76,0x64, -0xfd,0x0c,0x0a,0xa2,0x9d,0xe1,0x01,0x45,0x67,0x23,0x38,0x66, -0x16,0x36,0x66,0x6f,0x26,0x74,0x39,0x82,0xf2,0x9e,0xd1,0x37, -0xa8,0xe9,0x38,0x96,0x8c,0x3e,0xaf,0x39,0x7f,0x49,0xd0,0xe7, -0x34,0xf4,0xe7,0x04,0x7d,0x5a,0xd0,0xe7,0x29,0xbd,0x98,0xd3, -0x41,0x1b,0x2c,0x97,0xd2,0x3d,0xcf,0x6c,0xda,0xeb,0x83,0xbd, -0xa0,0x3e,0x3f,0x57,0x9c,0xbf,0x5e,0x73,0xfe,0x53,0x82,0x1e, -0x7b,0x93,0xc5,0x5f,0xdd,0xcb,0x2f,0xc9,0x16,0xb9,0x49,0xaa, -0xa0,0x2a,0x79,0x93,0xf4,0x00,0x44,0x1e,0x95,0x40,0x65,0x19, -0xaf,0x2d,0x5c,0xa6,0x41,0x48,0xf2,0x6d,0x27,0x31,0x5d,0xdc, -0xc4,0x30,0xb1,0x92,0x79,0x30,0x27,0x5e,0xfa,0x7b,0xa5,0xa8, -0xa3,0x62,0x92,0x97,0xd3,0xef,0x65,0xc2,0xc8,0x2c,0xc7,0x4f, -0x79,0xfc,0x3c,0x68,0x7f,0xa3,0xfc,0xb6,0x10,0x3a,0x2c,0xf2, -0x46,0x38,0xca,0x79,0x3e,0x4e,0x03,0x80,0x87,0x48,0xe4,0x88, -0x00,0xb2,0x8b,0x69,0x90,0x3e,0x23,0xef,0x8d,0xeb,0xd3,0x95, -0xf9,0x4a,0x21,0x4f,0xa6,0x26,0xcb,0xe2,0x1e,0x0e,0xd6,0x50, -0xd5,0xb1,0x61,0xcc,0xde,0xd7,0x3c,0x5c,0x5e,0x59,0xd3,0x37, -0xdb,0xbe,0xbe,0xbb,0xef,0xc7,0x83,0xd3,0xd9,0xc6,0xd7,0x6a, -0xe7,0x8a,0x5e,0xf3,0x75,0x0f,0x4e,0x67,0xcd,0x8c,0xed,0x03, -0x45,0xdf,0x66,0x9d,0xac,0x99,0xad,0xd9,0x14,0x06,0x55,0x32, -0xb0,0x66,0x67,0x6c,0x7a,0xa2,0xbc,0xce,0x14,0x7f,0xd5,0xf5, -0xd9,0x40,0x0d,0xb1,0xbb,0x62,0xd3,0xd8,0x57,0x81,0x8e,0x13, -0xee,0x9f,0x6d,0x8c,0x2f,0xfe,0xa0,0x1e,0xd7,0x97,0xc4,0xb8, -0x4e,0xbd,0xa9,0xd8,0x67,0x67,0x64,0xa3,0x7c,0x10,0x85,0xe6, -0xc5,0x00,0xf6,0x52,0x72,0xff,0x0b,0x34,0x7e,0x75,0xae,0x6a, -0x27,0x46,0x93,0x17,0x8c,0xac,0x48,0xdb,0x81,0x1b,0x6b,0x51, -0x9c,0x64,0xdf,0xa1,0x13,0x40,0x81,0x48,0x6b,0xb7,0x72,0x83, -0x8c,0x2a,0xd9,0x18,0x94,0x57,0x86,0x46,0x31,0x9d,0xac,0xc1, -0x50,0x52,0x91,0x03,0x63,0x45,0xad,0xa5,0xc9,0x05,0xc3,0x42, -0xb5,0xec,0x1a,0x18,0xaa,0x7a,0xf7,0xe6,0xcf,0x0f,0x4e,0x4f, -0x0f,0xd2,0x43,0x3e,0xb8,0xa3,0xd2,0xd3,0x7c,0x41,0x0f,0xea, -0xd6,0xdc,0x1a,0xca,0x3f,0xb0,0xf4,0x6f,0x74,0x64,0xa6,0x63, -0xf8,0x45,0x79,0x77,0x23,0x8e,0x49,0x28,0x69,0xad,0xcc,0xc3, -0xbb,0x73,0xba,0x96,0x97,0xd5,0xe7,0xab,0x79,0xd9,0x88,0x32, -0x28,0x94,0xc2,0xcb,0x46,0xf9,0x05,0x71,0xfe,0x5a,0xd5,0xf9, -0x55,0x68,0x1f,0x59,0xb8,0x5d,0x55,0xae,0x5a,0x43,0xca,0x9a, -0xf0,0xe2,0x9a,0xe3,0x77,0xc7,0xdf,0x97,0xe2,0xda,0x48,0xfc, -0xdd,0x21,0xcd,0x9a,0x39,0x20,0xe8,0x37,0x6a,0xe8,0x07,0x05, -0xfd,0x03,0x78,0x25,0x1d,0xd0,0x29,0x95,0xf9,0x9b,0xa3,0xd0, -0x47,0xaa,0x5a,0x1a,0x93,0x56,0xe1,0xec,0x56,0xf3,0xfa,0xe6, -0xd5,0x1a,0x0d,0xa9,0x09,0xe6,0xb0,0x49,0x35,0xa9,0x41,0x20, -0x04,0x55,0x04,0xae,0x43,0x99,0x92,0xf9,0x80,0xf5,0x4a,0x28, -0x56,0xf6,0xbd,0x26,0xe1,0x8b,0x0c,0x0a,0xc7,0x31,0x14,0x0c, -0x65,0xa9,0x2c,0x5d,0x94,0xc2,0x82,0x37,0x5d,0x7e,0x84,0x74, -0x75,0x49,0x6f,0xd3,0x03,0xbc,0xcd,0xe5,0x78,0x02,0x64,0x20, -0x36,0xf1,0x44,0x5f,0x23,0xc6,0xeb,0x4f,0x48,0xc3,0xf4,0x8c, -0x01,0xe6,0x3f,0xd6,0x30,0x48,0xc2,0x81,0x6c,0x66,0xae,0x63, -0x6d,0xa7,0x22,0x66,0xc1,0x69,0xed,0x71,0x52,0xae,0xb0,0xcf, -0x18,0x33,0xd6,0xee,0xf3,0xf6,0x06,0x3c,0x79,0x06,0xeb,0xae, -0x41,0x85,0xc7,0x86,0x76,0x94,0x67,0x95,0x6d,0x1b,0x0d,0x4e, -0x77,0x73,0x7b,0xbc,0x6d,0x95,0xa5,0xa3,0x62,0x77,0x77,0x82, -0xb1,0xde,0x52,0x0c,0xeb,0xf8,0x7f,0x94,0x38,0x1b,0xac,0x6d, -0x83,0x0a,0xff,0x75,0x77,0x84,0xfa,0x6a,0x87,0x17,0x12,0x16, -0x79,0x68,0x90,0xcb,0xa6,0x2d,0xb8,0x3f,0x96,0x33,0x1e,0x7c, -0x8c,0xcd,0x75,0x37,0xa5,0xdf,0x80,0xfb,0x32,0xa3,0xcf,0x73, -0x7a,0x0f,0x95,0x71,0x5b,0x64,0xbd,0xa0,0x5f,0x7e,0x23,0xa3, -0x7b,0xa8,0xad,0xfc,0x28,0x5e,0xa7,0x82,0x5d,0xe7,0xfb,0x6a, -0xba,0x41,0xd0,0xe7,0xbf,0xcf,0x74,0x35,0xcf,0x72,0x2b,0x79, -0x94,0xf2,0x40,0x14,0x72,0x91,0x7d,0x7c,0xfe,0x93,0xfa,0x1d, -0x56,0xa4,0x69,0x07,0xfd,0x0d,0xa9,0xff,0x24,0xeb,0x1c,0x62, -0x3c,0x29,0x90,0x79,0x30,0xbd,0x7a,0xde,0x28,0xbd,0x0c,0x27, -0xd5,0x27,0x80,0x23,0x76,0xfa,0xbd,0x08,0x67,0xaa,0x9d,0x5e, -0x92,0xf5,0x99,0x07,0x7b,0xad,0x7b,0x11,0x1b,0x24,0x24,0xf9, -0x8f,0x35,0xc5,0xb8,0x75,0x99,0xaa,0x70,0xab,0x5c,0xd0,0xef, -0x69,0xdc,0xc9,0x3d,0x73,0xd5,0x9d,0x8e,0x89,0xd6,0x60,0xa7, -0x2f,0x58,0xef,0xe9,0x69,0xae,0xa8,0x6a,0x1d,0xf1,0xf5,0xcf, -0x3a,0x43,0xa6,0xa1,0xb6,0xb6,0x60,0x30,0x50,0x37,0xb7,0x6a, -0xe3,0x94,0xf0,0x44,0x3f,0xab,0xf6,0x2d,0x1b,0x42,0x0d,0x2d, -0xde,0xfa,0xa6,0x3a,0x47,0x63,0x76,0x96,0xc1,0xe2,0x6e,0xf7, -0x78,0x3b,0xbd,0xe6,0x26,0x5f,0xa0,0xdc,0xd7,0x58,0xeb,0xad, -0xc9,0xce,0x2a,0x18,0xef,0x8e,0xce,0x26,0xdc,0xd2,0x89,0xb1, -0xc5,0xf5,0xca,0xc6,0x76,0x4e,0x8c,0x79,0x1e,0x8c,0x2d,0xa7, -0x83,0x2e,0xf6,0xb6,0x52,0x7b,0x8b,0x04,0xa8,0xce,0x95,0x2f, -0x4d,0x9c,0x3b,0xbe,0x44,0xed,0xf0,0x4a,0x05,0x8b,0x68,0xa0, -0x21,0x26,0x37,0x87,0x81,0xc4,0x38,0xf2,0x63,0x69,0x07,0xbb, -0x2f,0xdd,0x07,0x76,0xcb,0x6f,0x53,0x9e,0xba,0x0f,0xbc,0xa5, -0xac,0xf6,0x95,0xa4,0x0d,0x84,0x26,0x9e,0xc0,0x03,0x04,0x8f, -0xea,0x09,0x78,0x20,0x34,0x41,0x70,0x01,0xc1,0xa5,0x5a,0xec, -0xea,0x42,0x37,0x0c,0x8a,0x55,0xce,0x73,0x45,0xc1,0x97,0xdd, -0xc6,0x95,0xe2,0x46,0xb1,0xdb,0x7b,0x84,0xfb,0xad,0x83,0x5e, -0x38,0x87,0x57,0x63,0xcf,0xc2,0x70,0x42,0x99,0x7a,0xfa,0xc3, -0x11,0x5e,0x97,0xd6,0xc4,0xf0,0xfc,0xc2,0x8d,0x96,0x60,0x07, -0x79,0xf7,0xb6,0x59,0x3a,0xed,0xe1,0xf6,0x49,0x7f,0xb0,0xaa, -0xa1,0xba,0x3a,0xe4,0xb3,0x6e,0x9b,0x1e,0x1e,0x1b,0x1b,0x8c, -0xcd,0xcc,0xd8,0x23,0xb1,0xf6,0xe0,0xba,0x88,0xdd,0xdf,0x3f, -0x5a,0xef,0x75,0x4c,0x0c,0x7c,0x74,0xf5,0x5c,0x53,0x5d,0x60, -0x80,0xce,0x72,0x43,0x8e,0xd1,0x68,0xa9,0x69,0xf3,0x8c,0xae, -0x96,0x0d,0xb1,0xc9,0xc9,0xd8,0xd2,0x1f,0xe8,0x90,0x19,0xda, -0xe7,0x7a,0x5c,0xae,0x9e,0xb9,0xf6,0xde,0xda,0x46,0x6f,0x4d, -0x8e,0xd1,0x34,0x22,0x29,0xfa,0xa0,0x6c,0xa3,0xf3,0x56,0x23, -0x7d,0x14,0xf4,0x0b,0x6d,0x2d,0x14,0x6e,0x33,0xd8,0x93,0xed, -0x9a,0x8a,0xb3,0xfa,0x32,0xcc,0xac,0xa7,0xa9,0xb2,0x23,0x66, -0x0b,0xff,0x54,0x2e,0xfd,0x73,0x5e,0xd8,0x17,0x9b,0x12,0xb0, -0xad,0xcf,0xc5,0x9d,0xdf,0xd5,0x7e,0xa6,0x65,0x57,0x17,0x8b, -0x64,0x07,0x93,0x02,0x0d,0xb2,0x70,0x9d,0x02,0xda,0x7a,0x94, -0x29,0xcd,0x5d,0x23,0x6e,0xd3,0x6c,0xb8,0xf3,0xe6,0x87,0xc8, -0xcc,0x57,0x76,0xec,0x77,0x0f,0x2d,0x74,0xf5,0xf5,0xcd,0xc5, -0xe6,0xb6,0x15,0x3f,0xb4,0x2c,0xef,0x0b,0x0d,0x45,0xef,0x1b, -0xfc,0x6d,0xf6,0xf6,0x85,0xf0,0x74,0xb8,0x2a,0x4a,0x86,0x57, -0xe7,0x8c,0xf5,0x8c,0x9d,0x8a,0xb3,0x5a,0x20,0x4e,0xfa,0x25, -0x2c,0x7f,0x98,0xea,0x00,0x9f,0x84,0x40,0x75,0x15,0x3a,0xc3, -0x24,0xb0,0x7e,0x33,0x61,0x9f,0x52,0x74,0x61,0x75,0x73,0x5f, -0xa6,0x5c,0x41,0xe1,0x40,0xa6,0x5c,0x19,0xfd,0x5a,0xe4,0xaf, -0x01,0x77,0x93,0x57,0xf0,0x07,0x75,0x89,0xda,0x5c,0xa1,0x32, -0x5b,0x38,0xef,0xb3,0xe0,0x55,0x16,0x2f,0xd5,0xea,0x42,0xa3, -0x82,0xc3,0xfa,0x40,0x06,0x24,0x32,0x3a,0x83,0xa4,0x65,0x57, -0x43,0xe3,0xc0,0xc0,0x6c,0xc0,0x66,0x5e,0x75,0xe9,0xa5,0x9b, -0x36,0xed,0x6d,0xf1,0x3e,0xd4,0x77,0x5b,0xd4,0x62,0xdb,0x76, -0x57,0xf4,0xb6,0xbe,0xaf,0x0a,0x1c,0x14,0xb9,0x54,0x7e,0x8b, -0xae,0x57,0x1b,0xae,0xe3,0x85,0x93,0x79,0x8c,0x4e,0xd7,0x71, -0x50,0xfe,0x30,0xa7,0xc3,0x3a,0x7e,0x91,0xaf,0xa7,0x56,0x12, -0xa3,0xe3,0xd2,0x22,0x7d,0x18,0xfd,0x3a,0xda,0x4c,0xe2,0xc4, -0xcb,0xbb,0x81,0xe0,0xe6,0x5d,0x62,0x13,0xbb,0x66,0x8e,0x78, -0xcf,0xb7,0xe8,0x01,0x68,0x67,0xfd,0x02,0xa6,0xc9,0x18,0xe9, -0x2c,0x1b,0x51,0xb4,0xf5,0x03,0xf1,0x52,0x65,0x5b,0x75,0x73, -0xfc,0xe2,0x09,0x74,0x79,0xb9,0x45,0x80,0x83,0x81,0x8b,0x2d, -0xa8,0x90,0x31,0xd0,0x78,0x75,0xda,0x4d,0x35,0x64,0x52,0x0f, -0x0c,0x14,0xf3,0x35,0x8a,0xfd,0xf3,0xbf,0xd4,0xfb,0x67,0x91, -0xc7,0xcb,0x47,0x6a,0x6f,0x6f,0x7e,0xba,0x6d,0x72,0x52,0xdf, -0xe2,0x26,0x7b,0xd9,0xf0,0xc5,0x6f,0x8b,0xf6,0x26,0xb6,0x43, -0xd0,0x19,0x61,0x9d,0x94,0xd0,0x75,0x62,0xa1,0x1b,0xfd,0x07, -0x60,0xa5,0xd4,0x61,0x81,0x0e,0xa6,0x81,0x17,0x2f,0xa6,0xeb, -0x5c,0xa6,0xc6,0x0d,0x27,0x06,0x8e,0x8f,0xa4,0x39,0x6d,0xbf, -0xdd,0x2c,0x5e,0x01,0x09,0xf0,0xc9,0x76,0x5e,0x35,0xa8,0x98, -0x0b,0x1e,0x00,0x9a,0x96,0xa1,0x6f,0x17,0x1d,0x2a,0x9a,0xc2, -0x7b,0x3e,0xba,0x85,0x88,0xde,0xa4,0xbc,0x96,0xfc,0x6c,0x4c, -0x5f,0x3a,0x19,0x56,0xe2,0x60,0x7b,0x5b,0xf4,0xb1,0x17,0x47, -0xa6,0xa6,0x46,0x78,0x14,0x4c,0x7e,0x35,0xfe,0xe3,0x56,0xbf, -0x12,0x05,0xdb,0x16,0x7f,0x95,0xe8,0x31,0xee,0x55,0x64,0xab, -0xb5,0x7c,0xb7,0xc2,0x57,0x59,0x48,0x79,0x24,0x46,0x65,0xc0, -0x6f,0x50,0xee,0x56,0x32,0xb9,0xfb,0x16,0xe3,0x29,0xa4,0xa3, -0xbd,0xc5,0xe8,0x1b,0xd4,0x74,0x94,0xc7,0x8c,0x3e,0xaf,0x39, -0x7f,0x49,0xd0,0xe7,0x34,0xf4,0xe7,0x04,0x7d,0x5a,0xd0,0xe7, -0x29,0x5d,0xcf,0xe9,0xa0,0x25,0x96,0xa9,0xae,0x9f,0x78,0x9e, -0xd9,0xb4,0xd7,0x07,0x1d,0xd5,0xa6,0x3a,0x3f,0x57,0x9c,0xbf, -0x5e,0x73,0xfe,0x53,0x82,0x1e,0x7b,0x8b,0xed,0x85,0x31,0xca, -0xfb,0x7f,0x91,0xf5,0x54,0x1b,0x7c,0x1c,0xe2,0xf9,0xcc,0xd6, -0x92,0xb4,0x82,0x61,0x05,0x94,0x4d,0xc2,0xd8,0x4a,0x13,0x25, -0x4d,0x41,0xd9,0x94,0xfd,0x7d,0x28,0x1b,0x7b,0xb1,0xd2,0x76, -0xb4,0x9c,0x7e,0x77,0xa5,0x47,0xd4,0x84,0x11,0x50,0xc3,0x80, -0x05,0xe0,0x7e,0xe2,0xf9,0xa5,0xe4,0x37,0x5a,0x47,0x5b,0x77, -0x03,0x29,0xd1,0x67,0x5b,0x6b,0x02,0xce,0xd8,0x96,0xd8,0x95, -0xe5,0xcd,0x6e,0x4b,0x4c,0xe3,0x69,0xf3,0xf6,0xda,0x75,0x33, -0x25,0xee,0xca,0xe2,0x3d,0x5b,0xc8,0xea,0xf8,0xf7,0xc1,0x38, -0xb7,0x91,0xdd,0xea,0x39,0xf7,0x8a,0xb1,0xdc,0xa8,0x19,0xe3, -0x97,0x04,0x7d,0x4a,0x8c,0xf1,0x19,0x39,0x4c,0x6d,0x2f,0x07, -0x64,0xd9,0x42,0x7b,0x79,0xa7,0x6a,0x8c,0x79,0x82,0x64,0x45, -0x72,0x16,0x7d,0x45,0x5a,0x18,0x7e,0x8a,0x09,0x86,0xc9,0xac, -0xdc,0xf4,0xb2,0xf0,0x04,0x72,0x0b,0x2f,0x8d,0x0c,0xbf,0xb3, -0x9f,0xc4,0x22,0x73,0x8d,0xc4,0x94,0x6e,0x54,0x42,0x41,0x39, -0x5c,0xe1,0x2d,0x8d,0x69,0x47,0x62,0xf3,0x98,0x5c,0x68,0xab, -0x8d,0xb7,0xa6,0xbe,0xff,0x01,0xe5,0x3d,0xe5,0x30,0xda,0x4d, -0x5b,0x92,0xd6,0xc8,0x3c,0xbc,0x27,0xa7,0x6b,0x78,0x58,0x73, -0xbe,0x8a,0x87,0xe9,0xf9,0x4b,0xe2,0x7c,0x15,0x0f,0x53,0xfa, -0x0b,0xe2,0xfc,0xb5,0x9a,0xb5,0xd6,0x2a,0x78,0xfe,0x26,0x0d, -0xcf,0x5f,0x27,0xe8,0xd7,0x64,0xa0,0x5f,0xa7,0xa1,0x5f,0x23, -0xe8,0xd7,0x72,0x3a,0x35,0x47,0xe4,0xff,0xc2,0xb5,0x66,0x67, -0xef,0x35,0x23,0x25,0xe8,0xb8,0xd6,0x18,0x7d,0x4e,0x43,0x7f, -0x4e,0xd0,0xa7,0xd5,0x74,0xd5,0x75,0x66,0x39,0xdd,0xb4,0xdc, -0x41,0x7e,0x8d,0xf4,0x6a,0x76,0xfd,0x67,0x55,0x74,0xbc,0x3e, -0xa3,0xcf,0x69,0xe8,0xcf,0x09,0xfa,0xb4,0x86,0xae,0xe7,0x74, -0x18,0xe7,0xdb,0xd2,0x5e,0x7f,0x36,0xed,0xf5,0x01,0x57,0xfb, -0x37,0x15,0xfd,0x25,0x71,0xfe,0x14,0x3f,0x1f,0x9a,0x55,0x32, -0xdb,0xc3,0xc9,0x9e,0xf3,0x49,0x35,0xdd,0x20,0xe8,0xf3,0x6a, -0x3a,0xc6,0x8c,0x18,0x7d,0x1d,0xa7,0x5b,0xe9,0x38,0x5c,0xa8, -0x7b,0x9c,0xd2,0x5d,0x48,0xbf,0xad,0x4c,0x4d,0xbf,0x5b,0xd0, -0xef,0xd0,0xd0,0x1f,0x15,0xf4,0x63,0x1a,0xfa,0x23,0x82,0x7e, -0x54,0x43,0x3f,0x24,0xe8,0x47,0x14,0x3a,0xe5,0xc3,0x0b,0xe5, -0x13,0x9c,0x0e,0xe3,0x33,0x94,0xf6,0x79,0x6e,0x4f,0x7b,0x7d, -0xa3,0xee,0x6e,0xcd,0xf9,0x17,0x89,0xf3,0x6f,0x29,0x53,0xfa, -0x0d,0xb6,0xca,0x37,0x62,0x3e,0x6f,0x8d,0xf4,0x8d,0x13,0x58, -0x50,0xc3,0x23,0xac,0x6d,0x29,0x59,0x2e,0x56,0x66,0xc6,0x1d, -0xff,0xbf,0x8b,0x43,0x80,0x5d,0x20,0xf1,0xf6,0xe2,0x55,0x7e, -0x86,0xdd,0x72,0xf2,0x2e,0xc3,0x2e,0xd6,0xee,0x3a,0x68,0x4e, -0x1b,0x9f,0xf0,0xb9,0x8c,0x6e,0xe2,0xd6,0x05,0x49,0xde,0x45, -0x67,0x52,0x90,0xc1,0xa5,0xc4,0x16,0x8d,0xbf,0x16,0x9d,0x25, -0x0d,0x86,0x2b,0xff,0x00,0x9d,0xaa,0xd2,0x44,0x27,0x9e,0x79, -0x46,0xbe,0x38,0xfe,0xe5,0xc4,0xf8,0x2d,0x8a,0xf1,0xfb,0x90, -0x7a,0xbc,0xf5,0x5b,0x05,0xfd,0x2e,0xcd,0x3c,0x1c,0x16,0xf4, -0xc3,0x9a,0xf3,0x6b,0xc5,0xfc,0xdc,0xa3,0xcc,0x0f,0xcc,0xb3, -0xe0,0x23,0x2f,0xf2,0x11,0x9f,0xed,0xb4,0x7f,0xf7,0x61,0xf5, -0xbc,0xea,0x6d,0x82,0xfe,0x11,0x0d,0xdd,0x21,0xe8,0x1f,0xd5, -0xd0,0x13,0xd7,0xf9,0x84,0xe6,0xfe,0x8f,0x88,0xfb,0x1f,0x3d, -0xcb,0xfd,0xef,0xcf,0x70,0xff,0x4f,0x66,0xb8,0xff,0xa7,0x09, -0xab,0x57,0xaa,0x97,0x24,0xdd,0x6a,0x19,0xb4,0x45,0xb3,0xf4, -0xcd,0x44,0x85,0x74,0x66,0x77,0x97,0x2c,0x26,0x59,0x2e,0x2b, -0x54,0xc0,0x48,0x98,0xfd,0xac,0xbf,0x1f,0xb3,0xe3,0xb0,0xc9, -0x17,0x42,0xc9,0x0a,0x78,0x6c,0xb5,0x88,0xa7,0xbf,0x83,0x4b, -0xd4,0xc8,0x91,0x11,0x79,0xac,0x6c,0x56,0x1e,0x8b,0x72,0xbe, -0x02,0x1f,0x2e,0x55,0x28,0xf0,0xe1,0x2e,0xe5,0x57,0xf8,0xe1, -0x52,0x25,0x47,0x8c,0x60,0xcd,0x4b,0x60,0x38,0xa8,0x7c,0x41, -0x78,0x41,0x47,0xf8,0x47,0x75,0x71,0x13,0xf9,0xcc,0x7f,0x9d, -0x3f,0x47,0x76,0x93,0x5f,0xc7,0xbf,0x40,0x86,0xe3,0x4f,0x92, -0xf9,0xf8,0x5c,0xc1,0x3f,0x7d,0xfb,0x3f,0xff,0x53,0x3e,0x31, -0xf1,0xc6,0xc4,0x3b,0x13,0xf2,0x01,0x28,0xb1,0x8e,0x63,0x83, -0x63,0x00,0x6b,0x97,0xdc,0x89,0x63,0x73,0x1b,0x71,0x23,0x1d, -0xea,0x5a,0xae,0xc2,0x35,0xed,0x66,0x7b,0x8c,0x57,0x52,0xd1, -0x1f,0x15,0xf4,0x63,0x5e,0x26,0x8b,0xbb,0xe8,0xda,0x5d,0x25, -0x3f,0x2d,0x45,0x00,0x77,0xd7,0xc8,0x73,0x7b,0x24,0x2d,0xcc, -0xae,0x32,0x59,0xdf,0xc1,0x11,0x6c,0x15,0x19,0x70,0x60,0xf8, -0xe6,0xf0,0x4f,0xac,0x9d,0x0f,0x7c,0x2f,0x45,0xcc,0x1d,0xd5, -0xee,0x99,0x1f,0xc5,0x8d,0x7e,0x94,0x2a,0x86,0xbb,0x13,0x80, -0xbb,0xf0,0x39,0x20,0xee,0x94,0x02,0x98,0x64,0x7d,0xf3,0x58, -0xab,0x6d,0xd7,0xa6,0xe1,0x8d,0x96,0xe1,0xea,0x4b,0xd7,0x66, -0x40,0xdc,0x5d,0xfd,0xc1,0x8f,0x7c,0x70,0xc3,0x55,0xae,0x11, -0xcb,0x9c,0x7c,0x5d,0x4d,0xff,0x7c,0xf8,0x82,0x8b,0xaf,0x1d, -0xed,0x6c,0x18,0x9d,0x49,0x0f,0xb9,0xcb,0xf9,0xda,0x23,0x8f, -0x3d,0x19,0x1b,0xaf,0x0f,0x0f,0x8a,0x31,0x7a,0x44,0x8c,0xd1, -0x51,0xcd,0xd8,0xdd,0x22,0xe8,0x1f,0xe4,0x74,0xa8,0x17,0xb2, -0x1b,0xc7,0xd4,0xc3,0xc6,0xd4,0xc8,0xf6,0x43,0x13,0xfd,0x72, -0x81,0x0c,0xae,0x81,0x1a,0xe9,0xeb,0xc0,0x9f,0xca,0x7e,0x58, -0x84,0x35,0x5d,0x32,0xf2,0xa7,0xda,0x0a,0xd0,0xa3,0x15,0xc0, -0x32,0xda,0x14,0x2b,0x80,0xf8,0x31,0xe3,0x98,0xd0,0x1d,0x8f, -0x30,0x34,0xc7,0x71,0xfa,0xe1,0x41,0xf6,0x03,0x64,0x5e,0x11, -0xc6,0x7a,0x8b,0xec,0x03,0x34,0x11,0x23,0x74,0x47,0xe4,0xbf, -0x2e,0x56,0x7e,0x7d,0x0a,0x5b,0xb2,0x2b,0x49,0x7e,0x8e,0xc5, -0x44,0x0e,0x53,0x31,0xe6,0x76,0x17,0x70,0xaf,0x8b,0x49,0xb1, -0x2d,0x1a,0x49,0x44,0x81,0xd7,0x35,0x12,0x34,0xb1,0xb6,0xad, -0x5d,0xfb,0xc6,0xe0,0x85,0xab,0xeb,0xea,0x56,0x5f,0x38,0xf8, -0xc6,0x1b,0x8d,0xab,0xda,0xed,0xf6,0xf6,0x55,0x8d,0xf7,0xde, -0x7e,0x3b,0x59,0x37,0x40,0xea,0x9b,0xe6,0x6f,0x9e,0xa7,0xff, -0x37,0x4d,0xd8,0x3b,0xd6,0xb5,0x5f,0xd6,0xbe,0xae,0xc3,0xfe, -0xca,0x00,0x96,0x58,0x01,0x19,0xcb,0xc6,0x46,0xce,0x22,0x1f, -0x15,0x63,0x68,0x44,0x7e,0xad,0x65,0xfc,0xaa,0x97,0x54,0xf4, -0xbb,0x05,0xfd,0x0e,0x0d,0xfd,0x51,0x41,0x3f,0xa6,0xa1,0x3f, -0x22,0xe8,0x47,0x35,0xf4,0x43,0x82,0x7e,0x44,0x43,0xbf,0x45, -0xd0,0x3f,0xa8,0xd0,0xd1,0x37,0x7e,0x82,0xd3,0x61,0xf7,0x0a, -0xa4,0x7d,0xce,0xdb,0xd3,0xde,0x17,0x64,0xa5,0xfa,0xfc,0x8b, -0xc4,0xf9,0xb7,0xe8,0x95,0x9e,0xb0,0xad,0x72,0x95,0x0c,0x4d, -0x18,0x5f,0x80,0x88,0x3d,0xcb,0xca,0xca,0x28,0x21,0x9d,0x40, -0x70,0xa6,0x82,0xf6,0xcd,0x0a,0xf0,0x55,0x87,0xcb,0xce,0x59, -0xcc,0xb6,0x17,0xf0,0x3e,0xe8,0xb0,0x40,0x24,0x7a,0x1f,0x60, -0x37,0x32,0x2a,0x28,0x0c,0xa3,0xb2,0x2d,0xa9,0x3f,0xb0,0xad, -0xcb,0x88,0xfb,0x93,0x9e,0x5f,0x0a,0x60,0x24,0x28,0x65,0xcb, -0x29,0xcb,0x40,0x69,0xe0,0x72,0xca,0x73,0xe5,0x94,0xe7,0xca, -0xa9,0x94,0x2d,0xa7,0x3c,0x55,0x4e,0x79,0xaa,0x9c,0x4a,0xd9, -0x72,0x94,0xb2,0xe5,0xe8,0xe8,0x06,0x29,0x5b,0x0a,0x51,0xfe, -0xc4,0x86,0x96,0xc6,0x10,0x71,0x2d,0x90,0x2f,0xc6,0xbf,0x48, -0x86,0xe2,0xdf,0x26,0x73,0x29,0xe6,0x07,0x54,0xaa,0xc6,0x5d, -0x4e,0x6b,0x77,0xf4,0x54,0x19,0x12,0xe3,0x79,0x58,0x8c,0xe7, -0x61,0xd5,0xf8,0xb7,0xa3,0x4c,0xa9,0xe5,0xb2,0x28,0x90,0x98, -0x47,0x31,0x2f,0x5e,0xe4,0x07,0x3e,0x9b,0x22,0x36,0x6a,0x54, -0xfd,0xdd,0xfd,0xaa,0x79,0xb3,0xa0,0x2c,0xaa,0xe5,0xb2,0x48, -0x35,0x9f,0x28,0x8b,0x6a,0xb9,0x2c,0x0a,0xf0,0x1c,0xf7,0x33, -0xf2,0x51,0xba,0x7f,0xda,0xa5,0x06,0xe9,0x02,0xf0,0x22,0x35, -0xf2,0x5a,0x09,0x36,0x4c,0x92,0x95,0x32,0x95,0x67,0x52,0xab, -0x3a,0xc5,0xe8,0x23,0x2b,0xe0,0x45,0x17,0x1c,0x38,0x91,0x10, -0xaf,0x75,0x24,0x5a,0x6d,0x81,0xc6,0x0f,0x6b,0xb6,0x96,0xad, -0x4e,0x57,0x02,0xa9,0xa5,0x53,0x95,0xde,0x0f,0x11,0x06,0xd2, -0x02,0x9f,0x7f,0x17,0xf9,0xb3,0x3d,0x34,0xd1,0x32,0x72,0xa1, -0x2d,0x5a,0xd4,0x1e,0x9d,0x6d,0x8d,0x5e,0x3c,0xe1,0xad,0x9f, -0xbc,0x64,0xf4,0xe8,0xa7,0x88,0xaf,0x71,0x4d,0xa7,0x33,0xbe, -0xcd,0xd9,0xb9,0x9a,0x5c,0xee,0x88,0xcc,0xf7,0x38,0x27,0xfa, -0x6b,0xbc,0x83,0x81,0xca,0xb6,0x85,0x23,0x33,0xb3,0x47,0x16, -0x5a,0x1f,0xff,0x5a,0xfc,0xd7,0xae,0xbe,0xb9,0x90,0xc1,0x10, -0x9a,0xeb,0x73,0x25,0xf6,0xc0,0xfd,0xb8,0x1e,0x7d,0x6c,0x3d, -0x46,0xd4,0xf4,0x47,0x04,0xfd,0xa8,0xa0,0xe7,0xc9,0xfb,0xe5, -0xa7,0x39,0x1d,0x62,0xd5,0x9b,0x55,0xe7,0xdf,0x22,0xce,0xff, -0x60,0x84,0xed,0x99,0xd4,0xf2,0x90,0xbf,0x82,0x75,0x76,0xac, -0xd2,0x4b,0x89,0xea,0x34,0x0c,0xd7,0x64,0xcd,0x5c,0xf7,0x2a, -0x25,0x25,0x38,0x45,0xc8,0xf3,0x42,0x46,0x5c,0xc8,0x67,0x0b, -0x21,0x8f,0xab,0x82,0x28,0xcb,0x83,0xef,0x98,0x4a,0x75,0x5b, -0x99,0x2d,0x11,0xa2,0xac,0x15,0xa2,0xd4,0x29,0x26,0xbc,0x64, -0x73,0xc1,0x19,0xd6,0x1a,0xc5,0xca,0x3b,0x36,0xe1,0xbe,0x6a, -0xc0,0x85,0xc4,0xe0,0x78,0xb9,0xbc,0xfa,0x8b,0x81,0x7b,0xf3, -0x4c,0xd0,0xf3,0xc8,0xc5,0xfd,0xbc,0x41,0x8b,0x4b,0x41,0x2e, -0x9b,0x42,0x2e,0x8b,0x6c,0x89,0x3f,0x30,0x33,0x3a,0x3a,0x43, -0xb6,0xc3,0xd7,0xf8,0x03,0xa4,0x27,0xfe,0x03,0x39,0x6b,0xe0, -0x20,0xfd,0x6f,0x60,0xe9,0x6f,0xe4,0xc8,0x4d,0x37,0x09,0x1e, -0x3c,0x1f,0xc7,0xba,0x8e,0x8d,0x75,0x98,0xc7,0x4c,0xe8,0x63, -0xcd,0xe0,0xde,0x54,0xcf,0xf6,0xd0,0x4f,0x31,0x7a,0x2b,0xa5, -0x6f,0xc7,0x39,0x63,0xf4,0x3b,0x38,0x9d,0xfe,0x35,0x61,0x76, -0x05,0xa3,0x1f,0xd3,0xd0,0x1f,0x11,0xf4,0xa3,0x9c,0xde,0x45, -0xe9,0x1b,0x70,0x0f,0x65,0xf4,0x23,0x9f,0x52,0xdf,0xf7,0x16, -0x41,0xff,0xa0,0x42,0x5f,0x9e,0x27,0x33,0xb8,0x87,0xd6,0xf3, -0x3c,0xc7,0x1f,0xa6,0x7d,0xce,0xdb,0x35,0xd7,0x79,0x44,0x9c, -0x7f,0xb7,0xea,0xfc,0x59,0xdc,0x43,0xd9,0xf9,0xb7,0x7c,0x4a, -0xe2,0xbd,0xb0,0x5b,0xc9,0x5e,0xdc,0x43,0x1f,0x48,0xdd,0x43, -0x53,0xa4,0xea,0x8a,0x7b,0xa8,0x53,0x28,0x31,0x7a,0xb1,0x9b, -0x1a,0x55,0xbd,0x09,0xff,0xce,0xed,0x10,0x3b,0x17,0xba,0xd0, -0x27,0x99,0xce,0x2f,0xd3,0xb3,0x63,0x07,0x29,0xdf,0xb1,0x43, -0xbb,0x15,0x86,0x02,0xe4,0xe5,0xa8,0xdc,0x12,0x8d,0x2e,0x3d, -0xaf,0x35,0x27,0xbc,0x1d,0x4e,0x83,0xb0,0x2f,0x2f,0xc5,0xbd, -0x90,0x8d,0xcb,0xe1,0x4f,0xb1,0x35,0xb4,0x81,0xae,0xad,0x66, -0xac,0xe7,0x5d,0x21,0x6d,0x3e,0x81,0x10,0xbc,0x4a,0xa1,0x77, -0x60,0xb4,0xb3,0xc2,0x9f,0xa9,0x2a,0x64,0x4a,0x71,0x7f,0x3e, -0x8e,0xe8,0xd9,0x2e,0xc2,0x71,0xb1,0xf0,0x2a,0x25,0x94,0x8f, -0x4d,0xac,0x4c,0x3f,0x55,0xd5,0x20,0x9d,0x19,0xfc,0xaf,0x6e, -0xfa,0xa6,0x72,0xf3,0x0d,0x07,0xda,0xa6,0x3a,0x3c,0xc6,0x35, -0x59,0xd6,0xda,0x90,0x3b,0x1a,0xfb,0xf8,0xff,0xcc,0x50,0x3e, -0x88,0xfb,0xf6,0x1f,0xaa,0x68,0xee,0xf1,0x94,0x58,0xeb,0xec, -0xa6,0xe8,0x6a,0xf2,0xc0,0xea,0xf8,0x05,0x1c,0xcf,0x42,0x9f, -0x17,0x75,0xd8,0x27,0x10,0x6f,0x75,0xdb,0xf2,0x1c,0xd3,0x65, -0xa5,0x63,0xf8,0xfb,0xaa,0xe5,0x33,0xe4,0x73,0xc8,0x2f,0x0d, -0x8c,0xaf,0x4f,0x4a,0x82,0xfe,0x05,0xe4,0x17,0x46,0x3f,0x7a, -0x52,0x91,0xdd,0x79,0xf2,0x2e,0xe4,0xbb,0x46,0xbe,0xe7,0xc4, -0x90,0xbe,0x89,0x8e,0xd7,0xcb,0x78,0x9d,0x26,0x76,0xfd,0xe5, -0xcd,0xca,0x7a,0x22,0x2f,0x23,0xa6,0xa8,0x89,0xf9,0xc5,0x5f, -0x10,0xd7,0xa1,0xf4,0x13,0xe2,0xfc,0xcb,0x49,0x83,0xea,0xfc, -0x04,0x7d,0x9d,0x34,0x1b,0x7f,0x52,0x22,0xcb,0x54,0xb5,0x21, -0xbf,0x94,0x01,0x44,0x70,0x11,0x2b,0xff,0x5f,0xb4,0x52,0x8d, -0x30,0x35,0xd6,0x48,0x2f,0x2a,0x80,0xe9,0x8b,0x59,0xcf,0x11, -0x99,0x17,0x89,0x02,0xcc,0x11,0x30,0x60,0x0e,0x87,0x76,0x42, -0x44,0x24,0x97,0x63,0x8d,0xf2,0x79,0x05,0x4d,0x93,0x00,0x1a, -0x59,0x5c,0xe4,0x97,0xf1,0x9b,0xf7,0xec,0x99,0x79,0xfc,0x71, -0x52,0x4f,0x8a,0x6a,0x86,0xdd,0x64,0x4f,0xfc,0xf1,0xde,0xb1, -0xee,0x57,0x12,0xfb,0x06,0xbc,0x7f,0x0b,0x1b,0xc7,0x90,0xa4, -0xda,0x4f,0x1e,0x15,0xf4,0x63,0xa1,0xc4,0x38,0x9e,0x8f,0xef, -0xd9,0xc2,0xdf,0x7f,0xbb,0xea,0xfc,0xc3,0xe2,0xfc,0xc3,0x21, -0x45,0xa7,0xe9,0x80,0xf3,0x29,0x73,0x5c,0x0f,0x55,0xdf,0x2c, -0x18,0x05,0x3d,0xdb,0xfb,0xaf,0xd0,0x2b,0x5c,0xad,0x07,0xab, -0x77,0x7d,0x33,0x13,0x96,0xac,0x5a,0x5d,0x3e,0x2f,0xc3,0xcf, -0xb4,0x57,0xf3,0x22,0x82,0x3e,0xcd,0x02,0x62,0x07,0xd1,0x12, -0xe8,0xa5,0xb1,0xb0,0x7d,0x79,0x46,0x37,0xdd,0xd1,0x15,0x9e, -0x2b,0xa2,0x1f,0x28,0x33,0xce,0xdd,0x2f,0x8f,0xbe,0xf7,0xbf, -0x1d,0xa3,0x13,0x87,0xc8,0x17,0xef,0x5f,0x7a,0x42,0x91,0x49, -0x47,0x71,0x7c,0xfc,0x6c,0x7c,0xc2,0x09,0xd9,0x76,0x14,0xf7, -0x4f,0x46,0xbf,0x43,0x43,0x7f,0x54,0xd0,0x8f,0x69,0xe8,0x8f, -0x08,0xfa,0x51,0x0d,0xfd,0x90,0xa0,0x1f,0x11,0xf4,0x79,0xd0, -0x1d,0x38,0x1d,0xb4,0x93,0x1d,0x52,0xba,0xe7,0xb9,0x3d,0xed, -0xf5,0x41,0xd7,0x54,0x9f,0xff,0x35,0x71,0xfe,0xad,0x9a,0xf3, -0x2f,0x12,0xf4,0x5b,0xc2,0x4a,0x7d,0xe4,0x9f,0xd0,0xfb,0x9e, -0xc6,0x1e,0xe6,0xad,0xb0,0x87,0x4a,0xa2,0xea,0xa4,0x93,0xef, -0x7d,0x4d,0x8b,0x19,0xeb,0xc2,0xa9,0xa7,0xab,0x00,0x23,0x37, -0x05,0xd8,0x11,0xc3,0xa9,0xea,0x2a,0xd3,0xc4,0x1b,0x19,0x14, -0x70,0x38,0x83,0x01,0x10,0xe7,0xf8,0xa9,0x48,0xd0,0xea,0xf9, -0x5f,0x40,0x4c,0xa3,0x88,0x57,0x3a,0x77,0x88,0x4f,0x0d,0xfc, -0x2f,0x20,0xd5,0x80,0xe5,0xad,0x70,0xa0,0x8c,0xc0,0x15,0x41, -0x59,0x73,0x82,0xa1,0x0e,0x8b,0xab,0xdd,0xeb,0x23,0x88,0x50, -0x0f,0x91,0x1d,0xe7,0x8f,0xf5,0x74,0x8e,0x78,0xbc,0x0d,0x93, -0xfb,0x46,0xc4,0xc7,0x4b,0xe2,0x6f,0x99,0x8a,0x48,0x4b,0xfb, -0x9a,0xe6,0x35,0xd4,0xba,0xfc,0xa4,0xa9,0x28,0xfe,0x3c,0xfb, -0x9c,0x1f,0x9a,0xab,0xdd,0xde,0xf2,0x81,0xd9,0x0d,0x47,0x36, -0xfb,0x95,0x8f,0xb7,0x6e,0xf2,0x13,0xbf,0x77,0xa8,0x92,0x3c, -0xd6,0xe8,0xec,0x99,0x69,0xa7,0x9f,0xe2,0x31,0xfc,0xc4,0xc6, -0xf4,0x27,0x6c,0x6e,0xc8,0x0b,0x69,0x78,0xe5,0xb0,0x18,0xeb, -0xc3,0x61,0x49,0xe8,0x87,0xc7,0x75,0x0d,0x54,0x4c,0xb5,0x32, -0x9c,0x91,0x32,0xd2,0x69,0x71,0x46,0x95,0xc9,0xf8,0x92,0xca, -0xf7,0x81,0x33,0x2a,0xe0,0x38,0x23,0x1f,0xdb,0xa3,0x33,0xe3, -0x8c,0x92,0x3b,0x0e,0xcb,0xc7,0x2b,0xbc,0xa1,0x9e,0x36,0x3a, -0x4c,0xc3,0x23,0xfb,0x26,0x1b,0x60,0xe4,0x02,0x0d,0x77,0x9e, -0x86,0xf1,0x71,0x44,0xd6,0x34,0xf3,0xef,0xba,0x86,0x5d,0x95, -0x9e,0xd0,0xbd,0x5b,0x61,0x7c,0xfc,0x9b,0x6e,0xdd,0x00,0x43, -0x96,0x7f,0x60,0xc9,0x02,0x23,0x73,0xb0,0x7d,0xa6,0xc7,0x29, -0x3e,0x28,0xe3,0x71,0x1c,0xc7,0xe9,0x67,0x49,0xe3,0x34,0x0f, -0xe3,0xc1,0xe9,0x5a,0x9e,0x57,0x9f,0xaf,0xe6,0xf9,0xe3,0xc0, -0xf3,0xfc,0xfc,0xbb,0x35,0xe7,0x1f,0x12,0xe7,0xdf,0xac,0x9e, -0x07,0xd4,0xeb,0xfd,0xdc,0x1e,0xd8,0x91,0x58,0x6b,0x62,0xed, -0x78,0x71,0x6d,0xf2,0xbb,0xa7,0xfd,0xbb,0xfb,0xd5,0x6b,0x0b, -0xed,0x01,0x3f,0xb7,0x07,0xd4,0x74,0x87,0xa0,0x7f,0x1a,0xaf, -0x84,0xf3,0xad,0xfb,0x04,0xb5,0x07,0x6c,0x74,0x0d,0x3c,0x0f, -0x0c,0xad,0xa0,0xf5,0x1c,0x1a,0x5f,0x68,0xca,0xaa,0x3a,0x7b, -0x35,0x61,0xf5,0xba,0x03,0x8b,0xc1,0x8c,0x13,0x0e,0xab,0xad, -0x9c,0x97,0x0e,0x33,0x23,0x1e,0x0f,0x98,0x09,0x55,0x5a,0xab, -0x62,0xdf,0x59,0x15,0xd7,0x94,0x55,0x51,0x67,0xad,0x8a,0x6b, -0xca,0x8a,0x1a,0x6b,0x29,0x5e,0x4a,0x87,0xed,0xa0,0x0a,0xce, -0xb0,0xec,0x6f,0x07,0xcf,0xbc,0xab,0x5e,0x64,0xfc,0xc5,0xfc, -0x02,0x2e,0x2d,0xcc,0x28,0x61,0xed,0xd5,0xb6,0x85,0x23,0x26, -0x91,0x4a,0xe9,0x90,0xc9,0x5b,0x55,0x63,0xf6,0x55,0x97,0xc7, -0x1a,0x1a,0x62,0x97,0xaf,0xb2,0x8f,0x55,0x51,0xc3,0x8f,0xbb, -0xb4,0x96,0x4e,0x55,0xf5,0x55,0x56,0xf6,0x55,0x75,0xcf,0x75, -0x54,0x55,0x75,0xcc,0x19,0x8c,0xc8,0x4c,0x94,0xa9,0x8c,0x06, -0x34,0xff,0xfa,0x73,0x72,0xe4,0xf2,0x9c,0x9c,0x04,0x37,0x09, -0xd9,0x33,0x81,0x7b,0x22,0xc3,0xf7,0xdd,0x66,0x54,0xd3,0x1f, -0x15,0xf4,0x63,0xc6,0x84,0x0c,0x9b,0x40,0x19,0xd6,0xc6,0x65, -0x18,0xab,0xfd,0xd1,0x40,0xe7,0xcd,0x84,0xd7,0x09,0xb2,0xeb, -0x70,0xac,0x2c,0xa3,0x3f,0x2a,0xe8,0xc7,0xfe,0xc4,0x64,0x5b, -0x03,0xb5,0xd7,0x4d,0x74,0x3e,0xa3,0xd0,0x19,0x49,0x4a,0xc2, -0x11,0x0d,0xc0,0x94,0x0c,0xa8,0x26,0x4d,0x9d,0x96,0x3c,0x20, -0x54,0x4b,0xc8,0x42,0x6e,0xc5,0x39,0xca,0xa2,0x67,0xb3,0xf4, -0xcb,0x06,0xde,0xa7,0xb1,0x01,0x13,0x20,0xbf,0x21,0xd5,0x01, -0x54,0x9e,0x79,0xca,0x6a,0xd0,0xc4,0xa8,0xa4,0x4a,0x24,0xe0, -0x47,0x24,0x9e,0x3d,0x4c,0x54,0x00,0xa1,0x42,0x79,0x45,0x97, -0x99,0x06,0x64,0xa4,0x6e,0x3e,0x42,0x6a,0x86,0x27,0x07,0x87, -0x3a,0xf7,0x6c,0x76,0x74,0x4c,0x07,0x33,0xf8,0xcf,0xc6,0x2f, -0xf2,0xf6,0xd5,0x6e,0xec,0x5d,0xbd,0xb6,0x67,0xb4,0x73,0xdb, -0xee,0x9a,0xde,0xd9,0xe0,0xda,0x4b,0x7d,0xfd,0xf6,0x69,0xf9, -0xfa,0xce,0xce,0xb6,0x60,0x51,0x81,0x75,0xcb,0x54,0xcb,0xea, -0x70,0xb5,0x2e,0xad,0x3b,0xcd,0x30,0xd0,0xde,0xde,0x1a,0x5c, -0xd5,0xd3,0x16,0x2e,0x2e,0x28,0x3b,0x6f,0x5d,0xcb,0xaa,0x40, -0x45,0x57,0x47,0x4b,0x5d,0x8b,0x7a,0x8c,0x1f,0x11,0x63,0x7c, -0x54,0x8c,0x7d,0x1e,0x8c,0x31,0xa7,0x73,0x5c,0x33,0xea,0x15, -0x67,0xe4,0xdb,0xb0,0x16,0xd4,0x01,0xd0,0x2b,0xb4,0x39,0x36, -0x29,0x3b,0x66,0xca,0x82,0x51,0xc7,0x62,0x75,0xc5,0x0c,0xb9, -0x03,0xc2,0xc6,0xca,0xbb,0x76,0x96,0xf8,0x95,0xf6,0x43,0xd6, -0x62,0x65,0x0d,0x94,0x28,0xb9,0xa6,0x2a,0xb4,0x8e,0x02,0x33, -0x01,0xe3,0xcd,0x45,0x75,0x2d,0x07,0x91,0x6f,0xbb,0x6a,0xf7, -0xf0,0x76,0x77,0x57,0x78,0xbe,0x7f,0x78,0xb8,0x7f,0xcb,0x37, -0xe3,0x5f,0x9c,0x21,0xcb,0x8f,0xef,0xbd,0xfa,0x07,0x3b,0xf7, -0x35,0x07,0x5a,0xc7,0x86,0x3a,0x1c,0x1d,0x83,0x93,0x3f,0x5b, -0x3a,0x2e,0x9f,0x98,0xfe,0x89,0x5e,0xbe,0x50,0xc2,0x32,0xb7, -0x92,0xdc,0x88,0x3e,0xeb,0x87,0x41,0x58,0xb2,0x6e,0xad,0x52, -0xa6,0x02,0xc2,0x89,0x2a,0x51,0x2c,0xd1,0x40,0x66,0x69,0xa2, -0x7a,0xac,0xcc,0x7e,0x97,0xd2,0x12,0x62,0x3f,0xfd,0x70,0x23, -0x6b,0x09,0x61,0x10,0x55,0x4a,0x65,0x66,0xcf,0xf2,0x53,0xa0, -0x8f,0xc4,0x7e,0x85,0x7a,0x8a,0x37,0x8b,0x48,0x54,0x98,0x52, -0x0a,0xb5,0x31,0xdf,0xb4,0x82,0x6b,0x2f,0x00,0x53,0xd5,0xa4, -0x54,0x18,0x75,0xb1,0xf6,0x19,0x93,0x33,0x0f,0x3f,0x0c,0x95, -0x5d,0x1f,0x22,0xd3,0xf1,0xaf,0x90,0xe9,0x81,0x5f,0x4d,0x4c, -0xfc,0x6a,0x80,0xcd,0x5f,0x19,0x7d,0x37,0x2f,0xae,0x9d,0x76, -0xb6,0x76,0xfe,0xc8,0xe9,0x74,0x5e,0xbd,0xb8,0x06,0xdb,0xf9, -0xbc,0x3a,0x70,0x5e,0xcb,0xe8,0x9a,0x82,0x3e,0xc1,0x6e,0xe9, -0xaa,0x8c,0x35,0x95,0xd5,0x3a,0x60,0xd5,0xdf,0x81,0x2d,0x31, -0x17,0xb3,0xca,0x60,0xcc,0x08,0x67,0xc5,0x84,0x31,0x7d,0x51, -0xb3,0x66,0xdc,0xdc,0x4c,0x53,0x01,0x47,0x48,0x83,0x06,0x39, -0x62,0x82,0x77,0x37,0xa5,0x07,0x8d,0xc8,0x07,0x26,0x26,0x96, -0x8e,0xab,0xc1,0x22,0xac,0x96,0x74,0x58,0x06,0x73,0xa0,0x4c, -0xfa,0x12,0x40,0x9e,0xac,0x7c,0x73,0x66,0x45,0xa8,0xa4,0x73, -0x51,0x86,0x49,0x31,0xaf,0xda,0xf6,0x96,0x52,0xa3,0x4d,0x29, -0x31,0x8b,0xd3,0x79,0xa3,0x42,0x55,0x0a,0xd0,0x42,0xd1,0x50, -0xd6,0x0d,0x17,0xb1,0x46,0x79,0x18,0x95,0x90,0x35,0xe1,0x89, -0x1b,0x95,0xa8,0xc4,0x29,0xfc,0xa0,0xa8,0xd0,0x3a,0xc4,0x97, -0x60,0xdf,0x22,0x13,0xef,0xe1,0x01,0x95,0xc3,0x42,0x82,0xfb, -0x17,0x66,0xbe,0x87,0x25,0xc3,0x58,0xb9,0x30,0xf9,0xc4,0xf1, -0x8b,0x37,0x6f,0xbe,0xf8,0xbe,0xff,0x6e,0x0f,0xb4,0x41,0xa1, -0x30,0x3a,0xd7,0x60,0x7b,0x4e,0xe1,0xbe,0xca,0xb0,0xc0,0xb7, -0xd5,0x4a,0x2a,0xfa,0xdd,0x82,0x7e,0x87,0x86,0xfe,0xa8,0xa0, -0x1f,0xd3,0xd0,0x1f,0x11,0xf4,0xa3,0x1a,0xfa,0x21,0x41,0x3f, -0x22,0xe8,0xf3,0x50,0x9f,0x99,0xd3,0x41,0xa2,0xaf,0x4b,0xfb, -0x3c,0xb7,0xa7,0xbd,0x3e,0xe8,0x13,0xea,0xf3,0xbf,0x26,0xce, -0xbf,0x55,0x73,0xfe,0x45,0x82,0x7e,0x4b,0x2d,0x93,0x0b,0x1b, -0x28,0x0f,0x43,0x5d,0x68,0x3f,0x60,0xc7,0xf4,0x3c,0xab,0x5e, -0x99,0x55,0x3f,0x4c,0xa2,0x7f,0x25,0x2f,0x55,0xa2,0x98,0xb6, -0x16,0x27,0x82,0x26,0x4e,0x7d,0x31,0xf3,0xc6,0xa2,0xdb,0xc1, -0x2e,0x41,0x82,0xa8,0x93,0x1e,0x01,0x7a,0x0c,0xd0,0x23,0x46, -0x8f,0x6d,0xb0,0x29,0xd2,0xe3,0x26,0x7a,0x80,0xdb,0xc1,0x8e, -0x59,0x7f,0x7a,0x2c,0x23,0x0e,0x00,0x7f,0x3d,0xaa,0xd1,0x81, -0x56,0xb3,0x09,0xa3,0x2c,0xbc,0xa0,0xb8,0x31,0x5d,0x84,0x93, -0x4b,0x74,0xd3,0x97,0x27,0x16,0x16,0x26,0x66,0x72,0x6d,0xcd, -0x35,0x15,0xae,0xd2,0x6c,0xc5,0x1f,0xe1,0xed,0x2c,0xa9,0x6e, -0x2c,0xd7,0x5b,0x83,0x95,0xd1,0xad,0x5d,0x15,0xd4,0x7e,0x8a, -0xed,0xda,0xb3,0x67,0x17,0x79,0x2c,0xbe,0xab,0x2d,0x16,0x1d, -0xa8,0x29,0xaf,0x29,0x37,0xe7,0x72,0x07,0x85,0xd7,0x52,0x53, -0xed,0x30,0x19,0x72,0x8d,0x9e,0x89,0x03,0x6b,0xc8,0x27,0xd5, -0xe3,0xb7,0x28,0xc6,0xef,0x43,0x9a,0x71,0x3d,0x2c,0xe8,0x87, -0xc5,0xb8,0x9e,0x91,0x3f,0x49,0xf5,0xe5,0x2a,0x69,0x0e,0xc6, -0xd5,0x8e,0x4e,0x50,0x49,0x5b,0xc3,0x66,0x85,0x71,0x55,0x27, -0x3b,0x30,0x87,0x76,0x76,0x31,0x03,0xcb,0xc0,0xf7,0xe2,0x93, -0xea,0x11,0x09,0x05,0x91,0xcb,0x4d,0x8a,0x82,0xcc,0x46,0x60, -0xd3,0x58,0x85,0xb7,0xa8,0xb2,0x67,0x7b,0x54,0xfb,0xbe,0x07, -0xce,0xb7,0xd5,0xc6,0x3f,0xb1,0xe6,0xc0,0x84,0x87,0xbf,0x1d, -0x7f,0x87,0x4f,0xa2,0xce,0x1a,0x4f,0xe2,0xf9,0x79,0x78,0x07, -0x4e,0xd7,0xf2,0xa4,0xfa,0x7c,0x35,0x4f,0x7e,0x12,0x75,0xdc, -0x78,0x0a,0x4f,0x7e,0x12,0x75,0x5c,0x76,0xfe,0xcd,0x9a,0xb1, -0xfb,0x85,0xe0,0xe1,0x4f,0xa9,0x79,0x18,0x75,0x58,0x46,0xbf, -0x37,0x03,0xfd,0xe3,0x1a,0xba,0x5b,0xd0,0x3f,0xc6,0xe9,0xa5, -0xd4,0x48,0xdc,0x83,0x6b,0x27,0xc2,0xfd,0x31,0xf7,0xa8,0xe8, -0x8f,0x08,0xfa,0x51,0x0d,0xfd,0x90,0xa0,0x1f,0xd1,0xd0,0x13, -0xd7,0xb9,0x9d,0xd3,0xa1,0xc6,0xe3,0x08,0xd2,0x3b,0xd9,0xb8, -0xc5,0x25,0x15,0xfd,0x11,0x41,0x3f,0xaa,0xd0,0xe9,0x78,0x8e, -0xe0,0x1a,0xef,0xe4,0xe3,0x59,0xaf,0x3a,0xff,0x90,0x38,0xff, -0x88,0xe6,0x3a,0x89,0xeb,0xdf,0x9e,0xf6,0xfa,0x30,0xce,0xea, -0xeb,0x1c,0x16,0xe7,0x1f,0xe6,0xe7,0x7b,0xa0,0xaf,0x0a,0x5e, -0xa7,0x4b,0xf3,0x9c,0x8c,0xfe,0xa8,0xa0,0x1f,0xd3,0xd0,0x6f, -0x11,0xf4,0x0f,0xc6,0x25,0x55,0xbe,0x15,0x24,0x5a,0x5d,0xcf, -0xda,0xc7,0xda,0x57,0xca,0x63,0x4d,0x49,0xc0,0x4a,0x54,0x00, -0x48,0x83,0x56,0x4f,0xe1,0xfa,0x2c,0x5e,0x7b,0x9f,0x39,0x96, -0xa0,0xc7,0x5d,0x16,0xfa,0x63,0x02,0xad,0x56,0xd8,0x04,0xca, -0x94,0xfe,0x02,0x1c,0xfe,0xe4,0x73,0x5b,0x2d,0xb3,0xb1,0x9e, -0x4e,0x9e,0x7f,0x95,0x6d,0xad,0x69,0xa9,0x1e,0xaf,0xd2,0x19, -0x7f,0x28,0xff,0x38,0xfe,0xfd,0xd1,0x68,0x7e,0x45,0xad,0x8d, -0xec,0x5a,0x7a,0x0f,0xa1,0x4f,0xed,0xb3,0xf7,0xb3,0x3a,0x73, -0xf4,0xcb,0x3c,0xf6,0x87,0xce,0x91,0xc6,0xe1,0x8d,0x72,0x31, -0xc5,0x4b,0x49,0x0b,0xcc,0x28,0xdb,0x78,0x16,0xb4,0x90,0x6d, -0xc6,0x45,0xa5,0xd7,0x31,0x48,0x9e,0x88,0x39,0x68,0xb6,0xb8, -0x88,0x5b,0xe7,0x6a,0x3a,0x75,0xd1,0xa9,0xa5,0x17,0x49,0x99, -0xe1,0x5b,0xe4,0x86,0xd5,0xf2,0xfe,0xa5,0xbb,0x57,0xcb,0x17, -0x2f,0xfd,0x8a,0x8d,0x65,0x60,0xb9,0x43,0xbe,0x47,0xe9,0xef, -0x9c,0x97,0xbe,0xbf,0x73,0x65,0xe6,0xa1,0x4b,0x24,0x65,0x2a, -0xfd,0x9d,0x0b,0xb8,0xaf,0x1e,0xfa,0x3b,0x5b,0x15,0x35,0xc0, -0xe4,0x32,0xdd,0x14,0x93,0x77,0xc4,0x66,0xe2,0xaf,0xfd,0x50, -0xd7,0x31,0x31,0xf1,0x1e,0xfd,0xfa,0xde,0x0f,0xe1,0xfe,0x25, -0x74,0x2e,0x5f,0x40,0x5f,0xdf,0x4e,0x00,0x68,0x9e,0x9b,0xaf, -0xcf,0x0c,0x7a,0x5c,0x1e,0x1d,0x26,0x5d,0x63,0xc2,0x83,0xc7, -0x7c,0x7d,0x79,0x3c,0x21,0x25,0x97,0xbb,0xb5,0xb2,0x44,0x2c, -0xdd,0x00,0x7a,0x8a,0x2b,0x44,0x42,0x50,0x58,0xd5,0x65,0xb6, -0xe8,0x5c,0xe4,0x85,0x78,0x1f,0x31,0xc4,0xff,0x97,0x7c,0x2f, -0xfe,0x89,0x33,0x67,0xc8,0x9e,0x1f,0xae,0x26,0x07,0xf5,0xe4, -0xe0,0xea,0x89,0xf8,0x43,0xe1,0xf8,0x43,0x3c,0x9e,0x4f,0xe7, -0xe6,0x1e,0x6a,0xaf,0x04,0x21,0x9e,0xef,0xe5,0x5d,0x72,0x33, -0x46,0x4f,0x78,0x9e,0x4b,0x7a,0x04,0x4e,0x50,0x18,0x30,0xb6, -0x62,0x16,0xf2,0x50,0xfa,0xd9,0xb2,0x32,0xb0,0xe0,0x81,0xf3, -0xb2,0xa9,0x0b,0x86,0x94,0x64,0x06,0x16,0x8b,0x32,0x42,0x6c, -0x23,0xd4,0xa7,0xd3,0xfa,0x19,0xac,0x16,0x77,0xd7,0x03,0xd5, -0x1d,0x8d,0x15,0xee,0x55,0x07,0x26,0x27,0x0f,0xac,0x72,0x57, -0x34,0x76,0x54,0x3f,0xf0,0x5a,0x79,0xc0,0x57,0x51,0x15,0x5a, -0xd3,0xda,0xba,0x26,0x54,0x55,0xee,0x6b,0x2d,0x7f,0x6d,0x22, -0xd7,0x14,0x9e,0x58,0xe8,0xe8,0xbd,0x7a,0xa1,0xab,0x6b,0xe1, -0xea,0xde,0x8e,0x85,0x89,0xb0,0x29,0x77,0x62,0x7f,0x4e,0x73, -0xdf,0x6a,0xdf,0x46,0xcf,0x78,0xb7,0xc7,0xd3,0x3d,0xee,0xd9, -0xe8,0x5b,0xdd,0xd7,0x9c,0xb3,0x5f,0xa9,0x71,0xb3,0x0d,0xeb, -0x28,0xb4,0x4b,0x1f,0x06,0xb5,0x32,0x24,0x85,0x45,0x27,0x9f, -0x9c,0xe4,0x8e,0x16,0x2b,0xe4,0x72,0x71,0x3d,0xdc,0x94,0xb6, -0xbb,0x40,0x0e,0xc7,0xa3,0x03,0xc3,0x3b,0x78,0x70,0x0a,0xaa, -0x9e,0x9a,0x79,0x79,0x63,0x00,0x04,0x37,0x70,0x6f,0x6e,0x99, -0x3f,0xd1,0xd3,0x94,0x01,0xb8,0xfd,0x24,0x39,0x43,0xa7,0x9f, -0x04,0x75,0xd6,0xa0,0x81,0x2e,0xc7,0x7e,0xe2,0x6b,0xd1,0x25, -0xbc,0x31,0xdb,0x9a,0xeb,0x1b,0xb3,0x4d,0xfa,0xd2,0xcd,0xeb, -0xfc,0x6b,0xc2,0x0e,0x47,0x78,0x8d,0x3f,0xb6,0xc5,0xa2,0xb7, -0x57,0x6e,0xd8,0xd7,0x1f,0x8e,0x7f,0xa6,0xac,0xd6,0x61,0xcb, -0xaf,0xae,0xce,0xb7,0x39,0x6a,0xcb,0xca,0x1b,0x6b,0x4a,0x4b, -0x6b,0x1a,0xbd,0xcd,0xbb,0xb7,0xef,0xf4,0x45,0x77,0xf5,0xf6, -0xee,0x8a,0xfa,0xb6,0xed,0xda,0x3f,0xbe,0x2c,0x7d,0x3b,0x2f, -0xd7,0xd6,0x54,0x33,0x3b,0x5b,0xd3,0x64,0xcb,0xb5,0xd4,0xf5, -0xd5,0xad,0xaa,0xef,0xad,0xb3,0x28,0x63,0xd5,0x40,0xc7,0x0a, -0x5a,0x5f,0xde,0x7a,0x02,0xdd,0x14,0xcd,0x22,0x5e,0x69,0xcc, -0x5c,0x97,0x24,0x05,0x96,0x99,0xd2,0xd9,0x82,0xa7,0x7a,0x08, -0x28,0x3c,0xeb,0x6d,0xc2,0xf0,0xa9,0x06,0x4a,0xa9,0xc5,0xed, -0xa8,0x94,0x52,0x6c,0xbc,0x70,0x2a,0x4b,0x7b,0x62,0xe3,0x93, -0x5a,0xf3,0xcd,0x84,0x63,0xa3,0x2e,0xea,0x23,0x37,0x84,0x1b, -0x1a,0x93,0x8b,0xbc,0x75,0xc7,0xdf,0x56,0x15,0xf5,0xf1,0xd7, -0x6a,0x8a,0xba,0x0d,0xe5,0x26,0x57,0xf4,0x49,0xe0,0xb8,0xdf, -0xa6,0xb3,0xd8,0x21,0xdd,0x06,0x61,0x24,0x56,0x6d,0x8a,0x45, -0x7b,0x74,0x8b,0x49,0xbb,0x89,0x3d,0x19,0xaf,0x66,0x4e,0x5b, -0x42,0x4f,0x87,0x9e,0x37,0x96,0xf3,0xe1,0xe3,0xba,0x7e,0x87, -0x1f,0x6a,0x92,0xb1,0xbe,0x26,0xd5,0xd8,0x81,0x0e,0x70,0x68, -0xe5,0x3c,0x04,0x09,0x38,0xb4,0x72,0xde,0x78,0x92,0xea,0x25, -0x80,0x73,0x51,0x56,0x8f,0x52,0xbe,0xc7,0x8b,0xa0,0xee,0xa0, -0x48,0xfc,0xb2,0x98,0x58,0x36,0x17,0x53,0xca,0x67,0x2f,0xba, -0xa0,0x79,0xbc,0xbd,0xaa,0xdc,0x1b,0x28,0x77,0xf4,0xb6,0x3a, -0xec,0x1d,0x6b,0xdb,0xda,0x56,0x97,0xe9,0x63,0x9f,0xf1,0xf7, -0x44,0x3a,0x7b,0x06,0xfa,0x2c,0x9e,0x80,0x2d,0x3a,0x35,0x35, -0xd2,0x2e,0xe7,0xec,0x3d,0x04,0x4d,0xd6,0xbd,0xdd,0xf5,0x15, -0x7a,0xbd,0xde,0xda,0x1c,0x6d,0xf3,0x4f,0xf7,0xd4,0x78,0x3c, -0xf1,0xf7,0xe4,0x43,0x7d,0xc1,0xf2,0x40,0xe7,0xaa,0x75,0xf1, -0x6b,0x4b,0xec,0xa5,0xb9,0xe3,0xa3,0xe5,0xa3,0xe3,0xd8,0xf7, -0x84,0xee,0x73,0xaf,0xca,0xd0,0x72,0xf0,0x20,0xa4,0x68,0x6b, -0xf3,0xa7,0x53,0xf2,0xc8,0x53,0x64,0x96,0x1a,0xb8,0x97,0xde, -0xc9,0xaf,0x2e,0x12,0xab,0x17,0x79,0x3f,0x12,0xae,0x58,0x6a, -0x86,0x60,0x69,0xe9,0xb2,0x6a,0x39,0x48,0xc5,0x82,0xce,0xe2, -0x7e,0xe9,0xe3,0xe1,0x66,0x57,0x43,0xde,0x90,0xdf,0x10,0xda, -0x3a,0xf9,0x2d,0xc8,0xff,0xa9,0xa8,0x79,0xfa,0xe1,0x87,0x09, -0x59,0x82,0x6d,0x99,0xe7,0x73,0x12,0xf9,0x55,0x3a,0xbc,0x01, -0x69,0x0f,0x8c,0xb7,0xd2,0x99,0xa2,0x00,0x1b,0x0e,0x49,0x99, -0x8a,0xd7,0xaa,0xdd,0xaa,0x36,0x91,0xc7,0x57,0xc0,0xdb,0xc3, -0xc1,0x16,0x6f,0xe3,0x89,0xa1,0x12,0xa6,0x63,0x40,0xde,0xab, -0xa4,0x34,0xab,0x86,0x56,0x9b,0xda,0x42,0x4b,0x21,0x1f,0x74, -0xeb,0xa6,0x2c,0xeb,0x2b,0xd4,0x29,0xc5,0xde,0x42,0x44,0x17, -0xbd,0x2b,0x38,0xda,0x58,0xa2,0x24,0x73,0xba,0xbb,0xa7,0x1a, -0xef,0x26,0x73,0xce,0xdc,0xca,0x36,0x9f,0xa7,0xb7,0xd9,0x36, -0x3d,0xe8,0x0c,0xfb,0xca,0xe4,0x4f,0x1b,0xf4,0x97,0xd5,0xaf, -0x5a,0x35,0x5e,0xd7,0xbf,0x6b,0xac,0xd6,0x3b,0xba,0xad,0x7b, -0x70,0xd7,0x70,0x8d,0xe1,0xd0,0x42,0x34,0xbe,0xbe,0xb6,0xa7, -0xa3,0xd3,0x63,0xa8,0x6e,0x9f,0x08,0x84,0xd7,0xaf,0x2b,0xad, -0xef,0x6d,0xe0,0x71,0xd0,0x33,0xe4,0x0d,0xac,0x0d,0xb9,0x00, -0x95,0x53,0xb5,0x58,0xf5,0x94,0x05,0x9b,0xf0,0x29,0x28,0xfb, -0x95,0x8b,0xfe,0x9e,0x15,0x8c,0x70,0xf9,0x95,0xc2,0xc6,0xd9, -0x94,0xea,0xe1,0x0d,0x78,0x94,0xf5,0x59,0x9b,0xc5,0x23,0x96, -0xa1,0xa4,0x56,0xb6,0x0c,0xc5,0x05,0xa9,0x39,0x35,0xbc,0x7e, -0x1a,0x79,0xa3,0xff,0x33,0x7b,0x77,0x0f,0xf4,0x87,0xfb,0xaa, -0x42,0xab,0x03,0xab,0x2f,0xae,0xec,0x2a,0x9d,0xec,0x70,0x36, -0x55,0x15,0xb4,0xb7,0x5c,0x7b,0xed,0xbe,0xbe,0xfe,0x2b,0x9b, -0x76,0xee,0x9f,0x1e,0x0e,0xf7,0xe7,0xe9,0xb3,0x3a,0x02,0xce, -0x70,0x9d,0x35,0xec,0x6f,0xf1,0xd4,0xe5,0x97,0xda,0x0a,0xf2, -0x9d,0x0d,0xc3,0xb1,0x7c,0x5f,0xe3,0x3a,0xa5,0x1e,0xdc,0x76, -0xf2,0x20,0x9d,0x4f,0x8f,0x34,0x0b,0x93,0x50,0x8b,0x45,0x24, -0x33,0x66,0x58,0xf0,0x70,0xa6,0xa8,0x07,0xe7,0xe1,0x5d,0xba, -0x95,0x4e,0xf7,0x16,0x0c,0x16,0x29,0xd9,0x24,0x66,0x06,0x54, -0x31,0xb2,0x29,0x62,0x2e,0xb5,0x22,0xe2,0x8b,0xf8,0x98,0x10, -0xeb,0x27,0x21,0xa3,0x7b,0x80,0x6c,0x7b,0xcc,0x59,0x5f,0x9e, -0xdb,0x3d,0xba,0xca,0xed,0x34,0x38,0xd6,0xd4,0xac,0xea,0x9c, -0x0a,0x58,0x72,0x2b,0x03,0xde,0x8f,0xf6,0x3d,0x25,0xbf,0xda, -0xf3,0xcb,0xba,0xc1,0x0e,0x7f,0x59,0x61,0x78,0xa0,0xc4,0x9c, -0xe3,0xb3,0x15,0x94,0x1e,0x30,0xdf,0x58,0x52,0x58,0x1b,0x1c, -0xf1,0xdb,0xda,0x7b,0x27,0x02,0x4f,0x18,0x0c,0xd0,0x5a,0x97, -0xae,0xa1,0x37,0x71,0xaf,0xdd,0x0f,0xc0,0x06,0x16,0x8d,0x4d, -0xda,0x5d,0x56,0x28,0xb4,0x9c,0x29,0x2e,0xa6,0x52,0x5e,0x94, -0x6a,0xca,0x66,0x9e,0x7a,0x64,0xc6,0xf7,0xe5,0x05,0x5f,0xa8, -0x15,0x9f,0x52,0xec,0x65,0x63,0x37,0x6c,0xa1,0xaa,0x5a,0x2f, -0x74,0x25,0xf9,0x6b,0x21,0xc1,0x7e,0xe9,0x4d,0xd9,0x20,0x2a, -0xbd,0xe8,0xa4,0x0e,0xca,0x5b,0x7f,0xa3,0x7b,0xa4,0x99,0x6e, -0x8f,0xcd,0xd2,0xa7,0xc0,0x83,0xd1,0xc2,0x1b,0x86,0xe6,0xf2, -0x32,0xf0,0xb9,0x9a,0x2a,0x45,0x29,0x73,0xc2,0x5b,0xf5,0x20, -0xbf,0xb1,0xbc,0x2f,0x40,0x2d,0xb0,0xbc,0xaf,0x3a,0xf0,0x50, -0xef,0xa7,0x04,0xee,0x94,0xa8,0x53,0x60,0x18,0x9c,0xf2,0x00, -0xfb,0x00,0x5e,0x8c,0x3a,0xe9,0x15,0x7a,0xa0,0x17,0xe3,0x51, -0x3c,0x4f,0xc9,0x0b,0x92,0x8a,0x59,0xa3,0x29,0x28,0xe3,0x97, -0xa8,0x55,0x04,0x13,0xa8,0xe3,0xf0,0x18,0xfa,0xc2,0xe6,0x04, -0x20,0x86,0x54,0x84,0x66,0xba,0x1c,0x8e,0xae,0x99,0x10,0xff, -0x3e,0x47,0xca,0xcc,0xee,0x76,0x97,0xab,0xdd,0x6d,0x3e,0x06, -0x5f,0xe2,0x6f,0xd0,0x1f,0xe5,0xb7,0xbd,0x1b,0xef,0xb9,0xf8, -0xe2,0x7b,0x36,0x7a,0x95,0xef,0xf1,0x87,0xfb,0xbb,0xa7,0x83, -0x56,0x6b,0x70,0xba,0x3b,0xbe,0x1b,0xbe,0xf6,0xe3,0xcf,0xbc, -0xd6,0x46,0xa1,0x52,0x0f,0xc4,0x98,0x54,0x0f,0x84,0x2b,0xbb, -0xe9,0x53,0xc5,0x8c,0x09,0xb9,0x07,0x4d,0x9c,0x48,0xe1,0xae, -0x86,0xc6,0xd8,0x5e,0xbf,0x97,0x3c,0x8a,0xa9,0x69,0xaa,0x3a, -0x1e,0x25,0xd2,0x3e,0x00,0x12,0x9a,0xb1,0x92,0xcf,0xb9,0xef, -0xbf,0x29,0xce,0xd0,0x44,0x91,0x6e,0xd6,0xf0,0x40,0x5d,0xc7, -0x83,0xa9,0x72,0xac,0x82,0x45,0x44,0x54,0xf4,0x80,0x0e,0xdb, -0x16,0xb7,0xd1,0xec,0x7e,0x7d,0x98,0x1a,0x06,0x6d,0x9f,0x28, -0x72,0x58,0x5a,0xbb,0x8f,0xfd,0x72,0xfb,0xbb,0xab,0xbe,0x22, -0xeb,0x97,0xba,0x1f,0x36,0xe5,0x47,0xef,0x8d,0xbf,0x04,0xcf, -0x9a,0x45,0xbf,0xfc,0x89,0xae,0xd5,0x52,0x78,0xd6,0xa2,0xa4, -0xf8,0x2f,0xdf,0x76,0xec,0xc9,0xd9,0x81,0x15,0x69,0x00,0x3a, -0x29,0x9c,0xa3,0x4e,0x09,0xcd,0x15,0x99,0x84,0xa5,0xbc,0x15, -0xb8,0x19,0x99,0xdc,0x6a,0xa6,0xba,0x26,0x55,0xb0,0x64,0xb7, -0x51,0xe7,0x36,0x7f,0xf6,0x82,0xad,0x5e,0x6f,0xce,0xbf,0x0d, -0x44,0xe8,0xd7,0x41,0xbf,0xa1,0x6b,0xf7,0xda,0x67,0xe4,0x4f, -0x47,0xab,0xec,0x4b,0xf7,0xd3,0x2f,0xff,0xfe,0xd5,0xaf,0xc6, -0x61,0x50,0x79,0xce,0xa3,0x9b,0x7e,0xac,0x92,0x8e,0xb2,0xf0, -0xa4,0x63,0x25,0x9b,0x2c,0xd3,0xda,0x34,0x67,0x4e,0xfc,0x51, -0x3b,0x30,0xcb,0x84,0xb3,0xb5,0x98,0x6f,0x44,0xa0,0x08,0x19, -0xb8,0x85,0x66,0xe3,0x9f,0xb8,0x85,0xa6,0x18,0x68,0xf8,0x56, -0xa8,0x16,0x79,0x99,0x91,0xc6,0xb2,0x72,0x70,0x01,0x7b,0x36, -0x06,0x06,0x0a,0xf5,0x26,0x34,0xd2,0x8e,0x31,0x1b,0x2d,0x3e, -0x44,0x17,0xf2,0xb6,0x60,0xf3,0x47,0x6f,0x55,0xfa,0x96,0xd1, -0xbd,0x47,0x4f,0x25,0xec,0x34,0xc8,0xef,0x22,0x84,0x90,0x66, -0xdc,0x7b,0x32,0xd9,0x9c,0x26,0xed,0x56,0x93,0x5e,0x3a,0xbf, -0xf8,0x51,0x94,0xcd,0x03,0x21,0x43,0xd7,0xd6,0xc9,0x27,0x98, -0x68,0x7e,0xf4,0x51,0x10,0xcd,0xf4,0x39,0x9a,0xe9,0x3e,0xfe, -0x65,0xca,0x1b,0x7e,0xe8,0x1a,0xe9,0x4e,0xf2,0x93,0x35,0xc3, -0x5d,0x9a,0x55,0xbc,0xa1,0x36,0x3f,0x9a,0x45,0x63,0x56,0x69, -0x91,0xc9,0x66,0xd6,0xe1,0x21,0x97,0x52,0x4b,0xd8,0x46,0xc4, -0xe2,0x5c,0xb9,0x6c,0xf3,0x80,0xbe,0x27,0xb8,0x67,0x28,0x6d, -0x4d,0x10,0xc3,0xe5,0x64,0x54,0x40,0xc7,0xe6,0xf2,0xee,0xa5, -0x4a,0xe1,0xf9,0xf2,0x93,0x20,0x35,0x73,0xb1,0x2c,0x2c,0xc6, -0x57,0x84,0x30,0xcb,0x4a,0x23,0x17,0xb8,0xf4,0x0b,0xb3,0x96, -0x67,0xc4,0x17,0x1e,0xec,0x08,0xcf,0xcf,0xaf,0x1d,0xee,0x1d, -0x5d,0xc3,0x04,0xc4,0x9a,0xce,0xb5,0x81,0xb2,0x75,0xab,0x7a, -0x3a,0xfd,0xcd,0xb7,0x93,0x1b,0xe5,0x4f,0x0f,0xf5,0x15,0x86, -0x3a,0xa2,0x43,0x3d,0x85,0x6d,0xbd,0x25,0xa5,0x8a,0x8c,0x30, -0x17,0x7a,0xda,0x86,0x9a,0x86,0x16,0x72,0xf4,0x45,0xab,0x7a, -0xfc,0x43,0x45,0x46,0x6c,0x09,0x22,0xea,0x54,0x14,0xcb,0x59, -0x58,0xcb,0x80,0x40,0xf6,0xbb,0x3c,0x85,0xfa,0xd7,0x66,0x58, -0xb0,0x5a,0xfd,0xeb,0xec,0xc5,0x39,0xd5,0x4b,0x48,0xa7,0x51, -0x6b,0xf2,0x45,0x53,0x39,0x6c,0xe5,0xc6,0xb8,0x8c,0x95,0xdc, -0x07,0xdb,0x97,0x9c,0x1e,0xe8,0x6e,0x68,0x5c,0x8c,0x6d,0x95, -0xc3,0x7b,0xa2,0x51,0xbf,0x9b,0x5c,0x1c,0x1f,0xa2,0x53,0x1a, -0x65,0xb1,0xcd,0x0e,0xac,0x57,0x07,0xfd,0x11,0x2f,0x04,0xcf, -0x82,0xd2,0x1f,0x11,0xe3,0xd1,0x8b,0x19,0x77,0x3e,0xae,0x8a, -0x98,0xd3,0x54,0x90,0x81,0xfd,0x22,0x0f,0xeb,0x7a,0x81,0x5b, -0x83,0x09,0xb3,0x12,0xd1,0x9a,0xa1,0x82,0x6b,0xc6,0xa8,0x72, -0xb0,0x66,0x9d,0x9a,0x2c,0xc7,0x2c,0x34,0x98,0xba,0xaa,0x3a, -0xd7,0x77,0xec,0xdb,0x7f,0x60,0x57,0x10,0xec,0x81,0x17,0x26, -0x56,0x8d,0x0f,0x0d,0x8d,0x97,0x79,0x02,0xa4,0x2e,0x30,0xd3, -0x5f,0x7b,0xec,0xc6,0x9b,0xef,0xaa,0xad,0x89,0x2f,0x11,0xfd, -0xfa,0xa9,0x89,0xa9,0xf5,0xeb,0xa7,0x3e,0x5d,0x62,0x37,0xe7, -0x09,0x1d,0xe3,0x7b,0xf4,0x7d,0x1c,0xd2,0x6a,0x80,0x06,0x6a, -0xf3,0xd0,0x52,0x4a,0x23,0xa9,0x97,0x44,0x8e,0xa8,0x34,0x2b, -0x89,0xd6,0x37,0x12,0xcf,0x2e,0x33,0xf8,0x92,0xb4,0x24,0x78, -0x4a,0xc1,0x4c,0x64,0xfe,0x9a,0x0d,0xf3,0xd5,0x9d,0xeb,0xda, -0x46,0x36,0x97,0x0f,0x17,0xf6,0x35,0xf6,0x46,0x6f,0xda,0x8c, -0xfc,0x53,0xe0,0xb2,0x5e,0x7e,0x7e,0xff,0xce,0xd1,0xda,0x81, -0xce,0x9a,0xba,0xa6,0xb9,0xd1,0x91,0xcb,0xdc,0x15,0x9c,0x6b, -0x14,0xfd,0xb6,0x85,0xf2,0x83,0x85,0xb2,0xec,0x5a,0x30,0x35, -0x6b,0x79,0x59,0xed,0x32,0x4d,0x1d,0xd7,0x14,0x1b,0x57,0x6d, -0xd2,0x9a,0x45,0xf9,0x02,0x89,0xf7,0xf2,0xb4,0xf3,0x92,0x24, -0x49,0x30,0x01,0x97,0xc5,0xa5,0x94,0xc4,0x67,0x75,0x5b,0xc8, -0x43,0x6d,0x8d,0x8a,0xf6,0xea,0xec,0xdb,0xdc,0x4d,0x72,0xe3, -0xef,0x4e,0xcc,0x42,0x2d,0x09,0xa7,0x8b,0x7c,0xdb,0x68,0xdd, -0x34,0xde,0xbd,0x63,0xd4,0xeb,0x1d,0xdd,0xd1,0x0d,0xdf,0xa3, -0xeb,0xa6,0xfb,0xa0,0x5a,0x44,0x5f,0x64,0xa2,0x06,0xc6,0xb9, -0x94,0x7e,0x79,0x92,0x3e,0x7b,0xbe,0x34,0x06,0xcb,0xb7,0x00, -0x3b,0x5c,0x49,0x99,0x92,0x63,0xd5,0xe3,0x9c,0x95,0x88,0x52, -0xf1,0x96,0x57,0xac,0x28,0x80,0x0b,0x79,0x96,0x23,0xeb,0x88, -0xa9,0xa1,0xf1,0xf3,0xe4,0x0b,0xff,0x74,0x39,0x95,0x9f,0x7b, -0xa3,0x90,0xb7,0xcb,0x72,0x0c,0xd1,0xe7,0x66,0x92,0xa2,0x10, -0x84,0x29,0x91,0xcc,0xaa,0x7b,0xf2,0xbd,0xb9,0x22,0xd9,0x76, -0x4d,0x57,0x95,0x00,0xd6,0x15,0x0a,0xc6,0x84,0x23,0x3d,0x8b, -0xc9,0xed,0x07,0xbb,0x86,0x86,0xba,0x62,0xe7,0xd3,0xff,0x62, -0x6f,0x6c,0x9a,0x99,0xd9,0x44,0x6c,0xf1,0x77,0x8e,0x5c,0x7f, -0xfd,0x11,0x52,0x88,0x76,0x76,0x87,0xfc,0x31,0xe4,0x2d,0xbf, -0x74,0xcf,0x09,0x34,0x4b,0x58,0xe0,0xb7,0x0a,0x63,0xea,0x19, -0xed,0xec,0xb3,0x67,0xd7,0xa7,0x14,0x72,0x57,0x9b,0xa5,0x65, -0xc2,0x19,0x91,0x03,0xee,0x08,0x01,0xc8,0x61,0x6b,0x0a,0xb2, -0x9d,0xaa,0x79,0xfd,0x4e,0xd6,0x29,0xcc,0x8a,0x35,0xa9,0xa9, -0x4d,0xc9,0xd2,0x2c,0x60,0x8d,0x59,0xdc,0x66,0x35,0x42,0xc4, -0x42,0x82,0x1d,0x5b,0x46,0x7c,0x6b,0x46,0x9b,0xc3,0x6d,0x95, -0x2d,0xfd,0xee,0x4d,0x33,0x1b,0x16,0xee,0x39,0x1c,0x8b,0x35, -0x46,0xdb,0x2a,0x0b,0x2a,0xdc,0x65,0x65,0xee,0x8a,0x82,0xfc, -0xda,0xd1,0xed,0xdd,0x17,0x1d,0x75,0x75,0x54,0x6e,0x5d,0xe7, -0x6b,0x1e,0x68,0x28,0xfd,0xd9,0x91,0xab,0xaf,0x3e,0x72,0xc7, -0x3d,0xdf,0x22,0x3a,0x73,0xdd,0xa0,0x7f,0xb4,0xb9,0xa7,0xb6, -0xb8,0xb8,0xb6,0xa7,0x99,0xce,0x4b,0x3e,0xdd,0x43,0x7e,0x4f, -0xe7,0xc5,0x0a,0xb9,0x9f,0xc5,0x49,0x3d,0x28,0x53,0xaa,0xed, -0xa4,0x30,0x07,0xe7,0x6f,0x73,0x1a,0x68,0x98,0x12,0xe0,0xd5, -0x8b,0x00,0xaf,0x55,0xe4,0x80,0x02,0x28,0x8d,0x35,0x07,0x36, -0x53,0xb1,0x45,0xa0,0x6b,0x26,0xd7,0x1a,0x88,0x9b,0x2a,0x0d, -0x54,0x9c,0xad,0xf2,0x78,0x0a,0x17,0x74,0x47,0x36,0xfc,0xf3, -0x4d,0xa3,0x3d,0x9e,0xda,0x82,0x5d,0xba,0x3b,0x36,0x7c,0xf3, -0x9a,0x51,0x59,0x5f,0xe1,0xfc,0x05,0x29,0x8d,0x7f,0x3e,0xfe, -0x7c,0xb4,0xc2,0xf9,0x4e,0xfc,0x45,0xb2,0x9f,0x58,0xa3,0x2c, -0x87,0xb5,0x43,0x3e,0x22,0x3f,0x4d,0xef,0x75,0xeb,0x09,0xdc, -0xae,0x2b,0x56,0xd2,0xfd,0x52,0xda,0x00,0xa5,0x58,0x67,0x29, -0x0a,0x45,0x8a,0x7f,0x45,0xad,0x61,0x10,0x51,0x36,0xa0,0x8c, -0x2b,0x14,0x74,0x4a,0x43,0x3c,0x97,0xb5,0x0c,0x30,0x70,0x82, -0x55,0x2d,0x64,0xf8,0xca,0x1b,0x62,0xb1,0xf5,0xf4,0x5f,0xec, -0x86,0x2b,0x7f,0xf8,0xad,0x0f,0xdd,0x44,0xe4,0xf8,0x6b,0x73, -0xe7,0xc9,0xc7,0x96,0xae,0x38,0x6f,0x8e,0xf2,0x6c,0xfc,0xa6, -0x0f,0x7d,0x8b,0xe9,0x9c,0xed,0x74,0x8f,0xf9,0x32,0xe5,0xd9, -0x30,0xd4,0xd1,0xb0,0x49,0x11,0xf4,0x58,0x28,0xef,0x54,0x0b, -0xb7,0xaf,0x55,0x3d,0x31,0x37,0xe0,0x2b,0x32,0xa7,0x3a,0xab, -0xdd,0xd2,0x06,0xd1,0x1e,0xd0,0xcf,0x6b,0x50,0xf9,0x79,0xbb, -0x6d,0xaf,0x7f,0x30,0x4f,0xba,0x8e,0x12,0x8e,0xd1,0xe3,0x7e, -0x7a,0x7c,0x89,0x1e,0x4f,0xd0,0xc3,0xb0,0x00,0xa1,0x68,0xe8, -0x0a,0x5d,0x8b,0x1e,0x73,0xe8,0x0a,0x0d,0x91,0x79,0xf0,0x80, -0x20,0x83,0x42,0x08,0x57,0xf8,0x49,0x14,0xef,0x9a,0x8a,0xa7, -0xf1,0xac,0x20,0xf9,0xb8,0xc2,0xa6,0x17,0x34,0x47,0x57,0x97, -0x37,0xf7,0xfb,0xfa,0x46,0xf3,0xf5,0xf9,0xa3,0x7d,0xbe,0xfe, -0xe6,0x72,0x64,0x6b,0xe5,0xf7,0xb1,0x9f,0x2b,0x8c,0xda,0xfe, -0xf1,0x60,0x87,0xf3,0xf6,0x2b,0x86,0xb7,0xf5,0xd9,0xa3,0x9d, -0x9d,0x51,0x7b,0xdf,0xb6,0xe1,0x4b,0xef,0x40,0xf6,0x6e,0x57, -0x4e,0xb9,0x45,0x95,0xd3,0x06,0xf9,0x2c,0x80,0xca,0xe5,0x78, -0x94,0x29,0xfc,0xb9,0x46,0x60,0x46,0x7f,0x0e,0x3f,0xcb,0x47, -0x44,0xde,0xc1,0x3c,0xfe,0x6c,0x4d,0xe4,0x15,0xe0,0xf9,0xb5, -0x89,0x18,0x02,0xfe,0xdc,0x95,0xc0,0x5c,0xe2,0xcf,0x75,0x1c, -0xbb,0xc7,0xf2,0x0d,0xcc,0x52,0x3d,0xd5,0x9c,0x8e,0x01,0x26, -0x45,0xb1,0xcb,0x4a,0x39,0x76,0xaf,0x21,0x73,0xb7,0xd4,0xc4, -0x66,0xa2,0x00,0x1e,0x72,0x71,0x4b,0x00,0xbd,0xaa,0x81,0x9e, -0x59,0xca,0xb0,0x29,0x7e,0x6c,0xce,0xd4,0xa0,0xa0,0x85,0xf0, -0x83,0x91,0x6a,0x5a,0x0d,0xd4,0x1e,0x6b,0xa0,0xf6,0x58,0x03, -0x2b,0xe0,0x89,0xbf,0x59,0x00,0x4f,0x49,0x81,0xd8,0x52,0x12, -0x3e,0x60,0x5f,0x0a,0xce,0x0c,0x7c,0x23,0x64,0x87,0x02,0x31, -0x1b,0xbe,0x04,0xbe,0x5f,0x32,0x9c,0x04,0x33,0xbb,0x90,0xb4, -0xe4,0x2b,0xf0,0x32,0xff,0xe6,0x23,0x88,0x0c,0x5a,0x9d,0x8a, -0x31,0x5b,0x9a,0x98,0x48,0x60,0xc7,0x71,0x7c,0xea,0xc5,0x78, -0xed,0xc2,0x9f,0x1b,0x91,0xa7,0x61,0x7e,0xb6,0xc8,0xb0,0x1d, -0xae,0x82,0xad,0x81,0x45,0x2a,0x32,0xe2,0x2e,0xf8,0xee,0x6b, -0x4a,0xdb,0xae,0x2b,0xa7,0x98,0x39,0xe5,0x89,0x19,0x1a,0xa9, -0xe7,0x41,0x8b,0xb3,0x03,0xbf,0xdf,0x70,0xf9,0x06,0xc3,0xfc, -0xe5,0xb3,0xbf,0x87,0xe4,0x4f,0xb2,0x8d,0xe4,0xc7,0xcf,0xc4, -0x1f,0x94,0x4f,0x24,0xb0,0x49,0xcf,0xe2,0xb3,0x34,0x27,0xcd, -0x65,0x0b,0xce,0xe5,0x00,0xfd,0x39,0x1b,0xfb,0xd0,0x41,0xd1, -0x90,0x3d,0x60,0x43,0x2a,0x9d,0xe8,0x8c,0x3c,0x2c,0x60,0x44, -0xe8,0x6f,0xc6,0xfc,0x20,0x4d,0x29,0x3e,0x0e,0x60,0x67,0x49, -0x40,0x79,0x3c,0x09,0x48,0x09,0x83,0xe6,0x89,0x38,0x0b,0xa4, -0xe8,0x00,0x70,0x0b,0x1a,0x41,0x0e,0x90,0x1f,0xc6,0x3b,0xea, -0xc8,0xd5,0xf1,0xdb,0xea,0xe0,0x13,0x4f,0xc0,0x11,0xf8,0x36, -0xf9,0x69,0xfa,0xac,0x7e,0xf1,0xec,0x1b,0x90,0x6f,0xef,0x11, -0x3f,0x87,0xf1,0x5d,0x02,0x38,0xce,0x90,0x3b,0xb0,0x84,0x71, -0x99,0x31,0x70,0xbc,0x68,0xe3,0x32,0x29,0x98,0x7c,0x35,0x1f, -0xb2,0x68,0x07,0x59,0x54,0x6a,0xc5,0x20,0x1e,0x01,0x8c,0x8c, -0x90,0x59,0x87,0x91,0x0f,0x9d,0xcb,0x52,0xf7,0x97,0xb7,0xc9, -0x7f,0xc6,0x3f,0xf6,0xf6,0x7b,0xe4,0x8a,0x35,0xa4,0x94,0x14, -0xae,0x99,0x88,0xbf,0x13,0x7f,0x7d,0x42,0xc1,0x9e,0xe0,0x73, -0xb4,0x27,0x62,0x79,0xf8,0x73,0x27,0x8e,0x71,0x78,0xf9,0x37, -0x3a,0x87,0xfc,0x22,0xdd,0x97,0x1a,0xa5,0x4e,0x62,0x81,0x1c, -0xc7,0x2e,0xa9,0x9b,0xd7,0xeb,0x61,0x6d,0x5e,0xe1,0x7b,0x27, -0x8c,0x31,0x24,0x7e,0xe6,0xc1,0x6e,0x04,0x39,0x73,0x37,0xd1, -0x43,0x49,0xaf,0x7b,0x0c,0x4c,0xd0,0x05,0x6c,0x37,0x96,0xa7, -0x38,0x28,0xf2,0x94,0x8e,0x65,0x79,0x4a,0x33,0xc7,0x3c,0xa5, -0x3f,0x68,0x1e,0xa2,0x2b,0x64,0xd6,0xb5,0x2c,0x8f,0x4a,0xb9, -0x3c,0xa5,0x6b,0x59,0x1e,0xe2,0x6f,0x0a,0x18,0x8e,0xa5,0x80, -0xae,0xa4,0x02,0xe9,0x2d,0x7a,0xc0,0x63,0xf3,0x06,0x8c,0xe0, -0x28,0x2e,0x80,0xc6,0x9e,0x52,0x3f,0x3d,0xd6,0xd2,0x63,0x2b, -0x3d,0xf6,0xd3,0x03,0x1a,0x30,0xe6,0xf1,0xfc,0x4a,0x52,0xac, -0xea,0xae,0x0e,0x57,0xfb,0x2e,0x7d,0xc1,0x45,0x7a,0x40,0x2d, -0xef,0xb7,0xe9,0xa1,0x67,0xd9,0x2a,0x76,0xbc,0x5f,0x1e,0x5f, -0xe3,0x4c,0x6e,0x34,0xe0,0xa7,0x26,0x5e,0x04,0x2d,0x82,0x85, -0xf5,0xf9,0xd2,0xed,0x26,0x90,0x95,0x22,0xb2,0xfe,0xa0,0xaf, -0xb4,0xb2,0x76,0xbb,0xe5,0x44,0x0a,0xa0,0x89,0xdc,0x54,0xb2, -0xe6,0xe0,0xda,0xfa,0xfa,0xb5,0x07,0xd7,0x94,0xcc,0xa8,0x3e, -0xca,0xa5,0xc1,0xe9,0xae,0xea,0xea,0xae,0xe9,0x60,0xe9,0x2e, -0xf1,0xa9,0xba,0x75,0xfe,0xca,0xd1,0xd1,0x2b,0xe7,0x5b,0x03, -0x01,0xe5,0x53,0x8f,0x7c,0x7d,0x4d,0xcf,0x3a,0x7f,0x9f,0x7f, -0x5d,0x4f,0x8d,0xf8,0x10,0xcf,0x82,0xf9,0x03,0xbb,0x67,0x12, -0xe7,0xaf,0x03,0xf9,0x6a,0x84,0xfe,0xfc,0x3c,0xf6,0x4a,0xbc, -0xf4,0x04,0xf6,0x07,0x75,0xad,0x14,0x6f,0xe3,0x32,0x69,0x85, -0xb4,0x06,0x75,0xd3,0x7b,0xa8,0xba,0x51,0xcd,0x73,0xac,0x14, -0x24,0x4c,0x31,0xdf,0x44,0xed,0x30,0x2e,0x58,0xfb,0x3a,0x88, -0x15,0xd4,0x40,0xa4,0xf6,0xb1,0x9f,0xb0,0x8d,0x1b,0xd9,0xde, -0xbf,0x77,0x75,0xc3,0x4c,0x75,0x64,0xbc,0x61,0xa6,0x61,0x3c, -0x52,0x3d,0xd3,0xb0,0x7a,0x6f,0xff,0xcc,0x8f,0x9c,0x83,0xbb, -0x46,0x5e,0x7b,0x2d,0x32,0xd1,0x52,0x4a,0xbe,0x10,0x9f,0x2f, -0x6d,0x99,0x88,0xbc,0xf6,0xda,0xc8,0xae,0x41,0xe7,0x8f,0x78, -0x1e,0x0d,0xc4,0xe6,0xe8,0x1a,0xb2,0x89,0x9e,0x0d,0xdb,0x74, -0xf9,0x94,0x7f,0x59,0x7d,0x8c,0x6d,0x2f,0x26,0x7a,0x39,0x34, -0x20,0xbd,0x8a,0xd1,0x5f,0x51,0xf2,0x6a,0xce,0x90,0x37,0x90, -0xce,0xea,0x0a,0x6c,0xfb,0x05,0xaf,0xaf,0x00,0x7e,0x46,0xa4, -0xd7,0x30,0xfa,0xdb,0x89,0x3a,0xa2,0x85,0x48,0xf7,0x60,0xbc, -0x7b,0xdb,0xf2,0x24,0xd6,0x94,0xfd,0x33,0xa5,0x9b,0xa1,0x8e, -0x02,0xa7,0x4f,0x2f,0x63,0x4e,0xf1,0xf2,0xeb,0x94,0xde,0xa4, -0x3a,0x7f,0xfb,0xf2,0x16,0x55,0x9d,0xbd,0x7c,0x51,0x43,0x71, -0xdb,0x7f,0x25,0xea,0x4f,0xbc,0x8e,0xe7,0x07,0x18,0xfd,0xbf, -0x55,0x74,0xbc,0x3e,0xa3,0x4f,0xff,0x21,0xfd,0xf9,0xdb,0xdf, -0x65,0x74,0xd4,0x3b,0x90,0xce,0xf0,0x63,0xdb,0x3a,0xd4,0xf9, -0xef,0xf9,0x22,0xff,0xfb,0xf8,0x72,0x9e,0xf2,0x9c,0xb2,0x4b, -0x97,0x4f,0x55,0x84,0x5a,0x1b,0xd2,0xe3,0xcf,0x09,0xfa,0x4d, -0x48,0xaf,0x4b,0xa6,0x93,0xbb,0x90,0x5e,0xdf,0xad,0xa2,0x67, -0xca,0x6b,0x5a,0x7e,0x9d,0x3e,0xcf,0x87,0xf0,0x7c,0xbf,0x3e, -0xf9,0xfa,0x1f,0x47,0x7a,0xe7,0x8c,0xfa,0x3a,0x19,0x70,0x08, -0x78,0xfe,0x3d,0xf8,0x5e,0xac,0xbe,0x92,0x72,0x3e,0xeb,0xe1, -0x05,0xb6,0xbe,0x5e,0xd5,0x37,0x08,0x7e,0x36,0x60,0x2c,0x23, -0x48,0xef,0x6f,0x90,0x7f,0x47,0xd9,0xd4,0x2f,0xed,0x3e,0x81, -0xa5,0xfe,0x99,0xed,0x50,0x9f,0xdc,0x57,0x32,0x7d,0x41,0xf1, -0x3c,0x61,0xe6,0x4b,0xa2,0xb2,0x52,0x19,0x3d,0xdb,0xc9,0x63, -0x93,0x4a,0xcd,0x4f,0xd0,0x21,0x9c,0xaa,0xc6,0xc1,0xe0,0xfa, -0x06,0xaf,0xb8,0x51,0x55,0x57,0x88,0x4b,0x71,0xd1,0x28,0xa2, -0x2a,0x3c,0xd7,0xe3,0xb2,0x0f,0xec,0x1c,0xfb,0xec,0x97,0x9b, -0x7a,0x7c,0x16,0x83,0xde,0x3a,0xde,0xd3,0x3a,0xdd,0x05,0x85, -0x2a,0x03,0xd5,0xed,0xde,0xb2,0xe9,0xd1,0x55,0x63,0xd3,0xf9, -0x9e,0x35,0xd7,0xcc,0xed,0xff,0xf4,0xf9,0xc1,0xac,0x82,0x75, -0x85,0x7a,0x5b,0x64,0xe3,0x70,0xa8,0xdd,0x33,0xbc,0xb3,0xbf, -0x7b,0x5b,0xd4,0x3b,0x56,0x5a,0xd7,0xe5,0xeb,0x9f,0x99,0x1e, -0xeb,0xdc,0x3c,0x33,0xcd,0xf2,0x11,0x80,0x4f,0xdf,0x41,0x5f, -0x87,0x8d,0xea,0x3f,0xfb,0x20,0xa7,0x4b,0xb1,0x6e,0x2b,0xb9, -0x83,0xb2,0x52,0x93,0x39,0x9d,0x52,0xc0,0x3a,0xe1,0x6c,0x53, -0xca,0x70,0x79,0xa0,0xa6,0x15,0x6f,0x24,0xc7,0x1c,0x09,0xe0, -0x46,0xf1,0xf0,0xb8,0xad,0x24,0xca,0x71,0x9a,0xb1,0x4d,0xa6, -0x51,0xb1,0x80,0x5d,0x11,0x25,0xb8,0x66,0x49,0x7c,0x9a,0x25, -0xfa,0xfe,0x55,0xbb,0x7b,0xba,0xcd,0x9e,0x76,0x57,0xfc,0xad, -0xbf,0x7a,0x1a,0x1a,0x3c,0x5f,0x78,0xc0,0x55,0x5b,0xeb,0x7a, -0x40,0xd6,0x8f,0xf5,0x6c,0xcf,0xd7,0x1b,0x06,0x03,0xd5,0x1d, -0x0d,0x15,0x43,0x5e,0xb7,0xd5,0xed,0xfd,0xc2,0x1b,0xae,0xea, -0xb2,0x6a,0xd7,0xbd,0x09,0x3f,0xee,0xfd,0xf4,0xdd,0x0c,0x52, -0x27,0x4b,0xf7,0x31,0xae,0xd4,0xd7,0x46,0x8d,0x90,0x60,0xf2, -0x9c,0x3d,0x23,0x60,0x12,0x66,0x49,0xf4,0xdd,0x98,0xac,0x8f, -0x82,0x87,0x58,0x96,0xb2,0x97,0x0f,0xd2,0x3d,0x19,0xfc,0x7b, -0x16,0x69,0x3b,0x2b,0x0b,0x65,0x15,0xfd,0x47,0xf5,0x99,0x7d, -0x31,0x6a,0xc3,0x96,0x39,0x85,0x8c,0xdc,0xff,0x5b,0x28,0xe5, -0x71,0x28,0x84,0xa1,0x58,0x01,0xc6,0xc2,0x4e,0x68,0x59,0x84, -0x00,0x7f,0x1f,0xe9,0x25,0x2e,0xf0,0x49,0x82,0xd1,0x5d,0x6b, -0x72,0x43,0xb3,0xf9,0xec,0xee,0x6a,0x2f,0x59,0x98,0x1b,0x8f, -0x6f,0x1d,0x27,0x77,0x3e,0xe5,0x2e,0x8f,0xb6,0xdd,0xbb,0xfd, -0xa3,0xf1,0xa1,0xe7,0xef,0xb8,0xe3,0x79,0x72,0xf5,0xfa,0x3d, -0x77,0x37,0x8b,0xde,0x0b,0xc0,0xdb,0x39,0x8a,0x9e,0x20,0xbf, -0x4c,0x9f,0x3b,0x22,0xfd,0x04,0x9a,0x32,0x69,0xeb,0x0d,0xa4, -0xb8,0x21,0x53,0xdc,0x19,0x29,0xc5,0x80,0x22,0x40,0x88,0xa8, -0x34,0x36,0xde,0xdd,0x30,0x41,0xa8,0x03,0x42,0x1d,0x23,0x44, -0xb8,0x2b,0x0c,0x9a,0x66,0xe7,0xf3,0x46,0x2e,0x6d,0x1c,0x06, -0xcc,0xdc,0x6c,0x6d,0xbc,0x49,0x07,0xac,0x2e,0x16,0xc3,0x86, -0x11,0x60,0x2d,0xba,0xab,0x44,0xd4,0x8c,0x9d,0x55,0xc7,0x43, -0xbe,0xf4,0x1a,0xf4,0xac,0x16,0x1c,0xa7,0x48,0x1f,0x01,0x47, -0xa1,0x9f,0x30,0x0f,0x29,0xc1,0xb2,0xfb,0x11,0xee,0x4b,0x2f, -0x24,0xc0,0x68,0x94,0xc8,0x4d,0x4f,0xe8,0x14,0x4a,0x89,0x8d, -0xa4,0xae,0xa7,0x2b,0xcf,0x59,0x5a,0xea,0xc8,0x0b,0xf5,0xf8, -0x1d,0xcd,0x45,0xa3,0x9b,0x63,0x9b,0x47,0x8b,0x9a,0x1d,0xfe, -0x9e,0x50,0x9e,0xa3,0xb4,0xd4,0x99,0xd7,0xd5,0xd3,0x59,0xd9, -0x64,0x1a,0xa1,0xe4,0x11,0x53,0x53,0x65,0x67,0xf4,0x98,0xcd, -0xa6,0xd3,0x67,0x55,0x55,0x5c,0x15,0x75,0xb8,0x3e,0xf1,0xd2, -0x4b,0x9f,0x70,0x39,0xa2,0x57,0x55,0x54,0x65,0xe9,0x75,0x36, -0xdb,0xb1,0xa8,0xbd,0xfe,0xb3,0xaf,0xbf,0xfe,0xd9,0x7a,0x3b, -0x8e,0x37,0xe4,0xca,0x7d,0x93,0xda,0x74,0x8d,0x10,0x23,0x2c, -0xe4,0xd1,0x7e,0x49,0x2b,0x0c,0x2b,0xd2,0xea,0x65,0x46,0x5e, -0xde,0xd0,0xc8,0x65,0x64,0xb1,0x9f,0xc5,0x08,0x58,0x65,0x3e, -0x56,0xb0,0xb4,0x16,0xda,0x14,0x30,0xd7,0xb5,0x40,0xd4,0x72, -0xb8,0x74,0x22,0x68,0xad,0x34,0x5a,0xa4,0x1c,0x83,0xcb,0x2c, -0xeb,0xf4,0xda,0x2d,0x8e,0x9e,0xd2,0xb1,0xf6,0xfe,0xde,0x50, -0xe0,0x92,0x5d,0x81,0xf6,0x50,0x5f,0x70,0xa8,0x34,0x54,0xbe, -0x30,0xb9,0x7b,0x5b,0x30,0x10,0x89,0x5c,0x9a,0x1f,0x6e,0x0b, -0x78,0x1b,0x5b,0x3c,0xf9,0xbe,0xfa,0x61,0xaf,0x3b,0xdf,0xe5, -0xab,0x77,0x37,0x37,0x77,0x4e,0x0c,0x06,0x3a,0xf2,0xf4,0xd9, -0xfd,0xad,0xab,0xe7,0xf9,0xba,0xfa,0x33,0xe5,0xa3,0x22,0x78, -0x2f,0x43,0x12,0x9e,0x3a,0x65,0x5d,0xa5,0xf8,0x11,0x52,0x90, -0x1e,0x6a,0x4c,0x95,0x8e,0x17,0xdf,0xcb,0x5f,0xc4,0x2a,0x6b, -0x46,0xf0,0x72,0x9b,0xdc,0xa6,0x08,0x04,0x18,0x66,0xa7,0xb2, -0xf5,0x03,0xcf,0x4c,0xb0,0xaf,0xb2,0x3e,0xfe,0xeb,0xeb,0x2f, -0x21,0x4d,0x4b,0xef,0x11,0xc7,0xf5,0x97,0xc4,0x5f,0xe0,0x32, -0xf7,0xcf,0x50,0x17,0x4d,0xbe,0x08,0x65,0xc1,0x79,0xef,0x69, -0xe3,0x39,0x2e,0xe8,0xf4,0xe1,0xe0,0x9e,0xd3,0x8c,0xcf,0x9b, -0xe2,0x7c,0x4c,0x29,0x49,0x99,0xf0,0x94,0xb3,0xb2,0xb1,0x2e, -0x5e,0x3b,0x51,0x71,0xd5,0xe7,0x70,0x19,0x00,0x5b,0x83,0xcc, -0x67,0xd0,0xc6,0x7d,0x95,0xf0,0x56,0xc0,0x94,0x3a,0xc6,0x94, -0xba,0x64,0xa6,0x9c,0x8d,0xed,0xd9,0x95,0x57,0x5a,0x5a,0x56, -0xe8,0xef,0x5b,0x97,0x9d,0x9f,0x5f,0x98,0x6b,0xa9,0x36,0xad, -0xed,0xee,0xb2,0x35,0x96,0x6e,0xdd,0x43,0x77,0xa0,0x97,0x3e, -0x5d,0x62,0xcd,0x37,0x44,0x6f,0x2a,0x28,0xce,0x33,0xea,0xf4, -0x3a,0x8b,0xe3,0x8e,0x68,0xa5,0xe7,0x0b,0xaf,0xb3,0xf7,0xcc, -0xa6,0x5f,0x4e,0xd1,0xf7,0x2c,0x93,0x66,0x20,0x0a,0xcf,0x50, -0xcf,0x52,0x26,0x37,0x5b,0x4a,0xd4,0x44,0xed,0xb7,0x2e,0xd3, -0x54,0x03,0xcd,0x67,0x5e,0xb8,0x20,0x80,0x8a,0x30,0x8d,0x1a, -0x91,0x12,0xb0,0x78,0xb2,0x47,0x0a,0x4a,0x0b,0xb3,0xc9,0x42, -0xec,0xa9,0x3c,0xb3,0xad,0xc8,0xdc,0xe2,0xac,0x8e,0x96,0xb4, -0x45,0xb7,0x0d,0x7e,0x18,0xfa,0xc2,0xae,0x5d,0x7d,0x20,0x16, -0x2c,0x32,0x17,0xf1,0x39,0x90,0x77,0xa2,0x9c,0xd9,0x07,0x86, -0xca,0x59,0x30,0x0d,0x2b,0x08,0x99,0x14,0xc4,0x0b,0x43,0x96, -0xe7,0xa9,0xf2,0x37,0x73,0xb8,0x1e,0x59,0x80,0x3c,0x04,0xff, -0xe0,0x99,0x8d,0x79,0x04,0x1c,0xd8,0xb3,0x7b,0x3f,0xa5,0xff, -0xe4,0x05,0x53,0x06,0xfb,0xc7,0x3e,0x66,0x37,0x4c,0x51,0x2e, -0x3a,0x43,0xf2,0xe9,0xc3,0x3e,0xd4,0xb1,0x4c,0x9f,0xb2,0x23, -0xbe,0x59,0xc5,0xdf,0x79,0xa0,0x01,0xe4,0xa6,0xb7,0xa7,0x56, -0x78,0xd6,0x94,0x1a,0xed,0x89,0x67,0x05,0x5b,0x38,0x8f,0xcb, -0xc6,0x1c,0xce,0x2f,0xc8,0x11,0xae,0x10,0xcf,0x56,0x9e,0x8d, -0x11,0x39,0x16,0x8b,0xc7,0xe9,0x5c,0xff,0xec,0x67,0x4b,0xef, -0x9d,0x3e,0x9d,0x26,0x3e,0xc1,0x6a,0xce,0xeb,0xe9,0x25,0x27, -0x4e,0x60,0xb3,0xb1,0x9c,0x95,0xf8,0x59,0x3d,0x52,0xa9,0x01, -0x0b,0xee,0xe4,0x05,0x41,0xc7,0x02,0x11,0xb3,0xe4,0xc3,0xb1, -0x3f,0x62,0xfb,0x0e,0x68,0xec,0xcb,0x73,0x85,0x01,0xb3,0x03, -0xf7,0x2f,0x53,0xf5,0x41,0x83,0x9f,0x8d,0x92,0xe2,0x63,0xfe, -0x01,0x3e,0x4f,0x2f,0x18,0xc0,0xda,0xe7,0x49,0x29,0x3a,0xab, -0x7e,0x9e,0x44,0x84,0xd1,0xc0,0x62,0x8a,0x28,0x6d,0x7f,0xf0, -0x18,0x79,0xec,0x31,0xc0,0x99,0x80,0xbc,0x55,0xd5,0x18,0xcb, -0xc2,0xd5,0xa6,0xa3,0x3a,0x5a,0x87,0xfc,0x84,0xfc,0x34,0x5d, -0x93,0xcd,0x54,0xeb,0xfb,0x09,0x28,0x1c,0x8a,0x5d,0xe9,0x29, -0x66,0x0e,0x76,0xf8,0xde,0xb1,0x98,0xb1,0xaf,0x3b,0x67,0xf5, -0x94,0xaa,0x90,0x29,0x8b,0xde,0x9c,0x26,0x27,0x5b,0x2b,0x0e, -0x05,0x88,0xa6,0x06,0x57,0x3c,0x81,0xf6,0x76,0x3c,0x54,0xaf, -0x80,0x92,0x0a,0xe8,0xad,0x7c,0x02,0x0b,0x11,0x12,0x5e,0xd1, -0x10,0x57,0xb3,0x94,0x72,0xc6,0x0e,0xfa,0xbd,0x92,0x15,0xac, -0x15,0x1d,0x73,0x39,0x20,0x4b,0x41,0x13,0xf0,0x38,0x8c,0xc5, -0xad,0x6b,0x0b,0x01,0xae,0x00,0x15,0x43,0x97,0xb2,0xdd,0x5b, -0x4c,0xa5,0x64,0xad,0xae,0xb4,0xdd,0x3b,0x3f,0x33,0x33,0xef, -0x6d,0x2f,0xd5,0xc5,0x34,0x3f,0x6c,0x5e,0x58,0xe8,0x68,0x6b, -0x23,0x03,0x91,0x60,0x30,0xb2,0x10,0x76,0x78,0x6e,0x3e,0x76, -0xec,0x66,0x8f,0xe3,0x2f,0x7f,0x51,0x3e,0xc5,0x89,0x2e,0x4a, -0xe4,0xe8,0xd8,0xcc,0x86,0x99,0x31,0xfc,0x12,0x8d,0xc7,0xa3, -0x74,0xfc,0xa1,0xdf,0xce,0x6b,0x38,0xfe,0x0e,0x8e,0xa9,0x3d, -0x28,0xf7,0xe1,0xfa,0x98,0x81,0xfd,0x5f,0xbb,0x3e,0x52,0xb6, -0xfb,0x14,0x06,0x50,0x07,0xe3,0xf5,0x22,0x22,0x46,0x50,0xec, -0xe7,0xb1,0xe4,0xea,0x20,0xfb,0x47,0x4d,0xbd,0x3f,0xc5,0xb7, -0x51,0x76,0x9c,0x1b,0xa7,0x0b,0x75,0x08,0x18,0xf2,0x79,0xfa, -0x97,0x6d,0xf4,0x21,0xfe,0x95,0xde,0xdf,0x0c,0xf8,0xa8,0x7c, -0x5e,0x81,0x2a,0x63,0x7c,0x21,0xc5,0xab,0xaf,0x2e,0x4a,0x91, -0x0f,0x80,0x54,0xa6,0x76,0xf8,0x31,0x9b,0x23,0x9f,0xf2,0x58, -0x3e,0x83,0x3c,0xac,0xa5,0x1f,0xc0,0xc5,0xa6,0xe7,0x13,0x9b, -0x8f,0x13,0x2b,0x26,0x07,0xed,0x51,0x56,0xfa,0xd4,0xe4,0x26, -0x57,0x18,0xca,0xa3,0x9d,0x6b,0x37,0xc4,0xf6,0x77,0xae,0x8e, -0xc5,0xde,0xac,0x74,0xaf,0x8d,0x7d,0xfd,0xd1,0x2d,0xd5,0xce, -0x67,0x96,0x12,0x32,0x48,0xfe,0x77,0x1c,0xb3,0x4d,0xe0,0x74, -0xd2,0x8e,0x59,0xca,0x23,0xbe,0x9f,0x4d,0x46,0x91,0x3a,0x59, -0x4c,0x62,0x2a,0xff,0x5c,0xb3,0xb1,0xef,0xd1,0x7f,0x4b,0x77, -0x28,0x23,0x47,0xbe,0x2d,0x9e,0x65,0xf9,0xa0,0xae,0x1a,0xe5, -0xf7,0x3e,0x00,0x1d,0x69,0xe5,0x77,0xca,0xd2,0xf8,0xbf,0x4e, -0xa8,0x9e,0xb7,0x17,0x65,0x1d,0x3a,0xb4,0x13,0xcb,0x26,0x57, -0xfe,0xe9,0xd2,0x8d,0xf8,0x90,0x89,0xe9,0x65,0x53,0x4c,0xaf, -0x4e,0xf7,0x14,0xb9,0x0e,0xe3,0x56,0x65,0x90,0xbb,0x5b,0x26, -0x72,0x78,0xca,0x34,0x3a,0xf6,0x39,0x95,0xb4,0x86,0xaa,0x0c, -0xf9,0x98,0xc7,0x05,0x0b,0x1d,0x3d,0x43,0x16,0xfa,0xd6,0x16, -0xac,0x05,0xcc,0x1e,0x38,0x9f,0x87,0xe7,0x18,0xb0,0x41,0x64, -0xe1,0x24,0xec,0x90,0xfb,0x6f,0xfd,0xd9,0x87,0xa7,0x36,0x6f, -0x5c,0xfb,0xea,0x4b,0xcd,0x6d,0x6d,0xcd,0xb7,0xd1,0xcd,0xe9, -0x89,0x0d,0x6b,0xa6,0xe6,0xa3,0x35,0x75,0x0d,0x75,0xae,0x27, -0x85,0x2d,0x25,0xdf,0x28,0x83,0xa3,0xb3,0x94,0xea,0x68,0x77, -0x80,0xce,0x57,0xc1,0x01,0x97,0x85,0x5c,0x2c,0x15,0x6a,0x6a, -0xdf,0xa7,0xec,0x3a,0x29,0xd3,0xac,0x96,0xc9,0x49,0xb0,0x47, -0xb0,0x21,0x73,0xb9,0x2c,0x31,0xb3,0xb7,0x32,0x23,0x5a,0x45, -0x16,0xf5,0xa5,0x72,0x79,0x21,0x5f,0xa6,0x74,0xa4,0xbc,0x13, -0x30,0xee,0x6c,0xec,0x76,0x78,0xad,0x97,0x9f,0x81,0xd7,0x3a, -0x44,0x8e,0xc6,0xe8,0xd6,0xff,0xc4,0x86,0xc9,0xa9,0x39,0xfe, -0x66,0x8c,0x6b,0x64,0x94,0x39,0xbf,0xe6,0xef,0xb6,0x03,0x24, -0xb8,0x85,0xd7,0x5b,0xcf,0xd3,0xe0,0x36,0x57,0x78,0x81,0xbf, -0xff,0x79,0x67,0x63,0xea,0x29,0xd0,0x3e,0xa7,0xa2,0x6f,0x2f, -0xca,0x50,0xf9,0x6b,0x3e,0xb5,0x96,0x76,0x8a,0x7d,0xa3,0x8e, -0x90,0xb0,0x9a,0xbf,0xe0,0xb3,0xe3,0xad,0xf7,0xfc,0x8c,0x25, -0x0c,0xc2,0x92,0xaf,0xe1,0x8f,0xa5,0xed,0x0d,0xab,0xcd,0x01, -0xed,0x25,0xee,0xfb,0x4e,0x8d,0xaf,0x0e,0x45,0x2d,0x5d,0x15, -0x3b,0xa7,0x3a,0xe6,0x7b,0xaa,0xab,0x7b,0xe6,0x3b,0xd6,0x61, -0xc3,0xd2,0xf6,0xd5,0xe3,0xa7,0x88,0x37,0x7b,0x74,0xae,0xb9, -0xd9,0xd7,0x31,0xa4,0xe0,0x64,0x87,0xc3,0x18,0x6f,0x2e,0x50, -0xb0,0xb1,0x67,0xe4,0x5f,0xd1,0xe7,0x2f,0xa3,0x02,0xed,0x03, -0x00,0x76,0x54,0x2c,0xf1,0x1a,0xac,0x84,0x92,0x11,0x81,0x90, -0xa2,0xda,0xa5,0xc4,0x2d,0x13,0x65,0x5b,0x13,0x86,0x30,0xec, -0x32,0x4a,0x49,0xf5,0x44,0x24,0xbd,0x40,0x54,0xfe,0x36,0x30, -0x41,0xa3,0xf4,0x8b,0x51,0x5c,0x12,0x9a,0xd6,0x95,0xef,0xed, -0xb8,0xc6,0x78,0x45,0x2c,0x76,0x55,0xee,0x55,0x5b,0x83,0x33, -0xd0,0xbb,0x72,0x26,0x38,0xb0,0x66,0xcd,0x00,0x3d,0xf2,0x6f, -0x3a,0x48,0x55,0x94,0x97,0xf6,0x5d,0x55,0x3b,0xba,0x6b,0x60, -0x60,0xd7,0x68,0xed,0xd8,0x9a,0xb9,0x89,0xb9,0x35,0xf8,0x05, -0xde,0xd5,0x47,0x27,0xec,0x7b,0xa8,0xab,0x3a,0xa1,0x4b,0x80, -0x89,0x57,0x92,0x61,0x46,0x9f,0x73,0xf1,0x1c,0x66,0x2d,0x8d, -0xf1,0x50,0x26,0x4c,0x4c,0x27,0x3d,0x87,0x4d,0xa5,0x53,0x63, -0x62,0x3a,0x85,0x89,0x59,0xc1,0x75,0x5a,0x6e,0x34,0x62,0x99, -0x7b,0x93,0x62,0x13,0x92,0x10,0x7f,0xc3,0xa0,0xaf,0xd3,0x45, -0xad,0xc3,0xd1,0x28,0x65,0xbb,0xd8,0x91,0x70,0x49,0x63,0x65, -0x84,0xac,0xbe,0x0d,0xf8,0x2f,0xba,0xc6,0x56,0x49,0xed,0xc0, -0xa9,0xa1,0xd5,0xb3,0x4b,0xef,0x3d,0x7d,0x63,0x83,0x9d,0xe4, -0x7e,0xad,0xa6,0xce,0x55,0xe7,0x4a,0x13,0x9b,0xe2,0x39,0x89, -0x23,0x3c,0x27,0x71,0x2b,0xeb,0x0f,0x57,0x2e,0xd6,0x4f,0x41, -0xe6,0x28,0x83,0xa6,0x27,0xa5,0x28,0x93,0x93,0xcf,0x73,0x06, -0x61,0x36,0xcb,0xf8,0x9a,0x82,0xd9,0xb4,0x88,0x28,0x03,0x5f, -0x3e,0x6e,0x57,0xad,0xb2,0x7c,0x4c,0x0b,0xe4,0x4b,0xf1,0x2f, -0x2c,0x42,0x2a,0x61,0xfc,0x24,0xf1,0x40,0x32,0xe1,0xa2,0x7c, -0x62,0xe2,0x99,0x7d,0xbb,0x76,0xed,0x9b,0x08,0x47,0xda,0x23, -0xe1,0xf8,0x3b,0x52,0x6a,0x1c,0x0d,0x72,0x81,0x59,0x1c,0x6d, -0x45,0x3f,0x4a,0xe5,0x0a,0x7e,0x14,0xe5,0x99,0x4c,0xee,0x05, -0x72,0x7d,0xfc,0xa5,0x19,0x7a,0xd7,0xa5,0xe3,0x74,0x4c,0x72, -0x97,0x2f,0x94,0xbf,0x2e,0xc3,0x36,0x89,0x63,0x52,0x22,0xc6, -0x24,0xad,0x1f,0xa5,0x32,0xad,0x1f,0x85,0x88,0xb2,0x41,0xd0, -0xdc,0xb3,0xf0,0xa4,0xda,0x8b,0xa2,0x14,0x28,0x49,0xeb,0x45, -0x71,0xa1,0x4d,0x9c,0x3b,0xde,0x1c,0x20,0x0f,0xed,0x98,0x5c, -0xfa,0xfd,0x24,0x79,0x77,0x59,0xaa,0xaf,0x99,0x18,0xf8,0xe1, -0xfd,0xff,0xb9,0x74,0xfc,0xd4,0xbd,0xf7,0x9e,0x92,0xbd,0xb7, -0x3f,0xf0,0xfd,0xb0,0x41,0x4a,0x8d,0x15,0x42,0x6e,0x3a,0xdd, -0xf0,0x3f,0x4f,0x9f,0x3d,0x42,0xa4,0x8c,0xbe,0x94,0xca,0x64, -0x5d,0xb1,0x32,0x59,0x07,0xa9,0xcc,0xec,0x4b,0x51,0xbb,0x4e, -0x52,0x9c,0x2b,0xe9,0x7d,0x29,0x88,0xc8,0x6a,0x53,0xe0,0x9c, -0x6d,0x4a,0x08,0x51,0xfd,0x81,0x25,0xa4,0xb6,0x61,0xe5,0x81, -0xff,0x87,0x8e,0x17,0x90,0xef,0x99,0x1c,0x2f,0x68,0x8b,0xc1, -0x22,0x6b,0xe8,0xbf,0xd8,0xe4,0xb2,0x96,0xba,0x0a,0xb7,0xf4, -0xb7,0x3b,0x5b,0xcd,0x97,0x5c,0x37,0x73,0xdd,0x01,0xb3,0xdf, -0xd9,0xde,0xbf,0xad,0xb0,0xba,0xd4,0xea,0x36,0x5d,0xd8,0x3f, -0x60,0x6f,0xb2,0x5c,0x4f,0xc9,0x87,0xca,0xea,0xed,0x03,0x13, -0xcf,0xd5,0x54,0x65,0x19,0xb2,0xec,0x8e,0x1f,0x4d,0x38,0xeb, -0xde,0x24,0xa1,0xf8,0x8f,0xde,0xac,0x73,0x4e,0xfc,0xc8,0x61, -0xa7,0xc4,0xaa,0x9a,0xe7,0x26,0xaa,0x1b,0xce,0xc4,0xbf,0x4f, -0x7a,0xcf,0x34,0x54,0xc3,0xfc,0xd4,0xd2,0xbd,0xb4,0x84,0xda, -0x08,0x7e,0xe6,0x7b,0xd1,0x62,0xdf,0xb8,0xef,0xa5,0x32,0x83, -0xef,0xa5,0x20,0x8d,0xef,0xa5,0x40,0xf8,0x5e,0x0a,0x34,0xbe, -0x17,0xc3,0x39,0xfa,0x5e,0x10,0xaa,0x4e,0x2a,0x66,0xaf,0xf6, -0xf5,0x3a,0xe7,0x07,0x56,0xcf,0xac,0x9a,0xda,0xbb,0x73,0x62, -0x68,0x78,0xb4,0x7f,0xaa,0x7c,0xd0,0x7b,0xe1,0xdc,0x65,0x07, -0xc6,0xfa,0xaa,0xc3,0x75,0xe5,0x35,0x03,0x0b,0xf9,0xc3,0x9d, -0xad,0xfe,0x60,0xef,0x40,0x41,0x78,0x70,0xa2,0xa7,0xa7,0x30, -0xd8,0xd1,0xe4,0x69,0x08,0x77,0xef,0x5a,0xbf,0x2a,0x56,0x60, -0xd0,0x97,0xd5,0x75,0xfb,0x5a,0xd6,0x84,0xed,0xca,0xba,0xc4, -0xda,0x3f,0x2b,0xf9,0x61,0x2a,0x93,0x65,0xc0,0x0a,0x01,0xd7, -0x95,0xfd,0x30,0x84,0xfb,0x61,0x88,0x7b,0x61,0x3a,0x9b,0x1a, -0x0a,0x0d,0x6b,0xe0,0x5b,0xfc,0xa7,0x6b,0xe4,0x13,0xf1,0x89, -0xbb,0x0e,0x91,0x7f,0x5b,0x8a,0x92,0xaf,0xdf,0x75,0x28,0xde, -0xa9,0xaa,0x57,0x74,0xb7,0xec,0x95,0x8f,0xa1,0x2f,0xe6,0xce, -0xa0,0x24,0x9e,0xf9,0x62,0xac,0x2b,0xf0,0x18,0xe0,0x1c,0xb4, -0x75,0x05,0x52,0x9e,0x99,0x4b,0xb6,0xca,0x73,0xc1,0x39,0x9c, -0xc0,0x0a,0xda,0x0c,0xac,0x50,0xe9,0x47,0x86,0xaf,0x64,0x9c, -0xff,0x8a,0xf2,0xe1,0x3b,0x9a,0x0f,0x0b,0xca,0x39,0x0b,0x4a, -0x2e,0x1a,0xeb,0x7c,0x52,0x80,0xad,0xd3,0x64,0x5e,0xbf,0xab, -0x8c,0x97,0xfb,0x60,0xca,0x75,0x66,0xa6,0x5e,0x98,0xb9,0xed, -0x0e,0x6b,0x93,0xb3,0xa5,0xff,0xfa,0x12,0x6b,0x89,0xb5,0xa6, -0xf4,0x70,0x6f,0x5f,0x79,0x93,0xf5,0xbe,0xdb,0xa0,0x08,0xd7, -0x8f,0xde,0xf2,0x3a,0x27,0x5e,0x70,0x94,0x66,0x19,0x0c,0xe5, -0xee,0x17,0x27,0x2a,0xbd,0xef,0xc5,0xbf,0xcf,0x70,0xa2,0xf2, -0x5a,0x19,0x54,0x95,0x58,0x46,0x7f,0x4d,0x65,0x66,0x55,0x50, -0xad,0xc0,0x48,0xe2,0xf9,0xf3,0x79,0x56,0x98,0xe2,0xab,0x71, -0x09,0x5f,0x4d,0xee,0x2a,0x6b,0x4d,0x59,0x2e,0x79,0x68,0x66, -0x59,0x2a,0x28,0xf7,0x58,0x2d,0xed,0x1e,0xcf,0x44,0x59,0xff, -0x8e,0xe3,0x17,0x3c,0xb5,0x14,0x95,0x0f,0xdc,0x70,0xf1,0x27, -0x2e,0x1a,0xb6,0x5a,0x4a,0x57,0x8c,0x9d,0xd7,0x49,0x29,0xf1, -0x69,0x3e,0xa7,0x1b,0xe4,0x13,0x2b,0xfa,0x23,0x2a,0xdf,0x8f, -0x3f,0xa2,0x40,0xf1,0x47,0xa0,0xc8,0xf8,0xdf,0x99,0xf8,0x3f, -0xce,0x40,0x8c,0x5f,0x3e,0x40,0xc5,0x46,0x72,0xfc,0x5b,0xa9, -0x11,0x8b,0xcf,0xe3,0x4e,0xd4,0x44,0x50,0xe2,0xd2,0xcc,0x3f, -0x21,0xf7,0xcb,0xa0,0x64,0x6c,0x38,0x81,0x6d,0x0d,0xcd,0x2b, -0xe5,0x2d,0xa6,0x00,0x13,0x38,0x5e,0x48,0x8c,0x33,0xc4,0xd8, -0x75,0xbc,0xac,0x3d,0x94,0x07,0xcb,0x62,0x7b,0x20,0x81,0x0a, -0x58,0x80,0xc9,0x2d,0xd4,0x35,0x92,0xe3,0xbb,0x5d,0xf1,0xf8, -0xa6,0x8f,0xb5,0x1b,0x9a,0x0e,0xcd,0x9d,0xc9,0x2b,0x73,0xd4, -0x57,0x45,0x26,0xd6,0xcb,0xf6,0xf8,0xf7,0xae,0xb9,0x8e,0xf4, -0x2c,0x3d,0x50,0xe9,0x36,0x67,0x33,0x9b,0xa1,0x6d,0xf9,0x37, -0x3a,0x9b,0x12,0x23,0x97,0x6e,0x02,0x27,0x80,0xe2,0xcb,0x70, -0xf0,0x18,0xb9,0x43,0x89,0x91,0xe7,0xfb,0x79,0x45,0x4a,0x09, -0x2d,0x53,0xfa,0x21,0xa0,0x7c,0xd8,0x86,0x1f,0x98,0x10,0x84, -0x72,0x0d,0xf9,0xbc,0xc4,0x89,0xc4,0xf3,0x05,0x18,0x40,0x92, -0x8d,0xaf,0x43,0xa8,0x10,0x2c,0x30,0xdd,0x21,0xee,0xb1,0x52, -0x38,0x3a,0x62,0x4a,0xc4,0xa3,0x89,0x3a,0x1e,0x7d,0x7d,0xf5, -0xd8,0xfe,0xc9,0xba,0xfa,0xc9,0xfd,0x63,0x8e,0x19,0x47,0xf4, -0xc0,0x64,0x7d,0xfd,0xe4,0x81,0xa8,0x63,0x46,0x76,0xfa,0x27, -0x3b,0x1c,0x8e,0xc8,0xa4,0xff,0x6e,0xfc,0xd0,0x31,0xe9,0x77, -0xf6,0x36,0xad,0xd9,0xdb,0xd7,0x7b,0xe1,0x9a,0xa6,0x8d,0x1b, -0x9b,0xd6,0x5c,0xd8,0xdb,0xb7,0x97,0x7e,0x7a,0x90,0x7c,0xb5, -0xaa,0x6d,0xa4,0xae,0xaf,0x6e,0xa4,0xad,0x4a,0x7c,0x88,0x4f, -0xa5,0x8b,0x47,0x2f,0x2c,0x83,0x46,0xc5,0xf3,0x4f,0x93,0xfd, -0x0e,0xdc,0x12,0x5c,0x61,0xbf,0xd3,0x9a,0xa9,0x05,0xc2,0xef, -0x00,0xce,0x43,0x6e,0x9c,0xba,0xb8,0x61,0xba,0x6f,0xe9,0xed, -0x19,0xb2,0x7e,0x66,0x07,0xbd,0xfb,0xd2,0x71,0x60,0xbb,0x53, -0x4a,0x7e,0x67,0x1d,0xd6,0x5a,0xdb,0x02,0xeb,0x55,0x8b,0xb5, -0x4f,0x49,0x87,0xe7,0x6c,0x53,0x99,0xa6,0xcd,0x30,0xfc,0x75, -0x36,0x07,0xfc,0x14,0x70,0x98,0x08,0xab,0x82,0xcd,0x93,0x9b, -0x54,0x1e,0x06,0x2c,0xd4,0x0c,0x39,0xc3,0xe4,0x05,0x43,0x65, -0xcc,0x7f,0xf8,0x9a,0x99,0xd9,0xd9,0xb6,0x98,0x6d,0x66,0x86, -0x98,0xf3,0xf2,0xaf,0xb9,0xf1,0xe9,0xa7,0x37,0x4f,0xe7,0xe7, -0x91,0x85,0xa5,0xa8,0xd8,0x5f,0x75,0x5b,0x71,0x8c,0xd2,0xf8, -0x19,0x52,0xd6,0x62,0x0a,0x38,0x24,0xe5,0x2d,0xb4,0x7e,0x86, -0x82,0x84,0x9f,0xc1,0xc5,0x87,0xcb,0xb5,0x30,0x43,0x74,0xf0, -0xff,0x7b,0x71,0x65,0xb0,0xe8,0x11,0xe5,0xf3,0xa5,0x7b,0x0a, -0xe5,0xd3,0x45,0xa9,0x7e,0x86,0xb3,0xcf,0x57,0x0a,0x82,0x2a, -0xfd,0x04,0x26,0xfc,0x0c,0x94,0xe5,0xd5,0x13,0xc9,0x27,0x53, -0x77,0xf0,0xbd,0xff,0xe1,0x8f,0x98,0x98,0x4f,0x3e,0xa7,0x32, -0xee,0x15,0x4f,0x26,0xf4,0xf2,0xb3,0xf8,0x19,0x2a,0x57,0xf0, -0x33,0xa4,0xea,0xe5,0x72,0xb2,0x5e,0x4e,0x55,0x4f,0x53,0xaa, -0x5e,0xfe,0xe3,0xaf,0x93,0xdc,0x97,0x51,0x2d,0x7f,0x9e,0xb4, -0x80,0x5a,0xfe,0xb2,0x7c,0x60,0x22,0xfe,0x7a,0x92,0x5e,0x4e, -0x27,0x13,0xe6,0xb6,0x50,0x3e,0xc1,0xfd,0x0b,0xd7,0x81,0x33, -0x59,0xf1,0x2f,0xe4,0xf0,0x32,0x85,0x39,0x1a,0xff,0x42,0xca, -0x7c,0xa7,0x94,0x9e,0x54,0x67,0x51,0xa6,0x64,0x0e,0x95,0xf2, -0xcd,0xae,0x94,0x5b,0x18,0xb2,0x5f,0x2d,0x0a,0x53,0xde,0x03, -0x14,0x84,0x85,0x99,0x24,0x03,0x23,0x07,0xab,0x50,0x6a,0x5e, -0x86,0xb1,0x07,0xb7,0x89,0xa6,0xf8,0xfb,0xac,0x83,0xb7,0x51, -0x7c,0x0a,0x39,0x2b,0x23,0xaf,0xfe,0x8e,0x67,0x5c,0x98,0x49, -0x1a,0xe9,0x13,0x29,0x03,0xcd,0x74,0xc7,0x5e,0xaa,0x3b,0x3a, -0xc1,0x8f,0x50,0x92,0x54,0xe3,0x34,0x45,0xb7,0x4f,0x64,0xf7, -0x80,0x51,0xc9,0xea,0x07,0x57,0xa4,0xf8,0x11,0x0a,0x04,0x22, -0x40,0x29,0x22,0xac,0x55,0x11,0x85,0x17,0x01,0x73,0xa6,0x9e, -0x24,0xde,0x5d,0xdb,0x46,0xe7,0x2d,0x23,0xae,0x6b,0x36,0x1d, -0xfd,0xc8,0x47,0x8e,0x2e,0x5c,0xef,0x1a,0xb6,0x6c,0x5c,0x15, -0x18,0x6f,0xb5,0xc5,0x5f,0x26,0x47,0x8a,0x2e,0xbe,0x76,0x30, -0x5c,0x3f,0x1e,0x7b,0xfc,0xb1,0xc7,0x9e,0x9c,0x9d,0x68,0xe8, -0x1c,0xad,0xe9,0xdf,0x10,0x2e,0x64,0x63,0xba,0x7c,0x46,0x07, -0xd8,0xd8,0x12,0x7a,0xa7,0x0f,0x80,0x34,0x51,0xec,0x6a,0x6d, -0x0d,0xb4,0x14,0xed,0x22,0xa5,0x28,0x5a,0x4a,0xa7,0x97,0x84, -0x8e,0x0c,0xdc,0x6d,0xe4,0x5d,0xee,0x99,0x0f,0x41,0x79,0x3b, -0x56,0x17,0x0d,0x7c,0x08,0x36,0x8e,0x4b,0xc4,0xa4,0x01,0x13, -0x6f,0x97,0x04,0x2f,0xaa,0xf5,0x20,0xc8,0x17,0x7c,0xf0,0xee, -0xec,0x4f,0xcc,0xcc,0xdc,0x9f,0x75,0xef,0x4d,0xb7,0x7e,0xec, -0x63,0xb7,0x6e,0xda,0xbb,0x77,0x13,0x3d,0xf2,0x1f,0xf9,0x4c, -0xfc,0x07,0x74,0x6e,0x7e,0xfc,0xa9,0x7f,0x78,0xfc,0x6b,0x5f, -0x7b,0x7c,0xf5,0x55,0xfb,0x0e,0xee,0xbb,0x0a,0xbf,0xc0,0x3b, -0xd6,0xd3,0x2f,0x6e,0xf9,0x04,0x22,0x16,0xae,0x05,0xe7,0x9e, -0xe2,0x27,0x81,0x04,0x43,0xcf,0xb9,0xd5,0x7d,0x4e,0xc9,0x7e, -0xb2,0x15,0x2b,0xd2,0xdd,0x03,0x60,0x08,0x01,0x5f,0xb0,0x20, -0x0d,0x1a,0xd9,0x78,0x44,0x3b,0x28,0x3b,0xd7,0xb1,0x22,0x7d, -0xba,0x08,0x66,0xdf,0x87,0x83,0x2e,0x61,0xd6,0x24,0x7c,0x07, -0xf5,0x3d,0x73,0xd9,0x85,0x45,0xe6,0x7c,0xff,0x68,0x93,0xe5, -0xfc,0x05,0x52,0x36,0xf3,0x89,0x2b,0x2d,0x3e,0x7b,0x1f,0xf9, -0xdc,0xf7,0x82,0xe1,0x70,0x70,0xe2,0x91,0xe2,0xb2,0xe2,0x5c, -0x9d,0x81,0xd8,0x5b,0x47,0xea,0xb6,0xef,0xa6,0xda,0x73,0xd3, -0x6b,0xf5,0x76,0x72,0xf0,0xbd,0xf6,0x00,0xfd,0x97,0xc0,0xaa, -0x40,0xcf,0x15,0x3d,0xc3,0xf2,0x3c,0x27,0xa9,0x30,0x2c,0xa7, -0x05,0xfd,0xbc,0xe7,0x24,0x15,0x96,0x05,0xce,0x37,0xb0,0xf3, -0x7f,0xab,0xa6,0x9f,0x16,0xf4,0xf3,0x7e,0x2b,0xae,0xa3,0x6b, -0xc5,0x38,0xce,0xab,0x02,0xb3,0x74,0x3f,0xf4,0x5a,0x91,0xcf, -0x67,0xbd,0x56,0x9e,0x51,0xe3,0x28,0x8e,0xd3,0x39,0x1f,0x7c, -0xbf,0xf1,0x26,0xe8,0x1b,0x72,0x52,0x13,0x66,0x82,0x60,0x06, -0x84,0x99,0x96,0xc6,0x01,0x51,0x71,0xc7,0xf3,0xbc,0x1f,0x1c, -0xf4,0x49,0xfb,0x47,0xec,0x9d,0xbd,0x90,0x5a,0xc7,0x35,0xc5, -0x1d,0xae,0xce,0x1c,0x56,0xba,0xdc,0xc1,0x2e,0x50,0xc0,0x3d, -0x5b,0xb0,0x0b,0xb0,0xb8,0x92,0x5c,0xac,0x12,0xf3,0xa0,0xa8, -0x41,0x61,0x2d,0x17,0x6f,0xe1,0xe6,0xde,0x33,0x31,0x41,0xa2, -0xef,0x3e,0xf4,0x50,0xec,0xb5,0xbe,0x53,0xd1,0xfb,0xfa,0x5e, -0xd3,0xd6,0x0c,0x71,0x48,0x97,0xc0,0x62,0xd6,0xe6,0xa6,0xa4, -0x40,0xaf,0xd5,0xcf,0x92,0x94,0x13,0xa0,0xc0,0x3c,0x0a,0x8b, -0x15,0x6b,0xbb,0x0c,0xdc,0x12,0x02,0x0a,0x94,0xcd,0xa1,0x40, -0x65,0x58,0x37,0x1e,0xda,0x34,0x83,0x93,0x82,0x2f,0x0e,0x50, -0xdd,0xdd,0x3c,0xee,0x63,0xc7,0xb6,0x49,0xc4,0x3d,0x57,0x68, -0x0a,0xf6,0x74,0xae,0x8e,0xd1,0x87,0x86,0x78,0xc3,0xf4,0xec, -0xe4,0x48,0xfb,0x61,0xd3,0x60,0xf7,0xd6,0x91,0x50,0xb5,0xf3, -0x21,0x59,0x1f,0x7d,0xae,0xd2,0x3d,0xbb,0xfb,0xb2,0x3d,0xdb, -0x44,0x9c,0xee,0x5d,0xec,0x9d,0x93,0xc3,0x7a,0xf0,0xfc,0x4e, -0x4a,0xd0,0x91,0x4f,0x18,0x7d,0x5a,0x43,0x3f,0x2d,0xe8,0xe7, -0xfd,0x4e,0xc9,0x07,0x86,0x5e,0x52,0xc5,0x74,0x99,0xcd,0xc3, -0x78,0x78,0x31,0x98,0x95,0x31,0x5e,0xa0,0x76,0x3e,0xe6,0xaa, -0xd0,0x2c,0x0a,0x1a,0xca,0x0a,0x79,0x61,0xbc,0x56,0x22,0x43, -0x0c,0xa9,0xf1,0xcb,0xaa,0xec,0x66,0x98,0x21,0x84,0x92,0x63, -0xff,0xd4,0x8a,0xce,0xf9,0xee,0xea,0xea,0xee,0xf9,0xce,0xd8, -0x16,0xeb,0x70,0xe1,0x60,0xd0,0xdb,0xe1,0x29,0x39,0x75,0xaa, -0xc4,0xd3,0xe1,0xdd,0xdd,0xd8,0x55,0xb1,0x2b,0x5f,0xe3,0x52, -0xb5,0xd6,0x77,0xd6,0x64,0x0f,0x17,0xd4,0x74,0xd6,0x5b,0x37, -0xfa,0x3a,0x86,0x58,0x7d,0x6d,0xf9,0x65,0xc4,0xc5,0xed,0x65, -0xef,0x3c,0x2b,0xea,0x6e,0x53,0xfa,0x69,0x41,0x3f,0x6f,0x96, -0xbd,0x73,0xdd,0xf2,0x41,0xf9,0x0c,0xe5,0x81,0x4e,0xe9,0x97, -0x60,0xd8,0x30,0x9d,0x3c,0xa9,0x16,0x52,0x4a,0x37,0xbe,0x8a, -0xe4,0x62,0x84,0x15,0x99,0xeb,0xc6,0xa4,0x58,0xdf,0xea,0xda, -0xc4,0xb9,0xf4,0xea,0x45,0x3c,0xcf,0x0e,0x34,0x2e,0xd6,0x06, -0xa5,0x58,0x38,0xc9,0x5d,0x9c,0x99,0x72,0x39,0xf6,0xa0,0x8a, -0xe7,0xe3,0x7e,0x43,0x72,0x51,0x3e,0xaf,0x5d,0x64,0x75,0x0f, -0x9b,0xf1,0xac,0x56,0x71,0x16,0x44,0x62,0xc2,0x78,0x16,0x5c, -0xad,0x13,0x63,0x32,0xae,0x24,0x34,0x4c,0xe8,0x9c,0x51,0x34, -0xf2,0x97,0x72,0xd5,0xb8,0x98,0xb3,0xa1,0x68,0xe6,0xc6,0xab, -0x1a,0x00,0x1b,0xd3,0x50,0xb5,0x22,0x82,0xe6,0x79,0x5e,0x63, -0xfa,0x9b,0x38,0x57,0x17,0xb2,0xb9,0x7a,0x42,0xe2,0x78,0x9a, -0x83,0x88,0xa7,0x69,0x81,0x9c,0xee,0x42,0x6a,0x7c,0x06,0xde, -0x1f,0x9e,0xc6,0x24,0x7c,0x3a,0x26,0x3f,0xac,0xe1,0x64,0x3c, -0x8d,0x09,0x93,0xa3,0x94,0x22,0xbc,0x8c,0x67,0x9b,0x71,0x94, -0xac,0xa2,0xb0,0xe3,0xd9,0x11,0x36,0x46,0x8b,0xfb,0xfb,0xfd, -0x53,0xb6,0x15,0x40,0x36,0x0b,0xb1,0xf1,0xdc,0xac,0xf6,0xa6, -0x95,0x70,0x36,0xc3,0xb3,0xd9,0x87,0x95,0xbd,0x57,0x7a,0x58, -0x7e,0x15,0x3a,0x2b,0x83,0x3e,0xaf,0xc7,0x7c,0xbd,0x8c,0x79, -0xdf,0x09,0x53,0x1a,0xf5,0x1f,0xf7,0x6c,0x2c,0x26,0xbf,0xba, -0x54,0x25,0xb0,0x31,0xcf,0x09,0x6c,0xcc,0xf4,0x7b,0x09,0x9c, -0xea,0x9f,0x71,0xcf,0x67,0xf4,0x59,0x35,0x1d,0x7a,0xf4,0x71, -0x7a,0x4c,0x45,0x8f,0xe3,0xf9,0xfb,0x98,0x8c,0xf8,0x9d,0x88, -0x29,0xca,0x15,0x74,0xbd,0xb8,0xa5,0x3b,0xc1,0x36,0xf3,0x60, -0x82,0x49,0xc6,0x7c,0xbe,0x94,0x5e,0x9e,0x2b,0xae,0x06,0xc0, -0xaf,0x65,0xf3,0x9a,0x2f,0x8a,0x8b,0xb2,0x44,0xe4,0x17,0x55, -0xd2,0xdf,0xe7,0x09,0xfe,0x76,0x8a,0x7e,0xa7,0x6e,0x2d,0x7f, -0x9b,0xd2,0xc3,0x6e,0xc8,0x62,0x3e,0xc3,0xd6,0xa4,0xc3,0xdd, -0xcc,0x8d,0x03,0xb8,0x26,0x1d,0xea,0xe6,0x79,0x25,0xa6,0x5b, -0x45,0xdf,0xb9,0x16,0xea,0x38,0x3b,0x92,0xf6,0xc5,0x4c,0x11, -0xdb,0x04,0x81,0x67,0xf5,0xa4,0xc7,0x15,0x41,0xb7,0x1b,0x96, -0xa3,0xe3,0x16,0xb8,0x22,0xe8,0xad,0xc7,0x1c,0x0e,0x0c,0x67, -0x5a,0xc8,0x31,0x46,0x6e,0x6e,0x69,0xd8,0x44,0x14,0xc7,0xcd, -0x8b,0xc7,0xc2,0x77,0xd7,0x49,0x16,0x4e,0x3b,0x1b,0x18,0x0e, -0xb0,0x27,0x4d,0x3d,0xbe,0x8d,0x16,0x5f,0xa5,0xbf,0x6f,0xa2, -0xc8,0x62,0xb2,0x56,0x15,0x8f,0x01,0xf2,0xc8,0x3c,0xe7,0xeb, -0x69,0x02,0xec,0xd1,0x95,0x57,0x7e,0xba,0xd6,0x12,0xbd,0xc9, -0x66,0x36,0xe8,0x75,0xa5,0xd5,0x77,0x44,0x6d,0xb5,0x5f,0xb8, -0xe2,0x0a,0x8e,0x3d,0x2a,0xc5,0xf8,0x06,0x9f,0x7f,0x67,0xd2, -0xfc,0xa7,0x44,0x69,0x53,0xc6,0x42,0xdd,0xce,0x34,0x25,0xd3, -0x2e,0x11,0xc7,0x75,0xd1,0xab,0xb8,0x45,0xd5,0x0c,0xbd,0xa8, -0xc1,0x50,0xc8,0xd3,0xba,0x5d,0x1c,0x7b,0x51,0x95,0x48,0x60, -0x75,0x87,0x56,0xc4,0x5b,0xdd,0x7f,0xeb,0xcf,0x56,0x00,0x5c, -0x91,0x6f,0x47,0x33,0x22,0xae,0x64,0xc0,0x5b,0xc9,0xcb,0x32, -0x14,0xca,0xf3,0x41,0x26,0x9a,0x49,0xf4,0x24,0x05,0xff,0xb9, -0x6f,0x31,0x23,0xf2,0x2a,0xc5,0x89,0x99,0xf0,0x30,0xb1,0x34, -0x2d,0x89,0xa7,0x69,0x99,0xb8,0x3a,0xe3,0x65,0xe1,0x52,0x2f, -0x95,0x00,0x5e,0x0c,0x97,0xe6,0x08,0x68,0x16,0xd3,0xb8,0x4d, -0xdc,0x29,0x2f,0x1c,0x7f,0x22,0x7a,0xaa,0xc2,0x6a,0x09,0x2b, -0xc8,0xc2,0x51,0x5b,0xe3,0x2c,0xf4,0xfb,0x8f,0x0a,0x74,0x4b, -0x1e,0xc2,0x20,0x30,0x47,0x70,0x61,0x74,0x35,0x01,0xe2,0x52, -0xc5,0x59,0x61,0xad,0x4f,0x22,0x7e,0xe0,0x1a,0xf0,0x5a,0x68, -0xed,0xfa,0x14,0xb8,0x40,0x8a,0x82,0xa0,0x09,0x10,0x25,0xaf, -0x75,0x1d,0x14,0x51,0xc3,0x97,0xd6,0x71,0x05,0x49,0xa9,0xda, -0xa5,0x7c,0x2a,0xe2,0xeb,0x9a,0x67,0xa0,0x02,0x72,0x0a,0xa4, -0x91,0x7e,0x21,0x1e,0x8f,0x01,0x78,0x6a,0x6e,0xfc,0xf4,0x69, -0x00,0x4f,0x01,0x90,0x00,0xe3,0xd6,0x3a,0x1b,0xd6,0x72,0xa8, -0x92,0x3e,0x0e,0x52,0xc3,0xce,0x5b,0xbb,0x14,0x6a,0x6a,0x80, -0xa7,0xac,0xd6,0x14,0x95,0x33,0x61,0xe6,0xa5,0x14,0xd1,0x81, -0x68,0x41,0x09,0xb7,0x3f,0x8b,0xf9,0x6a,0x85,0x7d,0xa9,0x90, -0x73,0x63,0x25,0x9b,0xbe,0x4a,0x30,0x46,0x78,0xff,0x61,0x45, -0x2b,0xac,0x12,0xd1,0x6e,0x15,0xea,0x00,0xd6,0x62,0xad,0x2a, -0xea,0xfd,0x0e,0x8f,0xd1,0xbf,0x13,0x93,0x8b,0x71,0x86,0xe0, -0xf5,0x70,0x7a,0x4e,0x9f,0x4e,0x00,0x10,0xd8,0x7e,0xf4,0x4b, -0xd4,0xa1,0xf7,0x83,0x35,0xad,0xd5,0xa1,0xcf,0xfe,0x86,0x29, -0x8a,0x6c,0x02,0xa8,0x09,0xfe,0xa4,0x02,0xfe,0x86,0x79,0x89, -0xfd,0xa8,0x58,0xa9,0xa6,0x81,0x2f,0x80,0xd8,0x2d,0xb6,0x8f, -0xbc,0x03,0x78,0xe9,0x77,0x10,0xc3,0x16,0x8d,0x0f,0x9d,0x3e, -0xad,0xce,0xb3,0x7f,0x4e,0xe4,0x32,0x4c,0xbf,0xc9,0xfc,0x1a, -0x1c,0xdf,0x46,0x79,0xb9,0x8a,0xee,0x87,0x5b,0x13,0x3a,0x66, -0x22,0xaf,0xae,0x66,0xf1,0x1c,0xf4,0x4d,0x06,0x1e,0x80,0xd8, -0x42,0x29,0xd7,0x30,0xed,0x1c,0x7f,0xce,0xb4,0xa6,0x9a,0x24, -0x5d,0x53,0x15,0xd2,0x76,0x59,0x4a,0xcb,0x7c,0xdc,0x28,0xb7, -0x90,0x72,0xc8,0xb5,0xae,0xe9,0x9d,0x6b,0x6f,0x9f,0xed,0xab, -0x81,0xdc,0xeb,0xa1,0x75,0xf1,0x97,0xd7,0xad,0x23,0xde,0x75, -0x43,0x43,0xeb,0xf2,0xbd,0x63,0x3b,0xfb,0x7a,0x77,0x8d,0x79, -0xbd,0x63,0xbb,0x7a,0xfb,0x76,0x8e,0x79,0xc7,0x62,0xd3,0xb9, -0xb9,0xd3,0xb1,0x37,0x64,0xc8,0xbb,0xd6,0xd4,0x13,0x90,0xbf, -0xc7,0xf5,0xe7,0x83,0x80,0x97,0xa3,0xdb,0xe2,0x2c,0xbc,0x9b, -0xd6,0x9f,0xb0,0x62,0xd2,0x71,0x76,0xb1,0x82,0xfb,0x95,0xb8, -0x9e,0xc2,0x86,0xc3,0xb1,0xa8,0x68,0xd4,0x5c,0x3b,0x49,0x53, -0x1a,0x88,0xe9,0xcd,0x54,0x1b,0x79,0x67,0xe1,0xfc,0xea,0xee, -0xb9,0xf0,0x24,0xe2,0x10,0x02,0x9e,0xb0,0xa7,0x64,0x7c,0x6c, -0x7b,0x63,0x57,0x59,0xac,0x6b,0x3c,0x27,0xef,0xae,0x4b,0x35, -0x4a,0xf3,0x86,0x91,0xf9,0x8d,0xbe,0x40,0x7f,0xf6,0xcd,0x09, -0xdc,0xdd,0x53,0xa2,0x27,0x67,0xec,0x5c,0x7a,0x81,0x62,0xbf, -0x5f,0x46,0x5f,0xaf,0x39,0xff,0xb4,0xa0,0x9f,0xf7,0x2c,0x93, -0x19,0x50,0xcf,0xef,0x65,0xc4,0x44,0x2d,0x80,0x4b,0x41,0xeb, -0xab,0x4c,0xa9,0x03,0x92,0xb2,0x8d,0x72,0x21,0x92,0xbe,0xce, -0x95,0x7e,0x51,0x5d,0x32,0x43,0x71,0xcd,0x5b,0xdc,0xcf,0x7c, -0x2b,0xb6,0x10,0x32,0x84,0xb7,0x4c,0x7e,0x8b,0x72,0x67,0x7c, -0x39,0x51,0xc6,0x4a,0xf5,0x3c,0x26,0xe9,0x72,0xd0,0xf9,0xb5, -0x71,0x82,0x94,0xe5,0x92,0xc2,0x88,0x29,0x85,0x20,0xd4,0xb5, -0x17,0x12,0x85,0x20,0x74,0xbc,0xfa,0xa2,0x8e,0xfb,0x2d,0x25, -0x74,0xd5,0xd3,0x59,0xa4,0x92,0x4a,0x3c,0x28,0x5a,0xa7,0xcf, -0x5c,0x7f,0xbd,0x78,0xda,0xeb,0xaf,0x8f,0xf5,0xf5,0x25,0x9e, -0xb8,0xef,0x28,0x7d,0x5e,0x0b,0xdd,0x87,0xf3,0xf0,0x79,0xaf, -0x00,0xe3,0x57,0xfb,0xbc,0x99,0x86,0xeb,0x9c,0xf7,0xe1,0x3c, -0x5e,0x22,0x25,0x07,0xd6,0x38,0xfd,0xa4,0x68,0xcc,0xac,0x8b, -0x22,0xdb,0x83,0x7d,0x6e,0xa3,0xdb,0xac,0x0b,0xd2,0x67,0x0e, -0x1a,0xad,0xa0,0x4d,0x7d,0xaf,0xeb,0x88,0xee,0xee,0xf3,0xbe, -0xf3,0x2f,0x5b,0x6e,0xd6,0xdd,0x76,0xde,0xd7,0x6f,0x9f,0x1b, -0xff,0x8f,0xff,0x20,0x7a,0x22,0x7d,0xf7,0xbb,0x7f,0xfb,0xc1, -0xf3,0xcc,0x17,0x81,0xd8,0x3d,0xd0,0x43,0xaf,0x65,0xbc,0xb3, -0xc8,0xc6,0xbe,0x8d,0xbe,0x4b,0x25,0xe6,0xa6,0xdf,0x06,0xbb, -0xb4,0x36,0xa7,0x3b,0x65,0xa8,0x57,0xe8,0x05,0x0f,0x7f,0x9d, -0xcb,0x4b,0x01,0x16,0x32,0x4c,0x5f,0x21,0xe5,0xbb,0x42,0x05, -0xd3,0x57,0x88,0xf1,0xbe,0x2c,0x5e,0x60,0x2c,0x8b,0xab,0xfc, -0x44,0xb4,0x3c,0x27,0xa8,0x44,0x71,0x11,0x93,0x8a,0xf4,0x83, -0x97,0x7c,0x7e,0x41,0x05,0xf6,0x9b,0x1b,0x57,0xa1,0xfd,0xb4, -0xf8,0xc4,0x0a,0xe9,0x38,0x2b,0xbf,0xa7,0xae,0x3d,0x95,0x32, -0x0d,0x29,0x65,0x08,0x78,0x69,0x44,0x51,0xa1,0xa3,0x82,0x57, -0xe8,0xc0,0xc7,0x2f,0x62,0x89,0x8e,0x90,0xae,0x58,0x4d,0x0f, -0x79,0x41,0x31,0x6e,0x24,0x28,0xc4,0xcd,0x5c,0x72,0x3c,0x77, -0x35,0xeb,0x24,0xeb,0x3e,0x54,0x7c,0x52,0xe9,0xce,0xc9,0xb0, -0x8b,0x74,0x4b,0x08,0xf1,0x97,0xb2,0x52,0xa9,0x03,0x2e,0x07, -0x86,0x60,0x2c,0x6a,0xb6,0xf5,0xcc,0xce,0xc7,0x36,0xf7,0xd4, -0xb7,0xc5,0x62,0xbf,0x2d,0x71,0x64,0x6d,0x9e,0x83,0x17,0x9b, -0x33,0x1e,0x3f,0xae,0x73,0xd9,0x9e,0x59,0x7a,0x8f,0xe9,0xff, -0xf2,0x8d,0x38,0x7f,0x87,0xd8,0xfc,0xf5,0xf1,0xfa,0xab,0xd4, -0x66,0x7b,0x14,0x7d,0x49,0x15,0x8a,0x3d,0x80,0x3e,0x94,0x3c, -0x88,0xb9,0x49,0xe9,0x63,0x35,0x2b,0x60,0x0c,0x53,0x21,0x85, -0x84,0x23,0xe8,0x12,0x38,0xd1,0xa0,0x9b,0x43,0x09,0xe9,0x52, -0xf9,0xdb,0xc3,0xb1,0x3f,0xc6,0x1e,0xe6,0x30,0xc2,0xa5,0xf7, -0xee,0xc0,0x67,0x5a,0x43,0x6f,0xfc,0x15,0xf9,0x55,0xfa,0x4c, -0x45,0x98,0x13,0xf6,0x36,0x7d,0xb0,0x7c,0x78,0x76,0x92,0xcb, -0x73,0xef,0xa6,0xf1,0x3c,0xb2,0xdc,0xc1,0xcf,0x2b,0xc6,0x67, -0xb7,0xa0,0xff,0xe7,0x55,0x2a,0x2f,0x1e,0x84,0x7d,0x49,0x8b, -0x23,0xe3,0x5e,0xc5,0x94,0xba,0x39,0x2b,0xe0,0xbf,0x6b,0x80, -0x50,0x93,0x70,0x08,0x0d,0x02,0x6c,0xda,0x86,0x29,0x57,0x4e, -0x7a,0xe8,0x16,0x98,0xea,0xce,0x70,0xa6,0x85,0xc2,0xfb,0x58, -0x88,0x89,0x91,0xf9,0x67,0x98,0xae,0x52,0xb2,0xc8,0xea,0xe9, -0x59,0x16,0xc1,0x85,0xa2,0x47,0x93,0x07,0x3c,0x46,0x4a,0x75, -0x31,0xa5,0xb9,0x59,0x50,0x38,0x8d,0x2c,0xd8,0x8c,0x87,0x8c, -0xcc,0x60,0xb1,0xb1,0xd8,0xc0,0x40,0xec,0xde,0x7b,0x59,0xf9, -0xb1,0x70,0x67,0xe8,0x30,0xf9,0x0e,0xaf,0x38,0x26,0x6f,0xeb, -0x8b,0x46,0xfb,0x1e,0x83,0x3a,0x64,0xf1,0x9d,0xe1,0x01,0x8e, -0xf7,0x7d,0x1d,0xc6,0x83,0x64,0x0b,0x9b,0x0f,0x7f,0xa6,0x0f, -0x27,0x69,0xf2,0x8a,0x96,0x57,0xee,0x7d,0x9c,0xd4,0x5b,0xf9, -0x4e,0x8b,0x94,0xe8,0x9f,0x8a,0x7d,0x28,0xef,0x4c,0xe4,0xe9, -0x43,0xad,0x5f,0xc8,0xd3,0x87,0x5a,0xbf,0x6f,0x4a,0x09,0xdc, -0x91,0x2e,0xb6,0xa2,0xdf,0xb1,0xf2,0x5c,0xfd,0x8e,0xd0,0xf4, -0x0d,0xc3,0xc9,0xfe,0x49,0x84,0x20,0xdd,0x7b,0x6a,0x09,0x52, -0x8c,0x0b,0xb1,0x56,0x13,0x04,0xe4,0x2e,0xcc,0xe8,0x77,0x4c, -0xd7,0x08,0x26,0x11,0xae,0xe3,0xbd,0x41,0x9f,0xa5,0x04,0xe8, -0x60,0x27,0x0b,0x34,0x41,0x22,0xa5,0x3a,0xd9,0x09,0x89,0x1d, -0x3e,0x11,0xa4,0x05,0x2a,0xd3,0xa5,0x3b,0x77,0x02,0x2c,0xea, -0xe9,0xa7,0x67,0xc8,0xf4,0x00,0xa9,0x9b,0xf8,0xd5,0x40,0xfc, -0x2b,0x3c,0xde,0xb9,0x59,0x1e,0xc4,0x5e,0x6b,0x77,0xb2,0xe2, -0x80,0x5c,0x6f,0x70,0xfa,0x33,0xa5,0xdc,0xaa,0x55,0xb8,0x44, -0x7b,0xb5,0x42,0x8e,0x86,0x02,0x8f,0x51,0x01,0x0f,0x5c,0x97, -0xc1,0x76,0x52,0x4d,0x09,0x88,0x87,0x28,0x82,0x0f,0x0b,0x58, -0xed,0xbe,0x8c,0x6d,0x30,0xc7,0xe9,0x87,0x07,0x21,0x86,0xb5, -0xa0,0xb4,0xb7,0x2c,0x49,0xe7,0xa6,0x34,0x22,0xc2,0xc0,0x95, -0x70,0x53,0x42,0xb0,0x98,0xcc,0xcc,0x38,0x6b,0x67,0xd6,0xf9, -0xa7,0x6c,0x33,0xf0,0x62,0x86,0xca,0xa9,0xa6,0x43,0x57,0x57, -0x05,0xa3,0x0d,0x2d,0x1b,0x2d,0xb3,0x23,0x51,0x08,0x58,0xc6, -0x9f,0x95,0x4f,0x4c,0xfc,0x09,0x02,0x98,0xd1,0x9e,0x85,0x7e, -0xa7,0x74,0x0e,0x7d,0x3e,0x33,0xf5,0x11,0x4d,0xf4,0x29,0xbd, -0x53,0xa7,0xf4,0xd5,0x3d,0x23,0x4f,0x2b,0xf1,0x9b,0x64,0x7d, -0x2b,0x25,0xcc,0x98,0x5c,0xf3,0xa6,0x40,0x44,0x33,0x6c,0xf8, -0xde,0x50,0x3c,0x30,0x8b,0xa3,0x56,0x95,0x4a,0xfd,0x06,0x81, -0xcd,0x17,0x0a,0x17,0x8c,0x82,0xe8,0xaa,0x4b,0x36,0x60,0xd4, -0x06,0x5b,0xe1,0x46,0x21,0x6a,0x43,0xbc,0xf1,0x97,0x77,0x6d, -0x5b,0xb5,0xd1,0x32,0xec,0xba,0x3e,0x1f,0xc2,0x36,0xd8,0xf7, -0x16,0x7a,0xe4,0x1a,0x27,0xac,0xd8,0x25,0x77,0x62,0x96,0xf5, -0xe3,0x00,0x5c,0x19,0xbc,0xab,0x7c,0x3b,0xaf,0xe7,0xfd,0xa4, -0x8a,0x7e,0xb7,0xa0,0xdf,0x29,0x7d,0x8b,0xf7,0x48,0xb9,0x50, -0xf7,0x23,0xca,0x23,0x9d,0x24,0x3b,0xa3,0x9f,0x32,0xa5,0x47, -0x4a,0x65,0xb2,0xdd,0x5d,0x99,0xd9,0x4f,0x99,0x52,0x0b,0x25, -0xe1,0xaa,0xd1,0xfa,0x29,0x11,0x4d,0x93,0xab,0xe0,0x6b,0x72, -0x15,0xe8,0x8d,0x9a,0xb2,0xa0,0x9c,0xb3,0xa0,0x76,0x6a,0x16, -0x08,0xa7,0x26,0x63,0x51,0x17,0x57,0xde,0xab,0x44,0x4f,0x1c, -0xad,0x53,0xb3,0x00,0x9d,0x9a,0xca,0x59,0xcc,0xa9,0x59,0x70, -0x86,0xc9,0xb8,0xce,0x93,0xc2,0xe5,0x23,0x02,0x32,0xa1,0x73, -0xc6,0xa7,0xe9,0x0e,0x95,0xa9,0x11,0x67,0x67,0xc3,0xa7,0xed, -0x98,0x4c,0x60,0xce,0xce,0x82,0x4e,0x3b,0x05,0x73,0x88,0x98, -0x34,0x9c,0xdb,0xa3,0x8c,0x8f,0x79,0x9f,0x9b,0xda,0xe5,0x0b, -0x11,0xab,0x16,0x00,0x3c,0x7e,0x21,0xaf,0x9e,0xfa,0xbe,0xb0, -0x6a,0xd5,0x5c,0xf4,0xaf,0x84,0x55,0x63,0xbb,0x62,0x0b,0xd7, -0x38,0x03,0x27,0xcf,0xdd,0xab,0xa9,0x63,0x5e,0xcd,0x77,0x47, -0xf7,0xba,0x57,0x04,0xaf,0xed,0xdb,0x31,0x99,0x9b,0x35,0x18, -0x5c,0x19,0xbd,0x36,0x7b,0x51,0xde,0x1d,0x19,0x6a,0x87,0x9c, -0x8f,0x63,0xc3,0xf0,0x62,0x47,0xda,0xd5,0x7d,0xf2,0x1e,0x17, -0xf4,0xdb,0x35,0xf4,0x8b,0x04,0xfd,0x16,0x15,0xfd,0x62,0x3c, -0xff,0x4e,0x26,0x4b,0x2c,0x92,0xc0,0x8e,0xdc,0x8d,0xb5,0x0c, -0xbe,0x71,0x02,0x5b,0x49,0xba,0x56,0xaa,0x45,0x92,0x12,0x3a, -0x3c,0x67,0xff,0x24,0x72,0x78,0x96,0xc2,0xfc,0x59,0x0a,0xf3, -0xab,0x3f,0x2c,0x28,0xe7,0x2c,0x80,0x9a,0x50,0x70,0x26,0xd1, -0x52,0x0a,0x24,0xbb,0xda,0x99,0x59,0x25,0xba,0x28,0x54,0x6b, -0xf8,0x3a,0x3d,0xf7,0xca,0x23,0x65,0x0c,0x71,0x96,0x8c,0x44, -0xdb,0x31,0x89,0x88,0xb3,0x14,0x20,0xda,0x29,0x8e,0xdd,0x3a, -0x2a,0x03,0x97,0xfc,0x38,0xa3,0x0f,0xb3,0x32,0x73,0x2d,0xa5, -0x73,0xf6,0x61,0xe2,0xcb,0xbb,0x15,0x24,0xaa,0x5b,0x19,0x20, -0xb7,0x32,0x2e,0x6e,0x65,0x5c,0xdc,0x2a,0x3c,0x5e,0xaa,0xc3, -0xb3,0x80,0x27,0x55,0xba,0x55,0x0e,0xcf,0x82,0xb4,0x0e,0x4f, -0xd3,0x59,0x1d,0x9e,0x80,0x56,0xe8,0x1c,0x88,0x1c,0x2e,0x6b, -0xa6,0x63,0x75,0x45,0x11,0x1d,0x2b,0xa7,0xf9,0xba,0xde,0xbe, -0xca,0x26,0xcb,0x5d,0x91,0x81,0x4e,0xc4,0xed,0xdd,0x77,0xdf, -0xef,0xeb,0xaa,0x27,0x7e,0x5a,0x05,0x03,0x56,0xe1,0xfa,0xe9, -0x44,0x75,0xed,0x5f,0xef,0xbb,0x0f,0xb1,0x7b,0x80,0x1b,0xf9, -0x05,0xf2,0xd3,0x09,0xa8,0x30,0xa6,0xe5,0xa7,0x14,0xb4,0x48, -0x0a,0x83,0x25,0x4a,0x61,0xa4,0x01,0x62,0x28,0x78,0x12,0xf0, -0x64,0x28,0xf9,0xa3,0x76,0xc6,0x59,0x76,0x65,0xe0,0xec,0xca, -0xc0,0xa9,0x3f,0x2c,0x28,0xe7,0x2c,0x28,0x00,0x99,0x1c,0x8e, -0x08,0x3c,0x81,0x9d,0x4c,0x98,0x3b,0xaa,0xbc,0x58,0x0b,0x48, -0xc9,0x8c,0x69,0x04,0x64,0x4a,0x26,0x54,0xe3,0x81,0x89,0xf4, -0xb0,0x46,0xc0,0x75,0x53,0x59,0xf5,0x0c,0x62,0x3c,0x7d,0xd0, -0xb9,0xeb,0x2c,0x7e,0xd1,0xca,0xf7,0xe3,0x17,0x2d,0x38,0xc3, -0x0c,0x52,0x13,0x4f,0xa1,0x54,0x3b,0x41,0x73,0x78,0x4d,0x7c, -0xc5,0x1d,0xaa,0xc6,0x41,0x2a,0x48,0x90,0x74,0xee,0x50,0x13, -0x07,0x46,0x1e,0xe7,0xd0,0x95,0xdf,0x29,0xe8,0x48,0x1d,0x41, -0x0c,0x0b,0x07,0x49,0x32,0xa0,0x48,0x02,0x28,0xa9,0xc6,0xe6, -0xb0,0xfd,0xe5,0x87,0x88,0x75,0x7a,0x28,0xa3,0x4f,0x74,0x05, -0x68,0xd3,0x59,0x6c,0x71,0x03,0xd7,0x40,0x74,0x8c,0x0b,0x74, -0x0a,0x17,0xe8,0x94,0xc9,0x57,0x7f,0x58,0x50,0xce,0x59,0x50, -0x9a,0x4b,0x25,0xda,0x1e,0x28,0x20,0x29,0x17,0x62,0x2b,0x55, -0x88,0xb7,0xeb,0xf6,0xc6,0x1f,0x98,0x81,0x26,0xc8,0x3b,0x26, -0xb1,0x03,0xf2,0x89,0xf8,0x8f,0x49,0x3b,0xc7,0x48,0x01,0xee, -0xe8,0xbf,0xe5,0x13,0xe8,0x43,0xfd,0xc6,0x59,0x7d,0xa8,0x2b, -0xa0,0xcb,0xce,0xe2,0x43,0x95,0x78,0x6d,0xd1,0x62,0xb6,0x5b, -0x14,0x2b,0xef,0x54,0xac,0xe0,0xd6,0x8b,0x95,0xfd,0x43,0xfd, -0x41,0xec,0x16,0x85,0x7c,0xc7,0x84,0x0d,0x59,0x2f,0x55,0x89, -0x80,0x51,0xa5,0x02,0x07,0xc2,0x77,0x55,0x18,0x81,0xbe,0xbe, -0x1a,0x16,0x44,0x26,0x15,0xe4,0x52,0xfc,0x9f,0x67,0xe4,0x7f, -0x05,0x80,0xc6,0x22,0x1b,0x04,0x36,0xef,0x30,0x28,0x89,0x19, -0x67,0x38,0xbb,0x6b,0xd1,0x6e,0xf8,0x64,0xaa,0xaf,0x35,0x53, -0xcd,0xa5,0xca,0xf7,0xef,0x6b,0xc5,0xb7,0xcc,0x53,0x46,0x22, -0x4f,0x99,0x78,0x35,0x65,0x41,0x39,0x27,0xc5,0xf2,0xe0,0x6f, -0x8d,0xa9,0x17,0x88,0xa5,0xa5,0xaf,0x89,0x19,0x18,0xf0,0x8e, -0xf8,0x72,0x13,0x4b,0xc7,0xe1,0xcd,0x56,0xe8,0x95,0xaa,0xa9, -0x7b,0x06,0xf5,0xa8,0xb7,0xa6,0xab,0x7b,0x56,0x77,0xee,0x75, -0xcf,0x20,0x8a,0xa3,0xf8,0x67,0x5d,0x7e,0x45,0xc5,0x03,0x05, -0xb0,0x6e,0x85,0x5a,0x66,0x58,0x46,0x5a,0x55,0x5c,0x3a,0x7d, -0x2d,0xb3,0xf8,0x2e,0x47,0x64,0xcd,0x67,0xc8,0x27,0x95,0x9a, -0x66,0xe9,0xab,0x99,0x55,0x54,0x40,0x15,0x33,0x32,0x66,0x52, -0xaa,0x9a,0xa9,0x31,0xcd,0xf2,0xbb,0xdc,0x86,0xb8,0x10,0x30, -0xc5,0x74,0x8f,0x5e,0x0f,0xef,0x7b,0x96,0xda,0x47,0x99,0x6d, -0x88,0x32,0xd1,0xba,0xc3,0xce,0x87,0x0a,0x44,0xb9,0x01,0x13, -0x8e,0x52,0x1c,0xb6,0x61,0xee,0xb1,0x25,0x2d,0x07,0x6f,0xfa, -0xc8,0x07,0x37,0xa0,0xf9,0x30,0xd8,0x3c,0xd6,0x6a,0xdb,0xb5, -0x69,0x98,0x9a,0x0e,0xf6,0x0b,0x56,0x4d,0xe6,0xe6,0x7f,0xed, -0x1f,0x54,0xd6,0xc3,0x05,0x68,0x3b,0x0c,0xad,0xcb,0xb9,0x93, -0xf5,0xfc,0x91,0xfb,0x51,0x27,0xba,0x97,0xe9,0x44,0xbc,0x1f, -0x23,0xa3,0x1f,0x12,0xf4,0x23,0x1a,0xfa,0xd7,0x04,0xfd,0x56, -0x0d,0xfd,0x6e,0x41,0xbf,0x33,0x4b,0x4a,0x53,0xdf,0x8b,0x28, -0x3f,0xd3,0x3d,0xef,0x62,0x58,0x73,0xda,0x3d,0xef,0xec,0xd0, -0xd2,0x84,0xa9,0xc1,0x22,0xdb,0x45,0x22,0xec,0x93,0x70,0x94, -0x66,0x71,0x47,0x69,0xae,0x2a,0xa5,0x3f,0xc2,0x1c,0xa5,0x41, -0xc5,0x4d,0xba,0xf4,0xf0,0xc3,0x6f,0x6f,0x7b,0x42,0xf7,0xcd, -0x6d,0x7f,0x7c,0xe8,0xa1,0x99,0x17,0x06,0xc8,0xe7,0xe2,0x8f, -0x92,0x75,0xf1,0x8d,0x03,0x2f,0x60,0x2d,0x5f,0x3a,0x8f,0x37, -0x22,0xf6,0xfb,0x72,0x30,0x57,0xd2,0xfa,0x48,0x57,0xd0,0x6f, -0xfe,0x0f,0x3e,0x52,0x65,0x9b,0x35,0xe1,0x36,0xab,0xc3,0x1a, -0x97,0xec,0x69,0xa1,0xec,0xa5,0xdc,0x36,0xf1,0x2f,0xf2,0xbf, -0x6c,0x7b,0xf5,0x57,0xbb,0x1f,0x95,0xff,0x79,0xdb,0xa9,0xaf, -0xd3,0xed,0xb6,0x36,0xfe,0x0b,0xb2,0x93,0xcc,0xc7,0xdf,0x20, -0x65,0xf1,0x2f,0xc7,0x5f,0x3d,0xa5,0xd4,0x47,0x92,0xeb,0x70, -0xce,0xee,0x63,0x73,0x66,0x90,0x04,0x5f,0x82,0xbe,0x56,0x0e, -0x7d,0x19,0x8b,0x38,0xfe,0x33,0xe3,0xda,0x4b,0x49,0x33,0x52, -0x3f,0x7e,0x91,0xf0,0x93,0x16,0xf9,0x81,0x9d,0x19,0x90,0x32, -0x8b,0xcf,0x03,0xe1,0x5a,0x02,0x7b,0x99,0x72,0x26,0x33,0xd2, -0xe0,0x92,0xe1,0x9d,0x7a,0xf7,0x6a,0xa0,0xc9,0xf4,0x9d,0xb4, -0xd8,0x64,0x10,0x23,0x2a,0xfc,0x74,0x39,0xd4,0xe1,0xd0,0x9f, -0xed,0xd9,0x57,0xc0,0xaa,0xb2,0x67,0x2f,0x4f,0xf8,0x45,0x4f, -0xa1,0x5f,0x54,0x79,0x09,0x22,0x5e,0x42,0xc9,0x62,0x31,0xa4, -0x71,0x85,0x12,0x37,0x18,0x35,0xd4,0x2c,0x64,0xaf,0x03,0xae, -0x50,0x01,0xb4,0x0e,0x4c,0x0e,0x1c,0xb8,0x60,0x66,0x68,0x68, -0x60,0x3a,0x00,0x40,0xeb,0x12,0xc3,0x1d,0x77,0x66,0x5f,0x73, -0xe5,0xd3,0x4f,0xaf,0x5b,0x9f,0xfd,0xf0,0x23,0x7a,0x33,0xc0, -0xad,0x99,0xad,0xa1,0x2b,0xc4,0x39,0xfa,0x34,0xb7,0xd5,0x6f, -0x4f,0xf4,0xda,0xc4,0x7c,0x84,0xa0,0xd0,0x0d,0x36,0x20,0x26, -0x7b,0x2e,0xa3,0x2f,0xf4,0x7d,0xe1,0xd6,0x13,0xbe,0x50,0x86, -0x5d,0x77,0x29,0x92,0x1c,0x8a,0xa3,0xb5,0xff,0x0c,0xa0,0xeb, -0x3f,0x53,0xa0,0xce,0xd1,0x7b,0xd3,0xd6,0x6a,0xcc,0x50,0x7f, -0x8b,0xf5,0x7d,0xc7,0xf3,0x1a,0x78,0xbf,0xc8,0xcd,0xf2,0x4b, -0xe8,0x83,0xba,0x0c,0x90,0x96,0xa9,0x3e,0xa8,0x14,0x53,0x29, -0xd9,0x07,0xc5,0x34,0xd9,0x72,0x30,0xf4,0x99,0xfa,0xe9,0xc7, -0x62,0x7e,0xe5,0x2a,0xfd,0xa4,0xb8,0x58,0x31,0x5b,0xcd,0x8b, -0x27,0x10,0xdc,0x9c,0xd6,0xd1,0xc4,0xfb,0x61,0xaa,0x11,0x71, -0x4b,0x33,0xe5,0x95,0xcc,0xd3,0x04,0x3d,0x22,0x99,0xa7,0xe9, -0xbc,0x99,0x96,0x8d,0xa5,0x63,0xfd,0x87,0xd0,0xcf,0xf4,0x25, -0x68,0x10,0xf9,0x1c,0x70,0xe3,0xa1,0xab,0x2f,0xe6,0x7a,0xfb, -0xaf,0x91,0x07,0xaf,0x00,0x7f,0x89,0x96,0x07,0x53,0xe6,0x22, -0x05,0x1e,0xad,0x76,0x8f,0x24,0x60,0xdf,0x86,0x45,0xd8,0x5b, -0x64,0xa5,0xcb,0x24,0x7b,0x41,0x56,0xf2,0xdc,0xcc,0x15,0x92, -0x5c,0xdc,0x78,0x94,0x1a,0x17,0xe2,0x25,0xdc,0x21,0xe5,0xed, -0xce,0xb0,0x17,0x50,0x2d,0x23,0xf1,0xe4,0xdf,0xfe,0x36,0x7b, -0x15,0x25,0xd7,0x66,0x35,0xe6,0x20,0x1c,0x48,0xad,0xf7,0x9f, -0xa2,0x66,0x24,0x52,0x0e,0xd2,0x54,0xff,0x86,0x5d,0xbd,0x34, -0x61,0xb6,0x0e,0x28,0xb6,0xe9,0x77,0xb9,0x6d,0x5a,0xa4,0xd9, -0x11,0x98,0x4d,0x95,0xf2,0xd8,0x0b,0x33,0xda,0x67,0x3e,0x11, -0x7f,0x33,0xb1,0xf4,0xe3,0xff,0xa0,0xcd,0x17,0x22,0x9f,0x67, -0x3d,0xcc,0xc8,0x30,0x99,0x92,0xbf,0x0b,0xa1,0x0d,0x69,0xf8, -0x04,0xfa,0xc2,0x59,0xae,0x55,0xfe,0xe2,0xd9,0x24,0xac,0x05, -0x16,0x41,0x3e,0x3a,0xc5,0xb3,0x50,0xf1,0xcf,0x07,0x25,0x47, -0xf1,0xc6,0xa5,0xc0,0x8b,0x9f,0x5c,0x1d,0x8d,0xae,0x86,0xa3, -0xd1,0xed,0x6e,0xa4,0x07,0x19,0xde,0xb9,0x69,0xf3,0x4e,0x38, -0x82,0x5d,0xad,0x83,0xad,0x5d,0xf8,0x05,0xf9,0xdc,0x49,0xc6, -0xc9,0x28,0xae,0xd1,0xc1,0xd4,0x1a,0x9a,0x99,0xe4,0x04,0x3e, -0x4d,0x2e,0x3e,0x8d,0xcc,0x83,0x2e,0x7a,0x70,0xef,0x42,0x31, -0x17,0xa3,0x2f,0x02,0x9b,0x63,0x64,0x5f,0xd6,0x46,0xcf,0xf9, -0x0b,0x3b,0xc8,0x78,0x1b,0xc9,0x3f,0xaf,0x76,0x4f,0xfc,0xa9, -0x36,0xbc,0x5f,0x0d,0xbd,0x5f,0x84,0x8e,0x41,0x25,0xe8,0x17, -0xe6,0xa4,0xbe,0x74,0x99,0xb6,0x6d,0x0b,0xab,0xb1,0x96,0x8f, -0xa1,0x2b,0x33,0x0f,0x13,0x98,0x8b,0xd9,0x33,0x40,0x51,0xf8, -0x5c,0xde,0xcc,0x80,0xb8,0x42,0x91,0xc4,0xd2,0xf1,0xf5,0xe9, -0xd8,0xe0,0x14,0x91,0x20,0x89,0xc4,0xdf,0x3e,0x6c,0x77,0xb9, -0x9c,0x6e,0x77,0x76,0x38,0xcb,0xe2,0x6a,0x71,0xf4,0x0d,0x85, -0x1a,0xb6,0xff,0x27,0x19,0xef,0xdc,0x4b,0xb9,0x3d,0xcb,0x56, -0x5d,0x53,0x5e,0x5a,0xe2,0xac,0x28,0xea,0x0d,0x34,0x0d,0x3a, -0x57,0xb3,0x7a,0xf8,0x74,0xbe,0xfc,0xf4,0x59,0x1b,0x58,0x6c, -0xae,0x11,0x9b,0xc8,0x4b,0x99,0x7c,0xd0,0x3c,0xd7,0xd5,0x02, -0x84,0x42,0x54,0x44,0x61,0x7c,0x2a,0x31,0xfe,0x9e,0x8f,0x9d, -0x48,0x8c,0x1c,0x92,0x5e,0xe7,0xc7,0xb6,0xaa,0x75,0x52,0x3f, -0x74,0x19,0x01,0x7d,0xf6,0x38,0x74,0x19,0xb9,0x6c,0xd0,0x28, -0x2d,0xd2,0x0f,0xa7,0xe8,0xf1,0x36,0x3d,0x74,0x97,0xc1,0xcc, -0xe7,0x23,0xc0,0x47,0x92,0xea,0x78,0x29,0xe9,0x8c,0xf8,0x3b, -0x75,0x3e,0x7e,0x7b,0x23,0x09,0xdd,0xef,0xad,0x75,0x3b,0xec, -0x75,0x85,0x8d,0xa6,0xde,0xb6,0xce,0xf1,0x16,0x67,0x4d,0xdb, -0xe4,0x50,0xa4,0xcf,0xec,0x2f,0xac,0x73,0x7b,0x7d,0x93,0xcd, -0x72,0x8d,0xdd,0xaa,0xaf,0xa8,0x2c,0xb7,0xd4,0x54,0x78,0xda, -0x9a,0x3d,0x0d,0x46,0x5d,0x56,0x53,0x5d,0x6b,0x77,0x9d,0xad, -0xa6,0xac,0xca,0x69,0xcf,0x8a,0x04,0x59,0x6e,0x7e,0x29,0xe7, -0x8f,0x5c,0xfa,0xae,0x5b,0x41,0x7a,0xb1,0xae,0x0e,0x4a,0xfa, -0xc9,0xd9,0x34,0x7f,0x0b,0x2c,0x38,0x19,0x22,0x1f,0x02,0x9f, -0xcc,0x42,0x3b,0xa0,0xe0,0xc8,0x7c,0x3b,0xd7,0x2b,0xf9,0x96, -0x21,0x77,0x28,0xc2,0x22,0x39,0x3a,0xb7,0x31,0xf8,0xdc,0x93, -0x0f,0xcd,0x76,0x74,0xf4,0xe8,0x0f,0x1f,0x21,0xe3,0xab,0xda, -0xff,0xf4,0xd7,0xc0,0x2a,0xd2,0xf1,0x5d,0x98,0x17,0x0f,0x9d, -0x97,0x08,0xee,0xcd,0xdb,0x81,0x87,0xb4,0x7e,0xee,0x14,0xbf, -0x21,0x4f,0x5c,0xc0,0x79,0xa9,0xc6,0xad,0x2b,0x9f,0x67,0xac, -0x98,0x71,0x70,0xa1,0xba,0x8e,0x59,0x18,0x4d,0x0a,0x97,0x65, -0x21,0x97,0x81,0xb4,0x34,0x06,0x53,0x72,0x15,0x12,0x73,0x10, -0x09,0x12,0xf7,0x3f,0xe7,0xe9,0x0b,0x3d,0x35,0xed,0xd1,0xd5, -0x23,0xa1,0xde,0x92,0xe6,0x22,0xaf,0xdb,0x4b,0xff,0xb3,0x55, -0xe7,0xb5,0x17,0xbe,0x2a,0xdf,0xf6,0xc1,0xb2,0xca,0xde,0x70, -0x47,0x14,0x87,0xd5,0xe3,0x34,0x38,0x3d,0x25,0x79,0xc6,0x67, -0xe8,0x88,0xd4,0xd1,0x77,0x18,0x92,0xc1,0xf1,0x55,0x2b,0x5d, -0xa0,0x46,0x7e,0x24,0xb2,0x58,0x52,0x14,0x47,0xf5,0x5e,0x50, -0x8e,0xcf,0x59,0x42,0x7f,0xcf,0x53,0xc7,0xfd,0x94,0x7b,0x8e, -0x53,0xc2,0x83,0xf4,0x78,0x8c,0x1e,0xba,0x05,0x18,0x86,0x7c, -0x8c,0xac,0x55,0xf3,0x16,0x3d,0x66,0xde,0x7f,0x35,0x58,0xa8, -0x33,0x5a,0xd3,0x27,0x26,0x3c,0x3e,0x3c,0x61,0x6b,0x08,0x56, -0xcc,0xb8,0xc3,0x75,0x95,0x46,0x7d,0x41,0xa3,0x37,0x38,0x32, -0x39,0xe0,0xae,0xaf,0x77,0xd3,0x83,0x0c,0x4f,0x0e,0xd7,0x45, -0xbb,0xfd,0x45,0xd6,0x86,0xa6,0x56,0xca,0x73,0xce,0xde,0x50, -0xc7,0x68,0xa0,0xc6,0x6d,0x70,0xd7,0xe0,0x17,0x98,0x9b,0x6a, -0xca,0x2f,0x7e,0x19,0xc2,0x36,0xbd,0xf0,0x25,0x6d,0x7f,0x9a, -0x74,0x6f,0xc4,0x72,0xd7,0x65,0x9c,0x1b,0x3d,0x15,0xed,0x95, -0xe8,0xab,0x72,0x59,0x74,0x9b,0x3f,0x72,0x7f,0x98,0x14,0x1f, -0xa7,0x97,0xed,0x1f,0xb9,0xb2,0x3d,0xfe,0x7d,0x3a,0x37,0xb0, -0x8f,0xae,0xa1,0xeb,0xb2,0x42,0x72,0x4b,0xad,0xa0,0xdf,0x4a, -0x52,0x9b,0x14,0x64,0x9e,0x31,0xae,0x2f,0x7b,0x32,0x77,0xbd, -0x57,0x8f,0xa2,0x07,0x07,0xc8,0x46,0x7f,0xcf,0x92,0x1c,0x6c, -0x7e,0xa8,0x2c,0x9d,0x8f,0xf5,0x8c,0x59,0x0f,0x2e,0x16,0x07, -0x69,0xe4,0x6d,0xbd,0xd8,0x90,0x2a,0x3b,0x2f,0xaf,0x9f,0xa0, -0x59,0x85,0xbe,0x36,0x3a,0x98,0xd8,0x9a,0xca,0xaa,0x19,0xd7, -0x6f,0x45,0x27,0x9a,0xdd,0x8e,0xda,0x91,0xfe,0xfe,0x91,0x5a, -0x87,0xa7,0x69,0x22,0x3a,0x4a,0xff,0xf3,0xfa,0x7c,0x5e,0x7a, -0x90,0xe1,0xde,0x16,0x4f,0x73,0x8e,0x3e,0xb7,0xd1,0xd9,0xd8, -0xde,0x4e,0xbf,0xe4,0xea,0x73,0x9a,0x3d,0x2d,0xbd,0x27,0xdb, -0x73,0xda,0xe9,0xff,0x5f,0x76,0x54,0xe6,0x57,0x3a,0xf0,0x0b, -0x5b,0x93,0xb5,0x74,0x30,0xfa,0xe8,0xfb,0x03,0xef,0x1c,0x00, -0xed,0xc4,0x2b,0xca,0x2c,0xa5,0xa9,0xb2,0x92,0xa2,0x61,0xe1, -0x68,0x5b,0x8a,0x15,0xf6,0x28,0x82,0x15,0xa0,0xa8,0x94,0x46, -0xe9,0x01,0x4a,0x78,0x94,0x1e,0xdf,0x81,0x16,0xcf,0x0b,0x0a, -0xa3,0xe5,0xd3,0xef,0x16,0xb6,0x20,0xc0,0x8f,0xe4,0xee,0xd3, -0xb1,0x26,0xbe,0x5c,0x00,0x19,0xb5,0xe5,0x31,0xfa,0x6c,0xf5, -0x94,0x85,0x6a,0x90,0x85,0xf2,0x1b,0xbd,0xed,0xc3,0x6b,0x06, -0x87,0x26,0xee,0xe4,0x5c,0x24,0x07,0x54,0x3c,0x54,0xe6,0xec, -0xa3,0x3c,0x34,0x79,0x79,0x0d,0xf4,0x9c,0xc1,0x2f,0x20,0x27, -0x97,0xff,0x46,0xa6,0xc8,0x55,0xe7,0x20,0x27,0xad,0x69,0xad, -0xed,0x64,0x39,0x69,0x3d,0x67,0x39,0x99,0x95,0x5e,0x4c,0x82, -0x9c,0xa4,0x5f,0x46,0xc9,0xa5,0x2b,0xca,0x49,0x6b,0xda,0xec, -0xc1,0x54,0x39,0x19,0x4c,0x23,0x27,0x13,0x52,0x12,0x2a,0x69, -0x49,0x24,0x42,0xdf,0x7f,0x25,0x19,0x69,0x4d,0xab,0x26,0x9f, -0x8b,0x8c,0xac,0x27,0xef,0x57,0x46,0x52,0x09,0x19,0xb0,0xa5, -0x48,0x48,0xb0,0x31,0xff,0x46,0xfc,0xf4,0x39,0x57,0x92,0x8f, -0xd6,0xb4,0x75,0xc3,0xde,0x9f,0x7c,0x34,0xa2,0x7c,0x7c,0x90, -0x1e,0x8f,0xa1,0x58,0xc4,0xce,0x3a,0x20,0x30,0x53,0xe5,0x63, -0xe4,0xff,0x37,0xf9,0xf8,0xf3,0xb3,0x89,0x47,0xcc,0xbd,0x43, -0x9e,0x38,0x37,0xd9,0x68,0x4d,0x9b,0x51,0x76,0xae,0xb2,0x31, -0x98,0x49,0x36,0xaa,0x24,0x23,0xca,0x46,0x3a,0x27,0x11,0xfa, -0x4c,0x4e,0x56,0xa1,0x55,0x2b,0x1b,0x79,0x86,0x8e,0x35,0x2d, -0x64,0xc3,0x51,0xcc,0x86,0x53,0x69,0x88,0x93,0x8f,0x3d,0x34, -0x1d,0xdc,0x37,0x69,0x40,0x44,0x61,0x3e,0x5a,0x99,0x06,0x84, -0xe6,0xd0,0x5d,0xf0,0x2c,0xa2,0xd1,0x72,0x20,0xb3,0x64,0x24, -0xfd,0x69,0x25,0x63,0x1b,0xec,0x6f,0x75,0xf4,0x1d,0x86,0xe8, -0x3b,0x9c,0x5d,0x36,0xa6,0x5f,0xff,0xff,0x27,0xd9,0x68,0xfd, -0xfb,0x64,0x63,0xd6,0xd9,0x44,0x23,0x36,0xfb,0xa1,0x8b,0x95, -0xbe,0xd7,0x4a,0xb2,0xd1,0x9a,0xd6,0xb7,0xa6,0x95,0x8d,0x41, -0x73,0x92,0x6c,0xec,0x1f,0xbe,0x02,0x24,0x23,0xf8,0x2c,0x61, -0xef,0x5c,0x43,0xd7,0x64,0x85,0xe4,0xcb,0x24,0x1b,0xeb,0x92, -0x65,0x63,0xfa,0x51,0xb4,0xf1,0x55,0x59,0xc0,0xf7,0x92,0x3a, -0x3f,0x84,0xaa,0x99,0x6c,0xac,0x43,0xb7,0x20,0x6c,0x4e,0x75, -0x3c,0xc7,0xa6,0x00,0x43,0xd4,0x89,0xdd,0x36,0xbd,0x6c,0x54, -0x8f,0x66,0x44,0x48,0xca,0x14,0xd9,0xc8,0xe5,0xa2,0x97,0x8a, -0xc8,0xac,0xf4,0xa2,0x31,0x90,0x90,0x89,0x5f,0x66,0x52,0x12, -0xe4,0x22,0x1d,0xdf,0x3e,0xfa,0xee,0xe7,0x26,0x17,0xad,0x69, -0x53,0x3e,0xff,0xcf,0x72,0xb1,0xf6,0xef,0x95,0x8b,0xa7,0x57, -0x16,0x8b,0xd4,0x9e,0xa4,0x32,0x48,0x07,0xba,0xb8,0x57,0x07, -0x39,0xaf,0x3e,0xe9,0x62,0x72,0x25,0xfa,0x5f,0x2a,0x64,0x86, -0x4f,0x72,0x2e,0xff,0x4d,0xd7,0x9b,0xe6,0xf7,0x36,0xfe,0xfb, -0x1a,0xfa,0xfb,0x00,0xd5,0x1b,0xbc,0xba,0x22,0xfe,0xfb,0xbd, -0xfc,0xf7,0x44,0x52,0xae,0xdf,0x95,0xe6,0xef,0x2b,0xc9,0x9f, -0x24,0x5e,0x97,0x40,0xe7,0xc6,0xbf,0x2f,0xe6,0xbf,0xdf,0xca, -0x7f,0xff,0x2b,0x71,0xff,0x81,0x34,0x7f,0x5f,0x25,0xe7,0x88, -0xfb,0x07,0xd3,0xdc,0xbf,0x8a,0xbc,0xc7,0xae,0x4f,0x7f,0x5f, -0x9f,0xe6,0xfa,0x55,0xe4,0x1d,0xe6,0x9f,0xa5,0xbf,0x6f,0xc1, -0xeb,0x9b,0xf8,0xef,0x77,0xf1,0xdf,0xff,0x59,0xdc,0x3f,0x92, -0xe6,0xfe,0x76,0xfe,0xfc,0x74,0x6f,0xd4,0xd5,0xe0,0xef,0x4b, -0xf8,0xef,0xb7,0xf3,0xdf,0x9f,0x12,0xef,0x9f,0x6e,0xfc,0x1c, -0xaa,0xf1,0x9d,0x4d,0xf3,0xfb,0x6a,0xfe,0x7e,0xf0,0xfc,0x7d, -0x69,0x9e,0xbf,0x9a,0x3f,0xbf,0x47,0x8c,0x8f,0xf6,0xfe,0xd5, -0xe4,0x0c,0xaf,0xa9,0xff,0x37,0x7a,0x2d,0xf8,0x7d,0x29,0xff, -0xfd,0x00,0xff,0xfd,0x4f,0xc4,0xf3,0x8d,0xa5,0xb9,0xbf,0x53, -0x66,0x75,0xae,0x0f,0xd1,0xdf,0x97,0xc8,0x3f,0xa2,0x1b,0x4b, -0x03,0xac,0x7b,0xd1,0x77,0x44,0xe7,0x87,0x0d,0x33,0x0d,0xae, -0x05,0x8a,0x8f,0xba,0xdc,0xba,0x08,0x82,0x6f,0xad,0xe4,0xdb, -0xd3,0xbf,0x1f,0xf9,0x40,0x4c,0xbf,0xf6,0xbf,0xc7,0xc8,0xcf, -0x5d,0xf1,0xbf,0x7c,0xee,0x73,0xe4,0xe7,0x55,0x70,0xdd,0xab, -0xa5,0x02,0x5d,0xb9,0xfc,0x8f,0x50,0xfb,0x9d,0xd5,0x83,0xe4, -0xba,0x4f,0x96,0x72,0x5d,0x3f,0x48,0x2f,0xba,0x04,0x72,0x88, -0x2f,0x87,0x44,0x72,0x88,0x35,0x87,0xc8,0xff,0x1d,0xff,0x4d, -0xfc,0x37,0x41,0x62,0xc7,0x2f,0xc4,0x1e,0x8c,0xff,0x86,0xd8, -0x0b,0xb4,0x3f,0x06,0xe1,0x14,0x7a,0xc1,0x88,0xf4,0x21,0x79, -0x49,0x6e,0x02,0x6d,0x01,0x56,0x14,0xef,0x1b,0xf8,0x04,0x64, -0x41,0xd0,0x7f,0xfa,0x46,0xaa,0x74,0x5a,0x8b,0x88,0x35,0xe2, -0xb2,0xb8,0x7c,0xc6,0x6a,0x62,0xf4,0x91,0xac,0xd6,0xf9,0x36, -0xb2,0x9d,0xbc,0x19,0x37,0x6f,0x27,0x6d,0xf3,0xad,0xcf,0xca, -0x4d,0x81,0xb9,0x06,0x5d,0xd6,0x48,0x96,0xae,0x61,0x2e,0xf0, -0x2c,0x3c,0xf3,0x8f,0xa8,0x20,0xd9,0x2b,0x3f,0x0d,0xe9,0x72, -0xb0,0xcb,0x6b,0x7b,0x11,0xa6,0xd8,0xee,0x09,0x0c,0x1d,0xbd, -0x97,0xd1,0x4f,0x8c,0x56,0xa8,0xf9,0xe3,0x83,0x46,0x7c,0xf2, -0x5e,0xf5,0xa5,0xc9,0x9f,0xf1,0xce,0x71,0x33,0x79,0x93,0xdd, -0x19,0xef,0xb5,0x7c,0x86,0xde,0xeb,0x44,0xfa,0x7b,0x65,0xea, -0x17,0x81,0xf7,0xea,0x27,0xd5,0x24,0xe2,0x33,0x05,0x4d,0x46, -0x6b,0x3f,0xb1,0x1a,0x7f,0xa4,0xbe,0xd5,0xf7,0x93,0xde,0x91, -0xc9,0x77,0xcd,0x58,0x91,0xc4,0x58,0x41,0x1d,0x7f,0x23,0x8e, -0x55,0xad,0xaf,0x9f,0xf8,0x8c,0xae,0x90,0xcb,0x1a,0xf1,0x93, -0x88,0x55,0x6e,0x49,0x7a,0xe2,0x0f,0x69,0x87,0x8a,0x5e,0xe4, -0x8b,0xd2,0x06,0xf9,0x1b,0xf2,0xf9,0x29,0xd7,0x94,0xe9,0x35, -0x0b,0xd9,0xf8,0x5b,0xdc,0x3e,0xa3,0x95,0x18,0xe9,0x85,0xad, -0x16,0xb7,0x89,0x3c,0x7b,0xed,0x20,0x59,0x45,0x16,0x02,0xf1, -0x7f,0x18,0xa0,0x97,0x92,0xcf,0xa7,0x57,0x1b,0x88,0xff,0x43, -0x80,0x2c,0xac,0x22,0x83,0xd7,0x92,0x5a,0x7a,0x91,0xeb,0xe9, -0x35,0x8f,0x2a,0xd7,0x54,0xcd,0x69,0x3e,0xd4,0x04,0x60,0xd7, -0xa4,0x0a,0x8d,0x8f,0x5e,0x91,0x0e,0x80,0x91,0x4a,0x33,0xf9, -0x68,0xd2,0x45,0xe8,0x17,0x7a,0x13,0x24,0xc0,0x4d,0xf0,0x39, -0x77,0xd3,0xe7,0xbc,0x9c,0x5d,0xb3,0x20,0x71,0xcd,0x42,0x7a, -0xcd,0x3c,0xbc,0xa6,0x39,0x68,0x31,0x5a,0x23,0x84,0x3e,0xa9, -0x95,0xaa,0x1f,0xae,0x2f,0xc2,0x25,0xf1,0x31,0xe1,0x92,0xf1, -0x5f,0x90,0xa3,0x9a,0xe7,0x96,0xf0,0x39,0x77,0xd3,0xe7,0xe4, -0xd7,0x94,0x12,0xd7,0x94,0xa0,0x41,0x26,0x1b,0xcf,0x50,0xd0, -0x1a,0xa1,0x4f,0x49,0x19,0xd0,0x47,0x15,0x77,0xb2,0x5b,0xf3, -0x58,0xbb,0x93,0x6e,0x01,0xd7,0x3c,0x4c,0x79,0xef,0x72,0xca, -0x7b,0xc5,0x50,0x37,0xae,0x30,0xa9,0xe6,0x73,0x8a,0xaf,0x32, -0x01,0xb1,0x79,0x02,0xfa,0x6b,0x69,0x39,0x1e,0xbc,0xbf,0x9c, -0xe7,0xd7,0x05,0xe6,0xda,0xc8,0x36,0x52,0x31,0xf2,0xe2,0x36, -0xd2,0x46,0xa7,0x4e,0x7e,0x1a,0x27,0x72,0xe9,0x34,0x79,0x51, -0x35,0x97,0x87,0x29,0x2f,0x5e,0x2e,0x9f,0x48,0x7f,0xef,0x14, -0x7f,0x5e,0xc2,0xad,0x9b,0x7a,0x6f,0x2c,0xa6,0xaa,0xb9,0xf7, -0x8b,0x23,0xf1,0xd3,0xec,0xde,0xe4,0x1e,0xbc,0x37,0x79,0x71, -0xe9,0xb4,0xea,0xde,0x11,0xe9,0x66,0xca,0x9b,0x07,0xe9,0xbd, -0x91,0x8f,0xf8,0xbd,0x9f,0x80,0xac,0x2d,0x08,0x4d,0x37,0x2a, -0x6b,0xcb,0x02,0x81,0x59,0xb6,0xba,0xc8,0x8b,0x49,0x17,0x22, -0x0f,0xf3,0x5b,0x91,0x0a,0x76,0xab,0xe4,0xeb,0x16,0x26,0xae, -0x6b,0xa4,0xd7,0xcd,0x56,0x5d,0xd7,0x44,0x99,0x3e,0xc4,0x57, -0xed,0x52,0xd2,0xe0,0xf0,0xeb,0xc6,0x4f,0x2b,0xc3,0x87,0xd7, -0xdd,0x4d,0xaf,0x3b,0x97,0x72,0xdd,0xc4,0xf3,0x9a,0x23,0xb8, -0x3e,0x01,0xe3,0xc8,0x56,0x68,0x04,0x2f,0x2b,0x57,0xc4,0x1b, -0xf9,0x65,0xdb,0x93,0x66,0x45,0x4a,0xbe,0x2e,0x49,0xfb,0xbc, -0x78,0x5d,0xfa,0xb4,0x2e,0xbe,0xf2,0xc9,0x56,0xbc,0x70,0xbc, -0x51,0xae,0xd0,0x5c,0x38,0x31,0xe4,0xf4,0x42,0x4f,0x51,0xbe, -0xfa,0xaa,0xc2,0x57,0x24,0x69,0x6e,0x53,0x6a,0x3d,0xab,0xf9, -0x0a,0x76,0x87,0x1c,0x76,0x67,0xdc,0x1d,0x00,0x4c,0xc5,0xf7, -0x07,0xf2,0x9b,0xa4,0x01,0x27,0x75,0x49,0x8f,0x82,0x73,0xfb, -0x14,0xe5,0xab,0xaf,0x2a,0x7c,0x45,0xce,0xc6,0x57,0xff,0x1f, -0x79,0x6f,0x02,0x18,0x55,0x75,0xf6,0x8d,0x9f,0x7b,0x6e,0x26, -0x13,0x86,0x90,0xc9,0x32,0x90,0x05,0x18,0x02,0x41,0x08,0x42, -0x48,0x32,0x09,0xab,0x5a,0x21,0x24,0x41,0x50,0x14,0x11,0x44, -0xad,0x8a,0x01,0x52,0x40,0xd9,0x84,0x44,0xad,0x55,0x6b,0x6d, -0x6b,0xed,0x62,0x6d,0x6d,0x5d,0x5e,0x5f,0x6b,0xad,0xed,0xab, -0xad,0x76,0x49,0x17,0x5b,0x8b,0xed,0x8b,0xb5,0xa9,0x15,0xab, -0x11,0x05,0x31,0xb2,0x28,0x8d,0x68,0x00,0x87,0x25,0x10,0x47, -0x60,0x20,0xf7,0xfb,0x9d,0xe7,0x3c,0xf7,0xce,0x9d,0xc9,0x84, -0x4d,0x7c,0xdf,0xef,0xff,0xfd,0x03,0x77,0x3f,0xf7,0x9c,0xe7, -0x3c,0xfb,0xf3,0x9c,0x73,0xee,0xc4,0xfc,0x48,0x77,0xdb,0x1e, -0xad,0x99,0xd4,0xe0,0x59,0x5c,0xdb,0x31,0xa2,0xa4,0x27,0xa0, -0x57,0x8f,0xcd,0x8c,0xb3,0x3e,0x06,0x3e,0x5f,0x92,0xc3,0x4d, -0x35,0xd9,0xed,0x11,0x58,0xbc,0x71,0xb8,0xbf,0x28,0xe1,0xd9, -0x38,0x7e,0x56,0xa9,0x9f,0xb9,0x74,0x65,0xbe,0xa2,0x43,0xae, -0xbd,0x1e,0xe1,0x79,0xf5,0xcb,0xd5,0xf1,0x52,0xa6,0xa1,0xf1, -0x6a,0xf0,0xe2,0x4d,0x4c,0x40,0x2b,0xcd,0xd7,0xb5,0x12,0x0d, -0xc7,0x99,0x1b,0x0d,0xe3,0xeb,0xae,0x73,0xad,0xa3,0xb5,0x3d, -0x78,0x09,0xed,0x96,0xaa,0xc0,0x3b,0x7e,0x1d,0x44,0xb7,0xef, -0xa8,0xc4,0x96,0x3d,0x38,0xf6,0x40,0xf3,0x70,0xae,0x66,0x6a, -0xb7,0x69,0xe8,0xde,0x22,0x5b,0x89,0xc2,0x38,0x30,0xb7,0xc7, -0x6c,0x53,0x1f,0x51,0x6a,0x0e,0x93,0x3f,0x44,0x8c,0xdd,0x5f, -0x4d,0x40,0x70,0xe6,0xf4,0x67,0x95,0x3e,0xaf,0x3e,0xfc,0xcb, -0x7a,0x53,0xb7,0xeb,0xcc,0x3e,0x28,0x72,0x7e,0x41,0x4d,0x37, -0xde,0x87,0x1a,0x1c,0x7e,0x71,0xc3,0x8c,0x19,0x0d,0x17,0x0f, -0xaf,0x1e,0x70,0xce,0xe7,0x27,0x4d,0xfa,0xfc,0x39,0x03,0x34, -0x04,0x5d,0xd4,0x66,0x65,0xed,0xed,0xd7,0x8e,0x1b,0x77,0xed, -0xed,0xb5,0xe3,0xea,0x2f,0x1e,0x3d,0xfa,0xe2,0xfa,0x71,0x95, -0x31,0x18,0x60,0x17,0xcd,0xe1,0x36,0x0c,0x22,0x1e,0x86,0xde, -0x80,0xa1,0x9f,0xd6,0xb3,0x5a,0x26,0xec,0x89,0x0e,0x45,0x0c, -0x8c,0x0d,0x83,0xf1,0x4d,0x02,0xc2,0x6e,0xbb,0xda,0x86,0x26, -0x0e,0x08,0xbb,0x71,0x1b,0x18,0x1b,0x08,0xc5,0x0b,0x33,0xc0, -0x0b,0xcb,0x01,0x43,0xae,0x4a,0x1c,0x33,0x0c,0xcf,0xab,0x85, -0x88,0xf1,0xbc,0xa0,0x7e,0x09,0x59,0xc1,0x30,0xc6,0xfe,0xcc, -0x6d,0x02,0x43,0x0c,0x2a,0x28,0x1b,0xda,0xaf,0xdf,0xd0,0xb2, -0x82,0xb3,0xa7,0x4f,0x18,0x3c,0x78,0xc2,0xf4,0xb3,0xbb,0xfe, -0xad,0x1b,0x31,0x3e,0x22,0x00,0x33,0x06,0x94,0x0c,0x1a,0x54, -0x32,0x20,0xa3,0x3a,0xb7,0xb4,0x76,0x74,0x69,0x4d,0x69,0x6e, -0xcc,0x27,0x89,0x83,0xc1,0x88,0xc1,0xa0,0x24,0xa4,0xbf,0xdb, -0x76,0xdb,0x33,0x41,0xfa,0x2a,0x44,0xa8,0x4f,0x41,0x24,0xd8, -0xf2,0x7f,0xdb,0x6d,0xdb,0xb0,0x18,0x83,0x34,0x0c,0x33,0x08, -0x84,0x5c,0x34,0x3b,0xba,0xb6,0x34,0xb7,0xda,0x86,0xc5,0x25, -0xc7,0xb3,0xc1,0x9b,0xef,0x49,0xf5,0xfd,0xcc,0x29,0x2a,0xc4, -0xa9,0x10,0x95,0x2e,0xde,0x0c,0x29,0x56,0x0c,0xf5,0x30,0x2b, -0x3a,0xe4,0xfc,0x24,0xb3,0xdf,0x59,0x53,0xa8,0xfd,0x02,0xfd, -0x91,0x47,0xfb,0x0b,0x6a,0x6a,0x2e,0x47,0x5f,0xfe,0x29,0x44, -0x85,0x49,0xd2,0xf8,0x45,0x59,0xb2,0x69,0x55,0xad,0x51,0x1e, -0x9c,0x3c,0xa6,0x28,0x34,0xb7,0x71,0x4a,0xcd,0x2d,0x57,0x55, -0x14,0x94,0x4e,0x1e,0x36,0xb4,0xe6,0xc2,0x11,0x17,0xcc,0x1b, -0x3b,0xe6,0x9a,0xea,0xe1,0xb9,0x23,0xc6,0x0f,0xa9,0x34,0x3d, -0xd5,0x72,0x4d,0xb5,0xc7,0x2c,0xce,0x1b,0x3f,0xf5,0xaa,0x73, -0xcf,0x5f,0x7e,0x59,0x69,0xe9,0xac,0x55,0xd5,0x65,0x97,0x5f, -0xf8,0xb9,0xdc,0x8a,0x51,0xab,0xe6,0x4c,0xf8,0xfc,0xa4,0xa2, -0xb3,0x26,0xcd,0xad,0x18,0x5d,0x3b,0xb1,0x62,0xc0,0x48,0x63, -0xca,0x2a,0xf2,0x35,0xd4,0xf7,0x83,0xb7,0x53,0x9f,0xce,0x57, -0x5f,0x0f,0x8e,0xef,0x53,0xb9,0xea,0x42,0xb9,0xab,0x4f,0xbc, -0x2a,0x85,0x62,0x5c,0xbd,0xc6,0xb0,0x3c,0x53,0x7d,0x60,0x94, -0xfa,0x43,0x3e,0x49,0x86,0x19,0x83,0x5f,0xa5,0x35,0xe2,0xba, -0x47,0xea,0x73,0xcc,0x60,0xe3,0x17,0x80,0xb2,0x72,0xc8,0xf8, -0x11,0xb9,0xc3,0xab,0xaf,0x19,0x33,0x76,0xde,0x05,0x23,0x2e, -0xac,0x19,0x3a,0x6c,0x72,0x69,0x41,0xc5,0x55,0xb7,0xd4,0x4c, -0x69,0x9c,0x1b,0x2a,0x1a,0x33,0x39,0x58,0x6e,0xd4,0x02,0x42, -0xe3,0x81,0x55,0x53,0x8c,0x91,0x03,0x2a,0x26,0xd6,0x8e,0xae, -0x98,0x3b,0xe9,0xac,0xa2,0x49,0x9f,0x9f,0x30,0x67,0xd5,0xa8, -0x8a,0xdc,0xcf,0x5d,0x78,0x79,0x59,0xf5,0xaa,0x59,0xa5,0xa5, -0x97,0x2d,0x3f,0xff,0xdc,0xab,0xa6,0x8e,0xcf,0x2b,0x46,0xef, -0x15,0x8d,0xbe,0x26,0x17,0x1a,0x1b,0x65,0x2b,0x94,0xc2,0xad, -0x2a,0x99,0x17,0xd3,0x1f,0xa5,0xf4,0xe3,0xd2,0x42,0xcf,0x81, -0x9a,0xa9,0x4e,0xae,0xa1,0xc1,0x23,0x3e,0x59,0x49,0x27,0x6a, -0x01,0xd4,0x64,0x0f,0x1e,0xa7,0x8a,0xeb,0xb0,0xc9,0x1b,0xd5, -0x34,0x8d,0x54,0xca,0x72,0xdc,0xae,0xe6,0x5b,0xe5,0xd9,0x53, -0x75,0x4c,0xe7,0xe3,0x45,0x26,0x2f,0x91,0x50,0xc3,0x20,0xb7, -0xa9,0x35,0x12,0x79,0xea,0xb7,0xa9,0x87,0x0d,0xa7,0x5f,0x12, -0xe6,0x44,0x5a,0x2e,0x65,0x77,0x68,0x92,0x7f,0x63,0xc1,0xb0, -0xcc,0xbc,0xc1,0x7d,0xb2,0x0a,0xfc,0x83,0x33,0x46,0x17,0xb9, -0x2f,0xe4,0xc2,0xec,0xb4,0x3e,0xbd,0x33,0xfa,0x14,0x07,0x06, -0x3b,0x27,0x5a,0x27,0xde,0x2f,0x17,0x1b,0x2f,0xc9,0x8d,0xe8, -0xd3,0xb2,0xd3,0xec,0xd3,0x19,0xef,0xc6,0x0d,0xb9,0x83,0x33, -0x72,0xf2,0x32,0x32,0xfb,0x67,0x0c,0xce,0x28,0x29,0x74,0x5f, -0xc8,0xc5,0x7e,0xaf,0xcf,0x47,0xd0,0x3b,0x27,0xea,0x67,0xf9, -0xe4,0xed,0xc6,0x73,0xf2,0x6f,0x00,0xff,0x9c,0xb8,0x6f,0x52, -0xd0,0xec,0xc4,0x4c,0x7b,0x2e,0x62,0x99,0x3d,0x17,0xf1,0x05, -0xfb,0x4e,0x13,0x4f,0x4a,0x44,0x78,0xc6,0x5f,0x04,0x7e,0xdc, -0xc8,0xeb,0xda,0x29,0xff,0x56,0xad,0x71,0x73,0x18,0xb8,0x99, -0x27,0xd5,0x8f,0xf3,0x0d,0xd7,0x3f,0x10,0xe7,0x77,0xe1,0x66, -0x9e,0x8d,0x9b,0xfb,0x18,0x13,0xde,0xad,0xd4,0xab,0xf3,0x0c, -0xca,0x30,0xa8,0xf9,0x00,0xc6,0xa8,0x82,0xfc,0xfc,0x02,0x6c, -0x72,0x71,0x7e,0xdf,0xde,0x7d,0xf3,0x69,0x07,0x59,0x7d,0x4c, -0x5e,0x6f,0xac,0x91,0x6f,0xa8,0xd1,0x0f,0x51,0xa2,0x86,0x78, -0x07,0xf0,0x67,0x42,0x7b,0x3b,0xbf,0x6c,0xa5,0x26,0x92,0x6e, -0xd5,0x69,0xa1,0x0c,0xce,0x50,0xab,0xaf,0x06,0xe7,0xc4,0xd5, -0x5f,0x11,0x77,0xf5,0x7a,0x41,0x6e,0x6e,0x01,0xb6,0xc7,0xf9, -0x28,0xaf,0x8f,0x35,0xea,0x6a,0x1e,0xed,0xff,0x5e,0x4e,0x37, -0xf6,0x98,0x3e,0xfa,0xad,0xc9,0xc9,0x0a,0x63,0x69,0xfc,0x23, -0xb9,0xa6,0xf3,0xdb,0xdd,0xa5,0xb4,0x08,0x47,0xd8,0xbf,0x6b, -0x98,0x48,0xfd,0x26,0xee,0x33,0x8d,0x2e,0x0f,0x87,0x81,0x80, -0x55,0x7c,0xbf,0x6c,0x4e,0xcd,0x58,0x6c,0x72,0x7a,0xbf,0xa7, -0x07,0xff,0x18,0x1b,0xe1,0xd0,0x92,0xd3,0x8c,0x1f,0x99,0xbd, -0xd1,0xc8,0x18,0x85,0xc3,0xd8,0xf7,0x42,0x92,0xb7,0xd0,0x14, -0xdf,0x94,0xf2,0x8b,0xe0,0x8e,0x54,0x54,0xce,0x99,0x26,0xa7, -0xe5,0x3d,0x5d,0xa4,0xe9,0xf2,0x3c,0xea,0xbc,0xd2,0xae,0x33, -0x91,0xde,0x7e,0x9b,0xcc,0xa5,0xf6,0x49,0x93,0x7d,0xf2,0x3d, -0x3a,0x51,0xde,0x63,0xae,0xf7,0xf9,0x69,0x73,0x2a,0xe5,0xce, -0xa2,0xa7,0xf3,0x50,0xdf,0xb7,0xe5,0x25,0xc6,0x6b,0xf2,0x18, -0xb8,0x78,0xaa,0xfe,0x01,0xce,0x34,0x5d,0x5f,0x8a,0xae,0x2f, -0x45,0xbf,0xfd,0xba,0x7d,0xd2,0x64,0x9f,0x7c,0x8f,0x4e,0x62, -0xbf,0xf3,0x62,0x6e,0x55,0x11,0xa5,0xe2,0x25,0xd8,0xc5,0xe1, -0x5e,0x78,0xd1,0xd7,0xae,0x18,0xd5,0xd8,0x38,0x6a,0x85,0x3c, -0x76,0xdf,0xa0,0xc6,0xc6,0x41,0xf7,0x51,0x5b,0x73,0x8d,0xd7, -0x4c,0xe5,0xc7,0xde,0x16,0xd7,0x96,0xd0,0xbc,0x2a,0xf4,0xcf, -0xd6,0x2b,0x79,0xbb,0x4e,0x8d,0x29,0xa9,0x8b,0xc7,0x71,0xd2, -0xa4,0x2f,0x5c,0x28,0x73,0x68,0x71,0xa7,0xcd,0x88,0x65,0xf6, -0xdb,0xaa,0xb0,0x4a,0x3b,0xcb,0x98,0xa0,0xaa,0x85,0xc0,0x4a, -0x20,0xd5,0x22,0x34,0x26,0x5a,0x2e,0xb0,0x70,0x84,0xe1,0x9b, -0xeb,0xc0,0xf7,0x43,0x39,0xdb,0x68,0x96,0xed,0xa2,0xaf,0xfa, -0xa6,0xa4,0xe0,0x5f,0x12,0x4b,0x80,0xcf,0x05,0xc5,0xca,0x1e, -0x08,0xa7,0x86,0x37,0x54,0x7b,0x50,0x79,0x8a,0x12,0xa9,0xb6, -0xa8,0xa4,0x12,0xc2,0xd4,0xaf,0xcd,0x1b,0xd0,0xdb,0x00,0x42, -0x7f,0x62,0x0e,0x8e,0x44,0x86,0x69,0x8c,0x2a,0x1e,0x33,0x38, -0xc7,0x5b,0xd2,0xb7,0x4f,0xd1,0xb0,0x9c,0xfe,0x39,0x19,0xde, -0xbe,0x25,0xde,0x9c,0xc1,0x63,0xe4,0xec,0xbc,0xa1,0xa3,0xfa, -0xf6,0x1b,0xdc,0x6f,0x60,0x5a,0x9f,0x9c,0xde,0x83,0xfb,0xf5, -0x1d,0x35,0x34,0x4f,0xf3,0xc1,0x7d,0x80,0x75,0x1d,0x60,0xcd, -0x12,0x17,0x29,0x58,0x63,0x73,0xe9,0x4e,0x15,0xd6,0x5e,0x04, -0xab,0x9a,0x94,0xd5,0x87,0x20,0x1b,0xa6,0x8c,0x3a,0x29,0x24, -0xe5,0xe1,0x40,0x25,0x8d,0x1a,0x3b,0x29,0x27,0x50,0x5b,0x94, -0x3e,0x20,0x1d,0xff,0x8b,0x6a,0x03,0x39,0x93,0xe4,0xec,0x91, -0x45,0xc3,0x06,0xcd,0x32,0xf1,0x37,0x6b,0xd0,0xb0,0xa2,0x91, -0x4a,0xae,0x9e,0x93,0x93,0x8c,0xc7,0xcd,0x61,0x34,0xf4,0x3d, -0x4b,0x41,0x34,0x84,0xd7,0x05,0x04,0x1c,0x99,0xba,0xa4,0x1b, -0xc7,0x3b,0xe0,0xad,0x8f,0x07,0x4f,0xcd,0x93,0x49,0x51,0x13, -0x51,0xb7,0xaa,0xd1,0x99,0x94,0x4e,0x8d,0xb1,0x6e,0x1f,0x0a, -0x88,0x25,0x31,0x47,0xe5,0x8d,0x1c,0x94,0x9d,0x3d,0x68,0x64, -0x9e,0x7d,0xec,0x3f,0x68,0x50,0x7f,0x6c,0x72,0x52,0xd6,0xa0, -0xb3,0xf3,0xf3,0xcf,0x1e,0x94,0x65,0x1f,0xcb,0x07,0x16,0xf4, -0x2b,0x18,0x48,0x3b,0xca,0x4d,0x3f,0x27,0xc7,0x02,0xee,0xbf, -0xe0,0x4c,0x65,0x68,0x6f,0x56,0x23,0x26,0x76,0x86,0x36,0x85, -0x7f,0xbf,0x26,0x45,0x67,0x6a,0x6f,0x57,0x42,0x91,0x47,0x94, -0x24,0x19,0xf0,0x93,0x78,0x0c,0xc2,0x56,0x8a,0xed,0x7c,0x6c, -0x97,0x60,0x9b,0x87,0x6d,0x85,0xfa,0x26,0x9f,0xea,0xcd,0x6f, -0xe2,0xe5,0x47,0x25,0x68,0x55,0xb7,0xd4,0x97,0xd1,0xc5,0x56, -0x3d,0xe2,0x34,0x48,0x77,0x0f,0xdc,0x60,0x1e,0xbf,0x8b,0xe3, -0x46,0x5c,0x78,0xee,0x92,0x1e,0xba,0x69,0x8e,0x2e,0x68,0x38, -0xab,0xeb,0xc7,0xc7,0xef,0xab,0x21,0x8e,0xc8,0xcb,0x8c,0x95, -0xa6,0xfa,0xc8,0x78,0x7f,0x17,0xcf,0xdc,0xa6,0xc8,0x93,0xa7, -0x7f,0xb5,0xc9,0xa5,0xc7,0xc7,0x55,0x64,0x18,0xde,0xa0,0x41, -0xba,0xbc,0x24,0xbf,0x60,0x68,0xde,0xc4,0x40,0x9e,0x37,0x2b, -0xbb,0x40,0x5e,0x96,0xdf,0xaf,0x77,0xd1,0xf9,0xb9,0x7d,0x87, -0xe4,0xa6,0xe4,0x66,0xf9,0xfa,0xe5,0x13,0x3f,0x1a,0xa3,0xe4, -0x48,0xe3,0x01,0xfa,0x36,0xd2,0x50,0xbd,0x1c,0xd3,0xc3,0x75, -0x1b,0xaa,0x6e,0xf7,0x8c,0xae,0x81,0x94,0xd0,0x2a,0x1a,0x57, -0x61,0xd4,0x8d,0x49,0xbf,0x46,0x8e,0xfc,0x33,0xc1,0xf6,0x96, -0x55,0x6e,0x3c,0x05,0xb2,0xf7,0x17,0xd7,0xa9,0x3c,0x0a,0x8f, -0x2f,0xde,0xae,0xdc,0x3d,0xbc,0x1f,0xd8,0x3a,0xb9,0xb7,0x58, -0x8b,0xc7,0xaf,0x63,0x7b,0x0f,0xdb,0x3e,0x6c,0x6a,0x72,0xac, -0xe7,0x9a,0xc9,0xbd,0x40,0x87,0x00,0xf0,0x18,0x00,0x1d,0x02, -0xa0,0x03,0x58,0xe7,0x46,0x8d,0x63,0xaf,0xf2,0x39,0xd6,0x42, -0xcf,0xbc,0x8e,0x4d,0x92,0xb1,0x4b,0xe9,0x74,0x7f,0x26,0x1c, -0xae,0x14,0xb8,0xbd,0xc2,0x9b,0xab,0xc7,0x04,0x32,0xa4,0x31, -0x7e,0x44,0x69,0xef,0x61,0xbd,0x82,0xfd,0x72,0xf2,0x0b,0xce, -0x1e,0x90,0x13,0xca,0x34,0x73,0x02,0x03,0x87,0x67,0x0f,0x2a, -0x7e,0xbd,0x7f,0xc6,0x88,0xde,0x59,0xfe,0xcc,0x8c,0xbe,0xa9, -0x29,0x75,0x97,0x9a,0xa9,0x43,0x0a,0xfb,0x16,0x06,0x7c,0x80, -0xfb,0x49,0xc0,0x7d,0x0d,0x54,0x45,0x3f,0xf1,0x05,0x35,0xf4, -0x10,0xff,0xdd,0xe8,0x6e,0x3f,0x66,0x1e,0x9b,0x59,0x3e,0x39, -0x47,0xe1,0x8d,0x24,0xb5,0x90,0x7e,0xd9,0x52,0xa8,0x9f,0x41, -0x76,0x94,0x9f,0x92,0x57,0xa5,0xdc,0x7a,0x5d,0xa3,0x1d,0x89, -0x2c,0x62,0x9c,0x9c,0xad,0xf6,0x72,0xc7,0x71,0xc3,0x2b,0x72, -0x95,0x4b,0xc8,0x5f,0x96,0x30,0x3c,0xc3,0xc7,0x4f,0x2c,0xf5, -0x8c,0x4d,0x2b,0x1c,0xd6,0xd7,0x9b,0x95,0x31,0x30,0xa7,0xb8, -0xd7,0xa8,0xd7,0x87,0x16,0x17,0x9f,0x37,0x24,0xbb,0xdf,0xc0, -0xe2,0xfe,0x39,0x69,0x59,0x7d,0xf2,0x86,0x67,0xe6,0x82,0x4e, -0xb9,0xb0,0x1f,0x5f,0x33,0xd3,0x41,0xa7,0xe1,0x7a,0xa0,0xcf, -0x6d,0x93,0x12,0x04,0x53,0xa9,0x4c,0xb6,0x42,0x33,0x27,0x0c, -0x9c,0x29,0xa7,0x79,0xff,0xd2,0x5b,0xc9,0xcc,0xb7,0x50,0x47, -0x0b,0xea,0xe8,0x03,0xb0,0x06,0x09,0x5a,0xe5,0x5f,0xc8,0x43, -0x2e,0x19,0xfc,0xed,0xd3,0x0c,0x32,0xda,0x82,0x96,0xfd,0x9b, -0xb4,0xec,0x9f,0x25,0x3f,0x43,0x2b,0xc1,0xad,0xda,0xa9,0xc8, -0x74,0xbe,0xcc,0x69,0x5b,0xfc,0x6c,0xb6,0xf8,0xf9,0xdd,0x2c, -0x7e,0xae,0xb2,0xb5,0x71,0x77,0xfe,0x94,0xdb,0xaf,0x5f,0x2e, -0xb6,0x05,0xe5,0x03,0x2f,0x38,0x97,0xcf,0xdd,0x96,0x7f,0x30, -0xe0,0x7d,0xc8,0x6d,0xfe,0x2d,0xcb,0xba,0x52,0x2e,0x14,0xbf, -0x80,0x1f,0xeb,0x35,0x2f,0xee,0x52,0x3f,0x33,0xab,0xee,0x35, -0xca,0xdb,0xc5,0xbd,0xf0,0xa1,0xbc,0xe6,0x4c,0xe7,0x5e,0x8b, -0x5c,0x2c,0x2a,0xe1,0xff,0x78,0xcd,0x4b,0x9d,0x7b,0xab,0xe5, -0xf5,0xd0,0xbb,0x6f,0xa8,0xd5,0xea,0xce,0xbd,0x7b,0xe4,0x74, -0xf1,0x22,0xfc,0x09,0xaf,0x79,0x99,0x73,0x6f,0xa3,0x9c,0x26, -0x56,0xc1,0x46,0x7b,0xcd,0xd9,0xce,0xbd,0xef,0xe1,0xde,0x68, -0xba,0x37,0xc7,0xb9,0x77,0x9d,0xbc,0x44,0x3c,0x01,0xdb,0xeb, -0x35,0x2f,0x77,0xdd,0x9b,0x2b,0x9e,0x80,0x8d,0xf4,0x9a,0x73, -0x9d,0x7b,0x4b,0xe4,0x6c,0xf1,0x1f,0xd0,0xf5,0x5e,0xf3,0x0a, -0xe7,0xde,0xbd,0x72,0x92,0x68,0x84,0xbe,0xf5,0x9a,0x57,0xe9, -0x7b,0xc2,0xb0,0x7e,0x29,0x27,0x8b,0x79,0xa8,0xaf,0xb7,0xf8, -0xbc,0x50,0xb9,0x96,0xc9,0x7d,0xc0,0x5f,0x69,0xa0,0x4d,0x1a, -0xf8,0x2b,0x0d,0xfc,0x95,0x06,0xfe,0x4a,0x03,0x7f,0xa5,0x89, -0x54,0x6d,0x1d,0xd2,0x6c,0xb2,0xa4,0xd9,0xf6,0x34,0x4d,0x1b, -0x8e,0xfd,0xf6,0x9d,0xf5,0x74,0xa2,0xb4,0x83,0xed,0x2b,0x3a, -0x63,0xf3,0xc3,0xc7,0x15,0xcd,0x5e,0x36,0xac,0xb0,0x20,0x37, -0x6f,0xf4,0xc4,0x9b,0xe4,0xb1,0xc2,0xdc,0x7e,0x95,0x03,0x83, -0xb9,0x8b,0x35,0x7c,0xaf,0xcb,0xcb,0x44,0x0d,0x74,0x8d,0xd7, -0xbc,0xda,0x86,0x59,0x18,0x72,0xa4,0xb8,0x1e,0x3a,0xc2,0x6b, -0x5e,0xe3,0xc0,0xfc,0x7b,0xe3,0x75,0x44,0xa0,0x0d,0x04,0x66, -0x92,0xdf,0xea,0x54,0xab,0xce,0x3c,0x99,0x5a,0x31,0xe5,0xd0, -0xf7,0x78,0x2a,0xc6,0x54,0xcc,0xc8,0x1f,0xf6,0xf9,0xcb,0xa6, -0xca,0x8c,0x82,0xb3,0xc6,0xac,0x54,0x6d,0x3d,0x6d,0x95,0x8b, -0xdb,0x20,0xf7,0x5e,0xf3,0x5a,0xa7,0xde,0xd7,0xac,0xb9,0xa2, -0xc2,0xfa,0x6f,0xf0,0x68,0x6f,0xa1,0x92,0x41,0x4a,0xe3,0x96, -0x95,0xf7,0x8d,0xe3,0x1f,0xf6,0x50,0x7f,0xe1,0x66,0x11,0xf5, -0xee,0x5f,0xad,0xde,0xf4,0x6e,0x96,0x86,0xa9,0x94,0xbe,0x11, -0x10,0x93,0x55,0xf3,0x1a,0xad,0x2c,0xd3,0x54,0x85,0xba,0x26, -0x6f,0xd1,0xe7,0x8c,0x71,0x6a,0xf6,0x72,0xe5,0x58,0x97,0xaa, -0xac,0x4a,0xd4,0x94,0x80,0x75,0x1e,0x60,0x55,0xda,0xc2,0x6b, -0xce,0xeb,0xfa,0x33,0x55,0x2b,0xad,0x2f,0x80,0x37,0x1e,0x31, -0xbf,0xa4,0x7e,0x7d,0x48,0xfc,0x58,0xe9,0x3c,0x41,0x76,0xa6, -0xcc,0xb6,0xe2,0xec,0xe5,0x78,0x49,0x2c,0xd5,0x67,0x5b,0x4a, -0x09,0x0a,0xc7,0xff,0x76,0xdb,0xd6,0x15,0xfa,0x24,0xce,0x8d, -0x72,0x39,0x04,0xfb,0xbb,0x7b,0x28,0xce,0xca,0xc8,0x2f,0xdb, -0x93,0x4e,0xcf,0xa7,0x3b,0xca,0x55,0x51,0xb1,0x4b,0x2a,0x0d, -0x09,0xdb,0xb1,0x4b,0x56,0x37,0xd7,0x45,0xf9,0x0b,0xc5,0x63, -0x8a,0xc8,0x79,0x39,0x0b,0xce,0x4b,0xc0,0x4f,0xce,0x4b,0xd1, -0x98,0xa1,0xe5,0x73,0x6a,0xe1,0xb9,0x9e,0x45,0x0e,0xcc,0x90, -0x5e,0x99,0x01,0x72,0x60,0xce,0xca,0xbb,0x31,0xf7,0xe9,0x21, -0xff,0xd7,0xf7,0x3b,0x3f,0xd6,0xef,0xfc,0xe4,0xfd,0x36,0xe1, -0x43,0x26,0xed,0xf7,0x83,0xb5,0x73,0xca,0x93,0xf5,0xdb,0xc8, -0x1c,0xf2,0x74,0x6e,0xac,0xdf,0x2b,0x69,0x0a,0xf7,0x2f,0x4e, -0xa9,0xdf,0x2b,0xba,0xf5,0xfb,0xbe,0x53,0xee,0xb7,0xd3,0x5d, -0x07,0x01,0xee,0x7e,0x07,0x63,0xfd,0x0e,0x2a,0xcb,0x3b,0x78, -0xab,0x5a,0x37,0xa3,0xe4,0x3e,0x09,0x06,0x5c,0x9a,0x20,0x29, -0x26,0xbe,0x72,0x2d,0xa9,0x87,0x51,0xe7,0xde,0x90,0x14,0x1f, -0xc3,0x59,0x65,0xdc,0x00,0x9c,0x5c,0x09,0x9c,0x3c,0x65,0x36, -0x00,0x27,0xa5,0xe2,0x5f,0x36,0x4e,0x12,0x7a,0x75,0x1a,0x78, -0xb1,0x31,0xe0,0xc6,0x89,0xc6,0xf3,0x49,0xe3,0x04,0x8c,0x0f, -0x61,0x1f,0xb0,0x55,0xad,0x2f,0x1d,0x40,0x53,0xbc,0x6f,0x57, -0x33,0x3a,0xf3,0xf4,0xa2,0xf8,0x22,0xaa,0x44,0xfd,0x30,0xc5, -0x08,0x8a,0xf5,0x47,0xe1,0xce,0x08,0x8d,0xbf,0x51,0xc9,0xf9, -0x66,0x5c,0x8f,0xd1,0x7f,0x52,0x1c,0x16,0x3a,0xb9,0x8c,0x41, -0xee,0xc4,0x06,0x2e,0x92,0xe1,0xf4,0x79,0x9d,0xe2,0x18,0x6a, -0xe7,0x3a,0x86,0xea,0x5c,0x87,0x69,0x2d,0x95,0x73,0xc4,0x0f, -0x21,0x6b,0x26,0xd9,0xec,0x29,0x76,0x84,0xe7,0xc4,0x73,0xfe, -0xf8,0xc0,0x8e,0x42,0x86,0x14,0xd6,0xfc,0x70,0xe2,0xb6,0x6a, -0x37,0x38,0x7b,0xbd,0x0e,0xd4,0xf3,0x39,0x8c,0x32,0x8f,0x13, -0x93,0xa7,0x43,0xfc,0xdf,0xe1,0x78,0xfc,0x97,0x76,0x5c,0xbe, -0x06,0xb2,0xdf,0x75,0x34,0x69,0x70,0x6e,0xc2,0xf6,0xcd,0x11, -0x8f,0x9b,0x5f,0x04,0xe6,0x03,0x08,0x1f,0x2e,0x25,0xbd,0x4d, -0x30,0x7a,0x6d,0x18,0xbd,0x36,0x8c,0x5e,0x1b,0x46,0x2f,0xc1, -0xa8,0x3d,0xea,0xf8,0x40,0xcf,0xce,0x1c,0xd8,0x4b,0x23,0x61, -0xb9,0x28,0xf0,0xf3,0x1b,0xc7,0x01,0x3a,0xb4,0x7c,0xc4,0xcd, -0x37,0x8f,0x58,0xfe,0x40,0x22,0xdc,0x6f,0xdd,0x1d,0x5c,0xb9, -0x32,0x78,0xf7,0x9d,0xc9,0xd3,0x0a,0xdd,0xf0,0x7b,0xfe,0x29, -0xe2,0x37,0x7f,0x3d,0x43,0xcd,0xeb,0x61,0xcc,0x13,0x80,0x79, -0x13,0x54,0xcc,0xdc,0x04,0x18,0xcd,0x2b,0xa1,0x5e,0xea,0x7b, -0xc8,0x7b,0x00,0xb7,0x35,0x46,0x0a,0xc1,0xe7,0x13,0xdf,0x56, -0xf2,0x95,0xc6,0xf2,0xa5,0xfd,0x01,0xc8,0x57,0x6f,0xf2,0x07, -0x06,0x61,0x53,0xee,0xc0,0xf9,0xd8,0x2e,0x51,0xa3,0xdd,0x5a, -0x98,0xd2,0x6c,0x2d,0x9b,0xe8,0x28,0x94,0xd9,0x27,0x99,0x74, -0xc2,0x4e,0xb7,0xfa,0x4e,0xcc,0x75,0xec,0x74,0xfb,0x48,0x2e, -0xd4,0xd0,0x7f,0x9a,0x96,0x0b,0x8a,0x36,0xd2,0xf8,0xc7,0x3a, -0x14,0x17,0x79,0x75,0xc6,0xe0,0x11,0x30,0xcc,0x9b,0x1a,0xff, -0xc4,0x27,0x2b,0x35,0xce,0xb5,0x8d,0x9c,0x2f,0x2f,0x10,0x8f, -0x99,0x77,0x82,0x37,0x06,0x88,0x6f,0xc5,0x62,0xb1,0x32,0x85, -0x44,0xad,0x1b,0x52,0x6c,0xdd,0x10,0x0b,0xca,0xd8,0x56,0xa4, -0xd8,0xba,0x21,0xc5,0xee,0x45,0x8a,0xad,0x33,0x53,0x00,0x66, -0x8a,0xad,0x33,0x53,0x6c,0x9d,0x99,0x3c,0xb5,0xa1,0xfa,0xa6, -0x3c,0x71,0x75,0xa6,0x7e,0xd7,0x23,0x57,0x81,0x4f,0xa0,0x9f, -0xdf,0x3d,0xa0,0x1f,0xbd,0x72,0xf0,0xed,0xb7,0x0f,0x5e,0x39, -0x3a,0xa9,0x4c,0xcb,0x37,0x16,0x0d,0x99,0x3b,0x77,0xc8,0xa2, -0xfe,0xdd,0x05,0x18,0x7d,0xed,0x3a,0x2a,0x6b,0x20,0x07,0xff, -0x7b,0xb4,0x32,0x63,0xb4,0x32,0xdd,0xb4,0x52,0xe3,0x51,0xe3, -0x34,0xad,0xba,0x8e,0x82,0x03,0x5f,0xd5,0xc4,0x22,0xc6,0x2b, -0x75,0x88,0x45,0xbc,0x26,0x3e,0x80,0x7d,0xeb,0x8d,0x10,0xf3, -0x29,0x05,0x7f,0x26,0xd3,0x8a,0x96,0x0a,0x2b,0xd8,0xd5,0x57, -0x32,0x32,0x01,0x7b,0x26,0x60,0xcf,0x04,0xec,0x99,0x36,0xec, -0x99,0x36,0xec,0x99,0x36,0x85,0x32,0x01,0x5c,0xa6,0x4d,0xa1, -0x4c,0x9b,0xd8,0x99,0x04,0xbf,0x7f,0xab,0xb3,0xde,0x8c,0xca, -0xfa,0x51,0x56,0x7f,0x87,0x2b,0x9b,0xa8,0x94,0x49,0x29,0x44, -0x35,0xaf,0x2d,0x9b,0xbe,0x2d,0x76,0x9b,0x46,0xa5,0xfa,0xb4, -0x4e,0xa2,0x57,0x9b,0xe3,0xb2,0x65,0x7d,0x75,0x1f,0x43,0xcb, -0xd8,0x7a,0xdd,0xca,0xfd,0x5c,0x69,0xdb,0xab,0x19,0x76,0x67, -0x6d,0xb9,0x2f,0x67,0xb9,0x9f,0x76,0x8a,0x72,0x6f,0x72,0xfb, -0xdd,0xb5,0xab,0x39,0xb8,0xef,0xe0,0xdc,0xe3,0x68,0x80,0xef, -0xa8,0x6c,0xed,0x88,0x44,0x15,0x50,0x5e,0xfd,0x70,0x52,0x05, -0xa0,0xec,0x6b,0x0d,0xd9,0xd7,0x7c,0xb8,0xb0,0x7f,0x51,0x34, -0x09,0x32,0x4d,0x82,0x76,0x7a,0x2a,0x68,0xa3,0x9e,0x4e,0x14, -0x95,0x82,0xe8,0x51,0x10,0x54,0x0a,0x82,0x4a,0x41,0x50,0x29, -0xa8,0xa8,0xa4,0xf0,0x1c,0x04,0x9e,0x83,0x36,0x4d,0x82,0x36, -0x4d,0x82,0x44,0x93,0x81,0x9a,0xa7,0x06,0xa2,0xc8,0x40,0x9d, -0x85,0xdb,0xce,0x5f,0x41,0x28,0x74,0x24,0x27,0xc7,0xe9,0xb6, -0x9a,0xa2,0x97,0x4a,0x4c,0x47,0x9f,0x39,0xd7,0x34,0xea,0x55, -0x9a,0xa7,0x1c,0xcf,0x1c,0x9a,0xd3,0x73,0x3b,0x39,0x9e,0xfa, -0x37,0x13,0x48,0x89,0xbb,0x2d,0x66,0x91,0xdb,0x96,0xaa,0x11, -0x31,0x90,0xed,0x82,0x1e,0x0d,0xe6,0x8f,0x98,0x8e,0x0d,0xdd, -0x8d,0xe4,0xb7,0x63,0xba,0xc6,0x10,0x5f,0x33,0x33,0x8c,0x8d, -0xe6,0x5d,0xc0,0xd5,0x77,0xba,0x8f,0x0b,0xbc,0x1e,0xe7,0x61, -0xac,0x42,0x67,0xd5,0xc9,0x8f,0xed,0x94,0xa3,0x93,0x1a,0x17, -0xf6,0xc9,0x24,0x3a,0x61,0x47,0x63,0x26,0xb9,0x15,0xff,0x83, -0xa3,0x1f,0x66,0x46,0xb2,0xd1,0x0f,0x43,0xdc,0x6f,0x66,0x1b, -0x2f,0x99,0x77,0xa0,0x8f,0x8b,0x13,0xfb,0x98,0xd0,0xa3,0x24, -0x1d,0x89,0x51,0xeb,0x33,0x1f,0xf6,0x30,0xb3,0x93,0x0c,0x7b, -0xa8,0x71,0x0f,0x73,0xb8,0xf1,0x9c,0x79,0x03,0x40,0x2f,0x49, -0xcc,0x83,0x7b,0x10,0xb4,0x2a,0xae,0x33,0x35,0xfc,0x65,0xc9, -0x47,0x3a,0xcc,0x1b,0x68,0x5c,0xab,0xd3,0x4c,0x37,0x16,0x9a, -0x5f,0x03,0xa8,0x97,0x76,0x1f,0xe7,0x60,0x5a,0x7b,0xe1,0x1f, -0x0a,0x07,0x29,0x26,0x8d,0x77,0x4c,0xee,0x25,0x5e,0x10,0x6a, -0x6d,0x94,0x17,0x2d,0x79,0x61,0x33,0xbc,0x22,0x45,0x09,0xc7, -0x24,0x9c,0xcc,0x24,0x6d,0xda,0x7d,0x44,0x64,0x60,0xff,0xfe, -0x03,0xb1,0x99,0xe9,0x03,0xf3,0x32,0xf2,0x06,0xd2,0x8e,0xd6, -0x4e,0xfc,0xc8,0x0c,0x18,0xcf,0x83,0x16,0x6a,0x4c,0x64,0x4a, -0x0f,0x63,0x22,0x89,0x54,0x59,0xc1,0xc4,0x38,0xf5,0x91,0x92, -0xbc,0xbc,0x02,0x6c,0x8f,0xf3,0xd1,0x0c,0x14,0xf4,0x4d,0xef, -0x5b,0x90,0xb0,0xd3,0x6b,0x3a,0x7e,0x2f,0x3b,0x8d,0x3d,0xe6, -0x1f,0x28,0x55,0x3f,0xac,0xe7,0xb1,0x92,0xd2,0xe3,0x0d,0x88, -0x74,0x3a,0x03,0x22,0x6a,0x3c,0xe4,0xa0,0xf1,0x23,0xf3,0x59, -0xc5,0x6e,0xdd,0xc7,0x43,0x4a,0xbb,0x0d,0x7a,0x1c,0xd4,0x83, -0x1e,0x6a,0xcc,0xe3,0xa0,0x71,0xa5,0xfd,0x5e,0xe2,0x98,0x47, -0x69,0xc2,0xc0,0x86,0x79,0xbf,0x1a,0xd8,0xa0,0xf7,0xbe,0x2d, -0x0f,0x1b,0xaf,0x99,0x4f,0x41,0xd4,0xae,0xe9,0x3e,0xb6,0x71, -0xbe,0x6d,0xee,0x4b,0x6d,0x6f,0x60,0x3d,0x4e,0xb6,0x2b,0x6f, -0x40,0xff,0x88,0x57,0x0a,0xe1,0x37,0xe6,0x04,0x10,0x3f,0xf0, -0x68,0xca,0x4c,0x1a,0x46,0xeb,0x61,0xc4,0xc3,0x7c,0x8a,0x47, -0x14,0x08,0x06,0xd3,0x00,0x0c,0xbf,0x41,0xc9,0xd5,0x89,0x63, -0x1e,0x1e,0x27,0xd3,0x47,0x9a,0xf4,0xba,0x84,0xf4,0xb8,0x47, -0xa8,0x95,0xda,0xfb,0xed,0x91,0x10,0x95,0x22,0xdf,0x6e,0x53, -0xff,0xf1,0x84,0x81,0x0d,0x82,0x4d,0xda,0xb0,0x49,0x82,0xbc, -0xfb,0x50,0x87,0x69,0xd8,0x80,0xa9,0xb1,0x8e,0x2e,0xa3,0xd9, -0xfc,0x3e,0xe2,0xad,0x6f,0x26,0x8e,0x75,0xc4,0x35,0xac,0x10, -0x25,0x6c,0x44,0x31,0x80,0x8f,0xc7,0x8d,0x2a,0xc4,0x03,0xe7, -0x0a,0xab,0x3c,0x30,0xb3,0xea,0xb3,0x84,0xa9,0xf6,0xe8,0x4d, -0xaa,0xd6,0x97,0x2a,0xb4,0xba,0xc4,0xbe,0x7b,0x7a,0xc3,0x22, -0x5d,0x49,0x86,0x45,0xd4,0x98,0x48,0x97,0xb1,0x0e,0x7d,0xca, -0x12,0x13,0xbb,0x8f,0x89,0x74,0xef,0xc6,0xf6,0x4f,0x31,0x02, -0xd2,0x95,0x38,0x02,0xa2,0xc7,0x40,0x76,0x1b,0x8f,0x9b,0xeb, -0x69,0x0c,0x64,0x5e,0xf2,0x31,0x10,0x61,0x63,0xcc,0x0e,0x5f, -0x63,0x46,0x43,0x9d,0xfc,0xd8,0x3e,0x99,0x64,0x43,0xbb,0x92, -0x83,0xd5,0x33,0x35,0x20,0xb2,0xfb,0xb8,0x83,0x04,0x6a,0x3c, -0x64,0xbb,0xf1,0x78,0xca,0x3c,0x1e,0x0f,0xa9,0x3b,0xce,0x78, -0x08,0xcb,0xd1,0x3c,0x5b,0x7c,0x6c,0xa7,0x5b,0xea,0x8e,0x9c, -0xb9,0x91,0x8f,0x89,0xa5,0xd3,0x6a,0x97,0xf7,0x34,0xf2,0xb1, -0x25,0xe7,0xc6,0xfc,0xae,0x47,0x8e,0xd7,0x29,0x77,0xce,0x3b, -0xd8,0x53,0xce,0x3b,0x79,0xaa,0x9b,0x72,0xaa,0x1f,0x89,0x79, -0xd0,0x21,0xbd,0x61,0x47,0x28,0xa7,0xaa,0xfa,0xc6,0x8e,0xf5, -0x3c,0x7d,0xe2,0x71,0x1c,0x71,0x79,0x12,0x89,0x52,0xf3,0x29, -0x57,0xa2,0x54,0x5a,0x8b,0x65,0xa7,0x78,0x38,0xe5,0x2c,0x1a, -0x3a,0xb8,0xd4,0x96,0x3f,0x7b,0x24,0x40,0xde,0xe8,0x56,0x07, -0x76,0x0e,0x92,0xee,0xae,0x4f,0x48,0xec,0x68,0x47,0x37,0x10, -0xcb,0xde,0x04,0x12,0xb2,0x0f,0x63,0x5d,0xc9,0x3a,0x12,0xa9, -0xf4,0xa1,0xc3,0x86,0x0d,0x4d,0xd7,0x02,0x45,0xa9,0xba,0x4e, -0x12,0xaa,0x61,0xfd,0x06,0x0e,0xc4,0x4e,0x89,0xd4,0x4a,0x4a, -0xd4,0x9d,0x69,0x18,0x73,0x63,0x30,0xe6,0x26,0x85,0x51,0x27, -0xd6,0xba,0xc1,0x48,0x69,0xb5,0x6e,0x30,0x1a,0x7e,0x95,0x54, -0xb3,0x61,0x2c,0x00,0x9d,0x06,0x89,0x46,0xfa,0x7d,0x46,0x02, -0x20,0xdd,0x56,0xa9,0xe9,0x36,0x7c,0xe9,0x80,0x2f,0x5d,0xab, -0xd4,0x49,0x38,0x99,0x49,0x17,0x3a,0xc7,0x05,0x0f,0x7c,0xab, -0x0e,0x16,0xfa,0xc5,0x82,0x05,0x0f,0x05,0x52,0x5f,0x76,0xa8, -0x4b,0xc3,0x7a,0xbd,0x1d,0x8f,0x42,0xff,0x40,0x72,0xc1,0xfa, -0x78,0x72,0xe7,0x26,0xf6,0xe9,0x4a,0x27,0x13,0x76,0x65,0x92, -0xae,0xa5,0x14,0xd8,0x91,0x45,0x38,0xb1,0x7f,0x82,0x7c,0xf7, -0x4e,0xf1,0x54,0x4a,0x10,0xbe,0x5a,0x89,0xf8,0x8a,0x50,0x2b, -0x42,0x09,0xf8,0x02,0x00,0x5f,0x60,0xe3,0xbf,0xc0,0xee,0x9f, -0xfe,0x96,0x2d,0xe3,0xbf,0x80,0xe0,0x1c,0x4a,0x70,0x16,0xb2, -0xec,0x9d,0xde,0xac,0x15,0xf5,0xfd,0x08,0xb5,0x4c,0x87,0xbc, -0x8b,0x1e,0xdc,0x38,0x6f,0x62,0xaf,0x7b,0x76,0xc5,0x6f,0x48, -0x82,0x05,0xf3,0xd7,0xdd,0xfd,0xf2,0x35,0xdd,0xf1,0x61,0x5a, -0x37,0x48,0x4b,0x3c,0x00,0x7e,0xd4,0x31,0xd7,0x54,0xad,0x89, -0x12,0xec,0x77,0xa9,0xad,0x80,0x1e,0xb7,0x4f,0xae,0x3b,0x23, -0xf9,0x2c,0xed,0x35,0xfd,0xd2,0xf6,0x9e,0x16,0x52,0x3e,0x2b, -0xa9,0x0b,0xa5,0xf2,0x59,0x96,0x78,0x3c,0xa5,0x88,0xf3,0x59, -0x73,0x74,0x3e,0xcb,0xe3,0xf8,0x8c,0x0c,0xa7,0xd7,0x86,0xd3, -0x6b,0xc3,0xf9,0x59,0xe5,0xb4,0x12,0x60,0xff,0x32,0xe7,0xb4, -0x7a,0x70,0x00,0x13,0xf1,0x3c,0xe5,0x34,0xf0,0x7c,0x7a,0x79, -0xad,0x78,0x38,0x53,0x4c,0x95,0xd7,0x4a,0x0e,0xa4,0xca,0x35, -0xec,0x33,0x52,0x08,0x46,0x9f,0xb8,0x56,0x6b,0x68,0x8f,0x33, -0xd2,0xc5,0xb2,0x91,0x66,0xcb,0x46,0x1a,0x65,0x3e,0x58,0x36, -0xd2,0x78,0xe6,0x12,0x79,0x02,0x5e,0x47,0x51,0x9d,0x6a,0xaa, -0x8a,0x58,0xc0,0x4e,0x55,0xa9,0x3c,0xd5,0x01,0xf1,0x58,0xca, -0x08,0xb5,0x56,0x5f,0xcc,0xb5,0x31,0x36,0x09,0x28,0x99,0x69, -0xe7,0x99,0x1c,0x7f,0x53,0x79,0xc0,0x99,0xf6,0xdd,0xf5,0x27, -0x99,0x74,0xea,0x9b,0x34,0xe9,0x34,0x36,0x21,0xe7,0xd4,0x5d, -0xb6,0xbe,0x64,0x67,0x9c,0xba,0xeb,0x97,0xae,0xa3,0x72,0x1f, -0xf8,0xf4,0x8c,0xe2,0xf0,0x14,0x53,0x48,0x44,0xe3,0x52,0x77, -0xbe,0x0f,0x74,0x15,0x1f,0x90,0x3e,0xcf,0x16,0xb7,0x0a,0xfa, -0x0e,0x9d,0x87,0x6c,0x4b,0xa6,0x9d,0x0d,0x2a,0xb5,0x93,0x45, -0xeb,0xed,0x64,0xd1,0x24,0x9c,0xcc,0xa4,0xc7,0x71,0xa9,0x21, -0x9d,0x0d,0xd2,0x8a,0x3d,0xd3,0x9d,0x05,0x9a,0xe9,0x64,0x81, -0xba,0x29,0x75,0x9d,0x39,0x3a,0xa9,0xb4,0x50,0x4c,0x79,0x3b, -0x69,0x21,0x5b,0x76,0xcc,0x2d,0x2c,0x3b,0x33,0x4e,0x43,0x76, -0x3e,0x75,0x6e,0x28,0x41,0xdc,0xb7,0x54,0x3f,0x9c,0x54,0x88, -0x94,0x7d,0xd9,0xc7,0xf6,0xa5,0x50,0xdc,0x2d,0x54,0x6a,0x88, -0xb0,0x1a,0xb4,0x6d,0x67,0xd0,0xa6,0x7d,0x90,0xd2,0x3d,0x6c, -0x3b,0x83,0x94,0x08,0x92,0x3a,0xe5,0xf3,0x7f,0x5f,0x96,0x27, -0x25,0x78,0x9c,0x2c,0x8f,0x14,0x77,0x5a,0x9f,0x98,0x9b,0xe4, -0xdf,0xe1,0xa9,0xcf,0x14,0x7f,0x52,0x9f,0x24,0xbb,0x54,0xcc, -0x72,0xbe,0x8b,0x79,0x96,0xb3,0x2e,0x73,0xa8,0x1a,0x8b,0x1e, -0xea,0x9a,0xa9,0x3b,0x5a,0xdd,0x18,0xed,0xba,0x31,0x5d,0xdd, -0x98,0xee,0xfa,0xac,0x8f,0xfb,0xe7,0x93,0xa6,0xa3,0xe3,0x93, -0x45,0x5a,0xa7,0x9a,0x5d,0xaf,0xf6,0x1e,0xec,0x51,0x07,0xee, -0x8e,0xa3,0xeb,0x7e,0xb4,0x1f,0x88,0xbd,0x62,0xcf,0x81,0xe4, -0x98,0xaa,0x6f,0x3f,0x0c,0xe4,0xdf,0xdd,0x19,0x4a,0x1f,0xcf, -0x4c,0xa3,0x35,0xaf,0x43,0xc5,0x64,0x67,0xcd,0x2b,0x38,0x57, -0xf9,0xce,0x34,0x23,0x98,0x51,0xd4,0xed,0x47,0xfb,0x0c,0x6f, -0xd6,0x60,0xaf,0xfa,0xba,0x91,0xa9,0x6f,0x9a,0x45,0xf6,0xcc, -0xed,0x90,0x9e,0x10,0xad,0xde,0x19,0x5e,0x24,0x2b,0x02,0x43, -0x4a,0x0b,0x86,0x8c,0xcf,0x3a,0x7f,0xe0,0xdc,0xca,0x91,0x17, -0x8e,0x2f,0x2c,0x1c,0x7f,0xe1,0xc8,0xca,0xb9,0x03,0xcf,0xcf, -0x1a,0x3f,0xa4,0xa0,0x74,0x48,0xa0,0xeb,0x81,0x0b,0x8c,0xd2, -0xf3,0x9e,0xbe,0xc7,0x7b,0xde,0x75,0x5f,0xaa,0xbd,0xf2,0xc1, -0xd0,0xf9,0xd9,0x65,0xe7,0x4c,0x19,0x3a,0xb6,0xfe,0xe2,0xd2, -0xd2,0x8b,0xeb,0xc7,0x0e,0x9d,0x72,0x4e,0x59,0xf6,0xf9,0xa1, -0x07,0xaf,0xac,0xfd,0xd2,0x75,0xe7,0x79,0xef,0x31,0xae,0x19, -0x50,0x56,0x14,0x28,0x2c,0x28,0x19,0x51,0xaa,0xaa,0x51,0xd5, -0x95,0x8e,0x28,0x29,0x28,0x0c,0x14,0x95,0x75,0xfd,0xb5,0x52, -0x3e,0x77,0xd1,0x47,0x53,0x1a,0xe7,0x96,0xcf,0xac,0x19,0x9d, -0x3f,0x6a,0x70,0xf6,0x88,0x0b,0x17,0x9f,0x7f,0xfe,0xe2,0x0b, -0x47,0x64,0x0f,0x1e,0x59,0x30,0xba,0x66,0x66,0xf9,0xdc,0x86, -0x6a,0x1d,0x47,0x4d,0xb2,0x3a,0x53,0x26,0xc8,0x97,0x60,0x33, -0xab,0xc4,0x03,0xea,0xf3,0x50,0x53,0x44,0x35,0x7f,0x2d,0xf5, -0x39,0x31,0xd2,0xa1,0xcd,0x78,0x85,0xe8,0xf1,0xdd,0xbf,0x59, -0xda,0x8d,0x58,0xc9,0x7f,0x64,0x54,0x7f,0xc4,0xd4,0xdb,0xa9, -0xbf,0x48,0xd0,0x07,0x67,0x6a,0x6d,0xf9,0x40,0xfe,0x32,0x96, -0x87,0x7e,0xf1,0xc8,0xcb,0xd4,0x2a,0xa6,0xb3,0xf1,0x38,0xfb, -0x1c,0xce,0x54,0xf4,0x95,0x21,0xbd,0x15,0x7d,0x8b,0x82,0xc0, -0xed,0xb8,0xbe,0xf1,0xe8,0xef,0x3b,0xcc,0xa3,0x7f,0x29,0xb1, -0xdb,0x7d,0x45,0x80,0x94,0x40,0xc9,0xac,0xaa,0xd1,0xbd,0xde, -0x78,0xa3,0xd7,0xe8,0xaa,0x59,0x25,0x39,0xd9,0xa9,0x7d,0x7b, -0x4f,0xbf,0x6b,0xfe,0x84,0x09,0xf3,0xef,0x9a,0xde,0xbb,0x6f, -0x6a,0xf6,0xd1,0xaf,0x16,0xd7,0x5c,0x53,0xd9,0xed,0x76,0x4e, -0xe5,0x35,0x35,0xc5,0xf2,0xea,0xe0,0xd8,0x69,0x23,0x97,0x8f, -0x9c,0x36,0x36,0x68,0xde,0x60,0x18,0x13,0xe6,0x7f,0xf5,0xc2, -0x0b,0xbf,0x3a,0x7f,0x82,0x61,0xdc,0x60,0x5a,0x63,0xae,0xae, -0x2d,0x4e,0xbc,0x59,0x5c,0x7b,0x0d,0xf9,0xe3,0xf0,0x3e,0x22, -0x2a,0x5f,0x91,0xa2,0x84,0xef,0x2a,0x9a,0xf5,0xa6,0xce,0x0d, -0xf0,0xd9,0x55,0x7c,0x2e,0x45,0x86,0x68,0xe0,0x73,0x13,0x38, -0xbd,0x8b,0xcf,0x53,0xc4,0xd9,0x62,0x0d,0x9f,0xab,0x35,0x11, -0x3b,0xf8,0x3c,0x15,0x41,0xe1,0x11,0x3e,0xf7,0x8a,0x27,0x8d, -0x42,0x3e,0x4f,0x13,0xfd,0x8c,0x97,0xf8,0xbc,0x97,0xf8,0x82, -0xb1,0x95,0xcf,0x7b,0x8b,0x90,0xac,0xe2,0xf3,0x74,0x31,0x54, -0xda,0x6d,0xf5,0x31,0x0a,0xe5,0xc3,0x7c,0x9e,0x21,0x2a,0xcd, -0xe7,0xf8,0x3c,0x47,0x34,0x98,0x61,0x7d,0x6e,0x08,0x31,0x34, -0xe5,0x3a,0x3e,0x37,0x70,0xfe,0x35,0x3e,0x97,0x62,0x58,0xca, -0xcf,0xf9,0xdc,0xc4,0xfd,0x16,0x3e,0x4f,0x11,0x95,0x29,0x07, -0xc0,0x32,0x2b,0x10,0x3b,0x7f,0x51,0xac,0x12,0x4b,0xc4,0x22, -0xb1,0x18,0xbd,0x2b,0x14,0x21,0xc4,0x70,0xe5,0xe8,0x5d,0xa1, -0x98,0x06,0xce,0x9a,0x81,0xa3,0x2a,0xb5,0x0a,0xe5,0x46,0xe3, -0x7c,0xb2,0x58,0x8a,0x7f,0x85,0xae,0x37,0x56,0xd3,0x55,0x3d, -0x8e,0xf5,0x38,0xde,0x84,0xfd,0x42,0x94,0xb4,0xdf,0x9d,0x89, -0xd2,0xf5,0xe2,0x16,0x9c,0x5d,0x26,0xea,0xc4,0x72,0x94,0x9a, -0x85,0xeb,0x45,0x88,0x3e,0x96,0xe2,0x7a,0x95,0xa8,0x40,0xd9, -0x90,0x38,0xc7,0x29,0x6f,0x9f,0xd9,0xef,0xd9,0x6f,0x95,0x24, -0xbc,0xd7,0x73,0xfd,0x85,0x09,0x25,0x2f,0x27,0xb8,0x56,0x03, -0xde,0x15,0x78,0x5e,0xc8,0x2d,0x9e,0x5e,0x2b,0xc5,0xb8,0x37, -0x02,0xd7,0x4b,0xa8,0x9d,0x3a,0x6c,0x0d,0xb8,0x53,0x87,0x1e, -0xd7,0x8b,0x65,0xf4,0xc6,0x0d,0xb8,0xb7,0x42,0x7c,0x21,0x09, -0xf6,0x46,0x31,0x9e,0x16,0xd1,0xdb,0x0d,0x04,0x95,0xc2,0x95, -0xaa,0x4d,0xc1,0xb5,0x8c,0x60,0xf8,0x22,0xce,0xae,0x47,0xfb, -0xab,0xa8,0xd4,0x42,0xec,0x17,0xa0,0xac,0x86,0x5d,0xb5,0x79, -0x33,0xd5,0xb6,0x14,0x4f,0x6e,0xc6,0x5d,0xd5,0xee,0x68,0xb4, -0xb3,0x82,0xee,0x14,0xa2,0x3d,0x55,0x6e,0x21,0x6a,0xfa,0x22, -0xce,0x97,0x00,0x9a,0x7a,0xa2,0xd9,0x7c,0xfc,0x53,0xad,0xdc, -0x40,0x50,0xcc,0xc4,0xf3,0x46,0xa2,0xe2,0x4d,0xd4,0x66,0x21, -0xd5,0xb3,0x0a,0xc7,0x8b,0x70,0xad,0xee,0xe8,0x52,0x4b,0x70, -0xb7,0x81,0x9f,0xd8,0x25,0x67,0xa1,0x85,0xd5,0x04,0xab,0xc2, -0xc8,0x72,0xe2,0x80,0x06,0xf4,0x6e,0x22,0x2c,0x60,0x29,0x60, -0x52,0xff,0x46,0xa3,0x35,0x0d,0xd1,0x32,0x17,0x3c,0xa3,0xd1, -0x93,0x15,0xb8,0x93,0xfc,0x8d,0x25,0x78,0x67,0x99,0x53,0x66, -0x36,0x4a,0x69,0x1c,0xd7,0x52,0x0d,0x0d,0x44,0x5f,0x85,0xd7, -0x06,0x94,0xae,0x23,0xcc,0xd9,0x54,0x58,0x4a,0x38,0xaa,0x27, -0xfc,0x68,0x7c,0x36,0x52,0x9b,0x1a,0xee,0x06,0xd4,0x54,0x4f, -0x6f,0x4f,0x43,0xef,0x0a,0xc5,0x25,0x68,0xb9,0x9e,0x7a,0x12, -0xab,0xf9,0xa2,0xb8,0x1a,0x54,0xdf,0x13,0x79,0xa6,0x1c,0x90, -0x95,0x13,0xff,0xc7,0x20,0x8b,0x6f,0x37,0xc6,0x13,0x0a,0x53, -0x4b,0x88,0x7f,0xe6,0x13,0x8e,0x0a,0x89,0x52,0x0a,0x0e,0xcd, -0x31,0xb5,0xa0,0xc7,0xa5,0x74,0xde,0x00,0x1c,0x14,0x26,0xe0, -0x63,0x35,0xea,0x54,0xb4,0x5f,0x49,0x92,0x35,0x9a,0x60,0x58, -0xaa,0x7e,0x3f,0x14,0x77,0x17,0xe1,0xf9,0x25,0x78,0xff,0xa2, -0xd3,0x7a,0xe7,0x02,0x5c,0xdf,0x4c,0x3c,0x58,0x07,0x5f,0x51, -0x3d,0x9b,0x8f,0xb3,0x05,0xe0,0x89,0x12,0xe2,0xb8,0x65,0x78, -0x5f,0xf1,0xc8,0x22,0x94,0xf9,0x02,0x9e,0xae,0xc0,0x99,0xea, -0xd1,0x02,0xa6,0xbc,0xea,0x8b,0x92,0x6e,0xc5,0x37,0xaa,0x05, -0x25,0x73,0xea,0x8d,0x1b,0xf1,0xae,0xc6,0xfb,0x22,0x50,0x79, -0x19,0xca,0xd6,0x11,0x7f,0xaf,0x86,0xd7,0xa0,0xca,0xa9,0x7a, -0x35,0x1e,0x96,0x12,0x04,0x0a,0xb3,0x0b,0xa8,0x4c,0x3d,0x61, -0xe1,0xc4,0x65,0x14,0x1c,0x4b,0xe9,0x6a,0x31,0xb7,0xb4,0x9c, -0xe0,0x9d,0xcf,0x34,0xbe,0x95,0x8e,0x2b,0xf0,0x64,0x05,0xe1, -0xe5,0x78,0x65,0x14,0xdf,0x6a,0x9e,0x5e,0x4e,0x14,0xe8,0xa9, -0x4d,0xa5,0xcf,0x6e,0x25,0xfe,0x6f,0x80,0xde,0xa7,0x3f,0xeb, -0x27,0xea,0x9b,0x94,0xdd,0xff,0xcc,0x27,0x68,0x6e,0xaf,0x84, -0x66,0xad,0x86,0x8e,0xad,0x01,0xb6,0xa7,0x02,0xdb,0xd3,0xc4, -0x74,0x23,0xc5,0xf0,0x88,0x0b,0x81,0xfb,0x19,0xe2,0x62,0x50, -0x61,0xa6,0x72,0x9f,0xc0,0x89,0xb3,0x11,0xe5,0x5e,0x8e,0xb8, -0xe7,0x0a,0x71,0x25,0x6c,0xcb,0xe7,0xc5,0xd5,0xe2,0x1a,0xf5, -0xf3,0x93,0x2a,0x85,0xa8,0x3e,0x3c,0x0e,0x6b,0x32,0x12,0x5c, -0x58,0xa2,0x3e,0x59,0x4c,0xba,0x38,0xa4,0x16,0x46,0x89,0x31, -0x62,0x2c,0xfc,0xa1,0xf1,0x62,0x82,0xfa,0xc9,0x0c,0x40,0x72, -0x9e,0xc8,0x31,0x52,0x0d,0x2f,0xec,0x56,0x5f,0x95,0x98,0x56, -0x3f,0x40,0xa5,0x06,0xa8,0xc4,0x00,0xd8,0x94,0x22,0x91,0x69, -0xa4,0x89,0xdf,0x89,0xdf,0x43,0x37,0x64,0x89,0x67,0x60,0xaf, -0xfd,0x22,0x68,0xf4,0xa2,0x95,0xc2,0x7f,0x14,0x7f,0x12,0x7f, -0x10,0xcf,0x8a,0x66,0xf1,0x0f,0xf1,0xdf,0x62,0xad,0xf8,0x85, -0x78,0x5a,0xfc,0x14,0x36,0xec,0x09,0x78,0x12,0xbd,0x61,0x77, -0x3e,0x07,0xaf,0xf5,0x5a,0xf8,0xd8,0xd9,0xe2,0x7c,0xf1,0x17, -0x03,0x01,0x8a,0x78,0x49,0xcc,0x13,0x3b,0xe1,0xf3,0xde,0x23, -0xbe,0x2d,0xbe,0x25,0xbe,0x23,0x7e,0x24,0x1e,0x13,0x5f,0x35, -0x7a,0x1b,0x6a,0x6e,0xeb,0x5d,0xe2,0x45,0xd8,0xb9,0xc9,0xc0, -0x5b,0x86,0xd8,0x27,0x7e,0x20,0xf6,0xab,0x2f,0x6d,0x8a,0xa7, -0xc4,0x7d,0xf0,0xe7,0x07,0x8b,0x1f,0x8a,0x07,0xc4,0xdf,0x8d, -0x3e,0xe2,0x1b,0xe2,0xcf,0xe2,0x67,0xe2,0xbf,0xc4,0xa3,0xe2, -0x7e,0x23,0xc3,0xf0,0x1b,0x99,0xe2,0x61,0xf1,0x57,0xf1,0x35, -0x23,0x4b,0x3c,0x29,0xbe,0x0e,0xdb,0xf8,0xa0,0x91,0x6d,0xe4, -0x18,0x01,0xa3,0xaf,0xd1,0xcf,0xc8,0x35,0xf2,0x8c,0x7c,0xa3, -0xc0,0xe8,0x6f,0x0c,0x30,0x06,0x1a,0xea,0xf3,0xee,0x85,0xc6, -0x60,0x63,0x88,0x51,0x64,0x0c,0x15,0x2f,0x88,0xbf,0x89,0x25, -0xc6,0x59,0xc6,0x30,0x70,0xed,0x52,0x63,0xb8,0xb8,0xde,0x28, -0x36,0x46,0x18,0x67,0x8b,0xe5,0xc6,0x48,0xb1,0xcc,0x18,0x65, -0x94,0x18,0xea,0x37,0x33,0xca,0x8c,0x72,0x23,0x64,0x54,0x18, -0x95,0xc6,0x18,0x63,0xac,0x31,0xce,0x18,0x6f,0x4c,0x30,0x26, -0x1a,0xe7,0x18,0xe7,0x1a,0xe7,0x19,0x9f,0x33,0xce,0x37,0x26, -0x19,0x93,0x8d,0x2a,0x63,0x8a,0x51,0x6d,0xd4,0x18,0xb5,0xc6, -0x54,0xe3,0x02,0x63,0x9a,0x31,0xdd,0xb8,0xd0,0xb8,0x48,0x3c, -0x6e,0xcc,0x10,0x5d,0xb0,0xa5,0x2b,0x8c,0x8b,0x8d,0x4b,0x8c, -0x99,0xb0,0xa4,0xbb,0xc5,0x4a,0xe3,0x52,0x63,0x96,0xd2,0x06, -0xc6,0x65,0xc6,0x6c,0x71,0xa3,0x31,0xc7,0xb8,0xdc,0x98,0x6b, -0x5c,0x61,0x5c,0x69,0x5c,0x65,0x7c,0xde,0xb8,0xda,0xb8,0xc6, -0xb8,0x56,0x1c,0x36,0xe6,0x19,0xd7,0x19,0x75,0xc6,0x7c,0x63, -0x81,0xb1,0xd0,0xa8,0x37,0xbe,0x60,0x2c,0x12,0x6f,0x8b,0x06, -0x63,0xb1,0xb1,0x04,0x32,0x73,0xb3,0x01,0xf9,0x32,0x6e,0x30, -0x96,0x1a,0xcb,0x8c,0xe5,0xc6,0x0a,0x63,0xa5,0x71,0xa3,0xb1, -0xca,0x58,0x6d,0x34,0x18,0x8d,0xc6,0x4d,0xc6,0xcd,0xc6,0x2d, -0xc6,0x17,0xc5,0xfb,0xc6,0xad,0xc6,0x97,0x8c,0xdb,0xc4,0x2d, -0xc6,0xed,0xc6,0x1d,0xe2,0x8b,0xc6,0x97,0x8d,0x3b,0xc5,0x97, -0xc4,0x6d,0xc6,0x57,0xc4,0xad,0xc6,0x5d,0xc6,0x57,0x8d,0xaf, -0x89,0x9f,0x18,0x5f,0x17,0xb7,0x1b,0x77,0x1b,0xdf,0x30,0xee, -0x31,0xbe,0x69,0x7c,0xcb,0xf8,0xb6,0xf1,0x1d,0xe3,0x5e,0xe3, -0xbb,0xc6,0x7d,0xc6,0xf7,0xc4,0x6f,0x8d,0xef,0x1b,0xf7,0x1b, -0x3f,0x30,0x7e,0x28,0x3e,0x10,0x47,0x8d,0x07,0x8c,0x07,0x8d, -0x87,0xc4,0x37,0x8d,0x87,0x8d,0xff,0x30,0x1e,0x31,0xfe,0xd3, -0x78,0x54,0xec,0x15,0x77,0x18,0x3f,0x32,0x1e,0x13,0x77,0x8a, -0xaf,0x18,0x3f,0x16,0x5f,0x36,0x1e,0x37,0x7e,0x62,0x3c,0x61, -0xfc,0xd4,0xf8,0x99,0xf1,0x5f,0xc6,0x93,0xc6,0x53,0xc6,0xcf, -0x8d,0x5f,0x18,0x4f,0x1b,0xcf,0x18,0xbf,0x34,0x7e,0x65,0xfc, -0xda,0xf8,0x8d,0xd1,0x64,0xfc,0xd6,0xf8,0x9d,0xf1,0x7b,0x11, -0x36,0xfe,0x20,0xd6,0x18,0xcf,0x1a,0x7f,0x34,0xfe,0x64,0x3c, -0x67,0xfc,0x59,0xb4,0x1b,0x6b,0xc4,0x3a,0xe3,0x79,0xe3,0x2f, -0xe2,0x9f,0x62,0xbe,0xf1,0x57,0xf1,0x2b,0xe3,0xbf,0x8d,0xb5, -0xc6,0x0b,0x62,0x81,0xf1,0x37,0xf1,0x6b,0xe3,0x45,0xe3,0xef, -0x46,0xb3,0xf1,0x0f,0xe3,0x25,0xe3,0x9f,0xc6,0xcb,0xc6,0x3a, -0xe3,0x15,0xe3,0x5f,0xe2,0x7b,0xc6,0xab,0xe2,0x98,0xb0,0xc4, -0x42,0xe3,0x35,0xa3,0xc5,0x78,0xdd,0x58,0x2f,0x76,0x89,0x7a, -0xe3,0x0d,0xe3,0x4d,0xf1,0xb2,0x78,0xc5,0xd8,0x60,0x6c,0x14, -0xff,0x32,0xde,0x32,0x36,0x19,0x6f,0x1b,0xad,0xc6,0x3b,0xc6, -0x66,0x63,0x8b,0xb1,0xd5,0xd8,0x66,0xbc,0x2b,0x0e,0x19,0xef, -0x19,0xdb,0x8d,0x7f,0x1b,0x6d,0xc6,0xfb,0xe2,0x55,0x63,0x87, -0xf1,0x81,0x78,0x4d,0xb4,0x88,0x23,0xc6,0x87,0xe2,0x75,0xa3, -0xdd,0xd8,0x69,0xec,0x32,0x76,0x1b,0x1f,0x19,0x61,0x63,0x8f, -0xb1,0xd7,0xd8,0x67,0xec,0x37,0x3a,0x8c,0x03,0xc6,0x41,0xd1, -0x66,0x74,0x1a,0x1f,0x1b,0x11,0xf8,0x54,0x9f,0x88,0xf5,0xc6, -0x21,0xe3,0xb0,0x78,0x43,0x2c,0x32,0x8e,0x88,0x0d,0x46,0xd4, -0x38,0x6a,0x1c,0x13,0xdf,0x37,0xba,0xc4,0x6f,0x0c,0x4b,0x0a, -0x69,0x48,0x29,0x4d,0x99,0x22,0x3d,0x32,0x55,0x7a,0x65,0x9a, -0xec,0x25,0x9a,0xa4,0x4f,0xf6,0x96,0xe9,0xb2,0x0f,0xfc,0xb7, -0xa8,0xcc,0x90,0x7e,0x99,0x29,0xb3,0x64,0xb6,0xcc,0x91,0x01, -0xb1,0x47,0x6c,0x94,0x7d,0x65,0x3f,0xf1,0x96,0x58,0x2c,0x73, -0xc5,0x26,0x99,0x27,0xf3,0x65,0x81,0xec,0x2f,0x07,0xc8,0x81, -0x32,0x28,0x07,0xc9,0x42,0x39,0x58,0x0e,0x91,0x45,0x72,0xa8, -0x3c,0x4b,0x0e,0x93,0xc3,0x65,0xb1,0x1c,0x21,0xcf,0x96,0x23, -0xc5,0x47,0x72,0x94,0x2c,0x11,0xcf,0xcb,0xd1,0xb2,0x54,0x96, -0xc9,0x72,0xf1,0xa1,0x0c,0x89,0x87,0xc4,0xcf,0xc5,0x23,0xe2, -0x3f,0xc4,0x8f,0x65,0x85,0xac,0x94,0x63,0xe4,0x58,0x39,0x4e, -0x8e,0x97,0x13,0xe4,0x44,0x79,0x8e,0x3c,0x57,0x9e,0x27,0x3f, -0x27,0xcf,0x97,0x93,0xe4,0x64,0x78,0x82,0xff,0x29,0xa7,0xc8, -0x6a,0x59,0x23,0x6b,0xe5,0x54,0x79,0x81,0x9c,0x26,0xa7,0xcb, -0x0b,0xe5,0x45,0x72,0x86,0xbc,0x58,0x5e,0x22,0x67,0xca,0x4b, -0xe5,0x2c,0x79,0x99,0x9c,0x2d,0xe7,0xc8,0xcb,0xe5,0x5c,0x79, -0x85,0xbc,0x52,0x5e,0x25,0x3f,0x2f,0xaf,0x96,0xd7,0xc8,0x6b, -0xe5,0x3c,0x79,0x9d,0xac,0x93,0xf3,0xe5,0x02,0xb9,0x50,0xd6, -0xcb,0x2f,0xc8,0x45,0x72,0xb1,0x5c,0x22,0xaf,0x97,0x37,0xc8, -0xa5,0x72,0x99,0x5c,0x2e,0x57,0xc8,0x95,0xf2,0x46,0xb9,0x4a, -0xae,0x96,0x0d,0xb2,0x51,0xde,0x24,0x6f,0x96,0xb7,0xc8,0x2f, -0xca,0x5b,0xe5,0x97,0xe4,0x6d,0xf2,0x76,0x79,0x87,0xfc,0xb2, -0xbc,0x53,0x7e,0x45,0xde,0x25,0xbf,0x2a,0xbf,0x26,0xbf,0x2e, -0xef,0x96,0xdf,0x90,0xf7,0xc8,0x6f,0xca,0x6f,0xc9,0x6f,0xcb, -0xef,0xc8,0x7b,0xe5,0x77,0xe5,0x7d,0xf2,0x7b,0xf2,0xfb,0xf2, -0x7e,0xf9,0x03,0xf9,0x43,0xf9,0x80,0x7c,0x50,0x3e,0x24,0x1f, -0x96,0xff,0x21,0x1f,0x91,0xff,0x29,0x1f,0x95,0x3f,0x92,0x8f, -0xc9,0x1f,0xcb,0xc7,0xe5,0x4f,0xe4,0x13,0xf2,0xa7,0xf2,0x67, -0xf2,0xbf,0xe4,0x93,0xf2,0x29,0xf9,0x73,0xf9,0x0b,0xf9,0xb4, -0x7c,0x46,0xfe,0x52,0xfe,0x4a,0xfe,0x5a,0xfe,0x46,0x36,0xc9, -0xdf,0xca,0xdf,0xc9,0xdf,0xcb,0x3f,0xc8,0x67,0xe5,0x1f,0xe5, -0x9f,0xe4,0x73,0xf2,0xcf,0x72,0x8d,0x7c,0x5e,0xfe,0x45,0xfe, -0x55,0xfe,0xb7,0x5c,0x2b,0x5f,0x90,0x7f,0x93,0x2f,0xca,0xbf, -0xcb,0x66,0xf9,0x0f,0xf9,0x92,0xfc,0xa7,0x7c,0x59,0xae,0x93, -0xaf,0xc8,0x7f,0xc9,0x57,0xe5,0x6b,0xb2,0x45,0xbe,0x2e,0xd7, -0xcb,0x37,0xe4,0x9b,0x72,0x83,0xdc,0x28,0xdf,0x92,0x9b,0xe4, -0xdb,0xb2,0x55,0xbe,0x23,0x37,0xcb,0x2d,0x72,0xab,0xdc,0x26, -0xdf,0x95,0xef,0xc9,0xed,0xf2,0xdf,0xb2,0x4d,0xbe,0x2f,0x77, -0xc8,0x0f,0xe4,0x87,0xb2,0x5d,0xee,0x94,0xbb,0xe4,0x6e,0xf9, -0x91,0x0c,0xcb,0x3d,0x72,0xaf,0xdc,0x27,0xf7,0xcb,0x0e,0x79, -0x40,0x1e,0x94,0x9d,0xf2,0x63,0x19,0x91,0x9f,0xc8,0x43,0xf2, -0xb0,0x3c,0x22,0xa3,0xf2,0xa8,0x3c,0x26,0xbb,0xa4,0x65,0x0a, -0xd3,0x30,0xa5,0x69,0x9a,0x29,0xa6,0xc7,0x4c,0x35,0xbd,0x66, -0x9a,0xd9,0xcb,0xf4,0x99,0xbd,0xcd,0x74,0xb3,0x8f,0x99,0x61, -0xfa,0xcd,0x4c,0x33,0xcb,0xcc,0x36,0x73,0xcc,0x80,0xd9,0xd7, -0xec,0x67,0xe6,0x9a,0x79,0x66,0xbe,0x59,0x60,0xf6,0x37,0x07, -0x98,0x03,0xcd,0xa0,0x39,0xc8,0x2c,0x34,0x07,0x9b,0x43,0xcc, -0x22,0x73,0xa8,0xe8,0x10,0x07,0xc4,0x41,0xf3,0x2c,0x73,0x98, -0x39,0xdc,0x2c,0x36,0x47,0x98,0x67,0x9b,0x23,0xcd,0x51,0x66, -0x89,0x39,0xda,0x2c,0x35,0xcb,0x4c,0xc4,0xf0,0x66,0x85,0x59, -0x29,0x3a,0xcd,0x31,0xe6,0x58,0xf1,0xb1,0x88,0x98,0xe3,0xcc, -0xf1,0xe6,0x04,0x73,0xa2,0x79,0x8e,0x79,0xae,0x79,0x9e,0xf9, -0x39,0xf3,0x7c,0x73,0x92,0x39,0xd9,0xac,0x32,0xa7,0x98,0xd5, -0x66,0x8d,0x59,0x6b,0x4e,0x35,0x2f,0x30,0xa7,0x99,0xd3,0xcd, -0x0b,0xcd,0x8b,0xcc,0x19,0xe6,0xc5,0xe6,0x25,0xe6,0x4c,0xf3, -0x52,0x73,0x96,0x79,0x99,0x39,0xdb,0x9c,0x63,0x5e,0x6e,0xce, -0x35,0xaf,0x30,0xaf,0x34,0xaf,0x32,0x3f,0x6f,0x5e,0x6d,0x5e, -0x63,0x5e,0x2b,0xde,0x31,0xe7,0x89,0xcd,0x62,0xab,0xf8,0xae, -0x78,0x4f,0xdc,0x0b,0x6f,0xb4,0x55,0xfc,0x5b,0x6c,0x31,0xaf, -0x13,0xdb,0xcc,0x3a,0x73,0xbe,0xb9,0x40,0xbc,0x2b,0xb6,0x9b, -0x0b,0xcd,0x7a,0xf3,0x0b,0xe6,0x22,0x73,0xb1,0xb9,0xc4,0xbc, -0xde,0xbc,0xc1,0x5c,0x6a,0x2e,0x33,0x97,0x9b,0x2b,0xcc,0x95, -0xe6,0x8d,0xe6,0x2a,0x73,0xb5,0xd9,0x60,0x36,0x9a,0x37,0x99, -0x37,0x9b,0xb7,0x98,0x5f,0x34,0x6f,0x35,0xbf,0x64,0xde,0x66, -0xde,0x6e,0xde,0x61,0x7e,0xd9,0xbc,0xd3,0xfc,0x8a,0x79,0x97, -0xf9,0x55,0xf3,0x6b,0xe6,0xd7,0xcd,0xbb,0xcd,0x6f,0x98,0xf7, -0x98,0xdf,0x34,0xbf,0x65,0x7e,0xdb,0xfc,0x8e,0x79,0xaf,0xf9, -0x5d,0xf3,0x3e,0xf3,0x7b,0xe6,0xf7,0xcd,0xfb,0xcd,0x1f,0x98, -0x3f,0x34,0x1f,0x30,0x1f,0x34,0x1f,0x32,0x1f,0x36,0xff,0xc3, -0x7c,0xc4,0xfc,0x4f,0xf3,0x51,0xf3,0x47,0xe6,0x63,0xe6,0x8f, -0xcd,0xc7,0xcd,0x9f,0x98,0x4f,0x98,0x3f,0x35,0x7f,0x66,0xfe, -0x97,0xb7,0x71,0xf9,0x92,0xb2,0xb2,0xb2,0x6a,0x6f,0xdd,0xe8, -0xba,0xa5,0x0d,0x65,0xe5,0xde,0x45,0x71,0xc7,0x90,0xef,0xd6, -0xfa,0x55,0x2b,0xf4,0xad,0xd8,0x69,0x48,0xbf,0x35,0xb9,0x9a, -0x8e,0x15,0xe3,0x6a,0xd4,0x31,0x14,0x2a,0x1f,0x43,0xc7,0xb2, -0x8a,0x10,0x1f,0x2b,0x7a,0xd5,0x2d,0x5f,0xd1,0x50,0xbf,0xb4, -0x7e,0x49,0x1d,0xdd,0x29,0x0f,0xe9,0x92,0xe5,0xe5,0x15,0x7c, -0x1c,0x9b,0x52,0xd3,0xb8,0x6a,0x05,0x55,0x53,0x53,0x51,0xab, -0x5f,0x9b,0x5c,0xce,0xc7,0x4a,0x3e,0x8e,0xe5,0xe3,0x78,0x3e, -0x4e,0xe0,0xe3,0x64,0x3e,0x56,0xf1,0xb1,0x9a,0x8f,0xba,0x91, -0xb2,0x2a,0xae,0xa7,0x8a,0xc1,0xa9,0xe2,0xfa,0xaa,0x18,0xcc, -0x2a,0xae,0xaf,0x8a,0xeb,0xab,0xe2,0xfa,0xaa,0xb8,0x9e,0xaa, -0xda,0xd4,0xba,0xf9,0xab,0xea,0x6f,0xaa,0x27,0xf0,0xca,0xa7, -0x50,0xb5,0xe5,0x35,0x1a,0x3c,0x1c,0x2b,0xbc,0x75,0xcb,0xea, -0x16,0xac,0x5a,0xb1,0xdc,0x5b,0xb7,0x62,0xd1,0x8a,0xe5,0xf5, -0x37,0xf8,0xea,0x56,0x2d,0x59,0xbe,0xa8,0x6e,0x41,0x63,0x43, -0x3d,0x17,0xa9,0xd5,0xc7,0xaa,0x71,0x7c,0xe4,0x57,0xab,0x2a, -0xf8,0x38,0x86,0xcb,0xd9,0xc7,0x6a,0x3e,0x72,0x79,0xdd,0x53, -0x1c,0xab,0xd2,0xeb,0xa8,0x5a,0x4d,0x88,0x74,0x0d,0x96,0xbe, -0xe8,0xc3,0xc0,0xe9,0xab,0xac,0xba,0x05,0x4b,0x56,0x2d,0x68, -0x5c,0xf6,0x85,0xa5,0xf5,0xb7,0xe8,0x3b,0xfe,0xba,0x85,0x4b, -0xea,0x57,0xd5,0xaf,0x5e,0xb2,0x3a,0x56,0x5e,0x75,0xc2,0xae, -0x6a,0xd1,0xaa,0x3a,0x77,0x55,0xaa,0x5f,0x7c,0xc5,0xbd,0xb3, -0xaf,0x74,0x1f,0xf5,0x55,0x6f,0xea,0xa9,0x3e,0xcf,0x8c,0xf5, -0xda,0xae,0xb3,0x61,0xc9,0xd2,0x85,0xf1,0x75,0xd6,0xba,0xaf, -0xaa,0xc6,0xc5,0x5d,0x95,0xc7,0x5d,0x55,0xc4,0x5d,0x8d,0x89, -0xab,0x25,0xfe,0xaa,0x3a,0xee,0x2a,0xae,0xce,0xc9,0x13,0xe2, -0xae,0xaa,0x98,0xa7,0xeb,0xea,0x09,0xcc,0xde,0x0b,0x62,0x48, -0xf2,0x2d,0x58,0xb8,0xa2,0xa1,0x6e,0xc1,0x82,0xfa,0xe5,0x0d, -0xa9,0x0b,0x17,0xd4,0xa1,0xbf,0xa9,0xf5,0x84,0xdd,0xd4,0x7a, -0xba,0xf2,0xd5,0x3b,0xcf,0x99,0x66,0x4c,0x93,0xaa,0x2a,0x6f, -0x3d,0x93,0xbf,0x5e,0xa3,0x86,0xef,0x33,0x0d,0xab,0x98,0xf6, -0x53,0x98,0x96,0x53,0x98,0xf6,0x53,0x98,0xf6,0x53,0x88,0xe6, -0x65,0xa1,0x31,0x13,0x7a,0x2f,0x8a,0x81,0x93,0xbe,0x68,0xc1, -0x8a,0x65,0xcb,0xea,0x74,0x83,0xbe,0x45,0x4e,0xdb,0xe9,0x8b, -0x5c,0x24,0xcf,0x5a,0x94,0x48,0xe4,0x6c,0xf7,0x6b,0x4c,0x96, -0xd8,0xcb,0xfa,0x46,0xca,0xe2,0xf9,0x75,0xab,0x7a,0x2f,0x8e, -0xbd,0x9a,0xba,0xc4,0xc5,0xdd,0xd5,0x65,0x0c,0x56,0x15,0x1f, -0x27,0x78,0x97,0x70,0xf7,0x96,0xe8,0xee,0xa5,0x2e,0x21,0xb2, -0xca,0x25,0xd7,0x7b,0x97,0x5c,0xef,0x30,0x79,0x59,0xa8,0x62, -0x5c,0xaa,0xbe,0xec,0x7d,0xbd,0xab,0x1f,0x37,0xb8,0x00,0x4a, -0xbf,0x61,0xd1,0xaa,0xfa,0xfa,0xe5,0x4b,0xeb,0x96,0x2f,0x5c, -0xb2,0x20,0x75,0x29,0x15,0x4e,0x5d,0x4a,0xe8,0x4d,0x5f,0xea, -0x2a,0x97,0xb2,0x14,0x20,0xa7,0x2e,0xd7,0xcf,0x97,0xeb,0xe7, -0xcb,0x5d,0xcf,0x7b,0x2f,0xaf,0x5b,0xb9,0x62,0x75,0xc3,0xaa, -0x15,0x2b,0x17,0xd7,0x9b,0xf5,0xcb,0x17,0xa5,0xae,0x70,0x77, -0x20,0xc4,0x80,0x33,0xfe,0xa7,0xd4,0xf6,0x59,0xb1,0xb8,0x11, -0x8c,0xb9,0xaa,0x71,0xd9,0xd2,0xba,0xc6,0x06,0xef,0x0a,0xdd, -0x9d,0xde,0x2b,0x56,0x2f,0xad,0x5b,0xbd,0x98,0x1a,0xf1,0xac, -0x58,0xbc,0x62,0xd5,0x72,0x5d,0xbe,0x9a,0x3b,0x5e,0xc3,0xf4, -0xa9,0xe6,0x7a,0xaa,0x99,0x8e,0x35,0x4c,0xbf,0x6a,0xfb,0xc8, -0x7c,0x50,0x6d,0x97,0x67,0x19,0xae,0x1e,0x97,0xba,0x4a,0xf7, -0x60,0x95,0xee,0xc1,0x2a,0x57,0x0f,0x52,0x57,0x6b,0x4c,0xad, -0x76,0x61,0x6a,0xb5,0xeb,0xb9,0xee,0xca,0xb8,0xda,0xcc,0x45, -0xf5,0xab,0x96,0x01,0x5d,0xf3,0x97,0xb2,0xd4,0xa6,0x34,0x80, -0x78,0xa9,0x0d,0x54,0xa3,0x46,0x7b,0x79,0x95,0x2e,0x3c,0xb6, -0x22,0xb5,0xd1,0x8d,0x86,0x4a,0x06,0x97,0xc1,0xa9,0x19,0xd7, -0xa7,0x31,0x0e,0x0d,0x8d,0x4c,0xd5,0x46,0x4d,0x55,0x4f,0xa3, -0x92,0xde,0xd4,0x46,0xa2,0xad,0xa7,0x31,0x86,0x8f,0x1a,0xee, -0x5f,0x2d,0xf7,0xb7,0xc6,0xc6,0x0f,0xe3,0xa5,0xa6,0x96,0x1b, -0x1c,0xcb,0xc7,0xf1,0x7c,0x9c,0xc2,0xc7,0xc9,0xa9,0x37,0xeb, -0xce,0xde,0x1c,0xeb,0x6c,0xaf,0x9b,0x6d,0x65,0x94,0x7a,0x33, -0x29,0x9e,0xde,0x5f,0x8c,0x3d,0xe4,0xf6,0xc6,0xa4,0x7e,0x91, -0x1e,0xf1,0x25,0x8b,0x4f,0xed,0x84,0xd4,0x5b,0xa9,0x3a,0xdf, -0xad,0x31,0x81,0x9d,0xec,0x56,0xcf,0xb6,0xee,0x64,0x46,0x9e, -0x1c,0xf2,0x4e,0xe6,0xae,0x4e,0x66,0xf5,0x3c,0x39,0x51,0x3d, -0xb3,0x46,0xaf,0x1a,0xcb,0x47,0x7e,0xb5,0x8a,0x59,0xa9,0x8a, -0x71,0x39,0xd9,0x3e,0x4e,0xe1,0x23,0x97,0xd7,0x06,0x09,0xc7, -0xc9,0xde,0xc9,0x35,0xba,0xaf,0x53,0x5c,0x9a,0x65,0x4a,0x0c, -0xd0,0x6a,0xad,0x59,0xaa,0x01,0x4e,0x5d,0x43,0x6a,0x8d,0x56, -0x30,0x35,0x5a,0xc1,0xd4,0x24,0x2a,0x18,0xae,0x15,0xe6,0xa8, -0x86,0x3b,0x50,0x13,0xa7,0x60,0x18,0x8a,0x2a,0x86,0x7e,0x0a, -0x43,0x33,0xc5,0x96,0x60,0x5b,0x10,0x2a,0x35,0x62,0xc6,0xd7, -0xf6,0x9e,0xea,0x62,0xb7,0xa9,0x6e,0x05,0x33,0xd5,0x69,0x3b, -0xe5,0x02,0xa5,0x1d,0x2e,0x70,0x69,0x87,0x69,0x6e,0xe4,0xda, -0xca,0x6c,0x32,0x1f,0xc7,0x7b,0xa7,0x31,0x6c,0xd3,0x58,0x3b, -0x4c,0xd3,0xda,0x61,0xda,0x74,0xef,0xb4,0xe9,0x9a,0xff,0xf5, -0xa1,0xf7,0x74,0x57,0xe3,0x17,0xba,0x65,0xe1,0x22,0x5d,0xec, -0x22,0x2d,0x26,0x17,0xb9,0x15,0xc1,0x45,0x4a,0x11,0x5c,0xac, -0x9f,0x5f,0xac,0x9f,0x5f,0xec,0x7a,0x6e,0xd6,0x80,0x65,0x2f, -0x71,0x73,0xbd,0xad,0x5c,0x19,0x37,0x53,0x6a,0xfa,0x5c,0x12, -0xc7,0xf5,0x97,0xb0,0xf0,0x5f,0xe2,0x12,0xfe,0x4b,0x5c,0xc2, -0xcf,0xfd,0xaa,0x61,0xdc,0x55,0x73,0x3d,0xd5,0x8c,0xe3,0x1a, -0xc6,0xad,0xad,0x25,0xab,0x99,0x46,0xb6,0xd2,0xb1,0xa5,0xae, -0x7a,0x6c,0xea,0x2c,0x0d,0xf5,0x2c,0x0d,0xf5,0x2c,0x77,0x87, -0x2f,0xd3,0x08,0xb9,0xcc,0x85,0x90,0xcb,0x12,0x84,0xbf,0xbc, -0x66,0x42,0x4d,0xca,0x6c,0x25,0xeb,0xb3,0xdd,0xb2,0x3e,0x99, -0x65,0x3d,0x94,0x3a,0xc7,0xdd,0x6b,0x56,0x3d,0x35,0xb6,0xcc, -0x8f,0xed,0x33,0x27,0xae,0xd7,0x73,0x98,0x46,0x73,0x58,0xd6, -0xe7,0x90,0xac,0xcf,0xd1,0xb2,0x3e,0xc7,0x25,0xeb,0xdc,0x9d, -0x5a,0xee,0x5e,0x8d,0x8d,0x0e,0x46,0x43,0x4d,0x0d,0x37,0x38, -0x86,0x8f,0xe3,0xf8,0xc8,0x3a,0xa8,0x7a,0x42,0xea,0x5c,0xdd, -0xb7,0xb9,0x2e,0x59,0x9f,0xeb,0xc8,0xfa,0x5c,0x2d,0xeb,0x57, -0x76,0x93,0xf5,0xca,0xd4,0x2b,0xdd,0xb2,0xce,0x9c,0x5c,0x3b, -0x3e,0xf5,0x2a,0x2d,0xeb,0x57,0x39,0xfc,0xe9,0xa9,0x5b,0xba, -0x72,0x71,0x5d,0x6f,0xda,0xb3,0x4a,0x9c,0x5f,0xdf,0x50,0xe7, -0x59,0x54,0x07,0xfc,0x79,0x16,0xd6,0x2f,0x6d,0xa8,0xf3,0xd6, -0xaf,0x5c,0xbd,0x64,0xe9,0x8a,0xe5,0x29,0xb7,0xe2,0x81,0xa9, -0x1e,0x36,0x2c,0xc6,0x3e,0x65,0x09,0xea,0xf0,0xdc,0x50,0xb7, -0x72,0x65,0x1d,0x6c,0xcf,0xb2,0xf9,0x0b,0xeb,0xb4,0xd7,0x5a, -0x35,0x45,0x2e,0x6f,0x94,0xb7,0x2c,0x81,0x61,0x58,0xa2,0xb0, -0x64,0xae,0x5a,0xbc,0x22,0x75,0xf5,0x92,0x45,0xcb,0xea,0xca, -0x3d,0x74,0x30,0x1b,0xea,0x1a,0xbd,0x8d,0xba,0x4e,0x73,0xe5, -0xe2,0x25,0xe6,0x02,0x6c,0xb8,0xf4,0xac,0x58,0x56,0xbf,0xa8, -0xce,0x33,0x59,0x81,0x92,0x52,0xa5,0xda,0x99,0xaa,0x80,0xd0, -0xb5,0x4e,0xa8,0xf4,0xd6,0x30,0x18,0x57,0x29,0x30,0x6a,0xf0, -0x78,0x36,0x81,0x31,0x4d,0x81,0x71,0x21,0x81,0x71,0x11,0x81, -0x21,0x67,0x34,0xca,0x8b,0x1b,0xe5,0x15,0x4b,0xc0,0x9d,0x04, -0x81,0x9c,0xb9,0xc4,0x9c,0xb5,0x78,0x85,0xe7,0x32,0x6a,0x7d, -0x36,0x5a,0x9f,0xc3,0xad,0xcf,0x44,0xcb,0x53,0xb0,0xcd,0x5c, -0xbd,0x44,0x37,0x33,0x79,0x82,0x8f,0x50,0xd1,0xb0,0x62,0xf9, -0x8a,0xd5,0x99,0xb1,0x53,0xf6,0xc0,0x18,0x13,0x74,0x2b,0x0d, -0x8d,0xd3,0x49,0x2f,0x85,0x08,0x3a,0x4b,0x57,0x67,0x36,0x75, -0xb2,0xdc,0x17,0xfa,0x31,0x63,0x44,0x5f,0x34,0xba,0xea,0xf2, -0xf3,0x85,0x5d,0x3c,0x90,0x70,0x4d,0x85,0x7c,0x84,0x1f,0x7d, -0x3a,0xd9,0x81,0x2c,0xbd,0xc6,0x0d,0x53,0x8d,0x0d,0xd3,0x34, -0x07,0xa6,0x69,0x2e,0x30,0xd2,0x2f,0x71,0x43,0x30,0xc7,0x0d, -0xc1,0x9c,0xf8,0x16,0x7d,0x97,0x38,0x8d,0x11,0x66,0x2a,0x2b, -0xca,0xfa,0xf0,0x91,0x9d,0x3e,0x7d,0x65,0x1f,0x43,0x7c,0xac, -0xe0,0x63,0x25,0x1f,0xc7,0xf0,0x71,0x2c,0x1f,0xc7,0xf1,0x71, -0x3c,0x1f,0x27,0xf0,0x71,0x32,0x1f,0xab,0xf8,0x38,0x85,0x8f, -0xd5,0x7c,0xac,0xe1,0xa3,0xb6,0x8e,0x95,0x95,0x65,0x7c,0xe4, -0xf6,0x2b,0xb9,0xfd,0x4a,0x6e,0xbf,0x92,0xdb,0xaf,0xe4,0xf6, -0x2b,0xb9,0xfd,0x4a,0x6e,0xbf,0x92,0xdb,0xaf,0xe4,0xf6,0x2b, -0xb9,0xfd,0x4a,0x6e,0xbf,0x92,0xdb,0xaf,0xe4,0xf6,0x2b,0xb9, -0xfd,0x4a,0x6e,0xbf,0x9c,0xdb,0x2f,0xe7,0xf6,0xcb,0xb9,0xfd, -0x72,0x6e,0xbf,0x9c,0xdb,0x2f,0xe7,0xf6,0xcb,0xb9,0xfd,0x72, -0x6e,0xbf,0x9c,0xdb,0x2f,0xe7,0xf6,0x59,0x13,0x55,0xb2,0xf7, -0x51,0x59,0xce,0xed,0x97,0x73,0xfb,0xe5,0xdc,0x7e,0x39,0xb7, -0x1f,0xe2,0xf6,0x43,0xdc,0x7e,0x88,0xdb,0x0f,0x71,0xfb,0x21, -0x6e,0x3f,0xc4,0xed,0x87,0xb8,0xfd,0x10,0xb7,0x1f,0xe2,0xf6, -0x43,0xdc,0x7e,0x88,0xdb,0x0f,0x71,0xfb,0x21,0x6e,0x3f,0xc4, -0xed,0x87,0xb8,0xfd,0x10,0xb7,0x5f,0xcd,0xed,0x54,0xeb,0x38, -0x09,0xd7,0xae,0xa8,0x09,0x77,0xdd,0x3c,0xc2,0xda,0xad,0x72, -0x0c,0xbf,0x33,0x81,0xef,0x4f,0xb0,0xaf,0xed,0xe7,0xdc,0xa7, -0x31,0xf6,0x7b,0x0c,0xeb,0x18,0xee,0x4b,0x35,0xc3,0x32,0x85, -0xfb,0x3a,0x81,0x9f,0x57,0x33,0x4c,0x13,0xb8,0x2f,0x53,0xf8, -0xba,0xc6,0xae,0x97,0xdf,0xab,0xe1,0xf6,0xc6,0x70,0xdf,0x26, -0x70,0x5f,0x27,0xf0,0xf3,0xc9,0xdc,0xee,0x18,0xae,0x67,0xb2, -0x5d,0x9e,0x71,0x33,0x99,0xeb,0xab,0xe1,0x76,0xc7,0xf1,0xf3, -0x1a,0xbb,0x3c,0xd7,0xc7,0x1e,0x5c,0x65,0x2d,0xd7,0x57,0x6b, -0xd7,0xc3,0x38,0x9c,0xcc,0xcf,0xab,0xf8,0x79,0x15,0x3f,0xaf, -0xe5,0xfa,0xab,0xb8,0xfe,0x2a,0xae,0xb7,0x96,0x8f,0x63,0xec, -0xfe,0xf0,0xfb,0x63,0x98,0xa6,0x63,0x6c,0x3c,0x31,0x4d,0xc7, -0x30,0x7e,0xc6,0x30,0x3c,0x55,0x7c,0xac,0xe6,0x7a,0xaa,0xf9, -0x79,0x35,0xe3,0xbb,0x9a,0xf1,0x5b,0x66,0xd3,0x83,0xef,0x4f, -0xb0,0xf1,0x6c,0x3f,0xe7,0xfb,0x0e,0x5d,0xb9,0xfd,0x32,0x9b, -0x3e,0x8c,0xd7,0x29,0x36,0x7d,0xf9,0x79,0x35,0xf7,0x7b,0x02, -0xc3,0x37,0x85,0xeb,0xa9,0xb1,0xeb,0xb5,0xe9,0xc3,0xed,0x95, -0xd9,0xf4,0x61,0xbc,0x4f,0xe0,0xeb,0xc9,0x76,0xfb,0x36,0xbe, -0xed,0xf2,0x36,0x7d,0xb8,0xbe,0x1a,0x6e,0x77,0x1c,0x3f,0xaf, -0xe1,0x76,0x27,0x73,0x39,0xb6,0xba,0x95,0xb5,0x5c,0x5f,0xad, -0x5d,0x8f,0x4d,0x1f,0x3e,0x56,0xf1,0xf3,0x2a,0x7e,0x5e,0xcb, -0xf5,0x57,0x71,0xfd,0x55,0x5c,0x6f,0x2d,0x1f,0xcb,0x98,0x3e, -0x65,0x4c,0x9f,0x32,0x1b,0x3f,0x4c,0x9f,0x32,0xbb,0x9c,0xdd, -0x9e,0x4d,0x1f,0x86,0xab,0x9a,0xf3,0x26,0xe3,0xca,0xf8,0xc8, -0x79,0x95,0x71,0x9c,0x57,0x19,0xc7,0xf9,0x9a,0x71,0xe3,0xf8, -0x68,0x97,0xe7,0x3c,0xcb,0x78,0x7e,0x6f,0x3c,0xe7,0x67,0xc6, -0x73,0x7e,0x66,0x7c,0x05,0x1f,0xb9,0xbe,0xf1,0x5c,0xdf,0x78, -0xae,0x6f,0x3c,0xd7,0x37,0x9e,0xeb,0x1b,0xaf,0xeb,0x2b,0x1f, -0xc3,0xc9,0x24,0x2d,0x7f,0x38,0x8e,0xe1,0xe3,0x58,0x3e,0x8e, -0xe3,0xe3,0x78,0x3e,0xda,0xef,0x4d,0xe6,0x63,0x19,0x1f,0xab, -0xf8,0x38,0x85,0x8f,0xd5,0x7c,0xe4,0xa4,0x95,0x96,0xf7,0xd0, -0x38,0x4e,0x5e,0x8d,0xab,0xe4,0x72,0x13,0xf8,0x7d,0xad,0x2f, -0x70,0x64,0x78,0x34,0x5f,0xe2,0xc8,0x70,0x4c,0x60,0x38,0x26, -0x70,0xfb,0x13,0x18,0x9e,0x2a,0x7e,0x9f,0xf3,0x54,0x55,0x5a, -0x57,0x87,0xaa,0x34,0x7d,0x70,0x5d,0xc6,0xd7,0x0c,0x07,0xe7, -0xb5,0xca,0xab,0xb8,0x9d,0x29,0x5c,0xff,0x14,0xee,0xff,0x04, -0xfb,0xc8,0x78,0xa8,0xe2,0xe7,0x55,0xdc,0x3e,0xe7,0xcf,0xca, -0x39,0x7f,0x56,0x5e,0x65,0x1f,0xab,0x7a,0xbb,0x12,0x37,0x3e, -0x9d,0x70,0x58,0xf0,0xc5,0x55,0x4b,0x7b,0xc5,0xc5,0x4d,0x65, -0x21,0x16,0xd4,0x50,0xd5,0x14,0x0f,0x19,0xde,0x3e,0x71,0xe6, -0x5f,0x3b,0x28,0x2c,0xa4,0x15,0x2c,0x74,0x15,0xcc,0x5c,0x15, -0xcc,0x5c,0x15,0xcc,0x54,0x15,0x2c,0xa4,0x15,0x2c,0xb4,0x15, -0xcc,0x74,0x15,0x2c,0x5c,0x15,0xcc,0x9c,0x15,0x2c,0x3c,0x15, -0x2c,0x54,0x15,0x6c,0xc8,0x2a,0xd8,0x70,0x55,0xb0,0x41,0xaa, -0x60,0xc3,0x51,0xc1,0x06,0xa6,0x82,0x0d,0x4a,0x45,0x68,0xbc, -0xee,0x90,0xf6,0x2b,0xe9,0x94,0x3c,0xcf,0x5e,0x74,0xba,0x78, -0xc5,0x8a,0x1b,0xf4,0x4d,0xc2,0x80,0xd3,0x21,0x2a,0xed,0x5c, -0x91,0x47,0xee,0x5c,0xd1,0xeb,0xfe,0x98,0x4b,0x4b,0x65,0x5d, -0xd7,0x54,0x9d,0xeb,0x9a,0xca,0x67,0xc4,0xae,0x55,0x9b,0x19, -0x76,0x65,0xda,0x51,0x77,0x95,0x26,0x38,0x7c,0x9a,0x1e,0x0b, -0xea,0x56,0xd7,0x67,0xba,0x48,0x43,0x37,0x7a,0x73,0x76,0x4e, -0x9d,0x67,0xc4,0x52,0x3d,0xea,0xd2,0x01,0x91,0xae,0xb2,0xdc, -0x21,0x01,0xdd,0xf1,0xe9,0x64,0x1d,0x9d,0xea,0xf4,0x9f,0x3a, -0x75,0x35,0xae,0x1f,0x51,0x77,0xf5,0x29,0xf3,0x82,0x2a,0x15, -0x63,0x8b,0x79,0xea,0x9a,0x78,0x43,0x03,0x11,0x4b,0x03,0xd2, -0x3b,0xda,0x1f,0x55,0xa7,0xe9,0x4c,0x39,0x57,0x05,0xb1,0x72, -0xfe,0x18,0x2d,0x74,0x35,0x0e,0x41,0x5c,0x8f,0x63,0x78,0xc8, -0x8e,0x23,0x4d,0xfc,0xad,0x18,0xc0,0xd9,0x71,0x44,0xa2,0x5b, -0x81,0x04,0x4a,0x25,0xde,0x8c,0x75,0x31,0x90,0x40,0x33,0xba, -0x99,0x13,0x4f,0x38,0x7d,0x2f,0x9e,0x7a,0x89,0x2f,0xc7,0x80, -0xe6,0x74,0x39,0xb1,0x78,0x4d,0xad,0x0e,0x52,0x11,0xa3,0x96, -0xa9,0xb5,0x4e,0x6a,0xe1,0x9a,0x4f,0xad,0x31,0xb6,0x2c,0x35, -0x21,0x94,0x16,0x01,0xe8,0x3f,0x29,0x6a,0xe8,0x27,0x52,0xd4, -0xc7,0x83,0x27,0x62,0xaf,0x46,0x8f,0xa5,0xf8,0xa3,0xb0,0x84, -0x61,0xa4,0x19,0xb8,0x6f,0x64,0x19,0x39,0xd8,0xf7,0x35,0xf2, -0xb0,0x1f,0x60,0x14,0x62,0x3f,0xc4,0x38,0x07,0xfb,0xf3,0x8c, -0x0b,0xb0,0xbf,0xc8,0xb8,0x18,0xfb,0x4b,0x8d,0x35,0xd8,0xff, -0xd5,0xf8,0x3b,0xf6,0xff,0x30,0xb6,0x61,0xff,0x9e,0xb1,0x1b, -0xfb,0xb0,0xb1,0x17,0xfb,0x0e,0xd9,0x57,0x18,0x6a,0x44,0x0d, -0xfb,0x42,0x89,0x1a,0xe4,0x10,0x39,0x04,0xfb,0xa1,0x72,0x28, -0xf6,0x67,0xcb,0xb3,0xb1,0x2f,0x93,0x65,0xd8,0x57,0xca,0x71, -0xd8,0x4f,0x90,0xa8,0x5f,0x8d,0x96,0x61,0x3f,0x49,0x4e,0xc6, -0x7e,0x8a,0x9c,0x82,0x7d,0x8d,0xac,0xc1,0x7e,0xaa,0x44,0xbb, -0x72,0xba,0x9c,0x8e,0xfd,0x45,0xf2,0x22,0xec,0x67,0xcb,0xd9, -0xd8,0x5f,0x29,0xaf,0xc3,0x7e,0xbe,0x5c,0x80,0xfd,0x17,0xe4, -0x17,0xb0,0x5f,0x2c,0x6f,0xc0,0x7e,0x99,0x5c,0x86,0xfd,0x8d, -0xb2,0x01,0xfb,0x9b,0xe4,0x4d,0xd8,0xdf,0x22,0x6f,0xc1,0xfe, -0x56,0x79,0x2b,0xf6,0x77,0xc8,0x3b,0xb0,0xff,0xaa,0xfc,0x2a, -0xf6,0x5f,0x97,0x77,0x63,0x7f,0x8f,0xfc,0x36,0xf6,0xf7,0xca, -0x7b,0xb1,0xbf,0x4f,0x7e,0x1f,0xfb,0x1f,0xc8,0x07,0xb1,0x7f, -0x58,0x3e,0x8c,0xfd,0x23,0xf2,0x11,0xec,0x1f,0x93,0x8f,0x61, -0xff,0x53,0xf9,0x14,0xf6,0xbf,0x94,0xbf,0xc6,0xfe,0x6f,0xf2, -0x6f,0xd8,0xff,0x43,0xbe,0x8c,0xfd,0x7a,0xb9,0x1e,0xfb,0x37, -0xe5,0x9b,0xd8,0xbf,0x2d,0xb7,0x60,0xbf,0x5d,0xb6,0x61,0xbf, -0x4b,0xee,0xc2,0xfe,0x63,0xf9,0x31,0xf6,0xc7,0xe4,0x31,0x61, -0x98,0x29,0x66,0x0a,0xf6,0xa9,0x66,0x1a,0xf6,0xe9,0x66,0x3a, -0xf6,0xf3,0xcd,0x15,0xc2,0x34,0x6f,0x34,0xbf,0x82,0xfd,0xf7, -0xcd,0xc7,0x84,0x49,0x6b,0xe8,0xd4,0x84,0xec,0xdb,0x8c,0x90, -0x48,0xa9,0xae,0xbd,0x68,0xb6,0x28,0x50,0x82,0x21,0x8a,0x17, -0xad,0xaa,0xbf,0x41,0x8c,0x5d,0x5a,0xd7,0xb0,0x5c,0x54,0xab, -0xdf,0xab,0xa1,0x2f,0x0c,0xa9,0xf9,0x0c,0xa9,0xae,0x2b,0x43, -0x2d,0xcb,0x74,0xae,0x24,0x4d,0x5e,0x96,0x33,0x2e,0xb9,0xa8, -0x50,0x14,0xcc,0xba,0x64,0x46,0xa1,0x18,0xca,0x4f,0x4c,0xd1, -0x8b,0xcf,0x52,0xd4,0x2f,0xa6,0xd3,0x99,0xfa,0x0e,0x71,0xfa, -0x0d,0xf5,0xab,0x96,0x8b,0xe9,0xb4,0x9f,0x49,0xfb,0xcb,0x69, -0x7f,0x35,0xed,0xe7,0xd3,0x7e,0xf1,0xb2,0xba,0x55,0x37,0x88, -0xe5,0xb4,0xbf,0x95,0xf6,0x77,0xd3,0xfe,0x7e,0xda,0x3f,0x46, -0xfb,0xa7,0xb9,0x1f,0x27,0xda,0x03,0x1f,0x04,0x4d,0xca,0xa7, -0x3a,0xf7,0x80,0xbf,0x0b,0x45,0xb1,0x28,0x13,0xe3,0x09,0x23, -0x5e,0x51,0x79,0x5e,0xc1,0x79,0xa1,0x86,0x17,0xbf,0xfd,0xb9, -0x1f,0x6c,0xfd,0xd9,0xcb,0x54,0xda,0xf8,0xcd,0x42,0x7d,0xfc, -0x7d,0xa7,0x3e,0x3e,0xfb,0xaa,0x3e,0xfe,0xf9,0x51,0x6c,0x5b, -0xd5,0xb9,0xe1,0x95,0x79,0x72,0xac,0xfa,0xb5,0x54,0x79,0xc8, -0xac,0x32,0x2f,0x32,0x5f,0x32,0xb7,0x9b,0xbb,0xcd,0xce,0x94, -0xe5,0x29,0xb7,0xa4,0x3c,0x92,0xf2,0x33,0x4f,0x95,0xe7,0x6a, -0xcf,0x93,0x9e,0x97,0x3d,0x6d,0xa9,0x57,0xa4,0xfe,0xce,0xbb, -0xd0,0x7b,0xbd,0x77,0xa5,0xf7,0x6e,0x6f,0x93,0xf7,0x25,0xef, -0x7e,0x6f,0x57,0xda,0x80,0xb4,0xe9,0x69,0x8f,0xa7,0x3d,0x9d, -0xf6,0x87,0x5e,0x37,0xf5,0xfa,0x4e,0xaf,0xdf,0xf5,0x6a,0xee, -0xf5,0x4a,0xaf,0xf5,0xbd,0x36,0xf5,0x0a,0xfb,0xa4,0x6f,0xa6, -0xef,0x31,0x5f,0xab,0xaf,0xab,0xf7,0x45,0xbd,0x97,0xf7,0xfe, -0x5e,0xef,0xdf,0xa5,0xa7,0xa7,0x87,0xd2,0x17,0xa7,0x6f,0xee, -0x33,0xaa,0xcf,0xfc,0x3e,0x2b,0xfb,0xdc,0xda,0xe7,0x6b,0x7d, -0xbe,0xdb,0xe7,0xe1,0x3e,0xbf,0xeb,0xf3,0x6a,0x9f,0x0f,0x33, -0x44,0x46,0x41,0x46,0x65,0xc6,0xc5,0x19,0x8b,0x33,0xee,0xca, -0x78,0x34,0x63,0x4d,0xc6,0xc6,0x8c,0x77,0x33,0x76,0x66,0x1c, -0xc8,0x38,0xea,0x1f,0xe2,0x1f,0xe5,0x1f,0xeb,0x9f,0xe4,0x9f, -0xee,0x9f,0xed,0xbf,0xd6,0xbf,0xd8,0xbf,0xca,0x7f,0x9b,0xff, -0x6e,0xff,0xf7,0xfc,0x8f,0xf8,0x7f,0xe6,0xff,0xb5,0xff,0x39, -0xff,0x8b,0xfe,0x57,0xfd,0x9b,0x32,0x8b,0x33,0xa7,0x67,0x2e, -0xcd,0xfc,0x6e,0x66,0x53,0x66,0x57,0x56,0x5a,0x56,0x76,0xd6, -0x80,0xac,0x61,0x59,0x65,0x59,0x13,0xb3,0xaa,0xb3,0x2e,0xce, -0xba,0x22,0x6b,0x7e,0xd6,0xd2,0xac,0x9b,0xb2,0xee,0xcc,0xfa, -0x56,0xd6,0x0f,0xb3,0x1e,0xcb,0xfa,0x79,0xd6,0xef,0xb2,0xfe, -0x92,0xf5,0x52,0xd6,0xfa,0xac,0xcd,0x59,0x3b,0xb2,0xba,0xb2, -0xf3,0xb2,0x43,0xd9,0x17,0x65,0x2f,0xcf,0xfe,0x5e,0xf6,0xef, -0xb2,0x37,0x66,0x47,0x72,0xf2,0x72,0x26,0xe6,0xcc,0xce,0x59, -0x9e,0x73,0x4f,0xce,0xee,0xc0,0xd5,0x81,0xbd,0x7d,0x8b,0xfb, -0x5e,0xdf,0x2f,0xb3,0xdf,0x1d,0xfd,0x76,0xe4,0xce,0xca,0x7d, -0x34,0x2f,0x35,0xef,0x87,0xf9,0x32,0xff,0xe7,0xf9,0xaf,0x14, -0x0c,0x28,0xd8,0xd4,0xff,0xba,0xfe,0x07,0x06,0xfc,0x70,0x60, -0xc6,0xc0,0xbf,0x0c,0x7c,0x29,0x98,0x17,0x7c,0x6c,0x50,0xca, -0xa0,0xf9,0x83,0x36,0x0e,0x7a,0x77,0xd0,0xce,0xc2,0xaa,0xc2, -0x0b,0x0a,0x2f,0x2e,0x6c,0x1a,0x7c,0xd5,0xe0,0x9f,0x0d,0xe9, -0x37,0x64,0xc0,0x90,0x21,0x43,0x7e,0x56,0xe4,0x2b,0x1a,0x55, -0x14,0x2a,0x1a,0x5f,0xf4,0xb9,0xa2,0xd6,0xa2,0x77,0x87,0x3e, -0x3a,0xf4,0xd7,0x67,0x05,0xce,0x7a,0xe2,0xac,0xe6,0x61,0xab, -0x86,0x67,0x0e,0x9f,0x3f,0x7c,0xf1,0xf0,0xe5,0xc3,0x1b,0x86, -0xdf,0x3a,0xfc,0xce,0xe1,0x77,0x0f,0xff,0xce,0xf0,0xfb,0x87, -0x3f,0x5c,0x3c,0xb1,0x78,0xe3,0x88,0xd0,0x88,0xc7,0x47,0x74, -0x9d,0xbd,0x7d,0x64,0xbf,0x91,0xb3,0x47,0x5e,0x35,0xf2,0xb6, -0x91,0x8f,0x8d,0x5a,0x5c,0x92,0x5a,0x92,0x5e,0x92,0x5d,0x92, -0x57,0x32,0xbf,0x64,0x71,0xc9,0xf2,0x92,0x86,0x92,0x5b,0x4b, -0xee,0x2c,0xb9,0xbb,0xe4,0x3b,0x25,0xf7,0x97,0xfc,0xa1,0x64, -0x4d,0xc9,0xab,0x25,0xef,0x96,0xec,0x1f,0x2d,0x47,0xbf,0x50, -0x7a,0x6b,0x59,0x59,0xd9,0x63,0x65,0x3f,0x2b,0x7b,0xba,0x6c, -0x47,0xf9,0xf2,0x50,0x7a,0xe8,0x89,0x8a,0xcc,0x8a,0x07,0xe1, -0xbf,0xbf,0x34,0xe6,0x96,0xb1,0x97,0x8f,0x0d,0x8f,0x7b,0x72, -0x7c,0xde,0xf8,0x27,0x26,0x14,0x4e,0x78,0x70,0xe2,0xd0,0x89, -0x8f,0x9c,0x13,0x38,0xe7,0x8f,0xe7,0x4e,0x12,0x5e,0x23,0x5d, -0x04,0x8d,0x0c,0x6c,0x6a,0xce,0x4d,0x96,0xf0,0x41,0x37,0x06, -0x8d,0xbe,0xa2,0xd8,0x28,0x10,0x01,0xc8,0xd6,0x04,0x2b,0x2c, -0xd3,0xb1,0xf5,0xc1,0x96,0x81,0xcd,0x8f,0x2d,0x13,0x5b,0x16, -0xb6,0x6c,0x2b,0x2c,0xf2,0xc4,0x58,0x2b,0x22,0xa6,0x62,0x9b, -0x61,0xad,0x11,0xd7,0x5b,0x51,0xd1,0x28,0x82,0xe2,0x26,0xe1, -0x33,0xfb,0x88,0x80,0x99,0x81,0xa3,0x1f,0xc7,0x4c,0x6c,0x59, -0x22,0x68,0x66,0x63,0xcb,0xc1,0x79,0x5f,0x6c,0xb9,0x56,0xd8, -0xcc,0xb3,0xda,0xcc,0x7c,0x2b,0x62,0x16,0xe0,0xbc,0xbf,0xd5, -0x6a,0x0e,0xc0,0x71,0x20,0x8e,0x41,0xdc,0x1b,0x84,0x67,0x85, -0x68,0xc1,0xcf,0x2d,0x84,0xc5,0x05,0xaa,0x15,0x40,0xd5,0x88, -0x4d,0xb7,0xe0,0x43,0xad,0x01,0xd4,0xea,0x43,0xad,0x3e,0xd4, -0xea,0x33,0xf3,0xb1,0x15,0x08,0x0f,0xd5,0x50,0x88,0xf2,0xd9, -0x62,0x00,0xf6,0xb8,0x42,0x2d,0x61,0x31,0x1e,0xdb,0x0c,0xab, -0x19,0x70,0x76,0x88,0x46,0x6c,0x37,0xa1,0xbd,0x3e,0x56,0x87, -0x99,0x81,0xd2,0x7e,0x6c,0x99,0xd8,0xb2,0xb0,0x65,0x63,0xcb, -0xc1,0x16,0xc0,0xf3,0xbe,0x38,0xf6,0x43,0x59,0x69,0xdc,0x6b, -0xed,0x36,0xbe,0x6b,0xed,0x46,0xff,0xfa,0xa1,0x1e,0xc0,0x8a, -0x7a,0xb7,0x01,0xb2,0x36,0x40,0xa6,0xea,0xbd,0x43,0x2c,0x00, -0xb4,0xf5,0xd8,0xae,0xb7,0x5a,0x15,0x84,0x71,0xb8,0xd5,0x78, -0x0d,0x02,0xaf,0x41,0xd4,0xf4,0x02,0x6a,0x7a,0x01,0xf8,0xf1, -0xa0,0x9d,0x28,0x70,0xb1,0x81,0x71,0x11,0x06,0x2e,0xda,0x80, -0x8b,0xb5,0xc0,0x45,0x1b,0x70,0xb1,0x0e,0x3d,0x09,0x03,0x17, -0xad,0xe8,0x4d,0x9b,0x48,0x45,0x8d,0x01,0xd4,0x18,0x40,0x8d, -0x01,0xd4,0x18,0x40,0x8d,0x01,0xa2,0x94,0x82,0xee,0x43,0xd4, -0xf9,0x21,0x9d,0x85,0x71,0x16,0x26,0x38,0x55,0xdf,0x3b,0xd0, -0xef,0x0e,0x86,0x33,0x42,0x70,0x5e,0x6f,0xb5,0x10,0x7c,0xf7, -0x5a,0xcf,0xa1,0xe4,0x73,0x84,0x49,0x4d,0x2b,0x1f,0x68,0xa5, -0xb0,0xea,0x73,0xb0,0x1a,0x00,0x8c,0x0a,0xb3,0xfd,0xb0,0xe5, -0x5a,0x2d,0x80,0xb3,0x05,0x70,0xb6,0x00,0xce,0x56,0xc0,0xf9, -0x28,0xe0,0x6c,0x06,0x9c,0xcf,0x30,0x9c,0xeb,0x00,0x67,0x8b, -0x0b,0x86,0x34,0x40,0x5c,0x0c,0x88,0x8b,0x01,0x71,0x31,0x20, -0x2e,0x66,0xde,0x2a,0x46,0x89,0x67,0x50,0xe2,0x19,0x2a,0xbb, -0x0b,0x67,0xbb,0xc4,0x70,0xa1,0xf0,0xec,0xd0,0x0b,0x3a,0x4f, -0xc3,0xdc,0x46,0xbc,0xa5,0x71,0x1b,0x20,0xd8,0x1b,0xa1,0xd1, -0x6f,0x42,0x1d,0xee,0xba,0x35,0xef,0xda,0xf5,0xe7,0xa3,0xd6, -0xb5,0xa8,0x75,0x2d,0xf3,0x61,0xc0,0xe1,0xc3,0x6c,0x6c,0x01, -0xe2,0xc1,0x64,0x7d,0x6a,0x46,0x9f,0xd6,0xa0,0x4f,0xeb,0xd0, -0xa7,0x16,0xf4,0xa9,0x15,0x7d,0x5a,0x83,0x3e,0x35,0x13,0xee, -0x75,0x6b,0xb1,0x1e,0x6c,0x43,0x0b,0xdb,0x98,0xc7,0xa6,0x02, -0x76,0x82,0x15,0x30,0x2e,0x20,0xf8,0x88,0x32,0xe0,0xaf,0x28, -0xe1,0x36,0x0b,0xf4,0x24,0x9c,0x02,0x4f,0x01,0xc5,0xad,0xe0, -0x2b,0xc5,0xad,0x1a,0x6f,0x11,0xa2,0x6f,0x1a,0xd3,0xd7,0x97, -0x40,0xdf,0x22,0xb4,0xd5,0x84,0xb6,0x9a,0x8e,0xc3,0x01,0x03, -0x09,0x8a,0xb1,0x56,0xbb,0x1c,0x24,0x7c,0x72,0x98,0x48,0x93, -0xa3,0x70,0x2c,0xc1,0x56,0x6a,0x45,0x64,0x39,0x8e,0x21,0xeb, -0x90,0xac,0xb5,0xa2,0x72,0xaa,0xd5,0x22,0xa7,0xe3,0x78,0x21, -0xee,0x5f,0x6d,0x75,0xc8,0x79,0xd6,0x1a,0xb9,0x10,0xcf,0x17, -0x09,0xbf,0x6c,0xc4,0xbd,0x9b,0x85,0x57,0xde,0x89,0xed,0x2e, -0xe1,0x91,0xdf,0xc0,0xbd,0x87,0xf0,0xec,0x71,0x94,0x7f,0x5a, -0x04,0xe4,0x3a,0x1c,0x5f,0xc1,0x76,0xcc,0x6a,0x95,0x5d,0xd6, -0x07,0xa2,0x1f,0xcb,0x56,0x1b,0x78,0xac,0x4d,0x0e,0x43,0x6d, -0x13,0xb1,0x55,0xa1,0x96,0x5a,0x1c,0xa7,0xa2,0xd4,0x74,0xdc, -0xbf,0x10,0xda,0x62,0x1e,0xae,0x17,0x59,0x87,0xe5,0x37,0x70, -0x7c,0x1c,0xcf,0x9f,0x46,0xad,0x76,0x6d,0x5b,0x70,0x7d,0x0c, -0x50,0x75,0x01,0xdf,0x29,0xc0,0x45,0x1a,0x38,0x67,0x14,0xea, -0xf6,0xa1,0x4f,0xea,0xfb,0x65,0x01,0xb4,0xb0,0x06,0x96,0x2f, -0x60,0xcc,0xc4,0x5b,0x83,0x50,0x72,0xb0,0xd5,0x2c,0x8b,0x70, -0x1c,0x81,0x6d,0x24,0x5a,0x41,0x69,0x59,0x82,0xf3,0x52,0xeb, -0x51,0x59,0x8e,0x63,0x05,0xb6,0x89,0x22,0x1f,0x10,0x34,0xc9, -0x69,0xd8,0xa6,0x03,0xf6,0x0b,0xad,0x3b,0xd0,0xdf,0xb0,0xbc, -0x16,0xe5,0xe7,0x59,0xf7,0xc8,0x85,0x80,0x6c,0x91,0x38,0x5f, -0xae,0x46,0x9d,0x8d,0xd6,0x6f,0xe5,0xcd,0xd6,0x4e,0x79,0xa7, -0xb5,0x07,0x7d,0x3e,0x57,0x3e,0x64,0x3d,0x01,0x28,0xb7,0xc8, -0x27,0x80,0x83,0xa7,0xad,0x2e,0x40,0xfa,0x3c,0x20,0x8d,0xc8, -0xf5,0xd6,0x36,0xb9,0x51,0x84,0xe0,0x03,0xf9,0x01,0x71,0x33, -0x20,0x6e,0x06,0xc4,0xad,0x80,0xb8,0x15,0x3e,0xd0,0x06,0x11, -0xe2,0xbd,0x07,0x14,0x7b,0x14,0x14,0x7b,0x54,0xce,0x42,0xcb, -0x97,0x89,0x20,0xee,0x16,0xf7,0xa0,0x11,0xee,0xb5,0x1e,0x42, -0xc9,0x87,0x50,0xd2,0x87,0x92,0x01,0x94,0x0c,0x7e,0xea,0xf7, -0x4d,0xa5,0xef,0xd0,0xfb,0x30,0xa0,0x6c,0x83,0xb7,0x00,0x6d, -0x82,0x3b,0xcd,0xb8,0xf3,0x24,0xe0,0x0f,0x00,0x7e,0x0f,0x9e, -0xac,0x05,0xdc,0x6d,0xf0,0x89,0xc6,0xe2,0xcd,0xa9,0x0a,0x0b, -0xa2,0x2f,0xe8,0x13,0x91,0x8f,0xe3,0xe9,0x3a,0x9c,0xbf,0x82, -0x6d,0x83,0x28,0x00,0x7d,0x50,0x0f,0x38,0xaa,0x0b,0x16,0xa1, -0x2f,0x4a,0x07,0x40,0x0b,0xc5,0x63,0x3e,0xe0,0x3e,0x0c,0x9c, -0xa3,0x25,0xd4,0x39,0x1d,0xd7,0x1a,0xda,0x62,0x79,0x25,0x8e, -0x57,0x03,0x8f,0xd7,0x62,0x9b,0x87,0xad,0x0e,0xdb,0x22,0x51, -0x04,0x3c,0x47,0x81,0xdf,0x7e,0xa8,0xd5,0x47,0x78,0x3c,0x86, -0x72,0x5d,0x4a,0x7f,0xe1,0x2d,0x1f,0xee,0xe6,0xb8,0xce,0xca, -0xa8,0xa5,0xeb,0xad,0x7b,0x58,0xf2,0x8a,0x58,0xce,0x03,0x2c, -0xe7,0x95,0xe0,0xfb,0x10,0xb8,0xa1,0x03,0xdc,0xd0,0x01,0xde, -0x0b,0x03,0x9a,0x88,0x1c,0x85,0xf3,0x12,0x6c,0xc4,0xf5,0x38, -0x86,0x40,0xed,0x0a,0x9c,0x4f,0x05,0x0e,0xa7,0xe1,0xfa,0x6a, -0x1c,0xaf,0xc5,0x36,0x0f,0x5b,0x1d,0xb6,0x85,0xc4,0x97,0x2f, -0xc8,0xd5,0x28,0xd3,0x68,0x75,0x82,0x0b,0xb6,0x80,0x0b,0xb6, -0xc8,0xbb,0xac,0x57,0x81,0x8b,0x8d,0xe0,0x84,0x30,0x38,0xe1, -0xb0,0x7c,0xc2,0x3a,0x00,0x4e,0x68,0x05,0x27,0x74,0x82,0x13, -0x3a,0xc1,0x09,0xad,0x8a,0x26,0x72,0x23,0x9e,0xbf,0x4d,0x3c, -0xbc,0xc1,0xee,0x0d,0x38,0xa2,0x03,0x98,0xfd,0x08,0x58,0x84, -0xa6,0x42,0x2d,0x51,0xc8,0x90,0xc2,0xa8,0x0f,0x18,0xcd,0x84, -0x5f,0xaa,0xf0,0x3d,0x11,0x77,0x17,0x59,0xfb,0x51,0x22,0x13, -0x25,0xf6,0xe3,0x69,0xa6,0x7a,0x8a,0x7a,0x9a,0x51,0x8f,0x07, -0xde,0x1a,0x7a,0x0f,0x7a,0x45,0x48,0x56,0xb7,0x58,0xcf,0xc6, -0xf1,0x17,0x73,0x19,0x6a,0x0b,0x40,0x2b,0x16,0x21,0x96,0x09, -0x18,0xf9,0xac,0x09,0x3c,0xa2,0xd2,0x6a,0x31,0xc2,0xd8,0xf6, -0x60,0xdb,0x8b,0x6d,0x1f,0x74,0x66,0x8e,0xa8,0x84,0x3c,0x8d, -0x05,0x17,0x8d,0xc3,0x36,0x01,0xbc,0x14,0xc6,0xb6,0x07,0xdb, -0x5e,0x6c,0xfb,0x00,0x51,0x1a,0x7a,0xd3,0x0b,0x9b,0x0f,0x5b, -0x6f,0x6c,0xe9,0xb8,0x07,0xcb,0x20,0xa1,0x8f,0x24,0x2c,0x83, -0x84,0x65,0x90,0xd0,0xb2,0x32,0x5b,0xfd,0xda,0x3a,0x6a,0x0b, -0x26,0xd4,0x16,0x44,0x6d,0x41,0xd4,0x16,0x44,0x6d,0xc1,0x53, -0xaa,0x2d,0x03,0xb5,0x05,0xa8,0xb6,0x09,0xe8,0x43,0x18,0xdb, -0x1e,0x6c,0x7b,0xb1,0xed,0x03,0x0e,0xa0,0xf1,0xf0,0x66,0x00, -0x6f,0x06,0xf0,0x66,0x00,0x6f,0x06,0xf0,0x66,0x00,0x6f,0x06, -0x08,0x97,0xf4,0xd6,0x71,0x4b,0x25,0x42,0x1b,0x38,0x09,0x68, -0x7b,0xae,0xed,0xc4,0x5e,0x91,0x2a,0x11,0x41,0x89,0x08,0x4a, -0x44,0x50,0x22,0x82,0x12,0x11,0x94,0x88,0xa0,0x44,0x04,0x25, -0x22,0x54,0x22,0x8a,0x12,0x51,0x94,0x88,0xa2,0x44,0x14,0x25, -0xa2,0x28,0x11,0x45,0x89,0x28,0x4a,0x44,0xa1,0xfd,0xc6,0x8a, -0x7c,0x86,0x37,0x19,0x7c,0x41,0xc0,0xa7,0x7e,0x31,0x2e,0x08, -0xf8,0x82,0x80,0x2f,0x08,0xf8,0x82,0x52,0x79,0x58,0x7d,0x44, -0xb1,0xfa,0xe5,0x36,0xb6,0xe2,0xc5,0xb0,0xe2,0x41,0x58,0x9c, -0x5a,0x58,0xbc,0x20,0x2c,0x5e,0x31,0x70,0x36,0x0d,0x10,0x4c, -0xc7,0x06,0x0b,0x20,0x2e,0xc2,0x76,0x31,0xa2,0x04,0xf5,0x99, -0xc5,0x4b,0x79,0x35,0xd1,0xe7,0xb1,0xf5,0x11,0x73,0xb1,0xbf, -0x12,0x31,0xc3,0x60,0xf2,0xb5,0x8a,0x50,0x67,0x10,0x56,0x34, -0x08,0x2b,0x5a,0x8c,0xba,0x43,0xec,0xcd,0x05,0xb5,0x35,0xa3, -0xba,0xa1,0xaf,0xa1,0x69,0xa2,0xe4,0xb1,0xcd,0x00,0xcf,0xcd, -0xc7,0x9d,0x05,0x38,0xd7,0xbe,0x56,0x9b,0xb8,0x19,0xe7,0xb7, -0x40,0xbf,0x03,0x6f,0xf0,0xb9,0xc2,0xf0,0xb9,0xc2,0xf0,0xb9, -0xc2,0xec,0x73,0x85,0xb5,0x6d,0x24,0x9f,0x2b,0x0c,0x9f,0x2b, -0x6c,0xe6,0x42,0x96,0xf2,0xc8,0xab,0x0b,0xc0,0xab,0xf3,0x99, -0xfd,0xd1,0xca,0x00,0x9c,0x0f,0xc4,0x36,0x08,0x5b,0x21,0xa8, -0x11,0xa0,0x16,0x83,0x4a,0x5e,0xc8,0xfa,0x06,0x21,0x0f,0x3e, -0x71,0xbd,0xb2,0xfa,0x6e,0xaf,0x4e,0x79,0x32,0xe4,0xc9,0x45, -0xb8,0x56,0x3f,0xd7,0x1a,0x40,0xad,0x01,0xd4,0xea,0x47,0xad, -0x3e,0xd4,0xea,0x8f,0xf5,0x1c,0x76,0x5c,0x49,0x57,0xb1,0x50, -0xbf,0xf3,0xa3,0x7e,0x43,0xf0,0x26,0x60,0xc1,0x0f,0xcc,0x66, -0xaa,0x5f,0xc0,0xc3,0x16,0x00,0x26,0xfa,0xe2,0xd8,0x0f,0xe5, -0x4c,0x2e,0x19,0x40,0xc9,0x80,0xcb,0x5b,0xec,0xe9,0x4c,0xfb, -0x47,0x3d,0xdb,0xf3,0xff,0xff,0x3c,0xf1,0x2a,0xbf,0xee,0x34, -0xde,0x8b,0x79,0x8e,0xf1,0x67,0x31,0x3f,0x58,0x9f,0xf5,0x12, -0xea,0xf7,0x9c,0x2e,0xc7,0xa6,0xe8,0x7a,0x05,0x73,0x75,0x18, -0xdb,0x1e,0x6c,0x7b,0xb1,0xed,0x53,0x79,0x23,0x87,0x26,0xff, -0xdf,0x39,0x0b,0xb0,0xb7,0xdc,0xc1,0x11,0x58,0x33,0x49,0xdb, -0xf5,0x24,0x71,0xed,0x90,0xb8,0x08,0x24,0x2e,0x0c,0x89,0x0b, -0xb3,0xc4,0x29,0x79,0xe8,0xe0,0x28,0x27,0xcc,0x51,0x4e,0x98, -0xe4,0x82,0x25,0xee,0x24,0xfc,0xf5,0xff,0x99,0x12,0xea,0xe7, -0xa8,0x7d,0xe8,0x99,0xd2,0x25,0xbb,0xe0,0x5b,0xbe,0x2b,0x2e, -0xc0,0xb5,0x8e,0x5d,0x5a,0x55,0xcf,0x50,0xb2,0x15,0x25,0x5b, -0x29,0x76,0xf1,0x73,0xcc,0x42,0xba,0x03,0xf1,0x0a,0xe2,0x08, -0xf8,0xf1,0x1d,0xf0,0xe1,0x23,0x66,0x10,0xef,0xf5,0xc4,0x29, -0xff,0x6f,0x9d,0xf5,0x1c,0xa1,0x9c,0xd9,0x27,0x27,0x8e,0x52, -0xfe,0x5f,0x2a,0x71,0x66,0x75,0x5d,0x1e,0xd9,0xc5,0xeb,0x1d, -0x9b,0x18,0x11,0xf7,0x21,0xa2,0x18,0x68,0x1d,0x81,0x0f,0x1b, -0x45,0x44,0x13,0x85,0x1f,0x7b,0x14,0x7e,0xec,0x21,0xf8,0xaf, -0x07,0xe0,0xbb,0x1e,0x80,0xef,0x7a,0x08,0xbe,0x62,0x04,0x31, -0x95,0x1d,0xbd,0xed,0x87,0x1f,0x1b,0x85,0x57,0x18,0x46,0x44, -0x73,0x00,0x92,0xad,0x73,0x15,0x3a,0x4f,0x11,0x81,0xdc,0x4c, -0xb5,0x0e,0x51,0x2b,0xf0,0xb5,0xd1,0x42,0x07,0x5a,0x68,0xe3, -0x5a,0x8f,0x92,0xaf,0x1e,0x42,0x6d,0xca,0xfb,0xd4,0x51,0xda, -0x7e,0xd4,0xb8,0x09,0xb5,0x75,0xa8,0x28,0x8d,0xa2,0xd5,0x2c, -0x48,0x50,0x80,0xf4,0x41,0x3b,0x6c,0xa5,0x0f,0xb6,0xd2,0x03, -0x5b,0xe9,0xa1,0xbc,0x4a,0x7f,0x6c,0x03,0xb0,0x0d,0xc4,0x36, -0x08,0x5b,0x21,0xbc,0xcd,0xa1,0x9c,0x9d,0x09,0xc3,0xfa,0xaa, -0x18,0x5d,0xad,0xd0,0x0b,0x88,0x06,0x5c,0xc3,0x5e,0xa2,0xf5, -0x56,0xf8,0xe8,0xad,0xe8,0xdf,0x11,0xf4,0xaf,0x93,0x22,0x53, -0xe5,0xa7,0x97,0xc0,0xb7,0x56,0xd0,0x94,0xe3,0xa8,0x22,0xd3, -0x0a,0x40,0x39,0x0d,0xb8,0x98,0x05,0x4f,0xf9,0x32,0xca,0x47, -0xf8,0x21,0xd7,0x7e,0xd8,0x5a,0x3f,0x6c,0xad,0x5f,0xe7,0x63, -0x44,0x3e,0x6c,0xad,0x1f,0x31,0x7b,0x84,0xa1,0xf2,0x91,0x5f, -0x40,0x72,0xee,0xc4,0xd1,0x61,0xf8,0x93,0x53,0xad,0x23,0x84, -0x83,0xfb,0xd0,0x92,0xea,0xfb,0x44,0xb4,0x5e,0x85,0xad,0x16, -0x1b,0x22,0x75,0xf4,0xb7,0x1d,0xfd,0x3d,0x94,0x90,0xf5,0x50, -0xfe,0xb4,0xea,0x0b,0xe5,0x17,0xf0,0x26,0xea,0x03,0xdc,0xfb, -0x11,0x65,0x1e,0x02,0xbc,0x2a,0x9e,0x40,0x1c,0x81,0x38,0x5e, -0xeb,0x1c,0x0d,0x9b,0xce,0x40,0xf9,0xed,0x0c,0x94,0x18,0x81, -0x1a,0xf6,0x02,0x1b,0x1d,0xa2,0x0e,0x57,0xf5,0x4a,0x1f,0xc3, -0x8f,0x6b,0xa0,0x8c,0xd3,0x93,0xa8,0xf5,0x1e,0xc0,0x74,0x3f, -0x47,0x2d,0x9d,0xc0,0xc8,0x6e,0x60,0x24,0x1d,0x2d,0x74,0x02, -0x2b,0x3b,0x39,0x72,0x79,0x95,0x23,0x97,0x77,0x81,0x95,0x76, -0xb4,0xb8,0x16,0x98,0x51,0xd4,0x5e,0x03,0xfa,0xac,0x81,0x1e, -0x6f,0x85,0x1e,0x6f,0x83,0x1e,0x6f,0x83,0x1e,0x6f,0x85,0x1e, -0x6f,0x05,0x76,0x9a,0x41,0xb3,0x75,0xe0,0x82,0x35,0xa0,0xdb, -0x1a,0xa6,0x5b,0x00,0x18,0x0a,0x02,0x43,0x41,0xd0,0xad,0x18, -0x74,0x0b,0xb2,0xe7,0xe4,0x17,0xfd,0x9d,0x8c,0x1a,0xe5,0xab, -0x00,0x69,0x03,0xf1,0x64,0x44,0xe5,0x2d,0x00,0x61,0x18,0x3c, -0xa9,0xfa,0xdf,0x06,0x28,0x23,0x80,0x32,0x42,0x38,0x18,0x45, -0x78,0x68,0x03,0x84,0x87,0x00,0x61,0x1b,0xa0,0xdb,0x09,0xc8, -0x0e,0x11,0xbd,0xec,0xbc,0x46,0x2e,0xe9,0xdd,0x0e,0xce,0xe1, -0x75,0x80,0x1e,0x1d,0xe8,0xbf,0xca,0x8e,0xcc,0xb0,0x6d,0x13, -0x65,0x08,0xd5,0xc7,0x0f,0xfd,0xc4,0xf5,0xc3,0x40,0x93,0x91, -0xa0,0x7a,0x29,0xb6,0x10,0x70,0xa1,0x31,0x1c,0xe4,0xac,0x8d, -0xf2,0x37,0x83,0xae,0xec,0x61,0x90,0x7d,0x4d,0xcd,0x05,0x03, -0xc1,0xaf,0x9a,0xea,0x1d,0xd4,0xa7,0x64,0x9c,0x1f,0x05,0xbc, -0xfb,0x80,0xcd,0x68,0x02,0xd7,0xaf,0xf9,0x54,0x5c,0x9f,0xcd, -0x7d,0xda,0x8d,0x3e,0xa9,0x48,0x7b,0x03,0x6a,0x8b,0xb8,0x78, -0x49,0x71,0xad,0x07,0xf0,0xfa,0xb5,0x7d,0x25,0xab,0x14,0x25, -0xec,0xf4,0x27,0xb8,0x3b,0x18,0x3b,0x11,0x51,0xe0,0x58,0x6f, -0x95,0x97,0x6c,0xa0,0x0c,0x67,0x91,0xa2,0x03,0x60,0x07,0x57, -0x40,0x5e,0x4a,0x81,0x95,0x90,0x48,0x25,0x3d,0x30,0x15,0x1c, -0x33,0x0d,0x71,0x13,0x60,0x67,0x2c,0x29,0xaf,0xbc,0x98,0xbd, -0xf2,0xe2,0x04,0x2c,0x05,0xb9,0x35,0x6d,0x07,0x8b,0x18,0xe6, -0x56,0xb4,0xb4,0xcd,0xce,0xd4,0x82,0xca,0x07,0x40,0x87,0x8f, -0xd1,0xda,0x21,0x50,0x39,0x4a,0xb4,0x18,0x85,0x96,0x4b,0x70, -0x5f,0xd1,0xa4,0x1c,0xe7,0x21,0x40,0x31,0xd5,0xda,0xce,0xd9, -0xb4,0x60,0x0f,0x74,0x09,0x28,0x4f,0x18,0x7d,0x6c,0x33,0xf3, -0x80,0x49,0x9d,0xd9,0x8d,0x00,0x82,0xb0,0x39,0x80,0xa0,0x08, -0xbb,0x32,0xbb,0x6d,0xc7,0xa5,0x57,0x24,0x09,0xbd,0xd6,0x7e, -0x2a,0x7a,0x29,0xb9,0x6c,0x25,0xb9,0x9c,0x01,0x3f,0xdd,0x1d, -0xe9,0xd4,0x91,0x14,0x14,0x41,0x0a,0x42,0xa4,0x2f,0x06,0x41, -0xe6,0x06,0x5b,0xdb,0x89,0xeb,0xcf,0x02,0x4e,0x86,0x41,0x0e, -0x47,0xa8,0xec,0x02,0x70,0x51,0x82,0x67,0xa5,0xc0,0x45,0x39, -0xa8,0x50,0x01,0xa8,0x26,0x12,0xed,0xdb,0x94,0x36,0x26,0xad, -0x10,0xa3,0xbd,0x8f,0x68,0x1f,0xcb,0x32,0x6e,0xe3,0x0c,0x6f, -0x3b,0x70,0xd2,0x0e,0x9c,0x6c,0x03,0x4e,0xda,0x81,0x93,0x36, -0xc6,0xc9,0x36,0x9d,0x01,0x54,0xf8,0x20,0x89,0x40,0x74,0xcf, -0x99,0x3a,0xd5,0xe7,0x0e,0x8e,0x5e,0x3a,0xc0,0x1d,0x09,0x19, -0x6c,0xca,0xba,0x85,0x08,0x53,0xca,0x3a,0xb4,0xb3,0x65,0x38, -0x74,0xd2,0x99,0xed,0xd1,0xc0,0xcc,0x06,0x60,0xe6,0x65,0xd4, -0xdc,0xa0,0xa3,0x27,0xeb,0x7e,0xe8,0x83,0xfd,0x8a,0x3b,0x80, -0x91,0x16,0xe8,0x82,0x1d,0xc0,0xca,0x3a,0x60,0x25,0x0c,0xac, -0x74,0x68,0xbe,0x84,0xde,0x1e,0x65,0x3d,0x0a,0x8c,0x3c,0x0a, -0x7a,0xad,0x07,0x46,0x1e,0x05,0x14,0x1b,0x81,0x95,0xb5,0x44, -0xb7,0xa9,0x22,0x17,0xba,0xe1,0x2d,0x40,0x73,0x14,0x3a,0x3d, -0xa8,0x72,0x58,0xae,0x5c,0xac,0x5f,0x8f,0x09,0x28,0x88,0x70, -0xcc,0x51,0xb4,0xa4,0x9c,0xac,0x1f,0xd8,0xca,0x06,0xb6,0x9e, -0x01,0xb6,0x9a,0x80,0xad,0x26,0x60,0xeb,0x59,0x60,0xeb,0x21, -0x60,0xeb,0x19,0x60,0xeb,0x27,0xc0,0x56,0x13,0xb0,0xd5,0x04, -0x6c,0x3d,0x23,0x86,0x90,0xe4,0xc4,0x2c,0x8f,0x8f,0x33,0xc3, -0x4a,0x83,0x75,0x00,0xe2,0x28,0x6b,0x2f,0x65,0x75,0x3c,0x6c, -0x75,0x22,0x64,0x59,0xcb,0xf1,0x2c,0x04,0xfa,0xa9,0xcc,0x50, -0x2d,0x9e,0x29,0xfd,0x3a,0x0b,0x41,0xc0,0x65,0x88,0xe6,0x32, -0x28,0x6e,0xd6,0x99,0x79,0xd2,0x68,0x38,0xd7,0xba,0xd4,0x1d, -0x2f,0xda,0x51,0xa8,0x1f,0x90,0x44,0xc9,0x06,0xb6,0x03,0x92, -0x56,0x0d,0x05,0x28,0xa9,0xf1,0x76,0x80,0xb9,0x49,0xe1,0xad, -0x4d,0x73,0x11,0xb6,0x98,0x1e,0xdd,0x00,0x48,0xda,0x01,0xc9, -0x36,0x40,0xa2,0xf3,0xa6,0x2a,0x67,0x37,0xcd,0xda,0x4a,0x39, -0x53,0x1b,0xa2,0x3e,0xe0,0x92,0x0c,0x70,0x4b,0x2c,0x5e,0x6e, -0xe5,0x78,0xb9,0x8d,0xbd,0xf7,0x36,0x50,0xb2,0x0d,0x78,0x8b, -0x02,0x3f,0xed,0x64,0x03,0x8b,0xe3,0x32,0xfe,0x0b,0x60,0xd9, -0x74,0xe6,0xbc,0x2f,0xc9,0xfc,0x40,0xc2,0x4f,0x18,0x90,0xed, -0x60,0xaf,0x63,0x1b,0xa0,0xeb,0x00,0x64,0x61,0x40,0x16,0x06, -0x8f,0xa7,0x00,0xb2,0x30,0xa0,0x52,0x52,0xd8,0xce,0xda,0xe6, -0xcc,0x8e,0x12,0x04,0x01,0xe1,0x0e,0x40,0xd8,0x0e,0x5e,0x6b, -0x25,0xdb,0xa3,0x71,0xa6,0x20,0xdb,0x0c,0xc8,0x36,0x6b,0xeb, -0x48,0xb6,0x67,0x07,0xf0,0xd6,0xce,0xb9,0xbd,0xcd,0xc0,0x5b, -0x1b,0xa0,0xdb,0x0c,0xbc,0x29,0x1b,0xb4,0x0d,0xfa,0xe1,0x10, -0x70,0xb6,0x89,0xb3,0xda,0x51,0x39,0x0b,0xdb,0x65,0xc0,0x85, -0x92,0x00,0x95,0x77,0xcf,0x21,0x6e,0x57,0x36,0x49,0x6b,0xdc, -0x91,0x0e,0xb5,0x66,0xc0,0xc3,0x5b,0x00,0xed,0xa0,0x47,0x16, -0xd6,0x30,0xef,0xb4,0x02,0x8a,0xdd,0x80,0x62,0x13,0x59,0x7f, -0xcd,0xf1,0x87,0x00,0x41,0x1b,0x20,0x58,0x0b,0x08,0xd6,0x02, -0x82,0xed,0x80,0x60,0x2d,0x43,0xd0,0xc2,0xdc,0xde,0xe6,0xe2, -0x74,0xdb,0x83,0x61,0x5c,0x81,0x2a,0x7a,0xe4,0x21,0xc8,0x78, -0x52,0x7a,0xb2,0x19,0x78,0x6a,0x4e,0x18,0x79,0x68,0x01,0x9e, -0x9a,0x01,0x69,0x0b,0xf0,0xd4,0x4c,0x23,0x0f,0xd2,0xae,0x95, -0x64,0xbf,0x89,0xbd,0x47,0xa5,0x31,0xdb,0x01,0xe7,0x21,0xe2, -0x71,0x95,0xfd,0x1c,0x41,0x9e,0xe2,0x5e,0x70,0xd1,0x51,0xf6, -0x73,0x94,0x5e,0xda,0x41,0xba,0x40,0x6b,0x8f,0x43,0x64,0x33, -0xfb,0xd3,0x28,0x9b,0xb2,0x3f,0x11,0x31,0xb8,0xdb,0xb8,0x05, -0xd5,0x4c,0x58,0xd8,0xc6,0x3e,0x80,0xce,0xaf,0x16,0xa1,0xb5, -0x11,0x84,0x85,0x88,0xe6,0x10,0x3c,0xd7,0x5e,0x4a,0x3b,0xf1, -0xee,0x34,0xb4,0x14,0xe3,0x57,0x3d,0xe6,0x91,0x09,0xae,0x38, -0x99,0x71,0x8f,0x7c,0xa6,0x47,0x98,0x23,0xbc,0x66,0xf2,0x46, -0x94,0x2e,0x1e,0x08,0xfc,0x6b,0x3e,0xdd,0x0d,0x08,0x0e,0x91, -0xe6,0xb1,0x79,0x54,0xf3,0xa7,0x6a,0x59,0xf5,0xab,0x95,0x6d, -0x4e,0x5b,0xc2,0x08,0x5a,0x8b,0x63,0x6f,0x72,0xc5,0x6c,0x68, -0xfb,0x39,0x2a,0x0f,0x80,0xda,0xaf,0x24,0xad,0xaf,0x6c,0xad, -0xca,0xeb,0x14,0x8b,0x5b,0x71,0xfc,0x12,0xb6,0xdb,0xd0,0x07, -0x95,0xcd,0xbe,0x00,0xc7,0xeb,0xa8,0x2f,0x91,0xb8,0xf1,0xa3, -0x2c,0xca,0xfd,0x28,0x9d,0x25,0x98,0x9a,0x2a,0xff,0x23,0xe0, -0x77,0xcf,0x46,0x2d,0x73,0xb0,0x5d,0x8e,0x9a,0xe7,0x02,0x93, -0x57,0xa8,0x56,0x94,0x0f,0x88,0x7b,0xba,0x95,0x5a,0xb4,0x52, -0x8c,0x56,0x8a,0xd1,0x4a,0xb1,0x9c,0x88,0x56,0x6a,0x55,0x8e, -0x97,0x5a,0xf3,0xd1,0x18,0xc5,0x75,0xce,0xc8,0x69,0xb1,0xcb, -0xaa,0x0b,0xce,0xe3,0x29,0xfe,0x39,0x17,0x2d,0x2a,0x2f,0x38, -0xe8,0xe2,0x8b,0xd8,0x59,0x3f,0x31,0x1b,0xf4,0x9b,0x83,0xed, -0x72,0x6b,0x1f,0xf5,0xf3,0x0a,0x1c,0x55,0x5f,0x6f,0xc5,0xbd, -0x2f,0x61,0xbb,0x0d,0xb2,0xf1,0x80,0xb5,0x45,0x3e,0x08,0x0e, -0xfe,0x91,0xb5,0x47,0x6e,0x80,0x5f,0xb1,0x1f,0xc7,0xc3,0xb8, -0x3e,0x82,0x2d,0x8a,0xed,0x28,0xb6,0x63,0xc0,0x74,0x97,0xd5, -0x69,0xf6,0xb2,0xb6,0x98,0x3e,0x4b,0xcd,0xf9,0x68,0xb5,0xba, -0x78,0x9f,0xa7,0x6d,0x90,0x30,0x6d,0xcb,0x2d,0x17,0x42,0x87, -0x2e,0xb2,0xba,0x28,0x83,0xae,0xc7,0x8a,0xd4,0xe8,0xce,0x21, -0xf9,0x0a,0x36,0x1e,0x2b,0x32,0xd3,0xc0,0x0d,0x2a,0x0f,0x91, -0x68,0xb9,0xbb,0x5b,0x6b,0x9f,0x38,0x9b,0xb4,0xd7,0x0c,0xeb, -0xb7,0xf0,0xa0,0xa3,0xe0,0x88,0x4d,0xf0,0x8b,0x94,0x76,0xef, -0xaf,0x3c,0x47,0xb4,0x96,0x81,0xd6,0x3e,0xa4,0xec,0xfa,0xcd, -0x68,0xf1,0x4e,0xcb,0x92,0x77,0xa1,0xa5,0x6f,0xa0,0xa5,0xa7, -0xd1,0xfa,0x3a,0xd1,0x4b,0xbe,0x82,0x6d,0x0b,0xb8,0xe6,0x18, -0xf8,0xb2,0xcb,0xda,0x61,0xa6,0xa0,0xe6,0x34,0x6b,0x13,0xb0, -0x3b,0x84,0xb5,0x58,0x3a,0xb0,0x9b,0x03,0x68,0x86,0x00,0xbb, -0x19,0xc0,0x6e,0x3f,0xce,0x64,0xe6,0x01,0xbb,0x39,0xe0,0xa8, -0xb7,0xc0,0x51,0x5b,0xc1,0x51,0x9b,0xc1,0x51,0x5b,0xc1,0x51, -0x2d,0xe0,0xa8,0x56,0x70,0xd4,0x5b,0xe0,0xdd,0x7f,0x83,0xab, -0xde,0x02,0x57,0xbd,0x05,0x3f,0x70,0x86,0xb5,0x93,0xf1,0xd0, -0x06,0xc8,0xd2,0xf4,0x28,0x02,0x68,0x12,0x8f,0x83,0x16,0xc2, -0x81,0x96,0xc3,0x5d,0xe8,0xb7,0x44,0x7f,0x25,0xbc,0x32,0xd5, -0x67,0x89,0x3e,0x4b,0x8a,0xdc,0x62,0xa3,0xdc,0xba,0xbf,0x34, -0xd2,0x2d,0x17,0x02,0xb3,0x8b,0x9c,0xbe,0x46,0xd0,0xd7,0xa3, -0xf2,0x1b,0xb8,0x7e,0x08,0x47,0xd5,0xdf,0xf5,0x38,0x6e,0x41, -0xcb,0xc7,0x20,0x11,0x5d,0xec,0x89,0xb8,0x47,0xc6,0x6d,0xed, -0x9c,0x38,0x3a,0x0e,0x6a,0xaa,0x19,0x35,0xb4,0x2f,0x44,0x3f, -0xd6,0x8b,0x05,0xb0,0xfa,0xd7,0x5b,0x07,0xd0,0xba,0x87,0x73, -0x48,0xed,0x4c,0xd7,0x8f,0x80,0xdd,0x63,0x44,0xdb,0x27,0x88, -0xbe,0x1e,0xf4,0x6d,0x3f,0xfa,0x76,0x10,0x58,0x3e,0x8c,0x96, -0x3f,0xa0,0x96,0xd3,0x48,0xeb,0xee,0x4d,0xf0,0x3b,0x3a,0x61, -0xad,0x3a,0xa0,0x01,0xf6,0xa2,0xff,0x07,0xa1,0x01,0xf6,0x02, -0x07,0x7b,0x1d,0xaf,0x2d,0x28,0x4c,0xe0,0xc0,0x84,0x16,0x48, -0xf4,0x6c,0x54,0xcb,0x77,0x09,0x93,0x46,0x50,0x34,0x57,0xa5, -0xa1,0xd5,0x23,0x68,0xf5,0x08,0x8f,0x19,0xb6,0xa1,0xd5,0x36, -0xb4,0x1a,0x39,0x69,0x6f,0x27,0x4d,0xfe,0x14,0x51,0xcb,0xcf, -0xb0,0xfd,0x0a,0x7e,0xdd,0xaf,0xb1,0xfd,0x1e,0xe7,0x7f,0xc3, -0xf1,0x4d,0x6b,0x17,0xa4,0x61,0x10,0x8d,0xad,0x64,0xd0,0x3e, -0x8b,0xf7,0xc3,0x8e,0x6b,0x4b,0x17,0xe1,0x7d,0x1a,0x3d,0x82, -0xcd,0xbc,0x19,0x90,0x69,0x4e,0x7c,0x9d,0x29,0x13,0x01,0xa4, -0xcf,0xc9,0x77,0xd1,0xd7,0x34,0xce,0x56,0x9d,0x49,0x1b,0xaa, -0xe0,0x4b,0x15,0xa5,0xc7,0xb3,0x67,0xe0,0x1e,0x35,0xd2,0xf4, -0x22,0x60,0xdc,0x00,0x3a,0xbe,0x07,0x18,0xd7,0x82,0x8b,0x5e, -0x02,0x9c,0xcd,0x80,0xf3,0x1d,0x70,0xd1,0x66,0xd0,0xb4,0x0b, -0xf0,0xbe,0x0a,0xec,0x6e,0x03,0x76,0xb7,0x01,0xee,0x35,0xf2, -0x4d,0x68,0x40,0x35,0xc2,0xb5,0xc5,0x7a,0x46,0x8d,0x48,0xc9, -0x2e,0xc0,0x97,0x62,0x7d,0xec,0xea,0xc7,0x99,0xb1,0x6f,0x29, -0xa0,0x48,0x3b,0xa8,0xb0,0x0b,0x14,0x88,0xa0,0xc5,0xb3,0xc8, -0x1e,0x44,0xd1,0x97,0x27,0x54,0x6c,0x45,0xbc,0xa8,0xb9,0xa1, -0x13,0xf0,0x1e,0xa4,0xb1,0x34,0x35,0x82,0xfc,0x04,0x8d,0x8b, -0x6d,0x51,0xb8,0x05,0x27,0xbc,0xc1,0x9c,0xb0,0x17,0xb0,0xa5, -0x00,0x2e,0x8f,0xb6,0x3e,0x14,0x83,0x29,0x7d,0x73,0x18,0x70, -0xa5,0x00,0x86,0xc3,0x68,0xbf,0x0b,0x3c,0xe7,0xe7,0x68,0x28, -0x89,0xed,0x03,0xc6,0x22,0x90,0xb7,0x4c,0x60,0xeb,0x5d,0x60, -0xab,0x03,0xd8,0x8a,0x02,0x5b,0x6a,0xe4,0x32,0x13,0xd8,0x6a, -0xe3,0xf1,0x40,0x25,0x7b,0x87,0x81,0xb1,0x7d,0x3c,0x1e,0x18, -0x55,0xa3,0xaa,0xc0,0x50,0x94,0xf9,0xf1,0xd4,0x6c,0x60,0x9a, -0x7c,0x00,0xfd,0x7a,0x18,0xb5,0xfc,0x08,0xc7,0xfd,0xd8,0x2c, -0xd4,0x90,0x82,0x52,0xbd,0x50,0x83,0xfa,0x16,0xce,0x48,0xe6, -0x42,0x8d,0x99,0x7a,0xeb,0x23,0xca,0x85,0xc6,0xf4,0xa2,0x17, -0xda,0x27,0x05,0x58,0xda,0xcc,0x7a,0x31,0xc2,0x70,0x1f,0x64, -0xbd,0xd8,0xe1,0xe8,0x45,0x82,0x15,0x5c,0x70,0x0c,0x65,0xba, -0x68,0xbc,0x7d,0x0b,0xb0,0x96,0xe7,0xd2,0x8b,0xfd,0x80,0xb9, -0x3c,0xd6,0x8b,0x79,0x09,0x7a,0x51,0xcd,0x55,0xd9,0x06,0xaa, -0xb6,0x32,0x67,0xbe,0x02,0xaa,0x6e,0x00,0x56,0x37,0x70,0x7f, -0x36,0xa0,0x3f,0xdb,0xc4,0x70,0x0d,0xa9,0xf0,0x42,0xa7,0xec, -0x83,0xad,0xc8,0x80,0x4d,0x8f,0x02,0xc3,0x9b,0x40,0xcb,0x17, -0x1d,0x8d,0xd6,0x88,0x08,0xe1,0x4e,0x9c,0x6b,0xcc,0x46,0x80, -0xcd,0xf7,0x81,0xcd,0xdd,0xc0,0xa4,0xa2,0xe9,0x9f,0x01,0xdd, -0x2b,0x6c,0x37,0x36,0x72,0xde,0xe3,0x5d,0x48,0x77,0x2b,0x30, -0xfa,0x2e,0xa4,0x7b,0x23,0x30,0xfa,0x0e,0x68,0xfb,0x0f,0x60, -0xf4,0x1d,0x48,0xf7,0xeb,0xec,0xab,0xbb,0x23,0x41,0x9f,0x63, -0x5b,0x82,0xae,0x68,0x50,0x79,0x52,0x7b,0x80,0x3f,0xa5,0xd9, -0x0e,0x13,0x9e,0xb4,0x46,0x3b,0x86,0xd6,0x8f,0x01,0x3f,0xc7, -0x58,0x63,0x6f,0x02,0x2e,0xbc,0xc4,0x45,0x3a,0x9a,0x97,0x68, -0xad,0x8b,0x5a,0x89,0xc5,0x99,0xd0,0xde,0x8e,0x65,0x8c,0xed, -0x8f,0xf5,0x70,0xde,0x15,0xa7,0x75,0x8b,0x49,0x72,0x67,0x58, -0xcf,0x03,0x96,0x5d,0x4c,0xcb,0x20,0xd3,0x52,0x59,0xd4,0xbd, -0xa0,0x65,0x2f,0xd0,0xf2,0x10,0xd3,0x52,0x69,0x96,0x0f,0x40, -0xcb,0x23,0x4c,0xc3,0x36,0xc0,0xb9,0x13,0x70,0xee,0x64,0xfb, -0xb6,0x8d,0xbd,0x07,0x0f,0xfb,0x2b,0xf9,0x80,0x7d,0x00,0x60, -0xcf,0x07,0xec,0xf9,0x4c,0x47,0xe5,0x3d,0xe4,0xf3,0xfc,0xab, -0x76,0x9e,0x73,0xe4,0x9e,0x7f,0x65,0x47,0xa4,0xbb,0x29,0x8e, -0x18,0x46,0x56,0x49,0xe7,0x6e,0xa2,0x80,0x30,0xd3,0x81,0x70, -0x11,0xe9,0xbc,0x44,0xe8,0xf6,0xba,0xa0,0xdb,0xf3,0x29,0xa0, -0xdb,0x07,0xe8,0x3a,0x38,0x87,0xa0,0x72,0x26,0x7b,0x38,0x87, -0xb0,0x13,0x90,0xed,0x23,0xeb,0x95,0x0b,0xee,0x1a,0x05,0x4d, -0x97,0x0b,0xee,0x2a,0x22,0x2f,0x64,0x91,0x18,0x06,0x7b,0xe1, -0x03,0x37,0x0d,0x24,0x6e,0xb2,0x67,0x6f,0x6c,0x84,0xbf,0xb0, -0x05,0x1c,0x76,0x0c,0xdc,0xd5,0x65,0xbd,0x0f,0x8e,0x52,0x51, -0x9d,0x97,0x47,0x01,0xf3,0x39,0x43,0x56,0x08,0x5a,0xe6,0x83, -0x53,0xb2,0xc1,0x25,0xb9,0x94,0x9d,0x50,0x92,0x16,0x46,0xed, -0x1e,0xb6,0xef,0x9b,0x69,0xfe,0x82,0xb6,0x44,0xbd,0xc0,0x2d, -0x11,0x9e,0x13,0xa2,0xac,0xd1,0x51,0xf6,0x73,0x5a,0xd9,0x06, -0x46,0x78,0x84,0x53,0x59,0xa3,0x28,0x78,0x35,0xaa,0xe3,0x49, -0xb2,0x44,0x51,0x1d,0xad,0x31,0x07,0x81,0x37,0x11,0x3d,0x3c, -0x00,0x6d,0xfb,0x20,0xb4,0xdc,0x8f,0x48,0xeb,0xa6,0x43,0x03, -0x08,0xf8,0x64,0x61,0xf8,0x64,0x61,0xf8,0x64,0x61,0xf8,0x64, -0x61,0xc7,0xbe,0xf7,0x82,0x47,0xe8,0x53,0xbe,0x29,0x61,0xd3, -0xef,0xf2,0x4d,0x7d,0xec,0x9b,0x06,0x28,0x57,0xaa,0x33,0x32, -0x7e,0x31,0x1e,0xbe,0x69,0x08,0xbe,0x69,0x48,0x5c,0x4e,0xdf, -0x30,0x1e,0x26,0xae,0xc0,0xf1,0x4a,0x1c,0x17,0xc0,0xeb,0xa8, -0x87,0x3f,0xb7,0x48,0xe4,0x88,0x25,0xd8,0x1a,0xb1,0xdd,0x24, -0xa6,0xc3,0x4f,0x0d,0xc1,0x4f,0x0d,0xc1,0x4f,0x0d,0xd1,0xdc, -0xa0,0x6f,0x8a,0x2c,0xf9,0x2d,0xd0,0xfc,0x01,0x68,0xc7,0x07, -0xc5,0x10,0xf9,0x88,0xc8,0x01,0xa4,0x01,0xd8,0x88,0x74,0x40, -0x3b,0x4c,0xbe,0x85,0x32,0x9b,0xb0,0xed,0x40,0xb9,0x0f,0xb0, -0x7d,0x88,0xad,0x1d,0xe5,0x77,0x62,0xdb,0x05,0xec,0xef,0x47, -0xd9,0xc3,0x78,0xef,0x08,0xb6,0x28,0xb6,0xa3,0xd8,0xec,0xd9, -0x12,0x02,0x5a,0xc5,0xc0,0x26,0xb1,0xa5,0x42,0xe3,0x78,0xb1, -0xf5,0xc2,0x7d,0x9f,0x9a,0x3d,0x75,0x92,0x3d,0xec,0x03,0xea, -0x44,0xe3,0xfc,0x1f,0xed,0xb3,0x27,0xb1,0xb2,0x94,0x8d,0xcb, -0xa0,0x5c,0xb9,0x1f,0x74,0x3d,0x8c,0x37,0xdf,0x02,0x5d,0x0f, -0x82,0x9e,0x87,0x41,0x4f,0xe5,0xcb,0x6c,0x41,0x2d,0x1f,0x6a, -0x0d,0x4e,0x1e,0x45,0x17,0xe8,0x77,0x98,0xe9,0xd7,0xce,0xf4, -0xdb,0xcd,0x7e,0xc2,0x89,0xfd,0x89,0x13,0x97,0x08,0x71,0x06, -0xa6,0xd5,0x95,0x81,0x79,0x94,0xf4,0xa5,0xb6,0x46,0x7b,0x79, -0x86,0xca,0x3a,0xd2,0x97,0xda,0x7e,0xff,0x0b,0xf2,0xb6,0x0e, -0xf2,0xf6,0x1a,0x38,0x7d,0x87,0xf6,0xc9,0x70,0xbd,0x0e,0xf6, -0xfd,0x15,0x6c,0xeb,0xf1,0xfc,0x4d,0xbc,0x87,0xda,0xe5,0x46, -0x1c,0x5b,0xd1,0xe2,0x16,0xeb,0x97,0xc0,0x79,0x2f,0xe0,0xdc, -0x0f,0x2b,0x75,0x98,0xbd,0xe1,0x93,0xcd,0xc8,0xac,0x83,0x3c, -0xae,0x83,0x3c,0xae,0x83,0x3c,0xb6,0x40,0x1e,0xff,0xc0,0xb3, -0xe4,0x9e,0x85,0xb6,0xd8,0xca,0xb6,0x7c,0x1d,0xb4,0xfe,0x02, -0xeb,0x43,0xf6,0x1e,0xdf,0x00,0x66,0xdf,0x70,0x69,0xfa,0x77, -0xd8,0x67,0x3d,0x0c,0x09,0x3a,0x04,0x88,0x8f,0xb1,0xce,0xed, -0x20,0x2f,0xf2,0x6d,0xd2,0xb9,0xaf,0x00,0xf3,0xef,0x02,0xba, -0xa3,0x2e,0xad,0xdf,0x06,0x0a,0xec,0x76,0xe5,0x3d,0xda,0x41, -0x89,0x37,0x40,0x89,0x16,0x50,0x62,0x13,0x6b,0x7d,0xbf,0x6b, -0x3c,0xc0,0x0f,0xa9,0xf2,0x43,0x96,0x7d,0x90,0x2c,0x3f,0x6b, -0x7d,0x3f,0x69,0xfd,0x98,0x67,0x67,0xef,0xb3,0xd9,0xab,0xdb, -0xae,0x6c,0x01,0xb8,0xdf,0x03,0xf8,0x0e,0x6a,0x09,0x87,0x44, -0x6f,0x00,0xf7,0x6a,0xc9,0x8e,0x02,0x2e,0x48,0x35,0x74,0x7d, -0x16,0xb6,0x6c,0x6c,0xfd,0xd9,0x83,0x1f,0xe4,0xe8,0xff,0x98, -0xbf,0x68,0xeb,0xf9,0x0d,0xb0,0x33,0x89,0x77,0xec,0x32,0x27, -0xe7,0x87,0xa6,0x26,0xf1,0x8e,0x4e,0xef,0x4e,0x29,0xe7,0x3f, -0x5b,0xf4,0x38,0xb1,0x33,0x9b,0x52,0xc5,0xda,0x7b,0x54,0xcf, -0xc1,0x6b,0x6a,0x36,0x94,0xf2,0xb3,0x5e,0x02,0xaf,0xb5,0x82, -0x62,0x3b,0xc0,0x6b,0x2d,0xe0,0xb5,0x37,0xc0,0x6b,0x7f,0x07, -0xaf,0xad,0x07,0x76,0xde,0x00,0x76,0x3e,0x01,0xf5,0x3e,0x06, -0x86,0xde,0x00,0xf5,0x76,0x82,0x7a,0x3b,0x69,0x36,0xd4,0x9b, -0x78,0x17,0x3d,0xe6,0x19,0x51,0xca,0xef,0x6d,0x02,0x25,0x77, -0x93,0xbf,0x98,0xe1,0xf0,0x96,0x9d,0x57,0x53,0x72,0xeb,0x01, -0x5f,0x35,0x71,0xa6,0xef,0x49,0xf0,0x55,0x13,0xfb,0xb9,0x4d, -0xe0,0xab,0x26,0xf0,0x55,0x33,0x67,0xfa,0x9a,0x28,0x47,0x79, -0x32,0xd0,0xef,0x07,0xf4,0xdb,0x5c,0xd0,0x7f,0x00,0xe8,0x77, -0x02,0xfa,0x76,0x40,0xdf,0xc6,0xbe,0x9b,0x0d,0xfd,0xfb,0x0c, -0xfd,0x9e,0x1e,0xa0,0x5f,0x93,0x00,0x7d,0x34,0x01,0xf2,0xdd, -0x80,0x7c,0x0f,0x20,0xdf,0x03,0xc8,0xf7,0x00,0xf2,0x77,0x00, -0xf9,0x1e,0xb6,0x9f,0x07,0xd8,0x7e,0xee,0x13,0x25,0x1c,0xd1, -0x8d,0x87,0x64,0x44,0x35,0xd4,0x62,0x04,0xa0,0xee,0xa4,0x2c, -0xa1,0xd2,0x5a,0x5a,0x42,0x86,0x03,0xe2,0xed,0xf2,0x4e,0x70, -0xa0,0xb6,0x60,0x43,0x09,0xda,0x27,0x60,0xb5,0xf4,0xfc,0xc3, -0x3d,0xa4,0x9b,0xd6,0x23,0xae,0xdc,0x28,0xf2,0x61,0xcd,0x0a, -0x62,0xde,0x9b,0xc8,0x84,0xa4,0x1c,0x80,0xa4,0x44,0x1d,0x7b, -0x43,0x1e,0x27,0x45,0x3f,0x3b,0x21,0x29,0x51,0x48,0xca,0x01, -0x9e,0xfb,0xd2,0x0f,0x92,0x12,0xe4,0x71,0xa1,0x12,0x9e,0x51, -0x33,0x14,0x9c,0x3c,0x58,0x8d,0x10,0x80,0x9b,0x07,0x43,0x52, -0xbc,0xb0,0x7e,0x7a,0x94,0x80,0x32,0x4d,0x1c,0x01,0x7e,0x0c, -0x1c,0x76,0xb1,0xcc,0xda,0x9a,0x52,0x43,0x40,0x73,0x36,0x95, -0x55,0x47,0x4b,0xba,0x75,0x1d,0x77,0xa9,0x11,0x8f,0x3c,0x57, -0xdc,0xa9,0xbd,0xb1,0x3e,0x34,0xd3,0x46,0xcb,0xa5,0xcf,0x91, -0xcb,0x00,0xef,0x33,0x38,0x0a,0x84,0x07,0xae,0x3c,0x6e,0x78, -0xd6,0x4f,0x93,0x2f,0xf1,0x21,0x28,0x71,0xd8,0x35,0xa6,0x10, -0xa5,0xb1,0x1f,0xed,0xa9,0x44,0xc9,0x1f,0x18,0xc2,0xba,0x47, -0xf9,0xf1,0xdb,0x81,0xd9,0x16,0xf6,0xe1,0x3f,0x20,0xbd,0xf3, -0xb8,0xe3,0xe3,0x69,0xab,0x7d,0x0c,0x5e,0x68,0x17,0x68,0xa6, -0xf5,0xcc,0x07,0xc0,0x5e,0x87,0x0b,0xfe,0xdd,0xc0,0x5e,0x27, -0xfa,0xa0,0x22,0xf6,0x37,0x80,0xbd,0xdd,0xe8,0xcb,0x66,0x60, -0x2f,0x9b,0x7d,0x06,0x3f,0xfa,0x93,0xed,0x9a,0x39,0x64,0xeb, -0x99,0x6c,0xca,0x5e,0x0c,0x87,0x55,0x45,0x24,0x44,0xf3,0xed, -0x02,0x62,0xbc,0x15,0x55,0xe3,0xe7,0x9c,0x8f,0x56,0xf9,0xfa, -0x36,0x39,0x12,0xdc,0x3a,0x0a,0xd7,0x25,0x6a,0xb4,0x03,0xe7, -0x94,0x8f,0x16,0x45,0x94,0xc3,0xaf,0xa5,0xd9,0x8a,0x3e,0xca, -0x66,0x72,0x5e,0x47,0x5e,0x8d,0xf7,0xaf,0xc5,0x36,0x0f,0x5b, -0x1d,0xb6,0x85,0xc2,0x0f,0xfc,0x7c,0x00,0xff,0x6b,0x08,0x70, -0xf4,0x11,0x62,0xa2,0x14,0xce,0x7c,0x04,0xe0,0xe1,0x2b,0xbb, -0x1c,0xd0,0xdc,0x8c,0x7a,0xb6,0x40,0x53,0xa6,0x61,0xcb,0x24, -0xfb,0x15,0x81,0x2e,0x50,0x73,0x2b,0xd4,0x7c,0x5d,0x35,0x53, -0xb8,0x48,0xcd,0xe4,0x84,0xcc,0x8c,0xc4,0xd1,0x99,0x31,0x8c, -0xad,0x9c,0xe6,0x28,0x86,0x01,0x4d,0x98,0x67,0x21,0xb6,0xc9, -0x2b,0x71,0xae,0xfd,0xd2,0xdd,0x3a,0xc6,0xc0,0xb9,0xe2,0xd8, -0x6f,0x58,0x9b,0x68,0x96,0x30,0xcd,0x10,0x86,0x47,0xf0,0x0a, -0xb6,0x8d,0xb8,0xbf,0x05,0x72,0xa5,0x63,0x74,0x65,0x6d,0x9a, -0x39,0x46,0x0f,0x33,0x7f,0xb8,0xad,0x69,0x3b,0x7d,0x0b,0x34, -0x40,0x73,0x1e,0x35,0x44,0x1d,0x80,0x28,0x00,0x48,0x02,0xc0, -0x4b,0x80,0xf0,0x31,0x0b,0xfd,0xbe,0x0c,0xfe,0x48,0x77,0x5c, -0xa8,0x18,0xfc,0x00,0x20,0xca,0xd2,0x52,0x0e,0xad,0x4d,0xb9, -0x17,0xc8,0xc9,0x2b,0xd8,0xde,0xc4,0xb6,0x01,0x9b,0xc6,0x45, -0x1b,0xcd,0xd5,0x1d,0x6c,0xb7,0x66,0xa8,0x9f,0x9c,0xa0,0x51, -0x02,0xa7,0xd5,0x20,0x51,0x24,0x84,0xed,0xc4,0xad,0x6e,0x47, -0xab,0x79,0xd0,0x2f,0x88,0x60,0x80,0xc3,0xf8,0x56,0xfd,0x68, -0xd5,0xaf,0x67,0xdb,0x82,0x17,0xed,0x08,0x5a,0xe9,0x13,0x4d, -0x89,0x28,0xfc,0x2f,0x78,0x9c,0xcc,0x27,0x7e,0xe6,0x93,0xa0, -0x93,0xcf,0x1d,0x89,0x56,0x4a,0xb1,0x29,0xbe,0x98,0xd8,0x8d, -0x27,0x8a,0xbb,0xcf,0x64,0x75,0x78,0x22,0x0f,0x54,0xf1,0x51, -0xa4,0xa0,0xa8,0x42,0x5e,0x30,0x41,0x16,0x04,0x64,0xc1,0x04, -0xde,0x68,0x25,0xbf,0x3c,0x83,0x46,0xd4,0x02,0x9c,0x9f,0x8a, -0x12,0x8f,0xd8,0x1c,0xec,0x73,0x20,0xd3,0x9c,0x5b,0x04,0xa8, -0x8a,0x18,0x3f,0x1e,0x86,0xe8,0x78,0x38,0x6a,0x03,0x44,0xfd, -0x75,0xfc,0x6c,0x6d,0xd0,0x32,0x28,0x06,0x00,0x92,0x01,0x89, -0x5c,0xea,0xc2,0xd1,0x06,0xf2,0xbc,0xb2,0x09,0x4f,0x1d,0xcc, -0x23,0x1d,0xf0,0xf6,0x6d,0xa8,0xc0,0xbd,0x04,0x91,0x3d,0xc6, -0x33,0x0c,0x9c,0x96,0x5c,0xa6,0x8a,0x89,0x8b,0xf5,0x28,0x62, -0xc4,0xe1,0x64,0x3d,0x4f,0x39,0x90,0x04,0x87,0x1e,0xa6,0x6a, -0x3f,0xe6,0x6a,0x0f,0xcb,0x95,0x4d,0xd5,0x04,0x88,0xc1,0x31, -0x3a,0x82,0xd6,0x10,0x67,0xba,0xa0,0x56,0xf3,0xa9,0xc6,0xd1, -0x5a,0x11,0xbd,0x9e,0x81,0x66,0x4d,0x1b,0x19,0x42,0x90,0x36, -0xd0,0xb9,0xf5,0x16,0x67,0x7c,0x9d,0x78,0x8f,0xe6,0x2f,0xb7, -0xf0,0x4c,0xf6,0x08,0xcd,0x64,0x0f,0xe1,0x7e,0x05,0x7a,0x30, -0x51,0x8d,0x07,0xd2,0x1c,0xe6,0x08,0xcf,0xb4,0x3e,0x17,0x3d, -0x38,0x17,0x3d,0x08,0xa1,0x07,0x21,0xf4,0x20,0x84,0x1e,0x84, -0x00,0xfd,0x16,0xd8,0xbf,0x30,0x6c,0xdf,0x7b,0xb0,0x7d,0x3b, -0x80,0xf7,0xf7,0xd0,0x93,0x16,0x9a,0xc7,0xfc,0x34,0x36,0x3d, -0x0b,0xd9,0x07,0x9b,0xd7,0xe6,0xea,0x4d,0x86,0xb2,0xd6,0xae, -0xf9,0xcb,0x11,0x1d,0xad,0xb1,0x4e,0xa4,0xec,0x0e,0xd9,0x3f, -0x95,0xbf,0x30,0x69,0x2c,0xa5,0x1f,0x6b,0x12,0x37,0x97,0x44, -0x98,0x7f,0x3b,0x58,0xa3,0xd8,0x92,0x94,0xcf,0x33,0x58,0xdc, -0xba,0x2d,0xc2,0x5c,0x53,0x9c,0x84,0x6b,0x14,0x0d,0xf6,0x10, -0x1f,0x6b,0x1a,0xa4,0x24,0xc1,0x7f,0x86,0xa3,0xd7,0x32,0x68, -0x4e,0x9b,0xcd,0x29,0x11,0xf8,0x0a,0x03,0xd4,0xaa,0x21,0xe0, -0x5a,0xe3,0x39,0xca,0xf3,0x38,0x6c,0xcd,0x1b,0x00,0x8e,0x79, -0x24,0x10,0x35,0xaa,0x39,0x1d,0x4a,0xc3,0xe8,0x91,0xae,0x88, -0x1e,0x83,0xc3,0xf5,0xb4,0x38,0xed,0x9b,0x88,0xe3,0x6d,0x80, -0x2e,0x40,0xb9,0xa1,0xbb,0x50,0x9e,0xa0,0x24,0x9f,0x31,0xc6, -0x29,0xeb,0xf1,0x2c,0x5e,0xf3,0x34,0x27,0xf0,0x77,0x94,0x7d, -0x8a,0x43,0x6c,0xa1,0x8f,0xd2,0xec,0xd9,0xb0,0x18,0x0b,0x6a, -0x29,0xcd,0x3c,0x18,0xf2,0x3c,0x82,0xe6,0xd8,0x77,0x40,0x33, -0xfb,0x79,0x2d,0x47,0x1b,0xaf,0xe5,0xd8,0x00,0x8e,0xf0,0x81, -0x9f,0x9b,0xe5,0x85,0xb4,0x9e,0x41,0xad,0xe1,0x90,0x4e,0x4e, -0xe5,0x66,0x5a,0xbb,0x11,0x80,0xb4,0xf9,0x61,0xf1,0xc2,0xb0, -0x78,0xfb,0xe0,0x33,0x04,0xc0,0xaf,0x4d,0xe0,0xd7,0xdd,0xb0, -0xa1,0x64,0x3b,0x61,0x33,0x07,0x40,0x1b,0xea,0xd5,0x15,0x3e, -0xe6,0xc5,0x43,0x72,0x18,0x4a,0x8e,0xc0,0xb9,0x9e,0xdd,0xdf, -0xec,0xcc,0xa1,0x57,0x2b,0x2a,0x68,0xc4,0x02,0xf7,0x6c,0x3e, -0xbc,0x10,0xe7,0xaa,0xf5,0x45,0xc0,0x53,0x23,0xca,0x7d,0x03, -0xba,0xe1,0x21,0x40,0xfc,0x04,0xd9,0xda,0x36,0xb4,0xdc,0xc1, -0xab,0x25,0x1e,0xa5,0x6c,0x8e,0x9a,0x01,0x91,0x47,0x23,0x33, -0x7a,0xac,0x52,0x5b,0xef,0x76,0xf5,0x4b,0xec,0xb4,0x66,0xc9, -0xa7,0xfa,0x4f,0xd0,0x0c,0x42,0x0d,0x0a,0x12,0x92,0x0a,0xb2, -0x4c,0x1e,0x40,0xd3,0x81,0xfe,0x7b,0x00,0x51,0x38,0x36,0x7e, -0xa2,0x46,0xc9,0x09,0x92,0x36,0xc6,0x03,0xf8,0x07,0x90,0x2a, -0x68,0xc8,0x42,0x21,0xb2,0x50,0x50,0xe9,0xf5,0x2b,0x61,0xb2, -0xfe,0x31,0x5c,0xbc,0xaf,0x72,0x13,0xb4,0x7a,0x46,0x63,0x5e, -0x61,0x9d,0xfa,0xcf,0x23,0xc6,0xa3,0x08,0xeb,0xe1,0x84,0x16, -0x13,0xb1,0xee,0x8d,0x6b,0xed,0x2e,0x6a,0x31,0xdf,0x85,0xfd, -0x0e,0xce,0x68,0x35,0x51,0x36,0x44,0x63,0x3f,0x2a,0x8a,0x12, -0xe8,0xcd,0xb6,0x8f,0x5a,0x07,0x97,0x02,0xa3,0xf1,0x34,0x6f, -0x07,0x04,0x41,0x40,0x10,0xa4,0xf9,0x26,0x17,0xe2,0x3a,0x06, -0x41,0x90,0x3c,0x1d,0xc7,0x22,0x53,0x7f,0xd3,0x63,0x39,0x0a, -0x65,0x8d,0x09,0x82,0x35,0x80,0x60,0x0f,0x65,0x40,0xf2,0x00, -0x85,0xf2,0x60,0xf4,0x68,0x40,0xd4,0xc1,0x41,0x33,0xe3,0x40, -0x73,0xdf,0x28,0x65,0x85,0x69,0x9c,0xaf,0x83,0x38,0xce,0xc6, -0x78,0x0c,0xdb,0xaa,0xf5,0x00,0x5a,0xdf,0xca,0x5c,0x97,0xcf, -0x23,0x1f,0x1d,0xec,0x67,0xa9,0x3e,0xef,0xa3,0xbc,0x68,0x1e, -0x5a,0x1a,0x40,0x7d,0xef,0x60,0xba,0x77,0x80,0xe2,0x7a,0x6d, -0x8a,0xc2,0xbc,0x8f,0xe9,0x1d,0x66,0xac,0xb7,0xd2,0xc8,0xf8, -0x44,0x40,0x52,0xeb,0xf0,0xfa,0x06,0xe6,0x36,0x1f,0x61,0x5c, -0x67,0x65,0x83,0xe0,0xb8,0x2e,0x6e,0xb5,0x1d,0xad,0x86,0x79, -0x7d,0xcb,0x1a,0x5e,0x51,0xa4,0x5b,0x2e,0x70,0xb5,0xae,0x47, -0xc8,0x63,0x6b,0x03,0x5b,0xd9,0x1f,0xf2,0x10,0x14,0x45,0xaa, -0xff,0x3d,0x72,0x9d,0x3d,0x2f,0xc3,0xee,0x7f,0x80,0x3c,0xd5, -0x46,0xa5,0x73,0xc9,0x7b,0xf7,0xd0,0x1a,0xa7,0x87,0x80,0xfd, -0xd8,0x68,0x49,0x3e,0xf4,0x82,0x87,0xf4,0xae,0x5e,0x35,0xd4, -0x66,0xaf,0x73,0xe2,0x19,0x41,0xed,0x04,0x19,0xcd,0x90,0x51, -0xa3,0x21,0x3c,0x4e,0x3d,0x84,0x71,0xb3,0x46,0xe9,0x56,0x86, -0xce,0x4f,0xeb,0x6e,0xe2,0xf5,0x82,0x87,0x79,0xc4,0xc3,0x7a, -0x21,0x86,0x2f,0x92,0x52,0x6c,0x36,0xb5,0x34,0xa5,0xde,0x62, -0x2a,0x29,0x79,0xd8,0x4d,0xba,0xc1,0xd6,0x0b,0x94,0xbd,0x56, -0x39,0x54,0x40,0x50,0xe0,0x50,0x2a,0x82,0x88,0x45,0xaf,0x77, -0x24,0xfe,0x50,0xeb,0x28,0x13,0x38,0xd6,0x86,0x28,0x4c,0xfc, -0x52,0xc2,0xd4,0xd3,0x5c,0xdb,0x46,0x7c,0x43,0x16,0x98,0xa1, -0xd2,0x33,0x54,0xda,0x9c,0x95,0x67,0x8d,0x80,0x5a,0xf3,0x8e, -0xf2,0xd3,0x8f,0xb1,0xdc,0x74,0x90,0xdc,0xe8,0x4c,0x62,0x94, -0x21,0x3c,0xe0,0xc4,0x1a,0xc4,0xbd,0x84,0xb3,0x43,0x4a,0x96, -0x00,0xe5,0x51,0x21,0xef,0xd8,0xac,0x56,0x39,0xdf,0x7d,0xc7, -0xdd,0x77,0x09,0x83,0xd6,0x3e,0xfb,0xac,0x28,0x38,0x5b,0xde, -0x41,0x2b,0xa4,0xef,0xbe,0xff,0x9e,0xf5,0xe2,0x3a,0x31,0x5d, -0x08,0xab,0x43,0xdd,0xa7,0x7f,0x11,0xfa,0xd7,0x8e,0xb3,0x36, -0xf1,0xbf,0xfa,0x07,0x59,0x48,0x76,0xf7,0x10,0xa0,0xfb,0xdf, -0x83,0xcc,0x97,0x14,0xa6,0x76,0x68,0x4c,0x85,0x43,0x85,0xb9, -0x36,0x1c,0xd5,0xbf,0x43,0xea,0x1a,0xf8,0x0e,0x5b,0xad,0xc0, -0xb8,0xe7,0x33,0xc4,0x53,0x13,0x68,0xd5,0x4a,0x94,0x0b,0x5b, -0x1b,0xad,0x75,0x27,0x7c,0xc1,0xc3,0x7b,0x0f,0xde,0x6a,0xc7, -0x3f,0xf5,0x5e,0x98,0x8e,0xfb,0xce,0x18,0x4c,0xf7,0x24,0xbd, -0xfb,0xa8,0xf5,0x2b,0xd1,0x0b,0xfb,0x56,0x6b,0x2d,0x20,0x7d, -0x14,0xff,0xd6,0x5a,0x5b,0xac,0xf7,0x60,0xdf,0x06,0xa0,0x17, -0x6b,0x68,0xf5,0x4a,0xf7,0xb7,0x9a,0xad,0x8f,0x4f,0xa2,0x57, -0x27,0x0f,0x1b,0xa8,0x74,0x72,0xe5,0x94,0xf5,0x05,0x66,0x22, -0xff,0x0b,0xfc,0xa4,0xb8,0xa9,0x9d,0x38,0x4a,0xd3,0xa8,0xc3, -0x3a,0x40,0x77,0x21,0x95,0xd6,0x3a,0xeb,0x60,0x32,0x98,0xd4, -0x3d,0xe8,0xa3,0x4f,0x8f,0x9f,0x47,0xb1,0x6d,0xd3,0x7c,0x62, -0x6d,0x80,0x25,0x10,0x27,0xe0,0x5e,0x0f,0xff,0x02,0x53,0x40, -0x73,0x52,0x77,0x0c,0x2b,0xc8,0x3f,0x25,0x4c,0xdb,0x92,0xde, -0x8d,0x02,0x2f,0x9b,0x7b,0xa0,0x9d,0x10,0x7e,0xc0,0xd1,0x83, -0x0e,0x39,0x33,0x72,0x97,0xf4,0xee,0x0e,0x70,0xb3,0xd0,0x58, -0x50,0x47,0xfc,0x53,0xba,0xe0,0x88,0xc6,0x48,0x4f,0xbc,0x74, -0x26,0xe8,0x66,0xd3,0x2e,0xc9,0xdd,0xdd,0xd6,0x06,0x07,0xa6, -0x34,0x82,0x29,0x0a,0xeb,0x10,0x47,0xbb,0x1e,0x70,0x98,0xf6, -0x99,0x69,0xad,0xcd,0x6c,0x67,0xd4,0xd6,0x86,0xab,0xcd,0xd6, -0x36,0x40,0xb5,0x95,0x9f,0xae,0xe9,0xe1,0xad,0xce,0x33,0xc4, -0xe3,0xc9,0x69,0xb7,0xd6,0x5a,0x0b,0xad,0xb8,0x16,0x10,0xb5, -0x00,0x26,0x5c,0xe1,0xb8,0x53,0x69,0x70,0xf0,0x52,0x2b,0xe8, -0x9a,0x1c,0x4f,0x1b,0xac,0xc3,0x67,0xc2,0x22,0x91,0xa4,0x69, -0x9d,0xa0,0xb4,0x0e,0x38,0xde,0x3a,0x66,0x7d,0x70,0xdc,0x57, -0x82,0xf8,0xa7,0xff,0xfc,0xf8,0x97,0xa8,0x4f,0xce,0x80,0xcd, -0x81,0x6f,0x43,0x70,0x11,0xad,0xde,0x26,0x3b,0xe7,0xe9,0xb9, -0x5e,0x50,0xc6,0xa7,0xe8,0x09,0x2c,0xe5,0x03,0x7f,0x6d,0x0a, -0x2b,0xe0,0x7e,0xc5,0x6f,0x11,0x45,0x39,0x96,0x89,0xc8,0x99, -0xd0,0x99,0xa4,0x6b,0x22,0xa0,0x56,0xe4,0x84,0x5a,0x5c,0xd8, -0x36,0x58,0xe9,0x03,0xad,0x11,0x94,0xb5,0x04,0xac,0x1d,0x67, -0x8c,0x9d,0x83,0xc9,0xf5,0x93,0xbd,0x47,0x7b,0x9d,0xec,0x5d, -0x45,0xa9,0x55,0x0f,0x71,0x95,0x2f,0xb9,0xfe,0x3f,0x03,0x38, -0x72,0xeb,0x48,0xd6,0xc6,0xe0,0xe5,0x88,0xe6,0x31,0x6a,0x59, -0x43,0xd6,0x13,0x04,0x3d,0x42,0x06,0xea,0xfb,0x08,0x77,0x11, -0xe2,0x04,0x1f,0x79,0x1e,0x2d,0x4a,0x76,0x4f,0xdd,0x0a,0x13, -0x5d,0xc2,0xa4,0x2f,0x23,0x6a,0x7f,0x2a,0x6f,0xdb,0x1e,0x22, -0x79,0x59,0xc2,0xad,0x5d,0x81,0xe9,0xad,0xe0,0xbd,0x56,0x6c, -0xbb,0x34,0x97,0x10,0x0f,0x76,0x1c,0x87,0x6b,0x45,0x0f,0x9e, -0x26,0x5b,0x1d,0x6b,0x3f,0x5f,0x1f,0x51,0x96,0x83,0x6a,0xea, -0xc1,0x2f,0xb0,0xf5,0xfc,0x67,0x64,0xef,0xda,0x48,0x1b,0x41, -0x0a,0xad,0x03,0x22,0x1d,0x5a,0xbd,0x9d,0x21,0x8b,0x38,0xef, -0x24,0xf7,0x27,0x3a,0xce,0x84,0xc5,0xeb,0x59,0xef,0x12,0x05, -0x8f,0xc6,0xec,0xaa,0x75,0xc4,0x29,0xef,0x03,0xcc,0xed,0x3d, -0xf1,0xe5,0x19,0xc1,0x54,0x98,0x38,0xbc,0x9d,0x5a,0xf1,0xc0, -0x57,0x6c,0xd5,0xba,0x1d,0x7b,0x8f,0xc6,0x99,0xad,0xb1,0xba, -0xb5,0xe7,0x71,0x61,0xcb,0xe7,0x3c,0xf5,0xab,0xf8,0x48,0x64, -0xc1,0xaf,0xf0,0x90,0xc7,0xb5,0x5f,0x64,0x58,0x88,0xdb,0x51, -0x73,0x73,0x8c,0xc7,0x49,0xa6,0x23,0xc9,0x79,0x1e,0xd8,0x40, -0x94,0xa5,0x74,0x20,0x3c,0xa2,0x16,0x75,0xc5,0xd2,0xd6,0xc2, -0xb6,0xb6,0x07,0x6d,0xd1,0xed,0x2f,0x10,0xaf,0x31,0xe1,0x9d, -0xe7,0xf1,0xdd,0x7c,0x6b,0x93,0x96,0x42,0x96,0x61,0x2d,0xdb, -0xb6,0xd7,0xe5,0x43,0x24,0x1f,0x38,0x31,0x2d,0xb5,0xcd,0x3a, -0xd3,0xb1,0xd4,0xa9,0x58,0x67,0x8e,0x35,0xd9,0x4b,0x23,0x9b, -0xdb,0xe4,0xb6,0xce,0x31,0x8a,0x1d,0x57,0xbb,0xf8,0xb5,0x86, -0xd5,0xd1,0x2d,0x3c,0x96,0x2c,0x6b,0x07,0xeb,0x86,0x08,0x68, -0xb7,0x91,0x6a,0x6e,0xb1,0x6b,0x70,0xca,0x26,0xb5,0x92,0x64, -0xe3,0xb5,0x3f,0x14,0xc4,0x3b,0x1b,0xf0,0xd4,0x4f,0xf2,0xd3, -0x42,0xe5,0xd4,0xb3,0xa2,0x93,0x82,0x29,0xa0,0x39,0xc4,0xe1, -0xf5,0xed,0xa2,0x3f,0xd3,0x3d,0x5f,0xd5,0x4a,0x11,0xa1,0x2f, -0x46,0x3b,0x87,0x9b,0xfc,0x4c,0x3b,0x9f,0x1b,0x2e,0xb2,0x1a, -0xda,0x76,0x29,0xdf,0x60,0x03,0x78,0x7e,0x0d,0x9d,0xad,0x61, -0xce,0x0a,0xf7,0xa0,0xaf,0x63,0x77,0x3d,0x71,0x5c,0xa7,0xcf, -0xfa,0xc3,0xbb,0x50,0x36,0xd0,0x43,0x59,0x9f,0x0d,0xe4,0xc9, -0x6c,0xa0,0xfa,0x8e,0xd1,0x7b,0x36,0x04,0x66,0xf7,0x48,0x05, -0x7e,0x81,0xc6,0x13,0x3c,0x10,0x48,0xdc,0x36,0x3c,0x0d,0xb8, -0x7c,0x18,0x55,0x7f,0xf1,0x71,0xa3,0x85,0x78,0x1e,0xb7,0x71, -0xa5,0x24,0x2e,0x8f,0xde,0xf7,0x02,0x4f,0x1f,0x30,0x86,0x3c, -0xc4,0xe9,0x1e,0xb2,0x34,0x51,0xc6,0x7a,0x3e,0xcd,0xfe,0xf7, -0xa0,0x9c,0x2f,0xbe,0x2e,0xc2,0x76,0x94,0x7d,0xa8,0xc8,0x09, -0xb8,0x31,0xc8,0x11,0x8b,0xef,0xb3,0x8b,0xef,0xc8,0x62,0x1c, -0xb1,0x75,0x05,0xfa,0x70,0x42,0x4b,0x47,0xf0,0x04,0x12,0xb0, -0x65,0x7e,0xe6,0xd9,0x16,0x05,0x67,0xbb,0xc3,0xb1,0x89,0x11, -0x5c,0x5b,0x4f,0xb6,0xe5,0x0c,0xfd,0xf9,0x7b,0x84,0xa9,0x89, -0x72,0x53,0x9d,0x84,0xb9,0x0e,0xd2,0xc8,0x4a,0x5a,0xee,0x27, -0x6e,0xbd,0x27,0x79,0x9e,0xe1,0xd3,0xf9,0x4f,0x31,0x9e,0x21, -0xb9,0x0b,0xeb,0x78,0x89,0x6c,0xcb,0x36,0xa5,0x99,0x70,0xaf, -0xe9,0x04,0x72,0xe7,0x48,0x9e,0xcb,0x62,0x74,0xb0,0x95,0x49, -0x23,0x4b,0xed,0x23,0x0d,0xac,0x74,0xd4,0x2b,0xa8,0x9d,0x6c, -0x0b,0x59,0xb2,0xa8,0xed,0xab,0xf4,0x60,0x5b,0x9a,0xe9,0x4d, -0x58,0x16,0x68,0xbd,0x66,0x6b,0x83,0x8e,0x48,0x94,0x75,0xd2, -0x52,0x82,0xb7,0xf2,0x49,0xa3,0x26,0x6a,0x39,0xc7,0x0f,0x24, -0x2c,0x46,0x29,0x0f,0x18,0xb6,0xe5,0x0e,0xf7,0xb6,0xab,0xe8, -0x9d,0xa8,0xa0,0x6c,0x8b,0x96,0x6d,0x0f,0xf3,0x6c,0xb3,0x9d, -0x1b,0x24,0x7e,0x0c,0xa1,0x44,0x54,0xdb,0x4b,0x87,0x5b,0xc2, -0x64,0x87,0x95,0xbf,0xef,0xa7,0xf2,0xad,0x14,0x87,0xfa,0xed, -0x68,0x54,0x45,0x11,0x27,0xe1,0xfb,0x07,0x9c,0xa7,0xf9,0x04, -0x7d,0x3e,0xc5,0x40,0x6d,0x84,0xaf,0x22,0xeb,0x15,0xb4,0xd9, -0xec,0xc8,0x8e,0xdf,0xa1,0x50,0x58,0x69,0xfb,0x24,0x36,0xd8, -0x63,0x53,0x01,0xd0,0x34,0x53,0xa4,0xd0,0x46,0xe7,0x6d,0x4c, -0x1b,0x5f,0x77,0x1a,0x25,0xf3,0x7d,0x09,0x47,0x61,0xc7,0x9b, -0x69,0xe7,0xa7,0x2a,0x7b,0xb6,0x89,0xb2,0x7d,0x11,0x6b,0xaf, -0x23,0xdb,0x2a,0x8b,0x46,0x58,0x55,0x3d,0x48,0xca,0xd9,0x3e, -0xd7,0x3e,0xe0,0xc4,0x93,0x81,0x93,0x62,0xcc,0x50,0xcf,0x3e, -0xbe,0x13,0x15,0x29,0xbf,0xc3,0x17,0xa3,0x5d,0x82,0x4c,0x9c, -0x7b,0x26,0xe2,0x41,0xa2,0x70,0xb3,0xf8,0xbf,0xe6,0xef,0x7f, -0x02,0xa6,0xe3,0xfb,0xbe,0xf1,0x11,0xc0,0xff,0x94,0xef,0xdb, -0x73,0x1d,0x14,0x15,0x78,0xba,0x65,0x6f,0x02,0xac,0x85,0xfc, -0x9f,0x21,0x9e,0x5a,0x93,0xde,0x3d,0x0a,0x0b,0xd8,0x96,0x0c, -0x4f,0x27,0xc8,0x83,0x46,0xcf,0x08,0x4c,0xf7,0x76,0xa3,0xa3, -0x9f,0xcf,0xbb,0x67,0xb7,0xd2,0x92,0xe4,0x56,0x7a,0xfe,0xeb, -0xcb,0x5b,0xa6,0xf6,0xc5,0x85,0x8f,0xde,0xef,0xeb,0xe2,0x97, -0xb4,0xe3,0xe5,0x61,0x9c,0x7c,0x69,0x9b,0xf5,0x24,0xce,0xd6, -0x92,0x07,0xb4,0xb6,0x5b,0x94,0xdb,0xd6,0xdd,0x67,0x76,0x62, -0x03,0x5f,0x77,0xff,0x3d,0xde,0xeb,0xb1,0x9e,0x4c,0xf4,0xbc, -0x74,0x5e,0x26,0xc1,0xbf,0x8e,0x24,0x93,0x29,0xe0,0xc9,0x43, -0xe7,0xa7,0x99,0x49,0x3a,0x31,0xfd,0x28,0xbf,0x14,0x39,0x13, -0x72,0xe7,0x2a,0xff,0x59,0xcb,0x5d,0x9b,0xb6,0xa1,0x6c,0x65, -0xc3,0xf0,0xdf,0xdb,0x6d,0x1d,0xe4,0x60,0xca,0xe3,0x8c,0xb2, -0x24,0x7a,0xbf,0x9e,0x78,0x5f,0x98,0x20,0x66,0xdb,0x4d,0xbe, -0x78,0x94,0x23,0xf6,0x0d,0x68,0xa7,0x05,0x36,0xa5,0xc3,0x69, -0xa7,0x0d,0x65,0x3d,0x3a,0x66,0xe8,0x06,0xd3,0x1a,0x94,0xda, -0xa6,0xc7,0x99,0xe0,0x31,0x6d,0x23,0xee,0x55,0xd1,0x67,0x13, -0xed,0x3b,0xc8,0x17,0x56,0x51,0x50,0x38,0x49,0xfc,0xdc,0x42, -0x96,0x91,0xea,0x27,0x1b,0xdd,0x4a,0x30,0x7a,0xc8,0xba,0xb5, -0x72,0x3c,0xbb,0x03,0xd6,0xb8,0x85,0x66,0x23,0xa8,0x7a,0xf5, -0x28,0x61,0x53,0x2c,0x1b,0x88,0x96,0x43,0xb8,0x1f,0x16,0x39, -0xe4,0xbb,0x84,0x8f,0x17,0x59,0xaa,0x91,0x31,0xc6,0x4c,0x20, -0xce,0xe2,0x6a,0x79,0x2b,0xee,0x31,0x72,0x38,0x03,0x7a,0xab, -0xe7,0x91,0x88,0x9e,0xbd,0xf2,0x9e,0xe2,0xfc,0x33,0xa5,0x9f, -0x08,0xf7,0x1d,0x94,0x05,0xd7,0xe3,0x88,0xca,0x7f,0x5a,0x43, -0x14,0x58,0xc3,0x5e,0x93,0x83,0x49,0xeb,0xf0,0x71,0x63,0x8d, -0xc3,0x0c,0x13,0x45,0xc4,0x22,0x9d,0xa8,0xa7,0x3c,0xe6,0x5d, -0xa0,0x5e,0x33,0xd5,0xfc,0x37,0x86,0xd9,0xc3,0x59,0xc9,0xc3, -0x2e,0x6d,0xe1,0x89,0x8f,0x83,0x89,0xd3,0x38,0x0e,0x26,0xff, -0xa9,0x83,0x62,0xd5,0x0e,0xf2,0x31,0x54,0xec,0x14,0xed,0xc1, -0x47,0x8d,0x76,0x8b,0xef,0xd8,0x7f,0xa2,0x31,0xe5,0x7e,0xf4, -0x75,0x3a,0xf2,0x33,0xc1,0x09,0x6d,0x3a,0xb6,0xe5,0x38,0x38, -0x6c,0xed,0x77,0x34,0x74,0x90,0xb9,0xc3,0xd3,0x2d,0x0e,0xa1, -0x9c,0x3b,0xf1,0x4b,0x80,0xb8,0x1b,0x5e,0xb0,0xe2,0x70,0xf6, -0x6d,0x75,0x3e,0xb0,0x23,0x81,0x82,0x1d,0x3a,0x53,0xe6,0xf2, -0xc5,0xed,0xcc,0x58,0xab,0xf5,0x02,0xa2,0x0b,0x25,0x65,0x5b, -0xa0,0xc7,0x37,0x11,0x6c,0x41,0x1a,0xcb,0x7a,0xc7,0x7a,0x95, -0xa2,0xe2,0xc3,0xec,0xa9,0x6f,0x51,0xcf,0xdc,0x3e,0x6f,0x4f, -0x3c,0x4e,0xd2,0xb1,0xdb,0x3a,0xa0,0x6d,0x30,0x6a,0x3f,0xe0, -0xb6,0x73,0xaa,0xcf,0x9f,0xa9,0x0d,0x7e,0xbf,0x87,0xfb,0x47, -0x12,0xa5,0xdf,0x45,0xa9,0x1e,0x73,0xe1,0x78,0xeb,0xcc,0x58, -0xe1,0x08,0x6b,0x0d,0x8a,0xb6,0x55,0xec,0x42,0x59,0x1e,0x9f, -0x93,0xeb,0x09,0xf7,0x68,0x29,0xdd,0x3a,0xd3,0x17,0x97,0x61, -0x91,0xe4,0x91,0xab,0x5c,0xfa,0x31,0x6b,0xaf,0xc8,0x50,0xa3, -0xc4,0x2a,0x46,0xe0,0xe8,0xe7,0x04,0xf1,0x2a,0xe9,0xb5,0x08, -0xf1,0xb8,0xe2,0xa2,0x56,0x1d,0x75,0xc7,0xe5,0x7a,0x82,0xc7, -0x95,0x74,0x47,0x7b,0xb9,0x9f,0x12,0x8f,0xc7,0xf2,0x74,0xdb, -0xd8,0x2f,0xb0,0xf5,0x7a,0x8b,0x2b,0x03,0xa5,0x72,0x3d,0xfe, -0xc4,0x5c,0x8f,0xab,0xa6,0x67,0x93,0x9f,0x9f,0xa9,0x51,0x01, -0x27,0x26,0x3b,0x51,0xdd,0x1c,0xeb,0x91,0xaf,0x12,0x20,0x39, -0xa5,0x38,0x18,0x58,0xb3,0x73,0xac,0x61,0x97,0x1d,0xe8,0x99, -0x76,0x01,0x27,0x4e,0x09,0x90,0x67,0xe4,0xb7,0xde,0x73,0x68, -0x97,0x6f,0x6d,0x44,0x3b,0x2d,0xa4,0x85,0x75,0x09,0x5f,0x22, -0x66,0x13,0x69,0x47,0x25,0x55,0x8e,0xb5,0xcd,0xa6,0x9d,0x23, -0x8f,0xfe,0x93,0x8e,0xa9,0xe2,0x79,0xc4,0x63,0x75,0x8a,0x2c, -0x87,0x76,0x6d,0x4e,0x9c,0xa8,0x2d,0xb5,0x5b,0xd6,0xf3,0x41, -0xbb,0x7c,0x7a,0xea,0x8f,0xb3,0x2e,0x01,0xe8,0x71,0xd8,0x6c, -0x1a,0x2f,0x6c,0x42,0x7f,0x54,0xe4,0xe9,0x27,0x9e,0x54,0x59, -0x84,0x67,0xc8,0x06,0xb7,0x24,0x8e,0x3f,0xa2,0x07,0x2a,0x7a, -0x09,0xa9,0x48,0x97,0x72,0x03,0x4d,0x0c,0x59,0x3e,0x8d,0x3a, -0xaa,0x1c,0x41,0x33,0xcd,0x00,0x58,0x0c,0x0d,0xa5,0x2c,0x7a, -0x93,0xb5,0x56,0xd1,0x02,0xd8,0xf1,0x33,0x9e,0x54,0x5b,0x5f, -0x8f,0x65,0x75,0x4f,0xd7,0x3a,0x51,0xc6,0x53,0x58,0xcf,0x5b, -0x2f,0x9c,0xa0,0xa0,0xc7,0xda,0xcd,0xf9,0x99,0x6d,0x38,0xff, -0x2b,0xf8,0xe9,0x39,0xe8,0x4b,0x95,0x25,0x38,0xca,0x23,0xcb, -0x7a,0x44,0xe0,0x93,0xe4,0x59,0x9d,0x53,0xcb,0xa1,0xf5,0x34, -0x17,0xe8,0xa4,0xc6,0x88,0x94,0xb4,0x75,0x91,0x0e,0xe7,0xb1, -0x9b,0x64,0x30,0x9d,0xc6,0x5f,0xe0,0x64,0xf2,0x61,0x68,0xf9, -0x63,0x8a,0x7f,0xd4,0xbf,0x63,0xd6,0x41,0xe0,0xe7,0x20,0xac, -0xde,0x21,0x8d,0x9d,0x18,0x2c,0xc9,0x70,0x72,0xa6,0xe6,0x04, -0xf4,0x64,0x9f,0x89,0x3e,0xfb,0x6d,0xdc,0x32,0x3c,0x47,0x4e, -0xf0,0xee,0xc7,0xa7,0xd8,0xd6,0x07,0xc4,0x4f,0xef,0x25,0xcb, -0xd1,0x24,0xe0,0x69,0x3f,0xe9,0x98,0xa3,0x34,0x5b,0x62,0x1b, -0x6c,0xe6,0x16,0xf2,0x59,0x3f,0xc6,0x76,0xd8,0x05,0xf3,0xb1, -0x64,0xa3,0x5b,0x9f,0x11,0x9e,0xba,0x1c,0xbb,0xd5,0x05,0xa8, -0x3e,0xa2,0xec,0xce,0x5e,0x35,0xf7,0x06,0x50,0xba,0xb3,0x5f, -0x49,0xe4,0x2c,0xf9,0x3c,0x8c,0xe3,0xc9,0x93,0x93,0x11,0x4a, -0xfe,0x97,0xc6,0xde,0xca,0x2e,0x91,0x02,0xbe,0xc8,0x04,0x1e, -0x3c,0xd6,0x1b,0x0e,0xed,0x94,0x7f,0x73,0x94,0x7c,0x95,0xa3, -0x3d,0x67,0x08,0x92,0xcf,0x79,0x38,0x4e,0x24,0x7f,0x9c,0x39, -0x0f,0x31,0x5d,0x0b,0x4d,0xf4,0x77,0xd0,0x77,0x2d,0xca,0xbe, -0x24,0xfa,0xc0,0x47,0x52,0xa5,0x73,0xa1,0x91,0x8e,0x41,0x23, -0x6d,0xc2,0xfd,0xc3,0x8e,0x07,0xd8,0xa2,0x23,0x15,0x97,0x07, -0x27,0xac,0x7f,0x9d,0x22,0x4d,0x3a,0x94,0xc6,0x53,0x63,0xe9, -0x27,0x28,0xd7,0xe9,0x3a,0xdf,0x43,0x73,0x11,0x36,0x5b,0xff, -0x86,0x4f,0x76,0x14,0xb4,0xdc,0x0d,0x1a,0xbe,0x7b,0xd2,0x36, -0xe1,0xc4,0x5a,0xe6,0xa4,0xe6,0xf8,0x91,0xe6,0x79,0x57,0x47, -0x73,0xa0,0x92,0xcf,0xf5,0xbe,0xc7,0x15,0x9b,0xab,0x52,0x9b, -0x92,0xd0,0xee,0x14,0x75,0x01,0xfd,0x4e,0x48,0x8f,0x71,0x70, -0x9c,0xdc,0x75,0x92,0x37,0xd0,0x45,0x7a,0xf2,0x55,0xc0,0xb7, -0x06,0x7d,0xe9,0xc4,0xbf,0x83,0x74,0xff,0x38,0xed,0x9e,0x1a, -0x3f,0x91,0x35,0x0b,0x5b,0x5b,0xc1,0x1b,0x83,0x8f,0x0b,0x91, -0xa5,0x72,0xac,0x68,0xbd,0x17,0x41,0xb4,0xc5,0xda,0x01,0xac, -0xbd,0x07,0x78,0x22,0x9c,0x63,0x3d,0x08,0x1e,0xd3,0x7f,0x5e, -0xba,0x73,0xf0,0x53,0xe1,0x49,0x79,0xe2,0xa9,0xd6,0xf6,0x9e, -0x66,0x3e,0xba,0xf2,0xf7,0x9d,0x42,0x2a,0x3c,0xd1,0xb9,0xc2, -0xd3,0x5a,0x6b,0x1d,0x8d,0x4b,0x90,0x46,0x74,0x79,0xf8,0x67, -0x62,0xcc,0x28,0xa2,0xac,0xea,0xf1,0x3d,0x18,0xdd,0x6f,0xa2, -0xde,0x27,0x64,0x8f,0xdb,0xb0,0xb5,0x28,0xab,0x9c,0x90,0xc7, -0xb2,0xf5,0xd8,0xb1,0x4f,0xa5,0x0b,0xf7,0x32,0xf6,0x4f,0xa8, -0x6b,0x89,0x6f,0x8e,0x70,0xdc,0xf9,0x21,0x51,0x70,0x7b,0xa2, -0x5e,0xb2,0x61,0xfa,0xf4,0xd1,0xb4,0xca,0xbe,0xf3,0xef,0x4a, -0x1d,0xc7,0xda,0x21,0xca,0x8d,0x42,0x1f,0xb1,0x07,0x8e,0xf3, -0x97,0xac,0xf5,0xae,0x79,0x31,0x91,0x9e,0xa1,0x38,0xf5,0x59, -0x2d,0x5a,0x1b,0x9f,0x9c,0x15,0x56,0x58,0xa5,0xe3,0x5a,0x6b, -0x17,0xb6,0x4d,0x5a,0xde,0xc8,0x2e,0x47,0x7a,0xb6,0x77,0xa7, -0x49,0xc1,0x8e,0xd3,0x19,0xbf,0x3b,0xd9,0x7c,0x59,0x4f,0xe3, -0x70,0x3d,0xda,0x96,0x01,0xf0,0x16,0x95,0x6d,0x29,0xe8,0xa1, -0xc4,0x3b,0xb4,0x5f,0x67,0xbd,0x68,0xbd,0x05,0x6f,0xf4,0x3d, -0xd8,0x89,0x5e,0x28,0x9f,0x0f,0xdc,0xe4,0x42,0x5e,0xd5,0x7c, -0xe7,0x0d,0xd6,0x3f,0xe0,0x1d,0x1c,0x65,0xdb,0xf2,0x1a,0x95, -0xff,0x1b,0xbf,0x4d,0xb3,0x85,0xad,0x9f,0x9c,0x62,0x67,0x8b, -0x40,0xb9,0xfd,0x22,0xfb,0x04,0xfa,0x49,0xcd,0x3e,0xf7,0x59, -0x7b,0x58,0x3f,0xa9,0xd9,0xb9,0xdb,0xb1,0x1d,0x66,0x5e,0xda, -0x04,0xcd,0xf0,0xef,0x9e,0xf5,0xd3,0x69,0xf8,0xe3,0x8a,0x7b, -0xff,0x68,0x3d,0x7f,0x02,0x5e,0xf2,0x00,0x47,0x47,0x49,0x1b, -0xb4,0x92,0x3f,0x1e,0x81,0x1e,0x7f,0xdb,0xfa,0x04,0xbe,0x54, -0x17,0xe1,0xa8,0x8b,0x79,0xf3,0x80,0x5b,0xfa,0x4e,0x87,0xbb, -0xac,0x23,0xd6,0x9b,0xa8,0x33,0x62,0xbd,0x96,0x7c,0xe6,0xad, -0xa3,0x6f,0x14,0x4c,0x6f,0xe3,0xf8,0x11,0x4a,0x6f,0x07,0xc6, -0x9e,0xa7,0x7e,0xbc,0x4a,0xde,0xb0,0xe5,0xcc,0x8d,0xdb,0x9b, -0x3c,0x27,0x77,0x6a,0x63,0x39,0x2a,0xfe,0x63,0x5f,0x25,0x78, -0xbc,0x71,0x09,0xe8,0xed,0x97,0xd5,0xfc,0x5c,0xd0,0x4b,0xf9, -0x4e,0x6f,0xda,0x96,0x17,0x91,0x55,0x18,0xf8,0x5b,0xa7,0x31, -0xa2,0xc7,0x09,0xdd,0x39,0x41,0xbe,0x3a,0xd5,0xf1,0xa5,0x01, -0xd4,0x4b,0x7f,0x8f,0xfc,0xa4,0x23,0xe6,0x4f,0x60,0x7b,0x7a, -0xe9,0x59,0x02,0xca,0x5f,0x86,0xcd,0xde,0x07,0xff,0xf7,0x23, -0xd6,0xb8,0xbb,0x81,0xbd,0x0f,0xdd,0xfa,0x32,0xc1,0xde,0x9d, -0x1a,0x9e,0xde,0x07,0x9e,0x3e,0x01,0xef,0xf6,0x8c,0xa7,0x77, -0x75,0x39,0x48,0xe7,0x2e,0x68,0xee,0x7d,0xea,0x1a,0xd4,0xcb, -0x62,0x3c,0x7d,0x42,0x78,0xda,0xc0,0x78,0x52,0x11,0xe0,0x8e, -0x24,0x78,0x7a,0xf7,0x33,0xc2,0xd3,0x81,0x04,0x3c,0x75,0xba, -0xf0,0x14,0xee,0x86,0xa7,0xf8,0x88,0x6a,0xc8,0x29,0x41,0x34, -0x04,0x75,0xef,0x05,0x9f,0xbc,0xef,0xd8,0xd3,0x9e,0x6c,0xdd, -0x20,0x48,0xff,0x21,0x95,0x89,0x82,0xec,0x05,0x01,0x59,0x26, -0xe0,0xfc,0x84,0x73,0x3a,0x3e,0x8e,0x5d,0x3f,0xa0,0xdc,0x61, -0xa2,0xaf,0x2f,0x7a,0xd2,0x7d,0x3d,0xfc,0x15,0x08,0x93,0xa2, -0xa2,0xc3,0x22,0xf5,0x04,0x9e,0xef,0x60,0x27,0x9a,0x3b,0x0a, -0x78,0x94,0xec,0x6d,0xe7,0xb9,0x81,0xea,0x17,0x42,0x9d,0x3c, -0x72,0x32,0x9f,0x85,0x68,0xdb,0xa9,0x67,0x9b,0x90,0x5e,0xdd, -0x76,0x82,0xd9,0xfb,0x34,0xfb,0x40,0x14,0x89,0x62,0xd2,0x35, -0x87,0xc4,0xff,0xc0,0x1f,0xcd,0x75,0x0b,0x9f,0x9c,0xff,0xa4, -0x3c,0xd9,0x58,0x74,0x7b,0x06,0x61,0x48,0x6a,0x17,0x35,0xb7, -0x90,0xfe,0x38,0x44,0x2b,0x35,0xda,0xac,0x9d,0xae,0x4c,0x44, -0x0f,0x2b,0x49,0xce,0xd4,0xba,0x0d,0xc7,0xfb,0x08,0xd3,0x0c, -0x6c,0xe1,0xcc,0x85,0x0c,0x38,0xf3,0x55,0xda,0x4f,0x6a,0xbe, -0x6f,0x6c,0x56,0x84,0xce,0x7c,0xf9,0x28,0x27,0xd5,0x4e,0xef, -0xdb,0x39,0x56,0x7b,0x2e,0x64,0xa0,0xfb,0x4c,0x93,0x6e,0x39, -0xd6,0xa8,0x93,0x63,0x6d,0xa1,0x8c,0x9d,0x8a,0x2b,0x5a,0x78, -0xae,0xc2,0x71,0xc7,0x11,0x5c,0x58,0x09,0xc4,0x65,0x2e,0xa2, -0x90,0xa9,0x21,0xfc,0x7e,0xa6,0xf5,0x91,0x33,0x93,0xce,0x1e, -0x47,0x88,0xcd,0x13,0x8b,0xcd,0xa7,0x3b,0x11,0xee,0x34,0xed, -0x36,0x2a,0x1f,0x00,0xf6,0x60,0x23,0xfe,0xb5,0xf1,0x4a,0x33, -0x1f,0x47,0xad,0xfe,0xe4,0xb9,0xac,0x4f,0x45,0x3b,0x0d,0x97, -0x9c,0x7a,0x54,0xad,0xc7,0x9b,0xf3,0xdf,0x57,0x8c,0x12,0x23, -0x44,0xad,0x5e,0x8f,0x47,0x71,0xa5,0xf2,0x5a,0xd3,0x60,0xcb, -0x5b,0xe0,0xf5,0xb4,0x51,0xb6,0x31,0x40,0xa3,0x80,0x4a,0x02, -0xfc,0x84,0x01,0xbf,0x1a,0x0d,0xa6,0x28,0xf4,0xd0,0x67,0x33, -0x43,0x8b,0x66,0xf5,0xab,0xd1,0x41,0xc2,0xa9,0x8a,0x0f,0x9d, -0x59,0xb5,0x1e,0xad,0x1b,0x28,0xff,0xeb,0xca,0xc5,0x80,0x3b, -0x14,0x2c,0x7e,0xd8,0xd9,0x23,0x6a,0xfc,0x80,0x66,0x35,0x75, -0xe8,0x19,0x8f,0x90,0xc8,0x4f,0xcf,0xeb,0xba,0xb5,0x34,0x78, -0x22,0xdb,0x81,0x97,0x0f,0x34,0xff,0x3a,0x19,0x7f,0x0f,0x65, -0x45,0xb5,0xf6,0xf5,0xeb,0x95,0x40,0xee,0xb9,0xbe,0x71,0xf3, -0x73,0xfc,0x04,0xe1,0x51,0x3c,0x37,0xc9,0x06,0xf9,0xf5,0x8c, -0xcf,0x93,0xfa,0x0b,0xd1,0x2a,0x8d,0x7c,0xd7,0x6c,0xbd,0x18, -0x55,0xd5,0x4c,0x9b,0x10,0xed,0xb5,0xa5,0x05,0x4d,0xc5,0xb9, -0x3a,0x7f,0xae,0x3c,0x4d,0x45,0x47,0x07,0x22,0x75,0xaf,0x98, -0xea,0x73,0xf8,0x16,0x50,0x97,0xd0,0xdb,0xe7,0x12,0xff,0xea, -0x7f,0xc5,0x62,0x66,0x4f,0x33,0x78,0xba,0xd3,0x88,0xc6,0x21, -0x7c,0x4c,0x23,0x8f,0x8b,0x46,0x1e,0xa2,0x84,0x92,0x12,0xa6, -0x11,0x4b,0x94,0x4d,0x23,0x8f,0x5e,0xab,0x70,0xaa,0x11,0x80, -0xeb,0x2f,0x48,0xfc,0x51,0x4c,0x9a,0xf8,0x08,0xfa,0x9a,0x21, -0xa4,0x48,0x87,0xad,0x56,0xd8,0x0a,0xd0,0xf8,0x4f,0x10,0xcf, -0x83,0x0a,0x5e,0xd8,0x8d,0x36,0xdc,0x5b,0xa3,0xe7,0xc3,0xb9, -0x46,0x7e,0xd5,0xaf,0x8a,0x15,0x03,0xb6,0x20,0xe9,0x18,0x95, -0x3b,0x8d,0xf2,0xfa,0xa5,0x00,0xad,0xba,0x0d,0xba,0xa8,0x14, -0xa0,0xd9,0xa0,0xfe,0x1e,0x39,0xa5,0x0f,0x4a,0xa8,0x35,0xed, -0x7e,0x5a,0x37,0x17,0x9b,0xe9,0xad,0xf5,0x42,0x80,0xa4,0x28, -0x40,0x14,0x51,0x34,0x09,0x25,0x8c,0xee,0xe8,0x5a,0x02,0x4c, -0x3b,0x9f,0xe2,0x17,0x95,0x09,0x60,0x3a,0x07,0xf4,0xdc,0x54, -0xba,0xea,0xcd,0x23,0x03,0x0a,0xc7,0xc7,0x00,0x73,0xf4,0x84, -0x72,0x15,0xfb,0xf3,0xd3,0x96,0x1f,0xd7,0x6e,0xe0,0x04,0xf9, -0xa9,0x40,0x5c,0x8c,0x1a,0xe0,0x59,0x7b,0xa7,0x16,0x13,0xb2, -0xdf,0x46,0xa3,0xc3,0xed,0x2e,0x8a,0x07,0x7a,0xa4,0xbb,0xef, -0x53,0x70,0xc6,0x71,0xa2,0x1c,0x47,0x1e,0xb7,0x5b,0xeb,0x45, -0x1f,0xf2,0xea,0x7c,0xcc,0x15,0xda,0xa2,0x46,0xb8,0x6d,0x1f, -0xf1,0x7a,0x07,0xe7,0x6e,0x6c,0xdb,0xfa,0xb1,0x2b,0x97,0x26, -0xe0,0xb7,0x76,0x70,0xde,0x36,0xcc,0xeb,0x4c,0xba,0xcf,0x7b, -0x38,0xc4,0x2b,0x66,0x13,0x67,0xba,0xea,0x7c,0x5e,0x94,0x8f, -0xed,0x34,0xb7,0x47,0xcf,0x07,0x27,0xde,0xa1,0xf1,0x9c,0x08, -0x63,0x3a,0xc0,0x57,0x3e,0xb6,0xbd,0x36,0xc5,0x33,0x62,0xf3, -0x68,0x13,0x62,0xc7,0xc8,0x49,0xcf,0x6a,0xb7,0x75,0xa9,0x92, -0xe9,0x43,0x14,0x0b,0xb7,0xb8,0xc6,0xbf,0xc3,0x76,0x9e,0xc1, -0x9e,0x2f,0xe2,0xf6,0x7a,0x5d,0x2d,0x84,0x5d,0xd9,0x86,0x84, -0x3c,0xc7,0xf1,0x2d,0xf7,0x09,0xf4,0x4b,0x0b,0xe9,0x17,0xcf, -0xc9,0xe8,0x17,0xf2,0xd7,0x7b,0xd4,0x2f,0xa7,0x37,0xf2,0xe2, -0x68,0xd2,0x44,0x9b,0x10,0x1b,0xb1,0xb3,0x67,0xb0,0x7b,0x38, -0x4a,0x22,0xdb,0x99,0xc0,0xc9,0x1e,0x47,0xf6,0x92,0x7b,0x42, -0xe2,0x84,0xb2,0xa8,0xb4,0x58,0x13,0xfd,0xf2,0xa4,0x8f,0x57, -0x52,0x7f,0xac,0x3d,0x3d,0x58,0x49,0xad,0x33,0xd4,0x3e,0x44, -0xf3,0x13,0x8a,0xe9,0x8b,0x01,0x4d,0xcc,0xd5,0xe3,0xa0,0x93, -0x52,0x98,0xe7,0x55,0x89,0x6d,0xa4,0xfd,0x8a,0x81,0x9d,0x23, -0x88,0xbd,0xc2,0xc2,0x4b,0x5f,0x64,0x08,0x89,0x64,0xab,0x45, -0x7c,0xc9,0xfc,0x59,0x3d,0xef,0x17,0x2d,0x7d,0x82,0xd8,0xe5, -0xa8,0xca,0xc8,0x3b,0xfc,0xe2,0xe1,0x19,0x3e,0x61,0xf7,0xbc, -0x50,0x82,0xf6,0xa0,0x3d,0x6e,0xeb,0x64,0x30,0x76,0xd9,0x14, -0xb7,0xb3,0x63,0x3c,0x53,0xe4,0x84,0xfc,0x12,0x3f,0x76,0xe4, -0x92,0xb8,0x54,0xb5,0x6a,0xa9,0xbb,0xef,0xcc,0xb3,0xd8,0x74, -0xa4,0x64,0xcf,0xc5,0x25,0x5f,0xc6,0x35,0x42,0x17,0xa0,0x4c, -0x36,0xf5,0x58,0x8f,0xba,0x10,0xaf,0x6b,0x0e,0xf0,0x25,0xa7, -0xca,0x09,0xa4,0x8a,0x56,0x34,0xc7,0xeb,0x83,0x13,0xeb,0xba, -0x33,0xf6,0x37,0x8e,0xf7,0xfe,0x24,0xf6,0x8a,0xe8,0xcf,0x7b, -0x97,0x2d,0xe5,0x92,0x21,0xe1,0x9e,0x29,0x50,0xcc,0x3c,0x5f, -0x9c,0x50,0x43,0xfc,0xdb,0xc7,0x5f,0x6d,0xa4,0xec,0x6a,0x1b, -0xcf,0x85,0x54,0xeb,0xcc,0xb5,0x4e,0x21,0x2e,0x66,0xbb,0xa6, -0xe7,0x9a,0x0b,0xca,0x78,0x85,0xd5,0x68,0x34,0x63,0xae,0x38, -0x0e,0xd7,0x41,0xc7,0x4e,0x2b,0x2e,0xd9,0xc7,0xd4,0xcf,0x27, -0x8d,0x99,0x6c,0xbd,0xec,0x27,0x49,0x72,0xc0,0x8a,0xea,0xeb, -0x34,0xa4,0x34,0x27,0xa7,0x9d,0x61,0x69,0x57,0x10,0xf2,0x1c, -0xb9,0x36,0x8a,0x15,0xc2,0x5a,0xae,0x68,0x26,0x7e,0x1b,0xc1, -0x62,0xc6,0xcb,0x23,0x41,0xa7,0x61,0x69,0xa3,0xd8,0x3b,0xcc, -0xda,0x3b,0x19,0x2c,0x07,0x58,0x73,0x1f,0x8d,0x93,0xae,0x30, -0x8f,0xab,0x0b,0xca,0x2b,0x85,0x39,0xb2,0xf0,0xb9,0x22,0x09, -0xfb,0xdc,0x47,0x3e,0x83,0xad,0x6f,0x02,0x2e,0xbc,0xf8,0x20, -0xcb,0x11,0x6d,0xd1,0x63,0x36,0x86,0x6d,0x49,0x8f,0x9c,0x95, -0xc8,0xbb,0x34,0x63,0xcf,0x0f,0x59,0x8e,0xd0,0x9c,0x82,0xb5, -0x14,0x7d,0xbd,0xcd,0xb6,0xb1,0x99,0x46,0xe8,0xd6,0xa8,0xbc, -0x3f,0xb5,0xf2,0xac,0x9a,0x0b,0x41,0xd8,0x0a,0x38,0x6b,0xf2, -0x7c,0xb4,0xd7,0x6b,0x67,0x9a,0x5d,0xb3,0xdc,0x3c,0x7a,0xcd, -0x25,0x95,0x6a,0xed,0xa6,0x47,0x3a,0x14,0x4e,0xd9,0xb2,0x1c, -0x8c,0xc3,0x8b,0x48,0xf0,0xa3,0x75,0x5d,0xb1,0xb9,0x8e,0x71, -0x67,0x8e,0x94,0xf9,0xba,0xe5,0x3e,0x3c,0x27,0x2b,0xb3,0x3c, -0xce,0x11,0xe9,0x3e,0x6e,0x43,0xf3,0xa8,0x28,0xe3,0x41,0xd9, -0xa0,0x0e,0x35,0x46,0xe4,0xac,0x72,0xb0,0x67,0x67,0xaa,0x3b, -0xed,0xb4,0x6f,0x62,0x3e,0xeb,0x48,0x18,0x93,0x8b,0x8b,0x3e, -0x63,0x39,0x91,0x9e,0xa2,0xd2,0x13,0xc4,0x24,0x22,0xb6,0xf6, -0xdf,0xf1,0xab,0xa3,0xae,0x1e,0xf8,0x8e,0x97,0xc5,0x8d,0xad, -0x4d,0xb6,0xd7,0x09,0x3b,0xeb,0x86,0xa2,0x27,0x97,0x87,0x88, -0xf9,0x22,0x74,0xb5,0x99,0xf2,0x77,0x1d,0x71,0xd9,0x81,0x88, -0x7b,0x5e,0x71,0x32,0x3f,0xdf,0x19,0x29,0x89,0xf4,0xe0,0x33, -0x9c,0xb4,0xdf,0xe7,0x9e,0x31,0x13,0x9b,0xb9,0x18,0x37,0xeb, -0x2c,0x36,0x23,0xd7,0xc3,0x91,0x76,0xf7,0x75,0x0b,0x61,0x07, -0x2f,0x0e,0x4d,0xb8,0x1f,0xe1,0x13,0x79,0xb6,0xc9,0x2c,0x52, -0xcc,0x4e,0xc5,0x5b,0x34,0xe6,0x17,0xee,0x75,0xb2,0xcc,0x2a, -0x7b,0x9d,0x22,0x69,0xaf,0x4e,0x1e,0x2b,0x51,0x48,0xb1,0x8f, -0xe6,0x11,0x44,0xec,0xde,0x39,0x34,0x6a,0xb3,0x57,0x61,0xb9, -0xe6,0xf1,0x84,0x99,0x8f,0xdb,0x62,0xab,0xd5,0xf4,0x3c,0x5d, -0xf2,0xc8,0xd4,0x2c,0x5d,0xfd,0x15,0x97,0x0e,0xe2,0xf5,0x36, -0xbd,0x0a,0x25,0xd1,0x8e,0x39,0x5f,0x13,0x09,0xc7,0xf0,0xc7, -0xd1,0x7c,0x3e,0xf6,0x6a,0x0e,0x55,0x0e,0x8e,0x7f,0xc4,0xbd, -0x17,0xb5,0x5e,0xb3,0x9e,0x51,0x91,0x19,0xad,0x38,0x5a,0xa3, -0xa2,0x5c,0xeb,0x49,0x55,0x52,0xcd,0x07,0xc5,0xf9,0x87,0x3c, -0x37,0x35,0x93,0x47,0xf9,0xd6,0xa0,0xf6,0xfb,0x55,0xc9,0x98, -0xf5,0xa6,0x31,0x88,0x66,0x5a,0x9b,0x94,0x68,0x81,0xdb,0x2c, -0xcb,0xce,0xe1,0xc5,0x66,0x86,0xc4,0xc9,0x74,0x07,0xf5,0xed, -0xc0,0xff,0xa2,0x4c,0xfb,0x1d,0x5f,0xdb,0x9e,0x1f,0xe3,0xb1, -0xd7,0x69,0xba,0xd6,0xf5,0x77,0x38,0x6b,0xa8,0x9a,0x4e,0x26, -0x4b,0x78,0x7a,0xe3,0xc4,0x0e,0x77,0xa8,0x91,0x9c,0x9d,0xea, -0x1b,0x19,0xd4,0xff,0x88,0xf3,0xbd,0xa6,0x0e,0x5e,0x05,0x1d, -0x4d,0x5c,0x0b,0x1f,0x9f,0x0d,0xe7,0x19,0x1b,0x7a,0x96,0x6c, -0x1b,0xf1,0x55,0x3b,0xdb,0xc9,0x48,0x32,0x6f,0xd2,0x99,0xe5, -0xda,0x99,0xdc,0x27,0x8a,0xff,0x0e,0x4d,0x9c,0x67,0x19,0xd3, -0x7f,0xad,0xdd,0xfc,0x67,0x33,0x21,0x5a,0x4a,0xd4,0x3f,0xd1, -0x93,0xa6,0x90,0x9e,0xdf,0xde,0xaa,0xbe,0x27,0x24,0x72,0x79, -0xd6,0xba,0x9a,0x6b,0xb7,0x06,0x77,0x9b,0xd5,0x1c,0x62,0xb2, -0x79,0x8a,0x87,0x03,0xc4,0xb5,0x4d,0xd6,0x36,0x95,0x15,0xd5, -0x1c,0x83,0x72,0x87,0x29,0x82,0x6c,0x67,0xcb,0xe8,0xa3,0x2f, -0x7e,0x34,0xa1,0xb6,0x8f,0x29,0x53,0x1a,0xe0,0x59,0x86,0xf1, -0xd9,0xee,0x30,0x45,0x3f,0xea,0xeb,0x02,0x6b,0xf4,0x8a,0x59, -0xdb,0x7e,0xda,0x33,0x58,0x8f,0x37,0xe2,0xe7,0x5a,0x5b,0x78, -0x12,0xdf,0x3b,0x00,0x1e,0x4f,0x87,0x5f,0x7c,0x3c,0xff,0x43, -0x5b,0xcf,0x1c,0x9d,0x5b,0xb0,0xe7,0xc4,0x3a,0xb1,0xab,0xf6, -0xf0,0x8b,0x29,0xaa,0x6d,0xb1,0xbf,0x98,0x13,0x97,0x8f,0x10, -0x4e,0x96,0xc3,0x4d,0x1f,0x9f,0xbd,0xf2,0x3c,0xc1,0x73,0xed, -0x89,0x46,0x11,0xca,0xf0,0x44,0x89,0x7b,0xfd,0x4c,0x23,0x85, -0x3d,0x95,0x0b,0xda,0xa6,0xd7,0x0f,0x53,0x5c,0xdd,0x8a,0xb3, -0x6d,0x84,0x73,0xed,0x91,0xc4,0x32,0xbe,0x1e,0xaa,0x67,0x1b, -0x45,0xda,0xf9,0xc4,0xbb,0x61,0xc7,0x27,0x53,0x1e,0x4f,0x62, -0x54,0x17,0xb4,0x57,0x6e,0x3a,0x36,0x8f,0xfb,0xa1,0xe6,0x63, -0x2a,0xef,0x11,0x14,0x5f,0xe7,0x44,0xab,0x4d,0xf8,0xf7,0x28, -0xc9,0x6f,0x80,0x66,0x56,0xc2,0x4f,0xc2,0x79,0x50,0xad,0x9b, -0xc1,0x59,0xbb,0xe2,0x07,0xf5,0x8b,0xd2,0xac,0xaf,0xb4,0xdf, -0xd4,0xa4,0xe6,0xad,0xf2,0xba,0xf2,0x75,0xe8,0xcd,0x6e,0xf7, -0x08,0xa1,0x2b,0xdf,0x10,0x20,0x8d,0xd6,0xc2,0x2b,0x39,0x5a, -0x49,0x67,0xb7,0xea,0x2f,0x2a,0xa9,0x5a,0xbb,0xd9,0x3b,0xbf, -0x93,0xc5,0xf1,0x71,0x66,0x2a,0xb6,0x4a,0xd0,0x4f,0x6f,0x85, -0xdd,0xf6,0xdd,0xf1,0x34,0x45,0x37,0x4b,0xee,0x49,0xca,0x15, -0x5a,0x37,0xc6,0x8f,0x43,0xc8,0x72,0xca,0x3d,0x57,0xbf,0x54, -0x33,0x1f,0x6d,0x4c,0x23,0x7f,0x8a,0x66,0xb8,0xe1,0x78,0x88, -0xed,0xca,0x36,0xd2,0x32,0xad,0x9c,0x2f,0xe9,0xd4,0xf1,0x1a, -0x71,0x53,0x27,0x7d,0xe7,0xac,0x93,0xaf,0xda,0x89,0x92,0xea, -0xaa,0xf3,0x33,0x1b,0xfd,0x09,0xbb,0x46,0x54,0xd6,0xc5,0xaf, -0xe4,0x77,0x70,0x11,0x89,0x1b,0x39,0xb4,0x33,0x47,0xa9,0x1c, -0x69,0xe6,0x8b,0x34,0x3a,0xf3,0x7f,0x9a,0xf8,0xce,0xf9,0xd6, -0xc5,0x21,0xe2,0xd8,0x0e,0xbd,0xae,0x8a,0xfc,0xf3,0x8e,0x6e, -0xd0,0x1e,0x72,0xaf,0x38,0x88,0x1b,0xa9,0x89,0xc6,0x7c,0x2a, -0xdb,0xff,0x60,0x4d,0x1e,0x3d,0xfd,0x3c,0x39,0x8d,0xda,0xb5, -0xb2,0x2f,0xb0,0x4e,0xc5,0x53,0x0e,0x7f,0xf9,0x1d,0xcd,0x60, -0xfb,0xf2,0x7e,0x35,0xd3,0xcf,0xf9,0x4a,0xcd,0x21,0x77,0x4e, -0xcc,0xc9,0x9d,0x65,0x90,0x97,0x11,0xb6,0x76,0x3b,0xdf,0x7e, -0x39,0xe5,0x31,0x3b,0xaa,0xed,0xb0,0xb5,0x5f,0xaf,0x7f,0x67, -0x7c,0x78,0x62,0x5f,0x41,0x70,0xe1,0xcd,0x67,0xed,0x77,0x32, -0xf9,0xc7,0x1f,0x37,0xb1,0xb9,0x5e,0xcd,0x76,0xca,0x3e,0x19, -0x9a,0x51,0xbc,0xa7,0xe7,0xdf,0xb6,0x73,0xfe,0xae,0x88,0x66, -0x5d,0x47,0xf8,0x79,0x1b,0x7d,0x97,0x47,0xd1,0xf2,0x10,0xdf, -0x69,0x75,0xbe,0x6b,0xb4,0x06,0x57,0x61,0xe2,0xfe,0x74,0xfd, -0xe5,0x03,0x91,0xce,0xf1,0x5c,0x00,0x7a,0x74,0x87,0x5e,0x1b, -0x25,0x32,0x49,0x33,0x6c,0x20,0xd8,0xd2,0x4e,0xe5,0xeb,0x71, -0xfc,0xdd,0x30,0x1f,0xc1,0xb0,0x56,0xc1,0xe2,0xe0,0x88,0x73, -0x6c,0xae,0x55,0x12,0x94,0x65,0x73,0x66,0xcb,0xdb,0x78,0xf0, -0xb8,0x3c,0x9d,0x76,0xc7,0x47,0x39,0x10,0x67,0x79,0x3c,0xf4, -0xf4,0x88,0x5e,0x13,0xd3,0xf3,0xda,0xa6,0x6e,0x10,0xad,0xf9, -0xf4,0x10,0xd9,0xfe,0xb6,0x93,0x23,0xe8,0x09,0xa2,0x84,0xdc, -0x48,0x2c,0x3a,0x77,0x79,0xc5,0x1d,0xdd,0x56,0xde,0x76,0x24, -0xcd,0xb9,0xb6,0x74,0x8f,0xd0,0x5c,0xf1,0xc7,0x11,0x77,0xf6, -0xca,0x1d,0x09,0x2b,0x88,0x4e,0x3c,0xb7,0x18,0x50,0xaf,0xe3, -0x95,0x4b,0xea,0x5b,0x61,0x6b,0xe9,0x3b,0x31,0x51,0xc7,0x4e, -0x36,0x93,0x64,0x1d,0xe1,0xd5,0x5c,0x47,0x74,0x8c,0x0e,0x89, -0xdb,0x4b,0x39,0x81,0x76,0x9a,0x8b,0xa2,0x2c,0xc3,0x21,0xbd, -0x32,0x9d,0xe2,0x71,0x3f,0xad,0x57,0x6f,0x81,0x97,0xe7,0xa7, -0x98,0xbf,0x23,0xc1,0x4a,0x78,0x92,0x79,0x97,0xa8,0xed,0x50, -0xb7,0xa8,0xc8,0x13,0x1f,0xf5,0x39,0x31,0x54,0x6c,0xe5,0xc7, -0x11,0x37,0xb5,0x68,0x1e,0x83,0xad,0x07,0xa2,0xee,0xe8,0x88, -0x35,0xd3,0x27,0x6e,0x6a,0x9c,0xe8,0xcb,0x7a,0x76,0x1d,0xae, -0x98,0x4d,0x7b,0x9f,0xb4,0xe2,0x8c,0xfd,0xe6,0xa8,0xab,0xac, -0x8f,0x32,0xf2,0x47,0x18,0x72,0x7d,0xd5,0x49,0x3c,0x11,0xe1, -0x8c,0x6a,0x38,0xce,0x23,0x50,0x10,0x7d,0x68,0x43,0xde,0x33, -0x44,0x71,0xb4,0x8a,0xd2,0x5e,0xfd,0x7b,0xd7,0xa5,0x13,0x76, -0x76,0xcf,0x5f,0xd2,0x28,0x8f,0xe6,0x09,0xf7,0x0c,0x50,0x71, -0xba,0x76,0x8d,0x21,0x8c,0x76,0x6b,0x27,0xea,0xe6,0x6c,0x3d, -0x9a,0xe0,0x5e,0xa7,0x15,0x8b,0x7e,0x1c,0x9a,0x45,0x59,0x96, -0xe0,0x85,0x10,0x7c,0x87,0x12,0x23,0x74,0x8e,0x4b,0x3a,0x9c, -0x38,0xa5,0x23,0x36,0x82,0xe2,0xa2,0x69,0x07,0xeb,0x86,0x80, -0x1e,0x5f,0x70,0xf2,0x4d,0xeb,0x34,0x1f,0xf2,0x2c,0x28,0x1f, -0x7f,0x11,0xc7,0x43,0x9e,0x8b,0xba,0xaf,0xfd,0x25,0x0f,0xad, -0x38,0x51,0x9e,0xdd,0x3a,0x9c,0x85,0xb5,0xc7,0x44,0x7e,0x74, -0x13,0xcd,0xa6,0xe2,0x55,0xad,0xa0,0x60,0xb3,0x93,0x99,0xdb, -0xab,0xbf,0x4b,0x00,0xae,0x5f,0x47,0x2b,0x5e,0x36,0x53,0x74, -0xd8,0x44,0x12,0xf4,0x2e,0x7b,0x45,0x61,0x9e,0x79,0xae,0x56, -0xd1,0xa8,0x79,0x4a,0x72,0xc4,0x73,0xca,0x3b,0x39,0x3f,0x30, -0x69,0xb9,0x28,0x10,0x97,0xd1,0x48,0x8f,0x9a,0x7d,0xe7,0x21, -0xed,0xfa,0x21,0xc5,0xa6,0x6a,0x7c,0x7c,0xbd,0x3d,0x62,0x1e, -0x37,0x46,0x1e,0xed,0x3e,0x4a,0x0e,0x3b,0xa1,0xb2,0xa8,0xb9, -0xd6,0x1e,0x9a,0x47,0xd2,0x42,0x5f,0x0c,0x3a,0xe3,0x79,0x5e, -0x58,0xca,0x54,0xfa,0x0a,0x51,0x94,0x71,0xff,0x0e,0xe1,0x76, -0x0b,0x45,0x5d,0x01,0x6b,0x23,0xfa,0xe4,0x83,0x55,0xdd,0x2b, -0x52,0x80,0xa1,0xdd,0x64,0x57,0x0f,0x8b,0x81,0x88,0xc0,0x37, -0xd3,0xd9,0x59,0x6a,0xd4,0xd2,0xea,0x42,0xc9,0x1d,0xd6,0x3f, -0x01,0xe5,0x26,0xfe,0xa2,0xcd,0x31,0xd2,0x8e,0xca,0x2f,0xf4, -0xe2,0x2d,0xcd,0x19,0x5e,0xb2,0xce,0x2a,0x7f,0xaf,0x66,0xa0, -0x67,0x7d,0x9a,0x91,0x15,0xfe,0x06,0x50,0xeb,0xc9,0xe6,0xd4, -0x5d,0xdc,0xdb,0xda,0xc3,0xda,0x7f,0x79,0x86,0x10,0x9a,0x02, -0x39,0x3d,0xc6,0xab,0x20,0xde,0x54,0x9b,0x9e,0x25,0xef,0xe4, -0x8d,0xb4,0x17,0x61,0x72,0xe6,0xd1,0xef,0x44,0x29,0x7e,0x7b, -0x4c,0x90,0xea,0xd8,0x0e,0x0c,0x6e,0xa7,0x7a,0xfc,0xa4,0x2f, -0xa3,0xce,0xfb,0x7e,0x1e,0x7d,0x8d,0x1f,0x0f,0xf2,0x93,0x55, -0xd2,0x23,0xbc,0xe6,0x09,0x66,0xf8,0x7b,0x79,0xbd,0x58,0x2f, -0x05,0x19,0xb8,0xf7,0x3d,0xeb,0x03,0x6c,0x87,0x45,0x91,0xb5, -0xd5,0x7a,0x48,0x64,0xc3,0x36,0x34,0x83,0x57,0x73,0xac,0xd7, -0x50,0xaa,0xbf,0x8a,0x35,0x45,0x1e,0x4a,0xbd,0x0c,0x3e,0x7d, -0x19,0x7e,0xc4,0x13,0xa0,0x71,0x2b,0x28,0xf9,0x1e,0xc1,0xdd, -0x8b,0x36,0x15,0x8d,0x1e,0x74,0xcd,0x0f,0x1a,0x2c,0xf2,0x44, -0x86,0x18,0x82,0xf2,0xea,0xaf,0x9f,0x43,0x81,0x3c,0xc8,0x83, -0xb6,0xd3,0x6f,0x3b,0xd1,0x7d,0x94,0x22,0x7c,0xb5,0xda,0xa8, -0x7b,0x3e,0xed,0x60,0x6c,0xfc,0x0d,0xdc,0xa5,0x66,0xfc,0xaf, -0xb3,0xc7,0xf7,0xb4,0x75,0xe7,0x11,0xbd,0x28,0x8f,0xe9,0x79, -0x62,0x63,0x7a,0x8e,0xbd,0x3e,0x08,0xd8,0x8f,0xa0,0x85,0x38, -0x0b,0xa2,0xa3,0xe9,0xb8,0x9c,0x70,0x1c,0xaf,0xd8,0xab,0x70, -0x63,0xb1,0x66,0x0f,0x7c,0x95,0x30,0x2f,0x15,0x72,0x13,0x05, -0x7e,0x94,0x1c,0xbd,0xe5,0xb2,0x49,0x1e,0xc7,0xeb,0xb7,0x2d, -0x42,0x67,0x5c,0x9d,0x2a,0x37,0xf5,0x9e,0xde,0xa8,0x37,0x07, -0xd8,0x96,0xec,0x70,0x46,0x52,0xfc,0xca,0x82,0xf0,0x53,0x8d, -0x29,0x0f,0xad,0x43,0x62,0x2b,0x69,0x7d,0x4c,0xf4,0xff,0x44, -0xeb,0xd3,0xc4,0x59,0xeb,0xa0,0x8d,0xcf,0x99,0x5b,0x1b,0xe5, -0x31,0xb6,0x6d,0xe0,0xaf,0x28,0x59,0xf1,0x4e,0xc2,0x41,0x06, -0x71,0x46,0xd4,0xc1,0x65,0x00,0x34,0x3e,0xa0,0xee,0xd0,0x1a, -0xd1,0x4c,0x1c,0x73,0x10,0x6b,0xbd,0x03,0xbe,0x7c,0x47,0xad, -0xe9,0x51,0x5f,0xf6,0xb3,0xf6,0xea,0x4c,0x58,0x4c,0x5b,0x03, -0xa6,0xf4,0x58,0x74,0xa0,0xea,0x64,0x28,0x0f,0x27,0xd8,0xed, -0xfd,0x49,0xf3,0x9e,0x47,0x6d,0x8a,0x93,0x05,0x5b,0x43,0x14, -0x7f,0xc9,0xa1,0xb8,0x27,0x81,0xe2,0x22,0x7e,0x14,0x97,0xaf, -0xba,0x50,0x47,0x0b,0xb0,0xb1,0xc5,0x45,0xf1,0xbd,0x3d,0x51, -0xdc,0xe5,0x3f,0xec,0x77,0x6a,0x94,0xe4,0xc7,0x1c,0x8e,0x59, -0x1b,0xb7,0xef,0x49,0x38,0x3c,0xc8,0xf3,0xa9,0x22,0x7a,0x0d, -0x0c,0xb8,0x72,0xb7,0x3d,0x06,0x9e,0x90,0x09,0xd5,0xe3,0xde, -0x69,0xdd,0x6d,0x3e,0x41,0x09,0xbf,0x20,0x69,0x3e,0xcb,0xed, -0x8b,0x9c,0xd6,0xfc,0x16,0x92,0xb3,0x7f,0xc2,0x72,0xec,0x52, -0x6b,0x32,0xb1,0x3d,0x07,0xbc,0xfe,0xca,0xfa,0x9d,0xf5,0x77, -0xc2,0xd5,0xaf,0xf4,0x58,0x26,0xe4,0xd8,0x0b,0xfb,0xf5,0x32, -0xcd,0xbc,0xdc,0x46,0xf4,0x7f,0x8e,0xd6,0xb9,0x6e,0x71,0x66, -0x49,0xfd,0x13,0xf2,0xbe,0xd3,0x7a,0x8b,0x3c,0x0f,0x9f,0x93, -0x97,0x54,0x67,0x7f,0x02,0x07,0xe9,0xf5,0xac,0x2a,0x2f,0xf5, -0x61,0x5c,0x44,0xa7,0xa5,0xc7,0x47,0xb8,0xec,0x73,0x3c,0x0d, -0x8d,0x72,0x5e,0xc7,0xf2,0x87,0x69,0xa6,0x6c,0x2b,0x34,0x11, -0x8f,0xb1,0xc5,0x8d,0xaa,0x15,0x77,0x1f,0x57,0x83,0xde,0x0a, -0x93,0x8f,0xee,0xe5,0x39,0x7f,0x82,0x74,0xc9,0x27,0xcc,0x3f, -0x51,0x7a,0x4b,0x7f,0xf9,0x2d,0x9c,0x90,0xdb,0xd3,0x79,0x9e, -0x5d,0xfa,0xeb,0xa0,0xee,0xd8,0x83,0x32,0x0a,0x47,0xbb,0x79, -0x2a,0x7b,0xf1,0x84,0xfd,0x56,0x9a,0x95,0xbd,0x0e,0xff,0xc0, -0xfd,0xc0,0x30,0xf3,0x14,0x61,0x5a,0x95,0xdb,0xe5,0xb2,0xac, -0xc2,0xfe,0xde,0x21,0x8f,0xfe,0xac,0x83,0x04,0x6c,0x74,0xf9, -0x30,0x0a,0x4b,0x29,0x0e,0x65,0x5d,0xdf,0x7e,0xd4,0x5e,0x72, -0xcc,0x77,0x8c,0xe9,0x12,0xe7,0xbe,0xb2,0xa9,0x5d,0xb1,0x6f, -0x05,0x40,0xa3,0x66,0x00,0xf7,0x69,0xe4,0x89,0x6f,0xc0,0x71, -0x1d,0x7d,0x1f,0x78,0x9b,0x3d,0x2e,0x17,0x37,0x12,0xd7,0xcc, -0x63,0x71,0xbe,0xd8,0x58,0x1c,0x5a,0xcf,0x04,0x6f,0xe7,0xe0, -0xa9,0xe2,0xe6,0x0d,0x14,0x7d,0x07,0x6c,0xef,0x8b,0x7b,0xa2, -0x63,0x80,0x28,0x8f,0xc2,0xee,0xd6,0xda,0xaf,0x5b,0x74,0x13, -0xed,0x2e,0x35,0xce,0xb3,0x77,0x84,0x54,0xb3,0xf1,0xc9,0x1f, -0xdc,0x0e,0x3b,0xb7,0x4d,0x8f,0xfd,0xa0,0xbd,0x76,0xf2,0xe0, -0x54,0xd6,0x23,0x9d,0xce,0xdb,0x89,0xba,0x2a,0x53,0xe3,0xa7, -0x9e,0xa9,0xb3,0x21,0x80,0xb0,0x17,0x79,0x1c,0x9b,0xad,0xb7, -0xf1,0x7c,0x1b,0xd9,0x4c,0x35,0x36,0xb3,0xdb,0xfe,0x4a,0x2e, -0xea,0x22,0xae,0x21,0xef,0xeb,0x20,0xce,0x76,0xf3,0xf7,0x16, -0x0f,0xb8,0xc6,0x8a,0xa2,0xae,0xd1,0x2e,0x7b,0xf6,0x40,0x38, -0x59,0x6c,0x90,0x30,0xfa,0xe2,0xd3,0x5c,0x10,0x37,0x92,0xd8, -0xf3,0x58,0x62,0xf7,0x71,0x9b,0x98,0x8d,0xf3,0x75,0xd3,0x06, -0x2e,0x0d,0xd3,0x7d,0x76,0x72,0xb2,0xef,0xc1,0x58,0x7f,0xb7, -0x9e,0x85,0x37,0x09,0x2f,0x88,0xbe,0x55,0xbf,0xce,0x5e,0x73, -0x22,0x06,0x40,0x6b,0xde,0x43,0xf2,0xf1,0x0c,0xd9,0xf3,0x26, -0x9e,0x01,0xf4,0x13,0xd0,0xfc,0x7e,0xd0,0x5b,0xad,0xda,0xf6, -0x5b,0x0d,0xb0,0x53,0xaf,0x81,0x5f,0x9f,0xb3,0xd6,0xe3,0x6d, -0xbd,0x86,0xf2,0x29,0xbc,0xb1,0x06,0xbe,0x40,0x84,0xf2,0xd5, -0x42,0xcf,0x35,0xc3,0xd5,0x33,0x7a,0xcc,0x18,0x7a,0x20,0x02, -0x1d,0xb2,0x0b,0x67,0x8f,0xa2,0xc4,0x51,0xe8,0xcc,0x26,0xeb, -0x13,0x78,0xd3,0x6b,0xad,0xa7,0x71,0xff,0x63,0xc0,0xf2,0xb2, -0xf5,0x67,0x9c,0xad,0xa3,0xdc,0x64,0x33,0x4b,0x81,0xc7,0x95, -0x67,0xf6,0xd2,0x7c,0xee,0xc3,0x71,0xba,0x32,0x1a,0x17,0xe7, -0x76,0x1b,0x67,0x53,0x3a,0x5d,0xd7,0x41,0xba,0xb7,0xcb,0x5e, -0x05,0x18,0xaf,0x19,0x63,0xdf,0xcd,0xb5,0x5b,0x73,0xe9,0xd0, -0x70,0x02,0x5f,0x76,0x24,0x9b,0x11,0x72,0xe2,0xd5,0xd6,0xf1, -0xe3,0x7a,0x71,0xd9,0x9d,0x8e,0xf8,0x19,0x03,0xee,0x71,0xcc, -0x78,0x5e,0x70,0x46,0x08,0xbb,0x1c,0x89,0x76,0x47,0xc7,0xc7, -0xe2,0xc7,0x0d,0x13,0xda,0xdf,0x08,0x3c,0x6c,0x61,0x4d,0x07, -0xe9,0x77,0x7c,0x56,0x1f,0xf4,0xba,0xd0,0x36,0xd6,0x99,0x25, -0xd3,0xa1,0x34,0x2b,0x7f,0xbf,0x26,0x96,0x83,0xf2,0x40,0x66, -0xb3,0x61,0x1b,0x8f,0xc1,0xf2,0x1c,0x63,0xcd,0xb2,0x4b,0x5b, -0x21,0xf2,0x40,0xb4,0x37,0xf1,0x21,0x69,0xb3,0x08,0x49,0x13, -0xdb,0x6c,0xc6,0x61,0x07,0xbd,0x77,0xc0,0x1e,0x5b,0x02,0xdf, -0xaa,0xf5,0x0c,0x87,0xdc,0xe3,0x8d,0xe0,0x27,0x1f,0x79,0xd9, -0x8a,0xd2,0x1f,0x81,0xb7,0x3e,0xa6,0x72,0xfb,0x10,0x67,0xfc, -0x37,0xf4,0xcb,0x01,0x91,0x0e,0x78,0x72,0x00,0xbd,0x8f,0x7d, -0x8d,0x74,0xf0,0x48,0xbe,0xc8,0x61,0x6c,0xaa,0x0c,0xbd,0xfa, -0x6e,0x5f,0x2e,0x8d,0x1a,0x86,0x29,0x8f,0x95,0x89,0x32,0x1f, -0x2a,0xbe,0xc4,0x7b,0x3b,0xf4,0xd7,0xb1,0x49,0x6f,0x1c,0xd3, -0xdf,0x5d,0x40,0x7f,0x22,0x96,0x85,0x88,0x22,0x12,0x1b,0x33, -0xa4,0x95,0x3f,0x0a,0xca,0x63,0xce,0xc8,0xe5,0xb1,0xf8,0xb1, -0x1c,0x07,0xde,0x0e,0x5a,0xbd,0xb2,0x8f,0xb2,0xf5,0x1f,0xd8, -0x63,0x7b,0x71,0xa3,0x79,0x49,0xc6,0xf3,0x54,0xec,0x68,0x7f, -0xf3,0x86,0x56,0xea,0x76,0x39,0xa3,0xb6,0xfb,0x44,0xec,0x0b, -0x66,0x22,0x2e,0x4f,0x71,0xc0,0x25,0xef,0x1f,0xc6,0xc1,0xd2, -0x75,0x9c,0x79,0x05,0x7b,0x50,0xfa,0x28,0xa8,0xbb,0x83,0x7c, -0xa2,0x30,0x24,0x76,0x23,0xbc,0x4b,0x13,0x10,0xfc,0x13,0xd8, -0x4b,0x23,0xdb,0x43,0x2b,0x09,0xac,0xad,0x38,0xdf,0x0b,0x7c, -0x7b,0x68,0x2c,0x34,0xaa,0xe2,0x0f,0xae,0xe3,0x7d,0x68,0x8b, -0x4f,0xe0,0xf1,0x7d,0x02,0xaa,0xf4,0x72,0x38,0x55,0xd9,0xee, -0x7f,0x91,0x1d,0x8b,0x10,0xb7,0xb0,0x76,0x23,0x9c,0xed,0x75, -0x46,0x75,0x02,0x36,0x5f,0xf5,0xf4,0x4d,0x1f,0xb2,0xb8,0x1f, -0x69,0xbd,0xa5,0xbf,0xb2,0x40,0x90,0x6e,0xe1,0x95,0xd3,0xcf, -0x23,0x92,0xed,0x83,0x5a,0x36,0xab,0x1c,0x11,0x60,0x78,0x03, -0x47,0x35,0x13,0x3a,0x9b,0xbc,0xcf,0x68,0xec,0x0b,0xae,0xc0, -0xfe,0x8b,0xf4,0x35,0x9b,0x88,0xce,0x92,0xf2,0xcc,0x54,0xd5, -0xf2,0x3f,0x80,0xe1,0x4e,0x15,0x7d,0x12,0x77,0xc6,0x72,0x03, -0x1f,0x24,0xcc,0x90,0xf3,0x1c,0x2f,0xd7,0x8c,0xda,0x3b,0x10, -0xa7,0x76,0xd2,0x78,0x58,0x0b,0xe1,0x41,0x79,0x1f,0x05,0xd6, -0x1b,0xd6,0xc3,0xc0,0xe7,0xb3,0x80,0xf9,0x49,0xe7,0x5b,0xb5, -0xf9,0xd6,0x6f,0xc1,0xb1,0x2f,0xe2,0x6a,0x28,0xcd,0xfa,0xfd, -0x3a,0xe8,0xfc,0x2a,0xb8,0xe4,0x05,0xf0,0xb4,0x50,0xfe,0x10, -0xfc,0xa2,0x27,0xf1,0xce,0x3f,0xe8,0x1b,0x00,0xdb,0x28,0x4f, -0x93,0xa9,0x65,0x0d,0x3a,0x56,0xfb,0xec,0x9b,0x69,0x05,0x67, -0x98,0xea,0xde,0x0c,0xfc,0xec,0x44,0x0d,0x9d,0xd6,0x5f,0x41, -0xbf,0xb5,0xa0,0x9d,0x20,0x6b,0xba,0x0e,0xf7,0x36,0x81,0x2e, -0x5b,0x54,0xec,0xe0,0x78,0x98,0xe4,0x03,0x93,0x64,0x75,0xc2, -0x97,0xed,0xe0,0x59,0xa3,0x7b,0x93,0xc7,0xa9,0x44,0x2f,0xfd, -0xee,0x3f,0x5c,0x75,0x28,0x9e,0xec,0xa4,0x2f,0x4a,0x18,0x27, -0xeb,0x3f,0x42,0x46,0xfe,0x4f,0x79,0x5f,0x1e,0x58,0x55,0x75, -0xad,0xbf,0xf6,0xda,0x37,0xf3,0x1c,0x42,0xe6,0x89,0x24,0x84, -0x10,0x92,0x40,0x42,0x12,0xa6,0x00,0x81,0x40,0x08,0x73,0x40, -0x64,0x12,0x99,0x67,0x21,0x20,0x93,0x88,0x08,0x88,0x82,0x43, -0x11,0x15,0x15,0x29,0x4f,0xa9,0xb5,0x54,0x2d,0xf2,0x94,0x9f, -0x55,0x1e,0x52,0x8a,0x95,0xd2,0x3e,0x8b,0x7d,0x48,0x1d,0x90, -0x3a,0x8b,0x14,0x51,0x29,0x42,0x7f,0x94,0x87,0xa8,0xf0,0xfb, -0xf6,0x77,0x4f,0xe2,0x55,0x41,0x69,0x7f,0xef,0xbd,0x7f,0x1e, -0x9b,0xac,0xbb,0xef,0xb9,0xe7,0x9e,0x61,0xef,0xb5,0xbe,0xef, -0x5b,0xfb,0xec,0x73,0xee,0xd9,0xa6,0x7d,0x04,0x5d,0xfc,0xee, -0x57,0xf7,0x79,0xca,0x54,0xa7,0x5b,0xca,0x36,0xb7,0x8f,0xc6, -0xf9,0xde,0x46,0x1f,0x79,0x87,0x9a,0xe0,0xb0,0x1b,0x87,0x66, -0xf1,0x5f,0x87,0x39,0xce,0xd1,0x8c,0x2f,0x38,0x2a,0xf3,0xa1, -0x37,0x2b,0xf5,0x7f,0xc1,0x3f,0x44,0x40,0x0c,0x73,0xf5,0x54, -0x2f,0x67,0xf7,0xcf,0xbc,0x8a,0x69,0xbc,0x43,0xc3,0xff,0x44, -0x7d,0xef,0x5a,0xc3,0x71,0xe4,0x10,0x29,0xfe,0x99,0xa2,0xbc, -0x73,0xd4,0x3f,0x9f,0xf7,0x14,0xaf,0xff,0x1d,0xe7,0xf3,0xad, -0xce,0xf0,0xa9,0x7b,0xc7,0xfd,0xf3,0xbe,0x79,0x95,0xee,0x0c, -0x15,0x5b,0x82,0xff,0xb7,0x4c,0xf8,0x7c,0xe1,0x70,0xae,0x11, -0xe3,0xad,0xe9,0xbf,0xa7,0xde,0x65,0x46,0x29,0xfe,0xf9,0xc5, -0xee,0x17,0xea,0x2e,0xef,0x49,0x20,0xff,0xbb,0xfe,0xf9,0x9f, -0x08,0xf4,0xf5,0x73,0x81,0xfe,0x87,0xf6,0xca,0xdf,0xac,0xe2, -0x75,0xb8,0xcf,0x19,0x35,0xfe,0xab,0xb2,0x9c,0xdd,0x40,0x14, -0x75,0x51,0xf4,0xee,0x77,0xe6,0x3e,0x07,0x05,0x5c,0x1d,0xfd, -0x7a,0xb4,0xe8,0xd2,0x77,0x81,0xc4,0x78,0xb3,0x37,0x63,0xbe, -0x6f,0x3e,0x57,0xd3,0xf5,0x8f,0xa0,0x8b,0x7c,0x12,0xc4,0xfc, -0xe8,0x6f,0xff,0xbd,0xbf,0x0b,0xe5,0xcd,0xa4,0x74,0xcf,0xa6, -0x78,0x8b,0xe3,0xa9,0x87,0xbc,0xb9,0x8c,0xfe,0xeb,0xb8,0x27, -0x78,0xcd,0xe5,0x50,0x93,0xb6,0x8a,0x04,0x2f,0x1c,0x0f,0x78, -0x32,0x59,0x82,0x7f,0xdc,0x24,0xa0,0x2d,0x12,0x44,0xbe,0x35, -0x6f,0xf5,0xf2,0xee,0x36,0x88,0x69,0x9a,0x8f,0x50,0x70,0xd1, -0x2b,0x34,0x81,0xfc,0x97,0x0c,0xfe,0x3a,0xf2,0x5f,0xf5,0x5c, -0xbd,0xef,0xb4,0x87,0xbb,0xa7,0xd5,0x8d,0x62,0xbf,0xe8,0x8d, -0x71,0xef,0xf7,0x3f,0x8f,0x9b,0xad,0xf3,0x11,0xef,0x6d,0xdd, -0x0f,0x5d,0x70,0xdc,0x53,0x7f,0xef,0x41,0x89,0xbf,0x43,0x74, -0x3d,0x4e,0xde,0xf9,0x6d,0xd3,0xf3,0xf6,0xc3,0x9b,0x5a,0x2a, -0x9c,0x33,0x93,0xfd,0x33,0x70,0x0e,0x73,0xf4,0xfe,0x90,0x77, -0x76,0xfe,0xfa,0xa9,0xa6,0xf9,0xe4,0xe1,0xfe,0x2d,0xf9,0xe7, -0xd2,0x42,0x53,0xb8,0xbb,0x38,0x5b,0x78,0x2a,0xe8,0x9d,0x8b, -0xcd,0x11,0x6a,0xba,0x7f,0xe7,0x75,0x5e,0x7d,0x3d,0xcc,0xab, -0x70,0xee,0x1e,0x9a,0xc8,0xff,0x8e,0xc8,0xb9,0xe8,0x15,0xd6, -0xc8,0x26,0xd5,0xfc,0xc3,0xd7,0xa2,0xc3,0xbf,0xe7,0x93,0xa6, -0x19,0xb2,0xdf,0x9c,0x9b,0xf4,0x4f,0x3d,0xd5,0xe9,0xf3,0x4b, -0xec,0xe1,0xbf,0xe2,0x5f,0x2e,0x35,0xc9,0x36,0xa8,0x0b,0xce, -0x02,0xa1,0xde,0xdb,0xe6,0x7f,0xe5,0x0c,0xe2,0x54,0xe6,0x5f, -0x31,0xf4,0x95,0x8f,0x90,0x73,0x73,0x0e,0x1c,0xf4,0x58,0xcc, -0x85,0x67,0xfc,0x57,0x58,0xdc,0x08,0x8b,0x77,0x8f,0xc8,0x71, -0x6f,0x89,0x1b,0x7f,0x79,0xd5,0x1f,0x37,0x7c,0xf2,0xaa,0x37, -0x6a,0xc2,0x3e,0xcf,0xe4,0x15,0x90,0xc6,0x5f,0x65,0x39,0xc3, -0xec,0x30,0xe8,0xc2,0x4b,0xbc,0xba,0xe2,0x5f,0x6b,0xaf,0xcb, -0xe2,0x03,0xdb,0xce,0x5f,0xf3,0xc6,0xc0,0x3e,0xc4,0x91,0xec, -0xfe,0x6e,0xb4,0x79,0x63,0x27,0x87,0xc0,0x5a,0x3b,0x39,0x26, -0x71,0x8a,0xb3,0x3e,0xf6,0x7b,0xcf,0x21,0xf3,0xcf,0x5f,0x7a, -0xb6,0x29,0x06,0xbe,0xba,0xd4,0x5d,0xe4,0xc0,0x4a,0xff,0x6c, -0x94,0x60,0x64,0x0b,0x81,0x4f,0xab,0x76,0x3a,0xfc,0x97,0xe4, -0xdc,0x04,0x66,0xad,0xce,0xfb,0x5f,0xbd,0xf0,0x01,0xf7,0xf4, -0x2a,0xc7,0x43,0xc2,0x79,0xb5,0xff,0x55,0xd6,0x5e,0xe5,0x6b, -0x2e,0xaf,0xa0,0xbb,0xfa,0x17,0xde,0x13,0x00,0xcf,0x78,0x1c, -0x9b,0xeb,0x0a,0xce,0x37,0x97,0x57,0x87,0xf8,0x1b,0x04,0x38, -0xf2,0x43,0xfe,0x6b,0xe8,0x58,0xeb,0x08,0xd1,0xf2,0x4d,0x68, -0xe1,0xbf,0xf9,0xb1,0xf7,0x5b,0x4f,0x77,0x3c,0x42,0xe6,0x8f, -0x66,0x14,0x7e,0xce,0x6d,0x7c,0x1c,0xe0,0xd5,0xe1,0xdf,0xb9, -0x72,0x7c,0xf8,0xfb,0xbd,0xc5,0x1b,0x35,0x3b,0xee,0x3d,0x95, -0x33,0xe0,0xde,0xa1,0xc6,0x9c,0x9f,0xcf,0x43,0xfd,0x76,0x7b, -0x3c,0x09,0xb4,0xd8,0xc2,0xf6,0x78,0x80,0x33,0x66,0x76,0x60, -0xc9,0x19,0x8e,0xb5,0x9e,0xc2,0xd9,0xc7,0xb2,0x0f,0x76,0x72, -0x56,0xd1,0x4e,0xce,0x48,0x2b,0xe0,0x67,0x3b,0x39,0x63,0xf2, -0x14,0x9f,0x01,0xef,0xd4,0x49,0x0a,0x7f,0xbd,0xa3,0x80,0xf7, -0xbe,0x15,0x10,0x29,0x76,0x72,0x76,0xe6,0x83,0x7c,0xf5,0x3f, -0x67,0xfd,0x4f,0xc0,0xee,0x53,0x17,0xfe,0x8d,0xad,0xe9,0x3f, -0xca,0x6f,0xb6,0x87,0x7b,0x56,0xdc,0xf3,0x5c,0xd3,0x8d,0x46, -0x1f,0x87,0xf2,0x7f,0xe1,0x22,0x67,0xd9,0x34,0xe7,0xaf,0xe9, -0xee,0xaa,0x4b,0xcc,0x5c,0xf4,0xcf,0xc8,0xf2,0xae,0xff,0x1d, -0xf2,0x3f,0x61,0x93,0xb3,0x24,0x4c,0xf4,0xbb,0xd1,0xc7,0xa0, -0x82,0x23,0xdd,0xbd,0xe9,0x22,0xb6,0xb0,0xf1,0xcf,0xdc,0x69, -0x73,0x6c,0x81,0x2d,0xb1,0xe5,0xb6,0xb3,0xad,0xb6,0xb5,0x76, -0x80,0x1d,0x6a,0x47,0xda,0xb1,0x76,0x32,0x6a,0x33,0xed,0x5c, -0xbb,0xc8,0x2e,0xb5,0x2b,0xed,0x6d,0x76,0xad,0xbd,0xcf,0x6e, -0xb4,0x0f,0xdb,0x47,0xed,0x56,0xfb,0x34,0xfe,0x76,0xe0,0xd3, -0xdd,0x76,0xaf,0xdd,0x67,0x0f,0xd8,0x83,0xf6,0x6d,0x7b,0xd8, -0x1e,0xc3,0xbb,0x13,0xf6,0x34,0xbe,0x77,0xce,0x27,0x76,0x87, -0x2f,0xd8,0x6e,0xf5,0x45,0xfa,0x22,0xb1,0xfd,0xcb,0x29,0x05, -0x97,0x53,0x7c,0xf1,0xbe,0x78,0x1c,0xa9,0xbf,0x74,0x46,0x29, -0xc7,0x31,0x5f,0xb2,0xf8,0x92,0x71,0x2c,0xee,0x7c,0x2e,0x5e, -0xdc,0x59,0xba,0xe2,0xd6,0x19,0xe0,0xcb,0xc4,0xf9,0x7c,0xab, -0xf8,0xf2,0x7c,0x79,0xdf,0x5d,0x8a,0xe5,0x85,0x68,0x17,0xd7, -0x32,0x28,0xbe,0x76,0x6c,0x9f,0xcb,0x2b,0x6b,0xbd,0xb2,0x31, -0xa0,0x3c,0xcc,0xf2,0xe8,0xe5,0x14,0x5f,0xa5,0xaf,0x12,0x6d, -0xef,0x2f,0x5b,0x7d,0x55,0xbe,0x2a,0xf4,0xc2,0xa5,0xcb,0x31, -0xf4,0x0f,0x8a,0xaf,0x27,0x7b,0xe9,0xbb,0xe5,0x00,0xca,0xdb, -0x2c,0xc7,0x58,0xf6,0x5e,0x6e,0xf1,0xd5,0xa1,0x97,0x4f,0x7b, -0xed,0x36,0xc8,0xf5,0xf6,0x65,0x96,0x60,0xaf,0x44,0x7e,0xbb, -0xa0,0x6f,0x67,0xd2,0xb3,0x76,0xa0,0xee,0x8e,0xf6,0x60,0x93, -0x3f,0x9d,0xc3,0x92,0xad,0xee,0x53,0xdf,0x30,0xdf,0x68,0xdf, -0x78,0xbb,0xcf,0x37,0xd5,0x37,0x8b,0x5e,0x55,0x80,0x1e,0x9e, -0x87,0xde,0x58,0x0c,0x2f,0xd8,0x08,0xef,0xe4,0xf7,0xf1,0xbd, -0xbd,0xfc,0xde,0xd3,0xf6,0x1c,0xde,0x7b,0x9e,0x05,0xaf,0xf1, -0xfb,0xc4,0xcc,0xa6,0x76,0x5f,0x04,0x0f,0x18,0x00,0x0f,0x61, -0xbb,0x7a,0x2d,0xb6,0x0f,0xe7,0x16,0x89,0xb3,0xf2,0xb7,0xce, -0x31,0xef,0x69,0x45,0x46,0x5c,0xee,0x69,0x4c,0x12,0x6d,0x39, -0x6d,0x02,0x6d,0x1c,0x6d,0x1a,0xd7,0xd9,0xc8,0x7a,0x16,0xeb, -0x37,0xb2,0x9e,0xc7,0xfa,0x66,0xd6,0xb7,0xd3,0x26,0x73,0xc9, -0x72,0xda,0x93,0xb4,0xaf,0x73,0x79,0x22,0xeb,0x67,0x58,0x5f, -0xc1,0xfa,0x79,0xd6,0x6f,0x63,0xfd,0x18,0xeb,0x3d,0x69,0xdb, -0xd3,0x0e,0xa5,0x6d,0x47,0x3b,0x86,0x76,0x22,0xd7,0x7c,0x91, -0xf6,0x03,0x2e,0xa9,0xa7,0x2d,0xa4,0x5d,0x4f,0x3b,0x81,0x36, -0x87,0xb6,0x17,0x6d,0x26,0xed,0x10,0xda,0xdd,0xb4,0xad,0x69, -0x37,0xd1,0xba,0xeb,0x61,0x46,0xe3,0x59,0x4f,0xa7,0x7d,0x9f, -0xdb,0x3f,0xc4,0xfa,0x41,0xda,0x4a,0xda,0x29,0x5c,0xb3,0x8c, -0xf5,0x5c,0xda,0x7e,0xb4,0x4b,0x69,0x2d,0xed,0x54,0x5a,0x7f, -0xcb,0xb4,0xa2,0xcd,0x76,0x36,0x72,0x6f,0xe4,0x3e,0xe2,0x52, -0xbc,0x6b,0x6d,0xb3,0x5a,0x9e,0x37,0xab,0xcd,0x1a,0xb3,0xce, -0x6c,0x30,0x9b,0xcc,0x66,0xb3,0xc5,0x6c,0x33,0xdb,0xb1,0xe4, -0xf2,0xcb,0x9a,0x7f,0xa0,0xac,0xfb,0x81,0xb2,0xe1,0x12,0x65, -0xd3,0x0f,0x94,0xcd,0xff,0x40,0xd9,0xf2,0x03,0x65,0xdb,0x45, -0xcb,0xf6,0x1f,0x28,0xbb,0xbc,0xb6,0xdb,0x6c,0xf6,0x98,0x17, -0xf1,0xea,0x6f,0x53,0xb7,0xac,0xb1,0x8d,0x1a,0xcf,0xf0,0xeb, -0x63,0xe0,0x96,0x1b,0x7d,0xde,0x7c,0x4e,0xfb,0x19,0xed,0x34, -0xf6,0xfb,0xcf,0x59,0xff,0x90,0x7d,0x3d,0x93,0x36,0x84,0x4b, -0x86,0xd1,0x3e,0xc3,0x25,0xf4,0x37,0x6d,0xc1,0x25,0x77,0x39, -0x1b,0xf1,0x65,0x64,0x3c,0xfb,0xf7,0x49,0x97,0x51,0x68,0xe2, -0xff,0xd0,0x5f,0xfa,0x3f,0xf5,0xf7,0x9c,0x59,0xc1,0xd6,0x59, -0xcd,0x96,0x59,0x17,0xe0,0x81,0xbb,0xd8,0x8e,0xfb,0xcd,0x6b, -0xe6,0x4d,0xf3,0xbe,0x39,0x6a,0x8e,0x9b,0xbf,0x99,0xb3,0xe6, -0xbc,0xfa,0xf0,0x17,0xae,0xb1,0x9a,0xa8,0xe9,0x9a,0xa3,0x05, -0x5a,0xa2,0xe5,0xda,0x59,0xab,0xf1,0xae,0x56,0xd3,0xf1,0xd9, -0x00,0x1d,0xaa,0x23,0xb1,0xc6,0x58,0xd4,0x27,0xeb,0x64,0x6c, -0x7f,0x85,0xf3,0x20,0x9d,0xc9,0xbd,0xac,0xd6,0xb9,0xba,0x08, -0x65,0x29,0x7b,0x61,0x9b,0xae,0x74,0xfb,0xd2,0xdb,0x5c,0x0f, -0xea,0x5a,0xee,0xcf,0xed,0xd1,0x5f,0x8e,0x63,0x7f,0x67,0xf5, -0x3e,0xf5,0xe9,0x46,0x94,0x70,0x94,0x6a,0xec,0xf5,0x61,0xec, -0x35,0x87,0x7b,0x2d,0xc7,0x7b,0xb7,0x5f,0x7f,0x79,0x94,0xfb, -0x1e,0xa0,0x5b,0xb9,0x7f,0x7f,0x99,0xac,0x4f,0x63,0xcf,0x3b, -0x74,0xb7,0xee,0x75,0x7b,0xd1,0x7d,0x3c,0x83,0x03,0xd8,0xd2, -0x64,0x1e,0x7d,0x49,0xd3,0x91,0x0f,0xc5,0x91,0x9e,0xc7,0xde, -0x0e,0xea,0xdb,0x7a,0x58,0x8f,0xe9,0x09,0x77,0xd4,0x7a,0x1a, -0xc7,0x7b,0xce,0x8a,0xee,0xc6,0x91,0x6f,0xc7,0x91,0xee,0xc2, -0x39,0x1c,0x37,0x47,0x6d,0xb0,0x8d,0x6c,0xdc,0x92,0x8d,0xd7, -0x01,0x36,0x99,0x5b,0x4a,0xe7,0x96,0x7c,0x3a,0x14,0x5b,0x3a, -0x6f,0x33,0x6d,0x1e,0xce,0x79,0xbf,0xd9,0x84,0x33,0xbe,0x0f, -0xfb,0x9a,0x8c,0x63,0x73,0xed,0x55,0xed,0xfc,0x0d,0x2d,0xef, -0xec,0x4e,0xd8,0x2f,0x5d,0xdd,0x24,0xd1,0x26,0xd0,0x86,0xd3, -0x26,0x72,0x9d,0xe5,0x5c,0xe7,0x46,0x3d,0xe2,0x10,0x95,0xcb, -0xb3,0x69,0x93,0x69,0xcb,0x69,0xe3,0xb8,0xe6,0x5b,0xb4,0x27, -0xb8,0x24,0x95,0xf5,0x33,0xac,0xaf,0x60,0xfd,0x3c,0xed,0x39, -0xda,0x63,0x5c,0xde,0xd3,0x6d,0xd9,0xb4,0xa7,0x1d,0x4a,0xdb, -0x8e,0xb6,0x98,0x76,0x12,0xed,0x44,0xee,0xfd,0x45,0xd6,0x43, -0x68,0x7b,0x70,0xc9,0xad,0xac,0xaf,0xa7,0x9d,0x40,0x9b,0x43, -0x9b,0x4d,0x9b,0x49,0x3b,0x84,0x76,0x37,0x6d,0x6b,0xda,0x4d, -0xdc,0x6f,0x04,0x8f,0xe1,0x46,0xd6,0xf3,0x9c,0xd5,0x66,0xac, -0xa7,0xd3,0xbe,0xcf,0x25,0x83,0xb9,0x7e,0x25,0xed,0x14,0x67, -0xb5,0x8c,0xf5,0x5c,0xda,0x48,0xae,0x19,0x4f,0xdb,0x8a,0x5b, -0xbb,0x85,0xf5,0xb9,0x5e,0xcb,0xb8,0x75,0xfa,0xd1,0x2e,0xa5, -0xb5,0xb4,0x53,0x69,0x6f,0xe4,0xf1,0x7f,0xce,0x35,0x6f,0xe2, -0x77,0x8f,0xd2,0x7e,0xc1,0x25,0x33,0x69,0x3f,0xe6,0x9a,0xe3, -0x69,0x4b,0x69,0x9f,0x75,0x36,0x6c,0x5b,0xd8,0xf6,0xaf,0x71, -0x5b,0x32,0x25,0x02,0x7f,0x79,0x52,0x28,0xed,0x60,0xf3,0xbc, -0x9a,0x2b,0xae,0x67,0x8f,0x38,0x64,0x70,0x56,0xde,0x67,0xdf, -0x85,0xe8,0x67,0xa8,0x5f,0x40,0x5d,0xa5,0xde,0xcb,0x08,0x63, -0x51,0x0c,0xc7,0xe8,0x94,0xf3,0x75,0xad,0xe4,0xa0,0xf8,0xb8, -0xad,0x20,0xc9,0x47,0x09,0x96,0xd6,0xd8,0x6a,0x88,0xb4,0x95, -0x52,0x09,0x93,0x72,0xe9,0x8c,0xbd,0xf7,0x91,0x3a,0x69,0x26, -0x03,0x51,0x9a,0xcb,0x30,0x19,0x25,0x89,0x32,0x1e,0x25,0x5d, -0x26,0xca,0x64,0xc9,0x90,0xa9,0x28,0xd9,0x32,0x1d,0xa5,0x85, -0xcc,0x44,0xc9,0x91,0x05,0xb2,0x08,0xb9,0xcb,0x12,0x59,0x8a, -0xed,0x3d,0x8f,0xd2,0x5a,0xfe,0x8a,0x52,0x68,0x22,0x4d,0xa4, -0xb4,0x31,0xd1,0x26,0x46,0x8a,0x4c,0x33,0xd3,0x4c,0x4a,0x4c, -0x73,0xf0,0x7d,0x5b,0x93,0x62,0x52,0xa5,0xcc,0x64,0x82,0x29, -0xcb,0x4d,0x0b,0xd3,0x42,0x2a,0x4c,0x3f,0xd3,0x5f,0x2a,0xcd, -0x40,0x33,0x50,0x3a,0x9a,0xe5,0x66,0xb9,0x74,0x32,0xf7,0x81, -0x5f,0x3b,0x9b,0xc7,0xcd,0xe3,0xd2,0xd5,0x3c,0x05,0x1e,0xed, -0x66,0x5e,0x30,0x2f,0xc8,0x20,0xb3,0x0f,0x1c,0x39,0xd8,0xbc, -0x63,0x3e,0x90,0x31,0xe6,0x53,0x6d,0x2e,0x13,0x34,0x43,0x33, -0x64,0x8d,0x66,0x69,0x96,0xdc,0xa9,0x2d,0x80,0x92,0x6b,0x35, -0x57,0x73,0xe5,0x2e,0x6d,0xa9,0xf9,0x72,0xb7,0xb6,0xd6,0xd6, -0xb2,0x4e,0xdb,0x68,0x5b,0xb9,0x57,0x4b,0xb5,0xbd,0x6c,0xd0, -0x4a,0xed,0x20,0xff,0x82,0x58,0xea,0x2c,0x0f,0x69,0x37,0xed, -0x26,0x9b,0xb4,0xb7,0xf6,0x97,0x9f,0x20,0x3e,0xaf,0x90,0x47, -0x75,0x9c,0x8e,0x97,0xc7,0x1d,0xaa,0xc8,0x16,0x9d,0xa1,0x33, -0xe4,0x09,0x9d,0xad,0xb3,0x65,0xab,0xce,0xd7,0xf9,0xf2,0xaf, -0xba,0x50,0x17,0xca,0x93,0x7a,0x9d,0x2e,0x96,0xa7,0xf4,0x46, -0xbd,0x51,0xfe,0x8f,0x2e,0xd7,0xe5,0xf2,0xb4,0xde,0xa2,0xab, -0xe5,0x97,0x88,0xfe,0xdb,0x65,0xbb,0xde,0xa9,0x77,0xca,0x0e, -0xbd,0x57,0x37,0xc8,0x73,0xfa,0x0b,0x7d,0x42,0x9e,0xd7,0xa7, -0xf4,0x69,0xd9,0xa3,0xcf,0xe9,0xaf,0xe5,0xf7,0xfa,0xbc,0x3e, -0x2f,0x2f,0xe9,0x1f,0xf4,0x25,0xf9,0x23,0x62,0xfb,0x80,0xbc, -0xac,0xaf,0xe8,0xeb,0x72,0x40,0xdf,0xd2,0xa3,0xf2,0x9a,0x7e, -0xac,0x1f,0xa3,0x37,0xff,0xaa,0x27,0xe5,0x03,0x3d,0xad,0xa7, -0xe5,0x2f,0x7a,0x56,0x2f,0xc8,0x51,0xeb,0xb3,0x3e,0x39,0x01, -0x4c,0x08,0x93,0xcf,0x6c,0x94,0xcd,0x96,0xff,0x8b,0x5e,0x35, -0x68,0x77,0xc3,0x7e,0xc9,0x44,0x1f,0xe4,0xc3,0x2b,0x2a,0xa5, -0x23,0xfb,0x6e,0x20,0x96,0x4e,0x94,0x49,0xe8,0xad,0x99,0xd2, -0x20,0x73,0x64,0xa1,0x2c,0x72,0x2d,0x6c,0x3e,0x35,0x27,0xd1, -0x5a,0x59,0x68,0xa5,0x5c,0xd7,0x3a,0x68,0x9b,0x36,0x5a,0xa4, -0xc5,0x40,0x96,0xb6,0x68,0x9b,0x32,0x6d,0xef,0xda,0x06,0x2d, -0xd3,0x0d,0x2d,0x52,0xab,0x7d,0xb4,0xaf,0xf6,0xd3,0xfe,0x38, -0xf3,0x85,0xee,0x8c,0x71,0x8e,0xab,0x70,0x56,0xf7,0xeb,0x03, -0xba,0x41,0xb7,0xe8,0x13,0x38,0xab,0x3f,0xe8,0x3e,0x7d,0x09, -0x67,0xf1,0x9a,0xbe,0xae,0xef,0xea,0x7b,0xfa,0xa1,0x7e,0xa5, -0xe7,0xf5,0x02,0x8e,0x36,0xd4,0x86,0xe1,0x38,0xa3,0x6d,0x8c, -0x8d,0xb5,0x71,0x36,0xde,0x36,0xb3,0x09,0xb6,0xb9,0x4d,0xb4, -0x49,0x36,0xd9,0xa6,0xd8,0x54,0x9b,0x66,0xd3,0x6d,0x06,0xf0, -0x2b,0x0b,0xe7,0xa2,0x7c,0x3a,0x89,0x63,0xbd,0x30,0x49,0x43, -0x2d,0x03,0x25,0x49,0xb2,0x38,0xdb,0x2b,0x57,0x5a,0x62,0x59, -0x2b,0x94,0x4c,0x78,0x55,0x11,0x96,0xb6,0x45,0xc9,0x85,0xaf, -0x56,0xc0,0x83,0x3b,0xa0,0xb4,0x96,0x4e,0xf0,0xd9,0x42,0x79, -0x46,0x3e,0xc5,0xe7,0x7f,0x85,0x56,0x9c,0x0c,0x9f,0xaa,0x93, -0x07,0xcc,0x00,0xb3,0x15,0xba,0xe7,0x29,0x70,0x4c,0xb6,0xd9, -0x8b,0x52,0x0e,0xdf,0xf9,0xc4,0x54,0x00,0x5d,0x3f,0x33,0xc3, -0xcd,0x29,0x6d,0x6e,0x46,0xa3,0xfd,0xda,0x68,0x92,0xa6,0x6a, -0x1a,0x70,0x35,0x53,0xb3,0x81,0x9e,0x79,0xda,0x0a,0x08,0x5a, -0xa8,0xed,0x80,0xfd,0x15,0xda,0x51,0x3b,0x69,0x95,0x76,0xd5, -0xee,0xda,0x53,0x6b,0xb4,0x0e,0xf8,0x3a,0x50,0x07,0x01,0x3b, -0xea,0x75,0x88,0xf3,0x17,0x1d,0xa6,0x57,0xea,0x70,0x1d,0x01, -0x1e,0x18,0xa5,0xa3,0x75,0x8c,0x5e,0xad,0x63,0x9d,0x07,0xe9, -0x04,0x9c,0x55,0x8a,0x4e,0xd4,0x79,0x88,0xd3,0x05,0xba,0x40, -0xe2,0x1c,0x23,0x49,0xbc,0x5e,0xaf,0x37,0x4b,0x33,0x5d,0xad, -0x77,0x48,0x26,0xfd,0x24,0x57,0xef,0xd1,0x7b,0x24,0x0f,0xe8, -0x7d,0x9f,0xb4,0xd4,0xf5,0xba,0x5e,0xf2,0xf5,0xc7,0xfa,0x63, -0x69,0xa5,0x0f,0xea,0x43,0x52,0xa0,0x3f,0xd1,0x9f,0x4a,0xa1, -0xfe,0x4c,0x7f,0x21,0xc5,0x60,0x9d,0x27,0xa5,0x5c,0xb7,0xe9, -0x33,0xd2,0x41,0xb7,0xeb,0x8b,0x52,0xa5,0x7f,0xd4,0x97,0x65, -0xb0,0xfe,0x49,0x5f,0x95,0x2b,0xc0,0x2a,0xef,0xc8,0x70,0x7d, -0x5f,0x0f,0xcb,0x58,0x3d,0x02,0x2f,0x9a,0x00,0x2f,0xfa,0x52, -0xa6,0x59,0x63,0x8d,0x5c,0x07,0xcf,0x09,0x91,0xc5,0x36,0xdc, -0x46,0x22,0x4a,0x15,0x31,0xdf,0x57,0x06,0xa0,0xbd,0x07,0xc9, -0x38,0xb4,0xb7,0x8b,0xe7,0x44,0xc6,0x73,0x92,0xcc,0x92,0xd9, -0x68,0x75,0x17,0xc9,0xa9,0x58,0xcf,0xd8,0x6b,0xed,0x7c,0x5e, -0xb7,0x99,0xce,0xf9,0x9a,0x22,0xd1,0x12,0x83,0x9e,0x8a,0x03, -0x2e,0x84,0x61,0xbd,0x76,0x78,0x5f,0x86,0xd6,0x6f,0x25,0xdb, -0x65,0x27,0xde,0xed,0x92,0xdd,0xe8,0x97,0xdf,0xc8,0x6f,0xe1, -0x87,0xbf,0x83,0x6e,0xae,0x92,0x7d,0xf2,0x27,0xa9,0x96,0x57, -0xa1,0xc8,0xeb,0xe4,0x0d,0x79,0x53,0xfa,0xcb,0xdb,0xf2,0x9e, -0x0c,0x86,0x9a,0xfe,0x48,0xae,0x90,0x8f,0xe1,0xc7,0xa3,0x91, -0x07,0xfc,0xa7,0x4c,0x91,0xcf,0xe5,0x1c,0xf6,0xf2,0xa5,0x5c, -0x90,0x99,0x26,0x14,0x88,0xd1,0x60,0xe2,0x80,0x18,0x8b,0x88, -0x18,0xd7,0x9b,0x74,0x60,0xc5,0x52,0xf4,0x63,0xb6,0x2c,0x37, -0x39,0x50,0xc3,0x2b,0x4c,0x4b,0x93,0x2f,0x2b,0x4d,0x81,0x29, -0x92,0x5b,0x4c,0x09,0x14,0xf3,0xed,0xa6,0xa3,0xe9,0x22,0xeb, -0x4c,0x57,0x68,0xfa,0xf5,0xa6,0x97,0xe9,0x2d,0x0f,0x9a,0x3e, -0xa6,0x8f,0x6c,0x82,0x1f,0x0c,0x94,0x9f,0x98,0x21,0xe6,0x4a, -0xf9,0xa9,0x19,0x81,0x3e,0x7f,0xd4,0x8c,0x31,0xe3,0x64,0x8b, -0x99,0x60,0x1a,0xe4,0x49,0x33,0xd7,0x2c,0x91,0x5d,0x66,0xa9, -0x59,0x26,0xff,0x0e,0x3e,0xbe,0x59,0xf6,0x99,0x55,0xc8,0x10, -0xf6,0x9b,0x3b,0xcc,0xdd,0xf2,0x0a,0xd4,0xca,0x83,0xf2,0x67, -0x28,0x96,0x87,0xe5,0x88,0x79,0xc4,0xfc,0x4c,0x3e,0x32,0x3f, -0x37,0x5b,0xe4,0x63,0xb3,0x15,0xca,0xec,0x33,0xf0,0xf5,0x0e, -0x39,0x6b,0x76,0x9a,0x9d,0xf2,0x85,0xf9,0x35,0x30,0xea,0x4b, -0xf3,0x1b,0x60,0xd4,0x79,0xf3,0x5b,0x14,0x31,0xbf,0x33,0xbf, -0x37,0x06,0x7a,0xe3,0x45,0x74,0xc1,0x3e,0xb0,0xb4,0xcf,0x1c, -0x30,0x87,0x4c,0x18,0xb4,0xce,0x3b,0x26,0xde,0xbc,0x67,0x8e, -0x98,0x44,0x68,0x9e,0x8f,0x70,0x6e,0x1f,0xa3,0x64,0xc2,0x2f, -0xe1,0xbd,0xe6,0x94,0xf9,0x3b,0xfc,0xf7,0x3f,0xcd,0x39,0x93, -0x6f,0xbe,0x34,0x17,0x4c,0xa1,0x1a,0x8d,0x32,0x25,0x1a,0x03, -0x7f,0xed,0xe2,0xf8,0x1f,0xac,0x5a,0xa8,0x85,0xa6,0x06,0xde, -0x59,0x69,0x7a,0xc1,0x3f,0xbb,0x98,0x5a,0x78,0x68,0x37,0xd3, -0x17,0x3a,0xa3,0x87,0xe9,0x0f,0x3f,0xad,0x31,0x03,0x11,0xc1, -0xbd,0xcd,0x20,0xc4,0x70,0x9d,0x19,0x8c,0x28,0xee,0x07,0xae, -0x1c,0xa6,0xc3,0xc0,0xc2,0xa3,0x74,0xbc,0xb9,0x02,0x9e,0x39, -0xc9,0x5c,0xa5,0xd3,0x75,0xba,0xb9,0x5a,0xaf,0xd1,0x6b,0xcc, -0x58,0xbd,0x56,0xe7,0x99,0x71,0xce,0x57,0xc1,0xb6,0xf0,0x55, -0xf0,0xf2,0x62,0x5d,0x0c,0x8e,0xbe,0x59,0x6f,0x36,0x93,0x11, -0xf9,0xab,0xc0,0x92,0xb7,0x41,0x45,0x4d,0xd5,0xbb,0xf4,0x1e, -0x33,0xcd,0x21,0x01,0xb8,0x6c,0x83,0x6e,0x30,0xb3,0xe1,0x9f, -0x8f,0x99,0x06,0xe7,0x9f,0x66,0xbe,0xbe,0xa0,0x2f,0x98,0x45, -0xfa,0x3b,0x7d,0xd1,0x5c,0xe7,0xf0,0xcd,0xdc,0x00,0x7c,0x7b, -0x05,0x2c,0xf9,0x86,0xbe,0x05,0x66,0x84,0x7f,0x9a,0x95,0x0e, -0xe5,0xcc,0x2a,0xfd,0xbb,0xfe,0x1d,0xda,0xe7,0x2b,0xfd,0xca, -0xdc,0xea,0xf0,0xcd,0xdc,0x06,0x2f,0x0d,0x35,0xb7,0xdb,0x48, -0x28,0x9f,0x35,0x0e,0xdf,0xec,0x02,0x78,0x5e,0x31,0x9f,0x5c, -0xe4,0xb0,0x21,0x0c,0xef,0xdc,0xe8,0x97,0x05,0x22,0x38,0x9c, -0x68,0x81,0x12,0x04,0x7c,0x68,0x49,0x0e,0x6b,0x0d,0xbf,0xac, -0x40,0x09,0x85,0x2f,0xee,0xc6,0xba,0xbf,0x81,0xcf,0xc5,0xc3, -0xe7,0x3e,0x84,0x42,0x3e,0x01,0x0f,0xab,0x80,0x87,0x9d,0x97, -0xee,0x26,0x1c,0xbe,0xd5,0x9b,0xbe,0xd5,0x9f,0xbe,0x35,0x08, -0x9e,0x31,0x5a,0x86,0xc0,0x27,0xae,0x96,0xab,0xcc,0x64,0xa8, -0xf2,0xab,0xcd,0x22,0x78,0xc3,0x04,0x78,0xc3,0x1a,0xf8,0xe2, -0x03,0xe8,0xfb,0xeb,0xd0,0xf7,0x8f,0xc9,0x4d,0xc0,0x92,0x1d, -0x72,0x2b,0xfb,0xfb,0x1e,0xf4,0xd3,0x39,0x78,0xdb,0x97,0xe6, -0x2b,0x79,0x10,0x7a,0x2c,0x04,0x2c,0xe2,0xd4,0xc5,0x23,0xe8, -0x95,0x0a,0xf9,0x19,0x7a,0xa5,0x93,0x6c,0x46,0xaf,0x74,0x95, -0x9f,0x3b,0x64,0x00,0xaf,0x00,0x1b,0xc0,0x2b,0x68,0x77,0xf0, -0x0a,0xda,0x1d,0x8c,0x82,0x96,0x05,0xa3,0xa0,0x4d,0xc1,0x28, -0x3f,0xd3,0x47,0xc1,0x28,0x2e,0xc2,0x7f,0xe9,0xda,0x0b,0x2c, -0xf2,0x67,0x7d,0x53,0xfe,0x8d,0xf1,0xfc,0x1c,0x59,0x61,0x17, -0x63,0xf8,0xd7,0x68,0x03,0x6b,0x27,0xda,0x06,0x11,0xbb,0xd0, -0xde,0x24,0x51,0xf6,0x1e,0xbb,0x09,0xb1,0x6a,0xe4,0x39,0xb6, -0x53,0x08,0xce,0x3c,0x02,0x0c,0x1e,0x85,0xc8,0x8c,0x07,0x87, -0x27,0x20,0x52,0x13,0x11,0xd7,0xc9,0x92,0x82,0x36,0x4b,0x07, -0xb2,0x66,0x02,0x43,0xb3,0xd1,0x72,0x39,0x40,0xd1,0x3c,0xb4, -0x5d,0x3e,0xa2,0xb7,0x80,0x1a,0xa0,0x0d,0xf0,0xb3,0x58,0x4a, -0x80,0xaf,0xed,0x80,0xaf,0x65,0xd2,0x1e,0x6a,0xa0,0x02,0x9c, -0xd2,0x01,0xd1,0xec,0x30,0xf6,0x57,0x60,0xf6,0x57,0xe4,0xa0, -0x1c,0x41,0xee,0x7c,0x5a,0xce,0xca,0x05,0xb4,0x65,0xb2,0x8b, -0x4c,0x78,0x6d,0x1e,0xbc,0xb5,0x95,0x29,0x36,0x65,0xc0,0xd7, -0x0e,0xa6,0xda,0xd4,0x98,0x5a,0x53,0x07,0x94,0xbd,0xca,0x8c, -0x35,0xe3,0xcd,0x1c,0x73,0x03,0x58,0xfd,0x4e,0x73,0x8f,0xb9, -0xdf,0xac,0x37,0x0f,0x99,0x9f,0x82,0xd7,0x9f,0x30,0xff,0x6a, -0x9e,0x35,0xcf,0x99,0xe7,0xc1,0xeb,0x7b,0xcc,0xbf,0x9b,0x3f, -0x98,0x97,0xa1,0xc7,0xdf,0x30,0x7f,0x36,0x87,0xcd,0x5f,0xcc, -0x31,0x20,0xf5,0x71,0x73,0xc2,0x9c,0x31,0x5f,0x40,0x03,0x8b, -0x46,0x13,0xa1,0xfd,0xf8,0xdc,0x88,0xcd,0x8e,0xab,0x3a,0x81, -0xad,0xba,0x38,0xef,0x77,0xbe,0x0f,0xcf,0xef,0xed,0x3c,0x1e, -0xfe,0xee,0xd0,0xf8,0x2a,0xb4,0xb9,0x43,0x63,0xb4,0xb9,0x4e, -0x45,0x9b,0xcf,0xd0,0x99,0xf0,0xf5,0xd9,0xce,0xd3,0xc1,0x69, -0x0b,0xe0,0xe5,0x8b,0x75,0x89,0x2e,0x43,0x3f,0xac,0x02,0x22, -0x83,0xbb,0xf5,0x0e,0xfd,0x11,0x50,0xf9,0x2e,0xbd,0x1b,0xa8, -0x7c,0x2f,0x30,0xf9,0x7e,0x20,0xf2,0x06,0xe4,0x05,0x9b,0xf4, -0x31,0xf8,0xf2,0x1b,0x7a,0x08,0x2c,0xfd,0xb1,0x7e,0x05,0x6f, -0x85,0xa7,0x02,0x4b,0x9d,0x8f,0xce,0x81,0x8d,0x80,0xd7,0xc5, -0xa3,0x17,0x8a,0x4c,0x06,0xda,0x22,0xdb,0x0c,0x02,0x0e,0xec, -0x31,0xbf,0xe5,0xf5,0x6e,0xa0,0xad,0x8b,0x24,0x68,0xb5,0xdb, -0xa1,0x0e,0x2c,0x31,0x5e,0xc1,0x9a,0x2f,0x61,0xc9,0x11,0x70, -0xbe,0xd5,0xcf,0x81,0xd3,0x38,0x45,0x60,0xb1,0xd3,0x69,0xa3, -0xa9,0xd3,0xae,0xa2,0x36,0xb3,0xd4,0x7a,0x21,0xe8,0x83,0x4a, -0xf4,0x67,0x47,0x94,0x18,0xf0,0x7b,0x1f,0xe0,0x6f,0x1d,0x4a, -0x3c,0x15,0x5a,0x57,0x6a,0xb3,0x64,0xf0,0xfd,0x44,0xf4,0xdf, -0x24,0x94,0x36,0xe0,0xfd,0xc9,0xe8,0x59,0xa7,0xcd,0x2a,0xc0, -0xff,0x0d,0xd8,0xd2,0x1c,0x94,0x56,0xd0,0x01,0x0b,0xd1,0xc3, -0x8b,0x50,0x3a,0x43,0x0f,0xf4,0x93,0x0c,0x68,0x82,0xfe,0x92, -0x09,0x5d,0xf0,0xa9,0x04,0x99,0x93,0xe6,0xa4,0x44,0x51,0x4d, -0x35,0xa3,0x9a,0x6a,0x4e,0x35,0x35,0x8e,0x6a,0xaa,0x03,0xf4, -0x42,0x4b,0xc9,0x82,0x66,0xc8,0x97,0x6c,0x6a,0xaa,0x31,0xd0, -0x0e,0x6d,0xa4,0x35,0xf4,0x43,0x91,0x94,0x40,0x43,0x14,0x4b, -0x19,0x74,0x44,0x89,0x94,0x42,0x4b,0xb4,0x95,0x4a,0xe8,0x89, -0x52,0xf0,0x57,0x99,0x96,0x49,0x02,0x74,0x45,0x7b,0xb0,0x58, -0xa5,0x56,0xe2,0x9c,0x3b,0x40,0x7d,0xf9,0xa8,0xbe,0x62,0xa9, -0xbe,0x82,0x1d,0x52,0x49,0x38,0xf4,0x46,0xad,0x44,0xa0,0xf7, -0xfa,0x48,0x24,0x74,0x47,0x5f,0x09,0x75,0xa8,0x85,0x96,0xea, -0x0f,0x6d,0x16,0x46,0xf5,0x55,0x47,0xf5,0xd5,0x17,0x5a,0xe4, -0x3a,0xe9,0xc7,0x36,0xed,0x0f,0x4d,0x72,0x8b,0xf4,0x74,0xe8, -0x24,0x35,0xe8,0xb1,0x7b,0xa5,0x17,0xfa,0xec,0x7e,0xe9,0x0d, -0x8d,0xf2,0x80,0xd4,0x3a,0x74,0x92,0x3e,0xd0,0x2a,0x5b,0x64, -0x08,0xf4,0xca,0x13,0x60,0xc9,0xa7,0xf4,0x29,0x19,0x08,0xdd, -0xf2,0x07,0xb9,0x12,0xda,0x65,0x9f,0x8c,0x60,0x4f,0x8c,0xa2, -0x12,0x1b,0x04,0x1d,0xf3,0x1a,0xf8,0xf4,0x75,0xe8,0xb1,0x01, -0xd0,0x33,0xef,0x4a,0x3d,0x34,0xcd,0x7b,0x32,0x14,0xba,0xe6, -0x43,0xe9,0xee,0x90,0x4a,0x86,0x41,0xdf,0x9c,0x07,0xcf,0x5e, -0x80,0x2a,0x1b,0x49,0x55,0x56,0x0d,0x4f,0x08,0x95,0x1e,0xd0, -0x3b,0x61,0xd2,0x0d,0x9a,0x27,0x4a,0xc6,0x42,0xf7,0x44,0x4b, -0x1e,0xb4,0x4f,0x8c,0x54,0x41,0xff,0xc4,0x4a,0x27,0x68,0xa0, -0x38,0x49,0x87,0x0e,0x82,0x97,0x40,0x0b,0x35,0x93,0x72,0xe8, -0xa1,0x04,0x69,0x07,0x4d,0xd4,0x5c,0x92,0xa0,0x8b,0x12,0x25, -0x07,0xda,0x28,0x49,0xae,0x86,0x3e,0x82,0xea,0x81,0x46,0x4a, -0x91,0x2e,0xd0,0x49,0xa9,0xd2,0x11,0x5a,0x09,0x78,0x07,0xbd, -0x94,0x2e,0x29,0xd0,0x4c,0x19,0xd2,0x1e,0xba,0x29,0x53,0xda, -0x42,0x3b,0x65,0x49,0xa2,0xcd,0xb6,0x2e,0x9a,0x15,0xb1,0xe9, -0x06,0x03,0x33,0x79,0xbd,0x35,0x1b,0x3e,0x13,0x82,0x38,0x0f, -0x45,0xc9,0x26,0x72,0x66,0x31,0x1f,0x50,0x78,0x6a,0x04,0xbc, -0x2a,0x12,0x25,0x1b,0x18,0x11,0x85,0xba,0x43,0xd4,0x1a,0xe6, -0x09,0x2d,0xe0,0x51,0xf1,0x50,0x06,0x0e,0x35,0x72,0x80,0x1b, -0xcd,0xf1,0xad,0x24,0x94,0x6c,0x78,0x57,0x32,0x96,0xa4,0xa0, -0xe4,0xc2,0xcb,0x53,0xb1,0x1f,0x87,0xc0,0x79,0x54,0x6a,0x41, -0x58,0x2b,0x0b,0x08,0x9c,0x8d,0xd2,0x92,0x98,0x1c,0xc2,0xeb, -0x19,0xf9,0x54,0x6d,0xf9,0x44,0xe6,0x6e,0x40,0x97,0x42,0x1c, -0x8b,0xd3,0x6e,0xf9,0xc0,0x96,0x52,0xd8,0xf6,0x28,0x6d,0x80, -0x30,0xe5,0x38,0x3a,0x87,0xdb,0xd5,0x54,0x73,0xe1,0x40,0x9a, -0x4e,0x38,0xc6,0xce,0xd4,0x74,0x4e,0xa5,0xa4,0x41,0xa5,0x0c, -0x46,0x8c,0xd5,0xa3,0x24,0xcb,0x10,0x14,0x23,0x43,0xa1,0x1d, -0x92,0x91,0x99,0x5c,0x89,0x23,0x1a,0x8e,0x92,0x2e,0x23,0x50, -0x32,0x64,0x24,0x4a,0x3a,0xf2,0x95,0x51,0xa8,0x8f,0x46,0x0c, -0x19,0x19,0x83,0x92,0x2a,0x57,0xa3,0xb4,0x96,0xb1,0x28,0xa9, -0x88,0xb2,0x71,0xa8,0x4f,0x43,0xe9,0x23,0x33,0x50,0xfa,0x50, -0xf3,0xd4,0x52,0xf3,0xa4,0x40,0x45,0x3e,0x8b,0x56,0xda,0x2e, -0x7f,0x44,0x4b,0xfe,0x07,0xb8,0x23,0x1b,0x68,0xf7,0x17,0xd4, -0x8f,0xca,0x27,0x38,0xcb,0x4f,0x91,0xd5,0x64,0x83,0x4d,0x2e, -0x48,0x96,0x0b,0x7d,0xb1,0xe0,0xf4,0x10,0xc9,0x06,0x0e,0x86, -0x4b,0x8e,0x89,0x00,0x9b,0xd4,0x00,0x11,0x53,0xa5,0x05,0x50, -0x31,0x1d,0x4b,0x32,0x90,0xdb,0xf4,0x85,0x5e,0x69,0x89,0x7a, -0x2b,0xd3,0x0a,0xb6,0xc0,0x54,0xe3,0xbb,0x3d,0x4c,0x0d,0xea, -0xbd,0xa0,0x52,0x73,0x4d,0x5f,0xc4,0xa1,0x32,0x0e,0xfb,0x42, -0xa9,0x0c,0x16,0x1f,0xf8,0x68,0x9a,0xe4,0x99,0xe9,0xe6,0x1a, -0xc4,0xe4,0x2c,0x33,0x4f,0x82,0xcd,0x7c,0xb3,0x50,0x5a,0x82, -0x95,0xd6,0x4a,0x88,0xb9,0xcb,0xdc,0x2b,0xf9,0xc0,0xcf,0xad, -0xb0,0x4f,0x81,0x89,0xba,0x99,0x5f,0x99,0x5d,0x52,0x4d,0xfd, -0x11,0x0a,0x9d,0x71,0x18,0xcb,0x8f,0x9a,0x4f,0x90,0x77,0x41, -0xe7,0x4a,0x18,0x74,0x6e,0x88,0x54,0x6b,0xa8,0x46,0x20,0xc6, -0x22,0x35,0x1e,0x31,0xd6,0x0c,0x59,0x53,0xa1,0x26,0x6a,0x22, -0x54,0x66,0x92,0x26,0x21,0xe6,0x53,0x35,0x55,0x12,0x1d,0xc2, -0x4a,0x0c,0x54,0x70,0x26,0x74,0x6a,0xb6,0x66,0x23,0x0e,0x73, -0x34,0x07,0x51,0x9a,0xa7,0x79,0xd0,0xaf,0x2e,0xfe,0x5b,0x41, -0x1b,0xa3,0x57,0xa1,0x8f,0x0b,0xb0,0x0e,0x54,0x08,0x62,0xdb, -0xc5,0x7c,0x02,0x10,0xb9,0x1d,0xf0,0xa2,0x5c,0xcb,0x81,0x1d, -0x8e,0x01,0xa3,0xa0,0x9c,0x3b,0xc2,0x56,0x69,0x95,0x24,0x91, -0x07,0x0b,0xa0,0xa1,0xbb,0x63,0x09,0xd4,0x09,0x96,0xd4,0x69, -0x9d,0x44,0xbb,0xb1,0x14,0xec,0x17,0x8a,0x1a,0xfb,0x1d,0xac, -0x83,0xb1,0xc7,0x7a,0xad,0xc7,0x1e,0x87,0x20,0x13,0x8b,0x73, -0x7a,0x05,0x5b,0xbe,0x52,0x47,0x60,0xcb,0x23,0x75,0x24,0xb6, -0x0c,0x4c,0x47,0xb4,0x5f,0x0d,0x26,0x2d,0x80,0xc6,0x1e,0x8f, -0x2d,0x4c,0xd4,0x89,0x88,0xf9,0x49,0x60,0xd5,0x22,0x9d,0xa2, -0x53,0x81,0x11,0x8e,0x5b,0xdb,0x32,0x73,0xeb,0x0c,0xbc,0x9f, -0x09,0x3c,0x02,0xe6,0x63,0x79,0x83,0x36,0x40,0x43,0xcf,0xd1, -0xb9,0xa8,0x5f,0xab,0xd7,0x62,0x9d,0x79,0x50,0xe7,0x75,0x54, -0xe7,0x6d,0xa9,0xce,0xdb,0x11,0x53,0x3a,0x41,0xa3,0x5f,0x8f, -0xe5,0x4b,0x74,0x89,0xf4,0xd0,0x1b,0x74,0x29,0xea,0x2e,0xd3, -0x2b,0x01,0x53,0x2c,0x47,0xfd,0x26,0xbd,0x09,0xd6,0x71,0x77, -0x17,0x22,0x7a,0x57,0xb0,0xc6,0x1d,0xd2,0x51,0xd7,0xea,0x5a, -0x69,0x4f,0x35,0xdf,0x9d,0x6a,0xbe,0x3b,0x91,0xa8,0x92,0x78, -0xdf,0x81,0x48,0x54,0xe1,0xc6,0x98,0x80,0x92,0x0f,0x41,0xd9, -0x97,0x83,0xf1,0x37,0xe3,0xc8,0x7f,0x0e,0xde,0x2f,0x02,0xbb, -0x3c,0x86,0xfa,0xe3,0x50,0xf9,0x75,0xc4,0xa9,0x3a,0x28,0x81, -0xa7,0x70,0x54,0xdb,0x90,0x37,0x76,0xd6,0x5f,0x42,0xf1,0x97, -0x42,0xf1,0xff,0x0a,0xcb,0x77,0xe9,0x2e,0x1c,0xc9,0xaf,0x91, -0x49,0x16,0xeb,0x6e,0xfd,0x0d,0x96,0xbc,0xa0,0x7b,0xb1,0x26, -0xf4,0x16,0x8e,0xdf,0x61,0x59,0x27,0x64,0x05,0xfb,0x71,0xe4, -0x2f,0x23,0x37,0xa8,0x63,0x6e,0x50,0x07,0x44,0x3b,0x08,0x4c, -0x3c,0xa4,0x87,0xb0,0xa6,0xd3,0x15,0x5d,0x3c,0x44,0x73,0xfc, -0xd3,0x55,0x3f,0xd2,0x63,0x38,0x7e,0xa7,0x31,0xaa,0xf4,0x24, -0x32,0xcf,0x72,0x3d,0xa5,0xa7,0x70,0x2e,0x7f,0xd7,0xb3,0x58, -0xc7,0xb1,0x53,0x07,0xe2,0x5d,0x05,0x1c,0x5e,0xa5,0x8c,0x3a, -0xa4,0x0a,0x78,0x17,0x2e,0x95,0x4e,0xab,0x49,0x77,0x44,0xcc, -0x34,0xe2,0x4e,0x1c,0x70,0x20,0x18,0x51,0xe7,0xd0,0x47,0x89, -0x3b,0x3e,0xe2,0x4e,0x10,0x71,0x27,0x98,0xb8,0x13,0x4a,0xdc, -0x09,0x06,0x9f,0x45,0x63,0x59,0x0c,0xf3,0x09,0x87,0x3e,0xa1, -0xf8,0x76,0x1c,0xbe,0x11,0xcf,0xfb,0xd3,0x1c,0x06,0x45,0x10, -0x83,0x22,0xa1,0x5f,0x12,0xb1,0x4d,0x87,0x44,0xa1,0x44,0xa2, -0x68,0x22,0x51,0x0c,0x91,0x28,0x96,0x48,0x14,0x47,0x24,0x6a, -0x46,0x24,0x4a,0x20,0x12,0x35,0x27,0x12,0x25,0x12,0x89,0x92, -0x38,0xda,0x91,0x4c,0xa5,0x98,0x42,0x54,0x4a,0x25,0x2a,0xa5, -0x11,0x95,0xd2,0x81,0x42,0x6d,0xf0,0xed,0x22,0x94,0x4c,0x22, -0x54,0x16,0x11,0x2a,0x0b,0x0a,0xa8,0x0c,0xdb,0x70,0x38,0x95, -0x43,0x9c,0xca,0x25,0x4e,0xf9,0xb3,0xce,0x7c,0xe2,0x54,0x2b, -0xe2,0x54,0x01,0x50,0xe3,0x19,0x9c,0xc5,0xb3,0x28,0xe1,0x44, -0x8d,0x38,0xa2,0x86,0x8f,0xa8,0xa1,0x40,0x8d,0x4f,0x81,0xb3, -0x6e,0x44,0x24,0x12,0xd8,0x71,0x1e,0xcb,0x2f,0xa0,0x44,0x12, -0x41,0x82,0x89,0x20,0xa1,0xc8,0x78,0xa0,0xdb,0x88,0x23,0xa1, -0xc0,0x91,0xe6,0x88,0xf3,0x44,0xe0,0x48,0xa8,0x49,0x03,0x8e, -0x84,0x01,0x47,0x32,0x24,0x9c,0xe3,0x25,0x16,0xfa,0x02,0x58, -0xce,0x51,0x93,0x70,0x20,0x4b,0x2b,0x7c,0xab,0xc0,0x94,0x63, -0x6b,0x15,0xa6,0xb3,0x44,0x99,0x2e,0xa6,0x3b,0xea,0xd5,0x40, -0x19,0x1f,0x51,0x26,0x9a,0x28,0x13,0x43,0x64,0x89,0x35,0xf5, -0xa6,0xde,0x8d,0x9a,0x41,0xe9,0xc6,0x41,0x97,0x4d,0x92,0x78, -0xea,0xdd,0x38,0x62,0x4d,0x33,0x62,0x4d,0x02,0xb1,0xa6,0x39, -0xb0,0x66,0x8d,0x24,0x42,0xb1,0xad,0x95,0x14,0x22,0x4e,0x12, -0xc7,0x63,0x92,0xa1,0x86,0x1f,0xc3,0x12,0x37,0x2a,0x93,0x65, -0x7e,0x01,0x0c,0x4a,0x25,0x06,0xa5,0x11,0x83,0xf2,0x88,0x41, -0xe9,0x50,0x74,0xcf,0x43,0x59,0x40,0x01,0x41,0x59,0x20,0xef, -0x86,0x75,0x63,0x36,0x59,0xd0,0x76,0x6f,0x03,0x2b,0xdd,0xc8, -0x4d,0x16,0x34,0xde,0x61,0x6c,0xe7,0x43,0xf3,0x17,0x60,0xa5, -0x43,0xab,0x1c,0xa2,0x55,0x2e,0x54,0xf5,0x57,0xd8,0xce,0x79, -0xb5,0xc8,0x86,0x9d,0xaa,0xce,0x23,0x72,0xe5,0x13,0xb9,0x5a, -0x11,0xb9,0x0a,0xd0,0xa2,0x37,0x93,0xeb,0xba,0xd2,0xe7,0xda, -0xd0,0xe7,0x2a,0xe8,0x73,0x85,0x64,0xbc,0x36,0xf4,0xbc,0x42, -0x7a,0x5e,0x16,0x3d,0xaf,0x88,0x9e,0xd7,0x86,0x9e,0x57,0x44, -0xcf,0xab,0xa0,0xe7,0x55,0xd2,0xf3,0x3a,0xd0,0xf3,0x2a,0xe8, -0x79,0x1d,0xe9,0x79,0x35,0xf4,0xbc,0x42,0x7a,0x5e,0x2f,0x7a, -0x5e,0x1b,0x7a,0x5e,0x0d,0x3d,0xaf,0x07,0x3d,0x2f,0x9b,0x9e, -0xd7,0x8d,0x9a,0x2d,0xcd,0x63,0x42,0xa7,0xdc,0x0a,0x02,0xf8, -0xb0,0x45,0x00,0x1f,0x56,0xd1,0xf3,0xaa,0xe8,0x79,0x39,0xf4, -0xbc,0x62,0x7a,0x5b,0x15,0xbd,0xad,0x8a,0x7e,0x56,0x42,0x3f, -0x0b,0xa5,0x9f,0xf5,0xa4,0xea,0x8b,0xa0,0xb7,0xe5,0x52,0xfb, -0xe5,0xd1,0xe7,0xc2,0xe8,0x73,0xe1,0xd4,0x81,0x6d,0xa9,0x03, -0xbb,0x93,0x27,0x95,0x6a,0x30,0x95,0x6c,0x69,0xc9,0x96,0xbd, -0xc9,0x96,0x96,0x6c,0xd9,0x9b,0x6c,0x69,0xc8,0x96,0x3e,0xb2, -0x65,0x26,0xd9,0xd2,0x47,0xb6,0xcc,0x24,0x5b,0x5a,0xb2,0x65, -0x06,0xd9,0xb2,0x9a,0x6c,0x99,0x41,0xb6,0xac,0x96,0x09,0x28, -0x9d,0xa8,0x2d,0xbb,0x20,0x53,0x9f,0x82,0xfd,0x3b,0xfe,0x2c, -0x27,0x7f,0x96,0x53,0x67,0x36,0xa7,0xb6,0x6c,0x45,0x6d,0x99, -0x44,0x2e,0x35,0xe4,0xd2,0x2c,0x72,0x69,0x57,0x46,0x45,0x1b, -0x46,0x45,0x57,0x46,0x45,0x21,0xb9,0xb4,0x0d,0xb9,0xb4,0x90, -0x91,0x50,0xc4,0x48,0x68,0xc3,0x48,0xa8,0x60,0x24,0xd4,0x90, -0x51,0x2b,0xc9,0xa8,0x1d,0x10,0x09,0x69,0x58,0xee,0x78,0xb5, -0x86,0xbc,0xda,0x91,0xbc,0x5a,0x43,0x5e,0xad,0x21,0xaf,0x16, -0xd2,0xe3,0x6b,0xe8,0xf1,0x3d,0xc8,0xab,0x59,0xe4,0xd5,0x8e, -0xf4,0xfe,0x6c,0xf2,0x6a,0xb7,0xef,0xf0,0x6a,0x8b,0x00,0x5e, -0xad,0x22,0xaf,0x56,0xd1,0xa7,0x73,0xe8,0xd3,0x3d,0xe9,0xd3, -0xc5,0xe4,0xd5,0x2a,0x7a,0x6a,0x09,0x3d,0x35,0x94,0xbc,0xda, -0x93,0xde,0x99,0x4b,0xef,0x0c,0xa3,0x77,0x86,0x53,0x01,0xb6, -0xa6,0x02,0x8c,0xa3,0x02,0x4c,0xa1,0x02,0x6c,0x4f,0x05,0xd8, -0x92,0x0a,0xb0,0x94,0x0a,0x30,0x81,0x0a,0x30,0x9e,0x0a,0xb0, -0x1d,0x15,0x60,0x0c,0x15,0x60,0x3a,0x15,0x60,0x2c,0x15,0x60, -0x32,0x15,0x60,0x22,0x15,0x60,0x34,0x15,0x60,0x14,0x15,0x60, -0x33,0x2a,0xc0,0x32,0x2a,0xc0,0x48,0x2a,0xc0,0x7c,0x28,0xeb, -0x24,0xe9,0xef,0x9f,0x83,0xcd,0x59,0x4b,0x3e,0x6f,0x5e,0x9f, -0xf1,0xe6,0xdd,0xfa,0x9f,0x11,0xe8,0xcf,0xa5,0x43,0x02,0x26, -0x3a,0x34,0xfe,0x4e,0x4e,0xb0,0xf7,0xdd,0x30,0x6f,0x6e,0x48, -0x14,0x9f,0xe6,0x1b,0xe6,0xcd,0xb8,0xf9,0xfa,0x6e,0xab,0xe8, -0xc6,0xd9,0x72,0xdc,0x9a,0x71,0xf9,0x28,0x4b,0x08,0x63,0x2f, -0x94,0xdb,0x71,0x5b,0x70,0x71,0x17,0xc5,0x58,0x8b,0xc4,0x3a, -0x13,0xe9,0xaf,0xd1,0xf4,0xd7,0x58,0xfa,0x6b,0x38,0xfd,0x35, -0x9b,0xfe,0x5a,0x49,0x7f,0x0d,0xa5,0xbf,0x56,0xd2,0x5f,0x43, -0xe9,0xaf,0x61,0xf4,0xd7,0x08,0xfa,0x6b,0x09,0xfd,0x35,0x82, -0xfe,0x5a,0x42,0x7f,0xad,0xa4,0xbf,0xd6,0xd0,0x5f,0xbb,0xd1, -0x5f,0x6b,0xe8,0xaf,0xdd,0xe8,0xa9,0xbd,0xe8,0xa9,0x75,0xf4, -0xce,0x8e,0xb2,0x00,0xa5,0x0f,0x7d,0xb4,0x94,0x3e,0x9a,0x49, -0x1f,0x0d,0x93,0xbb,0x50,0x62,0xa8,0x85,0x6a,0xa9,0x85,0xca, -0xa9,0x85,0xba,0x52,0x0b,0x19,0xe6,0x42,0xbd,0xa9,0x88,0xf2, -0x98,0x11,0xc5,0x51,0x17,0x29,0xf3,0xa2,0x5c,0xaa,0xa3,0x4e, -0xcc,0x8e,0xd2,0xa9,0x91,0x2c,0x35,0x52,0x2d,0x73,0xa4,0xb6, -0x54,0x4a,0xb5,0x54,0x4a,0x79,0xcc,0x97,0x5a,0x50,0x2f,0x05, -0x05,0x64,0x4d,0x5d,0x98,0x35,0xa5,0x52,0x41,0x05,0x31,0x6b, -0x6a,0x4f,0x1d,0x15,0xcc,0xdc,0x29,0x89,0xb9,0x53,0x4b,0xe6, -0x4e,0xc9,0x54,0x56,0x3e,0x2a,0xab,0x72,0x2a,0xab,0x72,0x66, -0x50,0x3d,0xa9,0xaf,0x2a,0xa8,0xaf,0xaa,0xa8,0xaf,0xca,0xb5, -0xa7,0xf6,0x94,0x1e,0x54,0x59,0x15,0xcc,0xa9,0xaa,0x99,0x53, -0x45,0x51,0x71,0x85,0x30,0xb3,0xea,0xc0,0xcc,0xaa,0x3b,0x33, -0xab,0x48,0x6a,0xb0,0xae,0xd4,0x60,0x86,0x1a,0x4c,0xa9,0xc1, -0x3a,0x51,0x83,0x59,0x6a,0xb0,0x20,0x6a,0xb0,0x60,0x6a,0x30, -0x1f,0xd5,0x57,0x15,0xd5,0x57,0x08,0x7d,0xbd,0x98,0xbe,0xde, -0x8e,0xbe,0x5e,0x44,0x5f,0x6f,0x43,0x5f,0x2f,0xa0,0xaf,0xb7, -0xa2,0xaf,0x97,0xd1,0xd7,0x53,0xe8,0xeb,0xf9,0xf4,0xf5,0xe6, -0xf4,0xf5,0x1c,0xfa,0x7a,0x22,0x7d,0x3d,0x8b,0xbe,0x9e,0x41, -0x5f,0x4f,0xa0,0xaf,0x37,0xa3,0xaf,0xa7,0xd1,0xd7,0x0b,0xe9, -0xeb,0xf1,0xf4,0xf5,0xce,0x38,0xd2,0x49,0xb2,0x05,0x5e,0x15, -0x0a,0xdf,0x72,0x3e,0x18,0x44,0x6d,0xa1,0x1c,0xd9,0x54,0x96, -0xd0,0x26,0x9f,0x8f,0xf0,0x66,0x1b,0xb8,0xa5,0x86,0x39,0x50, -0x38,0xfd,0xb4,0xf1,0x0e,0xc2,0x58,0x6f,0xa4,0xc4,0x7f,0xef, -0x73,0x33,0xcf,0xbb,0x9b,0x37,0xcd,0x24,0x4b,0x0e,0xf0,0xfa, -0x68,0xde,0x73,0x9c,0x48,0x76,0x68,0xbc,0xa7,0x53,0xb1,0xf7, -0xc6,0xe7,0xd8,0x36,0xfe,0x1a,0xb4,0x63,0xa4,0x10,0x72,0x8e, -0x78,0xc7,0xe3,0xde,0xbb,0xa5,0xe1,0x3c,0x06,0x9f,0x17,0x2b, -0x96,0x51,0x12,0xe1,0x1d,0xa3,0xf0,0x08,0xd5,0x1b,0x35,0x50, -0x6f,0xb6,0xbc,0xe3,0x32,0xbf,0x66,0x8a,0x27,0x5b,0x09,0xef, -0x61,0x88,0xe7,0xd3,0x5e,0x9a,0x91,0xad,0x1c,0x27,0xc5,0x79, -0x5b,0x70,0xef,0xdd,0xd2,0x44,0x1e,0x6b,0x2c,0x8f,0xb4,0x39, -0xce,0x23,0xd9,0x2b,0xdf,0x8e,0x62,0x21,0xf7,0xb9,0x7f,0x8e, -0xe5,0x9a,0x63,0x9f,0xab,0x18,0xa9,0xfd,0x18,0xa9,0xfd,0x19, -0xa9,0xd1,0x01,0x91,0x1a,0xc3,0x48,0x6d,0xcb,0x48,0x8d,0x61, -0xa4,0xb6,0x65,0xa4,0x46,0x31,0x52,0x63,0x19,0xa9,0x65,0x8c, -0xd4,0x58,0x46,0x6a,0x19,0x23,0x35,0x86,0x91,0xda,0x8e,0x91, -0x3a,0x88,0x91,0xda,0x8e,0x91,0x3a,0x88,0x91,0xda,0x91,0x91, -0xda,0x81,0x9c,0x52,0x4a,0x4e,0x29,0x65,0xd4,0xa6,0x31,0x6a, -0x7b,0x32,0x6a,0x93,0x18,0xb5,0x19,0x8c,0xda,0x28,0xaa,0xfe, -0x3e,0x9e,0xea,0x77,0x57,0x6a,0x72,0xa9,0xfd,0xeb,0x75,0x9a, -0x22,0x73,0x62,0x06,0xd0,0x9d,0x19,0x40,0x35,0x33,0x80,0x3a, -0x66,0x00,0xf5,0xcc,0x00,0x94,0x19,0x40,0x3d,0x33,0x80,0xee, -0xcc,0x00,0xea,0x39,0xb6,0x30,0x84,0x79,0x40,0x77,0x8e,0x30, -0xb4,0x64,0x36,0x10,0xc4,0x71,0x86,0xde,0xcc,0x09,0x7c,0xcc, -0x09,0xea,0x99,0x13,0x18,0xe6,0x04,0xf5,0xcc,0x09,0x2c,0x73, -0x82,0x7a,0x5d,0xa1,0x2b,0x10,0x13,0x2e,0x33,0xa8,0xd7,0x95, -0xba,0x52,0x06,0x30,0x3f,0x08,0xd6,0x5b,0xf5,0x56,0xc9,0x61, -0x96,0xd0,0x83,0x59,0x42,0x09,0xb3,0x84,0x50,0x66,0x09,0xc5, -0xcc,0x12,0x8a,0x99,0x25,0x44,0x30,0x4b,0x88,0xe4,0xa8,0x45, -0x67,0xe6,0x0a,0xe1,0xcc,0x15,0x42,0x98,0x2b,0x84,0xe9,0xc3, -0xfa,0x30,0xd0,0xe2,0x11,0x7d,0x44,0x06,0x33,0x6f,0xe8,0x13, -0x90,0x37,0xf4,0x61,0xde,0x50,0xcf,0x51,0x8e,0x5a,0x66,0x0f, -0xf5,0xcc,0x1e,0xba,0x33,0x7b,0xa8,0x66,0xf6,0x50,0xc7,0xec, -0xa1,0x9e,0xd9,0x83,0x65,0xf6,0xa0,0xcc,0x1e,0xea,0x99,0x3d, -0x74,0x67,0xf6,0x10,0xc4,0x51,0x91,0x56,0x1c,0x15,0x69,0xcd, -0x4c,0xc2,0xc7,0x4c,0xc2,0x30,0x93,0xa8,0xe7,0x08,0xc9,0x40, -0xe6,0x13,0xf5,0x1c,0x27,0xe9,0xaa,0x6f,0xe8,0x1b,0x32,0x94, -0x59,0x45,0x77,0x66,0x15,0xc1,0xfa,0x96,0xbe,0x85,0xcc,0xd2, -0xe5,0x16,0xc5,0xcc,0x2d,0x7a,0x30,0xb7,0x28,0x61,0x6e,0xd1, -0x97,0xb9,0x45,0x18,0x73,0x8b,0x50,0xe6,0x16,0xc5,0xcc,0x2d, -0x22,0x39,0xae,0x92,0xcf,0x71,0x95,0x02,0xe6,0x19,0xe1,0xcc, -0x33,0x42,0x38,0xba,0xd2,0x8b,0xd9,0x46,0x5f,0x8e,0xb1,0xb4, -0x60,0xce,0x11,0xc1,0x9c,0xa3,0x98,0xd8,0xd3,0x8d,0xd8,0x93, -0x48,0xec,0xc9,0x0a,0x18,0x69,0xa9,0x20,0xf6,0x94,0x13,0x7b, -0x52,0x89,0x3d,0xc9,0xc4,0x9e,0xf6,0xc4,0x9e,0x04,0x62,0x4f, -0x1b,0x62,0x4f,0x73,0x62,0x4f,0x26,0xb1,0x27,0x9d,0xd8,0xd3, -0x8c,0xd8,0x13,0x4f,0xec,0x49,0x21,0xf6,0xd4,0x10,0x7b,0xe2, -0x88,0x3d,0x95,0x88,0x90,0x38,0x46,0x45,0x10,0xe3,0x21,0x84, -0x91,0x10,0x12,0xa0,0xae,0x42,0x19,0x03,0x61,0x8c,0x81,0x50, -0xc6,0x40,0x18,0x63,0x20,0x84,0x31,0x60,0x19,0x03,0x3e,0xc6, -0x80,0x65,0x0c,0xf8,0xaf,0xbf,0x04,0xf3,0xfa,0x4b,0x30,0xc7, -0x22,0xd4,0xd3,0x4f,0x2a,0x67,0x88,0x2c,0xb3,0x3c,0x9d,0x7b, -0x71,0x85,0x3b,0x9b,0xf8,0x31,0x3c,0x40,0xe1,0x0e,0x27,0x4e, -0x4c,0x21,0x16,0xac,0x08,0x50,0xb2,0x37,0x07,0x28,0xd9,0x15, -0x44,0x8d,0x9b,0xa8,0x64,0x47,0x50,0xc9,0x36,0x50,0xc9,0x0e, -0xa0,0x92,0x2d,0xa2,0x92,0x1d,0x48,0x25,0x5b,0x4c,0x25,0x5b, -0x42,0x25,0xdb,0x96,0x4a,0xb6,0x94,0x4a,0xb6,0x94,0x4a,0x76, -0x3c,0x95,0x6c,0x3b,0x2a,0xd9,0x52,0xaf,0x38,0x25,0x3b,0x21, -0x40,0xc9,0xce,0xa1,0x92,0x8d,0xa2,0x92,0x2d,0xa3,0x92,0x8d, -0x0e,0x50,0xb2,0xed,0xd9,0x9a,0xb7,0xb2,0x35,0x5b,0x13,0x5d, -0x56,0xb3,0x4d,0x5b,0x13,0x5d,0x56,0xb3,0x65,0x67,0xb0,0x65, -0x67,0xb2,0x65,0xaf,0x61,0xcb,0xce,0x64,0xcb,0x5e,0xc3,0x96, -0x6d,0xcd,0xb1,0x4f,0x3f,0xeb,0x5f,0xc7,0xb6,0x9b,0x41,0xed, -0x39,0x9b,0xda,0x73,0x56,0x80,0xf6,0x9c,0x75,0x09,0xed,0x39, -0xdc,0xd3,0x9e,0x4e,0x75,0xae,0xa0,0xde,0x9c,0x42,0xa5,0xb9, -0x82,0x1a,0x73,0x05,0x35,0xe6,0x8a,0x00,0x8d,0xb9,0x82,0x1a, -0xf3,0x26,0x6a,0xcc,0xd9,0x54,0x97,0x23,0xa8,0x2e,0x1b,0xa8, -0x2e,0x8b,0xa8,0x2e,0x8b,0xa9,0x2e,0x4b,0xa8,0x2e,0xdb,0x52, -0x5d,0x96,0x52,0x5d,0x96,0x52,0x5d,0x8e,0xa7,0xba,0x9c,0x43, -0x75,0xd9,0x8e,0xea,0xb2,0x94,0xea,0x72,0x42,0x80,0xba,0x9c, -0x43,0x75,0x59,0x16,0xa0,0x2e,0xdb,0x53,0xa9,0x2c,0xa7,0x52, -0xc9,0xa7,0x46,0x69,0x41,0x8d,0xb2,0x92,0x1a,0x25,0x97,0x1a, -0xa5,0x0b,0x35,0x4a,0x0e,0x35,0x4a,0x22,0x35,0xca,0x95,0xd4, -0x28,0xa3,0xa8,0x51,0x56,0x51,0xa3,0x2c,0xa7,0x46,0x19,0x49, -0x8d,0xb2,0x9c,0x1a,0x25,0x97,0x1a,0xa5,0x39,0x35,0x4a,0x4b, -0x6a,0x94,0xae,0xd4,0x28,0xdd,0xa9,0x51,0xaa,0xa9,0x51,0x5a, -0x52,0xa3,0xf4,0xa0,0x46,0x99,0x4e,0x8d,0x52,0x45,0x8d,0xd2, -0x99,0x1a,0x65,0x11,0x35,0x4a,0x1e,0x35,0x4a,0x3e,0x35,0x4a, -0x3e,0x35,0x4a,0x27,0x6a,0x94,0x02,0x6a,0x94,0x71,0xd4,0x28, -0xf9,0x54,0x27,0x05,0x54,0x27,0x93,0xbc,0x11,0xdf,0x6f,0xab, -0x93,0x70,0xaa,0x93,0x08,0xea,0x92,0x16,0xd4,0x25,0x39,0xd4, -0x25,0x57,0x52,0x97,0xac,0xa2,0x2e,0x69,0x49,0x5d,0x32,0x9d, -0xba,0x24,0x4f,0x47,0xe9,0x28,0x99,0xc8,0x11,0xa2,0x56,0x3a, -0x46,0xc7,0x40,0x09,0x39,0xa5,0x32,0x4e,0xc7,0xea,0x58,0xa9, -0xd4,0x71,0x3a,0x4e,0x3a,0xfa,0x55,0x8b,0x4e,0xd0,0x09,0xd0, -0x46,0x8e,0x43,0xa6,0x91,0x43,0x92,0xc8,0x21,0xa3,0xc9,0x21, -0xcb,0xc8,0x21,0x71,0xe4,0x90,0x34,0x72,0xc8,0x18,0x72,0xc8, -0x30,0x72,0xc8,0x32,0x72,0x48,0x32,0x39,0x64,0x19,0x39,0x24, -0x8d,0x1c,0xb2,0x8c,0x1c,0x72,0x0b,0x39,0x24,0x8d,0x1c,0x52, -0x4b,0x0e,0x49,0x27,0x87,0xf4,0x21,0x87,0xa4,0x92,0x43,0x96, -0x91,0x43,0xae,0x22,0x87,0x2c,0x23,0x87,0xa4,0x90,0x43,0x96, -0x91,0x43,0xae,0x26,0x87,0x2c,0x23,0x87,0xf8,0xc7,0x98,0x32, -0xc8,0x21,0x31,0xe4,0x90,0x6c,0x72,0x48,0x30,0x39,0xc4,0x90, -0x43,0xb2,0xc8,0x21,0x59,0xe4,0x10,0x1f,0x39,0x24,0x88,0x1c, -0xd2,0x8b,0x1c,0x62,0xc9,0x21,0x99,0xe4,0x10,0x25,0x87,0xc4, -0x92,0x43,0x7a,0x93,0x43,0xa6,0x91,0x43,0x92,0xc8,0x21,0xd3, -0xc8,0x21,0xcb,0xc8,0x21,0x7d,0xc9,0x21,0xcb,0xc8,0x21,0x69, -0xe4,0x90,0x31,0xe4,0x90,0x61,0xe4,0x90,0x65,0xe4,0x90,0x14, -0x72,0x48,0x32,0x39,0x64,0x19,0x39,0x24,0x8d,0x1c,0x92,0x4e, -0x0e,0xe9,0x47,0x0e,0xe9,0x4f,0x0e,0x49,0x25,0x87,0x5c,0x45, -0x0e,0x59,0x46,0x0e,0x59,0x4a,0x0e,0x59,0x46,0x0e,0x99,0x4a, -0xf6,0x48,0x23,0x7b,0x64,0x90,0x3d,0x12,0x38,0xee,0x3e,0x99, -0x1c,0x92,0x45,0x0e,0xc9,0x26,0x87,0x04,0x93,0x43,0xc6,0x92, -0x43,0x94,0x1c,0x62,0xc8,0x21,0x59,0xe4,0x90,0x20,0x72,0x48, -0x3c,0x39,0xa4,0x19,0x39,0xc4,0x92,0x43,0x32,0xc9,0x21,0x3d, -0xc9,0x21,0x63,0xc9,0x21,0x35,0xe4,0x10,0x1f,0x39,0x24,0x8b, -0x1c,0x72,0x23,0x39,0x64,0x21,0x39,0xe4,0x06,0x72,0xc8,0x12, -0x72,0xc8,0x3c,0x72,0xc8,0xb5,0xe4,0x90,0xeb,0xc9,0x21,0x8b, -0xc9,0x21,0x73,0xc9,0x21,0x0b,0xc8,0x1e,0x83,0xc9,0x1e,0x57, -0x90,0x3d,0x86,0x92,0x3d,0x06,0x91,0x37,0x86,0x90,0x37,0xea, -0xc9,0x18,0xf3,0x99,0x81,0x85,0x9b,0xf2,0xe0,0xce,0xe2,0xeb, -0x55,0x3b,0x60,0x98,0xa4,0x4e,0xba,0x7e,0xde,0x2c,0xa9,0x9d, -0x36,0x6f,0xca,0x35,0x32,0x6f,0xd6,0x84,0x05,0x0d,0xb2,0xc9, -0xaf,0x1f,0xdd,0xbd,0xc6,0x54,0x8f,0x6e,0xfe,0x4f,0xb2,0xb8, -0xac,0xae,0x88,0x88,0xd9,0x0d,0xd9,0x4c,0x3f,0x20,0xe3,0x70, -0x30,0xc8,0xc4,0x80,0x75,0xdd,0x48,0x5b,0x14,0xb5,0x6b,0x0b, -0x20,0x72,0x31,0xb0,0xb4,0x93,0x74,0x47,0xae,0xdf,0x1f,0xf8, -0x39,0x02,0x3c,0x33,0x29,0x60,0x5d,0xa7,0x89,0xa3,0xf9,0x7b, -0x93,0x39,0x52,0xc0,0x91,0x86,0xce,0xc8,0xec,0x6b,0x81,0xbd, -0x43,0x81,0xa7,0x63,0x65,0x32,0x38,0x43,0x07,0x0e,0x1e,0x90, -0x2d,0x1d,0x87,0x0e,0x1e,0x98,0x8d,0xfd,0xf8,0xbf,0x67,0x81, -0xd3,0x31,0xe0,0x90,0x34,0x20,0x7f,0x6b,0xa0,0x7c,0x85,0x74, -0x91,0x1e,0x50,0x88,0x03,0x81,0xce,0xa3,0xc0,0x5f,0x53,0xb8, -0x5e,0x3c,0x47,0xfa,0x62,0xc1,0x32,0xe9,0x4d,0x33,0x96,0x2a, -0xa5,0x0a,0xea,0xad,0x0e,0xc8,0x3e,0x0c,0x38,0x3d,0x1e,0x2c, -0xe7,0x5f,0xd3,0x8d,0x06,0xc6,0x81,0x89,0x32,0xc0,0x2e,0x2d, -0x81,0xc3,0xa5,0xe0,0x85,0xae,0xc8,0xdd,0xfa,0x82,0x01,0xae, -0x04,0x9e,0x4f,0x80,0x0e,0x9c,0x3e,0x61,0xc2,0xac,0x05,0x3a, -0x8f,0x76,0x09,0xed,0x4a,0xda,0x3b,0x68,0xd7,0xd1,0x6e,0x9c, -0x34,0x69,0xf6,0x5c,0x7d,0x84,0x76,0x0b,0xed,0xd3,0xb4,0x3b, -0x69,0xf7,0xd0,0xee,0x9b,0xdc,0x30,0x67,0xb6,0xbe,0x42,0x7b, -0x88,0xf6,0x5d,0xda,0x23,0xb4,0x9f,0xd0,0x9e,0x9c,0x3a,0x6f, -0xc2,0x24,0x3d,0x43,0x7b,0xde,0x59,0x1b,0x4c,0x1b,0x4d,0x9b, -0x48,0x9b,0x39,0x6b,0xc6,0xb4,0x09,0x36,0x9f,0xb6,0x88,0xb6, -0x8c,0xb6,0x23,0x6d,0x37,0xda,0x5e,0xb3,0xe6,0x4c,0x9a,0x65, -0xfb,0xd1,0xd6,0x37,0x2c,0x9c,0x3d,0xcf,0x0e,0xa7,0x1d,0x43, -0x3b,0x91,0x76,0x3a,0x6d,0x03,0xed,0x82,0x39,0xf3,0x26,0x37, -0xd8,0x25,0xb4,0x2b,0x68,0x57,0xd3,0xae,0xa1,0x5d,0x47,0xbb, -0x61,0x3e,0xce,0xd4,0x6e,0xa2,0xdd,0x4c,0xbb,0x85,0x76,0x1b, -0xed,0x76,0xda,0x5d,0xf3,0x67,0x34,0x4c,0xb5,0x7b,0x68,0x5f, -0xa4,0xdd,0x4f,0xfb,0x1a,0xed,0x9b,0xb4,0xef,0xcf,0x9f,0xdf, -0xae,0xd4,0x1e,0xa5,0x3d,0x4e,0xfb,0x37,0xda,0xb3,0xb4,0xe7, -0x9d,0xf5,0xf9,0x60,0xcb,0x7c,0xe1,0xb4,0xb1,0xb4,0x89,0xb4, -0xe9,0xb4,0x39,0xb4,0x05,0xb0,0xed,0x7d,0x25,0xb4,0xe5,0xb4, -0x9d,0x69,0xab,0x69,0x6b,0x69,0x07,0xc0,0x96,0xfb,0x86,0xd2, -0x8e,0xa4,0x1d,0x4b,0x3b,0x99,0x76,0x26,0xed,0x5c,0xd8,0x0a, -0xdf,0x22,0xda,0xa5,0xb4,0x2b,0x69,0x6f,0xa3,0x5d,0x4b,0x7b, -0xdf,0xfc,0x85,0x13,0xe7,0xfb,0x36,0xd2,0x3e,0x4c,0xfb,0x28, -0xed,0x56,0xda,0xa7,0x69,0x77,0xcc,0x5f,0x38,0x77,0xbe,0x6f, -0x37,0xed,0x5e,0xda,0x7d,0xb4,0x07,0x68,0x0f,0xd2,0xbe,0xbd, -0x64,0xca,0xbc,0x39,0xbe,0xc3,0xb4,0xc7,0x68,0x4f,0xd0,0x9e, -0xa6,0x3d,0xe7,0x6c,0x50,0xe3,0x93,0xba,0xcc,0x3f,0xf4,0x9a, -0xc0,0x3c,0xf0,0x72,0x5f,0x0d,0xc7,0x5a,0xbe,0xdf,0x2a,0x73, -0xd9,0xcb,0x7f,0x35,0xcc,0x58,0x7f,0xc8,0xfa,0x8f,0x98,0x33, -0xc6,0x39,0xf6,0xf3,0x43,0xd6,0x77,0x19,0x36,0xfe,0x32,0x6c, -0xf8,0xf7,0x5b,0xeb,0xae,0x15,0x44,0x59,0x57,0x8f,0xd2,0x73, -0xb4,0xa7,0x69,0x4f,0xd0,0x1e,0xe3,0xa7,0xf9,0xb0,0xd1,0xc0, -0x51,0x67,0x53,0x69,0x13,0x68,0xa3,0x69,0x43,0x69,0xdd,0xf5, -0x81,0x18,0x1b,0x4b,0x1b,0x4e,0xeb,0x46,0x05,0x62,0xc0,0x06, -0xce,0x9e,0xa5,0xfd,0x12,0x36,0x56,0xcf,0xd0,0x9e,0xa4,0xfd, -0x84,0xf6,0x08,0xed,0xbb,0xb4,0x87,0x61,0xe3,0xf4,0x6d,0xda, -0x83,0xb4,0x07,0x68,0xf7,0xd1,0xee,0x75,0x96,0x47,0x1e,0x71, -0x19,0x36,0xec,0x32,0x6c,0xe4,0x0f,0xd8,0x24,0xa0,0x68,0x47, -0xa0,0x74,0x1d,0xb0,0x7f,0x24,0x10,0x74,0xa6,0xcc,0x83,0xbe, -0x5d,0x29,0x77,0xc8,0x3a,0xd9,0x28,0x8f,0xc8,0x16,0x79,0x5a, -0x76,0xca,0x1e,0xd9,0x27,0xaf,0xc8,0x9b,0x72,0x92,0x5e,0x69, -0xec,0x7a,0x7f,0x4f,0xfb,0xc2,0xfd,0xef,0x65,0x87,0xf7,0xba, -0xdb,0x7b,0xdd,0xeb,0xbd,0xfe,0xde,0xf3,0xa4,0x37,0xe5,0xb8, -0xb7,0xe4,0xb4,0xff,0xd5,0x04,0x7b,0xaf,0xc9,0xde,0x6b,0xa1, -0xf7,0x5a,0xe5,0xbd,0x0e,0xf2,0x5e,0xeb,0xbd,0xd7,0x35,0xde, -0xeb,0x06,0xef,0x75,0xa3,0xf7,0xfa,0x60,0xd3,0x7b,0x9f,0x77, -0xa7,0x83,0xff,0xf5,0x13,0xee,0x39,0x14,0x3a,0xad,0x01,0xba, -0x67,0x9d,0x6e,0x76,0xf3,0xd9,0xa0,0x01,0xfc,0xc7,0xbf,0x54, -0xd4,0x3e,0x23,0x3e,0x53,0x67,0x06,0x99,0x4f,0xcc,0x09,0xbc, -0x7b,0xf4,0x1b,0xef,0x36,0xe3,0x98,0xaf,0x93,0xc5,0xa8,0x3d, -0x82,0x6c,0xf0,0x22,0xb3,0x0c,0xa1,0xf3,0x2d,0xb6,0x83,0xbd, -0x63,0x0d,0x7f,0xac,0x26,0x72,0x09,0x8e,0xcb,0xde,0xdd,0xb4, -0x44,0xed,0x3a,0x8e,0xd7,0x7e,0xf7,0xfb,0x6a,0x17,0xe3,0x93, -0x8b,0xce,0x55,0xb4,0x63,0x2f,0xf9,0x9d,0x5e,0x97,0xfc,0x4e, -0xe1,0x25,0x3e,0x31,0x9c,0xfd,0xc8,0xc9,0xbc,0x36,0x9d,0x57, -0x10,0xfe,0x43,0xf6,0xcb,0xcb,0x72,0x40,0xfe,0x84,0x1e,0x7d, -0x55,0x5e,0x93,0xd7,0xe5,0xa0,0xbc,0x21,0x87,0xe4,0xcf,0xe8, -0xa5,0xb7,0xe4,0x6d,0x79,0x47,0xde,0x95,0xf7,0xe4,0x7d,0xf9, -0x40,0x0e,0xcb,0x87,0x9a,0xae,0x83,0xa0,0x60,0x9d,0x8e,0x43, -0xa3,0x62,0x1b,0x6e,0x04,0x2a,0x12,0xb9,0x4c,0x90,0x09,0x46, -0x3e,0x03,0x89,0x84,0xff,0xbb,0xb9,0x07,0x9c,0x3d,0x34,0x9c, -0xbb,0x17,0x04,0x91,0x01,0x55,0x85,0xb5,0x61,0xdd,0x1c,0xe0, -0x48,0xb0,0xf4,0x3f,0xb4,0xd7,0xc6,0xed,0x9b,0xfe,0x01,0xfb, -0x37,0xd0,0x71,0x0e,0xc1,0x1c,0x3a,0x3c,0xc3,0x79,0x5a,0x46, -0xff,0xc8,0x99,0x06,0x25,0xbc,0xca,0xe0,0x69,0x03,0xbb,0x02, -0x47,0x39,0xc9,0x5e,0x0f,0x3b,0xcd,0xde,0x00,0x3b,0xdd,0x2e, -0x81,0x9d,0xc9,0xe3,0x70,0x9a,0x07,0xda,0xc1,0xde,0x84,0x25, -0x13,0xe9,0x05,0xd3,0xec,0x32,0xae,0x73,0x23,0xec,0x35,0x76, -0x39,0xec,0xec,0x80,0x6d,0x2d,0xe6,0x7a,0x0b,0xb9,0xde,0x22, -0xae,0x77,0x1d,0xd7,0x70,0xe7,0x3a,0x06,0x7f,0xd3,0x03,0xfb, -0x9e,0x4b,0x26,0x06,0x2c,0x71,0xcd,0xd3,0x0f,0x7f,0xc3,0xbf, -0xb1,0x64,0x18,0xfe,0x7a,0x7d,0x63,0x49,0x1d,0xef,0xc1,0xf9, -0x7a,0x3b,0x88,0x01,0xdd,0xf9,0x8d,0x2d,0x23,0xbe,0xf4,0xf1, -0x6f,0x2c,0xd9,0x83,0xbf,0xf5,0x01,0x7e,0xa6,0xd0,0x4c,0x41, -0xff,0xff,0xad,0x6c,0x6f,0xb1,0xab,0xec,0x6a,0x7b,0xab,0xbd, -0xcd,0xde,0x6e,0xef,0xb0,0x3f,0xb2,0x6b,0xed,0x5d,0xf6,0x6e, -0x7b,0x8f,0x5d,0x67,0xef,0xb5,0xf7,0xd9,0xfb,0xed,0x7a,0xfb, -0x80,0xdd,0x60,0x7f,0x6c,0x37,0xda,0x7f,0xb1,0x0f,0xda,0x87, -0xec,0x26,0xf6,0x8b,0xaf,0x49,0xf7,0x29,0x67,0x86,0x29,0x7a, -0xbc,0x2b,0x14,0xf2,0x60,0xbb,0xd2,0xde,0x8c,0xd7,0x51,0x76, -0x8d,0xbd,0x13,0xfe,0xb0,0x13,0x1e,0x18,0xe5,0xe6,0x74,0x5d, -0xcc,0x57,0xed,0x1c,0xec,0xa7,0xe1,0xfb,0xf6,0x84,0x18,0xad, -0x35,0x83,0xcd,0x31,0xf3,0x19,0x19,0xc7,0xc7,0xd1,0x44,0x8b, -0x33,0xef,0x82,0x56,0xe8,0x06,0xa5,0x69,0x38,0xaa,0x17,0xce, -0x99,0xcb,0xb3,0x38,0xbb,0x34,0xca,0x26,0xfa,0x47,0x3d,0xb1, -0xc7,0x6c,0x6f,0xd4,0x33,0x70,0x7d,0x57,0xba,0x70,0xf4,0xd4, -0x3f,0xc2,0xea,0xf2,0x79,0x83,0xbc,0x37,0x0d,0xb9,0xc7,0x40, -0x1d,0xc8,0x19,0xb6,0x13,0x91,0x63,0xb8,0x7c,0x26,0x8d,0xe3, -0xc0,0x11,0xf8,0x8a,0x31,0xea,0xfc,0x9d,0xf7,0x4b,0x29,0x47, -0x5b,0x7d,0xde,0xf5,0x08,0xc3,0xad,0xfb,0xe7,0x77,0x58,0x66, -0xfe,0xa9,0x9c,0x07,0x95,0xc9,0x6d,0x66,0x71,0x9b,0xd9,0xdc, -0x66,0x0b,0x6e,0x33,0x87,0x47,0xe0,0x8e,0xd8,0xda,0x29,0x76, -0x86,0xbd,0x86,0xfe,0xed,0xcd,0xf5,0xe2,0xec,0xaf,0x99,0x5c, -0x23,0x82,0xf5,0xf9,0xee,0xf8,0xe1,0x91,0x73,0xbd,0xb9,0x79, -0x31,0xfc,0xcc,0x6f,0x1d,0x37,0x75,0xfd,0x67,0x66,0xdd,0x7d, -0xef,0xcc,0xb9,0x3d,0x66,0xef,0x25,0x67,0xce,0x7d,0x66,0x4e, -0x7e,0x3d,0x7b,0x8e,0x47,0x36,0x1b,0xb1,0xe1,0x3f,0x32,0xf6, -0x0f,0x32,0xf5,0x01,0x68,0xf2,0x51,0x88,0x8c,0x64,0x37,0x4f, -0x0e,0xd9,0x9b,0xcb,0x8c,0x33,0xdd,0xc8,0x38,0x72,0xcf,0x1f, -0xe1,0xb3,0x3b,0x91,0x2d,0x86,0x31,0x2f,0xcb,0x72,0xf3,0xbb, -0xd1,0x36,0x2e,0x2f,0xcb,0xd1,0xa3,0xc0,0x8e,0x5c,0x3d,0x86, -0x8c,0x2c,0x4f,0x4f,0x80,0xb3,0xf3,0xf5,0x0c,0xc7,0xf3,0xbe, -0x42,0xe6,0xd5,0xce,0x1a,0xf8,0x7b,0x7b,0x37,0x47,0x4e,0x2a, -0x38,0x4b,0xae,0x23,0xc7,0xda,0x03,0x7a,0x90,0x2d,0x9f,0xcc, -0x96,0x4f,0x67,0xcb,0x67,0xb0,0xe5,0x33,0xd9,0xf2,0x59,0x6c, -0xf9,0x6c,0x5b,0x6f,0x47,0x48,0x8e,0x1d,0x6d,0xaf,0x92,0x42, -0x3b,0xde,0x8e,0x97,0x22,0x1e,0x7f,0x31,0x8f,0xbf,0x84,0xfd, -0x10,0x21,0x5d,0xec,0x20,0x3b,0x12,0x5b,0x0f,0xf1,0xc6,0xd0, -0x63,0x5c,0x3b,0xd3,0xab,0xac,0xbb,0xa3,0x14,0xea,0xc1,0x7d, -0x27,0xda,0xce,0x47,0xdf,0xc4,0xf0,0x9b,0xb1,0xde,0xd5,0x80, -0xaf,0x7f,0xb5,0x41,0x27,0xcf,0x6a,0x98,0xe6,0xd5,0xa3,0xe7, -0xfb,0xeb,0xee,0xfe,0xbb,0xe8,0x1a,0x64,0x69,0x45,0x03,0x90, -0x9e,0x15,0xf5,0x41,0xa6,0xf6,0xcd,0x77,0x8d,0xdb,0xf8,0x7f, -0x13,0x04,0x9a,0x84 +0x78,0xda,0xac,0xbc,0x07,0x5c,0x13,0xd9,0xf7,0x28,0x3e,0x77, +0x26,0x33,0x81,0x0c,0x04,0x48,0x48,0x68,0xa6,0x88,0xae,0x7d, +0x91,0x5e,0xc4,0x02,0x81,0x80,0x58,0x40,0x41,0xc1,0xae,0x01, +0x02,0x44,0x02,0x41,0x08,0x45,0x54,0xb0,0xae,0xba,0x36,0xec, +0x65,0x2d,0xd8,0x7b,0xef,0xdd,0xb5,0xac,0xbd,0xa0,0xe2,0xea, +0x5a,0xc0,0xb6,0xba,0xae,0xdb,0x5c,0xdd,0x1b,0x77,0x70,0x7d, +0x77,0xe6,0x46,0xc5,0xfd,0x7e,0x7f,0xef,0xff,0x3e,0xef,0xfd, +0xc5,0xc9,0x39,0xb7,0x9d,0x7b,0xda,0x3d,0xf7,0xdc,0x9b,0x92, +0xd4,0xa7,0x4f,0x12,0x21,0x25,0xc6,0x12,0x14,0x31,0x2c,0x26, +0x2e,0x4e,0xfb,0x76,0xc4,0xdd,0x5e,0x04,0xa1,0x74,0x27,0x88, +0x5f,0xe6,0xc4,0xa6,0x24,0xc4,0x13,0x04,0x01,0x08,0xd2,0x7d, +0x11,0x82,0x0e,0xf1,0xb1,0xfa,0xb8,0x6d,0x01,0xdb,0x62,0x09, +0x40,0x6d,0x40,0xd5,0x97,0xe2,0x7b,0x25,0xa5,0xfc,0xb5,0xb2, +0xeb,0xf7,0x04,0xa0,0xad,0xa8,0xbf,0x2d,0x3e,0xa5,0xaf,0x6e, +0x79,0xba,0xf1,0x2d,0x01,0xfe,0x34,0x13,0x84,0xeb,0x3f,0x49, +0x29,0xed,0x03,0xa7,0x67,0x94,0x26,0xa3,0xbe,0x88,0x26,0x31, +0x2c,0x23,0xcf,0x50,0x70,0xec,0xfd,0xfa,0xef,0x08,0x82,0x45, +0x45,0xc9,0xab,0x1c,0xa3,0x21,0xf3,0x8b,0x9e,0x29,0x23,0x50, +0xe1,0x25,0x7a,0x42,0x73,0x50,0x85,0xf8,0x0e,0xf3,0x0e,0xf5, +0x6f,0x8e,0xca,0xcd,0x73,0xf2,0xac,0x65,0x7b,0x9e,0x1d,0x1b, +0x43,0x90,0x22,0x44,0xcf,0xe5,0x49,0x9e,0xa1,0xac,0x80,0x7a, +0xcb,0x93,0x02,0x5d,0xd1,0x0b,0x93,0x67,0xb4,0x1a,0xfc,0x2e, +0x57,0xb4,0x46,0xfc,0xf1,0x95,0x5d,0xf3,0x0d,0x79,0xc6,0x07, +0x73,0x99,0x5f,0x51,0xfb,0x0e,0x82,0x70,0xec,0x55,0x60,0x29, +0xb2,0xbe,0x5f,0x43,0x74,0x24,0x08,0xc5,0x6b,0xd4,0xae,0x45, +0x92,0x10,0x04,0x05,0xe2,0x73,0xde,0x45,0x67,0x0e,0x75,0xe9, +0xf8,0x86,0xa0,0xa8,0xe7,0xa8,0x86,0x78,0xd8,0x7e,0xde,0x3b, +0x0c,0xcb,0x1e,0xff,0xd3,0xf0,0x9e,0x15,0xdd,0x11,0x0d,0xe5, +0x7b,0x12,0x24,0x81,0xff,0xa1,0x71,0x22,0xf0,0xcf,0x2f,0x04, +0x41,0x7b,0xff,0xd3,0xf0,0x4f,0x83,0xe8,0x8e,0x40,0xa9,0xd1, +0x3f,0xea,0x2d,0x41,0xf4,0x12,0x5e,0x09,0x11,0x99,0x04,0xaa, +0x08,0x9a,0x20,0xc8,0xaf,0xc9,0x7e,0xa8,0xdc,0x1d,0x43,0x30, +0x84,0xe8,0x08,0x42,0x1c,0x00,0xc9,0xd2,0x14,0x4d,0x22,0xd2, +0x54,0x35,0x41,0xfe,0xd6,0x8b,0xd0,0x46,0x7e,0xa0,0x91,0xa0, +0xeb,0xa9,0x05,0x51,0x84,0xf6,0xfd,0x3b,0xca,0xe9,0x7d,0x73, +0xd0,0x4e,0x04,0x80,0x1c,0xb1,0xbc,0x82,0x6f,0x23,0x45,0xe4, +0x21,0x41,0x02,0x9e,0xa3,0xd6,0xe0,0xd5,0xc7,0xf9,0xbf,0xc4, +0xdc,0x09,0xaf,0xce,0xa8,0x84,0x71,0x92,0x10,0x13,0x1d,0xec, +0x38,0x45,0x28,0x89,0x68,0x3b,0x2e,0x6a,0xd4,0x87,0x46,0x78, +0x9a,0x1d,0x67,0x90,0x41,0x32,0xed,0xb8,0x98,0xe8,0x4d,0x58, +0xec,0xb8,0x03,0xaa,0x3f,0x61,0xc7,0x1d,0x89,0x20,0xe2,0xa2, +0x1d,0x67,0x09,0x2f,0xe2,0x1f,0x3b,0xee,0x44,0xc8,0x80,0x87, +0x1d,0x77,0x26,0xaa,0x40,0x6b,0x3b,0x2e,0x25,0xbc,0xc1,0x41, +0x8c,0xa3,0x17,0x19,0xb8,0x61,0xc7,0x01,0xc2,0x9f,0xda,0x71, +0x92,0x90,0x03,0x68,0xc7,0x29,0x42,0x46,0x4a,0xec,0xb8,0x88, +0xf0,0x26,0x9b,0xd8,0x71,0x9a,0xf0,0x24,0x43,0x91,0x14,0x40, +0xe4,0x88,0x8a,0x03,0xc8,0x44,0x3b,0x0e,0x50,0x9f,0x0d,0x76, +0x9c,0x24,0xa4,0xe4,0x49,0x3b,0x4e,0x11,0xed,0xc8,0x6b,0x76, +0x5c,0xd4,0xa8,0x0f,0x8d,0xf0,0x06,0x3b,0xce,0x10,0x4a,0x4a, +0x69,0xc7,0xc5,0xc4,0x2a,0xaa,0x9d,0x1d,0x77,0x40,0xf5,0x57, +0xec,0xb8,0x23,0x91,0x45,0x3d,0xb1,0xe3,0x2c,0x11,0x28,0xea, +0x66,0xc7,0x9d,0x88,0xe6,0xa2,0xd1,0x76,0xdc,0x19,0x68,0x45, +0xd5,0x76,0x5c,0x4a,0x04,0xd3,0x27,0xec,0xb8,0x9c,0xb0,0xd2, +0xaf,0x31,0x8e,0x84,0x68,0xce,0xe4,0xd8,0x71,0x80,0xf0,0xe9, +0x76,0x9c,0x24,0x5a,0x30,0x3b,0xec,0x38,0x85,0xea,0x6f,0xd9, +0x71,0x11,0x11,0xcc,0xfc,0x6d,0xc7,0x69,0xc2,0x5f,0xec,0x17, +0x63,0x29,0x18,0x59,0x68,0xca,0xce,0xb1,0x6a,0x03,0xfd,0x03, +0xc2,0xb5,0xbc,0x9b,0xc4,0x58,0x0a,0x0b,0xfc,0xb4,0xd1,0x66, +0xb3,0x56,0x68,0x28,0xd2,0x16,0x1a,0x8b,0x8c,0x85,0x25,0xc6, +0x4c,0x3f,0xbe,0xb5,0x97,0xd9,0x58,0xa6,0x4d,0x31,0xe4,0x17, +0x25,0x1b,0xb3,0x8b,0xcd,0x86,0xc2,0x20,0x3f,0x7f,0xff,0x90, +0x48,0xbe,0x85,0x7f,0xe1,0x5b,0xf9,0xc6,0x54,0x63,0x61,0x91, +0xc9,0x92,0xaf,0x15,0x5a,0x1b,0xd5,0x7f,0xa0,0xb0,0x41,0x6b, +0x2a,0xd2,0x1a,0xb4,0xd6,0x42,0x43,0xa6,0x31,0xcf,0x50,0x98, +0xab,0xb5,0x64,0x7d,0x9c,0xbb,0x1d,0x9a,0x30,0xdb,0x54,0x64, +0x35,0x16,0x1a,0x33,0xb5,0xa6,0x7c,0x6d,0x9e,0x21,0x7f,0xa4, +0x76,0x78,0x71,0xa1,0xa9,0x28,0xd3,0x94,0x61,0x45,0x54,0x8b, +0xb4,0xa5,0x96,0x42,0x73,0x66,0xa9,0x29,0xd3,0xe8,0xa7,0xb3, +0x98,0x33,0xb5,0x3d,0x2d,0xf9,0x99,0x86,0x91,0x3d,0x4d,0xb9, +0x46,0x6d,0x74,0x7a,0xba,0x29,0x3f,0xb7,0x9d,0xb6,0x97,0xa1, +0xd8,0xac,0x2d,0x31,0xe4,0x6b,0x33,0x8d,0x85,0xda,0x1e,0x06, +0x43,0x3e,0xaa,0x32,0x19,0x11,0x4d,0xa1,0x32,0xd9,0x52,0x94, +0x67,0x30,0x1b,0xf3,0x73,0xac,0xd6,0x82,0x0e,0xed,0xdb,0x97, +0x96,0x96,0xfa,0xa5,0x23,0x42,0x79,0x02,0x1d,0xbf,0x0c,0x4b, +0x5e,0xa3,0x06,0x53,0x7a,0x1e,0x5f,0xd3,0x27,0x07,0x71,0x1c, +0x67,0xc9,0xb7,0x6a,0x53,0x2c,0x59,0xd6,0x52,0x43,0xa1,0x91, +0x17,0xc1,0x6c,0xca,0x30,0xe6,0x17,0x21,0x3e,0x8b,0xf3,0xf9, +0x89,0xac,0x39,0x46,0x6d,0x4a,0x42,0x0f,0x6d,0x52,0x81,0x31, +0x1f,0x77,0xee,0x81,0x3b,0xb4,0xd3,0x7e,0xd0,0x48,0x80,0x5f, +0x80,0x9f,0x56,0x20,0x66,0x1f,0x2b,0x68,0xa2,0xc4,0x60,0x32, +0x1b,0xd2,0xcd,0x46,0x6d,0xa9,0xc9,0x9a,0x83,0x14,0x13,0x17, +0xdd,0x5b,0x6b,0xb0,0x76,0xd0,0xda,0xf9,0x28,0xca,0x28,0x34, +0x15,0x58,0x8b,0xfc,0x8a,0x4c,0x66,0x3f,0x4b,0x61,0x76,0xfb, +0xa4,0xb8,0x1e,0xff,0x73,0x4b,0x91,0x29,0xaf,0x00,0x51,0x32, +0x5b,0x4a,0x8d,0x85,0x19,0x06,0x34,0x81,0xe1,0x3f,0x6a,0xb2, +0x8b,0xcc,0x86,0xa2,0x1c,0xc4,0x76,0x7e,0x71,0x5e,0x3a,0xe2, +0xbb,0xdc,0x58,0x68,0xc9,0xb4,0x58,0xad,0x9f,0xd7,0x18,0xcc, +0x48,0x5f,0xf9,0x06,0x6b,0xe3,0x91,0xc6,0xa2,0x72,0xa3,0xd5, +0xaa,0x2b,0x36,0x67,0x1b,0x0a,0x4d,0x48,0x93,0x31,0xc8,0x7b, +0xcc,0x48,0x12,0x6d,0x96,0xa5,0x30,0xaf,0x88,0x88,0x41,0xab, +0xbb,0x80,0x18,0x49,0x14,0x12,0x26,0x22,0x9b,0xc8,0x21,0xac, +0x28,0xaa,0x04,0x12,0xfe,0x44,0x00,0x11,0x8e,0xb0,0x04,0x42, +0x47,0xf4,0x44,0x90,0xef,0x55,0x88,0xfa,0xf9,0x21,0x3c,0x9a, +0x30,0xa3,0x3f,0x6d,0xa3,0x11,0x45,0x42,0xc9,0x88,0xa0,0x11, +0xc1,0x12,0xf4,0x9a,0x89,0x7a,0x7e,0x18,0xdb,0x0b,0xf5,0x36, +0x12,0x65,0x08,0x4b,0x21,0x0c,0x44,0x3e,0xea,0x95,0x8c,0xca, +0xd9,0x44,0x31,0xaa,0x37,0xa0,0xfe,0x41,0xa8,0xaf,0x3f,0xfa, +0x0b,0x21,0x22,0x3f,0x8e,0xf9,0x80,0x7d,0x18,0xfb,0x61,0x64, +0xaa,0x30,0x43,0x11,0x9a,0xd9,0x82,0xca,0xda,0x46,0x63,0xff, +0x7b,0xff,0x7f,0xf3,0xb0,0x0d,0xe1,0x26,0x81,0x5f,0x03,0x7a, +0xac,0x88,0x96,0x01,0xf1,0x6a,0x24,0xf2,0x04,0x4e,0x72,0x51, +0x9d,0x85,0xc8,0xfa,0x2f,0x72,0xb7,0xb3,0x4b,0x98,0x2d,0x8c, +0xb6,0x0a,0x5c,0xf0,0x52,0xf2,0xd4,0x78,0x3e,0xf2,0x84,0xf9, +0x46,0x22,0x6c,0x38,0x92,0xab,0x50,0xe8,0x95,0x89,0x5e,0x33, +0x50,0x5f,0xcc,0x2b,0x3f,0x67,0xa9,0x40,0xcd,0x8c,0x5a,0x4a, +0x51,0x2d,0x3f,0xaf,0x1f,0x9a,0xc7,0x22,0xd4,0x68,0xd1,0x7c, +0x7c,0xbf,0x4c,0x44,0x69,0x24,0xc2,0x4d,0x88,0x1b,0xa3,0xa0, +0xed,0x74,0xf4,0xc7,0xcf,0x92,0x2b,0x70,0xd1,0x0b,0xb5,0x17, +0x0b,0xfa,0x2f,0x11,0xe6,0xd4,0x0a,0x74,0x0a,0x11,0xec,0x81, +0xca,0x7c,0x0d,0xee,0x65,0x42,0xb5,0x56,0x7b,0xcb,0x87,0x9e, +0xc9,0x68,0x86,0x22,0x81,0x57,0x5e,0x1b,0xf9,0x82,0xed,0xac, +0x48,0xba,0x0e,0x44,0x7b,0xf4,0x57,0x2a,0xfc,0xf9,0xa1,0xd9, +0x30,0x47,0x79,0x8d,0xf8,0xf1,0x43,0x92,0x58,0x50,0xcd,0x7f, +0x1f,0x61,0x42,0x63,0xf2,0x3e,0xf6,0xe9,0x83,0x7a,0x61,0x1d, +0xc7,0x09,0x14,0xac,0x82,0xe5,0x79,0xbd,0x5a,0x51,0x6f,0x83, +0xa0,0xb9,0x0f,0x56,0x30,0x0b,0x3a,0x32,0x0a,0xfa,0xc1,0xfa, +0x2c,0x16,0xe6,0xc4,0x7c,0x5b,0x11,0x25,0xa3,0x30,0x3a,0x01, +0x49,0xa7,0x25,0x92,0xd0,0xcc,0x46,0x41,0x92,0x4f,0x94,0x7b, +0x7c,0x46,0x81,0x97,0xfd,0xdf,0x3e,0x12,0x80,0x38,0x0b,0x10, +0x3c,0xf7,0x13,0x67,0x9f,0xcf,0xfb,0xc9,0x27,0x78,0x4d,0x99, +0x04,0xbf,0x4c,0x17,0x74,0xa4,0x15,0x2c,0xc5,0xf3,0x81,0x3d, +0x26,0x0e,0xd9,0xa3,0xb7,0x80,0x5b,0x91,0x0e,0xb4,0xff,0xd2, +0x47,0x11,0xa2,0xc9,0xdb,0xbe,0x40,0x58,0x13,0x7e,0x02,0x0f, +0x66,0x04,0x79,0xab,0x67,0xa3,0xf6,0x24,0x34,0xbe,0xc7,0xff, +0xd5,0x98,0xae,0xa8,0x5c,0x2a,0xf8,0xa0,0x81,0x28,0x17,0xda, +0xd2,0x11,0x96,0x81,0x7c,0xe2,0x4b,0xc1,0xe3,0xf2,0xd0,0x78, +0xde,0x47,0xb2,0x51,0x9f,0x2c,0xd4,0x6a,0x41,0x18,0x2f,0x51, +0x86,0xdd,0xf2,0xbc,0x2c,0xfc,0xba,0xe4,0xfd,0x86,0x9f,0x81, +0x5f,0x8d,0xfc,0x88,0x11,0x68,0x2c,0xd6,0x7b,0x36,0xb2,0x72, +0x1e,0xea,0x6b,0x10,0xfc,0xbb,0x88,0x68,0x2a,0xf4,0xe3,0xe9, +0x62,0x3d,0x98,0x05,0x0e,0x78,0xcd,0x66,0x08,0x7d,0x8c,0x82, +0x16,0xfe,0xbf,0xfb,0xf0,0x7c,0x98,0x85,0x52,0x8e,0x7d,0xa6, +0x7c,0x81,0xdf,0x74,0xbb,0x8d,0xcb,0x05,0x68,0x41,0x2d,0x16, +0x41,0x2f,0xff,0xbb,0x3e,0xbc,0xdf,0x62,0x9f,0xce,0x17,0x2c, +0xf0,0x3f,0xcd,0xc9,0x47,0xa2,0x72,0xc1,0xff,0xad,0x68,0x7d, +0xf1,0xab,0x25,0x5b,0xf0,0x3b,0x93,0x5d,0x1b,0x31,0xf6,0x78, +0x67,0xb6,0xfb,0x01,0xaf,0x33,0x5e,0xa7,0x79,0x68,0x1c,0x9f, +0x21,0xe1,0xc7,0x9e,0x71,0x38,0x08,0xbb,0xaf,0x50,0x16,0x39, +0x3c,0x40,0xb0,0x1e,0x65,0xc7,0x0c,0x31,0x0c,0x45,0x9d,0x08, +0x22,0x8a,0x18,0x80,0x68,0x97,0x13,0x15,0xa0,0x12,0xcc,0x02, +0x73,0xc0,0x4a,0xb0,0x03,0xdc,0x03,0xef,0x49,0x1f,0x32,0x8c, +0xec,0x4f,0x1e,0x21,0xcf,0x92,0xf7,0x29,0x11,0xe5,0x44,0xc9, +0x28,0x05,0xe5,0x43,0x35,0xa3,0x5a,0x51,0x15,0xd4,0xd7,0xd4, +0x74,0xaa,0x8a,0x5a,0x49,0x6d,0xa4,0x76,0x52,0xe7,0xa9,0x2b, +0x22,0x1f,0x51,0x73,0x51,0x7b,0xd1,0x50,0x51,0x86,0x28,0x57, +0x54,0x2c,0x3a,0x89,0xb2,0xcd,0x9f,0x44,0x6f,0xe9,0x2f,0xa4, +0x5d,0xd4,0x93,0xd4,0xcb,0xd5,0x6f,0xb5,0xce,0x5a,0x85,0xd6, +0x5b,0xab,0xd6,0xfa,0x6a,0x5b,0x68,0x5b,0x6b,0xfd,0xb5,0x41, +0xda,0x0e,0xda,0x58,0x6d,0x81,0x76,0xa4,0x76,0xaa,0x76,0xa5, +0x76,0x8d,0x76,0x9d,0x76,0x9b,0x76,0x97,0x76,0xaf,0xf6,0x90, +0xf6,0xa8,0xf6,0x78,0x53,0x79,0x53,0x65,0x53,0xdf,0xa6,0x2d, +0x9a,0xfa,0x35,0xed,0xdd,0x74,0x48,0xd3,0xc5,0x4d,0x37,0x35, +0xdd,0xdd,0x74,0x7f,0xd3,0xc3,0x4d,0x4f,0x37,0xfd,0xce,0x97, +0xf4,0x65,0x7c,0x5d,0x7c,0x65,0xbe,0x0a,0x5f,0x6f,0x5f,0xb5, +0x6f,0x5b,0xdf,0x50,0xdf,0xae,0xbe,0xc3,0x7c,0x8d,0x5f,0x5c, +0x68,0x29,0x6f,0xd9,0xa3,0xad,0xdb,0xcb,0xfa,0xdf,0x2e,0xfd, +0x75,0x9b,0x23,0xff,0x79,0xff,0xfe,0xdd,0xfb,0xf7,0x42,0x7e, +0x19,0x80,0xbc,0x34,0x9a,0x18,0x88,0x6c,0x37,0x8a,0xa8,0x16, +0x24,0xac,0x06,0xdb,0xc1,0x65,0xf0,0x37,0xe9,0x29,0x48,0x78, +0x98,0xfc,0x8e,0xbc,0x4d,0x11,0x14,0xf3,0x51,0xc2,0x16,0x48, +0xc2,0x89,0x48,0xc2,0x99,0xd4,0x6c,0x6a,0x35,0xb5,0x89,0xda, +0x45,0x5d,0x10,0x11,0xa2,0x26,0xa2,0x2f,0x44,0xfe,0xa2,0x74, +0xd1,0x70,0x51,0xa1,0xa8,0x4a,0x74,0x55,0x74,0x4f,0xf4,0x2b, +0xdd,0x1c,0x49,0x38,0x16,0x49,0x58,0xad,0x25,0xb4,0xae,0x5a, +0x4f,0x6d,0x13,0xad,0x16,0x49,0xd8,0x4a,0xdb,0x5e,0x1b,0xa8, +0x8d,0x10,0x24,0xb4,0x6a,0xc7,0xda,0x25,0xdc,0xa0,0xdd,0xa9, +0xdd,0xa3,0x3d,0xf0,0x2f,0x09,0x7b,0x35,0x4d,0x69,0x5a,0xd5, +0x74,0x63,0xd3,0x1d,0x4d,0xf7,0x35,0x3d,0xd4,0x48,0x42,0x37, +0x24,0xa1,0x57,0x23,0x09,0x33,0xed,0x12,0x4a,0x05,0x09,0xbf, +0xe7,0xc0,0x47,0x09,0x25,0x04,0xf1,0xfe,0x3e,0x7a,0x56,0x0b, +0x39,0x6a,0xcb,0xf7,0x5e,0x9f,0x72,0xf8,0x7f,0x7e,0xfb,0x67, +0x0f,0xf1,0x98,0xb8,0x6e,0x2f,0x2e,0x27,0x96,0x12,0x0b,0x89, +0xd9,0x04,0xd1,0xf0,0x10,0xb5,0xd5,0xa3,0x67,0xd7,0x3f,0x3b, +0xd1,0xeb,0x48,0xa1,0xef,0xa2,0x7f,0x16,0x13,0xff,0xf1,0xef, +0x55,0x01,0x41,0x3c,0x1e,0xc8,0x63,0xf5,0x31,0xb8,0xa6,0x3e, +0xe4,0xf1,0x79,0xf4,0xda,0xa7,0xbe,0x7d,0x7d,0xf0,0xa3,0x3a, +0xf4,0x77,0xa7,0xde,0xa5,0xde,0xb9,0xde,0x09,0xd5,0x39,0xd4, +0x8b,0xeb,0xe9,0x7a,0xaa,0x9e,0xac,0x9b,0x53,0x57,0x55,0x37, +0xec,0x21,0x59,0x57,0x82,0xc7,0x3c,0x7c,0x8c,0x9e,0x9b,0xe8, +0xef,0xd4,0xc3,0x13,0x0f,0xd6,0xd6,0x6b,0xea,0x3d,0x08,0xe2, +0x41,0x26,0x7a,0x26,0x3d,0x28,0x7d,0x90,0xf3,0xa0,0xc7,0x83, +0x90,0x07,0xc1,0x3f,0xd4,0xde,0x33,0xdc,0x6b,0x4d,0x10,0x1e, +0x1e,0xee,0x6d,0x50,0x2a,0xff,0xad,0xe8,0x0f,0x8a,0x43,0x3e, +0x5b,0xcf,0xb3,0x86,0x72,0x66,0x07,0xf4,0xa8,0x85,0x33,0x14, +0x41,0x3e,0x20,0xeb,0xc9,0x47,0xc8,0x62,0x92,0x8f,0x67,0x15, +0x07,0x64,0x3b,0xef,0x8f,0x25,0x35,0x7a,0xb4,0xe8,0x69,0x23, +0x94,0xd0,0x2b,0x15,0x4a,0x75,0x16,0xf0,0x02,0xea,0x0a,0x75, +0x8d,0xba,0x4e,0xdd,0x16,0x75,0x14,0xf5,0x42,0x96,0x1c,0x8b, +0x0e,0x10,0xfc,0x33,0x85,0xee,0x80,0xe6,0x4c,0xa6,0x53,0xe9, +0x01,0xc2,0x41,0x62,0xc0,0x7f,0x6a,0x82,0xee,0x46,0xfc,0x97, +0x7f,0xb4,0x8e,0x8e,0xe5,0x7b,0xd3,0xc3,0xff,0x55,0x9f,0x8e, +0x9f,0xff,0xe8,0x9f,0x2c,0xbc,0xf6,0xf9,0xc8,0xeb,0x43,0x61, +0x2f,0x9b,0x46,0x6c,0x45,0x2b,0xb0,0x17,0x5a,0x91,0x05,0x28, +0x9e,0x4d,0x21,0x66,0x12,0x83,0xd1,0x4e,0x37,0x00,0xc5,0xbb, +0x70,0x62,0x10,0x31,0x84,0x58,0x40,0xcc,0x45,0x96,0xb3,0xa0, +0xb8,0x5d,0x88,0x22,0x45,0x11,0x31,0x9d,0xe8,0x4f,0x2d,0x44, +0xda,0xa1,0xd0,0x79,0x80,0x46,0x2b,0x59,0x8c,0xf2,0x7c,0x2b, +0x31,0x1a,0xc5,0x89,0x19,0xd4,0x23,0x14,0x11,0x36,0x12,0x5b, +0x88,0x0d,0x28,0x53,0x18,0x43,0x54,0x50,0xf3,0xd0,0x5a,0x9f, +0x80,0x22,0x6c,0x35,0xf5,0x86,0x18,0x47,0xcd,0x21,0x26,0x11, +0x55,0x54,0x6f,0x2a,0x99,0x5a,0x40,0x36,0x27,0x2a,0x89,0x6f, +0xa8,0x6a,0xaa,0x17,0x31,0x91,0xc8,0xa5,0xb2,0xa8,0x0c,0x2a, +0x9b,0xc8,0x07,0x5f,0x83,0x89,0x60,0x32,0xa8,0x02,0x53,0xc0, +0x4c,0xf0,0x0d,0x58,0x01,0xb6,0x80,0xb5,0x60,0x03,0xd8,0x08, +0x4e,0x83,0xa3,0xe0,0x04,0xf8,0x16,0xac,0x01,0xb7,0xc0,0x03, +0x70,0x1b,0xdc,0x05,0x4f,0xc0,0x3d,0x62,0x36,0x78,0x44,0xd2, +0x28,0x5a,0x90,0x24,0x45,0x7a,0x83,0x7f,0x40,0x3f,0xe2,0x02, +0x71,0x9a,0x38,0x4b,0x5c,0x23,0xce,0x11,0x57,0x88,0x57,0xc4, +0x5f,0xe8,0x24,0xd0,0x40,0xbc,0x07,0x04,0xd0,0x00,0x2f,0xd0, +0x04,0xa8,0x08,0x0e,0x04,0x81,0x8e,0x20,0x14,0x44,0x00,0x1d, +0xe8,0x40,0xcc,0x01,0x51,0xc0,0x08,0x86,0x82,0x74,0x90,0x01, +0xca,0xc1,0x10,0x30,0x1a,0x4c,0x27,0x2e,0x81,0x49,0xc4,0x19, +0x30,0x83,0xb8,0x0c,0x96,0x11,0xaf,0x41,0x35,0x01,0xc1,0x4a, +0xc2,0x06,0x96,0x13,0x6f,0xc0,0x2a,0xe2,0x2d,0x58,0x4d,0xfc, +0x0d,0xb6,0x01,0x1a,0xac,0x23,0xde,0x81,0x4d,0x00,0xa0,0xb5, +0xcc,0x80,0xf5,0xc4,0x3f,0xe0,0x00,0x70,0x01,0xfb,0x81,0x14, +0x1c,0x02,0x6e,0xe0,0x20,0x70,0x05,0x47,0x80,0x07,0x38,0x0c, +0x94,0xe0,0x1c,0x68,0x06,0xbe,0x03,0x4d,0xc1,0x31,0xe0,0x0d, +0xce,0x02,0x5f,0x70,0x12,0x78,0x82,0xf3,0xa0,0x39,0xb8,0x04, +0x5a,0xa1,0x28,0xd0,0x1a,0xb4,0x01,0x57,0x40,0x5b,0x70,0x0d, +0x7c,0x09,0xae,0x82,0x76,0xa0,0x06,0xf8,0x81,0xeb,0xa0,0x3d, +0xb8,0x01,0xfc,0x41,0x2d,0x08,0x04,0x37,0x41,0x00,0x08,0x06, +0xdf,0x83,0x10,0xf0,0x10,0x74,0x01,0x77,0x40,0x18,0xa8,0x07, +0x9d,0xc1,0xef,0x20,0x11,0xfc,0x01,0x92,0xc0,0x9f,0xa0,0x37, +0x78,0x05,0x7a,0x81,0xd7,0x20,0x19,0x40,0xd0,0x17,0xfc,0x05, +0xfa,0x80,0x37,0x20,0x05,0xbc,0x03,0x83,0x01,0x07,0x06,0x82, +0xbf,0xc1,0x00,0x92,0x05,0xb9,0xa4,0x03,0xc8,0x21,0x09,0x30, +0x8c,0x94,0x80,0xe1,0xa4,0x18,0x64,0x93,0x8e,0xc0,0x44,0x7a, +0x80,0x52,0xd2,0x07,0x8c,0x22,0x55,0x64,0x53,0x30,0x8e,0x6c, +0x06,0x26,0x90,0xbe,0x60,0x3c,0x48,0x03,0x4f,0x41,0x0c,0xe9, +0x04,0xcc,0xe0,0x2b,0xe2,0x3b,0x70,0x1c,0xf8,0x80,0x1f,0x40, +0x38,0x09,0x80,0x81,0x94,0x81,0x42,0x52,0x0e,0x8a,0x48,0x05, +0x28,0x26,0xdd,0x81,0x15,0xcc,0x22,0xae,0x82,0xa5,0xc4,0x9f, +0xe0,0x31,0x88,0x06,0x36,0x90,0x0a,0x1a,0xc0,0x20,0x6a,0x09, +0x35,0x97,0x5a,0x8a,0xe2,0x72,0x15,0x35,0x1f,0xc5,0xad,0x8d, +0xd4,0x66,0x6a,0x0d,0xb5,0x96,0xda,0x4a,0xad,0xa3,0xd6,0x53, +0xdb,0xa9,0x6d,0xd4,0x06,0x6a,0x0b,0xb5,0x97,0xda,0x4d,0xed, +0xa3,0x56,0x51,0xab,0xc9,0x6c,0x62,0x29,0x99,0x43,0x9a,0xc8, +0xe1,0x64,0x1e,0x69,0x21,0x0d,0x64,0x2e,0x99,0x4f,0x0e,0x24, +0x07,0x93,0x43,0xc8,0xa1,0xa4,0x91,0x6c,0x4d,0x0e,0x23,0x33, +0xc9,0x74,0x32,0x83,0xcc,0xa2,0x94,0x94,0x07,0x15,0x4f,0xb9, +0x51,0x5e,0x94,0x8e,0x8a,0xa5,0xf4,0x54,0x1c,0xd5,0x86,0x6a, +0x47,0x75,0xa5,0xbe,0x40,0xd1,0x32,0x82,0x8a,0x21,0xd7,0x90, +0x6b,0xc9,0x75,0xe4,0x7a,0x72,0x03,0xb9,0x89,0xdc,0x4c,0x6e, +0x25,0xb7,0x91,0xdb,0xc9,0x1d,0xe4,0x2e,0xb2,0x80,0x2c,0x24, +0x8b,0xc8,0x62,0xb2,0x94,0x1c,0x49,0x96,0x93,0xa3,0xc9,0x0a, +0x72,0x2c,0x39,0x9e,0x9c,0x48,0x7e,0x45,0x4e,0x26,0xa7,0x90, +0x53,0xc9,0x69,0xe4,0x74,0x72,0x06,0x39,0x8b,0xac,0x22,0xe7, +0x90,0x73,0xc9,0xf9,0xe4,0x02,0x72,0x11,0xb9,0x84,0x5c,0x4a, +0x2e,0x23,0x57,0x90,0xd5,0xe4,0x2a,0xf2,0x26,0x59,0x4b,0x31, +0xe4,0x55,0xf2,0x7b,0x0a,0x50,0x14,0xda,0x85,0x68,0xf2,0x27, +0xf2,0x67,0x4a,0x4c,0x3e,0x21,0x1f,0x92,0x36,0x8a,0xa4,0xa2, +0x51,0x14,0x50,0x91,0x77,0xa9,0xf6,0xe4,0xaf,0x54,0x22,0xe5, +0x4c,0xc9,0xc8,0x6b,0x94,0x3b,0x79,0x9d,0x52,0x90,0x37,0xa8, +0x26,0xe4,0x0f,0x94,0x06,0xed,0x5d,0x2d,0xc8,0xa7,0x54,0x4b, +0xf2,0x47,0xaa,0x35,0xf9,0x9c,0x6a,0x45,0x3e,0xa3,0xda,0x92, +0x2f,0xa8,0x2f,0xc9,0x97,0x54,0x20,0xf9,0x07,0xd5,0x13,0xed, +0x6b,0x41,0xe4,0x2b,0x2a,0x98,0xfc,0x93,0xea,0x40,0xbe,0xa5, +0x22,0xc9,0xbf,0xa9,0x8e,0x24,0x47,0x85,0x90,0xaf,0xa9,0xce, +0xe4,0x3b,0xaa,0x0b,0xf9,0x0f,0x95,0x80,0xa2,0x4b,0x77,0x4a, +0x42,0xf5,0xa0,0x58,0xaa,0x29,0xe5,0x43,0xde,0x21,0xeb,0x28, +0x17,0xf2,0x22,0x25,0x25,0x2f,0x50,0xae,0xe4,0x15,0xca,0x93, +0xbc,0x45,0x75,0xa3,0x1c,0x29,0x6f,0xb4,0x8b,0xa8,0xc9,0x7b, +0x94,0x96,0x7c,0x40,0x35,0x27,0x1f,0x53,0xbe,0x64,0x3d,0xe5, +0x47,0xfe,0x42,0xf9,0x93,0xbf,0x51,0xa1,0xe4,0x1b,0x2a,0x8c, +0xfc,0x8b,0x0a,0x27,0x21,0xd5,0x89,0x6c,0xa0,0xe4,0x64,0x0d, +0x15,0x45,0xbe,0xa7,0x02,0xc8,0xdf,0x49,0x2f,0x30,0x92,0x54, +0x82,0x12,0xd2,0x13,0x94,0x81,0xa9,0xc4,0x79,0x30,0x8d,0xb8, +0x08,0x16,0x10,0xb7,0xc0,0x22,0xe2,0x36,0x58,0x4c,0xdc,0x01, +0x4b,0x88,0x1f,0xc0,0x42,0xe2,0x7b,0x30,0x9b,0xa8,0x01,0x73, +0x89,0x1b,0x60,0x1e,0x71,0x13,0xcc,0x27,0x6a,0xc1,0x1c,0xe2, +0x3a,0xd8,0x0c,0x48,0xb0,0x15,0x88,0xd0,0x8e,0x2d,0x06,0x3b, +0x81,0x03,0xd8,0x0d,0x24,0x60,0x0f,0x60,0xc1,0x5e,0xe0,0x04, +0x76,0x01,0x47,0x70,0x06,0x68,0xc1,0x29,0x14,0x37,0xef,0x83, +0x48,0x50,0x07,0x3a,0x81,0x9f,0x41,0x02,0xf8,0x05,0x74,0x07, +0xbf,0x82,0x1e,0xe0,0x37,0xd0,0x13,0xbc,0x04,0xdd,0xc0,0x8f, +0x20,0x16,0x3c,0x07,0x71,0xe0,0x27,0x10,0x0f,0x5e,0x80,0xae, +0xe0,0x19,0xd0,0x93,0x22,0x90,0x49,0x32,0x20,0x8b,0x74,0x06, +0x79,0xa4,0x0b,0xb0,0x90,0xae,0xa0,0x80,0x74,0x03,0x23,0x48, +0x29,0xc8,0x27,0xd5,0xa0,0x82,0x6c,0x02,0xc6,0x90,0x1a,0x50, +0x49,0x6a,0xc1,0x58,0xea,0x29,0xf5,0x98,0xfa,0x91,0x7a,0x42, +0x3d,0xa3,0x9e,0x53,0x3f,0x51,0x2f,0xa8,0x9f,0xa9,0x97,0xd4, +0xaf,0xd4,0x6f,0xd4,0x9f,0xd4,0x6b,0x94,0xfd,0x64,0xa0,0xbc, +0x24,0x53,0x38,0x75,0x4c,0x25,0xbe,0x26,0x96,0x51,0xbf,0xa0, +0x5d,0x78,0x37,0xb1,0x87,0xd8,0x4b,0xec,0x23,0x36,0x11,0xfb, +0x89,0x03,0x54,0x3e,0x55,0x44,0x65,0x52,0x46,0x2a,0x87,0x32, +0x51,0xc3,0xa9,0x5c,0xca,0x4c,0xe5,0x51,0x16,0x14,0xa9,0x47, +0x50,0x85,0x54,0x09,0x55,0x4a,0x8d,0xa4,0xca,0xa8,0x29,0xd4, +0x54,0xaa,0x9c,0x1a,0x45,0x8d,0xa1,0x46,0x0b,0x7b,0x73,0x25, +0x35,0x89,0x6c,0x49,0xcc,0x22,0x96,0x10,0x2b,0xa9,0x09,0xd4, +0x38,0x6a,0x3c,0x35,0x96,0x3a,0x4c,0x1d,0x25,0x18,0x60,0x13, +0xee,0x75,0x20,0x8a,0xab,0x1f,0xe2,0xeb,0xff,0xc1,0xbf,0xff, +0x83,0x28,0x1c,0x49,0x74,0x24,0x3a,0x11,0x9d,0x89,0x2e,0x28, +0x5f,0x8a,0x46,0x19,0x59,0xcc,0xbf,0xe2,0xb2,0x9a,0xd0,0xa0, +0x5c,0xa3,0x29,0xe1,0x4b,0x34,0x23,0x9a,0x13,0x5f,0x10,0x2d, +0x88,0x96,0x44,0x2b,0xa2,0x35,0xd1,0x86,0x68,0x8b,0x32,0xfa, +0x2f,0x51,0x36,0xdc,0x5e,0x38,0x91,0x06,0xa2,0xf3,0x5e,0x30, +0x3a,0xeb,0x85,0x12,0x61,0xff,0x9b,0x58,0xce,0x12,0x4e,0x84, +0x33,0x21,0x25,0x5c,0x08,0x57,0xc2,0x8d,0x90,0x11,0x72,0xc2, +0x9d,0x50,0x10,0x4a,0xc2,0x83,0xf0,0x24,0xbc,0x08,0x6f,0xc2, +0x07,0x65,0x72,0xaa,0x0f,0x11,0x1f,0xed,0x8c,0x7c,0xac,0x5e, +0x81,0xe2,0xf4,0x2d,0x70,0x8f,0xa4,0x50,0xfc,0xbd,0x80,0x22, +0xf0,0x39,0x14,0x83,0xaf,0x10,0x7f,0x11,0x0d,0x28,0x02,0xf3, +0xf1,0xd7,0x0b,0x45,0x60,0x14,0x7f,0x51,0xf4,0x0d,0x45,0xf1, +0x37,0x02,0x74,0x40,0xf1,0x77,0x28,0x8a,0xbd,0x28,0xf2,0x22, +0xdb,0x4c,0x12,0xf6,0x8c,0x0a,0x62,0x19,0x51,0x89,0x62,0xf8, +0x38,0xb4,0x67,0x8c,0xa7,0x16,0xa0,0xbd,0x63,0x3e,0xda,0x03, +0x1e,0x11,0xab,0x89,0x2a,0x62,0x11,0xb1,0x98,0xd8,0x86,0xf6, +0x8c,0xf5,0x64,0x4b,0xb2,0x05,0x19,0x41,0xac,0x42,0xbb,0xca, +0x44,0x72,0x00,0xf1,0x0a,0x44,0xa1,0x8c,0xd4,0x4c,0x54,0x13, +0x2b,0x89,0xcd,0xc4,0x3c,0xf2,0x0b,0xb4,0xd7,0xe4,0x12,0x03, +0xa9,0x47,0x68,0x27,0xa9,0x42,0x7b,0x04,0x8a,0x95,0xe8,0x3c, +0x93,0x26,0x78,0x01,0xef,0x0f,0x73,0x88,0x15,0x60,0x34,0xa9, +0x42,0xf9,0xfb,0x26,0xe1,0x2c,0x73,0x92,0x38,0x85,0x3c,0xe3, +0x1b,0xe4,0x27,0xd9,0xc4,0x28,0xb4,0xf3,0x6c,0x40,0xfb,0xcf, +0x46,0xb4,0xeb,0xe0,0xdd,0xe6,0x34,0xbf,0xd3,0x20,0x09,0x1f, +0x08,0x7b,0x0c,0x0d,0x3c,0xa9,0x45,0x28,0xba,0xcd,0xb1,0x47, +0xba,0x6a,0x14,0xe7,0x56,0x52,0x8b,0xed,0xd9,0x2e,0xfa,0xf7, +0x7e,0x25,0x7f,0x37,0xfa,0x9f,0xff,0x00,0x21,0x42,0x01,0x18, +0x00,0xa7,0x46,0xd7,0x42,0x7c,0xb9,0x87,0x0a,0xed,0xfe,0xdf, +0x10,0xfc,0xeb,0x52,0xc0,0xbf,0x2e,0x73,0x12,0x0a,0xcb,0x49, +0xe1,0x95,0xe2,0x5f,0x57,0x88,0x38,0x37,0x27,0xea,0xac,0x93, +0x88,0x5b,0xc4,0x4d,0xe5,0x2b,0xee,0xfc,0xfd,0x27,0x8d,0x60, +0xc7,0xb5,0x2e,0x87,0x11,0xb8,0xdb,0x43,0x86,0x5e,0xa3,0x86, +0xa0,0xe8,0x88,0xa6,0x40,0xc6,0x73,0x41,0x86,0xd2,0x22,0xc3, +0x07,0x21,0x37,0xe9,0x4d,0xf4,0x47,0x8e,0x95,0x8b,0x4c,0x35, +0x06,0xa9,0x78,0x16,0x52,0xe1,0x2a,0xa4,0xe8,0x1d,0xc8,0xf1, +0x8f,0x11,0x67,0x88,0x4b,0xc4,0x0d,0xe2,0x07,0xe2,0x29,0xf1, +0x0b,0xda,0x26,0x49,0xb4,0x5c,0x65,0xc8,0x48,0x5a,0xd0,0x12, +0x6d,0x3f,0x61,0x68,0x93,0xd1,0xa3,0x45,0x9a,0x86,0x36,0x91, +0x74,0x60,0x02,0x05,0xa0,0x14,0x54,0x80,0x49,0x60,0x3a,0x98, +0x0b,0x96,0xa0,0x14,0x7d,0x03,0xda,0xf6,0xf6,0x21,0x15,0x9d, +0x06,0x17,0xd1,0x76,0x75,0x07,0x6d,0x4a,0x3f,0xa2,0x85,0xfd, +0x1a,0x70,0x48,0x49,0x8e,0xa4,0x9c,0xf4,0x26,0x9b,0x92,0xad, +0xc8,0xf6,0x64,0x28,0xd9,0x89,0x8c,0x25,0xbb,0x93,0xc9,0x28, +0xd1,0x35,0x92,0x23,0x50,0x00,0x9e,0x45,0x2e,0x47,0x21,0x7a, +0x3f,0x79,0x9a,0xac,0x41,0x89,0xd4,0x4f,0x28,0xe8,0xd1,0x28, +0x79,0xd2,0xa0,0x70,0x1e,0x81,0xc2,0x7a,0x0a,0x35,0x0c,0x2d, +0xbf,0x72,0x6a,0x32,0x4a,0x7e,0xe7,0x21,0x25,0xaf,0x45,0xdb, +0xc6,0x5e,0xb4,0xb4,0xbe,0xa5,0xce,0x52,0x35,0xd4,0x6d,0xaa, +0x0e,0x2d,0xf5,0x5f,0xa8,0xd7,0x14,0x27,0x22,0x45,0x8e,0x22, +0x57,0x91,0x87,0x48,0x2d,0xa4,0xfe,0x91,0x22,0xbd,0xa8,0x37, +0x4a,0x8e,0xad,0xa2,0x89,0xa2,0x29,0xa2,0xb9,0xa2,0xc5,0xa2, +0x6a,0xd1,0x7a,0xd1,0x36,0xd1,0x5e,0xd1,0x11,0x74,0x1c,0x38, +0x2d,0xba,0x28,0xba,0x2e,0xba,0x2d,0x7a,0x2c,0xfa,0x4d,0xc4, +0xd1,0x80,0x16,0xd3,0x72,0xda,0x83,0x56,0xd1,0xcd,0xe8,0xf6, +0x74,0x07,0xba,0x13,0x1d,0x43,0x77,0xa3,0x7b,0xd3,0xfd,0x68, +0x23,0x6d,0xa6,0x4b,0xe9,0xd1,0xf4,0x04,0xfa,0x6b,0x7a,0x36, +0xbd,0x88,0x5e,0x41,0xaf,0xa3,0xb7,0xd2,0x7b,0xe8,0xc3,0xf4, +0x49,0xfa,0x1c,0x7d,0x85,0xfe,0x81,0xae,0xa7,0x9f,0xd3,0x7f, +0xd2,0xef,0x19,0x86,0x51,0x32,0xde,0x8c,0x96,0x69,0xc9,0xf8, +0x31,0xc1,0x4c,0x24,0xa3,0x63,0x12,0x98,0x54,0x66,0x30,0x93, +0xc9,0x98,0x18,0x0b,0x63,0x65,0x46,0x31,0xe3,0x99,0xa9,0x4c, +0x15,0xb3,0x90,0x59,0xce,0xac,0x65,0xb6,0x30,0xbb,0x99,0x83, +0xcc,0x69,0xe6,0x32,0x73,0x83,0x79,0xc0,0x3c,0x65,0x7e,0x66, +0x5e,0x31,0x6f,0x99,0xf7,0x62,0x47,0xb1,0x8b,0x58,0x29,0x56, +0x89,0x9b,0x8b,0xdb,0x8a,0x03,0xc5,0x1d,0xc5,0x31,0xe2,0x6e, +0xe2,0xde,0xe2,0x7e,0xe2,0xa1,0xe2,0x2c,0x71,0x9e,0xd8,0x2a, +0x1e,0x25,0x1e,0x2f,0x9e,0x2a,0x9e,0x25,0x9e,0x2f,0xae,0x16, +0x6f,0x12,0xef,0x10,0xef,0x13,0x1f,0x11,0x9f,0x14,0x5f,0x12, +0xdf,0x10,0xff,0x20,0x7e,0x28,0x7e,0x2e,0xfe,0x4d,0xfc,0x97, +0xf8,0x9d,0x83,0xc8,0x81,0x75,0x90,0x39,0x78,0x39,0x68,0x1c, +0xda,0x38,0x84,0x3a,0x44,0x39,0xc4,0x3a,0x24,0x39,0xf4,0x75, +0x18,0xe4,0x90,0xe5,0x90,0xe7,0x60,0x75,0x18,0xe5,0x30,0xde, +0x61,0x8a,0xc3,0xd7,0x0e,0xb3,0x1d,0x16,0x3a,0xac,0x72,0xd8, +0xe6,0xb0,0xc7,0xe1,0x90,0xc3,0x77,0x0e,0x17,0x1c,0xae,0x39, +0xdc,0x72,0x78,0xe4,0xf0,0xd4,0xe1,0x67,0x87,0x57,0x0e,0x6f, +0x1d,0x09,0x47,0x67,0x47,0x77,0x47,0x8d,0x63,0x73,0xc7,0xb6, +0x8e,0x81,0x8e,0x11,0x8e,0x51,0x8e,0xf1,0x8e,0x89,0x8e,0x7d, +0x1d,0x07,0x39,0x66,0x38,0x0e,0x77,0x2c,0x70,0x2c,0x71,0x1c, +0xef,0x38,0xc5,0xb1,0xca,0xf1,0x1b,0xc7,0xf5,0x8e,0xdb,0x1c, +0x77,0x39,0x1e,0x70,0x3c,0xee,0xf8,0x9d,0xe3,0x25,0xc7,0x1b, +0x8e,0x3f,0x38,0x3e,0x74,0xfc,0xd5,0xf1,0x8d,0x63,0x83,0x04, +0x48,0xc4,0x12,0x27,0x89,0x5c,0xe2,0x2d,0x69,0x2a,0x69,0x25, +0x69,0x2f,0x09,0x95,0x74,0x92,0xc4,0x4a,0xba,0x4b,0x7a,0x4b, +0x06,0x49,0x8c,0x92,0x5c,0x49,0x89,0x64,0x8c,0x64,0x82,0xe4, +0x6b,0xc9,0x6c,0xc9,0x42,0xc9,0x4a,0xc9,0x3a,0xc9,0x56,0xc9, +0x3e,0xc9,0x61,0xc9,0x09,0xc9,0x45,0xc9,0x55,0xc9,0x4d,0xc9, +0x1d,0x49,0xbd,0xe4,0x89,0xe4,0x99,0xe4,0xa5,0xe4,0x77,0xc9, +0x1b,0x09,0xc7,0x92,0xac,0x88,0x65,0x58,0x67,0xd6,0x85,0x95, +0xb1,0x9e,0xac,0x8a,0xd5,0xb2,0x2d,0xd9,0x36,0xec,0x97,0xac, +0x3f,0x1b,0xc2,0x76,0x60,0x3b,0xb3,0x31,0x6c,0x37,0xb6,0x37, +0xdb,0x97,0xed,0xc7,0x0e,0x66,0x0d,0x6c,0x16,0x6b,0x66,0xf3, +0xd9,0x02,0xb6,0x90,0x1d,0xc9,0x8e,0x62,0x2b,0xd8,0x09,0xec, +0x57,0xec,0x0c,0xb6,0x8a,0x9d,0xcb,0x2e,0x60,0x97,0xb1,0xeb, +0xd9,0xfd,0xec,0x29,0xf6,0x22,0x7b,0x93,0xad,0x67,0xff,0x60, +0xdf,0x39,0x39,0x3a,0x79,0x3a,0xb5,0x73,0x0a,0x75,0x8a,0x72, +0xea,0xe1,0xd4,0xc7,0x69,0xb0,0x93,0xc9,0xa9,0xd8,0x69,0x9c, +0x53,0x95,0xd3,0x12,0xa7,0x95,0x4e,0xdb,0x9c,0xf6,0x3a,0x1d, +0x71,0xba,0xe8,0x74,0xdd,0xe9,0xa1,0xd3,0x73,0x27,0xe8,0xf4, +0x8f,0x33,0xed,0xec,0xee,0xec,0xe3,0xdc,0xc6,0x39,0xc0,0x39, +0xca,0x39,0xde,0x39,0xd5,0x79,0xb0,0xb3,0xd9,0xb9,0xc8,0x79, +0xbc,0xf3,0x54,0xe7,0x2a,0xe7,0x85,0xce,0xcb,0x9d,0xb7,0x3a, +0xef,0x71,0x3e,0xec,0x7c,0xd2,0xb9,0xc6,0xf9,0xb6,0x73,0x9d, +0xf3,0xaf,0xce,0x6f,0x9c,0x1b,0xa4,0xac,0x54,0x26,0xf5,0x92, +0xb6,0x92,0xb6,0x97,0x76,0x96,0xea,0xa5,0x7d,0xa4,0x03,0xa5, +0xe9,0xd2,0x11,0xd2,0x32,0x69,0xa5,0x74,0xa6,0x74,0xbe,0x74, +0x8d,0x74,0xb3,0x74,0x97,0xf4,0xa0,0xf4,0x84,0xf4,0xac,0xf4, +0x96,0xf4,0xbe,0xf4,0x89,0xf4,0x4f,0xe9,0xdf,0x2e,0xc0,0xc5, +0xc1,0xc5,0xc5,0x45,0xed,0xf2,0x85,0x4b,0xb0,0x4b,0xa4,0x8b, +0xce,0x25,0xc1,0xa5,0x97,0x4b,0x9a,0xcb,0x10,0x17,0xa3,0x8b, +0xd9,0xa5,0xc8,0x65,0xbc,0xcb,0x54,0x97,0x2a,0x97,0x85,0x2e, +0xcb,0x5d,0xd6,0xba,0x6c,0x71,0xd9,0xed,0x72,0xc8,0xe5,0x5b, +0x97,0x73,0x2e,0x57,0x5d,0x1e,0xb8,0x3c,0x75,0x79,0xe9,0xf2, +0xd6,0x95,0x71,0x75,0x76,0x75,0x77,0xf5,0x71,0xf5,0x75,0x6d, +0xed,0xea,0xef,0x1a,0xe6,0xda,0xd9,0x55,0xef,0xda,0xc3,0x35, +0xc5,0x75,0x80,0xab,0xc1,0x35,0xc7,0xd5,0xe2,0x5a,0xe2,0x3a, +0xc6,0x75,0xa2,0xeb,0x34,0xd7,0x39,0xae,0x2b,0x5d,0x37,0xb8, +0x6e,0x77,0xdd,0xe7,0x7a,0xd4,0xf5,0xb4,0xeb,0x45,0xd7,0xeb, +0xae,0x77,0x5c,0xeb,0x5d,0x9f,0xb9,0xfe,0xea,0xfa,0xc6,0xb5, +0xc1,0x8d,0x72,0x93,0xb8,0xb9,0xb9,0x79,0xba,0x69,0xdc,0x5a, +0xb8,0x7d,0xe9,0x16,0xec,0x16,0xe9,0xa6,0x73,0x4b,0x70,0xeb, +0xe5,0x96,0xe6,0x36,0xc4,0xcd,0xe8,0x66,0x76,0x2b,0x72,0x2b, +0x77,0x1b,0xe7,0x36,0xc5,0x6d,0x96,0xdb,0x02,0xb7,0x65,0x6e, +0x6b,0xdc,0x36,0xbb,0xed,0x72,0x3b,0xe8,0x76,0xc2,0xed,0xac, +0xdb,0x15,0xb7,0x5a,0xb7,0x7b,0x6e,0x8f,0xdd,0x5e,0xb8,0xfd, +0xe1,0x66,0x73,0x7b,0x2f,0x63,0x64,0xce,0x32,0x77,0x99,0x8f, +0xcc,0x57,0xd6,0x5a,0xe6,0x2f,0x0b,0x93,0x75,0x96,0xe9,0x65, +0x3d,0x64,0x29,0xb2,0x01,0x32,0x83,0x2c,0x47,0x66,0x91,0x95, +0xc8,0xc6,0xc8,0x26,0xca,0xa6,0xc9,0xe6,0xc8,0x16,0xcb,0xaa, +0x65,0xeb,0x65,0xdb,0x64,0x7b,0x65,0x47,0x64,0xa7,0x64,0x17, +0x64,0x35,0xb2,0xdb,0xb2,0x3a,0xd9,0x8f,0xb2,0x5f,0x64,0xaf, +0x65,0x9c,0x9c,0x94,0x3b,0xca,0x5d,0xe5,0x1e,0x72,0xb5,0xfc, +0x0b,0x79,0x3b,0x79,0x90,0xbc,0x83,0x3c,0x5a,0xde,0x55,0x9e, +0x24,0x4f,0x95,0x0f,0x96,0x67,0xca,0x73,0xe5,0x85,0xf2,0x91, +0xf2,0xb1,0xf2,0xc9,0xf2,0x99,0xf2,0xf9,0xf2,0xa5,0xf2,0xd5, +0xf2,0x4d,0xf2,0x9d,0xf2,0x03,0xf2,0xe3,0xf2,0xef,0xe4,0x97, +0xe5,0x37,0xe5,0x77,0xe5,0x8f,0xe4,0x3f,0xc9,0x7f,0x97,0x43, +0xf9,0x3f,0xee,0xb4,0xbb,0x93,0xbb,0xdc,0xdd,0xdb,0xbd,0xa9, +0x7b,0x2b,0xf7,0xf6,0xee,0xa1,0xee,0x9d,0xdc,0x63,0xdd,0xbb, +0xbb,0x27,0xbb,0xf7,0x77,0x1f,0xe6,0x9e,0xed,0x9e,0xef,0x5e, +0xec,0x3e,0xda,0x7d,0x82,0xfb,0xd7,0xee,0xb3,0xdd,0x17,0xb9, +0xaf,0x70,0x5f,0xe7,0xbe,0xd5,0x7d,0x8f,0xfb,0x61,0xf7,0x93, +0xee,0xe7,0xdd,0xaf,0xb9,0x7f,0xef,0xfe,0xc0,0xfd,0xa9,0xfb, +0x4b,0xf7,0x3f,0xdd,0xff,0x56,0x00,0x85,0x83,0xc2,0x45,0xa1, +0x54,0xa8,0x14,0xcd,0x15,0x6d,0x15,0x81,0x8a,0x4e,0x8a,0x78, +0x45,0x2f,0x45,0x9a,0x62,0x88,0x22,0x43,0x51,0xa0,0x28,0x55, +0x54,0x28,0x26,0x29,0xa6,0x2b,0xe6,0x2a,0x96,0x28,0x56,0x2a, +0x36,0x28,0xb6,0x2b,0xf6,0x29,0x8e,0x2a,0x4e,0x2b,0x2e,0x2a, +0xae,0x2b,0xee,0x28,0xea,0x15,0xcf,0x14,0xbf,0x2a,0xde,0x28, +0xde,0x2b,0x1d,0x95,0x32,0x65,0x13,0x65,0x6b,0x65,0xa8,0x32, +0x46,0x99,0xac,0x34,0x28,0x0b,0x94,0x15,0xca,0xe9,0xca,0x6f, +0x94,0x6b,0x95,0x7b,0x95,0x27,0x94,0x57,0x94,0x77,0x95,0x2f, +0x95,0x7f,0x79,0x10,0x1e,0x2e,0x1e,0x5e,0x1e,0xcd,0x3c,0x02, +0x3d,0x22,0x3d,0x12,0x3c,0x52,0x3c,0x86,0x7a,0xe4,0x7b,0x8c, +0xf1,0x98,0xe6,0xb1,0xc4,0x63,0x8b,0xc7,0x31,0x8f,0x6b,0x1e, +0x4f,0x3c,0x6c,0x9e,0x4e,0x9e,0x1a,0xcf,0x40,0xcf,0x38,0xcf, +0x9e,0x9e,0x7d,0x3c,0x07,0x7a,0xa6,0x7b,0x9a,0x3c,0x0b,0x3c, +0x4b,0x3d,0x2b,0x3c,0x27,0x79,0x4e,0xf7,0x9c,0xeb,0xb9,0xc4, +0x73,0xa5,0xe7,0x06,0xcf,0xed,0x9e,0xfb,0x3c,0x8f,0x7a,0x9e, +0xf6,0xbc,0xe8,0x79,0xdd,0xf3,0x8e,0x67,0xbd,0xe7,0x33,0xcf, +0x17,0x5e,0xd1,0x5e,0xf9,0x5e,0xa3,0xbc,0xc6,0x19,0xfc,0x0c, +0x66,0xab,0x7f,0x40,0x76,0x63,0x10,0xc8,0xdf,0x84,0xe3,0x8a, +0x8f,0x18,0xae,0xb3,0x5a,0x8a,0xb2,0x3e,0x22,0x8d,0x7a,0x7c, +0x2c,0x06,0x5a,0xf2,0x8d,0x42,0xc9,0x5a,0x8a,0x6b,0xad,0x39, +0x85,0x46,0x5c,0x93,0x65,0x29,0x2e,0xc4,0x88,0xa9,0x04,0xd7, +0x14,0x99,0xca,0x30,0x34,0x96,0x18,0xf3,0x05,0xcc,0xc8,0xbf, +0xfb,0x22,0x60,0xf9,0x26,0x3b,0xa1,0xe2,0x7c,0x53,0xa0,0x7f, +0x80,0x3f,0x06,0x01,0x18,0x04,0x62,0x10,0x82,0x80,0x7f,0x50, +0x98,0x9e,0x2f,0x05,0x0a,0xa5,0x40,0xff,0x20,0xdc,0x16,0x14, +0x64,0x28,0x28,0x28,0xb4,0x94,0x19,0x47,0x14,0x1b,0xcc,0xf9, +0x16,0xab,0x00,0xcd,0xc6,0xa2,0x22,0x01,0xc9,0x2e,0x34,0x1a, +0xf8,0xf7,0x5a,0x78,0x1c,0x0f,0x8e,0x30,0xf0,0x9d,0xcc,0x46, +0x93,0x41,0x28,0x07,0x85,0x9a,0x2d,0xe5,0xc6,0xfc,0x6c,0x63, +0xa1,0x21,0xd3,0x94,0x61,0x30,0x9b,0xf2,0xad,0xc6,0xec,0x42, +0x1e,0x66,0x99,0xf2,0x4d,0xd6,0x91,0x7c,0xa7,0x80,0x40,0x61, +0xe2,0x80,0x80,0x20,0x0c,0x42,0x0b,0x0c,0x85,0x56,0x93,0xc1, +0x9c,0x69,0xca,0xca,0xd2,0x17,0x17,0x5a,0x78,0xe6,0xf4,0x41, +0x71,0x02,0x3b,0xd1,0x98,0xf1,0xe8,0x60,0x0c,0x42,0x31,0x08, +0xc7,0x20,0x02,0x83,0x68,0x0c,0x74,0x18,0xc4,0x62,0x20,0x4c, +0xe1,0xaf,0xc3,0xc3,0x75,0x58,0x36,0x1d,0xa6,0xa2,0xc3,0x02, +0xeb,0x30,0x15,0x1d,0xa6,0xa2,0xc3,0x54,0x74,0x78,0xb8,0x2e, +0xce,0x90,0x5e,0x88,0x94,0xcb,0xb3,0x12,0x10,0xc3,0xd3,0x0a, +0xd0,0x0b,0xac,0x20,0x10,0x64,0xc8,0x33,0x64,0x14,0x5a,0xf2, +0x0d,0x96,0x6c,0x64,0xb3,0x5c,0x43,0xa1,0x29,0x3f,0xdb,0x90, +0x51,0x6c,0x35,0xe2,0xe6,0x38,0x01,0xe8,0xc2,0x30,0xc0,0x63, +0x74,0x41,0x18,0x84,0xe0,0x2e,0x76,0x10,0x8b,0x01,0xee,0x29, +0x08,0x83,0x80,0xce,0x20,0xd0,0xc2,0x2e,0x82,0x99,0xc0,0xb8, +0x9d,0x15,0x7b,0x43,0x86,0xa9,0x30,0xa3,0x38,0x2f,0x0b,0xa5, +0x44,0xf6,0x8a,0x4c,0x13,0x32,0x4b,0x91,0xa9,0xe8,0x63,0x67, +0x9e,0x61,0x7b,0x1b,0x32,0x40,0x23,0x2a,0xbc,0x08,0xf6,0x06, +0x2c,0x88,0xbd,0x80,0xc5,0xb1,0x17,0x78,0xa1,0x1a,0xa1,0x8d, +0x79,0xb2,0x9a,0xcc,0x99,0x9f,0x51,0x8b,0x6b,0x54,0xd0,0x85, +0x35,0x2e,0x04,0x34,0x2e,0x04,0x35,0x2e,0x84,0x34,0x26,0xf0, +0x59,0x21,0xb6,0x71,0xa1,0x31,0xb5,0xe8,0x88,0xc6,0x05,0x9d, +0x9d,0x1b,0xa3,0xc0,0x5a,0x06,0x7e,0xcd,0x30,0x20,0x71,0x32, +0x3e,0xe9,0x26,0x23,0xd3,0x62,0x35,0x64,0x64,0x18,0xf3,0xad, +0x99,0x42,0x53,0x26,0x12,0x17,0xf9,0xaf,0xa0,0x55,0xa3,0x50, +0x63,0xfc,0xd8,0x03,0xf3,0x85,0xad,0xa0,0xd3,0x19,0xb1,0x6a, +0x8c,0x58,0x29,0xb8,0x12,0xdb,0x4b,0x87,0x0d,0x1c,0x83,0xcd, +0x16,0x83,0xd9,0x89,0xc1,0x06,0x8e,0x11,0x16,0x56,0x60,0x48, +0x44,0xb6,0x30,0x45,0xf6,0x27,0x4e,0xb2,0x33,0x2c,0x79,0x79, +0x06,0x3c,0x53,0xf6,0xc7,0x39,0xb3,0x1b,0xd9,0x37,0xfb,0xdf, +0x26,0x6d,0x3c,0xc4,0x5e,0xf3,0x71,0x20,0x2e,0xe7,0xa4,0x1b, +0x0a,0x73,0x3e,0x0d,0x33,0x7d,0x72,0xd9,0x58,0x7f,0xcc,0x8f, +0x0e,0x83,0x08,0x13,0x16,0xc7,0x84,0xc5,0x31,0x09,0x26,0x34, +0x0d,0x37,0x0d,0xff,0xe0,0xb7,0xfe,0x81,0x41,0x61,0xb8,0x30, +0xfc,0x13,0xbd,0xdc,0x46,0x0c,0xe4,0xa2,0x95,0x6f,0xcc,0x37, +0x1b,0xf2,0xd1,0xaa,0x36,0x0b,0x1d,0xcd,0x82,0xfe,0xcc,0x8d, +0xfa,0x98,0x11,0x7b,0xf9,0x42,0x5b,0xbe,0xd0,0x96,0xdf,0xa8, +0x2d,0xdf,0xc0,0x7f,0x04,0xa2,0xd0,0x52,0x90,0x83,0xc8,0x64, +0x5b,0x1a,0x71,0x1a,0x88,0x59,0xc4,0xca,0x8d,0x89,0xb3,0xe4, +0x14,0x23,0x77,0x2b,0x2c,0xce,0x33,0x1b,0x8a,0xad,0x16,0xcc, +0xb6,0x45,0x78,0x07,0x52,0xa0,0x6c,0xc9,0xb1,0x14,0xe6,0x0b, +0x5d,0x63,0xb1,0x6c,0x7a,0xac,0xf9,0x58,0x3c,0x3e,0x16,0x1b, +0x47,0x8f,0xad,0x12,0x6b,0x07,0xd8,0xa8,0xb1,0xf6,0x9e,0x78, +0xf5,0xc5,0x86,0x15,0x0a,0x04,0x0b,0x05,0x56,0x0b,0x1b,0xb1, +0x5a,0x24,0xd4,0x17,0x65,0x18,0x33,0x4d,0x66,0x34,0xef,0x27, +0x7d,0x14,0x35,0xea,0x24,0xf0,0x1e,0x16,0x87,0xe2,0x5c,0x1e, +0xd2,0x49,0xba,0xd9,0xbe,0xee,0xac,0xc8,0x22,0x56,0x81,0xa2, +0xa0,0xd4,0x00,0x9d,0xd0,0x2f,0x34,0xa8,0xb8,0x91,0xc0,0xc1, +0x98,0x45,0xcc,0x86,0x3e,0xac,0xb8,0xb1,0xc0,0xc5,0x58,0xe0, +0x62,0xbb,0xdb,0xf1,0x4b,0xaf,0x58,0x30,0x56,0xf1,0x47,0xb9, +0xf5,0x58,0x9a,0x38,0x2c,0x9b,0xde,0xae,0x05,0x2c,0xbe,0x3e, +0x0e,0x4f,0x11,0x8a,0x41,0x38,0x06,0x31,0x18,0x44,0x97,0x0a, +0x82,0x95,0x7e,0x12,0xa8,0xf4,0x43,0xd0,0x28,0x15,0x22,0xc4, +0xc8,0x4f,0x2d,0x78,0x8a,0x90,0x91,0x42,0x3d,0x2e,0x60,0x7f, +0x8f,0x8b,0x28,0x17,0xa8,0x94,0x7f,0x74,0xc5,0xe8,0x46,0x81, +0xd2,0x1e,0xd1,0xb0,0xf3,0x45,0x07,0x46,0x63,0x69,0xa2,0xb1, +0x34,0xd1,0xff,0x0a,0x94,0x38,0xaa,0xea,0x42,0x31,0xc0,0x63, +0x74,0xd8,0x1b,0x74,0x58,0x47,0xd1,0x76,0x10,0x83,0x01,0xee, +0x29,0x04,0x7f,0x04,0xa2,0xa3,0xf5,0x02,0xb1,0x18,0xfc,0x2a, +0x28,0x3d,0xe6,0x93,0x04,0x31,0x1f,0x19,0x8c,0x15,0x9a,0x62, +0x85,0xa5,0xaf,0x17,0x98,0xd5,0x0b,0x35,0xfa,0x7f,0x2d,0x7d, +0x4c,0x57,0x17,0xad,0xc7,0x5c,0xeb,0x1b,0x2f,0x7d,0xcc,0x81, +0x0e,0xb3,0x1c,0x83,0x19,0x89,0xb1,0xaf,0x31,0xbb,0x03,0x07, +0x0b,0x2a,0x08,0x8f,0x8b,0x17,0xa6,0x88,0xff,0xc4,0x49,0x7c, +0x23,0xb7,0x89,0xff,0x38,0x67,0x57,0xe4,0x29,0x5d,0x3f,0x75, +0x4a,0x68,0xa4,0xc5,0xb8,0x84,0xcf,0x39,0x8b,0x89,0xc6,0x20, +0x3c,0x01,0x73,0x96,0x80,0x39,0x4b,0x10,0x1c,0x23,0xa1,0x5b, +0x42,0x37,0x41,0x03,0xf6,0xd7,0x4f,0x24,0xbb,0x37,0x9a,0xb7, +0x87,0xd0,0xd8,0x43,0x90,0xbb,0x47,0xe3,0x7a,0x34,0x53,0xa2, +0xd0,0x96,0x28,0xb4,0x25,0x36,0x6a,0xd3,0xe7,0x67,0x27,0x35, +0x72,0x5b,0x7b,0xa0,0xc3,0x9a,0x88,0xd1,0x27,0x35,0x76,0xdb, +0x24,0xcc,0x58,0xd2,0xa7,0x75,0x9a,0xf4,0x69,0x9d,0x62,0xee, +0xf5,0x58,0x4d,0xb1,0x78,0x7c,0x2c,0xd6,0xa4,0x1e,0xab,0xd0, +0x1e,0xad,0x62,0xb1,0x05,0xec,0x11,0xc1,0xbe,0x4e,0x62,0x43, +0x93,0x05,0x82,0xc9,0x02,0x7f,0xc9,0x8d,0xf8,0x4b,0x11,0xea, +0x53,0xec,0xeb,0x34,0xe5,0x93,0xe0,0x29,0x9f,0xaf,0xd3,0x00, +0x7d,0x84,0xbe,0x0f,0xd2,0x76,0x9f,0x46,0xeb,0x32,0x1a,0xaf, +0xcb,0xc0,0xbe,0x8d,0x04,0xc4,0xe1,0x41,0x6f,0x5f,0x9e,0xa1, +0x7d,0x1b,0x0b,0xd8,0x17,0x0b,0xd8,0x17,0x6b,0xbe,0x2f,0xef, +0xc9,0x7d,0x05,0xf5,0xf7,0xfd,0xb4,0x2e,0x31,0xf7,0x71,0x58, +0x16,0xbd,0x5d,0x6a,0x2c,0xae,0x5e,0x8f,0xa7,0x08,0xc1,0x20, +0x0c,0x03,0x1c,0x1c,0x62,0x23,0xd2,0x04,0x41,0xd2,0x3e,0x09, +0x90,0xf6,0x61,0x5d,0xa6,0x09,0xeb,0xaf,0xff,0xbf,0xd7,0x65, +0x70,0xff,0x46,0xeb,0x12,0x3b,0x63,0x5c,0xf8,0x00,0x81,0xca, +0x80,0x4f,0x6e,0x6f,0x34,0x5b,0x0d,0x28,0x93,0xcb,0x2c,0xce, +0xb0,0x16,0x15,0x23,0x85,0xf0,0x9f,0x86,0x49,0xca,0x33,0x66, +0x1b,0x0c,0xe6,0x82,0x1c,0xfc,0x82,0x83,0x56,0xba,0xd1,0x6a, +0xc8,0x36,0xa0,0x1e,0x99,0xfc,0x10,0x63,0x41,0x91,0xc9,0x6c, +0xc9,0x2f,0x47,0x95,0xe8,0xbf,0x35,0x07,0xbd,0x98,0x10,0xcd, +0x5c,0x94,0x16,0x1a,0xcc,0x86,0xbc,0xf4,0x4c,0x83,0x90,0x3c, +0xea,0x62,0xf2,0x8b,0xcb,0x4c,0x96,0x3c,0x13,0xaf,0x97,0x02, +0x53,0x61,0x8e,0xa5,0xc8,0x94,0x9d,0x67,0x08,0x10,0x5e,0xad, +0x86,0xe2,0x62,0x4c,0xa6,0x20,0xc7,0x94,0x91,0x63,0x42,0xb8, +0x85,0x9f,0x39,0x9a,0x9f,0x54,0x87,0x28,0xc6,0xf3,0xd3,0x09, +0x74,0x22,0x82,0xf5,0xb8,0xe7,0x00,0x54,0xad,0xb7,0x1a,0xfa, +0xf0,0x13,0x26,0xa0,0x09,0xbb,0xf3,0x13,0xf6,0x10,0x26,0xec, +0x59,0x9c,0x58,0xdc,0xcf,0x94,0x84,0xe7,0xea,0x65,0x4a,0xce, +0xb1,0xa4,0xf0,0xb3,0xf4,0x31,0x14,0xf7,0xc5,0x63,0x7b,0xe5, +0x98,0x62,0x72,0x4c,0xbd,0x8a,0x4c,0x02,0xc9,0xe8,0x08,0x41, +0x38,0x2b,0xbf,0x71,0x7c,0xc2,0xb0,0xac,0x76,0xe9,0x84,0x1a, +0x5e,0x3c,0x1e,0xf2,0xe2,0x7d,0x44,0x3e,0xa8,0xbe,0x31,0x2e, +0x34,0xda,0x45,0x15,0xf0,0xe2,0x46,0x54,0xec,0xf8,0x87,0xbe, +0xff,0x2a,0xda,0x87,0x22,0xd9,0x05,0x2c,0xfa,0x23,0x3b,0xfa, +0x46,0x24,0xf4,0xf6,0xf9,0x13,0x2c,0x8d,0x90,0x0f,0x14,0x92, +0x1a,0xcd,0xdb,0xb7,0xd1,0xa0,0xbe,0x9f,0x4f,0x94,0xf4,0x71, +0x0e,0x5e,0x07,0xc1,0x41,0xfe,0x76,0xf0,0x29,0x79,0x0c,0x0e, +0xb2,0x83,0x40,0x3b,0xf0,0x33,0x5b,0x32,0xcc,0xba,0xf8,0x64, +0x5c,0x0c,0xb2,0x83,0xcf,0x6b,0x83,0xed,0xe0,0xf3,0xda,0x10, +0x0c,0x42,0xed,0xe0,0xf3,0xc6,0x30,0x3b,0xf8,0xbc,0x36,0xdc, +0x0e,0x3e,0xaf,0x8d,0xb0,0x83,0xcf,0x6b,0xa3,0xed,0xe0,0xf3, +0x5a,0x9d,0x1d,0x7c,0x5e,0x1b,0x83,0x41,0x2c,0x06,0x7a,0x0c, +0xe2,0xec,0xe0,0xb3,0xae,0xc1,0x58,0x25,0xc1,0x58,0x0b,0xc1, +0x81,0x76,0xf0,0x79,0x1f,0xac,0x85,0xe0,0x60,0x3b,0xf8,0xbc, +0x11,0x8b,0x1d,0x1c,0x6a,0x07,0x9f,0x37,0x62,0xb1,0x83,0xc3, +0xed,0xe0,0xf3,0xc6,0x08,0x3b,0xf8,0xbc,0x36,0xda,0x0e,0x3e, +0xaf,0xc5,0x72,0x06,0xc7,0xd8,0xc1,0xe7,0x8d,0x58,0xce,0x60, +0xbd,0x1d,0x7c,0xde,0x18,0x67,0x07,0x9f,0xd5,0x06,0x60,0xb1, +0x03,0xb0,0xd8,0x01,0x58,0xec,0x00,0x2c,0x67,0x40,0xb0,0x1d, +0x7c,0x3e,0x02,0xcb,0x19,0x10,0x6a,0x07,0x9f,0x37,0x62,0x39, +0x03,0xb0,0x9c,0x01,0x58,0x30,0x1c,0x4f,0x11,0xf8,0xbc,0xab, +0xce,0x0e,0x3e,0xaf,0xc5,0x82,0x05,0x60,0x49,0x02,0xb0,0x24, +0x01,0x98,0xf5,0x40,0xcc,0x6b,0x20,0xe6,0x35,0x10,0xf3,0x1a, +0x88,0x79,0x0d,0x0c,0xb6,0x83,0xcf,0xa8,0x05,0x62,0x5e,0x03, +0x31,0xaf,0x81,0x98,0xb9,0x40,0xcc,0x5c,0x20,0x66,0x2e,0x10, +0x33,0x17,0x88,0xb9,0x09,0xc4,0xd3,0x07,0xe2,0xe9,0x03,0xf1, +0xf4,0x81,0xf6,0xe9,0x3f,0xd7,0x5c,0x2c,0x9e,0x38,0x36,0xc0, +0x5e,0x6a,0xb4,0x94,0x62,0x03,0x1a,0x17,0x30,0x0f,0x21,0xb8, +0x7b,0x04,0xae,0x8c,0xc3,0xac,0x44,0xd8,0x2b,0xed,0x5d,0xb0, +0x7c,0x21,0xf6,0x71,0xb8,0x4b,0x08,0x16,0x2c,0x16,0x73,0x14, +0x83,0x85,0x8e,0xc0,0x6d,0xa1,0x98,0xe9,0x58,0xcc,0x5f,0x04, +0x16,0x48,0x8f,0x87,0xc7,0xe0,0x4a,0xbd,0x9d,0x74,0xac,0x1d, +0x7c,0x26,0x82,0x1e,0x4f,0x1f,0x82,0x85,0x8e,0xc0,0xd4,0x22, +0x70,0xd7,0x68,0x4c,0x26,0x02,0x93,0x09,0xc1,0xb4,0xa3,0xed, +0x03,0xb0,0xce,0xa2,0x31,0x6d,0x3d,0x66,0x26,0x0c,0xb7,0x09, +0x09,0xa8,0x7f,0x88,0x5d,0xf3,0xd1,0xb8,0x2d,0x1a,0x93,0x8e, +0xc6,0xa4,0x75,0xf6,0x71,0x98,0x74,0x9c,0x5d,0x23,0x76,0xd2, +0x58,0xe5,0xd1,0xb8,0x4d,0x87,0xdb,0x74,0xb8,0x2d,0x0e,0x8f, +0xd3,0x61,0x9a,0x3a,0xcc,0x52,0x1c,0x06,0xa1,0xf6,0xe1,0x76, +0x71,0xed,0x5c,0x63,0xbb,0x87,0xd8,0x35,0x89,0xed,0x1e,0x82, +0x55,0x18,0x82,0x59,0xd2,0xd9,0x55,0x88,0xa9,0xe8,0xec,0x0c, +0xe2,0xe1,0xd1,0xb8,0x32,0x0c,0xd3,0x8c,0xc5,0xe3,0x62,0xb1, +0x91,0x62,0xb1,0x59,0xfc,0xed,0x06,0xc4,0x95,0x71,0x78,0xbe, +0x08,0xbb,0x91,0xec,0x5d,0x70,0xdb,0x07,0x6f,0xc0,0x5d,0xfc, +0xed,0x56,0xc5,0x9a,0x8f,0xb1,0xeb,0x1a,0xb7,0x85,0x62,0xed, +0xc6,0x62,0x4d,0x44,0x60,0xae,0xf5,0x98,0x4a,0x0c,0x06,0x7a, +0x3b,0x69,0xcc,0xae,0x1e,0xcf,0xe7,0x6f,0x37,0x23,0x1e,0x1e, +0x81,0x4b,0xd1,0x78,0x40,0x04,0x26,0xe6,0x6f,0x37,0xa3,0x7d, +0x80,0xdd,0x8c,0x98,0x98,0x1e,0xcf,0x1e,0x86,0xdb,0x84,0x7c, +0x05,0x99,0x11,0xb7,0x45,0xe3,0xb6,0x68,0xfb,0x00,0x4c,0x5a, +0x67,0x1f,0x87,0x49,0xc7,0xd9,0x55,0x60,0x27,0x6d,0x37,0x23, +0x06,0x3a,0xdc,0xa6,0xc3,0x6d,0x71,0x78,0x9c,0x0e,0xd3,0xd4, +0x61,0xf9,0xe2,0x30,0x08,0xb5,0x0f,0xc7,0x2a,0xf7,0xc7,0x76, +0xf0,0xb7,0xeb,0x0c,0x9b,0xd1,0x1f,0xf7,0xf4,0xb7,0xf7,0xb4, +0x9b,0xd1,0xae,0x33,0xdc,0xa6,0xb3,0x33,0x68,0x67,0x02,0x57, +0x86,0xe1,0xeb,0x9d,0x30,0x7c,0xe5,0xf5,0xa1,0x84,0x2f,0x7b, +0xc2,0xf0,0xcd,0x51,0x58,0x18,0x06,0xf8,0xea,0x27,0x0c,0x5f, +0xfd,0x84,0xe3,0x01,0xe1,0xf8,0xae,0x28,0x1c,0xdf,0x15,0x85, +0x07,0x61,0x80,0xa9,0x84,0x63,0x2a,0xe1,0x98,0x4a,0x38,0xa6, +0x12,0x8e,0xa9,0x84,0x0b,0x54,0x02,0x42,0xf0,0x6d,0x96,0xb0, +0x9a,0x11,0x08,0xc1,0x20,0x14,0x83,0x30,0x0c,0xc2,0x31,0xb0, +0x0f,0x88,0xc6,0xc0,0x1f,0x03,0x1d,0x06,0x31,0x18,0xc4,0x62, +0x80,0x2f,0xca,0x84,0x78,0x11,0x18,0x86,0xef,0xcb,0xc2,0x82, +0x71,0x97,0x08,0x3c,0x4e,0x08,0x37,0x08,0xe0,0xd9,0x05,0xc7, +0x44,0x00,0x4f,0x1b,0x81,0xa7,0x8d,0xc0,0xf3,0x45,0xe0,0xd9, +0x75,0x78,0x1c,0xbe,0x12,0xd3,0xe1,0x8b,0x41,0x9d,0x60,0x07, +0x54,0xf2,0xc7,0x25,0x3c,0x2d,0xbe,0x3c,0x0b,0xd0,0x61,0xd2, +0x31,0x98,0x66,0x0c,0x96,0x2f,0xc2,0x0e,0xb0,0x98,0x3a,0xdc, +0xa6,0xc3,0xf3,0xe1,0x7b,0xb9,0x00,0x7c,0x2f,0x17,0xa0,0xb3, +0x03,0x5d,0xa3,0x7b,0x23,0x7c,0xed,0x91,0x31,0xb2,0xd0,0xdc, +0xf8,0x4c,0xe8,0x1f,0x88,0xd7,0x6a,0xa0,0x2e,0x46,0x48,0x64, +0x3e,0xcb,0xa1,0x84,0xcc,0x0e,0x2f,0xc6,0x20,0xbc,0xb6,0x82, +0xb0,0xbb,0x04,0x61,0x77,0x09,0xc2,0x7e,0x12,0x84,0x57,0x61, +0x10,0x5e,0x93,0x41,0xd8,0x87,0x82,0xf0,0xc2,0x09,0xc2,0x6e, +0x16,0x84,0x57,0x45,0x10,0x5e,0x2a,0x41,0x78,0x47,0x0c,0xb2, +0xdf,0x89,0xe2,0x3d,0x2b,0x08,0x6f,0x24,0x41,0x78,0xeb,0x09, +0xc2,0xbb,0x4b,0x50,0x60,0xb8,0xc0,0xb7,0xc0,0x2e,0xbe,0xdf, +0xe1,0xb3,0x70,0x01,0xcb,0xb1,0x58,0x72,0x05,0x44,0x10,0xf2, +0x03,0xe3,0x42,0xcf,0x0f,0x05,0x7c,0x01,0x65,0x2f,0x08,0x23, +0x3f,0xa5,0xf5,0xf8,0xf6,0xea,0x63,0x51,0xa0,0xd4,0xe8,0xee, +0xe8,0xf3,0xce,0xfc,0x5c,0x1f,0xe8,0xe0,0x63,0xc9,0xa7,0x36, +0x61,0x7a,0xac,0x68,0xfe,0x13,0xd8,0x8d,0x54,0x2e,0x94,0xed, +0xf7,0x7d,0x3c,0xfa,0xe9,0x2a,0x49,0x28,0x7d,0xb8,0x3d,0xe4, +0x0b,0x8d,0x0f,0x3e,0x42,0x05,0xbe,0xfd,0xe3,0x31,0x7c,0x93, +0xc8,0x63,0x8d,0x6e,0xab,0x84,0xa2,0xe1,0x03,0x61,0xbb,0x6d, +0x3f,0x61,0xc8,0xca,0x43,0xf9,0xa2,0x70,0xa5,0xf8,0x01,0xf9, +0x44,0x12,0x27,0xe7,0x3c,0x66,0xb7,0xca,0xa7,0xb1,0x9f,0x3a, +0x7d,0x52,0xf7,0xa7,0x22,0xaf,0x87,0x4f,0xa5,0x4f,0x42,0x7f, +0xa6,0xfd,0xcf,0x6a,0x3e,0x31,0xf9,0x99,0x1d,0xfe,0x25,0xcf, +0xa7,0x71,0xff,0xb2,0xc8,0xbf,0xea,0xfe,0xdb,0xd8,0x8f,0x3c, +0x7d,0x6e,0xa0,0x7f,0xf5,0xfa,0xc4,0x2b,0x2f,0xb2,0x7f,0x34, +0x8e,0x3f,0xfe,0x38,0xfe,0xf8,0xe3,0xc0,0xe3,0x6f,0xaf,0xc4, +0xd1,0xc8,0x1f,0x87,0x21,0x7f,0x1c,0x86,0xfc,0x71,0x18,0xf2, +0xc7,0x61,0xc8,0x1f,0x87,0x21,0x7f,0x1c,0xcc,0x02,0xf1,0xbd, +0xb9,0x3f,0xbe,0xce,0x16,0x16,0x45,0x9c,0x3e,0x0e,0x57,0x06, +0xe2,0x9e,0x81,0xb8,0xa7,0xb0,0x28,0x10,0x88,0xc5,0x4c,0xf0, +0x40,0x1f,0x27,0x9c,0xef,0xd1,0xf1,0x9e,0x9f,0x3d,0x2e,0x2e, +0x0e,0x25,0x3d,0x21,0x69,0x46,0x2d,0xff,0x05,0x06,0x83,0xd9, +0xdc,0x4e,0x9b,0x3e,0x52,0xcb,0x7f,0xc1,0xa2,0xa0,0xd0,0x90, +0x61,0xe5,0xaf,0xf7,0xb5,0x99,0x46,0xe1,0x5e,0x9f,0xff,0xb2, +0x82,0x25,0x4b,0xf8,0x4a,0x43,0xa9,0xa5,0x30,0xb3,0xa8,0x9d, +0x36,0xcb,0x62,0x31,0xa3,0xd3,0x27,0xaa,0x34,0xe4,0xf3,0xdf, +0xcc,0xc8,0x30,0x14,0x08,0xdf,0x59,0x40,0x15,0xc6,0xc2,0x42, +0x4b,0xe1,0xff,0xc3,0x97,0x49,0x12,0x2d,0x85,0x79,0x06,0x33, +0x68,0xc1,0xbf,0x6d,0xcf,0x12,0xcd,0x89,0x56,0x44,0x10,0xd1, +0x91,0x88,0x21,0x7a,0x13,0xc3,0x89,0x11,0x44,0x39,0x31,0x87, +0x98,0x4f,0x2c,0x23,0xd6,0x12,0x37,0x89,0xe7,0xc4,0x9f,0xc4, +0xdf,0x40,0x09,0xfc,0x40,0x38,0x18,0x0a,0x46,0x09,0x6f,0xc5, +0x4f,0x03,0x07,0xc0,0x0d,0x00,0x49,0x9a,0x74,0x26,0xdd,0x49, +0x1f,0xb2,0x29,0xe9,0x47,0x76,0x23,0x93,0xc9,0x01,0xe4,0x30, +0xb2,0x88,0x5c,0x44,0xae,0x24,0x8f,0x91,0x27,0xc9,0xbb,0xe4, +0x1b,0x4a,0x44,0x49,0xa9,0x2c,0xca,0x44,0x1d,0xa1,0x9e,0x50, +0x9c,0x88,0x12,0x69,0x45,0xe1,0xa2,0x78,0x51,0x1f,0xd1,0x10, +0x91,0x51,0x94,0x27,0xb2,0x8a,0xc6,0x88,0x26,0x8a,0xea,0xe9, +0xce,0x74,0x1c,0x3d,0x82,0x9e,0x41,0x6f,0xa5,0xbf,0xa5,0x4f, +0xd3,0x8f,0x18,0x67,0xc6,0x9b,0x09,0x62,0xba,0x33,0x03,0x99, +0x2c,0x66,0x3c,0xb3,0x8c,0xd9,0xce,0x9c,0x60,0x2e,0x30,0x37, +0x99,0x27,0xcc,0x2b,0xe6,0xbd,0xd8,0x49,0xac,0x14,0x6b,0xc4, +0x6d,0xc4,0x21,0xe2,0x28,0x71,0x37,0x71,0x1f,0xf1,0x20,0x71, +0x86,0xd8,0x2c,0x2e,0x16,0x8f,0x11,0x3f,0x75,0x90,0x3a,0xa8, +0x1c,0x9a,0x3a,0xa4,0x3b,0x58,0x1c,0xb6,0x38,0x3c,0x73,0xf4, +0x74,0xec,0xea,0x98,0xe4,0x38,0xda,0x71,0xa2,0xe3,0x16,0xc7, +0xeb,0x8e,0x36,0x89,0xbb,0xa4,0x85,0xa4,0xbd,0xa4,0xbb,0x24, +0x53,0x32,0x46,0x32,0x5f,0xb2,0x55,0x72,0x46,0xf2,0x83,0xe4, +0x1f,0xd6,0x89,0x55,0xb1,0xcd,0xd9,0x20,0xb6,0x03,0x9b,0xc2, +0x0e,0x62,0x0b,0xd9,0x52,0x76,0x22,0x3b,0x93,0x9d,0xcf,0xae, +0x64,0x77,0xb3,0xc7,0xd8,0x73,0xec,0xf7,0xec,0x53,0xf6,0x4f, +0x27,0xe0,0x24,0x71,0x92,0x3b,0x35,0x71,0x6a,0xed,0x14,0xea, +0xd4,0xc9,0x29,0xc1,0xa9,0xaf,0xd3,0x60,0x27,0xa3,0xd3,0x3d, +0xe7,0x54,0xe7,0x8d,0xce,0x3f,0x4a,0x0d,0xd2,0x13,0xd2,0x7b, +0x2e,0x32,0x97,0x66,0x2e,0xc1,0x2e,0x33,0x5d,0xee,0xbb,0x70, +0xae,0x52,0xd7,0x0e,0xae,0x33,0x5c,0xf7,0xb9,0xd1,0x6e,0x4e, +0x6e,0xc9,0x6e,0x0b,0xdd,0xf6,0xb9,0xdd,0x70,0xbb,0xe3,0xf6, +0x5e,0xe6,0x2b,0xeb,0x27,0x9b,0x2e,0x5b,0x23,0xdb,0x2a,0x3b, +0x2c,0xbb,0x2e,0xfb,0x5b,0xde,0x56,0x1e,0x2c,0x8f,0x90,0x47, +0xcb,0xf3,0xe5,0xdf,0xc8,0xcf,0xca,0x7f,0x77,0xf7,0x74,0xef, +0xec,0x6e,0x74,0x9f,0xee,0xbe,0xd2,0x7d,0x8d,0xfb,0x16,0xf7, +0x6b,0xee,0xaf,0x14,0xee,0x8a,0x30,0x45,0x94,0x22,0x4d,0x51, +0xa6,0x58,0xa4,0xa8,0x56,0x1c,0x55,0xdc,0x55,0x3c,0x56,0xbc, +0x50,0xd2,0x4a,0x8d,0x32,0x42,0x99,0xa2,0x34,0x2b,0x8b,0x94, +0xd3,0x94,0xab,0x95,0x3b,0x95,0xe7,0x94,0x75,0xca,0xa7,0xca, +0xbf,0x3d,0x5c,0x3d,0x34,0x1e,0xc1,0x1e,0x1d,0x3d,0x7a,0x79, +0x64,0x7a,0x94,0x7a,0x8c,0xf1,0xa8,0xf2,0x58,0xe1,0xb1,0xd6, +0x63,0x87,0xc7,0x51,0x8f,0x2b,0x1e,0x75,0x1e,0xbf,0x7b,0x02, +0x4f,0x99,0xa7,0xaf,0x67,0xa0,0xa7,0xce,0x33,0xd9,0x33,0xdd, +0xb3,0xd0,0x73,0xbc,0x67,0x95,0xe7,0x12,0xcf,0x8d,0x9e,0x07, +0x3c,0xcf,0x7a,0xde,0xf2,0x7c,0xec,0xf9,0x87,0xe7,0x7b,0x2f, +0x67,0x2f,0x1f,0xaf,0xe6,0x5e,0x01,0x5e,0x9d,0xbd,0xba,0x7b, +0xf5,0xf3,0xca,0xf4,0x2a,0xf0,0x1a,0xed,0x35,0xc5,0x6b,0x9e, +0x57,0xb5,0xd7,0x06,0xaf,0x1d,0x5e,0x07,0xbc,0x4e,0x79,0x5d, +0xf1,0xba,0xe3,0xf5,0xc4,0xeb,0x37,0xaf,0xbf,0xbd,0x69,0x6f, +0x57,0x6f,0x1f,0xef,0x16,0xde,0x01,0xde,0x1d,0x14,0xba,0x6d, +0xa1,0x5c,0xe7,0xe3,0x45,0xb4,0x54,0xb1,0x75,0xe9,0xb2,0xf5, +0x9a,0x05,0xe2,0xf5,0xe5,0xcb,0x4c,0xa6,0xf2,0x91,0x16,0xf5, +0x58,0xb1,0x65,0xe9,0xc8,0xad,0x6a,0xe9,0xe0,0x08,0x15,0x3b, +0xa2,0xf2,0x46,0x66,0x89,0x6d,0xd0,0x8d,0xca,0x52,0x56,0x91, +0xa6,0x82,0x89,0xca,0x34,0x95,0x34,0xb9,0xb2,0xc6,0xd6,0xf2, +0x0a,0xab,0x80,0x12,0xa6,0x77,0xb3,0x83,0xb0,0xb5,0x8a,0x03, +0x8c,0x94,0x2b,0x3f,0xa5,0xe8,0x99,0xb1,0xe1,0x98,0xa6,0x5a, +0x7c,0x74,0xcf,0xfa,0x1f,0xd5,0x6f,0x42,0x99,0xd4,0xe4,0xf4, +0x8e,0x6a,0x76,0xe0,0xec,0xd5,0xd9,0xdf,0xf9,0xb0,0x46,0x81, +0xd0,0xa2,0x52,0x76,0x9e,0xaa,0x56,0x0c,0xc1,0xb9,0x13,0x0f, +0x1f,0x9e,0x4b,0xe5,0x80,0x3a,0x5a,0xcc,0x81,0xc4,0xd4,0x10, +0x35,0x3b,0x45,0x25,0x7d,0x2a,0xbf,0xd9,0x5e,0x25,0x6f,0xc5, +0x3e,0x94,0xdf,0xf4,0xe3,0x21,0xdc,0x5c,0xa9,0x78,0x59,0x7b, +0xb8,0x66,0x8b,0x26,0x79,0x0f,0x9d,0x5c,0xd0,0x3f,0xb7,0x9b, +0xcf,0x28,0x15,0x6c,0x11,0xfa,0x86,0x53,0x73,0xda,0xf6,0x4d, +0xb9,0x70,0x2e,0xfc,0x59,0x53,0xa8,0x55,0xdb,0xf2,0x44,0xb0, +0xa5,0x8a,0x85,0x7f,0x3d,0x56,0x41,0x07,0x71,0xb5,0x8a,0x73, +0x10,0x73,0xea,0xd0,0x00,0xce,0x59,0xcd,0xda,0x5a,0x2a,0xef, +0xda,0x16,0x45,0x72,0x6f,0x19,0x76,0x6c,0xf5,0xea,0xd1,0xdb, +0x7c,0xa4,0x7f,0x6d,0xb8,0x0e,0xbb,0xa9,0xca,0x0a,0xfa,0xf9, +0xf4,0x2b,0x5b,0xb7,0x61,0xa4,0xa6,0x64,0xcb,0x90,0x62,0xba, +0xcf,0xb2,0x0d,0xb1,0x7f,0xf9,0xb0,0x6b,0x54,0x83,0xcd,0x23, +0x0a,0x46,0x6a,0xb6,0x64,0xd0,0x4b,0x57,0x7c,0x33,0x7f,0xa5, +0xcf,0xd2,0xea,0x89,0xe5,0x9b,0x35,0xac,0x42,0xbf,0x15,0x29, +0xeb,0x88,0x95,0x66,0xef,0xca,0x8b,0x6d,0x33,0x94,0x35,0xbd, +0xe0,0x0e,0xf1,0x0a,0x95,0x7c,0x6f,0xdb,0x8b,0x49,0x10,0xdc, +0x38,0xb9,0xe5,0xc2,0x4a,0x75,0x15,0x23,0x2f,0x6e,0x85,0xaa, +0x5a,0xaa,0xe4,0x12,0x36,0x58,0xc5,0x0d,0x3b,0xa4,0xe0,0x48, +0xce,0x7b,0x4f,0x1e,0x64,0xa1,0x08,0xb2,0x9c,0x68,0xcf,0x46, +0x8e,0x84,0xde,0x48,0xdf,0x19,0x2a,0xbb,0x46,0x2b,0xaf,0xdb, +0x7c,0xaf,0xb3,0x70,0x13,0x8c,0x50,0x58,0xc2,0xe8,0xaf,0x98, +0xa2,0x3a,0xce,0x15,0xfe,0x49,0x47,0x32,0xb0,0x6f,0xc3,0x96, +0x4c,0x8e,0xa4,0x3b,0xe8,0xf7,0x30,0xdf,0x57,0x2f,0x3b,0xbf, +0x4a,0x03,0x47,0xbd,0x75,0xa5,0x3b,0x32,0xac,0xfc,0xb9,0xed, +0x1f,0x25,0x37,0xe5,0x6d,0x22,0xad,0x65,0xb8,0x29,0xef,0x12, +0xe9,0xdd,0x2a,0x7f,0xb8,0xe5,0x90,0x4a,0xee,0xce,0xc2,0xa7, +0x4a,0xb8,0x59,0x0c,0x27,0xdb,0xc2,0xe8,0xb6,0x0c,0x97,0xc8, +0x3d,0xa1,0xa7,0x20,0x00,0x9f,0xa0,0x12,0x9c,0xd8,0xd0,0x81, +0xe6,0x36,0x88,0x59,0xba,0xbc,0x74,0xd4,0xb8,0x62,0x9f,0xf2, +0x92,0x39,0x4b,0x73,0x35,0x2c,0x67,0xab,0x16,0x4c,0x22,0x3b, +0xfa,0x10,0x6e,0xbe,0xcb,0x1e,0xdc,0xb4,0x76,0xdd,0x32,0x0d, +0x5b,0x17,0xd9,0xb0,0x48,0xcc,0xd6,0xc9,0x6f,0xe6,0xab,0x6c, +0xfe,0x61,0x59,0xbc,0x21,0x14,0x5b,0x97,0x60,0x17,0x19,0x8d, +0x5c,0x64,0x34,0x76,0x91,0x25,0xc8,0x45,0xe0,0x80,0x25,0x2a, +0x26,0x49,0xbb,0x1f,0xf9,0x00,0x5b,0x0b,0xbf,0xaa,0x85,0x15, +0xb5,0xec,0x11,0xe8,0x79,0x44,0xc6,0xe6,0xab,0x20,0xb7,0x44, +0x7c,0x74,0xd1,0xfa,0x6d,0x9a,0x3f,0x62,0x39,0x91,0x7f,0x96, +0x8a,0x55,0x18,0xca,0x8a,0x72,0x34,0x63,0xc4,0x05,0x0b,0x4b, +0xd7,0x4d,0x52,0x8f,0x1d,0x54,0x94,0x93,0x61,0x70,0xb8,0xc2, +0x9c,0x3e,0xb2,0xb5,0xf6,0x5b,0xef,0xc5,0xe2,0x6d,0x65,0xab, +0x0d,0x6a,0x16,0xde,0x81,0xf7,0x15,0x50,0xae,0x62,0xef,0x96, +0x5d,0xeb,0x7d,0x56,0x5d,0xcd,0x1c,0x59,0xb4,0x6e,0xbb,0xe6, +0x17,0x31,0x37,0xa1,0xe1,0xb2,0x22,0x24,0xf1,0x04,0x04,0x9a, +0x5a,0x31,0xfb,0x4a,0xc5,0xb0,0x8a,0x9d,0xcb,0xaa,0x37,0x6b, +0x16,0x8b,0x37,0x8f,0xac,0x36,0x1a,0x47,0x96,0xe4,0xaa,0xc7, +0x88,0x73,0x97,0x95,0xec,0x54,0x4b,0xe7,0x5a,0x47,0xcc,0x2a, +0xf0,0xe1,0xd4,0xed,0x04,0x07,0x79,0xd1,0x14,0xaa,0xa1,0xfa, +0xc5,0x1b,0x18,0xae,0x41,0xc6,0x3b,0x07,0x23,0x94,0xc8,0x1d, +0x90,0x80,0x72,0x7f,0x56,0xe1,0xc7,0x54,0x72,0x3d,0xe9,0x13, +0x8c,0x14,0xee,0xad,0x54,0xc0,0x36,0x4f,0xef,0x43,0xf7,0x3f, +0x7b,0x9d,0xe5,0x9a,0x6c,0xd2,0x24,0x2f,0xa2,0x83,0x56,0x0c, +0xdb,0x78,0xd9,0xfb,0xd6,0xc9,0x5d,0x4f,0xee,0x9d,0x18,0x9e, +0xba,0x53,0x7d,0xe1,0x20,0x5d,0x9b,0x16,0xbd,0xdb,0xd7,0x87, +0x53,0x7d,0xd9,0x95,0x73,0xd5,0xd6,0xa4,0x40,0x79,0xbe,0xe6, +0x74,0x05,0xfd,0xac,0x64,0xc7,0xf0,0x04,0xef,0xc8,0xbe,0x69, +0x2d,0x3b,0xf4,0xde,0x76,0x69,0x80,0xba,0x67,0x1a,0xdd,0xe5, +0xd4,0x0f,0x83,0xa1,0xc8,0x87,0x9d,0xaf,0x92,0xc2,0x89,0x88, +0xb4,0xe4,0xe6,0xb9,0xdf,0xee,0x0c,0x3d,0xca,0x31,0x4b,0x35, +0x19,0xb3,0xe9,0xee,0xf3,0x73,0x56,0x1c,0xf5,0x3e,0xb2,0x6d, +0xd3,0xe5,0xcb,0xfb,0xcd,0xb9,0xab,0xd4,0x27,0x0e,0xd3,0xc7, +0x0d,0x7d,0x36,0x85,0xfb,0xf8,0x76,0xec,0xff,0x45,0xdb,0xeb, +0x99,0x2f,0xc6,0x68,0xf6,0x4c,0xa2,0xaf,0x8e,0x5b,0x69,0xce, +0xf0,0x4e,0xcd,0x30,0xc7,0x77,0x1b,0xb8,0xe1,0x68,0x86,0x3a, +0x79,0x30,0x9d,0x78,0xf0,0x42,0xc6,0x0b,0x1f,0x56,0xc1,0x19, +0x98,0x97,0xb7,0xe8,0x53,0xfb,0x76,0xed,0x3e,0xe3,0x7d,0x71, +0xf0,0x81,0x88,0xc8,0x8c,0x61,0x83,0x46,0xa9,0xbf,0x2d,0xa5, +0x37,0x2f,0xa8,0x5e,0x7b,0xd0,0x67,0xef,0x2a,0xab,0x49,0x33, +0x49,0xcc,0xee,0x5e,0xb4,0x6e,0xe3,0x5e,0xef,0xd3,0x03,0x77, +0x86,0x87,0x0f,0x34,0x26,0x1b,0xd6,0xe5,0xed,0xae,0x50,0x4f, +0x16,0xb3,0xb0,0x3b,0x77,0x5f,0x71,0x40,0xc5,0xda,0xf6,0xd4, +0x2a,0x1a,0x42,0x19,0x5b,0x2b,0xdb,0x01,0xfa,0xfb,0x86,0xbc, +0x68,0x9b,0x4c,0xdc,0xd0,0xb2,0xe1,0x00,0xdd,0xc5,0x56,0x25, +0x66,0xb7,0x7e,0xb3,0x7c,0xbd,0x66,0xa1,0x78,0xfd,0xa8,0xe5, +0x26,0xd3,0xa8,0x32,0x8b,0xba,0x52,0x6c,0xf9,0xa6,0x6c,0xab, +0xfa,0xe3,0x32,0x7e,0x02,0x53,0x65,0x77,0xef,0xb2,0x23,0xb8, +0x9c,0x1a,0xa8,0xbc,0x61,0xd3,0xf2,0xee,0xdc,0xa3,0x73,0xfa, +0xa1,0x67,0x6a,0x58,0x13,0xc9,0x72,0x83,0x6a,0xde,0x7a,0xa3, +0x88,0x01,0xb7,0x5c,0xe5,0xb6,0xa0,0x95,0x37,0xad,0xf6,0xad, +0xa8,0x94,0x9d,0x56,0x03,0x43,0xaf,0xc2,0x16,0x35,0x6c,0x61, +0x65,0xad,0xed,0x7a,0x2d,0x5b,0x37,0xea,0x96,0xfc,0x79,0x95, +0x6d,0x69,0xb2,0xa2,0xbe,0xcf,0x71,0xce,0x5d,0xcd,0x91,0xcc, +0xa0,0xdc,0xb9,0x9b,0x36,0x6f,0x5d,0xba,0x75,0x9e,0x66,0xca, +0x92,0x65,0x53,0x97,0xfa,0xc8,0xff,0xd0,0xc2,0xa6,0x2a,0xf9, +0x4f,0xda,0xb9,0xd6,0x82,0x59,0x16,0x1f,0xce,0xb1,0xb3,0xce, +0x37,0x66,0x7b,0xf2,0xb9,0x7c,0xcd,0x64,0xb1,0xfc,0x79,0xf5, +0x6a,0x95,0xfc,0x85,0xeb,0x56,0x15,0x37,0x07,0x1e,0x54,0xa0, +0x4e,0xcb,0xf8,0xe2,0x5f,0x2a,0xb9,0x28,0x0a,0x99,0xba,0xd6, +0x36,0xc1,0xb6,0x48,0x11,0x19,0x36,0x99,0x91,0x3f,0xbd,0x54, +0x90,0xba,0x29,0xd6,0x87,0x73,0x8f,0xf0,0xe5,0x22,0xb8,0x88, +0xfb,0xbe,0xd0,0xfd,0xc6,0xe1,0x2d,0x17,0x36,0x69,0x66,0xc5, +0x30,0x2d,0xfa,0xa6,0xfa,0x25,0x0d,0x59,0xb1,0xdd,0xa4,0x1e, +0xd4,0x87,0x36,0xec,0x3e,0x9b,0x5f,0xe7,0x03,0xbf,0xa8,0x7b, +0x04,0x7d,0x35,0xf2,0x5a,0xd8,0x59,0x25,0x7f,0xfa,0xf4,0xcc, +0xc5,0xa7,0x37,0xcf,0x18,0x92,0xd5,0x5c,0x8a,0x38,0xbe,0x97, +0x31,0x46,0x8d,0x96,0x77,0x82,0x4a,0xae,0x27,0xfa,0xaa,0xd8, +0x4b,0xc7,0x8e,0x5c,0xbe,0xdc,0xef,0x48,0xb7,0x6e,0xfd,0x06, +0x24,0x24,0x1c,0x1b,0x70,0x49,0x73,0x44,0x94,0x5d,0xbc,0x62, +0x9b,0x66,0xa5,0x78,0xdb,0xca,0x15,0xdb,0xb7,0xaf,0x2c,0xcd, +0x51,0x17,0x8b,0x73,0x8a,0x4b,0xb3,0xd5,0xd2,0x35,0xaa,0x95, +0x9c,0xe6,0x7f,0x88,0x08,0x73,0x2d,0x79,0xb3,0x72,0x7d,0xb8, +0xae,0x9c,0x03,0x27,0xe7,0x2a,0xb8,0x0a,0x88,0x20,0xec,0x8a, +0xfe,0x1c,0xa0,0x1c,0x56,0x68,0xd8,0x86,0x58,0x31,0xe7,0x35, +0x4c,0xcf,0xb9,0x72,0xae,0xc3,0x6a,0xa0,0x97,0xda,0x16,0x2b, +0x66,0x57,0xa9,0xa4,0x47,0xf9,0xa5,0xf1,0x9b,0x98,0x3b,0xf9, +0xae,0x52,0xc1,0x39,0x87,0x3e,0x85,0x6a,0x0d,0x0a,0x7f,0x50, +0x5d,0xff,0x14,0xa2,0xc8,0xa7,0xe8,0x77,0x40,0x7c,0x74,0x5d, +0xb9,0x11,0x79,0x82,0xb1,0xc0,0xda,0x7f,0x70,0x51,0xf5,0x86, +0x32,0xf5,0x20,0x13,0x6d,0x5a,0xb3,0x33,0xf7,0xa6,0xcf,0xa3, +0x53,0xfb,0x2e,0x9d,0xc8,0xdc,0x30,0x64,0xae,0x66,0xa6,0xd8, +0x1e,0x19,0xa3,0x54,0xe6,0xed,0x9d,0x54,0xec,0xdf,0x91,0x0a, +0x8e,0xe2,0x9a,0xed,0x37,0x43,0x47,0xfe,0x8f,0x73,0xdc,0xbf, +0x89,0xa3,0x60,0x33,0x5a,0xba,0x77,0xf9,0xaa,0x6d,0x9a,0x45, +0x68,0x9d,0xae,0x32,0x18,0xca,0xac,0x39,0xea,0x0a,0x71,0xce, +0x72,0xeb,0x5e,0xb5,0xb4,0x9f,0x77,0xea,0x3e,0xeb,0x71,0xa8, +0x54,0xad,0x5c,0xb4,0xaa,0xfe,0x8e,0x86,0x85,0xc1,0x68,0x9f, +0xb8,0xfa,0x02,0x0e,0x55,0xb3,0x97,0xcf,0x6f,0xbe,0x78,0x7b, +0xf7,0xa0,0xf6,0x6a,0xae,0xe6,0x2e,0xac,0x13,0x43,0xb7,0xae, +0x37,0x9a,0x76,0x1e,0x6a,0xec,0x5d,0xa8,0x9e,0xcc,0xda,0x62, +0x94,0x35,0xdc,0x59,0x31,0x3c,0x6e,0x53,0xd2,0x67,0x1b,0xdc, +0xf4,0x28,0xa2,0x72,0x07,0x1b,0x5c,0xe8,0xae,0xc8,0x43,0x9d, +0xeb,0x03,0x38,0xb5,0xa6,0x71,0x18,0xdf,0x36,0x49,0xf1,0xfc, +0xd8,0xc1,0x73,0x87,0x73,0x37,0x0e,0x5c,0xa8,0x99,0x25,0x66, +0xed,0xbb,0x06,0xd7,0x92,0xbd,0x9a,0x52,0x03,0x23,0xce,0xc2, +0xf0,0x6b,0x2c,0x97,0x01,0x33,0x06,0x0c,0x7c,0x14,0x72,0xd4, +0xf0,0xf5,0x94,0x36,0xb3,0x69,0x56,0x7c,0x79,0x57,0xb6,0x4e, +0x93,0x26,0xd6,0x65,0x66,0x27,0xa8,0xa5,0xe2,0xd9,0x6d,0xa6, +0x7c,0x6d,0x38,0x1a,0xf2,0x68,0xe0,0x00,0x5a,0xca,0x07,0x29, +0x00,0x7b,0x9c,0x81,0x0e,0x67,0x28,0x16,0xca,0xcc,0x7f,0x74, +0xac,0x51,0x9f,0x60,0x58,0x58,0x58,0xdb,0xb0,0x26,0x1a,0x16, +0xb2,0x6d,0x93,0xaf,0x3c,0xd1,0xac,0xb6,0x89,0x77,0x8a,0xd9, +0xe3,0xcc,0xed,0x6d,0x47,0xae,0x6b,0x6c,0xcf,0x91,0x5b,0x6b, +0x15,0x37,0x61,0x56,0x88,0x2d,0x39,0x92,0x9d,0x56,0x0b,0x27, +0xdf,0x80,0x95,0xb5,0x80,0x15,0x42,0x28,0x94,0xbe,0x92,0xb1, +0x79,0xb3,0xbd,0xaa,0xc4,0xab,0xe7,0xb2,0xa9,0x5f,0xaa,0x27, +0x88,0xbf,0x44,0xd1,0x1d,0xea,0xae,0xc0,0x00,0x14,0xe0,0xdd, +0x3d,0xcf,0xd7,0x0c,0x62,0xb2,0x59,0x50,0x7f,0x17,0x4e,0xbe, +0x4b,0xb1,0x87,0xd0,0xe8,0x99,0x37,0x60,0x59,0xad,0xec,0x79, +0x1d,0x3c,0xfe,0x34,0xe1,0xa9,0xfc,0xf5,0x73,0x25,0xac,0x61, +0x5e,0xdd,0x7e,0x04,0xc5,0xd0,0x21,0x78,0x5f,0xff,0x99,0x9a, +0xd9,0x62,0xb9,0xed,0xe0,0x9c,0x2b,0x3b,0xfe,0xf4,0x86,0x20, +0xf6,0x3a,0x27,0x56,0x73,0xbb,0x99,0xba,0x06,0x89,0x02,0x66, +0x30,0xf2,0xd7,0x37,0xf6,0x1b,0xf5,0x1a,0x93,0x58,0x3f,0x14, +0xb9,0x23,0x97,0xc1,0xd8,0x0e,0x89,0x60,0x5f,0x46,0x6e,0xbb, +0xbc,0x3b,0xa7,0x27,0xaa,0xee,0x99,0x91,0x93,0xa0,0xe6,0xfa, +0x32,0x52,0xf9,0x35,0xb8,0xb1,0x52,0xf1,0xcb,0x95,0xc3,0xb5, +0x5b,0x34,0xbd,0x77,0xd1,0x6b,0x55,0x5b,0xe9,0xeb,0x79,0x89, +0x47,0xbf,0xf0,0xe1,0xbe,0x08,0x15,0x56,0x42,0xbd,0x2f,0xfc, +0x42,0xc3,0xc7,0xf7,0x28,0xd5,0xf0,0xdd,0x9d,0x54,0xf2,0x61, +0x41,0x2a,0x79,0x75,0x80,0x4a,0x31,0x5f,0xc5,0x4e,0xab,0x2e, +0x81,0xc7,0x6a,0x61,0x55,0x2d,0x10,0x78,0xa4,0xa0,0x5e,0x09, +0x8f,0xc1,0x54,0x64,0xc3,0x9a,0xdb,0xd0,0x05,0xba,0xe8,0x6f, +0x73,0x6e,0x1a,0x6e,0xd3,0xbb,0x44,0xa6,0xee,0xad,0x48,0x01, +0x53,0x19,0xa4,0xec,0xee,0x48,0xd9,0xdd,0x79,0x65,0x73,0xa9, +0x28,0xa6,0x4a,0xd1,0x46,0x48,0x2c,0x52,0xc9,0x65,0xc4,0x41, +0x15,0x4c,0xaf,0x2e,0x79,0x9b,0x58,0x0a,0x9e,0xdf,0xb7,0xa5, +0xdf,0xa7,0x9e,0x2b,0xef,0xdb,0xea,0xab,0x98,0xef,0x38,0x47, +0x18,0xc9,0x9d,0x86,0x91,0xf0,0xf4,0x77,0xd0,0x91,0xae,0x6a, +0xa8,0xbf,0xff,0x36,0x91,0x23,0x18,0x6e,0x70,0x83,0x13,0xda, +0x0d,0xb9,0x41,0x36,0x27,0x9a,0x13,0x31,0xd2,0x31,0x5c,0xfa, +0xf1,0x89,0xf4,0x92,0x25,0xcb,0x16,0x6f,0xf3,0x39,0xba,0x76, +0x84,0x41,0xf3,0x95,0xd8,0x30,0x62,0x44,0xff,0xc1,0xc5,0xd5, +0x1b,0x4a,0xd5,0x43,0x90,0x47,0xaf,0xde,0x91,0x7b,0xdd,0xe7, +0xe9,0x89,0xe3,0xb5,0x37,0x52,0xf7,0xc5,0x0d,0x29,0x29,0xcd, +0x1f,0xa9,0x99,0xcc,0x2c,0x80,0x5e,0x34,0x7b,0x5f,0x7e,0xf3, +0xb9,0xf2,0x7b,0x06,0x1e,0xb3,0x0d,0xac,0x81,0x32,0x7a,0x26, +0x33,0x81,0x6b,0x46,0x37,0x74,0x43,0xf3,0x74,0x11,0x73,0xc7, +0x1a,0x06,0xea,0x39,0x19,0xda,0x25,0xe7,0x22,0xf7,0xb6,0x75, +0x8b,0x10,0xf3,0x29,0x47,0x73,0xe5,0x49,0xe6,0xfb,0x75,0x4b, +0x6f,0x6c,0xd0,0xc0,0x29,0xb6,0x37,0x74,0x08,0xc3,0xc9,0xb8, +0x6b,0x43,0x39,0x17,0xc4,0x50,0x1a,0x74,0xe6,0xda,0xc2,0xeb, +0xb4,0x3f,0x03,0x17,0x34,0xec,0x1c,0x1e,0x4e,0xb7,0x40,0x1e, +0x23,0xb6,0xed,0x33,0xa9,0xd8,0xfb,0x4b,0x8f,0x9d,0x78,0xe1, +0x0d,0xc9,0xa8,0x9b,0x5c,0x5b,0x8e,0x49,0x48,0x8f,0xe9,0xaf, +0xbe,0x64,0xa0,0x0f,0x6f,0x3e,0xb2,0xb9,0xce,0xe7,0xd9,0xfe, +0x8c,0xae,0x68,0xdb,0x8b,0x34,0x64,0xb4,0x56,0xb7,0x8a,0x7e, +0xcd,0xa0,0xad,0xf5,0x5c,0x47,0x15,0xda,0x7f,0x60,0x30,0x1f, +0xa0,0xb8,0x55,0x0c,0x17,0x77,0x2d,0x12,0xfa,0x40,0x9f,0x6b, +0x77,0x61,0x9c,0x1a,0xae,0x8a,0xe4,0xb6,0x89,0x39,0xa7,0xec, +0x3e,0x41,0x41,0xd9,0x27,0xa1,0x93,0x9a,0xdd,0x3b,0x6f,0xfb, +0xfa,0xc3,0xde,0x67,0xfb,0x6c,0x8b,0x4a,0xc8,0xb4,0x0c,0xb7, +0xaa,0xf7,0x99,0xe8,0xf5,0xcb,0xd6,0x2e,0xdd,0xe5,0xb3,0x7b, +0x4d,0xd9,0x70,0x14,0x08,0xf3,0x8a,0x8a,0xfb,0xa9,0xa5,0x70, +0x0b,0xda,0x68,0x84,0x8d,0x0e,0x86,0xb7,0xe3,0x33,0xa4,0x46, +0x1b,0xa0,0xe6,0xba,0x08,0xef,0x9d,0xec,0x5f,0xeb,0x6a,0x50, +0xf6,0x53,0x5e,0x8c,0xb2,0x9f,0xf2,0x95,0x9f,0xb2,0x9f,0x75, +0x7a,0x94,0xfd,0x98,0x90,0x8d,0x44,0xb5,0x00,0x4e,0xa9,0xa3, +0xd6,0xa9,0x90,0x55,0xc5,0x52,0xe8,0xa0,0x82,0x3a,0xd8,0x56, +0xc1,0xce,0x1b,0x59,0xb2,0xc8,0xec,0x33,0x2c,0xef,0x43,0x72, +0xb4,0x7c,0xe9,0xfc,0x6a,0x9f,0x65,0x8b,0x27,0x56,0xac,0xd1, +0xb0,0xa2,0xbd,0xcb,0x57,0x6f,0x45,0x81,0x61,0x2b,0xda,0xc0, +0xd1,0x16,0x6f,0x42,0x81,0xc1,0xb4,0xbc,0x08,0x05,0x06,0xe5, +0xff,0x90,0x35,0x48,0x51,0xfd,0x3a,0x34,0x60,0x1d,0xae,0x2f, +0x40,0x03,0x0a,0x84,0x7a,0x25,0xac,0x60,0xd0,0x7c,0x22,0x14, +0xf7,0xc6,0xc0,0x31,0x1c,0x82,0x9c,0x4e,0xc3,0x55,0xb0,0xf1, +0xc3,0x36,0x5f,0xd5,0xac,0x17,0x5f,0xdd,0xb7,0xf9,0xea,0xd5, +0x7d,0xb9,0xf1,0x6a,0x8b,0x38,0x7e,0x18,0x02,0xfc,0x82,0x5f, +0xfc,0x10,0x5c,0x83,0x8b,0x29,0xf8,0x00,0x2e,0x56,0x3c,0xe4, +0x16,0x87,0x20,0x9e,0x41,0xf4,0x25,0xce,0xd5,0xaf,0xe7,0xe0, +0x3e,0x16,0xf5,0xe1,0x21,0xf4,0xa1,0xf5,0x7b,0x36,0x9e,0xf7, +0xb9,0xbf,0x3b,0x43,0xa7,0xe9,0xf7,0x85,0x98,0x6b,0xa3,0xef, +0xdb,0x06,0x85,0x28,0x21,0x46,0xe2,0x30,0xa3,0x66,0x8f,0x41, +0xe2,0xe8,0xa4,0x52,0x19,0x6c,0x65,0x3b,0xda,0x90,0x7b,0x25, +0xe9,0x32,0xbb,0x7e,0x32,0x0d,0x19,0x15,0x9b,0x56,0x91,0x55, +0x98,0xe6,0x9d,0xb3,0xd4,0xba,0x61,0x0c,0x62,0x9d,0x5d,0x50, +0x52,0xb4,0x24,0xc7,0x87,0xed,0x65,0x19,0x64,0xee,0xe6,0xd3, +0x6e,0xc0,0xa5,0xa7,0x9a,0xc7,0xe2,0xa7,0x47,0x2e,0xbd,0xb8, +0xb0,0xdf,0x9c,0xba,0x5c,0x7d,0x85,0xb5,0x1d,0xe2,0x17,0x42, +0x88,0x8a,0x55,0xd6,0x72,0x2f,0xe0,0x57,0xf0,0x56,0x2d,0x77, +0x0b,0x56,0xc0,0x17,0xb5,0x0d,0x9d,0xdf,0x25,0xa2,0xa0,0xd6, +0x41,0x45,0xb3,0xb6,0x7c,0xd4,0x78,0xf4,0xad,0x28,0x8c,0xaf, +0x51,0xe8,0x92,0x76,0x5e,0xd1,0xc0,0x3e,0x62,0x24,0x88,0x02, +0x6a,0x55,0x2c,0xcd,0xb9,0xc0,0xf3,0x61,0xdc,0x79,0xce,0x85, +0x61,0xfb,0x8d,0x31,0xe7,0xa5,0x78,0x77,0xb8,0x3c,0x18,0x86, +0xc0,0x0e,0x75,0x47,0xde,0xa0,0xd4,0x48,0x21,0xab,0x87,0x52, +0x79,0x35,0x6c,0xc1,0x2a,0x22,0x17,0xe4,0x73,0xbd,0x4e,0x4f, +0xa4,0x3f,0xee,0xc7,0x68,0x33,0x46,0xa1,0x85,0x15,0x9f,0xdd, +0x56,0x9a,0xaa,0x31,0x88,0x53,0x73,0x4a,0x92,0xd4,0x6c,0x8d, +0xaf,0xcd,0x09,0xd2,0x35,0x1c,0x0d,0x9b,0xc5,0xb4,0x65,0xeb, +0x99,0x1a,0x98,0x4e,0xc3,0x6d,0x4c,0x0d,0x97,0x4e,0xb3,0xf0, +0x1c,0xe2,0xa1,0x0e,0x5e,0x63,0x63,0x78,0x52,0x47,0x10,0x29, +0xd8,0x1c,0xd6,0xd0,0xc7,0xb9,0x35,0xac,0x7d,0xb7,0x54,0x74, +0x40,0x31,0x82,0xb5,0x95,0xa3,0x5c,0xb3,0x2b,0xd3,0x50,0x8e, +0x72,0x4d,0x76,0xfc,0xb2,0xea,0x8a,0x4d,0x3e,0x52,0x05,0x37, +0x89,0x81,0x12,0xf8,0x9c,0xae,0x62,0xd8,0xcc,0x5c,0x35,0xa7, +0xf4,0xa5,0x93,0xe1,0x1a,0x24,0xc6,0x04,0x14,0x0c,0xbb,0xde, +0x65,0x39,0xf5,0x85,0xb7,0x8b,0x2e,0x00,0x76,0xb7,0xf2,0x34, +0xb3,0x7d,0xc3,0x37,0xdf,0xae,0xd2,0x5c,0x85,0xa1,0xf4,0x33, +0x6e,0xf4,0x5d,0x38,0xfa,0x19,0x73,0x95,0x0b,0xa5,0xfb,0xae, +0xda,0x30,0x6a,0xbb,0xcf,0xe9,0x9a,0x24,0xa6,0x37,0xd4,0x8c, +0xd9,0x6a,0x5d,0x3a,0x62,0x96,0xd7,0x2c,0xf1,0xda,0xb9,0x2b, +0x96,0x2d,0xd9,0x72,0x02,0xb2,0x9e,0x67,0x51,0xbc,0xcc,0xc8, +0x2b,0x1b,0x5a,0xaa,0x89,0xe3,0xbe,0xa4,0xdb,0x43,0x73,0x24, +0x67,0x6e,0xcf,0xc4,0xc1,0x2f,0xe9,0xfd,0xa5,0x79,0xcb,0x33, +0x7c,0x06,0xe9,0xcf,0x32,0x27,0x38,0x76,0xc9,0xf0,0x15,0x23, +0xd7,0x4e,0xf0,0x9a,0x2c,0x1e,0x31,0xd9,0x5a,0x3e,0xc6,0xd4, +0x9b,0xd3,0x78,0x26,0x31,0xac,0x8d,0x84,0xe3,0x15,0x41,0xe2, +0xd4,0xde,0xe9,0x9d,0xbb,0x67,0x6e,0x38,0xa6,0xc6,0x27,0x92, +0x99,0x6a,0x98,0x78,0x16,0xfa,0xa9,0x38,0x4f,0x6e,0xa2,0x82, +0x3f,0x46,0x84,0xbf,0xe1,0x3c,0x7c,0xe3,0xe2,0x06,0x57,0xaa, +0x27,0x31,0xbb,0xc7,0x99,0x6e,0x71,0x12,0x9f,0x2f,0x7b,0x0c, +0xea,0x5b,0xa0,0x39,0x3c,0x94,0x3e,0xbc,0x61,0xd7,0xfa,0xcb, +0x3e,0x77,0xf6,0x20,0xaf,0x19,0x88,0xbc,0xa6,0x45,0x74,0x72, +0xab,0x2f,0xaf,0x24,0xfd,0x09,0xc5,0x57,0x6e,0xec,0x9f,0xa7, +0x99,0xcd,0x0c,0x5e,0x70,0x5d,0x0f,0x81,0xcf,0x93,0x9b,0x87, +0xae,0xa3,0xc3,0xc9,0x6e,0x3a,0xd9,0x32,0xd0,0x9c,0xe0,0xc3, +0x36,0x53,0x3d,0xf9,0x0e,0x25,0xd3,0x63,0xe1,0xb9,0x91,0x77, +0xe5,0x7d,0x6d,0x41,0xc2,0xd9,0x83,0xcf,0x40,0xd6,0xee,0x57, +0x71,0x11,0xf7,0x7c,0xa1,0xe2,0xfa,0x91,0xcd,0x17,0x51,0xde, +0xc1,0xc8,0x8d,0xf2,0xb5,0x9c,0x57,0x91,0x22,0x20,0xe5,0xfc, +0x33,0xe4,0x47,0xcf,0x4e,0x9d,0x7f,0x7a,0xf3,0x2c,0x9f,0x64, +0xf4,0x11,0x77,0x4d,0x32,0xea,0x50,0x92,0x31,0xc5,0xb6,0x52, +0x11,0x88,0x9c,0xa9,0x0e,0xd6,0xc0,0x26,0x0c,0xf4,0xe3,0xaa, +0xe8,0x7e,0x9b,0xd6,0x8f,0xd9,0xec,0x73,0xbe,0x36,0x91,0xe1, +0x94,0xd0,0x34,0xe2,0x60,0xc9,0xc2,0xb1,0xaa,0xf9,0x73,0xd7, +0xec,0x86,0xae,0x30,0xc7,0xf3,0x42,0xed,0x60,0xc6,0x50,0x50, +0xd6,0x2f,0x4f,0xc3,0x69,0xb9,0x09,0x34,0xd7,0x04,0x9e,0x47, +0x27,0x22,0x14,0x13,0xec,0x69,0x04,0x14,0x8d,0x78,0x34,0xf0, +0x9c,0xe6,0xea,0xcb,0xe4,0x1d,0x49,0x21,0xf4,0xb6,0x41,0xbd, +0x97,0xc5,0x7f,0x4a,0x39,0x44,0x6b,0x83,0x0f,0x27,0x6a,0xe2, +0xdb,0x9c,0xce,0x3a,0xfb,0x90,0xce,0x39,0x74,0x66,0xe4,0x55, +0x1f,0x2e,0x1d,0x9e,0x52,0x7c,0xcc,0x27,0x8e,0xee,0x1f,0x6d, +0xd9,0xaa,0xe6,0x4e,0x36,0xc4,0xd2,0xa5,0xdb,0x2b,0xf7,0x1f, +0xf3,0xb6,0xf9,0x43,0x07,0xc5,0xc7,0x1d,0xba,0xff,0xd0,0x25, +0xeb,0x4d,0x6a,0x78,0xd2,0x16,0x4b,0xaf,0xc8,0x5e,0x38,0xb4, +0x9f,0x37,0xdb,0x5f,0xd5,0x45,0x25,0xbf,0xf7,0x29,0x07,0x7b, +0xf9,0x7f,0x97,0x83,0xdd,0xe3,0x73,0xb0,0x97,0xff,0x91,0x83, +0x49,0x2b,0x84,0xfd,0x04,0x92,0x6f,0x64,0xd0,0xef,0xb7,0xaf, +0xeb,0x66,0xfe,0x26,0xc4,0xd4,0xe0,0x01,0x6f,0x37,0x34,0x57, +0x6d,0x43,0x5b,0x57,0x7a,0xad,0x2d,0xb4,0xf4,0xce,0x19,0xd9, +0x2a,0xdb,0xb3,0x86,0x3e,0xf0,0x74,0xa4,0x6a,0x3a,0x6c,0xa2, +0x80,0x6d,0x55,0x46,0x3a,0x7f,0x54,0x19,0x1f,0xfd,0xca,0x56, +0x6e,0x18,0xa5,0x29,0xd9,0xf9,0x29,0xfa,0x41,0x9d,0xec,0xc2, +0x83,0x32,0x78,0x6b,0xca,0x03,0xf9,0xcd,0x5e,0xc2,0xe9,0x53, +0x27,0x3b,0x7d,0x3b,0x19,0xde,0x1a,0x72,0x5b,0x7e,0x33,0x59, +0xa8,0x20,0xa7,0xd5,0xda,0xce,0xdc,0x02,0xe7,0x9f,0xda,0xfc, +0x9f,0x52,0x67,0x94,0xb0,0x1c,0x52,0x4c,0xf7,0xd5,0x31,0xbf, +0xbf,0xf6,0x7e,0x2a,0x7e,0xf9,0xfd,0x5f,0x50,0x09,0x95,0xdf, +0x6b,0xdb,0xa8,0x03,0xc4,0xbe,0x31,0x2d,0xba,0x17,0xa9,0x51, +0xda,0x54,0x5e,0xcb,0x05,0xcd,0x17,0xdf,0x3f,0x70,0xf3,0x77, +0xd8,0xca,0x1b,0x86,0x07,0xc0,0x8e,0x5c,0x3a,0x97,0x1e,0xc0, +0x75,0x44,0x91,0xb9,0xd5,0xcd,0x16,0xf7,0x87,0xa8,0xc7,0x71, +0x41,0x62,0x29,0xd3,0x14,0x1a,0xad,0x07,0x8a,0x97,0xe4,0xcd, +0x45,0x19,0x04,0x5a,0x05,0x4b,0x97,0xef,0xfe,0x19,0x0e,0x45, +0x26,0x4d,0x63,0x0c,0xe6,0xb2,0xd4,0x42,0x0d,0x27,0xe2,0xc6, +0x6d,0x51,0xa1,0x6c,0x71,0x1c,0x7d,0xa2,0x70,0xf8,0x72,0x83, +0x4f,0x5a,0xf4,0x05,0xe6,0x27,0x6e,0xe8,0xf2,0x8c,0x95,0xe5, +0x68,0x01,0x7c,0x25,0xce,0x9b,0x50,0x3a,0xda,0x3a,0x84,0x23, +0x38,0xa3,0x67,0x0f,0x56,0x81,0x4f,0xb1,0x9b,0xb2,0x3f,0x3b, +0xc5,0xca,0xab,0x87,0xa3,0x1d,0x3e,0x53,0xc5,0x5d,0x19,0x0f, +0x65,0x70,0xdb,0x36,0x15,0x74,0xec,0x8a,0x2a,0xe0,0xb6,0xc5, +0xaa,0x7a,0x65,0x2d,0x03,0xd3,0xe1,0x89,0x8b,0x90,0xa4,0x67, +0xa1,0x3d,0xd2,0x95,0xe6,0x76,0xdd,0xb1,0x2d,0x42,0x67,0xf3, +0x74,0xee,0x44,0x77,0x74,0x10,0x9d,0x8c,0xf6,0x48,0x57,0x1a, +0xee,0xea,0x24,0x46,0x5b,0x6a,0xb1,0x6d,0xaf,0xf2,0x0e,0xe4, +0xb8,0xb1,0xd1,0xd0,0x2f,0x8e,0x91,0xef,0x6d,0xde,0xa1,0x7f, +0x1b,0xce,0x2b,0xe2,0x19,0x54,0xab,0x21,0x8d,0xfc,0xa5,0xee, +0x47,0xe8,0xf2,0xf8,0xd2,0xe0,0xe8,0xcd,0xea,0x6b,0x7b,0xe9, +0x1f,0x87,0x84,0x9d,0xe7,0xdc,0x7c,0xb8,0x78,0x4e,0xc2,0x29, +0xb8,0xd1,0x28,0xb9,0x65,0x51,0x72,0xdb,0xe5,0xcd,0xf5,0x23, +0x97,0x96,0x6a,0x66,0xa2,0x33,0x33,0x4a,0xa7,0xaf,0xa2,0x7c, +0xe8,0x9b,0x8b,0xb0,0xa8,0x16,0xfc,0x5c,0x07,0x7f,0x7d,0x4a, +0xfd,0xbc,0x54,0xc5,0x1d,0xed,0xd8,0xfd,0x07,0xa6,0x8e,0xfb, +0x46,0x01,0xbf,0x81,0xaa,0x8b,0x9c,0x0a,0x16,0x41,0x57,0xb4, +0x19,0xc9,0xce,0x3c,0xdd,0x00,0x6f,0xa1,0xc4,0xe6,0x19,0xf2, +0x6c,0x87,0xfa,0x73,0xbf,0xec,0xd7,0x74,0xdd,0x4b,0x77,0xb1, +0x24,0xf6,0x0f,0xf4,0xe1,0x9c,0x62,0x1f,0xc1,0x66,0x9a,0x3f, +0xc5,0xb0,0xd9,0xf5,0x17,0xd0,0xe9,0xe1,0x99,0x41,0x31,0xeb, +0xd5,0x57,0xf7,0xd0,0x2f,0x87,0x46,0x9e,0xe2,0x1c,0x7c,0xb8, +0x58,0x5f,0xb4,0xf6,0xc7,0x70,0x63,0x5e,0xa3,0x53,0x76,0x2c, +0x9f,0xf6,0xc8,0xaf,0xd5,0x08,0x76,0xdd,0xae,0x7c,0x0e,0x7f, +0xbf,0x0c,0xe7,0xd1,0x33,0x98,0x8b,0xdc,0xbc,0x1f,0xb9,0xdf, +0xe9,0xe7,0x0c,0x8c,0x47,0x71,0x2f,0x84,0xe9,0xc8,0x3d,0x49, +0xe2,0x16,0xa1,0x1c,0xa1,0x1b,0x5c,0x14,0x2a,0x9c,0xa5,0x83, +0xb8,0x27,0xdd,0xb8,0xc5,0xf4,0x54,0x14,0xb9,0x16,0x47,0xa1, +0x9a,0x40,0x06,0x76,0xe6,0x63,0x23,0xe2,0xa9,0x93,0xf2,0x25, +0x73,0x03,0x4e,0xdf,0x0f,0x03,0x10,0xa5,0x03,0x5c,0xc0,0x0d, +0x6e,0x3a,0xfd,0x2b,0x03,0x55,0xb6,0x45,0x74,0x14,0x93,0xc2, +0x15,0xa5,0x72,0x25,0x68,0x5c,0x77,0x58,0xd2,0x15,0x16,0xd1, +0xb1,0x4c,0x37,0xae,0xa8,0x87,0x50,0xd3,0x07,0x96,0xf4,0x41, +0x35,0x9d,0x18,0xd6,0x58,0xcd,0x5f,0x0d,0xdc,0x3d,0x5f,0x53, +0x3a,0x51,0xf5,0x4a,0x05,0x63,0x61,0x9b,0xf3,0x5c,0x9b,0x9a, +0x48,0x7d,0xf7,0x9e,0x17,0x1b,0x5e,0x33,0xd2,0x1b,0x95,0xb7, +0xde,0xba,0x94,0x3e,0x79,0x23,0x7b,0x5c,0xf7,0xcd,0x6f,0xbf, +0xfc,0xb6,0xa2,0x4e,0x7e,0xfd,0xc3,0x21,0xbd,0x1d,0x5b,0x7f, +0x5b,0x15,0xc9,0xb0,0xad,0x84,0x7c,0x14,0x54,0xdb,0x8c,0x54, +0xb5,0xf2,0x09,0x03,0xbf,0x80,0x43,0x50,0xda,0x03,0xbd,0xb9, +0x21,0xf4,0x4f,0xfc,0x75,0xc0,0x72,0x48,0xab,0x68,0xa9,0x75, +0x9a,0x5e,0x75,0x1a,0x1d,0xe1,0x9e,0xd7,0x2d,0x86,0x81,0xf2, +0xe7,0xb6,0x6f,0xd6,0xab,0xe4,0xee,0x70,0xd8,0xdb,0xc9,0x8a, +0xe3,0xab,0x43,0x61,0x67,0x5d,0x0e,0x2d,0x55,0xa2,0x60,0xfd, +0x8a,0x79,0xc1,0x75,0xa2,0x07,0xae,0x5b,0x3f,0x7a,0xab,0xcf, +0x99,0x9a,0x5e,0x4c,0x47,0xa8,0x2d,0xde,0x5d,0x36,0xdf,0x82, +0x83,0xf5,0xbc,0xb9,0xd5,0x5b,0xef,0x4d,0x50,0x95,0x8c,0x1b, +0x98,0xa7,0x69,0xc9,0x05,0xd2,0xcd,0xa1,0x99,0xed,0xac,0x82, +0x4d,0x5f,0xc9,0xbe,0xff,0x25,0xf0,0xae,0xfc,0x77,0xe8,0xf6, +0xd6,0x4d,0xf1,0x3f,0xec,0xf5,0xf2,0xe7,0x19,0xef,0xdc,0x14, +0x7c,0x78,0x64,0xa4,0x58,0x68,0x98,0x83,0x64,0xae,0x47,0xb3, +0xfe,0xcd,0x58,0x54,0xf0,0x1c,0xaa,0x87,0x57,0xe4,0xd7,0x66, +0xf2,0x06,0x6a,0x5b,0x79,0xcb,0x76,0x06,0x25,0x26,0x3f,0xd6, +0x51,0x3f,0xaa,0xa4,0x9f,0x1d,0x04,0xe4,0x2f,0xfb,0xa8,0xe4, +0xaf,0x60,0x17,0x15,0x5b,0xaf,0x84,0xf9,0xcc,0xeb,0x8b,0xe7, +0x5e,0xfd,0x91,0x70,0xa1,0x99,0x06,0x39,0x4c,0x52,0x24,0x73, +0xb7,0x21,0x59,0x01,0x7b,0x43,0xd9,0x4e,0x15,0xac,0xd6,0xe3, +0xd9,0xd8,0x55,0x38,0x13,0x5d,0x65,0xbb,0x4b,0xc1,0xc5,0x6f, +0x13,0x15,0xdc,0x78,0x64,0xbd,0x7a,0x06,0x25,0xde,0xaf,0x1f, +0xc1,0x6a,0xb4,0xa5,0x3d,0xe6,0xaa,0xa1,0x98,0x7b,0x4d,0x3f, +0x66,0xb8,0xf1,0xc8,0x07,0xa4,0x9a,0x8a,0x84,0x55,0x2a,0xe8, +0x89,0xef,0x97,0xf8,0xe4,0xed,0x47,0x3e,0x79,0x6b,0x14,0x58, +0x2b,0x38,0x04,0x51,0x28,0xfd,0xd7,0xf9,0x4d,0x73,0x4b,0x64, +0x3f,0x95,0xb1,0x93,0x2a,0xaf,0xdb,0x42,0xaf,0x83,0xef,0x1e, +0xc2,0x0b,0x0f,0x29,0x78,0x02,0x8d,0xd5,0xfe,0xfe,0x0a,0xea, +0xa1,0xbe,0xc5,0x2b,0x14,0xac,0xb5,0x2d,0x9a,0x73,0x7a,0x4e, +0xff,0x7b,0x73,0xa8,0x45,0x89,0x1a,0x6b,0xcb,0x51,0xd6,0xbd, +0x4d,0x0c,0xe3,0xfe,0x60,0xc6,0x98,0x52,0xc6,0x27,0xf8,0x70, +0x74,0xf2,0x71,0x28,0xd5,0xc0,0x01,0x61,0xdc,0x00,0x31,0xd7, +0xf1,0x87,0x48,0x18,0x75,0xfe,0xd4,0xbc,0xc5,0xdb,0xd5,0x68, +0xf7,0xfd,0x05,0x09,0x10,0x0d,0x27,0x36,0x44,0x89,0x03,0x0d, +0x43,0x63,0x62,0xb3,0xf7,0x9e,0xad,0x50,0x77,0x19,0x49,0xb7, +0x5b,0x7e,0xa5,0x3b,0x24,0x7c,0xa0,0xe4,0xfe,0x2d,0x28,0xd1, +0xd8,0x16,0x8b,0xd9,0xc4,0xac,0x4d,0xfb,0xd0,0x79,0x7e,0xdb, +0x96,0xed,0x75,0xb5,0x27,0x2c,0x03,0xd7,0xaa,0xcf,0x1c,0xa4, +0xcf,0x67,0x47,0xef,0x6a,0xe9,0xc3,0xc9,0x3b,0x77,0x0f,0xed, +0xbe,0xdf,0x78,0x63,0x02,0x4a,0x25,0x59,0xce,0x6f,0xde,0xa3, +0x00,0xa8,0xf4,0xb9,0x2e,0x0a,0xed,0x73,0x08,0x8a,0x35,0xb5, +0x62,0x28,0x3e,0x79,0xa8,0xbe,0xfe,0xe4,0x20,0x74,0x04,0x41, +0xf1,0x40,0xdc,0x67,0x50,0xa8,0x5a,0x6a,0xab,0x52,0xfe,0xc9, +0x70,0x9b,0x6c,0xcd,0xe0,0x22,0x78,0x9c,0x6e,0xce,0x70,0xd9, +0xdc,0xcc,0x96,0x9c,0x33,0x3d,0xc5,0x26,0x16,0xb2,0x8a,0x31, +0xcc,0xaf,0x28,0x92,0xb0,0xbc,0x35,0x7b,0x30,0xb7,0x7f,0x80, +0x5d,0xb8,0x6f,0xe8,0x97,0x0c,0x97,0x05,0x2f,0xc1,0x14,0x38, +0x8c,0x6e,0xc3,0x70,0x2d,0xb8,0x80,0x8e,0x41,0xf4,0x64,0x9b, +0x09,0x59,0x04,0x9d,0x7d,0x0e,0x30,0xc2,0xb9,0xc2,0x13,0x7a, +0xe2,0x73,0x45,0x26,0xfb,0xab,0x4a,0x0a,0x57,0xc2,0xfb,0x8a, +0x37,0x2a,0x16,0xe5,0x97,0xdb,0x34,0x8b,0xc5,0xeb,0x2a,0x57, +0x14,0xcc,0x56,0x2f,0x38,0xb4,0x7a,0xdb,0xee,0xbd,0x0e,0x5d, +0x99,0xe4,0x01,0xa6,0xe8,0xbe,0xde,0x63,0xd0,0x21,0x14,0xe5, +0x9a,0x2c,0xc3,0xb9,0x7f,0x1f,0x81,0x92,0xe5,0xeb,0xa2,0x98, +0xa1,0xbb,0xaf,0x68,0x0e,0x8a,0xcf,0xef,0xdb,0x71,0xf3,0xd6, +0x1e,0x63,0x9c,0x3a,0x47,0x1c,0x37,0x2c,0x5d,0xa7,0x96,0xa2, +0x93,0x13,0x97,0x71,0xe4,0x70,0xf0,0xc3,0xfe,0x7b,0xa7,0xcf, +0x7c,0x39,0x89,0xb6,0x8d,0xbb,0xda,0x30,0x8e,0x69,0x33,0xe9, +0xeb,0x99,0x47,0xf7,0x3e,0x7a,0x38,0xe0,0x30,0x2d,0xad,0xe7, +0x06,0x29,0xee,0xc2,0x1d,0xb3,0x98,0xee,0x9b,0x8e,0xa0,0x03, +0x05,0x54,0xdc,0x7b,0x0d,0x23,0x60,0x44,0x87,0xd7,0x9c,0x22, +0x36,0xd5,0xdc,0xad,0x40,0x33,0x99,0x85,0x11,0x4a,0xf8,0xb7, +0xd8,0x82,0x7c,0xe1,0xb8,0x72,0x97,0x4a,0x9c,0x33,0xb6,0xd2, +0xa4,0x1e,0xa8,0xaf,0xe7,0xde,0x31,0xfd,0x37,0xe6,0x9c,0x44, +0x39,0x9a,0xa7,0x25,0xf1,0x62,0x53,0x1f,0xce,0x35,0x5c,0xcb, +0x85,0x71,0x61,0x0f,0xb4,0x68,0x6b,0x26,0xce,0x5c,0x81,0x8a, +0x75,0x68,0xcf,0x5f,0xda,0x82,0x66,0x6f,0x9c,0x3a,0x9c,0x02, +0x67,0x84,0x8a,0x51,0xfc,0x9f,0x4a,0xa7,0xc1,0xde,0x31,0x62, +0xe8,0x24,0xe2,0xbc,0x19,0xb4,0x77,0xf4,0x41,0xa1,0x97,0x85, +0xf1,0xdc,0x71,0x28,0x52,0xb1,0x8f,0x70,0x2e,0x8e,0xce,0x5e, +0xcf,0xea,0xd0,0x79,0x09,0x65,0xe3,0xf0,0xd9,0x3b,0x11,0xf2, +0x8b,0x86,0x59,0x8c,0xd4,0xa6,0x87,0x5a,0x45,0x6a,0x7e,0xaa, +0x25,0xd2,0x27,0xdc,0xb0,0xf1,0x38,0xb2,0xeb,0xf1,0x1d,0xeb, +0x6f,0xa8,0xa1,0xf4,0x0a,0x27,0x45,0x24,0xaa,0xa0,0x37,0x94, +0xa8,0x58,0x91,0xfc,0x25,0x64,0x55,0xac,0x22,0x25,0xcd,0x12, +0xa8,0x8e,0x66,0x3a,0x98,0x77,0x1c,0xd8,0xbc,0x64,0xd5,0x96, +0x25,0x1a,0x18,0xc5,0xdc,0x5d,0x57,0x90,0x8e,0xd2,0xe0,0x6e, +0x70,0x26,0x8a,0x5f,0x5c,0x13,0xae,0x0f,0x7f,0x57,0xe8,0x81, +0x58,0xf8,0x92,0x81,0xdd,0xb9,0x79,0xec,0xa9,0x09,0x0b,0x47, +0x8f,0xf4,0x2e,0x29,0x1b,0x57,0x98,0x5f,0xba,0x68,0x49,0xa5, +0xda,0x98,0x4e,0x97,0x2d,0xde,0x54,0xfc,0x2d,0xda,0x26,0x17, +0x29,0x6d,0x65,0x68,0x59,0x74,0x66,0x1a,0xca,0xf8,0xeb,0x47, +0x78,0x45,0xf1,0xfb,0xe9,0x1a,0xe8,0xae,0x61,0x15,0x1b,0x3f, +0xa6,0xfb,0x79,0x79,0x1f,0xd3,0xfd,0x8d,0xc8,0x36,0x77,0x1b, +0x9c,0xa0,0xbb,0x4a,0x81,0xd6,0x64,0x1b,0x88,0x9e,0xa2,0x6f, +0xb9,0x3e,0x5c,0x07,0xba,0x8b,0x18,0xf2,0x80,0x1d,0x6c,0x5d, +0xbe,0x45,0x33,0x4f,0xbc,0x65,0xd5,0xf2,0x83,0x07,0x57,0x95, +0x0d,0x57,0x8f,0x17,0x0f,0xb7,0x96,0x0d,0x56,0xb3,0xbc,0xa6, +0x3f,0x5e,0x20,0xf0,0xeb,0xcd,0xb1,0xbe,0x1e,0x3a,0x42,0xd0, +0xa9,0xae,0x45,0xcf,0x41,0xb9,0x89,0x23,0x34,0x93,0x61,0x09, +0xab,0xd8,0xb7,0x91,0xbf,0xb4,0x1c,0xbe,0x9b,0x2e,0x2f,0x2b, +0x1f,0x57,0xe2,0x33,0x72,0xcc,0x9c,0x45,0x85,0x1a,0x76,0xb3, +0x6a,0xe1,0x39,0x94,0xd1,0xb6,0x41,0xde,0x7b,0x2f,0x92,0xbf, +0x4a,0x60,0x50,0xa2,0xd2,0x21,0x12,0xf9,0xb0,0x54,0xb1,0xba, +0x2f,0xec,0x03,0x3b,0xd0,0xdf,0x8b,0x39,0x04,0x8a,0xfa,0x42, +0x15,0xd7,0x86,0x66,0xf1,0x92,0x3b,0xc7,0xbd,0xd9,0xa3,0x82, +0x6f,0x18,0xf6,0x68,0x6b,0x78,0xc3,0x4f,0xfc,0x45,0xf3,0xed, +0x59,0x4f,0x9f,0xd0,0xb3,0xb9,0x6a,0x0e,0xf4,0x67,0x58,0x3e, +0x94,0x34,0xd9,0xa9,0x42,0xc7,0x94,0x93,0xff,0x72,0xd7,0x7c, +0xf6,0xe0,0xc6,0x65,0xd5,0x0b,0xd5,0x19,0xbb,0xe8,0xd1,0x95, +0xe5,0xe3,0xcb,0x7c,0x46,0x56,0xcc,0x5d,0xc9,0xc2,0xad,0x88, +0x69,0xff,0xe7,0xf7,0xa1,0xcb,0xeb,0xae,0x47,0x22,0xe6,0x6b, +0xaa,0xd0,0x21,0x40,0xab,0x9a,0x7f,0x94,0x35,0x72,0x9d,0x5e, +0x7d,0xfb,0x31,0x6f,0xbf,0xf2,0x47,0xed,0x5d,0x16,0xae,0xa8, +0x0e,0x57,0xc9,0xea,0xef,0xc2,0x0a,0xfe,0x3f,0x0b,0xfd,0x60, +0x0b,0x15,0x6b,0x55,0x5d,0xbd,0x20,0xdb,0x5f,0x67,0x81,0xa7, +0xd9,0xa3,0x2a,0xd8,0xfe,0x1a,0x75,0xf6,0xed,0x74,0x45,0x8f, +0x17,0x88,0x91,0x0c,0x98,0x31,0xf0,0x48,0x48,0xb0,0xa1,0xff, +0x94,0xe9,0xb3,0x5f,0xd2,0x2c,0x72,0xdc,0xe3,0xcc,0xd3,0x93, +0x17,0x60,0x13,0x0d,0x64,0xc4,0xd0,0x9b,0xfd,0xee,0xf8,0xda, +0xd3,0xfb,0xf2,0x57,0x65,0x56,0x8e,0x99,0x3a,0xb9,0x42,0x33, +0x65,0x26,0x0b,0x25,0xb7,0x6f,0xbe,0xde,0x8b,0x32,0xed,0xb5, +0x9a,0xbb,0x17,0xb9,0x10,0x86,0x2d,0x81,0x3e,0x87,0x61,0xf3, +0xc3,0x60,0xc7,0x45,0xd8,0xee,0x12,0x05,0xaf,0xb3,0x62,0x48, +0x6c,0xfe,0xee,0xc6,0x76,0xf5,0x90,0x53,0x74,0xfb,0xa1,0xa9, +0xed,0x59,0x98,0x72,0x91,0x4b,0x81,0x56,0x3d,0x67,0xe5,0x52, +0xba,0xc3,0x14,0x36,0xb2,0x21,0x99,0x4b,0xb5,0x25,0x7f,0x00, +0x2c,0xa4,0x6a,0x3a,0x31,0x5d,0xb2,0x06,0xc4,0x6a,0x9a,0x85, +0xe9,0xeb,0x50,0x5e,0x70,0x32,0xd1,0x5f,0x33,0x96,0xdb,0x39, +0x47,0xfc,0xf4,0xdc,0xe5,0x47,0x68,0x29,0xb8,0x27,0xd7,0xb4, +0x68,0x91,0xac,0xe7,0xdc,0x39,0xf7,0xd3,0xfa,0xdf,0x59,0xeb, +0xea,0x8d,0xf4,0xa6,0x5d,0xcb,0xb6,0x6d,0xf0,0xde,0x58,0xb6, +0xa6,0x9f,0x9a,0x35,0x07,0xa8,0xdb,0x89,0x3b,0x55,0xa4,0x8f, +0x2c,0x56,0x87,0x30,0x52,0x74,0x2e,0x3d,0xb9,0x4c,0x33,0x64, +0x65,0x09,0x0b,0x87,0xc3,0x90,0xab,0x70,0xe2,0x55,0xd9,0xc9, +0xb7,0x03,0xe4,0xd5,0x2c,0xb3,0x78,0xeb,0xa9,0x79,0x97,0x7d, +0x20,0x7d,0x3a,0x8d,0x93,0x22,0x27,0xc3,0xe4,0xf9,0xc9,0xf8, +0x33,0xd9,0xae,0xca,0x1a,0xd8,0xf5,0x2c,0x0c,0xbb,0x02,0xd6, +0x5c,0x3f,0x5d,0xc7,0x8a,0x67,0xb7,0x15,0xee,0x78,0x1e,0x0e, +0x1c,0x48,0x4b,0xb9,0x03,0x9c,0xfa,0x6f,0x25,0x80,0x2e,0x57, +0x29,0xc4,0xfe,0xd1,0x71,0xa5,0xf0,0x0f,0x74,0xc8,0x0b,0xbf, +0x90,0x62,0x3b,0x8a,0x8e,0x7c,0x9b,0x8f,0x81,0xfd,0x57,0xa0, +0xff,0x15,0x0a,0xf6,0x66,0x1f,0xa3,0x28,0xda,0xe0,0x2f,0xe6, +0x86,0x9e,0x6f,0x07,0x13,0x59,0x7c,0x05,0xf4,0x4e,0xc4,0x5e, +0x2e,0xba,0x2c,0x83,0x2d,0xe0,0x39,0x74,0xe4,0x7a,0xcf,0xc2, +0x6f,0x51,0x92,0xe2,0x51,0xbb,0x43,0xb8,0xe3,0xc6,0xfb,0x30, +0x78,0x5c,0x07,0x1f,0xd5,0xb1,0xa5,0x00,0xa6,0xa3,0xbd,0x24, +0x9d,0x8f,0x1e,0x2c,0xf3,0x72,0xf6,0xf4,0x29,0xfd,0x0d,0xc1, +0x21,0x47,0x06,0xb2,0x62,0xce,0xab,0x3b,0x1d,0x27,0x86,0x5e, +0x17,0x69,0x56,0x53,0xfe,0x25,0x1d,0x65,0x43,0x96,0xa3,0xc5, +0xec,0x91,0xbc,0x6d,0x7d,0xd4,0x7d,0xf5,0xdf,0x35,0x24,0x33, +0x2c,0x97,0xbd,0x4f,0x11,0xd0,0xfb,0x22,0x7f,0x96,0x64,0x07, +0x55,0x0e,0xcf,0x1b,0xe8,0x9d,0x78,0x6c,0xf0,0x73,0x35,0x2b, +0xdb,0x77,0x6b,0x50,0x5d,0x97,0x6b,0x2c,0x3f,0x1d,0x8a,0x02, +0xac,0x70,0xc4,0xdc,0x4a,0xb3,0x14,0x8a,0xa9,0xb6,0x64,0x38, +0xb9,0x21,0x99,0x15,0x1f,0xdc,0xb8,0xea,0xe0,0xc1,0x8d,0x56, +0x7e,0xa9,0x3c,0xe7,0xb4,0xc2,0xcd,0x94,0x13,0xca,0x5a,0x01, +0xd4,0xc0,0x5b,0x14,0x9c,0xc9,0xb6,0xab,0xbc,0x0e,0x3b,0x5e, +0x81,0x61,0xd7,0x01,0x0b,0x53,0x01,0x4c,0x82,0x81,0x14,0x3c, +0xc8,0xbe,0x9d,0xfb,0x06,0x70,0xad,0x51,0xf6,0x40,0xb1,0x58, +0xe3,0xc3,0xe9,0xfc,0x91,0x6c,0x0d,0xcc,0x2d,0xe5,0xaf,0xa7, +0x16,0xdc,0x45,0x53,0x9e,0x2b,0xe5,0x03,0xcf,0x9b,0x3a,0x16, +0x2e,0xc0,0xfa,0x0d,0xb9,0xc6,0xa6,0xcf,0x5f,0x6d,0x39,0xee, +0x33,0x9b,0x91,0x92,0x84,0x8e,0x20,0xc0,0x64,0x82,0x20,0x62, +0x08,0x1a,0x4c,0x21,0x00,0x91,0x40,0xc8,0x08,0x5f,0xc2,0x8b, +0x70,0x43,0xf5,0x5f,0xa3,0xb2,0x8c,0x70,0x00,0xd3,0x09,0x96, +0x10,0xa3,0x3e,0x4d,0x85,0x5f,0x24,0x24,0xc0,0x22,0x82,0x24, +0x2c,0x08,0x9f,0x8a,0xf0,0x6f,0x10,0x8c,0x42,0x8f,0x0b,0x7a, +0xf8,0x5f,0x75,0xf1,0x11,0x7e,0xc1,0x90,0xff,0xdd,0x1f,0x02, +0x2c,0x45,0x30,0xc7,0xfe,0x4d,0xe9,0x68,0xe1,0x97,0x10,0x09, +0xc2,0x84,0x9e,0x52,0xf4,0x14,0x23,0xda,0xb9,0xe8,0xe1,0x7f, +0xc5,0xa4,0x8c,0xff,0x5d,0x4b,0xe1,0x17,0x17,0x09,0x62,0x94, +0xf0,0x0b,0x3a,0xfc,0x37,0xea,0x81,0xf0,0xbd,0x6a,0xfe,0x57, +0x54,0x06,0xa1,0x67,0x08,0x7a,0x5c,0xd1,0xd3,0x09,0x3d,0x19, +0x88,0xf6,0x32,0xe1,0x17,0x17,0x09,0xa2,0x1c,0x3d,0x83,0xd1, +0x53,0x8d,0x9e,0x2c,0xf4,0xf0,0xbf,0x45,0xb4,0x09,0x3d,0x6b, +0xd1,0xc3,0x7f,0x4b,0x7b,0x1a,0x7a,0x66,0xa1,0x67,0x25,0x1a, +0xb3,0x5c,0x78,0xd7,0x95,0x20,0x0a,0xf8,0x2f,0x67,0x23,0xd8, +0x05,0x3d,0x43,0x85,0x5f,0x5f,0x24,0x88,0x75,0xe8,0xe1,0xf9, +0xdd,0x80,0x1e,0xfe,0xd7,0x22,0xd5,0xa8,0x7f,0x35,0xea,0xa7, +0x42,0xb8,0x06,0xe1,0xab,0x10,0x77,0x85,0x08,0xf2,0x74,0xad, +0x08,0xae,0x43,0x6d,0x0b,0x11,0xdc,0x80,0xb8,0xc8,0x46,0x75, +0x06,0x84,0x6f,0x47,0xd0,0x88,0x9e,0x74,0xe1,0x97,0x21,0x09, +0x22,0x53,0xf8,0x0d,0x4d,0x19,0x91,0x87,0xfa,0x9e,0x43,0xf8, +0x29,0x04,0xcf,0x13,0x00,0x9c,0x41,0x6d,0x17,0x51,0xf9,0x3b, +0x44,0xf3,0x12,0x82,0xe7,0x51,0xf9,0x32,0x82,0x17,0x90,0xe4, +0x55,0x08,0xfe,0x8c,0xea,0xaf,0x20,0xf8,0x2b,0xd2,0xdc,0x7a, +0xd4,0x76,0x15,0xe1,0xfc,0xaf,0x55,0x5e,0x43,0x63,0x5f,0x23, +0x78,0x1d,0x95,0xff,0x22,0xe4,0xfc,0xef,0xea,0x10,0x37,0x90, +0xda,0xf8,0x5f,0x7c,0xbc,0x49,0x00,0x92,0x97,0xe3,0x16,0x2a, +0xf3,0xdf,0xe3,0x9f,0x83,0x60,0x13,0x44,0xe7,0x7b,0x04,0x35, +0xa8,0xfd,0x36,0x82,0x4d,0x11,0xbc,0x83,0xfa,0x35,0x43,0xfd, +0xee,0xa2,0x72,0x73,0xd4,0x3e,0x17,0xc1,0x96,0xa8,0x7c,0x0f, +0xc1,0x56,0x84,0x84,0x98,0x87,0x60,0x10,0x9a,0xf7,0x3e,0x82, +0x61,0x08,0xce,0x47,0x30,0x12,0x69,0x6b,0x15,0xea,0xf3,0x00, +0xe1,0x51,0x88,0x46,0x1d,0xa2,0xa1,0xe3,0x7f,0x64,0x07,0x95, +0x63,0x10,0x1f,0x8f,0x10,0x4c,0x43,0xe5,0xc7,0x08,0xf6,0x43, +0x7d,0x9f,0x20,0xc8,0xdb,0x64,0x33,0x82,0x43,0x50,0xff,0x2d, +0xa8,0x3f,0x6f,0xdf,0x6d,0xa8,0x6c,0x40,0x73,0x22,0x3d,0x91, +0x48,0x37,0xc4,0x0e,0x04,0x8d,0xc8,0xd2,0x5f,0x23,0x68,0x41, +0xf5,0x3b,0x11,0x2c,0x44,0x73,0x2e,0x41,0x6d,0xbb,0x10,0x5e, +0x82,0xc6,0xee,0x46,0x63,0xcb,0x10,0xdc,0x8b,0xca,0xe5,0xc8, +0xcb,0xf6,0xf1,0xbf,0x09,0x8a,0xca,0xfb,0x51,0xfd,0x74,0x04, +0x0f,0xa2,0xf2,0x4c,0x64,0xc1,0xe9,0x08,0x7e,0x83,0x68,0x1c, +0x42,0x70,0x39,0x1a,0x7f,0x18,0xc1,0x15,0xa8,0xfd,0x08,0xea, +0x87,0x6c,0x4f,0x1c,0x43,0x65,0xde,0x86,0x33,0x10,0xe4,0x6d, +0x78,0x1c,0xc1,0x75,0x48,0xde,0x99,0x08,0xee,0x44,0x73,0x9e, +0x40,0x70,0x2f,0xf2,0x72,0xde,0xaf,0xbe,0x45,0xf8,0x51,0x34, +0xf6,0x24,0x1a,0x8b,0xfa,0x11,0xa7,0x51,0xf9,0x04,0x92,0x13, +0xd9,0x8d,0x44,0x7a,0x26,0xbe,0x43,0x90,0xff,0xa5,0xc9,0xb3, +0x08,0xfe,0x80,0xda,0x17,0x21,0x78,0x17,0xb4,0x21,0x16,0x20, +0x7c,0x0d,0x7a,0x36,0x12,0x84,0x88,0x41,0xbc,0xa2,0xb5,0x21, +0x52,0xa2,0xfe,0x3c,0x3f,0xab,0x11,0xee,0x49,0xb4,0x24,0x2a, +0x11,0xe4,0xd7,0xcb,0x58,0xf4,0x8c,0x47,0x6d,0x5f,0x21,0x38, +0x06,0x3d,0xa3,0xd1,0x53,0x81,0x9e,0x29,0xe8,0x19,0x87,0xfa, +0xf0,0xeb,0x65,0x22,0x82,0x3a,0xc4,0xf3,0x24,0x84,0xa3,0x35, +0x2a,0xd2,0xa3,0xd5,0xc0,0xff,0x8a,0xea,0x44,0x42,0x49,0xbd, +0xe5,0x3f,0x42,0xd0,0x1c,0x2d,0x87,0x2e,0xc8,0xd4,0x4b,0x11, +0x8b,0xd7,0x88,0x7a,0x90,0x00,0xba,0x83,0x79,0x60,0x01,0x58, +0x04,0x96,0x80,0xf5,0xe0,0x00,0x09,0x48,0x77,0x52,0x4b,0xfa, +0x92,0x5d,0xc9,0xde,0xe4,0x60,0xb2,0x94,0x1c,0x4f,0xee,0x20, +0x1b,0xc8,0x7f,0x84,0x1f,0x2f,0x6a,0x42,0xa9,0xa9,0xb6,0x94, +0x9e,0x4a,0xa4,0xcc,0xd4,0x7e,0xea,0x20,0xff,0x63,0x16,0xd4, +0x71,0xea,0x16,0x75,0x9b,0xba,0x4f,0xfd,0x44,0xfd,0x2c,0xea, +0x21,0x1a,0x20,0xca,0x12,0xe5,0x88,0x2c,0xa2,0xe5,0xa2,0x5f, +0x44,0xbf,0x89,0xfe,0xa6,0x1d,0x68,0x4f,0x3a,0x81,0x9e,0x4e, +0xef,0x65,0x08,0x26,0x8f,0x59,0x8e,0xb2,0xec,0x04,0xb1,0x59, +0xfc,0xca,0xa1,0x87,0xc3,0x70,0x87,0xeb,0x8e,0x12,0xc7,0x40, +0xc7,0x52,0xc7,0xe7,0x92,0x26,0x92,0x12,0xc9,0x39,0xc9,0xaf, +0xac,0x95,0xbd,0xea,0x94,0xe7,0xdc,0xc4,0x59,0xed,0xac,0x75, +0xf6,0x75,0x6e,0xee,0xdc,0xc2,0x39,0xd2,0xb9,0x97,0x73,0xa6, +0xb3,0xd5,0xf9,0x1b,0xe7,0xad,0xce,0xc7,0x9c,0x4f,0x38,0x9f, +0x74,0xfe,0xde,0xf9,0x6f,0xa9,0x8b,0xb4,0xa9,0x34,0x5a,0x9a, +0x2a,0xcd,0x96,0x8e,0x92,0x4e,0x95,0x2e,0x90,0x6e,0x97,0x9e, +0x95,0xbe,0x72,0x51,0xb9,0x58,0x5c,0x4e,0xb8,0x40,0x57,0x7f, +0xd7,0xae,0xae,0x69,0xae,0x4b,0x5c,0x6f,0xb8,0xfe,0xea,0x26, +0x71,0x73,0x72,0x93,0xba,0xf9,0xb9,0xa5,0xbb,0x59,0xdc,0xbe, +0x92,0x75,0x96,0x99,0xe5,0x62,0xf9,0x24,0x79,0x8d,0x7b,0x27, +0xf7,0xb1,0xee,0x07,0xdd,0xcf,0xba,0x3f,0x57,0x68,0x15,0x81, +0x8a,0xbe,0x8a,0xdd,0x8a,0xbb,0x8a,0x5f,0x94,0x2e,0xca,0x66, +0xca,0x64,0xe5,0x24,0xe5,0x2d,0xe5,0xaf,0x1e,0x51,0x1e,0x25, +0x1e,0x4b,0x3c,0x4e,0x78,0xfc,0xee,0xa9,0xf5,0xf4,0xf5,0x6c, +0xee,0x19,0xea,0x39,0xc4,0xb3,0xd0,0x73,0x8b,0xe7,0x69,0x4f, +0xe8,0xd5,0xd4,0x6b,0x85,0xd7,0x7b,0xef,0x11,0xde,0x7f,0xfb, +0x0c,0xf2,0xa9,0x6d,0x12,0xd6,0x64,0x4e,0x93,0x27,0xaa,0x6e, +0xaa,0x5a,0xb5,0x56,0xbd,0x56,0x13,0xa3,0x39,0xac,0x75,0xd5, +0xee,0x6c,0x9a,0xdc,0x74,0x95,0xaf,0xb3,0x6f,0x4f,0xdf,0x09, +0xbe,0x6f,0x9a,0x95,0x37,0xfb,0xbb,0x79,0x7e,0xf3,0x85,0xcd, +0x9f,0x7d,0x11,0xf5,0xc5,0xdc,0x16,0x6c,0x8b,0x0e,0x2d,0x06, +0xb4,0xc8,0x6f,0x31,0xaa,0xc5,0xcc,0x16,0x2b,0x5b,0x5c,0x68, +0xf1,0x4b,0x4b,0xa2,0xa5,0xbc,0x65,0xa7,0x96,0x33,0x5b,0x1e, +0x6c,0xf9,0x7b,0x2b,0xdf,0x56,0x6d,0x5b,0x0d,0x68,0x95,0xde, +0x6a,0x51,0xab,0x53,0xad,0x6e,0xb7,0x76,0x69,0x1d,0xda,0x7a, +0x40,0xeb,0x09,0xad,0x17,0xb6,0x5e,0xd3,0x7a,0x7f,0xeb,0x0b, +0xad,0x5f,0xb5,0x91,0xb7,0x69,0xd1,0x26,0xa2,0x4d,0xcf,0x36, +0x53,0xda,0xec,0x68,0xf3,0xa4,0xad,0xa2,0xad,0xba,0x6d,0x70, +0xdb,0x8e,0x6d,0x0b,0xda,0x2e,0x6e,0xbb,0xad,0xed,0xe5,0xb6, +0xaf,0xda,0xb9,0xb6,0x0b,0x6b,0x17,0xd1,0x2e,0xb5,0xdd,0xf0, +0x76,0x63,0xda,0xed,0x6f,0x77,0xa1,0x5d,0xdd,0x97,0xae,0x5f, +0x46,0x7d,0x79,0xe0,0xcb,0x4b,0x5f,0x3e,0xf0,0x63,0xfc,0xfc, +0xfc,0xe2,0xfc,0x52,0xfd,0x2c,0x7e,0xe3,0xfd,0xe6,0xfb,0x6d, +0x6a,0xdf,0xa4,0x7d,0x50,0xfb,0xae,0xed,0x27,0xb4,0x5f,0xde, +0x7e,0x5f,0xfb,0x2b,0xed,0xaf,0xb5,0x7f,0xd6,0x9e,0xf3,0x77, +0xf3,0x6f,0xe6,0x1f,0xe2,0xdf,0xd5,0xbf,0xbf,0x7f,0xae,0x7f, +0x9e,0xff,0x22,0xff,0x0d,0xfe,0x07,0xfd,0x2f,0xf8,0xdf,0xf3, +0xff,0x35,0x80,0x0a,0x68,0x19,0x10,0x1a,0xd0,0x3d,0x60,0x70, +0xc0,0x8c,0x80,0xad,0x01,0x3f,0x04,0x2a,0x03,0x5b,0x07,0x76, +0x0e,0x4c,0x0e,0xb4,0x04,0x7e,0x13,0x78,0x28,0xf0,0x7a,0xe0, +0xcf,0x41,0x4c,0x50,0x87,0xa0,0xfe,0x41,0x65,0x41,0xf3,0x83, +0xf6,0x04,0xd5,0x05,0x7b,0x07,0xfb,0x05,0x47,0x05,0xa7,0x04, +0x67,0x05,0x57,0x04,0x2f,0x08,0xde,0x18,0x7c,0x24,0xf8,0x6a, +0xf0,0xe3,0x90,0xc4,0x90,0xef,0x42,0x5e,0x84,0x8a,0x43,0xa3, +0x43,0x4d,0xa1,0xb3,0x43,0x0f,0x86,0x3e,0x0b,0x6d,0x08,0x6b, +0x16,0xd6,0x39,0x2c,0x35,0x2c,0x3f,0xec,0x5e,0xd8,0x9f,0xe1, +0x6c,0x78,0xf3,0xf0,0x4e,0xe1,0xf1,0xe1,0xd7,0xc2,0x7f,0x08, +0x7f,0x1d,0xc1,0x46,0xcc,0x89,0x78,0xd5,0xa1,0x75,0x07,0x7d, +0x87,0xa1,0x1d,0xa6,0x76,0x38,0xd4,0xe1,0x69,0x07,0x5b,0x24, +0x1b,0xa9,0x89,0xec,0x12,0xd9,0x27,0x32,0x3d,0xb2,0x24,0x72, +0x7d,0xe4,0x91,0xc8,0x9f,0x3b,0xba,0x74,0x8c,0xea,0x98,0xda, +0xb1,0xb4,0xe3,0xf4,0x8e,0x5b,0x3a,0x5e,0xec,0xf8,0x6b,0x27, +0xcf,0x4e,0xcd,0x3b,0x05,0x74,0x4a,0xed,0x94,0xdd,0xa9,0xa2, +0xd3,0xdc,0x4e,0xab,0x3b,0xed,0xef,0x74,0xa9,0xd3,0x95,0x4e, +0x3f,0x75,0x7a,0xd7,0x59,0xd1,0xb9,0x5d,0x67,0x7d,0xe7,0x21, +0x9d,0x8b,0x3b,0x57,0x75,0x5e,0xd9,0x79,0x77,0xe7,0x33,0x9d, +0xef,0x75,0xfe,0xb3,0x0b,0xdd,0xc5,0xbb,0x4b,0x60,0x17,0x43, +0x17,0x73,0x97,0x09,0x5d,0x96,0x74,0x59,0xdd,0xe5,0x6c,0x97, +0xab,0x5d,0x7e,0x8b,0xf2,0x89,0xf2,0x8b,0x4a,0x89,0xca,0x8a, +0xfa,0x2a,0x6a,0x79,0x54,0x75,0xd4,0xc1,0xa8,0xda,0xa8,0xc7, +0xd1,0xad,0xa2,0x43,0xa3,0x7b,0x47,0x8f,0x8f,0x9e,0x18,0xfd, +0x55,0xf4,0xc2,0xe8,0x8d,0xd1,0x47,0xa2,0x2f,0x47,0x3f,0x89, +0xe6,0x74,0x72,0x9d,0x42,0xd7,0x4e,0xa7,0xd3,0x8d,0xd0,0x4d, +0xd6,0x2d,0xd1,0x9d,0xd0,0x7d,0xaf,0x7b,0x11,0x03,0x62,0xa8, +0x18,0xf7,0x98,0x56,0x31,0xe3,0x63,0x16,0xc4,0xd4,0xc6,0xbc, +0x89,0x15,0xc7,0x7a,0xc5,0xb6,0x8b,0xed,0x18,0x9b,0x1c,0x6b, +0x8c,0x1d,0x17,0x3b,0x37,0x76,0x63,0xec,0x09,0x3d,0xa1,0xd7, +0xe8,0x03,0xf4,0x43,0xf5,0xc5,0xfa,0x69,0xfa,0xb5,0xfa,0xf3, +0xfa,0x47,0x7a,0x2e,0x4e,0x19,0x17,0x1f,0x97,0x1e,0x37,0x3a, +0x6e,0x71,0xdc,0xae,0xb8,0x17,0x71,0x6f,0xe3,0xd9,0x78,0x75, +0x7c,0x40,0x7c,0x42,0x7c,0x46,0xfc,0x88,0xf8,0x49,0xf1,0x8b, +0xe2,0x37,0xc7,0xef,0x8f,0xbf,0x10,0xff,0xb0,0x2b,0xd9,0xd5, +0xab,0x6b,0x7c,0xd7,0xc1,0x5d,0x8b,0xba,0xae,0xeb,0x7a,0xa8, +0xeb,0xa3,0xae,0x7f,0x25,0x38,0x26,0x34,0x4d,0x18,0x9f,0xb0, +0x34,0x61,0x4f,0xc2,0xe5,0x84,0x1f,0x13,0x7e,0xef,0x96,0xd5, +0xad,0xa0,0xdb,0xb4,0x6e,0x2f,0xbb,0xbb,0x77,0xef,0xd2,0x7d, +0x70,0xf7,0x71,0xdd,0xcf,0x75,0xff,0xbe,0x87,0x47,0x8f,0x2e, +0x3d,0x52,0x7a,0xe4,0xf6,0x18,0xd9,0x63,0x72,0x8f,0x5d,0x3d, +0xbe,0xeb,0x71,0xa7,0x67,0x87,0x9e,0x7d,0x7a,0x96,0xf5,0x1c, +0xd7,0x73,0x61,0xcf,0xf5,0x3d,0x8f,0xf4,0xfc,0x35,0xb1,0x45, +0xa2,0x3e,0x31,0x39,0x31,0x37,0xb1,0x3a,0x71,0x77,0xe2,0xb9, +0xc4,0x27,0x89,0x6f,0x93,0x9c,0x92,0xd4,0x49,0xe1,0x49,0x1d, +0x92,0x7a,0x26,0x65,0x26,0x4d,0x4a,0xaa,0x4e,0x3a,0x9a,0xf4, +0x43,0x2f,0x55,0x2f,0x4d,0xaf,0xb8,0x5e,0x15,0xbd,0xc6,0xf6, +0x5a,0xd6,0xeb,0x62,0xef,0xf8,0xde,0x23,0x7b,0x3f,0x48,0x16, +0x25,0xa7,0x27,0x4f,0x4e,0x7e,0x98,0xfc,0x3e,0x25,0x38,0xa5, +0x38,0xe5,0x50,0xca,0xe3,0x3e,0x03,0xfa,0x64,0xf5,0xa9,0xea, +0xf3,0xb0,0x6f,0x40,0xdf,0xca,0xbe,0x2b,0xfb,0xde,0x4a,0x0d, +0x4f,0x9d,0x9a,0x7a,0x3b,0xf5,0x97,0x54,0x98,0xfa,0x36,0x95, +0x4b,0x7d,0x97,0xc6,0xa4,0xb9,0xa7,0x29,0xd3,0x82,0xd2,0x42, +0xd2,0xc2,0xd2,0x22,0xd2,0x22,0xd3,0xa2,0xd2,0x72,0xd2,0xac, +0x69,0xa5,0x69,0x23,0xd3,0xd6,0xa7,0x6d,0x4c,0xdb,0xd3,0xaf, +0x55,0xbf,0x36,0xfd,0x46,0xf4,0x2b,0xea,0xb7,0xb4,0xdf,0x0f, +0xfd,0x9d,0xfb,0x77,0xee,0x9f,0xd6,0xdf,0xda,0x7f,0x79,0xff, +0x5d,0xfd,0xaf,0xf6,0x7f,0x39,0xc0,0x7b,0x40,0xe4,0x80,0xfe, +0x03,0x4a,0x07,0x2c,0x1d,0x70,0x70,0xc0,0xd5,0x81,0xea,0x81, +0xfd,0x07,0x0e,0x1c,0x78,0x78,0xe0,0xcd,0x81,0xb7,0x06,0x75, +0x1a,0xb4,0x72,0x70,0x93,0xc1,0x01,0x83,0xe7,0x0d,0xbe,0x3e, +0xf8,0xe6,0xe0,0xfa,0x21,0x43,0x87,0x5c,0x1b,0xea,0x32,0xb4, +0x62,0xe8,0xb4,0xa1,0x0b,0x86,0x7e,0x3f,0xf4,0xc5,0xd0,0x3f, +0x87,0x85,0x0e,0xeb,0x37,0x6c,0xdc,0xb0,0x83,0xc3,0x6e,0x0f, +0x7b,0x32,0xcc,0x66,0x60,0x0d,0xce,0x06,0x0f,0x43,0x80,0xa1, +0xd2,0x30,0x35,0xbd,0x69,0xfa,0xf4,0xf4,0x99,0xe9,0xdb,0xd2, +0x7f,0xc9,0x20,0x32,0x54,0x19,0xfd,0x33,0x46,0x67,0x1c,0xcb, +0x78,0x91,0xe9,0x90,0xa9,0xce,0xec,0x98,0x99,0x9a,0xb9,0x22, +0xf3,0x89,0xb1,0xb9,0x31,0xcd,0x38,0xd9,0x38,0xdb,0xb8,0xd5, +0xb8,0xdd,0xb8,0xd3,0x68,0xcb,0x8a,0xcc,0x8a,0xcd,0x2a,0xcd, +0x3a,0x97,0xf5,0x34,0xeb,0x45,0xd6,0x3f,0xd9,0xb1,0xd9,0x5f, +0x65,0x1f,0xcb,0x3e,0x91,0x7d,0x32,0xfb,0x74,0xf6,0xb5,0xec, +0x1b,0xd9,0xb5,0xd9,0x8f,0xb2,0x9f,0xe4,0xf8,0xe4,0x4c,0xcd, +0x79,0x97,0xf3,0xde,0xd4,0xc4,0xd4,0xc2,0x14,0x6e,0x4a,0x32, +0x15,0x9b,0x26,0x9a,0xbe,0x31,0xbd,0x1a,0x3e,0x74,0xf8,0xe1, +0x5c,0x79,0x6e,0xc7,0xdc,0xc4,0xdc,0x92,0xdc,0x29,0xb9,0x5f, +0xe7,0x6e,0xcd,0x3d,0x9f,0xfb,0xc0,0x2c,0x32,0x47,0x98,0x7b, +0x98,0x33,0xcd,0x25,0xe6,0x83,0xe6,0x1b,0xe6,0x5f,0xf2,0x4a, +0xf2,0xea,0xf3,0x41,0x7e,0x8f,0xfc,0x35,0xf9,0xfb,0xf3,0x2f, +0x5b,0x58,0x8b,0x97,0x65,0xa0,0xa5,0xc8,0x72,0xb4,0x40,0x52, +0xd0,0xa4,0xc0,0x5a,0xf0,0x6d,0xc1,0xe3,0x11,0xfe,0x23,0x06, +0x8e,0x28,0x1a,0x71,0x61,0xc4,0x9b,0x42,0xb7,0xc2,0xe4,0xc2, +0xd1,0x85,0x0b,0x0a,0x0f,0x17,0xde,0x2c,0xbc,0x55,0xf8,0x73, +0xe1,0x3f,0x45,0x6d,0x8a,0x32,0x8b,0xaa,0x8a,0x76,0x16,0x3d, +0xb7,0xb6,0xb7,0xf6,0xb1,0x56,0x5a,0xa7,0x59,0xf7,0x58,0xf7, +0x59,0x2f,0x5a,0x2f,0x17,0x4b,0x8b,0x5d,0x8b,0x65,0xc5,0xee, +0xc5,0x03,0x8b,0x37,0x95,0x44,0x95,0x14,0x95,0x7c,0x5d,0xb2, +0xa2,0x64,0x65,0xc9,0x99,0x92,0x47,0xa5,0x44,0x69,0xcb,0xd2, +0x31,0xa5,0x95,0xa5,0x0b,0x4a,0xb7,0x94,0x91,0x65,0x4d,0xca, +0x42,0xcb,0x0e,0x8c,0x64,0x47,0x06,0x8f,0x1c,0x37,0xf2,0xf6, +0xc8,0x1f,0x46,0xbe,0x2e,0x77,0x2c,0x57,0x97,0x47,0x94,0x8f, +0x2a,0xbf,0x53,0xfe,0x72,0x54,0x97,0x51,0x0b,0x47,0xed,0x19, +0x0d,0x46,0xb7,0x1a,0x1d,0x35,0x7a,0xf9,0xe8,0x73,0xa3,0x7f, +0x1d,0xd3,0x7d,0x4c,0xc9,0x98,0xaa,0x31,0x7b,0xc7,0x5c,0x1e, +0xf3,0xe3,0x98,0xb7,0x15,0x6c,0x85,0xb2,0xa2,0x77,0xc5,0xdc, +0x8a,0x3d,0x15,0xaf,0x2a,0xc3,0x2b,0x87,0x56,0xce,0xae,0x5c, +0x56,0x79,0xae,0xf2,0x42,0x65,0x7d,0xe5,0xa3,0xb1,0x01,0x63, +0x07,0x8f,0x9d,0x31,0x76,0xd6,0xd8,0xfa,0x71,0xe1,0xe3,0xee, +0x8c,0x77,0x19,0xef,0x3d,0xbe,0xcd,0xf8,0x0e,0xe3,0x63,0xc7, +0xa7,0x8e,0xcf,0x19,0x5f,0x38,0x7e,0xf6,0xf8,0xbd,0xe3,0x4f, +0x8c,0x3f,0x3f,0xfe,0xde,0xf8,0x17,0xe3,0xff,0x9c,0xc0,0x4c, +0xd0,0x4e,0x68,0x35,0xa1,0xf3,0x84,0xc1,0x13,0xb2,0x27,0x4c, +0x9d,0xb0,0x7d,0xc2,0x9f,0x13,0x9d,0x26,0x86,0x4c,0x4c,0x9a, +0x38,0x79,0xe2,0xae,0x89,0x0f,0x27,0x81,0x49,0x7e,0x93,0xd2, +0x26,0x4d,0x98,0x74,0x7c,0x12,0xfc,0x2a,0xee,0x2b,0xf3,0x57, +0x8b,0xbe,0xba,0xfa,0xd5,0xad,0xaf,0xde,0x4e,0x66,0x26,0x4b, +0x27,0x77,0x99,0x5c,0x30,0x79,0xc5,0xe4,0x2b,0x93,0x5f,0x4e, +0x61,0xa7,0x74,0x99,0x52,0x34,0x65,0xf1,0x94,0xe3,0x53,0xde, +0x4c,0x6d,0x37,0x55,0x3f,0xd5,0x34,0x75,0xec,0xd4,0xea,0xa9, +0x37,0xbf,0x16,0x7f,0x1d,0xfa,0x75,0xd6,0xd7,0xd7,0xa7,0x75, +0x9e,0x96,0x34,0xad,0xff,0x34,0xd3,0xb4,0xb2,0x69,0x53,0xa7, +0xcd,0x9d,0xb6,0x6c,0xda,0xfa,0x69,0x3b,0xa7,0x1d,0x9e,0x76, +0x71,0xda,0xdd,0x69,0x3f,0x4e,0x7b,0x37,0xdd,0x69,0xba,0xcf, +0xf4,0x80,0xe9,0x03,0xa7,0x0f,0x9f,0xfe,0xf5,0xf4,0x6f,0xa6, +0x6f,0x9a,0xbe,0x6f,0xfa,0x99,0xe9,0x37,0xa7,0x3f,0x9e,0xfe, +0x6a,0x06,0x98,0xe1,0x3a,0xc3,0x7b,0x46,0xea,0x8c,0xf4,0x19, +0xf9,0x33,0xca,0x67,0xcc,0x99,0xb1,0x76,0xc6,0x8e,0x19,0x87, +0x66,0x3c,0x9a,0x81,0xb2,0xf0,0x99,0xcd,0x67,0x76,0x9c,0x99, +0x30,0xd3,0x34,0xb3,0x78,0xe6,0xa4,0x99,0x1b,0x67,0x1e,0x9c, +0xf9,0xdd,0xcc,0xfb,0x33,0x5f,0xce,0x7c,0x37,0x4b,0x3c,0xcb, +0x63,0x56,0xab,0x59,0x11,0xb3,0x62,0x66,0xf5,0x9c,0x95,0x36, +0xcb,0x30,0x2b,0x77,0xd6,0xa8,0x59,0xd3,0x66,0x2d,0x98,0xb5, +0x75,0xd6,0x91,0x59,0xe7,0x66,0xdd,0x99,0xf5,0x53,0x15,0xa8, +0xf2,0xac,0x6a,0x51,0xd5,0xbb,0x6a,0x48,0x55,0x7e,0xd5,0xdc, +0xaa,0xd5,0x55,0x3b,0xaa,0xce,0x56,0xdd,0xaa,0xba,0x53,0x75, +0xaf,0xaa,0xae,0xea,0x51,0xd5,0x93,0xaa,0x1f,0xab,0x7e,0xaa, +0x7a,0x59,0xf5,0x5b,0xd5,0x1f,0x55,0xaf,0xab,0x60,0xd5,0xdf, +0x55,0xef,0xaa,0xfe,0xa9,0x7a,0x3f,0x9b,0x98,0x0d,0x66,0xcb, +0x67,0x77,0x9e,0xdd,0x65,0xf6,0x9f,0x73,0xe6,0xcc,0xb1,0x71, +0xde,0xd3,0xce,0xbe,0x6d,0x75,0x16,0x6c,0x3e,0x0b,0xf7,0x9c, +0xa5,0x36,0x2b,0x6d,0xed,0xde,0x56,0x37,0xb4,0x63,0xce,0xbe, +0xcb,0x54,0xbc,0x6d,0x05,0xf7,0xbc,0x6b,0x25,0x96,0xb6,0x94, +0xa0,0x53,0x26,0x1c,0x7f,0x57,0x3e,0xda,0x4f,0x22,0x3f,0xd2, +0x4e,0x22,0x1f,0xdd,0x4a,0x25,0x3f,0xd2,0x52,0x25,0x5d,0x27, +0xf9,0xf0,0xf9,0x2f,0x98,0x53,0xca,0x9f,0x4e,0x37,0x3f,0x94, +0x8f,0x46,0x27,0x90,0xba,0x59,0x8c,0xfc,0xc8,0xff,0x78,0x4b, +0xc2,0x5f,0xde,0xc9,0x47,0xcb,0x8f,0x40,0xd3,0xbb,0x8e,0x9b, +0x54,0xa7,0xcf,0xee,0xbd,0xf9,0xf4,0x54,0xcf,0xf6,0xea,0x20, +0x71,0xfb,0x94,0x9e,0x01,0x6a,0x69,0xf3,0x08,0x15,0x38,0xf4, +0x90,0xaa,0x94,0x48,0x1b,0x11,0xef,0xa2,0x92,0x8f,0xe6,0xdf, +0x2f,0x79,0x5b,0x16,0xc9,0x9d,0x9b,0x86,0xb8,0x98,0x2e,0xe1, +0x49,0x70,0x5e,0x45,0x3d,0x24,0xd2,0x2f,0xd0,0x80,0x3a,0xb8, +0xf3,0x21,0xe5,0xa7,0x92,0x72,0xdb,0xaa,0xdb,0x4b,0xa0,0x5f, +0x0d,0x80,0xf4,0x5d,0xea,0x07,0x89,0xb4,0x13,0x97,0x73,0x09, +0xb6,0xbb,0xf5,0xec,0x22,0x2c,0xbb,0x58,0x59,0x63,0x3f,0x36, +0xc1,0x91,0xfc,0x67,0x4b,0xfe,0x88,0x3a,0x28,0x91,0xbf,0x18, +0x2b,0x1c,0x7d,0x4f,0x16,0x1f,0xcc,0xda,0xac,0xd9,0xf2,0x4b, +0x4d,0x67,0xf1,0xb0,0xf2,0xfc,0x0c,0xcd,0x78,0xb1,0xfc,0xd5, +0xd8,0x45,0x96,0xe1,0x73,0xb2,0xfe,0xf5,0xa1,0x92,0x3f,0xc6, +0xae,0x56,0xc9,0x5f,0x47,0x6d,0x55,0x45,0x4d,0x82,0x22,0x15, +0x17,0x0f,0x8f,0x2b,0x50,0xcf,0x65,0x2a,0xe9,0x29,0xd5,0x40, +0xc9,0x67,0xe4,0x7f,0xe2,0xc9,0xbf,0x1a,0xcb,0x7f,0x3e,0xe5, +0xc5,0xd8,0xff,0xf6,0xf9,0x94,0x9f,0x78,0x52,0x2f,0xa3,0x3e, +0x7c,0x3e,0xe5,0x05,0xa2,0x82,0x8a,0x7f,0xa9,0xa4,0x3f,0xa8, +0xee,0xa8,0xf6,0x48,0x3a,0x26,0x4a,0xe0,0x14,0xfe,0xd0,0x45, +0xbd,0x40,0x62,0x3d,0x9a,0x56,0xf3,0x36,0x50,0x28,0xc1,0x49, +0xca,0x11,0x12,0x29,0xf4,0x56,0xc9,0xef,0xe1,0xeb,0xa6,0xcb, +0x67,0x37,0x5f,0xf8,0x7e,0x9b,0xfd,0x53,0x14,0xa8,0x78,0x66, +0xf3,0x85,0x3b,0xdb,0x06,0xfa,0x7f,0xfc,0x50,0x45,0x8f,0x1b, +0xbe,0x41,0xfd,0x07,0xa4,0x94,0xa9,0xa7,0x32,0xb5,0x96,0x9e, +0x9b,0xe2,0x7d,0x22,0xb3,0x87,0xa5,0x5a,0x35,0x93,0x91,0x8d, +0xa2,0x55,0x52,0xa3,0xfd,0x62,0x61,0xf2,0x5d,0xf9,0xed,0xee, +0x2a,0xf9,0x01,0x54,0xe5,0xcb,0x1b,0x00,0x22,0x1b,0xb4,0x51, +0x49,0xd7,0x48,0x46,0x70,0xf1,0x25,0xb0,0x17,0xfe,0x0c,0x8f, +0xf0,0x9e,0x4d,0x10,0x7f,0x92,0x7d,0x3b,0x0c,0xbf,0x6d,0xd3, +0x5a,0x82,0x6d,0x70,0x44,0xc5,0xf3,0x96,0x2b,0x91,0x0e,0x95, +0x80,0xd3,0xb7,0x61,0xc1,0x6d,0x2a,0x19,0x71,0x3d,0x77,0x5a, +0xbc,0x04,0x32,0x88,0x67,0xe1,0x3a,0x6c,0x89,0xe4,0xc3,0x45, +0x98,0x74,0x87,0x4a,0x5e,0xe6,0x8f,0x66,0xeb,0x28,0x91,0x72, +0x0c,0xbe,0x92,0x5e,0x66,0x1b,0x44,0xc1,0x03,0x4a,0xd8,0xcd, +0xb6,0x88,0xee,0xcc,0xb4,0xe7,0xe6,0xa5,0x70,0xb1,0xf4,0x57, +0x4c,0x0a,0x8c,0x0d,0x80,0xf3,0xf8,0x0f,0xbd,0x25,0x34,0x2c, +0xa2,0xa5,0x30,0x34,0x51,0x02,0x36,0xbd,0x4d,0xa5,0xfe,0xdf, +0x6f,0xd3,0xa5,0xb7,0x54,0x1d,0x24,0x60,0xa9,0xcd,0x48,0x75, +0x50,0x49,0x4b,0x24,0x60,0x8b,0xcd,0x97,0x2a,0x50,0x49,0xbf, +0x90,0x80,0x55,0xb6,0x67,0x54,0x2b,0x89,0x74,0x92,0x6a,0x49, +0xe5,0x2d,0xdb,0xb5,0x5b,0xe0,0xcc,0x53,0xca,0x28,0x91,0x5e, +0x9a,0x56,0x6b,0x3b,0x24,0xdc,0xb9,0xfd,0xfa,0x94,0x7a,0xbe, +0x54,0xc5,0xd4,0xbd,0x13,0x29,0x6c,0x87,0xa0,0xab,0xaa,0x8d, +0x04,0xd5,0x52,0x01,0x12,0xe9,0xa0,0xea,0x12,0x78,0x0d,0x46, +0xab,0x84,0x8f,0x43,0x5c,0x83,0xa7,0x6a,0xb9,0x53,0xb0,0x02, +0xd6,0xd7,0x36,0x04,0xbf,0x4b,0x14,0x4b,0x9f,0x54,0x42,0x57, +0x89,0x4d,0x75,0x5f,0x3e,0xfa,0x29,0xf2,0xe0,0xff,0x97,0xb7, +0x45,0xa4,0x13,0x25,0x26,0xc9,0x3d,0xd5,0x71,0x89,0xaf,0xf0, +0xd1,0x29,0x7e,0xf6,0xc6,0x6f,0x1d,0x4b,0xa7,0xa9,0x16,0x48, +0x7a,0x4b,0xa4,0x2d,0x24,0x88,0x75,0xfe,0xcd,0xa8,0xf6,0x2a, +0xe9,0x54,0xd5,0x1f,0x5c,0x78,0xcd,0x83,0x5a,0x2c,0x0f,0x8c, +0xbe,0x0b,0x83,0x9e,0x52,0xb6,0xaa,0x2f,0x15,0xda,0x7a,0x06, +0x7e,0x59,0xfd,0x33,0x74,0x85,0x26,0xef,0xff,0xb8,0xab,0xb6, +0xfc,0xc1,0xc9,0x60,0xc8,0x68,0x75,0xac,0x78,0xd0,0x06,0x64, +0xb7,0x57,0x0c,0xe7,0x07,0x4b,0xff,0xe3,0xd3,0x44,0x50,0x2e, +0x51,0x9f,0x95,0x48,0xb7,0x56,0x97,0x49,0xec,0x1f,0x07,0xc9, +0x46,0x8e,0xa0,0x02,0x17,0x1e,0xc0,0x13,0x0f,0xa8,0x5e,0x2a, +0xe9,0x02,0x15,0x0c,0x57,0x51,0x09,0x12,0xe9,0x4c,0x7c,0xbb, +0xbe,0xc2,0x76,0x99,0x82,0x7f,0x29,0x61,0xe5,0xdb,0x44,0x3a, +0x98,0x41,0x73,0xbd,0xee,0xc8,0x2d,0x41,0xc6,0xee,0x0c,0x97, +0x70,0x62,0xf8,0x9a,0x0e,0x60,0xe0,0xe8,0x77,0x89,0xc8,0xda, +0x3b,0xb5,0x12,0xb0,0xe2,0xed,0x33,0xea,0xff,0x97,0xf7,0x60, +0xa4,0x15,0x92,0x0a,0x44,0x0f,0xce,0xae,0xa3,0x3a,0xaa,0xa4, +0x23,0xb0,0x39,0xb7,0xdb,0xaa,0xa8,0x54,0x95,0x74,0x52,0xe5, +0x4d,0xdb,0xcd,0x9b,0xe0,0xec,0x63,0x78,0xfa,0x31,0xb5,0x5b, +0xc2,0x97,0xe1,0x28,0xe8,0x00,0x47,0xf2,0x75,0x2f,0x21,0xf9, +0xf2,0xb1,0x7b,0x93,0xdd,0x12,0x38,0x4a,0xb4,0x73,0x69,0xf5, +0x26,0xcd,0x02,0xf1,0xa6,0xf2,0x95,0x46,0x63,0x79,0xb1,0x59, +0x3d,0x56,0x6c,0x5e,0xca,0x7f,0xac,0xf0,0x33,0x02,0xd7,0x24, +0x5d,0x0d,0xdb,0xbf,0xb3,0x6a,0xe0,0x16,0x78,0x99,0x9e,0x59, +0x3a,0xbd,0xa4,0xd8,0x1b,0xb6,0x94,0x70,0xed,0xe0,0x28,0x05, +0x7f,0x01,0xe7,0xb3,0xef,0x67,0x08,0xae,0xec,0xcd,0x4e,0x5a, +0xa9,0xe6,0xb6,0x70,0x97,0xe8,0xa9,0x2b,0xbe,0xae,0x5e,0xe9, +0x2d,0x9d,0x84,0x8d,0x09,0xb7,0x23,0x6b,0xee,0x47,0xd6,0xec, +0xfa,0x56,0xc4,0x79,0x88,0xb9,0x9e,0x5c,0xf4,0x91,0x54,0x18, +0x0b,0xc3,0xe9,0x39,0x0d,0xdf,0x71,0x69,0xd1,0x0c,0xdf,0x91, +0x7f,0xa3,0xd1,0x16,0xfa,0x84,0xb2,0x6d,0xac,0x55,0x34,0x50, +0x0c,0xec,0x05,0x3b,0xd1,0x4f,0xee,0x5e,0xfc,0x1e,0x12,0xde, +0x90,0xed,0x54,0xc7,0x35,0xe1,0x7c,0x7a,0x46,0x44,0x14,0xa8, +0x6f,0xe5,0xd3,0x97,0x97,0xef,0x3e,0xfe,0xd0,0xe7,0xe1,0xbe, +0xd4,0xce,0x9a,0xff,0x45,0xdc,0x7b,0xc0,0x45,0x91,0x34,0x0f, +0xc3,0xe0,0x32,0x33,0x3a,0xe7,0xed,0xdd,0x31,0x2c,0xa7,0x8b, +0x33,0x2b,0x88,0x19,0x05,0x51,0x01,0xc5,0x2c,0x28,0x2a,0x82, +0xa2,0x20,0x08,0x18,0x51,0x11,0x73,0xc4,0x74,0x82,0x9e,0xa7, +0x9c,0x39,0xe7,0x9c,0x03,0xe6,0x8c,0x04,0x03,0x08,0x82,0x02, +0x8b,0x80,0xe8,0x8a,0x04,0xc5,0xc3,0x74,0x8a,0x77,0x5e,0xcd, +0xda,0xeb,0xf3,0x7d,0xd5,0xb3,0xa0,0xde,0xf3,0xdc,0xf3,0xfe, +0xbf,0xf7,0xf7,0x7e,0xdf,0xef,0xfb,0xe9,0xb2,0x3b,0xd5,0xd5, +0xd5,0xdd,0xd5,0x55,0x5d,0xd5,0x3d,0xdd,0xd5,0x31,0x9c,0x4f, +0x88,0x77,0x5f,0x7f,0x89,0xcc,0x21,0x63,0x99,0xf6,0xf2,0x30, +0x0e,0xab,0x5d,0x08,0xbb,0xf3,0xe1,0xa7,0x42,0x6b,0xb9,0xe9, +0xb3,0x6e,0x4f,0x85,0x4a,0xe8,0x2f,0x37,0xd1,0xf4,0x28,0xe6, +0xde,0xa4,0x84,0x75,0xd0,0xfd,0xcc,0x75,0x18,0x12,0xd6,0xdc, +0x6d,0xd4,0x99,0x9b,0xe3,0x24,0xdf,0x50,0xc6,0xff,0xd2,0x9d, +0x01,0xf0,0xad,0x1d,0x38,0xbc,0x7c,0x02,0x75,0xff,0xec,0x79, +0xab,0xdb,0x76,0xfa,0x8a,0xe5,0x5d,0xc1,0xee,0xf4,0x1b,0x15, +0x5a,0x60,0x5a,0x65,0xa2,0xb4,0x5a,0xf9,0x0d,0x1c,0x14,0x29, +0xdd,0x09,0x65,0xae,0x1f,0xbd,0x74,0xf2,0xbe,0x5d,0x41,0xf2, +0xd8,0x1e,0xba,0x25,0x9c,0x4f,0xe8,0xd0,0x56,0xc8,0x23,0x54, +0x0f,0x51,0x2f,0xc7,0x44,0x5b,0xca,0xdf,0x18,0x54,0x72,0xa8, +0x2d,0x88,0xef,0xf4,0x4d,0xe4,0x18,0xf2,0x03,0x47,0xae,0x98, +0xe6,0x33,0xdd,0xa1,0x82,0x88,0xdc,0x52,0xe3,0xb7,0x9a,0xb5, +0xa6,0x2e,0x64,0x33,0xab,0xd4,0xee,0xfa,0x7d,0x18,0x58,0x60, +0x29,0xf7,0xc7,0xb6,0x2e,0xa5,0x0b,0x71,0x3c,0x3b,0xdd,0x64, +0x93,0xb7,0x88,0x39,0x71,0xf4,0xc4,0xe1,0x2c,0xbb,0x97,0xc9, +0x41,0xce,0xba,0x45,0x9c,0x73,0x70,0x90,0x93,0x7b,0x64,0x4d, +0x35,0x2f,0xa6,0x0f,0x80,0xda,0x76,0xd0,0xf4,0xe9,0x4b,0x68, +0x00,0x76,0x6d,0x1f,0x93,0xba,0x3d,0xc6,0x4e,0x0a,0x8b,0xd2, +0x2d,0x61,0xf7,0xc0,0x6e,0x06,0x6e,0xb3,0x6a,0xb0,0xe7,0xb3, +0xcb,0xe1,0x4a,0xb9,0x0a,0x6e,0xd0,0xb7,0x2d,0xbf,0xbd,0x00, +0x11,0xea,0xb5,0x7f,0x42,0xea,0xba,0x85,0x8c,0x08,0x88,0xd2, +0x2d,0x5d,0x75,0x16,0xdc,0x9e,0x3c,0x87,0xe6,0x60,0x59,0x9f, +0xee,0x38,0xb2,0xea,0x41,0x44,0xe2,0x46,0x46,0x6b,0x49,0xc7, +0x67,0x8d,0xa1,0xb1,0xb4,0x3c,0x5f,0xe3,0x1c,0x18,0xcd,0xdf, +0xb8,0xfe,0xdb,0x6f,0x37,0x16,0x89,0x81,0x41,0xce,0x4a,0xdb, +0x8c,0xec,0x7d,0xcb,0xdc,0x42,0x15,0xec,0xb2,0x85,0xed,0x46, +0x2b,0xa6,0xc0,0x34,0x8c,0x0c,0x2b,0x04,0x5b,0x48,0xe6,0xc8, +0x9e,0x4f,0x2c,0xa3,0xc8,0xd4,0x01,0x3d,0xc4,0xe4,0x5b,0xa7, +0x3d,0xeb,0x5d,0x0e,0x7b,0xcb,0x7b,0x3f,0x13,0x5e,0x2a,0xaf, +0x7b,0xda,0x3e,0x29,0x07,0xee,0x65,0xc0,0x4d,0xf7,0xfd,0xba, +0x0d,0x9c,0xf0,0x3a,0xff,0x60,0xc2,0x6d,0x83,0xf6,0x43,0x87, +0x5c,0xa2,0x23,0xba,0x0e,0xbd,0xec,0x3d,0x13,0x06,0xe4,0x4f, +0x97,0x7e,0x46,0x9b,0xe4,0x3e,0x33,0x60,0xb0,0x93,0x96,0x70, +0x4f,0xda,0x41,0x5b,0x29,0xdf,0xaa,0xc5,0xa0,0xab,0x8f,0x74, +0x7b,0xb9,0x47,0xb7,0xae,0xbe,0x7e,0x7d,0x2b,0xbc,0x93,0x34, +0x9b,0xeb,0x34,0x28,0xbc,0x85,0x04,0x2f,0xac,0x84,0xd7,0xed, +0xc2,0xce,0xe5,0xe9,0xb6,0x73,0x79,0x09,0xe7,0xca,0xcb,0x13, +0x22,0xbc,0xa4,0x05,0x9c,0x57,0x58,0x44,0x3b,0x73,0x27,0xec, +0xcc,0x83,0x9b,0xf9,0x96,0x66,0x0e,0xc8,0xc7,0x64,0x3f,0x0d, +0x74,0x74,0xad,0x22,0x8d,0x49,0x43,0xe7,0x56,0xd8,0xd0,0x7a, +0x65,0x1e,0x50,0xb7,0x34,0xe9,0x52,0x6a,0xbc,0xb4,0xf6,0xd7, +0x31,0xc4,0xcd,0xc3,0x85,0x34,0x27,0x96,0xf5,0xc1,0x82,0x05, +0xab,0x7c,0x64,0x94,0x1b,0x20,0x23,0x7e,0x6a,0xf8,0x1f,0x2c, +0x78,0x26,0xba,0x79,0x27,0x82,0xa5,0xae,0x8a,0x03,0x4b,0x7d, +0x62,0x69,0xa9,0x7e,0x28,0xb1,0x94,0x1a,0x73,0xc4,0xd2,0x7b, +0xa8,0x1b,0x55,0x90,0x3c,0x70,0xf9,0x00,0x2e,0xf4,0x3d,0xd7, +0x1f,0x55,0x7f,0x94,0xd9,0x98,0xe0,0x3a,0x4c,0xd0,0x9c,0xda, +0xb1,0xf7,0x30,0xea,0xd3,0xe1,0xf9,0x7b,0x22,0x23,0xe7,0xcf, +0x9e,0x8a,0xfa,0x34,0x75,0x47,0xf4,0x29,0x89,0xb8,0x58,0xfd, +0x2f,0x88,0x79,0x59,0xfd,0xd7,0x37,0x64,0x58,0x8b,0xf0,0x91, +0xdb,0x8e,0x4f,0xd1,0xc1,0x0e,0x38,0xcc,0xac,0x9d,0xb7,0x3a, +0x7a,0x96,0xb6,0x26,0x9b,0xec,0x66,0x75,0xf5,0xe2,0x4f,0x13, +0x8f,0xe8,0xc8,0x0e,0x72,0x98,0x59,0xba,0x33,0x6e,0xcf,0x3e, +0x6d,0x35,0x7d,0xac,0xdf,0x0a,0xbd,0x3c,0x16,0xb5,0xef,0xac, +0x81,0x6a,0x9f,0x9e,0xf4,0x95,0xc7,0xb6,0xe0,0x48,0x04,0xf9, +0xe1,0xf4,0x40,0xe8,0x0b,0x2a,0x54,0x3e,0x89,0x0c,0xf3,0x66, +0x15,0xbc,0x96,0x79,0x96,0x72,0xa3,0x32,0xd5,0x53,0x5b,0xd9, +0x4f,0x4f,0x5e,0xb1,0xa0,0xca,0x61,0xfe,0xc8,0x7c,0x92,0xf3, +0x4e,0x0b,0xb5,0xbc,0x72,0xc8,0x8f,0x0e,0x7e,0xbe,0x7d,0x26, +0x48,0x19,0xa3,0x99,0xa4,0xfd,0x17,0xaf,0xe5,0xd9,0x15,0x5c, +0x1a,0xd7,0x0b,0x55,0xaf,0x9f,0x4f,0x50,0x97,0x60,0x89,0x78, +0x12,0x15,0x8a,0x02,0xe9,0x98,0x07,0xbb,0xee,0x43,0x4c,0x9e, +0xb5,0xec,0x52,0xd6,0xb3,0x0c,0xf5,0xee,0x08,0xe9,0xa8,0x81, +0x46,0x2f,0x4a,0xe0,0x9b,0xf7,0xdd,0x52,0xba,0x9a,0x35,0xab, +0x70,0xf7,0x1d,0xaa,0x59,0x56,0xad,0xef,0x90,0x3a,0xa4,0x96, +0xff,0xc0,0x41,0xe3,0xa4,0xf4,0x70,0xd4,0xac,0xcb,0xa7,0x91, +0x6a,0x4a,0x84,0xa2,0x59,0x21,0xa8,0x59,0x3d,0x7a,0x3e,0x62, +0x85,0xca,0xdf,0xaf,0x0f,0xf7,0xa4,0x2a,0x3b,0x28,0xd8,0xa9, +0xc3,0xe8,0xb3,0x37,0xc7,0x4a,0xfe,0xc3,0x50,0x65,0x15,0x5d, +0xc0,0x02,0xeb,0xcf,0x46,0xb7,0x88,0xb6,0x50,0xae,0x8b,0x2d, +0x0c,0x23,0xad,0x35,0xd0,0xfa,0x0f,0x7d,0x23,0x79,0x2c,0xb1, +0xa6,0x7b,0xdd,0x46,0xa1,0xf6,0xbd,0x26,0xad,0xb9,0x65,0x46, +0x46,0xb3,0xc6,0xd4,0x98,0xec,0x64,0xcd,0x95,0xbc,0xa5,0x87, +0x01,0x7a,0x54,0xbf,0x32,0x15,0x5c,0xa5,0x35,0x6c,0x5a,0xfe, +0x02,0x95,0x4a,0xdb,0xce,0x40,0xd4,0x3e,0xa3,0x26,0x0f,0x9b, +0xa0,0x28,0xd5,0x76,0x06,0x6e,0xea,0x4d,0x56,0xa8,0x99,0x75, +0x73,0xa9,0x66,0x1e,0x3f,0x74,0xc7,0xee,0xd5,0x8d,0x41,0x2e, +0x58,0x1b,0x97,0x21,0x01,0xad,0x3c,0x22,0xce,0xdc,0x18,0x47, +0x6b,0x33,0xe0,0x52,0xda,0x40,0xe0,0xec,0xa8,0xfa,0x65,0x95, +0xc1,0xf5,0x32,0xb3,0xfa,0x39,0x54,0x2a,0xea,0xd7,0xee,0x09, +0x51,0xb7,0x0b,0x1e,0x11,0x30,0x1e,0xd5,0xef,0x1c,0xb8,0xa1, +0x3d,0x74,0xaa,0x56,0x3f,0xb6,0x07,0x2a,0x82,0x59,0xfd,0x2a, +0x1a,0x43,0x53,0xaa,0x7e,0x4e,0x83,0xa3,0xf9,0x9b,0xd7,0x5f, +0xbe,0xbc,0xb9,0x48,0x1c,0x1c,0xe4,0x24,0x29,0xed,0x33,0x5a, +0xe8,0x2d,0x8b,0x50,0xff,0xf6,0xd3,0xb6,0xad,0x96,0xff,0xc5, +0xdc,0x37,0xf9,0x53,0x0d,0xac,0x07,0x67,0x39,0xb2,0xe1,0x93, +0x05,0xd5,0xc0,0x5c,0x38,0x9a,0x03,0x4b,0x72,0xad,0x33,0xca, +0xfa,0x96,0xc0,0xde,0x92,0xbe,0x65,0x35,0x1a,0x68,0x30,0x6b, +0xa0,0x9b,0x59,0x03,0x0b,0xcc,0x1a,0xe8,0x99,0x4b,0x37,0xca, +0x79,0x2a,0x1a,0x58,0x60,0xd6,0x40,0xb7,0x6a,0x0d,0x34,0x50, +0x0d,0xcc,0xb5,0x6a,0x19,0x70,0xed,0x91,0x6e,0x1f,0x6a,0xe0, +0x35,0xd4,0xc0,0xd0,0x4e,0xd2,0x2c,0xae,0x53,0x40,0x68,0x4b, +0x09,0x5e,0x2b,0x1a,0x78,0x59,0xaf,0xdb,0xc6,0xe5,0x25,0x5e, +0x28,0x2d,0x4d,0x1c,0xe5,0x25,0xfd,0xc4,0x79,0x87,0x0d,0x6f, +0x67,0xae,0x2b,0x6c,0x54,0x54,0xb0,0x9a,0x0b,0x29,0xf2,0x15, +0x0d,0x71,0x68,0xad,0x28,0x5f,0xb9,0x07,0xa8,0xcb,0x93,0x2f, +0xa5,0x9e,0xd4,0x51,0xe5,0x73,0xf5,0x6c,0x43,0x9a,0xda,0x2b, +0xba,0x67,0x99,0x07,0x5a,0x68,0x07,0xc3,0xb5,0xd0,0xb1,0x4d, +0x15,0x69,0x2a,0xad,0x34,0x7d,0xf3,0x1f,0x6c,0x78,0x1a,0xa3, +0x1f,0x3b,0x1b,0x52,0x72,0xe0,0x68,0xb6,0xf5,0xfd,0x27,0x73, +0x1e,0x41,0x60,0x91,0x30,0x5b,0xce,0xa0,0xaf,0x63,0x1b,0x40, +0xe3,0x7d,0x97,0x77,0xa6,0x6c,0x4c,0xab,0x9f,0x97,0x43,0x1a, +0xb0,0x71,0x03,0x16,0x0d,0x88,0x0e,0x26,0x6d,0xa0,0x73,0xbd, +0xa7,0x89,0xf7,0x53,0x7e,0xd3,0x3e,0xeb,0x95,0xd1,0x8c,0x58, +0xf6,0xec,0xde,0xaa,0xff,0xf1,0x21,0xd7,0x42,0x24,0x21,0xa1, +0x67,0x84,0x57,0x60,0x23,0x6d,0xc3,0x07,0xed,0x01,0x1d,0x94, +0x3b,0xb7,0x4f,0x1d,0x91,0x84,0xd9,0xc4,0x4b,0x4e,0xd3,0x24, +0x5f,0x9e,0x18,0x88,0xf2,0x3c,0xd8,0x77,0x98,0xef,0x78,0x69, +0xf4,0x95,0xa9,0xe7,0xcf,0x6b,0xb7,0x70,0xd7,0x2f,0x5c,0x48, +0xc5,0x4c,0xd1,0xa6,0x62,0x8d,0x7b,0xe0,0xd5,0x7c,0x1c,0x79, +0x1e,0x5e,0x8b,0xbf,0x71,0x54,0x02,0xec,0x02,0x66,0x78,0xe4, +0xd0,0x29,0x3e,0xd8,0xed,0x67,0xc9,0xb7,0x19,0xa0,0xb9,0x07, +0x19,0xf7,0x40,0x97,0x6e,0x79,0x37,0x1b,0xea,0x94,0x40,0x44, +0x2e,0xb4,0xb8,0xa7,0x32,0x7a,0xfa,0x6b,0xc8,0x7c,0x96,0x0c, +0x44,0x37,0xa7,0x3e,0x0c,0xd4,0xdd,0xe6,0xc0,0x17,0x3b,0xae, +0x11,0x0c,0x82,0x6e,0x50,0x1f,0x3d,0x04,0x2f,0x29,0x9c,0x23, +0xaa,0xa8,0x5e,0xfd,0xc7,0xce,0xdd,0x96,0x22,0x41,0x6a,0xaf, +0xde,0xcb,0xb8,0x4b,0x73,0x23,0x4f,0xfa,0xd9,0xb5,0xee,0xe8, +0x85,0xe3,0x53,0xf3,0xc7,0x5e,0x95,0x19,0x67,0xe2,0xaf,0x1f, +0xd2,0xad,0x61,0x83,0xd7,0x9d,0x88,0xcc,0xb4,0x03,0xeb,0x6b, +0x68,0xc0,0x25,0x38,0x4a,0xfa,0x82,0x25,0x19,0x40,0x62,0x89, +0x33,0xe9,0x46,0x56,0x92,0x15,0xe0,0x44,0xdc,0x60,0x9e,0x0e, +0x16,0xb0,0x64,0x29,0x6c,0xd4,0x78,0x45,0x5d,0xc9,0xd5,0x19, +0xb8,0xdc,0xf8,0x2b,0x79,0x79,0xf1,0x11,0xa8,0xa1,0x6a,0xce, +0x6f,0x7c,0xa4,0xb7,0xa4,0xde,0x2d,0xd2,0x7f,0x2f,0xf8,0x17, +0x3c,0xf4,0x80,0xdd,0x0f,0x2c,0x4f,0x1b,0x83,0x55,0xc6,0x05, +0xb0,0x5b,0xf3,0xe0,0x53,0x70,0x57,0x4e,0x2d,0x4b,0x14,0xb8, +0xe2,0xe3,0x02,0xd5,0x47,0x05,0xf8,0xaf,0x05,0x08,0x1c,0x45, +0x3a,0xe8,0x2d,0x8f,0xc9,0xab,0x54,0xf2,0x09,0xd2,0x41,0xa3, +0x37,0xad,0xf2,0xe6,0xd0,0x79,0x8f,0x01,0x8d,0x65,0x21,0xa8, +0x55,0xd0,0x20,0x66,0x30,0xfa,0xee,0x21,0xf8,0x6c,0x8d,0xcf, +0xd8,0x3c,0x35,0x38,0x82,0x5a,0xb8,0xae,0x24,0x08,0x7b,0xd1, +0x74,0xfc,0xca,0x0b,0x6b,0x61,0x37,0x7e,0xa9,0x49,0x36,0xa2, +0xd1,0x8d,0x38,0x34,0x69,0x84,0xec,0xbc,0x4d,0x24,0xe5,0x8b, +0xc1,0xba,0x9a,0x10,0xdd,0x9d,0xa3,0xce,0x12,0xb3,0x44,0x93, +0x85,0x71,0x0e,0x4e,0x0c,0xee,0xab,0xa0,0x8d,0x3c,0x42,0x03, +0xf1,0x3d,0x49,0x3c,0x16,0xe9,0x8f,0x40,0xeb,0xd2,0xfb,0x7f, +0xde,0x47,0xda,0x5f,0xe0,0x58,0xc2,0x2a,0xdb,0x1a,0x94,0x32, +0x79,0x21,0x58,0xc3,0xf7,0xd1,0x28,0x57,0x48,0xb0,0x9e,0xbc, +0x50,0xf3,0x5a,0x24,0x65,0x46,0x2b,0x2c,0xc2,0x40,0x21,0xf6, +0xc6,0xc5,0x58,0x04,0xf9,0xb1,0x1a,0xcd,0x1a,0xd1,0x10,0x2e, +0x94,0x2a,0xa8,0xbf,0x8b,0x42,0x2e,0x0c,0xb3,0xc5,0x1c,0xf5, +0x68,0x0e,0x6b,0x4c,0x79,0xa4,0x34,0x04,0x73,0x9d,0xe2,0x49, +0xe9,0x06,0xa4,0x62,0xa6,0x0b,0x5a,0x85,0x0a,0x02,0x28,0x05, +0x33,0x12,0x02,0x11,0xe9,0xa6,0x41,0x76,0xb2,0x3c,0x0d,0x13, +0x55,0x50,0x0b,0x31,0x94,0xa7,0x14,0x7c,0x2a,0xe3,0xd5,0xad, +0xf1,0xb7,0x35,0xa6,0x2c,0x81,0x89,0x88,0x5d,0x4b,0xc4,0x7a, +0xff,0x74,0x03,0x78,0xd1,0x9c,0x90,0x52,0x9d,0x50,0x86,0x1c, +0xbb,0x4f,0x5a,0xc0,0x0f,0x98,0xbb,0x50,0x6e,0x84,0x3c,0x7d, +0x0c,0x6a,0xfb,0xa7,0x88,0xdc,0x9f,0xf4,0xd5,0xc0,0x70,0x6e, +0x06,0x64,0x32,0xa3,0xd9,0x19,0x24,0x93,0x21,0xc3,0xb9,0x2b, +0xf2,0x43,0x8d,0x70,0x7d,0xa2,0x48,0x0a,0x91,0xad,0xf2,0xc3, +0x68,0x8a,0xec,0xf0,0x14,0x5b,0xe1,0x06,0xfd,0x35,0x07,0x10, +0x13,0x86,0xb7,0x45,0xb4,0x03,0x88,0xbd,0x87,0x84,0x68,0x84, +0x52,0x44,0xd5,0x91,0xa0,0x7c,0x79,0x27,0x12,0x3e,0x53,0xf6, +0x10,0xd4,0x8d,0x8b,0x70,0x98,0x5e,0x4c,0x82,0x34,0xf0,0xc3, +0xbd,0x07,0x65,0x07,0x75,0xdd,0x8f,0x30,0x3e,0xf3,0xc3,0x43, +0xba,0xd8,0x79,0x85,0x5d,0xce,0x41,0x45,0x2f,0xb9,0x97,0x04, +0x96,0x6b,0x25,0xf0,0xe8,0x42,0x2c,0xb8,0xb6,0xf3,0x5a,0xfa, +0x13,0x1b,0x1c,0x28,0x1e,0x76,0x87,0xef,0xa4,0x03,0x72,0x85, +0x46,0x78,0x87,0x14,0x35,0xb4,0xf0,0x9d,0xf9,0xd6,0xd0,0x06, +0xd4,0x4d,0x8b,0xde,0x94,0x09,0x45,0xb0,0x11,0x22,0x34,0x60, +0xc1,0x3d,0xdd,0xf9,0x2a,0x1d,0x6c,0xb4,0xc0,0x75,0x2e,0x20, +0xdf,0x91,0x1f,0xfa,0x74,0x6d,0x3f,0x5d,0x2a,0x98,0xc2,0x64, +0xef,0xb8,0x9a,0x54,0x64,0x97,0x97,0x30,0xbc,0xb7,0xee,0x27, +0xce,0xbd,0x4f,0x08,0xb1,0x5c,0x2a,0x11,0x0f,0xee,0x1c,0x99, +0xaa,0x11,0x2a,0x91,0xe0,0x01,0x22,0x7e,0xd4,0x58,0x3e,0x29, +0x54,0x3d,0x81,0xbb,0x1a,0x32,0xa4,0x98,0x74,0xf9,0xdd,0x5d, +0x7a,0xc0,0x12,0x8b,0x57,0xdd,0xa1,0x33,0x34,0xd4,0x96,0x71, +0xd0,0x30,0x0f,0x3a,0x82,0xea,0xad,0xd4,0x95,0x6d,0xdc,0xae, +0x13,0xe9,0x44,0x02,0xb5,0xea,0xea,0x6c,0xe0,0x8d,0xc3,0xe5, +0x5a,0xcc,0x08,0x81,0x9d,0xa0,0x53,0xe3,0x72,0x44,0x01,0x55, +0xd3,0x3c,0xd2,0x91,0x34,0xd4,0xb6,0xe7,0x48,0xc3,0xee,0xa4, +0x33,0xb1,0x68,0x89,0xe4,0x7e,0x2f,0x29,0x86,0x2e,0x30,0x04, +0x33,0x5e,0x4c,0x12,0x2b,0x73,0x55,0xb0,0x89,0x48,0x9a,0x4c, +0x27,0xe3,0xd6,0x97,0x99,0xc4,0xe3,0x5f,0xb6,0x28,0x4d,0x17, +0x41,0x14,0x3f,0x6d,0x75,0xf2,0x05,0x8f,0x8f,0xf4,0x71,0x47, +0x92,0x08,0xdf,0x20,0xde,0x69,0x05,0x0f,0x56,0x73,0x99,0x11, +0x37,0x06,0x6d,0x96,0x76,0x70,0xb7,0x36,0x9f,0xbb,0x91,0xa9, +0x85,0xd5,0x2f,0x33,0xdd,0xb9,0xa0,0xa9,0xe3,0xc2,0x75,0x64, +0x09,0x17,0x30,0x6a,0xe2,0x20,0xa9,0x33,0x77,0xeb,0xc2,0xc4, +0x00,0xfa,0x18,0x7e,0x78,0xdc,0x75,0x09,0x49,0x20,0x45,0xb2, +0x9a,0xf3,0x3d,0x17,0x78,0x2b,0x56,0x9a,0xcf,0x0d,0x8a,0x8d, +0x08,0xf4,0xd5,0x92,0xd5,0x4e,0xbe,0x25,0xdc,0xf5,0xc3,0xa7, +0xaf,0xea,0x60,0x09,0x97,0x7a,0xe1,0xf8,0x2d,0xe9,0x21,0x37, +0x68,0xd4,0xf1,0x54,0xfa,0x78,0x75,0xea,0xe9,0x20,0xcc,0x38, +0x83,0x2a,0xc4,0x46,0x28,0x53,0x3d,0x26,0x2d,0x35,0xb0,0xed, +0xe3,0x77,0x4c,0x4f,0x96,0x6c,0xfb,0xd7,0x77,0x4c,0x75,0xd2, +0x79,0x40,0x07,0x9b,0xc3,0x34,0xb2,0x45,0x49,0x83,0x2d,0x34, +0xed,0x01,0xff,0x80,0x87,0x82,0xc7,0xbc,0x30,0xee,0x3a,0x70, +0xa2,0x70,0xe2,0x7a,0x14,0x2f,0xcf,0x32,0xa9,0xab,0xb7,0x2f, +0x08,0x3b,0xf0,0x59,0x6d,0x1c,0xf0,0x98,0xcf,0xbc,0x0f,0xdd, +0xee,0x0b,0xe3,0xde,0x29,0x48,0xef,0xfe,0x0d,0x89,0x3e,0x7f, +0x37,0xc4,0xfc,0x08,0xcd,0x44,0xdd,0x13,0xd4,0xf6,0x36,0x22, +0xf2,0xe0,0xa3,0x6d,0x6f,0xca,0x26,0x7c,0x90,0x5b,0x68,0xe0, +0xaf,0xde,0xe4,0x2f,0x2e,0xc7,0x74,0xa1,0xfa,0x97,0x3a,0x9a, +0x38,0xe7,0x1a,0x27,0xe4,0x5a,0x3f,0x78,0x34,0xfc,0x21,0x8c, +0x7e,0x34,0xfc,0x91,0x50,0x24,0x4f,0x59,0xa3,0x49,0x9d,0x7a, +0x39,0xf4,0x98,0xb4,0x8e,0x13,0xf2,0xf5,0x47,0xce,0x27,0x67, +0x69,0xb3,0xc3,0x6f,0x10,0x8b,0x13,0x92,0xef,0x6e,0xa6,0xef, +0x9e,0x88,0xc3,0x49,0xda,0x1b,0x97,0x4f,0x16,0x24,0x9d,0x9f, +0x3f,0xf5,0x84,0x94,0x70,0x8b,0x39,0x1f,0xe6,0xb7,0xc3,0xdf, +0x8e,0xf0,0x9d,0xfa,0xb7,0x1c,0x70,0x6c,0xc4,0xe5,0xc9,0xe8, +0x1b,0x08,0x95,0xbd,0xa6,0x8c,0x0e,0xee,0xa7,0xf5,0xb9,0x1a, +0xf8,0xd7,0x04,0x29,0x73,0x0e,0x73,0x37,0xfa,0xdc,0xd4,0x10, +0x6d,0xe0,0xf0,0xf1,0xdd,0x43,0x46,0xef,0x38,0x3c,0x41,0x0a, +0x1f,0xc4,0x8c,0xbe,0x9a,0x31,0x3f,0xdd,0x0e,0xea,0x3c,0xce, +0x78,0xa3,0x13,0x9e,0x0d,0x87,0x2d,0x9a,0xb0,0x69,0x91,0xa3, +0x27,0x4b,0x8b,0xd6,0xc4,0xae,0x89,0x5d,0xdd,0x7f,0x67,0x3d, +0xcf,0x7d,0xe3,0x4e,0xde,0xd2,0x26,0x1c,0x3c,0x7d,0xfe,0x88, +0xb4,0x69,0xd9,0xe6,0x65,0x9b,0xe3,0xee,0xcc,0xab,0x67,0x98, +0x75,0x66,0xfc,0x20,0xad,0xfa,0xaa,0x91,0xcf,0xb1,0x84,0xe5, +0xf9,0xa0,0xca,0x57,0xc1,0x72,0xd2,0x5c,0x93,0x6f,0xdc,0x03, +0xaa,0x4f,0x7b,0xf0,0x2b,0x3b,0x87,0x14,0xa1,0x14,0xb6,0x77, +0x21,0x16,0xc4,0xa2,0xcc,0x05,0x2c,0x74,0x6a,0xe8,0x12,0x9b, +0xfe,0xe1,0x0e,0xec,0xc8,0xfc,0x90,0x6e,0x79,0x23,0x07,0x2c, +0x1f,0xc0,0xdb,0x1c,0x95,0x5c,0x2f,0x56,0x03,0xfe,0xd0,0x14, +0x07,0xea,0xe9,0x30,0x9d,0xe0,0x37,0xf1,0xc7,0x7f,0x4d,0xd1, +0xf0,0x4e,0x27,0xd3,0x01,0xbf,0xc1,0x5f,0x97,0x6e,0x45,0x5c, +0x48,0x2d,0xe0,0xc0,0x59,0x97,0x8e,0x7f,0x80,0xfe,0x74,0xc1, +0x7f,0xb5,0x08,0x47,0x9c,0x25,0x7f,0xfc,0x43,0xe8,0x4f,0x17, +0x69,0xc3,0x07,0x8d,0xfe,0xea,0x99,0xe4,0xfd,0xba,0xc0,0x93, +0xcc,0xb8,0xe8,0x99,0x33,0x46,0xda,0x0d,0x9c,0x78,0x21,0x4d, +0x77,0x97,0x4b,0x3b,0x7e,0x21,0xed,0xdc,0xbe,0xd9,0x91,0xdb, +0xa5,0xd4,0x13,0x4c,0xca,0xcc,0x11,0xa7,0x7c,0xec,0x1a,0xf9, +0x75,0xc5,0xf9,0x0a,0x9f,0xd1,0xf5,0x0f,0x9d,0x9a,0xa0,0x97, +0x7e,0x1e,0xa4,0x13,0x59,0xf1,0x77,0xcf,0x5b,0x9e,0xbf,0x64, +0x38,0x9f,0x77,0xe9,0xc1,0x25,0x15,0x2c,0x86,0x64,0x54,0xcd, +0x8a,0x67,0xf4,0xa4,0x4b,0x9b,0x67,0xb4,0x25,0x6d,0x5c,0xd1, +0x13,0xab,0x53,0xe1,0x8a,0xed,0x39,0x6f,0xe5,0xd2,0xaf,0xd0, +0x80,0xc6,0xdf,0x90,0x55,0xf8,0xfc,0x79,0x56,0x37,0x4f,0x34, +0xfe,0x9e,0xfd,0xba,0xb9,0x48,0x91,0x20,0x69,0x4e,0xb1,0x97, +0x3d,0x99,0x2b,0xec,0xd0,0x52,0x66,0xdf,0xc6,0x9d,0x7b,0x4e, +0x68,0xcf,0xcc,0x38,0x34,0x5a,0x6a,0x43,0xc6,0x9c,0x47,0x1f, +0xda,0x2a,0xeb,0x1a,0xb7,0x7d,0xc3,0xcf,0x0b,0x75,0xb3,0xb8, +0x9f,0x7e,0x5e,0xb2,0x40,0x52,0xa7,0x18,0xed,0xaf,0x58,0x82, +0x3a,0x09,0xec,0x13,0xa0,0xcb,0x55,0x15,0x74,0x93,0xdd,0x35, +0xb0,0xf0,0xd9,0x15,0x32,0x77,0x58,0x05,0x59,0xc8,0xc1,0x62, +0x5b,0xb0,0xe6,0x7e,0x7d,0xc2,0xac,0x61,0x9f,0x10,0xe7,0x62, +0x70,0xc6,0x1f,0xcb,0x3d,0x18,0x62,0x7d,0x15,0x4e,0xf8,0x73, +0xbd,0x49,0x7d,0x9c,0xfb,0xf6,0x82,0xfa,0x8c,0x2f,0x39,0xc1, +0xaa,0xc9,0x68,0x78,0x9d,0x3c,0xec,0xd6,0x8b,0xab,0x1f,0x52, +0xac,0xcf,0x67,0x42,0x9b,0x4c,0x61,0x01,0x98,0x50,0xe6,0xc6, +0x42,0x57,0xf6,0xf1,0x90,0xab,0x1e,0x3d,0x46,0x8c,0x1b,0x1f, +0x2d,0x5d,0x1c,0xcf,0x1c,0xdb,0x76,0x62,0xdf,0x15,0xbb,0xc4, +0x43,0xd3,0x83,0x74,0x53,0xbc,0x38,0xa7,0xc0,0x28,0x2f,0x9d, +0x90,0x38,0xf0,0xdc,0x68,0x7d,0xc6,0xa9,0x23,0xc7,0xb7,0x4b, +0x6b,0x58,0x61,0xc1,0xb8,0xfd,0xf3,0xce,0x49,0x27,0xd9,0xa6, +0xd0,0x42,0x33,0x8a,0x13,0x12,0x23,0xc2,0xa7,0x07,0x47,0xcc, +0xde,0x1e,0x2f,0x6d,0xe2,0x8e,0x1f,0xdb,0x71,0x03,0x35,0x2d, +0x02,0x5e,0xa7,0xc0,0xc6,0x14,0xcb,0xcb,0x39,0xd0,0x23,0x47, +0x05,0xa1,0xf0,0x5a,0xf3,0x3a,0x2d,0x07,0xac,0xc0,0x6a,0x60, +0x4e,0x8b,0x16,0x03,0x7b,0x13,0x2b,0x62,0x95,0xd6,0xfb,0xb5, +0x2e,0xc5,0x6a,0xe0,0xe4,0xf3,0xa9,0xba,0x3b,0x5c,0xea,0xd1, +0xf3,0x69,0x69,0x47,0x47,0x07,0x48,0xfd,0xb9,0x80,0xc9,0xa3, +0x07,0x22,0x09,0x49,0xae,0x95,0x05,0x13,0xb3,0x2c,0xef,0xe9, +0x21,0x58,0xaf,0x82,0x85,0x72,0x2d,0xcd,0xcb,0xfc,0x82,0x37, +0x6f,0x7a,0x14,0x38,0x39,0xf5,0xe8,0xde,0xbc,0x79,0x7e,0xf7, +0x97,0xba,0x2c,0x2b,0xff,0x31,0xd7,0xd2,0xd3,0xcf,0xd2,0x4f, +0xa8,0xbf,0xff,0x98,0x50,0x7f,0x9d,0x1a,0xcd,0x9e,0x5f,0xb4, +0xe5,0x2d,0xb0,0x55,0x01,0xc3,0x53,0x7b,0xe7,0x17,0x6d,0x8d, +0x4f,0x09,0x60,0x8b,0x16,0x83,0xa1,0xb6,0x74,0x8d,0xed,0x2d, +0xc8,0x67,0xba,0xb3,0x83,0x48,0x3e,0x6a,0xbe,0x8b,0x5c,0x0f, +0x08,0xce,0xf6,0xd1,0x24,0xcd,0x92,0x37,0x68,0x8a,0xc9,0x77, +0xb7,0x2e,0xb8,0xa0,0x7f,0xe0,0x70,0x6e,0x56,0x36,0x91,0x82, +0xd7,0x41,0x53,0xc6,0x9b,0x5d,0x47,0xe5,0x2e,0x79,0x96,0x0f, +0x38,0x44,0xb8,0x90,0xda,0xb7,0x46,0x31,0xea,0x40,0xd2,0x7b, +0xb6,0xb1,0x21,0xf0,0x3c,0xfe,0x71,0x14,0x3f,0x35,0xe4,0x14, +0x08,0xcc,0xcc,0x92,0x2d,0x10,0x08,0x33,0x95,0x6d,0x30,0xf8, +0xdb,0x11,0xed,0xb0,0xb2,0x11,0x86,0xcc,0xe4,0xd4,0x7f,0xe1, +0x14,0x6b,0x64,0x3a,0x74,0x4a,0x87,0x91,0xd1,0x96,0xe9,0x32, +0x8e,0x36,0xac,0x6d,0x16,0x7b,0x1a,0x46,0x32,0x20,0xa5,0x13, +0x1b,0xf6,0x08,0x74,0x62,0xd0,0x01,0x22,0x36,0xa0,0xe1,0x49, +0x6b,0xfa,0x47,0xf2,0x07,0x81,0x9d,0x42,0x3a,0x31,0xf4,0x97, +0x0d,0x3b,0x8e,0x8c,0x64,0xaa,0x33,0xb4,0x66,0x89,0x63,0xba, +0x46,0xc9,0xd1,0x5a,0xc1,0x50,0xff,0x42,0x1b,0x9e,0x24,0xc7, +0xa9,0xe4,0x04,0x78,0xac,0x21,0xa3,0x65,0x96,0x1e,0x43,0x19, +0x6d,0x62,0x33,0x26,0xa0,0x22,0x3d,0x46,0xe1,0x40,0x9f,0xeb, +0x31,0xe2,0x41,0x6c,0xf6,0x9a,0x6c,0xcb,0x0c,0x79,0xba,0x4a, +0x76,0x87,0xd8,0x04,0x1e,0x21,0x07,0x50,0x5d,0xb7,0x3f,0x50, +0xc1,0xf3,0x3b,0x1a,0x18,0x03,0x43,0x72,0xc8,0x10,0x18,0xd3, +0x95,0x8c,0x21,0x43,0x7a,0xc3,0x10,0x32,0x86,0x33,0x63,0x64, +0xcb,0x63,0x71,0x56,0x08,0x07,0x34,0x39,0xa6,0xb1,0xbd,0x11, +0xb6,0x22,0x07,0x4e,0xd7,0xe4,0x03,0x27,0x0d,0x76,0xb3,0x92, +0x31,0xb4,0x2b,0x09,0x35,0x67,0x0c,0xe5,0xe0,0x00,0x71,0xaa, +0x41,0xaf,0x94,0x3b,0x59,0xfe,0x26,0xb7,0x53,0xc9,0xc3,0x2b, +0x35,0x89,0x89,0xa4,0x2d,0xb8,0x03,0x7e,0x86,0xe2,0x2f,0xe2, +0x4e,0x9f,0x86,0x0e,0x05,0xe5,0x17,0x71,0x4f,0x1c,0x4a,0x53, +0xb0,0xa6,0x29,0xc0,0xbf,0xcb,0x79,0x07,0xbc,0x25,0x6a,0xdc, +0xf7,0x36,0xa5,0x5f,0x0a,0x87,0x9f,0xc8,0x14,0xcd,0x55,0x3a, +0x45,0xdc,0x87,0x53,0xc4,0xbd,0xe1,0xe1,0x74,0x8a,0x38,0x0b, +0xa7,0x88,0xb3,0xaf,0x4a,0x72,0x3d,0xab,0xff,0x92,0xa2,0x06, +0x35,0x8f,0xd3,0xda,0xda,0x66,0x1a,0x38,0xc3,0x09,0xab,0xa9, +0x1b,0x88,0xc8,0x92,0x0c,0xfc,0x58,0x23,0x5b,0x84,0x0c,0xe4, +0x8b,0x98,0xc0,0x0b,0x1e,0x10,0x6a,0x95,0x1e,0xbf,0x2f,0xfe, +0xb0,0x2e,0xea,0x32,0x33,0x6b,0x52,0xf4,0xa2,0x28,0xbb,0x51, +0x91,0x3b,0x76,0x8d,0xd5,0xed,0x0b,0x1f,0xbf,0x7d,0xa8,0x9d, +0x7f,0xd4,0xac,0xa8,0xa9,0xba,0xf8,0xe1,0xcc,0xbe,0x63,0x7b, +0x36,0xc5,0xdb,0x5d,0x38,0x35,0x7f,0xee,0x19,0xdd,0xac,0xab, +0x27,0x17,0x24,0xda,0xd1,0x92,0x60,0xdc,0x7d,0xcd,0xf5,0xb7, +0x0c,0xec,0xcb,0x21,0x0b,0xd8,0x5c,0xa8,0xc7,0x80,0x7b,0x0e, +0xb1,0x66,0x6f,0xbc,0x45,0xd3,0x12,0xd4,0x94,0x21,0xfb,0x7a, +0xa3,0xa7,0xd9,0x8b,0xd4,0x63,0x88,0x7b,0x6f,0xb0,0x66,0x03, +0x9b,0x62,0x83,0x37,0xce,0xb6,0xac,0x90,0x3d,0x54,0xf2,0xfa, +0x18,0x4d,0x09,0x47,0xde,0x40,0x38,0xb3,0x81,0x03,0xfa,0x55, +0xc2,0x99,0x3c,0xc8,0x2a,0xc6,0x93,0xfb,0x8c,0x53,0x11,0xa3, +0x91,0x3d,0x60,0x15,0x63,0xc0,0x14,0xfc,0x72,0x47,0x3c,0x12, +0xce,0xfc,0x8c,0xb9,0xf0,0x8b,0x76,0x4e,0x35,0x25,0xdb,0x1c, +0x93,0x07,0x36,0xd6,0x43,0x7e,0xaa,0x41,0x12,0x01,0x8c,0x2b, +0xfe,0x26,0x83,0x98,0xc7,0x1c,0x79,0x0d,0x2d,0x99,0xf5,0x1c, +0xd0,0xaf,0xcf,0xf8,0x15,0xf0,0x2d,0x25,0x3b,0x88,0x79,0x46, +0xc9,0x06,0x60,0x81,0x38,0xfb,0x6b,0xc9,0x2c,0x41,0x6c,0xfc, +0x22,0xc3,0xac,0x64,0x0f,0xa4,0xc7,0xaa,0x33,0xf8,0x0c,0x9e, +0x64,0x53,0xe7,0xca,0xb2,0x94,0xba,0x73,0x4d,0xe4,0x46,0xe8, +0xc1,0x92,0xb1,0xe0,0x07,0xb1,0x38,0x80,0xc7,0xa9,0x60,0x28, +0xf8,0x69,0x9e,0xc5,0x5f,0xb9,0xad,0x3b,0xc2,0xdd,0x8e,0xba, +0xe2,0xea,0x1a,0x35,0x6c,0x80,0x34,0x85,0x1b,0x10,0x3f,0xec, +0x19,0x6a,0x77,0x36,0xf0,0xe8,0xc3,0x8e,0x38,0x25,0x02,0x4f, +0x9d,0x58,0x28,0xdb,0x26,0xfe,0x62,0x5e,0x02,0x4c,0x90,0xd7, +0xa8,0xa0,0xd2,0x16,0xa2,0xa0,0x8a,0xe0,0x87,0xe9,0xc4,0x92, +0x28,0x52,0x05,0xf8,0x61,0x4e,0x17,0x6a,0x48,0x47,0x38,0x8c, +0x4e,0xcb,0x61,0x66,0x3d,0x0b,0x1d,0xc9,0x61,0x74,0x48,0x0e, +0x33,0x66,0xe1,0x94,0x23,0x72,0x51,0x38,0x1f,0xa2,0x5d,0xc7, +0x1e,0x95,0xed,0x49,0x20,0x47,0x57,0x34,0xe4,0xe0,0x2c,0xe8, +0x1b,0x6d,0x79,0x54,0x3e,0xa5,0x92,0x6b,0xd9,0x42,0xb8,0xd1, +0x8f,0xe9,0xcc,0xb6,0x20,0xef,0x3a,0x93,0xd3,0xcc,0x52,0xb6, +0x1b,0x9c,0x1e,0x06,0x1d,0x19,0xd2,0xae,0xdf,0xef,0x2c,0xfc, +0x60,0x0a,0xc6,0xe1,0xc0,0x87,0x9e,0x41,0xbd,0xa0,0xb7,0x84, +0xee,0x06,0x55,0x12,0xca,0x47,0x05,0x5b,0x74,0xfa,0x9a,0x5e, +0x67,0x5c,0x02,0xdf,0xe9,0xdb,0x70,0x5d,0xc6,0x85,0x7a,0xeb, +0x3e,0x2d,0x21,0xdf,0xa1,0xc5,0x46,0x8f,0x2c,0x07,0xe2,0x72, +0x2c,0x77,0x14,0xcb,0x17,0x8a,0x55,0x10,0x04,0x9c,0xa6,0xf0, +0xf6,0xc5,0x37,0x7b,0x74,0x6b,0xd9,0x56,0x27,0x6e,0x85,0xff, +0x69,0x07,0xb5,0x72,0x0c,0x68,0x91,0x6a,0xf5,0x36,0x90,0x5a, +0xdd,0x06,0x8c,0x6c,0x1e,0xad,0x5b,0xca,0xbe,0x98,0x30,0xe8, +0xaa,0x83,0x1d,0xa9,0xd5,0xdb,0x13,0x0d,0x53,0xad,0x1c,0x4f, +0xa8,0xa5,0xcb,0xb1,0x1a,0x38,0xe6,0x5c,0x9a,0x2e,0x89,0x4b, +0x3b,0x7b,0x2e,0xed,0x6e,0x42,0x64,0xbb,0xfd,0x52,0xbb,0x99, +0x61,0x91,0x7d,0xed,0xe0,0x4f,0xdb,0xbe,0x61,0xa7,0xca,0x67, +0xea,0xca,0xf7,0x27,0x9c,0xba,0x6b,0x97,0x76,0x36,0x62,0xa0, +0x2e,0x84,0x1b,0x38,0x26,0x02,0x87,0x47,0xa8,0x1b,0x93,0x0c, +0x99,0xd7,0x60,0xd7,0x35,0x74,0x94,0x1d,0xe5,0x5a,0xe0,0xa8, +0x02,0x1f,0xa8,0xd2,0xc8,0xc8,0x97,0xa9,0x44,0x07,0xf6,0x38, +0xaf,0x19,0x80,0x6e,0xaa,0x3d,0x99,0x4a,0xa6,0x02,0x7e,0xc3, +0x00,0x70,0x78,0x59,0xf0,0xee,0xba,0x14,0x7e,0x90,0x71,0x0d, +0xed,0xea,0x4f,0xea,0xda,0x79,0xfa,0x1d,0x3b,0x3f,0x52,0x07, +0x17,0xac,0x60,0x08,0x77,0xfe,0x62,0xc6,0x31,0x83,0x9d,0x21, +0x63,0xd2,0xe8,0x8b,0x3a,0x32,0x04,0xfd,0x34,0x3e,0x46,0x6f, +0xe4,0xb2,0x2d,0xa1,0x6e,0x11,0x68,0x0a,0x54,0x70,0x30,0x46, +0xf3,0xe2,0xf6,0x9d,0x87,0x27,0x75,0x01,0xa7,0x18,0xbf,0x29, +0x91,0xc3,0xfd,0xed,0x86,0x4c,0x8a,0x2f,0xd7,0x5d,0xe6,0xe0, +0x47,0xa8,0x7b,0x1f,0x5b,0x59,0x4f,0x0b,0x96,0xa1,0xb7,0x9d, +0x3b,0x0e,0x08,0x25,0x8d,0x24,0xa2,0xe7,0xa6,0xce,0x9e,0x18, +0x3d,0x65,0x6e,0x7c,0x60,0xbd,0x5d,0x5b,0x76,0x6f,0xd9,0xb5, +0xad,0xf6,0x22,0xae,0x49,0x8a,0xf7,0x1b,0x69,0xb1,0xb1,0xbf, +0xe6,0xec,0xc1,0x69,0xbd,0x75,0xf3,0x38,0xd7,0x70,0x57,0x8f, +0xb6,0x12,0x6c,0xe5,0x9e,0x1f,0x39,0x74,0x56,0x52,0xcb,0x1d, +0x70,0x70,0x5c,0x76,0xef,0xe6,0x75,0x58,0x72,0x3d,0x26,0xda, +0xba,0xf2,0x21,0x3c,0x7f,0xf8,0x40,0x0f,0x3e,0x7a,0x01,0x62, +0x8d,0x38,0xaa,0x6a,0x2a,0xf4,0x99,0x94,0x9b,0xde,0x99,0x6d, +0xda,0x78,0xfb,0x52,0xee,0xe9,0x7d,0x2b,0x74,0x9f,0x1a,0x9a, +0x2c,0x34,0x72,0xde,0x6a,0x0e,0x0d,0x20,0xc4,0x9a,0xdc,0x99, +0x17,0xac,0xf0,0x36,0xd6,0xe8,0xd7,0xd9,0xf4,0x28,0x8e,0x6b, +0x01,0xde,0x64,0xa6,0xdc,0x9c,0x71,0xfe,0xe4,0xc7,0x1a,0x27, +0xcb,0xed,0x35,0x83,0x23,0x2f,0x24,0xeb,0x6e,0x71,0x48,0x31, +0xf9,0xd4,0x85,0x9b,0x37,0x4f,0x8d,0x0a,0x96,0x06,0x71,0xc1, +0x91,0xa3,0x06,0x4b,0x20,0x92,0x1e,0x9a,0x7b,0xe4,0x70,0x1f, +0x4e,0xbd,0x20,0x26,0x57,0x56,0xe7,0x42,0x50,0xb4,0x65,0x66, +0x29,0x5c,0x2a,0x55,0xc9,0x7b,0x60,0x9f,0x06,0xb6,0x10,0x0f, +0x60,0x9d,0x6f,0x49,0xa8,0xc0,0xf0,0xad,0x2f,0xd4,0x69,0x1b, +0xdf,0x32,0xee,0xd7,0x7a,0xa7,0x26,0x47,0xec,0x19,0x68,0x47, +0xea,0xb7,0x6b,0x42,0xda,0x90,0x36,0xe5,0x4d,0xa0,0x09,0xe8, +0x9e,0x3e,0x07,0xf4,0x56,0xe7,0x91,0x48,0x4d,0xbb,0x81,0xc9, +0xef,0x75,0x7a,0xee,0x7d,0x5a,0x72,0x79,0x79,0x5a,0xb0,0xa3, +0xe4,0xcd,0x39,0x0e,0x0c,0xc6,0x79,0xfe,0x3a,0xf8,0x26,0x1b, +0x1e,0x65,0x5b,0xfe,0x56,0x0a,0x9b,0x4b,0x55,0x70,0x1b,0xbe, +0xd1,0xdc,0x4a,0xd8,0x71,0xf4,0x94,0xae,0xaa,0xf1,0xb5,0x04, +0xfb,0x0f,0xcc,0xde,0x33,0x9b,0xaf,0xa4,0x68,0x53,0x62,0xaf, +0xcc,0x3e,0x23,0x7d,0xf8,0x10,0x9a,0xd0,0xb8,0x31,0x73,0x34, +0x32,0x6c,0xc7,0x20,0xbb,0x41,0x61,0xf3,0x27,0x47,0xea,0x1a, +0x57,0x85,0x86,0x7d,0xb0,0x67,0x66,0x8f,0x8d,0x1d,0x36,0x44, +0x3b,0x64,0xf3,0xb0,0xbd,0x63,0x25,0x7b,0xfb,0x6b,0x61,0x55, +0x55,0xcc,0xe4,0x53,0x09,0xf3,0x6f,0xd9,0x65,0x5b,0x75,0x19, +0x72,0xe9,0xa9,0x2e,0x8b,0x7b,0x9a,0x72,0xa9,0xa8,0x28,0x65, +0x44,0x5b,0xa9,0x1f,0xd7,0x76,0xc8,0x88,0x2e,0x92,0xda,0x39, +0x36,0x4f,0x6e,0x98,0x67,0x99,0x50,0x56,0x85,0x16,0x35,0x8d, +0xb0,0x9a,0xf7,0x5c,0xc9,0xfa,0xb4,0xab,0x47,0xb3,0x07,0x9e, +0xab,0x37,0x63,0xc8,0x98,0x49,0x43,0x7e,0xa9,0x2d,0x37,0xe4, +0x12,0x97,0x9c,0x9c,0xb2,0x2b,0x2c,0xeb,0x54,0xbd,0x29,0x59, +0x41,0x09,0x1e,0xeb,0x6b,0xbf,0xf7,0x76,0xe0,0xc8,0x37,0xf3, +0x7a,0x35,0x25,0x2d,0xb4,0xa4,0x79,0x4e,0x13,0xa8,0x3b,0x4f, +0x72,0xe0,0x1a,0xa3,0x8d,0x79,0xca,0x15,0x9d,0x4a,0xcf,0xd9, +0x26,0x99,0xb4,0x5c,0xef,0xed,0x91,0xe9,0x0f,0xb4,0xea,0xdd, +0x31,0x05,0xd0,0x2d,0xfb,0x55,0x36,0x74,0x2b,0xb0,0x4c,0x2b, +0x47,0xbb,0x10,0xa3,0x01,0x9b,0xfb,0xd9,0xcf,0x2f,0xe9,0xfa, +0x5e,0x62,0xba,0x4d,0xf6,0x1b,0xd2,0xd6,0xce,0xbe,0x4f,0xee, +0x7b,0x9c,0x64,0x6f,0xca,0x26,0xdb,0x5e,0xc1,0xb6,0x6c,0xb2, +0x89,0x7d,0xbf,0xe3,0x5e,0xee,0x5f,0x76,0xa5,0xe9,0xa1,0x5e, +0x47,0x74,0x77,0xcf,0x33,0xaf,0x86,0x77,0x4e,0x55,0xce,0x5d, +0x34,0x22,0x36,0xf4,0xdc,0xc5,0x1f,0x68,0x0f,0xbd,0xd0,0x15, +0xfb,0x96,0x68,0xf5,0xb2,0x65,0x3e,0xac,0xd7,0x5b,0xc6,0xc9, +0x11,0xaa,0x38,0xa2,0xd5,0x80,0x15,0xfb,0xf0,0x42,0x62,0xee, +0x7a,0xdd,0x09,0xd0,0x33,0xd0,0x99,0x5d,0x9f,0xcf,0x90,0xce, +0xec,0x21,0x58,0xcf,0x40,0x2b,0x76,0x83,0x9e,0x21,0xdf,0xb2, +0x5d,0x46,0x86,0x7a,0x2f,0xd1,0xcd,0x26,0xa3,0x18,0xe2,0xc0, +0xfe,0xdc,0x83,0x81,0x46,0xec,0x58,0x93,0x25,0x43,0x1a,0xb3, +0xea,0xd8,0x15,0x85,0x30,0x4e,0x0f,0xf1,0x05,0xd6,0x6f,0xcb, +0xa3,0x8a,0x85,0x4a,0x79,0x9f,0x6d,0xa1,0xc9,0x62,0x2d,0x77, +0xfe,0xf0,0xa9,0xac,0x42,0xed,0xb6,0xe5,0x5b,0x7f,0xdd,0x2a, +0xc1,0x50,0x3d,0x99,0xc8,0x0a,0xef,0x16,0x5e,0x5c,0x70,0x31, +0x59,0xfb,0xfa,0xc6,0xb5,0xb2,0xfc,0x84,0xa8,0xa0,0x93,0xf4, +0x58,0x7f,0xde,0x30,0x9f,0x4b,0xca,0x99,0xd8,0x76,0xe4,0xfb, +0xc1,0x3b,0x46,0x6c,0x1f,0xa6,0xf3,0xf2,0xae,0x60,0x85,0xca, +0x55,0x0b,0x56,0xcd,0x9b,0xa7,0x1d,0x34,0x3f,0x60,0xd0,0x0c, +0xa9,0x29,0xa7,0xfe,0x79,0x45,0x9e,0x7c,0x3d,0xcf,0x32,0xff, +0x11,0xf0,0x77,0xc0,0xe6,0x91,0x0a,0x4a,0x3b,0x68,0x8a,0x39, +0x10,0xb6,0x18,0x0a,0x80,0xd5,0xfe,0xe9,0x77,0x93,0x48,0xc7, +0xa5,0xc5,0xab,0x18,0x58,0xc8,0x65,0x2d,0xbe,0x3a,0x21,0x3e, +0x3c,0xe3,0x6a,0xbd,0xd0,0x7b,0x7d,0xcf,0xb5,0xd9,0x50,0xfb, +0x71,0xff,0x0e,0x1c,0xa9,0x1d,0xdb,0xb1,0x7f,0x43,0xad,0x63, +0xc6,0x20,0x10,0x27,0x4a,0x64,0x13,0xe7,0xb3,0x31,0xe4,0xd4, +0x88,0xd4,0x01,0x41,0xf5,0x12,0xfb,0xe6,0x84,0xbd,0x5b,0x52, +0xbb,0x03,0x07,0x01,0x70,0x4c,0xd3,0x3b,0x24,0xbc,0xd3,0x22, +0x09,0x96,0x73,0x95,0xb3,0x4e,0x47,0xf9,0x68,0x49,0x06,0x14, +0x6b,0xd2,0x12,0x4e,0xdf,0xdf,0x28,0x91,0x69,0x9c,0xe7,0xbe, +0x88,0x23,0x39,0x5a,0xf5,0x72,0x54,0xb1,0xc6,0xb4,0x77,0x1e, +0x44,0x5b,0xc2,0xb6,0x27,0x2a,0x9c,0xc2,0x36,0xd6,0x64,0x13, +0xaf,0x57,0xe0,0x95,0x4d,0x1a,0x70,0xe8,0x25,0x3c,0x60,0xd0, +0xaf,0xe8,0x42,0x72,0xe8,0x39,0xda,0x9e,0x90,0x43,0xf7,0x75, +0xfb,0x93,0x07,0x0c,0x69,0xe0,0x03,0x5e,0x2d,0x89,0x17,0xfe, +0x25,0x8d,0x9f,0x00,0xf2,0xee,0xec,0xde,0x02,0x79,0x6d,0x81, +0x75,0xe5,0x13,0xb0,0xbc,0x03,0xea,0xf2,0xfe,0xe5,0xc2,0x9f, +0xf0,0x76,0xaf,0xe6,0x3a,0xfb,0xfe,0x61,0x31,0x58,0x40,0xad, +0x2e,0xc7,0xfa,0x6e,0x56,0x0e,0x23,0x67,0x6e,0xbe,0x71,0xfe, +0x99,0xb6,0x0a,0x0b,0x60,0xa5,0x19,0xef,0xfb,0x3b,0x92,0xc1, +0x9f,0x1c,0x61,0xb0,0xe3,0x1d,0x96,0x74,0x95,0xa7,0x68,0x60, +0x2c,0xfa,0xea,0x63,0xb9,0x74,0x18,0xab,0x39,0xcc,0xde,0x3b, +0x36,0xc9,0x5f,0x37,0x89,0xf3,0x9f,0x34,0xa9,0x8f,0x34,0x95, +0x56,0x03,0x9d,0xec,0xb9,0x98,0x3e,0x17,0xd3,0xe7,0x6a,0x8e, +0xd3,0x03,0xcc,0x57,0x26,0xf4,0xd5,0x45,0x72,0x7d,0x87,0x4d, +0xe8,0x29,0x4d,0x64,0xd5,0xfb,0x96,0x17,0xc8,0x89,0xca,0x6b, +0x38,0x48,0xef,0xa0,0xc9,0x61,0x37,0x3e,0xa9,0xda,0x9a,0x9e, +0x71,0xf6,0x71,0x7d,0x9f,0xcb,0x33,0xfd,0x46,0x85,0xfb,0x2e, +0xa8,0x7f,0x43,0xde,0x71,0x3c,0x7a,0xef,0x84,0x1d,0x11,0xf5, +0xb3,0x2f,0x4c,0xc9,0x18,0x9d,0x30,0x68,0x7f,0xfd,0x4d,0x55, +0x4c,0x6f,0x76,0xb1,0x3b,0xb3,0x7a,0xc1,0xbc,0x95,0xf3,0xec, +0xe2,0xd8,0x8d,0x06,0xfa,0xdc,0x9e,0x21,0xf5,0xa6,0x76,0x46, +0x1f,0x7e,0xb8,0x96,0x78,0x24,0x13,0x8b,0x8a,0x30,0x29,0x86, +0xd4,0x62,0x72,0xd8,0x4d,0x4f,0xb7,0x2f,0xdb,0xf5,0xeb,0xae, +0xe5,0xf5,0x0f,0x1a,0x59,0xcd,0xb6,0x6d,0xbf,0xc6,0x6d,0xd5, +0x05,0x98,0x2e,0x47,0xaf,0x9c,0xbb,0x66,0xfe,0xfa,0xfa,0xb7, +0xe4,0x33,0x0c,0xe9,0x4d,0x4a,0xe9,0xfe,0xdc,0xaa,0xf3,0x0f, +0xf2,0x8f,0x48,0x21,0xa6,0x9f,0x99,0x91,0x67,0x66,0x67,0xa2, +0x2e,0x50,0xf1,0x72,0xcf,0x7e,0x9a,0x0d,0x5e,0xd5,0x02,0xf6, +0xa7,0xbc,0xaf,0x50,0x83,0x02,0xc6,0x9e,0x3d,0x74,0x32,0x7d, +0xf5,0xfd,0xda,0x30,0x24,0x9b,0x0c,0x63,0x7f,0x39,0x16,0x7b, +0x74,0xf1,0xd1,0xda,0x30,0x27,0x9b,0x2c,0x65,0x05,0x79,0xf9, +0xa6,0xe5,0x9b,0x36,0xff,0x77,0x41,0xfb,0x69,0xe5,0xc2,0x55, +0x31,0xba,0x11,0x3e,0xb7,0xd9,0x8d,0x93,0x37,0x4f,0x59,0x3f, +0xb1,0x76,0x7b,0x1f,0xe4,0xcb,0x0b,0x36,0xc0,0x2c,0x6e,0xb2, +0x3f,0xa7,0xae,0xc0,0x5e,0x5e,0x48,0x7b,0x79,0x61,0xb4,0xe5, +0xcb,0x62,0x78,0x59,0xac,0x92,0x97,0xdb,0xfe,0x0e,0x0b,0x0d, +0xd9,0x9e,0xaf,0xf0,0x03,0x0b,0x3b,0x90,0x45,0x24,0x80,0x45, +0x2b,0xb1,0x88,0x71,0x22,0x0b,0x3d,0x7d,0x0c,0x2d,0xf1,0x43, +0x16,0x16,0xc3,0x22,0xe8,0xcf,0x92,0xfe,0x19,0x1a,0xd8,0xb7, +0x9a,0x03,0x27,0xb2,0x8f,0x39,0x5c,0xa5,0x81,0x76,0x24,0x3e, +0x8e,0x55,0xff,0x15,0x93,0x3d,0x7e,0x36,0x14,0xea,0xf7,0x66, +0x41,0xf3,0xfb,0xd6,0x95,0x06,0x08,0x28,0xde,0x59,0x98,0x57, +0x28,0xc4,0xc4,0x42,0x77,0x5b,0x28,0x2c,0xe7,0xaa,0xc8,0x1c, +0x46,0x48,0x89,0xed,0x7c,0x2a,0x65,0xca,0x03,0x3b,0xb0,0x48, +0xba,0xfe,0xe8,0xc6,0xbc,0xfd,0x7e,0x19,0xba,0x05,0xdb,0x99, +0xd1,0xe7,0x17,0xee,0x3a,0xae,0x3d,0xb1,0x6b,0xf7,0x89,0x83, +0x7b,0x7f,0xfe,0x69,0x97,0x74,0x22,0x95,0xd9,0x3f,0x71,0xfc, +0xba,0x48,0xbb,0x2e,0xc3,0x43,0xfa,0x0c,0xdb,0x39,0xee,0xd6, +0x20,0xdd,0xee,0x39,0xcc,0xd5,0xf0,0x0d,0x8b,0x27,0x69,0x47, +0x4c,0x99,0x15,0x3a,0x74,0xc6,0xc1,0x94,0xe9,0x52,0x0b,0x18, +0xc1,0xe4,0xef,0x3f,0x95,0xf1,0x5c,0x0b,0xdf,0xf8,0xe7,0x90, +0x6f,0x24,0xd2,0x9d,0xc5,0xe2,0x3e,0xf9,0x71,0x06,0xb9,0x01, +0x4e,0x83,0x4a,0xb9,0x7b,0xe7,0xa2,0xfc,0x74,0xe1,0x9c,0x5f, +0x44,0x54,0x1f,0xb4,0x88,0xbf,0x63,0xb3,0x63,0xb2,0x5f,0x2a, +0xcd,0x3e,0xf3,0xb1,0x96,0xca,0x58,0xc7,0xf6,0x39,0x9b,0x01, +0x31,0x0c,0x68,0xb3,0x49,0x1d,0xf6,0xc0,0x4b,0xa6,0x32,0xbb, +0x2b,0x9b,0x0e,0x0b,0x19,0x77,0x76,0x30,0x59,0xc4,0x10,0x6f, +0xd6,0x1f,0x39,0xd0,0x92,0xed,0x4f,0x1f,0xba,0xb3,0x41,0xf8, +0xe0,0xc1,0xde,0x22,0x0b,0x99,0x6e,0x3e,0xcf,0xd9,0x7d,0x4e, +0x0c,0x61,0x7c,0x40,0x83,0x80,0x18,0xe6,0x39,0x9b,0x09,0x8b, +0x19,0x18,0xc4,0x92,0xab,0x44,0xd4,0x28,0xaf,0x0f,0x7f,0x3e, +0xcb,0x80,0x03,0xbb,0x78,0x0c,0x03,0xe5,0x64,0xab,0xa6,0x2f, +0x6c,0x5d,0x8c,0x80,0x26,0x08,0xa0,0xaf,0x1c,0xc9,0x7e,0x58, +0xae,0xb9,0x07,0x3b,0x94,0x97,0x92,0x3b,0xb6,0x0e,0x65,0x88, +0x2b,0xab,0x06,0x8f,0x15,0x7a,0xf9,0xa6,0xde,0xb2,0xd2,0xf0, +0x54,0xf9,0xa7,0x82,0x6d,0xb6,0x30,0x8f,0x05,0x8b,0x87,0x77, +0xa1,0xbe,0x4e,0x8e,0xa3,0xd1,0x45,0xda,0x0d,0x99,0x1e,0x28, +0x91,0x16,0x72,0x94,0x27,0xdb,0xd6,0x74,0x46,0x63,0xac,0x0d, +0x2d,0xb9,0x9b,0x49,0xd3,0xdb,0xe9,0xc8,0x47,0x03,0xbc,0xe4, +0xa0,0x7e,0xd7,0xbb,0xc4,0x42,0x22,0x0b,0xd0,0xa0,0xa9,0xa7, +0xad,0xc8,0xce,0xca,0x82,0x9b,0x59,0x69,0x19,0xe9,0xd1,0x96, +0x79,0x8f,0x61,0xc9,0x03,0x95,0xdc,0x00,0x1a,0x6a,0x1e,0xc8, +0x33,0x72,0x32,0x7a,0xa7,0xa3,0x89,0x6f,0xee,0x07,0xcd,0x89, +0xb8,0x8c,0x4d,0x9a,0x12,0x76,0xb4,0x8f,0x1d,0xb1,0xe8,0xdd, +0x85,0xae,0x5a,0xe7,0x74,0x01,0x8b,0x7b,0x09,0x47,0x92,0x8e, +0xe8,0xd6,0xb0,0xa4,0xce,0x4f,0x9a,0xee,0x43,0x13,0xf4,0xba, +0x1c,0x4e,0x9f,0x98,0x50,0x90,0x9d,0x34,0x76,0x90,0x44,0x6a, +0x73,0x83,0x42,0xc6,0xfa,0x48,0x30,0x83,0x0c,0xd1,0x64,0x9b, +0xba,0xfa,0x70,0xea,0xcd,0xc8,0x5a,0x43,0x2e,0xdc,0xa4,0xf2, +0xa4,0x02,0x6f,0x30,0x68,0x8a,0x59,0x98,0x4f,0x0c,0xcc,0x5b, +0x96,0x2c,0x01,0x03,0x03,0x11,0xb9,0x24,0x8a,0x85,0x79,0x70, +0x93,0x0e,0x1f,0x33,0xc9,0x4d,0xc6,0x13,0x6e,0x76,0x20,0x37, +0xdd,0x7a,0x95,0x12,0x43,0x31,0xab,0x5e,0x55,0x7d,0x42,0x7c, +0x3b,0xce,0x78,0x66,0xc2,0x29,0x4d,0x2e,0x47,0xb4,0x7d,0x99, +0xe7,0x1c,0x68,0xef,0x32,0xe6,0xdf,0xd0,0x6b,0x9e,0x48,0xa6, +0x80,0xa7,0xe8,0x82,0x1f,0xe2,0x55,0x02,0x93,0x38,0xf5,0x3e, +0x2c,0x35,0xe8,0xfe,0x3d,0x94,0xe4,0x2c,0x1a,0x8a,0xea,0x09, +0x6c,0x7a,0xa2,0x82,0x40,0x08,0xd2,0x40,0x33,0xf6,0x75,0x6a, +0x4a,0xd9,0x01,0xdd,0xf3,0xec,0x4e,0xec,0xca,0xed,0x2b,0x77, +0xec,0xd0,0xee,0x58,0xbe,0x73,0xf9,0x0e,0xe9,0x51,0xb6,0x0b, +0x5b,0x3a,0x3d,0x20,0xb9,0xa5,0x1d,0x99,0x4f,0x1a,0xd4,0x08, +0x76,0xe9,0x13,0xd6,0xc8,0x5a,0x61,0xa6,0xa4,0xd3,0x53,0x47, +0x6f,0xd7,0x91,0x55,0x2c,0x71,0xb7,0xaa,0x82,0x4d,0x8d,0x39, +0xb2,0x89,0xd8,0x6a,0x72,0x61,0x0d,0x37,0xf2,0xa7,0x31,0x53, +0x83,0xed,0xd4,0xfa,0x5f,0x0b,0x60,0xdc,0x03,0xd8,0x53,0x40, +0x5f,0x8f,0xf3,0xd8,0xd4,0x0b,0x1d,0x34,0xdb,0x8b,0x99,0xe5, +0x1b,0xb7,0x2e,0xdf,0x64,0x07,0x2c,0x38,0xdf,0x84,0xd1,0xba, +0xdf,0xc9,0x2f,0xdc,0x15,0xd8,0x7c,0x63,0xde,0xd9,0xd1,0x7b, +0x03,0xeb,0xe7,0x5c,0x18,0x5f,0x30,0x28,0xb1,0xcb,0x9e,0xfa, +0x3b,0x2a,0x98,0xbe,0xec,0x4f,0x1d,0x99,0x95,0x8b,0x97,0xae, +0x58,0x66,0x47,0x7a,0x39,0xe0,0x58,0x32,0x9f,0xf8,0x67,0x13, +0x06,0xb8,0xd1,0xd0,0x49,0x04,0x29,0xaf,0x18,0xbe,0x93,0xd6, +0xb1,0xad,0x4c,0xc7,0x99,0xde,0xc7,0xc7,0xdc,0x7f,0xa3,0x95, +0xf9,0x45,0x9a,0x11,0x9c,0x63,0xbf,0xbe,0xa4,0x56,0xec,0xc2, +0x95,0x2b,0x17,0x49,0xa7,0x61,0x0c,0xa3,0xde,0x87,0x26,0xd4, +0x8f,0xaa,0xaf,0x6b,0x81,0xe5,0x5f,0x4f,0x60,0x09,0x36,0x3a, +0x37,0x46,0x53,0xfa,0xe0,0x64,0xe6,0x75,0x5d,0xf0,0x4d,0x26, +0x20,0x70,0xe8,0xec,0xc1,0x76,0x9e,0xc1,0x17,0x1e,0x1d,0x5a, +0xb7,0x77,0xd3,0x6e,0x9d,0x5c,0x37,0x9b,0x5c,0x41,0x67,0xf8, +0x15,0x03,0xd6,0xd9,0x9d,0xd9,0x75,0x3b,0x56,0xef,0xd9,0xa7, +0x05,0x8b,0x0e,0xf7,0x48,0x9d,0x1e,0x5e,0xd3,0xfd,0x06,0x4b, +0xd7,0x83,0x98,0x84,0xf3,0x09,0xbb,0x52,0xec,0x8a,0xae,0x46, +0xf6,0x9c,0x13,0x37,0xef,0x97,0x05,0x3a,0xd3,0x37,0x3e,0x70, +0x99,0x25,0x1d,0xd1,0xa1,0xff,0xc1,0xa7,0x80,0x5d,0x12,0xfd, +0xcb,0xcc,0xc9,0x5a,0xa2,0x2a,0xee,0x02,0x82,0xa4,0xde,0xf7, +0x6b,0xa1,0x9c,0x54,0xa0,0x0c,0xaa,0xd5,0xcd,0xdf,0xb4,0x75, +0xf9,0x66,0x3b,0xf8,0x31,0x3f,0x07,0xcd,0xb8,0xcf,0x45,0xa6, +0xdb,0x14,0xbf,0x60,0x17,0xbb,0x25,0x8b,0x57,0xac,0x5c,0xa2, +0x7b,0x21,0x9f,0x49,0x9e,0x13,0x1f,0xb1,0x3b,0x14,0x19,0x31, +0x41,0x3f,0x24,0xb1,0xc7,0xde,0xfa,0x3b,0x9e,0x57,0x33,0xe2, +0x97,0x45,0x2b,0x7e,0xb1,0x23,0xdd,0x1a,0x12,0x1e,0xad,0xb8, +0x6f,0x0e,0x61,0x81,0x8d,0xa0,0x8c,0xa8,0x97,0xfb,0x14,0xea, +0x4a,0x9b,0x91,0x11,0xf1,0x4c,0xaf,0xf8,0xb1,0xf9,0xaf,0xb5, +0x54,0x40,0xe4,0x48,0x7d,0x85,0xde,0x2c,0x22,0x77,0x8d,0xb5, +0x35,0x7a,0xd3,0x41,0x6f,0x4e,0x3e,0x48,0xda,0x29,0xbf,0x60, +0xba,0x29,0xb2,0x44,0x8e,0xe4,0x14,0x0b,0x96,0xac,0x7f,0xa5, +0x7f,0xa1,0xb7,0x94,0x1b,0x18,0x54,0xf2,0x12,0x5b,0x32,0x03, +0x92,0x19,0xa8,0x9d,0x77,0xe7,0x8f,0x2d,0xba,0xdf,0xf5,0xcd, +0xd8,0xc5,0x45,0xa3,0x36,0xcf,0x5b,0x55,0x7b,0x0d,0x74,0xd4, +0x9b,0xb6,0x63,0x46,0x2e,0xfb,0x5a,0x94,0xdf,0x2a,0x1d,0xf9, +0xcd,0x1b,0x7e,0x63,0x7d,0x87,0x46,0xf5,0x96,0xc8,0x74,0x6f, +0x50,0xb3,0x30,0x85,0x24,0x33,0xea,0x15,0x2b,0xf2,0x8d,0x0c, +0x1a,0xc3,0x5a,0x25,0x70,0x16,0xfb,0x1b,0xa7,0x08,0x21,0x2c, +0x74,0x2a,0x03,0x3b,0xe8,0xa2,0xeb,0xc0,0x12,0x07,0x9f,0x36, +0xa4,0x96,0x44,0x2c,0x60,0x02,0x0b,0x13,0xff,0xa0,0xb2,0x3a, +0xb1,0x11,0x95,0xdb,0xcf,0xbf,0xa1,0x8f,0x3b,0x9a,0xd7,0x16, +0x61,0x4c,0x2f,0xee,0x75,0x02,0xe3,0xf2,0xf9,0x97,0x7a,0x27, +0x56,0xb4,0x9e,0xfe,0xb5,0x1e,0x36,0x14,0x28,0xd4,0x53,0x2a, +0x54,0xf2,0x78,0xa8,0xa7,0xd1,0x93,0x23,0xaf,0x6b,0xc2,0x61, +0xe0,0x24,0xd1,0xfb,0xa1,0x12,0x0e,0x83,0x14,0x7b,0x7a,0x1b, +0x5a,0xe0,0x87,0xd4,0x2b,0x81,0x7a,0xac,0x1c,0x6b,0x55,0x13, +0x19,0x63,0xf0,0x97,0xc8,0x18,0x67,0xf6,0x16,0xc0,0x9c,0xfb, +0x10,0x51,0x60,0x0d,0xc3,0xf4,0xe9,0xfa,0x7b,0xd4,0xe8,0x7e, +0xa4,0xde,0x84,0xfe,0x3d,0x5b,0xf5,0xe0,0x6f,0x56,0xd7,0x64, +0xb6,0xba,0x95,0x01,0x59,0x2d,0x37,0x4b,0x7f,0x78,0x3b,0xfa, +0xbf,0xf7,0x76,0x24,0xb5,0xd0,0xf0,0xd6,0x72,0xd4,0xbf,0x4f, +0xe7,0x48,0x1b,0xf9,0x91,0x06,0x5b,0xaa,0x18,0xdc,0x29,0x66, +0x83,0x4b,0x42,0xd8,0x9e,0x56,0x10,0xce,0x0a,0x1f,0xef,0x5f, +0x19,0xdf,0x4f,0x37,0x81,0xeb,0x37,0x6c,0x7c,0x4f,0x89,0x84, +0xb3,0xea,0x08,0xba,0x73,0xea,0xdb,0xf7,0xde,0x7a,0x6b,0x60, +0x0c,0x10,0x46,0xcf,0x68,0x3e,0x02,0x46,0x39,0x4f,0x32,0xc6, +0x14,0x60,0x90,0xb7,0x92,0x8b,0x60,0x27,0x0a,0xaf,0xa1,0x18, +0x06,0x95,0xf2,0xea,0x45,0x2b,0xf4,0x43,0x95,0xad,0x56,0x2b, +0xa2,0x95,0x0c,0x13,0x0d,0xc2,0xcc,0x47,0xbc,0xb0,0x5c,0x0e, +0x36,0x05,0x68,0xa6,0xf1,0xea,0xa6,0x3c,0x3d,0x41,0x7a,0xb9, +0xe4,0x11,0xb8,0xae,0x6c,0x2f,0x82,0x9d,0xd1,0xab,0xa1,0xd8, +0x33,0x06,0x1a,0x88,0x63,0xda,0x8b,0xfb,0xe4,0x33,0x2d,0xc5, +0xa6,0x7c,0x1e,0xf4,0x40,0x84,0xb1,0x50,0x18,0xd6,0x5e,0xbc, +0x2f,0x9f,0xb7,0xe7,0x9b,0xf2,0x99,0x5f,0x81,0xa6,0x18,0x43, +0x1c,0x10,0x54,0xf1,0x1e,0x21,0x73,0xdf,0x3c,0x7d,0x33,0x05, +0x4b,0x88,0x6d,0xcd,0x0b,0x17,0x62,0x9d,0x78,0xfc,0xd5,0x4c, +0xc4,0x5f,0x4d,0x45,0xe1,0x1b,0x0b,0x2f,0xf9,0xb6,0x23,0xdf, +0xd3,0x95,0x9f,0x29,0x22,0xe6,0xbd,0x2a,0xbd,0x41,0xe8,0x8c, +0x68,0xe1,0x88,0xd5,0x19,0x91,0xc2,0x11,0x67,0xf1,0x76,0x32, +0xcb,0x5e,0xac,0xa9,0xd2,0x66,0x70,0xcd,0x6d,0x2f,0x6e,0x97, +0x0f,0x35,0x42,0xf2,0xe0,0x95,0x41,0xb7,0xb7,0xb9,0x66,0xec, +0x6e,0x2f,0xf6,0x37,0x36,0x68,0x82,0x58,0x60,0x99,0x83,0xa0, +0xf9,0x10,0x3f,0xcd,0x20,0xcc,0x42,0x4a,0x17,0x91,0xd2,0x2c, +0x73,0xa0,0x32,0x73,0x00,0x2f,0xc2,0xcb,0x0f,0x35,0x33,0xf9, +0x9e,0x64,0xf4,0x0d,0xb0,0xff,0x1c,0x61,0x86,0x92,0x99,0x90, +0x35,0xca,0x20,0x24,0xc9,0xab,0xf4,0x9a,0x01,0x70,0x86,0xdd, +0x23,0x0a,0xc5,0x4e,0xfc,0xda,0x11,0x7b,0xc7,0x27,0xfc,0xb2, +0x32,0xae,0x9e,0x90,0x3c,0x78,0x74,0xd8,0x22,0x5e,0x28,0x46, +0x9b,0x1c,0xa3,0x71,0xe3,0x68,0x04,0x34,0x1a,0x14,0xad,0x3a, +0x04,0x81,0x84,0x3c,0xbb,0xd6,0x4b,0xbc,0x5c,0xb2,0x81,0x06, +0x9e,0xf9,0xd5,0x20,0x4c,0xef,0x86,0x85,0x9f,0xeb,0x86,0xa5, +0x4f,0xef,0x86,0x0d,0x39,0xd7,0x0d,0xcb,0xfe,0x36,0x76,0x9f, +0xbc,0x53,0x33,0x1a,0x6b,0x79,0xf6,0x7f,0x46,0x05,0xc1,0xf8, +0x87,0xc6,0xff,0x4c,0x37,0x52,0xfb,0xc2,0x34,0x26,0x96,0xac, +0x74,0xc7,0x6c,0x25,0xad,0xf8,0xcb,0x25,0xc3,0xe1,0x59,0x20, +0x66,0xa2,0xdc,0x3c,0x47,0xb9,0x39,0x9d,0x72,0xf3,0x1c,0xe5, +0x66,0x1d,0x8b,0x97,0xf2,0xf5,0x7e,0xbc,0xc0,0x58,0xb4,0xa5, +0x0f,0x6d,0xc4,0xbd,0x3c,0x4e,0xc7,0x0e,0xb6,0x13,0xd5,0xc8, +0x60,0xec,0x3d,0x32,0x96,0xf2,0xb7,0x23,0x2d,0x6e,0x28,0x2d, +0xae,0x23,0x2d,0x6e,0x28,0x2d,0x8e,0xb1,0xc0,0x6e,0x8d,0x13, +0x85,0xd8,0xd8,0x25,0x9f,0xd6,0xd9,0x63,0xbe,0x65,0xc0,0xf4, +0x50,0xe4,0xe0,0x36,0xf4,0x4a,0xa3,0xcc,0x71,0x48,0x3d,0xf7, +0xcf,0x85,0x7e,0x8b,0x59,0x0f,0x69,0x5c,0x45,0x57,0x58,0xa4, +0xf9,0xcb,0x4b,0x6c,0xc5,0x9a,0x73,0xd9,0xb4,0xc7,0xaa,0x4e, +0x82,0x8c,0xd1,0x06,0x61,0x1a,0x2d,0xf0,0x2c,0x2d,0x70,0x1a, +0x2d,0xf0,0x2c,0x2d,0xb0,0x2e,0xb2,0xe2,0xd0,0x7e,0xec,0xc2, +0xeb,0x40,0xcf,0xc1,0x8d,0x93,0x3d,0x48,0x13,0x94,0xb4,0x53, +0xc6,0x8b,0x6e,0xa2,0x22,0x0d,0x9f,0x85,0x89,0x4c,0xf9,0xef, +0x95,0x46,0x29,0xf3,0xe1,0xb1,0xd2,0x01,0xff,0xea,0x48,0x25, +0x84,0xd2,0xfa,0x59,0xf6,0x30,0x59,0x29,0x3b,0x1e,0x67,0x60, +0x8e,0xf3,0x98,0x61,0x06,0xe2,0x9f,0xa7,0x45,0x92,0x7a,0x46, +0xdb,0xae,0x54,0x6a,0x12,0xd2,0xcc,0x9b,0x22,0x67,0xa5,0x0a, +0xb3,0x11,0xe9,0x12,0x22,0xcd,0x46,0xa4,0x4b,0x94,0x85,0xf7, +0x8d,0xeb,0x7b,0x52,0x9c,0x38,0x5a,0xff,0x11,0x50,0x1e,0xf4, +0xcf,0xad,0x66,0x2c,0x42,0x8c,0xb9,0x47,0xf8,0x46,0x22,0x8d, +0x96,0x95,0x54,0xf6,0x06,0x5c,0xf7,0x77,0x41,0x66,0x1b,0xbb, +0x35,0x14,0xa7,0xc5,0x80,0x05,0x3f,0xbf,0x0b,0x1f,0x27,0xc7, +0xb7,0x14,0x1b,0x89,0xef,0xb1,0x21,0x49,0x65,0x73,0xa1,0x70, +0x7a,0x17,0x3e,0x41,0x3e,0x6d,0x8f,0x79,0x5e,0x7e,0x05,0x0a, +0x32,0x06,0x3a,0x20,0x88,0x46,0x19,0x4a,0x2a,0x5b,0x89,0x9a, +0xf2,0x8b,0x41,0x18,0x1c,0xdb,0x96,0x17,0x0e,0xc6,0x36,0xe7, +0x85,0x88,0x58,0xfc,0x76,0xe1,0x51,0x4f,0x5a,0xca,0x37,0x1d, +0xf9,0x69,0xae,0xfc,0x36,0x1e,0xf1,0x7e,0xab,0x2a,0x35,0x08, +0xad,0x10,0x29,0x10,0x71,0xda,0x0b,0x81,0x88,0xb1,0x38,0x8e, +0xcc,0xb5,0x17,0x6b,0xea,0x73,0x0c,0x5c,0x9f,0x77,0xe1,0x17, +0xc9,0xfb,0x1a,0x51,0xda,0x11,0x19,0x34,0x0c,0x9c,0x77,0xc6, +0x85,0x2e,0x7c,0x3b,0x63,0xbd,0x26,0x88,0x85,0x92,0x8f,0xa0, +0xd5,0x10,0xbf,0xac,0x0b,0x4f,0x1a,0xc9,0x05,0x6e,0xfc,0x34, +0x45,0x1f,0x6a,0x22,0x02,0x52,0xfc,0x90,0xac,0x5d,0x06,0x21, +0xe7,0x4b,0x98,0x87,0x07,0x58,0xd6,0x69,0xf7,0x5d,0xdc,0xca, +0x38,0x26,0x28,0x22,0x74,0xcc,0x24,0x51,0x78,0x40,0xc6,0xa7, +0xfb,0xf2,0xea,0x46,0xa2,0xa1,0x97,0x98,0x54,0x76,0x98,0x8a, +0xf3,0x1e,0x83,0x10,0xd0,0x0d,0x2b,0xb6,0xbf,0x1b,0x62,0x8f, +0xea,0x86,0xdf,0x58,0xb7,0x6f,0x63,0xe3,0xe4,0xad,0xee,0x58, +0xac,0xfe,0x7f,0xc2,0xab,0x32,0xbe,0xfd,0xbb,0xcc,0x63,0x55, +0x6b,0xb7,0xe2,0x93,0xca,0xa6,0xc3,0xb3,0x09,0x98,0x85,0x32, +0x66,0x3f,0x65,0xcc,0xa8,0x58,0xfc,0xc6,0x2c,0x75,0x2c,0xf4, +0x72,0xe2,0xd7,0x22,0x7f,0x5d,0xac,0x16,0x79,0xe4,0x15,0xf6, +0x03,0x19,0x1e,0x4f,0x3b,0x42,0x11,0xed,0x4f,0xeb,0xbc,0xf9, +0xeb,0xa2,0x59,0xb2,0x69,0x38,0x0f,0x2a,0xd9,0xd8,0xce,0xf6, +0xa9,0x19,0xff,0x44,0xf9,0x5b,0x0b,0x73,0x98,0x8e,0x2f,0x72, +0xad,0xe4,0x41,0xb9,0xae,0x89,0x02,0x32,0x90,0x36,0x60,0x1f, +0x6d,0xc0,0xc8,0x6e,0xf8,0x8d,0x79,0xea,0x62,0x43,0xf7,0xed, +0x47,0x96,0x97,0xa2,0x24,0x26,0x95,0xcd,0x43,0xa9,0xfe,0x1e, +0xc5,0x62,0x93,0xf1,0xac,0x9b,0xa8,0xf4,0xdd,0xe7,0x9e,0x27, +0x91,0xf1,0xb4,0xeb,0x15,0xe9,0x0d,0xa1,0xd2,0x6b,0xce,0xb3, +0x1b,0xa5,0xb7,0x3e,0x8d,0xd8,0x27,0x0c,0x42,0xda,0x07,0x90, +0xf4,0x68,0xe1,0x00,0x25,0x4c,0xda,0x18,0xad,0xbb,0xd2,0xbe, +0x7c,0x94,0xd6,0x55,0x1c,0x9e,0x2a,0x04,0x61,0xf2,0x61,0x4c, +0x1e,0x2b,0x1c,0xa6,0x5c,0x48,0x30,0xae,0xee,0x49,0x53,0x8f, +0xd2,0xda,0xcd,0x80,0xf2,0x89,0xff,0xd4,0x22,0xc6,0xa2,0x9b, +0xf1,0xee,0x11,0x7e,0x0f,0x0f,0xfd,0x45,0xf3,0x60,0x8a,0x3a, +0xd0,0x05,0x5c,0x61,0x44,0x99,0xf0,0x26,0x45,0x14,0xac,0x7b, +0x1a,0x7b,0x34,0x14,0x1d,0x3b,0x28,0x89,0x09,0x54,0xa6,0x97, +0x8a,0x60,0x65,0x8c,0x53,0x60,0x74,0xbc,0x4f,0xa0,0x35,0x5f, +0x2a,0x26,0xca,0x60,0xcf,0x3b,0x52,0x79,0x71,0xd0,0xcb,0x0e, +0x74,0xad,0x02,0x42,0xb3,0x55,0x70,0x4c,0x3e,0xa8,0xa9,0x8e, +0x3e,0xd5,0x2a,0xdf,0x11,0x34,0x0b,0x4b,0xc5,0xb2,0x75,0xe9, +0x09,0xc7,0x72,0xea,0x2b,0x01,0xaa,0x4e,0x31,0x7a,0x25,0x40, +0x15,0xdd,0x24,0x9c,0xf9,0x85,0x58,0xb0,0x71,0x97,0x03,0x8f, +0xa0,0xa7,0xef,0x11,0xf2,0x5b,0x95,0x90,0x1b,0xc3,0x0b,0xcd, +0x96,0x1b,0x6b,0xdb,0x8b,0x71,0x5f,0x6f,0x21,0xbe,0xfd,0xe7, +0x7f,0xdf,0x44,0x2c,0x58,0xcb,0xdf,0x1a,0x3b,0xf9,0x8b,0x33, +0xab,0x33,0xd0,0x18,0x0b,0x5d,0x45,0x61,0xa1,0x12,0xa4,0xe5, +0xcf,0xac,0x3b,0xfd,0xf4,0x9e,0xde,0xa4,0x45,0x7f,0x68,0x41, +0xbc,0x30,0x67,0x32,0xe6,0x5c,0x28,0x24,0xbb,0xf0,0xea,0x60, +0xf3,0x2a,0x52,0x6c,0x34,0x6d,0xc1,0xb9,0x32,0x95,0xac,0x31, +0xfe,0xa2,0x71,0xf3,0x9b,0xb9,0x67,0xe6,0x8e,0xe8,0x2d,0xf5, +0xc9,0x77,0xec,0xe5,0x69,0x57,0x26,0x5d,0x1c,0xef,0x1d,0x52, +0xef,0xf8,0xa8,0x47,0xb7,0xb2,0xfc,0x93,0xbc,0xb6,0x75,0xad, +0xbf,0xec,0x57,0x26,0x23,0x7a,0xd8,0x99,0xbe,0x76,0xc4,0xbe, +0xad,0x3d,0x71,0x22,0x4e,0x4f,0xed,0xc1,0x1e,0xb4,0x2f,0x5f, +0xe1,0xcc,0xdc,0xab,0x23,0x08,0xee,0xc5,0xba,0x87,0xb7,0x18, +0xe2,0xf0,0xa9,0x91,0xa6,0x7d,0x40,0xc6,0x4b,0xdd,0x3d,0xee, +0x65,0x6a,0x46,0x59,0x59,0xaa,0x9f,0x93,0xd4,0x87,0x73,0x0a, +0xf0,0x6b,0x2f,0xa9,0x1b,0x9b,0x19,0x5c,0xf2,0x1e,0x5c,0x0f, +0xb4,0x12,0x81,0x81,0xd3,0x0d,0xc5,0xc6,0xf4,0x3c,0x70,0x42, +0xc9,0x32,0x48,0x5d,0x80,0x20,0x3b,0xab,0x81,0x08,0x51,0x58, +0x5e,0xb2,0x10,0x0a,0x67,0xb4,0x12,0x93,0x40,0xd2,0x80,0x0a, +0x1a,0x0d,0x3f,0x4e,0xdf,0x61,0x91,0x3a,0x50,0x67,0xf8,0x44, +0x50,0x91,0x46,0x0c,0x52,0xcb,0xfc,0x0a,0x2f,0x04,0x52,0xff, +0x4b,0x8c,0xb7,0xc6,0x22,0x1a,0xe3,0x84,0x92,0x75,0x38,0xc4, +0x2c,0x2d,0x13,0xf2,0x5a,0x8b,0x82,0x53,0x6b,0x68,0xe3,0xc8, +0x37,0x56,0x58,0x5f,0xf2,0xba,0xaa,0x0c,0x0b,0x76,0xf6,0xe6, +0x03,0x5c,0x79,0x1a,0x03,0x14,0x41,0xef,0xaa,0x8a,0xcb,0x84, +0x99,0x88,0x18,0xb7,0xe6,0x13,0x6f,0x2f,0xd6,0x54,0xfb,0x14, +0xb8,0xfe,0xd6,0x4a,0x5c,0x02,0xdf,0x37,0xc2,0xbc,0xd4,0x02, +0x27,0x94,0x40,0xdf,0x8c,0x8b,0xad,0x44,0x77,0x58,0xd6,0x04, +0xb1,0xa8,0x05,0x4e,0x28,0xd9,0x00,0xf1,0x71,0xad,0x44,0xd2, +0x10,0xbc,0xd0,0xd8,0x06,0x28,0x83,0x4b,0xcd,0x79,0x5e,0xc4, +0xff,0x31,0xab,0xa2,0x4c,0x05,0x32,0x19,0xad,0x49,0x38,0xba, +0x6b,0xef,0x16,0x5d,0x04,0x3d,0x5d,0x3d,0x77,0xf1,0x5c,0x7a, +0xba,0x7a,0x7f,0x7a,0xc9,0xdd,0x73,0x49,0xba,0x6d,0x3b,0x37, +0x6e,0xdb,0xbc,0x2f,0xe0,0x42,0xbd,0xa5,0xfc,0xd7,0x11,0x41, +0xcf,0x1e,0xda,0xb0,0x71,0xa7,0xb4,0x66,0x29,0x13,0x3a,0x31, +0x30,0xc2,0x5f,0x1b,0x78,0x71,0x66,0x8a,0x44,0x66,0xc9,0xab, +0xfe,0x7e,0x7a,0x18,0x5b,0x8b,0xb6,0x32,0xa1,0x24,0x1a,0x9e, +0x4d,0x2c,0x13,0x32,0xb1,0x0d,0x8e,0xf9,0xd0,0x72,0x24,0x56, +0x98,0xda,0x88,0x84,0x92,0x18,0xd4,0xcc,0xef,0xb0,0xbd,0x5b, +0xe5,0x86,0x6e,0x62,0x75,0x8b,0x3f,0xb3,0x91,0x44,0xd0,0x86, +0x8f,0xc7,0x4c,0x36,0xff,0x95,0x9d,0xc2,0xe2,0x70,0xaa,0xb5, +0x66,0x7a,0x54,0x6b,0x1b,0xd0,0x5d,0xec,0xc2,0x5d,0xcc,0xe4, +0x42,0x5a,0xc3,0xa2,0xae,0x94,0x37,0x68,0x67,0x94,0xcd,0xed, +0xc1,0xa9,0x42,0x11,0xad,0x42,0x12,0x7c,0xea,0x49,0xe1,0x68, +0x5b,0x12,0x4a,0xe6,0x40,0xf9,0x24,0x73,0xd5,0x6c,0x7a,0xca, +0x9e,0xf3,0xf9,0x93,0x7c,0x28,0x8f,0x32,0x60,0xde,0x86,0x3e, +0x1e,0x52,0x47,0x8d,0x10,0x49,0x6f,0x63,0xd3,0x96,0x62,0x28, +0x75,0xac,0xa0,0x9b,0x38,0x02,0x0a,0x43,0x10,0x36,0xd7,0x98, +0xeb,0x80,0xa8,0xd9,0xef,0xaa,0x51,0x73,0xaa,0x6e,0x23,0xb4, +0x97,0xb1,0xc9,0x68,0x84,0x3e,0x7d,0x8f,0x88,0xd9,0x55,0xe9, +0x4a,0x5e,0x4f,0x7b,0x31,0x44,0x7c,0x4b,0x07,0xa2,0x45,0x28, +0x56,0x23,0xc5,0x5f,0xa8,0x41,0x0a,0xa9,0xb6,0x3e,0x73,0x50, +0x5c,0x46,0x8a,0x83,0xa8,0xf5,0x09,0x11,0x7f,0x7f,0x67,0x36, +0x2a,0x23,0xc5,0xa5,0xf2,0x89,0xd1,0x08,0x80,0xba,0xd4,0x1c, +0x3d,0xaf,0x2a,0xa3,0xb9,0xae,0xdb,0x8b,0xf7,0xc5,0xcf,0x91, +0x3c,0x8e,0x62,0xf6,0xf1,0xc8,0xa4,0xe1,0xca,0xbe,0xf3,0xe7, +0x5f,0x87,0xf5,0x10,0xea,0xfd,0x0c,0xfd,0x1c,0xf8,0x2e,0xca, +0x7e,0xf2,0xcf,0xe1,0x38,0xd5,0x44,0x1e,0xc6,0x1b,0xc0,0x95, +0xb4,0xf2,0x13,0xa1,0x95,0x71,0x41,0x43,0xb1,0x0b,0xad,0xd5, +0x54,0x48,0x25,0x83,0xfd,0xc4,0xf3,0x72,0x65,0x4b,0x04,0x50, +0x2b,0x39,0x0e,0xa9,0x86,0xfb,0x89,0x15,0xf2,0x2b,0x7b,0xa4, +0xf1,0xf2,0x0b,0x64,0x91,0x71,0x9d,0x03,0x4f,0xe4,0x18,0x71, +0xde,0x9b,0x35,0x86,0x35,0x6f,0x84,0x8c,0x70,0x5e,0x68,0x17, +0x24,0xff,0xcb,0x11,0x81,0xa4,0xf3,0xfb,0x72,0x25,0x4c,0x9f, +0xfd,0x7b,0xeb,0x82,0xaa,0xa6,0xd4,0xf3,0x9d,0x99,0x88,0x96, +0x1a,0x58,0x5e,0x88,0x3b,0xff,0xa9,0xbb,0xbd,0x48,0x8b,0xdf, +0x02,0xae,0x6e,0x7e,0x62,0xbc,0x5c,0xdc,0x08,0x29,0x53,0x7b, +0x58,0x6a,0xf8,0x25,0x43,0xc8,0x45,0x3a,0xcd,0x86,0x1b,0x07, +0x37,0x11,0xbb,0x28,0x16,0x71,0x01,0xc4,0x13,0x1f,0x3f,0xb1, +0xa9,0xf1,0x07,0x37,0x4a,0x19,0x65,0xb6,0x47,0x0d,0xe9,0xd5, +0x59,0x1b,0x29,0xe9,0x8f,0xa5,0xb6,0xbb,0xd8,0x55,0xcb,0x98, +0xc0,0x88,0xd0,0xb1,0x93,0x44,0x6c,0x1f,0x77,0x1e,0xbe,0xd5, +0x08,0xa6,0x1d,0x94,0x02,0x1a,0xaa,0x11,0xf0,0x8c,0x44,0x18, +0x84,0x54,0x4a,0x18,0x18,0x59,0x46,0xcb,0x54,0x0f,0x0d,0x53, +0xb3,0x36,0x22,0xa9,0x45,0xc2,0xf4,0xd0,0xb2,0x86,0x1e,0x0d, +0xa3,0x02,0x6d,0x28,0xc9,0x39,0x58,0xdb,0x99,0xb4,0xb6,0x67, +0x61,0xf9,0x27,0xed,0x5b,0xf4,0x34,0x76,0x7c,0x8d,0x4c,0xed, +0xf9,0x43,0x64,0x5e,0x4b,0x44,0xc7,0xaf,0xe6,0x06,0x21,0x02, +0x89,0xef,0x03,0x37,0x12,0xa6,0x59,0x20,0x7e,0xd2,0xba,0x73, +0x42,0xbd,0x58,0xe3,0xbf,0xa6,0xe0,0x28,0x08,0xef,0xa1,0x6d, +0x43,0x6c,0x6e,0xa8,0xc2,0xff,0x95,0x9f,0x11,0xd4,0x14,0xa4, +0x44,0xf5,0xa4,0x9d,0xf0,0x94,0x87,0x45,0xc6,0x7f,0x99,0xf1, +0x3e,0xf3,0xf8,0x29,0x5f,0xf0,0x51,0x70,0xe0,0x3b,0x11,0xcf, +0x77,0x66,0x6e,0xc6,0xd1,0x33,0x21,0x0f,0xaa,0x84,0x39,0x2f, +0x45,0x61,0x09,0x8c,0xfe,0x94,0xe0,0x41,0x0f,0x35,0x50,0xba, +0x72,0x1b,0x5b,0x25,0xde,0x47,0x36,0x04,0xc1,0x30,0xa6,0x39, +0x4b,0x9a,0x12,0x67,0xcf,0xb6,0xcc,0x32,0x58,0x86,0x9d,0x6d, +0x0e,0x0a,0xc2,0xd4,0x9c,0x79,0xb8,0x5b,0x53,0x28,0x0d,0xcf, +0x4a,0xcf,0x3e,0x08,0x2e,0x39,0x1f,0x71,0x2e,0x41,0x4a,0x95, +0x64,0x2c,0x02,0xc7,0xf5,0xd2,0x35,0xbc,0x30,0x00,0xda,0x1a, +0xe7,0xf8,0x8b,0xa4,0x1c,0x2b,0x70,0xaf,0x3a,0x69,0x48,0x95, +0x30,0x15,0x93,0xe2,0x7e,0xe9,0xe3,0xc1,0x93,0x95,0x2b,0xf4, +0xd0,0xef,0xbd,0x6c,0x43,0x13,0x9e,0x56,0x09,0x67,0x30,0xc1, +0x07,0xb4,0x80,0xbe,0x2a,0x79,0x6c,0x3e,0x5e,0x41,0x57,0x6b, +0xe2,0xf4,0x9a,0xae,0x70,0x8a,0x7d,0x7f,0x92,0xc9,0xe1,0x1c, +0xc7,0x33,0x90,0xef,0x49,0xde,0x72,0xde,0x33,0x99,0xde,0x9c, +0x7e,0x3f,0x43,0x96,0x72,0xa1,0xf4,0x00,0x43,0x1e,0xab,0x1c, +0x9c,0xa0,0x0c,0x29,0x35,0x20,0x6b,0xd7,0x1b,0x84,0xcc,0x7e, +0xa2,0x70,0xbc,0x3b,0x8d,0x93,0x93,0x4b,0xe5,0x93,0x26,0x53, +0x81,0x2c,0x35,0x8c,0x81,0xc2,0x51,0x5f,0x27,0xaf,0xa3,0xb2, +0x39,0x86,0x72,0x49,0x39,0x79,0x91,0x47,0x5d,0xd3,0x28,0x4c, +0x1d,0xda,0x9d,0xb2,0x69,0x18,0xd6,0x94,0xe6,0xa5,0x92,0x50, +0x6a,0x18,0x06,0xcf,0x42,0x0d,0x42,0x1a,0xa6,0x1e,0xc2,0x54, +0x6b,0x38,0x2a,0xcb,0xa3,0x78,0x18,0x49,0xd3,0x6d,0xcc,0xbb, +0xae,0xc0,0x5a,0xd1,0xa1,0xdb,0xb2,0x93,0x39,0xf4,0x08,0x2b, +0x1c,0x46,0xcc,0x7a,0xc4,0x5f,0xd9,0xbd,0x35,0x46,0x91,0x81, +0xcf,0x27,0x3c,0x5e,0x43,0x11,0xf6,0xe8,0x75,0xf6,0xc1,0xa9, +0x84,0x3c,0x9d,0xdc,0x66,0x32,0xcf,0x0a,0x8f,0x4b,0x14,0x96, +0x7f,0xe4,0x84,0xd7,0x9f,0xa3,0x69,0x98,0x06,0x61,0x87,0x3b, +0x54,0x9b,0xf0,0x2a,0x70,0x3d,0xe9,0xc9,0x03,0x63,0xec,0xde, +0x50,0x74,0x50,0x2c,0x4c,0xd9,0x52,0x48,0x5d,0xea,0xc9,0xcb, +0x27,0xd1,0xc2,0x38,0x54,0x1b,0xf5,0x9f,0xa0,0xf0,0x27,0x4f, +0x3e,0x49,0x3e,0x63,0xcf,0x3b,0x54,0x9b,0x66,0x33,0x28,0xc4, +0x18,0xe4,0x80,0x20,0x6a,0x37,0xca,0xd6,0xa2,0xdd,0x58,0x8b, +0x76,0xa3,0x05,0xb5,0x1b,0xf2,0x2d,0x47,0x3e,0xdc,0x95,0xa7, +0x31,0x8e,0x31,0xe9,0x55,0xd5,0x2b,0xb4,0x13,0x98,0x10,0x47, +0xe6,0x78,0xf3,0x35,0x65,0x9f,0x04,0xd7,0x2a,0x4f,0x7e,0x89, +0xbc,0xbf,0x11,0x82,0x14,0x33,0x51,0x06,0x7d,0x32,0x52,0x3c, +0x79,0x77,0x63,0xfd,0x26,0x58,0x76,0x1a,0x0c,0x46,0xd0,0x21, +0xc8,0x0e,0xf7,0xe4,0xe3,0x8d,0x3d,0xba,0x51,0x2c,0x6a,0x39, +0xca,0xd6,0x43,0xfc,0x7a,0x4f,0x1c,0xf3,0xe5,0x42,0x37,0x7e, +0x4c,0x07,0xd1,0x32,0x59,0x39,0xcf,0x62,0x18,0xad,0xb9,0xf3, +0x80,0x99,0x78,0xf6,0xda,0xbc,0x5b,0x76,0xc0,0xf1,0xf7,0xe7, +0xdc,0x99,0x70,0x45,0x97,0x5d,0x3a,0xec,0x64,0xff,0x2e,0xcc, +0xf1,0x31,0x43,0x77,0x0d,0x06,0x91,0xef,0xb1,0xcb,0x2f,0x3e, +0x5c,0xe7,0xe3,0xce,0xc0,0xaa,0xbb,0x9a,0x88,0xf1,0x9b,0xf7, +0x4d,0xd7,0xc1,0x3c,0x38,0xc3,0x6c,0x9c,0xb5,0x6e,0xea,0x04, +0x6d,0xf7,0x19,0x22,0xb8,0x69,0xaa,0x23,0x54,0x9f,0x8b,0x8f, +0x9d,0x75,0x48,0x22,0xf3,0xc8,0x59,0x66,0xd1,0xfe,0xa5,0x87, +0x4f,0x68,0xd5,0x63,0xcc,0x7e,0x4f,0xb2,0xc2,0xb4,0x32,0x21, +0xff,0xff,0xeb,0x02,0x71,0x80,0xd8,0x2a,0xef,0xa1,0xfd,0x42, +0x2d,0x55,0xd9,0x6c,0x78,0x36,0x1b,0xcd,0x41,0x0b,0x6a,0xa9, +0xe4,0xa4,0x9a,0xa8,0x9d,0x36,0x38,0x78,0x38,0xb6,0x41,0x1c, +0xbf,0x44,0x6b,0xe5,0x5c,0x4f,0xdf,0x3c,0xe1,0xc2,0x10,0x5e, +0x28,0xea,0x8f,0x13,0xe8,0xbe,0xa2,0x50,0x14,0xc0,0xab,0x69, +0x62,0xee,0xe7,0xee,0xa6,0x18,0xc7,0x10,0x23,0x13,0x31,0x8e, +0x21,0x46,0xe6,0x3f,0x04,0xe4,0x46,0x41,0x56,0x44,0xa2,0xba, +0x0b,0x15,0xda,0xb4,0x13,0x31,0x6b,0x08,0x66,0x8d,0xc2,0xac, +0x21,0x98,0x35,0x2a,0x80,0x17,0x96,0x98,0xbb,0xb4,0xa6,0x04, +0xda,0xa9,0xff,0x51,0x02,0xa2,0xd9,0x54,0xf7,0xb3,0x5f,0x22, +0x0c,0xa8,0xe9,0xe9,0x7f,0xc4,0xab,0xee,0x7c,0xbf,0xc4,0xb7, +0x34,0x04,0x47,0x42,0xd9,0x12,0xc8,0x58,0x42,0x11,0x0f,0xc6, +0x22,0x66,0x9a,0x05,0xa2,0x1e,0x8c,0x45,0xdc,0x34,0x0b,0x44, +0xb6,0xb6,0xc8,0x94,0x6f,0x2c,0x47,0x6c,0xc5,0x66,0x97,0x2d, +0x44,0x9b,0xcd,0xa0,0x34,0x6f,0x35,0x9e,0x73,0xab,0xa9,0xfa, +0x67,0x69,0x25,0x91,0x54,0x08,0xc7,0xb7,0xa0,0x36,0xdb,0x18, +0x84,0x6e,0xf5,0x62,0xc5,0xab,0x36,0xe7,0xdd,0x83,0xf6,0x59, +0xa4,0xdc,0x13,0xee,0xb6,0x50,0xec,0xb3,0x51,0xe8,0x4a,0xc5, +0x8d,0xda,0x67,0x0a,0xf6,0x43,0xfb,0x4c,0x19,0x9f,0x64,0x5c, +0xd3,0x93,0xc2,0xa9,0x7d,0x2e,0x8b,0x86,0xf2,0x68,0x73,0x87, +0xd8,0xf4,0x34,0xde,0x9b,0xcf,0xc3,0x43,0x73,0xc0,0x8c,0xb6, +0x79,0xe6,0x13,0x56,0xf4,0xd0,0x1a,0xc4,0xdf,0xfe,0x1c,0xb9, +0x3a,0x80,0x87,0x9f,0xe0,0x67,0x1a,0x85,0xf0,0x47,0x92,0xa9, +0x79,0xa9,0xa7,0xb1,0xcd,0x07,0x5d,0x60,0x02,0xa6,0x0c,0x9d, +0xd0,0x87,0xc6,0x36,0x6f,0xda,0xee,0x4f,0xd2,0xc0,0xc5,0x67, +0x98,0xf7,0x64,0xe9,0x17,0xb6,0x60,0x42,0xef,0x0b,0x6d,0xff, +0x16,0xc8,0xba,0xec,0x7e,0xe2,0xbd,0x63,0xba,0xb5,0x6c,0xff, +0x63,0x59,0x41,0x6f,0xed,0xd4,0x89,0x62,0xae,0x32,0x3e,0x6d, +0x04,0x57,0x21,0x77,0x02,0xb5,0x26,0x2b,0xe8,0xc8,0x94,0x28, +0x3e,0xa1,0x81,0xd2,0xb0,0xbd,0xd7,0x70,0x48,0x45,0xb8,0x0b, +0xf8,0xd2,0x21,0x89,0xfc,0x6c,0x1e,0xb9,0x7d,0x0c,0xd6,0x0f, +0xaa,0x5a,0x1b,0x84,0x48,0x4c,0x5a,0x7b,0x11,0x87,0xa3,0xe1, +0xca,0xb2,0x49,0x6a,0xd1,0x6d,0x70,0x5d,0x5d,0x1d,0xec,0x0e, +0x54,0xd4,0xa5,0x1f,0xce,0xe7,0xa5,0x8b,0xd7,0xa8,0x27,0x4f, +0xbe,0x51,0x5c,0xf9,0x6c,0xb9,0x59,0x0e,0x22,0x82,0x5b,0xf6, +0xe2,0x22,0x41,0x86,0xb5,0xe8,0x9b,0xfd,0x7b,0xa8,0x99,0x4d, +0x49,0x8c,0xf0,0xe7,0x1f,0xeb,0xb3,0xd2,0x2b,0xb5,0xe6,0x90, +0xd7,0xd2,0xff,0x41,0xc8,0xeb,0x0b,0x83,0x6f,0x8d,0x31,0x2c, +0xa9,0xbf,0xb0,0xcf,0x91,0x65,0x0c,0x96,0xc7,0x8a,0xea,0xe1, +0x7c,0x66,0xba,0x38,0x84,0xce,0x07,0xb0,0x4a,0x9e,0xef,0x6e, +0xe4,0x98,0x6b,0x74,0xb3,0x2a,0xb3,0x48,0x98,0x89,0x35,0x8f, +0x0b,0xbc,0xcb,0x93,0xc7,0x5f,0x9d,0x11,0xa4,0x2b,0x5c,0x46, +0x57,0x68,0x22,0xaa,0x4f,0xc6,0xe4,0x44,0x22,0xbc,0x53,0x0e, +0x5d,0xce,0x7a,0x55,0xf4,0xee,0x21,0xb6,0xe1,0x27,0xd9,0x08, +0xcd,0x35,0x45,0xa3,0x2f,0x35,0xdf,0x2f,0x4d,0x5a,0xcf,0x84, +0x6c,0x99,0xbc,0x3b,0x49,0x9b,0x7a,0x6d,0x7f,0x89,0x24,0x2c, +0x4c,0xc8,0x60,0xa1,0x61,0xa7,0xe7,0x44,0x24,0x52,0x67,0x17, +0xd2,0x50,0x5a,0xea,0xee,0x5d,0x42,0xd7,0xc9,0x0e,0x70,0x1f, +0x2e,0x26,0xbf,0x78,0x71,0x39,0xd8,0x5e,0x5a,0x8a,0xca,0xf2, +0x6b,0xaf,0x20,0x17,0x6d,0xcb,0xac,0xa8,0xe2,0x39,0xd2,0xf1, +0x25,0x8c,0x90,0x74,0x33,0x66,0xfb,0x64,0x6c,0xc5,0xb8,0x89, +0xfd,0x83,0x46,0xed,0xbd,0x14,0x29,0x05,0x86,0x32,0x41,0x17, +0x6e,0x4d,0x34,0xd8,0x81,0x55,0x6e,0xc6,0x5b,0x9d,0x3a,0xd4, +0x6c,0xb6,0xa1,0xe5,0x5d,0x98,0xa7,0xa7,0xb5,0x2c,0x7d,0x08, +0x17,0x51,0x4c,0xdc,0x6d,0xe5,0x00,0xd8,0x40,0x23,0x43,0xcd, +0x64,0xbc,0x76,0x70,0x60,0x73,0x63,0x9c,0x93,0x6e,0x31,0xd7, +0x6c,0xc8,0x48,0xc2,0x4a,0xfd,0xbd,0xef,0xb0,0xd0,0xfa,0x4d, +0x01,0x38,0xc2,0x77,0x9d,0xee,0x12,0xdb,0x4d,0x3a,0x74,0xf7, +0x62,0x98,0xbb,0xa4,0x12,0x5a,0x83,0x87,0x9e,0xfc,0xc8,0x75, +0x1b,0x37,0xd4,0x5b,0xf7,0xc9,0x12,0x0d,0xf9,0x2a,0x34,0x83, +0xbd,0xee,0x40,0x03,0x6c,0x7f,0x1d,0x6c,0xff,0x4d,0xbd,0xc6, +0x01,0x7a,0x3d,0xbf,0xe3,0x02,0x0d,0x3e,0x07,0x03,0x65,0xb7, +0xf3,0xa4,0x41,0xbf,0xfe,0x59,0xc4,0x83,0x0d,0x39,0x36,0xfe, +0xa6,0xf4,0x96,0xa5,0x67,0xf9,0xf4,0x72,0x5d,0x3d,0xe0,0xbc, +0x1e,0x58,0x43,0xee,0x9f,0x42,0xee,0x1f,0x54,0x0e,0x3a,0x1b, +0x7f,0x46,0x93,0xbb,0x41,0x31,0xb9,0x98,0x4c,0xd3,0x26,0xa0, +0xcd,0xc5,0xb4,0xb8,0x6d,0xd4,0xe6,0x6e,0xa0,0x72,0xd1,0x8a, +0x26,0x59,0x62,0x52,0x21,0x4e,0xf1,0x66,0xc1,0x77,0x62,0xc6, +0x39,0x91,0x55,0x4e,0x03,0x86,0x1d,0x8a,0xba,0xb6,0x54,0x5a, +0xd0,0x65,0x9c,0xf8,0xe5,0x98,0x21,0xfa,0x87,0x96,0xca,0x59, +0x52,0x55,0x95,0xe2,0x11,0xfe,0x97,0x73,0xa2,0xc1,0x62,0x11, +0xb8,0x6e,0x40,0xd3,0xe9,0x82,0x86,0xb5,0x77,0xff,0x89,0x43, +0x45,0x52,0xc2,0x91,0x1f,0x72,0x7a,0x7e,0x28,0x3b,0x97,0x90, +0xb8,0x87,0x6e,0x60,0x8b,0x12,0x6c,0x7e,0x36,0x36,0x6b,0x28, +0x36,0xa7,0xbe,0xa2,0xc1,0x30,0x09,0x52,0x27,0x7a,0xf1,0xe4, +0x5b,0x79,0x63,0x4b,0x04,0x51,0xe3,0x6c,0x30,0x44,0x40,0xe1, +0x68,0x2f,0xde,0x4b,0xde,0x62,0xcf,0x37,0x57,0x5c,0x99,0x1a, +0x10,0xe9,0x6a,0xec,0xec,0x80,0x30,0xba,0xa8,0x62,0x30,0x44, +0xa3,0xe5,0x9a,0x6d,0x10,0xc6,0x63,0x59,0xc7,0x3a,0xf1,0xc2, +0x78,0xc1,0x96,0x44,0xc9,0xc7,0x1d,0x79,0xa8,0x2f,0x0a,0x1d, +0x11,0x38,0x14,0x81,0x1d,0x71,0xa0,0xfb,0x81,0xa0,0x37,0x11, +0x2c,0xa2,0xc6,0x3d,0x40,0x12,0x36,0xf2,0xaf,0x8d,0x28,0x09, +0xf4,0x15,0x0d,0x06,0x70,0xc9,0x38,0x84,0xb0,0x91,0x46,0x8b, +0x26,0x58,0x7a,0x05,0x5a,0x2e,0x83,0x61,0x25,0x64,0xf7,0xfc, +0x9f,0x5a,0xd0,0xd6,0xd8,0xbc,0x1b,0x25,0x82,0xbe,0xa5,0xc1, +0x30,0x17,0xe2,0xe7,0x20,0x91,0x6d,0x38,0xba,0xcf,0x44,0x1f, +0xa2,0x66,0xb9,0xc5,0x1c,0xe0,0xb5,0x3d,0x5d,0x6c,0x79,0x22, +0x47,0x2b,0x61,0x83,0x8d,0x2c,0x56,0x29,0xd9,0xbc,0xd4,0x32, +0x38,0x22,0x7c,0x11,0xaf,0x6e,0x4e,0x97,0x58,0x0c,0x86,0x75, +0x74,0xe9,0x64,0x2d,0xba,0x80,0xb1,0x2e,0x74,0xa0,0xec,0xa4, +0x2c,0x10,0xd9,0x59,0x20,0x5b,0x62,0xdd,0xb1,0x62,0xd4,0xef, +0x30,0x18,0xc2,0xe1,0x59,0x98,0x41,0x18,0x83,0x18,0x87,0xfe, +0xb9,0x62,0x63,0x04,0xeb,0x50,0xf9,0xe0,0x28,0xfe,0x8c,0xb8, +0x25,0x4f,0x48,0xf4,0xc7,0x89,0xb4,0xbb,0x41,0x1e,0xbd,0xc7, +0x1c,0xd2,0xbf,0xa6,0x6f,0x30,0xe9,0x04,0x26,0x4d,0x08,0xc3, +0x41,0x9b,0x74,0x85,0xc9,0x5f,0x2e,0x95,0x40,0xbe,0x61,0x62, +0x28,0x26,0x7a,0x86,0x51,0x03,0x71,0xe1,0x53,0xbf,0x1a,0xbe, +0xfd,0x3d,0xd7,0xe5,0xdb,0x5f,0x42,0x0e,0x7e,0xcd,0xc9,0xbf, +0x61,0x99,0xac,0xa0,0x17,0x65,0x2a,0xd4,0xa5,0x06,0xc1,0x60, +0x98,0x00,0x19,0x51,0x14,0xe1,0x50,0x2c,0x62,0x8c,0x89,0x0d, +0xa3,0x66,0x80,0x4c,0xab,0x58,0x8e,0x28,0xef,0xde,0x27,0x52, +0x3e,0x4e,0x7b,0xf3,0xf6,0xcd,0xd4,0xff,0xe4,0xc1,0x36,0x63, +0xab,0x30,0xf1,0x02,0x99,0xda,0x53,0x5c,0xc0,0xc7,0x19,0xb7, +0xb5,0x13,0x89,0xaa,0x09,0xfd,0x4d,0xea,0xcb,0x1f,0x7b,0xf0, +0xbb,0xc9,0x56,0xfa,0xe0,0x65,0xd4,0x68,0xa0,0x16,0x68,0x47, +0x1d,0xc3,0x21,0xc6,0x8a,0x7c,0x03,0x56,0xa3,0x26,0x41,0x2d, +0xa2,0x65,0x86,0x12,0x1b,0x4d,0x1a,0x4f,0x2f,0x3d,0x00,0xb7, +0x61,0xfc,0x71,0x63,0x90,0xc9,0xe1,0x0c,0x2f,0x8f,0x85,0x39, +0x0d,0x45,0x7a,0x6c,0x95,0x4a,0x17,0x05,0x6e,0x86,0xc2,0xb3, +0x3c,0xdc,0x82,0x55,0x0e,0x3c,0xb8,0xc5,0x88,0x14,0xf4,0x33, +0x8a,0x57,0x1e,0x3a,0x45,0xb0,0xb5,0x0a,0x65,0xaa,0x3a,0xf3, +0xd8,0x33,0x3c,0xfc,0x9e,0xdb,0x88,0xef,0xc8,0x53,0x37,0x73, +0xa7,0x3c,0x86,0x1c,0x03,0xd7,0xa1,0xfc,0x68,0x4a,0xaf,0xa3, +0x42,0x0d,0x61,0x26,0x11,0x0a,0x87,0xf2,0x64,0x38,0xa5,0xb6, +0x8f,0x6f,0x88,0x63,0x47,0xc4,0x7b,0xf9,0x51,0xb4,0x82,0x6e, +0x8f,0x3e,0x6e,0x47,0x51,0xf0,0x89,0xa5,0x33,0x98,0x2f,0x54, +0xde,0x50,0x2a,0xa4,0x9d,0x42,0x99,0x32,0x94,0xc2,0x86,0xe2, +0x44,0x06,0x51,0x9b,0x91,0x45,0x30,0xa0,0x09,0xe2,0x52,0x29, +0xa0,0xd4,0x1d,0xe1,0x99,0x90,0x81,0x09,0x8e,0x9e,0xaf,0x46, +0xf2,0xb3,0x79,0x6a,0x4f,0xe2,0x65,0x07,0x12,0x47,0x2d,0xca, +0x54,0xaa,0xff,0x77,0xa9,0x45,0x99,0xcd,0x53,0x8b,0x42,0x13, +0x4c,0x34,0xf8,0xa6,0x92,0xb0,0x8a,0x9a,0x94,0xd9,0xfc,0xdb, +0xf7,0x0a,0x7c,0x75,0x55,0x35,0x38,0x54,0x36,0xe1,0x8c,0x97, +0x2f,0x82,0xa0,0x96,0x3c,0x79,0x01,0xae,0x9e,0x22,0xb0,0x90, +0xf0,0x45,0x30,0x1a,0xf3,0x4f,0x33,0x5b,0xf2,0x35,0x31,0x59, +0x9b,0xb4,0x44,0xdc,0xe7,0xd0,0x03,0x21,0xe1,0x50,0xe8,0x29, +0x26,0x43,0x73,0x7b,0xbe,0x31,0x2d,0xad,0x06,0x32,0x14,0x72, +0x1c,0x10,0x02,0xb5,0x3e,0x20,0xa4,0xdf,0xdb,0xb2,0xb7,0x42, +0x65,0x33,0x5e,0xb0,0x75,0x86,0x4e,0x8e,0xe2,0x29,0x3a,0xaf, +0x9b,0xce,0x63,0x41,0x6f,0x71,0x12,0x82,0xe0,0x25,0x2b,0x3f, +0x1d,0xfb,0x5c,0xba,0xa9,0x15,0x2d,0xfd,0x17,0xb0,0x6b,0x44, +0xf3,0x07,0x67,0x20,0xda,0xf6,0x0c,0x25,0xb7,0x8d,0x07,0xac, +0x6f,0x82,0x68,0xa0,0xc9,0x41,0x34,0x1f,0x88,0x37,0x43,0x89, +0x0e,0xfc,0x51,0xeb,0x4e,0x99,0xe7,0x74,0xe6,0x10,0xb2,0x96, +0x72,0x58,0x96,0x6a,0xbf,0xed,0x79,0xf1,0x10,0xbb,0x92,0xce, +0xe8,0xc2,0x70,0x46,0x57,0x7d,0xfd,0x06,0x74,0x33,0xb9,0x25, +0xd0,0xe3,0xc4,0x39,0x97,0xf8,0x95,0x60,0xad,0x19,0x8d,0x14, +0xd3,0x2e,0xf1,0xa0,0x92,0x27,0x6b,0xbc,0x0f,0xf6,0x20,0x4c, +0xc2,0x1c,0xe6,0x27,0xb2,0xc6,0x1d,0xc1,0x7f,0xb4,0xe2,0x69, +0x20,0xda,0x08,0x64,0xf6,0x33,0x2c,0xc9,0xba,0x00,0xdc,0x46, +0xf1,0x69,0x74,0x11,0xf2,0x40,0x3b,0x51,0x5d,0xdd,0x8c,0x1a, +0xbe,0x90,0xe1,0x55,0xc2,0x4c,0xc4,0x42,0xa2,0x4d,0x34,0x9b, +0x44,0x61,0xd1,0xbf,0x3c,0xbd,0x11,0x79,0x19,0x58,0xf5,0xe0, +0xb1,0xb4,0x87,0x69,0xd0,0x2b,0x0d,0xdb,0x72,0x3c,0x55,0xa1, +0xa5,0x6d,0x2b,0xd7,0x36,0x2f,0x3d,0x3e,0x23,0x09,0x21,0xbc, +0x92,0x6e,0xd3,0x9e,0xaf,0x8e,0x7b,0x2b,0x94,0x23,0x4a,0xfd, +0x7c,0x28,0xd4,0x98,0xa3,0xfb,0x0b,0x9a,0x38,0x7c,0x7e,0xc8, +0xf7,0x24,0x7e,0x14,0x37,0x1f,0x68,0x99,0x61,0xb2,0x07,0xf6, +0xd2,0x36,0xb9,0xa5,0x5b,0x0d,0x47,0x3f,0xf3,0x1f,0x3d,0x26, +0x73,0x5d,0xb0,0x1b,0xd0,0x5f,0x5a,0x14,0xf2,0xaf,0x67,0x94, +0xbf,0xe6,0x7c,0xd7,0x69,0x3e,0xd2,0x0a,0x56,0x76,0xa5,0x0c, +0xce,0xa6,0x95,0xfa,0x3e,0xd5,0xcc,0xca,0x64,0xac,0x14,0xa8, +0xbd,0xe8,0xcd,0x30,0x4d,0x89,0xdd,0x62,0x9a,0xbe,0xd3,0x5c, +0xa9,0xd1,0x50,0xae,0xd4,0x1b,0x87,0xe4,0x5e,0x47,0xf9,0x73, +0x3c,0xb8,0x2b,0x1e,0xb5,0xdc,0xfe,0xc9,0x55,0x94,0xb9,0x3f, +0x93,0x30,0x05,0xae,0xc3,0xa5,0x86,0xd5,0x47,0xb3,0xaf,0x60, +0x5a,0x5a,0x05,0x34,0xa6,0xf2,0x38,0x86,0x7a,0x38,0x56,0x1f, +0x5d,0x6b,0xd2,0x6e,0xe7,0x88,0x89,0xc6,0x7d,0xf6,0xfc,0x76, +0xc5,0x35,0xa9,0x39,0xf8,0xbc,0x1c,0x4d,0xd0,0x6f,0xc6,0xef, +0x34,0x4a,0xf8,0x57,0xdd,0x7f,0x86,0x7f,0x9d,0xf6,0x82,0x7c, +0x07,0x6d,0x63,0x4a,0xc5,0x3f,0xd7,0x17,0xdd,0xbe,0xf0,0x5b, +0x7d,0x9f,0x8b,0xcc,0x1d,0x5e,0x52,0x9b,0x49,0x26,0xe7,0x88, +0xc1,0x1f,0x7b,0x3b,0xf0,0xe6,0x27,0x3d,0xd4,0xa5,0x85,0x6b, +0xc1,0xca,0x5c,0xf8,0x72,0x63,0xbc,0xaf,0xa8,0x9c,0x12,0x87, +0x26,0xfc,0xcd,0x0a,0x21,0xff,0xab,0x43,0xe2,0xff,0x10,0x6a, +0x50,0x68,0x76,0xcc,0xd8,0xcf,0x9e,0xcf,0x16,0xb3,0xc5,0x16, +0xbc,0x39,0xda,0x6a,0x31,0xb8,0x0e,0xe0,0xa1,0x68,0x10,0xdf, +0x82,0x2e,0xe3,0x54,0x96,0x4c,0x87,0x54,0x7c,0x1e,0x67,0x5c, +0xdf,0x12,0x51,0xe8,0x44,0xab,0xb2,0x64,0x3c,0x14,0x22,0x68, +0x9b,0x71,0x93,0x3d,0x22,0x65,0x7e,0x05,0x6a,0x3f,0x01,0x71, +0x2a,0x3e,0xe0,0xf3,0x7c,0x45,0x0d,0xda,0xa0,0x1a,0x00,0x4f, +0x03,0x1e,0xb7,0xe0,0x8b,0xb1,0xa6,0x95,0x25,0x79,0x58,0x51, +0x0a,0xb6,0x41,0x8a,0x7b,0x7d,0xc5,0x99,0xd8,0x99,0xf7,0xbc, +0x45,0x4c,0xa0,0x73,0x74,0x84,0x2f,0x81,0x71,0xa4,0xb3,0xbd, +0xf8,0x00,0x33,0xd0,0xb9,0x56,0x65,0x09,0xb4,0xcf,0xa8,0xce, +0x20,0x18,0xff,0xd5,0x84,0x82,0x71,0x72,0x55,0x59,0xb2,0x90, +0x6a,0x04,0x05,0xe7,0x19,0xaf,0xb9,0xf1,0x33,0x15,0x0b,0xef, +0x2d,0xd2,0x93,0xdf,0x3e,0x59,0xaa,0x4a,0x5b,0xd9,0x82,0x5d, +0xb9,0x94,0x19,0x3c,0x16,0x6d,0xce,0x7f,0x44,0x3a,0xe7,0xd4, +0x2d,0xe8,0x0b,0xa8,0xca,0x92,0x51,0x54,0xd6,0xdb,0xd0,0x05, +0x87,0x33,0xc6,0xfd,0xa3,0xb0,0x29,0xd4,0xc7,0xae,0x2c,0x89, +0x92,0x3d,0x06,0xf0,0xf2,0x84,0x8f,0x5b,0xdc,0x6a,0xaa,0xf7, +0xb9,0x89,0x8a,0xac,0xb5,0xa1,0xfd,0xdf,0xfe,0xa3,0xe7,0x67, +0x61,0x33,0x67,0xbc,0x8c,0xce,0x39,0x57,0xa2,0x10,0xac,0x97, +0x6a,0x94,0xbb,0x22,0x3d,0xea,0x98,0xd3,0xb3,0xe8,0x94,0x81, +0xdb,0x3e,0xce,0xec,0x49,0x41,0xe8,0x93,0x57,0x96,0x28,0x12, +0xa6,0xd0,0xd1,0x7d,0x3c,0x77,0x94,0x3f,0xc0,0xaf,0xe7,0x6f, +0x65,0x62,0x3f,0xde,0x84,0xd4,0x93,0xc7,0x78,0xa3,0x53,0x4b, +0x71,0x3d,0x9f,0xac,0x44,0x12,0xbe,0x0a,0x85,0x07,0xef,0x89, +0x64,0x89,0xb1,0xc0,0x81,0x7f,0x46,0x9d,0x49,0xf8,0x9e,0x87, +0xe6,0x55,0xe0,0x50,0x2c,0x74,0xae,0xe0,0x85,0xf0,0xff,0xa3, +0xc0,0xc6,0x9d,0x85,0xc5,0x24,0x84,0x74,0xf2,0xc0,0xe2,0xab, +0xe5,0xa8,0x25,0x58,0x81,0x2d,0xd6,0xa0,0xa3,0xaf,0x48,0x37, +0x90,0xe7,0x16,0x80,0x4d,0x16,0xd4,0x8e,0xa6,0x41,0x8f,0x3f, +0x94,0xa8,0xe4,0x63,0xb6,0x25,0xf2,0xf6,0xdc,0xac,0x5e,0x50, +0xdb,0x9d,0xd4,0x26,0x1f,0x94,0xaf,0x5e,0xfd,0x72,0x4d,0xdb, +0x4b,0x20,0x17,0x3e,0xb0,0xe4,0x43,0x81,0x06,0x6c,0xe0,0x03, +0xb1,0xe1,0xd4,0xef,0xcc,0xd9,0x33,0xa2,0x9f,0x28,0xcc,0xdb, +0x01,0x85,0xdb,0x4b,0x84,0x97,0xbf,0xd1,0x31,0x6c,0xb6,0xfc, +0x7f,0x39,0xf0,0xee,0x8a,0xb8,0x81,0x33,0xb8,0x12,0xe7,0xfe, +0x3c,0xac,0x1b,0x84,0x10,0x94,0xb7,0x6b,0x38,0xb8,0x04,0xe1, +0x73,0x43,0x2a,0x6f,0xee,0x8a,0xbc,0x9d,0xa3,0x8b,0x74,0x08, +0x0a,0xa0,0xf2,0xe6,0xae,0xc8,0x5b,0x35,0xa8,0x62,0x02,0xa2, +0xa0,0xb8,0xa5,0xbe,0x5d,0x59,0xb2,0xf2,0xad,0x90,0xd1,0x8b, +0x17,0xda,0x25,0x50,0x69,0x73,0x57,0xa4,0x0d,0x1d,0x51,0xab, +0xe6,0x0a,0x2d,0x94,0x34,0x32,0x8a,0xf6,0x25,0xdd,0x15,0x63, +0x8d,0xfc,0x6b,0x5d,0x22,0x44,0xf6,0xa2,0xa7,0xdc,0x1a,0x52, +0x69,0x33,0xd7,0xa5,0x1c,0x5c,0xdb,0x21,0x76,0x7d,0xe3,0xb2, +0x46,0x58,0x0c,0x95,0x3e,0x70,0x2d,0xf9,0x19,0x8d,0x12,0x22, +0x36,0xbb,0x45,0x85,0xcf,0x5d,0x11,0xbe,0x74,0x88,0x27,0x7d, +0xfb,0xf3,0xc6,0x6b,0x56,0xe6,0xbb,0x63,0xd4,0x48,0xda,0xec, +0x60,0x52,0xda,0xae,0x25,0xfd,0xb2,0x84,0xca,0x74,0x1a,0xe9, +0x17,0x25,0xd0,0x77,0xe4,0x98,0xf1,0x21,0x7f,0xbf,0x7c,0x44, +0xdf,0x5c,0xbe,0xf9,0x46,0x4f,0xe2,0xbd,0x39,0xe1,0xdd,0x1b, +0xd3,0xcd,0xe6,0xac,0xda,0x9d,0x8a,0xe3,0x09,0x78,0x46,0xc6, +0x96,0x08,0xa9,0xb4,0x30,0x18,0x6f,0xdc,0xff,0x65,0xc5,0xed, +0x1c,0x2a,0x7a,0x6a,0x21,0x8d,0xe4,0x78,0xa3,0x44,0x05,0xf9, +0x31,0xc9,0xbc,0x19,0x42,0xeb,0x5c,0x82,0xec,0x6b,0x5d,0x02, +0xd3,0xc1,0xb5,0x53,0x09,0xce,0xa1,0x96,0x7e,0x6c,0x32,0x85, +0x17,0x1c,0xe5,0x76,0xd0,0x16,0xbf,0x33,0x89,0xf5,0xa7,0x0d, +0xc9,0xbc,0x39,0x34,0xb1,0xc2,0xed,0xc9,0xe0,0x3a,0xa6,0x5c, +0x0c,0x87,0x89,0x0d,0x45,0x33,0x94,0x32,0xb3,0x0a,0x0a,0xdb, +0x97,0x8b,0x64,0x0c,0x2c,0x72,0xe0,0x8f,0x28,0xd3,0x2f,0x7a, +0x8e,0x01,0xe5,0xd6,0x02,0x9d,0xe8,0x17,0xe8,0x44,0xa7,0x9b, +0x5a,0x79,0x54,0x47,0x79,0x40,0xab,0x65,0x5d,0x41,0xbb,0xac, +0x44,0xc8,0xf8,0x3a,0xda,0x03,0x96,0xed,0x3c,0xa8,0x1a,0xe7, +0x0e,0xcd,0xfc,0x10,0x9d,0xf3,0x63,0xd4,0xd8,0xee,0xa1,0xeb, +0x61,0x0e,0xd4,0x37,0xa7,0x69,0x98,0xa2,0x47,0xaa,0x98,0x12, +0x07,0x23,0xfb,0x28,0x54,0x61,0xf2,0x7b,0xb8,0xa5,0x94,0xd7, +0x06,0x7d,0x05,0x4c,0xf1,0x81,0x2b,0x70,0xc5,0x5e,0x6c,0xbe, +0xa2,0xd0,0xa8,0xa2,0x92,0xa7,0x92,0xa7,0x15,0x6a,0x48,0x12, +0xcc,0x60,0xa1,0xcf,0x6d,0x26,0x8f,0x23,0x7d,0xfc,0x18,0x28, +0x71,0x27,0x84,0x73,0x8c,0x64,0x7c,0xb8,0xf7,0x27,0x19,0x72, +0x40,0xfe,0x01,0x25,0xae,0x21,0x35,0xaa,0xd6,0x95,0xc5,0x50, +0x1f,0x5c,0xef,0x15,0x0b,0xf9,0x03,0x29,0x2b,0x47,0xc8,0xe8, +0x1c,0x60,0xd2,0x73,0x2a,0x86,0xc5,0x3b,0xa1,0x70,0x57,0x4d, +0x8a,0x3d,0xa0,0x77,0xf0,0xee,0x4b,0x83,0x8b,0x41,0xa8,0x02, +0x9b,0x62,0x61,0x26,0xa6,0xc6,0x3d,0x37,0xc5,0x7a,0xf0,0x98, +0x0d,0xcd,0x62,0x65,0xf1,0x26,0x78,0xb6,0xb9,0x58,0xc8,0x44, +0xb8,0x23,0x78,0x80,0x3c,0x12,0x73,0x85,0x15,0x40,0x53,0xf3, +0x75,0x21,0xa5,0xf0,0x47,0xa9,0x0a,0x7a,0xda,0xca,0x0f,0x57, +0x73,0x25,0xc4,0x19,0x36,0x98,0xba,0x30,0xdb,0x89,0x75,0xfb, +0xee,0x37,0xd8,0xa2,0x33,0xc9,0x05,0x3a,0xe3,0xb6,0x0e,0xa6, +0x87,0x71,0x1c,0xd4,0xe3,0x59,0xf5,0x6a,0x1c,0x38,0xc0,0xb5, +0xd2,0x49,0x04,0xc6,0xf8,0x5b,0x43,0xb1,0x89,0x59,0xeb,0x6f, +0x40,0xea,0x0d,0x27,0xd1,0x38,0xc8,0x6a,0x20,0x42,0x6e,0x2b, +0x6a,0x7f,0x05,0x0a,0xaf,0x38,0x89,0x49,0xc6,0x20,0x7b,0xbe, +0x49,0xf5,0x48,0x60,0x06,0x85,0x18,0x4d,0x0e,0x08,0x7a,0xf8, +0x01,0x21,0x99,0x38,0xc6,0x66,0x56,0x08,0x79,0xce,0x74,0x29, +0xcb,0x38,0xde,0x51,0xac,0x72,0xe5,0xa9,0x4d,0xa0,0x8a,0xec, +0x5c,0x05,0xce,0x15,0xc2,0x4c,0x67,0xba,0x98,0xb5,0xc0,0x9b, +0x5f,0xcd,0x57,0x82,0x2b,0xb4,0x77,0x12,0x97,0x18,0x7d,0x1a, +0x61,0x7e,0xf0,0xc8,0xa0,0x58,0x4b,0x32,0x40,0xe5,0x24,0xba, +0x1b,0x53,0x9a,0x60,0xc9,0x57,0x71,0x3a,0x90,0x56,0x51,0x0a, +0xd9,0x5b,0x9d,0xc4,0x78,0x63,0x65,0x37,0x44,0x7b,0x9d,0x83, +0x90,0x7b,0x10,0x7f,0xcf,0x49,0x24,0x0d,0x8d,0x0b,0xdc,0xf8, +0xcf,0xd1,0x3c,0x6e,0x8a,0x35,0x8d,0x41,0x1b,0x73,0x13,0x3b, +0xba,0xb5,0xbc,0x86,0x36,0xe8,0x7e,0x2b,0x3e,0xad,0xe2,0x2c, +0x3c,0x3b,0x5b,0x21,0x64,0x3a,0xd3,0x35,0x20,0xe3,0xe8,0x91, +0x98,0xcb,0x37,0xd9,0x5a,0xc9,0x47,0x97,0x7d,0xa6,0xf2,0x42, +0xd1,0x18,0x51,0xb8,0x32,0x57,0x14,0xf2,0x23,0x45,0xa1,0x68, +0x9a,0xa8,0xa6,0x08,0xa9,0x66,0x33,0x4a,0x49,0xce,0xe5,0xcd, +0xfc,0xa9,0x6e,0x8f,0x92,0xd9,0xdc,0x22,0xba,0xb2,0x83,0xf9, +0xa3,0x30,0xff,0x50,0xcc,0x3f,0x1e,0xf3,0x47,0x4d,0x13,0xd1, +0x79,0xc7,0x36,0x7e,0x21,0xa2,0xb4,0x75,0x2e,0x5f,0xdd,0x56, +0xdf,0x64,0xaa,0xcb,0xd5,0xad,0x9d,0xcb,0x57,0xb7,0xd6,0x37, +0xf9,0x29,0x75,0xd4,0xd3,0x2a,0x52,0x20,0x23,0xa5,0x42,0x59, +0xb9,0x99,0x4a,0x57,0x6e,0x90,0xf2,0x21,0x0b,0x24,0x9d,0x1a, +0x1b,0x49,0x97,0x6f,0xa6,0xd1,0xcb,0x61,0x32,0x8d,0xe3,0x96, +0x63,0x96,0x0b,0x40,0x7b,0xeb,0xaa,0xec,0x11,0x88,0x1d,0xb8, +0xf5,0x63,0xb0,0x5b,0x4d,0x05,0x3f,0x77,0x10,0xda,0x07,0xca, +0xf6,0xf1,0xce,0xca,0xf2,0x8d,0xc9,0xbc,0x7c,0x83,0x16,0xa2, +0x26,0x6f,0xa0,0xec,0x71,0x15,0x59,0xd9,0xda,0x78,0xb5,0x2b, +0xed,0x84,0x53,0x69,0x94,0x2b,0xea,0xd4,0x99,0xd8,0xd5,0x1f, +0xdb,0xf7,0xa4,0xa0,0x05,0xed,0x91,0x7f,0xe7,0xa0,0xfc,0x9c, +0x99,0x7f,0x36,0x3d,0x3f,0xce,0x98,0xcf,0xcb,0xdf,0xc5,0x14, +0xfa,0x7a,0x8b,0xbe,0x4a,0xcf,0xfe,0x5e,0x22,0xcc,0xfe,0xd8, +0xca,0x16,0xac,0x78,0x34,0x65,0xc2,0xa9,0xf5,0x63,0x87,0xac, +0x8d,0xb0,0x23,0x81,0x38,0x1e,0x5b,0x93,0x18,0x12,0x03,0xf8, +0x0d,0x81,0x3a,0x61,0xf6,0xb9,0x94,0xb5,0xeb,0xcf,0xe8,0x84, +0x53,0x84,0xcf,0xd4,0x10,0x97,0x1e,0x9f,0x83,0xa5,0xe4,0x57, +0x80,0xcb,0x99,0xcb,0xbf,0xc4,0x9c,0x96,0x4c,0xf1,0x5c,0xcc, +0xb8,0xe1,0xbf,0x8c,0xb5,0x53,0xa2,0xa6,0x98,0xad,0x7f,0x29, +0xb8,0xde,0xaa,0x10,0x5e,0x8e,0xc3,0x71,0x3a,0x51,0x3e,0xd7, +0x50,0x3c,0x89,0xc3,0xf8,0xf5,0xfb,0xb0,0x16,0xbd,0x89,0x0d, +0xd5,0xf0,0x9f,0x64,0x7b,0x7b,0xfe,0x24,0xd5,0x9b,0x39,0x3c, +0xe6,0x78,0x55,0xf5,0xae,0x42,0x98,0x87,0x09,0x4b,0xc2,0x4c, +0x7d,0x3d,0xf8,0xe1,0x22,0xf5,0x87,0x32,0x9f,0xbc,0x06,0xd7, +0x2b,0xd5,0xd7,0x14,0x98,0x1d,0xa2,0xe1,0xe2,0xed,0xdb,0x66, +0x67,0x68,0xba,0xe2,0x0c,0xe5,0xcb,0x79,0x05,0x34,0x3a,0x4b, +0x48,0xf6,0xe9,0x27,0x2a,0xb8,0x64,0xfc,0x5e,0xa3,0x5c,0x62, +0xa6,0xfb,0xdf,0xb8,0xc4,0x2c,0xb9,0x97,0x7e,0xd8,0x6b,0xba, +0xf4,0xa2,0x04,0x3f,0x67,0x40,0x5c,0x5f,0x6c,0x00,0xb5,0xd6, +0x7c,0x41,0x9a,0xf4,0xb7,0x0b,0xd2,0x24,0xf5,0x70,0x31,0xf9, +0xb6,0xd9,0x73,0x9a,0x4e,0xed,0x28,0xbd,0xde,0x0b,0xab,0x59, +0x51,0x05,0x16,0x4f,0x84,0x99,0x58,0xcd,0xb8,0x5f,0x03,0x3d, +0xf8,0x17,0x31,0x79,0x63,0x66,0x43,0x69,0x2e,0xcc,0x50,0x2e, +0x3e,0x6a,0xf3,0x0c,0xec,0x2a,0x84,0x85,0xc6,0x06,0x10,0xac, +0x01,0x4d,0xfb,0x02,0xa2,0x5b,0x25,0xad,0xe1,0xa0,0x0f,0x8c, +0x63,0x8a,0x4d,0x1b,0x3e,0xf9,0xd1,0x98,0xd7,0x2f,0x69,0x74, +0x94,0x09,0x4c,0x97,0x17,0x5c,0xc9,0xd5,0xb0,0xee,0xba,0x49, +0x9c,0x90,0xdc,0x3d,0x3c,0xd4,0x7d,0x60,0xe8,0xc1,0xab,0x91, +0xd2,0xc0,0xa1,0x4c,0xbf,0xab,0x59,0x93,0x9f,0xd9,0x81,0xb6, +0xac,0x08,0x7e,0xd4,0xa9,0x67,0x20,0x3f,0x9f,0x67,0xc1,0xf4, +0x02,0x4b,0x58,0x85,0x23,0xdb,0x2f,0xf0,0x5c,0x93,0x45,0x3c, +0x60,0xfa,0x3c,0x91,0x4c,0x27,0x1d,0xfa,0x41,0x07,0xf2,0xbc, +0x04,0x9e,0x73,0x6a,0xf3,0x45,0x37,0xd4,0xfc,0xc1,0x0f,0xd4, +0xd8,0xd1,0xf1,0x96,0x5e,0xde,0x52,0x13,0xf9,0x97,0xde,0x7d, +0x23,0xb8,0x6c,0x80,0xc6,0xf6,0xfc,0x78,0xf3,0x10,0x66,0x55, +0x60,0x0d,0x31,0x8a,0x61,0x33,0xdf,0x8c,0x23,0xac,0x1d,0xf9, +0xa9,0x97,0x07,0xa6,0x2a,0x53,0x85,0xea,0x5b,0x73,0xb6,0xa1, +0xe7,0x99,0x0c,0xdf,0x89,0x3b,0xb1,0xe2,0xd3,0xa1,0xbd,0xb8, +0x93,0xa5,0xeb,0x1e,0xf4,0x22,0xa5,0xd6,0x85,0xb0,0xba,0x10, +0x1c,0xa3,0xbf,0xba,0x4b,0xa9,0xb5,0x79,0xf3,0xd8,0xc3,0x2f, +0x9b,0xc7,0x82,0xc0,0xd1,0x9d,0x5e,0xa7,0x24,0xcf,0x30,0x5f, +0xa7,0x34,0xd6,0x57,0x17,0xc2,0xf9,0x46,0x8c,0x35,0x6f,0x1a, +0x9b,0xc4,0x43,0x5d,0x14,0x9f,0x1e,0x22,0x1c,0xa7,0x16,0xa6, +0x1d,0x4e,0x17,0xac,0x9f,0x96,0x6c,0x85,0xd4,0x9d,0x25,0x42, +0xfe,0xdf,0x02,0x18,0x57,0x5f,0xbe,0x25,0xbb,0xb8,0xff,0xc3, +0xbd,0x61,0x28,0x30,0x1d,0x72,0x34,0x03,0x31,0x3f,0x1d,0xb3, +0x9f,0x96,0xac,0x81,0xc2,0x0d,0x48,0x73,0x42,0xde,0x7f,0x79, +0x71,0xdc,0x4e,0x99,0xf9,0x7d,0xc6,0xe3,0xa8,0x1d,0x6b,0x47, +0x67,0x63,0x08,0xdb,0x87,0x43,0xe4,0xa1,0x12,0x21,0xaf,0x0f, +0x2f,0x38,0xdd,0xaf,0x70,0x14,0xdf,0xf1,0xc2,0x4c,0xfc,0x1d, +0x07,0x1d,0x3e,0x81,0xbd,0x38,0x89,0x4f,0xc1,0x91,0xe2,0x7b, +0xcc,0xe4,0x9a,0xda,0x88,0xe6,0x09,0xce,0xc0,0x3c,0x10,0x9a, +0x51,0xd0,0x43,0x7c,0x0c,0x5e,0xd5,0xb7,0x47,0xfe,0x5b,0x54, +0x68,0x7a,0x93,0x64,0x3b,0xfe,0x21,0x0e,0x96,0x4f,0x4b,0x2e, +0x43,0xf6,0x0c,0xcc,0x3d,0x14,0x26,0x75,0xa3,0xd9,0x35,0x39, +0x08,0x3b,0x08,0xf1,0x47,0x7b,0x88,0x07,0xc1,0xd2,0x8d,0xbf, +0xaf,0x2c,0x8e,0xd4,0xc4,0x61,0x6e,0x95,0x05,0x75,0xd0,0x80, +0xb7,0x13,0x4f,0x9f,0x5a,0xb3,0xf5,0x18,0x7d,0xf5,0xdb,0x77, +0x78,0xf0,0xf8,0xc1,0xda,0x90,0xcb,0x33,0x92,0xff,0x21,0x36, +0xf7,0xe1,0x3d,0xbb,0xef,0xdd,0xd5,0x3d,0xaf,0x38,0xf0,0x00, +0xea,0x69,0xff,0x99,0x53,0x58,0x8f,0x9c,0x5e,0xe2,0xd3,0x92, +0x44,0xba,0x9c,0x72,0xbd,0x44,0xb8,0x83,0x4d,0x73,0x83,0x0e, +0xd7,0x70,0x9e,0xd7,0x8e,0x5a,0xae,0xa7,0x25,0x71,0xf0,0x6c, +0x65,0x89,0x90,0xd9,0x87,0x5a,0xae,0xc5,0x25,0xff,0xb6,0x1a, +0x0f,0x1e,0xe2,0xfa,0x3c,0x55,0x6f,0xb1,0xa6,0xe3,0x4a,0xd6, +0xe7,0x09,0x85,0xbd,0xa9,0xc2,0x2a,0xfd,0xf7,0x8e,0xc7,0xe7, +0xd9,0xbd,0xc5,0x7f,0xe3,0xd6,0x17,0xac,0x7f,0x67,0xda,0xe7, +0x94,0xff,0x81,0x77,0x60,0x41,0x47,0xde,0xa7,0x25,0x9b,0x21, +0x63,0x3b,0xcd,0x93,0x85,0x79,0x1c,0x61,0xce,0xd3,0x7f,0x0e, +0x94,0x2e,0xd8,0x6c,0xc5,0xe4,0xab,0xd8,0xa2,0x67,0x1f,0xae, +0xe6,0x7c,0xb9,0x56,0x42,0x69,0xec,0x41,0x98,0xa6,0x2c,0x96, +0xf4,0xe5,0xf3,0x45,0x38,0x0d,0xc5,0xca,0x6a,0x89,0xf2,0xd0, +0x0a,0xba,0x68,0x12,0xf7,0xbb,0x41,0x17,0xef,0xf1,0xcc,0x6e, +0xb2,0x95,0xde,0x0c,0x3a,0xf4,0x06,0x4f,0x89,0xec,0x03,0x8f, +0x7f,0xa3,0x02,0x13,0x20,0xe4,0xbf,0x2e,0xa7,0xf4,0xe5,0x69, +0x04,0x28,0xea,0x59,0xec,0x31,0xfe,0x66,0x8a,0x3a,0xcd,0xcb, +0xcc,0x20,0x05,0x44,0xa5,0x8e,0x82,0x9e,0x40,0x61,0xae,0x08, +0xa3,0x26,0x88,0x14,0x48,0xc5,0x8e,0x02,0xef,0xd2,0xf9,0x0f, +0xbd,0xbb,0xc3,0x09,0xdc,0xa9,0x47,0xfa,0x35,0x8d,0x53,0xa7, +0x79,0x58,0x45,0xbd,0xcc,0x85,0x66,0x18,0x8e,0xae,0xae,0xa4, +0xcd,0x3a,0x11,0xda,0x0c,0xa2,0x20,0x4a,0x17,0x1a,0xa0,0xd2, +0x8f,0x5c,0x27,0xfe,0x32,0x41,0x5c,0xa8,0xbc,0x19,0xa6,0x1e, +0x0a,0x2c,0xaf,0x72,0x42,0xf5,0xee,0x24,0x0a,0x6b,0x2f,0x53, +0xb7,0x35,0x55,0xac,0x21,0xe0,0x0b,0xae,0xae,0xeb,0xc4,0x33, +0xd5,0x34,0x69,0x8f,0xc0,0xba,0x12,0xfa,0x62,0x18,0x71,0x9b, +0x8d,0xa6,0xae,0xeb,0x42,0xc5,0x95,0x01,0x0d,0x7a,0x99,0x91, +0xe8,0x65,0x52,0x38,0xd4,0xf9,0xda,0xcb,0x34,0x87,0xa2,0xa2, +0x46,0xe0,0xb4,0xbc,0x96,0x5c,0xa1,0x93,0xd9,0x20,0xba,0x18, +0xa3,0x1d,0xc4,0x9b,0x93,0xe8,0x58,0x84,0x49,0x26,0x27,0xba, +0xbc,0xa2,0x24,0x85,0x50,0x87,0xdc,0x9c,0x48,0xdd,0x6d,0x9a, +0xef,0x16,0x9d,0x87,0x2a,0x89,0x2b,0xa8,0xd3,0x1d,0x65,0x5e, +0x50,0x35,0xaf,0x0e,0x9a,0x5f,0xff,0x3d,0xc6,0x21,0x2e,0x4c, +0x03,0xce,0xdc,0x92,0x52,0x66,0x35,0x1b,0xb9,0xfb,0xc4,0xbc, +0x24,0xbb,0xe2,0xf3,0x09,0x89,0x7b,0xe8,0x8d,0x43,0x89,0xee, +0xca,0x4d,0xa8,0x32,0x27,0x3c,0xee,0xdd,0x7f,0x42,0xbf,0xae, +0xf0,0x03,0x7f,0x8b,0x7f,0x4b,0x8f,0xbf,0xde,0xc5,0xe1,0xcb, +0xa6,0x04,0x4e,0xa1,0x02,0x45,0x62,0x7e,0xe3,0x5d,0x38,0xf5, +0xe9,0x6e,0x89,0xf1,0xae,0xa1,0xc0,0xf4,0x57,0x77,0xc3,0xa7, +0xbb,0x9c,0xba,0x31,0xfa,0x64,0xc6,0xc5,0x05,0x96,0xbb,0xe4, +0x20,0x95,0x1c,0x49,0xac,0x35,0x84,0xb0,0x10,0x07,0xef,0x98, +0x1b,0x1c,0xa1,0x5f,0x40,0x0a,0x4c,0x41,0xdd,0x58,0xd8,0x66, +0xaa,0xcd,0x2c,0xe3,0x08,0xfd,0xea,0x26,0x07,0x71,0xea,0x0c, +0x11,0x1a,0xd3,0xbd,0x68,0x42,0x70,0x39,0x2f,0x1c,0xfd,0x53, +0x14,0x22,0xfd,0x37,0x1d,0x99,0x79,0xc3,0xee,0x0a,0x2b,0x1c, +0xbd,0xcf,0xab,0x67,0xc7,0xdc,0xf7,0xd7,0xcb,0xb6,0xe6,0xc0, +0x73,0x61,0x72,0xb2,0x5e,0x33,0x40,0x0e,0x50,0xf6,0x91,0xc5, +0x37,0xe7,0x85,0x89,0x43,0xe9,0x9b,0xd8,0x1b,0xf8,0x40,0x0e, +0xd2,0x2d,0x64,0xb3,0xcc,0x0d,0x86,0x0c,0x3d,0x2c,0xbd,0xaf, +0xb4,0xb8,0x2c,0xa4,0x4c,0xf8,0x68,0xbe,0xb6,0x61,0xeb,0x1a, +0x36,0xf4,0x68,0xca,0x8c,0x7b,0x76,0x50,0xff,0xf1,0x6b,0xb0, +0x86,0xfa,0xae,0x89,0x1d,0x37,0xd1,0x18,0x3b,0xa6,0xbb,0x9b, +0x73,0x6f,0x54,0x69,0xa1,0x56,0xa7,0x1c,0x94,0x3f,0xa9,0x07, +0x5d,0xc9,0x87,0xf6,0xa4,0x95,0x26,0x85,0x15,0x3e,0x56,0xdc, +0x0a,0x76,0xd1,0xcd,0xe0,0x5c,0x06,0x07,0xb7,0xf6,0xf6,0x3b, +0x92,0x28,0xc9,0x5a,0xee,0xaf,0x0b,0x57,0x4b,0x25,0xc1,0x64, +0x38,0x33,0xaa,0x1f,0xa6,0xf4,0x8e,0x1c,0xe6,0x29,0x85,0xb1, +0xea,0x46,0x94,0x4f,0x5a,0xbd,0x25,0x4c,0x34,0xa8,0x60,0xa2, +0x52,0x62,0x18,0x0b,0x03,0x94,0x50,0x76,0x4e,0x64,0x53,0x10, +0xe9,0xc0,0x2c,0x65,0xc3,0xa0,0x43,0x1f,0xa8,0xcb,0x83,0x93, +0x29,0x80,0x51,0x87,0xc7,0xe4,0xc9,0xa0,0xaf,0x0e,0xb4,0x27, +0x0f,0x37,0xba,0x6a,0xf4,0xe4,0x65,0x6b,0x0e,0x1a,0x13,0x6b, +0x66,0x29,0x47,0xd8,0x26,0xce,0xa4,0x07,0x71,0xa9,0xbe,0x9e, +0xf4,0x3d,0x74,0x02,0x8b,0x61,0xc5,0xa4,0x01,0x58,0xe8,0x48, +0x23,0x60,0x99,0x35,0x9c,0x7e,0x29,0x03,0x9d,0x4c,0xdd,0x35, +0x73,0x39,0xa2,0xf2,0x0b,0x6a,0x4f,0xdf,0x20,0xa9,0xa4,0x1b, +0x1c,0x08,0xf9,0x79,0x2f,0xb7,0x48,0x7f,0x3a,0xed,0x0d,0x6e, +0xaa,0x55,0xb7,0x5d,0x2c,0x5a,0xa7,0x97,0x75,0x2b,0x13,0xde, +0x81,0xa5,0x28,0x54,0xfe,0x26,0x0a,0xef,0x3c,0x16,0x0c,0x1f, +0xd5,0x53,0xeb,0x9a,0xed,0x0f,0x3a,0xb0,0xcc,0x3f,0x53,0x70, +0x51,0x52,0x93,0x5e,0x46,0x57,0xa5,0x26,0x01,0x45,0xaa,0x2c, +0xac,0x08,0x04,0xb2,0x77,0xd6,0xd2,0x4a,0x34,0x27,0xfe,0x4c, +0x13,0x22,0xcc,0xea,0xdb,0x4b,0x4b,0xbe,0x4f,0x19,0x0c,0x4e, +0x63,0xa4,0xfb,0x73,0xc7,0x13,0xe1,0xc1,0x9c,0x63,0x60,0xc5, +0xac,0xde,0xb2,0x6a,0xf3,0x26,0xed,0xa9,0xe8,0xc3,0x61,0x5b, +0xa4,0x9e,0xbb,0x19,0xe7,0x03,0xe3,0xce,0xdf,0xd7,0x6e,0xe3, +0xd2,0xf6,0xdd,0x2b,0xfd,0x20,0x81,0x17,0x4c,0x63,0xd2,0xc9, +0x9f,0x9c,0x5a,0x91,0xc3,0x69,0xce,0xbc,0xff,0x7d,0xeb,0x8a, +0x6a,0x29,0xec,0x02,0x75,0x45,0xd3,0x36,0x83,0x7c,0x84,0xbe, +0x80,0x7e,0x0d,0x9d,0x45,0xf5,0xf0,0x98,0x5c,0x38,0xae,0x87, +0xe3,0xb9,0x96,0xb7,0xca,0xe0,0x78,0x99,0x4d,0x29,0x9c,0x34, +0x2e,0xd1,0x10,0x07,0x8f,0x56,0xe4,0x02,0xb9,0xf0,0xa4,0x15, +0x38,0x80,0xc3,0x93,0x17,0x70,0x01,0x2e,0x78,0xbc,0x20,0x0e, +0x3a,0xa2,0x23,0x67,0x34,0xd0,0x26,0x39,0xed,0xe9,0xd3,0xe4, +0x81,0xa4,0x8d,0xe4,0x4b,0x8e,0x73,0xa0,0x23,0xef,0x34,0x6d, +0x83,0xd3,0xa0,0x8d,0x2e,0x13,0x8e,0xfb,0x72,0xa4,0x4d,0xf0, +0xc0,0xb6,0xd8,0xb8,0xac,0x15,0x7a,0x39,0xc0,0x1c,0x39,0x71, +0xbf,0x5e,0xe3,0x40,0xaf,0x28,0xe8,0x69,0x8e,0x42,0xf8,0x96, +0x55,0x77,0xda,0xeb,0xfc,0xd5,0x86,0x84,0x69,0x90,0x88,0x5c, +0x69,0xc1,0xdc,0xd6,0x0f,0x65,0xa7,0xcc,0x5d,0x32,0x2b,0x5a, +0x47,0x5a,0x91,0x0e,0x21,0x03,0x98,0x65,0xb0,0x4e,0x79,0x4b, +0xde,0x83,0xcd,0xbe,0xcf,0xa8,0x5b,0x20,0xc5,0xd7,0x7a,0xcb, +0x75,0xf2,0xcf,0xa8,0x10,0xf2,0x56,0x0d,0x19,0x65,0xda,0xca, +0x3c,0x62,0xdf,0xc1,0xe6,0x34,0xe8,0xc5,0xac,0x65,0x13,0x48, +0xaf,0xbb,0x24,0x9c,0x19,0xb3,0x65,0xff,0x9c,0x24,0xbb,0x9b, +0xfa,0x7e,0x2c,0x09,0x95,0x8d,0xcc,0xd9,0x98,0x99,0xbb,0x43, +0xec,0x9c,0xbc,0xff,0x60,0xd5,0x53,0x14,0x49,0xdd,0xc4,0xff, +0x4d,0x2b,0xed,0xb8,0x79,0xd0,0x9c,0x59,0xc3,0xfa,0xef,0xba, +0x3c,0x2e,0xcb,0x2e,0xfd,0xe2,0x89,0xac,0x03,0x8a,0x5a,0x9a, +0xa5,0x5c,0x4f,0x25,0x9f,0xc8,0xac,0xa2,0x9c,0xbe,0x5d,0x50, +0x39,0x9d,0x68,0xd5,0x37,0xc9,0xd1,0x2a,0xb8,0x6d,0x0b,0xfe, +0x35,0x92,0x36,0x90,0xf4,0x44,0x49,0x0b,0x82,0x9e,0xfd,0xa8, +0xa4,0x35,0xa7,0x92,0x46,0x5a,0x40,0x95,0x1e,0xd6,0xe8,0xad, +0x6f,0xa0,0x3e,0x40,0xbb,0x22,0xa1,0x48,0xee,0x46,0xc5,0xcd, +0x24,0x78,0x83,0xb8,0x84,0xf3,0x8f,0x9e,0x10,0xde,0x5f,0xeb, +0x79,0x26,0xcc,0x10,0x2d,0xd1,0x5b,0x53,0x5b,0xc6,0x04,0xf4, +0x6e,0xab,0x25,0xfc,0x8d,0x40,0xda,0xdf,0x0f,0xe6,0xfc,0x63, +0x7f,0x77,0xdd,0x83,0xfd,0x3d,0xe6,0xdc,0x3d,0xec,0x6f,0xc3, +0x85,0xab,0x7f,0x4a,0xe5,0xfa,0x76,0xac,0x50,0xe4,0x15,0x71, +0x8e,0x06,0x3c,0x2a,0x4e,0xb8,0x7a,0x5f,0xfa,0x5b,0x14,0xc9, +0x1d,0x34,0x0e,0xe4,0x37,0x06,0x88,0x40,0x4e,0xcf,0x97,0x03, +0x34,0xef,0xf5,0xa6,0x4c,0xef,0x97,0xf4,0x65,0x59,0x00,0x44, +0x98,0x2c,0xd8,0xf0,0x63,0xe3,0x6e,0x4a,0xb7,0x91,0x53,0xe6, +0xd3,0xf5,0xca,0x6b,0x20,0xcb,0x34,0x03,0x4a,0x82,0x2a,0x4d, +0x51,0xa6,0x2d,0x6b,0xd8,0x61,0x87,0x6f,0x4c,0xcb,0xb6,0x83, +0x7a,0x86,0x77,0xd0,0x1d,0x3a,0x75,0x7d,0x43,0x1c,0x49,0xb3, +0xae,0x8d,0x88,0x8d,0x0e,0x07,0xa5,0x58,0x4d,0x2f,0xdf,0xa3, +0xd7,0x74,0xe0,0xca,0xbd,0x37,0xcb,0x84,0xa3,0xd4,0x9d,0x73, +0x0c,0x1d,0xd8,0x1c,0xfb,0xff,0x3b,0x39,0x5c,0x79,0xdb,0x3a, +0xb6,0x48,0x05,0x77,0x48,0x43,0xcd,0x7f,0x36,0xc6,0xf9,0x20, +0xd3,0xee,0xc0,0xa8,0x6b,0x45,0xda,0x1c,0xee,0x79,0x52,0xd6, +0xe3,0xd4,0x4b,0xd0,0x43,0x2c,0x9c,0xd0,0xff,0x6a,0x1b,0x3b, +0xa2,0x75,0x6b,0x42,0x3c,0x49,0x83,0xb4,0x1e,0x50,0x67,0xa2, +0x0e,0xbe,0x8d,0x62,0xd4,0x33,0x51,0x6f,0x7f,0xfc,0xac,0xb7, +0x37,0xb1,0x31,0x7a,0xb2,0x9b,0x23,0xae,0xed,0xec,0x89,0x2b, +0x71,0xfd,0x7c,0x9d,0xb0,0xeb,0xeb,0xa9,0xb7,0xfb,0x1c,0xd7, +0xad,0xe7,0x06,0xda,0x5e,0x1e,0xb6,0x77,0x58,0x0f,0x6d,0x7f, +0xf3,0x7b,0x73,0xe5,0x4d,0xaf,0x74,0x87,0xbe,0xcf,0xbf,0xf1, +0x06,0x6b,0xa7,0xa1,0x9c,0x19,0x80,0x6c,0x11,0x6c,0xf5,0x84, +0x93,0xeb,0x82,0xb7,0xde,0xd4,0xd9,0x1b,0x3a,0x91,0x4f,0x9c, +0x39,0x52,0xe6,0x18,0x2c,0x2f,0x3c,0xda,0xd2,0x60,0x80,0x95, +0x28,0xc1,0xff,0xcf,0xae,0x84,0x54,0x83,0xa5,0xc2,0x46,0xfa, +0x76,0xdb,0x32,0xa9,0x0c,0xba,0x1a,0x20,0xa0,0x4c,0x05,0xe9, +0x0a,0x2b,0x07,0xb0,0xd0,0xed,0x8f,0xb7,0xe8,0x07,0xf6,0xf6, +0x2d,0xa4,0xf1,0xfa,0x7c,0xbb,0x91,0xde,0x3a,0x32,0x81,0x6b, +0xd5,0x25,0x05,0xbe,0xd1,0x9d,0x83,0x46,0x22,0x71,0xd0,0x12, +0x57,0xb0,0x6c,0x04,0xcd,0x24,0x03,0x64,0x69,0xe0,0x9b,0xd3, +0xe7,0x6e,0xdf,0x3e,0x1d,0x41,0xbe,0x91,0x7a,0x71,0xe4,0xfb, +0xae,0x61,0x84,0xc5,0x8a,0xd3,0xdd,0x45,0x72,0xbe,0xde,0x72, +0x8b,0x3c,0x5b,0xb5,0x05,0x6b,0xe5,0x9d,0xcb,0xc1,0xb7,0xe4, +0x04,0xe9,0x6f,0x52,0x31,0x4f,0x59,0x68,0x08,0x29,0x68,0x62, +0xde,0x92,0xa5,0xcc,0xc8,0x9d,0x7b,0x17,0x5c,0xb3,0x4b,0xd7, +0xf7,0x62,0x89,0x0d,0xdc,0x84,0xde,0xf0,0x9a,0x69,0xcb,0x12, +0x2d,0x39,0xca,0xc4,0xb1,0xad,0x61,0x0a,0x73,0x69,0x6e,0xf4, +0xb6,0x50,0x3b,0x35,0xd4,0xad,0xae,0x72,0x78,0x34,0x44,0xd1, +0xf6,0xca,0x2d,0x90,0x2b,0x4d,0xa9,0x66,0x0c,0xe0,0xc0,0xa5, +0xfc,0x2d,0x74,0xd1,0xc1,0x66,0xa5,0xa1,0x6c,0x90,0x1f,0xa9, +0x25,0x19,0x75,0x9e,0x9f,0x74,0x1c,0xa9,0x15,0x94,0x01,0xac, +0x0e,0x4e,0x79,0x92,0xcd,0x1c,0xe9,0x52,0xde,0x14,0x5c,0x24, +0x32,0x80,0x53,0x83,0x2d,0xf2,0x6d,0x7c,0xb4,0x65,0x0a,0x8e, +0x6a,0xb4,0xf5,0x36,0x1e,0x87,0xf8,0xbf,0x85,0xf6,0x7c,0x86, +0xd6,0xed,0x73,0xdc,0xce,0xbf,0xc7,0x82,0x5c,0xc2,0x57,0xc5, +0x14,0xc2,0xba,0x02,0xf8,0xb5,0xf0,0x73,0xfc,0x4c,0x68,0x09, +0xeb,0x34,0x05,0xe4,0x66,0x77,0x9c,0x1e,0xf0,0x29,0x7c,0x89, +0x58,0x1d,0x62,0x73,0xd6,0x0a,0x6f,0xd1,0x32,0x4b,0x0e,0xc3, +0x81,0xd3,0x4a,0x23,0x87,0x15,0x98,0xc2,0xd8,0xf3,0x26,0x6b, +0x8d,0x5c,0xb7,0xc0,0x54,0x97,0x1d,0x6d,0xd2,0x56,0xc3,0xfe, +0x16,0x8a,0x13,0x2c,0xc4,0x5f,0xc5,0xb1,0xe6,0x22,0xcf,0xcb, +0xe3,0x55,0xf2,0x3a,0xdb,0x02,0x53,0x1d,0x0e,0x5d,0x91,0x78, +0xb2,0x04,0xf6,0x33,0xf0,0xa9,0xc0,0x34,0xb2,0x2b,0x0b,0x4b, +0xc8,0x7e,0xb2,0x12,0xf9,0xd4,0x95,0x53,0x6f,0x16,0xbf,0x8a, +0x5c,0x09,0xcb,0x8f,0xeb,0xe5,0xd5,0x7a,0xcb,0x1b,0x38,0xad, +0x2e,0x81,0x25,0x15,0x36,0x1e,0xb2,0xcd,0x64,0x4d,0x49,0xfa, +0x2e,0x16,0x86,0xa1,0x27,0xa5,0x43,0x97,0xc4,0x97,0xe0,0x37, +0x19,0xa6,0x9b,0x7b,0xcd,0x3d,0x74,0x2e,0x4b,0x86,0x61,0x77, +0xe9,0x88,0x2f,0xf1,0x45,0xc7,0x4a,0x07,0xc3,0x74,0xbb,0xd8, +0x55,0x7a,0x4d,0x34,0x4b,0x1a,0xb4,0x7f,0x05,0xd6,0x3a,0x94, +0x46,0xeb,0xb2,0x57,0xd0,0x40,0xda,0xc3,0x1a,0x4c,0xab,0x35, +0xf2,0xea,0x3d,0x1c,0x34,0x28,0x6b,0x49,0xac,0x75,0x28,0xb4, +0xd6,0xed,0x5b,0x92,0x06,0x92,0x7a,0x21,0x0f,0xbe,0x58,0x83, +0x9c,0x12,0x08,0xa7,0xff,0x6d,0x3c,0xe0,0x83,0x6d,0x09,0x0c, +0x67,0xd1,0x30,0xd5,0x79,0x02,0x7d,0x75,0x30,0xcf,0x9d,0xcc, +0xe3,0x48,0x13,0xd7,0xa1,0xc4,0x4a,0x92,0x3b,0xbb,0x9b,0x3a, +0x73,0xc4,0xca,0x35,0x11,0x9a,0xd4,0xa4,0xf4,0x85,0x3a,0x1e, +0xd0,0x49,0x32,0x9b,0xfc,0x67,0x30,0x04,0xad,0xfe,0xef,0x60, +0x29,0x0c,0x46,0xc3,0x7f,0x10,0x0d,0x7f,0xc4,0x67,0xc3,0x7f, +0xf0,0x3e,0x2f,0xf0,0xe5,0xc6,0xa1,0x9d,0xf9,0x2f,0xe6,0xdf, +0x8c,0x0f,0x96,0xa8,0x35,0xf4,0xe2,0xc4,0xaf,0x1c,0x81,0x43, +0xe8,0x08,0x8c,0xa9,0x71,0x04,0x0e,0x29,0x8e,0x80,0xc0,0xdf, +0x37,0x86,0x74,0xe6,0xd1,0xf6,0xa5,0x62,0x36,0x6a,0xfe,0x4a, +0xb0,0xa0,0x4a,0x6a,0x01,0x9f,0xa1,0x05,0xac,0xfc,0x4f,0x0b, +0x28,0x58,0x93,0x86,0x46,0xd7,0xce,0xfc,0x17,0x53,0x45,0x73, +0x56,0x18,0x7e,0x03,0xcb,0x8b,0x06,0x7a,0xcf,0xf3,0xd7,0xf6, +0xaa,0x02,0xed,0x95,0xc0,0xa3,0x7d,0xda,0xd4,0x99,0xaf,0x36, +0x2e,0xb4,0x7a,0xa5,0x86,0x3e,0x58,0x4a,0xee,0x2a,0x5e,0x68, +0xd6,0x3f,0xb0,0x26,0x81,0xbe,0x3c,0x5e,0xf4,0x26,0xce,0xb0, +0xf9,0x8d,0x90,0x81,0x29,0xed,0xc8,0x7c,0x65,0xc3,0xe1,0xe7, +0x5c,0xc4,0xed,0xbd,0xf5,0xf4,0x8a,0x3d,0x86,0x9e,0xef,0xb6, +0x57,0x08,0xa9,0x88,0x61,0x47,0x56,0xcb,0xff,0xda,0x22,0x0a, +0x2d,0x2f,0x8a,0x82,0xdd,0x32,0x65,0x1f,0xd4,0x10,0xba,0xbf, +0x84,0x46,0x7f,0xf3,0xe4,0x1f,0x50,0xae,0x98,0x07,0x04,0x5a, +0xa4,0xc1,0xf0,0x1c,0x2c,0xaf,0x19,0x84,0xfc,0xf5,0xd4,0xa3, +0x0c,0x93,0x4f,0xd4,0x24,0x9a,0xdf,0x59,0xd3,0x23,0x33,0x73, +0x0d,0x42,0x1e,0xa6,0x3a,0x1d,0x97,0x6d,0x1c,0xbf,0xe4,0xa4, +0xc5,0x1a,0x0c,0x51,0x15,0x47,0xb0,0xd8,0x11,0x06,0x21,0x23, +0x16,0x51,0x7e,0xb4,0xd8,0x22,0xdb,0x60,0xc9,0x4d,0x2d,0x2e, +0xd2,0x87,0x65,0x7c,0xb5,0x06,0x15,0x61,0x41,0x8a,0x12,0xf5, +0x40,0xf6,0xb7,0x2e,0x13,0x1e,0x1d,0xc2,0xf9,0xcc,0x69,0x39, +0xb1,0x33,0x6f,0xbe,0x47,0x11,0xd2,0x60,0x48,0x87,0xe8,0x96, +0xbc,0xa9,0x18,0x9b,0x5f,0xd4,0x0c,0x13,0x49,0x6f,0x68,0xde, +0x99,0x5f,0xbd,0x42,0xb9,0xf1,0x7d,0x08,0x96,0xe6,0x52,0x60, +0x3d,0x1d,0x2c,0x4f,0xe1,0x44,0x54,0xbe,0x78,0x04,0xab,0x1a, +0x19,0xc8,0x83,0x60,0x5e,0xa2,0x1e,0x42,0x33,0x9b,0x53,0xe1, +0x43,0x89,0x50,0x28,0x5f,0x07,0x6b,0xc4,0x30,0x4d,0x94,0xb1, +0x07,0x49,0x53,0xe4,0xd3,0x16,0x24,0xe0,0xa4,0xa7,0x28,0x50, +0xbf,0x44,0x38,0x2a,0x37,0xfa,0xc0,0x0b,0x03,0x90,0xc2,0x3f, +0x2f,0x3e,0x7f,0x88,0x29,0x94,0x77,0x43,0x1d,0x5e,0x88,0x87, +0x8f,0xff,0x3b,0x57,0xb0,0xfd,0x5b,0x28,0x5b,0x61,0x00,0x39, +0x6c,0x0c,0xea,0xcc,0xe7,0xed,0x9d,0x2d,0x17,0xd7,0x54,0x11, +0xb5,0x0f,0xcb,0xef,0x60,0x0b,0x27,0x38,0x58,0x26,0xbb,0x33, +0x2d,0x59,0xe2,0x47,0x9e,0xd1,0x9b,0xb1,0xfc,0x94,0xa8,0xb3, +0xb0,0xc4,0xd4,0x91,0x21,0x47,0x39,0xcc,0xbc,0x2e,0x90,0x4f, +0x15,0x95,0xfb,0x20,0x37,0xd0,0xca,0x0c,0x28,0x31,0x6e,0x3a, +0x2d,0x0a,0xf1,0x87,0x4c,0xc5,0x9a,0xff,0xf7,0x6e,0x85,0xfc, +0x5f,0x84,0xe5,0x1e,0x89,0x5d,0x67,0x9b,0x07,0x0b,0xa2,0xab, +0x37,0xbe,0xc1,0x19,0xe5,0xf2,0xdf,0xbf,0xc0,0x05,0x3a,0xb9, +0xbc,0x26,0x3f,0x7a,0x86,0x47,0x7a,0x4f,0xd2,0x2d,0x63,0xb7, +0x81,0xcf,0x99,0x14,0xe0,0x37,0x41,0xb7,0x6d,0xf5,0x1e,0x73, +0xc4,0x6d,0x21,0x43,0x06,0x2c,0xe8,0x86,0x4c,0x4a,0xd2,0x92, +0x39,0x15,0x2e,0xd0,0x48,0x5a,0x93,0xa7,0x71,0x1e,0x70,0x13, +0x54,0xba,0xdf,0xb8,0x07,0x09,0x29,0xaf,0x7e,0xbb,0x3d,0x98, +0xa8,0x24,0x5f,0xce,0xd1,0x2f,0xb0,0x83,0xa4,0x0e,0x5d,0x71, +0x0f,0x3a,0xdf,0x85,0x16,0xf7,0xa8,0xb7,0x3d,0xb7,0xac,0x77, +0x99,0xf0,0x67,0xa9,0x2d,0x1c,0x62,0xcb,0xaf,0xe7,0x3d,0xc9, +0x8a,0xb8,0xe6,0xb9,0x8e,0x3a,0xd8,0xf2,0xbd,0x0d,0xa7,0xce, +0x64,0x69,0x1f,0x05,0xa7,0xb8,0x4b,0x64,0x2b,0x8e,0x30,0x41, +0x1a,0xe8,0x0c,0x9d,0x39,0xe1,0xcf,0x6b,0xc7,0xa6,0x85,0xe9, +0x66,0x72,0x61,0x93,0xa6,0x85,0x4a,0xa4,0x33,0x2c,0xd4,0x40, +0x0b,0x68,0x8b,0x19,0x2e,0x1f,0x9a,0x39,0x4a,0x37,0x8b,0x1b, +0x35,0x6d,0xe6,0x70,0x49,0xdd,0x27,0x26,0x0f,0x92,0xf4,0xb0, +0x2e,0xcf,0xfa,0x96,0x01,0x56,0x94,0xf9,0x63,0x19,0xb0,0x9f, +0xb6,0xa6,0xbc,0x1c,0x74,0x7f,0x0d,0xbe,0xe7,0x64,0x2e,0xe4, +0xc1,0x81,0x6b,0x59,0x85,0xe8,0xc5,0xb7,0x35,0x90,0x6f,0xc9, +0xb7,0x1e,0x9d,0xd1,0x46,0x91,0xa7,0x1c,0x69,0xf1,0xd0,0x0d, +0xc7,0xb5,0x3c,0xab,0x76,0x61,0x09,0xcf,0x74,0xd0,0x1e,0x24, +0x2c,0xf6,0xc5,0x85,0x71,0x1d,0x74,0x83,0xb9,0x4e,0xc1,0xc3, +0xda,0x4a,0x8b,0x64,0x95,0x86,0x7c,0x0f,0xcd,0xd9,0xcc,0xc4, +0x0b,0x85,0x92,0x20,0x17,0x5e,0x1b,0xe5,0xab,0x1b,0xc7,0xf5, +0x0a,0x1b,0xde,0x15,0x6d,0x5c,0xd7,0x6a,0xef,0xd0,0x7c,0xa9, +0xd2,0x72,0x3d,0x79,0xc4,0xaa,0x09,0x13,0x43,0xf7,0x14,0x59, +0xde,0x7a,0x02,0x51,0x4f,0x54,0xb0,0x26,0x46,0x53,0x7a,0x37, +0x3e,0x37,0x45,0x37,0xf8,0x32,0x13,0x38,0x3c,0x7c,0xc6,0x00, +0xbb,0x5e,0xa3,0xe2,0x6f,0x5e,0x39,0xb4,0x4f,0xbf,0x4d,0x77, +0x61,0x03,0xf3,0xd7,0xde,0xeb,0xc9,0xc5,0xda,0x8a,0x7e,0xc9, +0xc4,0xca,0xa3,0xef,0x94,0x01,0x41,0xd2,0xf5,0x50,0xe6,0xca, +0xb9,0x84,0x7d,0xb7,0xec,0x32,0x4f,0x4f,0x09,0x1d,0x36,0x61, +0xb2,0x5f,0xac,0x2e,0x62,0x09,0x43,0x6a,0x45,0x0f,0x0e,0xf6, +0xd4,0xb6,0x7e,0xe0,0x0f,0xdf,0x48,0xea,0xc5,0xe8,0x13,0x6c, +0xc8,0xbf,0xf9,0x00,0x02,0x0d,0x5b,0xf3,0x55,0x1b,0x94,0x6b, +0xc5,0x1b,0xca,0xed,0xab,0xef,0x70,0x0a,0x20,0x55,0xa4,0x39, +0x4b,0x34,0x53,0x1a,0x8f,0xea,0x23,0xa1,0x31,0x6f,0x6c,0x7b, +0x22,0xfd,0xf0,0x6b,0x68,0xa0,0x7d,0x02,0x81,0xa6,0xba,0x9c, +0xfa,0x96,0xf8,0x75,0x3c,0x74,0xf0,0x98,0xc5,0xc3,0x1b,0x83, +0xea,0xff,0x9f,0xbb,0x76,0xd5,0xf0,0x1d,0xea,0xf9,0xa2,0x1c, +0x18,0x47,0x77,0x03,0x5b,0x42,0x11,0xba,0x30,0xf5,0x21,0x4a, +0xd3,0x90,0x44,0x31,0xe5,0x2c,0x7c,0x03,0x8b,0xb0,0x2a,0x8b, +0x0c,0xb0,0xe8,0x37,0x7c,0x20,0x8b,0xd0,0x71,0x68,0x08,0x51, +0xf3,0x4f,0xcc,0xd8,0xad,0xd4,0xe1,0xf0,0xc6,0xbd,0xbb,0x77, +0x1e,0xaf,0x02,0xdf,0x7a,0xee,0x2c,0xa9,0x43,0xc6,0x31,0xce, +0x72,0x6f,0x4f,0x53,0x6f,0x67,0x7c,0x80,0x71,0x8c,0x1b,0x5b, +0x45,0x7c,0x77,0x4e,0x3e,0x30,0xfb,0xf0,0x62,0x2c,0x75,0xea, +0xb2,0xe9,0xd1,0x0b,0x26,0xd6,0x56,0x3b,0xe0,0x8c,0x07,0x5e, +0xd3,0x29,0x4f,0xe5,0x7b,0x5e,0x78,0x97,0xb5,0xfd,0xd4,0xe9, +0x2c,0x6d,0x99,0xef,0x75,0xa2,0x6d,0xec,0x3f,0xd2,0x7f,0x82, +0x74,0x7d,0x18,0x73,0xf5,0xd0,0xe5,0x63,0xd9,0x76,0xc5,0xf1, +0x53,0x86,0xeb,0x62,0xb8,0xb0,0x71,0xd3,0xfa,0x49,0x4d,0x7d, +0xa0,0x16,0x2b,0x54,0x16,0xf3,0x6a,0xd2,0x80,0x8c,0xcd,0x83, +0xa3,0x79,0xb0,0x2a,0xcf,0x1a,0x1e,0x96,0xf9,0xd0,0xc0,0xac, +0x63,0xc8,0x58,0x0d,0x7c,0xff,0xba,0x18,0x84,0x3f,0x7d,0xd2, +0x3b,0x6c,0x56,0x02,0xb3,0x66,0x6d,0xbf,0x97,0xfe,0x5c,0x5b, +0xd5,0xf1,0x31,0xa9,0xdd,0xbe,0xeb,0x70,0xf7,0x71,0x52,0xf6, +0x78,0x26,0x7d,0xdf,0xe5,0xe3,0xe9,0x76,0xd9,0x89,0x63,0xfa, +0xe8,0xa6,0x70,0x5e,0x41,0xe1,0xee,0x52,0x5f,0xaf,0xbb,0x48, +0xf6,0xf9,0xdd,0xf0,0x1e,0xba,0xf1,0x5c,0xdf,0xf0,0x81,0xae, +0x7d,0x83,0x8e,0xa7,0x4f,0x93,0xfa,0x86,0x32,0x5d,0xaf,0x3c, +0x1a,0x53,0x6a,0xa7,0x9e,0x4b,0xb7,0x43,0x3f,0x84,0xed,0x0f, +0x55,0x77,0xc5,0xaf,0x63,0xa2,0x23,0xfc,0xed,0x6d,0xeb,0xd2, +0x87,0xd3,0x21,0x7b,0xea,0x43,0x21,0xff,0x7f,0xe3,0xfe,0x55, +0x34,0x04,0x63,0x0d,0x1d,0xf8,0xe6,0x22,0xe6,0x37,0x18,0x22, +0x21,0x7b,0x9c,0x79,0xc7,0x53,0x07,0x7e,0xd0,0x2c,0x9c,0x6f, +0xa8,0x0a,0x44,0xb5,0xfb,0xd7,0x5d,0x62,0x96,0x6e,0x58,0xf4, +0x06,0x5d,0x36,0xec,0x80,0x4a,0x14,0x2c,0x98,0x30,0xfb,0xf4, +0xdc,0x6d,0x93,0x68,0x0f,0x1c,0xdb,0xb8,0x6d,0xcb,0xde,0xa3, +0xf0,0x23,0x04,0xd6,0x73,0x65,0x89,0x03,0x76,0x41,0x73,0xec, +0x02,0x56,0x3d,0x8a,0x7a,0xad,0x3f,0x52,0x01,0x7d,0xcd,0xa3, +0xd4,0x29,0x87,0x43,0xab,0x48,0x53,0x8e,0x74,0x9b,0xdd,0x69, +0x7c,0xa8,0xd4,0x1b,0x27,0xc4,0x38,0x72,0x7a,0x95,0x58,0xee, +0x91,0x47,0xa9,0xf6,0xd8,0x1a,0xd8,0xdf,0x60,0xe3,0x2d,0xf0, +0xc2,0xb9,0xd1,0x2d,0xe2,0x55,0x41,0x36,0x32,0x4f,0x58,0xd2, +0x07,0xa7,0x2c,0xcd,0x58,0x1a,0xc5,0x80,0x46,0x7f,0x2f,0x7d, +0x28,0xb3,0x0f,0xb1,0x2a,0x0f,0x65,0x8f,0xb5,0xec,0xd1,0x41, +0xd0,0x92,0x6c,0x44,0x97,0x6b,0xe3,0xd1,0x5b,0xcc,0x5a,0x93, +0x07,0xb6,0xb5,0x11,0x4b,0x5c,0xc8,0x5e,0x6c,0x28,0x69,0x03, +0x7b,0x19,0x07,0x56,0x3d,0x17,0x5b,0x31,0x1f,0xfa,0x89,0x4a, +0xf5,0xe7,0xc3,0x66,0x32,0x5f,0x59,0xbe,0x98,0x40,0x36,0xc3, +0x04,0xac,0xe1,0xd7,0xb3,0x8f,0x28,0xb3,0x1a,0xe3,0x5c,0x0b, +0x7a,0x8a,0x88,0x65,0x6a,0xca,0xfe,0x53,0xd8,0xfb,0x83,0xfc, +0x97,0xab,0x07,0x88,0x96,0xe6,0x81,0x60,0x94,0xd7,0x60,0x45, +0xf9,0xbd,0xf4,0x26,0x2f,0x6f,0xf0,0x62,0x69,0xe0,0x7d,0x9b, +0x06,0xff,0x2f,0x84,0xde,0x2f,0x51,0x8e,0x35,0x7c,0x09,0x40, +0x0f,0x8e,0x9f,0x5d,0x76,0x1a,0xc9,0x08,0xc7,0xed,0xa1,0x06, +0x18,0x5a,0x66,0xa3,0x86,0xa7,0x8a,0xdb,0xbe,0x7e,0x35,0x3b, +0xfa,0x50,0xfc,0xb4,0x64,0x3b,0x60,0x53,0xcb,0xa1,0x1f,0xf4, +0x0b,0x28,0x27,0x6c,0x70,0xd4,0xb4,0xd1,0xd3,0x74,0x71,0xb0, +0xd2,0x93,0xac,0x8c,0x63,0xcf,0x4f,0x8b,0x3a,0x14,0x6c,0x47, +0xd8,0x80,0x76,0xa4,0x1f,0xe9,0x97,0xda,0x0e,0xd8,0xe4,0xf8, +0x43,0xe7,0x0f,0xe9,0x56,0xb3,0xce,0x6b,0x35,0xdd,0x27,0x5c, +0x02,0x2b,0xdd,0x53,0x0e,0xac,0x4e,0x5c,0x2a,0xc8,0x3c,0x36, +0x33,0x4c,0x42,0x87,0x39,0x6c,0xd2,0x4c,0x5f,0x09,0x76,0xda, +0xfa,0x4e,0xda,0x9f,0x80,0xde,0x35,0x97,0x70,0x6c,0x7f,0x66, +0xc1,0x89,0x11,0xe8,0xc2,0xb5,0x45,0xf7,0x6d,0xc2,0x88,0xee, +0x34,0x94,0x56,0x4c,0x5e,0xf5,0x01,0xad,0x41,0x06,0x18,0x84, +0x8e,0xb4,0xb2,0x87,0x1c,0xe7,0x11,0x87,0x59,0x68,0xf4,0x17, +0x8d,0xc9,0x07,0xce,0x0d,0x81,0x23,0x8d,0x74,0x53,0x21,0xd2, +0x93,0x44,0x4e,0x65,0x49,0xa3,0x86,0x34,0x2e,0x1f,0x71,0xfe, +0x8b,0x70,0xd0,0x48,0x77,0x98,0x9d,0x9a,0xa7,0x69,0xd6,0x37, +0xf7,0xbd,0xee,0x06,0xf7,0xfe,0x6e,0xee,0xef,0xd2,0x61,0x93, +0x03,0xfb,0x97,0xed,0x54,0xd9,0xe1,0x30,0xfb,0xfb,0xdd,0x5e, +0x8e,0xba,0x40,0xce,0xb1,0x6f,0xaf,0x66,0x92,0xba,0x50,0xfc, +0xa5,0x66,0xae,0x8e,0xfd,0x82,0x43,0x9f,0xfc,0xeb,0x4f,0xa2, +0x29,0x80,0x2c,0xa3,0x73,0xf6,0xad,0x72,0x3b,0x56,0xbd,0x34, +0x66,0x13,0xaf,0xdc,0x64,0xbe,0xe3,0x81,0xb0,0x40,0x5e,0x46, +0x67,0x73,0x30,0xd6,0x99,0xce,0x8c,0x8d,0xc8,0xd2,0x7f,0xd8, +0xa9,0xb6,0x96,0x5d,0xb9,0x94,0xfe,0xab,0x2d,0x2c,0x00,0x3f, +0xb1,0x37,0xca,0x4c,0xcf,0xfb,0xb0,0x2f,0xda,0x32,0x89,0x12, +0x51,0xdd,0xe3,0xd5,0x30,0xf8,0x73,0x91,0x41,0xf4,0xbf,0x8d, +0x47,0xa9,0xad,0xb1,0xb6,0xbc,0x15,0x1a,0x8b,0xd8,0xd7,0x7b, +0x3e,0x5f,0x9f,0x0e,0x12,0x8f,0xdd,0x9e,0x08,0x2b,0x63,0x34, +0x4f,0x93,0x12,0x6f,0xed,0xd6,0xad,0x62,0xbb,0x1f,0xb9,0x33, +0x31,0xc7,0xce,0x70,0xfa,0xd2,0xf5,0xfd,0x74,0xa2,0xbe,0xc0, +0xbc,0x7e,0xf6,0x91,0x13,0x12,0xf5,0x3c,0xf2,0x6d,0xca,0xdf, +0x09,0x63,0x73,0x8c,0x51,0xd0,0x90,0x47,0x59,0x6a,0x2c,0x9a, +0xb6,0x1a,0x35,0x48,0x3e,0x85,0x36,0x07,0x29,0x6f,0x7f,0x20, +0x2c,0x34,0x5e,0x36,0xb7,0xc6,0x85,0xb6,0xe6,0x23,0x2b,0x24, +0xeb,0x79,0xa5,0x20,0xe9,0xdf,0x0b,0xaa,0x69,0xd0,0x42,0x6c, +0xd0,0xfc,0x15,0x7a,0x18,0xa8,0x87,0x3a,0x7a,0x4b,0x70,0x46, +0x2d,0x40,0x43,0xef,0x6c,0x0b,0x73,0xe8,0x35,0xb7,0x7f,0xbc, +0x53,0xae,0xb9,0x6d,0x0a,0xfe,0x64,0x82,0x37,0xce,0x14,0xeb, +0x88,0x53,0xd1,0x90,0xae,0xbd,0x9f,0x89,0xa8,0x8d,0x71,0xec, +0x47,0xd4,0x17,0xf0,0xad,0xa8,0x24,0x92,0x95,0x6f,0x45,0xe0, +0xcd,0xa4,0xfc,0x95,0x1a,0x4f,0x2b,0x2b,0x37,0xa8,0x9e,0x88, +0xea,0xf6,0x5f,0x03,0x91,0x7c,0x29,0x58,0xf2,0xd5,0x17,0xe7, +0x82,0x8d,0xd8,0x58,0xa1,0x08,0xf5,0xa3,0x2d,0xf5,0x66,0x8a, +0xbb,0x91,0xa2,0x27,0xc9,0x43,0x6a,0xbd,0x45,0x59,0x8d,0x00, +0x7a,0x59,0x00,0xcc,0x5c,0xc8,0x3a,0x0f,0xf5,0x6d,0xd6,0x6b, +0xe4,0xf1,0xeb,0x73,0x24,0x9f,0xf1,0x8c,0xd7,0xb1,0xdb,0x21, +0xf4,0xf6,0xd9,0xe6,0xa5,0xca,0xcd,0x20,0x6e,0x7f,0x92,0xe6, +0x8e,0x7d,0x42,0xbb,0x47,0xe9,0xd2,0x22,0x98,0xdb,0x47,0xae, +0x1e,0xd7,0xdb,0xfd,0x9e,0xe8,0xeb,0xac,0xfb,0x99,0x46,0xd2, +0x83,0x9e,0xca,0x4b,0xa1,0x05,0x39,0xd0,0x26,0x2f,0x46,0x59, +0xc6,0xac,0x53,0x06,0xf1,0x65,0xc2,0x65,0x79,0x2d,0xfa,0x00, +0xe2,0x33,0x9c,0x15,0x42,0x17,0xd7,0xb7,0x44,0x24,0xd6,0x6e, +0xee,0xc4,0x71,0xa1,0x8e,0x7c,0xc3,0x0a,0x53,0xd0,0x46,0xd1, +0xd5,0x9a,0x05,0x50,0x87,0x13,0x2e,0x57,0x8a,0xe0,0x4c,0x89, +0xc8,0xe1,0x79,0xe6,0x5b,0x4a,0x7e,0x2f,0xa1,0x14,0x92,0xe5, +0x05,0xff,0x4c,0xa1,0x99,0xec,0xeb,0xc9,0x0a,0x0b,0x3f,0xcd, +0x41,0x02,0xaf,0x39,0x21,0xb9,0x52,0xf4,0x42,0x2e,0xd8,0xe4, +0x80,0x8f,0xde,0xf2,0x7a,0x19,0xcc,0x37,0xa8,0xce,0xd9,0xde, +0xa4,0xb6,0xf4,0xe6,0x7e,0xdd,0x0d,0x10,0x18,0xd0,0xbe,0xe4, +0xa7,0x2d,0x9b,0x35,0x6f,0x41,0x64,0x54,0xd7,0x7a,0x01,0x2c, +0xba,0xb4,0xc1,0xaf,0xf8,0x4e,0x28,0x69,0x43,0x95,0x2c,0x57, +0x94,0x2c,0x68,0xea,0x9a,0x68,0xdc,0x48,0x13,0xa6,0x82,0x45, +0x97,0x74,0x28,0x03,0xea,0x97,0xfc,0xe4,0x65,0x0b,0xe6,0xcf, +0x1e,0x57,0xfb,0x2f,0xa8,0xfb,0x8a,0xff,0x32,0x33,0x3d,0x86, +0x7e,0xf3,0xfe,0x02,0x74,0xac,0xe9,0xcb,0xa0,0x7b,0x15,0xaa, +0x57,0x22,0x8e,0xfc,0xaf,0x0a,0x4c,0x5d,0x9f,0x9b,0x67,0xad, +0x50,0xd7,0x3c,0x71,0xdc,0x54,0xf4,0xcc,0x00,0x1b,0x4b,0xf6, +0x16,0xa9,0x36,0x91,0x16,0x9a,0x22,0x68,0x21,0x1f,0x26,0x2d, +0x8a,0x60,0x66,0x73,0xa3,0x95,0xc9,0x83,0x8c,0x64,0xc9,0xe8, +0x28,0x62,0xed,0xdf,0x5e,0xea,0xc1,0x42,0x57,0xdb,0xb5,0xdc, +0xd5,0xfb,0x47,0xe9,0x35,0xf0,0x5a,0x10,0x61,0xa3,0x29,0x81, +0x53,0xff,0x86,0x54,0x2e,0x3e,0xb2,0xdc,0x53,0x24,0xaf,0x2c, +0x52,0xed,0xa1,0x14,0xd8,0x95,0xd0,0x82,0x91,0x57,0x28,0x44, +0xfc,0x59,0x12,0x65,0xb4,0x62,0x68,0xec,0xed,0x89,0x9f,0xac, +0x18,0x7f,0x16,0x9a,0xdb,0xbe,0x80,0xe3,0x4f,0x60,0x0f,0x0e, +0xe1,0x8f,0xc9,0x9e,0x4a,0x72,0x9c,0x51,0x7f,0x9e,0x3d,0xcb, +0xb5,0x17,0x8a,0xf2,0xa0,0x12,0xd5,0x45,0xdb,0x2c,0xf6,0xec, +0xa1,0xff,0x9b,0xba,0x37,0x81,0x8b,0xaa,0xea,0xff,0x80,0xef, +0xcc,0xe5,0xce,0xe0,0xbd,0x30,0x20,0x30,0xb8,0xe0,0xcc,0xb8, +0x65,0x96,0x66,0x66,0xe6,0xda,0x93,0x4b,0xb9,0xef,0xe6,0xbe, +0x6b,0x59,0x6a,0x9a,0x66,0x2e,0x98,0xbb,0x46,0x59,0x9a,0x8f, +0xa6,0xa9,0xa5,0xb9,0xd5,0xe3,0x6e,0x61,0x6a,0x1a,0x68,0x9a, +0xe2,0x82,0x18,0x88,0x08,0x92,0x88,0x28,0xa9,0xa0,0xe2,0x82, +0x22,0xe7,0x0e,0x07,0x9d,0xf7,0x7b,0xce,0xbd,0x33,0x0c,0x88, +0x4b,0xcf,0xf3,0x7f,0xdf,0xcf,0xe7,0x15,0xe7,0xcc,0x9d,0x7b, +0xcf,0xf2,0xfb,0xfd,0xce,0x6f,0xbf,0xe7,0x9e,0xfb,0xfd,0xa1, +0x8d,0x0e,0x12,0x44,0xe6,0x49,0x24,0x80,0x26,0xb2,0xb7,0xd3, +0x07,0x98,0x48,0x20,0x9d,0x27,0xf5,0xd8,0xb8,0x71,0xca,0x8e, +0xb0,0xb8,0xe4,0x8e,0xb1,0x4c,0xb2,0x6e,0x83,0x40,0x89,0x49, +0x24,0x76,0xb2,0x41,0x6d,0x95,0x21,0x92,0xbe,0x29,0xf2,0x0d, +0x13,0x6d,0x40,0x7e,0xfe,0x78,0xd7,0xa4,0xef,0x3f,0x58,0x5a, +0x61,0x91,0xf9,0xc7,0x25,0x6b,0xbf,0x5f,0xfb,0x0b,0x3c,0xc2, +0xcd,0xcc,0xf4,0x34,0xa1,0xb1,0xdb,0x6c,0xb4,0x09,0x89,0x65, +0xaf,0x86,0xa8,0x49,0x37,0xaf,0x79,0x6f,0xdd,0xe4,0x8d,0xec, +0xc5,0xe6,0xa3,0xe7,0x4e,0x9e,0xf2,0xf1,0x50,0x5f,0xcb,0x0c, +0x44,0xec,0xdf,0x24,0x93,0x88,0x94,0x20,0xf5,0xf5,0x2b,0x2d, +0xae,0xc0,0x6c,0x97,0xb3,0x05,0xdf,0x59,0x84,0x70,0x2f,0x4d, +0xb6,0x2c,0x93,0xb7,0xc8,0x6c,0x89,0xc2,0xdf,0x47,0x83,0xb2, +0xd3,0x57,0x93,0xf8,0x1f,0xbe,0xb2,0x91,0x65,0x09,0xd6,0x21, +0xf2,0xe1,0x19,0xb6,0x6c,0xfe,0xfe,0x5c,0x80,0x59,0xc9,0x44, +0xea,0xd0,0x45,0x52,0x9f,0x2d,0x1b,0xa7,0x6f,0x0d,0x8b,0x4d, +0xee,0x6c,0xa2,0xa1,0x64,0xe4,0x47,0xbf,0x4d,0x5a,0x3e,0xcb, +0xf6,0xcd,0x92,0x1f,0x77,0x32,0xea,0x95,0x3f,0x91,0x3c,0xd0, +0x34,0x74,0x5c,0x78,0x9f,0x31,0x0e,0x5a,0x99,0xce,0x95,0x68, +0x25,0x12,0xdb,0xd0,0x64,0xd9,0xed,0xc1,0xc5,0xd3,0x59,0x45, +0x13,0x19,0x42,0x13,0xa5,0x5b,0x26,0xda,0x89,0xec,0x1c,0xb7, +0x3b,0x7c,0xe5,0xe8,0xc5,0xc0,0x69,0xe3,0xd2,0x95,0xcb,0xd7, +0xfe,0x44,0x5a,0x91,0x5f,0xca,0xc3,0x89,0x79,0x9b,0xc6,0x4a, +0xb4,0x22,0xef,0xe1,0x2f,0x6d,0x4e,0x59,0xa2,0x66,0x69,0x86, +0xf8,0x4d,0xe8,0xcf,0xa6,0xe8,0x6d,0x2b,0x36,0x6e,0x74,0x1c, +0x3f,0xfe,0x13,0x11,0xc8,0xee,0x8a,0xa4,0x2c,0x59,0xaa,0xbd, +0xde,0xb7,0x11,0xed,0x69,0xa6,0x9b,0xc7,0xbd,0xd4,0xa9,0x8b, +0xfd,0x4d,0x93,0x85,0xa5,0x21,0x3e,0x95,0x1f,0xc9,0x2d,0x14, +0x7b,0x6d,0xc9,0x32,0xdb,0x40,0x1b,0xec,0xf0,0x01,0x91,0x54, +0x07,0xdf,0x9e,0xdd,0xb0,0x2a,0x69,0x93,0x83,0xcc,0x53,0xef, +0xb3,0x4d,0x23,0x83,0xe8,0xa9,0xc1,0x34,0x40,0xfa,0xcc,0xd4, +0x9b,0xf8,0xd3,0x5a,0xe4,0xb4,0x54,0xd7,0x44,0x96,0x15,0xee, +0x18,0xd5,0x48,0xaa,0x81,0x39,0x9a,0x73,0x3c,0x51,0x6d,0x9d, +0x68,0xd8,0x7f,0x85,0x7c,0x96,0x46,0x3e,0x63,0x69,0x86,0xc0, +0x0f,0xad,0x19,0x57,0x36,0x9b,0x48,0x37,0x22,0x92,0x00,0xd2, +0x88,0x34,0x42,0xb4,0x12,0x40,0xbb,0x39,0xc6,0x5c,0x69,0xf8, +0xca,0x18,0xb6,0x79,0xb7,0x48,0x03,0xd8,0xc3,0x08,0xc4,0x48, +0x03,0x48,0x37,0xc7,0x16,0xd3,0xe8,0x44,0x2b,0x2d,0xdb,0x30, +0xed,0xbe,0x23,0xd6,0x7c,0x1f,0xc2,0x5b,0xd6,0xbe,0xb5,0xb0, +0xb5,0x29,0x2d,0x54,0x6d,0x8d,0x18,0xaa,0xec,0xc5,0xa6,0x55, +0x1c,0x9d,0xcc,0x55,0x1a,0x34,0xa5,0x65,0xa1,0x2f,0xe7,0xfc, +0x9c,0xa8,0x86,0xf3,0xd1,0xdc,0x49,0x8d,0xc0,0x9e,0xda,0x68, +0x9d,0x60,0x64,0x14,0xd2,0x93,0xf4,0x84,0x39,0x51,0x68,0x27, +0xf7,0x68,0x9d,0x60,0x64,0x14,0xda,0x93,0xf6,0x24,0x26,0xaa, +0x90,0x4e,0xfa,0x68,0xc1,0x8d,0xd3,0x89,0x95,0xa5,0x34,0x42, +0xd2,0x2f,0x90,0x10,0x8c,0x17,0x6e,0x22,0x3e,0xa1,0x1f,0xa8, +0xe1,0x5b,0x4d,0x38,0xd5,0x88,0x86,0xb0,0xa4,0x46,0x48,0x63, +0x1c,0xf0,0xa4,0x46,0xa0,0xfe,0x02,0x15,0xe2,0x90,0x9d,0x86, +0x8f,0xe5,0x07,0x3e,0x34,0x8b,0xaf,0xaa,0x51,0x7f,0x64,0xce, +0xab,0x4c,0xce,0x65,0x88,0x57,0x40,0xd5,0xbb,0xc4,0x57,0x0e, +0x69,0x94,0x1d,0xea,0x5c,0xe6,0xec,0x4c,0x8c,0xb2,0xc9,0xa2, +0x96,0xc3,0x19,0x08,0x5f,0x81,0xef,0xf7,0xb2,0xd3,0x07,0xa7, +0x1e,0x74,0x76,0x6e,0x45,0x93,0x30,0x8f,0xf8,0x92,0x21,0x19, +0xe4,0xec,0x15,0x91,0x0c,0xc9,0x96,0xe9,0xea,0x16,0xa4,0xbd, +0x29,0xa3,0x30,0xca,0x4a,0xd6,0x93,0x0f,0x27,0xd9,0xc8,0x3a, +0x12,0x2a,0x43,0xb8,0x89,0x9c,0x21,0x46,0xcb,0x96,0x1f,0xd8, +0x2f,0x54,0xcd,0xce,0x96,0x1b,0xf2,0xf5,0x82,0x5a,0xad,0x1f, +0x3d,0x49,0x28,0x75,0x32,0xfa,0xe9,0x46,0x4e,0x59,0x49,0xd4, +0x74,0x13,0xad,0xde,0xba,0x36,0x0d,0xae,0xd5,0x75,0xff,0xd9, +0xb1,0xf6,0xb6,0x43,0xa5,0x17,0xf6,0x5c,0xe8,0x4c,0x02,0xc2, +0x48,0x87,0xbb,0xa4,0x3c,0x99,0x4e,0xa6,0x57,0x87,0xb0,0x75, +0xa0,0xfe,0x4d,0xdf,0x7e,0x71,0xb0,0x23,0x61,0x98,0x94,0xb4, +0xf1,0x48,0xd4,0xd5,0x30,0x12,0x7c,0xaa,0x3e,0x0c,0xf4,0x34, +0x0a,0xc9,0x27,0xf9,0x33,0x53,0x86,0xf2,0xe0,0xfb,0x8b,0x94, +0x99,0x7c,0xed,0xcf,0x4b,0x57,0xd4,0x4a,0x57,0xa0,0x52,0x0b, +0x59,0xc4,0x7c,0x1f,0x31,0xf0,0xa7,0xe4,0xd3,0x2a,0x60,0x88, +0xb6,0xf4,0x8d,0x2a,0xd4,0x87,0xbe,0x3b,0xd7,0x41,0x5f,0x86, +0x56,0xdd,0x65,0x23,0x2f,0x41,0x9f,0xd2,0x51,0xdf,0xdc,0xa6, +0x26,0xf2,0x56,0x18,0x0b,0x9e,0x9b,0x67,0x90,0xea,0x3c,0x78, +0xae,0x9e,0x92,0x81,0x86,0xfe,0x29,0x50,0xa1,0x6c,0x67,0x21, +0x5a,0xbd,0x79,0x43,0xea,0x6f,0xb7,0x6c,0x07,0x39,0x26,0x25, +0x91,0x45,0xc9,0x86,0xe4,0x2b,0xe4,0x40,0x86,0xb8,0x2b,0x34, +0xd6,0xb4,0x63,0xfd,0xca,0x3f,0xa0,0x22,0x64,0xf2,0x89,0x44, +0x5e,0xa2,0x07,0xc1,0xd5,0x74,0x8b,0x89,0x5a,0x5a,0xbe,0x85, +0xd0,0xdc,0x70,0xa8,0x05,0x09,0xfa,0xdc,0xf1,0x99,0xf9,0x83, +0x39,0x50,0x8e,0x43,0x5f,0xa3,0x4d,0x11,0x45,0x90,0x70,0xf2, +0xbb,0xb5,0xdd,0xbb,0x3f,0xc7,0x39,0x0e,0x98,0xe3,0x7e,0xf9, +0xf9,0x4f,0x3b,0xe9,0x45,0x17,0x99,0x2c,0x3f,0xb2,0xd7,0xcd, +0x9c,0xe4,0xdd,0x92,0xd6,0x24,0x02,0x71,0x1c,0x8d,0x60,0x6f, +0x85,0x79,0x99,0x1c,0x94,0x48,0x6d,0x4f,0xc7,0x81,0x6f,0xb5, +0xa4,0x65,0xa9,0x6f,0x6c,0x7b,0x62,0x8e,0x70,0x2c,0x58,0x30, +0xff,0xab,0x30,0x68,0x0d,0xf4,0x3e,0x71,0xa8,0x6f,0x3a,0x29, +0x67,0x6d,0x3b,0x3c,0xf2,0x04,0xfa,0x3d,0xb1,0x23,0x32,0x5e, +0xef,0xf7,0x99,0x77,0x1c,0x79,0x5e,0x4e,0x38,0x8a,0x8a,0xa3, +0x48,0xfc,0x10,0xbe,0xa5,0x49,0xe3,0x67,0xde,0x83,0xa1,0x1a, +0x73,0xcf,0xf7,0x5f,0x9a,0x4e,0xe2,0x27,0xf1,0x3d,0x1e,0x1a, +0xcb,0x6b,0x64,0x1e,0x6d,0x6a,0x0f,0xec,0xfc,0xc2,0xee,0x00, +0x7a,0x05,0x9d,0x70,0xea,0x37,0xb3,0x55,0xdf,0xee,0x80,0x94, +0xb4,0x38,0xe3,0x8e,0x49,0xc9,0x7b,0x2d,0xa1,0x8a,0x16,0x23, +0x2e,0x6d,0x06,0x9f,0xfc,0x22,0x73,0x33,0x2e,0x92,0x56,0x36, +0x77,0xb0,0xfa,0x12,0x54,0xd3,0x27,0xb1,0xec,0x29,0x92,0xbb, +0x69,0xe2,0x5d,0x78,0xca,0x9f,0x90,0x46,0xb1,0x90,0xcf,0x3a, +0xbc,0x02,0x9d,0xd0,0xa2,0x53,0xb2,0xc9,0xd2,0x46,0x7f,0xe2, +0x64,0x72,0x12,0x79,0x3e,0xf1,0x53,0x1b,0xd9,0x43,0x1c,0xb6, +0x6e,0x07,0xa8,0xa1,0xd9,0x90,0x8f,0xde,0xff,0xc0,0xfe,0x19, +0x19,0xce,0x2b,0x33,0x8b,0xda,0xc8,0xb4,0xfb,0xf0,0xda,0xb3, +0xe7,0xb6,0x92,0x17,0x4b,0x7f,0x92,0xfb,0x71,0x4f,0x87,0x83, +0x4e,0x51,0x19,0x73,0x48,0xfc,0x64,0xfe,0x5c,0xfa,0x10,0x19, +0xfe,0x01,0xcb,0x4a,0x6c,0x9f,0x69,0xcd,0x8d,0x8f,0x4e,0xde, +0xe6,0xe8,0xf6,0x8b,0xd4,0x75,0xec,0x80,0xd1,0xad,0xc3,0x6a, +0x0c,0x38,0x79,0xc5,0xb1,0x82,0x4c,0x88,0xa7,0x13,0x96,0x98, +0xaf,0x44,0x9d,0xbc,0x13,0xbf,0x87,0xb4,0xb4,0x9d,0x1e,0xd3, +0x79,0x7f,0x95,0x30,0x5a,0xab,0x11,0xdb,0x17,0xa0,0xf1,0x85, +0xaa,0xa4,0x96,0x03,0x81,0xed,0x20,0x5b,0xee,0xdd,0x20,0xf2, +0xb9,0xf6,0x38,0xef,0xe5,0xdf,0x6d,0xc1,0x15,0xc9,0x22,0x75, +0x6f,0x75,0x99,0x5d,0x49,0x3b,0x1a,0x04,0xae,0x89,0xa7,0x7d, +0xd3,0xf8,0x95,0xf2,0xe4,0xa6,0xba,0xbe,0xb1,0x4c,0xfe,0x05, +0x4b,0xde,0x20,0x81,0xd4,0x80,0x13,0x74,0x33,0x8d,0x2c,0x83, +0x4b,0xd6,0x6c,0xa5,0xfc,0x7f,0x1e,0xf6,0xb6,0x7a,0x72,0xa8, +0xfd,0x0d,0xd4,0x44,0x59,0xcc,0xcb,0xe4,0x04,0xf2,0x52,0x82, +0x21,0xe1,0x06,0x79,0x2d,0x8d,0x34,0xb8,0xc6,0x02,0xe3,0x21, +0x08,0x8c,0x87,0xb0,0xec,0xb9,0x42,0x26,0xa3,0xe1,0xe4,0x34, +0x32,0x99,0x07,0xc6,0x93,0xa5,0xcb,0x08,0x8c,0x87,0x4c,0xdd, +0xf2,0xf1,0x9a,0x71,0x0c,0x4a,0x12,0x4a,0x3a,0x49,0x09,0x85, +0x57,0xcd,0x0b,0xda,0x90,0x0a,0xb4,0x93,0xc4,0xc3,0xdf,0x49, +0x53,0xc7,0xf8,0x92,0xb0,0xab,0xd6,0x6a,0xe4,0x79,0x69,0xb1, +0xfa,0x7c,0x84,0xf9,0x39,0xfa,0xbc,0xc4,0xe2,0x61,0x4c,0xca, +0xdf,0x8c,0x97,0x59,0x50,0x7c,0x09,0x41,0x71,0xe6,0x51,0x39, +0xf8,0x52,0xba,0x1c,0x5c,0xe9,0x25,0xa7,0x5c,0x5d,0xae,0x3a, +0xfb,0x14,0x69,0x19,0x0f,0xf7,0x2a,0x88,0xf4,0x3e,0x73,0x96, +0xd5,0xc9,0x23,0xbd,0x79,0xca,0x21,0xd4,0x74,0x7f,0x59,0xfc, +0xb1,0xcb,0x15,0x4f,0xbe,0xb7,0xb7,0xe5,0x37,0x76,0x96,0x64, +0x41,0xc3,0xbc,0xb8,0xc8,0xb1,0xbd,0x11,0x37,0xf7,0x1f,0x36, +0xb2,0x51,0xeb,0xfe,0x5b,0xf6,0x7f,0x64,0xef,0xd2,0xff,0xa7, +0x6e,0xfb,0xde,0xbf,0x30,0xb7,0x82,0xa5,0x2a,0x1d,0x70,0x9a, +0x6c,0x4b,0x20,0x93,0x41,0x5e,0x82,0xe9,0x9d,0xc4,0x92,0xf7, +0x15,0xd2,0x2f,0x93,0x60,0x12,0xd0,0x24,0x8d,0x56,0x44,0xe4, +0x8c,0xc0,0x65,0xfc,0x82,0xd3,0x12,0xbd,0xd1,0x8a,0x74,0x34, +0x25,0xf2,0x9b,0x8c,0x5d,0x68,0xb8,0xd4,0x36,0xdd,0x7c,0x65, +0x5f,0xff,0x16,0x8e,0xd1,0xe6,0xe6,0x03,0x7b,0x37,0xea,0xd0, +0x6f,0xf3,0x1f,0x1f,0xd9,0x3b,0x0f,0x90,0x5a,0xed,0x3a,0x3a, +0xfc,0x76,0x98,0x85,0xaa,0x6b,0x27,0xf1,0x77,0x1c,0xf0,0x58, +0xd5,0x19,0x8e,0xf0,0x6e,0xca,0x4c,0xdb,0xc5,0xbf,0x66,0x03, +0xab,0x99,0x7f,0x05,0x9f,0x3e,0xc9,0xee,0xf4,0x97,0xc9,0xad, +0x2e,0x4f,0x19,0x24,0x5f,0xfc,0x6b,0x35,0xa9,0x77,0xf1,0x1f, +0xc7,0xcc,0x83,0x4f,0x55,0x93,0x8b,0x3f,0xb6,0x83,0x10,0x9c, +0x3d,0x72,0x73,0xf1,0xaf,0xb9,0x64,0xdb,0xec,0x7f,0xda,0x5f, +0x22,0xf1,0x6f,0x20,0xbf,0x3d,0x48,0x7f,0xfe,0xee,0x14,0xc4, +0x39,0x3b,0x99,0x3d,0xfa,0x7b,0x8c,0x49,0x71,0x5f,0x0f,0x13, +0x42,0x92,0x0f,0x20,0xca,0x79,0x77,0xa5,0xfc,0x3a,0xa9,0x3c, +0x71,0x67,0xf8,0x37,0x63,0x35,0x1e,0x5c,0xba,0x64,0xed,0xf6, +0xf3,0x73,0x6d,0x93,0x66,0xf7,0x1f,0xe3,0x78,0x9e,0xd6,0x93, +0xaa,0xbb,0x1d,0xda,0xbb,0xa6,0xeb,0xf4,0x5f,0x52,0xff,0x0d, +0x1b,0xa7,0x6d,0x0f,0x5b,0x6e,0xb2,0x7c,0xc4,0x42,0xfa,0x3d, +0xc7,0x78,0x08,0x3c,0x6d,0x0f,0x2d,0x73,0x8c,0x94,0xf9,0xc5, +0x74,0x09,0x35,0xfa,0xfd,0xb8,0x69,0xfa,0xf6,0xb0,0x23,0x89, +0x5d,0x4d,0x6f,0x91,0xca,0x93,0x76,0x4d,0x5d,0xca,0xa3,0xf9, +0x75,0x5f,0x2f,0x5b,0xb2,0xe6,0xa7,0xe4,0xb9,0xb6,0x09,0x73, +0xfb,0x8e,0x75,0xbc,0x82,0x8e,0xdf,0x25,0x72,0x17,0x2a,0x0f, +0x46,0xf7,0x26,0xcb,0xb7,0x13,0x65,0x04,0x11,0x88,0x20,0x52, +0xb5,0xa8,0xc0,0x64,0x01,0x02,0xbf,0xc4,0x02,0xfe,0xe0,0x6c, +0x3e,0x80,0xf7,0xe0,0xac,0xeb,0xa7,0xc0,0x6c,0x0a,0x4e,0x25, +0x4b,0xc8,0x8b,0xb1,0xf4,0x45,0x33,0xbc,0xb1,0x80,0xa6,0xe6, +0xe0,0x54,0x1a,0xd0,0xa1,0x53,0x1c,0x2c,0x50,0xff,0xa2,0xb0, +0xa5,0xdc,0x59,0xf6,0x2a,0xb2,0x8f,0x2e,0xe5,0xc8,0xa4,0x05, +0x82,0x8a,0x0f,0xcd,0x88,0x5d,0xee,0xe6,0xf2,0xd8,0xc5,0x86, +0xd8,0x25,0x9d,0x3e,0x6f,0xf2,0x24,0x15,0xd4,0x3e,0xa1,0xb0, +0x82,0x41,0xe6,0x63,0x3f,0x4d,0xee,0xe5,0x18,0x6a,0xee,0x35, +0x62,0x52,0x17,0xbb,0x65,0x29,0xfa,0x7a,0x8d,0x74,0xb0,0xb1, +0x70,0x71,0xc5,0x74,0x9b,0x9e,0x00,0x60,0xd4,0xe2,0x49,0x81, +0x6c,0x08,0xdb,0x24,0x56,0x25,0x71,0x28,0x8b,0x63,0x58,0x04, +0xf1,0x19,0x1b,0x2f,0xf8,0x82,0x96,0x37,0xf8,0x8c,0x4e,0x25, +0x1f,0xb2,0x80,0xe9,0xae,0x23,0xf8,0x77,0x36,0xae,0x9d,0x8d, +0x8b,0x00,0xe0,0x02,0x7a,0xfa,0x0c,0x3d,0x99,0xd5,0x1a,0x85, +0xdd,0xad,0xc1,0xbf,0xb3,0x91,0x77,0xc0,0x13,0xa8,0xc5,0xf2, +0x0e,0x89,0xe4,0x39,0x3e,0x7b,0x9f,0xa5,0x89,0x9e,0x6e,0xdc, +0xda,0x5a,0x6f,0xc7,0x52,0x10,0x8f,0x79,0xe8,0x19,0x61,0xd3, +0x0b,0xc7,0x66,0x1c,0x23,0xfc,0xc1,0x67,0xf6,0x44,0xe9,0xbe, +0xa5,0xb6,0xa5,0xe6,0xd5,0x6b,0x57,0x2f,0xfe,0x21,0xec,0xc7, +0x75,0x73,0xa7,0x6f,0x74,0x04,0x9f,0x9f,0xba,0x75,0xfd,0x9c, +0xed,0x61,0x3f,0x6c,0x5e,0xb6,0x7c,0xb9,0x63,0xf6,0xc7,0x36, +0x32,0xcb,0x4a,0x2a,0xca,0x5f,0x98,0xc3,0x27,0x85,0x47,0x7c, +0x1c,0x36,0x7e,0xe2,0x92,0x6f,0xc7,0x3a,0x82,0xf7,0xad,0xfc, +0x60,0xc2,0xd2,0x91,0x61,0x1f,0x8f,0x99,0x35,0x73,0xa6,0x83, +0x2d,0x28,0x20,0xcd,0x63,0x49,0x23,0xfd,0xd1,0x52,0x71,0xa9, +0xed,0x1b,0x12,0xa5,0x37,0x2d,0x7a,0x7c,0xf7,0x0b,0xe6,0x02, +0x44,0x78,0x12,0x22,0x2b,0xce,0x90,0x37,0x6d,0xee,0xb7,0xc3, +0x77,0x67,0x89,0x11,0xf2,0x89,0xb7,0x35,0x60,0xb5,0x10,0x08, +0x4d,0x4f,0x13,0xd5,0x4b,0xb0,0x0a,0xdd,0x0f,0x54,0x6d,0x39, +0x4c,0x33,0x0a,0x5b,0x0b,0xcb,0x83,0xc8,0xc0,0x39,0xbc,0xb0, +0x3b,0x37,0x0c,0x7f,0xac,0x3d,0x93,0xb2,0x05,0x86,0xa1,0xfa, +0x9c,0x04,0x3d,0x5f,0x60,0x38,0x23,0x82,0x30,0x4c,0x95,0x94, +0x33,0xa5,0x7e,0xf3,0xc7,0xde,0x4d,0x71,0xdd,0x7e,0x29,0x1f, +0x27,0xd3,0x5a,0xa7,0x6b,0x90,0xc0,0x69,0x0e,0x0b,0xad,0xc8, +0xd2,0x48,0x7d,0x98,0xcd,0x22,0x7d,0x98,0xd1,0xf2,0x24,0x59, +0xf2,0xd8,0x85,0xce,0x69,0x64,0x31,0xcf,0x02,0xa8,0x3c,0x0b, +0xb0,0x58,0xf5,0x63,0x7b,0xbd,0xd5,0x6d,0x45,0x9a,0x14,0x76, +0x57,0xdf,0x30,0x59,0x9a,0x70,0x01,0x65,0x4f,0x29,0xf9,0x92, +0x6d,0xfa,0xe3,0x4b,0xbf,0x31,0xc1,0x5b,0x27,0x37,0x91,0xd9, +0xf3,0x75,0xec,0xc1,0xa6,0xfb,0x24,0xbe,0x9f,0x4c,0xfd,0xc8, +0x94,0xe6,0x38,0x09,0xa3,0xcb,0xaa,0x57,0xe0,0xe7,0x5e,0x4a, +0x6b,0x2c,0x53,0x13,0x5b,0xb7,0x31,0x84,0x34,0xb6,0x15,0x2d, +0xd7,0x78,0x89,0x7e,0xd3,0x93,0x2f,0xd7,0xe8,0x45,0x1a,0xd7, +0x21,0xdf,0xb0,0x37,0x0f,0x76,0x65,0x6f,0x1e,0xe4,0x75,0x89, +0x3d,0x56,0x5d,0xc1,0xaa,0xdb,0x49,0x60,0x2c,0x0d,0x7c,0x4a, +0x1b,0x1a,0xd8,0x89,0x04,0x9a,0x2c,0xcd,0xb5,0x4c,0x80,0xda, +0x0b,0xb8,0xf4,0x5a,0x29,0x83,0xc1,0xfa,0x10,0xc9,0x06,0xff, +0x7f,0x05,0xf4,0x3a,0x79,0x8e,0x0c,0x92,0x16,0x9a,0x48,0x45, +0x3a,0x48,0x3a,0x02,0x5b,0xec,0x4e,0x51,0x70,0x47,0x22,0x6d, +0x12,0x98,0x67,0x72,0x5a,0xf0,0xb5,0x3f,0xe5,0xe0,0x50,0xfa, +0x81,0x5a,0xb6,0xba,0x3c,0x6c,0x7e,0x62,0x5e,0x51,0x0a,0x83, +0x91,0xe7,0x3d,0x70,0xfd,0x30,0xd3,0xd0,0xb7,0x27,0x35,0x6b, +0xfe,0xfe,0x96,0x13,0x76,0xf2,0x66,0x53,0xda,0xde,0x5c,0x25, +0xb6,0x57,0xde,0xd9,0x5f,0xff,0xf3,0xf3,0x56,0xfb,0x22,0x3a, +0x3b,0x5b,0xef,0xf7,0x0c,0x59,0xcb,0xda,0x65,0x1d,0xbb,0x8a, +0xf9,0x2c,0x13,0xca,0xf3,0x15,0xc3,0x4c,0x23,0xdf,0xfb,0xb8, +0xe7,0xe7,0x76,0x52,0xbd,0x0b,0xad,0x6e,0xee,0xb4,0x68,0xcc, +0x96,0x98,0x8a,0x7a,0x17,0xc7,0x7a,0x11,0x1f,0xfb,0x6b,0xc7, +0xb2,0xcc,0xdb,0x97,0x6c,0x5d,0xb7,0xe6,0x07,0x5f,0xf8,0x46, +0x45,0x69,0x02,0x06,0xdf,0xc5,0xb4,0x43,0x37,0x13,0x2e,0xb5, +0xbb,0x79,0x28,0x2d,0xf8,0xfa,0xac,0x0b,0xb6,0x60,0xab,0x40, +0x7f,0x85,0x1a,0xee,0xee,0x16,0x6f,0xb6,0xb9,0x32,0x31,0x69, +0x89,0x09,0x13,0x4b,0x1d,0x94,0x21,0xf5,0x13,0x69,0x7d,0xd2, +0xab,0x29,0xed,0xd5,0xa0,0xd5,0x45,0x52,0xc6,0xe6,0xfd,0xb6, +0xc8,0x51,0xee,0x84,0xc9,0xc5,0x33,0x17,0xd3,0x42,0x1a,0x91, +0x85,0x5a,0xe2,0x9b,0x34,0x66,0x5b,0x80,0xb8,0xb3,0x40,0xa4, +0x31,0xa2,0x25,0x5b,0xa9,0xfb,0x78,0xec,0x92,0x87,0xeb,0x3b, +0x5e,0x68,0xdb,0xf7,0xc0,0x93,0x29,0xb1,0xdb,0x01,0x79,0x8b, +0xeb,0xa3,0xc4,0xa6,0xad,0xa0,0x87,0x0a,0xf3,0xd8,0xa6,0x23, +0xc5,0xf7,0x3c,0x48,0xb2,0x9d,0xb3,0x6d,0x87,0x1a,0xb4,0xb1, +0xec,0xb9,0x6a,0x9d,0x69,0xcd,0x49,0x66,0x8f,0x60,0x77,0xdf, +0x25,0x7d,0x06,0xb3,0xf0,0x6a,0x3d,0x5a,0x65,0xba,0xbd,0x2b, +0xf1,0x79,0x8b,0x1a,0x4c,0xef,0xaf,0x18,0xb7,0xcf,0xfe,0xa7, +0x89,0xbe,0xf8,0xf5,0xdf,0xcf,0x13,0x5b,0x98,0x3a,0xc6,0x87, +0x6d,0x1b,0xe3,0x98,0x45,0x77,0x68,0x9b,0xc8,0x20,0xa2,0x41, +0x37,0x3e,0x67,0x6e,0xa3,0xa3,0x26,0xb3,0xad,0xe7,0x96,0x1d, +0xdd,0xb3,0xe9,0xb8,0xb6,0x13,0x4d,0xa9,0x1d,0x2d,0xa6,0x95, +0x92,0x6b,0x11,0xdf,0xa9,0xbe,0x34,0xf4,0x8c,0xf9,0x3d,0xf5, +0xa6,0xb5,0x64,0x77,0x71,0x83,0x13,0x87,0xc7,0xa9,0x86,0xb8, +0xf0,0x3f,0x83,0xa2,0xce,0x93,0x9a,0xe7,0x49,0x8f,0xf3,0xc1, +0x3f,0x39,0x2b,0xfc,0xc7,0xda,0xcf,0x34,0xf2,0xc3,0x7f,0x2f, +0x9d,0xe8,0x38,0x17,0xb5,0xf3,0xe2,0x9d,0x8a,0xa4,0x4a,0x87, +0x04,0x2a,0x51,0xa9,0x43,0x1b,0x5a,0xa5,0xd6,0xb6,0x96,0x07, +0xfa,0xd9,0x83,0x07,0x7d,0x31,0x7b,0xee,0xfc,0xd9,0x61,0xb4, +0xe2,0x5b,0x89,0xc4,0xc7,0x71,0xd6,0x9c,0xf5,0xc7,0xb1,0xf3, +0xdf,0xae,0xf8,0xf2,0x8b,0x25,0xf6,0xc5,0x7f,0x4a,0x5f,0xcd, +0x9c,0xb6,0x60,0x7a,0x18,0xad,0xd4,0xf4,0x39,0x5a,0x87,0xb6, +0xbf,0xf7,0x1c,0x69,0xbf,0x39,0x72,0xd1,0x92,0xff,0x38,0x82, +0x7f,0x1a,0x13,0x7d,0x64,0x5a,0x5c,0xd8,0x3e,0x13,0xdd,0x45, +0x6e,0x59,0x53,0x76,0xee,0x3c,0x7c,0x78,0xe7,0x3b,0xcd,0xed, +0x5d,0xcc,0x2d,0xde,0xe9,0xd0,0x6e,0x8c,0xbd,0xe7,0xce,0x0f, +0x8e,0x24,0x56,0xb4,0xb4,0x66,0xaa,0xe4,0x7b,0x75,0x26,0x7f, +0x75,0x67,0x35,0xb5,0xbb,0x94,0x9c,0xd8,0xde,0xd4,0x77,0xe2, +0xd4,0xa1,0x33,0x1c,0x9d,0x69,0xbf,0x7e,0xa5,0xbd,0xc2,0xf3, +0x31,0x4f,0xeb,0x3d,0x87,0xf0,0x1c,0x67,0xfb,0x91,0x78,0xed, +0x19,0x31,0x52,0x03,0x8e,0xe2,0x2f,0x72,0x65,0xbe,0x18,0x57, +0x5b,0x20,0x7d,0x84,0xf9,0xc5,0x08,0xb0,0x11,0x70,0xed,0x4b, +0x2e,0x0c,0x64,0x7e,0xf1,0x41,0xb6,0x5a,0x52,0xab,0xc3,0x12, +0x26,0x63,0x53,0x45,0xfd,0x3a,0x99,0xf0,0x06,0x7d,0x91,0x1e, +0x36,0x59,0x2a,0xbb,0x5f,0xdb,0xb9,0x96,0x5d,0xcb,0xd3,0x92, +0x24,0x6a,0x94,0xd6,0x83,0xa5,0x7e,0xd1,0x9a,0x60,0x29,0x83, +0x3d,0x0c,0x9e,0x41,0xae,0x92,0x7e,0x71,0xb4,0x1f,0x19,0xcf, +0x6b,0xd0,0x7d,0x35,0x3b,0xdc,0x32,0x59,0x36,0xd1,0x46,0xc9, +0x44,0x9c,0x44,0xce,0x27,0xb3,0xaa,0x18,0xe8,0x14,0x2a,0x67, +0xd3,0x46,0xd6,0xdf,0x10,0x5d,0x9e,0xfb,0x9b,0xd4,0x77,0x24, +0x9a,0xc9,0xeb,0xaf,0xa7,0xd1,0xa6,0xdd,0x7a,0xcc,0x99,0xfe, +0x3e,0xf4,0xe3,0x17,0xbc,0xf9,0x83,0xce,0x19,0xe4,0x88,0xe9, +0xdb,0xed,0x87,0x96,0xc6,0x86,0x11,0x21,0xa6,0x37,0xb5,0x38, +0x5a,0x99,0x5f,0x19,0xf7,0xf6,0xd0,0xb1,0x76,0x84,0xfd,0x67, +0x1f,0xff,0xc4,0x16,0x3c,0xe6,0xec,0x8c,0xd1,0x8c,0x16,0xfc, +0xf9,0xab,0xf7,0x9c,0x5f,0x37,0x96,0x7f,0xf4,0x5a,0x95,0x20, +0x92,0x1c,0x44,0x6b,0x01,0x17,0x8e,0xdf,0xdc,0xc3,0xf6,0xea, +0x6c,0x36,0xb6,0x6b,0xdf,0x5a,0x61,0x34,0xb8,0x75,0x26,0xa9, +0xe6,0x58,0x4f,0xa2,0x92,0x69,0xd4,0xd7,0x66,0x52,0xed,0xd4, +0x75,0x12,0x9c,0x7d,0x78,0xc0,0x9b,0x1b,0xed,0xfc,0x41,0xb7, +0x7f,0x1d,0xa6,0x01,0x61,0xb4,0x43,0x75,0xfe,0xa0,0xdb,0xf4, +0xbb,0x34,0x90,0x74,0x70,0x58,0x54,0xdf,0x15,0x0c,0x08,0x72, +0x4b,0xbb,0x97,0x7a,0x79,0xb5,0x0c,0x47,0x3a,0xdf,0x39,0xa8, +0xba,0x8d,0x5d,0x01,0x1c,0x24,0x03,0x8e,0x74,0xbf,0x0c,0x7e, +0xa5,0xbc,0xda,0xdd,0xd9,0xb6,0xb1,0xac,0x06,0xf2,0x8c,0x0f, +0x71,0x21,0x00,0x0e,0x5a,0x2e,0x57,0x21,0xc3,0x27,0xec,0x9d, +0xf8,0xdd,0x98,0x25,0x15,0x16,0x31,0x0f,0x7a,0xd5,0xea,0x9d, +0x37,0xc8,0xe0,0xf2,0x27,0x92,0x7b,0x9b,0x86,0x8e,0x0e,0xef, +0x35,0xde,0x81,0x20,0x72,0xf6,0x36,0x1b,0x35,0x92,0xd9,0xd2, +0xc1,0xf1,0xa3,0x56,0x0f,0x0d,0xeb,0xdd,0xe2,0x84,0xe9,0x1a, +0x1d,0xbc,0xfa,0x9d,0x75,0x9f,0xfc,0x87,0x65,0x71,0xc6,0xcc, +0x9d,0x3c,0x6d,0xc2,0x20,0x2a,0xd0,0xe1,0xe5,0x3b,0xb6,0x78, +0x7a,0x12,0x69,0x1d,0x14,0x51,0x3c,0x4b,0xba,0x9c,0x26,0xb3, +0x92,0x0d,0x49,0x37,0xc9,0xfc,0x0c,0xb2,0x30,0x47,0x24,0xed, +0x52,0xe4,0xeb,0x26,0xfa,0x9a,0x27,0x8b,0xf4,0xd5,0x22,0xd2, +0x91,0xac,0x95,0x92,0x1f,0xac,0x6a,0x61,0x26,0x1d,0xe9,0x5a, +0xc9,0x93,0x2f,0x22,0x2f,0xe4,0x59,0xa1,0x88,0xa6,0x4a,0x8b, +0xd4,0xbf,0xe0,0x83,0xd6,0xa3,0x53,0xa5,0xa2,0x14,0xd2,0x5f, +0xa0,0xc6,0x73,0x98,0x91,0x4f,0x59,0x22,0xe9,0x12,0x4b,0x24, +0x65,0x2e,0xb2,0x05,0x5f,0x4a,0x83,0xcb,0xfc,0x9a,0x73,0x57, +0x75,0xdb,0x8c,0xd9,0x67,0xf4,0x5c,0x13,0xf9,0x32,0xf5,0x0e, +0xab,0x94,0x47,0xbe,0xe4,0x49,0xb8,0xca,0x26,0x12,0xfa,0x6d, +0x6a,0x2a,0xf1,0xa9,0x98,0xd7,0x76,0x5f,0xe3,0x6f,0xec,0x8b, +0xe0,0x34,0xa3,0x69,0xde,0xbd,0xdf,0x06,0xbc,0xe9,0x98,0x61, +0x6e,0xd0,0xf5,0x9d,0xe7,0x1b,0xbc,0xfd,0x73,0xec,0x50,0x7b, +0xe7,0x7e,0xbf,0xb5,0x39,0x3d,0x30,0x0b,0x4e,0x33,0x1b,0x75, +0x47,0x22,0x4b,0x18,0xa8,0x1d,0xaf,0xf0,0x90,0x88,0xd4,0xcd, +0x4e,0x87,0x55,0xa8,0x4e,0xcd,0x47,0xa9,0x95,0xf9,0xcc,0x23, +0xc9,0x9b,0xd2,0x9d,0xc2,0x46,0x2d,0xc8,0x6c,0xf3,0xbd,0xc5, +0x52,0x84,0x99,0x7e,0x49,0x07,0x4b,0x2d,0xef,0x9a,0x73,0xfe, +0x1c,0xd2,0xc0,0x31,0xce,0xdc,0xa8,0xeb,0x00,0x4f,0xaf,0x52, +0xb3,0x03,0xe7,0xfa,0x13,0x29,0xcc,0x32,0x92,0x3d,0x40,0xc3, +0x16,0xc4,0x66,0xa7,0x6f,0x07,0x2a,0x91,0xe9,0xc1,0xa7,0xb7, +0xc8,0x70,0x93,0x9b,0xb0,0x85,0xd8,0xee,0x87,0x75,0xe2,0x48, +0x3d,0x12,0xf6,0x95,0x8d,0x2c,0x8a,0xa9,0xc6,0xab,0x5b,0x13, +0x70,0x32,0x92,0x6c,0xdb,0x89,0x73,0x0a,0x5b,0x44,0x7d,0x78, +0x85,0xfe,0x68,0xc2,0x2d,0xe6,0xc2,0x66,0xff,0x61,0x6b,0x68, +0x02,0x33,0x5e,0x63,0x32,0x17,0x87,0xc8,0xfe,0xf3,0x24,0x32, +0x93,0x49,0x83,0xfa,0x7c,0xaa,0xa8,0xa6,0x2e,0x97,0x9f,0x31, +0x63,0xf6,0xa0,0x73,0xb2,0x8c,0x29,0xbc,0xe4,0xd5,0x43,0x4c, +0x9c,0x96,0x38,0x8b,0xa1,0x75,0xe2,0x48,0x9d,0x43,0x26,0x52, +0x8d,0x7e,0x25,0xf5,0xdb,0xb8,0x31,0xfc,0x67,0x2d,0x15,0x17, +0x40,0x46,0x8d,0xdf,0x13,0xbe,0x62,0x0c,0xcb,0xa2,0xfd,0xb0, +0x64,0xf9,0xd2,0x35,0x91,0xb0,0x25,0xa3,0xb4,0xde,0xc7,0x4e, +0xe9,0xf5,0xa1,0x83,0x86,0xd2,0x39,0x52,0x0f,0x52,0xa7,0x03, +0xad,0xd3,0x9d,0xa7,0xd4,0x48,0xd3,0x19,0x36,0x32,0x04,0x52, +0x3a,0xe4,0x0f,0x9b,0x96,0x7f,0xb1,0xdc,0xd2,0x06,0x6c,0x1c, +0xb7,0x18,0xd2,0x5e,0x09,0x97,0x2a,0x85,0x26,0xcb,0xee,0x4c, +0xdf,0xd8,0xbd,0x9e,0xee,0x97,0x7d,0xfd,0xc3,0xae,0xc7,0x00, +0xdf,0x98,0xd4,0x8d,0xa3,0x75,0xd3,0x1a,0x36,0xa5,0x86,0x0e, +0xc4,0x60,0xb2,0xa8,0xb5,0x8b,0xf2,0x3d,0xcd,0xd2,0xc8,0x2c, +0x9e,0xb2,0x2d,0x35,0x7f,0x37,0xeb,0x81,0x0f,0xd9,0xab,0xed, +0x07,0x5b,0x9e,0x94,0x6f,0x95,0xca,0x96,0xf4,0xbf,0x4b,0xb6, +0x15,0x56,0xa7,0x3d,0x4d,0x9e,0x84,0x9e,0x7a,0x24,0x94,0xac, +0x27,0xef,0x4e,0x82,0x7f,0xc1,0x96,0x4f,0x90,0x8e,0x36,0x28, +0x2d,0x67,0xc0,0xc7,0x32,0x3d,0x4e,0xef,0xef,0xb2,0x91,0xfb, +0xf4,0x54,0x1e,0x06,0x7d,0x93,0xaf,0xad,0x18,0x98,0x4c,0xb6, +0xf1,0xfc,0xcd,0x25,0x36,0x6a,0xf0,0x05,0x46,0xc0,0x53,0xe4, +0x12,0x3d,0x45,0xf6,0x9a,0xb4,0x71,0xe0,0xd2,0x6a,0x43,0xd9, +0xd9,0x50,0x0d,0x99,0x53,0x7b,0x9c,0x5e,0x22,0xc7,0x1b,0x9a, +0xd5,0x2f,0x1e,0xf8,0xc0,0xa9,0xbd,0x27,0x5b,0xc8,0x09,0xfd, +0x9d,0xc5,0xe8,0x46,0xf4,0x74,0xe1,0x56,0xb1,0x7a,0x7d,0xb6, +0x7e,0xe9,0x31,0x8f,0x3d,0x81,0x7d,0x27,0xc6,0x7f,0x1e,0x4f, +0xc6,0xa4,0x68,0x4f,0x19,0x05,0xef,0xbb,0x64,0xfb,0xd1,0xfc, +0xe3,0xa6,0xff,0x7c,0xb3,0x39,0x6c,0xf7,0xd6,0x99,0x53,0x22, +0xe1,0xcc,0x4e,0xfc,0x6d,0xcb,0xac,0x7d,0x61,0xdb,0x7e,0x5a, +0xf1,0xfd,0x3a,0xc7,0x58,0x33,0xb5,0x37,0x78,0x85,0xfa,0xdb, +0xe9,0x30,0x92,0x63,0x5d,0x6b,0xfb,0xc4,0x3c,0xfe,0xc3,0x8f, +0x66,0x8f,0x09,0x1b,0xfa,0xc1,0xf2,0xef,0xdf,0x83,0x4f,0xbb, +0x6e,0xe0,0xe8,0x65,0xfd,0xc2,0x46,0xbc,0x37,0x6d,0xea,0x14, +0x87,0xa5,0xe4,0x3a,0x2c,0x74,0xad,0xd6,0x1d,0x5f,0xb2,0x87, +0xc2,0xba,0x88,0x29,0x02,0x3d,0x36,0x20,0x4b,0xd3,0xf4,0x0c, +0x85,0xac,0x07,0x3e,0x79,0x9e,0xac,0xf8,0xbf,0x41,0xb9,0x1a, +0x25,0xf5,0x78,0x52,0x06,0xd9,0x97,0x21,0x3a,0xdf,0x2f,0xa9, +0xca,0x5b,0xa4,0xd1,0x06,0xbd,0xfa,0x6a,0xaa,0x3c,0xa9,0x70, +0xaa,0xf6,0xb8,0x49,0xd2,0x03,0x1f,0x4d,0x9d,0xef,0x5f,0x1a, +0x13,0x76,0xf7,0x40,0x09,0x6d,0xfe,0xdd,0xec,0x33,0xfa,0x33, +0xc6,0x75,0x52,0x45,0x72,0x88,0x2b,0x84,0x2a,0xa6,0xeb,0xcb, +0x4f,0xc7,0xfc,0x92,0xd9,0x76,0x77,0xf9,0x18,0x99,0x8e,0xbe, +0x02,0x46,0xae,0x33,0xd5,0x61,0x19,0xa9,0xe7,0x7b,0xe7,0x31, +0x50,0x37,0xd8,0x3c,0x46,0x09,0x78,0x7c,0xaf,0x5f,0x9a,0xc1, +0x32,0x92,0x0b,0xb5,0x8c,0x24,0xac,0xd5,0x88,0xe4,0xc2,0x45, +0x2d,0xc8,0x88,0x07,0x3e,0x2c,0x31,0x39,0xd0,0xc6,0x44,0x75, +0x8d,0x7a,0xa0,0xb0,0x36,0xf3,0x7c,0x17,0xc2,0xf3,0x5d,0xef, +0xfc,0xa8,0x81,0x8c,0xf3,0x6c,0x09,0x3c,0xce,0xbf,0xcc,0x97, +0xc0,0xe3,0x42,0xed,0x44,0xa6,0xc9,0x07,0xda,0xd8,0x33,0x13, +0xec,0x42,0x85,0x34,0x78,0x9f,0xce,0xf4,0xe6,0xa8,0xfb,0xf7, +0x51,0x7e,0xe6,0x0d,0x9c,0x69,0xc0,0x94,0xba,0xd7,0x0a,0xb3, +0x19,0xe0,0x89,0x11,0x71,0x6a,0x93,0xc9,0xfc,0x04,0x59,0x0c, +0xb6,0x18,0x41,0x1a,0xb1,0xed,0x40,0xc8,0xe7,0x6a,0x13,0xb6, +0xf2,0xa5,0x13,0xbd,0xc2,0x56,0xbe,0x74,0x21,0x57,0x3c,0x2b, +0x5f,0xd8,0x13,0x34,0x26,0xcb,0x0e,0x2d,0xa1,0xaa,0x1e,0x85, +0x4a,0x38,0x0a,0x95,0xd0,0x9e,0x44,0x92,0x09,0x24,0x9b,0xb5, +0x69,0x43,0xb7,0x48,0x5f,0xb0,0xf7,0x0d,0x6c,0x91,0x6a,0x98, +0xc8,0x78,0x7a,0x83,0x86,0x53,0x22,0xdd,0x30,0x91,0x0e,0xe4, +0x37,0xe9,0x2b,0x7c,0xd1,0xdf,0xa4,0x64,0x93,0xe5,0x17,0x0c, +0xbe,0x28,0x59,0xf5,0x9d,0xcc,0x90,0x39,0x92,0xb1,0x06,0xa8, +0xac,0xc9,0x08,0xbe,0x76,0xc5,0x06,0x17,0x78,0xa9,0xfa,0x4d, +0x75,0xdb,0x59,0xb0,0x7f,0x6b,0x56,0xc1,0x70,0x24,0x83,0x9c, +0x63,0x24,0x54,0x13,0x21,0x22,0xb9,0xa6,0xe9,0x23,0xdf,0x9e, +0xd3,0x2e,0x8c,0x4a,0xdd,0x0f,0x10,0x8b,0x83,0xf4,0x6b,0x48, +0xfb,0x99,0xe9,0xeb,0xe7,0x9a,0x22,0x2c,0x3a,0xbc,0xf4,0xdb, +0x9f,0xe1,0x09,0x6f,0xcc,0xd3,0xb2,0xba,0xe5,0xe3,0x48,0x68, +0x86,0xa8,0x8e,0x00,0x93,0x74,0x6e,0x88,0x86,0x63,0x66,0x0e, +0x9c,0xd3,0xf3,0x0b,0x5f,0xd2,0xb4,0x03,0x6d,0x6c,0x7e,0x75, +0xd9,0xe0,0x83,0xec,0x35,0xca,0x5a,0xfb,0xba,0x09,0x4d,0x49, +0xcd,0x59,0x76,0x5a,0x25,0x8e,0x54,0x36,0xef,0x5f,0xb8,0x67, +0xc9,0x96,0xe5,0xdc,0x11,0x5e,0xa7,0x09,0xfe,0x36,0x0e,0x25, +0x18,0xa9,0x0c,0xc0,0x7c,0x85,0x65,0x74,0x83,0xaf,0xcd,0x8a, +0x86,0x21,0x17,0x68,0x3e,0x54,0x6d,0xbc,0x56,0x4b,0x4e,0xfe, +0x7b,0x32,0x53,0x39,0x3c,0x21,0x5c,0x89,0x58,0x6d,0x44,0x26, +0xfd,0x92,0x69,0xbf,0xbf,0x1b,0xbe,0x4a,0x0d,0x2d,0xa0,0x48, +0x32,0x0a,0x87,0xe9,0x59,0x5f,0xef,0xd7,0x66,0x67,0xba,0xdf, +0xee,0x4d,0xca,0xa5,0x92,0x72,0x6c,0xd1,0xdd,0x71,0xed,0x5e, +0x0f,0xf9,0x00,0x70,0x7b,0x72,0xd5,0xe4,0x03,0x13,0xf4,0x7d, +0xe9,0x0b,0xa2,0xce,0xdb,0x48,0x5b,0xce,0xf3,0xa4,0x92,0xcc, +0x9c,0x16,0x75,0xb1,0xce,0xe9,0xc7,0x13,0xc0,0xe9,0x08,0xa6, +0x8b,0x7b,0x2d,0xc3,0x3f,0xb1,0x31,0x1e,0xbf,0x56,0xdc,0x65, +0xa1,0x41,0xe6,0x86,0xe1,0x83,0x3f,0xf8,0x88,0x71,0x39,0xe9, +0xbe,0x96,0x75,0x75,0x0e,0x6c,0x31,0x0f,0x6c,0x71,0x8d,0xbc, +0x64,0xa3,0xdd,0x33,0x48,0x77,0xad,0xa3,0xe6,0x9d,0xde,0xf6, +0x74,0xc4,0x67,0x52,0xf5,0x4d,0x26,0x8b,0x38,0x0a,0xe7,0x34, +0xf5,0x92,0xcb,0x1a,0xf4,0xcb,0x20,0xfd,0x4a,0x34,0xd8,0x88, +0xbe,0x7f,0x90,0x49,0x0f,0x48,0xfc,0xaa,0x53,0x64,0x6e,0x8a, +0x61,0xcd,0xe9,0xd4,0xcb,0x6a,0xfd,0x13,0x32,0x1d,0xf1,0x35, +0x91,0xd8,0x6a,0xad,0x30,0x12,0x7a,0x27,0xf5,0xce,0x4e,0x47, +0xab,0xed,0x52,0xc3,0x11,0xcd,0x7b,0xbd,0x12,0x46,0x2d,0xaf, +0xfc,0x4d,0x6a,0x38,0x36,0xab,0xf3,0xcd,0x34,0x9a,0x1c,0xb7, +0x12,0xdf,0xac,0x3a,0xb4,0x8a,0xe3,0xb3,0xc2,0xfa,0x8b,0xcc, +0xa4,0x4a,0x56,0x36,0xf1,0x85,0x13,0xde,0x83,0xed,0x68,0xaf, +0x77,0x47,0x5a,0xa4,0x92,0x26,0x27,0xe4,0xc5,0xb4,0xef,0x4d, +0x08,0x62,0xbd,0x4f,0x7c,0x69,0x65,0xd8,0x6c,0x33,0xf1,0xf9, +0x36,0xe3,0xf4,0xcf,0x57,0x5b,0x6d,0x2f,0xff,0x0f,0xfa,0x5d, +0x3f,0x38,0x79,0xe8,0x19,0xf5,0x9b,0x33,0x33,0xf9,0x83,0x81, +0xc3,0x2e,0x91,0xc8,0x4b,0x70,0xc7,0x4f,0x6d,0xb6,0xf6,0x30, +0xf5,0x1d,0xfa,0xf5,0x8a,0xd1,0x8e,0xdc,0xe3,0x47,0x88,0x91, +0xd4,0xa8,0x48,0xba,0x35,0xbe,0x4a,0x9f,0xa7,0xcf,0x35,0xae, +0x4b,0xbb,0xd1,0x1a,0x87,0xa8,0x90,0xcc,0x5d,0xf2,0x29,0xe1, +0x5f,0x4e,0x09,0xa3,0x6f,0x56,0xbd,0x49,0x9e,0x77,0x90,0x40, +0x33,0xf1,0x4b,0xbe,0x48,0x7c,0xbe,0x5b,0xf5,0xe5,0xbc,0x95, +0xf6,0x25,0x29,0xd2,0x57,0xd3,0x27,0x7f,0x35,0x39,0x8c,0xb6, +0xaf,0x45,0xcb,0xd1,0x11,0x74,0x01,0x09,0xa5,0xe5,0xc8,0xa7, +0xbf,0xed,0xf9,0x7a,0xf9,0x0e,0x38,0xe6,0xa3,0x8f,0x9c,0x9e, +0xfc,0x77,0xd8,0x21,0x53,0x61,0x79,0xb5,0xbf,0xf5,0xfe,0xe1, +0x98,0x4b,0x97,0x0e,0x77,0xaf,0x62,0x7f,0xd5,0x5c,0xb9,0x73, +0xbd,0x57,0x86,0xdb,0x5f,0x3d,0x38,0xe8,0xaf,0xbb,0x15,0x2d, +0xe7,0xb4,0xf7,0x51,0xaf,0x71,0xfa,0xf3,0x37,0xad,0x0f,0x72, +0x9a,0xa4,0x9c,0xa4,0xda,0xa6,0xbe,0x1f,0x4f,0x7a,0x6f,0xa6, +0xe3,0x65,0x1a,0xd5,0xb2,0xd4,0x17,0xae,0xd3,0x70,0x72,0x96, +0xbc,0x6a,0x23,0x67,0x0f,0xca,0x74,0x3e,0x49,0xdf,0x4f,0x92, +0xc0,0xb7,0x8d,0x4e,0x88,0xed,0x6c,0x16,0xba,0x82,0xa4,0x93, +0x0a,0xb2,0x1a,0xf0,0xb6,0xed,0xfd,0x09,0x63,0x16,0xc9,0xf8, +0x7d,0x36,0x57,0x56,0x7f,0xdd,0xca,0x8e,0xee,0x4e,0x4a,0x8a, +0x26,0x5f,0xa1,0xee,0xf0,0x63,0xe2,0x4d,0xd4,0x5d,0x46,0xce, +0xee,0x27,0x55,0xf6,0x67,0xec,0x37,0x90,0x2f,0xfe,0x14,0x3f, +0x91,0x2d,0xe8,0xed,0x6c,0xbe,0x4c,0xce,0xbe,0x27,0xd3,0x1f, +0xc8,0x5d,0x52,0x53,0x26,0xe9,0x56,0x52,0x9d,0x24,0x4a,0x07, +0xe8,0x8f,0x54,0xfe,0x23,0x81,0xbc,0x6c,0xa6,0x35,0x69,0x12, +0x20,0xf8,0x84,0x9c,0x8d,0x26,0x41,0xbf,0x11,0x29,0x3a,0x68, +0x4f,0x1f,0x39,0xf8,0x2e,0xe9,0x4a,0xce,0xa6,0xdb,0xc8,0x38, +0x22,0xda,0x68,0x73,0x9f,0xe0,0xbb,0x5f,0xf2,0xce,0xee,0x92, +0xaa,0x36,0x35,0x66,0xba,0x4c,0xc3,0x23,0x00,0x6f,0x04,0x03, +0x77,0xbe,0x07,0x5a,0xf2,0x57,0x28,0x09,0x66,0x10,0xcf,0x07, +0xc0,0xfb,0xdf,0xb6,0x8d,0x9c,0xf0,0x01,0x83,0x37,0x22,0x57, +0x26,0x63,0x18,0xb8,0x6b,0xbd,0xa0,0x25,0xeb,0x42,0xcf,0xc8, +0x74,0x59,0x84,0x17,0xb8,0x64,0x0f,0x49,0xb2,0xee,0xa7,0xe1, +0xe6,0x05,0xe8,0x63,0x7e,0x44,0xbe,0x1c,0xc1,0xa0,0x5e,0x0b, +0xa0,0x43,0x7f,0xb5,0xd1,0x32,0x7f,0xc4,0x7b,0x01,0x1b,0xe1, +0x0d,0xeb,0x75,0xd2,0x35,0x22,0xdd,0x16,0xed,0xf3,0xa5,0x4c, +0x9a,0x03,0x5c,0x34,0x5e,0x0b,0x30,0xc9,0xd4,0xe9,0x32,0x59, +0x3d,0x7f,0xff,0x87,0x93,0xc8,0xd9,0x03,0x03,0x7b,0xc9,0xdb, +0xe2,0x83,0x2b,0xb5,0xb3,0x05,0xb7,0xef,0x69,0x0b,0x5e,0xe7, +0xac,0xe3,0x06,0x8f,0xac,0x8e,0xd8,0x3f,0x61,0x12,0x69,0xf2, +0x3b,0x11,0xf6,0xa3,0xd2,0xd6,0xf8,0x2e,0x7f,0x06,0x5b,0x84, +0x61,0xb6,0xe0,0xc8,0xe6,0xea,0x28,0x32,0x66,0x24,0x0e,0x66, +0x2d,0xb1,0x91,0xc5,0x5e,0xb5,0xf6,0x93,0xff,0x1c,0x88,0x98, +0x1c,0x44,0xea,0xa9,0xfb,0x0b,0x27,0xc4,0xab,0xdd,0x58,0x13, +0xbf,0x59,0x24,0x4e,0x9f,0xa2,0x68,0x5b,0xf0,0x9b,0xc2,0x6b, +0x34,0xbd,0x85,0x1c,0x1c,0x59,0xd9,0xdd,0x47,0x73,0xf4,0x11, +0xc1,0xf1,0x1f,0x4e,0xea,0xd9,0xa6,0x1f,0x0b,0xae,0x0d,0x50, +0xbe,0x04,0x28,0x89,0x09,0x32,0xf9,0x90,0x5f,0x18,0xbc,0xff, +0xf3,0xc9,0xa4,0xc6,0x3a,0x9b,0x1a,0x82,0xab,0xcd,0xff,0x0d, +0x1b,0x32,0x2b,0x42,0x0e,0x9e,0x2b,0x1c,0x2b,0xfc,0x15,0x5d, +0x9d,0xaa,0x8c,0x8a,0x2b,0x39,0x14,0x9d,0x40,0xb0,0x77,0x7a, +0xc9,0xbb,0xdd,0x80,0xce,0x7a,0x57,0x26,0x0b,0x8b,0xae,0x94, +0x00,0xaf,0xff,0x63,0x81,0x6b,0x8e,0x76,0x9f,0x7a,0xda,0x01, +0x2d,0x0b,0x06,0xef,0x88,0x5e,0x2b,0x63,0x70,0x4b,0x73,0x0c, +0xde,0x62,0x96,0x36,0x78,0x64,0x20,0xaa,0x7e,0xe1,0xa9,0x1a, +0xae,0xcd,0x63,0x10,0x79,0x09,0x43,0x44,0x1c,0x53,0x3f,0x46, +0x9b,0x59,0x37,0x59,0xcf,0xcb,0x1e,0x58,0xdd,0x3d,0x7f,0x1d, +0x11,0x3d,0x09,0xd5,0xa3,0x6f,0x00,0x5f,0xda,0xe1,0x24,0xa9, +0x7d,0x12,0xca,0x19,0xe0,0x6e,0x3a,0xa8,0x2e,0xc1,0xc4,0x92, +0xe9,0xfa,0xf5,0x2b,0x0c,0xed,0xc6,0xc4,0x5f,0x26,0xc3,0xb5, +0x4a,0xcd,0x3f,0x61,0x03,0xb7,0x78,0x50,0x09,0x3d,0x6d,0xaa, +0xab,0x55,0x5e,0x02,0xdb,0x94,0xc4,0x90,0xa6,0x4d,0xff,0x08, +0x6e,0x04,0xd2,0x2d,0x05,0xe9,0x0e,0xa9,0xcb,0x4a,0x32,0x06, +0xd9,0xc3,0x7b,0x7d,0x9d,0xb1,0x06,0x66,0x93,0xbe,0x0a,0xee, +0xd0,0x88,0xd4,0x75,0x3c,0x8a,0x21,0x3d,0x50,0x2c,0x1a,0x01, +0x08,0x87,0x8c,0x96,0xc9,0x5a,0x77,0x5d,0xc3,0xfe,0x81,0xd1, +0xc4,0x6f,0x9d,0x8d,0xcc,0x45,0xf5,0x50,0x86,0x7d,0xa8,0x37, +0xf6,0x9b,0x64,0xb4,0xdd,0xe4,0x87,0xb6,0x9b,0x82,0xd0,0x76, +0x93,0x1f,0xda,0xae,0x2f,0xd6,0xd6,0xc1,0xc0,0x9f,0xce,0x1a, +0x17,0x03,0x3e,0x84,0xb5,0x2b,0xcf,0xda,0x55,0x67,0xed,0xca, +0xa3,0xdd,0xec,0x22,0xf8,0xc6,0x33,0x94,0xe6,0x4f,0x0e,0xda, +0xf2,0xc7,0x56,0x75,0x3f,0x87,0xd4,0x5f,0x20,0xaf,0x42,0x3e, +0x81,0x93,0x97,0x64,0x06,0xb7,0x9c,0x95,0xa5,0xcd,0x57,0x4d, +0x86,0x42,0x5d,0x86,0x42,0x5b,0x86,0x42,0x5d,0x74,0xb7,0x01, +0x74,0x09,0x8b,0x26,0xd5,0x39,0xb2,0x4d,0xe2,0x18,0xfd,0x2a, +0x09,0x8c,0xb3,0x04,0xd0,0xe7,0xd2,0x2c,0x67,0x5d,0x2e,0x04, +0x47,0xd7,0x4e,0x32,0x90,0x20,0x67,0x4d,0xd1,0xb9,0xc1,0xf9, +0xa6,0xf5,0xad,0x8d,0x74,0x4a,0xe1,0x98,0xd7,0x69,0x13,0xe9, +0x73,0x53,0x53,0xd2,0x84,0x5a,0xc9,0xaa,0x36,0xa3,0xc8,0x9c, +0xc2,0x31,0x52,0x3a,0xcc,0xcc,0xd1,0x15,0xce,0xfa,0x06,0xe2, +0xe7,0xac,0x2f,0x3a,0xb7,0xc5,0x59,0xe9,0x0e,0xc2,0xff,0xfa, +0xfc,0x4e,0x77,0xb0,0x3f,0x1c,0xf5,0x21,0x3b,0xb4,0xe3,0xdf, +0xfb,0x68,0xd7,0xe8,0x0e,0xc9,0xb2,0x44,0x3e,0x44,0x72,0xef, +0xd8,0xc8,0x28,0x8c,0xa4,0xfa,0x25,0x88,0x6a,0x1d,0x67,0x3f, +0x2b,0x11,0xe5,0xc2,0xd9,0x09,0xea,0x6c,0x73,0x44,0xce,0xc2, +0x05,0xbb,0xfb,0x5e,0xaa,0x1f,0xbd,0x0f,0x33,0x34,0xca,0xd9, +0x39,0x43,0x56,0x67,0xb7,0x29,0x9c,0x3d,0xd9,0xb6,0x44,0x76, +0x2e,0x26,0xb9,0xa7,0x65,0x32,0x4a,0xfd,0x35,0xc1,0x40,0xde, +0x48,0x10,0xc9,0x1b,0x6a,0x81,0x95,0xfe,0x96,0x40,0x2c,0xe6, +0x88,0x93,0x0b,0x17,0xc4,0xbd,0x49,0x72,0x69,0x6e,0x74,0x34, +0xcd,0x25,0xb9,0x6f,0xc6,0x2d,0x58,0x78,0x32,0x42,0x22,0x96, +0x04,0x80,0xc9,0x1b,0xa8,0xe7,0x12,0x44,0xa7,0x9d,0x37,0x68, +0x43,0x2c,0xa6,0x93,0x8b,0x17,0xcc,0x7b,0xb3,0x03,0x65,0x0d, +0xfa,0xc3,0xde,0xe5,0xc6,0x25,0x2d,0xfc,0x32,0xa2,0xbd,0x44, +0x2d,0x09,0xf0,0xef,0x46,0xdd,0x71,0x0f,0x70,0xc7,0x4a,0x7e, +0x4b,0xa0,0x16,0x53,0xfb,0x88,0x2f,0x17,0x26,0xc5,0xb1,0x8a, +0xfd,0xa3,0x59,0xa3,0x0e,0x6f,0xce,0x5b,0xb0,0xf8,0x24,0xfa, +0x6f,0xa3,0x57,0xd7,0xba,0x67,0xd5,0xdb,0x50,0x8b,0x79,0x71, +0xfb,0x79,0x5f,0x76,0x48,0x62,0x80,0xf4,0xef,0xcf,0x80,0x4a, +0xea,0xf0,0xe5,0xbc,0xf6,0x8b,0xd1,0x7b,0x1b,0x06,0x0e,0x2c, +0xee,0x48,0xb4,0x38,0x8c,0x01,0x42,0xd5,0xf9,0x79,0x32,0x19, +0x59,0x38,0x32,0x41,0xdd,0x4e,0xb7,0x13,0x05,0xd8,0x91,0xd7, +0x12,0xd8,0x43,0x11,0xda,0x65,0xd2,0x1b,0x97,0xb7,0xab,0xdb, +0xdb,0x14,0x8e,0xa4,0x23,0xb5,0xcb,0xe5,0x00,0x5b,0x38,0xae, +0x7d,0xe7,0xf4,0xb5,0xd2,0x77,0xe8,0x3b,0xd1,0xfd,0x2f,0x5d, +0xda,0xbd,0x1f,0xd0,0xd7,0x92,0x28,0x6a,0x26,0x14,0x8e,0x24, +0x23,0xcd,0x11,0x37,0x38,0x15,0x5f,0x8b,0x8e,0x66,0x54,0x64, +0x6d,0xd4,0xb5,0xa0,0xf4,0xa1,0x52,0xda,0x60,0xf0,0x36,0xea, +0x76,0xb2,0xbd,0x44,0x1b,0x75,0x83,0x7b,0x9c,0x3b,0x24,0x48, +0x8e,0x7e,0xed,0xb5,0xa1,0x7d,0x81,0xf2,0x0d,0x89,0x8c,0x04, +0xf0,0x85,0x0c,0xd8,0xba,0x36,0xad,0x96,0xd6,0x73,0x89,0x5a, +0xdb,0x0b,0xb7,0xb7,0x51,0x19,0xcc,0x75,0x6d,0x6e,0x84,0x49, +0x4f,0x90,0xa8,0xb5,0x3a,0x1f,0x10,0x90,0x77,0xfa,0xf7,0xbf, +0xf4,0xda,0xfe,0xa1,0x5f,0xce,0xab,0x05,0xaa,0xa0,0x2e,0x50, +0x26,0x23,0x4d,0x37,0x30,0x29,0x7d,0x87,0xbe,0xf6,0x5a,0x74, +0x7f,0x0e,0xb5,0x46,0x08,0xad,0x19,0xe9,0xfd,0x48,0x33,0x00, +0xd2,0xa6,0x10,0x80,0x17,0x6f,0x56,0xdb,0x06,0x36,0xe9,0x6d, +0x9d,0x68,0x2b,0x9c,0xdd,0x46,0x9d,0xbd,0xc9,0x16,0x3c,0xa4, +0x70,0xbe,0xba,0x1c,0xec,0x56,0xdb,0x76,0x08,0xe7,0x09,0xb0, +0xdf,0x17,0x5d,0xff,0x52,0xdf,0xdd,0x0b,0x16,0xe6,0x44,0x48, +0xea,0xec,0x84,0xc2,0xd9,0x8b,0xd9,0xab,0xbb,0xe7,0xdf,0x39, +0x2d,0x73,0xce,0x4c,0x95,0xc9,0x26,0xd2,0xc4,0x46,0x30,0xda, +0x44,0x1b,0xdd,0xb4,0x18,0xe1,0xd7,0xa8,0xa5,0x93,0x9c,0xef, +0x65,0xc8,0x64,0x97,0x17,0x77,0x32,0x68,0xc0,0xb4,0x74,0xd7, +0x64,0x46,0x86,0xec,0x38,0x03,0xe9,0x9c,0xa0,0x32,0x7a,0x8d, +0xbb,0x29,0x93,0x1a,0x49,0xa4,0x22,0x5b,0xb3,0x94,0x44,0x2b, +0xd2,0x1a,0xf6,0x04,0x13,0xe9,0x5c,0x8d,0xd4,0x63,0x0b,0xc4, +0xab,0xd1,0x7a,0xb4,0xb3,0xbd,0xb7,0xbb,0xcd,0xb7,0xbc,0x89, +0x9a,0x83,0x26,0xc5,0x6b,0xa0,0x49,0xf1,0x3e,0x78,0x13,0xb2, +0x30,0xc1,0xe0,0x6c,0x93,0x2c,0x1e,0x22,0x91,0x80,0x72,0xa7, +0x89,0x88,0xd7,0x63,0x11,0x04,0x07,0xd6,0x8e,0xa5,0xa2,0xa3, +0x8d,0xf9,0xd4,0x89,0x11,0x8d,0x1a,0x75,0x1c,0xd1,0xda,0x41, +0x77,0x72,0xa8,0x59,0xf5,0x43,0xc9,0x22,0xe8,0x11,0x09,0x7a, +0xd0,0x9d,0xa6,0xd6,0x1d,0x7f,0xba,0x70,0xe1,0xc4,0x4f,0xa7, +0x1c,0x09,0x66,0x2a,0xd6,0xee,0xc4,0x1e,0x95,0xbe,0xde,0x89, +0x88,0x0e,0xb2,0x73,0x93,0x0d,0xf5,0x67,0xc6,0xa9,0x29,0x09, +0x86,0x8c,0x04,0xf2,0x79,0x02,0x19,0x02,0xb0,0x1c,0xce,0xce, +0x5c,0xbc,0x4c,0xe6,0xcf,0xe2,0x17,0x2e,0x38,0x30,0x44,0xba, +0xd2,0x22,0xee,0x6d,0x1a,0x50,0x91,0x86,0x51,0xb1,0x1a,0xad, +0x4a,0xab,0x53,0xf9,0x06,0xa9,0x45,0xa4,0x83,0x49,0x57,0x8f, +0xd8,0xdf,0xff,0x5d,0x7a,0xae,0x53,0x8b,0xaa,0x34,0xb8,0x22, +0x6d,0x4b,0x6a,0xc0,0x15,0xea,0x48,0x5a,0x93,0x6a,0x24,0x8c, +0xbc,0x4e,0x5e,0xad,0x9e,0xda,0xf4,0xa4,0xbd,0xdf,0xce,0x05, +0x0b,0xd9,0x03,0x91,0x26,0x2e,0x92,0xda,0x58,0x17,0xd9,0x40, +0x18,0x4e,0x54,0xff,0xc5,0xc7,0x6a,0x43,0x4c,0xa6,0xc4,0x45, +0x0b,0xe6,0xf5,0x7b,0x47,0x6a,0xda,0xbe,0xfa,0x1b,0xf4,0xd5, +0x8a,0xf4,0x75,0x52,0x8d,0x86,0xa1,0xab,0x8e,0xa4,0x06,0x29, +0x47,0xda,0x92,0xe0,0x16,0x79,0xcf,0xc5,0xda,0xdf,0xef,0x23, +0x5d,0xed,0x76,0xf0,0x4d,0x2a,0x55,0xa4,0xb5,0xa8,0x5c,0x0b, +0xa0,0x54,0xa5,0xe2,0x3d,0x8c,0x16,0x10,0x77,0xf8,0x4a,0xb2, +0xfd,0xc0,0xaf,0x0b,0xbf,0xfc,0xac,0xad,0x44,0x4d,0x90,0xe6, +0x08,0x55,0x7d,0x09,0xd1,0x04,0xb9,0x1c,0xbc,0x56,0x2d,0xa3, +0xaa,0x9f,0xdb,0x22,0xd4,0x42,0xd2,0xc0,0xa6,0x16,0xee,0x96, +0x23,0x9c,0x65,0xc1,0x96,0xf5,0xc9,0x36,0x91,0xd4,0x67,0x7b, +0x41,0xe3,0xca,0x5d,0x03,0xf9,0x2a,0x57,0x24,0x07,0xd9,0x16, +0x68,0x11,0xea,0x43,0xfc,0xac,0x77,0xf3,0xef,0x9b,0x22,0x79, +0x87,0x65,0xaf,0x23,0xd4,0x0b,0xa4,0x9a,0xec,0x9c,0xde,0x1c, +0x47,0xe9,0xa4,0xba,0xcc,0xf6,0x55,0x63,0x47,0x6d,0x6d,0x6c, +0xc3,0xe9,0x08,0xf5,0x6f,0xd2,0xda,0xc6,0xb6,0xb0,0x8e,0x50, +0x6f,0x90,0xaa,0x32,0xdb,0x5c,0x2d,0x42,0xcd,0x3e,0x61,0x20, +0x35,0x49,0x0c,0xeb,0x32,0xbb,0x16,0x6a,0x67,0x1f,0x35,0x80, +0x2c,0xf1,0xfc,0x77,0x63,0x5c,0x3f,0x13,0x6e,0xc3,0xe1,0x99, +0x86,0xb8,0x74,0x22,0xdc,0xa6,0xbe,0x50,0x50,0xab,0xf8,0x8b, +0x11,0x22,0xd4,0xac,0x3b,0x06,0xb2,0x10,0x30,0xfd,0xa1,0x66, +0xbd,0x03,0x90,0xc3,0x21,0x12,0x07,0xf3,0x44,0xf5,0x05,0xb6, +0x71,0x4c,0x04,0x7d,0xe7,0x0f,0x03,0x51,0xd1,0xdd,0xc9,0xad, +0xb6,0x95,0xe7,0xa5,0xbe,0xa6,0xf0,0x17,0xdf,0xd7,0xcf,0x36, +0x89,0x13,0xc9,0xb7,0xf4,0x1d,0x2b,0x7f,0x76,0xde,0x71,0x4b, +0x9e,0xbb,0x4e,0xea,0x69,0x5a,0x34,0x45,0xea,0x34,0x68,0xc8, +0x7b,0xbd,0xf8,0x9e,0x3b,0x76,0x0b,0x83,0xbe,0xb7,0x81,0x6c, +0x25,0x06,0x51,0x2d,0xdf,0x93,0xa3,0xc5,0x9f,0x3c,0x21,0x76, +0xfe,0xe0,0x49,0x70,0x38,0xe9,0xc0,0x9f,0x75,0xd9,0xbb,0xdb, +0x16,0x1c,0xfe,0xb9,0xac,0xaa,0x7f,0x4e,0xfd,0x33,0x08,0x73, +0x02,0x62,0x9e,0x61,0xb4,0x64,0x04,0xa4,0x95,0x41,0x40,0x5a, +0x99,0x11,0x90,0xd1,0xaf,0x4f,0xae,0xa8,0x16,0xfa,0x1c,0x92, +0x19,0xf1,0x68,0x55,0x46,0xbc,0x3a,0x8c,0x76,0x20,0x5d,0x0f, +0x03,0xf5,0x07,0xe6,0xdb,0x18,0x01,0x31,0x50,0x2f,0xc3,0x20, +0x52,0x4f,0x24,0x12,0xa3,0x22,0xff,0x49,0x25,0xfc,0xfe,0x94, +0x91,0x12,0x94,0x6c,0x69,0xa0,0xaf,0x91,0x14,0xb1,0x2f,0xa3, +0x27,0xc8,0xa9,0xff,0xdc,0xcf,0x88,0x0a,0x9a,0xae,0x42,0xe1, +0xd3,0xcd,0xa6,0x9e,0xd9,0x47,0xca,0xef,0x33,0x50,0x5f,0xf6, +0x80,0xbf,0xa8,0x9e,0xf1,0x39,0xf9,0xfb,0xbe,0x3f,0xff,0xec, +0xb3,0xaf,0x7d,0xfb,0x3e,0xfd,0xda,0xb5,0xfb,0xbd,0xdf,0x49, +0xc7,0x3e,0x9f,0xf7,0x27,0xae,0xf9,0xc9,0xb1,0xce,0xfc,0xd3, +0xba,0x35,0x3f,0xff,0xbc,0x6e,0xf2,0x08,0xfb,0x44,0xf3,0x88, +0x89,0x93,0xdf,0xb7,0x5b,0x9c,0x3d,0x8e,0x1b,0xb6,0x1f,0x17, +0x1b,0xb2,0x6d,0xc1,0x19,0x8d,0xfb,0xe6,0x8a,0x0b,0x18,0x85, +0x19,0x81,0xe7,0xe7,0x89,0x79,0x8c,0xbc,0xea,0x3b,0x07,0x0d, +0x8b,0x4f,0x8b,0xa9,0x50,0x9b,0x6f,0x51,0x9f,0x46,0xbd,0xae, +0x9a,0xb4,0xbd,0x13,0x19,0x7d,0x0f,0xc7,0x8b,0xcb,0xbd,0x68, +0x4e,0xff,0xc5,0x51,0xa7,0xff,0x6a,0x05,0xbf,0xe3,0x0e,0x3b, +0x6c,0x77,0x52,0x66,0xf5,0x68,0x83,0x38,0xb1,0xed,0x53,0xa6, +0x41,0x4d,0x3f,0x6a,0xa0,0x75,0xc8,0x71,0x51,0x4d,0xf7,0xa9, +0xe7,0x7e,0xb1,0x45,0xf1,0x93,0xda,0xeb,0x2c,0x70,0x8e,0xb4, +0x3e,0x62,0xf8,0x3e,0x46,0x3b,0x59,0xf4,0xce,0x0a,0x76,0x21, +0xe4,0x35,0xf6,0xa6,0xe2,0xe3,0xc1,0xa7,0xf8,0xb5,0x24,0xd2, +0x65,0x8f,0x6c,0x59,0x2a,0x13,0xd9,0x79,0x53,0xdf,0x24,0x71, +0xa9,0xbc,0xdf,0x39,0xf2,0xb1,0x0f,0xf2,0xb3,0xeb,0x33,0x9d, +0x9d,0xf5,0x3d,0x14,0xd5,0xbf,0xc8,0x09,0x03,0xad,0xaf,0x36, +0x12,0xc9,0x0a,0xe7,0xcd,0x06,0x36,0xe7,0x2c,0x40,0x53,0x8f, +0x9c,0x12,0x07,0x3a,0x87,0x5b,0xa9,0x4f,0xf5,0x6d,0x23,0x49, +0xd9,0x4c,0x52,0xb6,0xfe,0xb6,0xed,0xd4,0xe7,0xae,0x34,0x70, +0x83,0xb5,0x1e,0x20,0xe6,0x6d,0x56,0xa0,0x0d,0xad,0xe3,0xec, +0xdc,0x4c,0x76,0x9e,0x38,0x62,0x20,0xcd,0x63,0xc4,0xfd,0xce, +0x13,0x6f,0xca,0xea,0xb5,0xbb,0xfb,0xc0,0x2c,0x35,0x6f,0xde, +0xbe,0xc9,0xb8,0x65,0xb6,0xbe,0x89,0xa3,0x73,0x05,0xa0,0x6e, +0x4a,0x32,0x83,0x87,0xbc,0x59,0xe0,0x7b,0xc2,0x16,0xe1,0x5c, +0x5f,0x24,0xad,0xce,0xf5,0x90,0x56,0xe7,0x06,0x48,0xab,0x73, +0x03,0x93,0xd6,0xe8,0x22,0x69,0x8d,0x86,0xb4,0x3a,0xd7,0x12, +0x3f,0x03,0x99,0x47,0x7c,0x20,0x4c,0xec,0x69,0xfa,0x08,0xe7, +0xa6,0xfb,0x06,0xf2,0x0a,0x82,0x7c,0xc8,0x2b,0x0b,0xac,0x23, +0x9c,0xf3,0x20,0xaf,0x05,0xcf,0x43,0x5e,0x9d,0x9f,0x43,0x5e, +0x0b,0x6a,0x40,0x5e,0x71,0xd4,0xd6,0xc6,0x76,0x02,0x88,0x70, +0x7e,0x05,0x79,0x2d,0x68,0x0a,0x79,0x75,0x7e,0x03,0x79,0x65, +0x4f,0xeb,0x47,0x38,0xbf,0xf6,0xc8,0x2b,0xdb,0x61,0x0b,0xbf, +0x3d,0xf2,0xca,0xd2,0xfb,0x11,0xce,0x19,0x4c,0x5e,0x9d,0x33, +0x20,0x98,0xce,0x09,0x90,0xd7,0x3a,0x05,0xe7,0x8a,0xef,0x14, +0x58,0x42,0xa2,0x9c,0x0f,0x75,0x2e,0x7b,0x58,0xc3,0xe6,0x9c, +0x77,0x64,0x95,0xec,0x9c,0xe7,0x33,0x4b,0xd6,0x77,0x0d,0x2c, +0x3a,0xa1,0xed,0x0c,0x88,0xdf,0xfa,0xec,0xd6,0x2b,0x98,0xe0, +0xb5,0x23,0x20,0x3b,0xcf,0x26,0xb7,0x36,0x89,0x09,0x3e,0x95, +0x54,0xd0,0x72,0x8f,0xb6,0xf9,0x1f,0x69,0x67,0x23,0x72,0xc1, +0x72,0x7d,0x4f,0x07,0xe7,0x12,0xb6,0x73,0x83,0x81,0xbe,0x70, +0xfb,0xe6,0x6d,0x71,0x7f,0x41,0xf0,0x93,0x36,0x6c,0x68,0x67, +0x9b,0xe9,0x54,0xf9,0x44,0xa3,0xdd,0xdc,0xa2,0x89,0x66,0x7b, +0xba,0x39,0x3f,0x23,0xb6,0x0d,0x47,0xf4,0xb9,0x2e,0x08,0x28, +0x6d,0xae,0xfb,0xea,0x8d,0xf4,0x99,0x56,0x9b,0xc9,0x05,0x13, +0xf4,0x99,0x66,0xbb,0xb8,0x01,0x92,0xdf,0x12,0x74,0x40,0x68, +0xe5,0x82,0x5a,0xfa,0x0e,0x14,0x05,0x2d,0x8b,0x66,0xfa,0x97, +0x13,0xb6,0x42,0x93,0x05,0xff,0x55,0x3b,0xfb,0x5f,0x05,0x7f, +0xf4,0x3f,0x16,0xaa,0x5a,0x0a,0x3b,0x58,0x22,0x2c,0x34,0xd3, +0x52,0x38,0x8d,0xff,0xdf,0x63,0x61,0xff,0xe8,0xb8,0x82,0x69, +0x86,0x39,0xdf,0x8b,0x73,0xe8,0x38,0xeb,0xf7,0x05,0xd3,0xa6, +0x98,0xd8,0x99,0x39,0x86,0x17,0x49,0x2f,0xfd,0x54,0x90,0xe9, +0xec,0x9b,0xcb,0x97,0x35,0x38,0x7f,0xf1,0xfc,0xcc,0x65,0x0d, +0x9a,0x34,0x38,0x3f,0x73,0xd6,0xc5,0x26,0x0d,0x9a,0x2c,0x9f, +0x75,0x16,0x6e,0xbe,0x45,0xed,0x38,0x27,0x25,0x35,0x25,0xfb, +0x6c,0x76,0x4a,0xfc,0xd9,0x76,0x29,0x41,0x24,0x24,0x89,0x54, +0x4a,0x49,0x49,0x0d,0x26,0xb3,0xd4,0x63,0x24,0xd7,0x9a,0x12, +0x73,0x38,0x71,0xef,0xce,0x8f,0x47,0xae,0xb3,0x9f,0xd8,0x2b, +0xfd,0x31,0xbc,0xf3,0xf6,0xd6,0x61,0xd4,0xf4,0xf2,0xcb,0xd4, +0x44,0x4d,0x59,0x2f,0x13,0xd3,0xa9,0xe3,0xdb,0xff,0xd8,0xe1, +0xe8,0xb8,0x57,0x1a,0x39,0xf1,0x9d,0x8f,0x07,0x85,0xb5,0xea, +0x7e,0x38,0xc5,0x41,0x5d,0xc3,0xad,0xa4,0x92,0x89,0xb6,0x5d, +0x4d,0x6a,0x43,0xfb,0x75,0x0e,0x23,0x72,0x5e,0x4c,0xd6,0x9f, +0x8e,0x8e,0xbf,0x49,0x6d,0x06,0x34,0xe8,0x5d,0x2b,0x8c,0x56, +0xa3,0x36,0xe2,0x4b,0x9a,0xe2,0x8f,0x7d,0x57,0xbb,0x71,0xb1, +0x77,0x9b,0x28,0xb6,0x73,0x4f,0x56,0xbb,0xaa,0x31,0x54,0x0e, +0xa3,0x9d,0x29,0x1a,0xd2,0xb6,0xe1,0x0e,0x5a,0xc9,0x14,0x4c, +0x67,0x91,0x99,0xe4,0x0d,0xf3,0xf1,0xb3,0x12,0x3d,0xfc,0xa0, +0xa3,0x29,0xe9,0x80,0x64,0x51,0x13,0x66,0xde,0x27,0x03,0x30, +0x83,0x03,0xee,0x1b,0xe2,0xee,0xab,0xcb,0x88,0x4f,0xc8,0xc5, +0x82,0x4d,0xea,0x1d,0xeb,0x8a,0xe5,0x5f,0x7e,0xb1,0xdc,0x91, +0x6f,0x5e,0x30,0x77,0xda,0x82,0x69,0x61,0xb4,0x0f,0x6d,0x48, +0x1b,0xd0,0xfe,0xb4,0x3f,0xc1,0x37,0xe9,0xf3,0xdd,0x77,0x0b, +0x16,0x2c,0xc1,0xd5,0x2f,0x66,0xce,0xfc,0x72,0x46,0x18,0xf5, +0xab,0x7e,0x89,0x98,0xc6,0x3b,0x10,0x46,0x1a,0xe9,0x70,0x13, +0x31,0xfd,0x78,0xf7,0x12,0xf1,0x0b,0x7b,0xf0,0x90,0x2e,0xb1, +0x92,0xca,0xc4,0x8c,0x3f,0x07,0xef,0xcf,0xfe,0x8c,0xfd,0x39, +0x28,0x6b,0x53,0xd9,0x81,0x29,0xa3,0xef,0x15,0x8c,0x30,0x7c, +0x53,0x30,0x42,0x2c,0x18,0x4f,0xb6,0x59,0x0b,0x67,0xa8,0x33, +0x0a,0x67,0x68,0xa5,0xb4,0x53,0xb5,0x5a,0x1b,0x92,0x60,0xd3, +0xa5,0x7f,0xef,0xd8,0x1a,0x57,0x71,0x99,0x79,0xdf,0xa8,0x4d, +0x7d,0x7b,0x8f,0x1a,0x31,0x60,0x96,0xbd,0xd9,0x66,0xe9,0xcf, +0xd5,0x07,0x4f,0xdc,0x0b,0xbb,0x97,0xd0,0xf1,0xa5,0x17,0x3b, +0xf7,0x7a,0x73,0xa6,0x63,0x18,0x5d,0x6e,0x1d,0x36,0x65,0xfd, +0x66,0xc7,0xb7,0xe6,0xcd,0xdf,0xaf,0xdb,0xb5,0x6b,0xd5,0xc4, +0x31,0xf6,0xe9,0xe6,0x31,0x9f,0x4c,0x18,0x66,0xb7,0xcc,0x5c, +0xae,0x4a,0x8b,0x49,0x95,0xe5,0xe4,0x8d,0xe5,0x9b,0x97,0x9b, +0xe8,0x88,0xe5,0xea,0x9a,0xc5,0x66,0xfb,0xda,0x61,0x83,0xfd, +0xca,0xcc,0xf7,0x53,0x92,0xe5,0x34,0x25,0x61,0xb1,0x9f,0x5f, +0xc2,0xf2,0xc5,0x7e,0xfe,0xea,0x5d,0x6b,0x74,0xb0,0x41,0x30, +0x0a,0x06,0xc1,0x2c,0xd8,0x85,0x2a,0x42,0x2d,0xa1,0x9e,0xd0, +0x50,0x78,0x43,0x78,0x53,0xe8,0x27,0xbc,0x23,0x8c,0x10,0xc6, +0x08,0x53,0x85,0x59,0xc2,0x7c,0x61,0x91,0xb0,0x4c,0x58,0x29, +0xac,0x15,0xb6,0x0a,0xbf,0x08,0x7b,0x84,0x28,0xe1,0x90,0x70, +0x44,0x38,0x2e,0x9c,0x14,0xce,0x08,0xd7,0x85,0x9b,0x82,0xcb, +0x60,0x36,0xd8,0x0d,0x55,0x0d,0xb5,0x0d,0x8d,0x0d,0x6d,0x0c, +0xed,0x0d,0x5d,0x0c,0x3d,0x0d,0xa3,0x0d,0x13,0x0c,0x53,0x0d, +0x73,0x0d,0xdf,0x1b,0xfe,0x63,0xd8,0x6a,0x88,0x32,0xfc,0x61, +0xf8,0xcb,0x70,0xc5,0x70,0xdd,0x70,0xcb,0x70,0xcf,0xe0,0x32, +0x96,0x31,0x06,0x19,0x43,0x8d,0x36,0x63,0x6d,0x63,0x23,0x63, +0x4b,0x63,0x47,0x63,0x0f,0xe3,0x54,0x63,0x84,0xf1,0xdf,0xc6, +0x5d,0xc6,0x83,0xc6,0xbf,0xc4,0xb2,0x62,0x27,0xb1,0x8f,0x38, +0x4c,0x1c,0x29,0x46,0x88,0x5f,0x88,0x5f,0x8b,0x6b,0xc5,0x2d, +0xe2,0x6e,0xf1,0xb0,0x18,0x27,0x26,0x8a,0xa9,0xe2,0x79,0xf1, +0xb2,0x78,0x43,0xbc,0xe7,0xe3,0xef,0x13,0xe6,0xf3,0x9c,0x4f, +0x33,0x9f,0x70,0x9f,0x1d,0x3e,0xc7,0x7d,0xae,0xf8,0x5c,0x93, +0x04,0xc9,0x4f,0x2a,0x2f,0xbd,0x21,0x75,0x92,0x7a,0x48,0x43, +0xa5,0x29,0xd2,0x62,0x69,0xb9,0xb4,0x5a,0xda,0x21,0xfd,0x2e, +0xc5,0x48,0xc7,0xa4,0x33,0xd2,0x45,0xe9,0x86,0x94,0x2f,0x3d, +0x34,0x95,0x31,0xf9,0x9b,0x42,0x4d,0x0e,0x53,0x4d,0xd3,0x4b, +0xa6,0xfa,0xa6,0xd7,0x4d,0x83,0x4d,0x63,0x4d,0x73,0x4d,0xab, +0x4c,0x3b,0xcd,0x41,0xe6,0x36,0xe6,0x79,0xe6,0x95,0xe6,0x8d, +0xe6,0x1d,0xe6,0x5f,0xcd,0x99,0xe6,0x6c,0x5f,0x83,0x6f,0x37, +0xdf,0x69,0xbe,0xb3,0x7d,0x3f,0xf3,0x9d,0xef,0xbb,0xcc,0x77, +0xa7,0xef,0x09,0xdf,0x64,0xdf,0x2c,0x5f,0x52,0x46,0x2a,0x53, +0xad,0x4c,0xff,0x32,0xa3,0xcb,0x7c,0x5c,0xe6,0xbb,0x32,0x71, +0x65,0x92,0x65,0x49,0x2e,0x23,0x57,0x91,0x3b,0xc9,0xef,0xcb, +0x33,0xe5,0xad,0xf2,0xaf,0xf2,0x71,0xf9,0x82,0x62,0x52,0xca, +0x29,0x15,0x95,0xe6,0xca,0xbb,0xca,0x48,0xe5,0x2b,0x65,0x87, +0xb2,0x4f,0xc9,0x50,0x32,0x95,0x3c,0x3f,0xc5,0x2f,0xcc,0xaf, +0xb6,0xdf,0xab,0x7e,0x2d,0xfd,0x06,0xf9,0x4d,0xf1,0x5b,0xea, +0xf7,0x93,0x5f,0xb4,0xdf,0x19,0xbf,0x34,0xbf,0x3c,0x7f,0x1f, +0xff,0x8a,0xfe,0x35,0xfd,0xeb,0xfa,0x37,0xf0,0x7f,0xdd,0xbf, +0xab,0xff,0x70,0xff,0x70,0xff,0x05,0xfe,0x4b,0xfc,0x37,0xfa, +0xff,0xe2,0x7f,0xd8,0x3f,0xd9,0x3f,0xcb,0xdf,0x69,0x91,0x2d, +0x61,0x96,0xda,0x96,0x86,0x96,0x36,0x96,0xde,0x96,0xf7,0x2d, +0x93,0x2d,0x9f,0x5b,0x16,0x5b,0x56,0x58,0x36,0x5a,0x7e,0xb5, +0x1c,0xb1,0x9c,0xb6,0x5c,0xb4,0xdc,0xb2,0xd0,0x00,0xdf,0x00, +0x6b,0x40,0xe5,0x80,0xe7,0x03,0xea,0x04,0x34,0x09,0x68,0x1d, +0xd0,0x3d,0x60,0x50,0xc0,0xa8,0x80,0x49,0x01,0x73,0x02,0x16, +0x06,0x7c,0x17,0xb0,0x3e,0x60,0x4b,0xc0,0x2f,0x01,0x51,0x01, +0x47,0x02,0x4e,0x05,0xa4,0x05,0x5c,0x0d,0xc8,0x0d,0x28,0x0c, +0x34,0x07,0x06,0xf1,0x37,0x97,0x2b,0x8f,0xd9,0x0a,0xa9,0xad, +0x6c,0x29,0xda,0xaa,0x98,0xed,0x03,0xdc,0xf9,0x3b,0xdb,0x4f, +0x6b,0xc7,0xcb,0x4a,0x2e,0x5f,0x8d,0xad,0xbc,0x39,0x73,0x82, +0x4d,0x51,0x1f,0x86,0xea,0xdb,0xc3,0xd2,0x79,0x0f,0x3a,0x4b, +0x3b,0x6d,0x75,0xc9,0xb6,0x28,0x9b,0xb2,0xc7,0x46,0xca,0xc9, +0x8e,0x7f,0x9b,0x94,0x09,0xf3,0x5b,0xd9,0x94,0xa0,0xf5,0x6a, +0x96,0x52,0x2b,0xae,0x0b,0x31,0x24,0x1d,0xda,0x76,0x62,0x9d, +0x7d,0x91,0x49,0x61,0xae,0x91,0xa2,0x7e,0x15,0x9a,0xd8,0x95, +0x44,0x9a,0xd7,0xd8,0x94,0x49,0x6a,0xf7,0x44,0x85,0xbf,0xb8, +0x48,0x51,0x57,0x6e,0xb4,0x29,0xf0,0x10,0xfe,0x50,0xf8,0xbb, +0x8a,0x56,0xb0,0xc7,0xa2,0x95,0xa4,0x99,0x6c,0xe7,0x23,0x25, +0x76,0x66,0x6c,0x90,0x32,0xc0,0x66,0xa1,0xc3,0xf8,0x3b,0x49, +0x15,0x6b,0xbc,0x6c,0x1d,0x22,0x57,0xee,0x6f,0x53,0x2e,0x05, +0x9f,0x79,0xd1,0x16,0x5c,0x53,0x29,0x75,0x77,0x67,0xe5,0x67, +0x9b,0x25,0x2d,0xb8,0xe7,0xab,0xb2,0xf6,0x78,0x75,0xf0,0x7f, +0xea,0xca,0xc1,0xb2,0xd2,0x52,0x26,0xef,0x51,0x9f,0x39,0xb2, +0xb5,0xf5,0xb6,0x06,0xf4,0x8d,0xe8,0x89,0x12,0x59,0x4d,0x5e, +0xf5,0xfc,0xb0,0x58,0xf7,0xda,0x14,0xcf,0xae,0x3f,0x4a,0xb1, +0xed,0x5d,0xf5,0x2d,0xae,0x5f,0x97,0xd9,0x7e,0xd6,0x0a,0xfc, +0x37,0x92,0x7d,0x5f,0x56,0xf8,0xa6,0xe0,0x4a,0xe9,0xaf,0xc6, +0x51,0x3e,0xb4,0xa9,0x75,0x1b,0xbe,0x87,0x1e,0xb5,0xbd,0x83, +0xf4,0xdd,0x93,0x14,0xeb,0x2b,0x6f,0xc7,0x66,0x39,0xfe,0x36, +0x67,0x1d,0x8e,0xbd,0x72,0xe6,0xd8,0xd0,0xee,0x76,0xda,0xc3, +0xdc,0xb6,0xcb,0xf0,0x96,0x76,0x25,0x83,0x27,0xbd,0xeb,0x2a, +0xfc,0x71,0x32,0x45,0x3d,0xa1,0xb9,0x55,0x2f,0xf3,0x7d,0xb0, +0x15,0xed,0x2e,0xba,0xa2,0x7e,0x1b,0x9a,0xe3,0xec,0xcc,0xb6, +0x04,0x34,0x91,0xf2,0x72,0xba,0xfa,0xd7,0x42,0x53,0x06,0x7d, +0x59,0x52,0x48,0x45,0xd9,0xfd,0x5a,0x03,0x85,0xed,0xe2,0x68, +0xb1,0x7e,0x21,0x2b,0xec,0x91,0x5d,0x0b,0x4b,0x29,0x06,0x91, +0x46,0x27,0xde,0x56,0xf7,0x2b,0x6a,0x0f,0x16,0xe1,0xfa,0xbc, +0x6c,0x56,0xe2,0x7b,0xc6,0x12,0x7b,0x6c,0xcf,0x78,0xc5,0x3a, +0x4b,0xb6,0x68,0x2b,0x8f,0x94,0xe6,0x74,0xc4,0x49,0x52,0x3b, +0x25,0x2b,0x8e,0x8c,0x8e,0xeb,0x1d,0xa7,0x78,0xed,0x86,0xad, +0x78,0xde,0x62,0xa3,0x01,0xc7,0xf6,0x61,0x56,0xa8,0xc2,0x1f, +0x23,0x55,0x92,0x76,0x6e,0x89,0xfa,0xd1,0xb1,0x66,0x47,0xab, +0x2d,0x23,0x1a,0x4b,0x9f,0x4f,0x9d,0xfc,0xc5,0xd4,0xb0,0xa9, +0x93,0xbf,0xfa,0xf7,0x54,0xc7,0x88,0xf4,0x56,0xa3,0xd7,0x0c, +0x97,0x06,0xfc,0xb8,0x73,0x74,0x52,0x98,0xa5,0x83,0xec,0xde, +0x38,0x0a,0x47,0x32,0x8e,0x82,0x5e,0xb1,0x59,0xb7,0x7d,0xff, +0xfd,0x26,0xc7,0x37,0xe6,0x75,0x33,0x57,0x4d,0x58,0x64,0x5f, +0xba,0xe5,0xbb,0xd5,0x1b,0x36,0xfa,0x76,0x33,0x7d,0x30,0x66, +0xec,0xe0,0x01,0x15,0x67,0x99,0x3f,0xfc,0x7e,0xca,0x36,0x78, +0xa2,0xd6,0xa2,0x5c,0x26,0xc9,0x9a,0x69,0x25,0xbe,0x17,0xf5, +0x25,0x03,0x31,0x32,0x9d,0x9e,0x47,0x03,0xc9,0x5b,0x0e,0xc5, +0x7a,0xf1,0xf0,0xef,0xc9,0x89,0x7d,0xf6,0xb4,0xe9,0x3b,0x6e, +0xfc,0xd8,0x4f,0x1c,0x9f,0x2f,0x58,0x7d,0xee,0x40,0x74,0xd6, +0xf1,0x0a,0x0d,0x4d,0xed,0x86,0xfd,0xab,0x61,0x95,0x8a,0xf5, +0x0e,0xf4,0xb8,0x6c,0x8f,0xf6,0x19,0x38,0x66,0xfd,0x6f,0x8e, +0x45,0xe4,0x2d,0xdb,0x67,0xe6,0x81,0x63,0x26,0x0c,0xb4,0x5b, +0x48,0x2b,0x72,0xd0,0x4a,0x1a,0x9a,0x48,0x2d,0x7a,0x50,0xba, +0x6e,0xa2,0xf5,0xc9,0x71,0xe9,0xea,0xda,0x7d,0xa7,0x72,0x2b, +0x92,0xe0,0x96,0xa7,0xa9,0xc5,0x4e,0xb7,0x3c,0xe8,0x9c,0x61, +0x52,0x7d,0x7d,0xc8,0x22,0xd2,0xcb,0xcc,0x5f,0x74,0xd9,0x5b, +0x7b,0xd1,0xa5,0x42,0x9a,0xe9,0x89,0x52,0x1f,0xa5,0xa1,0x8c, +0x48,0x28,0x43,0x6c,0x8d,0xb8,0xb2,0xa6,0xcd,0x7e,0x41,0x66, +0x04,0x23,0x77,0xcd,0xfb,0x0e,0x44,0x5e,0xb2,0x47,0xa5,0x8d, +0x36,0x35,0x1c,0x30,0xb0,0xdf,0x14,0xc7,0x67,0xd7,0x41,0x42, +0x93,0x42,0x14,0x9b,0xa5,0x3e,0xbf,0x7f,0xfd,0x77,0x86,0x62, +0x26,0x65,0xdb,0x26,0x55,0x79,0x63,0xf0,0xf0,0x6e,0xe3,0xed, +0x9f,0x2b,0x9e,0x5d,0xa4,0x15,0x35,0xdd,0xf9,0x3b,0xa6,0x8a, +0x56,0x31,0x2b,0x89,0xcd,0x9c,0xf5,0x9a,0x3e,0x78,0x4e,0x7b, +0x6d,0x8b,0xa2,0x6f,0xdb,0xac,0xb0,0x45,0xfb,0x0d,0x15,0x7d, +0x0f,0xd1,0x41,0x36,0x83,0x42,0xab,0xf2,0xed,0xed,0x95,0x83, +0xd7,0x1c,0x4b,0xcc,0xd7,0x14,0x6d,0xe3,0xbd,0x64,0x85,0x6d, +0x4e,0xb8,0x79,0x9c,0x1c,0x7c,0x62,0x38,0xf8,0x77,0x8a,0x2d, +0x38,0x76,0x84,0x2d,0xf8,0xc4,0x47,0x36,0xf0,0x12,0xd9,0xc3, +0xa2,0xca,0x70,0xd3,0x02,0x1b,0x69,0x63,0x52,0xe6,0xca,0xc1, +0xd5,0x47,0xe1,0xf4,0xbb,0x7c,0x8b,0xf1,0xa2,0x0d,0xc6,0xbd, +0x36,0x8c,0x57,0xac,0x97,0x7b,0x1f,0x7a,0xf5,0xb5,0x1e,0x7d, +0x5a,0xb4,0xda,0x3f,0xe8,0xd4,0xfe,0x0d,0x3f,0x6e,0x5a,0x69, +0xff,0xf7,0x97,0xe1,0xaf,0xf7,0xee,0x5f,0xb7,0x73,0x85,0x0c, +0x53,0xfc,0xae,0xb3,0x19,0xf7,0x2b,0xd2,0x2a,0xfd,0xad,0x9c, +0xcc,0x8b,0x41,0xe6,0x08,0x9d,0xcc,0x5f,0x57,0x96,0x0d,0x3f, +0xa8,0xb1,0xe2,0x0f,0xa1,0xc5,0xef,0x95,0xdd,0x31,0xd1,0x4f, +0x48,0xc1,0x63,0xef,0xae,0x49,0x16,0xb2,0x79,0xa6,0xf5,0xa6, +0x7b,0x81,0x75,0x9c,0x4c,0x1b,0x5f,0xac,0x4a,0x9e,0x03,0x3f, +0xd6,0xb2,0x0d,0x97,0x3e,0x9c,0x1a,0x3e,0xb1,0x4f,0x58,0x9f, +0xf0,0x75,0x9b,0xa6,0x3a,0x26,0xed,0x18,0x34,0x51,0xea,0xf1, +0xfd,0x86,0x56,0xf9,0x61,0xca,0xf0,0x31,0x90,0x32,0x0a,0x77, +0x6e,0xd7,0x18,0x02,0xd7,0x8e,0xc0,0xc5,0xdb,0xb5,0x99,0xc2, +0xdd,0x83,0x84,0x0f,0x1c,0xfd,0xd1,0xb8,0x29,0x8e,0x2d,0xef, +0xef,0x95,0x15,0xbe,0xc5,0x2c,0xe9,0x68,0x13,0xb3,0x64,0xcb, +0xee,0xa5,0x3f,0x6f,0x8c,0xae,0x78,0xac,0xc7,0x4f,0xcd,0xdb, +0xbd,0x3b,0x76,0xd4,0x04,0xfb,0xaf,0x23,0xa5,0x8d,0xdf,0xff, +0x67,0xd5,0x2f,0x61,0x3b,0x7f,0x0c,0x1f,0xe5,0xf8,0xdc,0x3c, +0xe6,0xe3,0x89,0x7d,0xec,0x4a,0xf7,0x71,0x7d,0x3f,0x68,0xcf, +0x5e,0x62,0x51,0xa3,0xc1,0x7d,0x8a,0xf9,0xf7,0xd9,0x46,0x7c, +0x6d,0x96,0x1f,0x6d,0x5e,0x9d,0xee,0x5e,0xfd,0xc3,0x76,0xc7, +0x0a,0xf3,0xf6,0xf0,0x1f,0x86,0x0e,0x0d,0xff,0x78,0xa4,0x7d, +0x86,0x79,0xe4,0xea,0x8f,0x77,0xdb,0x95,0xbe,0xe3,0xd6,0xfe, +0xec,0x58,0x6e,0xfe,0x79,0xc3,0xda,0xfd,0xfb,0x37,0x4c,0x7a, +0xdf,0x3e,0xd3,0xfc,0xfe,0xb8,0x49,0x7d,0xed,0xca,0xe7,0xa6, +0x3d,0x36,0xa0,0x53,0x4e,0x66,0x3a,0xeb,0xd1,0xdd,0x7d,0x74, +0xcd,0xab,0xed,0x11,0xad,0xf0,0x77,0x07,0x29,0xd1,0x36,0x8b, +0xe9,0xc5,0x88,0x2f,0x17,0xee,0xdf,0x9d,0x79,0xa9,0x5f,0xb4, +0xa4,0x5c,0xe6,0x0f,0x43,0xec,0x48,0x26,0x9b,0x52,0x14,0x32, +0x8a,0x24,0x24,0x18,0x0e,0x39,0xfb,0x89,0x0a,0x02,0x0a,0x3d, +0x9c,0x50,0xd8,0x1e,0x14,0xdd,0x27,0x07,0x29,0x77,0x30,0x0b, +0xd9,0xe9,0xc4,0x99,0x2e,0x82,0x7b,0x4c,0x8a,0x7b,0xf1,0x82, +0xe2,0x7e,0xdd,0xa1,0x32,0x62,0xd6,0xcc,0x91,0xf6,0xfe,0xad, +0x2e,0x2a,0xa4,0x32,0xae,0x1b,0x98,0x47,0x2d,0x2a,0xfc,0x7e, +0xdd,0x84,0x17,0x94,0xe2,0xcf,0x46,0x91,0x10,0xf9,0x91,0x67, +0xa2,0x14,0xd2,0xc9,0x66,0xe0,0x0f,0xf4,0xb3,0xc5,0x67,0x07, +0x6c,0xfc,0x15,0x98,0x41,0xda,0xfb,0x2f,0xd9,0xe3,0x05,0xec, +0xfd,0x98,0x4a,0x13,0x99,0xad,0xbb,0x63,0x8b,0x18,0x65,0x44, +0xbf,0x5c,0xf5,0xd4,0xa6,0x5f,0xe6,0x56,0x97,0xad,0x3c,0x28, +0x73,0x6f,0xe3,0x2d,0xcf,0x9a,0xc7,0x5e,0x24,0xf8,0x0a,0xbf, +0x3d,0x3f,0xf7,0x14,0x59,0x95,0x62,0x38,0x92,0xa9,0xd6,0xbf, +0x2c,0x1e,0x81,0x53,0x4a,0x3f,0x85,0xc1,0xf2,0x67,0x9b,0x84, +0x10,0x89,0x84,0x91,0x49,0x64,0x62,0x35,0x52,0x09,0x5e,0x63, +0x68,0x8d,0x37,0x6a,0xbc,0x63,0x4f,0x1c,0x29,0x65,0xfc,0x94, +0x72,0xf0,0x4a,0x18,0xb1,0xa4,0xbd,0x4a,0x6b,0x38,0xc6,0x14, +0xce,0x37,0x93,0x68,0x7a,0xdc,0x4a,0x7d,0x5f,0xce,0x26,0x55, +0x1c,0x8b,0xd4,0xfa,0x9f,0x99,0x69,0x95,0x97,0xeb,0x50,0x5f, +0xbb,0xa5,0xe8,0xa5,0x0d,0xda,0xc3,0x79,0x5b,0x2f,0x05,0xe7, +0xe4,0xda,0xf8,0x4b,0x85,0xcc,0x64,0x64,0xe1,0x80,0x2d,0xb6, +0xe0,0x9c,0x47,0x5e,0xdc,0xa0,0xd6,0x06,0x10,0x4d,0x69,0x79, +0x13,0x09,0x93,0x0f,0xb0,0xed,0x66,0x5e,0xac,0x48,0xdb,0x24, +0x34,0xbf,0x9b,0xbe,0xf7,0x40,0x0a,0x44,0xc2,0xd4,0x7c,0xe5, +0xde,0xde,0xe9,0x61,0x77,0x13,0x52,0x48,0x1b,0x52,0xb7,0x77, +0x66,0x9d,0x5f,0x1d,0x83,0xde,0x96,0x12,0x47,0x6e,0x6f,0x53, +0xa3,0x62,0x6f,0x33,0xda,0x28,0xd5,0x6c,0x6c,0x3b,0x30,0x58, +0x27,0xbe,0x0b,0x58,0xf0,0xb6,0xba,0xb2,0x65,0x2e,0x7b,0x8b, +0xe3,0x28,0xf6,0x4a,0xcd,0x77,0x6d,0x38,0x0e,0xc2,0xa1,0xfc, +0xae,0xed,0x4f,0x1b,0xed,0xae,0x64,0x87,0x9e,0x35,0x91,0xdf, +0xd5,0xfe,0x89,0x24,0x48,0x5a,0x68,0x9a,0x0b,0x53,0x5d,0xd8, +0x3e,0x1d,0x11,0xa4,0x99,0xfe,0x5e,0xd8,0xbf,0x15,0x0d,0x92, +0xe6,0x99,0x96,0xc0,0xe2,0xa8,0xed,0x1b,0x9b,0x95,0x91,0xb6, +0xe0,0x3b,0x4b,0x6c,0xec,0xc5,0x98,0x2f,0xb2,0xf7,0x32,0x76, +0x67,0xef,0x65,0xac,0xd7,0x1c,0xdf,0xfc,0xcd,0x87,0x4a,0xf7, +0x99,0xf1,0xa4,0xe1,0x31,0xf6,0x54,0x1f,0x7b,0x75,0x4b,0x86, +0x18,0x45,0xb6,0x58,0x87,0x9b,0x69,0x8d,0x8b,0x6c,0xd7,0x9f, +0xca,0x59,0xf7,0xd9,0x13,0x51,0x2f,0xdf,0xa7,0x95,0x5f,0x6c, +0xd1,0xbf,0xd5,0x28,0x7b,0xcc,0x30,0x29,0x66,0xc3,0xfe,0xad, +0x27,0xc3,0x6e,0xc4,0xb4,0xad,0xe7,0xf8,0xd8,0x4c,0x77,0x74, +0xb1,0x92,0x1d,0x9f,0x9a,0x5e,0xe9,0xdc,0xae,0x7e,0xe3,0x1e, +0xc7,0xaf,0xda,0x2d,0x6d,0x6d,0xc1,0x6b,0xc9,0xc0,0x50,0xf0, +0xfa,0x08,0xc7,0x74,0xf3,0xb8,0xe5,0x93,0x37,0x44,0xd8,0x67, +0x0d,0xf8,0x78,0xc4,0x3b,0x43,0x7d,0xe3,0x4d,0x31,0xfb,0xb6, +0x27,0xff,0x51,0xf1,0x5b,0xf3,0x4f,0x90,0x06,0xa8,0xda,0x7a, +0xa7,0x6c,0x0a,0xa9,0xb7,0x43,0x56,0x4e,0x33,0x6b,0x43,0x1a, +0xda,0x0c,0xea,0x6b,0x17,0xc4,0xfd,0xb2,0xe5,0x94,0x4c,0x0d, +0x43,0x6e,0x90,0x30,0x07,0x31,0x81,0x3a,0xbf,0xde,0x60,0xbb, +0xa4,0xfc,0x5a,0x8b,0x86,0xd9,0xc9,0xf3,0xb2,0xc2,0x5e,0xd0, +0xe5,0x7e,0x55,0x58,0x70,0xf6,0x45,0x1a,0x7a,0x5b,0x0e,0xbe, +0xb3,0xd2,0x46,0x2c,0xb6,0xe0,0x21,0x2b,0x30,0xfa,0x6f,0xb6, +0xd6,0x36,0xb6,0xed,0x7a,0x5d,0x96,0xe4,0xe0,0x1b,0xaf,0x87, +0x29,0x6e,0x26,0x8a,0x04,0x0f,0x9d,0xfa,0x4b,0x56,0xa4,0x55, +0x6b,0x56,0x7e,0xb3,0x2e,0x6c,0xd5,0xda,0x4f,0x3f,0xd9,0xea, +0x50,0xd4,0x55,0xdd,0xad,0x17,0x7b,0x1c,0xa0,0x21,0x76,0x6a, +0x34,0x0d,0xf8,0x60,0xc9,0x96,0xad,0xdb,0x57,0x6d,0x5f,0xea, +0x98,0xf7,0xdd,0xf7,0x5f,0xac,0x42,0xdb,0x63,0xdb,0xd6,0x6d, +0xdb,0xe0,0x18,0xb5,0x47,0x9a,0x38,0x66,0xf2,0xec,0x51,0x61, +0xc3,0x46,0xac,0xfc,0xfe,0x3d,0xc7,0xba,0x81,0x23,0xbf,0xeb, +0x17,0xd6,0x65,0xd4,0xc4,0x51,0xe3,0x1c,0xdb,0x06,0x4b,0xeb, +0x36,0xaf,0xf9,0x66,0x5b,0xd8,0xae,0x9f,0xa6,0x4e,0x89,0x74, +0x4c,0xfc,0x6d,0xfb,0xb4,0x7d,0x61,0xca,0x0d,0x1b,0xd9,0xd6, +0xf0,0xaa,0x4c,0xfe,0x6c,0x61,0x65,0xb7,0xe4,0x21,0x0c,0x65, +0x9d,0x65,0x2f,0xc2,0xb9,0x79,0x2d,0x54,0x7d,0x83,0x6d,0xb7, +0x3a,0xc9,0x44,0x9d,0x70,0x98,0x2e,0x99,0x72,0xc9,0x50,0x89, +0x4c,0x34,0xa9,0x0d,0x7d,0xe8,0x4d,0xda,0xdd,0x0c,0x13,0x74, +0x93,0x79,0x1b,0x35,0x2f,0x5f,0x21,0xcf,0x3b,0xd4,0x31,0x74, +0x56,0x73,0x52,0xbb,0xf0,0x55,0x73,0xcd,0xee,0x03,0xeb,0xbc, +0x34,0x28,0x2a,0x76,0x9a,0xbd,0xd9,0x14,0xa9,0xf6,0x9a,0xe4, +0xb7,0x48,0x85,0x30,0x3a,0x8d,0x1c,0xb2,0x66,0xa8,0xb5,0x1b, +0x9a,0x2c,0x1b,0x2b,0xf3,0x87,0x17,0xaf,0xd9,0x2c,0xd6,0xdb, +0x7b,0x4f,0x11,0x0b,0xf1,0x1f,0x74,0xea,0xf9,0xe7,0x07,0xb5, +0xa6,0x16,0xea,0xbf,0xb7,0xf5,0x6d,0xc7,0xef,0x3e,0xdd,0x27, +0xed,0x3e,0xe9,0x38,0x69,0x3e,0xb9,0x76,0x77,0x4c,0xcc,0xda, +0xa1,0xed,0xed,0xed,0xcd,0xed,0x27,0xc1,0xdf,0xb0,0x84,0xf6, +0xb6,0x59,0xb6,0xaf,0xfa,0x7e,0xa3,0x63,0x99,0x79,0xe3,0x27, +0xdf,0x8f,0x1c,0xf9,0xc9,0x94,0xb1,0xf6,0x59,0xe6,0xb1,0xab, +0xa6,0x6c,0xb7,0x5b,0x22,0xb5,0xfb,0xf5,0x7b,0xd4,0x03,0xe2, +0x9e,0x50,0xf5,0x40,0x8a,0x89,0x4e,0x70,0x8a,0xcc,0xd7,0x9b, +0xf0,0x40,0x94,0xd4,0xf7,0xbe,0xb4,0x16,0x96,0x65,0x2b,0x86, +0x7f,0x95,0x16,0x99,0x2c,0xb1,0x32,0xdf,0x81,0xde,0xfe,0xc8, +0x0e,0xf4,0xca,0xf6,0xef,0xb4,0xde,0xa7,0xa1,0xf7,0x69,0x5a, +0xef,0xdf,0xa1,0x77,0xe5,0x1f,0xec,0x65,0xa0,0xb0,0x47,0xb0, +0xb4,0x45,0x32,0x0a,0xdd,0x46,0x3e,0x25,0x56,0x43,0x2e,0xb1, +0x88,0xa4,0x21,0xf9,0xb4,0x87,0x6c,0x69,0x36,0xb6,0x73,0xdf, +0x7a,0x88,0xe0,0xde,0x62,0x8b,0x05,0xef,0x99,0x49,0xb5,0xd3, +0xd7,0x89,0x9f,0x92,0x29,0x3a,0x17,0x40,0x30,0xc9,0xa7,0x70, +0xc0,0xfc,0x69,0x47,0xda,0x8c,0x1a,0xe0,0xe0,0xf6,0x9d,0x66, +0x7f,0x9d,0xad,0x53,0x95,0xd9,0x3a,0xd5,0xfd,0xf6,0x8b,0x26, +0xe5,0x3f,0xb6,0xed,0xd2,0x69,0xfe,0x16,0x4e,0xed,0x45,0x9d, +0x8a,0x4f,0xbc,0x5c,0xb4,0x98,0xf8,0xf1,0xcb,0x90,0x4d,0xca, +0xa8,0x29,0x53,0x3e,0x74,0xcc,0x36,0x4f,0x5c,0xfe,0xc9,0xfa, +0xcf,0xec,0x73,0x46,0x4f,0x0b,0x1f,0x37,0xd6,0xf7,0x88,0x69, +0xeb,0xe6,0x8d,0x7b,0xa2,0x10,0xca,0x6d,0x9a,0xf2,0xfd,0x28, +0x28,0x87,0x1b,0xa1,0x67,0x64,0x72,0x10,0x8e,0x4a,0xd3,0x33, +0xa4,0x02,0x09,0x27,0xe1,0x2d,0x49,0x05,0xda,0x94,0x36,0x6d, +0x49,0x2b,0xd0,0x70,0x1a,0x7e,0x86,0x56,0x20,0x4d,0x1d,0x67, +0x7c,0x94,0x76,0x5d,0x3e,0xe8,0xd8,0x6c,0x44,0x54,0x96,0x9d, +0x24,0xb2,0x87,0xae,0xdb,0x75,0xfb,0xa0,0xe3,0xbf,0x46,0x44, +0x5f,0xe5,0x3f,0x99,0x3b,0x7b,0xe2,0xcd,0x3c,0xa5,0x28,0x53, +0x6f,0xa1,0xf7,0x8e,0x5a,0x3b,0x76,0x3b,0x44,0x04,0x47,0x92, +0x99,0x08,0x47,0x0e,0x9d,0x38,0xb6,0xfd,0xe3,0x57,0xb6,0xd9, +0xb7,0x34,0x18,0xdd,0x40,0x7a,0x65,0xd4,0xc8,0x8f,0xbb,0x84, +0x29,0xf7,0x6d,0x96,0x47,0x9e,0x03,0x55,0xc8,0xcf,0x56,0xfa, +0x1a,0xfd,0x99,0x3d,0x57,0xd6,0x0e,0x17,0xa1,0xb7,0xdb,0xd1, +0x44,0x49,0x29,0x1c,0x0c,0x06,0xa2,0x83,0xd5,0xfd,0x22,0xad, +0x14,0xba,0x17,0x5c,0x54,0x22,0xf7,0xaf,0xcc,0x5a,0xfb,0xc3, +0xb4,0x9f,0xd0,0x5c,0x7b,0x7f,0xb6,0x98,0x08,0xa2,0x86,0xd9, +0x94,0x52,0xd6,0x01,0xba,0x57,0xec,0x29,0x33,0x0f,0x84,0x4f, +0x22,0xf1,0x07,0x46,0x1e,0x20,0x1b,0x0e,0x40,0x9b,0x9e,0x4c, +0x22,0xcd,0x93,0x48,0x63,0x56,0x2a,0xa5,0x3c,0x73,0x23,0xb5, +0xdb,0x79,0x64,0x78,0x5e,0x98,0x72,0xc0,0xa7,0xdb,0xd8,0x9d, +0x67,0x1d,0xc7,0xcc,0x67,0x37,0xee,0x3c,0x72,0x64,0xe3,0x3b, +0xcd,0xec,0x5d,0xcc,0xcd,0xc6,0xbe,0xd3,0xcd,0xae,0x4c,0xd6, +0x6f,0x80,0xcd,0x24,0x76,0x58,0x74,0x30,0xd5,0x06,0x98,0xd6, +0x0d,0x1a,0x53,0x8d,0x83,0x69,0x1d,0xc7,0x99,0xea,0x00,0xa9, +0x48,0xca,0x22,0x2e,0xc9,0x4b,0xb4,0xf6,0x34,0x75,0x24,0xdd, +0xa1,0x3d,0x96,0x4a,0xaf,0x9a,0xc6,0xb5,0xfc,0x90,0x8a,0x12, +0x02,0x89,0xb4,0xe0,0xe3,0x45,0x2f,0x01,0x84,0x7b,0xed,0x59, +0x6a,0x2b,0x7a,0xad,0xc3,0xb5,0xa8,0xbb,0x43,0xff,0x22,0x94, +0xce,0x6a,0x41,0xea,0xb4,0x36,0x29,0xfc,0x19,0xc6,0x7b,0x10, +0xde,0x0d,0x24,0x08,0x4a,0xcb,0x0a,0xd9,0x56,0xa6,0x90,0xd5, +0x67,0x0d,0x3f,0xab,0x2b,0x44,0x75,0x1f,0x59,0x6d,0x3d,0x5b, +0xb8,0xa2,0x99,0xd9,0x42,0xfb,0xb1,0x7d,0x23,0xc2,0x4d,0x55, +0x3b,0x74,0x7a,0xa1,0xfe,0xbe,0x1e,0x57,0xe6,0xc2,0x57,0x50, +0xac,0x5d,0x46,0xac,0x39,0xe8,0xd8,0x66,0x3e,0xf8,0xd3,0xda, +0x63,0x76,0xd8,0xa5,0xb6,0x26,0x8b,0xb8,0x24,0x74,0x8b,0x69, +0xf7,0xe6,0xa5,0x3f,0xfe,0xe8,0xd8,0xb9,0x73,0x4b,0x16,0x19, +0x58,0xf1,0x9c,0x12,0x05,0xac,0x0e,0x98,0x95,0x62,0xbb,0xb6, +0x6a,0x7b,0xbc,0x2b,0xd6,0x86,0xad,0xa6,0xd9,0xf8,0x3b,0x15, +0x95,0xa4,0x7a,0x32,0x8b,0x83,0xd8,0x1e,0xa9,0x50,0x1c,0x72, +0x86,0xb2,0x9f,0x58,0xd8,0xad,0xf3,0x20,0xf2,0x09,0xbb,0x59, +0x9e,0x4d,0xcc,0x0a,0x99,0x0a,0x5e,0x0b,0x49,0x3f,0x71,0x8b, +0x3f,0xe6,0xe4,0xf8,0x37,0xce,0xac,0x27,0xef,0x32,0x5f,0xb5, +0x25,0x7c,0xd5,0x96,0xdc,0x57,0xe5,0xb3,0x1b,0x1d,0xfd,0x1a, +0x9f,0xdd,0x1b,0x98,0xdd,0x50,0xcf,0x46,0xf2,0x6c,0x17,0xf9, +0x56,0x66,0x25,0x9a,0x54,0x8b,0x26,0x95,0x26,0x1b,0x76,0xb2, +0x5b,0xc7,0x22,0x69,0xa7,0x7c,0x2b,0xf3,0x97,0x66,0xce,0x21, +0x31,0x8a,0xfe,0x44,0xbe,0xfe,0x54,0xcb,0xf3,0x0a,0x5b,0xb8, +0xb3,0x9c,0x2d,0xdc,0xd1,0xbe,0x14,0x7e,0xd3,0xac,0xdf,0xa5, +0x4c,0x7e,0xd3,0xec,0x45,0x49,0x49,0xa6,0x37,0xc8,0x67,0xe4, +0x6c,0x32,0x3d,0x4b,0x66,0x90,0x1b,0xc9,0x0a,0x09,0x55,0x2d, +0xd6,0xc3,0xe4,0x8c,0xd4,0xc2,0xf4,0x36,0x3d,0x23,0x29,0xef, +0x3c,0x28,0x6b,0x65,0xd2,0x06,0x25,0xc9,0x76,0x9a,0x6b,0xa4, +0x78,0x56,0x09,0x2d,0x67,0xff,0x15,0xd2,0x9b,0x3e,0x97,0xc2, +0x36,0x2c,0x9a,0xc8,0xd6,0xcc,0x29,0x71,0x64,0xc2,0x64,0x03, +0x89,0x48,0x14,0x49,0x1c,0x26,0x52,0x31,0xd5,0xe2,0xde,0xcf, +0xa5,0x4b,0xfd,0xd9,0xad,0xb8,0x7e,0xd2,0xde,0x69,0xe3,0xbe, +0x1d,0x1c,0x36,0xa8,0xd5,0x1f,0x26,0x65,0x7f,0x06,0xbb,0x0d, +0x4c,0x5e,0x54,0xf7,0x17,0x0e,0xfa,0x53,0x89,0x20,0xcd,0x13, +0x48,0xf9,0x04,0x43,0xbc,0xfa,0x9e,0xa8,0x78,0xd6,0x64,0x19, +0x8e,0x64,0x28,0x1e,0x8f,0x89,0xb9,0x55,0xc3,0x34,0x11,0x7c, +0x30,0xc4,0xcc,0x84,0x80,0xbc,0xd3,0x5f,0x21,0xfe,0x17,0x5f, +0x81,0x83,0xe7,0xb5,0x74,0x57,0x31,0xfd,0x04,0xad,0xdd,0xc1, +0x34,0x82,0x0e,0x95,0x14,0xf7,0xba,0x29,0x00,0xac,0xd0,0xc6, +0xe7,0xab,0x12,0xeb,0xe9,0x7d,0x5b,0xe3,0xb6,0x28,0x0d,0xc9, +0xcb,0x74,0x89,0xfa,0x86,0xf4,0xe2,0x83,0xce,0x0a,0x5b,0x3a, +0x60,0x20,0x53,0xe3,0x01,0xb3,0xe2,0xf5,0xf0,0x0a,0xa2,0xa6, +0xf7,0xdf,0xed,0xda,0xf5,0xfd,0x5f,0x88,0x02,0x57,0x5e,0x15, +0x92,0x49,0x67,0xbe,0x88,0x4e,0xd1,0xdf,0x82,0xa6,0xa4,0x91, +0x19,0xec,0xbf,0xa2,0x2f,0x02,0x54,0xf8,0x13,0x04,0xef,0xbd, +0xa6,0x44,0xcc,0x3c,0x43,0x0e,0x9d,0x26,0xab,0x26,0x1b,0x14, +0xd2,0xd2,0x40,0x1c,0x24,0x45,0x24,0x77,0x15,0xd2,0xc3,0x00, +0x17,0x03,0x83,0x5c,0x52,0x48,0x2f,0x03,0x59,0x42,0xea,0x89, +0xea,0x2b,0xca,0x8e,0x99,0xa7,0xbb,0x26,0xaa,0xe5,0x4e,0xc3, +0xa3,0x4b,0xd6,0x5e,0xb9,0x31,0x9a,0xa4,0x28,0xec,0xb5,0x1d, +0x61,0x43,0x6a,0x31,0x20,0xd8,0xed,0x72,0xc3,0x96,0x3f,0x44, +0xf2,0xaa,0x22,0x08,0x82,0x01,0x1f,0x3f,0x41,0xfb,0x67,0x14, +0xda,0xe3,0xb7,0x1f,0x3e,0x16,0xa1,0x21,0xca,0x43,0xc2,0x61, +0x9c,0x8b,0x31,0xf8,0x0b,0x06,0x43,0xa8,0xc1,0x86,0xd2,0x61, +0xa8,0x82,0xb2,0x9a,0xa1,0x1a,0xca,0x1a,0x86,0x1a,0x28,0x5f, +0x34,0xd4,0x41,0x59,0xd7,0xd0,0x0e,0x65,0x07,0x43,0x2f,0x94, +0xfd,0x0c,0x03,0x50,0x0e,0x36,0x1c,0x47,0x19,0x67,0x48,0x44, +0x99,0x64,0xb8,0x81,0xf2,0xa6,0x41,0x45,0x59,0x60,0x28,0x44, +0xe9,0x32,0xa2,0x07,0xe3,0x0b,0xc6,0x17,0x51,0xd6,0x31,0xa2, +0x07,0x63,0x5d,0x63,0x5d,0x94,0xf5,0x8c,0xf5,0x50,0x36,0x32, +0x36,0x42,0xf9,0x86,0xf1,0x0d,0x94,0x2d,0x8d,0xad,0x50,0xb6, +0x31,0xa2,0x7f,0x63,0x07,0x63,0x47,0x94,0x9d,0x8d,0x5d,0x50, +0x76,0x33,0x76,0x43,0xf9,0xb6,0xf1,0x6d,0x94,0x3d,0x8d,0x18, +0xd7,0xd8,0xc7,0xd8,0x07,0xe5,0x00,0x23,0x46,0x37,0x0e,0x33, +0x0e,0x43,0xf9,0xbe,0xf1,0x43,0x94,0xe3,0x8c,0x1f,0xa1,0x9c, +0x68,0x9c,0x88,0x32,0xdc,0xf8,0x09,0xca,0x69,0xc6,0x69,0x28, +0x67,0x18,0xe7,0xa0,0x9c,0x67,0x5c,0x80,0x72,0xa1,0xf1,0xdf, +0x28,0xbf,0x36,0x7e,0x8d,0xf2,0x1b,0xe3,0x37,0x28,0x57,0x19, +0x57,0xa1,0xfc,0xd1,0xf8,0x23,0xca,0x0d,0xc6,0x8d,0x28,0xb7, +0x18,0xb7,0xa2,0xdc,0x6e,0xfc,0x09,0x65,0xa4,0x31,0x12,0xe5, +0x2e,0xe3,0xaf,0x28,0xf7,0x1a,0xa3,0x51,0xfe,0x6e,0xfc,0x1d, +0xe5,0x41,0xe3,0x41,0x94,0x31,0xc6,0x18,0x94,0x27,0x8c,0xf1, +0x28,0xcf,0x18,0x53,0x50,0x5e,0x34,0xfe,0x8d,0xf2,0xa6,0xf1, +0x36,0xca,0xfb,0x46,0xd0,0x41,0xc4,0x1f,0x4a,0x51,0xf4,0x41, +0xe9,0x2b,0x96,0x41,0x69,0x11,0x03,0x51,0x86,0x8a,0xe5,0x51, +0x56,0x11,0x41,0x67,0xb1,0x8e,0x08,0x9a,0x88,0x4d,0xc4,0x26, +0x28,0x5b,0x8a,0x2d,0x51,0xbe,0x25,0xb6,0x46,0xd9,0x5e,0xc4, +0x3c,0x89,0x3f,0x8a,0x3b,0x04,0x51,0xdc,0x29,0x1e,0x46,0x99, +0x24,0x5e,0x14,0x44,0x3e,0x97,0xb2,0xb0,0xc0,0x30,0x4d,0xf0, +0x79,0xab,0x75,0xc7,0x1e,0x42,0xc5,0x77,0xa6,0x8c,0x1f,0x2d, +0xd4,0x7c,0x7f,0xfc,0xf0,0x0f,0x84,0xd6,0xa3,0x87,0x4e,0xf8, +0x50,0xe8,0x21,0xf8,0xb0,0x89,0x76,0xb9,0x30,0xaf,0x82,0x60, +0x46,0x6d,0x43,0xcb,0x36,0xdd,0x2b,0x0b,0x21,0xfa,0x39,0x83, +0xe0,0xab,0x1f,0x19,0x85,0x32,0x5e,0x75,0x45,0xd4,0x0c,0x14, +0x8c,0x9d,0xba,0x74,0xac,0x2c,0x54,0xec,0xde,0xa5,0x53,0x65, +0xa1,0xba,0x7e,0xc5,0x47,0x50,0xf4,0x23,0x89,0xf1,0x11,0x3f, +0x32,0x09,0xfe,0x82,0xe5,0x83,0xe1,0xe3,0x3f,0x14,0x7a,0xf1, +0x72,0x08,0x2f,0x47,0xf1,0x72,0x02,0x2f,0x67,0xf0,0x72,0x1e, +0x2f,0xbf,0x1e,0x33,0x74,0xfc,0x07,0xc2,0x2a,0x5e,0x6e,0xe2, +0xe5,0x2e,0x5e,0x1e,0xe4,0xe5,0x49,0x5e,0xa6,0xf2,0xf2,0x32, +0xc0,0x11,0x39,0xcf,0x1a,0xff,0xc7,0x23,0x1f,0x1c,0xfb,0x00, +0x62,0xd3,0xff,0xd9,0xb1,0x19,0xf4,0xb1,0x0b,0xb5,0x85,0x26, +0x42,0x4b,0x48,0x51,0x77,0x7d,0x94,0xf6,0xe5,0x4f,0x56,0xe8, +0xf8,0xd2,0x0a,0xed,0x57,0x77,0xf9,0xdd,0xb5,0xef,0xc6,0x8c, +0xcd,0xd7,0x7e,0xcd,0x3a,0xb3,0x68,0xc3,0xd7,0xf2,0xea,0xaa, +0x9c,0xca,0x86,0xbd,0x77,0xb4,0xef,0xfd,0xdf,0x69,0xdf,0x07, +0xc2,0xb5,0xef,0xc3,0xe0,0xe9,0xc3,0x2b,0xf8,0xf1,0x1c,0x83, +0xc5,0xf0,0x96,0x61,0xbc,0xe1,0xbc,0x21,0xd3,0x90,0x6d,0xb8, +0x65,0xc8,0x33,0x14,0x60,0x9a,0x4c,0xc6,0xf2,0x90,0x91,0x11, +0xc6,0x0f,0x8d,0x13,0x8c,0x17,0x8c,0xd9,0xc6,0x02,0x31,0x44, +0xac,0x28,0x56,0x16,0x6b,0x88,0xb5,0xc1,0x39,0x5d,0xc5,0x0f, +0xc5,0x09,0xe2,0x27,0xe2,0x22,0x71,0x99,0x18,0xe9,0x53,0xd5, +0xe7,0x94,0x54,0x55,0x5a,0x2b,0x6d,0x90,0xb6,0x99,0x3a,0x9b, +0xce,0x9b,0x1e,0x9a,0x6b,0x9b,0xeb,0x99,0x1b,0x99,0xdf,0x30, +0xdf,0x31,0xe7,0xfb,0x5e,0xf4,0xbd,0x5b,0x66,0x44,0x99,0xf1, +0x72,0x88,0x5c,0x51,0x3e,0xae,0x54,0x54,0x2a,0x2b,0x35,0x94, +0xda,0x4a,0x13,0xa5,0xb9,0xd2,0x5a,0xe9,0xa8,0x74,0x57,0xfa, +0x28,0x83,0x94,0x77,0xfd,0x4c,0x7e,0x6b,0xfd,0x4d,0xfe,0x7e, +0xfe,0x33,0xfc,0x77,0x59,0x8c,0x96,0x46,0x96,0x49,0x96,0x45, +0x96,0x43,0x96,0xe3,0x96,0xeb,0x01,0x7e,0x01,0x29,0x01,0xe7, +0x03,0x32,0x03,0xb2,0x03,0xeb,0x05,0x36,0x0a,0x7c,0x23,0xf0, +0xad,0xc0,0x5e,0x81,0x03,0x02,0x87,0x05,0x8e,0x08,0xfc,0x30, +0x70,0x42,0xe0,0x27,0x81,0xab,0x02,0xd7,0x07,0xee,0x0a,0x3c, +0x1a,0x98,0x1a,0x78,0xbd,0xec,0xa6,0xa0,0x61,0xc1,0x95,0x83, +0xbf,0x0c,0x5e,0x14,0xbc,0x2c,0xf8,0x54,0x48,0xaf,0x90,0x21, +0x21,0x5b,0x42,0xce,0x58,0x2d,0xd6,0x46,0xd6,0x51,0xd6,0x55, +0xd6,0xf8,0x50,0x21,0xb4,0x75,0xe8,0xe8,0xd0,0x0d,0xa1,0xa7, +0x42,0xf3,0xcb,0xd5,0x2c,0xd7,0xaf,0xdc,0xa2,0x72,0x51,0xe5, +0xb2,0xcb,0xd7,0x28,0xdf,0x51,0xf0,0x37,0x8e,0x17,0x64,0xe3, +0x64,0x21,0xc0,0xb8,0x48,0x30,0x1b,0xd7,0xe0,0xb3,0x5e,0x90, +0x8c,0x9b,0xf0,0x7b,0x1f,0xce,0x1f,0x75,0x51,0xe3,0x69,0x21, +0xc4,0xe8,0xc4,0x77,0x81,0x8b,0x8a,0x4d,0x5c,0xa9,0x62,0x53, +0xd7,0x15,0x41,0x31,0x4e,0x76,0x39,0x8d,0x9b,0x5c,0xb9,0xa8, +0x91,0x8f,0x1a,0xb2,0xa7,0x46,0xa0,0x2b,0x1f,0xb5,0xe2,0x51, +0x2b,0x55,0x6c,0x89,0xe3,0xd6,0xae,0x1c,0xa1,0xa2,0x71,0xbc, +0x2b,0xd3,0x38,0xc9,0x95,0x83,0x71,0x9a,0x19,0xc3,0x5d,0x31, +0xc6,0xe9,0x42,0x4d,0xe3,0x7c,0xb4,0x5a,0xe4,0xca,0x36,0xae, +0x74,0x9d,0x30,0xae,0x71,0xdd,0xc4,0x98,0xaf,0x1b,0x37,0x0b, +0x55,0x8d,0xfb,0x5c,0xeb,0xd1,0x6b,0x9a,0xf1,0x38,0xe0,0x38, +0xed,0x7a,0x88,0x9e,0xa3,0xd1,0x73,0xbe,0x68,0x70,0xa5,0x8b, +0x92,0x50,0x0f,0x52,0x1d,0x20,0x56,0xc6,0xef,0x17,0x5c,0x99, +0x18,0x29,0x06,0x23,0xc5,0x60,0xa4,0x54,0x8c,0x94,0x0a,0x29, +0xf6,0x11,0xea,0x79,0x95,0x35,0x79,0x69,0x2f,0x71,0xdc,0xc4, +0x95,0x29,0xf8,0xa0,0xaf,0x10,0xf4,0x25,0xe1,0xd7,0x01,0xb4, +0xcd,0x04,0x34,0xd3,0xf1,0x89,0x00,0x94,0x2b,0x05,0x3b,0x70, +0xcb,0x37,0x1e,0x05,0x04,0x4e,0xc1,0x6a,0x2c,0x10,0xac,0xc0, +0x2b,0x07,0x7a,0xc3,0x57,0x6c,0x0a,0x89,0x2e,0x03,0x3c,0xaa, +0xa1,0xf6,0xeb,0x80,0x39,0x14,0x30,0xd7,0x33,0x5e,0x40,0x3f, +0xe8,0x9b,0xc3,0xd7,0x04,0xfd,0x36,0x85,0x06,0x60,0xa3,0xb9, +0x4b,0x46,0x81,0x5c,0x50,0x20,0x13,0x74,0x3b,0x88,0x31,0x52, +0x8d,0xf3,0xd1,0xff,0x22,0x60,0xb9,0x06,0x9f,0xf5,0xae,0x93, +0x18,0xef,0x8c,0x71,0x33,0xae,0xef,0xc3,0xf8,0x47,0x41,0xdb, +0xe3,0xae,0xbb,0xc0,0x3e,0xd5,0x78,0x01,0xbf,0x9d,0xae,0x3c, +0x50,0x20,0x0f,0x14,0x48,0x65,0x78,0x88,0x12,0x60,0xf1,0xe5, +0xb4,0x4e,0x72,0x8f,0x06,0x0a,0xe4,0x02,0x8b,0x1b,0x82,0x91, +0xd3,0x16,0x30,0x09,0x3e,0xe8,0x93,0x62,0x16,0x19,0x0e,0x32, +0x70,0x08,0x14,0x4c,0x18,0xfd,0x0e,0xce,0xde,0xc1,0x99,0x40, +0x76,0x06,0x3d,0xc4,0xa0,0x07,0x09,0x50,0x06,0xba,0x76,0x3f, +0x42,0xbd,0x7a,0x02,0xd3,0xa7,0x26,0x50,0x28,0x0f,0x54,0xce, +0x43,0x4f,0xd3,0x01,0x75,0x84,0x4b,0x05,0xa4,0xf9,0xc6,0x6d, +0x80,0x2c,0xd6,0x95,0x0f,0x49,0xed,0xeb,0x4a,0x17,0x26,0x61, +0x8c,0xa9,0xec,0x2a,0x6a,0xfd,0x80,0x71,0xb7,0xe1,0x98,0x5d, +0x35,0xa0,0xcc,0x45,0x6f,0x65,0x5c,0x0f,0x71,0x65,0x2a,0xf8, +0x8a,0x53,0x19,0x9f,0x95,0x68,0xbf,0x99,0x53,0x88,0x5d,0x33, +0x09,0x63,0xc1,0x29,0x93,0x00,0xfb,0x24,0x57,0x21,0xae,0x65, +0x1a,0x57,0xa3,0x97,0xfd,0x38,0x57,0x09,0xfd,0xc7,0xe0,0x8a, +0x28,0xcc,0x76,0x51,0x61,0x0e,0xe8,0x38,0x1e,0x3d,0x4d,0x06, +0x67,0x4c,0xd5,0xa1,0x59,0x09,0xfa,0x68,0x9c,0xca,0xf8,0x50, +0x05,0xad,0x54,0xd1,0xbf,0x88,0x5b,0xa1,0xe3,0x25,0xb1,0x33, +0xb8,0xa5,0x0b,0xe8,0xf6,0x36,0x8e,0x7b,0xe1,0xbb,0x8f,0x2b, +0x4b,0xec,0x2b,0xc8,0xe2,0x40,0xfc,0x1e,0x84,0xcf,0x60,0x7c, +0x86,0xe2,0x33,0x0c,0x9a,0xb9,0x96,0xd0,0x15,0xfc,0xd0,0xd7, +0xb5,0x43,0xf8,0x08,0x23,0x4e,0x72,0xa5,0x08,0xb3,0x70,0x76, +0xb6,0x10,0x26,0xcc,0xc1,0xc8,0xe3,0x05,0x0b,0x46,0xbf,0x8a, +0xd9,0xcb,0xc3,0xec,0xb9,0x30,0x7b,0x2a,0x68,0x9a,0x8a,0xd9, +0xa2,0x98,0x2d,0x0a,0xda,0x96,0x01,0x6d,0xcb,0x80,0xa2,0xd7, +0x01,0xc1,0x65,0x40,0x70,0x19,0xb6,0x46,0xc2,0xec,0xa4,0x00, +0x8a,0x7c,0xb1,0x8b,0x50,0x55,0xec,0x8a,0x91,0xbb,0x09,0x7e, +0x62,0x77,0x21,0x18,0x10,0x55,0x15,0x7b,0x08,0x16,0xb1,0xa7, +0x10,0x2a,0xf6,0xc2,0xf9,0xde,0x42,0x79,0xb1,0x0f,0xce,0xf7, +0x75,0x25,0x8b,0xfd,0x5c,0xe7,0xc5,0xfe,0xae,0x73,0xe2,0x00, +0x7c,0x0f,0x84,0x54,0x0d,0x02,0x46,0x83,0x71,0x7e,0x88,0xeb, +0x92,0x38,0x14,0xdf,0xc3,0x5c,0xc9,0xa0,0x60,0x5f,0x57,0xb6, +0x4e,0x9b,0x4c,0x40,0xe7,0x0b,0x49,0x36,0x72,0x5a,0x70,0x68, +0x8a,0xd1,0x23,0x9e,0xd3,0xa3,0x33,0xf0,0xef,0x05,0x48,0xfa, +0xb8,0xae,0x81,0x06,0x46,0xe0,0x6e,0x14,0x87,0x70,0xfc,0x8d, +0xc0,0xdf,0x28,0x38,0x80,0x7f,0x8e,0xd0,0x0d,0xb3,0xd7,0x17, +0xbd,0x6b,0xb8,0x87,0x00,0x77,0x19,0x5c,0xfc,0x10,0xbc,0xaf, +0xcd,0x9f,0x86,0x7f,0x3e,0xf0,0x2f,0x84,0x1c,0xc8,0xe0,0xdc, +0x42,0x37,0x0d,0xc0,0xa9,0x85,0x90,0x2d,0x5f,0x8c,0x98,0x83, +0x11,0x73,0x30,0x62,0x16,0xf0,0x96,0x81,0x6b,0x08,0x70,0x95, +0x81,0xab,0x0c,0x5c,0x25,0xe0,0x2a,0x8b,0xfd,0xf1,0x19,0x80, +0xe3,0x21,0x80,0x68,0x18,0xe3,0x18,0x58,0x6f,0xa3,0x5e,0xd6, +0x04,0x6e,0xa7,0xc0,0x19,0x77,0x30,0x0b,0x77,0x01,0x89,0x04, +0x3c,0xb3,0x80,0x67,0x16,0x9f,0xff,0x08,0x8c,0xbe,0xd2,0x75, +0x1b,0xd4,0x7f,0x00,0x7e,0xcb,0xe4,0x3c,0x70,0x1c,0x1f,0x70, +0x1c,0xf0,0x97,0x00,0x49,0x16,0xf0,0xbf,0x03,0xfc,0xef,0x01, +0xff,0x5c,0xcc,0x88,0x13,0x9a,0x83,0x42,0x73,0x40,0x96,0x41, +0x07,0x06,0x59,0x6b,0xfc,0xee,0x8c,0x6b,0x5d,0x5c,0xb7,0xc4, +0xae,0x80,0x00,0x58,0x8b,0xdd,0xf1,0x79,0x1b,0x3c,0xdf,0x03, +0xe7,0x7b,0xe2,0x7c,0x2f,0xb4,0xef,0x8d,0xef,0x3e,0xf8,0x30, +0x9e,0xe9,0xc7,0xa0,0x85,0x6c,0x0c,0x05,0x4f,0x56,0xd3,0xb8, +0x13,0x3c,0x3e,0x1b,0x9f,0x39,0xe0,0xe9,0x49,0x80,0x8a,0x41, +0xc7,0x64,0x65,0xbd,0x20,0x72,0x29,0xd4,0xe4,0x25,0x9f,0x43, +0x18,0xcb,0x35,0xa6,0x2f,0xa0,0xcb,0x07,0x74,0x05,0x80,0xae, +0x80,0xcf,0x0e,0xd3,0x9c,0x1a,0x74,0x4c,0x83,0x66,0x02,0xba, +0x4c,0x40,0x97,0x0f,0xe8,0x0a,0x00,0x5d,0x6e,0x09,0xe8,0xf2, +0x01,0x5d,0x3e,0xa0,0xcb,0xe7,0xdc,0xdc,0x9b,0xcf,0x66,0x2e, +0x7a,0x3d,0xe1,0xba,0x60,0x8c,0xc3,0x27,0xd9,0x75,0xcc,0x98, +0xe2,0x8a,0x35,0x9e,0x87,0x86,0xbd,0xe9,0x3a,0x21,0x8a,0x98, +0x6b,0x1f,0xcc,0xac,0x82,0x39,0xad,0xca,0x65,0xed,0x23,0xc8, +0xf7,0x24,0xe1,0x75,0x61,0x32,0x60,0x9e,0xca,0xb5,0x5f,0x35, +0xcc,0x6b,0x00,0x28,0x9a,0x6a,0xfc,0x01,0xd4,0xdb,0xac,0xeb, +0x4d,0x0b,0x2f,0xcb,0xea,0x65,0x6d,0x2e,0x1b,0x9c,0x37,0x5c, +0x33,0x84,0xb1,0xd0,0x2a,0x93,0x5c,0xf1,0xe0,0x0f,0x2b,0xe7, +0x8f,0xc9,0x18,0x2d,0xc2,0x95,0xa4,0x6b,0xb7,0x02,0x2e,0x1b, +0x3f,0x70,0x9d,0x93,0x00,0x1a,0x44,0x71,0x9d,0x51,0xc4,0x23, +0xf9,0xc0,0x79,0xaf,0x18,0x02,0x8a,0x72,0x7d,0xce,0x65,0x24, +0x95,0xf3,0x89,0x26,0x1f,0x32,0xe4,0x83,0xf1,0x8c,0xfc,0x08, +0xcf,0xf4,0xc1,0xa7,0x2f,0xb8,0xb9,0x1f,0x3e,0xfd,0xf1,0x19, +0x80,0x76,0x03,0x5d,0xab,0x20,0x1f,0x31,0x90,0x8f,0xad,0xe0, +0xa5,0x1c,0xc8,0x47,0x2c,0xf8,0x29,0x9e,0xc3,0x6d,0x82,0x1f, +0xd1,0x15,0x9c,0xd3,0x0d,0x36,0xa2,0xaf,0x2b,0x12,0x70,0x4b, +0xc0,0x3f,0x04,0xb0,0x47,0x01,0xee,0x10,0xf0,0x35,0xc5,0xbc, +0xa5,0x02,0xfe,0x43,0xb0,0x4f,0x07,0xa0,0x59,0x72,0x30,0x7f, +0xa9,0xc0,0x25,0x16,0xb8,0x24,0x01,0x97,0x03,0xa0,0x4b,0x06, +0x74,0x52,0x12,0x78,0xfe,0x28,0xf0,0x8a,0x01,0x5e,0x31,0xc0, +0xeb,0x2f,0xe0,0x15,0x03,0xde,0x3f,0x07,0xce,0x7b,0x08,0xdc, +0x4e,0x02,0xb7,0x28,0xcc,0x6b,0x3a,0xe6,0x35,0x1d,0x38,0x46, +0x89,0xf0,0x92,0xb8,0xd6,0xf6,0xc7,0xef,0x40,0xc0,0xc6,0x70, +0x85,0xce,0x85,0xd6,0x96,0xa0,0xb5,0xef,0x7b,0xe1,0x1c,0x50, +0x84,0x33,0xe4,0xa5,0x07,0x64,0xa5,0x17,0x6c,0x8a,0x86,0x6f, +0x08,0xf0,0x8d,0x01,0xbe,0x31,0x3a,0xbe,0x31,0xc0,0x37,0x0a, +0xf8,0xc6,0x03,0xdf,0x18,0xe0,0x1b,0x0f,0x7c,0x63,0x80,0x6f, +0x0c,0xf4,0xfe,0x09,0xf0,0xfd,0x79,0xcc,0xb7,0x88,0x91,0x7c, +0x84,0xe7,0x04,0x1b,0x70,0xa7,0xc0,0x7b,0x3d,0xf0,0xcd,0xe1, +0x52,0xc4,0xf8,0x74,0x32,0xe4,0x77,0x93,0xeb,0x1e,0xb7,0x10, +0xcc,0x8a,0x1f,0xd7,0xe7,0x25,0xd0,0x95,0xa6,0xcf,0x49,0x2e, +0x78,0x31,0x17,0xbc,0x98,0xa8,0xf3,0xe2,0x2d,0x5d,0x7f,0xf9, +0x00,0x4e,0x09,0x70,0x4a,0x5c,0x9b,0xf6,0xe4,0x1a,0xd5,0x09, +0x38,0x7d,0x00,0x93,0x13,0xf0,0x3c,0x84,0x74,0x04,0x40,0x07, +0x31,0x5b,0x8a,0x19,0x87,0x14,0x77,0x05,0x6f,0x76,0x63,0x3a, +0x15,0x34,0x1f,0xcb,0xf4,0x09,0xd3,0x56,0x9c,0xee,0x90,0x15, +0xd8,0xa2,0x45,0x90,0xd8,0x95,0xe0,0xda,0xd5,0xf8,0xbd,0x06, +0x70,0xac,0xc7,0x67,0x13,0xce,0xc3,0x3e,0x80,0xb6,0x99,0xba, +0x45,0x64,0xfa,0xc5,0xa9,0xcb,0xcd,0x6d,0xdd,0x22,0x52,0xd0, +0x35,0x87,0xdb,0xf1,0x17,0x70,0xdc,0x12,0x1f,0x26,0x33,0x5d, +0xf0,0xdd,0x95,0xd3,0x12,0x30,0x02,0x76,0xce,0x3f,0x4c,0xeb, +0x31,0xfd,0x8a,0xeb,0x4c,0xe7,0x68,0x3c,0xc2,0x74,0x4e,0x26, +0x8b,0x07,0x3c,0x7a,0xbf,0x9b,0x4e,0xab,0x8f,0x60,0x4d,0xc1, +0x13,0x5e,0xba,0xdf,0x0c,0xed,0xea,0x03,0xba,0x9d,0x03,0xbc, +0x6e,0x38,0xef,0xe9,0xba,0x3f,0xd7,0xa3,0xf7,0x0d,0x9c,0x86, +0x07,0x40,0xb7,0x7c,0xd0,0x8d,0x79,0x40,0x69,0x3a,0xdd,0xca, +0x7b,0xe9,0xfd,0x50,0xd0,0xae,0xbc,0xae,0xf7,0xcb,0x97,0xd0, +0xfb,0x49,0x98,0xe7,0x74,0xcc,0x73,0xaa,0xce,0xd7,0x27,0x30, +0xcf,0x49,0xa0,0x6b,0x92,0x0e,0x73,0x12,0x60,0x4e,0xe7,0x7a, +0xff,0x26,0x20,0x7c,0xc8,0x21,0x61,0xfa,0xce,0x09,0x3d,0x58, +0xe0,0x7a,0x00,0x08,0x1e,0xe8,0xba,0x3e,0x85,0xeb,0xfa,0xee, +0x82,0x99,0xcf,0x54,0x0f,0x3e,0x5b,0x46,0xcc,0xd6,0x43,0xe8, +0x31,0x89,0x6b,0x5d,0xcd,0xfe,0x41,0xef,0xc3,0x06,0x6b,0x96, +0xb8,0xa8,0x7c,0x00,0xfd,0x36,0x16,0x98,0x32,0xe9,0x58,0xe4, +0x72,0x16,0xbb,0x52,0xb2,0xee,0xc3,0x12,0x7a,0x9b,0x49,0x5b, +0x5f,0x57,0x34,0xe0,0xbb,0xa6,0x53,0xd0,0xae,0x53,0x90,0xd9, +0xee,0x5b,0xe8,0x4f,0xd5,0x29,0xc8,0xac,0xe7,0x15,0x50,0xb0, +0x40,0xa7,0x1c,0xf3,0xea,0xb2,0x01,0x7b,0xb6,0x6e,0x35,0xd3, +0x75,0xea,0x85,0x80,0x7a,0x12,0xa8,0x17,0x02,0x7c,0x2a,0x00, +0x9f,0x4a,0xc0,0xa7,0x02,0xf0,0xa9,0xa0,0x53,0xaf,0x02,0xa8, +0x57,0x01,0xd4,0xcb,0x01,0xf5,0xb2,0x40,0xbd,0x1c,0x50,0x2f, +0x07,0xd4,0x4b,0x05,0xf5,0x72,0x40,0xbd,0x4c,0x6e,0x61,0x86, +0xc2,0x2a,0x0f,0x03,0x4f,0xd6,0xe0,0x36,0xae,0x2f,0xf4,0xd8, +0x24,0xcc,0xf7,0x2c,0xe8,0x31,0x37,0x84,0x93,0xb9,0xee,0xf2, +0x86,0xee,0x96,0x17,0x74,0x37,0xff,0x47,0xe8,0x6e,0x03,0xba, +0x5c,0x40,0x97,0x0f,0xe8,0x72,0x01,0xdd,0x4d,0x40,0x97,0x0f, +0xe8,0xb2,0x01,0xd9,0x6d,0x6e,0xff,0x2a,0x40,0x4a,0x6a,0x43, +0x3b,0x95,0x83,0x76,0xae,0xc6,0xfd,0x9d,0xc9,0x42,0x0d,0x58, +0x12,0x19,0x12,0x61,0x83,0x34,0xe4,0x7b,0x3c,0x63,0xe6,0x75, +0x4a,0x02,0x8b,0x73,0x03,0x01,0xd5,0xdf,0x80,0xea,0x6f,0xf8, +0x3a,0x32,0xf7,0x75,0xfa,0x62,0xce,0xfb,0x41,0xa3,0xf4,0xc7, +0xa8,0x03,0xa0,0x45,0x06,0x0a,0x95,0x31,0xcf,0x15,0x60,0xeb, +0x83,0x60,0xb7,0xca,0xe9,0xf3,0x54,0x49,0xd7,0x0c,0xcc,0xf3, +0x92,0x74,0x1f,0xe2,0x9c,0xee,0x4b,0x95,0x01,0x3f,0xe5,0xeb, +0x9e,0x37,0xb3,0x50,0xf7,0x80,0x7d,0xa1,0xee,0x53,0xa5,0xea, +0x76,0x93,0xf9,0x54,0xf9,0xb0,0x4c,0x39,0xba,0x65,0xa2,0xb0, +0x4a,0x14,0x92,0x46,0x75,0xab,0x44,0x61,0x95,0x32,0x39,0xaf, +0x0d,0xd4,0x7c,0x2c,0xc1,0x1f,0x1a,0x29,0xc8,0xe3,0x17,0x68, +0x74,0x0b,0xd0,0xe9,0x16,0xa2,0xeb,0xfa,0x10,0xd0,0x8d,0xe9, +0xbe,0x0a,0xa0,0x5b,0x08,0xe8,0x16,0x20,0x04,0x43,0x6b,0x54, +0x02,0x4d,0xca,0x63,0x96,0x82,0x31,0x4b,0xed,0x59,0xd4,0x02, +0xcd,0x1a,0x84,0xde,0x24,0x8f,0x0f,0xfc,0xac,0xbd,0xf9,0x03, +0x4b,0xea,0x05,0x03,0xd3,0xbd,0x21,0xa5,0xdb,0x1b,0x60,0xd5, +0x1b,0x14,0xee,0x83,0x79,0x09,0x00,0x7d,0x9c,0x68,0x99,0x0c, +0xba,0x38,0x41,0x17,0x27,0x7a,0x48,0x43,0x0f,0x57,0x41,0x87, +0x54,0x4d,0xe3,0x70,0x0b,0xfd,0x10,0x34,0x70,0xea,0x34,0xc8, +0xd2,0x69,0x70,0x9d,0xfb,0xb7,0xf9,0xdc,0x4b,0x66,0xfe,0xd3, +0x22,0xf4,0xed,0xaf,0x51,0x50,0xf0,0x03,0xc7,0xa5,0x72,0x0d, +0xa8,0x71,0x5c,0x3e,0x38,0x2e,0xc6,0xad,0x91,0x41,0x7b,0xe6, +0xb7,0xa4,0x63,0xac,0x2c,0xdd,0x93,0xca,0xd5,0xad,0xf2,0xd3, +0x6d,0xfd,0xd3,0x6b,0xd4,0xc3,0xfc,0x27,0xe9,0x56,0x71,0x02, +0xe8,0x2b,0x43,0x1a,0x56,0x09,0xb3,0x3c,0xda,0xf9,0x16,0x8f, +0x57,0xe6,0xa3,0x25,0xb3,0x80,0x6b,0x5c,0x71,0x80,0x2f,0x16, +0xf0,0xfd,0x09,0x3e,0xbc,0xcc,0x2d,0xc6,0x69,0xfc,0x76,0xc2, +0x32,0x16,0xb8,0x32,0x00,0x6b,0x1c,0x7a,0xbe,0xc5,0x7a,0x46, +0x8c,0x72,0x0b,0x5a,0xe1,0x8c,0x6e,0xf5,0xb6,0x61,0x8e,0xca, +0x60,0x8e,0x02,0xa0,0xa1,0x9d,0xdc,0x13,0xd6,0xe6,0x8a,0x51, +0x3d,0x40,0x9b,0x2b,0xe6,0xd1,0xf0,0xb9,0x82,0x35,0xc1,0x77, +0x6f,0x9c,0xef,0x83,0xf9,0xed,0x0b,0x2b,0xde,0x0f,0x9f,0xfe, +0xf8,0x0c,0x80,0x4e,0x1b,0xe8,0xda,0x05,0x89,0x89,0x85,0xc4, +0xec,0x86,0x3c,0x9f,0xd7,0xad,0x5e,0xac,0x97,0xa7,0xe2,0x2e, +0x83,0x74,0x2f,0xe5,0x22,0xd3,0x91,0xe0,0x1b,0x09,0x30,0xdf, +0xd3,0x78,0x1b,0x7c,0xec,0x03,0xf9,0xd0,0xf8,0x99,0x82,0xae, +0x14,0xf0,0x18,0x31,0xf3,0x46,0xc0,0x60,0x04,0xaf,0x6a,0x3e, +0xf1,0x50,0x8f,0x5e,0x2c,0xf2,0x7f,0x34,0x5d,0xe7,0x83,0x7e, +0xe3,0xb9,0x6e,0xdc,0xc4,0xad,0x66,0xbe,0x57,0xb4,0x57,0xd6, +0xa3,0x0f,0xbd,0x5b,0xb1,0xf2,0xe9,0xf3,0xa1,0xf9,0x2a,0x8f, +0x5a,0xf0,0xff,0xee,0xcc,0xcb,0x98,0xdd,0x54,0x50,0x21,0x9e, +0xfb,0xa8,0x63,0xc1,0xc1,0x9a,0xcf,0x13,0x83,0x19,0xbe,0xc9, +0x28,0x82,0x59,0xb6,0x63,0x96,0x99,0x2f,0x70,0x14,0xb3,0xcc, +0xb8,0x30,0x1e,0xb3,0x9c,0x88,0x59,0x3e,0x0c,0xcc,0x4e,0x81, +0x62,0x89,0xa0,0x18,0xc1,0x4c,0xdf,0x07,0xd5,0x12,0x31,0xd3, +0xd9,0x98,0xe9,0x6c,0x1e,0x89,0x8a,0xe0,0x46,0xe0,0xac,0x47, +0xa3,0xf9,0x98,0xe9,0x2c,0x50,0x34,0x12,0x33,0x7c,0x9d,0xfb, +0x34,0x5d,0x3d,0xb3,0x2a,0x69,0xd2,0xc0,0xa5,0x4f,0xc2,0x8c, +0x46,0x62,0x46,0x23,0x31,0xa3,0x1b,0x30,0xa3,0x91,0xba,0xdf, +0x16,0x89,0x19,0x8d,0xc4,0x8c,0xc6,0x60,0x46,0x23,0x41,0xf5, +0x48,0xa1,0xce,0x33,0x42,0x7f,0x07,0xd0,0xa7,0xeb,0xd0,0x5f, +0x01,0xf4,0xd9,0x80,0x3e,0x0b,0xd0,0x67,0xea,0x9e,0x83,0x1b, +0xfa,0xbf,0x75,0xe8,0x6f,0x3e,0x06,0x7a,0x78,0x11,0xf0,0xa8, +0x8a,0x43,0x4f,0x4b,0x40,0x7e,0x1d,0x90,0xdf,0x04,0xe4,0x37, +0x01,0xf9,0x4d,0x40,0xfe,0x17,0x20,0xbf,0xa9,0xdb,0x96,0xbb, +0xba,0x6d,0xb9,0x0d,0xba,0x6b,0xb1,0x53,0x23,0x70,0x08,0xd5, +0xa0,0x16,0x5e,0x00,0xd4,0x79,0xd0,0x20,0x99,0x4c,0xf7,0xe8, +0x71,0xd4,0xf3,0xc6,0x35,0xe0,0x4a,0x4d,0xb3,0x57,0xe7,0xd0, +0x1e,0x87,0xcf,0xa3,0x69,0x76,0x16,0xc9,0xde,0xe4,0x5a,0xc6, +0x00,0x2e,0x94,0xa0,0xbd,0x38,0x7d,0x85,0x8a,0x7a,0xf4,0xa2, +0xfb,0x16,0xd0,0xfc,0x5d,0x30,0x32,0xb4,0xb8,0x47,0x03,0x73, +0x7f,0x87,0xc7,0x06,0xd9,0xd0,0x40,0x14,0x1a,0xe8,0x2e,0xd3, +0x5f,0xd0,0xc2,0xa1,0xb0,0x08,0x76,0x58,0x04,0x3b,0x2c,0xc2, +0x4b,0xe0,0x72,0x3b,0x2c,0x42,0x75,0x70,0x7a,0x15,0xf8,0x6b, +0x32,0xb8,0xbd,0x0a,0xa2,0x3f,0xb3,0x50,0x11,0xf4,0x4e,0x05, +0x9d,0xf3,0x99,0x3d,0xe0,0x91,0xcc,0x26,0xe6,0xd9,0x72,0xff, +0xc2,0xad,0xf7,0xb4,0xd1,0x79,0x7e,0x87,0x59,0x3d,0x8c,0xa2, +0x8d,0xac,0x45,0x24,0x7d,0x70,0xdc,0xcf,0x2b,0xb2,0x1b,0x88, +0xef,0x41,0xd0,0xfc,0x83,0x99,0xd7,0xc5,0xe3,0x4c,0x19,0x23, +0x49,0xc5,0x32,0x24,0x16,0x3d,0x8e,0x62,0xb1,0x13,0x7c,0x3f, +0xf8,0xa6,0xa7,0xb9,0xbd,0xbd,0x8a,0xd9,0x70,0xea,0xf6,0x32, +0x1f,0x14,0xa7,0xa0,0x36,0xd5,0x2d,0x39,0xe5,0xf6,0xb2,0x0a, +0xa8,0x7c,0x55,0xf3,0x31,0x20,0xeb,0x73,0xc0,0xc1,0xcc,0xa3, +0xdc,0xe4,0xc9,0x5e,0x49,0x1e,0x3b,0xd6,0xc4,0x75,0x08,0x70, +0xff,0xc5,0x61,0xee,0x82,0xf8,0x0f,0x5e,0xa9,0x17,0xec,0xd7, +0x41,0xb5,0x3c,0xc0,0x7f,0x05,0x54,0x4b,0x04,0xd5,0xae,0x03, +0x8f,0x73,0xa0,0x5a,0x90,0x6e,0x47,0x03,0x80,0x4b,0x10,0x70, +0x09,0x01,0x2e,0x01,0xc0,0x25,0x40,0xc7,0x25,0x88,0xe7,0x0c, +0x8c,0x7a,0x4e,0x2a,0x5f,0x08,0xd2,0x25,0x6a,0x1e,0x78,0x32, +0x12,0x3c,0x19,0x09,0x9e,0x8c,0x04,0x4f,0x46,0x72,0xbd,0xae, +0xf1,0x64,0x2e,0x78,0x92,0x45,0x42,0x91,0xc6,0x5c,0x7c,0x9c, +0x80,0xb9,0x00,0xba,0xcd,0x00,0xce,0xf7,0x87,0x77,0x17,0xe8, +0x9a,0x27,0x86,0xa0,0x27,0xc4,0xdb,0x88,0xc7,0x26,0x83,0xab, +0x37,0xb9,0x6e,0xc0,0x4f,0xf7,0xe1,0xb1,0x93,0x13,0x9a,0xb9, +0x80,0x71,0x2e,0xa8,0x18,0x88,0x56,0xad,0x21,0x21,0x16,0xdd, +0xaf,0xba,0x0e,0xcb,0x22,0x71,0xae,0xda,0xe4,0x4a,0xe1,0x19, +0x3c,0x9e,0xbd,0x83,0x8d,0x29,0x80,0xd7,0x29,0x01,0xde,0x40, +0xf0,0xb6,0x16,0x5d,0x32,0x3d,0x1c,0xc3,0xc7,0x60,0x71,0xdb, +0x5d,0x4d,0x62,0xe0,0xff,0xf0,0x2c,0x8a,0x50,0x01,0x2d,0x2a, +0xe8,0x63,0x64,0xf2,0xdc,0x9a,0x9f,0x5e,0xf3,0x22,0x70,0x61, +0x3c,0x91,0x5e,0xa2,0x66,0x08,0x87,0xc6,0x1d,0xd9,0xb8,0x5b, +0x68,0xf0,0xaf,0x61,0x3c,0x8e,0x6f,0x06,0x11,0xf7,0x5e,0x78, +0x4b,0x3b,0x5a,0xda,0xf5,0x31,0x98,0x47,0x91,0xee,0x19,0x23, +0x53,0x8b,0x00,0x10,0x6d,0xf1,0xf9,0x13,0x2a,0xa1,0x66,0x25, +0x0f,0xc6,0x45,0x63,0x24,0xf1,0x16,0x12,0x87,0x4a,0xc3,0x58, +0xd2,0x69,0xe4,0x0d,0x3f,0x5a,0x60,0xa6,0x35,0x5f,0x3c,0x49, +0x28,0x8b,0xda,0x69,0x98,0x9b,0x1c,0xcc,0x4d,0x06,0xe6,0xe6, +0x32,0xc6,0xca,0x40,0xeb,0x78,0x9e,0x7b,0x3b,0xcd,0xf2,0x6d, +0x3c,0x5f,0x26,0x63,0x3e,0x32,0x35,0xff,0x0a,0xf3,0x52,0x94, +0x67,0xcb,0xe7,0x90,0x96,0xd1,0xc7,0xbd,0xa9,0x8f,0xeb,0xe3, +0x35,0xa6,0xc5,0x6b,0x5e,0x98,0x6e,0x62,0xb6,0x5d,0xb3,0xeb, +0xa8,0xc9,0xed,0x4f,0x11,0x84,0xcc,0xbe,0x6b,0x50,0xc6,0x14, +0xc3,0x8b,0xcd,0x8b,0x51,0xf7,0x15,0x58,0x3e,0x36,0x04,0x94, +0x08,0x00,0xa7,0xe4,0x80,0x53,0x6e,0x43,0x0f,0x84,0x00,0xa7, +0x48,0xe0,0x74,0x9d,0x67,0x23,0xed,0xa8,0x51,0x0d,0x7d,0xe7, +0x72,0xea,0x3a,0x41,0xbf,0x02,0xe6,0x37,0x80,0x47,0x9b,0x40, +0xbb,0x36,0x75,0x9d,0x70,0xd3,0x09,0xa3,0x72,0x0e,0x41,0xa4, +0xc0,0x5a,0x68,0xb9,0xdd,0x1c,0x2e,0x1d,0x45,0x7d,0xfe,0xcd, +0x7c,0x5b,0xde,0x82,0x41,0x60,0xf6,0xb4,0x58,0xcf,0x5b,0x55, +0xf0,0x82,0x84,0x8d,0x21,0xeb,0xad,0xb2,0x79,0x2e,0xd9,0xc8, +0xa1,0xf1,0x70,0x21,0x1f,0xc3,0xaf,0xc8,0x93,0x64,0x1c,0xc8, +0x5b,0x44,0xa1,0xc5,0x4d,0xe6,0xad,0x7a,0x30,0x0d,0xd1,0x31, +0xad,0xa0,0xe7,0xf1,0x72,0x75,0x99,0x65,0x7d,0xdf,0x66,0x91, +0x1d,0xcb,0x3a,0xe3,0x8a,0x16,0x1b,0xda,0x81,0xed,0x43,0xbd, +0x66,0x16,0x6a,0xe6,0xe8,0xb9,0xdc,0x28,0x3d,0xf3,0x4c,0x01, +0xe3,0x78,0xf4,0xc9,0xb4,0xc9,0x22,0xae,0x65,0x25,0x9e,0xaf, +0xde,0x07,0x68,0xdc,0x79,0xa2,0xd3,0x18,0xcb,0x89,0xf3,0x05, +0x1c,0xa2,0x18,0x1e,0xe5,0xba,0x73,0xd6,0x65,0x38,0x44,0x1a, +0x34,0x8c,0x46,0xd7,0x39,0xdd,0x75,0x9a,0x6b,0x71,0x26,0xf3, +0x66,0x39,0xbf,0x6a,0x70,0x33,0x7d,0xf3,0x40,0xa7,0x4d,0x2e, +0xa7,0x8d,0x16,0x31,0x50,0xbd,0xd5,0x5d,0xb7,0xbe,0x14,0x8c, +0xdb,0xec,0xec,0x0e,0xc4,0xaf,0x17,0x7f,0xcd,0x17,0x98,0xa7, +0x22,0xb8,0xa8,0xeb,0xb6,0x2b,0xdf,0x95,0xe6,0xba,0x08,0xcb, +0x56,0xfa,0x3f,0x89,0x7d,0x80,0x55,0xa9,0xff,0x00,0xef,0xa3, +0xff,0xea,0x41,0x93,0xd7,0x40,0x24,0x56,0x15,0x51,0x84,0x00, +0xaf,0xb9,0x2c,0x74,0x7b,0x30,0x34,0x6d,0x88,0x60,0xdc,0xba, +0x85,0x8d,0xbf,0xa7,0xd2,0xde,0xdf,0x85,0xd6,0xf0,0x13,0x58, +0xef,0x32,0xfb,0x00,0x06,0xf6,0x47,0x71,0x14,0xef,0x4a,0xc7, +0xb7,0x04,0x29,0xfe,0x2f,0xfe,0x41,0x77,0x69,0x9f,0x6b,0xae, +0x3c,0x57,0xaa,0x2b,0x13,0x56,0x4f,0x70,0x9d,0x77,0xe5,0xf0, +0xde,0x73,0xe0,0xc1,0x3e,0x4b,0x1f,0xf1,0xae,0x18,0xd7,0x5d, +0x7c,0xef,0x70,0xe5,0xba,0x4e,0x00,0x43,0x48,0xa1,0xeb,0x80, +0x10,0xe2,0x1a,0x81,0x6f,0x0a,0x2c,0x02,0xd8,0xdd,0x39,0xf4, +0x9d,0xee,0x8a,0xc0,0x99,0x18,0xd7,0x86,0x7f,0x00,0x5f,0x8e, +0xf0,0x5f,0xfe,0x63,0x58,0x79,0xf7,0x50,0x62,0x54,0xa9,0xa8, +0x0e,0xc3,0xf9,0x19,0xfe,0x59,0xf9,0x1f,0x6b,0x23,0xb3,0x7b, +0x85,0x88,0x43,0x65,0x76,0xd6,0x0b,0x42,0x89,0x9f,0x7f,0x3a, +0x64,0x6c,0xd6,0x28,0xfb,0x03,0x6d,0x24,0xde,0x4b,0x48,0x29, +0xb3,0x92,0xfa,0x78,0xdc,0x71,0x2d,0x17,0x3c,0x78,0x10,0x73, +0x96,0xcf,0x3f,0x29,0x88,0x88,0x43,0x38,0x4c,0x76,0xd7,0x49, +0xd7,0x5f,0xae,0x24,0xc4,0x3f,0x5a,0x2f,0x69,0xa8,0x99,0xff, +0x0c,0x74,0x94,0x8b,0xc1,0xe7,0x75,0xf6,0x71,0x9c,0xfc,0xd8, +0x7f,0x81,0x8f,0x81,0x39,0xc6,0x3d,0x23,0xff,0x25,0x97,0x52, +0xf7,0xb1,0x6b,0xb7,0xf0,0x3f,0xff,0x7b,0x02,0x6d,0x9f,0x91, +0xe3,0x30,0x07,0xa9,0x1a,0xf7,0x3f,0xb6,0x46,0xd6,0xb3,0x61, +0xcc,0xe4,0x8e,0xe3,0x15,0xf3,0x3f,0x63,0x95,0xa4,0xf1,0xf2, +0xe3,0x61,0x62,0xdc,0xfe,0x28,0x86,0xae,0xfb,0x2e,0x55,0x3f, +0xd2,0x25,0xde,0x15,0xcb,0xb0,0x83,0x64,0x47,0x15,0x9f,0x07, +0xf8,0x6f,0x1e,0xde,0xc0,0x8c,0x66,0x96,0x26,0x3b,0xae,0x87, +0xf8,0xcb,0x03,0x7f,0xe7,0xc1,0x8f,0x16,0x5c,0x51,0x9c,0x5b, +0x29,0xf8,0xf2,0x1e,0xff,0x9d,0x53,0x92,0xa3,0x70,0x26,0xc7, +0x95,0xc5,0x34,0x04,0xd7,0x14,0xee,0xb3,0x2e,0xd4,0xa7,0xec, +0xbc,0x50,0x86,0xeb,0xbb,0x34,0x57,0x06,0x7a,0xbc,0x80,0x2b, +0x97,0x75,0xaa,0xa5,0xa1,0xc6,0x3d,0x7e,0x37,0xdf,0x2d,0xc9, +0x91,0x42,0x05,0xa1,0x8a,0xeb,0xbc,0x50,0xae,0x04,0x8e,0x46, +0x44,0x79,0x82,0x0e,0x13,0x46,0x77,0x1d,0x70,0xb1,0x7b,0x5d, +0x02,0x60,0xba,0xcf,0x61,0xba,0xfb,0x28,0x17,0x60,0xc4,0xdb, +0x82,0x09,0x7e,0x6a,0x40,0x11,0xbc,0x0c,0x03,0x17,0xf1,0xd6, +0x22,0xa0,0xd0,0x75,0xa6,0x4b,0x74,0x3a,0x70,0xf9,0x77,0x3d, +0x60,0x34,0x28,0x26,0x5b,0x21,0xf0,0x43,0xa4,0x92,0xdc,0xe0, +0x2a,0x04,0x9d,0x6e,0x60,0x9c,0x3b,0xf8,0xa8,0xc0,0x26,0x07, +0xbd,0xe7,0x42,0x4b,0xe6,0x03,0x2a,0xa7,0x36,0x2a,0x8e,0x1f, +0x78,0x24,0xe0,0xbe,0xeb,0x0a,0xc3,0xdd,0x95,0xa1,0x69,0x2f, +0x6f,0x89,0xe5,0xf8,0xe5,0x73,0x08,0x73,0xc1,0x77,0xb7,0xd0, +0x17,0xeb,0xbb,0x50,0xb3,0x13,0x7a,0x4f,0xd4,0x2d,0xdd,0x8f, +0xd3,0xeb,0x8f,0x40,0x78,0x00,0x78,0x85,0x00,0x47,0x8d,0x9f, +0x42,0xbd,0xa8,0xe3,0x9e,0xf7,0x0a,0x5c,0xfb,0xe7,0x14,0xd7, +0x22,0x80,0x21,0xc7,0xf5,0xc0,0x75,0x0d,0xb6,0x2b,0x50,0xf0, +0xc1,0xc8,0x89,0x3a,0x6f,0x49,0x1c,0xeb,0x5c,0xf0,0x69,0x61, +0xb1,0xd1,0x98,0x9e,0x59,0x85,0xab,0x21,0xba,0x2e,0xf4,0xf5, +0x82,0xe0,0x80,0xeb,0xa8,0xeb,0x30,0xe6,0x3e,0x15,0x9f,0x07, +0xae,0x34,0xa1,0x1c,0x1f,0xc5,0x1f,0x70,0xa5,0x60,0xec,0x03, +0xa8,0xe3,0x64,0x5c,0x8a,0xe3,0x1c,0xd7,0x06,0xd4,0x4a,0x02, +0x17,0x04,0x30,0xa8,0xf1,0x61,0x16,0xad,0x98,0x5d,0x64,0xb3, +0xcd,0xbf,0xaf,0xbb,0x6e,0xba,0xce,0xb9,0x2e,0x71,0xc9,0xcb, +0x04,0xad,0x0a,0x71,0xe6,0x02,0xe7,0x26,0x2f,0x0b,0xe1,0x8a, +0x63,0x9c,0x0b,0xee,0xcb,0xf3,0xe6,0xcc,0xd2,0xa5,0xaa,0x64, +0x59,0xd2,0x46,0x96,0xd4,0xb2,0x3a,0x9d,0x72,0xf9,0x7c,0x5c, +0x00,0x8d,0x2e,0x70,0xcb,0xa2,0x73,0x86,0x0e,0x81,0x6e,0xa5, +0x80,0x59,0x0a,0x6a,0xc6,0x73,0x5c,0x64,0xe6,0x01,0x00,0x33, +0xca,0xa8,0xee,0xb1,0x72,0xf9,0xc0,0x87,0xb2,0x7b,0xe3,0xba, +0xb4,0xa4,0x82,0x0b,0x9c,0xe0,0x5e,0x68,0x21,0x7e,0x3d,0x05, +0xb8,0xe6,0xba,0xa5,0x45,0x6f,0xb3,0x0e,0xfe,0x46,0x15,0xd7, +0x1d,0x21,0xc8,0x7b,0xde,0x75,0xcb,0xc4,0xa8,0xfa,0x40,0xe3, +0x42,0xd0,0xff,0x14,0xff,0x8e,0xd7,0x78,0xc9,0x5b,0x1b,0x7b, +0x59,0x0c,0x03,0xae,0xde,0x7a,0x84,0x2f,0x69,0x11,0xe7,0x3d, +0xd6,0x1a,0x6a,0x9f,0x1c,0x2f,0xc9,0xcb,0x2d,0xce,0x89,0x2e, +0x02,0xf9,0x80,0x57,0x07,0xdc,0x04,0xa1,0x0c,0xb8,0xfb,0x0a, +0xa4,0xe4,0x06,0x7e,0xbb,0x29,0x7e,0xdd,0x75,0x15,0x73,0x78, +0x4f,0xd3,0x3e,0x6e,0x7b,0x23,0x54,0x02,0x76,0x94,0xcf,0x9c, +0x54,0xa2,0xa7,0xbb,0x25,0x7a,0xca,0xf3,0xf4,0x94,0xc3,0x7b, +0x52,0x8b,0xf5,0x74,0xa1,0xd4,0x9e,0xf2,0xf8,0x2c,0x55,0x29, +0xb2,0x7b,0xf0,0x09,0xd3,0x41,0xfb,0x42,0x50,0x5d,0xe6,0xab, +0x86,0xdc,0x35,0xef,0x82,0x8e,0x1a,0x4f,0x54,0x14,0x44,0xe8, +0x94,0x34,0xfc,0xce,0xe3,0xbf,0x4a,0x52,0xeb,0x96,0x4e,0xb1, +0x03,0x98,0xaf,0x6b,0x38,0x3e,0xc0,0x21,0x2a,0xf4,0xcc,0xf2, +0x03,0xaf,0xba,0x7c,0x26,0x9e,0xee,0xa1,0x3d,0x93,0x0d,0x92, +0x1f,0xa7,0x13,0xa0,0x4f,0x0a,0x74,0xba,0xa6,0x69,0xdc,0xc4, +0x2c,0x80,0xce,0x9f,0x82,0x37,0x95,0xf8,0xf1,0x2d,0xae,0x55, +0x53,0x1f,0xf1,0x88,0x25,0xcd,0xe3,0x79,0x36,0x48,0xdc,0x5c, +0x50,0x8a,0x3e,0x62,0x76,0x24,0xd5,0x53,0x83,0xc9,0x7a,0x96, +0x26,0xc1,0xba,0xbd,0x4d,0x77,0x73,0xce,0x93,0xb1,0x86,0xf6, +0x8f,0x86,0x6c,0x1f,0x72,0x25,0x43,0xa7,0x24,0xa3,0xcf,0x78, +0x68,0x15,0x13,0xb0,0x2a,0x03,0x7d,0x96,0x84,0x7e,0x8f,0x80, +0xe6,0xf7,0x5d,0x7f,0xa0,0xe6,0x9f,0x1a,0x5f,0xa2,0xc5,0x3c, +0x70,0x41,0x45,0xae,0x55,0xfe,0xc2,0x5f,0xea,0xe3,0x78,0xd9, +0xcb,0xaf,0x7c,0xc8,0xa5,0x48,0xf5,0x70,0x9e,0xdb,0xb6,0xaa, +0x8f,0xa3,0xb7,0xc7,0xab,0x17,0x8a,0x4a,0xfd,0x9b,0x1d,0xe5, +0x3e,0xe2,0x9f,0x09,0x45,0x12,0xe9,0x75,0xee,0x24,0x24,0x35, +0xd1,0x75,0xdc,0x75,0x19,0x14,0xb9,0x0c,0xee,0x3b,0xed,0xe1, +0x5a,0x09,0xf8,0xe6,0x00,0x97,0x07,0x9a,0x46,0xd2,0x3c,0x0f, +0xfe,0x1d,0x03,0x98,0xec,0xba,0xce,0x4c,0xf5,0xd0,0xf8,0x6f, +0xcc,0xfa,0x05,0x60,0x7b,0x19,0x51,0xcf,0x35,0x60,0x70,0xd1, +0xd3,0x53,0x59,0xde,0x53,0x92,0xa7,0xa7,0xcb,0xb0,0x83,0xde, +0x3d,0xdd,0x44,0x4f,0x04,0x6d,0xff,0xf6,0xf0,0x91,0xca,0xd6, +0x2b,0x40,0x46,0x28,0xe3,0x23,0xd4,0x20,0xb0,0xa4,0x81,0x90, +0xa2,0x02,0xee,0x03,0xcb,0x9e,0x99,0x4f,0x73,0x5d,0xd1,0xf5, +0x65,0x55,0x5c,0xbd,0x0e,0x5c,0xfe,0xe6,0x7a,0xa5,0xaa,0x97, +0xec,0x31,0xcb,0x79,0x9f,0xcf,0x91,0x0a,0x2d,0x85,0xbe,0xd1, +0x6b,0x21,0xbe,0x0b,0x35,0x4a,0x7b,0xe8,0xfc,0x28,0x6f,0x85, +0x3c,0x62,0x83,0xa9,0xe7,0xe8,0x8e,0xb7,0x07,0x84,0xa3,0x82, +0x7f,0xe8,0x1d,0x4a,0xd0,0x26,0x2a,0x20,0x66,0xd1,0xd8,0x5e, +0x50,0x8d,0x82,0x1f,0xf7,0xb3,0x11,0x8a,0xe4,0x05,0x58,0x17, +0x7a,0x79,0x6b,0x07,0x51,0x46,0x97,0xb4,0xe6,0x25,0xfc,0x5e, +0xe6,0x1d,0xd1,0xa2,0x19,0x7e,0x76,0x2f,0xda,0x35,0xcf,0xb5, +0x0a,0x1f,0x66,0x9f,0x63,0x8a,0x7b,0x97,0xf8,0x1d,0xa9,0xc5, +0x43,0xdc,0x72,0x46,0xea,0x73,0x17,0xf9,0x38,0x0d,0xcd,0x79, +0xf0,0x0a,0x66,0x20,0x04,0x73,0x92,0xef,0xba,0xa1,0xc7,0x05, +0x5a,0x04,0xc4,0x22,0x50,0xb7,0x6c,0x07,0x3c,0x45,0xb2,0x35, +0xdb,0x95,0xa5,0xb7,0xa3,0xd0,0x72,0xb0,0x19,0xe0,0x41,0xdd, +0x37,0xe2,0x56,0x2b,0x47,0xf7,0x2b,0x9e,0xac,0x2d,0x24,0xdd, +0x9a,0x97,0x05,0x4c,0x65,0xb9,0x06,0xd0,0x38,0xa8,0x02,0x2f, +0x25,0x2f,0x1b,0x5c,0xe1,0x29,0x7a,0x8f,0xea,0x36,0xbb,0x3c, +0x7a,0x2a,0xcf,0xe6,0x8c,0x47,0xd8,0xee,0x9e,0x98,0xd5,0x73, +0x43,0x12,0xf0,0x04,0x98,0x64,0x1d,0x26,0x33,0xb0,0x2b,0x8f, +0x68,0xac,0x3c,0x30,0xbb,0xc2,0xb1,0xa5,0xbc,0x27,0xa6,0x01, +0x53,0x39,0x9d,0xa4,0xa7,0xc0,0x64,0xf6,0xc0,0x74,0x51,0x08, +0x43,0x4f,0x61,0x68,0x95,0xa4,0x69,0x50,0xb4,0x93,0x34,0x8a, +0x7b,0xf8,0xe0,0x29,0x30,0xe9,0x73,0x97,0x09,0xdf,0xcd,0x2e, +0x84,0xb2,0x48,0x91,0x6b,0x92,0x4c,0xd0,0x57,0xd5,0xe7,0xee, +0x8e,0x4e,0xf1,0xa7,0x7a,0x38,0xa8,0x7b,0x59,0xf7,0x40,0x04, +0xae,0x33,0x59,0xcc,0x29,0x03,0x26,0x3b,0xd7,0x4f,0x91,0x4c, +0xcf,0x73,0x9f,0x84,0x3e,0x41,0x56,0x82,0x3d,0xfd,0xdd,0xf6, +0x50,0x3c,0x85,0xf7,0x98,0xaf,0x53,0x5c,0x76,0xfb,0x19,0x8f, +0xfa,0x4b,0xa5,0xe9,0x4b,0x4e,0xa7,0x10,0xee,0xf1,0xb1,0x9e, +0x42,0x74,0xfa,0x86,0xe8,0x7c,0xae,0x7b,0x33,0xee,0x8c,0x4c, +0xa9,0xd2,0x23,0xeb,0x79,0x15,0x36,0x76,0x32,0xb7,0x22,0x54, +0xb0,0x30,0xa9,0xe1,0x36,0x25,0x96,0xd7,0x09,0x79,0xd6,0x48, +0x58,0xaf,0x55,0x81,0xfb,0x9e,0xe9,0x38,0xaa,0x86,0x9e,0xe2, +0xd1,0x73,0xba,0xeb,0x44,0x71,0x3a,0x83,0x9a,0x4f,0x96,0x65, +0x5f,0x40,0xfd,0x00,0x33,0x9c,0x0a,0x0d,0x90,0xa1,0xfb,0xda, +0xac,0xa7,0x5b,0xae,0x33,0x5a,0x54,0xe1,0x65,0x2f,0x9f,0x0c, +0x9b,0x91,0xf7,0x24,0xf3,0x9e,0xb2,0x74,0xec,0xe2,0xb9,0xbd, +0x8e,0xe5,0x2d,0xe5,0x7f,0x10,0x64,0x32,0x5e,0x0e,0x83,0xa6, +0xcb,0x65,0x7a,0x1a,0x73,0x9f,0x04,0xee,0x64,0x33,0xc1,0x6d, +0x81,0x2e,0x3b,0xb2,0xbe,0xe6,0xf8,0xc9,0xd8,0x69,0x76,0xe4, +0x3c,0x7a,0xba,0xcc,0x61,0x8a,0xd7,0xf8,0x9a,0x63,0xe7,0xc6, +0x4a,0x7a,0x66,0xb8,0xfc,0xb8,0xf6,0x48,0x65,0x52,0x02,0xec, +0xfe,0xe0,0x39,0xad,0x18,0x8f,0x27,0x4f,0x75,0x9f,0xc1,0xf9, +0x44,0x8d,0x22,0x6b,0x75,0xb9,0xc6,0xcd,0xe5,0x7f,0xf1,0x7a, +0x74,0x9e,0xa4,0x7b,0x5c,0xee,0xe8,0x59,0x7e,0x0a,0x64,0x46, +0x7e,0xbd,0x2c,0xe7,0xa7,0x73,0x6e,0x7e,0xe2,0xb1,0xde,0x89, +0x92,0x33,0xf6,0x54,0x2e,0x90,0x75,0x6b,0x91,0xc3,0x39,0x53, +0xe0,0x3d,0xe5,0xf0,0x5c,0x9b,0x06,0xe9,0xb3,0xe5,0xe9,0x8c, +0xcb,0x6f,0xb1,0x5c,0xe2,0x86,0x87,0x5b,0x2c,0x42,0x6d,0x61, +0x94,0xee,0x0d,0xb0,0x8c,0x81,0x89,0x47,0xa0,0x59,0xcc,0xa3, +0x62,0x5a,0x94,0x5b,0x9c,0x1c,0x78,0xbc,0xb9,0x5c,0x7a,0x72, +0x40,0xd9,0x1c,0xd0,0xe1,0xa6,0x57,0xd4,0xf7,0x7f,0xfd,0x4f, +0xe6,0x92,0x77,0x17,0xf0,0x9c,0x07,0x24,0x2c,0x56,0x86,0x56, +0x42,0xd4,0x97,0x89,0x18,0x32,0x00,0x63,0x1f,0xe7,0xd1,0xfe, +0x33,0x8c,0x0e,0xed,0x5b,0x91,0xcb,0x71,0x0e,0xf7,0x20,0xec, +0x4c,0xa7,0xc0,0xd3,0x83,0x46,0xd1,0x2d,0x46,0x0e,0x68,0x77, +0x41,0x93,0x41,0x4d,0xc2,0x99,0x66,0x80,0x0f,0xf1,0x7f,0x8e, +0x99,0x27,0xfb,0x63,0x84,0x7d,0x65,0x12,0xf2,0x3b,0x6c,0x6d, +0x00,0x9f,0xf7,0x6a,0xc0,0x2b,0xd2,0x75,0x14,0x90,0x45,0xe9, +0xe3,0xef,0x2a,0x3d,0x93,0x52,0xdc,0xda,0xe9,0xff,0x42,0x4a, +0xc9,0xd3,0x79,0x74,0x25,0xe8,0xf4,0xb7,0xf0,0xff,0xf9,0x3f, +0xd8,0x92,0x10,0xcd,0x9b,0xe4,0xb3,0xf7,0x8c,0xf9,0x33,0x2f, +0x4f,0x39,0xca,0xcb,0xf3,0x92,0x78,0x06,0x89,0xad,0x26,0xae, +0xe4,0x89,0x9a,0x65,0x9e,0x1d,0x7a,0x16,0x4d,0xf7,0x5f,0x64, +0x02,0x75,0x0f,0x3f,0x85,0x5b,0x0d,0x59,0xd3,0xb3,0xdc,0x22, +0xed,0xe7,0x6b,0x49,0x2a,0xe2,0x38,0xc0,0x93,0xed,0x78,0x82, +0xac,0xea,0x79,0x88,0x54,0xd7,0x39,0xd8,0xa2,0x6b,0xae,0x9d, +0xfc,0xd7,0x65,0x8f,0x1f,0x77,0x97,0xe7,0xb7,0x02,0x5c,0xab, +0xf8,0xef,0x10,0x6e,0xaf,0xf2,0x35,0xac,0x11,0x81,0xe6,0xfc, +0xf7,0x99,0xee,0x52,0xf3,0x80,0x4c,0x5f,0x5d,0x76,0x5d,0xe2, +0x7e,0x43,0x2e,0xb7,0xcc,0x31,0x2c,0xea,0xe4,0x59,0x86,0x10, +0xfe,0x04,0x47,0x88,0x1e,0x37,0x71,0xca,0x3e,0x6e,0x74,0xf8, +0xeb,0x5b,0xf8,0xf7,0x1e,0x7c,0xfe,0x70,0xfd,0xe4,0xfa,0x1a, +0xdf,0x89,0xf8,0xdc,0x61,0x3e,0x39,0xd7,0x49,0xec,0x6f,0x39, +0xef,0x21,0x84,0xf7,0x99,0xa3,0x47,0x04,0x51,0x8f,0xcf,0x33, +0xfd,0x57,0x38,0xed,0x75,0x45,0xc1,0xa7,0x8e,0x01,0x0c,0x9a, +0x66,0x66,0x79,0x82,0x18,0x8e,0x65,0x24,0xc6,0x09,0x71,0x7b, +0xf7,0x1c,0xa7,0x40,0xa6,0xa7,0x1f,0x7b,0x47,0x44,0xd2,0xe3, +0x7b,0x5a,0x6a,0x94,0xe0,0x95,0x79,0xe1,0xb3,0x79,0xe1,0xff, +0x75,0xe9,0xd1,0x3d,0x14,0xaf,0x28,0x57,0xcb,0xbb,0x64,0x16, +0xc5,0xb6,0x4f,0xb5,0xd1,0xe5,0xf5,0x68,0x25,0x40,0xcb,0x23, +0x14,0x1d,0xf3,0xa3,0x9a,0x25,0xf2,0xcd,0xe4,0xff,0x45,0x74, +0xfc,0xc0,0xe3,0x97,0x81,0x41,0xa1,0x9e,0x9f,0x0a,0xe2,0xdf, +0x19,0xd0,0x87,0xb9,0x3c,0xba,0x4c,0x7b,0xc2,0xcc,0x3c,0xda, +0x57,0xa9,0x77,0x28,0x1e,0x17,0x77,0x97,0xf8,0x17,0xf2,0x8f, +0xfc,0x9a,0x7f,0x32,0x63,0xce,0x27,0x8d,0x5b,0x5a,0x86,0xdd, +0x8b,0xb3,0xca,0x69,0x9e,0x1b,0xaf,0x23,0x3f,0x0a,0x21,0x8f, +0xfc,0x7d,0xf5,0xc8,0x83,0xe9,0xbf,0xa0,0x52,0xac,0x25,0xd7, +0x1d,0x88,0x35,0x33,0xf5,0xcc,0x00,0xd3,0x1e,0x32,0xcf,0x9f, +0x06,0xf0,0x4f,0xc0,0x3f,0xc0,0x5c,0x66,0x99,0x43,0xc8,0xc4, +0x7d,0xc4,0xec,0xbe,0x9e,0xb8,0x21,0xca,0x75,0x4a,0xf0,0x75, +0x67,0xff,0xdd,0x59,0x7f,0x9e,0x0b,0xcd,0xfd,0x5f,0x34,0x95, +0x96,0x5b,0x78,0xb2,0x0e,0xff,0xbf,0xd6,0xf0,0x5e,0x5a,0x91, +0x8d,0x9d,0xf4,0x58,0x8f,0xad,0xb8,0x8e,0x80,0x0d,0x62,0x39, +0x0b,0x76,0x17,0x82,0xcf,0x4a,0xa6,0x27,0x3b,0x9a,0xcf,0x63, +0xd7,0x02,0x77,0x7e,0x00,0xf3,0x94,0x56,0x6a,0x56,0x33,0x9e, +0xd7,0xcf,0xf5,0xbe,0x17,0xc9,0x63,0x5f,0xc9,0xf3,0xe7,0x8e, +0x63,0x3d,0xf2,0x8f,0x11,0x4b,0xf1,0x2b,0xa1,0x6d,0x9d,0x3c, +0xbf,0x41,0x79,0xa6,0xf2,0x1e,0xef,0xe9,0x96,0x66,0x39,0x5d, +0x47,0x31,0x23,0x51,0xba,0x2e,0xcb,0xd3,0x5b,0x6b,0x3e,0x5c, +0xa6,0x96,0xfb,0x85,0x3c,0xe6,0x3f,0x6a,0xb1,0xbd,0x33,0x0a, +0xee,0xcc,0x07,0xce,0xaa,0x9e,0x0c,0xd9,0x19,0x77,0x8e,0xb1, +0x98,0xaf,0xaa,0x45,0x0d,0xd7,0xd9,0x9d,0x19,0x7d,0xcc,0x6b, +0xf0,0xd1,0x4a,0xf8,0x29,0x9e,0xbe,0xa5,0x27,0xc6,0x6e,0x2a, +0xbf,0x1f,0xa3,0x72,0x1f,0x96,0x59,0x93,0xab,0xcc,0x0f,0xe5, +0x63,0xc7,0xa2,0xf7,0x78,0x9d,0x8a,0xde,0x19,0xee,0x5b,0x1e, +0xaf,0xca,0x47,0xcf,0x3b,0x5a,0x78,0x64,0xa4,0x43,0x59,0x52, +0xaf,0xf0,0x6c,0x60,0x19,0xa1,0x0c,0xcb,0xa3,0x7a,0xa2,0xc5, +0x14,0xbd,0x5f,0x4f,0xae,0xdf,0xb5,0x1e,0xed,0xc2,0xb8,0xdf, +0xc1,0x32,0xf0,0x7e,0x88,0x4b,0x65,0x21,0xd8,0x75,0xc0,0xf5, +0x27,0xfc,0xce,0xe3,0xa0,0x6d,0x0c,0xbb,0x0b,0xa1,0x69,0x59, +0xc4,0xd1,0x55,0x05,0x0b,0xb4,0x6d,0x26,0xae,0x30,0x69,0x38, +0xeb,0x95,0x29,0xbd,0xc9,0x61,0xd0,0x72,0xf0,0xfc,0x19,0x53, +0x44,0xdb,0xcc,0x4a,0xa5,0x72,0xfd,0xe7,0x44,0xcc,0x94,0xc1, +0x2c,0x97,0x17,0x7c,0xe7,0x61,0x39,0xab,0x41,0xc2,0xab,0x14, +0xbb,0x53,0xfd,0xd0,0x1d,0xd9,0xe1,0x8c,0x24,0xf8,0xbb,0x35, +0x8e,0x77,0xc4,0xc0,0xc6,0xe6,0x47,0xc7,0x18,0x3e,0x8f,0xe8, +0x87,0xb2,0xec,0x59,0x02,0xcc,0xd2,0x39,0x8c,0x17,0x03,0x1a, +0x3b,0xf1,0x77,0x1d,0x34,0x96,0x11,0x01,0x00,0x37,0x60,0xc0, +0x34,0x8f,0x0f,0xf0,0xb5,0x68,0x1c,0xad,0xe7,0xe8,0xcd,0x25, +0xe8,0xe7,0xce,0x37,0x9b,0x78,0x84,0xc6,0xf2,0xec,0x97,0x3d, +0xdc,0x9d,0xaf,0xf1,0xbd,0xeb,0x2f,0x8f,0xd6,0xd3,0x63,0x2c, +0x68,0xa7,0x4c,0x70,0xcf,0x75,0x4f,0x26,0x23,0x44,0xf7,0xea, +0x72,0xbc,0x6d,0x6d,0x91,0xbf,0x8b,0x16,0x01,0xc5,0xe4,0x89, +0xfb,0x91,0xa5,0xca,0x93,0xc4,0xe3,0x32,0xd5,0xe3,0x0b,0x96, +0x94,0x27,0xc9,0x4b,0x83,0x48,0x8f,0xe7,0x41,0x6d,0x0e,0x8a, +0xc9,0xd3,0x1d,0x1d,0xfa,0x28,0x76,0x67,0x10,0x54,0xa5,0xc5, +0x5a,0x97,0x90,0xa7,0xe2,0xf7,0xba,0x5d,0xf7,0xbd,0x72,0x1e, +0x1e,0xce,0x02,0x3e,0xde,0x79,0xda,0x0c,0x8d,0x4f,0x4b,0xdc, +0x19,0xd4,0x21,0xd5,0xee,0x8b,0xea,0x7a,0x87,0x16,0xad,0x1e, +0x29,0xa6,0x09,0x25,0x7d,0x64,0x09,0xf0,0x5d,0xe5,0xb1,0x59, +0xbe,0xd7,0x1d,0x86,0x3b,0x45,0x79,0x4f,0xf7,0xbc,0xb9,0xfd, +0x4b,0x70,0x21,0xe6,0x86,0xcf,0x95,0x57,0x6e,0xdc,0x95,0xec, +0xd6,0xe8,0x5a,0x2e,0xe2,0x31,0xf1,0xc6,0x3f,0xb0,0xa0,0xff, +0xfd,0xfd,0xfd,0x52,0xef,0x00,0x5c,0x7b,0x92,0x9d,0xd1,0xfc, +0x65,0xfd,0xbe,0x79,0x11,0x1d,0x92,0x9e,0x65,0x05,0xc1,0xa3, +0xb1,0x15,0xe2,0xbf,0x07,0xba,0xcd,0xbd,0xe8,0x62,0xcf,0x93, +0x4b,0xa5,0xb4,0x97,0xb5,0x2c,0x25,0xc6,0x15,0xb9,0x85,0x15, +0xf8,0x1d,0x21,0xd9,0xf3,0xe7,0x6e,0xc3,0xae,0x55,0xd0,0x6a, +0x94,0xcc,0x14,0xf0,0x7b,0x4f,0x6e,0xfd,0xf5,0x80,0x4b,0x83, +0x0f,0xac,0xac,0xfb,0xce,0xec,0x69,0xae,0x9b,0x4e,0x3f,0x06, +0x4a,0xb9,0xf8,0xcc,0xf0,0xbb,0x5f,0x59,0x7c,0x0d,0x89,0xc0, +0xb3,0x01,0x39,0x8f,0xda,0x50,0x9d,0xcf,0xb3,0xc0,0xb7,0x12, +0xcf,0xaa,0x17,0x7a,0xdf,0xbb,0xe1,0xab,0x73,0x6a,0xf2,0xf6, +0xb9,0x5c,0x4a,0xed,0xe8,0x3d,0x80,0x7b,0xce,0x3a,0xb7,0x7b, +0x38,0x3e,0x84,0x5f,0xb5,0x43,0xb2,0x73,0xf8,0x9d,0x19,0xb9, +0x88,0x9e,0xee,0xfb,0x1a,0xe0,0x40,0xb7,0xf6,0x30,0x03,0x1a, +0xb6,0x9e,0x28,0x87,0xcb,0x32,0x8b,0x3a,0x32,0x8b,0xdf,0x63, +0x07,0xc6,0xb1,0xbc,0xc7,0x9a,0xa5,0xda,0x7b,0x63,0xa9,0x1e, +0x81,0x3f,0x5a,0x65,0xbb,0xb2,0x3d,0x3a,0x3b,0xb9,0x34,0xd9, +0xe6,0x5c,0x7e,0x1c,0xb1,0x42,0x16,0xf4,0x5e,0x16,0xcf,0x98, +0x5c,0xe4,0x59,0x0d,0x33,0xea,0x9a,0xb5,0x3c,0x2c,0xa0,0x07, +0x56,0xb8,0x72,0xd5,0x93,0xa3,0x93,0x1f,0xe5,0x75,0x1d,0xab, +0x63,0xc0,0xe4,0x26,0xfe,0x8e,0xb9,0x75,0x04,0x24,0x69,0xbb, +0xeb,0x17,0xe0,0xb4,0x57,0xaf,0x77,0xc2,0x8b,0x8f,0x0e,0xe3, +0xda,0x9e,0x92,0x7d,0x95,0x98,0x99,0x9c,0x67,0xba,0x97,0xf0, +0x0f,0xea,0xfc,0xd3,0x9a,0xa5,0xc5,0x65,0xe0,0x85,0xd4,0xa2, +0x3b,0x00,0xde,0xb9,0x08,0x7e,0x3e,0xb3,0xf8,0xfa,0x0e,0x77, +0x16,0x97,0x67,0x00,0x03,0xd9,0xba,0x00,0x58,0x86,0xcc,0x22, +0xad,0x83,0x5f,0x39,0x5c,0x42,0x1e,0x42,0x9b,0x26,0xb9,0xb3, +0xaf,0xc5,0x7a,0x09,0xe0,0xeb,0x47,0x76,0x63,0x86,0xce,0xf2, +0x59,0x88,0x67,0x76,0x56,0xf7,0x5f,0x43,0xdc,0xf2,0xc4,0xb9, +0x2c,0x9e,0xdf,0x91,0x8a,0xe7,0x59,0xe1,0xc7,0xdd,0x43,0xb4, +0xb0,0x35,0x26,0x90,0xa4,0xb3,0x98,0x4d,0x4d,0x32,0x7d,0xc1, +0x83,0x07,0x78,0x26,0x29,0xd6,0xe3,0xfd,0xf1,0xb9,0xe6,0xd6, +0x26,0x1e,0xd7,0x8a,0xad,0x91,0x81,0x67,0xb1,0x17,0x1c,0x11, +0xc9,0x57,0x10,0xfc,0x02,0xcb,0x1f,0x05,0xc8,0x92,0xf5,0x3b, +0x70,0x39,0xa8,0x3d,0x8f,0x43,0xb1,0x91,0xc3,0x54,0x06,0x3d, +0x10,0x68,0xd5,0x18,0xd7,0x2f,0xe8,0xff,0x37,0x7e,0x87,0x25, +0x15,0x7c,0x32,0x81,0x45,0xc7,0x2c,0xd3,0xcb,0x25,0x26,0x80, +0xfb,0xe3,0x41,0xae,0xad,0xe8,0x35,0x12,0x98,0x2e,0xc7,0xd1, +0x3a,0x4e,0x61,0x99,0x47,0xff,0x2c,0x0e,0x0f,0x00,0x54,0x5b, +0xc1,0xaf,0x77,0x50,0x23,0xca,0x7d,0x47,0xc6,0xb5,0x0a,0x3d, +0xfe,0x82,0x16,0xa7,0xf8,0x1d,0xce,0xc3,0xf8,0xde,0xce,0x57, +0x72,0xc4,0xc2,0x86,0x68,0xf7,0x29,0x2b,0xc0,0x5b,0xdf,0x02, +0x7a,0x95,0x71,0x0d,0xe1,0xa3,0x47,0xf1,0xbb,0x93,0x21,0x7a, +0xd6,0x3b,0x12,0x35,0x35,0xec,0xfc,0xf5,0x19,0x39,0xc7,0xee, +0x76,0x43,0xde,0x04,0x76,0xa7,0xc7,0x6b,0x1d,0xc8,0x15,0x2d, +0x2f,0x86,0x1a,0x67,0x59,0x6e,0x51,0xb3,0x4d,0x1e,0xee,0x60, +0xf3,0x50,0x15,0x30,0x5e,0xe1,0xf7,0x55,0xd9,0xba,0x92,0x2c, +0x2e,0x53,0x59,0xba,0xc6,0xb3,0xc0,0x57,0xd2,0x72,0x33,0xf7, +0xf0,0xb9,0xab,0xe9,0x0b,0x5e,0xe3,0xbe,0xb7,0x56,0xf6,0x44, +0xb8,0x2c,0x17,0x76,0x8e,0x59,0x79,0xc4,0xf1,0xe7,0x74,0xad, +0xea,0xc3,0xbd,0x14,0xb6,0xaa,0x27,0x5d,0x87,0xe9,0xa2,0x9e, +0x43,0x60,0x2b,0x82,0x92,0x80,0xdd,0x05,0xf7,0x8a,0x92,0x62, +0x32,0xf5,0xa0,0xf8,0x1d,0x68,0x37,0x4e,0x5e,0xb6,0xe0,0x41, +0x49,0x5e,0x2f,0x61,0x9f,0x64,0xee,0x99,0xd3,0x22,0xdb,0xf0, +0x28,0x6f,0x79,0xd6,0x42,0xd0,0x52,0xd6,0x24,0x78,0x30,0xd4, +0xec,0x2e,0x34,0x3b,0x79,0xbc,0x15,0x7c,0xe2,0x0a,0x88,0x07, +0x5a,0x8c,0xc7,0xd7,0x50,0xea,0x19,0x6f,0x4e,0x11,0x55,0x1f, +0x27,0x13,0x9a,0xea,0xaa,0x0e,0xcf,0x03,0xfe,0x47,0xb9,0x2d, +0xa1,0x25,0x7c,0x89,0x5c,0xcf,0x3d,0x26,0x76,0x6c,0x2e,0x99, +0xcd,0xd0,0xfd,0x01,0xaa,0xc5,0x73,0xe8,0xf7,0x1e,0xb3,0xb1, +0xcc,0x9b,0xf0,0xf4,0x70,0x8d,0x6b,0x46,0xe6,0x81,0xa4,0xf1, +0xa3,0x33,0x5a,0x64,0x83,0xba,0x0f,0x3d,0xb5,0x8c,0x1e,0xff, +0x2f,0x86,0xc7,0x9f,0x87,0x39,0x2d,0xdd,0xeb,0x95,0x32,0x74, +0xbd,0x99,0x5f,0x3c,0xcf,0xe7,0xf1,0x77,0x33,0x9f,0x74,0x87, +0xa9,0x78,0x46,0xee,0xff,0x20,0xb3,0x97,0xeb,0xce,0xa2,0x78, +0xb2,0xc3,0x5e,0xeb,0x4c,0xbc,0x46,0xcc,0xd7,0xd7,0x9d,0xb8, +0x57,0x4a,0xa5,0x96,0xee,0xf7,0x14,0xa7,0x77,0x09,0x9d,0x2b, +0x61,0x46,0xd8,0xca,0x37,0xee,0xa9,0x83,0xab,0xf3,0xbc,0x25, +0xcd,0xd3,0xe2,0x08,0xbf,0x63,0xce,0xf8,0xca,0x3b,0xef,0x64, +0x78,0xb2,0xfd,0x2b,0xed,0x3c,0xb8,0xe0,0xa1,0x2e,0xaf,0x7a, +0xec,0xc7,0x62,0x3a,0xd6,0x2b,0x66,0xf4,0x3e,0xb8,0x31,0xaf, +0x24,0xcc,0x25,0x57,0xe7,0x78,0xe3,0xee,0xa1,0x98,0x4e,0x2d, +0xce,0x8b,0xfa,0x2a,0x06,0x9e,0x8d,0x65,0xbd,0x66,0x72,0xed, +0x71,0xb7,0x28,0x02,0xf0,0xd8,0x8e,0x7c,0xbe,0x52,0x4f,0xf0, +0x5a,0xf1,0xe3,0x59,0x73,0xa6,0x69,0x6d,0xef,0xd5,0x67,0xc5, +0x3c,0x14,0x5a,0x62,0xb5,0xc9,0xc3,0x62,0x7a,0x83,0x79,0xba, +0xb7,0xf9,0xa8,0x39,0xfc,0x8e,0xd3,0xed,0x12,0x72,0x14,0xa0, +0x67,0x40,0x72,0x8b,0x67,0xc6,0x4b,0xc9,0xc8,0xdc,0x2b,0xee, +0xa3,0x3f,0xa2,0x99,0x4a,0xe8,0x08,0x4e,0x11,0x49,0xd7,0x1e, +0xd2,0x23,0xb9,0x41,0xaf,0x58,0xa3,0x44,0x8c,0x92,0xff,0x24, +0x9e,0xd1,0x25,0x5a,0xd5,0xa2,0x84,0x47,0x28,0x92,0xa3,0xf3, +0xa1,0xaa,0xdf,0x2b,0xf7,0xee,0xe5,0xb6,0xeb,0x20,0x5f,0xdf, +0xb6,0x1f,0x54,0x38,0xea,0x3a,0xc9,0x57,0x06,0x9d,0xe3,0x91, +0x33,0xfc,0x2f,0xc8,0x69,0x26,0xf3,0x8d,0x98,0x05,0xd1,0x29, +0x0f,0x9f,0x0b,0x32,0x7c,0x92,0x47,0xd3,0xf1,0x3c,0xe7,0x96, +0xe3,0x8a,0x70,0x1d,0xc2,0xa5,0xea,0x9e,0xcc,0x93,0x89,0xdf, +0x1d,0xd9,0x0d,0xeb,0xc1,0xfe,0x36,0xe0,0xb3,0x83,0xaf,0xad, +0x95,0xb8,0x87,0xcb,0x3d,0x57,0xb4,0xdd,0x0d,0x9d,0x92,0x8d, +0x11,0x33,0xb5,0xcc,0x0d,0x38,0x78,0x37,0x46,0x3e,0xe6,0x3a, +0xc4,0xd6,0x4d,0x21,0x2e,0x4c,0xe7,0xf9,0x07,0xb6,0xe2,0x33, +0x1e,0x3a,0x5c,0xd3,0x3a,0x65,0xf4,0xb5,0x83,0xcc,0x7a,0xb3, +0x95,0xca,0x89,0xae,0x15,0x7c,0xed,0x93,0x16,0x2f,0x5d,0x80, +0xed,0x4c,0x2f,0x2d,0xd2,0xf4,0x8a,0xc9,0xf3,0x99,0xb7,0xcd, +0xd6,0x88,0x68,0xb9,0x36,0x58,0xc1,0x8b,0x9e,0xf9,0xf3,0xf6, +0x4e,0x4e,0x83,0xd7,0xd3,0xa1,0x89,0x54,0xe0,0x99,0xcf,0x57, +0x50,0x9d,0x77,0x5d,0x63,0x6b,0xe0,0xf4,0xb8,0xd0,0xd7,0x73, +0x57,0xfa,0x16,0x97,0x0f,0x6d,0x8d,0x9a,0xf9,0x51,0x7e,0xc1, +0x15,0x27,0x5f,0xf1,0x52,0xc8,0x79,0xe5,0x26,0x34,0xda,0x5d, +0x5d,0xa3,0xef,0x05,0x7d,0x73,0x3c,0xb9,0x30,0x77,0xa4,0x24, +0xe2,0x7a,0x32,0xe8,0x10,0x57,0xdc,0xdf,0xd3,0xe5,0x27,0xff, +0xbf,0x8f,0x91,0x8a,0x56,0x7e,0x3f,0x59,0x0f,0x3e,0xad,0x2f, +0x5d,0x13,0x67,0x3e,0xf9,0x4e,0x65,0x31,0x69,0xd0,0xee,0x00, +0x4a,0xc5,0xd7,0xaa,0x82,0x83,0x65,0xaf,0xe3,0xc0,0x47,0xc7, +0x06,0xd5,0xae,0xeb,0x71,0xe4,0x6f,0xdc,0x1f,0x96,0x4a,0x59, +0xd5,0x60,0xc1,0xac,0x1f,0xe2,0x59,0x83,0x54,0xbe,0xa6,0xe8, +0x88,0x2b,0xc1,0x23,0x49,0x7a,0x0c,0xcf,0x63,0x9a,0x33,0xfc, +0xfa,0x19,0x9e,0x57,0x90,0x3c,0x2b,0x26,0x8a,0x24,0xcc,0xc5, +0xf6,0xa7,0x01,0xe5,0xd9,0xea,0xd6,0x2c,0x4f,0xfe,0x85,0xdd, +0x15,0xff,0x15,0x5c,0xea,0x74,0x45,0x7b,0x56,0x4f,0x14,0xe9, +0xb7,0xd3,0xf0,0xe8,0xce,0x79,0xb4,0x59,0x01,0xef,0x29,0xd8, +0x2d,0x91,0x7c,0x25,0x8b,0x50,0xf4,0x2c,0x84,0x6e,0x01,0x59, +0x4c,0xa8,0xd9,0xcd,0xbf,0xdc,0x39,0x8e,0xe2,0x3e,0x27,0x5b, +0xbf,0x00,0xf8,0xee,0x6a,0x6b,0x9a,0x3d,0x6b,0x18,0x59,0x9c, +0x01,0x6c,0xf1,0xa7,0xe1,0x44,0xdd,0x59,0x6c,0x5e,0xe3,0x0e, +0xfe,0x72,0xdd,0xd6,0xd2,0x2b,0x76,0xa7,0x7c,0xe5,0xe0,0x43, +0xae,0x17,0x0a,0x75,0x5b,0x2d,0x01,0xa7,0x74,0xee,0x0f,0x79, +0xee,0x7d,0xe9,0xf0,0xc5,0xf3,0x8c,0x49,0x9e,0x67,0xed,0xca, +0x53,0x57,0x6f,0x3c,0xe2,0xb3,0xc4,0x7b,0xad,0xe4,0x2e,0x71, +0xbf,0x59,0xcf,0xb1,0xa4,0xea,0x39,0xb5,0xc7,0xe4,0x7b,0x75, +0xbd,0xfe,0x94,0x55,0x7d,0x7c,0xdd,0x97,0xe0,0x5e,0x9b,0xe9, +0xc9,0x2d,0x5e,0xd7,0xf2,0x70,0x25,0x39,0x89,0xdb,0x98,0x92, +0x5e,0x56,0xa4,0xd7,0x1d,0xc2,0x98,0xa2,0xd2,0x6d,0x7b,0x1e, +0x1f,0xd3,0x78,0xae,0x44,0xe9,0xad,0x9f,0x76,0x67,0xf2,0x69, +0xab,0x4d,0x56,0xc1,0xd2,0xad,0xe2,0x9e,0x3a,0xf3,0xb8,0x23, +0x75,0xcb,0xc7,0xfd,0x20,0x2f,0x1e,0xd5,0xbc,0xf8,0x5e,0xa0, +0x5f,0x94,0x7b,0xe4,0x47,0x2c,0x82,0xfc,0xc8,0x7d,0x5b,0x27, +0xb7,0x0b,0x0f,0xdc,0x56,0xc7,0x4d,0x2f,0xd7,0x09,0xc8,0x42, +0x61,0xe9,0x12,0x0c,0xad,0x9a,0xc8,0xbd,0x72,0xd8,0x65,0x1c, +0xc5,0x43,0x9e,0x02,0xb8,0x2c,0x69,0xf9,0x7f,0x76,0xaf,0xf1, +0x2a,0x97,0xa7,0x1c,0xbe,0x32,0x22,0x45,0x97,0xcb,0xa2,0x2c, +0xd9,0x03,0xbe,0x6a,0xee,0x21,0x97,0xb3,0xbf,0xb8,0xff,0xc0, +0xee,0xc0,0xb3,0xb5,0x75,0x84,0x6b,0xdf,0x28,0x44,0x05,0xf9, +0xae,0xfd,0xba,0x87,0x9d,0xaa,0xb7,0x71,0xf2,0x58,0xea,0x57, +0x57,0x74,0x09,0x2d,0x52,0xce,0x23,0x43,0x2e,0x6d,0x7d,0x53, +0xf1,0x8c,0x13,0x5b,0xdd,0xae,0xcb,0x19,0xb3,0x45,0x0f,0xf5, +0xde,0x8a,0x66,0xbb,0xac,0x50,0x13,0x71,0x4d,0x8e,0x76,0xe7, +0x5c,0xcb,0x36,0xb2,0x2c,0xbc,0x1e,0x63,0x04,0xe3,0x8f,0xe5, +0x66,0xfd,0xb8,0xa4,0xb0,0xfe,0xce,0x79,0xd6,0x99,0xe7,0x16, +0xcb,0x01,0x5d,0xe5,0x7d,0x68,0xab,0x5d,0x18,0xac,0xa7,0x3c, +0x77,0x9a,0xcb,0x00,0xbb,0x7b,0x5c,0xc7,0xe8,0x19,0x3b,0xe8, +0x90,0x54,0x9e,0x1b,0xfb,0x1d,0xbd,0x9b,0x80,0xbd,0x16,0x0d, +0xb1,0x75,0x39,0xc1,0x1c,0x6b,0xa9,0x64,0x4e,0xcc,0xcb,0x42, +0x51,0x4d,0x9b,0x3c,0x63,0x36,0x2b,0xdf,0x2b,0x8f,0xe4,0x9d, +0xef,0xa7,0xc5,0x32,0x87,0x39,0xfa,0x5a,0x4f,0x9e,0x25,0xf6, +0xca,0x14,0x3c,0xd4,0x6b,0x49,0x7a,0x6e,0xf1,0xba,0xfe,0x4d, +0x05,0x33,0x7a,0x70,0x7a,0xdf,0x93,0x7a,0x34,0xbf,0xfa,0x2c, +0xeb,0x0a,0xdc,0xfd,0x17,0xd3,0x11,0x87,0x4a,0xd5,0x7b,0x5a, +0x66,0xfa,0x22,0x5f,0xf5,0x97,0xc5,0xf3,0x90,0x57,0xc0,0x7d, +0xe7,0x10,0xc3,0x30,0xbe,0x0b,0x82,0x55,0xf5,0x67,0xdf,0x9c, +0xf7,0xae,0x68,0x9e,0x30,0x5f,0x5f,0x28,0x3f,0x6e,0xd5,0x0c, +0x5f,0x35,0x09,0x9e,0x73,0xdd,0xf0,0xe8,0xde,0x42,0xf0,0x1e, +0xe3,0x9e,0xfd,0x7a,0x8d,0xf4,0x62,0x77,0x71,0xa2,0x5d,0x47, +0x9e,0x76,0x77,0xa1,0xd8,0x93,0x24,0xf9,0x4f,0x8f,0xc2,0x9e, +0xf4,0xc4,0xcc,0xb3,0x6b,0x88,0xe2,0xf9,0x0d,0x0f,0x3d,0x73, +0x3d,0xcf,0x7c,0x79,0x47,0xc5,0x92,0x57,0x8e,0xf0,0xff,0xb7, +0xff,0xf4,0xe7,0x84,0x9e,0xe5,0x89,0x3e,0xc3,0x84,0x09,0x7c, +0x37,0xc7,0x96,0xc2,0x42,0x21,0x46,0xb8,0x6a,0xa8,0x6b,0x68, +0x62,0x78,0xcb,0xd0,0xd9,0xd0,0xc7,0x30,0xc8,0xf0,0xae,0x61, +0x94,0x61,0x95,0x61,0xbd,0x61,0x93,0xe1,0xba,0xe1,0x8e,0xa1, +0xc0,0x38,0xc0,0x18,0x2f,0x0e,0x11,0xbf,0x13,0xcf,0xfb,0xcc, +0xf1,0xb9,0x23,0xf5,0x92,0x62,0x4c,0x16,0x53,0xb8,0xd9,0x64, +0x9e,0xe0,0x1b,0xe4,0x5b,0xdf,0xf7,0xb3,0x32,0xcd,0xcb,0x9c, +0x90,0x07,0xc8,0x0f,0x95,0x70,0xbf,0x1a,0x7e,0x75,0xfd,0xe6, +0xf8,0xfb,0xfa,0x7f,0xe8,0xbf,0xc9,0xff,0x96,0xbf,0x6a,0x31, +0x5a,0xda,0x5a,0x66,0x58,0x36,0x59,0x52,0x02,0x7c,0x03,0xea, +0x05,0x4c,0x0b,0x88,0x0f,0xf4,0x0d,0xec,0x15,0xb8,0x20,0xf0, +0x44,0x59,0x9f,0xb2,0x0d,0xca,0x4e,0x28,0xbb,0xbe,0xec,0xa9, +0x20,0x53,0x10,0xdb,0x4d,0xf1,0x25,0x41,0x36,0xd6,0x17,0x7c, +0x8d,0x4d,0xf0,0xdd,0x14,0x9f,0x7f,0xb9,0xf2,0x8d,0xcd,0xf0, +0xdd,0xdc,0xa5,0x1a,0x7b,0xb8,0xa8,0xb1,0xa7,0x2b,0xde,0xd8, +0x07,0xdf,0x7d,0x71,0x7e,0x94,0x2b,0xd7,0x38,0x06,0xba,0xdc, +0xd7,0x58,0x1f,0x47,0x6d,0xf1,0xe9,0x8a,0xb3,0x3d,0xf0,0xdd, +0xd3,0x95,0x8a,0x5a,0x99,0xa8,0x95,0x83,0x1a,0xb9,0x42,0x90, +0xf1,0x25,0xb4,0x7b,0xd9,0x15,0x63,0x7c,0x05,0xdf,0x0d,0xf1, +0x69,0x8c,0x1a,0x4d,0x84,0x50,0x63,0x53,0x1c,0xff,0xcb,0xb5, +0xca,0xd8,0x0c,0xdf,0x2d,0xf0,0x69,0x2b,0x54,0x40,0xeb,0x48, +0x63,0x6f,0x7c,0xfa,0x08,0x21,0xe8,0x61,0x06,0xc6,0xc9,0x31, +0x8e,0x46,0xfd,0x31,0xae,0x79,0x82,0xd1,0x38,0x04,0x67,0x87, +0x0a,0x76,0x7e,0x24,0xe3,0x28,0xa4,0xd4,0x73,0x06,0xf4,0x92, +0xc3,0xcb,0x0d,0xac,0x64,0x5a,0x12,0x78,0xc9,0x18,0x37,0x07, +0xe3,0xe5,0xe0,0x4c,0x08,0xfa,0x97,0xf5,0x96,0x35,0x8d,0xef, +0xe3,0x7b,0x94,0xf0,0xba,0x71,0x34,0x3e,0x63,0xf0,0x19,0x2b, +0xbc,0x8e,0x76,0x5a,0x4f,0xac,0x0c,0x04,0x06,0xb9,0xc0,0x20, +0x17,0xb8,0xe6,0xa0,0x97,0x7c,0x63,0x13,0x1c,0x37,0xc5,0x87, +0x53,0x08,0xdf,0xcd,0x01,0x61,0x0b,0x1c,0xf7,0x14,0xec,0x80, +0x3e,0x17,0xbd,0xd9,0xd1,0x9b,0x1d,0xbd,0xd9,0xd1,0x9b,0x1d, +0xfd,0xb4,0x05,0xbf,0x1b,0x01,0x51,0x3e,0xa3,0x20,0xfc,0x24, +0xb6,0x07,0x87,0xb6,0x4f,0x01,0xdb,0x79,0x2d,0x5f,0x58,0xe5, +0x4a,0x37,0xd6,0x72,0x15,0x60,0x14,0x0a,0x3a,0x51,0x8c,0x54, +0x88,0x91,0x54,0x8c,0x70,0x17,0xbd,0xdf,0x45,0xef,0x2a,0xfa, +0xc8,0x07,0x95,0xdd,0x73,0x71,0x07,0x23,0x51,0xf4,0x96,0x03, +0x3a,0xdd,0xe5,0x7b,0xd9,0xb0,0xfd,0x0b,0xb4,0xdd,0xd4,0xf2, +0xf9,0xee,0x38,0x2a,0x1f,0x45,0xdf,0x79,0x10,0x23,0x64,0xea, +0xbd,0x16,0x72,0x2a,0x34,0x47,0x6f,0x80,0x4a,0x9f,0xb7,0x3b, +0xe8,0x31,0x05,0xbd,0xe5,0xb2,0x79,0xe3,0x3b,0xc2,0x94,0xdc, +0x6d,0x90,0xed,0x1c,0xd7,0xbf,0xd8,0xce,0x4b,0xde,0x3b,0x0f, +0x4a,0x42,0x75,0x7d,0xe7,0xbd,0x1c,0xa1,0x2f,0xdf,0xef,0xe2, +0x25,0x61,0x12,0xdb,0x81,0x0f,0xbf,0xe7,0x08,0xd5,0x30,0x7a, +0x2a,0xa8,0x98,0x0a,0xfc,0x0a,0x80,0x5f,0x1e,0xe7,0x33,0x46, +0xc9,0xa6,0xae,0x33,0x1c,0x9a,0x66,0xf8,0x66,0x7c,0xd6,0x02, +0x50,0xf6,0x06,0x2d,0x86,0x80,0x17,0x30,0x37,0xfa,0x9e,0x38, +0x6c,0x9f,0x95,0x00,0xb1,0x07,0x3e,0x7c,0xd7,0x38,0xbe,0x23, +0x51,0x80,0x08,0x3e,0xd4,0xa1,0x62,0x7b,0x35,0xc8,0xe2,0x60, +0xfc,0x2e,0xda,0x19,0x2b,0x07,0xfe,0x66,0x57,0x78,0xb6,0x8c, +0x06,0xab,0x30,0x12,0xc3,0xbd,0x2d,0x46,0xc7,0x39,0xe0,0x5b, +0x00,0x7c,0x73,0x81,0x6f,0x16,0xf0,0x55,0x4b,0xec,0xd9,0x26, +0xc1,0x2a,0x33,0x5c,0x66,0x83,0x73,0x30,0x37,0x80,0x3b,0x1f, +0x70,0xdf,0x01,0xef,0xaa,0x80,0x97,0xcd,0x38,0x66,0x9a,0xed, +0x1f,0xc4,0x5b,0x69,0xb0,0x69,0xbb,0x03,0x06,0xf0,0x9d,0x77, +0x7a,0xa3,0xdd,0x0b,0xe8,0xe1,0x16,0xa8,0x91,0x2b,0x8c,0xc1, +0xaf,0x8f,0xf8,0xfe,0x39,0x15,0x40,0x0d,0xb6,0xd7,0xde,0x06, +0xf4,0x3a,0x0f,0x30,0x7d,0xad,0xf3,0x55,0x1e,0x28,0x72,0x1d, +0x14,0xf1,0xc3,0x08,0x79,0xa0,0x4a,0xb6,0xce,0x5b,0x27,0x75, +0xde,0xba,0x00,0xaa,0x64,0x61,0xc4,0x03,0xa0,0x0c,0x9b,0xed, +0x28,0xcc,0x4f,0x94,0xd8,0xd5,0x95,0x2a,0x76,0x03,0x14,0xdd, +0xf1,0x79,0x1b,0xc7,0x3d,0xf0,0xe9,0xe9,0x8a,0xc1,0x9c,0xc5, +0x82,0x0b,0xa2,0x30,0x6f,0x51,0xfa,0xbc,0x85,0xe8,0xfb,0x66, +0xb0,0x9d,0x94,0x6a,0x62,0xde,0xec,0x98,0xb7,0x10,0xcc,0x5b, +0x80,0x10,0xe6,0xd9,0x2d,0xf1,0x23,0xfc,0x9a,0x04,0x48,0x67, +0x71,0x9e,0xcc,0x67,0x7b,0xe8,0x00,0xc2,0x1c,0xf0,0x24,0xc3, +0x3f,0x13,0x50,0xe6,0x03,0xca,0x7c,0x4e,0x83,0x26,0x9c,0x0e, +0x99,0x80,0x50,0x05,0x84,0x99,0x80,0x2e,0x1b,0x90,0xa9,0x98, +0xaf,0x0a,0x9e,0x9d,0xca,0xfa,0xba,0x72,0x31,0x1f,0xb9,0xfa, +0x6e,0x17,0xb9,0x98,0x8f,0x5c,0xe0,0xcf,0xf6,0x52,0xd3,0xf6, +0xad,0xca,0xd7,0xf7,0xac,0x92,0x84,0x55,0x42,0x00,0xe7,0xfa, +0xfa,0x98,0x93,0xc6,0x82,0x64,0xfc,0x17,0x3e,0xcd,0x41,0x0b, +0x8d,0xc2,0x76,0x7d,0xa7,0x1d,0x3b,0xa8,0x6c,0x07,0x95,0xed, +0xa0,0xb2,0x1d,0x54,0x66,0x7b,0xcb,0xd9,0x3d,0x5c,0xc0,0xf6, +0xd5,0xd0,0x66,0x3d,0x97,0xe3,0x54,0x1a,0xe7,0x53,0xc0,0x7b, +0x1b,0xd4,0xa4,0x25,0xb8,0x3e,0xea,0x7f,0xe2,0xfa,0x20,0x1d, +0xa7,0xeb,0x6c,0x7f,0x3a,0xf4,0x96,0x64,0x64,0xfb,0x95,0x14, +0xf1,0x52,0x80,0xbe,0x73,0x59,0x80,0xbe,0x1f,0x93,0xc4,0x77, +0x18,0xe9,0xcb,0xf7,0xcf,0xca,0xe7,0x14,0xd2,0xa8,0xf3,0xff, +0x94,0xf7,0x25,0xf0,0x51,0x55,0x67,0xdf,0x67,0x99,0xc9,0x32, +0x59,0x09,0x43,0x48,0x42,0x08,0x81,0x04,0x08,0x10,0xb6,0x84, +0x7d,0xdf,0x41,0x44,0x36,0x01,0x59,0x45,0x50,0x01,0x15,0x41, +0x11,0x97,0x5a,0x17,0x54,0x6c,0xad,0x75,0xab,0xb5,0xd6,0x5a, +0x6a,0xad,0xa5,0xd6,0x2a,0xb5,0xb4,0xa2,0xb5,0xd4,0x0a,0xc5, +0xd4,0x62,0x6b,0x53,0x0b,0x56,0x53,0x2a,0xbe,0x36,0xa2,0xa1, +0x76,0xaa,0x04,0x71,0x1a,0x08,0x9a,0xef,0x7f,0xfe,0xf7,0xcc, +0x9d,0x3b,0x93,0x49,0x08,0x2e,0xef,0xfb,0x7e,0xdf,0x97,0xfb, +0x3b,0xcf,0xdc,0xdc,0xb9,0x73,0xef,0xb9,0xcf,0xf3,0x7f,0x96, +0x73,0xee,0x73,0xce,0x09,0x8b,0x02,0x5c,0x29,0xec,0xce,0xc8, +0xb8,0x09,0xfc,0xbf,0xc9,0xcc,0xa1,0x05,0xdb,0x34,0xc8,0xa0, +0x02,0xfa,0x32,0x1a,0x5c,0x19,0x27,0x92,0x68,0x07,0xe6,0x03, +0x31,0xc0,0x99,0xa9,0xbb,0xe5,0x52,0x11,0xee,0x5a,0x86,0xbb, +0x96,0xe1,0xae,0x65,0x71,0x5c,0x2a,0xb2,0x77,0x83,0x7e,0x40, +0xc6,0x25,0xb6,0xce,0x66,0xa6,0x94,0x83,0x56,0x0e,0x01,0x48, +0xf9,0x28,0xe4,0xf0,0x11,0xee,0xd6,0x00,0x29,0x37,0x52,0x16, +0x23,0x70,0xe7,0x91,0x38,0x6e,0x64,0x32,0x16,0xfb,0xe3,0x50, +0x8b,0xf9,0x4d,0x6f,0xd9,0x19,0x90,0x8a,0x5a,0x90,0x4b,0xd0, +0xce,0xf9,0x57,0xab,0x17,0x83,0x93,0xd1,0xf9,0x4f,0x42,0x76, +0xbe,0xb0,0x90,0x45,0x45,0x2d,0xe7,0xaf,0x6b,0x4d,0x5e,0xe1, +0x04,0xf2,0xda,0xf5,0x99,0xe4,0xd5,0xd3,0xce,0xcc,0x83,0xe7, +0x47,0x74,0xbd,0x0c,0xde,0xf7,0x52,0xa2,0xbf,0x04,0xe8,0xaf, +0xa0,0x9d,0xe8,0x0b,0x5d,0xeb,0xdf,0xf4,0x16,0xd1,0x5e,0x09, +0x5e,0x0c,0x82,0xfe,0x0d,0x35,0x76,0x1f,0x3c,0x18,0x89,0xef, +0x46,0x83,0x07,0x63,0xc1,0xfd,0xf1,0xa8,0xcd,0x34,0xca,0xbc, +0xd6,0x58,0x61,0x5a,0x83,0xa8,0xcc,0x03,0x94,0x79,0x74,0xbe, +0xc7,0x83,0xe0,0x45,0x2d,0x78,0x51,0x07,0x5e,0xd4,0x81,0x17, +0x07,0xc1,0x8b,0x3a,0xcf,0xcc,0x6e,0x07,0xc9,0x8b,0x14,0xc3, +0x07,0x6a,0xc2,0x38,0xdc,0xcd,0xf1,0xb7,0xe6,0x59,0xeb,0xed, +0x9c,0xa7,0xf5,0x9c,0x39,0x2f,0x76,0xce,0xce,0x41,0xb4,0x11, +0x86,0x43,0xc6,0x2b,0xd4,0x59,0x8f,0xd0,0xd0,0xe6,0x79,0x37, +0xfb,0xd9,0x79,0xb4,0xf6,0x7a,0xe6,0xd1,0xba,0x17,0x76,0xe0, +0x88,0x41,0x05,0x38,0x52,0x0d,0x1b,0x70,0x08,0x5c,0x79,0x09, +0x5c,0x09,0x81,0x2b,0xf5,0x0e,0x1e,0x61,0xaf,0x47,0xc0,0x77, +0x8f,0x44,0x19,0xdd,0xf4,0x0a,0x38,0xb2,0x05,0xb5,0x78,0x15, +0x5c,0xd9,0x45,0x79,0xcd,0x17,0x1d,0x61,0x13,0xfe,0x8a,0xda, +0x9c,0x84,0x2d,0x2f,0x82,0x6d,0xe8,0x7b,0x1a,0xf3,0x66,0x3d, +0x61,0x67,0x59,0xda,0x0e,0x6e,0x3d,0x0d,0x6e,0x7d,0x1b,0xdc, +0x7a,0x02,0xdc,0xfa,0x01,0xb8,0xb5,0xdd,0xce,0xb2,0xf4,0x84, +0xe8,0x46,0x8d,0x89,0x7a,0x9c,0x80,0x63,0xb1,0x69,0xb9,0xea, +0x51,0xe3,0x46,0x6b,0xb5,0x8c,0xb7,0xf1,0x5b,0x6f,0x13,0xa6, +0x47,0x1d,0x8b,0xef,0xc6,0x41,0x7e,0xc6,0x67,0x43,0x3f,0x69, +0x57,0xcf,0x13,0x02,0xb5,0xcc,0xa2,0x2f,0x88,0xce,0xfb,0x14, +0xe0,0x0c,0x70,0x8e,0x0d,0x0d,0x02,0x55,0x41,0x3b,0x8b,0x4e, +0x30,0x62,0x43,0x51,0x93,0x46,0xfa,0x3e,0x67,0x86,0x4e,0xd6, +0x02,0x92,0x74,0xf8,0x76,0xd4,0xa2,0xc9,0xf0,0xad,0xd6,0x41, +0x11,0x4a,0xd4,0x7e,0xee,0x47,0x4d,0xea,0x50,0x93,0x83,0xa8, +0x89,0x13,0x41,0xc1,0x7e,0xa2,0x36,0x6f,0x30,0x7a,0x8a,0xd4, +0x68,0x16,0x50,0x82,0xeb,0x43,0x92,0x21,0x48,0x32,0x64,0xad, +0x7d,0x48,0x1b,0x0b,0x49,0xab,0x82,0x4f,0xce,0x55,0xc7,0xd9, +0x85,0xea,0xe8,0xfb,0xca,0x5a,0x9d,0xeb,0xb4,0x0f,0xf9,0x13, +0x42,0xcd,0x0e,0xd9,0x68,0xe3,0x20,0x6a,0x57,0x8f,0x9a,0x85, +0x50,0x33,0x44,0x49,0xc2,0x87,0x9a,0x85,0x50,0x2b,0xa3,0x7d, +0x75,0xd6,0xca,0x7c,0xbe,0x73,0x9b,0x16,0xa1,0x86,0x87,0x50, +0xc3,0x3a,0x60,0xad,0x86,0x3e,0xc7,0xe1,0x99,0xa9,0xd9,0x01, +0xd4,0xec,0x80,0xe3,0x15,0xe9,0x73,0x0e,0x81,0x6f,0x75,0x36, +0xea,0x3a,0x00,0xbe,0xd5,0xa2,0x76,0x07,0xc0,0x37,0xe3,0x7b, +0x0e,0xc2,0x2e,0x34,0x80,0x67,0xaf,0xd9,0xd8,0xb4,0x51,0x9d, +0x87,0x62,0xe6,0x69,0x32,0x1a,0x60,0x66,0x94,0x9a,0x4f,0xb4, +0x1b,0x5f,0xe4,0x58,0xda,0x3e,0xad,0xcd,0xa7,0xca,0x48,0xa5, +0x0f,0xee,0xdc,0x17,0x57,0x34,0x5e,0xdf,0x41,0x7c,0x03,0x6a, +0x50,0x8b,0x1a,0xec,0x42,0x0d,0x76,0xa1,0x06,0x6f,0xa1,0x06, +0xbb,0x6c,0x0d,0xaa,0x2d,0xda,0x6b,0x3d,0x48,0xff,0xfc,0xe6, +0x44,0x55,0x91,0xab,0x52,0xf7,0xb7,0x47,0x66,0xb7,0xe2,0x4c, +0xc2,0x7d,0x50,0xaf,0xfe,0x8c,0x6d,0x42,0xf4,0xcc,0xd3,0x9a, +0xde,0x07,0x8a,0x4e,0xda,0xf8,0xc6,0xd8,0xa5,0x43,0xb4,0x05, +0x8e,0xf5,0x68,0xa0,0xaf,0x5c,0xc6,0x19,0x25,0x8d,0xdf,0x31, +0xf3,0x4f,0xb5,0x30,0xbb,0xa9,0x8d,0x47,0xc3,0x6e,0xe4,0x3b, +0x10,0x77,0x1b,0x4a,0x2e,0x84,0x1d,0x84,0xe0,0x7b,0x27,0x3a, +0xa9,0x23,0x76,0xcf,0xc1,0x9d,0xa2,0x78,0x3d,0xbd,0x19,0x4c, +0xf3,0xad,0x3c,0x42,0xc4,0xaa,0x33,0x4b,0x5a,0x98,0xb6,0xb8, +0x0f,0xf8,0xef,0xe0,0xf4,0x3d,0xd4,0xa0,0x81,0x96,0x27,0x82, +0x51,0x07,0x9f,0xe6,0xce,0xe6,0xb9,0x6a,0xac,0xaf,0xa9,0x05, +0x2f,0x6b,0xf1,0x8c,0xbb,0xc0,0xcb,0x5a,0x3c,0x67,0xb5,0xeb, +0x67,0x32,0x29,0xe5,0x9b,0x60,0xf1,0x6f,0x46,0xcc,0x6f,0xe6, +0x55,0xe4,0xfc,0x8f,0xb4,0x47,0x91,0x39,0x17,0x85,0xb5,0x47, +0xc2,0x4a,0x4a,0x40,0x52,0xa6,0x1f,0xe6,0x72,0xe8,0x93,0xf3, +0xcb,0x29,0x68,0xa5,0x04,0x61,0x33,0x82,0xb6,0x15,0x11,0x99, +0xb9,0xb1,0xcc,0xe3,0x7d,0xcd,0x55,0xca,0xec,0xcc,0x8d,0xa3, +0xec,0xfc,0x99,0x45,0x1e,0x39,0x46,0xf7,0xda,0x59,0x2b,0x65, +0xac,0x78,0x2d,0x3c,0x4c,0x11,0x9e,0xae,0x11,0x4f,0x07,0xdf, +0x87,0x7d,0x5a,0x29,0x51,0x42,0xcb,0x3e,0x8f,0xad,0x8b,0x00, +0x31,0x7e,0x31,0xea,0xbf,0x16,0xe5,0x52,0x94,0xf5,0xa8,0x99, +0xd3,0x72,0x1b,0x68,0x5a,0x6f,0x90,0xca,0x70,0x7c,0xba,0x2d, +0x38,0x14,0xd3,0x82,0x33,0x7e,0x6a,0x1e,0x7d,0x55,0x98,0x6d, +0xb3,0xd5,0xe6,0xdd,0xb1,0xfd,0x45,0x3d,0x7e,0x11,0xc4,0x99, +0x41,0xdc,0x2b,0xc8,0x7b,0xc4,0x5f,0x3f,0xcd,0xb1,0xa3,0xee, +0xd9,0x45,0xac,0xdd,0x38,0x94,0x44,0x67,0xa7,0xbb,0x88,0x1c, +0x8e,0x23,0xa3,0x51,0xcc,0x33,0x4c,0x8b,0xa9,0x7f,0x6c,0xeb, +0x28,0x60,0x9f,0xbe,0x04,0x67,0x97,0xd8,0xeb,0xfa,0x13,0x3e, +0x69,0x8e,0x6b,0xd5,0x07,0x41,0x4b,0x13,0xf3,0xab,0x8c,0x4f, +0xeb,0xc4,0x0b,0x61,0xf7,0x89,0xe3,0xef,0x19,0xb4,0xe8,0xae, +0x76,0x23,0x5b,0x3e,0x1b,0xdb,0x76,0xd5,0xb6,0x65,0x1a,0x66, +0xcb,0x74,0x1c,0x8e,0x8f,0xc7,0x15,0xa7,0x19,0x8f,0xcc,0xf6, +0x5d,0x98,0xad,0xc7,0x8b,0x45,0x05,0xae,0x58,0x81,0x2b,0x56, +0xe0,0x8a,0x15,0x22,0xd3,0xb6,0x10,0x0f,0x7a,0x38,0x94,0x6f, +0xdb,0x6c,0x5e,0xf9,0x85,0x9b,0x3d,0x55,0x7b,0xd4,0xa5,0xd1, +0xb6,0x32,0x22,0x48,0x08,0xa2,0x1e,0xd6,0x5f,0xe1,0x2a,0xa6, +0xc5,0x61,0xa4,0xe3,0xd8,0xe3,0xb0,0xe3,0x29,0xf0,0xff,0x39, +0xe4,0x51,0x6c,0x3d,0x1c,0x34,0xf4,0x47,0x54,0x3d,0x94,0x6d, +0x5e,0x58,0x75,0xec,0x3b,0xed,0xf9,0x5a,0xdb,0x9e,0xdf,0x8f, +0xa7,0x09,0x80,0x37,0x55,0xb0,0x0e,0x35,0x6c,0xc7,0x67,0x59, +0x3e,0x40,0xc7,0x70,0xdd,0xa1,0xd8,0x77,0x5a,0xcb,0x55,0x6e, +0xdb,0xd6,0xb4,0xce,0x89,0x7b,0x1c,0x8b,0xf0,0x00,0x36,0x8c, +0xbf,0xce,0xc4,0x3d,0xfd,0xfc,0x25,0x39,0x48,0xf4,0x21,0x92, +0xc7,0xbd,0xc7,0x9a,0x68,0x9e,0xdc,0xb3,0x5a,0x63,0x62,0x1a, +0xfe,0xb2,0x96,0xbf,0x4c,0x67,0x4d,0x79,0x4f,0xeb,0xa3,0x47, +0xb0,0xa6,0xa1,0xb8,0x5f,0x79,0x6b,0xea,0x3c,0x5f,0xd0,0x41, +0x24,0x7f,0x09,0x6e,0x81,0xdf,0xb1,0xcf,0x58,0x87,0x5f,0x17, +0xe1,0xd7,0x45,0x8c,0xca,0x17,0xe1,0x7f,0xf3,0xeb,0x34,0x7b, +0x3f,0x87,0x3b,0x23,0x0c,0xf2,0x69,0xc5,0xea,0xc9,0x91,0x48, +0x0d,0x23,0xb5,0x33,0x67,0x07,0xec,0x73,0x85,0x6c,0xcd,0x6a, +0xe8,0xaf,0xa7,0xe1,0x0a,0xf3,0x5c,0x1e,0xee,0xe7,0xd9,0x19, +0xe4,0x42,0x7f,0x6a,0x56,0x16,0x3d,0x57,0x62,0x4e,0x44,0x22, +0x3b,0xe7,0x1e,0xed,0xec,0xaf,0xb2,0xd8,0x47,0x11,0x2b,0x33, +0xbf,0x7d,0x1e,0xbf,0x95,0x59,0xf4,0x9e,0x94,0x00,0x4a,0xa4, +0xa6,0x39,0x71,0x5c,0x89,0x5c,0x29,0xc4,0x67,0x1c,0x69,0x6b, +0xee,0x70,0xa6,0x96,0xcf,0x4a,0x0d,0xb1,0x57,0x73,0x62,0x46, +0xe7,0x4a,0x6a,0xe5,0x2a,0xd3,0x2b,0x75,0x75,0xb7,0xab,0x7b, +0xdb,0x31,0x7b,0xd1,0xfe,0xc2,0x32,0xe6,0xb6,0x84,0x71,0xce, +0x74,0x9e,0x33,0xe2,0x9a,0xbb,0xc4,0x70,0xd3,0xb7,0x7d,0xfa, +0xf9,0x09,0x9f,0x2a,0x37,0x32,0xc0,0xec,0xcc,0xc0,0xe9,0xcf, +0xec,0xc5,0x5c,0xa9,0xb6,0xce,0xdd,0xf5,0x04,0x73,0xab,0xaa, +0x98,0x91,0x15,0x66,0xdf,0x7c,0x75,0xd3,0xf6,0x53,0x3f,0xe1, +0xe9,0x8d,0x98,0x63,0x8f,0xfd,0x2e,0x6f,0x8f,0x6d,0x9b,0x7e, +0x9f,0x12,0x53,0x8f,0xb6,0xcc,0xae,0x15,0x9f,0x03,0x30,0xaa, +0xe5,0xb7,0xa3,0xb6,0x9f,0x3d,0xc8,0xd1,0x79,0xd5,0xb6,0xef, +0xbd,0xde,0x64,0x49,0x9d,0xaa,0xd7,0xfc,0xf4,0x67,0x6a,0x6a, +0xfb,0x9c,0x55,0x36,0x17,0xff,0x60,0x34,0x43,0xdf,0x66,0xe5, +0x07,0x9c,0x2c,0x4f,0xd4,0xf1,0x44,0xec,0xcc,0x04,0x36,0xab, +0x20,0x92,0x2f,0x7f,0xd2,0x83,0x1f,0x37,0x6b,0xd9,0xcd,0x3b, +0x15,0x7c,0x23,0x74,0x14,0xc5,0x8e,0xb2,0x6d,0x7a,0x8f,0xa3, +0x52,0x9d,0xb1,0x46,0x3b,0x6d,0x1f,0x77,0x16,0xdf,0x95,0x87, +0x9a,0xcd,0x57,0x13,0x8a,0xbf,0x37,0xee,0xf1,0xb6,0xfb,0xa6, +0xb9,0x31,0x76,0x4c,0x2b,0xdf,0x64,0xd4,0x45,0x6b,0x18,0x27, +0xf7,0xe6,0x73,0xe1,0xd4,0x50,0x26,0xdb,0x23,0x39,0x12,0x4d, +0xc7,0x9c,0x6c,0x7f,0xc8,0x27,0xab,0xe9,0xde,0xa6,0xdb,0x9a, +0x6e,0xb3,0x6f,0x04,0x43,0x6e,0x5e,0x54,0x63,0x34,0xbb,0x87, +0xef,0x14,0x1b,0x9c,0xfc,0xd0,0xe8,0xec,0x21,0xcd,0xe6,0x3e, +0x4b,0x89,0xf2,0x58,0xc4,0x8e,0xb9,0x0a,0x13,0x3b,0x59,0x2d, +0xbf,0x1f,0x88,0x1f,0x6f,0xe9,0xcd,0x09,0x4f,0x90,0xf7,0xd1, +0xec,0x17,0x0e,0x37,0x12,0xbe,0x83,0x08,0x46,0xc6,0x5f,0x78, +0x73,0xce,0x2d,0xb7,0x4c,0x96,0x6c,0x19,0xff,0x8f,0x8e,0x1c, +0x3f,0x0a,0xcd,0x38,0xca,0xd9,0x31,0x9c,0x67,0xf4,0x7b,0x32, +0x5d,0x6a,0x69,0xb3,0x3e,0xd5,0x73,0x44,0x51,0xc2,0xba,0xa6, +0x83,0xff,0xef,0xe1,0xbb,0xc3,0xe6,0xbd,0x2c,0x50,0x7f,0xd4, +0xc5,0xe6,0x41,0x4f,0x0d,0x1b,0x12,0x64,0xdb,0x9c,0xf0,0xce, +0x79,0xe1,0xc9,0x02,0x0b,0xb4,0x30,0xab,0x06,0xdf,0xfa,0xc6, +0x5e,0x29,0xe1,0xfc,0x28,0xd5,0x4d,0x5b,0x80,0xdc,0x2d,0x4d, +0x5b,0x44,0x6a,0xd3,0x4f,0x9b,0x3e,0xc2,0x5e,0x0d,0x67,0x88, +0xfa,0x2f,0xbe,0xe5,0xb5,0x39,0x90,0x4d,0x55,0x4d,0x7f,0x37, +0x59,0x9f,0x16,0x49,0x7c,0x4f,0x1e,0xf3,0x96,0xad,0xd1,0xbe, +0x93,0xa9,0x61,0xc6,0x73,0xc0,0xce,0x67,0xe0,0x22,0x85,0xa3, +0xc8,0xeb,0x38,0x5e,0xcd,0xf9,0xcf,0xb1,0x14,0x86,0x3f,0x2f, +0xf1,0x2d,0xce,0x87,0x44,0xf6,0xd1,0x68,0x06,0x19,0xf6,0x52, +0x6c,0x46,0xfa,0x7e,0x8b,0x44,0x77,0xce,0x23,0x3b,0xaf,0x55, +0x10,0x47,0x4e,0x7a,0xe6,0xb5,0x32,0x6f,0x6d,0x0f,0x60,0x73, +0xc6,0xa4,0x1c,0xe0,0xf8,0xeb,0x83,0x4d,0x6f,0x44,0xde,0x74, +0xdb,0x1c,0x9e,0x46,0x37,0x13,0xc4,0x3c,0x67,0x2d,0xc7,0xa1, +0xf8,0x41,0x8f,0xa3,0xd4,0xd1,0x6e,0x73,0xb4,0xa5,0x33,0xe3, +0x95,0xb1,0x64,0x90,0x55,0x6d,0xfc,0x0c,0x3c,0x1c,0x05,0xd2, +0x10,0x23,0xf5,0x2c,0xce,0x32,0x16,0xe7,0x23,0xf8,0x94,0xb5, +0x76,0x84,0x8a,0xdf,0xbe,0x87,0x8d,0xbc,0x8b,0x74,0x46,0x86, +0x33,0x17,0xc3,0xda,0x9b,0x50,0x44,0x17,0xed,0x93,0x57,0x3b, +0xb9,0x31,0xfc,0xc5,0x89,0xe8,0x9b,0xfb,0x66,0xe3,0x3e,0x1a, +0x45,0x91,0xcd,0x96,0xa8,0xb6,0x73,0x20,0x46,0xbc,0x6d,0xcb, +0x6f,0xdd,0xec,0x08,0x60,0x9b,0x19,0x13,0x68,0xc3,0x28,0xb1, +0x60,0x8c,0xb5,0xc9,0x3a,0xe5,0x3d,0x84,0xb5,0xfb,0x7e,0x3e, +0x47,0xbd,0xd5,0xc8,0xc6,0x56,0x7f,0x51,0xe6,0xca,0xa6,0xd1, +0xfd,0xbd,0x68,0xd5,0x7f,0x94,0x44,0xee,0x41,0xde,0x9f,0xf2, +0x1e,0x11,0x5e,0x71,0x1e,0x82,0x90,0xc7,0xbb,0x15,0xb5,0xea, +0xf9,0xab,0x39,0x8f,0xcf,0x76,0xde,0xa7,0xde,0x66,0x53,0x56, +0x34,0xd3,0xc5,0xf8,0x27,0xe7,0x6f,0x3d,0xf7,0x28,0x6b,0xc5, +0x97,0xe7,0x13,0xb7,0x7e,0x8e,0xbf,0x0d,0xbb,0xb3,0x59,0x56, +0xb4,0x98,0x8d,0x1e,0x70,0x72,0x86,0x51,0xa7,0x60,0x5b,0x47, +0xf7,0xd9,0x5c,0x8f,0x2d,0x1e,0xab,0x17,0x6e,0x35,0x8a,0xf2, +0x73,0xb4,0x94,0xdf,0xdc,0xc3,0x93,0xaf,0xd4,0x78,0x8a,0x9c, +0x79,0x3f,0xed,0x44,0x5b,0xdf,0xeb,0x06,0xe8,0x13,0xcd,0xb8, +0xfd,0x40,0x5b,0xdf,0x06,0xbb,0x33,0x13,0x36,0xcb,0x7d,0x6c, +0x3d,0xb2,0xc2,0x3d,0xfc,0xd1,0x8c,0xc2,0x56,0xe6,0xad,0x70, +0xb3,0x3a,0x38,0x5f,0x49,0x28,0xc1,0x18,0x9e,0x44,0xbc,0xaa, +0xb5,0xbc,0x6a,0x6b,0x8c,0x1a,0x79,0xf2,0xed,0xd1,0x79,0xa8, +0x5a,0xf9,0x53,0xe7,0xdc,0x65,0x22,0xe6,0x75,0xf7,0xae,0x3f, +0x2a,0x0a,0xc4,0xd9,0x8e,0x0e,0x3b,0x73,0xf4,0x10,0x2f,0xc6, +0xd7,0x1f,0x64,0x16,0x53,0x0d,0x63,0xce,0xf0,0xe7,0x34,0x76, +0x28,0x5e,0xba,0x36,0x82,0x66,0x9e,0x68,0xf5,0xa9,0xef,0x81, +0x7a,0xbc,0x1d,0xc9,0x3a,0xe2,0x8c,0x49,0x45,0xf8,0xe5,0x76, +0xce,0xea,0xb6,0xdd,0x5a,0xbc,0x10,0xbd,0x43,0xcd,0xe7,0x58, +0xcd,0x2c,0x66,0xf6,0x87,0x9d,0x11,0xa6,0x9c,0xd9,0x23,0xec, +0x8c,0x19,0x3c,0xad,0x67,0xad,0x89,0xc9,0xdc,0x88,0xe4,0xdf, +0x86,0xbe,0x08,0xbe,0x7a,0x2d,0x48,0xcb,0xbc,0xb0,0xbe,0x34, +0xc4,0xf1,0x16,0x21,0x9b,0xf9,0x91,0xe5,0xce,0x71,0xe8,0x8c, +0x80,0x88,0x5a,0xe6,0x60,0xcb,0xd9,0xbb,0xa7,0xd5,0xee,0x09, +0xb9,0x63,0x94,0x9c,0x71,0xd2,0xa7,0xc0,0x2a,0x3c,0x66,0x3d, +0x67,0x4b,0xdc,0xef,0xcc,0xf1,0xc2,0x78,0x20,0xe8,0x6a,0x51, +0x89,0x28,0x89,0x99,0x5d,0xc5,0xfc,0x5f,0xf7,0x99,0x6b,0x59, +0x65,0x66,0x0d,0xe7,0x1c,0x0d,0x8e,0xbd,0x2d,0x89,0xb6,0x27, +0x5a,0xc8,0xb5,0xdb,0x09,0x6d,0x09,0x31,0x9f,0xcc,0x50,0x27, +0x2e,0x0f,0xba,0x35,0x41,0x7c,0xc8,0x2c,0xdc,0x48,0xee,0x9c, +0xf9,0xbf,0xe6,0xb3,0xea,0x8e,0xc9,0x71,0x73,0x72,0xe7,0xec, +0xe8,0xb0,0xb2,0xa6,0x47,0xdd,0xd9,0xf5,0x6a,0x5a,0x1a,0xe5, +0xe0,0x19,0xe5,0x15,0x88,0x6b,0xe5,0x65,0x31,0x67,0xb1,0xd1, +0xfb,0xff,0xe7,0x04,0x47,0xbf,0x07,0x97,0x59,0xde,0x68,0xf8, +0xb4,0xb4,0x27,0x24,0xbe,0xe8,0xbf,0x2c,0xc7,0xbb,0x9e,0x9e, +0x6c,0xbc,0xe3,0xc7,0xbd,0x11,0x51,0x8c,0xd5,0x0c,0x7c,0x21, +0x33,0x1d,0xb4,0xe1,0x9a,0x88,0xf4,0x9c,0xb9,0x74,0xde,0x70, +0xe7,0x3a,0xd9,0x65,0xe6,0x1b,0x89,0xe4,0x53,0x71,0x7e,0xb7, +0x06,0x6f,0xcc,0xcf,0xc8,0x98,0x76,0x80,0xe3,0xbf,0xaa,0x9c, +0x19,0x96,0xdc,0x31,0x5e,0x3b,0xd9,0x17,0x11,0x33,0x0e,0x2c, +0x3e,0xe7,0xdf,0x9d,0xd3,0xb4,0x9e,0x11,0x79,0xa4,0x1e,0x51, +0x0d,0x8a,0x1b,0xdf,0x15,0x19,0x89,0xcb,0xa8,0xf4,0x84,0x6d, +0x03,0x1c,0x76,0xdb,0xd5,0x4e,0xa4,0x7d,0x2c,0xe6,0x1a,0x27, +0x3e,0x07,0x5b,0xc4,0xbb,0x39,0x57,0xe2,0x68,0x9e,0xc6,0xd6, +0xaf,0xeb,0x66,0xf3,0x1e,0xf3,0xcc,0x52,0x5b,0x13,0x93,0x3b, +0xe8,0xd4,0xb2,0x21,0x36,0x9f,0xd7,0xfd,0xb6,0x2e,0x1e,0xc1, +0x91,0xbc,0xb3,0x98,0xcd,0x9b,0xa9,0x1e,0x8e,0xdc,0xcd,0x6a, +0x75,0x9d,0x3d,0x16,0xe1,0xca,0x49,0x8e,0xc9,0xaa,0x4f,0x80, +0x3e,0x11,0x3f,0x27,0x40,0x9b,0x7a,0xb8,0x72,0x98,0xff,0x5c, +0x9f,0xb0,0x96,0xfe,0xb8,0x71,0xb4,0xfe,0xb6,0x67,0xea,0x21, +0x36,0x4a,0x89,0xcc,0x61,0x10,0xed,0x11,0x31,0x59,0x9c,0xf8, +0xcc,0x46,0x49,0x6f,0x9e,0xfd,0x6b,0xb2,0x5d,0x63,0x66,0x17, +0x71,0x9e,0x7c,0xa7,0x13,0x73,0xdb,0xb9,0x64,0x02,0xd1,0x71, +0xaf,0x56,0x73,0x43,0x1c,0x6f,0x12,0xe2,0x3c,0x6a,0x35,0xce, +0x7f,0x1e,0x8b,0xd9,0x00,0x4c,0x5b,0x4c,0x91,0x97,0x47,0xbd, +0x3d,0x56,0x66,0x86,0x34,0x63,0xeb,0x5b,0x8c,0xab,0x9d,0xbe, +0xc7,0x97,0x9a,0xf7,0x81,0xc5,0x67,0xeb,0xc7,0x70,0x3a,0x60, +0x73,0x0d,0xf3,0xed,0x1c,0x7a,0x91,0x88,0x47,0xc4,0x8c,0x50, +0x89,0xe5,0x66,0x52,0xcb,0xde,0xa6,0xb5,0xd1,0x6b,0xd1,0xb9, +0xfd,0x9c,0x5a,0x46,0x47,0x4f,0x71,0x6b,0x68,0xc1,0x23,0xd4, +0x47,0xf2,0x73,0x6d,0xdb,0xbb,0x91,0x39,0xa3,0xa7,0xee,0x5f, +0x0c,0xc5,0xf4,0x59,0x34,0x34,0xef,0x1f,0x68,0x36,0x4b,0x40, +0xa6,0xdb,0x0f,0x14,0xb6,0xb9,0x89,0xde,0xb1,0x4d,0xcd,0x32, +0xd5,0x3d,0x23,0x03,0x1d,0xfb,0x13,0xb2,0x4f,0x12,0xb6,0xfd, +0xa0,0x4e,0xcb,0x29,0xcb,0xdd,0x02,0x09,0xf2,0x60,0x1b,0x5c, +0xec,0x34,0xcb,0x2e,0xe7,0x08,0xc6,0x9a,0xf8,0xd9,0x60,0x2c, +0x07,0x3f,0xb0,0xbc,0x38,0xe2,0xcc,0x93,0xd4,0xca,0x7c,0xf4, +0x0d,0xae,0x86,0x35,0xf2,0x99,0x63,0x66,0x26,0x88,0x8c,0x94, +0x8c,0x99,0x03,0xc1,0x1f,0xd7,0x8f,0xed,0x95,0x46,0x75,0xa2, +0xc8,0xde,0xf6,0xff,0x98,0x48,0xf4,0x44,0x33,0x0b,0xe8,0x77, +0x65,0x50,0xdf,0x7a,0x34,0xd5,0xca,0x4c,0xf8,0xe1,0x53,0xcd, +0x05,0x15,0xe3,0x21,0x1a,0x19,0x09,0x9f,0x4c,0x18,0x73,0x06, +0x9a,0xdb,0x67,0x67,0xdc,0x24,0x79,0xb9,0xeb,0x7f,0x0d,0x2f, +0x85,0xc3,0xcb,0x08,0x47,0x39,0x96,0x29,0x6a,0x2b,0xbc,0xf3, +0x27,0x37,0xc4,0x22,0xd3,0x19,0xa5,0x14,0x83,0xb1,0xc8,0x18, +0x54,0x77,0xac,0x6a,0xfc,0x68,0xd5,0x66,0x36,0x35,0x1c,0xcd, +0x35,0xe6,0x53,0x35,0xb4,0x16,0x35,0x35,0xbf,0x46,0xd3,0x51, +0x3b,0xbb,0x78,0xbd,0x8b,0x87,0x86,0x84,0x7d,0xce,0xdb,0xed, +0xf8,0x3e,0x77,0xec,0x9f,0x77,0x06,0xe4,0x66,0x63,0x00,0x1b, +0xbd,0x33,0x81,0xc7,0xdc,0xcf,0x91,0x78,0x4b,0x63,0xfb,0x82, +0xee,0x59,0x27,0x9c,0xfe,0xa7,0xa6,0x77,0x23,0xad,0xd0,0xe8, +0xfc,0xca,0x11,0xab,0x1e,0x3b,0xdb,0x38,0x7f,0x1f,0xf0,0xd8, +0x68,0xcf,0xdc,0xa4,0x31,0xf3,0x18,0xb8,0xd9,0xf8,0xb1,0x99, +0xf7,0xb6,0xb7,0xb0,0x31,0xbe,0x07,0xb1,0xe5,0xb7,0x18,0x9c, +0x87,0xfe,0x7d,0xce,0x61,0x73,0xc8,0xf6,0xda,0x98,0x96,0xf6, +0x81,0x38,0xbc,0x1e,0xf3,0x8e,0x4a,0x65,0xec,0x53,0x85,0x27, +0xae,0xc2,0xb9,0x45,0x44,0x7a,0xd0,0x72,0xd1,0x6f,0x7b,0xc8, +0xfc,0x1c,0x45,0xfe,0xa8,0x1d,0x81,0xe2,0x6c,0x55,0x6c,0xeb, +0xfc,0x1b,0xbf,0x7e,0x89,0x77,0x35,0xf1,0x53,0xad,0x9b,0x97, +0x1d,0x76,0xe7,0x76,0xae,0xe5,0xd5,0x8d,0x37,0x2b,0xa2,0x9d, +0xfb,0xc2,0x67,0x34,0x6b,0xbd,0xcd,0xf8,0xbf,0x3a,0x9f,0xfd, +0xf4,0x6b,0x29,0xa7,0x4e,0x60,0x5e,0xfb,0x37,0x64,0xb9,0x7c, +0x51,0x95,0xa9,0x55,0x6a,0xbb,0xda,0xa9,0x07,0xe9,0x99,0x7a, +0xa1,0x5e,0xa9,0xdf,0xd0,0xef,0xfa,0x52,0x7c,0x39,0xbe,0xed, +0xbe,0x3f,0xf8,0x83,0xfe,0x21,0xfe,0xd9,0xfe,0xc5,0xfe,0x35, +0xfe,0x9b,0xfd,0x77,0xf8,0x1f,0xf7,0xef,0xf0,0xef,0xf3,0xd7, +0xf8,0x6b,0xfd,0x87,0xfd,0x47,0x93,0xf2,0x92,0x8a,0x92,0x4a, +0x93,0x7a,0x27,0x0d,0x48,0x1a,0x92,0x34,0x2a,0x69,0x42,0xd2, +0xb4,0xa4,0x8b,0x93,0x1e,0x48,0x0e,0x24,0x2f,0x4d,0xbe,0x21, +0x79,0x73,0xf2,0x5d,0xc9,0x0f,0x24,0x3f,0x92,0xbc,0x2d,0xf9, +0xc5,0xe4,0xb7,0x92,0x4f,0xa4,0x04,0x53,0xfa,0xa5,0x4c,0x4b, +0x59,0x99,0x72,0x5d,0xca,0xfd,0x29,0xdb,0x53,0xaa,0x53,0x0e, +0xa7,0x1c,0x4d,0x39,0x99,0x9a,0x94,0x9a,0x9d,0x5a,0x90,0x5a, +0x9a,0xda,0x2f,0x75,0x58,0xea,0x84,0xd4,0x19,0xa9,0x0b,0x52, +0xcf,0x4b,0xbd,0x38,0x75,0x63,0xea,0x0d,0xa9,0xb7,0xa5,0xde, +0x9b,0xba,0x25,0xf5,0xd1,0xd4,0xed,0xa9,0x3b,0x53,0xab,0x02, +0xb9,0x81,0x61,0x81,0xc5,0x81,0xeb,0x02,0x0f,0x05,0x42,0x81, +0x70,0x9a,0x48,0x0b,0xa4,0x05,0xd3,0x8a,0xd2,0xca,0xd2,0x2a, +0xd2,0x46,0xa5,0x4d,0x49,0x9b,0x9d,0xb6,0x38,0xed,0x82,0xb4, +0x75,0x69,0xd7,0xa4,0xdd,0x9c,0x76,0x47,0xda,0xfd,0x69,0x0f, +0xa7,0x3d,0x9e,0xb6,0x23,0xed,0xf9,0xb4,0xbd,0x69,0xfb,0xd2, +0x42,0xe9,0x49,0xe9,0xc5,0xe9,0x23,0xd2,0x97,0xa6,0xdf,0x90, +0xfe,0x70,0xfa,0x9e,0xf4,0x43,0x19,0x49,0x19,0x65,0x19,0x13, +0x32,0x96,0x66,0x5c,0x95,0x71,0x4f,0xc6,0x33,0x19,0xbb,0x33, +0xf6,0x65,0x1c,0xcb,0x2c,0xc8,0x1c,0x95,0xb9,0x2e,0xf3,0x9e, +0xcc,0x27,0x33,0x77,0x67,0xbe,0x9b,0xd9,0x90,0x15,0xc8,0x2a, +0xcd,0x9a,0x90,0x75,0x5e,0xd6,0x5d,0x59,0xdb,0x44,0x0f,0xc6, +0x29,0x95,0x88,0xbc,0x06,0x23,0xae,0x71,0x32,0x40,0x77,0x8a, +0x4b,0x99,0x8d,0x53,0x24,0x2e,0xc7,0xb7,0x57,0x31,0x13,0xd9, +0xe4,0x68,0x96,0xc9,0x02,0x51,0x24,0x0b,0x51,0x3a,0xa3,0x74, +0x11,0x01,0xd9,0x15,0x9f,0x88,0x9f,0x64,0x99,0x9b,0x87,0x12, +0xb0,0xd9,0x2c,0x45,0x31,0x59,0xa0,0x0b,0x62,0xf2,0x32,0x43, +0x71,0xb9,0x32,0x07,0x3d,0xab,0xcc,0x86,0x6c,0x2e,0xa2,0x99, +0xb3,0xb9,0x12,0xb5,0x89,0xd4,0xc8,0xac,0x34,0x6b,0x33,0x45, +0xe3,0xee,0x14,0xf4,0x64,0x7f,0x06,0x79,0x17,0xe7,0x0e,0xb5, +0x36,0xf3,0xd3,0xbb,0x8e,0x6d,0x8d,0x27,0xf3,0xd3,0xcc,0x87, +0xe1,0xdc,0x21,0xba,0x5e,0xbb,0x5d,0xab,0xbd,0xd9,0x7a,0xeb, +0x89,0xd6,0x5a,0xcf,0xe1,0xdc,0x93,0x9d,0x50,0x2a,0x71,0x85, +0xc1,0xcc,0x1e,0x8a,0xc9,0x8c,0x6c,0x73,0x06,0xa4,0x92,0xdf, +0x6d,0x7a,0x4f,0x6e,0x41,0x9c,0x54,0x24,0xda,0xe3,0x3a,0x66, +0xcc,0x55,0x27,0x44,0x2f,0x4e,0x06,0x5d,0xc8,0x66,0xd0,0x65, +0x39,0x39,0xd2,0xd0,0x07,0xd4,0x30,0x46,0x12,0x8e,0x14,0x8a, +0x20,0x85,0x22,0x5c,0x69,0x37,0xae,0xb4,0x9b,0x2b,0xea,0xce, +0x67,0xa6,0xef,0x7e,0xcb,0x8b,0x50,0x5c,0x66,0xd2,0x4b,0x96, +0xdb,0x35,0xcc,0x4e,0x4a,0xc2,0x15,0x83,0xb8,0x62,0x10,0x57, +0x0c,0xe2,0x8a,0x41,0x5c,0x31,0x68,0xe4,0xca,0xda,0xbd,0x8b, +0x6b,0xbe,0xcb,0xbd,0x10,0xf6,0x42,0xac,0xa7,0x79,0xf6,0x7a, +0x3c,0x77,0x7d,0x4c,0xa6,0x9f,0xc9,0xf2,0x33,0xf5,0xfb,0x6e, +0xd3,0xb3,0x38,0xf3,0xd9,0xcf,0x3d,0x6b,0x2f,0x5a,0x87,0x14, +0xd4,0xb8,0x0c,0x35,0x2e,0x43,0x8d,0xcb,0x50,0xe3,0x32,0x8b, +0xc4,0x32,0x9c,0xf1,0x04,0xce,0x78,0x82,0xe7,0xfe,0x13,0x7b, +0xff,0x14,0x3d,0x51,0xdf,0xfa,0xa8,0xbc,0x60,0xd3,0x9d,0x3a, +0xd7,0x12,0x5b,0xd1,0xf5,0x31,0xab,0x6d,0x06,0x67,0x59,0xcc, +0xb5,0x1d,0xa4,0x47,0xae,0x9f,0x8f,0xab,0xee,0xc2,0x55,0x77, +0x79,0xf2,0x49,0x1d,0x1c,0x3a,0x19,0x76,0xc1,0x16,0x9e,0x29, +0x92,0x61,0xf7,0x12,0xb3,0xc2,0xce,0xc3,0x33,0xae,0xc0,0xff, +0x26,0xc3,0x2e,0xc9,0xbd,0x5b,0xf4,0x09,0x0e,0xe2,0x0e,0x07, +0x2d,0xc6,0xe2,0x73,0xe4,0x6e,0x76,0x24,0xe3,0xe6,0xb9,0xb5, +0x25,0xc7,0x2d,0x25,0x01,0x62,0xcc,0xbd,0x4a,0x70,0xaf,0xed, +0xb8,0xd7,0xf6,0xd6,0x10,0xc0,0x5a,0x54,0x42,0x27,0xb5,0xc5, +0x7b,0x2d,0xe4,0x0e,0xcc,0x70,0x04,0x60,0x3e,0x38,0xd8,0x09, +0x67,0x55,0xe2,0x73,0x30,0x7e,0x71,0xae,0x59,0xd1,0x11,0x57, +0xdd,0x22,0xcd,0x5b,0xc1,0xe4,0x84,0x48,0xfd,0x6e,0xd3,0xb7, +0xf1,0xed,0xb7,0xdb,0x7c,0x9e,0xa4,0x8e,0x99,0x7a,0xd4,0x62, +0xaf,0xca,0xfc,0x6f,0xee,0x02,0x1a,0xc4,0x3d,0xcd,0xec,0x6e, +0x95,0x94,0xdf,0x6d,0x96,0x93,0x25,0x56,0x6e,0x41,0x2b,0xb7, +0x41,0x86,0xab,0xf6,0x57,0x92,0xe7,0x4a,0xe6,0x5c,0x9b,0xfd, +0xb2,0x16,0x69,0x0a,0x68,0x3e,0xa4,0x5c,0x66,0x51,0x5b,0x66, +0x6d,0xd9,0x14,0x9b,0xd5,0x5e,0x26,0xd2,0x64,0x7f,0x5a,0x8b, +0x12,0x4f,0x36,0xba,0x39,0xbb,0xc2,0x63,0xf9,0x02,0xf6,0xec, +0x80,0x28,0xe4,0x1c,0xfa,0x95,0xd4,0x94,0x6a,0xb1,0x0e,0x47, +0xd6,0xbb,0x23,0x70,0x6a,0xc5,0x2d,0xd8,0xdf,0xcc,0xf5,0xd7, +0x43,0x76,0x55,0xe8,0x48,0xb6,0x6d,0xd8,0x66,0xdb,0x86,0xac, +0xd5,0x30,0xd9,0xe6,0x21,0x0d,0x34,0xd8,0x95,0x42,0x83,0x1c, +0x7d,0xe2,0xac,0x49,0x1a,0xc9,0x0b,0x0e,0xea,0x95,0x6c,0x2b, +0x9b,0x3b,0x76,0x82,0x37,0xac,0x24,0x7e,0x8a,0x9c,0xfc,0x6a, +0x83,0x5b,0xaf,0x5d,0xb2,0xab,0x35,0x3b,0x2b,0x9d,0x06,0xed, +0x9a,0x9d,0xde,0x6c,0xe3,0x2c,0xae,0x3f,0x6a,0x46,0x6c,0xa4, +0x00,0x81,0x41,0xe6,0x23,0xde,0x8c,0xa7,0x9e,0xcb,0x5c,0x43, +0x93,0xad,0x58,0x66,0xb3,0x15,0x1d,0xce,0x96,0x79,0x6c,0x5a, +0x4b,0x7b,0x8e,0x16,0xb7,0x8c,0xba,0xff,0x7f,0xbe,0x49,0x36, +0xd6,0xe7,0x53,0xfc,0x2e,0x6a,0xdf,0x62,0xf7,0xa2,0xd6,0x3a, +0xde,0x6e,0xff,0xdf,0xb3,0x17,0xb4,0xd6,0xba,0xde,0x1d,0x95, +0xb2,0x3e,0x32,0x6e,0x07,0x76,0xc8,0x8c,0x58,0xbb,0x05,0x67, +0x6d,0xa6,0x97,0x0d,0x59,0x34,0xd7,0x5b,0x2f,0x1b,0xb2,0x5e, +0x36,0x64,0xb3,0xd3,0xa9,0x2f,0x6d,0xf0,0x17,0xff,0x3d,0x67, +0xb4,0x67,0xc4,0xd5,0x89,0x96,0xe0,0x9f,0xb0,0xa3,0x6f,0x0a, +0xf8,0x46,0xeb,0x3b,0x6b,0xcc,0x93,0xe1,0xcc,0x1a,0x9c,0x59, +0x63,0xc7,0x77,0x05,0xac,0x7e,0x86,0xec,0xe8,0x1d,0x33,0x72, +0xa7,0xde,0x1d,0x4b,0xd3,0x12,0x06,0xfe,0xdf,0xda,0x6b,0xd9, +0x43,0x7e,0xbe,0xdf,0x9c,0xda,0x4b,0xfe,0xbf,0x74,0xc6,0xe7, +0x6c,0xdf,0x38,0x5b,0x7b,0x27,0xb6,0x26,0xe0,0x95,0xed,0xda, +0xd0,0x0b,0x38,0x3b,0x9b,0x41,0xfc,0x60,0x33,0x9e,0x8e,0x11, +0x71,0xc8,0xae,0x76,0x6d,0xbe,0xad,0x83,0x7e,0x36,0x9a,0xd1, +0x53,0xc6,0xbb,0x9b,0x28,0x02,0xc5,0x17,0xd9,0xb3,0x57,0x30, +0xb3,0x2f,0xe7,0x63,0x73,0xae,0x9d,0xc5,0x6b,0xcf,0xe6,0xd8, +0xab,0xa0,0xf5,0x5b,0x8d,0xbc,0x47,0xe4,0xee,0x01,0x7b,0x86, +0xf1,0x9b,0xe6,0xf7,0xf5,0xf6,0x1e,0xf5,0xbc,0x8e,0x73,0xd6, +0x60,0x8e,0x69,0x71,0xfc,0x5f,0xe4,0x2c,0x63,0x25,0xd2,0x19, +0x81,0x3b,0x51,0x22,0x63,0x0b,0xd6,0x79,0x0e,0x57,0xb9,0xae, +0xe3,0x99,0x4e,0x94,0xa5,0x39,0xa2,0xc3,0x8c,0x74,0x4d,0x89, +0xbb,0x73,0x98,0x6b,0x63,0xcf,0x75,0xef,0x1c,0x86,0x7d,0x37, +0xb3,0x4f,0x56,0x9a,0x48,0x98,0xd7,0x31,0xd7,0x68,0xb0,0xeb, +0x8b,0x9f,0x34,0x4f,0x8b,0x3b,0x56,0x32,0x46,0xe4,0xea,0xdc, +0x5c,0xf3,0xaa,0xc6,0xc6,0x53,0xce,0x48,0xc6,0xc5,0x8c,0xd8, +0x9d,0xd1,0x35,0xce,0xda,0xdd,0x75,0xf6,0x77,0xbc,0x2f,0xa2, +0x89,0xc1,0x9c,0x49,0x36,0xf6,0x4a,0x8d,0x46,0x26,0xf6,0xc8, +0x62,0x1c,0x31,0xbe,0xdc,0x69,0xbd,0x34,0x9a,0x3a,0xf1,0x1b, +0x33,0x06,0x24,0x8c,0xa8,0xb4,0x91,0xa3,0x53,0x9c,0x6b,0xd7, +0xf3,0xdb,0x5a,0xfb,0x3b,0x67,0xf4,0x5c,0xe4,0x0c,0xd3,0x6e, +0x4a,0xf3,0xb4,0x7c,0x6a,0xc8,0x49,0x67,0x3c,0x61,0x1d,0xcf, +0xe2,0xf8,0x3a,0xf0,0x27,0x32,0xae,0x30,0x72,0xad,0x9d,0xe4, +0xcd,0x62,0x1c,0x5d,0xea,0xde,0xcd,0x79,0x56,0xc3,0x6f,0xd6, +0xc5,0xb4,0xa2,0x9c,0x9a,0xf2,0x3a,0x0d,0xe6,0x19,0x70,0xd6, +0x49,0xa1,0x86,0x8d,0x30,0x2d,0xfa,0x39,0x2f,0xcf,0x1d,0x20, +0xda,0xd9,0x79,0x78,0xdb,0x92,0x6b,0x9a,0xb8,0x17,0xd4,0x64, +0xd7,0xe4,0xc7,0xf5,0xfa,0x17,0xf1,0x2d,0x6d,0xdf,0x04,0xc7, +0x12,0x66,0xe6,0x34,0xcb,0x3a,0x2a,0x8b,0x9b,0xd1,0x3d,0xd4, +0xb6,0x8c,0xe3,0x84,0x79,0x27,0x45,0x2d,0x67,0xfb,0x7c,0x0e, +0xd9,0x03,0xc1,0xf8,0x9e,0x15,0xf6,0x24,0x57,0x09,0x35,0xe4, +0x24,0x79,0x3c,0x6a,0xee,0x04,0x51,0x6e,0xf2,0xa2,0x9a,0x3e, +0x76,0xd7,0xe2,0x0a,0x98,0xb7,0x8a,0x78,0xa6,0x12,0xae,0x36, +0xaf,0xdc,0x1c,0xc8,0x36,0xbc,0x2f,0x36,0xef,0x5f,0xdc,0xb7, +0x67,0xa1,0xc8,0x7b,0x1f,0xf6,0xc7,0xba,0x6f,0x5f,0x9a,0xfe, +0x23,0xf4,0x29,0xd6,0x87,0x3b,0x16,0xb9,0x46,0x4c,0x5e,0x55, +0x74,0xe5,0x97,0x48,0x8f,0xe4,0xc1,0xe8,0xda,0x7c,0x2d,0x66, +0x70,0x89,0xe8,0x2a,0x6d,0x66,0xbe,0x56,0xf6,0x74,0xd6,0x37, +0x97,0x49,0x4b,0x33,0xe9,0x30,0x13,0xb1,0xc6,0xae,0x02,0xf9, +0x6a,0xd3,0x07,0xd1,0x37,0x44,0xce,0x8a,0x4b,0xec,0x11,0xad, +0x71,0x67,0x0f,0x69,0xe4,0x79,0xcd,0x56,0x9e,0x65,0xbf,0xf4, +0xc1,0x48,0xce,0x83,0x95,0x86,0x93,0xe3,0x67,0xf3,0x13,0x63, +0x67,0x07,0x6e,0xbe,0x5a,0x69,0x24,0xbb,0x34,0xf2,0x4e,0xb2, +0xe9,0x75,0x93,0x9f,0xeb,0xd6,0xc0,0xe9,0x5f,0xcc,0xb7,0x73, +0xf2,0xd6,0x45,0x32,0x70,0x6d,0xc6,0x72,0x38,0x6e,0x96,0x9f, +0x7a,0x17,0x5f,0xfe,0x98,0xf7,0x8b,0x81,0xc8,0x0c,0x88,0x4e, +0x0e,0x8c,0xed,0x85,0x0e,0x45,0xe6,0x4d,0x69,0x96,0x15,0x18, +0x83,0x52,0xca,0xa8,0xa6,0x25,0xc4,0x9f,0x72,0xb6,0xac,0xb0, +0x9d,0xa5,0xa6,0x86,0x3d,0xa9,0xf5,0x6d,0x38,0xb7,0xde,0x93, +0xd1,0x51,0x45,0x4c,0x54,0xe0,0x98,0xc9,0x18,0xaa,0x41,0x31, +0x7d,0xae,0xf9,0x31,0xbc,0xab,0x8b,0xa0,0x91,0xf2,0x3c,0x68, +0x33,0xfb,0x03,0x09,0xdf,0x24,0x44,0x7b,0xa9,0x4f,0x73,0x65, +0x1a,0x97,0xd7,0x41,0xe7,0xd7,0xd8,0x1e,0x35,0x33,0x98,0x26, +0x3c,0x47,0xc4,0x73,0x37,0xd2,0x6b,0x9c,0xd0,0xba,0x38,0x6f, +0xfa,0xef,0xa4,0xcd,0x28,0x6a,0x73,0x85,0x02,0xcc,0x3e,0x0c, +0x78,0xf2,0x7c,0x4e,0x33,0xd3,0x87,0x33,0x66,0xd5,0x46,0xf3, +0x75,0x78,0xff,0x60,0xfc,0xec,0x6d,0x89,0x33,0x27,0x5a,0xcb, +0x2d,0xe4,0x13,0xf9,0x3f,0xfd,0x6a,0x03,0x9f,0xcb,0x3a,0xd4, +0x8d,0x76,0xdd,0xb1,0x90,0xb5,0x2f,0x41,0x77,0xfe,0xcb,0x80, +0x7d,0xaa,0xa2,0x53,0xe6,0xba,0x46,0xe7,0x0b,0x37,0xd9,0x74, +0xd5,0x22,0x32,0xd7,0x4e,0xd0,0x66,0x3f,0x84,0x22,0xef,0x95, +0x78,0x92,0x6e,0x3d,0x53,0x31,0x0e,0x27,0x21,0x4f,0x8e,0x89, +0x53,0x97,0x70,0x0b,0xb9,0x2d,0x59,0x9e,0x4c,0x41,0x07,0xe7, +0x1f,0x73,0xce,0xe9,0x9a,0x38,0x6f,0x13,0x20,0x76,0x02,0x89, +0xde,0x43,0xd9,0x79,0xd4,0xf8,0xb6,0x9d,0x7e,0xa2,0x9a,0x6f, +0xb6,0xe3,0xbd,0x6a,0xc0,0xfd,0x0c,0x46,0x7d,0x4c,0xcc,0xaa, +0xe5,0x01,0x4f,0x7e,0x5a,0x23,0x57,0x1e,0xf7,0x73,0x5e,0xeb, +0x44,0x57,0xf1,0x27,0x98,0xab,0x39,0xea,0x69,0xf2,0x59,0x97, +0x5a,0x9b,0x01,0x1d,0x6c,0xa5,0x2e,0xf9,0xcd,0x72,0x66,0xb2, +0x5c,0xbe,0x3a,0xd9,0xd9,0xd5,0x5c,0xa1,0xa0,0xf5,0xab,0x04, +0x9b,0x5d,0xc5,0x1f,0xe3,0x4b,0x8b,0x22,0xb6,0xc3,0xb1,0xd8, +0x9e,0x91,0x28,0xae,0x57,0x62,0xce,0x42,0x3c,0x5f,0x02,0x71, +0x57,0xa9,0xb6,0xab,0x0a,0x66,0x35,0xab,0x4b,0x30,0x2e,0x23, +0x2f,0xe8,0xf5,0x0a,0xae,0xa7,0xb2,0x57,0xa1,0x46,0x3a,0x56, +0x3c,0x31,0x77,0x63,0xaf,0x12,0x8a,0x5c,0x85,0xef,0xa4,0x0e, +0x46,0xe6,0x2b,0xe6,0x13,0x39,0x79,0x16,0x7e,0x4f,0xfe,0x7b, +0x28,0x32,0x6b,0x34,0xef,0x10,0x72,0x33,0x9e,0xfc,0x5e,0xed, +0x6e,0x86,0x97,0x80,0xb3,0x36,0x41,0x82,0x27,0x8a,0xc8,0x28, +0x18,0x8b,0x76,0xe7,0x7d,0x3f,0xbf,0xcb,0x62,0x46,0xf3,0xfe, +0x88,0x3f,0xf4,0xe4,0xe5,0x35,0xd2,0xb7,0xd5,0xdb,0xac,0xc2, +0xe8,0xfa,0x0b,0xd1,0x55,0x05,0xa3,0xfe,0xa8,0xce,0x5d,0x7d, +0xb0,0x26,0x3e,0xb7,0xd8,0x93,0xa1,0x19,0x4a,0x94,0x4b,0x13, +0x93,0x05,0xcc,0x75,0x3b,0x78,0x95,0x2d,0xb1,0x2b,0x46,0x7a, +0xe7,0x6b,0x8d,0x8b,0xb2,0x22,0x1c,0xf6,0xbb,0xff,0x07,0x6d, +0xae,0xfd,0xc1,0xd8,0xcc,0xe8,0x04,0x75,0x89,0xc7,0x9e,0xdf, +0x5d,0x35,0xd1,0x8e,0x04,0x32,0x99,0x8b,0xbc,0x4a,0xe2,0x27, +0xb2,0x6b,0x36,0x36,0x7b,0x9a,0x80,0x3b,0x1b,0xbd,0x63,0xeb, +0xf6,0x73,0x36,0xcd,0xa2,0x98,0x33,0xac,0x5c,0xdd,0x31,0x09, +0x45,0x2d,0xd9,0x27,0x77,0xd6,0xe6,0x6a,0xb3,0x8a,0x5a,0x8b, +0xdc,0xf5,0xac,0x8e,0x19,0x37,0x0a,0xc7,0x8e,0xea,0xc0,0xb3, +0x1d,0xb7,0xdc,0xdd,0x19,0x1b,0x59,0x46,0xf2,0x2a,0x5d,0xee, +0x06,0xdc,0x35,0xaa,0xc3,0x2e,0x5f,0xea,0x5d,0xb9,0xf9,0x19, +0x2f,0xd4,0x99,0x77,0xb7,0x31,0x33,0x93,0x36,0xc6,0xfb,0xda, +0x48,0x36,0x8a,0xab,0x91,0x11,0xee,0xd6,0x59,0x84,0x3b,0x78, +0xc9,0x4a,0xf8,0x44,0x21,0x5b,0xab,0x40,0xdc,0x2c,0xb6,0x01, +0x97,0xbb,0x21,0x5b,0x9b,0x2a,0x4a,0x3a,0xd0,0x2c,0x8e,0x68, +0xf4,0x48,0xda,0xcd,0xc8,0x38,0xb5,0xf7,0xe3,0x6a,0x83,0x55, +0x9f,0xd9,0xcf,0xb5,0xf5,0x2a,0xaa,0xcf,0x38,0xd3,0x2e,0x98, +0x36,0xfb,0xcc,0x22,0x31,0x50,0x4c,0xa1,0xdf,0xaa,0xb5,0xf9, +0xae,0xe1,0xcf,0xb2,0xda,0x11,0x67,0xcd,0x4e,0x31,0xf9,0x85, +0x22,0xe9,0xd3,0xaf,0x63,0xd4,0x2c,0xc7,0xee,0x33,0xb4,0x90, +0x9c,0xf5,0x88,0x4e,0x27,0xdb,0x32,0xae,0xa5,0x53,0x6b,0xc7, +0x48,0xd4,0x7b,0x30,0x12,0xf5,0x6a,0xce,0xec,0xa3,0xc7,0x6c, +0xb6,0x95,0xbf,0xa5,0xeb,0xdb,0x6c,0x92,0x9d,0x36,0x16,0x8d, +0xac,0xfc,0x70,0x82,0x63,0xb8,0x4c,0x36,0x44,0xdb,0x66,0x16, +0x7d,0xc7,0xda,0x40,0x37,0x16,0x68,0x61,0x75,0x0c,0xc1,0xd5, +0x31,0x9c,0x6f,0xb3,0x38,0x5f,0x65,0xb3,0x7c,0xb7,0xa6,0x7d, +0x4d,0x6f,0xb9,0x39,0x6a,0xfe,0x98,0xb1,0x1c,0x7e,0xd6,0xeb, +0x24,0x67,0x28,0x6e,0x8d,0x2f,0xd5,0x09,0xf8,0xe2,0xcd,0xe8, +0x09,0x58,0xbe,0x34,0x26,0x9a,0xc7,0x39,0x9e,0x2f,0x44,0x8b, +0x77,0xac,0x5f,0x1c,0x5f,0x5a,0x5d,0x13,0x30,0x8c,0xd8,0x37, +0xdf,0xcd,0x65,0x0d,0x7a,0xfc,0x61,0x96,0x47,0x8b,0xfd,0x4e, +0xb6,0xa1,0x8d,0xfb,0x82,0x1c,0x89,0x1b,0xd5,0xcc,0x34,0x68, +0x84,0x59,0x99,0xe3,0x43,0x1b,0xa7,0x67,0x44,0x5a,0x6c,0xde, +0xfc,0x29,0xb4,0x99,0x15,0x6b,0xfc,0x31,0xf9,0x93,0x68,0x9e, +0xc5,0xba,0x58,0x8f,0xf8,0x59,0x46,0x5d,0x70,0x9d,0xef,0xa8, +0x45,0x0d,0x9c,0x9e,0x3e,0x78,0x56,0xf0,0xa9,0x3f,0xc5,0x2c, +0xb3,0xee,0x8c,0xfe,0x89,0xe6,0x9a,0x75,0x66,0x51,0x77,0x57, +0x3b,0x88,0xcb,0x09,0xfc,0x14,0xfa,0xed,0x64,0x1d,0xe7,0xb7, +0x88,0xf9,0x60,0x74,0xf4,0x42,0x4b,0xad,0x98,0x53,0xdd,0xb5, +0xd5,0x95,0x00,0xea,0xb9,0x46,0x53,0x34,0xfe,0x09,0x7b,0xd6, +0x9b,0x0d,0xc4,0x64,0x79,0xfb,0xdd,0xf8,0x3c,0x14,0xc9,0x57, +0x8c,0x7f,0x96,0xa6,0xb7,0x9a,0x5e,0x11,0x19,0xee,0x9a,0x38, +0x59,0xae,0x07,0xfd,0x88,0xed,0xf2,0x0f,0x68,0x4b,0x3f,0x71, +0x56,0x92,0x6b,0x8e,0x06,0xfe,0x9f,0x15,0x93,0xe1,0x19,0x26, +0xfe,0x22,0x59,0xb1,0x8e,0xf5,0x65,0xd6,0xa5,0x67,0xbe,0xf7, +0x70,0xf3,0x95,0x9b,0x98,0x67,0x65,0x74,0x30,0xdb,0xce,0x7e, +0x1a,0x6a,0x65,0x35,0x9e,0x84,0x7c,0x6a,0x93,0x4e,0xfb,0x4f, +0x43,0xa7,0xab,0xbd,0x3a,0xed,0xe4,0x84,0xb7,0xd9,0xd6,0x05, +0x6c,0xc4,0x5a,0xcf,0xb5,0x73,0x8a,0xa0,0xdf,0x41,0x3b,0xe6, +0x24,0xc4,0xde,0x03,0x2b,0x0b,0xce,0x4a,0x54,0x26,0x2a,0xcc, +0xc8,0x0d,0x9e,0x55,0xd6,0x2c,0xff,0x2e,0xc0,0x11,0x96,0x66, +0xb5,0x8c,0x10,0xae,0x68,0xce,0x19,0x0a,0x4d,0xf7,0xb9,0xd2, +0x32,0x16,0xd8,0xac,0x82,0x94,0xcc,0x7c,0xc1,0x04,0xf6,0x1b, +0x16,0xa1,0xd6,0x13,0x0b,0x3a,0xbe,0xb1,0x36,0x66,0xe5,0x2b, +0x67,0xdd,0xad,0x7f,0x46,0x67,0xb6,0x4e,0xa8,0x47,0xff,0x69, +0x7a,0xbf,0xe9,0x64,0xd3,0x2e,0xdb,0xcf,0x14,0x19,0x1f,0xdb, +0xd8,0x74,0x3c,0xa6,0xdf,0x26,0x36,0xb3,0xee,0x44,0x0b,0x6d, +0xfd,0xc8,0x4a,0xca,0x6e,0x8f,0x52,0x04,0xb7,0xee,0xb5,0xb2, +0x1c,0x5b,0x47,0xbb,0xe1,0xec,0xc5,0x63,0x21,0xa9,0xe9,0x70, +0xa4,0xe7,0xc7,0xf6,0x65,0x84,0x23,0xab,0x5b,0x99,0x71,0xb4, +0x71,0xbd,0x6e,0xc1,0x84,0xbd,0x20,0x35,0xee,0xbd,0xf3,0xf9, +0x46,0x20,0xe8,0xb4,0xb1,0xd9,0x0e,0x0c,0xbb,0xf1,0x54,0x11, +0xb3,0xe2,0xea,0xf8,0x0e,0xb0,0x28,0xd1,0xfa,0xae,0xec,0x87, +0x0a,0x31,0x1b,0xbe,0x96,0x98,0x2f,0x8b,0xc9,0xc5,0x36,0xdc, +0xfc,0xc0,0xe1,0xa1,0x3d,0xfa,0x49,0x82,0x2b,0x6c,0x8f,0xb6, +0x53,0x5a,0x59,0x65,0x89,0x78,0x22,0x7a,0xa8,0x5f,0x09,0x74, +0xc9,0x8c,0x9b,0xab,0x8b,0x59,0x3f,0x49,0xc7,0xa2,0x1b,0xd7, +0x7a,0x27,0xba,0xd6,0x52,0x7c,0x0e,0xad,0xa7,0xa7,0x27,0x10, +0xd3,0xda,0x0c,0xd8,0x6c,0xf7,0xe8,0x18,0x81,0x7c,0x8e,0xf8, +0x71,0x34,0x3e,0x98,0x70,0xf5,0xf3,0x80,0xe5,0x4b,0xc8,0xfa, +0xf9,0x60,0x6c,0x8e,0xfa,0x29,0xfb,0xdb,0x42,0x4d,0xaf,0x5b, +0x1f,0xf8,0x74,0xcb,0x2b,0x00,0xd9,0x88,0xb6,0x9a,0xed,0xf8, +0xb0,0x33,0x46,0x24,0x6e,0x9d,0x97,0x30,0xfb,0xdc,0x76,0x71, +0xc4,0xb7,0x67,0xec,0x07,0x9e,0x3d,0x10,0xc3,0x01,0xbf,0xd3, +0xf7,0xe1,0xe9,0xb5,0xfb,0x30,0xa1,0xdd,0x6e,0x7d,0xb5,0x07, +0x7f,0x5b,0xfa,0x15,0xdd,0xb9,0xe0,0x13,0xd8,0xec,0x58,0xfd, +0x6d,0xa1,0xf7,0x79,0xbb,0xdb,0x5b,0xdc,0xc2,0x6a,0x1a,0xc4, +0x42,0x63,0x6c,0x3e,0x6a,0x82,0xf5,0x6b,0x8e,0x21,0x2e,0xab, +0x25,0x7f,0x6a,0x9b,0x8d,0xf7,0x0e,0x46,0xb3,0x51,0x5b,0x8d, +0x5f,0x3c,0x6d,0xb8,0x96,0x57,0xca,0x71,0x33,0xfb,0xc3,0x71, +0x6d,0xa5,0x96,0x7c,0xa3,0xbf,0x79,0xaf,0xe5,0xa9,0x46,0x96, +0xba,0xb6,0xbf,0x36,0x92,0xdf,0x9c,0x98,0xf7,0x31,0xe3,0x20, +0x5b,0xea,0x55,0xe7,0x9a,0x43,0xb6,0xaf,0x20,0xdc,0x7c,0xd5, +0xa0,0x36,0xf6,0x6b,0xc6,0x68,0x55,0xa2,0x59,0xbd,0xed,0x6a, +0xf2,0xf5,0xae,0x04,0x13,0xac,0xd5,0x6e,0xe7,0xef,0xae,0x6d, +0xd9,0x63,0x9d,0xba,0x75,0xd5,0x42,0xef,0x5d,0xd8,0x93,0x39, +0x5e,0x1f,0x8f,0xd7,0x04,0xbf,0x38,0x71,0xea,0x28,0xa6,0xb5, +0x91,0xc8,0x16,0x61,0x01,0xfb,0xde,0xc2,0x19,0x2d,0x53,0xdb, +0xcc,0xdb,0x84,0x23,0x6f,0x12,0xf8,0xa6,0x22,0x62,0x05,0x6b, +0xe2,0xdb,0xef,0x76,0xfd,0x9e,0xe8,0x9c,0x0b,0x4e,0xbb,0xcf, +0x99,0xf9,0xa3,0x8e,0xbe,0xb3,0xde,0x62,0xae,0x2e,0xa6,0x57, +0xc4,0xae,0x91,0xd0,0xb4,0xc7,0x79,0xf7,0xc6,0x95,0x4d,0x76, +0x72,0xd6,0xfe,0x27,0xec,0x5b,0x8a,0xa8,0xad,0x33,0xd7,0xbb, +0xd7,0x19,0xe5,0xc8,0x99,0xfc,0xcd,0xcc,0xfe,0xe6,0x4e,0xfb, +0x3d,0xfd,0xf6,0x35,0xa2,0x3d,0x8e,0x3e,0xc3,0x3e,0xc0,0xfc, +0xc8,0xac,0xfe,0xb8,0x4b,0x36,0x67,0x9b,0x7f,0x37,0x9a,0xd9, +0xdf,0xd4,0xe4,0xed,0x3f,0xf7,0xae,0xa9,0xf8,0x39,0xea,0x74, +0x3d,0xf9,0x75,0xf4,0x33,0xe8,0x74,0x5d,0x4c,0x4c,0xe7,0x8c, +0xc7,0x09,0x47,0x46,0x16,0x78,0xfb,0x7c,0xad,0xa4,0xea,0x6c, +0x0d,0xe3,0x47,0xb2,0x98,0x75,0x2a,0x0e,0x73,0xe4,0x5f,0x73, +0x4c,0x3b,0xeb,0x10,0xd5,0x3b,0xbf,0x89,0x8e,0x06,0x70,0x78, +0x11,0x9f,0x71,0xed,0xc6,0x26,0x2d,0xc6,0x85,0x9e,0x91,0xf0, +0x2d,0xcf,0xe1,0xfe,0xa1,0xa7,0x0d,0xea,0xfd,0xd3,0x1e,0xdf, +0xd4,0xa2,0x57,0xe2,0x5a,0x71,0x66,0x7e,0x82,0x9d,0xf4,0x41, +0x4e,0x6f,0x77,0x90,0x88,0x70,0x56,0x58,0xab,0x76,0xf6,0xad, +0x35,0xe4,0xfa,0x82,0xb6,0xad,0x56,0xed,0x5d,0x57,0x98,0x19, +0xf6,0xbb,0x44,0x47,0x46,0x5e,0xd1,0x99,0x39,0xea,0xf9,0xdf, +0x71,0x8e,0x78,0x37,0x33,0x96,0x98,0x77,0x44,0x1f,0xf1,0xaa, +0x21,0x46,0xa4,0xb5,0xd1,0x77,0x73,0x9e,0xf7,0xa4,0x9f,0x75, +0x4c,0xaa,0x3f,0x66,0xc5,0x82,0x50,0x8b,0x5a,0x7b,0xf4,0x14, +0xef,0x17,0xaa,0xd9,0x43,0xe7,0xf4,0xd0,0x06,0xc8,0x17,0x33, +0x7e,0xff,0x20,0xa9,0x33,0x76,0x2a,0x6c,0x5b,0xf6,0x9c,0x59, +0xc4,0xf1,0xe0,0x94,0x7d,0x51,0xcc,0xb8,0x89,0x93,0x4e,0x8b, +0x9f,0x5a,0x92,0xe5,0xae,0x57,0x67,0xed,0xa6,0x5d,0xd5,0x3d, +0x14,0x8d,0x34,0xe3,0x6d,0x15,0x7b,0xed,0xcc,0xa8,0x87,0x2a, +0x67,0x4c,0x9e,0x5d,0xfd,0x32,0x7e,0x64,0x44,0xc8,0xed,0x4b, +0xdc,0xee,0xbe,0x75,0xae,0x72,0x66,0x1b,0x70,0xdf,0x85,0xd6, +0xc1,0xae,0xd8,0x91,0x4d,0xee,0xd8,0x88,0x7a,0xdb,0x3f,0xe6, +0xb7,0x63,0x51,0x5f,0xc2,0xe7,0x7b,0xec,0x67,0xac,0x8d,0x8e, +0x74,0x77,0x62,0x7c,0x4f,0x24,0x6b,0x5b,0x85,0xb6,0x47,0xd8, +0x6f,0xdb,0x86,0xce,0x96,0xe5,0xed,0xe3,0xf5,0xf4,0x5d,0x87, +0x5a,0x78,0x47,0xe9,0x9d,0x91,0x26,0x1c,0xdb,0x77,0xe7,0xfa, +0x83,0xfa,0xe6,0x38,0x8e,0x58,0xc0,0x53,0x78,0x89,0x83,0xa7, +0x1a,0xdd,0xc0,0x55,0x06,0x9d,0x71,0x24,0xcd,0x57,0x52,0xae, +0x8d,0xf6,0x72,0xbb,0x96,0x20,0x2b,0x61,0xaf,0x56,0x95,0xe7, +0xad,0x39,0xc7,0xa4,0xd8,0x3e,0xfd,0xd8,0x39,0x33,0x02,0x8e, +0x54,0xec,0x0c,0x36,0x55,0xce,0xfc,0x0c,0xd1,0x77,0x6a,0xf8, +0xd5,0x7e,0xbe,0x4b,0xad,0x72,0xfa,0x82,0xad,0x15,0xaf,0x77, +0x5a,0x69,0x94,0x48,0xc8,0x6d,0x91,0xf8,0x9d,0xf7,0xea,0xcd, +0x70,0xde,0xb6,0x15,0xe0,0x5b,0x3d,0x87,0x6b,0x1b,0xf0,0xed, +0x0d,0xa5,0xed,0x8f,0x5b,0xed,0x20,0x60,0xdb,0x6a,0xa1,0xf8, +0xf5,0xe4,0x12,0xf6,0x2d,0x9c,0x5a,0x46,0xf5,0xad,0xf5,0x3c, +0x72,0x7d,0x2f,0xd3,0x72,0xad,0x22,0xba,0xfc,0x9e,0xd9,0x82, +0x02,0xce,0xe8,0x47,0xea,0x83,0x99,0x59,0xa0,0x86,0x36,0xbb, +0x36,0x7e,0xec,0x9d,0x7d,0x17,0x58,0xff,0x19,0xeb,0x52,0xcf, +0x99,0x59,0x9c,0xf7,0xfb,0x55,0x56,0xdb,0x6b,0xbc,0x6b,0xdd, +0xf0,0x3e,0xf9,0x76,0xfe,0x80,0x5d,0xf6,0x4d,0xb4,0xd3,0xaa, +0xac,0x6e,0x96,0x11,0xf2,0x39,0xce,0x51,0x11,0xc9,0x4f,0x48, +0xf8,0xfe,0xac,0x4d,0x59,0x00,0x6d,0x7a,0xc3,0xde,0x26,0xbb, +0xdc,0xea,0x3c,0x21,0xb1,0xb3,0x1f,0x04,0x13,0xf6,0x35,0x19, +0x2e,0xce,0xc6,0xde,0x14,0x51,0x21,0x46,0x41,0x0b,0x46,0x79, +0x66,0xb3,0xf3,0x62,0xb6,0x8c,0x7d,0x10,0xa6,0xee,0xe6,0x0c, +0x27,0xab,0x68,0x94,0x70,0x72,0x7a,0x82,0x31,0x2d,0x33,0x93, +0x03,0x62,0xfa,0x23,0x4b,0x88,0xc6,0x40,0x0b,0x3d,0x6b,0x65, +0x6e,0x9d,0x82,0x9e,0x98,0xa2,0xca,0x73,0xe7,0x68,0x6f,0x54, +0xb3,0x96,0x51,0x44,0x4b,0x3c,0x6f,0xc4,0x12,0x63,0x2d,0xc0, +0x76,0x6e,0x6c,0x3f,0x5a,0x5b,0xfa,0x5f,0xb2,0x62,0x6a,0xea, +0x64,0x06,0x95,0x25,0xf2,0x7c,0x22,0x9a,0x27,0x15,0x3d,0xa7, +0xc8,0xad,0x4f,0xfc,0xfc,0x13,0x43,0xb1,0x55,0x88,0x16,0xd6, +0xa8,0x69,0xc5,0x37,0x6e,0x6f,0x9e,0xcf,0x63,0x63,0xba,0xb0, +0x1b,0xd3,0x84,0xdb,0xaa,0x6d,0xc6,0x43,0xb6,0x9c,0xf1,0x71, +0x0a,0x3f,0x8d,0xb6,0x2f,0xda,0xec,0x21,0x3b,0x5b,0x9c,0xb0, +0xfd,0xc8,0x61,0x77,0x75,0xf7,0xa8,0x1f,0x89,0xb4,0x56,0x02, +0x76,0x46,0x9e,0xe6,0xed,0xd2,0xf6,0xb6,0x6d,0x1e,0xb2,0xeb, +0x49,0x35,0x7f,0xa7,0xfd,0xe9,0xe2,0x91,0xc8,0x6a,0x7c,0xa1, +0x96,0x23,0x96,0xff,0x95,0x7f,0x9f,0xc7,0xfc,0x1a,0xb2,0x5d, +0x6e,0xbb,0x62,0x21,0x45,0x3a,0xd7,0x42,0x14,0x7a,0x52,0xa4, +0xc8,0x07,0xf5,0x28,0x3d,0x41,0x4f,0xd3,0x33,0xf5,0x3c,0xbd, +0x58,0x9f,0xa7,0x57,0xe9,0xb5,0x7a,0x83,0xbe,0x46,0xdf,0x80, +0xbd,0xcd,0xfa,0x76,0x7d,0x8f,0xbe,0x5f,0x6f,0xd1,0x8f,0xe8, +0xc7,0xf4,0x93,0x7a,0x87,0xde,0xa9,0x77,0xeb,0x17,0xf5,0xcb, +0x28,0xfb,0xf0,0x6d,0x8d,0x7e,0x53,0x1f,0xd2,0xef,0xe9,0x23, +0x3a,0xac,0x4f,0xfa,0x94,0x7e,0xd3,0x97,0xe2,0xcb,0xd4,0xab, +0x7c,0x41,0x5f,0x81,0xde,0xe7,0x2b,0xd6,0x2f,0xfa,0x7a,0xf8, +0x7a,0xe0,0xfa,0x6d,0xd9,0x26,0xb4,0x65,0xf3,0x95,0xfb,0xca, +0x51,0x53,0x67,0x9b,0x87,0x6d,0x26,0xea,0xdc,0xe2,0xe6,0xab, +0xc0,0x33,0x98,0xe7,0x69,0xbe,0x99,0x27,0x34,0x9b,0xf9,0x7e, +0x95,0x6f,0x18,0x9e,0x25,0x6e,0xf3,0x8d,0xf1,0x8d,0x69,0x7e, +0x14,0xc7,0x27,0x81,0x27,0x86,0x2b,0xd8,0x7c,0xd3,0xc9,0x9b, +0xb6,0x6d,0x8f,0xd9,0x6d,0x87,0x67,0xdb,0xc9,0x6d,0x77,0x5b, +0x36,0xdf,0x6c,0xdf,0x6c,0xf0,0xdd,0xd9,0x5e,0xf4,0x2d,0xf0, +0x2d,0x80,0x04,0x5a,0xdc,0x20,0x8b,0x1a,0xb3,0xf9,0x96,0x52, +0x42,0xcd,0xb7,0xf7,0xb0,0x85,0xcd,0xe6,0x53,0x66,0xc3,0x59, +0x6d,0xdc,0x7c,0x2b,0x7d,0x99,0x46,0xc6,0xe4,0xdb,0x1a,0x23, +0xe9,0x36,0x6e,0xc5,0x76,0xeb,0x11,0xbf,0x41,0xae,0x9b,0x89, +0xaa,0x7d,0xd8,0x37,0xb5,0x3d,0xe2,0x62,0x29,0x88,0x23,0x2f, +0x3a,0xdf,0xfb,0xd6,0xf9,0x36,0xfa,0xae,0xd5,0x87,0x7c,0x9b, +0x7c,0x5f,0x21,0xa6,0x26,0x40,0xbe,0x77,0xe8,0x2d,0xa6,0x40, +0x2a,0xf7,0xa2,0x3e,0x33,0x81,0xd9,0x1d,0x40,0x29,0xaf,0xa5, +0x4f,0xb2,0xb6,0x29,0xfa,0x65,0x5f,0x10,0xff,0x5b,0x84,0x01, +0x3d,0x0e,0x32,0xee,0xb0,0xbf,0x75,0xa4,0x1a,0x91,0xc7,0x3d, +0xc4,0xc6,0x2a,0xe0,0x86,0x1c,0xb7,0xdc,0x3c,0x64,0x9f,0xbc, +0x07,0xee,0x41,0xde,0xf9,0x94,0x5d,0x35,0x57,0x8a,0x8f,0x0c, +0x95,0x1d,0x49,0x07,0x91,0x06,0x49,0xdb,0x91,0x76,0xe2,0x39, +0x0f,0x72,0xbf,0x0b,0xf7,0xaf,0xe7,0x7e,0x29,0xf7,0xb7,0x72, +0xff,0x19,0xd2,0x3c,0x1e,0xb9,0x91,0xf4,0x08,0xe9,0x5f,0x79, +0x3c,0x97,0xfb,0x61,0xee,0x6f,0xe2,0xfe,0x27,0xdc,0xbf,0x8d, +0xfb,0x87,0xb9,0x3f,0x81,0xb4,0x92,0x74,0x2e,0xe9,0x00,0xd2, +0xa5,0xa4,0x2b,0x79,0xe6,0x5e,0xd2,0x7f,0xf0,0xc8,0x6c,0xd2, +0xde,0xa4,0xf7,0x93,0xae,0x20,0xed,0x46,0x3a,0x89,0xb4,0x88, +0x74,0x0e,0xe9,0xf3,0xa4,0xbd,0x48,0x1f,0x22,0x35,0xf1,0x9e, +0x54,0x39,0xdc,0x2f,0x24,0x7d,0x8b,0xd7,0xaf,0xe1,0xfe,0x6b, +0xa4,0x43,0x48,0x2f,0xe4,0x99,0x15,0xdc,0x2f,0x21,0x9d,0x4e, +0x7a,0x1d,0xa9,0x26,0x5d,0x45,0xea,0x70,0xa6,0x27,0x69,0xb1, +0xa1,0x99,0xc7,0x32,0x4f,0xd0,0x62,0xe5,0x18,0x6e,0xcb,0x3b, +0xc4,0x1e,0x79,0x87,0xbc,0x57,0x3e,0x20,0x1f,0x92,0x5b,0xe5, +0xe3,0x72,0xbb,0x7c,0x46,0x3e,0x87,0x23,0x6d,0xdf,0xee,0x3d, +0x8d,0xed,0x81,0x53,0x6c,0x0f,0x25,0xd8,0xb6,0x9e,0x62,0x7b, +0xfc,0x34,0xb6,0xed,0xa7,0xd8,0x9e,0x49,0xb8,0x3d,0x77,0x8a, +0x6d,0x8f,0xe5,0x9b,0xf9,0xdc,0x2b,0xab,0xb1,0xe7,0x70,0x74, +0xab,0xe5,0x68,0x84,0x4b,0xce,0x33,0x6e,0xe5,0x53,0x45,0x6b, +0xc3,0x7b,0x44,0x90,0x2f,0x8f,0x93,0x7e,0x40,0xba,0x9a,0xd2, +0xff,0x11,0xf7,0xdf,0xa6,0xc4,0x2f,0x26,0x4d,0xe6,0x91,0x79, +0xa4,0x3b,0x78,0x84,0xa8,0x53,0x5d,0x79,0xe4,0x6e,0x4a,0x79, +0x4c,0xe6,0x3c,0x4a,0xf9,0x49,0x13,0x3b,0xa8,0x1e,0xff,0x4d, +0xa5,0xfc,0x53,0x95,0xdf,0xca,0x7b,0xe4,0xfd,0x72,0x0b,0x8a, +0x59,0x2f,0xee,0x11,0xf9,0xa4,0xdc,0x21,0x77,0xca,0xdd,0xf2, +0x45,0xf9,0xb2,0xdc,0x27,0x6b,0xe4,0x9b,0xf2,0x10,0x57,0x91, +0x0b,0xcb,0x93,0x4a,0xa9,0x14,0x95,0xa9,0x82,0x28,0x05,0xaa, +0x58,0xf5,0x50,0xe5,0xaa,0x42,0x0d,0x53,0x63,0xd4,0x24,0x35, +0x5d,0xcd,0xc6,0x7f,0x0b,0x50,0x32,0xd5,0x52,0xb5,0x52,0xad, +0xc1,0x19,0xeb,0xb0,0xbf,0x51,0x6d,0xc4,0xf5,0xcd,0x1d,0x1e, +0x53,0xd7,0xf2,0x2e,0xf7,0xab,0x4d,0xea,0x2b,0xd8,0xee,0xc0, +0x7d,0x76,0xc8,0xdd,0xea,0x5e,0x73,0x2f,0xf5,0x00,0xee,0xf7, +0xa2,0x7a,0x88,0xf7,0x33,0x77,0x74,0xb6,0x93,0xb8,0x5f,0x8a, +0xda,0x8a,0x3b,0x3e,0x8e,0xad,0x00,0xdb,0x6c,0xdc,0x75,0x3b, +0xee,0x5a,0xc1,0xbb,0x4e,0xc2,0xff,0xe6,0xbe,0xce,0xf6,0x0c, +0xef,0xbd,0x54,0x3d,0xc7,0xfb,0x3b,0xdb,0x46,0xb5,0x07,0x77, +0xde,0xab,0xaa,0xd5,0xab,0xe6,0x2e,0xea,0x00,0x9f,0xe0,0x2d, +0x5c,0x69,0x23,0x6b,0x3f,0xc6,0xad,0xf9,0x4a,0x1c,0xc9,0xc4, +0xb7,0xef,0xaa,0x90,0x3a,0xaa,0x1a,0xd4,0x27,0xa6,0xd6,0xda, +0x07,0x9e,0xdc,0xaf,0x03,0x3a,0x5b,0x55,0xa3,0x3e,0xf7,0xa3, +0x96,0xbb,0xb1,0xbd,0x8c,0x27,0xd9,0x29,0x4f,0xca,0xb0,0xce, +0xd5,0x85,0x91,0x2b,0xea,0x6e,0x6a,0xa9,0x2e,0xe3,0x15,0xcb, +0x79,0xc5,0x20,0xae,0x99,0xa9,0x32,0x75,0x3f,0x3d,0x08,0xcf, +0x8e,0xe7,0xc3,0x93,0x3d,0x89,0xa7,0xdf,0x8a,0xfb,0x9a,0x33, +0x36,0xa2,0xae,0x86,0x7f,0xb3,0x0d,0xfe,0x54,0x21,0xe9,0x4e, +0xd0,0x93,0x66,0x5f,0x76,0x24,0x0d,0x92,0x06,0x48,0x73,0x79, +0xce,0x8d,0x3c,0xe7,0x7a,0x75,0xc8,0xd8,0x59,0x1e,0x2f,0x26, +0xcd,0x23,0x1d,0x44,0xda,0x8e,0x67,0xfe,0x9d,0xf4,0x7d,0x1e, +0x29,0xe0,0x7e,0x98,0xfb,0x9b,0xb8,0xff,0x09,0xe9,0x09,0xd2, +0xc3,0x3c,0x3e,0xc1,0x5c,0x59,0x56,0x92,0xce,0x25,0x1d,0x40, +0xda,0x97,0xf4,0x7c,0xd2,0x95,0xbc,0xfb,0x5e,0xee,0x27,0x93, +0x8e,0xe7,0x91,0xaf,0x72,0xff,0x7e,0xd2,0x15,0xa4,0xdd,0x48, +0x8b,0x49,0x8b,0x48,0xe7,0x90,0x3e,0x4f,0xda,0x8b,0xf4,0x21, +0xde,0x37,0x8d,0x75,0xb8,0x9e,0xfb,0xa5,0x86,0xaa,0xf6,0xdc, +0x2f,0x24,0x7d,0x8b,0x47,0x66,0xf1,0xfc,0x21,0xa4,0x17,0x1a, +0x0a,0xce,0x99,0xfd,0x12,0xd2,0x74,0x9e,0x99,0x43,0xda,0x93, +0x57,0xdb,0xcc,0xfd,0xcb,0x2c,0x67,0xcc,0x39,0xd3,0x49,0xaf, +0x23,0xd5,0xa4,0xab,0x48,0xaf,0x67,0xfd,0x8f,0xf3,0xcc,0x9b, +0xf8,0xdb,0x77,0x49,0x1b,0x79,0xe4,0x62,0xd2,0x7f,0xf2,0xcc, +0xf3,0x48,0x07,0x92,0x3e,0x6d,0x68,0xda,0xd1,0xb4,0x86,0xa8, +0x35,0x47,0x5b,0x28,0x0d,0xa5,0x54,0xf4,0x16,0x03,0x40,0x4b, +0xed,0x9e,0xd9,0x8c,0x64,0x0f,0x19,0x4b,0x61,0xa8,0x78,0x8b, +0xb2,0x4b,0x56,0x1f,0x60,0xbf,0x89,0x47,0x6e,0x46,0xbb,0x74, +0x8e,0x58,0x24,0xce,0x13,0x2b,0xc4,0x4a,0x71,0xbe,0xb8,0x40, +0x5c,0x28,0xd6,0x8a,0x75,0x62,0xbd,0xb8,0x4c,0x6c,0x10,0x1b, +0xc5,0x55,0xe2,0x6a,0xb1,0x49,0xdc,0x84,0xf3,0xbe,0x22,0xbe, +0x2a,0x6e,0x53,0x1b,0x80,0x9d,0xab,0xd4,0x35,0xea,0x5a,0x75, +0xbd,0xba,0x59,0xdd,0xaa,0xbe,0xae,0xee,0x54,0xf7,0xa8,0x7b, +0xd5,0x83,0xea,0x7b,0xea,0x47,0xea,0x51,0xf5,0x63,0xf5,0x13, +0xe8,0xcb,0x13,0xd0,0x94,0x67,0xd5,0xaf,0xd4,0x4e,0xf5,0x6b, +0xe8,0xc4,0x6f,0xd4,0xf3,0xea,0x15,0xb5,0x4f,0xbd,0xae,0x6a, +0xd4,0xdf,0xa0,0x07,0x6f,0xaa,0x43,0xea,0x1d,0xa0,0xbd,0x4e, +0x1d,0x56,0xff,0x54,0xff,0x52,0xc7,0xd5,0x09,0xd5,0xa8,0x85, +0x96,0x5a,0x6b,0x9f,0xf6,0xeb,0x24,0x9d,0xae,0x33,0x74,0xb6, +0x6e,0xa7,0x73,0x74,0x10,0x38,0xef,0xa8,0xf3,0x74,0xbe,0x2e, +0xd0,0x9d,0x74,0xa1,0x2e,0xd6,0x5d,0x75,0x77,0xdd,0x43,0xf7, +0xd4,0x65,0xba,0x97,0xee,0xab,0x2b,0xf5,0x10,0x3d,0x54,0x0f, +0xd3,0xc3,0xf5,0x08,0x3d,0x92,0x51,0xc9,0x24,0x3d,0x59,0x4f, +0xd1,0x53,0xf5,0x59,0x88,0x60,0x66,0xe9,0xd9,0x7a,0x8e,0x9e, +0xab,0xcf,0x46,0x6c,0x3b,0x5f,0x2f,0xd0,0xe7,0xe8,0x85,0x7a, +0x11,0x22,0x96,0x25,0x7a,0xa9,0x5e,0xa6,0xcf,0xd5,0xcb,0x11, +0xa1,0xaf,0xd0,0x2b,0xc1,0x07,0x1f,0x9e,0xec,0x15,0x73,0x7f, +0xec,0x4f,0xb1,0x3c,0x89,0xf0,0xe1,0x2a,0x87,0x03,0xf6,0xc9, +0xaf,0xf7,0x3c,0xb5,0x79,0xe2,0x9f,0xe0,0x49,0x77,0xda,0xa7, +0x34,0xcf,0xf8,0xa6,0x7d,0x1e,0xe9,0x3e,0x49,0x10,0xb5,0x2f, +0x76,0xeb,0x77,0xba,0x75,0x53,0xa2,0x8f,0x98,0x2b,0xcc,0x7a, +0x2e,0x8b,0xc5,0x25,0x22,0x19,0x52,0xd9,0x80,0x76,0xff,0x46, +0x6c,0x05,0x90,0xc9,0x6d,0xa2,0x93,0xba,0x4c,0x5d,0x21,0x8a, +0xd4,0x95,0xea,0x4a,0xd1,0x4d,0x5d,0xad,0xae,0x16,0x25,0xea, +0x4b,0xea,0x3a,0x51,0xaa,0x6e,0x50,0x9b,0x45,0x19,0xec,0xdd, +0xed,0xa2,0xbf,0xba,0x43,0xdd,0x21,0x06,0xa9,0xbb,0xd4,0xdd, +0x62,0xb0,0xfa,0x86,0xfa,0x86,0x18,0xaa,0xbe,0xa9,0xb6,0x8a, +0x61,0x90,0xd7,0x63,0x62,0x3a,0x24,0xf6,0x53,0x31,0x03,0x32, +0xfb,0xb9,0x98,0xad,0x9e,0x52,0x4f,0x89,0xb9,0xb0,0x68,0xcf, +0x88,0xb3,0x21,0xc1,0x5f,0x89,0x79,0x90,0xe1,0xaf,0xc5,0x7c, +0xb5,0x4b,0xed,0x12,0x0b,0xd4,0x1e,0xf5,0x82,0x38,0x47,0xfd, +0x4e,0xfd,0x5e,0x2c,0x52,0x7f,0x50,0x7f,0x11,0x4b,0xd5,0x7e, +0xf5,0x9a,0xb8,0x00,0x92,0x3d,0x20,0xd6,0xa8,0x37,0xd4,0x41, +0x71,0x09,0x2c,0x52,0x83,0xb8,0x54,0x9d,0x44,0x38,0xf2,0x15, +0xad,0xc0,0xd1,0xaf,0xeb,0x64,0x9d,0x26,0xee,0xd2,0x99,0xba, +0xbd,0xf8,0xa6,0xee,0xa0,0xf3,0xc4,0x77,0x20,0xcd,0x42,0xf1, +0x3d,0x5d,0xa4,0xbb,0x88,0x87,0x21,0xd1,0xae,0xe2,0x11,0x48, +0x75,0xb8,0xf8,0xa1,0x1e,0xa3,0xc7,0x88,0x67,0xf5,0x78,0x3d, +0x5e,0xfc,0xca,0x48,0x52,0xec,0x44,0x5b,0x6a,0x86,0x78,0x0e, +0x52,0x99,0x60,0xa5,0x92,0x18,0xa5,0x46,0x3e,0x7d,0x54,0x5f, +0xd5,0x5f,0x0d,0x54,0x95,0x6a,0x90,0x1a,0xaa,0x86,0xab,0x11, +0x6a,0xa4,0x1a,0xa5,0x46,0xab,0xb1,0x6a,0x9c,0x1a,0x0f,0x8b, +0x3d,0x59,0x4d,0x53,0x33,0xd4,0xd9,0x6a,0x9e,0x9a,0x0f,0x1b, +0x79,0x8e,0x5a,0xa8,0x16,0xa9,0xf3,0xd4,0x0a,0x75,0xa9,0x5a, +0x77,0x1a,0x48,0x51,0xe6,0x37,0xf8,0x1c,0x2e,0x2a,0xc5,0xe0, +0x66,0x48,0x39,0xdd,0x7a,0xb0,0x16,0xa7,0x81,0x85,0x02,0x31, +0x10,0x9b,0x10,0x43,0xb0,0x49,0xe2,0x42,0x11,0x17,0xa9,0xc4, +0x45,0x27,0xe2,0xa2,0x90,0xb8,0xe8,0x2c,0x4f,0xc8,0x8f,0x45, +0xb1,0xf1,0x97,0xc0,0x42,0x77,0xd5,0x5d,0xf4,0x51,0x65,0x88, +0x18,0xe8,0xb1,0x80,0x88,0x7e,0xaa,0x9f,0x18,0xa0,0xb0,0x89, +0x81,0xc6,0xab,0x89,0x0a,0x35,0x58,0x0d,0x11,0x95,0xf0,0x0a, +0xc3,0x80,0x91,0x31,0x6a,0x8c,0x18,0xa2,0x26,0xa8,0x89,0x40, +0xca,0x14,0x35,0x55,0x0c,0x87,0x6f,0x39,0x53,0x8c,0x54,0x67, +0xa9,0xb3,0xc4,0x68,0xf8,0xad,0x39,0x62,0x0c,0x78,0xb8,0x40, +0x8c,0x53,0x8b,0xd5,0x1a,0x31,0x5e,0x5d,0xac,0xd6,0x83,0x17, +0x4a,0x74,0xe5,0x9a,0xe9,0x82,0x99,0x1a,0x12,0xf5,0xe9,0x84, +0x63,0x5d,0xb0,0x69,0x7c,0xd3,0x55,0xf8,0xcc,0xbc,0xab,0xc2, +0x2f,0x7a,0x88,0x9e,0x22,0x49,0x94,0x8b,0x7e,0x22,0x05,0x4f, +0x33,0x14,0xd6,0xcb,0xf0,0x31,0x07,0x9c,0x34,0x73,0x55,0xac, +0x84,0x74,0x3b,0x80,0xa7,0x6b,0x71,0x8d,0x75,0xe0,0x6a,0x01, +0xf8,0x7a,0x95,0xe8,0x4c,0x2b,0x54,0x24,0xfe,0x84,0xad,0x58, +0x16,0xc8,0x02,0xd1,0x55,0x16,0xca,0xce,0xa2,0x9b,0xec,0x2a, +0xbb,0x8a,0x52,0x59,0x82,0x88,0xb8,0xbb,0x34,0x23,0x55,0x7b, +0xc8,0xfe,0xb2,0xbf,0xe8,0x29,0x17,0xca,0x45,0xa2,0x4c,0x2e, +0x91,0x4b,0x44,0x6f,0x79,0xa7,0xbc,0x53,0xf4,0x41,0x8c,0xb1, +0x55,0x94,0x33,0xee,0xea,0x2f,0x7f,0x23,0x5f,0x16,0x03,0xe0, +0xf5,0x0f,0x89,0x71,0xf2,0x5f,0x88,0xbc,0xce,0x92,0xc7,0x55, +0x89,0x98,0x0b,0x59,0xac,0x44,0xbb,0x42,0x8a,0x76,0x22,0x03, +0x77,0x6a,0xc4,0x9d,0x70,0x17,0xdc,0xa3,0x44,0x96,0xca,0xee, +0xb2,0x27,0xee,0x50,0x8e,0xeb,0x2f,0xc1,0x15,0xff,0x8c,0xb3, +0xca,0x39,0x4a,0xb3,0x13,0x9e,0xb0,0x44,0xf4,0x4d,0x88,0x88, +0x6b,0xc5,0x97,0x4d,0xcd,0x4d,0x6d,0xe4,0x71,0xf9,0xc9,0x69, +0xc8,0xba,0xb3,0xb1,0x4b,0x26,0x87,0x06,0x9b,0x0f,0x9c,0xca, +0x03,0xe7,0x0a,0xb0,0xe5,0x42,0xc2,0x45,0xa2,0xa3,0x28,0x16, +0xdd,0xf0,0x9f,0xb1,0xf6,0x9d,0xc1,0xd1,0x5e,0x38,0x56,0x8e, +0xad,0x1b,0xb8,0x5a,0x81,0xda,0x0c,0xc2,0x56,0x06,0x94,0x0c, +0xc5,0x37,0x06,0x27,0x7d,0x80,0x93,0x25,0xf8,0x66,0x19,0xb6, +0x41,0xb0,0xf7,0x97,0xa0,0xae,0x06,0x33,0xe3,0x89,0x99,0x09, +0xe2,0x1a,0xf1,0x25,0x31,0x91,0xc8,0x99,0x2c,0xf6,0x88,0xe3, +0x62,0x1a,0x9e,0xbd,0xaf,0xd8,0x84,0x67,0x5d,0x20,0x9e,0x92, +0x8b,0xe5,0x4e,0xf1,0x77,0xf0,0xec,0x15,0x39,0x0a,0xb1,0xd9, +0x3e,0x39,0x1b,0x9c,0x6b,0x90,0x73,0x0c,0xc6,0xe4,0x06,0xd9, +0xa4,0x4a,0xe4,0x55,0xa8,0xb1,0xd4,0x4f,0x69,0xd3,0xef,0xaf, +0x70,0x75,0x49,0x1c,0xa4,0xc1,0x47,0x25,0x8b,0x4c,0xc8,0x36, +0x15,0x32,0xed,0x8b,0xbd,0xfe,0xa8,0x51,0x4f,0x51,0x85,0x36, +0xd4,0x00,0xf1,0x07,0xf1,0x32,0x6a,0x51,0x2d,0xfe,0x22,0x86, +0x89,0xfd,0xe2,0x35,0x31,0x0a,0x6d,0x9e,0xff,0x12,0xe3,0xd0, +0xb2,0x7a,0x1b,0xf7,0x7f,0x07,0x2d,0xb2,0x33,0xc5,0x7b,0xe2, +0xdf,0x62,0x96,0xf8,0x00,0x6d,0xc3,0xb3,0xc5,0x7f,0xa4,0x14, +0x8b,0xa5,0x96,0x7e,0x71,0xa1,0x4c,0x96,0x29,0x62,0x8d,0x0c, +0xc8,0x0c,0x71,0xb1,0xcc,0x05,0x0e,0xd6,0xc9,0x2e,0xc0,0xc1, +0x55,0xc4,0xc1,0x97,0x64,0x6f,0x59,0x2e,0xae,0x95,0xfd,0x64, +0x3f,0x71,0xbd,0x1c,0x20,0x07,0x8a,0x1b,0x64,0x25,0x5a,0x94, +0x9b,0xe4,0x10,0x39,0x02,0xb2,0x18,0x85,0x76,0xd9,0x57,0xe5, +0x14,0x79,0x86,0xb8,0x47,0x9e,0x89,0x16,0xdc,0x7d,0x72,0xae, +0x3c,0x5b,0x3c,0x28,0xe7,0xcb,0xf9,0x62,0x0b,0x9e,0x75,0x89, +0xf8,0x9e,0x5c,0x2e,0xcf,0x17,0xdf,0x97,0x17,0xca,0x35,0x62, +0xab,0xbc,0x58,0x5e,0x2a,0x1e,0x93,0xeb,0xd1,0xce,0xda,0x26, +0x6f,0x40,0x6b,0x71,0xa7,0xbc,0x1d,0x2d,0xa8,0xdf,0xc9,0xbb, +0xe4,0x37,0xc4,0x5e,0xf9,0x4d,0xb4,0xfb,0x5e,0x36,0xad,0x18, +0xf1,0x8a,0x7c,0x58,0x3e,0x2e,0x5e,0x97,0xdb,0xe4,0x93,0xa2, +0x16,0x31,0xfe,0xcf,0xc5,0x3b,0xf2,0x29,0xf9,0xac,0xa8,0x43, +0xcc,0xb6,0x47,0xfc,0x5b,0x56,0xc9,0x17,0x45,0x18,0x6d,0x85, +0xbd,0xe2,0xb8,0xfc,0x23,0xf0,0x77,0x02,0xad,0x86,0x3f,0x8b, +0x93,0xf2,0x2f,0xf2,0x2f,0xe2,0x13,0xb9,0x5f,0xbe,0x2a,0x9a, +0xe4,0x6b,0xd8,0x24,0xb8,0xfb,0x86,0x54,0x88,0xda,0xde,0xc5, +0x73,0x1e,0x06,0x3e,0xb3,0xe5,0xbf,0xe5,0x51,0x19,0x94,0xc7, +0xe4,0x47,0x40,0xe4,0x7f,0xb0,0x15,0x82,0xf7,0x8d,0x40,0x66, +0x93,0xd2,0xb2,0x8b,0xf2,0xab,0x14,0x44,0x30,0x01,0x95,0x21, +0xcb,0x54,0x96,0xea,0x24,0xcb,0x55,0x67,0xc8,0x64,0x38,0xfc, +0x7e,0x6f,0x39,0xce,0xe8,0x34,0xa2,0xa5,0x89,0x6a,0x12,0x22, +0xad,0xa9,0xea,0x0c,0x39,0x49,0x9d,0xa9,0x66,0xc8,0xa9,0x6a, +0xa6,0x9a,0x25,0xcf,0x50,0x73,0xd4,0x1c,0x79,0x26,0xec,0xd1, +0xd9,0x72,0x86,0xb1,0x8c,0xf2,0x2c,0xd8,0xa4,0x85,0x72,0x96, +0x89,0x68,0xe5,0x6c,0x44,0x92,0x2b,0x11,0x3f,0xad,0x56,0xeb, +0x10,0x99,0x5d,0xa6,0x2e,0x97,0x8b,0xe1,0x5d,0xbe,0x24,0x97, +0xc2,0xbb,0xdc,0x24,0x97,0xa9,0xdb,0xd4,0xed,0x88,0xba,0xe0, +0x5d,0xe4,0x05,0xc6,0xbb,0x20,0x42,0xba,0x17,0x71,0xf5,0x6a, +0x44,0x9a,0x5b,0xe5,0x1a,0x78,0xc7,0x47,0xe5,0x45,0x26,0x82, +0x46,0x34,0xb3,0x43,0x3d,0x23,0x2f,0x31,0xbe,0x52,0xae,0x83, +0xa7,0x7c,0x5e,0x5e,0x0e,0xff,0x51,0x2d,0x37,0xa8,0x57,0xd5, +0x6b,0xf2,0x6a,0xf8,0x8c,0xb7,0xe5,0xb5,0xea,0xdf,0xea,0x03, +0x79,0x83,0xfa,0x48,0x35,0xc8,0x9b,0xe0,0x3f,0xa5,0xbc,0xd5, +0x78,0x64,0xf9,0x15,0x9d,0xa2,0x53,0xe5,0x6d,0xf0,0x1f,0xd9, +0xf2,0x76,0xc4,0x03,0x79,0xf2,0x4e,0xe3,0x33,0xe4,0x3d,0x88, +0x6f,0x07,0xc8,0x6f,0xc0,0xb3,0x8e,0x90,0xf7,0x99,0xfe,0x08, +0xf9,0x2d,0xf8,0x8c,0x29,0x88,0x9a,0xa7,0xeb,0xe9,0xf2,0x3b, +0x40,0xa0,0xd4,0xcf,0x00,0x8b,0x03,0x8d,0xd5,0xb6,0x7a,0xa4, +0xcc,0xca,0xf3,0xb0,0x46,0x79,0xd8,0x7c,0x7c,0x0f,0xea,0x87, +0xc6,0x74,0xc3,0x37,0x3d,0xb0,0x25,0x43,0x3f,0x2a,0xa0,0x69, +0x55,0xc0,0x65,0x2a,0x70,0xf9,0x36,0x70,0xfb,0x8e,0x30,0xf9, +0x81,0x27,0x81,0xb9,0xc1,0x90,0x45,0xba,0x18,0x2b,0xf3,0x80, +0xb6,0xc9,0x44,0xdb,0x99,0x44,0xdb,0x4c,0x60,0x65,0x8d,0x98, +0x05,0x94,0x5c,0x22,0x16,0x41,0x1b,0xae,0x14,0x4b,0xe4,0x66, +0xe0,0x63,0x39,0xf0,0xf1,0x20,0x30,0xfa,0x23,0xa0,0xe1,0x4a, +0xa0,0xe1,0x69,0x71,0x23,0x34,0xe8,0x45,0x71,0x2b,0x11,0x70, +0x37,0x24,0x97,0x22,0xee,0x81,0xcc,0xd2,0xc4,0x83,0x2a,0x47, +0x75,0x10,0x5b,0x8c,0xb4,0xc4,0xc3,0x90,0xd3,0x44,0xf1,0x03, +0xc8,0x69,0xaa,0x78,0x04,0x72,0x3a,0x53,0xfc,0xd0,0x48,0x42, +0x6c,0x85,0x0c,0xd6,0x88,0x1f,0xc1,0xd2,0x5e,0x22,0x7e,0x6c, +0x24,0x21,0x7e,0x62,0x24,0x21,0x9e,0x50,0x37,0xaa,0x1b,0xc5, +0x36,0x75,0x93,0xba,0x49,0xfc,0xd4,0xf0,0x5d,0x3c,0x69,0x38, +0x2e,0x7e,0x06,0xfe,0xfe,0x49,0x6c,0x37,0xfc,0x15,0x3b,0x54, +0xad,0xaa,0x15,0xbf,0x64,0x7c,0xf3,0x2c,0xf8,0x98,0x05,0xbf, +0x0a,0x3e,0x8a,0xe7,0xe8,0x7b,0x77,0xd1,0xd3,0xee,0x06,0x6f, +0xb4,0xde,0xaa,0xb7,0x0b,0xa1,0x7f,0xa9,0x5f,0x10,0x19,0x7a, +0xbf,0x7e,0x0b,0xf6,0x45,0x8a,0xdf,0x92,0x7f,0x3e,0xf0,0x28, +0x05,0x5c,0x09,0x40,0xa7,0xb3,0x44,0x36,0xec,0x63,0x8e,0x68, +0x0f,0x6b,0xdd,0x01,0xf6,0x28,0x0f,0x36,0xb0,0x00,0x56,0xb0, +0x10,0x96,0xa8,0x08,0xb6,0xb0,0x18,0xb6,0xbe,0x1b,0x6c,0x50, +0xa9,0xe8,0x4e,0x5b,0x5f,0x06,0x1b,0xd4,0x1b,0x16,0xa8,0x1c, +0x16,0xa0,0x1f,0x2c,0x00,0x7c,0x0e,0xf8,0x5c,0x09,0x3b,0x34, +0x98,0x16,0xea,0x25,0x58,0xda,0xb7,0xc4,0x21,0x71,0x14,0xda, +0xa1,0x64,0x92,0xcc,0x00,0x8f,0x7b,0x18,0x1d,0x96,0x7d,0x65, +0x85,0x1c,0x24,0x07,0xcb,0x91,0x72,0x9c,0x9c,0x28,0x27,0xcb, +0x99,0xb0,0x39,0xf3,0xe4,0x02,0x79,0x81,0xbc,0x48,0xae,0x95, +0xeb,0xe4,0xf5,0xf2,0x6b,0xb0,0xc4,0xdf,0x95,0xdf,0x97,0x3f, +0x44,0x0b,0xfb,0x09,0xf9,0x33,0x58,0xf7,0x5f,0xc9,0x5f,0xcb, +0x17,0xe4,0xef,0xe5,0x9f,0xe4,0x9f,0x61,0xaf,0xfe,0x2a,0x5f, +0x97,0x07,0x65,0xad,0x7c,0x47,0xd6,0xa1,0x2d,0xf9,0x21,0x5a, +0x93,0x0d,0xd0,0x9c,0x93,0xca,0xa7,0x52,0x55,0x3a,0x5a,0x49, +0x85,0xaa,0x17,0xf8,0xde,0x0f,0x9e,0xd0,0x69,0x51,0x4e,0x30, +0x7a,0x02,0x1f,0x3d,0x15,0x5e,0xfa,0x0c,0xa3,0x27,0x46,0x4b, +0xa0,0x23,0x67,0x33,0x6a,0x58,0x68,0xa4,0xa0,0x2e,0x82,0x14, +0xd6,0x22,0x6e,0x80,0x14,0x10,0x77,0x5d,0x03,0x39,0x5c,0xab, +0xae,0x83,0x46,0xdc,0x88,0x98,0xf8,0x36,0xf5,0x35,0x75,0x3b, +0x22,0xc4,0x3b,0x8c,0x3e,0x40,0x1b,0xbe,0xa5,0xb6,0x40,0x2a, +0x26,0x32,0x36,0x71,0xf1,0x4f,0xd5,0x93,0x88,0xb3,0x76,0xa8, +0xa7,0x11,0x61,0x45,0x22,0xe4,0xe7,0xd5,0x6e,0x55,0x85,0x76, +0xe2,0xfb,0xea,0x03,0xa0,0x1e,0x58,0x47,0xec,0xdb,0x55,0xf7, +0xd7,0x03,0x80,0x6c,0x13,0xcf,0x4e,0xd1,0xd3,0x89,0xe5,0x9f, +0x83,0xa6,0x71,0xa4,0x57,0x47,0xd1,0x4b,0xf6,0x01,0x6f,0xfa, +0xc9,0xa5,0xb0,0x20,0xaf,0xc0,0x7a,0x40,0x76,0x88,0xb1,0x5f, +0x11,0x26,0x86,0xd6,0x02,0x51,0x17,0x24,0x8d,0x4f,0xc8,0xc4, +0x44,0xf6,0x12,0x3e,0xd5,0x78,0x94,0xf3,0xb1,0x69,0x44,0x4f, +0x17,0x60,0xff,0x42,0x6c,0x5a,0x5c,0x81,0x2d,0x45,0x5c,0x89, +0x2d,0x85,0xb6,0x5f,0xa2,0x8e,0x4f,0x88,0x54,0xd4,0xf3,0xa7, +0x22,0x80,0xda,0xed,0x44,0x64,0x6c,0xe2,0x3f,0xbf,0xd1,0x59, +0x91,0x8c,0x9a,0xee,0x16,0x69,0xea,0x05,0x44,0x81,0x49,0x88, +0xde,0x0f,0x8b,0x74,0xc4,0xb8,0xc9,0xa0,0x26,0x9e,0x4b,0x65, +0x3c,0x17,0x20,0xa6,0x32,0x10,0x9f,0x97,0x89,0x24,0x3d,0x48, +0x0f,0x16,0x3e,0xc4,0xe8,0xc3,0x85,0xdf,0xf4,0x1a,0x8a,0x64, +0x3d,0x5a,0x8f,0x15,0x69,0x44,0x5c,0x06,0x22,0xe1,0x69,0xc0, +0x95,0x82,0xc7,0x99,0x83,0x4d,0xd2,0xff,0x2b,0x7a,0x7e,0x0d, +0xff,0xb9,0x0e,0xdf,0xad,0xe7,0x3a,0x97,0x97,0x61,0x4b,0x62, +0x14,0x90,0x8c,0x58,0x7c,0x13,0xea,0x7a,0x13,0xb6,0x54,0xc4, +0x03,0x66,0x55,0x50,0xb4,0xf4,0x51,0xa7,0xab,0xd4,0x55,0x22, +0x1d,0xb2,0xb8,0x46,0x64,0x20,0x46,0xbf,0x5e,0x64,0x22,0x4e, +0xbf,0x55,0x64,0x41,0x12,0x5f,0x17,0xd9,0x88,0xd7,0xef,0x14, +0xed,0x10,0xb3,0xdf,0x23,0x72,0x8c,0x85,0x12,0xed,0x11,0xbb, +0xff,0x48,0x04,0x8d,0x85,0x12,0x1d,0x10,0xc3,0xff,0x44,0xe4, +0x42,0x1e,0xcf,0x8a,0x8e,0x7c,0xe6,0x3c,0xc4,0xf3,0xcf,0x89, +0x7c,0xc4,0xf4,0xbf,0x11,0x05,0x7c,0xf2,0x4e,0x88,0xed,0xf7, +0x89,0x42,0xc4,0xf7,0xaf,0x8b,0xce,0x88,0xf1,0xdf,0x44,0xc4, +0x7d,0x5c,0x1d,0x17,0x5d,0x10,0xeb,0x9f,0x40,0x94,0xd5,0xa8, +0x1a,0x45,0x57,0x63,0xb3,0x44,0x37,0xc4,0xfd,0x7e,0x51,0x02, +0xbe,0x24,0x89,0x52,0xc4,0xff,0xe9,0xa2,0x3b,0xda,0x00,0x19, +0xa2,0x07,0xda,0x01,0x41,0xd1,0x13,0x6d,0x81,0x7c,0x51,0x86, +0xf6,0x40,0xb1,0xe8,0x65,0x2c,0x97,0xe8,0x8d,0x76,0xc1,0x48, +0xd1,0x87,0xdc,0x29,0x37,0x56,0x4c,0xf4,0x85,0xc4,0xa7,0x88, +0x7e,0xe0,0xce,0x54,0xd1,0x1f,0x6d,0x85,0xb3,0xc4,0x00,0xd3, +0x43,0x2f,0x06,0x22,0x76,0x98,0x25,0x2a,0x10,0x3f,0xcc,0x16, +0x95,0x88,0x21,0xe6,0x88,0x41,0x88,0x23,0xe6,0x8a,0xc1,0x88, +0x25,0xce,0x16,0x43,0x4c,0x0f,0xbe,0x18,0x8a,0x98,0x62,0xbe, +0x18,0x86,0xb8,0x62,0x81,0x18,0x8e,0xd8,0xe2,0x1c,0x31,0x02, +0xf1,0xc5,0x42,0x31,0x12,0x31,0xc6,0x22,0x31,0xca,0xf4,0xd6, +0x8a,0xd1,0x88,0x35,0x96,0x88,0x31,0x88,0x37,0x96,0x8a,0xb1, +0x88,0x39,0x96,0x89,0x71,0x88,0x3b,0xce,0x15,0xe3,0x11,0x7b, +0x2c,0x17,0x13,0x10,0x7f,0x9c,0x27,0x26,0x22,0x06,0x59,0x21, +0x26,0xe9,0x95,0x88,0x44,0x26,0x53,0x26,0x26,0x86,0x28,0x62, +0x0c,0xd1,0x49,0x2c,0xc5,0xd6,0x8d,0x91,0x44,0x27,0x71,0xae, +0x58,0x8e,0x7d,0x83,0xb2,0x42,0xa2,0xac,0x0b,0x51,0xd6,0x99, +0x28,0xeb,0x42,0x94,0x75,0x16,0xab,0xc4,0x6a,0x9c,0xb9,0x06, +0x5b,0xb1,0xb8,0x08,0x5b,0x57,0x71,0x31,0xb6,0x62,0x44,0x09, +0x97,0x60,0xdf,0x60,0xb0,0x84,0x18,0x2c,0x21,0x06,0x0b,0xa1, +0x57,0x97,0x41,0x36,0x97,0xc3,0xc6,0x49,0x75,0x05,0x5a,0x37, +0x05,0x6c,0xdd,0x14,0xd0,0xde,0x29,0xe8,0xda,0xb5,0x90,0xeb, +0x75,0x68,0xe3,0x68,0xe8,0xdc,0x0d,0x38,0x6e,0x2c,0x60,0x07, +0xb5,0x49,0x6d,0xc2,0xbe,0xb1,0x83,0x1d,0xa0,0x87,0x37,0x63, +0x7f,0x33,0x5a,0x40,0x3e,0xb4,0x80,0xbe,0x8a,0xfd,0xdb,0xd4, +0x6d,0xf8,0x2d,0x74,0x13,0xfb,0xa6,0x35,0xa4,0x88,0x09,0x3f, +0xb4,0xf4,0x2e,0x1c,0xb9,0x1b,0x2d,0xa3,0x24,0xb6,0x8c,0x14, +0xf1,0x91,0x8d,0xf6,0xd1,0x37,0x71,0xfc,0x3e,0x75,0x1f,0xae, +0xf6,0x2d,0xf5,0x2d,0xe0,0xe3,0x7e,0x75,0x3f,0x8e,0x7c,0x5b, +0x7d,0x1b,0x47,0x1e,0x50,0x0f,0x60,0xff,0x3b,0xea,0x3b,0xd8, +0x7f,0x50,0x3d,0x08,0xcd,0xd8,0xa2,0xbe,0x87,0x23,0x0f,0xab, +0x87,0x41,0x8d,0x15,0x6e,0x47,0x4d,0xca,0xa1,0x26,0xa5,0xa8, +0x5f,0xa8,0x5f,0x40,0xab,0x4c,0xdb,0xaa,0x1d,0xdb,0x56,0x1d, +0xd9,0xb6,0x72,0xd0,0x16,0xa0,0x86,0xa5,0x11,0x67,0xe9,0xd4, +0xb0,0x0c,0x6a,0x58,0x26,0x2c,0xf8,0x1f,0xc1,0x87,0x97,0x61, +0xc7,0x25,0xec,0x43,0x35,0xf6,0xff,0x8c,0x36,0x57,0x01,0xda, +0x5c,0xfb,0x41,0x5f,0x05,0x16,0x15,0x5b,0x5e,0x59,0x6c,0x79, +0x69,0x78,0xd1,0x7f,0xe0,0xb8,0xb1,0xf5,0x1d,0xd4,0xdb,0xea, +0x5d,0xec,0xd7,0xa9,0x3a,0xd4,0xcd,0x68,0x6a,0x29,0xda,0xda, +0xff,0x04,0x37,0xde,0x53,0x21,0x1c,0x87,0xa7,0xc5,0x6f,0x8f, +0xa8,0x23,0xd8,0x3f,0xaa,0x8e,0x62,0xff,0x43,0x75,0x0c,0xdc, +0x80,0xef,0x05,0x1f,0x0c,0x9a,0xb3,0xd5,0x49,0xf5,0x09,0x9e, +0xba,0x49,0x35,0x89,0x02,0xb6,0xe3,0x0a,0xa8,0xeb,0xa5,0xb0, +0x4f,0xa9,0xb0,0x30,0x01,0xb4,0xe9,0xf2,0x88,0x6f,0x45,0x8f, +0xd2,0x8e,0xc8,0xee,0x48,0x4b,0x90,0x43,0x4b,0x90,0x42,0x4b, +0xd0,0x9e,0x96,0x20,0x53,0xf7,0xd6,0xbd,0x61,0x21,0xe0,0xb1, +0x71,0x4e,0xa5,0xae,0x04,0x35,0xb6,0x21,0x40,0xdb,0x90,0x46, +0xf4,0xa7,0xd3,0x36,0x64,0xd0,0x36,0xb4,0xa7,0x6d,0x08,0x18, +0x4f,0x8e,0x33,0xcf,0x44,0x1b,0x30,0x9f,0x9a,0xd0,0x11,0x58, +0xbc,0x99,0x28,0x94,0x44,0xa1,0x22,0x0a,0x25,0x51,0xa8,0x88, +0x42,0x4d,0x14,0xfa,0x88,0x42,0x3f,0x51,0xe8,0x23,0x0a,0xfd, +0x44,0xa1,0x24,0x0a,0x93,0x88,0xc2,0x64,0xa2,0x30,0x89,0x28, +0x74,0xda,0xd5,0x29,0x8c,0x85,0x1d,0x4b,0xa8,0x89,0xc2,0x54, +0xa2,0x30,0xa0,0x36,0xa8,0x0d,0x90,0x90,0xc1,0x62,0x3a,0xb1, +0x98,0xc1,0x96,0x76,0x26,0x11,0x99,0x45,0x44,0x66,0xab,0x2f, +0xab,0x2f,0x43,0xba,0x06,0x97,0xe9,0x26,0x3a,0xc2,0xaf,0x0c, +0x0a,0xb3,0xd5,0x2d,0xea,0x16,0x1c,0x37,0x58,0x0c,0x10,0x8b, +0x01,0x62,0x31,0x0d,0x58,0xfc,0x1a,0xf6,0x6f,0x07,0x22,0xfb, +0x10,0x91,0x39,0xc4,0x62,0x1f,0x62,0xb1,0x3d,0xb1,0x98,0x06, +0x14,0xde,0x87,0xbb,0x7c,0x0b,0x98,0x0b,0x00,0x73,0xdf,0xc1, +0xbe,0x41,0x5b,0x50,0x7d,0x57,0x7d,0x17,0x32,0xde,0xa2,0xb6, +0xe0,0xf8,0xf7,0x80,0xbc,0xa0,0x7a,0x48,0x3d,0x84,0x23,0xdf, +0x57,0x3f,0xc0,0xaf,0x1e,0x51,0x3f,0xc4,0x71,0x83,0xc2,0x5c, +0xf8,0x9d,0x1f,0x03,0x67,0x8f,0xa1,0x9d,0x9f,0xc7,0xb8,0x20, +0x9f,0xb8,0x2c,0x50,0xdb,0xd4,0x36,0x58,0x35,0x83,0xce,0x42, +0x78,0xa4,0xed,0x38,0xf2,0x73,0xb4,0xff,0x3b,0x11,0xa3,0xb9, +0xc4,0x68,0x67,0x62,0xb4,0x88,0xe8,0xec,0xc2,0xf6,0x7f,0x1e, +0xda,0xff,0x7b,0x40,0x0d,0x3a,0x8b,0xd5,0xef,0xd4,0xef,0x40, +0x5f,0x54,0xbf,0xc7,0x99,0x06,0xa9,0xa9,0x44,0x6a,0x80,0x48, +0xcd,0x02,0x52,0x5f,0x01,0x97,0xfe,0x02,0xbc,0x76,0x25,0x5e, +0xbb,0x31,0x12,0xc9,0x32,0x7d,0x40,0xe0,0xc9,0x01,0xa0,0xb6, +0x84,0xa8,0x4d,0x37,0xb1,0x1f,0x7e,0x75,0x48,0x1d,0xc2,0xf1, +0x77,0xd4,0x3b,0x38,0xfe,0x2e,0xf0,0x9a,0x4d,0xbc,0x06,0x81, +0xd7,0xf7,0xf0,0xd4,0xff,0x52,0xff,0xc2,0x7e,0x08,0xd8,0xcd, +0x20,0x76,0xd3,0x88,0xdd,0x4c,0x55,0xaf,0xea,0x71,0x65,0x83, +0xe0,0x1c,0x20,0xf8,0x43,0xdc,0xeb,0x18,0x70,0x9c,0x49,0x1c, +0xb7,0x07,0x82,0x4f,0xe2,0xca,0x1f,0xab,0x8f,0x71,0xe4,0x13, +0xe0,0x38,0xa0,0xcd,0xeb,0xda,0x20,0xd1,0x1c,0xd0,0xc9,0x3a, +0xc5,0xa2,0x39,0x8d,0x68,0xce,0x22,0x8e,0x73,0xe1,0x7d,0xb3, +0x81,0xb6,0x76,0x3a,0x07,0xc8,0x6b,0xaf,0xdb,0xc3,0x7e,0x77, +0xd0,0x1d,0x60,0xbf,0x4d,0xc4,0xc4,0x7e,0x28,0x68,0x42,0x21, +0x50,0xde,0x93,0x28,0x2f,0x24,0xca,0xcb,0x74,0x77,0xdd,0x1d, +0xc7,0x7b,0x68,0xc4,0x3b,0xba,0xa7,0xee,0x85,0x7d,0x83,0xf8, +0x62,0xdd,0x47,0xf7,0x81,0x9e,0x94,0xeb,0x72,0xec,0xf7,0xd5, +0x7d,0x71,0x4d,0xa3,0x03,0x9d,0xf5,0x40,0x3d,0x10,0xc7,0x2b, +0x74,0x05,0xae,0x6c,0xf4,0xa1,0x08,0xfa,0x30,0x08,0xf7,0x1a, +0x0c,0xad,0xc8,0xa3,0x56,0x74,0x61,0x6f,0x48,0x1e,0x7b,0x43, +0x8a,0xa9,0x15,0x65,0x7a,0x9a,0x3e,0x03,0x7e,0xc3,0x68,0x45, +0x67,0x6a,0x85,0x59,0xeb,0xf2,0xe7,0x68,0x73,0xce,0x16,0xa3, +0xe9,0x43,0xc7,0xd2,0x4e,0x9f,0x47,0x4f,0x5a,0x42,0x3d,0x59, +0x41,0x3d,0xb9,0x88,0x7a,0xb2,0x82,0x7a,0x72,0x91,0xed,0xed, +0x5b,0xc9,0xbe,0x94,0xf3,0xd9,0x9f,0x62,0xb6,0xf3,0xa9,0x27, +0x17,0x50,0x4f,0x56,0x50,0x4f,0x56,0x53,0x4f,0xd6,0x50,0x4f, +0x56,0x53,0x4f,0xd6,0xd0,0x23,0x0f,0x11,0x97,0x63,0x1b,0x4a, +0xcb,0x7d,0x21,0x2d,0xf7,0x85,0xf4,0xce,0xa5,0xf4,0xce,0xe3, +0xe8,0x9d,0xbb,0xd3,0x3b,0xf7,0xa0,0x2e,0xad,0xa4,0x2e,0x2d, +0xa6,0x2e,0x4d,0xa1,0x2e,0x39,0x76,0x7d,0x39,0x7d,0xf7,0x24, +0x6a,0xd4,0x72,0x7a,0xf0,0x2e,0xd4,0x2b,0x45,0x3f,0x3e,0x91, +0xda,0x35,0x95,0xda,0x35,0x8d,0xda,0xa5,0xa9,0x5d,0x67,0xd0, +0xbf,0x77,0xa5,0xed,0x5f,0x4e,0xdb,0xbf,0x84,0xb6,0x7f,0x39, +0x6d,0xff,0x12,0x6a,0xdd,0x72,0xea,0xdb,0x74,0xc6,0x00,0x8e, +0x07,0x58,0x4e,0xad,0x9b,0x4a,0x0f,0xb0,0x9c,0x51,0x41,0x31, +0xb5,0x6e,0x2a,0xfd,0xc0,0x99,0xd4,0xbd,0xe5,0xd4,0xbd,0x19, +0x8c,0x13,0xfc,0xd4,0xc0,0xa9,0xf4,0x06,0x67,0xd1,0x1b,0x2c, +0xa7,0x37,0x58,0x42,0x6f,0x30,0x93,0xde,0x60,0x39,0xbd,0xc1, +0x12,0x7a,0x83,0xe5,0xf4,0x06,0x4b,0xa8,0x9f,0xb3,0xa8,0x9f, +0x49,0xf4,0x09,0xcb,0xa9,0x99,0x9d,0xa0,0x99,0xdf,0x87,0x25, +0x36,0xfe,0x61,0x39,0xf4,0xf3,0x11,0xe8,0xd5,0x0f,0xa1,0xa5, +0x13,0xa8,0xa5,0xb3,0xa9,0x9f,0x29,0x8c,0x43,0x52,0xa9,0x9f, +0x73,0xa8,0x9f,0x01,0xea,0xe7,0x5c,0x7a,0x8f,0xb3,0xa9,0x99, +0xb3,0xa9,0x99,0xf3,0x6c,0xcf,0x9c,0xf1,0x1e,0xf3,0xa9,0x9f, +0x0b,0x18,0xb1,0xa4,0x31,0x62,0x49,0xa7,0x27,0x39,0x87,0x9e, +0x64,0x29,0x75,0x75,0x21,0xb4,0xf4,0x45,0x68,0xce,0x5e,0xb5, +0x17,0x9a,0xf0,0x92,0x7a,0x09,0x7a,0x68,0x34,0x76,0x31,0x35, +0x76,0x0a,0x35,0x76,0x31,0x7d,0xcb,0x72,0xc6,0x39,0xd9,0xd4, +0xd8,0xe5,0xf4,0x30,0x53,0xe9,0x61,0xa6,0x51,0x57,0xcf,0x60, +0xe4,0xd3,0x8e,0x7e,0x66,0x39,0xfd,0xcc,0x12,0xfa,0x99,0xe5, +0xf4,0x33,0xb3,0xe8,0x67,0x56,0x51,0x6f,0xa7,0xd3,0xcf,0x2c, +0xa7,0xae,0x4e,0xa5,0xae,0x2e,0xa7,0x96,0x4e,0xa5,0x9f,0x39, +0x93,0xfa,0x39,0x83,0x11,0x54,0x0e,0x23,0xa8,0xf6,0xf4,0x39, +0x67,0xd1,0xe7,0xcc,0xa4,0xcf,0x59,0xce,0x68,0xaa,0x90,0xba, +0xba,0x9c,0x31,0x55,0x37,0xfa,0x9f,0x55,0x88,0x90,0x53,0xc4, +0x64,0xea,0xed,0x54,0xea,0xed,0x32,0x7a,0xa1,0xa9,0x8c,0xb2, +0x7a,0x52,0x87,0x67,0x53,0x87,0x83,0x8c,0xb8,0x3a,0xd0,0x2f, +0xcd,0xa3,0x5f,0x9a,0x43,0x8d,0x9d,0xcb,0xe8,0x2b,0x97,0x7a, +0xbb,0x88,0xde,0x69,0xa1,0xee,0x05,0x8d,0xed,0x4c,0x8d,0x3d, +0x9b,0xfa,0x39,0x8f,0x3a,0x39,0x8f,0x3e,0x6a,0x3e,0xb5,0x71, +0x01,0xa3,0xb5,0x8e,0x8c,0xd6,0xf2,0xe8,0xaf,0xce,0xa1,0xbf, +0x5a,0xca,0x98,0x2d,0x9f,0xfa,0xb9,0x88,0x91,0x5b,0x01,0x7d, +0xd7,0x7c,0x6a,0xe9,0x3c,0x6a,0xe9,0xb9,0xf4,0x5d,0xf3,0x18, +0xc5,0x95,0x31,0x8a,0x1b,0xc6,0x28,0xae,0x17,0xa3,0xb8,0xde, +0x8c,0xe2,0x86,0x33,0x8a,0x1b,0xc1,0x28,0x6e,0x24,0xa3,0xb8, +0x3e,0x8c,0xe2,0xca,0x19,0xc5,0x8d,0x62,0x14,0xd7,0x97,0x51, +0x5c,0x3f,0x46,0x71,0xfd,0x19,0xc5,0x0d,0x60,0x14,0x37,0x90, +0x51,0x5c,0x05,0xa3,0xb8,0x4a,0x46,0x71,0x83,0x18,0xc5,0x8d, +0x67,0x14,0x37,0x98,0x51,0xdc,0x18,0xe8,0x9c,0x69,0x09,0x98, +0xb6,0x5c,0x8a,0xa7,0x55,0xe0,0x78,0x4a,0xe5,0xf1,0x94,0xca, +0xb6,0x04,0x4c,0xff,0x9e,0x56,0xeb,0xd4,0x3a,0xb6,0x24,0x86, +0xa1,0xad,0x36,0x18,0xbf,0x99,0xcd,0x7e,0x3e,0x63,0x6b,0x34, +0xad,0x8c,0x8f,0xf1,0xba,0x9f,0xf1,0x7a,0x12,0xad,0x43,0x32, +0xe3,0xf5,0x14,0x5a,0x84,0x54,0xda,0x82,0x00,0x6d,0x41,0x9a, +0xea,0xa3,0xfa,0x00,0x9d,0x7d,0x55,0x5f,0x60,0xb1,0xbf,0xea, +0x0f,0x2c,0x0e,0xe4,0x9a,0xc3,0x95,0xaa,0x12,0x98,0x1b,0xa4, +0x06,0x01,0x5b,0x43,0xd5,0x50,0x60,0x62,0xb8,0x1a,0x0e,0x4c, +0x8c,0x70,0x56,0x01,0x56,0x23,0xe1,0xd9,0x46,0xa9,0x51,0xf0, +0x4b,0xa3,0xd5,0x68,0x78,0xb3,0xb1,0x6a,0x2c,0xbc,0xd0,0x38, +0x65,0x56,0xaa,0x1e,0xaf,0xc6,0xc3,0x77,0x4d,0x52,0x93,0xa0, +0x63,0x93,0xd5,0x64,0x78,0xb3,0x69,0x6a,0x1a,0x3c,0xd2,0x0c, +0x35,0x03,0x3a,0x76,0xb6,0x3a,0x1b,0x36,0x65,0x9e,0x9a,0x07, +0x6d,0x9f,0xaf,0xe6,0xc3,0x6a,0x9c,0xa3,0xce,0x81,0xc7,0x58, +0xa8,0x16,0xc2,0xcf,0x2c,0x52,0x8b,0xe0,0x01,0x8c,0x3c,0xba, +0x53,0x1e,0x3d,0x28,0x8f,0x9e,0x94,0x47,0x19,0xe5,0xd1,0x8b, +0xf2,0xe8,0xdd,0x4c,0x1e,0x7d,0x29,0x8f,0x7e,0x94,0x47,0x7f, +0xca,0x63,0x00,0xe5,0x31,0x90,0xf2,0xa8,0xa0,0x3c,0x2a,0x29, +0x8f,0x41,0x94,0xc7,0x60,0xca,0x63,0x08,0xe5,0x31,0x94,0xf2, +0x18,0xc6,0x79,0x68,0x8d,0xb5,0xce,0xa2,0x9d,0xce,0xa6,0x9d, +0x96,0xb4,0xd3,0xd9,0xb4,0xd3,0x92,0x52,0x6a,0x47,0x29,0xe5, +0x50,0x4a,0xed,0x29,0xa5,0x1c,0x4a,0xa9,0x3d,0xed,0x74,0x36, +0xed,0x74,0x1e,0xed,0x74,0x2e,0xed,0x74,0x1e,0xed,0x74,0x2e, +0x6d,0x73,0x47,0xda,0xe6,0x8e,0x94,0x67,0x3b,0x55,0xaa,0x4a, +0xc1,0x4d,0xd3,0x13,0x9c,0xac,0xca,0x54,0x19,0x78,0x8a,0x96, +0x2f,0x6c,0xad,0xe9,0x0f,0xd6,0xec,0x0f,0x4e,0x65,0x7f,0x70, +0x80,0xfd,0xc1,0x69,0x94,0x4a,0x50,0x0d,0x56,0x83,0x41,0x87, +0xa8,0x21,0x38,0xc7,0xf4,0x0d,0xfb,0x28,0x09,0x1f,0x7b,0x88, +0xd3,0xd1,0x5a,0x9e,0x00,0x4b,0x69,0x7a,0x2c,0x92,0xd5,0x14, +0x35,0x05,0x74,0xba,0x9a,0x0e,0xe9,0x9a,0x7e,0x8b,0x14,0xf6, +0x16,0x27,0x9b,0xfe,0x25,0x1c,0x31,0x68,0x4a,0x52,0x8b,0xd5, +0x62,0xdc,0x77,0x89,0x42,0xe4,0xa6,0x96,0xa9,0x65,0xb8,0xe3, +0xb9,0xea,0x5c,0xdc,0x71,0x39,0xb0,0x99,0x66,0xfa,0x9a,0x70, +0xe5,0xf3,0xd5,0x85,0xb8,0xf2,0x2a,0xb5,0x0a,0x57,0x46,0x5b, +0x1b,0x28,0xb9,0x44,0x5d,0x82,0xab,0x19,0x24,0x9a,0x1e,0x9c, +0x11,0xec,0x03,0xcf,0x63,0x1f,0x78,0xfe,0x7f,0x4f,0x2c,0xc8, +0xbe,0xf4,0x3c,0xf6,0xa5,0xe7,0x93,0x83,0xa9,0xe4,0x60,0x00, +0x1c,0xec,0x85,0x7a,0x9b,0x7e,0x9b,0x74,0xf2,0x31,0x83,0x7c, +0xcc,0x24,0x1f,0xb3,0xc8,0xc7,0x6c,0x72,0x30,0x9d,0x1c,0xcc, +0x20,0x07,0xdb,0x91,0x77,0x39,0xe4,0x5d,0x7b,0xf2,0x2e,0x95, +0xbc,0x4b,0x65,0x9f,0x4f,0x90,0x1c,0xec,0x40,0x0e,0xe6,0x92, +0x83,0xa9,0xe6,0x5d,0x33,0x8e,0x1b,0x3e,0x76,0x20,0x1f,0x3b, +0x92,0x8f,0x01,0xf0,0x71,0x09,0xee,0x6e,0x7a,0x87,0xd2,0xc9, +0xcd,0x4c,0x72,0x33,0x8b,0xdc,0xcc,0x26,0x37,0xdb,0x91,0x9b, +0x39,0xe4,0x66,0x7b,0xb5,0x5a,0xad,0xc6,0xd5,0xd6,0xa8,0x35, +0xb8,0x9a,0xe9,0x47,0xca,0x55,0x6b,0xd5,0x5a,0x5c,0xf3,0x52, +0x70,0xb6,0xa3,0x5a,0xaf,0xd6,0x73,0x76,0xe4,0x75,0xe4,0xef, +0x54,0xa0,0xb3,0x12,0x38,0x32,0x5a,0xdf,0x91,0xbc,0x9e,0x46, +0xdd,0xef,0x44,0xdd,0x2f,0x24,0x72,0xcf,0xa4,0x05,0xe8,0x4c, +0x19,0xcc,0xa0,0x0c,0x46,0x50,0x06,0x33,0x28,0x83,0x11,0x94, +0xc1,0x59,0x94,0xc1,0x4c,0xca,0x60,0x16,0x65,0x30,0x93,0x32, +0x98,0x45,0x19,0xcc,0xa0,0x0c,0x66,0x53,0x06,0x73,0x28,0x83, +0xd9,0x94,0xc1,0x1c,0x5a,0x92,0x22,0x1b,0x67,0x18,0x4b,0xd2, +0x85,0xb1,0xc5,0x70,0xda,0x93,0x62,0xda,0x93,0xae,0x94,0xcd, +0x59,0x62,0x0b,0xb6,0x6e,0x94,0xd0,0x54,0x4a,0x68,0x1a,0x91, +0x7e,0x06,0xe5,0x34,0x92,0x72,0x9a,0x4b,0xa4,0x8f,0xa2,0xfd, +0x29,0xa0,0x9c,0x46,0xd3,0x0a,0x49,0x4a,0x6b,0x12,0x6d,0x51, +0x0e,0x65,0x36,0x99,0x16,0x49,0x51,0x72,0xd3,0xa9,0x01,0x67, +0xd0,0x2e,0x69,0x4a,0xf1,0x0c,0x4a,0x71,0x34,0x6d,0x54,0x7b, +0xca,0x72,0x0c,0x2d,0x55,0x90,0x96,0xca,0x47,0x4b,0xe5,0xa7, +0x7e,0x8c,0xa1,0xa5,0x4a,0xa2,0xa4,0xa7,0xd0,0x5e,0x25,0xd3, +0x5e,0xa5,0xd0,0x5e,0x75,0xa0,0xec,0xc7,0x52,0xf6,0x23,0x29, +0xfb,0x91,0xb4,0x5a,0xa9,0x94,0xfd,0x38,0xca,0x7e,0x3c,0x65, +0x3f,0x92,0xb2,0x1f,0x46,0xd9,0x8f,0xa3,0x1d,0x0b,0xd0,0x8e, +0xa5,0x11,0x07,0x13,0x68,0xcd,0xd2,0x69,0xcd,0x32,0x68,0xcd, +0x32,0x89,0x8c,0xb9,0xd4,0xb0,0x51,0xc4,0xc4,0x24,0x62,0x62, +0x32,0x31,0x31,0x9d,0x98,0x18,0x43,0x4c,0x4c,0x21,0x26,0xc6, +0x12,0x13,0x59,0xd4,0xb3,0x89,0xc0,0xc4,0xc5,0xc0,0x8d,0xd1, +0xb6,0xf1,0x44,0x46,0x1e,0x90,0x71,0x29,0x30,0x64,0x34,0x6f, +0x02,0xf1,0x91,0x4f,0x6b,0x59,0x42,0x6b,0x59,0x4a,0x6b,0xd9, +0x9d,0xd6,0xb2,0x07,0xad,0x65,0x4f,0x5a,0xcb,0x32,0x5a,0xcb, +0x5e,0xb4,0x96,0xbd,0x69,0x2d,0xfb,0xd0,0x5a,0x96,0xd3,0x5a, +0xf6,0xa5,0xb5,0xec,0x47,0x6b,0xd9,0x9f,0xd6,0x72,0x00,0xad, +0xe5,0x40,0x5a,0xcb,0x0a,0x5a,0xcb,0x4a,0x8f,0xb5,0x74,0xbc, +0xd7,0x20,0xe0,0x32,0x9b,0xef,0x7e,0xa4,0x68,0xc4,0xa6,0xf8, +0x06,0x48,0xcb,0x42,0x59,0x28,0x7c,0xb2,0xb3,0xec,0x2c,0xfc, +0x7c,0x0f,0x94,0xc4,0x1e,0xd9,0x64,0x59,0x2a,0x4b,0x45,0x8a, +0xec,0x2e,0xa1,0xa9,0xb2,0xa7,0xec,0x29,0x02,0x7c,0x33,0x94, +0x26,0xcb,0x65,0xb9,0x48,0xe7,0xfb,0xa1,0x0c,0xbe,0x19,0xca, +0xe4,0x9b,0xa1,0x2c,0xf9,0x67,0xf9,0x67,0x5c,0x5f,0xc1,0xb6, +0x66,0x60,0x53,0xd4,0x00,0xcd,0x77,0x28,0x3e,0xcf,0xbb,0x36, +0x3f,0x91,0x9e,0x44,0x8c,0x27,0x11,0xd7,0xa9,0xc4,0x75,0x32, +0x71,0x9d,0x4a,0x5c,0x27,0x13,0xd7,0x49,0xde,0x9e,0x35,0xd9, +0x43,0x9a,0x99,0xad,0x0d,0x42,0xb5,0xca,0x55,0xf9,0x40,0x8a, +0xc1,0xa9,0xe4,0xbb,0xdd,0xe6,0x6f,0xca,0xcc,0x3b,0x32,0x9f, +0xe8,0x8b,0xcd,0x4f,0x1d,0x4c,0xa2,0x0e,0x26,0x53,0xfb,0x52, +0xa8,0x7d,0xa9,0xd4,0xbb,0x00,0x3d,0x6f,0x1a,0x3d,0x6f,0x3a, +0xf5,0x25,0x83,0x9e,0x37,0x93,0xfa,0x92,0x25,0xae,0xc5,0xd6, +0x5b,0x7c,0x19,0x5b,0x1f,0x6a,0x4d,0x36,0xb5,0xa6,0x9d,0x5c, +0x28,0x17,0x8a,0x1c,0xb9,0x48,0x2e,0x12,0xed,0xe5,0x71,0x79, +0x5c,0x04,0xe5,0x27,0xf2,0x13,0xc4,0x49,0x46,0xb2,0xb9,0x94, +0x6c,0x47,0x4a,0x36,0x8f,0x92,0xcd,0xa7,0x64,0x0b,0x28,0xd9, +0x4e,0x94,0x6c,0x21,0x25,0xdb,0x99,0x92,0x2d,0xa2,0x64,0xbb, +0x50,0xb2,0xc5,0x94,0x6c,0x57,0x4a,0xb6,0x1b,0x25,0x5b,0x42, +0xc9,0x96,0x52,0xb2,0xdd,0x29,0xd9,0x1e,0x94,0x6c,0x4f,0x4a, +0xb6,0x8c,0x92,0xed,0x85,0xe7,0x5e,0xc2,0xb8,0xa4,0x3d,0xf6, +0x14,0xdf,0x79,0x99,0x3e,0x41,0x93,0x61,0x2c,0x6d,0x9f,0xbd, +0x79,0xa7,0x98,0x87,0x67,0x4f,0x01,0x77,0x52,0xb1,0x49,0xe6, +0x3b,0x6b,0xf6,0xe5,0xfb,0x28,0x31,0x3f,0x73,0x9b,0x8b,0xd9, +0x2f,0x5d,0x00,0x29,0xe6,0xe0,0x57,0x41,0xce,0x2a,0xde,0x01, +0x9b,0x79,0x67,0x66,0xb6,0x8e,0xd8,0x82,0xec,0xfb,0xef,0xc4, +0x37,0x69,0xf9,0xb0,0x63,0x85,0xb8,0x43,0x67,0x6c,0x85,0x7c, +0x1b,0x90,0x8c,0x6b,0x14,0xe3,0x3e,0xe6,0xad,0x5a,0x0a,0xdf, +0x09,0x74,0x11,0x3d,0xb1,0xa5,0xf2,0xdd,0x5a,0x8a,0xe8,0xc7, +0x77,0x96,0x26,0xb3,0xa2,0x33,0x31,0x12,0xe0,0x1b,0x83,0xae, +0x44,0x4a,0x1a,0x91,0x92,0xce,0xfc,0xf3,0x0c,0xe2,0xa5,0x03, +0xf1,0x92,0x49,0xbc,0x64,0xd2,0x1a,0x66,0x11,0x35,0xd9,0x44, +0x4d,0x3b,0xa2,0x26,0x9b,0xa8,0x69,0x47,0xd4,0x64,0xd2,0x1a, +0x76,0xa4,0x35,0x2c,0xa2,0x35,0xec,0x48,0x6b,0x58,0x44,0x34, +0xe5,0x10,0x4d,0x39,0x7c,0x53,0xd7,0x8d,0xb6,0x2f,0x4b,0xec, +0x11,0x2f,0xe0,0x69,0xaa,0xc4,0x01,0x70,0xef,0xef,0xa2,0x1e, +0xcf,0x7b,0x54,0x98,0x9c,0xef,0x63,0xa2,0x01,0x1c,0x38,0x0e, +0x4d,0x91,0xe2,0xa4,0x04,0xa2,0x65,0xa6,0x6c,0x07,0x7d,0xc9, +0x91,0x1d,0x4c,0x5e,0x8a,0xcc,0x13,0x05,0x32,0x1f,0xda,0xe1, +0x23,0x36,0xfd,0xb2,0xb7,0xec,0x8d,0x23,0x7d,0xa0,0x17,0xc5, +0x72,0x80,0xac,0xc4,0xfe,0x60,0x39,0x18,0x74,0x88,0x9c,0x89, +0xdf,0xce,0x92,0x73,0xb0,0x3f,0x57,0x2e,0x10,0xb9,0xf2,0x1c, +0xa0,0x27,0x8f,0xe8,0x29,0x96,0x8b,0xe5,0x32,0xa0,0x67,0xb9, +0xbc,0x52,0x74,0x92,0x57,0xc9,0x2f,0x89,0x7c,0x79,0xad,0xdc, +0x04,0x1d,0xbc,0x49,0xde,0x22,0x0a,0xe5,0x66,0x69,0xe6,0xe7, +0xff,0x9e,0xfc,0x01,0x34,0xe0,0x19,0xb9,0x13,0xf4,0x37,0x72, +0xaf,0xe8,0x22,0x5f,0x92,0x7f,0x10,0x5d,0xf9,0xfe,0x2b,0x55, +0xd6,0xc8,0x23,0x38,0x7e,0x4c,0x36,0xd8,0xf7,0xd5,0x01,0xd9, +0xa4,0x3a,0x20,0x4a,0x33,0x5a,0x92,0x46,0x2d,0x49,0x57,0x5d, +0x55,0x09,0x75,0xf2,0x6a,0x8b,0x0f,0xcd,0x78,0xd4,0xa0,0x44, +0xbb,0xef,0x46,0x53,0x80,0x00,0x83,0x8c,0x24,0x3b,0xde,0x3c, +0x0d,0x5b,0x32,0xf1,0x91,0x42,0x7c,0x24,0x81,0xb7,0x99,0xf8, +0xde,0x99,0x63,0xc8,0xa0,0x24,0x99,0x28,0x49,0x03,0xaf,0xda, +0x5b,0xac,0x24,0x11,0x2b,0xe9,0x44,0x4a,0x06,0xb1,0x92,0x49, +0xac,0x48,0x62,0x25,0x8b,0x58,0xc9,0x26,0x56,0xda,0x11,0x2b, +0x39,0xc4,0x4a,0x7b,0xbe,0xd9,0x0e,0xf2,0x2d,0x52,0x07,0xe2, +0x26,0x97,0xb8,0xe9,0x48,0xdc,0xe4,0x71,0xbc,0x42,0x3e,0x50, +0xde,0x0b,0xd7,0x30,0x18,0xea,0x44,0x0c,0x75,0x12,0xfd,0xb1, +0x15,0x7a,0x90,0x54,0x44,0x24,0x75,0x21,0x92,0x8a,0x89,0xa4, +0xae,0x44,0x52,0x37,0x22,0xc9,0x69,0xcb,0x97,0x12,0x49,0xa5, +0x44,0x52,0x77,0x22,0xa9,0x07,0x91,0xd4,0x93,0x48,0xea,0x41, +0x24,0xf5,0x24,0x92,0x4a,0x89,0xa4,0x32,0x22,0xa9,0x17,0x91, +0x54,0x46,0x24,0xf5,0x62,0x6c,0x33,0x80,0xb1,0xcd,0x00,0x22, +0xa9,0x3f,0x91,0xd4,0x1d,0x48,0xda,0x03,0x5e,0xbd,0x80,0x2d, +0xe0,0x41,0x92,0x8f,0x48,0xd2,0x40,0xd2,0x71,0xd8,0x12,0x63, +0x79,0xd3,0x80,0x27,0x68,0x9d,0xcc,0x00,0xaa,0xd2,0x88,0x2a, +0x3f,0x51,0x95,0x24,0x73,0x65,0x47,0xc8,0xdb,0x60,0x2b,0x09, +0xd8,0x2a,0x81,0x5c,0x4b,0x81,0xad,0x24,0xd9,0x0b,0xd8,0x4a, +0x05,0xb6,0xfa,0x40,0xba,0xc6,0xfe,0xf6,0x96,0x7d,0x65,0x5f, +0xec,0x1b,0x2b,0x1c,0x00,0xda,0x60,0xdb,0x80,0xb3,0x09,0xb8, +0xda,0x44,0x39,0x4d,0xf4,0x91,0x67,0xc8,0xb3,0xb0,0x3f,0x13, +0xc8,0xf3,0x11,0x79,0xe9,0x44,0x5e,0x06,0xd1,0x96,0x29,0xcf, +0x95,0xe7,0x02,0x91,0xcb,0xe5,0x25,0xc0,0xf1,0x5a,0x79,0xb9, +0x28,0xe7,0x1b,0x37,0x49,0xfc,0x65,0x11,0x7f,0xd9,0xc4,0x5f, +0x3b,0xe0,0xef,0x41,0xd8,0xb9,0xef,0x02,0x85,0x1d,0x88,0xc2, +0xf6,0x7c,0xff,0x1f,0x94,0x3f,0x92,0x4f,0xe3,0x88,0xc9,0x02, +0xe8,0x24,0x7f,0x09,0x5c,0xe6,0x12,0x97,0x1d,0x89,0xcb,0x2e, +0xc4,0x65,0x9e,0xfc,0x93,0xfc,0x13,0xd0,0x5c,0x2d,0x5f,0x01, +0xee,0xf7,0xc9,0x7d,0xa0,0x26,0x53,0xa0,0x93,0x7c,0x47,0xbe, +0x27,0xfa,0x32,0x5f,0xa0,0x93,0x3c,0x02,0xec,0x76,0x90,0xf5, +0xf2,0x43,0x60,0x3d,0x8a,0xe0,0x22,0x20,0x38,0x0d,0x6d,0x8e, +0x74,0xd5,0x4e,0xf4,0xe3,0x7b,0xbd,0x2e,0x44,0xb3,0x93,0x89, +0xd1,0x95,0x68,0xee,0xc6,0x5e,0x4c,0x63,0xf3,0x46,0x12,0xd3, +0x43,0x88,0xe9,0xc9,0xc4,0xf4,0x50,0x5a,0xbe,0x21,0x44,0xf6, +0x50,0x5a,0xbe,0x01,0xc4,0xf7,0x30,0xe2,0x7b,0x08,0xf1,0x3d, +0x8c,0xf8,0x9e,0x4c,0x7c,0x4f,0x24,0xbe,0x4b,0x89,0xef,0xc9, +0xc4,0xf7,0x78,0xe2,0x7b,0x12,0xf1,0x3d,0x94,0xf8,0xee,0x4a, +0x7c,0x0f,0x21,0xbe,0x27,0x11,0xdf,0x63,0x89,0xef,0x81,0xc4, +0xf7,0x28,0xeb,0x83,0x0c,0xca,0xbb,0xd3,0x13,0x05,0x89,0xf5, +0x1e,0xc4,0x7a,0x05,0xb1,0xde,0x93,0x58,0x1f,0x4d,0x7c,0x8f, +0x26,0xbe,0x2b,0x89,0xef,0xe1,0xc4,0xf4,0x68,0x62,0x7a,0x34, +0xd1,0xec,0x44,0xe7,0x65,0x44,0xf3,0x04,0xfa,0x2f,0x45,0x4c, +0x0f,0xa2,0x17,0xeb,0x40,0x64,0xf7,0x22,0xb2,0x7b,0xd3,0xa3, +0x15,0xd0,0xa3,0x75,0xb1,0x39,0x0a,0xc6,0xaf,0x69,0x62,0xbd, +0x9c,0x58,0x2f,0x27,0xd6,0xfb,0x12,0xeb,0xfd,0x88,0xf5,0xfe, +0xc4,0x7a,0x3f,0x62,0xbd,0x3f,0xb1,0x5e,0x4e,0xac,0x0f,0x26, +0xd6,0xc7,0x11,0xeb,0x83,0x89,0xf5,0x71,0xe2,0x52,0x6c,0xdd, +0xe8,0x1f,0x4b,0xe8,0x1f,0x8b,0x19,0x4f,0xfa,0x68,0x4d,0xc7, +0xd0,0x9a,0x8e,0xa1,0xaf,0xf4,0xd3,0x3f,0xe6,0xd2,0x3f,0x26, +0x51,0x1f,0xfa,0xd2,0xb2,0x0e,0xa0,0x65,0x1d,0x49,0x7d,0x18, +0x42,0x7d,0x18,0x49,0x7d,0x18,0x4a,0xcb,0x3a,0x84,0x96,0x75, +0x28,0x75,0x60,0x18,0x75,0x60,0x08,0x75,0x60,0x32,0x75,0x60, +0x12,0xed,0xeb,0x44,0xda,0xd7,0x52,0xe8,0x40,0x2f,0x1c,0x37, +0x56,0x76,0x12,0xad,0xec,0x78,0x5a,0xd9,0x49,0xb4,0xb2,0x93, +0x68,0x65,0x87,0x12,0xeb,0x93,0x88,0xf5,0xb1,0xb4,0xb2,0x03, +0x68,0x65,0xc7,0x13,0xf7,0x03,0x69,0x65,0x47,0x11,0xe5,0xdd, +0x89,0xf2,0x1e,0x44,0x79,0x05,0xad,0x6c,0x4f,0xe2,0x7b,0x34, +0xad,0xec,0x68,0xa2,0xb9,0x92,0x68,0x9e,0x40,0x34,0x0f,0xa7, +0x95,0x1d,0x4d,0x8c,0x8e,0x20,0x46,0xcb,0x68,0x65,0x27,0x10, +0x97,0x83,0x88,0xcb,0x5e,0xc4,0x65,0x6f,0xc6,0x00,0x1d,0x19, +0x03,0x24,0x33,0x06,0x48,0x61,0x0c,0xd0,0x89,0x31,0x40,0x1e, +0x63,0x80,0x42,0xc6,0x00,0xa9,0x8c,0x01,0x02,0x8c,0x01,0x3a, +0x33,0x06,0x48,0x63,0x0c,0x90,0xce,0x18,0x20,0x83,0x31,0x40, +0x26,0x63,0x80,0x2c,0xc6,0x00,0xd9,0x8c,0x01,0xda,0x31,0x06, +0xc8,0x61,0x0c,0x50,0xc4,0x18,0xa0,0x3d,0x63,0x80,0x7c,0x66, +0x31,0x06,0xe4,0x5d,0x29,0x5f,0x11,0xbe,0x49,0x53,0x66,0xcc, +0x13,0x05,0xe7,0x7f,0x69,0xc3,0x5a,0x31,0x63,0xf5,0x86,0x0b, +0x2f,0x11,0x3b,0xd6,0xae,0xd8,0xb8,0x4e,0xbc,0xeb,0xcc,0xa7, +0xd3,0xd4,0xc4,0x51,0x5f,0x26,0xa7,0xa4,0x03,0x30,0x6a,0xb2, +0x6e,0x06,0x41,0x2a,0x13,0xc4,0x19,0xc0,0xd2,0x39,0x68,0x77, +0x98,0xcc,0xb0,0x2b,0x10,0xf9,0xdc,0x04,0x29,0x06,0x84,0x9c, +0x30,0x75,0x6e,0x31,0xf4,0xc5,0xf9,0x9d,0x84,0x1e,0x65,0x41, +0xce,0x9d,0x81,0xe2,0x7e,0x40,0xc9,0x28,0x68,0xcf,0x74,0xa0, +0x6f,0x21,0x5a,0x2b,0xab,0x80,0x95,0x8d,0x88,0x95,0x6e,0x16, +0x5f,0xe3,0xd9,0x1d,0x80,0xdb,0x54,0x68,0x52,0x47,0xa0,0xbf, +0x3b,0xb0,0xda,0x1f,0xf2,0x1e,0x0d,0xed,0x39,0x13,0x48,0x35, +0xf9,0x92,0xab,0x81,0xaa,0x2b,0xc5,0x75,0xe2,0x16,0x71,0xbb, +0xa7,0x66,0x1a,0xf7,0x6c,0x07,0x9d,0xea,0x02,0x0d,0x19,0x00, +0x9c,0x8c,0x81,0x4e,0xce,0x10,0x67,0x03,0xd1,0x2b,0xd8,0x77, +0x7a,0x95,0xb8,0x5e,0x6c,0x16,0x5f,0x37,0xb1,0xe6,0x59,0xb3, +0x66,0x14,0x8b,0x31,0x73,0x67,0x9d,0x55,0x8c,0x2b,0x39,0xbf, +0xf6,0x41,0xab,0x73,0xc0,0x8d,0x62,0x68,0xd6,0x40,0xd4,0x7a, +0xac,0x98,0x82,0xf6,0xcd,0x3c,0x68,0xc3,0x4a,0x60,0xfb,0x32, +0x78,0xc0,0x1b,0xc4,0xad,0xe2,0x0e,0x5b,0x3f,0xbf,0x99,0x75, +0x1e,0xfa,0xd3,0x15,0xda,0xd6,0x07,0xda,0x36,0x1c,0x88,0x9f, +0x8a,0xd6,0xd5,0x7c,0xb4,0xc3,0xce,0x87,0x16,0x5c,0x0e,0xfb, +0x7e,0x23,0xd0,0x7c,0xa7,0x3d,0x3f,0x09,0x76,0xc2,0xcc,0x38, +0xdf,0x0d,0xfa,0x57,0x0e,0xbd,0x1c,0x01,0x4b,0x31,0x0d,0xed, +0xb0,0x05,0xd0,0xb3,0x0b,0xa0,0x2f,0x1b,0xe0,0x0d,0x36,0x89, +0xaf,0x8a,0xbb,0xc4,0xdd,0x2b,0x56,0xac,0xdd,0xa8,0x97,0x92, +0x5e,0x40,0xba,0x96,0x74,0x23,0xe9,0x75,0xa4,0x9b,0x49,0xef, +0x38,0xff,0xfc,0x4b,0x2f,0xd3,0xf7,0x91,0x6e,0x21,0xdd,0x4a, +0xba,0x8d,0x74,0x07,0xe9,0x73,0xa4,0x55,0x17,0xac,0x5b,0x7f, +0xa9,0x7e,0x99,0x74,0x1f,0x69,0x0d,0xe9,0x9b,0xa4,0x87,0x48, +0xdf,0x23,0x3d,0xb2,0x6a,0xc3,0x8a,0xf3,0x75,0x98,0xf4,0x13, +0x43,0x7d,0x49,0xa4,0x99,0xa4,0xb9,0xa4,0x45,0xa4,0x3d,0xd6, +0x5e,0xb4,0x7a,0x85,0xaf,0x1f,0xe9,0x20,0xd2,0x11,0xa4,0xe3, +0x48,0xa7,0x90,0xce,0x20,0x9d,0xbb,0x76,0xdd,0x95,0x97,0xfa, +0x16,0x92,0x9e,0x4b,0x7a,0x01,0xe9,0xc5,0xa4,0x97,0x91,0x5e, +0x45,0x7a,0xdd,0xda,0xf5,0xe7,0xaf,0xf5,0xdd,0x4c,0x7a,0x1b, +0xe9,0x5d,0x38,0xbc,0xc1,0x77,0x1f,0xe9,0x83,0xa4,0x0f,0x93, +0x3e,0x4a,0xba,0x8d,0xf4,0x17,0xa4,0xcf,0xae,0x37,0x57,0x78, +0x9e,0xb4,0x8a,0xf4,0x0f,0xa4,0xaf,0x90,0xbe,0x46,0xfa,0x06, +0x69,0xed,0xfa,0x0d,0x17,0xac,0xf3,0x1d,0x26,0x7d,0x9f,0xf4, +0x18,0xe9,0x09,0x43,0xfd,0x82,0x34,0x89,0x34,0xfd,0x0a,0xf0, +0xd9,0x9f,0x43,0x9a,0x47,0x5a,0x44,0x5a,0x4a,0xda,0x9b,0x74, +0x00,0xe9,0x90,0x2b,0x2e,0x5a,0xb7,0xca,0x3f,0x8a,0x74,0x02, +0xe9,0x34,0xd2,0x99,0xa4,0xf3,0x48,0x17,0x93,0x9e,0x77,0xc5, +0x15,0x03,0x06,0xfa,0x57,0x91,0xae,0x25,0xdd,0x40,0x7a,0x0d, +0xe9,0x0d,0xa4,0x9b,0x49,0x6f,0x07,0xad,0xf0,0xdf,0x43,0x7a, +0x3f,0xe9,0x16,0xd2,0x47,0x48,0x1f,0x23,0x7d,0x92,0x74,0x07, +0x68,0xa5,0x7f,0x27,0xe9,0x6e,0xd2,0x17,0x49,0x5f,0x26,0xdd, +0x47,0x5a,0x43,0xfa,0x26,0xe8,0x20,0xff,0x21,0xd2,0xf7,0x48, +0x8f,0x90,0x86,0x49,0x4f,0x1a,0x9a,0xa4,0x48,0x53,0x40,0x07, +0x27,0x65,0x92,0x06,0x49,0x0b,0x48,0x8b,0x49,0x7b,0x90,0x96, +0x93,0x56,0x80,0x0e,0x49,0x1a,0x46,0x3a,0x86,0x74,0x12,0xe9, +0x74,0xd2,0xd9,0xa4,0x0b,0x48,0x97,0x5e,0x71,0xe5,0xca,0x2b, +0x92,0x56,0x92,0xae,0x21,0x5d,0x47,0xba,0x91,0xf4,0x5a,0xd2, +0x4d,0xa4,0x5f,0xb9,0xe2,0xca,0xcb,0xae,0x48,0xba,0x83,0xf4, +0x5e,0xd2,0x07,0x48,0x1f,0x22,0xdd,0x4a,0xfa,0x38,0xe9,0xf6, +0x6b,0x2f,0xdc,0xb0,0x3e,0xe9,0x19,0xd2,0xe7,0x48,0xf7,0x90, +0xee,0x25,0xad,0x26,0x7d,0x95,0xf4,0x00,0xb3,0xe3,0x04,0xed, +0xdd,0xe9,0x7f,0xe6,0x71,0xf6,0xd8,0xd3,0xfd,0x94,0xb0,0x63, +0x6d,0xa3,0x0a,0x36,0x22,0xf9,0x53,0x7c,0x4a,0xd1,0xb1,0xcd, +0x34,0xb3,0xcd,0xd4,0x47,0xea,0x3c,0x3d,0xc7,0x36,0x71,0x05, +0xe5,0xb6,0xd1,0x8c,0x36,0x53,0x7f,0x9b,0x69,0x6e,0x9b,0x69, +0x5a,0x5b,0xa8,0xbc,0x16,0x34,0x5b,0x6e,0x24,0x5d,0x47,0xba, +0x86,0x74,0x25,0xe9,0x52,0xd2,0x05,0xa4,0x66,0x4c,0x4f,0x3b, +0xc4,0x08,0x86,0x4e,0x23,0x9d,0x40,0x3a,0x8a,0x74,0x08,0xe9, +0x00,0xd2,0x7e,0xa0,0x39,0xb2,0x8c,0xb4,0x1b,0x69,0x21,0x69, +0x2e,0x69,0x36,0x69,0x80,0x34,0xc5,0xb4,0xb8,0xa5,0x62,0xbb, +0xfb,0x24,0x69,0x98,0xf4,0x08,0xe9,0x7b,0xa4,0x87,0x48,0x6b, +0x41,0x83,0xe2,0x0d,0xd2,0xd7,0x48,0x5f,0x21,0xfd,0x03,0x69, +0x15,0xe9,0xf3,0xa4,0xcf,0xb1,0xbd,0xfd,0x0c,0xe9,0x76,0xd2, +0xc7,0x49,0xb7,0x92,0x3e,0x44,0xfa,0x00,0xa9,0xe0,0xe8,0x85, +0xb6,0xd2,0x40,0x9b,0x69,0x56,0xdb,0xa8,0xe4,0x90,0x29,0x33, +0x78,0x0a,0x05,0xd8,0x92,0xc0,0x9a,0xf4,0x23,0x9e,0x18,0x81, +0x48,0x62,0x3a,0x3c,0xfc,0x62,0x78,0xdc,0x8b,0xe1,0x11,0xaf, +0x83,0xb7,0xbe,0x43,0xdc,0x27,0xb6,0xe0,0x19,0xb6,0x89,0x1d, +0x78,0x42,0x93,0x1b,0xf8,0x2a,0xb8,0x71,0x48,0x84,0x10,0x0b, +0x9e,0x94,0x3e,0x59,0x40,0x4e,0x9b,0x0b,0x35,0x38,0x38,0xf5, +0xad,0x73,0xfe,0x17,0x6f,0xd9,0xcf,0x77,0xed,0x67,0xc8,0x7e, +0xbe,0xe7,0xfe,0x6f,0x66,0x47,0x55,0x68,0x08,0xe4,0xd8,0x2a, +0x15,0xd8,0xcf,0x72,0xfb,0x39,0xc6,0x7e,0xce,0xb6,0x9f,0x2b, +0xed,0xe7,0x46,0xfb,0xb9,0xc1,0x7e,0x5e,0x66,0x3f,0xed,0x9d, +0xe5,0xa3,0xf6,0xf3,0x49,0xfb,0xb9,0xcd,0x7e,0x3e,0x6e,0x3f, +0x1f,0x73,0xcf,0xa3,0x96,0xa9,0x6e,0xf6,0xb3,0x9c,0x35,0x4a, +0x51,0x0f,0xa9,0xed,0x6a,0x8f,0x7a,0x55,0xbd,0xab,0x1a,0x74, +0x40,0x17,0xda,0xe7,0xb3,0x57,0xd1,0x8f,0x0b,0xa5,0xab,0xd1, +0x3a,0x5b,0x20,0x97,0xca,0x06,0x79,0x12,0xff,0xed,0xf6,0xfc, +0x27,0xb5,0x41,0x83,0xd2,0x47,0xa0,0xbb,0xb7,0x80,0x7f,0x4a, +0xbf,0x8f,0xe8,0x30,0x41,0xde,0x33,0xe2,0x13,0x8d,0xb3,0x0f, +0xa3,0xbc,0x6f,0x6d,0x5c,0x01,0x8f,0x80,0x5f,0xfa,0x0d,0xf7, +0x88,0xd2,0x6f,0x9a,0xf5,0x74,0x12,0xfc,0x5e,0xe9,0x2a,0xb3, +0xd2,0x4d,0xa2,0xec,0x69,0xd4,0xb1,0xa5,0xdf,0xdc,0xd3,0xe2, +0x6f,0xae,0x6a,0xe1,0x1b,0x89,0x38,0x36,0x1d,0x74,0x55,0xd3, +0x31,0xd0,0xcb,0x4c,0x9b,0x4d,0x6f,0x40,0x14,0xa9,0xd0,0x32, +0x78,0x43,0x1c,0x14,0x6f,0x8a,0xff,0x82,0xac,0xff,0x01,0x4d, +0x79,0x1b,0xb8,0x78,0x07,0xf2,0xae,0x13,0x87,0xc5,0x3f,0x21, +0xe7,0x7f,0x41,0xc6,0xff,0x16,0xef,0x8b,0x0f,0xa0,0x57,0xf5, +0xaa,0xb7,0x5a,0xaa,0x2e,0xe7,0x3b,0x57,0x85,0x28,0xd9,0x8f, +0x56,0x71,0x8e,0x6c,0x2f,0x83,0xa6,0x4f,0x46,0x17,0x30,0x7f, +0x3a,0xc8,0x4c,0xbf,0x19,0x86,0xaa,0x6b,0xc8,0xc5,0x29,0x88, +0x02,0x4d,0x24,0x3a,0x1c,0x91,0xe4,0x69,0xdd,0x2d,0x72,0x6d, +0xb9,0xc8,0xde,0xd7,0x19,0xbf,0xf2,0x65,0x75,0xbd,0xba,0x51, +0xdd,0xa4,0x6e,0x51,0xb7,0xaa,0xdb,0xd5,0x5d,0xea,0x1b,0xea, +0x3e,0xf5,0x6d,0xf5,0x1d,0xf5,0x5d,0xc8,0xfc,0x07,0xea,0x87, +0xea,0x27,0x6a,0x9b,0xfa,0xb9,0x7a,0x4a,0xfd,0x46,0xbd,0x64, +0x6a,0xaa,0xa0,0xfd,0x7a,0x12,0xed,0xaa,0xb1,0xc8,0x7b,0x98, +0x41,0x2b,0xf5,0x30,0xf6,0xbe,0xf5,0x43,0xe4,0xec,0x63,0x7f, +0x4a,0x2e,0xda,0x05,0xf8,0x4e,0xff,0x48,0xff,0x1a,0xf4,0x27, +0xfa,0x37,0x46,0x02,0xfa,0x39,0xd0,0x6d,0x8c,0x53,0x73,0xe0, +0x8b,0x8a,0x44,0xa9,0x7e,0x01,0x47,0xb6,0x02,0x1f,0xe6,0x9c, +0xdd,0x3c,0x67,0x17,0xe8,0x4f,0xf5,0x6f,0x41,0x7f,0xe6,0xb9, +0xd6,0x4e,0x9e,0xf7,0x4b,0x9e,0xf7,0x2c,0xcf,0xfb,0x15,0xcf, +0x00,0x3a,0xd4,0x5e,0x94,0x57,0x2d,0x3a,0x3a,0xb9,0x47,0xaa, +0x3d,0x47,0x0c,0x92,0x61,0x85,0xd4,0x9e,0x98,0x23,0xbb,0x51, +0xb6,0xc7,0x1c,0xd9,0x81,0xf2,0x90,0xe7,0x3a,0xd0,0x0a,0xdd, +0xc3,0x7b,0x65,0x5d,0x4a,0x99,0x78,0x8f,0xc0,0xc2,0x6a,0xe5, +0x1e,0x51,0xfa,0x41,0xb4,0x22,0xd4,0xff,0x98,0x64,0x1e,0xc0, +0xbd,0x03,0xec,0xb9,0x4e,0xe5,0xbb,0x9b,0xe1,0xb0,0x60,0x66, +0x8c,0x34,0xf6,0xf5,0x66,0xb3,0xce,0xa6,0xc9,0xa4,0xd5,0x3f, +0xd7,0xfb,0xf5,0x76,0xfd,0xaa,0xfe,0xab,0x7e,0x4d,0xbf,0xae, +0x6b,0xf4,0xdf,0xf4,0x01,0xfd,0x77,0xfd,0x86,0x3e,0xa8,0xdf, +0xd4,0xff,0xa5,0x8d,0x95,0xf2,0xc9,0x79,0x72,0x99,0x0c,0xa3, +0x6d,0x28,0x45,0x81,0xba,0x42,0x5d,0xa9,0xae,0xb6,0x39,0xad, +0x9b,0xd4,0xcd,0x6a,0xb3,0xfa,0x1a,0x47,0x3c,0x7d,0x53,0xdd, +0xaf,0x1e,0xe0,0x58,0xaf,0x87,0xd5,0x23,0xea,0x31,0x8e,0xf3, +0xfa,0x85,0x7a,0x4e,0xed,0x55,0xff,0xa0,0xa7,0x96,0xec,0x77, +0xd5,0x68,0xb9,0xa0,0xc5,0x85,0x56,0xd9,0x44,0x1c,0x31,0xed, +0xeb,0x00,0xfb,0x3a,0xae,0x21,0xc2,0x67,0xe9,0x85,0x8c,0x1c, +0x24,0x34,0x6d,0x25,0xf7,0x54,0xcc,0xf9,0xe6,0xff,0x49,0xc2, +0x8c,0x9b,0x9e,0x8a,0xb6,0x89,0xf3,0xbe,0x7a,0x18,0xfe,0x37, +0xb1,0x86,0x24,0xd7,0x4d,0x9b,0x5c,0xf2,0xcd,0x5b,0x1e,0xdf, +0x80,0xe5,0x33,0xbb,0xa4,0x80,0x19,0x0d,0x9d,0xe8,0xad,0x53, +0xd0,0x26,0xcf,0x92,0xd9,0x68,0x97,0xe3,0x17,0x68,0x49,0x4b, +0xe8,0x90,0x64,0x1f,0xca,0x24,0xfc,0xfa,0x77,0xe2,0x45,0xf1, +0x7b,0xb1,0x57,0xbc,0x04,0x0f,0xf6,0x47,0x58,0xf3,0x3f,0x89, +0x6a,0xf1,0x67,0xf8,0xb4,0xbf,0x88,0x7d,0x62,0x3f,0x6c,0xfb, +0x5f,0xe1,0xe5,0x5e,0x17,0x35,0xe2,0x6f,0xe2,0x40,0xe4,0x3a, +0x72,0x21,0xee,0xb7,0xc4,0x8c,0xb4,0x3a,0x6d,0xce,0xa0,0x56, +0xe4,0x8e,0x19,0x0f,0x81,0x38,0x46,0xff,0x58,0x3f,0xa1,0x7f, +0x4a,0x5d,0xb2,0x99,0xbc,0xd4,0xf8,0x6d,0x3c,0x23,0x85,0xfb, +0x4f,0xd3,0xbe,0x6c,0xd5,0xbf,0xb0,0x99,0xd8,0x59,0xfc,0x2e, +0x9d,0x34,0x03,0x65,0xf4,0xa7,0xc9,0xb1,0x6e,0x35,0x4f,0xfa, +0x15,0xb9,0xaf,0xa5,0x3c,0x69,0xf9,0xb1,0xfc,0x24,0x9a,0x2b, +0xcd,0x9a,0xfd,0x0c,0x7a,0xe8,0xd4,0x8c,0x79,0xe1,0x6a,0xa2, +0x5a,0x0c,0x31,0xae,0x56,0x17,0x43,0x1e,0x6b,0xd5,0xa5,0xa2, +0x90,0x6f,0x8a,0x8a,0x4c,0x4d,0xd5,0x56,0x3b,0x2a,0xf0,0x31, +0x4f,0xf6,0xf3,0x2f,0x6c,0xfe,0xf3,0x2f,0x3d,0x63,0x04,0x9f, +0x57,0xbb,0xd4,0x6e,0xf5,0x5b,0x33,0xbe,0x4c,0x55,0xa9,0xdf, +0x99,0xac,0x32,0xb5,0x57,0x67,0xeb,0xa0,0x36,0xf9,0x1b,0x85, +0xba,0x8b,0xee,0x6a,0x47,0xfd,0xf5,0xd6,0x7d,0x74,0xb9,0xee, +0xcb,0xfc,0xe8,0x4a,0x3b,0xaa,0x6e,0x8c,0x1e,0xab,0x27,0xe8, +0x89,0xcc,0x95,0x9e,0x6a,0x72,0xa4,0x98,0x31,0x6d,0xa2,0xa3, +0xff,0x29,0x69,0x2b,0xa2,0x4d,0x31,0x67,0xde,0x44,0xa4,0xe9, +0x46,0x72,0x7a,0x1b,0xe4,0xac,0xc9,0x3f,0x9f,0x7e,0x1a,0x72, +0xf6,0x93,0x8b,0xf0,0xb8,0xb2,0x46,0x14,0xab,0x5c,0x51,0xae, +0x26,0x89,0x0a,0x94,0xf9,0xf2,0x3f,0xa2,0x3f,0xf7,0xbb,0x8b, +0xfe,0x72,0x92,0xe8,0xac,0xb2,0x45,0x1f,0xfe,0xdf,0x1e,0x9f, +0xc3,0xd0,0xc2,0x3f,0x21,0x66,0xa0,0x48,0x95,0x85,0x73,0xb3, +0xc5,0x7c,0x7d,0x91,0x98,0x6f,0x8e,0xab,0x01,0xfc,0xdd,0x7c, +0x73,0xae,0x5c,0x8f,0xef,0xea,0x44,0xa9,0x5c,0x8e,0xdf,0x0f, +0x13,0xb3,0x65,0x48,0xe4,0xc0,0xec,0x75,0x91,0x8d,0xa2,0x83, +0xfc,0x10,0xb1,0xe2,0x2b,0xa2,0xab,0xba,0x49,0x74,0x54,0x77, +0x8a,0x65,0x90,0xda,0x08,0xf5,0x7d,0x7c,0x4e,0x45,0xe9,0x8f, +0xf2,0x4b,0xfc,0xff,0x82,0x58,0x26,0xef,0x11,0xa3,0xe4,0x27, +0x90,0xe8,0xb5,0xd8,0xff,0x48,0x2c,0xd3,0xe5,0xf8,0x0e,0xc7, +0x55,0x15,0xbe,0x3f,0xd7,0x7e,0x6e,0xc2,0xe7,0x64,0xd1,0x9b, +0xf9,0x19,0x8f,0x8a,0x85,0xca,0xac,0x22,0xfb,0x65,0x11,0x54, +0x17,0x02,0x0f,0xe6,0xcd,0xff,0x24,0x51,0xaa,0x16,0x8a,0x51, +0x9e,0x52,0x89,0x32,0x19,0xa5,0x37,0x4a,0x0f,0x94,0xb3,0x50, +0x26,0xda,0x63,0x23,0xec,0xfe,0x48,0x4f,0x31,0xbf,0x99,0x8f, +0x32,0x0c,0xa5,0xd8,0x9e,0x3f,0xce,0x7e,0x8e,0xe6,0xfe,0x33, +0x62,0x1a,0xee,0x39,0x5e,0xde,0x2d,0x26,0x47,0x8a,0x9a,0x81, +0xfb,0xce,0x30,0x39,0xd8,0x28,0x87,0x81,0xd0,0xc1,0xa2,0x08, +0xbc,0x3a,0x53,0x97,0x88,0x33,0x65,0x29,0xf9,0xd6,0x13,0x9f, +0x03,0x4d,0x11,0x47,0xf1,0xff,0x0f,0x51,0xda,0x89,0xa9,0x28, +0xe5,0xf2,0xef,0xf8,0x3c,0x80,0xcf,0x1c,0x51,0x82,0xfd,0x12, +0x44,0xd7,0xa5,0x28,0x83,0x10,0xaa,0x95,0xa2,0x0c,0x42,0x54, +0x3d,0x87,0x65,0xbf,0xe8,0x2e,0x0f,0x8a,0x8e,0x72,0x96,0x38, +0x5b,0xce,0x6a,0x6a,0x94,0xa3,0xc1,0xa7,0xd1,0xe0,0xd9,0x39, +0xe6,0x4d,0x09,0x3e,0x6f,0x84,0x8f,0xbf,0x11,0xba,0xf9,0xcd, +0xa6,0xc1,0xa6,0xe8,0xef,0x8b,0xf1,0xfe,0x02,0xd4,0x73,0x84, +0xf8,0xb2,0x29,0x6a,0xba,0x98,0x61,0x46,0x66,0xea,0x14,0x31, +0x44,0xbe,0x21,0xca,0xd4,0xbd,0xa2,0x18,0x75,0x2f,0x93,0x77, +0xe1,0xde,0xaf,0x22,0x16,0x3d,0x2a,0x86,0xa1,0x5e,0xc3,0xe4, +0x1e,0xdc,0xb7,0x0c,0xf2,0x37,0xe5,0x25,0xf2,0xa3,0xc2,0x3e, +0xfb,0x44,0x4f,0x59,0xea,0xd9,0x8f,0x7c,0xb7,0xd8,0x5b,0xe4, +0x14,0xb1,0x8a,0xc5,0x3c,0xff,0x1d,0x62,0x86,0xf9,0xc4,0xf1, +0xfe,0xf6,0xdc,0xce,0x88,0x0f,0x2b,0x98,0x87,0xf9,0x1a,0x9e, +0xf7,0xb0,0xe8,0xe6,0xd3,0x90,0xed,0x2c,0x31,0x56,0x5d,0x20, +0x72,0x94,0xc2,0x79,0x97,0x8b,0x11,0xf2,0x9d,0xa6,0x8f,0xd5, +0xd9,0xa8,0xc3,0x02,0xf0,0x63,0x99,0xe8,0xa6,0x36,0xe3,0x9c, +0x8d,0x90,0x9b,0x39,0xf6,0xac,0xc8,0x42,0xfd,0x96,0xc1,0x67, +0x77,0x87,0x97,0x5c,0x06,0xd9,0x4f,0x55,0x17,0x89,0x80,0x3a, +0x0f,0xcf,0xb6,0x51,0x14,0xa9,0xad,0x38,0x6f,0xa3,0xe8,0xc7, +0xf3,0xcd,0xb1,0x65,0x62,0x30,0x70,0x94,0x61,0xec,0x85,0xba, +0x05,0xf5,0x1f,0x0a,0xac,0xce,0x43,0x31,0xba,0xf0,0xb9,0x96, +0xa6,0x06,0x77,0xdf,0xd1,0xb1,0xcf,0xb3,0xb4,0x8f,0xec,0xeb, +0xf3,0x44,0xb9,0x29,0x46,0x7f,0xe3,0x0b,0x3c,0x55,0x05,0xf4, +0xab,0x42,0xf5,0xc1,0x7e,0xf7,0x4f,0x5d,0xda,0xc7,0xfc,0x6f, +0xec,0x81,0xb7,0xc4,0xd7,0x6d,0x98,0xe8,0xa0,0x86,0x35,0xbd, +0x09,0x5b,0x61,0x6c,0xc6,0x6c,0x71,0xa2,0xe9,0x1d,0x94,0x37, +0x6c,0xf9,0x00,0xc7,0xa6,0xa3,0xa4,0xa3,0xf4,0xc2,0xff,0xf5, +0xf8,0xd4,0xf8,0xfc,0xab,0x3c,0x02,0x6c,0x1c,0x11,0x33,0x8d, +0x8d,0x71,0x4a,0xd3,0x1b,0xc6,0xd6,0x58,0x7b,0x33,0x1b,0x7a, +0x41,0xbb,0x23,0x57,0xa1,0xe4,0x02,0x1b,0xc3,0xac,0xfd,0xb1, +0x45,0xc3,0x0f,0xb9,0xf6,0xa8,0x2d,0x65,0x98,0x28,0x61,0x69, +0xdb,0xf9,0xc1,0xc8,0xbe,0xfe,0x21,0x78,0x6b,0xec,0xdc,0x7a, +0xe0,0x72,0x3d,0xf4,0xcd,0xd8,0xbb,0xf8,0x92,0x0b,0x3c,0x6d, +0x42,0xe9,0x87,0xf3,0x2e,0x84,0x7e,0xc1,0x1e,0x46,0x0a,0x6d, +0x25,0x6c,0xe3,0x17,0x55,0x8c,0xbd,0xf5,0x16,0xda,0xdd,0x96, +0x0a,0xec,0x71,0xa4,0xd0,0x2e,0x7f,0x41,0x45,0x7f,0x1d,0xde, +0x07,0x85,0x36,0x3f,0xbe,0x18,0x1f,0xf0,0x88,0x68,0xc7,0x32, +0xd5,0xfa,0x83,0xd3,0x2f,0xe5,0xee,0xbe,0xf1,0x0f,0xbf,0x8c, +0x2b,0x2f,0x89,0x4e,0xae,0x6f,0xb9,0x47,0x0c,0x40,0xe9,0x69, +0xcb,0x70,0x7b,0x2c,0x51,0x29,0x56,0xb7,0xc2,0xb7,0xdc,0x2a, +0xe6,0x19,0x7f,0xe4,0xf1,0x49,0x8b,0x8d,0x5f,0x72,0xcb,0xc9, +0xa6,0xe3,0xf4,0x4f,0xf1,0xc5,0xd4,0xe3,0x0b,0x2c,0xfa,0x6f, +0xd6,0x0f,0x46,0x8a,0xf1,0x87,0xf1,0xe5,0x39,0x1c,0x9f,0x82, +0x67,0x37,0x7e,0x32,0x52,0x8c,0x0f,0x35,0x3e,0xf3,0x0b,0x2a, +0xc6,0x0f,0x7b,0x0b,0xfd,0x71,0x4b,0xc5,0xf8,0xe9,0x48,0x19, +0x0d,0xbd,0xb8,0x05,0x72,0xdc,0x03,0xf9,0x34,0x40,0xbf,0x5f, +0xc6,0xf3,0x6d,0x86,0x3d,0x39,0x03,0x65,0x1a,0xf4,0x28,0x0c, +0x9b,0x6e,0x74,0x30,0x09,0xb2,0xd9,0x86,0xcf,0xd1,0xa2,0x8b, +0xaa,0x80,0x9f,0xea,0x69,0x6d,0xc4,0xc7,0x22,0x49,0x4d,0xc0, +0x67,0x13,0x5a,0x20,0x7b,0x45,0x5f,0x9e,0xbb,0x0e,0xf1,0x40, +0x19,0xf4,0xf4,0x6d,0xec,0x4f,0x85,0xde,0x1e,0x44,0x7d,0x8c, +0x9e,0xfc,0x11,0xb1,0xca,0x11,0x91,0x0e,0x9f,0x33,0x5b,0xbd, +0x05,0x9f,0x62,0x63,0x12,0xe8,0xc4,0x32,0xd6,0x61,0x2a,0xfd, +0x48,0x69,0x44,0x8e,0x06,0x0f,0x46,0xf6,0xea,0x4a,0x60,0x39, +0x12,0x8f,0x4c,0x43,0x0c,0x60,0x64,0xf1,0x34,0xf6,0x0d,0x4f, +0x87,0xc3,0xb7,0x18,0xfe,0xe2,0xb9,0xf4,0x3c,0x31,0xc4,0xc4, +0x22,0x3a,0x57,0x4c,0x8a,0x79,0x0e,0xd4,0xdd,0xd4,0xdb,0xd4, +0x59,0xf6,0x6c,0x0a,0xa3,0xd4,0x59,0x5b,0x14,0xd5,0xe1,0x48, +0x7d,0x56,0xe0,0xbb,0x83,0x4d,0x75,0xf2,0x8f,0x28,0xc0,0xa9, +0xda,0x8b,0xff,0x7f,0x84,0x62,0xf8,0xf6,0x32,0x3e,0x23,0x7e, +0x65,0x10,0x62,0x1b,0xd8,0x19,0x44,0xca,0xc3,0xe4,0x53,0xb8, +0xee,0xbf,0x11,0xb3,0xcc,0x17,0x29,0x91,0x58,0x0e,0x3e,0xb1, +0x4c,0xfd,0x4d,0x14,0x00,0xab,0x85,0x66,0x66,0x27,0xc4,0x27, +0x8e,0xfd,0x89,0x7c,0xf6,0xc0,0x67,0x00,0x65,0x30,0xda,0x30, +0x61,0xf0,0xe7,0x59,0xec,0xcf,0xb0,0x76,0x74,0xb4,0xb5,0xaf, +0x36,0x3e,0x44,0xcc,0x18,0x34,0x71,0x9f,0xb1,0x1d,0xea,0x7d, +0xdc,0xb7,0x06,0xc7,0x10,0xdb,0x31,0x56,0x5a,0x84,0x6b,0x15, +0xc0,0x1f,0x15,0x31,0x36,0x9c,0xad,0x87,0xe3,0xf3,0x6b,0x38, +0x36,0x13,0xd7,0x9c,0x08,0xd9,0xbd,0x8a,0x73,0x52,0xf0,0xdb, +0x06,0x31,0x05,0x32,0x2a,0xd4,0x19,0xf8,0xff,0x38,0x4a,0x47, +0xd1,0x13,0xf2,0xeb,0xc6,0x67,0xbe,0x0e,0x7c,0x8c,0xc8,0xe1, +0x35,0x33,0x1a,0x10,0xbf,0x85,0x2c,0xf4,0x3e,0xd1,0x1b,0xad, +0xf1,0x52,0x3c,0x7b,0x77,0x57,0xbf,0xee,0x47,0xb9,0x0d,0xc5, +0xe4,0xac,0x7b,0xe5,0xe2,0x95,0x89,0xb1,0x2f,0x46,0x26,0x66, +0xfd,0xe5,0x19,0xa8,0x1b,0x0a,0x63,0xc4,0x03,0xf8,0xee,0x56, +0xe8,0x10,0xf4,0x43,0xff,0x03,0xfb,0xef,0x88,0x5c,0x7d,0x09, +0x3e,0xaf,0x42,0xb9,0x1a,0x71,0xc4,0x6e,0xea,0x54,0x2f,0xec, +0x0f,0x89,0xf7,0xe1,0xf4,0xb5,0x86,0xcf,0x91,0xf2,0x3b,0xd8, +0xf4,0x02,0x3c,0x87,0xc7,0x47,0xe2,0xf9,0xc8,0x77,0x96,0x64, +0xf0,0xff,0xef,0x96,0xff,0x4e,0x29,0x30,0xbe,0x91,0x3c,0xf6, +0xca,0xc2,0xc8,0xa1,0xdc,0xe1,0xb5,0x5a,0x8b,0xe7,0xee,0x21, +0x3a,0xe8,0xee,0x90,0xe3,0x6a,0xf0,0x71,0x1c,0x8e,0x7d,0x14, +0xe7,0xdb,0xc0,0x73,0xed,0x91,0x8b,0xfa,0xbd,0x08,0x36,0xb3, +0xef,0x88,0xbf,0x4d,0x81,0x9f,0xee,0x60,0x64,0x03,0x19,0x57, +0xf0,0xf3,0x55,0xd6,0xb7,0xb3,0xf1,0x55,0x46,0xc6,0x4e,0x6c, +0x4f,0xdf,0x2c,0x1d,0xff,0xcd,0xe2,0x3c,0xd3,0xad,0x68,0xed, +0x9a,0xf2,0x10,0xf6,0xf3,0x71,0x2d,0x8f,0x4d,0x37,0x72,0x8a, +0x14,0x95,0x2c,0x32,0xd5,0x97,0xe3,0xec,0xf2,0xd5,0xe0,0xb1, +0x91,0x9d,0x29,0x07,0x50,0x1e,0xa0,0x3d,0xe8,0x1e,0x29,0xd4, +0x2b,0xaf,0xcd,0x34,0x32,0x7d,0x08,0x65,0x07,0xe4,0xe2,0x87, +0xdc,0x7e,0x2b,0x3a,0x69,0xa3,0xf7,0x87,0xc5,0x32,0x5f,0x06, +0x8e,0xdd,0x17,0x67,0x57,0x21,0x47,0x7d,0x24,0x2a,0x67,0xbd, +0xda,0x91,0x75,0x4c,0x89,0xd8,0x9a,0xcd,0x90,0x3b,0x64,0xae, +0x1e,0x47,0x31,0xb2,0x37,0xf2,0xfe,0x81,0xc9,0xe0,0x86,0x9d, +0x7c,0xda,0xf5,0x0d,0xc3,0x8d,0x9d,0xd7,0x39,0xb8,0x56,0x21, +0xae,0x75,0xab,0x73,0x3f,0x60,0x3a,0xc8,0xb2,0x16,0xbf,0xfd, +0x29,0xf8,0x7c,0x2d,0x30,0xb0,0xda,0x64,0x23,0x89,0x6e,0x28, +0x79,0x28,0x41,0xb9,0x14,0x7e,0x7f,0x35,0xe2,0xe8,0x59,0xd0, +0xef,0x6b,0xf8,0x7d,0xf7,0xb6,0x9e,0xa7,0xd7,0x88,0x62,0x16, +0x93,0xc5,0x36,0x0b,0x9f,0xc3,0x60,0x3b,0x10,0x37,0xe8,0x85, +0xf8,0x7f,0x26,0xf6,0x0d,0x7e,0x97,0xe2,0xff,0xa9,0x68,0x57, +0x2c,0xc3,0xe7,0x4d,0x28,0x68,0xfb,0xa2,0x3e,0xa5,0xfa,0x4c, +0xf8,0xf9,0xcb,0xf0,0xff,0x3d,0xe2,0x06,0x94,0x6b,0xf4,0x20, +0x31,0x14,0xe5,0x8f,0xb6,0x98,0xfd,0xc7,0x51,0xae,0xf3,0x7c, +0xde,0x6c,0xcb,0xd0,0xb8,0xf2,0x5b,0x5b,0xbc,0xc7,0xcc,0x35, +0x32,0x50,0x32,0x3d,0xc7,0xe6,0xa1,0x98,0x18,0x7e,0x33,0xca, +0xbd,0x28,0x0f,0xa3,0x1c,0x47,0x79,0x08,0xe5,0x29,0x94,0x26, +0x94,0x5f,0xa3,0x7c,0xdd,0x96,0xfb,0x50,0xee,0x46,0x79,0xd6, +0x96,0x13,0x6a,0xa1,0x2c,0xc7,0xe7,0x5f,0x51,0x1e,0xc5,0x7e, +0x47,0x7c,0xde,0x2e,0x44,0xd3,0x42,0x94,0x8d,0x28,0x7f,0x42, +0xd9,0x80,0xf2,0x55,0xbb,0xde,0xf0,0xdd,0x28,0xcb,0x6d,0x59, +0x83,0x62,0xde,0x46,0x6f,0x8b,0xce,0x06,0xdc,0xf4,0x14,0xca, +0x4f,0xec,0xef,0x7e,0x83,0x72,0x2e,0xca,0x2a,0x4f,0x59,0x84, +0xb2,0x16,0xe5,0x3c,0xcf,0xe7,0x4a,0x21,0x3e,0x39,0xe9,0x39, +0xb6,0x28,0xee,0x79,0x8e,0xa1,0x7c,0xaf,0x6d,0xcf,0x63,0x66, +0x0f,0x64,0x7d,0xd6,0x78,0x8a,0xb9,0xe7,0x25,0xf6,0xfa,0x97, +0x24,0xb8,0xe7,0x25,0x3c,0xc7,0xcc,0x64,0x8a,0x62,0xda,0x8a, +0xa6,0xc8,0x63,0xb6,0x9c,0x85,0xe3,0x66,0x3d,0x85,0x1f,0xc3, +0x5e,0x83,0x2b,0x88,0x7b,0x85,0xb8,0xca,0x96,0x91,0x09,0x67, +0x77,0xfd,0x0f,0xca,0xf7,0xcd,0x9e,0x2f,0x57,0x6c,0xf2,0x7d, +0x47,0x8c,0xc3,0xf5,0x02,0xb6,0xcf,0x30,0x32,0x2f,0xaf,0xba, +0x60,0xed,0xba,0xd5,0x76,0x3f,0xfb,0x0a,0x67,0xdf,0xf4,0x82, +0x65,0x4f,0xfc,0xd2,0x86,0xb5,0xe5,0xc5,0x33,0x56,0x6c,0x5c, +0x57,0x5e,0x3c,0x75,0xc3,0x85,0x97,0xc4,0xff,0x1f,0xb9,0xce, +0xff,0x01,0xb0,0x38,0xa3,0xe2 }; -const unsigned int font_plexSans_compressed_size=77992; +const unsigned int font_plexSans_compressed_size=75726; diff --git a/src/gui/font_plexSansJP.cpp b/src/gui/font_plexSansJP.cpp new file mode 100644 index 000000000..90ee44574 --- /dev/null +++ b/src/gui/font_plexSansJP.cpp @@ -0,0 +1,128045 @@ +// papers/ibm-plex-license.txt +// File: 'IBMPlexSansJP-Regular.otf' (1958660 bytes) +#include "fonts.h" +const unsigned char font_plexSansJP_compressed_data[]={ +0x78,0xda,0x9c,0xdc,0x05,0x54,0x1b,0x4b,0x03,0x28,0xe0,0x45, +0xea,0xee,0xde,0x06,0x5a,0xea,0x97,0x52,0xa8,0x53,0x17,0xea, +0x71,0x20,0x21,0x21,0xee,0x4e,0x14,0x42,0x02,0x21,0x58,0x08, +0x16,0x2c,0xc1,0xa9,0x0b,0x5a,0x5c,0x5b,0x4a,0xdd,0xdd,0xdd, +0xdd,0xbd,0xb4,0x85,0xb7,0x6c,0xf7,0x72,0xa1,0xff,0xfd,0xff, +0xf7,0xce,0x83,0xb3,0xbb,0x63,0x3b,0x3b,0x33,0x3b,0x3b,0xbb, +0x9c,0xf3,0x1d,0x50,0x78,0x3c,0x0a,0xe8,0x6f,0x07,0x00,0x8e, +0x00,0xb0,0x7c,0x19,0x6e,0x15,0x7f,0x79,0xf0,0x72,0x60,0xd4, +0x9d,0x09,0x00,0x00,0x5c,0x58,0xe1,0xe5,0x85,0x78,0x35,0x74, +0x69,0x28,0x60,0x3f,0x80,0x07,0x8c,0x38,0x55,0xb7,0x12,0xb7, +0x76,0x35,0x98,0x6e,0x07,0x8c,0x79,0xf0,0x13,0x3c,0x76,0x5f, +0x8d,0x46,0xe1,0x46,0x2d,0x79,0xb9,0x17,0x2c,0xff,0x0d,0x00, +0xc4,0x0d,0xab,0x71,0xde,0xcb,0x3d,0x3f,0x36,0x86,0x01,0xa3, +0x37,0x54,0x00,0x80,0x64,0x32,0x0a,0x37,0xc3,0x5d,0x28,0x11, +0xcd,0x07,0x4f,0x91,0x81,0xe5,0x69,0x3e,0x28,0xec,0xea,0x29, +0x84,0xde,0x3d,0x81,0xd1,0x75,0xb7,0xc0,0xf8,0x70,0xa6,0x98, +0x2e,0xfb,0x0e,0x78,0xf1,0x00,0xa0,0x17,0x02,0xb0,0xef,0x3a, +0x99,0xc7,0xa6,0xb3,0xc6,0x1c,0x1f,0x77,0x1d,0x2c,0xdf,0x1b, +0xcc,0x9f,0xc3,0x03,0x13,0x7a,0x65,0x4d,0x99,0x01,0xc6,0x57, +0x82,0xf1,0x09,0x3c,0xb1,0x32,0x50,0x2c,0xbc,0x73,0x13,0x3c, +0xff,0x13,0x00,0xa4,0x46,0x88,0xe9,0x81,0x32,0x17,0x27,0x74, +0x5b,0x93,0xc0,0x3a,0x80,0xae,0x12,0xba,0x98,0x3d,0x7c,0xc3, +0xe7,0xbb,0x60,0xfc,0x1c,0x00,0xf4,0x40,0xca,0xa4,0x0a,0x65, +0xeb,0x36,0x60,0x21,0xd8,0xfe,0x35,0x60,0x3e,0x42,0x0d,0xd6, +0xd7,0x45,0x39,0x77,0x18,0x30,0x06,0x15,0xd8,0x56,0x9f,0x1a, +0xac,0x6f,0x75,0x94,0x6a,0x15,0x18,0xcf,0x06,0x80,0x14,0x1a, +0xd8,0xb3,0xb6,0xde,0x2d,0xbf,0xda,0xe7,0xb9,0x9c,0xda,0x6f, +0xe1,0x67,0xc0,0xc1,0xe1,0x19,0x98,0x02,0xdc,0xba,0x2c,0x11, +0xb6,0x1d,0x6f,0x67,0x8b,0x9e,0xb5,0xba,0xb6,0x3a,0x75,0x19, +0xe8,0xb8,0x02,0x8c,0x3a,0x00,0xf6,0xc0,0xef,0x1f,0xf0,0x3c, +0x07,0x59,0xab,0xc9,0xe1,0x59,0x17,0x5f,0x30,0xdf,0xb5,0xcb, +0x40,0xa8,0xa6,0x0e,0x3f,0x2e,0x4e,0x00,0x80,0x86,0xf6,0x80, +0xa3,0xc3,0x31,0x3b,0x0b,0xd0,0x05,0x00,0xec,0xcd,0xf6,0x04, +0x30,0xbe,0xfe,0xf7,0xd1,0x8e,0x02,0x2c,0xb4,0x03,0x6b,0xb5, +0xef,0xd5,0xc5,0xa1,0x8b,0x3d,0x58,0xb5,0x83,0x01,0xb0,0x7f, +0x2b,0x38,0xfa,0x13,0x1c,0x59,0x60,0x60,0x5b,0x1d,0x6b,0x97, +0x6f,0x44,0xd8,0x2d,0x05,0x80,0xd6,0xd6,0xdf,0xd7,0x72,0x9c, +0x60,0x57,0x83,0xb0,0x6f,0xab,0x09,0x3c,0x6b,0x8c,0xfd,0xed, +0xb6,0x1e,0x02,0x5d,0xc1,0xfd,0x14,0xbb,0x0f,0xed,0xd7,0xff, +0xeb,0x77,0xeb,0xa0,0x7d,0x7f,0x30,0xf6,0x3b,0x6c,0x0f,0x74, +0x03,0x16,0xc1,0x61,0x07,0x60,0x34,0xb0,0x12,0x0e,0x3b,0x76, +0x28,0xd3,0x05,0xe8,0x03,0xd0,0xe0,0x70,0x57,0x30,0x2c,0x86, +0xc3,0xdd,0x00,0x0c,0xa0,0x85,0xc3,0xdd,0x81,0xde,0xc0,0x49, +0x38,0xdc,0x03,0x50,0x01,0x57,0xe1,0x70,0x2f,0x60,0xb8,0xdd, +0x06,0x38,0xdc,0x1b,0x18,0x68,0xc7,0x82,0xc3,0x7d,0x00,0x8b, +0x9d,0x1a,0x0e,0xf7,0x05,0x46,0xda,0x77,0x85,0xc3,0xfd,0x3b, +0x5c,0x77,0xc0,0x3f,0x6d,0x03,0x77,0x03,0xed,0x11,0x70,0xd8, +0x0e,0x0c,0xbb,0xc3,0x61,0x7b,0x60,0x90,0x3d,0xdc,0x66,0x3b, +0x07,0x30,0xdd,0x17,0x0c,0xdb,0xb5,0xb6,0x02,0x83,0x01,0x27, +0x7b,0x3e,0xd8,0x23,0x3b,0xc7,0x1e,0x60,0x96,0x9f,0xbd,0x19, +0x0e,0xdb,0x01,0x08,0xfb,0x47,0x70,0xd8,0x1e,0xe8,0xeb,0xe0, +0x08,0x87,0x1d,0x80,0x79,0x0e,0x03,0xe1,0xb0,0x63,0x87,0x32, +0x5d,0x80,0x91,0x0e,0xeb,0xe0,0x70,0x57,0x30,0xcc,0x82,0xc3, +0xdd,0x80,0x2d,0x0e,0x21,0x70,0xb8,0x3b,0x30,0xdc,0x11,0x01, +0x87,0x7b,0x00,0x2f,0x1c,0xe7,0xc1,0xe1,0x5e,0x80,0x5b,0x17, +0x67,0x38,0xdc,0x1b,0x98,0xd0,0x05,0x0b,0x87,0xfb,0xd8,0x21, +0xba,0xa8,0xe1,0x70,0x5f,0x60,0x56,0x57,0x2b,0x1c,0xee,0xdf, +0xe1,0xba,0x03,0xfe,0x69,0x1b,0xd8,0xb9,0x09,0x5d,0x4f,0xc0, +0x61,0x3b,0x30,0xfc,0x06,0x0e,0xdb,0x03,0x13,0xbb,0xc1,0x6d, +0x06,0xfb,0x3e,0xa1,0xdb,0xbc,0x15,0x52,0x59,0x90,0x9c,0xcf, +0xe5,0x29,0x11,0xee,0x6e,0x33,0xe7,0x21,0xda,0xa6,0xc9,0x0a, +0xa9,0x5c,0xe6,0x8a,0x58,0x26,0x12,0x21,0xa0,0x0c,0x05,0x42, +0xce,0x56,0xb0,0xe5,0x6a,0x36,0xcb,0xb5,0x2d,0x17,0x2d,0x62, +0x07,0x22,0x70,0x74,0x89,0x02,0xb1,0x0e,0x8d,0x65,0x73,0x55, +0x22,0xba,0x1c,0x4c,0xf6,0x04,0xb7,0xb6,0x9c,0xb6,0x8c,0x75, +0x68,0xcf,0x99,0xae,0x6e,0x6e,0x33,0x3d,0xdd,0xdd,0xdc,0x67, +0xfa,0xb0,0xe5,0x0a,0xbe,0x54,0x82,0x80,0x52,0x3a,0x15,0xfa, +0xbb,0xb2,0x5d,0x08,0xbe,0x02,0x41,0x47,0x28,0xe5,0x74,0x16, +0x5b,0x4c,0x97,0x0b,0x11,0x52,0x4e,0x7b,0x33,0xa6,0x83,0xd7, +0xe6,0xf2,0x15,0x4a,0xb6,0x9c,0xcd,0x42,0xf0,0x25,0x08,0x31, +0x5d,0x12,0x84,0x10,0xa8,0xe4,0x7c,0x05,0x8b,0xcf,0x54,0x82, +0xf5,0x2a,0x10,0x1a,0xa9,0x5c,0xc4,0xd2,0xf0,0x59,0x6c,0x57, +0xb0,0x5a,0x96,0x14,0x6c,0xf5,0x5a,0x09,0xd3,0x75,0x23,0x5f, +0xc8,0x46,0x2c,0x63,0x30,0xf8,0x12,0xa1,0x27,0x02,0x4d,0x57, +0x89,0x10,0x6a,0xba,0x04,0xc1,0x62,0xcb,0x11,0x1b,0xe8,0x74, +0x09,0x98,0xc4,0x67,0x83,0x95,0x42,0x89,0x58,0xa9,0x42,0x4c, +0x17,0xb1,0xc1,0x44,0x5f,0x95,0x00,0xbc,0x06,0x8e,0x2f,0xf6, +0x44,0x10,0xd9,0x6d,0x41,0x5f,0xbe,0x27,0x62,0x1d,0x5f,0xc2, +0x63,0xb3,0x11,0xeb,0xdb,0x52,0x97,0x4b,0xa5,0x62,0x3e,0x58, +0x9d,0x1c,0xac,0x94,0x28,0x95,0xd0,0x7f,0xa7,0xae,0xe7,0x33, +0x79,0x60,0x3d,0x1b,0xe9,0x3c,0xa5,0x52,0xb6,0x60,0xc6,0x0c, +0x8d,0x46,0xe3,0xaa,0xf8,0xdd,0x16,0x57,0xa6,0xd4,0x55,0x28, +0xef,0x90,0xce,0x67,0x88,0xc1,0x34,0x31,0x9e,0x07,0xf6,0xd9, +0x4b,0x2a,0x51,0x22,0x70,0x52,0x8e,0x52,0x43,0x97,0xb3,0xdb, +0x06,0x41,0xc4,0x67,0xb2,0x25,0x0a,0xb0,0xa7,0x2a,0x49,0x5b, +0x4b,0x95,0x3c,0x36,0x02,0xb7,0x76,0x03,0x02,0x25,0x63,0x4b, +0x7e,0x17,0xde,0xf0,0xbb,0xc0,0x74,0xc4,0x3f,0xa3,0x3a,0xd3, +0x15,0x01,0x55,0x06,0x9f,0x0b,0x8d,0xa5,0x9a,0xce,0x17,0xd1, +0x19,0x22,0x36,0x42,0xc3,0x57,0xf2,0xc0,0xa1,0xf5,0x5a,0x86, +0x41,0xd0,0x95,0x0b,0x10,0x70,0x3b,0x14,0x4c,0x39,0x5f,0xa6, +0x54,0xb8,0x2a,0xf8,0x22,0x57,0xa9,0x9c,0x3b,0x03,0xe5,0xb5, +0xe1,0xbf,0xe7,0x28,0xf8,0x62,0x19,0x58,0x93,0x48,0xaa,0x61, +0xcb,0x99,0x74,0xf0,0x02,0xf4,0xff,0x48,0xe1,0x2a,0x44,0x74, +0x05,0x0f,0x6c,0xb6,0x44,0x25,0x66,0x80,0xed,0xd6,0xb2,0xe5, +0x52,0x96,0x54,0xa9,0xec,0x9c,0xd2,0xe9,0xde,0xff,0x05,0xcf, +0x9c,0xbf,0xe6,0x79,0xc8,0xd4,0x7f,0x61,0xd7,0xe3,0xd6,0xfd, +0xb5,0x06,0x58,0x01,0x48,0x01,0x19,0x10,0x04,0xc8,0x01,0x3e, +0xc0,0x05,0x78,0x80,0x12,0x5c,0x91,0xdc,0x01,0x37,0x60,0x26, +0x30,0x0f,0x0c,0xad,0x05,0x96,0x03,0x1b,0xc1,0x63,0x5b,0x29, +0x39,0x58,0xce,0x15,0x0c,0x2f,0x03,0x44,0xe0,0x2f,0xa2,0xc3, +0x19,0x0a,0x28,0xc6,0x06,0x8f,0x6c,0xf0,0xa8,0x06,0xf7,0x2c, +0xb0,0xe4,0xdf,0xe7,0xa2,0xc1,0xd2,0x6c,0x20,0x10,0x0c,0xe1, +0x00,0x3a,0x20,0x81,0x4a,0xaf,0x03,0x53,0xb1,0x60,0x2a,0x17, +0x5c,0x81,0x44,0x60,0xaa,0x1c,0x2e,0xed,0x09,0x1f,0xff,0x3e, +0xe7,0xef,0x33,0xda,0xca,0x7b,0x82,0x6d,0x72,0x05,0x5b,0xd6, +0xd6,0x36,0x4f,0xa8,0x8d,0xee,0x60,0xc8,0x07,0xba,0xa6,0x02, +0x6c,0x8b,0x14,0x2c,0x89,0xe8,0x50,0xe6,0xbf,0xd7,0xf4,0x67, +0xcb,0x8a,0xc1,0x30,0x1f,0x6a,0x17,0x1d,0xdc,0x94,0x60,0x7d, +0x74,0xb0,0x07,0x6c,0x70,0xfd,0x6c,0x6b,0x99,0x10,0x4c,0x93, +0x02,0x9c,0x7f,0x19,0x8d,0xe9,0x70,0xbf,0xb9,0xd0,0xd9,0x4a, +0xa8,0x25,0x6d,0x7d,0x6f,0xab,0xad,0xad,0x2d,0x62,0xe8,0x9a, +0x41,0x60,0x48,0x00,0xf6,0x53,0x0e,0x95,0x62,0x81,0x7b,0x26, +0x58,0xf6,0x77,0x7b,0xdb,0xae,0xa9,0x81,0x6a,0x13,0x81,0x39, +0x1a,0x30,0xb5,0xed,0xba,0xae,0x70,0x6b,0x59,0x60,0xce,0xef, +0xb1,0x5e,0x0b,0xc6,0x98,0x60,0xfa,0x46,0xb0,0x84,0x10,0x2c, +0xd1,0x76,0x17,0x18,0xe0,0x6f,0xdb,0x75,0x84,0xe0,0x68,0xb4, +0xf5,0x85,0x0e,0x8d,0x25,0x02,0x1c,0x7f,0x3a,0x74,0x75,0x16, +0xd4,0x1e,0x04,0xb0,0x01,0x8c,0xb7,0xa5,0xfc,0x2e,0xc5,0x07, +0x53,0x95,0x70,0xce,0xdf,0x25,0xb1,0xe0,0x75,0x14,0x50,0x6b, +0xdb,0xc6,0xe3,0x77,0x49,0x5f,0xb0,0x36,0x01,0xdc,0x0f,0x1c, +0x78,0x14,0x43,0xa9,0x44,0x30,0xff,0xef,0x54,0x5f,0xf0,0xe8, +0x09,0xdd,0xcb,0xb6,0x38,0x0f,0xcc,0x69,0x6b,0xd7,0xfa,0xf6, +0xb2,0xcb,0xc1,0x5a,0xa5,0x60,0x98,0x0f,0xb7,0x4e,0x0e,0xb7, +0x94,0x08,0xf5,0x9c,0xde,0xa9,0xec,0x7a,0x68,0x54,0x78,0x70, +0x7b,0x36,0x82,0xc7,0xb6,0x79,0xa5,0x04,0xc7,0x78,0x01,0x30, +0x03,0xfc,0xd5,0x40,0xbf,0xae,0x60,0x2b,0x3b,0x8e,0x8b,0x2b, +0x78,0x8e,0x14,0xdc,0x0b,0xc1,0xba,0xff,0xbd,0x3c,0x1f,0x1c, +0x23,0x31,0x5c,0x4e,0x0c,0xe0,0xc1,0x52,0xbf,0xef,0xb3,0x17, +0xd4,0x06,0x25,0xd4,0xb7,0xb6,0x7b,0xab,0x04,0x4b,0xd3,0xa1, +0xbb,0xf7,0xf7,0x4c,0x10,0x41,0x2d,0x62,0x43,0xf7,0xe8,0xf7, +0x3d,0x55,0x41,0x57,0xfe,0x3d,0x72,0x4a,0xa8,0xbf,0x6d,0x67, +0xaf,0x05,0xc7,0x17,0x01,0xa0,0xc0,0x2b,0xb3,0xa1,0xb6,0xff, +0x53,0xf3,0x86,0x4e,0x35,0xb4,0xcd,0x95,0x7f,0x9b,0xab,0x33, +0xa1,0x67,0xea,0x9f,0x96,0x75,0xbe,0xee,0x3f,0xf3,0xb2,0xed, +0x5e,0xf1,0xa1,0x67,0x85,0x01,0xdd,0x25,0x04,0x34,0x5b,0xda, +0xda,0xf1,0x7b,0xd6,0x7a,0x81,0x33,0x02,0x03,0x85,0x95,0xe0, +0x18,0x20,0xfe,0x18,0x0f,0x05,0x58,0x67,0xdb,0xfc,0x93,0x41, +0x4f,0xab,0x2b,0xd4,0x86,0xb6,0xf1,0x6b,0x9b,0x79,0x5c,0x30, +0x1f,0x05,0x9e,0xbf,0xe1,0xff,0xeb,0x1c,0x05,0x74,0x0f,0x65, +0x70,0x9b,0x44,0x60,0xae,0x06,0xea,0x25,0x13,0x6c,0xc9,0xef, +0x1e,0xd0,0xff,0x1f,0xca,0x70,0xc1,0xa3,0x08,0x8a,0xf1,0xe0, +0xd1,0x96,0x80,0xe3,0x2d,0x06,0xfb,0xfa,0x7b,0xbc,0xb5,0xd0, +0x51,0x0a,0xdd,0x79,0x25,0x34,0x7f,0xff,0x7b,0x99,0xdf,0x5f, +0x42,0x6d,0x5f,0x49,0x00,0x38,0xea,0xd0,0x57,0x72,0x51,0x6e, +0xdb,0xd7,0x06,0xf8,0xbd,0x3a,0xb6,0xed,0x2d,0x0c,0xa5,0x3b, +0x00,0x3d,0xa1,0x74,0xc7,0x22,0x39,0x00,0x38,0x2f,0x45,0x80, +0x5f,0x3d,0xf6,0x4b,0x81,0x71,0x00,0x09,0x20,0x03,0xc1,0x40, +0x08,0x70,0x04,0xb8,0x02,0x3c,0x01,0xbe,0x00,0xdf,0x80,0x56, +0xbb,0x99,0x76,0xcb,0xed,0x70,0x76,0x74,0xbb,0x40,0xbb,0x10, +0xbb,0x64,0xfb,0x06,0xfb,0x23,0xf6,0x27,0xed,0x6f,0xd8,0xdf, +0x72,0xe8,0xee,0xd0,0xdb,0x61,0xb2,0x83,0xbb,0xc3,0x1c,0x87, +0xcd,0x0e,0xbb,0x1d,0x9a,0x1c,0x8e,0x3b,0xda,0x39,0x0e,0x71, +0x9c,0xed,0x88,0x72,0xc4,0x20,0x1c,0x10,0x43,0x11,0x23,0x11, +0x63,0x11,0xce,0x88,0x89,0x08,0x37,0x84,0x07,0xc2,0x13,0xb1, +0x18,0xb1,0x12,0xe1,0x87,0xf0,0x47,0x14,0x3a,0x39,0x38,0xf5, +0x74,0x1a,0xe4,0x34,0xd4,0xc9,0xd9,0x69,0x9a,0x93,0xa7,0x13, +0xdf,0x49,0xe8,0x14,0xe4,0x14,0xec,0x14,0xea,0x94,0xe2,0x74, +0xc4,0xe9,0x82,0xd3,0x25,0xa7,0xe7,0x4e,0x9f,0x9d,0x01,0x67, +0x07,0xe7,0xee,0xce,0xbd,0x9c,0x07,0x3a,0x8f,0x74,0x46,0x38, +0xbb,0x3a,0xcf,0x76,0x5e,0xe4,0x8c,0x75,0xa6,0x3b,0x73,0x9d, +0x85,0xce,0xe1,0xce,0xd1,0xce,0xdb,0x9d,0x1b,0xc7,0x0f,0x1c, +0x3f,0x75,0xfc,0xee,0xf1,0x45,0x13,0x14,0x13,0xa2,0x27,0x58, +0x26,0x54,0x4e,0x78,0xe1,0xb2,0xde,0x05,0xed,0x42,0x71,0xa1, +0xbb,0x08,0x5c,0x14,0x2e,0x26,0x97,0x44,0x97,0x34,0x97,0x2d, +0x2e,0xe5,0x2e,0xd5,0x2e,0x7b,0x5d,0x9a,0x5c,0x8e,0xba,0x1c, +0x77,0x39,0xe9,0x72,0xd6,0xe5,0xb1,0xcb,0xdb,0x89,0x0e,0x13, +0xbb,0x4e,0xec,0x3b,0x71,0xdc,0xc4,0xa5,0x13,0x97,0x4f,0xe4, +0x4e,0x14,0x4c,0x14,0x4f,0x94,0x4e,0x0a,0x99,0xb4,0x79,0x5a, +0xb7,0x69,0x69,0xae,0x09,0xae,0x16,0xd7,0x54,0xd7,0x0c,0xd7, +0x2c,0xd7,0x4d,0xae,0x4d,0xae,0x87,0x5c,0xcf,0xbb,0x5e,0x73, +0x7d,0xe4,0xfa,0xdc,0xf5,0xa5,0xeb,0x6b,0xd7,0xb7,0xae,0x1f, +0x66,0xcc,0x9b,0xc1,0x99,0x21,0x9b,0xb1,0x69,0xc6,0x65,0xb7, +0x6e,0x6e,0x03,0xdc,0x86,0xb8,0x8d,0x71,0x43,0xb8,0xcd,0x71, +0x4b,0x71,0xb3,0xba,0xe5,0xba,0x7d,0x71,0x6b,0x71,0x9f,0xe1, +0xbe,0xc2,0x1d,0xe3,0x4e,0x72,0x4f,0x75,0xb7,0xba,0x67,0xb8, +0xe7,0xba,0xef,0x72,0xdf,0xe3,0x01,0x78,0x38,0x78,0x74,0xf1, +0xe8,0xe3,0x31,0xd4,0x63,0xb8,0xc7,0x58,0x8f,0xf1,0x1e,0x93, +0x3c,0xa6,0x79,0xcc,0xf4,0xf0,0xf0,0x98,0xe3,0x31,0xdf,0xc3, +0xd3,0x63,0xb9,0xc7,0x6a,0x8f,0x75,0x1e,0x48,0x0f,0x8c,0x87, +0xaf,0x47,0xa8,0x47,0x8c,0x87,0xc5,0x23,0xdd,0x63,0x87,0x47, +0xb9,0xc7,0x21,0x8f,0x63,0x1e,0xa7,0x3d,0x2e,0x2d,0x42,0x22, +0xed,0x90,0x0e,0xc8,0x5e,0xc8,0xbe,0xc8,0x01,0xc8,0x11,0xc8, +0xb1,0x48,0x27,0xe4,0x44,0xe4,0x64,0xe4,0x54,0xe4,0x5f,0x48, +0x77,0xe4,0x1c,0xe4,0x7c,0xe4,0x42,0xe4,0x12,0xe4,0x0a,0xe4, +0x2a,0xe4,0x7a,0x24,0x0a,0x49,0x44,0x52,0x91,0x0c,0x64,0x00, +0x52,0x81,0x0c,0x41,0x1a,0x90,0x46,0x64,0x14,0x32,0x0e,0x99, +0x80,0x4c,0x46,0xa6,0x21,0x33,0x90,0xd9,0xc8,0x2d,0xc8,0x1d, +0xc8,0x5d,0xc8,0x62,0xe4,0x1e,0x64,0x39,0xb2,0x0a,0x59,0x87, +0x3c,0x80,0x3c,0x84,0x3c,0x8a,0x3c,0x89,0x3c,0x8b,0xbc,0x8e, +0xbc,0x8b,0xbc,0x8f,0x7c,0x8c,0x7c,0x83,0x7c,0x87,0xfc,0x80, +0xfc,0x8a,0xfc,0x89,0xb2,0x43,0x39,0xa0,0x7a,0xa2,0x06,0xa0, +0x46,0xa2,0xc6,0xa0,0xdc,0x50,0xb3,0x50,0x73,0x50,0x0b,0x50, +0x8b,0x50,0x2b,0x50,0xab,0x51,0x18,0x14,0x0e,0xe5,0x8b,0xa2, +0xa0,0xf8,0x28,0x19,0x4a,0x81,0x52,0xa3,0x74,0xa8,0x50,0x54, +0x38,0x2a,0x0a,0x65,0x42,0xc5,0xa2,0xe2,0x51,0x89,0xa8,0x64, +0x54,0x2a,0xca,0x8a,0x4a,0x47,0x65,0xa1,0x72,0x50,0x9b,0x51, +0x05,0xa8,0x12,0x54,0x15,0xaa,0x11,0x75,0x08,0x75,0x02,0x75, +0x06,0x75,0x1e,0x75,0x09,0x75,0x0d,0x75,0x13,0x75,0x1b,0x75, +0x1f,0xf5,0x18,0xf5,0x16,0xf5,0x1e,0xf5,0x11,0xf5,0x05,0xf5, +0x0d,0xd5,0x8c,0x6a,0x45,0x77,0x45,0xf7,0x40,0xf7,0x42,0xf7, +0x41,0xf7,0x43,0x0f,0x44,0x0f,0x46,0x0f,0x45,0x8f,0x44,0x8f, +0x43,0x4f,0x44,0xff,0x85,0x9e,0x83,0x9e,0x8f,0x5e,0x8a,0x5e, +0x81,0x5e,0x8b,0x46,0xa3,0x7d,0xd0,0x7e,0x68,0x32,0x9a,0x8d, +0x16,0xa1,0x65,0x68,0x39,0x5a,0x8d,0x0e,0x44,0xeb,0xd1,0x06, +0x74,0x24,0x3a,0x1e,0x9d,0x84,0x4e,0x45,0x67,0xa2,0x8b,0xd0, +0x95,0xe8,0x6a,0xf4,0x3e,0xf4,0x01,0xf4,0x61,0xf4,0x09,0xf4, +0x69,0xf4,0x59,0xf4,0x79,0xf4,0x15,0xf4,0x35,0xf4,0x0d,0xf4, +0x1d,0xf4,0x43,0xf4,0x63,0xf4,0x53,0xf4,0x1b,0xf4,0x67,0xf4, +0x77,0xf4,0x0f,0x8c,0x3d,0xc6,0x11,0xd3,0x03,0x33,0x10,0x33, +0x14,0x33,0x1c,0x33,0x12,0x33,0x0e,0xe3,0x84,0x99,0x8a,0x71, +0xc7,0xcc,0xc5,0x2c,0xc4,0x2c,0xc3,0x20,0x31,0x68,0x0c,0x16, +0x83,0xc7,0xf8,0x61,0xc8,0x18,0x06,0x86,0x8d,0x91,0x60,0x02, +0x30,0x81,0x18,0x1d,0xc6,0x80,0x31,0x62,0xa2,0x30,0x66,0x4c, +0x3c,0x26,0x05,0x63,0xc3,0x64,0x60,0x72,0x30,0x9b,0x30,0x5b, +0x30,0x3b,0x30,0x85,0x98,0x6a,0xcc,0x3e,0xcc,0x11,0xcc,0x71, +0xcc,0x69,0xcc,0x15,0xcc,0x6d,0xcc,0x7d,0xcc,0x53,0xcc,0x0b, +0xcc,0x6b,0xcc,0x7b,0xcc,0x17,0x4c,0x33,0xa6,0x05,0x0b,0x60, +0x1d,0xb1,0xdd,0xb1,0xbd,0xb0,0x7d,0xb1,0x03,0xb0,0x43,0xb0, +0xc3,0xb0,0x63,0xb0,0x2e,0xd8,0x49,0xd8,0xa9,0x58,0x57,0xac, +0x1b,0xd6,0x03,0xeb,0x89,0x5d,0x89,0x5d,0x8d,0xdd,0x88,0x45, +0x61,0xf1,0x58,0x1f,0x2c,0x09,0x4b,0xc1,0xb2,0xb1,0x02,0xac, +0x0a,0xab,0xc7,0x86,0x62,0xc3,0xb1,0x31,0xd8,0x78,0x6c,0x32, +0x36,0x15,0x9b,0x8d,0xdd,0x84,0xdd,0x8a,0xdd,0x81,0x2d,0xc2, +0x96,0x60,0x4b,0xb1,0x95,0xd8,0x5a,0x6c,0x03,0x76,0x1f,0xb6, +0x09,0x7b,0x10,0x7b,0x18,0x7b,0x14,0x7b,0x1c,0x7b,0x1a,0x7b, +0x01,0x7b,0x19,0x7b,0x1d,0x7b,0x13,0x7b,0x0f,0xfb,0x08,0xfb, +0x14,0xfb,0x11,0xfb,0x19,0xdb,0x8c,0xb3,0xc7,0x75,0xc7,0xf5, +0xc1,0xf5,0xc7,0x0d,0xc3,0x8d,0xc4,0x8d,0xc1,0x39,0xe1,0x26, +0xe0,0xa6,0xe2,0x66,0xe0,0x66,0xe2,0x3c,0x70,0x9e,0xb8,0x65, +0xb8,0x15,0xb8,0x75,0xb8,0x8d,0x38,0x3c,0x8e,0x80,0xf3,0xc3, +0x91,0x71,0x14,0x1c,0x0d,0xc7,0xc1,0xf1,0x71,0x2a,0x5c,0x20, +0x2e,0x18,0xa7,0xc7,0x85,0xe2,0x8c,0xb8,0x08,0x5c,0x0a,0xce, +0x8a,0x4b,0xc7,0x65,0xe2,0x36,0xe1,0x76,0xe0,0x76,0xe3,0x8a, +0x71,0x7b,0x70,0xe5,0xb8,0x2a,0x5c,0x3d,0xee,0x20,0xee,0x0c, +0xee,0x12,0xee,0x2a,0xee,0x3a,0xee,0x26,0xee,0x36,0xee,0x2e, +0xee,0x31,0xee,0x23,0xee,0x1b,0xae,0x19,0x6f,0x87,0x77,0xc4, +0x0f,0xc0,0x8f,0xc2,0x23,0xf0,0x13,0xf1,0x53,0xf0,0xae,0xf8, +0x39,0xf8,0xf9,0xf8,0xc5,0xf8,0xa5,0xf8,0xe5,0x78,0x2f,0xfc, +0x3a,0x3c,0x12,0x8f,0xc1,0x53,0xf1,0x3c,0xbc,0x00,0x1f,0x80, +0x57,0xe0,0x35,0x78,0x3d,0xde,0x80,0x8f,0xc0,0x47,0xe1,0xe3, +0xf0,0x16,0x7c,0x32,0x3e,0x1b,0xbf,0x05,0xbf,0x1d,0xbf,0x1b, +0x5f,0x88,0x2f,0xc1,0x97,0xe3,0x6b,0xf0,0xfb,0xf0,0x07,0xf0, +0x87,0xf0,0xc7,0xf1,0xd7,0xf0,0x0f,0xf0,0x4f,0xf0,0xcf,0xf1, +0x6f,0xf0,0x1f,0xf0,0xcd,0xf8,0x5f,0xf8,0x56,0x6f,0x47,0xef, +0x6e,0xde,0xfd,0xbd,0x07,0x7b,0x0f,0xf5,0x9e,0xe1,0x3d,0xd3, +0xdb,0xc3,0x7b,0xbe,0xf7,0x62,0xef,0xa5,0xde,0x5e,0xde,0x1b, +0xbc,0x51,0xde,0x38,0x6f,0x5f,0x6f,0x8a,0x37,0xd3,0x5b,0xe7, +0x1d,0xe2,0x6d,0xf0,0x8e,0xf0,0x8e,0xf6,0x8e,0xf5,0xce,0xf4, +0xce,0xf3,0x2e,0xf4,0x2e,0xf6,0xde,0xe3,0x5d,0xe5,0x7d,0xd8, +0xfb,0xa8,0xf7,0x25,0xef,0x1b,0xde,0xb7,0xbc,0xef,0x7a,0x3f, +0xf2,0xfe,0xea,0xfd,0xdd,0xbb,0xc5,0xa7,0xab,0x4f,0x0f,0x9f, +0xc1,0x3e,0xc3,0x7d,0x46,0xf9,0x4c,0xf1,0x99,0xe1,0xe3,0xee, +0x33,0xcb,0x67,0x8e,0xcf,0x3c,0x9f,0xe5,0x3e,0x1b,0x7c,0x90, +0x3e,0x68,0x1f,0x9c,0x0f,0xc9,0x87,0xe5,0xc3,0xf3,0x11,0xf9, +0x28,0x7d,0x02,0x7d,0xb4,0x3e,0x06,0x9f,0x68,0x1f,0xb3,0x4f, +0xa2,0x4f,0xaa,0x4f,0x86,0xcf,0x26,0x9f,0x2d,0x3e,0xdb,0x7d, +0x8a,0x7d,0x2a,0x7c,0xaa,0x7c,0x1a,0x7c,0x0e,0xfa,0x1c,0xf3, +0x39,0xe1,0x73,0xc6,0xe7,0xbc,0xcf,0x45,0x9f,0x6b,0x3e,0x37, +0x7d,0xee,0xf8,0xdc,0xf3,0x79,0xe8,0xf3,0xc6,0xe7,0x9d,0xcf, +0x47,0x9f,0x66,0x9f,0x5f,0xbe,0x80,0xaf,0xa3,0x6f,0x0f,0xdf, +0x5e,0xbe,0x7d,0x7c,0xfb,0xf9,0x0e,0xf2,0x1d,0xea,0x3b,0xdc, +0x77,0xb4,0xef,0x38,0xdf,0xc9,0xbe,0x7f,0xf9,0xba,0xf9,0xce, +0xf3,0xf5,0xf4,0x5d,0xea,0xbb,0xdc,0x77,0xb5,0xef,0x3a,0x5f, +0x8c,0x2f,0xd1,0x97,0xee,0xcb,0xf1,0x15,0xf8,0x86,0xfa,0x1a, +0x7d,0x63,0x7c,0x63,0x7d,0x53,0x7c,0x37,0xf9,0x6e,0xf3,0xcd, +0xf7,0x2d,0xf4,0xdd,0xe3,0x5b,0xee,0xbb,0xdf,0xf7,0xa0,0xef, +0x31,0xdf,0x93,0xbe,0x67,0x7c,0x2f,0xf9,0x5e,0xf1,0xbd,0xe5, +0x7b,0xcf,0xf7,0xa1,0xef,0x27,0xdf,0xaf,0xbe,0xcd,0xbe,0x3f, +0x09,0x00,0xc1,0x9e,0xd0,0x95,0xd0,0x8b,0x30,0x84,0x30,0x82, +0x30,0x86,0xe0,0x44,0x98,0x40,0x98,0x4a,0x98,0x49,0x98,0x4d, +0x58,0x40,0x58,0x44,0x58,0x46,0x58,0x4f,0xc0,0x12,0xf0,0x04, +0x3f,0x02,0x85,0xc0,0x20,0xf0,0x09,0x42,0x82,0x8c,0x20,0x27, +0xa8,0x08,0x41,0x84,0x10,0x42,0x38,0x21,0x92,0x90,0x42,0xb0, +0x11,0xb2,0x09,0x79,0x84,0x5d,0x84,0x02,0x42,0x31,0xa1,0x9c, +0x50,0x4f,0xd8,0x47,0x68,0x22,0x1c,0x26,0x1c,0x25,0x9c,0x20, +0x9c,0x22,0x9c,0x27,0x5c,0x24,0x5c,0x26,0x5c,0x27,0xdc,0x22, +0xdc,0x25,0x3c,0x26,0xbc,0x22,0x7c,0x20,0x7c,0x25,0xfc,0x22, +0xda,0x13,0x7b,0x11,0xfb,0x13,0x87,0x12,0x47,0x13,0x9d,0x89, +0x2e,0xc4,0x49,0x44,0x57,0xa2,0x3b,0x71,0x1e,0x71,0x31,0x71, +0x25,0x71,0x2d,0x11,0x43,0xf4,0x26,0x12,0x88,0x24,0xa2,0x3f, +0x91,0x46,0x64,0x12,0xd9,0x44,0x01,0x51,0x44,0x94,0x10,0x95, +0xc4,0x40,0xa2,0x9e,0x18,0x41,0x34,0x13,0xe3,0x89,0x29,0x44, +0x2b,0x31,0x83,0x98,0x45,0xcc,0x21,0x6e,0x27,0xee,0x22,0x16, +0x12,0xcb,0x88,0xf5,0xc4,0x7d,0xc4,0x23,0xc4,0xe3,0xc4,0x93, +0xc4,0xf3,0xc4,0x4b,0xc4,0x1b,0xc4,0x5b,0xc4,0x27,0xc4,0x67, +0xc4,0x97,0xc4,0x2f,0xc4,0x6f,0xc4,0x1f,0xc4,0x56,0x3f,0x3b, +0x3f,0x07,0xbf,0x1e,0x7e,0x03,0xfc,0x86,0xfb,0x8d,0xf4,0x1b, +0xed,0x87,0xf0,0x73,0xf1,0x9b,0xe2,0x37,0xc3,0x6f,0x8e,0xdf, +0x42,0xbf,0x65,0x7e,0x5e,0x7e,0x6b,0xfd,0xfc,0xfc,0x18,0x7e, +0x1c,0x3f,0x81,0x9f,0xc8,0x2f,0xd4,0x2f,0xd9,0x2f,0xcb,0x6f, +0x9f,0xdf,0x01,0xbf,0xe3,0x7e,0xa7,0xfc,0xce,0xf9,0x5d,0xf5, +0xbb,0xef,0xf7,0xd0,0xef,0x89,0xdf,0x73,0xbf,0x1f,0xa4,0x1e, +0xa4,0xde,0xa4,0xa1,0x24,0x67,0xd2,0x54,0xd2,0x74,0x92,0x1b, +0xc9,0x9d,0x34,0x87,0xb4,0x98,0xb4,0x94,0xb4,0x82,0xb4,0x8a, +0x84,0x21,0x11,0x48,0xfe,0x24,0x2a,0x89,0x43,0xe2,0x93,0x84, +0xa4,0x00,0x92,0x82,0xa4,0x22,0x05,0x92,0xb4,0x24,0x03,0x29, +0x9c,0x14,0x49,0x8a,0x21,0xc5,0x93,0x12,0x49,0x69,0xa4,0x1c, +0x52,0x1e,0x69,0x07,0xa9,0x98,0xb4,0x87,0x54,0x45,0xaa,0x25, +0xed,0x27,0x1d,0x25,0x1d,0x27,0x9d,0x22,0x9d,0x23,0x5d,0x22, +0x5d,0x23,0xdd,0x24,0xdd,0x25,0x3d,0x20,0x3d,0x27,0xbd,0x22, +0xbd,0x21,0xbd,0x23,0x7d,0x24,0x7d,0x21,0x7d,0x23,0x35,0x93, +0x5a,0xc9,0xf6,0xe4,0x5e,0xe4,0x7e,0xe4,0x01,0xe4,0x41,0xe4, +0xa1,0xe4,0x91,0xe4,0xb1,0x64,0x04,0xd9,0x99,0x3c,0x81,0x3c, +0x99,0xfc,0x17,0x79,0x26,0x79,0x19,0xd9,0x8b,0xbc,0x86,0xbc, +0x9e,0x8c,0x21,0xe3,0xc8,0xde,0x64,0x12,0x99,0x42,0x66,0x90, +0xd9,0x64,0x11,0x59,0x4a,0x0e,0x20,0xab,0xc9,0x41,0xe4,0x38, +0x72,0x12,0x39,0x95,0xbc,0x99,0xbc,0x83,0xbc,0x9b,0x5c,0x48, +0x2e,0x25,0x97,0x93,0x6b,0xc8,0x0d,0xe4,0x7d,0xe4,0xc3,0xe4, +0xa3,0xe4,0xeb,0xe4,0xfb,0xe4,0x17,0xe4,0xd7,0xe4,0x77,0xe4, +0x2f,0xe4,0x1f,0xe4,0x5f,0xfe,0xdd,0xfc,0x7b,0xf9,0xf7,0xf5, +0x1f,0xe0,0x3f,0xca,0x7f,0x9c,0xbf,0xb3,0xff,0x24,0xff,0x29, +0xfe,0xcb,0xfd,0x37,0xf8,0x23,0xfd,0xd1,0xfe,0x38,0x7f,0xb2, +0x3f,0xdf,0x5f,0xec,0x2f,0xf5,0x57,0xf8,0xab,0xfd,0x8d,0xfe, +0x11,0xfe,0xd1,0xfe,0x71,0xfe,0x16,0xff,0x1c,0xff,0x2d,0xfe, +0x85,0xfe,0xc5,0xfe,0x75,0xfe,0x7b,0xfd,0x8f,0xfb,0x9f,0xf6, +0x3f,0xe7,0x7f,0xd1,0xff,0x8a,0xff,0x4d,0xff,0x3b,0xfe,0x0f, +0xfd,0x9f,0xf9,0xbf,0xf4,0x7f,0xe3,0xff,0xd9,0xff,0xab,0xff, +0x0f,0xff,0x16,0x8a,0x03,0xa5,0x2b,0xa5,0x37,0x65,0x00,0x65, +0x28,0x65,0x14,0x65,0x0c,0xc5,0x85,0x32,0x8d,0xf2,0x17,0xc5, +0x8d,0xe2,0x41,0x99,0x47,0x59,0x44,0x59,0x4a,0x59,0x45,0x59, +0x4d,0xd9,0x40,0x41,0x52,0xbc,0x29,0xbe,0x14,0x2a,0x85,0x45, +0x09,0xa5,0x84,0x51,0x22,0x28,0xd1,0x14,0x33,0x25,0x91,0x62, +0xa3,0x64,0x52,0xb2,0x29,0x9b,0x28,0x3b,0x29,0x05,0x94,0x22, +0x4a,0x0d,0xe5,0x20,0xe5,0x04,0xe5,0x1c,0xe5,0x22,0xe5,0x0a, +0xe5,0x26,0xe5,0x36,0xe5,0x21,0xe5,0x39,0xe5,0x15,0xe5,0x3d, +0xe5,0x13,0xe5,0x1b,0xe5,0x27,0xa5,0x95,0x6a,0x47,0x75,0xa4, +0xf6,0xa1,0x0e,0xa0,0x0e,0xa7,0x8e,0xa2,0x8e,0xa3,0x3a,0x51, +0x27,0x51,0xa7,0x50,0xff,0xa2,0xce,0xa0,0xce,0xa4,0xce,0xa6, +0xce,0xa3,0x2e,0xa4,0x2e,0xa6,0x2e,0xa3,0xae,0xa2,0xae,0xa1, +0xae,0xa3,0x6e,0xa0,0x22,0xa9,0x18,0x2a,0x8e,0xea,0x4b,0x25, +0x52,0xfd,0xa9,0x0c,0x2a,0x97,0x2a,0xa6,0x06,0x50,0x15,0x54, +0x0d,0x35,0x88,0xaa,0xa3,0x46,0x52,0x4d,0xd4,0x38,0x6a,0x0a, +0x35,0x83,0x9a,0x4b,0xdd,0x4c,0xcd,0xa7,0x16,0x53,0x2b,0xa9, +0xd5,0xd4,0x5a,0xea,0x5e,0xea,0x41,0xea,0x61,0xea,0x69,0xea, +0x75,0xea,0x1d,0xea,0x3d,0xea,0x23,0xea,0x4b,0xea,0x7b,0xea, +0x67,0xea,0x37,0xea,0x0f,0xea,0x2f,0x6a,0x2b,0xad,0x3f,0x6d, +0x20,0x6d,0x28,0x6d,0x04,0x6d,0x0c,0xcd,0x89,0x36,0x8d,0x36, +0x83,0x36,0x93,0xb6,0x80,0xb6,0x82,0xe6,0x45,0x5b,0x4f,0xdb, +0x48,0x43,0xd3,0xb0,0x34,0x6f,0x9a,0x1f,0xcd,0x9f,0x46,0xa3, +0xb1,0x69,0x62,0x9a,0x8c,0xa6,0xa2,0x69,0x68,0x61,0xb4,0x48, +0x5a,0x3c,0x2d,0x99,0x96,0x4a,0xb3,0xd1,0xb2,0x68,0x9b,0x68, +0x5b,0x69,0x3b,0x69,0xf9,0xb4,0x2a,0x5a,0x0d,0x6d,0x2f,0xed, +0x28,0xed,0x3c,0xed,0x22,0xed,0x32,0xed,0x1a,0xed,0x06,0xed, +0x16,0xed,0x3e,0xed,0x21,0xed,0x19,0xed,0x13,0xed,0x2b,0xed, +0x07,0xdd,0x8e,0xee,0x40,0xef,0x4a,0xef,0x41,0xef,0x47,0x1f, +0x40,0x1f,0x42,0x1f,0x45,0x77,0xa2,0x4f,0xa6,0x4f,0xa7,0xbb, +0xd1,0x67,0xd1,0xe7,0xd2,0x97,0xd0,0x97,0xd3,0x57,0xd2,0xd7, +0xd0,0x91,0x74,0x1c,0xdd,0x9b,0xee,0x47,0xf7,0xa7,0x53,0xe9, +0x4c,0x3a,0x9b,0xce,0xa3,0x0b,0xe9,0x01,0x74,0x0d,0x3d,0x84, +0x6e,0xa4,0x47,0xd3,0xcd,0xf4,0x04,0x7a,0x12,0x3d,0x95,0x6e, +0xa5,0x67,0xd2,0xb7,0xd1,0x77,0xd2,0x77,0xd3,0x0b,0xe9,0xc5, +0xf4,0x32,0x7a,0x15,0xbd,0x8e,0xbe,0x8f,0x7e,0x90,0x7e,0x9a, +0x7e,0x8e,0xfe,0x90,0xfe,0x84,0xfe,0x81,0xfe,0x89,0xfe,0x8d, +0xde,0x0c,0xfe,0xd9,0xd4,0x93,0xd1,0x97,0x31,0x98,0x31,0x94, +0x31,0x8a,0x31,0x8e,0xe1,0xc4,0x98,0xc8,0x98,0xca,0x70,0x63, +0xcc,0x62,0xcc,0x63,0x78,0x32,0x96,0x31,0xd6,0x32,0xd6,0x33, +0x90,0x0c,0x1c,0xc3,0x9b,0x41,0x60,0x90,0x18,0x14,0x06,0x8d, +0xc1,0x64,0xf0,0x18,0x12,0x46,0x00,0x43,0xcd,0x08,0x62,0xe8, +0x18,0x06,0x46,0x04,0xc3,0xcc,0x48,0x67,0x64,0x33,0x72,0x19, +0x3b,0x18,0x85,0x8c,0x52,0x46,0x25,0xa3,0x96,0xb1,0x97,0x71, +0x80,0x71,0x82,0x71,0x9a,0x71,0x89,0x71,0x9d,0x71,0x9b,0x71, +0x9f,0xf1,0x96,0xf1,0x9e,0xf1,0x91,0xf1,0x95,0xd1,0xca,0xb4, +0x67,0xf6,0x60,0xf6,0x66,0x0e,0x60,0x8e,0x60,0x8e,0x63,0x4e, +0x66,0x4e,0x63,0xce,0x60,0x2e,0x60,0x2e,0x61,0xae,0x65,0x6e, +0x64,0xa2,0x99,0xde,0x4c,0x5f,0x26,0x99,0xc9,0x67,0x0a,0x99, +0x12,0xa6,0x9c,0xa9,0x61,0x06,0x33,0x0d,0xcc,0x70,0x66,0x0c, +0x33,0x8e,0x99,0xc8,0x4c,0x66,0x5a,0x99,0xe9,0xcc,0x2c,0xe6, +0x56,0xe6,0x76,0x66,0x21,0xb3,0x8c,0x59,0xc9,0xac,0x67,0xee, +0x63,0xee,0x67,0x1e,0x62,0x1e,0x61,0x1e,0x67,0x9e,0x63,0x5e, +0x60,0x5e,0x61,0xde,0x64,0xde,0x67,0x3e,0x64,0x3e,0x67,0xbe, +0x61,0x7e,0x61,0x36,0xb3,0xba,0xb2,0xfa,0xb0,0xfa,0xb1,0x06, +0xb3,0x86,0xb1,0x46,0xb3,0x26,0xb2,0x26,0xb3,0xfe,0x62,0xcd, +0x62,0xcd,0x61,0x2d,0x60,0x2d,0x66,0x2d,0x67,0x21,0x59,0x18, +0x16,0x81,0x45,0x63,0x71,0x59,0x7c,0x96,0x94,0xa5,0x66,0x05, +0xb2,0xb4,0xac,0x70,0x96,0x89,0x95,0xc2,0x4a,0x63,0x65,0xb2, +0x72,0x59,0xdb,0x59,0xbb,0x59,0x05,0xac,0x62,0xd6,0x1e,0x56, +0x19,0xab,0x96,0xd5,0xc0,0x3a,0xc0,0x3a,0xcc,0x3a,0xca,0x3a, +0xc1,0x3a,0xc3,0xba,0xc0,0xba,0xc4,0xba,0xc6,0xba,0xc1,0x7a, +0xc8,0x7a,0xca,0x7a,0xc5,0x7a,0xcb,0xfa,0xc0,0xfa,0xc4,0xfa, +0xc2,0x6a,0x66,0xb5,0x80,0x7f,0xee,0x75,0x61,0x0f,0x67,0x8f, +0x61,0x4f,0x60,0x4f,0x67,0xcf,0x60,0xcf,0x67,0x7b,0xb2,0x97, +0xb0,0x57,0xb1,0xd7,0xb0,0x51,0x6c,0x0c,0x9b,0xc8,0xa6,0xb0, +0x99,0x6c,0x0e,0x5b,0xc4,0x96,0xb1,0xe5,0x6c,0x15,0x3b,0x90, +0x1d,0xce,0x8e,0x61,0xc7,0xb1,0x13,0xd8,0x49,0x6c,0x1b,0x3b, +0x83,0x9d,0xcd,0xce,0x63,0x6f,0x66,0x6f,0x67,0xef,0x64,0x17, +0xb1,0xf7,0xb0,0xab,0xd9,0xb5,0xec,0xbd,0xec,0x26,0xf6,0x11, +0xf6,0x29,0xf6,0x59,0xf6,0x05,0xf6,0x55,0xf6,0x75,0xf6,0x4d, +0xf6,0x03,0xf6,0x73,0xf6,0x6b,0xf6,0x7b,0xf6,0x0f,0x0e,0xc0, +0x71,0xe0,0x74,0xe3,0xf4,0xe4,0xf4,0xe6,0xf4,0xe3,0x0c,0xe1, +0x8c,0xe6,0x20,0x38,0x2e,0x9c,0xc9,0x9c,0x19,0x9c,0x99,0x9c, +0x39,0x9c,0x85,0x9c,0x25,0x9c,0x95,0x9c,0xb5,0x9c,0xf5,0x1c, +0x14,0x07,0xcb,0xf1,0xe5,0xf8,0x71,0xa8,0x1c,0x06,0x87,0xcf, +0x91,0x71,0x94,0x1c,0x35,0x47,0xcb,0x09,0xe3,0x44,0x70,0x62, +0x38,0x09,0x9c,0x24,0x4e,0x06,0x27,0x87,0xb3,0x89,0xb3,0x85, +0xb3,0x83,0x53,0xc0,0x29,0xe6,0x94,0x71,0x2a,0x38,0xb5,0x9c, +0x06,0x4e,0x23,0xa7,0x89,0x73,0x88,0x73,0x94,0x73,0x9c,0x73, +0x85,0x73,0x83,0x73,0x9b,0x73,0x8f,0xf3,0x84,0xf3,0x9c,0xf3, +0x8e,0xf3,0x99,0x0b,0x70,0x1d,0xb8,0x3d,0xb8,0xbd,0xb8,0xfd, +0xb8,0xc3,0xb8,0xa3,0xb8,0xe3,0xb8,0x93,0xb9,0xae,0xdc,0x99, +0xdc,0x59,0xdc,0x79,0xdc,0x05,0xdc,0x45,0xdc,0x25,0xdc,0x65, +0x5c,0x2f,0xee,0x5a,0x2e,0x86,0x8b,0xe3,0xfa,0x70,0x89,0x5c, +0x32,0x97,0xc3,0x15,0x70,0xc5,0x5c,0x05,0x57,0xc5,0xd5,0x70, +0x75,0xdc,0x50,0x6e,0x24,0x37,0x9a,0x1b,0xc3,0x8d,0xe3,0x5a, +0xb8,0x69,0x5c,0x1b,0x37,0x93,0x9b,0xc3,0xdd,0xc2,0xdd,0xc1, +0xdd,0xcd,0x2d,0xe1,0x56,0x70,0x6b,0xb9,0xf5,0xdc,0x26,0xee, +0x21,0xee,0x11,0xee,0x09,0xee,0x79,0xee,0x25,0xee,0x35,0xee, +0x0d,0xee,0x1d,0xee,0x03,0xee,0x23,0xee,0x53,0xee,0x73,0xee, +0x2b,0xee,0x5b,0xee,0x7b,0xee,0x67,0xee,0x0f,0x6e,0x2b,0xaf, +0x0b,0x6f,0x10,0x6f,0x18,0x6f,0x2c,0xcf,0x99,0x37,0x8d,0xe7, +0xce,0x9b,0xc5,0x9b,0xcf,0x5b,0xc4,0x5b,0xc9,0xf3,0xe2,0xad, +0xe1,0x21,0x79,0x78,0x1e,0x91,0xe7,0xcf,0xa3,0xf2,0x98,0x3c, +0x2e,0x4f,0xc9,0xd3,0xf0,0x42,0x79,0x61,0xbc,0x70,0x5e,0x24, +0x2f,0x91,0x97,0xca,0xb3,0xf1,0xb2,0x78,0x39,0xbc,0x4d,0xbc, +0x2d,0xbc,0x5d,0xbc,0x22,0x5e,0x29,0xaf,0x9c,0x57,0xc5,0xab, +0xe3,0x35,0xf0,0x0e,0xf1,0x8e,0xf0,0x4e,0xf2,0x4e,0xf3,0xce, +0xf2,0x2e,0xf0,0x2e,0xf3,0xae,0xf1,0x6e,0xf0,0xee,0xf3,0x1e, +0xf2,0x9e,0xf2,0xde,0xf2,0x3e,0xf0,0x9a,0xf9,0x76,0xfc,0x2e, +0xfc,0xee,0xfc,0x7e,0xfc,0x81,0xfc,0xd1,0xfc,0xf1,0xfc,0x89, +0xfc,0xc9,0xfc,0xa9,0x7c,0x37,0xfe,0x2c,0xfe,0x1c,0xfe,0x7c, +0xfe,0x22,0xfe,0x12,0xfe,0x3a,0xbe,0x37,0xdf,0x8f,0x4f,0xe1, +0x33,0xf8,0x3c,0xbe,0x90,0x2f,0xe5,0xab,0xf8,0x41,0xfc,0x10, +0xbe,0x91,0x6f,0xe6,0x27,0xf0,0x93,0xf8,0x69,0xfc,0x74,0x7e, +0x36,0x7f,0x13,0x7f,0x27,0xbf,0x98,0x5f,0xc6,0xaf,0xe0,0xd7, +0xf3,0x1b,0xf9,0x4d,0xfc,0x83,0xfc,0xa3,0xfc,0x33,0xfc,0x73, +0xfc,0x8b,0xfc,0xeb,0xfc,0x3b,0xfc,0x07,0xfc,0x67,0xfc,0x97, +0xfc,0xd7,0xfc,0x0f,0xfc,0xef,0xfc,0x1f,0xfc,0x5f,0xfc,0x56, +0x81,0xbd,0xa0,0x8b,0xa0,0xb7,0x60,0xb0,0x60,0x98,0x60,0x84, +0x60,0x94,0x60,0x9c,0x60,0xbc,0x60,0x9a,0xc0,0x55,0xe0,0x26, +0x98,0x23,0x58,0x20,0x58,0x24,0x58,0x29,0x58,0x23,0x58,0x2f, +0x20,0x0a,0xa8,0x02,0x86,0x80,0x23,0x10,0x0a,0x14,0x82,0x40, +0x81,0x41,0x10,0x21,0x48,0x10,0x58,0x04,0x36,0x41,0xb6,0x60, +0x93,0x60,0xab,0x20,0x5f,0x50,0x28,0x28,0x16,0x94,0x0b,0x6a, +0x04,0xf5,0x82,0x83,0x82,0xf3,0x82,0x8b,0x82,0x9b,0x82,0xbb, +0x82,0x07,0x82,0x47,0x82,0x67,0x82,0x17,0x82,0x1f,0xc2,0x2e, +0xc2,0x9e,0xc2,0x81,0xc2,0xa1,0xc2,0x31,0x42,0x27,0xe1,0x78, +0xe1,0x24,0xa1,0xbb,0x70,0x81,0x70,0xb1,0x70,0x85,0x70,0xb5, +0x70,0xad,0x70,0x83,0x10,0x29,0x44,0x0b,0xf1,0x42,0xa2,0x90, +0x24,0xa4,0x0a,0x39,0x42,0x81,0x50,0x2a,0x54,0x0a,0x83,0x84, +0xc1,0x42,0x83,0x30,0x42,0x18,0x25,0x8c,0x15,0xc6,0x0b,0xad, +0xc2,0x74,0x61,0xae,0x70,0x9b,0xb0,0x40,0x58,0x22,0xac,0x14, +0x56,0x0b,0x1b,0x84,0xfb,0x85,0x47,0x84,0x27,0x85,0x67,0x85, +0x97,0x84,0x57,0x84,0xd7,0x84,0x37,0x85,0x77,0x85,0xaf,0x84, +0x6f,0x85,0x1f,0x45,0xdd,0x45,0xfd,0x44,0x03,0x44,0x83,0x45, +0xc3,0x44,0xa3,0x44,0x13,0x44,0xb3,0x44,0xf3,0x44,0xcb,0x45, +0x48,0x11,0x5a,0xe4,0x2d,0xf2,0x15,0xf9,0x89,0x68,0x22,0x86, +0x88,0x27,0x12,0x88,0x64,0x22,0x85,0x48,0x2b,0x0a,0x11,0x85, +0x8b,0xa2,0x44,0x26,0x51,0xbc,0xc8,0x22,0x4a,0x11,0x59,0x45, +0x59,0xa2,0x2d,0xa2,0x02,0x51,0xb1,0xa8,0x54,0x54,0x2e,0x6a, +0x14,0x35,0x89,0x0e,0x8b,0x4e,0x88,0x4e,0x89,0x2e,0x8a,0x2e, +0x8b,0xae,0x8a,0x6e,0x8a,0x6e,0x8b,0x1e,0x8a,0x1e,0x8b,0x9e, +0x89,0x5e,0x88,0xde,0x8b,0x3e,0x8a,0x1d,0xc5,0xbd,0xc5,0x03, +0xc5,0xc3,0xc4,0x23,0xc4,0xa3,0xc4,0xe3,0xc4,0x2e,0xe2,0x69, +0x62,0x0f,0xf1,0x1c,0xf1,0x3c,0xb1,0xa7,0x78,0xb1,0x78,0x99, +0x78,0x95,0xd8,0x4f,0x4c,0x16,0xb3,0xc4,0x1c,0xb1,0x40,0x2c, +0x12,0x4b,0xc5,0x4a,0x71,0x90,0x38,0x52,0x1c,0x23,0x8e,0x13, +0x27,0x88,0x53,0xc4,0x56,0x71,0x86,0x38,0x5b,0x5c,0x28,0x2e, +0x11,0x97,0x89,0x2b,0xc5,0x35,0xe2,0x06,0xf1,0x7e,0xf1,0x51, +0xf1,0x29,0xf1,0x59,0xf1,0x05,0xf1,0x65,0xf1,0x0d,0xf1,0x1d, +0xf1,0x7d,0xf1,0x23,0xf1,0x13,0xf1,0x33,0xf1,0x2b,0xf1,0x1b, +0xf1,0x47,0xf1,0x67,0xf1,0x4f,0x49,0x17,0x49,0x2f,0xc9,0x20, +0xc9,0x10,0xc9,0x28,0xc9,0x18,0x89,0x93,0x64,0x92,0x64,0x8a, +0x64,0x86,0x64,0x96,0x64,0x81,0x64,0xa1,0x64,0xb1,0x64,0x85, +0x64,0x9d,0x04,0x29,0xf1,0x91,0x10,0x24,0x64,0x09,0x55,0xc2, +0x95,0x08,0x25,0x52,0x89,0x5c,0xa2,0x96,0x18,0x24,0x46,0x49, +0x9c,0xc4,0x22,0xb1,0x4a,0xd2,0x25,0x39,0x92,0x3c,0xc9,0x16, +0xc9,0x76,0x49,0x81,0xa4,0x44,0x52,0x26,0xa9,0x96,0xd4,0x49, +0xf6,0x4a,0x1a,0x25,0x07,0x24,0x87,0x25,0xc7,0x25,0xa7,0x24, +0xe7,0x25,0x97,0x25,0x77,0x24,0xaf,0x24,0x6f,0x25,0x1f,0x24, +0x9f,0x24,0xdf,0x24,0xad,0x52,0x7b,0x69,0x57,0x69,0x0f,0x69, +0x3f,0xe9,0x00,0xe9,0x10,0x29,0x42,0x3a,0x5e,0x3a,0x5d,0xea, +0x2e,0x9d,0x27,0x5d,0x22,0x5d,0x26,0x5d,0x25,0xc5,0x48,0xf1, +0x52,0x82,0x94,0x2c,0xa5,0x4a,0x59,0x52,0x8e,0x54,0x26,0x55, +0x4a,0x03,0xa5,0x5a,0xa9,0x4e,0x6a,0x94,0x46,0x48,0xa3,0xa4, +0x26,0x69,0x82,0x34,0x49,0x6a,0x93,0x6e,0x96,0x6e,0x93,0xe6, +0x4b,0x4b,0xa5,0xe5,0xd2,0x4a,0x69,0xad,0xf4,0xa0,0xf4,0x88, +0xf4,0xb2,0xf4,0x9a,0xf4,0xa6,0xf4,0xbe,0xf4,0x91,0xf4,0x95, +0xf4,0xad,0xf4,0xbd,0xf4,0xa3,0xf4,0x8b,0xb4,0x59,0xda,0x22, +0xb3,0x93,0x75,0x93,0xf5,0x90,0xf5,0x92,0xf5,0x93,0x0d,0x90, +0x0d,0x91,0x0d,0x97,0x8d,0x92,0x8d,0x93,0x4d,0x96,0x4d,0x97, +0xb9,0xc9,0xdc,0x65,0x8b,0x65,0x1b,0x64,0x18,0x19,0x41,0xc6, +0x94,0x09,0x65,0x32,0x59,0xa0,0x4c,0x2f,0x8b,0x94,0x99,0x65, +0x09,0xb2,0x64,0x59,0x86,0xac,0x44,0x56,0x2e,0xab,0x97,0x1d, +0x93,0x9d,0x94,0x9d,0x95,0x5d,0x97,0xdd,0x96,0xdd,0x95,0xbd, +0x97,0x7d,0x97,0xfd,0x0a,0x70,0x0c,0xe8,0x11,0xd0,0x2f,0x60, +0x70,0xc0,0xc8,0x80,0xd1,0x01,0x4e,0x01,0x13,0x03,0xdc,0x02, +0xe6,0x04,0x2c,0x0c,0x58,0x1d,0xb0,0x36,0x60,0x43,0x00,0x32, +0xc0,0x27,0x80,0x18,0x40,0x0e,0x60,0x04,0x70,0x03,0xf8,0x01, +0xa2,0x00,0x49,0x80,0x3e,0x20,0x22,0xc0,0x14,0x60,0x0e,0x48, +0x0c,0x48,0x0b,0xc8,0x08,0xc8,0x0b,0xd8,0x15,0x50,0x18,0x50, +0x1a,0x50,0x1b,0xb0,0x2f,0xa0,0x29,0xe0,0x60,0xc0,0xf1,0x80, +0x33,0x01,0xe7,0x02,0x2e,0x04,0x5c,0x0e,0xb8,0x1a,0x70,0x2f, +0xe0,0x69,0xc0,0x9b,0x80,0xcf,0x01,0xdf,0x03,0x7e,0x06,0xb4, +0xca,0xbb,0xca,0xfb,0xc8,0xfb,0xcb,0x47,0xc9,0x27,0xcb,0xa7, +0xca,0xff,0x92,0xbb,0xc9,0xdd,0xe5,0x73,0xe4,0x4b,0xe5,0x6b, +0xe4,0x1b,0xe4,0x58,0x39,0x51,0x4e,0x92,0xfb,0xcb,0xa9,0x72, +0x86,0x9c,0x2b,0xe7,0xcb,0xe5,0x72,0xa5,0x3c,0x48,0x1e,0x22, +0x37,0xca,0xa3,0xe5,0xc9,0x72,0xab,0x7c,0x93,0x7c,0x8b,0x7c, +0xa7,0xbc,0x50,0x5e,0x22,0x2f,0x93,0x57,0xc9,0x6b,0xe5,0xfb, +0xe4,0xfb,0xe5,0x87,0xe4,0x47,0xe4,0x67,0xe4,0xe7,0xe4,0x17, +0xe4,0x57,0xe5,0xd7,0xe5,0x37,0xe5,0x0f,0xe4,0xcf,0xe5,0xaf, +0xe5,0xdf,0xe5,0xbf,0x14,0x3d,0x15,0xc3,0x14,0x63,0x14,0xe3, +0x14,0x2e,0x8a,0x69,0x8a,0x19,0x8a,0x59,0x8a,0xb9,0x8a,0x25, +0x8a,0x55,0x0a,0x94,0xc2,0x57,0xc1,0x54,0xf0,0x14,0x02,0x85, +0x4c,0x21,0x57,0xa8,0x14,0x81,0x8a,0x60,0x45,0x84,0x22,0x5a, +0x11,0xa3,0x88,0x55,0x58,0x15,0xbb,0x15,0xe5,0x8a,0x7a,0xc5, +0x5e,0xc5,0x7e,0xc5,0x01,0xc5,0x09,0xc5,0x19,0xc5,0x05,0xc5, +0x15,0xc5,0x1d,0xc5,0x3d,0xc5,0x43,0xc5,0x63,0xc5,0x0b,0xc5, +0x1b,0xc5,0x7b,0xc5,0x67,0xc5,0x37,0x45,0x8b,0xd2,0x41,0xd9, +0x4d,0xd9,0x43,0xe9,0xac,0x9c,0xa8,0x9c,0xaa,0x74,0x55,0xce, +0x51,0x2e,0x50,0x2e,0x51,0x2e,0x53,0x7a,0x2b,0xc9,0x4a,0x9a, +0x92,0xa5,0x14,0x28,0x65,0x4a,0x85,0x52,0xad,0x0c,0x51,0x86, +0x2b,0x63,0x94,0xb1,0xca,0x3c,0xe5,0x16,0xe5,0x4e,0xe5,0x1e, +0xe5,0x5e,0xe5,0x09,0xe5,0x59,0xe5,0x25,0xe5,0x2d,0xe5,0x3d, +0xe5,0x43,0xe5,0x53,0xe5,0x73,0xe5,0x1b,0xe5,0x07,0xe5,0x37, +0x95,0x9d,0xaa,0x8b,0xaa,0xaf,0x6a,0x80,0x6a,0x90,0x6a,0x88, +0x6a,0xb8,0x6a,0xa4,0x6a,0xb4,0x6a,0x9c,0x6a,0xbc,0x6a,0xa2, +0x6a,0xb2,0x6a,0xba,0xca,0x43,0x35,0x4f,0xb5,0x50,0xb5,0x52, +0xe5,0xa5,0xda,0xa8,0x42,0xa9,0x30,0x2a,0xbc,0xca,0x5f,0x45, +0x53,0x31,0x54,0x5c,0x95,0x50,0x25,0x56,0xc9,0x54,0x4a,0x55, +0xa0,0x2a,0x54,0x65,0x54,0x45,0xab,0x62,0x55,0x89,0xaa,0x24, +0x55,0xaa,0x2a,0x53,0x95,0xa3,0xda,0xaa,0xda,0xae,0x2a,0x50, +0x95,0xab,0x2a,0x55,0xb5,0xaa,0x7d,0xaa,0x83,0xaa,0xc3,0xaa, +0xa3,0xaa,0x13,0xaa,0xd3,0xaa,0x0b,0xaa,0xcb,0xaa,0xeb,0xaa, +0x9b,0xaa,0x3b,0xaa,0x87,0xaa,0xe7,0xaa,0x77,0xaa,0x4f,0xaa, +0x66,0xd5,0x4f,0x55,0xab,0xda,0x4e,0xdd,0x43,0xdd,0x4b,0xdd, +0x47,0xed,0xac,0x9e,0xa0,0x9e,0xa4,0x76,0x53,0xcf,0x52,0x7b, +0xaa,0x97,0xab,0xd7,0xa8,0x37,0xa8,0xb1,0x6a,0x1f,0x35,0x41, +0x4d,0x56,0x33,0xd4,0x02,0xb5,0x48,0x2d,0x53,0xcb,0xd5,0x6a, +0x75,0xa0,0x3a,0x44,0x6d,0x50,0x47,0xa8,0x4d,0xea,0x58,0x75, +0x82,0xda,0xa2,0x4e,0x51,0x5b,0xd5,0xd9,0xea,0x5c,0xf5,0x0e, +0x75,0xb1,0x7a,0x8f,0xba,0x42,0x5d,0xa7,0x6e,0x54,0x1f,0x54, +0x1f,0x51,0x1f,0x53,0x9f,0x50,0x9f,0x56,0x5f,0x50,0x5f,0x55, +0xdf,0x52,0xdf,0x55,0xdf,0x57,0x3f,0x56,0x3f,0x55,0xbf,0x50, +0xbf,0x51,0x7f,0x50,0x7f,0x52,0x7f,0x53,0xff,0x50,0xb7,0x68, +0xec,0x34,0x8e,0x9a,0x1e,0x9a,0xde,0x9a,0x51,0x1a,0x84,0x66, +0xa2,0x66,0x8a,0x66,0x9e,0x66,0x81,0x66,0xa1,0x66,0xa9,0x66, +0xb5,0x86,0xa4,0x61,0x6a,0x38,0x1a,0x9e,0x46,0xa8,0x09,0xd2, +0x84,0x6a,0x62,0x35,0x09,0x9a,0x24,0x4d,0xae,0x66,0x93,0x66, +0xbb,0xa6,0x48,0xb3,0x47,0x53,0xae,0xa9,0xd2,0xd4,0x6a,0xf6, +0x6a,0x1a,0x35,0x47,0x35,0xa7,0x35,0x57,0x35,0xb7,0x34,0x0f, +0x35,0x8f,0x35,0x4f,0x35,0xcf,0x35,0x6f,0x35,0x1f,0x35,0x3f, +0x03,0xed,0x03,0x7b,0x07,0x0e,0x0c,0x1c,0x12,0xe8,0x14,0x38, +0x29,0xd0,0x3d,0x70,0x56,0xe0,0x82,0xc0,0x25,0x81,0xab,0x02, +0x91,0x81,0xfe,0x81,0xac,0x40,0x51,0xa0,0x34,0x50,0x1e,0xa8, +0x0c,0xd4,0x06,0xea,0x02,0xc3,0x02,0xa3,0x03,0x13,0x02,0x93, +0x02,0x53,0x02,0xd3,0x02,0x6d,0x81,0x99,0x81,0x5b,0x03,0x77, +0x06,0xe6,0x07,0x96,0x04,0x56,0x06,0xd6,0x05,0x36,0x04,0xee, +0x0b,0x6c,0x0a,0x3c,0x12,0x78,0x32,0xf0,0x7c,0xe0,0xa5,0xc0, +0x1b,0x81,0xcf,0x02,0x5f,0x05,0xbe,0x0d,0xfc,0x14,0xf8,0x2b, +0xc8,0x2e,0xa8,0x5b,0x50,0xdf,0xa0,0x81,0x41,0x23,0x82,0x26, +0x06,0x4d,0x0f,0x72,0x0b,0x5a,0x10,0xb4,0x30,0x68,0x71,0xd0, +0xb2,0xa0,0xb5,0x41,0xe8,0x20,0x5c,0x90,0x6f,0x90,0x5f,0x10, +0x2d,0x88,0x11,0xc4,0x0e,0xe2,0x05,0x89,0x83,0x34,0x41,0xda, +0xa0,0xb0,0xa0,0xc8,0x20,0x73,0x50,0x62,0x50,0x6a,0x50,0x56, +0x50,0x4e,0xd0,0xce,0xa0,0xfc,0xa0,0xe2,0xa0,0xd2,0xa0,0xf2, +0xa0,0xba,0xa0,0xa6,0xa0,0xe3,0x41,0x27,0x83,0x2e,0x04,0x5d, +0x0e,0xba,0x16,0x74,0x37,0xe8,0x7e,0xd0,0xa3,0xa0,0xa7,0x41, +0xcf,0x83,0x5e,0x05,0xbd,0x0b,0xfa,0xa1,0x05,0xb4,0xdd,0xb5, +0xbd,0xb4,0x7d,0xb5,0x83,0xb5,0x23,0xb5,0xa3,0xb5,0x08,0xad, +0xab,0xd6,0x5d,0x3b,0x57,0xbb,0x54,0xbb,0x42,0xeb,0xa5,0x5d, +0xab,0x45,0x6b,0x7d,0xb5,0x4c,0x2d,0x5f,0x2b,0xd4,0xca,0xb4, +0x4a,0xad,0x5a,0xab,0xd5,0xea,0xb5,0xa1,0xda,0x30,0x6d,0x84, +0xd6,0xa4,0x4d,0xd1,0xa6,0x6b,0xf3,0xb4,0xf9,0xda,0x3d,0xda, +0x2a,0x6d,0x9d,0xb6,0x51,0x7b,0x58,0x7b,0x4c,0x7b,0x52,0x7b, +0x5a,0x7b,0x56,0x7b,0x51,0x7b,0x59,0x7b,0x43,0x7b,0x5b,0xfb, +0x50,0xfb,0x54,0xfb,0x52,0xfb,0x5a,0xfb,0x4e,0xfb,0x45,0xdb, +0xac,0x6d,0x0d,0xb6,0x0f,0x76,0x0c,0xee,0x1a,0xdc,0x3d,0xb8, +0x57,0x70,0xbf,0xe0,0x01,0xc1,0x23,0x82,0x47,0x05,0x8f,0x0d, +0x46,0x04,0x4f,0x0c,0x9e,0x1c,0x3c,0x3d,0xd8,0x23,0x78,0x4e, +0xf0,0xfc,0x60,0xaf,0xe0,0xb5,0xc1,0x1b,0x83,0xb1,0xc1,0xf8, +0x60,0x9f,0x60,0xff,0x60,0x76,0x30,0x37,0x58,0x14,0x2c,0x09, +0x0e,0x08,0x56,0x05,0x6b,0x83,0xa3,0x83,0x63,0x83,0xe3,0x83, +0x13,0x83,0x93,0x83,0xd3,0x82,0x33,0x83,0xf3,0x82,0x37,0x07, +0xe7,0x07,0x17,0x05,0x97,0x06,0x57,0x04,0xd7,0x04,0x37,0x05, +0x1f,0x0a,0x3e,0x1a,0x7c,0x3c,0xf8,0x54,0xf0,0xd9,0xe0,0xdb, +0xc1,0xf7,0x82,0x9f,0x04,0x3f,0x0f,0x7e,0x1d,0xfc,0x31,0xf8, +0xab,0x0e,0xd0,0x75,0xd3,0xf5,0xd1,0x0d,0xd6,0x0d,0xd3,0x8d, +0xd3,0x39,0xe9,0xc6,0xeb,0x26,0xe9,0xa6,0xe9,0xe6,0xe9,0x96, +0xea,0x56,0xe8,0x36,0xea,0xd0,0x3a,0xbc,0xce,0x47,0x47,0xd0, +0xd1,0x74,0x6c,0x9d,0x48,0xa7,0xd0,0xa9,0x74,0x21,0xba,0x70, +0x5d,0x8c,0x2e,0x56,0x17,0xaf,0xb3,0xe8,0x92,0x75,0x69,0xba, +0x74,0x5d,0x96,0x2e,0x4f,0xb7,0x45,0xb7,0x5d,0xb7,0x4b,0x57, +0xa0,0x2b,0xd6,0x95,0xeb,0x6a,0x75,0xfb,0x74,0xfb,0x75,0x07, +0x74,0x87,0x75,0x27,0x74,0x67,0x74,0x17,0x74,0x57,0x74,0xd7, +0x74,0xb7,0x74,0xf7,0x74,0x0f,0x74,0x4f,0x75,0x6f,0x75,0x1f, +0x74,0x9f,0x74,0x5f,0x74,0xdf,0x74,0x3f,0x74,0x2d,0x7a,0x40, +0x6f,0xaf,0xef,0xaa,0xef,0xa5,0xef,0xa3,0xef,0xaf,0x1f,0xa2, +0x1f,0xad,0x77,0xd6,0x4f,0xd7,0xbb,0xe9,0x3d,0xf4,0xb3,0xf5, +0x0b,0xf4,0x4b,0xf4,0x5e,0xfa,0x35,0xfa,0x0d,0x7a,0xb4,0xde, +0x47,0x4f,0xd6,0x53,0xf4,0x4c,0x3d,0x47,0xcf,0xd3,0x4b,0xf4, +0x0a,0xbd,0x5a,0x1f,0xa4,0xd7,0xeb,0x63,0xf4,0x89,0xfa,0x14, +0x7d,0xb6,0x7e,0x93,0x7e,0xab,0xbe,0x4c,0x5f,0xa9,0xaf,0xd1, +0xd7,0xeb,0x1b,0xf5,0x47,0xf5,0x27,0xf5,0x67,0xf5,0x17,0xf4, +0x57,0xf4,0xd7,0xf4,0x37,0xf4,0x77,0xf4,0xf7,0xf5,0x8f,0xf4, +0xcf,0xf5,0xaf,0xf4,0x6f,0xf5,0x1f,0xf4,0x9f,0xf4,0x3f,0x42, +0xec,0x42,0xba,0x84,0xf4,0x0a,0x19,0x18,0x32,0x2a,0x64,0x5c, +0xc8,0xf8,0x90,0x89,0x21,0xd3,0x42,0x5c,0x43,0xdc,0x43,0x66, +0x87,0xcc,0x0d,0xf1,0x0c,0x59,0x1c,0xb2,0x2c,0x64,0x45,0x88, +0x57,0xc8,0xfa,0x90,0x8d,0x21,0xd8,0x10,0x9f,0x10,0xbf,0x10, +0x4a,0x08,0x3d,0x84,0x1b,0x22,0x0c,0x11,0x87,0xc8,0x42,0x82, +0x42,0xf4,0x21,0xa1,0x21,0xe1,0x21,0xe6,0x90,0xb8,0x10,0x4b, +0x48,0x6a,0x88,0x35,0x24,0x3b,0x74,0x4e,0xe8,0xbc,0xd0,0x05, +0xa1,0xab,0x42,0x57,0x87,0x22,0x43,0x31,0xa1,0xde,0xa1,0x84, +0x50,0x5a,0xa8,0x30,0x54,0x12,0x2a,0x0b,0x95,0x87,0xaa,0x42, +0x83,0x42,0xc3,0x43,0x4d,0xa1,0xe6,0xd0,0xb8,0xd0,0x84,0xd0, +0xd4,0xd0,0xcc,0xd0,0xdc,0xd0,0xcd,0xa1,0xdb,0x42,0x77,0x87, +0x96,0x84,0x96,0x85,0x56,0x85,0xd6,0x86,0xee,0x0d,0x6d,0x0a, +0x3d,0x12,0x7a,0x22,0xf4,0x54,0xe8,0x85,0xd0,0xcb,0xa1,0xf7, +0x43,0x9f,0x84,0x3e,0x0f,0x7d,0x19,0xfa,0x2e,0xf4,0x63,0xe8, +0xf7,0xd0,0x9f,0x06,0x3b,0x43,0x57,0x43,0x6f,0x43,0x7f,0xc3, +0x40,0xc3,0x10,0xc3,0x08,0xc3,0x68,0x83,0x93,0x61,0xb2,0xc1, +0xc3,0x30,0xc7,0xe0,0x69,0x58,0x64,0x58,0x62,0xf0,0x32,0xac, +0x33,0x60,0x0d,0x3e,0x06,0x82,0xc1,0xcf,0x40,0x35,0x30,0x0c, +0x3c,0x83,0xcc,0xa0,0x34,0x68,0x0c,0x41,0x86,0x50,0x43,0xb4, +0x21,0xc6,0x10,0x67,0x48,0x31,0x58,0x0d,0xe9,0x86,0x2c,0x43, +0x8e,0x61,0x8b,0x61,0xbb,0x21,0xdf,0x50,0x64,0x28,0x31,0x94, +0x19,0x2a,0x0c,0x75,0x86,0x43,0x86,0x23,0x86,0x53,0x86,0x33, +0x86,0x2b,0x86,0x9b,0x86,0x3b,0x86,0xfb,0x86,0xc7,0x86,0xb7, +0x86,0xf7,0x86,0x4f,0x86,0x6f,0x86,0x5f,0x61,0xf6,0x61,0x3d, +0xc3,0x46,0x85,0x8d,0x0f,0x9b,0x12,0x36,0x23,0x6c,0x66,0x98, +0x47,0xd8,0xfc,0xb0,0xc5,0x61,0x5e,0x61,0xeb,0xc3,0x90,0x61, +0x98,0x30,0xef,0x30,0x6a,0x18,0x27,0x4c,0x18,0x26,0x09,0x0b, +0x08,0x53,0x86,0x69,0xc3,0x0c,0x61,0xe1,0x61,0xa6,0x30,0x73, +0x58,0x62,0x58,0x4a,0x58,0x5a,0x58,0x66,0x58,0x4e,0xd8,0xa6, +0xb0,0x6d,0x61,0xbb,0xc3,0xf6,0x84,0x95,0x87,0x55,0x86,0xd5, +0x84,0xd5,0x85,0xed,0x0f,0x3b,0x10,0x76,0x24,0xec,0x78,0xd8, +0xe9,0xb0,0xf3,0x61,0x17,0xc3,0x6e,0x84,0xdd,0x0b,0x7b,0x18, +0xf6,0x38,0xec,0x59,0xd8,0x8b,0xb0,0xd7,0x61,0x9f,0xc2,0x7e, +0x86,0xb5,0x18,0xed,0x8d,0x5d,0x8c,0x3d,0x8d,0x7d,0x8d,0xfd, +0x8d,0x03,0x8d,0xc3,0x8d,0xa3,0x8d,0xe3,0x8c,0xd3,0x8d,0xae, +0x46,0x0f,0xe3,0x7c,0xe3,0x52,0xe3,0x6a,0xa3,0x9f,0xd1,0xdf, +0x48,0x35,0x32,0x8c,0x2c,0x23,0xc7,0xc8,0x33,0x0a,0x8d,0x52, +0xa3,0xdc,0x18,0x68,0x0c,0x31,0xc6,0x1a,0xe3,0x8d,0xc9,0xc6, +0x0c,0x63,0x8e,0x31,0xcf,0xb8,0xc3,0x58,0x64,0x2c,0x31,0x96, +0x1a,0xcb,0x8d,0xb5,0xc6,0x7a,0xe3,0x5e,0xe3,0x61,0xe3,0x25, +0xe3,0x55,0xe3,0x75,0xe3,0x2d,0xe3,0x5d,0xe3,0x7d,0xe3,0x43, +0xe3,0x53,0xe3,0x4b,0xe3,0x7b,0xe3,0x27,0xe3,0x8f,0xf0,0xae, +0xe1,0x3d,0xc2,0xfb,0x86,0x0f,0x0f,0x1f,0x1d,0x3e,0x3e,0x7c, +0x72,0xf8,0xb4,0xf0,0x19,0xe1,0xee,0xe1,0x73,0xc2,0xe7,0x87, +0x2f,0x0d,0xf7,0x0a,0x5f,0x17,0x8e,0x0e,0xc7,0x86,0x13,0xc2, +0x19,0xe1,0x8a,0x70,0x55,0xb8,0x26,0x5c,0x17,0x1e,0x1a,0x1e, +0x19,0x1e,0x1d,0x6e,0x0e,0x4f,0x08,0x4f,0x09,0xb7,0x86,0x67, +0x86,0x6f,0x0a,0xdf,0x12,0xbe,0x2b,0xbc,0x20,0xbc,0x34,0xbc, +0x32,0x7c,0x6f,0x78,0x53,0xf8,0xe1,0xf0,0xa3,0xe1,0x27,0xc2, +0x4f,0x85,0x9f,0x09,0xbf,0x18,0x7e,0x25,0xfc,0x5a,0xf8,0xad, +0xf0,0x7b,0xe1,0xcf,0xc3,0x5f,0x86,0x7f,0x08,0xff,0x14,0xfe, +0x35,0xfc,0x47,0xf8,0xaf,0x08,0xc7,0x88,0x6e,0x11,0x7d,0x23, +0x06,0x45,0x20,0x22,0x9c,0x23,0xa6,0x46,0x4c,0x8f,0x98,0x19, +0x31,0x3b,0x62,0x5e,0xc4,0xa2,0x08,0xaf,0x88,0xb5,0x11,0xc8, +0x08,0xdf,0x08,0x52,0x04,0x33,0x82,0x13,0xc1,0x8f,0x90,0x46, +0x04,0x44,0xa8,0x22,0x34,0x11,0xda,0x08,0x63,0x44,0x44,0x44, +0x6c,0x84,0x25,0x22,0x35,0x22,0x23,0x22,0x3b,0x22,0x2f,0x62, +0x73,0x44,0x51,0x44,0x59,0x44,0x45,0x44,0x6d,0x44,0x43,0x44, +0x63,0x44,0x53,0xc4,0xa1,0x88,0x23,0x11,0x27,0x23,0x4e,0x47, +0x9c,0x8f,0xb8,0x12,0x71,0x23,0xe2,0x56,0xc4,0xab,0x88,0x37, +0x11,0x9f,0x22,0x7e,0x46,0x02,0x91,0x5d,0x23,0x07,0x44,0x0e, +0x89,0x1c,0x1e,0x39,0x32,0x72,0x5c,0xa4,0x53,0xe4,0xf8,0xc8, +0x89,0x91,0x7f,0x45,0xce,0x8e,0x5c,0x1c,0xb9,0x2c,0x72,0x45, +0xe4,0xfa,0x48,0x64,0x24,0x2e,0xd2,0x3b,0xd2,0x2f,0x92,0x19, +0x29,0x8c,0x14,0x47,0x6a,0x22,0x43,0x22,0x0d,0x91,0x11,0x91, +0xa6,0x48,0x73,0x64,0x52,0x64,0x6a,0xa4,0x2d,0x32,0x23,0x32, +0x3b,0x72,0x5b,0xe4,0x8e,0xc8,0xc2,0xc8,0x3d,0x91,0x75,0x91, +0x4d,0x91,0xc7,0x23,0x4f,0x47,0x9e,0x8b,0xbc,0x1c,0x79,0x3b, +0xf2,0x71,0xe4,0x8b,0xc8,0xaf,0x91,0x3f,0x22,0x5b,0xa2,0xec, +0xa3,0xba,0x45,0xf5,0x8a,0x1a,0x14,0x35,0x2c,0x6a,0x64,0x94, +0x73,0xd4,0x5f,0x51,0x6e,0x51,0x4b,0xa2,0x90,0x51,0xe8,0x28, +0xef,0x28,0x72,0x14,0x35,0x8a,0x1b,0x25,0x8c,0x0a,0x88,0x0a, +0x8a,0x0a,0x8e,0x8a,0x8b,0x4a,0x89,0x4a,0x8b,0xda,0x16,0x55, +0x10,0xb5,0x27,0xaa,0x2a,0xea,0x50,0xd4,0xd1,0xa8,0xe3,0x51, +0x27,0xa3,0xce,0x44,0x5d,0x8a,0xba,0x1e,0x75,0x33,0xea,0x6e, +0xd4,0xa3,0xa8,0xe7,0x51,0x6f,0xa3,0xbe,0x47,0xfd,0x88,0x6a, +0x89,0x06,0xa2,0x1d,0xa2,0xbb,0x46,0xf7,0x8c,0xee,0x13,0x3d, +0x30,0x7a,0x78,0xf4,0xc8,0xe8,0xd1,0xd1,0x2e,0xd1,0x53,0xa2, +0x67,0x45,0xcf,0x8d,0xf6,0x8c,0x5e,0x12,0xbd,0x36,0x7a,0x43, +0x34,0x32,0x1a,0x17,0xed,0x1d,0xed,0x1b,0x4d,0x8c,0xa6,0x45, +0x33,0xa3,0x39,0xd1,0xbc,0x68,0x41,0xb4,0x24,0x5a,0x19,0xad, +0x8e,0x0e,0x8c,0x0e,0x8d,0x36,0x46,0xc7,0x47,0xe7,0x45,0x6f, +0x89,0x2e,0x88,0x2e,0x89,0x2e,0x8f,0xae,0x8f,0xde,0x1b,0xbd, +0x3f,0xfa,0x50,0xf4,0xd1,0xe8,0x93,0xd1,0xe7,0xa2,0x2f,0x44, +0xdf,0x8b,0x7e,0x15,0xfd,0x36,0xfa,0x43,0xf4,0xd7,0xe8,0xef, +0xd1,0x3f,0xa2,0x5b,0x4c,0x5d,0x4c,0xdd,0x4c,0xfd,0x4c,0x03, +0x4c,0x43,0x4d,0xe3,0x4c,0xe3,0x4d,0x93,0x4c,0x33,0x4d,0x73, +0x4c,0xf3,0x4d,0x9e,0xa6,0xa5,0xa6,0xe5,0xa6,0x95,0x26,0x2f, +0xd3,0x46,0x13,0xce,0xe4,0x6b,0x22,0x9a,0x48,0x26,0x8a,0x89, +0x69,0xe2,0x99,0x84,0x26,0x99,0x49,0x6e,0x52,0x99,0x34,0xa6, +0x50,0x93,0xd1,0x64,0x32,0xc5,0x9a,0xe2,0x4d,0xc9,0x26,0x9b, +0x29,0xc3,0x94,0x6b,0xda,0x62,0xda,0x66,0x2a,0x30,0x15,0x9b, +0x4a,0x4d,0x95,0xa6,0x6a,0x53,0xa3,0xe9,0xb0,0xe9,0xac,0xe9, +0xb2,0xe9,0xba,0xe9,0xb6,0xe9,0xae,0xe9,0xbe,0xe9,0x99,0xe9, +0xb3,0xe9,0xbb,0xa9,0x25,0xc6,0x3e,0xc6,0x31,0xa6,0x5b,0x4c, +0xcf,0x98,0xde,0x31,0xfd,0x63,0x06,0xc5,0x8c,0x8d,0x71,0x89, +0x99,0x16,0x33,0x27,0x66,0x5e,0x8c,0x67,0xcc,0xb2,0x98,0x95, +0x31,0x1b,0x63,0x7c,0x62,0x68,0x31,0xac,0x18,0x4e,0x8c,0x20, +0x46,0x1c,0x23,0x8d,0x91,0xc7,0x28,0x63,0x34,0x31,0xa1,0x31, +0x61,0x31,0xe1,0x31,0xa6,0x98,0xd8,0x98,0xc4,0x98,0x94,0x98, +0xf4,0x98,0xcc,0x98,0xcd,0x31,0x3b,0x63,0xf2,0x63,0x0a,0x63, +0x4a,0x62,0xca,0x63,0xea,0x62,0xf6,0xc6,0xec,0x8f,0xb9,0x10, +0x73,0x23,0xe6,0x76,0xcc,0xc3,0x98,0xa7,0x31,0x9f,0x62,0xbe, +0x99,0x01,0xb3,0x83,0xb9,0xbb,0xb9,0xa7,0xb9,0xb7,0xb9,0xaf, +0xb9,0xbf,0x79,0x90,0x79,0xb8,0x79,0x94,0x79,0x8c,0x79,0x9c, +0x79,0xbc,0xd9,0xc5,0x3c,0xd5,0xfc,0x97,0x79,0xa6,0x79,0x96, +0x79,0xae,0x79,0xa1,0x79,0x99,0xd9,0xcb,0xbc,0xc6,0x8c,0x35, +0x7b,0x9b,0x49,0x66,0x8a,0x99,0x66,0x66,0x9a,0x39,0x66,0xbe, +0x59,0x62,0x56,0x98,0x83,0xcc,0x3a,0xb3,0xd1,0x1c,0x69,0x8e, +0x36,0xc7,0x98,0xe3,0xcd,0x49,0xe6,0x14,0x73,0x9a,0x39,0xdd, +0x9c,0x69,0xce,0x35,0x6f,0x36,0xef,0x32,0x17,0x99,0xf7,0x98, +0xcb,0xcc,0xb5,0xe6,0x06,0x73,0xa3,0xf9,0x80,0xf9,0x90,0xf9, +0xa8,0xf9,0xb4,0xf9,0xac,0xf9,0x82,0xf9,0x8a,0xf9,0x96,0xf9, +0x81,0xf9,0x91,0xf9,0xa9,0xf9,0xa5,0xf9,0x8d,0xf9,0xbd,0xf9, +0xa3,0xf9,0x9b,0xb9,0xd9,0xdc,0x12,0x6b,0x1f,0xeb,0x18,0xdb, +0x2d,0xb6,0x77,0x6c,0xdf,0xd8,0xfe,0xb1,0x83,0x63,0x87,0xc5, +0x8e,0x8a,0x1d,0x13,0xeb,0x14,0x3b,0x31,0x76,0x72,0xec,0xf4, +0x58,0x8f,0xd8,0xf9,0xb1,0x8b,0x63,0x97,0xc5,0xae,0x8d,0xdd, +0x10,0x8b,0x8a,0xc5,0xc5,0xfa,0xc4,0x12,0x62,0xc9,0xb1,0xd4, +0x58,0x4e,0xac,0x28,0x56,0x1e,0xab,0x8c,0xd5,0xc4,0xea,0x63, +0x0d,0xb1,0xe1,0xb1,0xe6,0xd8,0xb8,0xd8,0x84,0x58,0x4b,0x6c, +0x4a,0xac,0x35,0x36,0x33,0x6e,0x6e,0xdc,0x82,0xb8,0x25,0x71, +0xcb,0xe2,0xbc,0xe2,0xd6,0xc4,0xad,0x8b,0xdb,0x10,0x87,0x8c, +0x43,0xc7,0x79,0xc7,0xf9,0xc5,0x31,0xe2,0x44,0x71,0xda,0x38, +0x5d,0x9c,0x31,0x2e,0x32,0xce,0x1c,0x97,0x10,0x97,0x1a,0x97, +0x1e,0x97,0x1b,0xb7,0x25,0x6e,0x4f,0x5c,0x45,0x5c,0x4d,0xdc, +0xde,0xb8,0x43,0x71,0xc7,0xe2,0x4e,0xc4,0x9d,0x89,0x3b,0x1f, +0x77,0x31,0xee,0x56,0xdc,0x9d,0xb8,0x7b,0x71,0x8f,0xe2,0x9e, +0xc4,0xbd,0x88,0x7b,0x1d,0xf7,0x2e,0xee,0x53,0xdc,0xaf,0xf8, +0x2e,0xf1,0xdd,0xe3,0x7b,0xc5,0xf7,0x89,0xef,0x1f,0x3f,0x38, +0x7e,0x68,0x3c,0x2b,0x9e,0x1b,0x2f,0x8c,0x17,0xc7,0x07,0xc4, +0x2b,0xe3,0x35,0xf1,0x61,0xf1,0x91,0xf1,0xe6,0xf8,0x8c,0xf8, +0xad,0xf1,0xbb,0xe2,0xcb,0xe3,0xeb,0xe2,0xf7,0xc5,0x1f,0x88, +0x3f,0x15,0x7f,0x36,0xfe,0x4a,0xfc,0xcd,0xf8,0xdb,0xf1,0x77, +0xe3,0xef,0xc7,0x3f,0x8c,0x7f,0x16,0xff,0x32,0xfe,0x6d,0xfc, +0xc7,0xf8,0xcf,0xf1,0x3f,0xe3,0x5b,0x13,0x7a,0x26,0xf4,0x4f, +0x18,0x97,0x30,0x35,0xc1,0x2d,0x61,0x76,0xc2,0xf2,0x84,0x95, +0x09,0xeb,0x12,0x36,0x24,0xa0,0x13,0xbc,0x13,0x88,0x09,0xb4, +0x04,0x56,0x82,0x3c,0x41,0x99,0xa0,0x4e,0xd0,0x25,0x84,0x25, +0x44,0x26,0x44,0x27,0xc4,0x26,0xc4,0x27,0x24,0x25,0xa4,0x26, +0x64,0x24,0x6c,0x4e,0x28,0x4c,0x28,0x4d,0xd8,0x97,0xb0,0x3f, +0xe1,0x48,0xc2,0xb1,0x84,0xd3,0x09,0x67,0x13,0x2e,0x24,0xdc, +0x4c,0xb8,0x9b,0xf0,0x30,0xe1,0x65,0xc2,0xb7,0x84,0x96,0x44, +0x87,0xc4,0x2e,0x89,0x3d,0x13,0x7b,0x27,0x0e,0x49,0x1c,0x91, +0x38,0x26,0x71,0x5c,0xe2,0xc4,0xc4,0xa9,0x89,0x33,0x12,0x3d, +0x12,0xe7,0x27,0x7a,0x26,0x2e,0x49,0x5c,0x9e,0xe8,0x95,0xb8, +0x36,0x11,0x99,0xe8,0x9b,0x48,0x4e,0xa4,0x26,0xb2,0x12,0xb3, +0x13,0xf3,0x12,0xb7,0x26,0xee,0x4a,0x2c,0x4b,0xac,0x4e,0x6c, +0x48,0x6c,0x4c,0x3c,0x90,0x78,0x38,0xf1,0x4c,0xe2,0xf9,0xc4, +0x4b,0x89,0x37,0x12,0x1f,0x24,0x3e,0x49,0x7c,0x99,0xf8,0x3a, +0xf1,0x5d,0xe2,0xa7,0xc4,0xe6,0xc4,0x5f,0x16,0x3b,0x8b,0x83, +0xa5,0xab,0xa5,0x97,0x65,0x80,0x65,0x98,0x65,0xa4,0x65,0xbc, +0x65,0x92,0xc5,0xd5,0xe2,0x6e,0x99,0x63,0x99,0x6f,0x59,0x68, +0x59,0x6c,0x59,0x6e,0x59,0x65,0x59,0x6d,0x59,0x6f,0xf1,0xb1, +0x10,0x2d,0x64,0x0b,0xc5,0x42,0xb7,0x30,0x2d,0x6c,0x0b,0xdf, +0x22,0xb5,0xc8,0x2d,0x81,0x16,0xad,0x45,0x6f,0x89,0xb0,0x44, +0x5b,0xcc,0x96,0x44,0x4b,0x92,0x65,0xab,0x65,0x87,0x65,0x97, +0x25,0xdf,0x52,0x62,0x29,0xb5,0x54,0x5a,0x6a,0x2c,0x4d,0x96, +0x13,0x96,0x33,0x96,0x9b,0x96,0x3b,0x96,0x07,0x96,0x47,0x96, +0x67,0x96,0xd7,0x96,0xcf,0x96,0xaf,0x96,0x5f,0x49,0xf6,0x49, +0x03,0x93,0x86,0x24,0x8d,0x48,0x9a,0x94,0xf4,0x57,0x92,0x5b, +0x92,0x7b,0x12,0x32,0x09,0x9b,0x84,0x4f,0xf2,0x49,0x22,0x24, +0x31,0x93,0xd8,0x49,0x82,0x24,0x51,0x92,0x22,0x49,0x95,0x14, +0x98,0x64,0x4c,0x8a,0x4e,0x8a,0x49,0x8a,0x4d,0x8a,0x4f,0xb2, +0x24,0x25,0x27,0xd9,0x92,0xb2,0x93,0xb6,0x24,0x6d,0x4b,0x2a, +0x4c,0x2a,0x49,0x2a,0x4d,0xaa,0x4c,0xaa,0x49,0xaa,0x4b,0x6a, +0x4a,0x3a,0x9e,0x74,0x3e,0xe9,0x5a,0xd2,0xdd,0xa4,0xfb,0x49, +0x4f,0x93,0xde,0x24,0x7d,0x49,0xfa,0x99,0xd4,0x9a,0xdc,0x35, +0xb9,0x67,0x72,0xdf,0xe4,0x01,0xc9,0x43,0x92,0xc7,0x26,0x4f, +0x49,0x9e,0x9e,0x3c,0x2b,0x79,0x6e,0xf2,0x82,0xe4,0x85,0xc9, +0x4b,0x93,0x57,0x25,0xaf,0x4d,0x5e,0x9f,0x8c,0x4c,0xc6,0x24, +0xfb,0x26,0x93,0x92,0x29,0xc9,0x8c,0x64,0x56,0x32,0x37,0x39, +0x20,0x39,0x30,0x39,0x24,0xd9,0x90,0x1c,0x9e,0x1c,0x99,0x6c, +0x4a,0x4e,0x4a,0x4e,0x49,0xb6,0x26,0xa7,0x27,0x67,0x27,0xef, +0x4c,0x2e,0x4a,0xae,0x4e,0xae,0x4d,0x3e,0x97,0x7c,0x31,0xf9, +0x72,0xf2,0xd5,0xe4,0xeb,0xc9,0xf7,0x92,0x1f,0x25,0x3f,0x4d, +0x7e,0x91,0xfc,0x3a,0xf9,0x63,0xf2,0xcf,0xe4,0xd6,0x14,0xfb, +0x14,0xc7,0x94,0xae,0x29,0xfd,0x53,0x46,0xa6,0x8c,0x4d,0x19, +0x9f,0x32,0x31,0x65,0x72,0xca,0xf4,0x94,0x19,0x29,0xee,0x29, +0xb3,0x53,0x3c,0x53,0x56,0xa6,0xac,0x49,0x59,0x9f,0xb2,0x31, +0x05,0x9f,0xe2,0x9b,0x42,0x4e,0xa1,0xa5,0x88,0x52,0x24,0x29, +0xb2,0x14,0x55,0x8a,0x2e,0x25,0x24,0x25,0x2e,0x25,0x35,0xc5, +0x96,0x92,0x99,0xb2,0x2d,0x65,0x67,0x4a,0x71,0xca,0x9e,0x94, +0xda,0x94,0x83,0x29,0x47,0x52,0x8e,0xa5,0x9c,0x4f,0xb9,0x96, +0x72,0x27,0xe5,0x7e,0xca,0xe3,0x94,0x67,0x29,0xdf,0x52,0x1d, +0x52,0xbb,0xa5,0xf6,0x4f,0x1d,0x9c,0x3a,0x32,0xd5,0x29,0x75, +0x5a,0xea,0xcc,0xd4,0x39,0xa9,0xf3,0x52,0x17,0xa4,0x2e,0x4b, +0x5d,0x95,0xba,0x26,0x15,0x97,0x4a,0x4a,0xa5,0xa4,0xd2,0x52, +0x19,0xa9,0x82,0x54,0x59,0xaa,0x2a,0x55,0x93,0x1a,0x9a,0x1a, +0x96,0xa6,0x49,0x33,0xa4,0x85,0xa7,0x45,0xa7,0xc5,0xa6,0x25, +0xa6,0xa5,0xa6,0x59,0xd3,0x32,0xd2,0x36,0xa5,0x6d,0x4f,0xdb, +0x95,0x56,0x94,0x56,0x96,0x56,0x9b,0xd6,0x90,0xb6,0x2f,0xed, +0x60,0xda,0xd1,0xb4,0x13,0x69,0xa7,0xd3,0xae,0xa4,0x5d,0x4b, +0xbb,0x95,0xf6,0x20,0xed,0xb1,0x75,0xb4,0xd5,0xc9,0x3a,0xd9, +0x3a,0xd5,0x3a,0xc3,0xea,0x6e,0xf5,0xb4,0x2e,0xb5,0x2e,0xb7, +0xae,0xb4,0x6e,0xb4,0xa2,0xad,0x54,0x2b,0xc7,0x2a,0xb0,0x8a, +0xac,0x32,0xab,0xc2,0x1a,0x68,0xd5,0x5a,0xf5,0xd6,0x28,0xab, +0xc9,0x1a,0x6b,0x4d,0xb4,0xa6,0x59,0x33,0xac,0x39,0xd6,0x4d, +0xd6,0xad,0xd6,0x5d,0xd6,0x7c,0x6b,0x99,0xb5,0xc2,0x5a,0x6b, +0x6d,0xb0,0x36,0x59,0x8f,0x5a,0x8f,0x5b,0xcf,0x58,0xcf,0x5b, +0xaf,0x58,0xaf,0x5b,0x6f,0x59,0x1f,0x5a,0x9f,0x59,0x5f,0x5a, +0xdf,0x59,0x3f,0x58,0xbf,0x5a,0xbf,0x5b,0x7f,0xd8,0x00,0x9b, +0xa3,0xad,0xbb,0xad,0xa7,0xad,0x9f,0x6d,0x80,0x6d,0x90,0x6d, +0xa8,0x6d,0x84,0x6d,0xb4,0x6d,0xac,0x6d,0x82,0x6d,0x92,0x6d, +0xaa,0xcd,0xcd,0xe6,0x61,0x9b,0x6f,0xf3,0xb4,0x2d,0xb6,0xad, +0xb4,0x79,0xd9,0xd6,0xda,0x36,0xda,0x50,0x36,0xac,0xcd,0xc7, +0x46,0xb4,0x91,0x6d,0x14,0x1b,0xc3,0xc6,0xb2,0x71,0x6c,0x7c, +0x9b,0xd0,0x26,0xb6,0x05,0xd8,0x94,0x36,0xad,0x4d,0x67,0x0b, +0xb3,0x45,0xd9,0x62,0x6d,0xf1,0x36,0x8b,0x2d,0xdd,0x96,0x6d, +0xdb,0x64,0xdb,0x6a,0xdb,0x61,0xdb,0x65,0x2b,0xb0,0x15,0xd9, +0x2a,0x6c,0x07,0x6d,0x47,0x6c,0xc7,0x6c,0x27,0x6d,0x17,0x6d, +0xb7,0x6c,0x6f,0x6c,0x1f,0x6d,0x5f,0x6c,0x3f,0x6c,0xad,0xe9, +0x0e,0xe9,0x5d,0xd3,0xbb,0xa7,0xf7,0x4e,0x1f,0x94,0x3e,0x3c, +0x7d,0x64,0xba,0x53,0xfa,0x84,0xf4,0xbf,0xd2,0xdd,0xd2,0x67, +0xa5,0xcf,0x4b,0x5f,0x94,0xee,0x95,0x8e,0x4a,0xf7,0x4e,0x27, +0xa4,0x93,0xd2,0x29,0xe9,0xec,0x74,0x6e,0xba,0x30,0x3d,0x20, +0x5d,0x99,0xbe,0x2b,0x3d,0x3f,0xbd,0x24,0xbd,0x34,0xbd,0x2a, +0xfd,0x50,0xfa,0x91,0xf4,0x5b,0xe9,0x77,0xd3,0x1f,0xa4,0x3f, +0x4f,0x7f,0x99,0xfe,0x36,0xfd,0x43,0xfa,0xa7,0xf4,0x96,0x0c, +0x87,0x8c,0x2e,0x19,0x3d,0x33,0x7a,0x67,0xf4,0xcf,0x18,0x9c, +0x31,0x3c,0x63,0x6c,0x86,0x53,0xc6,0x84,0x8c,0xc9,0x19,0xd3, +0x33,0x5c,0x33,0x16,0x67,0x2c,0xcf,0x58,0x95,0xb1,0x36,0x63, +0x43,0x06,0x36,0xc3,0x3b,0xc3,0x37,0x23,0x23,0x23,0x37,0x63, +0x7b,0xc6,0xae,0x8c,0xe2,0x8c,0x8a,0x8c,0x86,0x8c,0xa6,0x8c, +0x23,0x19,0xc7,0x32,0x2e,0x64,0x5c,0xce,0xb8,0x96,0x71,0x33, +0xe3,0x76,0xc6,0xdd,0x8c,0x07,0x19,0x6f,0x32,0x3e,0x64,0x7c, +0xcb,0xf8,0x91,0xd1,0x9a,0x69,0x97,0xd9,0x25,0xb3,0x5f,0xe6, +0xa0,0xcc,0x11,0x99,0x93,0x33,0xa7,0x65,0xba,0x65,0xce,0xcd, +0x5c,0x9c,0xb9,0x34,0x73,0x45,0xe6,0xaa,0x4c,0x64,0x26,0x36, +0xd3,0x3b,0xd3,0x37,0x93,0x94,0x49,0xcd,0x64,0x64,0xb2,0x33, +0x85,0x99,0xbb,0x32,0x8b,0x32,0xf7,0x64,0xd6,0x64,0x36,0x64, +0xee,0xcf,0x3c,0x94,0x79,0x36,0xf3,0x7c,0xe6,0xa5,0xcc,0xeb, +0x99,0xb7,0x32,0xef,0x66,0x3e,0xcc,0x7c,0x92,0xf9,0x32,0xf3, +0x6d,0xe6,0xfb,0xcc,0x4f,0x99,0x5f,0x33,0x7f,0x64,0x75,0xcd, +0x1a,0x9e,0x35,0x32,0x6b,0x5c,0xd6,0xf8,0x2c,0x97,0xac,0xa9, +0x59,0x33,0xb2,0xdc,0xb3,0x16,0x66,0xad,0xca,0x42,0x65,0x61, +0xb2,0xf0,0x59,0x84,0x2c,0xbf,0x2c,0x69,0x96,0x3c,0x4b,0x95, +0x15,0x9e,0x95,0x98,0x95,0x92,0x65,0xcb,0xda,0x94,0xb5,0x2b, +0xab,0x20,0xab,0x38,0xab,0x34,0xab,0x22,0xab,0x36,0xab,0x3e, +0x6b,0x7f,0xd6,0x91,0xac,0x13,0x59,0x67,0xb3,0x2e,0x64,0x5d, +0xca,0xba,0x92,0x75,0x33,0xeb,0x51,0xd6,0xb3,0xac,0x0f,0x59, +0x9f,0xb3,0x81,0x6c,0xc7,0xec,0xae,0xd9,0x3d,0xb3,0xfb,0x64, +0xf7,0xcf,0x1e,0x92,0x3d,0x2a,0xdb,0x29,0xdb,0x25,0xdb,0x2d, +0xdb,0x3d,0xdb,0x33,0x7b,0x71,0xf6,0x9a,0x6c,0x6c,0xb6,0x6f, +0xb6,0x5f,0x36,0x2d,0x9b,0x9b,0xad,0xce,0x0e,0xcc,0x7e,0x9c, +0xfd,0x34,0xfb,0x79,0xf6,0xab,0xec,0x77,0xd9,0x9f,0xb2,0xbf, +0xe4,0x38,0xe4,0xf4,0xc8,0xe9,0x9b,0x33,0x30,0x67,0x48,0xce, +0xa8,0x9c,0x71,0x39,0xe3,0x73,0x26,0xe6,0x4c,0xce,0x99,0x9e, +0xe3,0x99,0xb3,0x24,0x67,0x59,0xce,0xca,0x1c,0xaf,0x9c,0x35, +0x39,0x98,0x1c,0x62,0x0e,0x25,0x87,0x9e,0xc3,0xca,0x11,0xe5, +0xc8,0x72,0xe4,0x39,0xda,0x9c,0xe8,0x9c,0x98,0x9c,0xc4,0x9c, +0xcc,0x9c,0x6d,0x39,0xbb,0x73,0x0a,0x72,0x4a,0x72,0xca,0x72, +0x2a,0x72,0x6a,0x72,0xea,0x73,0x0e,0xe4,0x1c,0xca,0x39,0x92, +0x73,0x36,0xe7,0x62,0xce,0xd5,0x9c,0xeb,0x39,0x4f,0x72,0x5e, +0xe7,0xbc,0xcd,0xf9,0x90,0xd3,0x9c,0xf3,0x2b,0x77,0x54,0xee, +0xd8,0x5c,0x55,0x6e,0x50,0xae,0x3e,0x37,0x34,0x37,0x2c,0xd7, +0x94,0x1b,0x97,0x9b,0x92,0x9b,0x96,0x6b,0xcb,0xcd,0xc9,0xcd, +0xcb,0xdd,0x91,0x9b,0x9f,0x5b,0x94,0x5b,0x99,0xdb,0x90,0xdb, +0x98,0x7b,0x28,0xf7,0x42,0xee,0xa5,0xdc,0xeb,0xb9,0x77,0x72, +0xef,0xe5,0x3e,0xce,0x7d,0x96,0xfb,0x36,0xf7,0x53,0xee,0xd7, +0xdc,0xef,0xb9,0xbf,0xf2,0xba,0xe7,0xf5,0xcd,0x1b,0x94,0x37, +0x24,0xcf,0x29,0x6f,0x7a,0x9e,0x67,0xde,0xe2,0xbc,0xf5,0x79, +0xa8,0x3c,0x6c,0x1e,0x3e,0x8f,0x99,0xc7,0xcd,0x13,0xe4,0x89, +0xf2,0xe4,0x79,0x9a,0xbc,0xf8,0xbc,0xb4,0xbc,0x9c,0xbc,0x4d, +0xdf,0xc7,0x7c,0x9f,0xf2,0x7d,0xce,0xf7,0x94,0xef,0x19,0xdf, +0x0f,0x7e,0x3f,0xf7,0xfd,0xd6,0xf7,0x57,0xcd,0x7f,0x35,0xcf, +0x6c,0x9e,0xd7,0xec,0xd9,0xbc,0xa8,0x79,0x59,0xf3,0x9a,0x66, +0xdf,0x66,0x72,0x33,0xb5,0x99,0xdd,0x2c,0xf8,0x61,0xdf,0x32, +0xb0,0x65,0x44,0x8b,0x47,0xcb,0xca,0x96,0x35,0xad,0xfd,0x5a, +0x47,0xb4,0x22,0x5a,0x17,0xb4,0x2e,0x6d,0xf5,0x6b,0xa5,0xb4, +0xe6,0xb5,0x3e,0x6e,0x7d,0xd6,0xda,0x0a,0xd9,0x13,0x04,0x40, +0x06,0xfc,0x01,0x1d,0xb0,0x09,0x38,0x0a,0x5c,0x05,0x9e,0x02, +0x5f,0x81,0xef,0x76,0x33,0xed,0x96,0xd9,0x61,0xed,0x68,0x76, +0x81,0x76,0x7a,0xbb,0x64,0xfb,0x7a,0xfb,0x23,0xf6,0xc7,0x21, +0x41,0x02,0x38,0xf4,0x74,0x98,0x04,0x09,0x92,0x24,0x87,0xad, +0x0e,0xa5,0x0e,0x07,0x1d,0xed,0x1c,0xfb,0x3b,0x0e,0x75,0x9c, +0xe3,0x88,0x41,0xd8,0x23,0xfa,0x23,0x86,0x23,0x46,0x23,0x10, +0x08,0x17,0x84,0x1b,0xc2,0x1d,0x31,0xbf,0x93,0x20,0xe9,0x01, +0x09,0x12,0x27,0x48,0x90,0xd0,0x9c,0x04,0x4e,0x32,0x27,0xad, +0x53,0xa8,0x93,0xc5,0xe9,0x10,0x24,0x48,0x9e,0x40,0x82,0xc4, +0xde,0xb9,0x9b,0x73,0x2f,0xe7,0x01,0xce,0x23,0x9c,0xc7,0x38, +0x4f,0x72,0x9e,0xe5,0xbc,0xd0,0x19,0xeb,0x4c,0x73,0xe6,0x38, +0x0b,0x9c,0x8d,0xce,0x51,0xb0,0x20,0x99,0x32,0x7e,0xe7,0xf8, +0x82,0x09,0xb4,0x09,0xca,0x09,0xa6,0x09,0xd9,0x13,0x5e,0xb8, +0x00,0xed,0x82,0x44,0xec,0x12,0xe6,0x12,0xe3,0x92,0xea,0xb2, +0xc9,0xa5,0xcc,0xa5,0xda,0xa5,0xc1,0xa5,0xc9,0xe5,0x08,0x24, +0x48,0xce,0xb8,0x3c,0x70,0x79,0x3b,0x11,0x98,0xd8,0x65,0x62, +0xdf,0x89,0xa3,0x21,0x41,0x42,0x83,0x05,0x89,0x7a,0xd2,0xe6, +0x69,0x5d,0x60,0x41,0x92,0x0c,0x09,0x92,0xbc,0x0e,0x82,0xe4, +0x59,0xbb,0x20,0x01,0x66,0x2c,0x98,0xc1,0x9b,0x21,0x9f,0xb1, +0xc5,0x0d,0x70,0xeb,0xee,0x36,0xd0,0x6d,0xb4,0xdb,0x38,0xb7, +0x39,0x6e,0xcb,0xdc,0x52,0xdd,0xb2,0xdc,0x36,0xbb,0x7d,0x75, +0x9f,0xea,0xee,0xe6,0x8e,0x71,0xc7,0xba,0x27,0xb9,0x5b,0xdd, +0xd3,0xdd,0x73,0xdc,0xb7,0xb9,0xef,0x76,0x6f,0x85,0x05,0xc9, +0x60,0x48,0x90,0x38,0x7b,0x4c,0xf4,0x98,0xfa,0x87,0x20,0x59, +0xeb,0xb1,0x11,0x12,0x24,0xc1,0x1e,0x91,0x1e,0x09,0x1e,0x56, +0x8f,0x6c,0x8f,0x3d,0x90,0x20,0x39,0x09,0x09,0x12,0x00,0xe9, +0x80,0xec,0x86,0xec,0x83,0xec,0x8f,0x1c,0xdc,0x49,0x90,0xcc, +0x44,0xce,0x41,0xce,0x43,0x7a,0x22,0x97,0x20,0x97,0x43,0x82, +0x64,0x23,0xd2,0x1b,0xe9,0xdf,0x49,0x90,0x44,0x22,0x4d,0xc8, +0x04,0x64,0x12,0x32,0x15,0x99,0x8e,0xcc,0x42,0xe6,0x22,0xb7, +0x21,0x77,0x21,0x0b,0xda,0x05,0xc9,0x7e,0xe4,0x21,0xe4,0x11, +0xe4,0x09,0xe4,0x69,0xe4,0x25,0xe4,0x6d,0xe4,0x7d,0xe4,0x43, +0xe4,0x6b,0x48,0x90,0x7c,0x41,0xfe,0x40,0x01,0x28,0x07,0x54, +0x0f,0x54,0x1f,0xd4,0x48,0xd4,0x68,0xd4,0x0c,0x48,0x90,0xcc, +0x43,0x2d,0x44,0xad,0x40,0x79,0xa1,0x36,0xa2,0x70,0x28,0x6f, +0x14,0x11,0xc5,0x47,0x49,0x51,0x0a,0x94,0x0a,0x15,0xdc,0x2e, +0x48,0xcc,0x90,0x20,0x49,0x82,0x05,0x49,0x26,0x2a,0x07,0xb5, +0x09,0x55,0x80,0x2a,0x42,0x55,0xa2,0x1a,0x51,0x07,0x50,0xc7, +0x51,0xa7,0x51,0xe7,0x50,0x97,0x50,0x57,0x51,0x37,0x50,0xb7, +0x51,0x77,0x51,0x0f,0x51,0x6f,0x20,0x41,0xf2,0x19,0x12,0x24, +0x2d,0xe8,0x2e,0xed,0x82,0x64,0x00,0x24,0x48,0x46,0xa0,0xc7, +0xa2,0x9d,0xd0,0x93,0x61,0x41,0xb2,0x1c,0xed,0x85,0x46,0xa1, +0xbd,0x3b,0x09,0x12,0xe5,0x1f,0x82,0x24,0x1d,0x5d,0x88,0x2e, +0x6b,0x17,0x24,0xc7,0x61,0x41,0x72,0xb9,0x93,0x20,0x79,0x8d, +0xfe,0x04,0x09,0x12,0x00,0x16,0x24,0x83,0xff,0x10,0x24,0x0b, +0x30,0x4b,0x30,0x2b,0x3a,0x09,0x12,0x16,0x86,0x87,0x09,0xc0, +0xa8,0x60,0x41,0x12,0x89,0x89,0xc1,0xc4,0x61,0x12,0x31,0x69, +0xed,0x82,0x64,0x1b,0x66,0x17,0x66,0x0f,0x66,0x2f,0xe6,0x10, +0xe6,0x38,0xe6,0x24,0xe6,0x0a,0xe6,0x26,0xe6,0x1e,0xe6,0x09, +0xe6,0x39,0xe6,0x15,0xe6,0x1d,0xe6,0x33,0xe6,0x1b,0xe6,0x17, +0x16,0xc0,0x3a,0x60,0xbb,0x62,0x7b,0x42,0x82,0x64,0x30,0x24, +0x48,0x26,0x60,0x27,0x61,0xa7,0xc0,0x82,0x64,0x0e,0x76,0x05, +0x76,0x35,0x76,0x5d,0xbb,0x20,0xf1,0xc7,0x32,0xb1,0x7c,0xac, +0x14,0x16,0x24,0xd1,0xd8,0x78,0x6c,0x12,0x36,0x15,0x9b,0x85, +0xcd,0x83,0x04,0xc9,0x6e,0x48,0x90,0x54,0xc0,0x82,0x64,0xff, +0x1f,0x82,0xe4,0x2a,0xf6,0x26,0xf6,0x36,0xf6,0x01,0xf6,0x09, +0xf6,0x03,0xf6,0x33,0xf6,0x1b,0xb6,0x05,0xd7,0x05,0xd7,0x07, +0xd7,0x0f,0x37,0x04,0x37,0x02,0x37,0x06,0x87,0xc0,0x8d,0x6f, +0x17,0x24,0xf3,0x70,0x4b,0x70,0x2b,0x70,0xab,0x70,0x1b,0x71, +0x18,0x9c,0x6f,0x27,0x41,0x22,0xc1,0x69,0xfe,0x45,0x90,0xe4, +0xe1,0xb6,0xe3,0x76,0xe1,0x8a,0x70,0x7b,0x70,0x65,0x90,0x20, +0x39,0x80,0x3b,0x86,0xbb,0x84,0xbb,0xd2,0x2e,0x48,0xee,0xe3, +0x9e,0xe1,0xbe,0x40,0x82,0xc4,0x01,0xdf,0x1d,0x3f,0x0a,0x3f, +0x06,0x12,0x24,0xd3,0xf0,0x73,0xf0,0xf3,0xf0,0x9e,0xb0,0x20, +0x59,0xd3,0x41,0x90,0xc8,0xf0,0x0a,0xbc,0x0a,0x1f,0x0c,0x0b, +0x12,0x33,0x3e,0x01,0x16,0x24,0xdb,0xf0,0xbb,0xf0,0x05,0xf8, +0x12,0x7c,0x19,0xbe,0x06,0xdf,0x80,0xdf,0x8f,0x3f,0x84,0x3f, +0x8a,0xbf,0x86,0xbf,0x8f,0x7f,0x8c,0x7f,0x86,0x7f,0xdd,0x41, +0x90,0x74,0xf5,0xee,0x07,0x09,0x12,0x57,0x48,0x90,0xcc,0x83, +0x04,0xc9,0x4a,0x58,0x90,0xf8,0x78,0x93,0xbd,0x99,0xde,0xc1, +0x90,0x20,0x09,0xf7,0x8e,0xf2,0x8e,0xf1,0x4e,0xf7,0xce,0xf6, +0xde,0x09,0x0b,0x92,0x43,0x1d,0x04,0xc9,0x43,0x48,0x90,0xfc, +0x82,0x05,0xc9,0x50,0x58,0x90,0xcc,0xfc,0x2f,0x82,0x44,0xd0, +0x2e,0x48,0xa2,0xfe,0x8b,0x20,0xd9,0xdf,0x41,0x90,0x5c,0xf5, +0xb9,0xd1,0x41,0x90,0x7c,0xf0,0xf9,0xee,0xf3,0xcb,0xa7,0xd5, +0xd7,0xc1,0xb7,0x3b,0x2c,0x48,0x06,0xb6,0x0b,0x92,0x89,0x90, +0x20,0x99,0xdb,0x41,0x90,0x20,0x21,0x41,0xc2,0xf2,0xe5,0x43, +0x82,0xc4,0x04,0x0b,0x92,0x2d,0x9d,0x04,0xc9,0x11,0x48,0x90, +0x5c,0x80,0x04,0xc9,0x5d,0x58,0x90,0x7c,0x87,0x05,0x49,0x17, +0x42,0xcf,0x4e,0x82,0x64,0x06,0x61,0x16,0x24,0x48,0x96,0x12, +0xd6,0x11,0x30,0x04,0x3c,0xc1,0x97,0x40,0x21,0xd0,0xff,0xab, +0x20,0xc9,0x85,0x05,0x49,0x19,0xa1,0xe6,0x5f,0x04,0xc9,0x55, +0xc2,0x2d,0xc2,0x1d,0xc2,0x23,0xc2,0x4b,0xc2,0x1b,0xc2,0x57, +0xc2,0x77,0xa2,0x3d,0xb1,0x07,0xb1,0x1f,0x71,0x08,0x71,0x38, +0x2c,0x48,0xa6,0x10,0x67,0x12,0xe7,0x42,0x82,0x64,0x35,0x11, +0x49,0xc4,0x11,0x7d,0x89,0x7e,0x90,0x20,0x61,0x10,0xd9,0x44, +0x2e,0x24,0x48,0x14,0x90,0x20,0x09,0xfb,0x43,0x90,0x6c,0x85, +0x05,0x49,0x6d,0xbb,0x20,0x39,0x47,0xbc,0x48,0xbc,0x4e,0xbc, +0x45,0x7c,0x4c,0x7c,0x46,0x7c,0xf1,0x5f,0x04,0xc9,0x38,0x58, +0x90,0xcc,0xf6,0x5b,0xe8,0xb7,0xf4,0x5f,0x04,0x49,0xa6,0x5f, +0x83,0x5f,0x93,0xdf,0x71,0xbf,0x93,0x7e,0xe7,0xfc,0xae,0xb4, +0x0b,0x92,0x66,0x52,0x0f,0x52,0xaf,0xff,0x22,0x48,0xd0,0x24, +0x3c,0xc9,0x8f,0x44,0x25,0x31,0x21,0x41,0x22,0xfb,0x43,0x90, +0x44,0x93,0x62,0x21,0x41,0x62,0x23,0xe5,0x91,0xb6,0x40,0x82, +0xa4,0x9c,0x54,0x43,0x6a,0x24,0x1d,0x80,0x05,0xc9,0x05,0x48, +0x90,0xdc,0x26,0xdd,0x27,0x3d,0x22,0xbd,0x84,0x05,0xc9,0x67, +0x48,0x90,0xb4,0x90,0xed,0xc8,0x8e,0xe4,0x3e,0xff,0x45,0x90, +0xcc,0x23,0xaf,0x22,0xaf,0x21,0xaf,0x23,0x6f,0x6c,0x17,0x24, +0x34,0x32,0x8b,0x2c,0x22,0x4b,0xda,0x05,0x89,0x05,0x16,0x24, +0xbb,0xc8,0x05,0x90,0x20,0xa9,0x22,0xd7,0xb5,0x0b,0x92,0x7b, +0xe4,0x67,0xe4,0xd7,0xe4,0xb7,0xe4,0xcf,0xe4,0xe6,0x0e,0x82, +0x64,0x70,0x07,0x41,0xb2,0x1e,0x12,0x24,0x58,0x48,0x90,0x88, +0x3a,0x09,0x92,0xd8,0x0e,0x82,0xa4,0xda,0xbf,0xc1,0xff,0xb8, +0xff,0x29,0xff,0x73,0xfe,0x17,0x20,0x41,0x72,0xdb,0xff,0xbe, +0xff,0x63,0x48,0x90,0xbc,0x87,0x04,0xc9,0x2f,0x8a,0x3d,0xa5, +0x2b,0xa5,0x17,0x24,0x48,0x46,0xb4,0x0b,0x92,0x19,0x14,0x0f, +0xca,0x1c,0x48,0x90,0xac,0x80,0x05,0x09,0x1e,0x12,0x24,0x74, +0x8a,0x9c,0x12,0x46,0x09,0x87,0x05,0x49,0x1a,0x2c,0x48,0x76, +0x40,0x82,0xa4,0x92,0xd2,0x44,0x39,0x46,0x39,0x0b,0x09,0x92, +0x1b,0x94,0xdb,0x94,0xbb,0x94,0x67,0x94,0x57,0x94,0x77,0x94, +0x8f,0x94,0x2f,0x94,0x66,0x4a,0x0b,0xd5,0x8e,0xea,0x40,0xed, +0x41,0xed,0x47,0x1d,0x04,0x0b,0x12,0x97,0x76,0x41,0x32,0x8b, +0x3a,0xf7,0x5f,0x05,0x89,0x0f,0x95,0x48,0x25,0x53,0xe9,0x54, +0x0e,0x95,0x4f,0x95,0xb5,0x0b,0x92,0x50,0x6a,0x34,0xd5,0x4c, +0xb5,0x50,0x6d,0xd4,0x5c,0xea,0x26,0xea,0x2e,0x6a,0x11,0xb5, +0x1c,0x12,0x24,0x0d,0x90,0x20,0x39,0x45,0xbd,0x42,0xbd,0x05, +0x0b,0x92,0x77,0x1d,0x04,0x49,0x5f,0xda,0x40,0xda,0x10,0xda, +0x08,0xda,0x28,0x1a,0x82,0xe6,0x02,0x0b,0x92,0x65,0x34,0x2f, +0xda,0xba,0x76,0x41,0x42,0xa4,0xf9,0xd3,0xa8,0x34,0x06,0x8d, +0x47,0x93,0xc2,0x82,0x24,0x9c,0x16,0x03,0x09,0x12,0x2b,0x2d, +0x93,0x96,0x47,0xdb,0x4a,0xdb,0x41,0xdb,0x4d,0x2b,0xa3,0xd5, +0xd0,0x1a,0x68,0x87,0x3b,0x09,0x92,0x3b,0xb4,0x87,0xb4,0xa7, +0xb4,0x77,0xb4,0x2f,0xb4,0xef,0x74,0x00,0x12,0x24,0xdd,0xe9, +0x7d,0x20,0x41,0x32,0x92,0x3e,0x8e,0x3e,0xa9,0x5d,0x90,0x2c, +0x84,0x04,0xc9,0x6a,0xfa,0x3a,0x48,0x90,0x10,0x20,0x41,0xc2, +0xa0,0xb3,0xe9,0x5c,0xba,0x90,0x2e,0xa1,0x2b,0x3a,0x08,0x12, +0x0b,0x24,0x48,0xd2,0x61,0x41,0x52,0xd0,0x49,0x90,0x1c,0xe9, +0x20,0x48,0xbe,0xd0,0x9b,0xe9,0x3f,0x19,0xdd,0x19,0xbd,0x19, +0xfd,0x19,0x43,0x19,0x23,0x19,0x63,0x60,0x41,0xe2,0xca,0x70, +0x87,0x04,0xc9,0x12,0xc6,0x6a,0xc6,0x7a,0xc6,0xc6,0xff,0x21, +0x48,0x42,0x18,0x46,0x46,0x0c,0x23,0x89,0x91,0x05,0x09,0x92, +0x02,0x58,0x90,0xd4,0x33,0x0e,0x30,0x0e,0x33,0x4e,0x31,0xce, +0x32,0xae,0x32,0x6e,0x32,0xee,0x31,0x5e,0x41,0x82,0xe4,0x33, +0xa3,0x85,0x69,0xc7,0xec,0xd6,0x2e,0x48,0x26,0xc1,0x82,0x64, +0x11,0x73,0x2d,0x73,0x03,0x13,0x05,0x0b,0x12,0x2e,0x2c,0x48, +0xd4,0x4c,0x2d,0x24,0x48,0x4c,0xcc,0x38,0x66,0x42,0xbb,0x20, +0xc9,0x63,0x6e,0x67,0xee,0x64,0x96,0x31,0x2b,0x60,0x41,0x72, +0x10,0x12,0x24,0x67,0x21,0x41,0x72,0x03,0x16,0x24,0xaf,0x99, +0x9f,0xda,0x05,0xc9,0x20,0xd6,0x50,0x58,0x90,0x4c,0xff,0x7f, +0x10,0x24,0xc9,0x90,0x20,0xc9,0x61,0x6d,0x83,0x04,0x49,0x11, +0x2c,0x48,0xea,0x59,0x4d,0xb0,0x20,0x39,0xdd,0x2e,0x48,0xee, +0xb1,0x9e,0x40,0x82,0xe4,0x3d,0x2c,0x48,0x7e,0xc1,0x82,0x64, +0x34,0xdb,0x99,0x3d,0x95,0x3d,0x83,0x3d,0x8b,0xed,0xc9,0x5e, +0x0c,0x09,0x92,0x8d,0x6c,0x0c,0xdb,0x9b,0xed,0xcf,0x66,0xb4, +0x0b,0x12,0x25,0x5b,0xc3,0x36,0xb2,0xa3,0x21,0x41,0x62,0x81, +0x04,0x49,0x16,0x24,0x48,0xb6,0xb1,0x77,0xb2,0x0b,0xd8,0x25, +0x90,0x20,0x69,0x60,0x37,0xb1,0x0f,0xb2,0x4f,0x76,0x10,0x24, +0xf7,0xd8,0x8f,0xd9,0xaf,0xd8,0xef,0xd9,0xcd,0x1c,0x80,0x63, +0xcf,0xe9,0xca,0xe9,0xc1,0xe9,0xcd,0xe9,0xcb,0x19,0xc4,0x19, +0xcd,0x19,0xcb,0x99,0xc0,0x99,0xc4,0xf9,0x8b,0x33,0x93,0x33, +0x8b,0xe3,0xc9,0x59,0xc2,0x59,0xd6,0x41,0x90,0x10,0x39,0xfe, +0x1c,0x06,0x87,0xc5,0x91,0x70,0x14,0xb0,0x20,0x09,0xe7,0x44, +0x43,0x82,0xc4,0xfa,0x1f,0x82,0xa4,0x86,0xd3,0xc0,0xd9,0x07, +0x09,0x92,0x23,0x90,0x20,0xb9,0xce,0xb9,0xd5,0x2e,0x48,0x3e, +0x70,0xbe,0x72,0x1d,0xb8,0xdd,0xb9,0xbd,0xb8,0x7d,0xb8,0x83, +0xb9,0xa3,0xb8,0x63,0xb8,0x13,0xb9,0x53,0x21,0x41,0x32,0xa7, +0x93,0x20,0x41,0xb6,0x0b,0x12,0x0a,0x24,0x48,0xa4,0xb0,0x20, +0x09,0x81,0x05,0x49,0x6c,0xbb,0x20,0xc9,0xe6,0x6e,0x82,0x05, +0x49,0x39,0xb7,0x8a,0x5b,0xcf,0xdd,0x0f,0x0b,0x92,0x33,0xdc, +0x8b,0x90,0x20,0xb9,0xdd,0x41,0x90,0xbc,0xe1,0xbe,0xe7,0x7e, +0xe4,0x36,0x73,0x5b,0x78,0x76,0xbc,0x41,0xbc,0xa1,0xbc,0xb1, +0x3c,0x27,0xde,0x14,0x48,0x90,0xcc,0xe3,0x2d,0xe4,0x2d,0x85, +0x04,0xc9,0x46,0x1e,0x9a,0x47,0xe4,0x91,0xdb,0x05,0x89,0x9a, +0x17,0x02,0x0b,0x92,0x78,0x5e,0x0a,0x2c,0x48,0xf2,0x78,0x5b, +0x78,0x3b,0x78,0x45,0xbc,0x12,0x5e,0x39,0xaf,0x92,0x57,0x0b, +0x0b,0x92,0x63,0xb0,0x20,0xb9,0xc4,0xbb,0xca,0xbb,0xc1,0xbb, +0x0b,0x09,0x92,0x37,0xbc,0x0f,0xbc,0xef,0x7c,0x80,0xef,0xc8, +0xef,0xce,0xef,0xc5,0x1f,0xc8,0x1f,0xc1,0x77,0xe2,0xbb,0xfc, +0x8b,0x20,0xc1,0xf1,0x89,0x7c,0x32,0x9f,0xc6,0xe7,0xf1,0x05, +0x7c,0x31,0x5f,0xc1,0xd7,0xf0,0x75,0xfc,0x30,0x58,0x90,0xa4, +0xf2,0xd3,0xf9,0x59,0xb0,0x20,0x29,0x85,0x04,0xc9,0x3e,0x58, +0x90,0x9c,0x80,0x04,0xc9,0x35,0xfe,0x6d,0xfe,0x03,0xfe,0xd3, +0x7f,0x11,0x24,0x3d,0x05,0x03,0x61,0x41,0x32,0x56,0xe0,0x24, +0x98,0x02,0x09,0x92,0xd9,0x82,0x79,0x90,0x20,0xf1,0x12,0xac, +0x17,0x10,0x04,0x54,0x01,0x1d,0x12,0x24,0x72,0x41,0xa0,0x20, +0x44,0x10,0x21,0x88,0x6f,0x17,0x24,0x5b,0x3a,0x09,0x92,0x26, +0x48,0x90,0xdc,0x10,0xdc,0x69,0x17,0x24,0xcd,0x42,0xc7,0x76, +0x41,0x32,0x0e,0x16,0x24,0x73,0x85,0x8b,0x3a,0x09,0x12,0x1c, +0x2c,0x48,0xe8,0x42,0xbe,0x50,0x2a,0x54,0x08,0x35,0xc2,0x60, +0x61,0xa8,0x30,0x5c,0x18,0x25,0x8c,0x11,0xc6,0x0b,0xd3,0x60, +0x41,0x92,0x2f,0x2c,0x11,0x96,0x0a,0xab,0x85,0x75,0xc2,0x46, +0xe1,0x61,0xe1,0x49,0xe1,0x69,0xe1,0x85,0x76,0x41,0xf2,0xb2, +0x83,0x20,0x19,0x04,0x09,0x92,0xf1,0xa2,0x59,0xa2,0xb9,0xa2, +0xc5,0x1d,0x04,0x09,0x19,0x16,0x24,0x52,0x91,0x5c,0xa4,0x15, +0xe9,0x45,0x61,0x90,0x20,0x89,0x13,0x59,0x44,0xc9,0x22,0xab, +0x28,0x43,0xb4,0xb9,0x5d,0x90,0xd4,0x88,0x9a,0x44,0x87,0x44, +0xc7,0xdb,0x05,0xc9,0x75,0xd1,0x6d,0xd1,0x7d,0x58,0x90,0xbc, +0x85,0x04,0x49,0xaf,0x76,0x41,0x32,0x56,0xec,0x22,0x9e,0x22, +0x76,0x17,0xcf,0x86,0x04,0xc9,0x22,0xf1,0x32,0xf1,0x4a,0x31, +0x51,0x4c,0x16,0x33,0xc5,0x1c,0x31,0x5f,0x2c,0x12,0x4b,0xc4, +0x4a,0xb1,0x46,0x1c,0x29,0x8e,0x86,0x05,0x49,0x9a,0x38,0x43, +0x9c,0xf5,0x87,0x20,0x39,0x2c,0x3e,0x29,0x3e,0x2b,0x3e,0x2f, +0xbe,0x2c,0xbe,0xd6,0x41,0x90,0xbc,0x10,0xbf,0x11,0xbf,0x17, +0x7f,0x16,0x7f,0x95,0x74,0x91,0x74,0x83,0x04,0xc9,0x08,0xc9, +0x18,0xc9,0x38,0xc9,0x78,0xc9,0x14,0xc9,0x34,0xc9,0x2c,0xc9, +0xbc,0x76,0x41,0xb2,0x11,0x12,0x24,0x24,0x58,0x90,0x48,0x20, +0x41,0x12,0x02,0x09,0x92,0x44,0x48,0x90,0x64,0xc3,0x82,0x24, +0x1f,0x12,0x24,0x55,0xed,0x82,0xe4,0x90,0xe4,0xb8,0xe4,0xa4, +0xe4,0xbc,0xe4,0xa2,0xe4,0x76,0xbb,0x20,0xf9,0x2a,0x69,0x91, +0xda,0xb5,0x0b,0x92,0x41,0x52,0x84,0xd4,0x59,0x3a,0x4d,0x3a, +0x53,0x3a,0x4f,0xba,0xb8,0x83,0x20,0x21,0xc1,0x82,0x44,0xdc, +0x2e,0x48,0x0c,0x7f,0x08,0x92,0xad,0x1d,0x04,0xc9,0x7e,0xe9, +0x11,0xe9,0x25,0x48,0x90,0xdc,0x95,0x3e,0x92,0xbe,0x94,0xbe, +0x81,0x04,0xc9,0x67,0x58,0x90,0x74,0xe9,0x24,0x48,0x46,0xca, +0xc6,0xc8,0x26,0xfe,0x8b,0x20,0x91,0xca,0x02,0x65,0x3a,0x59, +0xa4,0x2c,0x06,0x16,0x24,0x05,0xb2,0x72,0x59,0xcd,0xff,0x10, +0x24,0x23,0x3a,0x09,0x12,0x2f,0x58,0x90,0x78,0xc3,0x82,0x84, +0xf5,0x1f,0x82,0x24,0xf5,0x5f,0x04,0xc9,0x31,0x58,0x90,0x5c, +0x0a,0xb8,0x1a,0x70,0x37,0xe0,0x71,0xc0,0x2b,0x48,0x90,0xfc, +0x08,0x68,0xe9,0x24,0x48,0xa6,0x43,0x82,0x64,0xb6,0x7c,0x81, +0xdc,0x4b,0xbe,0x5e,0x8e,0x95,0x13,0x60,0x41,0x42,0xef,0x20, +0x48,0xf4,0x72,0xc3,0x7f,0x08,0x92,0xd2,0x76,0x41,0x72,0xe0, +0x0f,0x41,0x72,0x4f,0xfe,0x5c,0xfe,0x4a,0xfe,0x55,0xfe,0x53, +0xd1,0x53,0x31,0x54,0x31,0x4a,0x31,0x4e,0x31,0x41,0x31,0x45, +0xe1,0xaa,0x98,0xa5,0x98,0xa3,0x58,0xac,0x58,0xa9,0x40,0xfe, +0x21,0x48,0x34,0x0a,0x6d,0x27,0x41,0x52,0xd6,0x2e,0x48,0x8e, +0x29,0x4e,0xff,0x21,0x48,0x5e,0x77,0x10,0x24,0x5d,0x20,0x41, +0xe2,0xa2,0x9c,0xa2,0x74,0x55,0xba,0xb7,0x0b,0x12,0xa2,0x92, +0xa2,0x64,0x28,0xf9,0x4a,0x69,0x27,0x41,0x92,0xfb,0x2f,0x82, +0xe4,0x81,0xf2,0x09,0x24,0x48,0xde,0x29,0xbf,0xa8,0xec,0x54, +0x0e,0xaa,0xde,0x9d,0x04,0xc9,0x58,0xd5,0x78,0x95,0x8b,0x6a, +0xb2,0x6a,0x9a,0x6a,0x86,0x6a,0xae,0x6a,0x01,0x24,0x48,0xd6, +0xc2,0x82,0x84,0x08,0x09,0x12,0x96,0x8a,0xaf,0x12,0xab,0xa4, +0x2a,0x85,0x4a,0x0d,0x09,0x92,0x28,0x55,0x8c,0x2a,0xe1,0x0f, +0x41,0x52,0xaa,0xaa,0x54,0xd5,0xa8,0x1a,0x54,0x07,0x3a,0x08, +0x92,0x4b,0xaa,0x6b,0x90,0x20,0x79,0x00,0x09,0x92,0x0f,0x90, +0x20,0x69,0x69,0x17,0x24,0xe3,0xd4,0x13,0xd4,0x13,0xdb,0x05, +0x89,0x57,0x07,0x41,0x42,0x57,0x73,0x3b,0x08,0x12,0xad,0xda, +0xa0,0x36,0xaa,0xa3,0x3a,0x08,0x92,0x8c,0x0e,0x82,0xa4,0x5a, +0xdd,0xa8,0x3e,0xd0,0x41,0x90,0x5c,0x51,0xdf,0x54,0xdf,0x51, +0xdf,0x57,0x3f,0xfc,0x57,0x41,0xd2,0x4d,0xd3,0x4b,0x33,0x4a, +0x33,0x56,0x33,0x41,0x33,0x45,0x33,0x17,0x16,0x24,0x5e,0x1a, +0x3f,0x0d,0x5d,0xc3,0x86,0x05,0x49,0x48,0x27,0x41,0x52,0xd8, +0x2e,0x48,0xea,0xdb,0x05,0xc9,0x0d,0xcd,0x03,0x58,0x90,0xbc, +0xee,0x20,0x48,0x06,0x07,0x22,0x02,0x5d,0xfe,0x43,0x90,0x08, +0x3b,0x09,0x92,0xa8,0xc0,0xb8,0x3f,0x04,0xc9,0xee,0x4e,0x82, +0xe4,0x70,0xe0,0x89,0xc0,0x73,0x90,0x20,0x79,0xfa,0x87,0x20, +0x19,0x00,0x09,0x92,0xa9,0xed,0x82,0x64,0x69,0xd0,0x6a,0x48, +0x90,0x78,0x07,0xf9,0x05,0xf9,0x77,0x12,0x24,0xa1,0x41,0x11, +0x41,0xe6,0xa0,0x78,0x58,0x90,0xec,0x80,0x04,0xc9,0x9e,0xa0, +0xf2,0xa0,0xda,0xa0,0xbd,0x90,0x20,0x39,0xdf,0x2e,0x48,0x1e, +0x06,0x3d,0xf9,0x43,0x90,0xf4,0xd1,0x0e,0xd6,0x0e,0xd3,0x8e, +0xd6,0x8e,0xd3,0xba,0x6a,0x67,0x6a,0xe7,0x6a,0x3d,0xb5,0xcb, +0x21,0x41,0xb2,0x51,0xeb,0xab,0xa5,0x77,0x10,0x24,0x41,0xb0, +0x20,0x09,0xd7,0x9a,0xb4,0xc9,0xda,0x34,0x6d,0x9e,0x76,0xb7, +0xb6,0x18,0x16,0x24,0x07,0xb5,0x47,0xb5,0x27,0x20,0x41,0x72, +0x5e,0x7b,0x59,0x7b,0x5d,0x7b,0x4b,0x7b,0x57,0xfb,0x58,0xfb, +0x42,0xfb,0x5a,0xfb,0x56,0xfb,0x45,0xfb,0xad,0x83,0x20,0xe9, +0x09,0x09,0x92,0xe1,0xb0,0x20,0x71,0x81,0x05,0xc9,0xec,0xe0, +0xf9,0xc1,0xab,0x82,0xd7,0x04,0xaf,0x0f,0x46,0xfd,0x21,0x48, +0x64,0xc1,0xca,0x60,0x6d,0x70,0x54,0xbb,0x20,0x49,0x0d,0xb6, +0x05,0x67,0x77,0x12,0x24,0xfb,0x83,0x0f,0x05,0x1f,0x09,0x3e, +0x1e,0x7c,0x12,0x16,0x24,0x8f,0x60,0x41,0xf2,0x05,0x16,0x24, +0x03,0x74,0xc3,0x74,0x63,0x61,0x41,0x32,0x55,0x37,0x57,0xb7, +0x48,0xb7,0x42,0xb7,0x41,0x87,0x82,0x05,0x09,0x55,0xc7,0x6a, +0x17,0x24,0x61,0x9d,0x04,0x89,0x0d,0x12,0x24,0x9b,0x75,0xdb, +0x74,0x3b,0x75,0x05,0xba,0x22,0x5d,0xa9,0xae,0x56,0xb7,0xf7, +0x5f,0x04,0xc9,0x9d,0x3f,0x04,0x49,0x33,0x2c,0x48,0x1c,0xf5, +0x3d,0x21,0x41,0x32,0x58,0x3f,0x4c,0x8f,0xd0,0x4f,0xd3,0xbb, +0xea,0xdd,0xf5,0xb3,0xf5,0xf3,0xf5,0x4b,0xf4,0xcb,0xf5,0x6b, +0xf4,0xeb,0xf5,0x48,0xbd,0x8f,0x9e,0xa4,0xa7,0xe8,0xe9,0xb0, +0x20,0x09,0xd0,0xab,0x3a,0x08,0x92,0x0c,0x7d,0x9e,0x7e,0x8b, +0xbe,0x40,0x5f,0xa1,0xaf,0xd6,0xd7,0xe9,0xf7,0xea,0x8f,0xea, +0x4f,0xe8,0xcf,0xea,0xcf,0xeb,0x2f,0x43,0x82,0xe4,0x96,0xfe, +0x9e,0xfe,0xa1,0xfe,0x59,0x27,0x41,0xe2,0x18,0xd2,0x03,0x12, +0x24,0x63,0x43,0x9c,0x60,0x41,0x32,0x13,0x12,0x24,0xf3,0x43, +0x16,0xc1,0x82,0x64,0x1d,0x24,0x48,0xf0,0x21,0xc4,0x10,0xff, +0x10,0x7a,0x08,0x27,0x84,0x0f,0x0b,0x92,0xe0,0x90,0xd0,0x10, +0x63,0x88,0x29,0x24,0x2e,0x24,0x21,0x24,0x39,0xc4,0x1a,0x92, +0xd5,0x41,0x90,0x6c,0x08,0x45,0x87,0xe2,0x43,0x09,0xa1,0xd4, +0x50,0x6e,0xbb,0x20,0xd1,0x84,0x1a,0x43,0x23,0x3b,0x08,0x92, +0x9c,0xd0,0xcd,0xa1,0x5b,0x43,0x77,0x85,0x16,0x43,0x82,0xa4, +0x06,0x12,0x24,0x87,0x61,0x41,0x72,0x29,0xf4,0x5e,0x27,0x41, +0xf2,0xc3,0x00,0x18,0x1c,0x0c,0xbd,0x60,0x41,0x32,0xec,0x7f, +0x0a,0x12,0x8a,0x81,0x6e,0xe0,0x19,0xa4,0x06,0xb9,0x41,0x6d, +0x08,0x32,0xe8,0x0d,0x11,0x86,0x18,0x43,0x2c,0x2c,0x48,0x32, +0x0d,0x39,0x86,0xcd,0x86,0xed,0x86,0xdd,0x86,0x42,0x43,0x89, +0xa1,0x14,0x12,0x24,0x07,0xdb,0x05,0xc9,0x75,0xc3,0x6d,0xc3, +0x7d,0xc3,0xa3,0x76,0x41,0xf2,0x33,0xcc,0x3e,0xac,0x4b,0xd8, +0xc8,0x7f,0x15,0x24,0xe8,0x30,0x5c,0x18,0x35,0x8c,0x0d,0x09, +0x12,0x59,0x98,0x32,0x2c,0x30,0x2c,0x34,0xcc,0xd8,0x49,0x90, +0x64,0x87,0x6d,0x0a,0xdb,0x1a,0xb6,0xab,0x83,0x20,0xd9,0x0b, +0x09,0x92,0x63,0xb0,0x20,0xb9,0x16,0x76,0x17,0x12,0x24,0x4f, +0x21,0x41,0xf2,0x31,0xac,0x39,0xac,0xc5,0x68,0x67,0xec,0x62, +0xec,0x66,0xec,0x0d,0x09,0x92,0xa1,0xc6,0x51,0xc6,0xb1,0xc6, +0x29,0x90,0x20,0x99,0x0d,0x09,0x12,0x42,0x27,0x41,0x22,0x30, +0x4a,0x8c,0x01,0x46,0xf5,0x1f,0x82,0x64,0xbb,0xb1,0x00,0x16, +0x24,0x35,0xb0,0x20,0x39,0x0f,0x09,0x92,0x9b,0xc6,0x3b,0x90, +0x20,0x79,0x0c,0x09,0x92,0x8f,0xc6,0xef,0xe1,0x76,0x90,0x20, +0x19,0xda,0x41,0x90,0xcc,0x0c,0x9f,0x15,0x3e,0x2f,0x7c,0x69, +0xf8,0xaa,0xf0,0xb5,0xe1,0xa8,0x4e,0x82,0x24,0x18,0x16,0x24, +0x31,0xed,0x82,0x24,0x17,0x12,0x24,0xf9,0xff,0x43,0x90,0xdc, +0x85,0x04,0xc9,0xdb,0xf0,0x4f,0xe1,0x5f,0x20,0x41,0xe2,0x10, +0xd1,0x2d,0xa2,0x27,0x2c,0x48,0xa6,0xb4,0x0b,0x92,0x85,0x11, +0x5e,0x11,0x6b,0x60,0x41,0x42,0x87,0x04,0x89,0x10,0x16,0x24, +0x41,0xff,0x55,0x90,0xd4,0x44,0xd4,0xb7,0x0b,0x92,0xe3,0x11, +0xa7,0x23,0xce,0x45,0x5c,0x89,0xb8,0xfe,0x8f,0x20,0x89,0x68, +0x85,0x04,0xc9,0xa0,0xc8,0x61,0x1d,0x04,0xc9,0xf4,0xc8,0xd9, +0x91,0x8b,0x22,0x97,0x46,0xae,0x88,0x5c,0x03,0x0b,0x12,0xdf, +0x48,0x66,0x24,0xaf,0x83,0x20,0x89,0x8e,0x34,0x47,0x5a,0x60, +0x41,0x92,0x05,0x09,0x92,0x5d,0x91,0xc5,0x91,0xb5,0xb0,0x20, +0x39,0x1b,0x79,0x39,0xf2,0x56,0xe4,0xa3,0xc8,0xe7,0x91,0x5f, +0x23,0xbf,0x43,0x82,0xa4,0x6b,0x54,0xcf,0xa8,0x41,0x51,0x43, +0x61,0x41,0x32,0x23,0x6a,0x49,0xd4,0xc6,0x28,0x74,0x14,0x3e, +0xca,0x2f,0x8a,0xd2,0x41,0x90,0x98,0x21,0x41,0xb2,0x35,0x6a, +0x77,0x54,0x09,0x24,0x48,0x8e,0x40,0x82,0xe4,0x34,0x2c,0x48, +0xee,0x40,0x82,0xe4,0x55,0xd4,0x37,0x58,0x90,0xd8,0x47,0x77, +0x8d,0xee,0x1e,0xdd,0x27,0x7a,0xc0,0xbf,0x0a,0x92,0xf5,0x1d, +0x04,0x09,0xf5,0xff,0x2a,0x48,0xea,0x60,0x41,0x72,0xe4,0x0f, +0x41,0xf2,0xa5,0x83,0x20,0xe9,0x63,0x1a,0x60,0x1a,0x62,0x1a, +0x67,0x72,0xfa,0x17,0x41,0xb2,0xc1,0x84,0x85,0x05,0x89,0xbf, +0x89,0xde,0x49,0x90,0xe8,0x4d,0x61,0xed,0x82,0xc4,0xda,0x49, +0x90,0xec,0x31,0x55,0x40,0x82,0xa4,0xc9,0x74,0xd6,0x74,0xc9, +0x74,0xcd,0x74,0x0b,0x16,0x24,0x1f,0x4c,0xdf,0x4c,0x3f,0x3b, +0x09,0x92,0x81,0x31,0xa3,0x63,0x5c,0x62,0xa6,0xb6,0x0b,0x92, +0x15,0x31,0x1b,0x62,0x7c,0x62,0x28,0xff,0x21,0x48,0x42,0x20, +0x41,0x12,0x15,0x63,0x86,0x04,0x89,0x15,0x12,0x24,0x3b,0x62, +0x76,0x43,0x82,0xa4,0x0c,0x12,0x24,0x8d,0x90,0x20,0xb9,0x15, +0xf3,0x30,0xe6,0x09,0x2c,0x48,0xec,0x3b,0x08,0x92,0x81,0xe6, +0xa1,0xff,0x21,0x48,0x3c,0xcc,0x73,0xcc,0x0b,0x60,0x41,0x82, +0x36,0xe3,0x61,0x41,0xc2,0x80,0x04,0x89,0xd0,0x2c,0x83,0x05, +0x49,0x04,0x24,0x48,0xe2,0x3a,0x09,0x92,0x4d,0xe6,0xad,0xe6, +0xc2,0x76,0x41,0xb2,0x0f,0x16,0x24,0x27,0x61,0x41,0x72,0xc3, +0x7c,0xc7,0xfc,0xc8,0xfc,0xc4,0xfc,0xd2,0xfc,0x1a,0x12,0x24, +0x5f,0x20,0x41,0x02,0x74,0x12,0x24,0x43,0x63,0x47,0xc4,0x8e, +0x89,0x45,0x40,0x82,0x64,0x5a,0x27,0x41,0x82,0x84,0x05,0x89, +0x1f,0x24,0x48,0x84,0xb1,0x52,0x58,0x90,0x84,0x76,0x10,0x24, +0xc9,0xb1,0xd6,0xd8,0x8c,0xff,0x2a,0x48,0xe8,0x71,0x82,0xb8, +0x40,0x58,0x90,0xc4,0xc4,0xc5,0x41,0x82,0x24,0x27,0x6e,0x53, +0xdc,0xce,0xb8,0xb2,0xb8,0xaa,0xb8,0xfa,0xb8,0xc6,0xb8,0xa3, +0x71,0x27,0xe2,0x4e,0x43,0x82,0xe4,0x06,0x24,0x48,0x1e,0x74, +0x10,0x24,0xcd,0xf1,0x8e,0xf1,0xdd,0xe2,0x7b,0xc6,0xf7,0x89, +0xef,0x17,0x3f,0x10,0x12,0x24,0x1c,0x48,0x90,0xc8,0xe2,0x15, +0xf1,0xea,0x7f,0x15,0x24,0x27,0x21,0x41,0x72,0xa3,0x83,0x20, +0x79,0xd1,0x41,0x90,0x74,0x4f,0xe8,0x97,0x30,0x06,0x12,0x24, +0xb3,0x20,0x41,0xb2,0xba,0x5d,0x90,0x50,0x13,0x98,0x1d,0x04, +0x49,0x44,0x42,0x74,0x82,0x19,0x12,0x24,0x29,0x90,0x20,0xc9, +0x4f,0x28,0x81,0x04,0xc9,0xe1,0x84,0x63,0x09,0x27,0xda,0x05, +0xc9,0x03,0x48,0x90,0xfc,0x80,0x04,0x49,0x8f,0xc4,0xde,0x89, +0x03,0x13,0x47,0x24,0x8e,0x82,0x04,0xc9,0x14,0x48,0x90,0xcc, +0x4b,0xf4,0x4c,0x5c,0x9c,0xb8,0x3c,0x71,0x65,0xe2,0xda,0xc4, +0x0d,0xb0,0x20,0xa1,0x27,0x66,0x25,0xe6,0x26,0x6e,0x4d,0xdc, +0x99,0x58,0x94,0x58,0x9d,0x58,0x07,0x09,0x92,0x43,0x1d,0x04, +0xc9,0xe3,0xc4,0xe7,0x89,0xaf,0x13,0xdf,0x26,0x7e,0x4a,0xfc, +0x9a,0xf8,0xcb,0x02,0x58,0x1c,0x2c,0x5d,0x2c,0xbd,0x2c,0x7d, +0x2c,0x83,0x2c,0x23,0x2c,0x63,0x20,0x41,0x32,0xd3,0x32,0xdb, +0x32,0x0f,0x12,0x24,0xcb,0x20,0x41,0xb2,0xd6,0xb2,0xd1,0x42, +0x80,0x04,0x09,0x0d,0x12,0x24,0x5c,0x8b,0xd8,0x22,0xb7,0xa8, +0x2c,0x5a,0x8b,0xce,0x12,0x6a,0x89,0xb6,0xc4,0xfc,0x5f,0x04, +0xc9,0xfd,0xff,0x29,0x48,0xd6,0xb6,0x0b,0x12,0x46,0x12,0x3b, +0x89,0x9f,0x24,0x4a,0x92,0x27,0xa9,0x92,0x34,0xff,0x45,0x90, +0xe4,0x43,0x82,0xa4,0x02,0x12,0x24,0xfb,0x93,0x8e,0x24,0x9d, +0x4c,0xba,0x92,0x74,0x23,0xe9,0x7e,0xd2,0xc3,0xa4,0xd7,0x49, +0x9f,0xdb,0x05,0x49,0x9f,0xe4,0xfe,0xc9,0x83,0x3b,0x08,0x92, +0xf9,0xc9,0x0b,0x93,0x97,0x24,0xaf,0x4c,0x5e,0x03,0x09,0x12, +0x74,0xb2,0x6f,0x32,0x11,0x16,0x24,0x9c,0xe4,0x80,0x64,0xcd, +0x1f,0x82,0x24,0x2d,0x39,0x3d,0x39,0xb3,0x5d,0x90,0x9c,0x4d, +0xbe,0xd0,0x49,0x90,0x3c,0x4f,0x7e,0x9d,0xfc,0x21,0xf9,0x5b, +0xbb,0x20,0xe9,0x97,0x32,0x3c,0x65,0x4c,0x0a,0x22,0xc5,0x25, +0x65,0x72,0xca,0xb4,0x14,0x57,0x48,0x90,0x2c,0x80,0x04,0xc9, +0x3a,0x48,0x90,0xf8,0xa4,0x90,0xfe,0x45,0x90,0x58,0x61,0x41, +0x52,0xd8,0x41,0x90,0x9c,0x4b,0xb9,0x92,0x72,0x3b,0xe5,0x7e, +0xca,0xa3,0x0e,0x82,0x64,0x50,0xea,0x70,0x58,0x90,0xcc,0x86, +0x05,0xc9,0xca,0xd4,0x35,0xa9,0x98,0x54,0xbf,0x3f,0x04,0x89, +0x0e,0x16,0x24,0xc6,0xb4,0xe8,0xb4,0x98,0xb4,0xc4,0xb4,0xa4, +0x34,0x6b,0x5a,0x7a,0xda,0xa6,0xb4,0x2d,0x69,0x3b,0x61,0x41, +0x52,0xdf,0x2e,0x48,0x4e,0xa5,0x5d,0x82,0x04,0xc9,0xfd,0x0e, +0x82,0xc4,0x15,0x12,0x24,0x4b,0x20,0x41,0xb2,0xde,0x8a,0xb2, +0x92,0xac,0x0c,0x58,0x90,0xc8,0xad,0x2a,0x48,0x90,0x44,0x5a, +0x4d,0x56,0xb3,0x35,0xde,0x9a,0x6a,0xb5,0x59,0xb3,0x20,0x41, +0xb2,0xd3,0x9a,0x6f,0x2d,0xb1,0x56,0x58,0xab,0xac,0xf5,0xd6, +0xfd,0xd6,0x43,0xd6,0xe3,0xd6,0x93,0xd6,0xf3,0xd6,0xcb,0xd6, +0xeb,0xd6,0x9b,0xd6,0x07,0xd6,0x67,0xd6,0x17,0x90,0x20,0xf9, +0xd2,0x2e,0x48,0xba,0xda,0x7a,0xda,0xfa,0xfc,0xab,0x20,0x71, +0xb7,0xcd,0xb3,0x79,0xda,0x16,0xd9,0x96,0xdb,0xbc,0x6c,0x6b, +0x20,0x41,0x82,0xb1,0x79,0xc3,0x82,0x84,0x06,0x09,0x12,0x5e, +0xbb,0x20,0x09,0x82,0x04,0x49,0x04,0x24,0x48,0x12,0xff,0x43, +0x90,0x94,0x77,0x12,0x24,0xaf,0x6d,0x1f,0x6c,0x9f,0x21,0x41, +0x62,0x97,0xde,0x05,0x12,0x24,0xfd,0xd2,0x87,0xc1,0x82,0x64, +0x3a,0x24,0x48,0xe6,0xa6,0x7b,0xa6,0x7b,0xa5,0xaf,0x4f,0xc7, +0xa7,0xfb,0xa6,0xfb,0xb5,0x0b,0x12,0x69,0xba,0xa2,0x83,0x20, +0x39,0x98,0x7e,0x24,0xfd,0x66,0xbb,0x20,0x79,0x0d,0x09,0x92, +0x9f,0x90,0x20,0xe9,0x01,0x09,0x92,0x81,0x19,0xc3,0x33,0xc6, +0x64,0x20,0x32,0x26,0x64,0x4c,0x82,0x04,0xc9,0x22,0x58,0x90, +0xac,0xcf,0x40,0x43,0x82,0xc4,0x0a,0x0b,0x92,0xc2,0x8c,0x72, +0x48,0x90,0x1c,0xca,0x38,0x96,0x71,0xae,0x93,0x20,0x79,0x9d, +0xf1,0xbe,0x83,0x20,0xe9,0x9b,0x39,0xf0,0x0f,0x41,0xb2,0x3c, +0x73,0x55,0xe6,0x46,0x58,0x90,0xf8,0x41,0x82,0x84,0x95,0xc9, +0xff,0x17,0x41,0x72,0x31,0xf3,0x5a,0xe6,0xad,0xcc,0x3b,0x99, +0x0f,0x32,0x9f,0x64,0xbe,0xc8,0x7c,0xfd,0x1f,0x82,0xc4,0x39, +0xcb,0x25,0x6b,0x52,0x96,0x6b,0xd6,0xcc,0x2c,0xcf,0xac,0x65, +0x59,0x1b,0x3b,0x09,0x12,0x65,0x56,0x78,0x56,0x42,0x56,0x52, +0x96,0x35,0x2b,0x2f,0x6b,0x57,0x56,0x7e,0x56,0x51,0x27,0x41, +0x72,0x3c,0xeb,0x6c,0xd6,0x79,0x58,0x90,0xdc,0xcf,0x7a,0x96, +0xf5,0xae,0x5d,0x90,0x74,0xcf,0xee,0x9d,0xdd,0x3f,0x7b,0x20, +0x24,0x48,0x26,0x64,0xff,0x95,0xed,0x9e,0x3d,0x3f,0x7b,0x71, +0xb6,0xd7,0xbf,0x0a,0x92,0x97,0xd9,0xef,0xb2,0x3f,0x42,0x82, +0xa4,0xeb,0x7f,0x08,0x92,0xa9,0x39,0x9e,0x39,0x8b,0xdb,0x05, +0x09,0x3a,0x87,0x98,0x43,0xce,0xa1,0xe5,0xb0,0x72,0x84,0x39, +0xd2,0xff,0x21,0x48,0xea,0x72,0x9a,0xfe,0x55,0x90,0x7c,0xcb, +0xf9,0x95,0x3b,0x02,0x12,0x24,0x81,0xb9,0x3a,0x58,0x90,0xc4, +0xe6,0x26,0xb5,0x0b,0x92,0xed,0xb9,0xbb,0x73,0x8b,0x72,0x2b, +0x72,0x6b,0x72,0xf7,0xe5,0x1e,0xcc,0x3d,0x95,0x7b,0x29,0xf7, +0x5a,0xee,0xcd,0x0e,0x82,0xe4,0x4b,0xee,0xf7,0xdc,0x1f,0x79, +0xdd,0x60,0x41,0x82,0x80,0x05,0xc9,0xba,0x3c,0x24,0x24,0x48, +0xa8,0x79,0x1c,0x58,0x90,0xa8,0x21,0x41,0x92,0x0d,0x09,0x92, +0xc9,0xdf,0xe7,0x7c,0x4f,0xee,0x20,0x48,0xfa,0x36,0xbb,0x35, +0x7b,0x34,0x2f,0x68,0x5e,0xd4,0xbc,0xa4,0x79,0x45,0xf3,0xba, +0x66,0x62,0x33,0xb5,0x99,0xde,0xcc,0xfd,0x61,0xd7,0xd2,0xbf, +0x65,0x44,0x8b,0x5b,0xcb,0xec,0x96,0xd5,0xad,0x76,0xad,0xfd, +0x5b,0x47,0xb6,0x3a,0xb5,0x7a,0xb6,0x2e,0x6b,0x25,0xb5,0xd2, +0x5b,0xef,0xfd,0x16,0x24,0xad,0xf7,0x81,0x2e,0xe0,0x06,0xfe, +0xb4,0x3e,0x04,0xb7,0x7b,0xe0,0x76,0xb7,0x95,0xfe,0xfb,0x5f, +0xc3,0xb5,0xf2,0x00,0xa0,0xe5,0x2a,0x00,0xfc,0xaa,0x03,0xb7, +0x82,0x5f,0xe1,0xbf,0x53,0x7f,0xf5,0xfd,0x85,0x07,0x18,0x00, +0x1d,0xf0,0x03,0x88,0xc0,0x64,0x60,0x10,0x30,0x18,0x18,0xd2, +0xfa,0xbd,0xe3,0xff,0xb2,0x7b,0x70,0xe9,0x41,0x32,0x00,0xdc, +0xdb,0x76,0x6f,0x42,0x8b,0xa1,0x45,0xe7,0x70,0xe7,0xfe,0x41, +0xb0,0x1e,0xaf,0x9f,0xdb,0x00,0xe0,0xfe,0xb5,0xd6,0x79,0x3f, +0xe7,0xb6,0x54,0xb7,0x4c,0x6f,0x79,0xd7,0xf2,0xae,0xad,0xec, +0xfd,0xb1,0xf7,0xc7,0x80,0xb9,0xe1,0xf7,0x3e,0xb4,0xc5,0xee, +0xdd,0xec,0x58,0xcf,0xbd,0x5d,0xe0,0xe6,0x7b,0x2f,0xe9,0x1e, +0xf7,0x1e,0xfd,0x1e,0xfa,0x47,0xbf,0xbb,0x8f,0xee,0x86,0xfd, +0x5c,0xff,0x73,0xc5,0xf7,0xf1,0x3f,0x06,0x35,0x7f,0xf9,0x31, +0xf8,0xc7,0x9c,0x6f,0x73,0x9b,0x5f,0x36,0xdf,0x69,0xbe,0xdd, +0x7c,0x11,0x00,0x9a,0xb7,0x83,0xdb,0xe6,0xb6,0xf3,0xbe,0xa7, +0x80,0x9b,0x09,0x8c,0xad,0xbd,0xdd,0x1d,0xfa,0xaf,0x7c,0xa3, +0x9b,0x87,0x81,0x29,0x02,0x00,0xb8,0x65,0xbc,0x15,0x0a,0xee, +0x73,0x6e,0x65,0xdc,0xb2,0x7e,0x7b,0xf6,0x4d,0xfc,0xb9,0xe7, +0xa7,0xa0,0xfb,0x0f,0x1f,0x5a,0x01,0xe0,0xf1,0xd4,0xc7,0x5e, +0x00,0x70,0xed,0xc4,0xcd,0xdc,0xdb,0x8e,0x37,0x2d,0x57,0xc1, +0xb2,0x37,0x43,0xaf,0x5f,0xb9,0x97,0x70,0xd5,0xbf,0x63,0x8b, +0x2e,0x6c,0xf9,0x7d,0x7c,0xbb,0xe2,0x62,0x8f,0x37,0x46,0x30, +0xfe,0x13,0x00,0x5e,0xdf,0x02,0xb7,0x75,0xaf,0xf1,0xe0,0x1e, +0xd5,0x96,0xf7,0x72,0x44,0xdb,0xfe,0x15,0xf7,0xd5,0x87,0x17, +0xb9,0xe0,0x11,0xfd,0xca,0xfb,0xf7,0x39,0xaf,0x96,0xbe,0xc6, +0xbf,0x90,0xbf,0x9a,0xfd,0x6a,0xd6,0xab,0x69,0xaf,0xa6,0xb5, +0xa5,0xbc,0x20,0xbc,0x1a,0xd2,0xb1,0xf6,0xe7,0x1f,0x5e,0x2d, +0x00,0xcf,0xb7,0xdc,0xcb,0x00,0x80,0xba,0x7b,0x7f,0xa7,0xd6, +0x97,0x36,0xb1,0x1b,0x5f,0x5d,0x88,0x6d,0xba,0xb8,0x57,0x03, +0x00,0x4d,0xc7,0xdb,0xd2,0x9a,0x0e,0x00,0x40,0xcd,0xf4,0x7d, +0x70,0x6b,0x0e,0x9e,0xdf,0xff,0x7c,0x1f,0xa3,0x9a,0x59,0x7d, +0xb6,0x09,0xba,0x47,0x4d,0xfa,0x8e,0xb5,0x56,0xbf,0x01,0x53, +0x68,0x4d,0x94,0x26,0x72,0x3d,0x11,0x0c,0x61,0xfe,0xc9,0x39, +0x7f,0x11,0xca,0x3f,0xd5,0x50,0x0e,0xc7,0x2b,0xda,0xf6,0x55, +0xbe,0x6d,0xfb,0x7d,0xa3,0xf7,0x2b,0xdb,0x8e,0x0d,0xf9,0x50, +0x1b,0xa0,0xfb,0xb2,0x7f,0x3f,0x00,0x54,0x9e,0x6d,0x0b,0xd5, +0x0e,0xab,0xa2,0xee,0xdf,0xb9,0x3f,0x07,0x0c,0xcd,0xdf,0x6f, +0x03,0xcf,0x9c,0xb2,0x3f,0x7d,0x7f,0x22,0x00,0x54,0x7c,0x02, +0x80,0x03,0x53,0xa0,0xf3,0xf9,0x7f,0x5f,0x65,0x3f,0x19,0x8a, +0xa3,0x7f,0xc7,0x2e,0x3d,0xdd,0x3b,0x08,0x8c,0xad,0xa9,0x5c, +0xd8,0x16,0xab,0x3b,0x59,0x2d,0xde,0xdb,0xe5,0xf0,0x7b,0xb0, +0xd4,0xe4,0xea,0xd4,0xbf,0xcf,0xa8,0xda,0x55,0xdd,0xe7,0x5c, +0xe8,0xdf,0xb1,0xc6,0xcf,0xf5,0xdb,0xaa,0x1e,0x36,0x3e,0x3e, +0x87,0xaf,0x01,0xd3,0x1a,0x6f,0x54,0x5e,0x6c,0xbc,0xd8,0x78, +0x6e,0xef,0x95,0xaa,0x82,0x73,0xee,0xbf,0x4b,0xd4,0x9c,0xab, +0xc2,0x34,0x66,0x9c,0x9e,0xd2,0x98,0x58,0x5f,0x57,0x37,0xa3, +0xf2,0x04,0x00,0x9c,0x7d,0xb7,0xaf,0xa0,0x31,0xb4,0x51,0xdf, +0x18,0x54,0xfb,0x1c,0xaa,0x83,0xbf,0x17,0x9c,0x65,0x15,0xd3, +0x1a,0x49,0x35,0x7d,0xc1,0xd8,0xb0,0x46,0x74,0x0d,0xbf,0x71, +0xdd,0xde,0xc7,0xa7,0x57,0x36,0xce,0x81,0x47,0x49,0xd3,0x88, +0x68,0x44,0xd4,0xb5,0x54,0x68,0x1a,0x07,0xb5,0xc5,0x2b,0xff, +0x02,0xb7,0xd3,0xfb,0x9a,0xf7,0x75,0x98,0xd9,0xd5,0xd4,0xb3, +0xae,0x15,0x2b,0xf6,0x3d,0xfa,0x27,0x65,0xdf,0x31,0xb0,0x36, +0x47,0xe0,0x3f,0x7e,0xea,0x48,0x70,0x7e,0x62,0x05,0xf8,0x8c, +0xed,0xdd,0x56,0xed,0x03,0x86,0xc1,0xbb,0xb7,0x4f,0x5e,0xb7, +0x66,0x9f,0x04,0x6a,0x33,0x38,0x96,0xfb,0xf0,0xfb,0xf0,0x0d, +0x7d,0x2b,0xb3,0xda,0x6b,0x9b,0xb9,0xcf,0xb5,0x7c,0x1c,0x78, +0x74,0x6e,0x1b,0xff,0xb6,0x94,0xbd,0x23,0xce,0x4c,0x05,0x80, +0x33,0x67,0x1a,0xc0,0x79,0x56,0xf1,0x79,0xef,0xaf,0x32,0x70, +0xf4,0xeb,0x9b,0x6a,0x07,0x35,0xac,0xad,0xa7,0xed,0x7d,0x7b, +0x7c,0x74,0x2d,0x78,0xe7,0x4e,0x7f,0xfd,0xfb,0xfc,0xbd,0x67, +0xe1,0xe3,0x5e,0xb8,0xbd,0xfb,0xa0,0xb6,0xac,0xda,0xbb,0x79, +0xef,0xa6,0xbd,0x79,0x50,0xca,0x3a,0x30,0x37,0x0e,0xba,0x83, +0x27,0xea,0x11,0x7b,0xf5,0xd5,0xae,0xe5,0xdb,0xf7,0x2a,0xa0, +0x73,0x58,0xe7,0xe7,0x9c,0x90,0xec,0xa5,0xd6,0x07,0x9d,0x5e, +0xb9,0x77,0x43,0x83,0x7d,0xc5,0xd0,0xf6,0x5a,0xe7,0x82,0x9b, +0x7b,0xd9,0x69,0x68,0x54,0xc0,0x99,0x55,0xb9,0xf3,0x24,0xea, +0xd4,0xcf,0xf3,0x0e,0xbf,0x73,0x1b,0xbe,0x35,0x40,0x4f,0x6e, +0xd9,0x0b,0xb0,0xce,0xf5,0x0d,0x17,0xc0,0x94,0x43,0x50,0x7a, +0x65,0xbd,0xa9,0x16,0x6c,0x75,0x43,0x49,0x0d,0xab,0x61,0x4b, +0xc5,0x81,0x8a,0x1a,0xb0,0x25,0xd0,0x3d,0x6f,0x88,0x6e,0x88, +0x6c,0x88,0x84,0x42,0x8a,0x53,0x4b,0x1a,0x84,0x70,0x3d,0xe0, +0xd3,0xd4,0xe0,0x03,0x85,0x36,0x82,0xdb,0x32,0x70,0x9b,0x0d, +0xb5,0x78,0x6e,0xc3,0xa4,0x06,0xa7,0x93,0x77,0x4b,0x2e,0x40, +0x79,0x3d,0x4a,0xc0,0x79,0x54,0x41,0xa9,0x6f,0x06,0xdb,0xf1, +0xb8,0x1e,0xbc,0x13,0xf5,0x37,0x6a,0x37,0x97,0x36,0xd6,0x5f, +0x02,0x43,0xe0,0x33,0x51,0x5f,0x5d,0xbf,0xa7,0xe3,0x7d,0xa8, +0x37,0x1f,0x5b,0x5a,0xe2,0xd6,0xf6,0x0c,0xd5,0xcb,0xea,0x59, +0xf5,0x9c,0x7a,0x70,0x65,0xab,0x47,0xd5,0x63,0xc1,0xb3,0x05, +0x25,0x0b,0xeb,0x67,0x82,0xb1,0x19,0x25,0xb3,0xeb,0x27,0x82, +0xc7,0x51,0xf5,0x23,0xeb,0x47,0x1e,0x4d,0x3f,0x7a,0xbb,0xae, +0xa5,0xee,0xd7,0xb1,0x63,0x25,0xfa,0xba,0x77,0x25,0xe0,0xba, +0x55,0x6d,0xae,0x9a,0x5d,0x75,0xa1,0xee,0x3a,0xd8,0xfa,0x73, +0x75,0x67,0xea,0x8e,0x1d,0xdd,0x58,0x57,0x5f,0xb5,0xb1,0xae, +0xb6,0xae,0xb4,0xae,0xa8,0x2e,0xbf,0x6e,0x27,0x98,0x9e,0x77, +0xd4,0x52,0x97,0x59,0x97,0x5e,0x67,0x6b,0xbb,0x62,0x71,0x5a, +0xd1,0xad,0x8a,0xbc,0xba,0x90,0xd2,0xb6,0xff,0x8f,0x0a,0x94, +0x76,0x85,0xe7,0x03,0xaf,0x8e,0xbb,0x67,0x31,0x78,0xa4,0xd7, +0x51,0xea,0xfc,0x2b,0xc1,0x9e,0x95,0x3c,0xa9,0xf0,0xaf,0x5b, +0x59,0xb7,0xa2,0x6e,0x49,0xe9,0xc0,0x12,0x63,0xf5,0x28,0x00, +0x38,0x1e,0x5d,0x37,0x1e,0x2a,0xdb,0xb5,0x6c,0x07,0x98,0x6f, +0xae,0xfd,0x54,0xfb,0x0c,0x1c,0xd3,0xfb,0xc7,0xe7,0xd4,0xde, +0xaa,0xbd,0x52,0x7b,0xa0,0x16,0x9c,0xd7,0x55,0x47,0xcb,0xba, +0x80,0x69,0x7b,0x2b,0x07,0x82,0xfb,0xd2,0xd2,0xf7,0x7b,0xc0, +0x67,0x7b,0x0f,0xb5,0x2a,0xba,0xc2,0xd4,0x76,0x66,0x79,0xbf, +0x5a,0x7d,0xad,0xb6,0x36,0xb0,0xfc,0x7e,0xd1,0xfe,0xb6,0xf8, +0x9e,0xd1,0xb5,0x8c,0xdf,0xd7,0xaf,0xe8,0x01,0xd6,0x08,0x3e, +0xc3,0x85,0x25,0xe5,0x87,0x6b,0xa7,0xd7,0x4e,0x2c,0xdd,0x5c, +0x3b,0x69,0xcf,0x8d,0x62,0xe7,0xda,0xd1,0x95,0xdb,0xcb,0x78, +0xe5,0xe0,0xca,0x57,0x79,0xb9,0xe6,0x7b,0xcd,0x8f,0xb6,0xb2, +0x25,0x84,0x4a,0x42,0xcd,0xe3,0xb2,0x86,0xc2,0x82,0xd2,0x1e, +0x35,0x37,0x6b,0xae,0x95,0xb8,0x80,0xb3,0xf5,0xf2,0xdf,0x23, +0xda,0xb6,0x54,0xd4,0xd4,0xfc,0x1d,0xab,0xcc,0xad,0xc9,0x2c, +0x43,0xc0,0x4f,0x61,0x54,0xc1,0xfe,0x7f,0x46,0xfe,0x68,0x62, +0x8d,0x08,0x00,0x0a,0x6a,0xc1,0x74,0x46,0x45,0x1a,0xb8,0x27, +0x14,0x83,0x6b,0x5b,0x39,0xa6,0x66,0x63,0x61,0x63,0x65,0x46, +0xa5,0x73,0x4d,0x6e,0x0d,0x38,0x0a,0x15,0xfb,0xca,0xd2,0x6b, +0xc0,0x91,0x2a,0xb9,0x54,0x33,0xa0,0xf8,0x72,0x31,0x74,0x8f, +0x6b,0xec,0xab,0x7f,0x81,0xe3,0x0e,0xbe,0x1d,0xf2,0xd5,0x27, +0x3e,0xe4,0x1f,0x28,0xde,0x94,0x9f,0x96,0xcf,0xaa,0xbe,0x56, +0x7d,0xa6,0x62,0x4f,0xf5,0xb1,0x6a,0x70,0x76,0x55,0xd7,0x1c, +0xf2,0x2a,0xe2,0x57,0x97,0x96,0x80,0x2b,0x55,0x59,0x43,0x75, +0x76,0xd1,0xde,0xea,0xa8,0x72,0x56,0x75,0x68,0x75,0x60,0xc5, +0x9a,0x32,0xe3,0xef,0xeb,0x17,0x8f,0x05,0xcb,0x81,0xab,0xec, +0x9e,0xa6,0xea,0x3e,0xd5,0xbd,0xab,0x7b,0x56,0xfd,0x28,0x00, +0xfb,0x51,0xf5,0xb0,0xb8,0xa2,0xea,0xc2,0x9e,0x53,0xbb,0xab, +0xab,0x8e,0x55,0x1d,0xad,0xda,0x5f,0xd5,0x54,0xd5,0x50,0x55, +0x0f,0xf7,0x0c,0x5c,0x5d,0xaa,0x72,0x4b,0x8a,0xc1,0xbd,0xb5, +0x2a,0xad,0x2a,0x05,0xfc,0x4d,0xa8,0x8a,0x2b,0x39,0xd9,0x96, +0x57,0x38,0x6d,0x0f,0x78,0x2c,0x02,0xd7,0xf7,0xfc,0x63,0x85, +0xb1,0xed,0xeb,0xd4,0xfa,0xd2,0xd6,0x2a,0x70,0xec,0x0e,0x8f, +0xca,0x1f,0xd4,0x3e,0x3e,0x99,0x55,0x7f,0x55,0x4d,0x07,0xaf, +0x8f,0x2a,0x3c,0xfb,0x77,0x5a,0x51,0x54,0xd5,0x80,0xe2,0xe0, +0xa2,0x90,0x43,0x57,0xab,0xba,0x54,0x39,0x96,0x1d,0xab,0x6c, +0xcd,0x4f,0x2a,0x84,0xc6,0x3a,0xbf,0x18,0x1a,0xc5,0x1b,0x25, +0xb7,0x0f,0xcc,0x2d,0x2e,0x83,0xc2,0x87,0xc1,0xab,0xf5,0xaf, +0xdc,0x57,0xd9,0x50,0x09,0xae,0xbc,0x95,0xdb,0x76,0xc5,0x1e, +0x82,0x56,0xce,0xe2,0xb0,0xdd,0xd0,0x3a,0x53,0x69,0xac,0xd4, +0x82,0xbf,0xd0,0xea,0x5a,0x49,0x84,0xef,0xc2,0xea,0xa2,0x99, +0x95,0x8b,0x0b,0x36,0x54,0x82,0x33,0xac,0xd2,0xb5,0x72,0xc6, +0xc1,0x0b,0xa5,0xe3,0x0e,0x82,0xef,0xec,0xca,0x1e,0x65,0xbd, +0xc1,0x31,0x7e,0x57,0x78,0x0e,0xbc,0x52,0x4d,0xc5,0xd3,0x8a, +0xc7,0x15,0xb7,0x2a,0xae,0x57,0x80,0xf7,0xb2,0xe2,0x52,0xc5, +0xc1,0x8a,0xbd,0x15,0x95,0x15,0xd0,0x8a,0x5f,0x01,0xbe,0xa7, +0x0e,0x82,0x4f,0x49,0x45,0x5a,0x45,0x12,0x3c,0x5f,0x8c,0xf9, +0x9e,0xe0,0x9a,0xdc,0x7d,0xe7,0x6b,0x68,0x46,0x80,0xfd,0xae, +0x60,0x14,0x81,0x73,0xbd,0xe8,0x45,0xa1,0x63,0x7e,0x60,0x21, +0xf8,0x74,0x16,0x81,0xa3,0xb0,0x67,0x6a,0xc5,0x7c,0x30,0x67, +0xfe,0x9e,0x85,0x15,0x60,0x8f,0x2b,0x26,0x54,0x8c,0x85,0x7a, +0x0b,0xb6,0xa2,0xf8,0x55,0x41,0xff,0xfc,0x8f,0x00,0xb0,0x7b, +0x62,0x89,0x7b,0xf9,0x13,0x00,0xd8,0x75,0xa9,0x88,0xfc,0xf7, +0x68,0xec,0xb8,0x50,0x5e,0x55,0x5e,0x59,0x5e,0x0a,0x8e,0x55, +0x41,0xf9,0xee,0x7f,0x66,0x4c,0xc9,0xd4,0xbf,0x43,0x85,0x8a, +0xc2,0x57,0x4d,0xe0,0xfb,0xaf,0x5c,0x5b,0xae,0x29,0x0f,0xde, +0x0d,0xbd,0x09,0x8b,0xe9,0x85,0x5e,0xe5,0xec,0x26,0x71,0x39, +0x75,0x27,0xa5,0x9c,0x5c,0x4e,0x2a,0xf7,0x2b,0x1a,0x53,0xee, +0x53,0xee,0xfd,0xcf,0xf9,0xe5,0x8b,0xcb,0x3d,0x4b,0x22,0x8b, +0xbe,0x75,0x48,0x19,0xfd,0x77,0xa8,0x69,0x63,0x61,0x00,0x38, +0x06,0x73,0x8b,0xae,0xff,0x8e,0x17,0x1c,0x2d,0xbb,0xbb,0x1d, +0x5c,0x07,0x0b,0xdf,0x97,0x9d,0x2a,0x3b,0xba,0xab,0x5f,0x19, +0xf8,0x56,0x2d,0x5c,0x09,0xce,0xa6,0x32,0xb8,0x8d,0xda,0xb2, +0xdc,0x32,0x70,0x5d,0x2e,0x03,0xbf,0x0c,0xca,0x2c,0x3b,0xfc, +0x76,0x06,0xec,0x9e,0x01,0x8e,0x47,0x7b,0x6b,0x77,0x6c,0x2b, +0x63,0x94,0xb1,0xa0,0x75,0x8f,0xbc,0xed,0x71,0x19,0xb4,0x6e, +0x6d,0x47,0xfe,0xce,0x2b,0x5b,0x00,0xf5,0x66,0x74,0x99,0xd3, +0xfe,0xd9,0x65,0xce,0x3b,0x3d,0x76,0x83,0x5f,0x23,0xbb,0xa1, +0xb7,0x48,0x19,0xf4,0x35,0x52,0x06,0x94,0x42,0x2b,0x76,0xe3, +0xcf,0xd2,0xa7,0xbf,0xcf,0x28,0x7d,0xd4,0x78,0xb7,0xf4,0x76, +0x23,0xf8,0xa5,0x55,0x7a,0xbe,0xf4,0x1c,0x94,0x72,0xa6,0xf0, +0x51,0x69,0x63,0xe9,0xc1,0x52,0xf0,0x89,0x2a,0x05,0x9f,0xb6, +0xd2,0x12,0x68,0x64,0x8f,0x17,0xa5,0x94,0xe6,0x96,0xe6,0xed, +0x96,0x83,0x29,0x29,0xa5,0x09,0x60,0x9b,0xc9,0xf9,0x8f,0xb7, +0x83,0xeb,0x77,0x69,0xc8,0xf6,0xbc,0xad,0xc1,0xa5,0xda,0x6d, +0x73,0x4a,0xa5,0x00,0xb0,0xb5,0xa0,0xd4,0xa7,0x14,0xbb,0xfb, +0x42,0xe9,0x1a,0x30,0x67,0xd9,0xdf,0x6d,0xde,0x22,0x86,0x6a, +0x9e,0xbc,0x4b,0x5c,0x0a,0x3d,0xb1,0xdb,0xd7,0x16,0x42,0xbd, +0xdd,0x71,0xb2,0xed,0xfe,0x14,0x6c,0xd9,0xf5,0x7d,0xcf,0xb7, +0x3d,0x1f,0xf7,0x7c,0xda,0xf3,0x76,0xcf,0xeb,0x82,0x94,0x2d, +0x3d,0x0b,0xfc,0xf2,0x5b,0xf6,0xdc,0xf8,0x67,0x34,0x77,0x55, +0xec,0x6b,0x7b,0xa2,0x33,0x76,0x13,0x0a,0xc0,0xb5,0x7e,0xcf, +0xee,0xce,0x6f,0xbc,0x3d,0x86,0x6d,0xb4,0xf6,0x30,0x73,0x57, +0xc5,0x56,0xe5,0xd6,0x78,0xf0,0x1a,0xdd,0x77,0x9c,0x6e,0x02, +0xeb,0xdf,0xd9,0x04,0xcd,0xf6,0x5b,0x75,0xcf,0x76,0x82,0xcf, +0xe7,0x9e,0x51,0x3b,0xce,0xd5,0x99,0xa1,0x51,0x6a,0xd9,0x09, +0xce,0x8b,0x1d,0x83,0xc1,0x11,0xd2,0x94,0x3c,0xd9,0x4a,0xdd, +0x02,0xb6,0x6c,0x07,0xb8,0x4e,0x6d,0x05,0xdf,0x0a,0x3b,0x27, +0x96,0x9c,0x28,0x01,0xd7,0xbc,0x92,0xc3,0x25,0xe0,0x33,0x5f, +0xd2,0x50,0xb0,0x14,0x00,0x36,0x25,0x95,0xec,0x2e,0xd9,0x04, +0xdd,0xc1,0xf9,0x25,0xf1,0x3b,0xfb,0x96,0x40,0xcf,0x62,0x09, +0xa5,0x44,0x5a,0x12,0x00,0x1d,0x69,0x5b,0x1e,0x6d,0x1b,0xbf, +0x63,0x49,0x09,0xba,0xf6,0xc3,0xce,0x63,0x0d,0x15,0x25,0xb3, +0xf2,0x5d,0xf6,0x1b,0x4a,0x26,0xe5,0x33,0x6a,0x77,0x6e,0xa9, +0x2c,0x01,0xe7,0x43,0x49,0xaf,0x5d,0xd0,0x7d,0x2a,0x6e,0xde, +0x0d,0xbe,0xf9,0x6b,0x95,0xbb,0x4f,0x6d,0x7a,0x03,0xc5,0x1f, +0x16,0x3f,0x68,0x04,0x9f,0x0c,0x70,0x15,0x4a,0x2e,0xbe,0x58, +0x7c,0xaa,0x2d,0x6d,0xb3,0xa0,0x18,0x7c,0x1a,0x8b,0x0f,0x16, +0xef,0x2f,0x6e,0x04,0x8f,0x75,0xc5,0xb5,0xc5,0xdb,0x7e,0xf7, +0x70,0x6b,0x20,0x38,0x9e,0x60,0xff,0xb6,0x2c,0x2a,0x36,0x80, +0xe5,0x26,0xff,0x4e,0xdd,0xb9,0x6e,0x73,0xf9,0xb6,0x13,0xc5, +0xd0,0x17,0x63,0x31,0xf8,0xcc,0xec,0x72,0xdf,0x02,0x3e,0x85, +0x3b,0xf6,0xec,0x06,0xd7,0xb2,0xe2,0x39,0xb9,0xe0,0xdc,0x6b, +0x84,0xbe,0xac,0x8b,0x11,0xbb,0xc0,0x6f,0x9d,0x62,0xe8,0x3b, +0x71,0xfb,0x8a,0xe2,0x5e,0x9b,0xa8,0xc5,0x5d,0x8b,0xe1,0xf7, +0x69,0x11,0xf8,0x2d,0x54,0x3f,0x1c,0xbe,0x0a,0xf4,0x46,0x29, +0x6a,0x5f,0x47,0xea,0xa0,0xef,0xba,0x22,0x70,0x4c,0x8a,0xb6, +0x6f,0x2d,0x2f,0xca,0xd9,0x32,0xad,0xee,0x18,0x94,0x02,0x7f, +0x39,0x6d,0x9d,0xb1,0x7d,0xe8,0xa6,0xc5,0x50,0x8a,0x68,0x0b, +0xf8,0x6e,0x2c,0xa2,0xd7,0x45,0x6c,0x9f,0xb0,0x7b,0xd0,0xe6, +0x27,0x3b,0xe3,0xeb,0x14,0x3b,0xab,0xc1,0x94,0xd5,0x6d,0xcf, +0x67,0x11,0x38,0x92,0x45,0xf3,0x8a,0xdc,0xa0,0x92,0x93,0x8b, +0x26,0x14,0x39,0x17,0x41,0x4f,0xca,0x6e,0x70,0xbe,0xec,0x5c, +0x01,0xf5,0x04,0xfe,0x4a,0x04,0xcf,0x5c,0x0f,0x00,0xe0,0xdf, +0x27,0x8b,0x0a,0xaf,0x82,0xbf,0x97,0xb7,0x7c,0x01,0x57,0xbd, +0x86,0xbd,0x05,0x85,0x87,0xb7,0xbd,0x02,0x67,0x5f,0xfd,0x26, +0x2a,0x98,0xfb,0x69,0x7b,0x54,0x21,0xf8,0xa5,0x5e,0xb8,0x7d, +0x47,0xb7,0xc2,0x74,0x70,0x4c,0x1e,0xee,0xec,0xba,0xcb,0x71, +0x07,0xb4,0xbe,0x15,0x1a,0x0b,0xb5,0x79,0x97,0xa0,0xef,0x0d, +0x19,0x38,0x12,0x1b,0x0b,0x15,0xdb,0x4f,0xb4,0xc5,0xb6,0x0d, +0xdb,0x09,0xb6,0xb3,0x10,0x57,0x88,0x04,0xb7,0xd5,0x85,0xcb, +0xc1,0xb6,0xd7,0xb6,0xcf,0x53,0xf0,0x1b,0xb6,0x10,0x5a,0x49, +0x0a,0xfb,0x6d,0x61,0xc2,0xcf,0xeb,0xd7,0xec,0xe5,0xd0,0x11, +0xbc,0xea,0xa6,0x89,0x05,0x0f,0xb7,0x7b,0x16,0xdc,0x81,0xda, +0xd9,0xa3,0xe0,0xd4,0x36,0x0b,0xf4,0x65,0xc0,0x2d,0x28,0x2f, +0x00,0xdf,0xfd,0x9b,0xc1,0xf7,0x63,0x01,0xb8,0x9e,0x15,0x40, +0xa9,0x5b,0x0b,0x73,0xd4,0x05,0x45,0x60,0x2c,0xb5,0x86,0xbe, +0x3d,0x1b,0xaa,0x1d,0x7c,0x6a,0x0a,0xa2,0x0a,0x74,0x60,0x49, +0x36,0x5c,0x37,0x0e,0xdc,0xf0,0x70,0xd8,0xab,0x60,0x55,0x01, +0x7a,0xab,0xbc,0x60,0x46,0xc1,0x8a,0x82,0x65,0x5b,0x2a,0xb7, +0xbf,0x6a,0xff,0xf6,0x3b,0xd1,0x71,0xb6,0x57,0xe8,0xb2,0x02, +0x0a,0xc0,0xf5,0xb8,0x1a,0xac,0x33,0xff,0x4b,0xfe,0xab,0x7c, +0xf0,0xde,0xe6,0x3f,0xce,0xbf,0x02,0xee,0x8f,0xe7,0x9f,0x2d, +0x17,0xb5,0xad,0xb7,0xf9,0xd0,0x5b,0xb2,0x1a,0xac,0x3d,0x7f, +0x6f,0x7e,0x6d,0x7e,0x49,0xfe,0xce,0xcd,0xef,0x37,0xbd,0xc8, +0xcf,0xcb,0xcf,0xcc,0xcf,0x85,0xc6,0x36,0x6b,0x6b,0x52,0x3e, +0xfc,0xb6,0xca,0xe7,0x54,0x43,0x5f,0x0a,0xe5,0xbf,0xf2,0xc1, +0xbf,0x3c,0xb2,0xc1,0x5e,0x67,0x81,0x7f,0x55,0xe4,0xa3,0xab, +0xc0,0x79,0x98,0x0f,0xae,0x27,0xf9,0xe0,0x3a,0x9b,0x3f,0x35, +0x7f,0xca,0xee,0xbc,0xfc,0xd1,0xe0,0xaf,0x53,0xfe,0xa8,0xdd, +0x5b,0xf2,0x07,0xe5,0xf7,0xc9,0xef,0x06,0xde,0xb5,0x6f,0xdb, +0xa0,0xd5,0xa5,0x8a,0x58,0xf5,0x7f,0x48,0xfb,0x0a,0xf0,0x28, +0x8e,0xb8,0xef,0x63,0x73,0xab,0xb7,0xb7,0xbb,0xb7,0x7b,0xee, +0x97,0xec,0x1e,0x14,0x68,0x82,0x16,0x2f,0x14,0x2f,0x50,0x4a, +0x81,0x62,0xa5,0x58,0x71,0x77,0x8d,0x2b,0x11,0xe2,0x2e,0x24, +0x81,0x24,0x24,0x14,0x8a,0x53,0xac,0xb8,0x3b,0x14,0x2b,0x2d, +0x2e,0x45,0x4b,0xa1,0x94,0x62,0x2d,0xdf,0xac,0x44,0xa0,0xf4, +0x7d,0xdf,0xe7,0xf9,0x72,0xcf,0x6f,0x66,0x76,0x76,0x7c,0xfe, +0x3a,0x77,0xbb,0x19,0xb0,0xa4,0x4f,0xc5,0x0d,0x69,0x27,0x33, +0x2a,0x76,0x56,0xfc,0x90,0x03,0xa8,0x2f,0x6f,0x79,0xce,0xdf, +0x25,0x26,0x29,0x2f,0xa7,0x22,0xbd,0x22,0x3d,0x17,0xda,0x9c, +0x58,0x01,0xd6,0xa0,0x22,0x1a,0x7c,0x24,0x6f,0xa1,0x40,0x9a, +0x7b,0x41,0xe3,0x8a,0x31,0x60,0xbd,0xc4,0x72,0x80,0x7e,0x2b, +0xfa,0x54,0x7c,0x5e,0xd1,0xad,0xa2,0x53,0x05,0x58,0xf5,0x8a, +0x8f,0xe5,0x31,0x56,0x7c,0x28,0xe9,0x9a,0x31,0xc5,0xdf,0x2f, +0x55,0x57,0x00,0x7b,0xa5,0x82,0xae,0x20,0xca,0x9f,0xe7,0x17, +0x2d,0x59,0x51,0xfe,0x5b,0x6e,0xed,0x72,0x60,0xab,0x14,0x48, +0x72,0xad,0x98,0xcc,0x8f,0x2b,0x5f,0x9b,0x53,0x9a,0x0d,0x64, +0x57,0x79,0x59,0x79,0x79,0xb9,0x64,0x79,0xe6,0x4a,0x56,0xe1, +0xfa,0x2d,0x85,0xa0,0xb7,0x72,0xd0,0x6f,0xb6,0x44,0xdb,0xc5, +0x2f,0xcb,0x27,0x95,0x4f,0xc8,0x06,0xab,0x98,0x23,0x71,0x61, +0xd1,0xaa,0xf2,0x0e,0xc5,0xf3,0xcb,0x81,0xcc,0x2a,0x6f,0xa3, +0x52,0x15,0xb6,0x5c,0xbc,0xa7,0xbc,0xb9,0x4a,0x95,0xf5,0x72, +0x7d,0x5b,0x90,0x63,0x2d,0x88,0x28,0x67,0x96,0x00,0xbd,0xb4, +0x78,0x9b,0xc2,0x6f,0xbf,0x67,0x03,0xfe,0x5f,0x22,0xd9,0x89, +0x45,0x60,0xcd,0xb2,0x66,0x83,0x76,0x81,0x9c,0x2e,0x06,0x92, +0x74,0x19,0x90,0x6d,0xc5,0x89,0xcb,0xca,0x96,0x81,0xb6,0x97, +0x68,0xc1,0xca,0xe6,0x65,0xdd,0xca,0xea,0xb4,0x2c,0x7a,0x59, +0x74,0xf1,0x89,0xe2,0x44,0x69,0xad,0xe7,0x81,0x52,0xc0,0xc7, +0x59,0xf6,0x4d,0x41,0xc6,0xb2,0x91,0xcb,0xfa,0x2f,0x03,0x36, +0xfb,0x32,0x30,0x77,0x51,0xbc,0xe4,0x03,0xbd,0x92,0x43,0x2f, +0x03,0x96,0xc9,0x32,0x49,0x7e,0x66,0x31,0x60,0x7d,0x81,0x2d, +0xb5,0x8e,0x5b,0xa6,0x5f,0x66,0x2c,0x02,0x92,0x34,0xc7,0x3f, +0x0f,0x94,0x29,0x7b,0x52,0xb4,0xb6,0x0c,0x78,0x18,0x65,0x97, +0xcb,0xae,0x8a,0xe1,0xe2,0x8d,0x60,0xa6,0x67,0xca,0x00,0xad, +0x94,0x9d,0x5c,0xd5,0xb0,0x0c,0x70,0x67,0xd9,0xa6,0x32,0xc0, +0x77,0xab,0x12,0xca,0x2a,0xd6,0xa6,0x94,0xad,0x00,0xd7,0xb9, +0x2a,0x55,0xa6,0xb4,0x4e,0x65,0x31,0x65,0x71,0x65,0x51,0x05, +0x01,0xf2,0x5c,0x72,0x6e,0xe5,0xa8,0x8a,0x0e,0x97,0x01,0x19, +0xba,0x98,0x96,0x73,0xf2,0x00,0x8d,0x96,0x05,0x64,0x6e,0x59, +0x45,0x67,0xdd,0x2f,0x03,0x9e,0x4e,0xe6,0x88,0x5c,0xb4,0x0c, +0x48,0x9a,0xb2,0xc6,0x65,0x78,0x19,0x52,0x06,0xe6,0x94,0xbb, +0xab,0xf4,0xc5,0x9a,0x43,0xa5,0x7f,0x97,0xbe,0xca,0x1c,0x53, +0x0a,0x64,0x4c,0xe9,0xfd,0xfc,0x84,0xd2,0x5f,0xd6,0x14,0x94, +0x02,0xa9,0x5d,0x7a,0x1c,0x60,0x77,0x29,0xb0,0x89,0x4b,0x7b, +0x4b,0x72,0x66,0x79,0x29,0xd0,0x43,0xa5,0x65,0xe0,0x03,0x7c, +0xe4,0xd2,0x8c,0xd2,0x74,0xf0,0x49,0xfe,0xae,0x5f,0xa9,0xa2, +0xf1,0x73,0x1d,0xa5,0x0b,0xc0,0x67,0x72,0xa9,0xb7,0xf4,0xeb, +0x95,0x6f,0x4a,0x7b,0xa4,0xdf,0x02,0xbb,0x05,0xe4,0xcd,0x6a, +0x60,0x93,0xa5,0x07,0x97,0xba,0x4a,0x01,0x0d,0x95,0x02,0x19, +0xb5,0xf8,0xcf,0x92,0xdf,0xd2,0x5e,0x95,0x5c,0x2f,0xb9,0x54, +0xf2,0x53,0xc9,0xee,0x82,0x01,0x25,0x3b,0x57,0xf7,0x2b,0x59, +0xb7,0xba,0x5b,0x1a,0xa0,0xc1,0x92,0x25,0x05,0x45,0xd9,0xb1, +0x2b,0x56,0xe4,0x84,0x64,0x4f,0x5f,0x6d,0x5c,0xd9,0xa2,0x64, +0xde,0x8a,0x0b,0x2a,0x55,0xda,0x86,0x55,0x6f,0x4a,0xc0,0xda, +0xe5,0xbd,0x2e,0xf9,0x2a,0x2b,0x69,0xe5,0xb2,0x92,0xce,0x25, +0x2d,0x33,0x66,0x94,0x00,0x8a,0xfe,0x6e,0x6f,0xd6,0x96,0x12, +0xbe,0xc4,0x93,0xd7,0xb8,0xc4,0x58,0xc2,0xae,0x5a,0x9c,0x07, +0xec,0xf0,0x12,0xa4,0xe0,0xd8,0x52,0xe0,0x33,0x2d,0x55,0xbc, +0x9a,0xa5,0x37,0x96,0x4a,0xa7,0x13,0x79,0x75,0x97,0x9e,0x58, +0x7a,0x6c,0xe9,0x9e,0xa5,0xdf,0xe7,0x00,0x0d,0xb9,0x74,0xed, +0xd2,0x35,0x95,0xbc,0x98,0x03,0xfc,0xaa,0xf4,0xfa,0xf9,0xb3, +0x44,0xae,0xc9,0xb7,0xe4,0xa5,0x64,0xdd,0x5d,0x3a,0x27,0xd7, +0x57,0xaa,0x3b,0x76,0xe9,0x90,0xa5,0x5f,0xa5,0x6d,0x5a,0xda, +0x6b,0x69,0x8f,0xf4,0x15,0xb9,0x40,0x0e,0x64,0xd5,0x5e,0xda, +0xea,0xbb,0x92,0x35,0xf7,0xc1,0xbd,0x86,0x4b,0xeb,0xa5,0x6f, +0x58,0x5a,0x27,0x9d,0xc8,0xba,0x9b,0xd1,0x04,0xac,0x6e,0x03, +0x45,0xfa,0x48,0xf6,0x43,0xfe,0x24,0xe5,0xea,0xb4,0x12,0xff, +0xb0,0xe4,0xfb,0x8c,0x7b,0x4b,0xca,0x97,0x94,0x2e,0x29,0x4e, +0x6d,0xb1,0x44,0xe2,0xdf,0xb4,0x07,0x79,0x77,0xd3,0x5a,0xa5, +0xe4,0xa5,0xf5,0x48,0x05,0x54,0xb4,0x64,0xc8,0xca,0x8a,0x25, +0x83,0x52,0x92,0x24,0x99,0x9a,0xbd,0x32,0x75,0x49,0xdb,0x8c, +0x96,0x2b,0xa3,0x97,0x7c,0x94,0x06,0xac,0x9a,0x25,0x9d,0x57, +0xce,0x59,0x52,0x37,0x6d,0x46,0x2a,0xd8,0xd1,0xbc,0x29,0x59, +0x4d,0xa4,0x32,0x80,0xb3,0x8a,0xef,0x15,0xff,0x5a,0x7c,0xa7, +0xf8,0x64,0xb5,0x5c,0x49,0xdb,0x5c,0xbc,0xb9,0x78,0x6d,0xee, +0xad,0x15,0x77,0x8b,0x81,0x0f,0x50,0x1c,0x58,0x9c,0x90,0xd2, +0x2b,0x5d,0x5f,0x3c,0xbe,0x78,0x74,0xf1,0x88,0xe4,0x5a,0xc5, +0x03,0x24,0x9e,0xe9,0x5d,0xdc,0x53,0xb6,0x92,0x24,0xdd,0xf7, +0xa4,0xf8,0xa3,0x55,0x97,0x92,0xef,0xa6,0xbf,0xc9,0xb2,0x82, +0xfa,0x40,0xa6,0xe5,0x56,0xd9,0xa2,0xc5,0x44,0x31,0xa0,0x92, +0xa4,0xcf,0xb3,0x1e,0x66,0x13,0x60,0xee,0x57,0xb2,0xdb,0x48, +0x9c,0xa2,0xc8,0xb4,0xe4,0x5d,0x45,0x57,0x8a,0xce,0x49,0xa9, +0x83,0x45,0xc7,0x8b,0x0e,0x15,0x1d,0x28,0xda,0x53,0xb4,0x33, +0x09,0x78,0x5f,0x45,0x1b,0xe4,0x12,0x59,0x8f,0xd2,0xee,0x15, +0x95,0x15,0x2d,0x29,0x92,0x38,0x38,0x93,0x2c,0x02,0xd6,0x50, +0x06,0x54,0x14,0x0b,0x4a,0x84,0x16,0x2d,0x28,0x9a,0x03,0x3e, +0xb3,0x8b,0xa6,0x17,0x01,0xcd,0x5b,0x04,0xf4,0x5a,0x51,0xff, +0xa2,0xde,0x45,0x9f,0xe5,0x00,0x7d,0x91,0x74,0x3a,0x7b,0x53, +0xd6,0xde,0xa2,0xa6,0x45,0x0d,0x8a,0x80,0xcc,0x28,0xaa,0x53, +0x24,0x14,0xf1,0x45,0x9e,0x22,0xa0,0xdb,0x8b,0xac,0xd2,0x08, +0xd8,0x22,0x26,0xe5,0xd7,0x22,0x6d,0x11,0xf0,0x4a,0x96,0x5f, +0x5c,0x7e,0x26,0xf3,0x44,0xe1,0x1f,0x85,0x80,0x7e,0x53,0x80, +0xdf,0x9a,0x75,0x20,0xb1,0x4e,0x62,0x40,0xe1,0x2f,0x85,0x8a, +0xa5,0x56,0x08,0x24,0x60,0xe1,0xc1,0xc2,0xfd,0x59,0x2f,0xb3, +0x1e,0xa5,0xdf,0x4e,0x7b,0x5a,0xf8,0x7d,0xea,0xe4,0xd4,0x35, +0x85,0xd2,0xee,0x17,0x4a,0x96,0x40,0xe1,0xa2,0xc2,0xa8,0xf4, +0x94,0xc4,0x1b,0xe9,0xdf,0x54,0xce,0xbb,0x70,0x40,0x61,0xbf, +0x42,0x30,0x8f,0xc2,0x36,0x85,0x2d,0x0a,0x9b,0x17,0x7e,0x58, +0x58,0xb7,0x0c,0xd8,0x77,0x85,0xf6,0xf4,0x5f,0x0a,0x4d,0x85, +0x06,0x90,0x62,0x0a,0xc9,0x42,0x74,0xf1,0x3f,0xd2,0x8a,0x2f, +0xcb,0x68,0x91,0x08,0xbc,0xc9,0xd4,0xb0,0xc5,0x97,0x93,0xeb, +0x2d,0x3e,0xb1,0x58,0x91,0xf3,0x99,0xee,0xf4,0x63,0xe9,0xa6, +0x24,0x40,0x94,0x15,0x0d,0x53,0xfa,0x55,0x00,0xfd,0x98,0xf8, +0x20,0x7d,0xdf,0xe2,0xc9,0x15,0xe8,0xe2,0xb1,0x49,0x92,0x76, +0x4a,0x7f,0x98,0xd0,0x36,0xe9,0x40,0xd6,0xf0,0xc5,0xdd,0x17, +0x77,0xcc,0x00,0x14,0xb0,0xb8,0xd5,0xe2,0xc6,0x09,0x4f,0x16, +0x37,0x59,0xdc,0x30,0x99,0x95,0xdb,0x58,0x6c,0x5d,0x0c,0xe4, +0xe4,0x62,0x34,0x7e,0xe7,0x62,0x9f,0x82,0x17,0xc9,0xeb,0x0a, +0x1e,0xa7,0x00,0x59,0x50,0x70,0xbd,0x00,0x84,0xe5,0xbd,0x93, +0x72,0x33,0x67,0x25,0x49,0x1e,0x53,0xc6,0xf1,0x02,0x30,0x9f, +0x02,0xa0,0x43,0xd3,0x82,0x93,0x7b,0xa5,0x77,0x4e,0xbc,0x98, +0xfa,0xaa,0x40,0xb2,0x6c,0x0a,0x00,0x07,0x2e,0x7b,0xb2,0xec, +0x61,0x01,0xb0,0x87,0x0a,0x86,0x17,0x0c,0x01,0xe1,0xa0,0x02, +0x20,0x77,0x0a,0xba,0x24,0x8d,0x05,0x61,0xeb,0xb4,0x65,0xc9, +0x77,0x0a,0x1a,0x8b,0x25,0x53,0x36,0x16,0xd4,0x4e,0xda,0x1f, +0x57,0x9a,0xd0,0xa1,0x80,0x4a,0x05,0xeb,0x9a,0x5e,0x0a,0xda, +0x05,0x14,0x92,0x08,0x2c,0xf8,0x7c,0xe9,0x0c,0x24,0xbd,0x75, +0x3e,0x90,0x0b,0xf9,0xc0,0x1a,0xcb,0xff,0x21,0xbe,0x7d,0xfe, +0xa6,0x84,0xa3,0x09,0x80,0x2a,0xf2,0x57,0x96,0x94,0xa5,0x02, +0x39,0x97,0x2f,0x8a,0x7e,0x55,0x82,0xe4,0x51,0xe4,0x07,0xc5, +0x19,0xf3,0xe7,0xc8,0x73,0xc8,0x9f,0x94,0x0f,0xb4,0x59,0xfe, +0x98,0xfc,0x51,0x95,0xab,0x9b,0x0f,0xbc,0xae,0x78,0xe0,0x0b, +0xc4,0xc3,0xf9,0x1d,0xf3,0x3f,0xcf,0xef,0x50,0x01,0xec,0xfb, +0xfc,0xe6,0x89,0xcb,0xf2,0x1b,0xa7,0x10,0xf9,0x01,0x71,0x40, +0xde,0xe6,0xd7,0x4e,0xb6,0xe7,0x03,0x79,0xb1,0xa8,0x51,0x65, +0x9d,0x14,0xf7,0x22,0x26,0x9f,0xcc,0x7b,0x0a,0x3e,0x4f,0xf2, +0x1e,0xe7,0x01,0x0a,0xcc,0x03,0x92,0x21,0xef,0xe7,0xbc,0x73, +0x79,0x3f,0xe5,0x29,0xbe,0x65,0xdc,0xc8,0xa4,0x53,0x4b,0xe7, +0xa5,0x44,0xe5,0x6d,0x5d,0x02,0x5a,0x4f,0x01,0x34,0x97,0x04, +0x38,0x23,0xaf,0x70,0xe9,0xb0,0x45,0x40,0xfa,0xe6,0xc5,0xa6, +0x3d,0xca,0x03,0x5e,0x6e,0xde,0xdc,0xbc,0xe9,0x79,0x80,0xe2, +0xf2,0x46,0xab,0x54,0xb1,0xb7,0xf2,0xbe,0xce,0x1b,0xa4,0x48, +0xcb,0x4e,0x52,0xd8,0x34,0xaf,0x65,0x9e,0xa4,0x0f,0xf2,0xbc, +0x29,0x4b,0xf3,0x9c,0xe5,0x40,0xd2,0xa7,0x2c,0x58,0xb4,0x34, +0x35,0x20,0x0f,0x4e,0xbd,0x9b,0x0c,0xfc,0xd0,0x84,0x6d,0x31, +0xb7,0x14,0x89,0x27,0x69,0x9c,0x5c,0x60,0x83,0xe7,0x5e,0x07, +0x9f,0xcb,0x71,0xdb,0x16,0x3d,0xc8,0x3d,0x93,0x54,0x94,0x7b, +0x2c,0x17,0xac,0x51,0xee,0xfe,0xd4,0x8a,0xdc,0xad,0xb9,0x9b, +0x73,0x37,0xe5,0x7e,0x1f,0x0f,0x3c,0xc4,0xd8,0xe8,0xd8,0x8e, +0xb9,0x92,0xb7,0x96,0x74,0x4b,0x6c,0xa7,0xfa,0x2f,0x37,0x12, +0x00,0xe8,0x92,0x92,0x2e,0xd2,0x15,0x18,0x57,0x5c,0x30,0x28, +0xef,0xca,0xed,0x9f,0x2b,0x49,0xde,0xd8,0x1b,0xb9,0xdd,0x72, +0x5b,0xe5,0x36,0xcb,0x6d,0xf0,0xee,0x29,0x51,0x2e,0xd0,0xf9, +0x8b,0x24,0x5b,0x3c,0xe7,0x4d,0xc2,0xc1,0xca,0xdc,0xe4,0xfb, +0xd1,0xeb,0x72,0xee,0xa5,0x9c,0xca,0xb9,0x1a,0xc3,0x48,0xf7, +0x4e,0x26,0x49,0x67,0x31,0xf1,0x75,0x92,0xeb,0xc4,0x03,0xf9, +0x9f,0xb3,0x31,0xe7,0x7b,0x69,0x1c,0xce,0x9c,0xe5,0x39,0x4b, +0x40,0x6f,0x77,0x96,0x02,0x59,0x92,0x03,0xd6,0xbd,0x50,0x3a, +0xfb,0x48,0x6e,0xb5,0x30,0x25,0x07,0x8c,0x20,0x27,0xac,0x52, +0x3a,0x82,0x70,0x7a,0xce,0x94,0xe8,0xd3,0xd9,0x67,0xb2,0x7f, +0xcc,0x3e,0xb4,0xa4,0x67,0xf6,0x9e,0x6c,0xa0,0x17,0xb2,0xb7, +0x67,0x03,0x0b,0x25,0xc1,0xbb,0xe8,0x7c,0x1c,0xb6,0x28,0x51, +0xee,0x3b,0x69,0x5d,0x76,0x66,0xa2,0x3a,0x3b,0x29,0x1b,0xf8, +0x46,0xc5,0x7f,0xca,0x79,0xd9,0x73,0xb2,0x81,0x5e,0x8d,0xa2, +0xa2,0x46,0x67,0x8f,0xcf,0x1e,0x93,0x14,0x1a,0x2b,0xf9,0x3d, +0xd9,0x9f,0x67,0x7f,0x56,0xf0,0x4f,0xc1,0xf3,0xec,0x8e,0xd9, +0x6d,0x2b,0x47,0x1e,0xef,0xc9,0xae,0x17,0x03,0x38,0x2d,0x9b, +0xcf,0x76,0x67,0x5b,0x17,0x2e,0x4d,0xdc,0x93,0x8d,0xc7,0xb7, +0xcb,0x56,0x67,0xab,0xb2,0x5e,0x65,0xfd,0x19,0x87,0x67,0xfd, +0x9e,0xf5,0x48,0x92,0x2b,0xca,0x09,0x5a,0xd6,0x05,0x89,0xe6, +0x80,0xd5,0x99,0xb5,0x2f,0x56,0x58,0x04,0xec,0xa9,0x28,0x20, +0x77,0x13,0xc4,0xff,0x53,0xa2,0x8a,0x69,0x08,0x50,0x92,0x00, +0x68,0x3d,0x6e,0x53,0x42,0xfb,0xb8,0x49,0x59,0x8b,0xc4,0xdc, +0xe8,0x72,0x51,0xcb,0x67,0xcd,0x8a,0x2f,0x88,0x02,0x7b,0x12, +0x23,0xc9,0xa9,0xac,0xce,0x59,0x6d,0xb3,0x5a,0xc5,0x35,0x8e, +0xdf,0x15,0x97,0x9e,0xd5,0x20,0xab,0x76,0x96,0x7b,0xa1,0x74, +0x56,0x95,0xe5,0xc9,0xa2,0x63,0xd6,0x64,0x01,0x7b,0x30,0x4b, +0xf9,0x2f,0x2c,0x99,0xbf,0x67,0x3e,0x8a,0xee,0x9b,0xf9,0x5b, +0xe6,0x9d,0x04,0x60,0xd3,0x64,0xfe,0x22,0xe5,0xfd,0x18,0x8b, +0x64,0x9e,0xc8,0x3c,0x9e,0x09,0x68,0x2d,0xf3,0x40,0x04,0xa0, +0xf5,0xcc,0x1d,0x99,0xdb,0x62,0xfd,0x41,0xbc,0x6e,0xa1,0x37, +0x02,0xec,0x6d,0xf4,0xc3,0x98,0x6e,0x52,0xc9,0x9c,0xcc,0xac, +0x4c,0x69,0xe7,0x33,0x13,0x17,0x55,0x9d,0xb9,0x65,0x86,0x65, +0x02,0xcb,0x36,0x73,0x64,0x2c,0xb0,0xd2,0x33,0xbb,0x81,0xcf, +0xa7,0x99,0x9d,0x23,0x4a,0x33,0x3b,0x66,0x76,0x50,0xee,0x37, +0x0d,0xaf,0x97,0x59,0x7b,0xc9,0xbc,0xf8,0x76,0xd1,0xfd,0x32, +0x25,0xbb,0x3e,0xe6,0xab,0xf0,0xd2,0x78,0xb0,0x6f,0x19,0x7f, +0x87,0xaf,0x8c,0x00,0xf2,0x30,0xee,0x4a,0x86,0x74,0x12,0x9e, +0xf1,0x53,0x06,0x58,0x8f,0xd8,0xed,0xe1,0xca,0x68,0x33,0x76, +0x44,0x02,0xa9,0x13,0xd6,0x27,0x63,0x4b,0xde,0x93,0x8c,0x8a, +0x0c,0xc5,0xf3,0xc8,0x48,0x92,0xe3,0xc8,0xb4,0x98,0xbc,0xc5, +0xcd,0x32,0xa6,0x66,0x4c,0x09,0xbb,0x0e,0x64,0x8c,0x2d,0xa3, +0x77,0x06,0xd0,0x0e,0x19,0xbd,0x32,0xfc,0x33,0x3a,0x67,0x80, +0xd9,0x65,0xb4,0xc8,0x00,0xfb,0x12,0xbf,0x24,0xe3,0xc3,0x8c, +0x56,0x19,0x01,0xd1,0x81,0x05,0x67,0xc2,0x33,0x23,0xf0,0x0c, +0x47,0xd8,0xc2,0xa8,0xdb,0x19,0xc6,0xc8,0xc9,0xa0,0xdf,0x2f, +0xd3,0x81,0x9e,0x4d,0x7f,0x0a,0xca,0xaa,0xd2,0xc1,0xbe,0xa4, +0x03,0xad,0x98,0x7e,0x2e,0xfd,0x7c,0x3a,0xb0,0xd7,0xd3,0x7f, +0x09,0xfb,0x16,0xa4,0x81,0xd7,0x26,0x22,0x9e,0x8f,0x19,0x9a, +0x03,0xa4,0x7e,0x28,0x9d,0x5e,0xa0,0x52,0x2d,0x9c,0x16,0xf2, +0x22,0x1d,0x78,0x6f,0xe9,0x11,0xe9,0x81,0x51,0x8d,0x22,0x2b, +0x22,0x3b,0xc6,0x75,0x8f,0x75,0xa4,0x4f,0x4b,0x9f,0x9b,0xde, +0x2f,0xcc,0x2f,0xff,0x9e,0x24,0x6b,0x7a,0xa5,0x7f,0x19,0xfd, +0x53,0x3a,0xf0,0x22,0xd2,0x01,0x5f,0xa6,0x03,0xfa,0xcc,0x3b, +0x91,0x13,0x1d,0xf7,0x53,0x7a,0x9d,0xf4,0xda,0x40,0xca,0x3d, +0x2d,0x04,0xd6,0x49,0x3a,0x12,0xb2,0x3d,0xbd,0x56,0xda,0x8b, +0xec,0xbf,0xa2,0x01,0xbf,0x45,0x49,0x7b,0xb6,0x10,0x68,0xcb, +0xb0,0xb1,0xf9,0x3d,0xd2,0x80,0x5e,0x4a,0x03,0x34,0x9a,0xb6, +0x2f,0x6d,0x57,0xda,0xd6,0xb4,0x15,0x31,0xa2,0x6c,0x04,0x1a, +0x31,0xad,0x30,0x24,0x28,0x06,0x48,0xab,0xb4,0xd8,0x28,0x65, +0x95,0xe2,0x1a,0xa7,0x4d,0x8f,0x4d,0x05,0x39,0xca,0x39,0x62, +0xb6,0x0b,0xa4,0xbb,0xa5,0xd5,0x96,0x64,0x3b,0x90,0x8c,0x69, +0x8d,0xd2,0x3e,0x88,0x15,0x63,0x60,0x55,0x85,0x3a,0xe5,0x32, +0xa9,0x0f,0xa2,0x3e,0x49,0xbd,0x11,0x3d,0x30,0x18,0xd8,0x33, +0xa9,0xbb,0xc3,0x9e,0x29,0xb9,0xa5,0xa9,0x39,0x20,0xcc,0x8a, +0x5c,0x0f,0xc2,0xa4,0xe0,0xbd,0xa9,0x80,0xe2,0xa2,0xc7,0x8b, +0x3a,0x1b,0x5c,0xcf,0x0c,0x9e,0x94,0x0a,0x68,0x33,0x75,0x94, +0x8c,0xc8,0xe0,0xd4,0xe1,0x31,0xb9,0xa9,0x7d,0x53,0xbf,0x48, +0xfd,0x24,0xb5,0x5d,0x6a,0x9b,0xd4,0x66,0x11,0xc0,0x4e,0x4c, +0x6d,0x94,0xda,0x38,0xf3,0x60,0x6a,0xbd,0xd4,0xfa,0x20,0xcd, +0x07,0x3d,0x4b,0xb5,0xa5,0x3a,0x53,0x8d,0xa9,0xda,0xc8,0x81, +0xa9,0x48,0x54,0x61,0x2a,0x11,0x93,0x9d,0xf2,0x20,0xe5,0x0e, +0xf8,0x5c,0x4e,0x01,0x7b,0x96,0x72,0x3a,0xe5,0x64,0x0a,0xa0, +0xba,0x94,0x3d,0x29,0xbb,0x40,0x6a,0x6b,0x66,0xb3,0x94,0xe5, +0x29,0xe5,0x29,0x15,0x41,0x49,0xc1,0xc3,0x53,0x8a,0x0a,0xf0, +0x1c,0x20,0x01,0x53,0xc0,0xcc,0x32,0x81,0x44,0x49,0x89,0x4c, +0x99,0x93,0x32,0x23,0x65,0x5a,0xca,0xb4,0x10,0x28,0x65,0x62, +0xca,0xb8,0xd0,0xa7,0xe2,0xa8,0x82,0xda,0xa5,0xf4,0x0f,0xcc, +0x11,0x53,0x51,0x5d,0x52,0xba,0x86,0xed,0x4c,0xe9,0x9a,0xd2, +0x3e,0x42,0x3a,0xcf,0x0e,0x8e,0x0c,0x5f,0x97,0xd2,0x24,0xa5, +0x1e,0xa8,0xe9,0x4d,0x31,0xa7,0x38,0x53,0x9c,0x91,0x17,0x52, +0x24,0x69,0xb2,0xe0,0x78,0x0a,0xe0,0x88,0xe8,0x3c,0x20,0x27, +0x80,0xa7,0x19,0xf2,0x45,0x74,0x5c,0xf2,0x1d,0x45,0xee,0x1c, +0x49,0x3e,0x1e,0xf9,0x20,0xf9,0x70,0xf2,0x81,0xc0,0x2d,0xd2, +0xf5,0xba,0xe4,0x55,0xc9,0xe5,0xc9,0xcb,0x92,0x97,0x24,0xe7, +0x4a,0x7b,0x1a,0x03,0xf2,0xc2,0x92,0x83,0x93,0x83,0x92,0xe7, +0x25,0xcf,0x0b,0x39,0x94,0x3c,0x2b,0x19,0xe8,0x97,0xa8,0x9d, +0xc9,0xd2,0x59,0x54,0xe0,0xf7,0xc9,0xc0,0x93,0x0f,0xd4,0x27, +0x4b,0xa7,0x55,0xc9,0x5d,0x93,0x3b,0x83,0xb0,0x4d,0x72,0xab, +0xe4,0x96,0x0b,0x2e,0x25,0x7b,0x92,0xdd,0x0b,0x00,0xdd,0x26, +0x6b,0x92,0xb1,0x20,0xa0,0x29,0x83,0x84,0xdc,0x93,0x49,0xcf, +0xc3,0x27,0x27,0xfd,0x21,0xc9,0x9c,0x7b,0xb9,0xe7,0x42,0x96, +0x04,0xb9,0x93,0xae,0x47,0x36,0x08,0xed,0x17,0x38,0x54,0x91, +0x44,0x07,0x93,0xf6,0x27,0xed,0x93,0x52,0xab,0x82,0x07,0xcf, +0x07,0x7c,0x17,0xdc,0x2f,0x58,0x92,0xa7,0x59,0x0d,0x93,0x52, +0x93,0x80,0xd5,0x1a,0x04,0x47,0x02,0x4b,0x36,0x29,0x3a,0xe4, +0x54,0xe8,0xfd,0xc8,0x85,0x49,0xa1,0x41,0x0a,0x45,0x84,0xfe, +0x30,0xff,0xdb,0x5c,0xeb,0x02,0xf1,0xde,0xe0,0xa4,0x01,0xa1, +0x7b,0xc0,0x2c,0x7b,0x47,0xee,0x8c,0x92,0x66,0x9f,0x04,0x78, +0x22,0x09,0xe8,0x87,0xa4,0xc6,0x49,0x80,0xc3,0xd3,0xd4,0xa1, +0x60,0xcc,0x61,0xf3,0x92,0x84,0x24,0x57,0x5a,0xd7,0x24,0x77, +0x92,0x4e,0x5a,0x55,0x20,0x9d,0x92,0xe8,0x24,0x50,0x3e,0x49, +0xb5,0xa0,0x30,0xf1,0x45,0xe2,0xf3,0xc4,0xa7,0x89,0x40,0x57, +0x64,0x7e,0x9d,0x78,0x27,0x28,0x0a,0x68,0xd4,0x1b,0x0b,0xa4, +0xef,0x60,0x12,0x4f,0x05,0xd6,0x4b,0x04,0xa9,0x20,0x7c,0xe1, +0xa7,0x89,0xdb,0x12,0xb7,0x06,0xad,0x48,0xdc,0x94,0xb8,0x31, +0x71,0x7d,0x48,0xa3,0x44,0x43,0x22,0x9b,0x48,0x87,0x36,0x4f, +0x24,0xc2,0x75,0x89,0x68,0x22,0x92,0x08,0x27,0xd6,0x0a,0x1d, +0x20,0x8f,0x6e,0xd1,0xed,0x45,0x3f,0x2d,0x92,0xe4,0xde,0xa2, +0x63,0x8b,0x8e,0xbc,0xab,0x11,0x82,0x81,0x0e,0x09,0x79,0x13, +0x0a,0xb8,0x31,0xf0,0x4e,0x28,0xf0,0x74,0x42,0x9f,0x05,0xfa, +0xa4,0x0c,0x4d,0xdf,0x9d,0xbe,0x03,0x94,0x9f,0x2a,0xd5,0x9a, +0x28,0x85,0xe3,0x82,0x80,0x4e,0x98,0xdb,0x69,0x91,0x5e,0x69, +0xd5,0x27,0xf8,0xb3,0x39,0x33,0x12,0x1e,0x2c,0x98,0x1f,0x98, +0x1e,0x34,0x28,0xe1,0x78,0xc2,0xa1,0x04,0xe0,0x6f,0x25,0x6c, +0x49,0x00,0x12,0x72,0xee,0xfa,0x84,0xb5,0x81,0xb9,0x09,0xab, +0xe6,0x95,0x26,0x94,0x86,0x5d,0x0d,0xba,0x1a,0xb8,0x31,0x21, +0x2b,0x21,0x4b,0xae,0x97,0x10,0x9c,0x20,0x4a,0xdc,0x81,0x41, +0x40,0x07,0x27,0xf4,0x4b,0xe8,0x93,0xf0,0x65,0x42,0x0f,0x29, +0xbf,0xe5,0xfc,0x43,0x09,0x4d,0x13,0x1a,0x26,0x00,0xfb,0x2d, +0x01,0xe8,0x9c,0xd0,0x59,0x09,0x80,0xeb,0x12,0x9c,0x09,0x92, +0x04,0x4b,0x50,0x25,0x01,0xaf,0x25,0x1e,0x58,0xca,0xa9,0x77, +0xe6,0x26,0xc7,0xff,0x1a,0x04,0xec,0x8b,0xf8,0x9f,0xe7,0x01, +0x3a,0x9a,0xfd,0x5d,0x3c,0xe8,0x37,0x1e,0xec,0x5b,0xfc,0x3a, +0x80,0xd5,0xf1,0xc0,0xe3,0x99,0x4f,0xc7,0x03,0x3b,0x2d,0x1e, +0xd0,0x69,0x3c,0xd8,0xc5,0x78,0xb0,0x73,0xf1,0xd1,0xf1,0xe1, +0x73,0x0b,0x15,0x9d,0x21,0xf9,0x57,0xf1,0x40,0x37,0x26,0xce, +0x4d,0x04,0xb3,0x99,0x33,0x7a,0x0e,0x16,0xdc,0x3b,0x9e,0x8a, +0x97,0xce,0xca,0x02,0xdb,0x01,0x0e,0x07,0xd6,0xd9,0x02,0xd0, +0x76,0x20,0xb0,0x85,0xe2,0x1e,0x56,0xae,0x54,0xdc,0xe9,0x05, +0x8a,0x9d,0x9b,0x58,0x2f,0x6e,0x3f,0x28,0xd1,0x7b,0xb6,0x72, +0x22,0xb5,0xe8,0x74,0x1c,0x48,0xcd,0x51,0x05,0x5f,0x91,0xca, +0x01,0xda,0x9d,0xe9,0x2f,0xa5,0x44,0xcd,0x1c,0x19,0x9c,0x12, +0x68,0x0c,0xda,0x18,0x37,0x71,0xee,0x57,0x71,0xa3,0xe3,0x46, +0xc5,0x8d,0x58,0xf0,0xcd,0x8c,0x87,0x73,0x3c,0x21,0x6c,0x5c, +0xbb,0x64,0xa0,0x77,0xe2,0x9a,0x06,0xfe,0x33,0x73,0x5f,0xb0, +0xff,0xac,0x9d,0x0b,0xbe,0x88,0xb3,0xc6,0x69,0x92,0xcb,0xe3, +0xe0,0xe4,0xac,0x45,0xa6,0xd8,0xdf,0x63,0x41,0xcf,0x73,0x8e, +0xce,0xbd,0x1c,0x7b,0x34,0x16,0xec,0x5a,0x2c,0xb0,0xdb,0xe6, +0x80,0x35,0x9b,0x0d,0xb4,0x6b,0x6c,0xc5,0x9c,0xbb,0xb1,0xc5, +0xb1,0x8b,0xe7,0x6d,0x9b,0xcd,0xcd,0x3d,0xbb,0x60,0xe5,0x9c, +0x65,0xb1,0x71,0x73,0xfd,0x40,0x7e,0x48,0x02,0xd0,0xc7,0x73, +0xeb,0xc6,0xce,0x8d,0x9d,0x51,0x39,0xea,0x58,0x60,0x5f,0x25, +0x9d,0x8d,0xed,0x1a,0xdb,0x2e,0xf6,0x93,0xa4,0x9d,0x49,0xdb, +0x95,0x5c,0x4f,0xec,0xf0,0x58,0x63,0x50,0xc8,0x2c,0x60,0x59, +0x25,0x29,0xf2,0x3d,0x16,0x4a,0x02,0x3a,0x7c,0x21,0xa0,0x84, +0x85,0xbf,0xce,0xbf,0xb2,0x10,0xd8,0x2c,0xb3,0x02,0x93,0xbe, +0x5a,0xf0,0x7c,0xe6,0xe0,0xd9,0xc7,0xe6,0xd3,0x89,0xbe,0x73, +0x9d,0x0b,0x41,0xed,0xc0,0x66,0xa0,0x46,0xdd,0xb9,0xb5,0x16, +0x16,0x2e,0x94,0x4e,0x37,0x92,0xd4,0x89,0xff,0x24,0xfe,0x9d, +0xf8,0x72,0x76,0xb1,0x68,0xf7,0x4d,0xc7,0xa5,0xf5,0xb9,0x9e, +0x78,0x2d,0xe5,0x58,0x7c,0x8d,0x6f,0xa9,0xe6,0x4b,0x7d,0x04, +0xae,0x5b,0x08,0xe4,0xd4,0x42,0xe3,0x22,0x60,0xbb,0xcf,0x83, +0xe4,0xfd,0x58,0xa8,0x9e,0x91,0x15,0xf3,0x3c,0x71,0x66,0x4a, +0x74,0xcc,0xdd,0xd9,0xdd,0xa7,0x77,0x8f,0x01,0x9e,0x74,0xdc, +0xb2,0xc4,0xf6,0xd3,0x9e,0x00,0xbd,0xb5,0x29,0x66,0x5d,0xcc, +0xaa,0x44,0x4f,0xcc,0x4a,0xb9,0x95,0xe9,0xe0,0x5e,0x4c,0xcc, +0xa2,0xc7,0x31,0x73,0x62,0x66,0xc6,0x48,0x54,0x19,0x33,0x34, +0xa6,0xcf,0xa2,0xcd,0x60,0x65,0xdc,0x31,0x5d,0x62,0xc0,0xbe, +0x2e,0x92,0x74,0x56,0x4c,0xdd,0x18,0x6f,0x8c,0x10,0xe3,0x8a, +0xb1,0xc5,0x98,0x62,0x00,0xd5,0xc6,0xe8,0x66,0x0f,0x99,0x07, +0x56,0x24,0x9a,0x52,0xa9,0xa6,0x7c,0x0e,0x62,0x28,0xba,0x56, +0x94,0x74,0x5a,0x14,0xf5,0x78,0x4a,0x8f,0x28,0xb0,0xd3,0x51, +0x37,0xa3,0xae,0x4f,0xde,0x1b,0x25,0x79,0x00,0xb3,0xbf,0x8b, +0x02,0x9a,0x35,0xea,0xe0,0x9c,0xdd,0x51,0x89,0x51,0x0b,0xa7, +0xd7,0x8b,0x8a,0x98,0xdb,0x69,0x26,0x90,0x8a,0x51,0xd3,0xe6, +0x54,0x7d,0x6f,0x36,0x7b,0x6d,0x54,0xef,0xc9,0xd2,0x29,0xc6, +0xd4,0xfb,0x73,0x81,0x1d,0x35,0x75,0x76,0xf5,0x5c,0x27,0x0b, +0x73,0x81,0x9d,0x1f,0x65,0x01,0xd0,0x57,0xe6,0x45,0x01,0x09, +0x38,0x0d,0xd8,0xc7,0xf3,0x25,0x3b,0x7d,0x12,0x58,0xdb,0x39, +0xa6,0x49,0x40,0x07,0x47,0xfe,0x3c,0xab,0xe3,0xf4,0xda,0x91, +0xa7,0xc0,0xae,0x01,0xba,0x8d,0x3c,0x14,0xb9,0x2f,0x72,0x7f, +0xe4,0xde,0x19,0x57,0x27,0x77,0x8c,0xdc,0x32,0xa7,0x20,0x72, +0x43,0xa4,0x64,0x5f,0xc5,0x6d,0x8a,0x04,0x75,0x23,0xc1,0x7a, +0xc5,0x95,0xc7,0x2d,0x13,0x73,0x66,0x30,0x91,0x8b,0x66,0x7f, +0x00,0xf2,0x62,0x22,0xa3,0x41,0x18,0x39,0x7d,0xed,0xa2,0x91, +0x53,0xc4,0xd4,0x9c,0x48,0x30,0xcf,0xc8,0x89,0x13,0xdf,0x44, +0x8e,0x8b,0x8e,0x8c,0x1c,0x32,0x79,0x57,0xe4,0xa0,0xc8,0x7e, +0x91,0x7d,0xc2,0x63,0x17,0x7d,0x1d,0xd9,0x3d,0xb2,0x4d,0x64, +0xab,0xc8,0x96,0x91,0xcd,0x27,0x77,0x88,0x54,0xce,0x0f,0x27, +0x1e,0x99,0x2c,0x49,0xde,0xe9,0xd6,0x48,0xe9,0x7a,0x8a,0x29, +0xe2,0xb7,0x08,0xa0,0x4f,0xa3,0x3b,0x4c,0x94,0x28,0x25,0xe2, +0x68,0xe5,0x0c,0xe6,0x74,0x8b,0xcd,0x98,0xf2,0x41,0xc4,0xf2, +0x08,0xd0,0xff,0xac,0x4f,0x22,0xa6,0x45,0x4c,0x8a,0x98,0x18, +0x01,0x3c,0x82,0x88,0xaf,0xc0,0xcc,0x98,0x49,0xe3,0x23,0x5a, +0x44,0x34,0x57,0xa9,0x26,0x1c,0x8b,0xbc,0x0c,0xf2,0x3c,0x51, +0xd3,0x01,0x87,0x1d,0x8e,0x06,0xb3,0x8d,0x60,0x22,0x80,0x47, +0x18,0x01,0x78,0x2b,0x02,0x8a,0xa8,0x15,0xfe,0x47,0xf8,0xef, +0xe1,0x8f,0xc2,0x25,0x8d,0x1d,0x7e,0x2b,0x0a,0xc8,0xb2,0x85, +0xc3,0xc3,0xb3,0x27,0x48,0xba,0x25,0x3c,0x32,0x1e,0x48,0xf0, +0x49,0x40,0x9b,0x4e,0xc8,0x0d,0x9f,0x18,0x3e,0x26,0x7c,0x74, +0xf8,0x88,0xf0,0x49,0xe1,0x03,0xc3,0xfb,0x87,0xf7,0x09,0xff, +0x7c,0xca,0xc8,0xf0,0xee,0xe1,0x9f,0x4a,0x6b,0x59,0x77,0x1a, +0x1c,0xee,0x9d,0xfe,0x65,0xb8,0x2d,0xdc,0x12,0x0e,0x7c,0xab, +0x70,0xb0,0xab,0x11,0x97,0xc2,0x7d,0xc2,0x01,0xbd,0x85,0xfd, +0x1d,0x26,0xed,0xeb,0xa4,0xd1,0x61,0x1b,0xc3,0xd6,0x8f,0xbf, +0x1e,0x56,0x11,0x56,0x36,0x65,0x46,0x58,0x76,0x58,0x56,0x18, +0xf0,0x24,0x63,0xbc,0x61,0x8b,0xc2,0xe2,0xc3,0x62,0xc5,0x12, +0x61,0x11,0x61,0x21,0x61,0xc1,0x61,0x0b,0xc2,0xa6,0x85,0x0d, +0x0b,0x1b,0x1a,0xf6,0x55,0xd8,0xc0,0xb0,0x01,0x61,0xfd,0xc3, +0xfa,0x56,0xce,0x37,0xac,0xc5,0x8c,0xd6,0x61,0x8d,0x27,0xb4, +0x9a,0x39,0x38,0x1a,0xec,0x7d,0x98,0x46,0x92,0xf3,0x2f,0x43, +0xff,0x08,0x95,0x7c,0xd9,0xe8,0x2f,0x43,0xaf,0x85,0x5e,0x89, +0xee,0x11,0x7a,0x2e,0xf4,0x47,0x90,0x7f,0x24,0xf4,0x70,0xe8, +0xd1,0xf0,0xc6,0x53,0x80,0x5e,0x9a,0x00,0xbc,0xc0,0xb1,0xe1, +0xd1,0x58,0xe8,0xb7,0xa1,0xa5,0xd2,0x4e,0x01,0xbd,0x1b,0x9a, +0x19,0x9a,0x26,0xd5,0x07,0xb2,0x3c,0x74,0x01,0x18,0xb1,0xef, +0x8c,0xee,0xa1,0xc3,0x42,0xbf,0x0a,0xfd,0x32,0xb4,0x4b,0x68, +0xe7,0xc9,0x4f,0x42,0x2e,0x4c,0x1d,0x01,0xa4,0x30,0xa0,0x82, +0x29,0x6b,0x43,0x80,0x0d,0x32,0xd6,0x1e,0xb2,0x2d,0x64,0xd3, +0x98,0xd7,0x21,0x2b,0x42,0x96,0x85,0x2c,0x19,0x0b,0x3c,0xb5, +0xf1,0x60,0x97,0x42,0x12,0x43,0x16,0x86,0x24,0x84,0x00,0x2f, +0x2d,0x24,0x54,0x6c,0x2d,0x64,0xba,0x14,0x8e,0x0d,0x19,0x15, +0xf2,0x65,0x48,0xef,0x71,0x4b,0x43,0x3a,0x87,0xb4,0x09,0x69, +0x11,0xd2,0x28,0xc4,0x1a,0xd2,0x70,0xf2,0xa7,0x21,0xd2,0x29, +0x4f,0x88,0x3b,0xc4,0x2f,0xc4,0x16,0x62,0x0d,0x45,0x43,0xb8, +0x10,0x3c,0xc4,0x27,0x04,0x9a,0xf6,0x37,0x90,0xf9,0xc0,0xce, +0x0e,0x3e,0x1f,0x2c,0x59,0xeb,0xe3,0x07,0x07,0xcf,0x0d,0x9e, +0x1e,0x0c,0x24,0x7d,0xf0,0xb8,0x69,0xee,0xe0,0x6f,0xa6,0x49, +0x5c,0x1b,0x3c,0xa0,0x86,0x86,0x68,0x26,0x85,0x01,0xc1,0xf5, +0x82,0x3f,0x08,0xf6,0x0b,0x76,0x05,0x3b,0x83,0x1d,0xc1,0xf6, +0x60,0x6e,0x12,0x33,0x36,0x38,0x18,0xec,0x6b,0xd0,0x1f,0x93, +0x07,0x04,0x5d,0x97,0xf4,0xd8,0xc9,0x20,0xc0,0x39,0x41,0xbb, +0x83,0x76,0x05,0x6d,0x0f,0x02,0xd6,0xf2,0x94,0xc7,0x41,0x40, +0x16,0x06,0xa5,0xd4,0xfb,0x56,0xa5,0xaa,0x97,0xce,0x3f,0xe2, +0xef,0xf1,0x3f,0xd4,0x7d,0x5d,0xf7,0x21,0x3f,0xa8,0xb2,0xed, +0xba,0xfd,0xab,0x52,0xd2,0x37,0x1a,0xf0,0x14,0x95,0xca,0x2d, +0x79,0xa8,0xee,0x6c,0x95,0xca,0xe7,0x35,0x00,0x18,0xab,0x0f, +0x90,0x49,0xb5,0x80,0xcf,0x57,0xeb,0x2b,0x55,0x2d,0xdf,0x76, +0x72,0x79,0xdf,0xb9,0xbe,0xc0,0x4e,0xf2,0x05,0x72,0xd8,0x57, +0xea,0xdb,0xf7,0xaa,0xef,0x75,0x5f,0xa0,0x47,0x6b,0x42,0x0c, +0x7d,0x9f,0xfa,0x3e,0x57,0xbd,0xf7,0x0f,0xdc,0xbb,0xed,0xfb, +0xc4,0xf7,0x99,0xef,0x4b,0x5f,0xc9,0x2f,0xf7,0x7d,0xfd,0xd6, +0x5d,0x89,0x26,0x7d,0x9f,0xbc,0x53,0xe7,0xb6,0xaf,0xb4,0xff, +0x4a,0xf8,0x9b,0x2f,0xe0,0x61,0xdf,0xdf,0x41,0x2b,0x4f,0x7d, +0x5f,0xfa,0x61,0x7e,0xc0,0xbb,0x15,0xf1,0x7f,0xfb,0x93,0x46, +0x09,0xb4,0xbc,0xef,0x73,0xb1,0xe7,0x4a,0x80,0xf0,0xa5,0x12, +0xff,0x23,0x03,0xb4,0xf9,0xbe,0xda,0xaf,0xdf,0x1d,0xb3,0x3c, +0x62,0x79,0x5c,0x7e,0x43,0xfc,0x36,0xfa,0xed,0xe7,0x7d,0x79, +0xe0,0xbf,0xf2,0xe9,0x7c,0x2e,0x9f,0x2f,0xdf,0xe1,0xc1,0xaa, +0x8a,0x69,0xbe,0x5c,0xba,0x3a,0x0c,0x70,0x9c,0x07,0x16,0x21, +0x7f,0x92,0xbf,0xac,0x94,0xb8,0x28,0x87,0xfc,0x2f,0x95,0x39, +0x95,0x7f,0xfc,0x69,0xfe,0x8c,0x12,0x5f,0xe4,0xaf,0xf3,0xb7, +0xc1,0x6e,0x4a,0xa3,0x13,0x54,0x95,0xa1,0xa0,0x12,0x30,0x81, +0x10,0xc8,0xb7,0xfe,0xcb,0x24,0x21,0x42,0xcc,0x93,0xf3,0x41, +0x9a,0x12,0x8c,0x6f,0x95,0xa0,0x04,0x60,0xf9,0x08,0x46,0xc1, +0x2c,0x58,0x05,0xbb,0xe0,0x14,0xbc,0xe0,0xaa,0x4e,0xd5,0x5d, +0xe9,0x4a,0xa8,0x2b,0xd4,0x17,0x1a,0x08,0x2d,0x41,0xba,0xb5, +0x20,0x51,0x80,0xf0,0xb1,0xd0,0x4e,0x00,0x56,0xbe,0xd0,0x5e, +0xe8,0x08,0xc2,0x6e,0x82,0x64,0x45,0x80,0xb8,0x27,0x08,0x7b, +0x0a,0xc0,0x26,0x14,0xfa,0x09,0x80,0xce,0x84,0x11,0x22,0x84, +0x91,0x55,0xed,0x0d,0x91,0x42,0xe5,0xbb,0x41,0x61,0x40,0x25, +0xc4,0x1c,0x61,0xb0,0x30,0x4c,0x2e,0x2b,0x8c,0x14,0x80,0xee, +0x16,0x46,0x0b,0xe3,0x05,0xe9,0xb7,0x13,0x82,0xa4,0x6d,0xc0, +0xd5,0xc4,0xaa,0x76,0x46,0x4b,0x21,0x28,0x27,0x8c,0x15,0xa6, +0x2b,0x79,0xb3,0x85,0xb9,0x42,0xb0,0x10,0xfa,0xd6,0xec,0x66, +0xbf,0xf3,0x5f,0x37,0x27,0x0a,0x53,0x2b,0xcb,0xd7,0xc8,0x1d, +0xfb,0xd6,0xd5,0x10,0x61,0x58,0xf5,0x58,0xab,0x47,0x5b,0x75, +0xbf,0xb7,0x3c,0xb7,0x1a,0x39,0xf2,0x78,0xa7,0x2a,0x57,0xa0, +0x07,0x61,0x26,0x18,0x4d,0x70,0xd5,0xfd,0xf9,0x60,0x5c,0xd1, +0x42,0xba,0x00,0xa4,0xa0,0x00,0x68,0x40,0xc8,0x15,0x16,0x0b, +0x45,0xc2,0x12,0xa1,0x44,0x28,0x13,0xca,0x85,0xe5,0xc2,0x77, +0x20,0xef,0x3b,0x61,0xb5,0x20,0x7d,0x3b,0x2b,0x48,0xdf,0xd2, +0x09,0xab,0x65,0x48,0xe9,0x15,0xc2,0x46,0x10,0x6e,0xac,0x6a, +0x6f,0xbd,0xb0,0x51,0xd8,0x22,0x28,0xa7,0xe2,0x02,0x90,0x59, +0xc2,0x5e,0x11,0xc2,0x7e,0xe9,0x5a,0x3a,0x79,0x17,0x94,0xf3, +0x05,0xf9,0xaa,0xc6,0x58,0x37,0x01,0x6c,0x11,0x76,0xca,0xa5, +0x85,0xfd,0xc2,0x61,0xe1,0x34,0x88,0xcf,0x09,0x17,0x04,0xe0, +0x1f,0x0b,0xbf,0x08,0x55,0x74,0x07,0x72,0x40,0x5a,0xb8,0x0a, +0x70,0x47,0xf8,0xed,0xad,0x36,0x6e,0x0a,0x4f,0xfe,0xcd,0x13, +0xc2,0x75,0x90,0x7f,0x5b,0xb8,0x23,0x96,0x97,0xae,0xe5,0x74, +0x55,0x49,0xe1,0x81,0xf0,0xd4,0x2b,0xf1,0xa7,0x97,0xf0,0x02, +0x6a,0xf4,0x4a,0xdf,0x41,0x79,0x81,0x8f,0xe6,0xf5,0xf5,0xf2, +0x72,0x99,0xca,0xb8,0xea,0x8e,0xd3,0xeb,0xab,0x5c,0xb9,0xab, +0xca,0x80,0xd2,0x5e,0x40,0x97,0x32,0xbc,0xc0,0x83,0xf4,0x02, +0xbb,0xc6,0xeb,0x2f,0xc2,0x5b,0xe3,0xcc,0xc5,0x5b,0xc7,0x5b, +0x57,0x8e,0xa5,0xd0,0xfb,0x76,0xfb,0x5e,0xb7,0xd8,0x92,0xd2, +0xb2,0xd8,0x62,0x1d,0x6f,0x7d,0xaf,0x72,0x7e,0xe5,0xfd,0xa8, +0x46,0x2b,0x92,0x2d,0x29,0xf6,0x50,0xdd,0x56,0x65,0x6b,0xff, +0xfe,0xf3,0xb2,0x55,0x29,0xea,0xfd,0x25,0x84,0x97,0x35,0xd2, +0xcf,0x84,0x1a,0xd2,0x51,0xf8,0x5d,0x5c,0x2b,0xe1,0x89,0xf0, +0x54,0x50,0x3c,0xd4,0x9a,0x6b,0xf7,0xaf,0x76,0xae,0x2a,0x6b, +0x7e,0x5b,0xde,0x91,0x9a,0xb9,0xd5,0x3b,0xf8,0x6e,0x08,0xe2, +0x33,0x4a,0x7c,0x52,0x38,0xfd,0x56,0xd9,0x83,0x82,0x64,0x6d, +0x00,0x7a,0x38,0x2a,0x00,0x6f,0x5d,0xc2,0xe9,0xff,0x92,0x9e, +0x55,0xb4,0xb7,0x49,0xd8,0xf2,0x9e,0xbb,0x22,0x3d,0xaf,0x16, +0xd6,0x8a,0x74,0x2a,0x97,0x15,0x76,0x03,0x4a,0x3b,0x28,0x28, +0x67,0xad,0xa0,0x87,0x73,0xca,0xa8,0xce,0x09,0x17,0x85,0xab, +0x22,0xdd,0x54,0xce,0x42,0x9e,0xc9,0xdb,0xb3,0xaa,0x6a,0xf7, +0x17,0x25,0xae,0xfa,0x96,0xba,0xba,0x1d,0x19,0xef,0x1d,0xeb, +0xee,0x1a,0xe9,0xf7,0x8d,0x76,0x39,0xe0,0xaf,0xd5,0x6f,0x73, +0x9c,0x72,0xa7,0xec,0x3f,0x5a,0x4c,0x05,0xbc,0x0c,0xe4,0xb8, +0x20,0x9d,0x47,0x0b,0x4b,0xde,0xb9,0x9b,0x29,0x48,0xfe,0xb3, +0x18,0x0a,0x92,0x45,0x0c,0x78,0x5c,0xe4,0x6e,0xe5,0xb7,0x06, +0x32,0x1f,0xcb,0x1c,0x2c,0x73,0x6c,0xe5,0x18,0x01,0x57,0xee, +0x06,0x7c,0xf9,0x1f,0xab,0x0e,0xee,0x8a,0x9c,0x7a,0xba,0x72, +0x07,0xc5,0xbd,0x14,0x67,0x5f,0xb9,0xb3,0xd5,0xfb,0x25,0x1c, +0x17,0x4e,0x2a,0x71,0x55,0x5b,0x72,0x9e,0x58,0xbb,0xe6,0x3a, +0x89,0xbb,0xfc,0x76,0xed,0xca,0x9a,0x6f,0xf5,0xbc,0xb7,0xe6, +0xce,0x4b,0xf2,0x66,0xf7,0x5b,0x63,0xde,0x5f,0x2d,0x71,0xaa, +0xa9,0x47,0x4c,0x57,0x53,0x57,0xd5,0xfd,0x4a,0xb9,0xa4,0xc8, +0x2a,0x91,0x26,0x84,0xeb,0x4a,0xde,0xe5,0x9a,0xfb,0xac,0x50, +0xc6,0x9d,0x6a,0xf9,0x52,0x29,0x55,0x84,0x7b,0xc2,0x6f,0x55, +0xbc,0xf2,0xba,0x92,0x15,0xbd,0x55,0x1e,0x8f,0x57,0xe5,0x85, +0xfe,0x93,0x72,0x1f,0x80,0xba,0x80,0xd3,0xaa,0xf9,0x10,0x48, +0x25,0x50,0xde,0x8b,0x48,0x32,0x89,0xf2,0x32,0x5e,0xbd,0x57, +0xd2,0x90,0x4a,0x08,0xae,0xbc,0xca,0xef,0x4a,0xbc,0xd6,0xb7, +0x39,0xdd,0xab,0x97,0xee,0x9b,0x2b,0xf3,0xab,0x65,0x8a,0x74, +0x65,0x17,0x01,0x24,0x18,0x2f,0xcb,0x10,0x70,0x55,0xb7,0x2a, +0xd5,0x40,0x94,0x35,0xde,0x46,0xde,0x26,0xa2,0xac,0xf1,0xb6, +0xf6,0x7e,0xfc,0x96,0x14,0x11,0xf3,0x5a,0x7a,0x5b,0x83,0xb0, +0xbd,0xb7,0xb3,0x94,0xd3,0x51,0x89,0x3b,0x7b,0xbb,0x7a,0x7b, +0x54,0x95,0x93,0xf3,0xba,0x7a,0xbb,0xd5,0xa8,0xdb,0xb5,0x12, +0xde,0x9e,0x35,0x72,0xa5,0x3a,0x95,0xe5,0xc4,0xfb,0x35,0xee, +0xd5,0xe8,0xdb,0xdb,0x5e,0xea,0xab,0x87,0xb7,0x97,0x17,0xd8, +0xe2,0xde,0x41,0x5e,0x45,0xf7,0x81,0x94,0xa4,0x0d,0xbd,0x43, +0xbc,0x40,0xa3,0x7b,0x47,0xfe,0xb7,0x5d,0x25,0xd7,0xf5,0xf6, +0x93,0xcb,0x78,0x95,0xdf,0xa3,0x89,0xb5,0xa5,0xf7,0xb8,0x4d, +0xf4,0xce,0xf6,0xce,0xf7,0x06,0x7b,0x25,0x2d,0xed,0x0d,0xf7, +0x46,0x7b,0x17,0x7a,0xe3,0xaa,0xea,0x46,0x2b,0x71,0x38,0x40, +0x64,0xcd,0x2b,0x29,0x0e,0x95,0x53,0x62,0x5d,0x6f,0x95,0x96, +0xf7,0xce,0x57,0x72,0x16,0x2a,0xd7,0x91,0xd5,0x75,0x2a,0x4b, +0x79,0x03,0xbd,0xc1,0xd5,0xe5,0xbd,0x81,0x4a,0x6a,0xee,0xff, +0x6e,0x25,0x7a,0x25,0x4b,0x1c,0xcc,0x46,0x89,0x95,0xdc,0xde, +0x5e,0xc5,0x53,0xf1,0xf6,0xaa,0x2a,0xd9,0x4d,0x4e,0x57,0xae, +0x7a,0xd5,0x5a,0x2b,0x3b,0x26,0xe6,0xcb,0xf5,0xa5,0x95,0xed, +0x07,0x56,0xb2,0xea,0xf7,0x33,0xf2,0x3a,0xcb,0x6b,0xad,0x84, +0x83,0x2a,0x7b,0xf7,0x0e,0xa8,0xce,0x01,0xe5,0x86,0xd5,0x1c, +0x9b,0x77,0xb0,0xb8,0xca,0x32,0xbc,0xa3,0xbd,0xc0,0x8a,0xf1, +0x8e,0xf5,0x8e,0x07,0xe1,0x44,0xef,0x54,0xef,0x74,0xef,0x4c, +0x90,0x9a,0x2d,0xad,0xcf,0xfc,0x1a,0xb5,0x66,0x8b,0xf3,0x06, +0xab,0x10,0x59,0xbd,0x62,0xf2,0x4a,0x57,0xae,0x77,0x8d,0xb2, +0x81,0x32,0x2a,0x5b,0xf0,0xce,0xad,0x6e,0xc9,0x3b,0x53,0x6a, +0x39,0x4e,0x84,0x37,0x11,0x84,0xa9,0xde,0x4c,0xaf,0x24,0xf7, +0xbc,0x8b,0xdf,0x6a,0x23,0xb3,0x2a,0x25,0xfd,0x6a,0xc5,0x5b, +0xa4,0x5c,0x29,0x52,0xb3,0xba,0xb4,0x37,0x5b,0xae,0x5f,0x99, +0xaa,0xbc,0xe3,0xcd,0x95,0xeb,0xd4,0x6c,0x57,0x6c,0x55,0xec, +0xcf,0x9b,0x2f,0xe6,0x7a,0x4b,0x44,0x78,0x25,0x69,0xed,0x2d, +0xf3,0x96,0x7b,0xa5,0xdf,0x30,0x7b,0xbf,0xf3,0x02,0x69,0xee, +0xad,0xb2,0x9a,0xbc,0xab,0xbd,0x8a,0x04,0x06,0x77,0xaa,0x52, +0x0a,0xc4,0x92,0x6b,0xbd,0xeb,0x2b,0x4b,0xd6,0xac,0x21,0x97, +0x95,0x53,0xde,0xf5,0x62,0x7b,0x12,0xb6,0x79,0x77,0x7b,0xf7, +0xbf,0x87,0x62,0x36,0x7a,0xb7,0x80,0x7b,0xc0,0x8b,0x02,0xf7, +0xf7,0x7a,0x0f,0x7a,0x8f,0x7a,0x4f,0x7a,0x15,0x89,0xed,0x3d, +0x29,0x43,0x4a,0x4b,0xb2,0xd1,0xab,0x68,0x44,0xb9,0x25,0xef, +0x61,0x31,0xd7,0x7b,0xf4,0x3d,0xad,0x4a,0x2d,0x4a,0xa9,0xed, +0xde,0x9d,0x5e,0x49,0x1e,0x83,0xd6,0xf7,0x57,0xd6,0xf5,0x1e, +0x94,0xa1,0x5c,0xed,0xaf,0xbc,0x7a,0x4f,0x4b,0xeb,0xe5,0xf0, +0x7d,0xeb,0x02,0xd2,0x2b,0x94,0x78,0xb9,0xf7,0x2d,0x4d,0xe8, +0x2d,0xab,0xdc,0x35,0xb1,0x84,0x77,0x85,0xf7,0xbb,0x77,0x57, +0xaf,0xaa,0x64,0xb9,0xbc,0xbe,0x62,0x3f,0xa0,0x97,0x4d,0x6f, +0xf7,0xfb,0x6e,0x9b,0xe2,0x6e,0xbd,0xa7,0x17,0x69,0x07,0xc1, +0x18,0x56,0x54,0x8e,0x49,0xe9,0xb5,0xaa,0x1f,0xe9,0xfe,0xc6, +0x1a,0xad,0xaf,0xad,0xee,0xa1,0x7a,0xbf,0xaa,0xe7,0x24,0xd6, +0x55,0xf2,0x57,0xd7,0xdc,0xd7,0xb7,0x50,0xa3,0x7e,0x75,0xed, +0xca,0x91,0xc9,0x23,0x92,0x51,0x95,0x5b,0xa2,0xcc,0xa2,0xbc, +0x72,0x0d,0xa4,0x59,0x03,0x0a,0x00,0xe1,0xce,0xca,0x5d,0x95, +0xf2,0x25,0x5d,0x59,0xb5,0x87,0x92,0xf5,0xe4,0xdd,0x52,0x23, +0xdc,0xf4,0xd6,0xee,0xbc,0x33,0xf6,0x77,0xe7,0x5e,0xb9,0xfe, +0x55,0xeb,0xad,0xe4,0x54,0xe7,0xd6,0xdc,0xb1,0xaa,0x9c,0xa2, +0x77,0xe6,0x94,0x59,0x23,0x2d,0x71,0xb0,0x94,0x4a,0x96,0x78, +0x59,0xe6,0xd5,0xd4,0xea,0xbb,0x35,0xca,0x8a,0x32,0x3b,0xe1, +0x3d,0x94,0x15,0x5c,0x8d,0x9a,0x92,0xf9,0x3f,0x65,0xeb,0xc4, +0xf7,0xe6,0x2a,0x9e,0x55,0xa5,0xac,0x7d,0x57,0x87,0xbd,0x93, +0xd7,0x5a,0x89,0x9b,0x8b,0x00,0x3a,0xf3,0x63,0x59,0xa3,0x79, +0xdb,0xbd,0xab,0x4f,0x41,0x08,0x74,0xad,0xac,0x4f,0x65,0xbd, +0x29,0x6b,0xbb,0xaa,0x32,0x2d,0x2b,0xdb,0xaa,0x91,0x57,0xe5, +0x4d,0x78,0xeb,0xbe,0x73,0xc7,0xad,0xf8,0x21,0x75,0x2a,0xfd, +0x0c,0xe0,0x3d,0xf8,0xd7,0xd4,0xe9,0xef,0x94,0xaf,0xf3,0x76, +0x0b,0x5e,0x77,0x55,0xca,0xea,0x75,0xfe,0x97,0x0f,0x21,0x7a, +0x4a,0x35,0xfc,0xa5,0x2a,0xcf,0xde,0x4b,0x7a,0x59,0x60,0x95, +0x58,0xbd,0xf6,0xff,0xaa,0x57,0x95,0x07,0xc9,0x56,0x91,0x68, +0xdf,0x80,0x10,0xf3,0xbe,0x75,0x3a,0x20,0xde,0x93,0x21,0xfd, +0xbf,0x5e,0xe9,0x1b,0x13,0x39,0xac,0x6c,0x4d,0xb6,0x7d,0x80, +0x0d,0xe3,0xfe,0xb7,0x1f,0x56,0xd5,0x8a,0x59,0x9a,0x85,0xbd, +0x7a,0x4e,0x62,0x9e,0x6c,0x13,0x79,0xcd,0xd5,0x96,0x54,0x8d, +0xbb,0x64,0x75,0x3f,0x95,0x73,0xac,0x1e,0x71,0x0d,0x5b,0xed, +0x1f,0x69,0x6c,0xd8,0xff,0x70,0xb7,0xe6,0xf5,0x4b,0xe1,0xb5, +0x98,0x27,0xfc,0xf3,0x5e,0xbb,0xaf,0xd2,0x62,0x7c,0xf6,0xb6, +0xc7,0x05,0x2c,0xc8,0xe7,0x95,0x76,0xe0,0x5b,0xe5,0xef,0x55, +0x7b,0xbb,0xd5,0x3e,0xd7,0xfb,0xfc,0x2c,0x60,0xa7,0xd6,0xf0, +0x9a,0xdf,0xb5,0xc5,0xab,0xbc,0xab,0xc3,0xef,0x5a,0xf3,0x6f, +0x5d,0x6d,0xac,0xf4,0xa4,0x84,0x4d,0xef,0x94,0x5b,0x21,0xfb, +0x28,0xd5,0x3e,0x89,0x50,0x2e,0xfb,0x14,0x35,0x73,0xa5,0x9c, +0x12,0x29,0xaf,0xbc,0xa6,0xef,0xa2,0xf8,0x1f,0x4b,0xde,0xf6, +0x66,0xc4,0xb3,0x87,0x77,0x7d,0x16,0x05,0xb9,0x95,0xa8,0xae, +0x59,0xd3,0x0b,0x12,0x14,0x19,0x22,0x79,0x3f,0xf9,0xc2,0x62, +0xb1,0x84,0xa0,0x7c,0x53,0x0d,0x52,0x95,0x63,0x2b,0xab,0x1c, +0xa9,0x7c,0xa6,0x51,0x89,0x9a,0xfe,0x61,0xcd,0x71,0x57,0xb7, +0xad,0x9c,0x8a,0x94,0xff,0x6b,0x35,0x17,0xcb,0x50,0xae,0xb2, +0xc1,0xf8,0xde,0x92,0x66,0xd5,0xe3,0xae,0x9e,0x8f,0x14,0x2b, +0xbf,0x94,0x15,0x92,0x6b,0xa6,0x45,0xff,0x4d,0x6e,0xa5,0xca, +0x63,0xcb,0xae,0xf6,0xed,0xde,0x6a,0x57,0xb2,0x4d,0x85,0x85, +0x42,0x9c,0x00,0x24,0x9e,0x90,0x20,0x24,0xca,0x6d,0xfd,0x6b, +0x7c,0xef,0xc8,0xb9,0xca,0x73,0x27,0x61,0xba,0x9c,0x92,0xce, +0x83,0x42,0x85,0x48,0x21,0x5a,0x6c,0xb1,0x0a,0xc9,0x62,0x6f, +0xd2,0x58,0xd2,0xab,0x3c,0xcb,0x1a,0x52,0x59,0x48,0x14,0xcf, +0x8c,0xc0,0x38,0xe5,0x53,0xa2,0x15,0x8a,0x67,0xfd,0x9d,0xec, +0xa5,0x82,0x58,0xf1,0xb0,0x6b,0x52,0x8b,0xbc,0xb6,0x95,0x65, +0x2a,0xd7,0x5a,0xf6,0x70,0xdf,0xa6,0x27,0xa9,0xbd,0x15,0x95, +0x7b,0x21,0xb7,0x2e,0xf9,0xc0,0x6b,0xdf,0x6e,0x53,0xb9,0x5f, +0xfe,0x0e,0x0d,0x95,0xc9,0x23,0xaa,0x79,0xbf,0x72,0x94,0xff, +0xa2,0xcc,0x77,0xe8,0x4d,0xda,0xbf,0xfc,0xca,0x3c,0x61,0xf1, +0xff,0x64,0x81,0x83,0x15,0x5b,0xa8,0xec,0x40,0xa2,0xb4,0x22, +0xa9,0x35,0x76,0x37,0xb5,0x12,0xd5,0x6b,0x58,0xbd,0x7f,0x60, +0xb7,0x92,0x6b,0xee,0x96,0xbc,0xea,0x42,0xfa,0x7b,0x7b,0x09, +0x17,0x22,0x6b,0xee,0xa5,0xbc,0x57,0x6f,0x95,0x08,0x14,0x51, +0x7d,0xa6,0x57,0xb9,0xc7,0x82,0xe2,0x45,0x08,0x33,0x2b,0x77, +0xbc,0xf2,0x0c,0xb0,0xea,0x34,0x70,0xb6,0x72,0x3a,0x39,0xbf, +0xb2,0xbe,0x4c,0x2d,0xd5,0x3d,0x56,0x9d,0x12,0xbe,0xd5,0x7e, +0x25,0xdd,0xbc,0xd3,0xfe,0x54,0x85,0xae,0x66,0xd6,0xe8,0x4d, +0x3c,0x6f,0x94,0xc6,0xf1,0xd6,0xf8,0xe6,0x8a,0xe7,0x8e,0x62, +0x1e,0x98,0x4d,0xf8,0x5b,0xad,0xbe,0x33,0x66,0x90,0x9a,0x5c, +0x1d,0xfe,0xc7,0x3e,0x48,0xfa,0x58,0xe8,0x2b,0x9f,0xd8,0xca, +0xd7,0x42,0xbf,0xea,0x73,0xdc,0xca,0xb3,0x51,0x19,0x52,0xba, +0x67,0x75,0x08,0xe2,0x5e,0xff,0xd9,0x72,0x4b,0xa1,0x4a,0xf3, +0x0a,0x40,0x73,0x0a,0xcd,0x65,0x54,0xe5,0x49,0x5a,0x58,0xf0, +0x7f,0xab,0x8e,0x78,0x2e,0xed,0x15,0xcf,0xa9,0x2b,0xcf,0xaa, +0xa5,0x74,0xfd,0x1a,0x25,0x6a,0xde,0x93,0x34,0x96,0xe0,0x2b, +0xd4,0xad,0x6c,0x45,0xa8,0x2b,0x42,0xa8,0x2f,0x5e,0xcb,0x79, +0x82,0xbf,0xd8,0x8f,0xa0,0x68,0x7c,0xb1,0x25,0x19,0x20,0xbf, +0x51,0x8d,0x56,0xeb,0xca,0xa1,0x78,0x1e,0x5e,0x3d,0xaa,0xca, +0x7e,0xe5,0xfe,0xc0,0xb8,0xea,0xbf,0x3d,0x06,0xa1,0xee,0x7b, +0xe7,0x6d,0xae,0x91,0x66,0xfe,0x37,0x4f,0x94,0x57,0xce,0x02, +0xf9,0xdf,0xfe,0x87,0x32,0xe7,0x00,0x2e,0xc8,0xf8,0xd7,0xbd, +0xc3,0xbc,0xe2,0x57,0xf0,0x07,0xf9,0xb7,0x74,0x11,0xbf,0x9b, +0xaf,0xb2,0x53,0xf9,0xb7,0xb4,0x12,0xbf,0x91,0xdf,0x24,0xc7, +0x00,0xdb,0x64,0x48,0xd7,0x9b,0xf8,0xed,0xef,0x94,0xdc,0xc4, +0xbf,0x75,0xb2,0xc6,0xaf,0xe5,0x81,0xbc,0xe7,0xff,0x65,0xf3, +0x2b,0xdf,0x7c,0x94,0xf1,0xcb,0x6b,0x5c,0x95,0xd7,0xbc,0xaa, +0x51,0xb6,0xc6,0xb7,0x26,0x55,0x79,0xc9,0x7c,0xea,0xbf,0xda, +0x8c,0xe6,0x17,0xf2,0xca,0x19,0x02,0x48,0x25,0x54,0xa6,0x94, +0x7b,0x95,0xd7,0x52,0xcc,0xc7,0xbd,0x55,0x33,0x94,0x0f,0xe7, +0x13,0xaa,0xdb,0x51,0xe2,0xf0,0xaa,0xbb,0x91,0x72,0x0d,0xb9, +0x96,0xd2,0xe2,0xc2,0x77,0x5b,0x00,0x61,0x64,0xcd,0x7a,0xca, +0x1d,0x85,0xc7,0xf8,0x99,0x72,0xc8,0x2b,0x7c,0xcc,0xcf,0xfe, +0xbf,0x7e,0x43,0xc5,0xf7,0xe2,0x7b,0xf3,0x0a,0x87,0xf1,0x7d, +0xe5,0x14,0xdf,0x8f,0x1f,0xc0,0x0f,0xe6,0x27,0xf3,0xd3,0xf9, +0xd9,0xfc,0x7c,0x69,0x7c,0x35,0xfa,0xae,0x39,0x02,0x3e,0xb0, +0x6a,0x74,0xe1,0x4a,0x19,0xa5,0x24,0x1f,0xc9,0x47,0xbf,0xb7, +0x3f,0x79,0xa4,0xd3,0xff,0x63,0x34,0x43,0xf8,0x11,0xbc,0x74, +0xa6,0xa3,0x84,0x23,0xaa,0xee,0x0c,0xab,0x4e,0x83,0xab,0x41, +0x32,0x40,0x38,0x40,0x19,0xf1,0xa0,0xb7,0xf3,0x6b,0xde,0xab, +0x4c,0x4b,0x90,0xce,0x39,0x94,0x70,0x50,0x0d,0x0c,0xae,0x6c, +0x59,0xee,0x49,0x1e,0x07,0x2f,0x79,0x0f,0x7c,0x0d,0x1f,0x82, +0x1f,0xc9,0x8f,0x06,0xe1,0x58,0x05,0x13,0x2b,0x01,0xd6,0x3e, +0x90,0x0f,0x7e,0x9b,0x52,0xaa,0xa8,0x23,0x4e,0xa6,0x32,0x3e, +0x57,0xa6,0x34,0xe9,0xdb,0x39,0xa0,0x8f,0xf8,0x25,0x3c,0xb0, +0x4a,0xf8,0x15,0xff,0xcb,0x0e,0x25,0xff,0x8f,0x77,0x67,0xd7, +0xa4,0x85,0x9a,0x78,0x6f,0xe9,0x1a,0x6b,0x2b,0xad,0xe9,0x68, +0x71,0x8f,0x41,0xea,0x2d,0x8d,0x00,0xf6,0x3c,0xb0,0x66,0x8e, +0x54,0x62,0x36,0x3f,0x97,0x9f,0x5f,0xb3,0x9f,0xff,0xa2,0x33, +0x69,0x7d,0x46,0x57,0x5d,0x8d,0xe0,0xdf,0x3a,0xc7,0x93,0xd7, +0x9b,0xaf,0xfa,0xb6,0x0b,0xd0,0x99,0xb4,0xe7,0xfc,0x78,0x90, +0x1e,0xaf,0xac,0xf7,0x78,0x29,0x1c,0x2b,0xb7,0xc6,0x8f,0x7d, +0x4f,0x1f,0x03,0x2a,0x29,0xb6,0x46,0x5e,0x4f,0x40,0xcb,0x7d, +0xdf,0xc9,0xeb,0xc1,0xf7,0xac,0x4c,0x29,0x71,0x57,0x11,0xfc, +0x3b,0x5e,0x1e,0xdf,0xae,0x3a,0x96,0xa0,0xf8,0x6c,0x7c,0x7b, +0x5e,0x39,0xc5,0xe4,0x3b,0x56,0x95,0xfd,0x58,0x2e,0xcd,0xb7, +0xfb,0xd7,0xa8,0x24,0x19,0xce,0x37,0xe0,0x9b,0xf0,0x1f,0xf1, +0x1f,0x57,0xb6,0x28,0xb7,0x25,0xd6,0xe7,0x3b,0xf2,0x9d,0xf9, +0x6e,0x60,0x4c,0xbd,0x64,0xce,0x53,0xd0,0x57,0x5c,0x0f,0x7e, +0x88,0x4c,0xed,0xf2,0xea,0x55,0xd2,0xd7,0x5b,0x2b,0x39,0xac, +0x26,0x3f,0xbc,0xd5,0x6f,0x6f,0x79,0xce,0x7c,0xef,0xca,0xd9, +0x57,0xe6,0xc8,0x3d,0x54,0x86,0x52,0xaa,0x5b,0xe5,0x2a,0xfc, +0x1f,0x64,0x43,0x1d,0xbe,0x2e,0x2f,0x69,0x19,0x10,0x4b,0x3a, +0x88,0xaf,0xcf,0x37,0x51,0xee,0x49,0x9a,0x89,0xf7,0x17,0x63, +0xbe,0x11,0xdf,0x92,0x6f,0xcd,0xd7,0x38,0xe1,0xe5,0x6b,0xf8, +0xa6,0x62,0x4d,0xde,0xbf,0xba,0xcd,0x7f,0x85,0xde,0xca,0x90, +0x7f,0xeb,0xfb,0x2e,0xde,0xce,0x4b,0x3e,0x2b,0xaf,0x78,0xae, +0xbc,0x93,0x97,0xbc,0x43,0x1e,0x78,0x80,0xbc,0xef,0xff,0x30, +0x6a,0x92,0x7f,0xe7,0x5b,0x31,0x1e,0x92,0x21,0x7d,0xcf,0x2e, +0x7f,0xdb,0xfe,0xda,0xef,0xbd,0xfe,0x9b,0x5f,0x95,0xde,0xf3, +0xbb,0xe3,0x77,0xef,0xbf,0x7a,0xf0,0x3b,0xe7,0x77,0xc1,0xef, +0xa2,0xdf,0xf5,0xb7,0xf2,0x2e,0x8a,0xf0,0xfb,0xa5,0xf2,0xaa, +0x32,0xa5,0x5c,0xd7,0xf0,0xd3,0xfc,0x80,0x5e,0xf4,0x3b,0x5e, +0x7d,0x25,0xa6,0xe5,0x6b,0xbf,0x93,0x62,0x39,0x3f,0xa0,0x5f, +0xfd,0x2e,0xbc,0xb7,0xdf,0x83,0x32,0x40,0xf8,0xaf,0x33,0x41, +0x3f,0xa0,0x35,0xfd,0xb6,0x57,0x5d,0x6d,0x12,0x21,0xe5,0x6d, +0xab,0xce,0x7d,0x4f,0x8b,0x65,0x7e,0xe5,0xef,0xcd,0x07,0xb6, +0xaf,0x9f,0xa4,0x11,0xfd,0xb2,0xfd,0x72,0xab,0x72,0xab,0xac, +0x5a,0xbf,0x64,0x3f,0xa0,0x21,0xfd,0x52,0xfd,0xd2,0xfd,0xf2, +0xfd,0x16,0xfb,0x01,0x2f,0xc9,0x6f,0xb9,0xdf,0x7f,0xca,0xb1, +0xca,0x16,0xfc,0x32,0x95,0x36,0x33,0x6b,0xf6,0x53,0xd9,0xae, +0xdf,0x3b,0x3a,0xd7,0x2f,0xda,0x6f,0xaf,0xdf,0x7e,0xbf,0x93, +0xd2,0xba,0x9c,0xf1,0xbb,0xec,0xf7,0x5c,0xdc,0x37,0x5e,0x0d, +0xf6,0x12,0xf8,0xea,0x3c,0xc1,0x33,0x22,0x3d,0x02,0x74,0x56, +0xf8,0xa8,0x4a,0xba,0xab,0x6a,0xfd,0x7f,0x7e,0xbe,0x51,0x0d, +0x51,0x8d,0x04,0xf1,0x28,0xd5,0x68,0xd5,0x18,0xd5,0x04,0x55, +0x1b,0xd5,0xd7,0xd0,0x49,0x28,0x46,0x95,0xad,0x4a,0x50,0x4d, +0x52,0xe5,0xa8,0xb2,0x54,0xb9,0xaa,0x30,0x68,0x0f,0xb4,0x51, +0x55,0xa0,0x5a,0x0c,0x45,0xa9,0x0a,0x7d,0x08,0xd5,0x2c,0x55, +0xb4,0xaa,0x48,0x95,0xac,0x5a,0xa0,0x2a,0x56,0x2d,0x51,0x2d, +0x55,0x05,0xab,0x4a,0x54,0xa5,0xaa,0x32,0xd5,0x32,0x55,0xb9, +0xaa,0x42,0x15,0x0f,0x7d,0xaf,0x4a,0x54,0x6d,0x55,0x6d,0x53, +0xfd,0xa0,0xda,0xae,0xda,0xa1,0xda,0xa9,0xca,0x54,0xed,0x52, +0xed,0x56,0xed,0x51,0xed,0x55,0xed,0x53,0xed,0x57,0xa5,0x40, +0x9b,0x54,0xe9,0xaa,0x45,0xaa,0x34,0x55,0x92,0x2a,0x43,0x75, +0x45,0x75,0x43,0x75,0x4d,0x75,0x4b,0x35,0x42,0x35,0x4c,0x15, +0xa6,0x0a,0x51,0x7d,0x02,0x3e,0x21,0xaa,0x50,0xd5,0x50,0x70, +0x75,0x5d,0x15,0xae,0x8a,0x50,0x45,0xaa,0xa2,0x54,0x31,0xaa, +0x58,0xd0,0xe7,0x42,0xd5,0xaf,0xd0,0x3c,0x28,0x53,0x45,0xa9, +0xa6,0x83,0x4f,0x1c,0x94,0x01,0xe5,0x4a,0xf5,0xe6,0xaa,0x26, +0xaa,0xe6,0xab,0xe6,0xf9,0x60,0x3e,0xb8,0x6a,0x0e,0x54,0x00, +0xe5,0xab,0x26,0xab,0xa6,0x40,0x97,0xdd,0xd3,0xdc,0x53,0x5d, +0x73,0x54,0x37,0xa1,0x6b,0xd0,0x75,0xe8,0x2a,0x74,0xc3,0x3d, +0xdb,0x3d,0xc7,0x3d,0xcb,0xf5,0x99,0xab,0x87,0xab,0xa7,0xab, +0x3b,0xf4,0x17,0xf4,0x07,0xf4,0x1c,0xba,0xe5,0x38,0x04,0x6d, +0x50,0xcd,0x82,0xfe,0x86,0xde,0x40,0x3b,0x1c,0xc7,0xa0,0xa7, +0xd0,0x43,0xe8,0x37,0xe8,0x01,0x74,0xdf,0xa7,0x96,0x0f,0xe4, +0xf6,0x71,0x1c,0x84,0x76,0xfa,0xa8,0x54,0x23,0xa1,0x7f,0xa0, +0x2d,0xd0,0x0b,0x77,0x33,0x77,0x73,0x77,0x4b,0x77,0x0b,0x77, +0x27,0x77,0x67,0x77,0x17,0x77,0x13,0x77,0x63,0x77,0x23,0x77, +0x43,0x77,0x03,0x77,0x80,0xdb,0x1f,0xfa,0x09,0xba,0xe0,0xfa, +0x1c,0xfa,0x19,0xba,0x08,0x5d,0x82,0x7e,0x81,0xce,0x43,0xe7, +0xa0,0xb3,0xd0,0x19,0x77,0x5b,0x77,0x3b,0x77,0x7b,0xf7,0x27, +0xd0,0x69,0xe8,0x94,0xdb,0xee,0x76,0xb8,0x6d,0x6e,0xa7,0x9b, +0x73,0x7d,0xe1,0xea,0xe3,0x36,0xb8,0x7a,0xbb,0xf5,0x6e,0xa3, +0xab,0x17,0xb5,0x96,0x8d,0x60,0xbf,0xa5,0x5a,0x53,0x3f,0x68, +0x9b,0xc0,0xf5,0xd4,0xab,0xdd,0xeb,0xe8,0x37,0x4c,0x2d,0xb8, +0x29,0x83,0x90,0x47,0x18,0x8a,0xe0,0x98,0xa9,0xe4,0x39,0x6d, +0x3b,0x66,0x01,0x13,0xc1,0xc4,0x32,0x69,0x4c,0x36,0xf9,0x15, +0x9d,0xc5,0xec,0x67,0x8e,0x31,0xc7,0x99,0x1f,0xf1,0x2e,0x54, +0x20,0xf3,0x0b,0x73,0x8d,0xb9,0x43,0x2d,0x41,0xd7,0xe8,0x26, +0x90,0x7d,0xb1,0x7c,0xdd,0x16,0xdd,0x56,0xda,0xab,0xe9,0x82, +0x87,0x61,0x45,0x2c,0x45,0x74,0xc1,0x33,0x59,0x2f,0x5b,0x87, +0x6d,0x84,0x85,0xb1,0x13,0xd1,0xad,0x68,0x30,0x72,0x18,0x7e, +0x04,0x7a,0x8c,0x62,0x73,0xd8,0x3c,0xb6,0x08,0x99,0xc3,0xae, +0x62,0xd7,0xe0,0x2f,0xb9,0xf6,0x68,0x18,0x6e,0xc4,0x96,0x71, +0xbb,0x29,0x8c,0xec,0x82,0x1c,0xa5,0x3e,0xe3,0xae,0x92,0x67, +0xf4,0x24,0xda,0x91,0xba,0x8d,0xb6,0xc1,0x56,0xea,0x6f,0xe9, +0x9f,0xea,0x9f,0x6b,0xe7,0x53,0x57,0xb0,0x55,0x06,0x88,0xa8, +0x07,0xf7,0xd2,0xbc,0xd4,0x9e,0x35,0xdc,0x34,0xdc,0xa6,0x7c, +0x5d,0x0e,0x24,0x06,0x1d,0x80,0x4e,0x45,0xf6,0xaa,0x2f,0xc1, +0x57,0x91,0x5a,0xc4,0x60,0xba,0x15,0xf9,0xb1,0x36,0xcb,0x98, +0xa5,0xad,0xa3,0x0d,0xc2,0x02,0xa9,0x3b,0xd4,0x1e,0xea,0x35, +0x31,0x13,0x3b,0x03,0xf7,0x41,0xdb,0xd1,0xd3,0x34,0x79,0x94, +0x11,0x5b,0x87,0x60,0x66,0x8e,0x6e,0xa3,0x3e,0x42,0x5f,0xc2, +0xce,0x9a,0xdb,0x60,0xe7,0xcc,0x7d,0xc8,0x53,0x04,0x8e,0x9d, +0xc7,0x36,0xa9,0x7f,0x24,0x62,0x89,0x32,0xbc,0x39,0xe6,0xc1, +0x1f,0x9a,0xd7,0x5a,0x3e,0xd7,0xac,0x40,0xdb,0xa3,0xb7,0xd5, +0xa5,0x96,0xfb,0xe8,0x50,0x78,0x15,0x3a,0x53,0x33,0x8e,0x0c, +0xb6,0xf6,0xb3,0x0e,0x84,0xe3,0x89,0xf9,0xc4,0x73,0x8d,0x96, +0xa0,0x70,0x88,0xa0,0x35,0x23,0x68,0x5f,0xf2,0x5b,0xed,0x48, +0x7a,0x22,0x72,0x51,0x73,0x96,0xfa,0x43,0x7b,0xd9,0x76,0xc8, +0x76,0x44,0x7d,0xcc,0xf3,0x97,0x36,0x86,0xba,0x00,0x6f,0xb0, +0xfb,0xd8,0x61,0xb8,0x15,0x65,0xd2,0xde,0xd5,0x2e,0xc4,0x1f, +0xe1,0x2e,0xf4,0x0f,0x2d,0x8c,0x51,0xe8,0x53,0xfb,0x44,0x7b, +0x90,0x3d,0xc2,0x1e,0x89,0xf4,0x44,0x32,0x34,0xe7,0xed,0xcf, +0xb0,0x9f,0x1d,0xb5,0xa8,0x14,0x3e,0x05,0x19,0x8f,0xa1,0x0e, +0xa3,0xc3,0x42,0x3a,0xd1,0x14,0xe2,0x84,0x36,0xcd,0xe1,0x71, +0xf8,0xd2,0xc1,0x8e,0x06,0x8e,0x86,0x80,0x0a,0xe7,0x43,0x0b, +0xa0,0x24,0xf7,0x4c,0x28,0x05,0x4a,0x85,0xd2,0xa0,0x2b,0xd0, +0x4d,0xa8,0x04,0x2a,0x85,0x72,0x1c,0x9b,0x1c,0x9b,0x5d,0xf3, +0xa1,0x08,0x28,0x12,0x5a,0x04,0x25,0xba,0xe7,0xb9,0xe7,0xbb, +0x17,0xb8,0x03,0xa1,0x60,0x28,0x1d,0x8a,0x87,0x12,0xdc,0xb0, +0x63,0xb7,0x63,0x8f,0xeb,0x84,0xeb,0x98,0xeb,0x8c,0xeb,0x47, +0x37,0xe9,0x3a,0xee,0xd8,0xeb,0x3a,0xef,0x3a,0xeb,0x3a,0xe9, +0x3a,0xe2,0x3a,0xed,0x3a,0xea,0x3a,0xe7,0xd6,0xba,0x4e,0xb9, +0x0e,0xbb,0xae,0xb9,0xae,0xba,0xae,0xbb,0x7e,0x71,0x5d,0x76, +0xbb,0xdc,0x21,0xae,0x37,0xae,0x8b,0xae,0x4b,0xae,0x2b,0xae, +0x1b,0xae,0x9f,0x5c,0x37,0x5d,0x3f,0xbb,0x2e,0x08,0x56,0xd7, +0x54,0xc7,0x12,0xd7,0x38,0xd7,0x18,0xd7,0x68,0xd7,0x04,0xc7, +0x0a,0x47,0x99,0x6b,0xa6,0xe3,0x3b,0x47,0xb1,0x63,0x95,0xa3, +0xc4,0xbd,0xd0,0x1d,0xe1,0x38,0xe0,0xd8,0xef,0xd8,0xe7,0x9a, +0xed,0x1a,0xea,0x1a,0xe6,0x1a,0xee,0x56,0xb9,0x6b,0x39,0xd6, +0x3b,0x36,0xb8,0xbe,0x71,0x8d,0x72,0x0d,0x70,0x0d,0x72,0xac, +0x71,0xac,0x75,0xac,0x73,0xbd,0x74,0xf5,0x75,0x7c,0xef,0xfa, +0xd2,0xf5,0xca,0xd5,0xcf,0xd5,0xdf,0xf5,0xda,0x35,0xc4,0xf5, +0xb5,0x6b,0xb0,0xeb,0x2b,0xd7,0x08,0xd7,0x33,0xc7,0x56,0xf5, +0x6a,0xcd,0x26,0x6a,0x39,0x7e,0x1c,0x0b,0xc6,0x8f,0xc1,0xad, +0xb5,0xfb,0xe9,0x0f,0xe8,0x57,0xea,0x53,0xf0,0x51,0xfa,0x35, +0xd1,0x95,0x39,0x8f,0x4c,0xa5,0x08,0xfa,0x1f,0xe4,0x09,0x62, +0xd1,0x4c,0xc6,0x39,0x46,0xc5,0x40,0xe4,0x7d,0x72,0x2b,0x3a, +0x87,0x1a,0x6e,0xe9,0xc5,0xf8,0xe0,0x27,0x19,0x35,0xdc,0x14, +0xb9,0x84,0x96,0x50,0x7f,0x32,0x08,0x1d,0x41,0xd7,0x26,0xee, +0x31,0x18,0xb6,0x97,0x3c,0xa2,0xbe,0x8a,0xa6,0xa1,0xa9,0xea, +0xe5,0xf4,0x63,0xfa,0x77,0xcc,0x4f,0x3d,0x8a,0x21,0x19,0x2d, +0x43,0x51,0x23,0x18,0x1a,0x2d,0x53,0x7f,0x4b,0x15,0x21,0x59, +0x48,0xb6,0xe6,0x1f,0x3a,0x12,0xef,0x48,0xe8,0x19,0x13,0x63, +0x44,0xa6,0x63,0x1c,0x3c,0x95,0xd1,0x33,0x9c,0xf6,0x05,0x96, +0x8e,0xa5,0x69,0x9c,0x8c,0x59,0x7b,0x80,0x88,0x87,0x92,0x19, +0x0b,0x63,0xd3,0x74,0xa2,0x2b,0xd4,0x89,0x8c,0x15,0xfe,0x18, +0xed,0xc4,0xd8,0xc9,0x8b,0xee,0x0d,0xee,0x8d,0x48,0x6d,0xc6, +0xa1,0x4e,0x42,0xd3,0x91,0x3a,0xda,0x07,0xda,0xce,0xc8,0x0c, +0xa6,0x1d,0xd9,0x4a,0xeb,0xcb,0xb8,0xf0,0x3f,0xdc,0x9b,0xb0, +0x0c,0x6c,0x1f,0xdc,0x4e,0x33,0x8c,0xf1,0x53,0x27,0x6b,0xde, +0xe0,0x9d,0x30,0x9e,0xa6,0xe0,0xb6,0xee,0xcd,0x8c,0x2f,0x5d, +0x87,0x71,0x32,0x6e,0x6c,0x08,0xe3,0xd1,0xfd,0xc8,0xd4,0x67, +0xea,0x52,0x1a,0x86,0x67,0xea,0xa0,0xcb,0xdc,0x5b,0xe9,0x6f, +0x99,0x7a,0xee,0x2d,0xee,0x6d,0x48,0x0e,0x92,0x0b,0x7f,0x42, +0x2d,0xd3,0x5e,0x45,0xcb,0xf1,0x3f,0xe9,0x10,0x94,0xd2,0xc0, +0xf0,0x48,0xf7,0x0a,0xfc,0x6b,0xf7,0x76,0xa6,0x11,0xd3,0x8c, +0x69,0xaa,0xa1,0x99,0xc6,0xcc,0x47,0x4c,0x13,0xa6,0xa1,0xe3, +0x01,0xfe,0x94,0x2a,0x66,0x9a,0x33,0x2d,0x70,0x7f,0xa6,0xb3, +0xb6,0x9c,0xf9,0x84,0xe9,0xe4,0xde,0xc5,0xb4,0x65,0xba,0x32, +0x5d,0xc8,0xfe,0x68,0x05,0xd3,0xd2,0xbd,0x1b,0x47,0x98,0xf6, +0xee,0x9d,0x54,0x5b,0x4d,0x3c,0xf3,0xb1,0xe3,0x25,0xd3,0x8a, +0xe9,0xc0,0xb4,0xa1,0x73,0x98,0x8e,0xf4,0xaf,0xee,0x7d,0xcc, +0xa7,0xee,0x3d,0x4c,0x37,0xa6,0xa7,0x3a,0x95,0x72,0x33,0x9f, +0x31,0x3d,0x98,0x5e,0x1a,0x84,0xac,0x85,0xfc,0x86,0x85,0x68, +0xe3,0x99,0xbe,0x58,0x53,0xfa,0x43,0xa6,0x3f,0x33,0x88,0xe9, +0x87,0x35,0xa1,0x16,0x30,0x83,0x99,0xa1,0xcc,0x70,0xf7,0x01, +0xe6,0x1b,0xe4,0x0b,0x66,0x14,0x33,0x9a,0x19,0xc7,0x8c,0x65, +0xc6,0x30,0x13,0x99,0x29,0xcc,0x64,0x66,0x2a,0x33,0x4d,0xbd, +0x09,0x1d,0x87,0xea,0xf0,0xce,0x9a,0xcd,0x48,0x3e,0x91,0x80, +0x7e,0xeb,0x3e,0x84,0xa9,0x98,0x19,0xd4,0x19,0xfe,0x92,0xfb, +0x30,0x79,0x8e,0xd8,0xc8,0xcc,0x61,0xe6,0x6a,0xdb,0xa1,0x2b, +0xe8,0x6b,0xcc,0x3c,0x8a,0xd4,0x18,0x91,0xbb,0x64,0x00,0xb9, +0x05,0xae,0xc5,0x04,0x63,0x93,0x98,0x20,0xec,0x23,0x26,0xc4, +0xfc,0x15,0x13,0x4a,0x4d,0x61,0xc2,0x98,0x70,0x26,0x02,0x3f, +0xe5,0x8c,0xa5,0x0e,0x31,0x51,0xda,0xa3,0x4c,0x0c,0xb3,0x90, +0x89,0x25,0x07,0x32,0x8b,0x98,0x78,0x26,0x81,0x89,0xc3,0xfa, +0x30,0x89,0xd4,0x33,0x7a,0x05,0x93,0xe4,0x3e,0x4a,0xf4,0x60, +0x92,0xf1,0x91,0x9a,0x2d,0x74,0x0c,0x39,0x88,0x49,0x75,0x0f, +0x46,0x7e,0x60,0xd2,0xa8,0x04,0x7c,0xba,0x66,0x30,0x93,0x41, +0x6e,0x73,0x1f,0x63,0x32,0x99,0x2c,0x38,0x81,0xc9,0x46,0x0a, +0xc9,0x12,0xd8,0x8e,0x0f,0xd2,0x36,0x65,0x72,0x08,0x03,0x93, +0xab,0x7d,0x4d,0x04,0xc3,0x97,0xe1,0x5b,0x4c,0x1e,0x93,0xef, +0x3e,0xae,0xfd,0x82,0xb2,0xd3,0x23,0x98,0x42,0xe2,0x33,0x6c, +0x32,0xda,0x8d,0x59,0x82,0x65,0x61,0xb5,0x48,0x88,0x29,0xc1, +0x86,0x32,0xa5,0x4c,0x19,0xb1,0xd6,0x39,0x84,0x59,0x86,0x76, +0xc7,0x7a,0x6a,0xfd,0x98,0x6f,0x99,0x0a,0xed,0x43,0xfc,0x34, +0xb3,0x16,0xde,0xcd,0xac,0x60,0x96,0x13,0xa7,0xd0,0x8f,0x98, +0x75,0xf4,0x2c,0x66,0x3d,0xb3,0x86,0xce,0x72,0x9f,0x40,0x57, +0xc2,0x1d,0xf0,0x10,0xb2,0x37,0xfa,0x17,0xf3,0x3d,0xb3,0x89, +0x3e,0xc5,0x6c,0x71,0x9f,0x62,0xb6,0x32,0x3f,0xc0,0xb7,0xa9, +0x1d,0x78,0x2c,0xb3,0x9d,0x6a,0xc6,0xec,0x26,0x7a,0x32,0x3b, +0x90,0x83,0xcc,0x4e,0xf8,0x57,0x54,0xcd,0xec,0x61,0xf6,0x31, +0xfb,0x71,0x14,0x5d,0x45,0xdd,0x73,0xff,0x48,0x3d,0x25,0x4f, +0x50,0x9f,0x30,0x07,0x04,0x86,0x39,0xc8,0x1c,0x65,0x8e,0x30, +0xc7,0xe0,0x36,0xd4,0x7c,0x6c,0x22,0x73,0x1c,0x8f,0x43,0x8a, +0x99,0x13,0xee,0xb3,0xcc,0x8f,0xda,0x4c,0xe4,0xaa,0xba,0x82, +0xcc,0x62,0xce,0xe0,0x5d,0x98,0x73,0xcc,0x59,0x3c,0x1e,0xcd, +0x60,0x2e,0x68,0x7b,0x6b,0xa7,0x6a,0xf4,0x9a,0x9e,0x48,0x11, +0xb9,0x5f,0x33,0x85,0xb9,0xa4,0x3e,0xae,0xde,0x8c,0x7c,0xe0, +0x3e,0xa7,0xc1,0x90,0x09,0xf4,0x57,0xcc,0x55,0xb8,0x19,0x3a, +0x9e,0xb9,0xc1,0xdc,0x62,0x6e,0x12,0x02,0xff,0x0c,0x56,0x31, +0xb7,0xdd,0x17,0xd0,0x09,0x58,0x28,0x73,0x97,0x5a,0x22,0xa8, +0x90,0x99,0xb4,0x8e,0x38,0xad,0xed,0x83,0x7f,0x80,0xeb,0x71, +0x8f,0xfa,0x16,0xf1,0x23,0xba,0x06,0x9d,0x87,0x5c,0x61,0x7e, +0xd7,0x0c,0xd5,0x0c,0x41,0x96,0xe2,0x09,0xcc,0x63,0xe6,0x11, +0xdc,0x51,0xd3,0x19,0xbb,0x89,0xe5,0xa8,0x0f,0xc2,0xc7,0xd1, +0xe7,0x58,0x36,0xf2,0x0d,0x5c,0x82,0xbe,0x40,0x46,0x68,0x5e, +0xa9,0x0f,0x90,0xb1,0xd4,0x61,0x74,0x1d,0xfd,0x0d,0xf9,0x09, +0xba,0x96,0x79,0xcd,0x5f,0x46,0x7e,0xa6,0xe6,0x22,0x56,0xe6, +0x19,0xf3,0x17,0xf3,0x02,0x99,0x45,0xd4,0xd6,0xfe,0xcd,0x3c, +0x67,0x9e,0xa2,0x59,0xa4,0x1a,0xcd,0xc4,0x20,0x9d,0x5a,0x07, +0x31,0x6f,0x74,0x98,0xce,0x47,0x87,0xa0,0xf3,0xa9,0x23,0xee, +0x5f,0xb0,0x61,0xf4,0x1d,0x9d,0x8a,0xf9,0x47,0x47,0xe8,0x8c, +0x3a,0x5a,0xc7,0xb9,0x2f,0xe9,0xf4,0xfc,0x6b,0x6c,0x20,0x9c, +0xa4,0x33,0xab,0xb7,0xe8,0x4c,0xea,0x71,0xda,0x6d,0x3a,0x83, +0x8e,0xd4,0xb1,0x58,0x73,0xf5,0x56,0x9d,0xaf,0xd3,0x44,0x65, +0xe9,0xdc,0x3a,0x17,0xe6,0xc5,0x9f,0xe9,0xec,0xe4,0x60,0x5d, +0x6d,0x5a,0xab,0xab,0xaf,0xf3,0xd3,0x7c,0xae,0xfb,0x00,0x4f, +0xd4,0xd5,0xd1,0xf9,0x3b,0x4e,0xe9,0x9a,0xe8,0x5a,0xe8,0x5a, +0x12,0xeb,0xdc,0x57,0x74,0xad,0xd1,0xf5,0xba,0x46,0x9a,0xad, +0xba,0x8f,0x74,0x01,0xf0,0x5d,0xa4,0x2e,0xbc,0x47,0xd7,0x4c, +0xd7,0x18,0xed,0xa1,0x6b,0xa3,0x6b,0x45,0x9c,0x45,0x46,0x22, +0x25,0xba,0x4f,0x74,0x6d,0xb1,0x5c,0x5d,0x07,0xdd,0xa7,0xba, +0xae,0xba,0x2e,0x78,0xb2,0xfa,0x2c,0x7e,0xd3,0xb9,0x48,0xd7, +0x5f,0xd7,0x47,0xd7,0x4f,0x37,0x00,0x5e,0xca,0xdf,0xd0,0x8d, +0xd4,0x8d,0xd0,0x8d,0xd2,0x4d,0x60,0x02,0xf1,0x3a,0x58,0x9e, +0x3a,0x8d,0xe0,0x75,0x93,0xd0,0x05,0xba,0x29,0xba,0xc9,0x54, +0x03,0xdd,0x54,0xdd,0x74,0xdd,0x34,0x18,0xd2,0xcd,0xd2,0xcd, +0x57,0xcf,0xc3,0x3e,0xd7,0x05,0xe9,0x42,0xb1,0x86,0xe8,0x06, +0xcc,0xe0,0xbe,0xa6,0x99,0xa6,0x0b,0xd3,0x3c,0xd3,0x45,0xe8, +0xa2,0xd1,0x8d,0xf0,0x62,0x5d,0x9c,0x2e,0xd1,0x7d,0xd3,0x7d, +0x43,0x97,0xac,0x4b,0xd1,0x25,0xa9,0x57,0x68,0x0f,0x6a,0x39, +0xa4,0x3e,0xda,0x53,0x13,0xa0,0x4b,0xd5,0x65,0x38,0x1a,0xc1, +0x3e,0x54,0x07,0xfc,0x8c,0xf3,0x53,0x4a,0x4b,0x97,0xc2,0x33, +0x75,0x79,0xc4,0x36,0xdd,0x62,0xb2,0x03,0x39,0x44,0xfb,0x99, +0xe6,0xae,0xb3,0x8b,0x2e,0xd7,0xfd,0xab,0x6e,0xa9,0xfb,0x8e, +0xf6,0x8d,0xae,0x5c,0xb7,0x44,0x57,0xaa,0x5b,0xa6,0x5b,0xa9, +0x5b,0xa5,0xfb,0x4e,0x57,0xa6,0x5b,0xa7,0x5b,0xab,0x5b,0x8d, +0xe5,0x13,0x26,0xe2,0x9c,0x6e,0x3d,0x31,0x4c,0xbd,0x46,0x6b, +0xd5,0x6d,0xd4,0x6d,0xd0,0x7d,0xaf,0xdb,0xa4,0xdb,0x4c,0x79, +0x74,0x5b,0xdd,0x77,0xe1,0xce,0xba,0x6d,0xb4,0x17,0x4e,0x64, +0x2e,0xe3,0xbd,0x35,0x2e,0xdd,0x0f,0xd4,0x5f,0x64,0x43,0x8d, +0x5b,0x7b,0x48,0xb7,0x53,0xb7,0x0b,0x76,0x60,0xb7,0x75,0xbb, +0xd5,0xe9,0xba,0x3d,0xc8,0x87,0xe4,0x26,0xaa,0xa3,0xee,0x20, +0x71,0x5e,0x77,0x00,0x35,0xba,0xef,0x51,0xb1,0xba,0xfd,0xe4, +0x50,0xdd,0x61,0xdd,0x21,0xf7,0x7d,0xdd,0x11,0xf7,0x43,0xdd, +0x31,0x3c,0x45,0x77,0x42,0xf3,0x0d,0x1e,0x46,0x7e,0xa9,0x3b, +0x45,0x9e,0xd7,0x4e,0xa7,0x2e,0xe9,0xce,0xba,0x7f,0xd3,0x08, +0x54,0x9a,0xfb,0x11,0xd6,0x52,0x1d,0x84,0x06,0x12,0x9f,0xab, +0x33,0xd4,0x17,0xe1,0xfb,0xd4,0x29,0xed,0x52,0xdd,0x65,0xfc, +0x2f,0xdd,0x0d,0xfa,0xb4,0xee,0x9e,0xb6,0x44,0x77,0x5f,0xf7, +0x48,0xf7,0x00,0xee,0xa2,0xfb,0x4d,0xf7,0x10,0xfd,0x5c,0xf7, +0x54,0xf7,0x58,0xf7,0x5c,0xf7,0x17,0xb0,0x1c,0x20,0x74,0x13, +0xeb,0xe3,0xfe,0x1d,0x3b,0xa8,0x31,0xb3,0x6a,0x16,0xc6,0xca, +0xd1,0xcd,0x48,0x7b,0x34,0x88,0x45,0xe0,0x8d,0x2c,0xc6,0x36, +0x50,0x1f,0xc2,0x0d,0xea,0x68,0xe2,0x27,0xf8,0x01,0x76,0x0d, +0xaf,0x07,0x3f,0xd4,0x94,0x91,0x88,0x3a,0x10,0xe9,0x43,0x75, +0x42,0x26,0x12,0x49,0xd8,0x1d,0x9a,0x65,0x19,0x38,0x19,0x86, +0xf1,0x74,0xb8,0x2b,0xab,0xa3,0x1b,0xe0,0x7d,0xdc,0x8f,0x71, +0x86,0x65,0x91,0x00,0x72,0x39,0xb5,0x81,0xe5,0xe0,0x9b,0xc8, +0x23,0xd6,0x80,0x3f,0x67,0xad,0xd8,0x14,0xf8,0x53,0xd6,0xc2, +0x9a,0x58,0x1b,0x6b,0x26,0xaf,0xe9,0x13,0xf1,0x17,0xac,0x5d, +0xd0,0x69,0xb6,0xb1,0x4e,0x4d,0x03,0xdc,0x4f,0xfb,0x2b,0x91, +0x8c,0xbd,0x60,0xdd,0x78,0x06,0xeb,0x61,0x7d,0xd5,0x59,0x1a, +0x2b,0x61,0x66,0xfd,0xc8,0x78,0x60,0xd5,0xd4,0x61,0x3f,0xc0, +0x31,0xfc,0x09,0x79,0x94,0xb0,0x6a,0x13,0xc8,0x0b,0xc8,0x2e, +0xb6,0x2e,0x12,0xcb,0xd6,0x23,0x97,0xc1,0x0d,0xb0,0x62,0xb6, +0x3e,0x1b,0xc0,0xfa,0x3b,0x9e,0x38,0xbb,0x61,0x4f,0x9d,0x5a, +0xe2,0x22,0x3d,0x92,0x6d,0x44,0x7e,0x87,0x34,0x60,0x9b,0x11, +0x3f,0x20,0x6e,0xb6,0x25,0xb5,0x9e,0x6d,0xcd,0x7e,0x8c,0xd8, +0xdc,0x7f,0xb1,0xad,0xd8,0x36,0x64,0x06,0x52,0x06,0x8f,0x62, +0x3b,0xb0,0x5d,0xa9,0x2e,0x54,0x67,0xf7,0x73,0x72,0x38,0xdb, +0x09,0x1f,0xc2,0xf6,0x62,0xbb,0xc1,0x29,0x6c,0x77,0xb6,0x2f, +0xdb,0x87,0xed,0xcd,0xf6,0x64,0x07,0xb0,0x5f,0xb2,0xfd,0xdc, +0x2f,0xd9,0x81,0xee,0xbf,0xc9,0x11,0x6c,0x17,0x76,0x94,0xfb, +0x1f,0xf7,0x1b,0xfa,0x3b,0x76,0x34,0xfb,0x0d,0x62,0x67,0xc7, +0xb2,0xe3,0xd9,0x71,0x44,0x2a,0xfe,0x21,0x3e,0x99,0x5f,0x4d, +0xdc,0x42,0xb7,0x62,0x75,0xd0,0x6d,0x48,0x1c,0x1a,0xcc,0x4e, +0xa6,0xd6,0x92,0x2f,0xd8,0x29,0x9a,0x51,0xc8,0x61,0x6c,0x89, +0xf6,0x18,0x3b,0x15,0x69,0xc8,0x4e,0x67,0xa7,0xb1,0x33,0x35, +0x8d,0x91,0xd6,0xec,0x2c,0x76,0x36,0x7e,0x9e,0x9d,0xcb,0xce, +0xd1,0x3e,0x62,0x03,0xa9,0x1c,0x6d,0x6b,0x36,0x98,0xa2,0xd8, +0x10,0xf8,0x11,0x45,0x93,0xb7,0xd8,0x30,0x36,0x9c,0xbf,0x8f, +0x6e,0x87,0x7f,0x67,0x23,0xd0,0x89,0xb4,0x3f,0xcd,0x21,0x8d, +0xd8,0x28,0x74,0x07,0x9e,0x43,0x62,0xce,0xa9,0x64,0x63,0xb2, +0x0f,0xd6,0x48,0x1d,0x83,0xcf,0x45,0x77,0xd1,0x0d,0xd9,0x18, +0x76,0xa1,0x16,0x65,0x63,0xe9,0x1d,0xf4,0x8f,0x6c,0x3c,0x1b, +0xe7,0x1c,0x8f,0xe7,0xb1,0xa9,0x6c,0x0a,0xbb,0x88,0xcd,0x66, +0x33,0xd9,0x2c,0x36,0x07,0x46,0x48,0x82,0xcd,0x45,0x7b,0xf1, +0xe7,0xc9,0x07,0x6c,0x1e,0xf9,0x23,0x9b,0x4f,0x9f,0x61,0x0b, +0x28,0x86,0x2d,0xa2,0x5f,0x32,0x04,0xf6,0x0b,0x79,0x8c,0x2d, +0x46,0xe6,0x68,0x76,0xaa,0xb7,0xb3,0x4b,0xb4,0xcf,0xd0,0xdd, +0xd4,0x2b,0x74,0x12,0x1a,0xea,0x81,0x34,0xbb,0x90,0x65,0x6c, +0x29,0x5b,0xc8,0x2e,0x66,0x57,0xa1,0x26,0x6d,0x8e,0xc7,0x07, +0x6b,0xad,0xad,0xd0,0xec,0xd6,0xfe,0xc0,0xae,0xc6,0xf3,0xd5, +0x77,0xd8,0x0d,0xb0,0x8b,0xe8,0xc5,0xae,0x67,0xd7,0xa1,0x66, +0x4d,0x13,0x76,0x33,0xfb,0x3d,0xbb,0x91,0x9e,0x82,0xe6,0xe0, +0x11,0xec,0x26,0xb2,0x33,0xde,0x95,0xcc,0xe6,0xcf,0xb0,0x5b, +0xd9,0x1f,0xd0,0x5c,0x76,0xbb,0xf6,0x37,0x7c,0x14,0xbb,0x43, +0xbb,0x88,0xcc,0xd1,0xec,0xe1,0x37,0xb2,0x3b,0x1d,0xf7,0x90, +0xc6,0xe4,0x2f,0xec,0x2e,0xac,0x84,0x1a,0x4b,0x8d,0x83,0xdd, +0xec,0x7e,0x0f,0xcc,0x3e,0x63,0xf7,0xb1,0xc7,0xd9,0x33,0xec, +0x51,0xf6,0x94,0xf6,0x04,0x7b,0x92,0x5e,0x85,0x95,0x6a,0x9a, +0xb2,0x87,0x90,0xb9,0xec,0x8f,0xc4,0x17,0x30,0xca,0x1e,0x83, +0xe7,0xb2,0xa7,0xd9,0xf3,0xec,0x35,0xf6,0x0a,0xfb,0x33,0xbd, +0x93,0xbd,0xc9,0x9e,0x63,0x2f,0xb2,0x87,0xf9,0xa7,0xec,0x65, +0xf6,0xaa,0x26,0x09,0x33,0xc3,0xcd,0xd9,0x0b,0xec,0x0d,0xf6, +0x3a,0xf2,0xad,0x06,0x87,0xf7,0xb2,0x77,0xd8,0x7b,0x1e,0x14, +0xbb,0xeb,0xc1,0xd8,0xdf,0x49,0x92,0xbd,0xcd,0xde,0x65,0xef, +0xa3,0x79,0xb4,0x5e,0xfd,0x8a,0x7d,0x44,0xfe,0xae,0x9e,0xa6, +0x9d,0xc5,0x1e,0x60,0xff,0x64,0x5f,0x50,0x8f,0xc9,0x6f,0xd8, +0xbf,0xf0,0x0b,0xec,0x73,0x72,0x95,0x07,0x57,0x67,0xb3,0x7f, +0xb0,0x8f,0xd9,0x5f,0xb1,0x70,0x8d,0x97,0x43,0x3c,0x24,0x71, +0x89,0xab,0x85,0xb3,0x1c,0xc4,0xc1,0x9c,0x0a,0x0f,0x70,0xce, +0xa7,0x51,0x0e,0xe5,0x30,0x75,0x0e,0x72,0x4f,0x3d,0x1e,0x7e, +0xe2,0xd1,0x70,0x6a,0x8e,0xe4,0x34,0x1c,0xcd,0xb1,0x1c,0xc1, +0x51,0x1c,0x8e,0x1d,0xe6,0xb4,0x9a,0x8f,0xd0,0xbd,0xec,0x2b, +0xfc,0x15,0xf5,0x2d,0xfc,0x07,0x6a,0x83,0x53,0xe9,0x50,0xce, +0xae,0xce,0xe5,0x9c,0x9c,0x81,0xb3,0x71,0xbe,0xa8,0x95,0x33, +0xd2,0xbb,0xb8,0xba,0x1e,0x86,0xf3,0xe3,0xea,0x70,0xf5,0x38, +0x2f,0xd7,0x18,0xb3,0x70,0x0d,0xb9,0x00,0xce,0x9f,0x6b,0xca, +0x7d,0xc8,0x35,0xe3,0x5a,0x72,0x0d,0xd0,0xde,0x5c,0x5b,0xee, +0x63,0xae,0x1d,0xd7,0x86,0xfb,0x84,0x6b,0xcf,0x75,0xa0,0x5a, +0x72,0x9d,0xb8,0x8e,0xf8,0xa7,0x44,0x6f,0x78,0x34,0x1c,0xe8, +0xd1,0x71,0x9d,0x89,0xa9,0x5c,0x17,0xeb,0x48,0xae,0x2b,0xda, +0x8c,0xeb,0x8e,0xf4,0xe5,0x7a,0x70,0x9f,0x71,0x3d,0x35,0xcd, +0xa8,0xf1,0xf8,0x4c,0x57,0x33,0x22,0xdd,0x66,0xd5,0xce,0xc6, +0xda,0x70,0xbd,0xb8,0x81,0x78,0x01,0xf2,0x25,0xd7,0x9f,0x1b, +0x82,0x2f,0xe6,0x06,0x90,0x2f,0xe9,0xae,0xdc,0x20,0xee,0x2b, +0x6e,0x28,0x39,0x92,0x1b,0x8c,0xee,0x23,0xc2,0xb9,0x49,0xda, +0xae,0xda,0xb9,0xdc,0x5a,0x6e,0x04,0xec,0xd1,0x94,0x6b,0xa6, +0x73,0xa3,0xb8,0x89,0xdc,0x18,0x6e,0x32,0x37,0x9e,0x1b,0xa7, +0x15,0xb8,0x6f,0xe0,0x20,0x6e,0x38,0x12,0xaf,0xe9,0xc3,0x7d, +0xcd,0x0d,0x43,0xf7,0x13,0x21,0x78,0x21,0x37,0x56,0x8b,0x21, +0x09,0x70,0x19,0xbc,0x0f,0xff,0x95,0x9b,0xca,0xcd,0xe2,0x66, +0x63,0x53,0xd1,0x57,0x78,0x03,0x6e,0x24,0x76,0x84,0x9b,0x81, +0x95,0x71,0x33,0xd5,0x0b,0xb9,0xe9,0xea,0x09,0xce,0x11,0xdc, +0x5c,0xe2,0x2a,0x36,0x8f,0x9b,0xc7,0x2d,0xe0,0xe6,0x50,0xdd, +0xb1,0x97,0x5c,0x0c,0x17,0x8a,0x17,0x93,0x3b,0xc9,0x5f,0x71, +0x9e,0x8b,0xe0,0x82,0xb8,0x70,0x2e,0x92,0x9e,0x81,0x7d,0xac, +0x99,0xc1,0x85,0xa1,0x07,0x88,0xba,0x30,0x46,0x6c,0xe7,0x42, +0x90,0xa1,0x9a,0xfb,0x5c,0x94,0xab,0x36,0x97,0xac,0x5d,0x47, +0xd2,0x74,0x23,0xf8,0x4f,0x7e,0x31,0xd2,0x04,0xc6,0x3d,0x1c, +0x97,0xc4,0xa5,0x3b,0xeb,0x73,0x29,0x5c,0xb6,0xb6,0x1f,0x39, +0x0a,0x8b,0xe0,0x8a,0x3d,0x06,0x72,0x11,0x59,0x8f,0x5b,0x42, +0xbe,0xc2,0xa6,0x71,0xcb,0xb9,0x52,0xba,0x09,0xb7,0x82,0xb8, +0xee,0x31,0x72,0xab,0xb9,0x35,0xce,0x4e,0xdc,0x3a,0x6c,0x3a, +0xf7,0x1d,0xb7,0x92,0xdb,0xc4,0x6d,0xc5,0x7f,0xe2,0x7e,0xe0, +0xb2,0x9c,0x59,0xdc,0x4e,0x6e,0x07,0x57,0xc8,0xed,0xe2,0x36, +0x70,0xbb,0xb9,0x3d,0xdc,0x3e,0x6e,0x2f,0xb7,0x1f,0x0e,0xa6, +0x7a,0x10,0x7d,0xb8,0x23,0x1e,0x93,0x76,0x2f,0x77,0x98,0x3b, +0xa4,0x25,0xb8,0xa3,0xc8,0x4a,0xee,0x38,0x77,0x0c,0x7e,0x86, +0x45,0x12,0x7d,0x49,0x5f,0xed,0x29,0xee,0x24,0x85,0xb1,0x24, +0x31,0x5e,0x3b,0x4f,0xdb,0x9f,0x3b,0x83,0xbd,0x46,0x8e,0x12, +0xd3,0xb8,0x73,0x58,0xb2,0x26,0x0a,0xab,0xc0,0xff,0x86,0x2d, +0xd8,0x72,0xee,0x02,0xf7,0x33,0x1d,0xc6,0xfd,0x44,0x14,0x72, +0xbf,0x70,0x57,0xb9,0x6b,0x48,0x33,0xf2,0x8c,0x66,0x26,0x12, +0x8d,0x7d,0x4b,0xdc,0xc0,0x47,0xab,0x67,0xc2,0xbe,0xdc,0x6d, +0xf4,0x10,0x77,0x0b,0xb3,0xe1,0x4b,0x3c,0x56,0xee,0x26,0x75, +0x14,0xb3,0xaa,0xf3,0x88,0xe9,0x1e,0x8b,0xc0,0x11,0x5f,0xaa, +0xef,0x7a,0x1c,0xf8,0x50,0x2a,0x1d,0x1b,0x81,0x97,0x78,0x6c, +0x44,0x77,0xee,0x1e,0x77,0x87,0xbb,0xeb,0x54,0x69,0x2a,0xb8, +0x47,0xd8,0x51,0xf4,0x30,0xf7,0xd0,0xe3,0xe6,0x7f,0xe0,0x1e, +0x73,0xbf,0x73,0x7f,0x72,0x4f,0x3c,0x4e,0xc7,0x75,0xee,0x0f, +0xee,0xa9,0x76,0x9c,0xf6,0x47,0xd4,0xcd,0xfd,0xe5,0xf1,0x25, +0xfa,0x71,0xcf,0xb9,0xd7,0x70,0x77,0xee,0x05,0xf7,0x4a,0x13, +0xad,0x8e,0xe5,0xfe,0xf6,0xf8,0xe9,0x61,0xbd,0x4a,0x0f,0x79, +0xbc,0xfc,0x31,0x72,0x23,0x3e,0x5b,0x8f,0xd2,0x4d,0xb5,0xfe, +0xc8,0x6e,0xf5,0x3d,0xf4,0x88,0x5e,0xab,0xa7,0xf0,0x05,0xc4, +0x4d,0x4f,0x6d,0xf7,0x1a,0xe6,0x21,0xb1,0x93,0xd8,0xa1,0x69, +0x8e,0x35,0x43,0x3b,0xd2,0x26,0xed,0xef,0x9e,0x3a,0x7a,0x1a, +0xfb,0x46,0xf3,0xb3,0x9e,0xa1,0xcf,0x6a,0x0e,0xe8,0x75,0x48, +0x73,0x3d,0xab,0xe7,0xa8,0xdb,0xd4,0x6a,0xaa,0x84,0x8a,0xc3, +0x66,0xe8,0x0d,0x7a,0x93,0xde,0xaa,0xb7,0xd0,0xa3,0xd4,0x8b, +0xb0,0x5e,0x1a,0xbb,0xde,0xae,0xd1,0xe8,0x1d,0xf8,0x45,0xea, +0xae,0xde,0xa5,0x77,0xd3,0xbd,0x3d,0x75,0xb5,0x1a,0xbd,0x2f, +0x39,0x9a,0xbb,0xc1,0xfd,0x8a,0x97,0x69,0x07,0xe8,0x6b,0xeb, +0xbd,0x70,0x0f,0x6c,0x05,0xfd,0x9b,0xfe,0x03,0xa2,0x95,0x3e, +0x40,0xff,0x21,0xfc,0x99,0xbe,0x9e,0xbe,0xa1,0xbe,0x99,0xe7, +0x43,0x4d,0x1d,0x7d,0x73,0xad,0x97,0x9a,0x04,0xff,0x45,0xe4, +0xe1,0xdd,0xf4,0x4d,0xf4,0x8d,0xf5,0x1f,0xe9,0xeb,0xd3,0x6a, +0xec,0x09,0x36,0xd2,0x99,0x8b,0xd5,0xa5,0x0a,0xe0,0x42,0xfe, +0xaa,0xe6,0x1e,0xb9,0x44,0x7d,0xdf,0x89,0x12,0x03,0x50,0x15, +0x7a,0x0c,0xbe,0xa8,0xff,0x18,0x3e,0xad,0xef,0x08,0x57,0x60, +0x76,0xb8,0x1c,0x6b,0xab,0x6f,0x8b,0xb6,0x42,0x3d,0xe4,0x18, +0x4f,0x80,0xbe,0x9d,0xbe,0x3d,0xb2,0x0f,0x85,0x3c,0xf5,0xe1, +0xe7,0xc8,0x28,0x6c,0x1c,0x55,0x08,0x37,0xd6,0x77,0xd1,0x0f, +0xd0,0x77,0xd5,0xf7,0x77,0xe6,0xeb,0xbb,0xa9,0xe7,0xea,0x7b, +0xe8,0x3f,0xd5,0xf7,0xd5,0x6d,0x47,0xf3,0xe9,0xd1,0x24,0x03, +0x87,0x61,0x0e,0x7d,0x1f,0x78,0x87,0xfe,0x0b,0xfd,0x97,0xee, +0x55,0xd4,0x59,0xfd,0x20,0xa4,0x85,0x7e,0x84,0x7e,0xa4,0x7e, +0xac,0x7e,0x30,0x39,0x4e,0x3f,0x51,0x3f,0x14,0x7f,0xa3,0x9f, +0xa4,0x9f,0x00,0xbf,0xa0,0x9f,0xe9,0x07,0xea,0xc7,0xa8,0xf3, +0xa9,0xfd,0xfa,0x61,0xf8,0x1d,0xcd,0x0d,0x7d,0x3f,0xa2,0x9d, +0x7e,0x2a,0x7c,0x02,0xfd,0x52,0x3f,0x5d,0xff,0xb5,0x7e,0x9a, +0x7e,0xbc,0x7e,0x88,0xf6,0x8e,0x7e,0x9e,0xa6,0xae,0x3e,0x84, +0xd8,0xa5,0x9f,0xad,0x8f,0xd0,0x87,0x93,0x07,0xf4,0x61,0xce, +0x01,0xfa,0x28,0xfd,0x5c,0x64,0xa7,0x7e,0x01,0x7f,0x5a,0x6b, +0xd4,0x07,0x21,0x7b,0xf4,0xb3,0xf4,0x73,0xf4,0x33,0xe9,0x73, +0xf0,0x26,0xfd,0x7c,0x7d,0x24,0x9c,0xe6,0x8c,0xd4,0x67,0x13, +0x2a,0x7d,0x96,0xbe,0x44,0x1f,0xad,0x4f,0xd0,0xc7,0xea,0x93, +0xd0,0x13,0xce,0x76,0xc4,0x6d,0xfd,0x22,0xba,0x19,0x95,0xad, +0x4f,0xd6,0xe7,0xea,0x97,0xe8,0xf3,0xf4,0x15,0xce,0x91,0xfa, +0x55,0xfa,0xe5,0xfa,0x95,0xfa,0x65,0xfa,0x52,0xbc,0x9c,0xfa, +0x59,0xbf,0x59,0xbf,0x02,0xed,0x07,0xfb,0xc1,0x3f,0xe0,0x15, +0xfa,0x35,0xfa,0x4d,0xb8,0x00,0x9f,0xf4,0x34,0xd7,0xaf,0xd3, +0x7f,0x8f,0x8c,0xd6,0x6f,0x20,0x97,0xea,0xd7,0xeb,0x57,0x7b, +0x5a,0x78,0x5a,0xc2,0xdb,0x35,0x31,0xfa,0xad,0x68,0x81,0xfe, +0x5b,0xfd,0x5e,0xfd,0x1e,0xfd,0x51,0xc7,0x63,0xfd,0x41,0xfd, +0x61,0xfd,0x29,0xfd,0x71,0xfa,0x6b,0xfd,0x09,0xfd,0x59,0xe0, +0xe7,0x1f,0xd3,0x9f,0xd7,0x9f,0xd3,0xff,0x84,0xf4,0x47,0x8e, +0xc3,0x2f,0xe1,0x57,0xfa,0xab,0xfa,0x1b,0xd8,0x4a,0x62,0x20, +0xa6,0xe3,0xf7,0x6a,0xaf,0x53,0x8d,0xe8,0x7b,0x58,0x3b,0x7a, +0x0b,0x7f,0x5c,0x7f,0x53,0x7f,0x4b,0x7f,0x57,0x7f,0x07,0x1f, +0x8b,0x9b,0xb1,0x54,0xfd,0x03,0xfc,0xae,0xfe,0x0f,0xfd,0x13, +0xfd,0x53,0x58,0xd0,0x2c,0xc4,0x66,0xc2,0xcb,0xf5,0xcf,0xc8, +0xd6,0xba,0x02,0xa4,0x8d,0xfe,0x2f,0xaa,0x35,0x95,0xc9,0xef, +0x27,0x0b,0xf5,0x2f,0xb4,0xf3,0xf5,0xaf,0xf5,0xaf,0x0c,0xb0, +0x41,0xad,0xfd,0x56,0xfd,0x40,0x3b,0xd0,0xf3,0x31,0xa9,0xc3, +0xbb,0x23,0x0b,0x3c,0x6d,0xc9,0xc3,0x06,0x04,0x3d,0xa9,0x49, +0xf1,0x7c,0xa2,0xf1,0xb8,0x9c,0x06,0x1d,0xd2,0xd6,0x40,0x1b, +0xb4,0x06,0x82,0xee,0x46,0xae,0x31,0x68,0x0c,0x2c,0xf2,0x02, +0xab,0x67,0x20,0x0d,0x14,0x15,0xa5,0xe9,0xab,0x7d,0x4e,0xe3, +0x06,0x27,0x76,0x02,0x5f,0x6e,0x30,0x19,0x1c,0x30,0x61,0xd0, +0x1b,0x2c,0x44,0xb6,0xb6,0xb6,0xc1,0xe3,0x69,0x6f,0x70,0x51, +0xbd,0xc8,0x7f,0x90,0x20,0x83,0x5b,0xd3,0xc2,0x60,0xa0,0x9b, +0x1b,0x3e,0x24,0x13,0x0d,0x7e,0xea,0xdf,0xd0,0x53,0x06,0x2f, +0xde,0xd0,0x50,0xcf,0x50,0xd7,0x20,0x18,0x6a,0x93,0x6f,0xf0, +0x5f,0x88,0x1c,0x43,0x63,0x43,0x43,0x83,0xbf,0xa1,0x01,0x7a, +0x9a,0xbe,0xa0,0x3d,0xe3,0xe9,0x04,0x87,0x13,0xb5,0x0c,0x8d, +0x3c,0x1d,0xf1,0x6f,0xf9,0xe5,0x86,0xa6,0x9e,0xce,0xe4,0x24, +0x32,0xd7,0xd0,0xc9,0xd0,0xd6,0xd0,0x9a,0xce,0x37,0xb4,0xc7, +0xfb,0x1a,0x3a,0x92,0x13,0x0c,0x5d,0xf8,0x23,0x86,0x6e,0x8e, +0xb3,0x86,0x76,0x04,0xe4,0xe9,0x86,0x8f,0xc3,0x9c,0x9e,0x4f, +0x0d,0xcd,0x0d,0x9d,0xc9,0x26,0x9e,0xee,0xf0,0x01,0xec,0x13, +0x7c,0x85,0xa1,0x25,0xde,0xc3,0xf0,0x39,0x3e,0x07,0x9d,0x6c, +0x18,0x80,0x24,0x92,0x9f,0x1a,0xfa,0x18,0x06,0xab,0x67,0xa8, +0xcf,0x78,0x7a,0x1a,0xbe,0xd4,0x90,0x86,0x1e,0x86,0x9e,0xe8, +0x8f,0x86,0xa1,0x9e,0x1e,0x86,0x41,0x86,0xfe,0x86,0xaf,0x34, +0x73,0x3c,0x9f,0x19,0x3e,0x23,0x27,0xd2,0x7f,0x61,0xf7,0xa8, +0x15,0x86,0x89,0xe8,0x14,0x7a,0x0e,0x7a,0xc6,0x30,0x9c,0x4f, +0xa5,0x5b,0x18,0x46,0x1a,0xc6,0x52,0x3f,0x62,0xc7,0x0d,0x0b, +0x0c,0xa3,0x0c,0xe3,0x0d,0x13,0x34,0x3d,0x34,0x2d,0x0d,0xc1, +0x86,0x99,0x86,0x59,0x86,0xaf,0x91,0x34,0xed,0x0a,0x43,0x10, +0xac,0x21,0xee,0xc0,0x7f,0x3b,0xc3,0xa8,0x95,0x9a,0xdf,0x0c, +0x73,0x0d,0xf3,0x0d,0x81,0x86,0xd9,0x86,0x28,0x22,0xdf,0x10, +0xa3,0x39,0x68,0x88,0xd4,0xfc,0x69,0x88,0x30,0x84,0x1b,0x16, +0x1a,0x92,0x0d,0xa9,0x68,0x0b,0xcd,0x40,0xc3,0x22,0xf2,0xb1, +0x21,0xc7,0x90,0x65,0xc8,0x44,0x5f,0x93,0x97,0xe9,0x21,0x86, +0x6c,0x43,0xbe,0xe6,0x4b,0x4f,0x1f,0x5b,0x89,0xa7,0xaf,0xb3, +0x97,0xe7,0x4b,0x43,0x99,0xa1,0xd4,0x50,0xee,0xfc,0xc2,0xb0, +0xdc,0xd9,0x46,0xf3,0x99,0xa7,0x1f,0x39,0x19,0x8e,0x70,0x32, +0x58,0x7b,0xfa,0x18,0x51,0xdf,0x33,0xc0,0xb0,0x5e,0x33,0xd7, +0xf0,0xbd,0x61,0xad,0x61,0x03,0xd9,0x52,0x5d,0xe0,0x5e,0x69, +0xd8,0x41,0x41,0x86,0x5d,0x86,0xfd,0x5a,0x93,0x61,0xa7,0x61, +0x0f,0xbe,0x9a,0x6e,0x69,0x38,0x42,0x4e,0x31,0x9c,0x36,0xfc, +0x08,0xd3,0xba,0x9e,0x86,0xb3,0xc4,0x5d,0x2c,0xda,0x70,0xde, +0x70,0x0e,0xbf,0xc7,0xfc,0x66,0x38,0x64,0xf8,0xc9,0x33,0xcc, +0xf0,0xb3,0xe1,0x9a,0xe1,0x2a,0xae,0xd1,0x9e,0x15,0xb4,0x86, +0x9b,0x86,0x5b,0xc4,0x05,0xec,0xa4,0xe1,0xb6,0xe1,0x57,0xc3, +0x1d,0xca,0x57,0xfb,0x95,0xe1,0xae,0xf3,0x2b,0xc3,0x3d,0x97, +0x03,0x6e,0x42,0x5f,0x44,0xfb,0x1b,0x1e,0x60,0x1d,0x0d,0xbf, +0x19,0x1e,0x7a,0x86,0x1b,0xfe,0x44,0x56,0x1b,0x9e,0x19,0x9e, +0x1b,0x5e,0xf3,0x7f,0x1b,0x5e,0x91,0x45,0xc8,0x1a,0xc3,0x1b, +0xcd,0x78,0xc3,0x3f,0xf4,0xcf,0x5a,0xb3,0x51,0x6d,0xac,0x45, +0x5d,0x35,0xfa,0x18,0x61,0xcf,0x37,0x46,0xdc,0x88,0x69,0xd6, +0x93,0x37,0xd0,0x81,0x46,0x94,0xb6,0xf1,0xd7,0x8c,0x04,0xcc, +0x60,0x18,0xb6,0xda,0x33,0xca,0xc8,0x1a,0x0d,0x46,0x3d,0xbd, +0xda,0x68,0x32,0x1a,0x3d,0x63,0xb0,0x18,0xcd,0x25,0xa3,0x59, +0xfb,0xb5,0xd1,0x6e,0x74,0xd1,0x63,0x3c,0x13,0x8c,0x1e,0xcf, +0x24,0xcf,0x14,0xcf,0x64,0xa3,0x1f,0xbd,0x18,0x39,0xa1,0x4d, +0xd6,0xaa,0x8c,0x75,0xd0,0xc5,0xea,0x47,0xc6,0xba,0xc4,0x47, +0xc6,0xda,0x74,0x09,0xff,0xab,0xf1,0x43,0x47,0x53,0x63,0x3d, +0xa3,0xbf,0xd1,0x6d,0xac,0x6f,0x6c,0xe4,0x99,0xa1,0x5d,0x69, +0x6c,0x01,0x5f,0x35,0xb6,0x34,0x7e,0x6c,0x6c,0x6b,0x6c,0xa3, +0xdd,0x67,0xfc,0xc4,0xd8,0xce,0xd8,0xc1,0xd8,0xde,0xd8,0xd1, +0xd8,0xc9,0xd8,0xc5,0xd8,0xd9,0xd8,0x8d,0x18,0x0c,0xdb,0x04, +0x88,0x6a,0x6c,0xec,0xe1,0x7e,0x42,0x7e,0x4c,0x3b,0xd0,0xb3, +0x84,0x8f,0x26,0x96,0x39,0xa4,0x39,0x0c,0x8f,0x35,0x7e,0x66, +0xfc,0xc2,0xd8,0x8b,0x3b,0x00,0x47,0x1a,0x3f,0xa7,0xe7,0x19, +0xfb,0x1a,0x7b,0x6b,0x72,0x89,0x6e,0xc6,0x7e,0xf4,0x4c,0xd4, +0xcf,0xd8,0xdf,0xf8,0xa5,0x76,0xbc,0x71,0x80,0x67,0x96,0xba, +0x10,0xbf,0x6c,0x1c,0x62,0xfc,0x8a,0xdc,0x67,0x1c,0x64,0x1c, +0x66,0x1c,0xaa,0xcd,0x22,0xf6,0x12,0x7b,0x8c,0x93,0xb5,0x81, +0xc6,0xb1,0xc6,0x89,0x84,0x9a,0x7f,0x60,0x9c,0x80,0x3d,0x30, +0x8e,0x31,0x8e,0xc3,0x4e,0x63,0x2e,0x72,0x9a,0x71,0x3a,0x3d, +0xce,0x38,0xc3,0xb8,0xc0,0x18,0xa8,0x49,0x35,0x86,0x1a,0xc3, +0x8d,0x11,0xc6,0x48,0xfe,0x67,0x63,0x98,0x31,0xde,0x18,0x6b, +0x8c,0x33,0xa6,0x19,0x93,0x8d,0x29,0xc6,0x54,0x6d,0x07,0xb2, +0x9b,0x31,0x47,0x5b,0x47,0x5b,0xe6,0x99,0x6d,0xcc,0x23,0x79, +0x38,0x0a,0x3d,0x67,0xcc,0x37,0x16,0x1b,0x97,0x78,0xe6,0x79, +0xe6,0x38,0xec,0xc6,0x52,0x63,0x99,0x71,0x99,0xb1,0x5c,0x4b, +0x1a,0x97,0x93,0xe3,0x89,0xaf,0xf5,0x17,0x8c,0x2b,0xa8,0x63, +0x08,0xa4,0x9d,0x60,0xfc,0xce,0xb8,0xde,0xb8,0x4e,0x9b,0x82, +0xf8,0xa0,0x5f,0x1b,0x37,0x11,0x30,0xb5,0xdd,0xf8,0xbd,0x71, +0xb3,0x71,0x8b,0x27,0xd0,0xb8,0xdd,0xb8,0xc3,0xb8,0x9b,0xf8, +0xd0,0xb9,0x8f,0xcc,0x37,0xee,0xa1,0xc2,0x8c,0xfb,0x8c,0x7b, +0xf1,0x61,0x74,0xa2,0xf1,0xb4,0xf1,0xa4,0xf1,0x94,0xf1,0x1c, +0xb5,0xc7,0x78,0x9e,0x7a,0x6d,0xbc,0xa0,0x99,0x67,0xfc,0x09, +0x59,0x8b,0x0e,0xc2,0x3a,0x19,0x2f,0x7b,0x82,0xc9,0x5e,0x58, +0x67,0x64,0x2c,0x3d,0x1f,0x3d,0x6f,0xbc,0x41,0xb2,0xc6,0xdb, +0x70,0x86,0xf1,0x1a,0x11,0x64,0xbc,0x6b,0x7c,0x6c,0x7c,0x60, +0x7c,0x62,0x7c,0xa8,0x9d,0x68,0xbc,0x6f,0x7c,0x4a,0x25,0x19, +0x5f,0x1a,0x5f,0x18,0xaf,0x18,0xff,0x36,0xbe,0x36,0xfe,0xe3, +0x78,0xea,0xb8,0x8f,0x7c,0x82,0xad,0x31,0xf9,0x10,0xfb,0x4d, +0x2a,0xfc,0x4b,0x02,0x31,0xd5,0x32,0xbe,0x31,0x21,0x26,0x3b, +0x72,0x92,0xbe,0x41,0x7c,0x0f,0xf7,0x26,0x39,0xed,0x63,0x24, +0xdd,0x84,0x3b,0x07,0x3a,0x7b,0x22,0xa7,0xe0,0x3e,0x64,0x01, +0xde,0x08,0x5b,0x0b,0x77,0xd3,0x6e,0x30,0x19,0x9c,0x5f,0x13, +0xa8,0x89,0x35,0x99,0x88,0x09,0xce,0xd1,0x26,0xb3,0xc9,0xa2, +0x49,0x33,0xd9,0x4c,0x56,0x93,0x43,0xbd,0xde,0xe4,0x84,0xfb, +0xa2,0xbc,0xc9,0x85,0x5e,0xc0,0xd4,0xd4,0x47,0x26,0x0f,0x31, +0x4b,0xfd,0x18,0x6e,0xa9,0x9e,0x6a,0xe2,0x4d,0x02,0x7e,0xc5, +0xf4,0x01,0xf2,0x90,0x88,0xc4,0x46,0x69,0x8a,0x88,0x87,0xa6, +0x0f,0x4d,0x01,0xa6,0xfa,0x26,0x7f,0x53,0x03,0xe4,0x35,0x12, +0x46,0xb7,0x36,0x35,0x82,0xcf,0x98,0x9a,0x9a,0x9a,0x98,0x9a, +0x0b,0x6a,0x53,0x0b,0x7a,0x9a,0x27,0x56,0xb7,0xcf,0xd4,0x86, +0x0e,0x32,0xb5,0xb3,0x63,0xf8,0xf7,0xa6,0x4f,0x4c,0xed,0xf1, +0xe1,0x64,0xb2,0xa9,0x83,0x27,0x4e,0x33,0xda,0x93,0xa0,0x99, +0x6f,0xea,0xc4,0xcc,0xd6,0xe4,0x61,0x57,0x4c,0x5d,0x4d,0x5f, +0x12,0x6e,0xed,0x39,0x53,0x4f,0x53,0x2f,0x53,0x7f,0x6d,0x91, +0xb6,0x25,0x39,0x03,0x39,0x6d,0xea,0x67,0xea,0xab,0xfd,0xd4, +0xf4,0x85,0x26,0x9f,0x9c,0x65,0x1a,0xc4,0x3f,0xa6,0x5c,0xf0, +0x97,0xda,0x0f,0xa8,0x75,0x58,0xac,0x69,0xb8,0x69,0xbc,0x69, +0x94,0x69,0xa4,0x69,0x98,0x67,0x91,0x69,0x04,0x11,0x65,0x9a, +0x68,0x9a,0xea,0xaa,0x67,0x9a,0x60,0x9a,0x44,0x2e,0x36,0xcd, +0x36,0xcd,0x32,0x85,0x98,0x02,0x4d,0x33,0x98,0x7b,0xa6,0xf9, +0xa6,0x99,0xce,0x56,0xa6,0x08,0x53,0xb8,0x29,0xca,0x14,0xa9, +0x8d,0x33,0x45,0xf3,0xbf,0x53,0x6d,0x4c,0xf1,0xa6,0x18,0x62, +0xb6,0x29,0xce,0x94,0x60,0x4a,0x34,0xcd,0x31,0x25,0x99,0x52, +0x90,0xfd,0xfc,0x5f,0xa6,0x74,0xe2,0x20,0x79,0xcf,0x94,0x6b, +0xca,0x36,0x65,0xc2,0x97,0xf0,0xcd,0xa6,0x3c,0x53,0x96,0xa9, +0xd0,0xb4,0xd8,0x54,0x60,0xca,0x37,0x15,0x13,0x43,0x28,0x98, +0xf8,0x0d,0xfd,0xc9,0xf4,0x1d,0x2a,0x50,0x6f,0xd0,0x8b,0xa6, +0x55,0xa6,0x75,0xd4,0x13,0x7c,0x92,0x69,0x2d,0xf6,0x06,0xfd, +0x19,0x5b,0x8f,0x44,0x50,0x88,0x69,0x0d,0x71,0x88,0x9a,0x8a, +0x8d,0xc1,0x36,0x68,0x5e,0x98,0x36,0xd2,0xcb,0xb0,0x4f,0x4d, +0xdf,0x13,0x18,0xbe,0x05,0x73,0xe3,0x4d,0xd0,0xe9,0xc4,0x61, +0xd3,0x7a,0xd3,0x16,0xd3,0x06,0xd4,0x6b,0xfa,0xc1,0xb4,0x0b, +0xfd,0xc4,0xb4,0x8f,0xbf,0x43,0xf7,0x57,0x87,0x9a,0x76,0x93, +0x73,0x4c,0xdb,0x4d,0x5b,0xe1,0x68,0x62,0x21,0x5a,0x5b,0xc3, +0x99,0x0e,0x12,0xbf,0x9b,0xce,0x7a,0x52,0x4d,0xa7,0x4c,0x47, +0x4c,0x27,0x70,0xaf,0xba,0xd8,0x74,0xd8,0x74,0xda,0x74,0x0e, +0xbd,0x44,0x5d,0xd7,0x3c,0x31,0x1d,0xf5,0xa4,0x98,0xce,0x98, +0x0e,0x69,0x02,0x4d,0xc7,0xd5,0x61,0xd4,0x39,0xe4,0x47,0x6d, +0x28,0x9d,0x8d,0xcf,0x33,0xfd,0xed,0x49,0x33,0xfd,0x68,0xba, +0x60,0xba,0x48,0x1a,0x4c,0x97,0xf8,0x64,0xd3,0x4f,0x14,0x8f, +0xa0,0xe4,0x5e,0xd3,0x65,0xd3,0x2d,0xd3,0x15,0xd3,0x6d,0xec, +0x99,0xe9,0xa6,0xe9,0x9a,0xe9,0x57,0xd3,0x55,0xd3,0x0d,0xd3, +0x23,0xd3,0x03,0xd3,0xef,0xa6,0x7b,0xa6,0x93,0xc4,0x1c,0x62, +0x29,0x5a,0x07,0xbf,0x4f,0x6c,0x32,0xfd,0x61,0x7a,0x62,0x7a, +0x6a,0xba,0x6b,0x7a,0x6c,0x7a,0x61,0x7a,0xee,0xf8,0xcb,0xf4, +0xca,0xf4,0xd2,0xf4,0x0f,0x16,0x67,0x7a,0x6d,0xae,0x65,0x86, +0xdc,0xcb,0xcc,0x38,0xd9,0xd4,0x0c,0x9b,0xd5,0x66,0xc4,0x8c, +0x9a,0x0d,0x66,0xbd,0xd9,0x66,0xb6,0x98,0xad,0xd8,0x17,0xe8, +0x07,0xda,0x30,0xb3,0x9d,0xfb,0xc8,0xec,0x30,0xbb,0xe8,0xcf, +0xcd,0x4e,0xb3,0xc7,0xec,0x36,0x0b,0x66,0xde,0x5c,0x1b,0xc5, +0x88,0x12,0xe4,0x2b,0x73,0x3d,0x73,0x1d,0xf3,0x87,0xe6,0xba, +0xe6,0xc6,0xe6,0x46,0x44,0x80,0xb9,0x09,0x15,0x4f,0x7f,0x46, +0x7f,0x4c,0x5f,0x42,0xaf,0x98,0x5b,0xe1,0x2a,0x73,0x4b,0x73, +0x6b,0xec,0x2c,0x75,0xc3,0xfc,0xb1,0xb9,0x2d,0x85,0x9b,0xbb, +0x11,0x8f,0xcd,0xdd,0xe9,0xfd,0xe6,0xcf,0xcd,0x3d,0xcd,0x9f, +0x69,0x8e,0x9a,0x7b,0xe1,0x0f,0xcc,0xbd,0xe9,0xcb,0xe6,0x3e, +0xe6,0xbe,0xe6,0x7e,0xe6,0x2f,0xb5,0x2d,0xe8,0x9b,0xda,0x36, +0xe6,0x81,0xe6,0xfe,0xe8,0x42,0x6c,0x23,0x3a,0x84,0x9a,0x66, +0x1e,0x6c,0x1e,0x84,0x5e,0x53,0xaf,0x54,0x2f,0x35,0x0f,0x37, +0x0f,0x35,0x8f,0x30,0x7f,0x6d,0x1e,0x46,0xf5,0x55,0xef,0x32, +0x0f,0x31,0x4f,0x23,0xff,0x40,0xd6,0x13,0x13,0xe9,0x07,0xd4, +0x16,0xf3,0x48,0x62,0x2e,0x32,0xc9,0x3c,0x46,0x7b,0xde,0x3c, +0xd5,0x3c,0x05,0xbd,0x4e,0xbf,0xc0,0x08,0xfe,0xa5,0xe6,0xb8, +0xf6,0x09,0x51,0xea,0x6c,0x60,0x9e,0x6f,0x5e,0x60,0x9e,0x43, +0xe5,0x6a,0x73,0xcd,0x21,0xe6,0x60,0x6a,0xba,0x39,0xdc,0x1c, +0x63,0x8e,0x22,0xff,0x34,0x2f,0x34,0x27,0x9b,0xe3,0xcd,0x49, +0xe6,0x44,0x73,0x8a,0x39,0x9d,0x2e,0xc4,0x36,0x69,0x32,0xcc, +0x19,0xe6,0x4c,0xf5,0x8f,0xe6,0x3c,0x64,0x03,0xb7,0xca,0x9c, +0x4f,0xc4,0x9a,0x0b,0xb0,0xbf,0xcc,0x85,0x94,0x3f,0x62,0x26, +0xca,0xf0,0x11,0xda,0x1b,0x78,0x73,0x73,0x11,0x7a,0xd3,0x5c, +0xac,0x1d,0xa6,0xf9,0x40,0x5b,0x0f,0x9d,0x61,0x5e,0x42,0x2c, +0xe3,0x6f,0x9a,0x4b,0xcd,0xe5,0x98,0x87,0x4e,0x31,0xaf,0xc6, +0x1f,0xc2,0xac,0x79,0x8d,0x79,0x2d,0x1c,0xe3,0xb2,0x98,0x37, +0x9a,0x37,0x6b,0xd5,0x68,0x63,0xe4,0x0c,0xcc,0x99,0x7f,0xa0, +0xd7,0x6a,0xda,0xc0,0xfd,0xcd,0x07,0xcc,0xfb,0xcc,0xdb,0x70, +0x1a,0xb9,0xa9,0xd9,0x60,0xde,0x61,0xde,0x6e,0xde,0x6b,0xde, +0x69,0xde,0xe3,0xc9,0xa6,0x7e,0x31,0xef,0x86,0x07,0xc0,0x3f, +0x9b,0xf7,0x9b,0x8f,0x9a,0xcf,0x9a,0xcf,0x99,0x8f,0x9b,0x8f, +0x99,0x8f,0x98,0x0f,0x6b,0x8a,0x35,0x5f,0x99,0x4f,0x9a,0x4f, +0x3b,0x9e,0x13,0x4f,0xd0,0x7a,0xea,0x1b,0xe6,0x53,0xb0,0xbf, +0xf9,0x9a,0xf9,0xb6,0xf9,0x2a,0x42,0x9a,0x2f,0x9a,0x6f,0x99, +0x7f,0xd2,0x36,0x22,0xbb,0x9b,0xff,0x80,0x07,0xa1,0x71,0xda, +0x3c,0xf3,0x53,0x4f,0xbe,0xf9,0xb1,0xf9,0x21,0x99,0xea,0x0c, +0x31,0x3f,0xa2,0xfa,0x99,0xff,0x54,0x97,0x68,0x3d,0xe6,0xbf, +0xcd,0xff,0xd0,0x03,0x3c,0x05,0x74,0x5b,0xed,0x4d,0x8b,0x96, +0x9c,0x67,0x81,0x88,0xa7,0xe6,0xd7,0x16,0xb5,0x05,0xb7,0x10, +0xda,0x7b,0xf8,0x55,0x0b,0x65,0xe1,0x88,0x3f,0xe9,0x76,0x16, +0x12,0xce,0xb4,0x18,0xa8,0x4d,0x16,0x9d,0x45,0x6f,0xb1,0x61, +0x8f,0xa8,0xef,0x2c,0xbe,0x16,0x8f,0xc5,0xa5,0xde,0xed,0x9c, +0xe4,0xdc,0x60,0xe1,0x2d,0x75,0x2c,0xb5,0xf1,0xed,0xd8,0x9f, +0x96,0xba,0xda,0xfb,0x16,0xaf,0xa7,0xc8,0xfc,0x86,0xfe,0x93, +0x9c,0xaf,0xbd,0xe5,0x29,0xb6,0x7c,0x64,0xf1,0xb7,0xb4,0xb4, +0x04,0x58,0x9a,0x58,0x9a,0x59,0x1a,0x3a,0x31,0x42,0x83,0x22, +0xb4,0x8a,0x86,0x9d,0x06,0xcf,0x52,0xcb,0xc7,0x96,0xd6,0x96, +0x36,0x96,0xb6,0x96,0x0e,0x96,0x4f,0xc8,0x05,0x96,0xf6,0xda, +0xe1,0x96,0xa6,0x96,0x8e,0x96,0x4f,0x89,0x67,0x96,0x6e,0xc4, +0x11,0x4b,0x27,0x4b,0x17,0xfd,0x49,0xfd,0x2e,0xe3,0x1a,0xcb, +0x67,0x96,0xcf,0xd1,0x78,0xfe,0x05,0x93,0x8e,0x24,0xf1,0xb9, +0x74,0x38,0x72,0xdf,0xd2,0x1b,0xfe,0xc6,0x32,0xd0,0x32,0xc8, +0xd2,0x8f,0x7c,0x6e,0xe9,0x6f,0x19,0x60,0x19,0x61,0x19,0x6c, +0x19,0x6a,0x19,0x82,0xab,0xd1,0xfa,0x70,0x91,0x65,0xa4,0x65, +0x8c,0x65,0xb4,0x76,0x8b,0x76,0xb2,0x65,0x9c,0xb3,0xa9,0x65, +0x06,0x35,0x40,0xa0,0x2d,0x13,0x2d,0xd3,0x2c,0x33,0x2d,0x53, +0x2d,0xe3,0xe9,0x2b,0x96,0x10,0x4b,0x90,0x25,0x90,0xee,0x65, +0xc9,0xb6,0x64,0x59,0x32,0x2d,0x05,0x96,0x62,0x4b,0xbe,0xa5, +0xd4,0x52,0x62,0x59,0x66,0x29,0xb3,0x0c,0x47,0x6f,0x1b,0x78, +0xcb,0x2a,0xfc,0x2b,0x7c,0x87,0x65,0x0d,0xfa,0xab,0x65,0xad, +0xba,0xd4,0xb2,0xc9,0xb2,0x01,0x39,0x67,0x59,0x6f,0xd9,0xaa, +0x31,0x58,0xb6,0x59,0xf6,0x58,0xf6,0xa1,0x31,0x96,0xcd,0x58, +0x77,0x7a,0xbb,0x65,0xbf,0xe5,0x00,0xf1,0x97,0xe5,0x20,0xed, +0xa2,0x9a,0x58,0x8e,0x58,0x4e,0xe1,0x3b,0x2d,0x27,0x3c,0xcb, +0xe8,0x2f,0x2c,0x47,0x2d,0xc7,0x89,0xe1,0x44,0x47,0x6a,0xa0, +0xe5,0xac,0xbb,0xdc,0x72,0xcd,0x72,0xde,0x72,0xce,0xf2,0x8b, +0xe5,0xaa,0xed,0xa4,0xe5,0x06,0x72,0xde,0x72,0xdd,0x72,0x9f, +0x18,0xa1,0x7d,0x4a,0xbe,0xb6,0x3c,0xb4,0xfc,0x86,0x0e,0xc5, +0x36,0x93,0x7f,0x59,0x7e,0xb7,0xfc,0x41,0x0f,0xb7,0x3c,0x21, +0x48,0xcb,0x33,0x44,0x8b,0xff,0x66,0xf9,0x87,0x34,0x59,0x6b, +0x79,0xca,0x51,0xd4,0x0a,0x69,0xfa,0x23,0x5d,0xe8,0x5a,0xc4, +0x51,0x2b,0xe6,0xa9,0x20,0xb4,0xce,0xd6,0xf8,0x6e,0xcc,0x5f, +0xe3,0x6b,0xd5,0xe0,0x7b,0xb4,0xab,0xad,0x3a,0xd4,0x9f,0xfe, +0xc3,0xca,0x58,0x69,0x67,0x1d,0x64,0x0c,0x7d,0x17,0xce,0xc6, +0xf7,0x5a,0xf5,0x56,0x16,0xfb,0x81,0xbc,0x44,0x7c,0x63,0x35, +0x5a,0x6d,0x68,0xb1,0xd5,0x6c,0xb5,0x78,0xbe,0xb5,0x1a,0x88, +0x68,0xb2,0xd8,0xb3,0x42,0x73,0x92,0x18,0x85,0x50,0x56,0x87, +0xd5,0x65,0xad,0xab,0x39,0x65,0xfd,0xc0,0xb3,0xd2,0xea,0xb5, +0xfa,0x5b,0x6b,0x93,0x66,0xab,0x2f,0xad,0xc1,0xb6,0x7b,0x56, +0x59,0xeb,0xe0,0xc1,0xd4,0x0c,0xf5,0x6b,0x75,0x99,0x35,0xc0, +0xda,0x10,0x1d,0x66,0xfd,0x10,0xbd,0x63,0x6d,0x44,0xb7,0xb7, +0x7e,0xe4,0x1c,0x67,0x6d,0x6d,0x6d,0x65,0x6d,0x67,0x6d,0xab, +0xbd,0x68,0xfd,0xc4,0xda,0xc1,0xda,0x11,0x19,0x62,0xf6,0xc7, +0xaf,0x09,0x16,0x6b,0x17,0x7c,0x9f,0xb5,0x3f,0xfa,0x37,0x83, +0x5a,0x07,0x58,0x07,0xf2,0x0f,0xad,0x83,0xac,0x83,0xad,0x43, +0xa8,0x99,0xd6,0xa1,0xd6,0x61,0x70,0x3c,0xe9,0xa3,0xfd,0x19, +0xeb,0x8d,0xde,0xd5,0xee,0x82,0x87,0x6a,0x47,0x58,0x47,0x23, +0x34,0x31,0xcf,0x3a,0xca,0x3a,0x5e,0xf3,0x3d,0xf5,0xc8,0x3a, +0xd6,0x3a,0x0e,0xe9,0x6a,0x9d,0xa0,0xb5,0x68,0xda,0x6a,0xa3, +0xc8,0x66,0xd6,0x31,0xd4,0x2c,0x78,0xa2,0x75,0x12,0x7d,0x5c, +0x73,0x99,0xbe,0x8f,0xed,0xb0,0x4e,0xb4,0x06,0x11,0xcb,0xad, +0x53,0xb1,0x45,0xd8,0x4e,0x74,0xb8,0x75,0x8a,0x75,0xb2,0x75, +0xba,0x75,0x06,0x7a,0xcf,0x3a,0xcd,0x3a,0x47,0xe3,0x63,0x9d, +0x8d,0xf8,0x5a,0xe7,0x5a,0xe7,0x7b,0xd6,0x5b,0x03,0xad,0xc1, +0xd8,0x2b,0x6b,0x28,0xf1,0xdc,0x1a,0x6e,0x8d,0xd0,0x5e,0xf2, +0x6c,0x40,0x3e,0xb5,0x26,0x5a,0x13,0xac,0x71,0xd6,0x45,0xd6, +0x74,0x6b,0x06,0xdd,0x81,0x0c,0xb1,0xe6,0x58,0xb3,0xac,0xd9, +0xd6,0x5c,0xeb,0x62,0x6b,0xbe,0xb5,0xc8,0x5a,0x62,0x2d,0xb6, +0x16,0x12,0x81,0xd6,0x65,0xd6,0x0a,0x6b,0x99,0x75,0x8d,0x75, +0xb5,0x75,0x9d,0x75,0xad,0x75,0xbd,0x75,0xa3,0x75,0x13,0x41, +0x59,0xb7,0x20,0xb7,0xac,0x5b,0xad,0x3f,0x58,0x77,0x58,0xb7, +0xe1,0x90,0x75,0x17,0xd2,0x0d,0xc5,0xc9,0xe6,0xd6,0x3d,0xd6, +0x7d,0xd6,0xbd,0x68,0x03,0xeb,0x01,0xac,0x87,0xf5,0xa0,0xf5, +0x88,0xf5,0x18,0xd5,0xd4,0x7a,0xd8,0x7a,0xd2,0x7a,0x1c,0xe9, +0xae,0x65,0xe8,0x22,0x9a,0xb4,0x9e,0xb5,0x5e,0xa0,0xeb,0xc1, +0x47,0xac,0xe7,0xac,0x3f,0x5b,0x7f,0x22,0xeb,0x5b,0x7f,0x41, +0x5e,0x59,0xaf,0x58,0xaf,0x5a,0xaf,0x11,0xb4,0xf5,0x3a,0xf6, +0x93,0xf5,0x06,0xb3,0x91,0xd9,0x60,0xbd,0x65,0x7a,0x63,0xbd, +0xad,0x19,0x81,0x3f,0x26,0x9f,0x51,0x82,0xbb,0x3b,0xc6,0xb8, +0xea,0x13,0x0e,0xeb,0x5d,0xc7,0x15,0xf2,0xb8,0xf5,0xbe,0xf6, +0x43,0xeb,0x03,0x7c,0x30,0x75,0xdc,0xfa,0xb7,0xf5,0x77,0xeb, +0x63,0x4d,0x3b,0xe2,0x85,0xf5,0x11,0x32,0xc5,0xfa,0xa7,0x0d, +0x22,0xc3,0x34,0x8b,0xad,0x4f,0x48,0x2b,0xf9,0x99,0xf5,0x0f, +0xeb,0x5f,0x4e,0x97,0x73,0xb0,0xe6,0x0e,0x31,0xda,0xfa,0x4c, +0x43,0x69,0xd4,0xd6,0xa7,0xee,0x6e,0xf4,0x41,0xbc,0x2d,0xc1, +0x58,0x5f,0x59,0x5f,0xaa,0xd7,0x59,0x5f,0x0b,0x08,0xd1,0xd0, +0xe6,0x43,0x7b,0xd4,0xd7,0xa8,0xda,0xf0,0x70,0xeb,0x3f,0xd6, +0x37,0x36,0x95,0xad,0x16,0x99,0xa6,0x19,0xae,0x5e,0x66,0x83, +0x6d,0x88,0xa3,0x09,0x6c,0x70,0xd6,0xf5,0x6c,0xb1,0x61,0xa4, +0x97,0x78,0x89,0xfb,0xd8,0x70,0x7c,0x8a,0x8d,0x20,0x56,0x12, +0x2b,0xe8,0x34,0x1b,0xa5,0x8d,0xb6,0x31,0x36,0xda,0xa6,0x35, +0x35,0x43,0x18,0x1b,0x6b,0xd3,0xa1,0x84,0xcd,0x4c,0x7e,0x6b, +0xf3,0x38,0x59,0x9c,0xd4,0xea,0x34,0xab,0x08,0x3f,0x1b,0x6f, +0xf3,0xd2,0x03,0x6d,0x75,0x6c,0xb5,0x31,0x18,0x4b,0xb4,0x05, +0xd8,0x3e,0x74,0xda,0x6c,0x0d,0x6d,0x0d,0xb4,0x23,0xb1,0x0e, +0xb8,0xd6,0xd6,0xd4,0xf6,0x11,0x3d,0x11,0xff,0x9c,0x7a,0x49, +0xa7,0xdb,0x9a,0x21,0x17,0x6d,0xcd,0x3d,0x3b,0x49,0x87,0x67, +0x87,0xad,0x95,0x80,0x13,0x3a,0xcf,0x2e,0x5b,0x0b,0xcd,0x6b, +0xcf,0x5e,0xcf,0x3e,0x2a,0x02,0x79,0x4a,0x7e,0x0f,0x17,0x7b, +0x0e,0xd8,0x3a,0xda,0x3e,0xb1,0x75,0xf0,0x9c,0xf0,0x1c,0xb2, +0xf5,0xf0,0x1c,0x26,0xfd,0x6d,0x5d,0x6c,0xdd,0x6c,0x5d,0x6d, +0x3d,0x3d,0xc7,0x3d,0xc7,0x6c,0x7d,0x60,0x23,0x7e,0xd0,0x73, +0xd2,0xd6,0xdd,0xd6,0x4b,0x73,0xc6,0xd6,0xdb,0xf6,0xb9,0xad, +0xaf,0xe7,0x3c,0xf5,0xb5,0xe7,0x67,0x5b,0x7f,0x2a,0x40,0xbb, +0x49,0xb3,0x1a,0x49,0x75,0xaf,0xb6,0x0d,0xf4,0x5c,0x46,0x1f, +0xd9,0x06,0x10,0x8d,0x89,0x26,0xb6,0xc1,0xb6,0x21,0x9e,0xeb, +0x9e,0xab,0xf8,0x0d,0xcf,0x25,0xdb,0xd7,0xb6,0xa1,0x9e,0x5f, +0x90,0x23,0x38,0x45,0x1f,0xb2,0x7d,0x85,0x8d,0xb5,0x0d,0xb3, +0x8d,0xe0,0x4f,0x92,0xbb,0x6c,0x63,0x3c,0xb7,0x34,0x61,0xb6, +0x6f,0xb0,0x00,0xe2,0x95,0x6d,0x9c,0x6d,0xbc,0xe6,0x8a,0x6d, +0x26,0x59,0xdb,0x36,0xc9,0x36,0xd9,0x36,0xcd,0x36,0xc3,0x73, +0xc7,0x36,0xdb,0x36,0xd5,0x36,0xcf,0x36,0x17,0x3f,0x4c,0x86, +0xdb,0xe6,0xd8,0x42,0x6c,0x41,0xb6,0x48,0xcf,0x7d,0x44,0x67, +0x8b,0x70,0xce,0xb3,0x25,0xd9,0xa2,0x6c,0xc9,0xb6,0x44,0x5b, +0x8a,0x2d,0xcd,0x96,0x4e,0xac,0xa6,0xf4,0xb6,0x4c,0x38,0x16, +0xe1,0x3c,0x0f,0x11,0xd6,0x96,0x85,0xe8,0xe1,0x75,0xe8,0xef, +0xda,0x6e,0xb6,0x02,0x5b,0xbe,0xad,0xc8,0x56,0x68,0x5b,0x66, +0x2b,0xb3,0x55,0xd8,0xca,0x6d,0xcb,0x6d,0x2b,0x6c,0xdf,0xa9, +0xc7,0x6a,0xea,0xd9,0x36,0xda,0xd6,0xa3,0x8f,0x6d,0x1b,0xd0, +0xd9,0x94,0xc1,0xb6,0xc9,0xb6,0xc5,0xb6,0xd9,0xb6,0x55,0xbd, +0x87,0x70,0xe2,0xd1,0x88,0xc1,0xb6,0xcd,0xf6,0x83,0xe6,0x2a, +0x9d,0x41,0x46,0xd8,0xbe,0xa7,0x27,0x23,0x8f,0xe9,0x40,0x4d, +0x7b,0xf3,0x44,0xdb,0x0e,0x38,0x8e,0x68,0x0a,0xaf,0xb7,0xed, +0xb2,0xed,0xb6,0xed,0xe4,0x9f,0x63,0x9f,0xe1,0x47,0x3c,0xbf, +0xdb,0xf6,0xda,0x34,0x9e,0xc7,0xb6,0x03,0xb6,0x7d,0xb6,0xfd, +0xb6,0x43,0xf4,0x7a,0xdb,0x61,0xdb,0x11,0x62,0x92,0xf6,0x73, +0xa2,0x03,0xe2,0x47,0xf3,0xf0,0x24,0xbc,0x3d,0x9a,0x64,0x3b, +0x86,0xed,0xb2,0x9d,0xb0,0x1d,0xb5,0xfd,0x68,0x49,0x25,0xda, +0xd8,0x4e,0xd1,0x93,0xc8,0x43,0x44,0x0c,0x76,0x9d,0xde,0x40, +0x7f,0x69,0x3b,0x47,0xb0,0xb6,0xf3,0xb6,0xd3,0xb6,0x9f,0x6c, +0x3f,0xd3,0x27,0x3d,0x4f,0xf4,0x7a,0xdb,0x35,0xdb,0xaf,0x9e, +0xa7,0xb6,0x9b,0xb6,0xdb,0xb6,0x3b,0x9e,0xbf,0x88,0xb1,0x82, +0x91,0xf6,0xb1,0xdd,0x73,0x20,0xd4,0x05,0xdb,0x43,0x78,0x83, +0xed,0xb1,0xed,0x4f,0xc7,0x2d,0xdb,0x13,0xdb,0x33,0x3b,0x4c, +0xfe,0x64,0x47,0xe1,0x56,0x76,0xc2,0x8e,0x53,0x26,0xcd,0x39, +0x8c,0x45,0x9f,0xe0,0xd3,0xec,0x1a,0xba,0x3e,0xc2,0x6b,0x47, +0x93,0xeb,0x89,0xf6,0x74,0x26,0x35,0x8f,0x8c,0xb4,0x33,0x76, +0xad,0x76,0x0f,0xdd,0xd7,0xae,0xb3,0xeb,0x35,0xdd,0xe0,0xcd, +0xf0,0x16,0x3b,0x87,0x08,0xe8,0x68,0xcf,0x0b,0xc4,0xeb,0xec, +0x4a,0xb6,0xb0,0x5b,0xed,0x16,0xbb,0xdb,0xee,0xd2,0x2e,0x34, +0xb7,0x60,0x76,0xe9,0x2f,0x6a,0xc7,0x60,0xbb,0xa9,0x21,0xf8, +0x6d,0xbb,0x40,0x77,0xb6,0x7b,0xe1,0xc9,0xf6,0xda,0xf6,0x0f, +0xed,0x1f,0x78,0xfe,0x06,0xe6,0xed,0x47,0xf6,0x16,0xf6,0xa6, +0xf6,0x66,0xf6,0xe6,0xb8,0xcb,0xde,0xca,0xde,0x5a,0xfc,0xd6, +0xda,0xfe,0xb1,0xbd,0xad,0x26,0x9b,0xdc,0xa3,0xa9,0xaf,0x7e, +0x89,0xdc,0xd6,0xac,0xb1,0x77,0x42,0xee,0x20,0x9f,0xd9,0x3f, +0x23,0xfe,0x46,0xc7,0xd8,0xfb,0xda,0xfb,0xd9,0x07,0xfa,0xaa, +0x90,0xad,0xf6,0x41,0xf6,0xa1,0xf6,0x21,0xf6,0x61,0xf6,0x11, +0xf6,0xe1,0xe8,0x53,0xdf,0x5a,0xda,0x4e,0xf6,0x69,0xda,0x6c, +0xfb,0x74,0xfb,0x54,0xfd,0x19,0x7b,0xa4,0xa9,0x02,0xe9,0x09, +0x87,0x60,0xbe,0xf6,0x68,0x7b,0x14,0xb5,0xc6,0xbe,0xd0,0x1e, +0x6b,0x8f,0xb1,0x27,0xf8,0xfa,0xa8,0xc3,0x7d,0x61,0x7b,0x92, +0xf6,0x95,0x7d,0x11,0x95,0xcf,0xbf,0xc1,0xc6,0x13,0x6b,0xd0, +0x52,0x7b,0x96,0xbd,0xd8,0xbe,0xd8,0x5e,0x60,0x2f,0xb4,0x97, +0xda,0x4b,0xec,0x4b,0xed,0x2b,0xec,0xe5,0xf6,0xef,0xec,0xcb, +0xe1,0x9d,0xf6,0x95,0xf6,0x0a,0xfb,0x32,0x7b,0x99,0x7d,0x9d, +0x7d,0xad,0x76,0xab,0x7d,0xb5,0xe3,0x8c,0x7d,0x03,0x7c,0xcc, +0xbe,0x44,0xfd,0x93,0x7d,0x93,0x7d,0xa3,0x66,0x82,0x7d,0xaf, +0x7d,0x27,0x35,0x94,0x3a,0x69,0xdf,0x4f,0x66,0xda,0xf7,0xf0, +0xb7,0xec,0x07,0xb0,0xcb,0xf0,0x07,0xf6,0x53,0xf6,0x93,0xf6, +0x0b,0xf6,0xf3,0xea,0x13,0xf6,0x33,0xf6,0xb3,0x4e,0x1f,0x6a, +0x9f,0x2f,0x41,0x0d,0xb3,0x5f,0xf6,0xc5,0xed,0x77,0xec,0xb7, +0xed,0xb7,0xec,0xf7,0xed,0xbf,0x69,0xba,0x63,0x5f,0xfb,0x92, +0xf6,0x3f,0xec,0x4f,0xd1,0xb1,0xf6,0xbf,0x1c,0x7f,0xdb,0x9f, +0xdb,0xdf,0xd8,0xff,0xa6,0xaf,0x3b,0x6a,0x69,0x9b,0x38,0x20, +0x87,0xda,0x09,0x39,0x67,0x39,0x7c,0xd0,0x37,0xd4,0x4f,0x54, +0x0a,0x1b,0xa9,0x7f,0x43,0x55,0xf0,0x29,0x70,0x3d,0x07,0x8a, +0x8c,0x77,0x60,0x0e,0xdc,0x41,0xf8,0x6a,0x31,0xd4,0xa8,0xa5, +0x7e,0xd5,0x74,0x70,0x90,0x0e,0xca,0xa1,0x25,0x4e,0x38,0x9c, +0x0e,0x8f,0x89,0xb0,0x2e,0xb0,0x23,0x0e,0xc1,0xe1,0x75,0xd4, +0xa6,0x37,0x39,0x78,0x87,0xbf,0xa3,0xbe,0xa3,0x81,0xa9,0xb6, +0xc0,0x0a,0x7a,0xf7,0x45,0xf7,0x2d,0x67,0x7b,0xfe,0xb6,0xc7, +0xe3,0x69,0xe8,0x69,0x2c,0x18,0x3c,0x23,0x3d,0x0b,0x3c,0x11, +0x9e,0x48,0x4f,0x94,0x27,0xc6,0x13,0xef,0x49,0xf4,0x64,0x79, +0x96,0x08,0x66,0x4f,0xa9,0xe7,0x3b,0xcf,0x46,0xfe,0xae,0x67, +0xb3,0x67,0x9b,0xe7,0x82,0xe7,0x8a,0xe7,0x91,0xe7,0x95,0xe7, +0xb5,0xe7,0x1f,0x5f,0x0d,0xbf,0x9b,0xff,0x8e,0xdf,0xc3,0xe7, +0xf3,0xdb,0x1d,0x37,0xf8,0xf5,0x7c,0x36,0xbf,0x8f,0x5f,0xc5, +0xaf,0x11,0x4c,0xfc,0x2e,0xbe,0x9c,0xdf,0xca,0x67,0x38,0xf5, +0x7c,0x16,0xbf,0xd4,0xd9,0x84,0xdf,0xc1,0x97,0xf0,0xc5,0x7c, +0x0e,0x7f,0x80,0x5f,0xc9,0x2f,0xe3,0xd3,0xf8,0x4d,0x7c,0x11, +0xbf,0x99,0x5f,0xc1,0x9f,0xe0,0xb7,0xf1,0x15,0x7c,0x29,0x5f, +0xc6,0x2f,0xe1,0x93,0xf8,0x02,0x7e,0x27,0xbf,0x96,0x4f,0xe4, +0xb7,0xf0,0x79,0xce,0x89,0xee,0x1e,0xce,0x13,0xce,0x93,0xce, +0x8b,0xce,0x33,0xce,0xb3,0xce,0xd3,0xce,0x9f,0x9d,0xbf,0x38, +0xaf,0x39,0xaf,0x3b,0x2f,0x39,0x2f,0x3b,0xef,0x3b,0x1f,0x38, +0x6f,0x39,0x6f,0x3b,0x6f,0x38,0x6f,0x3a,0x7f,0x75,0xde,0x71, +0xde,0x75,0xde,0x83,0xc2,0x5d,0x5d,0xa0,0xa3,0xd0,0x41,0xe8, +0x08,0x74,0xcc,0xd5,0x19,0x5a,0x02,0x2d,0x85,0x8e,0x43,0xeb, +0xa1,0x40,0x68,0x03,0x14,0x04,0x65,0x41,0x21,0x50,0x28,0xb4, +0x15,0xda,0x0c,0x6d,0x83,0xc2,0xa0,0x13,0x50,0x19,0x94,0x0d, +0x2d,0x83,0x16,0x42,0x71,0x50,0x34,0x54,0x0e,0xe5,0x41,0x15, +0x50,0x0e,0x74,0x08,0x3a,0x0c,0x3d,0x82,0x62,0x5d,0x9d,0xa0, +0x03,0x2a,0xf1,0x09,0xa7,0x5a,0x03,0x94,0xe7,0x31,0xec,0x35, +0x7f,0x81,0x5c,0xeb,0x1d,0x40,0x0a,0xc4,0xb4,0x8f,0x02,0x31, +0xad,0x56,0x20,0xa6,0x61,0x05,0x62,0x1a,0x51,0x20,0xa6,0x51, +0x05,0x62,0x1a,0x53,0x20,0xa6,0x71,0x05,0x62,0x9a,0x50,0x20, +0xa6,0x35,0x0a,0xc4,0x34,0xa9,0x40,0x4c,0x6b,0x15,0x88,0x69, +0x4a,0x81,0x98,0xa6,0x15,0x88,0x69,0x46,0x81,0x98,0xd6,0x29, +0x10,0xd3,0xac,0x02,0x31,0xcd,0x29,0x10,0xd3,0x7a,0x05,0x62, +0xda,0xa0,0x40,0x4c,0x1b,0x15,0x88,0x69,0x93,0x02,0x31,0x6d, +0x56,0x20,0xa6,0x2d,0x0a,0xc4,0xb4,0x55,0x81,0x98,0xb6,0x29, +0x10,0xd3,0x76,0x05,0x62,0xda,0xa1,0x40,0x4c,0x3b,0x15,0x88, +0x69,0x97,0x02,0x31,0x2d,0x3e,0x17,0xf6,0x95,0x92,0x1e,0xac, +0x40,0x7c,0x2f,0xbe,0xf8,0xde,0xfc,0x05,0x00,0xe2,0xaf,0x13, +0x03,0x15,0x88,0xef,0xf4,0x0d,0x52,0x20,0x3e,0x71,0x1e,0xac, +0x40,0xfc,0xa5,0x6a,0x91,0x02,0xb1,0x1d,0xf1,0xff,0x3e,0x89, +0x6f,0xb0,0x15,0xdf,0x52,0x5b,0xa2,0x40,0x7c,0x23,0x64,0xa9, +0x02,0xf1,0xcd,0xc7,0x65,0x0a,0xc4,0x7e,0x96,0xc9,0x80,0xc4, +0xa7,0x6f,0xcb,0x65,0x40,0x31,0x20,0xae,0x50,0x20,0xfe,0xfa, +0x6d,0xb9,0x02,0xf1,0x17,0xe1,0xdf,0x2a,0x10,0xdf,0x0b,0xbd, +0x42,0x81,0xf8,0xe6,0xc5,0x95,0x0a,0xc4,0xf7,0xe9,0x7d,0xa7, +0x40,0xfc,0x0d,0xdd,0x2a,0x05,0xe2,0x5b,0x9d,0x56,0xcb,0x80, +0xf6,0x80,0x78,0x8d,0x0c,0x48,0x7c,0xa2,0x46,0x7c,0xaa,0x53, +0xfc,0x77,0x2a,0x05,0x00,0xeb,0x65,0x40,0xe2,0xff,0xc5,0xd9, +0xa0,0x40,0x7c,0x23,0xdb,0x46,0x19,0x3e,0x22,0xdd,0x7c,0xaf, +0x60,0x16,0xc0,0x26,0x05,0xe2,0x2f,0xb7,0x37,0x2b,0x10,0xd7, +0x62,0x8b,0x02,0xf1,0x97,0xc8,0x5b,0x15,0x88,0x6b,0x2a,0xfe, +0x52,0x7f,0xbb,0xb2,0x4e,0x3b,0x14,0x88,0xeb,0x28,0xfe,0x6a, +0x7f,0x9f,0xb2,0x5e,0xfb,0x15,0x88,0x6f,0x1e,0x3e,0x00,0x70, +0x4e,0x99,0xff,0x79,0x19,0x90,0xd8,0xf7,0x05,0x05,0xe2,0x13, +0xa0,0xe2,0xfb,0xd9,0x2e,0x2b,0x7d,0x5c,0x51,0x20,0xfe,0x4a, +0x50,0x7c,0x16,0x4e,0x7c,0xc7,0xae,0xf8,0x3f,0x1f,0x6e,0x2b, +0x10,0xdf,0x32,0x2e,0xfe,0xb7,0x8b,0x67,0x4a,0xdb,0x7f,0xc9, +0x80,0xc4,0x39,0x3c,0x57,0x20,0xfe,0xb6,0x50,0x7c,0x93,0xfd, +0x1b,0xb9,0x8f,0x5a,0x0d,0x65,0xa8,0x52,0x41,0xfc,0x89,0x0c, +0xd5,0x22,0x10,0xb7,0x97,0xa1,0x4a,0x03,0x71,0x6f,0x19,0xaa, +0x24,0x10,0xf7,0x91,0xa1,0xca,0x00,0xf1,0x30,0x19,0xe2,0x98, +0x6a,0x0d,0x97,0xa1,0xba,0x01,0xe2,0xb9,0x32,0xc4,0x31,0xd6, +0x0a,0x92,0xa1,0xba,0x06,0xe2,0x60,0x19,0xe2,0xb8,0x6b,0xa5, +0xca,0x50,0x8d,0x03,0xe3,0xdb,0x2a,0x43,0x35,0x02,0xc4,0xdb, +0x64,0xa8,0x40,0xbb,0xd0,0x7e,0x19,0x2a,0x20,0x57,0xa0,0x43, +0x32,0xc4,0xbd,0x86,0x0e,0xcb,0x50,0x85,0x80,0xf8,0x88,0x0c, +0x15,0x18,0x37,0x74,0x51,0x86,0x0a,0xec,0x2f,0xf4,0x8b,0x0c, +0xd5,0xd0,0x6a,0x31,0x23,0x96,0xf1,0x01,0x74,0xec,0x03,0xc9, +0x75,0x7d,0x7c,0x64,0x48,0x65,0xd4,0x32,0xc4,0xf6,0x7d,0x60, +0x19,0xaa,0xeb,0x20,0x06,0xb2,0xc7,0x47,0x94,0x33,0xe1,0x32, +0x7d,0x48,0x34,0x02,0xda,0xf7,0xd1,0xc8,0x50,0x01,0x7a,0xf6, +0x21,0x65,0xa8,0x62,0x41,0x5c,0x5b,0x86,0x48,0x33,0x3e,0x75, +0x64,0xa8,0x16,0x82,0xb8,0x91,0x0c,0x55,0x3b,0x10,0x7f,0x24, +0x43,0x15,0x07,0x62,0xb0,0x67,0x3e,0x80,0x5e,0x7c,0xfe,0x00, +0x00,0xbc,0xe5,0x03,0xf8,0x42,0x2d,0x8e,0x05,0xd0,0xaf,0x0f, +0xd8,0x5b,0xb5,0xd8,0x0f,0xa0,0x69,0x1f,0x30,0x77,0x35,0xe0, +0x7f,0x75,0x2d,0x05,0x1f,0x00,0x00,0xf9,0xa4,0x06,0x72,0x46, +0xed,0x07,0x00,0x64,0x8c,0xba,0x29,0x40,0x5d,0x00,0xd0,0xb6, +0xfa,0x73,0x80,0xee,0x00,0x5f,0x28,0xe8,0x06,0x44,0x02,0x24, +0x43,0xa4,0x11,0xb7,0x8f,0x0c,0x68,0x1e,0x88,0x19,0x19,0x10, +0xa0,0x2b,0xb7,0x4e,0x86,0x28,0x13,0xdd,0xac,0x0c,0xd5,0x74, +0x10,0x73,0x32,0xa4,0xb4,0x5e,0x86,0x38,0x7e,0xb7,0x41,0x06, +0x04,0xe8,0xc1,0x6d,0x94,0x01,0x01,0xde,0x74,0x9b,0x65,0x88, +0x7b,0xea,0xb6,0xc8,0x10,0xf7,0xd4,0x6d,0x95,0xa1,0x02,0xf4, +0xe1,0xb6,0xcb,0x50,0x4d,0x04,0xb1,0x43,0x86,0x6a,0x3e,0x88, +0x9d,0x32,0x54,0xe2,0xd8,0x80,0x1c,0x73,0x7b,0xe4,0x3d,0x70, +0xfb,0xca,0x50,0xcd,0x01,0xb1,0x20,0x03,0x02,0x7c,0xed,0xf6, +0xca,0x80,0xf2,0x41,0xdc,0x40,0x86,0xb8,0x97,0x6e,0xb0,0xde, +0xee,0xc6,0x20,0x7f,0x2f,0x88,0x5b,0x00,0x88,0xff,0x33,0x66, +0x32,0x88,0x5b,0xc9,0x80,0x00,0x5f,0xb9,0x3f,0x96,0x21,0xee, +0xb5,0xbb,0xa3,0x0c,0xd5,0x58,0x10,0x0f,0x92,0xe1,0x04,0xf4, +0xe4,0xfe,0x5a,0x86,0x13,0xf0,0xa2,0x7b,0x85,0x0c,0xf1,0x89, +0x06,0x8f,0x8f,0x0c,0x91,0x46,0x3d,0xb8,0x0c,0xf7,0x34,0x10, +0x13,0x32,0xdc,0x53,0x41,0xcc,0xc9,0x70,0x0d,0x04,0xb1,0x51, +0x86,0x03,0xc8,0x0e,0x8f,0x47,0x86,0x0b,0xcc,0xc5,0xe3,0x2b, +0x43,0x75,0x13,0xc4,0xf5,0x64,0x88,0x74,0xe9,0x69,0x25,0xc3, +0x3d,0x03,0xc4,0x60,0xed,0x3c,0x80,0x57,0x1c,0x40,0x06,0x7a, +0xc6,0x03,0x4c,0x90,0xd7,0xc5,0x23,0xf6,0x01,0xd6,0xc9,0x05, +0xe6,0xee,0x01,0x6b,0xe7,0x01,0x72,0xc8,0x2d,0xde,0x0f,0x91, +0xe1,0x9e,0x02,0x62,0x20,0xa7,0x3c,0x80,0xce,0x20,0xc0,0x83, +0x9e,0x54,0x19,0x10,0xe0,0x4d,0x4f,0x9a,0x0c,0x08,0xf0,0xac, +0x07,0xac,0x91,0x07,0xc8,0x28,0xf7,0x6c,0x10,0xef,0x97,0xe1, +0x06,0x32,0xd0,0x73,0x5a,0x06,0xf4,0x3b,0x88,0xcf,0xc8,0x80, +0x1e,0x83,0xf8,0xb6,0x0c,0xd7,0x67,0x20,0xfe,0x55,0x86,0xab, +0x07,0x88,0xef,0xc8,0x70,0xf5,0x04,0xf1,0x5d,0x19,0x2e,0x40, +0x87,0x9e,0x3f,0x65,0xb8,0xc1,0xbe,0x8b,0x53,0x15,0x01,0x3d, +0x01,0x31,0x24,0x03,0x02,0x72,0xca,0xd7,0x47,0x06,0x04,0x78, +0xc1,0x17,0x95,0x01,0x01,0x99,0xe5,0x8b,0xc9,0x80,0x80,0xdc, +0xf0,0xd5,0xc8,0x80,0x40,0xdf,0xbe,0x3a,0x19,0x0e,0xc0,0x1b, +0xbe,0xac,0x0c,0x08,0xc8,0x74,0x5f,0x8b,0x0c,0x51,0x86,0xfb, +0x5a,0x65,0x40,0x7f,0x83,0xd8,0x21,0x03,0x02,0xb2,0xcf,0xd7, +0x29,0x03,0x02,0x32,0xda,0xd7,0x25,0xc3,0x71,0x0c,0xc4,0x6e, +0x19,0xd0,0x53,0x10,0x03,0x3e,0xf6,0x05,0xfc,0x0b,0x3d,0x04, +0xf1,0x07,0x32,0xa0,0x07,0x20,0xae,0x2b,0x03,0xba,0x0f,0x62, +0xb0,0x57,0xbe,0xf5,0x65,0xb9,0xe2,0xfb,0xa1,0x0c,0x91,0xaf, +0x7c,0xfd,0x65,0x38,0x0e,0x82,0xb8,0x89,0x0c,0x08,0xe8,0x01, +0xdf,0xa6,0x32,0x44,0xb1,0xe3,0xdb,0x5a,0x86,0xa8,0x67,0x7d, +0xdb,0xc8,0x80,0xc4,0x37,0xe0,0xf5,0x96,0x01,0xbd,0x04,0xf1, +0x30,0x19,0x10,0xa0,0x19,0xdf,0xe1,0x32,0x20,0x20,0xbf,0x7d, +0x47,0x03,0x8c,0x01,0xe9,0x1f,0x40,0x0c,0xf6,0xdb,0x17,0xd0, +0x03,0xf4,0x0a,0xc4,0x40,0x4e,0xf9,0x46,0x80,0x34,0x58,0x77, +0x5f,0x20,0x83,0x7c,0x81,0x7c,0x82,0xc0,0xde,0xf8,0x96,0xca, +0x80,0xc0,0x1e,0xf8,0xee,0x90,0xe1,0x10,0x7f,0x69,0xcf,0xca, +0x80,0x80,0xce,0xf0,0x03,0xf3,0xf3,0x13,0xe7,0x05,0xf4,0x91, +0x1f,0xd0,0xdb,0x7e,0x40,0x16,0xb9,0xc0,0x1e,0xf9,0x01,0x9d, +0xec,0x07,0xf4,0xaf,0xeb,0x37,0xe5,0xa9,0x0b,0x40,0x8f,0x8e, +0x08,0xf9,0xd9,0x25,0x1e,0xb4,0xef,0x8a,0x91,0x9f,0xed,0x11, +0x9f,0xcc,0x71,0x05,0x2b,0x6f,0xdb,0x03,0xfb,0xe0,0x02,0xfa, +0x98,0xbf,0x27,0x43,0xe4,0x63,0xe9,0x7d,0x79,0x80,0x16,0x1c, +0xcd,0xe4,0x27,0x13,0x45,0x88,0x7c,0x28,0xbe,0xf3,0x4d,0x84, +0x1b,0xac,0x85,0x30,0x5c,0x86,0xc8,0x93,0xc2,0x78,0x19,0x6e, +0xb0,0x2e,0xc2,0x24,0xf9,0x49,0x49,0xb7,0x58,0x77,0x8a,0x0c, +0x91,0x9f,0xc5,0x27,0x33,0x45,0x88,0xfc,0x2d,0x00,0xde,0x13, +0xc0,0xd8,0xdc,0x9d,0x40,0x1c,0x26,0x3e,0xbf,0x2a,0xcb,0x05, +0x21,0x56,0x86,0xbb,0x49,0xf5,0x53,0xc0,0xa2,0x5c,0x10,0xe2, +0x65,0x88,0x72,0x42,0x7e,0xd2,0x18,0xa4,0x81,0x2e,0x14,0x16, +0xc9,0x10,0xe5,0x88,0xfc,0xfc,0x2b,0x48,0x07,0x80,0x38,0x49, +0x86,0xdb,0x5f,0x79,0x7e,0x58,0x94,0x79,0x4d,0x2b,0x9f,0xa1, +0x06,0xeb,0x06,0xe4,0x83,0x50,0x2c,0x03,0xba,0xa0,0x3c,0xc7, +0x0d,0xe0,0xfa,0x5c,0x7e,0xbf,0x9c,0x08,0xe8,0x67,0x10,0xaf, +0x93,0x21,0xea,0x2a,0xe1,0x7b,0x19,0xae,0x6e,0xca,0x3b,0xbb, +0x44,0xfd,0x77,0x09,0xc4,0x3f,0xc8,0x10,0x75,0x98,0xb0,0x4b, +0x86,0xeb,0x53,0xf9,0x0d,0x4e,0x22,0x20,0x60,0x2b,0x08,0x07, +0x64,0x40,0xe2,0x7b,0xb8,0x0e,0xc9,0x10,0xe5,0xb5,0x70,0x44, +0x06,0xf4,0xa3,0xf2,0x46,0x31,0x00,0xe8,0x2c,0x88,0x4f,0xc8, +0x80,0xce,0xc8,0xef,0x75,0x12,0x00,0xdf,0xbb,0xdb,0x56,0xbf, +0x01,0xcc,0x2d,0xbe,0x5b,0xf0,0x96,0x0c,0x37,0xd0,0x95,0xc2, +0x23,0x19,0xa2,0x9e,0x13,0x1f,0x45,0xf1,0x8a,0x3a,0x03,0xd8, +0xaf,0x5e,0x58,0x06,0x04,0xe4,0x82,0xf4,0x86,0x03,0x00,0xe8, +0x94,0xfc,0xf6,0x35,0x11,0xae,0xb9,0xca,0x7b,0x98,0x1c,0xb2, +0x7c,0x97,0xdf,0x29,0x07,0xd2,0xc0,0x96,0xf5,0xba,0x64,0x88, +0xf2,0x5d,0x7c,0x5f,0x84,0x08,0x68,0xb7,0xf2,0x0e,0x24,0x00, +0x68,0x97,0xf8,0xce,0x22,0x19,0xa2,0xbe,0xf1,0x0e,0x97,0xe1, +0xfa,0x42,0x7e,0xaf,0x91,0x08,0x17,0xb0,0x3f,0xbc,0xdf,0xc8, +0x10,0x75,0x4f,0xe5,0xfb,0x78,0x5c,0x80,0x67,0xbc,0xa3,0x64, +0x88,0xfa,0xc9,0x3b,0x5a,0x86,0xa8,0x93,0xbc,0x63,0x64,0xb8, +0x00,0xcd,0x49,0x6f,0xeb,0x01,0xf0,0x01,0xf2,0xc5,0x3b,0x49, +0x86,0xa8,0xe7,0xbd,0x53,0x64,0x88,0xba,0xbf,0x36,0x90,0x83, +0xb5,0x01,0x2d,0xbb,0x01,0x5d,0xd6,0x2e,0x96,0xe1,0x06,0x73, +0xab,0x07,0xee,0xd5,0x03,0xf5,0xdc,0xc0,0x4f,0xa8,0x97,0x21, +0x43,0xcc,0xf7,0x4f,0x94,0xc1,0x00,0x1a,0xf4,0x4f,0x96,0xc1, +0x82,0x45,0xf3,0x4f,0x95,0x41,0x81,0xbd,0xf7,0x4f,0x93,0xc1, +0x02,0xde,0xf1,0x4f,0x97,0xc1,0x02,0xde,0xf2,0xcf,0x91,0xc1, +0x01,0x3d,0xef,0x9f,0x27,0x83,0x03,0xb2,0xda,0xbf,0x50,0x06, +0x05,0xf8,0xc2,0xbf,0x48,0x06,0x05,0x68,0xc2,0x7f,0x97,0x0c, +0x14,0xd0,0xae,0xff,0x5e,0x19,0x04,0x58,0x17,0xff,0x53,0x32, +0x34,0x60,0xaf,0xfd,0x2f,0xc8,0x20,0x80,0x2e,0xf3,0xbf,0x29, +0x03,0x01,0x32,0xd9,0xff,0x8e,0x0c,0x2d,0xe0,0x05,0xff,0xbb, +0x32,0x60,0x20,0xc3,0xfc,0xef,0xcb,0x20,0xc0,0xba,0xf8,0x3f, +0x94,0x81,0x89,0xe3,0x79,0x24,0x83,0x06,0x36,0x9c,0xff,0x13, +0x19,0x08,0xa0,0x67,0xf1,0x55,0xab,0x22,0xd4,0x80,0xc7,0x03, +0x6a,0xc9,0x70,0x03,0x9a,0x0e,0x80,0x64,0xd0,0x40,0xc6,0x06, +0xf8,0xc8,0x60,0xc4,0xfb,0x6a,0x19,0x30,0xe0,0x97,0x00,0x58, +0x06,0x03,0xd6,0x3c,0x40,0x01,0x09,0xe8,0x35,0x00,0x95,0xc1, +0x80,0xf5,0x0c,0xc0,0x64,0x10,0x80,0x06,0x02,0x70,0x19,0x0c, +0xe0,0xf3,0x00,0x42,0x06,0x09,0x68,0x3e,0x40,0x23,0x43,0x0b, +0x68,0x28,0x80,0x94,0xc1,0x00,0xfd,0x17,0xa0,0x95,0xc1,0x80, +0x75,0x0e,0xa0,0x64,0x30,0x80,0xff,0x03,0x68,0x19,0x0c,0xd8, +0x83,0x00,0x46,0x06,0x03,0x7c,0x90,0x00,0x9d,0x0c,0x12,0xf8, +0x4b,0x01,0xac,0x0c,0x1a,0xe8,0xd9,0x00,0x4e,0x06,0x03,0xf8, +0x2d,0x00,0xd0,0x53,0x00,0xa0,0x35,0x06,0xe8,0x88,0x00,0xa3, +0x0c,0x06,0xf0,0x57,0x80,0x49,0x06,0xde,0x05,0xc4,0x66,0x19, +0x14,0xf0,0xa9,0x02,0x2c,0x32,0x18,0xc0,0xbf,0x01,0x56,0x19, +0x0c,0xd8,0xd3,0x00,0x9b,0x0c,0x06,0xec,0x41,0x80,0x5d,0x06, +0x05,0x64,0x44,0x80,0x43,0x06,0x0a,0xec,0xbe,0x00,0xa7,0x0c, +0x1d,0x90,0xe9,0x01,0x2e,0x19,0x64,0x5f,0x10,0xbb,0x65,0x60, +0x40,0xbe,0x06,0x00,0xdd,0x1f,0x00,0x94,0xa8,0x0e,0xe8,0x85, +0x00,0x3f,0x19,0x34,0xa0,0xb7,0x00,0x5e,0x86,0x46,0x1c,0x8f, +0x20,0x03,0x07,0xb2,0x30,0xc0,0x2b,0x03,0x03,0x34,0x14,0x50, +0x5b,0x06,0x2b,0xae,0x4d,0x1d,0x19,0x84,0x58,0xfe,0x03,0x19, +0x38,0xb0,0x03,0x03,0xea,0xca,0x10,0x69,0x38,0xa0,0x9e,0x0c, +0x56,0x2c,0x5b,0x5f,0x06,0x0b,0x64,0x66,0xc0,0x87,0x32,0x30, +0xb1,0x7d,0x7f,0x19,0x2c,0xb0,0xe5,0x02,0x02,0x64,0xa0,0xc0, +0xa6,0x0f,0x68,0x20,0x03,0x05,0xbc,0x14,0xd0,0x50,0x06,0x02, +0x6c,0xf7,0x80,0x46,0x32,0x60,0x40,0x5b,0x01,0x8d,0x65,0x88, +0x7c,0x11,0xd0,0x44,0x06,0x0b,0x6c,0xec,0x80,0xa6,0x32,0x58, +0xc0,0x1b,0x01,0x1f,0xc9,0x60,0x01,0x6f,0x04,0x34,0x93,0xc1, +0x8a,0x73,0x69,0x2e,0x03,0x01,0x76,0x54,0x40,0x4b,0x19,0x2c, +0xf0,0x09,0x03,0x5a,0xc9,0x60,0xc5,0xf5,0x6c,0x2d,0x03,0x07, +0xfa,0x34,0xa0,0x8d,0x0c,0x0e,0xc8,0x9a,0x80,0x8f,0x65,0xa0, +0xe2,0xf8,0xdb,0xca,0xc0,0xc5,0xbd,0x6d,0x27,0x03,0x03,0x3a, +0x30,0xe0,0x13,0x19,0x1c,0x90,0x51,0x01,0xed,0x65,0x50,0x22, +0x6d,0x76,0x90,0x41,0x8a,0xeb,0xd6,0x51,0x06,0x72,0x14,0xc4, +0x9d,0x64,0x50,0xc0,0x2e,0x0a,0xe8,0x2c,0x83,0x03,0xb6,0x56, +0x40,0x17,0x19,0x24,0x90,0xbd,0x01,0x5d,0x65,0xe8,0x45,0x9a, +0xfd,0x54,0x06,0x2a,0xb6,0xd1,0x4d,0x06,0xf5,0xff,0x58,0xba, +0xeb,0x00,0x59,0xcb,0xb2,0x8f,0xe3,0xc4,0x74,0x3e,0x49,0xef, +0xce,0x0c,0x1c,0x1a,0xdc,0xc3,0x2e,0x2f,0xd2,0xa9,0x34,0xb3, +0x31,0xdb,0xb3,0xdd,0x1d,0xb4,0x4a,0x87,0x34,0xd2,0x8d,0x84, +0x80,0x20,0xdd,0x8d,0xd2,0x5d,0x82,0xa4,0x34,0x0a,0x28,0xd2, +0x21,0xa0,0xf0,0xfe,0x2e,0xbf,0xfc,0xf1,0xf1,0x39,0xee,0xd9, +0x9d,0x79,0x9e,0xfb,0xbe,0xea,0x3e,0x9c,0xb3,0xab,0xd9,0xa6, +0x6e,0x37,0xc4,0xed,0x7e,0x77,0x47,0x42,0x3d,0xb8,0x6e,0x0f, +0x04,0xaa,0xd1,0x75,0x65,0x04,0x9a,0x55,0xea,0x1a,0x11,0x68, +0x5e,0xaa,0x6b,0x42,0x56,0xf3,0x60,0x5d,0x33,0x72,0x3a,0xa3, +0xd5,0xb5,0x20,0x61,0xeb,0x53,0x41,0x68,0xf9,0xda,0x8a,0x94, +0xed,0x73,0x1b,0xa2,0xf6,0x1a,0xed,0x48,0xdb,0xba,0x75,0x20, +0xab,0xda,0x52,0xd7,0x89,0x50,0x35,0xa5,0xae,0x0b,0xa1,0xdd, +0x73,0x37,0x72,0x8a,0xcb,0xba,0x2a,0x0a,0x16,0xd7,0x3d,0x88, +0x69,0x4e,0xa8,0xeb,0x45,0xdc,0x5e,0xa3,0x0f,0x71,0xcb,0xeb, +0x7e,0xc4,0x54,0xcb,0xea,0x06,0x10,0x51,0x1f,0xac,0x1b,0x44, +0xd4,0xd6,0x70,0x08,0x31,0xab,0x27,0xc3,0x48,0xd9,0x6b,0x8f, +0x20,0x6f,0x7b,0x3e,0x8a,0x8c,0xed,0xed,0x18,0xb2,0x96,0xcb, +0x13,0x58,0xc1,0x7e,0x3d,0x89,0xac,0xc5,0xf3,0x14,0xb2,0xaa, +0x6f,0x75,0xd3,0x48,0x58,0xfe,0xce,0x20,0x67,0x79,0x3a,0x8b, +0x9c,0xea,0x61,0xdd,0x1c,0x72,0xff,0xd1,0x75,0x1e,0x29,0xcd, +0x41,0x75,0x0b,0x48,0xd8,0xfe,0xee,0x89,0xa8,0xad,0xf1,0x5e, +0x88,0x5b,0x4c,0xed,0x8d,0xbc,0x7a,0x44,0xdd,0x3e,0x48,0x5b, +0x3c,0xef,0x8b,0x9c,0xc5,0xde,0x7e,0x48,0x58,0x2d,0xdd,0x1f, +0x31,0x8b,0xb7,0x5f,0x60,0x25,0xab,0x49,0xbf,0x44,0xde,0x62, +0xe3,0x57,0x88,0x58,0xfd,0x3c,0x00,0x79,0x5b,0xb7,0x03,0x91, +0xb0,0xfd,0x3a,0x08,0x2b,0xd9,0xe7,0x1f,0x8c,0x84,0xd5,0xcf, +0x43,0xb0,0x92,0xdd,0xe7,0xa1,0xc8,0xa8,0x7f,0xd4,0x1d,0x86, +0x94,0xd5,0xdd,0xc3,0x91,0xd0,0xbc,0x51,0x77,0x04,0x12,0xb7, +0xe9,0x7a,0x24,0x22,0x56,0x03,0x7f,0x8d,0x94,0xd5,0xd8,0xa3, +0x90,0xba,0x4c,0xd7,0xa3,0x91,0xb4,0x1c,0x3d,0x06,0x09,0xab, +0x5b,0xc7,0x22,0xa9,0x1e,0x53,0x77,0x1c,0x56,0x52,0x7f,0xac, +0x3b,0x1e,0x2b,0x5b,0x2c,0x9f,0x80,0xb4,0xce,0x5a,0x75,0x27, +0x22,0x6e,0xf9,0xf7,0x1b,0xc4,0x2d,0xde,0x4e,0x42,0x44,0x73, +0x6d,0xdd,0xc9,0x58,0x59,0x3d,0xac,0xee,0x14,0xc4,0x2d,0xa6, +0x4e,0x45,0xd4,0x62,0xfe,0x34,0xc4,0x6d,0x1f,0x4e,0x47,0xda, +0x62,0xe1,0x0c,0x64,0x6c,0x9d,0xce,0xc4,0x2a,0x16,0xfb,0x67, +0x61,0x15,0x8b,0xf1,0xb3,0x11,0xb5,0xfb,0x3d,0x07,0x29,0xdb, +0x87,0x73,0x91,0xb2,0xbc,0x3b,0x0f,0x69,0xeb,0x3f,0xe7,0x23, +0x65,0x35,0xf6,0xb7,0x48,0x5a,0xae,0x5d,0x80,0x94,0xf5,0xa2, +0x0b,0x91,0xb6,0xb8,0xbe,0x18,0x79,0xcb,0x9d,0xdf,0x21,0xa3, +0xd9,0xa0,0xee,0x12,0x64,0x2d,0xc6,0x2f,0x45,0xde,0x62,0xf3, +0x32,0xc4,0x34,0x43,0xd6,0xfd,0x1e,0xd6,0xf7,0xeb,0x2e,0x47, +0x4e,0x67,0xa8,0xba,0x2b,0x90,0xd5,0x39,0xb7,0xee,0x0f,0x58, +0x55,0x33,0x62,0xdd,0x95,0x58,0xd5,0x62,0xe6,0x2a,0x44,0xac, +0xaf,0x5d,0x8d,0x92,0xce,0x62,0x75,0xd7,0x20,0x6b,0xfb,0x79, +0x2d,0x72,0x9a,0x27,0xea,0xae,0x43,0x54,0xf3,0x7d,0xdd,0xf5, +0x58,0xcd,0xfa,0xfc,0x0d,0x58,0xcd,0x7a,0xfb,0x8d,0x88,0x5a, +0x3e,0xde,0x84,0x9c,0xf5,0xc9,0x9b,0x91,0xd5,0xcc,0x51,0x77, +0x0b,0xb2,0x16,0x23,0xb7,0x22,0x69,0xbd,0xe0,0x36,0x24,0xad, +0xef,0xdd,0x8e,0xb8,0x3d,0xcb,0x1d,0xc8,0xda,0xeb,0xdf,0x89, +0x84,0xad,0xed,0x5d,0x88,0x5b,0x0d,0xbc,0x1b,0xab,0xd9,0xfa, +0xdc,0x83,0xd5,0x2c,0x0f,0x74,0xd6,0xa9,0xd3,0xd9,0x6b,0x35, +0x8b,0xe5,0x7b,0x61,0xb3,0x50,0xdd,0x7d,0x88,0x59,0x2c,0xdc, +0x8f,0xb4,0xc5,0xf9,0x03,0x58,0x4d,0x67,0xa2,0xba,0x07,0x91, +0xd0,0xdc,0x5e,0xf7,0x10,0x6a,0xac,0xfe,0x3c,0x8c,0x9c,0xc5, +0xdd,0x23,0x58,0x62,0xbf,0x7e,0x14,0x31,0xab,0x2b,0x8f,0x21, +0x61,0x73,0xcd,0xe3,0xa8,0xb1,0x1c,0x7f,0x02,0x35,0x36,0x23, +0x3c,0x89,0x8c,0xf5,0xfc,0xa7,0x10,0xb7,0xd7,0x79,0x1a,0x29, +0xbb,0x3e,0x83,0xac,0xc5,0xb2,0xe5,0xa7,0xe6,0xee,0x1a,0xcb, +0xa3,0xe7,0x90,0xb7,0xb8,0xb5,0xba,0xa3,0xfd,0xaf,0x51,0xaf, +0xb5,0x7f,0x8a,0xbe,0x74,0x39,0xfe,0x6c,0x67,0xe9,0xf2,0x58, +0x4e,0x39,0xb3,0x34,0x82,0xa2,0xe2,0x7f,0xa9,0xd6,0x71,0xa9, +0x9d,0xaf,0xf5,0x5e,0x4b,0x55,0x5f,0x96,0xba,0x9c,0xfb,0x96, +0x7a,0x58,0x4e,0xfd,0x62,0xa9,0x8f,0xe5,0x54,0xe7,0x97,0x6a, +0xfe,0x59,0x6a,0x7f,0xce,0xa3,0x58,0x5c,0xba,0x1a,0x96,0x53, +0x3e,0x2c,0xad,0x41,0x8d,0xf6,0x6c,0x69,0x01,0x35,0xda,0xb3, +0xa5,0x45,0x14,0x94,0x23,0x4b,0x37,0x41,0xc1,0xee,0x47,0xbd, +0x74,0xa9,0x9e,0x63,0x79,0xf5,0xb9,0xa5,0xca,0xc5,0xa5,0xca, +0xbb,0x82,0xd6,0x64,0xa9,0x72,0x68,0xa9,0x72,0x67,0x39,0xed, +0xd1,0x52,0xe5,0xcd,0x52,0xe5,0xcb,0x72,0xca,0xff,0xa5,0x9a, +0xbb,0x97,0x6a,0x1f,0x96,0xb7,0x8f,0x29,0x2e,0x97,0xaa,0x17, +0x15,0xed,0x75,0xbe,0xc3,0x72,0x7a,0xf6,0xa5,0xff,0xc1,0x72, +0xf6,0x7a,0x3a,0xe7,0x2f,0xd5,0x19,0x7a,0x39,0xe5,0x69,0xbd, +0xe6,0x97,0x7a,0xcd,0x21,0x45,0xcd,0x97,0xf5,0x4b,0x51,0xd4, +0x73,0xd7,0x6b,0x06,0xa9,0xd7,0xec,0x51,0xa3,0xbd,0xaf,0x6f, +0x40,0x41,0xeb,0x5c,0xbf,0x31,0x0a,0xda,0x8f,0xfa,0xff,0x43, +0x41,0xeb,0x5a,0xbf,0x09,0x0a,0x5a,0xeb,0xfa,0x9f,0xa2,0xa8, +0xde,0x5d,0xbf,0x29,0x0a,0xda,0xb3,0xfa,0xcd,0x50,0xa3,0xb8, +0xa9,0xdf,0x1c,0x05,0xc5,0x52,0xfd,0x16,0x28,0x68,0x6f,0xea, +0xb7,0x44,0x41,0x7b,0x59,0xbf,0x15,0x0a,0x8a,0x89,0xfa,0xad, +0x51,0xd0,0xbe,0xd6,0x6f,0x83,0x82,0xe2,0xa3,0x7e,0x5b,0x14, +0x54,0xab,0xeb,0xb7,0x43,0x51,0xb5,0xa5,0x7e,0x7b,0x14,0x14, +0x0b,0xf5,0x3b,0xa0,0xa0,0x38,0xab,0x6f,0x46,0x41,0x6b,0x59, +0xaf,0x3e,0x5f,0x6f,0xfd,0x57,0x35,0xa2,0xfe,0x64,0x14,0x34, +0x7f,0xd6,0x9f,0x82,0x82,0xfa,0x69,0xfd,0xa9,0x28,0xe8,0x2c, +0x58,0x7f,0x1a,0x0a,0x9a,0x57,0xeb,0xcf,0x40,0x41,0x33,0x46, +0xfd,0x59,0x28,0xa8,0x86,0xd4,0x9f,0x8d,0xa2,0xf6,0xb8,0xfe, +0x7c,0x14,0xd5,0x4b,0xea,0x7f,0x8b,0x82,0x66,0xfe,0x7a,0xc5, +0x47,0xbd,0xea,0x4f,0x8d,0xf2,0xb0,0xfe,0x0a,0x14,0x54,0xa3, +0xea,0xff,0x80,0x82,0x7a,0x53,0xfd,0x95,0x28,0x28,0xc6,0xea, +0xaf,0x42,0x41,0x67,0xd1,0xfa,0xab,0x51,0xd0,0x39,0xba,0xfe, +0x1a,0x14,0x14,0x7b,0xf5,0xd7,0xa2,0xa0,0x1c,0xac,0xbf,0x0e, +0x05,0xd5,0xa2,0xfa,0x1f,0xb0,0xa6,0x66,0x6b,0xfb,0xf1,0x7c, +0xa6,0xa0,0x1e,0xdc,0xb0,0x3c,0x0a,0xca,0xc1,0x86,0x28,0x0a, +0x8a,0x9d,0x86,0x2c,0x6a,0xf4,0xde,0x0d,0x01,0x6a,0x54,0x73, +0x1b,0x42,0x14,0xd4,0x0b,0x1a,0x56,0x40,0x41,0x67,0xc5,0x86, +0x95,0x50,0xd0,0xdc,0xd0,0x50,0x8b,0x82,0x7a,0x79,0xc3,0xea, +0x28,0x68,0xb6,0x68,0x58,0x03,0x05,0xcd,0x0d,0x0d,0x6b,0xa1, +0x46,0xcf,0xd3,0xb0,0x36,0x6a,0xb4,0xfe,0x0d,0xeb,0xa1,0xa0, +0xbc,0x6b,0x58,0x1f,0x35,0x7a,0xb6,0x86,0x8d,0x50,0xd0,0x3c, +0xd0,0xd0,0x80,0xa2,0xea,0x6d,0xc3,0x26,0xa8,0xd1,0x3a,0x36, +0x6c,0x86,0x82,0x66,0x8e,0x86,0x2d,0x50,0xd0,0xcc,0xd1,0xb0, +0x3d,0x0a,0x9a,0x4b,0x1a,0x76,0x42,0x41,0x33,0x47,0xc3,0x2e, +0xa8,0x51,0xde,0x34,0xec,0x8a,0x1a,0xad,0x5d,0xc3,0x1e,0xa8, +0xd1,0xfe,0x34,0x94,0x51,0x54,0xed,0x6d,0x68,0x46,0x8d,0xf6, +0xa9,0xa1,0x03,0x05,0xd5,0xcf,0x86,0x5f,0xa1,0xa8,0x7c,0x6c, +0x38,0x00,0x35,0xaa,0x77,0x0d,0x07,0xa2,0x46,0x75,0xb0,0xe1, +0x20,0xd4,0xa8,0x3e,0x36,0x1c,0x8c,0x82,0xe6,0x98,0x06,0xcd, +0x05,0x0d,0xf6,0xe7,0x42,0xea,0xbf,0x0d,0xf6,0x1e,0xc7,0xf0, +0x9f,0xa3,0x1a,0xd4,0xc3,0x1b,0x54,0x87,0x6a,0xd4,0x0f,0x1a, +0x4e,0x42,0x41,0x33,0x5c,0xc3,0x19,0x28,0x68,0x6e,0x6b,0x38, +0x13,0x05,0xcd,0x87,0x0d,0x67,0xa1,0xa0,0x99,0xb2,0x41,0xb5, +0xa1,0x41,0x31,0x56,0xa3,0x7e,0xd3,0x70,0x01,0x0a,0xaa,0x05, +0x0d,0x17,0xa2,0xa0,0xf9,0xb5,0xe1,0x22,0xd4,0xa8,0x97,0x34, +0x5c,0x8c,0x82,0x66,0xd9,0x86,0xdf,0xa1,0xa0,0x7a,0xd1,0x60, +0xcf,0xaf,0x1e,0x5a,0x50,0x7f,0x6f,0xb8,0x0c,0x05,0xd5,0x8e, +0x86,0xeb,0x50,0xd0,0x3c,0xda,0x70,0x3d,0x0a,0x9a,0x53,0x1b, +0x6e,0x40,0x41,0x73,0x66,0xc3,0x8d,0x28,0x28,0xaf,0x1a,0x1e, +0x40,0x8d,0x7a,0x58,0xc3,0x23,0xb0,0x3f,0x5b,0x6f,0x78,0x1c, +0x05,0xf5,0xf4,0x86,0x27,0x50,0x50,0xfd,0x6a,0x78,0x12,0x35, +0xea,0x5b,0x0d,0xcf,0xa3,0xa0,0x9e,0xbe,0x55,0x19,0x35,0xef, +0x2d,0xb3,0x8c,0x7d,0x6b,0x96,0xf2,0x8f,0x67,0xea,0xf2,0xb2, +0x48,0xab,0xae,0x96,0x97,0x47,0x42,0x39,0x52,0x8e,0x23,0xa7, +0x5c,0x2a,0x27,0x90,0x54,0xfd,0x29,0x27,0x91,0xd0,0x7e,0x94, +0x53,0x48,0xea,0xfd,0xca,0x69,0x44,0x55,0x77,0xca,0x59,0x64, +0xb5,0x77,0xe5,0x1c,0xf2,0x3a,0xef,0x95,0x1d,0xe4,0xb5,0x3e, +0x65,0x17,0x11,0xd5,0x96,0x72,0x80,0xa8,0x9e,0xa1,0x1c,0x22, +0xaf,0xb5,0x2a,0xaf,0x80,0x94,0xce,0x30,0xe5,0x15,0xe1,0xa8, +0xd6,0x95,0x57,0x42,0x4c,0x39,0x58,0x5e,0x19,0x39,0xbb,0x97, +0x5a,0x24,0x55,0x63,0xcb,0x25,0xe4,0x35,0x2f,0x96,0xd7,0x42, +0x4e,0xfd,0xa6,0xbc,0x0e,0xec,0xcf,0x10,0xca,0xeb,0x21,0xaf, +0x5a,0x5e,0xde,0x10,0x69,0xed,0x5b,0x79,0x23,0xe4,0x55,0xdf, +0xcb,0xf5,0x88,0x7d,0xa6,0xeb,0x26,0xb0,0x3f,0x73,0x28,0x6f, +0x8a,0x98,0xbd,0xff,0x66,0x48,0x2b,0x77,0xca,0x5b,0x20,0xa9, +0x7e,0x56,0xde,0x12,0xf6,0x9f,0x77,0xcb,0xdb,0xc0,0xfe,0x8c, +0xa2,0xbc,0x3d,0x1c,0xed,0x63,0x79,0x07,0x64,0x34,0x4f,0x96, +0x7f,0x8e,0x98,0xf2,0xb4,0xbc,0x1b,0x32,0x9a,0x5d,0xcb,0x7b, +0x20,0xa3,0x3d,0x2d,0x97,0x11,0xd7,0xec,0x5e,0x6e,0x44,0x4e, +0xe7,0x96,0x72,0x1b,0x56,0xd6,0x79,0xaa,0xdc,0x0e,0xc7,0xf6, +0xb3,0x03,0x49,0xf5,0x82,0x72,0x27,0x1c,0xf5,0xe6,0x72,0x17, +0xec,0xcf,0x49,0xca,0xbd,0x88,0xa9,0x66,0x96,0xfb,0x10,0xb7, +0x75,0xe8,0x47,0xee,0x4b,0x5d,0x87,0xe0,0xa9,0x76,0x94,0x17, +0x91,0x57,0xbe,0x94,0xf7,0x42,0x46,0x7d,0xa7,0x7c,0x10,0xa2, +0xaa,0xff,0xe5,0x43,0x60,0x7f,0x86,0x53,0x3e,0x0c,0x8e,0xea, +0x63,0xf9,0x48,0xd8,0x9f,0xc9,0x94,0x7f,0x8d,0xbc,0x72,0xbf, +0x7c,0x34,0xf2,0xaa,0x65,0xe5,0x63,0x90,0xfa,0x87,0xae,0xc7, +0xc2,0xb1,0x18,0x3c,0x0e,0x09,0xe5,0x43,0xf9,0x78,0xd8,0x9f, +0xe7,0x94,0x4f,0x84,0x63,0x31,0x78,0x32,0x22,0xea,0x3b,0xe5, +0x53,0x10,0x57,0xef,0x29,0x9f,0x86,0xb8,0x7d,0xec,0x74,0x44, +0x2c,0xb6,0xcf,0x42,0xfe,0x53,0x5d,0xcf,0x46,0xfe,0x13,0x5d, +0xcf,0x45,0x42,0x35,0xb7,0x7c,0x1e,0x22,0xaa,0x1b,0x65,0xd5, +0x86,0xb2,0xea,0x80,0xa3,0xbe,0x5c,0xbe,0x08,0x39,0x5b,0x9b, +0x8b,0xe1,0x68,0xde,0x2e,0x5f,0x82,0xb8,0x72,0xbe,0x7c,0x29, +0x22,0xea,0x05,0xe5,0xcb,0x90,0xd3,0xd7,0x97,0x2f,0x47,0x4c, +0xf5,0xa8,0x6c,0xbf,0xa7,0x5a,0x1e,0x53,0x3d,0x2a,0x5f,0x8d, +0xb4,0xc5,0xde,0x35,0xc8,0xeb,0x2c,0x54,0xbe,0x0e,0x8e,0xe5, +0xd0,0x8d,0x70,0x2c,0x87,0x6e,0x81,0x63,0xb1,0x7d,0x07,0xec, +0xcf,0xb2,0xca,0x7f,0x42,0x52,0xe7,0xfd,0xf2,0xbd,0x48,0x59, +0x9e,0xdd,0x07,0xc7,0xf2,0xe9,0x01,0x38,0x96,0x73,0x0f,0xc1, +0xb1,0x9c,0x7b,0x18,0x31,0xd5,0xf9,0xf2,0x63,0x48,0xd8,0x6b, +0x3e,0x8e,0xa8,0xe5,0xdd,0x93,0x70,0xec,0x35,0x9f,0x82,0x63, +0x9f,0xf3,0x34,0xb2,0xdf,0xe8,0xfa,0x3c,0x12,0xb6,0xf6,0x7f, +0x41,0xc2,0xf6,0xe2,0x05,0xa4,0x2d,0x5f,0x5f,0x84,0x63,0x39, +0xfd,0x12,0xb2,0xf6,0xfe,0x2f,0x23,0x65,0x7b,0xfe,0x1a,0x96, +0x53,0x1d,0x2f,0xbf,0x0e,0xc7,0xf2,0xee,0x0d,0x38,0xab,0xea, +0xfa,0x16,0x8a,0xaa,0xf9,0xe5,0x77,0x90,0xb6,0x7c,0x7a,0x17, +0x79,0xf5,0x9d,0xf2,0xdf,0x10,0xb1,0x78,0xf9,0x17,0x1c,0xf5, +0xf4,0xf2,0x47,0x88,0x6a,0x36,0x2a,0x7f,0x82,0x98,0x66,0xfd, +0xf2,0x67,0x48,0xdb,0x1e,0x7e,0x85,0xb8,0xbd,0xe6,0xd7,0x70, +0x34,0x9b,0x96,0xbf,0x43,0x46,0xb3,0x47,0xf9,0x3f,0x28,0xea, +0xec,0xa1,0xb0,0xff,0x9f,0xa2,0xf6,0xa6,0x71,0x59,0xc4,0x14, +0xdb,0x8d,0xcb,0xa3,0xa8,0xde,0xd1,0x98,0x84,0xa3,0xb9,0xb6, +0x31,0x85,0x88,0xfa,0x56,0x63,0x16,0x71,0xad,0x5b,0x63,0x0e, +0x31,0xd5,0xac,0xc6,0x3c,0xb2,0x1f,0xea,0xea,0x20,0xbb,0xa3, +0xae,0x2e,0x62,0xca,0xc3,0xc6,0x55,0x10,0x55,0x7e,0x36,0xae, +0x06,0x47,0xb3,0x5d,0x63,0x0d,0x32,0xaa,0x4d,0x8d,0x75,0xc8, +0x6a,0xb6,0x68,0x5c,0x0a,0x47,0xb3,0x56,0xe3,0xc6,0xc8,0xaa, +0x86,0x34,0x6e,0x82,0xbc,0x72,0xa4,0x71,0x53,0x24,0x75,0x3e, +0x6a,0xdc,0x0c,0x45,0xf5,0x8b,0xc6,0xcd,0x91,0x50,0x2e,0x35, +0x6e,0x89,0x84,0x7a,0x74,0xe3,0x56,0x88,0xda,0xfb,0xee,0x80, +0xb4,0xd6,0xba,0x71,0x47,0xa4,0x07,0x74,0xdd,0x09,0x8e,0xf2, +0xab,0x71,0x0f,0x44,0xb4,0xbf,0x8d,0x65,0xa4,0x55,0x63,0x1b, +0x1b,0x91,0xd4,0x9a,0x37,0x36,0x21,0xb1,0x44,0xd7,0x66,0xe4, +0x6d,0x6d,0x2a,0x48,0xff,0x44,0xd7,0x36,0x44,0x55,0x67,0x1b, +0xdb,0x51,0xd4,0x19,0xa1,0xb1,0x03,0x8e,0x3d,0x6f,0x17,0xf2, +0xb6,0x9e,0xdd,0x70,0x14,0x87,0x8d,0x55,0x38,0x1a,0x20,0x1a, +0x7b,0x90,0x50,0x1d,0x6c,0xec,0x85,0xa3,0x5e,0xd2,0xd8,0x07, +0x57,0xf3,0x79,0xe3,0x24,0x1c,0xf5,0xb5,0xc6,0x79,0x38,0x1b, +0xe8,0xba,0x00,0x47,0x7d,0xa5,0x71,0x2f,0x44,0x55,0xeb,0x1b, +0xf7,0x41,0x4e,0x35,0xaa,0x71,0x5f,0x38,0xf6,0x2c,0xbf,0x82, +0x63,0xf7,0x73,0x00,0xe2,0x3a,0x63,0x37,0x1e,0x8c,0x84,0xea, +0x43,0xe3,0xe1,0x88,0x6a,0x7e,0x6e,0xfc,0x35,0x1c,0xf5,0xaa, +0xc6,0xa3,0xe1,0xac,0xa9,0xeb,0xb1,0x28,0xaa,0x47,0x34,0x1e, +0x87,0xbc,0xea,0x4a,0xe3,0x09,0x48,0x28,0xb7,0x1b,0x7f,0x03, +0x47,0xbd,0xb0,0xf1,0x64,0x38,0x9a,0x11,0x1b,0x4f,0x41,0x51, +0xb5,0xa3,0xf1,0x34,0x14,0x35,0x57,0x37,0x9e,0x01,0xc7,0xd6, +0xf6,0x2c,0x38,0x16,0xc3,0xe7,0xa0,0xa8,0x1c,0x69,0x3c,0x17, +0x31,0xd5,0xcd,0xc6,0xf3,0x11,0xb1,0xd7,0xbe,0x10,0x31,0xfb, +0xdc,0x8b,0x10,0xd5,0xb9,0xa2,0xf1,0x4a,0xb8,0xaa,0x0b,0x8d, +0x57,0x23,0x67,0xcf,0x7b,0x0d,0xb2,0xaa,0xdb,0x8d,0xd7,0x22, +0xae,0xfa,0xd8,0x78,0x33,0x92,0xea,0x41,0x8d,0xb7,0x20,0x6f, +0x6b,0xf3,0x47,0xe4,0x6c,0xdd,0xee,0x43,0xdc,0xe2,0xe1,0x7e, +0xa4,0xd5,0x6b,0x1a,0x1f,0x40,0x54,0xf3,0x4f,0xe3,0xa3,0xb0, +0xff,0xa6,0xde,0xf8,0x18,0x92,0xb6,0xb7,0x4f,0xa2,0xa8,0x33, +0x7c,0xe3,0x53,0x70,0xd4,0xef,0x1b,0x9f,0x81,0xa3,0x33,0x58, +0xe3,0xb3,0x70,0xd4,0x2b,0x1b,0x9f,0x87,0x63,0x79,0xf3,0x22, +0xd2,0x96,0x97,0x2f,0xc1,0x51,0x7f,0x6c,0x7c,0x05,0x8e,0xe5, +0xd0,0xab,0x70,0x2c,0xb7,0x5e,0x43,0xce,0xf6,0xee,0x0d,0x38, +0x9a,0x33,0x1a,0xdf,0x44,0x8d,0xe5,0xf5,0x5b,0x48,0x7e,0xa1, +0xeb,0x3b,0xc8,0xd9,0xfa,0xa9,0x86,0x35,0xaa,0x76,0x39,0x96, +0x8b,0x1f,0x21,0x69,0xfb,0xf2,0x31,0x1c,0xcb,0xad,0x4f,0x61, +0xdf,0x21,0xb4,0xf1,0x73,0x64,0xd5,0x67,0x1b,0xbf,0x44,0xd6, +0xd6,0xf3,0x2b,0x38,0xb6,0x17,0xff,0x46,0xce,0xf2,0xf4,0x5b, +0x44,0xed,0x9e,0xbf,0x87,0x63,0x79,0xf7,0x03,0x8a,0xea,0x1f, +0x4d,0x51,0x38,0xca,0xaf,0xa6,0x18,0x1c,0xcd,0x66,0x4d,0x49, +0xa4,0xb4,0x2e,0x4d,0x69,0xc4,0xf7,0xd7,0x35,0x8b,0xac,0x7a, +0x53,0x53,0x1e,0xf6,0x57,0xd4,0x9a,0x5c,0x38,0xca,0xff,0x26, +0x0f,0x19,0xe5,0x67,0x53,0x00,0x47,0x75,0xa4,0x69,0x05,0xc4, +0x55,0x7f,0x9a,0x56,0x46,0x5c,0x35,0xbc,0x69,0x15,0x38,0xaa, +0x3b,0x4d,0xb5,0x28,0x6a,0xef,0x9b,0x0a,0x48,0xda,0x7d,0x95, +0xe0,0x28,0xef,0x9a,0x56,0x87,0xfd,0xe4,0xbb,0xa6,0x35,0x90, +0xb3,0xfb,0x5f,0x82,0xb4,0xf2,0xa4,0x69,0x4d,0x38,0xaa,0xff, +0x4d,0x6b,0xa1,0x46,0x6b,0xd1,0xb4,0x0e,0x1c,0xd5,0xcc,0xa6, +0x75,0xe1,0xa8,0x96,0x35,0xad,0x07,0x47,0x35,0xae,0x69,0x7d, +0xe4,0x15,0xff,0x4d,0x1b,0xc0,0x51,0xcf,0x6d,0xda,0x10,0x79, +0xcd,0xdb,0x4d,0x9b,0x20,0xa6,0xbe,0xd5,0xb4,0x19,0xe2,0xda, +0xaf,0xa6,0x6d,0x51,0x54,0x1c,0x37,0x6d,0x8f,0xa2,0xea,0x67, +0xd3,0x0e,0x70,0x74,0xbe,0x6a,0xda,0x11,0x45,0xc5,0x74,0xd3, +0x4e,0x70,0x74,0xd6,0x6a,0xda,0x19,0x8e,0x6a,0x65,0xd3,0x2e, +0x88,0x28,0x87,0x9b,0x1a,0x91,0x53,0x1d,0x6b,0x6a,0x82,0xa3, +0xda,0xda,0xd4,0x06,0x67,0x77,0x5d,0xdb,0xe1,0xd8,0xef,0x77, +0xc3,0xb1,0xaf,0xeb,0x81,0xfd,0x15,0xa3,0xa6,0x51,0xc4,0xed, +0x7d,0x66,0xe0,0xa8,0xe6,0x36,0x2d,0xa0,0xa8,0xbc,0x6a,0xda, +0x13,0x09,0xc5,0x5c,0xd3,0xde,0x48,0xdb,0xfa,0xef,0x83,0x8c, +0x7a,0x5e,0xd3,0xbe,0x88,0x29,0x5e,0x9b,0xf6,0x87,0xd3,0xa2, +0xeb,0x81,0x88,0xd9,0x3d,0x1c,0x02,0x47,0x75,0xbc,0xe9,0x48, +0x38,0x76,0xbf,0x27,0x20,0xa7,0xb3,0x5b,0xd3,0xc9,0x88,0x5b, +0x6c,0x9c,0x86,0xa2,0x6a,0x5a,0xd3,0x59,0x48,0xa8,0x26,0x34, +0x9d,0x8d,0xac,0xed,0xe9,0x39,0x70,0x74,0x5e,0x6b,0xba,0x0a, +0x09,0xe5,0x6f,0xd3,0xd5,0xc8,0xdb,0xfe,0xdc,0x00,0xc7,0x62, +0xef,0x46,0x38,0xb6,0x1e,0x37,0xc1,0xb1,0x75,0xba,0x19,0x09, +0xe5,0x6f,0xd3,0xad,0x48,0xea,0xcc,0xd9,0x74,0x0f,0xe2,0x16, +0xd7,0xf7,0xc1,0x51,0xff,0x68,0x7a,0x10,0x35,0xf6,0xbc,0xaa, +0x37,0x4d,0xaa,0x33,0x8e,0x66,0xee,0xa6,0x27,0x91,0xb1,0xaf, +0x7d,0x1a,0x29,0xe5,0x58,0xd3,0xb3,0x88,0xa9,0x86,0x36,0xfd, +0x05,0x39,0xf5,0x83,0xa6,0x17,0xe0,0xd8,0x9e,0xbc,0x84,0xa2, +0xce,0x7e,0x4d,0xaf,0x20,0x6f,0xeb,0xf4,0x3a,0x1c,0xd5,0xb1, +0xa6,0x77,0xe0,0xa8,0xb7,0x36,0xfd,0x0d,0x8e,0x7a,0x55,0xd3, +0x7b,0x48,0xa9,0x96,0x35,0xfd,0x0b,0x8e,0x66,0xfa,0xa6,0x8f, +0xe0,0xe8,0xec,0xd0,0xf4,0x05,0x8a,0x9a,0xbb,0x9a,0xbe,0x84, +0x63,0x6b,0xfe,0x0d,0x1c,0xcd,0xb7,0x4d,0xdf,0x21,0xa7,0x39, +0x4d,0x61,0xf0,0x3f,0x31,0xfd,0x4f,0xb3,0xf6,0xb8,0x59,0xe7, +0x18,0x47,0xb1,0xd2,0x1c,0x41,0x54,0xb3,0x45,0x73,0x12,0x8e, +0x6a,0x6f,0xb3,0x87,0xa4,0x62,0xb2,0x39,0x80,0xa3,0xde,0xd9, +0x1c,0xc2,0x99,0xd0,0x75,0x05,0x38,0xe3,0xba,0xae,0x04,0xc7, +0x5e,0x67,0x15,0x38,0x53,0xba,0x16,0x90,0x54,0xcf,0x6b,0x2e, +0xc1,0x99,0xd6,0x75,0x3d,0xe4,0xb5,0x17,0xcd,0xf5,0xa8,0x55, +0xcc,0x35,0xff,0x14,0xce,0xac,0xae,0x9b,0xc3,0x51,0x1c,0x37, +0x6f,0x01,0x47,0x3d,0xbb,0x79,0x4b,0x38,0x3a,0xbb,0x35,0xab, +0x2e,0x34,0x6f,0xcb,0x7f,0xff,0x6d,0xde,0x0e,0x11,0xcd,0x39, +0xcd,0x3b,0x20,0x6e,0xf7,0xfc,0x33,0xc4,0x55,0xbf,0x9a,0x7f, +0x8e,0xa4,0xf2,0xb3,0xf9,0x47,0x69,0xcd,0x1b,0xcd,0x3b,0x21, +0xa6,0x33,0x43,0xf3,0xce,0x48,0xe9,0xac,0xd2,0xbc,0x0b,0xe2, +0xea,0x7f,0xcd,0xbb,0xa2,0xa8,0x18,0x69,0xde,0x0d,0xf6,0xd7, +0xff,0x9a,0x77,0x87,0xa3,0xb9,0xa1,0x79,0x0f,0xe4,0x54,0x57, +0x9b,0xcb,0x58,0xa2,0xfe,0xd1,0xdc,0x84,0x84,0xf6,0xab,0xb9, +0x05,0x8e,0xf2,0xb0,0xb9,0x15,0x8e,0xf2,0xb0,0xb9,0x1b,0x19, +0xc5,0x5e,0x73,0x0f,0xa2,0x9a,0x5b,0x9a,0x87,0xe0,0x28,0x3f, +0x9b,0x47,0x50,0x54,0x8c,0x36,0x8f,0xc2,0xfe,0x7b,0x77,0xf3, +0x04,0x52,0xea,0xb5,0xcd,0xf6,0xcc,0x5a,0x7b,0x47,0xe7,0xcd, +0xe6,0x69,0xd8,0x7f,0x07,0x6f,0x9e,0x41,0x5c,0x79,0xd5,0x3c, +0x8b,0xbc,0xfa,0x56,0xf3,0x1c,0x9c,0x5f,0xe8,0xba,0x88,0x98, +0xce,0x4c,0xcd,0xfb,0x20,0xa7,0xe2,0xd2,0xbc,0x2f,0xd2,0xb6, +0xe7,0xfb,0x21,0xf6,0x81,0xae,0xfb,0x23,0x63,0xfb,0x7e,0x00, +0xe2,0xb6,0x66,0x87,0xc0,0xf9,0xa5,0xae,0x87,0xc1,0xfe,0xfb, +0x7b,0xf3,0x91,0xc8,0x68,0x6e,0x69,0xfe,0x35,0xa2,0x16,0x8f, +0xc7,0xc0,0xd1,0x59,0xb4,0xf9,0x58,0x24,0xec,0x1e,0x8f,0x87, +0xa3,0xba,0xd3,0x7c,0x02,0x12,0xaa,0xcb,0xcd,0xbf,0x81,0xa3, +0x1a,0xd2,0x7c,0x12,0x56,0x52,0x2e,0x37,0x9f,0x0c,0xc7,0xde, +0xff,0x14,0xe4,0x2c,0x66,0x4e,0x85,0x73,0xa8,0xae,0x9a,0x7d, +0x9b,0x6d,0x46,0xb2,0xfb,0x3a,0x13,0x49,0xe5,0x73,0xf3,0xd9, +0x48,0xa8,0xbf,0x36,0x9f,0x8f,0xa2,0xce,0x4e,0xcd,0x17,0x22, +0xaa,0x5c,0x6d,0xbe,0x18,0x8e,0xdd,0xfb,0x25,0xa8,0xb5,0x7b, +0xbf,0x14,0x39,0x8b,0x8d,0xcb,0xe0,0xd8,0xb3,0x5e,0x8e,0xec, +0x13,0xba,0xaa,0x17,0x36,0x2b,0x8e,0x1c,0xd5,0x93,0xe6,0xab, +0x90,0xd1,0x5c,0xdb,0x7c,0x1d,0x1c,0x7b,0xbe,0xeb,0xc5,0xea, +0x9b,0xea,0x61,0xf3,0x8d,0x70,0x6c,0x3d,0x6e,0x42,0x42,0xf5, +0xb6,0xf9,0x66,0x38,0x3a,0x13,0x35,0xdf,0x82,0x9c,0xe6,0x83, +0xe6,0x5b,0x91,0xb7,0xd7,0xbe,0x1b,0x8e,0xad,0xd3,0x3d,0x28, +0xda,0x3d,0x3c,0x80,0x94,0xc5,0xec,0x83,0x70,0x6c,0xfd,0x1e, +0x42,0xd2,0xe2,0xeb,0x51,0x38,0xb6,0x96,0x8f,0x23,0x6d,0xfb, +0xf5,0x04,0xf2,0x76,0xff,0x4f,0x22,0x63,0x31,0xfb,0x02,0x1c, +0xd5,0xb8,0xe6,0x57,0xe1,0xd8,0xda,0xff,0x15,0x45,0x8b,0xe5, +0xd7,0x10,0xb3,0xfb,0x7a,0x13,0xf6,0x77,0x2d,0x9a,0xdf,0x42, +0xce,0xf6,0xf9,0xef,0x48,0x5a,0x5e,0xbc,0x87,0xb4,0x7d,0xed, +0x07,0x70,0x6c,0xdf,0xfe,0x81,0x8c,0xe6,0xd8,0xe6,0x0f,0x51, +0xb4,0x7b,0xf9,0x17,0x1c,0xed,0x6b,0xf3,0x27,0x70,0x6c,0x6f, +0x3f,0x45,0xd4,0x5e,0xff,0x4b,0xd8,0xdf,0xeb,0x68,0xfe,0x0a, +0xb1,0x0b,0x74,0xfd,0x37,0x32,0xb6,0x9f,0xdf,0x20,0xaa,0x33, +0x58,0xf3,0xb7,0x48,0xda,0x33,0xfe,0x17,0x59,0xf5,0xa3,0xe6, +0xef,0xe1,0x28,0x56,0xec,0xaf,0x3e,0x1b,0xfb,0xfb,0x21,0x2d, +0xcb,0x23,0xa5,0xfa,0xd8,0x12,0x81,0xa3,0x7e,0xd6,0x12,0x43, +0x56,0xe7,0xcc,0x96,0x38,0x52,0x8a,0xf3,0x96,0x04,0xa2,0xea, +0x07,0x2d,0x29,0x44,0xd5,0x03,0x5a,0xd2,0x70,0xd4,0x5f,0x5a, +0x72,0x70,0x14,0x8b,0x2d,0x2e,0xe2,0x3a,0x43,0xb6,0x04,0x70, +0x54,0xaf,0x5a,0x42,0x14,0x35,0x07,0xb7,0xac,0x88,0xbc,0xce, +0x14,0x2d,0x35,0x48,0xaa,0x2e,0xb5,0x2c,0x41,0x56,0xf5,0xbf, +0x65,0x4d,0xe4,0xf4,0x8c,0x2d,0x6b,0xc3,0x51,0xbe,0xb7,0xac, +0x8b,0xbc,0x6a,0x4d,0xcb,0x7a,0x70,0xb4,0x3e,0x2d,0x3f,0x81, +0xa3,0x1c,0x68,0x59,0x8a,0x8c,0x72,0xbe,0xa5,0x01,0x8e,0x66, +0xdd,0x96,0x4d,0x90,0x52,0xed,0x6b,0xf9,0x29,0x12,0xaa,0x29, +0x2d,0x9b,0x22,0xae,0xba,0xd9,0xb2,0x19,0x1c,0xe5,0x4f,0xcb, +0xe6,0x48,0x68,0x8f,0x5a,0xb6,0x40,0x42,0x75,0xa0,0x65,0x07, +0x64,0xd4,0x9f,0x5a,0x7e,0x06,0x47,0xfb,0xd2,0xb2,0x13,0xd2, +0xb6,0x7e,0xbb,0x22,0xa1,0x9e,0xd8,0xa2,0x1a,0xdc,0x62,0xb5, +0x57,0xb9,0xd7,0xb2,0x07,0x52,0xca,0x9f,0x96,0x46,0x38,0xbf, +0xd3,0xb5,0x15,0x8e,0xf2,0xb0,0xa5,0x1d,0x39,0xc5,0x79,0x4b, +0x15,0x71,0xc5,0x41,0x4b,0x2f,0x6a,0xd5,0x7f,0x5b,0x7e,0xe4, +0xe8,0x8c,0xd3,0x32,0x8c,0xb8,0xbd,0xcf,0x08,0x12,0xaa,0xe9, +0x2d,0xa3,0xc8,0x6a,0x36,0x6d,0x99,0x84,0xa3,0xdc,0x6e,0x99, +0x82,0xa3,0x5c,0x6f,0x99,0x47,0x56,0x71,0xd9,0xb2,0x80,0xe4, +0x9f,0x75,0x5d,0x84,0x63,0xf7,0xb9,0x27,0xa2,0x9a,0x45,0x5a, +0xf6,0x82,0xa3,0xfc,0x6d,0xd9,0x1b,0x8e,0x66,0xe9,0x96,0x7d, +0x90,0x52,0x8d,0x6a,0x39,0x10,0x8e,0xce,0x5d,0x2d,0x07,0xc3, +0xd1,0x6c,0xd4,0x72,0x38,0xa2,0xb6,0xb6,0x47,0x21,0x6e,0x7b, +0x72,0x34,0x1c,0xd5,0x91,0x96,0x63,0x90,0xb7,0xd7,0x3b,0x01, +0x8e,0xce,0x6c,0x2d,0x27,0xc3,0x51,0x7d,0x69,0x39,0x05,0x8e, +0xea,0x50,0xcb,0x69,0x70,0x54,0x9b,0x5a,0xce,0x85,0xfd,0xdd, +0xa7,0x96,0xf3,0x50,0xd4,0x3c,0xd4,0x72,0x01,0xe2,0x76,0x0f, +0x17,0x22,0x6a,0x7b,0xf8,0x3b,0xe4,0x95,0xa7,0x2d,0x97,0xa1, +0xa8,0x79,0xa6,0xe5,0x0a,0x24,0xed,0xde,0xff,0x80,0x8c,0x12, +0xa8,0xe5,0x4a,0xc4,0xbf,0xd6,0xd5,0x9e,0x5f,0xaf,0xe7,0xa8, +0x96,0xb5,0x5c,0x8b,0x92,0x3d,0xf7,0xf5,0xc8,0xdb,0x7b,0xdd, +0x84,0xbc,0xad,0xc9,0xcd,0x70,0x54,0xa3,0x5a,0x6e,0x47,0xdc, +0xd6,0xe7,0x2e,0x38,0xf6,0xb1,0x7b,0x10,0xb5,0xe7,0xfe,0x13, +0x8a,0xf6,0xb5,0xf7,0xc2,0xb1,0x7c,0xb9,0x1f,0xb9,0x23,0x74, +0x7d,0x10,0x69,0xcd,0x70,0x2d,0x0f,0x23,0x6f,0x79,0xf7,0x28, +0x72,0x96,0x2b,0x4f,0xc2,0xb1,0xf7,0xf9,0x33,0x56,0xd5,0x7c, +0xd6,0xf2,0x17,0x64,0x6c,0xed,0x5f,0x84,0xa3,0xba,0xd7,0xf2, +0x12,0xa2,0xaa,0x71,0x2d,0x2f,0x23,0xa7,0x73,0x44,0xcb,0xab, +0x28,0xda,0x6b,0xbc,0x86,0xa4,0xed,0xd5,0xeb,0x70,0xec,0xde, +0xdf,0x40,0xce,0x72,0xeb,0x4d,0x38,0x16,0x33,0x6f,0x23,0x65, +0x31,0xf9,0x0e,0x1c,0x7b,0xcd,0x77,0x11,0xd3,0xfc,0xd9,0xf2, +0x77,0x38,0xf6,0xdc,0xef,0x21,0x6a,0xd7,0xcf,0x10,0xb7,0x5a, +0xf5,0x39,0x1c,0x5b,0x83,0x2f,0xe1,0xa8,0x4f,0xb4,0xa8,0x2e, +0xb6,0xd8,0x3c,0x69,0xeb,0xf1,0x2d,0x92,0x96,0x83,0xdf,0x23, +0x6e,0xfb,0xf3,0x03,0x72,0xaa,0xcb,0xf6,0xcf,0x3f,0x4c,0x51, +0x73,0x4b,0x65,0x59,0xe4,0x34,0xa7,0x56,0x96,0x43,0x46,0x31, +0x53,0x89,0x22,0xa7,0x59,0xad,0x12,0x83,0xa3,0xf5,0xad,0xc4, +0x61,0x3f,0x7b,0xa3,0x92,0x80,0xa3,0xfb,0xaf,0x64,0xe1,0x68, +0xe6,0xa9,0xe4,0xe1,0xa8,0x0f,0x55,0x1c,0x38,0xea,0x4f,0x95, +0x10,0xf6,0x77,0xf0,0x2a,0x2b,0x20,0xaa,0xb3,0x5e,0x65,0x45, +0xe4,0x34,0x87,0x54,0x56,0x46,0x42,0x33,0x50,0x65,0x15,0x38, +0xaa,0x99,0x95,0x1a,0xa4,0xb4,0x07,0x95,0x22,0x92,0xea,0xb9, +0x95,0x12,0x62,0xaa,0x6f,0x95,0x35,0xe0,0xd8,0xfd,0x2f,0x41, +0x51,0x7b,0x5c,0x59,0x0f,0x59,0xe5,0x79,0xa5,0x0e,0x8e,0xe2, +0xbc,0xb2,0x11,0x1c,0xc5,0x58,0xa5,0x01,0x8e,0xf6,0xb7,0xb2, +0x29,0xec,0xef,0x07,0x56,0x36,0x43,0x56,0x3d,0xab,0xb2,0x39, +0x62,0xda,0xd7,0xca,0x16,0x88,0x28,0x4f,0x2a,0xdb,0x20,0xa3, +0xbc,0xab,0x6c,0x0b,0x47,0xb3,0x65,0x65,0x3b,0xd8,0xdf,0x2d, +0xac,0xec,0x80,0x94,0x62,0xbb,0xf2,0x73,0x38,0xea,0xc7,0x95, +0x1d,0xe1,0xd8,0x7d,0xee,0x84,0xa4,0xe6,0x8a,0xca,0xce,0x88, +0xab,0x9f,0x56,0x76,0x81,0xa3,0xb8,0xac,0xec,0x8a,0xac,0xf2, +0xb1,0xb2,0x07,0x1c,0xc5,0x68,0xa5,0x19,0x59,0xd5,0xaf,0x4a, +0x0b,0xd2,0xea,0x3d,0x95,0x0a,0xd2,0x8a,0xbd,0x4a,0x2b,0x62, +0xca,0xff,0x4a,0x07,0x32,0x9a,0x27,0x2a,0x9d,0x48,0xdb,0xfa, +0x74,0x23,0x6b,0xeb,0xd7,0x03,0xfb,0xfb,0x90,0x95,0x3e,0x38, +0xb6,0xfe,0x03,0x48,0x69,0xb6,0xa9,0x8c,0x21,0xae,0x5e,0x58, +0x99,0x84,0xfd,0x9d,0xc9,0xca,0x1c,0x1c,0xe5,0x49,0x65,0x1e, +0x11,0xdb,0xc7,0x05,0x44,0x94,0xef,0x95,0x45,0xc4,0x94,0xa7, +0x95,0x3d,0x51,0xb4,0x35,0xd9,0x0b,0x69,0x8b,0xaf,0xbd,0x11, +0xd3,0x7c,0x5c,0xd9,0x07,0x79,0xf5,0x83,0xca,0x7e,0x70,0x6c, +0x2f,0xf6,0x47,0x54,0x79,0x57,0xf9,0x15,0x1c,0xe5,0x61,0xe5, +0x40,0x2c,0x51,0x5d,0xad,0x1c,0x8c,0x1a,0xd5,0xf9,0xca,0x61, +0xb0,0xbf,0xcf,0x59,0x39,0x02,0x39,0xcd,0x0d,0x95,0x53,0x51, +0x54,0x2d,0xa8,0x9c,0x01,0x47,0x79,0x5b,0x39,0x0b,0x79,0xcd, +0x09,0x95,0x1f,0xc5,0x55,0x6f,0x2b,0x17,0x20,0xae,0x5e,0x52, +0xb9,0x10,0x8e,0x72,0xbb,0x72,0x29,0x1c,0xcd,0x09,0x95,0xcb, +0xe0,0x28,0xcf,0x2b,0x97,0x23,0xa5,0xbe,0x5e,0xb9,0x02,0x4b, +0xd4,0xd7,0x2a,0x57,0xc3,0xfe,0xc9,0x52,0xe5,0x1a,0x38,0xaa, +0x05,0x95,0xeb,0xe0,0xa8,0x0e,0x54,0x6e,0x40,0xd1,0x62,0xe0, +0x46,0xc4,0x6d,0x4d,0x6e,0x81,0xfd,0x7d,0xd4,0xca,0x9d,0x88, +0xa9,0xa6,0x55,0xee,0x43,0x42,0x33,0x76,0xe5,0x7e,0x38,0x9a, +0xcf,0x2a,0x8f,0xc0,0xfe,0xce,0x6a,0xe5,0x51,0xd8,0xdf,0xeb, +0xaf,0x3c,0x86,0x98,0xad,0xf7,0xe3,0xc8,0x6b,0x8e,0xa9,0x3c, +0x81,0x94,0xe5,0xc5,0x93,0xc8,0x5a,0x4c,0x3d,0x85,0xa4,0xed, +0xdd,0xf3,0x48,0x5a,0x0c,0xbe,0x80,0xa4,0xc5,0xde,0x8b,0x48, +0x5a,0x8e,0xbe,0x8c,0xa4,0xdd,0xcf,0xab,0x28,0x58,0x5e,0xbe, +0x86,0xa2,0xfd,0xfe,0x1b,0x58,0x62,0x6b,0xfe,0x16,0x22,0xb6, +0x86,0x6f,0x23,0x65,0xf9,0xf8,0x0e,0xec,0xef,0xd9,0x56,0xde, +0x45,0x5c,0x67,0xa2,0xca,0xdf,0x10,0xb3,0xd7,0x78,0x1f,0x8e, +0xe6,0xcb,0xca,0x07,0x48,0x6b,0x0e,0xa9,0xfc,0x03,0x69,0x8b, +0xe5,0x7f,0x22,0xa6,0xfe,0x57,0xf9,0x10,0x49,0xcd,0x9f,0x95, +0x7f,0xc1,0xd1,0x3c,0x5a,0xf9,0x08,0xce,0xc7,0xba,0xfe,0x28, +0xaa,0x59,0xa7,0xf2,0x09,0xd2,0x96,0xbb,0x9f,0x22,0x61,0xf7, +0xf2,0x19,0x12,0x9a,0x39,0x2b,0x9f,0x23,0x62,0xeb,0xfd,0x15, +0xa2,0xb6,0x66,0x5f,0x23,0xae,0x9a,0x5d,0xf9,0x51,0xc2,0xe2, +0xeb,0x5b,0x38,0xfa,0xfa,0xd6,0x65,0xe1,0xe8,0xeb,0x5b,0x97, +0x47,0x4c,0xf3,0x4d,0x6b,0x04,0x51,0xcd,0x5a,0xad,0x09,0xc4, +0x55,0xf7,0x5b,0x93,0x88,0x69,0x26,0x6c,0x4d,0x21,0xfd,0x9d, +0xae,0x69,0x44,0x54,0xb7,0x5b,0x33,0xc8,0xa8,0x67,0xb5,0x66, +0x91,0xd3,0x7e,0xb7,0xe6,0x10,0x57,0x3c,0xb5,0xe6,0x91,0xb7, +0xf7,0x72,0x90,0x51,0xfd,0x6a,0x75,0x11,0x57,0xfc,0xb5,0xae, +0x8a,0xb8,0x82,0xb5,0xb5,0x06,0x8e,0x66,0xe6,0xd6,0x5a,0x2c, +0x51,0x2f,0x6c,0x2d,0x20,0xa6,0x3d,0x6e,0x2d,0x22,0xa7,0xfc, +0x6c,0x5d,0x0b,0x59,0xe5,0x7c,0xeb,0xba,0x70,0xec,0x3e,0xd7, +0x47,0x4c,0xb5,0xbe,0x75,0x03,0xd9,0x50,0x1f,0xd7,0x7a,0xb5, +0xfe,0x04,0x8e,0x3d,0xe3,0x26,0x70,0xb4,0x46,0xad,0x9b,0x22, +0xa6,0x5a,0xd0,0xba,0x19,0x52,0x9a,0x8f,0x5b,0xb7,0x40,0x56, +0xb9,0xdc,0xba,0x25,0x1c,0xad,0x6f,0xeb,0x56,0x70,0xd4,0xe3, +0x5a,0xb7,0x46,0x5c,0xb5,0xba,0x75,0x5b,0x38,0xea,0xa3,0xad, +0xdb,0x23,0x6f,0x6b,0xb2,0x23,0x72,0xf6,0xb1,0x9d,0x91,0xb1, +0xb5,0xdf,0x05,0x71,0xd5,0x85,0xd6,0x5d,0x91,0x50,0xbf,0x6c, +0x2d,0xc3,0xb1,0xf7,0x6d,0x46,0x46,0xb3,0x4e,0x6b,0x3f,0x5c, +0xdb,0xcf,0x09,0x24,0x15,0xf3,0xad,0x53,0x48,0xae,0xae,0xeb, +0x02,0x5c,0x7b,0xfd,0x45,0xb8,0xf6,0x9a,0x7b,0x21,0xa7,0xde, +0xdd,0xba,0x0f,0x1c,0xf5,0xef,0xd6,0x7d,0xe1,0xda,0xfe,0xef, +0x07,0xd7,0x62,0xe4,0x57,0x70,0xd5,0xa7,0x5b,0x0f,0x40,0x5c, +0xfd,0xb4,0xf5,0x40,0xe4,0x94,0xcf,0xad,0x87,0xc0,0x55,0xff, +0x6e,0x3d,0x02,0xae,0xc5,0xce,0xaf,0xe1,0x5a,0xbc,0x1c,0x8b, +0xa2,0x6a,0x78,0xeb,0x71,0x48,0xa8,0xd6,0xb7,0x1e,0x8f,0xbc, +0xf2,0xaa,0xf5,0x44,0xd8,0x3f,0x33,0x6c,0xfd,0x0d,0x1c,0xcd, +0x19,0xad,0x27,0xc1,0xb5,0x18,0x3c,0x05,0xae,0xc5,0xc9,0x79, +0x28,0x5a,0x3c,0x5c,0x0c,0xd7,0x62,0xf0,0x12,0xb8,0x9a,0x03, +0x5a,0x2f,0x85,0x6b,0x31,0x78,0x39,0x5c,0x5f,0xd7,0x2b,0x50, +0x54,0x8d,0x68,0xbd,0x12,0xae,0x6a,0x4b,0xeb,0x55,0x58,0x62, +0xb1,0x77,0x2d,0x5c,0xf5,0xf2,0xd6,0x1b,0x90,0xd0,0x99,0xbd, +0xf5,0x46,0x44,0xed,0x1e,0x6f,0x83,0x6b,0xf1,0x7e,0x17,0xdc, +0x95,0x74,0xbd,0x1b,0x11,0xcd,0xa5,0xad,0xf7,0xc0,0xd5,0x2c, +0xd2,0xfa,0x27,0x44,0xd4,0xcf,0x5a,0xef,0x45,0xd6,0xbe,0xee, +0x3e,0xb8,0x9a,0x63,0x5a,0x1f,0x80,0x6b,0xf9,0xf1,0x30,0x5c, +0xcb,0xb3,0x47,0xe0,0x7a,0xba,0x3e,0x8a,0x84,0xc5,0xec,0x4b, +0x70,0x35,0xdf,0xb4,0xbe,0x85,0x88,0xea,0x75,0xeb,0xdb,0x70, +0x2d,0x1e,0x54,0xc3,0x5a,0x55,0xfb,0x5d,0xcb,0x85,0xf7,0x51, +0x6b,0xf7,0xf3,0x01,0x72,0x16,0xb7,0xff,0x82,0x6b,0xb9,0xf5, +0x11,0x5c,0xcb,0xb9,0xcf,0x90,0xb1,0xdc,0xfa,0x16,0xae,0x6a, +0x6f,0xeb,0x7f,0xe1,0x5a,0x8e,0xfe,0x80,0xa2,0xf2,0xb4,0x2d, +0x82,0x88,0xea,0x75,0x5b,0x0c,0x09,0xe5,0x67,0x5b,0x1c,0x49, +0xe5,0x60,0x5b,0x1e,0xae,0xce,0xa1,0x6d,0x0e,0x32,0x9a,0x09, +0xda,0x02,0xb8,0xca,0xff,0xb6,0x15,0x10,0xd1,0x1c,0xd0,0xf6, +0x13,0xb8,0xca,0xc7,0xb6,0x3a,0xe4,0xb5,0xd7,0x6d,0x1b,0x21, +0xa9,0xbd,0x68,0x6b,0x80,0xab,0x3c,0x6f,0xdb,0x14,0xae,0xf2, +0xbe,0x6d,0x33,0xb8,0x9a,0xe1,0xda,0xb6,0x46,0xda,0x7e,0xbd, +0x2d,0x5c,0xcd,0x24,0x6d,0x3f,0x43,0x5a,0xe7,0xc6,0xb6,0x9f, +0xc3,0xd5,0xf3,0xb6,0xed,0x88,0xa4,0xe2,0xb2,0x6d,0x77,0xb8, +0xf6,0x2c,0x8d,0xc8,0xa9,0x5e,0xb7,0x55,0x10,0xd7,0xbe,0xb4, +0xe9,0x7c,0xd9,0xa6,0xf9,0xc7,0x55,0x3e,0xb6,0xf5,0xc0,0x5d, +0x47,0xd7,0x5e,0xb8,0xf6,0x1c,0x7d,0xa8,0xd1,0x7c,0xd8,0x36, +0x0c,0x57,0xcd,0xb2,0xed,0x57,0x70,0x37,0xd6,0xf5,0x00,0xb8, +0x76,0xef,0x07,0xc1,0xfd,0x3f,0x5d,0x0f,0x81,0xab,0x73,0x78, +0xdb,0xe1,0x70,0x35,0x3b,0xb6,0x1d,0x81,0x94,0xe2,0xb2,0xed, +0xd7,0x28,0xaa,0x67,0xb5,0x1d,0x05,0x57,0x35,0xab,0xed,0x18, +0xc4,0x75,0x76,0x6a,0x3b,0x16,0x6e,0xbd,0xae,0xc7,0x21,0xad, +0x98,0x69,0x3b,0x0b,0xae,0x6a,0x62,0xdb,0xd9,0x70,0x6d,0xbd, +0xcf,0x41,0x54,0xb1,0xd2,0x76,0x1e,0x62,0xf6,0x8c,0xe7,0x23, +0xaa,0x39,0xa0,0xed,0xb7,0x70,0x35,0x2f,0xb5,0x5d,0x00,0xd7, +0xf6,0xe4,0xf7,0x88,0xdb,0xfa,0x5d,0x0e,0x57,0x75,0xb3,0xed, +0x0a,0xb8,0xaa,0xad,0x6d,0x7f,0x40,0x4a,0xf3,0x6a,0xdb,0x95, +0x88,0xe9,0xbc,0xdd,0x76,0x15,0x62,0xca,0xe7,0xb6,0x6b,0xe0, +0xda,0xde,0x5e,0x87,0x1a,0x5b,0xff,0x5b,0x10,0x51,0x7c,0xb7, +0x3d,0x00,0x57,0xfd,0xa5,0xed,0x41,0xb8,0x9a,0xa1,0xdb,0x1e, +0x86,0xab,0x7e,0xd1,0xf6,0x3c,0x5c,0xdb,0xf3,0x57,0xe0,0x5a, +0x5c,0xfc,0x15,0xae,0xea,0x73,0xdb,0x1b,0x70,0x2d,0x46,0xde, +0x41,0xc2,0xd6,0xe0,0x5d,0xb8,0x9a,0xb9,0xdb,0xbe,0x86,0x6b, +0x31,0xf2,0x0d,0xdc,0xdd,0x74,0xfd,0x2f,0x5c,0xd5,0xf4,0xb6, +0xef,0xe1,0xaa,0xd6,0xb7,0xc7,0x90,0x56,0x5d,0x6e,0x4f,0x22, +0xaa,0x38,0x6b,0x0f,0xe0,0xda,0xaf,0x57,0x80,0xab,0x79,0xbd, +0x7d,0x45,0x24,0x55,0xfb,0xda,0x57,0x42,0x44,0xeb,0xd3,0xbe, +0x2a,0x5c,0xf5,0x89,0xf6,0x75,0x11,0x55,0x3c,0xb5,0xd7,0xc1, +0x6d,0xd3,0x75,0x23,0x24,0x75,0xaf,0xed,0xf5,0xa8,0xd5,0x19, +0xa1,0x7d,0x63,0xb8,0x8a,0xdd,0xf6,0x4d,0xe0,0x36,0xe9,0xba, +0x29,0x5c,0xcd,0xf7,0xed,0xdb,0xa3,0x46,0xeb,0xd2,0xbe,0x3b, +0x6a,0xed,0x7d,0xca,0x70,0xed,0x63,0x4d,0x70,0x75,0x4e,0x68, +0xaf,0xa0,0x60,0xf7,0x55,0x45,0x54,0xf5,0xa8,0x7d,0x04,0xae, +0xce,0x06,0xed,0x13,0x88,0xa9,0x1f,0xb7,0x4f,0xc1,0x55,0x9e, +0xb4,0x4f,0xc3,0xb5,0xd7,0x98,0x81,0xab,0x1c,0x6a,0xdf,0x1b, +0x59,0xad,0x5d,0xfb,0xfe,0xc8,0x68,0x96,0x6d,0xff,0x25,0xb2, +0x76,0x0f,0x87,0xc0,0x55,0x4d,0x6e,0xff,0x35,0x5c,0x9d,0x37, +0xda,0x8f,0x42,0x54,0x33,0x58,0xfb,0xb1,0x70,0x75,0xf6,0x68, +0xff,0x0d,0x5c,0xe5,0x61,0xfb,0x69,0x70,0x95,0x9f,0xed,0x67, +0xa3,0x46,0xf1,0xd3,0x7e,0x21,0x5c,0x7b,0x8e,0x8b,0x91,0xd1, +0x7c,0xd6,0x7e,0x29,0x5c,0x5b,0xe7,0x6b,0xe0,0xaa,0x07,0xb7, +0xdf,0x04,0x77,0x50,0xd7,0x5b,0xe0,0xaa,0xaf,0xb5,0xdf,0x05, +0x57,0xb9,0xdd,0xfe,0x27,0x2c,0x51,0x0c,0xb5,0xdf,0x0b,0xd7, +0xd6,0xe6,0x3e,0xb8,0x9a,0xaf,0xda,0xef,0x87,0x3b,0xaa,0xeb, +0x23,0x70,0xc7,0x75,0x7d,0x0c,0xb5,0x76,0xff,0x4f,0xc1,0xb5, +0xb5,0x7c,0x16,0xae,0xfa,0x48,0xfb,0x73,0x70,0x6d,0x5d,0x5f, +0x84,0xfd,0x1b,0xb1,0xf6,0x97,0xe0,0xa8,0x8e,0xb4,0xbf,0x82, +0xa4,0x6a,0x51,0xfb,0xab,0x48,0x9c,0xab,0xeb,0xeb,0x88,0x6a, +0x26,0x68,0x7f,0x13,0x11,0xbb,0xf7,0x77,0x90,0xd6,0x79,0xa6, +0xfd,0x23,0xb8,0xb6,0x3f,0x9f,0x20,0x61,0x31,0xfb,0x19,0x22, +0x3a,0xdb,0xb4,0x7f,0x8e,0x94,0x6a,0x69,0xfb,0x37,0x70,0x67, +0x75,0xfd,0x16,0x71,0xd5,0xb5,0xf6,0xff,0x22,0xa1,0xb9,0xa2, +0xfd,0x07,0xb8,0x3a,0xbf,0x29,0x0c,0xfe,0xc7,0xd5,0xb9,0xae, +0x63,0x79,0xe4,0x54,0xdf,0x3a,0x22,0x70,0x95,0x2f,0x1d,0x09, +0xb8,0x3a,0xcb,0x75,0x24,0xe1,0x6a,0xa6,0xe9,0x48,0xc3,0xd5, +0xfd,0x77,0x64,0xe1,0x2a,0x6e,0x3a,0xf2,0x88,0x2b,0x3e,0x3b, +0x3c,0x44,0x35,0xff,0x74,0xf8,0x70,0x35,0xf7,0x74,0xac,0x00, +0x57,0xb3,0x4e,0xc7,0x4a,0x70,0x35,0x03,0x75,0xac,0x06,0x57, +0xf3,0x7f,0x47,0x01,0xf6,0xef,0xec,0x3a,0xd6,0x82,0xab,0xf8, +0xeb,0x58,0x1b,0x11,0xfb,0x9c,0x75,0x90,0x50,0x4e,0x75,0x6c, +0x88,0xb8,0xbd,0xcf,0x52,0xa4,0x95,0x77,0x1d,0xaa,0x89,0x1d, +0x96,0x5f,0x5a,0x87,0x8e,0x2d,0xe0,0xaa,0xa6,0x77,0x6c,0x0b, +0x57,0x67,0xc8,0x8e,0xed,0x91,0xb0,0xf7,0xda,0x09,0x31,0xf5, +0xf8,0x8e,0x5d,0x91,0x53,0x6c,0x74,0x94,0xe1,0x6a,0xf6,0xea, +0x68,0x84,0xab,0x1c,0xe8,0x68,0x42,0x42,0x39,0xdf,0xd1,0x8c, +0xb8,0x66,0xc5,0x8e,0x2e,0x14,0xb5,0xaf,0x1d,0x83,0x70,0xd5, +0x27,0x3a,0x46,0x90,0xd0,0xbc,0xd1,0x31,0x8a,0xa2,0xe6,0x86, +0x8e,0x31,0xa4,0x6d,0x6d,0x27,0xe1,0x1e,0xaa,0xeb,0x14,0xd2, +0xea,0xdd,0x1d,0x07,0xc3,0x3d,0x52,0xd7,0xc3,0x90,0xb2,0x35, +0x38,0x1a,0xae,0x7a,0x52,0xc7,0x31,0x70,0x95,0x93,0x1d,0xc7, +0x21,0x6e,0xef,0x75,0x2a,0x5c,0xe5,0x67,0xc7,0x85,0x70,0xed, +0xeb,0x2e,0x46,0x5c,0xf9,0xd3,0xf1,0x3b,0x44,0xd5,0x4b,0x3a, +0x2e,0x81,0xab,0x1c,0xee,0xf8,0x03,0x5c,0x7b,0xbd,0xab,0x50, +0xd4,0x7c,0xd3,0x71,0x1d,0x5c,0xcd,0x91,0x1d,0x37,0xc2,0xb5, +0xf7,0xff,0x13,0x5c,0xbb,0xc7,0xfb,0xe1,0xda,0x5e,0x3c,0x04, +0x57,0x3d,0xbd,0xe3,0x61,0x14,0x55,0x27,0x3b,0x1e,0x41,0x51, +0x71,0xdf,0xf1,0x38,0x72,0x9a,0x35,0x3b,0x9e,0x42,0x52,0x39, +0xd6,0xa1,0xf3,0x6a,0x87,0xe5,0x9a,0x6a,0x72,0xc7,0xf3,0x70, +0x55,0x53,0x3a,0x5e,0x80,0x6b,0xcf,0xf7,0x57,0x64,0x94,0x33, +0x1d,0x6f,0x20,0x62,0xf7,0xfb,0x26,0xb2,0xf6,0x3e,0xef,0xc0, +0x55,0x0d,0xea,0xf8,0x02,0x49,0xcd,0x68,0x1d,0x5f,0x23,0x61, +0xbf,0xfe,0x06,0x59,0x8b,0xa5,0x6f,0x11,0xd3,0x3c,0xd3,0xf1, +0x1f,0x24,0x54,0xa3,0xec,0x07,0x3c,0x9a,0x9c,0xd6,0xb3,0x73, +0x39,0x64,0xb4,0x56,0x9d,0x51,0xc4,0x15,0x2b,0x9d,0x31,0xa4, +0xd5,0x1b,0x3a,0x53,0x70,0xf5,0x5c,0x9d,0x69,0xb8,0xa7,0xeb, +0x1a,0x22,0xad,0xfc,0xed,0x5c,0x19,0xae,0xce,0x23,0x9d,0x35, +0x70,0x35,0x1f,0x76,0x96,0xe0,0xaa,0x56,0x76,0x2e,0x41,0xc6, +0xde,0x67,0x3d,0x44,0x75,0x06,0xee,0xac,0x43,0x8d,0xfa,0x4d, +0xe7,0x52,0x44,0x95,0xcf,0x9d,0x1b,0x21,0xa7,0xbe,0xd9,0xb9, +0x31,0x92,0x5a,0xbb,0xce,0xff,0x43,0xad,0x7a,0x65,0xe7,0xe6, +0x48,0xa8,0xfe,0x77,0x6e,0x05,0x57,0x33,0x44,0xe7,0xb6,0xc8, +0x29,0xb7,0x3b,0xb7,0x43,0x5e,0xb5,0xb8,0x73,0x57,0x44,0x95, +0xef,0x9d,0xbb,0xc1,0x55,0x4d,0xeb,0x6c,0x46,0x4a,0x75,0xac, +0xb3,0x05,0xae,0x62,0xa9,0xb3,0x15,0x19,0xd5,0xff,0xce,0x0e, +0x64,0xec,0x7e,0x3a,0x91,0x51,0x6d,0xef,0xec,0x42,0x56,0x75, +0xa3,0xb3,0x1b,0x69,0xcd,0x3c,0x9d,0x7d,0x48,0x68,0x1e,0xeb, +0x1c,0x44,0xad,0xf2,0xb3,0x73,0x08,0xae,0x66,0x83,0xce,0x49, +0x44,0x55,0x47,0x3a,0xa7,0x91,0xb1,0x35,0x58,0x80,0xab,0x99, +0xa9,0x73,0x4f,0xb8,0x9a,0xb1,0x3a,0xf7,0x41,0x4a,0x35,0xa8, +0xf3,0x17,0x70,0x95,0x0f,0x9d,0x07,0x21,0x69,0xf7,0x75,0x38, +0x62,0xf6,0xbc,0x47,0xc2,0xbd,0x48,0xd7,0x53,0x91,0x53,0x4d, +0xe9,0x3c,0x13,0x29,0xd5,0xd3,0xce,0xf3,0x90,0x56,0x5e,0x74, +0xfe,0x16,0xc5,0xf7,0x74,0xbd,0x00,0xae,0xf2,0xaa,0xf3,0x72, +0xe4,0x54,0x43,0x3a,0xaf,0x84,0xab,0x1c,0xeb,0xbc,0x06,0xae, +0x66,0xb2,0xce,0x1b,0x50,0xd4,0x39,0xa1,0xf3,0x46,0x64,0xed, +0xf5,0x6f,0x83,0x6b,0xaf,0x71,0x3b,0x5c,0xe5,0x6d,0xe7,0x1d, +0x70,0xed,0x3e,0xef,0x84,0xab,0x99,0xaf,0xf3,0x1e,0x24,0xec, +0x19,0xef,0x45,0xce,0xe2,0xeb,0x41,0xb8,0xca,0xe7,0xce,0x87, +0x91,0xb6,0x67,0x7d,0x0c,0x51,0x5b,0x9b,0x27,0x90,0xd4,0xcc, +0xd3,0xf9,0x2c,0x5c,0xe5,0x51,0xe7,0x73,0x70,0xed,0xde,0xff, +0x82,0xb8,0x72,0xa3,0xf3,0x45,0xb8,0x9a,0x13,0x3a,0x5f,0x82, +0xab,0xf3,0x5b,0xe7,0xcb,0x70,0xed,0xf9,0xfe,0x0a,0xf7,0x7a, +0x5d,0x5f,0x87,0x7b,0x99,0xae,0x6f,0xc0,0xb5,0x67,0x7d,0x17, +0xae,0xad,0xc1,0xdf,0xe0,0xaa,0xbe,0x74,0xfe,0x13,0xf6,0xef, +0xac,0x3b,0x3f,0x44,0x4a,0xf3,0x59,0xe7,0x47,0x48,0x29,0xff, +0x3b,0x3f,0x86,0xab,0x99,0xa0,0xf3,0x13,0xa4,0x34,0x0f,0x74, +0x7e,0x8a,0x88,0xbd,0xef,0x67,0xc8,0xea,0x2c,0xd6,0xf9,0x35, +0xd2,0x76,0xfd,0x06,0xae,0x6a,0x60,0xe7,0xb7,0x70,0x55,0xc3, +0x3b,0xbf,0x13,0x9b,0x27,0x6f,0x5d,0x66,0x99,0xae,0xe5,0x60, +0xff,0xbe,0xbb,0x2b,0x89,0x9c,0x72,0xb2,0x2b,0x05,0x57,0xeb, +0xde,0x95,0x46,0x51,0x71,0xdb,0x95,0x47,0x54,0x33,0x6a,0x97, +0x03,0x57,0x79,0xd1,0x15,0xc2,0xfe,0x6d,0x78,0xd7,0x0a,0x88, +0xaa,0x1e,0x76,0xad,0x04,0x47,0xeb,0xd2,0xb5,0x32,0x92,0xca, +0x9f,0xae,0x55,0x90,0x56,0x2f,0xec,0x5a,0x15,0xae,0xce,0xb7, +0x5d,0xab,0x21,0xa7,0xfb,0xef,0x5a,0x1d,0x39,0xd5,0xdc,0xae, +0x35,0xe1,0xfe,0x51,0xd7,0xb5,0x61,0xff,0xf6,0xbc,0x6b,0x5d, +0x64,0x54,0x0b,0xba,0xd6,0x43,0x5a,0xe7,0xcd,0xae,0xf5,0x91, +0x55,0xbf,0xeb,0x52,0x8d,0xeb,0x52,0x0f,0x75,0xed,0x75,0x7e, +0x82,0xa8,0x6a,0x50,0xd7,0x46,0x48,0x68,0x4e,0xeb,0xaa,0x87, +0xab,0xf9,0xa9,0xeb,0xa7,0x88,0xa8,0x96,0x76,0x6d,0x0a,0x57, +0xb5,0xbe,0x6b,0x6b,0xb8,0x3a,0x0f,0x74,0xfd,0x0c,0x51,0xcd, +0x13,0x5d,0x3b,0x21,0xa6,0xf7,0xe8,0xda,0x19,0x19,0xc5,0x74, +0xd7,0x2e,0xc8,0xd9,0xe7,0x96,0xe1,0xaa,0x56,0x77,0x35,0x22, +0xa5,0xd8,0xea,0x6a,0x82,0xab,0x78,0xed,0x6a,0x46,0xdc,0xd6, +0xaf,0x82,0xa2,0x6a,0x60,0x57,0x2b,0x72,0xea,0x41,0x5d,0x6d, +0x70,0xd5,0x6f,0xba,0x3a,0x90,0xd1,0xdc,0xd8,0xd5,0x09,0x57, +0xb1,0xde,0xd5,0x0d,0xd7,0x9e,0xbd,0x8a,0xa2,0xe2,0xac,0xab, +0x17,0x45,0xc5,0x59,0xd7,0x00,0x5c,0xe5,0x43,0xd7,0x10,0x5c, +0xf5,0xa7,0xae,0x61,0x14,0x75,0x6e,0xef,0x1a,0x45,0x54,0xe7, +0xf1,0xae,0x71,0xb8,0x4f,0xea,0x3a,0x81,0xe4,0xc9,0xba,0x4e, +0xc2,0x7d,0x5a,0xd7,0x29,0xa4,0xed,0x35,0x66,0xe0,0xaa,0xcf, +0x75,0xcd,0x21,0xa7,0xba,0xdd,0xb5,0x17,0xec,0x7b,0x05,0x74, +0xed,0x8d,0x8c,0x3d,0xd3,0xfe,0x70,0x9f,0xd1,0xf5,0x40,0xc4, +0x2d,0x3e,0x0f,0x85,0xab,0x5c,0xed,0x3a,0x0c,0x19,0x5b,0xb7, +0xc3,0x91,0x55,0xed,0xeb,0x3a,0x02,0xb9,0xd7,0x74,0x3d,0x16, +0x19,0xcd,0xa3,0x5d,0x27,0xc0,0xd5,0x9c,0xda,0x75,0x2a,0x62, +0x16,0x7b,0x67,0x20,0xaf,0xbe,0xd2,0x75,0x36,0x72,0x16,0xe7, +0xe7,0xc2,0x53,0x4d,0xee,0x3a,0x1f,0xae,0xfa,0x73,0xd7,0xef, +0xe0,0xaa,0x2e,0x74,0x5d,0x82,0xa2,0xf2,0xb3,0xeb,0x52,0xa4, +0x2d,0x36,0x2f,0x47,0x4e,0xb3,0x4e,0xd7,0x55,0xc8,0xd8,0xbe, +0xdf,0x00,0x57,0xb9,0xdc,0x75,0x3b,0x72,0x76,0x2f,0x77,0xa0, +0xa8,0xdc,0xee,0xba,0x13,0x09,0xf5,0xaa,0xae,0x7b,0x90,0x54, +0x3f,0xed,0x7a,0x08,0xae,0x3d,0xef,0xa3,0x48,0xa8,0xfe,0x76, +0x3d,0x8e,0x84,0xdd,0xe3,0x33,0x88,0xd8,0x9a,0x3d,0x8b,0xb8, +0xe6,0xf3,0xae,0xe7,0x90,0xb2,0x58,0x7b,0x1e,0x11,0xf5,0xe5, +0x2e,0xd5,0xad,0x2e,0x3b,0x9f,0xda,0xfa,0xfc,0x15,0xae,0x7d, +0xec,0x6f,0x88,0xd8,0x5a,0xfd,0x1d,0x51,0x8b,0x99,0xf7,0xe1, +0xaa,0xf6,0x75,0xfd,0x03,0x39,0x7b,0x9f,0x7f,0x22,0x6b,0x6b, +0xf3,0x15,0x22,0xb6,0xe7,0xff,0x86,0x7d,0x2f,0x9e,0xae,0xef, +0x10,0xb1,0xbc,0xfe,0x01,0x09,0xf5,0x8c,0xee,0x65,0x11,0xd1, +0x1e,0x74,0x2f,0x8f,0x88,0x62,0xab,0x3b,0x09,0x57,0x73,0x63, +0xb7,0x0b,0x57,0x35,0xb4,0x7b,0x25,0xe4,0x94,0x3b,0xdd,0xab, +0xc0,0x55,0x3f,0xea,0x5e,0x0d,0xae,0x66,0xa0,0xee,0x02,0x5c, +0xd5,0x99,0xee,0x22,0x92,0xaa,0x21,0xdd,0x6b,0xc2,0x55,0x6c, +0x74,0xaf,0x8b,0x5a,0x9d,0x11,0xba,0xeb,0x10,0x57,0xdf,0xec, +0xd6,0xbc,0xd0,0x6d,0xe7,0x56,0x3d,0x73,0xf7,0x96,0x48,0x6a, +0x8f,0xba,0xb7,0x85,0xab,0xb9,0xaa,0x7b,0x3b,0xe4,0x15,0x0f, +0xdd,0x3b,0x22,0xab,0xba,0xd9,0xbd,0x0b,0x5c,0xad,0x5d,0x77, +0x37,0x12,0xaa,0xe1,0xdd,0x43,0x70,0xb5,0x76,0xdd,0x63,0xc8, +0x2a,0x37,0xbb,0xa7,0xe0,0xaa,0x96,0x76,0xcf,0xc0,0x55,0x6f, +0xe8,0x3e,0x18,0x39,0xd5,0x81,0xee,0x53,0x90,0xd5,0x99,0xa8, +0xfb,0x1c,0xb8,0x5a,0xcf,0xee,0x73,0x91,0x55,0xfc,0x75,0xdf, +0x05,0x57,0x7b,0xd0,0x7d,0x37,0x5c,0xc5,0x52,0xf7,0x3d,0x70, +0x95,0xe3,0xdd,0xf7,0x22,0xaa,0xda,0xd4,0x7d,0x1f,0x5c,0xc5, +0x6d,0xf7,0xa3,0x48,0xa8,0x8f,0x77,0x3f,0x0e,0x57,0xf9,0xde, +0xfd,0x04,0xe2,0x8a,0x99,0xee,0x67,0xe0,0x6a,0xff,0xba,0x5f, +0x80,0xab,0x99,0xb2,0xfb,0x45,0xb8,0xea,0x3d,0xdd,0x6f,0x21, +0xad,0x7e,0xdd,0xfd,0x0e,0x5c,0xf5,0xa7,0xee,0xbf,0xc3,0x55, +0x4f,0xea,0xfe,0x00,0xae,0xce,0x72,0xdd,0xea,0x3f,0xdd,0x7a, +0x3d,0xf7,0xcb,0x65,0x96,0xa9,0x26,0x11,0x53,0x2d,0xae,0xa6, +0xe1,0x2a,0x6e,0xaa,0x19,0xb8,0xda,0xbb,0xea,0x0a,0x70,0xd5, +0xc3,0xaa,0xab,0x23,0xa9,0xfb,0xa8,0xae,0x07,0x57,0x33,0x6b, +0x75,0x03,0xa4,0xed,0x6b,0x97,0x22,0xa2,0xe7,0xaa,0xd6,0xc3, +0xd5,0x7b,0x56,0x37,0x81,0xab,0x9e,0x57,0xdd,0x1a,0xee,0xf7, +0xba,0x6e,0x0b,0x4f,0xb1,0x58,0xdd,0x01,0xae,0x62,0xb4,0xfa, +0x73,0xd8,0xb7,0xa4,0xab,0x36,0xc1,0xbe,0x9f,0x49,0xb5,0x19, +0x9e,0xf6,0xbd,0xda,0x8a,0xb8,0xea,0x7c,0xb5,0x0d,0x9e,0xe2, +0xb8,0xda,0x8e,0xa2,0xd6,0xa1,0xda,0x81,0x84,0xe2,0xb6,0xda, +0x89,0xb4,0xe2,0xb8,0xaa,0x18,0xa9,0xaa,0x26,0x7b,0xea,0x1d, +0xd5,0x1e,0x24,0x54,0x3b,0xaa,0xbd,0x88,0xab,0x46,0x54,0xfb, +0x91,0x53,0x3c,0x57,0x87,0x11,0xd3,0x59,0xae,0x3a,0x82,0xb8, +0xf2,0xbd,0x3a,0x0a,0x4f,0xb3,0x78,0x75,0x0c,0x51,0xf5,0xfa, +0xea,0x24,0xbc,0xb8,0xae,0xd3,0x48,0xab,0xef,0x56,0x17,0xe0, +0xe9,0xdc,0x5b,0x5d,0x84,0x67,0x6b,0xb6,0x17,0x3c,0xdb,0x93, +0x7d,0xe0,0xa9,0xf7,0x57,0xf7,0x87,0x67,0xfb,0xf3,0x4b,0x78, +0x9a,0x99,0xab,0x87,0xc0,0xbe,0xaf,0x4b,0xf5,0x70,0x78,0x9a, +0x09,0xaa,0x47,0x22,0x6d,0x6b,0x76,0x14,0x22,0x8a,0xb3,0xea, +0xd1,0x48,0x6a,0x3e,0xa8,0x1e,0x83,0x88,0xce,0x71,0xd5,0xe3, +0x90,0x52,0xfd,0xa9,0x1e,0x8f,0xa8,0xe2,0xb6,0x7a,0x02,0x12, +0x8a,0xad,0xea,0x6f,0x10,0x57,0xad,0xac,0x9e,0x8e,0x8c,0xfa, +0x56,0xf5,0x4c,0x24,0xd5,0xe3,0xab,0x67,0x21,0xaa,0x18,0xae, +0x9e,0x8d,0xb4,0x66,0xb0,0xea,0x39,0xc8,0xd8,0xfa,0x9c,0x8b, +0x88,0x6a,0x63,0xf5,0x3c,0xc4,0xd4,0x5f,0xab,0xe7,0x23,0x67, +0x7b,0x7e,0x01,0x12,0xca,0x91,0xea,0xc5,0x88,0x29,0x3f,0xab, +0xbf,0x43,0xca,0xee,0xe5,0x12,0x24,0x94,0xd7,0xd5,0x4b,0x91, +0x57,0xa0,0x54,0x2f,0x83,0xa7,0x79,0xa8,0x7a,0x0d,0x62,0x3a, +0xfb,0x57,0xaf,0x43,0x42,0xe7,0xf3,0xea,0x8d,0x88,0xea,0xac, +0x57,0xbd,0x09,0x51,0x9d,0x77,0xaa,0x37,0x23,0xa9,0x79,0xa3, +0x7a,0x0b,0xa2,0x9a,0x21,0xaa,0xb7,0xc1,0x53,0x1d,0xac,0xde, +0x8e,0xbc,0xed,0xd7,0x1f,0x91,0xb4,0xfb,0xff,0x13,0x8a,0xca, +0xc7,0xea,0x7d,0x48,0xda,0x3d,0xdc,0x0f,0xcf,0xee,0xed,0x01, +0xc4,0x54,0xef,0xaa,0x0f,0x22,0xa3,0x39,0xb9,0xfa,0x10,0x72, +0xf6,0xfe,0x0f,0xc3,0xd3,0xd9,0xb0,0xfa,0x28,0x3c,0xd5,0x9f, +0xea,0x13,0xc8,0xaa,0x46,0x54,0x9f,0x81,0x67,0x79,0xf9,0x67, +0x44,0x55,0xbb,0xaa,0xcf,0x21,0xa6,0xfa,0x53,0x7d,0x1e,0x9e, +0xed,0xf5,0x4b,0x28,0x2a,0xf7,0xab,0xaf,0x22,0x6a,0x6b,0xfb, +0x1a,0x92,0x96,0xb3,0xaf,0xc3,0x53,0x4d,0xaf,0xbe,0x81,0x84, +0xea,0x73,0xf5,0x2d,0x44,0x55,0x5b,0xab,0x6f,0xc3,0xb3,0x18, +0x7e,0x17,0x9e,0x6a,0x6c,0xf5,0x6f,0xf0,0x34,0x3b,0x56,0xff, +0x0e,0xcf,0xf2,0xeb,0x3d,0x64,0xec,0x35,0xde,0x47,0xa0,0x59, +0xb4,0xfa,0x01,0x92,0x56,0x4f,0xfe,0x09,0x4f,0xfd,0xa3,0xfa, +0x21,0xd6,0xb4,0x75,0xfe,0x08,0x79,0x8b,0xd9,0x4f,0xe0,0x69, +0x56,0xac,0x7e,0x0e,0x4f,0x3d,0xa6,0xfa,0x25,0xd2,0xaa,0xbf, +0xd5,0xaf,0xe0,0x69,0x46,0xaa,0xfe,0x1b,0xf6,0x3d,0x8e,0xaa, +0xdf,0x22,0x61,0x6b,0xf9,0x3d,0xd2,0xb6,0x77,0x3f,0x20,0xb9, +0xc6,0x32,0xcb,0xf4,0x2c,0x8b,0xac,0xee,0xb5,0x67,0x39,0xa4, +0x14,0x1b,0x3d,0x11,0x24,0x74,0x9f,0x3d,0x51,0x78,0xea,0x67, +0x3d,0x31,0x24,0x95,0x03,0x3d,0xca,0xed,0x1e,0xe5,0xb1,0xa7, +0x59,0xbd,0x27,0x89,0x88,0xf2,0xa1,0x27,0x85,0xb4,0xd6,0xb3, +0x27,0x8d,0x94,0xd6,0xa4,0x27,0x0b,0xcf,0xde,0x37,0x87,0x8c, +0x72,0xaf,0x27,0x0f,0xfb,0x5e,0x4c,0x3d,0x2e,0x92,0xf6,0x3a, +0x3e,0x3c,0x9d,0xc9,0x7b,0x56,0x40,0x4a,0xf3,0x5e,0xcf,0x2a, +0x48,0x2a,0xdf,0x7a,0x6a,0x51,0xd4,0x5a,0xf4,0x14,0xe1,0xa9, +0xd7,0xf6,0xac,0x0e,0xfb,0x9e,0x4e,0x3d,0x4b,0x90,0xd3,0xfa, +0xf6,0xac,0x03,0x4f,0xb3,0x7b,0xcf,0x86,0x88,0xa9,0x57,0xf5, +0x6c,0x84,0xa4,0xea,0x78,0x8f,0x66,0xed,0x9e,0xcd,0xf8,0x1e, +0x50,0x3d,0x9b,0x23,0xa9,0xe7,0xec,0xd9,0x02,0x49,0xf5,0x94, +0x9e,0x2d,0x91,0x51,0x5c,0xf6,0x6c,0x85,0x94,0xdd,0xd7,0xd6, +0xc8,0xaa,0x8e,0xf4,0x6c,0x83,0x8c,0xe2,0xaf,0x67,0x5b,0xc4, +0xd4,0x0b,0x7b,0xb6,0x83,0xa7,0xfe,0xd1,0xf3,0x73,0xc4,0x54, +0x8f,0x7a,0x76,0x84,0xa7,0x7a,0xd2,0xb3,0x33,0x62,0xda,0xd7, +0x9e,0x5d,0x91,0xd1,0xd9,0xb3,0x67,0x37,0x44,0xb5,0x8f,0x3d, +0x7b,0x20,0xa1,0xb3,0x73,0x4f,0x19,0x9e,0xdd,0x7f,0x23,0x3c, +0xe5,0x5a,0x4f,0x13,0x3c,0xf5,0xb8,0x9e,0x66,0xd4,0xd8,0xfd, +0x57,0xe0,0xd9,0x1a,0xb4,0x21,0xa3,0x5e,0xd5,0x53,0x45,0xad, +0x7a,0x7f,0x4f,0x1f,0xd2,0xca,0xe5,0x9e,0x01,0xd4,0xda,0xbd, +0x0c,0x22,0xa1,0x5e,0xdc,0x33,0x84,0x5a,0xdb,0xdb,0x11,0xa4, +0x34,0xbf,0xf5,0x8c,0x22,0x6f,0x1f,0x9b,0x81,0x67,0x6b,0x3c, +0x07,0xfb,0x9e,0x5a,0x3d,0xf3,0xc8,0xa8,0x4e,0xf5,0x2c,0xc2, +0xbe,0xbf,0x56,0xcf,0xbe,0xf0,0x36,0xd6,0xf5,0x17,0xf0,0x34, +0x1f,0xf5,0x1c,0x0f,0x4f,0x7d,0xb4,0xe7,0x24,0xc4,0x6c,0x1d, +0x4e,0x86,0xa7,0xf3,0x52,0xcf,0x69,0xf0,0x6c,0x0f,0x2f,0x42, +0xd4,0xd6,0xe4,0x32,0x14,0x6d,0x3d,0x2f,0x47,0x4a,0xf3,0x4a, +0xcf,0x15,0x88,0x59,0xec,0x5c,0x09,0xcf,0xf6,0xfc,0x2a,0xe4, +0x54,0x1f,0x7b,0xae,0x47,0xda,0xee,0xf9,0x46,0x44,0x75,0x2e, +0xe8,0xb9,0x05,0x9e,0xc5,0xc2,0xad,0xf0,0x6c,0xff,0x6f,0x43, +0x4c,0x35,0xa1,0xe7,0x0e,0x14,0x35,0x4b,0xf4,0xdc,0x09,0xcf, +0xe2,0xe8,0x2e,0x78,0x16,0x3b,0xf7,0xc0,0xb3,0x18,0x79,0x10, +0x9e,0xc5,0xce,0xc3,0xf0,0x2c,0x5e,0x5e,0x86,0xa7,0xfe,0xdb, +0xf3,0x26,0x32,0x96,0x83,0x6f,0x21,0x66,0xcf,0xf7,0x3e,0xa2, +0xb6,0xf6,0x1f,0xc0,0xd3,0x3c,0xd1,0xf3,0x0f,0x78,0x16,0x53, +0xff,0x82,0x67,0xb1,0xf6,0x31,0x72,0xaa,0x15,0x3d,0x9f,0x20, +0x67,0x1f,0xff,0x12,0x45,0xd5,0x91,0x9e,0xaf,0x90,0xb1,0x3d, +0xff,0x16,0x9e,0xc5,0xec,0x77,0x48,0x5a,0x8c,0xfc,0x17,0x9e, +0xce,0x1a,0xbd,0x71,0xa4,0xb4,0xfe,0xbd,0x69,0x78,0xaa,0x9f, +0xbd,0x39,0x24,0x34,0x77,0xf4,0xba,0xf0,0x14,0xa3,0xbd,0x01, +0x3c,0xc5,0x68,0x6f,0x08,0x4f,0x31,0xd6,0xbb,0x02,0xa2,0xda, +0xd7,0xde,0x15,0xe1,0x29,0xee,0x7b,0x57,0x82,0xa7,0xb9,0xa7, +0x77,0x65,0x78,0x8a,0xe3,0xde,0x55,0xe0,0xe9,0x6c,0xd5,0xbb, +0x2a,0x3c,0xe5,0x43,0x6f,0x01,0x9e,0xf2,0xa4,0x77,0x75,0x78, +0xca,0x81,0xde,0xb5,0x51,0x54,0x7d,0xeb,0x5d,0x17,0x39,0xad, +0x4f,0xef,0xf6,0x28,0x6a,0xae,0xeb,0xdd,0x0d,0x9e,0x66,0xa6, +0xde,0xdd,0xe1,0x29,0x4f,0x7a,0xcb,0xf0,0x34,0x57,0xf5,0x36, +0x21,0xaf,0xf9,0xa9,0xb7,0x05,0x9e,0x66,0xaf,0xde,0x0a,0x8a, +0x5a,0xaf,0xde,0x1e,0x78,0xf6,0x1a,0x93,0x48,0xa9,0xbe,0xf4, +0xce,0xc0,0xeb,0xd2,0x75,0x16,0x45,0xad,0x63,0xef,0x3c,0x12, +0x76,0x8f,0x7b,0xc1,0xb3,0x75,0xdb,0x17,0x9e,0xf2,0xb3,0xf7, +0x30,0x78,0x5a,0xff,0xde,0x23,0xe0,0x69,0x6e,0xeb,0x3d,0x0a, +0x9e,0xbd,0xe7,0x71,0xc8,0x28,0x3f,0x7b,0x8f,0x87,0xa7,0xbd, +0xee,0x3d,0x09,0x9e,0x72,0xb3,0xf7,0x7c,0x78,0xca,0xed,0xde, +0x8b,0xe1,0x69,0xe6,0xeb,0xbd,0x0a,0x9e,0xf6,0xbd,0xf7,0x1a, +0x78,0xf6,0x3a,0xb7,0xc2,0x53,0x8c,0xf5,0x2a,0xc6,0x7b,0x35, +0x0f,0x14,0xd5,0x57,0x7a,0xef,0x40,0xde,0x3e,0xf7,0x2e,0x78, +0x9a,0x05,0x7b,0xef,0x86,0xa7,0xd9,0xb1,0xf7,0x51,0x78,0x3a, +0x67,0xf5,0x3e,0x81,0x98,0x7a,0x5f,0xef,0x93,0xf0,0x74,0x9e, +0xef,0x7d,0x06,0x25,0xfb,0xb6,0xea,0x7f,0x86,0xa7,0xb3,0x4a, +0xef,0x73,0xf0,0x6c,0xfd,0x5e,0x80,0xa7,0x99,0xb2,0xf7,0x55, +0xd8,0xf7,0xe2,0xeb,0x7d,0x0d,0x29,0xd5,0xae,0xde,0xd7,0x91, +0x54,0x7d,0xeb,0x7d,0x0b,0x49,0xd5,0x9d,0xde,0xb7,0xb1,0x44, +0xf3,0x50,0xef,0x3b,0x48,0xa9,0x7f,0xf7,0xfe,0xc8,0xbe,0x8f, +0x5f,0xef,0xdf,0x91,0x50,0xfd,0xef,0x7d,0x0f,0x71,0x7b,0xa6, +0xf7,0x11,0xd3,0xd9,0xbe,0xf7,0x9f,0xf0,0x6c,0xdf,0x3e,0x42, +0xc2,0xe2,0xe8,0x53,0xd8,0xf7,0x00,0xec,0xfd,0x0c,0x9e,0xbd, +0xef,0xe7,0xb0,0xef,0x8d,0xd9,0xfb,0x05,0x32,0x16,0x7b,0x5f, +0xc2,0xb3,0x3d,0xff,0x1a,0x35,0xea,0xcd,0xbd,0xdf,0x21,0x6a, +0xef,0xf9,0x5f,0xa4,0x6d,0xcd,0xbf,0x87,0x7d,0x5f,0xc1,0xbe, +0xe5,0x90,0xd0,0x9e,0xf5,0x2d,0x8f,0xac,0xd6,0xb1,0x2f,0x86, +0xac,0x62,0xb5,0x2f,0x0d,0x4f,0x33,0x77,0x5f,0x06,0x31,0xd5, +0xe1,0x3e,0x17,0x9e,0x62,0xab,0x6f,0x05,0xa4,0xb5,0x4f,0x7d, +0x2b,0xc3,0xdb,0x53,0xd7,0x55,0xe0,0xa9,0x2e,0xf7,0xad,0x0a, +0x6f,0x6f,0x5d,0x6b,0x90,0x51,0x9e,0xf7,0xad,0x89,0x94,0x9e, +0xbd,0x6f,0x7d,0x24,0x34,0xa7,0xf6,0x6d,0x88,0x94,0x9e,0xbd, +0xaf,0x0e,0xe9,0x06,0x5d,0x97,0x22,0xa6,0x9a,0xd9,0xd7,0x80, +0xb4,0x6a,0x5f,0x9f,0x6a,0x7a,0x9f,0x7d,0x9f,0x43,0xcd,0xfd, +0x7d,0x9b,0x22,0xa9,0x33,0x5e,0xdf,0x56,0xc8,0x29,0x66,0xfa, +0xb6,0x85,0xa7,0x7e,0xd0,0xb7,0x03,0x3c,0x9d,0x0d,0xfa,0x7e, +0x06,0x6f,0x3f,0x5d,0x7f,0x8e,0xac,0xea,0x5a,0xdf,0x4e,0xf0, +0x74,0x4e,0xe8,0xdb,0x1d,0x39,0xcd,0x54,0x7d,0x65,0x78,0x3a, +0x4b,0xf4,0xb5,0xc2,0xd3,0x4c,0xde,0xd7,0x86,0x9c,0x66,0xf7, +0xbe,0x0e,0x78,0xbf,0xd2,0xb5,0x1f,0x9e,0xce,0x3b,0x7d,0x83, +0xc8,0xda,0xfd,0x0f,0xc1,0xd3,0x5e,0xf7,0x0d,0x23,0xa7,0x1a, +0xd7,0x37,0x02,0x4f,0x67,0xe9,0xbe,0x3d,0x61,0xdf,0xfb,0xb1, +0x6f,0x2f,0xe4,0x34,0xeb,0xf4,0xed,0x8d,0x8c,0x62,0xae,0xcf, +0x9e,0xd9,0xf2,0x5a,0xbd,0xaf,0x6f,0x3f,0x2c,0x51,0x6c,0xf5, +0xed,0x8f,0xb8,0xad,0xcf,0x2f,0x10,0x55,0x8d,0xee,0xfb,0x25, +0xec,0x7b,0x48,0xf6,0xfd,0x0a,0x71,0xc5,0x7f,0xdf,0x01,0xc8, +0xab,0xd7,0xf7,0x1d,0x88,0xbc,0xe6,0xa7,0xbe,0x83,0x10,0x53, +0xff,0xea,0x3b,0x18,0xf6,0x3d,0x27,0xfb,0x0e,0x45,0x5a,0x73, +0x7c,0xdf,0xe1,0x88,0xdb,0xaf,0x8f,0x40,0xd2,0xd6,0xe1,0x28, +0x64,0xed,0xde,0x8f,0x45,0x52,0xe7,0x99,0xbe,0xdf,0x20,0xa9, +0x1a,0xd4,0x77,0x3a,0x32,0x9a,0x91,0xfa,0xce,0x40,0xad,0xc5, +0xdb,0x99,0xc8,0xd8,0x3e,0x9f,0x83,0xb8,0xce,0x09,0x7d,0xe7, +0x21,0xfb,0x94,0xae,0x17,0xc2,0xd3,0x59,0xac,0xef,0x32,0x64, +0x54,0x37,0xfb,0x7e,0x8f,0x84,0xdd,0xf3,0x95,0x88,0xdb,0xbd, +0x5f,0x8d,0x8c,0x66,0xcd,0xbe,0x9b,0x11,0xb1,0x7b,0xbc,0x05, +0x49,0x5b,0xb3,0x5b,0x11,0xd7,0xac,0xd5,0x77,0x1b,0xf2,0x16, +0xf3,0xf6,0xff,0x75,0x36,0xf1,0xec,0xf3,0xef,0x47,0xd6,0x62, +0xf8,0x11,0x78,0x9a,0xc1,0xfa,0x1e,0x45,0xde,0xd6,0xe1,0x31, +0xe4,0x55,0x77,0xfa,0x9e,0x86,0xa7,0x7a,0xda,0xf7,0x0c,0x3c, +0x5b,0x8f,0xe7,0x10,0xd5,0x19,0xac,0xef,0x05,0x78,0xaa,0xb3, +0x7d,0x9a,0x81,0xfa,0xac,0x2e,0xd9,0x3a,0xbd,0x06,0x4f,0xf3, +0x7f,0xdf,0x1b,0xa8,0x55,0x4d,0xeb,0x7b,0x13,0x49,0x9d,0x09, +0xfb,0xde,0x82,0xa7,0xda,0xd5,0xf7,0x36,0x3c,0xf5,0xbe,0xbe, +0x77,0xe0,0xe9,0x2c,0xda,0xa7,0x5a,0xd0,0x67,0x3d,0xfd,0x54, +0x5d,0x3f,0x84,0x67,0x6b,0xff,0x09,0x3c,0xcd,0xc3,0x7d,0x9f, +0xc2,0xb3,0x7d,0xf8,0x1c,0x9e,0xed,0xc3,0x17,0xb0,0xef,0x2f, +0xda,0xf7,0x15,0xa2,0x56,0x27,0xbe,0x46,0x46,0xf3,0x7a,0xdf, +0xbf,0xe1,0xd9,0x5e,0x7d,0x8b,0xb8,0x7a,0x5b,0xdf,0x77,0x58, +0x62,0xf9,0xf8,0x1f,0x64,0xec,0xfd,0xbf,0x87,0x7d,0x9f,0xd2, +0xbe,0x1f,0x90,0xd1,0x5a,0xf4,0x2f,0x8b,0x9c,0x6a,0x41,0xff, +0xf2,0xf0,0xb4,0xdf,0xfd,0x11,0xe4,0x75,0x36,0xeb,0x4f,0xc2, +0x53,0xef,0xe9,0x4f,0x21,0xa7,0x39,0xb3,0x3f,0x0d,0xfb,0x7e, +0xa7,0xfd,0x19,0xe4,0x75,0x1f,0xfd,0x59,0x38,0xf6,0xb9,0x79, +0x24,0xfe,0xaa,0xab,0x83,0x8c,0xea,0x5e,0xbf,0x0b,0x4f,0x33, +0x5f,0xbf,0x0f,0xfb,0x5e,0xa9,0xfd,0x01,0xd2,0x8a,0xbd,0xfe, +0x10,0x11,0xe5,0x54,0xff,0x0a,0xf0,0x54,0x3f,0xfb,0x57,0x44, +0x56,0xeb,0xd2,0xbf,0x12,0xe2,0x8a,0x95,0xfe,0x55,0x91,0xd6, +0xde,0xf5,0x17,0x90,0xb1,0x7b,0x2c,0xa1,0x64,0xcf,0xba,0x26, +0x72,0x5a,0xa3,0xfe,0xb5,0x10,0x57,0x5f,0xe8,0x5f,0x1b,0x71, +0xd5,0x9f,0xfe,0x75,0xe1,0xa9,0x36,0xf6,0x6f,0x08,0x4f,0x67, +0xf8,0xfe,0x3a,0x78,0x3a,0x0b,0xf7,0x6f,0x84,0xa4,0x3d,0xc7, +0xc6,0x28,0xa9,0xbe,0xf7,0xff,0x1f,0xd2,0x8a,0xdf,0xfe,0x9f, +0x22,0xa6,0xdc,0xe8,0xdf,0x14,0x9e,0x62,0xaf,0x7f,0x4b,0x64, +0x6d,0x3d,0xb7,0x46,0x5a,0x39,0xdc,0xbf,0x1d,0x3c,0xe5,0x55, +0xff,0xcf,0x51,0x54,0x0f,0xea,0xdf,0x19,0x9e,0xbd,0xce,0xae, +0x88,0x69,0x26,0xee,0xdf,0x1d,0x9e,0xfd,0xba,0x0c,0x4f,0xf3, +0x71,0x7f,0x33,0xec,0x7b,0x38,0xf7,0x57,0x90,0x51,0x8e,0xf7, +0x6b,0xd6,0xe9,0xb7,0x3a,0xa9,0x59,0xa1,0xbf,0x0b,0x9e,0x66, +0x80,0xfe,0x1e,0x78,0x17,0xe8,0xda,0x0b,0xef,0xb7,0xba,0x0e, +0xc2,0xbe,0x6f,0x6d,0xff,0x10,0xe2,0xb6,0xf6,0x63,0xc8,0x2a, +0x3e,0xfb,0xc7,0x61,0x3f,0x6f,0xa0,0x7f,0x12,0x09,0x7b,0xbe, +0x29,0x64,0xed,0x7e,0xa6,0x91,0xb6,0x3d,0x9a,0x41,0x56,0xfd, +0xab,0x7f,0x16,0x9e,0xfa,0x7b,0xff,0x02,0x92,0x16,0x7b,0x8b, +0x88,0x28,0x87,0xfa,0xf7,0x82,0x7d,0xbf,0xdc,0xfe,0xfd,0xe0, +0xd9,0x9a,0xfc,0x02,0x39,0xc5,0x74,0xff,0x01,0xc8,0xaa,0x46, +0xf7,0x1f,0x0c,0x4f,0xb5,0xa6,0xff,0x10,0x44,0x2d,0x16,0x0e, +0x45,0x4a,0x39,0xd2,0x7f,0x18,0x3c,0x9d,0x17,0xfa,0x0f,0x87, +0xa7,0x73,0x42,0xff,0x11,0x88,0x5b,0x4c,0x1d,0x89,0xb4,0xed, +0xed,0x51,0xf0,0x34,0x3f,0xf5,0x1f,0x0d,0x4f,0x35,0xab,0xff, +0x58,0x78,0xaa,0x65,0xfd,0xc7,0x21,0xaf,0xd9,0xa0,0xff,0x78, +0xc4,0x6d,0x7d,0x4e,0x42,0xd2,0xde,0xe7,0x64,0x78,0xaa,0x71, +0xfd,0xa7,0x20,0xa3,0x19,0xbe,0xff,0x54,0x24,0x6d,0x9f,0xcf, +0x44,0x46,0xf5,0xa1,0xff,0x47,0x4b,0x2c,0x07,0xcf,0x86,0xa7, +0x99,0xa7,0xff,0xb7,0xf0,0x34,0xc3,0xf5,0x5f,0x08,0xcf,0xd6, +0xf3,0x22,0xc4,0x55,0x13,0xfa,0x2f,0x87,0x67,0xb9,0x73,0x05, +0xb2,0x9a,0x7b,0xfa,0xff,0x80,0xa4,0xe6,0x93,0xfe,0xab,0xe1, +0xa9,0x7e,0xf6,0x5f,0x83,0xac,0x6a,0x57,0xff,0x8d,0xc8,0xd8, +0x7b,0xde,0x84,0xb4,0xea,0x6f,0xff,0xcd,0x58,0x62,0xcf,0x7b, +0x2b,0x4a,0x56,0x27,0x6e,0x47,0x46,0x67,0xe4,0xfe,0xbb,0xe0, +0x59,0xfe,0xde,0x8d,0x1a,0x9d,0x67,0xfa,0xef,0x87,0x7d,0xaf, +0xe3,0xfe,0x07,0x91,0xb5,0xe7,0x78,0x02,0x31,0xf5,0x9d,0xfe, +0x27,0x91,0xb1,0x5a,0xf1,0x02,0x3c,0xcb,0xa3,0x17,0x91,0xb0, +0x1c,0xd4,0xf9,0xbc,0xdf,0xfe,0xed,0x92,0xe6,0xcf,0xfe,0xbf, +0x22,0xaa,0xf3,0x60,0xff,0x6b,0xf0,0x1e,0xd2,0xf5,0x75,0x94, +0xa2,0xba,0xbe,0x89,0xb4,0xe5,0xce,0xbb,0xf0,0xec,0x5e,0xfe, +0x89,0xa8,0xc5,0xd4,0x27,0xf0,0xac,0x9e,0x7c,0x0a,0xcf,0xee, +0xf1,0x4b,0x64,0x34,0x5f,0xf6,0xff,0x1b,0xde,0x03,0xba,0x7e, +0x07,0xcf,0xe2,0xf9,0xbf,0x48,0x58,0xfd,0xfb,0x01,0x9e,0xfa, +0xd3,0x40,0x0e,0x9e,0xfa,0xe6,0x40,0x1e,0x9e,0xf6,0x71,0xc0, +0x81,0xa7,0x67,0x1e,0xf0,0x90,0x51,0x5e,0x0e,0x84,0xf0,0x9e, +0xd5,0x75,0x05,0x64,0xd5,0xc3,0x06,0x56,0x86,0xf7,0xb8,0xae, +0xab,0xc2,0x53,0x3f,0x1b,0x58,0x0d,0x79,0xe5,0xe6,0x40,0x0d, +0x12,0xaa,0x2d,0x03,0x45,0xa4,0x55,0x83,0x06,0x4a,0xf0,0xd4, +0x23,0x07,0xd6,0x44,0x4c,0x3d,0x77,0x60,0x2d,0x78,0xaa,0xff, +0x03,0x6b,0x23,0xa5,0x7a,0x31,0xb0,0x0e,0xa2,0xea,0xb3,0x03, +0xeb,0xc2,0xd3,0x7e,0x0c,0xac,0x87,0xa8,0x7d,0xed,0xfa,0xf0, +0x34,0xeb,0x0f,0xd4,0x21,0xa6,0xd8,0x1a,0xd8,0x08,0x9e,0xdd, +0xf3,0xe6,0xf0,0xfe,0xa2,0xeb,0x76,0xf0,0xb4,0x7f,0x03,0xdb, +0xc3,0x53,0xef,0x1c,0xd8,0x01,0x9e,0xfa,0xeb,0xc0,0x8e,0xf0, +0xb4,0x97,0x03,0xbb,0xc2,0x53,0x3f,0x1e,0xd8,0x0d,0x79,0xc5, +0xd2,0xc0,0x1e,0xf0,0xb4,0xc7,0x03,0x4d,0x88,0x29,0x8e,0x07, +0x5a,0x10,0xd7,0x9e,0x0e,0xb4,0x21,0xa9,0x1c,0x1e,0xe8,0x82, +0xa7,0xfd,0x1e,0xe8,0x86,0xa7,0x78,0x1a,0xe8,0x45,0x49,0xfd, +0x74,0xa0,0x1f,0x9e,0xfa,0xff,0xc0,0x00,0x3c,0xcd,0x10,0x03, +0x43,0x58,0xa2,0x1e,0x3c,0x30,0x0c,0x4f,0xf1,0x34,0x30,0x02, +0x4f,0xf1,0x34,0x30,0x8a,0xb4,0x66,0x86,0x81,0x09,0x24,0x54, +0x37,0x06,0x26,0x11,0x55,0xad,0x1f,0x98,0x82,0xa7,0x98,0x1d, +0x98,0x86,0xa7,0xf9,0x60,0x60,0x06,0x9e,0xe6,0x86,0x81,0x59, +0xc4,0x54,0xab,0x07,0xe6,0x91,0x56,0xaf,0x1d,0x58,0x40,0x54, +0xf1,0x36,0xb0,0x0f,0xe2,0x16,0x0b,0xfb,0xc1,0x53,0x0e,0x0c, +0x1c,0x0a,0x4f,0x73,0xe9,0xc0,0xe1,0xf0,0x54,0x33,0x07,0x8e, +0x80,0xa7,0xbc,0x1b,0x38,0x12,0x25,0xdb,0xd3,0x63,0x90,0xd0, +0x5c,0x32,0x70,0x2c,0x4a,0x9a,0x03,0x07,0x8e,0x83,0xa7,0x1c, +0x18,0x38,0x1e,0x19,0xc5,0xf3,0xc0,0x09,0xf0,0x14,0xff,0x03, +0xa7,0xc0,0x53,0x0d,0x19,0x38,0x0d,0x51,0xd5,0xdf,0x01,0xcd, +0x2e,0x03,0xaa,0x57,0x9e,0x66,0x8c,0x81,0x73,0xe0,0xd9,0xeb, +0x9f,0x0b,0x4f,0x39,0x36,0x70,0x01,0xe2,0xf6,0xb1,0x0b,0x91, +0x57,0x8f,0x1f,0xf8,0x1d,0xa2,0xca,0xb7,0x81,0xcb,0x10,0x51, +0x5e,0x0d,0xfc,0x1e,0x9e,0xe6,0xf0,0x81,0x2b,0x90,0xb1,0x7b, +0xfb,0x03,0x22,0xea,0x0d,0x03,0x37,0x20,0x6b,0x6b,0x73,0x23, +0xbc,0x87,0x75,0xbd,0x09,0x9e,0xf2,0x76,0xe0,0x66,0x78,0x3a, +0xbb,0x0d,0xdc,0x82,0x9c,0xbd,0xd7,0x6d,0xf0,0x74,0xde,0x1b, +0xb8,0x0b,0x19,0xdb,0xe7,0xbb,0xe1,0x69,0xc6,0x1a,0x78,0x10, +0x49,0xdb,0xbb,0x87,0xe0,0x29,0xff,0x07,0x1e,0x46,0xc6,0xf2, +0xee,0x59,0xe4,0xff,0xa5,0xeb,0x73,0xf0,0x2c,0x66,0xfe,0x02, +0xfb,0x59,0x3b,0x03,0x2f,0xc1,0x53,0xdd,0x1b,0x78,0x05,0x09, +0xcd,0x46,0x03,0x7f,0x45,0xca,0xf6,0xfc,0x75,0xd8,0xcf,0xe9, +0x19,0x78,0x03,0x11,0xd5,0xfd,0x81,0x37,0xe1,0x69,0x2e,0x1c, +0x78,0x0b,0x9e,0xdd,0xff,0x3b,0x48,0xd9,0x6b,0xbc,0x07,0xcf, +0xae,0xef,0x23,0xa1,0xde,0x36,0xf0,0x09,0xd2,0x96,0xeb,0x9f, +0xc2,0xb7,0x98,0xff,0x0c,0x25,0xdb,0xdf,0xcf,0x91,0xb2,0x9c, +0xfa,0x02,0xbe,0x66,0xa4,0x01,0xd5,0xc1,0x01,0xad,0x81,0xa7, +0xde,0x3a,0xf0,0x0d,0x92,0x56,0xab,0xbe,0x85,0xaf,0x39,0x67, +0xe0,0x3b,0xf8,0x51,0x7e,0x7c,0xdb,0xe0,0x8f,0x3f,0x72,0x6e, +0x70,0x59,0x24,0x55,0x17,0x06,0x97,0x87,0x6f,0xd7,0x18,0x3c, +0xd5,0xca,0xc1,0x04,0x6a,0x75,0x2e,0x1a,0x4c,0x22,0xaf,0xf8, +0x1c,0xd4,0xba,0x0c,0xaa,0x66,0xfa,0xf6,0xeb,0x3c,0x22,0xea, +0x41,0x83,0x2e,0x4a,0xf6,0xfb,0x21,0x3c,0xcd,0xb5,0x83,0xab, +0x20,0xa6,0x38,0x1f,0x5c,0x15,0x11,0xe5,0xdb,0x60,0x01,0x51, +0x3d,0xe7,0x60,0x11,0x25,0xcd,0x81,0x83,0x25,0xf8,0xea,0x59, +0x83,0x6b,0xc3,0xd7,0x3a,0x0c,0xae,0x03,0xdf,0x3e,0x67,0x03, +0xf8,0xaa,0xd1,0x83,0x4b,0x51,0xb2,0x7b,0xd9,0x18,0xbe,0xdd, +0xcb,0x4f,0x51,0xd2,0xbd,0x0e,0x6e,0x09,0xdf,0x3e,0x67,0x2b, +0xf8,0x5a,0xab,0xc1,0xad,0xe1,0x2b,0x06,0x06,0xb7,0x81,0x6f, +0x9f,0xbf,0x3d,0x7c,0x2d,0xd6,0xe0,0xcf,0xe0,0x2b,0x17,0x06, +0x77,0x82,0x6f,0xeb,0xb1,0x33,0x12,0xaa,0x45,0x83,0xbb,0xc2, +0xb7,0x67,0xdf,0x0d,0x69,0x9d,0xbf,0x07,0x77,0x47,0x5c,0xf5, +0x61,0x70,0x0f,0x78,0xda,0x8f,0xc1,0x32,0x92,0xf6,0xeb,0x0a, +0x7c,0x7b,0xee,0x36,0xe4,0x36,0xd3,0xb5,0x53,0x54,0x0f,0x7d, +0xcd,0x72,0x83,0xbd,0xf0,0x6d,0x9d,0xfa,0xe1,0xdb,0xfa,0x0d, +0x21,0xa7,0xba,0x34,0x38,0x8c,0xa8,0x62,0x65,0x70,0x14,0xbe, +0xfa,0xcd,0xe0,0x38,0xe2,0xb6,0xf6,0x13,0x88,0xaa,0x46,0x0c, +0x4e,0xc3,0xb7,0xfd,0x99,0x43,0x5e,0x73,0xd8,0xe0,0x3c,0x7c, +0xf5,0xad,0xc1,0x05,0x44,0x54,0x2f,0x06,0x17,0xe1,0xd7,0xea, +0xba,0x17,0x7c,0xdb,0xe7,0xbd,0xe1,0xdb,0xeb,0xef,0x03,0x7f, +0x75,0x5d,0xf7,0x45,0xdc,0x5e,0x7f,0x3f,0xf8,0xea,0x97,0x83, +0x07,0x21,0x6f,0x6b,0x79,0x18,0xf2,0xf6,0x3a,0x47,0xc1,0x57, +0xff,0x1b,0x3c,0x16,0xbe,0x7a,0xdb,0xe0,0x89,0xb0,0x1f,0x97, +0x36,0x78,0x12,0xf2,0x9a,0x37,0x06,0x4f,0x86,0xaf,0x9e,0x37, +0x78,0x1a,0x7c,0x8b,0x97,0x33,0xe0,0x2f,0xd1,0xf5,0x2c,0x94, +0x2c,0x4e,0xce,0x86,0xbf,0x86,0xae,0xe7,0xc0,0xb7,0x98,0xba, +0x04,0xf6,0x63,0x1c,0x07,0x7f,0x8f,0x8c,0x6a,0xeb,0xe0,0x15, +0x88,0xdb,0x3a,0x5c,0x09,0x5f,0x3d,0x75,0xf0,0x2a,0xf8,0xca, +0xd9,0xc1,0x6b,0xe0,0x5b,0x3c,0xde,0x80,0xb8,0x7a,0xf4,0xe0, +0x2d,0x88,0xaa,0xd7,0x0e,0xde,0x01,0xdf,0x62,0xf3,0x1e,0x44, +0x95,0xc3,0x83,0xf7,0xc3,0xd7,0x79,0x7c,0xf0,0x21,0xf8,0x9a, +0xaf,0x06,0x1f,0x46,0x42,0x7d,0x64,0xf0,0x11,0xf8,0xf6,0x3a, +0x8f,0xc2,0xb7,0x9c,0x7d,0x0c,0xfe,0x4f,0x74,0x7d,0x1c,0xbe, +0x66,0x89,0xc1,0x27,0xe0,0xeb,0x2c,0x34,0xf8,0x24,0x7c,0xcb, +0x83,0x67,0x10,0xfd,0x95,0xae,0xef,0xc0,0xb7,0x18,0xfb,0x3b, +0x7c,0xf5,0xc1,0xc1,0xcf,0x90,0xb6,0x58,0xfd,0x02,0xbe,0xe5, +0xcd,0x57,0xf0,0x35,0x2b,0x0c,0x7e,0x0d,0xdf,0x72,0xee,0xdf, +0x88,0xab,0xaf,0x0f,0x7e,0x0b,0x7f,0x0b,0x5d,0xff,0x03,0xdf, +0xf2,0xe9,0xbf,0xf0,0x2d,0xcf,0xbe,0x87,0xbf,0xad,0xae,0x3f, +0xc0,0xdf,0xea,0x7f,0x3f,0xe2,0xed,0x7f,0x7c,0xcd,0x1f,0x43, +0xaa,0x37,0x43,0x49,0x7e,0xbe,0xc6,0x50,0x0a,0x39,0xbd,0xef, +0x50,0x06,0xbe,0xce,0x5a,0x43,0x59,0xf8,0xca,0xc9,0xa1,0x1c, +0x92,0xbb,0xe8,0xea,0x20,0xa5,0xfb,0x19,0x72,0x11,0xd5,0xf9, +0x67,0xc8,0x43,0x54,0x67,0x8f,0x21,0x1f,0x25,0xfb,0xfd,0x00, +0xbe,0x66,0x9a,0xa1,0x15,0x10,0x51,0x6f,0x1e,0x5a,0x05,0x29, +0xc5,0xfd,0xd0,0xaa,0xf0,0x15,0xab,0x43,0x35,0x58,0x45,0xb3, +0xc5,0x50,0x2d,0x7c,0xe5,0xff,0x50,0x01,0x71,0xad,0xf3,0x50, +0x09,0xbe,0xdd,0xcf,0x5a,0x48,0xe9,0xcc,0x30,0xb4,0x1e,0x7c, +0xd5,0x88,0xa1,0x9f,0xc0,0x57,0x8d,0x18,0xaa,0x43,0xac,0x55, +0xd7,0xa5,0xf0,0x55,0x2f,0x86,0x14,0x13,0x43,0x8a,0x05,0x5f, +0xf5,0x62,0x68,0x63,0xa4,0xed,0xf5,0x37,0x85,0xfd,0xcc,0x91, +0xa1,0x2d,0x90,0x53,0x5f,0x1b,0xda,0x06,0x39,0xd5,0xd5,0xa1, +0x6d,0x91,0x54,0x4e,0x0e,0x6d,0x87,0x82,0x7d,0xed,0x4e,0x48, +0x29,0x4f,0x86,0x76,0xc6,0xaa,0xf6,0xac,0xbb,0x20,0xab,0x5c, +0x1d,0xda,0x0d,0xf6,0x73,0x4c,0x86,0xf6,0x40,0xc2,0xf6,0xa8, +0x0c,0x5f,0xf3,0xdc,0x50,0x05,0x69,0xe5,0xda,0x50,0x1b,0xb2, +0x8a,0x89,0xa1,0x4e,0xa4,0x15,0xff,0x43,0x55,0xf8,0xf6,0xb9, +0x7d,0xf0,0xed,0xe3,0x03,0xf0,0xed,0x79,0x87,0xe1,0xdb,0x7e, +0x4d,0xc0,0xb7,0xd7,0x9b,0x43,0x4e,0xfd,0x69,0x68,0x11,0x11, +0xc5,0xed,0xd0,0xbe,0xc8,0x2a,0x8e,0x87,0x7e,0x81,0xac,0x6a, +0xca,0xd0,0x01,0xf0,0x35,0x9f,0x0f,0x1d,0x04,0x5f,0x33,0xe5, +0xd0,0xc1,0x48,0xea,0xfc,0x3e,0x74,0x08,0x62,0xf6,0xfa,0x87, +0xc1,0xd7,0x19,0x7b,0xe8,0x70,0xf8,0x76,0x8f,0x47,0x20,0xa9, +0xf3,0xce,0xd0,0x31,0xf0,0xed,0x99,0x8e,0x45,0x46,0xf1,0x3d, +0x74,0x32,0xf2,0xb6,0x7e,0xaa,0xa1,0x43,0xda,0x5b,0x5f,0x35, +0x7a,0xe8,0x34,0xf8,0xaa,0xcb,0x43,0xa7,0x23,0x63,0x71,0x72, +0x06,0x7c,0x9d,0xdb,0x87,0xce,0x44,0x5c,0xf3,0xca,0xd0,0x59, +0x48,0xd9,0xbd,0x9c,0x0b,0x5f,0xf3,0xe5,0xd0,0x79,0xc8,0xda, +0xeb,0xff,0x16,0x69,0x5b,0x9f,0xcb,0x50,0xb2,0x58,0xbe,0x12, +0x59,0xcd,0xf9,0x43,0x57,0xc1,0x57,0xdd,0x19,0xba,0x1e,0x39, +0x8b,0xb1,0x9b,0x91,0xb1,0x5c,0xb9,0x1d,0x39,0xcd,0x70,0x43, +0x77,0xc2,0x57,0xc2,0x0d,0xdd,0x85,0xa8,0xc5,0xec,0xdd,0x48, +0xeb,0x2c,0x3a,0x74,0x1f,0x7c,0xf5,0x86,0xa1,0x07,0x91,0xde, +0x53,0xd7,0x87,0xe0,0xab,0xaf,0x0c,0x3d,0x0c,0x5f,0xf3,0xf1, +0xd0,0x23,0xf0,0xd5,0x63,0x86,0x1e,0x85,0x6f,0x7b,0xf8,0x18, +0x7c,0x8b,0xc9,0x27,0xe0,0x6b,0xe6,0x1e,0x7a,0x12,0x59,0xd5, +0xf9,0xa1,0xa7,0xe1,0x5b,0x2c,0x3c,0x83,0xe8,0x81,0xba,0x3e, +0x0b,0x5f,0x03,0xcb,0xd0,0x9f,0x11,0xd3,0xec,0x3b,0xf4,0x1c, +0xd2,0x16,0x57,0xcf,0xc3,0x57,0x5f,0x1c,0x7a,0x11,0xbe,0xc5, +0xd7,0x4b,0x88,0xdb,0xfd,0xbe,0x8c,0x94,0xc5,0xc2,0xab,0x48, +0x6a,0xc6,0x1d,0xfa,0x2b,0x7c,0x8b,0xbb,0xd7,0x90,0xb5,0xda, +0xf3,0x26,0x62,0xaa,0xff,0x43,0x6f,0x21,0x6a,0x6b,0xff,0x21, +0xa2,0xb6,0x1e,0xff,0x42,0x52,0xb3,0xdc,0xd0,0x47,0xf0,0xad, +0x56,0x7c,0x0c,0x5f,0xfd,0x6f,0xe8,0x53,0xf8,0x16,0xbf,0x9f, +0x23,0x6e,0xf7,0xfc,0x25,0x7c,0x8b,0xe5,0xaf,0x90,0xb0,0xaf, +0xfd,0x1a,0x71,0xcd,0x03,0x43,0xdf,0x23,0x69,0xf5,0xe0,0x07, +0xf8,0x8a,0xa5,0xe1,0x65,0x91,0x50,0xad,0x1f,0x5e,0x0e,0xbe, +0x7a,0xf0,0x70,0x1c,0x09,0xdd,0xe7,0x70,0x02,0xbe,0x72,0x7f, +0x38,0x89,0xc8,0xd1,0xba,0x66,0xe0,0xab,0xaf,0x0f,0xbb,0x48, +0xeb,0x59,0x86,0x57,0x46,0x4c,0xe7,0x87,0xe1,0x02,0x62,0x8a, +0xa7,0xe1,0xb5,0xe1,0x6b,0xdf,0x87,0xd7,0x41,0x44,0xf1,0x30, +0xbc,0x3e,0x12,0xaa,0x4d,0xc3,0x75,0x48,0xaa,0xd6,0x0f,0x6f, +0x8e,0x35,0x35,0x67,0x0e,0x6f,0x85,0x5a,0xc5,0xd8,0xf0,0xd6, +0xf0,0x15,0xab,0xc3,0xdb,0x20,0xa5,0xf5,0x1d,0xde,0x05,0x69, +0xd5,0xf7,0xe1,0xdd,0x91,0x50,0x3e,0x0f,0xef,0x01,0xdf,0x7e, +0xdd,0x08,0x5f,0xb9,0x3f,0xdc,0x04,0x5f,0xf9,0x3e,0xdc,0x86, +0x9c,0x7a,0xe2,0x70,0x07,0x6a,0xed,0xb5,0x7b,0x90,0xd2,0x8c, +0x3e,0x3c,0x8e,0x9c,0x6a,0xd9,0xf0,0x04,0x12,0xca,0xdf,0xe1, +0x49,0xf8,0x9a,0x33,0x86,0xa7,0xe1,0xff,0x5a,0xd7,0x39,0xa4, +0xec,0x7e,0xf7,0x44,0x8d,0x3d,0xd7,0xbe,0xf0,0x55,0x3b,0x86, +0xf7,0x43,0xf2,0x22,0x5d,0x7f,0x89,0x8c,0xce,0xbc,0xc3,0xbf, +0x42,0x46,0xf1,0x30,0x7c,0x08,0x7c,0xd5,0xa0,0xe1,0xc3,0x91, +0xd2,0x39,0x61,0xf8,0x68,0x24,0x35,0x93,0x0c,0x1f,0x03,0xdf, +0x7e,0xff,0x78,0x24,0x75,0xd6,0x1a,0x3e,0x11,0xbe,0xe2,0x7f, +0xf8,0x37,0xf0,0x55,0x1f,0x86,0x4f,0x41,0xd6,0xf6,0xf3,0x0c, +0xf8,0xaa,0x77,0xc3,0x67,0x21,0xa6,0xb8,0x19,0x3e,0x17,0x51, +0xe5,0xf6,0xf0,0x05,0xf0,0x55,0xcb,0x86,0x2f,0x44,0xde,0xe2, +0xe4,0x22,0x24,0xec,0x19,0x2f,0x46,0xda,0x3e,0xfe,0x3b,0xf8, +0xea,0x29,0xc3,0x97,0x22,0x65,0xcf,0xf1,0x7b,0xc4,0x95,0xe7, +0xc3,0x97,0x23,0xa5,0x1e,0x36,0x7c,0x05,0xa2,0x16,0x6b,0x7f, +0x40,0x4a,0x33,0xcd,0xf0,0x95,0xf0,0x95,0x6b,0xc3,0x57,0x21, +0xa6,0x7a,0x38,0x7c,0x03,0xe2,0xea,0x9d,0xc3,0x37,0x21,0xad, +0xf3,0xe6,0xf0,0xcd,0xf0,0x75,0xee,0x1d,0xbe,0x13,0x29,0xe5, +0xdb,0xf0,0x3d,0xf0,0x6d,0xcd,0xfe,0x04,0x5f,0xf5,0x77,0xf8, +0x7e,0x14,0x2c,0x36,0x1f,0x80,0xaf,0x59,0x70,0xf8,0x21,0xf8, +0xaa,0x0f,0xc3,0x8f,0xc2,0xb7,0x78,0x7e,0x1a,0x59,0x9d,0x39, +0x87,0x9f,0x41,0x46,0xf3,0xff,0xf0,0x9f,0xe1,0xdb,0x7a,0xbf, +0x80,0xbc,0xfa,0xdd,0xf0,0x2b,0xc8,0xab,0xf7,0x0e,0xbf,0x8a, +0xa8,0x72,0x75,0xf8,0x2d,0x44,0x2c,0x2e,0xde,0x81,0x6f,0xfb, +0xf6,0x01,0x7c,0xdb,0xcf,0x7f,0x61,0x89,0xea,0xf5,0xf0,0x47, +0x88,0xa9,0x67,0x0f,0x7f,0x81,0xa8,0xed,0xdd,0x97,0xb0,0x9f, +0xe7,0x3a,0xfc,0x15,0x7c,0xdb,0xe7,0x6f,0x91,0x57,0x4e,0x8d, +0xc4,0xe0,0xab,0xaf,0x8c,0x64,0x91,0xd6,0xfc,0x31,0x92,0x87, +0xaf,0x99,0x75,0xc4,0x87,0xaf,0x7e,0x33,0x12,0xa0,0x56,0xf3, +0xe7,0xc8,0x0a,0xf0,0xd5,0x9f,0x46,0x56,0x84,0xaf,0xf8,0x18, +0x59,0x0d,0xbe,0xe2,0x75,0x64,0x2d,0xf8,0xea,0x4f,0x23,0xeb, +0xc0,0xd7,0x4c,0x3c,0xb2,0x01,0xb2,0xea,0xa1,0x23,0x1b,0x22, +0xa3,0x3a,0x3f,0xb2,0x31,0x7c,0xc5,0xdf,0xc8,0x26,0xf0,0x15, +0x7f,0x23,0x9b,0x23,0xae,0x19,0x68,0x64,0x6b,0x24,0x54,0xab, +0x47,0xb6,0x47,0x4a,0xb1,0x34,0x52,0x86,0xaf,0x35,0x19,0x69, +0x46,0xed,0x0e,0xba,0x76,0x22,0xa3,0xb3,0xcc,0xc8,0x00,0x4a, +0xf6,0x1c,0xe3,0xf0,0x15,0xc7,0x23,0x93,0xc8,0x69,0x8f,0x46, +0xe6,0xb1,0x44,0xb5,0x75,0x64,0x5f,0xf8,0xea,0xe9,0x23,0xfb, +0x23,0xa7,0x3d,0x1b,0xf9,0x25,0x6a,0xd5,0xcb,0x46,0x0e,0x47, +0x5c,0x73,0xd2,0xc8,0xd1,0xf0,0x35,0xdf,0x8f,0x9c,0x82,0x84, +0xfd,0xfe,0xa9,0xf0,0x95,0x0f,0x23,0xa7,0xc3,0x57,0x9e,0x8c, +0x9c,0x83,0x8c,0xce,0xe7,0x23,0xe7,0xa3,0xa4,0xb3,0xc9,0xc8, +0x6f,0x91,0x51,0x5c,0x8d,0x5c,0x82,0x8c,0xea,0xe0,0xc8,0xa5, +0xf0,0x95,0x4b,0x23,0x57,0xc0,0x57,0x2e,0x8d,0x5c,0x89,0xac, +0xe2,0x66,0xe4,0x6a,0x64,0x54,0xdb,0x47,0xae,0x41,0x42,0x7d, +0x61,0xe4,0x3a,0xd4,0xaa,0x26,0x8c,0xdc,0x80,0x9c,0xea,0xc6, +0xc8,0xed,0x88,0x2a,0xf7,0x46,0xee,0x84,0xaf,0x1c,0x1b,0xb9, +0x0b,0xbe,0xbd,0xe7,0xbd,0xc8,0xdb,0xfe,0xdc,0x07,0x5f,0xf9, +0x36,0xf2,0x20,0x7c,0xe5,0xea,0xc8,0xc3,0xf0,0xed,0xbe,0x1e, +0xc3,0x12,0xd5,0x85,0x91,0x27,0x91,0x7a,0x5b,0xd7,0xa7,0x60, +0x3f,0x57,0x78,0xe4,0xcf,0xf0,0xed,0x7d,0x9f,0x87,0xaf,0xf9, +0x79,0xe4,0x25,0xf8,0xf6,0x4c,0xaf,0xc0,0x57,0xaf,0x19,0x51, +0x1d,0x1f,0xd1,0xf3,0xf9,0xf6,0x1c,0x6f,0xa3,0x56,0xf3,0xf9, +0xc8,0x3b,0xf0,0x95,0x77,0x23,0x7f,0x47,0x42,0xb9,0x33,0xf2, +0x1e,0x7c,0x5b,0x83,0x0f,0x11,0xb3,0x78,0xfb,0x18,0xbe,0xea, +0xc2,0xc8,0xa7,0xf0,0x6d,0xcd,0x3e,0x83,0x7f,0x9b,0xae,0x5f, +0xc0,0xbf,0x55,0xd7,0xaf,0xe0,0xeb,0x7c,0x35,0xf2,0x2d,0x7c, +0x5b,0xb3,0xff,0xc2,0xb7,0x35,0xfb,0x1e,0xc9,0x97,0xf9,0x71, +0xf3,0xc6,0xd7,0x19,0x6c,0x34,0x0a,0x5f,0xf5,0x65,0x74,0x25, +0xf8,0x5a,0xd3,0xd1,0xd5,0xe0,0x6b,0x06,0x1a,0xad,0x81,0xaf, +0x59,0x6d,0x74,0x75,0xd4,0xda,0xaf,0xd7,0x80,0xaf,0x7a,0x34, +0xba,0x04,0xfe,0x1f,0x75,0x5d,0x0f,0xbe,0xd6,0x76,0x74,0x7d, +0xf8,0xda,0x9b,0xd1,0x0d,0xe0,0xab,0xc6,0x8d,0xd6,0xc1,0x7e, +0x26,0xe0,0xa8,0xf6,0x6c,0xf4,0xff,0xf8,0x99,0x80,0xa3,0x9b, +0xc0,0xd7,0x9e,0x8d,0xfe,0x14,0xbe,0xea,0xda,0xe8,0xa6,0xf0, +0x55,0xd7,0x46,0x37,0x43,0x54,0xb1,0x31,0xba,0x05,0xe2,0x9a, +0xb7,0x46,0xb7,0x46,0x4e,0xbd,0x73,0x74,0x1b,0xa4,0x34,0x63, +0x8c,0xfe,0x1c,0x71,0xf5,0x8e,0xd1,0x9d,0xe1,0xdb,0xe7,0xef, +0x01,0x5f,0xf3,0xc3,0x68,0x19,0x25,0xd5,0x88,0xd1,0x46,0x64, +0xed,0x7d,0x9b,0x11,0x53,0xff,0x1d,0x6d,0x83,0xaf,0xb8,0x19, +0x6d,0x87,0xaf,0xda,0x3a,0xda,0x81,0xac,0x7a,0xf7,0x68,0x27, +0x7c,0xcd,0x76,0xa3,0x5d,0x88,0x69,0xef,0x46,0x7b,0xe1,0x2b, +0xb6,0x46,0xfb,0xe0,0x2b,0xe6,0x46,0x87,0x10,0xd5,0xfe,0x8d, +0x0e,0x23,0xa1,0x3e,0x35,0x3a,0x86,0x8c,0x62,0x69,0x74,0x06, +0x71,0xcd,0x22,0xa3,0x0b,0x48,0xa9,0xd6,0x8c,0xee,0x09,0x5f, +0x35,0x7d,0x74,0x6f,0xa4,0x74,0x8e,0x18,0xdd,0x07,0x19,0xdb, +0xab,0xfd,0x90,0xd5,0xec,0x38,0xba,0x3f,0x7c,0xd5,0xfd,0x51, +0x5b,0x0b,0x9b,0xf3,0xed,0xe3,0x47,0xc1,0x7e,0x0e,0xe3,0xe8, +0xd1,0xf0,0x34,0x1b,0x8d,0x1e,0x03,0xfb,0x19,0xa6,0xa3,0xc7, +0x23,0x6b,0x71,0x72,0x22,0x12,0xb6,0x96,0x27,0x21,0x6b,0xeb, +0x73,0x32,0xb2,0xb6,0x1e,0x67,0xc2,0x7e,0x9e,0xe3,0xe8,0xd9, +0xc8,0xdb,0xeb,0x9d,0x0b,0x5f,0xb9,0x34,0x7a,0x1e,0x12,0x9a, +0x2b,0x46,0x2f,0x80,0xff,0x17,0x5d,0x2f,0x42,0x44,0xf5,0x6b, +0xf4,0x12,0xd8,0xcf,0x82,0x1c,0xbd,0x14,0x29,0xd5,0x8a,0xd1, +0xdf,0x63,0x4d,0xbb,0xe7,0x2b,0xe1,0xab,0x6f,0x8d,0x5e,0x85, +0x84,0xdd,0xd7,0xd5,0x48,0xab,0x9f,0x8e,0x5e,0x8b,0x84,0x72, +0x7f,0xf4,0x3a,0x24,0x95,0x1b,0xa3,0xb7,0xc2,0xd7,0xac,0x3c, +0x7a,0x3b,0xec,0x67,0x4d,0x8e,0xde,0x85,0xa8,0x66,0xc1,0xd1, +0xbb,0x91,0x50,0xcd,0x19,0xbd,0x17,0xbe,0x72,0x7e,0xf4,0x7e, +0xf8,0xaa,0x05,0xa3,0x0f,0xc0,0x57,0x8f,0x1c,0x7d,0x10,0x79, +0xd5,0xfc,0xd1,0x87,0xe0,0x5b,0xde,0x3d,0x8e,0x94,0x3d,0xeb, +0x13,0xf0,0x35,0x73,0x8f,0x3e,0x8d,0xb4,0xce,0x32,0xa3,0x7f, +0x86,0xaf,0xf9,0x7b,0xf4,0x45,0xc4,0x2c,0x27,0x5e,0x86,0xaf, +0xd9,0x69,0xf4,0x55,0xf8,0x9a,0xeb,0x46,0x55,0x73,0x46,0xdf, +0xe2,0x67,0x62,0x8e,0xbe,0x8d,0x98,0xe5,0xcd,0xdf,0x60,0x3f, +0x1f,0x73,0xf4,0xef,0x48,0x5b,0x8c,0xbc,0x87,0x98,0x66,0xbc, +0xd1,0xf7,0x91,0xb0,0xf5,0xfb,0x00,0x29,0xd5,0xa9,0xd1,0x0f, +0x91,0xb4,0x18,0xfc,0x17,0x22,0xf6,0xb5,0x9f,0xc2,0xb7,0xf7, +0xf9,0x16,0x51,0x8b,0xb1,0xef,0xe0,0xeb,0x3d,0xf4,0x25,0xff, +0x53,0x52,0x1d,0x19,0x5b,0x0e,0x71,0xe5,0xc8,0xd8,0xf2,0xf0, +0x75,0x4f,0x63,0x31,0x24,0xd4,0xc7,0xc7,0xe2,0x48,0xaa,0x5f, +0x8c,0x25,0x51,0xd2,0x19,0x7c,0x2c,0x05,0xff,0x5d,0x5d,0x33, +0x48,0xaa,0x8f,0x8c,0xe5,0x90,0xd3,0xda,0x8d,0xe5,0x91,0xb0, +0xcf,0xf7,0x11,0x51,0x6c,0x8d,0x05,0x48,0x29,0x37,0xc6,0x42, +0x94,0xb4,0x8f,0x63,0xab,0xc1,0xd7,0xac,0x35,0x56,0x8b,0x35, +0xed,0xeb,0x0a,0x48,0x29,0xb7,0xc7,0x8a,0x88,0x68,0x2d,0xc6, +0x96,0xa0,0xa4,0xda,0x37,0xb6,0x26,0x92,0x9a,0xdf,0xc6,0xd6, +0x46,0x4e,0xf3,0xc6,0xd8,0x3a,0x48,0x28,0x87,0xc7,0x36,0x44, +0x52,0xf1,0x3a,0xf6,0x13,0x94,0xec,0x19,0xeb,0x90,0xd2,0xec, +0x3d,0xb6,0x11,0x8a,0xaa,0xf9,0x63,0x1b,0xc3,0xff,0x87,0xae, +0xaa,0x7f,0x63,0x56,0xf7,0xb4,0x1f,0x63,0x5b,0xa0,0xd6,0xd6, +0x72,0x4b,0xa4,0x15,0xb7,0x63,0xdb,0x20,0xb0,0x75,0xda,0x0e, +0xbe,0xfa,0xc4,0xd8,0xf6,0x48,0xd8,0x9a,0xec,0x80,0xb8,0x6a, +0xd4,0xd8,0xcf,0xe0,0x6b,0xff,0xc6,0x76,0x81,0xaf,0x39,0x6c, +0x6c,0x37,0x24,0xd5,0x0f,0xc6,0x1a,0xe1,0x6b,0xbf,0xc7,0x5a, +0x90,0xd0,0xbc,0x3d,0xd6,0x81,0x92,0xad,0x4d,0x17,0x4a,0xb6, +0x36,0xdd,0x58,0xa2,0x7c,0x18,0xeb,0x85,0xaf,0x98,0x18,0xeb, +0x83,0xff,0x89,0xae,0xfd,0xf0,0x35,0xdb,0x8d,0x0d,0xc1,0x57, +0x7d,0x1b,0x1b,0x81,0xaf,0x1e,0x36,0x36,0x8a,0x92,0xed,0xc3, +0x18,0x6a,0x14,0x57,0x63,0x9a,0x77,0xc6,0xec,0xcf,0x3d,0x74, +0x3e,0x1c,0x9b,0x44,0xd6,0xae,0x73,0xc8,0xea,0xac,0x3b,0x36, +0x8f,0xb8,0xdd,0xcf,0x02,0x7c,0xcd,0xfc,0x63,0x7b,0xa1,0xa4, +0x98,0x1c,0xdb,0x1b,0x29,0xd5,0xe8,0xb1,0x7d,0x91,0x54,0xed, +0x18,0xfb,0x25,0xd2,0xaa,0x0f,0x63,0x87,0x22,0xa6,0x9e,0x35, +0x76,0x38,0xfc,0x7f,0xeb,0x7a,0x04,0x7c,0xd5,0xa5,0xb1,0xa3, +0x10,0xb5,0x35,0x3b,0x1a,0xfe,0x37,0xba,0x1e,0x03,0x5f,0x71, +0x3f,0x76,0x22,0x7c,0xe5,0xc3,0xd8,0xc9,0x48,0xaa,0xfe,0x8e, +0x9d,0x81,0xb4,0x72,0x6d,0xec,0x4c,0x44,0xec,0xeb,0xce,0x82, +0xaf,0xfa,0x33,0x76,0x36,0x4a,0xea,0xa3,0x63,0xe7,0xc3,0xb7, +0x7d,0xb9,0x10,0x25,0x8b,0xc1,0x8b,0x91,0x56,0x1d,0x19,0xbb, +0x0c,0x79,0xd5,0xa9,0xb1,0x2b,0x91,0xb0,0xf7,0xbc,0x06,0x39, +0x8b,0x9d,0x1b,0x50,0xb2,0x98,0xbd,0x09,0x39,0x9d,0xeb,0xc6, +0x6e,0x43,0xa0,0x7e,0x3f,0x76,0x3b,0x02,0x8b,0xb1,0xbb,0x10, +0x58,0x8e,0xde,0x83,0xc0,0x72,0xf7,0x8f,0x28,0x69,0x3e,0x1e, +0xbb,0x17,0xbe,0xce,0xde,0x63,0x0f,0x20,0x88,0xe8,0xfa,0x10, +0x96,0xa8,0x97,0x8d,0x3d,0x8c,0x8c,0xe6,0x90,0xb1,0x47,0x11, +0xe8,0x7c,0x3e,0xf6,0x02,0x02,0xcb,0xfb,0x97,0x91,0xb4,0x3d, +0x79,0x05,0x81,0xd5,0x80,0xbf,0x22,0x6f,0x79,0xf0,0x1a,0xb2, +0x96,0x43,0x6f,0x22,0x50,0x9d,0x1f,0xfb,0x3b,0x02,0xab,0x0d, +0x1f,0x20,0x48,0xeb,0xfa,0x09,0xec,0xe7,0xff,0x8e,0x7d,0x86, +0x98,0x66,0x89,0xb1,0xcf,0x11,0xb1,0xfc,0xfa,0x02,0x71,0xd5, +0xdf,0xb1,0x2f,0x11,0xe8,0x2c,0x31,0xf6,0x35,0x02,0xab,0x2b, +0xff,0x46,0x52,0x67,0xd7,0xb1,0x6f,0x90,0xb2,0xfa,0xf3,0x2d, +0x4a,0x96,0xf7,0xdf,0xa1,0x78,0xbd,0xae,0xff,0x81,0x63,0xf9, +0xf5,0x5f,0xa4,0x34,0x0b,0x8d,0x7d,0x8f,0x94,0xad,0xdf,0x0f, +0x48,0x6b,0x76,0x51,0x68,0xff,0x4f,0x42,0xf5,0x79,0x7c,0x79, +0x38,0x8a,0xab,0xf1,0x04,0xec,0x67,0x16,0x8f,0x27,0x91,0xd7, +0x1c,0x32,0x9e,0x46,0x4e,0x73,0xc9,0x78,0x16,0x59,0x3d,0xe7, +0x78,0x0e,0x25,0xd5,0x9d,0xf1,0x3c,0x02,0xbb,0x06,0x48,0x68, +0x86,0x18,0x0f,0x91,0x56,0x9f,0x18,0x5f,0x01,0x81,0xa3,0xeb, +0x8a,0xc8,0xab,0xcf,0x8e,0xaf,0x8a,0x9c,0x66,0x8b,0xf1,0x1a, +0xa4,0xb5,0x7f,0xe3,0xb5,0x08,0x5c,0x5d,0x0b,0x88,0xd9,0xfd, +0x2b,0x0e,0xc6,0xb5,0x06,0x81,0xfa,0xd4,0xf8,0x3a,0xb0,0x9f, +0xad,0x3c,0xbe,0x1e,0x72,0xea,0xa9,0xe3,0xeb,0x23,0xa7,0x1a, +0x38,0xbe,0x01,0x72,0x3a,0xab,0x8e,0x6f,0x88,0x84,0xf2,0x73, +0xfc,0x27,0x08,0xec,0x1e,0x37,0x42,0xd2,0xee,0x6b,0x63,0xe4, +0x74,0x5e,0x1e,0xdf,0x04,0x81,0x7d,0xfc,0xa7,0x08,0x54,0xe7, +0xc7,0x37,0x45,0xa0,0x7a,0x3e,0xbe,0x39,0x62,0x8a,0x99,0xf1, +0xad,0x10,0x53,0x6e,0x8f,0x6f,0x83,0xc0,0x9e,0x7b,0x3b,0x04, +0xea,0x47,0xe3,0x3b,0x22,0xb0,0xe7,0xde,0x05,0x29,0xfb,0xdc, +0x32,0xf2,0xaa,0x47,0xe3,0x8d,0x88,0xe8,0x5c,0x33,0xde,0x84, +0x84,0x5d,0x9b,0x91,0x56,0xff,0x18,0xaf,0xa0,0xd6,0xd6,0xbc, +0x1d,0x6b,0x2a,0xce,0xc7,0xbb,0x10,0xd8,0xfa,0xf5,0x20,0xa3, +0x19,0x69,0xbc,0x0f,0x81,0x7d,0x6d,0x3f,0xd2,0xb6,0xb7,0x03, +0x08,0x6c,0xed,0x07,0x91,0x54,0x3e,0x8c,0x0f,0x21,0xa7,0xf8, +0x1e,0xb7,0xbd,0x54,0xcd,0x0c,0x6c,0x1f,0x46,0x91,0x57,0x8d, +0x1e,0x1f,0x43,0xc9,0xd6,0x7e,0x0a,0x81,0xf2,0x7d,0x7c,0x16, +0x71,0xf5,0x82,0xf1,0x79,0x64,0xed,0xbd,0x16,0x10,0xa8,0x36, +0x8e,0x2f,0x22,0x63,0xaf,0xb1,0x27,0x7c,0xf5,0xfd,0xf1,0xbd, +0xe0,0x6b,0x3e,0x18,0xdf,0x07,0x31,0xd5,0xde,0xf1,0xfd,0x90, +0x51,0x7c,0x8f,0x1f,0x80,0x40,0x75,0x69,0xfc,0x20,0x24,0x55, +0x8f,0xc6,0x0f,0x46,0x56,0xb3,0xef,0xf8,0x91,0x08,0xec,0xde, +0x8e,0x42,0x56,0xf5,0x71,0xfc,0x18,0x04,0x3a,0x93,0x8e,0x1f, +0x87,0x40,0xf1,0x34,0x7e,0x3c,0x02,0x8b,0xaf,0x93,0x90,0xb2, +0x7b,0x39,0x1d,0x39,0xf5,0xf4,0xf1,0x33,0x91,0xb7,0x5f,0x9f, +0x83,0x9c,0xfd,0xfe,0x79,0x88,0x6a,0xe6,0x1f,0x3f,0x1f,0x09, +0xcd,0x7f,0xe3,0x17,0x22,0xaf,0x7e,0x37,0x7e,0x11,0x82,0x75, +0x75,0xbd,0x18,0x29,0xd5,0xc9,0xf1,0xcb,0x10,0x58,0x2c,0x5f, +0x81,0x40,0x75,0x78,0xfc,0x5a,0xc4,0xd5,0x0f,0xc6,0x6f,0x44, +0xa0,0xfe,0x3d,0x7e,0x13,0x02,0x8b,0xe5,0x5b,0x10,0xd5,0xac, +0x38,0x7e,0x2b,0x02,0x8b,0xfd,0xdb,0x10,0x58,0x5c,0xdf,0x8e, +0xc0,0xe2,0xf7,0x4e,0x94,0xec,0x73,0xfe,0x84,0x92,0xbd,0xce, +0xbd,0x48,0xdb,0x3d,0x3c,0x80,0x9c,0xe5,0xdd,0x43,0x08,0x74, +0xce,0x19,0x7f,0x0c,0x59,0xcd,0x1b,0xe3,0x4f,0x21,0xb0,0x3c, +0x78,0x1a,0x59,0x5b,0xb7,0x67,0x90,0xb3,0xfd,0x7f,0x16,0x51, +0xd5,0xb5,0xf1,0xe7,0x90,0xb2,0x75,0x7b,0x1e,0xc9,0x5d,0x75, +0x7d,0x09,0x69,0xcd,0x0f,0xe3,0xaf,0x20,0x6f,0x39,0xf2,0x1a, +0x02,0xcb,0xc5,0xd7,0x11,0x34,0xe8,0xfa,0x36,0x02,0xcb,0xb5, +0x77,0x11,0xd4,0xeb,0xfa,0x1e,0x02,0xcb,0xc5,0x0f,0x10,0x2c, +0xd5,0xf5,0x43,0x04,0x96,0xeb,0x1f,0x21,0xb0,0x9c,0xfe,0x18, +0x81,0xd5,0x86,0x4f,0x91,0xd6,0x5c,0x3d,0xfe,0x39,0xf2,0xea, +0x29,0xe3,0x5f,0x20,0xa1,0x3a,0x3e,0xfe,0x25,0x12,0xca,0x81, +0xf1,0x6f,0x51,0x6b,0xfb,0xff,0x1d,0x12,0x16,0x63,0xdf,0x23, +0x67,0xfb,0xff,0x03,0xa2,0x9a,0xb1,0x27,0x96,0xc5,0x12,0xf5, +0x8f,0x89,0xe5,0x90,0x56,0x2f,0x98,0x58,0x1e,0x19,0xc5,0xc1, +0x44,0x04,0x11,0xcd,0x84,0x13,0x51,0xd4,0xaa,0x1f,0x4d,0xf8, +0x48,0xa9,0x7f,0x4f,0xac,0x80,0x94,0x62,0x7b,0x62,0x45,0xe8, +0x53,0x96,0x99,0xa8,0x45,0xa0,0xf9,0x6c,0xa2,0x84,0xb8,0xfa, +0xe0,0xc4,0xea,0x88,0x6a,0x4d,0x27,0xd6,0x45,0xa0,0x73,0xe9, +0xc4,0x7a,0x88,0x6a,0xbe,0x9f,0x58,0x1f,0x81,0x6a,0xfe,0x44, +0x3d,0x02,0xd5,0xa9,0x89,0x8d,0x91,0x52,0xac,0x4f,0x6c,0x8a, +0xa8,0xe2,0x72,0x62,0x33,0x24,0x54,0x43,0x26,0xb6,0x44,0xf4, +0x72,0x5d,0xb7,0x42,0x42,0x75,0x6c,0x62,0x5b,0x04,0xf6,0xeb, +0xed,0x10,0x57,0x9c,0x4f,0x6c,0x8f,0xb8,0xdd,0xe3,0x0e,0xc8, +0xa8,0x11,0x4d,0xfc,0x0c,0x25,0xc5,0xf6,0xc4,0x8e,0x08,0xec, +0xf5,0x76,0x46,0x44,0x75,0x7b,0x62,0x0f,0x04,0xf6,0xda,0x65, +0x04,0xf6,0x7a,0x4d,0x88,0xe9,0x9c,0x33,0xd1,0x8c,0xb8,0xad, +0x71,0x0b,0x4a,0xda,0xdf,0x89,0x0a,0xa2,0xea,0xa9,0x13,0xad, +0x88,0xa9,0x7e,0x4d,0x74,0x21,0xd0,0x99,0x7c,0xa2,0x07,0x09, +0xd5,0x99,0x89,0x5e,0xe4,0x6c,0xef,0xfa,0x91,0x50,0x1d,0x99, +0x18,0x46,0x60,0xf7,0x38,0x8e,0xac,0xed,0xdd,0xde,0x08,0xec, +0x3d,0xf7,0x45,0x54,0xb1,0x3a,0xb1,0x1f,0x02,0x9d,0x3d,0x27, +0x0e,0x42,0x60,0x7b,0x77,0x30,0x02,0x7b,0xbe,0x43,0x91,0xb7, +0x67,0x3c,0x1c,0x81,0xea,0xfe,0xc4,0x91,0xc8,0xaa,0x37,0x4d, +0x9c,0x80,0x40,0x73,0xf0,0xc4,0x89,0xa8,0x55,0xad,0x99,0xf8, +0x0d,0x02,0xe5,0xd1,0xc4,0xa9,0x88,0xe8,0x5c,0x3d,0x71,0x1a, +0x02,0xd5,0xa2,0x89,0x33,0xb1,0x44,0x71,0x39,0x71,0x2e,0x02, +0x5b,0xbf,0xf3,0x11,0xd8,0xba,0x5e,0x80,0x40,0x7d,0x68,0xe2, +0x42,0x04,0xb6,0x4e,0x17,0x23,0xa9,0xf3,0xed,0xc4,0x65,0x70, +0x35,0x93,0x4d,0xfc,0x1e,0x71,0xbb,0x87,0xcb,0x91,0x57,0x0d, +0x9f,0xb8,0x1a,0x81,0x66,0x89,0x89,0x6b,0x91,0x51,0xaf,0x9f, +0xb8,0x0e,0x51,0x7b,0xd6,0xeb,0x91,0x50,0xaf,0x99,0xb8,0x11, +0x81,0xc5,0xc2,0xcd,0x08,0x6c,0xaf,0x6e,0x41,0x54,0x73,0xcb, +0xc4,0xed,0x08,0x6c,0x6f,0xef,0x40,0xa0,0xf3,0xd1,0xc4,0x5d, +0xc8,0x68,0x46,0x9f,0x78,0x00,0x31,0xe5,0xfe,0xc4,0x43,0x08, +0x54,0xb7,0x27,0x1e,0x41,0xd1,0xee,0xe5,0x51,0xe4,0x34,0x6f, +0x4c,0x3c,0x86,0x40,0xe7,0x87,0x89,0xc7,0x11,0xb3,0xb8,0x7e, +0x12,0x81,0xfa,0xdf,0xc4,0xd3,0x28,0xa9,0x86,0x4c,0xfc,0x19, +0x39,0xcd,0xfd,0x13,0xcf,0x23,0x50,0x5f,0x9c,0xf8,0x0b,0x02, +0xd5,0x84,0x89,0x17,0x11,0xd8,0xfd,0xbc,0x84,0xc0,0x62,0xea, +0x15,0xa4,0xed,0xe3,0x6f,0x20,0x63,0x31,0xf6,0x26,0x02,0xcd, +0x3c,0x13,0x6f,0x21,0xb0,0x58,0x7b,0x07,0x81,0x7d,0xce,0x7b, +0x08,0x2c,0xee,0x3e,0x42,0x52,0x35,0x65,0xe2,0x63,0x04,0xaa, +0xb1,0x13,0x9f,0x21,0x65,0xb1,0xf1,0x0d,0x02,0xcd,0xd8,0x13, +0xdf,0x22,0xaa,0xff,0xaf,0x97,0xfa,0x9f,0xbc,0xce,0x3e,0x93, +0xcb,0x22,0x50,0xdc,0x4f,0x46,0x10,0x28,0x8e,0x27,0xa3,0x88, +0x68,0x4f,0x27,0x13,0x08,0xaa,0xba,0xa6,0x91,0xd3,0x9a,0x4e, +0x66,0x10,0x68,0x56,0x98,0xcc,0x22,0xa9,0x73,0xe2,0x64,0x0e, +0x69,0xdd,0xf7,0x64,0x1e,0x81,0x66,0x91,0x49,0x0f,0x81,0x62, +0x63,0x72,0x65,0xa4,0x94,0xbf,0x93,0xab,0x20,0xd0,0x1c,0x30, +0xb9,0x2a,0xa2,0x5a,0xeb,0xc9,0xd5,0x10,0xd7,0xfe,0x4e,0x96, +0x10,0x68,0x26,0x98,0x5c,0x1d,0x81,0x72,0x72,0x72,0x0d,0x04, +0x9a,0x1b,0x26,0xd7,0x44,0xa0,0x99,0x63,0x72,0x2d,0x04,0x9a, +0x6f,0x26,0xd7,0x41,0xa0,0xfd,0x9a,0x5c,0x0f,0x81,0xe6,0x8f, +0xc9,0xa5,0x08,0x0e,0xd1,0x75,0x63,0x64,0x14,0xd3,0x93,0x9b, +0x20,0x50,0x4d,0x98,0xdc,0x0c,0x81,0x66,0x8b,0xc9,0xad,0x10, +0x28,0x6f,0x27,0xb7,0x41,0x5a,0xfd,0x60,0x72,0x57,0xe4,0xed, +0xeb,0x2a,0xc8,0xda,0x3a,0xb4,0x22,0xf8,0x85,0xae,0x6d,0x48, +0xdb,0xfb,0x77,0x21,0x50,0xce,0x4f,0x76,0x23,0xa5,0x5e,0x3b, +0xd9,0x83,0x40,0xf5,0x62,0xb2,0x17,0x81,0xf2,0x7f,0xb2,0x0f, +0xc1,0x61,0xba,0x0e,0x20,0xa3,0x79,0x78,0x72,0x10,0x81,0xf2, +0x68,0x72,0x08,0xb5,0xaa,0x27,0x93,0x13,0x28,0xa9,0x76,0x4f, +0x4e,0x21,0x50,0xed,0x98,0x9c,0x46,0xa0,0x9a,0x30,0x39,0x8b, +0x98,0xfa,0xfd,0xe4,0x1c,0x02,0x9d,0x2f,0x26,0xe7,0xb1,0x44, +0xf1,0x3d,0xb9,0x17,0xb2,0xea,0x31,0x93,0x7b,0x23,0xd0,0x19, +0x7c,0x72,0x1f,0xc4,0xee,0xd7,0x75,0x3f,0x04,0xf6,0xb1,0xfd, +0x11,0xd8,0xc7,0x7e,0x81,0xc0,0xbe,0xee,0x00,0xe4,0x75,0xd6, +0x9a,0x3c,0x10,0x51,0xcd,0x22,0x93,0x07,0x21,0xd0,0x6c,0x3c, +0x79,0x28,0x02,0x9d,0x6f,0x27,0x0f,0x43,0x54,0xf5,0x6b,0xf2, +0x58,0xd4,0xea,0x8c,0x36,0x79,0x22,0x22,0x8a,0xf9,0xc9,0x93, +0x11,0x68,0xd6,0x9a,0x3c,0x0d,0xb5,0xf6,0xb5,0xa7,0x23,0xd0, +0x39,0x76,0xf2,0x47,0x25,0xdb,0xdb,0x73,0x91,0xb2,0xd8,0x3f, +0x0f,0x81,0xea,0xe0,0xe4,0x85,0x08,0xd4,0x4f,0x27,0x7f,0x8f, +0xc0,0xde,0xf7,0x1a,0x04,0x9a,0x11,0x27,0xaf,0x47,0xa0,0xb3, +0xc3,0xe4,0x0d,0x08,0x74,0x76,0x9e,0xbc,0x09,0x81,0xce,0xc9, +0x93,0x77,0x22,0xb0,0xfb,0xba,0x07,0x81,0x66,0xc7,0xc9,0x3f, +0x22,0xd0,0x7c,0x39,0x79,0x2f,0x02,0x7b,0xa6,0xfb,0x11,0x9c, +0xa2,0xeb,0xc3,0xa8,0x51,0x8f,0x98,0x7c,0x0c,0x81,0xea,0xf8, +0xe4,0xe3,0x88,0x5b,0x2e,0x3c,0x81,0x5a,0xcb,0x97,0x27,0x91, +0xd2,0x19,0x67,0xf2,0x29,0x04,0xea,0x07,0x93,0xcf,0x20,0x38, +0x5a,0xd7,0xe7,0x10,0x68,0x96,0x9d,0x7c,0x09,0x79,0xcd,0x7b, +0x93,0x2f,0x23,0x67,0x6b,0xf3,0x1a,0x02,0xcd,0xb5,0x93,0xaf, +0x23,0xd0,0x0c,0x33,0xf9,0x36,0x4a,0x9a,0xa9,0x26,0xdf,0x43, +0xa0,0xba,0x3f,0xf9,0x3e,0x02,0x5b,0xcb,0x7f,0x22,0x50,0xad, +0x9f,0xfc,0x17,0x02,0xcb,0x9d,0xcf,0x10,0x68,0xae,0x9d,0xfc, +0x06,0x81,0xad,0xf1,0x77,0x48,0x6b,0xf6,0x9a,0xfc,0x2f,0x52, +0xf6,0xda,0x3f,0x20,0xf8,0xed,0x32,0xcb,0x4c,0x2d,0x87,0x40, +0x7b,0x33,0x15,0x45,0xf0,0x3b,0x5d,0x53,0x08,0x34,0x6f,0x4c, +0xa5,0x51,0xab,0x1a,0x3b,0x95,0x41,0xa0,0x7a,0x3e,0xe5,0x21, +0xd0,0xcc,0x36,0xe5,0x23,0x50,0xef,0x99,0x0a,0x10,0x68,0x5f, +0xa7,0x56,0x44,0x5a,0xfb,0x37,0xb5,0x32,0xb2,0xf6,0xf9,0xab, +0x22,0x50,0xff,0x9b,0xaa,0x45,0x70,0xa9,0xae,0x05,0x24,0xf5, +0x8c,0x53,0x25,0xe4,0x74,0x6e,0x9d,0x5a,0x1d,0x81,0xfa,0xd0, +0xd4,0x1a,0x08,0x34,0xdb,0x4f,0xad,0x8b,0xb8,0x6a,0xdd,0xd4, +0x7a,0x88,0xda,0xef,0xaf,0x8f,0xe8,0xdd,0xba,0xfe,0x04,0x81, +0xe2,0x75,0x6a,0x29,0x4a,0xaa,0x1b,0x53,0xff,0x87,0xa4,0x3d, +0xe3,0x26,0x08,0x14,0x73,0x53,0x9b,0x22,0x50,0xbe,0x4c,0x6d, +0x86,0xa4,0x6a,0xdc,0xd4,0xe6,0x88,0x6a,0xbf,0xa7,0xb6,0x42, +0xad,0x7d,0xec,0x67,0x08,0x14,0xbb,0x53,0x3b,0xa2,0x64,0xaf, +0xb1,0x13,0x02,0xf5,0xd7,0xa9,0x9d,0x11,0xe8,0x6c,0x30,0xb5, +0x1b,0x62,0xf6,0xf9,0x9d,0x88,0xa9,0x3e,0x4f,0x75,0x21,0x50, +0x0f,0x9e,0xea,0x47,0x4c,0x33,0xdb,0xd4,0x20,0x32,0xb6,0x2f, +0x43,0x08,0x94,0x03,0x53,0x63,0x08,0xd4,0xa7,0xa7,0xa6,0x51, +0x52,0xbc,0x4d,0xed,0x89,0x40,0xfd,0x7e,0x6a,0x2f,0x94,0xec, +0x39,0xf6,0x47,0x60,0x7b,0x71,0x10,0x4a,0x76,0xff,0x07,0x23, +0xaa,0xfc,0x99,0x3a,0x04,0x69,0xe5,0xe0,0xd4,0x11,0x08,0x6c, +0x0d,0x4f,0x40,0xa0,0x7c,0x9b,0x3a,0x11,0x71,0xdb,0xbb,0x93, +0x10,0x68,0x26,0x98,0x3a,0x13,0x81,0xea,0xdb,0xd4,0x79,0x08, +0xec,0xfe,0x2f,0x44,0xa0,0x59,0x61,0x4a,0x31,0x3d,0xa5,0xe7, +0x08,0xec,0xbd,0xfe,0x80,0x40,0xf9,0x36,0x75,0x15,0x02,0xe5, +0xe4,0xd4,0x35,0x08,0x34,0x53,0x4e,0xdd,0x88,0x40,0xbd,0x6f, +0xea,0x36,0x04,0x9a,0x33,0xa7,0xee,0x44,0x70,0x9f,0xae,0xf7, +0x22,0xb8,0x52,0xd7,0xfb,0x10,0x68,0x16,0x99,0xba,0x1f,0x81, +0x5d,0x9f,0x45,0xa0,0xf9,0x63,0xea,0x39,0xe4,0x95,0xdb,0x53, +0xaf,0x20,0xb0,0x5f,0xbf,0x8a,0x1a,0x9d,0x43,0xa6,0x5e,0x47, +0xa0,0xd9,0x65,0xea,0x0d,0x04,0xaa,0x11,0x53,0x6f,0xa3,0x64, +0xcf,0xf5,0x2e,0x4a,0x9a,0xbf,0xa7,0xde,0x47,0xd6,0x3e,0xfe, +0x0f,0x04,0xaa,0x17,0x53,0xdf,0x22,0xb0,0xf7,0xff,0x0e,0x81, +0x6a,0xc7,0x74,0x04,0x79,0xf5,0x9b,0xe9,0x28,0x02,0xd5,0x9c, +0xe9,0x14,0x02,0xcd,0x82,0xd3,0x1e,0x02,0xf5,0x85,0xe9,0x15, +0x10,0xe8,0xbe,0xa7,0x6b,0x10,0xd1,0xac,0x33,0x5d,0x40,0xa0, +0x19,0x68,0xba,0x88,0xb8,0xe2,0x72,0xba,0x84,0x84,0xee,0x61, +0x7a,0x0d,0xc4,0xec,0xd7,0x6b,0x23,0xaa,0x33,0xfb,0x74,0x3d, +0xf2,0x9a,0x39,0xa7,0x7f,0x8a,0xc0,0x5e,0x73,0x53,0x04,0xea, +0x1d,0xd3,0x9b,0x21,0x50,0xfd,0x9a,0xde,0x1c,0x31,0xcd,0x39, +0xd3,0x5b,0x21,0x66,0xcf,0xb2,0x35,0xa2,0x7a,0xce,0xe9,0x1d, +0x10,0xfc,0x55,0xd7,0x9d,0x10,0x68,0x4d,0xa7,0x77,0x41,0xa0, +0xda,0x37,0xbd,0x3b,0xa2,0x9a,0x81,0xa7,0x7f,0xb4,0xc4,0x3e, +0xbf,0x09,0x81,0xd6,0x7d,0xba,0x82,0xa8,0xd6,0x6b,0xba,0x15, +0x81,0x66,0xb5,0xe9,0x2e,0x04,0xda,0x8f,0xe9,0x2a,0x02,0xcd, +0x6d,0xd3,0xfd,0x08,0xb4,0x37,0xd3,0x83,0x08,0x34,0x0b,0x4d, +0x0f,0x21,0xa1,0xba,0x34,0x3d,0x8c,0x94,0xbd,0xc6,0x08,0x12, +0x3a,0x5f,0x4f,0x8f,0x62,0x89,0x62,0x66,0x7a,0x0c,0x59,0x7b, +0x9d,0x49,0xe4,0x6c,0x9d,0xa6,0x90,0xd7,0xbe,0x4e,0xcf,0x23, +0xa1,0xb8,0x9a,0xde,0x0b,0x09,0xf5,0x88,0xe9,0xbd,0x91,0x57, +0x2e,0x4c,0xef,0x87,0x25,0xb6,0x3e,0xca,0xb9,0x69,0xeb,0xcb, +0x8a,0x95,0xe9,0x5f,0x21,0xa1,0xf8,0x9e,0x56,0xce,0x4d,0x2b, +0xd7,0x02,0xf5,0x94,0xe9,0xc3,0x11,0xe8,0xcc,0x3c,0x7d,0x04, +0x02,0xc5,0xd3,0xf4,0xaf,0x91,0xb3,0xeb,0x31,0x48,0x6a,0xce, +0x98,0x3e,0x16,0x49,0x9d,0xd3,0xa7,0x8f,0x43,0x42,0x7d,0x6d, +0xfa,0x04,0x04,0x76,0x9f,0xa7,0x23,0x50,0xfd,0x9f,0x3e,0x03, +0x49,0x7b,0xfd,0xb3,0x10,0xa8,0x97,0x4c,0xff,0x16,0x81,0x7a, +0xc9,0xf4,0x25,0x08,0x34,0xe3,0x4e,0x2b,0x2f,0xa7,0x95,0x4f, +0x81,0x66,0xdc,0xe9,0x6b,0x11,0x28,0x2f,0xa6,0xaf,0x47,0xa0, +0xf3,0xf9,0xf4,0x0d,0x08,0xd4,0x7b,0xa6,0x6f,0x44,0xa0,0xd9, +0x6c,0xfa,0x26,0x44,0x55,0x33,0xa7,0x6f,0x46,0x5a,0xfd,0x71, +0xfa,0x56,0x04,0x3a,0xc3,0x4f,0xdf,0x81,0x84,0xad,0xd9,0x9d, +0x88,0xda,0x7b,0xde,0x85,0x40,0x73,0xf2,0xf4,0x1f,0x91,0x51, +0x7e,0x4d,0xff,0x09,0xae,0x6a,0xce,0xf4,0x83,0x88,0x59,0x0c, +0x3e,0x84,0xe0,0x6b,0x5d,0x1f,0x47,0xa0,0x33,0xe6,0xf4,0x93, +0xc8,0xd9,0xd7,0x3e,0x85,0x9c,0xad,0xc1,0xd3,0x58,0x62,0x5f, +0xf7,0x67,0x64,0x2c,0xd7,0x9e,0x43,0xa0,0xde,0x39,0xfd,0x3c, +0xb2,0x9a,0x91,0xa6,0x5f,0x40,0xc9,0xde,0xeb,0x25,0x64,0x35, +0x27,0x4c,0xbf,0x8a,0x9c,0xc5,0xe1,0x8f,0x02,0x8b,0xff,0x7f, +0x22,0xf8,0x8f,0xae,0x1f,0x22,0xb0,0x18,0xfe,0x18,0x81,0xce, +0x80,0xd3,0x9f,0x23,0x50,0x3f,0x9e,0x49,0x40,0x47,0xcc,0x65, +0x66,0xf2,0x48,0x68,0xad,0x67,0x5c,0xe4,0x54,0x7b,0x67,0xd4, +0x57,0x67,0xd4,0x4f,0x43,0x9d,0x19,0x66,0x56,0x44,0x4c,0xf9, +0x36,0xb3,0x2a,0xc2,0xe5,0x75,0x5d,0x03,0xa1,0xea,0xc8,0xcc, +0x12,0x84,0xaa,0x2f,0x33,0x1b,0x23,0xa5,0x5e,0x38,0xf3,0x53, +0x64,0xb5,0xaf,0x33,0x9b,0x22,0xa2,0xfb,0x9b,0xd9,0x1a,0x59, +0xe5,0xc5,0xcc,0x36,0x28,0xd9,0xc7,0xb6,0x45,0xc6,0xee,0x65, +0x3b,0x24,0xd5,0xb7,0x66,0xb6,0x47,0x4c,0x71,0x3c,0x53,0x46, +0x56,0xf3,0xf4,0x4c,0x13,0x12,0xaa,0xa7,0x33,0x6d,0x08,0xe3, +0xba,0x76,0x20,0xaa,0x35,0x99,0xe9,0x46,0x54,0x67,0x8f,0x99, +0x1e,0x94,0xec,0x3d,0x7b,0x91,0x51,0x8d,0x9d,0xe9,0x43,0xa8, +0xf9,0x73,0xa6,0x1f,0x71,0xf5,0xdc,0x99,0x01,0xa4,0x35,0xef, +0xcd,0x0c,0x21,0xb4,0xf5,0x9b,0x40,0xa8,0x73,0xee,0xcc,0x14, +0xc2,0xa4,0xae,0xf3,0x28,0xd9,0xbd,0x2f,0x20,0xad,0x9a,0x38, +0xb3,0x27,0x0a,0x9a,0x39,0x66,0xf6,0x42,0x68,0xcf,0xf8,0x4b, +0xc4,0xed,0xd9,0x0f,0x44,0xcc,0xee,0xed,0x20,0x84,0xb6,0x3f, +0x87,0x22,0xd4,0xb9,0x6b,0xe6,0x30,0x84,0xaa,0xd7,0x33,0x87, +0x23,0xaf,0x33,0xc9,0xcc,0xaf,0x51,0xb2,0xf5,0x3b,0x1a,0x69, +0xd5,0xb7,0x99,0xe3,0x91,0x51,0xfe,0xcc,0x9c,0x80,0x50,0x73, +0xd5,0xcc,0x49,0x08,0x6d,0x9f,0x4f,0x41,0xa8,0xba,0x3f,0x73, +0x2a,0x62,0x8a,0xc9,0x99,0x33,0x10,0xdd,0x50,0xd7,0xb3,0x91, +0xb0,0x3d,0x3d,0x07,0xa1,0x66,0xb2,0x99,0x73,0x11,0xea,0x1c, +0x38,0x73,0x11,0x72,0x3a,0x83,0xcc,0x5c,0x8c,0xb4,0x6a,0xe8, +0xcc,0x95,0xc8,0x69,0xd6,0x9a,0xb9,0x06,0xa1,0xc5,0xd1,0xf5, +0x08,0x75,0xf6,0x9b,0xb9,0x11,0xd1,0x46,0x5d,0x6f,0x43,0x56, +0x39,0x35,0x73,0x3b,0xf2,0xb6,0xb6,0x77,0x20,0xb4,0x35,0xbc, +0x13,0x09,0xe5,0xd5,0xcc,0x5d,0x48,0x2a,0x97,0x67,0xee,0x46, +0x68,0x31,0x7b,0x0f,0x42,0xf5,0xad,0x99,0x3f,0x22,0x6a,0xeb, +0x76,0x2f,0x62,0x16,0xf3,0x0f,0x20,0x54,0xac,0xcf,0x3c,0x88, +0x50,0xf3,0xe2,0xcc,0xa3,0x48,0xa9,0x66,0xcd,0x3c,0x86,0xac, +0x7a,0xd8,0xcc,0x13,0xc8,0x5a,0x1c,0x3e,0x87,0x50,0x3d,0x72, +0xe6,0x2f,0xc8,0xd9,0xfd,0xbf,0x88,0x50,0x75,0x72,0xe6,0x65, +0x84,0x16,0x03,0xaf,0xa0,0x64,0xb1,0xfc,0x2a,0x42,0xf5,0xd1, +0x99,0xd7,0x10,0x5a,0x7c,0xbe,0x85,0x9c,0xc5,0xf5,0xdb,0xc8, +0x28,0x7f,0x67,0xde,0x41,0xcc,0x62,0xe4,0x6f,0xc8,0xd8,0xd7, +0xbe,0x8f,0xb4,0xad,0xf1,0x3f,0x10,0x6a,0x66,0x9d,0xf9,0x18, +0xa1,0x7a,0xf3,0xcc,0x27,0x48,0xab,0xa7,0xce,0x7c,0x8a,0x50, +0xc9,0x3f,0xf3,0x39,0x22,0xaa,0xc3,0xb3,0x11,0x94,0xd4,0x47, +0x67,0xd3,0xc8,0x2b,0x57,0x67,0x33,0x08,0x15,0x03,0xb3,0x1e, +0xc2,0x0d,0x74,0x5d,0x11,0x29,0xc5,0xc1,0xec,0xca,0x08,0x35, +0x13,0xcf,0xae,0x8a,0xbc,0x66,0xe3,0xd9,0x5a,0x64,0x34,0xb7, +0xcd,0x16,0x10,0xaa,0x5e,0xcc,0xae,0x89,0xb4,0x9e,0x73,0x76, +0x5d,0x44,0x54,0xff,0x67,0xd7,0x43,0x5c,0x73,0xcb,0xec,0xfa, +0x08,0x75,0xb6,0x9f,0xad,0x47,0x72,0x23,0x5d,0x1b,0x10,0xda, +0xef,0xff,0x1f,0x42,0xfb,0xba,0x4d,0x10,0xda,0x6b,0x6f,0x8a, +0x70,0x1d,0x5d,0xb7,0x40,0x54,0xb5,0x77,0x76,0x2b,0x84,0xda, +0xc7,0xd9,0xad,0x91,0xd1,0x99,0x64,0x76,0x3b,0xe4,0x75,0x1e, +0x9f,0xfd,0x19,0x92,0xca,0x9d,0xd9,0x9f,0x23,0xa5,0xb8,0x9f, +0xed,0x42,0x68,0xef,0xdf,0x8d,0xd0,0xee,0xa7,0x07,0x59,0xc5, +0xd6,0xec,0x30,0x42,0xcd,0xfd,0xb3,0x23,0x08,0x35,0xf7,0xcf, +0x8e,0x21,0x62,0xaf,0x39,0x89,0xb8,0x7a,0xc0,0xec,0x14,0xf2, +0xaa,0xef,0xb3,0x33,0x88,0x2a,0x97,0x66,0xe7,0x90,0x55,0x3f, +0x98,0x9d,0x47,0xc9,0xee,0x65,0x6f,0xe4,0x55,0x0f,0x67,0xf7, +0x43,0x54,0xb5,0x60,0x76,0x7f,0xa4,0x54,0xab,0x67,0x7f,0x81, +0xd0,0xd6,0xec,0x48,0x84,0xaa,0xbf,0xb3,0x47,0xa1,0x64,0xcf, +0x77,0x34,0x92,0x8a,0x99,0xd9,0x63,0xb0,0x44,0xb9,0x33,0x7b, +0x3c,0xf2,0x8a,0xc3,0xd9,0x13,0x11,0xaa,0x8e,0xcf,0x9e,0x8a, +0xb0,0x4e,0xd7,0xd3,0x11,0xda,0xda,0x9f,0x81,0x92,0xce,0x1e, +0xb3,0x67,0x23,0xaf,0xb3,0xe1,0xec,0xb9,0xc8,0xcc,0xea,0x7a, +0x1e,0x32,0x16,0x27,0x57,0xa1,0xa4,0xf9,0x6c,0xf6,0x5a,0x44, +0x75,0x3e,0x9a,0xbd,0x01,0x11,0xf5,0xd3,0xd9,0x9b,0x11,0xda, +0xbe,0xdd,0x86,0xd0,0xf6,0xea,0x2e,0xe4,0x35,0x73,0xcc,0xfe, +0x09,0x79,0xf5,0x80,0xd9,0x07,0x11,0xda,0xfa,0x3c,0x84,0x50, +0xf5,0x73,0xf6,0x61,0x84,0xea,0xc5,0xb3,0x8f,0x23,0x6f,0xf7, +0xf2,0x04,0x42,0xe5,0xe0,0xec,0xd3,0x28,0xe9,0x8c,0x34,0xfb, +0x2c,0x92,0xaa,0x57,0xb3,0x7f,0x46,0x68,0x6b,0xf5,0x17,0x84, +0x9a,0x23,0x67,0x5f,0x42,0x46,0x67,0x9e,0xd9,0x97,0x11,0xda, +0xb3,0xbc,0x82,0x25,0xf6,0x3e,0xaf,0x23,0xb4,0x98,0x7a,0x0b, +0x69,0x8b,0xab,0x77,0x11,0xda,0x7b,0xfd,0x1d,0xa1,0xc5,0xe3, +0xfb,0x08,0x2d,0xef,0xfe,0x81,0x50,0xf5,0x7c,0xf6,0x9f,0xa8, +0xb1,0xf7,0xff,0x10,0xa1,0x6a,0xfb,0xec,0x47,0x08,0x2d,0x06, +0x3e,0x45,0x4a,0x67,0xe9,0xd9,0xcf,0x50,0xb2,0xaf,0xfd,0x1c, +0x49,0x8b,0xb5,0x2f,0x91,0xb5,0xeb,0xd7,0x48,0x58,0x5e,0xfe, +0x1b,0x25,0x7b,0xae,0x6f,0x10,0x5a,0xde,0x7c,0x8b,0xd0,0xf6, +0xf4,0x3b,0x64,0x2c,0x06,0xfe,0x83,0x92,0xde,0x77,0x2e,0x8a, +0x94,0x72,0x60,0x2e,0x8e,0xa8,0xd6,0x7a,0x2e,0x81,0x84,0x9e, +0x7d,0x2e,0x89,0xa4,0xf6,0x7b,0x2e,0x85,0x50,0x73,0xfc,0x5c, +0x1a,0x49,0xcd,0xe2,0x73,0x3e,0xe2,0xaa,0x57,0x73,0x21,0x42, +0xd5,0xa8,0xb9,0x95,0x11,0xaa,0x96,0xce,0xad,0x82,0xa4,0x62, +0x7d,0x6e,0x55,0xc4,0x95,0x1b,0x73,0x35,0x08,0xd5,0xb3,0xe7, +0x0a,0x08,0x75,0xa6,0x9d,0x2b,0x22,0xa6,0xd8,0x9d,0x2b,0x21, +0xa3,0x67,0x9c,0x5b,0x03,0xa1,0xe6,0xfb,0xb9,0x25,0x08,0x95, +0xb7,0x73,0x6b,0x22,0xa2,0x7e,0x3c,0xb7,0x16,0x22,0xca,0xbb, +0xb9,0xb5,0x51,0x52,0x8c,0xcd,0xad,0x8b,0xa8,0xdd,0xdb,0xfa, +0x08,0x35,0x67,0xcc,0x6d,0x80,0xb4,0xea,0xe3,0xdc,0x86,0x08, +0xed,0xb9,0x7e,0x82,0xd0,0xbe,0xb6,0x0e,0x71,0xf5,0x89,0xb9, +0x8d,0xb1,0x44,0x39,0x33,0xb7,0x29,0x42,0xcd,0x19,0x73,0x9b, +0xa1,0x64,0x5f,0xbb,0x39,0x42,0x5b,0xdb,0x2d,0x51,0xb2,0x75, +0xd8,0x1a,0x61,0x8b,0xae,0x3b,0x20,0x54,0x3d,0x9a,0xdb,0x15, +0x39,0xcd,0xb8,0x73,0x7b,0x20,0xd4,0xdc,0x33,0x57,0x46,0xa8, +0xb3,0xca,0x5c,0x3b,0xe2,0x9a,0xef,0xe7,0x3a,0x91,0xd4,0xd9, +0x64,0xae,0x8a,0xb4,0xad,0x6d,0x0f,0x4a,0xf6,0x1a,0xfd,0x08, +0x9b,0x75,0x1d,0x47,0xde,0xf6,0x64,0x1a,0xa1,0x72,0x64,0x6e, +0x0e,0xa1,0x7d,0xfe,0x3c,0x32,0xaa,0x5f,0x73,0x7b,0x22,0x54, +0xff,0x9a,0xdb,0x17,0xa1,0xbd,0xff,0x41,0xc8,0x2b,0xfe,0xe6, +0x0e,0x46,0x42,0xb1,0x3e,0x77,0x08,0x72,0x16,0x27,0x87,0x21, +0xd4,0xbc,0x35,0x77,0x3c,0xb2,0xca,0xd3,0xb9,0xdf,0x20,0xb4, +0xd7,0x3f,0x09,0x71,0x7b,0xcf,0x33,0x90,0x54,0x0d,0x9d,0x3b, +0x0b,0xa1,0xe6,0xb3,0xb9,0xf3,0x90,0xb7,0xe7,0x3a,0x1f,0x71, +0xdb,0xd3,0x0b,0x10,0xda,0xd7,0x5e,0x8c,0x1a,0xdb,0x97,0x4b, +0x11,0xaa,0x5e,0xcd,0xfd,0x01,0xa1,0xce,0x72,0x73,0x57,0x62, +0x89,0x66,0xa3,0xb9,0x6b,0x11,0xda,0x7a,0xdc,0x80,0x50,0xf9, +0x35,0x77,0x0b,0xf2,0xb6,0x87,0xb7,0x22,0x54,0xdd,0x9f,0xbb, +0x03,0xb5,0xca,0xa3,0xb9,0xbb,0x11,0xaa,0x07,0xcc,0xfd,0x11, +0x25,0x5b,0x9f,0xfb,0x10,0xda,0x5a,0x3e,0x80,0x50,0x33,0xe5, +0xdc,0x83,0xc8,0xd9,0xbd,0x3d,0x8a,0x50,0x7d,0x65,0xee,0x71, +0x24,0x74,0xae,0x98,0x7b,0x02,0xa1,0xe6,0x90,0xb9,0x67,0x11, +0x7d,0x44,0xd7,0xe7,0x10,0xea,0x6c,0x39,0x67,0xcf,0x6c,0xb5, +0xcb,0xd6,0xe7,0x35,0xa4,0x2d,0xc6,0x5e,0x47,0xda,0x62,0xed, +0x43,0x84,0x16,0xff,0x1f,0x23,0x54,0xff,0x98,0xfb,0x0c,0xa1, +0xad,0xe1,0x17,0xc8,0x58,0x0e,0x7d,0x8d,0xd0,0xf6,0xf3,0xdf, +0x08,0xd5,0x93,0xe6,0xbe,0x47,0xb8,0x8f,0xae,0x3f,0x20,0xd4, +0x6c,0x3d,0xbf,0x2c,0x62,0xea,0x1f,0xf3,0xcb,0x21,0xab,0xbd, +0x9e,0x8f,0x21,0xa1,0x1a,0x37,0x9f,0x44,0xc2,0xae,0x79,0xe4, +0x55,0x5b,0xe7,0x5d,0x84,0x8b,0xba,0xfa,0x08,0x35,0xff,0xcc, +0x07,0x88,0xaa,0x8e,0xcc,0x87,0x48,0xa9,0x86,0xce,0x17,0x91, +0x55,0xbe,0xcd,0xaf,0x8e,0xa8,0xce,0x3b,0xf3,0x6b,0xa0,0x56, +0x33,0xf4,0xfc,0xfa,0xc8,0x29,0xfe,0xe7,0x37,0x40,0x5a,0xf5, +0x74,0x7e,0x23,0x84,0xea,0xa3,0xf3,0xf5,0x08,0x35,0x97,0xcf, +0x6f,0x8a,0x94,0xce,0x96,0xf3,0x5b,0x23,0x3c,0x40,0xd7,0x6d, +0x10,0x2a,0xbe,0xe7,0xb7,0x43,0xa8,0x59,0x7f,0xfe,0xe7,0x88, +0xea,0xf9,0xe7,0x9b,0x51,0xab,0x78,0x9e,0x6f,0x45,0xdc,0xbe, +0xae,0x13,0xa1,0xce,0xd2,0xf3,0x55,0x84,0xea,0xd3,0xf3,0x3d, +0x48,0x29,0x76,0xe7,0xfb,0x11,0xd5,0x9c,0x3a,0x3f,0x82,0xa4, +0x72,0x6f,0x7e,0x0c,0xa1,0xea,0xdb,0xfc,0x2c,0x42,0xf5,0xf5, +0xf9,0x39,0xa4,0x15,0x03,0xf3,0xf3,0x08,0x95,0xef,0xf3,0x0b, +0x48,0xab,0xfe,0xcf,0xef,0x8d,0xf0,0xf7,0xba,0xee,0x8f,0xd0, +0xd6,0xe4,0x97,0x08,0x95,0x87,0xf3,0x07,0x20,0xd4,0x4c,0x30, +0x7f,0x08,0x42,0x9d,0x31,0xe6,0x0f,0x45,0xa8,0xfc,0x9c,0xff, +0x51,0xa8,0x19,0x62,0xfe,0x08,0xa4,0xec,0xb9,0x7f,0x8d,0x50, +0xb9,0x3d,0x7f,0x34,0x4a,0xb6,0x06,0x27,0x22,0x54,0xef,0x9e, +0x3f,0x19,0xa1,0x72,0x7b,0xfe,0x4c,0x44,0x15,0x37,0xf3,0x17, +0x21,0xb4,0xdf,0xff,0x1d,0x42,0xe5,0xf9,0xfc,0x25,0x08,0x95, +0x83,0xf3,0x7f,0x40,0xa8,0xf9,0x63,0xfe,0x7a,0x64,0xd4,0x43, +0xe7,0x6f,0x44,0xa8,0x1a,0x31,0x7f,0x33,0x4a,0xaa,0x93,0xf3, +0xb7,0x23,0xb4,0xd8,0xfb,0x13,0xe2,0xca,0xd3,0xf9,0x7b,0x91, +0x56,0xfd,0x9c,0xbf,0x0f,0xa1,0xce,0x45,0xf3,0xf7,0x23,0xa3, +0x9e,0x3a,0xff,0x10,0x42,0xcd,0x27,0xf3,0xcf,0x23,0xd4,0x7c, +0x33,0xff,0x17,0x84,0x76,0xef,0x2f,0x21,0xd4,0x6c,0x33,0xff, +0x2a,0x42,0xd5,0x9a,0xf9,0x37,0x10,0xaa,0x36,0xcd,0xbf,0x89, +0xb8,0x7a,0xe7,0xfc,0x5b,0xc8,0x28,0xf7,0xe6,0xdf,0x45,0xa8, +0x99,0x75,0xfe,0x9f,0xc8,0xab,0x97,0xcd,0x7f,0x88,0x50,0xb5, +0x6c,0xfe,0x23,0x84,0x16,0x0f,0x1f,0x23,0xad,0xbe,0x33,0xff, +0x29,0x42,0xcd,0x58,0xf3,0x9f,0x23,0xb4,0xb5,0xff,0x12,0x25, +0xf5,0xb8,0xf9,0xaf,0xb0,0xaa,0xad,0xdf,0xb7,0x08,0x2f,0xd4, +0xf5,0x7b,0x84,0xfa,0xf8,0xc2,0xb2,0x08,0x55,0x07,0x17,0xa2, +0x28,0x29,0x46,0x17,0x62,0xa8,0x55,0x8d,0x5a,0x88,0xa3,0xa4, +0xf7,0x5d,0x48,0x22,0xfc,0xad,0xae,0x69,0x84,0xaa,0xa7,0x0b, +0x79,0x84,0xda,0xb3,0x05,0x17,0xa1,0xf6,0x72,0x21,0x44,0xad, +0xe2,0x76,0x61,0x25,0x84,0x57,0xe8,0xba,0x0a,0x42,0xcd,0x8a, +0x0b,0xab,0x22,0x54,0xfd,0x5d,0xa8,0x41,0x78,0xb9,0xae,0xb5, +0xa8,0x55,0xfc,0x2c,0x14,0x10,0x6a,0xef,0x17,0xd6,0x42,0xad, +0xf6,0x7d,0x61,0x6d,0xa4,0xd5,0x83,0x16,0xd6,0x41,0x49,0xbd, +0x66,0x61,0x03,0xa4,0xd4,0xf7,0x17,0x96,0x22,0x54,0x1d,0x5f, +0xa8,0x47,0xa8,0xdc,0x5f,0xd8,0x1a,0xa1,0x6a,0xd1,0xc2,0xee, +0x08,0xd5,0xb7,0x16,0x9a,0x11,0xea,0x8c,0xba,0xd0,0x89,0x5a, +0xf5,0xd3,0x85,0x61,0x84,0xea,0x01,0x0b,0xd3,0x88,0xda,0xfa, +0xcc,0x23,0xa3,0xdc,0x5b,0x58,0x40,0x54,0xf9,0xb2,0xb0,0x3f, +0x96,0x68,0x3f,0x16,0x0e,0x40,0xad,0xa3,0xeb,0x81,0x48,0xa8, +0xaf,0x2d,0x1c,0x89,0x92,0xbd,0xfe,0x31,0xc8,0x3f,0xa9,0xeb, +0xb1,0x48,0xd9,0x73,0x9c,0x88,0xa8,0x66,0x8c,0x85,0x53,0x10, +0x2a,0xee,0x17,0xce,0x46,0x78,0x9d,0xae,0x57,0xa2,0x64,0xf7, +0x7b,0x15,0x42,0xd5,0xab,0x85,0xab,0x91,0xb6,0x7b,0xb9,0x06, +0xa1,0xfa,0xd3,0xc2,0xb5,0x08,0xd5,0xc3,0x16,0x6e,0x44,0xa8, +0x1e,0xb6,0x70,0x1b,0x42,0xe5,0xcf,0xc2,0xed,0xc8,0xa8,0x47, +0x2c,0xdc,0x81,0x88,0x62,0x7b,0xe1,0x4e,0x14,0xed,0xb5,0x1f, +0x41,0x5e,0xbd,0x6d,0xe1,0x71,0x84,0xf6,0x75,0x4f,0x23,0xa2, +0x33,0xf3,0xc2,0xcb,0x08,0xed,0xeb,0x5e,0x43,0x68,0xaf,0xf7, +0x06,0x42,0x7b,0xcf,0x4f,0x11,0xda,0xbd,0x7c,0x83,0x9c,0xed, +0xc3,0x7f,0x11,0xea,0xf5,0x17,0x23,0x28,0x69,0x2e,0x5a,0x4c, +0x22,0xd4,0x79,0x60,0x31,0x8f,0x92,0x72,0x79,0x31,0x40,0x34, +0xab,0xeb,0xca,0x08,0xd5,0x6b,0x17,0x57,0x41,0x4e,0xbd,0x67, +0x71,0x35,0x84,0xf7,0xe8,0x5a,0x42,0x4e,0xb5,0x60,0x71,0x2d, +0x24,0xb5,0x2e,0x8b,0x4b,0x51,0xa3,0xf3,0xda,0xe2,0x26,0x48, +0x69,0x4d,0x16,0xb7,0x44,0x52,0xeb,0xb8,0xa8,0xbe,0xbe,0xa8, +0xd9,0xbf,0xa4,0x7a,0xbd,0xb8,0x0b,0x6a,0x55,0x13,0x17,0x77, +0x47,0xa8,0xfe,0xbd,0x58,0x46,0xad,0xbd,0x76,0x1b,0x42,0x7b, +0xaf,0x76,0x84,0xaa,0x2f,0x8b,0x5d,0x88,0xe6,0x74,0xed,0x41, +0x49,0xfd,0x60,0x71,0x08,0xa1,0x66,0x82,0xc5,0x11,0x64,0x75, +0xde,0x5e,0x1c,0x45,0xa8,0x5a,0xb6,0x38,0x86,0x50,0x35,0x6b, +0x71,0x1c,0x49,0xc5,0xc3,0xe2,0x24,0xb2,0xf6,0xb9,0x33,0x08, +0x35,0x9f,0x2f,0xce,0x21,0xa1,0x35,0x5d,0x3c,0x10,0x05,0xcd, +0xc1,0x8b,0x47,0x20,0xd4,0x7e,0x2d,0x1e,0x8d,0x50,0x35,0x71, +0xf1,0x58,0xc4,0xec,0xf3,0x7f,0x83,0x50,0xfb,0xbd,0x78,0x1a, +0xf2,0x8a,0x8d,0xc5,0xd3,0x11,0x6a,0xef,0x17,0xcf,0x46,0x51, +0x7d,0x7f,0xf1,0x02,0x24,0xed,0xf9,0x2e,0x47,0xa8,0x79,0x65, +0xf1,0x2a,0x84,0x8a,0xf3,0xc5,0xeb,0x91,0x51,0x1d,0x5c,0xbc, +0x1d,0xa1,0xe2,0x66,0xf1,0x1e,0x84,0xcf,0xe8,0x7a,0x2f,0x4a, +0xea,0x85,0x8b,0xf7,0x23,0xf3,0x81,0xae,0x8f,0x20,0xa3,0xdc, +0x5b,0x7c,0x14,0xa1,0xce,0x6c,0x8b,0x4f,0x21,0x54,0xbd,0x5e, +0xfc,0x7f,0x96,0xee,0x3a,0x4c,0xd3,0xb2,0xec,0xe3,0xb8,0xc0, +0x3c,0x5d,0x4b,0xcc,0xdd,0x33,0xbb,0x0f,0xcc,0x22,0x02,0x2a, +0x21,0xad,0x94,0x80,0x34,0x88,0x34,0x48,0x87,0x84,0x0a,0xd3, +0xdd,0xdd,0xb1,0x3b,0xb9,0x33,0xab,0xa0,0xd2,0x29,0x2a,0x1d, +0x52,0x4a,0x48,0x08,0x48,0x49,0xa7,0x8a,0xf8,0x22,0x2a,0x0c, +0xe1,0xfb,0x3b,0xfd,0x72,0x1c,0xef,0xe7,0xb8,0xf6,0xd8,0x9d, +0x79,0x9e,0xfb,0xbe,0xae,0xb3,0x2e,0xde,0x3f,0x7c,0x1c,0x05, +0xc5,0xed,0xc5,0x4f,0xa2,0x54,0x73,0xd2,0xc5,0x4f,0xa1,0x54, +0x73,0xd2,0xc5,0x4f,0x23,0x66,0x71,0xf4,0x27,0x94,0xda,0x67, +0xbc,0x8c,0x8d,0xed,0x0c,0x5f,0x41,0xa9,0xfd,0xec,0x9b,0x48, +0xdb,0x33,0xbc,0x85,0xa4,0x6a,0xef,0xc5,0x6f,0xa3,0xd4,0x3e, +0xe3,0x6f,0x28,0x7d,0x46,0xeb,0x7b,0x48,0x69,0xd6,0xbd,0xf8, +0xef,0x58,0x61,0xeb,0xbf,0x50,0xaa,0xfe,0x71,0xf1,0xc7,0x28, +0xd5,0x1d,0xf2,0xe2,0x4f,0x50,0x6a,0xef,0xf4,0x29,0x4a,0x95, +0x3f,0x17,0x7f,0x8e,0xa2,0x66,0x89,0x8b,0xff,0x8b,0x52,0xf5, +0x9b,0xca,0x38,0x72,0x8a,0xd7,0xca,0x1c,0x4a,0x15,0xb7,0x95, +0x2b,0x50,0xaa,0x7c,0xab,0x0c,0x51,0xaa,0xbe,0x53,0xb9,0x15, +0x4a,0xf5,0x6e,0x95,0x5b,0x23,0xa3,0xde,0x50,0xb9,0x2d,0x4a, +0xd5,0x9f,0x2a,0xbf,0x8a,0x52,0xbd,0x73,0xe5,0x76,0x28,0x7d, +0x4d,0xeb,0x0e,0x28,0x7d,0x5d,0xeb,0x4e,0x48,0xa9,0x07,0x54, +0xee,0x8c,0x9c,0xf6,0xa7,0x72,0x77,0xac,0xb6,0x67,0xd1,0x1d, +0xbe,0x52,0xf9,0x52,0xaa,0xf3,0xad,0xfc,0x16,0xd2,0x7a,0xdf, +0xca,0x3d,0x91,0xd4,0xd9,0x54,0x6a,0x1e,0xaa,0xd4,0xbd,0xb6, +0x54,0xfb,0x58,0x79,0x00,0x4a,0x35,0xcb,0x55,0x7e,0x07,0x79, +0xcd,0x70,0x95,0x07,0x22,0xa7,0xbc,0xa8,0x3c,0x04,0xa5,0xda, +0xff,0xca,0x43,0x51,0x6e,0x7f,0x7f,0x14,0x32,0xda,0xb7,0xca, +0xe3,0x51,0xaa,0x3d,0xaf,0x3c,0x01,0x2b,0xd5,0x57,0x2a,0x4f, +0x42,0x5c,0xf3,0x52,0xe5,0xf7,0x91,0x57,0x4c,0x54,0x9e,0x8a, +0xbc,0x62,0xbe,0xf2,0x74,0xc4,0x74,0x4f,0xab,0x3c,0x03,0x05, +0x9d,0x4b,0xe5,0xb9,0xc8,0x6b,0x1e,0xaa,0x3c,0x0f,0x39,0xdb, +0xb7,0x4a,0xa4,0xed,0xb3,0xab,0x51,0xaa,0x5e,0x5e,0xd9,0x80, +0xac,0x7a,0x74,0x65,0x0b,0x12,0xaa,0xf3,0x95,0xad,0x28,0x55, +0x7c,0x54,0xb6,0x23,0xb9,0x9f,0xd6,0x0e,0x94,0x2a,0x36,0x2a, +0x3b,0x51,0xaa,0xb8,0xa9,0xec,0x43,0xa9,0x7a,0x7f,0xe5,0x24, +0x4a,0xff,0xa1,0x75,0x1a,0xa5,0xaa,0x9b,0x95,0x3f,0x41,0xdc, +0xde,0xfb,0x12,0x94,0x6a,0x76,0xaf,0xbc,0x0c,0xa5,0x9a,0x0f, +0x2a,0xaf,0x46,0xc2,0x7e,0xe6,0x3a,0xe4,0x54,0x6b,0x2a,0x6f, +0x40,0xd1,0xde,0xfb,0x46,0x94,0x2a,0x2e,0x2b,0x7f,0x8d,0x94, +0xc5,0xcf,0x2d,0x28,0xd5,0x1d,0xa0,0xf2,0x4e,0x14,0x6d,0x6f, +0xee,0x46,0x85,0x7a,0x4f,0xe5,0x6f,0x11,0x57,0xfd,0xa9,0xbc, +0x17,0xa5,0x9a,0x3f,0x2a,0xef,0x43,0xa9,0xee,0x09,0x95,0x0f, +0xa0,0x54,0xf7,0x87,0xca,0x3f,0xa0,0x54,0x71,0x5f,0xf9,0x38, +0x12,0xea,0x85,0x95,0x4f,0xa2,0xd4,0xf6,0xf6,0x4f,0x88,0x5b, +0x4c,0x3e,0x87,0xb4,0x7d,0xcf,0x0b,0x48,0x2a,0x67,0x2b,0x5f, +0x41,0xa9,0xf2,0xa4,0xf2,0x55,0x54,0xa8,0x5e,0x55,0xbe,0x86, +0x52,0xe5,0x52,0xe5,0xbb,0x48,0xa9,0x1f,0x54,0xfe,0x0d,0x59, +0xdb,0xb3,0xf7,0x10,0xb7,0x3d,0xf8,0x0f,0x4a,0x95,0x57,0x95, +0x1f,0x21,0xa3,0x7b,0x53,0xe5,0xc7,0x28,0x55,0xee,0x55,0x7e, +0x8a,0x82,0x7d,0xff,0x67,0xc8,0x69,0xa6,0xa9,0x4a,0xc3,0x51, +0x7f,0xa9,0x72,0xe0,0xa8,0x57,0x55,0xb9,0x70,0x34,0x63,0x55, +0x85,0xc8,0xeb,0x59,0xab,0x22,0x38,0x1b,0x69,0x2d,0x83,0xa3, +0xd9,0xab,0x6a,0x25,0x0a,0x9a,0x8d,0xab,0x2a,0x50,0xd4,0xcc, +0x51,0xb5,0x1a,0x8e,0x7a,0x5e,0xd5,0x57,0xe0,0x24,0xb5,0x6e, +0x8d,0x8c,0x7a,0x7d,0xd5,0x36,0xc8,0x2a,0x37,0xab,0xbe,0x86, +0x84,0xe2,0xbe,0xea,0xeb,0x70,0x34,0xc3,0x55,0x7d,0x03,0x8e, +0xea,0x45,0xd5,0xce,0x28,0xd8,0x73,0xed,0x82,0x0a,0xed,0x5d, +0xd5,0x9e,0x70,0xec,0x9d,0xf6,0x42,0x4c,0x75,0xa4,0x6a,0x3f, +0x24,0xed,0x7b,0xf7,0x47,0x52,0x67,0x5d,0xa5,0xfa,0x58,0x75, +0x84,0x7e,0x5e,0x75,0xa0,0xea,0x38,0x38,0xea,0x65,0x55,0x67, +0x22,0xa5,0xd9,0xac,0xea,0x07,0x70,0xec,0x73,0xce,0x87,0xa3, +0xb3,0xab,0xba,0x08,0x8e,0xe6,0xc5,0xaa,0x4a,0xc4,0x14,0x4b, +0x55,0x35,0x70,0x74,0xdf,0xab,0xaa,0x43,0x51,0xbd,0xac,0xaa, +0x1e,0xce,0x26,0x5a,0x1b,0xe1,0x68,0xbe,0xac,0x6a,0x82,0xa3, +0xde,0x5f,0xd5,0x8d,0x84,0x7d,0x76,0x1f,0x0a,0xf6,0xe7,0x01, +0xc4,0x15,0x8b,0x55,0x43,0x88,0xa9,0x2f,0x57,0x4d,0x23,0xae, +0x58,0xa9,0xba,0x02,0x71,0x3b,0x93,0x1b,0x51,0xb0,0x77,0xfc, +0x25,0x1c,0x3b,0xcf,0xdb,0xe0,0x28,0x96,0xaa,0xee,0x40,0x51, +0x3d,0xb8,0xea,0x6e,0x38,0x9a,0x33,0xaa,0x7e,0x8b,0x98,0x66, +0x98,0xaa,0xdf,0xc1,0xb1,0xb8,0xf8,0x3d,0x8a,0xaa,0x23,0x55, +0x0f,0x21,0x69,0xcf,0xf8,0x28,0x32,0xca,0xb5,0xaa,0x3f,0xc0, +0xb1,0xb8,0x7a,0x12,0x45,0xdb,0xb3,0x67,0x50,0xb4,0xbd,0x7c, +0x09,0x8e,0x3d,0xe7,0x2b,0x48,0xd9,0xf7,0xbe,0x8e,0xa2,0x6a, +0x53,0xd5,0x9b,0x70,0xec,0x7c,0xff,0x82,0x84,0xed,0xcf,0x7b, +0xc8,0xa9,0xf6,0x55,0xfd,0x1d,0x8e,0xc5,0xe3,0xff,0xc1,0xb1, +0x58,0xf8,0x17,0x8a,0x9a,0x1b,0xaa,0x3e,0x82,0xa3,0x3a,0x5c, +0xf5,0x39,0x12,0xba,0x8f,0x57,0x6f,0x84,0xb8,0xee,0x7a,0xd5, +0x31,0x38,0x8a,0xdd,0xea,0x38,0x0a,0x7a,0xc7,0xea,0x04,0x8a, +0x9a,0x95,0xab,0x53,0x28,0xe8,0xfc,0xaa,0x37,0x47,0x46,0x33, +0x50,0xf5,0x6a,0x38,0x9a,0xc3,0xaa,0xb7,0x44,0x51,0x77,0xda, +0xea,0xaf,0xa0,0xa8,0xfe,0x5e,0xbd,0x35,0x8a,0x9a,0x5d,0xaa, +0xbf,0x86,0xa2,0xce,0xb4,0x7a,0x07,0x38,0xba,0xdb,0x57,0xef, +0x88,0x82,0xee,0x26,0xd5,0xdf,0x40,0x5c,0xb3,0x44,0xf5,0x4e, +0xc8,0xe9,0x2e,0x59,0xbd,0x33,0xd4,0x9a,0xbe,0x54,0xbd,0x3b, +0x1c,0xe5,0x58,0xf5,0x5e,0x70,0xec,0xfb,0xf7,0x81,0x63,0xdf, +0x7f,0x0c,0x1c,0x7b,0xc6,0x13,0xe0,0xa8,0x77,0x56,0x9f,0x88, +0x84,0x7d,0xd7,0x49,0x28,0x51,0x7d,0xae,0x3e,0x19,0x8e,0x3d, +0xef,0x29,0x48,0xdb,0x77,0x9e,0x0a,0x47,0x77,0x95,0xea,0xd3, +0x50,0xd0,0xfd,0xab,0xfa,0x0c,0x54,0x68,0x6e,0xa8,0x3e,0x13, +0x8e,0xfa,0x6e,0xf5,0x59,0x28,0xb3,0x67,0x3f,0x0f,0x8e,0x72, +0xbb,0xfa,0x7c,0x38,0xb6,0x07,0x3f,0x86,0xb3,0x4a,0xeb,0x45, +0x70,0xd4,0xbf,0xab,0xab,0x90,0xb4,0x3f,0xd7,0xc2,0x51,0xfe, +0x57,0xb7,0xc2,0x51,0x2f,0xaf,0xee,0x42,0x41,0xb1,0x54,0x3d, +0x80,0xa2,0x72,0xaf,0x7a,0x08,0xce,0xf6,0x5a,0x97,0xe0,0xd8, +0x1e,0xaf,0x47,0xd1,0x3e,0xfb,0x12,0x38,0xba,0x9b,0x55,0x5f, +0x06,0xc7,0xf6,0xfe,0x7a,0xc4,0x6d,0x6f,0xef,0x40,0x52,0xb3, +0x56,0xf5,0x43,0x70,0xec,0x4c,0x1e,0x83,0x63,0xef,0xf5,0x14, +0x1c,0xdb,0x9f,0x17,0x51,0xa2,0xf8,0xaf,0x7e,0x05,0xce,0xae, +0x5a,0x5f,0x43,0x4e,0x77,0x8d,0xea,0xd7,0xe1,0xe8,0xfe,0x5e, +0xfd,0x16,0x62,0xf6,0xb3,0x6f,0xc3,0xb1,0xf3,0x7c,0x17,0x8e, +0xe6,0x8e,0xea,0xbf,0xc3,0xd1,0xfc,0x51,0xad,0x7e,0x59,0x6d, +0xb1,0xad,0xba,0x56,0xfd,0x01,0x1c,0xcd,0x22,0xd5,0xff,0x46, +0x4e,0xb3,0x7a,0xf5,0x7f,0xe0,0xd8,0xf9,0x7f,0x04,0x47,0x73, +0x49,0xcd,0x06,0x28,0xaa,0xaf,0xd7,0x6c,0x04,0xe7,0xdb,0x5a, +0x4b,0xe0,0xe8,0x1e,0x57,0x13,0x83,0xa3,0xfa,0x58,0x93,0x85, +0xa3,0xfa,0x58,0x93,0x83,0xa3,0x39,0xa6,0x26,0x0f,0x47,0xf3, +0x4d,0xcd,0xc6,0x58,0x6d,0x9f,0xb7,0x29,0x1c,0xdd,0x1f,0x6a, +0x4a,0x51,0xa1,0xe7,0xab,0xf1,0x10,0xb7,0xef,0x0f,0x90,0x56, +0xcd,0xa9,0x89,0x90,0xd5,0xbe,0xd5,0x94,0xc3,0x39,0x58,0xeb, +0x4a,0xa4,0x15,0x7f,0x35,0x5b,0x20,0xa9,0x39,0xbe,0x66,0x35, +0x62,0xaa,0x03,0x35,0x5b,0x62,0xb5,0xfa,0x54,0xcd,0x56,0x28, +0x68,0xaf,0x6a,0xb6,0x41,0x5e,0xe7,0x58,0xb3,0x2d,0x1c,0xcd, +0x55,0x35,0x5f,0xc7,0x2a,0x7b,0x9e,0xed,0x90,0xd5,0x1e,0xd6, +0x6c,0x8f,0x82,0xea,0x4f,0xcd,0x0e,0x48,0x68,0xf6,0xab,0xd9, +0x11,0x69,0x7b,0xaf,0x5d,0x90,0x51,0x6c,0xd5,0xec,0x8a,0x15, +0xaa,0x7d,0x35,0xbb,0x23,0xa3,0x98,0xa8,0xd9,0x03,0x31,0xc5, +0x61,0xcd,0x37,0xe1,0xa8,0x5f,0xd4,0xec,0x07,0x47,0xbd,0xa5, +0xe6,0x00,0x38,0xdf,0xd3,0x7a,0x10,0x1c,0xd5,0xd5,0x9a,0x83, +0xe1,0xe8,0x0e,0x5e,0x73,0x08,0x36,0xd5,0x1d,0xa7,0xe6,0x50, +0xc4,0xd4,0x03,0x6a,0x0e,0x83,0xa3,0xfe,0x54,0xf3,0x85,0x12, +0xc5,0x74,0xcd,0x77,0x91,0xb3,0x77,0x39,0x1a,0x39,0xe5,0x6a, +0xcd,0x09,0x28,0x68,0x6e,0xab,0x39,0x11,0x8e,0xfd,0xfb,0x49, +0x70,0x34,0x5f,0xd6,0x9c,0x8c,0xcc,0xbc,0xd6,0xef,0x23,0x6d, +0xcf,0x72,0x1a,0x72,0xaa,0x23,0x35,0x67,0x20,0xa7,0x9c,0xa9, +0x39,0x0b,0x8e,0x6a,0x5d,0xcd,0xd9,0x28,0x58,0x2c,0x9d,0x83, +0x84,0x9d,0xd5,0xb9,0x70,0xd4,0x3b,0x6b,0xce,0x83,0xa3,0xba, +0x53,0x73,0x3e,0x72,0xb6,0x5e,0x00,0x47,0xf3,0x5b,0xcd,0x0f, +0xe1,0xd8,0xf3,0xfe,0x18,0x45,0xf5,0xcb,0x9a,0x8b,0x50,0x62, +0xdf,0x5b,0x85,0x94,0xfa,0x44,0x4d,0x35,0x1c,0x7b,0xc7,0x5a, +0x38,0xf6,0x4e,0x75,0xc8,0x2a,0xfe,0x6b,0xea,0xe1,0xd8,0x7b, +0xb7,0x21,0x6e,0xf1,0xdf,0x09,0x47,0xf3,0x61,0x8d,0xee,0x39, +0x35,0xea,0x57,0x8e,0xed,0xc1,0x00,0x1c,0x7b,0xef,0x41,0x38, +0xaa,0x71,0x35,0x43,0xc8,0xcd,0x68,0x1d,0x45,0x5a,0x3d,0xb7, +0x66,0x0c,0x69,0xcd,0x85,0x35,0x13,0x88,0xdb,0xf3,0xaf,0x81, +0x63,0x7b,0x36,0x0f,0x47,0x75,0xb0,0x66,0x11,0x8e,0xed,0xdf, +0xa5,0x70,0x6c,0xcf,0x7e,0x0e,0xc7,0xf6,0xf2,0x2a,0x94,0x28, +0x57,0x6b,0x6e,0x80,0xa3,0x1e,0x51,0x73,0x23,0x72,0xcd,0x5a, +0x7f,0x09,0xc7,0x62,0xec,0x57,0x70,0x6c,0x3f,0x6f,0x86,0xa3, +0x1e,0x57,0x73,0x0b,0xd2,0x96,0xd3,0xb7,0xa3,0x42,0x33,0x62, +0xcd,0x1d,0x70,0x6c,0xef,0xef,0x44,0xd2,0xfe,0xfe,0xb7,0x70, +0xec,0xdc,0xee,0x85,0x63,0xe7,0x76,0x3f,0x72,0x9a,0xc7,0x6a, +0x1e,0x44,0xca,0x9e,0xeb,0x21,0x38,0x76,0x3e,0x8f,0xc2,0xb1, +0x73,0x7b,0x12,0x8e,0xfa,0x69,0xcd,0x53,0x48,0xda,0xdf,0x3d, +0x8d,0xa4,0xe5,0xf4,0xb3,0xc8,0xda,0xcf,0x3c,0x07,0x47,0xb5, +0xba,0xe6,0x05,0x64,0x54,0xfb,0x6a,0x5e,0x82,0x63,0xe7,0xfc, +0x1a,0x0a,0xf6,0x3c,0xaf,0xc3,0xb1,0x58,0x78,0x17,0x69,0xdd, +0x4d,0x6a,0xfe,0x01,0xc7,0xe2,0xdc,0x72,0x5b,0xf7,0x03,0x47, +0xf3,0x53,0xcd,0x87,0xc8,0xe8,0x8e,0x51,0xb3,0x0c,0x47,0x33, +0x56,0xcd,0xa7,0x70,0x2c,0x5e,0xd4,0xff,0x6b,0x34,0x23,0x3b, +0x8a,0xb7,0xda,0x0d,0xe0,0x28,0x6e,0x6a,0x53,0x70,0x14,0x37, +0xb5,0x19,0x38,0xba,0xf3,0xd4,0xe6,0xe0,0xa8,0xf7,0xd4,0xae, +0x84,0xa3,0x3b,0x4f,0xad,0xfa,0x56,0xad,0x66,0x00,0x47,0xb1, +0x55,0x5b,0x01,0x47,0xf3,0x7f,0xed,0x96,0xa8,0xd0,0xbb,0xd5, +0x7e,0x19,0x8e,0xee,0x45,0xb5,0xdb,0xc1,0x51,0xfc,0xd5,0x7e, +0x03,0x8e,0xe2,0xb1,0x76,0x0f,0x38,0xaa,0x75,0xb5,0xfb,0xa2, +0x30,0xa2,0xf5,0x00,0x38,0x8a,0xc5,0x5a,0xd5,0xdf,0x5a,0xdd, +0x1f,0x1d,0xc5,0x6b,0xed,0xa1,0x88,0xab,0x6e,0xd6,0x1e,0x85, +0x82,0x66,0xdd,0xda,0x63,0x91,0x57,0x9d,0xad,0x3d,0x1e,0x8e, +0x7d,0xce,0xc9,0x70,0x34,0x93,0xd7,0x2a,0x07,0x6a,0x15,0xa7, +0x8e,0x62,0xba,0xf6,0x5c,0x38,0x53,0x5a,0x15,0x5b,0xb5,0xd6, +0x97,0x35,0x63,0xd4,0x5e,0x08,0x47,0x31,0x5d,0x7b,0x11,0x9c, +0xb5,0x5a,0x2b,0xe1,0x68,0xd6,0xac,0xad,0x85,0xa3,0x1c,0xa9, +0xad,0x87,0x33,0xab,0xb5,0x11,0x39,0xf5,0x97,0xda,0x26,0x64, +0x55,0x5b,0x6a,0x9b,0xe1,0xcc,0x69,0x6d,0x41,0x4e,0xb5,0xbb, +0xb6,0x15,0xb9,0x5f,0x68,0x6d,0x87,0xa3,0xfc,0xa9,0xed,0x44, +0xd1,0xbe,0xa7,0x0b,0x8e,0xee,0xa1,0xb5,0xdd,0xc8,0xda,0x7e, +0xf7,0x22,0x66,0x7b,0xde,0x87,0x84,0xe6,0xcb,0xda,0x7e,0x38, +0xeb,0xb4,0x0e,0xc1,0x51,0x1e,0xd6,0x8e,0xc2,0x51,0xfd,0xac, +0x1d,0x47,0x52,0xf1,0x50,0x3b,0x05,0x47,0xf7,0xa9,0xda,0x69, +0x38,0xaa,0x3f,0xb5,0xf6,0xac,0x96,0xcb,0x3f,0xd5,0xba,0x80, +0xa2,0xe2,0xad,0x76,0x1d,0x8a,0xf6,0xbb,0x4b,0x28,0xda,0x1e, +0xfc,0x02,0x45,0xdb,0x83,0x6b,0x91,0xb3,0x77,0xbd,0x1e,0x8e, +0xf2,0xbf,0xf6,0x26,0x38,0x9a,0x9d,0x6a,0x7f,0x83,0x32,0xf5, +0xc2,0x5a,0xe5,0x71,0xed,0xad,0xfa,0x7b,0xd5,0x85,0xda,0xbb, +0x90,0xb4,0x3d,0xfb,0x2d,0x9c,0xcb,0xb5,0xde,0x8b,0x9c,0x7a, +0x73,0xed,0x03,0xc8,0xdb,0xf9,0xfe,0x0e,0x25,0xca,0x87,0xda, +0x87,0x50,0xa2,0xfb,0x5e,0xed,0xa3,0x70,0x74,0x1f,0xa8,0x7d, +0x12,0x8e,0x6a,0x4d,0xed,0x33,0x70,0xae,0xd4,0xfa,0x27,0x64, +0x75,0xf6,0xb5,0x2f,0x20,0xad,0x7e,0x50,0xfb,0x22,0x36,0x53, +0xde,0xd6,0xbe,0x04,0x47,0x77,0xef,0xda,0x97,0x91,0xb7,0xcf, +0x7e,0x15,0x8e,0x66,0x9b,0xda,0xd7,0x11,0x57,0x5f,0xae,0x7d, +0x03,0x39,0xd5,0x9c,0xda,0x37,0xe1,0xd8,0x7e,0xbc,0x0d,0x47, +0xf7,0xf6,0xda,0xbf,0xc0,0xb1,0xbd,0xf9,0x3b,0xf2,0xef,0x68, +0xfd,0x00,0x79,0xfb,0xec,0x0f,0x91,0x79,0x5e,0xeb,0x47,0x48, +0xab,0x76,0xd5,0x7e,0x02,0x47,0xf5,0xb1,0xf6,0x73,0xa4,0x14, +0xaf,0x75,0x1b,0x20,0xa5,0xbf,0xaf,0x2b,0x81,0xa3,0x5a,0x59, +0x97,0x80,0xa3,0x7d,0xaf,0x4b,0xc2,0x51,0x3d,0xad,0x4b,0x21, +0xa7,0x3a,0x5e,0x97,0x41,0x5c,0x7d,0xbf,0x2e,0x8b,0x84,0xf6, +0xa1,0x2e,0x84,0xa3,0xfb,0x52,0x5d,0x39,0x1c,0x9d,0x55,0xdd, +0x4a,0xa4,0x35,0x33,0xd5,0xad,0x42,0x5e,0xb5,0xb5,0xae,0x02, +0x8e,0xce,0xb5,0x4e,0x33,0x4b,0x9d,0xea,0x80,0xa3,0xba,0x5c, +0xf7,0x15,0x38,0xbf,0xd6,0xaa,0x99,0xa2,0x4e,0xb3,0x84,0xa3, +0x1a,0x5d,0xb7,0x3b,0x32,0x0f,0x6b,0xfd,0x26,0xe2,0xf6,0xd9, +0x7b,0x23,0xa3,0x98,0xa9,0x3b,0x00,0x45,0xc5,0x43,0xdd,0x77, +0xe0,0xd8,0x77,0x9d,0x08,0x47,0xb1,0x52,0x77,0x12,0x1c,0xc5, +0x4a,0xdd,0xe9,0x48,0x6b,0x0e,0xaf,0x3b,0x03,0xe5,0xaa,0xe9, +0x75,0x67,0x22,0xab,0xd8,0xad,0x3b,0x1b,0x8e,0xe2,0xa9,0xee, +0x1c,0xe4,0x55,0xa3,0xea,0x7e,0x00,0x47,0xf7,0xc0,0xba,0x0b, +0xe0,0xdc,0xa3,0xb5,0x01,0x8e,0x62,0xae,0xae,0x15,0x8e,0x7d, +0x66,0x1b,0x1c,0xf5,0xc7,0xba,0x21,0x38,0x8a,0xc5,0xba,0x51, +0x38,0xea,0x1f,0x75,0x13,0x70,0x34,0x3b,0xd5,0x2d,0xc1,0xb1, +0xf7,0xfd,0x09,0x1c,0xc5,0x6b,0xdd,0xcf,0x51,0xae,0xde,0x57, +0x77,0x35,0x52,0xea,0xcb,0x75,0xd7,0xa0,0x60,0x9f,0x77,0x3d, +0x9c,0x47,0xb4,0xfe,0x12,0x59,0xf5,0xe3,0xba,0x5f,0xc3,0x51, +0x4c,0xd6,0xdd,0x02,0x47,0xf7,0xcf,0xba,0xdb,0xe0,0x28,0xee, +0xeb,0x6c,0xaf,0xad,0x0f,0x3e,0xae,0xf5,0x2e,0x38,0x9a,0xe3, +0xeb,0x1e,0x84,0xf3,0x47,0xad,0x8f,0xc2,0x51,0x0f,0xab,0xfb, +0x13,0x1c,0xf5,0xb0,0xba,0xe7,0xe1,0x28,0x67,0xea,0x5e,0x40, +0xde,0xf6,0xed,0x45,0x38,0xf6,0xb3,0xaf,0x21,0xaf,0x1e,0x53, +0xf7,0x3a,0x1c,0xe5,0x4e,0xdd,0x9b,0xc8,0xa8,0xf6,0xd6,0xbd, +0x8d,0x9c,0xc5,0xcb,0xbb,0x88,0xdb,0xcf,0xbe,0x87,0x8c,0xed, +0xf1,0xdf,0xe1,0xa8,0x47,0xd6,0xbd,0x8f,0xb8,0xc5,0xf3,0x3f, +0x91,0x56,0x7f,0xac,0xfb,0x14,0x8e,0x9e,0xa9,0x7e,0x43,0x24, +0x75,0xd6,0xf5,0x59,0x38,0x7a,0xbe,0xfa,0x4d,0xe0,0xe8,0xf9, +0xea,0x37,0x43,0x42,0xb1,0x52,0x5f,0x8a,0xa4,0x66,0xfb,0xfa, +0x55,0x70,0x94,0xdb,0xf5,0x45,0x14,0x75,0xae,0xf5,0xab,0x91, +0xd5,0x5c,0x5a,0xbf,0x25,0x92,0x8a,0xbf,0xfa,0x2f,0x23,0xae, +0xf8,0xa8,0xdf,0x01,0x79,0xf5,0x9e,0xfa,0x6f,0x20,0xa7,0xdc, +0xab,0xdf,0x1d,0x59,0xcd,0xa6,0xf5,0x7b,0x21,0xa1,0xf7,0xa9, +0xdf,0x1f,0x8e,0xee,0x3b,0xf5,0x87,0xa3,0xa8,0xb8,0xa9,0xff, +0x3e,0x52,0x3a,0xcb,0xfa,0xb3,0x50,0x54,0x0f,0xa8,0xbf,0x00, +0x05,0xd5,0xd2,0xfa,0x0b,0x91,0xd0,0x3e,0xd7,0xff,0x18,0x09, +0xc5,0x7a,0x7d,0x25,0x72,0xca,0xa7,0xfa,0x6a,0x38,0x3a,0x83, +0xfa,0x46,0x14,0x15,0xcf,0xf5,0xcd,0x70,0x54,0x8f,0xea,0x3b, +0x90,0x50,0x6d,0xaf,0xef,0x85,0xa3,0xfd,0xaf,0xef,0x43,0xd6, +0xf6,0x6c,0x18,0x8e,0xee,0x66,0xf5,0x23,0x88,0xa9,0xf7,0xd5, +0x8f,0xc2,0x51,0x5d,0xaa,0x9f,0x40,0xce,0xf6,0x6a,0x0a,0x25, +0x8a,0xb1,0xfa,0xb5,0x48,0xaa,0xd7,0xd6,0xcf,0xa0,0xa0,0x9a, +0x55,0x3f,0x0f,0x47,0x71,0x50,0x7f,0x29,0x1c,0xc5,0x41,0xfd, +0x65,0xc8,0xab,0xbe,0xd4,0x5f,0x81,0xb4,0xfa,0x45,0xfd,0x95, +0x70,0x14,0x1f,0xf5,0xd7,0xc1,0x51,0xad,0xac,0xff,0x15,0x1c, +0xd5,0xc9,0xfa,0x5b,0x11,0x53,0x9e,0xd4,0xdf,0x0e,0x47,0xf5, +0xbf,0xfe,0x4e,0x38,0x8a,0x9b,0xfa,0x7b,0x90,0x54,0x6c,0xd7, +0xdf,0x0f,0x47,0x77,0xc8,0xfa,0x07,0xe0,0xa8,0x96,0xd6,0x3f, +0x04,0x47,0x35,0xb7,0xfe,0x61,0x38,0x8a,0xc5,0xfa,0xc7,0x91, +0xb3,0xbd,0x7f,0x02,0x8e,0xe6,0xae,0xfa,0xa7,0xe0,0xd8,0x99, +0x3e,0x0f,0xe7,0x5f,0x5a,0xdf,0x86,0xa3,0x7a,0x5d,0xff,0x0e, +0xf2,0xca,0xcd,0xfa,0xbf,0xc1,0x51,0xec,0xd6,0xbf,0x8f,0x12, +0x7b,0xa7,0x0f,0xe1,0xe8,0xbe,0x5a,0xff,0x19,0x1c,0xdd,0x63, +0x1b,0x36,0x40,0x4a,0xb5,0xba,0x21,0x01,0x47,0x7b,0xd8,0x90, +0x47,0x5a,0xef,0xd0,0xb0,0x31,0x1c,0xcd,0x76,0x0d,0x9b,0xc0, +0x51,0xbf,0x6b,0xf0,0xe1,0xa8,0x37,0x34,0x6c,0x09,0x47,0xf7, +0xf1,0x86,0xad,0xe1,0xa8,0x6f,0x35,0x6c,0x03,0x47,0xdf,0xd7, +0xb0,0x2d,0x1c,0xe5,0x52,0xc3,0x76,0x28,0x6a,0xe6,0x68,0xd8, +0x1d,0x49,0xbd,0x67,0xc3,0x37,0x51,0xd0,0x0c,0xdc,0xb0,0x27, +0x92,0xea,0x37,0x0d,0x7b,0xc3,0xb1,0x3f,0xef,0x83,0x32,0xbd, +0x4f,0xc3,0x77,0x50,0xa6,0xbd,0x6a,0x38,0x10,0x71,0xfb,0xf7, +0x83,0x90,0xb4,0xcf,0x39,0x12,0x05,0xf5,0x92,0x86,0xef,0xc1, +0x55,0xaf,0x6a,0x38,0x06,0xae,0x7a,0x50,0xc3,0xb1,0x48,0xeb, +0x9c,0x1a,0x8e,0x83,0xfb,0x25,0xad,0x27,0xc2,0x55,0xce,0x37, +0x7c,0x1f,0x29,0xfb,0xbd,0x53,0x90,0x8e,0x6b,0x3d,0x15,0xae, +0xed,0xe5,0x69,0x70,0x34,0xef,0x36,0x9c,0x81,0xac,0x72,0xb0, +0xe1,0x6c,0xa4,0x14,0x4f,0x0d,0x3f,0x40,0x4e,0x3d,0xba,0xe1, +0x87,0x48,0xda,0x7b,0xd4,0x21,0xab,0x1c,0x6b,0x68,0x84,0xab, +0x7e,0xd7,0xd0,0x06,0xd7,0xbe,0xab,0x1d,0xae,0x66,0x98,0x86, +0x0e,0xc4,0x15,0x37,0x0d,0xdd,0x28,0x28,0xbf,0x1a,0x7a,0x90, +0x56,0x4f,0x6c,0x18,0x84,0x6b,0x67,0x3b,0x82,0x98,0x6a,0x48, +0xc3,0x28,0xb2,0x9b,0x6a,0x1d,0x43,0x4e,0xb1,0xda,0xb0,0x06, +0x45,0xe5,0x6a,0xc3,0x02,0x8a,0x9a,0xed,0x1a,0x16,0xe1,0xaa, +0x97,0x37,0xfc,0x02,0x71,0xfb,0xd9,0xcb,0xe0,0xaa,0xaf,0x37, +0x5c,0x09,0x57,0x7d,0xbd,0xe1,0x5a,0xb8,0xaa,0x8f,0x0d,0xd7, +0xa3,0x5c,0x77,0xb7,0x86,0x1b,0x50,0xae,0x7a,0xd4,0xf0,0x4b, +0xb8,0x9a,0xf5,0x1b,0xd4,0x43,0x1a,0x94,0x5f,0xae,0xc5,0xdd, +0x1d,0x88,0x2b,0x07,0x1a,0xee,0x44,0xcc,0xce,0xed,0x2e,0x64, +0xed,0x59,0xee,0x46,0x4a,0x35,0xb1,0xe1,0x1e,0x24,0x55,0xb7, +0x1b,0x7e,0x0f,0x77,0x85,0xd6,0x87,0x91,0xda,0x51,0xeb,0x13, +0x88,0x69,0x36,0x6e,0x78,0x12,0x39,0x3b,0x8b,0xa7,0xe1,0x5a, +0x8c,0x3f,0x8b,0x9c,0xed,0xf7,0xcb,0x48,0xab,0x57,0x35,0xbc, +0x0a,0x57,0x35,0xbd,0xe1,0x75,0xb8,0xaa,0xe9,0x0d,0x6f,0xa0, +0xdc,0xe2,0xe2,0x2d,0xa4,0x6d,0x9f,0xdf,0x86,0x6b,0xb9,0xf2, +0x2e,0x32,0xaa,0x81,0x0d,0x7f,0x83,0x6b,0x7b,0xfe,0x0f,0xa4, +0xd4,0x47,0x1b,0x3e,0x41,0x89,0x7a,0xb3,0x8e,0xfc,0x7f,0xe2, +0x9a,0xe7,0x1b,0x93,0x70,0x1d,0xad,0x19,0x64,0xf5,0x0c,0x8d, +0x39,0xb8,0x0a,0xd0,0xc6,0x3c,0xd2,0xaa,0xdd,0x8d,0x9b,0x21, +0xaf,0xbd,0x6c,0x74,0x51,0xae,0x39,0xa3,0xd1,0x13,0xe5,0xa9, +0x6b,0x6b,0x80,0x8c,0x6a,0x68,0x63,0x84,0x82,0xce,0xbe,0x71, +0x25,0x5c,0xd5,0xc6,0xc6,0x55,0x70,0xed,0x67,0xbf,0x86,0x94, +0xfd,0xfd,0xf6,0x70,0xcb,0xb4,0xee,0x80,0x12,0xd5,0x8d,0xc6, +0x5d,0xe0,0xda,0xef,0xed,0x01,0x57,0xb9,0xd6,0xf8,0x4d,0xc4, +0x8e,0xd6,0xfa,0x2d,0x24,0x34,0xab,0x35,0xee,0x09,0xd7,0xbe, +0x73,0x2f,0x24,0xb4,0xef,0x8d,0x7b,0x23,0xa9,0xdc,0x6c,0xdc, +0x17,0xf9,0x9d,0xb5,0x7e,0x1b,0xae,0xfa,0x65,0xe3,0x01,0xc8, +0xab,0x6e,0x34,0x1e,0x04,0x77,0x0b,0xad,0x87,0x21,0xad,0x3b, +0x66,0xe3,0xe1,0x28,0x51,0x3c,0x37,0x1e,0x81,0x98,0xea,0x4b, +0xe3,0x91,0x28,0xd1,0xfd,0xaa,0xf1,0x38,0xb8,0xba,0x4f,0x36, +0x6a,0x76,0x6b,0x54,0x9e,0xba,0xf6,0x6c,0x67,0x22,0xa5,0xb3, +0x6f,0x3c,0x0f,0xae,0xea,0x5a,0xe3,0x05,0x88,0x69,0x36,0x6a, +0xbc,0x08,0xae,0xee,0x53,0x8d,0xd5,0x48,0xd8,0xb3,0xd7,0x22, +0xae,0xfc,0x6c,0x6c,0x80,0xab,0x19,0xb4,0xb1,0x11,0x71,0xd5, +0xf9,0xc6,0x16,0xb8,0xaa,0x8f,0x8d,0x6d,0x58,0xa9,0xde,0xdf, +0xd8,0x81,0xac,0x66,0xb2,0xc6,0x2e,0xa4,0x95,0xcf,0x8d,0x5f, +0x48,0xaa,0x76,0x34,0xf6,0xc3,0x55,0x3d,0x6d,0x9c,0x44,0xc6, +0x62,0x66,0x0a,0x69,0xfb,0xfc,0xb5,0x70,0x35,0x9f,0x34,0x4e, +0xc3,0xfd,0xba,0xd6,0x19,0xb8,0xaa,0xbf,0x8d,0xb3,0x70,0xed, +0x6c,0xd7,0x23,0xae,0x9a,0xdf,0x78,0x05,0x5c,0xd5,0xe5,0xc6, +0x2b,0x11,0x57,0xad,0x6e,0xbc,0x16,0x71,0x7b,0xc6,0xeb,0x50, +0xb0,0xb3,0xbd,0x1e,0xae,0xc5,0xc2,0xaf,0xe1,0x2a,0xd7,0x1a, +0x6f,0x45,0x89,0xea,0x52,0xe3,0x5d,0x70,0xed,0x1c,0xef,0x45, +0x4c,0x75,0xbe,0xf1,0x3e,0xb8,0x3b,0x69,0xbd,0x1f,0xae,0x66, +0x9a,0xc6,0x07,0xe1,0x6a,0x5e,0x6f,0xfc,0x1d,0x56,0x5b,0x3c, +0x3c,0x04,0x77,0x37,0xad,0x0f,0xa3,0x70,0xb1,0xd6,0x47,0xe1, +0xda,0xf9,0x3e,0x06,0xd7,0x62,0xf0,0x09,0x14,0x75,0x7f,0x6f, +0x7c,0x12,0x1b,0xdb,0xf7,0xfc,0x11,0xae,0xc5,0xe3,0xd3,0x70, +0xed,0x5d,0x34,0xff,0x35,0xaa,0xb7,0xba,0x16,0x9b,0x2f,0xa2, +0x60,0x67,0xf5,0x67,0xb8,0x76,0xbe,0x2f,0x23,0xb2,0xbc,0x7c, +0x05,0x29,0xd5,0xd8,0x46,0xd5,0x86,0x46,0xcd,0x41,0xae,0xfa, +0x4e,0xe3,0xeb,0x48,0x59,0x4c,0xbd,0x89,0xac,0xee,0xbd,0x8d, +0x6f,0xc1,0xb5,0x58,0x7e,0x1b,0x45,0xd5,0xe5,0xc6,0xbf,0x20, +0x63,0x79,0xfa,0x57,0x14,0x35,0x0f,0x35,0xbe,0x07,0x77,0x3f, +0xad,0xef,0x23,0x63,0x71,0xf4,0x0f,0xb8,0x9a,0xed,0x1a,0xff, +0x8d,0xb8,0xea,0x61,0xe3,0x47,0x58,0x61,0x31,0xf8,0x31,0x32, +0xaa,0xdd,0x8d,0xcb,0x48,0xda,0xb3,0xff,0x17,0x71,0xed,0x67, +0xd3,0x86,0x70,0x95,0x4b,0x4d,0x25,0x70,0x55,0x63,0x9b,0xe2, +0x70,0x95,0x57,0x4d,0x49,0x54,0x68,0xf6,0x68,0x4a,0xc3,0x55, +0x7f,0x6d,0xca,0xc0,0x55,0x1f,0x6c,0x2a,0xc0,0x55,0xff,0x6a, +0xda,0x18,0x29,0xdd,0xd7,0x9a,0x54,0x6b,0x9a,0xac,0xe6,0x1c, +0xa2,0x35,0x44,0x56,0x71,0xde,0x54,0x0e,0x57,0xb9,0xda,0xb4, +0x0a,0x31,0xcd,0x52,0x4d,0xab,0x91,0xb6,0xbf,0xdb,0x12,0x39, +0xcd,0xff,0x4d,0x5b,0xc1,0x55,0x0e,0x37,0x6d,0x8b,0x8c,0x3d, +0xc3,0x8e,0x70,0x55,0xcf,0x9b,0x76,0x82,0xab,0x9c,0x6f,0xda, +0x19,0xae,0xf2,0xbc,0x69,0x37,0x24,0x95,0xb7,0x4d,0xfb,0xc3, +0x55,0xce,0x37,0x1d,0x80,0x9c,0x72,0xa7,0xe9,0x40,0xe4,0x14, +0x3f,0x4d,0x07,0x21,0x5b,0xa5,0xf5,0x10,0xc4,0x15,0x37,0x4d, +0x87,0xc2,0xd5,0x7c,0xd0,0x74,0x18,0x5c,0xd5,0xb4,0xa6,0x23, +0x90,0xb3,0xdf,0x3b,0x12,0xae,0xe6,0xf0,0xa6,0x2f,0x64,0x74, +0xef,0x6b,0x3a,0x0a,0x59,0xd5,0xa5,0xa6,0xa3,0x91,0x55,0xbd, +0x68,0x3a,0x16,0x49,0x9d,0x7b,0xd3,0xf7,0xe1,0xaa,0xd6,0x34, +0x9d,0x0d,0x57,0xbd,0xb2,0xe9,0x5c,0xb8,0x9a,0xbd,0x9b,0x2e, +0x84,0xab,0x99,0xa3,0xe9,0x47,0x70,0x35,0x73,0x34,0xa9,0x0e, +0x35,0x29,0x0f,0x5c,0xcd,0xc0,0x4d,0xd5,0x70,0x35,0xaf,0x34, +0xd5,0xa0,0x42,0x35,0xb0,0xa9,0x11,0xae,0x3d,0x4b,0x2f,0xf2, +0xaa,0xbd,0x4d,0x7d,0x88,0xd9,0x39,0x0e,0xc1,0xb5,0xe7,0x19, +0x81,0xab,0x3a,0xd8,0x34,0x06,0x57,0xf3,0x4a,0xd3,0x24,0x5c, +0x7b,0xae,0x35,0xc8,0xa9,0xbe,0x35,0xad,0x45,0x5e,0xbd,0xbc, +0x69,0x06,0x49,0xe5,0x5d,0xd3,0x2c,0x5c,0xe5,0x42,0xd3,0x1c, +0xdc,0xf3,0xb5,0xce,0xc3,0xb5,0x77,0x5d,0x07,0x57,0xf7,0x90, +0xa6,0x45,0xb8,0x9a,0x9f,0x9a,0x96,0x50,0xb4,0x67,0x59,0x0f, +0x57,0x35,0xba,0xe9,0xa7,0x88,0x6b,0x2e,0x6a,0xba,0x12,0x99, +0x26,0xad,0xd7,0x60,0xa5,0xc5,0xce,0x0d,0xc8,0x59,0x2c,0xdc, +0x04,0x57,0x77,0x98,0xa6,0x9b,0x51,0x6e,0xfb,0x76,0x37,0xd2, +0x9a,0x93,0x9a,0xee,0x81,0x6b,0x7b,0x7c,0x1f,0x72,0xf6,0xee, +0x0f,0xc0,0xb5,0x3d,0x7e,0x10,0x2b,0x55,0x7b,0x9b,0x7e,0x8f, +0x8c,0xbd,0xd3,0xc3,0x70,0x2d,0xc6,0x1e,0x81,0xab,0x79,0xae, +0xe9,0x31,0xb8,0x76,0x56,0x7f,0xc6,0x4a,0xd5,0x9c,0xa6,0x57, +0x90,0x54,0x0e,0x37,0xbd,0x81,0xac,0xbd,0xeb,0x9b,0x70,0x95, +0xbf,0x4d,0x6f,0xc1,0xb5,0x33,0x7c,0x17,0xae,0x66,0xc2,0xa6, +0xf7,0x50,0x50,0x6d,0x6a,0xfa,0x27,0x5c,0x7b,0xf7,0x7f,0xc3, +0x55,0x2f,0x69,0xfa,0x0f,0x5c,0xdd,0xc1,0xf4,0x7f,0xff,0xe3, +0xd6,0x6b,0x4d,0xc0,0x55,0x4f,0x6a,0xce,0xc1,0xd5,0x7d,0xaa, +0x79,0x63,0xb8,0x8a,0xf9,0xe6,0x4d,0xb0,0x42,0xf5,0xa8,0x79, +0x53,0xb8,0x8a,0x9b,0xe6,0xcd,0xe0,0x2a,0xb6,0x9a,0x5d,0xb8, +0xaa,0x8d,0xcd,0xe5,0x28,0x57,0xbd,0x6d,0x5e,0x09,0x57,0x7d, +0xab,0xb9,0x88,0xb8,0xea,0x48,0xf3,0x16,0x70,0xd5,0x13,0x9b, +0xbf,0x0c,0x57,0x7d,0xa4,0x79,0x6b,0xb8,0xea,0xe3,0xcd,0xdb, +0xc0,0xd5,0x59,0x34,0xef,0x02,0x57,0x3d,0xaf,0x79,0x57,0xe4, +0x54,0x27,0x9b,0xbf,0x05,0x57,0xb1,0xdb,0xbc,0x27,0x2a,0xb4, +0x87,0xcd,0x7b,0x21,0x6f,0xff,0xbe,0x37,0x5c,0xc5,0x71,0xf3, +0xb7,0xe1,0xaa,0x5f,0x36,0x1f,0x0a,0x57,0xb1,0xde,0x7c,0x18, +0xd2,0xda,0xe7,0xe6,0x23,0xe0,0xda,0xe7,0x1f,0x09,0x57,0xb5, +0xb7,0xf9,0x68,0xb8,0x8a,0xe1,0xe6,0x63,0xe1,0xaa,0x86,0x37, +0x1f,0x0f,0x57,0x31,0xd9,0x7c,0x2a,0x5c,0xcd,0xd0,0xcd,0xa7, +0xc1,0xd5,0xec,0xde,0x7c,0x16,0x5c,0xe5,0x4c,0xf3,0xd9,0x70, +0x75,0x77,0x6d,0xbe,0x10,0xae,0xf2,0xa7,0xb9,0x0a,0x79,0xcd, +0x75,0xcd,0x35,0x70,0xd5,0xbf,0x9b,0x5b,0xb1,0x5a,0x33,0x73, +0x73,0x07,0xe2,0x8a,0xbf,0xe6,0x4e,0x54,0xe8,0x5c,0x9b,0xbb, +0xe0,0x2a,0xf7,0x9a,0x07,0x90,0x57,0xed,0x6e,0x1e,0x42,0x5a, +0x3d,0xbd,0x79,0x04,0x79,0xd5,0xd5,0xe6,0x71,0xb8,0xca,0xcf, +0xe6,0x49,0x14,0x14,0x33,0xcd,0x6b,0x91,0xb3,0x73,0x98,0x41, +0x5a,0xbd,0xb6,0x79,0x16,0x59,0x8b,0x81,0x05,0xa4,0x54,0x33, +0x9b,0xd7,0xa3,0xc4,0xce,0xe5,0xa7,0x70,0x95,0xc3,0xcd,0x97, +0xc0,0xb5,0xdf,0xfb,0x19,0x5c,0xcd,0x1c,0xcd,0x3f,0x47,0x4c, +0x71,0xdf,0x7c,0x19,0x52,0x9a,0x4b,0x9b,0x2f,0x87,0x6b,0x9f, +0x7d,0x15,0x5c,0xe5,0x51,0xf3,0x35,0x70,0xed,0x59,0xae,0x85, +0x6b,0xdf,0x79,0x03,0x5c,0xe5,0x48,0xf3,0x8d,0x70,0x55,0x23, +0x9a,0x7f,0x09,0x57,0xb5,0xa3,0xf9,0x16,0xb8,0xaa,0xe7,0xcd, +0x77,0xc0,0xb5,0x67,0xbc,0x13,0x69,0xd5,0xcc,0xe6,0xbb,0xe1, +0xda,0xf3,0xfe,0x16,0xae,0x3d,0xef,0xfd,0x70,0x2f,0xd5,0xfa, +0x10,0x12,0x16,0x63,0x7f,0x40,0x5a,0x73,0x4c,0xf3,0x93,0x70, +0x75,0xe7,0x69,0x7e,0x06,0x59,0x8b,0x9f,0x67,0xe1,0xda,0xbb, +0xbe,0x08,0xd7,0xde,0xf5,0x25,0xe4,0x55,0xa3,0x9a,0x5f,0x46, +0x5a,0x3d,0xb4,0xf9,0x15,0x24,0x34,0x6b,0x34,0xbf,0x06,0xd7, +0xf6,0xe3,0x6d,0x14,0xec,0xac,0xde,0x87,0xab,0xba,0xd6,0xfc, +0x01,0x5c,0xdb,0xa7,0x0f,0xe1,0x5e,0xad,0xf5,0xdf,0x70,0x6d, +0xcf,0x3e,0x42,0xd2,0xf6,0x63,0x19,0xae,0xed,0xdf,0x27,0x48, +0xa8,0xa7,0x36,0x7f,0x8e,0xb8,0xce,0x4e,0x69,0xfb,0x3f,0x71, +0xcd,0x15,0x2d,0x1b,0xc2,0xd5,0x0c,0xd7,0x52,0x82,0xbc,0xe6, +0x83,0x96,0x18,0x12,0x9a,0x87,0x5a,0xe2,0x70,0x35,0xf3,0xb5, +0xa4,0xe1,0xea,0xbb,0x5a,0x32,0xc8,0xeb,0xf9,0x5a,0x72,0xc8, +0xda,0x9f,0x57,0x20,0xa7,0x3d,0x69,0xd9,0x0c,0x29,0xd5,0xc3, +0x96,0x52,0xb8,0x3a,0xbf,0x16,0x17,0x49,0xfb,0x2e,0x0f,0x89, +0x17,0xb4,0xfa,0x48,0xaa,0x5e,0xb7,0x04,0x88,0x2b,0xd6,0x5b, +0x42,0xe4,0xed,0x59,0x22,0xb8,0x8a,0x89,0x96,0x55,0x48,0xab, +0x16,0xb7,0x14,0x91,0x57,0xad,0x6e,0xd9,0x1c,0x49,0xf5,0xa9, +0x96,0x6d,0x90,0xd4,0x5d,0xaf,0x65,0x5b,0x64,0x34,0x1b,0xb5, +0x7c,0x0d,0xae,0x66,0xd6,0x96,0xaf,0xa3,0xa0,0xb3,0x6b,0xd9, +0x0e,0x49,0xf5,0xf4,0x96,0x1d,0xe0,0x6a,0xc6,0x6b,0xd9,0x11, +0x69,0xcd,0x43,0x2d,0x3b,0xc1,0x55,0xcc,0xb5,0xec,0x86,0x94, +0xe2,0xa4,0x65,0x77,0x24,0xed,0xb9,0xf6,0x82,0xab,0x7e,0xd3, +0xb2,0x2f,0x52,0x9a,0x6f,0x5b,0xbe,0x8d,0x84,0xea,0x79,0xcb, +0x7e,0x48,0x2b,0xe6,0x5a,0xf6,0x87,0x6b,0xef,0x7e,0x00,0x5c, +0xfb,0xcc,0x03,0x51,0x54,0x3d,0x69,0x39,0x04,0xae,0xbd,0xcb, +0xa1,0x48,0xa8,0xdf,0xb5,0x1c,0x0e,0x57,0x71,0xdf,0x72,0x04, +0x5c,0xf5,0xb3,0x96,0x23,0x91,0xd0,0x5c,0xda,0x72,0x2c,0x5c, +0xd5,0x84,0x96,0x93,0xe0,0x2a,0xee,0x5b,0x4e,0x46,0xc5,0x3b, +0x5a,0x4f,0x41,0x42,0x71,0xdc,0x72,0x3a,0x0a,0xca,0xfd,0x96, +0x33,0x50,0xa2,0x1a,0xde,0x72,0x26,0x5c,0xe5,0x4f,0xcb,0x39, +0x88,0xab,0x6e,0xb7,0xfc,0x00,0xae,0x66,0xfd,0x96,0x1f,0xc1, +0x55,0xbe,0xb5,0x5c,0x8c,0xac,0x6a,0x63,0x4b,0x25,0x5c,0xe5, +0x64,0x4b,0x15,0xdc,0xdb,0xb4,0xd6,0x20,0xa6,0xbc,0x6b,0xa9, +0x45,0x5a,0x75,0xbb,0xa5,0x01,0x09,0x7b,0xc6,0x16,0xb8,0xea, +0xc1,0x2d,0x03,0x70,0xd5,0xa7,0x5b,0xc6,0xe0,0xaa,0x4e,0xb6, +0x4c,0xc1,0xd5,0x1d,0xa3,0x65,0x0e,0x09,0xf5,0x9b,0x96,0x79, +0x64,0xd4,0xcf,0x5a,0x16,0xe0,0xaa,0xd6,0xb5,0xac,0x43,0x5a, +0x7d,0xa4,0x65,0x3d,0x5c,0xdd,0x07,0x5a,0x7e,0x82,0xa2,0x6a, +0x65,0xcb,0x25,0x70,0x75,0x97,0x68,0xb9,0x14,0xae,0xfa,0x7d, +0xcb,0x55,0x70,0xd5,0xe3,0x5b,0xae,0x46,0xca,0xce,0xe2,0x1a, +0x94,0xa8,0xfe,0xb4,0x5c,0x0b,0xd7,0xce,0xf7,0x3a,0xb8,0xaa, +0x23,0x2d,0xd7,0xc3,0x55,0x1d,0x69,0xb9,0x01,0x09,0xd5,0xc9, +0x96,0x1b,0x91,0x57,0x5d,0x68,0xb9,0x09,0x19,0xcb,0xa9,0x5f, +0xc1,0xd5,0x6c,0xd1,0xf2,0x1b,0x14,0xd5,0x53,0x5a,0x6e,0x86, +0xab,0xfb,0x54,0xcb,0xad,0x70,0x2d,0x17,0x6e,0x43,0x46,0xcd, +0xbf,0xe5,0x0e,0xb8,0xaa,0x65,0x2d,0x77,0xa2,0x44,0x7d,0xa5, +0xe5,0x2e,0xe4,0xed,0x19,0x1e,0x84,0xab,0x7b,0x54,0xcb,0x43, +0x88,0xeb,0x8e,0xd4,0xf2,0x30,0x72,0x76,0xee,0x8f,0x21,0xad, +0xda,0xd4,0xf2,0x04,0x0a,0xaa,0xf9,0x2d,0x4f,0x22,0x65,0x67, +0xf5,0x34,0xdc,0xcf,0xb4,0x3e,0x83,0xa2,0x9d,0xc9,0xb3,0x70, +0xff,0xa4,0xf5,0x79,0xa4,0x6d,0x5f,0x5f,0x84,0x6b,0xdf,0xf5, +0x67,0xb8,0xf6,0xb3,0x2f,0xc1,0xb5,0x9f,0x7d,0x05,0x59,0xab, +0x1f,0xaf,0xc2,0xb5,0x9f,0x7d,0x1d,0x15,0xaa,0x99,0x2d,0x6f, +0xc0,0x55,0x5d,0x6d,0x79,0x07,0x79,0xdd,0xe5,0x5b,0xde,0x45, +0x5c,0x73,0x4f,0xcb,0xdf,0x90,0xb7,0x67,0x78,0x1f,0x25,0xf6, +0x0c,0x1f,0xc0,0xb5,0x67,0xf9,0x10,0x05,0xcb,0x8b,0x4f,0xe0, +0xaa,0x2e,0xb5,0x6e,0x80,0x98,0xe6,0xa4,0xd6,0x12,0x64,0x15, +0x7b,0xad,0x31,0xb8,0x7a,0xd6,0xd6,0x14,0x5c,0xcd,0x70,0xad, +0x69,0xb8,0xaa,0xfb,0xad,0x19,0xb8,0x9a,0xe7,0x5a,0x37,0x81, +0xab,0xf3,0x6d,0x0d,0x91,0xdb,0x5e,0x6b,0x39,0x92,0xaa,0xe9, +0xad,0x2b,0xe1,0xea,0x7d,0x5a,0x8b,0x70,0xf5,0xce,0xad,0x9b, +0xc3,0x55,0x9f,0x68,0xdd,0x02,0xae,0xf6,0xa5,0x75,0x4b,0xa4, +0x94,0xff,0xad,0xdb,0x20,0xaf,0x7b,0x5c,0xeb,0xd7,0x90,0x52, +0xce,0xb7,0x6e,0x0f,0x57,0xfb,0xd5,0xba,0x03,0x5c,0xbd,0x7f, +0xeb,0x4e,0x70,0x75,0xe7,0x6c,0xdd,0x05,0xae,0xfa,0x54,0xeb, +0x6e,0x70,0xb5,0x5f,0xad,0xbb,0xc3,0x55,0x8e,0xb4,0xee,0x01, +0x57,0xb3,0x41,0xeb,0xb7,0xe0,0xea,0x8e,0xdf,0xba,0x27,0xd2, +0xca,0xf1,0xd6,0x7d,0x90,0xd3,0x6c,0xd4,0xfa,0x6d,0xb8,0x9a, +0x59,0x5b,0x0f,0x80,0xab,0xb3,0x69,0x3d,0x18,0x69,0xe5,0x52, +0xeb,0x21,0x48,0xe8,0x8e,0xd7,0x7a,0x18,0x52,0xf6,0x5c,0x47, +0xa1,0xa8,0x39,0xa7,0xf5,0x68,0xa4,0xec,0x39,0x8f,0x41,0x5a, +0x71,0xdf,0x7a,0x2c,0x5c,0xcd,0xc1,0xad,0xba,0x2f,0xb5,0xda, +0x7f,0xa7,0xfd,0x97,0xd6,0xef,0xc3,0xd5,0xb9,0xb6,0x9e,0x02, +0x57,0xe7,0xda,0x7a,0x3a,0xca,0xed,0x1c,0xcf,0x81,0xab,0xf8, +0x68,0x3d,0x17,0xae,0xee,0x4a,0xad,0xe7,0xc1,0x55,0x8f,0x68, +0x3d,0x1f,0xae,0xfa,0x6b,0xeb,0x05,0x28,0xd3,0x0c,0xd6,0xfa, +0x43,0xe4,0xd5,0xbb,0x5b,0x2f,0x42,0xc2,0x62,0xa4,0x01,0xae, +0xfd,0x4c,0x13,0x5c,0xc5,0x50,0x6b,0x33,0x5c,0xf5,0xe6,0xd6, +0x16,0xb8,0xea,0xc7,0xad,0x6d,0x50,0xfb,0xfb,0x52,0x6b,0x27, +0x92,0x9a,0x45,0x5b,0xbb,0xe0,0x7e,0xaa,0x55,0x75,0xb0,0x55, +0xb5,0xce,0xb3,0xcf,0x1f,0xc4,0x2a,0xf5,0xa9,0xd6,0x61,0x78, +0x1b,0x69,0x1d,0x85,0x67,0x31,0x38,0x86,0xac,0xed,0xe1,0x38, +0x3c,0x8b,0xd3,0x49,0x78,0x16,0xbf,0xca,0xc9,0x56,0xed,0xab, +0xa7,0x7e,0xda,0x3a,0x0d,0x4f,0x7d,0xad,0x55,0x75,0xb1,0x55, +0xf5,0xd0,0x53,0xec,0xb6,0xed,0x8c,0xb8,0xfe,0xbe,0x6d,0x57, +0x78,0x9a,0x4b,0xdb,0x76,0x87,0xa7,0x7e,0xdf,0xb6,0x3f,0xbc, +0xbc,0xd6,0xef,0xa0,0xa8,0x99,0xb2,0x4d,0x7d,0xa9,0x4d,0xf1, +0xe8,0x15,0xb4,0xaa,0xff,0xb4,0xe9,0x2e,0xec,0x29,0xee,0xdb, +0x8e,0x86,0xa7,0x5c,0x6e,0x3b,0x06,0x9e,0xe6,0x83,0xb6,0xe3, +0xe1,0x69,0x1e,0x6e,0x53,0xdc,0xb4,0x69,0x96,0xf6,0x34,0x1f, +0xb4,0x9d,0x0b,0x4f,0x79,0xd2,0xa6,0xde,0xd2,0xa6,0x73,0xf1, +0x34,0x1f,0xb4,0x9d,0x8f,0xa4,0x3e,0xb7,0xed,0x02,0x24,0x74, +0x0f,0x6d,0xfb,0x11,0x32,0x7a,0xb7,0xb6,0x8b,0x90,0xb3,0xe7, +0xaa,0x44,0x4a,0x77,0x99,0xb6,0x1a,0xe4,0xb4,0x6f,0x6d,0x75, +0xc8,0xa9,0x1e,0xb6,0xd5,0xc3,0xd3,0x6c,0xd1,0xd6,0x80,0x4d, +0x6d,0x0f,0x3a,0xe1,0x95,0x69,0xed,0x82,0xa7,0xfc,0x6c,0xeb, +0x41,0x41,0xbd,0xb6,0xad,0x17,0x9e,0x72,0xb8,0xad,0x0f,0x9e, +0xf2,0xb6,0xad,0x1f,0x9e,0xe6,0x81,0xb6,0x41,0x14,0x94,0x33, +0x6d,0xc3,0xf0,0x94,0xcf,0x6d,0xa3,0xc8,0xe9,0x6c,0xda,0xd6, +0xc0,0x53,0x6e,0xb7,0xcd,0xc3,0x53,0x6e,0xb7,0x2d,0xc2,0xd3, +0x2c,0xd7,0xb6,0x04,0x4f,0xf5,0xad,0xed,0xa7,0x28,0xea,0xfc, +0xda,0x2e,0x85,0xa7,0x7e,0xd7,0xf6,0x33,0x24,0xec,0xec,0x2e, +0x47,0xda,0xfe,0xee,0x0a,0xc4,0xd5,0xfb,0xdb,0xae,0x85,0xa7, +0x7a,0xd1,0x76,0x1d,0x3c,0xe5,0x60,0xdb,0x8d,0xf0,0x6c,0x3f, +0x7f,0x0d,0x4f,0x33,0x53,0xdb,0xcd,0xf0,0xbe,0xaa,0xf5,0x16, +0x78,0xba,0x3b,0xb4,0xdd,0x81,0x12,0xf5,0x89,0xb6,0x7b,0x10, +0xb3,0x67,0x50,0x0d,0x6d,0x53,0x4f,0xf6,0x34,0x57,0xb5,0x3d, +0x04,0x4f,0x35,0xa8,0xed,0x11,0x14,0x2c,0x46,0x9e,0x44,0xca, +0xf6,0xf9,0x29,0x78,0x9a,0xb1,0xda,0x9e,0x86,0xa7,0x3a,0xd5, +0xf6,0x0a,0xd2,0xf6,0x39,0xaf,0xc2,0xd3,0x1c,0xd5,0xf6,0x16, +0x3c,0xc5,0x79,0xdb,0xbb,0xf0,0xec,0x73,0xfe,0x8a,0x32,0xfb, +0xbb,0x7f,0xa0,0x4c,0x35,0xa7,0xed,0x9f,0xf0,0x54,0xe3,0xda, +0x3e,0x86,0x67,0x71,0xfd,0x09,0xf2,0xba,0x3b,0xb5,0x7d,0x8a, +0x82,0x6a,0x90,0x5a,0xde,0xff,0x14,0x54,0xd7,0xda,0x37,0x40, +0x41,0x7d,0xa7,0x7d,0x23,0x24,0x54,0xdb,0xdb,0x4b,0xe0,0xa9, +0x26,0xb6,0xc7,0x90,0xb2,0xdf,0x8b,0xc3,0x53,0x9e,0xb4,0x67, +0xe0,0x7d,0x53,0x6b,0x16,0x49,0xbd,0x5b,0xfb,0x0a,0x64,0xb4, +0x27,0xed,0x9b,0xc0,0x53,0x6c,0xb4,0x97,0x22,0xa1,0x9e,0xd2, +0xee,0x22,0xaf,0xba,0xdd,0xae,0x22,0xd1,0xae,0xd8,0xf7,0xec, +0x79,0x22,0x78,0xba,0xeb,0xb6,0x17,0xe1,0xa9,0xe6,0xb6,0x6f, +0x05,0x4f,0xb3,0x66,0xfb,0x8e,0x48,0xaa,0x07,0xb7,0xef,0x8c, +0xbc,0xde,0xb9,0x7d,0x0f,0x78,0x9a,0x3b,0xdb,0xbf,0x85,0x8c, +0xea,0x51,0xfb,0x5e,0xf0,0x54,0xaf,0xdb,0x0f,0x80,0x67,0xeb, +0xc1,0xf0,0x94,0xe7,0xed,0x47,0xc1,0x53,0x4e,0xb5,0x1f,0x8b, +0xb4,0xf2,0xb5,0xfd,0x78,0x78,0x9a,0x53,0xdb,0x4f,0x84,0xa7, +0xf9,0xb9,0xfd,0x14,0xe4,0xb5,0x29,0xed,0xa7,0xc2,0xb3,0xcf, +0x3b,0x1d,0x69,0xd5,0xdb,0xf6,0x33,0xe0,0xa9,0x07,0xb4,0xff, +0x00,0x9e,0x62,0xa3,0xfd,0xc7,0x28,0x28,0x86,0xda,0x2f,0x82, +0xa7,0x5c,0x6b,0xaf,0x84,0xa7,0xfa,0xd2,0x5e,0x05,0xcf,0xce, +0xab,0x1a,0x19,0xc5,0x56,0x7b,0x2d,0x3c,0xd5,0x9e,0xf6,0x3a, +0xa4,0xd4,0xcb,0xda,0x1b,0xe0,0xa9,0x6e,0xb4,0xb7,0xc0,0xb3, +0x77,0x6a,0x45,0xc1,0xf6,0xbc,0x0d,0x9e,0x7a,0x68,0x7b,0x37, +0x3c,0xd5,0xac,0xf6,0x1e,0x78,0xf6,0xde,0xbd,0xf0,0x54,0xbf, +0xda,0xfb,0x90,0x53,0xbf,0x6c,0x1f,0x40,0x56,0xb3,0x51,0xfb, +0x10,0x0a,0xea,0xe3,0xed,0xc3,0xc8,0xd9,0x7e,0x4f,0xc1,0xb3, +0x3d,0x9b,0x46,0x4a,0xb3,0x5a,0xfb,0x2c,0x72,0xaa,0xbf,0xed, +0xf3,0xf0,0xd4,0xd3,0xda,0x17,0xe0,0x69,0x0e,0x6f,0x5f,0x44, +0x5c,0xf5,0xb9,0xfd,0xa7,0x48,0xa8,0xbe,0xb4,0x5f,0x82,0xa4, +0x72,0xb5,0xfd,0xe7,0xc8,0xa9,0x66,0xb5,0x5f,0x81,0x84,0x9d, +0xc3,0x95,0xc8,0x6b,0x16,0x6f,0xbf,0x1a,0x9e,0xe6,0xea,0xf6, +0x6b,0xe0,0xd9,0xb9,0x5d,0x87,0x84,0xf2,0xad,0xfd,0x06,0x24, +0x94,0x6f,0xed,0x37,0xa2,0xc4,0x7e,0xf6,0x26,0x24,0xed,0xf9, +0x6f,0x45,0x4e,0x75,0xbe,0xfd,0x5e,0x94,0xa8,0x06,0xb5,0xdf, +0x07,0xcf,0xce,0xf9,0x01,0x64,0x6c,0x8f,0x1f,0x41,0x4e,0xfd, +0xa2,0xfd,0x0f,0xc8,0x58,0x3c,0x3e,0x03,0x4f,0xf7,0x8a,0xf6, +0xe7,0xe0,0x59,0xbc,0x3c,0x0f,0xcf,0x62,0xe4,0x05,0x78,0xea, +0xeb,0xed,0x7f,0x86,0xa7,0x3e,0xd1,0xfe,0x12,0xf2,0x76,0x46, +0xaf,0x22,0x61,0xe7,0xf0,0x06,0x4a,0x54,0x8f,0xda,0xdf,0x84, +0x67,0xfb,0xf0,0x3e,0xbc,0xb3,0xb5,0xfe,0x1f,0x3c,0xcd,0x01, +0xed,0x1f,0x22,0xab,0xb9,0xba,0xfd,0x23,0xc4,0x75,0xcf,0x6d, +0xff,0x14,0x9e,0xed,0xdb,0x67,0xc8,0xaa,0x8e,0x74,0x6c,0x88, +0xa4,0x66,0xf1,0x8e,0x18,0xe2,0xda,0x97,0x8e,0x38,0xd2,0x17, +0x6a,0x4d,0xa0,0xa0,0xd8,0xeb,0x48,0x22,0xaf,0xfd,0xea,0x48, +0xc1,0x3b,0x4b,0x6b,0x1a,0x69,0xf5,0x9e,0x8e,0x00,0x71,0xcd, +0x16,0x1d,0x21,0x3c,0xf5,0xbf,0x8e,0x2d,0xe0,0xa9,0xff,0x75, +0x7c,0x05,0x9e,0xf2,0xa4,0xe3,0xeb,0xf0,0xd4,0x0b,0x3b,0xb6, +0x47,0xc6,0x3e,0x73,0x47,0x64,0xf5,0x3e,0x1d,0xbb,0x21,0xa3, +0xd9,0xbe,0x63,0x4f,0x78,0xea,0x91,0x1d,0x07,0xc0,0xb3,0xef, +0x3a,0x04,0x9e,0xfa,0x68,0xc7,0xe1,0x48,0xdb,0xf7,0x1f,0x89, +0x9c,0x66,0xe6,0x8e,0xef,0xc2,0x53,0x1e,0x76,0x7c,0x0f,0x9e, +0xf2,0xb3,0xe3,0x68,0x24,0x34,0xd3,0x76,0x1c,0x83,0x82,0xea, +0x4c,0xc7,0xa9,0xf0,0x54,0x44,0x3b,0xb4,0xd7,0x1d,0xda,0x63, +0x4f,0xf9,0xd9,0x71,0x01,0x52,0xaa,0x5f,0x1d,0x3f,0x82,0xa7, +0x1c,0xee,0xb8,0x08,0x49,0xdb,0x8f,0x8b,0x51,0xa1,0x79,0xa9, +0xa3,0x1a,0x9e,0xf2,0xb9,0xa3,0x1e,0x19,0xc5,0x4d,0x47,0x03, +0x72,0x9a,0xf1,0x3a,0x1a,0x91,0x56,0xdc,0x77,0xb4,0xa1,0x5c, +0x77,0xf8,0x8e,0x76,0x78,0xf6,0xef,0x9d,0xf0,0x34,0x93,0x75, +0x74,0xc1,0x53,0x5d,0xe8,0xe8,0x87,0x67,0x9f,0x3d,0x08,0xcf, +0x3e,0x7b,0x0c,0x09,0xd5,0xde,0x8e,0x29,0x78,0x9a,0x13,0x3a, +0xd6,0xc2,0x53,0xed,0xe8,0x98,0x47,0x4e,0x77,0x96,0x8e,0x75, +0xc8,0xdb,0xdf,0x2d,0x22,0x67,0x7f,0xfe,0x09,0x3c,0xcd,0x7f, +0x1d,0x97,0xc2,0xb3,0x67,0xfc,0x19,0x3c,0xe5,0x45,0xc7,0xe5, +0xc8,0xab,0xae,0x75,0x5c,0x01,0xcf,0x9e,0xf7,0x7a,0x78,0xf6, +0xbc,0xbf,0x44,0x5a,0x7d,0xb7,0xe3,0x57,0xf0,0x54,0x9b,0x3a, +0x6e,0x86,0xa7,0x7a,0xd4,0x71,0x2b,0x3c,0x7b,0x8f,0x3b,0xe0, +0xa9,0x36,0x75,0xdc,0x09,0x4f,0xf5,0xab,0xe3,0x2e,0x64,0x35, +0x27,0x77,0xdc,0x0d,0xcf,0xf6,0xe0,0xb7,0xf0,0x94,0x3b,0x1d, +0x0f,0x20,0xa6,0xfe,0xdb,0xf1,0x3b,0x78,0x9a,0x23,0x3b,0x7e, +0x0f,0x4f,0x75,0xad,0xe3,0x51,0x78,0xaa,0x6b,0x1d,0x4f,0xc0, +0x1b,0xd1,0xfa,0x47,0x64,0xd4,0x2f,0x3b,0x9e,0x85,0x67,0x7b, +0xf9,0x1c,0x3c,0xcd,0x3a,0x1d,0xcf,0xc3,0x53,0xae,0x75,0xa8, +0x8f,0x76,0xa8,0xde,0x78,0x9a,0x7f,0x3a,0x5e,0x47,0xda,0xf2, +0xe3,0x4d,0xc4,0x2c,0xe6,0xdf,0x86,0xa7,0xd9,0xa8,0xe3,0x1d, +0x14,0x74,0x57,0xef,0xf8,0x0b,0x92,0x16,0x9f,0xef,0x21,0xa5, +0xfe,0xde,0xf1,0x4f,0x24,0x6d,0x6f,0x3e,0x44,0xc6,0xce,0xcd, +0xe2,0x49,0xbd,0xde,0xb3,0x3f,0x7f,0x8a,0x12,0x7b,0xde,0xcf, +0xe1,0xcd,0x7c,0xe9,0x4b,0x9d,0x7a,0xee,0x4e,0xe5,0xb5,0xa7, +0x5a,0xdc,0x19,0x83,0xa7,0x73,0xec,0x4c,0xc0,0x53,0x2d,0xee, +0x4c,0x22,0xae,0x33,0xe8,0x4c,0x61,0x53,0xd5,0xcd,0xce,0x34, +0x3c,0xc5,0x41,0x67,0x16,0x69,0xed,0x67,0x67,0x0e,0x9e,0x62, +0xa2,0x33,0x8f,0xa4,0xee,0x08,0x9d,0x2b,0xe0,0x69,0x9e,0xeb, +0xdc,0x04,0x2b,0xec,0xf3,0x1c,0x78,0x7a,0xc7,0x4e,0x17,0x79, +0xdd,0xe5,0x3a,0x3d,0xc4,0x6d,0x0d,0x91,0xfe,0x85,0xd6,0x08, +0x29,0xd5,0xc9,0xce,0x72,0xe4,0xb4,0x8f,0x9d,0x2b,0x91,0xd2, +0x9c,0xd3,0xf9,0x15,0x78,0x8a,0xc5,0xce,0xad,0x91,0x50,0x7d, +0xec,0xdc,0x06,0x9e,0x7a,0x49,0xe7,0xb6,0xc8,0xa9,0xae,0x76, +0x7e,0x0d,0x9e,0xbd,0xd7,0x8e,0xf0,0x14,0xbb,0x9d,0x3b,0x21, +0x63,0x9f,0xb7,0x33,0x72,0xf6,0x19,0xbb,0x20,0xa1,0x5c,0xee, +0xdc,0x15,0x9e,0x7a,0x52,0xe7,0x6e,0x48,0xeb,0xce,0xd2,0xb9, +0x37,0x3c,0xc5,0x7d,0xe7,0x77,0x90,0xb5,0x77,0x3d,0x1e,0x15, +0xf6,0x3c,0x27,0xc0,0x53,0x2e,0x77,0x9e,0x08,0x4f,0xb9,0xd1, +0xf9,0x7d,0x78,0xf6,0x39,0xa7,0xc2,0x53,0x9e,0x74,0x9e,0x01, +0xef,0x2a,0xad,0x67,0xc1,0x53,0x9f,0xeb,0x3c,0x07,0x71,0xcd, +0x5e,0x9d,0x3f,0x80,0xa7,0x9e,0xd7,0xa9,0x5a,0xd9,0xa9,0xfa, +0xe3,0xa9,0x97,0x75,0xfe,0x08,0x49,0xcd,0x4f,0x9d,0x3f,0x46, +0x41,0x31,0xd9,0x79,0x31,0x3c,0xe5,0x5e,0x67,0x25,0x52,0x8a, +0xad,0xce,0x5a,0xc4,0xec,0xac,0x54,0x3b,0x3a,0xed,0xbe,0xa0, +0x1e,0xd9,0xd9,0x0a,0x4f,0xf9,0xd9,0x39,0x84,0x12,0xf5,0xe2, +0xce,0x11,0x78,0xea,0x0b,0x9d,0x93,0x58,0x6d,0xcf,0x33,0x87, +0x9c,0xf2,0xa1,0x73,0x11,0x49,0xc5,0x6b,0xe7,0x7a,0x78,0xea, +0x29,0x9d,0x3f,0x47,0x4c,0xf9,0xdb,0xf9,0x0b,0xac,0xd4,0xfc, +0xd7,0x79,0x15,0x3c,0xfb,0xfc,0xab,0xe1,0xa9,0x26,0x74,0x5e, +0x83,0x9c,0xe6,0xd1,0xce,0xeb,0x90,0xb6,0x78,0xbc,0x01,0x31, +0xcd,0x2d,0x9d,0xbf,0x44,0x5e,0x35,0xba,0xf3,0x66,0x24,0xec, +0x6c,0x6f,0x41,0x5c,0xf3,0x77,0xe7,0x6d,0xf0,0xec,0xdf,0xef, +0x40,0xcc,0xf6,0xec,0x7e,0xc4,0x94,0xaf,0x9d,0x4f,0x20,0xb6, +0xa9,0xd6,0x27,0xe1,0xd9,0xcf,0xfe,0x11,0x05,0xcd,0x0a,0x9d, +0x4f,0x21,0xa3,0x99,0xa7,0xf3,0x4f,0xc8,0xd9,0x33,0x3f,0x07, +0x4f,0x75,0xa4,0xf3,0x05,0xc4,0x34,0xdb,0x74,0xbe,0x08,0xef, +0x41,0xad,0x2f,0xc1,0xb3,0xef,0x7c,0x19,0xde,0xed,0x5a,0x5f, +0x85,0xa7,0x1a,0xd7,0xf9,0x3a,0x3c,0x7b,0xde,0x37,0x91,0xd2, +0x1c,0xd2,0xf9,0x16,0xe2,0x16,0x4b,0x6f,0x23,0x63,0x79,0xfa, +0x57,0x64,0x2d,0x66,0xfe,0x0f,0x25,0xb6,0xe7,0x5f,0xf0,0x54, +0x13,0x3b,0x3f,0x84,0xa7,0x5a,0xd9,0xf9,0x31,0x3c,0xcd,0x31, +0x9d,0xcb,0xf0,0x54,0x2b,0x3b,0x3f,0x81,0xa7,0x59,0xa7,0x6b, +0x03,0x14,0x55,0x2b,0xba,0x36,0x44,0x5e,0xef,0xd0,0xb5,0x11, +0x3c,0xd5,0xd3,0xae,0x12,0xc4,0x14,0xdf,0x5d,0x31,0xc4,0xf4, +0xce,0x5d,0x71,0x78,0xaa,0xb3,0x5d,0x29,0x78,0xaa,0xb3,0x5d, +0x79,0x24,0x94,0x9f,0x5d,0x0e,0x3c,0xcd,0x4c,0x5d,0xaa,0x01, +0x5d,0xca,0x7b,0x4f,0x77,0x87,0xae,0x08,0x25,0x8a,0xd7,0xae, +0x2d,0xe0,0x69,0x1e,0xea,0xda,0x0a,0x2b,0x35,0x43,0x74,0x6d, +0x03,0x4f,0x67,0xd0,0xf5,0x75,0x78,0x3a,0x9b,0xae,0xed,0xe1, +0xa9,0x87,0x76,0xed,0x00,0x4f,0x75,0xbc,0xeb,0x1b,0xf0,0x74, +0x8f,0xeb,0xda,0x09,0x9e,0xee,0x6c,0x5d,0x3b,0x23,0xa3,0xfa, +0xd0,0xb5,0x2b,0x32,0xba,0x3f,0x76,0xed,0x06,0xef,0x71,0xad, +0x7b,0xc3,0x7b,0x4c,0xeb,0xfe,0xf0,0x14,0x13,0x5d,0x07,0xa0, +0x4c,0xb3,0x54,0xd7,0x41,0x48,0xab,0x5f,0x77,0x1d,0x8c,0x84, +0x3d,0xe3,0x11,0x28,0xd1,0x59,0x76,0x1d,0x09,0x4f,0xb1,0xd5, +0x75,0x14,0x12,0x3a,0xd7,0xae,0xe3,0x91,0xd6,0x39,0x75,0x9d, +0x81,0xa2,0xf2,0xa7,0xab,0x0a,0x9e,0xfd,0x6e,0x0d,0x3c,0x9d, +0x7b,0x57,0x1d,0x62,0xaa,0x23,0x5d,0x4d,0x88,0xa9,0x96,0x75, +0x35,0xc3,0x53,0x0c,0x75,0xb5,0xa1,0xa8,0xda,0xde,0xd5,0x03, +0x4f,0x31,0xda,0xd5,0x07,0x4f,0x31,0xd7,0x35,0x00,0x4f,0xf1, +0xd4,0x35,0x08,0x4f,0xbd,0xaa,0x6b,0x14,0x9e,0x62,0xb4,0x6b, +0x0a,0x9e,0xe6,0xcc,0xae,0x69,0x78,0x16,0x03,0xf3,0xf0,0xd4, +0xff,0xba,0x96,0x10,0x57,0x3f,0xe8,0x5a,0x0f,0x4f,0xfd,0xaf, +0xeb,0x27,0xf0,0xec,0x1d,0x2f,0x81,0x67,0xb1,0x71,0x39,0x3c, +0xc5,0x6e,0xd7,0x95,0xf0,0x94,0x33,0x5d,0x57,0x21,0x67,0xe7, +0x76,0x03,0x0a,0x9a,0xc3,0xba,0x7e,0x05,0x4f,0x33,0x58,0xd7, +0x1d,0xf0,0x6c,0xcf,0xef,0x81,0xa7,0x3b,0x70,0xd7,0xfd,0x48, +0xeb,0x9e,0xd8,0xf5,0x20,0x8a,0xea,0x65,0x5d,0x0f,0x21,0xae, +0x9a,0xdf,0xf5,0x08,0xe2,0x16,0x63,0x7f,0x80,0xa7,0x9c,0xe9, +0xfa,0x23,0x62,0x76,0xee,0xcf,0x20,0xa5,0x7c,0xec,0x7a,0x16, +0xde,0xdf,0xb5,0xbe,0x88,0xa4,0x9d,0xed,0xcb,0xc8,0x6a,0xa6, +0xec,0x7a,0x05,0x9e,0x9d,0xdd,0xbb,0xc8,0x6b,0x06,0xed,0xfa, +0x2b,0x3c,0xf5,0xef,0xae,0xf7,0x11,0x53,0xad,0xef,0xfa,0x07, +0x12,0xb6,0xdf,0xff,0x87,0x9c,0x3d,0xe7,0x07,0xf0,0x94,0x9f, +0x5d,0x5f,0xf0,0x34,0x07,0x74,0xfd,0x1b,0x45,0xf5,0xdc,0xae, +0xff,0xc0,0xb3,0xdf,0xfb,0x04,0x9e,0xad,0x9f,0xc1,0xd3,0x1c, +0xde,0xbd,0x11,0x3c,0xd5,0xf3,0xee,0x12,0x64,0x55,0x97,0xbb, +0x13,0xf0,0xf4,0x1d,0xdd,0x69,0x94,0x2b,0x3e,0xba,0x33,0xf0, +0xf4,0x7c,0xdd,0x59,0xe4,0x55,0x4b,0xbb,0x73,0xf0,0x34,0x47, +0x75,0xe7,0x51,0xa2,0xbe,0xd6,0xbd,0x29,0x3c,0xbd,0x67,0xf7, +0x2a,0x78,0x7a,0xa6,0xee,0xcd,0xe1,0xe9,0x59,0xbb,0xbf,0x82, +0x9c,0xfa,0x4e,0xf7,0xd6,0xf0,0xf4,0x7c,0xdd,0xdb,0xc2,0xd7, +0x6c,0xd1,0xbd,0x3d,0x62,0xda,0xd3,0xee,0x9d,0xe0,0xdb,0xb3, +0xec,0x0a,0x4f,0xb5,0xa9,0xfb,0x9b,0xf0,0x34,0xbb,0x74,0x7f, +0x0b,0x05,0xe5,0x49,0xf7,0x01,0xf0,0xed,0x9d,0x0e,0x44,0x51, +0x3d,0xa6,0xfb,0x20,0x14,0x74,0xcf,0xef,0x3e,0x1c,0x05,0xf5, +0xb6,0xee,0xe3,0x90,0x51,0x7d,0xee,0x3e,0x09,0x65,0xca,0xa3, +0xee,0xd3,0x91,0xb3,0x3f,0x9f,0x01,0xdf,0xde,0xfb,0x4c,0x64, +0x35,0x27,0x77,0x9f,0x83,0x12,0xe5,0x5e,0xf7,0x79,0xf0,0x55, +0xd7,0xba,0x2f,0x80,0xaf,0x9a,0xd8,0x7d,0x21,0xd2,0x3a,0xb3, +0xee,0x1f,0xc2,0xd3,0xec,0xd5,0xfd,0x23,0xf8,0x76,0x0e,0x3f, +0x86,0xaf,0x3a,0xd8,0x7d,0x31,0xb2,0x8a,0xe7,0xee,0x1a,0x94, +0xd8,0xcf,0xd6,0xc1,0x57,0xcd,0xed,0x6e,0x80,0x6f,0x67,0xd5, +0x88,0x9c,0x62,0xa9,0xbb,0x13,0xbe,0xea,0x6c,0x77,0x37,0xd4, +0x36,0xbf,0xd4,0x3d,0x84,0x94,0x72,0xa3,0x7b,0x1c,0x29,0xd5, +0xaf,0xee,0x35,0x48,0x2a,0x8e,0xbb,0xe7,0x90,0xb7,0xf7,0x5d, +0x87,0x9c,0xfa,0x62,0xf7,0x7a,0xf8,0x9a,0xd5,0xba,0x7f,0x0a, +0x5f,0x1f,0xda,0x7d,0x0d,0x7c,0x8b,0xa9,0x1b,0x11,0x53,0xee, +0x74,0xdf,0x84,0xa2,0x72,0xbe,0xfb,0x66,0xa4,0x94,0x03,0xdd, +0xb7,0xc0,0xb7,0x78,0xb9,0x0d,0xbe,0xc5,0xcb,0xed,0x48,0x5b, +0x2c,0xdd,0x05,0x5f,0xbd,0xac,0xfb,0x1e,0xf8,0xea,0x01,0xdd, +0xf7,0x21,0x63,0xe7,0xf8,0x00,0x7c,0xf5,0x84,0xee,0xdf,0xa3, +0xa0,0xfa,0xdb,0xfd,0x10,0x7c,0x8b,0xd3,0x87,0x11,0x53,0x3d, +0xea,0x7e,0x14,0xbe,0xe6,0x96,0xee,0xc7,0xe1,0x97,0x6a,0x7d, +0x02,0x79,0x7b,0xc6,0x67,0xe0,0xab,0xc7,0x74,0x3f,0x07,0x7f, +0x63,0xad,0xcf,0xc3,0xdf,0x4c,0xeb,0x8b,0x58,0xa5,0x1a,0xd4, +0xfd,0x37,0x94,0x5b,0xfc,0xfc,0x1d,0x05,0xd5,0x94,0xee,0x0f, +0xe1,0xab,0x3f,0x75,0x7f,0x0a,0x5f,0xfd,0xa9,0xfb,0xbf,0xf0, +0x35,0xb3,0xaa,0xd4,0xfe,0x4f,0x52,0x39,0xd5,0x13,0x87,0xa7, +0xfe,0xda,0xb3,0x31,0x2a,0x54,0x3b,0x7a,0x36,0x45,0xfe,0x5a, +0xad,0x9b,0xc1,0x57,0xfe,0xf4,0x94,0xc2,0x57,0xee,0xf4,0xe8, +0xfd,0x7b,0xf4,0xbc,0x7e,0x99,0xd6,0x00,0x25,0x3a,0xc7,0x9e, +0x95,0xf0,0x95,0x7b,0x3d,0x45,0xf8,0xf6,0xef,0x5b,0xa0,0xdc, +0xfe,0xbc,0x25,0x32,0xaa,0x15,0x3d,0xdb,0xc2,0xb7,0xdf,0xfb, +0x2a,0x4a,0xd4,0xbb,0x7b,0x76,0x42,0x46,0x31,0xdc,0xf3,0x2d, +0x94,0x2b,0x76,0x7b,0xf6,0x44,0xb9,0x6a,0x6e,0xcf,0xde,0xf0, +0x2b,0xb4,0xee,0x03,0x5f,0x3d,0xb8,0xe7,0xdb,0xc8,0xd9,0xcf, +0x1f,0x08,0xff,0xcb,0x5a,0x0f,0x42,0x4a,0x33,0x46,0xcf,0xc1, +0x48,0xea,0xdc,0x7b,0x0e,0x81,0xaf,0x5a,0xd0,0x73,0x38,0xe2, +0xca,0xc7,0x9e,0xef,0xa1,0xa8,0xf8,0xeb,0x39,0x06,0xbe,0xfa, +0x66,0xcf,0x71,0xc8,0xa9,0x86,0xf6,0x1c,0x0f,0xdf,0xde,0xe9, +0x04,0x14,0xd5,0x57,0x7a,0x4e,0x84,0xa7,0x7d,0xef,0x39,0x13, +0xfe,0x6a,0xad,0x3f,0x40,0xc1,0xbe,0xf7,0x3c,0x64,0x95,0x3f, +0x3d,0xe7,0x23,0xa7,0x7e,0xd4,0x73,0x01,0x8a,0x8a,0xf5,0x9e, +0x1f,0xc2,0x57,0xdf,0xe9,0xa9,0x83,0xaf,0x1a,0xd4,0xd3,0x0a, +0x5f,0x79,0xd4,0xd3,0x0e,0xdf,0xf6,0xb2,0x1b,0x39,0xfb,0x73, +0x1f,0x7c,0xcd,0x10,0x3d,0xfd,0xf0,0xd5,0x8b,0x7b,0x06,0xe1, +0xeb,0x9e,0xde,0x33,0x0e,0x7f,0x77,0xad,0x13,0xf0,0x35,0xaf, +0xf4,0xac,0x81,0xaf,0x19,0xb5,0x67,0x06,0x31,0x8b,0x85,0x39, +0x64,0x95,0xcb,0x3d,0x0b,0xf0,0x35,0xbb,0xf4,0xac,0x83,0xaf, +0x7b,0x48,0xcf,0xcf,0xe0,0xdb,0x79,0xfe,0x02,0x69,0xf5,0xd4, +0x9e,0x2f,0xf8,0xaa,0xad,0x3d,0x57,0xa0,0x5c,0xf5,0xb6,0xe7, +0x4a,0xa4,0x55,0x63,0x7b,0xae,0x42,0xc2,0x62,0xf3,0x6a,0x14, +0x2c,0x66,0xaf,0x45,0x41,0xb5,0xa5,0xe7,0x3a,0x94,0x5b,0x3c, +0x5e,0x8f,0xa2,0xee,0x47,0x3d,0xb7,0xc0,0xb7,0x18,0xb9,0x15, +0xbe,0x6a,0x74,0xcf,0x3d,0x28,0x28,0x37,0x7a,0x7e,0x0f,0x7f, +0x0f,0xad,0x8f,0xa2,0xa0,0xfb,0x4c,0xcf,0x63,0xf0,0x2d,0xd6, +0x1e,0x87,0xaf,0x5a,0xdd,0xf3,0x34,0x7c,0x8b,0xb5,0x17,0xe1, +0x5b,0x7c,0xfd,0x19,0xbe,0xc5,0xdd,0x1b,0xc8,0x6a,0xd6,0xe9, +0x79,0x13,0xfe,0xbe,0x5a,0xdf,0x45,0x4e,0x75,0xbc,0xe7,0x2f, +0xf0,0x2d,0xae,0xff,0x83,0x72,0xd5,0x96,0x9e,0x8f,0xe1,0xef, +0xa7,0x75,0x19,0xbe,0xc5,0xe9,0x27,0x48,0xab,0x67,0xf5,0x7c, +0x0e,0x5f,0x71,0xdc,0xbb,0x21,0x7c,0xf5,0xb0,0xde,0x38,0x7c, +0xc5,0x71,0x6f,0x02,0x69,0xd5,0x9d,0xde,0x34,0x7c,0xcd,0x82, +0xbd,0x19,0xf8,0xba,0xef,0xf5,0x6e,0x0a,0x5f,0xfd,0xa9,0xd7, +0xc1,0x66,0x7a,0xcf,0x5e,0x17,0x9b,0x69,0x8f,0x7a,0x03,0xf8, +0x87,0x6a,0xdd,0x1c,0xbe,0x72,0xa3,0xf7,0xab,0x28,0x68,0x56, +0xe9,0xfd,0x3a,0x1c,0xcd,0x40,0xbd,0xdb,0xc1,0x3f,0x4c,0xeb, +0x5e,0xf0,0x95,0x3f,0xbd,0x87,0xc1,0xd7,0x7c,0xd9,0x7b,0x38, +0x12,0xea,0x01,0xbd,0x47,0x22,0xae,0x9e,0xd2,0x7b,0x34,0x2a, +0xf4,0xfe,0xbd,0xc7,0x60,0x85,0x62,0xae,0xf7,0x44,0xc4,0xc7, +0xb4,0x9e,0x84,0x0a,0xcd,0x73,0xbd,0x27,0xa3,0xa0,0x1e,0xd3, +0x7b,0x0a,0xe2,0xca,0xc1,0xde,0x53,0xe1,0x6b,0x66,0xed,0x3d, +0x17,0xbe,0xf2,0xb6,0xf7,0x02,0x64,0x14,0x43,0xbd,0x17,0xc3, +0xb7,0xef,0x6c,0x40,0x56,0x73,0x72,0x6f,0x13,0x4a,0x94,0x4b, +0xbd,0x83,0x88,0x29,0x57,0x7b,0xed,0x59,0x87,0xf5,0xf3,0xca, +0xe7,0xde,0x29,0xf8,0xf6,0x8c,0x6b,0x91,0xb4,0x7f,0xbf,0x14, +0xbe,0x66,0x92,0xde,0x9f,0x21,0xab,0xd9,0xaf,0x57,0x71,0xdd, +0xab,0x78,0xf6,0x55,0x23,0x7a,0xaf,0x82,0xaf,0xfe,0xdd,0x7b, +0x1d,0x7c,0x7b,0x8f,0xeb,0xe1,0xdb,0xb3,0xff,0x1a,0xbe,0xbd, +0xeb,0x7d,0xf0,0x75,0xdf,0xee,0x7d,0x00,0xbe,0xbd,0xeb,0x83, +0x48,0xa9,0x5f,0xf7,0xfe,0x1e,0xbe,0x9d,0xc5,0xc3,0xc8,0x68, +0x5e,0xea,0x7d,0x14,0x09,0xe5,0x7e,0xef,0x1f,0x10,0x53,0x2d, +0xea,0x7d,0x0a,0xbe,0xbd,0xd7,0x73,0x88,0xa9,0x97,0xf5,0xbe, +0x00,0x5f,0xf5,0xa8,0xf7,0x25,0xf8,0xba,0xc3,0xf7,0xbe,0x0c, +0xdf,0xf6,0xf2,0x0d,0xe4,0xec,0x0c,0xdf,0x85,0x7f,0xb6,0xd6, +0xbf,0xc1,0xd7,0xfc,0xd1,0xfb,0x1e,0x72,0xca,0xb7,0xde,0xbf, +0x23,0x67,0xe7,0xfb,0x3e,0x7c,0xd5,0xb8,0xde,0x8f,0x50,0xae, +0xf8,0xef,0xfd,0x18,0xbe,0xee,0x0f,0xbd,0x9f,0xc0,0xd7,0xfc, +0xd1,0xfb,0x39,0x62,0x3a,0x33,0x95,0xad,0xff,0xf1,0x55,0xfb, +0xfa,0x36,0x44,0x5e,0x75,0xb6,0x6f,0x23,0xac,0x56,0x51,0xe8, +0x8b,0xc3,0xb7,0x9f,0x4f,0xc2,0xd7,0xac,0xd3,0x97,0x82,0xaf, +0xf3,0xee,0x4b,0xc3,0xaf,0xd6,0x9a,0x83,0xaf,0xbe,0xd9,0xb7, +0x31,0xfc,0x8b,0xb4,0x6e,0x02,0x5f,0xf5,0xb7,0xcf,0x43,0x46, +0xbd,0xbb,0x2f,0x80,0xaf,0xf8,0xe8,0x8b,0x90,0xd7,0x39,0xf5, +0xad,0x86,0xaf,0x18,0xea,0xfb,0x0a,0x7c,0xd5,0xf0,0xbe,0x6f, +0xc0,0xd7,0xcc,0xd4,0xb7,0x0b,0x7c,0xd5,0xeb,0xbe,0x3d,0xe0, +0xd7,0x6b,0xdd,0x0b,0x7e,0xad,0xd6,0x83,0x90,0x56,0xcc,0xf5, +0x1d,0x82,0x82,0xf6,0xbd,0xef,0x50,0xf8,0x3a,0xd3,0xbe,0xc3, +0xe1,0xab,0xbe,0xf7,0x7d,0x0f,0x7e,0xaf,0xd6,0x63,0x50,0xae, +0xfe,0xdb,0x77,0x1c,0x7c,0xe5,0x45,0xdf,0x09,0xf0,0xd5,0xe4, +0xfb,0x4e,0x85,0xdf,0xa2,0xf5,0x34,0xf8,0xba,0x83,0xf5,0x9d, +0x09,0x5f,0x1b,0xdc,0x77,0x0e,0x62,0x8a,0xc9,0xbe,0x1f,0xc0, +0xef,0xd2,0x7a,0x3e,0x7c,0xf5,0x8c,0xbe,0x1f,0xc1,0x57,0x5f, +0xe9,0xab,0x86,0xdf,0xa1,0xb5,0x16,0x19,0xd5,0xcd,0xbe,0x7a, +0xf8,0xca,0xa3,0xbe,0x36,0xe4,0xca,0xb5,0x76,0xc2,0x57,0x2e, +0xf5,0x8d,0xa0,0x60,0xfb,0xb7,0x1e,0xbe,0xf2,0xa8,0xef,0x12, +0xf8,0xb6,0x0f,0x57,0xc1,0x57,0xbe,0xf5,0x5d,0x07,0xdf,0x7e, +0xef,0x97,0xf0,0x95,0x7b,0x7d,0xb7,0xa2,0xa0,0x3a,0xd2,0x77, +0x1b,0xfc,0x59,0xad,0x77,0xc0,0x57,0xdd,0xe8,0xbb,0x1b,0xbe, +0x7a,0x5b,0xdf,0x7d,0xf0,0x55,0x5b,0xfa,0x1e,0x80,0xaf,0x7e, +0xd6,0xf7,0x20,0x7c,0x3b,0xeb,0x87,0xe1,0xeb,0x6e,0xd9,0xf7, +0x38,0x7c,0xf5,0xc2,0xbe,0x27,0xe1,0xdb,0x33,0xbe,0x02,0x5f, +0x3d,0xaf,0xef,0x6f,0x28,0xd7,0x4c,0xd3,0xf7,0x3e,0x7c,0xf5, +0xc5,0xbe,0x0f,0xe0,0xab,0x5e,0xf5,0xa9,0x76,0xf7,0xa9,0xce, +0xfb,0xf6,0xae,0x1f,0x23,0x66,0xfb,0xf9,0x09,0xe2,0xb6,0xe7, +0x9f,0xc3,0xd7,0xbc,0xda,0x1f,0xc3,0x6a,0xcd,0xa8,0xfd,0x09, +0x14,0xd5,0x3b,0xfb,0x73,0xf0,0x95,0xb3,0xfd,0x79,0xf8,0x9a, +0x0d,0xfa,0x0b,0xf0,0xd5,0x77,0xfb,0x37,0x86,0xaf,0x7a,0xd4, +0x5f,0x0a,0xff,0xe7,0x5a,0x1d,0xf8,0xaa,0x4d,0xfd,0x2b,0x51, +0xae,0xd8,0xe8,0x2f,0xc2,0xbf,0x4c,0xeb,0xe6,0xf0,0xed,0xbb, +0xb6,0x80,0xaf,0x9e,0xd5,0xff,0x65,0xf8,0x3a,0x8f,0xfe,0xed, +0xe1,0xab,0x7f,0xf7,0xef,0x0c,0x5f,0x75,0xae,0x7f,0x37,0xf8, +0xaa,0x77,0xfd,0x7b,0xc0,0x57,0xbd,0xed,0xdf,0x1b,0x09,0xf5, +0xc1,0xfe,0x2f,0xf8,0xea,0xdf,0xfd,0xfb,0xc1,0xd7,0xec,0xde, +0x7f,0x00,0x52,0x9a,0x3d,0xfa,0x0f,0x45,0x42,0xf7,0xfd,0xfe, +0xc3,0x50,0xaa,0xb9,0xae,0xff,0x28,0xf8,0x8a,0x83,0xfe,0xef, +0x21,0xa5,0x3a,0xd9,0x7f,0x1c,0x62,0x3a,0xc7,0xfe,0x13,0xe0, +0xab,0x9e,0xf6,0x9f,0x84,0x12,0xf5,0xfa,0xfe,0xef,0x23,0xa5, +0x99,0xbe,0xff,0x14,0xf8,0xea,0x59,0xfd,0xa7,0x23,0xa1,0x3b, +0x7e,0xff,0x19,0xf0,0x75,0x7f,0xe8,0x3f,0x13,0x25,0xb6,0x6f, +0x3f,0x40,0xce,0xbe,0xf7,0x02,0xf8,0x8a,0xbf,0xfe,0x8b,0x90, +0x56,0xcf,0xeb,0xaf,0x84,0xaf,0x58,0xec,0xaf,0x81,0xff,0x1b, +0xad,0x75,0xc8,0xd8,0x3b,0xb6,0xc0,0xd7,0x9c,0xdf,0xdf,0x0a, +0x5f,0xb3,0x6b,0x7f,0x1b,0xe2,0x9a,0xfb,0xfb,0x3b,0xe0,0xeb, +0xde,0xd2,0xdf,0x09,0x5f,0x31,0xdd,0xdf,0x8f,0x84,0xee,0x14, +0xfd,0x43,0xc8,0x68,0xb6,0xe9,0x1f,0x81,0xaf,0x7e,0xdd,0x3f, +0x09,0x5f,0x71,0xdf,0x3f,0x8d,0x8c,0x9d,0xff,0x0c,0x7c,0xdd, +0x6d,0xfa,0xe7,0xe0,0xdb,0x3e,0x2c,0xc1,0x57,0x1d,0xeb,0xbf, +0x04,0xbe,0xf2,0xa4,0xff,0x67,0xf0,0x35,0x7b,0xf7,0x5f,0x85, +0x9c,0xea,0x40,0xff,0xb5,0xf0,0x35,0x33,0xf7,0x5f,0x0f,0xff, +0x5e,0xad,0x37,0xc0,0xbf,0x5f,0xeb,0x4d,0x48,0xa8,0x9e,0xf4, +0xff,0x0a,0xbe,0xe6,0xb0,0xfe,0xdf,0xa0,0xc4,0xe2,0xed,0x2e, +0xf8,0xca,0xc3,0xfe,0x7b,0x90,0x54,0xbd,0xeb,0xff,0x2d,0x0a, +0xf6,0xf9,0xf6,0xb9,0x96,0xa7,0xca,0xcf,0xfe,0xfb,0x91,0x56, +0xfe,0xf4,0x3f,0x86,0x82,0xea,0x51,0xff,0x53,0xf0,0x7f,0xa7, +0xf5,0x69,0x14,0x2c,0xae,0x75,0xf7,0xe8,0xb7,0x7b,0x93,0xfa, +0x62,0xff,0x8b,0xc8,0xab,0x16,0xf7,0xff,0x19,0xbe,0x72,0xbb, +0xff,0x65,0x24,0xed,0xec,0x5e,0x45,0xc1,0xce,0xf6,0x1d,0xf8, +0xca,0xf9,0xfe,0x0f,0xe0,0xeb,0x6e,0xd6,0xff,0x4f,0xa4,0x6c, +0x7f,0x3e,0x84,0x6f,0xcf,0xf2,0x2f,0x14,0x2d,0x77,0x3e,0x42, +0xe1,0xbb,0x5a,0x3f,0x86,0xff,0x88,0xd6,0x4f,0xe1,0xab,0x07, +0xf7,0x7f,0x86,0xb4,0xc5,0xdd,0xe7,0x48,0x2b,0x07,0x06,0x36, +0x84,0xaf,0x9e,0x3d,0x50,0x02,0x5f,0xb5,0x66,0x20,0x81,0x9c, +0xbe,0x7b,0x20,0x0d,0x5f,0xef,0x3c,0x90,0x85,0xff,0x47,0xad, +0x2b,0x10,0xd3,0x9d,0x73,0x60,0x13,0xe4,0x95,0x03,0x03,0x9b, +0xc2,0xd7,0xbe,0x0c,0x44,0x58,0xa5,0x9c,0x1d,0x28,0x83,0xaf, +0x77,0x1e,0x28,0x87,0xff,0x27,0xad,0xab,0xe1,0x6b,0xff,0x06, +0x74,0xff,0x19,0xd0,0xfd,0xc6,0xd7,0x3e,0x0e,0xec,0x0c,0x5f, +0x33,0xc1,0xc0,0xae,0xf0,0xb5,0x77,0x03,0x7b,0xc0,0xd7,0x9e, +0x0e,0xec,0x03,0x5f,0x33,0xc4,0xc0,0xb7,0xe1,0x2b,0x9e,0x07, +0xf6,0x83,0xaf,0x33,0x18,0x38,0x14,0xbe,0xea,0xe6,0xc0,0x61, +0x08,0xb5,0xcf,0x03,0xc7,0xa2,0xcc,0x3e,0xe7,0x14,0xf8,0xaf, +0x6b,0x3d,0x15,0x71,0x7b,0xb6,0xd3,0xe0,0xbf,0xa6,0xf5,0x2c, +0xf8,0x9a,0xad,0x07,0xce,0x81,0xaf,0xb9,0x64,0xe0,0x7c,0xf8, +0xca,0xe5,0x81,0x1f,0xc2,0x57,0x0d,0x19,0xf8,0x31,0x7c,0x9d, +0xeb,0x40,0x25,0x52,0xf6,0xec,0xd5,0xf0,0x35,0xc7,0x0c,0xd4, +0xc1,0xd7,0x5c,0x3e,0xd0,0x0a,0x5f,0xf3,0xe4,0x40,0x1b,0xd2, +0xaa,0x0b,0x03,0x1d,0x28,0xd8,0xbb,0x76,0xc1,0x57,0xdd,0x1f, +0xe8,0x45,0x4e,0x31,0x31,0xd0,0x87,0xac,0xce,0x7b,0xa0,0x1f, +0xbe,0xe6,0xa1,0x81,0x41,0xf8,0x9a,0x87,0x06,0x86,0x90,0xb0, +0xf7,0x1b,0x43,0x5c,0xb5,0x6f,0x60,0x0a,0xbe,0xfa,0xc7,0xc0, +0x34,0x92,0xca,0x9d,0x81,0x19,0x64,0x15,0xff,0x03,0xb3,0xf0, +0xff,0xa1,0x75,0x1e,0x31,0xe5,0xe4,0xc0,0x4f,0xe1,0xeb,0x1e, +0x3d,0xf0,0x0b,0xf8,0x16,0x33,0x97,0xa1,0xa0,0x78,0x1b,0xb8, +0x02,0xbe,0x62,0x7a,0xe0,0x4a,0xa4,0x2d,0x8e,0xae,0x86,0x6f, +0xcf,0x7f,0x1d,0x7c,0xc5,0xf4,0xc0,0x8d,0xf0,0xd5,0xbb,0x06, +0x7e,0x89,0xb8,0x7a,0xcf,0xc0,0xad,0xf0,0xed,0x79,0xee,0x80, +0xaf,0xb8,0x1f,0x50,0x4e,0x0f,0x58,0x9f,0x55,0xdc,0x0f,0x3c, +0x89,0x98,0x7d,0xde,0xf3,0xf0,0xd5,0xe7,0x06,0x2c,0x0e,0x2c, +0x07,0x6d,0x7f,0x5e,0x47,0xcc,0xce,0xe4,0x2d,0xa4,0x6c,0x7f, +0xde,0x86,0xaf,0xdc,0x18,0xf8,0x10,0xbe,0xee,0xce,0x03,0x1f, +0x41,0x63,0xd8,0x97,0x06,0xbf,0x90,0xd0,0xf9,0x0d,0x6e,0x88, +0xac,0xee,0x2d,0x83,0x1b,0x21,0xd8,0x40,0x6b,0x12,0x09,0xdd, +0x55,0x06,0xd3,0xa8,0xd0,0x73,0x0c,0x66,0x11,0x28,0xc7,0x06, +0xf3,0xc8,0x6a,0x16,0x1a,0x5c,0x81,0xc0,0x3e,0x63,0x13,0x14, +0x95,0x2f,0x83,0x9b,0x22,0xa1,0x3c,0x1c,0x74,0x10,0xd8,0x77, +0xba,0xc8,0xa8,0xf7,0x0c,0x7a,0x88,0xeb,0x6e,0x35,0x18,0x22, +0x50,0xff,0x1e,0x2c,0x43,0x85,0xce,0x62,0x70,0x25,0x52,0xaa, +0x77,0x83,0x5b,0x20,0xa1,0x3c,0x19,0x5c,0x8d,0xc0,0x3e,0x7f, +0x6b,0xe4,0x75,0xe7,0x19,0xfc,0x2a,0xd2,0x8a,0xb3,0xc1,0xed, +0x11,0xd7,0x0c,0x33,0xb8,0x23,0x0a,0xf6,0x8e,0xdf,0x40,0x5a, +0x75,0x66,0x70,0x67,0x04,0xf6,0xde,0xbb,0xa0,0xa8,0xf3,0x1e, +0xdc,0x1d,0x69,0x9d,0xdd,0xe0,0x1e,0x28,0xd7,0x5d,0x78,0xf0, +0x0b,0x29,0xd5,0xdc,0xc1,0x7d,0x10,0x68,0x56,0x1e,0x3c,0x00, +0x81,0xed,0xd3,0x81,0x08,0xec,0x77,0x8f,0x44,0xf2,0x6b,0x5a, +0xbf,0x8b,0x8c,0x66,0x85,0xc1,0xa3,0x10,0xe8,0x6e,0x39,0x78, +0x34,0x52,0xaa,0xdf,0x83,0xc7,0x20,0xa7,0x3e,0x31,0x78,0x12, +0x02,0x3b,0x87,0x53,0x90,0x54,0x0c,0x0d,0x9e,0x86,0x12,0xc5, +0xdb,0xe0,0x19,0x08,0x34,0xbb,0x0c,0x9e,0x89,0x84,0x7d,0xd7, +0x39,0x48,0xaa,0x7f,0x0d,0x9e,0x87,0xa4,0x7a,0xe2,0xe0,0x05, +0x28,0xd8,0xde,0x5e,0x88,0xc0,0xce,0xf0,0x87,0x08,0x34,0x0f, +0x0d,0xfe,0x08,0xe5,0x5b,0x69,0xbd,0x08,0x71,0xdd,0x65,0x06, +0x2f,0x46,0x41,0xb9,0x3f,0x58,0x89,0x98,0xf2,0x6a,0xb0,0x0a, +0x29,0xf5,0x9e,0xc1,0x06,0x14,0x95,0x27,0x83,0xcd,0x08,0x2c, +0x5e,0x3a,0x11,0x58,0x5c,0x74,0x23,0xd8,0x4c,0x6b,0x0f,0x02, +0x8b,0x9d,0x3e,0x24,0x34,0xeb,0x0e,0x0e,0xa0,0x60,0x67,0x3b, +0x8c,0xa4,0x72,0x66,0x70,0x04,0x59,0xe5,0xc3,0xe0,0x04,0x02, +0x8b,0xa9,0x29,0xa4,0x55,0xe3,0x06,0xd7,0x22,0xa3,0x99,0x7f, +0x70,0x16,0x85,0x55,0x5a,0xe7,0x11,0x28,0x19,0x06,0x97,0x90, +0xd0,0xfd,0x6e,0xf0,0x0b,0x69,0xdb,0xbf,0x9f,0x22,0xb0,0x98, +0xbd,0x14,0x81,0xc5,0xe6,0xcf,0x90,0xb0,0x7f,0xd7,0x7c,0x33, +0xa8,0x5a,0x11,0x58,0xfc,0x5e,0x86,0xa2,0xfa,0xfd,0xe0,0xe5, +0x08,0x34,0x3f,0x0c,0x5e,0x8d,0xb4,0x6a,0xdc,0xe0,0x35,0xc8, +0xda,0xef,0x5e,0x8f,0x8c,0xed,0xf7,0x8d,0x88,0x69,0xc6,0x1a, +0xbc,0x05,0x15,0xea,0x4d,0x83,0xb7,0x23,0x6e,0x7f,0x7f,0x27, +0x8a,0xf6,0x79,0x77,0x21,0xa3,0xfa,0x3f,0xf8,0x5b,0x04,0xea, +0x43,0x83,0xf7,0x21,0x50,0xaf,0x1a,0x7c,0x10,0x19,0x25,0xfa, +0xe0,0xc3,0x48,0xeb,0xbe,0x39,0xf8,0x08,0xe2,0x76,0x16,0x8f, +0x22,0xb0,0x3c,0x7b,0x0c,0x69,0xcd,0xb2,0x83,0x4f,0xa2,0xa0, +0x79,0x68,0xf0,0x19,0x14,0x54,0x5f,0x06,0x9f,0x47,0x60,0xb9, +0xf8,0x02,0x02,0x3b,0x97,0x17,0x91,0x51,0xaf,0x1f,0x7c,0x09, +0x81,0xee,0x72,0x83,0x2f,0xa3,0x68,0xef,0xfd,0x0a,0x82,0x2d, +0xb5,0xbe,0x8a,0xc0,0xe2,0xf3,0x35,0x04,0x9a,0x8f,0x07,0xdf, +0x40,0x60,0xf9,0xfd,0x16,0xb2,0xb6,0xb7,0x6f,0x23,0xb0,0x7c, +0xf9,0x2b,0x02,0x3b,0xc7,0xf7,0x50,0xb0,0xdc,0xf9,0x3b,0x92, +0xb6,0x4f,0xff,0x87,0x40,0x73,0xef,0xe0,0x3f,0x11,0xd8,0x7b, +0xfd,0x1b,0x45,0xd5,0xd5,0xc1,0xff,0x20,0xb0,0xd8,0xfe,0x08, +0x29,0xf5,0xad,0xc1,0x65,0x94,0xa9,0x7e,0x0e,0x7e,0x21,0xa3, +0x7a,0xa2,0x96,0xf3,0x3f,0x79,0xc5,0xf7,0xd0,0x06,0x28,0x51, +0x1d,0x1e,0xda,0x10,0x25,0x8a,0x83,0xa1,0x12,0x64,0x35,0xa7, +0x0e,0x25,0x10,0x6c,0xab,0x35,0x8b,0x40,0x33,0xc1,0x50,0x1e, +0xe5,0xea,0xd9,0x43,0x2b,0x10,0x68,0x8e,0x1a,0xda,0x0c,0x81, +0x6a,0xd9,0x90,0x83,0xe0,0xeb,0x5a,0x5d,0x04,0xaa,0x5f,0x43, +0x3e,0x12,0xca,0xf9,0xa1,0x00,0x81,0x6a,0xdc,0x50,0x88,0x84, +0x7a,0xf4,0x50,0x19,0x52,0xf6,0x8c,0xab,0x10,0xec,0xa0,0xb5, +0x88,0x82,0xee,0x0f,0x43,0x5b,0x22,0xd8,0x49,0xeb,0x56,0x08, +0x34,0x97,0x0c,0x6d,0x83,0x40,0x75,0x70,0x68,0x5b,0x94,0xab, +0x5e,0x0c,0xed,0x88,0xc0,0xd6,0xdd,0x10,0xd7,0x9c,0x33,0xb4, +0x27,0x02,0xd5,0xca,0xa1,0x7d,0x10,0xd8,0xbf,0x1f,0x84,0xe0, +0x5b,0x5a,0x0f,0x45,0xa0,0x1a,0x3a,0x74,0x38,0x02,0xd5,0xcd, +0xa1,0x23,0x10,0xa8,0x9e,0x0e,0x7d,0x0f,0x45,0xe5,0xc3,0xd0, +0xb1,0x08,0xec,0xb3,0x8f,0x47,0x52,0x39,0x3e,0x74,0x22,0x02, +0xdd,0x85,0x86,0x4e,0x42,0xa0,0xfb,0xff,0xd0,0xc9,0xc8,0x29, +0x2e,0x87,0x4e,0x45,0x60,0xef,0x78,0x0e,0x12,0xb6,0x87,0x17, +0x20,0xb0,0x67,0xbc,0x10,0x81,0x7a,0xc7,0xd0,0x8f,0x11,0x68, +0xc6,0x1a,0xba,0x08,0x71,0xd5,0xd6,0xa1,0x8b,0xe1,0x29,0x3e, +0x87,0x2a,0x91,0x52,0xbc,0x0e,0x55,0x23,0xd8,0x5f,0x6b,0x1d, +0x12,0x9a,0xfb,0x87,0x5a,0x10,0xa8,0xee,0x0f,0xb5,0x61,0xb5, +0x9d,0x55,0x3b,0x02,0xf5,0xb5,0xa1,0x2e,0x24,0x55,0xbf,0x86, +0x06,0xb1,0xa9,0x72,0x7c,0x68,0x18,0x81,0xfa,0xc4,0xd0,0x28, +0x02,0xdb,0xbf,0x71,0xa4,0x6c,0xaf,0x94,0x87,0x43,0xaa,0x69, +0xc1,0xc1,0x5a,0xa7,0x11,0xd8,0xbe,0xea,0x2e,0x32,0x64,0x75, +0x4c,0xb3,0xe0,0xf0,0x2e,0xc8,0xe8,0xbc,0x86,0x77,0x47,0xa0, +0xfd,0x1d,0xde,0x0b,0x81,0xfa,0xcd,0xf0,0x3e,0x08,0xd4,0x87, +0x86,0x0f,0x40,0x56,0x31,0x3f,0x7c,0x20,0x02,0xf5,0xa1,0xe1, +0x83,0x91,0xd7,0xfe,0x0e,0x1f,0x8a,0x40,0x67,0x33,0x7c,0x38, +0x02,0xf5,0xa7,0xe1,0x23,0x11,0xa8,0x3f,0x0d,0x7f,0x21,0xd0, +0x99,0x0d,0x9f,0x88,0xac,0x6a,0xd9,0xf0,0xe9,0x48,0xe9,0xee, +0x31,0x7c,0x06,0x02,0xf5,0xfa,0xe1,0xf3,0x91,0xd0,0x1c,0x3f, +0x7c,0x01,0x56,0x28,0x4f,0x86,0x2f,0x44,0xa0,0xf3,0x1e,0xae, +0x47,0xa0,0x39,0x7c,0xb8,0x01,0x15,0xca,0xf3,0xe1,0x46,0x04, +0xf6,0x3d,0xcd,0x08,0xec,0xb3,0x3b,0x11,0xd8,0x33,0xf7,0x20, +0x50,0xcd,0x1c,0x1e,0x40,0xa0,0xf8,0x18,0x1e,0x44,0xa0,0xf3, +0x1d,0x1e,0x46,0x5e,0x67,0x39,0xac,0x1e,0x32,0x6c,0x7b,0xae, +0xb8,0x19,0x5e,0x83,0xc0,0x9e,0x7d,0x16,0x81,0x7a,0xc1,0xf0, +0x22,0x62,0x2a,0x00,0xc3,0x4b,0xc8,0x6a,0xce,0x19,0xfe,0x09, +0x72,0xaa,0x83,0xc3,0x3f,0x45,0xd2,0xf6,0xf0,0x12,0x24,0xd4, +0x1f,0x87,0x2f,0x43,0x4e,0x73,0xcb,0xf0,0xe5,0x88,0xd9,0x77, +0x5d,0x81,0x9c,0x3d,0xff,0x95,0x08,0x14,0xaf,0xc3,0x57,0x21, +0xae,0xfe,0x3b,0x7c,0x35,0xd2,0xb6,0x07,0xd7,0x20,0x50,0x0d, +0x1f,0xbe,0x16,0x81,0xed,0xe5,0x75,0xc8,0xe8,0x7e,0x38,0x7c, +0x3d,0xf2,0x9a,0x81,0x87,0xed,0x0c,0x34,0x73,0x06,0xba,0x7b, +0x0f,0xdf,0x84,0xb8,0x9d,0xf3,0xaf,0x11,0xd8,0xde,0xff,0x06, +0x39,0xc5,0xea,0xf0,0xcd,0xc8,0x58,0xbc,0xdc,0x86,0x9c,0xed, +0xe5,0xed,0xc8,0x5a,0x7c,0xdd,0x81,0x40,0x33,0xc0,0xf0,0x5d, +0xc8,0xeb,0xae,0x3e,0x7c,0x37,0x62,0x76,0x86,0xf7,0x20,0x50, +0x5f,0x1b,0xfe,0x2d,0x0a,0xba,0xbb,0x0d,0xdf,0x8b,0x8c,0x7a, +0xc3,0xf0,0x7d,0x28,0xa8,0x8e,0x0f,0x3f,0x88,0xa4,0x7d,0xde, +0xef,0x10,0xd8,0xe7,0x3c,0x84,0x8c,0xe6,0x99,0xe1,0x47,0x11, +0x28,0xc7,0x86,0xff,0x80,0xb4,0xed,0xd9,0x13,0xc8,0xaa,0x0f, +0x0e,0xff,0x11,0x39,0xfb,0xce,0xe7,0x11,0x28,0x9f,0x87,0x5f, +0x40,0xd2,0xce,0xf9,0x45,0x24,0xed,0x79,0x5f,0x42,0x4a,0x77, +0xe4,0xe1,0x57,0x90,0x53,0x0d,0x1d,0x7e,0x0d,0x09,0x8b,0x81, +0xd7,0x11,0xa8,0x46,0x0c,0xbf,0x81,0x40,0xf3,0xd0,0xf0,0x5b, +0xc8,0xd9,0xe7,0xfd,0x05,0x49,0x8b,0xcf,0x2f,0x94,0x5b,0xde, +0xfc,0x03,0x45,0x3b,0x87,0x0f,0x51,0xd4,0x79,0x0c,0xab,0xb7, +0x0c,0x6b,0x96,0x0f,0x54,0x53,0x86,0x3f,0x45,0xc2,0x3e,0xe3, +0x33,0x04,0xaa,0x3b,0x23,0xea,0x21,0x23,0x9a,0x7f,0x03,0xc5, +0xe7,0x48,0x02,0x81,0x6a,0xcd,0x48,0x12,0x19,0xc5,0xde,0x48, +0x1a,0x41,0xad,0xd6,0x0c,0xe2,0xea,0x8f,0x23,0x39,0x04,0x8a, +0x99,0x91,0x02,0x02,0xe5,0xd2,0xc8,0x0a,0x04,0xca,0x9f,0x91, +0x4d,0x50,0x54,0x4c,0x8c,0x6c,0x8a,0x40,0xb9,0x34,0xb2,0x19, +0x02,0xd5,0x84,0x11,0x07,0x81,0x6a,0xd9,0xc8,0x59,0x48,0xdb, +0xef,0x9e,0x83,0xa4,0xde,0x61,0xe4,0x5c,0x04,0xaa,0x71,0x23, +0x17,0x20,0xa6,0xf8,0x1b,0xf9,0x21,0x02,0xdd,0xf7,0x46,0x2e, +0x42,0x5a,0xfd,0x75,0xe4,0x62,0x04,0xca,0xd5,0x91,0x2a,0x04, +0xaa,0x89,0x23,0xd5,0xc8,0xa9,0xce,0x8f,0xd4,0xa2,0xf8,0x2b, +0xad,0x75,0x88,0xab,0x1e,0x8e,0x74,0x20,0xd0,0xbc,0x38,0xd2, +0x83,0x8c,0x66,0x94,0x91,0x41,0x94,0x68,0xef,0x46,0xe6,0x10, +0xd8,0xbf,0x5f,0x8a,0x94,0x7a,0xe1,0xc8,0xe5,0x48,0xab,0x96, +0x8e,0xfc,0x12,0x19,0xdb,0xa7,0x5b,0x11,0xe8,0x9e,0x39,0x72, +0x27,0x02,0xcd,0x9d,0x23,0xbf,0x45,0xa0,0x99,0x6d,0xe4,0x61, +0x04,0xaa,0x11,0x23,0x8f,0x20,0x50,0xed,0x18,0x79,0x0c,0x81, +0xea,0xcb,0xc8,0x33,0x08,0x54,0x1f,0x46,0x9e,0x47,0x60,0xcf, +0xf5,0x02,0x02,0xc5,0xde,0xc8,0x9f,0x11,0xd7,0x9c,0x3a,0xf2, +0x32,0x02,0xfb,0xf3,0xab,0x48,0x37,0x69,0x7d,0x1d,0x81,0xea, +0xfd,0xc8,0x3b,0x48,0xd8,0xef,0x2a,0x3e,0x46,0x6c,0xe6,0xd1, +0x5d,0x77,0xe4,0x7d,0x14,0xec,0xfb,0xff,0x89,0x8c,0xe2,0x7e, +0xe4,0x5f,0x48,0xab,0x76,0x8c,0x7c,0x8a,0x40,0x3d,0x63,0xe4, +0xbf,0x08,0xd4,0x33,0x46,0x15,0x3b,0xa3,0xba,0xa3,0x04,0xaa, +0x71,0xa3,0x69,0x14,0xd4,0x07,0x47,0x0b,0xc8,0xea,0xac,0x47, +0x57,0x20,0xd0,0x3e,0x8e,0x6a,0xef,0x46,0x35,0x57,0x06,0xba, +0x3f,0x8f,0xae,0x44,0xa0,0x7e,0x33,0xba,0x35,0x02,0xed,0xe9, +0xe8,0x76,0x08,0x54,0x1f,0x47,0xbf,0x81,0x40,0xf5,0x71,0x74, +0x27,0x04,0xeb,0xb4,0xee,0x8b,0x60,0x41,0xeb,0x7e,0xc8,0xaa, +0xe6,0x8c,0x7e,0x07,0x81,0x6a,0xe8,0xe8,0x81,0x08,0x34,0x5b, +0x8f,0x1e,0x84,0x40,0xf5,0x74,0xf4,0x60,0x04,0xeb,0xb5,0x1e, +0x8a,0x40,0xb5,0x75,0xf4,0x48,0x04,0x3a,0xe3,0xd1,0x63,0x10, +0xa8,0x26,0x8c,0x9e,0x80,0x40,0xb3,0xf9,0xe8,0xa9,0x48,0x2b, +0xb6,0x47,0x4f,0x43,0xa0,0x5a,0x3c,0x7a,0x26,0x02,0xd5,0xdf, +0xd1,0xb3,0x10,0x68,0x7e,0x1b,0xad,0x44,0xa0,0x9a,0x3b,0x5a, +0x8d,0x94,0x66,0x98,0xd1,0x5a,0x04,0xda,0xdb,0xd1,0x66,0x04, +0xaa,0xc5,0xa3,0x1d,0x08,0x54,0x8b,0x47,0xbb,0x11,0xdc,0xa0, +0xb5,0x07,0x81,0x72,0x61,0xb4,0x0f,0x81,0x6a,0xf4,0xe8,0x20, +0x02,0xc5,0xdf,0xe8,0x10,0x02,0xd5,0x87,0xd1,0x11,0x14,0x34, +0x47,0x8e,0x4e,0x20,0x50,0xfc,0x8f,0x4e,0x21,0x50,0x9e,0x8e, +0xae,0x41,0xa0,0xda,0x3d,0x3a,0x87,0x40,0xb5,0x7b,0xf4,0xa7, +0x08,0x74,0x67,0x18,0xbd,0x12,0x81,0xea,0xf8,0xe8,0x55,0x48, +0x6b,0xd6,0x1c,0xbd,0x1a,0x81,0x62,0x7d,0xf4,0x3a,0xc4,0xdf, +0xd4,0x7a,0x3d,0x02,0xd5,0xfa,0xd1,0x1b,0x10,0xa8,0xbe,0x8f, +0xde,0x89,0xc0,0xd6,0xbb,0x51,0xa6,0x98,0x1b,0xbd,0x1f,0x81, +0x6a,0xf5,0xe8,0x03,0x08,0xd4,0x1b,0x46,0x7f,0x87,0xc0,0x7e, +0xf6,0x21,0xa4,0xec,0x5d,0x1e,0x46,0xa0,0x7e,0x30,0xfa,0x08, +0xe2,0x76,0x9e,0x8f,0x22,0xa1,0x58,0x1c,0x7d,0x0c,0x45,0x7b, +0x97,0x27,0x91,0x50,0x4f,0x1c,0x7d,0x01,0x81,0xf2,0x70,0xf4, +0x65,0x64,0xed,0x7b,0x5e,0x43,0x56,0xf3,0xea,0xe8,0xeb,0x08, +0xd4,0x57,0x46,0xff,0x8a,0xc0,0x9e,0xeb,0x23,0x24,0x55,0xd3, +0x47,0x3f,0x41,0x60,0xcf,0xfe,0x29,0x02,0xf5,0x9e,0xd1,0xcf, +0x90,0xb0,0xf8,0xfd,0x1c,0x81,0xfa,0xd0,0xd8,0x46,0x88,0x69, +0x2f,0xc6,0x62,0x08,0x7e,0xaf,0x35,0x85,0xa4,0xe2,0x6f,0x2c, +0x8d,0x40,0xcf,0x33,0x96,0x45,0xa0,0x3e,0x34,0xb6,0x09,0x02, +0xbd,0xf3,0xd8,0xa6,0x08,0xf4,0x9e,0x63,0x9b,0x21,0xaf,0x7c, +0x18,0x2b,0x45,0xa0,0x3d,0x1a,0xf3,0x11,0x68,0x5f,0xc6,0x42, +0x04,0xea,0x65,0x63,0x11,0x02,0xf5,0xb9,0xb1,0x32,0xc4,0x0f, +0xd1,0xba,0x12,0x81,0xf6,0x6b,0x6c,0x4b,0x04,0xda,0xaf,0xb1, +0xaf,0x20,0xa7,0xbc,0x1d,0xdb,0x1a,0x05,0xe5,0xd4,0xd8,0xd7, +0x91,0xd2,0x2c,0x3d,0xb6,0x23,0x02,0xd5,0x8a,0xb1,0x5d,0x51, +0xb0,0x67,0xdf,0x0d,0xc1,0xd3,0x5a,0xf7,0x40,0xf0,0x94,0xd6, +0x3d,0x11,0x68,0xce,0x1f,0xdb,0x0b,0x05,0xdd,0x0d,0xc6,0xf6, +0x45,0xf0,0x27,0xad,0xfb,0x21,0x66,0xef,0xbb,0x3f,0x02,0xd5, +0xc1,0xb1,0x03,0x10,0xe8,0xfc,0xc6,0x0e,0x42,0xa0,0x9a,0x38, +0x76,0x28,0x82,0xe7,0xb4,0x1e,0x86,0xac,0xee,0x18,0x63,0x87, +0x23,0x50,0x3f,0x1d,0x3b,0x0e,0x81,0x6a,0xe5,0xd8,0xc9,0x08, +0xd4,0xa7,0xc7,0x4e,0x45,0x42,0xe7,0x34,0x76,0x3a,0xe2,0x3a, +0xd7,0x31,0xc5,0xca,0x98,0xe5,0xaf,0xe2,0x63,0x6c,0x01,0x69, +0xd5,0xb2,0xb1,0x75,0x08,0x14,0x2b,0x63,0x4b,0x48,0xda,0xf7, +0xae,0x47,0xa0,0xb8,0x19,0xbb,0x14,0x81,0xfa,0xfa,0xd8,0x65, +0x58,0xa1,0xfc,0x1a,0xbb,0x1c,0x2b,0x94,0x83,0x63,0xd7,0x20, +0x50,0xbe,0x8c,0x5d,0x0b,0x57,0xf5,0x74,0xec,0x3a,0x04,0x9a, +0x03,0xc6,0xae,0x47,0xc6,0x9e,0xe5,0x06,0xa4,0x74,0xff,0x1c, +0xbb,0x11,0x59,0xdd,0x39,0xc7,0x7e,0x83,0x40,0xf7,0xd8,0xb1, +0x5b,0x91,0xd7,0x5d,0x6f,0xec,0x36,0xac,0xb2,0xf3,0xbd,0x1d, +0x49,0x3b,0xc7,0xbb,0x50,0xae,0xb9,0x6b,0xec,0xb7,0x28,0xb3, +0xbd,0xbd,0x0f,0x2b,0x6d,0xdf,0xee,0x47,0xda,0x62,0xe4,0x0f, +0x48,0xa8,0xfe,0x8e,0x3d,0x81,0xb8,0xbd,0xef,0x53,0xc8,0x5b, +0xbc,0x3c,0x8f,0x40,0x7d,0x65,0xec,0x35,0x04,0xea,0x2d,0x63, +0x6f,0x22,0xd0,0xbc,0x3a,0xf6,0x16,0xca,0x6c,0x3f,0xdf,0x45, +0xd6,0x3e,0xfb,0x2f,0x08,0x94,0x63,0x63,0x5f,0xc8,0xe9,0xee, +0x39,0xf6,0x1e,0xb2,0xf6,0xe7,0xf7,0x11,0xfc,0x4d,0xeb,0x3f, +0x90,0xb2,0x33,0xfc,0x10,0x81,0xee,0xe7,0x63,0xff,0x41,0xde, +0x3e,0xf3,0x23,0x04,0xca,0xc3,0xb1,0x8f,0x45,0xb3,0x51,0x60, +0xbf,0xf7,0x19,0x32,0x7a,0x26,0x5d,0x81,0xfe,0x27,0xa3,0x7b, +0xdf,0xf8,0x06,0x48,0xeb,0x67,0xc7,0x37,0x42,0x56,0xb3,0xc7, +0x78,0x0c,0x81,0xbe,0x7b,0x3c,0x8e,0xb8,0x66,0xb6,0xf1,0x0c, +0x02,0x7d,0xc7,0x78,0x0e,0x81,0x7a,0xe4,0x78,0x1e,0xa1,0x6a, +0xd4,0x78,0x01,0x59,0xd5,0xf1,0xf1,0x15,0xc8,0x28,0x56,0xc6, +0x37,0x46,0xf0,0x81,0xd6,0x4d,0x91,0xd5,0x7d,0x7b,0x7c,0x33, +0x64,0x15,0xbb,0xe3,0xa5,0x08,0xd4,0x83,0xc7,0x1d,0x04,0x7a, +0xb7,0x71,0x17,0xe5,0xca,0xd5,0x71,0x1f,0xe5,0xda,0x87,0xf1, +0x00,0x19,0xed,0xff,0x78,0x19,0xd2,0x9a,0xa5,0xc6,0xcb,0x11, +0x28,0x4e,0xc6,0x57,0x22,0x63,0xcf,0xb8,0x0a,0x19,0xcd,0x83, +0xe3,0x45,0x04,0xda,0xc7,0xf1,0xcd,0xb1,0x4a,0xb5,0x74,0x7c, +0x0b,0x14,0x54,0x8b,0xc6,0xbf,0x8c,0xc0,0xf6,0xe7,0x6b,0xc8, +0xe8,0xbe,0x37,0xbe,0x3d,0x52,0xca,0xe1,0xf1,0x1d,0x90,0xb6, +0x77,0xdd,0x09,0x81,0xf2,0x68,0x7c,0x67,0x04,0x3a,0x83,0xf1, +0x5d,0x51,0xa2,0x3e,0x35,0xbe,0x1b,0x02,0xd5,0xcd,0xf1,0x6f, +0xa2,0x5c,0x33,0xdf,0xf8,0x9e,0x08,0xed,0xd9,0xf6,0xc1,0x6a, +0xdb,0xfb,0x7d,0x91,0xb6,0xef,0xdc,0x1f,0x19,0xcd,0x0f,0xe3, +0xdf,0x41,0x5c,0xe7,0x3b,0x7e,0x10,0x42,0x3b,0xc3,0x83,0x51, +0xb0,0xf7,0x3b,0x04,0x25,0x9a,0x87,0xc6,0x0f,0x43,0xde,0xde, +0xe9,0x70,0xc4,0x94,0xf3,0xe3,0xba,0xd3,0x8e,0xdb,0x7f,0x2f, +0x55,0x1d,0x18,0xff,0x1e,0xb2,0xea,0x91,0xe3,0x47,0x23,0x63, +0x3f,0x73,0x0c,0x4a,0x94,0xcf,0xe3,0xc7,0x22,0xb4,0x18,0x39, +0x1e,0xa1,0x3d,0xe7,0x09,0x28,0x53,0xbe,0x8c,0x9f,0x8c,0x72, +0xdb,0xb3,0x53,0x10,0x6a,0xe6,0x1e,0x3f,0x0d,0x31,0x3b,0xe7, +0xd3,0x51,0xae,0xda,0x3a,0x7e,0x26,0x12,0xb6,0x9e,0x8d,0x82, +0xea,0xe0,0xf8,0xb9,0x28,0x2a,0xb7,0xc7,0x7f,0x80,0x50,0x33, +0xd7,0xf8,0x79,0xc8,0x2a,0x07,0xc7,0x7f,0x88,0xb4,0xed,0xf3, +0x8f,0x90,0xb2,0x7d,0xf8,0x31,0x42,0xf5,0x98,0xf1,0x4a,0x84, +0xaa,0xcf,0xe3,0x35,0x48,0xd9,0xbf,0xd7,0x22,0x54,0xef,0x19, +0xaf,0x43,0x5a,0xb5,0x69,0xbc,0x1e,0x69,0xf5,0xf8,0xf1,0x46, +0x94,0xa8,0x7e,0x8d,0x37,0xa3,0x60,0xfb,0xd3,0x82,0xd0,0xe2, +0xaa,0x0d,0x39,0xcd,0xb7,0xe3,0xed,0x08,0x2d,0x1e,0x3a,0x10, +0x5a,0x4e,0x74,0x22,0xb4,0xbc,0xe9,0x82,0xab,0x5a,0x34,0xde, +0x8d,0xb8,0xfd,0x7c,0x1f,0x02,0xe5,0xff,0xf8,0x00,0x42,0xf5, +0xbf,0xf1,0x41,0x84,0x96,0x43,0x63,0x08,0x2d,0x87,0x26,0x50, +0xb0,0xf8,0xbd,0x14,0x59,0xcd,0x2d,0xe3,0xbf,0x40,0xde,0xce, +0xe1,0x72,0x84,0x96,0x67,0x57,0x22,0x65,0x67,0x77,0x1d,0x42, +0x3b,0x8b,0x1b,0x10,0x5a,0xce,0xfd,0x0a,0xa1,0xe5,0xdc,0xcd, +0xc8,0xaa,0x8f,0x8e,0xdf,0x83,0x12,0xd5,0xeb,0xf1,0x87,0x90, +0x50,0xcd,0x1a,0xff,0x03,0x0a,0x9a,0x0d,0xc6,0x5f,0x40,0x68, +0x3f,0xff,0x12,0x8a,0xaa,0xc5,0xe3,0xaf,0x22,0x61,0xfb,0xfc, +0x1a,0x42,0x4f,0xeb,0x1b,0x08,0x2d,0xa7,0xdf,0x41,0x4e,0xb5, +0x72,0xfc,0x3d,0xc4,0x54,0xeb,0xc7,0xff,0x85,0x82,0xe5,0xe5, +0x7f,0x10,0x57,0xdd,0x1f,0xff,0x0c,0x59,0xc5,0xf1,0xc4,0x86, +0x08,0xd5,0xe3,0x27,0x36,0x41,0xa8,0x5a,0x30,0x51,0x8a,0xa2, +0x66,0xb0,0x09,0x1f,0xa1,0xea,0xc2,0xc4,0x97,0x51,0xd4,0x3c, +0x36,0xf1,0x55,0x94,0x2b,0xde,0x26,0xb6,0x43,0xa8,0x1a,0x31, +0xb1,0x03,0x42,0xd5,0x8e,0x89,0x83,0x90,0xd5,0xfc,0x37,0x71, +0x30,0x42,0xe5,0xd7,0xc4,0x21,0x28,0xb7,0xef,0x3c,0x14,0x29, +0xc5,0xd8,0xc4,0x61,0xc8,0xe9,0xbc,0x26,0x0e,0x47,0x46,0x7b, +0x3d,0x71,0x14,0x52,0xf6,0x0c,0x47,0x23,0x6d,0xdf,0x73,0x2c, +0x42,0x9d,0xe3,0xc4,0xf1,0x08,0xf5,0xbe,0x13,0x67,0x20,0x6d, +0x7f,0x3e,0x13,0x61,0x85,0xd6,0xb3,0x11,0xaa,0xdf,0x4d,0x9c, +0x87,0x50,0xb9,0x30,0x71,0x3e,0x0a,0xca,0xc3,0x89,0x0b,0x91, +0x52,0x1d,0x99,0xa8,0x44,0xb8,0x95,0xd6,0x2a,0x84,0xb6,0x07, +0x35,0x48,0xa8,0xbf,0x4c,0xd4,0x21,0xa9,0xd8,0x98,0xa8,0x47, +0x52,0x77,0xb4,0x89,0x4e,0x84,0x9a,0x55,0x26,0xfa,0x90,0xd2, +0xfd,0x73,0x62,0x00,0xa1,0xf2,0x77,0x62,0x08,0xa1,0x66,0xa6, +0x89,0x11,0x64,0x6c,0xcf,0xc6,0x91,0x50,0x5c,0x4e,0x4c,0x22, +0xad,0x7c,0x9e,0x98,0x41,0xce,0xf6,0x7c,0x1d,0x52,0xba,0x37, +0x4d,0x5c,0x82,0x50,0xbd,0x78,0xe2,0x67,0x48,0x69,0x86,0x9c, +0xb8,0x12,0xa1,0x66,0xaf,0x89,0xab,0x10,0xda,0xb9,0x5d,0x8d, +0x72,0xc5,0xdb,0xc4,0x75,0x08,0x55,0x73,0x26,0x6e,0x40,0xb9, +0xea,0xcb,0xc4,0x4d,0x08,0x55,0x3f,0x27,0x7e,0x85,0xd0,0xce, +0xf9,0x66,0xa4,0x14,0x8b,0x13,0xb7,0x22,0xb4,0xb3,0xd0,0xcc, +0x3d,0xa1,0x38,0x0f,0x35,0xdb,0x4d,0x3c,0x80,0x9c,0xe6,0xa1, +0x89,0x07,0x91,0xb4,0xe7,0xfc,0x1d,0x52,0xca,0xe5,0x89,0xdf, +0x23,0x54,0xdd,0x9f,0x78,0x18,0xa1,0xea,0xfe,0xc4,0x23,0x28, +0xd8,0x39,0x3c,0x8a,0x94,0x6a,0xed,0xc4,0x1f,0x90,0x57,0xbd, +0x9a,0x78,0x0c,0x05,0xdd,0x43,0x26,0x1e,0x47,0xa8,0x9a,0x30, +0xf1,0x04,0xe2,0x9a,0x2d,0x26,0x9e,0x41,0xa8,0xfe,0x31,0xf1, +0x27,0x14,0xed,0x19,0x9f,0x45,0xd6,0xe2,0xfc,0x79,0x14,0x35, +0xdf,0x4c,0xbc,0x80,0x50,0x73,0xe7,0xc4,0x8b,0x58,0xad,0x1a, +0x38,0xf1,0x67,0xa4,0x2d,0x26,0x5f,0x42,0x51,0xef,0x39,0xf1, +0x32,0x42,0xf5,0xa4,0x89,0x57,0x11,0xee,0xae,0xf5,0x75,0x64, +0xd4,0xa7,0x26,0x94,0xa3,0x13,0x9a,0x1d,0x8a,0x9a,0x93,0x26, +0xde,0x42,0x5e,0xf5,0x6b,0xe2,0x6d,0xc4,0xd5,0x43,0x27,0x94, +0xaf,0x13,0x9a,0x47,0x8a,0x9a,0xab,0x26,0x94,0xaf,0x13,0xf6, +0xbf,0x19,0xad,0xbb,0xde,0xc4,0xa7,0x08,0xd5,0xe7,0x26,0xfe, +0x8b,0x50,0xb3,0xc7,0x64,0x1c,0x45,0xed,0xef,0x64,0x1a,0x45, +0xed,0xe9,0x64,0x0e,0x59,0xe5,0xf8,0x64,0x1e,0x31,0xdd,0xc7, +0x26,0x57,0xa0,0xa8,0x33,0x98,0xdc,0x18,0xa1,0xe2,0x67,0x72, +0x33,0x84,0x8a,0xf3,0xc9,0x52,0x84,0x3a,0xa3,0xc9,0x72,0x84, +0xea,0xd1,0x93,0x5f,0x41,0xa8,0x1a,0x3a,0xb9,0x2d,0x42,0xf5, +0xd4,0xc9,0x6f,0xa0,0xa0,0xbe,0x3c,0xb9,0x0b,0x12,0x8a,0xf9, +0xc9,0xdd,0x50,0xd4,0xd9,0x4c,0xee,0x8e,0xa2,0xce,0x78,0xf2, +0x9b,0x28,0xea,0x8c,0x27,0xf7,0x42,0xa8,0x9c,0x9f,0xdc,0x1b, +0x45,0xd5,0xc4,0xc9,0xfd,0x90,0x55,0x1c,0x4e,0xee,0x8f,0x50, +0x7d,0x7a,0xf2,0x40,0x84,0xaa,0x1d,0x93,0x07,0x21,0xb4,0xbf, +0x3b,0x04,0xa1,0xea,0xc5,0xe4,0xe1,0x28,0x2a,0x6e,0x26,0x8f, +0x44,0x68,0x7f,0xf7,0x5d,0x14,0x15,0x37,0x93,0xc7,0x21,0xd4, +0x7d,0x60,0xf2,0x04,0x14,0x15,0x5b,0x93,0x27,0x22,0x54,0xff, +0x9e,0x3c,0x09,0x31,0xd5,0xf3,0xc9,0x53,0x10,0xda,0xb3,0x9c, +0x81,0x9c,0xed,0xd5,0x59,0x08,0xed,0x59,0xce,0x41,0xca,0xf6, +0xff,0x5c,0x14,0x15,0x8b,0x93,0x17,0x23,0xa1,0xb3,0x9d,0x54, +0x6d,0x98,0x54,0x4d,0x28,0xea,0x7e,0x34,0xd9,0x8a,0xbc,0x7a, +0xe7,0x64,0x3b,0xe2,0x8a,0xb3,0xc9,0x2e,0xa4,0xec,0xd9,0x7b, +0x90,0x55,0x6c,0x4f,0xf6,0x63,0x95,0x72,0x78,0x72,0x02,0x69, +0xe5,0xea,0xe4,0x14,0x42,0x7b,0xbf,0xb5,0x08,0x6d,0x3f,0xa6, +0x11,0xda,0xe7,0xcc,0x22,0x6f,0x67,0x31,0x8f,0x8c,0xe6,0xef, +0xc9,0x05,0x84,0xaa,0xa7,0x93,0xeb,0x10,0x2a,0xbf,0x26,0x2f, +0x43,0x51,0xf9,0x33,0x79,0x0d,0xd2,0xea,0x59,0x93,0xbf,0x41, +0xa8,0x3a,0x3b,0x79,0x0b,0x42,0xcd,0x34,0x93,0x8f,0x21,0x54, +0x2d,0x9e,0x7c,0x1c,0x45,0xe5,0xd8,0xe4,0x93,0xc8,0x7f,0x5f, +0xeb,0x1f,0x51,0x54,0x5e,0x4d,0x3e,0x8d,0xa2,0xee,0x02,0x93, +0x7f,0x42,0xd1,0xfe,0xee,0x39,0x14,0x95,0xab,0x93,0xaf,0xa0, +0xa8,0x9c,0x9c,0x7c,0x03,0x29,0xdb,0x8f,0xb7,0x51,0xb4,0xe7, +0x7f,0x17,0xa1,0x9d,0xe7,0x5f,0x90,0x57,0x7d,0x9b,0x7c,0x0f, +0x25,0xca,0x9f,0xc9,0x0f,0x90,0x53,0x9d,0x9a,0xfc,0x27,0x32, +0xba,0x17,0x4d,0x7e,0x84,0xb8,0xea,0xe9,0xe4,0xc7,0x58,0x65, +0x7f,0xbf,0x8c,0xd0,0xe2,0xe2,0x13,0x14,0x95,0xe7,0x93,0x9f, +0x22,0xa1,0x79,0x7e,0xf2,0xbf,0x28,0x2a,0xcf,0xa7,0x36,0x44, +0x51,0x79,0x3e,0x55,0x82,0x0a,0xed,0xdb,0x54,0x1c,0xe5,0xca, +0xc9,0xa9,0x02,0x42,0xf5,0xa4,0xa9,0x15,0x48,0xab,0x36,0x4e, +0x79,0x48,0x2b,0x7f,0xa6,0x7c,0x84,0x9a,0x37,0xa6,0x02,0x84, +0x8a,0xb9,0xa9,0x32,0x14,0x55,0x63,0xa7,0xca,0x51,0xd4,0xbe, +0x4c,0xad,0x42,0xca,0xbe,0xb7,0x88,0xa2,0x6a,0xd3,0xd4,0xe6, +0x08,0xb5,0xe7,0x53,0x5b,0x20,0xd4,0x1d,0x75,0x6a,0x35,0x8a, +0x8a,0xb1,0xa9,0x2d,0x11,0x57,0x0e,0x4e,0x6d,0x85,0x9c,0xce, +0x75,0x6a,0x1b,0xa4,0x54,0x2f,0xa6,0xb6,0x45,0x41,0x39,0x3b, +0xf5,0x35,0x84,0xca,0x87,0xa9,0xaf,0x23,0xa9,0x39,0x72,0x6a, +0x07,0x14,0x54,0xd7,0xa6,0x76,0x42,0xa8,0x7e,0x31,0xb5,0x3b, +0x42,0xcd,0xa9,0x53,0x7b,0x20,0x54,0xce,0x4c,0xed,0x87,0x50, +0x39,0x36,0x75,0x20,0x56,0x5d,0xa1,0xf5,0x60,0x54,0x28,0x6e, +0xa6,0x0e,0x41,0x56,0x75,0x75,0xea,0x30,0x64,0x15,0x93,0x53, +0x47,0x23,0xa3,0xf3,0x9b,0x3a,0x16,0xa1,0x72,0x6c,0xea,0x38, +0x14,0xed,0x19,0x4e,0x42,0x46,0xf3,0xe2,0xd4,0xc9,0x08,0xd5, +0xef,0xa7,0x4e,0x43,0xa8,0x5c,0x9d,0xba,0x10,0x09,0xcd,0xb7, +0x53,0x3f,0x42,0xa8,0xbc,0x9d,0xba,0x08,0x45,0xc5,0xd9,0x54, +0x0d,0x2a,0x74,0xf6,0x53,0xcd,0x08,0x35,0x2b,0x4c,0xb5,0x22, +0x65,0x7b,0x32,0x8c,0x98,0x62,0x77,0x6a,0x0d,0xc2,0x0b,0xb4, +0x4e,0x23,0x69,0xfb,0x34,0x83,0xb4,0x7d,0xce,0x3c,0xca,0x55, +0x37,0xa6,0x7e,0x86,0xa2,0x7a,0xc0,0xd4,0x65,0x88,0xcd,0x69, +0x55,0x1f,0x9e,0x52,0xae,0x85,0x9a,0x45,0xa6,0xae,0x45,0x46, +0x7d,0x65,0xea,0x7a,0x84,0xb6,0xe7,0xb7,0x20,0xb4,0xf7,0xb8, +0x17,0xa1,0xe6,0x92,0xa9,0x07,0x50,0x54,0x6e,0x4c,0xfd,0x0e, +0xa1,0xbd,0xc7,0xe3,0x08,0xab,0xb5,0x3e,0x81,0xac,0xe6,0x96, +0x29,0xe5,0xd8,0x94,0x9e,0x3d,0xd4,0xdc,0x3f,0xf5,0x2c,0x42, +0xd5,0xa9,0xa9,0x3f,0x23,0xd4,0x7c,0x33,0xf5,0x12,0x8a,0x9a, +0x29,0xa7,0x5e,0x45,0x5c,0x79,0x34,0xf5,0x06,0x42,0xd5,0xae, +0xa9,0x37,0x11,0xda,0xfe,0xbd,0x83,0x50,0xf7,0x82,0xa9,0x8f, +0x50,0x54,0x7e,0xae,0xd9,0x08,0xa1,0xee,0x00,0x6b,0x12,0x08, +0x9b,0xb4,0xae,0x40,0xa8,0xfd,0x5d,0xb3,0x29,0xc2,0x06,0xad, +0x9b,0x21,0x54,0xad,0x5c,0xe3,0x21,0xa5,0xbe,0xb0,0xc6,0x47, +0x56,0xb3,0xd4,0x9a,0x00,0xa1,0x6a,0xea,0x9a,0x22,0x42,0xd5, +0xd0,0x35,0xdb,0x20,0xd4,0x39,0xad,0xd9,0x1e,0x45,0xd5,0x85, +0x35,0x3b,0x21,0xd4,0x1d,0x63,0xcd,0xce,0x08,0x75,0xf7,0x58, +0xb3,0x2b,0x32,0xca,0xcd,0x35,0xbb,0x23,0x54,0xfc,0xac,0xd9, +0x07,0xa1,0x7d,0xd7,0x7e,0x08,0x75,0xc7,0x58,0xb3,0x3f,0x8a, +0x9a,0xdb,0xd7,0x1c,0x88,0xa2,0x66,0xbf,0x35,0xdf,0x45,0x5c, +0x3d,0x75,0xcd,0x51,0x08,0x55,0xc7,0xd7,0x7c,0x0f,0xe5,0xf6, +0x5e,0x27,0x22,0xd4,0xdd,0x63,0xcd,0x49,0x08,0x55,0xd3,0xd6, +0x9c,0x82,0x50,0xf5,0x7d,0xcd,0x69,0x08,0x75,0x0f,0x5a,0x73, +0x06,0x42,0xcd,0x8b,0x6b,0xce,0x47,0xa8,0x79,0x71,0xcd,0x45, +0x08,0x35,0x2f,0xae,0xa9,0x41,0xa8,0x58,0x5c,0x53,0x87,0x50, +0xb3,0xe3,0x9a,0x66,0x84,0x9a,0x1d,0xd7,0xb4,0x20,0x54,0x5f, +0x5e,0xd3,0x8a,0x50,0xfd,0x63,0x4d,0x1b,0x42,0xf5,0x8f,0x35, +0x1d,0x08,0x55,0x0f,0xd7,0xd6,0x21,0xa3,0x9a,0xbc,0xb6,0x1d, +0x79,0xe5,0xdd,0xda,0x4e,0x84,0x8a,0xf5,0xb5,0x5d,0x48,0x2b, +0x2e,0xd7,0xf6,0x21,0x54,0xef,0x59,0x3b,0x80,0xbc,0xce,0x6f, +0xed,0x20,0x42,0xe5,0xc3,0xda,0x21,0xc4,0xec,0xdf,0xc7,0x50, +0xa2,0xd8,0x5a,0x3b,0x81,0xb8,0xce,0x7e,0xed,0x24,0x8a,0xaa, +0xdd,0x6b,0xa7,0x10,0xd7,0xbd,0x60,0xed,0x1a,0x84,0xca,0xa5, +0xb5,0xd3,0x08,0xd5,0xcf,0xd6,0x1a,0xe5,0x4d,0x28,0x6b,0x7f, +0x82,0x50,0xfd,0x6c,0xed,0x25,0x88,0xdb,0x33,0x5c,0x8a,0x98, +0xe6,0x93,0xb5,0x3f,0x43,0x42,0xf7,0xfd,0xb5,0x3f,0x47,0x4e, +0x75,0x67,0xed,0x65,0x08,0x17,0xb5,0x5e,0x8e,0x50,0xbd,0x70, +0xed,0x35,0x08,0x97,0xb4,0xde,0x88,0x12,0xdd,0xf1,0xd7,0xde, +0x82,0x50,0x33,0xd5,0xda,0xdb,0x10,0xda,0xf7,0xdf,0x8e,0x70, +0xbd,0xd6,0x3b,0x11,0xda,0xb3,0xdc,0x8b,0xd0,0xbe,0xf3,0x41, +0x94,0xd8,0x7e,0x3c,0x84,0xd0,0x9e,0xf1,0x11,0x84,0xf6,0x2c, +0x8f,0x22,0xd4,0xfd,0x73,0xed,0x53,0x08,0x55,0x27,0xd7,0x3e, +0x8d,0xd0,0x9e,0xf1,0x19,0x84,0x9a,0x07,0xd6,0x3e,0x8b,0xac, +0x62,0x66,0xed,0x8b,0x08,0x35,0xdf,0xaf,0x7d,0x15,0xa1,0xea, +0xca,0xda,0xd7,0x10,0xaa,0xa6,0xac,0x7d,0x13,0xa1,0xde,0x6d, +0x3a,0x42,0x4e,0x67,0x31,0x5d,0x44,0xa8,0xb9,0x62,0x7a,0x2b, +0x84,0x3a,0xdf,0xe9,0xad,0x91,0x54,0xaf,0x9f,0x56,0x1f,0x98, +0x56,0x6d,0x0b,0x75,0x37,0x98,0xde,0x01,0x79,0xc5,0xca,0xf4, +0x1e,0x48,0xeb,0xb9,0xa7,0xf7,0x42,0x89,0xea,0xd5,0xf4,0xde, +0xc8,0x28,0x27,0xa7,0xf7,0x45,0xa8,0xb3,0x98,0xde,0x0f,0x39, +0xd5,0xb7,0xe9,0x43,0x10,0xfe,0x5a,0xeb,0xa1,0x08,0x75,0xdf, +0x98,0x3e,0x0c,0x89,0xff,0xd3,0x7a,0x04,0x42,0xdd,0x3d,0xa6, +0x8f,0x44,0x42,0xf5,0x67,0xfa,0x24,0xe4,0x35,0xb3,0x4e,0x9f, +0x8c,0x50,0x35,0x6a,0xfa,0xfb,0x08,0x75,0x27,0x99,0x3e,0x05, +0xa1,0xce,0x6c,0xfa,0x54,0x84,0x3a,0xb3,0xe9,0x33,0x50,0xa2, +0xb3,0x99,0x3e,0x13,0x69,0xf5,0xd7,0xe9,0xb3,0x90,0xd2,0x7e, +0x4e,0x9f,0x8d,0xb8,0x7d,0xfe,0x39,0x08,0x75,0xc6,0xd3,0xe7, +0x23,0x67,0xfb,0x77,0x21,0x42,0x9d,0xf7,0xf4,0x45,0x28,0xd1, +0x9c,0x3f,0x5d,0x89,0x50,0x77,0xe7,0xe9,0x2a,0x64,0xd4,0xbb, +0xa7,0x6b,0x50,0x50,0xbe,0x4c,0xd7,0x22,0xab,0x5c,0x9a,0xae, +0x43,0xa8,0x5e,0x3c,0x5d,0x8f,0x82,0xfa,0xd3,0x74,0x23,0x12, +0xf6,0x2c,0x2d,0x28,0xa8,0x06,0x4d,0xf7,0x20,0x6e,0xfb,0xd3, +0x8b,0x82,0x72,0x7e,0xba,0x1f,0x71,0xc5,0xea,0xf4,0x20,0x32, +0xb6,0xf7,0x43,0xf0,0xec,0x79,0x47,0x10,0xea,0xbe,0x33,0x3d, +0x8a,0x98,0xfd,0xec,0x18,0xd2,0xaa,0x95,0xd3,0x6b,0x10,0xb3, +0xb3,0x58,0x8b,0x50,0x7d,0x79,0x7a,0x06,0xa1,0xee,0x29,0xd3, +0xb3,0x08,0x75,0x9f,0x9a,0x9e,0x43,0x85,0xea,0xfe,0xf4,0x02, +0x92,0x76,0x86,0xeb,0x90,0xd2,0xbc,0x31,0xbd,0x88,0xa2,0x72, +0x70,0xfa,0x27,0x28,0xb9,0x5f,0xeb,0xa5,0x28,0x28,0xa7,0xa6, +0x2f,0x43,0x68,0x7b,0x78,0x39,0xc2,0x8c,0xd6,0x2b,0x11,0xda, +0x79,0x5d,0x87,0xa2,0xbd,0xfb,0xf5,0x08,0x95,0x57,0xd3,0x16, +0x97,0xca,0xd3,0xd0,0x3e,0xf3,0x26,0x84,0xea,0x85,0xd3,0xbf, +0x46,0xa8,0xde,0x3d,0xfd,0x1b,0x14,0xec,0xdf,0x2d,0x56,0x2c, +0x97,0x95,0x87,0xd3,0xb7,0x21,0xad,0x9e,0x38,0x7d,0x3b,0x72, +0x16,0x77,0x77,0x23,0xad,0x3b,0xd1,0xf4,0x3d,0x88,0x6b,0xae, +0x9a,0xbe,0x0f,0x85,0x0a,0xad,0xf7,0x23,0x66,0xbf,0xfb,0x00, +0x52,0xb6,0xe7,0x0f,0x22,0x61,0xfb,0xfa,0x7b,0x84,0xba,0x83, +0x4c,0x3f,0x8c,0xd0,0xf2,0xe5,0x11,0x24,0xed,0xb3,0x1f,0x45, +0xa8,0x79,0x7a,0xfa,0x0f,0x08,0xed,0xdf,0x9f,0x40,0xd2,0xe2, +0xe5,0x69,0x84,0x9a,0xa7,0xa7,0x9f,0x81,0xaf,0xba,0x39,0xfd, +0x1c,0x56,0xa8,0x37,0x4d,0xbf,0x80,0xb4,0xee,0x8f,0xd3,0x2f, +0x22,0xb4,0xcf,0x78,0x0d,0x05,0x7b,0xce,0xd7,0x91,0xb5,0xe7, +0x7a,0x07,0x25,0xf6,0xfd,0x7f,0x41,0x5a,0x35,0x7d,0xfa,0xaf, +0x48,0xda,0xef,0xfd,0x03,0x79,0xf5,0xef,0xe9,0x0f,0x50,0x62, +0x7f,0xff,0x6f,0x14,0x2c,0x37,0xff,0x83,0x82,0xd5,0x8a,0x8f, +0x11,0xaa,0x7e,0x4d,0x7f,0x82,0xac,0xea,0x82,0x42,0xe7,0x7f, +0x52,0x9a,0x43,0x66,0x4a,0x10,0xea,0x7d,0x66,0xe2,0x08,0xf5, +0x3e,0x33,0x09,0xa4,0x55,0xff,0x67,0x92,0x08,0x35,0xaf,0xcc, +0xa4,0x51,0xd0,0x59,0xce,0xe4,0x10,0xea,0x8e,0x31,0x93,0x47, +0xa8,0xf7,0x9f,0x29,0x20,0xd4,0xfb,0xcf,0x6c,0x8c,0x50,0xf7, +0x88,0x99,0x4d,0x11,0xaa,0x56,0xce,0x38,0x08,0xb5,0x2f,0x33, +0x3e,0x42,0xcd,0x3d,0x33,0x11,0xd2,0x9a,0xf5,0x67,0xca,0x11, +0x53,0x8d,0x98,0xa9,0x40,0xa8,0x3a,0x39,0xf3,0x65,0xe4,0x75, +0xf6,0x33,0x5b,0x23,0x54,0x1d,0x9b,0xd9,0x0e,0xa1,0x72,0x7c, +0x66,0x07,0x14,0x34,0x7b,0xcd,0xec,0x88,0xa2,0xf6,0x6b,0x66, +0x57,0x6c,0xa6,0xde,0x34,0xb3,0x1b,0x42,0xd5,0xe8,0x99,0x3d, +0x50,0x54,0x9f,0x9d,0xd1,0x99,0xcd,0xd8,0x7f,0xc7,0xd6,0xde, +0xce,0xec,0x8b,0x50,0x73,0xdd,0xcc,0xb7,0x51,0xfc,0x50,0xeb, +0x7e,0x08,0x35,0x87,0xcd,0x1c,0x80,0x50,0x35,0x7d,0xe6,0x40, +0x84,0x9a,0x2d,0x67,0x0e,0x42,0xa8,0x73,0x9d,0x39,0x0c,0xc5, +0x7f,0x69,0x3d,0x02,0x45,0x9d,0xd9,0xcc,0x77,0x51,0xd4,0x99, +0xcd,0x1c,0x85,0xb4,0xea,0xf6,0xcc,0x31,0x58,0x6d,0xfb,0x74, +0x2c,0x0a,0x9a,0xe1,0x66,0x4e,0x40,0x5a,0x33,0xea,0xcc,0xc9, +0x08,0x35,0xe3,0xcd,0x9c,0x82,0x9c,0x62,0x66,0xe6,0x34,0x84, +0x8a,0xa1,0x99,0xd3,0x51,0x66,0x67,0x7b,0x06,0xf2,0xb6,0xff, +0x67,0x21,0x54,0x6c,0xcd,0x9c,0x83,0x50,0x73,0xd4,0xcc,0x0f, +0x10,0x6a,0x06,0x98,0x39,0x0f,0x31,0xc5,0xd5,0xcc,0x05,0x08, +0x75,0xff,0x9a,0xf9,0x21,0xd2,0x2b,0xb5,0x5e,0x8c,0x0a,0x8b, +0x9f,0x6a,0xc4,0x75,0x7f,0x9b,0x69,0x40,0xa8,0xfa,0x30,0xd3, +0x88,0xd0,0xde,0xbd,0x19,0xa1,0xed,0x73,0x07,0x42,0xdb,0xcf, +0x6e,0x94,0xd9,0x1e,0xf6,0x20,0xb4,0xf3,0xea,0x45,0x68,0x7b, +0x35,0x84,0xd0,0xf6,0x6a,0x04,0x25,0x9a,0xbb,0x66,0x94,0xdb, +0x33,0x9a,0xb3,0x42,0xd5,0xbd,0x99,0x59,0x94,0x5b,0x1c,0xad, +0x43,0x68,0xcf,0xf3,0x13,0xc4,0x6d,0x3f,0x2e,0x45,0xf8,0x99, +0xd6,0x5f,0x20,0xb4,0x78,0xbb,0x1c,0xa1,0xf2,0x64,0xe6,0x2a, +0x04,0xba,0x1b,0xce,0x5c,0x83,0xd5,0x16,0xfb,0xea,0x9d,0x33, +0x56,0xd3,0x54,0xdb,0x67,0xee,0x45,0x64,0xf9,0xf4,0x00,0xa2, +0x0d,0xb4,0xfe,0x0e,0x91,0xee,0xa5,0x33,0x0f,0x23,0xb2,0xb3, +0xfb,0x23,0xe2,0x76,0xa6,0x2f,0x22,0xb2,0xfc,0x7b,0x0f,0x51, +0x4c,0xeb,0xdf,0x91,0xb5,0x3c,0xfa,0x00,0x91,0xe5,0xe2,0x3f, +0x11,0xb3,0x38,0xfd,0x17,0x22,0x7b,0x9e,0x7f,0x23,0x4a,0x69, +0xfd,0x04,0x25,0xf6,0x2c,0xff,0x45,0x5c,0xb5,0x75,0x76,0x03, +0xe4,0x5d,0xad,0x1b,0x22,0xa3,0x1c,0x9f,0xdd,0x08,0x49,0xe5, +0xf8,0x6c,0x0c,0x09,0x7d,0xdf,0x6c,0x1c,0x29,0x9d,0xeb,0x6c, +0x12,0x69,0xdd,0x69,0x67,0xb3,0x88,0x6c,0x2d,0x20,0x52,0x5f, +0x98,0x5d,0x81,0x82,0xee,0xab,0xb3,0x1b,0x23,0xae,0x5c,0x9d, +0xdd,0x04,0x39,0xc5,0xd6,0xec,0xa6,0xc8,0x6a,0xef,0x66,0x5d, +0xa4,0x95,0x57,0xb3,0x1e,0x0a,0x9a,0x29,0x67,0x03,0x24,0x74, +0x67,0x98,0x2d,0x22,0xb2,0xef,0xa9,0x40,0xa4,0xfa,0x32,0xbb, +0x2d,0xf2,0x8a,0xad,0xd9,0xaf,0x22,0xab,0xb8,0x99,0xdd,0x0e, +0xe5,0xea,0xf1,0xb3,0xdf,0x40,0x89,0xbd,0xcb,0x2e,0x88,0xec, +0x19,0x77,0x45,0xa4,0x9a,0x35,0xbb,0x07,0x72,0x3a,0xbf,0xd9, +0x6f,0xa2,0xa0,0xfb,0xed,0xec,0xb7,0x10,0xd9,0x7b,0x1c,0x80, +0xc8,0xde,0xe3,0x10,0x44,0xaa,0x1b,0xb3,0x87,0x22,0xa3,0xd9, +0x75,0x56,0x39,0x3d,0x6b,0xff,0x7f,0x28,0xdb,0xe7,0x23,0x10, +0xd9,0xbb,0x1e,0x8d,0xb8,0xee,0xfc,0xb3,0xc7,0x20,0x61,0xfb, +0x70,0x1c,0x8a,0xaa,0xcb,0xb3,0xc7,0x23,0xbe,0xa5,0xd6,0x13, +0x51,0xae,0xda,0x31,0x7b,0x12,0xb2,0xaa,0x4d,0xb3,0xa7,0xa0, +0xa0,0xb8,0x9c,0x3d,0x1b,0x45,0xc5,0xf3,0xec,0xb9,0x48,0x28, +0xee,0x67,0x2f,0x40,0xa4,0x19,0x69,0x56,0x77,0xbf,0x59,0x9d, +0x5b,0xa4,0x18,0x9b,0xad,0x42,0x64,0xfb,0x5a,0x8d,0x48,0x75, +0x76,0xf6,0x72,0xe4,0x54,0x37,0x66,0xaf,0x44,0x14,0x6a,0xbd, +0x0e,0x91,0x02,0x7a,0xf6,0x06,0x44,0x65,0x5a,0x7f,0x8d,0x48, +0xb5,0x78,0xf6,0x5e,0x44,0xab,0xb4,0xde,0x87,0x48,0x75,0x60, +0xf6,0x01,0x44,0x76,0x6e,0x2f,0x20,0xa7,0x19,0x68,0xf6,0x45, +0x78,0xf6,0x2e,0x2f,0x23,0xa5,0x1a,0x32,0xfb,0x1a,0xe2,0xb6, +0x97,0xef,0x22,0xb2,0x18,0xfb,0x2b,0x22,0xf5,0xf7,0xd9,0xf7, +0xb0,0x42,0x7d,0x79,0xf6,0xef,0xd8,0x4c,0x7d,0x64,0xf6,0x7d, +0xe4,0x6c,0x0f,0x3e,0x40,0x89,0xe6,0xa8,0xd9,0x0f,0x51,0xa6, +0x7e,0x34,0xfb,0x29,0x92,0x9a,0x91,0x66,0x3f,0x43,0xde,0xf6, +0xf2,0x73,0xa4,0x54,0x9f,0xe7,0x36,0x42,0xa4,0xd8,0x9a,0x8b, +0xa1,0x5c,0xf3,0xdf,0x5c,0x0a,0x91,0xce,0x6e,0x2e,0x8d,0x82, +0xe2,0x60,0x2e,0x8b,0x0a,0xe5,0xce,0xdc,0x0a,0xac,0xd4,0x33, +0xcf,0x6d,0x82,0x48,0xe7,0x38,0xb7,0x29,0x62,0x9a,0x1b,0xe7, +0x36,0x43,0xa4,0x5e,0x35,0xe7,0x21,0xd2,0x4c,0x3f,0xa7,0x3d, +0x9d,0xd3,0x5e,0x46,0xea,0x5b,0x73,0xab,0x10,0x29,0x8e,0xe7, +0x8a,0x88,0xbe,0xa2,0xb5,0x02,0x91,0x62,0x7d,0xee,0xcb,0x28, +0xea,0x1d,0xe6,0xb6,0x42,0x5c,0xf9,0x33,0xb7,0x2d,0x22,0xdd, +0x09,0xe6,0xbe,0x10,0xe9,0x6e,0x30,0xa7,0xf8,0x9d,0x53,0xff, +0x8a,0x94,0x0f,0x73,0xfb,0x22,0x52,0x2f,0x9c,0xdb,0x1f,0x91, +0x72,0x63,0xee,0x20,0x44,0xea,0x8b,0x73,0x87,0x20,0xd2,0x9d, +0x7c,0xee,0x50,0x44,0x3a,0xaf,0xb9,0x23,0x11,0x69,0x16,0x9d, +0x53,0x8f,0x9a,0x53,0x6f,0x8a,0x94,0x4b,0x73,0xc7,0x20,0xd2, +0x5d,0x7d,0xee,0x38,0xac,0xb4,0xf7,0x98,0x46,0x4a,0xf1,0x30, +0xa7,0x01,0x63,0x4e,0x75,0x38,0x52,0x8e,0xcd,0xcd,0x21,0xa1, +0xfa,0x35,0xb7,0x84,0xa2,0x6a,0xd3,0xdc,0xcf,0x11,0xd9,0xf3, +0x5e,0x8e,0x98,0xea,0xf5,0xdc,0xd5,0xc8,0xd9,0x99,0xa8,0xee, +0xce,0xe9,0xce,0x14,0xe9,0x7d,0xe6,0x7e,0x89,0x8c,0x3e,0x77, +0xee,0x26,0x64,0x15,0x8b,0x73,0xb7,0x23,0xd2,0x3d,0x67,0xee, +0x1e,0xac,0x56,0xcd,0x9c,0xbb,0x0f,0x19,0xdb,0xa7,0xfb,0x51, +0xa2,0xdc,0x99,0x7b,0x00,0x71,0x8b,0x81,0xdf,0x21,0xae,0xfe, +0x3e,0xf7,0x38,0x32,0x8a,0xfb,0xb9,0x27,0x10,0xd9,0x9e,0x3d, +0x89,0xb8,0xfa,0xf8,0xdc,0xd3,0x88,0x29,0xcf,0xe6,0x9e,0x45, +0xa4,0x39,0x60,0xee,0x05,0x44,0xb6,0xdf,0x7f,0x46,0xa4,0x59, +0x61,0xee,0x65,0x44,0xfb,0x68,0x7d,0x0d,0x91,0x6a,0xc4,0x9c, +0xe2,0x7a,0x4e,0xf1,0x1c,0x59,0x5c,0xa9,0x47,0xce,0x59,0x9d, +0x57,0xee,0xcf,0x7d,0x84,0xc8,0xce,0xe4,0x13,0x44,0xaa,0x33, +0x73,0xff,0x45,0x4a,0x77,0xa4,0xf9,0x0d,0x10,0xe9,0x9c,0xe6, +0x63,0x88,0x54,0x83,0xe6,0xf3,0x88,0xab,0x26,0xcd,0x17,0x10, +0xd9,0x9f,0x37,0x41,0x5a,0xf1,0x33,0xbf,0x29,0x12,0xca,0x9d, +0x79,0x1f,0x2b,0xf5,0x9c,0xf3,0x5b,0x21,0xa3,0x38,0x9c,0xdf, +0x06,0x91,0xce,0x7c,0x7e,0x3b,0x64,0xd5,0x8f,0xe7,0x77,0x41, +0xa4,0x38,0x98,0xdf,0x13,0x91,0xce,0x7e,0x7e,0x6f,0x44,0x8a, +0x89,0xf9,0x7d,0x11,0xa9,0xf6,0xcd,0x7f,0x1b,0x91,0x66,0x97, +0xf9,0xfd,0x11,0x7d,0x4f,0xeb,0x61,0x88,0x34,0xc7,0xcc,0x1f, +0x0e,0xa5,0xd1,0x97,0xe6,0x8f,0x42,0xb9,0x62,0x78,0xfe,0x18, +0x44,0xaa,0x8f,0xf3,0xc7,0x21,0x52,0x4d,0x9c,0x3f,0x11,0x71, +0xdd,0x13,0xe6,0x4f,0x42,0x64,0x7f,0x77,0x2a,0x22,0xcd,0x43, +0xf3,0x67,0x20,0xd2,0xfd,0x73,0xfe,0x2c,0x44,0xf6,0xef,0x67, +0x23,0x52,0x1d,0x98,0x3f,0x0f,0x91,0xe6,0xa4,0xf9,0xf3,0x11, +0xd9,0xef,0x5d,0x80,0x48,0x73,0xc2,0xfc,0xe5,0x48,0xda,0xbe, +0x5e,0x83,0xc8,0xf6,0xff,0x7a,0x44,0xf6,0xd9,0x37,0x23,0x36, +0xaf,0xf5,0x76,0x44,0xf6,0x3d,0x77,0x23,0x52,0xcd,0x9f,0xbf, +0x0f,0x69,0xdb,0xbf,0xc7,0x10,0xd9,0xfe,0x3f,0x81,0x48,0xf3, +0xd6,0xbc,0xe6,0x82,0x79,0xcd,0xe9,0x91,0x3d,0xd7,0xb3,0x48, +0xa8,0x96,0xcd,0x3f,0x87,0xcd,0xed,0xcc,0x5f,0xc4,0xe6,0xea, +0xdf,0xf3,0x9a,0x83,0xe7,0x2d,0xae,0xec,0x79,0x15,0x53,0xf3, +0xba,0x47,0x44,0x9a,0xc9,0xe6,0xdf,0x42,0xa4,0xf8,0x9c,0xff, +0x0b,0x72,0xb6,0xf7,0x7f,0x45,0xa4,0xde,0x30,0xff,0x1e,0x72, +0xca,0xa3,0xf9,0xbf,0x23,0xd2,0x3d,0x79,0xfe,0x7d,0x44,0xba, +0x3f,0xcf,0xff,0x1f,0x22,0xf5,0x8c,0xf9,0x0f,0x11,0xa9,0x97, +0xcc,0xff,0x07,0x91,0xee,0xcf,0xf3,0x9f,0x20,0xd2,0x9d,0x68, +0x21,0x8e,0x48,0xf5,0x73,0xc1,0x43,0xa4,0xfb,0xf3,0x42,0x80, +0x48,0xfd,0x7a,0x61,0x25,0x22,0xcd,0x82,0x0b,0x3a,0xf0,0x05, +0xd5,0xf8,0xa8,0x49,0xeb,0x6a,0x44,0xba,0x57,0x2f,0xa8,0xce, +0x2d,0xa8,0x2e,0x46,0xad,0x5a,0x55,0xcf,0x16,0x14,0x0b,0x51, +0xa7,0xd6,0xed,0xb1,0x99,0xf6,0x68,0x61,0x07,0x44,0xea,0xfb, +0x0b,0x7b,0xc0,0xbd,0x42,0xeb,0x37,0x11,0x57,0x3c,0x2d,0xec, +0x83,0x58,0x9b,0xd6,0x7d,0x91,0xb4,0xef,0xfc,0x36,0x22,0xcd, +0x94,0x0b,0xfb,0x21,0x52,0x6c,0x2f,0xec,0x8f,0xbc,0x72,0x7f, +0x41,0xb1,0xb9,0xa0,0xcf,0x88,0xd4,0xbf,0x16,0x8e,0x40,0xa4, +0xb9,0x7a,0xe1,0xbb,0x88,0x74,0x4f,0x5f,0x38,0x1a,0x79,0xf5, +0xdf,0x85,0xe3,0x11,0x69,0x36,0x5d,0x38,0x11,0x71,0xdd,0xd5, +0x17,0x7e,0x8c,0x82,0xe6,0xbf,0x85,0x4a,0x6c,0xae,0x79,0x6f, +0xa1,0x1a,0x91,0x66,0xd7,0x85,0x1a,0x6c,0xae,0x3e,0xb4,0xd0, +0x85,0x68,0x54,0xeb,0x17,0x4a,0xec,0xdd,0xc7,0xb0,0xb9,0xf2, +0x7c,0x61,0x02,0x91,0xfd,0xdd,0x24,0x72,0x3a,0x83,0x85,0x29, +0x44,0x9a,0x89,0x17,0x54,0x83,0x17,0x54,0x7f,0x23,0x7b,0xb6, +0xf5,0xa2,0xb9,0x37,0xb2,0x9f,0xbd,0x1c,0xd1,0x1a,0xad,0x57, +0x22,0xaf,0x7a,0xbb,0x70,0x15,0x2a,0x54,0x5f,0x16,0xae,0x41, +0x52,0xf9,0xb0,0x70,0x2d,0xd2,0xb6,0x27,0x5f,0xd8,0xdc,0xce, +0xf9,0x26,0x44,0xf6,0x8e,0xb7,0x20,0x52,0x2c,0x2d,0xdc,0x86, +0xcd,0x55,0x7b,0x17,0xee,0x46,0x64,0xcf,0xf2,0x00,0x22,0xf5, +0x80,0x85,0xdf,0x23,0xa1,0xba,0xbf,0xf0,0x10,0x22,0x3d,0xeb, +0xc2,0x63,0x88,0x94,0x47,0x0b,0xca,0x89,0x05,0xd5,0xdb,0x68, +0x41,0xeb,0x53,0x88,0xf4,0x0e,0x0b,0xcf,0xa0,0x5c,0xbd,0x79, +0xe1,0x05,0x64,0xec,0x0c,0x5f,0x45,0xf4,0x53,0xad,0xaf,0x21, +0x52,0x8f,0x59,0x78,0x1d,0xd1,0xa2,0xd6,0x37,0x10,0xd9,0x7e, +0xbc,0x83,0x84,0xfa,0xda,0xc2,0x3f,0x10,0xd9,0xf3,0xfc,0x1f, +0xa2,0x9f,0x69,0xfd,0x00,0x91,0xee,0x09,0x0b,0xff,0x42,0x89, +0x62,0x5b,0xdb,0xf5,0x3f,0x9b,0x6b,0x26,0x5e,0x57,0x82,0x48, +0x33,0xd3,0xba,0x38,0x22,0xed,0xe3,0xba,0x24,0x22,0xf5,0xb0, +0x75,0x29,0x44,0xda,0xf7,0x75,0x69,0x44,0xda,0xd3,0x75,0x59, +0x44,0x3a,0x83,0x75,0x39,0xc4,0xb4,0x5f,0xeb,0x56,0xa0,0xa0, +0xef,0x5e,0xb7,0x09,0x22,0x9d,0xc7,0xba,0x4d,0x11,0x29,0xce, +0xd7,0x6d,0x86,0xe8,0x32,0xad,0xa5,0x88,0x74,0x87,0x59,0x17, +0x22,0xd2,0x39,0xad,0x2b,0x22,0xd2,0x39,0xad,0xab,0x40,0xa4, +0xde,0xb9,0x6e,0x35,0xa2,0x1b,0xb5,0x7e,0x15,0x39,0x9d,0xd9, +0xba,0xaf,0x21,0x52,0x5d,0x5b,0xf7,0x75,0x94,0x69,0xdf,0xd7, +0x6d,0x87,0x48,0x77,0xc0,0x75,0x3b,0x20,0xfa,0x8d,0xd6,0xdd, +0x10,0x7b,0x54,0xeb,0xee,0x88,0x2e,0xd1,0xba,0x07,0x4a,0x54, +0xb3,0xd6,0xed,0x89,0x48,0xf1,0xb1,0xee,0x00,0x44,0xaa,0x95, +0xeb,0xbe,0x83,0x48,0x33,0xe5,0xba,0x03,0x91,0x51,0x1d,0x5b, +0x77,0x14,0xca,0x95,0x1b,0xeb,0x8e,0x43,0xc1,0x3e,0xf3,0x44, +0x44,0xb7,0x6a,0x3d,0x0d,0x91,0x3d,0xf3,0xb9,0x88,0x54,0x73, +0xd7,0xd5,0x22,0xba,0x43,0x6b,0x3d,0xa2,0x3b,0xb5,0xbe,0x89, +0xcc,0x9f,0xb4,0xbe,0x8d,0x48,0xb3,0xe2,0xba,0x77,0x91,0x53, +0x9f,0x5d,0xf7,0x57,0x44,0xaa,0xd1,0xeb,0xfe,0x86,0xc8,0xce, +0xe2,0x1f,0x88,0x34,0x4f,0xac,0xfb,0x27,0xf2,0xea,0x23,0xeb, +0x3e,0x44,0x5e,0xb3,0xc2,0xba,0x7f,0x23,0xab,0xf3,0x5d,0xdc, +0x08,0x91,0xe6,0x8c,0xc5,0x38,0x22,0xc5,0xfd,0x62,0x02,0x59, +0xe5,0xc2,0x62,0x12,0x91,0xe6,0x96,0xc5,0x14,0x2a,0xf4,0x7c, +0x8b,0x79,0xc4,0x54,0xfb,0x16,0x37,0x41,0xf4,0x07,0xad,0xa5, +0x88,0xb4,0xcf,0x8b,0x21,0x62,0x9a,0xfd,0x16,0x57,0x22,0x52, +0x6d,0x59,0xdc,0x02,0x91,0x72,0x69,0x71,0x4b,0x44,0x9a,0x69, +0x16,0xb7,0x42,0x4c,0x67,0xb1,0xb8,0x35,0xa2,0x07,0xb5,0x6e, +0x83,0xa4,0x7a,0xc8,0xe2,0xb6,0x88,0x69,0xe6,0x5c,0xdc,0x03, +0x09,0xc5,0xfa,0xe2,0x9e,0x88,0x94,0x8b,0x8b,0x7b,0x21,0xd2, +0xfb,0x2e,0xee,0x83,0x48,0xb9,0xba,0xb8,0x1f,0xa2,0x47,0xb4, +0x1e,0x80,0x48,0x79,0xbb,0x78,0x20,0x22,0xf5,0xb4,0xc5,0x23, +0x11,0xa9,0x9f,0x2d,0x7e,0x17,0x91,0xce,0x62,0xf1,0x04,0x44, +0xf6,0x6c,0x27,0xa3,0xc4,0x3e,0x53,0x3d,0x7b,0x51,0xfd,0x39, +0x52,0xec,0x2d,0x9e,0x86,0x72,0xdb,0xd7,0xd3,0x91,0xb7,0xbd, +0x3d,0x0b,0x91,0x6a,0xc1,0xe2,0x05,0xd8,0x5c,0x79,0xb5,0x78, +0x21,0xf2,0xf6,0x7b,0x3f,0x46,0x64,0xef,0x78,0x11,0x36,0xb7, +0xfd,0xae,0x44,0xa4,0x7b,0xc4,0x62,0x23,0x22,0xf5,0xd1,0xc5, +0x3e,0x44,0xea,0xaf,0x8b,0x03,0x88,0x54,0x5f,0x16,0xc7,0x90, +0x50,0xdc,0x2f,0xce,0x23,0x7a,0x45,0xeb,0xcf,0x10,0xa9,0xee, +0x2c,0x5e,0x81,0x48,0x75,0x67,0xf1,0x2a,0x44,0x9a,0xff,0x16, +0xaf,0x43,0xa4,0x7a,0xb7,0x78,0x23,0x22,0xd5,0xa3,0xc5,0x9b, +0x90,0xd1,0x3c,0xb6,0x78,0x33,0x22,0xc5,0xe5,0xe2,0xad,0x88, +0x54,0x9b,0x16,0x6f,0x43,0xa4,0x5e,0xbe,0x78,0x0f,0x22,0x8b, +0x93,0xdf,0x22,0x52,0xbc,0x2e,0xde,0x87,0x48,0x75,0x6d,0xf1, +0x01,0x44,0x8a,0xe9,0xc5,0xc7,0x10,0xa9,0xf7,0x2f,0xfe,0x11, +0x91,0xfa,0xfd,0xe2,0x9f,0x50,0x66,0x7b,0xf2,0x1c,0x22,0xc5, +0xfa,0xe2,0x5b,0x88,0xd4,0xfb,0x17,0xdf,0x43,0xa4,0xb8,0x5f, +0x7c,0x1f,0x91,0x6a,0xe2,0xe2,0x07,0x28,0xd8,0xdf,0x7d,0x84, +0x48,0x73,0xc3,0xe2,0xc7,0xc8,0x28,0x8f,0x16,0x97,0x91,0xb4, +0x33,0xfc,0x0c,0x91,0x7e,0x67,0xc9,0xc7,0xe6,0xaa,0x77,0x4b, +0x9a,0x05,0x96,0xac,0x46,0x29,0x97,0x96,0xca,0x11,0x29,0xde, +0x96,0x6a,0x10,0x29,0x97,0x96,0xea,0x91,0xd0,0x5c,0xb4,0xd4, +0x80,0x48,0x33,0xc7,0x52,0x33,0xca,0xf4,0xb9,0x4b,0x2d,0x88, +0xf4,0x1c,0x4b,0x6d,0x48,0xea,0xbc,0x96,0x3a,0x10,0xe9,0x99, +0x96,0xfa,0x11,0xe9,0x99,0x96,0xd4,0x9b,0x97,0xd4,0x6f,0x23, +0xf5,0xca,0xa5,0x09,0x44,0xea,0x77,0x4b,0x93,0x88,0xec,0x33, +0xa7,0x50,0xd0,0x39,0x2e,0xad,0x45,0xa4,0xbb,0xe2,0xd2,0x0c, +0x0a,0xaa,0x7b,0x4b,0x8b,0xd0,0x15,0xee,0x4b,0x4b,0xeb,0x51, +0x50,0x8f,0x58,0xfa,0x39,0xca,0x34,0xa7,0x2d,0xfd,0x02,0x39, +0xdd,0xb3,0x96,0xae,0x40,0x99,0x66,0xb6,0xa5,0x2b,0x51,0xa6, +0x9e,0xb1,0x74,0x0d,0xca,0xd4,0xd3,0x97,0x6e,0x42,0xb9,0xfd, +0xcc,0xaf,0x50,0x6e,0xfb,0x71,0x33,0xca,0x14,0xff,0x4b,0xb7, +0x20,0x61,0xcf,0x7c,0x2b,0xf2,0x3a,0xbf,0xa5,0xdb,0x90,0xb7, +0x77,0xba,0x1d,0x9b,0x68,0x2e,0x5a,0xba,0x13,0x9b,0xd9,0xcf, +0xdf,0x85,0xbc,0x3d,0xcb,0xbd,0xa8,0xb0,0x9f,0xbf,0x0f,0x31, +0xd5,0x82,0xa5,0x47,0x50,0xa6,0x3a,0xb5,0xf4,0x28,0xe2,0x9a, +0x01,0x96,0x54,0x83,0x96,0x94,0xf7,0x65,0xaa,0x59,0x4b,0x4f, +0x60,0x73,0xf5,0xaa,0xa5,0x27,0x91,0xb4,0x9f,0x7f,0x0a,0x65, +0x19,0xad,0xcf,0xc2,0xb1,0x9f,0x79,0x0e,0x79,0xc5,0xf6,0xd2, +0x0b,0xc8,0x68,0xf6,0x5a,0x7a,0x11,0x65,0x16,0x0f,0x7f,0x46, +0x99,0x6a,0xdf,0xd2,0x4b,0x28,0xb3,0xdf,0x7d,0x05,0x65,0xba, +0xc3,0x2c,0xbd,0x89,0x32,0xf5,0xc5,0xa5,0x77,0x50,0xb6,0xb1, +0xd6,0xf7,0x51,0xa6,0x5a,0xb9,0xf4,0x21,0xca,0xd4,0x23,0x97, +0x2c,0x86,0x14,0x2f,0x65,0xea,0x91,0x4b,0x1f,0xa3,0xcc,0xd1, +0x6a,0x67,0xaf,0x73,0x2e,0x53,0xfd,0x5c,0xaf,0xe7,0x5e,0xaf, +0x77,0x2a,0x53,0x3c,0xae,0xcf,0x23,0xab,0x58,0x5c,0xbf,0x29, +0x12,0xda,0x9f,0xf5,0xa5,0x28,0xd3,0x61,0xaf,0x5f,0x85,0xb4, +0xf2,0x6a,0x7d,0x11,0x65,0xf6,0xf3,0xdb,0xa2,0x4c,0xb5,0x78, +0xfd,0x1e,0xc8,0x29,0x86,0xd6,0xef,0x89,0x32,0xfb,0xbd,0x83, +0x51,0x66,0xbf,0x77,0x08,0x5c,0xd5,0xab,0xf5,0x87,0x23,0xd0, +0x0c,0xbc,0xfe,0x08,0x44,0xea,0x19,0xeb,0x8f,0x42,0x99,0xe6, +0xd5,0xf5,0x47,0xa3,0x4c,0xf5,0x7d,0xbd,0x7a,0xcf,0x7a,0xfb, +0x6f,0xb9,0xea,0xdf,0xeb,0xcf,0x40,0x41,0xf1,0xb1,0xfe,0x4c, +0x94,0xa9,0xc7,0xaf,0xd7,0x7d,0x63,0xbd,0x7a,0x62,0x99,0xea, +0xfe,0xfa,0xf3,0x51,0xa6,0xf3,0x5d,0x7f,0x21,0xca,0xd4,0x03, +0xd6,0x57,0xa2,0x4c,0xbd,0x7f,0x7d,0x2d,0xca,0xd4,0xfb,0xd7, +0xd7,0xa1,0xcc,0xde,0x69,0x04,0x05,0xcd,0xe1,0xeb,0xd7,0xa2, +0x4c,0x33,0xc1,0xfa,0x75,0x28,0xd3,0x4c,0xb0,0x7e,0x11,0xae, +0x66,0xf6,0xf5,0x3f,0x41,0x99,0x66,0xf4,0x8f,0xcb,0x50,0xa1, +0x1e,0xf4,0xf1,0x56,0x58,0xad,0x33,0xfa,0xf8,0x2b,0x58,0xad, +0x73,0xf9,0x78,0x67,0x54,0xa8,0x67,0x7d,0xac,0xfc,0xfb,0x58, +0x7b,0x56,0xae,0xbc,0xfd,0x78,0x0e,0xe5,0x9a,0x83,0x3f,0xbe, +0x17,0xe5,0xed,0x5a,0x1f,0x47,0x85,0x62,0xf4,0xe3,0x17,0x51, +0xa1,0xba,0xfa,0xf1,0xdf,0x50,0xae,0xde,0xb3,0x9c,0xc7,0x2a, +0xd5,0xf6,0xe5,0x02,0x56,0x29,0x6e,0x96,0x57,0xa0,0x5c,0x77, +0x80,0xe5,0x8d,0x51,0xa1,0x7a,0xb7,0xbc,0x09,0x8a,0x3a,0x97, +0xe5,0x4d,0x51,0xd4,0xf3,0x2f,0x6f,0x86,0xe2,0x8e,0x5a,0x4b, +0xb1,0xda,0x56,0x07,0x45,0xf5,0x9e,0x65,0x17,0x45,0x9d,0xdd, +0xb2,0xee,0x3a,0xcb,0x8a,0xa3,0xa2,0x9e,0x79,0x39,0x44,0x51, +0xbd,0x64,0x39,0x42,0x51,0xb5,0x67,0xb9,0x0c,0x45,0xcd,0xf4, +0xcb,0xe5,0x28,0xaa,0xa6,0x2c,0xaf,0x44,0x51,0x73,0xce,0xf2, +0x2a,0xac,0xb6,0xcf,0x2b,0xa2,0xa8,0x9a,0xb2,0xbc,0x39,0x8a, +0x9a,0x1b,0x97,0xb7,0x40,0x51,0xb3,0xd3,0x72,0x05,0x2a,0x54, +0xf3,0x97,0x57,0xa3,0xa8,0x1a,0xb1,0xbc,0x25,0x8a,0xaa,0x05, +0xcb,0x5f,0x46,0x51,0x39,0xb9,0xbc,0x15,0x8a,0xea,0x77,0xcb, +0x5f,0x41,0x51,0xf9,0xb3,0xac,0x98,0x58,0x56,0x8c,0x14,0x95, +0x1f,0xcb,0xdb,0xa2,0xa8,0xba,0xb7,0xfc,0x55,0x6c,0xae,0xbc, +0x5e,0xde,0x0e,0x15,0xea,0x3d,0xcb,0xdb,0xa3,0xc2,0x9e,0x67, +0x47,0x54,0xe8,0x9c,0x96,0xbf,0x81,0x0a,0xc5,0xc7,0xf2,0x4e, +0xa8,0x50,0x0d,0x5a,0xde,0x19,0x65,0xea,0x7d,0xcb,0xbb,0xa0, +0x42,0xf5,0x6e,0x79,0x57,0x54,0xe8,0xee,0xb0,0xbc,0x3b,0x2a, +0xd4,0xdf,0x97,0xf7,0x40,0x85,0x7a,0xe7,0xf2,0xb7,0x50,0xa1, +0x3b,0xcb,0xf2,0x5e,0xa8,0xd0,0x7c,0xbb,0xbc,0x37,0x56,0xdb, +0x39,0xec,0x83,0x0a,0xf5,0xc8,0xe5,0x6f,0xa3,0x42,0xf3,0xd8, +0xf2,0x7e,0xa8,0x50,0x7d,0x5c,0xde,0x1f,0x15,0x8a,0xe3,0xe5, +0x03,0x50,0x6e,0xe7,0xfc,0x1d,0x54,0xd8,0x59,0x1c,0x88,0x0a, +0xd5,0xf3,0xe5,0x83,0x51,0x6e,0xef,0x74,0x08,0x2a,0x54,0x43, +0x97,0x0f,0x45,0x85,0x7a,0xff,0xf2,0x61,0xa8,0xd0,0xbd,0x63, +0xf9,0x70,0x54,0x28,0x76,0x97,0x8f,0x40,0x85,0x66,0xad,0xe5, +0x23,0x51,0xa1,0x5a,0xbf,0xfc,0x5d,0x54,0x68,0x6e,0x5f,0x3e, +0x0a,0x15,0x8a,0xfb,0xe5,0xef,0xa1,0x42,0xb9,0xbc,0x7c,0x34, +0x2a,0x94,0x4b,0xcb,0xc7,0xa0,0xc2,0xce,0xf4,0x58,0x54,0xe8, +0x4e,0xb1,0x7c,0x1c,0x2a,0x54,0x8b,0x96,0x4f,0x40,0x85,0x9d, +0xf5,0x89,0xa8,0x50,0x9d,0x5f,0x3e,0x49,0xec,0x7f,0xff,0xd4, +0xe2,0xe7,0x54,0x54,0xa8,0xaf,0x2c,0x9f,0x8e,0x0a,0x8b,0xb7, +0x33,0x50,0xa1,0xf9,0x66,0xf9,0x4c,0x54,0x28,0x9f,0x97,0xcf, +0x42,0x85,0x66,0xe0,0xe5,0xb3,0x51,0xa1,0xd9,0x65,0xf9,0x5c, +0x54,0x58,0x0c,0xff,0x00,0x15,0xea,0x43,0xcb,0xe7,0xa1,0x42, +0xf7,0xb5,0xe5,0xf3,0x51,0xae,0x5a,0xf3,0x89,0x7a,0xe1,0x27, +0xea,0x69,0x5f,0xd2,0xec,0xf5,0xf9,0x0a,0xac,0xd2,0xde,0x7d, +0xae,0xfc,0xfb,0x7f,0xb6,0xce,0x3a,0xac,0x8a,0xe7,0xfb,0xe3, +0x67,0xba,0x16,0x5b,0x51,0x04,0xc4,0xc0,0xc6,0x40,0x50,0x54, +0x2c,0xc4,0x06,0xc5,0xc6,0x2e,0x10,0x14,0x04,0x13,0xb1,0x03, +0xbb,0xbb,0x5b,0x6c,0x6c,0xec,0x4e,0x14,0x03,0x5b,0x54,0x04, +0xbb,0x0b,0x1b,0x03,0xbe,0x97,0x8f,0x7f,0xfd,0x9e,0xe7,0x77, +0x9f,0x7d,0xdd,0x79,0xb8,0x7b,0xd9,0xbb,0xcf,0xce,0xfb,0x9c, +0x39,0x33,0x3b,0x3b,0x27,0xd3,0x66,0x77,0xce,0xb6,0xf3,0xcf, +0x2c,0xf4,0x0f,0x67,0x5b,0x3b,0x91,0x59,0xe9,0x1f,0xce,0x36, +0xfb,0xcd,0xb4,0xe9,0x2b,0xd3,0x16,0x73,0x39,0xdb,0xda,0x95, +0xcc,0x2a,0xff,0x70,0xb6,0xb5,0x37,0x99,0x36,0x4d,0x65,0xda, +0xb4,0xe4,0x6c,0x6b,0x4b,0x32,0x6d,0x3a,0xca,0xb4,0xe9,0xc7, +0xd9,0x16,0x83,0x65,0xda,0xfa,0x22,0x99,0x36,0xfd,0x38,0xdb, +0xda,0x92,0x4c,0x9b,0x76,0x32,0xb3,0x9f,0x49,0xb1,0xc5,0x48, +0x99,0x36,0xed,0x64,0x66,0xaf,0x69,0x6c,0xf3,0x03,0x99,0x36, +0xed,0x64,0xda,0x34,0xe3,0x6c,0xd3,0x61,0xa6,0x4d,0x2f,0x99, +0x36,0x6d,0x38,0xdb,0xda,0xa6,0x4c,0x5b,0xfd,0x67,0xda,0xea, +0xdd,0xd9,0x66,0x17,0x59,0xe8,0x1f,0xd8,0xd6,0xef,0xce,0xc2, +0xff,0x28,0x62,0xdb,0x9f,0x45,0xfe,0x81,0x6d,0xfe,0x27,0x8b, +0xfe,0x03,0xdb,0xfc,0x5b,0x16,0xfb,0x07,0xb6,0xc5,0xe1,0x59, +0xfc,0x1f,0xd8,0xd6,0x76,0x66,0x89,0x7f,0x14,0xb1,0xe9,0x2c, +0xcb,0xd6,0xce,0x64,0xd9,0x62,0x4f,0x6c,0xbb,0xe6,0x59,0xfa, +0x1f,0xd8,0xd6,0xae,0x66,0x99,0x7f,0x60,0x9b,0x2d,0x64,0x59, +0xff,0xc0,0xb6,0xf8,0x26,0xcb,0xee,0x1f,0xd8,0x56,0x5f,0x59, +0x39,0xfe,0x81,0x6d,0xb1,0x4e,0x56,0xce,0x7f,0x60,0x9b,0x56, +0xb3,0x6c,0xd7,0x32,0xcb,0x76,0xdd,0x48,0xf6,0xff,0xd9,0x7c, +0x4f,0x96,0xcd,0xe7,0x60,0x5b,0x0c,0x94,0xe5,0xf8,0x0f,0x6c, +0xd3,0x7c,0x96,0xd3,0x3f,0xb0,0x4d,0x3f,0x59,0xce,0xff,0xc0, +0x36,0x9d,0x64,0x15,0xf9,0x07,0xb6,0xf9,0xdb,0x2c,0x97,0x7f, +0x60,0x5b,0x5d,0x64,0xd9,0xfc,0x4d,0x96,0xed,0x1a,0x12,0x9b, +0x8f,0xcb,0xaa,0xf9,0x0f,0x6c,0x8b,0x63,0xb2,0xbc,0xff,0x81, +0x6d,0x76,0x9a,0x55,0xeb,0x1f,0xd8,0xa6,0xe1,0xac,0xda,0xff, +0xc0,0xb6,0x18,0x2b,0xab,0xce,0x3f,0xf0,0x34,0x5b,0x59,0xf7, +0x1f,0x78,0x92,0xad,0xb4,0x5d,0xe7,0x2c,0x9b,0x26,0x89,0xad, +0x5e,0xb3,0x3a,0xfd,0x03,0xdb,0x6c,0x33,0xab,0xf3,0x3f,0xb0, +0x4d,0x33,0x59,0x5d,0xfe,0x81,0x6d,0xba,0xcd,0xea,0xfa,0x0f, +0x6c,0xb3,0xa3,0x2c,0x9b,0x4e,0xb3,0x6c,0xf1,0x15,0xca,0xbe, +0xfe,0xb6,0x58,0x20,0xcb,0x56,0xcf,0xd8,0xe6,0xf3,0xb3,0x9e, +0xfc,0x03,0xdb,0x7c,0x57,0xd6,0xd3,0x7f,0x60,0x5b,0xbc,0x9e, +0xf5,0xec,0x1f,0x45,0x6c,0x76,0x9e,0xf5,0xfc,0x1f,0xd8,0x66, +0x83,0x59,0xaf,0xfe,0x81,0xea,0x03,0xb2,0x85,0xb2,0xd9,0x40, +0x91,0x51,0x80,0xcd,0xea,0xff,0x80,0x12,0xf7,0x00,0x3b,0x38, +0xfc,0x07,0x38,0xcf,0x05,0x5c,0xff,0xda,0x7f,0x80,0xf3,0x2a, +0xc0,0x81,0x83,0xff,0x03,0x9c,0xbe,0x03,0x9e,0xf1,0xf0,0x3f, +0xc0,0xc9,0xf6,0xfd,0x59,0xdf,0xff,0x03,0x9c,0x32,0x00,0xff, +0xcc,0xf9,0x1f,0xe0,0x3c,0xc9,0x56,0x16,0xfc,0x0f,0x70,0x9e, +0x6a,0x2b,0x87,0xfe,0x07,0x38,0x37,0xb5,0x95,0x13,0xfe,0x03, +0x9c,0xab,0xda,0xca,0x9b,0xff,0x01,0xce,0x53,0x6c,0x65,0xca, +0x7f,0x80,0x73,0xf6,0x31,0xde,0xff,0x07,0x38,0xa5,0x03,0xce, +0x70,0xf9,0x0f,0x70,0x5e,0x0d,0x1c,0x6c,0x7a,0xf9,0xef,0x45, +0xfe,0x15,0x59,0x6b,0xc1,0x1b,0xfe,0x9f,0x17,0x02,0x4a,0x00, +0x21,0x94,0xa3,0x89,0x8f,0x7f,0x40,0x78,0x70,0x74,0xeb,0x1e, +0x11,0x83,0x9a,0x06,0x64,0x7f,0xd2,0xe0,0x67,0xe1,0x9f,0x8e, +0xf3,0x2c,0xe7,0x9f,0x4e,0xe8,0xa7,0x33,0xfe,0xe9,0x4c,0x7e, +0x16,0xa4,0xbf,0x73,0x5b,0x24,0xc1,0xa2,0xbf,0x7b,0xff,0x1e, +0xe4,0x94,0x9d,0xfb,0xe5,0xd7,0x5d,0xe6,0xec,0x00,0x45,0xac, +0x22,0xb6,0xbf,0x3a,0x3a,0x58,0xc5,0x7e,0x74,0xca,0xf9,0xb3, +0xb4,0xe5,0xea,0x04,0x85,0x2e,0x2f,0xb1,0x4a,0xfc,0xac,0x94, +0x1b,0x18,0x42,0xdc,0xaa,0xde,0xa4,0x6b,0xbd,0xa0,0xc8,0x9e, +0xc1,0x4d,0x7b,0xf4,0xef,0x11,0x51,0xb9,0x7e,0x64,0xff,0x61, +0x03,0xfb,0x84,0x84,0x0e,0x76,0x71,0xaf,0x54,0xd9,0xcb,0xc5, +0xf6,0xc3,0x2e,0xf5,0x23,0x07,0xf6,0xaf,0xe0,0x52,0x2f,0x3c, +0xdc,0xe5,0xbf,0x1d,0x83,0x5c,0x06,0x06,0x0f,0x0a,0x1e,0x18, +0x15,0x1c,0x54,0x21,0x7b,0x6f,0xf6,0x79,0xb9,0x64,0x9f,0x98, +0x4b,0xd3,0x80,0xff,0x73,0x9a,0x6e,0xad,0x82,0x43,0x86,0x84, +0xf7,0xb0,0x85,0x25,0x18,0x50,0x89,0xa9,0x25,0x6d,0xf6,0x5e, +0xd1,0x56,0x8f,0xee,0x36,0xfb,0xf1,0x90,0x20,0x3c,0x6c,0xfe, +0xc2,0x23,0x1f,0x20,0x0f,0x7b,0xe0,0x1e,0x36,0xed,0x7a,0x14, +0x05,0xed,0x51,0x01,0x8c,0x87,0x4d,0xa3,0x1e,0xb5,0x40,0x79, +0x34,0x01,0xe2,0xd1,0xc2,0x56,0xda,0xb4,0xe6,0x61,0x6b,0x2b, +0x3c,0x6c,0xb1,0xba,0x87,0x4d,0x23,0x9e,0x36,0xff,0xe0,0x69, +0xf3,0xb3,0x9e,0x36,0xff,0xe4,0x69,0xf3,0xeb,0x9e,0x36,0x9f, +0x50,0xd5,0xd6,0x66,0x56,0xb5,0x1d,0xbb,0xaa,0x4d,0x8b,0x55, +0x6d,0x76,0x55,0xd5,0xd6,0x2f,0xa8,0x7a,0xcc,0x86,0xad,0xaf, +0x52,0xd5,0xd6,0x57,0xa8,0x66,0x3b,0x7e,0x35,0xdb,0x77,0xaa, +0xd9,0xea,0xbd,0x9a,0xcd,0x07,0x56,0xb3,0xf9,0x1d,0x1f,0x9b, +0xdf,0xf6,0xb1,0xc5,0x84,0x4d,0x6c,0x7e,0xa2,0x99,0xcd,0x9f, +0x35,0xb3,0xc5,0x2c,0xcd,0x6d,0x36,0xd3,0xdc,0xd6,0x4e,0xb6, +0x28,0x05,0x45,0x5b,0xf8,0x03,0x6d,0x61,0xf3,0xe1,0x2d,0x6c, +0xbf,0xdf,0x2a,0x00,0x70,0xc7,0x3c,0x80,0x3a,0xe6,0xff,0xaf, +0x42,0x6c,0x35,0xe3,0x5a,0xd4,0xb5,0x28,0xc9,0xae,0xa0,0xec, +0x9c,0xa8,0x36,0x4b,0xb5,0x39,0x41,0x9b,0xaf,0x3d,0x0b,0xc8, +0x07,0xd0,0x31,0xc0,0x8d,0x00,0xb7,0x05,0x3c,0x21,0xdb,0x11, +0xe0,0xa7,0x80,0xff,0x02,0x71,0x05,0xe2,0x0e,0x24,0x00,0x48, +0x2f,0x20,0x5b,0x80,0x24,0x02,0x55,0x40,0x7b,0x03,0x9d,0x0b, +0xf4,0x41,0x76,0xce,0x0f,0xd6,0x08,0xd8,0x7e,0xe0,0x1c,0x78, +0x9d,0xec,0xf4,0xe7,0x7c,0x6d,0xf6,0x03,0x45,0x3c,0x39,0x3b, +0xf5,0x88,0x38,0x91,0x3d,0xd9,0x5d,0xd6,0x06,0x39,0x21,0x7b, +0x45,0x30,0x79,0x1b,0xe4,0xbb,0xec,0x47,0xd6,0x55,0x7b,0x50, +0xe1,0xa0,0x16,0x67,0x2f,0x25,0xa6,0x6e,0x82,0xb6,0xc9,0xaa, +0x7c,0x76,0x7a,0x36,0xbd,0x0d,0x0c,0xcf,0x1e,0x47,0xb3,0x99, +0x82,0xd9,0x0b,0xe6,0x21,0x58,0x18,0xac,0xa6,0xd9,0xab,0xc0, +0x58,0xeb,0xc1,0x3a,0x91,0xbd,0x94,0xb3,0x9d,0x1d,0xd8,0xb9, +0x64,0xe7,0xf9,0xb3,0x6b,0x02,0x76,0x1d,0xc1,0x6e,0x1f,0xd8, +0xfd,0x82,0x1c,0x5e,0x90,0x63,0x74,0x76,0x87,0x3c,0xc7,0x0b, +0xc8,0x39,0x19,0x72,0xee,0x86,0x9c,0xf7,0x21,0x97,0x86,0x5c, +0x1e,0x90,0xab,0x09,0xe4,0x9a,0x03,0xb9,0x0e,0x41,0xae,0x0c, +0xc8,0x5d,0x0f,0x72,0x4f,0x85,0xdc,0x9b,0x20,0xf7,0x1f,0xc8, +0x53,0x14,0xf2,0xf8,0x41,0x9e,0x48,0xc8,0x73,0x00,0xf2,0xbc, +0x83,0xbc,0x4e,0x90,0xd7,0x1b,0xf2,0x0e,0x83,0xbc,0x73,0x21, +0xef,0x55,0xc8,0x67,0x20,0x5f,0x55,0xc8,0xd7,0x14,0xf2,0x0d, +0x81,0x7c,0x31,0x90,0xef,0x24,0xe4,0xfb,0x08,0xf9,0x1b,0x41, +0xfe,0x65,0x90,0x3f,0x0e,0xf2,0x7f,0x82,0x02,0x73,0xc1,0xde, +0x02,0xfb,0xce,0x60,0x3f,0x3f,0x3b,0x51,0xba,0xfd,0x65,0x28, +0x68,0xb2,0xb3,0x4b,0x16,0x6c,0x92,0x9d,0x73,0xae,0xe0,0xcc, +0xec,0x4c,0x48,0x05,0x93,0xb2,0xf3,0x76,0x14,0x2a,0x90,0xbd, +0x82,0x73,0xa1,0x5d,0xd9,0xeb,0x1b,0x3a,0xb8,0x83,0xc3,0x63, +0x28,0xec,0x91,0xfd,0x4c,0x45,0xe1,0x6e,0xd9,0x33,0x77,0x0b, +0x2f,0xce,0x9e,0xc7,0x56,0xf8,0x7d,0xf6,0x1d,0x4d,0xc7,0xc0, +0xec,0x31,0x6e,0xc7,0x4d,0xd9,0x23,0x32,0x8e,0xd7,0xb2,0xfb, +0x69,0x4e,0x81,0xe0,0x34,0x3e,0x3b,0xb9,0x8b,0x73,0x8b,0xec, +0xe5,0x5c,0x8b,0x14,0x86,0x22,0xa5,0xa0,0x48,0x2b,0x28,0x72, +0x12,0x5c,0xea,0x83,0xcb,0x1e,0x70,0x39,0x01,0x45,0x9b,0x42, +0xd1,0x8e,0x50,0xf4,0x4c,0x76,0xfc,0x54,0x2c,0x1f,0x14,0x0b, +0x80,0x62,0x9b,0xa0,0xd8,0x7d,0x28,0xf6,0x13,0x8a,0x37,0x84, +0xe2,0x71,0x50,0xc2,0x1d,0x4a,0x0c,0xc8,0x8e,0x90,0x4a,0xfc, +0x04,0xd7,0x5e,0xe0,0x7a,0x11,0x4a,0x96,0x86,0x92,0x2b,0xa1, +0xe4,0x05,0x28,0x99,0x0e,0xa5,0x4a,0x41,0xa9,0x61,0x50,0x6a, +0x35,0x94,0x3a,0x03,0xa5,0xbe,0x40,0xe9,0x3a,0x50,0x7a,0x1c, +0x94,0x4e,0x85,0x32,0xd5,0xa1,0xcc,0x3c,0x28,0xf3,0x13,0xca, +0x8e,0x81,0x72,0x08,0xca,0xb9,0x41,0xb9,0x10,0x28,0xb7,0x1a, +0xca,0x3d,0x83,0xf2,0x0d,0xa0,0x7c,0x14,0x94,0xdf,0x0a,0x6e, +0xf9,0xc0,0x6d,0x24,0xb8,0xa5,0x43,0x85,0x29,0x50,0xd1,0x01, +0x2a,0xc6,0x82,0xcd,0x34,0x2b,0x85,0x40,0xa5,0x23,0x50,0xd9, +0x11,0x2a,0x2f,0x85,0xca,0xfb,0xa0,0x72,0x12,0x54,0xfe,0x06, +0xee,0xd5,0xc0,0x7d,0x1d,0x54,0x91,0x50,0xa5,0x3d,0x54,0x89, +0x85,0x2a,0x99,0xe0,0x31,0x0c,0x3c,0x3e,0x82,0x67,0x15,0xf0, +0xec,0x07,0x9e,0x1b,0xc0,0xf3,0x0d,0x54,0xf5,0x83,0xaa,0x93, +0xa0,0x6a,0x12,0x54,0x73,0x87,0x6a,0x9b,0xc0,0x0b,0x81,0x97, +0x17,0x78,0xf9,0x82,0xd7,0x5e,0xf0,0x4a,0x87,0xea,0xe5,0xa0, +0xfa,0x44,0xa8,0x3e,0x19,0xaa,0x1f,0x80,0x1a,0x02,0x6a,0x04, +0x41,0x8d,0x47,0x50,0xb3,0x2f,0xd4,0x7c,0x09,0xde,0xb9,0xc1, +0xbb,0x2e,0x78,0x47,0x82,0xf7,0x1a,0xf0,0x3e,0x02,0xde,0x4f, +0xc0,0xfb,0x03,0xd4,0x32,0x50,0xcb,0x11,0x6a,0x0d,0x83,0x5a, +0x4b,0xa0,0xd6,0x7d,0xa8,0xed,0x09,0xb5,0x3b,0x40,0xed,0x58, +0xa8,0xfd,0x15,0xea,0xe4,0x80,0x3a,0x63,0xa0,0xce,0x55,0xa8, +0xcb,0xa1,0x6e,0x53,0xa8,0x1b,0x02,0x75,0x47,0x41,0xdd,0x55, +0x50,0x37,0x1d,0xea,0x05,0x41,0xbd,0x25,0x50,0xef,0x39,0xf8, +0xb8,0x82,0x4f,0x5b,0xf0,0x89,0x00,0x9f,0x09,0xe0,0x93,0x08, +0x3e,0x4f,0xc0,0xe7,0x17,0xd4,0x77,0x85,0xfa,0x6d,0xa0,0x7e, +0x4f,0xa8,0xbf,0x1a,0xea,0x27,0x82,0xaf,0x04,0xdf,0x1a,0xe0, +0x3b,0x09,0x7c,0x4f,0x43,0x03,0x07,0x68,0xe0,0x06,0x0d,0xda, +0x43,0x83,0x91,0xd0,0xe0,0x14,0x34,0xf8,0x0e,0x0d,0x0b,0x43, +0xc3,0xea,0xd0,0xd0,0x0f,0x1a,0x4e,0x85,0x86,0x2b,0xa1,0xe1, +0x31,0x68,0x78,0x11,0x1a,0x7e,0x81,0x46,0x1e,0xd0,0x68,0x08, +0x34,0xda,0x09,0x8d,0x3e,0x40,0x63,0x77,0x68,0xdc,0x16,0x1a, +0xc7,0x43,0xe3,0x47,0xd0,0x44,0x42,0x13,0x2f,0x68,0xd2,0x13, +0x9a,0x44,0x43,0x93,0xa3,0xd0,0xe4,0x19,0x34,0x75,0x86,0xa6, +0xdd,0xa0,0xe9,0x3a,0x68,0x7a,0x02,0x9a,0xe5,0x81,0x66,0xd5, +0xa0,0x59,0x0f,0x68,0x36,0x1e,0x9a,0x9d,0x85,0x66,0x19,0xe0, +0x57,0x1a,0xfc,0x7c,0xc1,0x6f,0x3c,0xf8,0xcd,0x06,0xbf,0x2b, +0xe0,0x77,0x0f,0xfc,0x1e,0x80,0xbf,0x01,0x7f,0x47,0xf0,0x77, +0x03,0xff,0xfa,0xe0,0xdf,0x03,0xfc,0xe7,0x82,0x7f,0x02,0xf8, +0x7f,0x84,0xe6,0x4e,0xd0,0xbc,0x2a,0x34,0xef,0x03,0xcd,0x57, +0x43,0xf3,0xf3,0xd0,0xfc,0x09,0xb4,0x28,0x0d,0x2d,0x3c,0xa0, +0x45,0x24,0xb4,0x58,0x0c,0x2d,0xce,0x43,0x8b,0x34,0x08,0xc8, +0x0b,0x01,0xa1,0x10,0x10,0x0b,0x01,0x4f,0xa0,0x65,0x49,0x68, +0xe9,0x0d,0x2d,0x87,0x40,0xcb,0x63,0xd0,0xf2,0x2b,0xb4,0xf2, +0x82,0x56,0xe1,0xd0,0xea,0x28,0xb4,0xa6,0xd0,0x3a,0x00,0x5a, +0x8f,0x86,0xd6,0x2b,0xa1,0xf5,0x45,0x68,0x9d,0x06,0x6d,0xca, +0x40,0x9b,0x70,0x68,0x33,0x0d,0xda,0x1c,0x87,0x36,0xef,0xa1, +0x6d,0x6e,0x68,0xdb,0x16,0xda,0xc6,0x42,0xdb,0x87,0xd0,0xae, +0x14,0xb4,0x1b,0x02,0xed,0x4e,0x40,0xbb,0x74,0x68,0x5f,0x1a, +0xda,0x07,0x40,0xfb,0x70,0x68,0xbf,0x14,0xda,0x9f,0x84,0xf6, +0x19,0x10,0xe8,0x08,0x81,0xd5,0x21,0xb0,0x3b,0x04,0x2e,0x80, +0xc0,0xe3,0x10,0xf8,0x11,0x02,0x33,0xa1,0x43,0x79,0xe8,0x10, +0x08,0x1d,0xc6,0x40,0x87,0xeb,0xd0,0x31,0x27,0x74,0x0c,0x85, +0x8e,0x2f,0xa1,0x53,0x13,0xe8,0xb4,0x1b,0x3a,0x3b,0x41,0xe7, +0x8e,0xd0,0xf9,0x38,0x74,0x71,0x83,0x2e,0xb3,0xa0,0xcb,0x2f, +0xe8,0xda,0x1e,0xba,0x5e,0x87,0x6e,0x75,0xa1,0xdb,0x5e,0xe8, +0xae,0xa0,0x7b,0x0b,0xe8,0xbe,0x1d,0x7a,0x14,0x84,0x1e,0x11, +0xd0,0xe3,0x12,0xf4,0xcc,0x07,0x3d,0xfb,0x40,0xcf,0x3b,0xd0, +0xab,0x29,0xf4,0x3a,0x0d,0x41,0xf5,0x20,0xa8,0x3e,0x04,0xf5, +0x82,0xa0,0x09,0x10,0x34,0x0b,0x82,0x96,0x41,0xd0,0x46,0x08, +0x8a,0x87,0xa0,0xcb,0x10,0xf4,0x09,0x82,0x2b,0x42,0xf0,0x30, +0x08,0x9e,0x05,0xc1,0x5b,0x20,0x38,0x05,0x7a,0x3b,0x40,0xef, +0xb2,0xd0,0xbb,0x26,0xf4,0xf6,0x83,0xde,0x5d,0xa1,0x77,0x04, +0xf4,0x1e,0x03,0xbd,0xe7,0x40,0xef,0x75,0xd0,0x7b,0x2f,0xf4, +0x3e,0x07,0xbd,0xef,0x40,0xef,0x57,0xd0,0x3b,0x03,0x42,0x0c, +0x84,0x38,0x42,0x48,0x05,0x08,0xf1,0x81,0x90,0xf6,0x10,0x12, +0x01,0x21,0x93,0x20,0x64,0x39,0x84,0xec,0x85,0x90,0xcb,0x10, +0xf2,0x04,0x42,0xbe,0x43,0xa8,0x81,0xd0,0x62,0x10,0x5a,0x03, +0x42,0x5b,0x40,0x68,0x08,0x84,0x8e,0x85,0xd0,0x45,0x10,0xba, +0x19,0x42,0x8f,0x41,0xe8,0x4d,0x08,0x7d,0x01,0xa1,0x19,0xd0, +0x27,0x27,0xf4,0x29,0x09,0x7d,0x6a,0x40,0x1f,0x3f,0xe8,0xd3, +0x03,0xfa,0x0c,0x85,0x3e,0xd3,0xa0,0xcf,0x4a,0xe8,0xb3,0x17, +0xfa,0x24,0x42,0x9f,0x54,0xe8,0xf3,0x03,0xfa,0xe6,0x82,0xbe, +0x65,0xa1,0xaf,0x2f,0xf4,0xed,0x0a,0x7d,0xa3,0xa1,0xef,0x7c, +0xe8,0xbb,0x13,0xfa,0x5e,0x86,0xbe,0xaf,0x20,0x8c,0x41,0x98, +0x0b,0x84,0xd5,0x84,0xb0,0x76,0x10,0x36,0x10,0xc2,0x66,0x41, +0xd8,0x4a,0x08,0xbb,0x0d,0xe1,0xae,0x10,0xde,0x08,0xc2,0x7b, +0x43,0xf8,0x58,0x08,0x5f,0x0a,0xe1,0x89,0x10,0xfe,0x0b,0xfa, +0x15,0x84,0x7e,0xd5,0xa0,0x5f,0x3b,0xe8,0x37,0x14,0xfa,0xc5, +0x40,0xbf,0x89,0x10,0x51,0x1a,0x22,0x6e,0x40,0xa4,0x3d,0x44, +0x76,0x85,0xc8,0x24,0xe8,0xdf,0x17,0xfa,0xbf,0x80,0x01,0x13, +0x60,0xc0,0x03,0x18,0x68,0x07,0x03,0x4f,0xc2,0x20,0x06,0x83, +0xfc,0x61,0xd0,0x29,0x18,0xdc,0x15,0x06,0x3f,0x86,0x21,0xd1, +0x30,0xe4,0x00,0x44,0x95,0x83,0xa8,0xc1,0x10,0xf5,0x16,0x86, +0x16,0x86,0xa1,0xa3,0x21,0x5a,0x40,0x74,0x4f,0x88,0x7e,0x0e, +0xc3,0xba,0xc3,0xb0,0x85,0x30,0xec,0x3e,0x0c,0x77,0x85,0xe1, +0xb7,0x60,0x84,0x37,0x8c,0x34,0x30,0x72,0x16,0x8c,0x7c,0x03, +0xa3,0x62,0x60,0xd4,0x13,0x18,0x3d,0x08,0x46,0x1f,0x80,0x31, +0xbd,0xb2,0x53,0x07,0x8f,0x1d,0x0e,0xe3,0x8a,0xc2,0xb8,0x53, +0x30,0xde,0x27,0x3b,0xeb,0x5a,0x4c,0x40,0x76,0x5e,0xa6,0x09, +0x16,0x4c,0xe8,0x9e,0x9d,0x08,0x65,0xa2,0x37,0x4c,0x5c,0x94, +0x9d,0x51,0x61,0x52,0x43,0x98,0xf4,0x1c,0x26,0x6f,0x85,0xc9, +0x59,0x30,0x65,0x0b,0x4c,0x0d,0x83,0xa9,0xd7,0xb3,0x57,0x7f, +0x9c,0x96,0x0a,0xd3,0x87,0xc1,0xf4,0xeb,0x30,0xa3,0x73,0xf6, +0x82,0x43,0x33,0x67,0xc3,0x2c,0x6f,0x98,0xf5,0x38,0x7b,0x41, +0x88,0xd9,0xdb,0x60,0x8e,0x23,0xcc,0x79,0x9a,0xfd,0x50,0xe3, +0x3c,0x0f,0x98,0x77,0x26,0xfb,0xe9,0x8d,0x05,0xde,0xb0,0x60, +0x0b,0x2c,0x74,0x82,0x85,0xdf,0xb2,0x27,0x4b,0x2e,0xf6,0xc9, +0x9e,0x1a,0xb6,0x38,0x11,0x16,0x3f,0x85,0x25,0x01,0xb0,0xe4, +0x68,0xf6,0x2c,0x86,0xa5,0xf3,0xb3,0xef,0x7b,0x2f,0x6b,0x0e, +0xcb,0xd6,0xc2,0xb2,0x57,0xb0,0xdc,0x29,0xfb,0x36,0xdc,0xf2, +0x35,0xb0,0xfc,0x37,0xac,0x88,0x84,0x15,0x49,0xb0,0xb2,0x51, +0xf6,0x20,0xe8,0x2a,0x02,0xab,0x06,0x65,0x8f,0x42,0xad,0x2e, +0x0f,0xab,0xa7,0xc1,0xea,0x9d,0xb0,0x86,0xc0,0x9a,0x86,0xb0, +0x66,0x11,0xac,0x79,0x0d,0x6b,0x7e,0xc2,0xda,0x86,0xb0,0x36, +0x06,0xd6,0x3e,0x84,0xb5,0xa9,0xb0,0xf6,0x0b,0xac,0x2b,0x06, +0xeb,0x1a,0xc3,0xba,0x20,0x58,0x37,0x0e,0xd6,0x1d,0x84,0x75, +0xbf,0x61,0xbd,0x3f,0xac,0x1f,0x09,0xeb,0x37,0xc0,0xfa,0xdb, +0xb0,0xfe,0x29,0xac,0xff,0x02,0xb1,0x65,0x21,0xb6,0x01,0xc4, +0x06,0x40,0x6c,0x27,0x88,0x1d,0x05,0xb1,0xe7,0x21,0x36,0x13, +0x36,0x74,0x85,0x0d,0x23,0x60,0x43,0x12,0x6c,0x2c,0x0d,0x1b, +0x17,0xc0,0xc6,0x87,0xb0,0xf1,0x15,0x6c,0xfc,0x0c,0x1b,0xff, +0xc2,0xa6,0x1c,0xb0,0xc9,0x09,0x36,0x75,0x80,0x4d,0x11,0xb0, +0x69,0x38,0x6c,0xba,0x04,0x9b,0x31,0x6c,0x2e,0x07,0x9b,0xdb, +0xc0,0xe6,0xf5,0xb0,0xf9,0x33,0x6c,0x71,0x81,0x2d,0xcd,0x61, +0x4b,0x24,0x6c,0x99,0x09,0x5b,0x56,0xc3,0x96,0x3d,0xb0,0xe5, +0x23,0x6c,0x2d,0x0f,0x5b,0x1b,0xc0,0xd6,0x2e,0xb0,0x75,0x26, +0x6c,0x3d,0x0a,0x5b,0x2f,0xc3,0xd6,0x14,0xd8,0x9a,0x01,0xdb, +0xec,0x61,0x9b,0x27,0x6c,0x6b,0x0b,0xdb,0x22,0x60,0xdb,0x30, +0xd8,0xb6,0x12,0xb6,0x25,0x42,0x9c,0x1d,0xc4,0x15,0x83,0xb8, +0xae,0x10,0x37,0x1c,0xe2,0x96,0x41,0xdc,0x59,0x88,0x7b,0x03, +0xdb,0x3b,0xc0,0xf6,0x38,0xd8,0x61,0x60,0x47,0x20,0xec,0x18, +0x0f,0x3b,0xe6,0xc1,0x8e,0x9d,0xb0,0xb3,0x28,0xec,0xec,0x04, +0x3b,0x93,0x61,0x57,0x05,0xd8,0x35,0x0e,0x76,0xfd,0x82,0xdd, +0x1d,0x60,0xf7,0x13,0xd8,0x93,0x0f,0xf6,0x6c,0x80,0xbd,0xbe, +0xb0,0x77,0x35,0xec,0x3d,0x0f,0xf1,0x39,0x21,0xde,0x13,0xe2, +0x77,0x40,0xfc,0x0d,0x88,0x7f,0x06,0xf1,0xbf,0x61,0x1f,0x87, +0x7d,0x45,0x61,0x5f,0x45,0xd8,0xd7,0x08,0xf6,0xb5,0x81,0x7d, +0xb7,0x61,0xdf,0x27,0xd8,0x5f,0x00,0xf6,0xd7,0x86,0xfd,0x41, +0xb0,0x7f,0x1a,0xec,0x5f,0x0f,0xfb,0x93,0xe1,0x80,0x81,0x03, +0xb5,0xe0,0x40,0x24,0x1c,0x58,0x0a,0x07,0xce,0xc0,0x81,0x8f, +0x70,0xb0,0x10,0x1c,0xf4,0x84,0x83,0x6d,0xe0,0x60,0x10,0x1c, +0x9c,0x0a,0x07,0xcf,0xc1,0xc1,0xaf,0x70,0x28,0x27,0x1c,0x2a, +0x09,0x87,0xbc,0xe0,0x50,0x10,0x1c,0xda,0x0f,0x87,0xae,0xc1, +0xa1,0x8f,0x70,0xd8,0x1b,0x0e,0x0f,0x86,0xc3,0x7b,0xe0,0xf0, +0x13,0x38,0xd2,0x1c,0x8e,0x9c,0x86,0xa3,0xf9,0xe1,0xa8,0x3b, +0x1c,0x0d,0x83,0xa3,0x17,0xe1,0x58,0x14,0x1c,0xbb,0x03,0xc7, +0x1d,0xe1,0x78,0x7f,0x38,0x3e,0x15,0x8e,0xef,0x82,0xe3,0xd7, +0xe1,0x84,0x03,0x9c,0xe8,0x06,0x27,0x46,0xc1,0x89,0x63,0x70, +0xb2,0x30,0x9c,0xac,0x0b,0x27,0xa7,0xc3,0xc9,0x14,0x38,0xf9, +0x0d,0x4e,0xf5,0x82,0x53,0xfb,0xe0,0xd4,0x63,0x38,0x5d,0x19, +0x4e,0x47,0xc1,0xe9,0x6d,0x70,0xfa,0x0c,0x9c,0x4e,0x86,0x33, +0xa5,0xe1,0x4c,0x1d,0x38,0xd3,0x0e,0xce,0x8c,0x85,0x33,0xdb, +0xe0,0xcc,0x41,0x38,0xf3,0x1a,0xce,0xda,0xc1,0xd9,0x76,0x70, +0x76,0x32,0x9c,0x4d,0x83,0x73,0x4e,0x70,0x2e,0x1a,0xce,0x4d, +0x83,0x73,0xfb,0xe1,0xdc,0x7d,0x38,0xef,0x02,0xe7,0xdb,0xc0, +0xf9,0x68,0x38,0xbf,0x10,0xce,0x7f,0x84,0x84,0x2a,0x90,0x30, +0x08,0x12,0x0e,0x82,0xad,0x37,0x77,0xa1,0x18,0x5c,0x48,0x80, +0x0b,0x9f,0xe0,0xa2,0x3d,0x5c,0x6c,0x08,0x17,0xfb,0xc1,0xc5, +0x31,0x70,0xf1,0x2c,0x5c,0x7c,0x07,0x89,0xe5,0x20,0x71,0x20, +0x24,0x1e,0x84,0xc4,0x5b,0x70,0xa9,0x34,0x5c,0xf2,0x83,0x4b, +0x51,0x70,0x69,0x19,0x5c,0x7a,0x04,0x97,0xf3,0xc1,0x65,0x5f, +0xb8,0xdc,0x0d,0xae,0x38,0xc0,0x95,0xa7,0x70,0xd5,0x1d,0xae, +0x8e,0x87,0xab,0xd7,0x21,0xa9,0x38,0x24,0xcd,0x80,0xa4,0xdf, +0x70,0x6d,0x09,0x5c,0xf7,0x82,0xeb,0xbb,0xe1,0x46,0x2b,0xb8, +0x69,0xc1,0xcd,0xf7,0x70,0xab,0x08,0xdc,0x1a,0x06,0xb7,0x11, +0xdc,0x3e,0x02,0x77,0x14,0xdc,0x19,0x03,0x77,0xb2,0xe0,0xee, +0x16,0xb8,0x7b,0x1f,0x92,0xab,0x40,0xf2,0x12,0xb8,0x57,0x12, +0xee,0xed,0x85,0xfb,0x7d,0xe0,0x7e,0x32,0x3c,0x18,0x00,0x0f, +0x7e,0x43,0xca,0x2e,0x78,0xe8,0x05,0x0f,0x5f,0x41,0x6a,0x11, +0x48,0xed,0x04,0xa9,0x27,0x21,0x2d,0x27,0xa4,0x4d,0x82,0xb4, +0xdb,0xf0,0xa8,0x25,0x3c,0x76,0x80,0xc7,0x6b,0xe1,0x49,0x34, +0x3c,0x65,0xf0,0x34,0x18,0x9e,0x15,0x80,0x67,0x1f,0xe1,0xf9, +0x55,0x78,0x51,0x13,0x5e,0x5c,0x87,0x97,0x11,0xf0,0x8a,0xc3, +0xab,0x04,0x78,0x3d,0x0f,0x5e,0x9f,0x83,0x37,0x2e,0xf0,0x66, +0x3c,0xbc,0x6d,0x0e,0xef,0x7c,0xe0,0x7d,0x2d,0x78,0x7f,0x1f, +0x3e,0x84,0xc2,0x47,0x47,0xf8,0x78,0x16,0x3e,0x35,0x86,0x4f, +0xf1,0x90,0x5e,0x1c,0xd2,0xaf,0xc2,0xe7,0x09,0xf0,0x39,0x05, +0xbe,0xd4,0x86,0x2f,0x71,0xf0,0x55,0xc1,0xd7,0x09,0xf0,0xf5, +0x35,0x7c,0xab,0x03,0xdf,0xd6,0xc2,0x77,0x0e,0xdf,0xf7,0xc2, +0x8f,0x59,0xf0,0xb3,0x3e,0xfc,0xdc,0x0a,0x3f,0x9f,0x40,0x86, +0x33,0x64,0x34,0x84,0x8c,0x01,0x90,0xb1,0x1a,0x32,0xae,0x40, +0xc6,0x73,0xc8,0xf8,0x9b,0x3d,0x8a,0xf3,0x6b,0x14,0xfc,0xba, +0x0b,0xbf,0xdb,0xc3,0xef,0x79,0xf0,0xfb,0x1b,0xfc,0x71,0x87, +0x3f,0x8b,0xe0,0xcf,0x5d,0xf8,0x5b,0x0f,0xfe,0xb6,0x85,0xbf, +0xf3,0xe0,0xef,0xe5,0xec,0x4e,0x7f,0xe6,0x68,0xc8,0xfc,0x02, +0x59,0x55,0xb2,0x3b,0x7c,0x59,0xcf,0x11,0xb4,0x41,0x30,0x15, +0xc1,0x4b,0x84,0xbc,0x10,0xda,0x85,0xd0,0x4f,0x84,0x43,0x11, +0xde,0x89,0x70,0x06,0x22,0x61,0x88,0x2c,0x45,0xe4,0x13,0xa2, +0x79,0x11,0xed,0x89,0xe8,0x4c,0x44,0xd7,0x21,0xfa,0x11,0xb1, +0x5a,0x88,0x75,0x45,0x6c,0x31,0x62,0xbf,0x10,0x0f,0x42,0x7c, +0x09,0xe2,0xdf,0x90,0xe8,0x82,0xc4,0x38,0x24,0x92,0x90,0x2c, +0x81,0x64,0x7b,0x24,0xf7,0x20,0x95,0x0f,0xa9,0x10,0xa4,0x9e, +0x20,0x1d,0x8c,0x74,0x2c,0xd2,0x5f,0x91,0xa9,0x83,0xcc,0x74, +0x64,0x8e,0x23,0xf3,0x15,0x59,0x6e,0xc8,0x6a,0x8d,0xac,0xe1, +0xc8,0x5a,0x88,0xac,0x5d,0xc8,0x4a,0x45,0x76,0x1c,0xd9,0xd5, +0x47,0x76,0xa1,0xc8,0x6e,0x02,0xb2,0xdb,0x8a,0xec,0xae,0xa3, +0x1c,0x14,0xe5,0xf0,0x44,0x39,0x82,0x51,0x8e,0x15,0x28,0xc7, +0x47,0x94,0xb3,0x16,0xca,0x39,0x02,0xe5,0xdc,0x84,0x72,0xfe, +0x40,0xb9,0x18,0xca,0x55,0x1a,0xe5,0xaa,0x8b,0x72,0x75,0x41, +0xb9,0x06,0xa3,0x5c,0x09,0x28,0x57,0x2a,0xca,0xad,0x50,0x6e, +0x37,0x94,0x3b,0x10,0xe5,0x8e,0x42,0xb9,0x17,0xa2,0xdc,0xb6, +0x4f,0x3e,0xa1,0x3c,0x45,0x51,0x1e,0x5f,0x94,0xa7,0x1d,0xca, +0x33,0x1c,0xe5,0x79,0x88,0xf2,0xe6,0x46,0x79,0x9b,0xa1,0xbc, +0x2b,0x51,0x3e,0x82,0xf2,0xf5,0x46,0xf9,0x96,0xa2,0x7c,0x7f, +0x50,0xfe,0xf6,0x28,0xff,0x66,0x94,0xff,0x1e,0x2a,0x50,0x14, +0x15,0xa8,0x82,0x0a,0x04,0xa1,0x02,0x2b,0x50,0x81,0x3b,0xc8, +0x1e,0x21,0xfb,0x1e,0xc8,0x7e,0x0d,0xb2,0x3f,0x89,0x0a,0x4a, +0x54,0xb0,0x15,0x2a,0x18,0x86,0x0a,0x2e,0x44,0x05,0xbf,0xa0, +0x42,0xd5,0x51,0xa1,0x41,0xa8,0xd0,0x2d,0xe4,0x00,0xc8,0xa1, +0x0a,0x72,0x88,0x41,0x0e,0x73,0x91,0xc3,0x25,0xe4,0xf0,0x14, +0x15,0xae,0x82,0x0a,0xef,0x43,0x8e,0x79,0x91,0xa3,0x3b,0x72, +0x1c,0x81,0x1c,0x4f,0x23,0xc7,0x77,0xc8,0xc9,0x1e,0x39,0x55, +0x40,0x4e,0x43,0x91,0xd3,0x54,0xe4,0x74,0x18,0x39,0x65,0x21, +0xe7,0xdc,0xc8,0xb9,0x1e,0x72,0x8e,0x45,0xce,0xc9,0xc8,0xf9, +0x0b,0x2a,0xe2,0x82,0x8a,0x78,0xa1,0x22,0x1d,0x50,0x91,0x19, +0xa8,0xc8,0x39,0x54,0xe4,0x2b,0x72,0xa9,0x83,0x5c,0x96,0x20, +0x97,0x67,0xa8,0x68,0x6d,0x54,0x74,0x39,0x2a,0xfa,0x1c,0x15, +0xfd,0x82,0x8a,0x95,0x46,0xc5,0xfa,0xa3,0x62,0x1f,0x50,0xf1, +0x3e,0xa8,0xf8,0x69,0x54,0xfc,0x23,0x2a,0xd1,0x04,0x95,0x98, +0x81,0x4a,0xc4,0xa3,0x12,0x8f,0x51,0x89,0x0c,0xe4,0xea,0x85, +0x5c,0x9b,0x22,0xd7,0xb9,0xc8,0xf5,0x3a,0x72,0x7d,0x82,0x4a, +0xe6,0x40,0x25,0xe7,0xa0,0x92,0x67,0x51,0xc9,0x54,0x54,0x4a, +0xa0,0x52,0x45,0x50,0xa9,0xba,0xa8,0xd4,0x40,0x54,0x6a,0x0b, +0x2a,0x75,0x07,0x95,0x76,0x44,0xa5,0x43,0x50,0xe9,0x1d,0xa8, +0x4c,0x0e,0x54,0x66,0x12,0x2a,0x5b,0x15,0x95,0x8d,0x45,0xe5, +0xaa,0xa2,0xf2,0x3d,0x91,0x5b,0x7d,0x54,0x81,0xa3,0x0a,0xcf, +0x50,0xc5,0xd3,0xa8,0x52,0x53,0x54,0xb9,0x2f,0x72,0x77,0x45, +0x55,0x28,0xaa,0xf2,0x10,0x79,0x34,0x41,0x1e,0x8f,0x91,0xa7, +0x17,0xaa,0xba,0x07,0x55,0x6b,0x85,0xaa,0x2d,0x42,0x5e,0x2d, +0x51,0x75,0x47,0x54,0xfd,0x28,0xaa,0xd1,0x05,0xd5,0x78,0x8c, +0x6a,0x5e,0x44,0xde,0x2f,0x50,0xed,0x6a,0xa8,0x8e,0x33,0xaa, +0x93,0x80,0xea,0x0e,0x40,0xf5,0x4a,0xa0,0x7a,0x07,0x90,0xcf, +0x34,0x54,0xbf,0x13,0xaa,0xff,0x1a,0xf9,0xee,0x44,0x0d,0x7a, +0xa0,0x86,0xb5,0x51,0xc3,0xb5,0xa8,0x91,0x03,0x6a,0xb4,0x14, +0x35,0xb6,0x43,0x8d,0x77,0xa2,0x26,0xfe,0xa8,0xc9,0x31,0xd4, +0xb4,0x1d,0x6a,0x56,0x0e,0xf9,0xb9,0x21,0xbf,0x57,0xc8,0x7f, +0x26,0x6a,0xde,0x06,0xb5,0x08,0x46,0x2d,0x7e,0xa2,0x80,0x43, +0xa8,0xe5,0x41,0xd4,0xaa,0x3e,0x6a,0x75,0x0d,0xb5,0x4e,0x44, +0x6d,0xd2,0x50,0x3b,0x84,0xda,0x85,0xa2,0xf6,0x9d,0x51,0xfb, +0x34,0x14,0x18,0x83,0x3a,0x78,0xa0,0x0e,0x7f,0x51,0xc7,0x48, +0xd4,0xf1,0x12,0xea,0xd4,0x13,0x75,0xae,0x8a,0x3a,0x1f,0x47, +0x5d,0x7a,0xa1,0x6e,0xc5,0x50,0x37,0x37,0xd4,0x6d,0x39,0xea, +0x3e,0x00,0xf5,0x68,0x8e,0x7a,0x56,0x43,0x3d,0x9f,0xa2,0x5e, +0x15,0x51,0xd0,0x79,0x14,0xdc,0x04,0x05,0xcf,0x43,0xbd,0x01, +0xf5,0x8e,0x40,0xbd,0x4f,0xa3,0x90,0x18,0x14,0x72,0x1b,0x85, +0x9e,0x40,0x7d,0xe6,0xa1,0xbe,0x83,0x50,0x58,0x14,0x0a,0x77, +0x40,0xe1,0x9f,0x50,0xbf,0x5f,0x28,0xe2,0x3c,0x8a,0x74,0x44, +0x91,0x03,0x51,0xe4,0x41,0xd4,0x3f,0x08,0xf5,0xff,0x80,0x06, +0xf4,0x42,0x03,0xde,0xa3,0x81,0x9d,0xd1,0xa0,0x4d,0x68,0xf0, +0x72,0x34,0x24,0x17,0x1a,0x72,0x02,0x0d,0xf9,0x8b,0xa2,0x16, +0xa3,0xa1,0xbd,0xd0,0xd0,0x64,0x34,0x6c,0x14,0x1a,0xde,0x12, +0x8d,0x98,0x85,0x46,0x8e,0x47,0xa3,0x7a,0xa0,0xd1,0xce,0x68, +0xf4,0x4e,0x34,0xc6,0x15,0x8d,0x05,0x34,0xb6,0x2b,0x1a,0x97, +0x13,0x8d,0xdb,0x8e,0xc6,0x97,0x45,0x31,0x80,0x62,0x32,0xd0, +0x84,0x29,0x68,0xe2,0x22,0x34,0xa9,0x0b,0x9a,0x94,0x8e,0x26, +0x2f,0x40,0x53,0xca,0xa0,0x29,0x5b,0xd1,0xd4,0x30,0x34,0xad, +0x01,0x9a,0xf6,0x03,0x4d,0xbf,0x88,0x66,0x24,0xa0,0x99,0xfb, +0xd0,0xac,0x9a,0x68,0xb6,0x46,0xb3,0xcf,0xa1,0x39,0x27,0xd0, +0xdc,0x3d,0x68,0xde,0x04,0x34,0xbf,0x28,0x5a,0xe0,0x80,0x16, +0x9c,0x47,0x0b,0x57,0xa2,0x45,0x33,0xd1,0xe2,0xe6,0x68,0x49, +0x15,0xb4,0x24,0x13,0x2d,0x75,0x47,0x4b,0x13,0xd0,0xb2,0x99, +0x68,0x79,0x1d,0xb4,0xfc,0x05,0x5a,0x31,0x11,0xad,0x8c,0x40, +0xab,0x42,0xd1,0xea,0x18,0xb4,0x26,0x2f,0x5a,0x73,0x13,0xad, +0x9d,0x81,0xd6,0x05,0xa2,0xf5,0x85,0x51,0x2c,0x45,0x1b,0x08, +0xda,0xd8,0x18,0x6d,0x0a,0x46,0x9b,0xed,0xd0,0xe6,0x23,0x68, +0xcb,0x50,0xb4,0xb5,0x39,0xda,0x36,0x09,0xc5,0x15,0x45,0x71, +0x29,0x68,0xfb,0x48,0xb4,0xa3,0x3b,0xda,0x31,0x03,0xed,0xc8, +0x40,0x3b,0xaf,0xa0,0x5d,0xf5,0xd0,0xae,0xfb,0x68,0x77,0x1f, +0xb4,0x7b,0x3f,0xda,0x33,0x11,0xed,0xf5,0x45,0xf1,0xf9,0x50, +0x7c,0x4d,0xb4,0xcf,0x13,0xed,0xef,0x82,0x0e,0x74,0x45,0x07, +0x83,0xd1,0xc1,0x74,0x74,0x28,0x10,0x1d,0x4a,0x42,0x87,0x77, +0xa3,0x23,0x4b,0xd0,0x51,0x77,0x74,0xac,0x2c,0x3a,0xee,0x89, +0x8e,0xff,0x41,0x27,0x06,0xa2,0x13,0x3b,0xd1,0xc9,0x49,0xe8, +0x94,0x85,0x4e,0xdd,0x42,0xa7,0x7b,0xa3,0x33,0xf3,0xd0,0x99, +0x0c,0x74,0xb6,0x2c,0x3a,0x3b,0x0b,0x9d,0x73,0x42,0xe7,0x86, +0xa1,0xf3,0x0c,0x9d,0x1f,0x8a,0xce,0x3f,0x40,0x09,0x8d,0x51, +0xc2,0x68,0x74,0xa1,0x1e,0xba,0xf0,0x09,0x25,0x5a,0x28,0xf1, +0x12,0xba,0xb4,0x1a,0x5d,0x6e,0x89,0x2e,0xff,0x40,0x57,0x22, +0xd0,0xd5,0x1c,0xe8,0x6a,0x1a,0x4a,0x6a,0x8f,0x92,0x4e,0xa3, +0x6b,0x95,0xd0,0xb5,0xbb,0xe8,0x7a,0x3d,0x74,0xa3,0x15,0xba, +0x91,0x89,0x6e,0x8e,0x41,0x37,0x6f,0xa1,0x5b,0x3d,0xd1,0xad, +0x64,0x74,0xbb,0x35,0xba,0xfd,0x08,0xdd,0x39,0x8e,0xee,0x46, +0xa2,0x64,0x83,0x92,0x4f,0xa0,0x7b,0x7d,0xd1,0x7d,0x8d,0xee, +0x5f,0x42,0x0f,0x26,0xa0,0x94,0x18,0xf4,0x70,0x08,0x4a,0x6d, +0x85,0x52,0xd7,0xa2,0xd4,0x2c,0x94,0x36,0x04,0xa5,0x3d,0x46, +0x8f,0xf3,0xa1,0xc7,0xe7,0xd0,0x93,0xd1,0xe8,0xe9,0x35,0xf4, +0xec,0x06,0x7a,0xee,0x8e,0x9e,0x9f,0x46,0x2f,0x6e,0xa0,0x97, +0x18,0xbd,0xfc,0x8e,0x5e,0xdd,0x42,0xaf,0x43,0xd1,0x1b,0x86, +0xde,0xac,0x45,0x6f,0x63,0xd1,0xbb,0xf6,0xe8,0xbd,0x37,0x7a, +0xff,0x12,0x7d,0x98,0x85,0x3e,0x56,0x42,0x9f,0x3c,0x50,0x7a, +0x29,0xf4,0xd9,0x01,0x7d,0x29,0x8d,0xbe,0xec,0x42,0x5f,0xbd, +0xd0,0xd7,0x5b,0xe8,0x5b,0x3a,0xfa,0xde,0x1f,0xfd,0xb8,0x8b, +0x7e,0x06,0xa1,0x8c,0x1a,0x28,0x63,0x11,0xfa,0xd5,0x1e,0xfd, +0xae,0x84,0x7e,0xef,0x45,0x7f,0x3a,0xa3,0x3f,0x87,0xd0,0x5f, +0x37,0x94,0xe9,0x88,0xb2,0x9c,0x51,0xd6,0x29,0x0c,0x9d,0x31, +0xb2,0xc3,0xe8,0x18,0xc6,0xf3,0x31,0x99,0x88,0xe9,0x00,0xcc, +0x04,0xe6,0x01,0x98,0xbf,0xc3,0xa2,0x0d,0x16,0xc9,0x58,0x6e, +0xc1,0xea,0x24,0xd6,0x43,0xb1,0x19,0x81,0x2d,0x3b,0x6c,0x3d, +0xc1,0x76,0xab,0x71,0x8e,0xf9,0x38,0x67,0x2f,0x9c,0xab,0x26, +0xce,0x5d,0x0c,0xe7,0x69,0x83,0xf3,0x96,0xc5,0xf9,0x02,0x71, +0x7e,0x82,0xf3,0xaf,0xc3,0x05,0xa6,0x60,0xfb,0xce,0xb8,0xa0, +0xc4,0x05,0x53,0x70,0xa1,0xe9,0xb8,0xd0,0x6b,0xec,0xd0,0x1f, +0x3b,0x24,0xe0,0xc2,0x73,0xb0,0xe3,0x5c,0xec,0x14,0x81,0x9d, +0xcb,0x60,0xe7,0x3b,0xb8,0xc8,0x76,0xec,0x12,0x89,0x8b,0xfa, +0xe3,0x62,0xc7,0x71,0xf1,0x04,0x5c,0xa2,0x1e,0x2e,0xf1,0x13, +0xbb,0x8e,0xc2,0x25,0x0b,0xe2,0x92,0x1b,0x71,0xa9,0x18,0x5c, +0xba,0x0c,0x2e,0xfd,0x02,0x97,0x49,0xc5,0x65,0xe7,0xe3,0xb2, +0xe7,0x71,0x79,0x0b,0x97,0xaf,0x8b,0xdd,0x0a,0x60,0xb7,0x14, +0x5c,0x61,0x3b,0xae,0x18,0x8c,0x2b,0x59,0xb8,0x52,0x26,0xae, +0x9c,0x88,0xdd,0x17,0xe0,0x2a,0xd7,0xb0,0xc7,0x58,0xec,0x19, +0x89,0x3d,0x7f,0xe3,0xaa,0x53,0x71,0xd5,0x9f,0xb8,0xda,0x37, +0xec,0xd5,0x13,0x7b,0x3d,0xc3,0xd5,0x43,0x71,0x8d,0xbc,0xb8, +0xc6,0x32,0x5c,0xb3,0x12,0xae,0xf9,0x18,0x7b,0xbb,0x60,0xef, +0x27,0xb8,0xd6,0x1d,0x5c,0x7b,0x03,0xae,0x33,0x10,0xd7,0x75, +0xc4,0xf5,0x82,0x70,0xbd,0x4b,0xd8,0x27,0x2f,0xf6,0x59,0x8f, +0x7d,0xce,0xe0,0xfa,0xad,0x70,0xfd,0x2c,0xdc,0x80,0xe2,0x06, +0x59,0xb8,0x51,0x75,0xdc,0xb8,0x3c,0x6e,0xfc,0x15,0x37,0x19, +0x84,0x9b,0xa4,0xe3,0xa6,0x23,0x70,0xb3,0x96,0xd8,0xaf,0x33, +0xf6,0x3b,0x8a,0xfd,0x47,0xe1,0xe6,0xd5,0x71,0x8b,0x52,0xb8, +0xc5,0x1b,0x1c,0x50,0x12,0x07,0x1c,0xc1,0x2d,0xdb,0xe1,0x96, +0x29,0xb8,0xd5,0x64,0xdc,0xba,0x27,0x6e,0x73,0x0f,0xb7,0x2d, +0x8d,0xdb,0x39,0xe1,0x76,0x93,0x71,0xfb,0x0d,0x38,0xb0,0x2c, +0xee,0x60,0xdb,0x52,0x70,0xc7,0xdd,0xb8,0xd3,0x38,0xdc,0x79, +0x2e,0xee,0x42,0x70,0x97,0x99,0xb8,0x6b,0x1d,0xdc,0xf5,0x3e, +0xee,0xb6,0x1c,0x77,0xef,0x84,0xbb,0xff,0xc6,0x3d,0xc2,0x71, +0x8f,0x87,0xb8,0x67,0x35,0xdc,0xab,0x17,0xee,0xf5,0x01,0x07, +0x2d,0xc3,0xc1,0xd5,0x70,0xf0,0x5c,0xdc,0x7b,0x0e,0x0e,0x99, +0x8d,0x43,0xfd,0x70,0x1f,0x8c,0xfb,0x72,0xdc,0x37,0x13,0x87, +0x75,0xc0,0x61,0x0f,0x71,0xf8,0x10,0x1c,0xfe,0x05,0xf7,0xdb, +0x8c,0x23,0x2a,0xe0,0x88,0x38,0x1c,0xb9,0x04,0xf7,0x2f,0x8f, +0xfb,0xaf,0xc5,0x03,0x9a,0xe1,0x81,0x8f,0xf0,0xa0,0x81,0x78, +0x70,0x09,0x3c,0x78,0x2f,0x1e,0x32,0x07,0x47,0xb5,0xc0,0x43, +0x31,0x1e,0x1a,0x8f,0xa3,0x47,0xe2,0xe1,0xf5,0xf0,0xf0,0x13, +0x78,0xa4,0x13,0x1e,0x79,0x10,0x8f,0x6a,0x89,0x47,0xa7,0xe2, +0x31,0x7d,0xf1,0x58,0x8a,0xc7,0xfe,0xc5,0xe3,0xae,0xe3,0x98, +0x32,0x38,0xe6,0x1d,0x9e,0xd0,0x15,0x4f,0x78,0x81,0x27,0x0e, +0xc5,0x93,0xf2,0xe0,0x49,0xef,0xf1,0xe4,0xfd,0x78,0xca,0x03, +0x3c,0x75,0x15,0x9e,0xd6,0x1b,0x4f,0x9f,0x82,0x67,0x9c,0xc3, +0x33,0x67,0xe1,0x99,0x0f,0xf0,0xec,0xb2,0x78,0x76,0x12,0x9e, +0x5b,0x13,0xcf,0xcb,0x85,0xe7,0x0f,0xc7,0x0b,0xe6,0xe1,0x85, +0x1d,0xf1,0xa2,0x28,0xbc,0xf8,0x11,0x5e,0x12,0x8a,0x97,0x1e, +0xc5,0xcb,0x8e,0xe0,0xe5,0x73,0xf0,0x8a,0x35,0x78,0x45,0x2a, +0x5e,0xd9,0x0b,0xaf,0x2a,0x89,0x57,0xc5,0xe1,0xd5,0xa7,0xf1, +0x1a,0x6f,0xbc,0x26,0x16,0xaf,0x2d,0x8b,0xd7,0xb9,0xe2,0x75, +0xeb,0xf1,0xfa,0x56,0x38,0x36,0x2f,0x8e,0x8d,0xc5,0x1b,0xda, +0xe2,0x0d,0xb3,0xf1,0x86,0x74,0xbc,0xb1,0x07,0xde,0x78,0x03, +0x6f,0xea,0x8c,0x37,0x65,0xe0,0xcd,0x6d,0xf0,0xe6,0x55,0x78, +0x4b,0x5b,0xbc,0xd5,0xb6,0xbd,0xc3,0xdb,0xc6,0xe3,0xb8,0x06, +0x38,0xee,0x26,0xde,0x3e,0x1e,0xef,0x68,0x84,0x77,0xa4,0xe1, +0x9d,0xdf,0xf1,0xae,0xc7,0x78,0x0f,0xc7,0x7b,0xae,0xe1,0xbd, +0xe7,0xf1,0xde,0x9f,0x38,0xbe,0x06,0x8e,0x5f,0x87,0xf7,0x09, +0xbc,0xaf,0x22,0xde,0xb7,0x06,0xef,0x5f,0x8d,0x0f,0xf4,0xc4, +0x07,0x29,0x3e,0x78,0x14,0x1f,0xf2,0xc0,0x87,0x36,0xe0,0xc3, +0xf3,0xf1,0x91,0xc5,0xf8,0xe8,0x72,0x7c,0x2c,0x08,0x1f,0x3b, +0x80,0x8f,0xe7,0xc3,0xc7,0x87,0xe1,0xe3,0x7f,0xf0,0x89,0xad, +0xf8,0xe4,0x44,0x7c,0x2a,0x0f,0x3e,0x5d,0x14,0x9f,0x1e,0x8f, +0x4f,0xa7,0xe0,0x33,0x47,0xf1,0x99,0x1f,0xf8,0xec,0x3e,0x7c, +0xf6,0x17,0x3e,0x17,0x8f,0xcf,0x0f,0xc7,0x09,0xce,0xf8,0x82, +0xc2,0x17,0x2e,0xe3,0x8b,0xbd,0x71,0x62,0x43,0x9c,0xf8,0x0d, +0x5f,0x4a,0xc0,0x97,0xcf,0xe1,0x2b,0xc7,0xf0,0xd5,0x96,0xf8, +0xea,0x23,0x9c,0x74,0x13,0x5f,0xfb,0x88,0xaf,0xdf,0xc7,0x37, +0xde,0xe2,0x9b,0x9b,0xf0,0xad,0xd1,0xf8,0x76,0x34,0xbe,0x33, +0x07,0xdf,0xfd,0x84,0xef,0x8d,0xc7,0x0f,0x04,0x7e,0x30,0x1a, +0xa7,0x5c,0xc7,0x0f,0x5b,0xe3,0x87,0x7f,0x70,0xea,0x7e,0x9c, +0x56,0x01,0xa7,0xcd,0xc5,0x8f,0xc6,0xe2,0x47,0x47,0xf1,0xe3, +0x86,0xf8,0xf1,0x4b,0xfc,0x64,0x00,0x7e,0x5a,0x1d,0x3f,0x4d, +0xc1,0xcf,0x34,0x7e,0xf6,0x09,0x3f,0x77,0xc7,0xcf,0xd3,0xf0, +0x8b,0xdb,0xf8,0xe5,0x24,0xfc,0xaa,0x3d,0x7e,0xdd,0x16,0xbf, +0x69,0x87,0xdf,0x0e,0xc0,0x6f,0xaf,0xe3,0x77,0x21,0xf8,0xbd, +0x23,0xfe,0x50,0x0b,0x7f,0x78,0x8c,0x3f,0x86,0xe2,0x8f,0x3f, +0xf1,0xa7,0xbe,0x38,0xbd,0x27,0x4e,0xdf,0x8e,0x3f,0xbb,0xe1, +0xcf,0xf3,0xf1,0xe7,0x17,0xf8,0xcb,0x41,0xfc,0xd5,0x0f,0x7f, +0x7d,0x8c,0xbf,0x55,0xc1,0xdf,0x25,0xfe,0x61,0xf0,0x8f,0xcf, +0x38,0xc3,0xe0,0x8c,0x7e,0xf8,0x57,0x37,0xfc,0xdb,0x0d,0xff, +0x4e,0xc3,0x7f,0x1a,0xe1,0x3f,0x3f,0xf0,0xdf,0xa5,0x38,0xb3, +0x1f,0xce,0xf2,0xc0,0x59,0x33,0x08,0x6c,0x25,0x28,0x88,0xa0, +0x4f,0x04,0x07,0x10,0xfc,0x83,0x90,0x15,0x84,0x96,0x21,0xf4, +0x21,0xe1,0x13,0x89,0x68,0x40,0x64,0x34,0x51,0xb5,0x88,0xfa, +0x4d,0xf4,0x08,0x62,0xd6,0x12,0x6b,0x37,0xb1,0xfb,0x4e,0x72, +0x16,0x21,0x39,0xd7,0x91,0x5c,0xf3,0x48,0x6e,0x4c,0x72,0x5f, +0x23,0x79,0x6a,0x91,0x3c,0xe9,0x24,0x6f,0x1f,0x92,0xaf,0x0e, +0xc9,0x77,0x81,0xe4,0xdf,0x4a,0x0a,0xf4,0x27,0x05,0x6e,0x10, +0x7b,0x57,0x62,0x7f,0x9f,0x14,0x2c,0x44,0x0a,0xce,0x24,0x85, +0x72,0x92,0x42,0x17,0x88,0x43,0x47,0xe2,0xf0,0x87,0x14,0x5e, +0x4b,0x1c,0xd3,0x88,0xd3,0x79,0xe2,0xbc,0x85,0x14,0x99,0x41, +0x5c,0xe6,0x91,0xa2,0xa3,0x48,0xd1,0xdf,0xa4,0xd8,0x58,0x52, +0xbc,0x33,0x29,0x7e,0x9d,0x94,0xf8,0x45,0x5c,0x2f,0x90,0x92, +0x57,0x49,0xa9,0x77,0xa4,0x4c,0x4f,0x52,0xe6,0x27,0x29,0x3b, +0x81,0x94,0x03,0x52,0x6e,0x0f,0x29,0x2f,0x49,0xf9,0x6d,0xc4, +0xed,0x0c,0xa9,0x30,0x86,0x54,0xec,0x4e,0x2a,0x9d,0x24,0x95, +0xab,0x92,0xca,0x49,0xc4,0xfd,0x2d,0xf1,0x28,0x49,0x3c,0x5e, +0x91,0xaa,0x40,0xaa,0x55,0x24,0x5e,0x98,0x78,0xc5,0x92,0xea, +0x23,0x49,0xf5,0x77,0xa4,0xc6,0x02,0x52,0xf3,0x0f,0xf1,0x6e, +0x41,0x6a,0x55,0x24,0xb5,0x06,0x93,0xda,0x85,0x49,0xed,0x10, +0x52,0x3b,0x89,0xd4,0x99,0x4a,0xea,0x4e,0x26,0xf5,0x82,0x88, +0x8f,0x33,0xa9,0x4f,0x49,0xfd,0xfd,0xc4,0xd7,0x91,0x34,0xc0, +0xa4,0xc1,0x12,0xd2,0xf0,0x38,0x69,0x14,0x4d,0x1a,0xd7,0x22, +0x4d,0x0e,0x91,0xa6,0xb1,0xa4,0xd9,0x19,0xe2,0xb7,0x8c,0xf8, +0xcf,0x24,0xcd,0xbb,0x92,0xe6,0x47,0x49,0x8b,0x05,0x24,0xa0, +0x18,0x09,0x38,0x4f,0x5a,0xee,0x21,0xad,0x9c,0x48,0xab,0x29, +0xa4,0xd5,0x07,0xd2,0xfa,0x21,0x69,0xb3,0x9d,0xb4,0x75,0x25, +0x6d,0xcf,0x93,0xf6,0x84,0xb4,0xbf,0x4e,0x02,0xf7,0x92,0x0e, +0x1f,0x49,0x27,0x77,0xd2,0x69,0x22,0xe9,0x5c,0x90,0x74,0x71, +0x25,0x5d,0x12,0x49,0xd7,0x39,0xa4,0xdb,0x44,0xd2,0xbd,0x2d, +0xe9,0x9e,0x4a,0x7a,0x8c,0x22,0x3d,0xd7,0x92,0x5e,0xc7,0x48, +0xaf,0x2c,0x12,0xf4,0x84,0x04,0xcf,0x22,0xc1,0x7f,0x49,0xef, +0xbe,0xa4,0xf7,0x4a,0x12,0x52,0x82,0x84,0x84,0x91,0xd0,0x9c, +0x24,0xf4,0x03,0xe9,0x53,0x8c,0xf4,0x59,0x4f,0xfa,0x0e,0x25, +0x7d,0x77,0x90,0x30,0x7f,0x12,0x76,0x81,0x84,0x4f,0x22,0xfd, +0xc6,0x92,0x88,0x10,0x12,0xd9,0x9d,0xf4,0x2f,0x47,0xfa,0x6f, +0x24,0x03,0xd6,0x90,0x81,0x81,0x64,0x50,0x15,0x32,0xb8,0x10, +0x19,0x7c,0x9d,0x0c,0x89,0x24,0x51,0x03,0xc9,0xd0,0x3a,0x64, +0xe8,0x54,0x32,0x34,0x85,0x44,0xfb,0x91,0xe8,0xc9,0x24,0xfa, +0x05,0x19,0xd6,0x84,0x0c,0xcf,0x4b,0x46,0x38,0x93,0x11,0x77, +0xc8,0xc8,0x1e,0x64,0x64,0x16,0x19,0x5d,0x8b,0x8c,0x7e,0x49, +0xc6,0x2c,0x20,0x63,0x4b,0x91,0xb1,0xc7,0xc9,0xb8,0xcb,0x64, +0xfc,0x26,0x12,0xa3,0xc8,0x04,0x7b,0x32,0x61,0x35,0x99,0x58, +0x9f,0x4c,0xbc,0x47,0x26,0x0d,0x27,0x93,0x29,0x99,0x3c,0x86, +0x4c,0xa1,0x64,0xca,0x78,0x32,0xb5,0x19,0x99,0x9a,0x46,0xa6, +0x75,0x22,0xd3,0x86,0x92,0x69,0x67,0xc8,0x74,0x07,0x32,0xfd, +0x3a,0x99,0xd1,0x86,0xcc,0x78,0x40,0x66,0x4e,0x24,0x33,0xff, +0x90,0x59,0x63,0xc9,0xec,0xbc,0x64,0x76,0x79,0x32,0x7b,0x0d, +0x99,0x53,0x85,0xcc,0x59,0x48,0xe6,0x5a,0x64,0xee,0x62,0x32, +0xaf,0x33,0x99,0xf7,0x85,0xcc,0xef,0x46,0x16,0x38,0x93,0x05, +0x07,0xc8,0xc2,0x48,0xb2,0xc8,0x85,0x2c,0x3a,0x4c,0x16,0x57, +0x24,0x8b,0x4f,0x93,0x25,0x9d,0xc9,0x92,0x1f,0x64,0xe9,0x31, +0xb2,0x6c,0x11,0x59,0x1e,0x46,0x96,0x9f,0x23,0x2b,0xba,0x93, +0x15,0xdf,0xc9,0xca,0x44,0xb2,0x6a,0x25,0x59,0xf5,0x84,0xac, +0xae,0x4e,0xd6,0x30,0xb2,0xe6,0x34,0x59,0xfb,0x8e,0xac,0xdb, +0x4a,0xd6,0x27,0x91,0xd8,0xf7,0x64,0xc3,0x37,0xb2,0x71,0x33, +0xd9,0xd4,0x80,0x6c,0x5a,0x46,0x36,0xf7,0x22,0x5b,0xf2,0x92, +0x2d,0xf3,0xc8,0xd6,0x49,0x64,0x5b,0x1e,0xb2,0x6d,0x30,0x89, +0x1b,0x48,0xb6,0xd7,0x25,0xdb,0xe3,0xc8,0x8e,0xf9,0x64,0x67, +0x23,0xb2,0xab,0x32,0xd9,0x5d,0x9e,0xec,0x4e,0x25,0x7b,0x12, +0xc9,0xde,0x21,0x24,0xbe,0x3e,0x89,0xbf,0x43,0xf6,0xf5,0x24, +0xfb,0x4e,0x92,0xfd,0xa9,0xe4,0x40,0x08,0x39,0x58,0x90,0x1c, +0x8c,0x22,0x07,0x6f,0x92,0x43,0x17,0xc8,0xe1,0xed,0xe4,0xc8, +0x71,0x72,0x74,0x16,0x39,0x36,0x87,0x1c,0xbf,0x45,0x4e,0xd4, +0x26,0x27,0xde,0x91,0x93,0x3e,0xe4,0xe4,0x62,0x72,0x6a,0x0d, +0x39,0xdd,0x9d,0x9c,0x09,0x22,0x67,0x09,0x39,0xc7,0xc8,0xf9, +0xbc,0x24,0x81,0x92,0x84,0x5f,0xe4,0xc2,0x5d,0x72,0xf1,0x09, +0x49,0x6c,0x42,0x12,0xdf,0x91,0x4b,0x03,0xc9,0xa5,0x34,0x72, +0x79,0x14,0xb9,0x9c,0x4a,0xae,0xd4,0x20,0x57,0xf6,0x91,0xab, +0x8f,0x49,0xd2,0x07,0x72,0x6d,0x2e,0xb9,0xc1,0xc8,0x8d,0x0d, +0xe4,0x66,0x25,0x72,0xf3,0x25,0xb9,0x35,0x99,0xdc,0xf6,0x23, +0x77,0x38,0xb9,0xf3,0x98,0xdc,0x6d,0x45,0x92,0x7b,0x91,0xe4, +0x97,0xe4,0x5e,0x17,0x72,0x2f,0x89,0xdc,0xbf,0x42,0x1e,0x84, +0x90,0x07,0x87,0x49,0x8a,0x17,0x49,0xd9,0x48,0x1e,0x36,0x26, +0x0f,0xb3,0x48,0xea,0x2a,0x92,0xe6,0x40,0x1e,0x15,0x27,0x8f, +0x2b,0x92,0xc7,0x17,0xc8,0x93,0xf1,0xe4,0x69,0x67,0xf2,0xf4, +0x07,0x79,0xb6,0x86,0x3c,0x17,0xe4,0xf9,0x4e,0xf2,0xa2,0x23, +0x79,0xf1,0x93,0xbc,0xdc,0x44,0x5e,0xe5,0x27,0xaf,0xb2,0xc8, +0xeb,0x56,0xe4,0x4d,0x65,0xf2,0x96,0x93,0xb7,0xaf,0xc9,0xbb, +0xa3,0xe4,0xfd,0x78,0xf2,0xc1,0x85,0x7c,0x88,0x27,0x1f,0x5b, +0x91,0x8f,0x59,0xe4,0xd3,0x4b,0x92,0xbe,0x8f,0x7c,0x9e,0x4d, +0xbe,0x34,0x22,0x5f,0xfd,0xc8,0xb7,0x32,0xe4,0x7b,0x63,0xf2, +0x3d,0x83,0xfc,0x08,0x24,0x3f,0x9e,0x93,0x9f,0xe1,0x24,0x83, +0x90,0x8c,0x09,0xe4,0x97,0x23,0xf9,0x75,0x82,0xfc,0x1e,0x40, +0xfe,0xd4,0x23,0x7f,0x32,0xc8,0xdf,0x59,0x24,0xb3,0x18,0xc9, +0xbc,0x44,0xb2,0x62,0x28,0xfc,0xa6,0xa8,0x0b,0x45,0x2f,0x28, +0xf6,0xa6,0x04,0x53,0x12,0x44,0xa9,0x33,0xa5,0x07,0x28,0xab, +0x4d,0xb9,0x45,0xf9,0x6d,0x2a,0x0e,0x51,0xb9,0x95,0xaa,0x55, +0x54,0x37,0xa4,0xfa,0x05,0x35,0xf5,0xa8,0xd9,0x4f,0xad,0x78, +0x6a,0xb7,0x8d,0xe6,0x58,0x41,0x73,0xde,0xa5,0xb9,0xfc,0x68, +0xee,0x96,0x34,0x4f,0x6d,0x9a,0xb7,0x0a,0xcd,0x1b,0x4b,0xf3, +0x1d,0xa5,0xf9,0x47,0xd1,0x02,0xc1,0xd4,0x7e,0x11,0xb5,0xbf, +0x40,0x0b,0xb6,0xa6,0x05,0x07,0xd1,0x42,0x4b,0xa8,0x43,0x14, +0x75,0x98,0x4f,0x0b,0x2f,0xa6,0x8e,0xab,0xa8,0x53,0x24,0x75, +0x1e,0x42,0x8b,0xdc,0xa7,0x2e,0x3d,0xa9,0xcb,0x5f,0x5a,0xf4, +0x02,0x2d,0xee,0x49,0x8b,0x7f,0xa5,0xae,0xf6,0xb4,0xa4,0xa6, +0xa5,0x9a,0xd3,0xd2,0xf3,0x68,0x99,0x32,0xb4,0x4c,0x2a,0x2d, +0xfb,0x9e,0x96,0xf3,0xa0,0xe5,0x16,0xd1,0x72,0x19,0xb4,0xfc, +0x2a,0xea,0x56,0x96,0xba,0x85,0x51,0xb7,0xfb,0xb4,0xc2,0x10, +0x5a,0xe1,0x12,0xad,0xf0,0x8e,0x56,0x3c,0x4e,0x2b,0x85,0xd1, +0xca,0xbd,0x68,0xe5,0x35,0xd4,0xbd,0x25,0x75,0x9f,0x45,0xab, +0x20,0x5a,0x65,0x22,0xf5,0x28,0x46,0x3d,0xae,0x53,0xcf,0x9a, +0xd4,0xf3,0x17,0xad,0xba,0x86,0x56,0x9b,0x4e,0xab,0x7d,0xa6, +0x5e,0x8b,0xa9,0xd7,0x01,0x5a,0xbd,0x19,0xad,0x7e,0x85,0xd6, +0xd8,0x40,0x6b,0xe6,0xa1,0x35,0x13,0xa8,0xf7,0x10,0x5a,0x6b, +0x01,0xad,0xbd,0x81,0xd6,0x69,0x42,0xeb,0x64,0xd0,0xba,0xc1, +0xb4,0x9e,0x03,0xad,0xb7,0x98,0xfa,0x94,0xa3,0x3e,0x0f,0x68, +0xfd,0x15,0xd4,0x77,0x16,0x6d,0xd0,0x97,0x36,0xf4,0xa7,0x8d, +0x4a,0xd1,0x46,0x6f,0x68,0xe3,0x29,0xb4,0x71,0x26,0x6d,0xb2, +0x8c,0x36,0x2d,0x48,0x9b,0x4e,0xa4,0x4d,0xef,0xd2,0x66,0x15, +0xa9,0xdf,0x1a,0xea,0x5f,0x9f,0xfa,0x9f,0xa2,0xcd,0xbb,0xd0, +0x16,0x2b,0x68,0x40,0x1d,0xda,0x72,0x0b,0x6d,0xdd,0x98,0xb6, +0xfe,0x40,0xdb,0x56,0xa6,0x6d,0x67,0xd0,0xb6,0xb7,0x68,0xbb, +0xaa,0xb4,0xdd,0x70,0xda,0xde,0xa2,0xed,0xe3,0x68,0xa0,0x0f, +0xed,0x90,0x8b,0x76,0x98,0x4a,0x3b,0xae,0xa6,0x9d,0x26,0xd1, +0xce,0x98,0x76,0x5e,0x4d,0x3b,0x67,0xd2,0x2e,0x03,0x69,0x97, +0x5d,0xb4,0xab,0x03,0xed,0xfa,0x99,0x76,0x8b,0xa4,0xdd,0x63, +0x68,0x0f,0x45,0x7b,0x64,0xd0,0x9e,0x2b,0x69,0xaf,0x7d,0x34, +0xa8,0x17,0x0d,0xae,0x48,0x83,0x57,0xd3,0xde,0x01,0x34,0x64, +0x2c,0x0d,0xad,0x4d,0x43,0xdf,0xd0,0x3e,0x7d,0x68,0xdf,0x70, +0x1a,0xb6,0x83,0x86,0x6f,0xa4,0xfd,0xf2,0xd0,0x7e,0x53,0x69, +0x84,0x2f,0x8d,0xf8,0x4a,0x23,0xef,0xd2,0xfe,0xab,0xe8,0x80, +0x40,0x3a,0xe0,0x1c,0x1d,0x78,0x86,0x0e,0xaa,0x4b,0x07,0x7b, +0xd0,0xc1,0xf3,0xe9,0x90,0x21,0x34,0xaa,0x04,0x8d,0x8a,0xa3, +0x43,0xcb,0xd3,0xa1,0xb3,0xe9,0xd0,0x7b,0x34,0x7a,0x3a,0x1d, +0xd6,0x9e,0x0e,0xef,0x48,0x47,0x94,0xa6,0x23,0x32,0xe8,0x28, +0x45,0x47,0x8d,0xa4,0xa3,0xcb,0xd3,0x31,0x16,0x1d,0x73,0x9f, +0x8e,0xb5,0xa7,0x63,0xe3,0xe9,0x38,0x49,0xc7,0x75,0xa1,0xe3, +0xee,0xd0,0xf1,0x2b,0x69,0x4c,0x20,0x8d,0xc9,0xa2,0x13,0xee, +0xd0,0x89,0x8b,0xe8,0xa4,0x91,0x74,0x72,0x79,0x3a,0x79,0x1d, +0x9d,0x12,0x40,0xa7,0x72,0x3a,0x35,0x92,0x4e,0x2b,0x4a,0xa7, +0x3b,0xd0,0x19,0x39,0xe9,0xcc,0x1e,0x74,0xe6,0x27,0x3a,0xab, +0x26,0x9d,0xb5,0x95,0xce,0xce,0x4d,0x67,0x8f,0xa0,0x73,0x5a, +0xd0,0x39,0xe7,0xe8,0xdc,0x0d,0x74,0xde,0x69,0x3a,0xbf,0x07, +0x5d,0x60,0x4f,0x17,0xdc,0xa4,0x0b,0x57,0xd1,0x45,0x77,0xe8, +0x12,0x6f,0xba,0x24,0x83,0x2e,0x1d,0x45,0x97,0x31,0xba,0x2c, +0x8d,0x2e,0x5f,0x46,0x57,0x5c,0xa5,0x2b,0x93,0xe9,0xaa,0x74, +0xba,0x3a,0x8e,0xae,0x09,0xa4,0x6b,0x3e,0xd3,0xb5,0xd7,0xe8, +0xba,0x61,0x74,0xfd,0x7a,0xba,0xfe,0x09,0x8d,0xad,0x4f,0x63, +0x93,0x69,0x6c,0x3a,0xdd,0xb0,0x94,0x6e,0x6c,0x48,0x37,0x7e, +0xa5,0x9b,0x5a,0xd0,0xcd,0x94,0x6e,0x4e,0xa7,0x5b,0x3d,0xe9, +0xd6,0x5d,0x74,0xdb,0x29,0x1a,0xd7,0x8f,0x6e,0x67,0x74,0xfb, +0x58,0xba,0x23,0x9c,0xee,0x54,0x74,0x57,0x7e,0xba,0x2b,0x95, +0xee,0xbe,0x4b,0xf7,0x0a,0xba,0xb7,0x06,0xdd,0xfb,0x8b,0xc6, +0xaf,0xa6,0xfb,0x76,0xd3,0xfd,0x3b,0xe9,0x81,0x08,0x7a,0x30, +0x9a,0x1e,0xda,0x47,0x0f,0x2f,0xa4,0x47,0x8b,0xd3,0xa3,0xe7, +0xe9,0xb1,0x69,0xf4,0x58,0x26,0x3d,0x9e,0x40,0x4f,0xcc,0xa3, +0x27,0x2b,0xd1,0x93,0xef,0xe9,0xa9,0x75,0xf4,0x74,0x65,0x7a, +0xa6,0x2a,0x3d,0x93,0x45,0xcf,0x66,0xd1,0x73,0x09,0xf4,0x7c, +0x30,0x4d,0x28,0x4a,0x13,0xae,0xd3,0x0b,0x8d,0xe8,0x85,0x87, +0xf4,0xe2,0x7c,0x9a,0xd8,0x84,0x26,0x7e,0xa0,0x97,0xb2,0xe8, +0xe5,0x55,0xf4,0x4a,0x3e,0x7a,0xe5,0x1a,0xbd,0xba,0x80,0x26, +0xf9,0xd2,0xa4,0x27,0xf4,0xda,0x5e,0x7a,0xbd,0x02,0xbd,0xbe, +0x8f,0xde,0xe8,0x47,0x6f,0xb6,0xa2,0xb7,0x22,0xe8,0xed,0xf2, +0xf4,0x8e,0xa0,0x77,0xae,0xd3,0xbb,0x7f,0x69,0x72,0x00,0x4d, +0xde,0x48,0xef,0x59,0xf4,0xde,0x6c,0x7a,0xbf,0x06,0xbd,0xbf, +0x8a,0x3e,0x68,0x49,0x53,0xfc,0x68,0x4a,0x26,0x7d,0x78,0x90, +0xa6,0x56,0xa6,0xa9,0x1f,0x68,0x5a,0x0d,0x9a,0xb6,0x9a,0x3e, +0x52,0xf4,0x51,0x2b,0xfa,0xe8,0x14,0x7d,0xbc,0x8f,0x3e,0x19, +0x48,0x9f,0x3a,0xd0,0xa7,0x09,0xf4,0xd9,0x40,0xfa,0xbc,0x00, +0x7d,0x7e,0x87,0xbe,0x68,0x44,0x5f,0xcc,0xa5,0x2f,0x0b,0xd1, +0x97,0x53,0xe9,0xab,0x86,0xf4,0xd5,0x37,0xfa,0x7a,0x3b,0x7d, +0xb3,0x87,0xbe,0x6d,0x43,0xdf,0xfe,0xa1,0xef,0xe2,0xe9,0xfb, +0x01,0xf4,0x43,0x67,0xfa,0xd1,0x89,0x7e,0x7c,0x41,0x3f,0x75, +0xa1,0x9f,0xde,0xd1,0xf4,0x79,0xf4,0xf3,0x34,0xfa,0xa5,0x3c, +0xfd,0x92,0x45,0xbf,0x46,0xd1,0x6f,0x75,0xe8,0xb7,0x1f,0xf4, +0xfb,0x4f,0xfa,0xa3,0x1b,0xfd,0x91,0x40,0x7f,0xc6,0xd2,0x8c, +0x09,0xf4,0x57,0x28,0xfd,0xed,0x49,0x7f,0x7f,0xa1,0x7f,0xda, +0xd1,0x3f,0x5f,0xe8,0xdf,0x49,0x34,0x73,0x3c,0xcd,0xaa,0xc8, +0xa0,0x23,0x43,0x8c,0x61,0xc4,0x48,0x6e,0x46,0x8e,0x33,0x3a, +0x82,0xd1,0xf9,0x8c,0xa6,0x33,0x36,0x98,0xf1,0xe2,0x8c,0x0f, +0x65,0xa2,0x1e,0x93,0xc5,0x98,0x7c,0xc3,0xd4,0x57,0x66,0xea, +0x32,0x73,0x9a,0x59,0xad,0x99,0xdd,0x0a,0x96,0xc3,0x8f,0xe5, +0x48,0x67,0x39,0x0f,0xb2,0x5c,0x2d,0x59,0xae,0xb3,0x2c,0x0f, +0x62,0x79,0xde,0xb1,0x7c,0x8a,0xe5,0x0f,0x60,0x05,0xaa,0x31, +0xfb,0xbc,0xcc,0x7e,0x23,0x2b,0x38,0x88,0x15,0xaa,0xc8,0x0a, +0x3d,0x64,0x0e,0x8b,0x59,0xe1,0x93,0xcc,0xc9,0x8b,0x39,0xb7, +0x65,0xce,0xf7,0x58,0x91,0x6b,0xcc,0x65,0x34,0x2b,0xda,0x83, +0x15,0x73,0x66,0xc5,0xd6,0xb0,0xe2,0x39,0x59,0xf1,0x28,0x56, +0x42,0xb1,0x12,0xdb,0x99,0xeb,0x1a,0x56,0xd2,0x8f,0x95,0x2a, +0xc3,0x4a,0xad,0x60,0xa5,0x6b,0xb2,0x32,0x76,0xac,0x4c,0x12, +0x2b,0xeb,0xcb,0xca,0x51,0x56,0xde,0x8d,0x95,0x4f,0x65,0x6e, +0x5b,0x98,0xdb,0x0f,0x56,0xe1,0x1c,0xab,0xe8,0xc1,0x2a,0x5e, +0x65,0x95,0x0e,0xb1,0xca,0x1b,0x59,0xe5,0xe7,0xcc,0x7d,0x08, +0xab,0xe2,0xc7,0x3c,0xaa,0x30,0x8f,0x77,0xcc,0x73,0x14,0xf3, +0xbc,0xcd,0xaa,0x2e,0x60,0xd5,0xaa,0xb1,0x6a,0x3f,0x99,0x57, +0x25,0xe6,0x15,0xc6,0xbc,0x5e,0xb1,0xea,0xa7,0x58,0x0d,0xc2, +0x6a,0xcc,0x66,0x35,0xf3,0xb2,0x9a,0xd3,0x99,0xb7,0x37,0xf3, +0x7e,0xc2,0x6a,0x45,0xb2,0x5a,0x99,0xac,0xf6,0x15,0x56,0x27, +0x92,0xd5,0xf5,0x65,0x75,0x33,0x58,0xbd,0x55,0xcc,0xc7,0x95, +0xf9,0xbc,0x60,0xf5,0xc7,0x31,0x5f,0xc5,0x7c,0xe7,0x33,0xdf, +0xbf,0xac,0xc1,0x41,0xd6,0xb0,0x04,0x6b,0xf8,0x83,0x35,0xda, +0xcc,0x1a,0x0f,0x61,0x4d,0xe6,0xb2,0xa6,0x5e,0xac,0x59,0x5b, +0xe6,0x57,0x98,0xf9,0xdb,0xb3,0xe6,0x4e,0xac,0x85,0x60,0x2d, +0x96,0xb2,0x80,0x58,0xd6,0xb2,0x24,0x6b,0xb9,0x88,0xb5,0x4a, +0x61,0xad,0x87,0xb1,0x36,0x89,0xac,0x5d,0x35,0xd6,0xee,0x09, +0x6b,0x3f,0x86,0x05,0xe6,0x60,0x81,0xfd,0x59,0x87,0x8e,0xac, +0x23,0x67,0x1d,0x2f,0xb2,0x4e,0xd7,0x59,0xe7,0x24,0xd6,0x45, +0xb3,0x2e,0x4d,0x58,0xd7,0x4e,0xac,0x6b,0x26,0xeb,0x16,0xca, +0xba,0xd7,0x65,0xdd,0x4f,0xb3,0x1e,0xbf,0x58,0xcf,0xbd,0xac, +0x57,0x1e,0xd6,0x6b,0x36,0x0b,0xaa,0xc7,0x82,0xbe,0xb0,0xe0, +0x47,0xac,0xb7,0x2f,0xeb,0x9d,0xc8,0x42,0x0e,0xb1,0xd0,0x5e, +0x2c,0x74,0x1a,0xeb,0x53,0x9e,0xf5,0xb9,0xc4,0xfa,0xe6,0x67, +0x7d,0xff,0xb2,0xb0,0x8b,0x2c,0xbc,0x11,0x0b,0x5f,0xc7,0xfa, +0xcd,0x66,0x11,0x88,0x45,0xfc,0x64,0x91,0xbb,0x58,0x7f,0x3f, +0x36,0xa0,0x20,0x1b,0xf0,0x9c,0x0d,0xac,0xcf,0x06,0x95,0x64, +0x83,0x0e,0xb3,0xc1,0xf3,0xd9,0x90,0x48,0x16,0x55,0x9e,0x45, +0xc5,0xb2,0xa1,0x55,0x58,0x74,0x7e,0x16,0x3d,0x9a,0x45,0x27, +0xb3,0x61,0x3d,0xd9,0xb0,0x8d,0x6c,0xf8,0x28,0x36,0x62,0x0b, +0x1b,0x79,0x92,0x8d,0x6a,0xc3,0x46,0xdd,0x64,0xa3,0x9b,0xb0, +0x31,0x86,0x8d,0xb9,0xc4,0xc6,0x0e,0x61,0xe3,0x30,0x1b,0x37, +0x8a,0x8d,0x8f,0x60,0x31,0x1d,0x58,0xcc,0x53,0x36,0x61,0x3d, +0x9b,0x18,0xc5,0x26,0x05,0xb0,0xc9,0x88,0x4d,0x0e,0x62,0x53, +0x46,0xb0,0x29,0x49,0x6c,0xea,0x26,0x36,0xf5,0x2d,0x9b,0xd6, +0x83,0x4d,0x5b,0xce,0xa6,0x25,0xb0,0xe9,0x79,0xd8,0xf4,0x99, +0x6c,0x46,0x6e,0x36,0xa3,0x1e,0x9b,0xd9,0x94,0xcd,0xe2,0x6c, +0x56,0x16,0x9b,0xbd,0x9c,0xcd,0x69,0xce,0xe6,0x3c,0x62,0x73, +0xd3,0xd8,0xbc,0x05,0x6c,0x7e,0x20,0x5b,0xd0,0x96,0x2d,0x74, +0x63,0x8b,0x5a,0xb0,0xc5,0xc5,0xd8,0xe2,0x23,0x6c,0xc9,0x66, +0xb6,0xf4,0x0e,0x5b,0xde,0x99,0xad,0xf0,0x61,0x2b,0x1d,0xd8, +0xca,0x4d,0x6c,0xd5,0x4a,0xb6,0x7a,0x3b,0x5b,0xe3,0xc3,0xd6, +0x36,0x63,0xeb,0x02,0xd8,0x7a,0x1f,0x16,0xeb,0xcb,0x36,0x8c, +0x63,0x1b,0x47,0xb0,0x8d,0x99,0x6c,0xb3,0x1d,0xdb,0xbc,0x98, +0x6d,0xa9,0xc9,0xb6,0xe6,0x64,0xdb,0x5c,0xd8,0xb6,0xb1,0x2c, +0xae,0x19,0xdb,0x3e,0x8d,0xed,0x18,0xc0,0x76,0x36,0x67,0x3b, +0x5f,0xb1,0x5d,0xbb,0xd9,0xae,0xdf,0x6c,0xf7,0x2a,0xb6,0xa7, +0x31,0xdb,0x73,0x81,0xed,0x5d,0xc7,0xe2,0x6b,0xb0,0x7d,0x85, +0xd8,0xbe,0x73,0x6c,0x7f,0x22,0x3b,0xd0,0x98,0x1d,0x78,0xc0, +0x0e,0x8e,0x60,0x87,0x1a,0xb2,0xc3,0xce,0xec,0x48,0x63,0x76, +0xe4,0x3d,0x3b,0xda,0x91,0x1d,0x6b,0xc1,0x8e,0x7b,0xb1,0xe3, +0x29,0xec,0xc4,0x14,0x76,0xb2,0x34,0x3b,0x55,0x93,0x9d,0xba, +0xc1,0x4e,0xf7,0x65,0xa7,0x8f,0xb0,0x33,0x73,0xd9,0xd9,0x44, +0x76,0xce,0x8d,0x9d,0xbb,0xcd,0xce,0xe7,0x67,0x09,0xb5,0xd8, +0x85,0x3c,0xec,0xc2,0x3d,0x76,0x71,0x28,0x4b,0x74,0x63,0x97, +0x9c,0xd9,0xa5,0x17,0xec,0xb2,0x33,0xbb,0xbc,0x85,0x5d,0x69, +0xc3,0xae,0x96,0x61,0x57,0x33,0x58,0xd2,0x19,0x76,0x6d,0x13, +0xbb,0x5e,0x99,0xdd,0x20,0xec,0xc6,0x38,0x76,0x73,0x18,0xbb, +0x15,0xce,0x6e,0xa7,0xb0,0x3b,0x6f,0x58,0x32,0x66,0xc9,0x6d, +0x58,0xf2,0x69,0x76,0x6f,0x39,0xbb,0xef,0xcf,0x1e,0x94,0x60, +0x0f,0x3e,0xb0,0x94,0x36,0xec,0x21,0x67,0x0f,0x93,0x58,0xea, +0x0b,0x96,0xb6,0x9e,0x3d,0xfa,0xcc,0x9e,0x58,0xec,0xc9,0x61, +0xf6,0x34,0x82,0x3d,0x9b,0xcf,0x9e,0x0f,0x62,0x2f,0x9a,0xb0, +0x17,0x8f,0xd8,0xcb,0x4e,0xec,0xe5,0x4f,0xf6,0x2a,0x92,0xbd, +0x7a,0xc2,0x5e,0x8f,0x63,0x6f,0x8a,0xb0,0x37,0x33,0xd8,0xdb, +0x06,0xec,0xed,0x6a,0xf6,0xae,0x09,0x7b,0xf7,0x82,0xbd,0x8f, +0x63,0x1f,0x66,0xb3,0x8f,0xbd,0xd9,0xa7,0x08,0x96,0x2e,0x59, +0xfa,0x36,0xf6,0xb9,0x28,0xfb,0xfc,0x9a,0x7d,0xe9,0xc1,0xbe, +0x46,0xb0,0x6f,0x1e,0xec,0xdb,0x33,0xf6,0x3d,0x8c,0xfd,0x38, +0xc8,0x7e,0xfa,0xb3,0x9f,0x3f,0x59,0x46,0x3b,0x96,0xf1,0x9d, +0xfd,0x9a,0xc6,0x7e,0xbb,0xb2,0xdf,0x0f,0xd9,0x9f,0xed,0xec, +0x6f,0x57,0xf6,0xf7,0x3c,0xcb,0xec,0xcd,0xb2,0x7a,0xf2,0xec, +0xd5,0x88,0xf7,0x73,0x74,0x8e,0xe3,0x0f,0x9c,0x44,0x70,0x9a, +0x93,0xd3,0xa5,0x9c,0xe5,0xe5,0x2c,0x8e,0xf3,0xe2,0x9c,0xef, +0xe5,0x62,0x20,0x97,0xbb,0xb8,0x3a,0xcc,0xf5,0x78,0x6e,0xc6, +0x70,0xcb,0x93,0x5b,0xcf,0xb8,0x5d,0x1a,0xcf,0xd1,0x9d,0xe7, +0x6c,0xcb,0x73,0x95,0xe0,0xb9,0x6e,0xf2,0xdc,0xfb,0x78,0x9e, +0xbd,0x3c,0xef,0x49,0x9e,0xef,0x3e,0xcf,0xdf,0x99,0xe7,0x3f, +0xc9,0x0b,0x28,0x5e,0xe0,0x25,0xb7,0xdf,0xcd,0x0b,0xc6,0xf0, +0x42,0xaf,0xb8,0xc3,0x29,0x5e,0xf8,0x04,0x2f,0x9c,0xc9,0x1d, +0xe3,0xb9,0x53,0x69,0xee,0x74,0x8d,0x3b,0xf7,0xe0,0xce,0x1f, +0x78,0x91,0x68,0xee,0xd2,0x84,0x17,0x2d,0xc8,0x8b,0xee,0xe2, +0xc5,0xf6,0xf3,0xe2,0xc7,0x79,0x89,0x08,0x5e,0xe2,0x25,0x77, +0x6d,0xcf,0x4b,0x3a,0xf2,0x92,0x3d,0x79,0xc9,0x15,0xbc,0xe4, +0x27,0x5e,0x6a,0x1d,0x2f,0x5d,0x8a,0x97,0x71,0xe6,0x65,0x1e, +0xf2,0xb2,0x0b,0x78,0xb9,0xe6,0xbc,0xdc,0x6e,0x5e,0x7e,0x32, +0x77,0xd3,0xdc,0xed,0x3c,0xaf,0x70,0x8f,0x57,0x4c,0xe3,0x95, +0xe6,0xf3,0x4a,0x7f,0x79,0xe5,0xc9,0xdc,0xbd,0x28,0x77,0x1f, +0xc7,0xdd,0x33,0x78,0x95,0x8b,0xbc,0xca,0x4f,0xee,0x91,0xc1, +0x3d,0xd3,0x79,0xd5,0x9d,0xbc,0x5a,0x23,0xee,0x05,0xdc,0xeb, +0x18,0xaf,0xbe,0x8e,0xd7,0x58,0xcf,0x6b,0x36,0xe0,0x35,0x8f, +0x71,0xef,0x68,0x5e,0xab,0x0d,0xaf,0x1d,0xcb,0x6b,0xff,0xe0, +0x75,0xa6,0xf1,0xba,0xcd,0x79,0x3d,0x8b,0xfb,0x48,0xee,0x13, +0xcf,0xeb,0x0f,0xe5,0xbe,0x94,0xfb,0x7e,0xe5,0x0d,0xc6,0xf0, +0x86,0x82,0x37,0xdc,0xc8,0x1b,0x75,0xe6,0x8d,0xf3,0xf3,0xc6, +0xc7,0x79,0x93,0x48,0xde,0xb4,0x25,0x6f,0xe6,0xca,0x9b,0x6d, +0xe3,0x7e,0x73,0xb8,0x7f,0x04,0x6f,0x5e,0x99,0xb7,0x68,0xce, +0x03,0xc2,0x78,0x4b,0x47,0xde,0x72,0x3c,0x6f,0x15,0xce,0x5b, +0xd7,0xe0,0x6d,0x2a,0xf2,0xb6,0x16,0x6f,0x7b,0x86,0xb7,0x6b, +0xc7,0xdb,0xd7,0xe1,0xed,0x6f,0xf0,0x40,0xce,0x03,0xbb,0xf1, +0xc0,0x63,0xbc,0x43,0x33,0xde,0xe1,0x1e,0xef,0xe8,0xcf,0x3b, +0x5e,0xe3,0x9d,0xfc,0x78,0xa7,0x5d,0xbc,0x73,0x73,0xde,0xf9, +0x22,0xef,0x12,0xc1,0xbb,0xce,0xe3,0xdd,0x46,0xf3,0xee,0x6d, +0x78,0x8f,0xdd,0xbc,0xe7,0x34,0xde,0xf3,0x01,0xef,0xd5,0x9b, +0xf7,0x4a,0xe7,0x41,0x39,0x79,0x50,0x1c,0x0f,0xae,0xc7,0x83, +0x2f,0xf1,0xde,0xab,0x79,0xef,0x6f,0x3c,0x64,0x2a,0x0f,0xb9, +0xce,0x43,0x6b,0xf0,0xd0,0x0f,0xbc,0xcf,0x3a,0xde,0x77,0x01, +0x0f,0x7b,0xc0,0xc3,0x8f,0xf3,0x7e,0xb3,0x79,0x84,0x33,0x8f, +0xf8,0xc0,0x23,0xe7,0xf3,0xc8,0x37,0xbc,0xff,0x7e,0x3e,0x60, +0x09,0x1f,0xe8,0xc7,0x07,0x95,0xe6,0x83,0xde,0xf0,0xc1,0x73, +0xf9,0x10,0x6f,0x3e,0xe4,0x23,0x8f,0xba,0xcf,0x87,0xfe,0xe5, +0xd1,0xe1,0x3c,0xfa,0x33,0x1f,0xb6,0x9e,0x0f,0xef,0xca,0x47, +0xb8,0xf0,0x11,0xe3,0xf9,0xc8,0x46,0x7c,0xe4,0x63,0x3e,0x6a, +0x09,0x1f,0xdd,0x98,0x8f,0xa9,0xcd,0xc7,0xbc,0xe5,0x63,0xc7, +0xf2,0x71,0xb3,0xf8,0xf8,0x26,0x3c,0xa6,0x00,0x8f,0x59,0xc5, +0x27,0xc4,0xf1,0x89,0xc3,0xf8,0xa4,0x1a,0x7c,0xb2,0x03,0x9f, +0x92,0x83,0x4f,0xd9,0xc6,0xa7,0xae,0xe6,0xd3,0x80,0x4f,0x3b, +0xc0,0xa7,0xfb,0xf2,0xe9,0x9b,0xf8,0x8c,0x11,0x7c,0x96,0x07, +0x9f,0xed,0xce,0xe7,0x78,0xf2,0x39,0x19,0x7c,0xee,0x10,0x3e, +0xf7,0x2b,0x9f,0xf7,0x8c,0xcf,0x4f,0xe0,0x0b,0x5c,0xf9,0x82, +0x50,0xbe,0xb0,0x3d,0x5f,0xb4,0x82,0x2f,0xfa,0xcc,0x17,0xaf, +0xe6,0x4b,0x0a,0xf2,0x25,0xab,0xf8,0xd2,0x2e,0x7c,0xe9,0x29, +0xbe,0x0c,0xf8,0xb2,0x05,0x7c,0x59,0x06,0x5f,0x1e,0xc6,0x57, +0x38,0xf3,0x15,0xcf,0xf8,0xca,0x09,0x7c,0x55,0x29,0xbe,0xea, +0x2f,0x5f,0x9d,0xc8,0xd7,0x6c,0xe7,0x6b,0x3b,0xf1,0x75,0x3e, +0x7c,0xdd,0x5a,0xbe,0xbe,0x36,0x5f,0xff,0x86,0xc7,0x4e,0xe1, +0x1b,0x16,0xf2,0x8d,0x17,0xf9,0xa6,0xe2,0x7c,0xd3,0x35,0xbe, +0x79,0x1a,0xdf,0x12,0xc0,0xb7,0xda,0xf1,0x6d,0x16,0xdf,0xb6, +0x8f,0xc7,0xb9,0xf1,0xb8,0x64,0xbe,0x7d,0x25,0xdf,0x11,0xcd, +0x77,0x76,0xe1,0xbb,0x9c,0xf9,0xae,0xa3,0x7c,0x77,0x08,0xdf, +0x53,0x96,0xef,0xad,0xc8,0xe3,0x03,0x78,0xfc,0x27,0xbe,0x3f, +0x2f,0x3f,0x50,0x87,0x1f,0x8c,0xe2,0x87,0x5c,0xf8,0xe1,0x62, +0xfc,0xf0,0x01,0x7e,0xa4,0x19,0x3f,0xb2,0x82,0x1f,0x6d,0xcc, +0x8f,0xae,0xe0,0xc7,0xe6,0xf3,0xe3,0xef,0xf9,0x89,0x70,0x7e, +0xe2,0x23,0x3f,0xb9,0x9e,0x9f,0x8a,0xe6,0xa7,0xd2,0xf9,0xe9, +0x41,0xfc,0xcc,0x08,0x7e,0x36,0x81,0x9f,0xc3,0xfc,0xdc,0x7a, +0x7e,0xbe,0x0e,0x3f,0x3f,0x8c,0x27,0x14,0xe2,0x09,0x19,0xfc, +0x42,0x1c,0xbf,0x58,0x97,0x5f,0xbc,0xc5,0x13,0x4b,0xf0,0xc4, +0x59,0xfc,0x52,0x37,0x7e,0xb9,0x14,0xbf,0xfc,0x95,0x5f,0x39, +0xc4,0xaf,0xce,0xe6,0x49,0x35,0xf9,0x35,0x7f,0x7e,0x5d,0xf3, +0xeb,0x07,0xf9,0x8d,0x13,0xfc,0x66,0x47,0x7e,0x73,0x38,0xbf, +0xe5,0xcd,0x6f,0x37,0xe4,0x77,0x28,0xbf,0xb3,0x84,0xdf,0xad, +0xc7,0xef,0x3e,0xe1,0xc9,0x9e,0x3c,0x79,0x3b,0xbf,0xd7,0x82, +0xdf,0xfb,0xc4,0xef,0xc7,0xf2,0xfb,0x7f,0xf9,0x83,0xa1,0x3c, +0xc5,0x97,0xa7,0xec,0xe7,0x0f,0xc7,0xf0,0xd4,0x1a,0x3c,0x75, +0x0f,0x4f,0x5b,0xc4,0x1f,0x8d,0xe0,0x8f,0xdd,0xf9,0xe3,0x77, +0xfc,0xc9,0x69,0xfe,0x74,0x19,0x7f,0x36,0x92,0x3f,0xa7,0xfc, +0x45,0x05,0xfe,0x62,0x04,0x7f,0xe9,0xc4,0x5f,0x71,0xfe,0xea, +0x18,0x7f,0x1d,0xc3,0xdf,0x54,0xe4,0x6f,0x73,0xf3,0x77,0x3e, +0xfc,0x5d,0x1a,0x7f,0x3f,0x92,0x7f,0x88,0xe0,0x1f,0x1f,0xf1, +0x4f,0x1d,0x79,0xfa,0x72,0x9e,0xfe,0x9e,0x7f,0x3e,0xc0,0xbf, +0xac,0xe2,0x5f,0x17,0xf1,0x6f,0xaf,0xf9,0xf7,0x7d,0xfc,0xc7, +0x38,0x9e,0x51,0x98,0x67,0xfc,0xe5,0xbf,0xbe,0xf3,0xdf,0x49, +0xfc,0x4f,0x1e,0xfe,0x67,0x32,0xff,0xdb,0x8f,0x67,0x96,0xe1, +0x99,0x3f,0x78,0xd6,0x58,0x01,0xd5,0x05,0x9c,0x15,0x28,0x40, +0xa0,0xbf,0x02,0xef,0x12,0x64,0xb8,0x20,0x29,0x82,0xa6,0x0a, +0xd6,0x4d,0xb0,0xaf,0x82,0x27,0x0a,0x31,0x42,0xc8,0x52,0x42, +0xbe,0x11,0x6a,0x8e,0xd0,0xeb,0x84,0x89,0x12,0x56,0x6d,0x61, +0x7d,0x14,0x76,0x7b,0x45,0x8e,0x37,0x22,0x67,0x01,0x91,0x73, +0xb3,0xc8,0x75,0x4c,0xe4,0x2e,0x2b,0xf2,0x78,0x88,0x3c,0x63, +0x44,0x5e,0x22,0xf2,0x8e,0x12,0xf9,0x96,0x8b,0xfc,0x23,0x45, +0xfe,0xb7,0xa2,0xc0,0x48,0x61,0xdf,0x41,0xd8,0x67,0x8a,0x82, +0x4f,0x45,0xa1,0x78,0xe1,0x30,0x5c,0x14,0x16,0xa2,0xf0,0x05, +0xe1,0xb8,0x4b,0x38,0xb5,0x16,0xce,0x79,0x84,0xf3,0x40,0xe1, +0xbc,0x4b,0x14,0xc9,0x2b,0x5c,0x40,0xb8,0x7c,0x12,0xc5,0xca, +0x8b,0xe2,0x5a,0x14,0x7f,0x2d,0x4a,0x1c,0x16,0xae,0x0b,0x44, +0xc9,0x33,0xa2,0xb4,0x25,0x4a,0x4f,0x11,0x65,0x1a,0x8b,0xb2, +0x76,0xa2,0x9c,0xbd,0x28,0x77,0x59,0x94,0x7b,0x22,0xca,0xb7, +0x10,0xe5,0x6f,0x0a,0xb7,0x18,0x51,0x21,0x8f,0xa8,0xf0,0x4a, +0x54,0x1c,0x2b,0x2a,0xfe,0x14,0x95,0xca,0x88,0x4a,0x2d,0x45, +0xe5,0xc2,0xa2,0x72,0x27,0x51,0xf9,0xb9,0x70,0x8f,0x16,0xee, +0xc9,0xa2,0x4a,0x4d,0x51,0xe5,0xa5,0xf0,0xd8,0x2f,0x3c,0x4f, +0x8b,0xaa,0xd3,0x84,0x57,0x39,0xe1,0xf5,0x42,0x54,0x5f,0x2d, +0x6a,0x5c,0x14,0x35,0x17,0x08,0xef,0x04,0x51,0xcb,0x41,0xd4, +0x7a,0x28,0x6a,0xdf,0x13,0x75,0xdd,0x45,0xbd,0x6d,0xc2,0xa7, +0x89,0xf0,0xd9,0x2a,0xea,0x47,0x88,0xfa,0x97,0x85,0x6f,0x98, +0x68,0x10,0x23,0x1a,0x06,0x88,0x46,0x1d,0x45,0xe3,0x4e,0xa2, +0x49,0x43,0xd1,0xb4,0x94,0x68,0x56,0x49,0xf8,0x81,0xf0,0x5b, +0x2b,0xfc,0xc7,0x0a,0xff,0x33,0xa2,0x79,0x4b,0xd1,0x22,0x40, +0x04,0xb8,0x8a,0x80,0xbd,0xa2,0xe5,0x08,0xd1,0xca,0x5b,0xb4, +0xba,0x2d,0x5a,0xaf,0x14,0x6d,0x2e,0x89,0xb6,0xcb,0x45,0xdb, +0xbf,0xa2,0xdd,0x5e,0xd1,0xde,0x4b,0x04,0xd6,0x11,0x81,0xe7, +0x44,0x87,0x30,0xd1,0xd1,0x5d,0x74,0x3c,0x27,0x3a,0xf9,0x88, +0x4e,0x9f,0x44,0xe7,0x71,0xa2,0x8b,0x10,0x5d,0xe2,0x45,0xd7, +0xf6,0xa2,0x6b,0xb2,0xe8,0x16,0x2c,0xba,0xd7,0x12,0x3d,0x9a, +0x8b,0x1e,0x7f,0x44,0xcf,0x04,0xd1,0x6b,0x9a,0x08,0xe2,0x22, +0x68,0x88,0x08,0x2e,0x23,0x82,0x8f,0x8b,0xde,0x8d,0x44,0x48, +0x65,0x11,0x92,0x26,0x42,0x57,0x8a,0x3e,0xa3,0x45,0x9f,0x34, +0xd1,0x77,0x86,0x08,0x73,0x13,0x61,0x3b,0x45,0x78,0x65,0x11, +0xbe,0x5d,0x84,0xbf,0x14,0xfd,0xce,0x89,0x88,0x81,0x22,0xb2, +0xb5,0xe8,0x5f,0x4d,0xf4,0x3f,0x20,0x06,0x1c,0x15,0x03,0x07, +0x88,0x41,0xf1,0x62,0xf0,0x53,0x31,0xa4,0xbb,0x88,0x9a,0x23, +0x86,0x16,0x13,0x43,0x53,0x45,0xf4,0x79,0x31,0x6c,0x84,0x18, +0xee,0x2f,0x46,0x94,0x15,0x23,0xd2,0xc4,0xc8,0xdf,0x62,0x54, +0xaa,0x18,0x1d,0x26,0xc6,0xe4,0x10,0x63,0x86,0x8a,0x31,0xf1, +0x62,0xec,0x42,0x31,0xee,0x80,0x18,0x3f,0x53,0xc4,0x24,0x89, +0x09,0x19,0x62,0xe2,0x7a,0x31,0xa9,0x94,0x98,0xf4,0x5c,0x4c, +0x4e,0x17,0x53,0x52,0xc5,0xd4,0xdb,0x62,0xda,0x06,0x31,0xbd, +0xb2,0x98,0xfe,0x5c,0xcc,0x08,0x16,0x33,0xee,0x8b,0x99,0x7e, +0x62,0xe6,0x4a,0x31,0x4b,0x89,0x59,0x6f,0xc5,0xec,0x70,0x31, +0xe7,0xa2,0x98,0x3b,0x54,0xcc,0x2b,0x25,0xe6,0xc5,0x8a,0xf9, +0xde,0x62,0x7e,0x8a,0x58,0x30,0x4e,0x2c,0xd4,0x62,0xe1,0x5c, +0xb1,0xb8,0x91,0x58,0x12,0x29,0x96,0xce,0x10,0xcb,0x9a,0x89, +0xe5,0x3e,0x62,0xf9,0x5d,0xb1,0x22,0x56,0xac,0x9c,0x29,0x56, +0x8d,0x12,0xab,0x03,0xc5,0x9a,0x3c,0x62,0xcd,0x43,0xb1,0x2e, +0xa7,0x58,0xdf,0x46,0xc4,0xd6,0x16,0x1b,0x90,0xd8,0x10,0x26, +0x36,0xa4,0x89,0x8d,0x0d,0xc5,0xc6,0x57,0x62,0x53,0x94,0xd8, +0xec,0x29,0x36,0xbf,0x15,0x5b,0xa2,0xc5,0xd6,0x12,0x62,0xeb, +0x57,0xb1,0x6d,0x83,0x88,0xb3,0x13,0x71,0x6f,0xc4,0xf6,0xe3, +0x62,0x87,0x9f,0xd8,0x91,0x25,0x76,0xfe,0x12,0xbb,0xbe,0x89, +0x3d,0x48,0xec,0x99,0x29,0xf6,0x0e,0x12,0xf1,0x39,0x44,0x7c, +0x96,0xd8,0xf7,0x48,0xec,0x6f,0x2c,0x0e,0x54,0x12,0x07,0xab, +0x89,0x43,0x63,0xc5,0x61,0x77,0x71,0xf8,0xb2,0x38,0x72,0x5a, +0x1c,0x0d,0x17,0xc7,0x2c,0x71,0xec,0xa6,0x38,0xee,0x25,0x8e, +0x9f,0x12,0x27,0x42,0xc4,0xc9,0x46,0xe2,0x94,0x8b,0x38,0x35, +0x48,0x9c,0xba,0x23,0x4e,0xbf,0x12,0x67,0xe6,0x88,0xb3,0x5b, +0xc5,0xb9,0x59,0xe2,0x7c,0x1e,0x71,0xfe,0x81,0x48,0x18,0x29, +0x12,0x7e,0x8b,0x0b,0xfb,0xc5,0x45,0x7f,0x91,0x68,0x2f,0x12, +0xcf,0x89,0xcb,0x4a,0x5c,0x29,0x22,0xae,0xf4,0x14,0x57,0x57, +0x88,0xa4,0x96,0xe2,0x5a,0x53,0x71,0xdd,0x59,0x5c,0x5f,0x23, +0x6e,0x0c,0x10,0x37,0x27,0x89,0x5b,0xf6,0xe2,0xd6,0x26,0x71, +0xbb,0x92,0xb8,0xe3,0x2b,0xee,0xfc,0x11,0x77,0xb7,0x89,0xe4, +0xae,0xe2,0x5e,0x71,0x71,0x6f,0xac,0xb8,0x1f,0x2e,0x1e,0xb4, +0x13,0x29,0x39,0x45,0xca,0x2d,0x91,0x5a,0x56,0xa4,0x46,0x89, +0xb4,0x46,0xe2,0x51,0x61,0xf1,0xe8,0x84,0x78,0x9c,0x22,0x9e, +0x6c,0x17,0x4f,0x23,0xc4,0x33,0x3f,0xf1,0x7c,0x8c,0x78,0x11, +0x24,0x5e,0xec,0x11,0x2f,0xf3,0x8a,0x97,0xf3,0xc5,0xcb,0x2f, +0xe2,0xd5,0x01,0xf1,0xba,0xb8,0x78,0x3d,0x59,0xbc,0x7e,0x2b, +0xde,0x0c,0x14,0x6f,0xa5,0x78,0xbb,0x47,0xbc,0x3b,0x29,0xde, +0x8f,0x10,0x1f,0xec,0xc5,0x87,0x97,0xe2,0x63,0x3f,0xf1,0xa9, +0x8a,0x48,0x6f,0x28,0x3e,0xbb,0x88,0xcf,0xcb,0xc4,0x97,0x01, +0xe2,0x4b,0x96,0xf8,0xfa,0x58,0x7c,0xeb,0x2b,0xbe,0x1d,0x14, +0xdf,0x03,0xc4,0x8f,0xfa,0xe2,0x67,0x53,0xf1,0xf3,0x96,0xc8, +0xb8,0x28,0x7e,0x6d,0x13,0xbf,0x97,0x89,0x3f,0x15,0xc5,0x9f, +0xc3,0xe2,0xef,0x01,0x91,0x19,0x25,0xb2,0xa8,0xc8,0xfa,0x2e, +0x61,0xa2,0x44,0x48,0xa2,0x07,0x12,0xf7,0x92,0x24,0xb7,0x24, +0x47,0x24,0xdd,0x20,0xd9,0x66,0xc9,0x8f,0x49,0xd1,0x45,0x4a, +0x2c,0xe5,0x0a,0xa9,0xa6,0x48,0x95,0x29,0x75,0xb2,0x34,0x6f, +0xa4,0xd5,0x57,0xda,0x09,0x69,0xb7,0x51,0xe6,0xe8,0x28,0x73, +0x16,0x94,0x39,0x1f,0xc9,0x5c,0x07,0x65,0xee,0x4d,0x32,0xcf, +0x5c,0x99,0x77,0x91,0xcc,0xb7,0x5f,0xe6,0x1f,0x2a,0xf3,0xa7, +0xc9,0x02,0x03,0x64,0x81,0x7b,0xd2,0x3e,0x4a,0xda,0xa7,0xc9, +0x82,0x5b,0x65,0xa1,0x7d,0xb2,0x50,0xa6,0x2c,0x6c,0x2f,0x0b, +0x9f,0x95,0x8e,0xde,0xd2,0xa9,0x99,0x74,0xba,0x29,0x9d,0x67, +0xca,0x22,0x42,0x16,0x89,0x96,0x2e,0xde,0xd2,0xe5,0xa3,0x2c, +0x9a,0x2a,0x8b,0x4d,0x96,0xc5,0x85,0x2c,0x51,0x50,0xba,0xe6, +0x95,0x25,0x8b,0xc8,0x92,0x47,0x65,0xa9,0xd9,0xb2,0xd4,0x15, +0x59,0x3a,0x4e,0x96,0x39,0x2b,0xcb,0x06,0xca,0x72,0x58,0x96, +0x3b,0x2e,0xcb,0x0f,0x95,0x6e,0xdd,0x65,0x05,0xdb,0x96,0x22, +0x2b,0xa6,0xca,0x4a,0x1d,0x65,0xe5,0x6a,0xd2,0xbd,0x86,0x74, +0x3f,0x25,0xab,0x4c,0x92,0x1e,0x20,0x3d,0xc6,0x48,0xcf,0x40, +0x59,0xb5,0x9c,0xac,0x56,0x41,0x7a,0x31,0xe9,0xb5,0x5e,0x56, +0x1f,0x2a,0x6b,0x28,0x59,0xe3,0xb8,0xac,0x19,0x2e,0xbd,0x97, +0xcb,0x5a,0x05,0x65,0xad,0x1f,0xb2,0xf6,0x05,0x59,0xc7,0x57, +0xd6,0x59,0x25,0xeb,0x06,0xc9,0x7a,0xf9,0x65,0xbd,0x50,0xe9, +0xe3,0x20,0x7d,0x2e,0xc9,0xfa,0xd1,0xd2,0xb7,0x90,0xf4,0x4d, +0x93,0x0d,0x6e,0xc8,0x86,0x8b,0x65,0xc3,0xef,0xb2,0xd1,0x4c, +0xd9,0xb8,0x8a,0x6c,0x9c,0x2e,0x9b,0x2c,0x90,0x4d,0x9b,0xc9, +0x66,0x67,0xa4,0xdf,0x14,0xe9,0x4f,0xa4,0xff,0x7c,0xd9,0x7c, +0xa2,0x6c,0x31,0x4c,0x06,0x04,0xcb,0x80,0x3f,0xb2,0xe5,0x7a, +0xd9,0xaa,0x8c,0x6c,0xed,0x2b,0xdb,0xd4,0x92,0x6d,0xab,0xcb, +0x76,0x83,0x64,0xbb,0x8f,0xb2,0x7d,0x61,0xd9,0xfe,0xbe,0x0c, +0x6c,0x27,0x03,0x9f,0xc9,0x0e,0xdb,0x65,0xc7,0xd2,0xb2,0x63, +0xbc,0xec,0x94,0x4b,0x76,0x5a,0x29,0x3b,0x8f,0x95,0x5d,0xca, +0xc8,0x2e,0x4b,0x64,0xd7,0x69,0xb2,0xeb,0x03,0xd9,0xed,0xae, +0xec,0x3e,0x42,0xf6,0x18,0x2a,0x7b,0x3a,0xc9,0x5e,0x55,0x65, +0x50,0x4e,0x19,0x9c,0x57,0x06,0x6f,0x95,0xbd,0xcb,0xcb,0x10, +0x17,0x19,0x32,0x56,0x86,0x76,0x96,0xa1,0xe3,0x65,0x9f,0xea, +0xb2,0x6f,0x35,0xd9,0x77,0x9b,0x0c,0x1b,0x20,0xc3,0x0b,0xc8, +0x7e,0xa5,0x65,0xbf,0x2b,0x32,0x62,0x86,0x8c,0xf4,0x97,0xfd, +0xb1,0xec,0xbf,0x40,0x0e,0xf0,0x97,0x03,0x9e,0xc9,0x81,0x3e, +0x72,0xd0,0x04,0x39,0x28,0x55,0x0e,0x9e,0x21,0x87,0x44,0xcb, +0xa8,0xf6,0x72,0x68,0x9c,0x8c,0xee,0x29,0xa3,0x9f,0xc9,0x61, +0x5b,0xe4,0x70,0x57,0x39,0xfc,0xb1,0x1c,0x71,0x50,0x8e,0x2c, +0x2d,0x47,0xde,0x95,0xa3,0xe6,0xc9,0xd1,0x2d,0xe4,0xe8,0x2f, +0x72,0x6c,0x21,0x39,0x76,0x92,0x1c,0xf7,0x43,0x8e,0x8f,0x97, +0x31,0xae,0x32,0x26,0x36,0x7b,0xe2,0xed,0x84,0x55,0x72,0xc2, +0x1f,0x39,0x71,0xbe,0x9c,0xe4,0x25,0x27,0x5d,0x92,0x53,0xa8, +0x9c,0xf2,0x54,0x4e,0xad,0x25,0xa7,0xfe,0x95,0xd3,0x36,0xc8, +0xe9,0x83,0xe5,0x8c,0x32,0x72,0xc6,0x32,0x39,0xe3,0xa7,0x9c, +0xc5,0xe4,0xac,0xda,0x72,0x76,0x2e,0x39,0x3b,0x5c,0xce,0x71, +0x93,0x73,0xdd,0xe4,0xbc,0x1a,0x72,0xde,0x1f,0xb9,0x20,0x97, +0x5c,0xf0,0x40,0x2e,0xdc,0x25,0x17,0xcd,0x95,0x8b,0x85,0x5c, +0xbc,0x5d,0x2e,0x49,0x94,0x4b,0x23,0xe4,0xb2,0xba,0x72,0xd9, +0x29,0xb9,0xbc,0xba,0x5c,0xb1,0x52,0xae,0xbc,0x2a,0x57,0x0d, +0x97,0xab,0x07,0xca,0x35,0x2d,0xe5,0x9a,0xa3,0x72,0xad,0xa7, +0x5c,0x1b,0x27,0xd7,0x39,0xc9,0x75,0x87,0xe4,0xfa,0x48,0x19, +0x1b,0x24,0x37,0x54,0x91,0x1b,0xed,0xe4,0xc6,0xb5,0x72,0x53, +0xaa,0xdc,0x3c,0x5c,0x6e,0x71,0x96,0x5b,0x9d,0xe4,0x36,0x17, +0xb9,0x6d,0x82,0x8c,0xeb,0x2b,0xb7,0xbb,0xca,0xed,0x69,0x72, +0xc7,0x14,0xb9,0xb3,0xb8,0xdc,0x39,0x47,0xee,0x62,0x72,0xd7, +0x2d,0xb9,0xbb,0x8c,0xdc,0x53,0x47,0xee,0xb5,0x93,0x7b,0x5f, +0xcb,0xf8,0x0b,0x72,0x9f,0xbd,0xdc,0xef,0x24,0xf7,0xb7,0x90, +0xfb,0xe3,0xe4,0x01,0x0f,0x79,0xb0,0xbc,0x3c,0xb8,0x5a,0x1e, +0xca,0x23,0x0f,0xfd,0x96,0x87,0xa7,0xca,0xc3,0xdf,0xe4,0x91, +0xcd,0xf2,0xe8,0x56,0x79,0xf4,0x8f,0x3c,0x76,0x50,0x1e,0x2f, +0x23,0x8f,0x1f,0x97,0x27,0x86,0xca,0x93,0x03,0xe4,0xc9,0xef, +0xf2,0xd4,0x61,0x79,0x3a,0x52,0x9e,0xbe,0x27,0xcf,0x54,0x93, +0x67,0x3e,0xc9,0xb3,0x19,0xf2,0xdc,0x7d,0x79,0xbe,0xbb,0x4c, +0xa8,0x2d,0x13,0xb2,0xe4,0x85,0x3d,0x32,0x31,0xb7,0xbc,0x54, +0x4d,0x5e,0xfa,0x21,0x2f,0xbf,0x97,0x57,0x06,0xc9,0xab,0x1b, +0x64,0x52,0x98,0xbc,0xd6,0x54,0x5e,0xbb,0x23,0xaf,0xb7,0x92, +0x37,0x62,0xe4,0x4d,0x0f,0x79,0xf3,0xb0,0xbc,0xe5,0x25,0x6f, +0x97,0x93,0x77,0x9c,0xe5,0x5d,0x6f,0x79,0xf7,0xad,0x4c,0xee, +0x28,0x93,0x5f,0xca,0x7b,0xc9,0xf2,0xfe,0x12,0xf9,0x60,0x86, +0x4c,0x19,0x27,0x53,0xce,0xcb,0x87,0x7d,0x64,0x6a,0x6d,0x99, +0x56,0x41,0x3e,0x2a,0x23,0x1f,0xc5,0xc8,0xc7,0x7e,0xf2,0x89, +0x97,0x7c,0x2a,0xe4,0xd3,0x1e,0xf2,0xe9,0x49,0xf9,0xac,0x99, +0x7c,0xb6,0x5b,0x3e,0x8f,0x92,0x2f,0xfc,0xe4,0xcb,0x9c,0xf2, +0xe5,0x23,0xf9,0x6a,0xad,0x7c,0x3d,0x50,0xbe,0x31,0xf2,0xcd, +0x1e,0xf9,0x76,0x9e,0x7c,0xd7,0x53,0xbe,0x9f,0x21,0x3f,0xf8, +0xca,0x8f,0x2e,0xf2,0x53,0x21,0xf9,0x69,0xa7,0x4c,0x9f,0x28, +0x3f,0x8f,0x90,0x9f,0x9f,0xc9,0x2f,0x89,0xf2,0xab,0x8b,0xfc, +0x56,0x5c,0x7e,0x3b,0x20,0xbf,0x47,0xca,0x1f,0x25,0xe4,0x8f, +0x77,0xf2,0xe7,0x5e,0x99,0x31,0x5a,0xfe,0x6a,0x2d,0x7f,0xd7, +0x91,0x7f,0xa2,0xe4,0xdf,0x5c,0xf2,0xef,0x6b,0x99,0x39,0x4b, +0x66,0x35,0x50,0xa0,0x14,0x72,0x54,0xe8,0xa8,0xc2,0x1f,0x15, +0x2d,0xa4,0xe8,0x5b,0xc5,0xfa,0x2b,0xae,0x15,0x4f,0x51,0xa2, +0x8b,0x92,0x65,0x95,0x6a,0xaa,0x74,0x15,0x65,0x8a,0x28,0x33, +0x5b,0x59,0xe5,0x95,0xf5,0x47,0xd9,0xa5,0xab,0x1c,0x47,0x55, +0xce,0x08,0x95,0xab,0x99,0xca,0xad,0x55,0xee,0xf9,0x2a,0x8f, +0x93,0xca,0xeb,0xac,0xf2,0x2e,0x56,0xf9,0x3a,0xa8,0x7c,0xcf, +0x54,0xfe,0x67,0xaa,0xc0,0x61,0x65,0x1f,0xa5,0x0a,0x96,0x52, +0x05,0x47,0xa9,0x42,0x07,0x95,0x43,0xb0,0x72,0xf8,0xa8,0x0a, +0xdf,0x52,0x8e,0xc5,0x94,0xe3,0x05,0xe5,0x34,0x44,0x39,0xbb, +0xab,0x22,0x5d,0x95,0x8b,0xb7,0x2a,0x5a,0x5b,0x15,0x33,0xaa, +0xd8,0x4d,0x55,0x7c,0x93,0x2a,0xd1,0x4b,0xb9,0x36,0x50,0xae, +0xf7,0x55,0xc9,0xe5,0xaa,0x14,0x55,0xa5,0xa5,0x2a,0x7d,0x4f, +0x95,0x49,0x52,0x65,0xfe,0xaa,0xb2,0x03,0x54,0xb9,0xbe,0xaa, +0xdc,0x2e,0x55,0x7e,0x81,0x72,0x9b,0xad,0x2a,0x34,0x56,0x15, +0xdd,0x55,0xc5,0xbb,0xaa,0x52,0x86,0x72,0x77,0x54,0x55,0x8a, +0x2b,0x8f,0x2a,0xca,0x33,0xaf,0xf2,0x9c,0xaa,0xaa,0x96,0x55, +0xd5,0xfc,0x54,0xb5,0xe3,0xca,0x6b,0xbb,0xaa,0xde,0x57,0x55, +0x3f,0xa5,0x6a,0xbc,0x54,0x35,0x17,0x28,0x6f,0xa5,0xbc,0x57, +0xab,0x5a,0x11,0xaa,0x76,0x9c,0xaa,0xd3,0x47,0xd5,0xcd,0xaf, +0xea,0xbe,0x51,0xf5,0xb2,0x54,0xfd,0x99,0xaa,0x81,0xbd,0x6a, +0xc8,0x54,0xc3,0x38,0xd5,0xa8,0xb3,0x6a,0x5c,0x49,0x35,0x09, +0x50,0x4d,0xf6,0xab,0xa6,0x35,0x54,0xd3,0x3b,0xaa,0x59,0x37, +0xe5,0xe7,0xa8,0xfc,0xbe,0x2a,0xff,0xb1,0xaa,0x79,0x6e,0xd5, +0x7c,0x92,0x6a,0x81,0x55,0x8b,0x47,0x2a,0xe0,0x99,0x6a,0x39, +0x5b,0xb5,0xaa,0xa0,0x5a,0xd7,0x56,0x6d,0x2a,0xa8,0x36,0x9f, +0x55,0xdb,0x1d,0xaa,0x5d,0x49,0xd5,0xee,0xa6,0x6a,0xbf,0x5c, +0x05,0x4e,0x54,0x1d,0x42,0x54,0x47,0x37,0xd5,0xa9,0x86,0xea, +0x5c,0x48,0x75,0xfe,0xa4,0xba,0x56,0x54,0xdd,0x7c,0x54,0xf7, +0x85,0xaa,0x47,0x80,0xea,0x91,0xae,0x7a,0xbe,0x51,0xbd,0xdc, +0x54,0x90,0x9d,0x0a,0x76,0x53,0xc1,0xd7,0x55,0xef,0xdd,0x2a, +0x24,0x46,0x85,0xae,0x50,0x7d,0xea,0xab,0xbe,0x0e,0xaa,0xef, +0x1d,0x15,0x56,0x59,0x85,0xdd,0x56,0xe1,0x9f,0x55,0xbf,0x44, +0x15,0x31,0x46,0x45,0x86,0xa9,0xc8,0xb3,0xaa,0xff,0x5a,0x35, +0x60,0xb5,0x1a,0x58,0x5a,0x0d,0xf2,0x50,0x83,0xfd,0xd5,0xe0, +0x67,0x6a,0x48,0x25,0x15,0x15,0xa2,0x86,0x56,0x51,0x43,0xaf, +0xaa,0xe8,0x64,0x35,0x6c,0xa1,0x1a,0x3e,0x5a,0x8d,0x00,0x35, +0x62,0x86,0x1a,0xf1,0x47,0x8d,0x3c,0xae,0x46,0xdd,0x50,0xa3, +0x9f,0xa8,0x31,0x93,0xd4,0xd8,0x1f,0x6a,0x5c,0x7f,0x35,0x6e, +0x93,0x1a,0x7f,0x43,0xc5,0x4c,0x54,0x13,0x3c,0xd5,0xc4,0xea, +0x6a,0x52,0x61,0x35,0x29,0x4b,0x4d,0xbe,0xa5,0xa6,0x1c,0x52, +0x53,0x8d,0x9a,0xda,0x4b,0x4d,0x3d,0xa2,0xa6,0x66,0xa9,0x69, +0xbe,0x6a,0x5a,0x6f,0x35,0xed,0xb6,0x9a,0xf6,0x55,0x4d,0x6f, +0xa6,0xa6,0xa7,0xa9,0x19,0x4b,0xd5,0xcc,0x64,0x35,0xf3,0xbd, +0x9a,0xed,0xa6,0x66,0xef,0x53,0x73,0x22,0xd5,0x9c,0x2b,0x6a, +0xce,0x2f,0x35,0xb7,0x8e,0x9a,0xfb,0x52,0xcd,0xcd,0x50,0xf3, +0x9a,0xa9,0x79,0x07,0xd4,0xfc,0x86,0x6a,0xfe,0x76,0xb5,0xa0, +0x94,0x5a,0xb0,0x43,0x2d,0xb4,0xd4,0xc2,0x40,0xb5,0xf0,0x96, +0x5a,0xd4,0x46,0x2d,0x7a,0xa2,0x16,0x2f,0x52,0x8b,0xd3,0xd5, +0x92,0x41,0x6a,0xc9,0x5b,0xb5,0x74,0xba,0x5a,0xfa,0x4c,0x2d, +0xdb,0xa3,0x96,0xd7,0x57,0xcb,0x8f,0xab,0x15,0x85,0xd5,0x8a, +0x31,0x6a,0x65,0x63,0xb5,0x32,0x4d,0xad,0x1a,0xa6,0x56,0x57, +0x57,0xab,0x6f,0xa9,0x35,0xb5,0xd4,0x9a,0xab,0x6a,0x6d,0x53, +0xb5,0x4e,0xa8,0x75,0xcb,0xd5,0xfa,0x71,0x2a,0x36,0x97,0x8a, +0xbd,0xab,0x36,0xc4,0xa8,0x8d,0x1e,0x6a,0x63,0x96,0xda,0xb4, +0x41,0x6d,0x76,0x56,0x9b,0xcf,0xa9,0x2d,0xd3,0xd4,0x56,0xa1, +0xb6,0xc6,0xaa,0x6d,0x15,0xd4,0xb6,0x3d,0x2a,0xae,0xb1,0x8a, +0xbb,0xab,0xb6,0x2f,0x52,0x3b,0x1c,0xd4,0x8e,0x57,0x6a,0x67, +0x6b,0xb5,0x33,0x59,0xed,0xaa,0xad,0x76,0x3d,0x57,0xbb,0x67, +0xaa,0x3d,0x96,0xda,0x73,0x58,0xed,0x8d,0x56,0xf1,0x45,0x54, +0x7c,0x92,0xda,0x37,0x47,0xed,0x8f,0x50,0x07,0xea,0xa9,0x03, +0x99,0xea,0xe0,0x66,0x75,0x28,0x59,0x1d,0x3e,0xa5,0x8e,0x6c, +0x56,0x47,0x77,0xaa,0x63,0x21,0xea,0xd8,0x0b,0x75,0xfc,0xb1, +0x3a,0x71,0x42,0x9d,0xdc,0xa0,0x4e,0x8d,0x55,0xa7,0x07,0xa8, +0x33,0xb9,0xd5,0xd9,0xb6,0xea,0x5c,0x71,0x75,0xbe,0x9a,0x4a, +0x70,0x54,0x09,0x17,0xd4,0x85,0x68,0x75,0xb1,0x90,0x4a,0xb4, +0x54,0xe2,0x05,0x75,0xe9,0xa0,0xba,0x1c,0xaa,0xae,0x4c,0x54, +0x57,0x7d,0x55,0x92,0xa5,0x92,0x2e,0xab,0x6b,0x9f,0xd4,0x0d, +0xaa,0x6e,0x16,0x52,0xb7,0x7c,0xd4,0xad,0x89,0xea,0xd6,0x4d, +0x75,0xdb,0x57,0xdd,0xbe,0xa4,0xee,0x4c,0x53,0x77,0x1b,0xab, +0xe4,0x10,0x95,0xfc,0x55,0xdd,0x3b,0xad,0xee,0x7b,0xa9,0x07, +0x0e,0xea,0x41,0x0d,0xf5,0x60,0xa6,0x4a,0x71,0x53,0x29,0xb6, +0xf7,0x4c,0xf5,0xb0,0xaf,0x4a,0x45,0x2a,0xf5,0x82,0x4a,0x4d, +0x51,0x69,0x5b,0xd5,0xa3,0x36,0xea,0x71,0x35,0xf5,0x24,0x87, +0x7a,0x72,0x47,0x3d,0x35,0xea,0xe9,0x1a,0xf5,0xac,0xa8,0x7a, +0x36,0x51,0x3d,0x77,0x50,0xcf,0x97,0xab,0x17,0x75,0xd4,0x8b, +0xfd,0xea,0x65,0x63,0xf5,0x0a,0xa9,0x57,0x0d,0xd4,0xeb,0xf6, +0xea,0xf5,0x53,0xf5,0x66,0xa4,0x7a,0x9b,0x5f,0xbd,0x75,0x53, +0x6f,0x2f,0xa8,0x77,0x3d,0xd4,0xbb,0x44,0xf5,0xbe,0xa3,0x7a, +0xff,0x5b,0x7d,0xd8,0xa9,0x3e,0x3a,0xa9,0x8f,0x53,0xd4,0x27, +0x2f,0xf5,0x29,0x4d,0xa5,0xdf,0x56,0x9f,0xa7,0xab,0x2f,0x4a, +0x7d,0x59,0xaa,0xbe,0x7a,0xaa,0xaf,0x8f,0xd4,0xb7,0x03,0xea, +0x7b,0x3b,0xf5,0xa3,0x8a,0xfa,0x71,0x56,0xfd,0x3c,0xa2,0x32, +0x42,0xd5,0x2f,0x7f,0xf5,0x7b,0x85,0xfa,0x73,0x4e,0xfd,0x7d, +0xa0,0x32,0xf7,0xa9,0xac,0x73,0x1a,0x6e,0x68,0xf4,0x45,0xe3, +0x6d,0x9a,0xb4,0xd5,0x24,0x4d,0xd3,0x14,0xcd,0x12,0x34,0x1f, +0xae,0x85,0xab,0x96,0x2d,0xb4,0xca,0xab,0xb5,0xbb,0x36,0xf6, +0xda,0xf2,0xd6,0x76,0x13,0x75,0x8e,0xe9,0x3a,0x67,0x8c,0xce, +0x99,0xa4,0x73,0xcd,0xd2,0xb9,0xdd,0x74,0xee,0xfd,0x3a,0xcf, +0x68,0x9d,0xb7,0xb0,0xce,0x57,0x52,0xe7,0x0b,0xd6,0xf9,0x86, +0xeb,0x7c,0x57,0x74,0xfe,0x89,0xba,0x40,0x61,0x5d,0x20,0x53, +0xdb,0xbb,0x68,0xfb,0xe1,0xda,0xfe,0xb9,0x2e,0x58,0x43,0x17, +0x1c,0xa5,0x0b,0x5e,0xd1,0x05,0xbf,0xeb,0x42,0xcb,0x74,0xa1, +0xeb,0xba,0x50,0xba,0x76,0x08,0xd2,0x0e,0x77,0x75,0xe1,0x20, +0xed,0x18,0xac,0x1d,0xa7,0x6a,0xa7,0xce,0xda,0xe9,0xab,0x76, +0x3e,0xa3,0x8b,0xc4,0x6b,0x97,0x21,0xba,0x68,0x90,0x2e,0xba, +0x4f,0x17,0xfb,0xae,0x4b,0x14,0xd1,0xae,0x9e,0xda,0xf5,0xb4, +0x2e,0x19,0xa8,0x4b,0xed,0xd6,0xa5,0xde,0xea,0xd2,0x6d,0x74, +0xe9,0x2d,0xba,0x0c,0xe8,0x32,0x8d,0x75,0x99,0x8d,0xba,0xac, +0xbd,0x2e,0x1b,0xa9,0xcb,0xde,0xd7,0xe5,0xfa,0xe8,0xf2,0x58, +0x97,0x1f,0xa6,0xdd,0x72,0x69,0xb7,0x29,0xda,0xed,0x83,0xae, +0x30,0x41,0x57,0xb8,0xab,0x2b,0x2e,0xd7,0x95,0xaa,0xe8,0x4a, +0xf7,0x75,0xe5,0x1a,0xba,0xf2,0x05,0xed,0x5e,0x55,0xbb,0xaf, +0xd2,0xee,0x6f,0x74,0x95,0x63,0xda,0xc3,0x68,0x8f,0x89,0xda, +0xb3,0xa8,0xf6,0x1c,0xa1,0x3d,0xbf,0xea,0xaa,0x9b,0x75,0xb5, +0x32,0xba,0xda,0x49,0xed,0xe5,0xa5,0xbd,0x36,0xeb,0xea,0xbe, +0xba,0xfa,0x0d,0x5d,0xa3,0xa5,0xae,0xf1,0x48,0xd7,0x1c,0xa7, +0x6b,0xa6,0x6a,0xef,0xb6,0xda,0xfb,0xb0,0xae,0xb5,0x43,0xd7, +0x0e,0xd6,0xb5,0xef,0xea,0x3a,0xe3,0x74,0x5d,0x27,0x5d,0x77, +0xb9,0xae,0xe7,0xae,0xeb,0xed,0xd1,0x3e,0xa3,0xb5,0x4f,0x86, +0xae,0x3f,0x5f,0xfb,0x16,0xd0,0xbe,0xab,0x74,0x83,0x24,0xdd, +0xb0,0x9c,0x6e,0x98,0xa1,0x1b,0x2d,0xd0,0x8d,0x7b,0xe8,0xc6, +0x1f,0x75,0x93,0x99,0xba,0xe9,0x18,0xdd,0xac,0xa6,0x6e,0x96, +0xac,0xfd,0xd6,0x68,0xff,0xe2,0xda,0x7f,0x97,0x6e,0x3e,0x4d, +0xb7,0xe0,0xba,0xc5,0x18,0xdd,0xe2,0x9d,0x0e,0x88,0xd2,0x2d, +0x95,0x6e,0xf9,0x4a,0xb7,0x9a,0xa1,0x5b,0x3b,0xe8,0xd6,0xa9, +0xba,0xcd,0x58,0xdd,0xd6,0x51,0xb7,0xbd,0xa9,0xdb,0xcd,0xd3, +0xed,0x1b,0xeb,0xf6,0xbf,0x75,0x60,0x3f,0xdd,0xa1,0xa3,0xee, +0xf0,0x5e,0x77,0xbc,0xad,0x3b,0x1d,0xd2,0x9d,0xc7,0xea,0x2e, +0xfe,0xba,0xcb,0x33,0xdd,0xb5,0x8b,0xee,0x16,0xa9,0xbb,0xc7, +0xe8,0x1e,0xbe,0xba,0xc7,0x5b,0xdd,0xf3,0xbc,0xee,0xb5,0x5a, +0x07,0x8d,0xd2,0xc1,0x65,0x75,0xef,0x6a,0xba,0xf7,0x4d,0x1d, +0xd2,0x57,0x87,0xd6,0xd6,0xa1,0x6f,0x74,0xdf,0xd2,0x3a,0x2c, +0x97,0x0e,0xbb,0xac,0xc3,0xcf,0xea,0x7e,0xaf,0x75,0xa4,0xd4, +0x91,0xbf,0x74,0xff,0x0b,0x7a,0xc0,0x51,0x3d,0xf0,0x94,0x1e, +0xf4,0x4b,0x0f,0x29,0xa4,0xa3,0xa2,0xf5,0xd0,0xf1,0x3a,0xfa, +0x98,0x1e,0x3e,0x45,0x0f,0x5f,0xab,0x47,0xe4,0xd7,0x23,0xa6, +0xea,0x91,0x15,0xf5,0xc8,0xed,0x7a,0x54,0x5e,0x3d,0x6a,0x8a, +0x1e,0xbd,0x58,0x8f,0x69,0xa5,0xc7,0xbc,0xd6,0x63,0x43,0xf5, +0x38,0x4f,0x3d,0x6e,0xb5,0x1e,0xdf,0x5d,0xc7,0x38,0xe9,0x98, +0x99,0x3a,0x26,0x5d,0x4f,0xa8,0xa3,0x27,0xa4,0xea,0x89,0x01, +0x7a,0xe2,0x5a,0x3d,0xc9,0x49,0x4f,0x9a,0xa2,0x27,0x97,0xd6, +0x93,0xcf,0xe9,0x29,0x23,0xf4,0x54,0xa3,0xa7,0x1e,0xd3,0xd3, +0xc6,0xeb,0xe9,0x4e,0x7a,0xfa,0x36,0x3d,0xc3,0x57,0xcf,0x78, +0xa7,0x67,0xf6,0xd6,0xb3,0xdc,0xf5,0xac,0xdf,0x7a,0xf6,0x06, +0x3d,0x27,0x48,0xcf,0x75,0xd5,0x73,0xc7,0xeb,0x79,0x15,0xf4, +0xbc,0xcf,0x7a,0xfe,0x1e,0xbd,0xa0,0x8e,0x5e,0x70,0x4e,0x2f, +0xdc,0xac,0x17,0xd5,0xd2,0x8b,0x0b,0xe9,0x25,0x96,0x5e,0x5a, +0x56,0x2f,0xcb,0xa9,0x97,0xed,0xd3,0xcb,0xab,0xeb,0xe5,0x4f, +0xf4,0x8a,0x5d,0x7a,0xa5,0xbf,0x5e,0xe5,0xa0,0x57,0x23,0xbd, +0x26,0xb7,0x5e,0x4b,0xf5,0xda,0x37,0x7a,0xdd,0x69,0xbd,0x7e, +0xb9,0x8e,0x5d,0xa5,0x37,0x44,0xea,0x8d,0xe1,0x7a,0x53,0x1b, +0xbd,0xb9,0xa6,0xde,0xfc,0x58,0x6f,0xc9,0xd4,0x5b,0x1f,0xea, +0x6d,0x8f,0x75,0xdc,0x01,0xbd,0x5d,0xea,0xed,0xfd,0xf4,0xf6, +0x57,0x7a,0xc7,0x1a,0xbd,0x33,0x87,0xde,0xb9,0x5b,0xef,0x2a, +0xa9,0x77,0xed,0xd6,0xbb,0x4f,0xea,0x3d,0xe5,0xf4,0x9e,0xdf, +0x3a,0x5e,0xea,0xf8,0x48,0x1d,0x7f,0x47,0xef,0xab,0xa1,0xf7, +0x5d,0xd1,0xfb,0xa7,0xeb,0xfd,0x3f,0xf4,0x81,0x85,0xfa,0x60, +0xa0,0x3e,0x98,0xac,0x0f,0xdd,0xd7,0x87,0x7b,0xea,0x23,0x55, +0xf5,0x51,0xa5,0x8f,0xfe,0xd1,0xc7,0x7e,0xe8,0xe3,0x1b,0xf4, +0x09,0x4f,0x7d,0x52,0xe9,0x93,0xdb,0xf4,0xa9,0x56,0xfa,0xb4, +0xd2,0xa7,0x1f,0xea,0x33,0xc3,0xf5,0xd9,0x05,0xfa,0xdc,0x42, +0x7d,0x3e,0x40,0x27,0xd8,0xe9,0x84,0x14,0x7d,0xe1,0x99,0x4e, +0x2c,0xa7,0x13,0x5f,0xea,0x4b,0x5f,0xf4,0x95,0x42,0xfa,0xaa, +0xd0,0x49,0xa0,0x93,0xee,0xe8,0x6b,0xb7,0xf4,0xf5,0x07,0xfa, +0x46,0x9a,0xbe,0x79,0x5f,0xdf,0xba,0xa2,0x6f,0x1f,0xd6,0x77, +0x66,0xe9,0xbb,0x51,0x3a,0x79,0x80,0xbe,0x77,0x42,0xdf,0xdf, +0xa9,0x1f,0x24,0xea,0x94,0x8f,0xfa,0xe1,0x01,0x9d,0xba,0x49, +0xa7,0x3d,0xd2,0x8f,0xee,0xea,0xc7,0xb7,0xf4,0x93,0x0b,0xfa, +0xe9,0x1b,0xfd,0xec,0x82,0x7e,0x9e,0xa4,0x5f,0xd6,0xd6,0xaf, +0x56,0xe8,0xd7,0xdb,0xf5,0x9b,0x6d,0xfa,0x1d,0xd7,0xef,0x1b, +0xe8,0x0f,0x29,0xfa,0xe3,0x1f,0xfd,0xa9,0x8b,0xfe,0xf4,0x56, +0xa7,0x47,0xe9,0xf4,0x1b,0xfa,0xf3,0x01,0xfd,0x65,0xa9,0xfe, +0x3a,0x4a,0x7f,0x3b,0xa7,0xbf,0xa7,0xea,0x1f,0xdf,0xf4,0xcf, +0x89,0x3a,0x23,0x50,0x67,0x0c,0xd4,0x19,0x97,0xf4,0xaf,0x62, +0xfa,0xd7,0x01,0xfd,0x7b,0x8a,0xfe,0xe3,0xa5,0xff,0x9c,0xd1, +0x7f,0xeb,0xe8,0xbf,0x57,0x75,0x66,0x77,0x9d,0xd5,0x58,0x67, +0x65,0x18,0x88,0x31,0x68,0x94,0xc1,0x1d,0x0c,0x29,0x64,0xc8, +0x77,0x43,0x3f,0x19,0x36,0xd9,0xf0,0x36,0x46,0xe4,0x36,0xe2, +0x9d,0x91,0x5d,0x8c,0xf2,0x34,0x6a,0x86,0xd1,0xb5,0x8d,0x0e, +0x33,0xfa,0xbc,0x31,0xed,0x8d,0x39,0x68,0xac,0x56,0xc6,0x4a, +0x34,0x76,0xe3,0x4c,0x8e,0xa2,0x26,0x27,0x98,0x5c,0xce,0x26, +0x57,0x6b,0x93,0x6b,0x9e,0xc9,0xf5,0xdd,0xe4,0x1e,0x6a,0xf2, +0x14,0x32,0x79,0x26,0x9b,0xbc,0x8e,0x26,0x6f,0xbc,0xc9,0x97, +0xcf,0xe4,0xdb,0x69,0xf2,0x53,0x93,0xbf,0xb7,0xc9,0xff,0xcd, +0x14,0x98,0x6c,0x0a,0x5c,0x36,0xf6,0x35,0x8d,0x7d,0x9c,0x29, +0xb8,0xdc,0x14,0x0a,0x33,0x0e,0x05,0x8c,0xc3,0x2a,0x53,0x38, +0xd8,0x14,0xfe,0x61,0x1c,0xc3,0x8d,0xe3,0x4b,0xe3,0xd4,0xd7, +0x38,0xbd,0x36,0xce,0x33,0x4d,0x11,0x6a,0x8a,0xac,0x36,0x2e, +0xae,0xc6,0x25,0xd5,0x14,0xdd,0x68,0x8a,0x35,0x37,0xc5,0x9e, +0x99,0xe2,0xcb,0x4c,0xf1,0xbf,0xa6,0xc4,0x7a,0xe3,0xea,0x6a, +0x5c,0xbf,0x99,0x92,0x93,0x4d,0xa9,0xf1,0xa6,0xd4,0x57,0x53, +0x3a,0xd6,0x94,0xa9,0x64,0xca,0x3c,0x31,0x65,0x4f,0x99,0x72, +0xe9,0xa6,0xfc,0x6d,0xe3,0xf6,0xd6,0x54,0xf8,0x68,0x2a,0x95, +0x33,0x95,0xee,0x1b,0x77,0x7f,0x53,0xe5,0xa1,0xf1,0xf8,0x68, +0xaa,0x8e,0x33,0xd5,0x96,0x18,0xaf,0xc2,0xc6,0x6b,0x9b,0xf1, +0x7a,0x62,0xaa,0x77,0x35,0x35,0xa8,0xa9,0xd1,0xd5,0xd4,0xc4, +0xa6,0x66,0x8a,0xf1,0xf6,0x32,0xde,0x77,0x4d,0xad,0x41,0xa6, +0xb6,0xbb,0xa9,0xfd,0xc8,0xd4,0x09,0x35,0x75,0xbe,0x99,0xba, +0x49,0xa6,0xde,0x58,0xe3,0x33,0xc1,0xd4,0xf7,0x30,0xbe,0xc5, +0x8c,0xef,0x55,0xd3,0xc0,0xce,0x34,0x18,0x61,0x1a,0xfc,0x34, +0x8d,0x72,0x98,0x46,0x5e,0xa6,0xd1,0x7e,0xd3,0xb8,0x95,0x69, +0xfc,0xcd,0x34,0x39,0x65,0x9a,0x9e,0x32,0xcd,0xae,0x18,0xbf, +0x87,0xc6,0x7f,0x81,0x69,0xde,0xd1,0xb4,0xa8,0x6c,0x5a,0x7c, +0x33,0x2d,0x5b,0x99,0x56,0xbe,0xa6,0xf5,0x20,0xd3,0xa6,0x92, +0x69,0x5b,0xc2,0xb4,0xeb,0x6d,0xda,0xaf,0x34,0x81,0x1b,0x4c, +0x07,0x6d,0x3a,0xec,0x34,0x1d,0xde,0x9b,0x8e,0xc3,0x4c,0xc7, +0x0c,0xd3,0x39,0xda,0x74,0xb9,0x69,0xba,0xba,0x9b,0x6e,0x25, +0x4c,0xb7,0xa1,0xa6,0x7b,0x3f,0xd3,0xc3,0xce,0xf4,0x78,0x61, +0x7a,0x2e,0x31,0xbd,0x02,0x4c,0xd0,0x67,0xd3,0x7b,0xb3,0x09, +0xf1,0x37,0x21,0x4b,0x4d,0xe8,0x10,0xd3,0x87,0x99,0x3e,0x89, +0xa6,0x6f,0x71,0xd3,0xf7,0xa5,0x09,0x2b,0x67,0xc2,0x4e,0x9a, +0x70,0x1f,0x13,0x1e,0x67,0xfa,0x4d,0x37,0xfd,0xbe,0x98,0x88, +0xe5,0x26,0xb2,0xb5,0xe9,0xcf,0x4c,0xff,0x8f,0x66,0xc0,0x04, +0x33,0xb0,0xb0,0x19,0x94,0xc3,0x0c,0x5a,0x61,0x06,0x8f,0x36, +0x43,0x56,0x99,0x28,0xcb,0x44,0x8d,0x36,0x51,0x6f,0xcc,0xd0, +0x79,0x26,0xba,0x88,0x89,0xbe,0x6f,0x86,0x2d,0x37,0xc3,0x87, +0x9b,0x11,0xb9,0xcd,0x88,0xf5,0x66,0xa4,0x32,0x23,0xb7,0x9b, +0x51,0x4d,0xcd,0xa8,0x67,0x66,0xf4,0x6f,0x33,0xa6,0x83,0x19, +0x93,0x60,0xc6,0xae,0x33,0xe3,0x9c,0xcc,0xb8,0xd3,0x66,0x7c, +0x94,0x89,0xc9,0x69,0x62,0xae,0x99,0x09,0x33,0xcd,0xc4,0x76, +0x66,0x52,0x45,0x33,0xb9,0x92,0x99,0x7c,0xd7,0x4c,0x19,0x63, +0xa6,0x76,0x35,0x53,0x5f,0x99,0x69,0x5d,0xcc,0x74,0x65,0xa6, +0xcf,0x30,0x33,0xb0,0x99,0x11,0x6f,0x66,0xba,0x9b,0x99,0x9b, +0xcc,0xac,0xba,0x66,0xd6,0x25,0x33,0x3b,0xd8,0xcc,0xe1,0x66, +0x6e,0x29,0x33,0xf7,0x90,0x99,0x37,0xc7,0xcc,0x2f,0x62,0xe6, +0xdf,0x36,0x0b,0xa2,0xcd,0xc2,0xc2,0x66,0x61,0x9a,0x59,0x74, +0xc8,0x2c,0x7e,0x60,0x96,0xc4,0x9a,0xa5,0x1e,0x66,0x59,0x2e, +0xb3,0x6c,0xb7,0x59,0xde,0xd2,0x2c,0xff,0x6c,0x56,0xc4,0x9a, +0x95,0x01,0x66,0x95,0x9f,0x59,0x95,0x6c,0x56,0x7f,0x31,0x6b, +0xde,0x98,0xb5,0x23,0xcd,0xba,0x3c,0x66,0xdd,0x3c,0xb3,0xfe, +0x81,0x89,0x9d,0x64,0x36,0x4c,0x33,0x1b,0xf7,0x9b,0x4d,0x33, +0xcd,0xe6,0x87,0x66,0xcb,0x5d,0xb3,0xf5,0xb9,0xd9,0x76,0xcf, +0xc4,0x3d,0x30,0xdb,0x2f,0x99,0x1d,0x8b,0xcd,0xce,0x4d,0x66, +0x57,0xa4,0xd9,0x5d,0xd3,0xec,0xf1,0x37,0x7b,0xb2,0xcc,0xde, +0xb3,0x26,0xfe,0x80,0xd9,0x5f,0xc8,0x1c,0x90,0xe6,0xc0,0x55, +0x73,0x48,0x9b,0x43,0x8f,0xcd,0xe1,0x4b,0xe6,0xc8,0x36,0x73, +0x74,0xae,0x39,0xb6,0xd4,0x1c,0x1f,0x6c,0x4e,0x54,0x37,0x27, +0x0b,0x9b,0x93,0xe9,0xe6,0x74,0x27,0x73,0xc6,0xc3,0x9c,0x79, +0x6e,0xce,0xde,0x36,0xe7,0x86,0x9b,0xf3,0x13,0x4d,0xc2,0x09, +0x73,0x61,0x8a,0xb9,0x38,0xc6,0x24,0x56,0x35,0x97,0x02,0xcc, +0xe5,0x1e,0xe6,0x4a,0x47,0x73,0x75,0xbe,0x49,0x3a,0x64,0xae, +0xf5,0x33,0xd7,0x07,0x9b,0x1b,0x87,0xcd,0xcd,0x49,0xe6,0x96, +0xbf,0xb9,0x2d,0xcc,0x1d,0x1f,0x73,0xb7,0xb7,0x49,0xbe,0x65, +0xee,0x3d,0x35,0x0f,0xfc,0x4d,0x4a,0x25,0xf3,0xd0,0xd9,0xa4, +0xd6,0x31,0x8f,0xec,0xcd,0xa3,0x75,0xe6,0x71,0x4d,0xf3,0xf8, +0x89,0x79,0x32,0xc6,0x3c,0x9d,0x66,0x9e,0xf9,0x99,0xe7,0xce, +0xe6,0x45,0x3e,0xf3,0x32,0x97,0x79,0xd5,0xcf,0xbc,0x0e,0x34, +0x6f,0x76,0x98,0x77,0xd8,0xbc,0x8b,0x31,0xef,0xbe,0x9a,0xf7, +0xdd,0xcd,0xfb,0xb3,0xe6,0x43,0x29,0xf3,0xe1,0xa1,0xf9,0xb8, +0xdf,0x7c,0xea,0x6c,0x3e,0x5d,0x32,0xe9,0xa3,0xcc,0xe7,0x66, +0xe6,0x73,0xba,0xf9,0xb2,0xd4,0x7c,0xad,0x60,0xbe,0x66,0x99, +0x6f,0x63,0xcd,0xf7,0x7c,0xe6,0x47,0x5e,0xf3,0x63,0x9e,0xf9, +0xe9,0x6a,0x32,0x9c,0x4d,0xc6,0x39,0xf3,0x2b,0xda,0xfc,0x9e, +0x61,0xfe,0x50,0xf3,0x27,0xce,0xfc,0x6d,0x64,0xfe,0x7e,0x30, +0x99,0x0f,0x4d,0xd6,0x2d,0x0b,0xb6,0x5a,0xa8,0x8e,0x85,0x2d, +0x0b,0xcf,0xb7,0x88,0x97,0x45,0x85,0x45,0x67,0x5b,0x6c,0xae, +0xc5,0xdb,0x5b,0xc2,0xde,0x12,0x5b,0x2d,0xb9,0xc1,0x52,0x15, +0x2c,0xf5,0xcb,0xd2,0x13,0x2d,0x33,0xd6,0xb2,0xea,0x58,0x76, +0x65,0xad,0x1c,0xc2,0xca,0x71,0xd9,0xca,0xb9,0xc0,0xca,0x15, +0x69,0xe5,0xca,0xb0,0x72,0xaf,0xb2,0xf2,0xb4,0xb3,0xf2,0x7c, +0xb7,0xf2,0xee,0xb5,0xf2,0xdd,0xb0,0xf2,0xef,0xb7,0x0a,0x4c, +0xb7,0xec,0x67,0x58,0x05,0xdd,0xad,0x42,0xce,0x56,0xa1,0x24, +0xcb,0x61,0x91,0x55,0x78,0x85,0xe5,0x38,0xcb,0x72,0x6a,0x63, +0x39,0x97,0xb5,0x9c,0xd3,0x2d,0x97,0x42,0x96,0xcb,0x57,0xab, +0x98,0xab,0x55,0xec,0xb9,0x55,0xfc,0x86,0x55,0x62,0xbb,0xe5, +0x3a,0xc4,0x2a,0x39,0xcb,0x2a,0x35,0xd1,0x2a,0xbd,0xc7,0x2a, +0x5b,0xd6,0x2a,0x67,0x6f,0x95,0xc7,0x96,0x5b,0xb4,0x55,0x61, +0x8e,0x55,0x09,0x59,0x95,0x9b,0x5a,0xee,0xab,0xad,0x2a,0xa9, +0x96,0xc7,0x74,0xcb,0xb3,0xad,0x55,0xb5,0x9b,0x55,0xad,0xa6, +0x55,0x2d,0xd3,0xaa,0x5e,0xd8,0xaa,0xfe,0xdb,0xaa,0xb1,0xcf, +0xaa,0xf9,0xd5,0xf2,0x4e,0xb1,0x6a,0x4d,0xb3,0x6a,0x87,0x59, +0x75,0x02,0xad,0xba,0x43,0xac,0x7a,0x1b,0x2c,0x9f,0x0d,0x56, +0xfd,0xcf,0x56,0x83,0xda,0x56,0xc3,0x2b,0x56,0xe3,0xb6,0x56, +0x93,0x01,0x56,0xd3,0xa5,0x56,0xb3,0x33,0x96,0x3f,0xb7,0x9a, +0x9f,0xb2,0x5a,0xfc,0xb2,0x02,0x3a,0x58,0x01,0x57,0xac,0x96, +0x63,0xad,0x56,0xda,0x6a,0xb5,0xd5,0x6a,0xed,0x67,0xb5,0xa9, +0x6c,0xb5,0x65,0x56,0xdb,0x14,0xab,0xdd,0x0e,0xab,0xfd,0x62, +0x2b,0xb0,0x9f,0xd5,0xa1,0xb3,0xd5,0x31,0x87,0xd5,0xa9,0x9e, +0xd5,0x79,0x80,0xd5,0xe5,0xb1,0xd5,0xed,0x90,0xd5,0x7d,0xb9, +0xd5,0xa3,0x93,0xd5,0xe3,0xae,0xd5,0xeb,0x9c,0x15,0x34,0xd9, +0x0a,0xf6,0xb6,0x82,0x93,0xad,0xde,0xa7,0xac,0x90,0x18,0x2b, +0x74,0xbe,0xd5,0x27,0xc1,0xea,0x9b,0x6c,0x85,0xd5,0xb3,0xc2, +0x0e,0x5b,0x61,0xbf,0xad,0xf0,0x8e,0x56,0xf8,0x59,0xab,0x9f, +0x87,0xd5,0x6f,0x87,0x15,0xe1,0x68,0x45,0x6c,0xb2,0x22,0x7d, +0xad,0xc8,0x6b,0x56,0xff,0x30,0x6b,0x40,0x6e,0x6b,0xc0,0x0e, +0x6b,0x60,0x5f,0x6b,0x50,0x19,0x6b,0xd0,0x5b,0x6b,0x70,0x0f, +0x6b,0x70,0x9a,0x35,0xa4,0x97,0x15,0x25,0xac,0xa8,0x14,0x6b, +0xe8,0x14,0x2b,0xba,0x92,0x15,0xbd,0xd5,0x1a,0x56,0xc1,0x1a, +0x76,0xc5,0x1a,0xde,0xd5,0x1a,0x9e,0x64,0x8d,0x98,0x66,0x8d, +0xcc,0x6f,0x8d,0xca,0x6b,0x8d,0xfa,0x63,0x8d,0x3e,0x61,0x8d, +0x39,0x62,0x8d,0x3d,0x69,0x8d,0x0b,0xb5,0xc6,0x07,0x59,0x31, +0x9b,0xad,0x09,0xeb,0xac,0x89,0x63,0xad,0x49,0x0e,0xd6,0xe4, +0x31,0xd6,0x94,0xa1,0xd6,0x94,0xa5,0xd6,0xd4,0xd6,0xd6,0xd4, +0x2c,0x6b,0xda,0x08,0x6b,0x7a,0x0d,0x6b,0xfa,0x37,0x6b,0x66, +0x1e,0x6b,0x56,0x3e,0x6b,0x56,0x86,0x35,0xbb,0xaf,0x35,0xfb, +0x9e,0x35,0x67,0xb0,0x35,0xe7,0x8f,0x35,0x77,0xa9,0x35,0xcf, +0xd3,0x9a,0xb7,0xca,0x9a,0xef,0x6c,0xcd,0x1f,0x6f,0x2d,0x28, +0x63,0x2d,0x98,0x6d,0x2d,0xac,0x62,0x2d,0x5c,0x6f,0x2d,0xaa, +0x69,0x2d,0xfa,0x6a,0x2d,0x5e,0x6a,0x2d,0xf1,0xb5,0x96,0x6a, +0x6b,0xe9,0x2e,0x6b,0x99,0x97,0xb5,0xec,0xa9,0xb5,0x7c,0xa4, +0xb5,0xa2,0xb4,0xb5,0x62,0x93,0xb5,0xd2,0xdf,0x5a,0x99,0x66, +0xad,0xea,0x67,0xad,0xce,0x6f,0xad,0xbe,0x6c,0xad,0x69,0x64, +0xad,0xb9,0x62,0xad,0x1d,0x65,0xad,0x6b,0x6c,0xad,0x3b,0x6d, +0xad,0x9f,0x68,0xc5,0x96,0xb3,0x62,0xcf,0x58,0x1b,0x96,0x58, +0x1b,0x27,0x5b,0x9b,0xa4,0xb5,0x69,0x86,0xb5,0xb9,0x93,0xb5, +0x25,0x9f,0xb5,0xe5,0xbb,0xb5,0x35,0xc1,0xda,0x36,0xd4,0x8a, +0x6b,0x63,0x6d,0xcf,0x6d,0x6d,0xbf,0x63,0xed,0x08,0xb3,0x76, +0xfa,0x59,0x3b,0x6f,0x59,0xbb,0xa2,0xac,0xdd,0x0e,0xd6,0x9e, +0xc6,0xd6,0x5e,0x6d,0xed,0x4d,0xb5,0xe2,0xd3,0xac,0x7d,0x67, +0xad,0xfd,0xeb,0xad,0x03,0xcd,0xad,0x83,0xce,0xd6,0xc1,0x4f, +0xd6,0xa1,0xe1,0xd6,0xe1,0x92,0xd6,0xe1,0xdd,0xd6,0x91,0x7e, +0xd6,0x51,0x0f,0xeb,0x68,0xb2,0x75,0x6c,0xa6,0x75,0x7c,0xa6, +0x75,0xa2,0xad,0x75,0xe2,0xa3,0x75,0xaa,0xa8,0x75,0xea,0x8a, +0x75,0x7a,0xa4,0x75,0xa6,0xa1,0x75,0xb6,0x8c,0x75,0x6e,0x90, +0x75,0xbe,0xb8,0x95,0xd0,0xd6,0xba,0xe0,0x6b,0x5d,0xf4,0xb0, +0x2e,0x7e,0xb2,0x12,0x6f,0x5a,0x97,0x56,0x59,0x97,0x4b,0x5b, +0x97,0x4f,0x5a,0x57,0x8e,0x58,0x57,0x27,0x5b,0x49,0x4d,0xad, +0xa4,0x77,0xd6,0xb5,0x6d,0xd6,0xf5,0xd9,0xd6,0x8d,0xd6,0xd6, +0xcd,0x20,0xeb,0x56,0x03,0xeb,0x36,0xb2,0xee,0x28,0xeb,0xce, +0x7e,0xeb,0x6e,0xbc,0x95,0x3c,0xd3,0xba,0xd7,0xd1,0xba,0x5f, +0xc8,0xba,0x9f,0x64,0x3d,0xf8,0x60,0xa5,0xbc,0xb3,0x1e,0xc6, +0x5b,0xa9,0x47,0xad,0xb4,0x09,0xd6,0xa3,0x40,0xeb,0x71,0x11, +0xeb,0xf1,0x6d,0xeb,0xc9,0x52,0xeb,0xe9,0x26,0xeb,0xd9,0x6e, +0xeb,0x79,0x77,0xeb,0x05,0xb7,0x5e,0xc4,0x5b,0x2f,0x7b,0x5a, +0xaf,0xca,0x5a,0xaf,0x7e,0x5b,0xaf,0xdf,0x58,0x6f,0xb6,0x58, +0x6f,0xe7,0x5b,0xef,0x1e,0x58,0xef,0x67,0x5a,0x1f,0xc2,0xac, +0x8f,0xf5,0xad,0x8f,0x1f,0xad,0x4f,0x37,0xac,0xf4,0xcd,0xd6, +0xe7,0x0d,0xd6,0x97,0x18,0xeb,0xeb,0x10,0xeb,0xdb,0x6e,0xeb, +0xfb,0x2d,0xeb,0xc7,0x44,0xeb,0x67,0xb4,0x95,0x51,0xde,0xfa, +0xe5,0x67,0xfd,0x2e,0x60,0xfd,0xa9,0x6e,0xfd,0x75,0xb6,0xfe, +0x9e,0xb4,0x32,0x5f,0x5b,0x59,0x99,0x76,0xf0,0xd3,0x0e,0x57, +0xb1,0x23,0x9e,0x76,0xb4,0xbf,0x1d,0x8b,0xb2,0xe3,0x63,0xed, +0xc4,0x64,0xbb,0xff,0x31,0xf6,0xe5,0x71,0x35,0x7e,0xdf,0xbf, +0x86,0xce,0x39,0xa6,0x67,0x7e,0xf6,0xde,0xeb,0x14,0xe7,0x18, +0x52,0x11,0x4a,0x29,0x24,0xa9,0x54,0x44,0xa4,0x48,0x23,0x29, +0x4a,0x51,0x94,0x79,0x4c,0x84,0xc8,0x94,0x99,0x88,0x28,0xb3, +0x92,0x79,0x26,0x53,0x28,0x51,0x88,0x46,0x0d,0x86,0x0c,0x11, +0x19,0x9e,0xf2,0x84,0x7b,0x7c,0xbe,0xdf,0x7b,0x5f,0xbf,0x3b, +0x7c,0xef,0xbd,0xaf,0xd7,0x79,0x9d,0xbd,0x9f,0x7d,0xd6,0x5e, +0xfb,0xbd,0xd6,0x7a,0xaf,0xb5,0xf6,0xf3,0xd7,0x69,0xb5,0x83, +0x6a,0xed,0x43,0xb5,0x19,0x46,0xb5,0x6d,0x4e,0xb5,0x9b,0x4f, +0x51,0x71,0x14,0xbd,0x89,0x62,0x02,0x29,0xd6,0x91,0xe2,0xec, +0x28,0xbe,0x3f,0x25,0x8c,0xa0,0xc4,0xd1,0x14,0x9a,0x42,0xe1, +0x64,0x8a,0x9c,0xa0,0x20,0x83,0x52,0xc7,0x50,0xfa,0x11,0x94, +0x41,0x3f,0xaa,0x3d,0x4f,0x75,0xe8,0x49,0x69,0x7a,0x51,0x5a, +0x03,0xaa,0xa3,0x25,0xd5,0xa9,0x86,0xea,0x9c,0x43,0x19,0xfa, +0x52,0x5d,0x27,0x51,0x46,0xbd,0x29,0x63,0x3f,0xca,0xe4,0x30, +0xd5,0x2d,0x8b,0xea,0x9e,0x42,0x99,0x46,0x53,0x3d,0x3b,0x53, +0xbd,0xec,0x29,0xf3,0xf6,0x54,0xef,0x40,0xca,0x22,0x82,0xb2, +0x9c,0x47,0xf5,0x71,0xa2,0xac,0x4c,0x28,0xab,0x46,0xaa,0xaf, +0x48,0xf5,0xad,0xa6,0xfa,0xb3,0x54,0xff,0x3c,0x6a,0x00,0x4b, +0xd9,0xf6,0xa6,0x06,0x06,0x51,0x76,0x01,0xd4,0xa0,0xd9,0x94, +0x7d,0x5f,0xca,0x7e,0x33,0xe5,0x30,0x9b,0x72,0xec,0x49,0x0d, +0x6e,0x46,0x0d,0xbe,0x43,0x39,0x1d,0xa0,0x9c,0xff,0x50,0x2e, +0x99,0xd4,0x90,0x08,0x6a,0xe8,0x5c,0xca,0xd5,0x95,0x1a,0xc6, +0x50,0xc3,0xdb,0x51,0x6e,0x6b,0xa9,0x11,0x67,0xa8,0x91,0x0e, +0x94,0xbb,0x05,0x35,0x4a,0x43,0x8d,0xfa,0x46,0x79,0x1c,0xa4, +0x3c,0x7f,0x51,0xa3,0xef,0x52,0x63,0xb2,0x29,0xaf,0x08,0x6a, +0xec,0x51,0xca,0xfb,0x35,0xe5,0xf3,0x83,0xf2,0xad,0xa0,0xfc, +0xe6,0x51,0x7e,0xf9,0x94,0xff,0x4e,0x2a,0x60,0x14,0x35,0x4e, +0xa4,0xc6,0x25,0x52,0xe3,0xea,0xa8,0xf1,0xa3,0xa8,0xf1,0x17, +0xa8,0x40,0x1b,0x2a,0xf0,0x11,0x35,0xc1,0x8c,0x9a,0xf0,0x92, +0x0a,0x0a,0xa2,0x82,0x3b,0x52,0xc1,0xab,0xa9,0x89,0x7d,0xa8, +0x49,0x7a,0xd4,0xa4,0x8d,0x54,0x08,0x4f,0x85,0xdc,0xa4,0x42, +0xb7,0x51,0x93,0x5b,0x53,0x93,0xb7,0x53,0x61,0x26,0x54,0x58, +0x01,0x15,0xee,0x4c,0x85,0x97,0x51,0x53,0x5c,0xa9,0x29,0xf7, +0xa8,0xa9,0x4b,0xa8,0x88,0xbe,0x54,0xc4,0x75,0x2a,0xd2,0x92, +0x9a,0x46,0x51,0xd3,0xd2,0xa9,0xe9,0x9b,0xa9,0x28,0x42,0x45, +0x1d,0xa3,0xa2,0x43,0xa8,0x19,0x84,0x9a,0x51,0x40,0xcd,0xdc, +0x4b,0xcd,0x72,0xa2,0x66,0xc9,0xd4,0xec,0x34,0x6a,0x4e,0x2f, +0x6a,0x6e,0x0b,0x6a,0x5e,0x2f,0x6a,0xbe,0x31,0x35,0xff,0x13, +0xb5,0xa0,0x90,0x5a,0x78,0x81,0x5a,0xb4,0x8d,0x5a,0x0c,0x54, +0x4c,0x6b,0x2a,0xe6,0x15,0xb5,0x24,0x9b,0x8a,0xcd,0xa2,0x96, +0x46,0x52,0xcb,0xcc,0xa8,0x65,0x17,0xa8,0xb8,0x34,0x6a,0x79, +0x0c,0xb5,0x62,0x39,0xb5,0xd2,0x94,0x8a,0x6f,0x41,0xc5,0x7f, +0xa4,0x56,0x9d,0xa2,0x56,0x4b,0x54,0xc2,0x7e,0x6a,0xcd,0x16, +0x6a,0xed,0x30,0x6a,0x9d,0x48,0xad,0xcb,0xa1,0xd6,0xcf,0xa0, +0x36,0x08,0xd4,0x86,0x63,0x54,0xe2,0x7e,0x6a,0xe3,0x49,0x6a, +0x93,0x2b,0xb5,0x49,0xa2,0x36,0xa7,0x52,0x5b,0x0e,0x52,0x5b, +0x03,0xa8,0x6d,0x66,0xd4,0xb6,0x02,0x6a,0xfb,0x64,0x6a,0x87, +0x3b,0xb5,0xb3,0x0b,0xb5,0x33,0x87,0x4a,0xca,0xa3,0x76,0x65, +0x52,0xbb,0xcf,0x51,0xc9,0x19,0xd4,0x9e,0xc5,0xd4,0xde,0x4b, +0x54,0xca,0x32,0x6a,0xdf,0x18,0x6a,0xbf,0x27,0x95,0xda,0x8c, +0x4a,0x6d,0xa4,0xd2,0x6a,0xa9,0x03,0xf7,0xa9,0x83,0xdb,0xa8, +0x43,0xc1,0xd4,0xe1,0x0b,0xd4,0x91,0x59,0xd4,0xd1,0x11,0xd4, +0xb1,0xee,0xd4,0xb1,0x27,0xd4,0xf1,0x87,0x54,0xfa,0x35,0x2a, +0x23,0x9d,0x3a,0x31,0x83,0xca,0xec,0x49,0x9d,0x34,0xa7,0x4e, +0xb9,0x51,0xa7,0x6f,0x52,0x67,0x9e,0x50,0x67,0xcf,0x50,0xe7, +0x8e,0x50,0xe7,0xcf,0x53,0x17,0xce,0x53,0x17,0x6f,0x53,0x97, +0x6e,0x50,0x97,0x8f,0x50,0x57,0x72,0xa8,0xab,0x0f,0xa9,0x6b, +0xb1,0xd4,0xf5,0x93,0x54,0xd6,0x32,0xea,0x46,0x26,0x75,0xb3, +0x94,0xba,0xb5,0x96,0xba,0xbd,0x81,0xba,0xe3,0x4d,0x65,0x7b, +0x53,0x77,0xc7,0x52,0xf7,0xda,0x51,0xf7,0x6d,0xa9,0x9c,0x51, +0x54,0xee,0x7c,0xea,0x81,0x33,0x95,0xd7,0x96,0xca,0xcb,0xa7, +0x1e,0x56,0x50,0x8f,0x0e,0x50,0xf9,0xf1,0x54,0xc1,0x65,0xea, +0x49,0x5f,0xea,0xa9,0x31,0x55,0x98,0x4d,0x3d,0xbb,0x43,0x3d, +0xcf,0xa4,0x8a,0xee,0x51,0xc5,0x95,0x54,0x49,0x13,0x55,0x86, +0xa9,0xf2,0x03,0xd4,0x8b,0x7b,0x54,0x65,0x73,0xaa,0x6a,0x3e, +0x55,0x7d,0x85,0x7a,0x65,0x4c,0xbd,0xf6,0xa2,0xde,0x6c,0xa6, +0x6a,0x2e,0x52,0x6f,0x1f,0x52,0xef,0xae,0x51,0x1f,0x76,0x53, +0xb5,0x19,0xd4,0x27,0x4c,0xd5,0x0d,0xa1,0xbe,0xd8,0x53,0xf5, +0xcd,0xa9,0xfa,0x87,0xd4,0xd7,0x08,0xea,0x5b,0x7f,0xea,0xdb, +0x7d,0xea,0xfb,0x54,0xea,0x47,0x37,0x4a,0x62,0x29,0xe9,0x3e, +0xd5,0xb0,0x9c,0x6a,0xf4,0xa6,0x7e,0xba,0x50,0xb2,0x82,0x92, +0x7f,0x53,0x4d,0x35,0xd4,0xaf,0xe3,0xd4,0xef,0x5c,0xea,0x4f, +0x02,0xdd,0x6c,0x0a,0xdd,0xdc,0x81,0x6e,0xe1,0x41,0xb7,0x6c, +0x47,0xeb,0x39,0xd0,0x0a,0x1b,0x5a,0xd9,0x89,0x56,0x4d,0xa6, +0x5b,0x4d,0xa3,0x5b,0xdb,0xd1,0x6d,0x5c,0xe9,0xb6,0xc1,0x74, +0x3b,0x2f,0x9a,0x32,0xa0,0xe9,0x40,0x9a,0x09,0xa3,0xd9,0x03, +0x34,0x97,0x4d,0xf3,0xbf,0x69,0xd1,0x95,0x46,0x89,0x34,0xd1, +0xd0,0x30,0x8c,0x56,0x4f,0xa5,0x0d,0x94,0x74,0xfb,0xe6,0x74, +0x87,0x93,0xb4,0xa6,0x96,0xee,0x68,0x40,0x77,0x3a,0x45,0x77, +0xf6,0xa0,0x3b,0xd7,0xd3,0x5d,0x1e,0xd2,0x86,0xf5,0x74,0xd7, +0x35,0xb4,0xd1,0x40,0xda,0x28,0x9a,0x36,0xaa,0xa3,0x8d,0xcb, +0xe8,0x6e,0x0c,0xdd,0xad,0x91,0xee,0x5e,0x40,0x9b,0x2e,0xa4, +0x7b,0x44,0xd2,0x3d,0x4d,0xe8,0x9e,0x0d,0x74,0xaf,0xa3,0xb4, +0xd9,0x39,0xda,0xfc,0x22,0x6d,0x31,0x86,0xb6,0x34,0xa4,0x2d, +0x1f,0xd1,0x7d,0x32,0x68,0x2b,0x57,0xda,0x1a,0x68,0xeb,0x5b, +0x74,0xdf,0x27,0x74,0xbf,0x2c,0xba,0xff,0x4e,0xda,0x66,0x19, +0x3d,0x60,0x1f,0x6d,0xeb,0x41,0x0f,0xec,0x4d,0xdb,0x71,0xb4, +0x5d,0x0d,0x3d,0xe8,0x04,0x6d,0x3f,0x8e,0x76,0xf0,0xa7,0x1d, +0x03,0xe9,0xc1,0x46,0xf4,0xe0,0x3a,0xda,0xa9,0x92,0x76,0xce, +0xa0,0x5d,0xae,0xd2,0x43,0x76,0xd0,0x43,0x1f,0xd0,0xc3,0x80, +0x1e,0xde,0x8d,0x76,0x1b,0x4b,0x8f,0x58,0x44,0x8f,0x74,0xa7, +0x47,0x75,0xa2,0x3d,0xfc,0x69,0xcf,0xb3,0xf4,0xe8,0x91,0xf4, +0xe8,0x3f,0xf4,0x98,0x83,0xb4,0x57,0x08,0xed,0x55,0x4c,0x8f, +0x9d,0x4e,0x7b,0x0b,0xb4,0xf7,0x23,0xda,0x67,0x2e,0xed,0xdb, +0x89,0xf6,0x95,0x69,0xbf,0x6a,0xda,0x3f,0x8a,0x0e,0x68,0x49, +0x07,0x14,0xd1,0xe3,0xd6,0xd2,0xe3,0x8d,0xe8,0x40,0x9e,0x9e, +0xa0,0xa6,0x27,0x1c,0xa0,0x83,0x76,0xd1,0xc1,0x07,0xe8,0x89, +0x49,0xf4,0x24,0x7f,0x3a,0xc4,0x91,0x0e,0xf9,0x4d,0x87,0xee, +0xa2,0x27,0x3b,0xd1,0x61,0x26,0x74,0xd8,0x57,0x7a,0x4a,0x37, +0x7a,0x2a,0xa1,0x23,0x46,0xd1,0x91,0xd6,0xf4,0xb4,0x11,0xf4, +0xf4,0xe3,0x74,0x94,0x0b,0x1d,0xd5,0x48,0x47,0x7f,0xa2,0x67, +0x3c,0xa4,0x67,0x5e,0xa3,0x67,0x9d,0xa1,0x67,0x47,0xd1,0x73, +0xa6,0xd2,0x73,0xbd,0xe9,0x79,0x09,0xf4,0xfc,0x70,0x7a,0x81, +0x0d,0xbd,0x30,0x90,0x5e,0xd4,0x8d,0x5e,0xbc,0x94,0x8e,0x59, +0x49,0x2f,0xe1,0xe9,0x25,0x55,0x74,0x6c,0x20,0x1d,0x7b,0x8e, +0x5e,0x6a,0x4e,0x2f,0xbd,0x4d,0x2f,0x1b,0x43,0x2f,0xab,0xa4, +0xe3,0xd6,0xd2,0xcb,0x3b,0xd0,0xcb,0x5f,0xd3,0x2b,0xb6,0xd2, +0x2b,0xbb,0xd0,0x2b,0x2b,0xe9,0xf8,0x50,0x7a,0x95,0x3e,0xbd, +0x2a,0x87,0x5e,0xed,0x47,0x27,0x0c,0xa7,0xd7,0xb4,0xa7,0xd7, +0x7c,0xa2,0xd7,0x5e,0xa3,0xd7,0x1d,0xa2,0xd7,0x47,0xd2,0xeb, +0xcb,0xe9,0x0d,0xcb,0xe9,0x0d,0xdf,0xe8,0xc4,0x5d,0xf4,0xc6, +0x71,0xf4,0xa6,0xf6,0xf4,0xa6,0xc3,0xf4,0xe6,0x79,0xf4,0x96, +0xbe,0xf4,0x96,0x8b,0xf4,0xd6,0x7e,0xf4,0xb6,0xae,0xf4,0xb6, +0x46,0x7a,0x7b,0x29,0xbd,0x63,0x29,0xbd,0xd3,0x84,0xde,0x29, +0xd3,0x49,0x0f,0xe8,0x5d,0xb1,0xf4,0x6e,0x7b,0x3a,0xd9,0x93, +0x4e,0xfe,0x40,0xef,0x29,0xa4,0xf7,0x16,0xd3,0x29,0x69,0xf4, +0xbe,0x85,0xf4,0x7e,0x2f,0x3a,0x75,0x3c,0x9d,0xe6,0x44,0x1f, +0x08,0xa6,0x0f,0xf6,0xa2,0x0f,0x89,0xf4,0xa1,0x6f,0xf4,0xe1, +0xc7,0xf4,0x51,0x7b,0xfa,0x98,0x2b,0x7d,0x9c,0xa2,0xd3,0xcd, +0xe8,0x0c,0x37,0xfa,0x84,0x39,0x9d,0x79,0x86,0x3e,0xd5,0x83, +0x3e,0x1d,0x4b,0x9f,0x99,0x4b,0x9f,0xad,0xa1,0xcf,0x77,0xa6, +0x2f,0x74,0xa7,0x2f,0x4e,0xa7,0x2f,0x6d,0xa6,0x2f,0x3f,0xa0, +0xaf,0x1a,0xd1,0xd7,0x12,0xe9,0xeb,0x95,0x74,0x96,0x1f,0x7d, +0xc3,0x80,0xbe,0xe9,0x49,0xdf,0xbc,0x45,0xdf,0xb2,0xa0,0x6f, +0x15,0xd0,0xb7,0x27,0xd2,0x77,0x30,0x7d,0xe7,0x34,0x9d,0x3d, +0x88,0xce,0xae,0xa7,0xef,0x6e,0xa2,0xef,0x6d,0xa1,0x73,0x94, +0x74,0xce,0x37,0x3a,0xf7,0x25,0x9d,0x37,0x9e,0xce,0xbb,0x4a, +0x3f,0xf4,0xa0,0x1f,0x3e,0xa4,0x1f,0x05,0xd0,0xf9,0x3b,0xe8, +0x82,0xf1,0xf4,0xe3,0x1e,0xf4,0x63,0x99,0x7e,0xf2,0x8b,0x2e, +0x04,0xba,0xf0,0x12,0xfd,0xcc,0x81,0x7e,0xf6,0x8c,0x7e,0xee, +0x43,0x17,0xe9,0xd1,0x45,0xbb,0xe8,0x62,0x1b,0xba,0xf8,0x09, +0x5d,0x12,0x49,0x97,0xd4,0xd3,0xa5,0x4f,0xe8,0xb2,0xa5,0x74, +0xf9,0x18,0xba,0xfc,0x0d,0xfd,0x62,0x29,0x5d,0x61,0x4a,0x57, +0x5c,0xa5,0x2b,0xa3,0xe9,0x2a,0x03,0xba,0xea,0x3c,0x5d,0x1d, +0x45,0xbf,0xd4,0xa7,0x5f,0xbe,0xa2,0x5f,0x2d,0xa2,0x5f,0x1b, +0xd3,0xaf,0x1b,0xe9,0x37,0x1f,0xe8,0x9a,0x3d,0xf4,0xdb,0x3a, +0xfa,0xdd,0x21,0xfa,0x7d,0x1a,0xfd,0x21,0x89,0xae,0xdd,0x4d, +0x7f,0xdc,0x4f,0x7f,0x3a,0x4e,0xd7,0xdd,0xa5,0xbf,0xf0,0xf4, +0x97,0xe7,0x74,0xfd,0x42,0xfa,0x6b,0x1a,0xfd,0xb5,0x81,0xfe, +0x76,0x95,0xfe,0xee,0x4f,0xff,0x18,0x42,0xff,0xb8,0x48,0x4b, +0x97,0xe9,0x06,0x6b,0xba,0xb1,0x15,0xdd,0x98,0x45,0xff,0x3c, +0x4f,0xcb,0xf1,0x74,0x53,0x47,0xfa,0x57,0x5b,0xfa,0xd7,0x77, +0xfa,0xf7,0x16,0xfa,0x8f,0x2b,0xd3,0xcc,0x8b,0x69,0xf6,0x8b, +0x69,0xbe,0x8f,0x69,0x31,0x91,0x69,0x39,0x92,0xd1,0x33,0x63, +0x14,0xc0,0x28,0xea,0x18,0xe5,0x1e,0x46,0xb5,0x9b,0x69,0x35, +0x8a,0x69,0xed,0xc0,0xb4,0xc1,0x4c,0x5b,0x60,0xda,0x59,0x31, +0x54,0x3c,0x43,0x7b,0x30,0x4c,0x3a,0xc3,0x59,0x32,0xfc,0x69, +0x46,0x30,0x61,0x84,0x54,0x46,0xf4,0x67,0xc4,0x52,0x06,0x8d, +0x65,0x70,0x2f,0x06,0x7f,0x67,0xc8,0x7e,0x06,0x36,0x32,0xea, +0x15,0x8c,0xfe,0x06,0xc6,0x60,0x18,0xd3,0x3e,0x8a,0xe9,0xa0, +0x61,0x3a,0xd4,0x32,0xda,0x66,0x8c,0x36,0x95,0xe9,0x68,0xc9, +0x74,0xbc,0xcb,0x74,0x4a,0x60,0x3a,0xfb,0x33,0x9d,0xdf,0x32, +0x5d,0x0a,0x18,0xc3,0xd5,0x4c,0x57,0x53,0xa6,0xeb,0x6f,0xc6, +0x28,0x97,0x31,0x5e,0xcf,0x98,0xf8,0x31,0x26,0xdf,0x98,0x6e, +0x71,0x4c,0xf7,0xb5,0x8c,0xe9,0x7c,0xa6,0x87,0x31,0xd3,0xd3, +0x83,0xe9,0x65,0xcf,0x98,0xad,0x64,0xcc,0xe7,0x31,0xbd,0x37, +0x30,0x16,0x77,0x98,0x3e,0x0a,0xc6,0x6a,0x36,0x63,0x9d,0xce, +0xf4,0xb5,0x67,0xfa,0xbe,0x62,0xfa,0x55,0x31,0xfd,0x1f,0x33, +0x36,0x97,0x99,0x01,0xcb,0x19,0x5b,0x63,0xc6,0x36,0x87,0x19, +0x98,0xc1,0xd8,0xed,0x62,0x06,0x9d,0x61,0xec,0x4b,0x19,0x87, +0xc7,0x8c,0x63,0x23,0xe3,0x14,0xc9,0x38,0x4f,0x63,0x5c,0x6a, +0x98,0x21,0x41,0xcc,0x10,0x89,0x19,0xfa,0x84,0x71,0x3d,0xc0, +0x0c,0xeb,0xc3,0x0c,0xcb,0x65,0x86,0xcf,0x66,0xdc,0xd4,0xcc, +0x08,0x8a,0x19,0xf1,0x88,0x19,0x59,0xca,0xb8,0x1f,0x66,0x46, +0x2d,0x66,0x3c,0x26,0x32,0x9e,0x26,0x8c,0xe7,0x63,0x66,0xf4, +0x21,0x66,0x8c,0x0d,0x33,0xa6,0x86,0xf1,0x3a,0xc9,0x8c,0xdd, +0xcc,0x78,0xbb,0x33,0x3e,0xfa,0x8c,0xcf,0x25,0xc6,0x37,0x8a, +0xf1,0xeb,0xcc,0xf8,0x7d,0x65,0xfc,0x33,0x98,0x80,0xc5,0xcc, +0xb8,0x31,0xcc,0xf8,0x71,0x4c,0xa0,0x8a,0x99,0xa0,0x61,0x26, +0xbc,0x66,0x82,0x8e,0x33,0xc1,0x07,0x99,0x89,0xa7,0x99,0x49, +0x87,0x98,0x90,0x2d,0x4c,0xe8,0x0c,0x66,0x72,0x10,0x13,0x36, +0x82,0x09,0xd7,0x67,0xc2,0xbf,0x30,0x53,0x27,0x32,0x11,0x5a, +0x26,0x52,0x9f,0x89,0xfc,0xc3,0x4c,0x67,0x99,0x28,0x33,0x26, +0xea,0x03,0x13,0xfd,0x8a,0x99,0x51,0xc5,0xcc,0xfc,0xce,0xcc, +0xb6,0x65,0xe6,0x58,0x33,0x73,0xdb,0x31,0xf3,0x04,0x66,0x7e, +0x67,0x66,0xc1,0x18,0x66,0xa1,0x15,0xb3,0x68,0x3c,0xb3,0xd8, +0x89,0x89,0x99,0xc9,0x2c,0x89,0x63,0x62,0x27,0x33,0x4b,0xcf, +0x31,0x71,0x2d,0x99,0xe5,0xfd,0x99,0x15,0xde,0xcc,0x4a,0x67, +0x26,0x7e,0x20,0xb3,0x6a,0x39,0xb3,0xda,0x9b,0x49,0x58,0xcb, +0xac,0x59,0xca,0xac,0xbd,0xc4,0xac,0xbb,0xc3,0xac,0xbf,0xce, +0x24,0x7a,0x33,0x1b,0x13,0x99,0x4d,0x5f,0x99,0x2d,0x17,0x98, +0x6d,0x87,0x98,0x1d,0x2d,0x99,0x9d,0xa9,0x4c,0xd2,0x5b,0x66, +0x37,0x62,0x92,0xcf,0x32,0x7b,0x06,0x32,0x7b,0x69,0x66,0xef, +0x45,0x26,0x65,0x0b,0xb3,0xcf,0x87,0xd9,0x6f,0xcf,0xec,0xff, +0xc6,0xa4,0xa6,0x31,0x69,0x3e,0xcc,0x01,0x6f,0xe6,0x60,0x00, +0x73,0x28,0x8a,0x39,0x3c,0x86,0x39,0x32,0x96,0x39,0xda,0x8b, +0x39,0xd6,0x8d,0x39,0x6e,0xcf,0xa4,0x1b,0x33,0x19,0x2e,0xcc, +0x09,0x47,0x26,0x73,0x04,0x73,0xd2,0x8c,0x39,0xb5,0x9f,0x39, +0xbd,0x93,0x39,0x93,0xc7,0x9c,0x1b,0xc0,0x9c,0x3f,0xcc,0x5c, +0x88,0x62,0x2e,0xda,0x31,0x97,0xf4,0x99,0xcb,0x6a,0xe6,0x4a, +0x7b,0xe6,0xaa,0xee,0xf3,0x83,0xb9,0xde,0x9a,0xc9,0x22,0x4c, +0x96,0xc4,0xdc,0x68,0x62,0x6e,0x16,0x30,0xb7,0xb2,0x99,0xdb, +0x7f,0x98,0x6c,0x03,0xe6,0x2e,0x61,0xee,0x8d,0x63,0xee,0x9f, +0x60,0x72,0xf2,0x99,0x07,0xcd,0x98,0x3c,0x8e,0x79,0xd8,0x8f, +0x79,0x14,0xcb,0xe4,0x9f,0x65,0x1e,0x2b,0x99,0xc7,0x35,0xcc, +0x53,0x6f,0xa6,0x30,0x82,0x79,0xb6,0x97,0x29,0xea,0xc1,0x14, +0x8f,0x63,0x4a,0x76,0x31,0xa5,0x8b,0x98,0x72,0x2d,0xf3,0xe2, +0x1c,0x53,0x71,0x87,0xa9,0xfc,0xc9,0x54,0xb7,0x65,0x5e,0x76, +0x67,0x5e,0x0d,0x64,0x5e,0x77,0x66,0xde,0xcc,0x66,0x6a,0x66, +0x31,0x6f,0xe3,0x98,0x77,0xef,0x99,0x0f,0x21,0x4c,0xed,0x3a, +0xe6,0xe3,0x4d,0xa6,0xce,0x9b,0xf9,0xbc,0x99,0xf9,0x72,0x86, +0xa9,0xbf,0xca,0x7c,0x2d,0x65,0xbe,0x7b,0x31,0x3f,0xd2,0x18, +0xa9,0x9e,0x69,0x34,0x62,0x7e,0x1e,0x65,0x9a,0xba,0x32,0xbf, +0x96,0x30,0xbf,0x6f,0x31,0x7f,0xbe,0xb2,0xcd,0x3b,0xb3,0x2d, +0x42,0xd8,0x96,0xf9,0xac,0xc2,0x85,0x55,0xae,0x63,0x55,0x37, +0xd9,0x56,0xdf,0xd9,0x36,0xa3,0xd9,0xb6,0x71,0x6c,0xbb,0x97, +0x2c,0xed,0xcf,0x32,0x8b,0x59,0xf6,0x2e,0xcb,0x7d,0x62,0xc5, +0x21,0x2c,0x0a,0x63,0x49,0x4b,0x16,0x7a,0xb1,0xea,0xf9,0xac, +0xfe,0x1b,0xb6,0x3d,0xcd,0x76,0xf0,0x60,0x35,0xcf,0xd9,0x8e, +0x3d,0xd9,0x4e,0x69,0x6c,0x17,0x73,0xd6,0xb0,0x88,0x35,0x7a, +0xc0,0x9a,0x6c,0x63,0xbb,0xab,0x58,0xd3,0x32,0xb6,0xe7,0x58, +0xb6,0xe7,0x19,0xb6,0x57,0x28,0x6b,0xb6,0x8a,0x35,0x9f,0xc6, +0xf6,0x76,0x61,0x2d,0xec,0x58,0xcb,0x9e,0xac,0x65,0x01,0xdb, +0x67,0x00,0xdb,0xe7,0x38,0x6b,0x65,0xc8,0x5a,0xc5,0xb2,0xd6, +0xc0,0x5a,0x7f,0x60,0xfb,0xba,0xb1,0x7d,0x7f,0xb3,0xfd,0x92, +0xd8,0xfe,0x7b,0x58,0x1b,0x89,0x1d,0xf0,0x9c,0xb5,0xfd,0xc9, +0x0e,0x7c,0xc3,0xda,0xcd,0x60,0x07,0x89,0xec,0xa0,0x2a,0xd6, +0xfe,0x25,0xeb,0x70,0x91,0x75,0x5c,0xca,0x0e,0x3e,0xca,0x3a, +0xfd,0x61,0x5d,0xb4,0xec,0x90,0xd6,0xec,0x90,0x8f,0xec,0xd0, +0x3f,0xac,0xeb,0x43,0x76,0xd8,0x39,0x76,0xf8,0x0a,0xd6,0x2d, +0x9c,0x1d,0xe1,0xc6,0x8e,0xf4,0x64,0xdd,0x2d,0xd8,0x51,0x6e, +0xac,0x87,0x2b,0xeb,0x79,0x85,0x1d,0x5d,0xc6,0x7a,0xcd,0x67, +0xc7,0x76,0x62,0xbd,0x69,0xd6,0x47,0xc5,0xfa,0xac,0x66,0x7d, +0xc7,0xb0,0x7e,0x34,0xeb,0x77,0x86,0xf5,0xbf,0xc2,0x06,0x54, +0xb3,0xe3,0x36,0xb1,0xe3,0x1a,0xd8,0xf1,0x07,0xd9,0xc0,0x21, +0x6c,0x60,0x19,0x3b,0x21,0x95,0x0d,0x3a,0xc4,0x06,0xaf,0x62, +0x27,0xf6,0x64,0x27,0xcd,0x65,0x43,0x8e,0xb1,0xa1,0xd7,0xd9, +0x30,0x05,0x1b,0xf6,0x8d,0x0d,0xff,0xc4,0x4e,0xd5,0x63,0xa7, +0xfa,0xb0,0x11,0x2e,0x6c,0xc4,0x77,0x36,0x32,0x81,0x8d,0xac, +0x65,0xa7,0xb9,0xb0,0xd3,0x32,0xd9,0xe9,0x1e,0xec,0xf4,0xa3, +0x6c,0x54,0x08,0x1b,0xf5,0x95,0x8d,0x5e,0xce,0xce,0x68,0xc5, +0xce,0x78,0xcc,0xce,0x74,0x60,0x67,0xbe,0x60,0x67,0xcd,0x66, +0x67,0xf7,0x63,0xe7,0xb4,0x67,0xe7,0x94,0xb0,0x73,0xd3,0xd8, +0x79,0x33,0xd8,0xf9,0xa6,0xec,0xfc,0x4f,0xec,0x82,0x2f,0xec, +0xc2,0x43,0xec,0xa2,0xe9,0xec,0x62,0x1b,0x76,0x71,0x15,0x1b, +0x93,0xce,0x2e,0x89,0x64,0x63,0x23,0xd9,0xa5,0xee,0xec,0x52, +0x99,0x8d,0xe3,0xd9,0xb8,0x7c,0x76,0xf9,0x56,0x76,0xc5,0x18, +0x76,0x65,0x1f,0x36,0x9e,0xb0,0xab,0x0c,0xd8,0xd5,0x4e,0x6c, +0x82,0x0d,0x9b,0x50,0xc5,0xae,0x29,0x66,0xd7,0xee,0x67,0xd7, +0xa5,0xb0,0xeb,0xb7,0xb1,0x1b,0x92,0xd8,0xc4,0xad,0xec,0xc6, +0x95,0xec,0xa6,0xa3,0xec,0xe6,0xcb,0xec,0x96,0x37,0xec,0xd6, +0xa3,0xec,0xb6,0x0d,0xec,0xf6,0x34,0x76,0x47,0x05,0xbb,0xf3, +0x18,0x9b,0xf4,0x98,0xdd,0xbd,0x9c,0x4d,0xde,0xcd,0xee,0x39, +0xcf,0xee,0x6d,0x64,0xf7,0x7d,0x67,0xf7,0xbf,0x64,0x53,0xd7, +0xb3,0x69,0x6f,0xd9,0x03,0xfe,0xec,0x81,0xc7,0xec,0xc1,0x54, +0xf6,0x90,0x0f,0x7b,0x48,0x66,0x0f,0x67,0xb1,0x47,0xba,0xb3, +0x47,0x6a,0xd9,0xa3,0x37,0xd8,0x63,0xaf,0xd9,0xe3,0xaf,0xd8, +0xf4,0xf3,0x6c,0xc6,0x36,0xf6,0xc4,0x4d,0x36,0xf3,0x0d,0x7b, +0xf2,0x37,0x7b,0xea,0x3b,0x7b,0x86,0x61,0xcf,0x9a,0xb1,0xe7, +0xca,0xd8,0x0b,0x96,0xec,0xc5,0x64,0xf6,0x32,0xc3,0x5e,0x59, +0xc4,0x5e,0xf5,0x61,0xaf,0xf9,0xb1,0xd7,0x97,0xb2,0xd7,0xcb, +0xd9,0x2c,0x4f,0x36,0x2b,0x8f,0xbd,0xd1,0x81,0xbd,0xb1,0x96, +0xbd,0x69,0xcd,0xde,0x1a,0xc2,0xde,0x2a,0x62,0x6f,0x4f,0x67, +0x6f,0x9f,0x63,0xef,0x58,0xb3,0x77,0xce,0xb1,0xd9,0x6d,0xd8, +0xec,0x5c,0xf6,0xee,0x66,0xf6,0xde,0x42,0xf6,0x3e,0x62,0xef, +0x6f,0x62,0xef,0xff,0x64,0x73,0xb6,0xb0,0xb9,0xc6,0x6c,0xee, +0x7c,0x36,0xf7,0x03,0xfb,0xc0,0x9f,0x7d,0x50,0xc0,0xe6,0x19, +0xb1,0x79,0xe5,0xec,0xc3,0xe7,0xec,0xa3,0xf1,0xec,0xa3,0x1a, +0x36,0x3f,0x9e,0x2d,0xe8,0xc0,0x16,0x6c,0x61,0x1f,0x77,0x67, +0x1f,0x67,0xb0,0x4f,0x06,0xb1,0x4f,0xb5,0xec,0xd3,0x34,0xb6, +0x30,0x94,0x7d,0xe6,0xcf,0x3e,0xfb,0xca,0x3e,0xbf,0xc9,0x16, +0x4d,0x64,0x8b,0x3e,0xb2,0xc5,0x07,0xd8,0x92,0x60,0xb6,0xe4, +0x11,0x5b,0x1a,0xc3,0x96,0xf5,0x62,0xcb,0xf6,0xb0,0xe5,0x6b, +0xd9,0x17,0x93,0xd9,0x8a,0x76,0x6c,0xc5,0x4e,0xb6,0x72,0x32, +0x5b,0xf9,0x90,0xad,0x1a,0xc4,0x56,0xbd,0x66,0xab,0xf7,0xb2, +0x2f,0x7d,0xd8,0x57,0xe6,0xec,0xeb,0x66,0xec,0xeb,0x05,0xec, +0xeb,0xcf,0xec,0x9b,0x18,0xb6,0x66,0x1c,0x5b,0x53,0xc4,0xbe, +0x5d,0xcc,0xbe,0x1b,0xc1,0xbe,0xef,0xca,0xbe,0xbf,0xcd,0x7e, +0xf0,0x62,0x6b,0xc3,0xd8,0x8f,0x98,0xfd,0x78,0x86,0xfd,0x14, +0xc3,0xd6,0x71,0x6c,0xdd,0x25,0xf6,0x73,0x38,0xfb,0xf9,0x23, +0xfb,0x25,0x8e,0xad,0x4f,0x66,0xbf,0x2e,0x62,0xbf,0xb5,0x63, +0xbf,0xa5,0xb2,0xdf,0xad,0xd9,0xef,0x15,0xec,0x8f,0x1f,0xac, +0x54,0xcf,0x36,0x84,0xb2,0x8d,0x0b,0xd8,0x9f,0x26,0xac,0x4c, +0x58,0x79,0x33,0xdb,0x14,0xce,0xfe,0xb2,0x61,0x7f,0xb7,0x62, +0xff,0xe8,0xb1,0x7f,0x1a,0xb9,0x66,0x0f,0xb9,0xe6,0x25,0x5c, +0x8b,0x68,0xae,0x65,0x00,0xa7,0x47,0x38,0x45,0x47,0x4e,0x71, +0x8a,0x53,0x6e,0xe1,0x54,0x9e,0x5c,0xab,0x93,0x5c,0xeb,0xc3, +0x5c,0x9b,0x8d,0x5c,0xdb,0xa1,0x5c,0xdb,0x3f,0x1c,0xd5,0x86, +0xa3,0xde,0x70,0xf4,0x07,0x8e,0xc9,0xe4,0xd8,0x01,0x1c,0xfb, +0x9a,0xe3,0xfd,0x39,0xfe,0x03,0x27,0x48,0x9c,0xf8,0x84,0x43, +0x2b,0x39,0x3c,0x89,0xc3,0x7f,0x38,0xf2,0x83,0x83,0x42,0x4e, +0xbd,0x9c,0xd3,0x1f,0xcf,0x19,0x30,0x5c,0x7b,0x5f,0xae,0x43, +0x24,0xa7,0xe9,0xca,0x69,0x55,0x9c,0xf6,0x20,0xd7,0xf1,0x21, +0xd7,0xe9,0x14,0xd7,0xf9,0x0e,0xd7,0xe5,0x0e,0x67,0xb8,0x81, +0xeb,0x9a,0xc5,0x19,0x3d,0xe3,0x4c,0x7a,0x70,0xdd,0xe2,0xb9, +0xee,0x1f,0x39,0x53,0x89,0xeb,0xd9,0x9d,0xeb,0x35,0x99,0x33, +0x73,0xe1,0xcc,0x7d,0xb9,0xde,0xbd,0x39,0x0b,0x2d,0x67,0xd1, +0xc0,0xf5,0xe9,0xc4,0x59,0x8d,0xe7,0xac,0xf7,0x71,0x7d,0x35, +0x5c,0xdf,0xfd,0x5c,0xbf,0x08,0xae,0xff,0x0c,0xce,0xe6,0x18, +0x37,0x60,0x14,0x67,0xdb,0x8c,0xb3,0xad,0xe4,0x06,0x2e,0xe3, +0xec,0x4c,0x39,0xbb,0x17,0xdc,0xa0,0x68,0xce,0xbe,0x35,0x67, +0x9f,0xcc,0x39,0xf4,0xe4,0x1c,0x2e,0x71,0x8e,0xe3,0xb9,0xc1, +0x88,0x73,0xb2,0xe4,0x9c,0x39,0xce,0x79,0x0f,0xe7,0x32,0x9c, +0x1b,0x62,0xc4,0x0d,0xa9,0xe5,0x86,0x66,0x73,0xae,0x9b,0xb9, +0x61,0xb3,0xb8,0xe1,0x51,0x9c,0x5b,0x6f,0xce,0xed,0x3d,0x37, +0xe2,0x1a,0x37,0x32,0x99,0x73,0x5f,0xc2,0x8d,0x5a,0xc8,0x79, +0x4c,0xe4,0x3c,0x1d,0xb9,0xd1,0x1d,0xb8,0xd1,0x3f,0xb8,0x31, +0xc5,0x9c,0xd7,0x23,0xce,0xbb,0x23,0xe7,0x5d,0xce,0xf9,0x9c, +0xe6,0x7c,0x17,0x72,0x7e,0x16,0x9c,0xdf,0x47,0xce,0x3f,0x93, +0x0b,0x08,0xe5,0xc6,0x4d,0xe4,0xc6,0x4f,0xe1,0x02,0x07,0x71, +0x81,0x5f,0xb9,0x20,0x9a,0x0b,0x6e,0xcd,0x05,0xbf,0xe0,0x26, +0x4a,0xdc,0x24,0x99,0x0b,0x79,0xc7,0x85,0x3e,0xe2,0x26,0xff, +0xe2,0xc2,0xae,0x70,0xe1,0x57,0xb9,0x29,0x55,0x5c,0x84,0x09, +0x17,0xb9,0x80,0x9b,0x76,0x9a,0x9b,0xbe,0x91,0x8b,0x8a,0xe2, +0xa2,0xb7,0x70,0x33,0xce,0x73,0x33,0x57,0x73,0xb3,0x16,0x72, +0xb3,0x87,0x73,0x73,0xc2,0xb9,0xb9,0x81,0xdc,0xbc,0xe9,0xdc, +0xfc,0x55,0xdc,0x82,0x77,0xdc,0x22,0x37,0x6e,0xf1,0x2c,0x2e, +0x26,0x80,0x5b,0xe2,0xcc,0xc5,0xba,0x72,0x4b,0x5d,0xb8,0x65, +0x3b,0xb8,0xb8,0xab,0xdc,0xf2,0x64,0x6e,0x65,0x4b,0x2e,0x3e, +0x9e,0x5b,0x95,0xc7,0x25,0x8c,0xe4,0xd6,0xc4,0x70,0x6b,0xf7, +0x70,0xeb,0x23,0xb8,0x0d,0xf6,0x5c,0x62,0x6f,0x6e,0xa3,0x82, +0xdb,0x78,0x9a,0xdb,0x94,0xc8,0x6d,0x5e,0xcf,0x6d,0xb1,0xe3, +0xb6,0x94,0x70,0x5b,0x0f,0x72,0xdb,0xa6,0x71,0xdb,0xbe,0x71, +0xdb,0x13,0xb9,0x1d,0xae,0xdc,0xce,0xe6,0xdc,0xce,0x7b,0x5c, +0x52,0x2a,0xb7,0xab,0x37,0xb7,0xeb,0x0f,0xb7,0x7b,0x1b,0x97, +0xec,0xc4,0xed,0xe9,0xc4,0xed,0x6d,0xcb,0xa5,0x74,0xe1,0x52, +0xae,0x73,0xfb,0xf6,0x70,0xfb,0x07,0x73,0xfb,0x7f,0x73,0xa9, +0xaf,0xb8,0xb4,0x5a,0xee,0xc0,0x3d,0xee,0xe0,0x2a,0xee,0xd0, +0x2c,0xee,0xf0,0x10,0xee,0x88,0x05,0x77,0xb4,0x05,0x77,0xb4, +0x8a,0x3b,0x76,0x8f,0x3b,0x5e,0xc0,0xa5,0x27,0x71,0x19,0x33, +0xb8,0x13,0x83,0xb8,0x4c,0x1b,0xee,0x24,0xe2,0x4e,0x75,0xe6, +0x4e,0xbb,0x70,0x67,0x56,0x72,0x67,0x6f,0x70,0xe7,0xf6,0x70, +0xe7,0xbf,0x70,0x17,0xea,0xb9,0x4b,0x84,0xbb,0xf4,0x86,0xbb, +0x7c,0x8f,0xbb,0x92,0xc1,0x5d,0x3d,0xc3,0x5d,0xdb,0xcc,0x5d, +0x9f,0xc7,0x65,0xcd,0xe3,0x6e,0xdc,0xe1,0x6e,0x35,0xe7,0x6e, +0x77,0xe7,0xee,0xf8,0x71,0x77,0x52,0xb8,0xec,0x56,0xdc,0xdd, +0xce,0xdc,0xbd,0x51,0xdc,0xfd,0x16,0xdc,0xfd,0x44,0x2e,0x67, +0x13,0x97,0xbb,0x90,0x7b,0xb0,0x8b,0xcb,0x9b,0xcb,0x3d,0x9c, +0xc8,0x3d,0xb2,0xe3,0xf2,0x67,0x72,0x05,0xa3,0xb9,0xc7,0xc1, +0xdc,0x93,0x69,0xdc,0xd3,0x75,0x5c,0xe1,0x1a,0xee,0x59,0x0a, +0xf7,0x7c,0x15,0x57,0x74,0x97,0x2b,0xe1,0xb8,0x92,0xf9,0x5c, +0x69,0x17,0xae,0x34,0x96,0x2b,0x2d,0xe4,0xca,0x56,0x72,0xe5, +0x2c,0x57,0x9e,0xc6,0xbd,0x00,0xee,0xc5,0x6a,0xee,0x45,0x23, +0x57,0xb1,0x87,0xab,0x0c,0xe0,0x2a,0xb3,0xb8,0xaa,0x55,0x5c, +0x75,0x00,0x57,0xfd,0x8d,0x7b,0x79,0x82,0x7b,0x15,0xc8,0xbd, +0xb6,0xe5,0x5e,0xd7,0x71,0x6f,0x7e,0x70,0x35,0xd5,0xdc,0xdb, +0x4c,0xee,0xdd,0x50,0xee,0xbd,0x92,0x7b,0x7f,0x9e,0xfb,0xb0, +0x8c,0xab,0x6d,0xcf,0xd5,0xfe,0xe2,0x3e,0x5e,0xe1,0x3e,0x8d, +0xe6,0xea,0xb4,0x5c,0xdd,0x2d,0xee,0xf3,0x5e,0xee,0x8b,0x27, +0x57,0xdf,0x96,0xab,0xaf,0xe4,0xbe,0x4e,0xe1,0xbe,0x09,0xdc, +0xf7,0x16,0xdc,0xf7,0x2b,0xdc,0x8f,0x60,0x4e,0x52,0x72,0x52, +0x3e,0xd7,0x90,0xce,0x35,0x6e,0xe5,0x7e,0x26,0x71,0xf2,0x16, +0xae,0x29,0x8a,0xfb,0xe5,0xcd,0xfd,0xaa,0xe3,0x7e,0x17,0x70, +0x7f,0x9e,0xf0,0xcd,0xd6,0xf3,0xcd,0xc7,0xf2,0x2d,0xda,0xf0, +0x2d,0x72,0x79,0x3d,0x43,0x5e,0xf1,0x9a,0x57,0xd6,0xf3,0x2a, +0x89,0x6f,0xad,0xe1,0xdb,0x60,0xbe,0xcd,0x1d,0xbe,0xed,0x23, +0xbe,0xdd,0x66,0x9e,0x9a,0xc0,0xd3,0x1d,0x78,0x86,0xe1,0x99, +0xcf,0x3c,0x5b,0xcd,0xf3,0x2d,0x78,0x81,0xe7,0xc5,0x34,0x1e, +0x5d,0xe6,0x49,0x57,0x1e,0x38,0x5e,0x3d,0x81,0xd7,0x57,0xf3, +0xfa,0x35,0x7c,0xfb,0x60,0xbe,0xfd,0x23,0xbe,0x43,0x2e,0xaf, +0xd9,0xce,0x6b,0xdd,0x78,0x6d,0x23,0xdf,0x69,0x14,0xdf,0x79, +0x05,0xdf,0xc5,0x85,0x37,0xb4,0xe4,0xbb,0xda,0xf2,0x46,0x53, +0x79,0xe3,0x18,0xde,0x64,0x2a,0xdf,0x6d,0x32,0xdf,0x7d,0x09, +0x6f,0xfa,0x85,0xef,0xf1,0x8b,0xef,0x45,0xf8,0x5e,0x75,0xbc, +0xd9,0x6e,0xde,0xdc,0x8d,0xef,0xad,0xe4,0x7b,0xe7,0xf0,0x16, +0xb3,0x79,0x4b,0x7d,0xde,0xf2,0x0d,0xdf,0x67,0x11,0x6f,0xd5, +0x9a,0xb7,0x0e,0xe4,0xad,0xbf,0xf3,0xfd,0x5a,0xf3,0xfd,0xde, +0xf2,0x36,0xad,0x79,0x1b,0x89,0xb7,0x15,0xf9,0x81,0xbd,0x79, +0xbb,0xa1,0xfc,0xa0,0x99,0xbc,0xfd,0x6a,0xde,0x21,0x83,0x77, +0xbc,0xc1,0x0f,0xfe,0xcd,0x3b,0xf7,0xe3,0x9d,0x8b,0x79,0x97, +0x7c,0x7e,0x48,0x39,0x3f,0x34,0x83,0x77,0x3d,0xc6,0x0f,0xeb, +0xc9,0x0f,0x3b,0xc3,0x0f,0x4f,0xe0,0xdd,0x5c,0x79,0xb7,0x37, +0xfc,0x08,0x37,0x7e,0xc4,0x17,0x7e,0xe4,0x7e,0xde,0xdd,0x96, +0x77,0xcf,0xe5,0x47,0x25,0xf0,0x1e,0x7e,0xbc,0xa7,0x05,0x3f, +0x9a,0xe1,0x47,0x3f,0xe3,0xc7,0xc4,0xf3,0x5e,0x2e,0xfc,0xd8, +0x96,0xfc,0xd8,0xa3,0xbc,0x77,0x10,0xef,0xa3,0xe4,0x7d,0x6e, +0xf3,0xbe,0x11,0xbc,0xdf,0x29,0xde,0x3f,0x96,0x0f,0x98,0xce, +0x8f,0x33,0xe7,0xc7,0x5b,0xf3,0x81,0xe6,0xfc,0x84,0x99,0x7c, +0x90,0x07,0x1f,0x0c,0x7c,0xf0,0x27,0x7e,0x62,0x0e,0x3f,0x69, +0x07,0x1f,0x72,0x9f,0x0f,0xfd,0xc8,0x4f,0x2e,0xe4,0xc3,0x56, +0xf0,0xe1,0x91,0xfc,0x14,0x73,0x7e,0xea,0x68,0x3e,0xc2,0x93, +0x8f,0xf4,0xe1,0xa7,0x75,0xe4,0xa7,0xb7,0xe5,0xa3,0x80,0x8f, +0x6a,0xe0,0x67,0x58,0xf1,0x33,0x09,0x3f,0x4b,0xcb,0xcf,0x8e, +0xe0,0xe7,0x84,0xf2,0x73,0x27,0xf1,0xf3,0x16,0xf2,0xf3,0x8f, +0xf3,0x0b,0x66,0xf1,0x0b,0x87,0xf3,0x8b,0x46,0xf3,0x8b,0x27, +0xf2,0x31,0xc1,0xfc,0x92,0x75,0xfc,0xd2,0x76,0xfc,0xd2,0x8d, +0xfc,0xb2,0x21,0xfc,0xb2,0x26,0x3e,0x2e,0x9f,0x5f,0x1e,0xc8, +0xaf,0xe8,0xc1,0xaf,0xf8,0xc1,0xaf,0x3c,0xcb,0xc7,0x6f,0xe4, +0x57,0x45,0xf0,0xab,0x2d,0xf9,0x84,0x0e,0xfc,0x1a,0x81,0x5f, +0xdb,0x9a,0x5f,0x37,0x87,0x5f,0xef,0xcd,0xaf,0xff,0xc6,0x6f, +0xa8,0xe6,0x37,0x36,0xe7,0x37,0x5e,0xe0,0x37,0x9d,0xe1,0x37, +0xa7,0xf0,0x5b,0xd2,0xf8,0xad,0x7b,0xf8,0x6d,0x5e,0xfc,0xf6, +0x20,0x7e,0xc7,0x62,0x7e,0x67,0x3c,0x9f,0xf4,0x9a,0xdf,0x75, +0x83,0x4f,0x0e,0xe4,0xf7,0xec,0xe2,0xf7,0xde,0xe5,0x53,0x9c, +0xf9,0x94,0x77,0xfc,0xbe,0x07,0x7c,0x6a,0x1f,0x3e,0xcd,0x89, +0x4f,0x3b,0xce,0x1f,0xb0,0xe1,0x0f,0xe4,0xf3,0x07,0x97,0xf3, +0x87,0x28,0xfe,0x50,0x39,0x7f,0x24,0x89,0x3f,0x6a,0xc2,0x1f, +0x2d,0xe4,0x8f,0xa5,0xf2,0xc7,0xc7,0xf1,0xe9,0x6e,0x7c,0x86, +0x29,0x7f,0x62,0x2a,0x9f,0x69,0xc4,0x67,0xde,0xe0,0x4f,0xbe, +0xe5,0x4f,0x9d,0xe5,0x4f,0x2f,0xe3,0xcf,0xec,0xe5,0xcf,0x86, +0xf1,0xe7,0x0c,0xf9,0x73,0xaf,0xf9,0xf3,0x9f,0xf9,0x0b,0xf9, +0xfc,0xc5,0x58,0xfe,0xd2,0x34,0xfe,0xb2,0x39,0x7f,0xf9,0x03, +0x7f,0x95,0xe7,0xaf,0x56,0xf3,0xd7,0xf2,0xf8,0xac,0xd6,0xfc, +0x0d,0x2b,0xfe,0x66,0x24,0x7f,0x6b,0x0a,0x7f,0x7b,0x21,0x7f, +0x67,0x0a,0x9f,0x9d,0xcd,0xdf,0xeb,0xc6,0xdf,0x37,0xe2,0x73, +0xc2,0xf9,0xdc,0x5d,0xfc,0x83,0x44,0xfe,0x21,0xcf,0x3f,0xcc, +0xe0,0x1f,0x69,0xf9,0x47,0xc7,0xf8,0x7c,0x47,0x3e,0xff,0x25, +0x5f,0xb0,0x81,0x7f,0xcc,0xf3,0x8f,0x3f,0xf3,0x4f,0xf6,0xf2, +0x4f,0x1f,0xf0,0x85,0xfe,0x7c,0xe1,0x6f,0xfe,0x79,0x67,0xfe, +0xf9,0x09,0xbe,0x68,0x06,0x5f,0xec,0xc7,0x17,0xff,0xe6,0x4b, +0x0a,0xf8,0xd2,0x83,0x7c,0xd9,0x69,0xbe,0x3c,0x9a,0x7f,0xd1, +0x97,0xaf,0xb0,0xe2,0x2b,0x8d,0xf9,0xaa,0x76,0x7c,0x75,0x18, +0xff,0x32,0x9e,0x7f,0xf5,0x88,0x7f,0xe3,0xc8,0xd7,0xf4,0xe7, +0xdf,0xc6,0xf1,0xef,0x6e,0xf0,0x1f,0xba,0xf3,0x1f,0x1a,0xf9, +0x8f,0xcd,0xf9,0x4f,0x84,0xff,0x54,0xc7,0xd7,0x65,0xf0,0x9f, +0xc7,0xf3,0x5f,0x6c,0xf8,0x7a,0x2f,0xfe,0xab,0x13,0xff,0xad, +0x1f,0xff,0xdd,0x82,0xff,0xde,0xc8,0xff,0xa8,0xe2,0xa5,0x53, +0x7c,0x43,0x06,0xdf,0xb8,0x87,0xff,0x79,0x96,0x97,0x67,0xf2, +0x4d,0x46,0xfc,0x2f,0x53,0xfe,0x77,0x27,0xfe,0xf7,0x6f,0xa1, +0x99,0x81,0xd0,0xac,0x42,0x68,0xfe,0x52,0x68,0x91,0x2e,0xb4, +0xdc,0x24,0xe8,0xc5,0x0b,0x8a,0x50,0x41,0x69,0x23,0xa8,0x4c, +0x85,0x56,0x93,0x85,0xd6,0x7b,0x85,0x36,0x49,0x42,0xdb,0xe9, +0x42,0xbb,0xbe,0x02,0xe5,0x27,0xd0,0xce,0x02,0x23,0x08,0xac, +0x8d,0xc0,0x5d,0x13,0xf8,0x72,0x41,0x5c,0x24,0xa0,0x38,0x01, +0xaf,0x10,0x48,0xa2,0x00,0xbb,0x04,0xf5,0x42,0x41,0xff,0x8c, +0x60,0xf0,0x47,0xe8,0xd0,0x5c,0xd0,0x18,0x09,0xda,0xd6,0x42, +0x47,0x63,0xa1,0xd3,0x20,0xa1,0xf3,0x3a,0xa1,0xcb,0x75,0xc1, +0xf0,0xb9,0xd0,0xf5,0x8b,0x60,0xf4,0x51,0x30,0x71,0x12,0xba, +0x6d,0x15,0xba,0x1f,0x14,0x7a,0xf0,0x42,0xcf,0x61,0x42,0xaf, +0x5d,0x82,0xd9,0x1d,0xc1,0xfc,0x8a,0x60,0xa1,0x2f,0x58,0xf6, +0x17,0xfa,0x2c,0x12,0xac,0x0a,0x84,0xbe,0x4a,0xa1,0x9f,0xb1, +0xd0,0x7f,0xb9,0x60,0xf3,0x56,0x18,0xd0,0x24,0x0c,0xbc,0x21, +0xd8,0xdd,0x12,0x06,0xbd,0x14,0x1c,0xd4,0x82,0xe3,0x7b,0xc1, +0x69,0xae,0xe0,0x32,0x45,0x18,0x92,0x2d,0x0c,0x5d,0x27,0xb8, +0xde,0x16,0x86,0x7d,0x17,0xdc,0xc2,0x84,0x11,0x3f,0x05,0xf7, +0x60,0xc1,0x83,0x12,0x46,0xb7,0x13,0xc6,0xc4,0x09,0x63,0x8d, +0x84,0xb1,0xba,0x6f,0x59,0xf0,0x0e,0x11,0xbc,0xff,0x08,0x3e, +0x87,0x05,0x5f,0x73,0xc1,0xf7,0x94,0xe0,0x67,0x2b,0xf8,0xdd, +0x16,0xfc,0xc3,0x04,0xff,0x7a,0x21,0xa0,0x5c,0x18,0x97,0x24, +0x8c,0x4f,0x14,0x02,0x97,0x08,0x13,0x86,0x08,0x41,0x6a,0x21, +0xa8,0x44,0x08,0x3e,0x29,0x4c,0x8c,0x17,0x26,0x25,0x0a,0x21, +0xc1,0x42,0xa8,0xbf,0x30,0xf9,0x84,0x10,0x16,0x26,0x84,0xcf, +0x14,0xa6,0x04,0x08,0x53,0x1e,0x08,0x53,0x27,0x09,0x53,0x3f, +0x0b,0x11,0xc3,0x85,0x48,0x46,0x88,0x5c,0x23,0x4c,0xb3,0x10, +0xa6,0x3d,0x14,0xa6,0xaf,0x16,0xa2,0x16,0x09,0xd1,0xc6,0x42, +0xf4,0x4f,0x61,0xc6,0x56,0x61,0xe6,0x4c,0x61,0x56,0x2f,0x61, +0x56,0x83,0x30,0x7b,0xad,0x30,0x67,0x92,0x30,0xb7,0xad,0x30, +0x4f,0x29,0xcc,0x67,0x85,0x05,0x73,0x84,0x85,0x9b,0x84,0x45, +0x05,0x42,0x8c,0x93,0xb0,0x64,0x80,0xb0,0xe4,0xb5,0xb0,0x94, +0x17,0x96,0xae,0x11,0x96,0x8d,0x10,0x96,0xd5,0x0a,0x71,0xf7, +0x84,0xe5,0x97,0x84,0x15,0x17,0x85,0x95,0xd5,0x42,0x7c,0xa2, +0xb0,0x6a,0x92,0xb0,0xda,0x58,0x58,0x5d,0x2a,0x24,0x5c,0x16, +0xd6,0xcc,0x11,0xd6,0x76,0x15,0xd6,0x69,0x85,0x75,0xb9,0xc2, +0xfa,0xa9,0xc2,0x06,0x0b,0x61,0x43,0x9d,0x90,0xf8,0x59,0xd8, +0xf8,0x53,0xd8,0xd4,0x24,0x6c,0x7e,0x26,0x6c,0x55,0x09,0xdb, +0x1c,0x84,0xed,0x53,0x85,0x1d,0x6f,0x84,0x9d,0xb5,0xc2,0x2e, +0x03,0x61,0xf7,0x1d,0x21,0xf9,0xa2,0xb0,0x27,0x48,0xd8,0xdb, +0x5f,0xd8,0xfb,0x43,0x48,0xf9,0x2d,0xec,0x3b,0x24,0xec,0x0f, +0x15,0x52,0x47,0x0a,0xa9,0xbf,0x84,0xb4,0x5b,0xc2,0x01,0x57, +0xe1,0xa0,0xa9,0x70,0xb0,0x58,0x38,0xb4,0x45,0x38,0xdc,0x4d, +0x38,0xfc,0x4d,0x38,0xb2,0x59,0x38,0x1a,0x29,0x1c,0x8b,0x10, +0x8e,0x2f,0x11,0xd2,0x97,0x08,0x19,0x83,0x85,0x13,0x26,0x42, +0xa6,0x8b,0x70,0x32,0x53,0x38,0x55,0x2f,0x9c,0x8e,0x10,0xce, +0x84,0x0a,0x67,0x8e,0x08,0x67,0x9f,0x09,0xe7,0x9e,0x08,0xe7, +0x43,0x85,0x0b,0x26,0xc2,0x05,0x59,0xb8,0x78,0x46,0xb8,0xb4, +0x4b,0xb8,0x9c,0x2c,0x5c,0xb1,0x15,0xae,0x54,0x0a,0x57,0x33, +0x85,0x6b,0x27,0x84,0xeb,0xf1,0x42,0xd6,0x7e,0xe1,0xc6,0x01, +0xe1,0xe6,0x32,0xe1,0x76,0x0f,0xe1,0xce,0x0c,0x21,0x3b,0x4f, +0xb8,0xfb,0x56,0xb8,0xdf,0x5d,0xc8,0x69,0x27,0xe4,0x6a,0x84, +0x07,0xa6,0x42,0xde,0x40,0xe1,0xe1,0x12,0xe1,0xd1,0x55,0xa1, +0x20,0x54,0x78,0xdc,0x4b,0x78,0xa2,0x10,0x9e,0xbc,0x17,0x9e, +0x26,0x09,0x85,0x99,0xc2,0xb3,0xf5,0xc2,0xf3,0x99,0x42,0xd1, +0x18,0xa1,0xd8,0x5a,0x28,0xd9,0x2e,0x94,0x66,0x08,0x65,0x7b, +0x84,0xf2,0x85,0xc2,0x8b,0x4a,0xa1,0x52,0x29,0x54,0x19,0x09, +0xd5,0x2d,0x84,0xea,0x52,0xe1,0xe5,0x2d,0xe1,0xd5,0x1e,0xe1, +0xf5,0x52,0xa1,0x66,0xbc,0xf0,0xd6,0x57,0x78,0x17,0x25,0x7c, +0xd0,0x17,0x3e,0xe4,0x09,0xb5,0xa5,0xc2,0xc7,0x06,0xe1,0xd3, +0x2f,0xa1,0xee,0x89,0xf0,0xb9,0x5c,0xf8,0x52,0x20,0xd4,0xbf, +0x17,0xbe,0xd6,0x09,0xdf,0x9b,0x0b,0x3f,0xfc,0x04,0x69,0xbb, +0xd0,0x70,0x4b,0x68,0x94,0x04,0x59,0x10,0xe4,0x3f,0xc2,0x2f, +0x03,0xe1,0xb7,0x8b,0xf0,0x67,0xa2,0xd8,0x6c,0xb9,0xd8,0xfc, +0x88,0xd8,0x22,0x4f,0xd4,0x6b,0x29,0x2a,0x96,0x88,0xca,0xe5, +0x62,0xab,0x40,0xb1,0xf5,0x26,0xb1,0xcd,0x7d,0xb1,0x9d,0xb3, +0x48,0xa5,0x89,0xf4,0x2b,0x91,0x6d,0x2b,0x72,0x4b,0x44,0x01, +0x89,0xe2,0x46,0x11,0x73,0x22,0x59,0x2b,0x42,0xb5,0xa8,0x5f, +0x2c,0xb6,0x9f,0x2c,0xb6,0x7f,0x25,0x76,0xb8,0x26,0x6a,0x92, +0x44,0xed,0x6c,0xb1,0xe3,0x56,0xb1,0x53,0xba,0xd8,0xb9,0x44, +0xec,0x72,0x4b,0x34,0xdc,0x29,0x76,0x75,0x14,0x8d,0xc6,0x8a, +0xc6,0x9e,0xa2,0xc9,0x64,0xb1,0xdb,0x44,0xb1,0xfb,0x34,0xd1, +0x74,0xbb,0xd8,0xa3,0x4c,0xec,0xf9,0x5b,0xec,0xf5,0x53,0x34, +0x2b,0x12,0x7b,0xf7,0x16,0x2d,0x16,0x89,0x96,0x45,0xa2,0xd5, +0x40,0xd1,0x7a,0x93,0xd8,0x2f,0x4a,0xec,0x57,0x20,0xf6,0x0f, +0x13,0x6d,0x3a,0x8b,0x36,0x9f,0xc4,0x01,0xaf,0xc4,0x81,0x5e, +0xa2,0x5d,0x3f,0xd1,0xee,0xba,0x38,0xe8,0xa2,0x68,0xff,0x59, +0x74,0x0c,0x17,0x07,0xef,0x14,0x9d,0x4a,0x45,0x97,0x60,0x71, +0xc8,0x5d,0x71,0x68,0xa9,0xe8,0xfa,0x58,0x1c,0xf6,0x54,0x74, +0xa3,0xc5,0x11,0x6d,0xc4,0x91,0xe3,0x44,0xf7,0x1d,0xe2,0xa8, +0x97,0xa2,0xc7,0x2f,0x71,0xb4,0x46,0x1c,0xb3,0x5d,0xf4,0xaa, +0x11,0xbd,0x5b,0x89,0x3e,0xb6,0xa2,0xef,0x6c,0xd1,0x2f,0x5b, +0xf4,0xff,0x2d,0x8e,0xb3,0x17,0xc7,0x87,0x88,0x81,0x7b,0xc4, +0x09,0x3f,0xc5,0x60,0x5e,0x9c,0xd8,0x24,0x86,0x8c,0x17,0x43, +0xef,0x88,0x61,0xd6,0x62,0x78,0xa4,0x38,0xe5,0xb9,0x38,0xb5, +0x56,0x8c,0x74,0x10,0xa7,0xad,0x10,0xa7,0x37,0x89,0xd1,0x5d, +0xc5,0x19,0x31,0xe2,0xcc,0xdb,0xe2,0xec,0x59,0xe2,0x9c,0xc3, +0xe2,0xdc,0x74,0x71,0xde,0x3b,0x71,0x01,0x23,0x2e,0x5c,0x25, +0x2e,0xba,0x24,0xc6,0x58,0x8b,0x4b,0xce,0x88,0xb1,0x2f,0xc4, +0x65,0x1a,0x31,0x6e,0x84,0xb8,0xfc,0x88,0xb8,0xe2,0xab,0x18, +0xbf,0x43,0x5c,0x6d,0x20,0x26,0xb4,0x12,0x13,0xd2,0xc4,0x35, +0x1b,0xc5,0xb5,0xeb,0xc4,0x75,0xab,0xc4,0xf5,0xe3,0xc5,0x0d, +0xf3,0xc5,0xc4,0x58,0x71,0x63,0x9c,0xb8,0x29,0x43,0xdc,0x62, +0x23,0x6e,0x6d,0x2f,0x6e,0x73,0x17,0xb7,0x2f,0x12,0x77,0x2c, +0x15,0x77,0x2e,0x17,0x93,0x4e,0x88,0xbb,0x4e,0x88,0xbb,0x2b, +0xc4,0xe4,0x5a,0x71,0xcf,0x4b,0x31,0x25,0x4c,0xdc,0xf7,0x41, +0x4c,0x35,0x13,0xd3,0x7a,0x88,0x07,0x62,0xc4,0x83,0xab,0xc4, +0x43,0xeb,0xc4,0xc3,0x99,0xe2,0x91,0x42,0xf1,0x18,0x16,0x8f, +0x0f,0x16,0xd3,0x0f,0x88,0x19,0x0f,0xc4,0x13,0x95,0xe2,0x49, +0x1f,0xf1,0x94,0x24,0x9e,0x39,0x21,0x9e,0xeb,0x22,0x9e,0x37, +0x13,0x2f,0xdc,0x16,0x2f,0xd1,0xe2,0x65,0x4f,0xf1,0x4a,0x94, +0x78,0x35,0x57,0xbc,0xee,0x22,0x66,0x6d,0x16,0x6f,0x0a,0xe2, +0xad,0x65,0xe2,0xed,0x6f,0x62,0xf6,0x42,0xf1,0x9e,0x9e,0x78, +0xff,0xbc,0x98,0x8b,0xc4,0xbc,0xbe,0x62,0x5e,0xbd,0xf8,0xc8, +0x57,0xcc,0xdf,0x2e,0x16,0xec,0x10,0x1f,0xcf,0x15,0x9f,0x24, +0x89,0x4f,0x4f,0x8a,0x85,0xcf,0xc5,0x67,0x3f,0xc5,0x22,0x5e, +0x2c,0x9e,0x2a,0x96,0xc4,0x8a,0xa5,0x75,0x62,0x59,0xb6,0xf8, +0xc2,0x4a,0xac,0xc8,0x17,0x2b,0x1f,0x89,0xd5,0xd6,0xe2,0xcb, +0x38,0xf1,0xd5,0x36,0xf1,0xcd,0x50,0xb1,0x26,0x4c,0x7c,0x1b, +0x22,0xbe,0xf3,0x17,0xdf,0x97,0x89,0x1f,0x5e,0x89,0x1f,0x79, +0xf1,0x93,0xbe,0x58,0x37,0x5c,0xfc,0x5c,0x25,0xd6,0x0f,0x13, +0xbf,0xde,0x16,0xbf,0xad,0x10,0xbf,0x9f,0x15,0x7f,0xbc,0x10, +0xa5,0x40,0xb1,0x21,0x55,0xfc,0xc9,0x8a,0x72,0x5b,0xb1,0x29, +0x5c,0xfc,0xd5,0x45,0xfc,0xdd,0x4c,0xfc,0x7d,0x42,0xfc,0x93, +0x86,0x9a,0x5d,0x41,0xcd,0x7f,0xa0,0x96,0x13,0x90,0x5e,0x22, +0x52,0x7c,0x44,0x2a,0x47,0xd4,0xea,0x30,0x6a,0x63,0x8d,0xda, +0xae,0x40,0xed,0xca,0x11,0xbd,0x10,0xb1,0x02,0xe2,0x56,0x20, +0x7e,0x1f,0x12,0xce,0x23,0x31,0x16,0x21,0x63,0x84,0x5b,0x22, +0xa2,0x40,0xe4,0x25,0x02,0x4f,0x04,0xfe,0x08,0x42,0x11,0x44, +0x23,0x88,0x41,0x70,0x14,0x41,0x35,0x52,0x77,0x44,0xea,0x70, +0xa4,0xde,0x80,0xd4,0x37,0x90,0xfa,0x2b,0xd2,0x37,0x47,0xfa, +0x83,0x90,0xbe,0x3b,0xd2,0x0f,0x44,0xfa,0x51,0x48,0x7f,0x09, +0xd2,0xdf,0x80,0xf4,0xf7,0x22,0xfd,0x4c,0xa4,0x9f,0x85,0xf4, +0x0b,0x90,0x7e,0x15,0xd2,0xaf,0x47,0x06,0x2d,0x90,0x81,0x80, +0x0c,0xba,0x20,0x83,0x3e,0xc8,0x60,0x08,0x32,0xf0,0x47,0x06, +0xd1,0xc8,0x60,0x15,0x32,0xd8,0x8d,0x0c,0x4e,0x23,0x83,0x5c, +0x64,0x50,0x89,0x0c,0xbe,0xa2,0xf6,0x2a,0xd4,0xbe,0x03,0x6a, +0xdf,0x07,0xb5,0x1f,0x8a,0xda,0x07,0xa2,0xf6,0x73,0x51,0xfb, +0xb5,0xa8,0x7d,0x32,0x6a,0x7f,0x12,0xb5,0xcf,0x46,0xed,0x8b, +0x50,0xfb,0xf7,0xa8,0xfd,0x1f,0xd4,0x01,0xa1,0x0e,0x26,0xa8, +0x43,0x7f,0xd4,0x61,0x04,0xea,0x10,0x8c,0x3a,0xcc,0x42,0x1d, +0x56,0xa2,0x0e,0xbb,0x50,0x87,0x93,0xa8,0xc3,0x6d,0xd4,0xa1, +0x0c,0x75,0xf8,0x86,0x34,0x14,0xd2,0x18,0x21,0xcd,0x20,0xa4, +0xf1,0x41,0x9a,0x19,0x48,0xb3,0x0e,0x69,0x8e,0x20,0xcd,0x6d, +0xa4,0xa9,0x44,0x9a,0x9f,0x48,0x2b,0x22,0x6d,0x2f,0xa4,0x75, +0x45,0xda,0x49,0x48,0x7b,0x1f,0x75,0x1c,0x86,0x3a,0xbe,0x41, +0x9d,0xdc,0x51,0xa7,0x32,0xd4,0x39,0x14,0x75,0xbe,0x8b,0xba, +0x44,0xa3,0x2e,0x32,0x32,0xdc,0x82,0xba,0xf2,0xa8,0x6b,0x26, +0x32,0x0a,0x47,0x46,0xb5,0xc8,0x78,0x0b,0x32,0xb1,0x41,0x26, +0x67,0x51,0xb7,0xa5,0xa8,0xbb,0x31,0xea,0x5e,0x8a,0xba,0xd7, +0x23,0x53,0x7d,0x64,0xea,0x85,0x4c,0xd7,0x20,0xd3,0x23,0xc8, +0xb4,0x02,0xf5,0xe8,0x8a,0x7a,0x2c,0x46,0x3d,0x6e,0xa1,0x1e, +0x12,0xea,0x19,0x8a,0x7a,0x5e,0x46,0xbd,0x22,0x91,0x99,0x1a, +0x99,0xbd,0x46,0xe6,0x16,0xc8,0xfc,0x20,0xea,0x9d,0x82,0x2c, +0x7c,0x90,0xc5,0x0b,0x64,0x39,0x1b,0x59,0x7e,0x45,0x7d,0xe2, +0x90,0xd5,0x7c,0x64,0x3d,0x0f,0xf5,0x0d,0x46,0x7d,0xdf,0xa1, +0x7e,0x61,0xa8,0xdf,0x53,0xd4,0x7f,0x26,0xea,0xdf,0x88,0x6c, +0xa2,0x91,0xcd,0x67,0x34,0x80,0x41,0x03,0xcc,0xd0,0x80,0xad, +0xc8,0x56,0x83,0x6c,0xbd,0x90,0xed,0x39,0x34,0xd0,0x0a,0x0d, +0xcc,0x44,0x76,0x2e,0xc8,0xae,0x12,0x0d,0xca,0x47,0xf6,0x2b, +0x90,0x83,0x27,0x72,0xf4,0x46,0x8e,0xb7,0xd0,0xe0,0x6b,0xc8, +0xa9,0x03,0x72,0x1a,0x82,0x9c,0xe6,0x22,0xa7,0xd5,0xc8,0x29, +0x05,0x39,0x65,0x20,0xa7,0x3b,0xc8,0xa9,0x0e,0x39,0x1b,0x20, +0xe7,0x05,0xc8,0xc5,0x19,0x0d,0xd1,0xa0,0xa1,0x17,0x91,0xeb, +0x4a,0x34,0x8c,0x45,0xc3,0xd7,0x20,0xb7,0x95,0x68,0x04,0x85, +0x46,0xbc,0x44,0x23,0x33,0x90,0xfb,0x56,0x34,0xea,0x19,0xf2, +0xa8,0x44,0x9e,0x29,0x68,0x74,0x38,0x1a,0x23,0xa0,0x31,0x7f, +0x90,0xd7,0x5d,0x34,0x76,0x0b,0xf2,0x0e,0x43,0x3e,0xab,0x91, +0xaf,0x3f,0xf2,0xf3,0x40,0xfe,0x1e,0x28,0xe0,0x34,0x1a,0x37, +0x15,0x8d,0x1f,0x8a,0xc6,0x7f,0x43,0x81,0xcb,0xd1,0x04,0x2f, +0x14,0x04,0x28,0xd8,0x18,0x05,0xdf,0x44,0x13,0x57,0xa3,0x49, +0x2d,0xd0,0xa4,0xf7,0x28,0xa4,0x06,0x4d,0x0e,0x42,0x93,0x6b, +0x51,0x58,0x09,0x0a,0xff,0x8e,0xa6,0x9a,0xa0,0x08,0x5f,0x14, +0x59,0x88,0xa6,0x3d,0x44,0xd3,0x43,0xd1,0xf4,0xc7,0x28,0x2a, +0x03,0xcd,0x88,0x45,0x33,0x57,0xa3,0x59,0x7b,0xd0,0x6c,0x2b, +0x34,0x5b,0x46,0x73,0x1e,0xa0,0xb9,0xa5,0x68,0xde,0x57,0x34, +0xbf,0x08,0x2d,0xd8,0x8d,0x16,0x7c,0x43,0x0b,0x3f,0xa2,0x45, +0xd5,0x68,0x71,0x3c,0x8a,0x19,0x86,0x96,0x2c,0x47,0xb1,0x9d, +0x51,0xec,0x77,0xb4,0xf4,0x0a,0x5a,0xb6,0x09,0xc5,0x4d,0x47, +0x71,0x0d,0x68,0x79,0x1d,0x5a,0xb1,0x0f,0xad,0x8c,0x47,0xf1, +0xe7,0xd1,0xaa,0xd9,0x68,0xb5,0x35,0x4a,0xa0,0x50,0xc2,0x25, +0xb4,0x26,0x0b,0xad,0x3d,0x86,0xd6,0xad,0x41,0xeb,0x7d,0xd0, +0x86,0xb1,0x68,0x43,0x23,0x4a,0x7c,0x85,0x36,0xa9,0xd0,0xa6, +0x14,0xb4,0x39,0x00,0x6d,0x09,0x45,0x5b,0x69,0xb4,0xcd,0x10, +0x6d,0x93,0xd0,0x0e,0x1f,0xb4,0x73,0x26,0x4a,0x8a,0x43,0xbb, +0x8e,0xa2,0xdd,0x09,0x28,0x79,0x2f,0xda,0x93,0x84,0xf6,0x86, +0xa2,0x94,0x2e,0x28,0x65,0x17,0xda,0xb7,0x15,0xed,0x4f,0x47, +0xa9,0xe9,0x28,0x2d,0x0e,0xa5,0x7d,0x42,0x07,0xc7,0xa3,0x83, +0x0d,0xe8,0xd0,0x01,0x74,0x78,0x05,0x3a,0x92,0x8a,0x8e,0xa6, +0xa3,0x63,0x29,0xe8,0xf8,0x7e,0x94,0x9e,0x85,0x32,0xaa,0xd0, +0x89,0x83,0x28,0x73,0x3f,0x3a,0xe9,0x8f,0x4e,0x29,0xd0,0xa9, +0x77,0xe8,0xf4,0x0d,0x74,0x26,0x14,0x9d,0x1d,0x84,0xce,0x39, +0xa1,0xf3,0x7d,0xd1,0x85,0x50,0x74,0x71,0x30,0xba,0x64,0x88, +0x2e,0xd5,0xa0,0xcb,0xc7,0xd0,0x95,0x0c,0x74,0xf5,0x33,0xba, +0x76,0x03,0x65,0xf9,0xa0,0x1b,0xa1,0xe8,0xa6,0x06,0xdd,0xbc, +0x84,0x6e,0x85,0xa0,0xdb,0xfd,0xd0,0x9d,0xee,0x28,0x7b,0x1f, +0xba,0x67,0x8b,0xee,0x77,0x45,0xf7,0xb3,0x50,0x4e,0x19,0xca, +0xbd,0x82,0x1e,0xa4,0xa0,0xbc,0x91,0xe8,0x61,0x02,0x7a,0x74, +0x18,0xe5,0x47,0xa1,0x82,0x18,0xf4,0xd8,0x05,0x3d,0xf1,0x44, +0x4f,0x03,0x50,0xe1,0x54,0xf4,0x4c,0x8d,0x9e,0x95,0xa3,0xe7, +0x2f,0x51,0x71,0x6b,0x54,0x12,0x83,0x4a,0x1b,0x50,0xd9,0x27, +0x54,0x9e,0x8b,0x5e,0x3c,0x40,0x95,0x7a,0xa8,0xca,0x1a,0x55, +0xc7,0xa1,0x97,0x31,0xe8,0x55,0x0c,0x7a,0x7d,0x0b,0xbd,0xd9, +0x81,0x6a,0x1e,0xa0,0xb7,0x37,0xd1,0xbb,0xd3,0xe8,0xfd,0x12, +0xf4,0x61,0x2a,0xfa,0x68,0x85,0x3e,0x36,0xa0,0x4f,0x93,0x50, +0x9d,0x16,0xd5,0x7d,0x47,0x9f,0x6f,0xa2,0x2f,0x21,0xa8,0xbe, +0x19,0xaa,0xbf,0x8b,0xbe,0x5e,0x40,0xdf,0x92,0xd0,0xf7,0x7d, +0xe8,0xc7,0x38,0x24,0xe9,0xa3,0x06,0x01,0x35,0xd4,0xa1,0xc6, +0x07,0xe8,0xe7,0x31,0x24,0xff,0x46,0xbf,0xa6,0xa2,0x5f,0xbf, +0xd1,0xef,0x43,0xe8,0xcf,0x69,0xdc,0x6c,0x06,0x6e,0x6e,0x81, +0x5b,0x28,0x71,0xcb,0xdd,0x58,0x6f,0x14,0x56,0x8c,0xc6,0xca, +0x1e,0x58,0xb5,0x11,0xb7,0xea,0x82,0x5b,0x0b,0xb8,0x8d,0x09, +0x6e,0xbb,0x0c,0xb7,0x4b,0xc5,0xd4,0x38,0x4c,0xdb,0x63,0x26, +0x19,0xb3,0xa5,0x98,0x27,0x58,0xd0,0x62,0x91,0xc3,0xe2,0x52, +0x8c,0x58,0x8c,0xd6,0x60,0x1c,0x86,0x49,0x0f,0x0c,0xb6,0x58, +0x6d,0x8b,0xf5,0x47,0x62,0x83,0x3e,0xb8,0xbd,0x09,0x6e,0xff, +0x05,0x77,0x48,0xc5,0x9a,0x19,0x58,0xdb,0x1d,0x77,0xe4,0x70, +0xc7,0x74,0xdc,0x29,0x0a,0x77,0x0e,0xc6,0x9d,0xbf,0x63,0xc3, +0x10,0xdc,0xb5,0x13,0xee,0x7a,0x07,0x1b,0xa5,0x61,0x63,0x57, +0x6c,0xa2,0xc0,0x26,0x87,0x71,0xf7,0x56,0xd8,0x34,0x00,0xf7, +0xb8,0x8e,0x7b,0x69,0xb1,0x59,0x57,0x6c,0x36,0x00,0x9b,0x4d, +0xc5,0x66,0x73,0xb0,0xd9,0x12,0x6c,0x96,0x80,0xcd,0xb6,0x62, +0xb3,0x14,0x6c,0x56,0x86,0xcd,0xea,0xb0,0x99,0x8c,0xcd,0xdd, +0xb0,0x79,0x1c,0x36,0x3f,0x89,0xcd,0x2b,0xb0,0xf9,0x1f,0xdc, +0xbb,0x13,0xee,0x6d,0x81,0x7b,0x3b,0xe3,0xde,0x4b,0x71,0xef, +0x6b,0xb8,0xf7,0x33,0xdc,0xfb,0x13,0xb6,0xe8,0x80,0x2d,0xdc, +0xb0,0x45,0x00,0xb6,0x88,0xc0,0x16,0x09,0xd8,0xe2,0x30,0xb6, +0xb8,0x83,0x2d,0x5e,0x63,0x8b,0x46,0x6c,0x79,0x06,0xf7,0x69, +0x89,0xfb,0x78,0xe2,0x3e,0x97,0xb1,0x95,0x0f,0xb6,0xda,0x80, +0xad,0x64,0x6c,0x7d,0x10,0x5b,0xff,0xc1,0x7d,0x83,0x70,0xdf, +0x9d,0xb8,0xef,0x0d,0xdc,0xb7,0x0e,0xf7,0x53,0xe1,0x7e,0xce, +0xb8,0xdf,0x5a,0xdc,0xef,0x26,0xee,0xf7,0x0e,0xf7,0xd7,0xc3, +0xfd,0xbb,0xe3,0xfe,0xf3,0x70,0xff,0x73,0xd8,0xc6,0x18,0xdb, +0x2c,0xc1,0x03,0xcc,0xf1,0x80,0x62,0x6c,0x7b,0x00,0xdb,0xd6, +0xe3,0x81,0x93,0xb1,0x5d,0x30,0x1e,0xd4,0x1e,0x0f,0x4a,0xc1, +0xf6,0x56,0xd8,0xfe,0x3c,0x76,0x70,0xc6,0x8e,0xb6,0x78,0xf0, +0x00,0xec,0x64,0x84,0x9d,0x9c,0xb1,0xd3,0x24,0xec,0x54,0x8e, +0x9d,0x3d,0xb0,0xf3,0x53,0xec,0x62,0x83,0x5d,0x4a,0xf0,0x90, +0xcd,0x78,0x68,0x30,0x1e,0x7a,0x11,0xbb,0xc6,0xe0,0x61,0x91, +0x78,0xb8,0x84,0xdd,0xde,0xe0,0x91,0xfd,0xf0,0xc8,0x06,0x3c, +0xca,0x18,0x8f,0xba,0x8b,0x3d,0xee,0x62,0xcf,0x14,0x3c,0x7a, +0x29,0x1e,0x33,0x1c,0x7b,0xf5,0xc4,0x63,0x0d,0xf0,0xd8,0xa7, +0xd8,0xa7,0x2b,0xf6,0xed,0x88,0x7d,0x03,0xb1,0x9f,0x1d,0xf6, +0x0f,0xc3,0x01,0x22,0x0e,0x58,0x88,0xc7,0xf5,0xc2,0xe3,0x9b, +0xe3,0xf1,0x6f,0x71,0xe0,0x3c,0x3c,0x61,0x38,0x0e,0xea,0x82, +0x83,0x1e,0xe1,0xe0,0xfd,0x78,0xe2,0x4a,0x3c,0x29,0x01,0x87, +0x6c,0xc1,0xa1,0xb3,0xf1,0xe4,0x71,0x38,0x2c,0x0e,0x87,0x67, +0xe0,0x29,0x95,0x38,0x22,0x02,0x47,0x2c,0xc3,0x11,0xeb,0x71, +0x44,0x2a,0x8e,0x38,0x8d,0x23,0x1e,0xe2,0x88,0x77,0x38,0x12, +0x70,0xa4,0x0b,0x8e,0x9c,0x8d,0x23,0xd3,0x70,0xe4,0x63,0x3c, +0x6d,0x07,0x9e,0xf6,0x13,0x4f,0xdf,0x80,0xa7,0x9f,0xc1,0x51, +0x11,0x38,0x9a,0xc1,0xd1,0xd5,0x78,0xc6,0x22,0x3c,0x93,0xe0, +0x99,0x73,0xf0,0xcc,0x3f,0x78,0xd6,0x16,0x3c,0x5b,0x8d,0x67, +0x6f,0xc1,0x73,0x7a,0xe0,0x39,0xc7,0xf0,0x5c,0x0b,0x3c,0xf7, +0x36,0x9e,0xa7,0x87,0xe7,0xf5,0xc5,0xf3,0xae,0xe1,0xf9,0xc1, +0x78,0x01,0x8d,0x17,0xfc,0xc2,0x0b,0xef,0xe3,0x45,0x2f,0xf0, +0xe2,0x51,0x78,0x71,0x05,0x8e,0x99,0x84,0x63,0xde,0xe1,0x25, +0xbb,0x71,0xec,0x2a,0xbc,0xd4,0x11,0x2f,0x7d,0x80,0x97,0x9d, +0xc7,0x71,0x63,0x70,0xdc,0x5b,0xbc,0xdc,0x07,0xaf,0xf4,0xc4, +0x2b,0x57,0xe3,0xf8,0x54,0xbc,0x4a,0x8d,0x57,0x47,0xe2,0xd5, +0x3f,0x70,0xc2,0x7c,0x9c,0x50,0x8c,0xd7,0x88,0x78,0x4d,0x24, +0x5e,0xf3,0x1a,0xaf,0x35,0xc5,0x6b,0x13,0xf1,0xda,0x5f,0x78, +0x9d,0x39,0x5e,0x77,0x11,0xaf,0x37,0xc4,0xeb,0x37,0xe0,0x0d, +0x04,0x6f,0xb8,0x84,0x13,0x4d,0x71,0xe2,0x4d,0xbc,0xd1,0x0b, +0x6f,0xbc,0x8e,0x37,0x4d,0xc7,0x9b,0x5b,0xe0,0xcd,0xfb,0xf1, +0x16,0x53,0xbc,0xa5,0x00,0x6f,0x4d,0xc4,0xdb,0x3a,0xe2,0x6d, +0x05,0x78,0xfb,0x62,0xbc,0xa3,0x19,0xde,0x91,0x87,0x77,0xce, +0xc3,0x49,0x16,0x38,0x29,0x1f,0x27,0x49,0x78,0x97,0x23,0xde, +0x95,0x89,0x77,0x35,0xe0,0xdd,0x18,0xef,0x0e,0xc4,0xbb,0x73, +0x71,0xb2,0x1f,0x4e,0x3e,0x83,0x93,0xdf,0xe2,0x3d,0x69,0x78, +0xef,0x02,0x9c,0xd2,0x01,0xa7,0xbc,0xc2,0xfb,0x8e,0xe0,0xfd, +0x4e,0x38,0xb5,0x07,0x4e,0xfd,0x8c,0xd3,0xae,0xe1,0x03,0x73, +0xf0,0x41,0x8c,0x0f,0xa6,0xe1,0x43,0xa6,0xf8,0xd0,0x79,0x7c, +0xd8,0x09,0x1f,0x3e,0x81,0x8f,0x6c,0xc4,0x47,0xdb,0xe2,0xa3, +0x4b,0xf1,0xd1,0x3f,0xf8,0xd8,0x2c,0x7c,0xec,0x39,0x3e,0x3e, +0x05,0x1f,0x7f,0x89,0xd3,0x83,0x71,0xfa,0x67,0x9c,0xb1,0x08, +0x67,0xbc,0xc7,0x27,0xd6,0xe0,0x13,0x4d,0x38,0x73,0x06,0xce, +0x7c,0x83,0x4f,0x2e,0xc6,0x27,0x7f,0xe1,0x53,0x0b,0xf1,0xa9, +0xb7,0xf8,0xf4,0x3e,0x7c,0x66,0x10,0x3e,0x3b,0x13,0x9f,0xeb, +0x85,0xcf,0xf3,0xf8,0x7c,0x36,0xbe,0xb0,0x13,0x5f,0x34,0xc5, +0x97,0x46,0xe2,0xcb,0xc6,0xf8,0x0a,0xc6,0x57,0x3e,0xe2,0x6b, +0x5d,0xf0,0xb5,0x1f,0xf8,0xfa,0x7b,0x9c,0xb5,0x04,0xdf,0xb0, +0xc0,0x37,0xc7,0xe1,0x5b,0x3c,0xbe,0x75,0x13,0xdf,0xde,0x8b, +0xef,0x4c,0xc3,0xd9,0xed,0xf1,0x5d,0x05,0xbe,0x7b,0x12,0xdf, +0x8b,0xc5,0xf7,0x77,0xe0,0x9c,0x70,0x9c,0xb3,0x18,0xe7,0x1c, +0xc2,0x39,0x97,0x71,0x4e,0x05,0xce,0xf9,0x8a,0x73,0x3b,0xe0, +0xdc,0xde,0x38,0xd7,0x0b,0xe7,0x86,0xe3,0xdc,0xad,0x38,0xf7, +0x08,0xce,0xcd,0xc3,0xb9,0x55,0xf8,0x41,0x5b,0xfc,0x40,0x8b, +0x1f,0x0c,0xc6,0x0f,0x36,0xe1,0xbc,0xce,0x38,0x6f,0x25,0xce, +0x7b,0x8c,0x1f,0x6e,0xc6,0x8f,0xa6,0xe3,0x7c,0x73,0x9c,0x2f, +0xe1,0x82,0x78,0xfc,0x18,0xe1,0xc7,0xb5,0xf8,0xc9,0x2b,0xfc, +0x74,0x06,0x7e,0x9a,0x8d,0x0b,0x3b,0xe1,0xc2,0x5d,0xf8,0x99, +0x15,0x7e,0x56,0x85,0x9f,0x6f,0xc4,0x45,0x5d,0x70,0xd1,0x4f, +0x5c,0x1c,0x81,0x4b,0x86,0xe3,0xd2,0x66,0xb8,0x14,0x70,0xa9, +0x39,0x2e,0x1d,0x8a,0x4b,0x83,0x70,0xe9,0x4d,0x5c,0xa6,0xc1, +0x65,0x63,0x70,0xd9,0x09,0x5c,0x76,0x03,0x97,0x0f,0xc5,0xe5, +0x69,0xf8,0xc5,0x1c,0x5c,0xd1,0x01,0x57,0x8e,0xc6,0x55,0x6b, +0x71,0xf5,0x6d,0xfc,0x52,0xc6,0xaf,0x0d,0xf1,0xeb,0x3d,0xf8, +0xf5,0x2b,0xfc,0x66,0x00,0x7e,0x73,0x0d,0xd7,0x10,0x5c,0x03, +0xb8,0xa6,0x33,0xae,0xe9,0x89,0x6b,0xfa,0xe1,0x9a,0xc1,0xb8, +0x66,0x24,0xae,0xf1,0xc5,0x35,0x93,0x70,0xcd,0x74,0x5c,0xb3, +0x00,0xd7,0xac,0xc0,0x35,0x89,0xb8,0x66,0x17,0xae,0x39,0x88, +0x6b,0x4e,0xe2,0x9a,0x2b,0xb8,0xe6,0x2e,0xae,0x79,0x8a,0x6b, +0xea,0xf0,0xdb,0x36,0xf8,0x6d,0x57,0xfc,0xd6,0x1e,0xbf,0xf5, +0xc2,0x6f,0x67,0xe0,0xb7,0x7b,0xf1,0xdb,0x2b,0xf8,0x6d,0x0e, +0x7e,0xfb,0x04,0xbf,0xad,0xc0,0x6f,0x3f,0xe0,0x77,0x1c,0x7e, +0xe7,0x87,0xdf,0x85,0xe3,0x77,0x73,0xf1,0xbb,0x54,0xfc,0x9e, +0xe0,0xf7,0x49,0xf8,0xc3,0x7a,0x5c,0xab,0xc2,0xb5,0x3d,0x71, +0xad,0x37,0xae,0x9d,0x8e,0x6b,0xf7,0xe2,0xda,0xbb,0xb8,0xf6, +0x19,0xae,0xfd,0x8a,0x3f,0xb6,0xc7,0x1f,0x9d,0xf1,0xc7,0x2d, +0xf8,0xe3,0x4b,0xfc,0xa9,0x37,0xfe,0x14,0x8b,0x3f,0x1d,0xc6, +0x9f,0x0a,0xf0,0xa7,0x8f,0xb8,0xee,0x14,0xfe,0x3c,0x03,0x7f, +0x3e,0x8b,0xbf,0x20,0xfc,0x65,0x03,0xfe,0x52,0x82,0xeb,0x9d, +0x71,0xfd,0x71,0x5c,0x5f,0x83,0xbf,0x46,0xe3,0xaf,0x45,0xf8, +0x9b,0x23,0xfe,0x96,0x86,0xbf,0x35,0xe2,0xef,0x63,0xf0,0xf7, +0xc7,0xf8,0xc7,0x4c,0xfc,0xa3,0x0e,0x4b,0x4e,0x58,0x5a,0x8d, +0x1b,0x7a,0xe1,0x86,0x28,0xdc,0x90,0x8f,0x1b,0x9d,0x70,0xe3, +0x0b,0xfc,0xb3,0x1b,0xfe,0x39,0x0b,0xff,0xbc,0x86,0xe5,0xd6, +0x58,0xf6,0xc6,0xf2,0x29,0xdc,0xd4,0x06,0x37,0x4d,0xc0,0x4d, +0xef,0xf1,0xaf,0xb9,0xf8,0xf7,0x4b,0xfc,0xe7,0x11,0x69,0x7e, +0x8c,0xb4,0xec,0x4b,0xf4,0xac,0x88,0xb2,0x07,0x69,0xa5,0x21, +0xad,0x33,0x49,0x1b,0x35,0x69,0x93,0x4c,0xda,0x8e,0x24,0xed, +0xac,0x48,0xbb,0x6c,0x42,0xf9,0x12,0xaa,0x96,0xd0,0xde,0x84, +0x2e,0x26,0x4c,0x20,0x61,0x5e,0x11,0x76,0x2c,0xe1,0x0c,0x09, +0x6f,0x4f,0xf8,0x7a,0x22,0x1c,0x20,0xe2,0x58,0x22,0x3e,0x27, +0xc8,0x8f,0xa0,0x17,0x04,0x07,0x13,0x5c,0x47,0x48,0x39,0x81, +0xed,0x44,0x6d,0x45,0xd4,0x4f,0x88,0xfe,0x74,0x62,0xd0,0x9a, +0x18,0x1c,0x20,0xed,0x07,0x92,0x0e,0x46,0xa4,0xc3,0x09,0xa2, +0x6d,0x4d,0x3a,0x0e,0x24,0x9d,0xec,0x49,0x67,0x25,0xe9,0x7c, +0x81,0x74,0xb1,0x24,0x5d,0xca,0x89,0xa1,0x1d,0x31,0x7c,0x43, +0xba,0x16,0x11,0xa3,0x68,0x62,0xbc,0x86,0x18,0x6f,0x23,0x26, +0xc6,0xc4,0x64,0x26,0xe9,0xa6,0x25,0xdd,0xf6,0x91,0x6e,0x12, +0xe9,0x7e,0x81,0x98,0x86,0x92,0x1e,0x7a,0xa4,0x47,0x1a,0xe9, +0xe9,0x4a,0x7a,0x56,0x93,0x5e,0x2b,0x88,0x99,0x21,0x31,0xfb, +0x43,0xcc,0x57,0x91,0xde,0x11,0xc4,0x62,0x29,0xb1,0xb4,0x23, +0x7d,0x2c,0x48,0x9f,0x6c,0x62,0x95,0x4d,0xac,0x17,0x92,0xbe, +0xbb,0x49,0xdf,0x57,0xa4,0xdf,0x24,0xd2,0xaf,0x84,0xf4,0xdf, +0x4f,0x6c,0x0c,0x88,0xcd,0x1f,0x32,0xe0,0x30,0xb1,0x1d,0x4f, +0x6c,0xf3,0xc9,0xc0,0xa9,0x64,0xe0,0x25,0x62,0x67,0x4d,0xec, +0xb6,0x93,0x41,0x41,0xc4,0xde,0x99,0x38,0xe8,0x3e,0xe7,0x89, +0x63,0x3f,0xe2,0x78,0x84,0x0c,0xee,0x4f,0x06,0x67,0x12,0xa7, +0xfe,0xc4,0x69,0x37,0x71,0xee,0x46,0x5c,0x06,0x11,0x97,0xcf, +0x64,0xc8,0x0e,0x32,0xf4,0x0a,0x71,0x5d,0x4b,0x86,0xcd,0x27, +0xc3,0xa7,0x12,0xb7,0x29,0x64,0x44,0x57,0x32,0xe2,0x25,0x19, +0x99,0x46,0xdc,0xa3,0xc8,0x28,0x6b,0x32,0x2a,0x8b,0x78,0x84, +0x10,0x4f,0x63,0xe2,0x59,0x42,0x46,0x2f,0x23,0x63,0x26,0x93, +0x31,0xd9,0xc4,0xcb,0x86,0x78,0xbd,0x22,0x63,0x2f,0x12,0xef, +0xf6,0xc4,0x7b,0x1d,0xf1,0xe9,0x45,0x7c,0x5e,0x11,0xdf,0x9f, +0xc4,0x2f,0x83,0xf8,0xaf,0x26,0xfe,0xbf,0x49,0xc0,0x7e,0x32, +0x2e,0x89,0x8c,0x9f,0x4f,0x02,0xad,0xc8,0x04,0x4f,0x12,0xc4, +0x91,0xa0,0x26,0x12,0x5c,0x44,0x26,0x26,0x91,0x49,0x1a,0x32, +0xe9,0x0a,0x09,0x49,0x27,0xa1,0xc3,0xc9,0x64,0x96,0x4c,0xce, +0x22,0x61,0xbe,0x24,0xbc,0x35,0x09,0xff,0x4d,0xa6,0x3a,0x91, +0x88,0x74,0x12,0x59,0x40,0xa6,0xb7,0x20,0xd3,0xd7,0x90,0xe9, +0x9f,0x49,0x54,0x14,0x89,0x6e,0x4b,0xa2,0xe3,0xc9,0x8c,0x56, +0x64,0xc6,0x36,0x32,0xd3,0x88,0xcc,0xea,0x4d,0x66,0x5d,0x20, +0xb3,0xfd,0xc8,0x1c,0x7b,0x32,0xe7,0x1c,0x99,0xeb,0x4e,0xe6, +0xd6,0x93,0x79,0x13,0xc8,0xfc,0x16,0x64,0x7e,0x16,0x59,0x10, +0x4c,0x16,0x54,0x93,0x85,0xbe,0x64,0x91,0x09,0x59,0x54,0x4c, +0x16,0xef,0x20,0x31,0xf6,0x64,0x49,0x4b,0xb2,0xe4,0x38,0x89, +0x3d,0x48,0x96,0x46,0x93,0x65,0xe3,0x48,0x5c,0x0b,0x12,0x57, +0x44,0x96,0x3f,0x25,0x2b,0x83,0x48,0x7c,0x77,0xb2,0x2a,0x99, +0xac,0x7e,0x41,0x12,0x1e,0x90,0x35,0x5e,0x64,0x4d,0x1e,0x59, +0x1b,0x48,0xd6,0x69,0xc9,0xba,0x02,0xb2,0xde,0x89,0x6c,0x68, +0x45,0x36,0xec,0x21,0x89,0x9e,0x24,0xb1,0x91,0x6c,0xdc,0x49, +0x36,0xd9,0x90,0xcd,0xe6,0x64,0x8b,0x3d,0xd9,0xca,0x91,0xad, +0xe7,0xc9,0xb6,0x70,0xb2,0xdd,0x8c,0x6c,0xff,0x49,0x76,0x1a, +0x91,0x24,0x2d,0x49,0xfa,0x49,0x76,0x8f,0x24,0xc9,0xae,0x64, +0x4f,0x0c,0xd9,0xd3,0x44,0xf6,0x56,0x93,0x94,0xeb,0x64,0x5f, +0x02,0xd9,0x3f,0x92,0xa4,0x5a,0x91,0x34,0x05,0x49,0xfb,0x41, +0x0e,0x94,0x92,0x83,0x39,0xe4,0x50,0x2a,0x39,0x3c,0x9b,0x1c, +0xd9,0x46,0x8e,0xc6,0x92,0x63,0x69,0xe4,0xf8,0x70,0x72,0xbc, +0x81,0xa4,0x1f,0x20,0x19,0x63,0x49,0x46,0x39,0x39,0x71,0x97, +0x64,0x8e,0x21,0x27,0x15,0xe4,0xe4,0x01,0x72,0xca,0x90,0x9c, +0xca,0x22,0xa7,0xd7,0x91,0x33,0x33,0xc8,0xd9,0x8e,0xe4,0x5c, +0x07,0x72,0xde,0x9a,0x9c,0x3f,0x44,0x2e,0xd8,0x90,0x0b,0xbf, +0xc8,0xc5,0x24,0x72,0xe9,0x32,0xb9,0x3c,0x89,0x5c,0xfe,0x45, +0xae,0xac,0x21,0x57,0x5b,0x90,0xab,0x5b,0xc9,0xb5,0x15,0xe4, +0x7a,0x2a,0xc9,0xca,0x22,0x37,0xba,0x92,0x1b,0x27,0xc9,0x4d, +0x17,0x72,0xf3,0x15,0xb9,0x15,0x43,0x6e,0x7b,0x91,0x3b,0xbd, +0x49,0xb6,0x01,0xc9,0x2e,0x26,0x77,0x1f,0x92,0xfb,0x26,0xe4, +0xfe,0x37,0x92,0x93,0x47,0x1e,0x98,0x92,0x3c,0x5f,0xf2,0x30, +0x85,0x3c,0xba,0x42,0xf2,0x65,0x52,0xf0,0x93,0x3c,0xbe,0x4b, +0x9e,0x8c,0x26,0x4f,0x0e,0x92,0xa7,0x6d,0xc8,0xd3,0xc7,0xa4, +0x30,0x81,0x3c,0xf3,0x23,0xcf,0x05,0xf2,0xfc,0x35,0x29,0x4a, +0x21,0xc5,0x49,0xa4,0x64,0x28,0x29,0x0d,0x20,0x65,0x13,0x49, +0xf9,0x33,0xf2,0x62,0x21,0xa9,0x88,0x25,0x95,0x5e,0xa4,0xf2, +0x27,0xa9,0x5a,0x4e,0xaa,0x7d,0xc8,0x4b,0x9e,0xbc,0xdc,0x47, +0x5e,0x39,0x90,0xd7,0xad,0xc9,0xeb,0x2c,0xf2,0xe6,0x15,0xa9, +0xf9,0x42,0xde,0xa9,0xc8,0xbb,0x9f,0xe4,0x03,0x43,0x3e,0xac, +0x25,0xb5,0x16,0xa4,0xb6,0x80,0x7c,0xdc,0x49,0x3e,0x25,0x90, +0x3a,0x1f,0xf2,0x59,0x8f,0x7c,0xbe,0x4a,0xbe,0xa4,0x93,0xfa, +0x1b,0xe4,0xeb,0x26,0xf2,0xcd,0x9e,0x7c,0x57,0x90,0xef,0x69, +0xe4,0xc7,0x02,0x22,0x79,0x91,0x06,0x63,0xd2,0x68,0x49,0x7e, +0x72,0x44,0x6e,0x45,0xe4,0x1c,0xd2,0xb4,0x9d,0xfc,0x0a,0x20, +0xbf,0x7b,0x92,0xdf,0x0d,0xe4,0xcf,0x45,0x68,0x96,0x03,0xcd, +0x9b,0xa0,0x85,0x04,0x2d,0x4b,0x40,0xaf,0x02,0x14,0x79,0xa0, +0xdc,0x0b,0xaa,0xc5,0xd0,0x2a,0x09,0x5a,0xa7,0x40,0x9b,0x63, +0xd0,0xf6,0x1c,0xb4,0xbb,0x0a,0xd4,0x7d,0xa0,0x73,0x81,0xb9, +0x0d,0x6c,0x26,0x70,0x9b,0x81,0x5f,0x0a,0x42,0x14,0x88,0x87, +0x01,0xfd,0x04,0x5c,0x0f,0xd0,0x0a,0xd4,0xa1,0xa0,0xbf,0x03, +0xda,0xeb,0x41,0x07,0x5f,0xd0,0x14,0x41,0xc7,0x2c,0xe8,0x34, +0x06,0x3a,0xdb,0x41,0xe7,0x3a,0xe8,0x52,0x01,0x86,0x67,0xa0, +0x6b,0x15,0x18,0xe5,0x80,0x71,0x05,0x74,0xb3,0x83,0xee,0x57, +0xc0,0xb4,0x3d,0x98,0xee,0x81,0x1e,0xb1,0xd0,0x73,0x12,0xf4, +0x1a,0x04,0xbd,0xaa,0xc1,0xbc,0x25,0x98,0xa7,0x43,0xef,0xb5, +0x60,0x89,0xc1,0x32,0x06,0xfa,0xb8,0x83,0x55,0x1c,0x58,0xaf, +0x83,0xbe,0x89,0xd0,0xef,0x1e,0xd8,0x4c,0x86,0x01,0x75,0x30, +0x50,0x0f,0x06,0x7e,0x87,0x41,0x16,0x60,0x7f,0x08,0x1c,0x02, +0xc1,0x21,0x0a,0x1c,0x62,0xc1,0x61,0x29,0x38,0x64,0x82,0xc3, +0x1d,0x70,0x34,0x02,0xc7,0x03,0x30,0xd8,0x00,0x06,0xef,0x87, +0xc1,0x19,0x30,0xb8,0x0c,0x9c,0xda,0x80,0x53,0x5f,0x70,0xf2, +0x00,0xa7,0x39,0xe0,0xb4,0x14,0x9c,0x92,0xc1,0x29,0x03,0x9c, +0xbe,0x82,0xb3,0x08,0xce,0x63,0xc0,0x39,0x13,0x9c,0x4b,0xc0, +0xa5,0x0b,0xb8,0xcc,0x06,0x97,0x75,0xe0,0xf2,0x13,0x86,0x0c, +0x87,0x21,0xcb,0x60,0xc8,0x1d,0x18,0x52,0x05,0x43,0x7e,0xc0, +0x50,0x0c,0x43,0xc3,0x60,0xa8,0x0c,0xae,0xdd,0xc1,0x75,0x31, +0xb8,0xde,0x04,0xd7,0x46,0x18,0x26,0xc2,0xb0,0xee,0x30,0x6c, +0x3e,0x0c,0xdb,0x0c,0xc3,0x0e,0xc3,0xb0,0xc7,0x30,0xec,0x0f, +0x0c,0x67,0x60,0xb8,0x2d,0x0c,0x0f,0x80,0xe1,0x07,0x61,0x78, +0x11,0xb8,0x99,0x83,0x5b,0x24,0xb8,0xdd,0x05,0xb7,0x12,0x18, +0xa1,0x07,0x23,0x0c,0x61,0xc4,0x04,0x18,0xb1,0x19,0x46,0x9c, +0x87,0x11,0x4f,0x60,0xc4,0x4b,0x18,0xa9,0x85,0x91,0xe6,0x30, +0xd2,0x0d,0x46,0x8e,0x85,0x91,0xa1,0x30,0x32,0x0b,0xdc,0xf5, +0xc0,0xdd,0x01,0xdc,0x57,0x82,0xfb,0x03,0x70,0xff,0x08,0xa3, +0xd6,0xc0,0xa8,0x73,0x30,0xaa,0x1c,0x3c,0xda,0x82,0x47,0x1f, +0xf0,0x18,0x0a,0x1e,0x1b,0xc0,0xe3,0x22,0x78,0x34,0x80,0xa7, +0x1d,0x78,0x2e,0x07,0xcf,0xfd,0xe0,0xf9,0x03,0x46,0x1b,0xc0, +0x68,0x17,0x18,0x1d,0x0a,0xa3,0xf7,0xc3,0xe8,0x22,0x18,0xd3, +0x12,0xc6,0x74,0x82,0x31,0xfe,0x30,0x26,0x0a,0xc6,0x1c,0x85, +0x31,0x6f,0xc0,0x8b,0x01,0xaf,0x8e,0xe0,0xe5,0x0a,0x5e,0x63, +0xc0,0x2b,0x11,0xbc,0xae,0xc2,0x58,0x1e,0xc6,0x86,0xc2,0xd8, +0x79,0x30,0xf6,0x12,0x78,0xfb,0x82,0xf7,0x13,0xf0,0xe9,0x0c, +0x3e,0x3e,0xe0,0x33,0x0b,0x7c,0xd6,0x81,0x4f,0x1e,0xf8,0x36, +0x03,0xdf,0xb6,0xe0,0x6b,0x08,0xbe,0xc3,0xc1,0x37,0x0c,0x7c, +0x57,0x83,0xef,0x41,0xf0,0xcd,0x05,0x3f,0x01,0xfc,0x82,0xc1, +0x6f,0x33,0xf8,0xbd,0x04,0xff,0x35,0xe0,0x5f,0x0e,0xfe,0x1f, +0x21,0xa0,0x0d,0x04,0x60,0x08,0x70,0x84,0x80,0x20,0x08,0x48, +0x82,0x80,0x1c,0x18,0xd7,0x02,0xc6,0x69,0x61,0x9c,0x27,0x8c, +0x9b,0x0e,0xe3,0xe6,0xc3,0xb8,0xe3,0x30,0xbe,0x19,0x8c,0xef, +0x0e,0xe3,0xf7,0xc2,0xf8,0xef,0x10,0xd8,0x0d,0x02,0x2f,0x43, +0xe0,0x5d,0x08,0xac,0x87,0x09,0xe3,0x61,0xc2,0x0b,0x08,0x72, +0x83,0x20,0x6f,0x08,0xaa,0x82,0xa0,0x2f,0x10,0xec,0x0b,0xc1, +0x71,0x10,0x7c,0x08,0x82,0xab,0x60,0xa2,0x35,0x4c,0x9c,0x0c, +0x13,0xe3,0x60,0xe2,0x23,0x98,0x64,0x09,0x93,0xce,0xc3,0xa4, +0xef,0x10,0xd2,0x1b,0x42,0xe6,0x43,0x48,0x35,0x84,0x0e,0x85, +0xd0,0x83,0x30,0x59,0x03,0x93,0x87,0xc2,0xe4,0xe9,0x30,0x39, +0x0d,0x26,0x7f,0x87,0x30,0x35,0x84,0x0d,0x80,0xb0,0x70,0x08, +0x3b,0x0d,0x61,0x3f,0x20,0xdc,0x03,0xc2,0x8f,0xc0,0x94,0x66, +0x30,0x65,0x22,0x4c,0xa9,0x81,0xa9,0xa1,0x30,0x75,0x23,0x4c, +0xbd,0x0f,0x11,0xcd,0x20,0xc2,0x09,0x22,0x52,0x21,0xe2,0x09, +0x44,0xb6,0x82,0xc8,0x28,0x88,0x7c,0x0e,0xd3,0x86,0xc3,0xb4, +0x2a,0x98,0x3e,0x13,0xa6,0xcb,0x10,0x35,0x15,0xa2,0xb2,0x20, +0x5a,0x80,0xe8,0x19,0x10,0xfd,0x11,0x66,0xa8,0x60,0x86,0x16, +0x66,0x38,0xc1,0x8c,0x55,0x30,0xa3,0x1e,0x66,0x7a,0xc3,0xcc, +0x34,0x98,0xf9,0x19,0x66,0x0d,0x83,0x59,0x77,0x60,0x76,0x7f, +0x98,0xbd,0x00,0x66,0x9f,0x86,0xd9,0x1f,0x60,0x8e,0x19,0xcc, +0xd9,0x00,0x73,0xee,0xc2,0x5c,0x1a,0xe6,0x4e,0x83,0xb9,0x55, +0x30,0x6f,0x00,0xcc,0x8b,0x86,0x79,0x4b,0x60,0x5e,0x2d,0xcc, +0xef,0x06,0xf3,0x83,0x60,0xfe,0x05,0x98,0x7f,0x11,0xe6,0xbf, +0x85,0x05,0x7d,0x61,0xc1,0x06,0x58,0xd8,0x16,0x16,0x6e,0x83, +0x45,0x3c,0x2c,0x1a,0x00,0x8b,0xc2,0x61,0xd1,0x76,0x58,0x74, +0x17,0x16,0x55,0xc1,0x62,0x25,0x2c,0xe6,0x60,0x71,0x4f,0x58, +0x6c,0x07,0x8b,0x77,0xc1,0xe2,0xcb,0xb0,0xf8,0x17,0xc4,0x78, +0x43,0xcc,0x22,0x88,0xc9,0x86,0x25,0x08,0x96,0x98,0xc3,0x92, +0x14,0x58,0xf2,0x19,0x62,0x8d,0x21,0x76,0x0a,0xc4,0xc6,0x43, +0xec,0x6e,0x88,0xbd,0x02,0x4b,0x69,0x58,0xba,0x0c,0x96,0x9e, +0x87,0x65,0xad,0x60,0xd9,0x50,0x58,0xb6,0x00,0x96,0x6d,0x81, +0x65,0xc7,0x60,0xd9,0x17,0x88,0x6b,0x03,0x71,0x5d,0x20,0x6e, +0x04,0xc4,0xcd,0x87,0xb8,0x55,0x10,0x77,0x0b,0xe2,0xea,0x60, +0x79,0x4f,0x58,0x3e,0x01,0x96,0x1f,0x87,0xe5,0xb5,0xb0,0xc2, +0x09,0x56,0x8c,0x85,0x15,0xb1,0xb0,0xe2,0x20,0xac,0xa8,0x85, +0x95,0x1d,0x61,0xa5,0x0b,0xac,0x9c,0x04,0x2b,0xe7,0xc0,0xca, +0x53,0xb0,0xf2,0x0e,0xac,0x7c,0x05,0x2b,0x3f,0x42,0x3c,0x86, +0x78,0x6f,0x88,0xdf,0x0e,0xf1,0xf9,0xb0,0x8a,0x86,0x55,0x9e, +0xb0,0x6a,0x0e,0xac,0x7a,0x02,0xab,0x9a,0x60,0x75,0x17,0x58, +0xed,0x09,0xab,0x17,0xc3,0xea,0x4d,0xb0,0xba,0x08,0x12,0x9a, +0x43,0xc2,0x00,0x48,0x58,0x00,0x09,0xe7,0x20,0xe1,0x29,0xac, +0x31,0x86,0x35,0x23,0x60,0xcd,0x1c,0x58,0xb3,0x1d,0xd6,0x14, +0xc2,0xda,0xb6,0xb0,0xb6,0x1f,0xac,0xf5,0x82,0xb5,0x9b,0x60, +0xed,0x6e,0x58,0x5b,0x0c,0x6b,0x5f,0xc1,0xda,0xfa,0xbf,0x7f, +0x52,0xb4,0xae,0x2f,0xac,0x5b,0x09,0xeb,0xde,0xc1,0x7a,0x2d, +0xac,0x8f,0x82,0xf5,0xab,0x60,0xfd,0x37,0xd8,0x30,0x11,0x36, +0x3c,0x83,0xc4,0x81,0x90,0xb8,0x0f,0x12,0xbf,0xc3,0x46,0x57, +0xd8,0x98,0x08,0x1b,0xef,0xc0,0xc6,0x6f,0xb0,0xc9,0x05,0x36, +0xa5,0xc0,0x66,0x0c,0x9b,0x67,0xc1,0xe6,0x5a,0xd8,0x12,0x0a, +0x5b,0x0e,0xc3,0x56,0x7d,0xd8,0x3a,0x0f,0xb6,0x3e,0x81,0x6d, +0xe6,0xb0,0x6d,0x0c,0x6c,0x3b,0x02,0xdb,0x6a,0x61,0xbb,0x2d, +0x6c,0xdf,0x00,0xdb,0xcb,0x61,0x87,0x1a,0x76,0xcc,0x84,0x1d, +0x71,0xb0,0x63,0x13,0xec,0xd8,0x0c,0x3b,0x6e,0xc2,0x8e,0xc7, +0xb0,0xa3,0x1a,0x76,0x48,0xb0,0x53,0x84,0x9d,0x8e,0xb0,0x73, +0x2e,0xec,0xdc,0x03,0x3b,0x73,0x61,0xe7,0x2b,0x48,0x42,0x90, +0x34,0x1c,0x92,0x66,0x42,0xd2,0x06,0x48,0x2a,0x84,0xa4,0x4a, +0xd8,0xa5,0x0f,0xbb,0x1c,0x60,0xd7,0x74,0xd8,0xb5,0x0a,0x76, +0x5d,0x86,0xdd,0x0c,0xec,0x1e,0x06,0xbb,0x57,0xc1,0xee,0x5c, +0xd8,0x5d,0x09,0xc9,0x04,0x92,0xc7,0x41,0xf2,0x36,0x48,0x2e, +0x81,0x3d,0x34,0xec,0x19,0x0f,0x7b,0xd2,0x60,0xcf,0x67,0xd8, +0xab,0x81,0xbd,0xb6,0xb0,0x77,0x32,0xec,0x5d,0x04,0x7b,0xef, +0x42,0x4a,0x1b,0x48,0x31,0x81,0x94,0x00,0x48,0x59,0x03,0x29, +0xe9,0x90,0xf2,0x05,0xf6,0x39,0xc0,0xbe,0xf9,0xb0,0xef,0x16, +0xec,0xe7,0x60,0xbf,0x1f,0xec,0x4f,0x80,0xfd,0x37,0x60,0xff, +0x7b,0x48,0x55,0x42,0x6a,0x6f,0x48,0xf5,0x81,0xd4,0xcd,0x90, +0x7a,0x16,0x52,0x0b,0x20,0xb5,0x11,0xd2,0x7a,0x40,0xda,0x58, +0x48,0x5b,0x09,0x69,0xa7,0x21,0xad,0x0a,0x0e,0xb4,0x86,0x03, +0x7e,0x70,0x60,0x3b,0x1c,0xa8,0x85,0x83,0x93,0xe1,0xe0,0x3d, +0x38,0xd4,0x03,0x0e,0x6d,0x85,0x43,0x05,0x70,0xb8,0x0f,0x1c, +0x4e,0x85,0x23,0xcd,0xe1,0x48,0x24,0x1c,0xc9,0x81,0xa3,0xf6, +0x70,0x34,0x03,0x8e,0x75,0x81,0x63,0xf3,0xe1,0xd8,0x4d,0x38, +0xae,0x81,0xe3,0xf1,0x70,0xbc,0x02,0xd2,0x07,0x42,0xfa,0x72, +0x48,0x2f,0x86,0x0c,0x67,0xc8,0x38,0x0f,0x27,0xcc,0xe0,0xc4, +0x09,0x38,0x91,0x09,0x99,0x1e,0x90,0x29,0xc1,0xc9,0x01,0x70, +0x32,0x16,0x4e,0x7e,0x81,0x53,0xab,0xe0,0x74,0x73,0x38,0x9d, +0x0c,0xa7,0xbf,0xc2,0x19,0x43,0x38,0xf3,0x18,0xce,0x12,0x38, +0x3b,0x0e,0xce,0x16,0xc0,0xb9,0x70,0x38,0x57,0x0b,0xe7,0x97, +0xc0,0xf9,0xab,0x70,0xc1,0x0a,0x2e,0xc4,0xc0,0x85,0x2f,0x70, +0xb1,0x23,0x5c,0x8c,0x85,0x4b,0x2a,0xb8,0x14,0x08,0x97,0x5e, +0xc3,0xe5,0x00,0xb8,0xbc,0x11,0x2e,0x3f,0x83,0x2b,0x9d,0xe0, +0xca,0x13,0xb8,0x6a,0x03,0xd7,0xda,0xc2,0xb5,0x44,0xb8,0xf6, +0x01,0xae,0xc7,0xc1,0xf5,0x2a,0xc8,0x9a,0x01,0x59,0xe7,0xe0, +0x46,0x08,0xdc,0xa8,0x87,0x9b,0x8b,0xe0,0x56,0x17,0xb8,0x75, +0x13,0x6e,0x3b,0xc2,0xed,0xc3,0x70,0x67,0x38,0xdc,0xd9,0x0f, +0xd9,0x0a,0xc8,0xf6,0x81,0xec,0xc7,0x70,0xd7,0x12,0xee,0x26, +0xc0,0xdd,0x52,0xb8,0xd7,0x17,0xee,0x15,0xc2,0xfd,0xed,0x70, +0xff,0x1d,0xe4,0x6c,0x81,0xdc,0xd1,0x90,0x7b,0x11,0x1e,0x78, +0xc3,0x83,0xcd,0x90,0xd7,0x03,0xf2,0x96,0xc3,0xc3,0x76,0xf0, +0xf0,0x12,0x3c,0x1a,0x00,0x8f,0x6a,0x20,0x7f,0x39,0xe4,0x57, +0x41,0xc1,0x48,0x28,0xb8,0x0a,0x8f,0xe3,0xe0,0xc9,0x28,0x78, +0xf2,0x1c,0x9e,0x4e,0x82,0x42,0x0d,0x14,0x56,0xc2,0x33,0x37, +0x78,0x76,0x0d,0x9e,0xef,0x80,0xa2,0x58,0x28,0x4a,0x81,0xa2, +0xeb,0x50,0x54,0x09,0x45,0x7f,0xa0,0x18,0xa0,0xd8,0x1c,0x8a, +0x27,0x40,0xf1,0x06,0x28,0x4e,0x87,0xe2,0x5c,0x28,0x7e,0x07, +0x25,0xad,0xa1,0x44,0x84,0x12,0x04,0x25,0x1d,0xa1,0xa4,0x27, +0x94,0x58,0x43,0x89,0x03,0x94,0xf8,0x41,0xc9,0x12,0x28,0xb9, +0x0a,0xa5,0x4a,0x28,0x6d,0x0f,0xa5,0xfd,0xa0,0x74,0x0a,0x94, +0x1e,0x82,0xd2,0x33,0x50,0x7a,0x13,0x4a,0xf3,0xa1,0xb4,0x02, +0x4a,0x6b,0xa1,0xf4,0x27,0x94,0xb5,0x82,0x32,0x02,0x65,0xc6, +0x50,0xd6,0x0f,0xca,0x86,0x42,0x99,0x2f,0x94,0x85,0x43,0xd9, +0x02,0x28,0x4b,0x80,0xb2,0x5d,0x50,0x96,0x01,0x65,0x37,0xa1, +0xac,0x08,0xca,0xea,0xa0,0xbc,0x25,0x94,0xeb,0x43,0xb9,0x05, +0x94,0x0f,0x81,0x72,0x3f,0x28,0x9f,0x06,0xe5,0xcb,0xa1,0x7c, +0x17,0x94,0x9f,0x80,0xf2,0x6c,0x28,0x7f,0x01,0xe5,0x5f,0xe1, +0x85,0x12,0x5e,0xb4,0x87,0x17,0x96,0xf0,0x62,0x08,0xbc,0xf0, +0x87,0x17,0x33,0xe0,0x45,0x02,0xbc,0xd8,0x0b,0x2f,0x4e,0xc1, +0x8b,0x7b,0xf0,0xa2,0x02,0x5e,0x7c,0x85,0x0a,0x15,0x54,0x68, +0xa0,0xc2,0x1a,0x2a,0x86,0x43,0x45,0x08,0x54,0x2c,0x81,0x8a, +0x24,0xa8,0x38,0x0b,0x15,0xf9,0x50,0xf1,0x01,0x2a,0x55,0x50, +0x69,0x08,0x95,0x8e,0x50,0x19,0x08,0x95,0x8b,0xa1,0x72,0x27, +0x54,0x9e,0x85,0xca,0x02,0xa8,0xfc,0x04,0x55,0x6d,0xa1,0x4a, +0x1f,0xaa,0xa6,0x40,0xd5,0x45,0xa8,0xfa,0x0c,0xd5,0x83,0xe1, +0xa5,0x2f,0xbc,0x72,0x80,0xd7,0xa7,0xe1,0xcd,0x50,0xa8,0x69, +0x0d,0x35,0xc9,0xf0,0x76,0x3b,0xbc,0xdb,0x0b,0xef,0xd7,0xc3, +0x07,0x5f,0xa8,0x35,0x84,0xda,0xfd,0xf0,0xd1,0x05,0x3e,0x6d, +0x82,0x3a,0x1f,0xf8,0xdc,0x0c,0x3e,0x7f,0x83,0x7a,0x0c,0x5f, +0x8d,0xe0,0xeb,0x72,0xf8,0x66,0x02,0xdf,0x9b,0xc1,0xf7,0x09, +0xf0,0xfd,0x03,0xfc,0x58,0x04,0x52,0x1b,0x90,0x2e,0x40,0xc3, +0x38,0x68,0xd4,0x83,0xc6,0x14,0xf8,0x39,0x19,0x7e,0x3e,0x07, +0x79,0x3f,0x34,0x45,0xc1,0xaf,0xc1,0xf0,0x1b,0xc3,0x1f,0x01, +0xfe,0xec,0x55,0x37,0xb3,0x53,0x37,0x7b,0xa1,0x6e,0xfe,0x56, +0xdd,0x72,0xa8,0xba,0xe5,0x3b,0xb5,0x5e,0x92,0x5a,0x71,0x48, +0xad,0x3c,0xab,0x6e,0x15,0xa1,0x6e,0xdd,0x5b,0xdd,0xfa,0xb4, +0xba,0x4d,0xb4,0xba,0x6d,0x47,0x75,0xbb,0xd1,0x6a,0xca,0x41, +0x4d,0xf7,0x52,0xd3,0x5b,0xd5,0x4c,0x88,0x9a,0xed,0xa7,0x66, +0xf3,0xd4,0x5c,0xa5,0x9a,0xcf,0x56,0x0b,0x77,0xd4,0xe2,0x5e, +0x35,0x7a,0xa2,0xc6,0xf7,0xd4,0xe4,0xac,0x1a,0xde,0xa8,0xd5, +0x4d,0x6a,0x83,0x3e,0x6a,0x83,0x2f,0xea,0xf6,0xfb,0xd4,0x1d, +0xdc,0xd4,0x9a,0x3e,0x6a,0xad,0x9e,0x5a,0xbb,0x43,0xdd,0x51, +0xab,0xee,0x38,0x5b,0xdd,0x09,0xab,0x3b,0x7d,0x51,0x77,0x96, +0xd4,0x5d,0x52,0xd5,0x86,0xfa,0xea,0xae,0x2d,0xd4,0x5d,0x2f, +0xa8,0x8d,0xce,0xab,0x8d,0xdd,0xd4,0x26,0x81,0xea,0x6e,0x4b, +0xd4,0xdd,0x37,0xa8,0x4d,0x91,0xda,0xf4,0xb9,0xba,0x67,0x0b, +0x75,0xcf,0x12,0x75,0xaf,0x13,0x6a,0x33,0x3b,0xb5,0xb9,0xa9, +0xba,0xb7,0xa5,0xda,0xa2,0xb3,0xda,0xd2,0x5a,0xdd,0x67,0x85, +0xda,0x6a,0xbd,0xda,0xba,0x4e,0xdd,0x77,0xbd,0xba,0xdf,0x50, +0x75,0xbf,0x46,0x75,0xff,0xfb,0x6a,0x9b,0xe5,0xea,0x01,0x23, +0xd4,0xb6,0x44,0x3d,0x10,0xab,0xed,0x46,0xab,0xed,0xde,0xab, +0x07,0x3d,0x51,0xdb,0x1f,0x57,0x3b,0x94,0xab,0x1d,0xdd,0xd5, +0x8e,0xdf,0xd4,0x83,0x6f,0xa9,0x9d,0xca,0xd4,0xce,0xb7,0xd4, +0x2e,0x87,0xd5,0x43,0xa6,0xab,0x87,0xee,0x55,0xbb,0xfa,0xaa, +0x87,0x75,0x51,0x0f,0xef,0xac,0x1e,0x3e,0x5d,0xed,0x16,0xa5, +0x1e,0x31,0x45,0x3d,0x72,0xa4,0xda,0xbd,0x87,0xda,0xbd,0x54, +0x3d,0x2a,0x4e,0xed,0x31,0x56,0xed,0xf1,0x58,0xed,0xb9,0x47, +0x3d,0x7a,0xb3,0x7a,0x8c,0xb9,0xda,0x2b,0x51,0xed,0xad,0x56, +0xfb,0xf4,0x51,0xfb,0xb6,0x53,0xfb,0xd6,0xa8,0xfd,0x4c,0xd5, +0x7e,0x09,0x6a,0x7f,0x13,0xb5,0xff,0x2a,0xb5,0xff,0x96,0x3a, +0xb9,0x1d,0x6a,0x3c,0xf3,0x73,0xd1,0xaf,0x33,0xca,0xbb,0xbf, +0xed,0xd1,0x4f,0xbd,0x46,0xdb,0xdf,0x7a,0x2a,0x5a,0xfe,0x49, +0xcb,0x39,0x92,0xad,0xe4,0x86,0x52,0xa5,0x1c,0x85,0x14,0x67, +0x29,0xc7,0xa9,0x52,0xe5,0x1c,0xc5,0x5e,0xd9,0x07,0x9d,0xdd, +0xb3,0x3f,0x43,0xbb,0x43,0x95,0x31,0x6f,0x7f,0x50,0xd0,0xbc, +0x59,0x61,0x9a,0x18,0x55,0xd8,0x9e,0x59,0x67,0x35,0xb4,0x3c, +0x40,0xea,0xdb,0x30,0x1f,0x49,0x17,0x06,0xcb,0x17,0x54,0xd2, +0x56,0xfc,0xaf,0x09,0x2d,0x75,0x91,0xe6,0xe0,0x4c,0x29,0x52, +0x21,0xf5,0x57,0x86,0xca,0x91,0x8a,0x5c,0xe5,0x3f,0x0f,0x46, +0x77,0x65,0x03,0xe5,0x11,0x69,0xc8,0xbf,0x67,0x7f,0xd7,0x86, +0xff,0xf3,0xbb,0xdc,0xff,0xbf,0x3e,0x18,0xb9,0x4b,0x06,0xca, +0x08,0x79,0x88,0x42,0xee,0xfa,0x77,0xf6,0x77,0x4d,0xea,0xdc, +0x10,0x80,0x74,0xca,0x22,0xff,0xae,0xf6,0x57,0xd2,0xfb,0x1a, +0xee,0x4b,0x21,0x48,0x6a,0xe1,0x76,0x57,0xee,0x7a,0x54,0xb3, +0x6c,0x9d,0x42,0x5a,0xab,0x7a,0xb8,0xe2,0xea,0xe4,0x0c,0xff, +0x7b,0x17,0xc1,0xeb,0x99,0x4b,0x7a,0xef,0x4d,0xad,0xaa,0x47, +0xf4,0x51,0xc9,0x4c,0x9c,0xb5,0x93,0xdc,0x4c,0x5f,0xd6,0x7b, +0xe4,0x2f,0x75,0x0e,0xd1,0xc8,0x87,0x54,0xf6,0x89,0x5e,0xa7, +0x03,0xef,0x8d,0x1a,0x0b,0x57,0x5c,0x1f,0x79,0x49,0x8a,0x15, +0xad,0xac,0xef,0x57,0xa9,0x24,0xcd,0x8e,0x92,0x12,0xa9,0xb5, +0x7e,0x53,0x0f,0xe9,0x1d,0xca,0xc9,0x3a,0x53,0xbc,0x51,0x23, +0x2f,0x51,0x59,0xee,0x9f,0x70,0xe4,0x89,0xbe,0x34,0x5a,0x9e, +0x86,0x6a,0xa3,0xce,0x4c,0x77,0xd4,0x77,0xf4,0xf6,0xb6,0x5a, +0xae,0xa1,0x1b,0x5a,0x4a,0x31,0x52,0x05,0xfa,0x76,0xf7,0xa9, +0xa4,0x2f,0x19,0xb8,0x3f,0xed,0xdc,0xd9,0xdd,0x51,0x36,0x90, +0xf5,0xef,0x3a,0x7e,0xd3,0x66,0xca,0x15,0xa8,0x21,0xb1,0x31, +0x5a,0x61,0xa7,0x6c,0x4a,0xfc,0x15,0xad,0x38,0xdd,0x20,0x20, +0xb7,0xc8,0xb3,0xe5,0xda,0x1c,0x55,0xf9,0x91,0xb3,0x39,0x39, +0x47,0x82,0xfa,0x6b,0xdc,0x54,0xfd,0x23,0x83,0xdc,0x34,0x0d, +0xeb,0x9a,0x3a,0xfe,0xa3,0xc4,0x40,0xd2,0xff,0xb7,0x12,0x7d, +0xd9,0xe0,0xaf,0x92,0xeb,0x7a,0xff,0x61,0x0b,0x2d,0xd1,0x52, +0x56,0x0c,0x92,0xda,0xe6,0xdd,0x3f,0x75,0x58,0x5b,0x6e,0xa9, +0xf8,0xaa,0x94,0x3b,0x4b,0x3d,0xf6,0x5f,0x4a,0xbe,0xb9,0xe5, +0xbe,0xba,0xf0,0x91,0xac,0x55,0xae,0x72,0x8b,0x75,0x9b,0x33, +0x56,0x1e,0x28,0x0d,0x85,0x77,0x59,0xcf,0xb2,0x3e,0xea,0xd7, +0x38,0x3d,0x30,0x94,0x95,0xf6,0x76,0x26,0xae,0xc7,0xbd,0xae, +0x8e,0xd5,0x0c,0x0a,0x72,0x18,0x2d,0xb7,0xd0,0x79,0xa4,0xa4, +0xb7,0xd4,0x45,0x13,0xdf,0x30,0x0a,0x4d,0xb8,0x3c,0xed,0xdc, +0x59,0xfd,0x1d,0xaa,0x3b,0xe7,0xcf,0xdf,0xbf,0x71,0x69,0xca, +0x28,0x5d,0x74,0x3d,0x86,0xfa,0x0d,0x99,0xac,0xd9,0xde,0xd4, +0x06,0xf5,0xf6,0xbc,0x52,0xa2,0xdd,0xa5,0x7a,0x71,0x2d,0x23, +0xfb,0xa8,0x46,0xf2,0x93,0xc3,0x15,0x7e,0xa1,0xde,0x11,0x83, +0x0d,0x68,0xf9,0xdb,0x7f,0x09,0x3d,0x2d,0x6f,0xaa,0x96,0x4a, +0x91,0x1c,0x5c,0x2d,0x3b,0xd7,0x5b,0x6a,0x9e,0x2b,0x65,0xbd, +0x8f,0xb6,0xd2,0x10,0xa9,0x9b,0xfe,0x1b,0x95,0xd4,0xad,0x44, +0x37,0xd3,0xfb,0xa8,0x19,0xa4,0x34,0xb4,0xec,0x23,0xbb,0xc8, +0xc1,0xfa,0x3a,0x71,0x29,0x59,0x27,0x2f,0x05,0xf7,0x91,0x5c, +0x0c,0x5f,0xea,0x7e,0x91,0xf4,0xba,0x95,0xc8,0x43,0xe4,0x6e, +0xfa,0xe6,0x2a,0xb9,0x9b,0xad,0x6e,0xa6,0xd7,0x4d,0xa7,0xa5, +0xfe,0x65,0xb5,0xe4,0x2c,0xfd,0x95,0xd7,0x97,0x62,0x1b,0x32, +0x51,0x95,0x8c,0x6f,0x9f,0xe9,0x21,0x31,0x52,0xb7,0x33,0xb3, +0x1f,0xc9,0x46,0x5e,0x1b,0x25,0x33,0x85,0xb3,0x72,0xa3,0x6c, +0x26,0x1b,0xdd,0x98,0xad,0x3b,0x2d,0xd8,0x54,0x66,0x6e,0x07, +0x2b,0xe8,0x54,0xe9,0x7b,0x1e,0x92,0xa2,0xa5,0x90,0x47,0x72, +0x88,0x14,0x3d,0x48,0x8e,0x96,0x43,0x86,0x48,0x21,0x72,0xb4, +0x0e,0xe7,0x33,0x49,0x4f,0xd6,0x47,0xb7,0xaf,0xa4,0x17,0xde, +0xd0,0xdf,0xa9,0x23,0x74,0xaa,0x8e,0xd0,0x33,0xc3,0x34,0x8b, +0x55,0x51,0xdb,0xe7,0x1e,0x5c,0xa1,0x89,0x0d,0x98,0x19,0x36, +0x31,0xa8,0x15,0x2d,0xbb,0x4b,0x9f,0xa4,0xc3,0xba,0x03,0x0f, +0x58,0xfd,0xb3,0xa9,0x73,0x8c,0x2e,0x07,0x52,0xd3,0x75,0x39, +0x90,0xfe,0xaf,0x2d,0xe1,0x3a,0x2f,0x85,0xef,0x99,0xf9,0x37, +0x07,0x26,0x54,0xc8,0x96,0x48,0x3a,0xf8,0xd3,0x56,0x31,0x58, +0x29,0x1f,0xfc,0x6d,0xfb,0xf7,0xfc,0x47,0xba,0x20,0x39,0x16, +0x49,0x1a,0x69,0x85,0xb4,0xd2,0x4e,0xd2,0xc8,0x8e,0xb2,0xa3, +0x9d,0xac,0x91,0x57,0xca,0x2b,0x8a,0x64,0x8d,0xe4,0xa8,0x7d, +0xaa,0x27,0xab,0xfc,0x3f,0x4b,0xc6,0x5a,0xa9,0xb5,0x4a,0x32, +0xbe,0xfc,0x59,0x52,0x49,0xaa,0xcb,0x46,0xb2,0xb1,0x46,0x6e, +0xad,0x92,0x8d,0xfd,0x8d,0x64,0x95,0x86,0x4e,0x6d,0x28,0x28, +0x44,0xf2,0xe8,0x46,0x63,0x99,0x28,0x65,0x1f,0x79,0xd8,0x95, +0xb1,0x92,0xbb,0xe4,0xa0,0xd8,0xd4,0xf4,0x4e,0x9e,0xe8,0xd0, +0x30,0x47,0xa9,0x13,0xb8,0x85,0x0b,0x9b,0x40,0x25,0x8d,0x97, +0xdc,0x14,0x35,0x15,0x79,0x25,0x92,0x9e,0xbe,0xc4,0xf5,0x7f, +0x29,0x77,0x92,0x3b,0x0d,0xb3,0xb2,0x9a,0xa6,0x79,0x36,0x4d, +0xf1,0x78,0xef,0xb9,0x9b,0x35,0x06,0xef,0x2e,0x78,0xf6,0xd7, +0x2e,0x56,0x39,0x79,0x0f,0x1e,0x32,0xfc,0x2f,0x8a,0xd9,0x0a, +0x9d,0x59,0xa9,0x92,0xb7,0xf4,0x19,0x55,0x2b,0xbf,0xdd,0xf4, +0xb5,0xd4,0x2e,0x53,0x59,0x8e,0xf6,0xe9,0xd2,0x7b,0xfc,0xa9, +0xec,0x10,0xcd,0x08,0x3f,0x85,0xdb,0x85,0x07,0x23,0x25,0xde, +0x40,0xea,0xf6,0xf1,0xa5,0xc4,0x4b,0x2d,0x1c,0xb2,0x07,0x24, +0x69,0x13,0x55,0xc5,0x7b,0x73,0x6e,0xbd,0xd7,0x97,0xda,0x74, +0x7b,0x28,0xb3,0x72,0xeb,0xe1,0xee,0xee,0x93,0x35,0xf7,0xfd, +0x14,0x77,0x8e,0x5c,0x38,0x51,0x6c,0x50,0x76,0x63,0xa2,0xad, +0x36,0x4e,0x77,0x84,0xb7,0xb1,0xc6,0xe6,0x2f,0xb6,0x28,0xa9, +0x2b,0x92,0x9a,0x15,0xc8,0xcd,0x1a,0x92,0x64,0x4e,0x29,0xe7, +0x36,0x6d,0x53,0x38,0x48,0x0d,0x72,0xd7,0x52,0xd5,0x80,0x46, +0x73,0xd4,0xe4,0x2b,0x1f,0x51,0x49,0x69,0x0d,0xbe,0x7f,0xbd, +0x05,0x8d,0xd1,0x28,0xba,0xc9,0xe8,0x71,0xac,0xe2,0xc4,0xd1, +0xf4,0x43,0x8f,0x0c,0xea,0xb3,0x46,0x9b,0x68,0x97,0xa8,0xba, +0x79,0x79,0x76,0xb5,0x98,0x74,0xea,0x4e,0x88,0xc6,0xcd,0x5f, +0x87,0x28,0x67,0xa4,0x44,0x19,0x48,0x3d,0xde,0x7e,0xd2,0x95, +0x97,0xce,0xbd,0x2a,0x65,0xce,0x6e,0xd2,0x54,0xbf,0x30,0xed, +0x72,0x65,0x8a,0x94,0xa9,0x90,0x9e,0x15,0xea,0x0e,0x95,0xf2, +0x75,0x7e,0xef,0x5a,0xfb,0x57,0x42,0x6b,0x5e,0x2d,0xf3,0x96, +0x5e,0xe3,0xdd,0xc3,0xb4,0x2b,0xd7,0x9d,0x92,0xec,0xaa,0x3f, +0x48,0xbd,0x25,0x95,0x5a,0x6e,0xa6,0x94,0xdb,0x0d,0x94,0x3b, +0xcb,0x76,0xf2,0x34,0x7d,0xd9,0xfe,0xad,0xdc,0x4c,0x32,0xd5, +0x24,0x3c,0x45,0x26,0x9e,0xb7,0xeb,0xb4,0x5b,0x55,0x75,0xb7, +0x6e,0xd7,0x7d,0xba,0xed,0x69,0xac,0x59,0xaa,0x32,0xf6,0xf4, +0x34,0xf9,0x1b,0x84,0x2b,0x8d,0xc6,0xa8,0xb0,0x69,0x96,0x3c, +0xf9,0x99,0xa4,0x95,0x9e,0xaa,0xe4,0x8c,0x5f,0xdd,0x14,0xaf, +0x95,0xff,0x8e,0xb1,0x4d,0xf5,0x1b,0x89,0xaa,0x73,0xbf,0x63, +0x99,0xaa,0xdd,0xac,0x2a,0x4a,0xbb,0x92,0x53,0xa9,0x2f,0xb5, +0xb4,0x7a,0x2a,0x77,0x95,0xbb,0x5a,0x39,0xca,0x2d,0xad,0xaf, +0xb8,0x15,0xcd,0xd0,0xc4,0xa9,0x2c,0x67,0xba,0x7b,0x18,0xeb, +0xcb,0x54,0xb5,0xb9,0x64,0xa3,0x69,0x70,0xd6,0x33,0xf3,0x3e, +0xfb,0x5c,0x97,0x55,0x45,0xd7,0xcf,0xd6,0xd4,0x5c,0x0f,0xb2, +0xd3,0x2c,0x54,0x0d,0xf2,0x0e,0x32,0xd3,0xc8,0x4d,0x7a,0x86, +0x23,0xaf,0x54,0x6a,0xf7,0xa9,0x2a,0xee,0x5d,0xad,0xaf,0xbf, +0xe7,0xdb,0x57,0x33,0x5b,0x65,0x3d,0xd2,0xcf,0x50,0x87,0x43, +0xba,0x82,0xa5,0x76,0xc5,0x52,0x67,0xc9,0x4e,0x9a,0xa6,0x2f, +0xd9,0xf7,0x92,0x9a,0xc9,0xa6,0x72,0xd7,0xee,0x26,0x72,0x17, +0x59,0xfb,0xa6,0x8f,0xc4,0xbf,0xca,0xba,0x70,0x37,0x43,0x93, +0xb8,0x7a,0x92,0x6c,0xd7,0xc7,0x54,0xee,0x2d,0xab,0xd4,0x92, +0x20,0x7d,0xf9,0x1f,0x76,0xdd,0xbe,0xfd,0xe9,0xbf,0xdb,0x35, +0x5a,0x37,0xd0,0x72,0x96,0xd4,0xb3,0x61,0xe0,0x7f,0x22,0x75, +0x93,0xab,0xde,0x7f,0xa4,0xfb,0x8d,0xff,0xdb,0x46,0xf9,0x9e, +0xde,0xdf,0x7c,0xd2,0xfe,0x2f,0xf9,0xf4,0x50,0xf9,0x5f,0x33, +0xee,0xaf,0x57,0x8f,0xc5,0xa0,0x4a,0x55,0x53,0x73,0x29,0x42, +0xb1,0x59,0xd5,0xd0,0x5c,0x57,0xfc,0x2b,0x54,0x4d,0x6e,0x72, +0xb2,0x62,0x80,0x8e,0x97,0x0d,0x37,0x1b,0x3a,0xa0,0x47,0x4d, +0x0b,0x86,0xa8,0x1a,0x16,0xc8,0xa1,0xff,0x9a,0xfd,0xdd,0x22, +0x55,0xa2,0x26,0x37,0x29,0x59,0xd1,0x57,0xb7,0x43,0xd7,0x14, +0xe2,0x74,0xfb,0xe5,0x08,0x85,0xb5,0xaa,0xe1,0xef,0x22,0xdd, +0x49,0xda,0x23,0x4d,0x47,0x92,0x52,0xf5,0x76,0xf7,0xe7,0x1c, +0xc9,0x40,0x5f,0xa2,0x06,0x14,0xc9,0x58,0x46,0x2e,0xb6,0xe6, +0xd1,0x9a,0xc2,0xe9,0x8a,0xc7,0xbb,0xaf,0xdc,0x28,0x33,0x28, +0xba,0x1a,0xe0,0xa0,0x43,0x67,0xe9,0xe2,0x2d,0xb7,0x5a,0xa1, +0x91,0x1d,0x54,0xa7,0xe4,0x45,0xff,0xb1,0xbd,0x49,0xe5,0x8d, +0xe3,0x64,0x1e,0xdd,0x93,0xe3,0x55,0x72,0x80,0xae,0x06,0x75, +0x92,0x02,0xb4,0xf7,0x54,0xba,0xb4,0xd1,0x4a,0xa6,0xba,0xa4, +0x1b,0x26,0x75,0x92,0x19,0x79,0xa4,0xc6,0x5f,0x25,0xb7,0x9d, +0x3c,0xd8,0x75,0xe2,0xbc,0xa4,0x1b,0x1a,0xa9,0xd0,0xc5,0x29, +0x5e,0x75,0x61,0x5e,0x48,0xc6,0x70,0x83,0xee,0xd6,0x0e,0xba, +0x40,0x98,0x57,0x3a,0xd4,0xe6,0x9e,0xce,0xb8,0x79,0x40,0x9b, +0xa8,0x1c,0xbb,0x31,0x3d,0x34,0xcf,0x40,0xc2,0x57,0x75,0x75, +0xdc,0x50,0x3a,0x2b,0x7b,0x4a,0x2a,0xd9,0x4f,0x5e,0x2d,0xf7, +0xd3,0x55,0xbc,0x9d,0xf2,0x0e,0xc9,0x4a,0x57,0xb7,0xe3,0xb4, +0x4b,0xa5,0x64,0x34,0x68,0xf2,0x95,0x42,0x6d,0xb9,0xea,0xd9, +0x89,0x2b,0xcf,0x0b,0x33,0x83,0xc6,0x68,0x64,0xa4,0x1a,0x16, +0x12,0xe2,0xa8,0xa1,0x1f,0x48,0x2d,0xf0,0x73,0x69,0xba,0x42, +0xba,0xa2,0x7c,0x2e,0x4f,0x57,0xbc,0x54,0xca,0x5b,0x74,0xdd, +0x46,0x6e,0xae,0x1b,0x75,0xed,0x46,0xba,0xdb,0x68,0x88,0x12, +0x95,0x12,0x27,0xff,0x51,0xc8,0x5b,0x95,0x74,0x71,0x83,0x03, +0x96,0x9a,0x97,0xbc,0x96,0x28,0x89,0xb2,0xb8,0xe4,0xb5,0x5e, +0xbb,0x49,0x75,0x65,0x73,0xfe,0x29,0xa9,0xb9,0xbe,0xa4,0x74, +0x28,0x94,0xdb,0x69,0xe4,0xeb,0xbf,0xa2,0x95,0x15,0x3a,0x8a, +0x4b,0x41,0xca,0x27,0x67,0x43,0x86,0x6a,0xc3,0x54,0x43,0x83, +0x42,0x06,0x6b,0xe4,0x20,0xe5,0x60,0x3d,0x29,0x4a,0x59,0x7c, +0x31,0xc8,0x51,0x1b,0xaa,0x72,0x18,0x17,0x34,0x50,0x23,0x47, +0x29,0xe9,0xf3,0xd2,0x0f,0x1d,0xed,0xe9,0x57,0xb9,0xf5,0x17, +0xb4,0x43,0xcf,0x2a,0x6c,0x22,0x86,0x8f,0xed,0x69,0x20,0x8b, +0xf6,0x6f,0x25,0x33,0xed,0x77,0x95,0x64,0xf6,0xac,0x4e,0x12, +0xdf,0xdc,0xf3,0x1d,0x74,0x54,0xf3,0xe8,0x8c,0xe2,0xf3,0xb8, +0x7e,0xd9,0x32,0x6d,0x20,0xbb,0xc9,0xcd,0x75,0xc5,0x2f,0x41, +0x5e,0x25,0x35,0x97,0x89,0xe4,0xa6,0xa5,0x6b,0xa5,0xf7,0x58, +0x72,0x93,0x5a,0xe9,0xdc,0xb0,0x4a,0x5a,0x2d,0xeb,0x46,0xd9, +0x4d,0x2b,0xc7,0xff,0x77,0x28,0x96,0x3a,0x03,0x2a,0xad,0x64, +0x13,0xed,0xdf,0x6a,0x68,0x62,0x6d,0x25,0x73,0x1a,0xd9,0x52, +0x49,0x27,0x36,0x9c,0xd6,0x15,0xc4,0x26,0x69,0xa7,0xf4,0xb6, +0x50,0x7e,0x2b,0xad,0x97,0x9a,0x0a,0x9b,0x46,0xfd,0x8a,0x6e, +0x18,0xa5,0xa4,0xe7,0x4a,0xc3,0xa5,0x97,0x48,0x7a,0x5a,0x28, +0x3f,0xd5,0xad,0x7f,0x29,0x6c,0x72,0xfe,0x15,0x5d,0xa1,0xa4, +0x25,0xaa,0xa1,0x99,0x0e,0xae,0xa2,0xf0,0x7a,0xfe,0x1e,0xed, +0x7a,0xb9,0x59,0x71,0x43,0x3b,0x39,0xc1,0x41,0xea,0x37,0x48, +0x29,0xb7,0xb0,0xf2,0xea,0x22,0x77,0xea,0xf3,0x51,0xea,0xae, +0xd1,0x71,0x46,0xea,0xfe,0xb2,0x56,0x82,0xb7,0x8f,0xfc,0x06, +0x66,0x68,0xf2,0xcf,0x2a,0xde,0x05,0x58,0xe6,0xc9,0xd8,0x40, +0x1e,0x25,0xd3,0x72,0x7b,0x79,0x95,0xbc,0x5a,0x62,0x74,0xe1, +0x1f,0xaa,0xa5,0xa5,0xf6,0x8d,0x04,0x37,0x46,0xf7,0x95,0x8b, +0x9b,0xda,0x49,0xc5,0x7d,0x75,0x87,0x48,0xd5,0x3a,0x9d,0xd5, +0xba,0x26,0x31,0x4a,0x92,0x70,0x41,0x97,0x86,0xd7,0x5f,0x0b, +0xe4,0x0b,0xce,0x5f,0x9b,0x5e,0x77,0x71,0x56,0xd1,0x8e,0xd2, +0x42,0xdd,0xf1,0x6c,0x65,0x89,0xc4,0x6a,0x1b,0x4e,0xcb,0xaf, +0x1d,0xa4,0x8d,0x4d,0x7e,0x2a,0xd3,0xc0,0x00,0x5b,0x87,0x49, +0xe7,0x73,0x16,0x69,0x06,0x2d,0x50,0x74,0xdb,0xfb,0x78,0xa8, +0xd4,0xd2,0x80,0xbe,0x2d,0x0d,0xc7,0xd2,0x6a,0xd5,0x0f,0xa9, +0x8d,0x94,0xa0,0x0b,0x9e,0xae,0xb1,0x5f,0x68,0xe8,0x2b,0x1d, +0x90,0x1e,0x2a,0x0c,0x95,0xf2,0x6c,0x39,0xb9,0xa3,0x2c,0x2a, +0x56,0x35,0x74,0xd0,0x1d,0xa9,0xa4,0x6d,0x1a,0x56,0xe8,0x1c, +0xf1,0xb0,0xd1,0x58,0xf7,0xd4,0xd0,0x59,0x67,0xe6,0x1a,0xc9, +0x15,0x37,0xb6,0x48,0x54,0x65,0xeb,0x5c,0xe9,0x2a,0x97,0x4a, +0xae,0x52,0x69,0xb6,0xd4,0x4a,0x91,0xf8,0xab,0x45,0x79,0x63, +0xf4,0x5f,0x6e,0x4c,0x69,0xea,0xa4,0x58,0xa9,0x1b,0x1a,0x3a, +0x29,0x64,0xbd,0xbf,0x2a,0xa4,0xf6,0xba,0x2d,0x0d,0xf2,0x7a, +0x55,0x85,0xdc,0x4b,0x3a,0xd2,0x14,0xa4,0xf8,0xd8,0x18,0xdd, +0xbf,0x49,0x8e,0x57,0xf6,0x95,0x7a,0xc9,0x87,0x1b,0x82,0x14, +0xdd,0xfe,0x91,0x32,0x68,0x50,0xea,0x0c,0xf0,0xd0,0xd1,0x47, +0x5f,0x5a,0xad,0x03,0xa6,0x1b,0x65,0x0f,0x9d,0x5b,0x28,0xdd, +0x55,0x25,0x41,0xe7,0x16,0xdd,0x28,0x8d,0xd2,0xae,0x7d,0x86, +0x64,0xdc,0xfb,0x83,0xd4,0xfd,0x9f,0x76,0xd6,0xfd,0xf5,0x07, +0x09,0x4b,0xf8,0x95,0xa9,0xdc,0xfd,0x9f,0x76,0xd6,0xdd,0xc2, +0x54,0xc6,0x1a,0xfa,0xb0,0x2e,0x44,0x0f,0x91,0x34,0x51,0x29, +0x91,0x27,0x65,0x12,0x92,0xc4,0xc1,0x65,0x32,0xd1,0xca,0xe7, +0xff,0x06,0x4a,0x9a,0xa8,0x0b,0xfb,0xe3,0xb3,0x93,0x9c,0xb5, +0x63,0x55,0xce,0x41,0x93,0x9c,0x34,0xf2,0x44,0x29,0xf5,0x9f, +0xe3,0x0f,0xc8,0x83,0x50,0x81,0xac,0xa7,0xbb,0x46,0x58,0xa7, +0x7c,0x96,0x88,0x34,0x4b,0xff,0x7f,0x43,0xb1,0xe0,0xbb,0xac, +0x96,0xec,0x74,0xce,0x54,0x05,0x1c,0x9e,0x7c,0x53,0xe3,0x2b, +0x2d,0xfe,0xff,0x40,0xf3,0x40,0x6a,0x94,0xf2,0x91,0x64,0x2d, +0xe7,0x2b,0xde,0x2b,0x65,0x3b,0xa9,0x48,0xf1,0x31,0xe5,0xda, +0x53,0xa9,0x99,0xbe,0x04,0xf6,0xcf,0x64,0x51,0xf3,0x0f,0x2e, +0x29,0x5f,0x29,0x7d,0xd0,0xd3,0x41,0xfe,0x9f,0xa1,0x29,0xe9, +0x75,0xd2,0x4d,0x9d,0x5b,0x7a,0xbf,0xab,0x92,0xf4,0x7f,0xb8, +0xe7,0xca,0x5d,0x8e,0x69,0x47,0xee,0x50,0xf4,0x4c,0x19,0x77, +0xec,0xa9,0x7e,0xd9,0x9d,0xb3,0xb5,0x95,0xb7,0xc2,0xc6,0x9c, +0xd6,0xe4,0x5c,0x50,0x14,0x8d,0xb5,0x3b,0x2b,0xb7,0x30,0x90, +0x0d,0xbb,0x39,0xeb,0x4a,0x51,0xcb,0x27,0xee,0x92,0x7e,0xa4, +0xf6,0xee,0x62,0x45,0xed,0x9c,0x33,0x61,0x83,0xf5,0xfb,0x78, +0x8e,0xe9,0x68,0x35,0x22,0xf3,0x91,0x8f,0xc6,0xcd,0x57,0x31, +0x20,0xbb,0xdc,0x4f,0x6a,0x6d,0x40,0xaf,0x68,0x78,0xa6,0xeb, +0x86,0x4d,0x59,0x0e,0x52,0xec,0x2f,0x63,0x5d,0x36,0x48,0xb1, +0x4a,0xfa,0xdb,0x5b,0xe9,0x3a,0x92,0xc3,0xf3,0x4d,0x24,0x2f, +0x69,0x6c,0xfe,0x27,0x29,0x5c,0xd3,0xe0,0xd2,0x57,0x47,0x24, +0xb9,0xcb,0x38,0x07,0x59,0x2d,0xc3,0xb8,0x42,0xdd,0x55,0xae, +0xc1,0xaf,0xaf,0x8a,0x3e,0xde,0xa0,0xc0,0x52,0x82,0xae,0x20, +0xf4,0x51,0xca,0xa8,0x09,0x06,0xca,0x3b,0x74,0x61,0xb7,0x93, +0x76,0xc8,0x7c,0x03,0x28,0xcc,0x95,0xd2,0x2a,0x5d,0x8d,0xa0, +0xa5,0x17,0xd2,0x65,0x5c,0xdf,0x20,0xe4,0x49,0x9b,0x15,0xeb, +0x94,0x39,0xf2,0xe6,0xcf,0x4d,0x82,0xce,0x0b,0xd2,0xa8,0x7f, +0xf6,0x59,0x34,0xb5,0x1a,0x25,0x6f,0x53,0xac,0x52,0x0e,0x93, +0xb6,0xf5,0x6c,0x68,0xa5,0xe8,0xa6,0xec,0xd6,0xd4,0x6a,0x98, +0xbc,0x5d,0xb1,0x5a,0xe9,0x29,0x6d,0xb7,0xd6,0xad,0x58,0x28, +0xa5,0x21,0x7f,0xf5,0x1c,0x92,0x0a,0xa4,0x07,0x68,0x83,0x52, +0xf2,0x97,0x1f,0x28,0x3e,0x2b,0xe5,0x84,0x06,0x4a,0x5a,0x22, +0x35,0x28,0x4c,0x95,0xba,0xe8,0x5c,0xd2,0x69,0x90,0x3d,0xa4, +0x4b,0x0a,0x23,0xa5,0x14,0x2b,0xcb,0x72,0x42,0x53,0x1b,0xc5, +0x07,0x25,0xbd,0x53,0xaa,0x97,0x2e,0x21,0x69,0x73,0xc3,0xf0, +0xbf,0x62,0xbe,0xb2,0xf4,0x57,0xcc,0x5f,0x92,0x74,0x4f,0x52, +0x62,0xd3,0x48,0x85,0x7c,0xbe,0x42,0xa5,0x73,0xaf,0x58,0x88, +0x1a,0xec,0x1b,0x4a,0x15,0xcf,0x9b,0x96,0x3b,0x34,0x74,0x53, +0x35,0x0d,0x6a,0x2a,0x55,0x0c,0x6a,0x38,0x5c,0xa8,0xcb,0xb3, +0x03,0xd2,0x5e,0xb9,0x2b,0xca,0x31,0x69,0xbc,0xf3,0x29,0x47, +0xb6,0xfd,0x3d,0x58,0xa5,0x63,0x96,0x8c,0xa5,0x5e,0x92,0xdb, +0x43,0xd9,0xed,0xeb,0xdf,0x6f,0x43,0x95,0xe4,0x2f,0xbd,0x53, +0xf4,0x52,0xca,0xc3,0xe4,0xaa,0xbf,0xb4,0x77,0x97,0xaa,0x14, +0x3d,0xff,0xc2,0x7c,0xa7,0x90,0x0d,0x87,0x4a,0x6e,0x5d,0x64, +0x37,0xdd,0xb7,0xdc,0x4b,0xf9,0x57,0x5b,0x4c,0xe3,0x29,0x24, +0xdb,0xba,0x7d,0xfa,0x75,0xc7,0xc4,0x4d,0xb2,0xfd,0xdb,0xd8, +0xf3,0x74,0x64,0xd4,0x59,0xe5,0x2b,0xd7,0xdd,0x3b,0x26,0x47, +0x36,0xa8,0x15,0x56,0x4a,0x39,0xb2,0x49,0x7d,0x6f,0xaa,0x82, +0x8e,0x69,0xb8,0x25,0xdb,0xa3,0x82,0xa6,0x7d,0xce,0x7f,0x3b, +0x52,0xc7,0x46,0x1e,0x59,0x48,0x2e,0x8e,0x61,0x52,0x4b,0x79, +0x80,0x82,0x1e,0x2f,0xcd,0x8b,0x41,0xcf,0xb3,0x33,0xf2,0xf6, +0xeb,0x4a,0xbd,0xef,0xc6,0xb4,0x90,0x1c,0x83,0x73,0x05,0x23, +0xa4,0x9b,0x4a,0x49,0x39,0xe8,0x91,0x8c,0xbb,0x0f,0xf3,0xf7, +0x88,0xd4,0x5c,0x1e,0xaf,0xb8,0x7a,0xe4,0xfc,0xb1,0x3c,0x83, +0xea,0x73,0x13,0x6c,0xb5,0x5e,0x72,0x73,0x95,0x6c,0xee,0xe8, +0x69,0x64,0x94,0xe7,0x26,0x29,0xb5,0x3b,0x1f,0xa1,0xa1,0x13, +0x8e,0xde,0xd6,0x5d,0x00,0xb2,0xce,0x1f,0xad,0xd5,0x48,0xba, +0x90,0x79,0x8c,0x1c,0xdf,0x4f,0xa3,0xf3,0xc8,0x4b,0x1d,0xe1, +0xf4,0x2b,0xa5,0x16,0x92,0xa3,0xe4,0x60,0x2d,0xb5,0x90,0xf5, +0xed,0xc6,0x4c,0x19,0x3a,0x5d,0x1b,0x2f,0x3d,0x1f,0xf0,0x2b, +0xb9,0xb4,0x7a,0x83,0xd2,0xf5,0xd8,0xb5,0xf0,0x22,0x83,0xd9, +0x4f,0xd0,0xc0,0xe1,0x67,0x9e,0x68,0xa5,0x40,0x55,0x4e,0xee, +0xf9,0xe2,0xf7,0x77,0x5d,0x8d,0x35,0xbd,0x55,0x46,0xee,0xae, +0x3d,0x34,0xb4,0xad,0x74,0x3e,0x06,0x7d,0xc9,0xbf,0x5a,0x9c, +0xa1,0xf5,0x38,0xa9,0x18,0x11,0xe1,0x37,0x65,0x88,0x81,0xa1, +0x77,0xfe,0x27,0xed,0x2b,0xd5,0xc7,0xeb,0xf9,0xf5,0x79,0x97, +0xa6,0x8e,0x4e,0xd1,0x3c,0x4c,0x57,0x14,0x4e,0x1d,0x7e,0xad, +0xb3,0x81,0xdc,0xc3,0x42,0x57,0xb6,0x1d,0x64,0xc7,0x57,0x72, +0x0b,0xa9,0x87,0x56,0x07,0xe1,0x40,0x0c,0x2a,0xba,0x96,0x9e, +0x77,0x4c,0xbb,0xa1,0x4f,0x69,0x63,0xf2,0x00,0xf9,0x79,0xbc, +0xf2,0xe1,0xf4,0x31,0xc7,0xed,0x74,0xaf,0x3e,0xd6,0x72,0x8b, +0xbf,0xa2,0x95,0x3a,0x51,0x7d,0xed,0xbe,0x27,0xa8,0x87,0x7b, +0xde,0x67,0xed,0x6b,0x55,0xdd,0xdd,0xbc,0xf7,0xc5,0xb9,0x81, +0x6e,0x1a,0x39,0x50,0x35,0x78,0x78,0xf0,0x40,0x0d,0x1d,0x21, +0x5d,0xd4,0x61,0x28,0xba,0x56,0x98,0xae,0xf5,0x3c,0xa3,0x18, +0x39,0x7d,0x4c,0x98,0x8b,0x41,0x57,0xf7,0xc7,0x1f,0xb5,0x07, +0x1a,0xd4,0x99,0x2a,0xa9,0x97,0xa5,0xce,0x34,0x43,0xb9,0xab, +0xa9,0x4e,0x9f,0xbd,0xec,0xf0,0x41,0x6e,0x29,0x19,0x69,0x64, +0x0b,0xdd,0xdb,0xd6,0xc7,0x07,0x05,0x35,0xd5,0xd9,0xc3,0x4c, +0x34,0x4b,0xe5,0x5b,0x3a,0x16,0xa4,0x48,0x01,0xb8,0x61,0xaa, +0xd4,0xba,0x40,0x6e,0x2d,0xd9,0xe8,0x86,0xbe,0xaa,0x41,0xa1, +0x7e,0x83,0xb5,0xb2,0xaa,0xb7,0xf3,0xeb,0xa6,0xa9,0x2a,0xda, +0x5b,0xca,0x94,0x67,0x22,0xc9,0xe1,0xe5,0x75,0xa9,0xe5,0x4b, +0x8f,0x9b,0xb2,0x5a,0xd7,0x4b,0x94,0x3e,0x53,0xb6,0x1c,0xcb, +0x38,0xb1,0x3b,0x73,0x9b,0x36,0x7e,0x77,0xf2,0xea,0x64,0x03, +0x89,0x29,0x7b,0x2e,0xb5,0xbc,0x3d,0xeb,0x72,0xc8,0x71,0xed, +0xc9,0xfa,0x82,0xfe,0xaa,0xc0,0x05,0xd3,0x82,0x75,0x17,0xcf, +0x9d,0xd3,0x26,0x6f,0x9a,0x64,0x20,0x33,0xb6,0xf6,0x72,0x8b, +0x41,0x99,0xee,0xb9,0x91,0xda,0x95,0x2a,0xaf,0x98,0x49,0xd1, +0x5e,0xfa,0xa1,0xc9,0x33,0x8f,0x2c,0xd2,0xc4,0xaa,0xc6,0x2e, +0x0a,0x9f,0x3a,0x4a,0xdf,0x3a,0xdf,0x4f,0xb2,0xd3,0xac,0x6c, +0x08,0x43,0x0e,0xe3,0xd3,0x0b,0xb5,0x87,0x55,0x4f,0x2f,0xa4, +0x17,0x16,0x5e,0x0c,0x77,0xd4,0x4c,0xd3,0x75,0xcc,0x70,0x07, +0x4d,0x68,0x93,0x31,0xb2,0x0c,0x3f,0x75,0x35,0x23,0xf9,0x40, +0xe6,0x2e,0xad,0x34,0x54,0x59,0x75,0x78,0xda,0xf8,0x11,0xa3, +0x23,0x4d,0xb5,0x74,0xac,0x34,0x08,0x37,0xb4,0x55,0x3d,0xc9, +0x4b,0xcf,0x2f,0x3b,0xe7,0x6b,0xa2,0x91,0x2b,0x4b,0xa5,0xcf, +0x2a,0x89,0x38,0x17,0xca,0x2d,0x6d,0x02,0x26,0xb9,0x47,0x6b, +0xfe,0x15,0x5a,0x1d,0x47,0x3f,0x4a,0xa4,0xb1,0x0f,0x4a,0x4f, +0x4a,0x3e,0xa8,0xbb,0xa4,0x1c,0x5c,0x94,0x1c,0x1e,0xbe,0x68, +0x7e,0x94,0xee,0x92,0x12,0x95,0x34,0x3f,0x5d,0x73,0xea,0x57, +0x1f,0xd4,0x70,0x72,0x40,0xd3,0x49,0xd5,0xff,0x43,0xd0,0xf1, +0xb7,0x12,0x15,0x67,0x5c,0x79,0xa2,0x6d,0x6c,0x33,0xe0,0xd7, +0x40,0x0b,0x1d,0x81,0x47,0xeb,0x20,0x48,0x5e,0xaa,0xb2,0x0a, +0x5d,0x2e,0x1c,0x51,0xd4,0x2a,0xe5,0x99,0x52,0xa9,0x14,0x28, +0x4d,0x51,0x74,0x57,0xca,0x96,0xb2,0x6d,0x7f,0x33,0x45,0x7c, +0xc3,0x72,0x9b,0x7f,0x20,0x14,0x4a,0x1b,0x0a,0xd0,0x80,0x46, +0xef,0x01,0xbf,0x5c,0x95,0xfe,0x47,0x27,0xdf,0xd2,0x3c,0xd5, +0x55,0xe7,0x9c,0x7f,0x9b,0x90,0x9b,0xfe,0xb0,0xfc,0xe4,0xbf, +0x4c,0xf8,0xfb,0x78,0x2f,0xfd,0x61,0xc5,0x49,0x9f,0x6e,0xff, +0xc3,0xa2,0x61,0x85,0xb2,0x9e,0xd9,0x58,0x5f,0xf7,0xb9,0x9a, +0xd5,0xca,0xe2,0x69,0xc3,0x8e,0x0d,0x36,0xb0,0x0e,0x19,0xef, +0x35,0x53,0x1b,0x5f,0xad,0x43,0xad,0xfc,0xff,0x71,0xc4,0xbf, +0x04,0xe7,0xfd,0xa5,0x8e,0xd4,0xf5,0x93,0xd4,0x52,0x72,0x90, +0xec,0x4d,0x74,0x39,0xd7,0x55,0x36,0x34,0x91,0x5b,0xfe,0x25, +0xca,0x27,0x1d,0x51,0x0c,0xb5,0x8f,0xf5,0xcc,0x86,0xdd,0x91, +0x5a,0x69,0x8b,0x54,0x52,0xab,0x07,0x77,0x6a,0xde,0x3e,0xf0, +0x90,0x5b,0x69,0xec,0x54,0x72,0xab,0x61,0x1e,0xbd,0xfe,0xe6, +0xd0,0x20,0xdd,0x6d,0x52,0xba,0xba,0x41,0xf5,0xaf,0x54,0xf9, +0x3f,0xa6,0x53,0xf5,0x80,0x5f,0x71,0x4a,0x69,0x86,0xb4,0xef, +0x3f,0xa7,0xd1,0xba,0x86,0x9d,0x3a,0x3d,0x8d,0x71,0x03,0xfa, +0xc4,0xab,0xfe,0x4f,0xfc,0xff,0x77,0x8e,0xc8,0x57,0xff,0xbe, +0x9b,0xef,0xfb,0xcf,0xa9,0x20,0xcf,0xf8,0x6b,0xb9,0x9e,0x2a, +0xeb,0xd6,0xe9,0xd7,0x9a,0xab,0xa5,0xe1,0x4a,0x0b,0xdf,0x00, +0xef,0xf9,0xda,0x95,0x9f,0xfe,0xb1,0xd6,0x54,0x4a,0xd4,0x59, +0xcb,0x14,0xe5,0x7c,0x2b,0xf7,0xcf,0x92,0xdb,0xec,0xd6,0x06, +0x6d,0x54,0x38,0x6f,0x0f,0x4d,0xb9,0xa1,0x9f,0x75,0xf2,0xf8, +0x93,0xfc,0x8b,0x53,0xc2,0xd3,0x34,0x59,0x97,0x15,0x37,0x26, +0x78,0x1c,0xef,0x63,0x20,0x37,0xef,0xe7,0xdd,0xc9,0xb8,0x30, +0xe8,0xd3,0x62,0xed,0xb9,0x15,0x8a,0xc2,0xa5,0x69,0x53,0xc6, +0xeb,0x7b,0x4c,0x98,0x62,0x3f,0xc4,0xf7,0xc8,0xcd,0x20,0x8d, +0x47,0x80,0x62,0xd8,0xe5,0xbc,0xe0,0x4f,0xba,0x97,0xf6,0x38, +0xe9,0x01,0x2e,0x90,0x5b,0x36,0x74,0x95,0xda,0x16,0xc8,0x6d, +0x25,0x53,0x47,0x43,0xd5,0xe4,0xd8,0x25,0x61,0x1a,0x6f,0xe7, +0x37,0x4d,0x48,0xe9,0x7b,0x58,0x17,0x59,0x5d,0x40,0xf6,0x2c, +0x41,0x65,0x97,0x4e,0xdd,0x3d,0xf0,0x37,0xd1,0xff,0x72,0xab, +0xad,0x72,0xb0,0x6b,0xb8,0x8b,0xcd,0x84,0xab,0x9f,0x34,0x52, +0xe5,0x00,0xf9,0xb3,0x4a,0xfe,0x6f,0xbc,0xbd,0x07,0x5c,0x14, +0x57,0xf7,0x3f,0x6c,0x61,0x66,0x36,0x89,0xd1,0x68,0x32,0x64, +0xd9,0x4d,0x66,0xc4,0xde,0xb0,0x77,0xc5,0x06,0x28,0xd2,0x41, +0x7a,0xef,0x4d,0x94,0x26,0x22,0xa0,0x28,0x8a,0x52,0x02,0x0a, +0xd8,0xa5,0x28,0x48,0x55,0x8a,0x14,0xa5,0x2b,0x2a,0x20,0x4d, +0x11,0x7b,0x8b,0x1a,0x4d,0x34,0x26,0xa6,0x97,0x33,0x9b,0xb3, +0xe4,0xff,0xde,0x01,0x4d,0x34,0x89,0xcf,0xcf,0xe4,0xc9,0xf3, +0x7e,0xfc,0x6c,0x76,0xf6,0xce,0xbd,0xe7,0x9e,0x76,0xcf,0xfd, +0x9e,0x5b,0xc8,0xfb,0x5d,0x8b,0xa1,0x3f,0x37,0x70,0x2a,0x34, +0xaa,0xc2,0x0a,0xa1,0x94,0xd2,0xa4,0x47,0x61,0xd1,0x0a,0xd4, +0x22,0xd1,0x76,0x05,0x68,0x8d,0x81,0x22,0x6a,0x2e,0x0d,0x2b, +0x94,0xa5,0x64,0xb2,0xb1,0x87,0x7c,0xd5,0xdb,0x90,0x5d,0x09, +0x53,0xc8,0x64,0x53,0x85,0x53,0x6e,0x63,0x36,0xf5,0x35,0x0d, +0x23,0x49,0xab,0x85,0xb4,0x3e,0x26,0x58,0x91,0x6c,0x34,0x8e, +0xd6,0x87,0x90,0x45,0x90,0x40,0x32,0x68,0x2d,0x4c,0x30,0xe8, +0x29,0x31,0x87,0x10,0x03,0x52,0xa2,0x49,0xaa,0x8a,0x74,0x16, +0x02,0x25,0x06,0x79,0x5f,0x6a,0x3b,0x0d,0xc3,0xd1,0x97,0x7a, +0x42,0xa3,0x15,0x1c,0x81,0x15,0x90,0x4a,0xe6,0x23,0xe2,0x09, +0xce,0xe2,0x44,0x32,0x14,0x9c,0xc5,0x40,0x6f,0x81,0x87,0xd0, +0x01,0x73,0xa8,0x81,0x73,0x80,0x27,0xa6,0xba,0x96,0x99,0xde, +0x76,0x98,0x87,0x18,0xc5,0x54,0x6a,0x1e,0x8d,0x32,0xe5,0x80, +0x80,0xd9,0xd4,0x56,0x3a,0xf8,0x2e,0xaa,0x09,0x03,0x44,0x3e, +0x9d,0x94,0x4d,0x2e,0x38,0x80,0x9a,0xa1,0x43,0x1c,0x7d,0xa0, +0x60,0xd5,0xc5,0xe2,0x4d,0x1a,0x2e,0x0a,0x93,0xa8,0x73,0xca, +0x61,0x3a,0x70,0x9a,0xc1,0x36,0xe5,0x18,0x4a,0x57,0x98,0x4e, +0x46,0x58,0x3c,0xd4,0x89,0x93,0xcf,0x68,0x38,0xc8,0x9c,0x77, +0x6d,0x34,0xdd,0xcd,0xa5,0x32,0x4d,0xbb,0x2b,0x9a,0xce,0xcb, +0xe0,0xe0,0x37,0x6d,0xd3,0x18,0x8b,0x00,0x2f,0x7b,0x1e,0x77, +0x31,0x86,0xce,0xbe,0xa6,0x04,0x8f,0x34,0x9d,0xf0,0x35,0x12, +0x7f,0xda,0xe7,0x7a,0x9d,0x26,0xf6,0xce,0x07,0x3b,0x61,0x1e, +0x2b,0xbc,0xb5,0x4c,0xf9,0x16,0xd3,0xa9,0xec,0x78,0xf6,0x24, +0x12,0x25,0x02,0xb0,0xa7,0x73,0x4b,0x6a,0x78,0xd8,0xc5,0xb4, +0x9c,0x28,0x6c,0xe2,0xae,0x33,0xa6,0xce,0x85,0xad,0xe2,0xcf, +0x9a,0x80,0x12,0x0b,0x6e,0x9a,0xc1,0x37,0x78,0x90,0x5e,0x5e, +0x61,0xda,0x14,0x45,0x72,0x45,0xd3,0x28,0x57,0xb3,0xe5,0x32, +0x3c,0x38,0xda,0x40,0x9c,0x84,0x3e,0x50,0x48,0xd9,0x9a,0xc2, +0x9c,0xbc,0x74,0xde,0xb7,0x82,0x5a,0xb7,0x36,0x3c,0x6a,0x8d, +0x3c,0x2c,0x24,0x25,0xdd,0x87,0xdf,0xbb,0x26,0x28,0xd5,0x4b, +0x6e,0xef,0x1b,0xe8,0x1f,0xc6,0x17,0xba,0x52,0x19,0x87,0xd2, +0x76,0x67,0xc9,0xd3,0x33,0xa3,0xc3,0x8a,0xf8,0x8d,0x59,0xd9, +0x11,0x25,0xc4,0x1d,0x2e,0xc3,0x18,0x45,0x1e,0xfb,0x3a,0x19, +0x1b,0x3a,0x0b,0x52,0x9c,0xc6,0x62,0xef,0x32,0x07,0xf4,0x2c, +0x73,0x90,0xe6,0xbc,0x70,0x58,0x4c,0x05,0x8b,0xf9,0xfd,0x4c, +0xee,0xc6,0x83,0x01,0xc9,0xdc,0x9e,0x9a,0xc3,0xc5,0xe5,0xc7, +0x25,0xba,0xb4,0x99,0xad,0xcf,0x62,0x0b,0xd9,0x06,0x92,0x49, +0xf5,0x64,0x8d,0x44,0x76,0x22,0xe3,0x2f,0x5a,0xcb,0xc4,0x09, +0xfb,0x30,0xc9,0xd8,0x12,0xd9,0xd6,0xe2,0xac,0xe2,0x7c,0xde, +0xa7,0x92,0x5a,0xe3,0x17,0xb2,0xc9,0x5b,0xee,0xec,0x95,0x96, +0xe1,0xce,0x1f,0xb6,0xf5,0x3c,0x60,0x23,0x37,0xf4,0x5e,0xe3, +0xbd,0x9a,0x2f,0x72,0xa2,0xb2,0x8e,0x64,0xee,0x29,0x96,0x9f, +0x28,0x09,0x5f,0x57,0xc6,0x07,0xd7,0x1d,0x5b,0x5f,0x2f,0x17, +0x17,0x29,0xc7,0x08,0x27,0x59,0x31,0x51,0xe3,0x7b,0x13,0x35, +0x31,0x7d,0xe3,0x7a,0xd3,0x37,0xce,0x49,0xb9,0x9d,0xc5,0x2d, +0x0f,0x61,0x0b,0x13,0x0c,0x6d,0x14,0x81,0x6a,0xba,0x90,0x80, +0x03,0xd8,0x2e,0xe8,0x43,0x3f,0xdc,0x79,0xae,0xe6,0x48,0x97, +0x59,0x99,0x34,0xd0,0xdc,0x6d,0xa5,0xd9,0x56,0x89,0x30,0x97, +0x69,0x88,0x2e,0x59,0x7d,0xd0,0xa6,0xbd,0x58,0xba,0xfa,0xc2, +0x8a,0xba,0xe9,0x29,0x12,0xe8,0xa3,0x83,0xfd,0x18,0x1c,0x1c, +0xae,0xa5,0x8e,0x53,0x64,0x38,0xf5,0xb2,0x3a,0x0c,0x0e,0xe7, +0x48,0x6c,0xb9,0xc5,0xde,0x2d,0xed,0xb8,0x7a,0x80,0x53,0xce, +0x60,0x16,0x1f,0xf0,0xe8,0xb8,0x27,0x1b,0x98,0x21,0xd4,0xa8, +0x5e,0x53,0xb2,0x49,0x4c,0x65,0xc1,0xb1,0xce,0x5b,0xb2,0xb4, +0xf8,0x03,0xb1,0xfb,0x38,0xf0,0xe8,0xc2,0x50,0x7a,0x43,0x65, +0x78,0xf5,0x19,0xd9,0xf7,0x4d,0xa7,0x1e,0xdf,0x38,0xe9,0x6d, +0x56,0xc2,0xb5,0x55,0x53,0x57,0xed,0xb5,0xab,0xd5,0xe5,0x38, +0x7e,0xea,0x64,0x54,0x35,0x49,0xb3,0x4f,0xb5,0xe7,0x17,0xe9, +0x7c,0x41,0x27,0xae,0x4f,0x5c,0x17,0x2a,0x33,0x0a,0x33,0x32, +0x09,0xe4,0x46,0x33,0x03,0x95,0x56,0x38,0x42,0x55,0x48,0x26, +0x28,0x6c,0x39,0xad,0x4c,0x16,0x11,0xd6,0x44,0x18,0x80,0xea, +0xec,0xad,0xe3,0xf5,0x17,0x53,0xf8,0x22,0x78,0x4c,0xc1,0x52, +0x3a,0xe5,0x0a,0x85,0x4b,0xe9,0x3c,0xc8,0xa1,0x60,0x06,0xbd, +0xb3,0x8b,0x42,0x96,0xd6,0x74,0xb1,0xd3,0x8e,0xe6,0x43,0x70, +0x0d,0x85,0xe3,0xe9,0xcd,0x4b,0x28,0x98,0x40,0xbb,0x2b,0xa5, +0x14,0x6a,0xd0,0x5b,0x74,0xa8,0x81,0x3b,0xa1,0x0a,0x67,0x91, +0x48,0x72,0xb7,0xe3,0xdb,0x56,0xbf,0x4a,0xbb,0x02,0x92,0x02, +0x5e,0x2e,0x38,0xde,0xd0,0x29,0xbb,0x6c,0x7b,0x1a,0xfb,0x17, +0x71,0xcb,0x0f,0x52,0x4b,0x0f,0x39,0xe7,0x9d,0x95,0x35,0xd5, +0x1e,0xbb,0x79,0xfa,0x44,0x98,0x7f,0x21,0x57,0x73,0x96,0x3a, +0x6e,0x6b,0x90,0xa6,0x4f,0xa6,0xc0,0x39,0x7a,0xa3,0x0d,0x0b, +0x1c,0x6b,0x57,0xf1,0xd1,0x8c,0xd6,0x2a,0x17,0xcb,0x65,0x32, +0xad,0x3a,0x0b,0xe8,0xef,0xc3,0x9d,0x0f,0xa5,0x2e,0xae,0x3d, +0xe1,0x6f,0x2e,0x33,0xb1,0xf3,0xd4,0xb4,0x70,0x4e,0xcf,0xf3, +0xe5,0xec,0x57,0x50,0x2e,0x75,0x6d,0xe1,0xed,0xf2,0x47,0x70, +0x95,0xdd,0xb4,0x63,0xd3,0x8e,0x8d,0xdb,0x97,0x67,0x48,0x67, +0x65,0xb9,0x97,0x9c,0x93,0x9d,0xcc,0x2d,0xad,0xcc,0xe7,0xf6, +0xc4,0xec,0x89,0xd9,0x1b,0x7b,0x7e,0x9d,0xf4,0xde,0x9a,0x32, +0x2f,0x63,0x99,0x75,0x80,0x87,0xd3,0x6a,0x6e,0x60,0x09,0x68, +0xc3,0x12,0x76,0x55,0x69,0x5d,0x58,0x93,0xbc,0xa9,0x2e,0xbd, +0xa0,0x94,0x87,0x3e,0xd8,0xa7,0xa6,0x86,0xa8,0xbd,0x3f,0x95, +0x59,0xba,0xb7,0xee,0x8c,0xec,0xcc,0xc6,0xba,0x90,0x52,0x8e, +0x04,0xfe,0xfe,0xf6,0x35,0x48,0x5e,0x52,0x05,0x1e,0xb6,0xe9, +0xa6,0x72,0x53,0xdb,0xb0,0x55,0x1e,0x3c,0xf6,0x81,0x3e,0xf6, +0xf6,0x64,0x3a,0xe8,0x4f,0x85,0x78,0x6c,0xb4,0x35,0x97,0x99, +0xef,0xb5,0xcd,0xf4,0x20,0x56,0xc3,0xfe,0x35,0xf6,0x14,0x24, +0xc3,0xbb,0xec,0x6c,0xf3,0xea,0x27,0xfc,0x79,0xe6,0xc9,0x99, +0xea,0xbb,0x77,0xcf,0x38,0x68,0x70,0xcb,0x19,0x0d,0x73,0x07, +0x02,0xab,0x86,0xbe,0xae,0x03,0x83,0xb7,0xea,0xeb,0xb8,0xf9, +0x52,0x48,0x83,0xa1,0x2c,0x8e,0x86,0xa9,0x40,0x3e,0x41,0x67, +0x48,0x14,0xd2,0xa2,0x16,0x32,0x20,0x7e,0x41,0xec,0x99,0x57, +0xbc,0x19,0x88,0x15,0xff,0xa1,0x9d,0xf8,0xb6,0x10,0xf6,0xb1, +0xd7,0x19,0x74,0x00,0xad,0x20,0x73,0x18,0x8d,0x53,0x91,0x7c, +0xb2,0xcd,0x09,0x1c,0x85,0x01,0xaa,0x77,0x04,0x5f,0x08,0x50, +0xfa,0xde,0x11,0x4a,0xf1,0x34,0x81,0x42,0x92,0xae,0x59,0xf4, +0x73,0x28,0xa4,0xfd,0x19,0x03,0x5f,0x80,0xf3,0xab,0x10,0xc1, +0xc0,0xb4,0xff,0x0c,0xa2,0x04,0x9f,0x3f,0xcd,0xf9,0x7b,0x85, +0x1b,0x50,0xc4,0x5e,0x57,0x96,0x2d,0x64,0x06,0x06,0xc2,0x4d, +0x71,0x1e,0xd4,0x02,0xc7,0x76,0x74,0x84,0x4d,0x3a,0xb8,0x09, +0x1d,0xf5,0xc1,0xb1,0x5b,0xeb,0xf9,0x2b,0x88,0x02,0xc7,0x36, +0x74,0x14,0xde,0xff,0x43,0x0d,0xe5,0xfb,0xe8,0x68,0x00,0x8e, +0x18,0x45,0x62,0x5f,0x06,0x2c,0x80,0x9d,0xaf,0x5c,0x5b,0xbd, +0x0e,0x7b,0x70,0x32,0x7b,0x45,0xd1,0x0a,0x6f,0x75,0xb7,0x92, +0xaf,0xcb,0x9d,0xf8,0x19,0x8d,0xd4,0x94,0x09,0x48,0x21,0xfd, +0x99,0x06,0x50,0xfc,0x40,0x34,0x07,0x37,0x70,0x60,0x3f,0x2d, +0xac,0x6a,0xe6,0xf3,0x98,0x66,0xdf,0xaa,0xa9,0x53,0x7d,0x1d, +0x4d,0x38,0x7f,0xc6,0xa4,0xd0,0xf1,0x53,0x4e,0x8c,0x51,0x7d, +0x90,0xfa,0xbf,0x17,0x7c,0x87,0xbe,0x56,0x35,0x28,0x54,0x7d, +0x0d,0x4a,0x63,0x14,0xf9,0xaf,0x13,0x53,0x89,0x4f,0xbd,0x4e, +0xe4,0x5d,0xfa,0x2a,0xeb,0x0b,0xb3,0x41,0xeb,0x2f,0xbd,0x02, +0xe6,0xbd,0x72,0xb5,0x1a,0x3e,0x51,0xfd,0xdb,0x6f,0x06,0x2a, +0x12,0xff,0xc7,0xfb,0x1d,0x02,0xa7,0xfa,0x97,0xe5,0x4a,0xee, +0xd4,0x2b,0x89,0x71,0xaa,0xaf,0xda,0x23,0x51,0x87,0xec,0x57, +0xcf,0x0f,0x1e,0xb8,0x9e,0x45,0x9a,0x99,0x18,0x3e,0xca,0x00, +0xe5,0x32,0x7c,0xfb,0xf6,0x02,0x50,0x05,0xf6,0xe2,0xad,0x47, +0x39,0xdc,0xe2,0x3c,0x4a,0x3b,0xdc,0xd6,0x62,0xae,0x7c,0x81, +0x4d,0xcd,0x55,0x32,0xd2,0x1f,0x5e,0x3c,0x05,0x92,0x64,0x0e, +0x16,0xf7,0xa6,0x7a,0x87,0xd9,0x25,0xc5,0x53,0x71,0x59,0x7d, +0xb0,0xb8,0x62,0x9d,0xae,0x38,0xc1,0xe2,0x9b,0x38,0xae,0xca, +0x0f,0x06,0x89,0xff,0x70,0x50,0xd5,0x11,0x7c,0x13,0xc6,0x89, +0xef,0x34,0x15,0x53,0x59,0xa8,0xea,0xc4,0xaa,0x9e,0x45,0x62, +0x05,0xc3,0x42,0xdf,0xfc,0x4b,0xcd,0x87,0x78,0x87,0xcc,0x10, +0x1f,0xca,0x37,0x34,0x2c,0xc4,0x52,0x6e,0x19,0x96,0x59,0x18, +0xca,0x87,0x14,0x39,0x84,0x50,0x26,0x87,0xf2,0xb5,0xa1,0xaf, +0xbc,0xa7,0xea,0x87,0x6c,0x51,0x5a,0x7a,0x1e,0xbf,0x87,0xc9, +0x0b,0x27,0x23,0x35,0x3c,0xcc,0x9f,0x64,0x1a,0xfe,0x69,0xe2, +0x48,0x3d,0x0c,0xab,0x15,0x43,0xc5,0x71,0xdc,0xf3,0xb6,0x77, +0x1c,0xf7,0xbc,0x15,0xc7,0x31,0x58,0xaa,0xbe,0xe2,0x8d,0x48, +0x55,0xf8,0x9e,0xbd,0x70,0xba,0xfe,0xe2,0x45,0x8b,0x7a,0x5d, +0x5d,0x0b,0x9b,0xa5,0x4b,0x4f,0xdb,0x5c,0xe0,0xeb,0x54,0x3c, +0x82,0x0f,0x95,0x92,0x34,0xb3,0xf4,0xf0,0xa1,0xd2,0xd2,0xc3, +0x6b,0x3d,0xb8,0x10,0xc6,0x23,0x98,0x7c,0x91,0x06,0x77,0x70, +0x15,0xdb,0xd2,0x90,0xd7,0x5c,0xb9,0xea,0xb0,0x6b,0xe4,0x86, +0xb8,0x98,0x48,0x3e,0x76,0x7b,0xea,0x7d,0xca,0x86,0x0e,0x1d, +0x95,0x1f,0x43,0x35,0x6f,0xd9,0x17,0x11,0x2a,0x0b,0x59,0xbb, +0x31,0xd0,0x6f,0xed,0xfe,0xd4,0x48,0xce,0xc3,0x95,0x0a,0xdd, +0x5f,0xb8,0xe6,0xac,0x28,0x40,0xbb,0x22,0x8b,0x5d,0x5a,0x38, +0x19,0x97,0xd6,0x86,0x50,0xc4,0x69,0xe7,0xfd,0xf6,0x83,0xbc, +0xcb,0x25,0x54,0x6b,0x8f,0x64,0x64,0xee,0xe3,0x5d,0xcb,0xa8, +0x88,0x4d,0xeb,0xa2,0x42,0xe5,0x21,0x91,0xbb,0x0e,0x67,0xef, +0xcf,0xfe,0xec,0x36,0xbf,0x25,0x8b,0xb2,0xa0,0x93,0xd7,0x51, +0x4b,0xed,0x9c,0xdd,0x49,0xf8,0xae,0x0c,0x3e,0x2d,0x2e,0x11, +0xf7,0x55,0xbc,0xc9,0xc2,0x1b,0x30,0xde,0xe9,0x08,0x0e,0xc2, +0xc1,0x38,0x08,0x06,0x3b,0xf9,0xc1,0x1b,0x38,0x9e,0x38,0xb8, +0x8f,0x22,0x53,0x0c,0x43,0xdd,0x11,0x24,0x0c,0xc1,0x57,0x9f, +0xab,0x82,0xb8,0x82,0x0c,0x51,0x24,0x59,0x37,0xb9,0x86,0x4a, +0xd8,0x0b,0x9f,0x5f,0xc3,0xcf,0x21,0x11,0x94,0xd7,0x94,0xb1, +0xb4,0x72,0x00,0xf1,0x4b,0x61,0x96,0x62,0x14,0xbb,0x4f,0xd9, +0x1f,0x9d,0x68,0x71,0x73,0x67,0x32,0xfc,0x3f,0xf6,0xfc,0xb1, +0x82,0xc2,0x54,0x7e,0x07,0xed,0x7e,0x38,0xac,0x82,0x2b,0x3c, +0xeb,0x0e,0xcb,0xe9,0xfb,0x16,0xb5,0xd3,0x17,0x3a,0x7a,0x78, +0xaf,0xe5,0x8e,0xfb,0x50,0x47,0x0f,0x14,0x65,0xd5,0xca,0x1b, +0xf2,0x02,0xcc,0x78,0xbf,0x05,0xcc,0x58,0x33,0x9f,0xc5,0xc6, +0x15,0xae,0x97,0xf9,0x03,0xc4,0xb7,0xd6,0xa4,0x15,0x11,0x6d, +0x17,0x16,0xa6,0x35,0x72,0xb7,0x9c,0x68,0x57,0xdb,0x00,0x73, +0x6e,0xe0,0x02,0x21,0xee,0x1a,0x8b,0x17,0x60,0x33,0x0d,0xe6, +0x6d,0xd4,0x25,0x06,0xcd,0xf5,0x28,0xf8,0x61,0x96,0x72,0x10, +0x83,0x7d,0xbc,0x28,0x5d,0x06,0xfa,0x14,0x53,0x58,0x26,0x0c, +0x63,0xc4,0xb5,0x37,0xe3,0x4a,0xd6,0xa3,0xbe,0x75,0xdd,0x65, +0x39,0x98,0x3c,0x5b,0x5b,0x7b,0xd3,0xff,0xb1,0x4d,0x3b,0x7f, +0xf9,0x3b,0xb3,0x63,0x06,0x53,0xa8,0x52,0x5b,0x83,0x0c,0x2d, +0xf9,0x6f,0x2b,0x5c,0x6f,0xe4,0x4d,0xaa,0xd7,0xe7,0xb5,0x46, +0x36,0x7a,0x52,0x6d,0xe0,0xc1,0x86,0x94,0x45,0xd6,0x35,0xca, +0xc4,0xc5,0xad,0xb1,0x9f,0x7e,0x09,0xec,0xe9,0xda,0xf5,0x2b, +0x4b,0x38,0xfc,0x50,0xd9,0xc8,0x5a,0xd8,0x1d,0x38,0xea,0xc5, +0xc3,0x55,0xc1,0x99,0xca,0x74,0xdf,0x67,0x6b,0x26,0x13,0x57, +0xbc,0xc6,0x4e,0x1d,0x8f,0x2c,0x37,0x50,0x58,0xf0,0x8b,0xb5, +0xea,0x1f,0xb5,0x63,0xcc,0xa4,0xb8,0x9b,0x26,0xbb,0xc8,0xd1, +0x11,0xdf,0x42,0x35,0xfc,0x88,0x60,0x51,0xf2,0x0d,0x8e,0xc7, +0x9b,0x92,0x53,0xca,0x78,0x1c,0xdc,0xc6,0xe2,0x9c,0xf9,0x5f, +0xc2,0xd8,0x9e,0xa5,0xb4,0xb1,0xb7,0xbe,0x84,0x39,0xe5,0xd5, +0xd1,0x1b,0x4b,0x39,0xe5,0x79,0x26,0xd2,0xc3,0x61,0xab,0x1b, +0x81,0x63,0x66,0xe0,0x0e,0xbf,0xb2,0xdf,0xb4,0x5c,0x22,0xb6, +0x7a,0xd3,0xe8,0xd2,0xe8,0xd1,0x46,0xda,0x64,0x64,0xbc,0xd1, +0xa2,0xfd,0x0d,0x7f,0x4a,0xc5,0xd0,0xef,0x44,0x0b,0xdf,0xc1, +0xb4,0x1c,0x39,0xd1,0xda,0x7a,0xc4,0xd9,0x88,0xd3,0x63,0x8c, +0xfc,0x9c,0x0d,0xb9,0x81,0xd0,0x00,0x6b,0x49,0x7a,0x33,0xa0, +0xeb,0x6a,0xdd,0x6e,0x3e,0x85,0xb6,0xd9,0x7b,0x6d,0xc9,0x4f, +0xf2,0x6f,0xae,0xd7,0x5f,0x2b,0xe6,0x4d,0x2b,0x28,0x63,0x7f, +0x8b,0x9e,0x65,0x81,0xae,0xaf,0xf8,0x6c,0x41,0x56,0xfa,0x6c, +0x59,0xe0,0x43,0xec,0xa3,0xa5,0x63,0xbd,0x81,0xdb,0x46,0x57, +0x6d,0xf2,0xb8,0x81,0x83,0xe4,0x3d,0x0b,0x2a,0xfc,0x6f,0x0b, +0x2a,0x77,0xab,0x9d,0xe7,0xf3,0x56,0xd8,0x87,0x41,0x8d,0x85, +0xc6,0x23,0xc6,0x5e,0x34,0x80,0xbe,0x3c,0x44,0xc3,0x5d,0xf6, +0xeb,0xf6,0xae,0x27,0x0f,0x9a,0xf5,0x46,0x73,0x51,0xd8,0xc8, +0xe0,0x1a,0xdc,0xc5,0x2e,0x75,0x3d,0x72,0xf6,0xd9,0x22,0xcb, +0x76,0x0e,0x54,0x26,0xd2,0x26,0x86,0x4e,0x73,0x39,0x31,0x81, +0x26,0x19,0x59,0xe9,0xdc,0x9e,0x64,0xba,0x13,0x52,0x54,0x2f, +0xcd,0x83,0x53,0xc4,0x70,0x25,0xd4,0x85,0x1e,0x23,0xc2,0xe7, +0x73,0x95,0xfd,0x98,0x25,0xc1,0xd4,0x32,0xe6,0xca,0x61,0x0a, +0xf7,0x32,0x3d,0xd3,0xe2,0xc0,0x4d,0xc2,0x2e,0xe1,0x36,0xab, +0x37,0x8f,0x2a,0x74,0xb3,0x4e,0x37,0x91,0x3f,0x4b,0x4a,0x17, +0x1c,0xd4,0x2b,0xb2,0xe3,0x75,0xa6,0x56,0xf9,0x74,0xdc,0xa6, +0x7c,0xcb,0x4f,0x12,0x74,0xf3,0x2c,0x79,0xbd,0x11,0xda,0xee, +0x53,0xcb,0x77,0x7d,0x4a,0x29,0xa7,0x63,0x34,0x0b,0x4c,0x47, +0xd3,0xa3,0xe3,0xc7,0x36,0x06,0xe7,0x72,0x18,0x87,0x67,0xa9, +0x4d,0xd9,0x5b,0xf3,0x8b,0x65,0x70,0x5e,0x15,0x19,0x3d,0xd3, +0x49,0x2e,0x5e,0x7b,0x0f,0x07,0x70,0xc4,0x3f,0xce,0x52,0x7b, +0x82,0x92,0x57,0x7b,0xcb,0x06,0x0a,0xb4,0x42,0xef,0xf9,0x12, +0xca,0x0b,0xba,0xba,0xf4,0xf4,0x45,0x5d,0x8d,0x9c,0xa0,0x6d, +0xbf,0x70,0x15,0xb7,0x95,0xbe,0xed,0xab,0x55,0x39,0x51,0xfe, +0x72,0x9e,0xfc,0xe8,0xfa,0xa9,0x2b,0x47,0xf8,0x24,0x7a,0xe9, +0x91,0x96,0x15,0x3f,0xc9,0x61,0x14,0xdc,0x64,0xb1,0x31,0x99, +0x16,0x57,0x58,0x1e,0x8a,0x2b,0x2c,0xca,0x4a,0x4c,0x65,0x27, +0x93,0x4c,0x9a,0x11,0x33,0x69,0x91,0xbd,0xc7,0x24,0x93,0x66, +0xc4,0x4c,0x5a,0x64,0x89,0x1b,0x78,0x5e,0xb0,0x25,0xc6,0x63, +0xae,0xb4,0xfd,0x78,0xc7,0xb9,0x6a,0xf4,0x61,0xde,0x77,0x27, +0x65,0xb9,0x6f,0xe5,0xc1,0x06,0x59,0x4b,0x43,0xf6,0xa7,0x5c, +0x4d,0x2b,0x0d,0xa3,0x67,0x7f,0x89,0xc3,0x70,0xf8,0x9c,0xf1, +0x38,0x9a,0xdb,0x4a,0x70,0x88,0x88,0x4f,0xea,0x19,0xa0,0x2b, +0xcf,0x7c,0xf3,0x4d,0x8d,0x39,0xd2,0xdc,0x56,0x42,0x2b,0x6e, +0x89,0xf9,0x04,0xd9,0xe8,0x0b,0x9e,0xf7,0xc3,0xb8,0xc2,0x68, +0xaa,0x39,0x32,0x6d,0x95,0x93,0xcc,0xd4,0xdd,0x77,0xb9,0xa9, +0x53,0x66,0x8d,0x07,0x67,0x69,0x47,0xad,0xa8,0x6c,0xf6,0xbd, +0x27,0x7f,0x79,0x33,0x16,0x5c,0x84,0xb1,0x1b,0x59,0xb0,0x01, +0x0d,0x18,0x09,0x1b,0x60,0x03,0x92,0x6f,0xb4,0x41,0x6b,0xd4, +0x20,0x49,0xe0,0x06,0xdc,0x00,0xe4,0x1b,0xac,0xf9,0x73,0x2a, +0x38,0x9b,0xa0,0x9a,0x81,0x30,0x87,0x4c,0x11,0x30,0x1b,0xc4, +0xc7,0xd9,0x30,0x87,0xc4,0x8f,0x81,0x38,0x9b,0x4c,0x15,0x38, +0x07,0xc5,0xc7,0x39,0xdc,0x4e,0x60,0xd8,0x2b,0x75,0x65,0xa7, +0x0e,0xf3,0xe6,0xc5,0x94,0xfb,0xda,0xa0,0x20,0x27,0xb9,0x81, +0x4f,0x65,0x3b,0x41,0x8b,0xed,0x45,0x95,0x6d,0x15,0x87,0xd7, +0x78,0xa6,0x72,0x8d,0x47,0xa9,0xd3,0xc1,0x8e,0x25,0x4b,0x49, +0x9e,0xad,0x3f,0x1f,0xdf,0xc1,0x77,0xda,0xe7,0x43,0x1f,0x9e, +0x84,0xa8,0xc6,0xbb,0x2c,0x64,0x2b,0x23,0x97,0x09,0x73,0xd0, +0x99,0x21,0x13,0xcf,0x76,0x38,0xcf,0x02,0xfd,0xe4,0x73,0x32, +0x25,0xbc,0xa3,0xf1,0x39,0xd2,0x48,0x6b,0x4c,0x24,0xf5,0x07, +0x3d,0x99,0x08,0x34,0x5f,0xae,0x32,0x6e,0xd9,0xad,0x4f,0xf8, +0x2c,0xe6,0x93,0xce,0x5b,0x4f,0x9f,0x76,0xce,0x9f,0xc1,0xad, +0x61,0x66,0x2c,0x9b,0x3f,0x8e,0xf3,0x68,0x63,0xef,0x97,0x31, +0x35,0x33,0xa9,0x2a,0xda,0xea,0x53,0x2a,0x6b,0x77,0xfa,0xa1, +0x42,0x59,0x79,0x50,0x8e,0x2b,0xa7,0x81,0xfe,0x74,0x39,0xbc, +0xc1,0x5e,0x3c,0xc5,0xa4,0xee,0xda,0xbc,0x81,0x5f,0xc3,0xac, +0xdf,0xbc,0x25,0x82,0xf8,0xa9,0x04,0xe2,0x04,0x96,0xfd,0xfa, +0xc6,0x8d,0xef,0xbf,0x5f,0x70,0x63,0xcc,0x98,0x05,0x0b,0x46, +0x8c,0xb8,0xb1,0xe0,0x6b,0xbe,0x5d,0x45,0xcf,0xf5,0x64,0x47, +0x47,0x85,0xf8,0xb1,0xd6,0xd3,0x73,0xb5,0xd6,0xe3,0xc5,0xbd, +0x70,0x20,0xf3,0x91,0x17,0xb8,0x75,0xa2,0x1b,0x78,0x2d,0x44, +0x2f,0x74,0x5b,0x06,0x6e,0xe8,0xc5,0x40,0x09,0x4e,0x65,0x3b, +0x09,0xf7,0xc4,0xd9,0x63,0xe0,0x16,0x7c,0xc5,0xd6,0xe3,0x2a, +0xe6,0x87,0x8f,0xa9,0xe6,0xea,0xf2,0xe3,0xe7,0x64,0x17,0xec, +0x6b,0x66,0xcc,0x72,0x71,0xb4,0x0d,0xe7,0x4e,0x87,0x52,0x45, +0xfb,0x32,0xf3,0xea,0xe4,0xd5,0xd9,0x81,0x5e,0x24,0x11,0xf0, +0x0c,0xf2,0x75,0xf1,0x21,0x01,0x07,0x55,0x28,0xb3,0x9e,0xb6, +0xf3,0xe1,0x31,0xfb,0xa8,0xa9,0xea,0xe2,0x19,0xb7,0x23,0xf6, +0x3b,0xf9,0xed,0x4c,0xe5,0xee,0x63,0xf9,0xf5,0xb2,0x36,0xb3, +0x63,0xf3,0x97,0xb9,0xae,0xf6,0x0e,0xe6,0x4e,0xf8,0x50,0x05, +0x19,0xb9,0xe9,0xc7,0xe5,0x27,0xf2,0xd6,0x7a,0xf3,0x31,0x8c, +0x6f,0x60,0xb0,0x39,0xe7,0x62,0x5d,0x43,0x9f,0xc9,0x5b,0xe7, +0xc6,0x6f,0x65,0x5c,0x57,0x07,0x59,0xd8,0x05,0x66,0x16,0x84, +0x72,0x76,0xde,0x94,0x4f,0x4e,0xb9,0xcf,0x75,0xf9,0xc0,0x6d, +0xbd,0xab,0x35,0xb3,0x98,0x2d,0x8f,0x48,0xca,0xef,0x71,0xf0, +0x68,0xd8,0x69,0xf9,0xf3,0x45,0x89,0x3b,0xe2,0x18,0x7d,0x8b, +0xd6,0xee,0x5d,0x94,0xf8,0x8a,0x83,0xfb,0x73,0xbb,0xb7,0x10, +0x4e,0xd6,0xc1,0x13,0x51,0x8a,0xe1,0xf0,0x68,0x22,0x83,0x7d, +0xb1,0x4f,0x89,0xe7,0xd3,0x27,0x54,0x32,0x96,0xa3,0xc4,0x86, +0x1e,0x08,0x25,0xff,0xe1,0x2d,0xac,0xc0,0xaf,0xd8,0x17,0x53, +0x2f,0x05,0xa5,0x7a,0xa3,0xb9,0xd6,0x04,0x0e,0xcc,0x64,0x50, +0x1b,0xf7,0x50,0x56,0xe0,0xb0,0x80,0x89,0x21,0xc1,0x64,0x07, +0xba,0xe0,0x28,0x42,0xad,0xfd,0x6f,0x51,0x33,0x50,0xfd,0x47, +0xba,0x25,0xb1,0xfa,0x7f,0xa0,0xdb,0x46,0x7c,0xfc,0x32,0x77, +0x2a,0xff,0x59,0xd6,0x0e,0xe1,0x5d,0x45,0xd3,0x0b,0x0b,0xdd, +0x18,0xd4,0x4d,0x26,0xdf,0xd7,0xde,0x83,0xec,0x10,0xec,0x7e, +0xb1,0xfc,0x0d,0x3c,0xe1,0x86,0xee,0xe2,0xbf,0xd3,0x18,0xca, +0x7f,0xf1,0xfd,0x6b,0xa8,0x85,0x05,0xbf,0xfa,0xfe,0x2d,0x36, +0xa6,0x2a,0xda,0xfe,0xe1,0x4a,0x09,0x36,0x76,0xb7,0xfd,0x2d, +0xa6,0xa3,0x15,0x57,0xfe,0x3e,0x5a,0xc3,0x1b,0xdd,0x57,0xfe, +0x56,0x2f,0x9f,0x29,0x72,0xfe,0x06,0xb6,0xc3,0xd0,0xee,0x6b, +0x7f,0x83,0x7c,0xa5,0x50,0x0e,0xd6,0xec,0xdf,0xdb,0xe0,0x5d, +0xff,0x15,0xb2,0x24,0xfb,0xe0,0x23,0x97,0xfd,0x27,0xa8,0xf8, +0x47,0x74,0xb9,0xfb,0x14,0xf4,0x4b,0xb9,0xd3,0x76,0xfc,0x4b, +0xb5,0x81,0x49,0x42,0x1f,0x45,0xf3,0x0b,0xae,0x06,0xe1,0xdd, +0xee,0xaf,0xd8,0xf2,0x4d,0x12,0x74,0x5f,0x70,0x2b,0xf0,0x7f, +0x75,0x45,0xc8,0x7c,0x95,0x0b,0xc1,0x92,0x5f,0x87,0xbe,0xb2, +0x55,0xe0,0x3f,0xb1,0x21,0xbc,0xd7,0x1d,0xff,0x0a,0x8a,0x68, +0x02,0x3b,0x5f,0x1a,0x47,0x30,0x9e,0x8c,0xa3,0x3f,0x6e,0x19, +0x93,0x5a,0xb7,0x7e,0xb1,0xf8,0x5d,0x2e,0xf5,0xbf,0xae,0x33, +0xed,0x55,0x22,0x7d,0x49,0x06,0xc5,0x5f,0xd4,0xa7,0xfe,0x89, +0x30,0xb5,0xc4,0x1f,0xff,0x48,0xeb,0x3b,0xf8,0x56,0x15,0xf4, +0x7a,0xe6,0x53,0x71,0xeb,0x9e,0x7c,0xa3,0x1e,0x8f,0xb1,0x78, +0x7e,0x96,0xfe,0x3d,0x14,0xe8,0x7b,0x20,0xb0,0x30,0xb2,0x9d, +0xcc,0xc1,0x5b,0x60,0x3a,0x0d,0x83,0x3e,0x99,0x29,0x6e,0xe3, +0xbf,0xc5,0xe0,0x98,0x19,0x33,0x71,0x10,0x87,0xd3,0xc5,0xad, +0x67,0xc1,0x5c,0xd1,0xfe,0x4f,0x47,0xe2,0xc1,0xee,0x76,0x56, +0x50,0x6e,0x67,0xe0,0x57,0xa5,0x92,0x7a,0x2a,0x6e,0x5a,0x13, +0x88,0x8f,0xbf,0x0a,0x4a,0x6a,0xdc,0xb3,0x1d,0xeb,0x69,0x2f, +0x79,0x50,0x72,0x77,0xed,0xbf,0xb4,0x81,0x4d,0x48,0xaf,0x7f, +0xc1,0xe3,0xb6,0xfe,0x8b,0x84,0xe1,0xea,0xab,0xcc,0x69,0xfd, +0x6b,0xe8,0xbf,0xc7,0xbe,0xf9,0x3f,0x0e,0x80,0x9a,0xdd,0xd7, +0xff,0x3d,0x61,0x73,0xfe,0x89,0x2f,0x8e,0xeb,0xfe,0xe4,0x5f, +0xe2,0x80,0xe4,0xc4,0x90,0xc3,0xc2,0x7c,0x5c,0x5c,0x57,0x87, +0x9a,0xb0,0x08,0xc8,0xc7,0xb6,0x0e,0xc9,0x6f,0x9c,0x0f,0x8b, +0x6d,0x6d,0x41,0x93,0x20,0x65,0xf2,0xa9,0xb3,0xa5,0x06,0xfe, +0x28,0x8c,0x78,0x79,0xea,0xdb,0xa5,0xdc,0xfc,0x7a,0x3b,0xf1, +0x3f,0x0a,0xbe,0x2f,0x0c,0x63,0x4c,0x7f,0xed,0x76,0x70,0xf6, +0x95,0x13,0x5e,0x5b,0xf7,0xc2,0xd7,0x25,0xb2,0xeb,0x1f,0x4d, +0x40,0x0a,0x65,0xc1,0xeb,0x75,0xb0,0x5f,0x58,0xf4,0x8b,0xf9, +0x6f,0xd2,0x15,0x29,0xb7,0xfd,0x5f,0x5b,0xfa,0xf9,0xe2,0xf1, +0x96,0xd9,0xe0,0xce,0x80,0xea,0xe5,0x3b,0xf0,0x2e,0xbc,0xab, +0x75,0x07,0x55,0x79,0x74,0x07,0x0d,0xf1,0x44,0xcb,0x3d,0xd8, +0xc2,0x42,0x06,0x79,0xdb,0x75,0xdc,0x4d,0x97,0xb7,0x62,0x74, +0x5d,0xdc,0x74,0xb8,0x81,0x8e,0xd0,0xa6,0x78,0xf7,0x05,0xe5, +0xfb,0x75,0x4b,0xc4,0xed,0xf5,0xce,0xc3,0x7c,0x52,0x1c,0x6d, +0x55,0xe0,0xd5,0xc6,0xfd,0x5b,0xdb,0xeb,0x8e,0xc2,0x90,0x17, +0xd6,0x77,0x5c,0xfe,0x77,0xfd,0xc0,0xca,0x57,0x2d,0x1c,0x4d, +0xef,0x3e,0xfb,0x3f,0xeb,0xf4,0x8b,0x7f,0xbc,0x45,0x84,0x74, +0xf7,0xc8,0xff,0x19,0x5b,0xf3,0xfe,0xc9,0x92,0x16,0xaa,0x75, +0x6b,0xfc,0xcf,0x38,0x4a,0xfb,0x5b,0x8b,0x65,0x5e,0xdd,0x93, +0xff,0x47,0x9c,0xcc,0x17,0xf4,0x41,0x83,0x7d,0xdd,0x13,0x1a, +0xb3,0x6e,0xaa,0x83,0x6c,0x03,0xbf,0x61,0xe9,0xdf,0x02,0x5d, +0x0d,0x9f,0x25,0xb7,0xd6,0x16,0x5e,0x51,0x1b,0xe8,0x07,0x8f, +0x5e,0x3a,0xc7,0x92,0xdc,0xcd,0xfc,0x0b,0x27,0x34,0xfc,0x04, +0x8d,0x17,0x86,0x54,0x0c,0x19,0x52,0xff,0x02,0x4d,0x88,0x79, +0xd5,0xf0,0xb1,0x21,0xc3,0xe7,0xdf,0xe8,0xc0,0xea,0x9f,0xf8, +0xe4,0x78,0xe2,0x92,0xff,0xc2,0x99,0x96,0xa7,0xa0,0xf3,0x92, +0x21,0xaa,0x94,0xbf,0xb0,0xcf,0x57,0xa3,0xbe,0x82,0x84,0x17, +0xd4,0x59,0xac,0xc4,0xdf,0xde,0x3c,0xbd,0xf3,0x2a,0x9d,0x44, +0x75,0x9f,0xf8,0xbd,0x7d,0x91,0x42,0xfd,0xef,0x0b,0x66,0xd6, +0xad,0xfe,0x9c,0xc2,0x1a,0x38,0x11,0xc9,0x82,0xfa,0x57,0xdf, +0x82,0x0d,0x1f,0x0f,0x06,0x33,0x40,0x36,0xfd,0x93,0x7b,0xe7, +0xa4,0xbe,0x15,0x93,0xf5,0x82,0x32,0x83,0x52,0xd7,0xee,0x57, +0xc3,0x41,0x74,0x75,0x40,0xcd,0xca,0x4a,0xef,0x45,0x16,0xd2, +0x02,0xd7,0x7b,0xe7,0x3a,0xf5,0x1b,0x16,0x1d,0x98,0xab,0x16, +0x13,0x47,0xb5,0xaf,0xb5,0x2b,0xd3,0x91,0xe3,0xe8,0x49,0xd8, +0x1f,0xa7,0xe3,0xb4,0xc7,0xa8,0x02,0xa3,0xf9,0x8b,0x2a,0x93, +0x8c,0xce,0x7f,0xc7,0x5f,0x64,0xbe,0x6b,0x39,0xff,0xf8,0x71, +0xcb,0xf2,0x91,0xdc,0x52,0x66,0xa4,0xd1,0xf2,0x49,0xe2,0x7a, +0xda,0xa0,0x7f,0x1e,0xb0,0xdc,0xbb,0xa5,0xec,0x6b,0x1e,0x27, +0x79,0xfc,0x92,0xb6,0x93,0x88,0xdb,0xff,0x17,0xa7,0x4b,0xd6, +0x09,0x13,0x15,0x59,0xbf,0x19,0x68,0xdb,0x7f,0x49,0xec,0x3f, +0x3b,0xfa,0x7f,0xc5,0x26,0xf3,0x8f,0x75,0xab,0x49,0xe6,0x82, +0xff,0x4a,0x28,0xeb,0x7f,0x32,0xb8,0xc6,0x91,0xc1,0xf5,0x5f, +0xf4,0x2a,0xee,0x80,0xf8,0xb0,0xd5,0xa9,0x87,0x72,0x49,0x98, +0xcd,0x8d,0x38,0xe4,0xe0,0x10,0xb1,0x36,0x80,0x44,0xf0,0x80, +0xd4,0xb5,0xd5,0x1c,0x49,0x60,0xf4,0x7a,0x97,0xc0,0xc8,0xd3, +0xfa,0x57,0xd5,0x1a,0xb8,0x09,0x9e,0xbc,0xe4,0x2a,0xc1,0xdd, +0xf4,0x6b,0x1e,0x90,0xd9,0x24,0x4c,0x7e,0x61,0xd8,0xfa,0x10, +0xaf,0x78,0xcd,0x76,0x10,0xf7,0x2a,0x07,0x98,0xdf,0x7d,0xe6, +0xb5,0x89,0xd8,0xfe,0xa3,0x19,0x76,0x48,0xf7,0x84,0xd7,0xec, +0x61,0xa6,0x30,0xf0,0x05,0xf1,0xf0,0xdd,0xee,0xf3,0xcf,0x0f, +0xdb,0x6c,0x53,0x4c,0xa5,0xe6,0xd3,0x38,0x43,0xe9,0x44,0x6d, +0xa5,0x71,0x8a,0xe0,0x44,0xcd,0xa3,0xc1,0xf1,0xf7,0x83,0x36, +0x7f,0x3a,0x8c,0x25,0x7f,0xe1,0x30,0x96,0xfc,0xb7,0xb3,0x8d, +0x73,0x7f,0xf5,0xa7,0x21,0x18,0xb2,0xc4,0xd3,0x58,0x97,0xc4, +0xd3,0x58,0xad,0xbd,0xa7,0xb1,0xc6,0x70,0x53,0x98,0xd1,0x3d, +0xa7,0xb1,0x66,0xc2,0xec,0x7f,0x24,0xa4,0x7f,0xf7,0xf7,0xaf, +0xcf,0xeb,0x0f,0x8a,0xba,0xbf,0xde,0x8a,0x3a,0xd9,0xdd,0xfa, +0x3f,0x3a,0x07,0xbc,0x1f,0x7c,0xfe,0x09,0x84,0x37,0x53,0x16, +0xff,0xdf,0xa7,0x6b,0xbb,0x5f,0x25,0x0e,0x01,0x57,0x41,0xaf, +0x3a,0x78,0xab,0xfe,0xd1,0x2f,0x2a,0xac,0x10,0xdb,0x49,0xd2, +0xed,0x81,0xe3,0xa1,0x41,0xf1,0xc6,0x5f,0x93,0x38,0xd5,0xad, +0xfa,0xaf,0x1f,0x5b,0xbb,0x07,0x7a,0x82,0x21,0x0b,0x1f,0x7d, +0x51,0x85,0xdb,0x1c,0xbf,0xc0,0x8f,0x18,0x48,0x50,0x05,0x8e, +0x89,0xff,0x98,0xda,0x41,0x3f,0xc4,0x59,0x9f,0xc0,0x2c,0x2a, +0x89,0x8e,0x9f,0x43,0x21,0x57,0x0d,0x55,0xc6,0xcc,0x62,0x1c, +0x46,0xc5,0xd1,0x8b,0x61,0x18,0x65,0x20,0x6e,0xc2,0xe2,0x40, +0xa8,0x7e,0x15,0xb7,0xb0,0x47,0x79,0xf6,0xd5,0xc7,0xbd,0xc4, +0x3d,0xd9,0x48,0xf6,0xe5,0xab,0x5b,0x2f,0x5f,0xeb,0xe2,0x71, +0x16,0x5e,0x65,0x61,0x94,0x78,0x83,0xeb,0x52,0x95,0xbb,0x41, +0x36,0x87,0xa7,0xf0,0x01,0x15,0x93,0x19,0x7f,0x38,0x47,0x06, +0xb7,0x54,0x71,0x94,0x78,0x97,0x4b,0xdb,0xb1,0xac,0x2d,0x88, +0x83,0x53,0xf0,0x80,0xda,0x11,0x92,0x10,0x1c,0x28,0x1b,0xa8, +0x3e,0x50,0x1d,0xb2,0xfe,0xd6,0x55,0x4b,0x75,0x18,0xa3,0xf8, +0xf4,0x5f,0x3c,0x56,0xa0,0x2e,0x84,0x09,0x79,0xec,0x7c,0xfa, +0x08,0x38,0x52,0x46,0xb4,0x1f,0x3a,0x12,0xed,0xbd,0xf0,0x43, +0xc3,0xe4,0x1e,0xbd,0x12,0xdd,0xa9,0xa9,0x26,0xb7,0xc9,0xb7, +0x0b,0xd5,0x42,0x1f,0x05,0x17,0x0a,0xb8,0x17,0x7e,0x7c,0xde, +0x3c,0x8b,0x7c,0xbb,0x53,0x9f,0xd2,0x78,0x05,0xdd,0x59,0xf1, +0xb1,0xe7,0xbd,0x3b,0x45,0x88,0xdb,0x80,0x03,0x0b,0x6f,0xad, +0x68,0x1d,0x9d,0xcd,0x6d,0xdc,0x4e,0x41,0x1a,0x53,0x19,0x9d, +0x1b,0x98,0xeb,0x70,0xee,0x84,0xd4,0xb7,0xd9,0xa6,0x7c,0xf1, +0x4e,0xc9,0x6d,0xc3,0xb9,0xcc,0x88,0x4d,0xc6,0xba,0xf8,0xa6, +0x0c,0xfb,0x9d,0xd1,0xff,0x26,0x88,0xdb,0x15,0x47,0xe1,0x31, +0x66,0xc5,0x2e,0xbf,0x92,0x80,0x06,0x3d,0x77,0x69,0xe9,0x92, +0x93,0x76,0x9f,0x6e,0x96,0x2c,0x6c,0xbd,0xc1,0xfc,0xb8,0xb7, +0xf5,0x2a,0x0c,0x94,0xe1,0x25,0xf8,0x81,0xbd,0x58,0x78,0xbc, +0x71,0x37,0x87,0x09,0x8c,0x71,0xfa,0xaa,0xf2,0x8b,0x32,0x18, +0x87,0x01,0x6c,0x7b,0x58,0x81,0xfb,0x7c,0xd9,0x22,0x2f,0x07, +0xd3,0x4d,0xa2,0xa2,0x78,0x52,0xed,0x7a,0x45,0x33,0x7c,0x08, +0x9c,0x6b,0xf3,0xc2,0x05,0xae,0x26,0xc4,0x7c,0x1f,0x56,0x98, +0xdc,0xe0,0xc1,0xed,0x3c,0x0b,0x03,0xe0,0x22,0x65,0x40,0xe3, +0x00,0xbc,0x48,0xe1,0x88,0x08,0xd6,0x73,0x6d,0xc9,0x15,0xfe, +0x1a,0x73,0xe5,0x50,0xc9,0xb1,0x92,0x43,0x5e,0x4b,0xb8,0x45, +0xcc,0x92,0xb5,0x5e,0x5e,0x1c,0x04,0x2b,0x27,0xf7,0x10,0xe1, +0xe0,0x43,0xd7,0xe6,0x05,0x0b,0x09,0x91,0x0f,0x91,0x13,0x89, +0xd4,0xab,0xfc,0xde,0xa4,0xe4,0xd8,0x0b,0x4d,0x30,0xdd,0xfd, +0x25,0xea,0x84,0x13,0xb3,0x48,0xf6,0x66,0x6d,0xdd,0x85,0x0c, +0x3e,0x89,0xbe,0x3c,0x82,0xfa,0x84,0x1e,0x01,0x63,0x0e,0x9e, +0xdf,0x5e,0xbf,0xb3,0x53,0xad,0xb5,0x13,0x07,0xd2,0xb1,0xba, +0x5b,0x97,0x6d,0xb2,0x96,0xc4,0xd0,0xe6,0xf7,0x16,0xc3,0x1b, +0x94,0xd3,0xc5,0xc8,0xe2,0x4a,0x59,0x26,0x73,0xba,0xa8,0xbc, +0xaa,0x2a,0x6f,0xb5,0xf3,0x01,0xee,0x5c,0x2e,0x75,0x3a,0xdc, +0xa6,0x69,0x9e,0x7c,0xaa,0xbe,0xd6,0xc8,0xe5,0xd9,0x96,0x47, +0xad,0xf9,0x19,0x96,0xc1,0x33,0x17,0xcb,0x50,0xa5,0x65,0xf2, +0xd7,0x5c,0x7a,0x17,0x6b,0xec,0x5c,0x7b,0x9d,0x3f,0xc4,0x34, +0xa7,0x35,0xd4,0x97,0x73,0x30,0x02,0x03,0x29,0x9b,0x10,0xaf, +0x40,0x1b,0x79,0x8f,0xbf,0x3c,0x7c,0xad,0xa3,0x7d,0xea,0x30, +0x47,0x18,0xcc,0xa2,0xf3,0x97,0x38,0xeb,0x87,0x19,0xdc,0x35, +0x1a,0xfb,0x7f,0x3e,0x09,0xa6,0xc0,0x52,0x59,0x3d,0x03,0x4b, +0x1f,0x93,0xa7,0xfe,0x9f,0x73,0x8b,0xe8,0xe1,0x33,0xc6,0x13, +0x5f,0x77,0x26,0xae,0x0b,0x0f,0x49,0x75,0x70,0x1e,0x0f,0xb3, +0x86,0x7f,0x42,0x5e,0x40,0xff,0x89,0x8f,0x71,0x0a,0x2e,0x95, +0xd9,0x30,0xb8,0x74,0x12,0x79,0xea,0x3f,0x91,0x10,0xf9,0xe1, +0x93,0x2f,0x61,0x16,0xf4,0x54,0xdf,0x0e,0x37,0x89,0x5e,0x70, +0x7e,0xcb,0x09,0x64,0x61,0x36,0x2c,0x6a,0x0c,0xee,0xc2,0x79, +0xba,0x49,0x60,0x4d,0x2d,0xa4,0x93,0xd0,0x1a,0xe7,0x5d,0x08, +0xd6,0x81,0x45,0x66,0xc8,0xe2,0xec,0x16,0x67,0x51,0x6b,0x15, +0xc0,0xb1,0xe0,0x0d,0x4b,0x3a,0x71,0x09,0x38,0x2f,0x46,0x67, +0xd4,0x5e,0x06,0xda,0xe8,0x2d,0x6e,0xb0,0xbd,0xd6,0xe5,0x4d, +0x75,0x61,0x05,0x7c,0xc6,0x7e,0xa2,0xe4,0x66,0x88,0x4d,0xfe, +0xc3,0xd5,0x4d,0xf5,0x9f,0xa7,0xb1,0xf0,0x69,0xef,0xc5,0xcd, +0x4f,0xc5,0x13,0x8d,0x84,0xd9,0x8d,0x2c,0x0c,0xbb,0xf1,0x98, +0xf0,0x50,0xb6,0xe0,0x31,0x0e,0xc3,0x61,0x0b,0x26,0x61,0x19, +0x56,0xdc,0x98,0x04,0xc3,0x78,0x85,0x96,0xca,0xb9,0xf2,0x95, +0xba,0x19,0x3c,0xbe,0x81,0x93,0xf1,0x03,0x34,0xa0,0xb6,0xd1, +0xc5,0x09,0x27,0x13,0x4f,0x72,0x5d,0x0c,0x4c,0xab,0xbc,0xf2, +0x98,0x53,0x2a,0x55,0x8c,0xdd,0x8f,0x5e,0x0a,0xe5,0x61,0x37, +0x3c,0xa1,0xb6,0xd3,0xdb,0x90,0xa7,0x74,0x18,0x9c,0xe5,0xac, +0x35,0x51,0x1c,0x71,0xab,0x54,0x2f,0xe2,0x64,0xc5,0x04,0x7c, +0x93,0x21,0x30,0x78,0xf2,0x09,0x3b,0x18,0x07,0xa3,0xa9,0x14, +0xe5,0x0f,0xb8,0x60,0x29,0x4d,0x5e,0xbb,0x5f,0x64,0xf1,0x07, +0x1a,0x2c,0xc0,0x9e,0x82,0xbe,0x40,0x1d,0x39,0xff,0x8d,0x0c, +0x06,0x2f,0xb8,0x42,0x14,0x43,0x2d,0x59,0x3a,0x35,0x90,0xbb, +0x18,0x40,0x5d,0x4e,0xaf,0x3e,0x71,0x43,0xfe,0x71,0xa5,0xd3, +0x7c,0x3e,0x94,0x59,0xee,0xbb,0x64,0xf1,0x02,0x0e,0x43,0x71, +0x13,0x35,0x57,0x58,0x2a,0xca,0x3a,0x45,0x98,0xc9,0xea,0xde, +0x62,0x1e,0x9f,0xb4,0x9f,0xcc,0xaf,0x63,0x26,0x5b,0x3b,0x4c, +0x9a,0xeb,0x7e,0xac,0xc9,0x87,0x33,0x75,0xa2,0x0c,0x2a,0x5a, +0x4c,0x41,0x45,0x0e,0xc3,0x6e,0xdf,0x01,0x29,0xbc,0x61,0xd0, +0x3c,0x77,0x27,0x9f,0xc4,0x5c,0xd9,0xd7,0xd4,0xf4,0x9d,0x0c, +0xde,0x9d,0xdf,0x88,0x6f,0x0e,0x33,0x36,0x33,0xf2,0xe1,0x1a, +0x9d,0xa9,0xa6,0xdc,0x8a,0xc2,0x2e,0xf9,0x95,0x1a,0xef,0x39, +0x7c,0x18,0xb3,0xc8,0xde,0x6e,0x9a,0xc8,0xfb,0x08,0x55,0x18, +0x75,0xbf,0x63,0xa6,0x90,0x21,0xa6,0xb0,0xb9,0xca,0x03,0xd4, +0x52,0x68,0xc5,0x51,0xcc,0x36,0xc5,0x34,0x36,0x49,0xe9,0x8c, +0x9b,0x45,0x01,0x74,0x15,0x81,0x2c,0x7e,0x4e,0x07,0x29,0x47, +0x5e,0xd8,0x4c,0x95,0xe4,0xe4,0xe5,0x9e,0x93,0x3f,0x3c,0x6e, +0x39,0x96,0x0f,0x60,0xc6,0x3a,0x5b,0x4e,0xd3,0x73,0x2a,0x6a, +0xf3,0xe1,0x4c,0x9c,0x28,0x9d,0xd2,0xcb,0x96,0x8f,0xe5,0x20, +0xbb,0x79,0x8f,0x38,0xd7,0xb8,0xc5,0xd7,0xb1,0xbf,0xb6,0x8b, +0x97,0x4d,0x28,0x1f,0x4d,0xa7,0x41,0x1d,0x05,0x45,0x84,0x14, +0xec,0x24,0xc9,0x06,0x77,0xed,0x33,0xa2,0xa1,0xf1,0x5a,0xd7, +0x91,0x99,0x63,0xe9,0x68,0xb4,0x86,0xdf,0x96,0x58,0x02,0x8b, +0x6f,0x7d,0x09,0x43,0x81,0x56,0x1b,0x45,0x63,0xbf,0xb9,0x38, +0x10,0x35,0x31,0x50,0x86,0xba,0xd7,0x27,0x00,0xcf,0x5d,0x54, +0x99,0xee,0x70,0xea,0x5b,0x3e,0x8b,0xf9,0xae,0xfa,0xd4,0x83, +0xfb,0xd5,0x56,0x23,0xb9,0x35,0xcc,0x28,0x07,0xab,0x99,0xa2, +0x8b,0x07,0xa9,0xc2,0x16,0xc5,0x04,0xea,0xa2,0x72,0x0a,0xba, +0x77,0x11,0x02,0xe9,0x0c,0xc6,0x76,0x6b,0x3c,0xb7,0xf8,0x88, +0x9b,0x1f,0x03,0x0b,0xb4,0x69,0xd3,0xbc,0xbd,0xfc,0x4e,0xa6, +0xeb,0x40,0x6d,0xeb,0x53,0x19,0x0c,0x58,0xd8,0x82,0x43,0x70, +0xc8,0x42,0x23,0x1c,0x30,0xae,0xd6,0xb0,0x73,0x3d,0xb7,0x85, +0xd1,0xdc,0x68,0x6a,0x8a,0xb4,0x0c,0xd9,0x9b,0x73,0x60,0x04, +0x27,0x68,0xab,0xcc,0x77,0x2e,0xbf,0x49,0x10,0xe3,0xf5,0x13, +0xe5,0xb7,0x6e,0x9d,0x70,0x5b,0x48,0x10,0xa3,0xa6,0xb3,0xdb, +0x7c,0x0e,0x7f,0x55,0x99,0x6e,0x51,0xfb,0x09,0x9f,0xcb,0x7c, +0x7a,0xba,0xe6,0xc1,0x83,0xd3,0xf6,0x53,0xb9,0x00,0x66,0x86, +0x85,0xdd,0x74,0x91,0x95,0xb5,0xaa,0xa0,0x72,0x07,0x06,0x82, +0x26,0x04,0xca,0x40,0x77,0xe1,0x17,0x38,0x14,0xf9,0x45,0x53, +0x70,0x1c,0x8e,0xbf,0xbc,0x10,0x98,0x7b,0xa7,0xaa,0x5a,0x0f, +0x73,0x49,0x71,0x5e,0xb8,0x64,0xe1,0x38,0x82,0x75,0x29,0x35, +0x78,0x0b,0xbe,0x61,0x67,0x38,0x9c,0xfa,0x8e,0x48,0xf6,0x6d, +0xf5,0xa9,0x4f,0x1e,0x56,0x5b,0x8d,0x22,0x92,0x8d,0x74,0xb0, +0x12,0x0d,0x03,0xdb,0x85,0xfc,0x7f,0x70,0x8d,0xf3,0x3f,0xb6, +0x7b,0xcd,0x5b,0x9c,0xea,0x82,0xef,0xd5,0x57,0xde,0xe2,0x54, +0x17,0x9c,0x05,0x7b,0x82,0xad,0x67,0x2f,0x63,0x84,0xd9,0x18, +0xd8,0xfb,0x24,0x36,0x11,0x66,0xfd,0xff,0x7c,0x8b,0x53,0x5d, +0x98,0x4a,0x08,0xd0,0x38,0xde,0x1b,0xde,0x83,0x99,0x3c,0x7c, +0xc0,0x80,0x6f,0xf5,0xe7,0xd0,0xef,0xdb,0xca,0x45,0x38,0x90, +0x0b,0xda,0xc6,0x94,0x44,0xae,0x2e,0x31,0x97,0x6b,0x5a,0xe9, +0xe0,0x24,0x9c,0x74,0x4a,0xe7,0xe6,0x99,0xfc,0x92,0x92,0x7d, +0x7c,0x92,0xc9,0x55,0x41,0x46,0xc3,0x38,0x3d,0x60,0xc8,0x68, +0x1f,0x37,0x1b,0xfb,0xe0,0x1d,0x3c,0x71,0x1e,0x87,0x83,0x1d, +0x07,0x2c,0x3d,0x0d,0xd2,0x58,0xeb,0xd5,0x25,0x4f,0xf8,0x76, +0xe6,0x49,0x7e,0xc9,0xc9,0xe3,0x47,0xfd,0x2d,0x39,0x9c,0xc1, +0x58,0xac,0xf4,0xef,0xd1,0xcc,0x5a,0x55,0xd4,0x56,0xf8,0x53, +0xa8,0x42,0xa3,0x76,0xb7,0x3f,0x75,0x9b,0xae,0x07,0x6f,0x0a, +0x9c,0xe8,0x7a,0xf4,0xa6,0x50,0x4f,0x38,0xc0,0xe6,0x02,0x47, +0x40,0x4b,0x1e,0x72,0xa7,0x31,0x82,0xc2,0xf9,0xc4,0xe7,0x2f, +0xab,0x42,0x24,0xfd,0x53,0xcb,0x79,0xf8,0x00,0x18,0xbd,0xe6, +0xa5,0x49,0x7c,0x0a,0xd3,0xb2,0xab,0xb6,0xf6,0x47,0xe2,0x89, +0x66,0x2d,0xc3,0x39,0x5c,0x49,0xdf,0xd4,0x61,0x61,0x20,0x7d, +0x3e,0xdf,0xc3,0x98,0xb7,0x60,0xcc,0x56,0xba,0xeb,0x73,0xf8, +0x36,0xad,0xa3,0x02,0x1f,0xd0,0x5d,0x45,0x8e,0xfa,0xbc,0x39, +0x63,0xb8,0xd2,0x5e,0x87,0x23,0xf3,0x38,0x51,0x63,0xce,0x05, +0x76,0x9c,0xdb,0x79,0x98,0xcb,0x83,0x8c,0x81,0xa9,0x95,0x57, +0x3f,0xef,0x28,0x76,0x5f,0x72,0x98,0xeb,0xc8,0xa7,0xa0,0x8f, +0xaf,0x59,0xc3,0x18,0x39,0x0e,0x9d,0x3b,0x11,0x8f,0xe1,0xb1, +0x3b,0x13,0x61,0xe8,0xd7,0x2d,0x67,0xa1,0x4f,0x31,0xaf,0x5b, +0x44,0xcd,0x0b,0x5c,0xe5,0xa6,0x45,0x66,0x8f,0x2e,0x55,0x58, +0x41,0x03,0x77,0x85,0x80,0xf2,0x5d,0xb0,0x73,0x09,0x01,0xe5, +0x1c,0x8f,0x2b,0xe8,0x9b,0xdd,0xc3,0x59,0xe1,0xfa,0x8f,0xcc, +0xc3,0x9a,0x59,0xe2,0xbe,0x0e,0xc3,0xe0,0x68,0xfb,0x99,0x3d, +0xf1,0xc1,0x5c,0xf5,0x32,0x96,0x43,0x2a,0xe4,0x5c,0xc6,0x1c, +0x48,0x82,0xf2,0xcb,0xca,0xfe,0xdd,0xfe,0x62,0x4c,0x9a,0xa5, +0x0a,0x0f,0x20,0xfd,0x32,0xa6,0x43,0xf2,0x0b,0xa5,0xf1,0x1b, +0xd9,0xfb,0xc7,0x4f,0x9d,0x4b,0xe5,0xb7,0x8f,0x6a,0x17,0x68, +0x34,0x34,0x85,0xfe,0x0b,0x68,0x75,0x4f,0xa3,0xd9,0x1a,0xce, +0xd7,0x61,0x32,0xd7,0xc3,0x74,0xcd,0xd5,0x4f,0x2f,0x1d,0xf5, +0x5c,0x94,0xc9,0x5d,0x38,0x4a,0xfd,0xb8,0xda,0xa8,0x61,0xa4, +0x1c,0xe5,0xb3,0xc6,0x61,0x21,0x1e,0xbb,0xa7,0x01,0x03,0x78, +0xd2,0xe9,0x20,0xd5,0x5b,0x0a,0xff,0xf9,0x78,0x0d,0xf7,0xc0, +0xb5,0xf9,0xdd,0xfe,0xb7,0xe0,0x33,0xd8,0x23,0x06,0x22,0x2d, +0xd5,0x2e,0x54,0x17,0x1e,0x82,0x7a,0x17,0xfe,0xaa,0x03,0xea, +0xca,0x87,0xa8,0xae,0x23,0xf6,0xfa,0x96,0xc2,0x9f,0xd5,0x81, +0x95,0xca,0x95,0xcc,0x24,0x0f,0x4f,0x1d,0x3d,0x9f,0xc2,0x5b, +0xe1,0xdc,0x92,0xb5,0x14,0xf6,0xc9,0x6a,0x5a,0xf1,0xb3,0x1c, +0xde,0xee,0xe8,0x82,0xc1,0xbc,0x50,0x25,0x56,0x4d,0x25,0xa1, +0x14,0xac,0xe0,0x3c,0x35,0x8d,0x26,0xc1,0x7a,0x8f,0x36,0x0e, +0x22,0x58,0x3a,0x01,0xfa,0x51,0x70,0x58,0xb3,0xdb,0xff,0x26, +0x84,0x33,0xd7,0xe1,0x6d,0x58,0x8a,0x3f,0x50,0xf7,0xc5,0x1e, +0x9d,0x88,0xf8,0xc7,0x15,0xa3,0x67,0xf7,0x4a,0xc7,0xc4,0xb3, +0x82,0x0e,0xb3,0x8d,0x20,0xd0,0x24,0xba,0x12,0xdf,0x7b,0x84, +0xdb,0x1e,0xc3,0xb6,0x13,0xf0,0x1e,0xf9,0xb9,0x8d,0x80,0x53, +0xa5,0xce,0x65,0x45,0xe0,0x7c,0x66,0x2e,0x86,0x39,0xe1,0xbb, +0x64,0x12,0x71,0x82,0x77,0xe7,0x40,0x18,0xc9,0xec,0x02,0x45, +0x52,0x6f,0xa9,0xde,0x54,0xf8,0x2f,0x54,0xba,0xd0,0x3b,0x51, +0x46,0xc5,0xd0,0x76,0xf0,0x3e,0xba,0x0b,0xee,0x14,0xe9,0xf5, +0xba,0xe0,0x42,0x47,0x83,0x8c,0x4c,0x2c,0xb5,0xa8,0x2a,0x8e, +0x95,0x44,0x12,0xbb,0xd4,0xef,0x3f,0x81,0x63,0x50,0x32,0xf3, +0x09,0xaa,0xe3,0xb0,0x39,0x1a,0x58,0x82,0xc7,0x3e,0xd6,0x20, +0xb3,0xd5,0x75,0x95,0xc9,0xf6,0x37,0x61,0x2a,0x0f,0x6a,0x0c, +0x4c,0xa9,0xb9,0xf1,0xe8,0xb3,0x7a,0x4d,0x9c,0xcc,0xa1,0x1a, +0x83,0x53,0x6d,0x34,0xa7,0xf4,0x00,0x4a,0x55,0xe8,0x80,0x71, +0x24,0x6b,0x3e,0x7b,0x93,0x4c,0x09,0xef,0xaf,0xb8,0x89,0x12, +0x1e,0xd7,0x75,0xfb,0xd3,0x37,0x15,0xa3,0x58,0xf8,0x90,0x6e, +0x2b,0x75,0x32,0xe1,0x75,0x19,0x23,0x0f,0x17,0x03,0x02,0xa0, +0x44,0xd6,0xfc,0x85,0x7e,0xec,0x4b,0x5d,0xed,0xbf,0x38,0x1a, +0xde,0x5e,0xcf,0x2d,0x66,0x6c,0xf2,0xfd,0xeb,0xb9,0x47,0xe7, +0xc7,0x3f,0xa0,0xe1,0x8d,0xb4,0x8b,0xdf,0xc1,0x2e,0x99,0xb2, +0xcf,0x05,0xf6,0x2f,0x3a,0xee,0x61,0x4a,0xec,0xfd,0x4b,0xe8, +0x62,0xef,0x1d,0x3c,0x7e,0x45,0xfc,0xa3,0x05,0xef,0x9b,0x92, +0xbe,0x39,0x0c,0x12,0x15,0xdb,0x01,0x2a,0x34,0x11,0xb9,0x83, +0x7a,0x40,0xa3,0xb5,0x62,0x34,0xdb,0x56,0xea,0xd8,0xcb,0x85, +0x33,0xe1,0x42,0x06,0x79,0xa2,0x73,0x27,0x13,0xb9,0x07,0x5f, +0xbb,0x0e,0xb2,0x5e,0x88,0xc9,0x1b,0x1d,0xa0,0xf4,0x52,0x7d, +0x2a,0x48,0xd6,0x55,0x75,0xe2,0x6a,0x4b,0x51,0xd0,0x8a,0xa3, +0xdc,0xb9,0x13,0xd4,0x79,0x4f,0xd3,0xe3,0x53,0xe4,0x38,0x68, +0xb1,0x2e,0xbe,0xdf,0x8b,0x31,0xf9,0x96,0xf5,0xd4,0x85,0xf0, +0x42,0xf7,0x39,0xb2,0xe9,0xb6,0x76,0x4b,0x16,0x7a,0x95,0xb6, +0xae,0xe4,0xf4,0xdc,0xa9,0xb9,0xc7,0x9b,0x6c,0x7e,0x96,0x8b, +0xc1,0x89,0xf4,0x77,0x59,0x69,0xa0,0x05,0xba,0xdd,0xa3,0x6f, +0x2b,0x46,0x13,0x53,0x9e,0x54,0x04,0xb0,0xca,0xd5,0x0c,0x5a, +0x37,0x2c,0x86,0x51,0x30,0xaa,0xe1,0x2a,0x58,0x73,0xc2,0x6a, +0x4d,0x65,0x28,0x83,0xea,0xfe,0x4e,0x13,0x27,0xad,0xae,0x04, +0x75,0x4e,0x08,0x15,0x8d,0x7e,0x52,0x15,0x96,0x91,0x21,0x3f, +0x97,0xc6,0xbe,0x4a,0x1b,0x5f,0x9c,0x44,0x0c,0xeb,0x0b,0x93, +0xb0,0x9f,0x60,0x43,0xcd,0xa6,0x41,0x8f,0x44,0x01,0x52,0x49, +0x5b,0xb5,0x1c,0xd6,0x1c,0x85,0x75,0x54,0x22,0x5d,0x84,0xeb, +0xca,0x71,0x0d,0x41,0x85,0x17,0x49,0x2b,0x2d,0xda,0x53,0xb9, +0x34,0x0a,0x47,0x11,0x27,0x5b,0x0b,0xbc,0x13,0x1c,0x22,0x6d, +0x9c,0xf0,0xd0,0x5a,0x02,0x20,0xe2,0xe8,0x28,0x18,0xe3,0x21, +0x68,0x53,0x4b,0xe8,0x8b,0xbd,0x44,0xea,0x85,0x37,0x59,0x58, +0x04,0x0a,0xf1,0x62,0xe2,0xfb,0x58,0x24,0x26,0x79,0x2c,0x14, +0x91,0x5f,0xa0,0x89,0x88,0xba,0x4a,0x09,0x21,0x4a,0x80,0x6b, +0x3d,0x49,0x8f,0xe0,0x43,0xac,0x27,0x9a,0x24,0x8d,0x8e,0xab, +0x42,0x35,0x03,0x66,0x82,0x1e,0x35,0x8b,0xc6,0xe1,0xf8,0x44, +0x6c,0x35,0x9c,0xa0,0x94,0x99,0x34,0x98,0x29,0xf5,0x28,0xac, +0x16,0xa3,0xb3,0xe3,0x65,0x16,0x49,0xdb,0x5b,0xc2,0x1d,0xea, +0x9a,0x52,0xa6,0x05,0xe7,0x18,0xbc,0xa5,0xbc,0x43,0x2d,0x12, +0xb3,0x21,0x75,0x61,0xd9,0x62,0xf6,0x0c,0x06,0x28,0xca,0x20, +0xe0,0x0c,0x9e,0xf8,0x75,0xa8,0x58,0xc4,0x91,0x11,0x45,0x26, +0xb0,0x9b,0xe2,0x35,0xcb,0x61,0x70,0x53,0xcc,0x9c,0x27,0xe1, +0xf7,0x14,0xf6,0x37,0x86,0xa1,0x48,0xe1,0x50,0xf1,0x6b,0xf4, +0x4d,0x18,0x0d,0x43,0xcf,0xe1,0x50,0xa0,0xc4,0xaf,0x7e,0xa4, +0x0a,0x7c,0x2f,0xca,0x01,0x8a,0x6b,0x2c,0x9e,0x30,0x87,0x80, +0xee,0x32,0x0c,0x30,0x87,0x13,0xa2,0x8b,0x79,0x0a,0x73,0x59, +0x12,0x20,0x25,0xd4,0x32,0x1a,0xf5,0x94,0x92,0x96,0xd5,0xa0, +0x01,0x97,0x45,0x41,0x34,0xf0,0xb2,0x98,0x58,0xc4,0xe2,0x00, +0xb6,0x5a,0x19,0xeb,0x20,0x6a,0xfc,0x47,0xe1,0xde,0x6b,0xdd, +0x3e,0x51,0x87,0xe0,0x8d,0x6c,0x57,0x75,0xe9,0xc9,0x03,0xfc, +0x8e,0x05,0xd7,0x85,0xb2,0x85,0xf3,0x63,0xe8,0xfa,0xf5,0x8e, +0x65,0xda,0x72,0x75,0x93,0x09,0x68,0x82,0xc6,0xcd,0x1a,0x3f, +0xf1,0xf9,0x97,0x59,0x1d,0xa7,0xa6,0xef,0xf8,0x6f,0x98,0x6f, +0x2b,0x9b,0xba,0x5a,0xaa,0x5c,0x49,0x24,0xb5,0x65,0x96,0x3a, +0xba,0x1a,0x89,0x04,0x8e,0x09,0xf5,0xac,0xb6,0xa3,0xbb,0xcd, +0x7a,0x3e,0x06,0x3a,0x16,0x76,0xa7,0x5e,0xbf,0xb1,0x83,0xb6, +0x3e,0x50,0xed,0xd1,0x25,0xff,0xa9,0xf9,0x09,0x18,0x83,0x89, +0xc9,0x17,0xea,0xfc,0x7d,0xbc,0xcf,0x8e,0x74,0x32,0xd5,0x31, +0x72,0xac,0xb8,0xc8,0x81,0x2d,0xd3,0x55,0x55,0xd1,0xd2,0x55, +0x69,0x3a,0x4a,0x8c,0x8f,0x6f,0xc2,0x08,0xd6,0x3c,0x64,0xd5, +0x2a,0x73,0xf9,0x12,0x97,0xe6,0xaf,0x79,0xe8,0xc3,0x7c,0x75, +0xbc,0xe9,0xca,0xa9,0xfc,0x40,0xb3,0x43,0x62,0x7c,0xfb,0xd8, +0xd7,0xbc,0x7c,0xae,0x1c,0x87,0x2c,0xd5,0x20,0xfc,0x98,0x5e, +0x9c,0x08,0x43,0xee,0x9d,0x3d,0x7e,0xbf,0x90,0x04,0x39,0xf8, +0x41,0x91,0xc6,0x62,0x47,0x0c,0xf3,0x47,0x8e,0x7f,0x13,0x48, +0x91,0x4a,0x2f,0x54,0x7e,0xc7,0x8a,0xac,0x8a,0x12,0x70,0x2f, +0x48,0x40,0x9a,0xef,0xda,0xc8,0x7e,0x79,0xae,0xf1,0x4e,0x36, +0x6f,0x58,0x48,0x99,0x84,0x79,0xbb,0x1a,0xc8,0x35,0x5d,0xba, +0xbe,0xe4,0xd3,0xe1,0x6c,0x31,0x03,0x7a,0xba,0x8f,0x09,0x86, +0x7a,0x47,0x47,0xec,0xd5,0xe4,0x06,0x89,0xaa,0x1c,0xbe,0x09, +0x77,0xd8,0xef,0x4e,0x5c,0xb8,0x7c,0xa3,0x74,0xd9,0x28,0x6e, +0x23,0x86,0x8b,0x8a,0xce,0x15,0xaf,0x09,0x7c,0x78,0x09,0x3f, +0x84,0xf9,0xf0,0xe1,0x79,0x1c,0xca,0x58,0x05,0x05,0x5b,0xf2, +0x04,0xeb,0x53,0xda,0x40,0x89,0xd7,0x2d,0xd5,0x21,0x5a,0xbc, +0x6e,0x39,0xf0,0xc2,0x75,0x98,0xc1,0x0b,0xd9,0x8b,0xe6,0xc6, +0x30,0x0d,0xeb,0x6d,0x4a,0x0d,0xe4,0xa8,0x62,0x3e,0x1e,0x17, +0xe3,0xd2,0xd3,0x1a,0x40,0xb5,0x9e,0x2c,0x3e,0x4d,0x18,0x9e, +0x4c,0xa3,0x8a,0x8f,0xed,0x3c,0x2b,0xdf,0xac,0xd2,0x95,0x9c, +0xa3,0x25,0x65,0x53,0x5e,0xb7,0xfa,0x8a,0x7c,0x27,0xb4,0xb3, +0xda,0x4e,0x8d,0xdf,0xf3,0xd7,0x09,0xf7,0x8d,0x5d,0xad,0x55, +0x6e,0xda,0x1c,0x6a,0x32,0x8b,0x1d,0xdd,0x7a,0xf4,0x5f,0x2e, +0xd4,0xb1,0x4b,0x5c,0x5c,0x6c,0xc3,0x88,0xfe,0x3b,0x17,0x76, +0xa7,0x5d,0x07,0xa4,0xaf,0x9d,0xac,0x6a,0x6e,0x3d,0xea,0xa8, +0xc9,0xa1,0x70,0x5d,0x18,0xc4,0x40,0x5f,0x8b,0xf6,0x9e,0xc8, +0x92,0xa8,0x98,0xc2,0x96,0xa4,0x66,0xe4,0x11,0xb7,0xc8,0x8b, +0xc8,0xf0,0xf2,0x8e,0x58,0xe7,0x4f,0x72,0x04,0xff,0xd4,0x75, +0xc5,0x5c,0x79,0xf7,0x14,0x56,0x28,0xd3,0x54,0x96,0x89,0x2c, +0x67,0xbe,0xba,0xde,0x92,0x5f,0xfb,0x3f,0xbb,0x2c,0xf9,0x96, +0x66,0xf7,0x02,0xa2,0x20,0xb1,0x3e,0x81,0xc0,0xda,0xcc,0xa5, +0x7b,0x20,0xde,0xaa,0xfe,0x8c,0x46,0x77,0xb8,0x08,0x36,0xb0, +0x96,0x9a,0x44,0x93,0xc4,0xc8,0xc8,0x78,0x1e,0x15,0x23,0xc4, +0x68,0x76,0xa7,0x8a,0x63,0x2d,0x95,0x98,0x4c,0xb3,0x5b,0xb7, +0xf7,0xda,0x04,0xf4,0xe9,0xc4,0x37,0x48,0xe9,0x4f,0xaa,0xc2, +0xfb,0x4c,0xed,0xc1,0xaa,0x8a,0xb2,0x7d,0x3e,0x06,0x9c,0xf2, +0xdd,0x2e,0x81,0x63,0x1a,0x33,0xf3,0x4b,0x4b,0xd2,0xd6,0x69, +0xf6,0xfc,0x24,0xc0,0x44,0xc5,0xab,0xd6,0xc0,0xdc,0xcf,0xc3, +0x70,0x0b,0x17,0x47,0x9f,0xdf,0xe2,0x55,0x64,0x2f,0x77,0x0a, +0xf0,0xb0,0x88,0xe2,0x63,0x3e,0xd6,0x53,0x96,0x89,0x94,0xc7, +0xa9,0x02,0x32,0x7f,0x25,0x78,0x8f,0x72,0xb8,0x98,0x3b,0x0b, +0x7b,0xeb,0x89,0xa8,0xf6,0x9d,0xae,0x27,0x60,0x02,0x26,0x3a, +0x4f,0xc4,0x23,0x88,0xda,0x3d,0x26,0xbe,0xa4,0x01,0x83,0xf8, +0xcb,0x2a,0x4b,0x5c,0x9b,0x9e,0xf2,0xd0,0x8f,0xf9,0xaa,0xa2, +0xf1,0xca,0x95,0x0a,0xb3,0xb1,0x1c,0xf6,0x63,0xc6,0xb9,0x9a, +0x2e,0x11,0xb5,0x57,0xfc,0xbb,0xa7,0xdf,0x5a,0xd8,0xbd,0xf5, +0x3a,0x54,0xfc,0x3d,0x4f,0x87,0x9f,0x04,0x77,0xf6,0xcf,0xe3, +0xeb,0x99,0xb7,0x62,0xc5,0x75,0xc5,0xd6,0x85,0xb4,0xba,0x72, +0xed,0x7f,0x1a,0x6d,0x81,0xaa,0x00,0xcc,0x95,0xaa,0xca,0xc7, +0xdc,0xa9,0x2e,0x07,0x7a,0xa6,0x97,0x9b,0x59,0x04,0xbf,0xf5, +0xa9,0x66,0xaf,0x68,0xc9,0x9b,0x58,0xe8,0x7f,0xa9,0xf1,0x87, +0xcf,0xac,0xeb,0xc7,0xa7,0xf2,0xf6,0x3b,0x29,0x93,0xdd,0x01, +0x07,0xcf,0xca,0x1a,0x4b,0xb2,0xdb,0x9a,0x0b,0xd7,0x79,0xe6, +0x71,0x0d,0xd5,0x54,0x9d,0xa7,0xf9,0x91,0xb9,0xf2,0xa1,0x7a, +0x16,0x63,0x26,0x37,0xd9,0x7e,0x16,0xc1,0x57,0x6f,0xa1,0xce, +0x46,0xe5,0x06,0x5b,0xc8,0x4c,0x3d,0x57,0xeb,0x9a,0x39,0x1d, +0x3c,0xe3,0xcd,0x99,0xdb,0x52,0xcb,0x6a,0xda,0x57,0xdf,0x14, +0xe3,0xfe,0x60,0xd5,0x4e,0x1c,0x24,0x68,0x80,0x6a,0x07,0xaa, +0xc2,0xe8,0xc5,0x48,0x33,0x6b,0xa2,0xa2,0xd6,0x70,0x5a,0x7a, +0xdf,0x2a,0xe5,0xcf,0x6e,0x45,0xaa,0xc3,0xf7,0xc4,0x05,0x11, +0x99,0x45,0xd6,0x8e,0x26,0x86,0x2b,0xab,0x6e,0x72,0x20,0x2c, +0x14,0x0f,0x77,0xf7,0x3d,0xad,0xff,0x65,0xe7,0x89,0xe3,0x75, +0x07,0xb8,0x1d,0x73,0x49,0x6c,0x11,0x39,0xac,0x55,0x85,0x59, +0x42,0x19,0x49,0x6f,0x47,0xe3,0x8f,0xab,0x46,0x90,0xd0,0x18, +0xf0,0xfd,0x68,0xf8,0x51,0xbc,0xca,0x38,0x53,0x59,0x46,0x82, +0xd8,0xb7,0xaa,0x37,0xe8,0x52,0xf0,0x29,0x84,0x8d,0x64,0x1a, +0x28,0xc4,0x4d,0x85,0x04,0x14,0x7e,0x4c,0xdf,0x23,0x4d,0x0c, +0x69,0x0f,0xdc,0x1f,0x88,0x26,0x24,0xe8,0xaf,0x83,0xe9,0xf6, +0x70,0x9c,0x5a,0x40,0x3b,0x60,0x79,0x28,0xce,0x24,0x25,0x81, +0x60,0xea,0x09,0xfb,0x28,0x7d,0xb1,0x8b,0x37,0x54,0x09,0x98, +0xf5,0x16,0xe3,0xa2,0x2a,0x69,0x7c,0x9f,0xc6,0x45,0x90,0x03, +0xf3,0x20,0x53,0x9c,0x7e,0x86,0xa0,0x9b,0x18,0xdc,0x87,0x80, +0x1b,0x09,0xf5,0x30,0x0f,0x0f,0xe1,0x02,0xcc,0x15,0xe3,0xed, +0x24,0xf4,0x64,0x4f,0xe5,0x65,0xd4,0x1d,0xe0,0xc1,0x5b,0xb1, +0x88,0x90,0x1e,0x89,0x8f,0x83,0x26,0x50,0x5b,0xe9,0xc0,0x2f, +0x86,0xc1,0x63,0x31,0x76,0xeb,0x2a,0x4b,0x9d,0x71,0x38,0x35, +0x69,0x99,0x18,0x8a,0x8d,0x54,0x2f,0xe1,0x71,0x86,0x84,0x3e, +0x71,0x69,0x4c,0x45,0x1b,0x72,0x19,0x3c,0xa6,0x9c,0x4c,0x99, +0x88,0x71,0x5f,0x77,0x11,0xdb,0x86,0x1f,0xc0,0x5e,0xa6,0xcd, +0xa7,0x71,0x4e,0x12,0x97,0xca,0x7c,0x9c,0x54,0xd4,0xd8,0x26, +0x83,0x3d,0xf0,0x41,0x1b,0xbe,0xcb,0xd8,0xf8,0xaf,0xb6,0xe1, +0x31,0x9a,0x31,0x59,0xe5,0x31,0x81,0x5b,0xc8,0x7c,0x51,0xe0, +0x61,0x22,0xfe,0xb4,0xc9,0x5b,0x55,0x2f,0xaa,0x32,0x87,0x04, +0xf1,0x5f,0xd6,0x3b,0xfc,0xba,0x5e,0x1c,0x56,0x2b,0x16,0xb1, +0xf5,0x79,0x05,0xf5,0x3c,0x44,0x33,0xcd,0x05,0xa5,0x5f,0x70, +0xd7,0x99,0x09,0xab,0x4a,0x9b,0xc5,0x9f,0xf5,0xfe,0xf9,0x36, +0x1c,0xbe,0x6b,0x00,0x1f,0xe0,0x1e,0xda,0xa0,0xc8,0xec,0xe3, +0x6d,0x5c,0x04,0x33,0x67,0x9b,0x8f,0x99,0x81,0x0c,0xf7,0xe2, +0x07,0x06,0x22,0x23,0xb1,0x8a,0x06,0x92,0x5b,0xc4,0x8a,0xb9, +0x05,0xa1,0xe5,0xb0,0x84,0xbd,0xdf,0xdc,0xf0,0xd9,0x67,0xc6, +0x0d,0xb3,0x66,0x19,0x5b,0x4e,0x99,0xd2,0x6c,0x79,0x9f,0x3f, +0xa3,0x62,0xe3,0x53,0x50,0xc5,0xe7,0x30,0x55,0x45,0x05,0xf5, +0xf5,0x45,0xab,0x1c,0xb9,0x40,0xc6,0xd1,0x67,0x95,0x4d,0x8f, +0xa3,0x41,0x3f,0x56,0x31,0x16,0x82,0xdb,0xf1,0x44,0xb7,0x8f, +0xc8,0xcc,0x51,0x05,0xc7,0x76,0x8f,0xc5,0x60,0x7d,0x38,0xa1, +0xe8,0x29,0xe8,0x08,0x64,0x8d,0xef,0xce,0x7f,0xa0,0xdb,0x6a, +0xe6,0x20,0xed,0x34,0xb8,0x3a,0xb7,0x6d,0xba,0xa4,0x67,0x4d, +0xe3,0x1c,0x5b,0x9b,0x99,0x5b,0xca,0xa7,0x32,0xa5,0x21,0xb9, +0x76,0x76,0x21,0x01,0x1e,0x84,0x35,0x8f,0xcc,0x80,0x5a,0x42, +0xb5,0x46,0xa1,0xc9,0xc2,0x4d,0x3a,0x6e,0x76,0xcc,0x92,0x68, +0x3d,0x09,0xd6,0xea,0x43,0x19,0xbd,0x12,0xcd,0x74,0xb0,0x2f, +0xca,0x26,0x1d,0x37,0x93,0x82,0x17,0x8c,0xec,0x02,0xcb,0x04, +0xc1,0x51,0x42,0xdc,0x8b,0x50,0xeb,0x84,0x14,0xb6,0xf3,0x62, +0xe5,0x17,0x07,0xa0,0xaf,0xa4,0x51,0xc9,0x1b,0xc1,0x43,0x26, +0x72,0x8a,0xfb,0x7c,0x33,0x0b,0x09,0x2e,0x54,0xbe,0xc1,0xfe, +0x7c,0xa7,0xe6,0x47,0x98,0x26,0x83,0x59,0x86,0x38,0x8b,0x41, +0x55,0x9f,0x19,0x63,0x16,0x88,0x33,0xca,0x87,0x8a,0x01,0xac, +0x06,0x6a,0xe3,0x07,0x28,0x47,0x76,0x6e,0xe9,0x0a,0x69,0x53, +0xe9,0xb9,0xfa,0xa6,0x26,0x89,0x92,0x6d,0x15,0x6c,0x98,0x93, +0x2d,0xb5,0x9d,0x65,0x57,0x44,0x5e,0x8f,0x28,0x06,0xb3,0x86, +0xa8,0x86,0x1a,0x78,0xa0,0x15,0x1c,0x20,0x96,0xde,0x8a,0xdb, +0xad,0x50,0x05,0x27,0x8e,0x29,0x23,0xbc,0x2c,0x03,0xe6,0x2c, +0x0c,0x4b,0x84,0x6b,0x12,0x9c,0x24,0x1a,0xdd,0x76,0x1b,0xdb, +0x82,0x8b,0x04,0x17,0x98,0xd9,0xa2,0x7c,0xdf,0x08,0x66,0x28, +0x5d,0x70,0x91,0x91,0xa8,0x88,0x5f,0x84,0x0d,0x2c,0x8c,0x31, +0xc6,0x31,0x18,0x6e,0x02,0xf6,0x8c,0x23,0xbe,0xbf,0x90,0xc0, +0x88,0x3e,0x48,0x57,0xda,0x49,0xe1,0x4d,0x78,0xef,0x3a,0x4c, +0x4c,0x07,0x55,0xc9,0x0e,0xa5,0x5b,0xb3,0x10,0xf1,0x6d,0xb3, +0x28,0x97,0x9b,0xe0,0xc7,0xae,0x86,0xa5,0xc6,0xd1,0x05,0x68, +0x8a,0x03,0x3d,0xd3,0x4d,0x81,0x2e,0xbe,0xaa,0x74,0x38,0xb7, +0x77,0x91,0xe0,0x0a,0xfa,0x67,0xc3,0x67,0x78,0xcc,0xb3,0xd4, +0x53,0xab,0x76,0x6b,0xbf,0x5b,0xf1,0x34,0x0d,0xfa,0xa8,0x85, +0x9d,0x13,0xbd,0xf4,0xfb,0x26,0x36,0x03,0x86,0xa5,0x82,0x5d, +0x12,0x2c,0x91,0xe0,0x39,0x43,0xd8,0x4a,0x38,0xe6,0x22,0x71, +0xf9,0x5a,0x94,0x49,0x70,0xb3,0x91,0x30,0xa1,0x45,0x24,0xfe, +0x73,0x2c,0x6b,0xd1,0xaa,0xe0,0xf0,0x4b,0x13,0x28,0x42,0x17, +0xcc,0x36,0x81,0x6c,0xf4,0xc1,0x2a,0x63,0x91,0xd7,0xe3,0xa0, +0x60,0xb7,0xde,0xdd,0xf8,0x55,0xe4,0xbd,0x15,0x1b,0xa4,0xfb, +0xe6,0xef,0xd5,0x48,0x99,0x24,0x31,0x53,0x8e,0x63,0x41,0x0b, +0x06,0x5c,0x82,0xf9,0x05,0x82,0x8a,0x41,0xb2,0xd4,0x1f,0x7f, +0xd6,0xc3,0xb1,0x38,0x7d,0x98,0x64,0x1f,0x99,0xf2,0x36,0x7e, +0xb1,0xee,0x61,0xd8,0xdd,0x15,0xe1,0xd2,0x83,0xb3,0xd3,0xe6, +0xee,0x1b,0x21,0xae,0x22,0x59,0xc2,0x57,0x04,0x0d,0x8e,0xd0, +0x12,0x29,0x5e,0x86,0xef,0xd8,0x2b,0x77,0xaa,0xa1,0x6f,0x2a, +0x91,0xb1,0x4d,0x39,0x4f,0x1f,0xba,0x99,0x48,0xec,0xe3,0x3e, +0x49,0x6f,0xa9,0x04,0x4d,0x95,0xba,0x2c,0xbc,0xf9,0xb4,0x86, +0x24,0xf5,0xfa,0x32,0xb0,0xd6,0x47,0x6b,0x06,0xa7,0xf9,0x8e, +0x45,0x95,0xc9,0xa2,0x9d,0x66,0x2a,0x4a,0xd9,0x51,0xe8,0x4a, +0x14,0x37,0x03,0x47,0x8e,0x2a,0x33,0x91,0x76,0x54,0x9f,0x6f, +0x6e,0xeb,0x94,0x28,0x83,0xce,0x0b,0x0d,0x4c,0xe3,0xe5,0x93, +0xb7,0x4f,0x3c,0x10,0xed,0x54,0xa8,0xa8,0x22,0x76,0x9a,0x88, +0x9a,0xd8,0xd6,0x06,0x09,0x90,0x49,0xa4,0x6e,0x35,0x46,0x9e, +0x0c,0xde,0x77,0x4e,0xac,0x90,0x82,0x05,0x0c,0x6b,0x83,0x79, +0x89,0xc2,0x60,0x09,0xce,0x15,0x0d,0xb5,0xf2,0x28,0xdb,0x8e, +0x26,0x42,0x1b,0xe8,0xb4,0x2b,0x67,0xeb,0x83,0xb6,0xb2,0x0d, +0x8d,0xf5,0x45,0x56,0x7f,0x55,0xf4,0x61,0xc1,0xd0,0x10,0x0d, +0x31,0xc1,0x10,0x7c,0x18,0x1b,0xd4,0x9a,0x8e,0xe3,0xb0,0x3f, +0xaa,0xd5,0x59,0x49,0xe1,0x0d,0x18,0xf9,0x10,0x66,0x66,0x13, +0xcd,0x26,0x2b,0xaf,0x9c,0x13,0xbe,0x03,0xa6,0x55,0x54,0xa6, +0xb8,0xdd,0x68,0x80,0x66,0x38,0xde,0x10,0xc6,0x91,0x7e,0x63, +0xec,0xc9,0x94,0xf6,0x16,0xbe,0x53,0x63,0x29,0x85,0x21,0x20, +0x3f,0x0b,0xcb,0x92,0x21,0x53,0x02,0xe3,0x2c,0x48,0x54,0xd9, +0x86,0x23,0x36,0x8e,0xe0,0x2c,0xb6,0x46,0x84,0xd9,0xc9,0x0d, +0xe8,0xdd,0x46,0xd4,0x05,0xfa,0x4e,0xce,0xd1,0xbb,0xbb,0xf8, +0x7d,0xd0,0x37,0x09,0x26,0x82,0x4c,0x46,0x92,0x45,0xcf,0x9e, +0x54,0x1f,0x9e,0xb2,0xa8,0xe5,0xeb,0x07,0x21,0xa0,0x73,0x24, +0xaa,0x1d,0xb5,0xfd,0x56,0x83,0xa7,0xfe,0x96,0x02,0xf4,0xc5, +0x85,0xab,0x76,0xeb,0xc3,0x82,0x82,0x23,0x18,0x82,0x36,0x9e, +0x7b,0xf4,0xc1,0xea,0x58,0x19,0x16,0xb4,0xed,0x76,0x87,0xa3, +0xa0,0x53,0x28,0x3a,0x81,0x83,0x62,0x1c,0xbb,0xbb,0x7a,0x57, +0xcd,0xce,0x3a,0xa3,0xdd,0xd2,0x40,0x9c,0xe5,0x8c,0x13,0xb4, +0x91,0x69,0x70,0x91,0x56,0xdd,0x2a,0xfa,0x24,0xe7,0x73,0x09, +0x58,0xd3,0x5b,0xb0,0x64,0x29,0x51,0x96,0x35,0x0e,0xa9,0x20, +0x7e,0xec,0x07,0x43,0x6f,0x81,0x43,0x22,0x08,0xa2,0x2a,0x8d, +0x89,0x0a,0x52,0x9b,0xf6,0x9e,0xdb,0xdd,0x6a,0xb4,0x4b,0x1a, +0x84,0x73,0xec,0x51,0x43,0x0b,0x99,0x3a,0x37,0x69,0x45,0xe7, +0xd1,0x6b,0x39,0xb7,0x24,0x30,0x08,0x19,0x1a,0xfd,0x9c,0xc8, +0x28,0x18,0x3d,0x86,0x2b,0x37,0xa7,0x60,0x3a,0xf4,0x6d,0x00, +0x35,0x88,0x96,0x01,0x03,0x03,0x5b,0x45,0xee,0x17,0x86,0xb1, +0x8a,0x48,0xe5,0x9b,0xcb,0xa1,0x45,0x79,0x04,0xaf,0x2c,0x87, +0x2b,0x3d,0x8b,0x1a,0x72,0xe1,0x31,0x0b,0x96,0x86,0x68,0x89, +0x1a,0x60,0x6a,0x88,0xa6,0x1a,0x86,0x4f,0x30,0xa1,0x95,0x98, +0x4b,0x03,0x67,0x32,0xb8,0xd4,0x61,0x2a,0xca,0xa6,0x72,0x15, +0x16,0x14,0x8c,0xfa,0xfa,0x0c,0xf4,0x05,0x47,0x19,0xcc,0xfc, +0x54,0x24,0x47,0xac,0x2b,0x65,0xcd,0x4f,0xe9,0xd5,0x98,0x94, +0xad,0xb4,0x92,0x36,0x79,0xb4,0xdb,0x9f,0xb1,0x94,0xe0,0x1b, +0xca,0x5f,0x59,0x70,0x01,0xc9,0x63,0xf0,0x3c,0x0e,0x0f,0x4d, +0x0b,0xa4,0x8e,0xf8,0xc5,0x22,0x32,0x61,0x3a,0x0c,0x97,0xc0, +0x08,0xe1,0x2d,0xd6,0xe8,0x8c,0x51,0xa5,0x49,0xe9,0x6a,0x73, +0x69,0xbb,0x6b,0xb3,0x43,0xa3,0x95,0xe8,0x94,0xe1,0x87,0x59, +0x9b,0x47,0x3a,0xdf,0xe8,0xdf,0xac,0x87,0x37,0x8e,0xc2,0xf0, +0xdd,0xb0,0x4c,0x82,0xf7,0x0c,0x20,0x95,0x5e,0x8d,0x57,0xb1, +0x1f,0xea,0x13,0xb0,0xc5,0x13,0x77,0xf9,0xa4,0xeb,0xca,0xbd, +0xc6,0x9f,0x9b,0xb4,0x5a,0x35,0x6a,0x66,0x89,0x1a,0x71,0x16, +0xb6,0xb2,0xe0,0x71,0x7a,0xed,0x04,0x7b,0x0d,0xed,0x85,0x6a, +0x55,0xb6,0xf7,0x1e,0x37,0x00,0x9d,0x05,0x83,0xd5,0x36,0xb5, +0x62,0xda,0x32,0x0a,0x42,0xf5,0xc5,0x3f,0x72,0x35,0x78,0xe5, +0x3e,0x43,0x50,0xc9,0xa7,0x50,0xc1,0xcc,0xa8,0x74,0xbe,0xc3, +0x81,0x65,0x3b,0x9a,0xd2,0x4e,0x21,0x07,0x6b,0x44,0x20,0x3a, +0x23,0x80,0x25,0x78,0x62,0xe2,0x2d,0xb0,0x2c,0x16,0xf4,0xc8, +0x00,0xf2,0x51,0xce,0xd2,0x45,0x1d,0x34,0xc0,0x61,0x12,0x02, +0x5e,0xd8,0x90,0x1f,0x3d,0x81,0xf7,0x7f,0x6a,0x14,0x2a,0xcd, +0xd7,0x38,0x86,0x23,0x32,0x87,0x4b,0x7a,0xec,0x38,0x8d,0xdd, +0x53,0xb9,0xb3,0x3a,0xa5,0x9a,0x58,0x22,0x18,0x67,0xbb,0xe0, +0x04,0x2d,0x94,0xd4,0xbb,0x4b,0x6b,0x6e,0x17,0x7f,0x9a,0xf3, +0x85,0x04,0xec,0xe8,0x18,0x7c,0x33,0x72,0xac,0xff,0x2c,0xcf, +0x13,0xb6,0x55,0x2b,0xea,0xfc,0x2c,0xa5,0x4d,0xd6,0x0d,0x36, +0xc7,0x1c,0x9d,0x27,0x2d,0x5f,0x32,0xce,0x50,0xb4,0xec,0x4a, +0x18,0x7e,0x0b,0x9c,0xb7,0x43,0xb7,0x48,0xaf,0x4a,0xf0,0x60, +0x21,0x84,0x39,0xbd,0xe7,0xd4,0x81,0xea,0xb4,0xd0,0x16,0x29, +0xf6,0x75,0xc5,0x0f,0x42,0xf0,0x9d,0xe8,0x14,0x43,0xe9,0xe9, +0xed,0x8d,0x49,0x67,0x77,0x49,0x88,0x7b,0x39,0x19,0x82,0x53, +0x04,0x83,0xcb,0x7d,0xc7,0xe1,0x90,0x89,0x5c,0x25,0x31,0x87, +0xec,0x9b,0x4a,0x62,0x59,0x4f,0x59,0x2a,0xe8,0xf5,0x98,0xa3, +0x52,0x58,0xcd,0x6e,0xfd,0x7a,0x23,0xd0,0xeb,0xbf,0x32,0x8d, +0x94,0x1e,0xd0,0xd8,0x8b,0x7d,0x53,0xb0,0x8f,0xc4,0x50,0xb9, +0x45,0x94,0x71,0xfc,0x75,0xb0,0x2f,0x14,0x96,0xe8,0xef,0x96, +0xfa,0x29,0xa7,0x2c,0x47,0x23,0xd4,0x43,0x5e,0x92,0x2a,0x4c, +0x62,0x37,0x80,0x4a,0xd8,0x77,0x21,0x4f,0xcd,0xc2,0xa4,0x99, +0xe3,0xd3,0xc7,0xef,0xc7,0x01,0x84,0xa7,0x6b,0x8a,0x28,0x56, +0x0f,0xbe,0xef,0x60,0x94,0xea,0x18,0xcb,0xea,0x83,0xad,0x3b, +0x83,0xa6,0xbe,0xc3,0xf0,0x9d,0x49,0x5c,0xf5,0x0a,0xd2,0xf3, +0x77,0x15,0x30,0x00,0x02,0x64,0x65,0xa0,0xd7,0x2e,0x7a,0x90, +0x17,0x09,0x36,0x9a,0x2d,0xd8,0xf7,0xea,0xd8,0x73,0x12,0xc8, +0x5e,0xde,0x7d,0xe9,0xbc,0x10,0xc0,0xdc,0x76,0xf8,0x6a,0xd9, +0x15,0x53,0x49,0x0f,0x63,0xc7,0x58,0x48,0xd1,0xc3,0x14,0xb4, +0x25,0xa4,0x8c,0x18,0xb4,0xf3,0x1e,0x86,0x83,0xa7,0x70,0xd5, +0x66,0xa2,0x10,0x55,0x24,0xc4,0x84,0xc9,0x5a,0x60,0x59,0x0f, +0x29,0x5d,0xc5,0x5b,0x6c,0x97,0x52,0xa2,0xc3,0x08,0xe3,0x95, +0x9d,0xe4,0xc9,0x48,0x84,0xa9,0x82,0x35,0x0c,0x66,0x57,0xd6, +0x7b,0x9d,0xf2,0xa8,0x27,0x2e,0x92,0x07,0x63,0xf6,0xc0,0x0a, +0x09,0xfe,0xaa,0x0f,0x35,0x74,0x14,0xca,0x42,0xb0,0xaf,0xcf, +0x14,0xe7,0xd3,0x8e,0xf5,0x2e,0x95,0xae,0x76,0xd2,0x6a,0x87, +0x7a,0xb3,0x1a,0x23,0xcb,0xa1,0x8b,0x16,0x8c,0x36,0xa8,0x30, +0x95,0x7e,0xd5,0x7e,0xfd,0x46,0xe3,0x8f,0x85,0x0e,0x47,0xed, +0xf3,0x9c,0x45,0x5f,0x8b,0x80,0xf5,0xac,0x65,0xa5,0xe6,0x29, +0xbd,0x8a,0xc6,0x8e,0x9a,0xeb,0x47,0x1e,0x48,0xda,0x70,0x2c, +0x8c,0x36,0xc4,0xd1,0x38,0xc5,0x10,0xce,0x32,0x86,0x38,0x1d, +0x65,0xc8,0xe2,0xe4,0xc5,0x47,0x4d,0xa4,0xe7,0x8e,0x9c,0x2b, +0x3b,0x53,0x2b,0xc1,0x47,0xad,0xf0,0x3d,0x73,0xce,0xa3,0xc3, +0xfe,0xa4,0x2b,0x21,0xf1,0x28,0x88,0x05,0x47,0x18,0x03,0xfd, +0x20,0xb2,0x42,0x98,0xaa,0xb7,0x53,0xea,0xaa,0xfc,0x70,0x02, +0xfa,0xa1,0x15,0x72,0xe4,0xed,0x9d,0x20,0xf6,0x2a,0x84,0xe6, +0xc1,0xfa,0x9d,0x50,0x67,0x90,0x24,0x8d,0xc6,0x0a,0x7f,0x0c, +0xd0,0xc2,0xd5,0x12,0xc1,0x51,0x55,0x0b,0x56,0xfb,0x43,0x40, +0x34,0x54,0x18,0x6c,0x93,0xa6,0x60,0x7d,0x3e,0x46,0x5c,0xc3, +0x50,0x51,0x41,0xe3,0x05,0x0d,0xf6,0x69,0x1e,0xbc,0x59,0x77, +0xb3,0x2e,0xa8,0x59,0xba,0xc8,0x0e,0xfb,0x38,0xce,0x5c,0x23, +0x81,0x0b,0x7a,0xdd,0xd3,0x98,0x19,0x15,0xce,0x1f,0x73,0x10, +0xd9,0x8e,0x61,0xb4,0x63,0xd8,0x21,0xd1,0x69,0xcb,0x14,0x93, +0x58,0xb8,0x4e,0x62,0xc5,0x57,0xfa,0x24,0x90,0x1a,0xe1,0x90, +0x4a,0x53,0x29,0x38,0x83,0xfa,0x55,0x70,0x4c,0x14,0xe6,0x48, +0x94,0x6a,0x62,0x28,0xdd,0xf0,0x03,0x3b,0x0f,0xe6,0x6b,0x80, +0xb7,0x11,0xb0,0x92,0x82,0x0d,0xa1,0xa9,0x81,0xf2,0x80,0xb0, +0x70,0xaf,0x0d,0xbc,0xdf,0x02,0x2b,0x94,0xb9,0x8e,0xad,0x5e, +0x21,0xad,0xfc,0xa9,0x0e,0x86,0x14,0xdc,0x94,0xa4,0xa7,0x6c, +0xdf,0xb9,0x53,0xbe,0x73,0xfb,0x96,0xb0,0x9d,0xfc,0x05,0x1c, +0x79,0x0f,0xcd,0x6e,0xe1,0x3c,0x91,0xad,0x63,0xf6,0xac,0x82, +0x86,0xe5,0xad,0xb8,0x1c,0xe6,0x1a,0xe0,0x5c,0x34,0x36,0x04, +0xe3,0x6e,0x9a,0x81,0x0c,0x90,0xb2,0x1e,0x30,0x28,0x04,0xe4, +0x91,0xc0,0x1a,0x47,0x48,0xf7,0xe3,0x7b,0x39,0x38,0xb6,0x08, +0x87,0x48,0x90,0xcc,0xfa,0x15,0xf0,0x5e,0x2e,0x0c,0xdb,0x0b, +0xef,0x1a,0xee,0x97,0x46,0x21,0x1b,0x88,0x43,0x5d,0x51,0x85, +0x90,0x2b,0x52,0xf8,0x10,0x4f,0xfa,0x95,0x59,0x83,0x43,0x8d, +0xf0,0x0d,0xcd,0x71,0x7e,0xa7,0xfc,0xea,0xfd,0xaa,0xec,0x3c, +0xa5,0xf7,0x71,0xf0,0x3d,0x1c,0xdf,0x81,0x1f,0xd6,0x17,0x4b, +0xfd,0x2e,0x78,0x5e,0x72,0xbf,0xf8,0x08,0x98,0x1b,0x30,0xee, +0x30,0x4c,0x90,0x88,0x8e,0xfd,0x40,0x61,0xca,0x82,0xca,0x46, +0x18,0xea,0xf7,0x65,0xc0,0xbe,0x76,0xe9,0xa8,0x3c,0x1c,0x56, +0x80,0x7d,0xf7,0x4a,0x36,0xe3,0xff,0x63,0x9f,0x6c,0x04,0xe9, +0xea,0xcf,0x57,0x93,0xe2,0x31,0x05,0x38,0x38,0x6f,0xdc,0x3e, +0x32,0x27,0x0e,0x62,0xe1,0xad,0x08,0xd0,0x72,0x81,0xfe,0x9e, +0xa4,0x1c,0xfb,0x1f,0xc3,0x45,0xc7,0x71,0x50,0x9a,0x68,0xfd, +0xd5,0x51,0x6c,0x08,0xcc,0xf4,0x02,0x1d,0x17,0x18,0x69,0x14, +0x42,0x06,0x75,0x36,0xf6,0x3d,0x84,0x2a,0x0b,0xd7,0xcd,0x88, +0x98,0x17,0x75,0x0a,0x6c,0xaa,0x20,0xa6,0x08,0x76,0x13,0x9b, +0xfa,0xe2,0x01,0x7b,0x8c,0x37,0x43,0xd7,0xd0,0xb8,0xd0,0xb8, +0xb0,0xf8,0x94,0xe5,0x52,0xa0,0x76,0x03,0x9f,0x09,0x83,0x8e, +0x24,0x7b,0x25,0x79,0x25,0x79,0x8b,0xd4,0xd6,0x83,0x03,0xeb, +0x72,0xda,0xfe,0xb4,0x5d,0x43,0x19,0xd0,0x39,0xf0,0x41,0x2a, +0xcc,0xd1,0x4f,0x91,0xae,0xc7,0x91,0x21,0x38,0xd0,0x6f,0xa4, +0x4d,0xbd,0x75,0xad,0xf5,0x09,0x6f,0x4b,0xe9,0x59,0x87,0xb3, +0x96,0xa7,0x2c,0xcc,0x71,0x84,0xe6,0x48,0xec,0xbf,0xa0,0xc2, +0x5c,0x0a,0xfd,0x6e,0xdd,0xfd,0xbe,0x19,0x46,0x54,0x5b,0x1f, +0xb7,0x3a,0x66,0x27,0x52,0x72,0x17,0xcc,0x58,0xf4,0x81,0x78, +0x58,0xd6,0xa1,0x7c,0x5b,0x0f,0xc4,0xf3,0xbf,0x33,0xf4,0x60, +0x06,0xa6,0xd2,0x33,0x8f,0x8b,0xe6,0x1f,0xde,0x86,0x3c,0xed, +0x14,0x4a,0xcc,0x0f,0xfb,0xa0,0x07,0xc3,0xb9,0x08,0x4f,0x59, +0x3f,0xf0,0xd4,0xdb,0x52,0x88,0xc1,0xf8,0x9e,0xcb,0x41,0x23, +0x78,0xa3,0xec,0x63,0xe5,0xe9,0xf6,0xdd,0xb3,0x85,0x0e,0x70, +0x38,0xbf,0x61,0x8c,0xdb,0x18,0xa3,0x79,0x6a,0xf5,0x4e,0x5d, +0x5f,0x91,0x20,0xb1,0x8f,0x04,0xc5,0xd0,0x0e,0x71,0x0e,0x12, +0xa0,0x0f,0x7b,0x10,0x16,0xa4,0x43,0x50,0x32,0x78,0x92,0x28, +0xbb,0x1c,0xf6,0x93,0x60,0x35,0x37,0x1c,0xdd,0xd6,0xe2,0x2c, +0x09,0xee,0x5d,0x2e,0x18,0x9d,0x17,0x27,0xcf,0x5f,0x8f,0xb1, +0xba,0x1d,0x8a,0x0c,0xfc,0x7f,0x7a,0x70,0x12,0x93,0xb0,0x8c, +0xe0,0x3d,0x4c,0xc7,0x56,0x3d,0xd2,0xf5,0x2d,0x45,0x02,0xb1, +0xe3,0xc5,0x76,0x46,0xd9,0x07,0xeb,0x58,0x78,0x48,0x1c,0x71, +0x9d,0x01,0x4a,0x50,0x73,0x4c,0xb9,0xb1,0x14,0x2c,0x41,0xd2, +0x05,0x1a,0x89,0x70,0x52,0xa2,0x1c,0x29,0x12,0xd2,0x76,0x65, +0x61,0xda,0xd7,0xd7,0x48,0xb8,0x08,0x95,0x09,0x12,0x3d,0xa5, +0x84,0x41,0x17,0xc3,0x89,0x38,0x6a,0x2a,0xb7,0x0f,0x9a,0x58, +0xc1,0x42,0x4f,0x69,0xd1,0x33,0xec,0x05,0x6d,0x36,0x14,0x97, +0xd9,0xe3,0xdb,0x56,0x7a,0x12,0x85,0xab,0x71,0x77,0xcd,0x39, +0xe6,0xd6,0xd5,0xcb,0x30,0x2a,0x1b,0x02,0x25,0xca,0x77,0x93, +0x58,0x0c,0x0b,0x1b,0x37,0x67,0x1a,0x57,0x61,0x43,0x3d,0xfa, +0x26,0xef,0x7b,0x48,0x95,0xc1,0x4f,0x22,0x2c,0x12,0x46,0x0a, +0x5e,0xac,0x35,0xae,0x9a,0x43,0x32,0x84,0xfe,0x9a,0x12,0x45, +0xa4,0x7e,0xf7,0xb9,0x56,0x06,0x64,0x9d,0x24,0x32,0x4e,0x6b, +0x84,0x78,0xd1,0x8d,0x07,0x84,0xb1,0xb7,0x61,0xdf,0xbc,0x76, +0x32,0xf5,0x49,0xbb,0x23,0x99,0x76,0xc5,0x02,0x16,0xf6,0x29, +0x8b,0x71,0x1f,0xe1,0xaf,0x46,0x18,0xcb,0x76,0xc0,0x61,0x38, +0x44,0x47,0xa3,0xc2,0x14,0xe7,0xe0,0x32,0x64,0x2b,0x4d,0xa4, +0x60,0x0b,0x23,0xcf,0x83,0x6d,0xa2,0xa0,0x25,0x51,0x0e,0xef, +0x01,0x13,0x42,0x03,0xeb,0x73,0x4a,0xe7,0xa1,0x6e,0xa7,0xb3, +0x83,0xb4,0x7d,0x79,0xe7,0x8c,0x92,0x15,0x12,0x0d,0x65,0xbe, +0x18,0x09,0x06,0x81,0x04,0x9c,0xeb,0xe1,0xa9,0x49,0xbe,0xd4, +0x12,0xbf,0x1a,0x4d,0x30,0x8a,0x2d,0x52,0x62,0xbf,0x05,0x0a, +0x63,0x76,0xcd,0x19,0xaf,0x4e,0x9f,0xd3,0xe6,0xc1,0xd2,0x12, +0xf3,0x22,0xdd,0x6c,0x73,0x89,0x49,0x08,0x1b,0x72,0xd6,0xf3, +0xa2,0xef,0x99,0x15,0x41,0xd2,0x62,0xf3,0x62,0xdd,0x2c,0x33, +0xb1,0xa6,0x94,0xc0,0xde,0x1b,0xb5,0xf5,0x97,0x2e,0xd9,0xd5, +0x2f,0x58,0x68,0x67,0xa3,0xad,0x5d,0x6b,0x73,0x9d,0xaf,0x57, +0x71,0x08,0xca,0x29,0x25,0x89,0x7c,0x69,0x76,0x4e,0x75,0x4d, +0x76,0xa0,0x07,0x49,0xe4,0x3d,0x82,0x02,0xed,0x45,0x8c,0xbf, +0x53,0xf8,0x85,0x3d,0x79,0x78,0xb2,0x78,0x7a,0x47,0xb4,0x6a, +0x1b,0x18,0xb0,0x18,0xdc,0x02,0xc1,0xdf,0xb6,0x8c,0x82,0xbb, +0x9f,0xb4,0xcc,0x80,0x59,0x46,0x04,0xed,0x64,0x19,0xdd,0xc7, +0xbb,0xa3,0x8d,0x18,0x92,0xb9,0xc9,0xc4,0xed,0xca,0x3b,0x38, +0x40,0x94,0xe5,0x9e,0x30,0x80,0x6d,0xbe,0x7e,0xfc,0xbb,0x03, +0xc0,0x10,0xd8,0x27,0xd3,0x87,0x3b,0xcc,0xc6,0x09,0x1e,0x33, +0x2d,0xf5,0x25,0xe1,0x4f,0x59,0x7d,0xe5,0x62,0x5c,0xaa,0x2f, +0xd8,0xb6,0xa3,0x37,0xa9,0xdb,0x02,0x8d,0x6c,0x3b,0xac,0xeb, +0x01,0xd8,0xb5,0x56,0x04,0x94,0xcf,0xc4,0x3e,0x65,0x04,0xb8, +0xe9,0xc3,0xdb,0xe7,0x60,0x6e,0xa2,0xd0,0x4f,0xa2,0x94,0x88, +0x24,0xe3,0x15,0x2c,0x6b,0x84,0x93,0x50,0xdd,0x14,0xd4,0x89, +0x3f,0xd9,0xbb,0x92,0x20,0xfa,0xc6,0x88,0x5a,0x5b,0x29,0xd1, +0x0e,0x53,0x03,0x1a,0x49,0xb0,0x5a,0x02,0x52,0x57,0x7a,0x18, +0x99,0x18,0x37,0xcd,0xe0,0xb6,0x39,0x47,0x6e,0x70,0x48,0x30, +0x4a,0x90,0x12,0xa8,0xd5,0x41,0x5f,0xce,0xcf,0xb9,0xb2,0x9b, +0xdf,0xf3,0x38,0x89,0xa4,0x7f,0x2a,0xb2,0xcf,0xd1,0x52,0xf4, +0x6f,0x1b,0x21,0x8a,0xdd,0x57,0xb5,0xa7,0x76,0x57,0xbd,0xa1, +0x08,0x96,0xc6,0x3b,0xe0,0x3b,0x86,0x53,0x4e,0x7a,0x48,0x8f, +0x35,0x1e,0x69,0xcf,0xee,0x92,0xfc,0x34,0x83,0x46,0x03,0xb7, +0x89,0xf8,0xfe,0x5c,0xee,0x18,0x99,0x90,0x46,0x3c,0x3a,0x05, +0x2a,0xe0,0x25,0xfb,0x04,0xfa,0x37,0x8b,0x5e,0x21,0x55,0x7c, +0xc2,0xe6,0xdb,0x66,0xdb,0x1e,0xb6,0x29,0x3b,0x28,0x0d,0xae, +0x0f,0xaa,0x5b,0x5d,0x27,0x49,0x44,0x13,0x76,0x4d,0x6d,0x60, +0xc3,0xea,0x3a,0xd7,0x50,0x69,0x81,0x6d,0x8e,0x55,0xa6,0xad, +0x84,0xa4,0x98,0x32,0xf6,0x05,0x7c,0xca,0xbc,0x1a,0x9f,0xc2, +0x44,0x31,0xac,0xbe,0xa3,0xb8,0xc9,0x1e,0xb5,0xcd,0xb3,0xcd, +0xb6,0x3a,0x76,0x48,0x1a,0x78,0x32,0xa0,0x6e,0x65,0xbd,0x64, +0x3f,0x9a,0xb1,0xc1,0x75,0xab,0x1b,0x56,0xd6,0xb9,0x87,0x4a, +0x0b,0x6d,0xf2,0xad,0xb2,0x6c,0x24,0xe8,0x0d,0x63,0xd8,0x67, +0xe0,0x93,0xf9,0x37,0xc0,0x27,0x98,0x89,0x72,0xad,0x57,0xb8, +0xb2,0xbd,0xe2,0x90,0xae,0x7a,0x05,0x94,0x78,0x86,0xfe,0x49, +0xac,0x85,0xf8,0x0d,0xfb,0xb7,0x21,0xea,0xa6,0x76,0x71,0x2d, +0x72,0xb0,0xe2,0x53,0x36,0xdf,0x3e,0xc7,0x3e,0xcb,0xb6,0xf4, +0x90,0x34,0xb8,0x36,0xa8,0x66,0x75,0x8d,0x24,0x09,0xf5,0xd8, +0x35,0x35,0x81,0xf5,0xab,0x6b,0xdc,0xd6,0x4a,0x0b,0xec,0x73, +0x6c,0x33,0xed,0x24,0x18,0x0a,0x3c,0xfb,0xf7,0x40,0x2c,0xc6, +0xd1,0xbd,0xf0,0x57,0x8c,0x78,0x5b,0x15,0x76,0x6c,0x2f,0x79, +0x4f,0x22,0x89,0x43,0xb6,0xdd,0x61,0x3b,0x89,0xcf,0xba,0xe7, +0xdd,0x84,0x8a,0xdd,0xd8,0x88,0xdd,0x44,0xc2,0x38,0xf6,0x1f, +0xa0,0x5d,0xac,0x60,0x7a,0xc1,0xb2,0xa4,0xc7,0x1b,0xbe,0x60, +0x0b,0xec,0x72,0x6d,0xb3,0x6c,0x8a,0x33,0x88,0x37,0x04,0xd6, +0xae,0xaa,0x93,0x8c,0xb0,0x64,0xb3,0x3c,0x0f,0x7a,0x64,0x90, +0x20,0xf8,0xd5,0x72,0x28,0x51,0xa6,0x62,0xed,0x72,0xa8,0x9d, +0x77,0x5e,0xe1,0x45,0xef,0x5f,0x5d,0x9a,0xb1,0xa6,0xce,0xff, +0xd4,0xaa,0x5a,0x35,0xd2,0x38,0x51,0xb1,0xf2,0x99,0xca,0x3d, +0xd6,0x11,0xfd,0x66,0xdb,0x66,0x59,0x4b,0x26,0xc7,0xb3,0xc9, +0x1b,0x93,0x23,0x93,0x36,0x96,0x1f,0x94,0xae,0xa9,0x0b,0x3c, +0xb5,0xba,0xce,0x6d,0x9d,0x74,0x5f,0xc8,0x5e,0xf2,0x4f,0xe2, +0x41,0x42,0x88,0x06,0xd8,0x19,0xa2,0xdd,0x7c,0xc3,0x5b,0xb8, +0xb9,0x15,0x36,0x13,0x1c,0x3d,0x81,0xc6,0xa5,0x8e,0x3d,0x38, +0xba,0xfc,0x45,0x1c,0x3d,0xe1,0x87,0xd6,0xe1,0xa2,0x59,0x3f, +0x52,0x78,0x3d,0x53,0x86,0x07,0x51,0x46,0x8f,0xf6,0x25,0xde, +0xeb,0xfe,0xac,0x73,0xc6,0xfb,0xcf,0x78,0x9b,0x51,0xe2,0xef, +0x78,0xfb,0x5a,0x0f,0xde,0xfe,0xf8,0x39,0xde,0x1e,0x26,0x48, +0xfe,0x0a,0x6f,0xbf,0x20,0x12,0xe9,0xce,0x2e,0xdb,0x86,0x78, +0xd1,0xec,0x40,0x36,0x39,0xb2,0xe2,0x60,0xaf,0x34,0x6a,0x6e, +0xa1,0x19,0x7e,0xe9,0xbe,0xa9,0x2b,0xd5,0xb0,0xc9,0x00,0xf6, +0x88,0x38,0x5c,0x9d,0xc0,0xf0,0x45,0x3d,0x30,0xfc,0xc1,0xa5, +0xcb,0xf7,0xce,0x40,0x9f,0x66,0xad,0xb6,0x09,0x35,0x33,0xab, +0x4f,0x48,0xad,0x1f,0xeb,0x7c,0xab,0x77,0xb3,0x0a,0xfa,0xe4, +0x03,0xbb,0x17,0xa6,0xf5,0x4c,0x8c,0x0a,0xfb,0x3f,0xe9,0xcc, +0x27,0x8c,0xfd,0x4d,0x55,0x05,0x36,0x39,0xd6,0x99,0x36,0x12, +0x5d,0xe5,0x32,0xf6,0x39,0x68,0xdf,0xd4,0x2a,0x7d,0x3d,0xd0, +0x2e,0x30,0xcc,0xef,0xa0,0x9f,0xf4,0x95,0xa0,0x88,0x64,0x43, +0x6a,0x82,0xab,0x03,0xaa,0x89,0x30,0xb9,0x8e,0x87,0xed,0x33, +0xed,0x25,0x5e,0xeb,0xd8,0xb5,0xd5,0x41,0xf5,0x01,0xd5,0x44, +0x77,0x79,0xc4,0xb7,0x0e,0xda,0x4b,0x70,0x25,0x1e,0xf9,0x0b, +0x38,0x5f,0xa2,0xd4,0x64,0x61,0x09,0x0c,0xbb,0x0d,0x3a,0x65, +0x02,0x63,0xb0,0x53,0xea,0x85,0x3f,0xea,0x90,0xa4,0x76,0x01, +0xbe,0x2f,0x0a,0xf2,0x9e,0xe2,0xcb,0xd7,0x1b,0x0d,0x11,0x04, +0x12,0xfd,0xb7,0xa9,0x00,0xc6,0xd3,0xbd,0x69,0x45,0x4f,0x52, +0xa0,0xd0,0x63,0xff,0x63,0x46,0x10,0xd6,0x93,0x11,0x6c,0xfd, +0xcb,0x8c,0x20,0x99,0x64,0x04,0xa8,0xc7,0xc0,0xca,0x2f,0xd9, +0xf0,0xea,0xd0,0xaa,0x90,0x2a,0x8f,0x08,0x69,0x96,0x63,0x86, +0x63,0x9a,0x83,0x04,0xa5,0x3f,0xb3,0x99,0x0e,0x07,0xed,0x53, +0x1d,0xca,0xd3,0xa4,0x11,0xd5,0xa1,0xb5,0x21,0x55,0x92,0xbf, +0xa1,0xc5,0x3e,0x18,0xfc,0x57,0x39,0xc6,0x24,0xbf,0xbf,0x48, +0x23,0x1e,0x28,0x09,0x6e,0xd3,0x85,0x11,0x37,0xc0,0xb4,0x58, +0x18,0x62,0x74,0x40,0xea,0xab,0x54,0x59,0x86,0xda,0xb8,0x04, +0xd5,0xc4,0x2e,0xd5,0x14,0x4f,0xd9,0x5e,0xdf,0x28,0xfd,0x2d, +0x46,0x27,0xa3,0xd1,0x9f,0xbc,0x04,0x6f,0x5c,0x23,0xb9,0xc8, +0xf6,0x0e,0x66,0x0c,0xb6,0xb0,0xaf,0xce,0x43,0x94,0x26,0xfa, +0xff,0x57,0x2a,0x72,0x14,0x7e,0x65,0x83,0x4f,0x05,0xd6,0xaf, +0x3a,0x49,0xa2,0xa7,0x48,0xfd,0xb0,0x55,0x4f,0xf4,0xac,0x0f, +0x38,0xbd,0xea,0x24,0x89,0x9e,0x47,0xac,0x73,0x2d,0x33,0xad, +0x25,0x3d,0x03,0xd2,0x8f,0x5d,0x77,0x72,0x6d,0x5d,0x50,0x3d, +0xd1,0x5c,0xb6,0xcd,0x21,0xdb,0x0c,0x6b,0x89,0x77,0x04,0x1b, +0x56,0x1f,0xd2,0x10,0x54,0xef,0x1a,0x2e,0xcd,0xb6,0xce,0xb4, +0x4e,0xb7,0x96,0xe0,0xa5,0x6e,0xf3,0xbf,0x0f,0xf7,0x85,0x78, +0x45,0x01,0x5b,0xef,0x5d,0x6c,0x65,0xe5,0xed,0x6d,0x13,0x92, +0xb2,0x6e,0xef,0x06,0xce,0x2e,0xe6,0xb7,0x0a,0x6a,0xcd,0x45, +0xda,0xe0,0xeb,0x0f,0xab,0xb6,0x40,0x91,0x5a,0xd4,0x81,0xb4, +0x6d,0x87,0xe4,0x0d,0x45,0x45,0x75,0x3c,0xca,0x76,0xb0,0xd9, +0x69,0xe9,0x05,0x05,0x69,0xe1,0x81,0xdc,0x16,0x26,0x28,0x3c, +0x7c,0xd5,0xaa,0xf0,0xf4,0xc3,0x1c,0xd6,0x77,0x9f,0x7c,0x05, +0x0f,0xa4,0xab,0x35,0x8a,0x85,0xcf,0x44,0xf6,0xf8,0x4d,0x64, +0x62,0xd7,0x5e,0x91,0xc5,0x30,0xdb,0x2b,0xf2,0xe9,0x55,0xec, +0x7f,0xce,0x3a,0xa0,0x94,0x79,0x96,0xa0,0x88,0x54,0x65,0x8a, +0x33,0xac,0xb9,0xa7,0x87,0x95,0xf5,0x31,0xcf,0x33,0x67,0x8e, +0x1d,0x3b,0x79,0xca,0xb3,0xd4,0x9c,0xcf,0xc7,0x80,0xd7,0x27, +0xb2,0x0d,0x0c,0xd9,0xc0,0xf0,0xb0,0x95,0x2b,0xc3,0x33,0xb2, +0xb9,0x9d,0x4c,0x4e,0xda,0xc1,0xa3,0x47,0xd3,0xd6,0x05,0x70, +0x3d,0x7e,0xf1,0xf3,0x9f,0xfc,0x02,0x55,0xcc,0xd9,0x2c,0x8f, +0x83,0x1e,0xe9,0x1e,0x12,0xfc,0x46,0x0f,0xce,0x92,0x39,0xe6, +0x91,0x98,0xfc,0xe8,0xe3,0x60,0x31,0xf9,0xb1,0x86,0x0f,0xaf, +0x81,0x55,0xb2,0xa0,0x56,0x9c,0xfe,0x2c,0x1e,0x8b,0x5c,0x4e, +0xfc,0xa5,0x7f,0x0f,0x97,0x7e,0xfb,0x03,0x0e,0xaf,0xe7,0xf1, +0x76,0x6f,0xbb,0xc7,0x86,0x38,0x9f,0x60,0xb4,0x9e,0xa4,0xc9, +0x1e,0xf8,0x2b,0x60,0xb7,0x43,0x18,0x23,0x89,0xdf,0xb1,0xe3, +0xa3,0x1d,0xf2,0xdf,0x64,0xa9,0xd3,0x78,0x15,0x77,0xce,0x8a, +0x21,0x6c,0x48,0x5d,0x50,0x8d,0x7f,0x2d,0xf1,0xa1,0x3c,0xfb, +0x6c,0x3b,0x12,0xaa,0x3d,0xd7,0x91,0xb1,0x13,0x78,0xd2,0xbf, +0xc6,0x55,0x0c,0xa7,0x39,0x36,0x87,0xec,0x24,0x30,0x52,0xb9, +0xf9,0xbf,0x4e,0xc0,0x84,0x41,0xc2,0x37,0xec,0xd9,0x63,0xc7, +0x1a,0x1a,0x3c,0x4b,0x57,0xac,0xf0,0xf0,0xb0,0xb4,0x2c,0xf5, +0x3c,0xcb,0x97,0xab,0xf8,0x86,0x1f,0xcc,0xe1,0x7b,0xd8,0x2a, +0xec,0x61,0x6b,0x0b,0x13,0x10,0xbe,0x6e,0x25,0x07,0xfd,0x94, +0x67,0xff,0xfb,0x3e,0x93,0x14,0x9e,0xaf,0x13,0xbb,0x51,0xa5, +0x7b,0xd5,0xbf,0x99,0x1d,0x0a,0x93,0x15,0x8b,0xd8,0xd3,0x25, +0x25,0xf5,0xa7,0xbc,0x8e,0x59,0x58,0x78,0x79,0x5a,0xd9,0x94, +0x78,0x9d,0xe6,0xcb,0x54,0x56,0x46,0x64,0x64,0x8b,0xb2,0xa6, +0xa6,0x1f,0x3d,0x92,0x16,0x26,0x7a,0x3e,0x31,0x8c,0x1f,0x87, +0xef,0x75,0xe7,0xff,0x9b,0xdd,0x13,0x06,0x8c,0x15,0xd3,0x58, +0xdc,0x01,0x73,0x56,0x9b,0x43,0x2a,0x0e,0xa7,0x6c,0xe6,0xb0, +0x98,0x02,0x23,0x56,0xaf,0x80,0x0c,0x7c,0x5b,0x04,0xd9,0xef, +0x80,0x33,0x0b,0x29,0x38,0x22,0xff,0x2c,0x66,0xc0,0xdb,0xd4, +0x2c,0x1c,0xc3,0xc2,0x0e,0x9c,0x93,0x7f,0x06,0x53,0x61,0xb8, +0x08,0x9d,0x46,0xa8,0xb8,0x09,0xb1,0xe5,0x22,0x78,0xbd,0xa2, +0x22,0xc4,0xc2,0x00,0xf1,0x54,0xb1,0x3a,0x84,0xe3,0x00,0xb6, +0xfc,0x97,0xf5,0x6e,0xe2,0xb3,0x19,0x79,0x86,0x01,0xbf,0xac, +0xef,0xc1,0xe1,0x62,0x7d,0x18,0x5c,0xce,0x1c,0x57,0x7d,0xf1, +0xab,0xa7,0x35,0x0c,0x26,0x68,0x7d,0xb0,0xb8,0xcf,0x41,0xea, +0xff,0xf9,0x59,0xa4,0xfa,0x8b,0x0a,0x8b,0xfd,0xcb,0xa1,0x3f, +0xe3,0x86,0xf3,0xfe,0xe2,0x69,0xee,0x7f,0x78,0x2b,0x32,0xd2, +0xd3,0x9c,0xc4,0xce,0xfe,0x0c,0x0e,0xe8,0x79,0xf1,0x57,0xcf, +0x73,0xff,0xaf,0x3a,0xbd,0x42,0xdc,0x2d,0x67,0xee,0xaa,0xba, +0xdd,0xeb,0xf9,0xef,0x5d,0x51,0x02,0xc1,0x40,0x05,0x07,0xdc, +0x85,0x01,0xa4,0x00,0x07,0xdc,0x7b,0xf6,0x2d,0xfe,0x7e,0xc6, +0xf8,0xec,0xf2,0xbb,0x3d,0xec,0xbc,0xfc,0x3d,0xf7,0x2f,0xcb, +0x9f,0x31,0x3b,0x1b,0x06,0xdc,0xed,0xed,0xfa,0xcf,0x4f,0x73, +0x5f,0xfd,0xf6,0xb9,0xfe,0x85,0x35,0x10,0x5e,0x8e,0x59,0xbf, +0xd9,0x43,0x30,0x80,0x70,0xa2,0xca,0xac,0xdf,0x8d,0x42,0x6a, +0x98,0x95,0x63,0xdb,0x0b,0x05,0x06,0x60,0x46,0xaa,0xb4,0xfd, +0xde,0x26,0x0d,0xb3,0xdc,0x20,0xfc,0xf7,0xdf,0x8d,0x98,0x85, +0x03,0x7a,0x0b,0x9e,0x35,0x49,0xc3,0x36,0x37,0x30,0x7b,0xa1, +0xa0,0x11,0xdb,0x48,0x15,0xb3,0xe7,0x16,0x53,0xa6,0x41,0x56, +0x39,0x86,0x0b,0x6b,0x9e,0x6b,0x42,0xd9,0x08,0x59,0xa4,0x93, +0x70,0xc1,0xe0,0xb9,0xa0,0xa4,0x4a,0x5b,0x39,0x9a,0xf5,0x56, +0x31,0xeb,0xad,0xd2,0x46,0xaa,0x98,0xf5,0x56,0xe9,0x69,0xb4, +0x06,0xc3,0xdd,0x20,0x4b,0x48,0xfb,0xad,0xc0,0x00,0x09,0x47, +0xa4,0xa4,0xf1,0xb7,0x46,0x6b,0xd0,0xcc,0x0d,0xda,0x7a,0xab, +0x98,0xf5,0x56,0x21,0x2c,0x91,0x92,0xc6,0xe7,0x8d,0x7e,0x5d, +0xff,0x4c,0x2b,0x2f,0xb0,0x23,0x96,0xf5,0x6a,0xe6,0x25,0x8e, +0xca,0x95,0x6b,0x9e,0xd5,0x35,0x7b,0x81,0xf5,0x35,0x6e,0x84, +0xd7,0x67,0x7a,0x0b,0xff,0x9d,0xdf,0x5f,0xd7,0x3f,0x2f,0x7c, +0x49,0x88,0x72,0xa5,0xc1,0x73,0xda,0x2f,0x8a,0x62,0xe0,0x46, +0xe4,0x7b,0xae,0xeb,0x17,0x3a,0xed,0xa1,0xd2,0x5b,0xfa,0x27, +0xc9,0xc3,0x09,0x3b,0xbf,0xac,0xff,0x83,0xf0,0xe1,0x84,0x7e, +0x6f,0xe1,0xef,0xf2,0x87,0xf7,0xf0,0x5d,0xfe,0x82,0xa2,0x7a, +0xda,0x9b,0x29,0xd7,0x88,0xb6,0x72,0x7b,0x81,0xbd,0x9e,0xea, +0x3d,0xe5,0x2f,0xd0,0xe8,0x55,0x59,0x78,0x0f,0xe3,0xe5,0xbf, +0x2b,0xee,0x59,0x87,0x66,0x4a,0x03,0xd1,0xc0,0x6e,0x2f,0x28, +0xaa,0xb7,0x41,0xcf,0x8b,0x5e,0x32,0x4a,0x95,0x67,0x3c,0x10, +0xdd,0xf5,0x46,0x83,0x2b,0x2a,0xbd,0x04,0x7b,0x35,0xff,0xcc, +0x25,0x9f,0x57,0x7b,0xe6,0x94,0x6e,0x18,0xfe,0x62,0xd5,0x9e, +0xd2,0xde,0xd6,0xa4,0x62,0x2f,0xf3,0xa2,0x7e,0x7f,0x23,0xd8, +0xcb,0x49,0xaf,0xca,0x9f,0xb9,0xf0,0x6f,0x15,0x9f,0x39,0xb1, +0x1b,0x9a,0xbd,0x54,0xb9,0xa7,0xf8,0x39,0x4d,0x12,0xb4,0x44, +0x03,0xba,0x89,0xda,0x79,0x56,0x2b,0xab,0xfc,0x99,0x67,0xb8, +0x89,0xd2,0x3e,0xe7,0xd1,0xed,0xb9,0xb3,0xbe,0x50,0x55,0x0c, +0x74,0xbd,0x45,0xbf,0x55,0x14,0xe9,0x11,0xdb,0xe3,0x00,0x51, +0xad,0xcf,0x08,0xb6,0x95,0x3f,0xf3,0x08,0x52,0x6a,0xd0,0x5b, +0x2a,0xf2,0xe8,0xf6,0xdc,0xb7,0x5f,0xac,0xdc,0x43,0xb2,0xb7, +0xec,0xf7,0xaa,0xbf,0xe9,0xf1,0x8f,0xac,0xbe,0xa0,0xce,0x3f, +0xb0,0xfb,0xbb,0x4a,0x5f,0x66,0xf9,0x05,0xb5,0xfe,0x81,0xf3, +0x17,0x7a,0x79,0x49,0x80,0x97,0xf4,0xfe,0x12,0x03,0x2f,0xbf, +0xf9,0xa3,0xd4,0xcf,0x7c,0xe7,0x15,0xb2,0xbf,0x3c,0x24,0x5e, +0x6a,0xf8,0x92,0x49,0xdd,0x5e,0xe6,0xf1,0x45,0xc3,0xf6,0xb2, +0xef,0xe6,0xf6,0x87,0x1e,0x5f,0xa0,0x69,0xf0,0x57,0x96,0x7f, +0x49,0xec,0x3f,0x74,0xf7,0x47,0x36,0x5f,0xe8,0xed,0xaf,0xb9, +0x7c,0xf1,0xdd,0xb3,0x76,0xf7,0x5e,0xfc,0xcb,0x82,0xea,0xa0, +0xf1,0x8f,0xfe,0xce,0x9f,0x3a,0x0c,0x7d,0xbd,0xb3,0x50,0xaf, +0xf9,0x87,0x4c,0xd5,0x85,0xe5,0x8b,0x58,0xb4,0x03,0x53,0x4a, +0xc8,0x17,0xff,0x9a,0xbe,0x89,0x78,0x0c,0x72,0x39,0xce,0xa7, +0x94,0x17,0x19,0x58,0x8e,0x9a,0x22,0xa7,0xf7,0x9f,0xb0,0xc2, +0x45,0x92,0x52,0xc1,0x7c,0xf2,0x12,0xec,0xd0,0x84,0x52,0xe6, +0x33,0x68,0x87,0xa6,0xd4,0x43,0xba,0xf7,0xb0,0x18,0x06,0x09, +0xb6,0x40,0x3e,0xe2,0xf9,0xfa,0x60,0xa5,0x2d,0x90,0x8f,0xd8, +0x50,0x29,0xbc,0xc3,0x62,0x70,0x4f,0x31,0x04,0x29,0x6d,0x91, +0x7c,0xa8,0xcb,0x3d,0xe7,0x26,0x48,0x13,0x3b,0xd2,0x84,0x7c, +0x28,0x4b,0x1a,0xed,0x49,0x13,0xf2,0xa1,0xc0,0x51,0xf5,0xaf, +0x8a,0x49,0x83,0x56,0x91,0x92,0x7d,0x4f,0x31,0xd8,0x11,0x4a, +0xe4,0x43,0x35,0xd0,0xf0,0x9d,0x60,0xfb,0x17,0xc5,0xa4,0xfe, +0xfa,0x2f,0x58,0xe1,0x6b,0x88,0x84,0xd1,0x4a,0xae,0x3b,0x8a, +0x29,0x27,0x99,0x37,0x5c,0x58,0x82,0x91,0xca,0xaf,0xe7,0x89, +0x6f,0x0f,0x29,0x34,0x58,0xe5,0xd7,0x18,0x89,0xa3,0x05,0x4e, +0x11,0xc5,0xb8,0x75,0xdb,0xb3,0x78,0xe1,0x0a,0x44,0x0a,0x5f, +0xdf,0x16,0x05,0x32,0xd0,0x62,0xb1,0xdf,0xe3,0x89,0x30,0x09, +0x96,0xbf,0x78,0x35,0x02,0x3b,0x7f,0xe5,0x7a,0x8e,0x6d,0x8a, +0x87,0xd9,0x3a,0x5f,0xba,0x0e,0xb1,0x7c,0x22,0x4e,0xc2,0x7e, +0x93,0x38,0xe8,0x14,0x2b,0xc4,0xc2,0x17,0xec,0x75,0x65,0xec, +0xc2,0xde,0x93,0x0a,0x8d,0xd9,0xec,0x7c,0xdf,0xbc,0xb6,0x0b, +0xc7,0xce,0x5d,0x3b,0xc3,0xc7,0xd9,0xc5,0xea,0xc6,0x98,0x4a, +0x5a,0xe8,0xc4,0xeb,0x49,0x37,0x9a,0x64,0x85,0x19,0x65,0xe9, +0x27,0xd2,0x42,0x9b,0xa4,0x5e,0x1b,0x7c,0xd7,0xaf,0x8a,0x90, +0x7c,0x12,0xb5,0xb2,0xda,0x4a,0x6e,0xe1,0x6b,0x61,0xed,0xcf, +0x6f,0xa3,0x0f,0xd4,0x65,0x74,0x66,0x7c,0xd6,0x95,0x70,0x39, +0xf9,0xce,0x9e,0xd8,0x73,0x52,0xcd,0x4d,0xcb,0xb7,0x19,0xc4, +0xef,0x2c,0x49,0x29,0xdf,0x79,0xc2,0x78,0xa7,0x34,0xda,0x69, +0x8b,0xcb,0x66,0x17,0xb7,0x04,0xa7,0x04,0xcf,0xed,0xf1,0x46, +0xd2,0xa3,0x71,0x65,0xf1,0xa5,0xf1,0x2b,0x71,0xa8,0x3b,0xbe, +0xe3,0x34,0xf2,0x74,0xb0,0x14,0xa6,0x5c,0x6e,0xe8,0xaa,0x93, +0x17,0xa6,0xae,0x5e,0xbc,0x83,0x47,0xc9,0x12,0x93,0xe9,0x63, +0x65,0x63,0x5b,0x2d,0xe1,0xad,0xd2,0x53,0x49,0xbb,0x1b,0xb8, +0xcd,0xed,0xd4,0x46,0x6b,0x9b,0x18,0x0f,0xf1,0x02,0x49,0xa6, +0x30,0x82,0x0d,0x0d,0x8d,0x8d,0x0e,0xe3,0x9f,0x30,0x97,0x12, +0xaf,0xee,0xe8,0x48,0x8e,0x3d,0x2b,0xd5,0x8b,0xd6,0x8a,0x59, +0x16,0x97,0x50,0x9c,0x58,0x9a,0x58,0x6a,0x99,0x28,0x8d,0x73, +0x8f,0x77,0x8f,0xf7,0xf4,0x8a,0xf7,0xfe,0xc8,0x2f,0x21,0xde, +0x42,0x7a,0x24,0xbe,0xf8,0xa3,0x92,0x04,0x89,0xeb,0x47,0x6e, +0x09,0x1e,0xdc,0x52,0x5b,0xa7,0xf1,0x48,0xcb,0xc6,0x1f,0x33, +0x3d,0x77,0xbd,0x13,0x78,0xd8,0x7c,0x9c,0x3b,0x1e,0x9c,0x69, +0xb5,0x40,0x86,0x7d,0x5d,0x0c,0x26,0x06,0x72,0x59,0xe6,0x14, +0x50,0x05,0x8d,0x77,0x81,0x93,0xc1,0x07,0x4b,0x1e,0x61,0x7f, +0xce,0x03,0xf7,0xb2,0x51,0x8d,0x5b,0xdb,0x63,0xbb,0x24,0x3b, +0xd3,0x32,0x76,0x64,0xc8,0xf7,0xd2,0x1b,0xe7,0x86,0x2d,0x0d, +0xb3,0x94,0xcc,0x42,0x55,0xd6,0x3f,0xe2,0x48,0xc7,0xad,0xac, +0xf3,0xc7,0x4e,0xf0,0x49,0x13,0x77,0xcf,0x4b,0xd3,0x97,0xf8, +0x85,0x85,0x47,0x44,0x8a,0x9c,0x9a,0xbb,0xb0,0x8d,0x87,0x3e, +0x06,0x6e,0x1f,0x6f,0xb5,0x9f,0x42,0x6a,0x73,0xb4,0xdd,0x1a, +0x79,0xa0,0x17,0x19,0x6f,0xda,0xb1,0xbc,0x69,0x3c,0xa5,0xd4, +0x4a,0x3c,0x86,0x16,0xf7,0xe4,0x90,0x0a,0xef,0xb0,0xf1,0xb0, +0xd0,0x03,0x26,0x9a,0xc0,0x60,0xd3,0x10,0x69,0x33,0xbe,0x55, +0x82,0xe3,0x12,0x7a,0xc1,0xfc,0x48,0xe1,0x3b,0x76,0xca,0xfe, +0x31,0x7b,0xc6,0x26,0x45,0xeb,0x4b,0xbf,0x8b,0xfb,0x2e,0xf2, +0xde,0x06,0x09,0x7a,0x28,0x1f,0xb1,0x30,0xed,0xec,0xc7,0xdf, +0x24,0xc0,0x50,0x09,0xbc,0x99,0x60,0xdc,0x35,0x42,0xee,0x30, +0x2b,0xdc,0x4f,0x83,0x3f,0x64,0x42,0xe5,0xdf,0xbb,0x9e,0x7e, +0x5c,0x7e,0xbe,0xc8,0x71,0x26,0xf6,0x5f,0xa6,0x89,0x43,0xed, +0xc4,0x33,0xc9,0xc3,0x14,0x7d,0xd9,0x29,0xa9,0xa3,0xf6,0xcc, +0x4e,0x89,0x36,0x94,0xde,0xdd,0x0a,0x7d,0x22,0x3f,0xde,0x20, +0xb9,0xa5,0xcc,0x61,0x23,0x7d,0x03,0xb6,0x05,0xc8,0xfd,0xa2, +0x72,0x1f,0xc7,0xf1,0x9d,0x71,0x91,0x79,0x2b,0xe5,0x91,0x09, +0x1b,0xa3,0x22,0xd6,0xc7,0x6e,0x97,0x1e,0xa9,0xe9,0xf8,0xf6, +0x68,0x8d,0xa4,0x01,0x1b,0x8d,0x21,0x8c,0x19,0x85,0xd3,0x17, +0x63,0x3f,0x75,0x1c,0x5d,0xef,0x29,0x6d,0xbc,0x77,0xec,0x6c, +0x71,0x8d,0xe4,0xe8,0xa1,0x9c,0xcc,0x03,0xf2,0x03,0xdb,0x23, +0x0c,0x13,0x79,0xec,0xb3,0x3d,0xd7,0xa5,0x5d,0x9e,0x5f,0x92, +0xbc,0xaf,0x54,0xdc,0x96,0x2d,0x05,0x41,0x34,0xd3,0xd6,0x75, +0xe2,0x89,0xae,0xdc,0xc4,0xdc,0xed,0xd9,0x3b,0xe2,0x9a,0xa5, +0xc1,0x31,0x01,0x71,0x81,0xb1,0x12,0x50,0xb3,0xc0,0x0f,0x98, +0x58,0x47,0xe7,0x78,0x3f,0xb9,0x31,0x53,0x78,0x3c,0x61,0x7b, +0x25,0x9f,0x80,0xef,0x53,0x0b,0xec,0x2c,0x26,0x0c,0x97,0xcd, +0xa8,0x77,0xaa,0x6d,0xce,0x2d,0x27,0x89,0x67,0x00,0x93,0x92, +0x91,0xb1,0xe3,0x90,0xfc,0xe2,0x71,0xe3,0xf1,0x73,0x82,0xed, +0x9c,0x42,0xd7,0x26,0xef,0x0d,0xe6,0x23,0x56,0x50,0x1b,0xf2, +0xf2,0xb6,0x64,0xcb,0x6f,0xc6,0x57,0x77,0xc1,0x40,0x19,0x0c, +0xd1,0x7d,0x30,0x9a,0x03,0x93,0x2f,0x58,0x97,0x06,0x97,0x6a, +0xaf,0x02,0x0f,0x17,0x69,0x85,0x4f,0xb5,0x75,0x91,0xbd,0x04, +0x53,0xf1,0x73,0xd6,0x25,0x6a,0x5d,0x50,0x50,0x44,0x5e,0xe5, +0x95,0x82,0x8e,0xea,0x72,0x31,0x28,0x3d,0x10,0xb6,0xb1,0x2e, +0x76,0x11,0x01,0xa6,0x7c,0x54,0xeb,0xe6,0xd6,0xa8,0x16,0xe3, +0x2d,0xd2,0x3d,0x4b,0xf7,0x2c,0xdb,0xad,0xeb,0x1b,0xee,0x19, +0xea,0xba,0x36,0xcb,0x58,0x5a,0x72,0xf0,0x68,0x7a,0x41,0x6a, +0x16,0x4e,0x38,0x84,0xa3,0xd2,0xf1,0x83,0x73,0x3b,0xa5,0x6b, +0x61,0x64,0x08,0x4c,0x5c,0x03,0x93,0x25,0x79,0x8d,0x27,0x52, +0x0b,0xe4,0x95,0x09,0xd9,0x6e,0x06,0xb2,0xe5,0x6b,0xbd,0x5d, +0xd6,0x86,0x24,0xef,0x5c,0xcb,0xad,0x37,0xa1,0xa2,0xb2,0xf2, +0x37,0x17,0xc8,0xaf,0x57,0xb6,0x7e,0xff,0xb5,0x6d,0xbb,0x36, +0xdf,0xd9,0xc4,0x3a,0x1e,0xb5,0x3d,0xe2,0x7e,0xd0,0xcf,0x5a, +0x5a,0x19,0x5a,0xef,0x5b,0xe8,0x2f,0x2e,0x0a,0x35,0x0a,0xa5, +0xec,0xe6,0x1f,0xcd,0x63,0xb7,0x7b,0xed,0xf0,0xda,0xee,0xa5, +0xa6,0x1d,0xe2,0xa8,0xb9,0x06,0x07,0x4b,0xb6,0xd1,0x3b,0x6e, +0x24,0xff,0xbc,0xeb,0x16,0xf1,0xdd,0x2d,0xe3,0xa3,0x90,0xc7, +0x21,0x32,0xbb,0x04,0xab,0x44,0x77,0xae,0x21,0x31,0xb6,0x35, +0xb6,0x3c,0xe3,0xb6,0x5a,0x2e,0xa8,0x54,0xdf,0x6b,0xca,0x94, +0x24,0xe9,0xef,0x30,0x34,0x97,0x2d,0x8c,0x35,0x8b,0x72,0xe4, +0xfc,0xd3,0x42,0x4b,0xd7,0x75,0xfa,0x78,0x48,0xa3,0x53,0x33, +0xe7,0x1f,0xb1,0x2e,0x0b,0x56,0x5b,0xe7,0xe8,0xe7,0x6f,0x1f, +0x74,0xd4,0x4e,0xda,0x74,0xa4,0xb4,0x2c,0xeb,0x9c,0x64,0x07, +0xfd,0x5d,0x62,0xcb,0xe7,0xa0,0x21,0x03,0x75,0xe3,0x2f,0x26, +0xef,0xe4,0x94,0x3a,0x2a,0xbb,0xeb,0x76,0xb4,0xdc,0x90,0x35, +0xc6,0xb4,0x6d,0x3b,0xcf,0x35,0x47,0x1e,0xd5,0x57,0x97,0xa1, +0xc4,0x47,0xd7,0x30,0xba,0xf7,0x3c,0xe3,0x14,0xb6,0xb9,0x21, +0x71,0x47,0x35,0x1f,0xdf,0xe2,0x1a,0xeb,0x10,0xa7,0x13,0xaf, +0x06,0x46,0x26,0x4a,0x03,0x26,0x25,0x34,0x6c,0x47,0xb8,0x5c, +0xd3,0x71,0xc5,0xc4,0x19,0xd5,0xe6,0x57,0x6f,0x95,0x56,0x3e, +0xe0,0xab,0x98,0x6a,0xaf,0x3a,0xeb,0x4a,0xe3,0xd2,0x3a,0xa9, +0xf1,0x35,0xa3,0xe6,0x15,0x25,0x12,0x13,0x54,0x61,0xcd,0xc3, +0xd7,0x3a,0xbb,0x87,0x14,0x9c,0x6a,0xca,0x2c,0x38,0x91,0x9a, +0xb1,0x35,0xea,0x90,0x48,0x56,0x6b,0x25,0x0b,0xba,0x9d,0x77, +0x7f,0x82,0xe9,0x32,0x98,0xa0,0xfb,0x08,0x55,0x96,0xcd,0xf0, +0xf6,0x99,0xc6,0x1d,0x32,0xa2,0x8a,0x3f,0xbb,0x7c,0xa4,0x59, +0x7e,0xf5,0xf8,0x72,0xa4,0x13,0x78,0x54,0x5d,0x32,0x03,0x67, +0x98,0x8a,0x2d,0x0e,0x0b,0xbb,0xd8,0xe0,0x90,0x98,0x2d,0x6b, +0xf9,0xf8,0xd2,0x8f,0x2a,0x12,0x2a,0x6e,0x6d,0xbf,0x9b,0x74, +0x25,0x25,0xb6,0x59,0xba,0x64,0xcb,0xdc,0x6d,0x0b,0x62,0x93, +0x41,0x2e,0x35,0x4f,0x8c,0xb3,0x8f,0x77,0x88,0x77,0x54,0x73, +0x8d,0x77,0xff,0xc8,0x3b,0x21,0xde,0x54,0x5a,0x1c,0x5f,0x46, +0xea,0xc6,0x5b,0x25,0xd8,0x26,0xd8,0x4b,0x16,0x98,0xda,0x20, +0x83,0x1f,0xc8,0x50,0xa5,0x7c,0xe9,0x85,0xfb,0xd7,0x60,0x1e, +0x94,0xd7,0x70,0xf5,0xab,0x73,0xf4,0xc7,0xcb,0x50,0x66,0xbb, +0x68,0xa4,0x1f,0x97,0x65,0x4c,0xc1,0x90,0x92,0xd6,0x6f,0x60, +0x86,0x0c,0x66,0xce,0xfb,0x19,0xdf,0xe1,0x9c,0xb0,0x8b,0xdd, +0x78,0x29,0xfa,0x4e,0xec,0x67,0x92,0xdd,0x07,0x0f,0x25,0x65, +0xca,0x93,0x93,0x3f,0x8a,0x4f,0xe2,0xd7,0x8f,0x58,0x3b,0x23, +0x44,0x57,0x32,0x11,0x27,0xb0,0x3e,0x61,0x95,0x37,0xbe,0xcd, +0xbb,0x53,0x59,0xcf,0x27,0x21,0xbd,0x77,0x4c,0x86,0xa6,0xc4, +0x2d,0x34,0x34,0x24,0x42,0x1c,0xed,0x3a,0x5b,0xd9,0xd6,0xac, +0xaf,0x61,0xda,0x5e,0xde,0x34,0x95,0xc2,0xf7,0xa3,0xa2,0xf4, +0xc2,0xe4,0xc1,0x2e,0x30,0x56,0xc8,0x88,0xe3,0x0d,0xc8,0x68, +0x6f,0x4d,0xa8,0x45,0xfd,0x3b,0x72,0xa8,0x82,0x51,0x6c,0x1c, +0xd8,0xba,0xc1,0x72,0x43,0x18,0x6d,0x14,0x2c,0x6d,0xc3,0x61, +0x25,0xa8,0x9d,0x80,0x96,0xe2,0x68,0x1f,0xa7,0x08,0x61,0x27, +0xa4,0x8d,0x3c,0x30,0x3c,0x39,0x7a,0xa9,0xf4,0xe7,0x98,0x1f, +0x23,0x3e,0x0d,0x97,0x60,0x48,0xb7,0x39,0x0b,0x8b,0x2e,0x7c, +0x0a,0x6f,0x25,0xc0,0x5c,0x09,0x0c,0xd5,0xff,0x18,0xfb,0xdb, +0xcf,0x0f,0x75,0xc3,0x3e,0x5c,0xa6,0x1e,0x55,0xfc,0xe9,0xf5, +0xac,0x6a,0xf9,0xe5,0x63,0x16,0xc3,0x51,0x6d,0xc9,0x14,0x9c, +0x60,0x2c,0x0e,0xf7,0x09,0x8a,0x58,0x76,0x7c,0x86,0xc6,0x9e, +0xc9,0x3b,0x37,0x2e,0x97,0x7e,0x16,0xfd,0xf3,0xfa,0x87,0xe1, +0x92,0xdb,0xdd,0x03,0xd8,0x0d,0x1e,0xfe,0x5b,0xd7,0xca,0x57, +0x6d,0x2a,0x82,0xbe,0xb1,0xfc,0xed,0xf8,0x0d,0x47,0xbc,0xe4, +0x1b,0x12,0xd6,0x47,0x85,0xaf,0x8f,0x49,0x94,0x16,0x34,0x5c, +0x07,0xd5,0xa2,0xb3,0x92,0x66,0xbc,0xa6,0x0b,0xdb,0x18,0xec, +0x87,0x66,0x0b,0xf1,0x3d,0x94,0xe0,0xb2,0xd3,0xae,0xd2,0x73, +0x5f,0x97,0xb4,0x94,0x9e,0x95,0x94,0x65,0xe7,0xe7,0xa6,0xca, +0xd3,0x92,0xc2,0xe7,0x91,0x11,0x3f,0x60,0x7b,0xbe,0xe5,0x05, +0x79,0x4e,0x71,0xca,0xfe,0x0a,0x71,0xc4,0x57,0x08,0x4e,0xec, +0xda,0xb5,0xb1,0xd1,0xa1,0x3c,0x0c,0x65,0xf2,0x12,0xf3,0x76, +0xe4,0xee,0x88,0x6d,0x93,0x06,0xc6,0x04,0xc4,0x06,0x90,0x11, +0x3f,0xc5,0x14,0x67,0x30,0x31,0x76,0x0e,0xf1,0x3e,0x72,0x7d, +0xa6,0x38,0xbe,0x3a,0xb1,0x66,0x7b,0x02,0xce,0x90,0xce,0x5a, +0x61,0x8a,0x2a,0xc4,0xdb,0x47,0x35,0x58,0x9c,0x6c,0x3f,0x52, +0xfd,0x94,0x83,0x4c,0x26,0x25,0x3d,0x63,0xc7,0x41,0xf9,0xe5, +0x5a,0x2d,0x7c,0x73,0x4c,0x90,0xb1,0xcb,0x9a,0x35,0x29,0xfb, +0x03,0xf9,0x08,0x23,0x2a,0xfc,0x48,0xfe,0xe6,0x5c,0xf9,0xdd, +0x9a,0x7b,0x30,0x1c,0x46,0x2d,0xf9,0x71,0x38,0x0f,0x8e,0x40, +0xb3,0xde,0xf5,0x76,0xcd,0x0e,0xc7,0x5d,0x1c,0xa5,0xe5,0x5e, +0x75,0xa6,0x65,0x46,0x12,0x3c,0xa2,0x9c,0xc8,0x5a,0xae,0x0f, +0x0d,0x0e,0x0c,0x2f,0x3a,0xfb,0xd9,0xd1,0x5b,0xf5,0x35,0xa2, +0x43,0xf9,0x09,0xdf,0xb2,0xd1,0x51,0xf1,0xf1,0x9b,0xf8,0x94, +0xb6,0x9d,0x17,0x52,0xae,0x98,0x24,0x49,0xa3,0x35,0xb7,0x68, +0x45,0x2f,0xf7,0xd8,0xea,0xba,0x65,0xe5,0xd6,0x14,0x33,0xe9, +0x91,0xe4,0xa2,0xe4,0xa3,0x49,0x01,0x18,0xe8,0x87,0xf3,0x9c, +0x70,0xc6,0x99,0x70,0x69,0x15,0xcc,0x3f,0x0a,0x8b,0xf2,0x61, +0xa3,0x24,0xf1,0xc0,0x9e,0x84,0x14,0x79,0xe5,0x3e,0xdf,0x45, +0x4a,0x3a,0x62,0x9d,0xf3,0xba,0xb5,0x3b,0x92,0x43,0xf8,0xad, +0x86,0xd4,0x96,0xfc,0x82,0x6d,0x59,0xf2,0xdb,0x87,0xce,0x0a, +0xea,0xc0,0xf8,0x9c,0x5a,0xc0,0xc3,0x87,0xe9,0x6c,0xf5,0xf0, +0x1c,0x1c,0xb2,0x17,0x87,0x9e,0xd9,0x23,0x8d,0x84,0x61,0xab, +0x61,0x88,0x33,0xf4,0x11,0x87,0xbe,0x1b,0xec,0x60,0x4f,0x36, +0x04,0xdb,0x9e,0xe6,0x9b,0x0f,0x87,0x5c,0x0c,0xbe,0x19,0x72, +0x5f,0xed,0x58,0x72,0x49,0x72,0xd1,0xce,0xcd,0x2d,0x52,0xcf, +0x2d,0x1e,0xd1,0xee,0x5b,0x37,0x9d,0xd8,0x54,0x19,0x55,0x5d, +0x99,0x54,0x99,0x72,0x7c,0x57,0x74,0x8b,0xd4,0x79,0xb3,0x43, +0xb4,0xdd,0xb6,0x00,0xe2,0xeb,0xc6,0x1b,0x73,0x91,0x35,0x8c, +0x31,0x88,0x37,0x4a,0x54,0x8b,0x37,0xec,0x8c,0xbb,0x90,0xd0, +0x91,0xa4,0x76,0x14,0x65,0x9a,0x5b,0x66,0xc7,0xce,0xdc,0xa1, +0x16,0x6f,0xf4,0x38,0xe6,0xd3,0xed,0x1f,0xef,0x52,0x3b,0x34, +0xff,0xe0,0xd2,0x0c,0x6b,0x49,0x2c,0x5d,0xef,0x66,0x51,0x68, +0x28,0x9f,0x61,0xb6,0x6c,0x04,0x32,0x9d,0xfa,0x30,0xb0,0xee, +0x4c,0xd2,0xfe,0x16,0x7e,0x73,0x0b,0x15,0x69,0x66,0x13,0x63, +0x2f,0x9f,0xe9,0x56,0x76,0xf3,0xf2,0x91,0xd2,0xb3,0xa2,0xab, +0xd8,0xae,0x67,0x31,0x17,0x7e,0xa1,0xc2,0xb2,0xb6,0xee,0xcb, +0x90,0xa5,0xef,0x4a,0xcd,0xc8,0xe2,0x2e,0x3d,0x78,0x0a,0x43, +0xae,0xff,0x68,0x53,0x2e,0x5d,0x34,0x7c,0x12,0xbe,0x31,0x67, +0xb4,0x24,0x24,0x20,0x74,0x95,0x97,0xcc,0x23,0x2d,0x30,0x3d, +0x98,0xbb,0x35,0x0a,0x24,0x38,0xe1,0x21,0x4a,0x44,0x8f,0x1d, +0x2b,0x24,0xb3,0x87,0x13,0x73,0x13,0x73,0xb6,0xc7,0xb5,0xf7, +0x86,0xf7,0xf8,0x18,0x08,0x92,0x1a,0xc7,0x27,0xe1,0x1a,0x2a, +0x96,0xf6,0x8c,0x5f,0x9e,0xe0,0x92,0x18,0xaf,0x2f,0xad,0x8a, +0xeb,0x88,0x2f,0x4d,0x90,0x24,0xd2,0x3b,0x70,0x46,0x12,0xae, +0x72,0x33,0x98,0xec,0xa0,0x56,0xb0,0x02,0xa8,0xa6,0x9a,0x5b, +0xdb,0x20,0x56,0x0d,0x3f,0x16,0x96,0xb1,0xeb,0x71,0x49,0x34, +0xc1,0x26,0xef,0x92,0x11,0xba,0x63,0xc4,0x5e,0xe2,0xde,0xed, +0x3b,0xa9,0xc8,0x9f,0x62,0x80,0x01,0x89,0x0c,0x06,0xa7,0xc0, +0x84,0x34,0x10,0x0f,0x03,0x3f,0x55,0x8c,0x60,0x7f,0xdc,0x05, +0x2a,0xdb,0x81,0xda,0x9a,0xd0,0x29,0x45,0x95,0x64,0xa4,0x62, +0xb1,0xcf,0x66,0x09,0x2c,0xec,0x0e,0x62,0x5b,0x6f,0xee,0x3a, +0x78,0x86,0xdf,0xd4,0x41,0x85,0x59,0x9b,0x6e,0xd6,0x92,0x0f, +0xf7,0xae,0xbc,0x76,0xf6,0x50,0x57,0x71,0x1b,0x6f,0x90,0x43, +0xb9,0x2f,0x5d,0x33,0x4f,0x47,0x86,0x03,0x2e,0x1a,0xc2,0x07, +0xa2,0x57,0x78,0x43,0x1b,0x7b,0xe6,0x4c,0x80,0xf6,0x69,0xbe, +0x29,0xdb,0xfb,0x27,0x3f,0xe8,0xbb,0x1a,0x28,0xb5,0xf2,0xa4, +0xb2,0xe4,0xb2,0xdd,0x5b,0xda,0xa5,0xce,0x51,0xae,0x5b,0x5c, +0xb7,0xad,0x6f,0xdd,0xd0,0xb6,0xa1,0xdd,0x28,0x52,0xba,0xdf, +0x70,0xbf,0xd1,0x7e,0x13,0xad,0xad,0x8b,0x3f,0x9a,0x99,0x20, +0xd1,0x67,0x3e,0xbd,0xfd,0x51,0xf2,0x0d,0x3e,0x7b,0x64,0xce, +0x84,0xbc,0x79,0x24,0x7e,0x37,0xbb,0xba,0x14,0x2d,0x97,0x4f, +0x34,0xd4,0xc4,0x81,0xf8,0x7e,0x97,0x36,0xc8,0xaa,0x3b,0x53, +0xf6,0xd7,0xf0,0x9b,0x5b,0xa9,0x8d,0x76,0x86,0xd1,0x1e,0xf2, +0x31,0x4e,0x95,0x4f,0x1e,0x14,0xd7,0x75,0x88,0x23,0x25,0xdc, +0x97,0x85,0xfe,0x17,0xbe,0x80,0xac,0x3a,0xde,0x34,0x93,0xc2, +0xcd,0xf6,0xae,0xb3,0x34,0xe5,0xba,0xab,0xce,0x01,0x9b,0xcc, +0xe7,0x0a,0xe7,0x0d,0xb6,0x07,0x28,0xcf,0x53,0xb8,0x68,0x4b, +0xfd,0x4c,0xf1,0x6f,0x70,0xab,0x0b,0x41,0x8a,0x39,0x2c,0x4e, +0x86,0xf7,0x8c,0xc9,0x70,0x8c,0x32,0x05,0x32,0x3f,0x6c,0xa3, +0x0f,0x6d,0x0a,0xd9,0x1f,0x2c,0x37,0xb6,0x35,0x1c,0x33,0xb6, +0x6e,0x45,0x53,0x45,0x6e,0x4e,0xf5,0x5e,0x3e,0x89,0x8e,0x47, +0xde,0x64,0xf6,0x88,0x95,0x87,0x4c,0xa4,0xa0,0x52,0xfc,0xf0, +0x29,0x98,0xca,0x4e,0x45,0x57,0x6f,0x24,0x00,0xdb,0x0e,0x26, +0x33,0x78,0x10,0x7f,0x64,0xbd,0xd6,0x15,0x9e,0x6e,0xce,0x28, +0x2e,0x29,0xce,0x72,0xb7,0x4a,0xe0,0x6d,0xe2,0x43,0xdd,0x44, +0x54,0x25,0xac,0x11,0xbe,0x60,0x35,0x62,0xa9,0xae,0xf8,0x8b, +0xf1,0x8d,0x9c,0x71,0x7c,0x82,0xf9,0x47,0xda,0x09,0x5a,0x6a, +0x36,0x71,0x36,0x71,0xb6,0xb1,0x09,0x9d,0x1f,0x11,0x87,0x93, +0x18,0xa0,0x13,0xed,0x15,0xe7,0x1b,0xef,0x1f,0x97,0xa8,0x2f, +0xfd,0x22,0x99,0x8a,0x47,0xd9,0x47,0xf8,0xde,0x08,0xa2,0xce, +0x0a,0xeb,0x47,0xa7,0x3b,0x76,0xed,0x6f,0xe6,0xb6,0xb4,0x51, +0xeb,0x0d,0x8d,0xb6,0x38,0xcb,0xcd,0xc2,0x0a,0x1e,0x7e,0xf2, +0x11,0x48,0x09,0x3e,0xe1,0x6b,0xb7,0x9f,0x4c,0xac,0x4f,0x94, +0xa0,0x1b,0xe3,0x1f,0xbb,0x35,0x34,0x22,0x20,0x25,0x25,0x98, +0x8b,0xd7,0xa5,0xa2,0xf3,0xf2,0xb7,0x66,0xca,0x6b,0x0f,0xe7, +0x9c,0x4d,0xe0,0x5b,0x3f,0xfa,0xf8,0x9e,0xec,0xf3,0xed,0x22, +0x78,0xf6,0x03,0x75,0x36,0xe1,0x8b,0xd3,0x8f,0xa1,0x7f,0x73, +0xe6,0x9e,0x9c,0xa4,0x06,0x31,0x86,0x0c,0x8f,0x1a,0x1b,0x39, +0x71,0xc3,0xd5,0x7b,0x0f,0xa0,0x6f,0xd3,0x15,0xc9,0x39,0x6c, +0x36,0x84,0x0d,0x8c,0xd1,0x82,0xa9,0xd8,0x67,0xde,0x94,0x59, +0x1b,0xa4,0x29,0xcb,0xbf,0x3b,0x78,0x6f,0x1f,0xf4,0xdb,0xaf, +0xb6,0x8d,0x99,0xe0,0xa2,0x3d,0x11,0xdf,0x90,0xe1,0xbb,0x4f, +0xec,0x41,0x23,0x91,0xdb,0xd1,0x4e,0xe1,0xc0,0x18,0xdd,0xbc, +0xcf,0xc5,0x2b,0xbf,0x97,0x15,0x13,0x58,0xaf,0xad,0x9e,0xdb, +0xbc,0xb6,0x25,0x37,0x26,0x9f,0xd9,0xd1,0x60,0xb0,0x43,0x1a, +0xb3,0x62,0xab,0xc9,0x56,0x63,0x49,0x8c,0x93,0x5b,0xac,0x9f, +0xdc,0x90,0x39,0x9a,0x50,0x92,0x58,0xbe,0x63,0x0d,0x3a,0xf8, +0xa0,0x97,0x07,0x6a,0xb7,0x45,0x4a,0xcb,0xc0,0xb8,0x10,0x56, +0x65,0x81,0x73,0xd9,0x8e,0xf2,0xe4,0xf2,0x64,0x89,0x11,0x2e, +0x65,0x2f,0xec,0xbf,0xbe,0xaf,0x3d,0x65,0x6b,0x8b,0xd4,0x78, +0xeb,0xa2,0x8d,0x5a,0xeb,0x25,0xe0,0xaf,0x9c,0xc2,0x6e,0x74, +0xb3,0x8f,0xf6,0x95,0x1b,0x6e,0x28,0x38,0x7d,0x34,0xa5,0x7e, +0xef,0x09,0xde,0x7c,0x1f,0xb5,0xd1,0x29,0xca,0xd2,0x41,0x36, +0xf9,0xb8,0xd5,0x83,0x8a,0xb3,0x3b,0xf7,0x96,0x70,0x3d,0x77, +0x64,0xa4,0xac,0xbe,0x95,0xab,0x96,0x2f,0x1f,0x9d,0x90,0x7e, +0x31,0xe3,0x87,0x74,0x50,0x51,0xbb,0x9a,0x70,0x3f,0xf9,0x93, +0x3d,0xdb,0xda,0xa5,0x73,0x36,0xce,0xdd,0xb6,0x2c,0x6e,0x77, +0xcb,0xce,0xd6,0x94,0x66,0xc3,0x14,0x69,0xb4,0xd1,0x16,0xfd, +0x28,0x3d,0x89,0xbb,0xd3,0x47,0xdb,0xdd,0xf9,0x38,0x03,0x2a, +0xee,0xd8,0x89,0xf8,0x62,0x79,0x28,0xbe,0x1d,0x8c,0x6f,0x07, +0x0e,0xef,0x58,0x2f,0xbd,0x7d,0xac,0xb1,0xba,0x43,0xde,0x15, +0x7f,0xd4,0x79,0x9a,0x6c,0x94,0xb5,0xd9,0x04,0x17,0xd7,0x94, +0xbd,0x76,0xdc,0x26,0x7d,0x6a,0x63,0x75,0xfd,0xd6,0x3a,0x39, +0xbc,0xf1,0xe8,0x0a,0x8c,0x87,0x01,0xc6,0x97,0xc7,0x8a,0x4e, +0xb7,0x2c,0x85,0x05,0x9d,0x8b,0x5f,0xc1,0x5b,0xe0,0x24,0x83, +0xb9,0xcb,0x40,0x05,0xdf,0x59,0x34,0xd5,0xc5,0x7b,0x26,0x97, +0xa1,0x4b,0x95,0x3d,0xbc,0x5a,0xd6,0x29,0xbf,0x59,0xbb,0x00, +0x3f,0x48,0x20,0x40,0x6c,0xde,0xec,0xb1,0x38,0xdd,0xa8,0x67, +0x49,0xf7,0x14,0x8b,0xd2,0xc3,0x06,0x24,0xe2,0xca,0x60,0xf2, +0x2d,0x90,0x5e,0xac,0xe4,0x72,0x32,0xf3,0x76,0x95,0x25,0xc6, +0xb5,0x49,0x71,0x74,0x24,0xce,0x8a,0xc0,0x77,0x22,0x92,0x97, +0x49,0x7f,0xd8,0xff,0xed,0x9e,0x6f,0xf7,0x24,0x6c,0x93,0xaa, +0x3b,0x2c,0xc0,0x31,0x38,0x59,0x86,0xda,0x9f,0x62,0x5f,0xd0, +0xf0,0x13,0x85,0xce,0xad,0x66,0x47,0xda,0x95,0xdd,0x04,0xfa, +0x67,0xd2,0xf9,0x2a,0x18,0xcc,0xaf,0x6a,0xd1,0xf7,0x5c,0xe1, +0x61,0xef,0xa9,0xb6,0xe1,0x62,0xf4,0x57,0x09,0x30,0x4d,0xa2, +0x47,0x1c,0xd7,0x78,0x0f,0xf6,0x4b,0x9b,0x2f,0x99,0x32,0xc3, +0x61,0xc6,0x34,0x19,0x52,0xb7,0x74,0x41,0x5e,0xd1,0x92,0xb4, +0xaf,0x93,0x8b,0xbe,0x40,0xad,0xd7,0x31,0x8b,0xf1,0x15,0x27, +0xd9,0x52,0xc5,0x58,0x36,0x20,0x66,0x55,0xcc,0xaa,0xd8,0xc3, +0x30,0x4d,0xaa,0x9f,0xb2,0xc5,0x64,0x8b,0xd9,0xe6,0x15,0x6a, +0xb1,0xce,0x2e,0x71,0xee,0xf2,0x04,0x43,0xaa,0xa4,0x34,0x71, +0x7b,0x29,0xef,0x8f,0xd3,0xbd,0x71,0xac,0x03,0x4e,0x68,0x5b, +0x27,0xad,0x86,0x19,0xc5,0x30,0xa5,0x00,0xe6,0x95,0x6c,0x2f, +0xda,0x51,0x90,0x24,0xb9,0x8a,0x1b,0x58,0x60,0x73,0x8b,0xaf, +0xae,0xe2,0x0a,0x1a,0xdd,0xca,0x0d,0x4e,0x5a,0x16,0xa9,0xad, +0x32,0xaf,0xf5,0x6f,0xb2,0xcd,0x0d,0x56,0x8b,0x8d,0xa1,0x52, +0x22,0x23,0xf6,0x6c,0x90,0x1b,0x05,0x58,0x20,0xcd,0x23,0xcd, +0xec,0x0c,0x5b,0x97,0x14,0x2e,0x5f,0xee,0x61,0x3a,0x56,0xa3, +0xdc,0xa4,0xb3,0xab,0xa4,0xee,0x31,0x5f,0xc1,0xe4,0x06,0xe6, +0xf9,0xe6,0x79,0xe6,0x9e,0x91,0xfa,0x54,0x79,0x9c,0xf0,0x38, +0x22,0x59,0x81,0x0c,0x6b,0x12,0x11,0xec,0xb3,0x32,0x3c,0xbf, +0xf5,0x7c,0x6a,0xfe,0xd1,0xfd,0x69,0xd1,0x91,0x07,0x45,0xc9, +0xe5,0x1b,0xd8,0xdf,0xe2,0xd7,0x90,0x14,0x98,0x9c,0x0e,0xda, +0xdc,0xf2,0x24,0x2a,0x02,0x75,0xa2,0x49,0x36,0xc6,0x92,0x38, +0x97,0x34,0x62,0x0f,0x89,0x73,0x24,0x4f,0x56,0xb2,0x97,0x0e, +0x3c,0xde,0x7b,0x7b,0x7b,0xfc,0x79,0xe9,0x9c,0xd8,0x69,0x51, +0x0b,0x89,0x5b,0xc5,0x29,0x3b,0xd9,0xcd,0x3e,0x9e,0x5b,0x57, +0xca,0xcd,0x82,0x0a,0xcf,0x9d,0xdc,0xdd,0xbe,0xaf,0x81,0x37, +0xde,0x47,0x6d,0x30,0xd9,0xa4,0x67,0x2a,0x1b,0x71,0xca,0xe2, +0x41,0x69,0x55,0xca,0xce,0x42,0x31,0x2d,0xfe,0xe8,0x1c,0x1b, +0x5e,0x14,0x91,0xbf,0x21,0x5b,0x92,0x5c,0xb9,0xfd,0xd4,0x39, +0x19,0xd8,0x1b,0x80,0x2a,0xf6,0xc9,0xe0,0xf6,0xc2,0x68,0xb3, +0x1d,0x31,0x96,0x31,0xd6,0xdb,0x1c,0xd4,0x3c,0xa2,0x7d,0x42, +0x57,0xfb,0x6d,0x3b,0xb3,0xf5,0x5c,0x4c,0x87,0x55,0xa4,0x34, +0x79,0x56,0x8a,0xe6,0x2e,0x1d,0xe7,0xf9,0x41,0xd8,0x2f,0x1e, +0x07,0x49,0x50,0x5a,0x32,0xa7,0xf1,0x54,0x41,0x03,0x4c,0x3c, +0xca,0x65,0x3c,0xca,0x84,0x41,0xe9,0x30,0x47,0x72,0x3d,0xf4, +0xf8,0x48,0x9c,0x2b,0x5b,0x15,0xef,0x1f,0x1f,0xc4,0x65,0x85, +0xac,0xdd,0x13,0x2a,0xb7,0xf0,0x36,0x9e,0x3a,0xbb,0xd8,0xa2, +0xb1,0xb2,0xb0,0xa4,0xeb,0x20,0xbf,0x27,0x74,0xef,0x9a,0x7d, +0x81,0x12,0x3c,0x01,0x45,0x6c,0x44,0x4b,0xe4,0x8d,0x8d,0x9f, +0x67,0x95,0xe6,0xe7,0x1c,0xdd,0x1d,0x89,0x43,0x22,0x46,0x6f, +0x98,0x2f,0x59,0x86,0xbe,0x6c,0xe0,0xfa,0xa6,0x27,0x57,0x76, +0x5f,0x4c,0x6f,0xe6,0x53,0xc7,0x1d,0x9c,0x73,0x78,0x99,0x64, +0x71,0xf8,0x86,0x95,0x11,0x72,0x58,0xeb,0xc2,0x06,0x6e,0xcc, +0x39,0x73,0x66,0x6f,0x5e,0xf6,0xfe,0xf4,0xf5,0x2b,0x33,0xf9, +0x05,0x51,0x61,0x6e,0x41,0x62,0x30,0x0a,0x2b,0x65,0x5d,0x1f, +0x51,0x7b,0x9b,0x52,0xae,0xdc,0x97,0xc1,0x5a,0xf7,0xef,0x67, +0xeb,0xda,0xeb,0xe1,0xdb,0xe6,0x1c,0x5c,0x31,0x45,0xf3,0xa9, +0x86,0x9f,0xe2,0x02,0x66,0xe5,0x32,0x6f,0x9d,0x55,0x86,0x47, +0x2d,0xa5,0x59,0xb5,0x59,0x75,0x19,0x95,0x12,0xec,0x6c,0x12, +0x46,0x31,0xb0,0xe0,0xda,0xf1,0x1b,0x35,0xf2,0xaa,0xcc,0xa9, +0xb8,0x28,0x9e,0xb7,0x8d,0x73,0x8e,0x75,0xe7,0x8a,0xd6,0xac, +0x49,0x0f,0x90,0x1b,0x79,0x9a,0x4e,0x9c,0x78,0xcc,0xb2,0xbd, +0xec,0x68,0xc1,0x99,0x2c,0x7e,0x77,0xc8,0x9e,0xe0,0x7d,0x01, +0x12,0x64,0xeb,0xd9,0x80,0x0d,0xf9,0x67,0x9b,0xf6,0x17,0x66, +0x67,0xa4,0x06,0x5b,0xe4,0xf0,0x06,0x91,0xa1,0xde,0x81,0xa2, +0xa3,0xed,0x51,0x84,0xb1,0xa8,0x3e,0x1d,0xa7,0xe3,0x2e,0x9c, +0x55,0x8b,0xfd,0xbb,0x3e,0xc9,0x82,0x11,0x42,0xe8,0x11,0xfe, +0x66,0xc8,0xf1,0x51,0xb8,0x48,0x96,0x80,0xfa,0xd6,0x04,0x21, +0xf5,0x71,0xc9,0xd5,0x97,0x82,0x6a,0x43,0x07,0xa8,0x81,0x8f, +0x0c,0x42,0xe6,0x83,0x1a,0xca,0x39,0x54,0x51,0x76,0xb3,0x6b, +0x56,0x5d,0x06,0x96,0x4f,0x00,0x87,0x7a,0x78,0xff,0x7e,0xa6, +0x44,0x39,0xc9,0x6f,0x2d,0x8e,0xf0,0x13,0xc5,0x0b,0x6f,0x63, +0x57,0x9e,0xf3,0xad,0xf3,0x2d,0x96,0xc0,0x1d,0x26,0x3f,0x21, +0x6f,0x7b,0xfe,0x76,0x92,0x31,0x07,0xc4,0xfa,0xc7,0xf9,0xc7, +0x4b,0xc0,0xca,0x04,0x6d,0x18,0xc7,0x78,0xfb,0x8f,0x6c,0x12, +0x25,0x86,0xcc,0xc9,0xf8,0x9a,0xf8,0xca,0x04,0x02,0x6a,0x98, +0x5d,0xe1,0xe1,0x49,0x11,0xf2,0xe5,0x5e,0x26,0x53,0x35,0x2a, +0x4c,0x3b,0xdb,0xca,0xaa,0x1e,0xf1,0x19,0x4c,0xa6,0x5f,0xa6, +0x7b,0x96,0xa3,0x44,0x39,0x48,0x91,0xc1,0xbe,0xe0,0x55,0x7f, +0x9e,0x3d,0x9f,0x7b,0x1f,0x8c,0xe8,0xde,0xca,0x7a,0x45,0x14, +0xb4,0x9c,0xdd,0x5b,0x5c,0x94,0x9a,0xbe,0x25,0x22,0x83,0x9f, +0xc9,0xd8,0x45,0x06,0xf9,0xf4,0x80,0xa4,0x10,0x16,0x54,0x2e, +0xc3,0x00,0x30,0x83,0xe1,0x2e,0x30,0x24,0xe8,0x1a,0xbf,0x6b, +0xc7,0x11,0xbd,0xe3,0x0b,0x4a,0x4c,0xd4,0x2a,0x2b,0xac,0x6f, +0xda,0xdf,0x30,0x06,0x5a,0x6d,0x45,0x20,0x55,0x86,0x6f,0xa7, +0x8b,0xff,0x87,0x5f,0x19,0x6a,0x3a,0x8c,0x5c,0xbc,0xd8,0xf5, +0x63,0x18,0x05,0x33,0x9a,0x60,0xee,0xb5,0x07,0x5c,0xec,0x05, +0x0a,0x1d,0x8d,0x61,0xea,0x36,0x7a,0xd6,0xf4,0xe5,0x64,0x2e, +0x37,0x90,0xe1,0xb2,0xf3,0xea,0xe2,0x5f,0xe5,0x51,0x87,0xf5, +0xab,0xd9,0x0b,0x65,0x35,0x77,0x9b,0xd6,0x9d,0x0d,0xab,0xe7, +0x9d,0xe1,0x6d,0x2a,0xac,0x7e,0x53,0x65,0x9d,0xec,0xab,0xd3, +0xa5,0x8f,0xb6,0x71,0xfb,0x3b,0x86,0x65,0xcd,0x39,0x30,0xe9, +0x80,0xda,0x46,0xe3,0xc7,0x1b,0x9a,0x37,0x5d,0x8a,0x50,0x8b, +0x8f,0xa1,0xa2,0xb7,0x24,0x6c,0x96,0xeb,0x9b,0xac,0x98,0x6e, +0x98,0x66,0x7e,0xd0,0x94,0xaf,0xc4,0x77,0xa9,0x7d,0xee,0xfb, +0x5c,0x3c,0x64,0x56,0xe1,0x41,0xde,0xc1,0x81,0x29,0xfb,0xbc, +0xb8,0x68,0x03,0x6a,0x53,0x61,0xf1,0x96,0x23,0x72,0xd8,0x75, +0x89,0x0d,0x83,0x21,0x2b,0x41,0xee,0xfd,0x9d,0x65,0xa8,0xb4, +0x78,0xec,0x51,0x94,0xa6,0xa1,0x9a,0x44,0xd9,0x2f,0x99,0x3d, +0xf6,0x7d,0x36,0xbc,0x9b,0x06,0xef,0xac,0xd8,0x27,0x8d,0xc0, +0x41,0x81,0xf8,0xbe,0xf7,0x24,0xc9,0xbf,0x73,0xc2,0xf2,0x92, +0x22,0x97,0x28,0x5e,0x5b,0x54,0xbc,0xaa,0xa8,0x78,0x64,0xf6, +0x62,0x5f,0xae,0x6d,0x27,0xb5,0x81,0x68,0xfe,0x3d,0x51,0xf3, +0xef,0xa6,0xc0,0xa4,0x0c,0xd0,0xe1,0xe0,0xab,0x6e,0x5f,0xd6, +0xb7,0xcd,0xbb,0xde,0xa7,0x48,0x02,0x31,0xcc,0x91,0xc4,0x23, +0x89,0xf9,0x3b,0x48,0x46,0xb3,0x3a,0x76,0x55,0xdc,0x6a,0x62, +0x77,0x23,0xe6,0x6e,0x72,0xdc,0xb9,0xb9,0x5b,0xa6,0xc5,0x4f, +0x4f,0x52,0x8b,0x37,0xa9,0x88,0x2d,0x8b,0x2b,0x4b,0x50,0x43, +0x63,0xc6,0xd9,0x39,0x21,0xd1,0xf9,0xff,0xe3,0xee,0x3d,0xc0, +0xaa,0xb8,0xb6,0x86,0x61,0x0b,0x73,0xe6,0x58,0x82,0x49,0x74, +0xf0,0x70,0x4e,0xee,0x8c,0x15,0x7b,0xaf,0x88,0xa2,0xa0,0x80, +0xf4,0x26,0xbd,0x37,0x01,0x01,0x11,0x05,0x41,0xec,0x22,0xed, +0x48,0xb7,0x23,0x88,0xd8,0xa5,0x83,0x20,0xbd,0x89,0x8d,0xa2, +0x82,0x88,0x25,0x76,0x8d,0x9a,0x66,0x62,0x4c,0xbc,0x6b,0x4e, +0xd6,0xe1,0xbe,0xff,0x1e,0xf4,0xe6,0xcd,0xbd,0x89,0x79,0x35, +0xb9,0xef,0xf7,0xfd,0xff,0xff,0xcc,0x03,0x33,0xb3,0xf7,0x9e, +0xb5,0xd7,0x5a,0x7b,0xed,0xd5,0xce,0xcc,0xde,0x9c,0xdc,0x8c, +0x8a,0x3f,0x5d,0x21,0xaf,0x90,0xa1,0x3d,0x9d,0xb6,0x61,0x63, +0xf2,0x46,0x99,0x41,0xa0,0xc5,0xf4,0x29,0x05,0x56,0xed,0x97, +0xf2,0x8b,0x9e,0x70,0x85,0xf4,0xe1,0x80,0x23,0x5e,0x47,0x9d, +0xc4,0x38,0xff,0x00,0xb3,0x62,0x73,0xee,0xf9,0x73,0x7b,0x8a, +0x72,0xf7,0xed,0x8f,0xde,0x9c,0xce,0x4d,0xa6,0x5d,0xb6,0xad, +0xea,0x51,0xc4,0x85,0xfc,0x2c,0xa6,0x31,0xb1,0x31,0xa9,0x31, +0x35,0xae,0x59,0xe2,0x14,0x63,0x15,0x67,0x13,0x2f,0x86,0x59, +0x74,0x43,0xc2,0xd5,0x94,0x86,0xd4,0xf8,0x66,0x62,0xcf,0x2c, +0x63,0x49,0xd1,0x6b,0xf3,0xe1,0xb4,0x85,0x45,0x52,0xb2,0x19, +0x27,0x37,0x69,0x8c,0xed,0x88,0x6f,0x92,0xab,0xe3,0x4c,0xda, +0xca,0x2c,0x29,0xd9,0x99,0x8b,0x37,0xae,0x8d,0x6b,0x8a,0xbf, +0xd4,0x53,0x92,0xba,0x2e,0x32,0x69,0xbd,0x4c,0xdb,0xc5,0x62, +0xc2,0xf8,0x5a,0xab,0x6b,0x9d,0xa5,0xa5,0xdf,0x72,0xe7,0xe9, +0x33,0x7e,0xd5,0x36,0xb5,0xba,0x25,0x75,0x12,0xd3,0x07,0x66, +0x2d,0x56,0xc5,0x62,0x73,0x1c,0x4a,0xbc,0xf1,0x35,0xde,0x3e, +0x6b,0x4f,0x5d,0xba,0x94,0x91,0x57,0x9d,0x7e,0x20,0x36,0x2a, +0x43,0xd0,0x59,0xdb,0x60,0x1f,0x13,0x5c,0x14,0x9c,0xbb,0xea, +0x58,0x5a,0x5b,0xca,0xcd,0x94,0x2f,0x88,0x47,0x1e,0xbb,0x24, +0xd6,0x2c,0xd6,0xc6,0xff,0x58,0x40,0x46,0xe0,0xae,0x5d,0xd0, +0x2b,0x15,0x7a,0x25,0x3d,0x11,0xa3,0xbb,0x19,0x8c,0x10,0xc5, +0xe9,0x45,0xcf,0xdd,0x3e,0x57,0x3c,0x2a,0x4a,0x0f,0x29,0x9c, +0x21,0x9d,0x5c,0xac,0x7f,0xb6,0xa2,0xa8,0xfe,0x59,0x26,0xbb, +0xff,0xea,0x9e,0xcf,0x77,0xde,0x3d,0xb5,0x35,0x77,0x6d,0x7e, +0xd0,0x5a,0x34,0x5f,0xb1,0x58,0xdf,0xac,0xc4,0x41,0xd2,0x79, +0xe9,0xf4,0xe7,0x47,0x41,0xef,0x50,0x68,0x76,0x48,0x76,0x90, +0x18,0x1b,0x63,0x18,0xc3,0x4d,0xeb,0x3c,0xd7,0xcb,0xd6,0x6e, +0x2c,0x3d,0x07,0x83,0x2a,0x1e,0x5c,0xd9,0xc9,0x6d,0xd7,0xde, +0xac,0xb3,0x65,0x99,0x20,0x06,0x03,0xf9,0xfe,0xcc,0x21,0xdd, +0x7d,0x9a,0x86,0xd2,0x11,0x6b,0x83,0x47,0x2d,0x8c,0xcc,0x2a, +0x65,0xaf,0xe4,0x77,0xfe,0x24,0x3d,0x16,0x7b,0x28,0x3e,0x83, +0x85,0x15,0x74,0x6e,0xe2,0xa9,0xa4,0x63,0xc9,0xf1,0x97,0xc8, +0x1c,0x15,0x46,0x4b,0x0c,0x9f,0x59,0x22,0x47,0xc7,0xfb,0x78, +0xef,0xf0,0x26,0x4e,0x43,0x71,0xc9,0x8e,0xc4,0x62,0x0e,0x27, +0xc5,0xd0,0xd9,0x1b,0xb7,0xec,0x0a,0x93,0xd9,0xf9,0x1a,0x8d, +0x1f,0x73,0xc6,0xbe,0x3c,0x6b,0x4f,0xda,0x81,0x3d,0xc4,0x27, +0xdb,0xe0,0x1a,0xe5,0xee,0x2b,0xd5,0xa9,0x5e,0xf1,0x93,0x9c, +0x85,0xe1,0x95,0x0d,0xc0,0x75,0x6d,0x7c,0x12,0x7e,0x9b,0x6b, +0x00,0x5f,0xc6,0xbb,0xd2,0xb6,0xc4,0x35,0x6f,0xc5,0x32,0x49, +0x59,0xd0,0x59,0x8f,0x22,0x67,0x31,0x3e,0xc7,0x2b,0x4c,0xd8, +0xc6,0x82,0x86,0x73,0xe9,0x25,0x47,0x8e,0x1e,0xf4,0xb1,0x4b, +0xe2,0x96,0xc9,0xc3,0xbc,0x57,0x09,0x2a,0xa9,0x55,0xc1,0x32, +0x49,0x55,0xc9,0x35,0x49,0x8d,0x84,0x55,0x71,0xb6,0x71,0xc4, +0x91,0xf7,0x8a,0xf3,0x8d,0x08,0x0a,0xda,0xde,0x18,0x7d,0x3e, +0xa6,0xd9,0x66,0x93,0x24,0x6d,0xee,0x2e,0x9d,0x5d,0x86,0xae, +0x5a,0xab,0x51,0x45,0x8e,0x1f,0x89,0xf1,0xb3,0xb2,0xe9,0x2d, +0x0d,0x85,0x8d,0x30,0xf0,0x38,0x7b,0x14,0x44,0x19,0xf0,0x49, +0x3a,0x2c,0x68,0x0b,0x29,0x98,0x22,0xc7,0xf1,0x44,0x4e,0xec, +0xc7,0x8c,0x5d,0xc1,0x1e,0x33,0xa2,0x60,0x50,0x4d,0x0b,0x7c, +0x0a,0xd6,0x52,0x30,0xb1,0x84,0x8f,0xc6,0x9d,0x60,0x4d,0x2c, +0x99,0x2d,0xc8,0x6c,0x1e,0xbe,0x61,0x76,0xf8,0xe5,0x75,0x0f, +0xd7,0xff,0x78,0xb4,0x30,0xe7,0x48,0x61,0x8a,0x18,0x29,0x65, +0x06,0x13,0x18,0xd1,0xf2,0xe2,0xc6,0x9e,0xeb,0x07,0x2f,0x70, +0x87,0x50,0x7c,0x74,0xc6,0x49,0x43,0xb1,0x5e,0xe4,0xfa,0xe0, +0x30,0x41,0xad,0x7d,0xca,0xf7,0x66,0x76,0x3b,0xa6,0x99,0xd9, +0x48,0x47,0xac,0x31,0x99,0x3c,0xdd,0xaf,0x10,0x98,0x3d,0xec, +0x1e,0x18,0x76,0x26,0xe1,0x52,0x62,0x69,0xaa,0x7a,0x5c,0x1b, +0xb5,0xdd,0xdd,0x4e,0xee,0x29,0x4b,0x07,0x23,0xaa,0xba,0x29, +0x31,0xad,0x86,0x8b,0x6f,0xa1,0xb6,0x2f,0xb3,0x8b,0xf3,0x96, +0xed,0x85,0x09,0x66,0x29,0x9b,0x70,0xca,0xf2,0x04,0xf7,0x24, +0xdf,0x14,0xf5,0x38,0xd3,0xc2,0x98,0xd2,0xb8,0x22,0xb9,0xfa, +0x06,0x34,0x5a,0x91,0xe0,0x9d,0x14,0x90,0xac,0x1e,0x6b,0x98, +0x13,0x57,0x1c,0x97,0x1f,0xaf,0xbe,0x05,0xa5,0x14,0xce,0xdf, +0x78,0xde,0x08,0xd4,0x64,0xc0,0x90,0x58,0x50,0xda,0xbe,0xbd, +0x79,0x4b,0x83,0x10,0xc9,0x4c,0x50,0x58,0x31,0x3e,0x39,0x36, +0xc5,0x4e,0x27,0x82,0xec,0x25,0xa7,0xc3,0x6a,0xfd,0x2b,0xbd, +0xc5,0xfe,0x91,0x8c,0xb3,0xe3,0x5a,0x3f,0x13,0x6e,0x25,0x2c, +0x37,0xdb,0x96,0x8b,0x9b,0x56,0x84,0x2f,0x0f,0xf5,0x58,0xa3, +0x7e,0xd8,0xbc,0x30,0x3b,0xef,0xd0,0xc9,0x4c,0xf5,0x4e,0x65, +0xc6,0xa5,0x9d,0x8b,0xf8,0x72,0xaa,0xa8,0xa5,0x3c,0x3b,0x5f, +0x56,0x75,0xc2,0x6e,0xde,0xac,0x50,0x57,0x97,0x75,0xa1,0x69, +0xbb,0x43,0xb9,0x8d,0xe6,0xd4,0xc6,0x9c,0x13,0xdb,0x49,0x88, +0x57,0xd9,0x01,0x9f,0x40,0x7f,0xfb,0x9b,0x0b,0xb9,0x9e,0x91, +0xd0,0x66,0xe2,0xca,0x62,0xcb,0xe2,0xce,0x58,0xc4,0x49,0x92, +0x5d,0x93,0x5c,0x93,0xdc,0x74,0x57,0x39,0xcc,0x0c,0xc2,0x91, +0x24,0x10,0x48,0xb9,0x9b,0x06,0x43,0x76,0xfd,0x60,0x95,0x24, +0xd9,0x8a,0xaa,0x5b,0x51,0x13,0xc7,0x4b,0xad,0x77,0x98,0x24, +0x2d,0x63,0xcf,0x25,0xc6,0x3d,0x88,0xaf,0x3a,0xd0,0xa5,0x9e, +0x0b,0xe3,0x1a,0xbf,0x6f,0xce,0x17,0xa7,0x2c,0x48,0xd6,0x35, +0x94,0x4e,0x8b,0x35,0xd8,0x66,0xcb,0xae,0x39,0x1c,0x51,0xb1, +0xf6,0x8e,0xbb,0xbb,0x24,0x7b,0x6e,0xce,0xb2,0x92,0x95,0xe1, +0x16,0xfe,0x7e,0xb6,0x81,0x79,0xb6,0x92,0x96,0xa2,0xb2,0xca, +0xa3,0x5d,0xe2,0xbd,0xa2,0x9f,0x12,0x5b,0x80,0x02,0x03,0x29, +0x2c,0x34,0x82,0x7e,0xe3,0x92,0x58,0xb9,0xf2,0x20,0xb3,0xe7, +0x62,0xca,0x8d,0xaf,0xa5,0x1d,0xb1,0xb7,0xa3,0xef,0xb2,0xcd, +0xdb,0x0a,0x34,0x85,0xbd,0x83,0x46,0xfb,0xcc,0x36,0x8a,0x13, +0x26,0x7b,0x09,0x7f,0x90,0xb9,0xd4,0x94,0x98,0x52,0xc3,0xc9, +0x5b,0xdc,0x62,0x1d,0xe3,0x17,0xcb,0xd5,0x61,0xb5,0xb9,0xf2, +0x14,0xbd,0x2b,0x2c,0x3c,0x25,0x42,0x36,0xcf,0xd5,0x74,0xf8, +0xa8,0x2a,0xf3,0x9b,0x5d,0xb5,0x65,0xd0,0x97,0x6b,0xa4,0xab, +0xbc,0xea,0x2c,0xeb,0x74,0x0b,0xc9,0xbc,0x7d,0x68,0x7c,0xd5, +0xa2,0x8c,0xcc,0xdb,0x41,0xcc,0xe2,0x88,0xd5,0xee,0x1e,0x61, +0xf9,0xed,0x57,0x32,0x8a,0xaa,0x32,0x0f,0x6d,0xdf,0x7c,0x58, +0x98,0xb7,0xe3,0x14,0xe1,0x8c,0x56,0x26,0x8a,0x0e,0x4c,0xdf, +0xb9,0xcd,0x50,0xf2,0x6c,0x3b,0xf4,0x59,0x7f,0x67,0x9d,0x18, +0x2b,0xba,0xe7,0x32,0x1b,0x6b,0xaa,0xa2,0x4b,0x65,0xf0,0xd9, +0xad,0x47,0x30,0x11,0x24,0xa6,0x77,0xc6,0x2e,0xb2,0xb0,0x9b, +0x11,0xc0,0xc5,0x24,0xec,0xb9,0xbd,0x17,0xd4,0x76,0x11,0xe3, +0x61,0x96,0xbc,0x0d,0x07,0x6c,0xc4,0x79,0x1b,0xb0,0xaf,0x7a, +0x73,0x34,0xf5,0xa2,0xec,0x42,0x7d,0x8b,0xac,0xa3,0xd8,0x6e, +0x3c,0xaa,0xd8,0x5a,0x4e,0xf4,0x70,0x4b,0xdb,0xe7,0x25,0x30, +0x58,0xd7,0x9b,0x81,0x25,0x97,0x1f,0xc3,0xc7,0x50,0x24,0x05, +0x1f,0x7b,0xe8,0x37,0xc9,0xd4,0xce,0x74,0x58,0x30,0x1b,0x13, +0x11,0xbb,0x26,0x3e,0x82,0x30,0x39,0xe9,0x6a,0x52,0xfb,0x2e, +0xf8,0xd4,0x34,0x41,0xb2,0x0d,0x35,0x63,0xd1,0x32,0x1e,0x2d, +0x2f,0x25,0x4a,0x6e,0x27,0x37,0xa4,0x96,0xb3,0x30,0xff,0x78, +0xfd,0x8b,0x0b,0xb2,0x8b,0xa7,0x34,0xd1,0x18,0xb7,0x58,0x8e, +0xc4,0xf9,0xa6,0x02,0xcc,0x2b,0xfc,0x6a,0xc6,0xc1,0x25,0xd0, +0xd9,0x9d,0x8b,0x49,0x06,0x77,0xb8,0x40,0x5d,0xa2,0xb1,0x3a, +0x9a,0x32,0xa5,0x61,0x6d,0xf2,0x04,0x1c,0xa9,0x8d,0xfd,0x51, +0x84,0x93,0xd4,0xab,0x7c,0x8e,0x15,0x1d,0x3c,0x7c,0xf4,0xb0, +0x7a,0xd3,0xc5,0xba,0x23,0x15,0xb2,0xce,0x7c,0x3d,0xa4,0x39, +0xf9,0xc4,0xf0,0x25,0xcb,0x02,0xc5,0x30,0x56,0xee,0xde,0xa2, +0x27,0x33,0xf7,0xb4,0xd5,0x9c,0xd4,0x6c,0x79,0x0f,0x86,0x5d, +0xf9,0x3b,0xcc,0x4f,0xe0,0x60,0x92,0xf5,0xd3,0x19,0xac,0x9e, +0xd2,0x9d,0x71,0x08,0x2c,0xbc,0x50,0xb3,0xff,0x78,0x6e,0xc1, +0x51,0x77,0xfc,0x34,0x81,0x93,0x47,0x6d,0x93,0x6f,0x13,0xa6, +0x46,0x10,0xd0,0xcc,0x8a,0x95,0x91,0xeb,0xc2,0x65,0x1b,0x62, +0x53,0x8e,0x73,0x95,0xe7,0xe0,0x75,0x97,0xf4,0xae,0x67,0xb1, +0xbd,0x85,0xe5,0x02,0xfc,0xc4,0x98,0x85,0x9b,0x7f,0xe8,0xd8, +0x4c,0xa6,0x61,0xce,0xfd,0xf3,0x4f,0xf2,0x65,0x47,0x77,0x46, +0x7a,0x70,0x46,0x96,0xf8,0x54,0x57,0x6a,0x9a,0xb3,0xea,0x4c, +0xde,0x89,0xcc,0xd3,0x25,0xc2,0x58,0x5f,0xe5,0x6d,0x18,0x1b, +0x8f,0x15,0xee,0x3e,0x5c,0xb4,0x40,0xdb,0x35,0xea,0x22,0x8d, +0x4d,0xd1,0x09,0xa6,0xb0,0x21,0x65,0x12,0x4e,0x9a,0x89,0xea, +0x23,0x50,0x43,0xbd,0xd6,0x87,0x82,0x81,0x0f,0x2e,0x56,0x74, +0xca,0x3a,0x13,0x4e,0x58,0x60,0x2f,0x29,0x7e,0x64,0x6b,0x34, +0xcb,0xdd,0x7d,0xe7,0x3e,0x4f,0x76,0x8b,0x29,0xb5,0xb1,0xa2, +0x62,0x3b,0x09,0x1a,0x3e,0xb9,0xf9,0x18,0xe6,0x01,0x67,0x71, +0x7f,0x41,0x82,0xc0,0xb5,0x47,0x44,0xe9,0x98,0x3b,0x39,0x8c, +0xb7,0xe5,0xe0,0xfc,0x1f,0xe2,0xa8,0x4d,0xc3,0xdf,0xda,0xaa, +0xdb,0x2a,0x64,0x67,0xb3,0x75,0x71,0x1c,0x2e,0x5a,0x36,0x02, +0x55,0x02,0xb9,0xcc,0xa5,0x14,0xb0,0x05,0xc2,0x0e,0x5d,0xde, +0x52,0xb0,0x74,0xf8,0x66,0x16,0xc1,0xf6,0x5a,0x00,0x43,0xac, +0x71,0xfa,0x93,0x83,0xad,0xe2,0xaf,0x4e,0x1d,0x29,0xcb,0x96, +0x65,0xef,0xf4,0xc3,0xc1,0x1c,0x1a,0x26,0x1e,0x37,0xb8,0x21, +0xbb,0x54,0xdc,0x09,0x85,0xd5,0x9c,0xf9,0x21,0x0a,0xd7,0x7b, +0x86,0xe9,0xad,0x96,0x05,0x47,0xd5,0xc2,0x6c,0x39,0x07,0xa3, +0xe4,0xeb,0x1a,0x1c,0x64,0x7e,0x61,0x9e,0xfe,0xeb,0x49,0xf0, +0x94,0xde,0x5e,0x02,0x8e,0x79,0x30,0x53,0xdd,0x64,0xb7,0x2f, +0x9a,0xcf,0x51,0xce,0x74,0xc2,0xad,0xea,0xc2,0xf2,0x65,0x7c, +0x2b,0x13,0x23,0x4a,0x6d,0x4b,0xb9,0x92,0xd4,0x26,0x46,0x27, +0x53,0xf8,0x9b,0x28,0xce,0x29,0xd6,0x21,0xc6,0x41,0x3c,0xda, +0x4d,0x0f,0x35,0xd0,0x5c,0x8a,0x1f,0xe7,0x2d,0x39,0x9b,0xc8, +0xd6,0x27,0x1e,0xab,0x39,0x04,0x23,0xf7,0x3f,0xdb,0x0f,0xf4, +0x5e,0x18,0x24,0xde,0x29,0x7a,0xd8,0x30,0x01,0x67,0x25,0x72, +0x6b,0x77,0x84,0xcb,0x23,0xd8,0x53,0x6b,0x57,0x65,0x86,0xc8, +0x6c,0x57,0xd8,0xcc,0x99,0x59,0x60,0x7b,0xf1,0x4e,0xe5,0x6b, +0x30,0x05,0xcb,0x05,0x30,0x18,0x07,0x72,0xc3,0x94,0x1f,0x31, +0x1b,0xb5,0xb6,0xda,0xae,0x93,0x8b,0xd7,0xca,0xb7,0x96,0x3d, +0x90,0x26,0xc2,0x18,0x32,0x87,0xda,0x2a,0xb7,0x0c,0xdb,0x34, +0x72,0xf3,0x1c,0x31,0x2c,0xc5,0xf9,0xc4,0xad,0x3c,0xd2,0x58, +0xb3,0xf7,0x78,0xf6,0xe1,0xa3,0xab,0xbc,0xd3,0x39,0xab,0x2d, +0x11,0x81,0x82,0x5b,0xc9,0x0f,0x02,0x43,0xc6,0x61,0xb9,0xbd, +0xde,0x46,0x12,0xc1,0x37,0xa7,0x46,0x16,0xfa,0xcb,0xd6,0x86, +0x6f,0xdc,0xbc,0x59,0xd8,0xcc,0xea,0xe0,0x91,0x9c,0xa2,0x1a, +0x75,0x50,0xbd,0xd3,0x09,0x83,0x7f,0x5c,0x76,0xc1,0xc0,0xd9, +0x25,0x62,0x85,0x17,0x17,0x9b,0x04,0x8b,0xc1,0x92,0xaa,0xa1, +0x31,0x3b,0x9a,0xb2,0xa2,0xc1,0x2a,0x15,0x77,0x63,0x4e,0xa9, +0x67,0x41,0xe1,0x89,0x13,0x47,0x0f,0xa8,0xe7,0x57,0x34,0x1c, +0xaa,0x93,0x35,0xe4,0xfa,0xcf,0x9f,0x1f,0xe0,0x6c,0xb0,0x91, +0xdb,0x9d,0x95,0x9a,0x7d,0x44,0x5a,0xe7,0x99,0xef,0x68,0xed, +0xe6,0x69,0x61,0x97,0xeb,0x5f,0xb9,0x91,0x35,0xd3,0x5c,0xa6, +0xa3,0x33,0xb1,0xc2,0x5f,0x92,0x57,0x76,0xf0,0x44,0x7a,0x96, +0xb8,0xaa,0xf8,0xc8,0xfe,0x2c,0x59,0x51,0xfc,0x02,0xed,0xcd, +0x5c,0x93,0xa8,0x73,0x5f,0xc1,0xf7,0xa5,0xb2,0xa2,0xdd,0xf6, +0x38,0xf0,0x00,0x77,0x76,0x37,0x05,0x63,0x22,0x02,0x3a,0xac, +0x64,0xe8,0x0d,0x73,0x84,0x7d,0xbf,0x72,0x4e,0xee,0x8d,0x0c, +0x0a,0x8d,0x0a,0xdf,0x10,0xc1,0x7a,0x25,0x85,0x64,0x16,0x0a, +0x71,0xf4,0x1d,0x3e,0x9b,0xb1,0x75,0xf7,0x9d,0xed,0xc2,0x41, +0xb2,0x15,0xce,0x98,0x6e,0xf1,0x05,0x4a,0xe8,0x40,0x93,0xe5, +0x4b,0x82,0x6d,0x92,0xb7,0x49,0x4e,0xb9,0x1d,0x2a,0xcb,0xae, +0x3a,0x58,0xaa,0x8e,0x3b,0xcf,0x01,0x71,0x3e,0xfb,0xd6,0x95, +0x9f,0x2d,0x97,0x55,0x1d,0xb6,0xc2,0x41,0xa8,0x61,0x3f,0x6b, +0xcc,0x1a,0x2e,0xd3,0x9c,0x82,0x8f,0x8f,0xb7,0x43,0x5f,0x30, +0x94,0xc2,0x74,0xd7,0x07,0x9a,0x82,0x5a,0xd9,0xa4,0x58,0xf6, +0x3e,0x6f,0x65,0xe1,0x74,0x87,0xff,0xcb,0x79,0x3c,0x3e,0x44, +0xb1,0x93,0x89,0x2c,0x88,0x28,0x5c,0x5b,0xe0,0xbb,0x4e,0x72, +0xc8,0xf7,0xa0,0x5f,0xe6,0x72,0x71,0x70,0x28,0x13,0x59,0x18, +0x5e,0xbc,0xb6,0xc0,0x67,0x2d,0x29,0xca,0x5a,0x9e,0xb1,0x5c, +0xdc,0x81,0x8e,0xcc,0xdb,0xb4,0x5e,0xd9,0xd6,0x33,0x5b,0x2a, +0xde,0xa6,0xf5,0x2e,0xf4,0xa4,0xf5,0x9c,0x63,0xb6,0x56,0x6e, +0xab,0xdc,0x56,0x6d,0xbd,0x59,0xb2,0xcb,0x75,0x97,0xeb,0x6e, +0x37,0xb3,0x58,0x53,0xb9,0x65,0xa2,0xdc,0x5c,0xd2,0x16,0xd7, +0x96,0xd8,0x96,0xb2,0xdb,0x65,0x8f,0xfb,0x6e,0x0f,0xed,0xa8, +0x79,0x71,0x9a,0xc9,0x72,0x0b,0xc9,0x93,0xd8,0xc7,0x49,0x77, +0x77,0x1d,0xd2,0x3a,0xa4,0x7f,0xd0,0x3e,0x36,0x5e,0x52,0xe7, +0xb5,0x2c,0xcf,0x54,0x36,0xc7,0x6a,0xe9,0x28,0x14,0xb7,0x9b, +0xc2,0x80,0x9a,0xc6,0x94,0x7d,0x17,0xb9,0xa8,0x8b,0x3d,0xd9, +0x3d,0x17,0xd9,0xb4,0xe5,0x67,0x6e,0x5c,0x3e,0x5e,0xd1,0xdc, +0xd8,0x10,0xe2,0x5c,0xcf,0x35,0x1d,0x0e,0x6d,0x0f,0xfd,0x3c, +0x54,0x48,0x36,0x16,0xa5,0xe6,0xef,0x14,0x28,0xd0,0xff,0x0b, +0x29,0xbf,0x67,0x7c,0x03,0xb3,0xb6,0x62,0x4d,0x79,0x48,0x05, +0x19,0xa7,0x63,0x6e,0x47,0x5c,0x0f,0xb9,0x88,0x03,0x56,0x31, +0x6b,0xcb,0xd7,0x54,0xaf,0x2a,0xf7,0x7a,0xf3,0xe6,0x69,0x96, +0xab,0xd0,0xcb,0x2e,0xc5,0x86,0xb7,0x2d,0x97,0x47,0x48,0x8e, +0xbb,0x1d,0x16,0x5a,0xa6,0xe0,0x78,0x26,0x24,0x76,0x65,0xfc, +0xaa,0xf8,0x38,0xe0,0x24,0x49,0xd1,0x89,0xd1,0x49,0xd1,0x25, +0x59,0x92,0xf0,0x8a,0xd5,0x55,0x3d,0x00,0xd3,0x57,0xef,0x5f, +0xbd,0x6f,0xb5,0x97,0x5c,0x92,0x82,0x26,0x3e,0x72,0xe3,0x04, +0xcf,0x44,0x75,0xb9,0x71,0x79,0x7c,0x8b,0xbc,0x38,0x41,0x3d, +0x19,0x67,0xa5,0x0a,0x89,0xc3,0x29,0x6f,0x13,0x87,0xd5,0x9f, +0x47,0x43,0x9c,0x7a,0x2c,0x68,0x1e,0x27,0x21,0xd4,0x89,0x24, +0x75,0xe5,0x18,0x38,0xf0,0x97,0x53,0x88,0x3c,0x83,0x31,0xef, +0x23,0x87,0xe3,0x94,0x4b,0x3e,0x24,0xd3,0xc8,0x7f,0xaa,0xb8, +0xc1,0x08,0x3c,0xc8,0x76,0x29,0xca,0x92,0xbc,0xe1,0x8a,0x58, +0x8e,0x8b,0x98,0x37,0x94,0xff,0x37,0xdf,0x2e,0x07,0x32,0xff, +0x2b,0x69,0xc7,0x77,0x64,0x39,0xc5,0x1f,0x9a,0x8d,0x04,0x0f, +0x85,0xec,0x7d,0xf8,0xd3,0xf3,0x8e,0xec,0x16,0x26,0xa2,0x38, +0xbc,0x24,0xb4,0x98,0xcc,0x93,0xc3,0xde,0x59,0x3e,0x07,0xbd, +0xc4,0x01,0xeb,0x99,0x75,0xa7,0xc3,0x4a,0xc3,0x8a,0xc9,0x3c, +0xc9,0xf6,0xc9,0xf6,0xcc,0xf4,0x12,0xe3,0xdf,0xa0,0x0f,0x83, +0x2c,0x6e,0xb2,0x84,0x4d,0xc8,0xc4,0xd0,0xef,0x4e,0x6c,0x6a, +0x8e,0x0c,0xcc,0x36,0xfb,0xf7,0xc4,0xa6,0x25,0xcc,0x38,0x8f, +0x33,0x80,0xa5,0xb1,0xaf,0xb2,0xe0,0x5d,0xd9,0xcd,0xed,0x8a, +0xd0,0xdf,0x08,0x2d,0x41,0xfa,0x0d,0xf3,0x3d,0xd7,0x4a,0x32, +0x03,0x33,0x03,0xd3,0x03,0xfd,0xe4,0x92,0x04,0xb7,0x1d,0x4e, +0x4e,0x52,0xc7,0x78,0xfb,0x78,0xa7,0x38,0xf1,0xd5,0x84,0xf6, +0x84,0x36,0xd6,0x04,0x3d,0xfe,0x2d,0xed,0xa9,0xbe,0x03,0x07, +0xff,0x61,0xda,0x73,0x68,0x02,0x70,0xbf,0xa4,0x3d,0x3d,0xde, +0x9d,0xf6,0x4c,0xe8,0x90,0xdf,0x92,0x7f,0xfe,0x55,0x92,0xa4, +0x85,0x9e,0x14,0x47,0xc9,0x73,0x77,0xe4,0xe5,0x48,0x7b,0x1c, +0xe9,0xa1,0xcc,0x7f,0x34,0xf7,0xf9,0x36,0x9f,0x2a,0x86,0x3e, +0x30,0xfc,0x37,0xaa,0x0b,0x87,0x5c,0x67,0x0e,0xf9,0x11,0x95, +0xe5,0x53,0x9c,0x2d,0x79,0xa3,0xc4,0xc4,0x3d,0x2b,0x18,0x68, +0xfd,0x66,0x9c,0x71,0x64,0xca,0x5f,0x4e,0xa0,0xbe,0x2a,0xfa, +0xad,0x4e,0x1f,0x84,0xb6,0xbf,0x49,0xaa,0x7e,0x47,0x26,0xd8, +0x1f,0x66,0x53,0x09,0xd3,0xdf,0xe4,0x5c,0x85,0x08,0x4e,0xd1, +0xca,0x9c,0xf2,0x39,0xee,0x7d,0xd4,0xbb,0xf0,0xa8,0x64,0x75, +0xc9,0xaa,0xe2,0x95,0xc5,0x62,0x14,0x2b,0xdd,0xfe,0xaf,0xe4, +0x5a,0x61,0x30,0xd4,0x32,0xab,0x4b,0x82,0x4b,0x83,0x8a,0x96, +0xaf,0x91,0x9c,0xf2,0x3e,0xe1,0x75,0xc4,0x4b,0xe0,0x68,0x94, +0xc2,0xf5,0xbd,0x2c,0x9c,0x73,0xf7,0x94,0x3f,0x91,0xa9,0x9d, +0xf0,0x97,0x33,0xb5,0xcf,0x79,0xbb,0xf7,0x9c,0xd9,0xea,0x8a, +0x23,0xcc,0x51,0xcf,0x43,0x1e,0x87,0x3c,0x8a,0x89,0xee,0x2e, +0x5b,0x5b,0xb6,0xba,0x54,0xbc,0x15,0x43,0x98,0x37,0x59,0xdd, +0x0f,0x4b,0xea,0xfe,0x6b,0x66,0x78,0x25,0xf4,0x67,0xc2,0x4b, +0xc3,0x2a,0x56,0x97,0x7a,0xad,0x95,0x1c,0xf5,0xc8,0x76,0x3f, +0xe8,0xfe,0x2e,0x53,0x32,0x05,0x3d,0x99,0xdf,0x24,0xcf,0x26, +0xd0,0x69,0x1b,0xd3,0x36,0xa4,0x6e,0xfc,0xb5,0x4d,0xd9,0xb7, +0x76,0x6f,0xd8,0x9e,0x30,0xb1,0x1b,0x1a,0x89,0x7e,0x93,0x56, +0x3b,0xf2,0x47,0x69,0xb5,0x9c,0xb3,0x92,0xb7,0x79,0x3a,0x6c, +0xe3,0x6f,0xfe,0xf5,0xfc,0x1a,0x3f,0x98,0xdf,0xfb,0x5b,0x94, +0x25,0x74,0xdc,0xae,0xdd,0xf2,0xdd,0xb2,0x5f,0xbf,0x39,0x1d, +0x9e,0x1a,0xb9,0x6b,0x23,0xb7,0x09,0x35,0x7f,0x8b,0xf1,0xa1, +0xf7,0xc3,0x38,0x82,0xff,0x9a,0xf9,0xb7,0x37,0xae,0x85,0xf7, +0xb0,0x59,0xac,0xdc,0xf2,0x1f,0x20,0x24,0xee,0x3d,0x45,0x59, +0xbf,0xdb,0xe9,0x7f,0x33,0xa3,0xc8,0x4f,0x55,0x2c,0xfc,0x90, +0x37,0xce,0x3d,0xbb,0xb3,0xfe,0xbf,0x9c,0xe0,0xdc,0xcf,0x37, +0x31,0xa1,0x25,0xab,0x4f,0x07,0x97,0xf8,0x86,0x49,0x4e,0x78, +0x1f,0x15,0xf4,0xca,0x8a,0x70,0x26,0xf4,0x74,0x48,0x59,0x70, +0x89,0x4f,0x28,0x29,0x3a,0xee,0x91,0xed,0x29,0x7e,0xa9,0xd4, +0xfc,0xc0,0x44,0xe8,0xff,0x36,0xe2,0x4b,0xf8,0x24,0xa6,0xb1, +0xa0,0xb0,0xa6,0xce,0xb7,0xd0,0xd6,0xd6,0xcf,0xd7,0xde,0xb1, +0xc0,0xb7,0x81,0x2b,0x56,0x09,0x5c,0x7f,0xf0,0xc8,0x9b,0x61, +0xca,0x79,0x3b,0x4c,0xab,0x85,0x61,0xba,0xa3,0x0c,0xfa,0xd0, +0x44,0xee,0xff,0xef,0x3f,0xe9,0x88,0x56,0x44,0x33,0x6f,0x14, +0x2d,0x51,0x80,0x47,0x3d,0xb3,0x3d,0xb2,0xdc,0xc5,0x33,0xf0, +0x34,0xf3,0x9b,0x2c,0xb2,0x1e,0xbd,0x33,0x61,0xd7,0x8e,0x9d, +0x09,0xf2,0xfd,0x92,0x9c,0x8c,0xf0,0xb2,0xd0,0xf2,0x35,0xa5, +0xea,0xde,0xa4,0xcb,0xf4,0x55,0xfb,0x56,0xa9,0x3b,0xc7,0x99, +0xed,0x30,0x17,0xe2,0x89,0xd2,0xb8,0xd3,0xf1,0xc5,0x44,0x99, +0xe8,0x7d,0x58,0x72,0xf9,0x54,0x83,0xe4,0x6d,0x02,0x1b,0x2f, +0xf2,0x77,0xde,0x37,0xef,0x3d,0xa6,0x3b,0xf9,0x5d,0x19,0x69, +0xbe,0x1f,0x6f,0xf5,0x07,0x34,0x64,0x4b,0xe4,0x49,0xc2,0x47, +0x3d,0xbf,0x96,0x9d,0x88,0x94,0xc8,0xdd,0x9b,0x38,0x8f,0x78, +0xe7,0x04,0xa7,0xa4,0xff,0x04,0x25,0x9b,0xf9,0xa7,0xcc,0xbf, +0x49,0xa0,0x20,0x97,0x2c,0x56,0xc7,0xff,0x07,0x08,0x84,0x49, +0x7f,0x6a,0xbb,0x3e,0x59,0xf7,0x75,0xe6,0x83,0x57,0x6a,0x85, +0x47,0x8a,0xcf,0x7e,0xb5,0x1d,0xc4,0xd5,0xc5,0xef,0xb9,0x2e, +0x58,0xf7,0xaf,0x5e,0xf5,0x4d,0xeb,0xa6,0xff,0xfa,0xba,0x7c, +0xbf,0x06,0x78,0xa6,0x67,0x4f,0x18,0x2d,0x61,0xaf,0x16,0xe2, +0x01,0xc1,0x18,0xe6,0x41,0x50,0xe9,0xe2,0x13,0x6c,0xf0,0x1e, +0xca,0xf1,0x60,0x58,0x66,0x8d,0xb4,0x36,0xef,0xd8,0x4d,0x36, +0x17,0x44,0x22,0x18,0x6c,0xd4,0x85,0x7d,0x87,0x19,0xea,0xe0, +0x60,0xd6,0xd9,0xd0,0xe0,0xb2,0x32,0xb0,0x8b,0xbf,0x43,0x7f, +0x9d,0x57,0xd6,0xde,0x52,0xec,0x31,0x91,0x75,0xa5,0xe7,0xc4, +0x5a,0x3a,0xcc,0x94,0xce,0x2b,0xf1,0xbc,0xba,0x9a,0x3d,0xb5, +0x85,0xaa,0x5e,0x77,0x20,0xd4,0x56,0x6a,0x11,0x1a,0x64,0xe3, +0xbe,0x32,0xbb,0x74,0x35,0x6b,0xef,0x46,0x99,0xe7,0xd7,0xac, +0x6a,0x97,0x7d,0x5d,0x77,0xe1,0x7b,0xee,0x03,0x97,0x36,0xd4, +0x39,0x3f,0xe5,0xf5,0x06,0x6e,0xe3,0x92,0x0f,0xda,0xaa,0xa8, +0xb1,0x2b,0xb5,0xb6,0xec,0xd4,0x6d,0xe1,0x0b,0xd6,0xd1,0x60, +0xce,0xbc,0x59,0xa3,0xf6,0xbd,0x56,0xb7,0xdd,0x77,0x75,0x0c, +0x0c,0x20,0xfd,0x2d,0xfe,0xa0,0xfe,0xce,0x3e,0x4d,0x69,0x6a, +0xca,0xfb,0x41,0xc8,0x72,0xdd,0x50,0xb4,0xfd,0xc9,0xdd,0x52, +0x1a,0xba,0xdb,0x98,0xf7,0x5e,0xc8,0xf5,0xce,0x9f,0xdf,0xf0, +0x46,0xaf,0x5b,0xc2,0xbc,0xd7,0x9a,0x80,0xbc,0x2a,0x44,0x31, +0x11,0x2e,0xab,0x83,0x3d,0xa3,0xc4,0xfc,0x4c,0xba,0x64,0xfb, +0x91,0x90,0x4c,0xe7,0xe6,0x5c,0xc9,0xca,0x4e,0x97,0x12,0xa3, +0x5d,0x62,0x18,0x64,0x8a,0x83,0xe8,0x11,0xeb,0xad,0x26,0xe3, +0x42,0x29,0x2e,0x3a,0x37,0xe5,0xa7,0xf5,0x2c,0xaa,0x36,0x83, +0x2a,0x7d,0x75,0x57,0x55,0xe9,0xc9,0x1b,0x62,0x2c,0x85,0xe5, +0xcc,0x83,0x9c,0x86,0xc6,0xfd,0xac,0x72,0x2a,0x6d,0xb3,0x3f, +0xb0,0xf1,0xa1,0x10,0x43,0xb9,0xaa,0x75,0x60,0x73,0x0a,0x5d, +0x7c,0xbc,0xfc,0xea,0x3d,0x69,0x96,0x3c,0x2b,0x7e,0x3f,0x0b, +0x23,0xae,0xe0,0x2c,0xd1,0xc6,0xf2,0x88,0xea,0x6b,0xd2,0x2f, +0x6b,0x2a,0x6e,0x35,0x95,0xfb,0xd9,0x65,0xb3,0xcd,0x25,0xd4, +0xb5,0x95,0xc6,0x35,0x53,0x64,0xc8,0xcc,0x9f,0x81,0x03,0x17, +0x67,0xb8,0x1c,0x70,0xe6,0xe6,0x2f,0xfd,0x56,0x94,0x14,0x99, +0xb8,0x26,0x54,0x6a,0x16,0x66,0x61,0x15,0xc8,0x4e,0xfd,0x77, +0xb1,0x4e,0x10,0x76,0xd2,0xf9,0x73,0x2b,0x19,0xfe,0x1a,0xcc, +0x4b,0x93,0xf7,0x9c,0xa3,0x49,0x8a,0x8d,0x8c,0xb0,0x7c,0x34, +0xf7,0x66,0xf9,0x68,0x61,0x51,0x69,0xf6,0xcd,0xa2,0xd2,0x6c, +0x38,0xda,0x33,0x6b,0xb0,0x85,0xc2,0xa8,0x27,0x10,0x45,0xaf, +0x81,0x16,0x61,0xe4,0x8e,0xbe,0xbb,0xbd,0x0f,0x6e,0x60,0x50, +0x44,0x4f,0x8e,0xd4,0x30,0x11,0x7e,0x2f,0xf8,0xe8,0x8e,0x36, +0xa8,0x01,0xd3,0xfe,0xf9,0xb3,0x63,0xac,0xce,0x09,0x6a,0x49, +0xa4,0xa3,0xcd,0x3c,0x99,0xb6,0x43,0x55,0x17,0xb7,0x9f,0x7e, +0xd2,0x5e,0x0f,0xe2,0x54,0x16,0x74,0x04,0xf2,0x81,0x0f,0x67, +0xaa,0x48,0xf0,0x39,0x97,0x36,0xd2,0x2b,0xf6,0xaf,0x6e,0xa0, +0x92,0xd1,0x48,0xd7,0x59,0x04,0x1d,0xf8,0x09,0x53,0xab,0x74, +0x75,0xa0,0xe1,0x31,0xfe,0xcc,0x54,0x91,0xd1,0x3a,0x5f,0x4f, +0xe5,0x9d,0x3c,0x7c,0xb2,0x5a,0x5a,0xed,0x5f,0x60,0xb4,0x2c, +0xc8,0x6f,0xc5,0x16,0xf6,0xec,0x7a,0xea,0x60,0xda,0xee,0x8c, +0x23,0xb2,0x13,0x7b,0x36,0x84,0x71,0xd1,0x74,0xc4,0xb6,0x35, +0xfe,0x41,0xec,0xdc,0x45,0x94,0x23,0xfd,0x67,0x95,0xe4,0xb8, +0xee,0x87,0x7f,0x65,0x99,0xe1,0x3f,0xd5,0x27,0xd6,0x8c,0x79, +0xdf,0x75,0x77,0xff,0xd4,0x17,0x13,0xf8,0x71,0xf7,0xc4,0xbf, +0xb8,0x24,0xec,0x9f,0xea,0x77,0x2a,0xe9,0xf6,0x2f,0xab,0xfd, +0x3f,0x47,0xb1,0xb4,0x7b,0x18,0x73,0x9b,0x2f,0x5e,0x20,0xfa, +0xb3,0x10,0xc6,0x13,0xdc,0xff,0xe4,0x54,0xfc,0x53,0xfd,0x25, +0x8d,0x79,0xcf,0x39,0xeb,0xf2,0xae,0xbd,0x92,0x16,0x74,0x9f, +0xfd,0x8b,0x83,0xfc,0x4e,0xd0,0xae,0x04,0xf4,0x5f,0x1e,0xc8, +0x77,0x42,0x9f,0xd1,0x7d,0xe6,0x97,0xb1,0x7a,0x67,0x23,0x7b, +0x82,0xc2,0x9f,0x1c,0x8f,0x77,0xc2,0xac,0xc1,0xa4,0xf7,0x63, +0x3a,0xff,0xc9,0xbf,0x6c,0x89,0x35,0xac,0x5b,0xf4,0xd7,0x38, +0xcd,0x7f,0xfc,0x2f,0xf0,0x74,0x09,0xbc,0xbf,0xca,0x5e,0xde, +0x33,0x8b,0x41,0x3f,0x45,0x38,0xfa,0x75,0x87,0x53,0xff,0x66, +0x0f,0x42,0x88,0x59,0xf9,0x6b,0x92,0xf1,0x0f,0xb8,0xca,0x34, +0xe5,0x1c,0x2e,0x38,0xc6,0x05,0x95,0x53,0xa1,0xc1,0xe1,0x5b, +0x02,0x65,0xde,0x01,0x19,0x07,0x7d,0xb9,0x23,0x6e,0x2b,0xd2, +0x5d,0x65,0xd6,0x81,0xa1,0x7e,0x21,0xdc,0x29,0x37,0xea,0xf0, +0x89,0xac,0x3d,0x39,0xb2,0x92,0xbc,0xc8,0x88,0x02,0x6e,0x4d, +0x79,0xde,0x86,0x0a,0xd9,0xff,0xb0,0xcd,0x48,0xc2,0x75,0x66, +0x8a,0xeb,0x35,0x41,0xa5,0x4e,0x22,0xbe,0x4d,0xc5,0xb5,0xe7, +0xcf,0x2a,0x96,0xe0,0x74,0x16,0x27,0x11,0x95,0xea,0xba,0x64, +0x2a,0x1b,0x0f,0x89,0x4c,0x71,0x46,0xf6,0x09,0x6e,0x1f,0x7d, +0x22,0x32,0xdb,0xc7,0x27,0x32,0x2c,0x98,0xdd,0x44,0x07,0x67, +0x84,0x15,0xb3,0xaa,0xaa,0xbf,0xbb,0x5e,0xe9,0x07,0x2e,0x8b, +0xfa,0x7e,0xbb,0xac,0xc0,0x88,0xd9,0xef,0xdc,0x58,0x85,0x8f, +0xfb,0x83,0xf5,0x51,0xf9,0xb8,0x3f,0xb5,0x63,0x05,0x1f,0xf3, +0x97,0x37,0xac,0xe0,0xd3,0xff,0xd3,0x7b,0x4b,0xf0,0x19,0x1f, +0xb4,0x89,0xd3,0x7b,0x2f,0x73,0xf5,0xa1,0xab,0x5c,0xf1,0xb7, +0x7f,0xfd,0x15,0x21,0x8f,0xff,0x32,0x97,0x54,0xf9,0x31,0x7f, +0xea,0xa3,0x42,0xde,0xf6,0x5d,0x5a,0x42,0xf5,0xe7,0x0d,0xc2, +0xb2,0xbb,0xff,0xd8,0x60,0x40,0xab,0x0a,0x5f,0xe8,0x33,0x95, +0xff,0xd8,0xe0,0x42,0xab,0x2a,0x82,0x41,0x93,0x41,0x55,0xd0, +0xc2,0xd1,0xe4,0x6f,0x32,0x8c,0xb7,0xb0,0x93,0xc0,0x34,0x1c, +0x0f,0xc3,0x70,0x1e,0x79,0x7a,0x9e,0x58,0x55,0x71,0x8d,0x7f, +0xc2,0x04,0xd7,0x7b,0xb4,0x7a,0xd7,0xda,0x05,0x4b,0x4a,0xed, +0x4e,0x9b,0x9c,0xb2,0x13,0x5b,0x07,0x33,0xc1,0x8d,0xee,0x6d, +0x3e,0x75,0xb6,0x41,0x92,0xd3,0xf6,0xa5,0x26,0x27,0x96,0x89, +0x6b,0xf1,0xcb,0x3f,0x06,0x04,0xc7,0x15,0x23,0x18,0x70,0xc2, +0xe9,0xe4,0xb6,0x6f,0xb5,0x49,0x8e,0x67,0x74,0xa0,0x63,0xb8, +0xd9,0xea,0x89,0x6b,0x70,0xc8,0xba,0x0c,0x5d,0x09,0xa8,0x67, +0x7d,0x7f,0xf4,0xca,0xf1,0x6f,0x4a,0x32,0x9e,0x9a,0xdd,0xb4, +0xb9,0x8a,0x83,0x81,0x46,0x67,0x61,0xbd,0x1d,0xc5,0xdd,0xf7, +0x43,0x40,0xb9,0x04,0x7a,0xff,0x19,0xf8,0x7c,0x12,0xdf,0xce, +0xcc,0x17,0xa1,0x9b,0x52,0x46,0x5d,0x12,0xf1,0x2b,0x78,0x99, +0x70,0x17,0xd8,0x73,0xa7,0xca,0x3b,0x2a,0x6e,0x33,0x56,0x38, +0x18,0x29,0x14,0xa1,0x1c,0x87,0x14,0x99,0x4a,0x60,0x27,0x70, +0xf0,0x09,0x7c,0x9a,0x07,0xea,0xe2,0x34,0x51,0x1e,0xaa,0x83, +0x04,0x3f,0x85,0x83,0xc8,0x15,0x36,0x4b,0x30,0x15,0x86,0xe0, +0x20,0x10,0x2d,0x83,0xc1,0x62,0x38,0xa3,0xf4,0x65,0x9a,0xbb, +0x87,0x98,0xc2,0x29,0x7c,0xa4,0x1c,0x60,0xac,0xb8,0xd9,0xaa, +0xfc,0x0c,0x1e,0xd1,0xaa,0xbc,0x96,0x82,0x66,0x0e,0xd7,0x1f, +0x6c,0xc8,0x68,0xd2,0x3f,0x20,0xb1,0x40,0x87,0xd1,0xa8,0x8d, +0x7a,0x38,0xb1,0xce,0x5a,0x02,0xf4,0x0f,0x0f,0xa1,0x77,0x0b, +0x0c,0x10,0xf3,0x7d,0x44,0x6e,0x28,0xd1,0xc2,0x41,0xe3,0xc7, +0x18,0xd7,0x18,0x57,0xd8,0xe4,0xbb,0x13,0x7e,0xaa,0x2e,0x04, +0x3d,0xe4,0x08,0xe2,0xbd,0x2a,0xea,0x25,0xf6,0x55,0xa6,0xf5, +0xc6,0xf5,0x2f,0x7e,0xf8,0x16,0xc6,0x54,0xc3,0x3c,0x71,0x3d, +0x19,0xcc,0x07,0x8a,0x2c,0x66,0xf4,0xe8,0x89,0xe3,0x26,0x8d, +0xde,0xbc,0x73,0x6b,0xda,0xd6,0x54,0x54,0x7b,0x80,0x03,0xe3, +0x16,0x6b,0xcd,0x99,0x14,0x87,0x0e,0x87,0xd1,0xfd,0xac,0xbb, +0x04,0xa4,0x30,0x1d,0x06,0xc0,0x67,0xc2,0xfa,0xbf,0xcd,0xce, +0x77,0xf5,0x5f,0x8e,0xad,0x6e,0x92,0x4c,0x7d,0x3c,0xbb,0x73, +0x69,0xfd,0x97,0x2f,0xbf,0xfa,0xe6,0xe5,0xf7,0xe2,0x6e,0xcb, +0xee,0xd1,0x4c,0x24,0x2c,0xd8,0x03,0x6c,0xe3,0xe5,0xb3,0x57, +0x1e,0x6d,0x82,0xde,0x4b,0x92,0xe2,0x93,0xe2,0x93,0xe3,0xc7, +0x62,0xef,0x31,0x84,0x11,0xbd,0x71,0x08,0xe1,0x5a,0x9c,0x09, +0x03,0x72,0x70,0x26,0x87,0x1c,0x76,0x10,0x4e,0x3a,0x11,0xf6, +0xec,0x40,0x27,0x74,0x26,0x67,0x39,0xb9,0x73,0x86,0x1d,0xc4, +0xa2,0xa1,0x27,0x6a,0xc1,0x7c,0xf0,0x04,0x2f,0xd0,0x22,0x87, +0x27,0x39,0xb4,0x50,0x0b,0xbd,0x48,0xf9,0x7c,0x72,0x78,0x70, +0xaa,0x3f,0x4b,0x84,0x8f,0x2c,0xbb,0x4b,0x17,0xd2,0xaa,0x00, +0x2a,0x3f,0x6f,0xa8,0xfd,0xc7,0x06,0x91,0xaa,0xc2,0xf4,0x97, +0xed,0xa0,0x40,0x63,0x06,0xa3,0x28,0xf8,0x79,0x3e,0x35,0x4b, +0xd4,0x5d,0x20,0xec,0xf8,0x04,0x1a,0x8a,0x2f,0x98,0x59,0x22, +0x85,0x70,0xf3,0x88,0x34,0x5d,0x04,0x79,0x4c,0x57,0x63,0x69, +0x5d,0x39,0xe7,0x5b,0x43,0xb9,0xba,0x2d,0x0f,0xb6,0x92,0xd9, +0x3a,0x1f,0x2b,0xd6,0xe7,0x2a,0xe7,0x38,0x65,0x1b,0xc9,0x74, +0x6c,0x3c,0xed,0xdd,0xb8,0x42,0x47,0xaa,0xa2,0xbc,0xe8,0xc4, +0x39,0x59,0x43,0x55,0x88,0x4f,0x3b,0xe7,0xf2,0xa0,0x3a,0xac, +0x4d,0xa6,0xca,0x8f,0xf8,0x65,0x55,0x6b,0xa8,0x51,0x7b,0xbb, +0xbc,0x35,0x7f,0xf0,0xbf,0x97,0xba,0x26,0x28,0x5f,0x7e,0x97, +0x06,0x83,0x47,0x6a,0x1f,0x5c,0xa3,0x0a,0xc9,0xef,0x06,0xc8, +0xc7,0xbc,0xf3,0x31,0xc5,0x97,0xef,0xb9,0x6f,0xc2,0x7b,0x6f, +0x21,0xa6,0x18,0xf2,0x1f,0xfd,0xfa,0xf8,0x3f,0xbc,0xd5,0x9d, +0x62,0xd2,0x87,0xec,0x6f,0xf6,0x61,0xdb,0x9b,0xfd,0xbc,0xe0, +0x7f,0xf8,0x4e,0xfa,0x8f,0x3f,0x93,0xfe,0x59,0xeb,0xdf,0xb7, +0xd4,0xf8,0x9d,0x4d,0x31,0x7e,0x9e,0xff,0x17,0x16,0x5b,0xff, +0x4b,0xcb,0xab,0x0b,0xe8,0xfd,0xee,0x47,0xdc,0xef,0xfa,0x86, +0x5b,0x51,0xf8,0x61,0x9f,0x70,0x7f,0xe0,0x17,0xdc,0x0a,0x9f, +0x7f,0x5d,0xaf,0xfd,0xdf,0x97,0x6b,0x57,0xac,0xfa,0x83,0x0f, +0xbc,0xff,0xf8,0xfb,0xee,0x9f,0x17,0xfd,0xd1,0xe7,0xdd,0xff, +0xd3,0xd7,0xdd,0x7c,0x6e,0x12,0x03,0xdf,0xc2,0xbd,0x2b,0x78, +0x0f,0xbe,0xd1,0xc7,0x6f,0xf0,0xfe,0x52,0xb8,0x8f,0xdf,0x12, +0x8c,0x7e,0x82,0xef,0x99,0x2b,0xdd,0x81,0x4b,0x89,0x2a,0xc8, +0x05,0x5b,0x06,0x8e,0xbd,0x69,0x94,0xad,0x8f,0xd9,0x6f,0x1a, +0x1d,0xa3,0x89,0xe2,0xb0,0x67,0x2e,0x77,0x07,0x1a,0x92,0xe6, +0x05,0x30,0x98,0x21,0x1a,0x2f,0x15,0xa2,0x20,0xde,0xa9,0x1a, +0xa3,0x30,0x0e,0xa3,0x21,0xde,0xd1,0x09,0xa2,0x89,0x26,0x8c, +0xc7,0x94,0x6a,0x27,0x88,0x27,0xd3,0x5e,0x8e,0x29,0x94,0xe0, +0x48,0x29,0xdf,0xb5,0x67,0x2d,0xdf,0x0b,0xb3,0xdf,0xf4,0x4b, +0xae,0xba,0xde,0xb9,0xb3,0xad,0xe2,0x27,0x7e,0xf5,0x9b,0x66, +0x8a,0x40,0xdc,0xff,0x16,0x51,0x52,0x58,0xc6,0x60,0xa4,0xe8, +0x1a,0x7c,0x4c,0xe9,0x8a,0x96,0xe0,0xc7,0x94,0x72,0xc1,0x52, +0x7e,0x28,0x99,0x38,0x68,0x4b,0xe1,0xc9,0xa5,0xb0,0x55,0xb4, +0x18,0x3f,0xa5,0xba,0x44,0x9d,0xf0,0x29,0xc5,0xcf,0xba,0xa2, +0x1c,0x44,0xf8,0x02,0xb6,0x14,0x1c,0x22,0x23,0xd4,0x15,0xcd, +0xdc,0xa2,0x95,0x0f,0xe0,0x12,0x95,0x4c,0xf3,0xc2,0xe9,0x36, +0xdd,0x3d,0x05,0x79,0x8a,0x48,0x93,0xe2,0x06,0x3f,0x8d,0xe9, +0x9e,0x02,0x3c,0xb5,0x80,0x54,0xe1,0x25,0x2a,0x96,0x34,0x24, +0x27,0x6d,0x5a,0x21,0x14,0xaa,0xc2,0x30,0xde,0x9d,0x51,0x78, +0xe3,0x76,0xaa,0x83,0x56,0x2a,0xc0,0x89,0x4a,0xa1,0x79,0x05, +0x38,0x53,0xd7,0xe8,0x6e,0x6f,0x8c,0xa1,0x14,0xde,0xca,0x60, +0xc2,0x26,0x6f,0xc2,0x26,0x18,0xa6,0x48,0x65,0x96,0x90,0x5a, +0x74,0xa6,0x62,0x48,0x5b,0x74,0xa2,0xf4,0x68,0x85,0x37,0x6c, +0xa7,0x5a,0x68,0xe5,0x24,0x15,0xd2,0x46,0xe1,0x4d,0x06,0xfc, +0x16,0x58,0x33,0x37,0xcf,0x97,0x7e,0x97,0xc5,0xa5,0x88,0x26, +0xe6,0x36,0xb9,0xfe,0x24,0x83,0xde,0xed,0x77,0xa0,0x0f,0xf4, +0xd1,0xbf,0x83,0xbd,0x17,0x5a,0x7a,0x8e,0x0d,0xe7,0x62,0x44, +0x5f,0x07,0x58,0x57,0x8c,0x90,0x61,0x6f,0x7d,0x2d,0xec,0x83, +0x7d,0xda,0xb5,0xa0,0x37,0x77,0x55,0xc5,0x62,0x39,0x99,0x23, +0xb5,0xf4,0x85,0xa2,0xe2,0x0b,0x6d,0x55,0xfe,0x33,0x0e,0xb3, +0x33,0x42,0x9d,0xfd,0x8d,0x64,0xf0,0x93,0x9a,0x91,0x73,0xfe, +0x93,0x50,0xee,0xc9,0xe1,0xaa,0xfc,0x36,0xd9,0x85,0x22,0x32, +0xd5,0x1c,0x68,0x8b,0xe5,0x3e,0x16,0x3d,0x7e,0xed,0x1a,0xa6, +0x38,0xf3,0x50,0x0e,0xd1,0xb9,0x39,0xeb,0x0e,0xf9,0xf8,0xac, +0x5b,0x1b,0x48,0x74,0x6e,0x60,0xe6,0xda,0x62,0x96,0xd8,0xa8, +0x17,0xbf,0xae,0xf3,0xfe,0xa5,0xae,0x84,0xe5,0xa7,0xab,0x95, +0xfc,0x52,0xe3,0xfd,0xeb,0xa7,0x54,0x61,0x28,0x14,0x31,0x38, +0x1c,0x88,0xbf,0x00,0xc3,0xc9,0x21,0x22,0xc7,0xf0,0x0b,0xe1, +0x8d,0x2b,0xce,0xb0,0xf0,0x11,0x0c,0xac,0x6f,0x4c,0x8c,0x8f, +0x33,0xa3,0x70,0x62,0x0b,0x74,0xe1,0x6d,0x13,0x98,0x4e,0x5f, +0x48,0x4a,0x88,0x5f,0x66,0x87,0x1f,0xe1,0x00,0x2a,0xcf,0xc3, +0xe6,0xa0,0xa5,0x0c,0x87,0xf7,0x38,0x1b,0xc3,0xb9,0x4e,0xb5, +0x1f,0xee,0xdc,0xff,0xe1,0x87,0xbb,0x73,0x47,0x8f,0xd6,0x9c, +0xab,0xa1,0x31,0xef,0xfe,0x0f,0x04,0x7c,0x34,0x7f,0x82,0x41, +0xb5,0x67,0xc3,0x60,0x68,0x24,0x3b,0x0a,0xf5,0xcd,0x41,0x1f, +0x27,0x76,0xc1,0x44,0xd0,0xbf,0x88,0xfa,0xaf,0x68,0x18,0x9a, +0xf9,0x0c,0x7a,0xc3,0x60,0x29,0x0c,0x47,0x31,0x08,0x9b,0x06, +0x8d,0x44,0x31,0x01,0x37,0x82,0x25,0xc0,0xee,0x3f,0xf8,0xf1, +0xd5,0x83,0x39,0xa3,0x47,0xcd,0x99,0x3b,0x6a,0xe4,0xdc,0x7b, +0x3f,0x12,0x60,0xf1,0xbc,0x3a,0xf3,0xdd,0xad,0x5b,0xaf,0x5e, +0x69,0xdf,0x1a,0x3b,0x56,0x5b,0x7b,0xd4,0xa8,0x5b,0xda,0xdf, +0x71,0xad,0x2a,0x46,0x9e,0x75,0x6d,0x6d,0xa5,0xc2,0x9f,0xbd, +0x91,0x91,0xa7,0xbd,0x11,0x47,0x9c,0x5b,0x7e,0x1c,0x73,0x01, +0xee,0x51,0x0b,0x45,0x16,0x78,0x8f,0x8c,0xfb,0xd0,0xb7,0xf7, +0x8b,0x7a,0xee,0xa1,0x41,0xed,0xbf,0x6f,0x54,0xc1,0x90,0xf7, +0x60,0x3e,0xbf,0xd4,0x7c,0xf7,0xae,0x59,0xf3,0xfc,0xf9,0x66, +0xa6,0xf3,0xe6,0x5d,0x32,0xfd,0x9c,0xe3,0xd3,0x95,0x2b,0x19, +0x50,0xfd,0xa2,0xf5,0x55,0x05,0xb7,0xb4,0x8c,0x9a,0x17,0x68, +0x6c,0x3b,0x49,0x86,0x43,0x16,0x7d,0x09,0x53,0xb8,0xd7,0x34, +0x4c,0xb9,0xf1,0x3d,0x0c,0x79,0x76,0xc9,0x61,0x61,0x0e,0x7b, +0xb5,0x94,0x7a,0xe9,0x32,0xf7,0x02,0xaa,0xca,0xd0,0x84,0x38, +0x1b,0x2c,0x99,0x46,0x71,0xd0,0x1b,0x87,0x82,0x09,0xa7,0x4c, +0xe7,0xb3,0x18,0x5b,0xff,0xb2,0xfa,0xfa,0xfc,0xb2,0x86,0x86, +0x7c,0x0f,0x3b,0x3b,0x7f,0x0f,0x5b,0x4e,0x95,0x2f,0x56,0x83, +0xc9,0xe0,0x78,0x05,0x1d,0x7f,0x14,0xfe,0xcf,0xa0,0xc1,0x17, +0xbe,0xa2,0x26,0x8b,0xd0,0x06,0x1f,0x09,0xdb,0x1c,0x39,0xc2, +0x23,0x6a,0x92,0x08,0x7c,0xf1,0x2b,0x0a,0x67,0x2c,0x05,0xc7, +0x91,0xe8,0x48,0xfe,0xe3,0x64,0x22,0xfc,0xa9,0xe0,0xc3,0x40, +0x9f,0xa5,0x97,0x70,0xe2,0x29,0x76,0x4b,0x22,0x05,0x09,0x74, +0x67,0xcc,0x59,0xdf,0x62,0xc7,0xe6,0x4a,0x89,0xd5,0x0d,0x9d, +0xfc,0x09,0x69,0xe2,0xc7,0xa6,0x33,0x69,0x54,0xdb,0x3e,0x75, +0x09,0xf6,0x96,0xa2,0xca,0x75,0x27,0x18,0xef,0xc3,0xe2,0x09, +0x7a,0x5e,0xb2,0xc5,0x69,0xc7,0x66,0x0b,0x5b,0x49,0xfd,0xd2, +0xeb,0x36,0xf0,0x51,0x8c,0x78,0x76,0xf3,0x23,0x1a,0x34,0xf6, +0x3d,0xf8,0x1c,0xfa,0x49,0x95,0xfa,0xf0,0x15,0xd3,0x7a,0xa1, +0xf4,0x61,0x0a,0x8b,0x9b,0xe9,0xf1,0xd9,0xce,0xa7,0xae,0x4b, +0xc1,0x1d,0x57,0x32,0xaf,0x57,0x55,0x04,0xeb,0x4a,0x75,0xad, +0xec,0x26,0x6d,0x27,0xe2,0x77,0x7a,0x0d,0x03,0xbd,0xe8,0xaf, +0x76,0xb6,0x56,0xe5,0x75,0x2c,0x2b,0x91,0xac,0x5c,0xe6,0x1a, +0x60,0x12,0x2d,0xe6,0xe7,0xd1,0x17,0xb6,0x97,0xae,0xcc,0x76, +0x68,0x11,0x16,0x8c,0x36,0xaf,0x99,0x9c,0x26,0x86,0x5e,0x7a, +0xd8,0x87,0x46,0x49,0xa4,0xf6,0x70,0x9c,0x26,0xc5,0xe9,0xb7, +0x86,0x83,0x24,0x52,0xc8,0x0e,0x24,0x80,0x11,0xa3,0x99,0xee, +0xd1,0xf6,0x40,0xfa,0x94,0xbe,0x5f,0xd6,0x76,0x2f,0x9d,0x28, +0x88,0x18,0xb5,0x1b,0xca,0x29,0x29,0x74,0xd5,0xa9,0x92,0xab, +0x9f,0x4b,0x33,0xe4,0xe9,0x71,0xfb,0x58,0x08,0xed,0xc0,0x38, +0xd1,0xc6,0xf2,0x75,0x95,0x67,0xa5,0xaf,0x9a,0xeb,0xbf,0x7f, +0x70,0xd6,0xcf,0xaa,0x84,0x6d,0xae,0xa4,0xba,0x1c,0x16,0x55, +0xa2,0x8a,0x0c,0xa7,0x4f,0x9a,0x8a,0x6a,0x16,0x99,0xce,0x19, +0xce,0x9c,0xa6,0xde,0x8f,0xa2,0xc4,0x0d,0x89,0x11,0xe1,0x52, +0xb3,0x08,0x33,0x93,0x10,0x76,0x0c,0x99,0xbc,0x3b,0xe0,0x01, +0xf3,0xd3,0x45,0xe1,0x55,0x55,0x99,0xf9,0xf5,0x11,0x23,0xcc, +0x75,0x51,0x86,0xd2,0x8b,0xba,0x3f,0x71,0x45,0xf8,0x80,0xe1, +0x53,0x14,0x21,0x94,0xb6,0x48,0x99,0xd2,0x1d,0x42,0x9d,0xe6, +0x07,0x33,0x26,0x41,0x65,0xf7,0xb8,0x16,0xfa,0xde,0xa9,0xb2, +0x96,0x96,0x53,0x1e,0x9a,0xac,0x09,0xad,0x19,0xe4,0x61,0xc2, +0xf2,0x89,0xca,0x61,0x3d,0x40,0x64,0x20,0x7d,0x0b,0x44,0x8a, +0x32,0x01,0x48,0xbd,0xca,0x3b,0x1e,0x21,0xa6,0x55,0xad,0x08, +0x82,0x28,0xd0,0x14,0x2d,0xc7,0x20,0xaa,0x55,0xd4,0x73,0x33, +0xf5,0x22,0x8e,0x16,0x9d,0x02,0x83,0xb7,0x57,0x42,0x99,0x71, +0x4f,0x3d,0x6a,0xfe,0xfa,0x66,0x9a,0x39,0x68,0x88,0x02,0xd1, +0x80,0xc2,0xa9,0xc2,0x95,0x50,0x06,0x23,0x78,0x62,0x5e,0x34, +0x45,0x41,0x42,0xa9,0x26,0xb1,0x01,0x0b,0x36,0x31,0x30,0xf8, +0x5a,0x4b,0xc9,0x49,0xee,0xc9,0x74,0xea,0xb5,0x08,0xc7,0xc1, +0xf8,0x23,0xd5,0x99,0x67,0x77,0xb6,0xa8,0xdf,0xbf,0x8a,0x63, +0x45,0x71,0x26,0x9b,0x8d,0x43,0x6d,0x88,0x23,0x60,0x24,0x79, +0xd9,0xf0,0x79,0xc3,0x0b,0xe9,0x73,0x9d,0x36,0xec,0x85,0x03, +0xe7,0x6b,0x8f,0x35,0x2a,0x58,0x56,0x6f,0xcb,0x6a,0x79,0x2c, +0xb0,0xc6,0x3e,0x44,0x2c,0xee,0x4f,0x83,0x09,0xec,0x76,0xde, +0x8c,0x71,0xad,0x09,0x28,0x2f,0x93,0xee,0xa3,0xcf,0x57,0x97, +0x5f,0xb9,0x50,0xb7,0xc2,0x82,0x28,0x06,0x0b,0x5d,0xc7,0x45, +0xcb,0xd9,0x74,0xa5,0x98,0x19,0x6f,0x5a,0xf3,0x39,0x89,0xaf, +0x1f,0x34,0xe5,0xb7,0xe5,0xb2,0xb0,0x1c,0xfd,0x29,0x07,0x6f, +0xeb,0x40,0x6d,0x99,0x10,0x7d,0x3f,0x66,0xc0,0x1e,0xf3,0x2f, +0x56,0xa0,0x37,0x1c,0x86,0x1b,0x2f,0xd7,0x5c,0xc5,0x76,0xa4, +0x77,0x12,0xc1,0x5d,0x28,0xda,0x89,0x8f,0xb0,0x1d,0xe8,0x35, +0xfa,0x70,0x63,0x0c,0x7a,0xe3,0xe1,0x8b,0xae,0x94,0xaa,0x62, +0x93,0x01,0x73,0x49,0x58,0x4b,0xd4,0x19,0xc9,0x64,0x07,0x67, +0xee,0x12,0x0d,0x76,0x24,0x30,0x99,0x00,0xae,0x60,0x44,0x66, +0xff,0x20,0x34,0x63,0x9d,0x68,0x1c,0xe0,0xbb,0xd8,0xd0,0x2b, +0x22,0xbd,0x91,0x85,0x2e,0xfd,0x25,0xb1,0x74,0x45,0x84,0x4f, +0x81,0xb1,0x6c,0xfc,0x6c,0x1d,0x62,0x11,0xa7,0x3e,0xd4,0xf9, +0xb6,0xf5,0x74,0xc1,0xd9,0x63,0x44,0xd5,0xda,0xa6,0xe6,0x2f, +0xbf,0x2c,0x03,0xb5,0x5a,0x50,0x85,0x51,0x50,0x86,0x56,0x24, +0xc6,0x70,0x24,0xc6,0x6b,0x2e,0x1a,0xe0,0x7e,0xdc,0x07,0xb3, +0x70,0x01,0x44,0x71,0x5b,0x21,0x93,0x59,0xe8,0x5b,0xd3,0xc5, +0xdd,0xa3,0x6f,0x14,0xd6,0xdc,0xec,0x2a,0xf2,0x58,0xc6,0x22, +0x43,0x1b,0xf9,0xf8,0xe8,0x12,0xb1,0xd3,0x26,0xe1,0xd7,0xb9, +0x55,0xe5,0x4e,0xa7,0xd8,0x54,0xba,0xe3,0xc4,0xe9,0xba,0x56, +0xe9,0x15,0x97,0xc6,0x61,0xb9,0xac,0xc9,0x41,0xca,0x28,0xcb, +0xfb,0x78,0xad,0xb4,0xb1,0x3c,0xbf,0xab,0xf6,0xf4,0xfa,0x55, +0xb9,0x6c,0x65,0x13,0x75,0xda,0xc5,0xec,0x80,0xb9,0x0c,0xfb, +0xcd,0x33,0x1b,0x67,0x75,0xdc,0xad,0x3a,0x88,0x8b,0xa6,0xf5, +0x82,0xbd,0xec,0x8d,0xa5,0x4b,0x2b,0x6d,0xfe,0x1e,0xc0,0xb6, +0x44,0x50,0x6d,0xe1,0x25,0xab,0x1c,0xa4,0x36,0x6e,0xfe,0x3a, +0x0e,0x5e,0x07,0x8e,0x07,0xb0,0x2e,0xd6,0x94,0x57,0xe5,0xa5, +0xf5,0x17,0x65,0xd0,0xef,0xee,0xa5,0x17,0x9c,0x1b,0xec,0x65, +0x9c,0x43,0xfc,0xbc,0x56,0xb2,0x5b,0x93,0xb7,0x24,0x6f,0x49, +0x32,0xcd,0x90,0x68,0x65,0xfb,0xe6,0x37,0x49,0xab,0x8e,0x15, +0x9c,0x3e,0xc9,0xee,0x8e,0xdd,0x13,0xbb,0x27,0xae,0x39,0x52, +0x72,0x27,0xac,0xd0,0xdf,0x9a,0xf8,0x88,0xff,0x45,0x34,0x07, +0x5e,0x70,0x85,0x55,0x18,0x68,0x87,0x17,0xe0,0x04,0xa1,0xf3, +0x04,0x8e,0xb2,0x85,0x0b,0x10,0x02,0x81,0x78,0xa1,0x02,0xff, +0x06,0xb9,0xd4,0x77,0x58,0xce,0xec,0x59,0x7d,0x34,0x0e,0xd6, +0xac,0xc0,0x99,0x38,0x6d,0xdd,0xba,0x94,0xd5,0x45,0x18,0x8c, +0xf6,0x2f,0x43,0xf6,0x86,0x6c,0x42,0xfb,0xd1,0x85,0x10,0x94, +0x72,0x22,0xfc,0x10,0x4e,0x23,0x3e,0xc7,0x8e,0xa2,0x3d,0x47, +0xbf,0x07,0x17,0xc1,0xa8,0x2b,0x9a,0x84,0x97,0xf4,0xf2,0xb1, +0xd5,0x15,0xc2,0x70,0xa5,0x2d,0x36,0xc3,0x29,0xd0,0x20,0x61, +0x9f,0x86,0x2d,0x34,0x43,0x18,0xac,0xc4,0xd6,0x0a,0xa1,0xd9, +0x32,0x06,0xb6,0x80,0x35,0x2c,0x23,0xff,0x37,0x23,0x39,0xe3, +0x16,0x72,0x58,0xe3,0x32,0xdc,0x8c,0xa4,0x1c,0x49,0x39,0x57, +0xac,0x82,0xfe,0xa8,0x03,0xba,0x10,0x08,0x01,0x20,0x9c,0xfd, +0xc9,0xa1,0x83,0xba,0x18,0x80,0x81,0x28,0x9c,0xfd,0x89,0xb6, +0x8b,0x0d,0x63,0x08,0xd2,0x86,0xe4,0x08,0x21,0xe4,0x10,0xe9, +0xc4,0x10,0x24,0x67,0x34,0x22,0xff,0x49,0x39,0x29,0x59,0x45, +0x5a,0xc5,0xad,0x65,0x60,0x0d,0xe8,0xc3,0x62,0x58,0x0b,0xa1, +0xb8,0x84,0x44,0x8e,0x61,0xb8,0x86,0xc4,0x99,0x7a,0x18,0x8a, +0x6b,0xc9,0xdd,0x62,0x58,0xc3,0x15,0xa9,0xa0,0x0b,0xce,0x84, +0x19,0xe0,0x01,0xee,0x20,0x9c,0x5d,0xc8,0xd5,0x54,0x9c,0x81, +0xee,0xe8,0x41,0x18,0x30,0x03,0x5d,0xb8,0x04,0x98,0xc9,0x80, +0xca,0xb3,0x47,0x24,0x60,0xec,0x3f,0xf5,0x11,0xaa,0x20,0x35, +0x75,0x16,0xf6,0xc7,0xfe,0xcf,0x66,0x01,0x45,0x9e,0x9f,0xba, +0xe8,0xda,0x37,0xdf,0xdc,0xb8,0xf6,0xec,0xe9,0x8d,0x25,0x13, +0x26,0x2c,0x5a,0x32,0x8d,0x53,0xbd,0xc8,0x0f,0x62,0x78,0x53, +0xa5,0x31,0x6f,0xc4,0x1b,0x2b,0x8d,0x78,0x23,0x8a,0x1f,0xa2, +0x34,0x62,0x94,0x43,0x94,0x6a,0x4a,0x09,0xaf,0xc6,0x4b,0x78, +0x86,0x52,0xad,0x22,0x3e,0x24,0xef,0xa0,0x74,0xe0,0x1d,0xde, +0xfc,0x27,0x46,0x83,0xda,0xca,0x28,0xd2,0x15,0x07,0xba,0xd3, +0x45,0xa7,0xbb,0xd7,0x32,0x0a,0x4b,0x85,0x51,0xb7,0x25,0xd1, +0x3c,0x03,0xd5,0x14,0x09,0x8a,0x84,0xee,0x04,0xe2,0xee,0xcd, +0xda,0xc3,0x28,0x75,0x14,0x5b,0x94,0x3a,0xdd,0x5b,0x28,0x5e, +0x47,0x31,0x9d,0x81,0x7f,0x74,0x7f,0x44,0x75,0xfb,0x91,0x2a, +0xbd,0x54,0x46,0x69,0xa9,0xd8,0xa5,0xb4,0xec,0xde,0x45,0xa9, +0xfe,0x3c,0x5b,0xb1,0x85,0xe9,0x7e,0x29,0xe2,0x75,0xbb,0xb7, +0x51,0x9f,0xab,0x28,0x7b,0x29,0x54,0x29,0x45,0x20,0x99,0xed, +0x71,0x1b,0x19,0x9e,0xb4,0xa2,0xfe,0xa1,0x2a,0xdc,0x00,0x30, +0xf0,0x04,0x1f,0x1f,0x3f,0x81,0x8f,0x41,0x38,0x1e,0x05,0x93, +0x2b,0x32,0xd3,0x84,0xab,0x60,0xe8,0xb9,0x22,0xb5,0xc1,0x14, +0x89,0x2e,0xbe,0x61,0x8e,0x66,0x65,0x1d,0x3d,0x12,0x9e,0xb5, +0x7a,0x75,0x44,0xf8,0x9a,0xd5,0x07,0xc3,0x8f,0x72,0x58,0x80, +0x05,0xbf,0x2d,0xe5,0x2f,0xa9,0x1d,0x3d,0x48,0xca,0x22,0x48, +0x59,0x38,0x29,0xcb,0x7a,0x67,0x4b,0xd5,0x2f,0x15,0xfb,0x99, +0xc5,0x8a,0xb3,0x9d,0xc2,0x66,0xaa,0x2f,0x18,0xbe,0x77,0x67, +0xf7,0xd9,0xc5,0x7c,0x6f,0xa5,0xd3,0x03,0x62,0x94,0xbe,0x21, +0x2c,0x44,0x2f,0xf0,0x72,0x74,0x7a,0x3c,0xab,0xd6,0x43,0x1e, +0x37,0x3e,0x95,0x52,0x6e,0x35,0xe0,0xb7,0x8a,0xbe,0x4d,0x4d, +0x88,0x73,0xf0,0x98,0x39,0xab,0xc6,0x89,0xc8,0x93,0x06,0xac, +0x62,0x66,0x3e,0x72,0x28,0x4b,0x48,0xfa,0x36,0x9a,0xe2,0xb7, +0x5e,0x55,0x6e,0x15,0x8d,0x8f,0x96,0x27,0xd5,0x96,0x3d,0x7e, +0xe4,0x58,0x4d,0xdc,0x17,0x02,0x00,0xbd,0x7a,0xc4,0x73,0x0d, +0x23,0xdc,0x56,0x3b,0x3e,0x7a,0x5c,0x56,0x9b,0x24,0x8f,0x1e, +0x4f,0xa0,0x5d,0xe5,0xb7,0xd2,0xd1,0xdf,0x26,0x25,0x94,0x39, +0x3c,0x9a,0x59,0x5d,0x43,0xf4,0x89,0x1d,0xac,0x67,0x9c,0x6a, +0x66,0xcd,0xf4,0x70,0x88,0x4b,0x48,0xfd,0x96,0xc0,0x33,0x50, +0x6e,0xa5,0x53,0xc7,0xc7,0xc9,0x3d,0x6a,0x67,0x3d,0x76,0x72, +0x7c,0x03,0x4b,0x71,0x97,0xf7,0x65,0x60,0x4f,0xf7,0x7c,0xdc, +0x43,0x2b,0xe6,0x2b,0x97,0xfc,0xf3,0x5a,0x55,0x71,0x93,0x9f, +0xc7,0x28,0x5f,0x88,0x3a,0xf7,0x35,0x5c,0x05,0x99,0x8c,0xd7, +0xe8,0x54,0x8e,0x14,0xa1,0xc3,0x5c,0x22,0x29,0x43,0x70,0xc4, +0x43,0x1c,0x08,0x0e,0x1c,0x3f,0xbc,0x53,0xa9,0x21,0x42,0x99, +0x4d,0xfb,0xc3,0x8d,0x1c,0xff,0x3d,0xa1,0x73,0x17,0xfc,0xc4, +0xcc,0xde,0x68,0xa3,0x8f,0x32,0x99,0x52,0x63,0x31,0x3f,0x5c, +0x04,0x0e,0x0f,0x61,0x20,0x8c,0x80,0x21,0x73,0xa1,0x3f,0x3a, +0x70,0xca,0x91,0x8b,0x79,0x0d,0x11,0xc8,0x1a,0x0c,0x16,0xef, +0xe3,0x94,0x2f,0xf4,0xc8,0x23,0xf7,0x88,0x0e,0xba,0xae,0x24, +0x16,0x79,0xb0,0x79,0xdd,0xab,0x57,0x17,0xeb,0x60,0x30,0xc7, +0xcf,0xec,0x52,0xce,0x14,0xa1,0xf1,0x8c,0x79,0x38,0x06,0x35, +0x9e,0xcc,0x03,0x63,0x52,0x84,0xa1,0x4c,0x57,0xb7,0xb6,0x0e, +0xf1,0xe1,0xaf,0x91,0x27,0xc0,0xf8,0xc9,0x5d,0x32,0x23,0xc7, +0xcc,0xb8,0x8b,0xc6,0x9c,0x72,0xa6,0x0e,0x3f,0x53,0x04,0x83, +0x2f,0xda,0x8f,0x1a,0x65,0x6e,0x8f,0x83,0x49,0x81,0xae,0x48, +0xa1,0xfd,0xcb,0x13,0xa4,0x8f,0xa1,0xa4,0x8f,0x19,0xa4,0x0f, +0xb3,0x46,0x21,0x89,0x76,0xa9,0x51,0xe8,0x65,0x06,0x29,0x22, +0xbd,0x4c,0x9f,0x8f,0x0b,0x71,0xe1,0x17,0xf3,0x49,0x2f,0x02, +0xec,0xa1,0x04,0xf6,0x17,0x9f,0xc3,0x42,0x58,0x38,0xfd,0x73, +0x01,0xf6,0x0c,0x5d,0x9e,0xc4,0x8c,0x83,0x2f,0xd9,0x10,0x0d, +0x3c,0xc8,0xcc,0x46,0x80,0x3e,0x43,0x97,0x38,0xb6,0xc9,0x8a, +0x30,0x46,0x39,0x97,0x46,0xaf,0xcb,0x73,0xc1,0x18,0x8c,0x2f, +0xdf,0x07,0x2f,0x96,0x9f,0x3b,0x57,0xa9,0x43,0xa3,0x86,0x87, +0x05,0x7e,0x8c,0x1f,0x7b,0x5c,0x00,0x0d,0x96,0x27,0xfd,0xc3, +0x63,0xde,0x8d,0x01,0x8d,0xb2,0x0b,0xf0,0x31,0x7c,0x5c,0x66, +0x81,0x1a,0xac,0x52,0xe7,0x3e,0x3f,0x97,0x06,0x2f,0xc3,0xfb, +0x68,0x8c,0xc6,0x86,0x73,0xd1,0x8b,0x55,0xce,0xbd,0x4f,0x5a, +0x2e,0x3c,0xc5,0xdc,0x17,0x41,0x8c,0xa2,0x97,0xb0,0xad,0x58, +0x7c,0x77,0x2f,0xea,0x81,0x08,0x0b,0x14,0xc6,0xd4,0x38,0x22, +0xe0,0xe5,0xf9,0x0c,0x08,0xd7,0x73,0x44,0x28,0xd4,0xc4,0x8a, +0x50,0x68,0x37,0x57,0x04,0x39,0xdd,0xc6,0x64,0x24,0xcb,0x41, +0x93,0x81,0xf3,0x4a,0x32,0x43,0x2b,0x48,0xe4,0xa9,0xaa,0x18, +0xca,0x7f,0xc1,0xf8,0x05,0x7c,0x3b,0x81,0x52,0x9e,0xf3,0xe4, +0x5f,0x88,0xce,0xb8,0xbb,0xbb,0x53,0xca,0x17,0x9e,0xfc,0x39, +0xd1,0xf8,0x09,0x05,0x01,0xe0,0x07,0x7e,0xe4,0x21,0xae,0xa7, +0xd1,0x37,0xa4,0xd1,0x7c,0xd1,0xb7,0xdf,0xf8,0xe5,0x12,0x65, +0xe5,0x07,0xe4,0xaf,0x20,0x77,0xfc,0x37,0x14,0x3f,0x5f,0x34, +0xe1,0x9f,0x4d,0x95,0x4a,0x77,0xc6,0xfd,0xcc,0x99,0x33,0x14, +0x9f,0xf4,0x06,0x94,0xaa,0x62,0x85,0x22,0x84,0x59,0x88,0xc1, +0x14,0xd6,0x88,0x16,0x42,0xb0,0x10,0x59,0xef,0x22,0x0e,0x03, +0xf4,0x26,0x67,0xe2,0x3f,0xe0,0xc5,0xee,0x51,0x0c,0x71,0xd5, +0x3e,0x81,0xff,0xa2,0x60,0x37,0x61,0xd8,0x3e,0xc5,0x18,0x06, +0x94,0xc4,0xfa,0x7c,0xa9,0x03,0x5f,0x62,0x12,0x2a,0x75,0x78, +0x0b,0x45,0x88,0xd2,0x82,0xc8,0x40,0x55,0x19,0xd3,0xa6,0xdc, +0x49,0x42,0x8d,0x79,0xfc,0x56,0x9b,0x33,0xca,0x00,0x65,0x35, +0xb5,0x8c,0x0c,0x74,0x11,0xa8,0x33,0xfc,0x61,0x2d,0xe5,0x61, +0x2c,0x5e,0xa4,0x60,0x6f,0x08,0xec,0xe1,0x1f,0x31,0xcf,0xee, +0x43,0xbf,0x73,0xc0,0xc8,0x60,0x30,0x0c,0xb0,0x9c,0x72,0x9f, +0x3b,0x5f,0x4c,0x41,0xdf,0x71,0xf8,0xd9,0x15,0x24,0xee,0xe7, +0xcc,0x78,0x64,0x8c,0xc7,0x61,0x6f,0x31,0x89,0x43,0xe1,0x1c, +0x03,0xfb,0x50,0x13,0xa8,0xa9,0x4d,0x2c,0x7e,0x2a,0x82,0x81, +0xc6,0x30,0x60,0x66,0xee,0x84,0xb8,0x78,0x49,0xc1,0x4a,0x9f, +0x2c,0x0b,0x19,0xaa,0xcf,0xd4,0x20,0x66,0x73,0xda,0x63,0x0d, +0x22,0x49,0xdc,0x93,0xa7,0x60,0xcd,0x61,0x24,0xfa,0x31,0x33, +0xac,0x6a,0x7f,0xe4,0x3a,0xe8,0x1f,0xcf,0xd5,0x3e,0x79,0x72, +0xce,0x61,0x24,0xab,0x47,0x8f,0xb4,0x72,0x98,0x41,0x0c,0x62, +0xa1,0x22,0x96,0x51,0x3e,0x16,0x41,0x75,0xf7,0x61,0x2a,0x01, +0xe6,0x0b,0x51,0x76,0x35,0xc5,0x0f,0x13,0x09,0xd1,0x5a,0xd3, +0x2f,0x21,0x9c,0xdf,0x2f,0x57,0xfe,0xff,0x8c,0x3a,0x87,0x2a, +0x3e,0x63,0x8a,0x32,0x0e,0x9d,0x24,0xf1,0xc5,0xc9,0xc8,0xac, +0xe5,0xcb,0xd7,0x85,0xaf,0x24,0x6e,0xc4,0xca,0xcc,0xb5,0x45, +0x2c,0x1f,0x82,0x46,0xbf,0x3c,0x10,0xf5,0x36,0x5c,0x5c,0x83, +0x61,0xef,0x6a,0xaf,0xca,0xd7,0x6d,0x13,0x36,0x7c,0x56,0x81, +0x73,0x42,0x74,0x37,0x10,0x1a,0xa8,0xc7,0xb4,0xd2,0x4e,0xd9, +0x9b,0x72,0xa2,0x15,0xbb,0x95,0x7d,0x85,0x3a,0xfa,0x4d,0xdd, +0xa0,0x37,0x75,0xce,0x3d,0x75,0xaa,0x7c,0x1b,0x3f,0x9e,0x51, +0x3a,0xf3,0xbd,0xa9,0x99,0xa4,0x0a,0x1b,0x84,0xc8,0x8f,0xc6, +0x73,0xc2,0xae,0xcf,0xcb,0xf8,0xbe,0x14,0x74,0x55,0x33,0x4a, +0xbb,0x37,0xb5,0x03,0xdf,0xd4,0xaa,0xbc,0xa9,0x35,0x27,0xb5, +0xaa,0x0a,0xf5,0x9f,0xfb,0x32,0x09,0x0b,0x68,0x34,0x53,0xfe, +0xb8,0x00,0x0b,0x89,0x0f,0xbe,0x08,0x0a,0x5d,0x61,0x1e,0x85, +0x33,0x8d,0xbf,0x13,0xc1,0x27,0x4a,0x7b,0x0a,0x28,0x11,0x64, +0xff,0x3c,0x90,0xe2,0x07,0x08,0xc1,0x78,0x20,0x3f,0x9c,0xd1, +0xf6,0xf5,0x32,0x5a,0x22,0x33,0xf2,0x28,0xba,0xc1,0x9d,0xa0, +0x3b,0xcb,0xca,0xda,0x0a,0xf3,0x36,0xad,0x3a,0xce,0xe6,0x9f, +0xa6,0x4a,0x03,0x1c,0x8f,0x38,0xc9,0x50,0xa4,0xaf,0x4f,0x26, +0xca,0x80,0x56,0x1d,0x18,0xf0,0x75,0x6b,0x17,0x7c,0xd4,0xc8, +0xdd,0x28,0xcc,0xa9,0xed,0x90,0xb5,0x95,0x2e,0x5f,0xc8,0x05, +0xd3,0x8b,0x3c,0x7d,0x8c,0x7c,0xfc,0xd3,0x4f,0xad,0x62,0xfd, +0xbd,0x28,0xd7,0x53,0xf5,0x21,0xb5,0x32,0xf8,0xe8,0x52,0x17, +0x0c,0x80,0x8f,0x97,0x12,0x5f,0x6a,0x86,0x25,0x99,0x93,0x56, +0x24,0x96,0x21,0x23,0xc7,0xdc,0xbe,0x58,0xfa,0xdd,0x21,0x21, +0xc6,0xcc,0x3b,0xe7,0x0a,0xbd,0x64,0x8d,0x15,0x59,0x79,0x39, +0x9c,0xeb,0x79,0x2a,0x78,0x5d,0xf0,0x06,0x6f,0xd9,0x52,0xc7, +0xfc,0x27,0x6b,0xb8,0x27,0x47,0x6a,0xf2,0xaf,0xc8,0x8a,0x4f, +0x6c,0x0a,0x3b,0xc8,0x55,0x34,0x52,0x39,0x01,0x6e,0x99,0x36, +0xb2,0x05,0xe6,0x9e,0x63,0xd7,0x0a,0x21,0xe8,0x0a,0xab,0x0a, +0xec,0x25,0x43,0x95,0x25,0x3d,0x31,0xe8,0x35,0x2d,0x50,0x21, +0x31,0xa8,0xa9,0xf7,0x9b,0x18,0xb4,0xa4,0xb8,0xf9,0x4a,0x8d, +0xff,0x8c,0x23,0xec,0x8c,0x35,0x8e,0xfe,0x4b,0x65,0xaa,0x50, +0xc9,0x7f,0xc9,0x08,0x11,0x24,0xf7,0x26,0x82,0x14,0xe2,0x4a, +0xf6,0x4d,0x5c,0x29,0x04,0x93,0x3e,0xbf,0xd4,0x14,0x97,0xfc, +0x52,0xe3,0xfd,0x26,0x04,0xfd,0x55,0xdd,0xaf,0x9f,0x22,0x64, +0x4c,0x66,0x9e,0x8a,0x6e,0x15,0x56,0x5d,0xe3,0x14,0xdb,0x61, +0x50,0xc7,0x34,0x5a,0xdb,0xd7,0x79,0x09,0xd7,0xbd,0x1d,0x07, +0x11,0xc9,0x97,0xbe,0xbb,0x92,0x1f,0xaf,0xf7,0xee,0x07,0xf9, +0x78,0xc5,0x26,0xa6,0xad,0xae,0xe6,0xf2,0x65,0xfb,0x1a,0x23, +0x23,0x7b,0x47,0x43,0xc3,0x3a,0xc7,0x36,0xae,0x46,0xc5,0x37, +0x2c,0xab,0x80,0xcb,0xa6,0x0b,0xb2,0xb3,0x0a,0x0b,0xb3,0xc3, +0xfd,0xd8,0x30,0xda,0x2f,0x2c,0xdc,0x97,0x05,0xef,0xee,0x42, +0xe6,0x89,0x08,0xe3,0x14,0x66,0xd4,0x30,0x72,0xea,0x36,0xa3, +0x1e,0x8a,0x3a,0xc0,0x93,0x82,0x02,0x11,0x72,0x3c,0x31,0xd1, +0xfd,0xf1,0x4b,0x0a,0xa3,0x45,0xc4,0x7b,0xf8,0x92,0x18,0x79, +0x63,0xe0,0x99,0x9b,0xa5,0x4d,0xc4,0x4f,0xe5,0x3c,0x9b,0x16, +0x2e,0xf4,0xb4,0x46,0x0e,0xb9,0x52,0xeb,0x9b,0x5c,0x2e,0xf2, +0x64,0xb6,0x13,0x3d,0x60,0x2c,0x42,0x25,0x51,0x0b,0xb9,0xfc, +0x14,0x42,0x79,0x5e,0x3b,0x77,0x93,0x6e,0xcf,0xcc,0x2b,0x2e, +0x3e,0xb8,0x42,0x9f,0x5d,0x48,0xeb,0x47,0xac,0xf0,0x61,0xe1, +0x47,0xa5,0x16,0x73,0xf3,0xb4,0x00,0x84,0xf5,0x7a,0x03,0x84, +0x7d,0x03,0x04,0x8a,0xd4,0x7e,0xb7,0x1c,0x8b,0xce,0x12,0xe6, +0x13,0x60,0x37,0xe8,0x8e,0xcc,0x5c,0xc2,0xfc,0x00,0x3d,0x76, +0x11,0xad,0xbf,0x4e,0x00,0x56,0xa4,0xe6,0x13,0xf1,0xa6,0xe6, +0x60,0x6e,0xf1,0xaf,0x6b,0x54,0x15,0xfd,0xa0,0x8c,0x38,0x6c, +0x34,0xcc,0xc9,0xa5,0x8a,0x68,0x9c,0x13,0x40,0xc1,0x72,0x1f, +0x5c,0x49,0xa3,0xa1,0x1f,0x05,0x2b,0x7d,0x70,0x2d,0x8d,0xf3, +0x57,0x50,0x3e,0x34,0xcc,0xcf,0xa3,0x48,0x90,0x27,0x34,0x58, +0xde,0xd3,0x18,0x03,0x8b,0x21,0x94,0x06,0xc3,0x02,0x0a,0xc3, +0x8a,0x61,0x23,0x0d,0x5a,0x79,0x04,0x80,0x52,0x0d,0x66,0x30, +0x60,0x58,0x48,0xe1,0x96,0x1e,0x10,0xaa,0xfc,0x59,0xa2,0xe6, +0x7d,0x03,0x36,0x04,0x06,0x70,0x9e,0x5e,0x14,0x3c,0xf7,0xe9, +0x1e,0x43,0xaf,0xc8,0xdb,0x7a,0x30,0x8b,0x25,0x2e,0xbc,0x3b, +0x95,0x93,0xb3,0xef,0x54,0x99,0xb4,0xd3,0xa9,0x76,0x09,0x8b, +0xc3,0x95,0x52,0x06,0x52,0xe8,0x6b,0xed,0x54,0x76,0xf6,0xb1, +0x5d,0xd9,0xb2,0xea,0xbc,0x40,0xdb,0x15,0xdb,0xc2,0x43,0xd7, +0x10,0x13,0xe4,0x09,0x8e,0x4c,0xc6,0xfa,0x90,0x03,0x01,0x32, +0x13,0x7b,0x7b,0x13,0x93,0x3a,0xfb,0x96,0x96,0x9a,0xba,0x16, +0x8e,0x2f,0xa5,0x61,0x02,0x4e,0x6f,0xb0,0x4e,0xd2,0xb5,0xb6, +0x56,0xd7,0xd6,0x3e,0xb6,0xea,0xf6,0xed,0xf6,0x76,0xf9,0x0b, +0x83,0x0e,0x75,0x5c,0x04,0xfa,0xd4,0xfa,0x03,0xc1,0x5b,0xd6, +0x48,0x75,0xba,0x65,0x8c,0x87,0x5f,0x7e,0xd9,0x99,0x82,0xbc, +0xb2,0xb2,0x5c,0x7f,0x0f,0x8f,0x40,0x7f,0x77,0x02,0x33,0x77, +0x1a,0xa3,0x18,0x06,0xd6,0xad,0xc4,0x49,0x0d,0x15,0xdc,0x45, +0x6b,0x63,0xb0,0xee,0x1e,0x46,0xf7,0x54,0x40,0x68,0x4f,0x05, +0xdf,0xeb,0xdf,0xea,0x95,0xbd,0x7a,0x4e,0x18,0x4a,0x9a,0x4d, +0xf7,0x60,0xae,0x2b,0xb2,0xa0,0x6f,0x77,0x16,0x39,0x5d,0xb9, +0x8a,0xb7,0x44,0xd8,0x6b,0xd6,0x54,0x12,0x39,0xf5,0x7a,0x34, +0x15,0x7a,0x09,0xbe,0x29,0xd1,0xed,0x99,0xc4,0xc3,0x0d,0x20, +0xff,0x33,0x91,0x9c,0x31,0x93,0x1c,0x01,0xd8,0x73,0x26,0x77, +0xa4,0x5c,0xf8,0xf1,0x20,0x0c,0x89,0xa9,0x24,0x0e,0x74,0x18, +0xfc,0x72,0x26,0x06,0x30,0x4c,0x28,0x17,0xce,0x02,0x20,0x12, +0xc0,0x19,0xdd,0x07,0x16,0xa2,0x21,0x66,0x2e,0xb0,0xc4,0x05, +0x36,0x9a,0x4b,0x86,0x3d,0x06,0xa3,0xef,0x23,0x0b,0x46,0xdc, +0x75,0x15,0x1c,0x64,0xf3,0x12,0xc6,0x72,0x40,0xd3,0x30,0xb6, +0xf1,0xa5,0x60,0xce,0x1b,0x35,0x70,0x2c,0x2b,0x6c,0x84,0x3e, +0xd6,0x46,0x03,0x07,0x91,0x81,0x4e,0x57,0xeb,0x42,0x5f,0xc5, +0x18,0x1c,0x4a,0xe3,0x6a,0xf4,0xaa,0xb1,0x23,0x2e,0xb7,0x03, +0x95,0xa6,0xfc,0x0a,0xd7,0xe8,0x10,0x65,0xbd,0xa1,0x8b,0x51, +0x7e,0x26,0x02,0x4f,0x30,0xa1,0x9e,0xdf,0xbf,0x7c,0x47,0xd8, +0xfc,0xfa,0x13,0xcd,0x27,0x38,0x1c,0x87,0x1b,0xcd,0x9a,0xb5, +0x92,0xbd,0xb1,0x92,0xba,0x76,0xe8,0xcc,0xd9,0x67,0xb2,0x2f, +0x2b,0xad,0x34,0xc9,0x44,0x5d,0x6c,0xaf,0xa3,0x6f,0xca,0xe2, +0x0e,0x0c,0xa3,0x66,0xf1,0x11,0x84,0x19,0xea,0xfc,0x5c,0x46, +0xf7,0x39,0x0d,0x7d,0x2f,0x39,0xcc,0xe4,0xb6,0xd2,0x33,0xcd, +0xec,0xb1,0xef,0x24,0xc7,0x92,0x0b,0x5e,0xac,0xb1,0x23,0x65, +0x5c,0xd5,0x6e,0x0e,0x12,0x19,0x4c,0x7d,0xf5,0x98,0x18,0xa8, +0x3e,0x0b,0x2e,0xcc,0x4c,0xe7,0x52,0xe8,0x87,0x59,0x97,0x9b, +0xbe,0x96,0x42,0xff,0xd1,0x57,0x70,0x28,0x0e,0x5a,0x6a,0x6e, +0xee,0xcb,0xb6,0x38,0x51,0xe7,0x72,0x6a,0x0a,0xef,0xc9,0x1e, +0x5d,0xf0,0x5c,0xc0,0x45,0xd1,0x4b,0xac,0x6d,0xb1,0x17,0xc1, +0x7d,0xb4,0x1a,0x8c,0x86,0x01,0x1d,0x38,0x80,0x4f,0xc7,0x4f, +0x68,0xbc,0xa5,0xdc,0x4d,0x2d,0xe2,0x29,0x1c,0x4d,0xc7,0x28, +0xa6,0x32,0x29,0x4a,0x07,0x3c,0x43,0x48,0x58,0x4e,0x4c,0xaf, +0x72,0x8a,0x28,0x44,0xa9,0xd1,0xb9,0x85,0x2a,0xc8,0x29,0x39, +0xd9,0x25,0x7b,0x7d,0xd1,0x6a,0x1c,0xb7,0x99,0x1e,0x6f,0x6e, +0x39,0x6c,0x8a,0x5b,0xc9,0x05,0x6f,0xd6,0x84,0x20,0x53,0x71, +0xd5,0x1c,0x3e,0x91,0xc1,0xf4,0x17,0xdf,0xc1,0x48,0x18,0x31, +0xee,0x21,0x0e,0xd5,0x74,0x0b,0x70,0xf4,0xe5,0xb6,0x8b,0xb2, +0xa1,0x88,0x82,0xaf,0x89,0xa2,0xde,0x4e,0x18,0x3e,0xf1,0xe5, +0x0b,0x12,0x3d,0x71,0x13,0x1f,0xa3,0xfa,0x24,0x4b,0x57,0x63, +0x1f,0x2e,0x26,0xb1,0x0c,0x74,0xbf,0xfc,0x16,0x66,0x83,0x48, +0x1d,0x7b,0x89,0xf0,0xd3,0xf9,0x38,0x16,0x17,0xe0,0x4a,0x29, +0x2e,0x7a,0x8e,0xbd,0x60,0x0e,0x7b,0x5d,0x65,0x84,0xe9,0xf9, +0x17,0xdc,0x1e,0xfa,0x45,0xf3,0xf9,0x1f,0x7f,0x6a,0xb6,0x1c, +0xc7,0x6e,0xa1,0xc7,0x99,0x5a,0x8e,0x24,0xf6,0xc9,0x4d,0x0d, +0x2a,0x15,0x63,0xa8,0x2e,0x65,0x2c,0xfa,0xde,0x20,0x73,0xf7, +0x39,0x8d,0xb5,0xdd,0xe3,0xa8,0x37,0x43,0x3b,0xef,0xf1,0x33, +0xf8,0xe8,0x7b,0xf3,0xf3,0x33,0x84,0x77,0xa1,0x6f,0x1d,0xad, +0x69,0x79,0x28,0x85,0xbe,0xb3,0xae,0xe3,0x68,0x1c,0x3d,0x4b, +0x17,0xfb,0xce,0xae,0x31,0xb9,0xb5,0x9a,0x8d,0xa2,0x67,0xac, +0x31,0xb7,0x1c,0x23,0xc5,0x8f,0x1e,0x4f,0x85,0x79,0x2c,0xaf, +0xa7,0x32,0xc5,0xae,0xec,0x26,0x89,0xb3,0x6f,0xd5,0x97,0x3d, +0x7f,0x5e,0xef,0xa1,0xcd,0xae,0xa7,0x17,0xda,0x79,0x4c,0x61, +0x51,0xa9,0x32,0xca,0xac,0xe6,0x21,0xd1,0x63,0x0f,0x2e,0xd5, +0xbe,0x7a,0x75,0xc9,0x61,0x0e,0xd1,0x63,0xb3,0xcd,0x1c,0x47, +0x11,0x34,0xb6,0x11,0xbd,0x87,0x13,0x35,0xc6,0xe1,0x28,0xe4, +0xbe,0x9e,0x09,0xea,0x5f,0x9d,0xaf,0x68,0x2d,0xe6,0x52,0xe2, +0x3d,0x50,0x77,0xf2,0x78,0x9c,0x8d,0x22,0x75,0xe8,0x25,0x82, +0x4f,0x3f,0x87,0xb1,0xb0,0x00,0x56,0x4a,0x61,0xd1,0x14,0xe8, +0x85,0x73,0x58,0x5d,0x15,0x81,0x1a,0xee,0x0d,0x35,0x02,0x8d, +0xec,0x1b,0x1a,0x89,0x7e,0xce,0x54,0xbb,0x4d,0xdc,0x1c,0x68, +0x13,0xdd,0x26,0x4e,0x0f,0xd1,0x91,0x59,0x44,0xbb,0x11,0x1d, +0x99,0x25,0x38,0x3d,0x1d,0x8a,0x91,0x4c,0x8a,0xb0,0x67,0xfa, +0x3f,0x28,0x3c,0x44,0xb8,0xfa,0x5a,0x0d,0xe8,0xfb,0x4f,0xe1, +0x23,0xf8,0x68,0x42,0x95,0x65,0x12,0x97,0x46,0x37,0xec,0xec, +0x2a,0x81,0xde,0x52,0x10,0x69,0x77,0xe1,0x60,0x16,0xaf,0x76, +0x87,0x88,0x1e,0x08,0x0e,0x51,0x88,0xe8,0x76,0xa5,0xcf,0x52, +0xce,0x8f,0x5e,0xea,0xe2,0xb3,0x80,0xc5,0x10,0xd1,0x62,0x15, +0xd8,0x2a,0x7a,0x50,0xe7,0xa1,0xcb,0xf9,0xd0,0xba,0xf6,0x1e, +0x73,0x58,0xdc,0x4a,0xe0,0x15,0x10,0xde,0x0d,0x79,0xde,0xfa, +0xf7,0x2a,0x6e,0xe9,0x69,0x6a,0x4e,0xa0,0xbe,0xdd,0x18,0x19, +0x4a,0xe7,0x3d,0x87,0xa9,0xdc,0x4f,0x34,0x4c,0xbd,0xfb,0x3d, +0x48,0xbf,0xbd,0xec,0x30,0x3f,0x87,0xbd,0x7a,0x9a,0xfa,0xc9, +0x79,0xc6,0x05,0x1c,0x2c,0x43,0x2b,0xa4,0xdf,0xa6,0xda,0x68, +0x1c,0x0a,0x82,0x9d,0x3c,0xae,0x06,0x7b,0x44,0x60,0x4e,0x54, +0xb7,0x2a,0xc4,0x41,0x3c,0x92,0x33,0x9a,0x73,0xb8,0x47,0xf4, +0xa0,0x7b,0x0c,0xc3,0xdf,0x03,0x5d,0x1a,0x98,0x47,0xb3,0x70, +0x1c,0x27,0xcc,0xa5,0x71,0xb3,0x66,0x21,0x43,0xe4,0x31,0x55, +0xad,0x4b,0x39,0x1a,0xf6,0xf3,0x03,0xba,0x94,0x03,0x20,0x89, +0x1f,0xdd,0xa5,0x5c,0xd7,0x1d,0x42,0x66,0xc1,0x48,0x35,0x12, +0x62,0x7d,0xdf,0x85,0xdf,0x43,0x32,0x3f,0xb0,0x4b,0xe9,0xde, +0x53,0xb8,0x8d,0xa0,0xf9,0xd1,0xed,0xfa,0xf6,0x83,0x5c,0x12, +0xf6,0xfa,0x9c,0x38,0x12,0x19,0x3a,0x60,0xb4,0x50,0x84,0x7d, +0xa7,0xda,0x92,0x40,0x73,0xec,0x94,0x6f,0x61,0x02,0x0b,0x22, +0xa2,0xc8,0xbe,0xfa,0x06,0xb8,0x97,0xd7,0x9d,0xe6,0x16,0x0a, +0xc9,0xc1,0xef,0x9c,0x27,0x5f,0x46,0x56,0x86,0xc4,0x75,0x47, +0x19,0xc6,0x63,0x3c,0x0c,0x41,0x29,0x98,0x73,0xaa,0x8a,0x65, +0x6a,0x0f,0x14,0x21,0x73,0xf0,0xb6,0x72,0x22,0xdc,0x9e,0xd3, +0x1d,0xf2,0x80,0x78,0xd2,0x13,0x45,0x42,0x71,0x07,0xce,0xe6, +0x9f,0xc2,0xec,0x0e,0xe5,0x44,0x3d,0x98,0xad,0x7c,0x8a,0xb3, +0xf5,0x88,0x8d,0x7c,0x46,0x66,0x85,0x0e,0x1c,0x51,0x3a,0xd2, +0x13,0x9c,0x9c,0xe7,0xcc,0x71,0x2b,0xbf,0xbc,0x91,0x5d,0x18, +0x49,0x69,0x64,0xdd,0x5c,0x0a,0x03,0x65,0x30,0xe4,0xe9,0x6d, +0xf8,0x84,0xe3,0x4f,0x93,0x96,0x2f,0xd5,0x20,0x9e,0xfe,0x3b, +0x61,0x84,0x1c,0xff,0x8b,0xfa,0x51,0x84,0x15,0xfc,0x1c,0x38, +0x06,0x57,0xa8,0x51,0x22,0xa2,0x8a,0x32,0x87,0xe1,0x10,0x2a, +0x8e,0xff,0x1b,0xe9,0x90,0xf4,0x75,0x80,0xd0,0xdf,0x47,0x31, +0x66,0x8e,0x40,0x1f,0xec,0x54,0x53,0xf4,0x49,0xa1,0x2f,0xa0, +0x98,0x04,0xe5,0x77,0x48,0xb8,0x7e,0xe7,0x02,0x88,0xa9,0x94, +0xee,0x3e,0xf7,0x14,0x21,0xd8,0x5b,0x84,0x2b,0x94,0xc3,0x85, +0xec,0xe4,0x0a,0x7e,0x38,0x85,0x2a,0xc2,0xd3,0xd0,0xa2,0xc6, +0x63,0x12,0xfd,0x00,0x27,0xc3,0x29,0xa5,0x07,0xf5,0x42,0x11, +0xa2,0xa9,0xc4,0x38,0xd1,0x1c,0x98,0x8c,0xa7,0x78,0x0f,0x6a, +0x9c,0xd0,0xa6,0x67,0x5e,0xd8,0xc2,0x27,0xa0,0x0e,0x3b,0x08, +0x3e,0xe4,0x8c,0xb6,0xe4,0xf8,0x04,0xd5,0x85,0x1f,0x60,0x81, +0x9c,0xc1,0x96,0xbb,0xa1,0x82,0xd2,0x89,0xdf,0xc0,0x84,0x1e, +0xb5,0x37,0xe1,0xeb,0x6f,0x40,0x0a,0xd2,0xaf,0x27,0xe0,0x84, +0x1e,0xb5,0x37,0x61,0xe2,0x04,0x94,0x12,0x91,0xa7,0xd4,0xe0, +0x2a,0x04,0xd1,0xf0,0xb7,0x5b,0x77,0x48,0x28,0x3c,0x44,0xfb, +0x2e,0xfe,0x8d,0xc3,0xc6,0x7f,0x4a,0x5a,0x10,0x91,0x34,0x2f, +0x03,0xce,0x86,0x36,0x70,0xf1,0x22,0x92,0x16,0x44,0x68,0xbb, +0xc8,0xf7,0x65,0x7e,0xd3,0xe5,0x46,0xe8,0x4b,0xe4,0x65,0xf1, +0x06,0x62,0x9e,0x9d,0x4f,0xfa,0x9e,0x65,0x41,0xb5,0x03,0x3f, +0x7d,0x26,0x02,0xad,0xac,0x9f,0x60,0x28,0xac,0x95,0x2a,0x2b, +0x88,0x5f,0xfd,0xbb,0x28,0xbc,0x41,0x91,0xcc,0x94,0x17,0x6a, +0xd0,0x01,0xa6,0x34,0xcc,0xc2,0x0e,0xea,0x6b,0x11,0x2e,0x84, +0x5b,0xd4,0x8f,0x87,0xce,0x5d,0x87,0x5e,0x52,0x90,0x68,0xdd, +0x20,0xb8,0xfe,0x11,0x56,0x7c,0x02,0xe1,0xc7,0xec,0x17,0x8f, +0x40,0xfa,0xda,0xf8,0x32,0x8e,0xcb,0x15,0x56,0x81,0x1a,0x77, +0xc8,0x2e,0xe7,0xba,0xf4,0x5e,0x7b,0xe9,0xd7,0xcf,0x2e,0xf9, +0x5b,0x56,0xb0,0xcd,0x55,0xd4,0x2d,0xab,0xb9,0x65,0x48,0xcb, +0x70,0xec,0x28,0x3d,0x54,0xc3,0x3e,0x37,0xcc,0x60,0x58,0x10, +0x77,0x69,0x13,0xf5,0x43,0x58,0x85,0xdf,0x62,0xe9,0x4c,0xb3, +0x65,0xa8,0x32,0x73,0x49,0xd1,0x55,0x3b,0x41,0x29,0x6b,0x5e, +0x7a,0xec,0x04,0xaa,0x32,0x55,0x45,0x0e,0xe9,0xb2,0x4b,0x79, +0x4b,0x07,0x12,0xba,0xc7,0x90,0xee,0xe9,0x37,0xcc,0x77,0xba, +0xfe,0x1d,0xf8,0x73,0xbc,0xfe,0x1c,0x22,0x39,0x38,0xd2,0x41, +0x87,0x4c,0x1b,0xd6,0xa1,0x0b,0x46,0xb2,0xbc,0xe3,0x1c,0xa5, +0x3e,0x8d,0xfe,0xd7,0xc7,0x82,0x13,0xe1,0x6f,0x8d,0x1a,0xec, +0x26,0x73,0x7e,0xaa,0x08,0x25,0x4a,0xc9,0x1c,0xdc,0x47,0xc6, +0x7a,0x2e,0x89,0x30,0x18,0x5e,0x42,0x4d,0x14,0xc1,0x4e,0xa2, +0x07,0x54,0xe1,0x9e,0xda,0x0b,0xbe,0x77,0x3b,0x64,0x53,0x89, +0xa2,0x2b,0x98,0xfd,0x0d,0xf1,0xbd,0x5f,0x88,0xc0,0xa2,0xe7, +0xa9,0xb9,0xf8,0xda,0x04,0x8f,0x51,0x71,0x22,0x03,0x38,0x36, +0x1d,0x5e,0x53,0x1a,0xa2,0xc9,0xf8,0xda,0x00,0x8f,0x53,0xf1, +0x22,0x33,0x38,0x3e,0x9f,0x94,0x4c,0x16,0x81,0x41,0x0f,0x94, +0x4a,0x35,0x70,0x87,0x8b,0x04,0x06,0xb8,0xe1,0x45,0xea,0xa5, +0x08,0xd3,0x88,0xa7,0x9f,0x08,0x0a,0x6a,0x82,0x08,0x9d,0xb1, +0x9c,0x3c,0x81,0xcb,0xa0,0x9c,0x40,0x80,0x38,0x54,0x62,0x9a, +0xb2,0x1f,0xd5,0x93,0x32,0xaf,0xa2,0x21,0x9d,0x37,0x16,0x1a, +0x79,0x22,0x2f,0xec,0x3f,0xed,0x05,0x3c,0xb9,0x83,0x74,0xa5, +0x19,0x85,0xe5,0x24,0x26,0xcc,0x20,0xa6,0xcf,0x43,0xc4,0x5b, +0xf1,0x77,0xa8,0x9b,0xca,0xbd,0x3a,0xbc,0x16,0xad,0xb4,0x54, +0xde,0xa1,0x16,0xf2,0x35,0x84,0x15,0x2e,0x9b,0x98,0xbb,0xcd, +0x05,0x2d,0x47,0xb8,0x54,0x91,0x73,0xea,0x51,0x9f,0x66,0x59, +0x4d,0x87,0x01,0x9c,0x15,0x81,0x48,0xeb,0x2a,0xca,0x34,0x8c, +0x9d,0x2c,0x7c,0xd8,0x6a,0x0f,0xaa,0xa6,0xb0,0x2c,0xe7,0xba, +0xec,0x79,0x95,0xdb,0x02,0xce,0x06,0xfb,0xd3,0x38,0x6b,0xbe, +0x95,0x86,0x46,0xa7,0x09,0x0c,0xe0,0xf6,0x5f,0x65,0x74,0x9d, +0x72,0x9a,0xb8,0xc3,0x74,0x43,0x4d,0xce,0x2b,0x22,0x37,0x53, +0x45,0x96,0x46,0xae,0x24,0x70,0xe2,0x73,0x09,0x93,0x87,0x3d, +0x81,0x3e,0xa0,0x0b,0x3a,0x33,0xa0,0x0f,0x0e,0xd3,0xb4,0x58, +0xb1,0x34,0x88,0x8b,0x85,0x9b,0x5a,0xdd,0x99,0x77,0x1e,0x27, +0x8b,0x0c,0xf3,0xcf,0xfa,0xdf,0x93,0x85,0x76,0x32,0x73,0x0c, +0x4a,0x3b,0x39,0x70,0xa3,0x5b,0xae,0x96,0x3f,0x78,0xd9,0x6a, +0x38,0x86,0x9d,0x46,0x6b,0x18,0x1b,0x6a,0x10,0x18,0x47,0x37, +0x31,0x7f,0xbf,0x5e,0x7b,0xbb,0x88,0xb3,0x2c,0xa6,0x4c,0x57, +0xd8,0xae,0xd0,0x95,0x61,0xef,0x65,0xed,0xdf,0x71,0x5f,0xd0, +0x2f,0xce,0xb6,0x43,0xef,0x6b,0x75,0x01,0xd6,0x87,0xd9,0x2b, +0xf9,0x54,0x97,0xff,0xd2,0x3a,0xec,0x2b,0xc3,0xe9,0x53,0xb0, +0xb7,0x90,0x60,0x7b,0x8e,0x7d,0x60,0x3a,0x71,0x2c,0x7c,0x36, +0x31,0xf7,0xce,0xe6,0x5f,0xce,0xe7,0x92,0x67,0xde,0x51,0x64, +0x6a,0xe1,0xcd,0x58,0xd1,0x95,0x20,0x8b,0x3c,0x4d,0x19,0x0e, +0x9b,0x41,0x1c,0x7e,0xd2,0xf2,0x09,0x69,0x39,0x8c,0x3b,0xdc, +0xc9,0x68,0x18,0x5f,0x7e,0xc9,0x3d,0xa5,0xbf,0x6f,0xbd,0xfc, +0xf2,0xc1,0x55,0x37,0x13,0x16,0xdd,0xe8,0xc5,0x06,0x9e,0x73, +0x08,0x12,0x3b,0x37,0x31,0xaf,0xef,0xd6,0x75,0x15,0x72,0x96, +0xa7,0x29,0xb3,0x20,0x6b,0xff,0x45,0x32,0xec,0x6b,0x74,0xed, +0x05,0x77,0x8c,0x9f,0x50,0x44,0xc3,0xe4,0x29,0x84,0xb6,0x71, +0x38,0x71,0x1c,0x81,0xb7,0x08,0x75,0x5e,0x62,0x5f,0x98,0xc2, +0x46,0xf3,0xb1,0xcc,0xf3,0x16,0xe3,0x31,0xdc,0x56,0xec,0x4a, +0xa5,0xbf,0x6b,0x6f,0xff,0x96,0xc0,0xd9,0xa7,0xc6,0x07,0xc0, +0x84,0x0e,0x9c,0x00,0xf3,0x84,0x53,0x7f,0x7a,0xe1,0x72,0xc7, +0xc5,0x44,0xed,0xe2,0xc7,0x7a,0xf0,0xb1,0x32,0x80,0x8c,0xd4, +0x01,0x33,0xe6,0xa9,0x49,0x23,0xaa,0x0b,0x91,0xab,0xad,0xef, +0xee,0x9c,0x82,0xd3,0x19,0x85,0x7b,0xb8,0xb8,0xcc,0x8c,0xf8, +0x23,0x44,0x93,0x3d,0xbc,0x01,0x7d,0xcf,0x85,0x54,0x7b,0xe7, +0x71,0xc5,0xa0,0xd2,0x31,0x85,0x76,0x8f,0x0c,0xf6,0xe4,0x36, +0xd2,0xe9,0x2b,0x7d,0xd3,0xdc,0x64,0x38,0x78,0xf6,0x22,0xec, +0xb3,0xf0,0xb4,0x65,0xf3,0x4a,0x2e,0x86,0xb6,0xdb,0xe8,0x11, +0x6c,0x23,0x5d,0x7e,0x38,0x34,0x67,0x03,0xbb,0x95,0xb6,0x59, +0xef,0x13,0x60,0x2e,0x9d,0x7d,0xdd,0x91,0x0c,0x85,0xfe,0x57, +0xf5,0xd0,0x87,0xc5,0x93,0x70,0x81,0x99,0xef,0x90,0xdf,0xc5, +0x9d,0xa4,0xbb,0x6a,0xf3,0x3e,0xbf,0x53,0xb3,0x42,0x87,0x5d, +0x49,0xeb,0x38,0xfa,0x6b,0xb1,0xe0,0x82,0xad,0x8c,0xa9,0x79, +0xd0,0x78,0x76,0xb6,0x68,0xba,0x4f,0x71,0x5d,0xc1,0xc1,0xe3, +0xa7,0xd3,0x39,0xb0,0x12,0x3d,0xc9,0x5d,0xe9,0x4a,0x78,0xda, +0x57,0x8d,0x1f,0x40,0x77,0x76,0xe4,0x77,0x3d,0xae,0x74,0x20, +0x1e,0xd8,0xc3,0x3b,0xf0,0x92,0x86,0xa1,0x8b,0xbb,0xb0,0xdf, +0x2c,0x07,0x6f,0xf3,0x60,0xf6,0xcd,0x00,0x8b,0x84,0x20,0x64, +0xa6,0xf0,0xf2,0xd3,0x71,0x12,0xd0,0x1e,0x7f,0xf3,0x8a,0xd3, +0x2a,0x12,0xd0,0xae,0x12,0x5e,0x71,0x2a,0xe9,0x9e,0xf9,0xcf, +0x6f,0x26,0xf8,0xc4,0x77,0x37,0xd3,0xfd,0x87,0x88,0xb9,0x5d, +0x50,0xd3,0xc9,0x29,0xfa,0x6b,0x75,0x2f,0xc0,0x21,0x44,0xdf, +0xf3,0x9f,0xaa,0x81,0x35,0xfd,0xc5,0x63,0xb0,0xc1,0x1c,0xea, +0x5b,0x11,0x51,0x5c,0x77,0xc0,0x0f,0x56,0x50,0xe3,0x45,0xb8, +0x9b,0x4c,0xce,0x58,0x7e,0x7b,0x4f,0xe7,0x8a,0xcf,0x88,0xb5, +0xe8,0xaf,0xb0,0xd3,0xea,0x36,0xa4,0x9d,0x72,0x84,0x7d,0xe4, +0xc1,0xbf,0x07,0xef,0xd6,0xfc,0x2b,0xf7,0x8a,0xdf,0xe0,0x2d, +0xdc,0x36,0xe7,0x5f,0x79,0x50,0x6c,0x3f,0xee,0x17,0x32,0x8c, +0xba,0x50,0x65,0x8a,0x8d,0x83,0x79,0x38,0x1b,0x2f,0xba,0xbd, +0xd2,0x28,0x77,0xb1,0x6c,0xb6,0x8f,0xab,0xcd,0x1a,0x2e,0xf6, +0x31,0x41,0x56,0xf4,0x1e,0xc4,0xbf,0x6d,0x27,0x68,0x98,0xf1, +0xaf,0xa0,0x2f,0x2c,0x82,0x45,0xa3,0x40,0x05,0xc7,0xe3,0xf8, +0x51,0xc4,0x18,0x2e,0xc2,0x45,0xaf,0x88,0x80,0x8c,0xe7,0xae, +0xa9,0x8c,0xd3,0x3f,0x0f,0x62,0xee,0x16,0x0d,0xe2,0xf6,0xf3, +0x2f,0x5e,0xb4,0x5b,0xa2,0x98,0xd5,0xa6,0x51,0xac,0x4f,0xbc, +0x2a,0x55,0x50,0xe2,0x72,0x06,0x6a,0x93,0xe9,0x37,0x53,0xe4, +0x77,0xa7,0xd1,0x63,0xad,0xee,0x28,0x11,0x6c,0x80,0xec,0x77, +0x4f,0x1f,0x85,0x37,0x5f,0xcc,0x68,0xcd,0xfc,0x7d,0x99,0x7f, +0x3b,0x2f,0xb0,0xf6,0x8e,0x08,0x05,0x28,0xef,0x96,0xff,0x50, +0x35,0x5e,0x85,0x6e,0x68,0x3a,0xfd,0x8c,0xed,0xb8,0x63,0x23, +0x9a,0xee,0xe0,0x6c,0xb7,0x8e,0x8b,0xfe,0xee,0x0d,0x9d,0xf1, +0x82,0x8b,0x72,0xa7,0xe5,0xa7,0x7b,0x0e,0x0d,0xa8,0x9a,0xc1, +0xb9,0xa5,0x52,0x3a,0x7b,0xbd,0x0e,0x35,0x4a,0xeb,0x4b,0xf3, +0x6f,0x5e,0xaf,0xf5,0x5f,0x71,0x9c,0xad,0xaf,0xa6,0x1a,0x5d, +0xcd,0xf2,0xa6,0xca,0x90,0x9a,0x65,0x37,0x5c,0xe3,0x96,0xd7, +0x0f,0x1b,0xb8,0x8a,0x68,0xea,0xf3,0xad,0xc7,0xfd,0xdd,0xa4, +0x56,0x2e,0xfe,0xf3,0x75,0x6d,0x73,0x1a,0x5d,0x59,0x2b,0x67, +0xca,0xa8,0xb6,0xdd,0xf3,0x15,0xd1,0xd7,0x63,0xc8,0xd0,0x09, +0x1f,0x9c,0x8c,0xeb,0xc0,0x71,0x30,0x41,0x77,0x14,0xed,0xbb, +0x65,0xb3,0x1f,0xab,0xa9,0x07,0x1f,0x29,0x19,0x91,0xc3,0x49, +0x61,0x30,0x79,0x9f,0xcd,0xcc,0xa3,0xda,0x92,0x8b,0x27,0x84, +0x89,0x2d,0x08,0xd2,0x00,0xd1,0x62,0x3d,0x7f,0x9d,0x99,0x2e, +0xb5,0xdf,0xb1,0xf0,0x50,0x0b,0x5f,0x12,0xef,0xa7,0x53,0x07, +0xfa,0x91,0x96,0xe5,0x6a,0xe0,0xcb,0x17,0x53,0x0b,0x84,0x5f, +0xd1,0xf3,0x0d,0x71,0x31,0xd1,0xdf,0x86,0xb0,0x18,0x7b,0x43, +0x3e,0x35,0x4f,0x04,0xbe,0xca,0x62,0xa2,0x45,0xfb,0xab,0xdd, +0x81,0xa3,0xe5,0x30,0x8d,0xe8,0xde,0x0a,0x9c,0x76,0x07,0x8f, +0x52,0xdf,0x89,0x60,0x34,0x79,0x6a,0xa1,0xc8,0x18,0x13,0xec, +0x48,0x10,0x10,0x2f,0x22,0x91,0xcb,0x22,0x48,0xa0,0x16,0x8b, +0x16,0x63,0x82,0x49,0x4f,0xc9,0x32,0x08,0x33,0x21,0x25,0x0b, +0x48,0x53,0x01,0x8a,0xe0,0x5f,0x4c,0x26,0x92,0x98,0x24,0x82, +0x91,0xb8,0x82,0xfa,0x4a,0x84,0x76,0x90,0x03,0xd6,0x70,0x80, +0x9a,0x2e,0x22,0xae,0xae,0xbb,0xa0,0x9a,0x87,0x91,0x90,0x90, +0x58,0x0d,0x1b,0x3c,0x84,0x2e,0xc4,0x2a,0xa8,0xf2,0xaa,0x64, +0xa0,0x6f,0x64,0x67,0x12,0xfd,0x0b,0xb1,0x8a,0xe9,0x94,0x96, +0x08,0xa5,0xca,0x81,0xab,0xe6,0x52,0xd1,0xa2,0x35,0xf7,0x51, +0x9d,0x1f,0x28,0xe0,0xe8,0xa6,0x3c,0xef,0x81,0x03,0xa9,0x59, +0x42,0xe2,0xd4,0x9e,0xf0,0xe6,0x36,0x0d,0xed,0xfc,0x54,0xea, +0x82,0x72,0x84,0x1e,0x34,0xd0,0xd8,0xac,0x1c,0x47,0x19,0x92, +0x89,0x91,0xcf,0x73,0x8c,0xaf,0x5f,0x6c,0xd4,0x0a,0xee,0x68, +0xc2,0xc9,0x1c,0xe9,0x37,0x09,0x30,0x39,0xe5,0xab,0xb4,0xf8, +0x56,0xc9,0xe4,0x28,0x1c,0x1f,0x33,0x3e,0x3e,0xf1,0x74,0x62, +0x49,0x52,0xae,0x69,0xa2,0x24,0x7e,0x45,0x9c,0x97,0xdc,0x53, +0x1c,0x25,0xb2,0x5d,0x92,0x90,0x68,0xc7,0xc9,0x4d,0xa9,0xf8, +0x73,0x1d,0xf2,0x7a,0x59,0xb2,0x48,0xbe,0x5c,0xee,0x1b,0x28, +0xc5,0x7e,0xce,0x9a,0x13,0xb1,0xb7,0x74,0xe6,0x79,0xab,0xc7, +0x24,0x42,0x50,0x81,0x29,0xe0,0x56,0xcb,0x3e,0x8b,0xa8,0xb7, +0xd1,0x96,0x8e,0x59,0x68,0x83,0x93,0xa3,0xd8,0x74,0x23,0x0a, +0x96,0xec,0x7c,0x7d,0x5f,0xd8,0xf7,0x91,0xb4,0x7f,0x8c,0x06, +0xec,0x02,0x2c,0x60,0x36,0x9d,0xdd,0x76,0x2b,0xee,0xa6,0x78, +0x57,0x6e,0x41,0x4a,0x81,0x6c,0xe7,0xae,0x1d,0xf2,0x9d,0x5c, +0xe8,0x14,0xdf,0x85,0xee,0xb6,0x62,0x0c,0x4d,0x64,0x6e,0x34, +0x5d,0xbd,0x77,0x9a,0x4d,0x9e,0xbd,0x67,0x4e,0x96,0xa1,0x38, +0x7c,0x65,0xd0,0x96,0x40,0x99,0x5d,0xe0,0xa9,0x06,0xa2,0x52, +0xca,0xf8,0x1d,0x8c,0x8b,0x6b,0xf4,0x56,0x77,0x2e,0x3f,0xa1, +0x2c,0xa1,0x9c,0x05,0x71,0x02,0x58,0xa5,0x42,0xbf,0x5d,0x04, +0x7b,0x14,0x6f,0x45,0xb3,0x68,0xec,0x17,0x9f,0x58,0x9b,0x54, +0x9b,0x7c,0xda,0x28,0x49,0x12,0xeb,0x11,0x67,0x1f,0x6f,0x2f, +0xde,0x20,0x32,0x9a,0x9b,0x98,0x68,0xd2,0xf3,0x2d,0x7b,0xfb, +0x7d,0x79,0x8b,0x6c,0x8f,0x48,0xee,0x28,0x77,0xf2,0x92,0xc6, +0xd1,0x38,0xda,0x6a,0x34,0xf6,0x43,0xa9,0x74,0x78,0xa7,0xd1, +0x4b,0x58,0x42,0x02,0x4b,0x2b,0x48,0xbd,0xc4,0x02,0x1d,0xda, +0x69,0x38,0x4a,0x8a,0x9f,0x4e,0xd0,0x43,0xf3,0x6d,0xec,0x01, +0x03,0x0a,0x7c,0x77,0xc3,0xe0,0xef,0x85,0x45,0xbb,0x17,0xe2, +0x94,0x6f,0xd1,0x83,0x1d,0x83,0x3c,0x13,0x79,0x6d,0xd3,0xab, +0xb8,0xef,0xc5,0x7b,0x4b,0x2b,0xd2,0x2a,0x65,0xfb,0xf6,0xee, +0x90,0xef,0xe3,0x02,0xf1,0x63,0xa7,0x31,0x96,0x06,0x62,0xcc, +0x3d,0xc0,0xbc,0xb8,0xf1,0xf8,0xef,0xb5,0x6c,0x32,0xf6,0x4e, +0xc7,0xde,0x47,0xe6,0x88,0x57,0x2d,0xf7,0xda,0xe0,0x25,0x33, +0xf4,0x38,0xdd,0x4e,0x9c,0xed,0xff,0xf2,0x62,0xae,0x97,0xdf, +0x82,0xb9,0x59,0x9c,0xd1,0x3e,0x0a,0x07,0xaf,0x0f,0xb3,0xf0, +0x97,0x19,0xbb,0x10,0x9f,0x71,0x57,0x02,0x57,0x90,0x78,0x2c, +0x21,0x83,0xd5,0x4b,0xa2,0x36,0xc8,0x03,0x03,0xa4,0x78,0xaf, +0x19,0x0d,0x80,0x66,0xf9,0x35,0x20,0x65,0xd6,0xc3,0x2c,0x2b, +0x98,0x34,0x1d,0xc4,0xd6,0xde,0x92,0x7b,0xd8,0xbb,0x01,0x87, +0xed,0xc7,0x89,0x62,0x55,0x78,0xb2,0x87,0xb9,0xdb,0x74,0x17, +0x3c,0x8f,0x73,0x4b,0xf7,0x53,0x38,0x2d,0x2c,0x68,0xb1,0x8b, +0x4c,0xdb,0x08,0x1c,0xe1,0x65,0x22,0x57,0x92,0x98,0x93,0x70, +0x88,0xd5,0x4d,0xa2,0xc2,0xe5,0x7e,0xbe,0x52,0xe5,0xb8,0x5b, +0x18,0x08,0x32,0x96,0xbf,0x01,0x9a,0x4c,0x04,0x58,0x6a,0x83, +0x39,0x11,0xf1,0x11,0x16,0xde,0x92,0x57,0xf8,0x59,0x27,0x2e, +0xca,0xc4,0xa5,0x62,0x55,0x85,0x0b,0x7f,0x9f,0xc1,0x01,0x07, +0x70,0xf8,0x1e,0x1c,0x9f,0xb8,0xdd,0x40,0x02,0xd3,0x40,0x7d, +0xf3,0x7a,0x18,0xc8,0xe1,0x23,0x65,0x13,0x03,0xc9,0x39,0xa0, +0xf6,0x14,0x46,0x4b,0xe1,0xe3,0x79,0x5d,0x48,0x7c,0x1d,0x95, +0x50,0x1f,0x1c,0xc5,0x1e,0x30,0xa4,0x4a,0x60,0x38,0xf4,0xce, +0xee,0x92,0x3d,0xaf,0x73,0x9e,0x4b,0xe2,0xff,0xde,0x4b,0x71, +0x55,0x08,0x71,0xd4,0x93,0x84,0x68,0x4b,0xe3,0x20,0x2e,0xd8, +0x8f,0x4b,0x13,0xb7,0xeb,0x4b,0xc0,0x42,0x0e,0xb3,0x36,0xc2, +0xe8,0x70,0xb1,0xf2,0x19,0x9e,0x60,0xaa,0x40,0x1b,0x64,0xc7, +0x9f,0xca,0xa0,0xff,0x65,0x53,0xe2,0x5d,0xe3,0x80,0x69,0x58, +0xe2,0xcb,0x65,0xea,0x53,0xd0,0x5a,0x02,0xe3,0x80,0x02,0x6d, +0x29,0x4c,0x18,0xf7,0x04,0x67,0x8c,0x46,0x59,0xb0,0x0b,0x2e, +0x26,0x0a,0xcb,0x99,0x7f,0xca,0x60,0x9f,0xfd,0x38,0x22,0x1d, +0xd5,0x52,0xb7,0x1b,0x4b,0x60,0xe8,0x76,0x18,0xbe,0x11,0x7a, +0x6d,0x10,0xc3,0x30,0xe5,0x3a,0x66,0x83,0xbd,0xe7,0x76,0x77, +0x99,0xd1,0xfa,0x83,0x8f,0xe5,0x5c,0xeb,0xda,0x3c,0xb7,0xd0, +0x75,0x9b,0x36,0xac,0x61,0xe3,0x92,0xc0,0x0b,0x8c,0xa8,0x46, +0xa5,0xaf,0x11,0xfc,0x4c,0x2b,0xb5,0x94,0xe2,0x72,0x87,0x57, +0xcf,0x9a,0x6a,0x4a,0x0b,0xd4,0x0b,0xca,0x0a,0x33,0x4e,0xc8, +0xf2,0x76,0xaf,0xb7,0xe0,0xc6,0x27,0x94,0xb9,0x7e,0x25,0xab, +0x6b,0xda,0xb9,0xb7,0x9c,0xa0,0x1e,0xad,0x88,0x61,0x50,0x9a, +0x89,0x0b,0x32,0x70,0xda,0xce,0x28,0x81,0x13,0x51,0xb0,0x30, +0x12,0x86,0xae,0x13,0xc3,0x22,0xa5,0x82,0x89,0x5c,0x66,0xbf, +0x6d,0x99,0x6c,0xc6,0xba,0xdc,0x1f,0xe5,0xdc,0x23,0x79,0x70, +0xae,0x8b,0x2c,0xd4,0x7b,0x53,0x98,0x3f,0x17,0x9b,0x02,0xfb, +0x61,0x1d,0x75,0x5e,0x79,0x6e,0x29,0x6f,0x43,0x2b,0x8f,0x28, +0x7d,0x2b,0x05,0x27,0xbe,0xcf,0x95,0x8b,0x75,0x67,0xd4,0x6b, +0xce,0x57,0x64,0xe4,0xca,0xca,0x32,0xc3,0xb5,0x38,0xec,0x97, +0x50,0x63,0x07,0x94,0xac,0xf9,0xf2,0xae,0xf4,0x7a,0x22,0xe0, +0x97,0xe0,0x29,0xe3,0xe6,0x11,0xb3,0xcd,0x8b,0x83,0xfe,0x74, +0x53,0xd2,0xd9,0x94,0x8a,0xd4,0xe8,0x4b,0x12,0xb7,0x68,0xbb, +0x18,0x9b,0x38,0x31,0x0c,0x31,0x46,0x09,0xbd,0x38,0x4e,0x5f, +0x6e,0x9f,0x20,0x36,0xa7,0xeb,0xe2,0xdb,0x13,0x3a,0x93,0xc4, +0xa4,0x08,0x07,0xba,0xcd,0xd1,0x9c,0x22,0x9d,0x79,0xcf,0xad, +0xf9,0x7e,0xe9,0x99,0xfb,0x2c,0xe8,0xd1,0xbb,0x4b,0xce,0xa4, +0x96,0xcb,0x80,0xbe,0xe6,0xb0,0x40,0xdb,0xc3,0x63,0x91,0x97, +0xf7,0xce,0x0c,0x2f,0x2e,0xd2,0x98,0x8a,0x3c,0x53,0xb9,0xad, +0x4a,0x06,0xa2,0x8e,0x4e,0x10,0x81,0xca,0xa8,0x9b,0x38,0x9e, +0x3b,0x07,0xa6,0x4c,0x47,0xc0,0x6d,0xbb,0x06,0x97,0xc2,0x06, +0x89,0x6d,0xb5,0x76,0xdd,0x92,0x3c,0x31,0x16,0x2a,0xb7,0x33, +0xee,0x11,0x11,0x5e,0xce,0x01,0xa7,0x4a,0xcf,0x37,0x9d,0xbd, +0x57,0x40,0x34,0x64,0x27,0x6f,0xcc,0x58,0xd9,0x44,0x6f,0x76, +0xe0,0x60,0x3a,0xdd,0x9e,0x7c,0x39,0xb5,0x69,0x67,0x74,0xab, +0x64,0x59,0x94,0x71,0xb4,0x61,0xac,0x18,0xa6,0x2f,0xc5,0xd9, +0xf4,0x8c,0xd8,0x59,0x72,0xe3,0x04,0xb1,0x09,0xdd,0x1a,0xff, +0x28,0xe1,0x49,0xb2,0x18,0x75,0x88,0xf7,0x6f,0xab,0x31,0x8a, +0x68,0x89,0x91,0xdf,0xd8,0xdd,0xf8,0xae,0xa6,0xe6,0x25,0x0b, +0xa1,0xf4,0xbe,0xda,0xc6,0xb4,0x73,0x32,0x98,0xf0,0xd0,0x60, +0xc2,0x28,0x4b,0xfb,0x29,0x4e,0x2e,0xbb,0xb2,0x1c,0xb8,0x75, +0x4b,0xa9,0xf0,0xfa,0xb3,0x5b,0xcf,0xca,0x40,0xfd,0xc9,0x7d, +0x22,0x48,0x43,0x71,0xc0,0xd7,0x68,0xc1,0x7d,0x0e,0xdb,0x98, +0xfb,0xde,0xcf,0xcd,0x5a,0x97,0x15,0x9f,0x93,0x18,0x9f,0x9d, +0x7a,0x71,0x4e,0xa9,0x18,0x5f,0x28,0x7f,0x60,0xac,0x42,0x42, +0x6c,0xed,0x6d,0x73,0x9a,0x6f,0x5d,0xef,0x84,0x3e,0xe5,0xc4, +0x18,0xfe,0xcc,0xdf,0x63,0xd2,0xdb,0xd2,0x3b,0xd2,0x6f,0xe9, +0xef,0x93,0xac,0x9f,0xb3,0x5e,0x3b,0x72,0x09,0xfa,0xac,0x93, +0xa4,0x1a,0x82,0x59,0x86,0x3d,0xda,0x5b,0xe0,0x84,0x45,0x38, +0x55,0xfd,0x4a,0xf0,0x6d,0x98,0x77,0x11,0x66,0x36,0x82,0x9f, +0xfa,0xbd,0x9d,0xd4,0xb7,0xbb,0x72,0xbd,0xb4,0xa5,0xf8,0x24, +0x28,0x6c,0x4e,0xa0,0x5b,0x72,0x9a,0x3b,0x1b,0x6b,0x48,0x6d, +0xaf,0xac,0x8d,0x29,0x91,0xc1,0xa7,0xe5,0xb5,0x3c,0x05,0xaa, +0x66,0xc4,0xc1,0xdd,0xcc,0x41,0x45,0x11,0x73,0x0b,0x3f,0x6a, +0xc0,0xbf,0x9d,0xc2,0x91,0x97,0x33,0x25,0xc4,0x43,0xb3,0x01, +0x76,0x21,0x7c,0x4c,0xa6,0x4b,0x97,0xe2,0x2a,0x53,0x6c,0x5f, +0x68,0x7a,0xc2,0xb6,0xfe,0xb8,0x24,0xa4,0xde,0xbb,0xc5,0xb7, +0x4e,0x1c,0x85,0x2b,0x99,0xd5,0x0d,0x5e,0xad,0x7e,0x75,0x36, +0xc1,0x92,0x22,0x87,0x22,0x93,0x63,0x36,0x62,0xe5,0x2a,0xff, +0x77,0x22,0x68,0xd7,0x83,0xa0,0xce,0x5f,0x40,0xb0,0x51,0xce, +0xb4,0x62,0xdf,0x4a,0x1c,0x74,0x1c,0x19,0x82,0xe0,0x4a,0xf8, +0xcc,0x19,0x3e,0x31,0x06,0x91,0x58,0x95,0x5f,0x7b,0x92,0xc1, +0xf1,0xf3,0x8b,0xae,0x5d,0xbd,0x58,0x4a,0xa2,0x7b,0xea,0x55, +0x84,0xe3,0x63,0xae,0x36,0xc7,0xbb,0xcd,0xbb,0xcb,0xe7,0xb6, +0xfa,0xf5,0x9d,0x37,0xf7,0xdc,0xda,0x1f,0x75,0x59,0x32,0x77, +0xfd,0xec,0x2d,0x5a,0x51,0x11,0x65,0xeb,0xca,0xd6,0x95,0xdf, +0x4f,0x7b,0xb6,0xe7,0x69,0x7a,0x54,0x9b,0x64,0x7c,0xe4,0xf8, +0x2d,0xb3,0xa2,0x22,0x2b,0xd6,0x57,0x6c,0xa8,0x30,0x8e,0x94, +0xec,0xf7,0x48,0xf7,0x4c,0xf7,0x12,0xc7,0x1a,0x59,0xc7,0x7b, +0xc9,0x2c,0x8d,0x77,0x24,0x11,0xbb,0x60,0x48,0xc5,0xd7,0xb5, +0xcb,0x9b,0x64,0x15,0xad,0x49,0xa9,0x37,0xb8,0x4c,0xd7,0x4c, +0x8f,0x4c,0x62,0x35,0x46,0x4f,0x8f,0xb3,0x92,0x19,0x2d,0x4a, +0x4c,0xb2,0xe7,0xe4,0x4b,0xa9,0xb8,0xda,0x5b,0xf2,0xcb,0xb2, +0xdb,0x5f,0x27,0xef,0x7a,0xc5,0x15,0x2c,0x2a,0x30,0xce,0x71, +0x8c,0x8d,0x95,0xd4,0x1a,0xcd,0xc8,0xc3,0x81,0x32,0x9c,0x36, +0x63,0xc9,0x48,0xa4,0x5e,0x99,0x83,0xe3,0xeb,0x57,0x7b,0x8f, +0xbc,0xe2,0x36,0xb7,0x50,0x61,0xe3,0xc7,0x6f,0x19,0x4e,0x6c, +0xfc,0x5d,0xc5,0x0d,0xe6,0xa4,0xdb,0x09,0xdb,0xc3,0x0e,0x0d, +0x47,0x25,0x61,0x35,0x41,0x0d,0xab,0xca,0xc5,0xc1,0x68,0xcb, +0x84,0x55,0xaf,0x6c,0x0c,0x29,0xb7,0x0e,0x95,0x9c,0x70,0x3d, +0x61,0x77,0xc8,0x51,0xdc,0x81,0x43,0x99,0xb9,0x1b,0xe6,0x6c, +0x26,0xf8,0x9f,0x89,0x38,0xb3,0xae,0xa2,0x35,0xf5,0xea,0xce, +0xf6,0xdd,0xdb,0x5a,0x25,0x8b,0xb6,0xe8,0x6c,0x5b,0x1a,0x13, +0x59,0xfe,0xfe,0xf8,0xbb,0x1c,0x74,0xcf,0xf4,0x10,0x47,0x8d, +0xfa,0x1d,0xfc,0x3f,0x27,0xf8,0xff,0xc8,0xe5,0xeb,0xe6,0x9b, +0xbc,0x1f,0xfe,0xbf,0xc7,0xf4,0x56,0xef,0xeb,0xcb,0x09,0xd3, +0xd3,0x6e,0x10,0xa6,0x13,0xd9,0xa9,0xde,0xc5,0x28,0xfd,0xe1, +0x67,0x2a,0x22,0x7d,0xeb,0xee,0x03,0xd2,0x03,0x3b,0xf7,0x1c, +0xd8,0xcb,0xf2,0xf3,0xa0,0xd9,0xed,0x82,0x52,0x0f,0x3b,0xa9, +0xa0,0xb0,0xf0,0x95,0xbe,0x52,0xaf,0x23,0x21,0x85,0xc1,0x2c, +0xbf,0x92,0x04,0x8c,0xaa,0x8a,0xac,0x0f,0x7c,0x02,0xb4,0xf9, +0x14,0x26,0xa8,0xd6,0xed,0xa2,0x77,0x95,0x5d,0x90,0xa4,0xcc, +0xa9,0xcc,0x22,0xc7,0x41,0x6c,0x13,0xc4,0x04,0xd5,0xb9,0x5d, +0xf2,0xae,0xb6,0x0b,0x90,0x94,0x92,0xa2,0x53,0x76,0x04,0x97, +0xbd,0xc4,0xbc,0x9e,0x4b,0x6a,0x4c,0xaa,0x4e,0x89,0xbd,0x2c, +0x71,0x23,0x2a,0xc7,0x22,0x6e,0x3b,0xac,0x93,0x18,0xc8,0x77, +0x62,0xe4,0xa8,0x38,0xec,0xb3,0x63,0x6a,0xb2,0xba,0xdc,0xf0, +0xeb,0x38,0xe8,0x25,0xff,0x31,0x49,0x3d,0x05,0x87,0xa5,0xa1, +0xbb,0xee,0x02,0xb4,0x72,0x53,0x3f,0x69,0x08,0xcb,0x2b,0x9f, +0xbf,0x8e,0x82,0x28,0x75,0x65,0x19,0x26,0x30,0xd1,0xf5,0xf1, +0x17,0x3b,0xa4,0xc0,0x1d,0x80,0x85,0x45,0xa0,0xc9,0x1a,0xec, +0xa6,0x7c,0x71,0x51,0x24,0x6a,0xe1,0x68,0xe9,0xe8,0xbd,0xc3, +0x0e,0x61,0x6f,0xb6,0x33,0x35,0xfe,0x80,0x3c,0x33,0xe9,0xa0, +0xfa,0xae,0xcb,0x87,0x2f,0x5f,0x04,0x55,0xeb,0xe3,0x12,0xb7, +0xc9,0x5b,0x8d,0x63,0x9c,0x08,0x1e,0xaf,0x15,0x97,0x99,0xe3, +0x8e,0x47,0x2c,0x0f,0xda,0x9e,0xcd,0x92,0xac,0x6b,0x08,0x39, +0xbf,0xba,0x46,0xec,0x8a,0x76,0x4c,0x64,0x7d,0xc8,0x85,0xd0, +0x5a,0xcb,0x70,0xc9,0x51,0x87,0x23,0x96,0x99,0x76,0xe2,0x67, +0xf6,0x8c,0x7d,0x8c,0x69,0xac,0x21,0xc1,0x32,0xb2,0x07,0xcb, +0xf5,0x94,0xdc,0xdb,0x6b,0x87,0xb7,0xcc,0xda,0x22,0x21,0xd1, +0xb1,0x67,0x60,0xeb,0x2f,0xc9,0xcf,0xcb,0x8a,0x8b,0x77,0x24, +0x14,0x73,0x29,0xc8,0x11,0x7c,0xf5,0x17,0xa0,0x65,0x0f,0xbe, +0x3e,0x95,0x4f,0x7a,0xf0,0x8d,0x81,0x91,0xad,0x89,0xcd,0xc9, +0x67,0x53,0xd4,0xbb,0xcd,0x95,0x1a,0xef,0x87,0xf9,0x3e,0xf9, +0xe1,0xa4,0x8c,0xdf,0xc1,0x1c,0x36,0x2a,0x06,0x31,0x60,0xb7, +0x17,0x6c,0x76,0x80,0x7e,0x54,0xe2,0x35,0x09,0x2e,0x4d,0x43, +0xbb,0x1d,0x68,0xb7,0x55,0x0c,0x95,0xdd,0x76,0xcc,0x6b,0x18, +0xbc,0x27,0xeb,0x39,0x17,0xd5,0x41,0x85,0x8f,0xc7,0x01,0x5b, +0x34,0x64,0x68,0x3d,0xad,0xf6,0x76,0x4d,0x5e,0x43,0xe3,0x59, +0xce,0xbc,0x84,0x32,0x31,0x59,0xbe,0x64,0xa9,0x14,0x07,0x82, +0x48,0x17,0xb6,0x13,0x85,0xb6,0xf2,0x9d,0xd0,0x14,0x46,0x58, +0xc8,0x04,0xd7,0x79,0x5c,0x5a,0x5e,0x63,0x17,0x2c,0x29,0x71, +0x28,0x31,0x3b,0x65,0x2f,0xb6,0x5e,0xc5,0xac,0xaa,0xf7,0x68, +0x5e,0x5e,0x63,0xbb,0x92,0x14,0x9d,0x36,0x3f,0x4e,0xdc,0xa9, +0x68,0x7c,0xfe,0x81,0xbd,0xf2,0x36,0xd0,0xc4,0xfc,0xf4,0x7a, +0x8d,0xfe,0x57,0xdc,0xb9,0x62,0x8b,0xef,0x6c,0x5f,0x39,0x42, +0x1f,0xf5,0x1b,0x69,0x37,0x76,0xdd,0xd9,0x1b,0x75,0x55,0x32, +0x6b,0x93,0xe6,0x56,0xcd,0xe8,0xd0,0xf3,0xa1,0x17,0xd7,0xb6, +0x1a,0xac,0x93,0x64,0x59,0x1c,0xb2,0xca,0xb6,0x21,0xca,0x6e, +0x08,0x0e,0x8d,0xc7,0xb1,0x32,0x03,0x1a,0xa6,0x03,0x9b,0xb8, +0x1b,0x38,0xae,0x62,0x58,0xd5,0xa4,0x1a,0xcd,0x98,0x58,0xc9, +0x35,0x6d,0xcd,0x53,0x28,0x96,0xe1,0xcc,0xb1,0x3a,0xa8,0x8a, +0xb2,0x1f,0x8d,0x60,0xfd,0x37,0xd0,0x77,0x4f,0xfa,0x75,0x6e, +0xeb,0x65,0x6a,0xe3,0x92,0x91,0x5b,0x66,0xc8,0xd0,0x72,0x5e, +0xf1,0x57,0xf7,0x3b,0xaa,0x61,0x30,0x31,0xb9,0x0f,0x15,0x95, +0x4c,0xae,0x43,0x8e,0xc5,0x11,0xdb,0x86,0x23,0x92,0xd0,0xfa, +0x80,0x4b,0x81,0x35,0x62,0xa5,0x9b,0x32,0xef,0xd7,0x48,0xfd, +0xe0,0x08,0x7d,0xd5,0xeb,0x92,0xeb,0x52,0xeb,0xd3,0xb6,0x5e, +0x95,0x58,0x46,0x59,0x45,0x5b,0xc5,0x12,0xa4,0x2e,0xad,0x6d, +0x79,0x37,0x52,0xbb,0x04,0xa4,0x86,0x57,0x4f,0xaa,0xfe,0x70, +0xa4,0xa0,0x82,0x0f,0x62,0x72,0x1c,0x72,0x2d,0xb2,0x6d,0xce, +0x1e,0x91,0x84,0xd5,0xaf,0x68,0x0e,0xaa,0x21,0xa3,0x9d,0x00, +0xb9,0x0c,0xba,0x6e,0xfd,0x7a,0x1c,0x2c,0x96,0x81,0x1d,0x7c, +0x4c,0xfc,0xc7,0xd8,0x73,0x9c,0x7e,0x16,0x85,0xe1,0xcb,0xc6, +0x8c,0x14,0x7e,0x71,0x1e,0xb2,0xf4,0x1a,0x4c,0xdd,0xc9,0x1d, +0xe7,0x0f,0xe8,0x26,0x12,0xcf,0x7f,0xe3,0x87,0x3d,0xc0,0x3f, +0xc2,0x85,0xef,0x33,0xca,0xaa,0x3f,0x4f,0x55,0x2c,0x60,0xf0, +0x3a,0x7c,0x62,0x80,0x9f,0x28,0xdd,0x8d,0x79,0x77,0x1c,0x1b, +0x23,0x3a,0x1e,0xe1,0x95,0xe1,0x21,0x9b,0xb9,0xd4,0x6c,0xd8, +0x88,0x0e,0xcb,0xbb,0x97,0x6a,0x73,0x1b,0x0f,0x71,0xa9,0xa2, +0x44,0x9c,0x34,0x4f,0x07,0x8d,0xb7,0xef,0x27,0x6e,0x98,0xe3, +0x4e,0xa0,0xbe,0x04,0x3b,0xe9,0xb9,0x6d,0x15,0x1b,0x4a,0x59, +0xf0,0x87,0xeb,0xb4,0x32,0x5c,0x29,0x62,0xac,0x7c,0x0a,0x5b, +0xdb,0x8a,0x8b,0x2f,0x9c,0x3b,0xe3,0x6e,0x9d,0xc0,0xc5,0x99, +0x7a,0xb8,0x5b,0x26,0x90,0x69,0xf9,0x95,0xe2,0x3b,0xe6,0x84, +0xcb,0x51,0x9b,0x43,0xf6,0x67,0x0f,0x4b,0xc2,0x6b,0x57,0x9d, +0x0d,0xa9,0x14,0xdb,0xa3,0x0e,0x13,0x51,0xb3,0xaa,0x69,0x4d, +0xa5,0x65,0xa8,0xe4,0x98,0xeb,0xb1,0x65,0x07,0x1d,0xc4,0x78, +0x0c,0x68,0x06,0x87,0xbd,0x41,0x44,0x3d,0x86,0xfe,0x60,0x44, +0x1c,0xe1,0x7a,0x2b,0xa1,0x66,0x18,0x8d,0x73,0x88,0xbb,0xf9, +0xfb,0xd8,0xf0,0x71,0x4d,0x0c,0xaa,0x38,0x9c,0x7c,0x95,0xc0, +0x25,0x42,0x07,0x3c,0xde,0x45,0x25,0x18,0x27,0x58,0xd8,0x4b, +0x97,0xc7,0xc4,0xf8,0xae,0xb4,0x4c,0xdd,0xa9,0xcb,0xc6,0x19, +0x51,0x5b,0xef,0x37,0xc4,0x14,0xc9,0x6e,0x1c,0xc9,0xba,0x5d, +0x23,0x6f,0x93,0x77,0x72,0x9d,0x89,0x57,0x12,0xcf,0x27,0xc8, +0x2f,0x4b,0x2c,0xe5,0x4b,0xe3,0x17,0xc7,0xcb,0xdb,0xe3,0x3b, +0xe3,0xdb,0x0d,0xe4,0x92,0x44,0xfd,0xc4,0xc5,0x09,0xfa,0xf8, +0x68,0x9b,0x24,0x01,0x7c,0x28,0x3d,0x91,0x1c,0x7d,0xd1,0x29, +0x3a,0xd1,0xe0,0x5c,0xe2,0x95,0xa4,0xeb,0x89,0xea,0xf1,0x78, +0x8d,0xc2,0xb1,0xf2,0x1b,0x8e,0x30,0x4d,0x06,0xbd,0x61,0xc0, +0xae,0x2c,0xe8,0xc5,0x45,0x5d,0xa1,0xc2,0x49,0x98,0x3c,0x28, +0x6a,0x22,0x31,0x53,0x0a,0x61,0x4d,0xbb,0xf7,0xd0,0x58,0xaf, +0x2d,0x18,0x53,0xb9,0x5e,0xfc,0xa2,0x7f,0xeb,0x5a,0x6f,0x58, +0x3c,0xaa,0xc4,0x8d,0x88,0x23,0xbd,0x4b,0xde,0xf4,0xee,0xf8, +0xb6,0xf7,0xce,0x5f,0x7a,0xbf,0xf9,0xae,0xde,0x51,0xc5,0xfe, +0x9f,0x5c,0xb8,0xfd,0x2b,0x2e,0x04,0xfd,0x8a,0x0b,0x55,0xff, +0xc2,0x85,0x1b,0x89,0x1d,0x89,0xcd,0xc2,0x80,0x0e,0x3b,0xc5, +0xe0,0x44,0xe3,0xa2,0x2f,0xbe,0x7a,0x71,0x03,0x8c,0xce,0x73, +0x25,0xfb,0x6a,0x53,0xa0,0x5f,0x92,0xbc,0x4d,0x42,0x64,0x14, +0x2d,0x37,0xa3,0xd6,0x7a,0x18,0xf9,0x14,0x34,0x5e,0x7d,0xd1, +0x25,0x6e,0xa3,0x95,0xb1,0xb1,0x09,0x46,0xbc,0x46,0xca,0x34, +0x03,0x1c,0x3b,0x02,0x75,0x47,0xa9,0xe3,0xd8,0xf5,0xc9,0x4b, +0xc1,0xf4,0x10,0xe8,0x1e,0x80,0x25,0xfb,0xc8,0x38,0xe3,0xc8, +0x20,0xec,0x37,0x15,0x55,0xa4,0xa8,0xf6,0xb5,0x19,0xd8,0x9e, +0xae,0x4b,0x4a,0x29,0x66,0xe3,0x3a,0xa8,0x68,0x4f,0xe7,0x38, +0x6f,0xc2,0x24,0x4b,0x7e,0x30,0xf3,0xbf,0xdb,0xc7,0xaf,0xa9, +0x81,0x61,0x70,0x9d,0x29,0x70,0xc9,0x5b,0x76,0xdc,0x41,0xf0, +0xca,0x6a,0xfc,0x9a,0x56,0x54,0x8a,0x37,0xa3,0x27,0xb3,0xba, +0xd6,0xaf,0x29,0xa0,0x92,0x78,0x65,0x79,0xae,0x05,0xcb,0x8e, +0x38,0x10,0x51,0x7a,0xa0,0x98,0xcc,0x2c,0xdd,0xa6,0x1b,0xbd, +0x38,0x76,0x57,0xfd,0xae,0xba,0xb4,0x5a,0x83,0xdd,0x92,0x28, +0xdb,0x6d,0xd6,0x5b,0xac,0x17,0xc7,0x1b,0xec,0xb0,0x4c,0x14, +0x1b,0xd1,0x67,0xe5,0x2d,0x3b,0xae,0x24,0x78,0xa3,0xa5,0x35, +0x3a,0xe9,0xa1,0xde,0xd5,0x50,0x49,0x07,0x98,0x9f,0x07,0xcf, +0xd3,0xe0,0x78,0x2b,0xe9,0xf3,0xd4,0x1b,0xbb,0xc5,0x0b,0xd0, +0x86,0x01,0x71,0x26,0x7c,0xba,0x1f,0x98,0xd4,0x58,0x42,0x1e, +0x13,0x8d,0x1f,0x6f,0x42,0xd5,0x75,0x62,0x7e,0x8c,0x72,0x38, +0xb3,0x69,0xf1,0xec,0x28,0x1d,0x32,0x54,0x76,0xf9,0xad,0x45, +0xfb,0x4b,0x0e,0x9e,0xe6,0x4c,0xb3,0xa8,0x35,0xce,0x1b,0x1c, +0x1c,0xa4,0x63,0x3f,0xb7,0x81,0x09,0x37,0xbe,0xde,0xb9,0xef, +0x1a,0xab,0xfa,0xf3,0x62,0xc5,0x10,0x66,0x4d,0xbd,0x5f,0xf3, +0x8a,0xda,0x65,0xab,0x25,0x05,0xf6,0x79,0x66,0xc7,0x88,0x0e, +0xbf,0x5c,0xf6,0x97,0xb1,0x83,0x04,0xb5,0xd0,0x06,0xdf,0x96, +0x80,0x3a,0xeb,0x10,0x49,0xbe,0x7d,0xbe,0xd9,0x61,0x1b,0x31, +0x1e,0xc6,0xf9,0xef,0xc0,0x98,0x84,0x36,0xb3,0x99,0xff,0x01, +0xd7,0xa8,0xcb,0xd4,0x1b,0x9a,0x54,0xf9,0xa7,0xfc,0xdf,0x18, +0x54,0x9b,0xea,0x35,0x5b,0x9f,0x8b,0x4e,0xcc,0xef,0xca,0xfd, +0xfe,0x14,0x88,0xd5,0xa1,0x5f,0x22,0xcc,0xdd,0x05,0xf3,0x0e, +0x45,0x5d,0x91,0xe0,0xf4,0x08,0x1c,0xb7,0x0d,0xe9,0xf8,0xbd, +0xf5,0xfb,0xce,0xee,0x39,0xa7,0xbf,0x47,0xb2,0xd9,0x7c,0xb3, +0xe5,0x46,0x4b,0xf1,0x9c,0x05,0x3b,0x92,0xb5,0x39,0xb9,0x3e, +0x15,0xd7,0xd9,0x25,0xbf,0x29,0x0b,0xc0,0x41,0xde,0xd8,0xcf, +0x09,0xfb,0x5c,0x5d,0x2b,0x79,0xd5,0x09,0xfd,0x0a,0xa1,0x9f, +0x0c,0x86,0x5c,0xf7,0x9a,0x20,0xfc,0x96,0xec,0x8e,0x7a,0xb6, +0x0b,0xd3,0x0e,0xcc,0xe5,0xb6,0xeb,0x53,0x9b,0x1e,0xdd,0x8d, +0x6a,0x96,0x41,0x00,0xa8,0x5f,0x85,0x49,0xa0,0x36,0xba,0x1d, +0xa7,0x10,0xc3,0xf1,0x48,0x71,0xe6,0x37,0x86,0x03,0xdb,0x95, +0x66,0xbf,0x45,0xee,0x75,0x22,0x8c,0x4a,0x83,0x71,0x19,0xc4, +0x76,0x20,0xb7,0x01,0xd5,0xa2,0x46,0xfd,0xaf,0xa2,0x06,0x13, +0xf8,0x01,0x82,0xf9,0x30,0xcf,0xb6,0x25,0xe6,0x63,0x6d,0xbd, +0xff,0xa5,0x95,0xb5,0x44,0xec,0x3e,0x71,0x65,0xe0,0xe2,0x29, +0x21,0x94,0x36,0x97,0xc2,0x88,0xd1,0xcf,0x70,0xea,0x70,0xfc, +0x5b,0x80,0x25,0x1a,0xb2,0x59,0x86,0xd4,0x05,0x30,0x84,0x4f, +0x72,0x5e,0x90,0xa0,0xb8,0xdd,0x6c,0xa4,0xb0,0xbe,0x9d,0xc6, +0x48,0x03,0xcc,0x5b,0x25,0x56,0xed,0xe2,0xa3,0x99,0x4e,0x08, +0x81,0xc9,0xc5,0xf0,0x91,0x0c,0xc6,0x3d,0x9d,0x8b,0x12,0xa1, +0xda,0x1c,0x87,0x69,0xe2,0x93,0x15,0x19,0x7a,0x12,0x50,0x16, +0xc2,0x82,0x57,0xb0,0x51,0xc8,0x55,0x7c,0x04,0x7d,0xd1,0x1a, +0x87,0xa2,0xa6,0xf7,0x12,0x0c,0x21,0xf2,0x15,0xa0,0xd0,0x26, +0xd6,0xc3,0xab,0xd9,0xb7,0xd6,0x56,0x30,0x28,0x45,0xa6,0x27, +0xed,0xc5,0x56,0xab,0x98,0x90,0x06,0xaf,0x16,0xdf,0x5a,0x9b, +0x95,0x92,0x62,0x62,0x63,0x48,0xa0,0xd2,0x2d,0xc7,0x21,0x7f, +0xba,0x13,0x45,0x5d,0x3d,0x83,0x19,0x19,0xc3,0x6f,0x0b,0x7b, +0xad,0x4d,0x83,0xb1,0x20,0x81,0x91,0x67,0xd8,0xba,0x03,0xd5, +0x69,0xd7,0x92,0xe2,0x2f,0x4b,0xb0,0x62,0x3d,0x56,0xad,0xc3, +0xd5,0x1b,0x92,0x97,0x48,0xc0,0x3e,0x1d,0xac,0xf7,0x81,0xe9, +0x5e,0x71,0x0c,0xed,0xb0,0x75,0xf9,0x86,0x95,0x91,0xe2,0x49, +0xcb,0xa6,0x0d,0xc3,0x31,0x52,0x34,0x07,0x6e,0x14,0x54,0x46, +0x12,0x70,0xa5,0xff,0x49,0x70,0x30,0x8a,0x5f,0xc0,0xac,0xaa, +0xf5,0xbc,0xe0,0x5b,0x45,0x4c,0x6a,0xb1,0x63,0xb1,0xe5,0x29, +0x07,0xc1,0xa4,0x06,0xd7,0x79,0x5d,0xf4,0xad,0x22,0x26,0xb5, +0xd8,0xa9,0xd8,0xf2,0x84,0xe0,0x0c,0xdf,0xb9,0xc1,0xac,0x47, +0x15,0x54,0xd9,0x46,0xdc,0xf8,0x65,0x0b,0x4a,0x9f,0x92,0x78, +0xd9,0x0a,0x28,0x5e,0x7a,0x97,0xdb,0xd8,0x8e,0x92,0x55,0xd8, +0x37,0x70,0x8a,0xaf,0xfa,0xea,0xf6,0x48,0x22,0x4b,0x73,0xc4, +0x3a,0x22,0xd4,0x39,0x88,0xa2,0x93,0x0b,0x58,0x9c,0xa6,0x3b, +0x6f,0xd6,0x78,0x29,0xaa,0xff,0xdd,0x00,0xb6,0x42,0x3f,0xe8, +0xbd,0x2b,0x1d,0x7a,0x13,0x2a,0xf6,0x2b,0x2e,0x32,0x45,0x8e, +0x45,0x16,0x27,0x04,0x6d,0xb4,0xaa,0xce,0xfb,0xa2,0x5f,0xb5, +0x78,0x3b,0xfa,0x31,0x21,0x75,0xde,0x97,0xfc,0xaa,0x09,0xeb, +0x8b,0x9c,0x8a,0x2c,0x8e,0xdb,0x89,0xf1,0xa8,0xb2,0x95,0xf9, +0xeb,0x1d,0x46,0x5f,0xa3,0xfe,0x89,0xbd,0x2a,0x7f,0x4d,0x31, +0x9a,0xb1,0xd8,0x6e,0x16,0x63,0x1a,0x97,0x5e,0xbb,0xbf,0x6e, +0x7f,0xbd,0x5e,0xba,0x64,0x83,0xc5,0x7a,0xab,0xc8,0x65,0xe2, +0x78,0x3b,0x3b,0xb9,0xad,0x6c,0x6d,0xd8,0x8e,0x84,0xf5,0x9c, +0x21,0x2d,0xcf,0x3c,0xb8,0x23,0x4b,0x56,0x51,0x95,0x90,0x58, +0xc9,0x39,0xe0,0x44,0x53,0x1c,0x39,0x0f,0x47,0xb5,0x05,0x4a, +0x1e,0xc1,0xb4,0x56,0x98,0xd4,0x00,0x73,0xae,0x25,0x75,0xa4, +0x5c,0x4e,0x13,0x83,0x0c,0x37,0x33,0xdf,0xcb,0xab,0xcb,0xee, +0xca,0x0e,0x1e,0x8f,0xdb,0x7e,0x9c,0x3b,0x75,0xc5,0xb0,0x04, +0xfb,0xd4,0x4d,0x28,0x50,0x5f,0x65,0xf6,0xdd,0x8a,0x47,0x1e, +0xa7,0xc3,0x85,0x85,0xd1,0x52,0xd6,0xac,0x4b,0x0a,0x95,0x4d, +0x36,0xb4,0xc5,0x8f,0x12,0xb9,0x84,0xc9,0xd4,0x5e,0x2f,0xef, +0x34,0x1f,0x19,0xd2,0x46,0xc6,0x53,0x26,0x5e,0x35,0x03,0x0a, +0x06,0x5c,0x3e,0xff,0xbd,0x9c,0x93,0x9f,0x3e,0xbf,0xb2,0xc9, +0xbb,0xd6,0x59,0xbd,0xa8,0xd1,0xb4,0x51,0xbf,0x52,0x2f,0x47, +0xdd,0x68,0x14,0x63,0x90,0xe0,0xbd,0x42,0x4b,0xa6,0xbd,0xbc, +0xf0,0xdc,0xf9,0xd3,0xf9,0x37,0x0a,0x4f,0x47,0x6d,0x3c,0xcd, +0xa9,0xc2,0xc1,0xad,0x0c,0x89,0x1a,0xd2,0x93,0x0e,0xfe,0xc6, +0xf5,0x8e,0x16,0x09,0x8e,0xfb,0xe5,0x1e,0xc7,0x7d,0xde,0xaf, +0x1d,0xf7,0xd9,0xc4,0x71,0x1f,0xb7,0x77,0xa4,0xe0,0xb8,0xc3, +0x4e,0xfe,0x1e,0x03,0x6a,0x59,0x30,0x6b,0x2f,0x8c,0x4a,0x10, +0xb7,0xd3,0x38,0x16,0xb5,0x36,0x45,0xe0,0x60,0x2e,0x59,0xa9, +0xcf,0x60,0xff,0xfb,0x76,0x30,0xe5,0xfa,0xc3,0x9d,0x7b,0x9a, +0xd9,0xed,0x57,0xa9,0xcd,0x4b,0xe7,0x6f,0x5f,0x4a,0x90,0xb5, +0x2d,0xbc,0x7e,0xe6,0x60,0xdd,0xd1,0x7a,0xce,0x20,0x93,0x0a, +0xb1,0x09,0x37,0xb3,0x96,0xaa,0xfe,0x6c,0x7e,0x97,0x59,0x7b, +0x7c,0xed,0x91,0xb0,0x43,0xe2,0xf4,0x8a,0xb4,0xfa,0x0b,0x52, +0xb0,0xc1,0x51,0xa0,0x86,0x36,0x7b,0xd9,0xb4,0xaa,0xb4,0xda, +0xd4,0x46,0x83,0x34,0x49,0xb4,0x55,0xb4,0xed,0x76,0x27,0xad, +0x68,0x9d,0x35,0x26,0xbe,0x5b,0x9a,0xb6,0xb4,0x6e,0xb9,0x6e, +0xb4,0x59,0xb2,0x6f,0xee,0x3e,0x9d,0xfd,0xc6,0xe2,0x89,0x0b, +0x2c,0x90,0xc2,0x4f,0xa5,0xf8,0x49,0xa7,0xd6,0x37,0x0f,0x3b, +0x2f,0x83,0xda,0x79,0xb6,0xf4,0x59,0x3e,0x88,0x4f,0xc0,0x4c, +0x31,0x68,0x45,0x81,0x68,0x34,0xce,0x96,0x7a,0xc7,0xf9,0x6d, +0x0f,0x64,0x2b,0xac,0xad,0x0f,0x2f,0x93,0x4d,0x36,0xb3,0x9c, +0xa2,0xd9,0x62,0xf9,0xc5,0x93,0x2b,0x25,0x9d,0xa5,0x5c,0x66, +0x44,0x46,0x78,0x66,0x98,0x58,0x99,0x06,0x2b,0x18,0xf7,0x0b, +0x41,0xf7,0x82,0xe1,0x93,0xb3,0x85,0x97,0x8f,0x76,0xa6,0xad, +0x46,0x8d,0x80,0xe1,0x7e,0x9a,0x62,0x9c,0x81,0x33,0x19,0x73, +0xcf,0xa6,0xc7,0xcf,0x4b,0x1e,0xb4,0xb5,0x70,0x79,0xa8,0x5e, +0x34,0xb5,0xce,0x48,0x6c,0xe4,0xed,0x19,0xec,0x26,0xe3,0x35, +0x3d,0x19,0x7b,0xdf,0x53,0xf5,0x0d,0x05,0x27,0x1b,0xaa,0x6a, +0x42,0xdc,0x6a,0x39,0xd3,0x95,0x0e,0x01,0x06,0x32,0xd5,0x9f, +0x0d,0x3a,0x99,0xe0,0x9c,0x90,0x93,0xab,0x8e,0x88,0x33,0xea, +0x77,0xb5,0x74,0x49,0xc1,0x43,0x0b,0x06,0xe0,0x70,0xa4,0xb1, +0xcf,0x5c,0xe2,0x24,0xab,0xb0,0xf0,0xa5,0x01,0x2e,0x43,0x6b, +0x23,0xb0,0xc6,0xc9,0xb4,0xfe,0x1c,0x9d,0xb9,0x96,0xa6,0xd5, +0xf6,0x92,0xa6,0xd6,0xa6,0x96,0xd2,0x5a,0x31,0x3e,0xbc,0xca, +0x4f,0xa0,0x41,0x03,0x86,0x40,0xaf,0x27,0xdf,0xca,0x7e,0x68, +0x98,0x8d,0x0b,0x96,0xc5,0xba,0x6c,0xf3,0xe6,0xaa,0x4c,0x2d, +0x8e,0x59,0xca,0x46,0x18,0x19,0x4f,0x9f,0x72,0xdd,0xfe,0xfb, +0xe7,0xed,0x45,0x5d,0xe5,0x5c,0x76,0x68,0xf6,0xea,0x23,0xc1, +0xc4,0x55,0x3c,0xc1,0x18,0x79,0x9e,0x6c,0x68,0x2c,0xc9,0x6f, +0xa9,0xad,0x0f,0x71,0x3c,0xc7,0x19,0x05,0xda,0x05,0x2d,0x26, +0x32,0xbb,0x57,0xb1,0x9a,0xc1,0x78,0x34,0xc4,0x05,0x28,0xc7, +0xd9,0x5f,0xcd,0xfc,0x1e,0xfe,0xf6,0x10,0xac,0xf8,0xf1,0x15, +0x1c,0xe8,0x6d,0x04,0x15,0xa2,0x76,0xb5,0x84,0x9d,0x67,0x46, +0x8f,0xc5,0x55,0xab,0xb2,0x88,0x0b,0xb9,0x3d,0x07,0xd4,0x61, +0x30,0x84,0x48,0x61,0x39,0x6a,0x82,0x06,0xae,0x67,0x71,0xb3, +0xf2,0x0b,0xc6,0xd8,0xaa,0x05,0x68,0xb0,0x07,0x29,0x71,0xb5, +0xcd,0xf6,0x71,0x4a,0x91,0x97,0x36,0x4e,0xd1,0x24,0xc4,0x9a, +0x40,0x5f,0xc6,0xac,0xde,0xb8,0xdc,0xe8,0x94,0x18,0x4a,0xe8, +0xc6,0xc4,0xa6,0xa4,0xfa,0xa4,0xf8,0x36,0x89,0x7d,0x8c,0x55, +0x9c,0x9d,0x5c,0x0c,0x8e,0x86,0xc4,0x01,0xa4,0x17,0xe1,0xc7, +0x89,0x29,0xd3,0xb9,0x78,0x23,0x2a,0xf6,0x19,0x7c,0x12,0xdf, +0x29,0xdb,0x89,0x7b,0x45,0x7b,0x7d,0x7c,0xd2,0x96,0x13,0xc9, +0x30,0x37,0x9e,0x36,0xa5,0xcd,0x92,0x78,0x64,0xfd,0x9b,0xeb, +0xbe,0xe6,0xca,0xe9,0x86,0x95,0xf5,0x3e,0x55,0xee,0xe2,0xee, +0x85,0x8d,0x7f,0x29,0xfc,0xe5,0xdd,0x32,0x19,0x53,0xdf,0x60, +0xed,0x25,0x5e,0x39,0xe7,0xcf,0x16,0x15,0x76,0x16,0x95,0x44, +0x6d,0x2c,0x21,0x0a,0x04,0x15,0x97,0x98,0xe3,0xce,0x47,0x96, +0x65,0xd9,0x35,0x66,0x4b,0x22,0xea,0x56,0x9f,0x5d,0x5d,0x29, +0x76,0x43,0x4b,0x66,0x5d,0xed,0x6a,0xe2,0x7d,0x5b,0x85,0x4b, +0x8e,0x38,0x1f,0x5d,0x96,0x69,0x2f,0x1e,0x83,0x22,0xe6,0x6c, +0xc2,0xf9,0xa4,0xc6,0x64,0x42,0x8e,0x5d,0x8c,0x79,0x9c,0xed, +0x5b,0x72,0xe4,0xbf,0x25,0x27,0xe9,0x7f,0x24,0xa7,0xb8,0x41, +0xf2,0x96,0x4b,0xca,0x03,0xa8,0xfa,0xd7,0x08,0xb3,0x4e,0xff, +0x3d,0xc2,0x7e,0x56,0x51,0x3c,0x60,0x96,0xba,0xb9,0x19,0x9b, +0x94,0xbb,0x5d,0xb9,0x7a,0xa6,0xbc,0xa5,0xd5,0xbd,0xdc,0x80, +0xbb,0x88,0x2a,0x8c,0xff,0xda,0xb5,0xde,0xde,0x6b,0xb3,0xf3, +0xd8,0xdd,0x74,0xee,0xa1,0xec,0x92,0x92,0x43,0x6b,0x57,0xb0, +0xb8,0x02,0x37,0xfc,0x96,0x3c,0x0f,0x43,0xf4,0xfc,0x5d,0xf2, +0x52,0xfe,0xaf,0x93,0xc7,0x5b,0xae,0x17,0x5e,0xe0,0xf8,0x94, +0xc8,0xa6,0x05,0xa8,0xf8,0x01,0x6d,0x06,0x7d,0xb9,0x94,0xa4, +0xbb,0x93,0xae,0x19,0x5c,0x37,0x51,0xaf,0xa8,0x9d,0x72,0x6b, +0xf6,0x7d,0xec,0x03,0x6a,0xea,0x66,0x5e,0xd4,0x55,0x64,0xf3, +0x70,0x00,0x7e,0x24,0x45,0xc3,0x29,0x23,0x71,0x26,0x8e,0x9b, +0xf6,0x04,0xc6,0xc0,0x88,0x1b,0x30,0x10,0xfe,0xf6,0x92,0x3d, +0xb8,0xff,0xc0,0xbe,0x8c,0x3d,0x31,0x97,0x24,0x48,0x84,0xb7, +0x2e,0x5a,0x84,0x73,0xb5,0x47,0xe0,0x44,0x9c,0x27,0x45,0x53, +0x18,0x88,0x62,0xb0,0x24,0xbc,0xf4,0x53,0xd8,0xbe,0xb5,0x6e, +0xf6,0xc1,0x3d,0xa6,0x8c,0x04,0x8c,0x36,0x6f,0xad,0x5b,0xb5, +0x9d,0x60,0x64,0x4a,0x2c,0x89,0x91,0x51,0xb2,0xdd,0x9f,0x31, +0x60,0xf9,0x67,0xb0,0x9a,0xf2,0xe1,0x58,0x29,0x5e,0x2b,0x06, +0x32,0xd7,0x2a,0xaa,0x2e,0x5f,0x71,0xad,0x5c,0xb2,0xc4,0xc5, +0x65,0xa9,0x61,0xa5,0xf3,0x35,0xae,0x46,0xc5,0x23,0xf4,0x48, +0x01,0xb7,0x97,0xce,0x3f,0x7c,0xa4,0xac,0xec,0x70,0xa8,0x1f, +0xbb,0x99,0xf6,0x0d,0x0d,0xf5,0x60,0x95,0x06,0xdd,0x76,0xff, +0xe7,0x90,0xe3,0xc3,0x42,0x99,0x97,0x2d,0x55,0x8f,0x1a,0xc2, +0xea,0x82,0x6a,0xb8,0x85,0xa0,0x4a,0x05,0x55,0xaf,0xab,0x28, +0x95,0x26,0x3c,0xf8,0xba,0x18,0xa6,0x6d,0xde,0xdf,0x2e,0x41, +0xe3,0x33,0xa8,0x96,0x81,0xf3,0x33,0xb6,0x1a,0x49,0x40,0x2b, +0xf2,0xce,0x56,0x90,0xae,0x92,0xc7,0x48,0x12,0x23,0x23,0xe5, +0x11,0x32,0xec,0x6d,0x6c,0xa2,0x67,0x71,0xc8,0xa9,0xc0,0x8a, +0xbb,0x8d,0x83,0xa9,0xc3,0x3e,0x99,0x3e,0xfe,0x52,0xbb,0xc0, +0x50,0x23,0x57,0x87,0xbd,0x59,0x36,0xec,0x06,0x03,0x2a,0xfc, +0x62,0xc3,0xd6,0x46,0x19,0xef,0x77,0x97,0x71,0x81,0x21,0x16, +0xf0,0x91,0xd1,0x77,0xc6,0x01,0x92,0xb6,0xf1,0xe7,0x50,0x5c, +0x89,0xea,0xe2,0xee,0xb4,0x58,0xa6,0xed,0xeb,0xf3,0x30,0xa4, +0x14,0x06,0x18,0x64,0x4b,0x3c,0x71,0xa0,0x2d,0x8a,0x8d,0xa6, +0x8a,0x05,0x57,0x6d,0xd4,0x7f,0xc7,0xfe,0xa7,0xdf,0xc4,0xfe, +0x96,0xa1,0x42,0xec,0xdf,0x42,0x8a,0x82,0x88,0xef,0x72,0xda, +0xfc,0x04,0x71,0xe3,0xff,0xa1,0xfc,0xe9,0xff,0x95,0x04,0x28, +0x9e,0xf0,0x5d,0x4c,0x57,0x65,0xf5,0xd5,0xab,0x2e,0xd5,0x3a, +0x8b,0x9d,0x9d,0x0c,0x0c,0xaa,0x9c,0x3a,0x39,0xa5,0x9a,0xf2, +0xef,0xff,0x47,0xd0,0x55,0x53,0x8c,0x65,0xdc,0x43,0x8f,0x14, +0x12,0x01,0x2b,0x3c,0x7c,0xe4,0x4c,0xf9,0xe1,0x35,0xbe,0x3d, +0x02,0xb6,0xc6,0x8d,0xbd,0xa7,0xbc,0xf9,0x81,0x63,0x61,0x06, +0xfd,0x19,0xa5,0x19,0x1f,0x44,0x15,0x04,0x04,0x66,0x2e,0x97, +0x2d,0x0f,0x8a,0x70,0xf7,0xe3,0x70,0x33,0x96,0xd5,0x59,0x12, +0x9f,0xab,0x86,0x3a,0x7e,0xe8,0xc0,0xce,0x74,0x59,0x7a,0xc6, +0xd6,0xd0,0x43,0x1c,0x6f,0xaa,0x0c,0xa1,0x84,0x8c,0x4c,0xff, +0xf7,0x49,0xdd,0x80,0x15,0x89,0x4f,0x3e,0x0c,0xb4,0xa2,0x8c, +0xaf,0x64,0x6e,0x57,0xd7,0x75,0x76,0x3a,0xd5,0x2e,0xd0,0x76, +0x74,0x58,0xbc,0xb8,0xc6,0xfe,0x16,0x57,0xa7,0xe2,0xbc,0xfa, +0x58,0x09,0xb7,0x9f,0x2e,0x39,0x7a,0xac,0xaa,0xfa,0xe8,0x2a, +0x61,0xe9,0x19,0xef,0xd5,0x21,0x4e,0x2c,0x4c,0x52,0x46,0x7f, +0x60,0x0f,0xe0,0x03,0xbd,0x7e,0xd1,0x85,0x07,0x61,0xa9,0xa0, +0x0b,0x0d,0x7b,0x74,0x61,0x38,0x2e,0xe9,0xd1,0x85,0xa8,0x22, +0x28,0xc3,0x0e,0x41,0x19,0x1e,0xfe,0x3d,0x65,0xa8,0xf0,0xda, +0xc0,0x18,0x35,0xe9,0x55,0x19,0xe4,0x88,0xc1,0x87,0xee,0x48, +0xb8,0x9c,0xdc,0x90,0x12,0xd7,0x2c,0xb1,0x89,0x31,0x8c,0x35, +0x24,0xfa,0x7a,0x3e,0xdd,0x9c,0xd8,0x4c,0x54,0x78,0x6c,0xb3, +0x24,0xc6,0x62,0x66,0xac,0xae,0x6c,0x11,0x71,0x11,0x93,0x67, +0x70,0xf1,0xa6,0x54,0xec,0xc3,0xd7,0xf1,0x37,0x64,0xb8,0x80, +0xd6,0x1c,0x9d,0x90,0x3a,0x49,0x28,0x89,0xf9,0xf2,0xfb,0xf8, +0xc7,0x32,0x34,0xa2,0xf7,0xfa,0xf8,0xa6,0xfa,0xc9,0x90,0x32, +0xb3,0x9a,0x3a,0xab,0xdd,0xf2,0x25,0xf4,0xbf,0x58,0xf7,0x9c, +0x2b,0xa2,0xcf,0x05,0x9e,0xf7,0xa8,0x77,0x12,0xe3,0x86,0xaf, +0x18,0x93,0x15,0x2b,0x17,0x18,0xf8,0xe4,0x34,0xd6,0xe7,0xe6, +0x5f,0x2f,0x28,0x8e,0xda,0x20,0x98,0x97,0xde,0x8a,0x73,0xcc, +0x71,0x07,0x21,0x35,0xd3,0xf8,0x4b,0x6a,0xc6,0x03,0x6d,0x99, +0xc8,0xba,0x90,0x8b,0xa1,0x35,0x96,0x11,0x92,0xa3,0x0e,0x47, +0x2d,0x33,0xec,0xc4,0xdd,0x43,0x95,0x87,0xfe,0x9d,0xe8,0xa5, +0xbf,0x43,0xf4,0xb5,0x77,0x12,0xcd,0xa7,0xc2,0x1d,0xe6,0x2d, +0xad,0x2d,0xbf,0xd0,0xaa,0x45,0x67,0x27,0x64,0xef,0x38,0x94, +0x10,0xdf,0x22,0x91,0xfb,0xfa,0xc8,0xfd,0x7f,0xa1,0xd5,0xe4, +0x9f,0xb4,0xce,0xff,0x27,0xad,0x26,0xff,0xa4,0xd5,0xf0,0x8f, +0x69,0x2d,0x3c,0x2b,0x79,0xcb,0x5c,0xa3,0x89,0xbf,0x47,0xb3, +0x22,0x81,0x38,0xfc,0xbe,0x19,0x45,0xa1,0xd5,0xb2,0x8e,0xf2, +0x8a,0xb6,0x36,0xb7,0x0a,0x3d,0x63,0x77,0x2f,0xcb,0x18,0x4e, +0x1e,0x18,0x24,0x5f,0xf9,0x1f,0x45,0x00,0xbc,0xe9,0xdf,0xa1, +0x38,0x33,0xe1,0xe0,0x8e,0xcc,0x04,0xb1,0xf2,0x8a,0xb2,0xe9, +0x2f,0xb2,0xf4,0x25,0xaf,0x64,0xf2,0xb2,0x0f,0x9f,0x2e,0xcd, +0x0e,0xf3,0x67,0xb7,0xd0,0x7e,0x61,0x61,0x9e,0x5e,0x61,0x87, +0xf3,0x59,0x9c,0xa9,0xbc,0xfd,0xbb,0xc3,0xdd,0xff,0x02,0x83, +0xe2,0xbb,0x48,0x5f,0x1c,0x55,0x28,0x86,0x79,0xf4,0xb7,0x09, +0x7f,0x4f,0xfc,0x2a,0x8d,0x20,0x37,0x3d,0x1a,0xfb,0xc6,0x4d, +0x24,0xd8,0x8d,0xa5,0xff,0x9e,0x08,0xe2,0xd4,0x1f,0x76,0xc6, +0xb7,0x4a,0x34,0xb6,0x61,0xff,0x98,0x91,0xf1,0x62,0x18,0xbc, +0x14,0x07,0xd3,0xd8,0x0f,0x3f,0x4d,0x49,0xd1,0xe0,0xe4,0xc6, +0x54,0xcc,0x2b,0xe8,0x1f,0x03,0xff,0x0f,0x79,0xef,0x01,0x15, +0x45,0xba,0xae,0x8d,0x9a,0xba,0xaa,0x4c,0xcc,0x18,0x0a,0x0b, +0xda,0xe9,0x36,0x61,0xc2,0x80,0x11,0x13,0x2a,0xa1,0xc9,0x39, +0x27,0x41,0x44,0x89,0x82,0x20,0x51,0xc4,0x9c,0x19,0x15,0x30, +0x81,0x04,0xc9,0x39,0x08,0x88,0x28,0x39,0xa3,0x80,0xa2,0x80, +0x39,0x8c,0x71,0x66,0x74,0x66,0x74,0xc6,0x34,0x6f,0xf5,0xbc, +0xc5,0xde,0xff,0xd7,0xba,0xf7,0x39,0xfb,0x9e,0xf4,0x9f,0xbd, +0xcf,0x3e,0xeb,0xde,0xb5,0xee,0xb0,0x56,0x57,0x4d,0x59,0x5f, +0x7a,0xe3,0xf3,0x54,0x57,0xbf,0xdf,0xd7,0x62,0x9c,0x49,0xcf, +0xc6,0x71,0xc7,0xe2,0x88,0xb4,0x4c,0x44,0x87,0xbf,0x87,0x51, +0x87,0x3f,0x88,0x71,0x3a,0x7d,0xda,0xdd,0x33,0xde,0x5b,0x8c, +0x13,0x0c,0xcc,0xe7,0xce,0xb9,0x63,0x0e,0x23,0x61,0x4c,0x4f, +0xed,0x07,0x69,0x0b,0xfd,0xd2,0xf7,0x9d,0xed,0x27,0x2d,0x46, +0x18,0x04,0x14,0x6b,0xb4,0x6e,0xeb,0xaa,0x55,0xeb,0x4a,0xdb, +0xdb,0x2e,0x9c,0x7f,0x51,0x52,0x79,0x60,0x47,0x0d,0x99,0xdc, +0x5a,0xd8,0xc7,0xba,0x15,0xbb,0x15,0xba,0xe5,0xa6,0xde,0x3c, +0xfb,0xe8,0xf4,0xcf,0x06,0xa7,0xb8,0xbd,0x8b,0x77,0xeb,0x46, +0x9b,0x2f,0xa9,0x5e,0x5a,0xa8,0x99,0x90,0x0e,0x83,0x13,0x60, +0x50,0xec,0x53,0x46,0x18,0x62,0x04,0xd5,0xd4,0x41,0xc3,0xdd, +0xcb,0xb7,0xaf,0x60,0xf6,0x53,0x68,0x82,0x6a,0xf8,0x35,0xce, +0x9d,0x73,0x45,0xf6,0xa2,0xbf,0xab,0xe9,0xc7,0x72,0x69,0x5e, +0x4f,0xc6,0x83,0xd4,0x87,0x4f,0x77,0x7f,0xe7,0xf7,0x9d,0xab, +0x33,0xce,0xd1,0x32,0x42,0xda,0x59,0x51,0xac,0x68,0x54,0xd3, +0xf3,0x07,0x6d,0xb0,0xb4,0x32,0xb8,0x72,0x4b,0xe5,0x66,0x46, +0xb8,0x7a,0x96,0x35,0x0c,0xf4,0xf2,0x72,0x17,0x3b,0x05,0x96, +0xb7,0x13,0x6e,0x38,0xe4,0x15,0x4c,0x91,0x46,0xe9,0x84,0xeb, +0x6d,0xb5,0x22,0x01,0x7a,0x3f,0x3f,0x81,0x2d,0x36,0x38,0xb7, +0xda,0x4a,0x15,0x87,0x3b,0x06,0xa2,0x7f,0x8c,0x04,0x47,0xeb, +0x9f,0xec,0x92,0x1e,0xcd,0x3d,0x5d,0x91,0x50,0xc0,0x24,0x94, +0x26,0x5c,0xbe,0xa4,0x9a,0x79,0x38,0xfd,0x48,0x9a,0x04,0xfc, +0xe9,0x9e,0x63,0xd7,0x62,0x9b,0xe3,0x0e,0x77,0x13,0x35,0x9b, +0x1e,0x32,0x3a,0xcc,0xc0,0x04,0x23,0x54,0xa1,0xb5,0x8f,0x68, +0xc7,0x18,0x2b,0x36,0xe3,0xe8,0xbe,0xfd,0xed,0xb1,0xdb,0x52, +0x9c,0x7a,0x88,0x4e,0xd8,0x13,0x4c,0xc2,0xcc,0x32,0x1b,0xa3, +0xc9,0x33,0x9b,0x6c,0xfa,0xb2,0x0b,0xce,0x64,0xa5,0x4a,0xe3, +0xa9,0x08,0xef,0x5d,0xee,0x81,0xaa,0xcb,0xda,0xbc,0xc0,0x1d, +0x92,0xef,0x34,0xc2,0x82,0x1b,0x11,0x8f,0xfd,0xee,0x48,0x08, +0x31,0x4f,0x66,0x9f,0xf8,0xfe,0x64,0x77,0xcd,0xae,0xbc,0x8d, +0x33,0x6e,0x9c,0xd1,0xbe,0xac,0x98,0x11,0x56,0x08,0x07,0x59, +0xd7,0x80,0xe2,0xae,0xeb,0x45,0x15,0x75,0x97,0x0b,0xfc,0x4c, +0x8f,0x4a,0x4d,0x62,0x7c,0x37,0xb8,0x11,0x5a,0xf0,0x83,0x9c, +0x65,0x4f,0xd4,0xc6,0x37,0xc6,0xb7,0xe8,0xc7,0x73,0x07,0xad, +0x0f,0x3a,0xec,0x77,0xd6,0x3c,0xb2,0x3a,0xcc,0xc8,0x7b,0x57, +0xeb,0xee,0xce,0xdd,0xbd,0x26,0xbb,0xb8,0x84,0x55,0x67,0xf5, +0x92,0xcc,0x98,0xe9,0x6b,0x4c,0x91,0xc2,0xf1,0xaa,0x38,0xe1, +0xe9,0xca,0x1f,0x5f,0xdf,0xb9,0x06,0xec,0x15,0x49,0xc5,0xa3, +0x62,0x18,0x91,0x0b,0x9a,0x30,0x77,0xfb,0xfb,0x05,0x31,0xa8, +0xce,0xe0,0x42,0x1c,0x3c,0x0f,0xbd,0xb7,0x4a,0xd2,0x65,0x22, +0x08,0xce,0x85,0xd9,0x84,0x94,0x6e,0x50,0x05,0x6b,0x94,0x00, +0x8d,0x06,0xa9,0x12,0xd4,0x12,0xd4,0xd8,0x0d,0xdd,0xde,0xcf, +0xfc,0x61,0x5c,0xfb,0xf9,0xde,0x8c,0xdb,0xc7,0xb7,0xa2,0x86, +0x2f,0x0e,0xf1,0xd5,0x65,0x08,0x28,0x9c,0xcb,0x9a,0x39,0xb7, +0xbe,0x7a,0x7d,0xe9,0x69,0x6f,0xa7,0xb4,0x0c,0xbf,0xa9,0x52, +0xaf,0x96,0x31,0x16,0x1b,0xd6,0x07,0x91,0x79,0xca,0xe3,0xf8, +0xc9,0x6c,0x86,0x5d,0xb2,0x99,0xb5,0x2a,0x8e,0x94,0x59,0x13, +0xcc,0x31,0xdf,0xa8,0x1e,0x26,0x9c,0x95,0x9c,0x79,0x2f,0xba, +0x0f,0x83,0x8e,0x9f,0xfa,0x28,0x3d,0x72,0x7d,0xde,0xbe,0x29, +0x87,0x35,0x63,0x54,0xd2,0xc0,0x40,0xf4,0x33,0x48,0x8e,0x9f, +0xbe,0x2b,0x3d,0xdc,0x23,0xda,0xa3,0x85,0xe3,0x0f,0xcd,0x15, +0xa7,0xc2,0x52,0xfd,0xf8,0x6d,0xb8,0xd2,0xe8,0xf8,0x8a,0x93, +0xfa,0xa7,0x55,0x0e,0x18,0xdd,0xd8,0xf3,0x70,0x5f,0xcf,0x61, +0x95,0x08,0x34,0x30,0x3b,0xbe,0xf6,0x84,0xe5,0x29,0x72,0xa9, +0x6d,0xef,0xdd,0xfd,0x9d,0x87,0x55,0x76,0xcf,0x10,0xa1,0x2c, +0xf2,0xcd,0x1a,0x70,0x12,0x83,0xfd,0xaf,0x4f,0x61,0x41,0xc7, +0xf6,0xde,0xe0,0xab,0x52,0x25,0xb9,0x25,0x5f,0xc7,0x5a,0x14, +0xae,0x2a,0xd0,0x4a,0x09,0xb5,0xe2,0xee,0x47,0xde,0x0e,0x6a, +0x0f,0x60,0x02,0xf6,0xb0,0xc6,0x0b,0x42,0xbd,0x70,0x98,0xd4, +0x05,0xac,0x4c,0xb6,0xd7,0xa1,0xbd,0xdd,0x36,0xcb,0x08,0xd3, +0x30,0x95,0x0c,0xd3,0xce,0xf4,0xd6,0xb4,0xc6,0x54,0x95,0x8f, +0xc2,0x92,0xee,0xe4,0xc9,0xfc,0x0a,0x51,0x19,0x0c,0x7b,0x92, +0xd9,0x2a,0x7e,0x58,0xe9,0x63,0x6c,0xe2,0xe3,0xaf,0x1d,0x23, +0xdd,0xe8,0x7c,0x32,0xd1,0x4d,0xba,0xd3,0x54,0xb4,0xb3,0xb6, +0x79,0xf7,0x25,0x31,0x0c,0xbb,0xd6,0xf1,0xe1,0x9d,0x76,0x27, +0x32,0x64,0xac,0x48,0xb9,0x07,0xab,0x5b,0x36,0xaf,0x44,0x23, +0x3d,0xd4,0x9c,0x7b,0x1d,0xf6,0x6c,0xf3,0x4d,0x1f,0xc6,0x37, +0x88,0x5d,0x8e,0xc3,0x36,0xbb,0xe2,0x64,0xa9,0x05,0xec,0x36, +0x88,0xba,0x8a,0x07,0x8c,0xc2,0x74,0x83,0xb5,0x82,0x55,0x32, +0x8d,0xef,0xe6,0xf4,0x66,0x77,0x67,0xa8,0x80,0xb2,0x90,0x78, +0x23,0x15,0x39,0x3e,0x45,0x54,0x03,0x53,0x7e,0x2f,0xe8,0x13, +0xff,0xd6,0xec,0xb6,0x44,0xd3,0xc5,0x63,0x9e,0xab,0xd5,0xe9, +0x24,0x7b,0x69,0xb4,0x91,0x68,0x7b,0x47,0xd7,0xae,0x06,0x31, +0x28,0x3f,0xbe,0x0e,0x2c,0x7c,0xb5,0xe8,0x0e,0x4a,0xa5,0x4a, +0xfc,0x8f,0x7c,0x26,0x7b,0xb8,0xfc,0x50,0xf9,0xe1,0x62,0xa3, +0x83,0x5c,0xac,0x5f,0xac,0xd7,0xf1,0x4d,0xf8,0x4d,0x24,0xd2, +0x73,0x03,0x71,0x2e,0x71,0x98,0x93,0x2f,0x4e,0xc3,0xe8,0xa4, +0x77,0x86,0x71,0x5c,0x34,0x0e,0xda,0x89,0x2a,0x38,0x42,0xd5, +0xf5,0x98,0xc1,0xf1,0xad,0x92,0x6b,0xc7,0x0f,0xf5,0x1d,0xcf, +0x4f,0x6f,0x52,0x69,0x84,0x09,0x44,0x54,0xa2,0x24,0x26,0xd6, +0xee,0x98,0xbd,0xa7,0xea,0xca,0x03,0x16,0xdb,0xdd,0x24,0xf6, +0x49,0x9b,0x2a,0x7c,0xfb,0x1c,0x3d,0xb9,0x32,0xed,0x5a,0x97, +0xab,0xe1,0x81,0x9b,0xd6,0x87,0x9a,0x6e,0xcb,0xb7,0xe6,0x1e, +0x67,0xb6,0x96,0x97,0x76,0x32,0x31,0x27,0x4e,0x7e,0x7b,0x42, +0x0c,0xf3,0x8f,0xfd,0xf2,0x83,0xe2,0xe5,0x17,0x55,0xf5,0x1f, +0x51,0x1a,0x2f,0xd9,0x25,0xcc,0x66,0x93,0x1a,0x4f,0x74,0x3f, +0x50,0xad,0x38,0xd2,0x74,0xa8,0x45,0xf2,0x71,0xef,0x15,0x73, +0x75,0x55,0x1c,0x62,0x6c,0x8c,0x4c,0x0c,0x89,0xc5,0xc3,0xe4, +0x8b,0xd9,0x43,0xf5,0x07,0xeb,0x0e,0x54,0xeb,0x1f,0xe4,0xe2, +0xdd,0xe2,0x9d,0x63,0x9d,0x70,0x6d,0x38,0xb1,0x88,0xe1,0xbe, +0x68,0xcb,0x1c,0xa0,0xe2,0x41,0x94,0x08,0x33,0x52,0x61,0x8c, +0x6e,0x3c,0x17,0x85,0x2a,0xdb,0x09,0xee,0x9f,0xa6,0x6a,0x7b, +0x4c,0xeb,0xb8,0xaf,0xe4,0xe6,0xf1,0x83,0x4f,0x62,0xcf,0xe7, +0x5c,0x53,0xb9,0x09,0x5a,0x30,0xee,0x23,0x4c,0x4d,0x61,0xe2, +0xf4,0x8e,0x1b,0x38,0xa9,0x4e,0xdb,0xb7,0x26,0xdc,0x5a,0xa2, +0x97,0xea,0xd2,0xe0,0xf1,0xd8,0x61,0x03,0x57,0xb5,0xb4,0xdd, +0xe2,0x61,0x90,0x97,0x83,0x75,0xc0,0xb2,0x90,0x22,0x73,0xee, +0x5d,0x7e,0x6f,0x75,0xd5,0x03,0x26,0xe6,0xf4,0xe9,0x6f,0x4f, +0x8b,0xc1,0xe2,0x18,0x89,0x4f,0x83,0x41,0xa6,0x0a,0xcb,0x71, +0x24,0x21,0xce,0x6b,0x63,0xc9,0x94,0x63,0xd8,0x83,0x54,0x7a, +0xf7,0xa9,0x47,0xef,0x54,0xeb,0x0f,0xf7,0x1c,0xec,0x93,0x80, +0x78,0xef,0xe3,0xd5,0x8a,0x47,0x12,0x53,0x17,0xaf,0xc4,0x19, +0x64,0xd6,0xf5,0x17,0x58,0xb5,0xdb,0x33,0x5b,0x16,0x14,0x31, +0xe0,0x44,0xff,0xf8,0xdd,0xf1,0xd8,0xbb,0xd2,0x23,0x9d,0xa2, +0x43,0xda,0xcb,0x8f,0xcc,0x13,0x83,0xbe,0xb1,0xb0,0x94,0x3e, +0xe5,0xe5,0x13,0xe7,0x2f,0xc6,0x41,0x06,0xb6,0x0b,0x96,0xf6, +0x91,0x04,0x31,0xec,0x6a,0xcd,0x0b,0x69,0x03,0xfd,0xc0,0xff, +0xb9,0xe3,0x0b,0x23,0x06,0xfb,0x3f,0xb1,0xf6,0x7e,0xc1,0xda, +0x46,0x1b,0x0b,0xeb,0x1a,0xca,0x8b,0x7a,0x8a,0xce,0x1f,0xd8, +0xa5,0x08,0xcf,0x5f,0xf5,0xb0,0x38,0xfa,0x05,0x7e,0x75,0x13, +0x45,0x17,0x18,0x88,0xa7,0x81,0x3a,0xfa,0xee,0xd8,0xab,0x38, +0xc2,0xe5,0x0e,0x2e,0x98,0x76,0x04,0x29,0x31,0x04,0x19,0x08, +0x49,0x74,0x82,0x8b,0xdb,0x09,0x0f,0x31,0xaa,0x68,0x19,0x4e, +0x9e,0xf6,0xc4,0x10,0x94,0x80,0x7d,0x50,0x0f,0x43,0xa4,0xfd, +0xf4,0x5b,0x4f,0x18,0x6c,0x0a,0x43,0x96,0x33,0x82,0x32,0x7c, +0xc5,0xae,0x75,0x08,0x58,0xbc,0xcc,0xbe,0xa2,0xe7,0x7a,0xed, +0xc5,0x97,0x95,0x35,0xfb,0xa2,0xeb,0xc9,0xcc,0xf7,0xca,0xdd, +0x59,0xfc,0xaa,0x10,0xd7,0xe6,0xe3,0xf4,0xc4,0x1d,0x06,0x1c, +0x4c,0xdd,0x05,0xab,0xb7,0xc0,0x38,0x7f,0x46,0xd8,0x38,0xa0, +0xc2,0x6e,0xbf,0xdf,0x7f,0xa0,0x5b,0x0c,0xc1,0x20,0xed,0x27, +0x81,0x40,0x3c,0xed,0x01,0x2e,0x47,0xf5,0x69,0x16,0x0b,0x2d, +0xa5,0x07,0x8e,0x26,0x3f,0x3e,0x07,0x63,0xce,0xc1,0x10,0x15, +0xdd,0x93,0x51,0xc8,0x84,0xe2,0xcc,0x70,0x54,0x52,0xb9,0xb6, +0x4f,0xf4,0xaa,0xff,0x43,0x2b,0x4c,0x52,0xec,0xe6,0xe7,0x3a, +0x03,0xbf,0xc2,0xd1,0x1e,0xa8,0x67,0x6b,0x74,0x22,0x79,0x8d, +0x54,0x09,0x4a,0x48,0xf8,0xba,0x7b,0xb4,0x36,0xa1,0x52,0x02, +0xab,0x1a,0xbe,0xff,0x09,0xc6,0x89,0x61,0x50,0xdf,0x7c,0x5c, +0x8a,0x7b,0x71,0x0c,0xf9,0xcb,0xf7,0x97,0x26,0xeb,0x89,0xe0, +0x6a,0x09,0xcc,0x02,0x0d,0x28,0x55,0x05,0x87,0xd9,0x30,0x12, +0xa7,0x22,0xad,0x61,0x88,0x83,0x9c,0x24,0x7b,0x23,0xf7,0x87, +0xec,0x0b,0x54,0x18,0xc1,0xb5,0x93,0x2f,0xcf,0x82,0x8a,0x5e, +0x2c,0x31,0x01,0x9d,0x9d,0x68,0x72,0x18,0x8d,0x19,0x25,0x5e, +0xe0,0xb7,0xb2,0x1a,0xf3,0xbd,0x3d,0xd6,0x4a,0x0f,0xc5,0xf2, +0xa3,0xa1,0xed,0x48,0xa7,0x90,0xb1,0xe3,0xa8,0x11,0xaf,0x99, +0x20,0xa4,0x08,0xcb,0xab,0x1c,0xaf,0xd6,0x97,0xe7,0xd5,0x64, +0xab,0x74,0xc0,0xe0,0x5f,0x33,0xdf,0x88,0x61,0x4a,0x97,0x2e, +0xf1,0xeb,0x98,0x85,0x8e,0xc6,0x6a,0x81,0x0c,0x4c,0xde,0xba, +0xfc,0x06,0x0e,0x12,0xcf,0xd5,0xb3,0xd1,0x9c,0xfb,0xc8,0x06, +0xd4,0x61,0x37,0x4c,0xfc,0x08,0x4b,0xa4,0x30,0xf9,0xe8,0x9c, +0x0f,0xb8,0x5c,0x8c,0xf9,0x28,0xb0,0x75,0xe5,0x79,0xed,0x0f, +0x9a,0xdc,0x90,0x3e,0x27,0x39,0x1c,0x1c,0x74,0x24,0x80,0x10, +0x65,0xe7,0xa2,0x56,0xa9,0xd2,0x1f,0x86,0x30,0x81,0xf5,0xb5, +0x70,0x0e,0x09,0x16,0x07,0x47,0x9f,0xce,0x93,0x36,0x77,0x42, +0xd7,0x3d,0xd5,0x1f,0xac,0x6a,0x97,0x4e,0x46,0x66,0x26,0x92, +0xd4,0x27,0x81,0x5f,0xff,0x2f,0x0f,0x83,0xa6,0xd3,0x64,0xc9, +0xd3,0xe1,0xab,0x4f,0x0f,0xc5,0xd5,0x05,0xa1,0x36,0x52,0x99, +0x09,0xf6,0x58,0xaa,0x1a,0x57,0xf8,0x77,0x5e,0x6c,0xcf,0xac, +0xb8,0x49,0x54,0x35,0x88,0x77,0x64,0x97,0x1e,0x55,0xf7,0x5e, +0x64,0x7d,0x28,0x96,0xe3,0x59,0x78,0x78,0xa4,0x4b,0x38,0xbb, +0xeb,0x98,0x11,0xbf,0xf0,0xb4,0x10,0x27,0xe8,0xd6,0x38,0x92, +0x80,0x3c,0x06,0xc6,0x77,0xc0,0x82,0xa3,0x2a,0x30,0xfe,0x86, +0xc1,0x1c,0x64,0xd4,0x4d,0xd0,0xd4,0xc0,0xf0,0xe4,0x59,0x99, +0x74,0x9f,0xbe,0x28,0xfa,0xd6,0x8d,0xfd,0xfd,0x62,0x88,0x86, +0x51,0x2f,0x60,0x39,0x8c,0x99,0xf9,0x0b,0xce,0x21,0xa1,0xe8, +0x06,0xe4,0xb1,0x30,0x59,0xf3,0x15,0x8e,0x9d,0xaf,0xed,0xb2, +0x70,0x85,0x04,0x92,0x4d,0x89,0xb7,0xcd,0xb3,0x80,0x79,0xf8, +0x35,0x6d,0xad,0x6f,0x69,0xe8,0xe2,0x78,0x79,0x1d,0x57,0x55, +0x5f,0x55,0x57,0x5c,0xc1,0x60,0x52,0x17,0xbc,0xa6,0x81,0xfe, +0xa5,0xb7,0xe6,0x9e,0xf8,0x55,0x4c,0x8b,0x99,0x62,0x33,0x40, +0xe9,0x12,0x4d,0x9c,0x1c,0x19,0x79,0xf4,0x58,0xb8,0xe4,0xa8, +0xa9,0xe8,0x70,0x46,0x7a,0x4c,0xba,0x18,0x74,0x61,0x18,0xf9, +0xd3,0x8b,0x21,0x23,0x4c,0x94,0x8f,0x63,0x91,0x9e,0x6f,0x85, +0x43,0xa6,0x49,0xe1,0xd9,0xff,0x45,0x0c,0x4b,0x68,0x50,0x06, +0xd1,0xf7,0xdd,0xef,0xc5,0xa0,0xd4,0xb3,0x1a,0x59,0x34,0xc0, +0xa1,0xd3,0x51,0x37,0x2c,0xec,0xe8,0xb1,0xad,0xd2,0x63,0xfa, +0xa2,0xc3,0xd9,0xd9,0x31,0x59,0x62,0xd8,0x08,0x53,0x41,0x51, +0xc1,0x61,0xc5,0x34,0x18,0x84,0xf3,0x48,0x88,0xbb,0xc4,0x77, +0xb0,0xbb,0x77,0x7f,0x1b,0xb3,0x47,0x7a,0xea,0xda,0x89,0x9e, +0xd8,0x1b,0x0c,0xbe,0x37,0x86,0x42,0xea,0xd0,0xba,0x83,0xce, +0xfb,0x9c,0x19,0x74,0xdc,0x88,0xd3,0xc9,0xb2,0x4c,0x55,0x71, +0x58,0x8f,0xee,0x93,0x63,0x92,0x67,0xc7,0xea,0x3b,0x2b,0x60, +0x54,0xc1,0x4f,0x39,0xbf,0xa7,0x02,0xc5,0x1c,0x4d,0x3a,0x7b, +0x34,0x49,0x0c,0x6b,0xe1,0xab,0x79,0x38,0x67,0xc3,0x01,0xef, +0x3d,0x01,0xd2,0xf6,0x4d,0xfa,0x97,0x65,0xe2,0x05,0xd6,0x96, +0x4b,0x34,0x3b,0x6d,0x7e,0x81,0x39,0x3f,0x2b,0x76,0x9d,0x03, +0x13,0x54,0x87,0xaf,0x91,0x10,0x02,0x43,0xfc,0x13,0x1b,0xb0, +0xc4,0xcf,0xd5,0xf5,0x08,0xe3,0x7c,0xc4,0xfb,0xd2,0x2d,0x55, +0x98,0x42,0xd6,0x3b,0x0a,0xd4,0x2f,0x48,0xa2,0xa6,0x87,0xcc, +0x08,0x5a,0xc1,0x40,0x0d,0xea,0xb0,0xb6,0x5e,0x05,0x0d,0xf5, +0xc5,0x79,0xf5,0xad,0x4d,0x1b,0xcc,0x4b,0xa4,0x9b,0x36,0xaf, +0x8b,0xb4,0x16,0x2b,0x7e,0x4e,0x6d,0xc2,0x2e,0x5d,0x6e,0xa2, +0x13,0x20,0x3d,0x48,0xf5,0x24,0xfa,0x35,0x19,0x8a,0x37,0xfa, +0x44,0x44,0x07,0x11,0xbb,0x4d,0x3f,0x5b,0x7b,0xbe,0xfb,0xb2, +0x4a,0x22,0x05,0x51,0x20,0xba,0x0d,0x63,0x7f,0x5f,0x7a,0x15, +0x95,0x65,0xd6,0xdb,0x83,0x74,0xa4,0x87,0xe3,0xa0,0x14,0xd6, +0x8a,0xea,0x69,0x21,0x68,0xf7,0x31,0x53,0x78,0x7b,0x5a,0xb0, +0xc6,0x8c,0x12,0xc7,0xe7,0x8d,0x0d,0xf9,0xd5,0x69,0x2a,0xf9, +0x37,0x9f,0xa7,0xbc,0x14,0xc3,0xd7,0x2d,0x1e,0xda,0xcb,0x74, +0x5d,0x70,0xc6,0x1e,0x69,0x6a,0x6a,0xc2,0xb9,0x5c,0xd5,0x26, +0xc7,0x0b,0x0b,0xe7,0xd9,0xbb,0x9b,0xc5,0x48,0x62,0x1c,0x2b, +0x7d,0xfa,0xa3,0x71,0xc8,0x4a,0x1c,0xb6,0x6c,0x86,0xac,0xd2, +0x89,0xab,0xab,0x68,0xbb,0x50,0x90,0xce,0x5c,0xee,0xb9,0x9c, +0x70,0x5e,0xdc,0x9a,0xb9,0x65,0xf5,0x5e,0xe9,0xe1,0x6d,0x87, +0xb6,0x1d,0x88,0x60,0xfa,0xa8,0x93,0x69,0x71,0xc9,0x67,0xce, +0x31,0xf7,0x6b,0x3b,0x4a,0x5b,0xc5,0xfd,0x95,0xeb,0x50,0xa9, +0x40,0x7a,0x33,0x51,0x04,0xb3,0x37,0x1b,0xde,0x9c,0x23,0x16, +0xc6,0x83,0x06,0x5b,0x52,0x70,0xae,0xb1,0x39,0x27,0x32,0x30, +0x2c,0x3a,0x2a,0x30,0x52,0xb2,0xe2,0xa8,0x57,0x52,0x99,0xaa, +0x12,0xff,0x20,0x97,0xc5,0x19,0x96,0x79,0x7d,0xdd,0x9d,0xad, +0x30,0xb7,0x41,0xba,0xee,0x88,0xf1,0x41,0x53,0x49,0xef,0x51, +0x51,0x7c,0xff,0xb7,0xdd,0xed,0xaa,0x7d,0x69,0xcf,0xce,0xbd, +0x4b,0xdd,0xdd,0xcd,0xcd,0x8e,0xd2,0xdc,0xa6,0x1b,0xc1,0x3c, +0xdf,0x6e,0x5b,0xb7,0x46,0xac,0xb9,0xc8,0x79,0xad,0xa9,0xf4, +0x40,0x6c,0x79,0xc7,0x85,0xfb,0x65,0x2f,0x89,0xed,0x1e,0x85, +0x45,0x27,0x60,0x62,0xc2,0xc1,0x6e,0x0e,0x27,0xec,0x42,0xb5, +0x03,0xc8,0x1c,0x49,0x2c,0x3b,0x5b,0x96,0x50,0x61,0x90,0xc8, +0xed,0x70,0x8f,0xf6,0x88,0xf6,0x64,0x96,0x6a,0x1f,0x8b,0x25, +0x32,0x31,0xe9,0x3a,0x7c,0xf3,0xc8,0xbd,0x18,0x15,0x1b,0x82, +0x2e,0x91,0x9e,0x87,0xa3,0x9a,0x37,0x72,0xad,0xb7,0x53,0x33, +0xcb,0x8a,0x98,0x5b,0xcf,0xef,0x95,0x5e,0x17,0xb7,0x95,0x04, +0x1a,0x9f,0x96,0xa2,0xab,0xf1,0x72,0xad,0xd9,0xaa,0x38,0xf4, +0x47,0x27,0x30,0x7b,0x04,0x83,0x4f,0x9d,0x7d,0x2d,0xd9,0xd7, +0x2d,0x8a,0x9e,0x33,0x75,0x9f,0x96,0x58,0x09,0xa6,0xf8,0xb3, +0x75,0x20,0x4e,0xef,0xad,0xb8,0xcb,0xfc,0xdc,0x78,0xf5,0x72, +0xb7,0xf8,0x6e,0xc6,0x06,0x94,0xc4,0x48,0x71,0x69,0xd5,0x5a, +0x82,0x71,0xc6,0x3c,0x24,0x8a,0xdd,0x5b,0x2d,0x31,0x4c,0x17, +0x61,0xa0,0x87,0xe5,0x02,0x2d,0xf1,0xea,0xed,0x6d,0x20,0x3e, +0x2a,0x85,0x39,0xc7,0x36,0x5c,0x9f,0x26,0x36,0x30,0x5f,0xb7, +0xda,0x55,0xba,0xff,0x68,0x1d,0x8c,0xbe,0x06,0x2b,0x7a,0x61, +0xad,0x8a,0x7e,0x86,0x1e,0x9a,0x98,0x29,0xbe,0x13,0x58,0xab, +0xe2,0x3b,0x6f,0x3d,0x8e,0xde,0x34,0x95,0x04,0xa8,0x5e,0x08, +0x66,0x41,0xe9,0xda,0x0b,0x42,0xdd,0x87,0x30,0x57,0x06,0x58, +0x43,0xfe,0x3a,0xed,0xbd,0x4c,0x5b,0x6f,0x92,0x03,0x43,0xc2, +0xcb,0x6b,0x16,0x64,0xb7,0xef,0xbc,0x85,0x25,0xaa,0xa0,0x62, +0x80,0xca,0x34,0x4e,0x36,0xd3,0xc3,0x05,0xa6,0x12,0x25,0xfe, +0x19,0x3c,0x63,0x61,0xc6,0x5d,0x20,0x38,0xf9,0x12,0xa8,0x30, +0xd7,0x07,0x92,0x0d,0xe4,0x56,0xb4,0xc7,0xd4,0x79,0x73,0x50, +0xd5,0x8c,0xc1,0x5f,0x05,0x0d,0x16,0x36,0x3e,0x7b,0x4b,0x66, +0x1a,0xa0,0x0a,0x6a,0xba,0x38,0x8d,0x46,0xb3,0x55,0x1a,0x68, +0xb7,0x86,0x04,0x8d,0x7d,0x72,0x11,0x8b,0xf3,0x71,0x09,0x86, +0xa3,0x32,0x06,0xac,0x2d,0x30,0xe0,0x3e,0x54,0x7c,0xaa,0xfd, +0xad,0x83,0x11,0x26,0xf6,0xf3,0x86,0xf4,0xd3,0x96,0x07,0x5d, +0xbd,0xfd,0x04,0xdd,0x76,0xc8,0x53,0x59,0x34,0x47,0x3b,0xcc, +0xc2,0x05,0x78,0x76,0x51,0xbe,0x21,0x07,0xe3,0x2e,0xc3,0x84, +0x0e,0xf8,0xfa,0x36,0x23,0x84,0xde,0xe6,0x33,0xe9,0xf7,0xd7, +0x7f,0xbe,0xf7,0xf8,0x19,0x59,0x46,0x96,0x7c,0x38,0xab,0x87, +0x52,0x4c,0xc7,0xc4,0x7e,0xb0,0xe3,0x37,0x51,0xdb,0x09,0x3d, +0x1e,0x42,0xc2,0xf7,0xb7,0x96,0x79,0x32,0x0e,0xaa,0xfa,0x60, +0x3c,0xac,0x3a,0x06,0xbd,0x0c,0xe6,0x50,0x8a,0xbb,0x2f,0xb0, +0x3a,0xb8,0x0c,0xef,0x60,0xf3,0x2d,0xd8,0xc1,0xdf,0xa2,0xa2, +0xf0,0x02,0x8e,0x23,0x69,0xbb,0x5d,0xbb,0x80,0xdc,0xfd,0xe6, +0x19,0x09,0x7a,0xeb,0xe2,0x78,0x86,0x41,0x45,0x71,0x8f,0xef, +0x92,0xd9,0x1b,0x78,0x9d,0x9f,0x08,0x45,0x37,0x84,0x01,0x03, +0x48,0x13,0x26,0x62,0xa3,0xa2,0x28,0xeb,0xa4,0x6b,0xec,0x0d, +0x61,0x0c,0xbf,0x03,0x5e,0xdf,0x18,0x08,0x33,0x80,0xfb,0xc2, +0x0e,0x61,0x10,0xb9,0x2e,0x9f,0xc4,0x87,0xb2,0xa0,0xae,0x8f, +0xea,0xc2,0x24,0x23,0x00,0x5a,0x0d,0x27,0xa2,0xca,0x74,0x9c, +0xb9,0x4a,0x81,0xee,0xb5,0x7e,0x00,0x19,0x4c,0xb9,0x08,0xaa, +0x8c,0x20,0xc6,0xe5,0x74,0x8a,0x91,0x08,0x66,0x50,0xd5,0x99, +0x19,0x55,0x52,0x7e,0x06,0x58,0x5f,0x27,0xad,0x57,0x12,0xba, +0x04,0xc6,0x32,0x34,0x16,0xb6,0x1b,0xf1,0x16,0x34,0x21,0x0d, +0x5a,0x04,0xa8,0x8e,0x43,0xe3,0x59,0x17,0x4c,0x39,0xf0,0x00, +0x0a,0x02,0x41,0xaf,0x16,0x16,0x32,0xf1,0xc2,0x1e,0x74,0xa2, +0x92,0x0c,0x45,0xa0,0x43,0xd5,0xe7,0x65,0xd4,0x49,0xf9,0x83, +0xb0,0x8d,0xf4,0xc0,0x07,0xf0,0x1f,0xd9,0x33,0x34,0xe8,0xcb, +0x50,0x97,0xde,0x81,0x55,0x46,0x70,0x81,0xde,0x8e,0x87,0x67, +0xe1,0x37,0x68,0x89,0x54,0x95,0x05,0x07,0x2e,0x8a,0x97,0xd9, +0x60,0x71,0x2a,0xe4,0x30,0x50,0x1f,0x48,0xe1,0xd8,0xfd,0x38, +0x7d,0xd7,0x4a,0x89,0xde,0xee,0xc0,0x88,0x15,0x62,0x1c,0x4d, +0x25,0xe9,0x8b,0x60,0x38,0x05,0x54,0x4d,0xc9,0xfb,0x14,0x69, +0xd2,0xf7,0x27,0x60,0x3e,0x31,0x80,0x6e,0x32,0xb7,0xef,0xe4, +0x35,0xec,0x79,0x87,0x12,0x93,0x1c,0xfb,0xc6,0x2c,0x2e,0xa4, +0xd9,0xbb,0xdb,0xb7,0x91,0x41,0x4d,0x19,0x5b,0xe4,0x52,0x64, +0x95,0xe9,0xc8,0xa0,0xfc,0x0c,0xf5,0xcf,0x1e,0xb6,0x9e,0x6e, +0xcc,0x0a,0x6d,0xf6,0xba,0xee,0xd7,0xa8,0x42,0x24,0xce,0x0f, +0x65,0x85,0xc1,0x9b,0xc2,0x61,0x03,0x3c,0x29,0x3d,0xd0,0x8b, +0x4f,0x7d,0xc2,0x60,0x93,0xde,0xfe,0x0c,0xdc,0x44,0x4e,0x4f, +0xc8,0xe0,0x59,0x69,0x3a,0x7a,0xe2,0x9f,0x37,0x9d,0xd4,0x87, +0x3f,0x97,0x17,0x60,0xf9,0xcd,0x53,0x81,0x70,0x9e,0x1f,0x54, +0x2e,0x52,0x92,0xb7,0xcb,0xef,0xb1,0x65,0xce,0xa5,0x16,0x79, +0x0e,0x0d,0xb9,0x5c,0x70,0x83,0xd7,0x55,0x9f,0x3a,0x66,0x2f, +0xfa,0xb0,0x5b,0x1b,0x37,0x5d,0xf5,0xad,0xb3,0x0b,0xe2,0x4a, +0x9d,0xcb,0x2c,0xb2,0xed,0x19,0x2c,0xc2,0x2e,0x36,0x9c,0xc4, +0xf2,0xd2,0x02,0x32,0xc0,0xf9,0xcd,0x61,0xb0,0x51,0x31,0xc0, +0x46,0x7c,0xea,0x4d,0x06,0x78,0x7a,0x5e,0x71,0xfa,0xef,0x07, +0xd8,0xdf,0x2b,0x52,0xe2,0xf5,0xe5,0xb3,0xd9,0xcc,0xf2,0x73, +0x15,0xe7,0x2e,0xe9,0x9f,0xe3,0x4c,0x70,0xde,0x4c,0xa2,0x35, +0xb5,0xc9,0xd5,0xb6,0xdc,0xdb,0x3b,0xbd,0xfd,0x1d,0xcf,0x19, +0x7e,0x3c,0xe5,0x8e,0x39,0x24,0x4a,0xdb,0x62,0xf7,0xa2,0x62, +0x62,0xcc,0xaf,0xdf,0x12,0x10,0xb3,0x2f,0x0d,0xde,0x2b,0x6a, +0xe6,0xca,0x9b,0xd8,0x12,0xc7,0x22,0xb3,0x2c,0x3b,0x22,0xda, +0xb0,0x26,0xdf,0x2e,0xff,0x06,0x06,0x57,0x59,0xb1,0xd9,0x9e, +0xd9,0xeb,0xd2,0xd6,0x13,0xcf,0xa0,0xfe,0xae,0xae,0x1f,0xff, +0x4c,0xcc,0x24,0xbc,0x08,0x9e,0x5c,0x3e,0xc7,0x85,0x37,0xfb, +0x74,0x6f,0x6e,0x60,0x94,0xe0,0x67,0xfe,0x37,0x36,0xaf,0x36, +0xff,0x5a,0xf6,0x1d,0x59,0x0a,0x67,0x8f,0x4b,0x16,0xe0,0x0c, +0xe2,0x80,0xc3,0x1a,0x1c,0xb9,0xfe,0xce,0x8e,0x5b,0x17,0xba, +0x19,0xc8,0xd6,0xa4,0xd0,0x63,0x2d,0x61,0x5d,0x6e,0x1a,0x92, +0x0a,0x33,0x11,0xf8,0xbd,0xfd,0x09,0x54,0xe0,0x80,0xea,0x77, +0x90,0xd2,0x43,0xf4,0x7f,0x5f,0xde,0xc6,0x16,0x3b,0x16,0x99, +0x66,0xdb,0xff,0xeb,0x24,0xfd,0xd1,0x9e,0x0d,0x6f,0x22,0x23, +0x34,0xda,0x6e,0xe5,0x8a,0x1c,0x8b,0xcd,0x32,0x6c,0x19,0xc1, +0x17,0x64,0xec,0xdf,0x3d,0x80,0x70,0x8d,0xfe,0x32,0x3b,0x22, +0x8e,0x1b,0xca,0x72,0xb3,0x81,0xa5,0x06,0xfc,0x5b,0x21,0x58, +0xf8,0xb3,0x01,0xff,0x67,0x4d,0xe2,0x6f,0x61,0x72,0x63,0x36, +0xa2,0xd5,0xaf,0x67,0x73,0xb3,0x6d,0x18,0x57,0x6c,0x5b,0x60, +0x94,0x69,0xc3,0x58,0x46,0x2a,0x2e,0xdd,0x08,0x68,0xb1,0x0e, +0xe5,0x8a,0x6c,0x0b,0x8d,0xd2,0x6d,0x98,0x80,0x01,0x31,0x4b, +0x1a,0xcf,0x35,0xe0,0xbf,0x17,0x82,0x84,0xdf,0xf5,0xf9,0xdf, +0x49,0x63,0x79,0x08,0xff,0x84,0x05,0x57,0x3d,0x74,0xc5,0xef, +0xc0,0x4e,0x8f,0xc4,0x14,0x4b,0x43,0xb0,0xc4,0x03,0x7d,0x70, +0x00,0xbe,0x5b,0x44,0x63,0xd8,0xac,0xe9,0x18,0x69,0x2c,0x29, +0x24,0xfe,0xb8,0xff,0xe6,0xe7,0xe7,0xd6,0x67,0x55,0x5f,0x80, +0xb5,0x62,0xd1,0x7f,0x22,0x96,0x93,0x6b,0x9f,0x6d,0x72,0xce, +0x46,0xf1,0x62,0x50,0x4b,0x70,0x77,0x70,0x13,0xe3,0x86,0x1b, +0xd8,0xed,0x2d,0x41,0xd7,0xb6,0x36,0x5b,0x45,0x72,0x39,0x76, +0x39,0x26,0x29,0xb6,0x0c,0xea,0xc0,0x74,0xf6,0xef,0xed,0x1f, +0xad,0xc1,0x95,0xb8,0x6c,0xa6,0x5c,0x8d,0x9d,0xd9,0x80,0x54, +0xcd,0xa2,0xbc,0x60,0x63,0xee,0xe5,0x16,0xa0,0xd6,0xbd,0x72, +0x62,0xf0,0xba,0xf0,0x9a,0xe5,0x07,0xb5,0x40,0x10,0x81,0x2e, +0xd3,0xe0,0x81,0x59,0x15,0x87,0x53,0x48,0xd0,0x72,0x26,0xc1, +0xf3,0x8d,0x33,0x43,0x52,0xef,0x4b,0x56,0xbd,0x0e,0x87,0x57, +0xcf,0xcf,0x0d,0x31,0xe6,0x5e,0x05,0x01,0xe5,0xfa,0x7a,0x1d, +0xa3,0xf4,0x87,0xb1,0x5c,0x8f,0xfd,0xf2,0xfd,0xb4,0xfd,0x16, +0xee,0xcb,0x37,0xd6,0x8c,0x4d,0xf0,0xbf,0xff,0x9e,0xba,0xb2, +0xe0,0x9f,0x38,0xa8,0xb8,0x83,0xc5,0x41,0x9f,0x26,0x3f,0x5b, +0xd4,0x75,0xff,0x55,0xf3,0x87,0x2c,0x18,0xc6,0x9c,0x2c,0x89, +0x2f,0x2c,0x52,0x15,0x1e,0x1b,0xf0,0xc7,0x28,0x1b,0x3c,0x41, +0x9c,0xd4,0x1b,0x7b,0x70,0xd4,0x79,0x23,0x0e,0x16,0x77,0xc1, +0xa4,0x97,0x9f,0x60,0xf0,0x0f,0x26,0xef,0x35,0x61,0x08,0x0e, +0x21,0x1a,0xbf,0x2b,0xbf,0xc1,0x96,0xda,0x17,0x9b,0x64,0xdb, +0x12,0xdb,0x0a,0x6d,0xf6,0x21,0x1e,0xcf,0x44,0x62,0x00,0x1b, +0xde,0xe2,0x7d,0xdd,0xbf,0xc9,0x36,0x84,0x2b,0xb6,0x2f,0x31, +0xce,0xb4,0x65,0xe6,0x1e,0x62,0xff,0xd2,0x71,0xbf,0x01,0xbf, +0xef,0x73,0xc7,0xae,0xa4,0xe3,0xeb,0x5f,0x3a,0x5e,0xd2,0x05, +0x92,0xef,0x3f,0xc0,0x90,0x1f,0x4c,0x3e,0x2e,0x85,0xa1,0x38, +0xf4,0x72,0x0b,0x87,0x83,0x09,0x1c,0x1b,0xf4,0x7c,0x61,0xd7, +0xed,0x1f,0x1b,0xdf,0x67,0xc1,0x50,0x92,0x2d,0xc6,0x92,0x08, +0xcd,0x1b,0xf7,0xda,0xcd,0x5c,0xb3,0x1a,0xc7,0xad,0x56,0xb9, +0x68,0x05,0x92,0xe7,0x6f,0x7f,0x6b,0x87,0x89,0x2a,0x3b,0x7b, +0x84,0x63,0x2b,0x45,0xb0,0x43,0x86,0x87,0x69,0xdc,0xb3,0xe9, +0xb4,0x3e,0x44,0x94,0x89,0xb0,0x96,0xc6,0xaf,0x9a,0x1c,0x81, +0x20,0xe6,0x8f,0x37,0x10,0x28,0x2d,0xbf,0xc2,0x7b,0x04,0x60, +0xaf,0x94,0x5b,0xb1,0xa1,0xf5,0x7e,0x6d,0x9b,0x6b,0xec,0x43, +0xb8,0x22,0x97,0x42,0x9b,0x6c,0x47,0xc6,0x7c,0x27,0x1b,0xd6, +0xe0,0xd7,0x1e,0x50,0x43,0x9c,0xa1,0xd0,0xb5,0xc8,0x5a,0x11, +0x15,0xf5,0x85,0x65,0xec,0x5f,0x07,0xd8,0xd9,0xc3,0xfd,0x77, +0x07,0x80,0x36,0xfa,0x6f,0xe6,0xa8,0x04,0xaf,0x7c,0x58,0xf8, +0x9e,0x90,0x80,0xc9,0x70,0xa0,0x86,0x1f,0xaa,0x7d,0x86,0x73, +0xc5,0xdf,0x49,0x76,0xf0,0xc2,0xdb,0x38,0x89,0xa9,0xe4,0x07, +0xb1,0xbe,0xbf,0xdb,0x83,0xb2,0xfd,0x5b,0xa3,0xcd,0x5c,0xf3, +0xac,0x5a,0x1c,0x53,0x3a,0x89,0x68,0xc5,0x51,0xee,0xca,0x6e, +0xad,0xf7,0x6d,0xdd,0x5c,0x6d,0xb7,0x95,0x2b,0x76,0x2d,0xb2, +0xc9,0x71,0x62,0xcc,0x76,0xb0,0x21,0xf5,0xbe,0x6d,0x01,0x35, +0x36,0x41,0x5c,0xf1,0xba,0x62,0x1b,0x32,0x47,0x21,0x10,0x63, +0xff,0x83,0xf6,0x37,0x85,0x59,0x2c,0x5c,0x83,0x49,0xe4,0x2f, +0xa0,0x1d,0x6a,0x75,0x92,0x38,0x1b,0x2c,0x25,0x63,0x5a,0x61, +0x03,0x2a,0x13,0x39,0x6a,0xc9,0xd5,0x49,0xc4,0x4b,0x2b,0x4f, +0xbd,0x64,0xa0,0x08,0x4b,0xea,0xb3,0x88,0xb7,0xff,0x25,0x2c, +0xdd,0xb8,0x75,0xe5,0x05,0xc3,0x4f,0xa2,0xb6,0xe1,0x48,0xb7, +0x69,0xb2,0x25,0x7a,0x6d,0x4b,0xba,0x34,0x5b,0xdc,0x1d,0xb8, +0x47,0x0e,0x2f,0x8c,0x6e,0x58,0x2d,0x58,0x8c,0xa3,0x8d,0x50, +0x7d,0x7d,0x11,0x51,0xd9,0x9b,0x37,0xb0,0x15,0xf6,0xa7,0xc3, +0x47,0x46,0xf1,0xfe,0xcf,0x35,0xb6,0xc4,0xae,0x88,0xe8,0xb9, +0x29,0x93,0x0b,0x6b,0xf6,0xeb,0xf1,0x6f,0x62,0x70,0xb5,0x2d, +0x9b,0xe3,0x91,0xe3,0x94,0xe6,0xca,0x08,0xd3,0xa9,0xff,0xf1, +0x70,0x2f,0x7e,0x22,0x91,0x71,0x5b,0x31,0x3c,0xbf,0x98,0xca, +0x85,0xb7,0xf8,0x92,0x68,0x42,0x16,0xd2,0xa8,0x28,0xe0,0xe4, +0x49,0xc3,0xe0,0xc4,0x5f,0x93,0x9f,0x65,0x84,0x5f,0xe3,0x50, +0xe6,0x86,0x91,0x11,0x18,0xb7,0x37,0xce,0x80,0xfb,0x3d,0xf6, +0x7d,0xfc,0x9b,0x53,0x0c,0xba,0x0a,0xe3,0x8c,0xf8,0x71,0xdb, +0x68,0xd4,0x33,0x99,0x8f,0xcb,0x75,0x24,0x15,0xe6,0x22,0xd0, +0xbf,0xff,0x18,0x86,0x83,0xa7,0x6a,0x2a,0xfc,0x59,0x91,0x7a, +0x8b,0xe4,0xd3,0xd9,0xff,0xba,0x93,0xf5,0x9f,0x3b,0xd9,0xfe, +0x1f,0x76,0x92,0x4c,0x3a,0xc1,0x3f,0xd3,0xd0,0x0a,0x61,0x6c, +0xe1,0xba,0x3c,0xdb,0x2c,0xc7,0xa6,0x6c,0x2e,0xb4,0x3e,0xa0, +0x25,0xb0,0x9a,0xd9,0x82,0x8a,0xfd,0x2c,0x03,0xda,0xb6,0x54, +0x13,0x57,0xc8,0x5f,0x97,0x6f,0x9b,0xa1,0x78,0xed,0xed,0x1c, +0xfc,0xca,0x46,0x7f,0x17,0xfc,0x32,0xe0,0xb5,0x5e,0x14,0x57, +0xb0,0x24,0x57,0x23,0x79,0x31,0x33,0x53,0x98,0xc8,0x42,0x33, +0x89,0xaa,0x34,0x38,0x56,0x40,0xa7,0xce,0x29,0xce,0x1b,0x6b, +0x66,0x10,0x8e,0x5c,0x81,0xa3,0x99,0x1d,0x50,0xc7,0x86,0xfd, +0x10,0xf0,0x83,0xdf,0x53,0x59,0x38,0x57,0xba,0xa4,0x60,0x7e, +0xa6,0xa2,0xa0,0xfa,0x79,0xde,0x9f,0x0d,0x7f,0x1f,0xf8,0x69, +0xd3,0x1b,0x59,0x04,0x57,0x3e,0xbb,0x70,0xda,0xb9,0xa9,0x0c, +0x8e,0x15,0xb6,0xb2,0xf0,0x91,0x18,0xdc,0x14,0x38,0x50,0xcb, +0x8b,0x88,0xc1,0xb9,0x21,0x4f,0xc8,0x8f,0x17,0xbe,0xc0,0xc9, +0x8c,0x2f,0x3f,0x82,0xdd,0xfa,0x61,0x23,0x0c,0xf5,0xf8,0xc9, +0x70,0x2b,0x57,0x35,0xa7,0x6c,0x72,0xf6,0x14,0xc5,0xd7,0x2c, +0x72,0x8f,0xff,0x8e,0xbd,0x61,0x2a,0x9a,0xff,0xfb,0x11,0xd7, +0x6d,0xfc,0xf7,0x5d,0xc2,0x54,0x61,0x29,0x0b,0x3f,0x82,0x1a, +0x7c,0x03,0x91,0x2d,0x90,0x4d,0x6c,0xd0,0x11,0x13,0x88,0x0d, +0xba,0xe2,0x3d,0x9c,0x48,0x92,0x9a,0xb5,0x7c,0x07,0x2b,0x93, +0x8f,0xef,0xa5,0x07,0x02,0xf0,0x28,0xab,0xcf,0x8f,0x27,0x98, +0x69,0x95,0xfe,0x3c,0xd4,0xd6,0x95,0x5c,0x20,0xd1,0xd6,0xfc, +0xfe,0x0b,0x18,0x09,0x6e,0xaa,0x57,0xe0,0x4f,0x37,0x49,0x30, +0x7f,0x28,0xbf,0xc2,0x96,0xda,0x14,0x1b,0x64,0x7d,0x36,0xb0, +0x16,0xdf,0x9b,0x7e,0x2d,0x4c,0x08,0x86,0xb0,0xe1,0xad,0x3e, +0xbd,0xfe,0xad,0xd6,0x21,0x5c,0x89,0x4d,0x89,0x41,0x86,0x35, +0x33,0xc0,0xc2,0x34,0x56,0xc6,0x97,0xf5,0xd2,0x78,0x04,0x7b, +0xd9,0xff,0xbc,0xcf,0x81,0x0e,0x7d,0xd2,0xed,0xef,0xd0,0x42, +0x10,0xed,0x23,0x5c,0xd5,0x8f,0xea,0x4d,0x0c,0x14,0xe8,0x0e, +0xb4,0xf6,0xf3,0x1b,0x68,0x10,0xaf,0x83,0x85,0xfa,0x30,0x6b, +0x15,0x31,0xed,0x0f,0xfc,0x00,0x1b,0xd2,0xb2,0xa9,0xc7,0xa7, +0x89,0x48,0xa6,0xcc,0xae,0xd4,0x28,0x87,0xe4,0xc9,0x04,0x42, +0xba,0xfe,0xcd,0xad,0x45,0x84,0x60,0xfc,0x4d,0x4f,0x34,0xcf, +0x92,0x5c,0x13,0xda,0xba,0x51,0xb1,0x9f,0x41,0x30,0x77,0xde, +0xee,0xbc,0x51,0x96,0x35,0x51,0x59,0x17,0x5f,0xce,0xc2,0x21, +0x1d,0x3c,0x24,0x4c,0xd4,0xe7,0x27,0x3a,0xd3,0xe8,0x6a,0xa8, +0x86,0x16,0x2b,0x25,0x17,0x8c,0x45,0xe0,0xfa,0xe2,0x39,0x8c, +0x86,0xdd,0xaa,0x0d,0xf0,0x49,0xb1,0xe6,0xfb,0x3c,0xcf,0xf6, +0x0e,0x2c,0x95,0xd1,0xf2,0x1d,0xc2,0x79,0x72,0xd6,0xa6,0xa8, +0xa5,0x60,0x22,0xf7,0x61,0x0d,0xf8,0x42,0x3a,0x12,0x95,0x1c, +0x90,0x5a,0x3e,0xcb,0xb0,0x55,0xbf,0x59,0xa7,0xc1,0xdd,0x96, +0xeb,0x73,0xbc,0x69,0x7f,0xcd,0x76,0xee,0x5c,0x1c,0xa3,0x8d, +0x33,0xdd,0x15,0x58,0x42,0xa3,0x1e,0xb8,0x07,0xef,0xde,0x5f, +0xb1,0x6f,0xb7,0x6b,0xb6,0xad,0x69,0xe1,0x6c,0x5b,0xac,0x9b, +0x2c,0x1b,0xde,0xc3,0x98,0x4e,0x98,0x7b,0x06,0xd6,0x92,0xb5, +0xf5,0xc8,0xa7,0xb2,0xd8,0x00,0x33,0xf4,0x48,0xbe,0xaf,0x33, +0xe4,0xef,0x53,0xc4,0x4c,0x96,0xe2,0x19,0x1c,0x8d,0x99,0xe6, +0x59,0xc6,0x1c,0x8c,0xca,0x83,0x51,0x15,0x30,0x98,0x80,0xc5, +0x97,0xbd,0x3c,0x4d,0xc3,0x98,0x9b,0x9f,0x9e,0xf5,0x7c,0x62, +0x88,0x29,0xdd,0x61,0xdf,0x6e,0x7e,0xe5,0xfd,0x7a,0x7d,0xf6, +0x75,0x6e,0xee,0xc5,0xf9,0xa5,0xb3,0x8a,0x88,0x46,0x75,0x0f, +0xb3,0xd0,0x4b,0x18,0xb7,0x21,0xec,0x85,0xaf,0xf9,0x31,0x7a, +0x39,0x1c,0x8e,0x44,0x81,0xa0,0xf3,0x50,0xec,0x46,0x25,0x72, +0x83,0xba,0x32,0x61,0xda,0x6e,0x37,0xc0,0x3b,0x13,0xae,0xe8, +0xc4,0x71,0xe1,0xd8,0x60,0x8c,0x0e,0x38,0x09,0x6d,0x18,0x3e, +0x47,0xbe,0x92,0xcd,0xc4,0x2b,0xfd,0xe8,0x0d,0x52,0x74,0xbb, +0x5e,0xc9,0xe1,0x44,0xb0,0xd5,0x07,0xe7,0x30,0xa8,0x21,0xd6, +0xb9,0x55,0xbe,0x80,0x25,0xb0,0xf5,0x9a,0x6f,0x03,0xd1,0xc1, +0x67,0x20,0x6b,0xa7,0xd8,0x1a,0x42,0x81,0x2f,0xfd,0x1b,0x6d, +0x82,0xb9,0x52,0x87,0x52,0x93,0x2c,0x5b,0x66,0xc0,0x98,0xa4, +0xc0,0x7f,0x6c,0x08,0xf9,0x1b,0x82,0x33,0xfe,0xfb,0x9b,0x4a, +0x0c,0xf8,0x0d,0x8c,0xf9,0x07,0x47,0xe2,0x67,0x3c,0x64,0x57, +0xf9,0x17,0xde,0x91,0x82,0x0b,0x0d,0x7a,0x05,0xe0,0xd6,0x04, +0x9a,0xbd,0x21,0xd7,0x39,0x5c,0x68,0x80,0x8e,0x76,0xa8,0xb9, +0x95,0x81,0x7e,0x5d,0xe1,0xd9,0x97,0xc4,0xc2,0x49,0x78,0xc3, +0x1e,0x42,0x65,0xca,0xe5,0x45,0xac,0xe2,0x9d,0xd4,0x6c,0xfb, +0xa6,0x1c,0xee,0xcb,0x5b,0xaa,0x0c,0x2e,0xd7,0x63,0x4b,0x9c, +0x4a,0xcc,0x32,0xed,0x5a,0x48,0xb4,0x69,0xf2,0xee,0x22,0x58, +0x51,0x08,0x10,0x26,0xb1,0xb0,0x34,0x17,0xcc,0x6a,0x41,0xa3, +0x33,0xa4,0x87,0x43,0x75,0x73,0xd4,0x77,0xc1,0xd9,0xa1,0xff, +0xae,0x57,0xc1,0x98,0xfa,0x3c,0x0d,0xa5,0x3f,0x74,0xe4,0x6b, +0xd8,0xbf,0x2e,0xdb,0x35,0xdd,0xeb,0x7c,0xb8,0x44,0xd1,0x4a, +0xe6,0xfa,0x5f,0xb5,0x52,0x4c,0xfe,0xaf,0xc3,0x84,0x5e,0xe3, +0xf6,0xa4,0x66,0x1c,0xcc,0x16,0x2b,0xe4,0x27,0x45,0xc7,0x13, +0xec,0xbf,0x11,0x97,0x42,0x88,0x12,0xc5,0xbe,0x1d,0x13,0x58, +0xf9,0x60,0x2a,0x1c,0xaf,0x90,0x30,0x60,0x8a,0x8f,0x34,0x8a, +0xf5,0x38,0x7e,0xe8,0x6f,0x84,0xb3,0x45,0x9f,0xe4,0x27,0x32, +0x03,0xd6,0x64,0xa1,0x2f,0xe5,0x4f,0x14,0x0b,0x35,0xcb,0x76, +0x68,0xcc,0xfe,0x97,0x85,0x2e,0x91,0xb1,0xe9,0x9b,0xd3,0xbd, +0x53,0xbd,0x99,0x01,0x5d,0xd9,0xbf,0xf4,0x60,0x8e,0x0f,0x35, +0x0a,0xf5,0x39,0xc0,0xb7,0x30,0x03,0x42,0x13,0xf9,0xd1,0x27, +0x76,0xc4,0xef,0x8c,0xdf,0xd9,0xfc,0x45,0x18,0xfe,0xf5,0x8a, +0xef,0xc1,0xe5,0xdf,0xb3,0x8a,0x55,0xed,0x39,0xba,0xf7,0xd8, +0x5e,0xa9,0x20,0xc8,0xf8,0x3f,0x53,0x21,0xc4,0x18,0x27,0xa2, +0x2e,0xf6,0xa8,0x17,0xea,0x71,0xf0,0xf0,0x0d,0x2c,0x06,0xe7, +0x7c,0x78,0xcd,0x1c,0x3c,0x9b,0x74,0x24,0x59,0xfc,0x57,0x13, +0x90,0xf6,0xe3,0x78,0xf6,0x5f,0xe6,0xfe,0x37,0x06,0xf0,0xff, +0xbb,0x6f,0xa4,0xf9,0xf5,0x91,0x6c,0x43,0xa6,0x82,0xa6,0x26, +0xf1,0x83,0xae,0x0b,0x83,0x60,0xa9,0x8c,0xc4,0x88,0x3f,0x19, +0xc1,0x9f,0x84,0x74,0x5c,0x42,0x27,0x1b,0x8b,0x50,0xf6,0x81, +0xed,0xfd,0xd0,0x02,0x13,0x0a,0x61,0x8c,0x41,0x2a,0x17,0x88, +0xa3,0xed,0xf1,0x2b,0xdd,0x59,0x8c,0xfc,0x99,0xb2,0xe1,0x07, +0x7b,0x18,0xe9,0x03,0x23,0xf5,0x23,0xb9,0x72,0xfc,0xba,0x05, +0xc7,0x5d,0xc7,0x41,0xc4,0x9f,0xfd,0xe4,0x76,0x6c,0x78,0x63, +0xe0,0x95,0x2d,0x75,0x84,0x11,0xe4,0x3b,0xe5,0x59,0xa6,0xdb, +0x33,0x06,0xca,0x91,0x8d,0x01,0x57,0x83,0xeb,0xac,0xc3,0xb8, +0x3c,0x72,0x25,0x8d,0xe0,0xdc,0x4f,0x03,0x06,0xff,0xec,0xa1, +0xe5,0xaf,0xfe,0xae,0xcd,0x63,0x84,0xe9,0x03,0xeb,0xff,0x32, +0x85,0xd3,0xf0,0xea,0x3a,0xbe,0x82,0x95,0x32,0xc2,0xea,0x3f, +0x4f,0x21,0xf9,0x1f,0x9c,0xc2,0x07,0xf9,0x48,0x56,0x6e,0x41, +0xe9,0xe3,0x28,0x54,0xc2,0xaf,0x70,0xa6,0xba,0x7d,0x93,0x6d, +0x83,0x5d,0xad,0xb3,0x13,0xa7,0xf8,0x9d,0x36,0xb0,0xa8,0x02, +0x0c,0x7e,0xd3,0x50,0xcf,0x39,0x5c,0xb1,0xee,0xb4,0xbc,0x0a, +0x73,0x3f,0x80,0x14,0xbe,0x79,0x00,0x73,0x99,0x6b,0x03,0x99, +0x24,0x03,0x04,0xc8,0x65,0x2c,0xec,0xdd,0x09,0x56,0x21,0xb0, +0xd8,0x3f,0xb1,0x8f,0x43,0xad,0x42,0xb4,0xc9,0xc4,0xe8,0x44, +0xe6,0x00,0x22,0x0b,0x0e,0x3b,0x61,0x55,0x04,0x2c,0xf6,0x51, +0xbc,0xce,0xa1,0x5d,0x8a,0x1a,0x69,0xe8,0x94,0xc8,0x4c,0x13, +0x46,0xb3,0x70,0x6c,0x3b,0x9c,0xdb,0x04,0xa6,0x9e,0x67,0x49, +0x58,0x30,0xad,0xc4,0xa4,0x72,0x3c,0x95,0x42,0x94,0x31,0xbd, +0x88,0x95,0xc1,0xb2,0x15,0xb0,0x40,0x1b,0xbe,0x32,0xf5,0xe7, +0x6a,0x57,0xd5,0xcf,0xab,0x9d,0x81,0xea,0x61,0x68,0xb0,0x0d, +0x57,0xed,0x7c,0x04,0xc6,0xb7,0xc1,0xf9,0x01,0x24,0xea,0xa5, +0x71,0xab,0x31,0x65,0x19,0xfa,0x2c,0x42,0x9b,0x39,0x07,0xb8, +0x78,0x7d,0x08,0x49,0x86,0xd4,0x6c,0xf0,0x2f,0x50,0x49,0xf6, +0x4e,0xf6,0x4e,0xf2,0x26,0xc2,0x7d,0x02,0x66,0xac,0xc9,0xd5, +0xd5,0xd7,0x56,0x74,0xf6,0xc2,0x90,0x56,0x18,0x77,0x09,0xd4, +0xf4,0xb2,0x38,0x0f,0xfc,0xc6,0x91,0xe0,0xb8,0x69,0xf3,0x6f, +0xa8,0x77,0x2d,0x6c,0xf4,0xb4,0xe2,0x5e,0x38,0xfe,0x6c,0xf2, +0x5a,0x5f,0xf1,0x2c,0x7b,0xfc,0x74,0x5c,0x6d,0x54,0x41,0xd0, +0x9d,0x5e,0x1f,0x88,0x61,0xf0,0x27,0x98,0xfa,0xd0,0xfc,0x8e, +0x49,0xb7,0x05,0xa3,0x78,0x66,0x60,0xc5,0x0a,0x66,0x10,0xc5, +0x8b,0x7a,0x06,0x56,0x1b,0xc2,0x21,0x8c,0xc2,0x76,0x43,0x68, +0xc7,0x4d,0x14,0x11,0xa5,0x93,0x02,0x72,0xd7,0x5e,0xc3,0x06, +0x6a,0x95,0x6f,0x31,0x81,0xdc,0x1b,0x79,0x33,0x82,0xe2,0x34, +0x79,0x67,0xd6,0x0b,0xac,0x64,0xbb,0xca,0xd0,0x06,0xfd,0xdc, +0x12,0xf4,0x61,0x73,0xf5,0x73,0xc1,0xf6,0x66,0xe2,0x62,0xde, +0x1e,0x1e,0xf6,0xfa,0x6a,0x98,0xae,0x99,0xad,0xa3,0x52,0x63, +0x07,0xf4,0xf7,0xfd,0xbf,0x95,0xc2,0xd7,0x2a,0xdb,0xaf,0x10, +0xfb,0x9e,0xcc,0x7f,0xc7,0xba,0x43,0x98,0xde,0x8e,0x4b,0x18, +0x8e,0x09,0x76,0x67,0xf5,0x21,0xa1,0xf9,0x77,0xe1,0x72,0xdf, +0xd9,0x49,0x7c,0x35,0xaf,0xf1,0xcc,0x13,0x87,0xc8,0xd4,0xf0, +0x2b,0x0d,0x95,0x7a,0x7b,0x10,0xff,0xfe,0x14,0x46,0x5f,0x84, +0x69,0x2a,0xdb,0x6f,0x10,0xd7,0x5b,0xfb,0x82,0xcd,0x06,0x8d, +0x44,0x98,0x73,0x0c,0x66,0x30,0xc2,0x5e,0x03,0x7e,0x19,0x75, +0x08,0x47,0xec,0xc2,0x89,0x61,0x8a,0x7d,0x82,0xdd,0x0c,0xe4, +0x46,0x37,0x48,0x44,0x73,0x03,0x15,0xb6,0x08,0x6c,0x92,0xc1, +0xec,0x18,0x18,0x31,0xc2,0x23,0x03,0xfe,0x04,0xb9,0x6d,0x56, +0x14,0xae,0xdd,0x82,0xab,0x18,0xa1,0xda,0x40,0xde,0xa6,0xb8, +0xcd,0x22,0x9e,0xb5,0xba,0x29,0xa7,0x85,0x0e,0x43,0x7e,0x0f, +0x1a,0x08,0xc1,0x46,0x7c,0x30,0x5a,0x0b,0xdf,0x2a,0xb6,0x1c, +0xd8,0xd7,0xc8,0xea,0xf5,0xc9,0x77,0x0f,0x2c,0x30,0xe4,0x7f, +0xc2,0xed,0xc2,0x1d,0x23,0xfe,0x0e,0xc6,0x08,0xbf,0x93,0x7f, +0x02,0x3f,0xf9,0x1e,0x82,0x76,0xfa,0x09,0x88,0xd2,0xc0,0x2e, +0x56,0x3e,0x8d,0xda,0x84,0x9e,0xa8,0xa8,0x49,0x9d,0x66,0xa3, +0x78,0x20,0xd6,0xd0,0x09,0x16,0xa0,0x7b,0x06,0x2e,0x32,0x03, +0xa1,0x94,0x12,0x3f,0x24,0x92,0x85,0xe2,0x9b,0x84,0xc3,0x8e, +0x81,0x74,0x55,0x78,0xac,0x8b,0x8f,0x69,0x8c,0xc6,0x41,0xea, +0x78,0xda,0x54,0x62,0x03,0xb1,0x2c,0xbf,0x41,0x57,0xd8,0x40, +0x06,0x44,0x7e,0x0d,0x6b,0x8c,0x4e,0xea,0x53,0xa6,0xd8,0x30, +0x72,0x1b,0xd9,0x40,0xd6,0x35,0x1a,0x66,0x77,0x12,0xe8,0x34, +0xad,0x0b,0x9c,0x99,0x01,0x95,0x3e,0x16,0xb7,0x18,0xe1,0x08, +0x9c,0x38,0x47,0x52,0x63,0x2d,0x02,0xb5,0x4f,0x0f,0x09,0x6a, +0x8d,0x53,0x85,0x66,0x05,0x40,0xb9,0x18,0xcb,0xc2,0xe9,0x02, +0xf0,0x87,0x79,0xa0,0x04,0xdb,0x6c,0x2e,0x29,0x40,0x40,0x04, +0xae,0x27,0x90,0xdf,0x3f,0x90,0x91,0xcb,0xf4,0x06,0x8e,0x92, +0x9b,0xb6,0x1e,0x62,0x5f,0xf2,0x4d,0x0b,0xfb,0xe5,0xae,0x03, +0x16,0x03,0xae,0x74,0x9f,0x5c,0x85,0xe5,0x9b,0x84,0x1d,0x42, +0x13,0xa5,0x04,0xf6,0x50,0xca,0xf6,0xc2,0x26,0xde,0x99,0xda, +0x89,0xc7,0xe6,0xe2,0x54,0x3c,0xbd,0xac,0x88,0xac,0xa5,0xf2, +0x35,0xc1,0xda,0xfa,0xc7,0xe0,0xb5,0xf0,0x73,0x0c,0xa7,0xd8, +0x0f,0x41,0xca,0xde,0x82,0x13,0xfc,0x15,0x2a,0x0a,0xfb,0x91, +0x46,0x23,0xec,0x99,0x5f,0x42,0x6e,0x7b,0xff,0x09,0x54,0x21, +0x2c,0x96,0x9f,0xc6,0x0c,0xb8,0x92,0x25,0x0f,0x80,0x3b,0x8b, +0x87,0x7a,0xe1,0x10,0x44,0x76,0x63,0x24,0x54,0x83,0x4b,0x37, +0xba,0x80,0x8e,0x0c,0x75,0x84,0x6f,0x4d,0x60,0x09,0x56,0xa3, +0xb5,0x09,0x0d,0x09,0x20,0x67,0x21,0x87,0xfc,0x8f,0xe2,0x21, +0xe3,0x4b,0xf8,0x99,0x85,0xf1,0x57,0x61,0xa8,0xe2,0xa7,0x06, +0x43,0x99,0xee,0x01,0xa2,0xc9,0xb1,0xb4,0xcf,0xe2,0xf9,0x8b, +0x90,0x76,0x60,0x60,0x00,0x5f,0xb2,0x37,0x84,0x6f,0x78,0x4a, +0x57,0xa0,0x10,0x0c,0xc8,0x62,0x26,0xcb,0x67,0xb2,0xf2,0x31, +0xd4,0xe1,0xb5,0xfb,0x8c,0xa2,0x2d,0x19,0xe1,0xae,0x8c,0x6f, +0xa6,0x0c,0x51,0x86,0x93,0xe6,0xe2,0x76,0xd3,0x22,0x7d,0x8e, +0xa7,0x3e,0x80,0x06,0x38,0xc6,0xf1,0x16,0xcc,0x80,0x1b,0x19, +0xe0,0x00,0xdf,0xc3,0xce,0xe9,0x46,0xaa,0x7b,0x6a,0x9d,0xb7, +0x29,0xf7,0xc9,0x19,0x06,0x9b,0xbf,0x36,0x61,0xb0,0x40,0xd8, +0xc7,0xc2,0x9f,0x6e,0x80,0x1f,0xac,0x01,0x0e,0xee,0x9a,0x13, +0xd8,0x30,0x01,0x6f,0xa0,0x25,0xce,0xc6,0xdf,0x8c,0x3f,0x73, +0xac,0x76,0xb6,0xc4,0xbe,0xd8,0x38,0xdb,0xae,0xe9,0x5f,0x88, +0x36,0x2e,0x37,0x64,0xf3,0xdc,0xf2,0x1c,0x15,0xdb,0x9c,0xb7, +0xc1,0x32,0xc5,0xb3,0xd1,0xde,0x2f,0xcf,0x46,0xbb,0x08,0xa5, +0xaa,0x22,0x70,0x6e,0x31,0x5e,0xd3,0x56,0x88,0xef,0xa7,0x27, +0x30,0x1b,0xec,0xcf,0xc0,0x1f,0x35,0x69,0x84,0xa0,0x79,0xf7, +0x6c,0x6e,0x22,0x50,0x24,0x42,0x2e,0x62,0x65,0xa8,0x81,0xfb, +0x14,0xfb,0x56,0xec,0x42,0xd7,0xb5,0x93,0x70,0xc5,0xe2,0x8b, +0x66,0x1c,0xc8,0x7e,0xf9,0x01,0x26,0x24,0x42,0x24,0x03,0xd1, +0x9b,0x29,0xa4,0x0e,0xce,0xdd,0x63,0x24,0xb1,0xdb,0x1b,0x1e, +0x6d,0x22,0x9e,0x44,0x25,0xc8,0x44,0x1f,0xa8,0x5f,0x2e,0x14, +0xbd,0x48,0x92,0x9e,0xb9,0x7e,0x92,0xb0,0x95,0xa1,0xaa,0x6f, +0xb1,0x99,0xb8,0xdf,0x08,0x7e,0x23,0x9b,0x71,0x21,0xb3,0x31, +0xad,0x5d,0x3f,0x95,0x73,0x57,0x3c,0x44,0x1f,0x8e,0x23,0xa6, +0x37,0x3a,0x70,0x5d,0xad,0xd5,0x2d,0xa5,0xcd,0x0c,0xf8,0x99, +0x53,0xb8,0xda,0x72,0x29,0xae,0xd5,0x92,0x94,0x9b,0x88,0xc0, +0xe8,0xd9,0x77,0x1f,0x09,0x7b,0xba,0x02,0x01,0x37,0xe8,0xff, +0x77,0xab,0xb8,0xcd,0x52,0x96,0xcf,0x80,0x27,0xb7,0x85,0x45, +0x8a,0x62,0x62,0xf2,0x5a,0xe5,0x3b,0x34,0xc6,0xcb,0xa7,0x2b, +0x86,0x8f,0x1f,0x98,0x2e,0x5a,0x4b,0x43,0xcb,0x97,0x09,0x04, +0x08,0xf7,0x45,0x82,0x09,0xf5,0x9f,0x16,0x5f,0xfb,0x2f,0xeb, +0x38,0xfd,0x27,0x45,0xd3,0x3e,0xd7,0xa1,0x71,0x22,0x4e,0xa9, +0x0a,0x47,0x20,0x06,0xc9,0x11,0x9d,0xc8,0xdf,0x38,0x54,0x55, +0xec,0x6a,0x02,0xe4,0x08,0x4e,0x8a,0x32,0x63,0x12,0xf5,0x9f, +0x61,0xb6,0x14,0x86,0x13,0x57,0xfc,0xf9,0x67,0x90,0x80,0xe4, +0x67,0x75,0x9c,0x2d,0xc1,0xe1,0x34,0xce,0x56,0x57,0x47,0x89, +0x04,0x74,0x20,0x9b,0xbd,0x8d,0xbf,0x69,0xd3,0xff,0x69,0x1d, +0xb6,0xff,0x7e,0x75,0x35,0x38,0xa7,0x0c,0x93,0x79,0xee,0x05, +0xa4,0x89,0xe2,0xa8,0x17,0x98,0x46,0xd8,0x1c,0xa7,0x50,0xca, +0xb9,0x2f,0x4a,0x49,0xfd,0x5c,0x0c,0xeb,0xa4,0xb2,0x7c,0x70, +0x1c,0x0d,0xfb,0x05,0x6b,0xd8,0xcf,0x5b,0x8b,0xe2,0x06,0x06, +0x2b,0xca,0xad,0x0d,0xa2,0xd0,0x5f,0x50,0xfb,0x52,0x6e,0x4d, +0xed,0x6f,0xca,0xad,0xc9,0x63,0x69,0x10,0x04,0xf9,0x97,0x5a, +0x6b,0xf2,0x43,0x14,0x0a,0xbc,0xfc,0x4b,0xa1,0x35,0xf9,0xbe, +0xcf,0xd5,0xbf,0x62,0xb4,0x69,0x7e,0x3d,0xde,0x23,0x67,0x4b, +0x3f,0x9f,0xbd,0xf8,0x72,0xed,0x9f,0x57,0x87,0x0d,0x3a,0x88, +0x9a,0x79,0x4e,0x51,0x61,0x2c,0x58,0x68,0xfa,0x5c,0x17,0xef, +0xef,0xae,0xcc,0xb6,0x87,0x28,0x7e,0x19,0x0d,0x65,0xd0,0x80, +0x39,0x70,0x41,0xc4,0xcf,0xbd,0x2d,0xc4,0xaf,0xa1,0x48,0xec, +0xb8,0x80,0xc5,0x58,0x23,0x5a,0x43,0xff,0x47,0xb5,0xcc,0xfe, +0x1b,0x15,0xc0,0xf8,0x8a,0x00,0xb6,0x2b,0x8d,0x86,0x10,0xf8, +0x8a,0x50,0x66,0x7b,0x20,0x18,0x02,0xd4,0x30,0x44,0x1a,0x51, +0xaf,0xe9,0x14,0x41,0x61,0x08,0x09,0xe9,0x6a,0x8a,0x65,0x03, +0x39,0x42,0x88,0x34,0xcd,0x94,0x8a,0x20,0x79,0x05,0x17,0xce, +0x7a,0x07,0xaa,0xd2,0xeb,0x34,0xa8,0xbe,0x79,0x07,0x0b,0x25, +0x19,0x42,0x29,0xf5,0x90,0x2f,0x65,0x33,0x28,0x58,0xf8,0x46, +0x0d,0x55,0xa5,0x46,0x34,0xaa,0xce,0x52,0xc3,0x85,0x92,0x30, +0xea,0x1f,0x2b,0x5e,0x56,0xa1,0x0c,0x7e,0x34,0x58,0x02,0xfb, +0x1c,0x6c,0xa4,0x70,0x40,0x13,0x0f,0xd0,0xa8,0x31,0xdd,0x01, +0x09,0x19,0xb0,0xd3,0x14,0xec,0x68,0xe4,0xa6,0x37,0x82,0xc6, +0x5f,0xff,0xc5,0x06,0xd8,0xc5,0x60,0x29,0x41,0x3f,0xb2,0xa0, +0xd5,0xca,0x30,0x8c,0x5e,0x9b,0xb3,0xf4,0x77,0x10,0xa9,0xbe, +0xa6,0x3f,0x3e,0x03,0x8a,0xc0,0xf4,0x99,0xcf,0x91,0x9a,0x22, +0x99,0x4b,0xa3,0x68,0xe9,0xa4,0x35,0xc1,0x12,0x1c,0x06,0x27, +0x6f,0xa3,0xc9,0x69,0xfa,0x97,0xba,0xc7,0x30,0x08,0x34,0x54, +0x41,0x77,0x06,0xe8,0x10,0x63,0x0c,0x9d,0x89,0x3a,0x04,0xa3, +0x6b,0x3c,0xc2,0x41,0xbf,0x38,0x4b,0xf6,0xa0,0xb1,0xc2,0x0e, +0x96,0x11,0x3b,0x18,0xd9,0xdd,0x0b,0x92,0x22,0x69,0x2c,0x55, +0x8a,0x43,0x45,0x96,0xe7,0x52,0xb7,0xb6,0x88,0x6b,0x7b,0xad, +0xa9,0x15,0xe0,0x0e,0xe3,0x21,0x5d,0xb4,0x88,0xf2,0x5d,0xb1, +0x01,0x29,0xd1,0x21,0x0a,0x26,0xfb,0x1b,0xf4,0xe0,0x70,0x31, +0x4e,0x58,0x8c,0xc3,0x70,0x0d,0xae,0x7d,0x4e,0x06,0x9b,0x20, +0xed,0x1b,0x26,0x33,0xbe,0x02,0xb4,0xf4,0x2e,0x0d,0xd4,0xb5, +0x2b,0xbd,0xbd,0x17,0x83,0x67,0x9e,0x97,0x14,0x2d,0xf6,0x5f, +0x2c,0x9a,0xe1,0xb5,0x21,0x58,0x26,0x56,0x82,0x77,0x8a,0xba, +0x4e,0xb9,0xb1,0xb4,0x53,0xd1,0x95,0xa0,0x7b,0x62,0x50,0xfb, +0xfe,0x37,0x62,0x78,0xd2,0xd9,0x4d,0xf3,0x4f,0x4b,0x63,0xe9, +0xdb,0x09,0x77,0xdb,0x3f,0xa9,0x02,0xbd,0xb8,0x9f,0x84,0xd6, +0xb9,0x2b,0xd5,0x71,0x86,0x64,0xe0,0x08,0x0d,0x3b,0x20,0x83, +0x5d,0xae,0x57,0xd8,0x2c,0xe5,0xe7,0xd2,0x40,0xd7,0xd4,0xff, +0xf6,0xe3,0x25,0x77,0x7d,0x49,0x30,0xad,0xb3,0xc1,0x65,0x9e, +0xc4,0x41,0xd6,0x46,0xbd,0xbb,0x66,0xab,0x2e,0x0d,0xa6,0xd5, +0xcd,0x6c,0x26,0x49,0x94,0xf8,0x2a,0xc5,0x10,0x5e,0x34,0xc9, +0x71,0xe5,0xa2,0xd5,0x14,0x0e,0xc6,0x02,0x0b,0xd4,0x22,0x1e, +0x63,0x0b,0x5a,0x5a,0x10,0x28,0xba,0xb4,0x3d,0x28,0xc9,0x5d, +0xec,0x4a,0x9a,0xc1,0x5a,0xc1,0x5f,0x84,0x5e,0x64,0xed,0x87, +0x14,0xd5,0x40,0x3f,0x10,0x19,0xe9,0x81,0xc8,0xe9,0x29,0xce, +0x85,0x11,0x52,0x5c,0x00,0xa3,0x45,0xb1,0xf4,0x83,0x83,0x22, +0x08,0xe9,0x15,0x46,0xce,0xa5,0x60,0x1a,0x8e,0x8a,0x3f,0x70, +0xe2,0x60,0xfc,0x01,0xc5,0xaf,0x35,0x59,0x1c,0x36,0x9b,0x64, +0xc5,0xe5,0x1f,0x70,0x28,0x71,0x8b,0xbe,0x61,0x33,0x65,0xed, +0xa4,0x51,0x2b,0x0d,0x2a,0xdf,0xdd,0x83,0xa1,0x67,0x24,0x30, +0x7a,0x66,0x96,0xed,0x54,0xd5,0x08,0x1a,0x87,0xcb,0xac,0x66, +0x90,0x59,0x9d,0x50,0xd4,0x88,0x7c,0x58,0x71,0xaf,0x5a,0x6a, +0x55,0x29,0xb2,0xf1,0xb3,0x0c,0xd0,0x10,0xcf,0x56,0xbc,0x91, +0x70,0x96,0x6e,0xb9,0x54,0xf8,0x54,0x02,0xe3,0x7b,0x70,0x3c, +0xa5,0xeb,0x56,0x52,0x2d,0x4d,0xa0,0x2b,0x2a,0xca,0xdf,0x3c, +0xed,0x08,0x70,0xce,0x97,0x74,0x54,0x8b,0xba,0x3d,0x57,0x5e, +0x50,0x54,0x76,0x9b,0xbc,0xcc,0x78,0x81,0x61,0xbd,0xe7,0xe3, +0xbd,0xd2,0x43,0xf4,0x9c,0x68,0x27,0x37,0x6d,0xd5,0xb9,0xb7, +0x4d,0x61,0xae,0x44,0x49,0x6e,0xe6,0xc2,0x1e,0x4f,0x38,0x76, +0xe6,0xb4,0xea,0xf9,0x6d,0x79,0xce,0x67,0x24,0x0b,0xd3,0x44, +0x6a,0x99,0x5e,0xd5,0xf7,0x54,0xcf,0xd2,0x57,0xd3,0xfb,0x7f, +0x84,0x41,0x12,0x70,0x85,0x5d,0xa2,0xab,0x02,0x01,0xa2,0x5e, +0xf4,0xfd,0x38,0x11,0x99,0xbe,0x36,0xae,0x13,0xe1,0x10,0x1c, +0x1f,0xa9,0xab,0xa3,0x8a,0x6c,0xb3,0x09,0x2c,0xf5,0x91,0xbc, +0x88,0xf4,0x46,0xd5,0xbb,0x91,0x04,0x7a,0x79,0x13,0x09,0xf2, +0x2d,0x34,0x4c,0xd0,0xbb,0x8d,0x43,0x96,0xaf,0xdb,0x68,0x11, +0x2c,0x39,0x44,0xb5,0xf8,0x17,0xd9,0x4a,0xac,0x65,0xdd,0x82, +0xff,0x43,0x7e,0x14,0xd5,0x77,0xbd,0xe4,0xc6,0xe3,0x2a,0xa7, +0x59,0x12,0xe1,0xc2,0x5f,0x62,0x88,0xc6,0xf7,0x6f,0xa1,0x15, +0x5a,0x16,0xbc,0x25,0x19,0x4f,0x63,0xc1,0x4c,0x6c,0xc1,0xd6, +0xef,0x67,0x12,0xe3,0xc5,0xc5,0xfc,0x61,0x16,0xd6,0x74,0x74, +0xfd,0xf6,0x5b,0x87,0x29,0xae,0x91,0x98,0xe2,0x2d,0x1a,0x16, +0x0b,0xc3,0xd8,0xe9,0x96,0x5d,0xb0,0x46,0xda,0x0d,0xb7,0x4c, +0x68,0x5c,0x63,0x69,0xaa,0x28,0xd7,0x35,0x52,0x59,0x51,0x01, +0xd6,0x7f,0xa5,0xe0,0x42,0xff,0xa5,0xcc,0x95,0x8a,0x32,0x98, +0xd0,0x8f,0xef,0xc1,0x06,0x4c,0x54,0x14,0x3b,0x8b,0x81,0x6e, +0x58,0x02,0x8b,0x45,0x57,0x7b,0xed,0xa9,0x2d,0x51,0xfb,0xc2, +0xc3,0xa5,0x04,0x09,0xe8,0x99,0x9b,0x8a,0x0e,0x41,0xfa,0xe7, +0x7a,0x5c,0xd0,0xaa,0x4c,0xd4,0x98,0x7b,0x0b,0xcc,0x49,0x68, +0xbd,0x8a,0xe6,0xfd,0xb8,0x59,0xb4,0x31,0x31,0x2b,0xb2,0x5e, +0xdc,0xd6,0x6b,0x48,0x61,0xb8,0xfc,0x1b,0x51,0xc5,0x8e,0xf0, +0x73,0x4e,0x62,0x1c,0x24,0x03,0x86,0x6a,0xc3,0xe5,0xb8,0x4d, +0xa8,0x20,0xe1,0xf6,0x8d,0xc2,0x6a,0xa6,0xd2,0x51,0x30,0x5f, +0x14,0x4b,0x99,0xa6,0x35,0x6e,0xba,0x2d,0xee,0xab,0x2b,0xbd, +0x9e,0x4b,0x9c,0xc1,0xb6,0xd8,0xaf,0x59,0xd2,0xda,0x6b,0xaa, +0x98,0xd8,0x08,0x4a,0x47,0xd7,0x47,0x7b,0x81,0x4b,0xdd,0xaf, +0x12,0x78,0xb6,0x72,0x60,0x1f,0x59,0x7c,0x8d,0x32,0x01,0xc8, +0x9f,0x4d,0x6d,0x08,0x96,0x9a,0xa0,0x0e,0x31,0x35,0x6b,0xd0, +0x59,0x09,0x21,0xa2,0xcb,0xdb,0x83,0xce,0x2a,0x4c,0xad,0x95, +0x82,0xd5,0xc4,0xd4,0x94,0xe4,0xa6,0x2e,0x6c,0xec,0x17,0x4d, +0x45,0xe6,0xb8,0x24,0x4a,0x16,0xa6,0x8b,0x26,0xe5,0xbb,0x55, +0xf4,0xa9,0x26,0xd1,0x4f,0x6a,0xeb,0x61,0xb8,0xe4,0x5d,0xaf, +0x1a,0xb5,0x62,0xdd,0xc5,0x3b,0xd2,0x24,0xfa,0x69,0x73,0xc3, +0x13,0x09,0xcc,0xec,0x15,0x34,0x65,0x30,0x6f,0x1f,0xa5,0x17, +0xee,0xed,0x6c,0xac,0xba,0xb4,0xd2,0xe9,0x87,0x70,0xc9,0x21, +0x7a,0xd2,0x2e,0x53,0xdd,0xf9,0xaa,0xf8,0x75,0x87,0x0d,0xac, +0xf2,0x90,0x7c,0x1f,0xf1,0x17,0xc5,0xfd,0x0f,0x8b,0xae,0xf1, +0x94,0xa2,0x3e,0xdf,0x3e,0x81,0xa3,0x5d,0x15,0x05,0xe3,0x7a, +0x7b,0x57,0xf3,0x6a,0x30,0xa2,0x77,0x40,0x24,0x83,0x41,0x82, +0x3f,0x91,0xed,0x2b,0x85,0x8c,0x72,0x62,0x69,0xd7,0xfc,0xce, +0xc0,0xfb,0x62,0x98,0xfe,0xf2,0x23,0x98,0x80,0x4c,0xf3,0x1d, +0x2e,0xc4,0xa5,0x9a,0x38,0x08,0x27,0x4a,0x85,0x14,0x1a,0x76, +0x12,0x77,0x5d,0xa1,0x53,0xd4,0x28,0x85,0x15,0x04,0xbd,0x74, +0x74,0xbe,0x7b,0xd7,0x61,0x86,0x43,0x24,0xab,0x68,0x1c,0x6c, +0x63,0x8a,0xc3,0xc8,0x38,0xbb,0x14,0xee,0xf6,0x8e,0x4c,0x73, +0xe5,0x7b,0xff,0xae,0xd5,0x25,0xd2,0x78,0x58,0xd4,0x4b,0xc2, +0x34,0x6a,0xcf,0x27,0x22,0x5c,0x81,0x2b,0x7f,0xfb,0xec,0x54, +0x47,0xfb,0xd8,0x2f,0xb3,0xed,0xa6,0x61,0x78,0x4f,0x3b,0x0c, +0x93,0xdc,0xa2,0xda,0x5c,0xb3,0x9d,0xb4,0x54,0x4d,0xfe,0x3a, +0x63,0xf9,0x4c,0x62,0x30,0x1c,0x99,0xa5,0x6b,0xaf,0xe0,0x2b, +0x03,0x2b,0x81,0xfd,0xab,0xdd,0x28,0x24,0x31,0xeb,0xf6,0x77, +0x60,0x21,0x85,0xb2,0x95,0x58,0x47,0xe3,0xf8,0x0d,0x56,0x6a, +0x6a,0x1b,0xda,0x61,0xbc,0x04,0xea,0x56,0x62,0x19,0x8d,0x16, +0xb7,0x97,0x81,0x62,0xd1,0x39,0x8a,0x45,0x39,0xd1,0x60,0x03, +0xf4,0x07,0x82,0x14,0x2c,0xf5,0xee,0x91,0xd4,0x47,0x1b,0xae, +0x46,0x4b,0x29,0x46,0xd1,0x38,0x64,0x61,0x1b,0x8c,0x93,0x56, +0xd2,0x20,0x2a,0xe9,0x7a,0x50,0x21,0x71,0x6b,0x11,0xcd,0x5c, +0x67,0x3b,0x07,0x67,0xa9,0xa2,0xe2,0x37,0x64,0x83,0x61,0x85, +0x04,0x9d,0xe8,0x87,0x7c,0x1a,0x0b,0xe3,0xca,0x2f,0x76,0xdf, +0xba,0xec,0x81,0x63,0x25,0x7a,0x24,0x2f,0x2c,0x76,0x44,0x15, +0x92,0x14,0x7f,0x50,0xf4,0xbe,0x08,0x7a,0x15,0x45,0xd1,0x86, +0x63,0x82,0xc8,0xe3,0x5c,0xda,0xf6,0x3a,0xf1,0xb5,0xde,0x35, +0x14,0xc9,0x34,0xb7,0xc0,0x19,0x06,0x14,0xfb,0xf6,0xcd,0xc1, +0xcb,0x8a,0xac,0x35,0x98,0xb8,0xe9,0xc5,0xc8,0x88,0x24,0x17, +0xb1,0x81,0xec,0x2e,0x05,0x52,0xac,0x43,0x0f,0x81,0x25,0x7a, +0x2d,0xfb,0xcb,0x1c,0x75,0x7e,0x7a,0x0f,0x06,0x52,0xc8,0xfe, +0xbc,0xa2,0xaf,0xcd,0x4c,0x09,0x1a,0x93,0xeb,0xad,0x1c,0x20, +0xe3,0x8d,0x33,0xeb,0x82,0xaf,0xa5,0x8a,0xa5,0x65,0xd3,0x68, +0xf0,0xd3,0x34,0xd0,0x51,0xcc,0x4b,0x09,0x5e,0xef,0x64,0x5f, +0xd4,0xb7,0x3c,0x4c,0x91,0xc6,0x53,0x2b,0x53,0xea,0x6d,0x5f, +0x88,0x41,0x74,0xfb,0x01,0xc9,0x38,0x9a,0x76,0x3f,0xcc,0xb8, +0x2c,0x75,0xb3,0x15,0xdd,0xf5,0x2a,0xd3,0x9d,0xa4,0x4a,0x52, +0xcd,0x58,0x8f,0xf5,0xfa,0x86,0x1b,0x2e,0xc2,0x38,0x02,0x7e, +0x56,0xa2,0x84,0x74,0xb9,0xc1,0xc3,0x50,0xdf,0xa3,0x0a,0xc6, +0x4a,0x9a,0x49,0x38,0x2f,0xed,0xba,0xff,0xaf,0xab,0x5f,0xa8, +0x8a,0x96,0xb7,0x57,0x81,0xe8,0xef,0x2c,0x0f,0x7c,0x45,0x19, +0xa4,0xf7,0x1f,0xc1,0x37,0x20,0xd5,0x7a,0x84,0x52,0x29,0x46, +0x43,0x30,0x4f,0x32,0xbe,0x9f,0x02,0x11,0xf0,0x83,0x58,0x88, +0xa6,0x1e,0x55,0x7b,0x6a,0x11,0x44,0xa0,0xb5,0xce,0x93,0xc8, +0x35,0xfa,0x7f,0x1b,0x8b,0x82,0x29,0x2e,0x24,0xda,0xe1,0x7f, +0xc1,0x45,0xf7,0x60,0x07,0x0e,0x95,0x4f,0x17,0xdc,0x48,0x76, +0xc5,0x2d,0x3e,0x28,0x36,0x5d,0x20,0x59,0x82,0x3b,0x28,0x30, +0x85,0xbd,0x6c,0xdd,0xbd,0x42,0xc2,0x19,0x42,0x54,0x49,0x8a, +0xad,0x11,0x1e,0x09,0x23,0xe8,0xff,0xbc,0x3e,0xf0,0xa2,0x7f, +0x64,0xcb,0x79,0xd0,0x18,0xb8,0xc5,0xfe,0x87,0xfd,0x3d,0x50, +0xae,0xc8,0x3a,0xd7,0x52,0x28,0x25,0xa8,0xe5,0xac,0x08,0x26, +0xe1,0x8b,0x27,0xf0,0x02,0x26,0x2b,0xea,0xeb,0x9d,0x15,0xd9, +0x16,0xe4,0x46,0x56,0x88,0xfb,0x6e,0xeb,0x29,0x76,0x9b,0x08, +0xdb,0x7a,0x39,0x3c,0x39,0xe0,0x94,0x4a,0x1c,0x9d,0x73,0xf2, +0x5c,0x6a,0xfa,0x05,0x82,0x07,0xb6,0x70,0x7d,0xb7,0x2d,0x28, +0x8f,0x80,0x08,0xfb,0x20,0x29,0xe1,0x87,0xf1,0x22,0x9c,0x0c, +0x0f,0x34,0xf1,0x01,0x12,0xf5,0x8c,0x87,0x78,0x51,0x53,0x90, +0x7f,0xda,0x7a,0xb1,0x85,0x76,0x1f,0x05,0x22,0xdc,0x92,0xee, +0x99,0xbe,0x2d,0x67,0x1f,0x49,0x6d,0x01,0x7b,0xb7,0x6d,0x0f, +0x76,0x23,0x08,0x39,0x8c,0xd3,0xd5,0xa6,0xfe,0xb7,0xeb,0x7e, +0x27,0xca,0x83,0xd9,0x59,0x04,0xad,0x12,0xe8,0x7a,0x88,0x97, +0x2f,0x1f,0x08,0x7e,0x43,0x81,0x02,0xba,0xc6,0x0a,0xf2,0xc7, +0x64,0xf0,0x83,0xf2,0x6a,0xf6,0x41,0x75,0x71,0x7d,0x8e,0x34, +0xad,0x42,0x56,0xe4,0xb5,0x54,0xb4,0x3f,0x32,0xe2,0xc8,0x56, +0xf1,0xd6,0x88,0x63,0x27,0x22,0xa5,0x5e,0x4f,0x65,0xfe,0x69, +0x1b,0x45,0x4e,0x39,0xd5,0x7e,0x0f,0xc4,0x90,0xab,0xfb,0x5f, +0x74,0x04,0xfd,0xca,0x44,0x70,0xcb,0x69,0xd0,0xc4,0x0c,0x91, +0x43,0x51,0xde,0x8e,0x62,0xf1,0xed,0xdb,0xda,0x8a,0x72,0x84, +0xdb,0x02,0x6b,0xb6,0x25,0x04,0x9c,0x20,0x82,0xcb,0x3a,0x79, +0xe6,0x64,0xf6,0x45,0x02,0x47,0x22,0xb8,0xbb,0xb7,0xad,0xa8, +0xf5,0x5b,0x22,0x1d,0x02,0xa4,0x38,0x0b,0x4f,0x8a,0x70,0x39, +0x11,0xdc,0x67,0xa4,0x6d,0xa9,0x5c,0x5f,0x94,0x98,0x5f,0x20, +0xed,0xee,0x2e,0x23,0x7c,0xb9,0x45,0x95,0xdc,0x7d,0x69,0x60, +0xfa,0x33,0x82,0x78,0xd7,0xa1,0x3b,0x8d,0x97,0x02,0xa6,0x1b, +0x99,0x4a,0x96,0xac,0xa5,0xfe,0x1e,0xf8,0xfe,0x5f,0x31,0x97, +0xff,0x8f,0x00,0xf3,0x7f,0x4a,0x21,0xee,0xff,0x00,0xba,0x4f, +0x51,0xbe,0x97,0x9b,0xd2,0x5f,0x20,0x85,0x2c,0x39,0x27,0x5a, +0xa2,0xd8,0xe7,0xef,0x47,0x47,0x64,0x89,0x78,0xac,0x08,0x33, +0x5b,0x0b,0xaf,0x45,0x1a,0x14,0x94,0x0b,0x5d,0x1b,0xe7,0x11, +0x51,0x29,0x6c,0x91,0xc0,0xf8,0xd7,0xa5,0x34,0x78,0x91,0x78, +0xa0,0xac,0xc8,0x71,0x38,0x1a,0x58,0xf4,0x92,0xfa,0xbc,0xd6, +0x9c,0xeb,0x43,0xa1,0x17,0x8e,0x26,0xb8,0x8c,0x24,0x3b,0x18, +0x8d,0xca,0xe0,0x25,0x2d,0x9d,0x4b,0xf9,0xc0,0x32,0x16,0xd5, +0xd4,0x9f,0xc3,0x30,0xe9,0x35,0x1a,0x86,0xfd,0xfc,0x1c,0xd4, +0x24,0x65,0x82,0x27,0x81,0xf1,0x9e,0x6c,0x19,0x05,0x6a,0x3f, +0x13,0xf8,0x2a,0x35,0xa6,0x71,0x98,0xfa,0x62,0x54,0x93,0x78, +0xfd,0x63,0x30,0x5e,0xfe,0x01,0x17,0xb0,0xb0,0x1d,0x07,0x2b, +0xea,0x65,0xcf,0x10,0xb8,0xcf,0x65,0xb3,0xf9,0xa7,0xb8,0x40, +0xf1,0x74,0x49,0x99,0xa8,0x56,0xa0,0xe8,0x1d,0x9b,0x4c,0xf6, +0xac,0x16,0xe3,0x78,0xe3,0x56,0x50,0x96,0xc2,0x46,0x4d,0xdc, +0x48,0xa3,0xde,0x33,0x4d,0xb0,0xec,0xbb,0x76,0x2a,0xa9,0x52, +0x12,0x87,0x17,0x29,0xa5,0x3f,0x34,0x14,0x37,0x0f,0xcc,0xc0, +0x86,0xcf,0x1d,0x7d,0x39,0x10,0x75,0xfd,0xe1,0xab,0x08,0x53, +0xd1,0x53,0xbf,0x5c,0xcd,0xfb,0x9b,0x43,0xb0,0xbc,0x17,0x17, +0xd2,0x8a,0x82,0xa1,0xc0,0xde,0xfd,0x1c,0x58,0xd7,0x3c,0x42, +0x56,0x8a,0x27,0xa1,0x16,0x2f,0x69,0x83,0xe7,0xc0,0x8c,0x2f, +0x81,0xf5,0x24,0xd5,0x77,0xe9,0x4b,0x60,0x75,0xf7,0xd4,0x93, +0xe0,0x49,0x22,0x4a,0xcb,0x7f,0xd3,0x64,0x1f,0xd4,0x2a,0x4c, +0x5c,0x1e,0xf3,0x79,0x0e,0xc1,0xb4,0xf0,0x5c,0xd1,0x70,0xdf, +0xff,0xb3,0xe1,0x3e,0xd2,0xf0,0xf9,0xbf,0x1f,0x4b,0xf3,0xaf, +0x01,0xfc,0x3f,0x18,0x67,0x33,0xb1,0x1c,0x57,0x92,0xea,0x25, +0x10,0x43,0x24,0x36,0x94,0x24,0x03,0x57,0xe4,0x16,0x59,0x4e, +0x77,0x91,0xde,0xf4,0x10,0xdd,0x2b,0xbc,0x5e,0xff,0x4e,0x0c, +0x53,0xef,0xcf,0xc3,0xf9,0xd2,0x68,0xbc,0xae,0x0d,0xd7,0xb7, +0x13,0x06,0xa4,0x35,0x83,0x58,0xc2,0x20,0xa3,0xa6,0x47,0xfe, +0x12,0x43,0x0f,0xd1,0xb4,0xda,0x1f,0x4c,0x40,0x55,0xac,0x24, +0x57,0x21,0x5d,0x39,0x03,0x4d,0x02,0x4d,0x1c,0xc4,0x21,0x0d, +0xe3,0xd1,0x19,0xcd,0x71,0x38,0x8e,0xc4,0x2d,0xfb,0xa4,0x68, +0xfc,0x57,0xe7,0x01,0x82,0xf3,0x22,0x4f,0xc3,0x10,0x1c,0x09, +0x76,0x62,0xe2,0x20,0xdf,0x2c,0xf9,0x5e,0xc1,0xa1,0x08,0xb5, +0xd7,0x78,0xf6,0x3d,0x99,0xb7,0xe4,0xe9,0x02,0xd4,0xf8,0x4c, +0xed,0x35,0x96,0x2e,0x20,0xd4,0x5e,0x09,0xce,0x28,0x57,0x64, +0x26,0xb7,0xe4,0x4b,0x89,0x2f,0x1c,0x11,0x81,0x25,0xde,0x24, +0x9e,0x82,0x37,0x28,0x1c,0xbb,0x66,0x2d,0x72,0x48,0xb7,0x6b, +0xc1,0x84,0x43,0xd2,0x83,0xb4,0xff,0xde,0xe8,0xa8,0x30,0x0f, +0x75,0x34,0xe6,0x8c,0xb5,0x29,0x38,0xc4,0x73,0xac,0xde,0x86, +0x8a,0x5e,0x69,0x13,0x7d,0xb3,0xf2,0x42,0x9f,0x84,0x18,0x40, +0x16,0xf5,0xbf,0x59,0x4e,0xfa,0x14,0x5f,0xce,0x2e,0xb0,0xf3, +0x5e,0xeb,0x2b,0x3d,0x44,0x25,0x81,0xcd,0xc5,0x0e,0x98,0x78, +0x1a,0x2c,0xcf,0x72,0x8f,0x68,0xd4,0xdf,0x29,0x42,0xcf,0xe8, +0x95,0xa8,0x84,0x37,0x54,0xd1,0xf1,0x68,0x0f,0x7e,0x03,0xe6, +0x62,0x05,0xa3,0x19,0x06,0xcb,0x41,0x6f,0xc6,0x6f,0x38,0x4d, +0x0a,0x0b,0xb1,0x87,0xc5,0x21,0x32,0x4b,0xf5,0xa9,0x06,0x57, +0x60,0x84,0xe4,0x35,0xfd,0xb4,0xa5,0x05,0x86,0x7c,0xbc,0x61, +0x85,0x23,0x49,0xe7,0x4f,0x94,0x7f,0x68,0xb9,0xfd,0xbc,0xc7, +0xb3,0x5e,0xf3,0x04,0x21,0x62,0x37,0x4e,0x95,0x55,0xf4,0xa8, +0x7e,0x67,0xdf,0xbc,0x48,0x82,0x97,0x08,0xac,0x7e,0xc8,0x6f, +0x61,0xc1,0x9a,0xaa,0xc9,0x0f,0x5e,0x2f,0x0d,0xa1,0xd7,0x07, +0x06,0xbb,0x4a,0xd0,0x9a,0x32,0x1e,0x06,0xeb,0xa8,0x86,0xe2, +0x40,0x27,0x72,0xcd,0xd9,0x3f,0xc0,0x41,0x82,0xeb,0x88,0x00, +0x8c,0x14,0x20,0x32,0xaf,0x17,0x41,0x51,0xdb,0x98,0xe8,0x89, +0x04,0x94,0x19,0x7c,0x20,0xce,0xb8,0x05,0x01,0xea,0xbc,0xbf, +0x30,0x86,0xb8,0x05,0x8a,0x03,0x70,0xb0,0xbb,0x4c,0xa2,0x4f, +0x62,0x0b,0x68,0x40,0x00,0x5b,0xd2,0x9d,0xff,0x1e,0xa6,0xa9, +0x7e,0x0f,0x61,0x82,0x1a,0xfd,0xcf,0xab,0x37,0x3d,0xf7,0x1f, +0xd9,0x7c,0x7e,0xfe,0xc0,0xdc,0x7f,0xca,0xe8,0x24,0x57,0x9c, +0x2f,0x48,0x6e,0xc9,0x94,0xde,0x06,0x1d,0x11,0x0c,0xc6,0x23, +0x0f,0xe1,0x08,0x0c,0xa6,0x6e,0x13,0x82,0x60,0x9b,0x59,0xb0, +0xfd,0xbc,0xf8,0x46,0xaf,0x8c,0x32,0x86,0xd9,0xdb,0xcf,0x87, +0xa5,0x04,0xc5,0xaa,0xc4,0xd2,0xb9,0xa7,0xd2,0x53,0x93,0x4a, +0x3a,0x80,0xe5,0x7a,0x09,0xe7,0xde,0xb0,0x39,0xd2,0x3d,0x42, +0xaa,0x8d,0xcb,0x45,0x04,0x16,0x46,0xae,0xc4,0x48,0x1c,0x4c, +0x69,0xc3,0x72,0xd1,0xa5,0x88,0xcd,0xe7,0x36,0x88,0xad,0x65, +0xbd,0x54,0x07,0xb2,0x49,0xbe,0xe9,0xdb,0x72,0xf7,0xaa,0x1c, +0xa2,0x83,0x0e,0x85,0x45,0x6d,0xf7,0x36,0xc6,0xd9,0x9c,0x4c, +0x46,0x74,0x10,0x48,0x3c,0x45,0xfa,0xb2,0xe7,0xfd,0x4d,0x8f, +0x9a,0x65,0x0a,0x62,0x7d,0x2b,0xe9,0x02,0xd1,0xe7,0x0f,0xfa, +0xcd,0xa8,0x86,0xc3,0x0c,0xd7,0x9b,0x7a,0x4b,0x9a,0xdd,0x44, +0xb5,0x05,0xf5,0x45,0xf7,0xc4,0xaf,0xcb,0x03,0x5c,0xa5,0x3b, +0x69,0xa7,0xf5,0x81,0xda,0x92,0x29,0x86,0x84,0x12,0xdd,0xbe, +0xb4,0xd9,0x96,0x5c,0x70,0x70,0xf5,0x9a,0xb3,0xca,0xb6,0xb8, +0x31,0x40,0x62,0xbe,0x4e,0x24,0xbb,0x74,0xcd,0x13,0x18,0x42, +0xdf,0xdf,0x2a,0xc3,0x2e,0xb8,0xdd,0x0f,0x14,0x61,0x57,0x7b, +0x71,0xbc,0x08,0xaf,0xdc,0xe7,0xcb,0x75,0x68,0xdc,0x85,0xb7, +0x75,0x91,0x22,0x81,0xfb,0x14,0x8c,0x17,0xc1,0x15,0xad,0xcf, +0x75,0xad,0x8f,0xc8,0x69,0xf6,0x6e,0x55,0x51,0x7d,0xb6,0x34, +0xed,0x82,0xac,0x80,0x24,0xef,0x83,0x51,0x61,0x87,0xb7,0x89, +0xa3,0xc2,0x8e,0xc7,0x45,0x29,0x92,0x77,0x40,0x9a,0xa7,0xc8, +0x29,0xbb,0xca,0xff,0x8e,0x18,0xe7,0x0f,0xd0,0xec,0xdf,0xd1, +0xf3,0x30,0x65,0x22,0x4b,0x25,0xfa,0x3d,0x1a,0x8b,0x5c,0x72, +0xf3,0xa3,0x4b,0xc4,0xbd,0x7d,0x7a,0xd4,0x52,0x50,0x0f,0xad, +0x8c,0x38,0x1d,0xa8,0x90,0x65,0xce,0xa9,0xd3,0x27,0x33,0x4a, +0x5f,0xc0,0x37,0xdc,0xad,0x3e,0x2b,0xca,0x2b,0x7c,0x8f,0xcb, +0x66,0xe9,0x24,0xd4,0x12,0xa1,0x12,0x44,0xac,0xf8,0xcc,0x13, +0x8f,0x28,0x57,0x15,0x9e,0xca,0xc9,0x96,0x5e,0xbc,0x58,0xfc, +0x0b,0x78,0xa9,0x3e,0x27,0xa6,0x47,0x88,0x6d,0x39,0xb1,0xcf, +0xf9,0x34,0x1a,0x85,0x2e,0xf5,0x72,0x92,0xac,0x26,0xa2,0x84, +0x4b,0xca,0xbc,0x65,0x1c,0x5d,0x68,0x09,0xda,0x98,0x09,0xda, +0x90,0x59,0xd0,0x21,0x8a,0x17,0x2c,0xc9,0xdc,0xa6,0x52,0x68, +0x80,0x15,0x8a,0x54,0x6e,0x04,0x15,0xa2,0x29,0x9f,0x3b,0xfd, +0xa4,0x98,0x57,0x2d,0x51,0x35,0x5f,0xbe,0x12,0xc3,0xb1,0x16, +0xc2,0x57,0x7c,0x9e,0xef,0xff,0xb0,0x18,0x36,0x2a,0x5c,0xaa, +0xf4,0xcb,0xfc,0xcc,0x3f,0xbb,0xd5,0x3f,0xa7,0x3c,0xf6,0xff, +0xb8,0xba,0x7c,0x99,0x62,0x62,0x2e,0xbd,0xc2,0x56,0x19,0xb8, +0x28,0xea,0xb7,0xf3,0xa3,0x15,0xd5,0x9c,0x33,0x53,0xbb,0x32, +0xbf,0x54,0x73,0x5e,0x45,0xe1,0x12,0xc1,0x5d,0x74,0x80,0xc2, +0x05,0xbc,0xbb,0x68,0x25,0x05,0x6e,0xff,0x5a,0xc9,0xf9,0x0b, +0xa9,0x49,0x3f,0x4e,0x7b,0x14,0x94,0x07,0x5e,0x11,0xc3,0xb8, +0xab,0x3f,0x80,0x2d,0xd8,0x9a,0xff,0x80,0xe3,0x2c,0x36,0x05, +0x7a,0x04,0x48,0x0f,0x43,0xca,0x4a,0x4c,0x39,0x4c,0x5d,0x0c, +0xd8,0x94,0x6f,0x21,0xc6,0x71,0xe6,0x1a,0x68,0x8b,0xb6,0x57, +0x35,0x60,0xdc,0x95,0xf2,0xfc,0x8b,0x05,0xd2,0xe3,0x84,0x53, +0x90,0x79,0x64,0xb0,0x4b,0xbc,0x6a,0x60,0x94,0xf4,0x05,0x0d, +0xa3,0xca,0x6a,0x9e,0xdd,0x2e,0x0b,0x72,0x91,0x10,0x12,0xe4, +0xe2,0x15,0xa4,0x2d,0x81,0x26,0x65,0x6d,0xaf,0xdc,0x5a,0xc2, +0x98,0xe8,0xda,0xb2,0xdc,0xdb,0xcf,0xca,0x5c,0x71,0x94,0x64, +0x11,0x8d,0xa3,0xbc,0x5c,0x97,0x48,0xfe,0xa1,0x7a,0xd5,0xf2, +0x8b,0x8a,0x80,0x16,0x30,0x47,0xf1,0x2c,0xc0,0x1f,0x4b,0x15, +0x87,0x72,0x7e,0x23,0x12,0x30,0x23,0xdf,0xa8,0xac,0xd0,0xba, +0x2f,0xed,0x6a,0x1a,0xb2,0x78,0xd1,0x86,0x92,0x1b,0x12,0x30, +0x5e,0x89,0x56,0x04,0x5b,0xdc,0xb4,0x05,0xe6,0x59,0x6d,0x5e, +0x79,0x89,0x24,0x1e,0x63,0x09,0xde,0x7b,0xa1,0xb8,0x91,0xb4, +0x8e,0xf8,0xd2,0xc9,0xe7,0x03,0x51,0xea,0x1f,0x2a,0x9f,0xbb, +0x5e,0xf0,0xe5,0xea,0xc6,0xbf,0x39,0x94,0xcb,0x97,0x28,0x46, +0xe0,0x5f,0x29,0x83,0xa8,0xb7,0x1b,0x06,0x7d,0xd4,0xbd,0x4e, +0x60,0x0b,0x6a,0x81,0x33,0x6e,0xd7,0x03,0x75,0xc1,0x8f,0x7a, +0x08,0x39,0x2c,0x2c,0xa4,0x7a,0x2b,0x42,0x6d,0xa4,0xee,0xb4, +0xcd,0xc6,0x10,0x99,0x04,0x17,0x12,0x19,0xcb,0x94,0x81,0xea, +0xef,0xfe,0xfd,0x93,0xce,0x75,0xa4,0xa4,0xa8,0x01,0xce,0x8a, +0x87,0x24,0xfc,0x47,0xe5,0x2f,0xa5,0xe7,0x05,0x5b,0x45,0x33, +0x35,0xaa,0xff,0xc2,0x97,0x66,0x9e,0x21,0xba,0x12,0x54,0xa3, +0x3e,0x97,0x0c,0x67,0x7a,0x49,0x33,0x32,0x0e,0x2d,0x25,0x44, +0xf7,0x73,0xb3,0xcf,0x63,0x68,0x50,0xbd,0x17,0xbf,0xdc,0xec, +0xa1,0x18,0x43,0x83,0xdc,0xbc,0x9b,0x18,0xf7,0x92,0x1f,0xbf, +0x18,0xe0,0x7c,0x12,0xe8,0x96,0xa0,0x48,0xcf,0x79,0xb5,0x97, +0xb4,0xc3,0x53,0xd4,0x59,0xd4,0x50,0x4c,0xa0,0xf9,0xd0,0x56, +0xc3,0x99,0xd2,0xbd,0xf8,0xad,0x21,0x7c,0xbb,0x83,0x9e,0x6e, +0x63,0x88,0x43,0x57,0xb9,0x16,0xb7,0x86,0x4a,0x0c,0x7d,0x45, +0xda,0xc5,0xd7,0x1c,0x60,0x04,0x49,0xee,0x43,0x15,0x84,0xfd, +0xcd,0x47,0x30,0x00,0xfd,0x59,0x1f,0x49,0x80,0x95,0x68,0x2c, +0x44,0xf5,0x68,0x29,0x4e,0x81,0x08,0x32,0xf8,0x43,0x82,0x1e, +0x08,0x6d,0x59,0x76,0xfa,0xf5,0x1c,0x98,0x22,0x26,0xee,0x62, +0xd6,0x08,0x4a,0x0a,0x77,0x51,0xea,0x6c,0x7c,0xf3,0xb6,0xd3, +0x01,0x95,0x14,0xee,0xa2,0x64,0xe6,0x30,0x93,0xa8,0xf5,0xba, +0x72,0x59,0x4e,0x4a,0x4b,0x8e,0xb4,0x1b,0xbe,0x11,0xc1,0x5c, +0xdc,0xf4,0x88,0x2f,0xc7,0xa3,0x14,0x32,0x32,0x93,0x69,0xf3, +0x9b,0xad,0xdf,0xed,0x95,0x1e,0xa6,0x83,0x0e,0x86,0x46,0x45, +0x79,0x7b,0x2e,0xe5,0x8c,0x65,0x14,0xf8,0x41,0x01,0x2b,0xf3, +0xc8,0x6c,0x95,0x96,0xd2,0xad,0x17,0xb3,0x7a,0x25,0x30,0x1f, +0xed,0x89,0x9a,0xc6,0x81,0x3b,0x0b,0x47,0xf9,0xe1,0x78,0x94, +0xe4,0xa8,0xba,0xf6,0x81,0x3f,0xac,0xa0,0x18,0x35,0x70,0xbb, +0x30,0x9c,0xa4,0x7a,0x5d,0xac,0xb5,0xfa,0x83,0x6b,0xc7,0x6e, +0xca,0x42,0x6e,0xcb,0x92,0xcb,0x3a,0xa0,0x41,0x63,0x14,0xfa, +0xb2,0xb0,0x1a,0x13,0x70,0x35,0x05,0x51,0xca,0x90,0x00,0x3a, +0x98,0x40,0x43,0x8c,0x32,0x9a,0x93,0x73,0x73,0x8a,0xa0,0xe1, +0x9b,0x2c,0x69,0xaa,0x03,0xba,0xc4,0x5e,0x76,0x83,0x23,0x0b, +0x6b,0xf8,0x09,0xb8,0x06,0x66,0x81,0x73,0xbb,0xf0,0xd1,0x8a, +0x40,0x8f,0x59,0xa8,0x29,0x4c,0x20,0x2c,0x45,0x0b,0xfd,0x2d, +0xe5,0xe2,0x0e,0xf4,0xa2,0x06,0x44,0x24,0x1b,0x82,0x8e,0x7c, +0x26,0x46,0x0f,0x9c,0xa0,0xe5,0x22,0xf9,0x06,0x16,0x67,0x4d, +0x82,0x59,0x34,0xfe,0x24,0x34,0xb1,0x38,0x82,0xaf,0x86,0x11, +0x04,0x25,0xa3,0x33,0x8b,0x79,0x53,0x20,0x8f,0x86,0x0c,0xcc, +0x63,0x27,0x41,0xde,0xef,0x54,0x3b,0x39,0x81,0x3c,0x18,0x8a, +0x79,0x34,0x6a,0xd9,0xb0,0xa8,0x35,0x09,0xb4,0x48,0xec,0xa8, +0x02,0x4b,0xb6,0x05,0x98,0x22,0x10,0x27,0xc0,0x4a,0xa6,0x0a, +0x57,0xd1,0x89,0x37,0xce,0x74,0x9f,0x6a,0x37,0x8b,0xe7,0xf6, +0x59,0xed,0x36,0xd8,0x21,0x63,0x90,0xb1,0xfc,0x40,0x85,0x4d, +0xdb,0x32,0xd5,0x7f,0x69,0xc3,0xc6,0xfa,0x0d,0x75,0xee,0xeb, +0x57,0x5b,0xc9,0xd6,0x1a,0x57,0x38,0x70,0x77,0x6e,0x5c,0xed, +0xaf,0x79,0x5c,0xec,0x5f,0xec,0x5b,0xec,0x55,0x5e,0xcf,0x79, +0x55,0x78,0x97,0xf9,0x14,0x33,0xfc,0x12,0xe8,0x60,0x61,0x2e, +0xf8,0xb5,0xa2,0x1f,0x4c,0x34,0xc3,0x89,0xb8,0xce,0x06,0xd6, +0xe1,0x5c,0x8c,0xb2,0xe1,0x73,0x5b,0xe9,0x81,0x3a,0xd4,0x61, +0x73,0x1f,0x67,0xbd,0x4a,0xff,0x89,0x81,0xd1,0xd4,0x2e,0x14, +0x07,0xe3,0x08,0x97,0xc9,0xde,0x45,0x3e,0x05,0xde,0xb9,0x0c, +0xdf,0x83,0x63,0x59,0x08,0x6d,0xc5,0x50,0x98,0x64,0x86,0x93, +0xd0,0xdb,0x06,0xbc,0xd1,0x18,0xbf,0xb5,0xe6,0x9b,0xda,0xf0, +0x5b,0x4a,0xe9,0x9e,0xfc,0x12,0xfb,0xa7,0xc1,0x5d,0xf2,0x4e, +0x58,0x4c,0x47,0x19,0x38,0x4f,0x75,0xd6,0x64,0x6e,0xea,0x5f, +0x5e,0xa3,0xaf,0x6a,0xb5,0x3d,0xd0,0x46,0xe2,0x4a,0x9d,0x31, +0x12,0x35,0x53,0xb7,0x2e,0xd6,0xbe,0x79,0xe6,0xfe,0xc0,0xbc, +0x53,0x5a,0xd9,0x5b,0xff,0x29,0xfd,0x3b,0xa6,0x86,0x2e,0xde, +0xc5,0x5a,0xf0,0xcb,0x07,0x02,0xd0,0x9c,0x4e,0x36,0x17,0x81, +0x26,0x55,0x93,0x91,0x5e,0x2b,0x95,0x6f,0xea,0xbb,0x42,0x0b, +0xc9,0xe8,0xc1,0x0a,0x11,0xed,0x2f,0xc0,0x9f,0x97,0xd2,0xe8, +0x87,0x3f,0xb0,0x50,0x42,0xb4,0x5e,0x42,0x7c,0x2c,0x43,0x1e, +0xca,0xfe,0x62,0x34,0x5b,0x98,0x65,0xf3,0xc7,0x98,0x56,0x1a, +0xf7,0x08,0xbf,0xb1,0x7d,0x65,0x5d,0x55,0x57,0x9a,0xdc,0x2f, +0x72,0xd6,0x0e,0xc6,0xee,0x32,0xef,0xf5,0x75,0xbe,0x2d,0xc1, +0xdd,0x0c,0x24,0xc1,0xa9,0x81,0xc9,0x78,0x0a,0x62,0xa8,0x25, +0x9a,0xf8,0xb5,0x3e,0xae,0x70,0xc9,0xb6,0xe6,0x1e,0x67,0xdf, +0x2e,0xbc,0x76,0x9e,0xc1,0x65,0xf4,0xfa,0xfd,0xeb,0x0e,0xb8, +0x1e,0x48,0x30,0xe3,0xc0,0x20,0x1b,0x66,0x15,0xc0,0xd8,0xf3, +0xfb,0xda,0xb8,0x55,0xe1,0x4b,0x23,0xe7,0x44,0x31,0x60,0x47, +0xb7,0x96,0xd5,0x54,0x55,0xd4,0x30,0x27,0xa9,0xeb,0x68,0x0a, +0x1c,0x89,0x33,0xa1,0x8b,0x0b,0x9b,0x39,0xb5,0xca,0x15,0x35, +0xa6,0xed,0x4c,0x0b,0xbf,0x80,0x28,0x59,0xc8,0x21,0x5a,0x56, +0x92,0x3f,0x97,0x3f,0x67,0xd1,0xc3,0x16,0xeb,0x76,0x60,0x72, +0x4c,0xb2,0x03,0x07,0x49,0x47,0xe1,0x7a,0x0a,0x6c,0x68,0x65, +0xf6,0xe1,0x2e,0x16,0x55,0x3a,0xc1,0x14,0xdd,0xe8,0x92,0xb2, +0x9c,0xaa,0x9c,0x5a,0x8b,0x24,0x6e,0xab,0x73,0x80,0xab,0x9b, +0x2b,0x23,0x3c,0x47,0x8b,0xab,0x30,0x91,0xe2,0x17,0xdc,0x65, +0x77,0x96,0x6e,0x2f,0x88,0xcc,0xb6,0x8e,0xe2,0xce,0x05,0x25, +0xfb,0x27,0xf8,0x33,0x68,0x9c,0xca,0x46,0x17,0x45,0xe5,0x84, +0x67,0xd8,0x45,0x71,0x69,0x21,0x29,0x81,0x49,0x01,0x0c,0x3f, +0x18,0x27,0xb2,0xae,0x19,0x36,0xe9,0x0e,0x89,0x5b,0xd7,0x73, +0x8d,0xdb,0xaf,0x87,0x5c,0x88,0x64,0x04,0x1f,0x54,0x67,0x5b, +0x6b,0xae,0x3e,0x2c,0xbc,0xe5,0x98,0xce,0x6d,0x31,0xb1,0xd1, +0xb1,0x74,0x63,0xe4,0xb3,0x41,0x9d,0x6d,0xb6,0xad,0x31,0xbd, +0xa0,0x5b,0x5b,0xc8,0x6d,0xec,0xb4,0xbf,0x65,0xdf,0xc2,0xc0, +0x1a,0xa1,0x88,0x45,0x2e,0x19,0x87,0x67,0x4c,0x2b,0x7a,0x59, +0xd5,0xdb,0x58,0x7d,0x85,0xa9,0x11,0x74,0xe9,0x82,0x9c,0xdc, +0xbc,0x8c,0x7c,0x06,0xd6,0x53,0xd5,0x69,0x29,0xd5,0xd2,0x2b, +0xb4,0xc5,0x59,0xd1,0x52,0x8c,0xa1,0xfd,0xf7,0x9d,0xc8,0x95, +0xbe,0x34,0x9b,0x4b,0xdb,0xa6,0x84,0x35,0x1c,0x96,0x68,0xaf, +0x9e,0x61,0x82,0x33,0x1d,0xf3,0x9d,0xb8,0xce,0x8c,0xb6,0xdc, +0x86,0xfc,0x66,0xe7,0x4e,0xcf,0x9b,0x7e,0x53,0xfd,0x90,0x0d, +0xc1,0x45,0xbb,0x52,0xac,0x39,0xd0,0x4d,0x82,0xb9,0x85,0xf0, +0x75,0x0d,0x0c,0x77,0x87,0x6f,0xb6,0xc0,0xe2,0x30,0x06,0xbd, +0x89,0xdf,0x3a,0xbb,0x19,0x79,0x2c,0xf6,0x59,0x5e,0x24,0xbb, +0x60,0xa5,0xa8,0x3c,0x37,0x94,0xaf,0x21,0x31,0xea,0x04,0x38, +0x26,0x80,0x6a,0x52,0x4a,0x68,0x52,0xe8,0xd9,0xb0,0xfa,0x42, +0xce,0xf1,0xbe,0xc1,0x4b,0xd3,0x5e,0xd7,0x00,0xae,0xc8,0xa7, +0xd8,0xa3,0x78,0xfd,0xd2,0xbd,0x93,0xf7,0x4f,0x3e,0x50,0xd5, +0x57,0x7a,0x3f,0xf7,0xa6,0x75,0x12,0x17,0x2c,0x73,0x5b,0xe0, +0xba,0x66,0xc1,0x61,0x2e,0x02,0xd7,0xb1,0x9b,0x77,0x6e,0xde, +0xe9,0xb7,0x8b,0x81,0x88,0xf7,0x6d,0xd3,0xc0,0xc4,0x1c,0x4d, +0xf0,0x1b,0x6b,0xf8,0x06,0x8f,0xd2,0x4e,0x51,0x8e,0x3b,0x5c, +0x76,0x9d,0xb1,0xe2,0x2e,0x9f,0xa9,0x39,0x5b,0x9d,0xc4,0x60, +0x09,0x8e,0xa1,0x53,0xcc,0x44,0xef,0xa9,0xba,0x94,0xb4,0x6a, +0x29,0x34,0xd2,0xa5,0x89,0xe7,0xcf,0x96,0x24,0x31,0x84,0xf8, +0x4d,0x67,0x5b,0x31,0x1b,0xa6,0xc2,0xa1,0x16,0x61,0x21,0x7d, +0x3a,0xf3,0x64,0xe6,0x89,0x0c,0xfb,0xb3,0x5c,0xb8,0xf1,0x06, +0x4d,0x17,0xcb,0x2a,0x6f,0x2e,0xbb,0x28,0xb3,0x2c,0xbd,0x9c, +0x21,0xdd,0x4e,0xc5,0x7d,0x36,0xb0,0x93,0x0a,0x9b,0xb7,0xd0, +0x18,0x97,0x6b,0xe7,0xd9,0x71,0xa0,0x71,0x0b,0x46,0x3c,0x88, +0x83,0x41,0xcc,0x09,0xea,0xf8,0x64,0x18,0xbb,0x0a,0x96,0xac, +0xcd,0x6b,0xe1,0x50,0xeb,0xce,0xbc,0xae,0xd0,0x57,0x8c,0x12, +0xb8,0xcb,0x9f,0xb1,0xfb,0x6c,0x76,0x19,0xed,0xd0,0x67,0xf0, +0x2b,0x0b,0x82,0x27,0x43,0xa6,0x05,0x4e,0xf1,0x5b,0xd6,0xbc, +0xb1,0x71,0x63,0x83,0xbb,0xdb,0x5a,0x0b,0x83,0x55,0xc6,0xe5, +0x0e,0xdc,0xc3,0x1b,0x5d,0x7d,0x75,0x0f,0x4b,0x02,0x8a,0xfd, +0x8a,0x7d,0xca,0x1b,0x39,0xe2,0xa4,0x25,0x3e,0x85,0xed,0x40, +0x97,0x80,0xca,0x59,0x58,0xc1,0x5c,0x42,0x03,0xfa,0xec,0xf5, +0x84,0xce,0x53,0x6d,0x0c,0xff,0xf5,0x41,0xd6,0x6f,0x86,0xf6, +0x4c,0x1c,0xab,0x5e,0x6a,0xcb,0xc1,0xd8,0x77,0xf7,0x5f,0x66, +0xc3,0x08,0x26,0x9e,0xca,0xc2,0x61,0xaf,0x16,0xc0,0xd8,0x49, +0x25,0x64,0xf4,0xd1,0xbf,0x2d,0xfa,0xd1,0xfb,0x1d,0x23,0xb8, +0x09,0xaf,0xd9,0x4d,0x45,0x5e,0x05,0x9b,0x72,0x73,0x1f,0x65, +0xbf,0xca,0x78,0xcd,0xc0,0x04,0x6a,0x27,0x8a,0x83,0x70,0xb8, +0xc3,0x14,0x06,0x72,0x21,0x8c,0x85,0xf6,0x76,0x6c,0xa7,0x62, +0x85,0x1f,0xd9,0xab,0xd0,0x6c,0x7e,0x85,0x5f,0x24,0x2c,0x17, +0x16,0xd1,0x30,0x00,0x7f,0xb0,0xb8,0x1f,0x9b,0x61,0x3f,0xf1, +0x30,0x43,0xb9,0x21,0x5b,0xe8,0x57,0xe5,0xdf,0x10,0xb8,0xd8, +0x57,0x2d,0x68,0xda,0xce,0x73,0x64,0xdc,0xd1,0xa9,0x30,0xbc, +0xe4,0x4d,0xf5,0x8f,0x1e,0x30,0xd4,0x1f,0x46,0x47,0xa7,0x36, +0x71,0xd3,0xce,0xce,0xcb,0x5e,0x59,0x78,0xe7,0xe2,0x95,0xfa, +0xb2,0x66,0xa6,0x02,0x1f,0xd0,0x89,0xc9,0x09,0x29,0x67,0x52, +0x6c,0xce,0x71,0xeb,0x56,0x2f,0x35,0x9f,0xe3,0x5e,0xe2,0xc4, +0x95,0x9f,0x2b,0xcf,0x3c,0x9f,0xcb,0xe0,0x52,0x4d,0x76,0xdd, +0x5d,0xcb,0x87,0x0e,0x6d,0x4e,0x3e,0x5c,0xb3,0x75,0xeb,0x8a, +0xcb,0x6b,0x19,0x7e,0x76,0x0b,0x6b,0x5a,0xe0,0x58,0xea,0x57, +0x1a,0x1f,0xcf,0xc1,0x45,0xca,0x7f,0x93,0x83,0x97,0xc9,0x66, +0x26,0x4d,0xf1,0x12,0x40,0x7b,0x33,0xb6,0xdf,0x87,0x53,0x4d, +0x78,0xaa,0x0f,0x72,0x9b,0x30,0xb7,0xdb,0xdc,0x04,0x93,0xec, +0x21,0x49,0x0f,0x63,0xec,0x21,0x46,0x0b,0xab,0xed,0xa0,0x7a, +0xe1,0x55,0x4a,0x50,0xe7,0xd7,0xb0,0x68,0x6f,0x01,0xca,0x18, +0x42,0xcd,0xf1,0xb6,0x9d,0xe6,0x2e,0xc9,0xb2,0x78,0x55,0x59, +0xd7,0x7e,0xfc,0x8e,0xca,0x09,0x6a,0xf1,0xa9,0xc7,0x3a,0xb0, +0x48,0xcc,0xef,0xa0,0x4e,0x77,0x8a,0x84,0x18,0x0a,0x95,0x17, +0x74,0x00,0x2d,0x25,0x58,0x4d,0x3e,0x8a,0xed,0x86,0x34,0x93, +0xab,0xdd,0x90,0xdc,0x8c,0xc9,0x4f,0xcc,0x35,0x31,0xed,0x89, +0x85,0x26,0x7e,0x6b,0x07,0xdf,0x9a,0xd0,0xfc,0x38,0x8c,0x66, +0x3b,0x3c,0x1e,0x6c,0xf8,0xb4,0x21,0xaf,0x9e,0xb3,0x4f,0x5b, +0x97,0xe6,0x79,0xee,0x72,0x49,0x79,0x45,0xd1,0x05,0xd7,0x22, +0xce,0xcf,0xc3,0xdd,0xcd,0x23,0xc0,0xef,0xdc,0x96,0xb4,0x90, +0xb4,0xda,0x92,0x8b,0x97,0x0a,0x2b,0xd6,0x15,0x71,0x41,0x9b, +0xdc,0xd6,0x6f,0x08,0xd8,0x5c,0x1a,0x5e,0x16,0x55,0x65,0x1b, +0xcd,0xe5,0xad,0xad,0x32,0x7e,0x6c,0xce,0xe0,0x2b,0xea,0x6a, +0x6d,0x45,0x7d,0x6e,0x13,0x73,0x01,0xcf,0xdb,0x83,0x17,0x1d, +0xec,0xe9,0xef,0xed,0xe2,0xbb,0xbe,0xd8,0xf2,0x82,0x73,0xfe, +0x26,0x0f,0xee,0x42,0x78,0x8b,0xd7,0x25,0xdf,0x75,0x41,0x96, +0x5b,0xd7,0x04,0xe7,0x39,0x71,0xbf,0x57,0x3c,0xa8,0x6c,0xaf, +0x62,0xdc,0x60,0x32,0x41,0x9d,0xdf,0xdb,0xc0,0x23,0xda,0x7f, +0x05,0x8e,0x36,0xc3,0x00,0xdb,0x6c,0x0b,0x0e,0xce,0xf4,0xbf, +0xbb,0x9a,0x09,0x34,0x51,0x7a,0x36,0x61,0xd5,0xb4,0x39,0x24, +0xea,0x66,0x5f,0xe1,0x30,0xb8,0x05,0x95,0x3b,0x7d,0x1e,0x31, +0xf0,0x73,0x2b,0x7e,0x22,0x4c,0x92,0xe0,0x09,0xb9,0x8e,0xfc, +0x0e,0x6b,0xbe,0x10,0xd3,0x5e,0x92,0x8f,0x6f,0x6d,0xe0,0xdb, +0x35,0x57,0xef,0x42,0x9a,0xe2,0x23,0xa5,0x15,0x53,0x28,0xfc, +0x0e,0x83,0xd8,0xa9,0x78,0x5c,0xd8,0xd7,0xd9,0x2a,0x9f,0x63, +0xd3,0xc9,0xef,0xc3,0xc2,0x0f,0xf0,0xa4,0xf5,0x4f,0x63,0x6d, +0x88,0x0d,0x4c,0x65,0x3f,0xc0,0xb4,0xa9,0x34,0xe4,0x0a,0x63, +0xd9,0x81,0x39,0xf0,0x10,0x2c,0xa8,0xfd,0x38,0xc4,0xde,0x76, +0x8e,0x75,0x85,0x1b,0x07,0x54,0x5f,0xf3,0x83,0x78,0x18,0xce, +0x80,0x1a,0xce,0xa1,0x6c,0xb2,0xb6,0x37,0x4b,0x88,0x71,0x57, +0x26,0x25,0x57,0x48,0x1f,0xd3,0x76,0x67,0x45,0x33,0x67,0xd3, +0x41,0xfb,0x63,0xb3,0xa5,0xc4,0xab,0x36,0x13,0xa8,0x34,0x79, +0x2b,0x8b,0x06,0x94,0xe7,0x9e,0x53,0x25,0xd2,0x6a,0x38,0x0a, +0xa5,0x78,0xb4,0x03,0xb6,0xc1,0x39,0x5c,0x42,0xe7,0x67,0xe6, +0xe4,0xa6,0xe5,0x32,0xe7,0x49,0xe2,0x3d,0x9d,0x74,0x3a,0xe9, +0x64,0xb2,0x7d,0x22,0xb7,0x71,0xb5,0x96,0x6c,0xa1,0x63,0x91, +0x07,0x97,0x74,0xea,0xec,0xa9,0xb3,0xa7,0x19,0x0c,0x87,0x2d, +0x96,0xb8,0x07,0x5f,0x37,0x77,0x80,0x89,0x33,0x6d,0x9c,0x15, +0x72,0x57,0x02,0xfa,0xd4,0x05,0xc5,0x68,0xb5,0xb4,0xe3,0x59, +0xd1,0xc0,0x2c,0x78,0xcb,0x1e,0x24,0x6b,0x1e,0xd3,0x8e,0x63, +0x60,0x39,0x75,0x39,0xa9,0x2a,0xe5,0x7c,0xfa,0xe6,0x5a,0x6e, +0xed,0x06,0x1c,0xe9,0x3d,0x7d,0x7b,0xb2,0x3d,0x57,0x79,0xe2, +0xf2,0xe9,0xcb,0x09,0x0c,0x49,0xd8,0xf3,0xad,0x60,0x26,0xbd, +0x67,0xaa,0x27,0x0e,0x9a,0x8a,0x63,0xca,0x9c,0xb8,0xc7,0x6f, +0x0b,0x1f,0xc5,0x3e,0x64,0x4e,0x08,0x76,0x2d,0xbc,0x09,0x15, +0x1f,0x77,0xf4,0xf8,0x01,0xc9,0x43,0x5c,0x78,0xa9,0x74,0x19, +0xcc,0x3f,0x70,0x66,0x4f,0xdc,0xce,0xdd,0x2a,0x7c,0x24,0xbc, +0x64,0x23,0x43,0x03,0x43,0x02,0x23,0x18,0x92,0xe2,0xb3,0xd3, +0x33,0x33,0xd2,0xb2,0x18,0x23,0x94,0xb1,0xd7,0x61,0xb9,0x11, +0xdd,0xa4,0x7c,0x1d,0xb4,0x8d,0x68,0x0c,0xf7,0x60,0x65,0xb8, +0xbc,0x97,0x86,0x40,0x65,0xd0,0x96,0xa1,0x36,0x65,0x4f,0xe4, +0x8b,0xc6,0xfd,0x60,0x4c,0xc1,0x61,0x5d,0x16,0x6d,0xfa,0xc1, +0x86,0xc2,0xc3,0x48,0xb3,0xab,0xd1,0x98,0x80,0xa1,0x5d,0xca, +0x60,0xb3,0x1a,0x6d,0x88,0x9e,0xc6,0xc2,0x53,0xf6,0x57,0xf8, +0x16,0xc2,0xf1,0xdb,0x1f,0xa1,0xbd,0xe5,0x4f,0x23,0x6c,0xa1, +0x6a,0x3e,0x46,0x93,0x85,0x47,0xcf,0xc0,0x3a,0xdb,0x3f,0x94, +0x5b,0x68,0x41,0xc4,0x2f,0x65,0xe7,0xa3,0xee,0x8f,0x0a,0xd8, +0xa2,0xc6,0xc2,0x5a,0x1c,0x85,0x6b,0x3f,0xc3,0x96,0x51,0xa0, +0x8b,0xa3,0x68,0xc2,0x90,0xd0,0x82,0x9c,0x5b,0x50,0x78,0x04, +0xb5,0xd9,0x19,0xa8,0xfb,0x2b,0x0d,0x11,0x78,0x81,0xb5,0xab, +0xb5,0xbe,0x68,0x75,0x7e,0xd3,0x7a,0xae,0xd5,0xeb,0xaa,0x7b, +0xfd,0x3a,0x06,0x4d,0x27,0xb3,0xeb,0x77,0x9f,0xa8,0x90,0x82, +0x89,0x19,0x9a,0xd1,0x5a,0x39,0xe1,0x8f,0x25,0x50,0x4e,0xd5, +0x25,0xa5,0x55,0x49,0x7f,0xa4,0x2d,0xd2,0x45,0x38,0x9a,0x6e, +0x05,0x63,0xf6,0xaa,0x69,0x87,0x4e,0xd5,0xea,0xfa,0xf3,0x9c, +0xeb,0x23,0xeb,0x5e,0xf3,0x4e,0x66,0xc0,0x1e,0xe3,0xd9,0xde, +0xde,0xea,0x87,0x79,0xb7,0x1c,0xb2,0xb9,0x60,0x43,0x57,0x2d, +0x63,0x0b,0x12,0xe1,0x9e,0xf0,0xd3,0xd9,0xcd,0x3b,0xfc,0x77, +0xf9,0xed,0x64,0x60,0xc7,0xef,0x6d,0x93,0xc0,0xdc,0x02,0xcd, +0x71,0x9c,0x35,0x8c,0xc3,0x78,0xda,0x75,0xbb,0xeb,0x4e,0xb7, +0xdd,0x67,0x2c,0xb9,0x8b,0x67,0xaa,0x12,0xab,0x48,0x14,0x2e, +0x45,0x46,0x91,0xde,0x7f,0xa6,0x6a,0x52,0xce,0x5d,0x96,0x42, +0x13,0x7d,0x3e,0xb1,0x34,0x49,0x11,0x85,0x89,0xf4,0x58,0xf0, +0x6e,0x44,0xef,0xdf,0xa9,0xa6,0xd8,0xba,0xd8,0xca,0xb8,0xa4, +0xc8,0xa4,0x88,0xc4,0x88,0x8b,0xc5,0xdc,0xa6,0x66,0xa7,0x2b, +0x1e,0x55,0x1b,0xfc,0xb9,0xe4,0xed,0xc9,0xdb,0x92,0x23,0x4c, +0x0f,0x6a,0x1d,0x5c,0x79,0x38,0xf3,0x42,0x56,0x5d,0x4a,0x25, +0x03,0xa5,0x0d,0xc2,0x09,0xea,0x68,0xce,0xb7,0x39,0x39,0xaa, +0xfc,0x6e,0x08,0x11,0x1a,0x30,0x88,0xc2,0xd3,0xdb,0x30,0x50, +0x1b,0xe7,0x4a,0xea,0x3d,0xaf,0x03,0x9b,0x07,0x16,0x27,0x21, +0x48,0x05,0x56,0x52,0xdb,0x36,0x84,0xb8,0x04,0xb9,0x33,0x31, +0x5b,0xb7,0xc6,0x84,0x88,0xe3,0xec,0xbb,0x8e,0x5d,0x3f,0xde, +0x15,0xab,0x32,0x0d,0xdd,0x1c,0xc0,0x0d,0x47,0xe2,0x01,0x7b, +0xbe,0xb2,0x09,0x0f,0xd1,0xa0,0x2e,0x3f,0xc0,0xe2,0x48,0x41, +0x07,0x46,0x12,0xf4,0x55,0x29,0xb7,0x61,0x5d,0xaa,0x2d,0x6b, +0xad,0xcb,0x36,0x3a,0x73,0x57,0x3c,0x1b,0xd6,0x37,0xb8,0x30, +0xbc,0xb1,0x50,0xc8,0x42,0x74,0x33,0x46,0x7f,0xa4,0x3a,0x62, +0x9b,0xe3,0x2e,0xc7,0xa5,0x44,0xa4,0x44,0x24,0x85,0x57,0x95, +0x72,0x1e,0x2d,0x76,0x57,0xdc,0xaa,0x3c,0x7c,0xc9,0x64,0x53, +0xa2,0x52,0x22,0x65,0x07,0x35,0x0f,0x2e,0x3a,0x94,0x45,0x26, +0x7b,0xee,0x02,0x03,0x3d,0x4d,0x42,0xf3,0x5f,0x27,0x5b,0x02, +0x5b,0x85,0xb7,0x9f,0x27,0x1b,0x8e,0x81,0x2b,0xc8,0x64,0x1b, +0x37,0xf6,0x03,0x5b,0x08,0x66,0xa7,0x14,0x93,0x35,0xa4,0x22, +0x36,0x6c,0x75,0xdd,0xe2,0x1e,0x14,0x13,0xfc,0x6d,0x50,0x4c, +0x9c,0x1d,0x77,0xf3,0x78,0xff,0xf1,0x1b,0xb1,0x8c,0x1a,0x06, +0xdb,0x41,0x30,0x0e,0xc7,0x73,0x76,0xfc,0xeb,0x66,0xcc,0xa0, +0x41,0x5b,0xbe,0x8f,0xc5,0xe1,0x42,0x00,0x0c,0xa7,0x51,0x15, +0x1b,0x58,0xb7,0x1a,0xa3,0x56,0xcb,0x0a,0x4f,0x17,0xae,0x7d, +0x43,0x87,0x63,0xbd,0x13,0x13,0x38,0x95,0x0d,0xc2,0xa1,0x1b, +0x71,0x84,0xe9,0xb4,0xb6,0x8d,0xdc,0x35,0x18,0x7a,0x19,0x26, +0x66,0x7e,0x60,0x94,0xfe,0x98,0x20,0xcf,0x62,0x85,0x09,0x03, +0x5f,0x13,0x40,0x2b,0x15,0x56,0x50,0x5e,0xfb,0x53,0x8a,0xa5, +0x7c,0x1d,0x9a,0x80,0x9f,0x29,0x41,0x58,0x6a,0x56,0xa0,0x46, +0x1f,0xc6,0x76,0x47,0x9c,0xad,0x86,0x63,0x6a,0x08,0x8a,0x61, +0x60,0x7a,0x13,0xe8,0x1e,0x07,0x82,0xa4,0x46,0x09,0x07,0x29, +0xa3,0xb4,0x4d,0x8f,0x25,0xfc,0x32,0xaa,0xee,0x5c,0x2a,0xc9, +0xa6,0x5f,0xd3,0xe6,0xc9,0x22,0xbc,0x0f,0xef,0x59,0x08,0x86, +0x64,0x0c,0xa6,0x31,0x19,0x1b,0x59,0x38,0x48,0xce,0x0f,0x12, +0x48,0x24,0x93,0xdf,0x63,0x2d,0x8d,0x30,0xff,0x3a,0xf9,0x38, +0xe6,0x00,0xc7,0x2c,0x3b,0x3a,0x20,0x5f,0xf1,0x91,0xda,0x88, +0xa9,0xd4,0xc0,0x68,0xec,0x62,0xff,0x18,0x55,0x8f,0x2a,0x30, +0x12,0x7f,0xa1,0x4e,0xa6,0x9e,0x48,0x8d,0x4f,0xb6,0x8a,0xe7, +0xf6,0x6f,0xdb,0x17,0xb9,0x37,0x9c,0xc1,0x14,0x67,0x38,0x40, +0xed,0x0e,0xd9,0x15,0xb2,0x93,0x80,0x88,0x4b,0x94,0xdc,0xa4, +0x97,0xb8,0xd9,0x2b,0x3a,0x21,0xf3,0x4c,0xe6,0x99,0x2c,0x86, +0x77,0x13,0xac,0xd8,0x7a,0x2c,0x6f,0x85,0x20,0x58,0x31,0xb0, +0x0c,0x57,0xf0,0x12,0x1b,0x61,0x26,0x7e,0x3d,0xdd,0x81,0x3f, +0xb6,0xa8,0xf3,0x05,0x3c,0x69,0xc4,0x27,0xb7,0x69,0x58,0x04, +0x21,0xac,0x81,0xd0,0x78,0x83,0xde,0x83,0x21,0x2c,0xfc,0xa2, +0x4d,0x06,0xfa,0x4b,0x78,0x5c,0x84,0x69,0x2f,0xc8,0x47,0x8c, +0x0d,0xc4,0x68,0x5e,0x7d,0x02,0x69,0x8a,0x8f,0xe4,0x56,0x4c, +0xa6,0x60,0x27,0xee,0x64,0x5b,0x07,0x1e,0xda,0xd0,0xe9,0xc2, +0x73,0xf6,0xda,0xc3,0xa2,0xee,0xe4,0x37,0x0c,0xdf,0x6b,0xd9, +0x05,0xd7,0x06,0xb4,0x29,0x8c,0xdf,0xa9,0x33,0x0b,0xbf,0x92, +0xc8,0x83,0x79,0x09,0x8b,0x53,0x85,0x2e,0x3a,0xb6,0xf2,0x58, +0xcd,0xd1,0x16,0x46,0xe9,0x07,0x02,0xd8,0xa1,0x93,0x5f,0xb5, +0x9c,0x4a,0x2b,0x3d,0x77,0x31,0xa1,0x8c,0xe4,0xef,0xa5,0xf4, +0xc9,0xac,0x13,0x59,0x71,0x59,0x76,0x27,0xb8,0xb0,0xe9,0xeb, +0x66,0xeb,0xaf,0x2a,0xdf,0xc4,0xa5,0xa4,0x89,0xe4,0x9f,0xd6, +0xb0,0x0d,0x98,0x45,0x9f,0xce,0x3d,0x91,0x1f,0x57,0xd4,0x19, +0xdb,0x1e,0x5f,0x17,0x9f,0x14,0x79,0x36,0x32,0x71,0x5b,0x65, +0x11,0xe7,0x74,0xc3,0xb4,0xdf,0xae,0x71,0x53,0x00,0x97,0x1b, +0x94,0xef,0x5f,0xe0,0xa3,0xbb,0x7f,0xd1,0x81,0x85,0x87,0x4a, +0x9b,0x8b,0x3b,0x72,0x1a,0x9d,0x52,0xb8,0x20,0x5b,0x4f,0x7d, +0x0f,0x8b,0x55,0x87,0xb9,0x58,0xc7,0xce,0x63,0xbd,0xc7,0x6f, +0xc6,0xaa,0x1c,0x0c,0xd8,0xb7,0x65,0x77,0x30,0x83,0x36,0x8e, +0xb0,0x8c,0xda,0x68,0x66,0xb6,0x6e,0xf1,0xa6,0x9c,0x75,0xdc, +0xc7,0xba,0x5b,0x57,0x2f,0x3f,0x66,0xea,0xa9,0x9a,0x15,0x8f, +0x74,0x7f,0xb1,0x2b,0xb8,0xc4,0x2d,0xad,0x31,0x6a,0x74,0xef, +0x66,0x04,0x0f,0x38,0xc8,0xee,0xde,0xbc,0xcd,0x33,0xcc,0x8b, +0xc1,0xf1,0x54,0x46,0x49,0xea,0xf9,0xe4,0x72,0x66,0x1d,0x56, +0xb1,0xa0,0xf2,0x00,0x55,0xe8,0x1a,0x65,0x50,0x79,0x4c,0x8e, +0xf0,0xd1,0x9b,0xb5,0xd2,0x59,0x69,0xab,0xb6,0x21,0xd3,0x8d, +0xfb,0xf5,0xe2,0xd3,0x96,0x9e,0xef,0x18,0xe1,0x47,0x1c,0xcd, +0xc2,0xd4,0x07,0x38,0x55,0x71,0xdb,0xd4,0xc7,0xe4,0xc8,0x1b, +0xf4,0xb2,0x6b,0xe7,0xce,0x31,0xc6,0x6f,0x9c,0x33,0x5d,0x39, +0x60,0x6b,0x61,0xd0,0xf5,0x27,0xbf,0x33,0x78,0x59,0xf1,0x16, +0xee,0xe2,0x76,0x50,0x79,0xf1,0x23,0x30,0x9e,0xa5,0xdc,0xd2, +0xc9,0xf8,0xf5,0x52,0x5c,0x62,0xcd,0xe0,0x5c,0xb0,0x62,0x53, +0x36,0xa4,0xae,0x4b,0x74,0xba,0x94,0xcc,0x45,0xd7,0x6f,0xab, +0x8e,0xac,0x60,0xb0,0x1b,0x8f,0xb1,0xe7,0xaf,0xe5,0x3e,0x39, +0xf3,0xd0,0xf5,0x0c,0xb7,0x53,0x37,0x44,0xdb,0xdb,0x8c,0x81, +0x9d,0x60,0xc7,0x92,0xbc,0x60,0x75,0xda,0xa8,0x2e,0x91,0xdb, +0xdd,0x15,0xdd,0x11,0xd5,0xc8,0xe0,0x84,0x68,0xf6,0x94,0x49, +0x9c,0xce,0x51,0xfd,0x86,0x13,0xdc,0x91,0xfe,0xfd,0x37,0xf7, +0x5c,0x27,0xc1,0x28,0x9b,0x77,0x63,0x0f,0x80,0x18,0x94,0xda, +0x50,0x09,0xac,0x2c,0xd1,0x0a,0xe7,0x59,0x13,0xc2,0xbc,0x03, +0xc7,0xae,0xc7,0xc9,0x93,0x51,0x5c,0xe9,0xcc,0x3d,0x85,0x61, +0xc5,0xbf,0xc7,0xff,0x4a,0xe2,0xfd,0xf9,0x0e,0x3e,0x8e,0x3a, +0x71,0x3c,0xe6,0xf8,0x21,0xc9,0x2b,0x5c,0x74,0xe1,0xc2,0x02, +0x50,0xdf,0x9b,0xb4,0xef,0x98,0x22,0xde,0x2f,0x85,0xe3,0x2c, +0x8c,0x34,0x27,0x51,0x61,0x97,0x35,0x5f,0xd0,0x46,0x27,0xe1, +0x45,0x16,0x97,0x53,0x79,0xed,0x39,0x37,0x53,0xba,0x08,0xa6, +0x89,0xd4,0x0d,0xd6,0xd9,0x6c,0xc2,0xe0,0x3d,0x6b,0xd8,0x8d, +0xf3,0x31,0xc0,0x1a,0x02,0xf0,0x40,0x27,0x1c,0x80,0xad,0x6d, +0xb8,0x15,0xe6,0x43,0x1c,0x85,0x6f,0xde,0xb0,0x3b,0x9b,0xc3, +0xba,0x43,0x6b,0xec,0x23,0xb9,0x0c,0xe7,0x0c,0xf3,0x44,0x5b, +0xe2,0x74,0xfa,0xf2,0x42,0x76,0xe0,0x32,0xba,0x50,0x98,0xb4, +0x03,0xed,0x35,0x71,0x8a,0xa4,0xdd,0x59,0xf4,0x23,0x2c,0x49, +0x82,0x40,0xc8,0x52,0x85,0x89,0xf2,0x30,0x1a,0xbf,0x13,0x86, +0xb0,0x50,0x73,0x05,0x6b,0xe0,0x88,0x11,0x09,0xe5,0x69,0x16, +0x90,0x86,0x8f,0xf1,0x91,0x85,0x3c,0xf8,0x0a,0xfe,0x48,0xf8, +0xfb,0x62,0x88,0x66,0xe1,0x0f,0x94,0x7e,0x0f,0x3a,0x4d,0xa8, +0xf3,0x9b,0xf5,0x74,0x5c,0x65,0x0f,0xab,0x16,0xa0,0x18,0xff, +0x00,0xf1,0x4c,0xd4,0xb5,0x23,0xe9,0x60,0x6e,0x1b,0xa1,0x77, +0xcb,0x9a,0x71,0xd9,0x5b,0x9a,0xd7,0xe6,0xfb,0xd9,0x4c,0x54, +0xfe,0x71,0x32,0x0c,0x9b,0x4f,0xc0,0x25,0x8e,0x7e,0xb3,0xe4, +0x43,0xd0,0x6f,0x8c,0x1e,0x15,0xa2,0xb6,0x76,0x12,0x8e,0x9e, +0x59,0xe6,0xcc,0xfd,0xfe,0xec,0x25,0x0c,0x49,0x03,0x55,0x06, +0x54,0x07,0x86,0xb3,0x3c,0x63,0x29,0x8c,0xa1,0xb1,0xcd,0xf5, +0x94,0x0d,0xd4,0x56,0x8b,0xd0,0xa2,0x03,0x1c,0x69,0x18,0x73, +0xee,0x40,0xab,0x48,0x50,0xbc,0x0e,0x3a,0x03,0xb7,0xfc,0x4a, +0xf3,0xdf,0xa3,0x0a,0xeb,0x7e,0xd1,0xb9,0xdc,0xb1,0xd0,0x7b, +0x3d,0xd7,0xe0,0x5f,0xbf,0xe9,0xd2,0x7a,0x46,0x68,0xc9,0x67, +0x61,0xcb,0x64,0xdc,0x42,0xc1,0x6f,0x17,0xd9,0x46,0xff,0xa6, +0xf5,0x97,0xd6,0x9f,0xbf,0xc4,0xb9,0x57,0xd9,0x5f,0xb4,0x53, +0xfc,0x26,0xe6,0x35,0x3f,0x87,0xf5,0x89,0xf6,0x8e,0xf6,0xda, +0xc1,0x40,0x14,0x8c,0x6a,0xc3,0x51,0x60,0x62,0x41,0x30,0xfb, +0x58,0x6b,0x18,0x8b,0xb1,0x24,0x5b,0xac,0x53,0x64,0x0b,0x2b, +0x92,0x2d,0x2e,0x26,0x56,0x9d,0x65,0xb0,0x18,0x69,0x45,0xb6, +0x78,0xf5,0x17,0xcc,0x5e,0x4f,0x5f,0x48,0xaa,0x48,0xae,0x48, +0x65,0xf8,0xdf,0x05,0x9a,0x5d,0xde,0xac,0x5f,0x67,0x55,0xf7, +0xea,0x5d,0x27,0x8c,0x2c,0x00,0x35,0xa6,0x06,0xdd,0xe9,0xb4, +0x9b,0x67,0x6f,0x9f,0xec,0x62,0x6a,0x05,0x07,0x2b,0x98,0xa0, +0x46,0x63,0xd9,0x16,0x5c,0x8e,0x8b,0x31,0x50,0x52,0xe5,0x28, +0x22,0x5a,0xd9,0x98,0x05,0x0b,0xc0,0x46,0xf5,0x04,0x75,0x1a, +0xa7,0x34,0xa9,0xbd,0x9b,0x6e,0x69,0x2b,0x73,0xd2,0x74,0xcd, +0xb7,0xe2,0x5e,0xd6,0xdf,0x6b,0xb9,0x76,0xb5,0xc3,0xa1,0xdf, +0xee,0x99,0x05,0x23,0xcc,0x91,0x5f,0x61,0xc1,0x89,0xda,0xbd, +0x22,0x72,0x7e,0xc8,0x4a,0x06,0xbc,0xa8,0x60,0x64,0xec,0xa6, +0x2e,0x99,0xc7,0xa0,0x32,0x90,0xbc,0xa6,0x02,0x1b,0x54,0x15, +0xa5,0x24,0x97,0x93,0xb8,0xdb,0x09,0xda,0xc2,0x8c,0xdf,0x4c, +0xa6,0x0b,0x13,0xd0,0xbc,0x13,0x94,0xe9,0x37,0x8e,0xec,0x56, +0x1c,0xad,0x8b,0x23,0x67,0x2c,0xab,0x70,0xe5,0xfa,0xaf,0x36, +0xf5,0x96,0xf5,0x33,0x60,0x44,0x45,0x2d,0xde,0xbc,0xd2,0x49, +0x67,0x53,0x85,0x4b,0xf9,0x86,0x02,0x92,0x89,0xcb,0xb7,0xd4, +0xaf,0xbf,0xb0,0xc1,0xca,0x60,0x8d,0xf9,0x4c,0xdb,0x32,0x7b, +0x0e,0x0e,0x13,0x98,0x34,0x14,0x96,0x5f,0x80,0x30,0xb2,0x8c, +0x20,0xfa,0x6c,0xc9,0xe9,0xd2,0x93,0x25,0x0c,0x7f,0x5f,0x90, +0xb3,0xe8,0x47,0x79,0x46,0x27,0x54,0x48,0xf9,0x35,0xe0,0x8b, +0xdb,0x71,0x0a,0x9d,0x6a,0xab,0xf8,0x7d,0x79,0x75,0x66,0x3a, +0x11,0x48,0x2e,0x7e,0x2f,0x44,0xd0,0x5a,0x45,0x81,0x0f,0x24, +0xe0,0x4b,0x55,0xa7,0x67,0x90,0x6b,0x22,0xda,0x22,0x55,0xa4, +0x04,0xf5,0xe0,0xc4,0xb6,0x00,0x55,0x04,0x5c,0x22,0x2c,0x63, +0xaa,0x50,0x9b,0x30,0x88,0x33,0x84,0x41,0x28,0x9e,0x1a,0xd8, +0xec,0x36,0x8a,0x26,0x7c,0x64,0xa4,0xe5,0xef,0x54,0xc8,0xd4, +0xc0,0x29,0xfe,0xcb,0x9a,0x37,0x35,0x6e,0xaa,0xf7,0x70,0x5b, +0x63,0xa9,0xa7,0xa5,0x78,0x6a,0xf0,0xe0,0x66,0xe7,0xad,0xda, +0xc7,0xc5,0x81,0x85,0x9b,0x8b,0xfc,0xca,0x1a,0x38,0x9f,0x52, +0xdf,0x62,0xdf,0x02,0x42,0x94,0xf8,0xf7,0xac,0xb0,0x70,0x20, +0x7b,0x9e,0x35,0x7f,0xab,0x4d,0x9f,0x32,0xe5,0x0b,0x58,0xac, +0x04,0x7b,0xa8,0xa4,0x06,0x56,0x0b,0x2b,0xd9,0x1c,0xc2,0x31, +0xd2,0x09,0xc7,0x18,0x43,0xed,0x42,0x15,0x22,0x32,0xe7,0xa9, +0xde,0x05,0x5e,0x79,0x5e,0xb9,0x0c,0x2f,0x09,0x51,0xbc,0xd3, +0x59,0x89,0x4e,0xb4,0xcd,0x30,0x0c,0x25,0x6d,0x42,0x49,0x62, +0xe5,0x61,0x1b,0x9b,0xb0,0x29,0xc1,0xe5,0xb4,0x93,0xcf,0x5e, +0xef,0xbd,0x9b,0xf6,0x31,0x10,0x00,0x52,0x7e,0x22,0x4a,0x61, +0xa1,0x15,0x2e,0xc4,0x6f,0x84,0x89,0x84,0x70,0x6d,0xa3,0xad, +0x76,0x5b,0xee,0x35,0xdf,0x97,0x60,0xce,0x29,0x0a,0xe2,0x50, +0x99,0x1f,0x8b,0xe2,0x42,0x63,0x43,0x8f,0x87,0x37,0x24,0x71, +0x3b,0x1e,0x85,0xbc,0x0f,0xef,0x63,0xf8,0xcb,0xbc,0x26,0x8b, +0x2e,0xb0,0xc6,0x1c,0xd7,0xa0,0x89,0xf0,0x98,0x9a,0x5b,0xbc, +0xf9,0x67,0x09,0xb4,0xb4,0x62,0x1b,0xe5,0x1c,0x7d,0xb6,0x5e, +0xca,0x17,0xf2,0x5f,0xd3,0x03,0x8d,0x49,0xec,0x77,0x58,0xba, +0x8c,0x82,0x10,0x28,0x65,0xb1,0x74,0x09,0x94,0x12,0x58,0xea, +0x42,0x78,0xfb,0xfa,0x8f,0x0e,0x30,0xc8,0xfe,0xa5,0xfd,0x16, +0xae,0xd8,0xae,0xc8,0xac,0xc0,0x64,0xcd,0x4e,0x8d,0x3d,0x1a, +0x07,0xaa,0xde,0x57,0xc0,0x98,0x42,0x18,0x6e,0x99,0xc4,0x05, +0x22,0xe3,0x82,0xd3,0x5c,0xa7,0x32,0x31,0xdb,0xa2,0x62,0xb6, +0x89,0xe3,0x2d,0x41,0xf9,0x24,0xcc,0x39,0x0b,0x4c,0x9a,0xca, +0xe9,0xd0,0xd3,0x21,0xa7,0x42,0x99,0x01,0x9a,0x5f,0xcc,0x26, +0xad,0xbd,0x6a,0x09,0xa3,0x64,0x85,0x84,0x7f,0x7d,0xdd,0xe7, +0x52,0x17,0xd4,0xc9,0x98,0x52,0x41,0x96,0xf6,0x76,0xa8,0xba, +0x36,0xdf,0x86,0x03,0xee,0xee,0xb5,0xb6,0x94,0xfb,0xcc,0xf1, +0x01,0x65,0x36,0x2b,0x28,0xd7,0x27,0xc7,0xcb,0x32,0xda,0x74, +0x87,0x11,0x61,0xae,0xee,0x50,0x04,0x88,0x93,0x3e,0x58,0x4d, +0xc5,0xc9,0x42,0x2f,0x1d,0x7a,0x38,0xe4,0x50,0xc8,0xe1,0x33, +0x84,0x41,0x7f,0x95,0x0a,0x4c,0xd6,0xbb,0x82,0x94,0xe0,0xe4, +0xe0,0xc4,0xb0,0x4b,0x04,0x07,0xf5,0x18,0xfc,0xe4,0xd4,0xce, +0x5c,0x87,0xbd,0x2c,0x06,0xff,0x0a,0xc1,0x14,0x06,0xe3,0x6c, +0x92,0x6f,0x27,0x61,0x30,0xc5,0x2f,0xc3,0x4f,0xec,0x15,0x48, +0xb5,0xb8,0xca,0x2f,0x10,0x94,0x85,0x05,0x34,0xdc,0x57,0x50, +0xb8,0x43,0x98,0x0a,0x87,0x14,0xef,0x22,0x03,0xb0,0xf1,0x91, +0x71,0xe4,0xaf,0x3e,0x8d,0x8b,0xec,0xdb,0xda,0x1f,0xd4,0xe1, +0x12,0xc9,0x25,0x06,0x26,0xf8,0x27,0xf8,0x3a,0x1f,0x70,0x38, +0xe8,0x70,0xe8,0xfa,0x77,0xbd,0x40,0x5d,0x05,0xda,0x21,0x9f, +0xdb,0x6c,0xea,0x65,0xb8,0xd1,0x2c,0x2c,0x3b,0x34,0x27,0x24, +0xab,0xb2,0xeb,0x7c,0x5f,0x7e,0x8f,0x7d,0x16,0xb7,0xd5,0xc4, +0xcf,0xc8,0xdb,0x36,0x2a,0x39,0x2a,0x69,0xfb,0x59,0x1f,0x37, +0xae,0xcd,0xb9,0xd5,0xb6,0xc1,0x32,0x78,0xd3,0x56,0xef,0xad, +0x9b,0xbd,0x8e,0x78,0xc5,0x78,0xc7,0xc4,0x5b,0x71,0x57,0x8f, +0x5f,0x8d,0xbd,0x1a,0xc7,0x08,0xf3,0xaf,0xf0,0x4b,0xe8,0x92, +0xe3,0xc5,0x71,0x45,0xb1,0x0c,0xac,0xe7,0x87,0xb1,0x67,0x8a, +0x4f,0x97,0x9c,0x28,0xb1,0x3a,0xc3,0x85,0xe0,0x30,0x87,0x49, +0xab,0x35,0x2a,0x1d,0xb9,0xb3,0x29,0x89,0x29,0x89,0xa9,0x8c, +0x10,0xde,0x76,0x17,0x42,0x78,0x63,0x82,0xfe,0x33,0x4a,0xce, +0x95,0xa5,0x94,0x31,0x70,0x65,0x09,0xa5,0xd8,0x00,0x20,0x38, +0x8a,0xe4,0xd6,0x35,0x7b,0xc2,0x36,0x1a,0x8b,0x71,0x14,0x95, +0x62,0x25,0x82,0x61,0xd4,0xbb,0xfc,0x56,0x60,0x92,0xa5,0x29, +0x30,0x36,0x8e,0xc0,0x0c,0x56,0x15,0x26,0xd3,0x18,0x44,0x16, +0x8e,0x2b,0x49,0xc8,0x5f,0x49,0xe1,0x4a,0x24,0x89,0x77,0x25, +0x4e,0x43,0x72,0xee,0xfd,0x88,0x2d,0xd0,0xca,0x5c,0x94,0xb2, +0xb8,0x25,0x9d,0xdb,0xf6,0x5d,0xd0,0xcb,0x80,0xbb,0x0c,0x56, +0x62,0x2d,0x5b,0xf5,0x34,0xf3,0xcd,0xd9,0x37,0xf6,0xa7,0xb9, +0x9d,0x0b,0x43,0x17,0x7b,0x2c,0x53,0x04,0x25,0x22,0x9c,0xb8, +0x6d,0x71,0x91,0xb1,0xdb,0xea,0x52,0xb9,0xa8,0xbe,0xd0,0xbe, +0xad,0xed,0x0a,0xe1,0x6c,0x39,0xe3,0x7f,0xc6,0xcf,0xed,0x80, +0xeb,0x41,0x97,0x43,0x5d,0x4f,0x6e,0xc0,0x30,0x42,0x17,0x9d, +0xf2,0xb9,0x40,0x73,0x1f,0x63,0x2f,0xf3,0x88,0x2c,0x22,0x9e, +0xcc,0x0b,0x9d,0xa5,0x7d,0x79,0x3d,0x0e,0x59,0x5c,0x88,0x89, +0xbf,0xb1,0xaf,0xed,0xf6,0xa4,0xe8,0xa4,0xe8,0x44,0x5f,0x77, +0xae,0xc9,0xa5,0xc9,0xbe,0xd6,0x2a,0xd8,0x93,0x88,0x67,0xb3, +0xff,0x11,0xff,0x23,0x9b,0x63,0xe2,0x6d,0xb8,0xd6,0xe3,0x6d, +0xc7,0x5b,0x15,0xc2,0x69,0x57,0x14,0xe2,0x31,0x09,0x65,0x81, +0xae,0xed,0xea,0x4d,0x7c,0xcb,0xfc,0x3a,0x89,0xb2,0xce,0xde, +0xd9,0x24,0xf9,0x8d,0x2a,0x4d,0x4a,0x2a,0x91,0x5e,0xa7,0x9d, +0x92,0x44,0x2b,0xe7,0xd1,0xa1,0xfb,0x63,0x33,0xa5,0xbf,0xc2, +0x0a,0x82,0x48,0xdf,0x81,0x5f,0x13,0xfa,0xbd,0xb6,0x9e,0x8b, +0xeb,0xed,0x61,0xbd,0x1a,0x1e,0xb4,0x07,0x4d,0x7a,0xd7,0x4a, +0xe7,0x75,0x33,0x37,0x32,0x7c,0x83,0x20,0x65,0x97,0xa7,0xeb, +0x14,0x98,0x56,0xdc,0x68,0x6c,0xe8,0xcc,0xef,0x21,0x60,0x23, +0x83,0x4e,0xca,0x4c,0xc8,0x3e,0x93,0xed,0x94,0xca,0x79,0x2d, +0xd0,0x5e,0x81,0x83,0xed,0x72,0x9c,0xb8,0x4b,0x99,0x15,0x39, +0x25,0x05,0x45,0xee,0x65,0x9e,0x17,0x7d,0x74,0x3d,0x17,0x6f, +0x9e,0x11,0x99,0x46,0x78,0xfc,0xd0,0x8c,0x5f,0xca,0x1f,0xd4, +0xf5,0xba,0x3c,0xf2,0x7e,0x1d,0xcc,0x0c,0x4c,0x80,0x67,0x6c, +0xba,0x61,0xb2,0xd6,0x69,0xed,0xa6,0x73,0xdc,0xee,0xbe,0x88, +0x07,0xe1,0xd7,0x18,0x4c,0xc7,0x6a,0xb6,0xfc,0x49,0xda,0x9b, +0x84,0x37,0x8e,0xa7,0xb8,0xdd,0x0b,0xc3,0x17,0x7b,0x2d,0x67, +0xf8,0x1a,0xd8,0xc2,0x1e,0x8f,0x8b,0x8d,0x3d,0x4e,0x34,0xbc, +0x97,0x0a,0x72,0x58,0xef,0x6a,0xed,0xe9,0x7a,0x7e,0xc3,0x45, +0xbf,0x5a,0x46,0xe9,0x57,0xb0,0x61,0xe1,0x13,0xaf,0x39,0x9f, +0x4a,0x2f,0x4e,0xaf,0x4c,0x54,0xc0,0x1f,0x33,0xfa,0x54,0xe6, +0xc9,0xec,0xf8,0x2c,0xeb,0x13,0x5c,0xd0,0x4c,0xfb,0x59,0xab, +0xb4,0xca,0x3d,0xb9,0x93,0x8a,0xff,0x4e,0x31,0x72,0x92,0x27, +0x31,0x14,0x8c,0xcc,0x05,0x6d,0x02,0xa2,0x02,0x3a,0xae,0x40, +0x96,0xc5,0x15,0x3e,0x00,0xcd,0xc1,0x0e,0x42,0x29,0xe1,0x57, +0x18,0xc1,0xee,0xda,0x1c,0xb1,0x31,0xd4,0x87,0x00,0x06,0x2a, +0xab,0x38,0xbd,0x34,0xb5,0x8c,0xb1,0xc3,0x32,0x16,0xd8,0x9f, +0x91,0xa5,0xeb,0x95,0x81,0x7d,0x4b,0x8e,0x24,0x4f,0x5a,0xb1, +0x30,0xe9,0x67,0x9c,0xa4,0xb8,0x34,0xe9,0x2d,0x39,0x82,0x25, +0x3a,0xb1,0xd0,0x06,0x59,0xd8,0x46,0x0b,0x41,0x30,0x94,0x3d, +0xe7,0x99,0xba,0x2e,0xc9,0xb9,0x3a,0x85,0x8b,0xaa,0x8b,0xbc, +0x1c,0x5e,0xce,0xe0,0x0f,0x18,0xc3,0x96,0x75,0xe5,0x3f,0x49, +0xb8,0xef,0x9c,0xc0,0xed,0xd4,0x0b,0xd2,0xf1,0xb2,0x60,0xe0, +0x84,0x02,0x95,0xd8,0x9f,0xb5,0x3e,0x63,0xdc,0x90,0xc0,0xed, +0xea,0x8e,0x6a,0xdf,0x46,0xb0,0xc6,0xa4,0xed,0xec,0x29,0xd3, +0x78,0xdd,0xa3,0x06,0xcd,0x27,0xb9,0xc3,0xbd,0xfb,0x6e,0xec, +0xbe,0xc6,0x28,0xc9,0xe5,0x27,0x58,0xd7,0x22,0x8f,0x66,0xdf, +0x7b,0x7d,0xef,0x1a,0x60,0x54,0x19,0x4c,0xb4,0xca,0xe0,0x36, +0xe3,0x48,0xcf,0xa9,0x36,0x8b,0xfc,0x7e,0x8d,0x00,0xf6,0x10, +0x2c,0x61,0xe0,0x7c,0x3b,0x96,0xc1,0x74,0x33,0x54,0xa5,0x76, +0x09,0x17,0xad,0xf8,0x2a,0x3a,0x0e,0x2d,0xf2,0x70,0x76,0x15, +0x8a,0x2c,0xd7,0xea,0x98,0xce,0x75,0x2c,0xb7,0xe1,0x9e,0xd6, +0xf7,0x5d,0xed,0xe8,0x3b,0x2f,0xab,0x72,0xa8,0xf5,0xad,0xf4, +0xa9,0x49,0x3e,0xd1,0x90,0x0b,0xee,0x9c,0x5d,0xa1,0x68,0x0f, +0x9f,0xcc,0xba,0x15,0x18,0x95,0xd8,0xa4,0x6f,0x75,0xe3,0x5a, +0xc2,0xfa,0x37,0x95,0x6d,0x65,0x06,0xa2,0x84,0x60,0x96,0xa7, +0xa0,0x41,0xa0,0xa8,0x4e,0x3c,0xc8,0x82,0x39,0xc4,0xa0,0x39, +0x0d,0x83,0x71,0x0c,0x8b,0x6a,0x1b,0x71,0x8d,0x2f,0x6a,0x47, +0x9d,0x32,0xe3,0x40,0x2f,0x03,0xd6,0x16,0xc2,0xa4,0x4a,0x02, +0x3a,0x0c,0x08,0x7c,0x6a,0x11,0x56,0xc1,0x0a,0x18,0x80,0xbd, +0x18,0xf3,0x0b,0xb4,0xb5,0xfc,0x89,0xb1,0x85,0x8b,0xb3,0x09, +0x91,0xdc,0x0b,0xbf,0xe0,0x0a,0x41,0xdd,0x96,0x67,0x68,0x1b, +0x3d,0x1c,0xe6,0x88,0xfe,0x36,0x99,0x24,0x5a,0x1d,0xb9,0xf9, +0xae,0xae,0x92,0x60,0x24,0x8c,0xed,0x84,0xd8,0x78,0xaa,0x72, +0x06,0x8c,0x74,0x86,0x18,0x59,0x46,0x2b,0x87,0x41,0x6d,0x38, +0xba,0xc1,0xaa,0x8f,0xc9,0xe0,0x9b,0xd8,0xd9,0xa8,0xfb,0x0b, +0x6d,0x45,0xa2,0x10,0x72,0xb8,0x1a,0x38,0x1a,0x22,0x95,0x09, +0xf8,0xe0,0x50,0x97,0xe2,0x35,0x15,0x0f,0xd1,0x39,0x30,0xa7, +0x06,0xc6,0xe0,0x16,0xb6,0x64,0x63,0xc9,0xc6,0x7c,0x97,0xba, +0x42,0x2e,0xb0,0xc6,0xe7,0xa2,0xf7,0x79,0x86,0xf7,0x40,0x0d, +0xb6,0xb4,0xb8,0xbc,0x3e,0xef,0xb2,0x53,0x1e,0x17,0xea,0xe1, +0xed,0xbe,0xd1,0x8b,0x51,0xe2,0x47,0xf2,0x9b,0xd9,0x28,0xcf, +0x28,0x9f,0x30,0xef,0xad,0x85,0xdc,0xfe,0x93,0x7b,0x62,0x77, +0xef,0xda,0xb3,0x97,0x3b,0x74,0x96,0xba,0xdc,0x55,0xfd,0x22, +0xf3,0x25,0x73,0x19,0x19,0x98,0x63,0x85,0x73,0x70,0x82,0x35, +0x1c,0xa4,0xfd,0x70,0xd4,0x42,0x94,0xe2,0x6c,0x1c,0x59,0xe4, +0xc8,0x35,0x57,0x57,0x5d,0x2a,0xae,0x64,0x04,0xb5,0x0e,0x7e, +0x29,0x7d,0xe2,0xf8,0xd1,0xe3,0x07,0x25,0x84,0x4d,0xcc,0xae, +0xac,0xd4,0x7f,0x9a,0x7b,0x31,0xbd,0xfc,0x5c,0x95,0x0a,0xf8, +0xf3,0x1c,0xeb,0x33,0x5d,0x6b,0x36,0x72,0xb3,0x15,0xcf,0xce, +0xb8,0x77,0x8f,0x5e,0xe4,0xc1,0x48,0x26,0x9e,0xca,0x45,0xd1, +0x2f,0x0b,0x40,0x75,0x52,0x09,0x59,0x1e,0xfb,0xdb,0xfc,0x1f, +0x36,0xbe,0x27,0x28,0x9a,0x20,0x0c,0xb8,0xdd,0x8e,0xb7,0xa9, +0xa3,0xc2,0x2b,0x12,0x5a,0xef,0x10,0xab,0x5c,0x28,0x98,0x0b, +0x0b,0x69,0x7e,0x2c,0x90,0xb4,0xbc,0x0f,0xef,0xc0,0x3e,0xc5, +0x6f,0xa6,0xe5,0xf3,0x58,0x9c,0x76,0x15,0xdc,0x84,0x19,0x30, +0xd4,0x04,0x87,0x12,0x24,0xe0,0x76,0x15,0xa6,0xd1,0xf2,0x26, +0x2c,0x61,0xaf,0x08,0x19,0x74,0x51,0x6b,0x5e,0x4b,0x46,0x83, +0x45,0x32,0x17,0x62,0xbb,0xd9,0x7c,0x93,0x19,0x83,0xb5,0x16, +0x70,0x9a,0xf2,0x34,0x5f,0x67,0xe6,0x60,0xf1,0x20,0xf8,0xbd, +0x2f,0x88,0x36,0x4c,0xb5,0x40,0xb1,0x3f,0xca,0xa2,0xce,0x91, +0x2c,0xe7,0x90,0x02,0x1a,0x97,0x60,0xe4,0x77,0x30,0xc2,0x1d, +0xbe,0x76,0x06,0xc6,0x51,0xf1,0x40,0x4f,0x54,0x87,0xf4,0x65, +0x1c,0x54,0x71,0xa7,0xa7,0xed,0x79,0x25,0x0c,0x63,0x84,0x03, +0x44,0x7c,0x15,0xb5,0x65,0x4d,0xa5,0x2d,0x0c,0xf4,0x51,0xeb, +0xa7,0xd8,0x6a,0x69,0x5b,0xce,0x29,0x59,0x94,0xaf,0x9d,0x49, +0xa4,0x78,0x55,0x1e,0xcf,0xde,0x91,0xad,0x15,0x38,0x0c,0x20, +0x10,0x28,0x0a,0xe7,0xd8,0xe2,0x38,0x49,0xab,0x8d,0xa8,0x13, +0xd4,0x92,0x61,0xad,0xe2,0x2d,0xa8,0x25,0xf2,0xac,0x56,0x1a, +0x6f,0x0c,0x9c,0x63,0x83,0x76,0x9f,0xca,0x97,0x5e,0x87,0xa3, +0x90,0x4f,0xe7,0x6f,0x2b,0x88,0x2a,0xdc,0x9e,0x53,0xcf,0xe1, +0x90,0xa6,0xc5,0x1d,0x96,0x37,0x18,0xd8,0xd5,0x2c,0xcc,0xa4, +0x12,0xb2,0xce,0xe4,0x9c,0xcc,0x31,0x4f,0xe4,0xf6,0xf8,0xef, +0x0a,0xdc,0xbe,0x85,0xc1,0x64,0x3b,0x88,0xa0,0x6c,0x65,0xcb, +0xac,0x70,0x84,0x43,0xae,0x3d,0x57,0x94,0x54,0x98,0x9c,0x97, +0xc2,0xe0,0x8b,0xf6,0x6b,0x60,0xa6,0x4d,0x5b,0xe7,0x6d,0xed, +0x94,0xc0,0x29,0xaa,0x22,0x35,0xe5,0xbc,0xf4,0x03,0x6d,0x95, +0x26,0x42,0x82,0x25,0xbf,0xe5,0x5b,0xd9,0x52,0xf7,0xcb,0x1e, +0x0d,0x1b,0x19,0xd4,0x7a,0x66,0xb1,0x04,0xe7,0x51,0xb5,0xe5, +0x17,0x2a,0x8b,0xaa,0x99,0xd2,0xff,0xc3,0xdb,0x7b,0x46,0x47, +0x71,0x74,0xeb,0xc2,0x18,0x50,0x77,0x83,0x41,0xc6,0xa1,0x70, +0x4b,0x80,0x04,0x26,0xe7,0x9c,0x45,0x16,0xa0,0x9c,0xa5,0x51, +0x8e,0x28,0x0b,0x65,0x21,0xa1,0x80,0x24,0x32,0x18,0x10,0x48, +0x28,0xe7,0x9c,0x73,0xce,0x39,0x93,0xa3,0x01,0x13,0x8d,0x89, +0x06,0x63,0x1b,0x7b,0xf7,0x78,0xf7,0xf8,0xfd,0x6a,0xf0,0x39, +0xf7,0xdc,0xf5,0xdd,0x3f,0xf7,0xd7,0x5d,0xb3,0xd6,0x74,0xaf, +0x9a,0xe9,0xae,0xea,0xaa,0x1d,0x9e,0xa7,0x6a,0xd7,0x6e,0x4c, +0x21,0xa8,0xf7,0x84,0x0a,0xca,0xc0,0x3a,0xf2,0x04,0x8c,0xd6, +0xb1,0x78,0xd6,0x82,0xac,0x40,0xbd,0x17,0x2c,0x9c,0x5a,0x41, +0x5e,0x80,0xd1,0x0a,0xda,0xcb,0xff,0x91,0x4e,0x27,0xb8,0x70, +0x10,0xec,0x31,0x07,0x78,0x7d,0x2a,0x61,0xdf,0xa3,0x7d,0xbf, +0x7c,0x4d,0xe5,0x02,0xe8,0x11,0xd4,0x41,0xce,0x18,0x38,0x0a, +0x20,0xed,0xc3,0xed,0x23,0x1c,0xa3,0xe2,0x0d,0xf9,0x9a,0x84, +0x9a,0xa4,0x1a,0x39,0x80,0x9c,0xc5,0xa6,0xea,0x2a,0x3c,0x65, +0x5a,0x52,0xb3,0x1a,0x54,0xa1,0x9b,0x2d,0x4e,0x2c,0x4e,0x2e, +0x4e,0x8e,0xee,0xe6,0xfd,0x22,0x7d,0xa3,0x7c,0xa3,0x38,0x08, +0x79,0xd3,0xbb,0x04,0x74,0x58,0xa9,0xaf,0xb8,0x9a,0xa0,0xc8, +0xe4,0xf5,0x64,0xf7,0xa7,0x75,0x1a,0x24,0xf2,0x61,0xa6,0x01, +0x7a,0xde,0x74,0xb0,0x4c,0x4d,0x60,0x13,0xe3,0x65,0xe8,0x6e, +0xe8,0x2a,0xb9,0xe4,0x7d,0xc5,0xe3,0x8a,0x9b,0x86,0xc5,0xda, +0x7d,0xdf,0xed,0x2f,0xa0,0x3a,0xc2,0x95,0xbe,0x6b,0xf9,0x61, +0xe4,0x91,0xed,0x43,0xcb,0x7b,0x16,0x55,0x9d,0xfc,0x96,0x56, +0xb5,0xe6,0x6d,0xf5,0x97,0xae,0xb4,0x3c,0xce,0xff,0x9d,0x83, +0x31,0x0c,0xf6,0x52,0xa2,0x69,0x58,0x6c,0x5a,0x68,0x95,0x9d, +0x5b,0x5d,0xd0,0x91,0xdf,0xcd,0x81,0x1b,0x13,0xb8,0xda,0x61, +0x87,0xb6,0x1e,0x35,0x1e,0x06,0xd2,0x43,0xe4,0x27,0xdd,0xd5, +0x18,0x66,0x22,0x14,0xf7,0xb0,0xb2,0x7a,0x59,0x32,0x79,0x09, +0xf6,0xd2,0x20,0xcc,0x90,0x5d,0x67,0xc1,0x49,0x88,0x21,0x38, +0x1f,0x32,0x60,0x3e,0x03,0x97,0xd0,0x9d,0x44,0xb6,0x84,0x76, +0x84,0xd4,0x48,0x82,0xf9,0x0c,0xfb,0x34,0xeb,0x78,0x1b,0x0e, +0xce,0x45,0x92,0xac,0xd6,0xf4,0xae,0xe4,0x0e,0x13,0x8a,0x83, +0x8c,0x42,0x4d,0xfc,0x4c,0x38,0x7c,0x63,0x2c,0x0c,0xf5,0x32, +0xb2,0x81,0xad,0x04,0xe6,0x63,0x1f,0xd2,0x4b,0xff,0x83,0x12, +0x32,0x0a,0xef,0xb5,0xfb,0x05,0x2d,0xd1,0x41,0xd4,0x62,0x85, +0xf9,0x50,0x46,0xf0,0xfd,0x47,0x78,0xcf,0xe0,0x7b,0x79,0x0c, +0xd4,0x7b,0x1c,0x87,0xef,0x29,0x0f,0xfe,0x5b,0x6a,0x4a,0xd6, +0x0e,0x80,0xaa,0xb8,0xe8,0xa1,0xee,0x46,0x51,0x19,0x55,0x07, +0x9e,0xb2,0x77,0xe8,0xc0,0xdc,0x0c,0xbb,0x1f,0xfa,0xe8,0xe0, +0x7c,0x3f,0xfc,0xe2,0x10,0x2e,0x3c,0x96,0x44,0x95,0x46,0x37, +0x16,0x96,0xe7,0xc2,0xe7,0x2d,0x30,0xd9,0x0f,0xa6,0xf8,0xc0, +0xe7,0xbe,0xb9,0x94,0x51,0x8c,0xc9,0x9d,0x9d,0xb3,0x24,0x73, +0xa0,0xac,0xa5,0xae,0xa2,0x9d,0x03,0x8d,0x5e,0x31,0x8e,0xc9, +0x2f,0xc9,0x2d,0x4e,0xcf,0xd3,0x4b,0xe6,0x0f,0x78,0x7b,0xbb, +0xb9,0xbb,0x52,0x1e,0x68,0x4c,0x1d,0x85,0xd7,0x7e,0xcf,0xfd, +0x5e,0xde,0x9c,0x10,0xf4,0x9c,0xec,0xb3,0xb5,0x70,0xd3,0xf7, +0x43,0xdf,0x26,0x3e,0x23,0x2d,0x2b,0x2b,0x3b,0x87,0x13,0x06, +0xa9,0x27,0xef,0x11,0xd7,0xdf,0xd3,0xdb,0x22,0xce,0x37,0x11, +0xc6,0xb1,0x46,0x7b,0x51,0xc1,0x02,0x3d,0x4c,0xb3,0xe5,0xf6, +0xe8,0xea,0x1f,0x2d,0xf5,0xbf,0x50,0x7b,0x74,0x62,0x08,0x4e, +0x5c,0x60,0xea,0x17,0xc1,0x44,0x6b,0x38,0xb3,0x37,0x8b,0x2a, +0xac,0x4f,0x37,0x4e,0x6e,0xa7,0xd2,0xaa,0xf8,0x48,0xda,0x4c, +0xfe,0x99,0x38,0x28,0xfc,0x0d,0x83,0x90,0xc7,0x3e,0xc6,0x3c, +0x02,0x77,0xc5,0x6a,0x24,0x4c,0x82,0xa9,0x02,0x70,0x4c,0x7d, +0x66,0x6a,0x8d,0xaa,0xb4,0x4b,0xfc,0x9a,0x15,0xa7,0xe1,0x38, +0x72,0x09,0xce,0x6a,0xb1,0x60,0x3d,0xf5,0x12,0xa4,0x6b,0xb1, +0x32,0x5b,0x64,0xc9,0x75,0x38,0xbb,0x5b,0x5e,0x72,0x1d,0xd2, +0x77,0xb3,0xb2,0x31,0xb8,0x91,0x08,0xa9,0xcd,0x18,0xd5,0x6b, +0x6c,0x8c,0xc1,0x0c,0x68,0xe1,0x24,0x72,0x24,0x2b,0xb4,0x28, +0x22,0xc3,0x34,0x94,0x4f,0x0a,0x49,0xf1,0xbb,0x18,0xc4,0x41, +0xc2,0x09,0x92,0x92,0x9d,0x52,0x90,0x90,0x63,0x9c,0xc2,0x1f, +0xf1,0x0f,0xf5,0x38,0xe8,0xcd,0xe1,0xef,0x36,0xc2,0x68,0x33, +0x23,0xea,0x88,0x3c,0x69,0x16,0x14,0xe0,0x7b,0x51,0x0d,0x9b, +0x59,0x7a,0x62,0x4e,0xf0,0x4a,0x27,0x5c,0x61,0xf0,0xca,0x62, +0x02,0x57,0xf4,0xf0,0x0a,0xa3,0xf8,0x37,0x2b,0x55,0xa1,0x62, +0xdd,0x07,0x76,0x18,0x04,0xdf,0xea,0xe3,0xb7,0xe8,0x88,0x76, +0xbd,0x54,0xac,0xf7,0x88,0x99,0x04,0xb7,0x3d,0x87,0x19,0x70, +0x0c,0x67,0x3c,0x7d,0x0b,0xf3,0xfb,0xbb,0x0c,0xef,0x19,0x6f, +0xc1,0x69,0xf4,0x6b,0xaf,0xd9,0x55,0x9c,0xff,0x6a,0x2d,0xce, +0xc0,0x63,0x30,0x63,0x15,0xaa,0x99,0x80,0x1a,0xae,0xea,0x87, +0x55,0xb0,0x8d,0xc1,0x6f,0x85,0x7f,0xc8,0x12,0x9c,0xf6,0x86, +0x95,0x16,0x60,0x0e,0xc1,0x41,0x26,0xbb,0x3f,0x73,0x20,0xa9, +0xdb,0x88,0x52,0x69,0xe3,0x60,0x5d,0x7f,0x4a,0x58,0x57,0x98, +0x82,0x32,0xe3,0x6f,0xe0,0x6d,0xe0,0x69,0xd6,0xe3,0xdd,0xef, +0x31,0xe0,0x66,0x64,0xb1,0xcb,0x69,0xb5,0x57,0xa1,0x29,0xff, +0xb6,0xfc,0xc7,0xe6,0xd1,0xe1,0xeb,0xb6,0xd7,0xad,0xae,0x58, +0x56,0xb5,0xf1,0x1a,0xad,0x7b,0x5a,0x34,0xeb,0xfa,0xaf,0xd5, +0x3e,0xc9,0xfe,0x83,0x7b,0xce,0xc8,0xa2,0x6a,0x09,0xaa,0x6c, +0x00,0x15,0x16,0x54,0x50,0x85,0x80,0xca,0x63,0xa4,0xa7,0xbf, +0xe1,0x37,0xc4,0xb2,0xd8,0xa6,0xc0,0x29,0x2b,0xab,0x2e,0xb7, +0x33,0x9b,0x1a,0xa3,0xdd,0x4c,0xc8,0x2a,0xd7,0xed,0xa6,0xba, +0xd4,0xed,0x6c,0x93,0x2e,0x21,0x7d,0xe2,0x6a,0x50,0xd0,0x46, +0x05,0x71,0xb6,0x91,0xa0,0xc0,0x5a,0xaf,0xc4,0x19,0x4b,0xd0, +0x76,0x6b,0x21,0x45,0xb7,0xae,0x8f,0xe1,0xbb,0x5f,0x0a,0x81, +0xa3,0x63,0x5a,0x3e,0x0a,0xe5,0xb1,0x4c,0x21,0x4e,0x84,0x25, +0x4b,0x61,0xff,0xba,0xa2,0x3e,0x1e,0x1d,0x7f,0xc0,0x05,0x6f, +0x2c,0x7f,0xe6,0xf0,0xa9,0xec,0x00,0xe9,0x14,0x7a,0x25,0x23, +0xc2,0x74,0xd9,0x4e,0x71,0x3a,0x2b,0x1d,0x07,0xcf,0x28,0x5e, +0x10,0x7b,0xe5,0x1c,0x42,0xd8,0x27,0x7c,0x46,0x76,0x1b,0x6c, +0x31,0x5f,0x66,0xc9,0x09,0x52,0x0d,0x99,0x32,0xeb,0x1e,0xe6, +0x1a,0xe6,0x1c,0x56,0x64,0xc0,0xc3,0x96,0x1b,0xb0,0xe0,0xe1, +0x6f,0xaf,0x38,0x28,0xd8,0x4b,0xa2,0x52,0xa3,0xe2,0x0e,0x46, +0x86,0x47,0xf3,0x27,0xce,0xbd,0x80,0x45,0x65,0xa0,0x17,0x03, +0x87,0x94,0xf6,0x32,0xd1,0xe2,0xa6,0x95,0x18,0x4e,0xcd,0xe4, +0xde,0x0a,0x7d,0x1e,0xb6,0xdf,0x87,0x89,0xaf,0x7f,0x04,0xee, +0x42,0x5c,0xdc,0xe9,0xd8,0x68,0xb0,0xc0,0x22,0xbe,0xbf,0x56, +0x01,0x5f,0x08,0xd5,0x44,0xeb,0xd1,0x82,0xdf,0xd5,0x2e,0xdb, +0xd8,0xf2,0x77,0xb5,0xdf,0xcd,0xbd,0xb4,0x8e,0x62,0xc6,0x8b, +0xd2,0xa7,0xc4,0x0a,0xcd,0xf7,0xa0,0x0a,0xd5,0x20,0xae,0xda, +0x94,0x2f,0x2e,0x2a,0xae,0x28,0xac,0xe7,0xc4,0xf4,0x21,0xa9, +0x02,0x5b,0x7b,0xbf,0xfc,0x65,0xee,0x47,0xf9,0x4a,0x69,0x3a, +0x81,0x08,0xb1,0xcd,0x08,0xfc,0x51,0x1d,0x4b,0x0c,0xa1,0x84, +0xdd,0x75,0x42,0xff,0x88,0x99,0x0a,0xfa,0x1a,0x51,0x5a,0xe9, +0x85,0x5f,0x69,0x6f,0x43,0xc5,0xf5,0x35,0x94,0x01,0x4e,0x7b, +0x73,0xfb,0x79,0x29,0x2c,0xe7,0x20,0x78,0xf3,0x30,0xdc,0x79, +0xd0,0xcf,0xe0,0x77,0xa0,0x4e,0xe8,0x55,0x8e,0xa0,0xce,0x46, +0x89,0xeb,0x49,0x6c,0x77,0xcc,0xd0,0x75,0x65,0x70,0x44,0x5d, +0x46,0x11,0xe2,0x69,0xf5,0x36,0x28,0xd9,0x83,0x33,0x71,0x0c, +0xad,0xde,0x8c,0x2f,0x29,0x2e,0xa9,0x29,0x6a,0xe2,0xc4,0xfc, +0x21,0xe9,0x57,0x6c,0xd5,0xdd,0x92,0xe7,0xd9,0xef,0xb8,0xc3, +0xe8,0x4d,0xa4,0x9f,0x0f,0x63,0x2d,0xac,0xdf,0x8b,0xeb,0xb1, +0x88,0x11,0xd6,0xca,0xbe,0x21,0x5d,0xb0,0xb2,0x0e,0xb4,0x0a, +0x61,0xab,0x66,0x32,0xef,0x8b,0x9a,0xf6,0xa8,0x69,0x86,0x6b, +0x39,0x71,0x92,0xb6,0x74,0xfd,0x28,0x23,0x2e,0x7d,0x4a,0x82, +0x61,0xad,0x27,0xcc,0x77,0x02,0x45,0xbd,0x40,0xbe,0x16,0x49, +0x11,0xaa,0xe6,0xe0,0x6a,0xf9,0x3b,0x06,0xff,0xad,0x53,0x03, +0x67,0xce,0xfc,0x54,0x65,0x71,0x71,0x51,0x55,0x51,0x23,0x27, +0xe6,0x0c,0x4a,0x27,0xb3,0x55,0x3f,0x94,0xfe,0x9c,0xfd,0x81, +0x13,0xf6,0x88,0x35,0xe4,0xc7,0xfe,0x87,0xf7,0xdb,0xaf,0x58, +0xd5,0xf1,0x76,0x3a,0xea,0x3b,0x77,0x9a,0xb8,0x3f,0x3b,0xf0, +0x36,0xfa,0x0f,0x0e,0x7a,0xfb,0xf1,0x26,0x2c,0xd2,0xa2,0xee, +0xba,0xdc,0x10,0xd2,0x19,0x4b,0x2a,0xc0,0x13,0xe9,0x67,0xd1, +0xfa,0x52,0x09,0xdf,0x5b,0xda,0x55,0xd5,0x52,0xcf,0xe1,0x63, +0xd6,0xf1,0xb0,0xc3,0x51,0xfb,0xa3,0x89,0x74,0x3c,0xa6,0xe7, +0x82,0x72,0x25,0x30,0xf5,0x11,0xdd,0xbc,0x5e,0x90,0x56,0xf0, +0x9e,0x50,0x4e,0x98,0xcc,0xb6,0xf5,0xd4,0x0e,0xe7,0x5e,0x2d, +0xc4,0xe4,0xbf,0xd0,0x17,0x8c,0x50,0xbd,0xa1,0x95,0x9f,0xff, +0xf3,0xf6,0x5f,0xcd,0x40,0x81,0xb6,0xf0,0x88,0xf4,0x09,0xb1, +0x43,0x33,0x4d,0x9c,0x35,0xe7,0x53,0x0b,0x4b,0xcb,0xca,0x1a, +0x4b,0x3a,0x39,0xb1,0x6e,0x50,0xba,0x90,0x2d,0xb9,0x51,0xf0, +0x63,0xfa,0x4f,0x5c,0x04,0x5a,0x11,0x33,0xe9,0xaa,0xae,0xbd, +0x30,0x13,0xab,0x3f,0x4d,0xca,0xc5,0xe6,0x1a,0x9e,0xe7,0x8f, +0xf8,0x1d,0xf1,0x3b,0xec,0xcf,0xa1,0xad,0x39,0xe8,0x30,0x91, +0xfb,0x23,0xf7,0x1f,0xf2,0xe6,0xe0,0xd5,0x54,0x2c,0x66,0x92, +0x8a,0x12,0x8b,0x13,0x8a,0x39,0x38,0xc6,0xcc,0x11,0xff,0xa1, +0x36,0xda,0xae,0x03,0xed,0x6e,0xc1,0x6a,0x30,0x11,0xcb,0xd0, +0x04,0xae,0xed,0x44,0x34,0x7f,0xb4,0x1c,0xc7,0x49,0x84,0x6f, +0xf1,0xcb,0x21,0xf8,0x12,0xa2,0x3a,0x59,0x54,0xa1,0xdc,0x6b, +0x85,0xb8,0xe6,0x05,0x5b,0x87,0x19,0x04,0xbc,0x96,0xa3,0x17, +0xa3,0xf8,0xc3,0x66,0x32,0x7a,0x49,0xea,0xa8,0x35,0xfa,0x37, +0x2b,0x7b,0xc6,0x8c,0xca,0xce,0x10,0xa9,0x91,0xd4,0x51,0x66, +0xc4,0xca,0x3e,0x2b,0x27,0x2f,0x86,0x1b,0xae,0x66,0xde,0xe7, +0xc0,0x09,0x2d,0xfa,0x29,0x53,0x9e,0xdf,0x4d,0x8d,0xff,0x56, +0x50,0xed,0xa6,0x64,0x78,0xba,0x21,0x4e,0x47,0xe3,0x7f,0x0f, +0xf3,0x4c,0x61,0x9e,0x03,0x63,0x79,0xda,0xe1,0xb8,0x8b,0x0a, +0xce,0x37,0x85,0xe9,0x4c,0x88,0x8e,0xb3,0xd5,0x36,0x4b,0x0e, +0xf6,0x09,0xdf,0x10,0x30,0xc6,0xad,0x68,0xc1,0x9c,0xaf,0x38, +0x53,0x55,0xab,0xac,0x28,0xfd,0x15,0xce,0x92,0x90,0xd3,0x07, +0x4f,0x84,0xa8,0xf8,0x9f,0x88,0x38,0xe2,0x35,0x0d,0xa7,0x30, +0xc9,0x16,0x0a,0xa0,0xc8,0xf4,0x17,0xa7,0x75,0x5e,0x54,0xbd, +0x50,0x7c,0xb6,0xba,0x57,0x59,0xfc,0xee,0x4f,0x78,0x0f,0x1e, +0xf8,0xfe,0xa5,0xa0,0xd6,0x2b,0xaa,0x8d,0x68,0xeb,0x88,0x4b, +0x8d,0x85,0xa5,0xcb,0x51,0x66,0x0a,0xb2,0x59,0xf8,0x9c,0x39, +0xa2,0x11,0xba,0x25,0x70,0x0f,0x27,0x4c,0x61,0x82,0x90,0xc3, +0x09,0x3b,0x30,0x6f,0x7b,0x1e,0x45,0x97,0x75,0x4f,0x61,0xdc, +0xbd,0x2c,0x98,0xc1,0xc5,0x32,0x19,0x38,0x03,0xbe,0xd9,0x02, +0xb5,0xeb,0x72,0x87,0x78,0xcc,0xba,0x83,0xfc,0x6d,0x3f,0xaa, +0xd5,0x50,0x0c,0xb7,0xc8,0x2c,0xac,0xf8,0x93,0xd5,0xc6,0x35, +0xf4,0xa4,0x87,0xbd,0x58,0x16,0xdf,0x70,0xbe,0x98,0xc2,0x93, +0x70,0x61,0x0a,0xa9,0x04,0xb3,0x58,0xa6,0x1a,0xc7,0xc0,0xa4, +0x3d,0x70,0x68,0x45,0x71,0x37,0x8f,0x46,0xd7,0xf1,0x8b,0x91, +0x1d,0x4f,0x39,0x41,0xa1,0x4f,0x5c,0xfe,0x91,0x81,0x2f,0xe2, +0xe0,0xf3,0xa4,0x0f,0x59,0x01,0xd4,0xbd,0x78,0xd9,0x63,0xde, +0x51,0x3c,0x72,0x26,0xc1,0x84,0xff,0xf3,0x34,0x30,0x67,0x41, +0xe1,0x3c,0x37,0x4f,0x54,0x35,0x82,0xbf,0xd8,0x9d,0x6b,0x91, +0x56,0xa0,0xb3,0xa7,0xd8,0x94,0x87,0xe0,0x17,0x30,0xf6,0x5a, +0x8d,0x7c,0x29,0x16,0xf5,0x19,0xbf,0x0b,0x81,0x6e,0x3e,0x2e, +0x1e,0xfb,0x94,0xb0,0xd1,0x14,0x8e,0x33,0x2e,0xfb,0x1c,0xf7, +0xd9,0x38,0xdf,0x0e,0xfd,0x25,0xe8,0xa3,0xff,0x3c,0x37,0x24, +0x07,0x71,0xf3,0xe1,0x54,0xea,0x57,0xcc,0xe3,0x61,0x65,0x11, +0x4c,0xea,0x85,0x89,0xde,0x30,0xc5,0x03,0x38,0xf7,0xc2,0x4e, +0x7e,0x56,0x31,0x8e,0x29,0x9c,0x97,0x77,0xb9,0xa1,0xb3,0xbb, +0xf6,0x0a,0x07,0x6a,0xdd,0x62,0x2a,0x93,0x5f,0x96,0x5b,0x96, +0x51,0xc2,0x81,0x0b,0x2e,0x26,0xf6,0xba,0x66,0xd6,0x7b,0x5c, +0x57,0x64,0xaf,0xcb,0xd8,0x95,0x52,0x52,0x58,0x5c,0x5c,0x58, +0x42,0x8d,0x1d,0x1b,0x47,0x1c,0xcb,0x5c,0xbb,0xbd,0x6f,0x5e, +0x03,0xb6,0x0e,0x94,0x72,0x60,0x9e,0x41,0x3a,0x1f,0x82,0x5f, +0x7a,0xe1,0x58,0xf3,0x85,0xfb,0x61,0x4c,0x08,0xa8,0x9c,0x82, +0x4d,0xd4,0x71,0xf7,0xe0,0x39,0x98,0xa2,0x8f,0x53,0xc4,0x6c, +0x2c,0x60,0xd0,0x2d,0x0c,0x29,0x9c,0x61,0x54,0xba,0xcd,0x14, +0xae,0x80,0x72,0x1a,0x2c,0x83,0x60,0x65,0x8a,0x53,0x9d,0xd8, +0x18,0x94,0xe4,0xe1,0xba,0x7a,0xfc,0xc2,0x6a,0x97,0xae,0x96, +0x9a,0x71,0xbd,0x84,0xbf,0xde,0xd1,0x3f,0xd0,0x72,0xb9,0x48, +0xb7,0xc2,0xba,0xc6,0xab,0xc6,0xbe,0x2d,0xf1,0x42,0x7f,0x26, +0x68,0xf1,0xe6,0xd9,0x0a,0x31,0xc2,0x30,0xb1,0xcb,0xd7,0xcf, +0x97,0xa4,0x05,0x38,0xf0,0x5d,0x07,0xfb,0xfd,0x9a,0xfc,0x38, +0x8a,0xed,0x94,0x88,0x57,0xb6,0x67,0xb6,0x67,0x56,0xe3,0x48, +0xfe,0x9d,0x84,0x17,0xdc,0x40,0x27,0xfa,0x30,0xf1,0xc5,0x71, +0xc5,0xb1,0x45,0x1c,0xec,0xe8,0x44,0x99,0x04,0xa6,0x32,0x47, +0x7d,0x8e,0xec,0x8f,0xf2,0xe2,0xf0,0x0b,0xc9,0x1f,0x4c,0xb0, +0xb9,0x9f,0x89,0x97,0x49,0x87,0x7f,0xbb,0x4f,0xb3,0xb7,0x95, +0x85,0xa6,0xd3,0x06,0xf7,0x62,0x33,0xfe,0x55,0xed,0xcd,0x96, +0xae,0xfe,0xb2,0xa0,0x92,0xc0,0xa2,0x20,0x0e,0x3d,0xc1,0x81, +0xe4,0x34,0x64,0xb6,0xa4,0xb7,0x70,0x30,0x89,0x89,0x52,0x0b, +0xd4,0x72,0x36,0x75,0xc9,0x75,0xc9,0x74,0x4b,0xa3,0x88,0x46, +0x94,0x52,0x11,0x34,0xd3,0x47,0x33,0x0c,0x35,0x84,0x50,0xf1, +0x01,0xce,0x63,0xd3,0xf5,0x15,0x60,0x22,0xd3,0x9e,0x99,0xd9, +0xae,0x2a,0x5c,0x7f,0xdc,0xcf,0x8a,0x5f,0x51,0x4c,0x2c,0xae, +0x60,0xce,0x96,0x7d,0x5f,0x56,0xa6,0x0c,0x13,0x29,0x92,0x0e, +0x16,0xf5,0xf0,0x0d,0x8b,0xdb,0x22,0x71,0xab,0x0e,0x4e,0x55, +0xe9,0x72,0x68,0x87,0x71,0x99,0xa0,0x18,0x07,0x5f,0x2a,0x51, +0x79,0xbe,0xb2,0x9a,0x49,0x31,0x51,0xb8,0xcc,0x34,0x65,0x66, +0x36,0xa9,0x52,0x2e,0xb7,0x91,0x5d,0x23,0xe8,0x13,0x9c,0x8c, +0x77,0x61,0x32,0xf5,0xa9,0x78,0x91,0xe0,0x4d,0x09,0xdc,0x64, +0xa8,0x7d,0x3d,0x42,0xf6,0xff,0xe2,0xf4,0xc6,0xee,0x9e,0x85, +0x2f,0x5f,0xb7,0xad,0x66,0x59,0xd1,0x42,0x0e,0x0f,0xb6,0x92, +0x6c,0xbd,0xdc,0x2d,0xa9,0x3b,0xba,0x28,0xaf,0xbf,0xe3,0xfb, +0xe0,0x40,0x3f,0x87,0xf5,0x27,0x48,0xf8,0xc6,0x90,0xbd,0xce, +0x9a,0x2d,0xbe,0x7c,0xed,0xcd,0xcc,0xbb,0xa9,0x8f,0x69,0xd3, +0xad,0x5b,0x09,0x6c,0x04,0x97,0x3e,0x74,0x81,0x05,0xe0,0xdc, +0x8b,0xce,0xf4,0x10,0x39,0x80,0xbe,0x6c,0x7e,0x73,0x6e,0x77, +0x72,0x9d,0x51,0x0a,0x1f,0x66,0xe3,0x67,0xe4,0x61,0xc6,0xe1, +0x76,0x26,0xaf,0x25,0xa3,0x25,0xb5,0xcd,0x24,0x93,0xb7,0xc1, +0x6f,0xd5,0x71,0xda,0x92,0xef,0xaa,0xcd,0xf9,0xa2,0xf2,0xc2, +0xca,0xec,0x4a,0x4e,0xfc,0x75,0x70,0x54,0x38,0x39,0xc0,0xca, +0x7c,0x50,0x91,0xfc,0x3d,0x53,0xef,0x9f,0x99,0xec,0x33,0x69, +0x04,0xb9,0xe8,0x1c,0x6f,0x7a,0xde,0xba,0x33,0x83,0x3f,0xde, +0x74,0xa8,0x27,0x9a,0xf2,0x4e,0x77,0x7c,0x45,0xf2,0x7e,0x4a, +0xf8,0xed,0xdc,0x47,0xb3,0xf3,0xfc,0x89,0x39,0xd1,0x4b,0xfd, +0xd6,0x71,0x82,0xda,0x5f,0x84,0xd6,0x6a,0x8e,0x0b,0x58,0x34, +0x47,0xfb,0xff,0x3e,0x37,0x1a,0x8f,0x1b,0xd1,0x9c,0x3e,0xb7, +0xa2,0x74,0xbe,0xf0,0x2b,0x29,0x2c,0xca,0x29,0x4b,0x2f,0xb0, +0xc8,0xe1,0xa9,0x99,0x11,0xa7,0x5d,0xd1,0xd1,0x10,0x27,0x4a, +0xc0,0x89,0xb1,0x39,0x90,0x15,0x58,0xe8,0x90,0xe4,0xa7,0x84, +0x09,0x92,0xbf,0xa7,0x76,0x32,0x58,0x0a,0xe3,0x49,0xa0,0x93, +0xaf,0xb3,0xab,0x3b,0x87,0x19,0x4c,0x5b,0x56,0x44,0x91,0x57, +0x5d,0x48,0x96,0x12,0xb5,0xbd,0xfe,0x04,0x1b,0xa4,0x5a,0xd0, +0xc0,0xea,0x51,0x3c,0x23,0x5e,0xbb,0x2e,0x5c,0x63,0xc4,0x6b, +0x38,0x91,0x08,0xd7,0x76,0x89,0xd7,0x18,0x61,0x21,0xae,0x23, +0x16,0xf5,0xe6,0x15,0xa6,0x9f,0x26,0x75,0xbd,0x7a,0x5c,0x5a, +0x9c,0x38,0xd8,0xf8,0x03,0x19,0xb4,0x18,0xd2,0x6f,0xd0,0x6f, +0xae,0xe6,0x6d,0x46,0x0d,0xfa,0xf5,0xdb,0xe4,0x69,0x3f,0xb7, +0x93,0x7d,0x51,0x17,0x2a,0x55,0xe1,0x6b,0x7d,0xfc,0x9a,0xdd, +0x96,0x1b,0xf2,0x40,0x05,0x9a,0x99,0xd6,0xe4,0xcc,0x3a,0xd5, +0x1b,0xac,0x41,0xa6,0xc2,0x02,0x56,0xfc,0xcd,0x91,0x5c,0xef, +0x6d,0x1d,0x2d,0x1a,0xb4,0x2a,0xe2,0x7d,0x4c,0xad,0x74,0xb5, +0xe4,0xaf,0x54,0x96,0x49,0xef,0x11,0x7d,0x24,0x18,0x66,0x0c, +0x61,0xf8,0x1b,0x2e,0x60,0xd2,0x4c,0x14,0xe0,0x4b,0xa6,0x25, +0x23,0x8d,0x8e,0xf0,0x9b,0xe7,0xbd,0xab,0x58,0xd1,0x4f,0xee, +0x36,0x77,0xb5,0x8a,0x4b,0x99,0x98,0x86,0xb3,0xad,0xfd,0xca, +0xc2,0x17,0xb0,0x59,0xd4,0xc6,0xbd,0x0c,0x2e,0x0e,0x5b,0xa1, +0xbf,0x5e,0xa5,0xc5,0xa9,0xb6,0x27,0xa7,0x3b,0xe9,0xa6,0x12, +0xe8,0xe0,0xfc,0x2d,0x4c,0xb2,0x15,0x95,0x90,0x9a,0xd4,0xb4, +0x0a,0xd5,0x17,0x82,0x2d,0xd9,0x83,0x37,0xaf,0xb1,0xc2,0x5d, +0x7c,0x4a,0xfc,0x87,0xdc,0x46,0x9c,0x3b,0x2c,0x7d,0xf8,0x5a, +0xd3,0x52,0xbd,0x5c,0x3d,0x0e,0x37,0x81,0x09,0xc1,0x07,0x56, +0xf0,0x80,0xc1,0x0e,0x4a,0x97,0x43,0xac,0xbd,0x9d,0xec,0x5c, +0x6a,0xf6,0xf1,0x2d,0x0d,0x65,0xed,0x19,0x14,0xb8,0xaa,0x1d, +0x26,0x25,0x9e,0x55,0x36,0xb9,0x8e,0x0d,0x45,0xbc,0x5f,0x9d, +0x5b,0xa3,0x67,0x19,0xa7,0x8f,0xce,0xa4,0xdb,0x6d,0xc0,0xbe, +0xcd,0xb6,0xb6,0x81,0x37,0x6b,0x31,0xa9,0x33,0xaa,0xe0,0x8c, +0xa9,0xd8,0x39,0x44,0xc6,0x55,0xab,0xc2,0x4e,0x5d,0x54,0x67, +0xb7,0xfe,0xf7,0xfa,0x69,0x72,0x66,0xbd,0xea,0xcf,0xac,0x3e, +0x25,0x3c,0x13,0xd9,0x3e,0xd8,0x49,0x06,0xf5,0x06,0x76,0x37, +0xec,0x68,0xab,0xe4,0x6d,0xee,0x19,0x5e,0xd1,0x1f,0xe2,0x64, +0x26,0x78,0x9a,0x5c,0xbf,0xda,0x7c,0xb7,0xe8,0x86,0x24,0x9f, +0xf7,0xd3,0xb2,0xde,0xae,0x65,0x48,0xbd,0x56,0x13,0xfc,0x42, +0x72,0x0b,0x33,0x8b,0x33,0x2a,0x38,0x21,0x58,0x18,0x27,0x5b, +0x27,0x8e,0xa3,0xfd,0x61,0xba,0x66,0x9b,0x31,0xa5,0xe3,0xa5, +0x56,0xfc,0x48,0x51,0x67,0x49,0x7d,0x05,0x85,0xd5,0x8c,0xde, +0xf2,0xc5,0x7b,0x71,0xa9,0x0e,0x25,0xbb,0xb0,0xeb,0xd6,0x9f, +0x4f,0xaf,0x00,0xcb,0x51,0x72,0x62,0x86,0x5f,0x2c,0x98,0x8b, +0xab,0xd4,0xaa,0x68,0xb1,0xfa,0x0b,0xf8,0x0c,0xbe,0xe8,0x82, +0x59,0x1c,0x7c,0xed,0xc7,0xa8,0x9d,0xd0,0x0f,0x37,0x51,0x91, +0x44,0x78,0x45,0xec,0x9c,0x86,0xaa,0x4c,0x9a,0xb1,0x1c,0x06, +0x83,0x62,0x5d,0xde,0x8f,0xd9,0xaa,0x69,0xa3,0xe7,0x9e,0xfd, +0xa6,0x5c,0xc5,0x22,0x0f,0x7d,0x44,0x6c,0xfc,0x55,0x68,0x64, +0x70,0xd9,0xf8,0xb9,0x62,0xe3,0x6f,0x14,0x56,0xed,0xa4,0xf4, +0x03,0x26,0x97,0xf7,0x55,0x56,0x96,0x25,0xc4,0x9f,0x3f,0x9d, +0x78,0x1c,0x4e,0xcd,0xe2,0x8b,0xba,0xd0,0xff,0x6d,0x78,0x6c, +0xf4,0x89,0xc3,0xd1,0x4a,0x91,0x11,0xc7,0xce,0x25,0x66,0x5c, +0xcc,0x8a,0xc9,0x55,0xa2,0x24,0x11,0xc3,0xee,0xe9,0x6e,0x41, +0x6f,0x53,0x70,0x67,0x0e,0x6a,0x6b,0xed,0xc3,0x59,0x94,0xe4, +0x2d,0x98,0x4b,0x8e,0x51,0xfa,0xff,0x79,0x2f,0x7e,0x0e,0xfa, +0x86,0xa8,0x8f,0xf3,0x8c,0x61,0x06,0x13,0x81,0x5f,0x3a,0xe2, +0xcc,0x85,0xf8,0x6d,0xad,0x25,0x7f,0x1f,0xc6,0x14,0xff,0x79, +0xe1,0x2d,0x17,0x2b,0x16,0xf4,0x0b,0xe7,0x98,0x0b,0xe7,0xbe, +0xa7,0x94,0xfd,0x09,0xae,0xac,0xa9,0xdd,0x08,0x0b,0x0f,0xa7, +0x1e,0x39,0x13,0x19,0xa5,0x04,0x53,0xe2,0x88,0x91,0xb0,0x5d, +0xdc,0x8a,0xdf,0xb1,0x29,0x46,0x0a,0xf0,0x15,0xd3,0x9a,0x94, +0x5b,0xa3,0x2a,0x6c,0xb8,0xd5,0xc7,0x8a,0x69,0x38,0x8b,0xe0, +0xd5,0xbe,0xeb,0x10,0x0d,0xa7,0x58,0x8c,0x96,0xbf,0xf6,0x74, +0x16,0x68,0xe0,0x2c,0x56,0x11,0x9a,0xa5,0x0e,0x24,0xa2,0x2a, +0xb0,0x2d,0xb8,0xc2,0xe0,0x00,0x9f,0xb1,0x3f,0xd7,0x32,0xc5, +0x81,0x13,0x5e,0x89,0x93,0x49,0x52,0xf3,0xc5,0xf6,0x0b,0x6d, +0x5c,0xfd,0x76,0x36,0xa9,0x31,0xbe,0xf5,0x7c,0x2b,0xd7,0x88, +0xef,0xd8,0xe4,0xa6,0xc4,0x96,0x8b,0x2d,0x06,0xb1,0x7c,0xb4, +0x45,0xa4,0x65,0xb8,0x35,0x05,0x9d,0xa6,0x14,0xa7,0xef,0x41, +0x0d,0x1c,0x8f,0x0b,0x70,0xc3,0xc2,0x72,0x09,0xdf,0x5e,0xd2, +0x54,0x51,0x5f,0xcb,0x49,0xe7,0x32,0x27,0x77,0x1f,0xd9,0x73, +0xc8,0x8c,0xb3,0x8c,0x0c,0xf4,0xdf,0x3e,0x0d,0x15,0x19,0x79, +0xb3,0x26,0x31,0x8f,0xba,0xcb,0xef,0x65,0xa8,0xa6,0x0c,0x27, +0x3e,0x3e,0x07,0x93,0x38,0xd4,0x87,0xeb,0xe4,0x84,0xdd,0x61, +0xbb,0x43,0x0e,0x1c,0x3e,0x62,0xb2,0xea,0x33,0x1a,0xd2,0x9a, +0x38,0x4a,0x53,0xaf,0x93,0xaa,0xfa,0xd2,0xa6,0xa2,0x56,0x4e, +0x50,0x67,0x8e,0xdb,0x1f,0xb6,0x8c,0xb4,0xe7,0x52,0xa8,0x4a, +0x1e,0x68,0xf6,0x6b,0xf2,0xad,0xb0,0x0f,0xe0,0x73,0xdd,0xf3, +0x2c,0x33,0xed,0x38,0xf1,0x21,0x4e,0x27,0x9d,0x3f,0xd4,0xbf, +0xcf,0x7e,0x24,0xc9,0xe0,0x03,0x36,0x3b,0x2c,0x92,0x68,0x70, +0xc2,0x6a,0xf0,0x27,0x59,0x16,0x85,0xbb,0x53,0xf4,0xbb,0xb2, +0xf9,0x83,0x23,0x3e,0x57,0x03,0xe9,0x3d,0x9d,0x02,0x49,0x8a, +0x66,0xf2,0xea,0x0b,0x5b,0x07,0x28,0x03,0xb9,0x1b,0xf6,0x3c, +0x74,0x94,0x8a,0xd4,0x02,0x69,0x23,0x11,0xc7,0x48,0x4d,0x84, +0x31,0xac,0xa8,0x84,0x2b,0x08,0xc6,0xfe,0x01,0xb1,0xcc,0xa0, +0x3c,0xa0,0x23,0x73,0x36,0x8b,0x0f,0x2c,0xc8,0x4c,0x8c,0xfd, +0x8b,0x85,0x2b,0x53,0x21,0x73,0x26,0x66,0x32,0xa2,0x27,0x85, +0xf4,0xc6,0xa0,0x4e,0x11,0x91,0xe4,0x88,0xe9,0x51,0xb3,0x63, +0x89,0x14,0xa0,0xaf,0xcf,0x80,0x45,0xc5,0xc0,0x94,0x44,0x77, +0xf2,0x86,0xe1,0xbb,0xc2,0xb7,0x1e,0x92,0x47,0x0c,0x2d,0x65, +0x9f,0xa2,0x35,0xa8,0xcc,0x87,0x04,0xad,0x4c,0xca,0xbd,0x26, +0x14,0xad,0xac,0xda,0xdd,0x7e,0xb9,0xfc,0x72,0x63,0x4f,0x87, +0x43,0x3d,0x6f,0x69,0xa5,0x61,0xb5,0xcd,0xc5,0xba,0xc1,0xb5, +0xc3,0x7b,0x88,0x13,0xb4,0x7a,0x29,0xb3,0xdc,0x03,0x9a,0x04, +0x14,0x20,0xa0,0x07,0x03,0x3e,0xc2,0x76,0xf8,0x4d,0xe6,0x86, +0xbf,0xc1,0xf2,0xef,0xd0,0xc1,0x04,0x1c,0x50,0x01,0x8f,0x98, +0xfc,0xfd,0x65,0x0f,0x2b,0x86,0x08,0xde,0x04,0xd3,0xdf,0x52, +0x58,0xd8,0xbf,0x98,0xbc,0x85,0xf2,0xc5,0x2c,0xbe,0xb4,0x20, +0x0b,0x30,0xfd,0x3d,0x0b,0x77,0xa7,0x42,0xf9,0x02,0x2c,0x67, +0xfe,0x92,0x90,0xef,0x30,0xff,0x23,0x0b,0xf9,0x14,0x50,0xd0, +0x4b,0xf3,0x41,0x81,0xc5,0x52,0x79,0x26,0x9f,0x69,0x35,0x7f, +0x76,0xdd,0xeb,0xb1,0xaf,0xe3,0xb7,0x48,0x16,0x58,0xe3,0x54, +0x57,0x4e,0x68,0x7b,0x46,0x7e,0x73,0x83,0xcf,0x25,0xef,0xcd, +0xaa,0x3a,0xf8,0x45,0xad,0x38,0xb9,0xeb,0xbb,0x0a,0x6a,0x7b, +0xf6,0x0a,0x9f,0x93,0xcc,0xdc,0xb4,0xfc,0xe4,0x7c,0x8b,0x2c, +0xfe,0x97,0xa1,0x7b,0xf7,0xdb,0xde,0x71,0xf5,0x78,0x91,0x4d, +0xcb,0x4e,0xce,0x4e,0xc8,0xd1,0x4f,0xe5,0x6d,0xd7,0x2e,0xdd, +0x86,0x9c,0x79,0xa1,0x84,0xbf,0x59,0x72,0xbd,0xb9,0xb7,0x8b, +0x83,0x03,0x8c,0x9b,0xbe,0xa5,0x44,0xd7,0xd6,0xb5,0xc2,0xb6, +0xd2,0x2b,0xd7,0x6e,0x1f,0x5f,0x1c,0x58,0xe3,0x51,0xe6,0xae, +0xee,0xb0,0xd6,0x73,0x61,0x40,0xb6,0x21,0xff,0x3e,0xef,0x55, +0xd5,0xc3,0x76,0xb3,0x55,0x8b,0xd6,0xe3,0xd7,0xe6,0xab,0x60, +0x19,0x7f,0x34,0x31,0xfa,0x5c,0x64,0x54,0xd8,0x21,0xfe,0x38, +0x70,0x30,0xa7,0x1f,0xe7,0x80,0x1a,0xd3,0x9a,0xd2,0x9c,0x5e, +0x2d,0x0f,0x47,0xd9,0x64,0x8f,0x5f,0xbb,0x7d,0x17,0x9e,0x62, +0xc6,0x37,0xc4,0xb6,0x5d,0x6c,0x4b,0xe2,0x70,0x29,0x6e,0x34, +0x84,0x55,0x6c,0x34,0x8e,0xb1,0xc1,0xb1,0x14,0xcc,0x7f,0x4d, +0xdd,0xc9,0xb3,0x3f,0xca,0x1f,0x9d,0x7f,0x44,0x15,0xc3,0xaa, +0x57,0x1e,0x90,0x12,0x73,0x36,0xe6,0x98,0xca,0x73,0x5c,0x5f, +0x57,0x96,0x6b,0xfd,0xb0,0xfc,0x76,0xeb,0x40,0x8f,0x12,0x1c, +0x65,0x5c,0x76,0x9a,0xeb,0x6a,0x99,0xbb,0xd6,0x5a,0x36,0xb8, +0xe7,0xda,0x38,0xf1,0xa5,0x01,0xcd,0x0e,0xe5,0xce,0x5b,0xcc, +0x17,0x3b,0xe3,0x38,0xef,0x5c,0x43,0x1e,0x62,0xaf,0x80,0x04, +0x26,0xbf,0x04,0x3f,0xae,0x81,0x3a,0x8f,0xe3,0x2d,0x04,0x36, +0xc3,0xce,0x1e,0xdc,0x09,0x8b,0xfe,0x3d,0xc8,0x43,0x58,0x51, +0x8f,0x2d,0x68,0xcb,0xe8,0x48,0x6a,0x30,0x4e,0xe6,0x23,0xac, +0x83,0x8c,0xf6,0x53,0x0f,0xf7,0x1d,0x93,0xd3,0x9a,0xde,0x92, +0xd2,0x6e,0x9a,0xc6,0xbb,0xe1,0x38,0x43,0xfc,0x6a,0xfb,0xd2, +0x2a,0x1b,0x3e,0x2d,0x27,0x25,0x2b,0x29,0x8b,0x13,0x7f,0xef, +0x1f,0x15,0xb6,0xf5,0xb3,0xb2,0x59,0x82,0x05,0x49,0xf6,0x49, +0xf4,0x4c,0x70,0xb7,0x3a,0x66,0x7e,0x5c,0x72,0xe2,0xd2,0xe3, +0xeb,0xa0,0x30,0x00,0xac,0x79,0x21,0xbf,0x5f,0xd7,0x55,0xd3, +0x59,0xef,0x40,0x5e,0x60,0x5e,0x60,0x6e,0xed,0xf0,0xff,0x5a, +0x3e,0xf0,0xd4,0x72,0x33,0x0e,0x4b,0x0d,0xfb,0x77,0xf9,0xa0, +0xc7,0xaa,0xc7,0xa4,0xcd,0xc0,0x7f,0x9f,0x9f,0xab,0xbf,0x97, +0xdb,0x29,0xf7,0x53,0xee,0xf2,0x19,0xf2,0xfe,0xb3,0x83,0x31, +0x03,0xf2,0x19,0xf2,0x01,0x61,0x2d,0x5b,0x76,0xae,0xf4,0x7c, +0x49,0xcc,0xa7,0x35,0x8b,0x83,0x6d,0x19,0x7c,0xc8,0x8d,0x80, +0x9b,0xbe,0x03,0x1c,0xec,0xb1,0x21,0xb4,0xe5,0xeb,0x70,0x21, +0x8b,0xeb,0xd0,0x81,0xd0,0x87,0x59,0x87,0x8b,0x58,0x91,0x84, +0x93,0x9c,0xdd,0x19,0x9b,0x93,0xd4,0xba,0x33,0xf9,0x88,0x3b, +0x41,0x0f,0xfd,0xaf,0xca,0x33,0x20,0xb7,0x90,0xba,0xc7,0xd9, +0xef,0x93,0x7e,0x91,0xc4,0xf3,0x91,0xab,0x82,0xd6,0x38,0x6d, +0xe0,0xa4,0xcb,0xc0,0x89,0xe0,0x66,0x5c,0x07,0x9b,0x59,0xc5, +0xbf,0x89,0x74,0x1c,0xa1,0x34,0x20,0x82,0x8d,0xcd,0x8b,0xcd, +0xbb,0x90,0x67,0x72,0x9e,0x3f,0xea,0x7b,0xd4,0xf7,0x08,0x45, +0x4f,0x4b,0x2d,0xa8,0xb1,0x8a,0xf2,0x8a,0xda,0x1f,0x49,0x09, +0xfd,0x7c,0x89,0xd0,0xd8,0xc9,0x88,0x2f,0x31,0x8b,0xfc,0xff, +0xda,0x63,0x15,0xcc,0xff,0x3f,0xe8,0x04,0x4e,0xf0,0xa3,0x7c, +0x62,0x25,0x06,0xb0,0x89,0x45,0x09,0xc5,0xf1,0x14,0x85,0x4e, +0x11,0x45,0xf2,0x0b,0xac,0x69,0xc7,0x35,0xf2,0x84,0xe0,0x26, +0x14,0x42,0x99,0xc0,0x45,0x75,0x6c,0xb0,0xb8,0xba,0x68,0xa5, +0x04,0x2e,0xe1,0x94,0x7e,0x98,0x02,0x7a,0x94,0x88,0x70,0x20, +0x92,0xe5,0xf8,0xe0,0x25,0x8b,0x5e,0x68,0x4b,0xd2,0xb5,0x92, +0xb7,0xc5,0xed,0xa4,0x40,0xe4,0xf0,0xd5,0xd0,0x7b,0x07,0x47, +0x38,0xcc,0xc4,0xe6,0xff,0xa3,0x8b,0x84,0x54,0xd0,0xa7,0x68, +0x68,0x11,0x6e,0xa4,0x3c,0x73,0xac,0xe0,0x4f,0xa4,0x59,0xf0, +0x40,0x96,0xc5,0xc0,0x9f,0x38,0x83,0x60,0xd3,0x13,0x68,0xfa, +0x77,0xa2,0x6e,0x70,0x1d,0x2b,0x8e,0xb5,0x20,0xab,0xb1,0xe9, +0x27,0x16,0xfe,0x98,0x0a,0x83,0xab,0x71,0x90,0xc1,0x76,0xf1, +0x37,0x02,0x9b,0x84,0x96,0xb9,0xe8,0xc2,0xa6,0x98,0x2a,0x80, +0x21,0xd3,0x9a,0x95,0xda,0xaa,0x2a,0xac,0x92,0x6d,0x10,0xc3, +0x59,0x41,0x0a,0x7f,0x12,0xb1,0xe5,0xbe,0xd0,0xc2,0x88,0x2d, +0xc8,0x13,0xa1,0x65,0x93,0xd8,0x42,0xab,0x11,0xa4,0xf3,0x48, +0x0f,0xe4,0x99,0x0c,0xf4,0x40,0x4a,0x27,0xa6,0xdc,0x30,0x50, +0xc7,0x3c,0xf9,0xd7,0xf7,0x12,0xf8,0xde,0x84,0x85,0x03,0xe8, +0x48,0x62,0x99,0xc6,0xe5,0xf0,0x8d,0x25,0x1c,0xd6,0x95,0x4f, +0x38,0x99,0xb4,0xe2,0xd4,0x86,0xed,0x97,0x38,0xe1,0x8b,0x2e, +0x71,0xf3,0x6d,0x06,0xbe,0xb9,0x00,0x5f,0x5c,0xfc,0x23,0xe5, +0x40,0x2b,0x8f,0xbe,0xfb,0xb1,0xe2,0x04,0xc6,0x9c,0x4d,0x90, +0xf0,0x30,0xee,0x34,0x7c,0x7e,0x06,0x26,0xc4,0x70,0xbb,0xc4, +0x25,0x66,0xd4,0x18,0xee,0xd4,0x42,0x45,0x3b,0xd4,0xb7,0xce, +0xa5,0xbf,0x85,0x0c,0x81,0x62,0x7b,0xd3,0x4b,0x4a,0x16,0xe6, +0x30,0xee,0x71,0x07,0x7c,0x03,0xbc,0xbd,0xf7,0x2b,0xe1,0x45, +0x33,0xb0,0x61,0x5c,0x3d,0x9c,0x3c,0xec,0x3c,0x6f,0x46,0xbc, +0x0a,0xf9,0x2d,0x68,0x81,0x0f,0x7e,0x19,0x8e,0x6b,0x8e,0xa6, +0x50,0x82,0x61,0x7e,0x01,0x56,0xe4,0xc3,0xa4,0x76,0x60,0xfd, +0x41,0xd1,0x1b,0xc6,0x7b,0x17,0x74,0xf0,0x73,0xf3,0xe6,0xe6, +0x2e,0xce,0x1a,0xaa,0x6c,0x6b,0xae,0xea,0xe1,0xe0,0xdb,0x2e, +0xd1,0x97,0xc9,0xc8,0x4e,0xcf,0x4a,0xc9,0xe2,0x1a,0x99,0x34, +0x8c,0x22,0xab,0x32,0x36,0xa4,0xaa,0x27,0x15,0x66,0x17,0xe4, +0xe6,0xe5,0x71,0x70,0x87,0x71,0xb0,0x30,0xdf,0xa7,0xb9,0x9f, +0xda,0xa2,0x35,0xd0,0x40,0x5e,0x5d,0x7a,0xf9,0x64,0xf0,0x9a, +0x5d,0x13,0x6f,0xb8,0x6b,0xed,0xd6,0x35,0xfa,0x76,0xcf,0xbc, +0x7f,0x89,0xa0,0xfc,0x45,0x50,0x19,0x16,0xd5,0x40,0x49,0x13, +0x95,0xc4,0x25,0xba,0x82,0x22,0xa3,0x89,0xca,0x38,0x0b,0xbf, +0x44,0x9d,0x8d,0xc5,0x86,0xfc,0x83,0xaa,0x5b,0x4d,0x23,0x1d, +0x1c,0x75,0x5b,0x86,0x91,0x06,0x51,0x86,0x87,0xe5,0x54,0x59, +0xad,0x00,0xb6,0x57,0x82,0x6a,0x6f,0x44,0x3f,0xaf,0xe1,0xb7, +0x29,0x60,0xf5,0x01,0x4e,0x50,0x66,0x87,0x87,0x5b,0xaf,0x17, +0xdd,0xe1,0xe2,0x99,0x52,0xec,0x85,0xb9,0x18,0x02,0x67,0x70, +0x7b,0x6d,0x17,0x8f,0x53,0x9e,0x2e,0xfc,0x75,0x37,0x4c,0xe0, +0x14,0x7f,0xa4,0x5e,0xc2,0x18,0xaa,0x7b,0xd9,0x51,0xbc,0x4b, +0x84,0x68,0xb8,0x2b,0x46,0x33,0xe0,0x29,0x1f,0xe5,0x35,0x2f, +0x60,0x0d,0xd3,0x23,0x9f,0x7c,0x55,0x5b,0xc1,0x8a,0x41,0x7a, +0xa4,0x0f,0x5f,0x1b,0xb1,0xc2,0xdb,0x54,0xb2,0x04,0xd7,0xbc, +0x61,0xc1,0x73,0x2a,0xa8,0x2d,0x41,0x35,0x46,0x94,0x9e,0xa4, +0x77,0x28,0xec,0x65,0x61,0x91,0xf8,0x86,0x80,0x3a,0x3c,0xc5, +0x71,0x38,0x9d,0x4d,0x31,0x93,0x2f,0xd6,0xb5,0xa4,0xa7,0x35, +0xab,0x0a,0x4b,0x45,0x23,0x31,0x84,0x5d,0x26,0x2c,0x22,0xbd, +0x58,0x68,0xcc,0x4a,0x4f,0x9b,0x13,0x7c,0xfa,0x00,0x9e,0x32, +0x32,0x23,0x71,0x2f,0xe9,0x06,0x3f,0xc8,0xc5,0x62,0xbc,0xc7, +0x0a,0x5b,0xe4,0x21,0xe9,0x4f,0x37,0xe1,0x53,0x06,0xed,0x9a, +0xe5,0x89,0x9a,0x36,0xc1,0x1a,0x56,0xfe,0x3e,0xfb,0xd9,0x04, +0xa6,0x60,0x23,0x9b,0x39,0x64,0x70,0x3e,0x48,0x53,0x01,0xd5, +0x24,0xb0,0x98,0x09,0xd8,0xa5,0x80,0x5a,0xe6,0xd2,0x45,0x1d, +0x8c,0x6c,0xaf,0x25,0x71,0xb8,0x6b,0xfc,0xa3,0x79,0xbf,0xb9, +0x3b,0xdf,0x65,0xd0,0xb5,0xa9,0x7e,0x07,0x27,0xbc,0x84,0x65, +0x64,0x17,0xe6,0xb2,0xb9,0x37,0x15,0x60,0x8b,0xf8,0x0b,0x01, +0x9f,0x76,0xf4,0x79,0x08,0x76,0xad,0x68,0x77,0x05,0xd6,0xc0, +0x4e,0xb1,0x98,0x1a,0xc0,0xcb,0x1a,0xf8,0x87,0xd5,0x4f,0x1b, +0x67,0x59,0x08,0x0a,0xeb,0x07,0x99,0x5f,0x05,0x2b,0xb2,0x43, +0x5c,0x7e,0x9b,0x2d,0x13,0x23,0x08,0x7e,0xbb,0xb2,0x1f,0x58, +0x55,0xa8,0x41,0x3d,0x03,0xf8,0x82,0x2a,0xde,0x12,0x4f,0xb3, +0x05,0xf2,0x70,0xd2,0xe7,0xf5,0x4d,0xbd,0x67,0x6f,0xff,0x1b, +0x4e,0xba,0x0b,0xd6,0x4c,0x13,0x4e,0x7c,0x0a,0x27,0x3d,0x21, +0x8f,0x16,0x71,0xd8,0x88,0x0e,0xd4,0xe1,0xa9,0x08,0x3f,0x93, +0x36,0x48,0x84,0xc5,0x98,0xd8,0xa2,0x6f,0x8d,0x27,0x70,0x31, +0x9c,0xb2,0xc4,0x41,0x0b,0xe9,0x86,0x76,0x56,0xa6,0x91,0x4c, +0xec,0xef,0x1a,0x3e,0x90,0xf4,0xcb,0x23,0x5f,0x0d,0xbb,0x37, +0x35,0xec,0xe0,0xc0,0x10,0x76,0x10,0xd0,0x33,0x44,0x3d,0x06, +0x4e,0x4e,0xed,0x07,0x2b,0x43,0x56,0x8c,0x46,0x23,0xda,0x4b, +0x42,0x35,0x3c,0x65,0x45,0x89,0x78,0x88,0x20,0xbf,0xaa,0x0f, +0x38,0x79,0x7b,0x34,0x0d,0x60,0x22,0x06,0xb2,0x4b,0xbd,0x25, +0x8b,0xe5,0xed,0x79,0x52,0xdf,0xd0,0x73,0xf6,0xd6,0xa7,0xf6, +0xfc,0xa8,0x0e,0x6b,0xa7,0x09,0x67,0x3f,0xb5,0xa7,0x45,0x50, +0x25,0x6d,0x82,0x9a,0x25,0x2b,0xaa,0x2d,0x25,0xed,0x82,0x9a, +0x05,0x3d,0x59,0x48,0xba,0x05,0x35,0x53,0xf6,0x17,0x8a,0x2c, +0xb4,0x2a,0x57,0x97,0x6e,0x4f,0xf1,0xb3,0xe1,0x1f,0x86,0xdc, +0xf3,0xbd,0xe2,0xc6,0x89,0x23,0xe7,0xc8,0xa3,0xf4,0xbb,0x85, +0xdd,0xe5,0xfb,0x1b,0x78,0x1d,0xcf,0x3d,0x7e,0xdb,0x23,0x28, +0x88,0xd8,0x24,0xf5,0x23,0xd2,0x94,0x41,0xd9,0x8f,0x32,0xb8, +0xdc,0x2f,0xcd,0x1a,0xa4,0x36,0xe0,0x45,0x37,0x81,0x95,0xcd, +0xa0,0xf2,0x20,0x01,0x3e,0xa3,0xcc,0x3f,0x01,0x3f,0x83,0x65, +0x6a,0x30,0xdf,0x3a,0x7f,0x94,0xc7,0x95,0x2d,0x38,0xf9,0xb2, +0xdf,0x63,0x0e,0x3a,0xfb,0xb1,0x0f,0x66,0x42,0x6e,0xbf,0x68, +0xc5,0xa4,0xe4,0x25,0xe5,0xc6,0xe7,0xe8,0xe7,0xf0,0x5e,0xdb, +0x0d,0xd5,0x34,0x8d,0xda,0x1d,0xf9,0xd2,0xc2,0xe2,0xf2,0x82, +0x2a,0x0e,0x56,0xe2,0x4c,0xec,0x32,0x84,0x56,0x26,0x70,0x3d, +0x8e,0xdf,0x83,0xeb,0x6d,0xa9,0x4a,0xb8,0xc8,0x45,0x20,0x0b, +0xdc,0x87,0xd0,0x1d,0x4c,0x34,0xd1,0x04,0x47,0xfe,0x3d,0x78, +0xe8,0x81,0x07,0xfa,0xb3,0x61,0xdf,0x87,0x9f,0x0e,0x57,0xc1, +0x00,0x3d,0xf0,0x62,0x82,0x71,0x8a,0x8e,0x26,0x4e,0xd8,0x5b, +0x2b,0x5f,0xc7,0xb9,0x7b,0xfd,0x59,0x0e,0x2c,0xe2,0xe0,0x26, +0x8e,0x5e,0x86,0x51,0x08,0x18,0x62,0xc4,0x77,0x53,0xcf,0x64, +0x9e,0xc9,0xce,0x56,0x06,0x7b,0x18,0xc1,0x2c,0x0a,0x69,0xb3, +0xa4,0x77,0x89,0x36,0x7e,0x26,0x2e,0x37,0x10,0x56,0x30,0xa6, +0xfa,0xda,0x46,0xbb,0xcc,0xbd,0x0a,0xbc,0x73,0xfd,0x33,0xed, +0x1c,0xf8,0x5b,0xfa,0x8f,0xb6,0x5e,0xd9,0xbd,0xc5,0x76,0x85, +0x13,0x8e,0x71,0xa7,0x2a,0x06,0x55,0x3f,0x81,0x0d,0xa5,0xe2, +0xb3,0xc0,0x58,0x52,0xc9,0x6f,0x99,0xbf,0x7e,0x1d,0x8e,0xdd, +0xe9,0x59,0xee,0x5a,0xe9,0x56,0xf6,0x7c,0xf8,0xc6,0x8d,0xe1, +0xbb,0x9c,0xb0,0x62,0x40,0xdc,0xc6,0x50,0x3b,0xdc,0x46,0x8e, +0x5c,0x78,0x7d,0xf3,0xee,0xfd,0x07,0x1f,0x94,0xcc,0x6a,0x70, +0x03,0xda,0xe3,0x72,0x9c,0x4d,0xe1,0xaa,0x92,0x52,0x91,0x1e, +0x58,0xf7,0xc1,0xd6,0xa7,0x30,0xee,0x8e,0x52,0xf2,0xc5,0xb8, +0xef,0x93,0xa3,0xe0,0x2c,0x3a,0xf2,0x2d,0x1d,0x18,0x00,0x06, +0x21,0xa9,0x51,0xdf,0x87,0x46,0x29,0x29,0xc2,0x5d,0x70,0x26, +0x6e,0xa1,0xae,0x61,0xce,0xe1,0x1c,0xbc,0xf8,0xa3,0x6f,0x36, +0x94,0xe8,0x61,0x09,0x8e,0x35,0x82,0xb1,0xf8,0x0f,0xeb,0x14, +0xee,0x10,0x6e,0x7f,0x28,0xdd,0x80,0x87,0xb1,0x55,0x2f,0x2a, +0x9f,0x35,0x70,0x42,0x0f,0x85,0x3e,0xb6,0x75,0x1e,0x97,0x02, +0x7e,0xba,0x0a,0x9f,0xd5,0xc3,0x84,0x52,0x98,0x42,0x01,0xa2, +0xef,0x6c,0xaf,0x45,0x96,0x2b,0x43,0x7e,0x3d,0x0c,0x8a,0xa7, +0x61,0x3e,0xf7,0x2f,0x91,0x9d,0x6b,0x88,0x73,0xf1,0x0f,0x23, +0xf8,0x83,0x39,0x83,0xdb,0x92,0x71,0x61,0x11,0x7e,0x6e,0xaa, +0xb6,0x6b,0xe7,0x42,0x8d,0x72,0x4b,0xfe,0xd9,0xd0,0xd5,0xab, +0xdd,0x37,0xf3,0xb7,0x54,0xe8,0x37,0x3b,0x55,0xbb,0x37,0xc5, +0xc7,0xf4,0x25,0x81,0x11,0x2f,0xc9,0x55,0xc8,0x13,0xaa,0x89, +0x67,0x95,0x43,0x85,0x73,0x8e,0xb3,0x2b,0x5f,0x1b,0xd0,0xe8, +0x5c,0xe8,0xce,0x89,0x89,0xa2,0x25,0x81,0x43,0xd0,0x88,0x87, +0x98,0x1e,0x8c,0x26,0xa0,0x0d,0x5f,0xa2,0x36,0xfb,0x0c,0x19, +0x32,0xdb,0x0b,0x27,0x04,0xe0,0xe4,0xd0,0x04,0xda,0xc4,0x89, +0xe9,0x30,0x21,0xef,0xf7,0x52,0x4e,0xf1,0x6f,0x6d,0x29,0x35, +0x18,0xe2,0xb6,0xc7,0xda,0xeb,0xc5,0xe5,0x46,0xd0,0xc7,0xba, +0x5b,0x3b,0x5a,0xdb,0xda,0x71,0xb6,0x36,0xa7,0x6d,0xa6,0x9d, +0x37,0x82,0x23,0x67,0x20,0x34,0x0e,0xf6,0xa5,0x2b,0x95,0xee, +0x2f,0xdd,0x5f,0xe8,0xdd,0x58,0xcb,0xef,0xb8,0xb9,0xe9,0x96, +0x7a,0xb7,0xad,0x1b,0x9f,0x17,0x52,0x10,0x58,0xe4,0x8f,0x93, +0x8f,0xa0,0xea,0x71,0x5c,0x70,0xb2,0xb6,0xa1,0xb6,0xbd,0xa4, +0x91,0x43,0x4b,0x59,0x32,0xe5,0x83,0x42,0x0d,0x05,0x48,0xce, +0x6c,0x0a,0xa5,0x8b,0x06,0xd4,0xab,0xa4,0x51,0xaf,0xa2,0x21, +0x5b,0x21,0xc6,0xb1,0xc2,0x6f,0x02,0x43,0xc4,0x9a,0x27,0x42, +0x0d,0x23,0xd6,0xe0,0x4c,0x22,0xd4,0xac,0x15,0x6b,0xa8,0x57, +0x39,0x2d,0x7d,0x4c,0x8e,0x39,0x1f,0x71,0x8a,0x72,0xe2,0x50, +0xdd,0x10,0x56,0x33,0x2e,0x38,0xde,0x08,0xc7,0x6d,0x58,0x53, +0x69,0xc1,0x17,0x14,0x14,0x56,0x16,0xd4,0x71,0x62,0xe8,0x10, +0x84,0xc2,0x09,0x5c,0x81,0x3c,0x9b,0x6c,0x2c,0x9f,0xac,0x68, +0x4a,0xcd,0xaa,0x57,0x15,0xaa,0xb0,0x8e,0x4d,0xab,0x4e,0xa9, +0x4f,0xac,0xe3,0xa0,0xaa,0x1f,0xb3,0x98,0xf8,0x9a,0xd8,0xea, +0xf3,0x94,0xa0,0xa5,0x8a,0x63,0x48,0xc7,0x9b,0xda,0xd7,0xb9, +0x8f,0xb8,0x0e,0x7c,0x2a,0xfb,0x7b,0x44,0xda,0x05,0x0e,0x6c, +0xc0,0xb6,0x7d,0xcb,0x0c,0xe7,0x73,0xb7,0xd5,0xfb,0xb6,0x6e, +0x56,0xde,0x15,0xe2,0xb6,0x4d,0x45,0x83,0x49,0xd2,0x55,0xb8, +0xc4,0xfc,0xde,0x78,0xe9,0xcd,0x2f,0xc6,0x3f,0x68,0x5c,0x51, +0x15,0x65,0xcb,0x09,0x8c,0xa5,0x55,0x8d,0x65,0xf1,0x04,0x65, +0x2a,0x27,0x70,0x22,0x9e,0xa0,0xe6,0xc2,0x99,0x22,0xdf,0x23, +0x47,0x4f,0x1f,0x99,0x76,0xde,0xf2,0x4a,0xcc,0xad,0x8b,0x97, +0x13,0x95,0xce,0x87,0xc6,0x1c,0x8c,0x09,0x6b,0x4e,0xe1,0x0f, +0xf5,0x07,0x0f,0x07,0xb7,0xda,0x86,0xf3,0x17,0x83,0x2e,0xfa, +0xc7,0xf9,0xba,0x1d,0x77,0x39,0xee,0x72,0xb2,0x7d,0x68,0xf8, +0x45,0xdd,0x3d,0xdb,0x5c,0x3e,0xc4,0xd9,0xcf,0xce,0xc7,0xe1, +0x50,0x5a,0x78,0x5a,0x44,0x5a,0x69,0x4b,0x71,0x77,0x5e,0xb7, +0x75,0x36,0x1f,0x62,0xe5,0x23,0xf1,0x75,0x8a,0x4e,0xa0,0x9f, +0x78,0x77,0x17,0xbe,0x66,0x5f,0xb5,0x7d,0xb9,0x9d,0x9f,0x9b, +0xbf,0xc7,0x81,0x00,0x4e,0x9c,0x0c,0xee,0xa4,0xce,0xa1,0xca, +0xbe,0xc2,0x3a,0xc0,0x25,0xc0,0x23,0x24,0x90,0x3b,0x7d,0x28, +0xf2,0x74,0xe4,0xb4,0xf3,0x16,0x97,0xce,0xdd,0x8a,0xbd,0x9a, +0xa8,0x14,0x13,0x16,0x13,0x7a,0x2e,0xac,0x25,0x99,0x3f,0x34, +0x12,0xda,0x1f,0xd2,0x6e,0x43,0x2b,0x0e,0x90,0x57,0xec,0x71, +0xdc,0xfd,0x84,0xc7,0xa9,0x96,0xa1,0x81,0xd7,0x0d,0xcf,0xec, +0x72,0xf9,0x60,0x7b,0x7f,0x1b,0x5f,0xfb,0x88,0xf4,0xf0,0x8c, +0xf0,0xb4,0x8a,0xf6,0xa2,0xbe,0xec,0x6e,0x9b,0x2c,0x5a,0xb1, +0xaf,0x99,0xaf,0xfd,0xfe,0x52,0x5e,0xc8,0x95,0x1d,0x20,0x8e, +0xc5,0xae,0x15,0x5e,0x8d,0xd5,0x35,0x15,0x4d,0xe5,0x5d,0x76, +0x14,0x0c,0xd9,0x78,0x3b,0x79,0x78,0x04,0xd5,0x1e,0x6c,0x0e, +0xef,0xe6,0xe0,0x4c,0x27,0x26,0x31,0x07,0x1f,0x1f,0xfe,0x15, +0x26,0x29,0x83,0x85,0x04,0x2d,0x58,0x9c,0x70,0x71,0x5e,0xda, +0x5a,0x15,0x6c,0x94,0xfc,0x15,0xc2,0xa0,0x82,0xd5,0xa6,0x25, +0x4b,0x54,0xaa,0xed,0x6e,0xdf,0xa9,0xbf,0x92,0xd5,0xad,0x74, +0xee,0xe2,0x85,0x73,0x71,0x47,0x9e,0x6f,0xe0,0xab,0x6a,0xd7, +0x3c,0x88,0x4a,0x38,0x74,0x8a,0xd2,0xcf,0xc3,0x51,0x27,0xce, +0x29,0xc4,0xe5,0x9f,0x2f,0x6d,0x51,0xce,0x80,0x59,0x6c,0xda, +0x9e,0x5c,0xc3,0x22,0x0b,0x5d,0xd3,0x9d,0x4e,0xf3,0x9c,0x73, +0x2d,0xf9,0x5f,0x6b,0xef,0xd6,0x8f,0xf6,0x94,0xd9,0x56,0xb9, +0x34,0x78,0x35,0xec,0xaf,0x4c,0x3a,0xd7,0x9c,0x00,0x4b,0x79, +0xab,0x0c,0x05,0x59,0x38,0x7c,0x20,0xf9,0xf7,0xd2,0x1f,0x24, +0xfc,0xcc,0x81,0x4a,0x1f,0x8e,0x18,0x01,0x4b,0x2d,0xc9,0x3a, +0x7b,0x54,0xde,0x8a,0x9f,0x15,0x6a,0xf1,0x59,0x85,0xa9,0x85, +0xc9,0x25,0x9c,0xb8,0xb9,0xf7,0x07,0x58,0x27,0x04,0x51,0x8c, +0x29,0x6e,0x21,0x02,0xf3,0x97,0xc8,0xb0,0xd2,0x31,0x94,0x27, +0x7b,0x66,0xd8,0xa5,0xb9,0xc6,0xfb,0x3b,0xf2,0x15,0xd1,0x0d, +0x21,0x65,0xa1,0x54,0xd6,0xd5,0xe1,0x0f,0x72,0xf5,0x9f,0x49, +0x7b,0xff,0xdb,0xc2,0x2c,0x14,0xa7,0x19,0x0b,0xd3,0x66,0xe1, +0x2b,0x53,0xe9,0xa9,0x6e,0xfc,0xf3,0x4f,0x61,0x71,0xaf,0xb8, +0x98,0x11,0xbf,0x15,0x4f,0x52,0x9a,0x22,0x75,0xc7,0x69,0xa3, +0x60,0x2c,0x7b,0x85,0xc6,0x2c,0x14,0x61,0x24,0x31,0x89,0x4a, +0x6a,0x54,0xbd,0xc5,0x82,0x71,0x26,0xec,0xa8,0x07,0x95,0x01, +0x4f,0xea,0x9e,0xbf,0x31,0xc6,0xcd,0x0e,0xb8,0x2b,0x84,0x03, +0xa2,0x85,0xd9,0xec,0xc6,0x02,0xff,0x37,0x2a,0x82,0x01,0xd3, +0x9e,0x91,0xda,0xa4,0x0a,0x0c,0xab,0x93,0xaa,0x80,0xdf,0x52, +0xbf,0x28,0xc2,0x4d,0x92,0x11,0x9a,0x11,0x96,0x19,0x5e,0xd9, +0xc1,0xaf,0xba,0xbc,0xfe,0x8d,0x04,0xc6,0x71,0x60,0xd3,0x83, +0xc6,0x4c,0x51,0x47,0xde,0x50,0x46,0x97,0x61,0x36,0x1f,0xac, +0xb3,0x7f,0x8f,0xbb,0x09,0x27,0x4e,0x33,0x01,0x53,0xc6,0x1a, +0x3f,0x5b,0x39,0x73,0xb9,0x1e,0xa5,0x17,0x99,0xc9,0x99,0xa9, +0x99,0xe9,0x1c,0x76,0xe1,0x58,0x53,0xa9,0x55,0xf7,0x46,0x16, +0x3f,0x48,0xd7,0x93,0x80,0x36,0x9f,0x6e,0xf7,0x46,0x73,0x1f, +0xbe,0xd4,0xae,0xc4,0x2c,0xc3,0x8a,0xc3,0xed,0x5d,0xc4,0xa2, +0x41,0xaf,0x5e,0xbf,0xd4,0xd3,0x92,0x1f,0x76,0xeb,0x76,0xee, +0xb2,0xe7,0x2e,0xa2,0x33,0x31,0x6e,0xd9,0xd1,0xb9,0xa7,0xd2, +0xc3,0x8a,0xbf,0xb6,0xef,0xb2,0xcd,0x90,0x05,0x27,0xe8,0x80, +0x36,0xa9,0x5d,0x3a,0xba,0xf2,0xd6,0x2e,0x4e,0xf4,0x61,0x6e, +0xdf,0x1a,0x7d,0x5d,0xf6,0x9c,0xc3,0x97,0x14,0x5a,0xba,0xe0, +0x38,0x73,0xe4,0x76,0x2d,0x6c,0x73,0xe0,0xef,0xfc,0xd9,0x0f, +0xca,0x65,0x1f,0x39,0x38,0x19,0x4b,0x30,0x6f,0x21,0xe4,0xb1, +0xd4,0x1a,0xe6,0x91,0xc5,0x90,0xf7,0x96,0x81,0x65,0x53,0x31, +0x6f,0x01,0x2d,0x52,0x84,0xcb,0x42,0x0c,0xa1,0xd8,0x29,0x3d, +0x33,0x83,0x43,0x09,0xa8,0xb0,0x47,0xf0,0x0b,0x0a,0x03,0x15, +0x2d,0xab,0x29,0x1f,0x9d,0x35,0x3a,0xf2,0xcb,0x45,0x50,0xe5, +0x7e,0x43,0x33,0x46,0x37,0xcf,0xf7,0xba,0x0a,0x7c,0xce,0x74, +0x24,0xa7,0x37,0xaa,0xbe,0x65,0x8d,0x69,0xa7,0x4c,0xc4,0x49, +0xac,0x57,0x64,0x7c,0x91,0x2a,0x18,0x80,0x1a,0xc4,0xa2,0x3a, +0x5b,0x58,0x55,0x50,0x9f,0x59,0xc3,0xd5,0x61,0x06,0x9b,0x98, +0x13,0x9f,0x1d,0x97,0x65,0x94,0xc0,0x3b,0x2d,0x58,0x85,0x5f, +0xce,0xde,0xca,0xc5,0xf4,0x12,0xcb,0x1f,0xf4,0xee,0x9b,0xf6, +0x5a,0xba,0xf2,0xbd,0xc6,0xfd,0x9b,0x5b,0xb7,0x71,0xc2,0x69, +0x58,0x42,0x42,0xdc,0x7c,0x9c,0x7c,0x3c,0x39,0x0c,0x61,0x8a, +0xca,0x0b,0x2a,0x73,0xaa,0xb8,0x9d,0xb8,0x4e,0x1e,0x6a,0x3f, +0x47,0x1e,0x6a,0x1f,0x3e,0x15,0xe6,0x80,0xfc,0x1d,0x40,0x22, +0x11,0x97,0x92,0xff,0xda,0x41,0x42,0x9d,0xb2,0xb1,0x3e,0x7c, +0x2d,0x07,0x09,0x6e,0xa6,0xf3,0xe4,0x4e,0xf9,0x45,0x5d,0x6b, +0xff,0xb9,0xdb,0xff,0xdb,0x9e,0x93,0x68,0x26,0x7e,0x44,0x41, +0xf1,0x6f,0x25,0xe9,0x1d,0x82,0x4a,0x8e,0x68,0xef,0x8e,0x9a, +0x47,0xe5,0x01,0x5e,0x86,0x17,0xc1,0xae,0x1c,0x66,0xd6,0x73, +0xb2,0x4d,0xa2,0x0a,0x39,0x21,0xcf,0x94,0xd0,0x8f,0x5f,0xc3, +0x26,0xa6,0x31,0xa5,0x2e,0xad,0x42,0xce,0x17,0x77,0x39,0x20, +0xeb,0xba,0x20,0x2c,0x4d,0xc2,0xd7,0xc4,0x36,0x5e,0x6c,0xf8, +0xb4,0x7d,0x61,0xa1,0x21,0x15,0xf9,0xc3,0x73,0x9c,0x67,0xce, +0xc7,0x2f,0xa9,0x25,0xbb,0xf7,0x4b,0xd1,0x8f,0xe7,0xef,0x53, +0xb2,0x68,0xd2,0x2d,0x68,0x50,0xb2,0x28,0xdf,0xbd,0xf0,0x1c, +0x77,0x34,0x96,0xaf,0x80,0x6d,0x47,0x13,0x0e,0x7f,0xda,0xbd, +0x30,0x7a,0x93,0x54,0xf5,0xd6,0xbd,0xce,0xbc,0x62,0x9a,0xc9, +0x1f,0xdc,0xeb,0xbc,0x76,0x9f,0x01,0xa7,0x99,0x40,0x22,0xfa, +0x7d,0xaf,0xfb,0x76,0x4a,0x82,0xf9,0x02,0xf3,0x82,0xdd,0xc9, +0xc6,0x1c,0x9e,0x83,0x79,0xa4,0xc0,0xae,0x64,0x4f,0x9a,0x69, +0x47,0x26,0x1f,0xda,0xe3,0x79,0xdd,0xb7,0x91,0x4b,0x90,0xf9, +0x12,0x21,0xd6,0x40,0x8c,0x65,0xc1,0xf9,0x34,0xe9,0x85,0xa3, +0xc6,0x83,0xc2,0x59,0xfc,0x5b,0x3c,0xcb,0x42,0x07,0x0c,0x13, +0x3c,0x0a,0xb3,0x29,0x19,0xc5,0xa3,0x68,0x46,0xe0,0x28,0x6d, +0xdd,0x51,0x6a,0x78,0xff,0x12,0xee,0x91,0x77,0x50,0xb8,0x70, +0xf8,0x1d,0x24,0xf6,0x61,0xe2,0x3b,0xdd,0x85,0x58,0xf8,0x4e, +0x6f,0x21,0x9e,0x30,0x82,0x13,0x0b,0x59,0x78,0x2c,0xdf,0x3f, +0x18,0xce,0x1c,0xb0,0x70,0xd6,0xb5,0x35,0xef,0xf4,0xe2,0xbb, +0x46,0x1a,0x6f,0xe7,0x5f,0xe5,0x9a,0xc4,0x3d,0x6c,0x72,0x71, +0x62,0x49,0x7c,0x09,0x65,0xa3,0xae,0x38,0xc6,0x74,0xc9,0xea, +0xf5,0x8d,0x8e,0x7c,0x67,0x67,0x5d,0x6f,0x59,0x3f,0xf7,0x16, +0xc7,0x31,0xb8,0x69,0xf6,0x62,0xdc,0xbf,0x4c,0xa5,0xd4,0x10, +0x5c,0x5e,0xbd,0x78,0x99,0x0a,0xd3,0x69,0x27,0xa7,0xe3,0xf4, +0x17,0x2b,0xc1,0x6b,0x49,0x59,0x3f,0x8f,0xe1,0xbf,0x2d,0x7c, +0x06,0x9b,0x94,0xc5,0x56,0xd8,0x48,0xfa,0x7d,0x7e,0x94,0xf4, +0xda,0x54,0xb7,0xf1,0xa6,0x8d,0x1b,0x7a,0xf4,0x8b,0x38,0xb0, +0xc0,0x6e,0xb2,0x47,0x7f,0x91,0xfe,0x12,0xcb,0x72,0x63,0xfe, +0x4d,0xc7,0xcb,0xa1,0xdb,0xa3,0x14,0x73,0x68,0xd0,0x41,0xd1, +0x5d,0x80,0xc5,0xef,0xe9,0xd7,0x31,0x23,0x38,0xb6,0x64,0xf8, +0x0d,0x14,0xcb,0xbf,0xe2,0xfb,0x30,0x9e,0x01,0x3d,0x4c,0x26, +0xfd,0xb2,0x93,0x86,0xf0,0x11,0x37,0x89,0x2b,0x0d,0x84,0x95, +0x78,0x8e,0x32,0x9b,0x74,0x43,0x05,0xd0,0x66,0x3a,0x72,0xb2, +0xdb,0x55,0x21,0x4a,0x98,0x33,0x20,0xce,0x81,0x4d,0xac,0xe2, +0x43,0x30,0x22,0x50,0x2d,0x6c,0xda,0xc1,0xa4,0x97,0xa5,0xd5, +0x25,0x54,0x72,0x8d,0xb8,0x80,0x8d,0xcd,0xb9,0x90,0x7b,0x3e, +0x57,0x12,0xcb,0x1f,0x98,0xef,0xb0,0x44,0x77,0x4b,0x95,0x2b, +0x1f,0x73,0xfe,0xfc,0x85,0x98,0x0b,0x9c,0xd0,0x5f,0x48,0xc0, +0x1f,0x8f,0x9a,0x83,0x2e,0x4e,0xc1,0xc5,0xec,0x71,0xf5,0x48, +0xb5,0xa8,0xdd,0x1c,0xe8,0x53,0x7f,0xbd,0x2c,0x1a,0x17,0x1c, +0x51,0xe7,0x24,0xc7,0xc2,0x0f,0xdb,0x4e,0x33,0x67,0x28,0x9e, +0xee,0x61,0x06,0x8b,0xb2,0x6e,0xc6,0xab,0x26,0x3e,0x8d,0xa5, +0x1d,0xee,0xa1,0x8c,0x7b,0x98,0xd8,0xca,0xd8,0xbe,0x73,0x94, +0x0c,0x5e,0xc0,0x29,0xe4,0x42,0xc5,0xf9,0xee,0x73,0x15,0x1c, +0xec,0xf8,0xf7,0x8e,0xda,0xf2,0xd7,0x2d,0x31,0x27,0xf7,0x1c, +0xde,0x1c,0xa5,0x2e,0xdf,0xca,0x87,0x73,0x8f,0xe0,0xe2,0xe8, +0x6d,0x2a,0x92,0xa3,0xa1,0xd1,0x0e,0xd3,0x74,0x99,0x54,0x33, +0x85,0x51,0x66,0xa8,0x24,0xf7,0x76,0xbc,0x6a,0xc2,0xd3,0x38, +0x50,0x05,0x77,0x65,0xd9,0x1c,0x48,0x22,0x87,0xbd,0x43,0x9d, +0x82,0xdd,0x38,0x64,0x99,0xcc,0xd2,0xb4,0x8a,0xe4,0x2a,0xce, +0x11,0x6b,0x08,0x28,0x5d,0x43,0x25,0xb6,0x79,0x2a,0x28,0xdd, +0xa0,0x47,0xd4,0xa3,0xd8,0x14,0x66,0x5f,0xc3,0xd9,0xf2,0xa2, +0xd9,0x37,0xe8,0x11,0x7c,0xf3,0x89,0x4f,0xb5,0x6d,0xa3,0x6b, +0xa1,0x87,0x1b,0x5f,0xe5,0x5d,0xe7,0x58,0xea,0xc4,0xc1,0xdd, +0x72,0xb2,0xbf,0xca,0xa6,0xd9,0xad,0xc0,0xc3,0x83,0xaf,0xdc, +0xdf,0x64,0x5f,0xba,0x8f,0xc3,0x8c,0xa3,0xc4,0x59,0x4f,0x62, +0x60,0x6a,0x7d,0xa8,0x3e,0xbc,0x26,0xbc,0xcc,0xf9,0x10,0x9f, +0xea,0x94,0x6a,0x93,0x64,0x99,0x16,0xcb,0xe7,0xb9,0x5d,0xe9, +0xba,0x7a,0xb7,0xfe,0x9a,0x12,0x9c,0x2d,0x22,0xf6,0x7b,0x0d, +0x34,0x75,0xad,0xcb,0xec,0xf9,0xa1,0xd6,0xcb,0xb7,0xeb,0xaf, +0x71,0xb2,0x7c,0x4c,0x25,0x65,0xa3,0xb9,0x8f,0xe3,0xef,0xdb, +0xc5,0xf3,0x51,0xea,0x41,0x3b,0x3d,0xf4,0x38,0x70,0xa4,0xdd, +0x9d,0x2c,0x49,0x34,0xbe,0xa8,0xd9,0x9c,0xc4,0x47,0x0f,0x47, +0xf4,0x87,0x53,0x56,0xc4,0x85,0x93,0x58,0x9d,0x98,0x5d,0x7b, +0x94,0xdb,0xe2,0x4e,0x5d,0x3f,0x7e,0x35,0xfa,0xb2,0x92,0xe2, +0x75,0xc1,0x8b,0xa2,0xca,0x78,0x38,0x97,0x0c,0x7e,0x05,0xb9, +0xbe,0x79,0x3e,0x39,0x3e,0xdd,0xf5,0xfc,0xe6,0x97,0x73,0x3e, +0xac,0xfa,0x81,0x6a,0x7f,0xab,0x7d,0xab,0x75,0xab,0x25,0xce, +0xa6,0x24,0x2f,0x12,0x77,0x1c,0x1d,0x7c,0xd2,0xf7,0xbe,0xe3, +0xad,0x76,0x16,0x6f,0x36,0x57,0x7f,0xfe,0xf6,0x39,0xb6,0xa7, +0x6d,0x4f,0xd9,0x9c,0xe6,0xa4,0x5f,0x8a,0x29,0x64,0x5f,0x64, +0x42,0xad,0xaa,0xc0,0x6a,0x88,0x4a,0xac,0x66,0xa1,0xdf,0x55, +0x15,0xd0,0x93,0xcf,0xf9,0x52,0xab,0xbc,0x97,0xd5,0xca,0x54, +0x40,0x07,0x56,0x96,0xbd,0x89,0xc0,0xc1,0x0f,0x3f,0xc1,0x94, +0x33,0x50,0xcc,0x69,0x30,0x18,0xa3,0xbe,0x08,0x3d,0x96,0xa8, +0xc8,0xdf,0x30,0x72,0x89,0xac,0x35,0x43,0xa5,0xfd,0xc8,0x45, +0x70,0x32,0xf7,0x4b,0xf0,0x19,0xb4,0x0d,0x60,0x1b,0x9c,0x84, +0xc6,0x7e,0x6c,0x04,0x7b,0xf6,0xf7,0x64,0xe0,0x8a,0x9e,0xb6, +0x73,0xfd,0xb2,0x27,0xe4,0xb2,0xb4,0x1a,0x12,0xc5,0x4e,0x6a, +0x71,0xd2,0x74,0x15,0x28,0xd9,0xe9,0xc8,0x48,0xa7,0x58,0x07, +0xc4,0x69,0xd4,0xc9,0xcc,0xdb,0x41,0xfa,0xaf,0x0b,0x0b,0x76, +0x0f,0x48,0xff,0x23,0xa6,0x33,0x98,0x26,0xcb,0x23,0x1f,0xc1, +0x58,0x3a,0x1d,0xcf,0xca,0x8e,0xb1,0xc2,0x14,0xa9,0x0f,0x11, +0x16,0xc8,0xf4,0xc5,0x05,0x0c,0x1a,0x02,0xa1,0xd6,0x46,0x28, +0x03,0x25,0x46,0xe8,0xc6,0x53,0x94,0x7e,0xcd,0x80,0x6d,0x46, +0xb8,0x0d,0x55,0x8d,0x61,0x06,0x7b,0x18,0x15,0x1c,0x67,0x2e, +0x5f,0x55,0x6e,0xc1,0xbf,0x7a,0x5d,0xf5,0xeb,0xf9,0x0f,0x14, +0xcd,0x9f,0x5f,0x50,0xbd,0xec,0xcd,0x82,0xf2,0x56,0x7e,0xe9, +0x6b,0x07,0x0a,0x25,0x15,0x3e,0x51,0x80,0x46,0x82,0xd6,0xd2, +0x95,0x60,0xcd,0x8a,0xbf,0xe1,0x02,0xf2,0x56,0xa8,0x5e,0xcc, +0xca,0xbe,0x45,0x05,0x22,0x1a,0x4a,0xc3,0x05,0x43,0x56,0x1b, +0xbf,0x25,0xa2,0x78,0x5f,0x10,0x19,0x74,0x1e,0x2f,0x8a,0x0f, +0xe8,0x89,0x28,0xe2,0x54,0x22,0x88,0x1b,0x45,0x5a,0xc6,0x62, +0x38,0x81,0xe9,0xc5,0x7f,0xd6,0xdf,0x6b,0x74,0x6c,0xe0,0xb7, +0x38,0xcc,0x73,0xc5,0x6f,0x7c,0x38,0xa1,0xb1,0x9f,0xfc,0xe6, +0x03,0x13,0x1d,0xdf,0x3b,0x54,0x76,0xf2,0x0b,0xab,0x71,0x72, +0xdd,0x77,0x05,0x9c,0xe2,0xc3,0x2d,0xe4,0xf2,0x88,0xd4,0x44, +0xe7,0xb2,0xf4,0x1f,0xd9,0x0f,0xcc,0x65,0x7d,0x22,0x35,0x91, +0xed,0x95,0x99,0x30,0xd2,0x49,0xc2,0x1a,0xd2,0x8f,0x17,0x61, +0x8d,0x0e,0x65,0x85,0xc7,0x0c,0xe1,0x30,0x1b,0x85,0xdc,0xf2, +0x85,0xb8,0x78,0x75,0x25,0x25,0xe5,0x2b,0xdf,0x3d,0xfe,0x25, +0xee,0x2f,0xda,0xfe,0x8b,0x33,0xdf,0x2e,0x85,0x95,0xf3,0x2a, +0xbb,0x79,0x5c,0xfc,0x72,0xf6,0xeb,0x43,0xc0,0xd1,0x27,0x48, +0x06,0x2b,0xd2,0x0c,0x5c,0x1e,0x28,0xc5,0xc3,0x1a,0xae,0x9e, +0x4a,0x6b,0xc2,0xa5,0x8b,0x23,0xb1,0x7d,0x06,0x31,0xfc,0x31, +0x93,0xc3,0x9a,0x91,0x7b,0xb9,0xf9,0x86,0x3f,0x33,0x21,0xb3, +0x03,0x66,0xf9,0x6c,0x68,0x76,0x69,0x70,0x6e,0x74,0x74,0x51, +0xb3,0xd8,0xa5,0xa1,0x51,0x65,0xc9,0x5f,0xbd,0xd6,0x75,0xbb, +0xf6,0x51,0xa5,0x6b,0x95,0x73,0xb5,0x7d,0x55,0x0b,0x6f,0xdf, +0xe2,0x58,0xbf,0xaf,0x9a,0x03,0x55,0xcc,0x97,0x0f,0xc1,0xa2, +0x4f,0x43,0x90,0xc9,0xf4,0x9b,0x11,0x61,0x11,0xed,0xf1,0x45, +0x8c,0xc0,0x08,0x1b,0x68,0x2f,0xab,0xfc,0xdb,0xcb,0x33,0x8d, +0xa9,0xfb,0xfa,0xd4,0xcb,0xcb,0xe4,0xbd,0xfc,0xfa,0x7f,0x7a, +0xb9,0x66,0xd9,0xeb,0x05,0x15,0xad,0xfc,0x92,0xff,0xea,0x65, +0x71,0x18,0x17,0x92,0x9c,0x47,0x59,0xaf,0xd3,0xde,0x70,0xef, +0x98,0x68,0x24,0xc1,0xc8,0xed,0x9b,0xe5,0x55,0xb4,0x3f,0xdf, +0x3b,0x97,0xda,0xa7,0xaa,0x1d,0xe4,0xf2,0xdf,0x53,0x34,0x19, +0x71,0xc3,0x3f,0xe3,0xc8,0xeb,0xfa,0xba,0x7b,0x49,0xaa,0x49, +0x37,0x63,0xef,0xc6,0x00,0xe1,0x44,0x9e,0x49,0xea,0x88,0xbf, +0x1a,0xdb,0xc2,0xc1,0x1f,0x50,0x2b,0xda,0x1a,0x08,0x33,0x70, +0x2b,0x7e,0x60,0x8e,0x6f,0x0a,0x9e,0x79,0x60,0x19,0x27,0xcc, +0x62,0x4e,0x6e,0x39,0xb6,0x37,0x4a,0x9f,0x93,0x1c,0xf6,0x0f, +0xd2,0x9b,0x86,0xfb,0x98,0x34,0x03,0x05,0x45,0x69,0x90,0xf0, +0x1f,0x02,0xb3,0x98,0xa8,0xed,0x7e,0xcb,0x5c,0x36,0xb7,0xfb, +0xf2,0x4d,0xef,0xf2,0xfe,0x48,0x7c,0xc4,0xb5,0xe2,0x03,0x36, +0xbe,0xf3,0x42,0x77,0x4c,0xaf,0x49,0x2c,0x1f,0x89,0xcb,0x7c, +0x71,0xca,0x6e,0x9c,0xd6,0xe6,0xce,0x57,0xdd,0x28,0xb8,0x95, +0x71,0x97,0xfb,0x11,0x67,0x31,0xe8,0x62,0x8c,0x2a,0xb8,0x0c, +0x67,0xab,0x38,0x5f,0xd1,0x7b,0x62,0xd3,0x6d,0xef,0xc9,0xe7, +0xfa,0xe4,0xbb,0xe5,0xbb,0x18,0x86,0xe9,0x44,0x68,0x45,0x52, +0x53,0x03,0x85,0xf0,0x37,0xce,0x90,0xc7,0x32,0xab,0x8a,0xd7, +0xd9,0xdd,0xd1,0x09,0x46,0x30,0x59,0x1e,0xb6,0xfd,0x6b,0xb1, +0x52,0x9a,0x5f,0x8a,0x5f,0x52,0x50,0x75,0x11,0x9f,0x6f,0x03, +0x2a,0x30,0xfd,0x12,0x70,0xe7,0x41,0x8d,0x1a,0xf0,0x0b,0xb8, +0xed,0x36,0x4e,0xa4,0xfd,0xfa,0x6d,0xe9,0x20,0x8f,0xeb,0x60, +0xae,0x0e,0x35,0x48,0x6e,0xca,0xa2,0x15,0xdc,0x25,0x29,0xdb, +0x07,0x0d,0xe0,0xf3,0x4f,0x31,0xd5,0x5f,0xdc,0xb0,0xfe,0x37, +0xa6,0xda,0x4f,0x1e,0x53,0xfd,0xed,0xa7,0x98,0xea,0xa9,0x77, +0x47,0xe4,0x31,0xd5,0x30,0x5e,0x64,0x08,0x7a,0xbf,0x07,0x6f, +0x06,0xbd,0x69,0x6f,0x82,0xf7,0x4c,0xf4,0x66,0x14,0x5f,0x4b, +0xf3,0xc8,0x88,0x5b,0xcf,0xbe,0x6e,0xfb,0xb2,0x56,0xde,0xa2, +0x41,0xb7,0x5e,0xaf,0x8c,0x93,0xc6,0x9d,0x22,0xb8,0xd4,0x19, +0xc3,0xbd,0xd0,0xfa,0x58,0x0a,0x25,0x8f,0xbb,0x2e,0x40,0x42, +0x39,0xac,0xaf,0xe5,0x70,0x3c,0x96,0x92,0xaa,0xfe,0xb2,0x9b, +0x59,0x03,0xa6,0xb9,0xfc,0x41,0x03,0x37,0x75,0x17,0x23,0x6e, +0xe7,0x09,0x12,0xd6,0xee,0x7d,0xd9,0xbb,0xcd,0x24,0x84,0x2f, +0xb0,0x2d,0xdd,0x93,0x22,0xe1,0x50,0x29,0x96,0x84,0xf4,0xb8, +0x8d,0x78,0xd7,0x99,0x04,0xf2,0x45,0xce,0x95,0x1a,0x19,0xb4, +0x6c,0x97,0x2f,0x31,0x6b,0x56,0x6f,0xd3,0x90,0xe3,0xa2,0xcb, +0xce,0xa3,0xb6,0x03,0x56,0x9c,0xd4,0x15,0x37,0xca,0xdf,0x26, +0xb2,0x8c,0x79,0x75,0xf1,0xe7,0xa4,0xc7,0x69,0xbe,0x9d,0x3c, +0xae,0xf2,0x42,0xbd,0x10,0xf4,0x3f,0x91,0x64,0xcc,0x3f,0x3d, +0xfb,0xf8,0xfc,0x8f,0x17,0x38,0x5c,0x80,0x75,0xc6,0x50,0x87, +0x9b,0x31,0xdd,0x44,0x78,0xdf,0x83,0x85,0xb0,0x19,0x3a,0x58, +0xd9,0x6b,0x4c,0x22,0x9f,0x20,0x53,0xf9,0x47,0xe3,0x6c,0xfe, +0xbf,0x71,0x14,0xa7,0x28,0xfc,0x28,0x3c,0x22,0x49,0x21,0x29, +0xfe,0xc9,0xfe,0x06,0x47,0xb6,0x1f,0xdd,0x7a,0xe2,0xfe,0xe8, +0xb3,0x67,0xd7,0x9f,0x58,0x57,0xf1,0x0e,0xc6,0x46,0xfa,0xfa, +0x46,0x07,0x33,0x82,0xd3,0x43,0xd2,0x1a,0x9b,0x3a,0xfb,0xeb, +0xbb,0xad,0x2a,0x78,0x37,0x73,0x33,0x03,0x4b,0x87,0x90,0xd4, +0xe0,0xd4,0xe0,0x64,0x17,0x7b,0xbe,0xdb,0x69,0xd0,0xbc,0xd1, +0xde,0x37,0xc0,0x37,0xd0,0xf7,0xc0,0xb2,0x93,0x7c,0x8c,0x29, +0xcc,0x3a,0x07,0x5b,0x13,0x60,0x4c,0xba,0x52,0x42,0x60,0x7c, +0x50,0x5c,0x70,0x57,0x2e,0xef,0x33,0xba,0xef,0xa6,0x7b,0x07, +0x27,0x9e,0x91,0xc7,0x93,0xa6,0x1c,0xc0,0xa9,0x7b,0xf1,0x73, +0x95,0x4e,0x23,0x85,0x1f,0x60,0x56,0x36,0xac,0x86,0x3c,0x65, +0xb8,0xa1,0xcb,0x4a,0x93,0x65,0xed,0xc4,0x8a,0x09,0x39,0x92, +0x98,0xa3,0x2a,0x4d,0xd1,0x95,0x15,0xb0,0xba,0xf9,0x81,0xfd, +0x2a,0x6d,0x4c,0x7d,0x46,0x4a,0x9b,0x2a,0xe8,0xb2,0x46,0x69, +0x0a,0xe2,0x15,0x2c,0x90,0xaf,0x62,0xd6,0xad,0x42,0x55,0x36, +0x59,0xa2,0x40,0xd1,0x5a,0x63,0x66,0x06,0x35,0xa0,0xdf,0x8a, +0x0b,0x44,0x0b,0x16,0xde,0xc3,0x3d,0x82,0x75,0x77,0xa1,0x8e, +0xc1,0x3a,0xfc,0x9a,0x40,0xdd,0x76,0xac,0xa3,0xd8,0xe1,0x6f, +0xe9,0x4c,0x32,0x00,0x59,0xf2,0xbd,0x61,0xd9,0x5d,0x98,0x7d, +0xcb,0x60,0x27,0x66,0xdd,0xd2,0xdf,0x89,0xe7,0xcd,0xe0,0xbc, +0x01,0x2b,0x5d,0x88,0x5a,0x04,0x97,0xf7,0xed,0x6c,0x75,0xe8, +0xa5,0xa2,0xe0,0x6c,0xa2,0x61,0x85,0xeb,0xf4,0x29,0xe6,0x1f, +0xca,0xe9,0xc8,0xa9,0xcb,0xe1,0x9c,0xe1,0x4c,0x15,0x5b,0x17, +0xd8,0x71,0x60,0x30,0x90,0x93,0xcd,0x97,0x90,0xba,0xf6,0xda, +0x47,0x99,0xd7,0xb8,0x66,0xac,0x96,0xed,0x1d,0x94,0x7e,0x03, +0x1b,0xd8,0x50,0x7d,0xe7,0xed,0x16,0xda,0xdc,0xb0,0x66,0x95, +0xbe,0xa1,0xb2,0xc9,0x41,0x2f,0x23,0x15,0x73,0x26,0xcd,0x54, +0xa1,0x89,0xb9,0xd1,0xd1,0xf4,0xf3,0x1d,0x87,0x21,0x8b,0x1e, +0x55,0x2a,0xc3,0x53,0x49,0x57,0x59,0x79,0x79,0x4a,0x2d,0x55, +0xd8,0x14,0xc7,0x72,0xf7,0x6e,0x8a,0x08,0x45,0x0c,0x26,0x16, +0x42,0x6c,0x3b,0x8e,0x67,0x8b,0x0a,0xb2,0xf3,0xb3,0x8a,0xb9, +0x06,0x51,0xc7,0x52,0x60,0xd8,0x60,0xbf,0x00,0x3f,0x2f,0x7f, +0xae,0x00,0x5d,0x49,0x46,0x44,0xd6,0xc1,0xac,0x90,0xe5,0x87, +0xe7,0x1f,0x9d,0x7b,0x2c,0xbf,0x22,0xaf,0x81,0xa2,0x4f,0x78, +0xd7,0x2e,0xd6,0x59,0x80,0x32,0x13,0xb2,0xcf,0xc7,0xde,0xdb, +0xd9,0xeb,0x94,0xd7,0x69,0xcf,0xd3,0x17,0xcc,0x79,0xd0,0x89, +0x87,0xe5,0x71,0xb0,0x2a,0x2b,0x4d,0x3e,0x1b,0x1c,0x51,0x53, +0xce,0x3b,0x36,0x69,0xf4,0xdb,0xcb,0xf9,0xb3,0x82,0xe0,0x47, +0x2a,0x06,0xc0,0x91,0x9a,0xbc,0x09,0xf2,0x74,0x59,0x11,0xe8, +0xd8,0xef,0xc6,0x2e,0xc4,0x03,0xe4,0x67,0xfb,0x87,0x46,0xc3, +0x2a,0xb5,0xb7,0x5a,0x61,0x7c,0xd6,0x53,0xae,0x05,0xcb,0xfe, +0xf9,0x6c,0x58,0x3a,0x0c,0x4b,0xd9,0x30,0x75,0x0b,0x1c,0x6b, +0xb3,0x96,0xbb,0xbc,0xb3,0x7e,0xeb,0x76,0x65,0x83,0x70,0x2f, +0x53,0x15,0x7b,0x26,0x5e,0x4b,0xa1,0x83,0xb9,0x5e,0xd7,0xfc, +0x51,0x55,0xc8,0x87,0x0a,0x22,0xee,0x00,0x22,0xec,0x60,0x7e, +0xc4,0x4e,0x22,0x3e,0x31,0x82,0x8d,0xcc,0x49,0x5c,0x67,0xb0, +0x08,0xf5,0x76,0x15,0x48,0x78,0x70,0x7c,0x70,0x0d,0x26,0x9f, +0x03,0x2d,0x0e,0x26,0x62,0x31,0xa3,0x91,0x1b,0x7c,0x49,0xe5, +0x03,0x53,0x97,0x92,0x5c,0xa7,0x0a,0x6b,0x59,0x53,0x0a,0xaf, +0xd5,0xd7,0xb0,0x2e,0x87,0xe3,0x2a,0x55,0x21,0x0d,0x0c,0xa9, +0x1f,0x9a,0x2a,0xd4,0x11,0x98,0x7f,0xf3,0xd7,0x67,0xb9,0xaf, +0x69,0x1f,0xe5,0x2d,0xff,0x63,0x2d,0x2c,0xdc,0x21,0xdf,0xf8, +0xbe,0xe4,0xee,0xea,0x1f,0xbc,0x1e,0x71,0xdb,0x98,0xfd,0x1b, +0xb6,0xaa,0xe1,0xca,0xad,0xdc,0x42,0x1c,0x4f,0xea,0x6f,0x75, +0xc2,0xb8,0xec,0x67,0xb4,0xc5,0x1d,0xff,0x7c,0x36,0x4a,0x5b, +0xbc,0x99,0x0d,0xdd,0x65,0x86,0x63,0xad,0xd6,0x71,0xd7,0x77, +0x35,0x6d,0xdb,0xaa,0x6c,0x18,0xe6,0x69,0xa4,0x62,0x29,0x4f, +0x0d,0xd1,0xcb,0xdc,0x6a,0x6c,0xf9,0xf8,0xc2,0xfa,0xa1,0xde, +0x90,0x2a,0x5c,0xbc,0x43,0xa0,0xbd,0x1d,0xdb,0x99,0xc5,0x98, +0x46,0x3b,0xff,0x4c,0x3b,0x7e,0xc9,0x96,0x97,0x15,0x57,0xe6, +0x57,0x73,0xf5,0xa2,0x83,0xa5,0x30,0x8d,0xf5,0x73,0x77,0x77, +0x73,0xf5,0xe2,0xf2,0x31,0x9e,0xe4,0x1c,0xcc,0x0b,0xcc,0x0d, +0x58,0x16,0x35,0xef,0xc8,0xac,0x63,0x75,0x2d,0xd5,0xfd,0x45, +0x1d,0x1c,0xfc,0xd0,0x21,0xf6,0x98,0x83,0x1a,0xe3,0x6d,0x6e, +0x6f,0x60,0x6b,0xb1,0xf2,0x24,0x1f,0x6b,0x0a,0x7a,0xb1,0xb0, +0x35,0x05,0xe6,0x65,0x28,0x51,0x4d,0x09,0x4e,0x3e,0xd8,0x50, +0xc1,0xdb,0x77,0xef,0xbd,0x64,0xd6,0x48,0x7b,0x7e,0x9c,0xf4, +0x36,0xb5,0x0e,0x9e,0x68,0x10,0x84,0x3a,0x72,0x25,0x85,0x1d, +0x17,0xc0,0x2c,0x0b,0xb6,0x57,0x70,0xe2,0x7d,0xf1,0x22,0x79, +0xb2,0xef,0x81,0xe9,0xb0,0x4a,0xd5,0x8d,0x26,0xaa,0x31,0x0f, +0xa9,0x50,0x25,0xfc,0xf3,0xd9,0x90,0x74,0x04,0x94,0xd8,0x70, +0x0d,0xfb,0xd9,0xb6,0x6b,0xb9,0xa1,0xdd,0xb5,0x5b,0x34,0x94, +0x0d,0x23,0x7c,0xcc,0x55,0x9c,0xe5,0xbd,0xdf,0xc2,0x5c,0xa9, +0x6e,0xf9,0x45,0x55,0xf0,0x87,0x6e,0x52,0xda,0x5a,0xdc,0x9d, +0xd5,0x26,0xc9,0xe2,0x03,0x4d,0x3c,0xb4,0xf6,0x49,0x38,0xf1, +0x1b,0x33,0xe1,0xe8,0x4e,0xd1,0xd7,0x5c,0xf0,0xdd,0x2c,0x9e, +0x94,0x08,0x3d,0x30,0xcc,0xe0,0xa1,0x72,0x12,0x55,0x71,0xa0, +0xe5,0x40,0x99,0x45,0x30,0x9f,0xee,0x99,0x69,0x9d,0x44,0xb1, +0x18,0x49,0x26,0x87,0xca,0x03,0xea,0x0e,0x16,0x9a,0x07,0xf1, +0xa9,0xfe,0xd9,0x8e,0xc9,0x1e,0x1c,0x54,0x8b,0xba,0xc4,0xa9, +0x42,0xbf,0xce,0xa6,0xc0,0xcd,0x99,0x6f,0xf1,0xe9,0x77,0xa8, +0x71,0xe1,0xde,0x5e,0x23,0x35,0xd6,0x6d,0x5b,0x4a,0xb5,0xba, +0x8a,0x78,0xef,0x5e,0x93,0x27,0x4e,0xcd,0x9c,0x98,0x88,0x41, +0xa4,0x65,0xa0,0xe6,0x61,0xe6,0x25,0x49,0x0a,0x1f,0x6c,0xec, +0xb2,0xc5,0xca,0x84,0x83,0xd1,0x13,0xc4,0x31,0x3a,0xa9,0x4a, +0x15,0xa6,0xeb,0x51,0x2a,0xb3,0x33,0x2f,0xf0,0xa6,0x0a,0xac, +0x65,0x3a,0x13,0xa9,0xe6,0xfe,0xcc,0x9a,0xd0,0xa1,0xe6,0x28, +0x11,0xcb,0x92,0x1e,0x25,0xcf,0x0c,0xd7,0xe0,0x22,0x33,0xf8, +0x4f,0x17,0x7b,0xab,0x87,0xa0,0xad,0x30,0x1b,0x6c,0x59,0x7c, +0x8d,0xcb,0xc9,0x5f,0x50,0x39,0x93,0x15,0xe3,0xf1,0x3b,0x92, +0xd9,0x99,0xde,0x9f,0xd0,0x6a,0x9a,0xc2,0x47,0x4b,0x0e,0xa8, +0x07,0x5b,0x70,0x18,0x60,0x2a,0x4c,0xef,0xa6,0x74,0xa0,0x92, +0x44,0x35,0x85,0xf5,0x84,0x57,0x5a,0x1c,0xe4,0xd3,0xf6,0xa5, +0x9b,0xc4,0x3b,0x70,0xf0,0x63,0x12,0x11,0x4d,0x85,0xbd,0x82, +0x29,0x6b,0x80,0x3c,0xc1,0x1b,0x8f,0xe0,0x06,0x23,0x73,0x12, +0x6f,0x92,0x61,0xc8,0x14,0xe6,0xe2,0x0f,0xa2,0x13,0x2b,0x4d, +0x13,0x0c,0xc9,0x3a,0xbc,0xf1,0x84,0x45,0x63,0xa4,0x0c,0xcb, +0x05,0x26,0x82,0x0b,0x03,0xc6,0x8b,0x08,0xdc,0x58,0x89,0x37, +0x18,0x71,0x6e,0x3a,0x01,0x17,0xfc,0x12,0x69,0x61,0x1f,0x45, +0x21,0xd7,0x72,0x1f,0xb5,0xb5,0x36,0xb8,0xd5,0xf2,0x16,0xfb, +0xb6,0xda,0x69,0x1e,0xe0,0xe0,0x61,0x0f,0x19,0xf5,0x7d,0x68, +0xdb,0xeb,0x56,0xd0,0xc1,0x4b,0xca,0x36,0xd5,0xef,0xc9,0xe3, +0xe4,0x2f,0xcb,0xa2,0xe6,0x45,0xa2,0x83,0x12,0x7c,0x6a,0x00, +0x4f,0xc5,0x3b,0xa8,0xc9,0x66,0x50,0x60,0xb5,0xfc,0xbf,0x02, +0x53,0xae,0x00,0x3b,0xc0,0xca,0x3a,0x65,0x63,0x29,0x92,0x3a, +0x43,0x91,0xd4,0x08,0x45,0x52,0x70,0x06,0xd6,0x13,0xd4,0x13, +0x8a,0x28,0xc6,0x13,0x3e,0x13,0xbf,0x27,0x8e,0xaf,0x25,0xaf, +0x4c,0xee,0x5a,0x7a,0xf0,0x9d,0x3b,0xda,0x57,0xd6,0x2d,0x91, +0x07,0xd5,0x4b,0xf7,0x12,0x31,0x94,0x49,0x6a,0x48,0x68,0xbc, +0xd8,0xa2,0x13,0xc7,0x47,0x5b,0x44,0x59,0x87,0xdb,0x72,0xf8, +0x4a,0x97,0x3e,0x97,0x36,0x6e,0x98,0x8d,0x4a,0xd4,0xaa,0x4f, +0xaa,0x31,0xe3,0xef,0xf5,0x5f,0x1e,0xec,0x1e,0xe5,0xc4,0xd5, +0x97,0x2f,0x09,0x36,0x5a,0x97,0x85,0x28,0xb1,0x90,0x6d,0xba, +0x54,0x71,0xbd,0xe0,0x2e,0x27,0xc4,0x30,0xb8,0x50,0xbc,0x4d, +0x44,0x1b,0xe8,0x17,0x6c,0x18,0xf9,0xae,0xb2,0xe5,0x04,0x17, +0x0d,0x83,0xd3,0xff,0x44,0x93,0x3b,0x0d,0xc3,0x22,0x56,0x58, +0x82,0x3f,0x11,0x58,0x07,0xc9,0x7d,0xe2,0x47,0x23,0xa8,0xc0, +0x75,0xe2,0x3a,0x43,0x61,0x1d,0x16,0xa2,0x13,0x2b,0xdf,0x1a, +0xa3,0xc9,0x74,0x66,0x67,0x76,0xa9,0x42,0x92,0x30,0xab,0x9f, +0x55,0xfc,0x7b,0x27,0x45,0x4c,0x32,0xe3,0x17,0xc2,0x5d,0x38, +0x84,0x4f,0x98,0xf4,0xe2,0x94,0xd2,0xc4,0x02,0x8d,0x04,0x3e, +0xca,0x33,0xcc,0x2d,0xd8,0x83,0xc3,0xe3,0x62,0xae,0x74,0x69, +0x38,0xe3,0x74,0xd2,0xfa,0x98,0x8b,0x8a,0xc9,0x91,0xf0,0x03, +0x9a,0xd3,0x34,0x99,0x54,0x03,0x85,0x41,0xe6,0x65,0x65,0xf9, +0x4f,0x89,0xaa,0x71,0xdd,0x67,0xbb,0xae,0x29,0x97,0xc8,0x16, +0xbf,0x94,0x1a,0xb3,0xa8,0x0f,0x0f,0x08,0x7e,0x23,0x26,0xc1, +0x37,0xac,0x70,0x4a,0xc6,0x93,0x83,0x6d,0x01,0xed,0x01,0xb5, +0x96,0x21,0x7c,0x8e,0x7d,0xae,0x45,0xb2,0x2d,0x27,0x5e,0x5d, +0x4e,0x5a,0xaf,0x55,0x3e,0x4c,0xbf,0x62,0x98,0xce,0x07,0x6b, +0xba,0x6d,0xb3,0xd1,0xe5,0x84,0x45,0xa0,0x47,0x32,0xac,0xd2, +0xb5,0x92,0x0c,0x86,0x52,0xf8,0xf0,0xc1,0xa0,0x4b,0x07,0x9a, +0x39,0xdc,0x7f,0x90,0x5c,0x34,0x8c,0xdd,0x7e,0x4a,0x6b,0x34, +0x86,0x3f,0x7d,0xed,0xe8,0xad,0xa8,0x7e,0xea,0xd1,0x88,0xd4, +0x8f,0xc8,0x9c,0xd1,0xf8,0x53,0xd2,0x17,0x75,0xa6,0x21,0x2b, +0xb7,0x4e,0x55,0x9a,0x26,0x4e,0x37,0x60,0x05,0x9d,0xa9,0xf0, +0x96,0xfe,0x24,0x61,0xd2,0xe8,0x4f,0x1a,0xff,0xeb,0xa7,0xa5, +0x2c,0x24,0xe1,0x2d,0x62,0xdf,0xbb,0xf9,0x81,0x71,0x8b,0xbd, +0x23,0xdf,0x67,0xf9,0x40,0xad,0xc1,0x90,0xf6,0x6f,0x23,0x71, +0xe8,0xdd,0x76,0xdf,0xac,0x89,0x96,0x75,0x59,0xdd,0xd9,0x52, +0x6f,0xc4,0xdd,0x70,0x20,0xbb,0x77,0xe0,0x17,0x73,0x57,0x99, +0xd2,0x71,0x78,0x39,0x0c,0x13,0xde,0xde,0x7e,0xc0,0x09,0xab, +0x9a,0xe4,0xa5,0x5f,0xcd,0x5d,0x69,0x5a,0x6d,0xc6,0xbf,0x1a, +0x84,0xc9,0xef,0xee,0x3c,0xa0,0x58,0x71,0x44,0xf8,0x9b,0xe8, +0x3f,0xd8,0x73,0xc7,0xa0,0xd3,0x66,0x1f,0x3f,0x68,0x76,0x65, +0xdb,0xe0,0x16,0x0e,0x4c,0xc5,0x2d,0x24,0x55,0xff,0x13,0x0c, +0x4f,0x95,0x6f,0x58,0x6f,0x80,0xb4,0x41,0x4c,0x83,0x10,0x38, +0x39,0x28,0x5e,0xd6,0x87,0x78,0x0c,0xc1,0x0a,0x7d,0x3a,0x20, +0x2d,0x2c,0x2e,0x41,0x55,0xda,0x51,0x2b,0x86,0x80,0x51,0x85, +0x5a,0xb4,0xd5,0x83,0x19,0xe8,0xcf,0x2e,0x76,0x34,0x9e,0x25, +0x9f,0x14,0xf8,0xa5,0xae,0x6b,0x20,0xe6,0xee,0xbf,0x93,0x02, +0xdb,0x61,0xd5,0x34,0x21,0xf0,0xdf,0x49,0x01,0x3d,0x69,0x39, +0xf9,0x67,0xa6,0xbe,0xb0,0x1a,0xbf,0x16,0xc7,0xca,0xd6,0x8f, +0x08,0x32,0xe8,0x15,0xdf,0x8d,0x08,0xef,0xe0,0xa6,0x58,0x85, +0x6b,0x3e,0x3d,0xfa,0x57,0x4c,0x4f,0x5e,0x4e,0x9f,0xaa,0x70, +0x57,0xfc,0x0a,0xbe,0x16,0x76,0xb2,0xb8,0x46,0xfc,0x86,0x48, +0x1a,0x77,0x75,0x18,0x96,0x7a,0xd9,0xf3,0xfd,0xee,0x37,0x24, +0x1d,0xf6,0x9c,0xd8,0x01,0x5f,0x91,0x5e,0xb7,0x1b,0x16,0xad, +0xf6,0x15,0x0d,0x14,0xee,0xa8,0x77,0x18,0x95,0x71,0x42,0x07, +0xfe,0x42,0x4c,0x5b,0xf7,0x74,0x9a,0x96,0xc8,0xf7,0x25,0x79, +0xdd,0x32,0x6e,0xa3,0x03,0xd6,0x06,0x93,0x49,0xc7,0xfe,0x3b, +0x86,0x6d,0xf6,0x55,0x4d,0xbc,0x79,0x93,0x7a,0xb7,0x49,0x09, +0x1d,0x08,0x33,0xe9,0x3d,0xb2,0xcc,0x01,0xbf,0xf1,0x42,0x85, +0x30,0x4e,0xbc,0xc0,0x6e,0x3f,0x98,0xaa,0x07,0xca,0x65,0x3f, +0x17,0xfd,0x5c,0xa6,0xe4,0x8a,0xca,0x73,0xd5,0x70,0x81,0x71, +0xb1,0x3e,0x0f,0x66,0x14,0x0a,0xc0,0x57,0x70,0x41,0x19,0x0a, +0xb4,0xb0,0x9a,0x0d,0x3d,0x1d,0x7a,0x3a,0x5c,0x45,0x2f,0x50, +0xfb,0xc0,0xd6,0x03,0x9c,0xa0,0xc3,0xbe,0x4b,0x03,0xae,0xe4, +0x71,0x25,0x77,0x5f,0xf6,0x96,0x8c,0x4a,0x5b,0x20,0x48,0xbc, +0x84,0x4b,0x3e,0x31,0x19,0x9e,0x69,0xcd,0x48,0x6b,0x55,0x95, +0x8e,0xc7,0x3f,0xa9,0x8c,0xea,0x0b,0xd3,0x89,0xb8,0xf0,0x06, +0x85,0xae,0x3d,0x68,0xcd,0xc4,0xe7,0x5c,0xcc,0xbb,0x90,0x67, +0x74,0x91,0x3f,0xe6,0x1f,0xed,0x1d,0xe5,0xc3,0xe1,0x22,0xb1, +0x41,0xf8,0x96,0xd9,0x7a,0xc2,0xec,0x88,0x83,0x8a,0xeb,0xb1, +0x88,0x70,0xc7,0x69,0x86,0x4c,0x92,0xa9,0x42,0x3f,0x33,0x52, +0x98,0x37,0x94,0xa0,0x9a,0xd0,0x17,0x73,0x05,0x26,0x28,0x8b, +0x53,0x6f,0x09,0x0b,0x19,0xd9,0xd6,0x63,0x04,0x78,0xaa,0x1d, +0x11,0x73,0xd8,0x8c,0xea,0xcc,0xf6,0xc4,0x6a,0xb3,0x54,0xfe, +0x90,0x43,0xb0,0x24,0xd0,0x8a,0x43,0x67,0x09,0x2c,0x47,0x82, +0x73,0x99,0x93,0xdb,0x23,0x77,0x84,0xae,0xe1,0x60,0x0d,0x13, +0xb8,0x59,0x67,0xeb,0x5a,0xed,0x12,0x4b,0xfe,0xcd,0x9d,0xb6, +0xeb,0x71,0xaf,0xb8,0x0b,0x78,0xbf,0x0b,0xfe,0x86,0x89,0x8c, +0xe3,0x29,0xb3,0xe3,0x2e,0x2a,0x5e,0x27,0xa3,0x23,0xbc,0xa6, +0xd9,0x33,0x89,0x26,0x0a,0x75,0x4c,0x7f,0x4e,0x5e,0x4f,0xac, +0xea,0x85,0xb6,0x73,0x97,0x7f,0x52,0xc6,0x43,0xc2,0x0c,0x12, +0x55,0x16,0xd0,0x16,0x52,0x6c,0xe3,0xc7,0xa7,0xfb,0xe5,0x58, +0x25,0xb8,0x71,0xd2,0x4d,0xf1,0x64,0x1b,0x36,0xdf,0x65,0x71, +0x8b,0x06,0xa1,0x15,0x8d,0x01,0xc2,0x0a,0x57,0x8c,0xc8,0x66, +0x6c,0x7e,0xc0,0xe2,0x23,0x4a,0xce,0x91,0xc7,0x71,0xec,0xc5, +0xa6,0x0b,0xcd,0xe7,0xea,0x38,0xe9,0xe7,0x58,0x45,0x52,0xbd, +0x32,0x4d,0xe2,0x9d,0x6b,0xd3,0xf9,0xc8,0xea,0xe0,0xae,0xd0, +0x62,0x0e,0x6f,0x63,0x1c,0xa9,0xba,0x9e,0xf3,0x73,0xfc,0x2d, +0xcb,0x78,0x3e,0x7a,0x6f,0xd0,0x06,0x17,0x5d,0x0e,0x4e,0x50, +0xea,0x92,0x62,0x91,0x62,0x1c,0x67,0x24,0xe7,0xb7,0x7d,0x61, +0x3d,0x61,0xad,0x1c,0x4e,0x8b,0x20,0x09,0x9a,0xb1,0x3b,0xce, +0xea,0xb7,0xc6,0xf1,0x27,0xaf,0x1c,0xbd,0x1c,0x79,0x99,0x8e, +0xdc,0x17,0x52,0x1b,0x12,0xa1,0xb3,0xc3,0x05,0xd7,0x85,0xa6, +0x9a,0xf1,0x60,0x9f,0x79,0x6f,0x24,0xe1,0x19,0xf7,0xa7,0x1a, +0x63,0x91,0x17,0xda,0xaf,0x02,0xab,0x98,0x86,0xc4,0xe4,0x12, +0xd5,0x5a,0xd6,0x24,0x49,0xc1,0x8c,0x82,0x31,0xcf,0xc3,0xb1, +0x85,0xaa,0x97,0x21,0x75,0xcb,0x30,0xf0,0xe2,0xe2,0x9b,0xba, +0xbb,0xc4,0x69,0x38,0x6f,0xf8,0x25,0x0b,0xda,0x62,0x23,0x89, +0xbe,0x18,0x7d,0xe6,0xe8,0xe1,0xe8,0x48,0xfe,0x58,0x4c,0x7c, +0xde,0x85,0xac,0x73,0x85,0x4a,0xb0,0xa0,0x0b,0xe7,0x51,0xc2, +0xaa,0xd2,0x89,0x2a,0x72,0x97,0xb0,0x46,0x02,0x6b,0xf0,0x33, +0xd4,0x31,0xa3,0x2a,0x19,0x3a,0x6f,0xcf,0xfa,0x99,0xea,0x94, +0x2c,0xbd,0x18,0xee,0x1e,0xa8,0xba,0x11,0x13,0x77,0xee,0xcc, +0x85,0x63,0xc0,0xa3,0x02,0x5f,0xd3,0xae,0x20,0x48,0xd4,0xc9, +0x4a,0x26,0xf4,0x68,0x6c,0xba,0x2a,0x28,0xc1,0x18,0x61,0x82, +0xb8,0x58,0x9c,0xf0,0x82,0x3d,0xba,0x6c,0x97,0x09,0x32,0x5e, +0x79,0xb4,0xa5,0x93,0xab,0xde,0xdd,0x88,0x83,0x29,0xdc,0x0b, +0x2a,0x21,0xfb,0x32,0x43,0x1b,0x54,0xe8,0x18,0x14,0x27,0xa7, +0xe4,0xab,0xfe,0xc9,0x9a,0xa5,0x28,0x68,0xc3,0x25,0x82,0x4d, +0x83,0xd0,0xc4,0x60,0x13,0xc5,0xd2,0xf4,0x44,0x9f,0xb5,0x1d, +0xbf,0x07,0x9b,0xae,0x51,0xf1,0xd1,0x93,0x27,0x7b,0xd9,0xc1, +0x24,0x81,0x62,0x22,0x4c,0x8a,0x83,0x31,0x9c,0xcc,0xc0,0x00, +0xc2,0x99,0xc3,0xab,0x23,0xe6,0x87,0xcd,0xe1,0x30,0x59,0x0f, +0x62,0x98,0x83,0x38,0x3e,0x08,0xc7,0x07,0xce,0xe7,0x70,0x8f, +0xc1,0xdf,0x93,0x06,0x70,0x3f,0x93,0xf6,0x21,0x15,0xc6,0x25, +0xc1,0x78,0xf9,0x96,0x5c,0x74,0x83,0x8f,0xe4,0xf8,0xd6,0xe8, +0x39,0x87,0x70,0x9c,0x3c,0x3f,0x4b,0xea,0xef,0x49,0x1f,0xe2, +0x9f,0x71,0x38,0x56,0xb6,0x81,0x64,0xff,0x9a,0x05,0xe3,0xd3, +0xe5,0xff,0x7b,0xcb,0x1c,0xc2,0xcf,0xc2,0x50,0x21,0x64,0x2e, +0xf5,0x24,0xa7,0x3f,0x45,0x51,0x6c,0xeb,0xc1,0x6d,0xb0,0x08, +0xb6,0xf6,0xe0,0x56,0x58,0x08,0x66,0xfd,0xa8,0xc5,0xe6,0xb7, +0x65,0x76,0x26,0xd6,0x9b,0x24,0xf3,0xe1,0xd6,0x41,0x46,0xde, +0x66,0x1c,0xaa,0x32,0x39,0xad,0x69,0x2d,0x29,0x1d,0xa6,0xa9, +0xbc,0x3b,0x8e,0x35,0xc2,0xaf,0x76,0x2c,0xad,0xb2,0xe6,0xd3, +0xb2,0x93,0xb3,0x12,0x33,0x39,0xf1,0x43,0xff,0xa8,0xb0,0xa1, +0x9f,0x15,0x33,0xa4,0xda,0xa4,0x5f,0xfc,0xd2,0x10,0x66,0xb2, +0x81,0xb8,0x4a,0x82,0x33,0x96,0xe3,0xb8,0x52,0x1d,0x3e,0xbf, +0x24,0xb3,0x34,0xa3,0x9c,0x13,0xd5,0x07,0xef,0x81,0x9d,0x10, +0x80,0x16,0x6c,0xd1,0x0f,0xd9,0x0f,0x92,0x7f,0xe6,0xa8,0x9d, +0xc9,0x92,0xc7,0x3f,0xac,0xc6,0x85,0xac,0x78,0x51,0x9c,0x43, +0x84,0x31,0x30,0x47,0x1c,0xc3,0x82,0x33,0x48,0xe4,0xb1,0x10, +0xab,0x71,0x11,0x6b,0x32,0x9e,0xba,0x9d,0xd5,0xf2,0xf8,0x06, +0xa1,0x52,0xba,0x91,0xd0,0x4b,0x92,0xb0,0x52,0x1f,0x2a,0xb1, +0x56,0x36,0x15,0x6a,0x21,0x7f,0x10,0xf3,0x21,0x81,0x81,0x49, +0xc9,0x30,0x36,0xf7,0x65,0x83,0x5b,0x2f,0x3f,0xc7,0x12,0x27, +0x1c,0x40,0xa5,0x08,0x4e,0x56,0x76,0xf9,0x96,0x74,0xea,0xce, +0x2b,0xd2,0x06,0xfc,0x8d,0x55,0x7c,0x23,0xcd,0x27,0x57,0xf6, +0x0d,0xd8,0xf5,0x5b,0x56,0xb6,0xf2,0xa6,0xad,0x1a,0xad,0x5a, +0x95,0x9c,0x74,0xbf,0x1f,0xf5,0x79,0x78,0x57,0x5d,0x1c,0x1c, +0x12,0xce,0x0b,0x31,0xe2,0x6e,0xb4,0x62,0x92,0x8c,0x14,0x40, +0x87,0x69,0x4a,0xcb,0x6e,0x54,0x15,0x02,0xd4,0x59,0x7d,0xc8, +0x22,0x8b,0xf1,0x10,0x6e,0x47,0x1e,0xb2,0x58,0x30,0x96,0xb7, +0xf8,0x73,0xd8,0x85,0x9f,0xb3,0xb2,0x93,0xa3,0xe4,0x92,0xd3, +0xa8,0x55,0x9f,0x45,0x75,0x0b,0x2f,0x69,0x51,0xef,0xd2,0xac, +0xe6,0x84,0x2f,0x31,0x81,0x60,0x5b,0xcf,0x08,0xc4,0x43,0x04, +0x2b,0x5b,0x2e,0xce,0x27,0x37,0x60,0x4c,0x17,0x28,0x17,0x7d, +0x34,0xce,0xe2,0x3d,0x70,0x9c,0x35,0x4e,0xd8,0x3b,0x9f,0x13, +0x1c,0x40,0x83,0x50,0x21,0xb2,0x41,0x25,0xfa,0x5c,0x1f,0x04, +0x29,0x59,0xce,0xe2,0xac,0xa8,0x18,0x0b,0x98,0x11,0xaf,0xa0, +0xcf,0x1a,0x67,0x06,0x8f,0xa8,0x80,0x19,0x53,0x97,0x9c,0x52, +0xab,0xda,0xc5,0x4a,0x92,0x15,0x76,0xa1,0x19,0x1b,0x74,0x34, +0x36,0x53,0x9e,0x8b,0x7e,0x67,0xd2,0xc9,0x76,0xdc,0x76,0x48, +0xe1,0x27,0x38,0xce,0x1e,0x72,0x0b,0xf6,0x0c,0xf2,0x6d,0xf6, +0xe2,0xf3,0x2a,0xf2,0x9b,0x53,0xbb,0xb9,0x3a,0xac,0xb8,0x02, +0x14,0x57,0x9e,0x19,0x36,0xc0,0xbd,0x78,0x12,0x37,0xb2,0x18, +0xe7,0x83,0x4b,0x56,0xe1,0x64,0x95,0x16,0x27,0x85,0xd7,0x40, +0xca,0x60,0x13,0xe4,0x2b,0x03,0xc3,0xe2,0xb7,0xa2,0x3b,0x91, +0x7e,0x85,0x01,0xb2,0xf0,0xbe,0x3f,0x59,0xe1,0xc1,0x78,0x18, +0x27,0xe6,0xe1,0x38,0x46,0xfa,0xdd,0x1b,0x62,0x8c,0xf5,0x9b, +0xa1,0xde,0x04,0xeb,0x51,0x62,0x26,0x0c,0x74,0xa1,0x3a,0x73, +0xbf,0x5d,0xbe,0xb3,0xf0,0x5a,0xf6,0x65,0xf3,0x4c,0x3e,0x58, +0xc7,0x7b,0xa7,0xbb,0x31,0x87,0x49,0xc7,0x48,0xe8,0x15,0xff, +0xeb,0xfe,0x83,0x96,0xc1,0x7c,0x9e,0x41,0x9e,0x7a,0x9a,0x06, +0xd5,0x5d,0x13,0x69,0x03,0x91,0x4d,0x15,0xac,0xa4,0x53,0x59, +0xb1,0x52,0xa6,0x46,0x28,0x00,0xa9,0x92,0x1d,0x1b,0xfa,0xc8, +0x4a,0xf5,0x85,0x70,0x82,0x0f,0x61,0x3a,0x3c,0x64,0x64,0xfa, +0x1e,0x04,0xd6,0x8b,0x25,0xb8,0x9e,0x91,0xea,0xcb,0xb7,0xff, +0x3e,0x84,0x19,0xb4,0x18,0x1f,0xca,0x67,0x5d,0x1f,0xe2,0x6c, +0xa4,0xe7,0x6b,0xb1,0x8d,0xc0,0xb8,0x96,0x47,0x03,0x57,0xaf, +0xda,0xd5,0xf2,0x7a,0xda,0x6b,0x8d,0xe7,0x3a,0x70,0xc2,0x3c, +0xf8,0x9c,0x0c,0x5b,0xff,0xa8,0xd9,0x63,0x5c,0xd7,0xcc,0x1b, +0xf7,0xa8,0x5d,0xd2,0x69,0xa2,0x95,0x4e,0xa1,0x82,0xd1,0x90, +0xd2,0x98,0x59,0x97,0x93,0x13,0x96,0x1d,0x96,0x19,0x1e,0x1c, +0x16,0x18,0xea,0x1f,0xee,0x9d,0xe1,0x9b,0x1a,0x90,0xe4,0xed, +0xc5,0x67,0x45,0x66,0x47,0xe4,0x44,0x78,0x84,0xba,0x85,0x3b, +0x47,0x66,0x3b,0xf1,0x8d,0xc9,0x0d,0x19,0xb5,0xd9,0x05,0x21, +0x79,0x21,0xd9,0xa1,0xc5,0xa5,0x7c,0x48,0x6a,0x10,0xfd,0x14, +0xa6,0xe7,0x65,0x66,0x65,0xfa,0x16,0xf1,0x29,0xa9,0x07,0x93, +0x83,0x93,0x83,0x52,0x94,0xf2,0xd3,0x72,0xd3,0xb2,0x32,0xf6, +0x97,0xf0,0x81,0xc1,0x3e,0x21,0x5e,0x21,0xde,0x19,0xfb,0xd3, +0xfc,0x92,0x7c,0xbc,0xf8,0x9c,0xa8,0xdc,0xf0,0xbc,0x70,0xf7, +0x50,0x97,0x30,0xe7,0x48,0x0e,0x6b,0x71,0x17,0x79,0xdc,0x5e, +0xd9,0x1c,0xdb,0xcb,0xc5,0xe2,0xaa,0x76,0x60,0x99,0xf3,0x31, +0x67,0xcf,0x9f,0x50,0xb9,0xad,0x55,0x52,0xba,0xed,0xca,0xe1, +0xb8,0xa3,0xa7,0x8e,0x1e,0x53,0x8a,0x3e,0xac,0x70,0xbc,0xe9, +0x43,0xc3,0xbc,0x3b,0x16,0xdb,0x51,0xd5,0x1e,0x26,0x31,0x21, +0xe6,0xf6,0x76,0x9b,0x6c,0x39,0xe1,0xa5,0x07,0xb9,0xd1,0x91, +0x57,0x17,0xdb,0x4e,0x2f,0x5e,0xd9,0x01,0x2b,0x63,0x99,0x38, +0x49,0x93,0xed,0x43,0xd3,0x92,0x3a,0x7e,0x67,0xa3,0x61,0x7b, +0x40,0x0b,0x07,0x53,0x1b,0x70,0xc1,0x1d,0xf3,0xed,0x38,0xc9, +0xfe,0x23,0x13,0x6a,0xeb,0x68,0xad,0x61,0xc7,0x41,0xa7,0x3c, +0xb7,0xcc,0x52,0x59,0x17,0x52,0xe8,0x70,0x1a,0xc6,0x12,0x0d, +0x34,0xb8,0xc2,0xc2,0xc9,0xa9,0x60,0xa4,0x81,0x46,0x0c,0x9c, +0x9e,0x7a,0x05,0x1c,0x35,0x58,0xdd,0xbd,0x64,0x27,0xe6,0x4b, +0x20,0x1f,0x23,0x51,0x85,0x4d,0xb1,0xf8,0xb4,0xcd,0x3e,0x53, +0x9e,0xdd,0xc4,0xef,0x63,0xe7,0x77,0xb7,0x58,0xfc,0x0f,0x9e, +0x23,0x10,0x2a,0x2a,0xe0,0x03,0xf6,0xc0,0xa9,0xa0,0xd3,0x41, +0xa7,0x63,0xa9,0x0d,0x9b,0x9d,0x00,0x13,0x13,0x81,0xc9,0x48, +0x3d,0x98,0x12,0x92,0x1c,0xda,0x58,0xc4,0xbb,0x34,0xdb,0x76, +0xd8,0xd5,0x72,0x65,0x30,0x9d,0x60,0x5c,0x17,0xc4,0x31,0x18, +0xb7,0x9c,0x40,0x9c,0x31,0xc6,0x31,0xc2,0x84,0x64,0x52,0xe9, +0x56,0xb2,0xaf,0xc4,0xa6,0xb1,0x84,0xf7,0xad,0x77,0x6b,0x74, +0xa9,0xe4,0xc4,0x35,0xab,0x09,0x38,0x32,0x6e,0x41,0x69,0xe1, +0xa9,0xa1,0x69,0x61,0x4a,0xbb,0x0f,0xef,0x3a,0xa2,0x76,0x8c, +0xfb,0xaf,0xdc,0x24,0x1b,0x31,0xf3,0xa1,0xfe,0x46,0x3c,0x6f, +0x0a,0xe7,0xb5,0x07,0xff,0x2b,0x4d,0x55,0x56,0x37,0x66,0x31, +0x30,0x1e,0xc7,0x51,0xae,0xf2,0x29,0xfb,0x9e,0xa8,0x45,0x1f, +0x4c,0x1e,0xdd,0xf9,0x15,0xd3,0x99,0x9e,0xd6,0xa1,0x2a,0x6c, +0x95,0x6f,0x6a,0x5b,0xca,0x62,0xbd,0xf8,0x15,0x11,0x57,0x32, +0x67,0xca,0xce,0x94,0x95,0x29,0xdf,0x12,0x94,0x40,0x5d,0x34, +0x95,0xbf,0xb0,0x79,0x56,0x34,0x7e,0x69,0x88,0x0a,0x2a,0x5d, +0x8e,0x75,0x4f,0x32,0x9f,0xc7,0xbd,0x50,0x02,0x5d,0x0c,0x5c, +0x22,0xdf,0x1e,0x70,0x97,0x69,0x4e,0x49,0x6d,0x50,0x05,0x4f, +0x50,0x67,0x37,0xc2,0xef,0x44,0x0d,0x1f,0xde,0x67,0x85,0x09, +0xa8,0x4f,0xf0,0x85,0x39,0xbc,0x60,0xc0,0x0d,0x77,0x10,0x9f, +0xfb,0xce,0xd7,0x1d,0x46,0x2d,0x83,0xf8,0x1a,0xad,0x5a,0xf5, +0x82,0x2d,0x9c,0xe8,0x51,0x49,0x0e,0x1a,0xf9,0x59,0xba,0x9a, +0x37,0x79,0xf1,0x35,0x7d,0x85,0x7d,0x69,0xfd,0x1c,0x68,0x1f, +0x27,0x85,0xd6,0x05,0x26,0x19,0xa6,0xed,0x59,0xfc,0x81,0x01, +0x9f,0x0e,0x1f,0x2a,0x78,0xaf,0xe4,0x33,0xe4,0x97,0x85,0x8d, +0x1b,0x99,0x8c,0xf2,0x8c,0xba,0x44,0xf9,0x0c,0xf9,0x7a,0x36, +0x2e,0xe7,0x42,0xee,0x85,0x5c,0x93,0x58,0x3e,0x70,0xbe,0xcd, +0xe2,0xdd,0x5b,0xaa,0x9d,0xf9,0xf4,0x2c,0x05,0x61,0x3e,0x5c, +0x24,0x58,0x20,0x2c,0x86,0x02,0x16,0xff,0x42,0x86,0x5c,0x83, +0xee,0x3d,0xac,0x58,0x92,0x45,0xa2,0xf6,0x87,0x38,0x1d,0xa0, +0xbc,0x68,0x2a,0x93,0x55,0x96,0x51,0x91,0x5a,0xc5,0xc9,0x27, +0x9c,0xc8,0x4d,0xe8,0xde,0xc5,0xca,0xcc,0xe4,0x93,0x3f,0xfc, +0x03,0xe4,0xd9,0xd6,0xa9,0xc0,0x3f,0xa2,0xc7,0x3f,0x5a,0xe4, +0x30,0x3e,0x0c,0xf4,0x58,0x7c,0x6f,0x4f,0xe6,0xad,0xf8,0xc0, +0x42,0xe4,0x3c,0xb2,0xe4,0xc3,0x1b,0xa6,0x6d,0x1e,0xf9,0xf0, +0xfb,0x3c,0x56,0x76,0x94,0x0e,0xce,0xac,0x07,0x38,0x4b,0x7e, +0xc9,0xac,0x47,0xf4,0x28,0xfc,0x81,0xd9,0x44,0x2d,0x4d,0x3b, +0xcb,0x24,0xf7,0x76,0x53,0x57,0x57,0x65,0x1f,0xe5,0x9a,0xd6, +0x96,0x02,0xcf,0xba,0xd9,0x5b,0x39,0x6a,0xb8,0x18,0x96,0xda, +0x56,0x3a,0xd6,0xda,0x79,0xf3,0xd5,0xfb,0xea,0x5d,0x3b,0xbc, +0x0c,0xfd,0x77,0x07,0xad,0x0b,0x4b,0xb7,0xe0,0xdf,0x67,0x3e, +0x2a,0xbc,0x56,0x3e,0xe2,0x79,0xd7,0xf7,0x5d,0x20,0x27,0xfe, +0x0e,0x51,0x24,0xcd,0x31,0xcd,0x36,0xc9,0xb2,0x21,0x95,0x0f, +0x6f,0x0b,0x6d,0x0a,0xa9,0xe6,0xb0,0x1d,0x4f,0x91,0x8a,0x91, +0xfc,0xc7,0x09,0xf7,0xad,0x13,0xf8,0x48,0xf5,0xc0,0x1d,0x6e, +0xfa,0x1c,0x04,0x82,0x21,0x49,0x95,0x24,0x1a,0xc7,0x6b,0xb6, +0x50,0x37,0x3f,0x12,0xde,0x17,0xd6,0xc9,0xe1,0x57,0xe1,0x24, +0x4e,0xfb,0xfc,0xae,0x33,0x7b,0xdb,0xe3,0xf8,0x53,0xd7,0x8f, +0x5d,0x8d,0xbe,0x44,0xf1,0x69,0x36,0xd8,0x92,0x16,0x60,0xf3, +0x41,0x29,0xe1,0xd3,0x5c,0xe6,0x42,0x36,0xf1,0x7f,0xe6,0x32, +0xa3,0xe5,0x73,0x99,0xb3,0x0d,0x5e,0x31,0x21,0xb3,0xfd,0xbf, +0xf3,0xde,0xd0,0xe2,0xd2,0xe4,0xdc,0xe4,0xe8,0xac,0x26,0xd9, +0xb5,0x47,0xb3,0xca,0x82,0xbf,0x7e,0xad,0xe7,0x76,0xdd,0xa3, +0x6a,0xd7,0x6a,0xe7,0x1a,0xfb,0xaa,0x56,0xde,0xae,0xc5,0xb1, +0xde,0xa9,0x9a,0x93,0xee,0x86,0x30,0xd2,0x87,0x3a,0xec,0xb5, +0xbb,0x83,0x4f,0xbb,0x7e,0xb1,0x2c,0xe1,0xf5,0x70,0xdc,0xee, +0xc5,0x1b,0x36,0x70,0x66,0xb0,0x14,0x36,0xf7,0xe2,0x66,0x98, +0xa9,0x87,0x33,0x51,0xc7,0x18,0x74,0xa8,0xa8,0x39,0x19,0x41, +0x12,0xb3,0x71,0xd7,0x52,0x9d,0x99,0x26,0xa5,0x26,0x7c,0x7d, +0x6e,0x5d,0x6e,0x75,0x1e,0x87,0x41,0xec,0xd6,0x3c,0xff,0x7b, +0xf2,0x1d,0x9f,0xed,0x29,0x69,0x2d,0xaa,0x30,0x83,0x35,0xcc, +0x50,0xc0,0xf5,0x78,0x96,0xb5,0x3c,0x1a,0xdf,0xa8,0xfa,0x84, +0x85,0x6f,0xab,0x61,0xda,0xe0,0xdb,0x4b,0x6e,0x6d,0xfc,0x2a, +0x5d,0x64,0x4d,0xf1,0x0b,0x37,0x0e,0xc6,0xb3,0xbd,0x75,0x9d, +0x0d,0xad,0x94,0xa3,0x3e,0xa5,0x72,0x9c,0xf3,0x28,0xfb,0x55, +0xfa,0x1b,0xee,0x77,0xf9,0xf4,0xe7,0x01,0xe4,0x1c,0xbf,0xf3, +0x2c,0xf4,0x2a,0xf0,0xca,0xa5,0xcf,0x3c,0x8e,0x9a,0x47,0x74, +0x61,0x31,0x2d,0x12,0x6d,0x34,0x51,0x55,0xa5,0xcb,0x4c,0xe1, +0x26,0x2c,0x4d,0x81,0x00,0x28,0x53,0x86,0xe5,0xd2,0xcc,0x5e, +0x56,0x9c,0x22,0x73,0x22,0xae,0x97,0x2d,0x6f,0x39,0xb6,0xd9, +0xf9,0xf2,0xd9,0x3e,0xf9,0x6e,0xb9,0x2e,0x96,0x01,0x7a,0xfe, +0xba,0x41,0x1c,0x9c,0xa4,0x38,0xfd,0x3d,0x56,0x8a,0x1f,0x59, +0xff,0xa3,0x01,0x47,0x03,0x8e,0xa5,0x18,0xf0,0x30,0xbe,0x14, +0x26,0x34,0x3f,0xa9,0xbf,0x18,0x1e,0x17,0x11,0x17,0x4e,0xfd, +0x8f,0x09,0x31,0x65,0xfc,0x8f,0x5e,0xcc,0x53,0x85,0x00,0xeb, +0x7f,0x65,0x31,0x9f,0x62,0xc4,0x4e,0x5c,0xc4,0x24,0x5e,0x8d, +0xfd,0xe1,0xec,0x33,0x0e,0xd8,0x4e,0x7c,0x8e,0x55,0x76,0x12, +0xd8,0xcb,0x38,0xe3,0x9a,0x2d,0xf3,0x70,0xe6,0x8a,0x2a,0x09, +0x0f,0x93,0x7e,0xbc,0xff,0xba,0x15,0x94,0x39,0x74,0x65,0x8d, +0x72,0x43,0x3a,0x54,0x46,0x98,0xca,0xd4,0xd4,0x7a,0x55,0x18, +0xc3,0x5a,0xa4,0x2a,0x88,0x7b,0x04,0x25,0x8a,0x4f,0xde,0xc1, +0x0e,0x06,0xf4,0x4e,0x52,0xc3,0xcc,0x9c,0x5a,0x75,0x6c,0x5b, +0xa4,0x06,0xb7,0x82,0x41,0x7c,0x4e,0x60,0xc7,0x5c,0x0a,0x5e, +0x28,0x08,0x96,0x7a,0x90,0xc5,0x4c,0x51,0xb3,0x5d,0x8e,0x55, +0x96,0x45,0x9a,0xd2,0x7e,0xdb,0xae,0x90,0xc6,0x90,0x86,0x00, +0x25,0x74,0x80,0x31,0xba,0x38,0x06,0x8b,0x8c,0xa0,0x68,0x31, +0xc6,0xca,0xbe,0x1d,0x82,0xb3,0x60,0x86,0xd1,0x43,0x10,0x0d, +0xf6,0xa8,0x85,0x8a,0x4c,0xb2,0x91,0xc2,0x07,0xa6,0x35,0x2b, +0xab,0x4d,0x55,0x18,0xc4,0x8c,0xb7,0xd0,0xc7,0xca,0x3e,0x80, +0x02,0x19,0xf2,0xec,0x76,0xed,0x70,0x2a,0x6b,0xe7,0x2d,0x6b, +0x0d,0x6a,0x0c,0x8a,0x39,0x98,0x8e,0xff,0x21,0xa6,0x0d,0xea, +0x2d,0x9a,0xe5,0x1e,0x16,0xfc,0x65,0xd7,0x4b,0xf6,0x7d,0xb6, +0x1c,0xfc,0xe7,0x20,0x41,0x33,0xe0,0xa8,0xc7,0x1c,0x42,0x8e, +0xd0,0x13,0x7b,0x4a,0xfa,0x45,0x3b,0xea,0x4c,0xcc,0x70,0x02, +0x9a,0x31,0x10,0x07,0x13,0x08,0x2d,0x9c,0x80,0xf6,0x8c,0xd8, +0x8a,0xed,0xe4,0x87,0x3f,0x86,0x41,0xa9,0xea,0xa3,0x71,0x2e, +0xef,0x84,0x63,0x4d,0x91,0xdb,0xba,0x90,0x32,0x60,0x53,0x2f, +0x32,0x1f,0x4c,0xbd,0x61,0x23,0x8c,0x28,0xc3,0x58,0x36,0xfb, +0x42,0x56,0x6c,0x46,0xac,0xc7,0x20,0x8f,0xda,0xda,0x98,0x13, +0x8e,0xe7,0x4f,0x71,0xf8,0x05,0x8b,0xdd,0xe1,0xa8,0xb1,0x00, +0xd5,0x55,0xfa,0x5d,0x14,0x60,0x1c,0x58,0xc7,0x83,0x16,0x5c, +0x53,0xee,0x63,0xef,0x9c,0xbd,0x7f,0xf6,0xc1,0x05,0x4e,0x36, +0x9d,0xdd,0x7a,0x78,0xcb,0xd1,0xdd,0xc7,0x12,0x74,0x79,0x50, +0x4d,0x04,0x8d,0x2c,0x98,0x5e,0x90,0xe0,0x71,0xd1,0x33,0xd6, +0xaf,0x3f,0x8b,0xf7,0x7f,0x6d,0x09,0xd3,0xbd,0xaf,0x99,0x04, +0xf3,0x29,0xae,0x59,0x86,0x19,0x06,0x56,0x87,0x4d,0x8f,0x18, +0x1f,0xe1,0xa4,0x4a,0xec,0xb3,0xb8,0xc7,0xf1,0x77,0x53,0x39, +0x8a,0x02,0x2e,0x15,0xa2,0x01,0x8c,0x41,0x17,0x15,0x45,0x58, +0xa4,0x49,0x84,0x62,0x68,0x85,0xe7,0x88,0x32,0x29,0x2b,0x3d, +0x9b,0x4c,0x5a,0x33,0xd2,0x6b,0x54,0xa5,0x35,0xe2,0xe7,0xf8, +0x1c,0x46,0x45,0x27,0x5c,0xcb,0x26,0x18,0x2b,0x88,0x2d,0x54, +0xa8,0x20,0x72,0x2d,0x46,0x32,0x82,0xe9,0x53,0x02,0x31,0x6b, +0x31,0x86,0x11,0x4d,0xcd,0x69,0xd9,0xb2,0x4f,0x65,0xaf,0x68, +0xd9,0x32,0x5a,0x06,0x0b,0xc5,0x48,0xd2,0x89,0x41,0xb4,0xdd, +0xfa,0xed,0xa8,0xff,0x01,0x9c,0x3b,0x45,0x2f,0x09,0xd8,0xcc, +0x43,0x2d,0x0b,0xd0,0xc2,0x71,0xb8,0x5f,0xc2,0x2a,0x4a,0x1b, +0xa8,0x02,0x5f,0x7e,0x0e,0x32,0x54,0x1b,0x04,0xff,0x0e,0xdc, +0xc1,0x66,0x16,0x64,0x95,0x27,0xe7,0x9b,0x66,0xf1,0x61,0x6e, +0x81,0xce,0xfe,0xd4,0x54,0xed,0x65,0xaa,0x33,0xc3,0x0a,0xbd, +0xeb,0x83,0x73,0x94,0x6c,0x7c,0xd2,0x0f,0xe4,0xbb,0xa6,0xfa, +0x28,0xe1,0x66,0x73,0x70,0x66,0x02,0x4f,0x87,0x9c,0x3e,0xa8, +0x82,0x9b,0x50,0x06,0xa0,0x29,0x2e,0xb6,0x10,0x16,0x53,0x3d, +0x9b,0x2d,0x5f,0x9f,0x83,0x29,0x4c,0x53,0x72,0x66,0xa3,0x2a, +0x7c,0x07,0x8b,0xdb,0x59,0x59,0x3f,0x6e,0x27,0x1f,0x41,0x8d, +0xa2,0x83,0x20,0xf9,0xf4,0xc4,0x56,0x90,0x87,0x40,0x0b,0x15, +0xa0,0xc0,0x08,0x6a,0xfb,0x88,0xfe,0x5e,0xf6,0x6c,0xfa,0x99, +0xcc,0x6c,0x65,0xa3,0xef,0xc8,0x21,0x13,0x5f,0x3f,0x13,0x8f, +0x5c,0x47,0xfe,0x7a,0x5d,0x45,0x75,0xf2,0x5d,0xee,0xb6,0x11, +0xe3,0x98,0x4e,0xa1,0xf5,0x47,0x33,0x71,0x26,0xa8,0x31,0xc2, +0x4c,0x75,0xb2,0x9c,0x39,0x78,0xec,0x5c,0x86,0x6a,0x1b,0x70, +0x2c,0x7a,0x8e,0xa7,0xe5,0x5d,0xec,0x09,0xcc,0x20,0xf5,0xde, +0xb5,0xae,0x65,0xee,0xb5,0x35,0xbc,0x47,0xb9,0x43,0xa5,0x63, +0x3e,0xd5,0xbe,0x45,0xd2,0xd3,0x44,0x4f,0x6a,0x30,0xc4,0x3e, +0xc6,0x87,0x64,0x48,0x26,0xe8,0xc1,0x55,0xd6,0x0a,0xbf,0x32, +0xc2,0x49,0x6a,0xf8,0xdd,0xbe,0xd3,0x4e,0xa7,0x1c,0x4f,0xc7, +0xd1,0x71,0x4b,0x4c,0x80,0x93,0xc9,0xe0,0x5f,0x99,0xed,0x9e, +0xe5,0x96,0xe9,0xd6,0x5b,0xc6,0xab,0xc3,0xa4,0x35,0x30,0x79, +0xcd,0x9f,0x66,0xfb,0xf9,0x36,0xfd,0x56,0xed,0xe6,0xbd,0x38, +0x3f,0x08,0xd5,0x22,0x50,0xfb,0xf0,0x25,0xf8,0xba,0x0f,0x14, +0xba,0x61,0x0e,0xbd,0x7b,0xba,0xf0,0xfb,0xff,0x19,0xba,0xf7, +0x45,0x03,0xd1,0xc1,0x63,0x58,0x0b,0xc7,0x76,0x62,0xad,0x29, +0x54,0x2f,0x1e,0x7a,0x0b,0xed,0xdd,0xd8,0x79,0x0b,0xbe,0xa7, +0xa4,0xfa,0xfb,0x11,0x88,0x48,0x1d,0x82,0x2d,0x32,0x25,0xdc, +0x32,0x18,0xc6,0x0a,0x59,0xf0,0x2d,0x75,0x51,0xe1,0xbd,0x06, +0xc6,0x18,0x71,0x9f,0x85,0x43,0x38,0x4a,0x50,0xeb,0xda,0xa7, +0x74,0x7b,0x7b,0x08,0xea,0x5f,0x03,0x7d,0x46,0x54,0x16,0x8f, +0xfd,0xdf,0x04,0xd0,0xc5,0x3d,0xfc,0xdf,0x02,0xe8,0x3a,0x84, +0xaf,0x08,0x68,0x6d,0x43,0x7a,0xa3,0x23,0x77,0x09,0xe8,0x6f, +0x43,0x7d,0x46,0x51,0x70,0x90,0x4e,0x22,0x78,0x74,0x18,0x8e, +0xc2,0x1b,0xd4,0x19,0x82,0x48,0x71,0xfe,0x75,0x61,0x42,0xb7, +0xac,0xd4,0x14,0x84,0xdd,0xe2,0xb7,0x18,0x39,0x04,0x3a,0xec, +0xa0,0x31,0xb1,0x04,0x87,0x36,0x16,0x74,0xa6,0x5a,0x82,0x4f, +0x1b,0x2b,0xce,0xc7,0xe5,0xa4,0x1d,0x1d,0x2c,0xa8,0x5f,0x99, +0xda,0x8e,0xde,0x16,0x2c,0xd4,0xcb,0x83,0xfb,0x65,0x87,0x24, +0xac,0x74,0x10,0x95,0x48,0xd7,0x3f,0x5f,0x98,0x41,0x29,0xeb, +0x69,0xe9,0x64,0xec,0x60,0x69,0x7b,0xca,0xf6,0xb4,0xcd,0xe9, +0x0b,0x46,0x3c,0x1c,0xbf,0x08,0xa7,0x12,0xc0,0x37,0x3b,0xfb, +0x40,0x66,0x70,0x7a,0x48,0x7b,0x05,0x6f,0xd4,0xb3,0xe5,0x96, +0x46,0x87,0xa5,0x27,0x5f,0x18,0x54,0xe2,0x57,0xe2,0x8b,0x33, +0xa2,0x70,0xf1,0x11,0x5c,0x75,0xac,0xa2,0xb1,0xba,0xbb,0xac, +0x8b,0xe2,0x85,0x5d,0xf2,0x95,0xec,0x85,0x98,0x29,0x5f,0x69, +0xff,0xde,0x08,0xbe,0x5f,0x3e,0xf4,0x12,0x32,0x97,0x0f,0xbf, +0x84,0xd4,0x3e,0x4c,0x65,0xc4,0x0d,0xb8,0x9a,0x48,0x50,0x69, +0xcf,0x2a,0xfc,0x6c,0x79,0xb5,0x05,0x5f,0x57,0x51,0x56,0x9e, +0x57,0xc8,0x89,0xdf,0x8c,0x08,0x8e,0x6c,0x59,0x47,0x71,0x5f, +0xce,0x30,0x07,0x3f,0xaf,0x21,0xcf,0x13,0x9e,0xa4,0xde,0xce, +0xf6,0xed,0xe2,0x71,0xa9,0x0d,0xea,0x85,0xa3,0xe5,0xb1,0x78, +0x23,0xfe,0xc7,0xb3,0x0f,0xcf,0x3f,0x88,0xe5,0x50,0x13,0x0b, +0x0d,0xa1,0x10,0x3d,0x31,0xc9,0x50,0x78,0xda,0x8f,0x19,0x14, +0x26,0xd4,0xf4,0x63,0x0d,0xab,0x08,0xe5,0xd2,0x7a,0x92,0xa2, +0x3e,0x68,0x08,0x13,0x35,0xe4,0x8b,0x35,0x8a,0x57,0xad,0x5b, +0xfc,0x06,0x38,0x6d,0xc6,0xcf,0x58,0x22,0xc1,0x6f,0x77,0xc9, +0xb7,0xcb,0x4f,0xbd,0x79,0xa9,0x2f,0xf5,0x36,0x27,0xdd,0x2a, +0xe3,0xc8,0xce,0x23,0x0a,0xc2,0xf5,0x6b,0xbd,0x62,0x98,0xf1, +0x35,0x51,0x64,0x7d,0x4f,0xfa,0x9f,0x3c,0x70,0xf2,0xa2,0x11, +0xff,0x28,0x11,0x16,0x64,0xc0,0xa4,0x14,0x0e,0xd5,0x87,0x41, +0x9b,0xbd,0x13,0xa7,0x80,0x33,0x04,0x27,0x82,0x07,0x60,0x15, +0x1c,0x60,0xc4,0x5a,0xb1,0x8f,0xe4,0xf8,0xe6,0xbb,0xe7,0xb9, +0x1a,0x85,0xe9,0x86,0x6b,0x1f,0xe2,0xc0,0x06,0xf2,0xe1,0x23, +0x4e,0xff,0x60,0x30,0x0f,0x67,0x88,0x43,0x6c,0xe0,0xf1,0x80, +0x93,0x81,0x27,0xe4,0x9b,0x17,0x26,0x65,0x01,0x93,0xf7,0xae, +0x38,0xcd,0x3f,0x25,0x20,0xf1,0x40,0x53,0x19,0xef,0x72,0x49, +0xf3,0x95,0x65,0x1f,0x37,0x0a,0x14,0x53,0x7b,0xbd,0x05,0x2f, +0x46,0xd0,0x88,0x20,0xd4,0x4b,0x1d,0x80,0xf5,0xac,0xb8,0x15, +0x79,0x02,0x5e,0xb3,0x91,0x96,0x6e,0xcd,0x20,0x70,0x80,0xda, +0x7e,0x3c,0xe0,0xa3,0xa0,0x28,0x44,0x09,0x32,0xb2,0xaa,0x1b, +0x54,0x31,0x64,0x10,0x6c,0xda,0xd0,0x66,0xc0,0x00,0xd5,0xd0, +0x06,0x55,0xbb,0x9f,0xb3,0xd2,0x9d,0xe2,0x2c,0x72,0x1f,0x66, +0xd5,0xc3,0xc6,0x64,0x70,0xe0,0x5a,0xe5,0x2c,0xee,0x06,0x7b, +0x08,0x77,0x7a,0x21,0xf5,0x99,0x93,0x4c,0x60,0xb2,0x37,0x28, +0x05,0xc3,0x62,0xdd,0x08,0x3e,0x07,0xb7,0x57,0xe3,0xa2,0x2b, +0x38,0xcd,0x5c,0x4d,0x73,0xd7,0xba,0xdd,0xe5,0xfa,0xfc,0xc3, +0xab,0x57,0x6e,0x76,0xdd,0x6f,0xda,0xda,0xb7,0xf3,0xfa,0x9e, +0xca,0x5e,0x7e,0xe7,0x4d,0x93,0xdb,0xf6,0xf7,0x38,0x19,0x03, +0x3d,0x04,0x92,0x5b,0x30,0x99,0x31,0x18,0xef,0xea,0x6e,0xe7, +0x69,0xe2,0x57,0x60,0xc7,0x77,0xe6,0x0f,0xd4,0x95,0x56,0x71, +0xc2,0x18,0x33,0xe2,0x50,0x61,0x5b,0x64,0x93,0xe5,0xed,0xca, +0xb7,0xf8,0xd6,0xfb,0x36,0xba,0x72,0x0d,0x6b,0x09,0xce,0xeb, +0xde,0x3e,0xb0,0xff,0x32,0x67,0xcc,0xf8,0xee,0x5d,0xb5,0x1b, +0xbf,0xb6,0xcc,0xb2,0xe2,0xfb,0x0b,0x14,0xf0,0x97,0xee,0x72, +0xc8,0x77,0xef,0x06,0x60,0xb3,0xa3,0x73,0xa3,0x73,0x0f,0x73, +0xa2,0x62,0x3f,0x19,0xac,0x6a,0x6d,0x88,0xeb,0x94,0x07,0x6e, +0x9a,0xb6,0x3a,0x5c,0x76,0xe5,0x30,0x73,0x2e,0x65,0xd5,0xf9, +0xfa,0xac,0xd3,0x78,0x3d,0xcc,0x1f,0x62,0xe7,0x8d,0x87,0x7c, +0xed,0x4f,0x2f,0x7d,0xad,0x91,0xba,0x92,0x90,0xe6,0xc0,0xe6, +0xc0,0x12,0x83,0x60,0x3e,0xdb,0x2d,0xd7,0x31,0xc3,0x8a,0x83, +0xb8,0x23,0xa4,0xb4,0xba,0xb8,0x31,0xb7,0x5e,0x27,0x93,0x0f, +0xb4,0x72,0x31,0x77,0xb1,0x95,0xe7,0x81,0x73,0x19,0x86,0x65, +0xd2,0x60,0x5c,0x36,0x0c,0xf2,0xd4,0xd7,0x65,0xc4,0xbf,0xd6, +0xa3,0xda,0x2f,0xcf,0xcc,0x9b,0x2f,0xde,0x5f,0xe8,0x99,0xef, +0xc4,0x09,0xf5,0xf2,0x2d,0x1a,0x91,0xe2,0x5b,0x8c,0x84,0x5c, +0xf6,0xb0,0x6f,0xa4,0x4f,0xb8,0x0f,0x87,0x03,0x78,0x73,0xb8, +0x49,0xf8,0xc7,0x76,0x04,0x6e,0x8a,0x1c,0x93,0x54,0x90,0x50, +0x10,0x2f,0x4f,0x3a,0x4c,0x59,0x1e,0x7e,0x29,0xfa,0xc1,0x97, +0xec,0x6e,0x31,0x88,0xc0,0x3a,0xe1,0x1f,0x5c,0xc7,0x2a,0xfe, +0x26,0x07,0x01,0x00,0x7f,0xd3,0xa7,0xb9,0x37,0x95,0x9e,0x88, +0xf4,0x44,0x3c,0x3c,0x8f,0xe0,0xa9,0x1e,0x38,0xc5,0x08,0x9a, +0x26,0x04,0xbf,0xef,0x81,0xef,0x19,0x51,0x13,0x57,0xd1,0xc2, +0x81,0x4f,0x85,0x06,0xb4,0x70,0x80,0x16,0xca,0xb6,0xce,0x21, +0x70,0x4a,0x0f,0x69,0xd9,0xde,0x21,0x02,0xdf,0xeb,0xe1,0xf7, +0x0c,0xce,0xc2,0x45,0x24,0x35,0xdd,0xad,0xd8,0x25,0xdf,0x25, +0x47,0xc9,0xd5,0xa5,0x34,0xa8,0x24,0xb0,0xd8,0x57,0xe9,0xa0, +0x7f,0x90,0x9f,0xbf,0x2f,0xe5,0x28,0x66,0x10,0xc9,0xb8,0xba, +0x39,0xb9,0xda,0xba,0xdf,0x0a,0x7f,0x1d,0xfc,0x47,0xe0,0xfc, +0xfd,0xf8,0x55,0x18,0xae,0x3b,0x22,0x5f,0x30,0x94,0xc4,0xc1, +0xf2,0x02,0x98,0xd4,0x09,0x9c,0x2f,0x28,0xee,0x07,0x05,0xaf, +0x82,0x0e,0x7e,0x4e,0xc1,0x9c,0xfc,0x85,0xd9,0x23,0x35,0xed, +0xad,0xd5,0x83,0x1c,0x6c,0xe8,0x12,0x63,0x99,0x9c,0xc2,0xac, +0xc2,0xf4,0x7c,0x0e,0x8b,0xff,0x20,0x2e,0x1e,0x66,0xae,0xba, +0x81,0xc5,0x56,0xfc,0x70,0x7e,0x5f,0x55,0x6d,0x0d,0x27,0x7c, +0x5d,0x45,0xbc,0x3c,0xad,0x3d,0x6c,0x02,0x2b,0x6d,0xf9,0x86, +0x9c,0x8e,0xca,0x8a,0x6a,0xee,0xc9,0x71,0xd2,0xe9,0xdd,0xe1, +0xd9,0xe1,0x52,0xde,0xc4,0x9b,0x57,0x9a,0x97,0x98,0xe7,0x73, +0xcb,0x31,0x9a,0x38,0x98,0x48,0x1c,0x34,0xbc,0x56,0x66,0x6c, +0x48,0xdf,0x95,0x54,0x9c,0x57,0x98,0x9f,0x5f,0xc0,0xc9,0x93, +0x35,0xdc,0x22,0x1a,0x8b,0x96,0x6d,0xc4,0x71,0xfa,0x95,0x54, +0xd4,0xb9,0xd1,0xdf,0xde,0x5c,0xfb,0x95,0x13,0x2f,0xe3,0x23, +0x72,0x15,0x2c,0xa1,0x58,0xb4,0xc4,0x62,0x30,0xd9,0x8b,0x27, +0x4c,0x85,0xd6,0x6e,0x76,0x26,0xb4,0x52,0x8b,0xfa,0x74,0x84, +0x95,0x07,0x67,0x13,0x4d,0x7c,0x7a,0x99,0x95,0xfa,0x6d,0x23, +0x7b,0x16,0xcc,0x9a,0x8f,0x9c,0x56,0x95,0x21,0x0f,0x5f,0xdd, +0x85,0xcf,0x60,0xec,0x8d,0x0f,0x9c,0x38,0x07,0xf5,0x88,0xb8, +0x07,0xd5,0xc1,0x00,0xf5,0xa9,0x17,0x32,0x54,0xf8,0xf1,0xdf, +0x39,0x72,0xd8,0x45,0xb5,0x51,0x07,0xbe,0xa6,0xb6,0x76,0xe8, +0x3e,0x2b,0x0d,0x39,0x46,0x36,0xe0,0xe7,0xf8,0x15,0x7e,0x81, +0x8b,0x77,0xd4,0x50,0x4c,0xb5,0xe4,0x07,0x98,0x06,0xfc,0x4f, +0xc0,0x73,0xb2,0x42,0x8a,0xd5,0xbd,0xcc,0x2d,0x2c,0x8c,0x9c, +0xe9,0xc3,0x0d,0xd7,0xf5,0x0d,0x17,0x77,0x70,0x60,0x78,0x84, +0xd4,0x3a,0xd5,0x58,0x15,0x39,0x34,0x55,0xf2,0xde,0x0d,0xfb, +0x9a,0xec,0xe5,0x59,0x69,0xa6,0x09,0x9f,0x11,0x18,0x42,0x3f, +0x58,0xa7,0x87,0xeb,0xd0,0x05,0x87,0x2c,0x8d,0xe0,0x0c,0xeb, +0x8b,0xdf,0xac,0x5b,0x8c,0xdb,0xe7,0x94,0xd2,0xdb,0x6a,0xc0, +0xf8,0xdf,0xe1,0xcb,0x58,0x8a,0xb1,0xe4,0x19,0xdb,0xa6,0xfe, +0x8c,0x9f,0xc3,0x26,0x54,0xac,0x1c,0xe0,0x71,0x31,0x8c,0x59, +0xff,0xc2,0x1b,0xbe,0xe1,0x20,0xab,0x8f,0xf9,0x67,0xa2,0xa0, +0x49,0x64,0xd7,0xa9,0xa5,0xb3,0x93,0x06,0xb1,0x06,0x78,0x87, +0x6a,0x05,0x64,0xc0,0x3c,0x06,0x8c,0x70,0x2a,0x81,0x45,0x68, +0xcd,0x1c,0x3c,0x1d,0x7a,0x3a,0x4c,0x05,0x17,0x30,0xe0,0x0a, +0x31,0x04,0xd6,0x60,0x0c,0xae,0x62,0x4e,0xa7,0x9e,0x4e,0x4b, +0x57,0x16,0x1b,0x2f,0x12,0x98,0x87,0x7d,0x38,0x8f,0x51,0x94, +0xfe,0xe7,0x30,0x59,0x5f,0xa8,0x59,0x6f,0xde,0xd3,0x55,0xda, +0x5a,0x55,0xdf,0x64,0x5f,0xc3,0x3b,0x3a,0xd8,0xb8,0x59,0xec, +0xf7,0xad,0x09,0x6a,0x08,0x6d,0xe5,0xa0,0x51,0xd8,0x8d,0xef, +0xe1,0x33,0x1d,0xfc,0x0c,0xef,0x88,0xbb,0x85,0x89,0x4c,0x86, +0x41,0x9e,0x69,0x99,0x35,0xce,0xdd,0x8d,0xea,0x9e,0x68,0x17, +0x96,0xa2,0xcd,0x83,0x6d,0x3a,0x18,0x54,0xc1,0x8a,0xfb,0x5d, +0xfa,0xd7,0xad,0x7f,0xf2,0xec,0x0e,0x6e,0x88,0xb9,0x30,0x92, +0x06,0x1b,0x79,0x93,0x5c,0x05,0x51,0x4f,0x88,0x20,0x67,0x6c, +0xce,0xda,0xc5,0xd8,0x53,0xe5,0x03,0x25,0x06,0x1e,0x51,0x0f, +0x70,0xa2,0xe1,0x54,0xe3,0xe9,0x66,0x0e,0xaa,0x50,0x89,0x11, +0xff,0xa0,0x20,0x2c,0x8f,0xb9,0x60,0x15,0x67,0x93,0x40,0xff, +0xd3,0xce,0x80,0x6c,0x6a,0x54,0xc3,0xe1,0xe6,0x63,0xb4,0xf2, +0x3c,0x9c,0x41,0x55,0xb3,0x55,0xaa,0x4b,0x82,0xba,0xbd,0x06, +0xbd,0x1b,0x0c,0xfc,0xf8,0x12,0xab,0x62,0x93,0x4c,0x53,0x4e, +0x98,0xa0,0x46,0x70,0xea,0x08,0x1d,0x36,0x53,0xb6,0xba,0xa5, +0x76,0xb8,0xb0,0x47,0xb7,0x80,0xf7,0xd6,0xb1,0xdf,0x63,0x65, +0x20,0xdf,0x4b,0x66,0x30,0x0c,0x53,0x19,0x50,0x7b,0x43,0xbc, +0xdb,0x5d,0xba,0xdd,0xab,0x4d,0x3c,0xf9,0x4a,0x87,0x4a,0xf3, +0x7c,0x1b,0x4e,0xba,0x03,0x87,0xc8,0x90,0xb8,0x18,0x88,0x36, +0x12,0x51,0x59,0x0f,0x44,0xd6,0x04,0xc7,0xe3,0x67,0xcb,0x30, +0x78,0x76,0xa9,0x3e,0x0f,0x31,0xa0,0xf8,0xe2,0x7e,0x2d,0xa8, +0x70,0xb1,0xa2,0xca,0xa8,0xa0,0x72,0x81,0xa9,0x45,0x95,0xbf, +0xe4,0xc1,0x75,0x5f,0x14,0x53,0x98,0x17,0xfe,0x11,0x3f,0x7f, +0x65,0x0c,0xe3,0xa9,0x48,0xea,0x49,0x8f,0x93,0x39,0x05,0x38, +0x3d,0x1f,0x97,0xa5,0x86,0x51,0x99,0xfc,0x2e,0x02,0x66,0xfa, +0xfe,0xe5,0xc3,0xf9,0x53,0xdd,0xff,0xe5,0xda,0xdb,0x9f,0xae, +0xbf,0xb5,0xa8,0xe6,0x77,0x2d,0x59,0xbf,0x71,0x89,0x96,0xf9, +0x1d,0xff,0x87,0x47,0x7f,0xe3,0xf0,0xbd,0x21,0x94,0x8a,0x03, +0x14,0x1b,0xc9,0x83,0xa9,0x16,0x30,0xdd,0x39,0xa9,0x3d,0xaa, +0xc2,0xb6,0x58,0x96,0xde,0xe2,0xed,0x12,0x28,0x45,0x35,0x79, +0xde,0x9b,0x79,0x0f,0xe7,0xdc,0xda,0x73,0x9f,0x13,0x1f,0xc3, +0x97,0xc4,0x10,0x8e,0xb3,0xfb,0xf1,0x9b,0xe5,0x0b,0x71,0xd5, +0x66,0x79,0xce,0xbc,0xdd,0xaf,0xdf,0x81,0x62,0x09,0x2c,0xe5, +0x5a,0xa9,0xff,0xe9,0x91,0x6a,0x13,0xf3,0x36,0x9d,0x0e,0x9d, +0x6a,0x37,0x5b,0x7e,0xd4,0xa1,0xd7,0xb6,0xc7,0x9c,0x13,0x0a, +0x9e,0x92,0xf5,0x15,0xc8,0x96,0xe3,0x17,0x99,0xf2,0x46,0x4d, +0x08,0x81,0x09,0x1e,0x4f,0xdc,0xb8,0x00,0x91,0x23,0xb7,0x46, +0xae,0x3d,0xed,0x7e,0x64,0x59,0xc1,0x9b,0x6f,0xd0,0xdf,0xae, +0x61,0xc4,0x59,0x3d,0x3f,0xf0,0xf3,0xcf,0xca,0x98,0x6a,0x04, +0xb6,0xe2,0x0d,0x54,0x66,0x52,0x8d,0xe4,0x0b,0xd6,0xf5,0x69, +0xe9,0x0d,0xaa,0x82,0x76,0x2c,0x9b,0x82,0x53,0x46,0x91,0x80, +0x29,0xae,0xac,0x6c,0xe7,0x97,0xde,0xd9,0x7d,0xd7,0xe2,0x2e, +0x27,0xca,0xc3,0xe5,0x6c,0x5a,0xb4,0x7b,0x0c,0x6a,0x5c,0x6c, +0xf9,0x7e,0xc7,0x7e,0x8b,0x76,0x4b,0xee,0x76,0x13,0x31,0xa5, +0xba,0xe2,0x85,0xb3,0xb6,0xcf,0xc7,0xe9,0x9b,0x4a,0x2d,0x69, +0x5f,0x3c,0x7b,0x0d,0xff,0x1f,0x65,0x6f,0x1d,0x5e,0xc5,0xf5, +0xbd,0x8b,0x63,0x99,0x19,0x2c,0x48,0xbb,0xe9,0x24,0xd0,0x04, +0x77,0x77,0xf7,0x00,0x81,0xb8,0xbb,0xbb,0x03,0x49,0x20,0x24, +0xc4,0x08,0xd0,0xa2,0x21,0xee,0xee,0xee,0xee,0x9e,0xe0,0x6e, +0xa5,0xd0,0x22,0xa5,0x14,0x29,0x54,0xd6,0x9c,0xae,0x39,0xfd, +0xdc,0x3d,0xf0,0xf9,0xde,0x7b,0x9f,0xe7,0xf7,0xfb,0xe7,0x3e, +0xe7,0x01,0x26,0x13,0xce,0x39,0xb3,0xb6,0xac,0xf5,0xbe,0x7b, +0xaf,0xfd,0xae,0xb1,0x65,0xb0,0x8b,0xab,0x67,0xf1,0x1d,0x2e, +0x25,0xde,0x38,0xca,0x01,0xc7,0x68,0xce,0x6b,0x75,0xe4,0xaf, +0xc2,0x88,0x06,0x98,0x96,0x2d,0xa9,0xb1,0x8e,0x3c,0x4e,0x0c, +0x72,0xcc,0xaa,0xed,0xfb,0x5b,0x8b,0x9a,0xca,0x9b,0x6b,0x1d, +0x6a,0x79,0x6b,0x07,0x6b,0x37,0x4b,0xcf,0x80,0x8a,0xa0,0xba, +0x90,0x16,0x0e,0x4e,0x0b,0x3b,0x68,0xbc,0x1d,0xad,0x4b,0x31, +0x79,0xac,0xb8,0x03,0x8a,0x99,0x04,0xad,0x54,0xe3,0x2c,0x4b, +0x1c,0xa9,0x81,0x93,0x6d,0x71,0x9d,0x5b,0x1a,0x35,0x70,0x7d, +0x19,0x90,0x7a,0x18,0x7d,0xad,0x7e,0x6f,0x8f,0xc5,0x35,0x8f, +0xaa,0x80,0xd2,0xd4,0xa8,0xfa,0x6c,0x58,0xc3,0x1b,0x65,0x29, +0x88,0x1f,0x85,0x16,0x62,0x52,0xa7,0x55,0xa7,0x55,0xec,0x66, +0xc6,0x0f,0x39,0x4b,0x59,0x11,0x1c,0x5c,0x97,0x36,0xe2,0x2c, +0x60,0x0a,0x58,0x30,0x90,0x46,0xe7,0x0a,0x3a,0xd0,0x6b,0x07, +0x86,0xb6,0x80,0x2d,0xd1,0x6f,0xde,0xd1,0xa6,0xf6,0x25,0xcf, +0xf3,0x9a,0x45,0xbf,0x19,0x07,0x73,0x6e,0x11,0xb0,0x64,0xce, +0x99,0x5e,0xb4,0xbc,0x44,0x47,0xa6,0x0b,0x03,0xd9,0x53,0x22, +0x6a,0x4f,0x37,0x9e,0x69,0x93,0x64,0x0b,0x54,0x19,0xf9,0x24, +0xbb,0x2f,0x09,0x9f,0xa3,0x77,0x2d,0x68,0xfd,0x3f,0x09,0x9f, +0x34,0x96,0x08,0xef,0xc8,0x4b,0x70,0x5a,0xd1,0xfd,0x12,0x94, +0x3a,0x51,0xe9,0xa5,0xfe,0x0a,0x74,0x7a,0xa9,0xb7,0x02,0x27, +0x1a,0xc2,0xc4,0x15,0x2c,0x2a,0x8a,0xca,0xc4,0x22,0x80,0xbe, +0x02,0x39,0x28,0x82,0x61,0x3d,0x38,0x0c,0x4e,0xc0,0xa8,0x1e, +0xac,0xd5,0x83,0xd1,0x78,0x02,0x87,0xeb,0xc1,0x70,0x6c,0x63, +0xed,0x82,0xed,0x42,0xec,0x42,0x13,0xa9,0x53,0x18,0x56,0xf8, +0xa9,0xe2,0x53,0x23,0x27,0x3c,0xe9,0x25,0x1d,0x7b,0x21,0x06, +0x5d,0x41,0x41,0x0f,0x15,0xd0,0x0a,0x63,0x76,0x19,0x41,0x2a, +0xeb,0x31,0x77,0xce,0x1e,0x5c,0xab,0x56,0x44,0x07,0x88,0xc6, +0x0f,0xef,0x1f,0x24,0xc1,0x04,0xee,0x12,0x93,0x88,0xe3,0x5f, +0xed,0x06,0xcd,0x95,0x45,0xed,0x3c,0xae,0xbe,0xbb,0xe0,0xaa, +0xf7,0xef,0x92,0x18,0x7d,0x34,0x81,0x39,0xa8,0xc3,0x1c,0xc7, +0x39,0x2c,0xc8,0xa6,0xe0,0xb2,0x44,0x06,0x74,0x60,0x19,0xab, +0x78,0x07,0x32,0x08,0x8c,0xfa,0xf9,0xee,0xef,0x15,0xf4,0xcd, +0x90,0xce,0xf8,0xda,0x78,0xd9,0x3b,0x38,0x9b,0x17,0x5a,0xe4, +0x59,0x65,0xb9,0xd9,0xf2,0x75,0x7e,0xf5,0x87,0x6a,0x7d,0xcc, +0x9c,0x0e,0xb8,0x6d,0xf0,0xce,0x32,0xe1,0x7f,0x29,0xbc,0x53, +0xdd,0xd3,0x58,0xeb,0x5d,0xed,0x51,0xe5,0x51,0x5a,0xcf,0x3b, +0x15,0x3a,0xe6,0x3b,0xe4,0xb6,0xb6,0x96,0x75,0x65,0x76,0x51, +0x8e,0x7e,0x93,0x8d,0xae,0xb8,0x58,0x75,0xbe,0x86,0x13,0x46, +0x32,0x27,0xec,0x7c,0x77,0x1f,0xa1,0xad,0xee,0xc0,0x7c,0xb7, +0xf7,0xe4,0x81,0x30,0x4b,0xce,0x2e,0xfc,0x78,0xa8,0xc5,0xd4, +0xf9,0x4c,0xb2,0x81,0xc2,0x53,0xe6,0x71,0x69,0xe6,0xcd,0x44, +0xd5,0xb8,0xce,0xa8,0xfb,0x17,0x60,0x34,0x87,0x9a,0x4c,0x6a, +0x5b,0xca,0x60,0x54,0x1d,0x27,0xdf,0x6e,0x40,0x89,0xe7,0x09, +0xdc,0xa3,0x89,0x4a,0xb8,0x0c,0xc7,0x71,0xb2,0x36,0x53,0x22, +0x3f,0x80,0x71,0x73,0xf5,0xff,0x99,0xda,0x3d,0x9d,0x11,0x8f, +0x81,0x0d,0x41,0x1b,0x9c,0x07,0x36,0x2c,0x00,0xda,0x48,0xba, +0x41,0x36,0x30,0x8f,0x32,0x3b,0x1b,0x4a,0xe1,0x60,0x19,0xda, +0xb0,0x8a,0x82,0xaa,0x90,0x47,0x1a,0x52,0x92,0xab,0x55,0x1f, +0xb0,0x7a,0x89,0x0a,0x4b,0xd0,0x8a,0x75,0x0a,0x8f,0xaa,0x50, +0x6d,0x67,0x7f,0x4b,0x86,0x11,0x05,0x3f,0x17,0xfb,0xb6,0xf2, +0x9b,0x3d,0x16,0x78,0x2f,0x0d,0xe4,0x3e,0x69,0xa3,0x0b,0xbb, +0x27,0xd7,0xf7,0x9e,0x0a,0x5c,0xa5,0x7c,0x52,0x4c,0x13,0xe6, +0x09,0x69,0xf4,0x33,0x92,0xca,0xe2,0xcb,0x63,0x4b,0x69,0x88, +0xee,0x12,0x3d,0x0d,0xc0,0x99,0x09,0x75,0x0b,0x76,0x39,0xe6, +0xc4,0x6d,0xc2,0x25,0xe4,0x77,0xa8,0x9d,0xcb,0x8a,0x17,0xb0, +0x8f,0x84,0xc5,0x45,0x9c,0x0f,0x0e,0x0b,0x09,0xe3,0x4f,0xf6, +0xc3,0xd6,0x76,0xdc,0xfa,0x27,0x33,0x18,0xdd,0x1f,0x5b,0x1f, +0xe7,0xd7,0xcc,0x2f,0xf2,0xc5,0xed,0x47,0x67,0x7f,0x17,0x67, +0xc2,0xd7,0x9f,0xeb,0x8e,0xec,0xbb,0xc4,0x2d,0xc0,0xfd,0xc6, +0xb0,0x9a,0xf5,0x57,0x33,0xdc,0x36,0x67,0x63,0x85,0x25,0xff, +0xee,0xc7,0x96,0xbb,0x31,0x0f,0xb8,0x4b,0x98,0xd3,0x03,0x5e, +0xcc,0xa5,0xf3,0xe7,0x22,0x4f,0xa9,0x50,0x5e,0x37,0xa1,0xb6, +0x5a,0x41,0x98,0x21,0x8c,0x23,0xb3,0xb1,0xf6,0x13,0x8b,0xcb, +0x46,0x51,0xf8,0x3c,0x02,0x6b,0x19,0xd8,0x8b,0x2c,0xe9,0x71, +0xbd,0x6f,0xdc,0x61,0x56,0xde,0xc8,0x1b,0x35,0xee,0x6c,0xd1, +0x2d,0xe5,0xf0,0x25,0xee,0x26,0x8f,0x2a,0x07,0x9b,0xda,0x3b, +0xad,0xcb,0x79,0x4b,0x33,0x0d,0xab,0x9d,0xee,0x74,0x04,0xce, +0x11,0x8a,0x48,0x43,0x12,0xb5,0xfe,0x16,0xab,0x9f,0xa8,0xb0, +0x0a,0x1d,0x58,0x87,0xf0,0x4b,0x55,0xaa,0x2d,0xec,0xaf,0x49, +0xc0,0xe6,0xff,0x94,0x77,0xb8,0x95,0xdf,0x76,0x70,0x86,0xcf, +0xca,0xe3,0xdc,0x07,0x0d,0xb4,0x67,0xf7,0xe6,0x1e,0xba,0xa5, +0x02,0x2f,0x60,0xb8,0x64,0xfd,0x34,0x6a,0xbd,0x39,0xb5,0x3e, +0xae,0x3c,0x8e,0x5a,0x6f,0xda,0x25,0xda,0x18,0x80,0x0d,0x13, +0xe6,0x16,0xe2,0x12,0xe8,0xc4,0x6d,0xfd,0x6c,0x7d,0xf1,0x5c, +0x56,0x9e,0xe4,0x40,0xe7,0xfd,0x7f,0x3a,0x59,0x61,0x59,0x08, +0x7d,0xd2,0xe2,0x4f,0xec,0x7c,0xe9,0x78,0xfd,0x4e,0x03,0xd0, +0xc5,0x9c,0x15,0x4c,0x92,0xa1,0xc2,0x2d,0xa6,0x29,0x25,0xa9, +0x41,0x95,0xc6,0x25,0x75,0xf6,0x3d,0x1d,0x5f,0xc5,0x94,0x3e, +0x16,0x33,0x78,0x24,0x83,0x64,0x38,0x14,0x6e,0x49,0x36,0x6d, +0xcb,0xe0,0x83,0x1a,0x9d,0x9f,0xf9,0x97,0x73,0x98,0x7b,0x86, +0x04,0xee,0xf7,0xdc,0x6a,0xa7,0xd7,0xe2,0xc6,0xd7,0xdf,0x28, +0xfa,0x31,0xf9,0x2a,0x27,0x3c,0xc4,0x19,0xa4,0xc3,0xf5,0xa6, +0x51,0x8b,0x59,0x45,0x3d,0x6f,0xd6,0xb8,0xaf,0xc5,0xb0,0x8c, +0xc3,0x1b,0xd4,0xda,0xbb,0x55,0x3d,0xcd,0x2d,0x9d,0x96,0xa5, +0xbc,0xad,0x99,0x8e,0xd5,0x5e,0xd7,0xff,0x3b,0xa3,0x55,0xeb, +0x4b,0x46,0xeb,0x8c,0x81,0xbf,0xa0,0x70,0xc6,0xe0,0x5f,0x5f, +0x32,0x5a,0x71,0x0b,0x1e,0x25,0x30,0x5c,0x93,0x46,0xb0,0x7a, +0x0c,0xc2,0xb1,0xfa,0xc2,0x4c,0xd6,0x69,0x0e,0x4e,0x3c,0x80, +0x47,0xd5,0x25,0x61,0x8f,0x92,0xe7,0xbf,0x5f,0xcb,0xa2,0x11, +0x57,0xd2,0x96,0x57,0x86,0xd1,0xfb,0xa0,0x78,0x55,0xce,0x20, +0x8f,0x47,0xaf,0xe2,0xb4,0xcb,0x76,0x1f,0x39,0x61,0x45,0x37, +0x8e,0x81,0x20,0x46,0xfc,0x4d,0x9f,0x40,0x00,0xae,0x61,0x82, +0x30,0x80,0x85,0x7a,0xd8,0x4d,0xe0,0x0c,0xee,0xa6,0x20,0xeb, +0x4c,0xe4,0xd9,0xc8,0x48,0x65,0x45,0xc8,0x17,0x86,0x88,0xb0, +0xb9,0xd9,0x10,0x16,0xa3,0x3a,0x73,0x29,0x27,0x32,0x3b,0x32, +0xdb,0x20,0x92,0x0f,0xd8,0xa2,0x30,0xdd,0xfc,0x57,0x26,0xdc, +0x35,0xcc,0x25,0xc4,0x85,0x5b,0xe5,0xcd,0x98,0x66,0xd8,0x2d, +0xdc,0x82,0x8a,0x9b,0x77,0x2a,0x95,0x9a,0x14,0x16,0x64,0x17, +0x64,0xe4,0x2b,0x89,0x5b,0xba,0x85,0xf3,0x6c,0x51,0x63,0x41, +0x47,0x56,0x3b,0xb7,0x1f,0x12,0x89,0xd5,0x5c,0xbd,0xf5,0xdb, +0xf7,0x56,0x9a,0xf3,0x8f,0xef,0x0d,0xbd,0x6d,0xfe,0x83,0x13, +0x74,0xdc,0x89,0x1e,0x5c,0xec,0x61,0x45,0x85,0xbd,0x64,0x16, +0x6e,0x64,0xe3,0xca,0x62,0xcb,0x62,0x68,0xef,0x9c,0xa2,0x24, +0x59,0x1f,0x88,0x18,0x8e,0x93,0xd8,0x04,0x1d,0xe9,0x0c,0x5a, +0x6d,0xb2,0xb4,0x2b,0x11,0xf8,0xb8,0x9b,0xc5,0x44,0xd1,0x92, +0xe0,0x92,0x4f,0x30,0xb5,0x19,0xa7,0xde,0xa5,0x80,0x47,0x0f, +0x3f,0xa1,0x1e,0x68,0xee,0x40,0x5f,0xf3,0xba,0xd9,0x5a,0x66, +0xf4,0xcd,0xa3,0xbb,0x61,0x34,0x2c,0x61,0xe6,0x0b,0x6b,0xc9, +0x02,0x8c,0x78,0xc7,0x46,0x4a,0xe2,0x2d,0x93,0x66,0xe3,0x24, +0x0a,0x0c,0x7e,0x92,0x1d,0x22,0xdb,0xcb,0xe6,0x94,0x4d,0xcf, +0x38,0x66,0xc8,0x7f,0xf4,0xff,0xe8,0x76,0xdf,0x85,0x93,0x07, +0xc1,0x78,0xfa,0x7d,0x05,0xf4,0xc3,0x87,0x68,0xf7,0xe8,0xc1, +0x2f,0x3d,0xac,0xb0,0x0a,0xff,0x22,0x03,0x97,0xbb,0x9f,0xd7, +0xff,0x68,0x5e,0xc0,0x3b,0x6c,0xb2,0x50,0x33,0xd2,0xe5,0x1c, +0x5f,0x04,0x4a,0xc1,0xe5,0xb4,0x21,0x68,0x88,0x8f,0x71,0x04, +0x93,0x68,0xa0,0xf0,0x96,0xa9,0x4e,0x49,0xa9,0x51,0x15,0xb6, +0x44,0xb1,0x09,0x38,0xa6,0x09,0x15,0x61,0x1e,0x2e,0xa9,0x68, +0xe2,0xb7,0xdf,0xd7,0x7f,0xe0,0xf0,0x80,0x93,0x5b,0x81,0x1b, +0xfd,0xe8,0xb4,0x6e,0xb6,0x43,0x9b,0x18,0xc1,0x5c,0xd6,0x17, +0x67,0xe9,0xcf,0x5a,0xb5,0xba,0xdc,0x9a,0xff,0xed,0xd7,0xeb, +0x30,0x29,0x0b,0x36,0x4b,0xe1,0x24,0x1a,0xbf,0x21,0x5d,0x98, +0x66,0xc0,0x76,0x89,0x8b,0x48,0x27,0xb8,0x52,0x88,0x90,0x89, +0x94,0x07,0xbb,0x41,0xb6,0x74,0x82,0x6e,0xa5,0x74,0x82,0xee, +0x1f,0xd5,0x29,0x3b,0x19,0xef,0xf0,0xc8,0x42,0x55,0xea,0x5e, +0x47,0xc3,0x03,0x1c,0xc9,0xe6,0xb5,0xe7,0x5d,0x4f,0xed,0x97, +0x54,0x8c,0xf7,0x1d,0xdc,0xe3,0xae,0xc1,0x61,0x2a,0x3e,0xf8, +0xc8,0x9c,0xc6,0xdd,0x4e,0xdb,0x70,0xea,0xb6,0x42,0xca,0xd5, +0xe6,0x3f,0x6b,0xff,0x10,0x09,0xe6,0xdc,0x07,0x6c,0x60,0xf4, +0x32,0x8e,0x76,0xab,0xbc,0x62,0x2a,0x92,0x93,0x2a,0x54,0x61, +0x3d,0x6b,0x9c,0xac,0x80,0x99,0x42,0x18,0x39,0xdc,0xed,0x39, +0x74,0xb0,0xde,0xf8,0x20,0x9f,0x6f,0x59,0xa0,0x9b,0xa9,0xcb, +0xe1,0x63,0x98,0x4e,0x12,0x56,0xf7,0xee,0x79,0xbd,0xad,0xb8, +0x83,0x5f,0x75,0xc3,0xf0,0x8e,0xdf,0x2d,0x49,0x63,0x78,0x9b, +0xd9,0xe6,0x19,0x3b,0x8a,0x0c,0xf9,0x4f,0xb7,0x07,0x7e,0x4a, +0x7e,0xc5,0x09,0x1f,0xd1,0x8a,0x52,0x30,0xbc,0x0b,0x1e,0xec, +0x74,0xca,0xcc,0x2d,0x83,0x4d,0x43,0x8c,0xc2,0x38,0x68,0x86, +0x39,0xdd,0x38,0x07,0xc6,0x7c,0xe8,0xc2,0x4b,0x06,0x6f,0x70, +0x0c,0xae,0xd1,0x87,0x35,0xd8,0xc7,0xea,0x85,0xe9,0x86,0xeb, +0x9d,0x8c,0xd3,0xe2,0xe1,0x9b,0x14,0x98,0x59,0xf0,0xb6,0x80, +0xdb,0xf3,0x0b,0x49,0xed,0x4a,0xe8,0x8b,0xed,0x32,0x8f,0xe7, +0xc3,0xb4,0x43,0x0c,0x8e,0x99,0x72,0xf8,0x1d,0xcc,0x22,0xb9, +0x86,0x39,0x9b,0x12,0x74,0x5b,0x53,0xf8,0xe0,0x5e,0x9f,0xa7, +0x87,0x3b,0xe9,0x4c,0x20,0x32,0x1f,0xf2,0x51,0x73,0x0e,0x66, +0xea,0xc9,0xa6,0xf4,0xb0,0xf2,0xa5,0xfe,0xc4,0xa2,0x4e,0xbf, +0x41,0xbf,0xd4,0xc5,0x82,0xef,0x75,0x6a,0xb1,0x6b,0xb5,0xe2, +0x64,0xd6,0xf2,0x1d,0x64,0x5d,0xdd,0x9e,0x66,0xdd,0xee,0xd7, +0x30,0xa2,0x0d,0xbe,0xca,0x84,0x6f,0xb9,0x3a,0x8c,0x64,0x63, +0xf3,0xa3,0xf3,0xa3,0x0a,0xf4,0xe3,0x78,0x77,0x9c,0x68,0x8c, +0x13,0xe7,0xe1,0xf0,0x0a,0x53,0x3e,0x3b,0x2f,0x23,0x3f,0x3d, +0xbf,0x44,0xad,0x52,0xa3,0x59,0xdf,0x40,0x5f,0xcd,0x64,0x9d, +0x2d,0xb5,0xeb,0x79,0xd3,0xed,0x8e,0xbe,0xfe,0x3e,0xed,0xdb, +0xc6,0x2f,0x2d,0x38,0x31,0x5c,0x66,0x49,0x9c,0x71,0xb2,0x26, +0x4e,0x9c,0x3f,0xdb,0x20,0x8d,0xf7,0xc0,0x91,0xb6,0x38,0x46, +0x7d,0x5e,0xbb,0x03,0x7f,0x1d,0x86,0x35,0x83,0x72,0xde,0x1f, +0x25,0xc6,0x7c,0x79,0x55,0x41,0x55,0x4e,0x35,0x27,0xae,0xef, +0x11,0xa2,0xd8,0xc2,0xfe,0x9c,0xbe,0xb4,0xeb,0xd4,0x04,0xdc, +0x48,0xcc,0x9a,0xf6,0x75,0x68,0x54,0x39,0x5b,0xf0,0x03,0xf6, +0x03,0x66,0x1d,0x66,0x9c,0x30,0xc6,0x8e,0x64,0x55,0xa6,0x55, +0x27,0x57,0xd3,0x18,0xcb,0x04,0xa2,0x02,0x8d,0xf7,0x9b,0x16, +0x99,0xf6,0xda,0x5f,0x73,0x7b,0xc0,0x0d,0xd6,0x90,0x02,0x87, +0x5c,0xf3,0x74,0xab,0x86,0x22,0x3e,0xa0,0xd6,0xb3,0xcd,0xbb, +0xea,0x73,0x56,0x8a,0x3e,0xe9,0xc6,0x37,0x8f,0xd5,0x36,0xe1, +0x1b,0xea,0xca,0xf6,0x9f,0xd1,0x3b,0x6d,0xa2,0x62,0xe9,0x64, +0xe4,0xa6,0xe7,0x93,0xa1,0xc1,0xb7,0x15,0xd4,0xe4,0x55,0x94, +0x1c,0xc3,0x69,0x4e,0x4b,0x77,0xce,0x6f,0xa3,0xd8,0x64,0x34, +0xac,0x29,0x06,0x4d,0xa8,0x50,0x86,0x99,0xec,0x16,0x74,0x24, +0x87,0xaf,0x7b,0xf5,0xbb,0xf5,0x9a,0xfb,0xf0,0xc5,0x7a,0x05, +0x5a,0xd9,0x7b,0x39,0xd9,0xd9,0xcd,0xa4,0x3e,0x39,0xa5,0x52, +0xf5,0x3d,0xab,0x9b,0xa2,0x80,0xec,0x3c,0xd6,0x27,0xe2,0x52, +0x8e,0x2a,0x6c,0xc0,0x9f,0xbc,0xd9,0xc5,0xee,0xda,0xf3,0x8c, +0x55,0xca,0x8c,0x61,0x78,0x4f,0xed,0xdd,0x4b,0x1f,0x95,0xc0, +0x19,0xc7,0x33,0x06,0xd9,0x7e,0x57,0x55,0x60,0x9f,0xb8,0x94, +0xa0,0x62,0xf6,0xc2,0xe2,0x4d,0x55,0x4f,0x3b,0xaf,0x5d,0x6f, +0x7d,0xca,0xd5,0x89,0xed,0x06,0x82,0x27,0x6b,0xb3,0x5f,0xd7, +0x70,0x9b,0xf5,0xce,0x5a,0xfd,0x66,0xcb,0x76,0x13,0x4f,0xbe, +0xde,0xa4,0xd3,0xfc,0x86,0xf5,0x1a,0xbb,0x59,0x1e,0x38,0xc9, +0x57,0x82,0x30,0xaa,0x79,0x30,0xa6,0xf2,0x6d,0xfb,0x73,0x0b, +0x18,0x6e,0x07,0x2a,0x5e,0xb4,0x13,0x6f,0xc0,0x33,0x52,0xe2, +0x53,0x7e,0xb0,0xe2,0x70,0x59,0x27,0x8f,0x5f,0xff,0x30,0xf7, +0xed,0x5e,0x18,0xcb,0x41,0x4c,0x2f,0x26,0x30,0x95,0xed,0xf9, +0x1d,0xe9,0xcd,0x5a,0x99,0xbc,0x9f,0x9e,0x87,0xb6,0x9d,0x2e, +0x27,0x66,0xeb,0x42,0x2c,0xa3,0x89,0xa3,0xe7,0xce,0x41,0x7e, +0x03,0x25,0x47,0xa5,0x99,0x25,0x59,0x85,0x39,0x1c,0x76,0xe1, +0x18,0xdd,0x7f,0xa6,0xf6,0xe2,0x44,0x56,0xd4,0x93,0x6d,0x26, +0x87,0x5a,0xbd,0x9b,0xdd,0xea,0xb5,0x0f,0xf1,0x25,0x56,0x79, +0x56,0xb9,0xc6,0x1c,0x14,0xef,0x27,0x0d,0xab,0x86,0x36,0xdf, +0xdb,0xc3,0x89,0xdd,0xcc,0xed,0x9b,0xbd,0x8f,0x6a,0x7f,0xe6, +0xdc,0xb1,0x91,0x60,0x2b,0x4e,0x85,0x56,0x16,0x9e,0x61,0x2b, +0xc1,0x69,0xd0,0x0a,0xd3,0x98,0x7e,0x7a,0x49,0x2f,0x66,0x61, +0x2b,0x85,0x9d,0x83,0x82,0x33,0x01,0x95,0x56,0x54,0x79,0x0d, +0x2a,0x2d,0xd2,0xdf,0x0b,0xda,0xc4,0x49,0x62,0x20,0xf4,0x32, +0x38,0xe1,0xfb,0x8d,0x27,0x0d,0x55,0x74,0x23,0x82,0x42,0x8c, +0xa7,0x1e,0x60,0x92,0x8c,0x15,0x06,0x98,0x7b,0x39,0xb9,0x3f, +0xc4,0xa9,0xc6,0xdc,0xbc,0xf0,0x1b,0xac,0x54,0xc6,0xc9,0x8c, +0x4c,0x49,0x9c,0x2c,0x25,0x0c,0x0c,0xd7,0x86,0xf9,0xc7,0x41, +0x8d,0x03,0x15,0x61,0xbc,0xf8,0x2d,0xde,0x63,0xd0,0x39,0x08, +0xe7,0xa9,0xe1,0x4c,0x95,0x56,0xfb,0x1b,0x30,0x3b,0x13,0x56, +0x9e,0x87,0x03,0x4a,0xf0,0x2d,0x93,0x82,0xda,0x43,0xb8,0x15, +0x26,0xe0,0xd7,0x9c,0x3c,0x4b,0xe6,0x4a,0x5e,0xc3,0x84,0xa5, +0xac,0xf0,0xcb,0x63,0x82,0xc9,0x98,0x0f,0xc9,0xac,0xa8,0x8d, +0x87,0xbe,0xdc,0xa4,0xd4,0x6c,0x21,0xf9,0x00,0x13,0xe6,0xb1, +0xc0,0xd1,0x7b,0x11,0xf5,0x41,0x2d,0x41,0xb5,0x0e,0xa1,0x7c, +0x92,0x55,0xbc,0x65,0x8c,0x39,0x87,0x67,0x71,0x15,0xc9,0x7e, +0x98,0xfc,0x67,0x14,0x0c,0x33,0x8b,0xe6,0x4f,0xce,0x3d,0x36, +0xcb,0x77,0x1b,0x47,0xe1,0x4f,0x0e,0x49,0xd0,0x4f,0x50,0x8f, +0xde,0x56,0x17,0xc7,0x47,0x5c,0x09,0x7a,0x74,0xbc,0x9d,0xc3, +0x51,0xc1,0x24,0x7a,0x67,0xe4,0xd2,0xf3,0x6b,0x9b,0x62,0xf9, +0xef,0x1f,0x47,0xfc,0x16,0x76,0x9b,0x8e,0x33,0xe5,0x29,0x8b, +0x18,0xaf,0xf0,0x28,0xea,0x54,0xf2,0x40,0x19,0x1e,0x53,0x87, +0x5b,0xd0,0x56,0x78,0x3d,0xbd,0x4f,0x37,0x9d,0xf7,0x57,0xf7, +0xda,0xe3,0xac,0x21,0xb5,0xf9,0x63,0xe0,0x98,0x53,0xb8,0xd3, +0x62,0x1b,0xae,0xfa,0xec,0x55,0x76,0x3e,0x1b,0x7c,0x7f,0x09, +0x28,0x94,0x1c,0x8b,0x55,0x8c,0x56,0xe6,0xd1,0x7e,0x15,0xea, +0xa2,0xab,0x93,0x92,0xaa,0xa5,0x24,0x43,0xa3,0x64,0x05,0xf9, +0x7c,0xbc,0x48,0xfe,0x99,0xae,0xf9,0xef,0x74,0x56,0x58,0x24, +0x0b,0x26,0x07,0xbb,0x5d,0x06,0xbd,0xea,0x8c,0xbd,0xf8,0x22, +0xeb,0x12,0xdd,0x1c,0x3d,0x8e,0xc2,0x9f,0xfd,0xe4,0xf8,0x4d, +0xdf,0x87,0x7e,0xdd,0xe6,0x01,0x7c,0x86,0x5e,0xc6,0x96,0x38, +0x35,0x0e,0x8f,0x2f,0x22,0xb9,0x3f,0x27,0x7e,0xba,0xf8,0xa7, +0xc1,0x25,0xfe,0xf4,0xec,0xe0,0xc5,0x3e,0xeb,0x38,0x59,0x23, +0x78,0x10,0xf4,0x14,0x39,0xf0,0x64,0x15,0x9f,0x7c,0x3e,0xe6, +0x5c,0xdf,0xcd,0x82,0xa9,0xf8,0x2d,0x49,0xc8,0x4a,0xc8,0x8e, +0xcf,0xa5,0x4c,0x0e,0xee,0x50,0x9e,0x7c,0xe7,0x13,0xe3,0xb8, +0x49,0x67,0xef,0x7e,0xb3,0x62,0x0b,0x3e,0x25,0x21,0x25,0x29, +0x39,0x89,0xc3,0x6d,0xac,0x56,0xda,0x21,0x0a,0x7f,0xd6,0x33, +0xcd,0x89,0x49,0x55,0xaa,0x57,0x59,0x8b,0x14,0x8a,0x19,0xb6, +0xb2,0x0e,0x27,0x22,0xcb,0x55,0x1b,0xd8,0x57,0x69,0xbf,0x17, +0xdc,0x28,0x3d,0xd8,0xc8,0x6b,0x7b,0x2e,0xf7,0x5a,0x17,0xc0, +0xbd,0xf3,0x64,0x13,0x93,0x12,0x92,0x13,0x52,0x38,0xf8,0x89, +0x39,0x83,0x63,0x4e,0x4f,0x0f,0xdf,0xcd,0xe9,0x9c,0x08,0x0d, +0xd2,0x9f,0xba,0x4a,0x5a,0xc8,0x7d,0xc2,0x3c,0xcd,0x2d,0x7c, +0x4d,0xbb,0xfd,0x61,0x24,0x8c,0x38,0x07,0x1b,0xb8,0x0d,0xf0, +0x8e,0xac,0xc5,0xd7,0xcf,0x58,0xd1,0x62,0x29,0x0d,0x1a,0x48, +0x83,0x86,0xba,0x3d,0x59,0x8e,0xaf,0x5f,0xb1,0xe2,0xca,0xf9, +0xf4,0x51,0x4b,0x69,0x40,0x31,0x18,0xd5,0x8d,0xa5,0xfa,0x6c, +0xb7,0xb8,0x90,0xfa,0xf5,0x23,0x90,0x8d,0x15,0xf8,0x90,0x85, +0xa3,0x5f,0xfc,0xfa,0x36,0xc9,0xaf,0x0b,0xee,0x17,0xc9,0x0e, +0xed,0xd8,0x34,0x4b,0x55,0xf0,0x86,0xc5,0x9d,0xb8,0x18,0x96, +0xc2,0x9a,0x2e,0x5c,0x0d,0xd3,0x60,0x7a,0x27,0x4e,0x07,0xa2, +0x85,0x04,0xd7,0x19,0xc2,0x3a,0x9c,0x86,0x9a,0x06,0xa0,0x25, +0x7e,0xcb,0x9a,0x55,0xfa,0x75,0x0e,0x29,0xc3,0x42,0x1d,0x9c, +0xc7,0xce,0x0a,0xd8,0xbf,0x55,0x4b,0x25,0x5b,0x7b,0xa0,0xb5, +0xa4,0xfd,0xd2,0x4b,0xa5,0x28,0x66,0x79,0xd4,0x9b,0xe5,0x10, +0x3c,0x55,0x08,0x66,0xa2,0xfa,0x14,0x44,0x5f,0xd8,0x4f,0x0e, +0x86,0x1d,0x0a,0x3f,0x7c,0x32,0x59,0x97,0xff,0x31,0xf7,0x53, +0xeb,0xcd,0x86,0xe0,0x76,0xde,0xfd,0x88,0xd5,0x61,0x73,0x3f, +0x4e,0xd8,0x03,0x2a,0xec,0x05,0x9c,0x9b,0x81,0xb3,0xea,0x70, +0x98,0x9d,0x8e,0xa9,0xc9,0x01,0xdb,0x32,0x4b,0xbe,0xb7,0xba, +0xb9,0xb9,0xba,0x33,0xc3,0x2e,0xd7,0xbd,0xc8,0xb7,0xde,0xad, +0x24,0x25,0xaa,0x3d,0x0b,0xd6,0xf2,0xe6,0x19,0x87,0x71,0xbb, +0x57,0xd6,0xa1,0x72,0xff,0x26,0xa5,0xae,0xd7,0xe5,0x30,0x2c, +0x17,0x38,0xd3,0x34,0xde,0x7f,0xbe,0xf7,0x32,0x9b,0x8d,0x5e, +0xbf,0x1c,0x03,0xee,0x3b,0x98,0xc8,0x81,0x6b,0x07,0xba,0xc1, +0xb7,0x7a,0xf8,0x2d,0x9a,0x30,0xc2,0xae,0x6e,0xe2,0x9d,0x6b, +0x5e,0xe6,0x9a,0xe6,0xee,0xc8,0x97,0x1d,0x69,0x74,0xcd,0x3d, +0xc8,0x29,0x3e,0xfb,0x5c,0x56,0xac,0x5f,0xb8,0x06,0xdd,0xd0, +0xcf,0x3e,0xc7,0x7e,0x02,0xb7,0xc5,0xf3,0x8b,0x99,0xc8,0x98, +0x0b,0xf1,0x49,0xca,0x0f,0x24,0xd5,0xe4,0x85,0xcb,0x59,0xbf, +0x13,0x97,0x32,0x55,0x61,0x32,0x4c,0xa0,0x5c,0x8d,0x65,0x33, +0x8a,0x92,0xca,0x13,0x8b,0x0d,0x93,0xf9,0x60,0xe7,0xa3,0xf6, +0x87,0x1d,0x24,0x4d,0x08,0x43,0x4a,0xeb,0xc2,0xd7,0x1b,0xe8, +0xe1,0x70,0x97,0x7c,0x63,0x1e,0xc6,0xd6,0xde,0x7b,0x1c,0xf3, +0x27,0xf7,0x1b,0xa5,0xde,0x46,0x59,0x01,0xfd,0x2a,0x2f,0x99, +0x98,0xe8,0x73,0xe7,0xa3,0x54,0xa3,0x1d,0x15,0x60,0x18,0xd3, +0x90,0x9a,0xde,0xa4,0x2a,0xab,0x16,0x27,0x48,0x92,0x91,0x84, +0x3c,0x82,0xef,0x36,0xb3,0x60,0x3b,0xe5,0x11,0x24,0x6e,0x66, +0xe5,0x66,0xf8,0x35,0x79,0x0c,0xdf,0x6d,0x92,0xee,0x3c,0x86, +0xc4,0x4d,0xac,0xb8,0x9d,0xc2,0xc1,0xe3,0x45,0x7e,0x65,0x47, +0xb3,0x4c,0x8e,0xf0,0xe9,0x87,0x32,0x5d,0x13,0x3c,0x39,0xa8, +0x31,0x25,0x73,0xf1,0xcd,0xef,0xd4,0x59,0x34,0x08,0x0e,0x24, +0x3c,0x25,0xe2,0x5c,0x48,0xb8,0x84,0x90,0xe1,0x1b,0xe0,0xba, +0x90,0x03,0x3d,0x5d,0xa4,0x56,0x1b,0xc0,0xd7,0x4c,0x08,0x7e, +0xe5,0x80,0xb3,0x96,0xe1,0x94,0x2a,0x33,0xfe,0xce,0x5f,0xf9, +0x7f,0x45,0xbe,0xf9,0xa2,0x8d,0x73,0x49,0xaa,0x51,0x70,0xfe, +0xb4,0xca,0x9f,0xe8,0x56,0x57,0xa6,0x20,0xf4,0x63,0x11,0x59, +0x9d,0xb4,0x21,0x63,0x57,0xfe,0xa3,0xfa,0xae,0xb6,0xe2,0x56, +0xae,0x06,0x7f,0x63,0x53,0x33,0x93,0xb3,0x12,0xb3,0x39,0xb8, +0x21,0x7c,0x85,0x17,0x99,0x84,0x9c,0xb8,0x9c,0x58,0xfa,0x53, +0x4a,0x9b,0xf8,0xab,0x09,0xe4,0x32,0xe1,0x87,0x43,0x0f,0x05, +0x1d,0xe2,0xd0,0x50,0xfc,0x0a,0x26,0x33,0x16,0x3b,0x77,0x68, +0x6d,0x90,0x4a,0x43,0x54,0xa6,0x94,0x67,0x96,0xe4,0x55,0x3a, +0x36,0xba,0x76,0x78,0x6e,0xf3,0x5a,0x72,0x18,0x99,0x60,0xa9, +0x5c,0x99,0x72,0x0a,0x8c,0x28,0xfa,0xb9,0xf2,0x89,0xf3,0x1b, +0xef,0xbf,0xfd,0xb9,0x65,0xb2,0x6f,0x88,0x38,0xf5,0xaa,0x30, +0x95,0xa1,0x6d,0xb0,0x9b,0xd0,0x0b,0x75,0xd6,0x6a,0xd4,0x6e, +0x71,0xea,0x2d,0x89,0x6e,0x04,0x13,0x0f,0x67,0x63,0x87,0x1d, +0xce,0xfb,0x8b,0x0c,0x2b,0x1d,0x6b,0x39,0x45,0x18,0x26,0x1d, +0x19,0x71,0x65,0xb1,0x2a,0x08,0xf7,0xeb,0x48,0x1e,0xcc,0x4c, +0xe1,0x1a,0x2c,0x4b,0x01,0x63,0xe8,0x95,0x64,0x67,0xb3,0xba, +0xd9,0x0b,0xe2,0x08,0x1a,0xa2,0x56,0x83,0xa5,0x36,0x5a,0xa2, +0x92,0x3e,0x28,0xb1,0xa7,0xd1,0xc0,0x14,0x27,0xcc,0xc4,0x59, +0xe5,0x3a,0xfc,0xef,0x30,0xad,0x11,0xd8,0x48,0x58,0x4c,0x11, +0x68,0x24,0x2e,0x6e,0xa6,0xee,0x91,0x41,0x95,0xb2,0x21,0x9e, +0x36,0xd5,0x0c,0x4a,0x09,0x4f,0x83,0x3e,0x87,0x81,0x70,0x8a, +0xe0,0x2d,0x4c,0x85,0x5b,0x8c,0xf0,0x15,0x10,0xe2,0x5b,0xef, +0xd0,0xe5,0x5d,0x6e,0xeb,0xc3,0x17,0xb8,0x54,0xeb,0x66,0x58, +0x73,0xa2,0x6a,0x0f,0x91,0x16,0x26,0x9d,0x18,0x74,0x9a,0x4e, +0xc0,0x49,0x1d,0x9d,0x18,0xf5,0xf9,0x44,0x54,0xef,0x82,0xd5, +0x10,0x34,0x1b,0x39,0x36,0xd6,0x5c,0xe1,0x4f,0xa6,0x3a,0x39, +0xa9,0x52,0x55,0x18,0xcb,0x1a,0x50,0x2a,0x81,0x41,0x57,0x29, +0xac,0xa5,0x88,0x98,0x21,0x10,0xa4,0x2e,0x95,0xb2,0xff,0xb0, +0x93,0x1a,0xab,0x29,0x5b,0x8e,0x7f,0xd3,0x9f,0x92,0x35,0x14, +0xc0,0x9c,0xe9,0xcd,0xc9,0x6c,0x51,0x95,0x45,0xc9,0x6b,0xd8, +0xab,0x5a,0x04,0x9a,0xb0,0x0d,0x9b,0x18,0x10,0xa1,0x4d,0x5a, +0xc7,0x6a,0xc3,0x01,0x46,0xf1,0xce,0x06,0xd2,0x3f,0x20,0x3b, +0xa4,0xd5,0xff,0xcf,0x78,0xf9,0x1b,0xa6,0x5f,0x9e,0x48,0x64, +0x76,0xb2,0x43,0x72,0x3b,0x16,0xdf,0x0b,0xb1,0x64,0x10,0x12, +0x5b,0x31,0xf1,0xb2,0xee,0x01,0xfc,0xde,0x14,0xbe,0xd7,0xc4, +0x0a,0x53,0xd9,0x57,0xad,0x2c,0x82,0xe8,0x47,0x7a,0x61,0xcf, +0x25,0x26,0x7a,0x0f,0x8c,0xd0,0x80,0x35,0x0e,0xc9,0x6d,0xbc, +0x51,0xbc,0x79,0x92,0x5d,0x6a,0x61,0x56,0x49,0x59,0x46,0x8e, +0x6b,0x0e,0x9f,0x04,0x5b,0xc5,0xef,0xa8,0xe7,0xf7,0x64,0xf4, +0xf4,0xe7,0x1a,0xe1,0x24,0xfb,0x0c,0xca,0x6f,0x87,0x55,0x3e, +0xaf,0xbd,0xd6,0xcd,0x81,0x3f,0xe8,0x90,0x1d,0x22,0x7f,0x97, +0x85,0x47,0x94,0xb7,0x5b,0xe7,0xb8,0xe5,0x1f,0x2d,0xe4,0xe0, +0x00,0xe3,0x7f,0xd0,0xc9,0xd9,0xcb,0x9f,0xf6,0x89,0x99,0x70, +0x96,0xfc,0xda,0xbd,0x04,0xf2,0x75,0x31,0x7f,0x85,0xfe,0x4b, +0x71,0x38,0xe3,0x16,0xe4,0x12,0xec,0x1c,0x9c,0xa2,0xcf,0xbf, +0xad,0x78,0x50,0x7a,0xb7,0x36,0xbc,0x87,0xf7,0x08,0xf4,0x08, +0x74,0x0f,0xa2,0x6d,0x2c,0xfb,0x9a,0xfc,0xcb,0xf5,0xf5,0x08, +0xdd,0x9d,0x62,0xb7,0xcc,0x51,0xe8,0x6e,0x67,0x8f,0x89,0x51, +0xa4,0x19,0x0b,0xd9,0x94,0xec,0xe4,0xec,0x84,0x4c,0x0e,0x2c, +0xa0,0x48,0xdc,0x86,0x45,0xb0,0x89,0x39,0xee,0x77,0xec,0x70, +0xc0,0x61,0x0e,0x97,0x9a,0x53,0x4f,0xef,0xeb,0x75,0xc8,0xc7, +0xf7,0x50,0xdf,0xd1,0xce,0xa3,0xed,0x47,0x8d,0x0f,0xed,0x0d, +0x58,0x13,0x96,0x6c,0xc6,0xff,0x9d,0xf0,0x63,0xde,0x50,0xe5, +0xe5,0x83,0x83,0x07,0xaf,0x79,0xe6,0xd5,0xf1,0x5a,0x79,0xba, +0xd9,0x86,0x19,0x0d,0x15,0x45,0xf5,0x69,0xcd,0xdc,0x49,0x49, +0x8c,0xf6,0xce,0x4d,0xb8,0xc3,0x20,0x33,0x6a,0x27,0xde,0xb9, +0xc3,0x56,0xd3,0xd8,0x9a,0x92,0x9a,0x9a,0x91,0x42,0xbf,0x65, +0x27,0x13,0x60,0xef,0xe5,0x64,0xe3,0x69,0x96,0x6a,0x95,0x6c, +0x1b,0x4f,0x59,0xdc,0x8b,0x73,0xc4,0x30,0x30,0xb6,0x4d,0xb5, +0x1b,0xda,0xe1,0x09,0x5b,0x72,0xac,0xf4,0x58,0x65,0x60,0x01, +0x25,0xf4,0x4b,0xae,0xcc,0xbe,0xb1,0xf5,0x1d,0x07,0xf7,0x7b, +0x44,0x27,0x26,0xb1,0x28,0xa1,0x38,0xae,0x54,0x33,0x96,0x3f, +0xee,0x70,0xdc,0xe5,0x98,0x1b,0x87,0xa0,0x07,0x77,0x99,0xfd, +0x0b,0x16,0xec,0xc2,0xcd,0xfb,0xf3,0x8d,0xf8,0xd2,0x84,0xe2, +0xc4,0x82,0x24,0x4e,0x9c,0x30,0x34,0x08,0x01,0xda,0xec,0x86, +0x3c,0xaf,0xdf,0x54,0xa0,0x8f,0xa9,0x4d,0x4d,0xaa,0x51,0x85, +0x49,0x92,0x6e,0x19,0xf5,0x8d,0xf8,0x2b,0xc5,0x08,0xed,0xdb, +0xae,0x1d,0x78,0x4e,0xc7,0x5a,0xf0,0x07,0xcd,0x79,0x68,0xcb, +0x3c,0xeb,0x1a,0xbc,0xd2,0x78,0x9f,0x43,0x4f,0xfc,0x93,0xfc, +0x01,0x01,0xb3,0x58,0x68,0xfb,0x83,0x92,0x8f,0xd0,0x3f,0x58, +0xca,0xa3,0x96,0x4a,0x5c,0x68,0x38,0x06,0x30,0x34,0xac,0x0c, +0x27,0x10,0x4a,0xaf,0x43,0x29,0x69,0x10,0x28,0x18,0xc3,0x29, +0x03,0x14,0xf5,0x2f,0x7c,0xa0,0xb9,0x55,0x54,0x96,0x36,0x8d, +0xa6,0xb0,0xb2,0x36,0x31,0x92,0x74,0x88,0xc9,0x6c,0x56,0x7e, +0x46,0x5e,0x1a,0x0d,0x45,0x83,0xd0,0x2b,0xfe,0x8c,0xbd,0xe0, +0xc2,0x1c,0x39,0xe8,0xeb,0x73,0xc8,0x9b,0xc3,0x3a,0x23,0x08, +0x97,0x16,0xa0,0x5d,0xac,0xa5,0x05,0xe8,0xa3,0x7f,0xf8,0xce, +0xf5,0xc4,0xaf,0x02,0x71,0x7d,0x84,0xb4,0x00,0x6d,0x1a,0x0d, +0x2b,0xf2,0x60,0x7c,0x1b,0x8c,0x39,0x08,0x93,0x3c,0x81,0x95, +0x16,0xa0,0x67,0xe6,0xcd,0xcc,0x99,0x97,0x79,0xb9,0xaa,0xb5, +0xa9,0xaa,0x8f,0x73,0x80,0xab,0x44,0x74,0xbb,0x23,0xb8,0x31, +0x38,0x71,0xd4,0x76,0xd1,0xed,0x9e,0x54,0xc2,0x8b,0x27,0xcb, +0xd3,0xd6,0xa7,0xec,0x4a,0x2c,0xc8,0xce,0xcb,0xcd,0xa5,0x5f, +0xfa,0x88,0xb1,0x31,0x92,0xd6,0x96,0x29,0xc2,0x52,0x02,0x0b, +0x82,0x33,0x05,0x45,0x2d,0x51,0x11,0x87,0xeb,0x09,0x7f,0xf7, +0x60,0x18,0x44,0x83,0x4f,0x37,0xfa,0x80,0x03,0xf3,0x53,0xec, +0xe3,0x84,0xeb,0x49,0x47,0xba,0x78,0x9c,0xe5,0x8a,0x86,0xc7, +0xd0,0x35,0x3c,0x46,0x9f,0x7f,0x75,0xe1,0xe5,0xa5,0xa7,0xd1, +0x9c,0xa6,0xdc,0x90,0x86,0x98,0x99,0xcd,0x8f,0x77,0xaa,0xb6, +0xbd,0x2d,0x04,0x26,0x01,0x26,0x71,0xd5,0x68,0xcc,0x76,0x0c, +0xde,0x7c,0xde,0xf5,0x13,0xd7,0x8c,0x69,0xfa,0xa0,0xcf,0x1a, +0x6e,0xd8,0xbd,0xca,0x40,0x97,0x33,0x04,0x67,0x36,0x74,0x8e, +0xef,0x72,0x87,0x2d,0x0e,0x7d,0x3e,0x34,0x86,0x1b,0x04,0xf0, +0xb9,0xcb,0x4b,0xd7,0xb6,0xab,0x39,0xeb,0x5b,0x9a,0xeb,0xdb, +0x97,0x19,0xf2,0x3d,0x35,0x4d,0x6d,0x55,0xbd,0xdc,0xfa,0xc7, +0xc0,0x1a,0xc3,0x96,0xa9,0xc2,0x18,0x26,0x71,0x40,0x41,0x51, +0xd8,0x24,0xd3,0x25,0x01,0x07,0xbc,0x74,0xed,0x0d,0x1d,0x8b, +0xed,0x0b,0x1c,0xb3,0x5d,0xac,0xf8,0x72,0xbf,0x6a,0x8f,0x0a, +0x37,0x4d,0xf5,0xf5,0xba,0xd3,0x4d,0x0b,0x69,0x93,0x04,0xc1, +0x28,0xea,0x4e,0x17,0x35,0x51,0x6c,0x51,0x8f,0x3e,0x6c,0x7c, +0x56,0x4c,0x76,0x4c,0xb6,0x4e,0x02,0xef,0x88,0xc3,0xf7,0x2c, +0x58,0xa4,0x56,0x61,0xce,0x5f,0xef,0xec,0x1e,0xaa,0xbd,0xc9, +0xc9,0xbe,0xa2,0x10,0xa0,0x21,0x25,0xa5,0x9e,0x02,0x5a,0x1d, +0x0a,0x68,0x27,0xa0,0x37,0x6b,0x13,0x16,0x47,0xfb,0xfe,0x1e, +0xf8,0xe1,0x56,0x9c,0xcf,0xc6,0x1b,0x2a,0x80,0x32,0x75,0xfc, +0x69,0x14,0x94,0xf8,0xe0,0xef,0xa2,0x32,0xab,0x9e,0xeb,0x73, +0x5b,0x05,0xbd,0x3c,0x48,0x9f,0xdd,0x90,0x69,0xbb,0x71,0x6d, +0x3d,0xaf,0xdf,0xa9,0xd3,0xac,0x55,0xcd,0x99,0xe3,0x6d,0x62, +0x19,0x12,0x43,0xdf,0x7c,0x5c,0x03,0x43,0xd9,0x8d,0xf9,0xbe, +0x3f,0xaa,0x40,0x01,0xd3,0x9c,0x22,0x49,0x4d,0x2b,0xb0,0x9a, +0x19,0x0a,0x38,0x83,0xed,0x81,0xc3,0xa4,0x7f,0x67,0xcf,0xba, +0xda,0x15,0x1d,0x25,0xbc,0xe5,0x1b,0x83,0x47,0xda,0x77,0x39, +0xb9,0x0e,0x56,0x92,0x1b,0x3f,0xd4,0xbf,0xce,0x7d,0x66,0x90, +0xc1,0x1f,0xda,0x6c,0xb5,0xe2,0xc0,0x6e,0xda,0x0f,0x46,0x27, +0x88,0x73,0xf0,0xa5,0x3a,0xd5,0x57,0xe0,0x02,0xf7,0xd9,0x8c, +0xc0,0xcc,0xa0,0xac,0xe3,0xb9,0x6d,0xfc,0xc2,0xbe,0x4d,0xf7, +0xac,0x7f,0xe5,0xc0,0xae,0x13,0x9f,0x30,0x71,0x05,0xb1,0x45, +0x31,0x25,0x06,0xb1,0x7c,0x98,0x73,0xa8,0xcb,0x71,0x77,0x0e, +0xfd,0x0c,0xc1,0x8c,0x31,0x5d,0xb5,0x63,0x07,0x8e,0x3c,0x40, +0xc7,0x77,0x76,0x52,0x66,0x52,0x06,0x1d,0xdf,0x53,0x7b,0xae, +0xc3,0xe2,0x79,0xec,0x9e,0x92,0xc3,0xd7,0x55,0x60,0x1b,0xd3, +0x91,0x98,0xd4,0xa6,0x0a,0x8a,0xac,0x09,0xb5,0x79,0x31,0x2b, +0x0e,0x09,0xcb,0x89,0x67,0xb0,0x47,0xb0,0x7b,0x30,0x07,0x01, +0x30,0xbc,0x1b,0x87,0x83,0x86,0x36,0x6a,0xe0,0x04,0x7d,0x8a, +0x2d,0x2f,0xb0,0x56,0x81,0x96,0xc7,0x6d,0x24,0x15,0xed,0x9a, +0xb8,0x9a,0x84,0xda,0xcf,0x65,0x58,0x46,0x49,0xe9,0xd9,0xaf, +0xa8,0x6d,0xd2,0x79,0xc7,0x36,0xb6,0x2c,0xb1,0x34,0xb1,0x34, +0x59,0x3a,0x77,0xf6,0x9a,0x14,0xec,0x6c,0x39,0xd0,0x67,0xc0, +0xe1,0xda,0x77,0xba,0x0b,0x70,0x05,0x73,0xa5,0xa7,0x65,0xb0, +0xe2,0x0e,0x87,0x73,0xf1,0x3d,0xf9,0x04,0x8b,0x67,0xb3,0xe0, +0xfa,0x89,0xcc,0xc6,0x65,0x9f,0x58,0x74,0xa2,0xf1,0x11,0x16, +0xe3,0x48,0x5c,0xcc,0x80,0x13,0x8c,0x24,0xb0,0x8c,0x5e,0x2f, +0x63,0x14,0xa1,0x4d,0x98,0x4e,0x0e,0x87,0x1e,0x0e,0x3b,0x44, +0x89,0x60,0x20,0x50,0xe8,0x33,0x0a,0xb4,0xb5,0x51,0x1b,0xc7, +0xe8,0xc3,0x18,0xbc,0xc4,0x5a,0x07,0xda,0x04,0xdb,0x7e,0x56, +0xf5,0x8e,0xad,0x4e,0xa8,0x4e,0x94,0x4a,0x39,0x0e,0x93,0x4a, +0x39,0xfe,0xcc,0x34,0xa5,0x48,0x5b,0xe4,0x5d,0xec,0x8f,0xe5, +0x0a,0xc2,0x1d,0xe1,0x24,0x05,0x47,0x6e,0x68,0xe6,0x8f,0x1a, +0xa7,0xa4,0xc3,0x1b,0xbb,0x2e,0x81,0x75,0x06,0xec,0x29,0xe7, +0x9a,0xe4,0x5d,0x64,0x43,0xfa,0xd6,0xfc,0xbd,0xe5,0xd7,0x5a, +0xba,0xfa,0xca,0x6e,0x70,0x35,0x22,0xc3,0x46,0x15,0x44,0x16, +0x5d,0x2c,0xe6,0x84,0x75,0x1d,0xe2,0x4a,0xe6,0x42,0xd1,0xb9, +0x92,0x52,0x65,0x81,0x02,0xa7,0x6f,0x99,0xd2,0xe6,0x92,0xfe, +0xcc,0x66,0x43,0x4a,0x2a,0x0c,0xed,0x76,0x38,0x9a,0x72,0xe2, +0x5c,0x43,0x58,0xc8,0xb8,0x48,0x75,0x1c,0x54,0x70,0xb9,0x11, +0x2c,0x62,0xfc,0x70,0x9d,0x0e,0x8e,0xc2,0x6f,0x70,0x72,0xb5, +0x15,0xff,0xf2,0x79,0xdf,0x8f,0x95,0x6f,0x4a,0xcd,0x9b,0xad, +0xbb,0x1c,0xf6,0x3a,0x6e,0xf6,0x5e,0x17,0x40,0x7d,0xf3,0xaf, +0x99,0x2f,0x4b,0x1f,0x36,0x3d,0xb0,0x7a,0xee,0xfc,0xca,0x97, +0xc3,0x14,0xd9,0x6e,0x12,0x56,0x76,0xb8,0xe3,0x48,0x31,0xc5, +0x05,0x29,0x1e,0x39,0x46,0x71,0xd2,0xb9,0x8e,0x64,0x72,0xbc, +0xcc,0xaf,0xfe,0x48,0x81,0xb1,0x1f,0x9f,0x7a,0x30,0xc7,0x32, +0xde,0x55,0x4a,0x86,0x44,0xe2,0x6e,0x6c,0x6e,0xa9,0xeb,0xa0, +0x53,0x65,0xda,0xe0,0xd0,0x41,0x7d,0xf7,0x5d,0x99,0x01,0xd1, +0x6f,0x52,0x6b,0xda,0x5b,0xe6,0x66,0xca,0xdf,0x74,0x1a,0xb2, +0xe9,0x37,0xe7,0xe8,0xf8,0xd8,0x40,0x59,0x26,0xd9,0x81,0xdf, +0x2e,0x5f,0xd2,0x6c,0xc6,0x7f,0x84,0x11,0x3f,0xc0,0xaa,0x02, +0x18,0xc7,0x09,0xb3,0xf0,0x27,0xb2,0xee,0xe5,0x2a,0xf8,0xd6, +0x0a,0x26,0xe9,0x1c,0xe1,0xeb,0x71,0xd2,0x0b,0x5c,0xf8,0x1b, +0x0e,0xe7,0xe4,0x93,0x1a,0xa4,0xa3,0xfb,0x6d,0x6a,0xe5,0xae, +0x66,0xfc,0x4d,0xc7,0x6b,0x16,0x03,0x14,0x87,0x4f,0x3f,0x48, +0x44,0xf3,0xcb,0xd7,0x85,0xf1,0x7b,0x2f,0x0b,0xe6,0xac,0xa8, +0xa9,0x43,0x84,0xf1,0x98,0x29,0x8e,0x67,0xf0,0x57,0x9c,0x40, +0xee,0xfd,0xd5,0x07,0x4a,0xa5,0x7f,0xe9,0x67,0xd1,0x79,0x24, +0xad,0xeb,0xee,0x94,0x0e,0xa0,0xfd,0x24,0xf4,0x91,0x0d,0x78, +0x56,0x64,0x84,0x3e,0x81,0xc1,0x98,0x27,0x10,0x52,0xd0,0x0b, +0xeb,0xb1,0xfe,0xa9,0xe6,0x3a,0xda,0x2d,0xeb,0x7b,0xbc,0xd8, +0x2d,0xb0,0x90,0x98,0xd7,0xe9,0xd4,0xeb,0x96,0xba,0x59,0xf0, +0xfd,0x4e,0xed,0xf6,0x6d,0xd6,0x9c,0x6c,0xac,0x29,0x11,0x13, +0x7f,0x12,0x12,0x19,0x39,0x83,0xa7,0x89,0x49,0x93,0x5a,0xfb, +0xfe,0x4a,0x4a,0xc3,0x2f,0x3b,0x0c,0x99,0x77,0x9b,0x72,0x02, +0xbb,0x8a,0xa0,0xee,0x9f,0xa0,0xcb,0xf4,0xcd,0x24,0x7f,0x82, +0xc9,0x4c,0x56,0xae,0xea,0x4f,0x5c,0x71,0x94,0x25,0x8e,0xde, +0x3b,0xbf,0xd5,0x9e,0xff,0x9f,0x9c,0x50,0x0e,0x7e,0x3d,0x41, +0xe8,0xa0,0xd1,0x85,0x91,0x2c,0x9c,0x9b,0x02,0x26,0xf4,0xda, +0x84,0xa9,0xc7,0xf1,0xe4,0xa9,0xf3,0x63,0x87,0xeb,0x36,0xa5, +0x6d,0xfc,0xde,0xda,0xf5,0xd5,0x1b,0x8b,0x39,0xd1,0x10,0xd7, +0x13,0x60,0x8a,0x9f,0xd6,0x5e,0x6e,0x74,0xa4,0x81,0xc7,0x66, +0xad,0xc3,0x74,0x1f,0x4e,0x2a,0x17,0xfb,0x94,0xa8,0x2f,0x63, +0x70,0x05,0x4e,0x5c,0x83,0x15,0xcb,0x55,0x72,0x35,0xa0,0xfe, +0xc3,0xbb,0x3b,0x59,0x30,0x53,0x49,0x5a,0xf2,0x9a,0x09,0xdc, +0x4e,0xa8,0x99,0x2b,0x09,0xda,0x94,0xbd,0xc2,0x59,0x3f,0xc1, +0x0a,0x65,0xf0,0xa4,0xb0,0xa7,0xad,0xbb,0xe9,0x5e,0xde,0x0d, +0x9d,0x2c,0xfe,0xb0,0xa6,0xd9,0x16,0x73,0x3a,0x28,0x12,0x1c, +0x49,0x6b,0x57,0xd7,0x93,0xec,0xab,0xfa,0x19,0xfc,0x41,0x6d, +0xb3,0xad,0xc6,0x86,0x9c,0xb0,0x18,0xb5,0xff,0x5f,0x3f,0x5b, +0x0f,0x37,0x91,0x9a,0x8e,0xaa,0x6b,0xd9,0x83,0xfa,0xd9,0xbc, +0xaf,0x9e,0x9d,0x9a,0xa3,0x25,0x27,0x7a,0x68,0x93,0x96,0xae, +0xce,0x27,0xd9,0x57,0xf4,0xa8,0x77,0xd0,0x31,0xdf,0x6a,0x62, +0x48,0x1f,0x7c,0xb4,0x6c,0x1b,0x71,0xd1,0x76,0x32,0xb3,0xb5, +0xe6,0x62,0x58,0x68,0xd6,0x41,0xca,0x12,0x92,0x5d,0xa9,0x07, +0x9b,0x86,0x6a,0x2a,0x4d,0x56,0x8f,0xff,0xa8,0x7d,0x9e,0xf3, +0x52,0xe9,0xfc,0xa5,0x8b,0x67,0x2f,0x9e,0xa4,0x9c,0x6f,0x37, +0xdf,0x5c,0x4b,0xa7,0xd1,0xe6,0xb0,0xc4,0xd0,0xf3,0xc1,0x61, +0x4a,0x41,0xc1,0xa7,0x2e,0x24,0x5d,0x8d,0xbe,0x7c,0xe1,0xa9, +0xd2,0x95,0xa1,0xa6,0xfe,0xfa,0x9b,0x1c,0xbc,0xc6,0xe9,0xa4, +0x63,0xa0,0xe1,0x6a,0xe1,0x6d,0xae,0x09,0xcf,0xb1,0x71,0x99, +0x71,0x59,0x31,0x39,0xba,0xc9,0xbc,0x0d,0x0e,0xdb,0xb7,0x6e, +0xd3,0xae,0x06,0x1b,0xbe,0xa1,0xbe,0xb5,0xa3,0xfe,0x9a,0xb4, +0x60,0xed,0xa3,0x69,0xa2,0xa6,0xab,0xc7,0x6d,0x10,0xef,0xf6, +0x0e,0x81,0x87,0x46,0x9f,0x70,0x97,0x91,0x3f,0x86,0xb9,0xe4, +0x3b,0x1c,0x11,0xba,0xc4,0x7d,0x53,0xc7,0x61,0xbe,0xf4,0x97, +0xf8,0x3f,0xce,0xc3,0x30,0x0e,0xde,0xca,0xed,0x89,0x70,0x5f, +0x5b,0xbc,0xcf,0x0a,0x9a,0xf0,0x07,0x41,0x0f,0xd8,0x0a,0x1e, +0x0c,0x7a,0x48,0x29,0x98,0x1e,0xb8,0x5b,0x92,0x42,0x86,0x74, +0x08,0x27,0xe1,0x09,0x21,0x17,0x42,0xc2,0x82,0x42,0xf8,0xd3, +0xe7,0xe3,0x87,0x2e,0x0d,0x5c,0xf8,0x41,0xa9,0xbd,0xaf,0xa6, +0xbb,0xfc,0x32,0x87,0x65,0x42,0x3d,0xb4,0xe2,0x26,0x18,0x06, +0xe6,0x5d,0xe2,0x27,0x03,0xda,0x46,0xc3,0x70,0x19,0x7b,0x21, +0xd2,0xae,0xd2,0x43,0xc7,0xc3,0xc4,0xd9,0x5a,0x29,0x99,0x85, +0x16,0x3d,0xec,0x63,0x31,0xd5,0x13,0x27,0xe2,0x58,0xdc,0xa1, +0xd2,0x68,0x7d,0xfb,0x8f,0x8a,0x17,0x19,0x2f,0x94,0xce,0x47, +0x5d,0xa0,0xf6,0xff,0x80,0x4b,0xf9,0xe6,0x6a,0x05,0x78,0x2b, +0xc9,0xab,0x0f,0x9b,0x09,0xc3,0x58,0x31,0x72,0x31,0x39,0x83, +0x23,0xc2,0x96,0xf8,0x6c,0x6a,0xf3,0xe5,0x0b,0x5f,0xc5,0xfe, +0x71,0x0e,0x86,0x73,0xc2,0x4c,0x0d,0x82,0x06,0x33,0xc0,0x80, +0x85,0xb5,0x53,0xfe,0x44,0x83,0x99,0xd2,0xa6,0x06,0x8e,0x00, +0x03,0x18,0xc1,0xa0,0xae,0xb8,0x97,0x7c,0xae,0x3a,0xfa,0xb7, +0xf6,0x74,0x8c,0x36,0x82,0x68,0xca,0x4d,0x6a,0x0c,0x65,0x13, +0x3b,0xa5,0x73,0x8a,0x32,0x5e,0x76,0x97,0x68,0xaf,0x43,0x4d, +0xa9,0x54,0x68,0xb5,0x01,0x54,0xe3,0x22,0xe8,0x85,0x45,0xd0, +0xd3,0x85,0x3d,0x52,0xfd,0xc5,0xe5,0xe4,0x77,0xd0,0x9c,0xcb, +0x8a,0x99,0xcb,0x89,0x21,0x6c,0x5c,0xc4,0x1a,0x7a,0xec,0xf5, +0xd1,0x09,0x48,0x37,0xe2,0xbb,0xd2,0x7b,0xb2,0x5a,0xf2,0x38, +0xfc,0xba,0x4f,0xd8,0xa1,0xb3,0x8c,0x15,0x4a,0x7e,0x21,0x3a, +0xf8,0x8e,0x31,0xce,0x08,0xe8,0x50,0xa1,0xdf,0x5a,0x99,0x98, +0x58,0xa5,0xfa,0x56,0x22,0xc3,0x38,0x72,0x15,0xeb,0x15,0x21, +0x2d,0xdb,0x8d,0x65,0xbb,0xb3,0xae,0x97,0x0c,0x56,0x1f,0x6c, +0xe2,0x2d,0xbd,0x74,0x3c,0x0c,0x0e,0x73,0xe2,0xac,0x0c,0x82, +0x59,0x90,0x08,0x59,0x2c,0xda,0xa2,0x0f,0xa1,0x4d,0xbc,0x80, +0x32,0x54,0x30,0xa5,0x94,0xa4,0x4e,0xb7,0x46,0xab,0x54,0xad, +0x2f,0x9f,0x77,0xb9,0x6d,0x39,0x64,0xdb,0xc2,0xc9,0xf5,0xd1, +0x8b,0x0c,0x5d,0xae,0xbf,0x92,0x7f,0xc5,0x20,0x93,0xf7,0xd4, +0xb1,0xd6,0xd4,0xd2,0xe5,0x84,0xf3,0xb0,0x98,0xe4,0xe8,0x64, +0x6a,0x26,0xed,0xbb,0x92,0xc8,0x07,0xdc,0xf4,0x1d,0x3c,0xd8, +0xcd,0x61,0x46,0x10,0x49,0xd0,0x88,0xd1,0xbb,0xb8,0xfb,0x72, +0x14,0x7f,0xea,0x4e,0x78,0x7f,0x60,0x2f,0x75,0x40,0x3d,0xc2, +0x5b,0x62,0x28,0x53,0xea,0xc4,0xde,0x5f,0x21,0xaf,0x13,0xf3, +0x7e,0xd1,0x59,0x86,0xe7,0x0d,0xe1,0xfc,0x12,0x16,0x9b,0x21, +0x84,0xf8,0xe8,0x7b,0x9a,0xb8,0x59,0xfa,0x36,0x7b,0x37,0xb9, +0x37,0x58,0x7a,0xf0,0x15,0x46,0x85,0xc6,0x59,0x46,0xce,0x36, +0xf6,0x8e,0x36,0x6e,0x05,0x46,0x7c,0x4d,0x49,0x65,0x59,0x69, +0x55,0xb2,0x65,0xbc,0x79,0xb4,0xa9,0xc9,0x6a,0x3d,0xed,0xad, +0xda,0x34,0x46,0xdd,0xea,0x68,0xef,0xa5,0x03,0xf0,0x82,0xed, +0x79,0x2b,0x0b,0x65,0x54,0x3b,0xe7,0x63,0xb5,0x6b,0xaa,0x1e, +0x93,0xa2,0xa1,0xd0,0xc9,0xbc,0x6a,0xeb,0x07,0x3f,0x58,0xe1, +0x0f,0xbc,0x05,0x8c,0x55,0xad,0xe9,0x2c,0xeb,0x2f,0xbd,0xce, +0x09,0x36,0x72,0x4b,0xd2,0x53,0xd9,0x5c,0x53,0x5c,0x65,0x57, +0xc1,0x7b,0x3a,0x99,0x59,0x1b,0xba,0xba,0x57,0x1f,0xaa,0x3f, +0xd2,0x42,0x87,0x26,0x38,0x89,0x19,0xe8,0x04,0x1a,0x8c,0xbe, +0xd6,0x4a,0x63,0x1c,0x61,0x9f,0x63,0x4c,0x9b,0xb8,0x2d,0xa7, +0x31,0x9f,0xc3,0x99,0xac,0xe5,0x09,0xab,0x08,0x9b,0x53,0x31, +0x14,0x21,0x8c,0x49,0x84,0xe9,0x39,0xa0,0x50,0x10,0xd6,0xc9, +0x1b,0x06,0x6b,0x05,0x6b,0x84,0x72,0xb0,0x9d,0x2d,0xcb,0x2f, +0x2a,0xcc,0x2e,0x69,0x45,0xe5,0xdf,0x71,0x12,0x2c,0x5f,0x59, +0xd6,0xc1,0xef,0x2f,0xd7,0xaf,0xb1,0x6a,0xe4,0xca,0xe0,0x47, +0x32,0x4b,0x5c,0xf4,0x07,0xab,0x28,0x33,0x13,0x9c,0x48,0x06, +0xee,0xbf,0x8d,0x9a,0x30,0x09,0xbf,0xa9,0x6a,0xe4,0x35,0x2f, +0x9b,0xdf,0x71,0xfb,0xa1,0xa5,0xa2,0xa3,0xbb,0xac,0xd9,0xb6, +0x82,0xf7,0xb0,0xb0,0xb1,0xb4,0x73,0x0f,0xe8,0x09,0x1e,0x88, +0x18,0xe2,0xc0,0xa0,0x63,0x31,0x54,0x8b,0x7b,0x8d,0x84,0xb1, +0x2b,0xf1,0x3f,0xc6,0xf0,0x9f,0xa5,0xe2,0x3a,0x23,0x38,0xc4, +0x18,0x9b,0xed,0xb4,0x5a,0xe7,0x1e,0x70,0xd9,0x77,0xc8,0xb7, +0xdd,0xe2,0x28,0x9f,0xe8,0x95,0xe0,0x1e,0xe7,0x66,0x1a,0x61, +0x7c,0xca,0xe8,0xf4,0xc0,0x8f,0x57,0x41,0xa1,0x17,0x38,0xb3, +0x7c,0xde,0x5b,0xdb,0x4d,0xc3,0x55,0xe7,0x68,0xd6,0x91,0x6c, +0xff,0xcc,0x8a,0xc1,0xb2,0x5b,0x79,0xd7,0x4c,0xb2,0x78,0xdf, +0x03,0x1e,0x07,0xdc,0x0d,0x8e,0x27,0xd2,0x57,0xbc,0xab,0x0d, +0xdf,0x6a,0xd9,0x66,0x5c,0xaf,0x7f,0xd0,0xf6,0xa0,0xfd,0x41, +0xb7,0x4d,0xdf,0xf1,0x91,0xfa,0xed,0x17,0xe8,0x2b,0x52,0x49, +0x5c,0xd6,0xf3,0xbf,0x6b,0x2e,0x5d,0x3a,0x16,0x19,0x70,0x31, +0xa0,0x21,0x85,0x4f,0xf6,0x18,0xcc,0xe9,0x2b,0x69,0xad,0x50, +0x8a,0x3f,0x16,0x17,0x10,0x7b,0xf4,0x80,0xce,0x3a,0xe3,0x75, +0x6e,0xd9,0xa6,0xfc,0xd3,0xb2,0x1f,0xdb,0xaf,0xf4,0x46,0xfb, +0x47,0xfb,0x5d,0xf2,0xdb,0xb1,0x15,0x15,0xb6,0xa0,0xa2,0x69, +0x9e,0x29,0x0f,0xa3,0x9a,0x60,0xf8,0xdd,0x3b,0xb7,0xb8,0x0b, +0x87,0xcf,0x1f,0xf2,0x51,0xde,0x71,0x24,0xc0,0x50,0x65,0x0f, +0x93,0x60,0xac,0x70,0x99,0xf9,0xa9,0xbc,0xfa,0x6f,0x98,0x6c, +0x06,0x13,0x34,0x9f,0xab,0xa6,0x25,0xa7,0xa4,0x24,0xa5,0xd0, +0x31,0x88,0xce,0x24,0x75,0x5f,0xc2,0xd6,0xe8,0x1d,0x6d,0xa9, +0xfc,0x89,0x9b,0x81,0x8f,0x02,0xae,0x70,0x78,0x1e,0xeb,0x48, +0xe9,0x93,0xd4,0xf7,0x31,0x6f,0x4d,0xa2,0xf9,0x13,0xab,0x02, +0x56,0xbb,0x6d,0xe4,0x14,0xff,0xf9,0x76,0x0a,0x86,0x31,0x2e, +0xa1,0x31,0x65,0xaa,0x60,0x02,0xfd,0x70,0x07,0x19,0xb6,0xb0, +0xa9,0xa0,0x27,0xa3,0x87,0x72,0x57,0x6b,0x36,0x3a,0x33,0x2a, +0xf3,0x52,0xa6,0x6e,0x02,0xef,0xbf,0xca,0x64,0xee,0xde,0xf5, +0xb5,0x56,0xfc,0x85,0x0b,0xe7,0x2f,0x5e,0xb8,0xc0,0x89,0xa1, +0xec,0xb6,0x1c,0xff,0x3b,0x2a,0x70,0x94,0xe9,0x89,0x4b,0xeb, +0x50,0x85,0x99,0xac,0x61,0xaa,0x82,0x58,0x21,0xfc,0x40,0x1e, +0x9a,0x6e,0xd9,0x4d,0xff,0xa0,0x22,0x36,0x09,0x6b,0xa1,0x89, +0xc5,0x16,0x1a,0x03,0x76,0xdf,0xbf,0xc5,0xb4,0x4e,0xb9,0xb5, +0x6d,0x37,0x03,0xe3,0xa7,0xdc,0xbf,0xb7,0x8d,0x85,0x39,0x9b, +0x48,0x49,0x53,0x61,0x5b,0x76,0x07,0x07,0x6b,0x98,0x63,0x96, +0xee,0x7a,0x6e,0xe6,0x9c,0xd8,0x59,0x4e,0x36,0xec,0x7e,0xc2, +0x82,0xc1,0x06,0xb2,0xfb,0x89,0xf4,0x8e,0x7b,0x1b,0xb6,0x33, +0xf0,0x37,0xa5,0x94,0x5e,0xf3,0xc0,0x8b,0x85,0xa5,0x74,0xc2, +0x80,0xd7,0x47,0xf4,0x62,0xe5,0xb7,0x40,0x91,0x98,0x0a,0xde, +0xad,0xac,0x78,0x00,0x87,0x11,0xdc,0x20,0xa8,0xc0,0x06,0x16, +0x5f,0xd0,0xef,0x7a,0x00,0xc5,0x5b,0x59,0x3b,0x5c,0x43,0x92, +0x8b,0x52,0xab,0xa3,0xb3,0x0d,0x92,0xf8,0x30,0x97,0x23,0xe6, +0xfe,0x0e,0xcb,0x8f,0x2d,0x09,0x59,0x12,0x11,0x65,0xc8,0xc3, +0x92,0x04,0xd0,0x2e,0x84,0xb9,0xd5,0xa7,0x3b,0x78,0xf3,0x60, +0xb3,0x50,0xb3,0x30,0x0e,0x97,0x9c,0x26,0x27,0x8a,0x8e,0x35, +0x07,0x17,0x18,0x07,0xf0,0xf1,0x5e,0x29,0x16,0xd1,0x1e,0xff, +0x93,0xb7,0x35,0x1f,0xd3,0xa5,0xfd,0x1a,0xa9,0x44,0xef,0x16, +0xc6,0x28,0xda,0x07,0xd9,0x2d,0x38,0x71,0xce,0x16,0xa5,0x2a, +0xcb,0xfb,0xfd,0x7d,0xf7,0xaa,0x1f,0x2a,0x81,0x1a,0x13,0xb8, +0xc9,0x7b,0xa7,0xcd,0x3e,0x87,0x4a,0xf3,0x4a,0xfb,0x02,0x07, +0x6b,0xbe,0xca,0xbb,0xd5,0xb6,0xc6,0x4e,0x6b,0xdb,0xfa,0x7d, +0x38,0x52,0xab,0x92,0xf2,0xc1,0x73,0x30,0x1b,0x58,0xd8,0x58, +0x03,0x7e,0x14,0x7a,0xbb,0xb3,0x31,0x99,0x51,0x19,0x97,0x32, +0xb9,0xbe,0xf7,0x90,0x3e,0x7f,0xf0,0x3d,0x24,0x75,0x63,0x12, +0x73,0x48,0xee,0x4d,0x1c,0x8e,0x7f,0xa9,0x26,0x17,0x80,0x81, +0xb8,0x82,0x4d,0x33,0x50,0x00,0x15,0xa6,0x2e,0x2d,0x95,0x62, +0xd6,0x12,0xfc,0x4b,0x0c,0x61,0x77,0x14,0x1d,0xba,0xa9,0x02, +0x81,0x4c,0x6d,0x52,0x6a,0xad,0x2a,0x7c,0x25,0x55,0x93,0xa3, +0xb8,0x58,0xca,0x47,0x7f,0x44,0xb4,0xf4,0x31,0xbd,0x5b,0x5b, +0xff,0x73,0x3e,0xba,0x61,0x7f,0x27,0xa4,0x1b,0x0e,0x74,0x7e, +0xc9,0x47,0x17,0xb3,0xe4,0xbf,0x93,0x66,0xd9,0x66,0xf3,0x41, +0x99,0xbb,0xbc,0x41,0xee,0xce,0xca,0x8e,0xc9,0xd6,0x11,0xf1, +0xa6,0x7c,0xb3,0x70,0x93,0x85,0x7f,0x71,0x2d,0x69,0x80,0x88, +0x7a,0x8c,0x68,0xd0,0xb5,0x42,0x5f,0x6b,0xf0,0xb5,0xc2,0x38, +0x6b,0xe1,0x59,0x3d,0xab,0x8f,0xee,0x04,0xbe,0x11,0x7d,0x50, +0x09,0x74,0x59,0x07,0xdb,0xad,0xee,0xa8,0xec,0x4e,0x79,0x23, +0xcc,0xab,0xb8,0x5c,0x54,0x5e,0xcb,0x49,0x52,0x96,0x0b,0xa2, +0xd8,0x1c,0xed,0x47,0x8e,0xb0,0xcc,0x29,0xa5,0x89,0x37,0x8d, +0xb3,0x89,0x73,0x89,0xcf,0x4b,0xc9,0x4d,0xcf,0xce,0xe2,0x76, +0xfe,0x49,0xcc,0xf0,0xdf,0x16,0x56,0x20,0xcb,0x89,0x9f,0xff, +0xc1,0xa3,0x3e,0x81,0xf6,0xa9,0xde,0xa9,0x47,0xd3,0x3f,0xaf, +0xfd,0x8f,0x26,0x0f,0xa1,0xa0,0x13,0x0b,0xee,0x69,0x6c,0xc7, +0x4b,0x86,0x70,0x69,0x0b,0x36,0x1a,0xc8,0x96,0x76,0xb1,0xf2, +0xad,0x7e,0xff,0x5f,0x11,0xbe,0x7f,0xc5,0x2c,0xca,0xc1,0x43, +0x2e,0x31,0x09,0xdb,0x81,0x6c,0x81,0x25,0x06,0x59,0xdd,0xbc, +0x71,0xaa,0x75,0xaa,0x43,0x6a,0x79,0x5e,0x63,0x6d,0x7e,0xa1, +0x7d,0x05,0xef,0xe3,0xae,0x6f,0xee,0xe8,0xa5,0x5e,0x61,0x5b, +0x79,0xb8,0x82,0xa3,0x8d,0xad,0x2d,0xb6,0xa0,0x36,0x1c,0x61, +0x0e,0xec,0xc2,0x61,0x86,0x38,0xd2,0x29,0x47,0x97,0xff,0xad, +0xf8,0x7d,0xc7,0xfd,0x9b,0x1c,0x7e,0x85,0xe7,0xfe,0x5f,0x35, +0x04,0x71,0x9a,0x60,0x40,0x36,0x8a,0xdb,0x7e,0x60,0xa5,0xea, +0x0e,0xe5,0x24,0x61,0x75,0xf7,0x9e,0x5f,0xb7,0x16,0x75,0xf0, +0x6b,0x6e,0x1a,0xde,0xf6,0xbb,0xcd,0xed,0x62,0x7c,0xb7,0x9a, +0x6d,0x9e,0xb9,0xf3,0xf3,0x4e,0x4a,0xbf,0xb4,0x93,0x02,0x3f, +0xe5,0x10,0x1f,0x9c,0xac,0x8b,0xd3,0x77,0x2e,0x69,0x30,0xe3, +0x9f,0xc0,0x88,0x2b,0xb0,0x3a,0x03,0xc6,0x72,0xbf,0x9c,0x21, +0xa5,0x38,0xfe,0x36,0x2e,0x7e,0x84,0xc3,0xeb,0x28,0x20,0x7a, +0xb9,0x1b,0x66,0xb8,0x52,0x70,0x28,0x46,0x8a,0x4e,0xe4,0xcb, +0x36,0xcb,0xd8,0x0f,0x5d,0x18,0x69,0xf0,0x86,0xc6,0xce,0xd5, +0xfa,0xb0,0x1a,0x07,0x19,0xbd,0x30,0xdd,0x13,0xfa,0x11,0xb1, +0xd2,0x36,0x4b,0x2a,0xcc,0xc8,0x7f,0x5b,0xf0,0x5d,0x0f,0x2f, +0x6d,0xcd,0x18,0x87,0x49,0x79,0x27,0x93,0xc8,0x75,0xa8,0xde, +0xdb,0x2f,0x98,0x8b,0x8b,0x44,0x73,0x16,0x3e,0x08,0xb3,0x08, +0xe6,0x63,0x35,0xe4,0xb3,0xa8,0x87,0xd6,0x24,0xa5,0x2b,0xb1, +0xff,0x7f,0xb6,0x63,0xf4,0x03,0x4d,0x39,0x3c,0x0d,0x73,0x48, +0x8e,0x7e,0xce,0xa6,0x04,0x1d,0x69,0x3b,0xa6,0xef,0xe0,0xb3, +0x43,0x9d,0xd4,0x0b,0xec,0x87,0x30,0x22,0xd7,0xa9,0x17,0xda, +0x28,0xa2,0xea,0x64,0xe2,0x53,0xe3,0x32,0xa2,0x53,0x35,0x62, +0xf8,0x13,0xfe,0x21,0xbe,0x41,0x7e,0x1c,0xea,0x32,0x30,0xe9, +0xee,0xad,0x67,0x55,0x3f,0x51,0xa7,0xe0,0xc6,0xc6,0x26,0xc5, +0x25,0xc7,0x24,0x1b,0x25,0xf3,0xb6,0x3b,0xd4,0x35,0xe7,0x19, +0x96,0xda,0xf1,0x57,0xcb,0xdb,0xaa,0x6a,0x1a,0xa8,0x8f,0x65, +0xbc,0xcd,0x9c,0xac,0x8c,0xec,0x3c,0x0a,0x9d,0xf3,0x3d,0x32, +0x9c,0x9d,0xf9,0x42,0xbf,0xc2,0xc3,0x85,0x5e,0x06,0x4e,0x7b, +0x5c,0x57,0xbb,0x15,0x5a,0xf2,0xd5,0x49,0xe5,0x49,0x25,0xd4, +0x3f,0x8d,0x92,0x2d,0x66,0x3d,0xbe,0xf7,0x8a,0xf0,0x52,0xf1, +0x8e,0x08,0x8a,0x70,0x9c,0xba,0x8e,0x49,0xb6,0x54,0x78,0xc2, +0xdc,0xcd,0xc9,0x6a,0x88,0x51,0x8d,0xae,0xbc,0xd0,0x72,0xae, +0x9f,0x93,0x2f,0x6d,0x91,0xe9,0x30,0xea,0xf0,0x8e,0x54,0x27, +0x24,0x96,0xaa,0xb6,0xb0,0xba,0x49,0x0a,0xea,0x78,0x96,0x75, +0x8b,0x88,0xc9,0x53,0x85,0xa9,0x70,0x4c,0x0d,0xa7,0xb2,0x49, +0xd6,0x0a,0xf0,0x35,0x53,0x9e,0x98,0x58,0xac,0x0a,0x0c,0x7e, +0x40,0x1d,0x56,0x2f,0x3f,0xa0,0x5b,0x05,0x26,0xe2,0x64,0x22, +0x86,0xd4,0x0b,0x21,0x8c,0x18,0x82,0x53,0x48,0x83,0x10,0x62, +0xc5,0xca,0xc7,0x8a,0xb3,0x48,0x6b,0x5d,0x55,0x67,0x76,0x83, +0x5e,0x3a,0x7f,0xc8,0xc6,0xd9,0xda,0xcc,0x96,0x13,0x5a,0x60, +0x04,0xc9,0xf1,0x4a,0x75,0x4b,0x76,0x6c,0x4f,0xe6,0x03,0xab, +0x7c,0x4b,0xfc,0x72,0x38,0xb4,0x0c,0x20,0x69,0xce,0x49,0xf6, +0x31,0xb6,0x7d,0x71,0x7c,0x58,0x4d,0x40,0x8d,0x7f,0x09,0x87, +0xee,0x61,0x24,0xce,0x29,0xca,0xec,0x82,0xd5,0x50,0x24,0x7f, +0xba,0x25,0xac,0xf1,0x78,0x39,0x45,0x7e,0x6b,0x84,0x31,0x44, +0x70,0x84,0xa3,0xa2,0x3d,0x93,0x9f,0x9f,0x53,0x94,0x49,0x49, +0x8b,0x51,0x97,0xb8,0x96,0x49,0xc8,0x8e,0xcb,0x89,0x96,0x10, +0x9b,0xfb,0xe2,0x03,0xab,0xd6,0xe9,0x96,0x9b,0xf2,0x19,0xc9, +0x19,0xa9,0x69,0x69,0xdc,0x1a,0x71,0x32,0x71,0x0a,0x70,0x38, +0x66,0x1f,0xc8,0xc1,0x8b,0x3f,0x7b,0x66,0x42,0x9e,0x16,0xe6, +0xe1,0x48,0x3d,0x18,0x89,0xc8,0xda,0x05,0xd9,0x1d,0xb7,0x0e, +0x4e,0xd5,0xe5,0x41,0xa1,0xe2,0x75,0xd9,0x8b,0x06,0x4e,0xf0, +0x15,0x78,0x49,0x52,0xff,0x9d,0x24,0xa9,0xbf,0x07,0xe3,0x88, +0x58,0x80,0x75,0x3b,0x8d,0x64,0x33,0x3b,0xcc,0x18,0x71,0xac, +0x74,0xda,0x28,0x7c,0x3e,0x84,0xb3,0x94,0xac,0x85,0x13,0x08, +0xff,0x80,0xe1,0x6c,0xcf,0x14,0x08,0xff,0x44,0xff,0x55,0x04, +0x17,0x99,0x02,0x81,0xa8,0x01,0xd4,0x81,0xf9,0x9a,0x38,0x1f, +0xf7,0x6b,0xc1,0xe8,0x95,0x0c,0x1e,0x3f,0x8c,0xfb,0xe7,0xe3, +0x22,0x95,0x16,0x9b,0xe7,0xf0,0x6d,0x19,0xac,0x88,0x01,0x33, +0x25,0x98,0xc7,0xe0,0xca,0x53,0x14,0x81,0x6d,0x56,0x31,0x8a, +0x08,0x0a,0xb4,0x9d,0xba,0x56,0x3a,0x13,0xfa,0x80,0xb9,0x51, +0x5c,0xf8,0x63,0xbc,0x6a,0xfc,0xcf,0x91,0x30,0x01,0x5c,0x95, +0xd1,0x96,0x39,0x97,0x75,0x36,0x2b,0x5b,0x59,0x30,0x86,0x3c, +0xe2,0x87,0x63,0x8c,0x17,0xe3,0x3c,0x9c,0x5c,0xae,0xc3,0xc3, +0x34,0x60,0x6f,0xfc,0x91,0x04,0x53,0xb9,0x4b,0x4c,0x1c,0x2a, +0x3f,0x9c,0x03,0x33,0x70,0x74,0x69,0xbf,0x94,0x0a,0x36,0xd1, +0xe8,0xd7,0x43,0xd2,0x96,0xd0,0x64,0xb1,0x98,0x68,0x5d,0x5d, +0x75,0x75,0x53,0x93,0x83,0x39,0xff,0xd0,0xfc,0x85,0xda,0x80, +0x3a,0x87,0x8f,0xcc,0x08,0x4c,0xd6,0x80,0x99,0x4b,0x3f,0x2d, +0x2b,0xef,0xe6,0xe7,0xbc,0xc2,0xd9,0xbf,0xe2,0x57,0x03,0x9c, +0xe2,0x6f,0xb2,0x2c,0x72,0xd5,0xb5,0xdf,0xa1,0xc7,0xba,0xa4, +0x8d,0x37,0xac,0xdb,0x5f,0xbb,0xbf,0x98,0x93,0x0d,0x61,0x2c, +0x11,0x17,0x32,0xc9,0x3d,0x89,0x5d,0xb1,0x4d,0x1c,0xbc,0xeb, +0x15,0xff,0xd6,0x05,0x73,0x26,0xd4,0xf2,0xb8,0xc1,0x31,0x5d, +0x0e,0x77,0x6a,0xc3,0x72,0xe6,0xd0,0x26,0xef,0x4d,0xde,0xea, +0x9c,0xa0,0xc7,0x7c,0xb7,0x21,0x62,0x73,0x88,0x0e,0x67,0x12, +0xe6,0x1b,0x64,0x3c,0x15,0x0d,0x3f,0xaf,0x11,0xee,0x63,0x1e, +0xb7,0x94,0xde,0x4d,0x52,0x4d,0xba,0x19,0xf3,0xfc,0x3c,0xcc, +0xe4,0xc4,0x75,0x4c,0x5a,0x73,0x5a,0x5f,0x6a,0x3f,0x27,0x6c, +0x66,0xfe,0x9d,0x99,0x4f,0x6e,0x3b,0x5e,0xb7,0x1e,0x32,0x2b, +0x6b,0xe5,0x75,0x1b,0xb7,0xb5,0xee,0x2a,0xe3,0x0a,0xe4,0xf3, +0xc8,0x83,0x3f,0x86,0x80,0xaf,0xf8,0xeb,0x4b,0x76,0xbd,0xc1, +0x97,0xec,0x7a,0x61,0x2f,0x6c,0x25,0x16,0x41,0xa6,0xc1,0xc6, +0xc1,0x52,0x5e,0xe4,0xc4,0x5e,0x9c,0x08,0x7a,0xf0,0x75,0x2f, +0x7e,0x0d,0xc6,0x3a,0x68,0xbc,0x99,0x8d,0xae,0x8f,0xaa,0xbf, +0x58,0x67,0x14,0xc5,0x87,0xcc,0xf4,0xc3,0xb1,0xf6,0x6b,0x9a, +0x9d,0xf9,0xf4,0xa6,0xe4,0xb6,0xf8,0x76,0xee,0x15,0x9d,0x94, +0xb3,0x74,0x61,0x16,0x7a,0x31,0x5a,0xc7,0xb5,0x82,0xf5,0xc2, +0x12,0x34,0x79,0x98,0x90,0x0d,0x33,0x4a,0x81,0xab,0xe6,0x20, +0x0e,0x76,0x93,0x8b,0x25,0x17,0xca,0xce,0x55,0x72,0x60,0x25, +0x2c,0x12,0xcd,0xc4,0x45,0x60,0xc8,0x9c,0x71,0xf8,0xde,0xe5, +0x94,0x3b,0x87,0x3e,0x86,0xe0,0xcc,0x78,0xe1,0xa4,0xbd,0xbb, +0x71,0x86,0x56,0x01,0x45,0x4e,0xcb,0xaf,0xff,0xf0,0xb2,0x08, +0x96,0x4a,0x0b,0x72,0x67,0xd4,0xbe,0x53,0x8b,0xb0,0xe5,0x2c, +0x23,0x82,0x82,0x4d,0xa7,0xe2,0x08,0x49,0xfa,0xfc,0x23,0xf3, +0x34,0xbf,0xe8,0x56,0xac,0x6a,0x74,0xef,0xc5,0x87,0xe7,0x80, +0xe1,0x30,0x17,0x5e,0x12,0xfc,0x16,0x26,0xc1,0xb7,0x4c,0x0f, +0xf5,0x1b,0xf4,0x62,0xb6,0x54,0xff,0xcb,0xd2,0x94,0xe0,0x14, +0x7a,0x7f,0x0a,0x0b,0x46,0x53,0xe8,0xad,0x29,0x38,0x9b,0xf2, +0x80,0xf9,0xfb,0xc9,0x03,0x99,0xc1,0xd6,0xab,0xb2,0xa7,0xf8, +0x0b,0x0a,0xb8,0x15,0x04,0x7c,0x2c,0x7f,0xca,0x5e,0x95,0xe5, +0x10,0x8a,0x65,0x05,0x68,0x03,0x01,0x1c,0xe5,0xca,0x72,0x03, +0x46,0xf1,0x1f,0x0d,0xb8,0x4d,0xfa,0x16,0x43,0x17,0xfe,0x0c, +0x4b,0x35,0x70,0x29,0xde,0xc1,0xae,0x65,0x3a,0xc2,0x1c,0xd6, +0x1d,0xc7,0xcd,0x58,0x8c,0x29,0x38,0xbc,0x80,0x3a,0xaf,0x26, +0xf8,0xea,0xf7,0x3f,0x53,0x61,0x1e,0x17,0xc5,0x24,0xe3,0xbc, +0xbf,0xa6,0xc3,0x10,0x4e,0x2a,0x18,0xe0,0xb1,0x08,0x86,0xe3, +0xc8,0x37,0x6e,0x92,0x34,0xfb,0x33,0xe8,0x26,0x10,0x8b,0x4e, +0x4c,0xc8,0xd9,0xd0,0x33,0xa1,0x2a,0x18,0xc3,0x08,0xcf,0xa7, +0x60,0x16,0x73,0x26,0xee,0x6c,0x5c,0xbc,0x32,0x38,0x41,0x36, +0xab,0xf8,0xcf,0x3e,0xd8,0x46,0xba,0x77,0x08,0xf9,0xa2,0x22, +0x9b,0x94,0x9d,0x90,0x1f,0x9b,0x7f,0x20,0x8e,0x0f,0xf7,0x3a, +0xee,0x76,0xd4,0x8b,0xc3,0x6e,0x31,0x7f,0x97,0xbe,0x30,0x93, +0x71,0x5d,0x8d,0x5f,0x19,0xe2,0x19,0xf3,0x4c,0x6d,0x1e,0x6a, +0x87,0x60,0x44,0x67,0xf6,0xe7,0x5a,0x72,0xb9,0x38,0x16,0xbe, +0x32,0x84,0x1a,0x8d,0x74,0x3a,0x38,0xbf,0x6b,0x46,0xd5,0x4e, +0xc7,0x9f,0x39,0x28,0x14,0x0a,0x89,0x78,0x10,0x6b,0x6e,0x1c, +0xd8,0x83,0xb9,0xc2,0x41,0x16,0x0a,0xc5,0x29,0xa4,0xf7,0x09, +0x13,0x75,0xf1,0x7c,0xd4,0x69,0x15,0x70,0xc4,0x29,0x05,0x8d, +0x68,0x05,0x13,0x83,0xa3,0x4f,0x9c,0x0e,0x0b,0x51,0x0a,0x0b, +0x51,0x38,0xd9,0x0c,0x17,0x5a,0xf1,0x02,0x2c,0xd3,0xc5,0x65, +0x18,0x66,0x0a,0xf6,0x8c,0xbb,0xb9,0xa6,0x35,0x8e,0x35,0xce, +0x31,0xe7,0x41,0xb9,0x6f,0xa0,0x25,0xf9,0x21,0xb5,0x12,0x3c, +0xc1,0x81,0x1c,0x72,0xf2,0x72,0x77,0xf0,0xa8,0xb4,0xe7,0x2b, +0x4b,0x8a,0x4b,0x0b,0xaa,0x39,0xbc,0xbf,0x8d,0xf8,0x96,0x3a, +0xd4,0x79,0xe5,0xdb,0xb8,0xf1,0xa5,0x1e,0xa5,0xb6,0x59,0x14, +0x67,0x40,0xa9,0xec,0x47,0xa2,0x35,0x7b,0xc3,0xda,0x79,0xea, +0x65,0x46,0xfc,0x9f,0xb7,0x9f,0xff,0x76,0x4d,0x92,0x1a,0xde, +0x3b,0x93,0xa8,0x37,0xaf,0x6d,0xdc,0x5e,0xe8,0x6e,0xce,0x3f, +0x76,0xba,0x6f,0x7f,0xdd,0x82,0xd3,0x16,0xc7,0x11,0x08,0xed, +0xc5,0x50,0x0a,0xc5,0xd3,0xfb,0xc4,0x07,0x3a,0x70,0x0e,0xfd, +0xd0,0x5f,0x17,0xfc,0x69,0x33,0xe7,0xe9,0x08,0xff,0xe9,0xc3, +0x12,0x46,0x1c,0x27,0x3c,0x23,0x9a,0xb3,0xe6,0x23,0x83,0xc3, +0x76,0x95,0x18,0xf2,0xed,0xe5,0x55,0xa5,0xc5,0xa5,0x9c,0xa8, +0xd9,0x2f,0x5c,0x64,0xcb,0x6a,0xcb,0x5a,0xca,0xa8,0xcb,0x17, +0x86,0x64,0x1e,0xe4,0x6f,0xb5,0xe9,0xe2,0x58,0xdc,0xcb,0x62, +0x74,0x00,0xee,0xdc,0x87,0x53,0x54,0xba,0x74,0x14,0xee,0xc3, +0xca,0x74,0x30,0x85,0x44,0x65,0x98,0x20,0x3b,0xdf,0x2b,0xad, +0x0c,0x65,0x92,0xdd,0x7d,0xc8,0xdc,0x5c,0x5b,0xe1,0x6a,0xce, +0xbf,0xb4,0x83,0x11,0x6a,0xd7,0xf4,0x28,0x82,0x17,0x17,0x52, +0xb8,0x92,0x58,0xa9,0x2a,0x2c,0x3a,0x20,0xae,0x60,0xb7,0xe4, +0x7b,0x53,0x30,0xb8,0x83,0x69,0x48,0x4e,0xa3,0x68,0x45,0xe7, +0xf3,0x6a,0xad,0x13,0x7b,0x59,0x50,0x20,0xcd,0x0b,0xaa,0x51, +0x39,0x03,0x15,0x07,0xb2,0x79,0x3f,0x18,0x6d,0x03,0xd3,0xcc, +0x3e,0x72,0xe2,0x75,0x71,0x36,0xe9,0x83,0xc9,0xd9,0x30,0x3e, +0x0e,0xa6,0x6a,0xc5,0xf2,0x61,0xf8,0x95,0x1f,0x72,0x3a,0xc8, +0xd2,0xc6,0xd8,0x26,0x69,0xf1,0x69,0xe0,0x78,0x7d,0x18,0x8f, +0x17,0x59,0xab,0x40,0xab,0x2f,0x0b,0x4c,0xd5,0x71,0x35,0xf1, +0x35,0x49,0xd2,0x82,0xd7,0x08,0x69,0xc1,0xeb,0xb9,0x54,0x77, +0xf8,0xf3,0x82,0x57,0x79,0x62,0x79,0x72,0x59,0x32,0x65,0x0f, +0x1e,0xc7,0xdd,0x8e,0x4b,0x95,0xee,0x8f,0xfd,0x77,0xd9,0x8c, +0x85,0x59,0xf2,0x6d,0x64,0xe0,0x11,0xec,0xc3,0x9e,0x7e,0xe8, +0x01,0xed,0xcd,0x03,0xb2,0xe9,0x62,0x23,0x03,0x27,0xf1,0x12, +0xc1,0x7d,0x14,0xef,0xee,0x63,0xfa,0xd1,0x84,0xd0,0x0b,0x6d, +0x34,0x61,0x29,0xc2,0x23,0x68,0x4f,0xef,0xdb,0xb3,0x10,0x31, +0x85,0xde,0xb2,0x97,0x4e,0x16,0xc0,0xf4,0x5d,0xe4,0x17,0xea, +0x4c,0xa3,0x31,0x5f,0xfe,0x81,0x95,0x31,0x82,0x3e,0x01,0xf7, +0x3e,0x74,0x87,0x06,0x38,0xd5,0x2f,0x56,0x6b,0x43,0x18,0x36, +0xa0,0xa3,0x0e,0x1d,0x26,0xaf,0xf0,0xa2,0xb6,0x30,0xd4,0x2f, +0x1d,0x58,0x59,0x2a,0xac,0x22,0xb8,0x0c,0x8a,0x61,0x19,0x43, +0x47,0xc8,0x73,0x69,0x35,0xed,0xf6,0xe7,0xd5,0xb4,0xc7,0xc2, +0x3d,0x62,0x0c,0xe5,0x5b,0xd0,0x1f,0x3f,0x08,0x49,0xf0,0x01, +0x43,0x1f,0x42,0x6d,0x3b,0xae,0x04,0x0e,0xa6,0x75,0xe0,0xb4, +0x17,0xba,0x2b,0xd1,0xea,0x85,0xde,0x4a,0x9c,0x62,0x04,0x53, +0x90,0x63,0xd1,0x65,0x3a,0x89,0x48,0x8e,0x38,0xf3,0xdf,0x6d, +0xa9,0xc9,0x7f,0x75,0xcc,0x00,0x1d,0x7d,0xd4,0xc1,0x89,0x46, +0x30,0x9a,0x09,0xc1,0xc9,0x8e,0x38,0x67,0x03,0x4e,0xac,0x32, +0xe3,0x2f,0x7f,0xcc,0xfe,0x23,0xf2,0x25,0x17,0x25,0x26,0x77, +0x0b,0xb1,0xff,0xdd,0x94,0xba,0x85,0x1b,0x2b,0x2a,0x15,0x84, +0xb9,0x90,0x4a,0xe8,0xf8,0xa5,0x1e,0x85,0x41,0x22,0x7e,0x4b, +0x70,0xeb,0x7b,0xd8,0xca,0x74,0xcf,0x27,0xef,0x61,0xcf,0x7c, +0x16,0x83,0x2d,0xc9,0x0c,0xdc,0xfa,0x17,0x0b,0xfe,0x53,0x60, +0xcf,0x0c,0xdc,0xc3,0xe0,0x1b,0x3c,0x42,0xde,0xe5,0xff,0x52, +0xd7,0x5f,0xeb,0x5a,0xc3,0xeb,0xda,0xaf,0x71,0x5e,0x78,0x88, +0xd2,0xf1,0x2e,0x72,0xcf,0xe7,0xa5,0xcd,0x75,0xa7,0x82,0x56, +0x7e,0x6f,0xe5,0xf2,0xea,0x5d,0x92,0x02,0xd6,0x21,0x49,0xaf, +0x6a,0xe6,0xff,0x8f,0x5e,0xd5,0x0f,0x6c,0x6c,0x7b,0xd4,0x17, +0xbd,0xaa,0x60,0x5c,0xe2,0x83,0x13,0x76,0xa2,0x52,0x8b,0x0b, +0x5f,0x79,0x33,0xff,0x76,0xda,0x3d,0xee,0x09,0x4e,0x67,0xd0, +0x4d,0x17,0x55,0x70,0x15,0xce,0x51,0x29,0xd5,0x06,0xd5,0xff, +0x4b,0x73,0x2a,0x0a,0xb7,0xdd,0xc1,0x31,0x30,0xfd,0x8b,0xe6, +0xd4,0xba,0x2f,0x9a,0x53,0xae,0xca,0xe2,0x2b,0x71,0x03,0x91, +0xed,0x07,0xa1,0x4f,0x5c,0x23,0xff,0xcf,0xc0,0x10,0x3c,0xeb, +0x63,0xd7,0xc9,0x66,0x90,0xc0,0x4d,0x01,0x3b,0xfc,0xf6,0xb8, +0xb4,0x3b,0xb6,0xd9,0x76,0x58,0x3b,0xf0,0xad,0x07,0xea,0x35, +0xab,0x35,0x5d,0x96,0x5a,0xaf,0xd1,0x5d,0x57,0x6f,0xc3,0x77, +0xfe,0x50,0xf7,0xb8,0xec,0x69,0x99,0x6e,0xa9,0x4e,0xa9,0x7a, +0x53,0x0d,0x6f,0x77,0xdf,0xfe,0x86,0xed,0xb5,0x82,0x1f,0xb3, +0x9e,0xa7,0xbf,0xa3,0x23,0xed,0xdb,0x5e,0xe9,0x13,0x5f,0xf5, +0x89,0x33,0xe5,0xff,0xe9,0x1f,0x82,0x6b,0x7d,0x6c,0x99,0xc0, +0x92,0x3b,0xd7,0xcb,0xee,0xc3,0x38,0xe5,0x5e,0x58,0x89,0x96, +0xac,0x56,0xfa,0x91,0x01,0x95,0x56,0xa6,0x36,0x4e,0x1a,0xd6, +0x63,0x59,0xe3,0x34,0x05,0x5c,0x60,0xc3,0x1e,0x8a,0x88,0xce, +0x55,0x85,0x0b,0x98,0x3d,0x9b,0xc5,0x11,0x7e,0x7a,0xfb,0x75, +0x54,0xf0,0xb4,0x38,0x82,0xb4,0xfd,0x50,0xf3,0xa8,0xf8,0x69, +0x89,0x6e,0x91,0x4e,0xf1,0xfe,0xa6,0x6a,0xde,0xe1,0x81,0xd3, +0x4d,0xbb,0x6b,0xf9,0x4f,0x33,0x9f,0xa7,0xbd,0xd3,0x4f,0xe6, +0x83,0x36,0x1d,0xdb,0x79,0x64,0x8f,0x5b,0x9b,0x4b,0x9b,0x43, +0xbb,0xb5,0x23,0xdf,0xb4,0xbf,0x46,0xab,0x4a,0xc3,0x6d,0xa9, +0xcd,0x1a,0x83,0x35,0x9c,0x2c,0x1b,0xb7,0x93,0x4d,0x65,0xfb, +0xea,0xf4,0x9a,0x6f,0xdd,0x6d,0xfe,0x31,0xe7,0x67,0xae,0x51, +0x5c,0x61,0x00,0x1f,0x58,0xff,0x03,0x76,0x7b,0xb5,0x34,0xf5, +0xba,0xad,0x06,0x1c,0x07,0x4d,0xbc,0xf8,0x9a,0xbd,0x4d,0x07, +0xfa,0x74,0xb5,0x4c,0xb6,0x5b,0x2d,0x77,0xcb,0x35,0xe4,0xdf, +0x57,0xfc,0xd0,0x7c,0xb5,0x7b,0xc0,0xe8,0xb6,0xc5,0x73,0x7b, +0x3a,0xa5,0xb3,0xe0,0x5f,0x02,0xbf,0x0e,0xe2,0xaf,0x50,0x2f, +0x4c,0x1d,0x94,0xdf,0xd3,0x14,0xc6,0x61,0x3d,0x3e,0xd2,0x84, +0x47,0x78,0x53,0x5c,0xa8,0xf9,0xcf,0xe4,0x41,0x51,0x52,0x8e, +0x7f,0x26,0xfb,0x81,0xec,0xde,0x3d,0x5d,0x1d,0xc7,0x59,0x15, +0xd3,0x28,0x32,0xb1,0x09,0x46,0xdd,0x7d,0xf0,0x98,0x83,0x80, +0xf3,0xe4,0xd5,0x16,0x60,0xb6,0xc1,0x78,0xfd,0xc2,0x2e,0x1e, +0x99,0xb6,0x19,0x57,0x57,0xdf,0x96,0xe4,0xa6,0xe8,0xa7,0x1a, +0x46,0x82,0x73,0x1c,0xac,0xcc,0xcc,0xf6,0xcb,0xf4,0xcb,0xf4, +0x6d,0xa8,0xe2,0x35,0x06,0xf6,0xf6,0xef,0xe8,0xb6,0x76,0xe1, +0x0b,0xfc,0xf2,0xfd,0x72,0x7d,0x57,0x86,0xcd,0x88,0xc0,0x91, +0xa7,0x9a,0xbb,0x6a,0x07,0x4a,0x7a,0x28,0xbc,0x72,0xd6,0x36, +0xd9,0xb3,0x7f,0x9f,0xed,0xf7,0x76,0x67,0xed,0xce,0x70,0x70, +0x51,0x12,0xcd,0x96,0xe1,0x8c,0xcf,0x0a,0xc1,0x5f,0x31,0xd5, +0x69,0x69,0x15,0xaa,0xc2,0x32,0x71,0xaa,0x01,0x2b,0xcb,0x9d, +0x42,0x7f,0x31,0xef,0xf3,0x2f,0x94,0x98,0xaa,0xf4,0x2f,0xbf, +0x50,0x36,0x60,0xc5,0x75,0x2b,0x49,0xdf,0xb1,0xdb,0x5e,0xad, +0x7e,0x39,0x6d,0xbc,0x71,0xce,0xae,0x7c,0xbd,0x24,0x4e,0xd8, +0x66,0xf2,0xf9,0x5e,0x9b,0x5f,0x4e,0x3b,0x6f,0x9c,0xb5,0xab, +0x80,0xde,0x03,0x37,0xe4,0xc9,0x0e,0xdb,0x99,0xb6,0x8b,0xbc, +0xb3,0xf5,0xf8,0x5f,0xf2,0xff,0x6e,0xb8,0x55,0xcb,0x89,0xee, +0xed,0x64,0x9b,0x2d,0x0e,0xb3,0x59,0x20,0xdd,0x7c,0x53,0x00, +0xc3,0x1a,0xee,0xd6,0xd2,0xf1,0xfa,0xaf,0xcc,0x92,0x88,0x9e, +0x5d,0x42,0x3a,0x66,0xb0,0xc9,0x39,0x14,0xa2,0x65,0xe8,0xc4, +0xf2,0x11,0x87,0x42,0xbc,0x8f,0x79,0x73,0xe8,0x2c,0xa6,0x77, +0x0a,0x9e,0x0c,0xf2,0xa2,0x32,0xc9,0xad,0xcf,0xa8,0x49,0x6b, +0xb2,0xcf,0xe1,0x83,0x6c,0x8f,0x39,0xf9,0x3b,0x1e,0xcd,0xe7, +0x4f,0x46,0x87,0x5f,0x0c,0x0d,0x0d,0x0f,0xe3,0x4f,0x27,0x31, +0xd5,0x43,0x75,0xcf,0xd3,0x9f,0x73,0x8d,0xb3,0x60,0xb1,0x1e, +0x2e,0x46,0x05,0x03,0x70,0x63,0xbd,0x71,0xec,0x26,0x9c,0x8e, +0xca,0xa8,0x58,0x68,0xc2,0x37,0x35,0x56,0xd6,0xe6,0xd7,0x70, +0xe2,0xcc,0x6e,0x61,0xf5,0x7f,0x0b,0x9e,0xbe,0xc1,0x59,0xd5, +0x55,0x0a,0x70,0x19,0xf6,0x90,0x4b,0xe7,0xce,0x46,0xd2,0xc0, +0xf2,0xf5,0xdc,0x82,0x72,0x1c,0xff,0x5b,0x70,0x6c,0x44,0x64, +0xe8,0x71,0xa5,0x93,0x27,0x14,0x4e,0xd5,0xc0,0xaa,0x5a,0x5c, +0x05,0xcb,0xcc,0xa8,0xd3,0x58,0x62,0x0b,0x84,0x39,0x62,0xae, +0x63,0xb6,0xcb,0x32,0xd7,0x9e,0x7f,0xd2,0xd5,0xd1,0x16,0x2d, +0x1d,0xcb,0xde,0xda,0xcc,0x50,0x66,0x23,0x90,0x34,0x9f,0x3c, +0xcb,0x24,0x97,0xaa,0x0c,0x3e,0xa8,0xdc,0xbb,0xe5,0x68,0x16, +0x07,0x17,0xa6,0x84,0x7a,0xf8,0x18,0xfa,0x79,0x57,0x1d,0xe1, +0xb3,0x8b,0x73,0x3b,0xe3,0x0b,0x39,0x50,0x16,0x13,0x48,0x27, +0xe6,0x3d,0xd2,0xdd,0x8c,0x89,0x94,0x14,0xb2,0xde,0x6a,0x8b, +0x2c,0x70,0xa5,0x45,0x06,0xed,0xf3,0xb5,0xad,0x30,0xee,0x72, +0xc2,0x5b,0x1a,0xa5,0x2e,0x2d,0x03,0xc5,0x03,0xb0,0xc2,0x20, +0x43,0x12,0x88,0x6a,0x5f,0x5a,0xe3,0x73,0x8b,0x0e,0xa4,0x1a, +0xd9,0x09,0xe2,0x5f,0x71,0xb0,0xfa,0x60,0x81,0xae,0xb4,0x71, +0x9b,0xe7,0x94,0xe2,0xca,0x09,0x36,0xe2,0x7a,0x22,0x5f,0xdf, +0x2d,0x24,0x40,0x14,0x96,0x33,0xb1,0x29,0xb1,0x69,0xd1,0xa9, +0x14,0x88,0x49,0xa5,0xd5,0xd4,0xa8,0xdb,0xc8,0x2f,0x28,0x2c, +0xcf,0x2c,0xd2,0x2e,0xe4,0x7d,0x1d,0x1c,0x2d,0xec,0xed,0x39, +0xd1,0x88,0x69,0xcb,0x3d,0x2c,0x09,0x49,0xe7,0x2a,0x19,0x7b, +0xe4,0x1f,0x2c,0xf4,0xc8,0xf0,0x56,0xa2,0x13,0x5e,0xad,0x9f, +0x02,0x8f,0x37,0xcc,0x89,0x80,0xb0,0x80,0xd0,0x00,0x0e,0x8f, +0x89,0x1e,0x32,0x25,0xe6,0x8c,0xdd,0xf7,0x4e,0x27,0x1c,0x39, +0xd7,0x13,0x81,0x61,0xf6,0x53,0x37,0x31,0x29,0x26,0x0a,0x77, +0x99,0xfb,0x05,0xb9,0xdd,0x71,0xaa,0x31,0xcd,0x17,0xba,0xce, +0xdd,0xe7,0xe4,0xca,0x83,0xb2,0xf5,0x0c,0xfa,0x02,0xc5,0xc0, +0x26,0x9d,0x82,0x09,0x23,0x9a,0xe0,0x0a,0xd2,0x2d,0x98,0xe8, +0xb3,0xa2,0x5c,0x3c,0x4c,0xda,0xdb,0xea,0xaf,0x67,0x77,0xea, +0x65,0xf2,0x87,0x0c,0xed,0x0d,0x4d,0x4c,0x39,0xa1,0x07,0xa6, +0x91,0x1c,0x97,0x54,0xbb,0x64,0xab,0xae,0x14,0x3e,0xb0,0xf1, +0x70,0xad,0x5f,0x21,0x87,0xb6,0x47,0x48,0x9a,0x6d,0x92,0x69, +0x8c,0xe9,0x40,0x02,0x1f,0xd6,0x1c,0xd0,0xea,0x4f,0x03,0xb2, +0x77,0x28,0x89,0xb3,0x89,0xd6,0x3e,0x67,0x74,0x39,0x92,0xff, +0xae,0x27,0xbc,0x3b,0x48,0x52,0x9b,0xfa,0xac,0x80,0xb2,0xf7, +0x96,0x30,0x9e,0x82,0x1a,0x77,0x26,0x26,0x2b,0x26,0x27,0x2a, +0x47,0xf7,0x8b,0x02,0x4a,0x08,0x1d,0x2a,0xab,0xc5,0x7a,0x61, +0x35,0xb3,0xed,0xb4,0xf1,0x09,0x1b,0x15,0xe7,0x08,0x49,0x01, +0x45,0x83,0x49,0x30,0x50,0x18,0x64,0xae,0xe4,0xe7,0x0e,0xc4, +0xab,0xc6,0xf5,0x5e,0xbc,0x06,0x9c,0xb2,0xb8,0xea,0x8e,0xb0, +0x97,0x91,0x0f,0x62,0x25,0x91,0x69,0x42,0x55,0x0f,0xbe,0x95, +0xff,0xa7,0xf7,0x32,0xc4,0xf5,0xb0,0x82,0x9e,0x6c,0x1e,0xd9, +0x86,0xb7,0xee,0xb3,0x78,0x4f,0x14,0x48,0xed,0xc3,0xe2,0xfb, +0xb9,0x8f,0xb2,0x0d,0xb3,0xf4,0xb3,0x35,0x9b,0x2b,0x78,0x8f, +0x87,0x1e,0x37,0xdd,0xae,0x67,0xff,0x94,0xfa,0x32,0xf9,0xa3, +0x7e,0x02,0x1f,0xba,0x25,0x58,0x2d,0x70,0xdf,0xa1,0x66,0x9f, +0x66,0xcf,0x66,0x1b,0x17,0xbe,0x4a,0xbd,0x44,0xb3,0xf8,0x80, +0xcf,0x52,0x97,0xd5,0xe6,0x2b,0x39,0xd9,0x0e,0xc1,0x88,0x6c, +0xc2,0x5b,0x8f,0x59,0x38,0x22,0x2e,0x21,0x29,0xee,0xe9,0x86, +0x71,0x8e,0x35,0xa9,0x7c,0xf0,0x7f,0xd5,0x4b,0x3e,0x61,0x34, +0xa9,0xb9,0x99,0xfb,0x22,0xee,0x8e,0x69,0x1c,0x1f,0xb2,0xef, +0xf0,0x06,0x7b,0x0d,0x0e,0x92,0xc1,0x94,0x24,0x99,0x25,0xeb, +0xc5,0xe8,0x35,0xd1,0x4f,0xef,0x09,0xec,0x96,0xd4,0x4b,0x66, +0x4b,0xea,0x25,0x97,0x76,0x9c,0xd7,0x6a,0x93,0xd4,0x4b,0x4e, +0x5c,0x0b,0x96,0xca,0x28,0xef,0x91,0xa9,0x13,0x38,0xd8,0x89, +0x07,0x7f,0xd6,0x5c,0x8d,0x79,0xd2,0x5f,0x56,0x86,0x60,0xb5, +0x18,0xcf,0x18,0x0a,0x2b,0xd7,0xe3,0x5d,0x7c,0x23,0x73,0x80, +0x37,0xf8,0xea,0x47,0x41,0xad,0x13,0x53,0x18,0xcd,0x37,0x64, +0x31,0xe6,0xbd,0x61,0xff,0xa2,0x20,0x05,0xe3,0x5e,0x49,0x52, +0x16,0x2f,0x96,0x53,0x36,0xfa,0x0a,0xf2,0x19,0x7c,0x81,0x33, +0xc9,0x12,0x8c,0xfb,0x95,0x85,0xdb,0x53,0x20,0x7f,0x09,0xe6, +0x33,0xa2,0x1e,0x46,0x11,0x98,0x5a,0xf1,0x57,0xe7,0xc3,0x2e, +0xdb,0x1a,0x7e,0xeb,0xff,0x2e,0x10,0xf3,0x9c,0x7c,0x74,0x86, +0x31,0xc6,0x1f,0x8c,0xcb,0x5b,0xa5,0x02,0x31,0x8a,0x9f,0x0b, +0xc4,0xfc,0xb0,0x83,0x5c,0x96,0xf5,0xc8,0xcc,0xe4,0x47,0xd1, +0x88,0x49,0xd2,0x56,0x80,0xf5,0x4c,0x57,0x76,0x46,0x97,0xaa, +0x2c,0x4b,0xfe,0x88,0x95,0xcd,0x92,0xef,0x24,0x90,0xa1,0x8b, +0xae,0xb8,0x04,0xaa,0x21,0xa1,0x0b,0x77,0xb3,0xe5,0x75,0x45, +0xdd,0x39,0x7d,0xda,0xe9,0xbc,0xaf,0x86,0x97,0x96,0x9d,0x21, +0x87,0x2f,0x0d,0x20,0x06,0xab,0x71,0x2e,0xb8,0xea,0xe2,0x87, +0xde,0x47,0x8c,0xa7,0x50,0x47,0x0a,0x1d,0x8a,0x4c,0xd3,0xad, +0xbb,0xb3,0xf9,0x23,0x0d,0x1e,0x6d,0x9e,0x95,0xd4,0xe4,0xb9, +0x14,0x7d,0xec,0x47,0x4d,0x8c,0x11,0x43,0x06,0x6f,0x82,0x11, +0x76,0x5d,0x81,0x2e,0xb0,0x51,0x1b,0x14,0x42,0x30,0x8d,0xc1, +0xf7,0x3d,0xc4,0xb8,0x71,0x7f,0xe3,0x81,0x32,0x57,0x49,0x4c, +0xb0,0xd7,0xb6,0xdb,0x82,0x0b,0x41,0x53,0x62,0xd2,0xa8,0xd6, +0xa6,0x2e,0xc1,0xa3,0xcb,0x0e,0x97,0x2d,0xba,0xcd,0x39,0xd8, +0x26,0xe9,0xe8,0xf6,0x80,0x31,0xf6,0xb0,0x90,0x01,0x3d,0x04, +0x7b,0xd0,0x16,0x7a,0x58,0xb1,0x45,0x3e,0x87,0xdc,0xfe,0xbb, +0x0b,0x94,0x8b,0xfe,0xa4,0x63,0xd5,0x15,0x47,0x9a,0xe3,0x68, +0xb5,0xf9,0x34,0x14,0xfd,0x23,0xfc,0x43,0x9e,0x40,0xfa,0x86, +0x81,0x27,0x90,0xd2,0x85,0x29,0x3f,0x6a,0xad,0xc7,0xf4,0x1f, +0xb5,0xd7,0xe3,0x39,0x03,0x38,0xb7,0x81,0xbd,0x11,0x44,0x5c, +0x1d,0x1c,0x5c,0xed,0x3c,0x0f,0x57,0x78,0x95,0xb9,0x57,0x58, +0x78,0xf0,0x25,0x0e,0xf9,0xce,0x59,0xce,0x66,0x9e,0x46,0x3e, +0x06,0xbe,0x79,0xc6,0x7c,0x4f,0x5e,0x47,0x5e,0x73,0x61,0xaa, +0x6b,0xa2,0x4b,0x9c,0xa3,0x8e,0xce,0x0e,0xeb,0xa5,0x36,0xf4, +0xe6,0x8b,0xba,0x5b,0xf5,0x6d,0xad,0x5c,0xa4,0xeb,0x05,0x47, +0x3b,0xe5,0xc5,0xbe,0xd6,0xeb,0x55,0x36,0x32,0x69,0xba,0x0a, +0x57,0x19,0x98,0x5c,0x46,0x59,0x0d,0xf0,0x87,0xde,0x9a,0xff, +0xac,0x5a,0x5f,0x52,0x5b,0x59,0x45,0xb9,0x7b,0x4d,0x21,0xd1, +0xc0,0x45,0x0c,0x1a,0x9a,0x50,0xdc,0xe8,0x82,0xab,0x54,0xaa, +0x8d,0x60,0x0b,0xf0,0xb7,0x7f,0x8b,0x81,0x8d,0x34,0x2c,0xc7, +0xe3,0xda,0xeb,0x73,0x60,0x37,0xf2,0x95,0x9d,0x3c,0x7a,0xc0, +0x6a,0x33,0x60,0xc1,0x40,0x19,0x78,0xdc,0x43,0x9a,0xee,0x94, +0x3c,0xcc,0xba,0xaf,0x9b,0xc2,0xfb,0x6f,0x77,0xd9,0x6e,0xbd, +0x8f,0xc3,0x41,0x2b,0x52,0x7b,0x37,0xf7,0xc7,0xa4,0x47,0x7a, +0x71,0x7c,0xe0,0x66,0x9f,0xad,0xf6,0xfb,0xa8,0x85,0x01,0xb2, +0x9f,0x88,0x3d,0x1a,0x6a,0xe0,0xac,0x05,0xc8,0x55,0x18,0xf3, +0xf9,0x85,0xf9,0x55,0xf9,0x4d,0x9c,0x98,0xdf,0x27,0xfb,0x96, +0x2d,0xbe,0x9b,0xf7,0x53,0xea,0xaf,0x1c,0xfc,0xad,0x47,0xae, +0x69,0xec,0xc3,0x02,0x13,0xd9,0xe4,0x36,0x16,0xf7,0xd3,0x29, +0x9e,0x9a,0x9b,0x9c,0x93,0x50,0x68,0x92,0xce,0x1f,0x73,0x0e, +0x74,0x3f,0xec,0xc6,0x89,0xab,0x8c,0x64,0xeb,0x3a,0x18,0xb1, +0xf4,0x11,0x49,0xf1,0x4b,0xf6,0x8e,0xf7,0x6e,0xcb,0xe0,0x43, +0xf2,0x8f,0x15,0x04,0x66,0x70,0xf8,0x0d,0x3a,0x12,0x6c,0x12, +0xda,0xa1,0x89,0x15,0x4f,0xe2,0x38,0x72,0x53,0xd8,0xaf,0xc6, +0x8a,0xfb,0xa5,0xfd,0x32,0x61,0xff,0x76,0x16,0x27,0xd3,0x31, +0xe8,0x9c,0xbf,0xaf,0xd2,0x32,0xc3,0xc7,0x9a,0x6f,0xf0,0x1f, +0x74,0xaa,0xf4,0xe2,0xc4,0x29,0x38,0x96,0xd4,0x77,0x57,0xde, +0xca,0xb8,0x6e,0x94,0xca,0x1f,0xd1,0x72,0x56,0xb7,0x31,0xe6, +0x84,0x66,0x98,0x4d,0x6a,0x6c,0x5b,0xb7,0xe7,0xeb,0x37,0x17, +0xf3,0x3e,0xdd,0x26,0xb7,0x6d,0xeb,0x39,0xac,0xc3,0xad,0xc4, +0x25,0x34,0xb2,0x52,0x15,0x26,0x68,0xa2,0x0a,0xbb,0x3f,0xeb, +0xe8,0x15,0x15,0x0a,0xaa,0x6a,0x53,0x53,0x6b,0x55,0xef,0x4b, +0x49,0x98,0x0b,0x59,0x45,0xe1,0x37,0x50,0x24,0xd0,0xdd,0x8e, +0xdd,0xbf,0x33,0x8f,0x2f,0x3e,0x8c,0xbc,0x13,0x95,0xe5,0x9f, +0x75,0x24,0xfd,0x68,0x5d,0x25,0xaf,0xd5,0xbd,0xf1,0xca,0xee, +0x46,0x5b,0x1a,0x31,0x8f,0x16,0xfa,0x15,0xfa,0xe2,0xc8,0x70, +0x54,0x8c,0x40,0xa5,0xef,0x0a,0x2a,0x0a,0x9a,0xb2,0x1a,0x39, +0xc1,0xba,0x53,0x7e,0x8a,0x39,0x97,0x77,0x36,0xbf,0x40,0x59, +0xe6,0x02,0xde,0xf2,0x3c,0xb4,0x64,0xf0,0xa9,0x2f,0xae,0xdb, +0x85,0x93,0x55,0x3a,0x8d,0xae,0xc2,0xd8,0x7c,0x98,0x1b,0x05, +0x91,0x4a,0x70,0x94,0xf1,0xb3,0xf2,0xb2,0x72,0xb5,0xe5,0x5c, +0x5c,0xcf,0x38,0x4f,0x8d,0x34,0xfa,0xe3,0xfc,0xef,0x17,0xde, +0x46,0x2a,0x2d,0xc0,0x16,0x63,0x68,0xc1,0x31,0x28,0x1a,0xca, +0x52,0x3b,0x91,0x76,0x50,0xac,0x2c,0x98,0xe0,0x70,0xf9,0x42, +0x18,0xce,0x2a,0xca,0x16,0xcb,0x12,0xc9,0x55,0x4d,0x75,0x8c, +0x32,0x11,0x7e,0x6a,0x63,0xe5,0x56,0xf2,0xe7,0xff,0x2d,0x84, +0x27,0x7c,0x43,0xc3,0x62,0x48,0x7e,0x60,0x41,0x50,0xa6,0xa9, +0x3f,0x9f,0xec,0x97,0xe4,0x15,0xe7,0xc3,0x41,0xf6,0x69,0x92, +0x9a,0x97,0x98,0x9b,0x58,0x64,0x92,0xca,0x07,0xb9,0x1c,0x73, +0xf3,0x75,0xe5,0x44,0x45,0x63,0xd9,0xf0,0x76,0x46,0xfc,0x07, +0xbf,0x22,0xe1,0xbd,0xc7,0xae,0x07,0xb6,0x58,0x04,0xf0,0x89, +0xe6,0x49,0x7b,0xa3,0xb5,0x39,0xb4,0xa6,0x0d,0x9e,0xfd,0x73, +0xbc,0x94,0xec,0x47,0x1d,0xe9,0xec,0x50,0xa9,0x72,0x1e,0xfc, +0x0d,0xd3,0xa5,0x1e,0x89,0x93,0x7a,0xc4,0xf2,0x73,0x8f,0xcc, +0xa4,0x3d,0x32,0x13,0x27,0xd2,0x1e,0x99,0x49,0x7b,0x64,0x24, +0xed,0x11,0x97,0x7c,0xcd,0x4a,0xeb,0x74,0x2f,0x5b,0xbe,0xde, +0xaf,0xc7,0xa5,0xc2,0x53,0x92,0x73,0x1c,0x4b,0x6a,0xbb,0xca, +0x6e,0xa7,0x5d,0x35,0x4e,0xe5,0x8f,0x6a,0xbb,0xed,0xb3,0xa7, +0x3d,0x12,0x07,0x73,0x49,0x85,0x6d,0xe3,0xf6,0x5c,0xbd,0x96, +0x42,0xfe,0x60,0xb7,0xc5,0x1d,0x87,0x06,0x0e,0x33,0x71,0x1b, +0x71,0x0f,0xbd,0x54,0xa6,0x0a,0x93,0xb4,0x68,0x8f,0x1c,0xc8, +0x3a,0x7a,0x59,0x05,0xd4,0x99,0xda,0x94,0x94,0x5a,0xd5,0x07, +0xac,0x7e,0x8a,0xc2,0x02,0x6a,0xf7,0x0e,0xc9,0x6e,0x2d,0x75, +0x0c,0x32,0x11,0xaa,0xa8,0xdd,0xf7,0xf1,0x2d,0x41,0x87,0x20, +0x9c,0x6b,0x81,0xa3,0x54,0x3a,0xec,0x2a,0xdf,0xa7,0x7e,0xbc, +0x04,0x2a,0x4a,0x14,0x6f,0x27,0xcd,0x63,0x28,0xb1,0xb8,0xc7, +0x34,0xa6,0x66,0xb4,0xa8,0xca,0xca,0x31,0x9c,0x85,0x03,0xf8, +0x1d,0xc1,0xc9,0xa0,0x03,0x93,0x19,0x68,0xc3,0x61,0x24,0x34, +0x3f,0xa8,0xf0,0x73,0x2b,0x25,0xfd,0xb7,0x95,0x22,0x4f,0x91, +0xe4,0xdc,0x84,0xbc,0x84,0x02,0xda,0x4a,0xc1,0xae,0x41,0x6e, +0x7e,0x6e,0x1c,0x7e,0x30,0x16,0x6e,0xd0,0x56,0xca,0x92,0x96, +0xa5,0x1b,0x05,0x6f,0x68,0x64,0xe5,0xc7,0x50,0x9f,0x9c,0x2b, +0x3b,0x5b,0x59,0xad,0x7c,0x0f,0x26,0xa3,0x0e,0x0b,0x26,0xb7, +0xc8,0x4d,0x90,0xab,0xb1,0x28,0x97,0x46,0x27,0xc8,0xb7,0xb3, +0xab,0x71,0x16,0x71,0xcf,0xd7,0xaf,0xb0,0xcb,0xf0,0xb4,0xe7, +0x6b,0x7c,0xdb,0x5c,0x4a,0xbc,0x24,0xf5,0xa9,0xf1,0xa4,0xb2, +0xab,0xe8,0x76,0xca,0x55,0x93,0x14,0xfe,0x98,0xb6,0xe7,0x3e, +0x67,0x63,0x49,0x70,0x67,0x01,0x29,0xb1,0xa9,0xda,0x96,0xad, +0xdb,0x92,0xcf,0x1f,0xee,0xb1,0xbb,0xeb,0x4a,0x9b,0xe2,0x04, +0x6d,0x0a,0xaf,0xb0,0x4b,0x45,0xaa,0x40,0x74,0x68,0x53,0x68, +0x66,0x49,0xb2,0x3b,0x0b,0x68,0x53,0x24,0xd7,0xaa,0x3e,0x94, +0xb4,0x03,0x69,0x53,0xc0,0x25,0xc1,0x9a,0x9c,0x82,0xa9,0x30, +0xa6,0x8b,0x22,0xec,0xcf,0xd9,0x6d,0xd3,0x0d,0xe0,0x1b,0x29, +0xbb,0xcd,0x1e,0x67,0x2d,0xfe,0x5c,0xfa,0xed,0x1e,0x0c,0x2b, +0xf8,0x33,0x52,0x2a,0xfd,0x96,0x2f,0xa5,0xb7,0x5d,0xba,0x70, +0xf6,0xbc,0x54,0xfa,0x6d,0x53,0x55,0xd5,0x06,0x58,0x1d,0x9e, +0x1c,0x71,0x36,0x38,0x4c,0x49,0x08,0x7c,0x47,0x02,0xe3,0x03, +0xe8,0xeb,0x61,0xdd,0x83,0x81,0xe6,0x0e,0xae,0x5e,0x3c,0x65, +0x20,0x2c,0x65,0xed,0x1d,0xf5,0xed,0xd5,0x9c,0x2d,0xf2,0xcd, +0xf2,0x2d,0x33,0xdd,0xed,0xf8,0xcb,0x1e,0x57,0x9c,0x7b,0x1d, +0x39,0x4c,0x94,0x4f,0xed,0x83,0xb3,0xb0,0x11,0x43,0x7a,0x21, +0x04,0xf6,0xd2,0x69,0xcd,0x49,0x95,0x05,0x7f,0x63,0x1a,0x93, +0xa5,0x32,0x34,0xb7,0xa4,0x1d,0x82,0xad,0x04,0x37,0xc2,0x68, +0xd8,0xc8,0xf4,0xe2,0x68,0x42,0x2f,0xf6,0xe2,0x68,0x56,0x9c, +0x67,0x44,0xe8,0xbb,0x26,0xe0,0x46,0x06,0x7c,0x61,0x02,0xa1, +0x37,0x27,0xe0,0x5e,0x46,0x51,0x30,0xa4,0x38,0xd7,0xfa,0x98, +0x75,0x90,0xf5,0x71,0x49,0x47,0xe2,0xeb,0x01,0xfc,0x1a,0x5c, +0x35,0xd0,0x75,0x09,0x1b,0xd9,0x70,0xb1,0xe9,0x7c,0xa3,0xf6, +0x25,0x3e,0x02,0xe7,0xf9,0xe3,0x04,0xfb,0x45,0x5d,0xee,0x7c, +0x56,0x5b,0xea,0xb5,0xf8,0x7b,0xdc,0x27,0x4c,0x66,0xf6,0x1e, +0xdd,0x17,0xb8,0xf7,0x78,0xa2,0x3a,0x3f,0x94,0x44,0x5f,0x69, +0x1c,0xf6,0x0e,0xc1,0x03,0xb6,0x31,0xb1,0x31,0xb9,0x91,0x22, +0x99,0x4b,0xb0,0x9c,0x80,0xcf,0x00,0xfa,0xc0,0xb5,0x03,0x78, +0x0d,0x9d,0xb5,0xc0,0x59,0xdc,0x8c,0xe1,0x5a,0x42,0xc3,0x00, +0x9e,0x61,0x14,0x65,0xd7,0x72,0x89,0x18,0xcf,0xac,0x73,0x48, +0xbf,0x49,0x09,0x49,0x20,0x58,0x0a,0xda,0x90,0xa4,0xda,0x27, +0x3f,0xa2,0x21,0x88,0xac,0xa8,0x8a,0x47,0x29,0x11,0x77,0xc5, +0x75,0xca,0x8b,0x7b,0x8c,0x61,0xb2,0x8a,0x10,0xc5,0x74,0x67, +0x67,0xf5,0xa8,0x42,0x00,0xab,0x9e,0xac,0xa0,0x28,0x5b,0x17, +0xf1,0x25,0x81,0xe4,0x67,0x88,0x80,0x87,0x6c,0xce,0xb1,0xdc, +0xc0,0x5c,0x29,0x81,0x04,0x47,0xf4,0x2d,0xb9,0x67,0xf2,0x96, +0x83,0xb0,0x4e,0x71,0x24,0x93,0x50,0x10,0x57,0x14,0x5b,0x42, +0x9d,0x66,0xa8,0xd3,0x71,0x97,0x40,0x77,0x0e,0xfd,0x0d,0xc1, +0x84,0xd1,0x5d,0xb1,0x76,0x27,0x4e,0x56,0x2f,0x30,0xe2,0xf3, +0x93,0xa9,0x33,0x4c,0xe6,0xc4,0xa9,0x7d,0x57,0x40,0x6d,0x21, +0xbb,0xb3,0xf2,0xc8,0x75,0x15,0xb0,0x65,0x3a,0x92,0xbe,0x64, +0x90,0x18,0xa5,0x28,0xe0,0x22,0x56,0xbe,0x50,0xf6,0xfa,0xff, +0x72,0xb4,0x46,0x7c,0x5e,0x41,0x5e,0x45,0x6e,0x1d,0x27,0xa6, +0xf7,0xcb,0x08,0x5b,0x72,0x3f,0xff,0x79,0xda,0x5b,0x4e,0x18, +0x81,0xaa,0xa4,0x6c,0x5b,0xf7,0x81,0xeb,0x34,0x30,0x6a,0x7c, +0xd0,0x9a,0x87,0xfb,0x98,0x3b,0x3d,0x3d,0x83,0xb5,0xf7,0x38, +0xdc,0x82,0xbf,0x93,0x8f,0xa0,0x36,0x87,0x85,0x93,0x1f,0xc9, +0x1c,0xdc,0xf7,0x91,0xc5,0x70,0x29,0x3b,0x44,0x0d,0x87,0xa3, +0x1a,0x03,0xe1,0x52,0x1a,0xd5,0x3e,0x7a,0xbd,0x8f,0x52,0x89, +0x37,0x10,0x41,0x60,0x61,0x27,0x2e,0x84,0xc5,0x5f,0x44,0x49, +0x76,0xc3,0xd2,0x1e,0xcc,0x93,0x2c,0x29,0x88,0x29,0xd4,0x49, +0xe1,0xbd,0x97,0x9a,0xad,0xda,0xb3,0xab,0xc9,0x9a,0xaf,0xa8, +0x29,0x6e,0xc8,0x6b,0xe1,0x5e,0xe2,0x6e,0x0c,0xd3,0x87,0x30, +0x71,0x19,0xe3,0x7a,0xca,0xe5,0x94,0xdb,0x69,0x0e,0x5e,0xeb, +0xe1,0x07,0xd6,0xe3,0xb4,0xd7,0x77,0x3e,0xdf,0x53,0x9a,0x0f, +0xca,0x89,0x60,0x59,0x00,0xd3,0x4a,0x4e,0x74,0xf1,0xa6,0x21, +0xba,0xa1,0xda,0x61,0x1c,0xf8,0xe2,0x24,0x1a,0xfc,0xab,0xc0, +0x4b,0xec,0x97,0x8a,0x52,0x6a,0x4a,0x6b,0xbe,0x9f,0xf5,0xea, +0x84,0xff,0xe0,0x7b,0x3a,0xac,0xa7,0xc9,0x1a,0x88,0x78,0x56, +0xe6,0x2e,0x9c,0x65,0xe5,0x4b,0x44,0x43,0x22,0xa8,0x0a,0x1f, +0x44,0x55,0x56,0x2c,0x2a,0x22,0x1f,0xaa,0x6f,0x55,0x56,0x37, +0x47,0x45,0x47,0x9e,0x8d,0x3e,0x05,0xfe,0xa8,0xcc,0x17,0x34, +0xd1,0x48,0xac,0x18,0x14,0x13,0x7e,0x26,0x34,0x44,0x29,0x3c, +0xec,0xe4,0x85,0x98,0xc4,0xa8,0xa4,0xc8,0x74,0x25,0x08,0x6a, +0x47,0x3f,0xe6,0x5c,0xfc,0xd9,0xc4,0x64,0xe5,0x3a,0x6d,0x0d, +0xd6,0x0f,0xdd,0x8d,0xc1,0x9e,0x3d,0xa6,0x67,0xe2,0x84,0xf3, +0x75,0x38,0x61,0x1a,0x16,0x11,0x83,0x56,0xdd,0x3a,0x9d,0x0a, +0x47,0x6b,0xbe,0xc7,0x69,0xc0,0xb2,0xdd,0x82,0xa3,0x30,0x81, +0x21,0xd6,0xa1,0xd1,0xd5,0xaa,0x60,0xa4,0x81,0xa6,0xec,0x96, +0x3c,0xbf,0x27,0x2a,0x50,0xc1,0xb4,0x24,0xa5,0xd7,0xa9,0xbe, +0xa3,0xdc,0x51,0x01,0x27,0xb3,0x3d,0x60,0x48,0x06,0xd4,0xfb, +0xb6,0xd5,0x6d,0x6e,0x2b,0xe3,0x2d,0x9e,0xea,0xdd,0xd6,0xba, +0xc2,0xc9,0x8d,0x30,0x91,0xdc,0xb8,0xd3,0xf8,0x63,0xfe,0x7d, +0xa3,0x6c,0xfe,0xa0,0x9a,0xe5,0xc6,0xfd,0x1a,0x34,0x44,0xb6, +0xcb,0xec,0x88,0x69,0xad,0x66,0x8d,0x76,0xb1,0x9b,0x29,0x3f, +0xe4,0xda,0x25,0xd5,0x75,0x78,0x06,0x53,0x09,0x7e,0x14,0x92, +0xe0,0x23,0xab,0x83,0xf3,0x89,0x38,0xfb,0x9d,0x30,0x9b,0x11, +0x67,0xd3,0x4b,0x61,0xf6,0x1c,0x71,0x36,0x83,0x53,0x6d,0x88, +0x7e,0xd3,0xf6,0x2f,0xc9,0x23,0xb7,0x1c,0xaf,0x59,0x0e,0x9a, +0x71,0xb2,0xb9,0xb6,0x44,0xbc,0x85,0xe2,0x6e,0x63,0x99,0x51, +0xbb,0x16,0x23,0xce,0x97,0xaa,0x01,0x0c,0xe2,0x28,0x18,0x64, +0x61,0x0b,0x0e,0x12,0x18,0x84,0x11,0x38,0x28,0xad,0x15,0x0f, +0x82,0x22,0xbd,0x90,0x2b,0x40,0x3d,0x71,0xc4,0x11,0xc6,0xc8, +0xed,0x58,0xd0,0x6a,0xc3,0xdf,0x97,0xb2,0x4b,0xca,0xfe,0x94, +0x4a,0xe7,0x4a,0xaa,0xab,0xb3,0x3c,0x71,0x9f,0x1f,0xee,0x38, +0x25,0xd5,0x98,0x5f,0x7f,0x09,0x34,0xd3,0x61,0x4d,0x19,0x27, +0xfe,0x29,0xf2,0xe4,0x64,0x7c,0xd8,0xc5,0xe0,0xd0,0xc0,0xe3, +0xfc,0x69,0x18,0xfd,0x47,0xef,0x2c,0xd8,0xc2,0x34,0x26,0x35, +0xa4,0x94,0x4b,0xe5,0x11,0xb6,0xd8,0xa2,0xa2,0xf3,0xec,0xa0, +0x64,0x23,0xbe,0x26,0xaa,0x29,0xb6,0x29,0x5e,0x2a,0xa7,0xb7, +0x4a,0x17,0x16,0xb3,0x61,0xd3,0x6d,0x71,0xf8,0x0c,0xfc,0xba, +0xc2,0x94,0x7f,0xfa,0xb1,0xe4,0xc9,0xc5,0x27,0xd4,0xd5,0x98, +0x7e,0x2e,0xa6,0x17,0x79,0x8e,0xba,0x9a,0x47,0xb8,0xb2,0xbe, +0x5c,0x41,0xd8,0x09,0x3f,0x92,0xa2,0xe6,0xc2,0xce,0xf4,0x56, +0xe3,0x0c,0xde,0xdf,0xc0,0x5d,0xdd,0xc9,0x98,0x13,0x47,0x18, +0x0b,0x2e,0xdb,0x45,0x03,0x53,0xc1,0x60,0x93,0xe8,0x66,0x2c, +0x64,0x4b,0xba,0xac,0x5e,0x9f,0x75,0x59,0x5b,0x8e,0x14,0x9b, +0x1f,0xe1,0x29,0xfc,0x35,0x8f,0x73,0xe5,0x50,0x31,0x81,0x84, +0x94,0xf9,0xd6,0x06,0xe4,0x9b,0x7e,0xd6,0x65,0xb5,0x4d,0x70, +0xe5,0x20,0x43,0xd4,0x20,0x0e,0x65,0x3a,0x35,0x56,0x79,0x2e, +0x4e,0x7c,0xa3,0x77,0x8f,0xa4,0xcb,0xfa,0xf2,0x2a,0xa9,0xb2, +0x6c,0xda,0x5c,0xf4,0x45,0x97,0xd5,0xe8,0x99,0x43,0x23,0x27, +0x9e,0x46,0x5f,0xd2,0xd8,0x57,0xf9,0xc3,0x67,0x5d,0xd6,0xa3, +0xfa,0xce,0x5b,0x2c,0x0c,0x38,0xe8,0xf9,0x8e,0xd8,0x87,0x25, +0x94,0xab,0xc2,0xb7,0xda,0x38,0x87,0xdd,0x95,0x2d,0xe9,0xb2, +0x2e,0xf9,0xa2,0xcb,0xfa,0xfc,0xb3,0x2e,0x2b,0xc3,0x4a,0xe9, +0x2b,0xa7,0xc8,0x63,0xf5,0x4d,0xe2,0x18,0x7d,0xd9,0xed,0x6e, +0x16,0x0f,0x61,0x18,0xc9,0xaf,0xcb,0x6d,0xce,0x6e,0xd9,0x97, +0xce,0x1f,0x36,0xf2,0x32,0x70,0xa5,0x16,0xf4,0xeb,0xfd,0x33, +0xa1,0x87,0x11,0x1f,0x94,0x92,0x80,0x4a,0xaf,0x6e,0xbf,0x62, +0xcd,0x43,0x7c,0x86,0x7b,0xa1,0x71,0x8a,0x1d,0xb7,0x55,0x7c, +0x47,0x7a,0x84,0x06,0xbd,0xcb,0x82,0xae,0x7c,0x9d,0xa8,0xcb, +0x0a,0x20,0xe9,0x02,0x37,0xfc,0x25,0x34,0x30,0x62,0x03,0xae, +0x21,0x42,0x03,0x2a,0x88,0x0d,0x8c,0xe2,0x3f,0xbb,0x65,0x19, +0xe4,0xdf,0x71,0x07,0x84,0x09,0xf2,0xdc,0xeb,0xc2,0x19,0x26, +0x31,0xea,0x7c,0xec,0x29,0x15,0xf8,0x05,0xb5,0xcb,0x7b,0xf1, +0x15,0x68,0x07,0x45,0x87,0x9c,0x39,0x11,0xac,0x14,0x7c,0x44, +0xe1,0x24,0x44,0x08,0x52,0x41,0xf2,0x7b,0xb2,0x67,0x14,0xd1, +0x5a,0xad,0xa1,0xf0,0x67,0x06,0x72,0x55,0x7a,0x7c,0x5b,0x75, +0x73,0x73,0x43,0x0f,0x27,0xf6,0x5d,0x93,0xcd,0x63,0x6b,0x6e, +0x94,0x3d,0xca,0x7b,0xc1,0x09,0xc7,0xe5,0x4d,0x04,0x23,0x18, +0xc3,0xa3,0xc9,0xed,0xaa,0x70,0x9b,0x05,0x95,0x7e,0x98,0xfd, +0xf4,0xf5,0x53,0xdb,0x16,0x7e,0xdd,0x36,0x1c,0xbb,0x15,0xa7, +0x18,0x72,0x20,0xee,0x93,0x9f,0x66,0x97,0x97,0xbb,0xbe,0x57, +0x81,0x93,0x4c,0x73,0x7a,0x7a,0x8b,0x2a,0x78,0xb0,0x07,0xd2, +0x14,0x14,0x21,0x91,0x82,0x3b,0x33,0x34,0xd9,0x8d,0x2a,0xa8, +0xf0,0xa5,0xbe,0x77,0x61,0x51,0x45,0x21,0x75,0x3a,0x59,0x83, +0xb2,0x31,0x6c,0xf5,0xc3,0xd2,0x97,0x59,0x1f,0x39,0x61,0x95, +0x7c,0x05,0x79,0xfe,0x7e,0x10,0xc6,0x54,0xc0,0x74,0xae,0x45, +0x0c,0x80,0xbd,0x42,0x5c,0x9f,0x78,0x07,0xcb,0x58,0x3c,0x73, +0x18,0xd7,0x6f,0xc4,0x79,0x2a,0x9d,0x0e,0x3f,0xc3,0xaa,0x1c, +0xd8,0x78,0x0e,0x62,0x94,0x84,0x15,0x8c,0x37,0x0e,0x33,0x9a, +0xb7,0x75,0x95,0xd6,0x03,0xf3,0x67,0xf6,0xaf,0x75,0xbd,0xf9, +0xfa,0xb9,0xed,0xcb,0xaf,0x6d,0xd8,0xb3,0x6f,0xad,0xf6,0x1c, +0xe3,0x22,0x1d,0xfe,0xaf,0xce,0x17,0x83,0x77,0xef,0x5c,0xde, +0xfb,0x50,0xe3,0xad,0x6e,0x51,0x37,0xbf,0xac,0x63,0x47,0x9f, +0xd6,0x55,0x3a,0x91,0x52,0xbe,0x94,0x80,0x57,0xa3,0x8f,0x33, +0xe2,0x73,0x09,0xf8,0xd2,0xd2,0xb2,0xba,0x92,0x36,0x4e,0xac, +0x1e,0x90,0xcd,0x64,0x4b,0x6f,0x17,0xfe,0x98,0xfe,0x0b,0x97, +0xe4,0x4c,0xb4,0x05,0x1f,0xb9,0x07,0xda,0x49,0x09,0x6b,0x70, +0x80,0x69,0xce,0xcc,0x68,0x56,0x95,0x39,0x3e,0xe8,0x67,0xc5, +0x9b,0x68,0x4f,0xc4,0xa3,0x83,0x2f,0xe1,0xa4,0xa0,0xc2,0xe2, +0x49,0x49,0x16,0xa8,0x98,0x86,0x9f,0x62,0xea,0x6c,0x9c,0xe8, +0x67,0xbb,0xa0,0xbe,0x2e,0xce,0x5b,0x49,0xdd,0xab,0x09,0x9f, +0x53,0x94,0x5f,0x93,0xdb,0xca,0x89,0x25,0x3d,0xb2,0xc5,0x6c, +0xde,0xad,0xcc,0x1f,0x92,0x9e,0x73,0xaf,0x2e,0x12,0xd4,0x99, +0xaf,0xf3,0x9e,0x3d,0x83,0xe5,0x4e,0xa8,0xb3,0x1c,0x67,0x37, +0x5a,0xf0,0x1f,0x61,0x1d,0x75,0x61,0xe7,0xa0,0x94,0x83,0xd1, +0x0c,0x86,0x45,0xe0,0xfa,0x90,0xe9,0x2a,0x9a,0x27,0x8f,0x07, +0x99,0x7f,0x91,0x78,0xbd,0xcc,0xdc,0x2b,0x2c,0x79,0x16,0xad, +0x9a,0x00,0x93,0x23,0x61,0x11,0x0c,0x28,0xe3,0x2e,0xd0,0x61, +0x20,0xec,0xdf,0xe9,0xa4,0xff,0x31,0x2c,0xda,0xd4,0x2f,0x7b, +0x82,0xd9,0x4c,0xbf,0x5c,0x9f,0xc8,0x94,0x61,0x91,0x5c,0x99, +0x3e,0xcb,0x91,0xff,0xc1,0xd4,0xb3,0x17,0x7e,0x7e,0x96,0xdc, +0xfc,0xff,0xba,0xfa,0x5e,0xd9,0x24,0xb6,0xf4,0x41,0xc1,0xcb, +0xb4,0xf7,0x9c,0x6c,0xad,0x0d,0x91,0x2f,0xd0,0x05,0x73,0xdc, +0x8e,0xea,0xf2,0x31,0xfd,0x37,0x84,0xe3,0x7b,0x68,0xa7,0xa0, +0x1e,0x6c,0x87,0x43,0x8c,0x38,0x17,0xb7,0x13,0x7a,0x35,0x0e, +0x29,0x1a,0xdb,0xa7,0x4f,0x44,0x43,0x1c,0x2f,0x18,0xb2,0xd0, +0x49,0xdd,0x28,0x8e,0xa3,0x91,0x76,0x1c,0xd3,0x2f,0x79,0x54, +0x43,0xf8,0x5a,0x34,0xa4,0xdf,0xf8,0x1d,0xfd,0xc6,0x2f,0x75, +0xdc,0x67,0x7d,0x0e,0x2e,0x25,0x25,0x25,0xf5,0xc5,0x1d,0x9c, +0x58,0xdb,0x2f,0x5b,0xf8,0x3f,0x75,0xdc,0xe1,0x13,0x3e,0x93, +0x24,0x0f,0x53,0x7b,0x30,0x15,0xa6,0xed,0xc7,0x69,0x78,0x5e, +0x0f,0xce,0xe3,0x42,0x2c,0xd7,0x95,0x4d,0xe9,0x65,0xb1,0x09, +0xbb,0x08,0x14,0xf4,0x62,0x01,0x7c,0xbb,0x1f,0xbf,0xc5,0x04, +0x5d,0x48,0x40,0x75,0x6c,0xd2,0x91,0x2d,0xea,0xc3,0x1e,0x3a, +0x60,0xed,0x25,0xa7,0xb3,0x0d,0x97,0x49,0x27,0x7e,0xbf,0xc3, +0x26,0x7b,0x34,0xc5,0xaf,0x71,0x4e,0xb3,0x15,0x0f,0x4a,0xb0, +0xb4,0x15,0x9c,0x2f,0xc0,0x0d,0x0e,0x96,0x31,0xdf,0xe3,0xf7, +0xa7,0x70,0x4d,0xc8,0x2c,0x6e,0x67,0xf8,0xb1,0xe3,0xfa,0x53, +0xd7,0x30,0x49,0x5a,0x0a,0x3f,0x31,0xcf,0x4a,0x4a,0xde,0xc5, +0xd3,0x36,0x64,0x2e,0xc1,0x5e,0x68,0x54,0x46,0x2f,0xd8,0xc6, +0x40,0xdf,0xbf,0x73,0xc9,0xe5,0xc7,0xe0,0xb9,0xe9,0x8a,0x6c, +0x00,0xdf,0x33,0x97,0x75,0x09,0x78,0xca,0x47,0xa2,0x27,0xa3, +0xd8,0x25,0xcb,0x22,0x5a,0x32,0x03,0xb9,0x19,0x9e,0xfa,0x3c, +0x0a,0x9c,0x99,0xce,0xdc,0x1c,0xca,0x2a,0xf7,0xc1,0xb8,0x01, +0x56,0x1c,0x8b,0xde,0x44,0x5c,0x2e,0x1a,0x5c,0xf9,0x01,0x3e, +0x30,0xfb,0xfb,0x09,0x96,0x51,0x1c,0x53,0x46,0x1f,0x71,0xac, +0xec,0x5b,0x62,0x26,0xbb,0xd8,0x82,0xb2,0x9b,0xc2,0x82,0x56, +0x71,0xc1,0x2d,0xf5,0xdd,0xa2,0x92,0xa9,0xa0,0xa4,0xc6,0x82, +0x1b,0xbe,0x22,0xf1,0x19,0xf1,0xd9,0xb1,0x59,0x1c,0x7d,0xde, +0x4d,0xf2,0xcd,0x34,0x2a,0x4e,0x66,0xe2,0x7d,0xe3,0x7d,0x63, +0xfd,0x38,0xcc,0x31,0xf9,0x67,0x5a,0x1b,0x43,0x7b,0x56,0x9b, +0xec,0x16,0xdb,0x6e,0xb1,0xc2,0x06,0x0a,0x76,0xc3,0xfd,0x42, +0x7d,0x8f,0xfb,0x72,0x78,0x84,0x09,0xcb,0x0a,0xc9,0x0a,0xcb, +0xe4,0x90,0xe0,0x32,0xa2,0x8f,0x6b,0x4c,0x61,0x15,0x1b,0xb2, +0xcf,0xd8,0x1e,0xc7,0xd9,0xe7,0x98,0xf1,0x30,0xab,0x61,0xe8, +0x6a,0xfc,0x33,0x8e,0xc2,0xba,0x33,0x2e,0xdf,0x7b,0x9f,0xf4, +0xe2,0xdc,0x23,0x42,0x42,0x1c,0xa7,0xce,0x66,0xe2,0x8d,0x14, +0xde,0x33,0x43,0x45,0xd9,0xdd,0xf1,0xaa,0xd1,0x15,0x17,0x1a, +0xef,0x2b,0xa3,0x5d,0x37,0x03,0x8f,0xb0,0x9d,0xd4,0xc0,0x19, +0xbb,0x7e,0xc8,0x12,0x47,0x60,0x16,0x0b,0x7d,0xe0,0x23,0xc9, +0xa0,0x9e,0x01,0xc2,0x2a,0xfe,0x63,0x20,0xd5,0xd2,0x8b,0xc3, +0xb1,0xe9,0xb3,0xf3,0x9e,0x95,0x5f,0xab,0xa7,0x28,0xae,0x41, +0xdc,0xc1,0x66,0x65,0xa4,0x67,0xa6,0x66,0x71,0x82,0x92,0x30, +0x1d,0x7f,0x62,0xe2,0x33,0x63,0xb3,0xa2,0x33,0xa5,0x44,0xcc, +0x7f,0xc7,0x1a,0x09,0xf3,0x99,0x13,0xd2,0x83,0x52,0x2b,0x62, +0xc5,0xe9,0x14,0x98,0xec,0xda,0xb9,0x44,0x0f,0x95,0x6c,0xf2, +0x4d,0xf9,0xde,0xb4,0xce,0xec,0x96,0xfc,0x56,0xe7,0x1e,0xcf, +0xcb,0x3e,0x73,0x0e,0xe2,0xc4,0xa3,0xb8,0x24,0x38,0x59,0x8f, +0x87,0xdd,0xc9,0xb0,0x38,0x0f,0x26,0x54,0xc3,0x38,0x07,0x98, +0xe9,0x03,0x1b,0x02,0x39,0xdc,0x2d,0x9b,0x42,0xc4,0x92,0x21, +0xa1,0x84,0x11,0x4b,0x70,0x17,0xb9,0x2c,0x94,0x1c,0x60,0xcd, +0x47,0xed,0x14,0x4b,0xee,0xb0,0x0f,0xf1,0x34,0xb9,0x70,0xee, +0xfc,0xf9,0x0b,0xe7,0x39,0x61,0x21,0x63,0x68,0xb7,0xdf,0x75, +0xbd,0xf7,0xba,0xfc,0xdd,0x25,0x7a,0x15,0x74,0x4a,0xc3,0x47, +0xe2,0x5d,0xe2,0x5d,0xe8,0x5d,0xd0,0x06,0x5c,0x3e,0x4c,0x8d, +0x83,0x75,0x5c,0x1d,0x2e,0x61,0xe3,0xaf,0xc6,0x0c,0x44,0xf7, +0x68,0x47,0xf2,0x11,0x5f,0x64,0xd6,0xa6,0xeb,0xfc,0xc6,0xf8, +0xcf,0x3a,0x38,0xd3,0x6b,0x7d,0xab,0x43,0xa3,0x43,0x9d,0xad, +0xc3,0x56,0xa3,0xdd,0x6a,0xfb,0x2b,0x4d,0xf9,0x9b,0xd7,0xba, +0x6e,0xd7,0x3d,0xce,0x39,0x98,0xe3,0x93,0xed,0xc9,0x09,0x8a, +0xc2,0x77,0x24,0x03,0x9d,0x6f,0x53,0x2c,0x30,0x13,0x97,0x57, +0x77,0xf2,0x6a,0xf7,0x4c,0x9e,0x3a,0xbf,0xea,0xa8,0xef,0xba, +0x5c,0x71,0xd9,0xba,0x94,0x77,0xd5,0xb4,0x32,0xb5,0x73,0xf4, +0xbf,0x1e,0x7c,0xeb,0xe4,0x1d,0x0e,0x48,0x49,0x0f,0xac,0xc1, +0xd3,0xaf,0xb5,0x97,0xe2,0x31,0x5c,0xd3,0xed,0x06,0x33,0x19, +0x0b,0xa3,0x2d,0x46,0x8b,0x5d,0x33,0x4d,0xf8,0xb6,0xf4,0xb6, +0xdc,0x86,0x22,0x4a,0x9a,0x7c,0x13,0x0e,0xeb,0x9b,0x6f,0x34, +0x5f,0xe3,0x99,0x69,0xcc,0x3f,0x29,0xfa,0xb9,0xb5,0xbb,0x35, +0xc1,0x2b,0xce,0x2b,0xda,0x6b,0xfb,0x2e,0x54,0xd8,0x8f,0xe3, +0x2c,0xb3,0x8d,0x78,0xe0,0x1a,0x81,0xb9,0x7c,0xfd,0x1a,0x17, +0xe9,0x75,0xc1,0xdb,0x5b,0x79,0xbb,0xbf,0x8f,0x86,0xca,0x56, +0x26,0x49,0x5f,0xe1,0x0e,0xf3,0x6b,0x79,0xeb,0x27,0xf8,0x46, +0x0f,0xe6,0x6d,0xf9,0x5b,0xb5,0x20,0x27,0x27,0x2f,0xbd,0x80, +0x03,0xa7,0x36,0x22,0xae,0x7d,0x29,0xac,0x65,0xe4,0x11,0x22, +0x47,0xb2,0x9f,0x64,0xbe,0x4e,0x7b,0xc3,0xc1,0x30,0x26,0x14, +0xbf,0xf1,0xc3,0x31,0xd6,0x33,0x3d,0x0a,0xdc,0xf3,0xdd,0x24, +0xd5,0x11,0x90,0xa9,0xd1,0xc9,0xda,0x0f,0x3b,0xc5,0x79,0x6f, +0x0f,0x2c,0x14,0xbf,0xc1,0x9d,0xfd,0x30,0x8e,0x15,0x7e,0x10, +0x57,0x91,0x7b,0x4d,0x97,0x3b,0xbb,0xbb,0xac,0x6a,0x78,0x63, +0x43,0x5d,0x8b,0xbd,0x56,0xae,0x37,0x8f,0xde,0x39,0x7d,0x97, +0x83,0xbd,0x9d,0xf2,0x91,0x86,0x10,0xce,0xec,0xd2,0xc4,0xb1, +0xa6,0x38,0xcb,0x2d,0x4b,0x9f,0x7f,0x93,0xf5,0xa2,0xf8,0x7e, +0x1d,0xe5,0xaa,0x47,0x52,0xfd,0x57,0x69,0xe1,0x58,0x03,0x5c, +0x6a,0x9d,0x43,0xf1,0xd8,0xfc,0x46,0x20,0x3d,0xaf,0x6e,0xa6, +0xf8,0xc4,0x7b,0xc5,0x7a,0x22,0xb3,0x18,0x97,0xec,0xc1,0x7d, +0x26,0x05,0x3a,0x3c,0x6c,0xef,0x80,0x79,0xd7,0x40,0xe1,0x35, +0x35,0xe7,0xbc,0xa7,0xbb,0xb2,0xfa,0x61,0xf7,0x9d,0x2a,0x4b, +0x98,0x14,0x3d,0x85,0x67,0xcc,0x1f,0x4d,0xed,0x9f,0x60,0x99, +0x21,0x4c,0xc0,0x51,0x6f,0x55,0x8b,0x33,0xf2,0x73,0xb2,0x73, +0xb9,0xcb,0x4c,0x12,0xda,0x53,0xe0,0x61,0x01,0x8e,0xb8,0xb4, +0xae,0x99,0x9f,0xfd,0x60,0xeb,0x13,0xe3,0x9f,0x28,0xc8,0x18, +0x26,0x73,0x23,0x38,0xa1,0x17,0xb6,0x8a,0xcb,0x6f,0x68,0xef, +0x11,0xa7,0xe3,0xd6,0x5e,0x98,0xc0,0xca,0x9e,0xd2,0x88,0x88, +0x8a,0x45,0xcb,0x2a,0x76,0xf4,0x70,0x50,0xd8,0x8c,0xcb,0xa1, +0x18,0xbb,0x98,0x98,0x94,0xe8,0xd4,0x4b,0x29,0x1c,0x0c,0x34, +0xca,0xe7,0x5a,0x42,0x3d,0x13,0x11,0x10,0x7e,0x2c,0xec,0x18, +0x47,0x21,0x6a,0x31,0x2e,0x31,0x87,0x22,0x66,0x87,0xde,0x52, +0x27,0x1c,0xef,0x99,0x65,0xc2,0x3f,0x48,0xbf,0x91,0xd7,0x5f, +0xcc,0x79,0xc2,0x6a,0xf6,0xf0,0x9e,0x3d,0x16,0x18,0xe0,0x9a, +0x62,0xcc,0x43,0x58,0xf1,0x1f,0xb7,0x72,0xdf,0x73,0x60,0xcd, +0x9c,0x71,0xfe,0xde,0x23,0xdc,0x91,0x73,0x8d,0xf0,0x3f,0x65, +0x39,0x15,0x47,0x31,0x49,0x26,0xd2,0xc1,0xa2,0x1f,0x0a,0x32, +0xdb,0xe8,0x34,0x2a,0x8f,0x6c,0x3f,0xdf,0xd5,0xe3,0x75,0xf9, +0xf0,0xed,0xa3,0x1c,0xda,0x08,0xcb,0x88,0xe8,0xdf,0x22,0xf8, +0x33,0xa2,0x3f,0xce,0x20,0xad,0x82,0xbf,0x29,0x6b,0x3b,0xca, +0x58,0xf4,0x6f,0x67,0xab,0x70,0x0f,0xa9,0xcc,0x2a,0xcb,0x2d, +0x90,0x34,0x72,0x98,0x02,0xef,0x92,0x83,0x55,0x87,0x39,0x69, +0x4b,0x34,0x91,0xe0,0xc8,0xa3,0x0a,0xc2,0x0b,0x0d,0xf1,0x03, +0x8b,0x97,0x0d,0x62,0xb5,0xa0,0xb3,0x53,0x01,0x4f,0x0f,0x41, +0x14,0x0b,0x63,0x32,0x14,0xe4,0x73,0xa8,0x0b,0x38,0x09,0x0c, +0x2c,0xec,0xa5,0xe8,0x79,0x03,0xd3,0x9d,0xd4,0x91,0x5a,0x97, +0xe9,0xd9,0xca,0x2f,0xb4,0xc4,0xf9,0x6e,0xc8,0x06,0xc7,0x1b, +0xf0,0xad,0x97,0xfa,0x62,0xfa,0x12,0x38,0x5c,0x84,0x46,0xba, +0xa0,0xc9,0x86,0xa0,0x82,0x1e,0x8d,0x67,0x8a,0x48,0x6a,0x8c, +0xa5,0xc4,0xe2,0x86,0xe7,0x91,0xcf,0x29,0x78,0xb2,0xef,0xfd, +0x0c,0x9e,0xce,0x5f,0xa0,0x30,0x60,0x14,0x6e,0x6b,0xac,0x41, +0x06,0x36,0x86,0xc7,0x87,0x9d,0x0f,0x09,0x55,0x12,0x56,0x82, +0x19,0xd1,0x19,0xdc,0x35,0x74,0xa0,0xd1,0xc1,0x9a,0x1f,0xb4, +0xb8,0xad,0xd1,0xa7,0xc5,0x25,0xa0,0x0d,0xd1,0xb9,0xa2,0x3e, +0xb0,0xaf,0xc3,0xce,0x86,0xbf,0x6c,0x74,0x4d,0xb3,0xef,0x00, +0x9d,0x60,0xd3,0xbc,0xc9,0x6b,0xd8,0x22,0xf3,0xc7,0x63,0xf2, +0xdb,0xac,0xd0,0x0d,0x8e,0x92,0xc6,0xfb,0x74,0x30,0xec,0x41, +0x43,0x50,0x06,0x5b,0xa8,0xc7,0xe4,0x7f,0x87,0xf7,0x82,0x19, +0x38,0x31,0x55,0xb2,0x4d,0x44,0x0f,0x2c,0x70,0x17,0x5a,0xe8, +0x41,0x02,0xd4,0xb2,0xf2,0xed,0x78,0x9f,0x20,0x05,0x59,0x52, +0x11,0xf3,0x7b,0x53,0xa8,0x37,0x9f,0x07,0xea,0xd2,0xe9,0x8b, +0x7b,0x04,0x24,0x41,0x21,0x8e,0x91,0x69,0x07,0x90,0xee,0x7b, +0x65,0x2f,0xd3,0xfe,0xe6,0x1a,0xb1,0x4b,0x1f,0x4e,0xb0,0x41, +0x1b,0x7d,0xd4,0xec,0xb4,0x9c,0xbb,0x7d,0x06,0x8f,0x5e,0x31, +0xa5,0x30,0x68,0x67,0xc9,0xee,0x1a,0x4d,0x4b,0x63,0x5d,0xdb, +0x9d,0x6e,0x05,0xc6,0xfc,0xdd,0xd2,0x81,0xfa,0x96,0x8e,0x1a, +0xe3,0x16,0xab,0x4e,0xb7,0xa2,0x4e,0xde,0xb8,0xc8,0xb2,0xd6, +0xbe,0x85,0xb6,0xeb,0x0e,0x88,0x24,0x3d,0xe2,0xda,0x3f,0xe0, +0xa5,0xa0,0x2c,0x77,0x14,0x95,0xe1,0xde,0x2c,0x71,0x8e,0x9e, +0xc0,0xb0,0xfa,0xab,0x71,0x94,0x3a,0x1e,0xdc,0x9e,0x4b,0xdd, +0xce,0xd9,0x17,0xef,0xfb,0x6b,0x80,0xe1,0xa2,0xb0,0x67,0x10, +0x7a,0xa2,0x98,0x6a,0xda,0x22,0x8c,0x36,0x5c,0x58,0x99,0xd3, +0xc3,0xa3,0xff,0x3d,0x1c,0x77,0x4d,0xf7,0x27,0x6e,0xa9,0xf0, +0x35,0xc1,0x44,0x50,0x80,0x44,0xa6,0x1f,0x15,0xa4,0x42,0xd8, +0xf9,0xa8,0xc0,0xe2,0x73,0x63,0x82,0x63,0xe8,0xfd,0x31,0x2c, +0xdc,0x9d,0x42,0x6f,0x8d,0xc1,0x7c,0x46,0xf1,0x01,0xfd,0xbf, +0x30,0xe7,0x45,0xfd,0xab,0x18,0xe9,0x3c,0xdc,0x42,0x46,0xef, +0x7b,0xed,0x13,0xb6,0x2a,0x8e,0x11,0xc7,0x82,0x8c,0xa7,0xae, +0x64,0x12,0x8c,0x14,0x1e,0x31,0xaf,0x8b,0x0a,0x6e,0xc4,0xaa, +0x46,0xf7,0x9c,0xbf,0xf5,0x8b,0x32,0x3a,0x46,0x32,0xcf,0xb5, +0x57,0xb2,0xa7,0x71,0xa9,0x11,0x45,0xbc,0x11,0xb3,0x5d,0x77, +0xa3,0xd2,0x7a,0x4e,0x48,0x84,0xd7,0x04,0x7f,0x81,0x0f,0xf0, +0x0b,0x8b,0xd5,0x52,0xf9,0xa6,0xe3,0x70,0x04,0x8f,0xb3,0xbf, +0x62,0x08,0xb5,0x69,0xf5,0x3b,0xcd,0x05,0xe2,0x2c,0x3d,0x61, +0x24,0xab,0xbf,0x06,0x47,0xa8,0xa3,0xcf,0x0e,0xc9,0x94,0x33, +0x2f,0xde,0xf7,0x55,0x7f,0x36,0xa5,0x7b,0x10,0xba,0xbf,0x98, +0xa2,0xa0,0x03,0xe7,0x57,0xe4,0xf4,0xf2,0xe8,0x77,0x17,0xc7, +0x5e,0xa5,0xa6,0x28,0xca,0x8e,0x08,0xff,0x12,0x98,0xc6,0x84, +0xec,0x38,0xb4,0xd4,0x51,0xda,0x88,0x6b,0x94,0x36,0xe2,0x9e, +0x70,0x2d,0xf8,0xec,0xff,0x6c,0xc4,0x85,0xe0,0x82,0x83,0x38, +0x6e,0x0f,0x7e,0xdd,0xea,0xca,0x97,0x5d,0xcd,0xb9,0x96,0x7a, +0x93,0xfb,0xe5,0xf3,0x46,0x9c,0x01,0x0d,0xc2,0x2b,0x70,0x8e, +0x4a,0x99,0x36,0x4c,0x83,0x6f,0x07,0x81,0x89,0x84,0x2d,0x5f, +0x8a,0xbf,0xdc,0xc2,0x31,0xa0,0x82,0xdf,0x14,0xf5,0xf3,0xb8, +0x0a,0xe6,0x68,0x81,0x8a,0xb4,0x11,0x67,0x72,0x92,0x24,0x9b, +0x28,0xbc,0x61,0xea,0x92,0x32,0x28,0xf1,0xc9,0x18,0xea,0x10, +0xbd,0x8c,0xe0,0x2f,0x2c,0x62,0xb1,0x23,0x89,0x80,0x0b,0x58, +0xa2,0x0b,0xd3,0x81,0x94,0x4b,0x8f,0xfc,0x1b,0x47,0xb2,0x20, +0x1d,0xc1,0x11,0xcf,0x19,0xc2,0x9f,0xf8,0x0a,0x27,0x48,0xbc, +0xff,0x2f,0xa6,0x3e,0x29,0x93,0xbe,0xf3,0xe9,0x6b,0x56,0x34, +0xda,0x4e,0x30,0xbd,0xa3,0x0d,0x56,0x51,0x20,0x89,0xab,0x70, +0x2b,0x81,0x89,0x7f,0xe3,0x44,0x56,0xf1,0x9d,0x2c,0x87,0x0c, +0x38,0x77,0x3a,0x74,0xd8,0x94,0xb5,0xf0,0xa6,0xb5,0xda,0x75, +0xda,0x25,0x1c,0x6c,0xb5,0x21,0x5a,0xc2,0x39,0xb9,0x3b,0xba, +0x7d,0x0e,0xd5,0x06,0xff,0x05,0x6c,0x0e,0x8f,0x07,0x58,0xf9, +0x2e,0x7c,0x44,0x4c,0x1a,0xd4,0x5a,0x0f,0x48,0x34,0x68,0xc8, +0x69,0xc8,0xb2,0xdb,0x82,0xfa,0x6d,0xd8,0x44,0xc4,0x80,0xa1, +0x57,0x70,0x51,0x42,0x71,0x17,0xf1,0xa5,0x84,0xe2,0x74,0x28, +0x8a,0x13,0xbf,0xc7,0x2b,0xe4,0xce,0xdf,0xdd,0xa0,0x54,0xfc, +0x97,0x7e,0x26,0xef,0x8c,0x23,0xcd,0x70,0xf4,0xee,0xf9,0x9c, +0xe2,0x13,0x2d,0x02,0x45,0xb0,0x06,0x46,0xc1,0xd8,0x54,0x30, +0xe6,0xa2,0x98,0x34,0x34,0xa2,0x14,0x69,0x1c,0x94,0xe0,0x9a, +0x8a,0x01,0x1e,0x6f,0x53,0x16,0x3c,0x82,0xb6,0xd2,0x41,0x65, +0xa8,0xdb,0x8b,0x75,0x2c,0x1e,0x5c,0x88,0x53,0xf1,0x06,0xee, +0x51,0x91,0xe9,0xc1,0x6f,0xe4,0xea,0x87,0x36,0x18,0x57,0x0a, +0xe3,0x34,0x32,0x79,0x4f,0x1c,0x65,0x82,0xe3,0xf6,0x2f,0xe2, +0xc4,0x7a,0x13,0x72,0xed,0xf7,0x76,0x98,0x95,0x0d,0xc3,0x0e, +0xa4,0xf2,0xfe,0x33,0x0d,0x71,0xba,0xe6,0x32,0x4e,0x51,0x18, +0x23,0x2b,0xa6,0x00,0x54,0x4f,0xee,0x89,0x3a,0x2c,0x85,0x2e, +0xb0,0x91,0x69,0xfa,0x02,0x40,0x6f,0xf7,0xb3,0x72,0x2f,0xfc, +0x97,0xfc,0xd5,0x3d,0x03,0xce,0xc1,0xc8,0x1e,0xac,0xd1,0xa3, +0xb3,0xe8,0x1c,0x0e,0xd3,0x87,0x61,0x38,0xc0,0xd8,0x1f,0xb7, +0x0b,0xb1,0x0b,0xf9,0xac,0xb7,0x52,0xf4,0xbe,0xea,0x55,0xc3, +0x77,0x5d,0xbc,0x5d,0x80,0xed,0x31,0x9b,0x40,0x0e,0x6c,0x05, +0x2d,0xea,0xa7,0xfa,0x9e,0x83,0xa7,0x64,0xb0,0xa7,0x64,0x70, +0x29,0xac,0xc4,0x52,0x56,0x51,0xf6,0x41,0xd6,0x2c,0xe9,0x47, +0xdd,0xd7,0xc0,0xe3,0xcc,0x3a,0x98,0x73,0x22,0x21,0xe4,0x42, +0xe8,0x09,0xa5,0xd0,0x70,0x85,0x53,0x17,0x99,0xd2,0xce,0xb6, +0x37,0xd9,0x2f,0xb9,0x26,0x6a,0xda,0x12,0x1d,0xca,0xd3,0x46, +0x19,0xc0,0x41,0xd6,0x09,0x47,0xaf,0xc4,0xf5,0x38,0x76,0x66, +0xa9,0x39,0x5f,0x53,0x55,0x56,0x9d,0x57,0xce,0x89,0x4a,0x7d, +0xc2,0x01,0x36,0xea,0xfc,0xd9,0x8b,0x27,0x55,0x5e,0xe3,0xda, +0xe2,0x7c,0x05,0xec,0xeb,0x15,0x22,0x05,0x6d,0x49,0x98,0x8a, +0x95,0xc4,0xa6,0xd7,0x30,0x0d,0x9f,0x65,0x1d,0x0e,0x6b,0xb0, +0x3a,0x90,0x49,0x16,0xa1,0x0d,0xee,0x40,0x05,0xc8,0x94,0x78, +0x67,0x26,0x81,0xf1,0x30,0x1f,0xc7,0xb3,0xd8,0x8a,0x73,0x08, +0xb6,0x76,0x0c,0xc2,0x21,0x08,0x61,0xf1,0x30,0x6a,0x12,0x98, +0x0a,0xdb,0x70,0x2a,0x45,0x25,0x9b,0x84,0xfd,0x64,0x50,0x5c, +0x06,0xd6,0x2c,0x28,0x25,0xc2,0xe4,0xcc,0xdf,0x4b,0x3d,0xbb, +0x79,0xd4,0xd1,0xc2,0xca,0xc3,0x98,0xfd,0x7d,0xbc,0x26,0x0f, +0x23,0xce,0x03,0x77,0x11,0x46,0xc6,0x72,0x68,0x22,0xaa,0x68, +0x0a,0xc3,0x58,0x1b,0x1c,0x35,0x63,0x3a,0x0d,0xcc,0x2a,0x15, +0x94,0x9f,0x9e,0x87,0x65,0xef,0xfe,0x4a,0x05,0x45,0xea,0x17, +0x8f,0x5e,0x11,0x8e,0x46,0x31,0x19,0xa8,0xf8,0x71,0x06,0x24, +0xe2,0xb2,0x8a,0x4e,0x1e,0x4f,0x81,0x2a,0x8e,0xfc,0x64,0x25, +0x95,0x9f,0x92,0xed,0x17,0x5a,0xff,0x07,0x02,0xcc,0xa6,0x10, +0xa0,0x83,0x42,0x00,0xe3,0x67,0xce,0xaf,0x3a,0xeb,0xbb,0x86, +0x2a,0xaf,0x58,0x7d,0x81,0x00,0x36,0xff,0x1b,0x02,0xf0,0x9f, +0x21,0xc0,0x19,0x09,0x02,0x1c,0xff,0x0c,0x01,0x66,0x33,0x16, +0x86,0x9b,0x8d,0x17,0xba,0x66,0x7d,0x86,0x00,0x39,0x8d,0xc5, +0x14,0x02,0x1c,0x4e,0xf4,0xd5,0x33,0xdf,0xf0,0x3f,0x10,0xe0, +0x79,0x6b,0x4f,0x8b,0x04,0x01,0x62,0xfe,0x17,0x65,0xef,0x01, +0x56,0xc5,0xd5,0xb5,0x0d,0xdb,0x98,0x19,0x4b,0xd4,0x18,0x37, +0x0e,0x68,0xc0,0xde,0x7b,0xc5,0xae,0xd8,0x90,0x7e,0x38,0x87, +0xde,0x41,0x10,0x05,0x95,0x22,0xa0,0x88,0x20,0xa0,0xa2,0x44, +0xa5,0xf7,0x2e,0x2a,0xbd,0x4a,0xef,0xbd,0xd8,0x5b,0xec,0x46, +0x4d,0x62,0xa2,0x26,0x26,0xc6,0x98,0xac,0x39,0x59,0x43,0xde, +0x6f,0x0f,0x26,0xef,0xff,0x7c,0xff,0xfb,0x5d,0xd7,0xff,0x7f, +0x72,0x5d,0xc3,0x76,0x38,0x0c,0x33,0x7b,0xaf,0x75,0xaf,0x7b, +0xed,0xd9,0x7b,0xdd,0xfb,0x37,0x6c,0x41,0x86,0x52,0x00,0xbb, +0xf3,0x94,0x02,0x0c,0xaf,0x03,0xf6,0xea,0xad,0x7f,0x29,0xc0, +0x66,0xff,0x03,0x7a,0xff,0x52,0x80,0xb7,0x03,0x14,0x40,0xf6, +0xdf,0x14,0x20,0x2b,0x8f,0x13,0x47,0xe0,0x32,0x72,0x22,0x21, +0x24,0xf2,0x1f,0xd5,0xfa,0xe1,0xa0,0xd6,0x85,0x6a,0x03,0x69, +0x76,0xf5,0xa7,0x34,0x7b,0x93,0x23,0x8e,0x72,0x9b,0x71,0x64, +0x20,0xcd,0xae,0x8b,0xaf,0x1b,0x48,0xb3,0x17,0xcb,0x60,0x36, +0x1b,0x32,0xc5,0x09,0x87,0x4c,0xc7,0x2f,0x68,0x9a,0xfd,0xec, +0x7d,0xc1,0x3f,0x69,0x76,0xfb,0xa7,0x34,0xfb,0xdc,0x09,0x8d, +0x1b,0x38,0xa5,0xa6,0x44,0x85,0x22,0xd2,0x7b,0x22,0xae,0xfb, +0x41,0x58,0x47,0x39,0xed,0x79,0xa5,0x23,0xc9,0x76,0xcf,0x74, +0xcb,0x74,0x6d,0xcd,0xe6,0x8f,0xe4,0x05,0x5c,0x3a,0x7c,0x91, +0x83,0xb5,0xcd,0x58,0xc5,0x24,0x65,0xc5,0x67,0xc5,0x66,0x99, +0xa6,0xf0,0x7b,0xb7,0x5a,0xe8,0x6e,0x33,0xad,0x76,0xe6,0xcb, +0xf2,0x8b,0x8b,0x73,0xcb,0x38,0xc1,0xae,0x99,0xc4,0x67,0x49, +0xab,0x59,0xcd,0x12,0x79,0x6f,0x1d,0x57,0x3d,0x73,0x45,0xdd, +0x1e,0xfe,0x62,0xde,0xf9,0x82,0xcc,0x22,0xee,0x35,0x43,0xaf, +0xb6,0x27,0xd3,0xa5,0x25,0x8b,0x3f,0x92,0xff,0xe9,0x6a,0xc6, +0xcd,0x4c,0xff,0xc5,0xfe,0x6f,0x48,0xab,0x72,0xbe,0x59,0x9f, +0x72,0x6d,0x7f,0x5e,0xff,0x5a,0x56,0xb9,0x57,0x39,0x8c,0x88, +0x49,0xfd,0xf3,0x85,0x24,0x16,0xea,0x77,0x93,0xed,0x78,0xdc, +0x0c,0x8e,0x6b,0xd1,0x18,0xe2,0x2c,0xe8,0x81,0x33,0x5a,0x7d, +0x03,0xb1,0xad,0x18,0x7b,0x8b,0x45,0x3d,0xec,0x27,0x1f,0xe1, +0xc1,0x54,0xf6,0x3f,0x16,0xe6,0xd2,0xc3,0x69,0x19,0x9c,0x9e, +0xd7,0xf7,0x13,0x64,0x4a,0x87,0x94,0x2e,0x4c,0x61,0xf0,0x6f, +0x9a,0xd4,0xec,0xc4,0x09,0x4b,0x66,0xe0,0xf0,0xb5,0xa5,0xe6, +0x7c,0x5b,0x59,0x53,0x75,0x45,0x2d,0x27,0x4e,0xbd,0x22,0xb8, +0xb1,0x85,0xb5,0x85,0xed,0xe7,0x1b,0x39,0x88,0x16,0x0b,0x88, +0xf5,0xd1,0x94,0x7a,0x49,0x13,0x09,0x3e,0x2b,0x83,0x2f,0xfa, +0xde,0x7d,0xed,0x52,0xcf,0x6b,0x19,0x20,0x6b,0x8c,0x43,0x5c, +0x39,0x38,0xaa,0x27,0x1e,0x67,0x37,0x95,0x78,0x3c,0xd6,0x80, +0x30,0xa6,0x4e,0x32,0x6b,0xd8,0xca,0x1a,0xd0,0x64,0xdf,0x8a, +0x95,0xde,0xd7,0x3c,0x21,0x6f,0x21,0x53,0x52,0x23,0x4c,0xe9, +0xc4,0x94,0x5f,0xfe,0xfb,0x66,0x4c,0xe0,0xf4,0x7c,0x16,0xbf, +0xda,0x45,0x8c,0x94,0x86,0x62,0x20,0xba,0xb3,0x92,0x42,0x85, +0x29,0xd3,0x9c,0x99,0xde,0xa4,0x29,0x1c,0x84,0xc9,0x34,0xb9, +0x1c,0x85,0x2b,0x09,0x65,0x39,0x7f,0x5f,0x7d,0x06,0x2f,0x18, +0xfd,0x2e,0x82,0xd9,0xa0,0x05,0xd9,0xcc,0xff,0x5c,0x6e,0x3c, +0xbb,0xf7,0x3f,0x17,0x08,0x53,0xea,0x31,0x9d,0x20,0x8b,0xb3, +0xe4,0x30,0x8b,0x86,0x96,0xb9,0x5e,0x38,0x9f,0xa6,0x56,0xb3, +0x1b,0x1d,0x79,0xd0,0x84,0xa5,0x25,0xb0,0x28,0x0a,0x76,0xd0, +0xbc,0xc8,0x92,0x99,0x76,0x0a,0x87,0x07,0xad,0xd4,0xb0,0x39, +0x7e,0x38,0xd8,0x86,0x86,0xa7,0x34,0x63,0x1a,0x9e,0x5e,0xe4, +0x5f,0xf8,0x3e,0x51,0x33,0xf1,0x75,0x24,0xa8,0xc2,0x20,0xf5, +0x17,0xb8,0x0f,0x58,0x16,0xc4,0xfe,0xd9,0xe4,0x06,0x04,0xea, +0xf4,0x09,0xaf,0x50,0x10,0x5f,0xd1,0xee,0x17,0x8a,0x89,0xb8, +0x14,0x03,0x85,0xa5,0x03,0x8f,0xf8,0x81,0x3c,0x82,0xcc,0xf5, +0xbd,0x8f,0x20,0xad,0x03,0xd3,0xde,0x18,0x2e,0xc0,0x4c,0xe9, +0x30,0xb0,0x10,0x9a,0xf5,0x0c,0x26,0x0a,0x24,0x3b,0x16,0xce, +0x58,0x5a,0x66,0xcd,0x17,0xe7,0x95,0x14,0xe5,0x97,0x73,0xe2, +0x82,0x5e,0xe1,0x08,0x9b,0x5f,0x97,0xd7,0x91,0xd3,0xc3,0x65, +0x79,0x13,0xb9,0x60,0x27,0x86,0xa3,0xc1,0xc0,0xcb,0xfd,0x75, +0x4c,0x4d,0x66,0x66,0x95,0xa6,0x70,0xec,0xfb,0x0e,0x56,0x7c, +0x82,0x5a,0x04,0x7f,0xeb,0xbe,0x0d,0xe1,0x50,0xc8,0x62,0x38, +0xfa,0x12,0xd8,0x08,0x06,0xb8,0x51,0xfa,0xab,0x4a,0x96,0xdc, +0x82,0xcc,0xed,0xbd,0xb7,0x20,0xb5,0x03,0x53,0x9f,0x0d,0x94, +0xd9,0xa6,0x87,0x08,0x39,0x44,0x6c,0x67,0x95,0x33,0xa4,0x95, +0x04,0xda,0xbf,0x81,0x46,0x6b,0xff,0x43,0x33,0x98,0x3c,0x03, +0xb7,0x2a,0x60,0xeb,0x54,0x9c,0x6c,0x26,0x8c,0x99,0x27,0x4e, +0x57,0x08,0xd3,0x71,0x56,0x1f,0xcc,0x12,0x96,0xb7,0x8b,0xcb, +0x7f,0x12,0x34,0x5b,0x51,0xe3,0x23,0x68,0x33,0x62,0x08,0x2c, +0x21,0x33,0x70,0xc7,0x6f,0x2c,0x9c,0x98,0x41,0x7e,0x03,0xcb, +0x19,0xac,0xa8,0xab,0x20,0xb0,0x63,0x2a,0xee,0x60,0xe0,0x84, +0xea,0x47,0xb0,0x94,0x8c,0xca,0x9c,0x76,0xbf,0xb1,0x36,0x5e, +0x93,0x34,0xad,0x0e,0x9b,0xc2,0x61,0x45,0x4f,0x3b,0x5c,0x93, +0x84,0xef,0x23,0xda,0x30,0x82,0x81,0x00,0xf1,0x25,0x69,0x17, +0x97,0x7e,0x0d,0xcf,0xe0,0x76,0xbf,0x02,0x6f,0xc3,0x8d,0xcd, +0xe2,0x54,0x05,0xfc,0xcd,0x9a,0xe8,0xe0,0x10,0x6b,0x74,0x33, +0xcf,0x96,0xf3,0x70,0xe2,0xfa,0xef,0x75,0x95,0x3f,0xd1,0x70, +0x1d,0xda,0x0b,0xa1,0xd1,0x4c,0xe5,0x3c,0x18,0x61,0x0b,0xa7, +0x76,0x66,0x51,0x10,0xf3,0x68,0xc1,0x91,0x0d,0x46,0x37,0xb8, +0x79,0x92,0x76,0x42,0xd4,0x73,0x88,0x62,0x7a,0x57,0x91,0xe7, +0x90,0xb9,0x8a,0xc5,0xa7,0xd6,0x64,0x25,0x46,0xbd,0x60,0xe1, +0xba,0x2a,0x64,0xae,0xc4,0x4c,0xea,0x8d,0x15,0x70,0x82,0x24, +0xec,0x4a,0xb0,0x88,0x33,0xf7,0x0a,0xf3,0x3a,0xee,0x79,0x82, +0x03,0x77,0xe0,0x04,0x55,0x4a,0xb2,0x16,0x29,0x70,0x11,0xb2, +0xa2,0x2a,0xb0,0x78,0x88,0xb5,0x3c,0x66,0x1e,0x6a,0x16,0x96, +0x28,0xe3,0x7f,0x4f,0x7b,0x93,0xfd,0x5d,0x5e,0xa4,0xef,0x39, +0xbf,0x73,0x87,0x1a,0x93,0xf9,0xa0,0xa7,0x7e,0xbf,0x1f,0xba, +0xc3,0xc1,0x77,0x9b,0x09,0x5a,0x50,0x1a,0xb7,0xbd,0x13,0xb7, +0xd3,0x74,0xd4,0x18,0x6a,0xf1,0xf4,0xdf,0x83,0x3b,0xc1,0x9a, +0xe6,0x6f,0x45,0xca,0x35,0x44,0x0e,0xdb,0x91,0x7e,0xc9,0xe1, +0x18,0xd0,0x68,0xf6,0xad,0x82,0xa0,0x2e,0x4e,0x00,0x5d,0x16, +0x3f,0xe0,0x67,0xe4,0x2a,0x96,0xe8,0x31,0xa0,0x0b,0x25,0x34, +0xf1,0xd5,0x81,0x12,0x56,0xf8,0x53,0xcc,0x21,0xcd,0x0f,0x8a, +0x7e,0x48,0x85,0xc1,0x5c,0x2d,0xe6,0x29,0x68,0xd4,0x0e,0x5a, +0xe3,0xb3,0x65,0xb7,0xe1,0xde,0x4e,0x9f,0xbe,0x80,0x1b,0x56, +0x3e,0x7c,0xc6,0xc6,0xfc,0x2d,0x15,0xfa,0x8e,0xe6,0x66,0x0e, +0x3b,0xf7,0x5e,0xb2,0xe4,0x6f,0x14,0xb7,0x57,0xd7,0xb6,0x94, +0x59,0xd6,0xd8,0x37,0xed,0xc9,0x6b,0xe1,0xad,0x0b,0x1d,0xab, +0xdc,0x1a,0xb8,0xd1,0x4f,0x06,0xea,0x3e,0xe4,0x75,0xb0,0xc2, +0x5b,0xb1,0x8c,0xb4,0x62,0xdc,0xcf,0xe0,0x22,0xa8,0x8b,0xbb, +0x29,0x9f,0xb3,0x9d,0x8b,0xa7,0xcc,0xe0,0x00,0xeb,0xb2,0x7e, +0xeb,0x0e,0x9c,0xb8,0x21,0xcf,0x92,0x87,0x29,0xcf,0x6f,0x5d, +0xc9,0xf9,0xc0,0x45,0xe3,0x8d,0x2e,0xb8,0x11,0xcd,0x64,0xcf, +0xbe,0x65,0x04,0x9a,0xcb,0x0a,0x9a,0x78,0x9c,0xf0,0x70,0xeb, +0xf5,0x5d,0x0f,0xb9,0x55,0x02,0x4b,0xa4,0x02,0x35,0x30,0x83, +0xe9,0xc4,0x11,0x84,0x36,0xe6,0xe1,0x08,0xb6,0xbf,0x26,0xf7, +0x53,0xe1,0x1f,0x18,0xba,0x5e,0x2a,0x27,0x36,0x0a,0x67,0x30, +0x60,0x07,0xa3,0x08,0xfd,0xe9,0x28,0x9c,0xc7,0x88,0x42,0xf7, +0xa7,0x3a,0x3e,0x28,0x1f,0xf6,0xff,0x55,0xa9,0x47,0x68,0x51, +0x8e,0x23,0x37,0x41,0x67,0x47,0xf7,0x4d,0x98,0xd3,0x82,0x73, +0x9e,0x19,0xaf,0x46,0x1d,0xe9,0xb0,0xcc,0x1c,0x96,0xed,0x60, +0x51,0xec,0x1f,0x4c,0xa1,0x69,0x8d,0x72,0x12,0xfa,0x48,0x35, +0x80,0xd7,0x4a,0x35,0x80,0x87,0x08,0x25,0x30,0x84,0x51,0x5a, +0x61,0x0e,0x99,0x05,0xc3,0x1e,0x36,0x8b,0x0f,0x2c,0x9e,0xe3, +0xb0,0xa9,0x16,0x1f,0x91,0x5d,0x65,0x01,0xc9,0xf3,0xb0,0xd2, +0x0c,0x2a,0x71,0x69,0x37,0x2c,0x85,0xac,0x56,0xcc,0xfa,0x09, +0x92,0x9a,0xd7,0x03,0xfb,0x2b,0x83,0x6f,0x24,0x81,0xa3,0x61, +0xf8,0x19,0x0c,0x63,0x41,0x07,0x87,0x11,0xca,0x46,0xc6,0xe2, +0x30,0x8a,0x7f,0x16,0x92,0xfb,0x7f,0x26,0x79,0xae,0x0e,0xb2, +0x04,0x58,0x7a,0x9a,0xa5,0x2e,0x73,0x4c,0x38,0x4b,0x7a,0x60, +0x17,0x53,0x9c,0x5f,0x58,0x74,0xa1,0xd8,0xea,0x12,0xaf,0xa7, +0x35,0x79,0x3d,0xb2,0x96,0x79,0x56,0x7c,0xd7,0xc5,0xb6,0x82, +0xea,0x62,0x49,0xda,0x64,0x0a,0xa9,0x94,0x8a,0x8c,0x3d,0x62, +0x65,0xc9,0x2a,0xf3,0x29,0x23,0xd8,0x15,0x9c,0x50,0xa1,0x59, +0xc9,0x02,0xc9,0x80,0x49,0x25,0xbf,0xd5,0xec,0xa9,0xe3,0x97, +0xb9,0xe0,0xd8,0x3d,0xf8,0xd9,0x61,0xee,0x17,0x23,0xb4,0x67, +0x75,0x2f,0xee,0xbf,0xa3,0x01,0xd9,0xa2,0x23,0x11,0x16,0xf6, +0x6f,0x14,0x17,0xb2,0xca,0xc1,0x50,0x4d,0xc4,0x8e,0xdb,0x42, +0x07,0x23,0x76,0xd0,0x5e,0x16,0x3a,0xb6,0x8a,0x1d,0x8c,0xf5, +0x30,0xa1,0x43,0x9b,0x7e,0xc7,0x99,0x68,0x4b,0x19,0xe8,0x79, +0x18,0x54,0xf2,0xb0,0xcc,0xb5,0x86,0x5f,0xef,0x36,0x73,0x1f, +0xaa,0xfa,0x71,0x42,0x5d,0x19,0xf9,0xe0,0x0b,0xc3,0xf7,0xbe, +0x77,0x2b,0x68,0xe1,0x67,0x17,0xe2,0xa8,0xc2,0x29,0xe7,0x69, +0xb6,0x71,0xed,0x77,0xf2,0xe8,0x5d,0x07,0x98,0x44,0x43,0x08, +0xf7,0x23,0x13,0x81,0x1b,0x82,0x70,0x45,0xf0,0x26,0xce,0x34, +0xf4,0x48,0xd0,0xae,0x89,0x56,0x4c,0xa2,0x91,0x4a,0x0b,0xd3, +0x5b,0x96,0xf7,0x9c,0x62,0xd6,0xcb,0x44,0x58,0x77,0x06,0xbc, +0x39,0xa9,0x8c,0x86,0x31,0x2e,0xc4,0x61,0x72,0x18,0xc6,0x9c, +0xc4,0x23,0x96,0xb8,0x62,0xf3,0x42,0xee,0x94,0xe0,0x48,0x9c, +0x1f,0x28,0x9e,0x5a,0x74,0x5b,0xec,0xe1,0x5b,0x8c,0x5b,0x56, +0x5f,0xde,0xcc,0x09,0x4e,0xa0,0x47,0xfa,0x35,0x21,0x46,0xa9, +0xc9,0xa2,0x99,0xf8,0x23,0x11,0x4a,0x41,0x5d,0x2c,0x65,0xc5, +0xb9,0x38,0xf7,0xff,0x5a,0x1b,0x18,0x2a,0x84,0x3f,0x89,0xe5, +0x43,0xfd,0x47,0x8a,0x0e,0x6b,0x57,0xbe,0x43,0xd1,0xb3,0xae, +0x71,0x23,0xa7,0x1c,0x4b,0xdd,0x03,0xe9,0x70,0xb2,0x09,0x16, +0x2a,0x1f,0xa4,0xb7,0x6c,0xd5,0x9a,0xc2,0x88,0xed,0xd0,0x2a, +0xba,0x61,0xeb,0x36,0x51,0xa7,0x57,0x20,0xac,0xb0,0x02,0x5a, +0x88,0x16,0x1e,0xc4,0xd5,0x38,0x16,0xce,0xb0,0xa0,0x8b,0xea, +0xd2,0xeb,0x2c,0x06,0xd7,0x30,0x28,0x17,0x8f,0xff,0xff,0x29, +0x7c,0x1c,0xf7,0xf4,0x3f,0x0a,0x1f,0x1f,0x85,0x99,0x04,0x3a, +0xc0,0x1b,0x3b,0x98,0x2e,0xd4,0x26,0x30,0x0e,0x0c,0x71,0x1c, +0x35,0x4d,0x27,0x25,0x65,0x53,0xf2,0x1e,0x90,0xc3,0x2f,0xb8, +0xa8,0x1b,0xec,0xc5,0x39,0xed,0xc2,0xa8,0xa6,0xfe,0x32,0x4b, +0x10,0x15,0xa2,0x1a,0xda,0x77,0xc3,0x22,0xb6,0xc7,0x9e,0xd8, +0x81,0x6b,0x2d,0x35,0x1c,0x55,0x3b,0x38,0x58,0xcb,0x8a,0xb3, +0x71,0x22,0xa9,0x45,0x57,0x3b,0x56,0xf8,0x4b,0xb5,0x16,0x0f, +0xda,0xb1,0xc8,0x88,0xcb,0x08,0xf6,0xde,0x85,0xee,0x06,0xec, +0xbe,0x4a,0xff,0x8e,0x0e,0xfe,0x2d,0x9e,0xe9,0xfe,0x11,0x7a, +0x99,0x76,0x0a,0x45,0xc2,0x28,0xd8,0x28,0x8e,0xb2,0x86,0xdb, +0x9b,0xf0,0x36,0x83,0xc3,0x1f,0x10,0x4a,0x86,0x5e,0xb2,0xca, +0x72,0x71,0x11,0xd9,0x9c,0x62,0x98,0x6e,0x91,0x7d,0xed,0x72, +0x7d,0xc3,0xa5,0x2e,0xae,0x42,0x9c,0x6d,0x0d,0xdf,0xb1,0x3e, +0x8e,0x8e,0xae,0x46,0x1e,0x66,0xf9,0x4e,0xc5,0xee,0x65,0xb6, +0x5e,0x7c,0x81,0x6b,0xf9,0x9e,0xba,0xfd,0x26,0x07,0x77,0x1c, +0x5e,0x17,0x94,0x6d,0xc1,0xbf,0xce,0x78,0x9c,0x73,0x3d,0xbf, +0x67,0xdf,0x3d,0xef,0x6f,0x0f,0x53,0x22,0xec,0x91,0x40,0x02, +0x1f,0x79,0xfd,0xea,0x77,0xcb,0xf2,0x08,0x9f,0xe8,0x96,0x68, +0x97,0x60,0xeb,0x7a,0xcc,0x25,0x64,0x57,0xa8,0xb4,0x85,0x6c, +0x96,0x20,0x15,0xcd,0x5b,0x64,0x4c,0x21,0x6f,0x9a,0x48,0x60, +0x1a,0x7a,0xb1,0x46,0xc1,0x06,0xc7,0xf4,0x43,0x93,0x0d,0x79, +0x20,0x59,0x30,0xe2,0x12,0x0c,0x2e,0x89,0xf2,0x89,0x3a,0x18, +0xe9,0xc7,0xc1,0x63,0x9a,0xec,0x3e,0x91,0xa6,0x9b,0x26,0xa5, +0xc0,0x2a,0xee,0x6e,0x17,0xee,0x82,0x15,0x86,0xb8,0x02,0x3d, +0x64,0xcf,0x98,0x14,0x5c,0x57,0x86,0x6a,0xf7,0x70,0x94,0x7c, +0xc3,0xe6,0xad,0x73,0xb7,0x96,0x5b,0xf0,0x6f,0xee,0xdc,0xbb, +0xd3,0x79,0xbf,0x6d,0xf3,0xad,0xad,0xdf,0x69,0x57,0xb4,0xf2, +0x8b,0xee,0x6d,0xbf,0x65,0x76,0x9f,0x13,0x05,0x41,0x9b,0x7c, +0x8f,0x17,0x97,0x32,0x10,0x02,0x17,0x09,0x5e,0x5c,0x04,0x17, +0x59,0xa1,0x3c,0x8c,0x04,0xe1,0xd4,0xbd,0x38,0x42,0x7f,0x8a, +0xf1,0x87,0x7d,0xc0,0x05,0xc3,0x2c,0x6a,0xc4,0x7b,0x94,0x2f, +0xc9,0x1e,0x34,0x31,0xc1,0xd9,0xcb,0x06,0xa6,0x5f,0x73,0xf2, +0x2f,0x55,0x5e,0x68,0xe4,0xc4,0x82,0x4e,0xe5,0x3c,0xf6,0xd2, +0xdd,0x81,0xa9,0x60,0xa5,0x4a,0xff,0x3d,0x62,0x9f,0xef,0xd6, +0xe2,0x79,0xa7,0xef,0x59,0xcd,0xb7,0x45,0xaf,0xcc,0x73,0xf8, +0x03,0x1b,0xf6,0x6e,0xb1,0xd9,0x71,0xf0,0x59,0xe0,0x2f,0x61, +0x92,0x32,0xf8,0x91,0x0e,0x0c,0x66,0x4e,0xd7,0x45,0x34,0x34, +0xaa,0xc3,0x38,0x19,0x1d,0x53,0xab,0x33,0xd6,0x67,0x6d,0x35, +0x70,0x1b,0xe8,0x33,0x55,0x89,0x15,0xc9,0xc5,0x29,0xfb,0x1a, +0x79,0x2d,0x37,0x1c,0xee,0x31,0xed,0x70,0xa6,0x39,0x5f,0x1b, +0xdb,0x30,0xf0,0x3e,0x65,0x1d,0x6e,0x90,0xc3,0x06,0x74,0x66, +0xe5,0x41,0xb2,0x10,0x93,0xb0,0x44,0x39,0xdf,0x1a,0xdb,0x16, +0xdf,0x92,0x28,0xa5,0x0a,0x8b,0x58,0x1a,0xf5,0x61,0x3c,0xd3, +0x38,0x30,0x49,0x1f,0xcd,0x36,0x25,0xd5,0x27,0x57,0xa5,0x86, +0xb6,0xf0,0xce,0x41,0xf6,0x47,0x6d,0x8f,0x71,0xa0,0xa0,0xf9, +0x79,0x1c,0xf2,0x19,0xd4,0x1f,0xe7,0x59,0x18,0xe9,0xc9,0xb5, +0x2c,0x0a,0xcd,0xf8,0x07,0x8d,0x7d,0xad,0xcd,0x5d,0xf9,0xdb, +0x2b,0xcc,0x1b,0xdc,0xab,0x3c,0xcb,0x93,0xcf,0xd5,0xa6,0xc0, +0x2e,0xde,0x2c,0x47,0x25,0x43,0xd8,0x42,0xdc,0xbb,0x9d,0x7b, +0x9d,0x1a,0x6c,0xdd,0xf9,0x6a,0x8b,0x0a,0xc3,0x7c,0x13,0xa9, +0xd0,0x50,0x38,0x71,0xbf,0xe4,0xd9,0xe4,0x7f,0xb3,0xe3,0xdb, +0x92,0x1f,0x2f,0xfc,0x68,0x99,0xc9,0xfb,0x6f,0xf4,0xda,0xec, +0xb2,0xfd,0xf0,0xb3,0x63,0xbf,0x9e,0x90,0x04,0x7a,0x0c,0xdb, +0x50,0xc6,0x44,0xd4,0x46,0xd4,0xd3,0x07,0xe3,0xe5,0x38,0x81, +0x3e,0x98,0xcd,0x19,0xfa,0x60,0x93,0xc1,0x88,0x29,0x4d,0x2a, +0x4e,0xc9,0x4b,0xdd,0x57,0xc7,0xef,0x70,0x9b,0xef,0xb1,0xea, +0x70,0xa6,0x05,0x5f,0x14,0x53,0x12,0x57,0x9c,0x20,0xbd,0x7f, +0xfc,0xc2,0x94,0x3a,0xa6,0x23,0xeb,0x10,0x6c,0x17,0xe2,0x70, +0x3c,0x41,0xc1,0x57,0xc4,0x56,0xc6,0x5f,0xa6,0x84,0x3f,0x12, +0x87,0xb3,0xa9,0x26,0x2a,0x6f,0x98,0x9a,0x8c,0x0c,0xca,0xc6, +0x52,0xd8,0xcb,0x89,0xe5,0xc9,0x45,0x29,0x61,0xcd,0xbc,0x47, +0x90,0x5b,0xb0,0xeb,0x31,0xa9,0x4a,0xd2,0x34,0x36,0x06,0x35, +0x52,0x71,0xcc,0xa5,0xb9,0x4e,0x26,0xe6,0xa6,0x3b,0xac,0x0a, +0x2c,0xf9,0x9e,0xba,0xa6,0xc6,0xcb,0x2d,0xd9,0x46,0xb9,0xb6, +0xc5,0x07,0xca,0xdd,0x2b,0xe3,0x22,0x9b,0x92,0xc1,0x81,0xb7, +0x3e,0xaf,0xd2,0xbf,0x8a,0xc2,0xa8,0xf2,0x88,0xbc,0xff,0x88, +0xae,0xf0,0x5f,0xa6,0xfd,0xa1,0x5d,0xf7,0x20,0x44,0xb9,0xda, +0x54,0xfc,0x2f,0x56,0xc9,0x09,0x97,0x89,0x5f,0xaf,0xc7,0x55, +0xf7,0x26,0xfb,0x03,0x7c,0xa1,0x45,0xbe,0x5e,0xa6,0x81,0x34, +0xab,0x23,0xd4,0x11,0xbc,0xc6,0x9c,0x6a,0x38,0xdd,0xdc,0xac, +0x0e,0xaa,0x7a,0xf4,0x91,0x2c,0xce,0x58,0x46,0x5a,0x6b,0xe0, +0x61,0xd8,0xca,0xf4,0x24,0xb6,0x25,0xd5,0xa6,0xed,0x6f,0xe6, +0xa7,0xef,0xc2,0x45,0x7e,0x38,0x37,0x2c,0x5e,0xc1,0xdf,0x8c, +0xbc,0x1d,0x7d,0x9d,0xde,0xfa,0x1a,0x0c,0x96,0x41,0x30,0xcd, +0xf4,0xd6,0x1e,0xd5,0x0a,0xde,0x71,0x22,0x41,0xc6,0xdf,0x8b, +0xb9,0x9f,0x70,0x37,0x99,0xc3,0x13,0x28,0x1b,0x18,0xac,0x4d, +0x12,0x41,0xaa,0xd3,0x84,0x08,0xf6,0x5e,0xca,0x8d,0xf4,0x8e, +0xb4,0x90,0x36,0xde,0x2a,0x70,0xe7,0x91,0xad,0x47,0x39,0xd8, +0x02,0x47,0xd9,0x24,0x1c,0x9d,0x83,0x83,0x2e,0x2f,0xd9,0xb8, +0x63,0xa9,0x7c,0xba,0xf3,0x25,0x19,0xff,0xa1,0xfa,0xfb,0x8e, +0x87,0xd7,0xcb,0xf4,0xea,0xcc,0xbb,0x77,0x35,0xee,0xae,0x8d, +0x8f,0xee,0xcb,0x00,0x53,0x5e,0x71,0xfe,0x10,0x3a,0xca,0xca, +0xec,0x5a,0xdc,0xae,0xa9,0xdd,0xbb,0xdb,0xfb,0xbc,0xe5,0xad, +0x79,0x3e,0xef,0xb0,0xd6,0x6c,0xa3,0xae,0x8e,0xfb,0x63,0xff, +0xd7,0x21,0xef,0x39,0xe8,0x61,0xec,0x61,0x1e,0x71,0xeb,0x31, +0x78,0x62,0x5d,0x6b,0xe9,0xce,0xd7,0xd9,0xf4,0x6c,0x2a,0xd1, +0x97,0x16,0x7b,0x09,0xee,0x04,0xce,0xc1,0xbe,0xee,0x7e,0x43, +0xec,0xc3,0x25,0xc6,0xc2,0x45,0xd6,0x64,0x3e,0x8e,0x9e,0x82, +0xef,0x70,0x6a,0xae,0x31,0x4f,0x11,0x40,0x0b,0x3e,0xff,0xb3, +0x10,0x3e,0xa7,0x99,0xc4,0x34,0x34,0x66,0x32,0x28,0xb1,0x5d, +0xf8,0xe9,0x2d,0xb7,0x40,0x20,0xb5,0x9b,0xd2,0x18,0x38,0x47, +0xf0,0x1c,0x7e,0x80,0x73,0xec,0xe8,0x16,0xe5,0x41,0x22,0x2c, +0xa2,0x68,0xb7,0x4f,0xf4,0x14,0xc2,0x05,0x4f,0xf4,0x02,0x46, +0x58,0xd7,0xf5,0xf7,0x78,0xe6,0xc7,0xfe,0x70,0x22,0xb4,0xeb, +0xf7,0x2f,0xbf,0xd2,0xa1,0xb4,0x92,0x5f,0x51,0x2e,0xd7,0x17, +0xdb,0x59,0x71,0xa2,0x40,0x01,0x75,0x19,0xcc,0x87,0x65,0x0c, +0x1c,0xc4,0xf9,0x04,0x57,0xd1,0xf6,0x2a,0x86,0xc2,0xa7,0x03, +0xa1,0x69,0xe8,0x32,0xd0,0x62,0xc1,0x53,0x15,0x56,0xd1,0xf6, +0x2a,0x4a,0x95,0xf7,0x2a,0x1f,0x10,0x1d,0xa9,0x5c,0xf4,0x91, +0xdd,0x38,0x1d,0x3f,0xc3,0x15,0x1a,0x38,0x05,0x5c,0x29,0x11, +0x6e,0xa5,0xd6,0xa5,0x0f,0x1b,0xba,0x44,0xf9,0xdf,0x43,0x29, +0x87,0xbc,0xca,0x1c,0xf6,0xab,0x56,0xc0,0x1c,0xd8,0xdc,0x0e, +0xd3,0xa3,0x60,0xdb,0xc0,0xbc,0xc6,0xb6,0xab,0x38,0x09,0x96, +0xe3,0xce,0xb2,0x3e,0x1e,0xf5,0xc1,0x9c,0xf2,0x48,0xb8,0xa8, +0x2e,0x6e,0xf0,0x22,0xb8,0x98,0xfe,0xee,0x62,0x06,0x17,0x8b, +0x9b,0x08,0xb5,0xa5,0x26,0x3a,0x5e,0x38,0x45,0x4e,0xd0,0x95, +0xfe,0xc0,0x75,0x60,0x9f,0xdd,0x03,0x62,0xb8,0x10,0x33,0x5f, +0xd3,0xc3,0x59,0x39,0x9c,0x5d,0xd7,0xfb,0x18,0x32,0xa5,0x43, +0x46,0x07,0x66,0x30,0xe0,0x81,0x01,0xa4,0xbd,0xbf,0x5e,0x01, +0x2b,0x71,0x29,0x3a,0x29,0x84,0x06,0x76,0xeb,0x0a,0x5c,0xb7, +0x10,0x9b,0xb5,0x72,0x8c,0x78,0xb8,0xf1,0x03,0x98,0x7d,0x6c, +0x84,0xb1,0x94,0x1c,0xb6,0xe2,0xe6,0x81,0x32,0xb6,0xb3,0x98, +0xa6,0x1c,0x49,0xa8,0xfc,0x32,0x1c,0x69,0xc7,0x23,0xb0,0x94, +0xd5,0x53,0xa5,0xbf,0xf9,0x92,0x36,0x46,0xff,0x35,0x41,0xf2, +0x2e,0xef,0x46,0xff,0x9b,0xed,0xdf,0x16,0xff,0x78,0xe1,0x35, +0xf5,0xae,0x43,0x1b,0xbc,0xb5,0x5d,0xb6,0x05,0x3c,0x3b,0xf6, +0x7e,0xc0,0xbb,0x74,0xdb,0xd0,0xe0,0x3f,0xbc,0x8b,0x67,0xad, +0x3f,0x79,0xd7,0x97,0x60,0xc8,0x94,0x52,0xb7,0x18,0xf0,0xae, +0x9d,0x6e,0x8b,0x3c,0xd6,0x48,0xde,0x95,0x1f,0x53,0x14,0x57, +0x18,0x2f,0xa1,0xc6,0x48,0x53,0x18,0x49,0xbd,0xcb,0x29,0xd8, +0x31,0xc4,0x49,0xf2,0xae,0xb2,0xd8,0xf2,0xb8,0xf2,0x04,0xc9, +0xbb,0x86,0x48,0xde,0xf5,0x1d,0x53,0x3d,0xe0,0x5d,0xc9,0x6c, +0x45,0x52,0xd9,0xbf,0xde,0xb5,0x27,0x78,0x77,0x30,0x07,0x92, +0x18,0x56,0x0c,0x6a,0xa6,0xe2,0xd8,0x8b,0x73,0x9d,0x4d,0x2c, +0xcc,0x75,0x24,0xef,0xea,0xae,0x6d,0x68,0xbc,0xdc,0x9c,0x65, +0x7c,0xc9,0xae,0xc8,0xb3,0x7c,0xef,0x7f,0x78,0x97,0x88,0x25, +0x03,0x0c,0x36,0xde,0xc2,0x33,0xcc,0xf3,0xf8,0x81,0xe3,0x12, +0x83,0x1d,0x4d,0x19,0xec,0x68,0x58,0x24,0xa7,0x70,0x3e,0x92, +0x32,0xd8,0x91,0xe8,0xcf,0x5a,0x1c,0x33,0x0d,0x35,0x0d,0x4b, +0x90,0xa6,0x33,0xd2,0x7f,0xce,0xfe,0x21,0xef,0x9c,0x6f,0xa4, +0xdf,0x39,0xff,0x01,0x0a,0xeb,0xfb,0xfb,0xa1,0xdb,0x9c,0xf0, +0x5c,0x18,0x43,0xfc,0x7b,0xf7,0x5d,0xf5,0x68,0xa6,0xae,0x58, +0x60,0x91,0x27,0xb9,0x62,0xff,0xd9,0x6c,0x72,0x0b,0x8b,0xb6, +0x33,0x14,0xc8,0x8a,0x08,0x16,0x6d,0x81,0x22,0x76,0xf4,0x4d, +0xe1,0x10,0x01,0xfe,0x6a,0xfb,0xd3,0xc4,0xa7,0xd2,0x9e,0xd2, +0x3d,0x11,0x7b,0x8f,0x7b,0x68,0xec,0x3d,0x71,0xe4,0xa4,0xf3, +0xc4,0x39,0x92,0x50,0xfb,0x0b,0xe6,0x76,0x49,0xda,0x95,0x44, +0xcd,0x98,0xb2,0x73,0xd5,0xcf,0xd4,0x71,0xdf,0x1d,0xd9,0x56, +0x5c,0x66,0x06,0x8b,0x98,0x60,0x5d,0x2b,0x19,0x0e,0x35,0xe5, +0x84,0x4c,0x88,0x21,0x98,0x08,0x00,0x89,0xd2,0x24,0x85,0x33, +0x81,0x45,0x10,0x46,0xb1,0x34,0x50,0x4c,0xf8,0xbf,0x61,0x41, +0xea,0x12,0x0b,0x7a,0x54,0xe6,0x26,0xb1,0xa0,0x59,0xfb,0x70, +0x82,0xc4,0x82,0xca,0xc9,0x87,0x83,0x03,0x2c,0x88,0xb2,0xe0, +0x39,0x85,0xf8,0x59,0xe1,0x54,0xca,0x82,0x94,0x67,0x06,0x44, +0xcb,0xd6,0xb7,0xe3,0x7a,0x98,0xfb,0xe9,0xdb,0x1c,0x50,0x74, +0xa1,0x0e,0x7b,0xa9,0x29,0xad,0x29,0xa9,0x5a,0x91,0xcc,0x1f, +0xfd,0x6f,0xd1,0xb2,0x9c,0x86,0xf4,0xfa,0x94,0x66,0x45,0x0a, +0xef,0x3e,0xcb,0x14,0x47,0x6c,0x5b,0x5a,0x66,0xc7,0x27,0xa5, +0x27,0xa6,0xc6,0xa7,0x72,0x22,0x76,0x5e,0x15,0x56,0x74,0xb1, +0x62,0x82,0xd2,0x88,0xb4,0x89,0xe3,0x4d,0xfb,0x30,0x63,0xbd, +0x29,0x04,0xb2,0xae,0xd3,0xe7,0xe0,0x50,0x1c,0xa2,0x55,0x62, +0xce,0xc3,0xf8,0xf7,0xaf,0x61,0x68,0xe2,0xc0,0xc4,0xc8,0x22, +0x9c,0xc4,0xa4,0x50,0xc4,0x61,0x99,0xea,0xcc,0xcc,0x7a,0x4d, +0x61,0xe5,0x8d,0x36,0x1d,0xc8,0x60,0x4d,0x54,0x31,0x03,0xc7, +0xd3,0x06,0xfc,0x17,0x5e,0x90,0xa4,0xcc,0x96,0xe2,0x1c,0x96, +0x9a,0xa3,0xa3,0xf4,0x2e,0x6f,0xe9,0xbf,0xf2,0x65,0x4b,0x25, +0xf9,0xb2,0xbf,0xd4,0xc2,0x89,0xc7,0x45,0xaf,0xa6,0x43,0x37, +0xda,0xbf,0x2b,0x7e,0x9d,0x23,0x41,0xff,0xa1,0x8d,0xde,0x14, +0xfa,0x8f,0x3c,0x0b,0xfe,0xf5,0xe4,0x80,0x86,0x5b,0x1b,0xea, +0xff,0x9f,0x8c,0x73,0xd2,0xff,0x34,0xce,0xac,0xff,0x93,0x71, +0x1e,0x1b,0x30,0x4e,0xf9,0x7f,0x18,0xe7,0xd0,0xff,0x93,0x71, +0x86,0x36,0xf3,0xfb,0x24,0xe3,0x1c,0x80,0x7e,0xcd,0xff,0x34, +0x4e,0xb3,0x9d,0xd6,0x05,0x16,0x03,0xc6,0x59,0xd1,0x9c,0x25, +0xbb,0x64,0x57,0xf8,0xbf,0x1b,0x67,0xbf,0x8d,0x92,0x23,0x7e, +0x32,0x47,0x39,0x0e,0xda,0x5c,0x60,0xc6,0xff,0xf9,0xa0,0xbe, +0x33,0xe5,0x3e,0x17,0xcd,0x24,0x69,0xd7,0x1a,0xfc,0xb2,0xb5, +0xb0,0x95,0x9f,0x7d,0xc7,0xb1,0xdd,0xbf,0x87,0x53,0x2e,0xa6, +0x23,0x7a,0x88,0x06,0x02,0x8f,0x66,0x87,0x4f,0xd6,0x97,0x41, +0xad,0x4f,0x53,0xdc,0x48,0x32,0x3c,0x32,0x77,0x65,0x3a,0xd9, +0x06,0x59,0x1e,0xb5,0x08,0x96,0x98,0xca,0x01,0x78,0x8f,0x83, +0xdf,0x9b,0xcd,0xc4,0xa1,0xe2,0x35,0xca,0x51,0x12,0xe5,0xef, +0x32,0x5e,0xe7,0x3c,0xbd,0xa4,0x96,0xe0,0x1d,0xef,0x13,0xe7, +0x5b,0x9b,0xcb,0x7b,0xde,0xb6,0xfc,0xc5,0xb5,0x97,0x2b,0x85, +0xa3,0x04,0xd7,0xbe,0x85,0xb5,0x0c,0xed,0xcd,0x19,0x74,0xfc, +0x67,0xe2,0x5a,0x66,0xf4,0x15,0x21,0x96,0x80,0x46,0x63,0xfb, +0xc3,0xf8,0x6f,0x39,0xd0,0x62,0x22,0xf6,0x45,0xf8,0x1c,0x3f, +0xc0,0xed,0x3f,0x71,0xf4,0x84,0x2b,0x35,0xde,0x24,0x4b,0x95, +0x57,0xcc,0xbd,0x9c,0x0b,0x2d,0x09,0x9a,0x31,0x25,0x67,0xcb, +0x6f,0xa8,0xe3,0xfe,0x1e,0xb9,0x11,0x2e,0xb5,0xa4,0x60,0x15, +0xb2,0xd5,0x5c,0x8e,0x43,0x77,0x71,0x42,0x46,0x02,0xa1,0x96, +0x1b,0x84,0xc0,0xb4,0xa3,0x21,0xbd,0x18,0x84,0xa3,0x06,0x1b, +0x25,0x0e,0x25,0x75,0xd8,0xdd,0x07,0xdd,0xf4,0xd8,0x03,0x3f, +0x34,0xf6,0x1f,0x17,0x47,0x29,0x2d,0x59,0xfb,0xd3,0x0e,0xe1, +0xfb,0x35,0xf6,0x1e,0x3f,0x7a,0xd4,0x7c,0xe2,0x16,0x26,0xd9, +0x4a,0xe5,0x2a,0xf3,0xa8,0x2c,0xfb,0x5a,0xbc,0x66,0x74,0xcd, +0xb9,0x8e,0x7b,0xea,0x28,0x5c,0x63,0x8c,0x61,0x21,0xc1,0x86, +0x1e,0x68,0x60,0xb0,0x01,0xd7,0x91,0x3e,0x68,0x30,0x60,0x6d, +0x87,0xe9,0x62,0xc3,0x35,0x56,0x58,0x8e,0x0b,0x49,0xce,0xde, +0x6c,0xfb,0xb4,0x5d,0xcd,0x59,0xfc,0x91,0x32,0x9f,0x1a,0xaf, +0x22,0x4e,0xfc,0x1a,0x8d,0x49,0x47,0xd3,0xe5,0xae,0xdc,0x76, +0x0b,0xca,0x71,0x2c,0x76,0x59,0x29,0xac,0x39,0x41,0x0b,0xc6, +0x93,0x0c,0xe7,0x74,0xb3,0x04,0x9b,0xae,0x14,0xfe,0x58,0xad, +0x5f,0x8b,0xb4,0xe6,0xda,0x23,0x98,0x24,0xd8,0x27,0xe8,0x46, +0x5a,0x5d,0x89,0xe1,0x8f,0xb7,0x05,0xf7,0x1c,0xad,0xe6,0x46, +0xdf,0x16,0x16,0x12,0x48,0x04,0x69,0x7f,0xda,0x98,0x62,0x98, +0xc0,0xc5,0x30,0xc5,0x34,0x13,0x55,0xc3,0x31,0x90,0x8d,0x5f, +0x96,0xf4,0xf2,0x18,0x0f,0xe3,0xe8,0x7f,0x86,0x29,0x68,0x00, +0xda,0xc0,0xc8,0x91,0xa6,0x44,0xa8,0x82,0x51,0x38,0x8e,0xeb, +0x11,0xeb,0x08,0xcd,0xd6,0xc6,0xb6,0xc0,0x50,0x38,0xaa,0x7e, +0x6d,0x27,0xcd,0x5e,0x77,0x3b,0x69,0xa1,0x35,0x8e,0xd0,0x50, +0x2e,0x30,0x27,0xc2,0xc5,0x9d,0xe2,0x45,0xca,0x93,0xad,0x94, +0x8f,0x88,0x31,0x0e,0x47,0x76,0x26,0x46,0xa3,0x4a,0xb1,0x01, +0x0f,0x69,0x30,0x86,0xb2,0x68,0xa6,0x4c,0xc2,0x64,0xa6,0x8c, +0xb2,0xf4,0x2f,0x91,0x81,0x1c,0x1c,0x53,0x44,0xe3,0x42,0x02, +0xa8,0xe0,0xb8,0xf7,0x32,0xa9,0xde,0x73,0xa2,0x38,0x8c,0x08, +0x56,0xdd,0xa2,0x15,0xf3,0x11,0x4f,0x12,0xfb,0x55,0x26,0xf3, +0xb7,0x2d,0xdd,0x75,0x7a,0x40,0x61,0x45,0x9f,0x87,0xb3,0xf1, +0x10,0x90,0x0c,0x1e,0x17,0xd3,0xbc,0x52,0xe9,0x57,0x57,0x01, +0xaf,0xff,0x4e,0xf7,0x95,0xce,0x53,0x53,0x2f,0xbe,0xd4,0xa1, +0xd8,0xba,0xd8,0x1a,0x27,0x1d,0xc1,0x85,0xc7,0x70,0x6d,0x58, +0xd7,0xe3,0xe6,0x1f,0x1b,0x5f,0x73,0xc2,0x81,0x9e,0xfe,0xb7, +0x92,0x64,0xc9,0x7c,0x65,0x06,0x41,0x23,0x26,0x26,0x23,0x3a, +0x23,0x3a,0x53,0x1e,0xc3,0x7b,0x4c,0x37,0x5f,0xb2,0x76,0x4b, +0xa9,0x03,0x1f,0x17,0x1b,0x47,0xff,0x71,0x38,0x8a,0x45,0x97, +0x30,0x9c,0x61,0x8d,0x63,0x35,0x1a,0x9c,0x2e,0xde,0x4e,0xbb, +0x13,0xff,0x46,0x0d,0x92,0x71,0x15,0xaa,0x33,0xd2,0x8c,0x8a, +0x0a,0x53,0x95,0x9e,0x51,0xab,0x29,0xbc,0xa2,0xb8,0x9d,0x5b, +0x9e,0xdf,0x91,0x5a,0xcb,0xfd,0x2a,0xed,0x03,0xe5,0x9a,0xef, +0x3c,0x4e,0x05,0x8e,0xa3,0xb6,0xe1,0x1e,0xae,0x38,0xbe,0x47, +0x63,0x57,0xd8,0x91,0x10,0xa7,0x89,0x8b,0xa5,0x59,0xc6,0xe7, +0xcc,0xcd,0xc2,0x9c,0xde,0x64,0xcd,0x84,0x86,0xc8,0x2b,0x2f, +0xd4,0xc5,0x6d,0x0a,0xfa,0xa1,0xa0,0x85,0xc6,0xc6,0xb3,0x9d, +0x38,0x9c,0x08,0x5b,0x49,0xa0,0xf3,0x7e,0xcb,0x7d,0xce,0x1c, +0x2e,0x62,0x8a,0x2e,0x5f,0xaa,0xce,0xae,0xe7,0xca,0xf0,0x26, +0x99,0x07,0x6a,0x3f,0x31,0xcd,0xa8,0x46,0x40,0xed,0x77,0x54, +0x63,0x85,0x11,0x18,0x2e,0x99,0xd7,0xc0,0x94,0x02,0x6b,0x84, +0xec,0x0c,0x36,0x2e,0x37,0x26,0x3f,0x52,0x2a,0xc9,0x1a,0xbc, +0xfa,0xc0,0x76,0x1b,0xe3,0x46,0x37,0x3e,0xeb,0x52,0x5a,0x7e, +0x4a,0x11,0x07,0x63,0x50,0x03,0xdd,0x65,0xe0,0x8e,0x06,0x3d, +0x60,0x00,0xa6,0x5d,0x4c,0xbf,0x2b,0x28,0x08,0xce,0x99,0xc1, +0x9e,0xab,0x39,0xdb,0x78,0xa6,0x83,0x83,0x59,0xaa,0xbf,0xe3, +0x9c,0x69,0xcc,0xe8,0xe7,0xeb,0xc8,0xf5,0xab,0x4a,0x63,0xbd, +0xeb,0xca,0xbf,0xfb,0xef,0x31,0xd7,0x8d,0x89,0xd2,0xb8,0x5f, +0xa7,0xdf,0x98,0x81,0x59,0xb0,0x94,0x08,0x53,0x85,0x31,0xe2, +0x54,0xe6,0xaa,0xf4,0x42,0x29,0x1d,0xce,0x63,0x3a,0xc5,0xa0, +0x49,0x67,0x08,0xce,0x64,0x9c,0x82,0x13,0x1a,0x34,0xa1,0x19, +0x1c,0x05,0x35,0xcc,0x65,0x93,0x0a,0x13,0x0b,0x62,0xf3,0x65, +0x71,0x7c,0x88,0x7b,0x88,0x5b,0xa0,0x1b,0x87,0xe6,0xa2,0x1a, +0x70,0xcc,0x71,0xdc,0xba,0x8d,0xa6,0xce,0xcb,0x56,0x94,0xc8, +0x78,0x30,0x81,0x41,0xd7,0x61,0x7a,0x34,0xe8,0x71,0xdf,0x61, +0x0f,0xb3,0x21,0x67,0xff,0x43,0x49,0x87,0xb3,0x42,0x2a,0x2b, +0x75,0x53,0x2a,0xc1,0x2d,0xb6,0xd0,0x3f,0xe8,0xe8,0xef,0x78, +0xd8,0xfe,0xb0,0x94,0x52,0x0c,0xeb,0xc4,0x61,0x90,0x6a,0x84, +0xa9,0x38,0x88,0xfe,0x26,0xbe,0x67,0x9d,0x03,0x9d,0x83,0x1c, +0x82,0xd2,0x25,0x79,0x87,0xb2,0x37,0xa5,0xaf,0x6b,0x39,0x88, +0x16,0xa2,0xa4,0x84,0x7d,0xb3,0x94,0xb0,0x1f,0xf9,0x94,0xb0, +0xef,0x94,0x12,0xf6,0x30,0x9a,0xb0,0x8f,0xa2,0xa7,0x47,0x49, +0xa7,0x47,0x11,0x18,0x45,0x4f,0x8f,0x62,0x4d,0x36,0x91,0x50, +0xe3,0x80,0xad,0xbe,0x0a,0xaf,0x53,0x7c,0x8c,0x45,0x7b,0xcc, +0xd5,0x84,0xb6,0x64,0xb5,0xa8,0xa0,0xc8,0xe0,0x73,0x21,0xd5, +0xd9,0x7c,0x60,0xfd,0xbe,0xaf,0xfd,0x2b,0x9d,0x0f,0xf3,0xf1, +0xbe,0x49,0x7b,0x92,0xf6,0x1c,0x38,0x79,0x20,0x7c,0x7f,0x78, +0x46,0x5b,0x52,0x4f,0x42,0x3b,0x0d,0x18,0x6d,0xcf,0x49,0x43, +0x69,0x7d,0x5d,0x61,0xa5,0x63,0x09,0xbf,0xdf,0xd1,0xce,0xc1, +0xd6,0xcd,0xad,0xd2,0xab,0xce,0xbf,0x85,0x83,0xc4,0x56,0xac, +0x78,0x48,0xfd,0x27,0x10,0x13,0x1f,0x41,0x55,0x1b,0x56,0xbd, +0x90,0xad,0xc4,0x32,0x53,0x28,0x5b,0x8f,0xe1,0x18,0x08,0xe1, +0x1b,0xb0,0xca,0x0c,0xc2,0x19,0x9d,0xed,0x33,0x28,0x11,0x77, +0xa6,0x49,0xd8,0xed,0xec,0x6b,0x97,0x3a,0x8a,0x39,0x0a,0xcd, +0x4e,0xc7,0x1d,0x4f,0x38,0x9e,0x8c,0x93,0x44,0x3f,0x53,0x60, +0x44,0x36,0x0c,0x2a,0x08,0x6b,0xe5,0xcd,0x03,0xe5,0x41,0xc6, +0x14,0xd8,0x96,0xb1,0xe5,0x79,0x45,0x85,0x97,0x4a,0xb8,0x28, +0xa6,0x06,0x55,0xbf,0xc5,0xe1,0xa0,0xb5,0xa8,0xb4,0x85,0xd7, +0x2b,0xb1,0x28,0x71,0xba,0xcc,0x89,0x89,0xb0,0x9d,0xec,0x0d, +0x90,0xf4,0x08,0x39,0xb8,0xf5,0xbe,0x7d,0x26,0xc4,0x1a,0x63, +0xec,0x3c,0xc5,0x4f,0xf8,0x86,0x75,0x0b,0x74,0x0d,0x72,0x09, +0x4a,0x33,0xe1,0x7f,0x2b,0x7d,0x56,0xfa,0xb8,0x9a,0x83,0x43, +0xc2,0xb0,0x01,0xc1,0x55,0xe0,0x59,0x58,0xad,0x0a,0xc3,0x68, +0x7b,0x18,0x03,0x6b,0x54,0x81,0x07,0x96,0xde,0xc6,0xe8,0xbf, +0x96,0xc2,0x58,0xa2,0x5c,0x29,0xd6,0xf7,0xaf,0x64,0xc1,0x85, +0x06,0x57,0xdc,0x80,0x83,0x5b,0x5e,0x6c,0xd6,0xac,0x7d,0x9b, +0x0b,0xc3,0x12,0x07,0x2a,0x98,0x19,0xb0,0x0d,0x7d,0x57,0x5f, +0xb4,0x7e,0xcb,0x35,0xe0,0x57,0x0a,0xd8,0xc2,0x9a,0x6b,0xe9, +0xae,0xb4,0x34,0xe6,0x4c,0xc1,0x8a,0x0d,0x99,0xe9,0xbf,0x6c, +0xcf,0xc6,0xdd,0x9d,0x5e,0x37,0xfc,0xbe,0x56,0x1c,0xe6,0x2f, +0x2c,0x2b,0xd2,0x6a,0xda,0xe6,0x26,0xb3,0xb7,0x34,0x75,0x2a, +0x31,0xe5,0xdb,0xab,0xea,0x5a,0xca,0x7a,0xb9,0x15,0x4f,0x61, +0xb8,0x02,0xb4,0x27,0x0a,0xa3,0x98,0xe4,0x1e,0x95,0x79,0x94, +0xa4,0x8a,0x5d,0xe2,0x76,0xa1,0x8b,0xfd,0x51,0xd4,0x25,0xf0, +0x15,0x3c,0xa4,0x9c,0xb2,0x5d,0x0a,0x7f,0x5e,0x14,0x0c,0xbc, +0xe8,0x3d,0xb1,0x92,0xdc,0x50,0x01,0x06,0xc0,0x16,0x7d,0xdc, +0x82,0x0e,0xc6,0xe0,0x40,0xc3,0x73,0xd0,0x57,0x41,0x11,0x41, +0x1a,0xf8,0x95,0x11,0x84,0x31,0xde,0x38,0x71,0xd5,0x3c,0x9a, +0x64,0x0e,0x29,0xa3,0x14,0x66,0x3d,0x8c,0xfc,0x09,0x26,0x44, +0x49,0x1c,0x59,0x92,0xc5,0xf8,0x16,0x47,0x81,0x0c,0x3f,0x97, +0x64,0x31,0xb6,0x80,0xca,0xca,0xb7,0xde,0xa0,0xc6,0x41,0x55, +0x0f,0xd3,0xaf,0x2b,0xda,0x90,0xbf,0x26,0xeb,0xff,0x3d,0x99, +0x05,0x85,0x90,0x47,0x82,0x6e,0xfa,0x3d,0xf0,0x6f,0xb7,0x3a, +0xcc,0x67,0xca,0xd3,0x37,0x25,0xec,0xe0,0x30,0x64,0x21,0xc9, +0xfd,0x36,0xf5,0xf7,0xa8,0x8f,0x14,0x17,0x4e,0x4e,0x0b,0x9c, +0xb7,0x7f,0x15,0x27,0xfc,0x05,0xc1,0x04,0xd6,0xe1,0x01,0x1a, +0x2e,0x22,0x92,0xbe,0x4a,0x4a,0x52,0x1f,0x0d,0xa1,0x9b,0xff, +0xad,0xc9,0x7a,0x50,0xf9,0x39,0xd9,0x5c,0x67,0xd0,0x29,0xbb, +0x69,0xe7,0xca,0xb7,0xee,0xec,0x95,0xdf,0xb2,0xdd,0xb1,0x7b, +0x9d,0xe7,0x22,0x3f,0xda,0xff,0x30,0xe4,0xc2,0x8f,0xc5,0x8f, +0x6a,0x5f,0x58,0xbf,0xdd,0x0d,0x83,0x7c,0x52,0xbb,0xf8,0xb9, +0xd9,0x6b,0xf3,0xb6,0x96,0x3e,0xee,0xea,0xfd,0xba,0xe9,0x2d, +0x57,0x2f,0x96,0x9a,0x08,0xce,0xac,0xed,0x06,0xb9,0xf1,0x36, +0x1b,0x4e,0xe4,0x9f,0x92,0x74,0xf3,0x74,0xed,0x78,0xbd,0xb6, +0x0c,0x3e,0xf8,0xaa,0xdf,0xdd,0x43,0x2d,0x1c,0x1e,0xc2,0x1b, +0xff,0xa3,0x8e,0xeb,0x5f,0x2c,0x6a,0x91,0x4e,0x3c,0x01,0x0b, +0x0c,0x71,0x01,0x86,0x9b,0xd0,0x68,0x63,0x8c,0xf9,0x32,0xe1, +0xef,0x2e,0x2c,0x02,0x63,0xda,0x71,0x32,0x10,0xc9,0x16,0xe6, +0xdc,0xf5,0xb3,0x77,0xee,0xab,0x8b,0x16,0x4c,0x4e,0x61,0x76, +0x51,0x46,0x09,0x27,0xe8,0x75,0x8a,0x14,0x89,0x8a,0x93,0x4a, +0x12,0x4a,0xe5,0x89,0xfc,0xfe,0x79,0x96,0x73,0x36,0xad,0xa9, +0x71,0xe6,0x13,0x93,0x12,0x92,0xe2,0x93,0x4e,0xeb,0x86,0x6f, +0x39,0xa1,0xcd,0xad,0x91,0xdf,0x67,0xc2,0x36,0x06,0xaf,0x0f, +0xdc,0xc4,0x09,0xcb,0x99,0x88,0xb0,0x88,0xb0,0xd3,0x61,0x9c, +0x7d,0xd8,0xb1,0x23,0x96,0x13,0xa7,0x31,0xe9,0x72,0xca,0x02, +0xee,0x96,0x67,0x3f,0x4a,0xd1,0x3c,0x9b,0x74,0x2e,0xe9,0x6c, +0x32,0xf7,0xa4,0x7d,0x0b,0x13,0xdd,0x12,0xd5,0x15,0x79,0x95, +0xfb,0x9a,0xe9,0x77,0x14,0x47,0xff,0xd3,0x29,0x2f,0x94,0xf6, +0x24,0xc3,0x24,0x63,0x43,0xfc,0xf6,0xd6,0x34,0x3e,0xe8,0x96, +0xff,0x23,0xff,0x0e,0x0e,0x7d,0xf0,0x0a,0xb9,0xf4,0x9f,0xcf, +0x72,0x80,0x76,0xed,0x1b,0x98,0x4b,0x22,0xac,0x4f,0x9b,0x86, +0x2b,0x38,0x9c,0xcc,0x44,0x75,0x9e,0x6b,0x3b,0x5b,0xc7,0x81, +0x11,0x2e,0x21,0x91,0x6d,0x67,0x5b,0xcf,0x36,0x71,0x30,0x85, +0x31,0x8d,0x30,0x3b,0x6d,0xa9,0x81,0xce,0x72,0x12,0x6e,0x74, +0xdc,0xe8,0xb8,0x29,0x47,0xc1,0x27,0xae,0x33,0xa6,0x27,0xba, +0x93,0xb2,0x1d,0xd4,0x26,0x31,0xed,0xd1,0xdd,0x51,0x3d,0x14, +0xcf,0x98,0x70,0xbd,0x93,0xc6,0x27,0x2c,0xb8,0xd1,0xe0,0x23, +0x0d,0x8f,0x91,0x34,0xc8,0xab,0xce,0x90,0xc7,0xb0,0x2a,0x97, +0x66,0x72,0x34,0x6f,0xd4,0x16,0xd2,0x3b,0xc4,0x87,0x78,0x98, +0xc5,0x4a,0x4f,0x5c,0xa5,0x8d,0xb3,0x34,0x60,0x2b,0xe5,0x9a, +0x33,0x80,0x7b,0xf1,0x3e,0x1e,0x96,0x70,0xd2,0x66,0x8b,0x25, +0xb7,0x56,0xc0,0x6c,0x9c,0x50,0xd1,0xcc,0xe3,0x4a,0x98,0xb8, +0xf6,0x23,0x38,0xab,0x43,0x9c,0x11,0xc6,0xb1,0xe8,0xb4,0x14, +0x47,0xd2,0x18,0x30,0x46,0x43,0x47,0xf0,0x23,0xc1,0xb7,0xfc, +0x1f,0xfb,0x77,0xd8,0x04,0xf0,0xe9,0xf2,0x8c,0xf5,0x71,0xdb, +0x38,0xb4,0x5b,0x4c,0xce,0x7f,0x9b,0xf0,0xdb,0xb9,0x8f,0xa6, +0x51,0xfc,0xe9,0xe9,0x21,0x0b,0xbc,0x57,0x72,0xca,0x96,0x25, +0xa4,0xf2,0xc5,0xc5,0xf7,0x29,0xdf,0x9b,0xa4,0xf3,0xc1,0x5a, +0xfb,0x71,0xc8,0x2e,0x6d,0x0e,0xb3,0xf6,0x90,0xa2,0x47,0x17, +0x61,0x44,0xdc,0x4b,0x93,0x04,0x3e,0x6c,0xa5,0x17,0x0e,0x75, +0x97,0x0a,0xdd,0xb5,0x3c,0x27,0xf5,0xff,0x3b,0xc0,0xec,0xa9, +0xf4,0x1e,0x00,0x98,0xb8,0x56,0x2c,0x7d,0x08,0x71,0x14,0x60, +0xe2,0x1e,0x41,0x45,0x1b,0x56,0x48,0x00,0x53,0x6c,0x0a,0xc5, +0xeb,0x69,0x0a,0x1b,0x08,0x27,0x36,0x60,0x85,0x19,0x1c,0x67, +0x76,0xee,0x98,0x69,0x82,0xaa,0xce,0xe7,0x2d,0xf8,0x5b,0xd9, +0x57,0x73,0xdb,0x8b,0x3e,0x01,0x8c,0xd3,0x3f,0x00,0x33,0x2a, +0x05,0x86,0x67,0xff,0x59,0x10,0xd6,0xc2,0x5b,0x04,0x2a,0x82, +0x8c,0x29,0x6d,0x5b,0xce,0x96,0xe7,0x16,0x7e,0xc2,0x97,0x6a, +0x54,0x7d,0x49,0xf1,0x65,0x95,0x84,0x2f,0xfa,0x14,0x5f,0x9c, +0x29,0xbe,0xbc,0xc0,0x65,0xb4,0x0f,0x8d,0xa5,0x3e,0xd4,0x15, +0x2a,0xc9,0xb1,0x6b,0xfe,0xf7,0x0f,0xb5,0xd2,0xe7,0x4d,0x33, +0x4b,0xdf,0x1c,0xb7,0x93,0x43,0xa7,0xe9,0x24,0xe7,0x65,0xe2, +0x87,0xb3,0x1f,0xcd,0x3e,0x6d,0x3a,0xa0,0xcf,0x2b,0x44,0x80, +0x33,0x41,0x35,0x1c,0x04,0x6a,0x52,0xed,0x28,0x18,0x4a,0xdb, +0x43,0x19,0x09,0x71,0xd4,0x68,0x4c,0x57,0xa3,0x69,0x1c,0xa5, +0xf3,0xb6,0x79,0xce,0x4d,0x7b,0x6f,0x5c,0x7d,0xd3,0x00,0xc3, +0x6a,0x61,0x8a,0x2c,0x93,0x77,0xc1,0x51,0xbb,0xe6,0x5a,0xae, +0xd9,0xfd,0xc1,0x17,0x26,0x9c,0x82,0xd9,0x1c,0x14,0xf7,0x60, +0x09,0xac,0x36,0xc0,0xd5,0x62,0xb9,0x91,0x50,0xc1,0x44,0xe2, +0xca,0x5c,0x5c,0xda,0x84,0xa3,0xad,0x74,0x8d,0x14,0x1b,0x2c, +0x2a,0x4c,0xf9,0xdb,0x8d,0x9d,0xad,0x8d,0x3d,0xc5,0xba,0x55, +0x96,0x0d,0xfb,0x2b,0x3d,0x2a,0x52,0x63,0x9b,0x73,0x41,0x8f, +0xb7,0x28,0x50,0x39,0x21,0x5c,0x20,0xb6,0x85,0x3b,0x4b,0x4c, +0xb2,0x0e,0xd8,0xf2,0xed,0xfe,0xb7,0x5d,0xab,0x3d,0x38,0x6c, +0x44,0x25,0xa1,0x0c,0xc3,0xde,0x10,0xed,0x71,0xfe,0xa7,0x6f, +0xa3,0x64,0x30,0x92,0x86,0x26,0xce,0x63,0x8e,0xde,0x86,0x66, +0x27,0xfe,0xf6,0x77,0x25,0xc0,0xc5,0x48,0xc2,0x39,0x0b,0xf0, +0x61,0x2f,0x3c,0x84,0xb1,0x8c,0xf4,0x12,0x66,0x3e,0xd9,0x33, +0x50,0x11,0x94,0x03,0x7f,0x18,0xd9,0x85,0x23,0x41,0xd7,0x10, +0x75,0x71,0xba,0x0c,0xa6,0xe3,0x19,0xd6,0x2c,0xc0,0xfc,0xa8, +0x65,0x70,0xbc,0x31,0x5f,0x9f,0xd8,0x98,0xdc,0x98,0xca,0x61, +0x09,0x4e,0x90,0x5e,0x8e,0xff,0xc9,0x34,0x49,0xf5,0x71,0xa1, +0x89,0xad,0x48,0xae,0x48,0x2d,0x4b,0xe5,0xee,0x0a,0x06,0x04, +0xdb,0x04,0x17,0x68,0x63,0xc5,0x39,0x78,0x86,0x80,0x19,0xfc, +0x8c,0x66,0xac,0xa8,0x2f,0x15,0xd4,0xd1,0x63,0x42,0x71,0xb1, +0x2e,0x72,0x68,0xa0,0x7d,0x89,0xc2,0x85,0xf3,0x8b,0x3b,0xc0, +0xa7,0x82,0x01,0x07,0x7b,0xfc,0x99,0x75,0xe1,0xd3,0x82,0xf5, +0x34,0x1c,0x43,0x03,0x0e,0xeb,0x52,0x22,0x9a,0x2a,0x53,0x79, +0xcf,0x3c,0x2f,0x2e,0xfc,0x3a,0x49,0x33,0xe9,0x4e,0x14,0x0c, +0x79,0xa7,0xde,0x26,0xa6,0xd2,0x1e,0xf5,0x83,0x5d,0xe4,0x7b, +0x18,0x57,0x05,0x13,0x53,0x60,0x16,0xf7,0xb0,0x57,0x1c,0xca, +0xa4,0x35,0x27,0xb7,0xc4,0x37,0x19,0xc5,0xf3,0x1e,0xb8,0x4c, +0x8f,0x42,0x04,0x8b,0x1a,0x95,0x96,0x7c,0x43,0x47,0xf5,0x8d, +0xb2,0x7b,0x99,0xc8,0x5e,0xc6,0x41,0xd7,0xa7,0xe9,0xad,0x5d, +0xbe,0x09,0x47,0x6c,0x29,0x32,0xe4,0x61,0xf8,0xd7,0xdf,0x3f, +0xba,0xf9,0xac,0x67,0xcd,0xa3,0x0d,0xbf,0x6e,0x2c,0xee,0xe5, +0x67,0xdf,0xdb,0x78,0xdf,0xe4,0x11,0x87,0x1d,0x17,0x89,0x51, +0x86,0x0a,0xae,0x46,0x6b,0xd6,0x31,0x28,0xb6,0x56,0x13,0xba, +0x21,0x0a,0x00,0x9f,0x1a,0x42,0x1a,0x06,0x61,0x94,0x38,0x8a, +0xdd,0x54,0xbc,0xff,0x9e,0x06,0xec,0x62,0xea,0xd2,0xd2,0xeb, +0x34,0x05,0x22,0x64,0x93,0x20,0x1c,0xb7,0x07,0x87,0x6b,0xe3, +0xe0,0x9d,0x30,0xc8,0x0d,0xb8,0x23,0xb4,0x4b,0x47,0xff,0xc5, +0xab,0x8a,0x67,0x19,0xc7,0xd0,0x84,0x62,0xcd,0x8b,0xec,0xb5, +0xa8,0x5b,0x71,0x4d,0xf1,0x51,0xc1,0x91,0xc7,0x22,0x8f,0x55, +0x25,0xf1,0x01,0x8d,0x5e,0xbd,0xbe,0xd5,0x4e,0x81,0x7c,0xa2, +0x6f,0xe2,0x81,0xc4,0x03,0x07,0xc2,0xdd,0xc3,0xf7,0x9e,0xca, +0x68,0xcb,0x7e,0x90,0xd0,0x6a,0x1d,0xcd,0x87,0x98,0xfa,0x6a, +0xf9,0x9a,0x70,0xa1,0x61,0x11,0xa1,0x13,0xc1,0x0f,0xa6,0x0b, +0xb3,0xd0,0x8e,0x4d,0xce,0x4d,0x29,0x8e,0xcb,0x37,0xa4,0x3c, +0xc3,0x23,0x68,0x57,0x00,0x1d,0xde,0x15,0xe2,0xac,0xb7,0x4c, +0x04,0xae,0x75,0xc3,0x09,0xab,0x36,0x97,0x5b,0xf0,0x3f,0xbd, +0xb9,0x0c,0xd3,0x23,0x69,0x1f,0xde,0xc3,0xab,0xcc,0xce,0x12, +0xbf,0xab,0x1a,0x42,0x2c,0x53,0x95,0x99,0x5a,0xa9,0x49,0x49, +0x82,0x51,0x9a,0xca,0x14,0x3d,0xd2,0x0d,0x7e,0xcc,0x1f,0x19, +0x27,0x3a,0x67,0x1d,0x56,0x11,0xfc,0x8c,0xc5,0x63,0x2c,0x96, +0x59,0xc6,0xcb,0xe0,0x52,0xa3,0x8a,0x2e,0xf4,0x13,0xab,0x66, +0x83,0x26,0x8b,0x72,0x37,0x7b,0xbe,0xdb,0xe9,0xaa,0xbc,0xc6, +0x9e,0x13,0x1f,0x79,0x4b,0x15,0x1b,0x3e,0xc7,0xcf,0x59,0xca, +0x60,0x3e,0x27,0xf8,0x39,0xcd,0xa5,0x3e,0x97,0x44,0x0d,0x12, +0x89,0x55,0xa3,0xac,0x5e,0x71,0xd9,0xcd,0x81,0xef,0x76,0xee, +0x33,0xaf,0xb5,0xe5,0xc4,0x1e,0x55,0x50,0xa5,0x1f,0x55,0x95, +0x3e,0xaa,0x2a,0x55,0x77,0x98,0x04,0xaa,0x14,0x92,0xb5,0x95, +0xab,0x48,0xa7,0xb8,0x99,0x4d,0x29,0x4d,0x2c,0x4d,0x28,0xa3, +0x74,0xcd,0x73,0x8e,0xcd,0xec,0x4d,0xab,0xab,0x9d,0xf9,0x8a, +0x9a,0xc2,0x86,0x8b,0x4d,0x1c,0xbe,0xef,0x37,0x21,0x3f,0x82, +0x42,0xe9,0x87,0x31,0xfd,0x77,0x58,0xb0,0x10,0x22,0xa5,0xda, +0xea,0x99,0x30,0x89,0x51,0x6e,0x16,0xd5,0xc8,0x0e,0x8a,0xe7, +0x67,0xee,0x3e,0x54,0x17,0x77,0x30,0x11,0x3b,0xc3,0xb5,0x4f, +0x6c,0xe4,0xd6,0x9b,0xdc,0x63,0xc2,0xd6,0x1f,0x5b,0x7b,0x74, +0x33,0x27,0x68,0xfe,0x3f,0x50,0x1d,0x12,0x60,0x31,0x71,0x06, +0x93,0xae,0x50,0x79,0xc9,0xdc,0x2b,0xcb,0x7e,0xfc,0x0f,0x54, +0x27,0x71,0xf7,0xdb,0x77,0x30,0xd1,0xad,0x51,0xdd,0x91,0xd7, +0xb8,0xdb,0x0c,0x5e,0x87,0x7d,0x24,0xc2,0xea,0xb4,0x22,0x5c, +0x4e,0x51,0x82,0x89,0xea,0x3e,0xdb,0x2e,0xc1,0xee,0x4e,0x5c, +0x4e,0xce,0xb5,0x9f,0x6b,0x3b,0xd3,0xcc,0xc1,0x04,0x46,0x4e, +0x61,0xd7,0x42,0xa3,0x5f,0xf7,0x06,0x81,0x49,0xd8,0x49,0x33, +0x57,0xe1,0x04,0xe8,0x90,0x70,0xc3,0xe3,0x86,0xc7,0x29,0x58, +0x4f,0x62,0xe2,0xba,0x62,0x7a,0xa2,0xba,0x39,0xd8,0x84,0xdb, +0x48,0x4c,0x47,0x4c,0x4f,0x64,0x2f,0x07,0x5f,0x32,0xa7,0x76, +0x52,0x08,0x36,0xa7,0x10,0x5c,0x2a,0xb8,0x10,0x69,0xd7,0x4a, +0x70,0x48,0xd0,0x31,0xfe,0x24,0xf0,0xbf,0xb7,0x4f,0x03,0x23, +0x13,0x34,0xc2,0x89,0x0a,0x18,0xc7,0x04,0x49,0x3b,0xe8,0xa7, +0x2d,0xc1,0x71,0x15,0x56,0xfc,0x9d,0x8f,0x97,0x7e,0x8f,0x7e, +0x4d,0xd3,0xe3,0xac,0x4e,0x21,0x92,0x89,0x1e,0xd8,0x41,0xff, +0x04,0xd7,0x94,0x57,0xa8,0x08,0x17,0xf1,0x3a,0xd9,0xdb,0xe8, +0x7d,0x3b,0xe0,0xdb,0xf6,0xd7,0x65,0xef,0xf2,0x3f,0x5a,0x66, +0xf1,0x07,0x57,0x7b,0x6e,0xd8,0xbd,0x35,0xf8,0xcd,0x71,0x18, +0x12,0x41,0x93,0x6a,0x58,0xdd,0x81,0xab,0x61,0xb5,0x8c,0x1a, +0x2a,0xc8,0x01,0x98,0xb3,0x38,0x3f,0x0e,0x35,0xb3,0x90,0x33, +0xd5,0xda,0xba,0x61,0x8e,0x76,0x91,0x25,0xff,0xf2,0xfa,0x8d, +0xdb,0xad,0x5f,0x67,0x6c,0xbe,0x60,0x58,0x6c,0x9b,0xef,0xd4, +0x91,0x18,0xd5,0x9e,0x4e,0x33,0x51,0x8b,0x2c,0x95,0x4c,0x21, +0x9a,0xf8,0xd6,0xec,0xab,0xd9,0x57,0xec,0xb8,0x9f,0xcf,0xdd, +0x9b,0x67,0x7f,0xde,0x8e,0xc3,0x4e,0xf1,0x4f,0xd2,0x01,0xa7, +0xef,0xb6,0x6f,0x81,0x1d,0x72,0xdc,0xb1,0x9e,0x39,0x93,0xfb, +0x55,0x7e,0xa1,0xfa,0xf7,0x26,0x5a,0xec,0x9e,0xaf,0xdc,0x23, +0xf6,0x69,0x6c,0x54,0xdc,0xa3,0xd0,0x31,0xd2,0x77,0xa9,0xc9, +0xf4,0x3a,0x37,0xfe,0x0a,0x0c,0xbb,0xf0,0x3e,0x8e,0x92,0x8b, +0xa7,0x14,0x32,0x5a,0x84,0xb3,0xa4,0xb1,0xb9,0xb2,0xb3,0xa8, +0x87,0x13,0x12,0xbb,0xc4,0x00,0x26,0xb5,0x24,0xb9,0x34,0xa1, +0xd4,0x38,0x89,0xf7,0x98,0xa6,0x8f,0xc3,0x96,0xaf,0xe0,0xca, +0x60,0x2d,0xb1,0xae,0x32,0xa9,0x32,0x29,0xda,0x63,0xcd,0x77, +0xef,0x6e,0xde,0xd5,0xec,0xc0,0x85,0xa1,0x35,0xb1,0xa9,0xd6, +0x6d,0x34,0x2e,0x71,0xb3,0xe6,0xbb,0x5c,0xbb,0xed,0x9a,0xed, +0x38,0x65,0xa0,0x2e,0x59,0x23,0x85,0xf0,0x7b,0x74,0xc8,0xc3, +0x99,0x53,0xdb,0x4f,0x6e,0x09,0xdb,0xc4,0x2d,0x31,0xf9,0x86, +0x09,0xdd,0x14,0xb4,0x3e,0x60,0x03,0x27,0xb8,0x31,0xa7,0x3f, +0x0d,0xb9,0x0d,0xed,0x5f,0xeb,0x89,0x93,0xa5,0xd5,0x7f,0xaf, +0x69,0x74,0x3e,0xff,0x20,0x55,0x53,0x1a,0xf0,0x73,0xc9,0xdc, +0xf7,0x1d,0x6b,0x98,0x98,0x4f,0xd1,0xf9,0x39,0x83,0xa2,0x34, +0xe4,0xd6,0xa7,0x14,0xe1,0x26,0x1c,0xae,0x64,0xa2,0xbb,0x22, +0xdb,0xcf,0xd5,0x4b,0x22,0x45,0xcb,0x49,0xe4,0x3f,0x43,0xbe, +0x9a,0x89,0x50,0x44,0x98,0x9e,0xb6,0xe0,0xfa,0xad,0xc4,0xd5, +0xe4,0xee,0x9f,0x6d,0xa0,0x9e,0xff,0x51,0xfe,0xef,0x66,0xc9, +0xed,0xb3,0x39,0xe1,0x12,0x3c,0x20,0x27,0x8d,0x4e,0x18,0x85, +0xd1,0x18,0xbc,0x89,0x89,0xef,0x8c,0xeb,0x89,0xe9,0x94,0x74, +0x52,0xb5,0x49,0xec,0x3f,0x31,0x78,0xc3,0x40,0x0c,0x3e,0x4e, +0x63,0xf0,0x5f,0x3a,0xca,0x42,0xd2,0xdf,0x88,0x16,0x0c,0x9e, +0x3f,0x8a,0x16,0xab,0x70,0x86,0x46,0xbb,0x85,0xca,0x0f,0xb0, +0x3a,0x03,0x02,0xe0,0x92,0x3a,0x10,0x25,0x0d,0xc3,0xf7,0x37, +0x90,0x1d,0xe8,0xc4,0xa0,0xfe,0x4a,0x24,0x18,0x86,0xd3,0x35, +0xca,0x8c,0xc0,0x06,0x46,0xfd,0x09,0xe3,0x13,0x61,0xc1,0xc0, +0xde,0xc7,0xf9,0xc0,0xe0,0x78,0xb0,0xc2,0x91,0x65,0x3d,0xd2, +0x2a,0x92,0xe9,0x4b,0x60,0x3c,0xe8,0xa9,0xc3,0x16,0x5c,0x4b, +0x9a,0x9e,0x96,0xfd,0x7c,0xfe,0x67,0xc3,0x34,0xde,0x6f,0xb1, +0xcb,0x2c,0x2b,0x6d,0x4e,0x9c,0x63,0x4f,0xea,0xbf,0x29,0x82, +0xc1,0x29,0x3f,0x19,0xa5,0xf0,0x81,0x8b,0xdd,0xa7,0xd8,0x6f, +0x90,0x94,0xe1,0x84,0x45,0x44,0x98,0xd4,0x1f,0x20,0x4e,0x02, +0x57,0xd6,0x64,0xd5,0x34,0x23,0xd4,0xb4,0x93,0xea,0xe3,0x1a, +0x5d,0xfb,0xf5,0x71,0xeb,0xaf,0x1c,0x6c,0x66,0xda,0xe7,0xfd, +0xbe,0x16,0x2c,0x77,0xe4,0x4a,0xda,0x5a,0x75,0xd3,0x7a,0xf4, +0xbf,0xe1,0xd0,0x04,0x0e,0x12,0xbc,0x00,0x0c,0x5c,0x60,0x7a, +0xa4,0xea,0xd7,0x0c,0x54,0x20,0xc3,0xe2,0x2f,0x03,0x6b,0xd4, +0x2e,0x48,0x6b,0xd4,0x5e,0xa8,0xd2,0x53,0x23,0xb0,0x82,0x41, +0x3b,0x3c,0x40,0xf0,0x4b,0x33,0x19,0x1a,0x6a,0x6b,0xe4,0xc9, +0x55,0xc0,0xf6,0xd1,0xbd,0xe7,0xa0,0xa5,0x5e,0xa1,0xc7,0x0a, +0x2c,0xf6,0x13,0xe8,0xd7,0xc3,0x7e,0x9a,0x05,0x7b,0x0b,0xf5, +0x64,0x7d,0xc0,0xb2,0x23,0x0b,0x69,0x40,0x59,0x01,0xd1,0x1d, +0x18,0x0d,0x2a,0xfa,0xf8,0x03,0xeb,0x72,0xd2,0x25,0x7c,0x57, +0x78,0x1c,0xcd,0x8f,0x16,0xa4,0xc2,0x8c,0x8b,0x30,0x31,0x9f, +0x13,0x46,0xc7,0x11,0x74,0x64,0x1c,0x83,0xe3,0x2a,0x34,0x5f, +0xb1,0x1f,0x32,0x69,0xbe,0x73,0xaf,0xda,0xab,0x85,0xdf,0xe2, +0x30,0x7b,0xef,0xfc,0x43,0x1c,0xa8,0xe9,0x63,0x13,0x6b,0x90, +0xeb,0x73,0x57,0x03,0xbc,0x99,0xda,0x94,0xb4,0x72,0x4d,0x7a, +0x47,0x14,0xdb,0xc4,0x71,0x68,0x40,0x82,0x5d,0x8e,0xb8,0x07, +0x7a,0x72,0x78,0x49,0xdc,0x76,0xa5,0x5d,0xa8,0x57,0x5c,0x11, +0xb6,0xe1,0x2b,0x26,0xe9,0x42,0x72,0x6e,0x62,0x21,0x87,0x37, +0x69,0x22,0xfd,0xbb,0x50,0x3f,0x8d,0x15,0xeb,0x2d,0x88,0x50, +0x8f,0x9c,0x58,0x4f,0x33,0xe2,0x21,0x00,0x24,0xc5,0xa4,0x29, +0xe3,0xf0,0x5d,0x9f,0xbb,0x5e,0xdd,0x6a,0x56,0xfe,0x49,0x07, +0x12,0xdd,0x13,0xf6,0xa8,0xd9,0x9c,0xb0,0x3a,0x69,0x79,0xea, +0xfa,0x37,0xb7,0x41,0xa5,0x17,0x58,0xf3,0x3c,0xde,0x43,0xdf, +0x55,0x67,0x97,0x81,0xef,0x05,0x9f,0x8b,0x3e,0x39,0x95,0x57, +0xca,0xee,0xe4,0xdd,0x30,0xcb,0xe1,0xbd,0xf5,0xf6,0xec,0x74, +0x53,0x04,0xa4,0x06,0xa4,0x1c,0x49,0xde,0x6d,0xcf,0x77,0x5a, +0x76,0x2a,0x9a,0x8c,0xbd,0x5d,0xbc,0x76,0x7b,0x7b,0xb8,0x9e, +0x76,0x8d,0xd8,0x1d,0x11,0x2d,0xe3,0x7b,0xcf,0xf5,0x45,0xf6, +0x46,0x71,0xe2,0xa2,0x1e,0x61,0x05,0x2b,0xcc,0x17,0xcc,0x48, +0x0e,0x0e,0x7b,0x3d,0x07,0xc6,0x4f,0x2b,0xeb,0xe2,0x71,0xfc, +0x6f,0xcb,0x7f,0xdc,0xfd,0x81,0xdb,0xc1,0xec,0x9d,0xb9,0x61, +0x2e,0x8e,0x9f,0x2b,0x29,0xf0,0x7d,0xf6,0xee,0xc5,0x4f,0x94, +0x26,0xd1,0x6c,0x1a,0x1f,0x93,0x0e,0x6c,0x97,0xb3,0xe0,0x86, +0x59,0x24,0xd7,0x2e,0xdf,0x38,0xcf,0x68,0x7b,0x08,0x0e,0x3a, +0x36,0xfb,0xf8,0xe5,0xe7,0xe5,0xbf,0x16,0xbc,0xe5,0x20,0xaa, +0x5d,0xdc,0xa5,0x80,0x39,0x8c,0xd7,0x2a,0x3b,0x1c,0x6a,0xb7, +0xcc,0xf7,0xb4,0xff,0x57,0x87,0x22,0x62,0xa4,0x99,0xcd,0x28, +0x70,0xcc,0x80,0x21,0x19,0x09,0x07,0xe3,0x0f,0xc6,0xf9,0x36, +0xe7,0xf3,0xbb,0xbe,0x53,0x80,0x8a,0xf5,0x43,0x4e,0xdc,0x93, +0x4f,0x2e,0x6c,0xcb,0x5a,0x93,0xbc,0xae,0x2d,0x8b,0x0f,0xbc, +0xef,0xf3,0xcc,0xeb,0x26,0x87,0x55,0xd8,0x40,0xaa,0x5f,0x9c, +0x7f,0x97,0xfc,0xce,0x3c,0x9e,0x3f,0xba,0xf4,0xe0,0x72,0x47, +0x2d,0x8a,0x64,0x7f,0x08,0x6d,0x04,0x86,0x40,0x3e,0x0e,0xe9, +0xa3,0xdf,0xe2,0xbb,0x30,0xfe,0x93,0x54,0x50,0xfe,0xa7,0x6f, +0x27,0x64,0x70,0x02,0x87,0xb0,0xb0,0xa6,0x85,0xc8,0xa6,0x20, +0xb3,0x18,0xa3,0xe6,0xe6,0x19,0xf1,0x90,0xf0,0x07,0x7c,0xf1, +0xae,0x12,0x46,0x52,0x52,0x59,0x49,0xb9,0xc3,0xa4,0x39,0x90, +0x31,0x25,0x8f,0xa6,0x23,0x71,0xef,0x70,0xdc,0x0f,0xb2,0x3f, +0x38,0xdc,0x8f,0xb7,0x08,0xce,0xb5,0x5a,0x8f,0x3b,0x96,0x68, +0x94,0x9a,0xaa,0x80,0xc9,0x8f,0xd7,0x61,0x30,0x6c,0x1e,0xb0, +0x1b,0x4d,0x71,0x3e,0x11,0xe6,0xeb,0x89,0xf3,0x69,0x84,0xdf, +0x77,0x8d,0xa4,0x07,0x66,0x1d,0xce,0x3c,0xb4,0x39,0x7c,0x71, +0xf8,0xac,0x53,0xdc,0x77,0xf0,0x0c,0x74,0xf0,0xd9,0x63,0x4b, +0x36,0x32,0xe6,0x6c,0x7c,0xa2,0x3a,0xdc,0xa4,0x96,0x79,0x3e, +0xe3,0xfc,0xc5,0xb4,0x0b,0x5c,0x09,0x1a,0xb2,0x51,0xf1,0x51, +0xf1,0x91,0xf1,0x96,0x09,0xfc,0xfe,0x9d,0xfa,0xba,0x9b,0x2d, +0xf2,0x1c,0xf8,0xe4,0xf8,0xe4,0xf8,0xa4,0x04,0x4e,0xc1,0xe2, +0xf0,0x20,0x3d,0x6b,0x1d,0x8d,0x2a,0xd7,0xfc,0xaa,0xf4,0xea, +0x84,0x46,0x35,0xc8,0x37,0xa4,0xf0,0x9f,0x60,0xad,0x02,0xa3, +0x98,0x94,0xc4,0xb3,0x51,0xb1,0x9a,0x3a,0xd4,0x40,0x74,0xe0, +0xe6,0x12,0x9a,0x16,0x9e,0xc2,0x29,0xa7,0x90,0x44,0x44,0x9b, +0xf2,0x90,0x12,0x09,0xd5,0x31,0xe0,0x95,0x9a,0x79,0x28,0xe3, +0x50,0xca,0x91,0x9a,0x5c,0xde,0xa1,0x4e,0xa7,0xcf,0xba,0x82, +0x3b,0x26,0x6c,0x21,0xb0,0xb6,0x1e,0xd7,0x36,0xdc,0x63,0x1a, +0x32,0x53,0x6a,0x92,0x35,0x13,0x4a,0xce,0x15,0xf7,0xa9,0x8b, +0xeb,0x6d,0x60,0x1a,0x13,0x62,0xe2,0xe4,0x39,0xc7,0x27,0xdb, +0x96,0x3f,0x1f,0x9d,0x15,0x93,0x1e,0x1b,0xec,0xb2,0xdf,0x7a, +0xcf,0xde,0x8a,0x03,0x7c,0x52,0x52,0x62,0x72,0x42,0x0a,0x07, +0x63,0xb6,0xa1,0xdc,0x06,0xe4,0xcb,0xdb,0xbf,0x05,0x59,0x3d, +0xca,0x18,0x9c,0x0b,0xc3,0x49,0x6c,0x6a,0x4c,0x4a,0x64,0xf2, +0xee,0x34,0xfe,0x46,0x7e,0x61,0x65,0x6c,0x17,0x07,0x1b,0x19, +0x9f,0x88,0x80,0xe3,0x7e,0x1a,0xfb,0x42,0x42,0x4f,0xec,0x9d, +0xa8,0xcb,0xc4,0xb9,0xab,0x58,0x1a,0x32,0xf8,0x3b,0x18,0x93, +0x23,0xfe,0x07,0xfd,0x7c,0x0e,0x71,0xa8,0xce,0xa4,0x67,0xa4, +0x65,0xa6,0x64,0x71,0x16,0xb8,0x92,0x74,0xfc,0x2e,0x67,0x9b, +0x55,0x3b,0x60,0xb0,0x9c,0xc5,0xe5,0xf6,0x44,0x0f,0x07,0xb3, +0x67,0x33,0xcf,0x66,0x9d,0x57,0x87,0xc5,0xaa,0x30,0x98,0xfe, +0x97,0xa1,0x63,0x96,0x4c,0x20,0x6a,0x25,0x46,0x31,0xc2,0x43, +0x55,0xcc,0x78,0x01,0x19,0xcc,0x80,0x92,0x42,0xbf,0xb2,0x4f, +0xa8,0x86,0x66,0x78,0xc0,0xbe,0xc1,0x07,0x04,0x6e,0x88,0x9e, +0x38,0x9b,0x49,0xa0,0x1e,0xcd,0x33,0xff,0x6a,0x26,0x8f,0x62, +0xc5,0x49,0x38,0x91,0x7c,0x03,0xa1,0x5a,0x2c,0xec,0x55,0xfd, +0x06,0x62,0xb4,0x24,0x85,0xf5,0x49,0xe4,0x25,0x84,0xae,0x90, +0xce,0xbc,0x84,0x98,0x15,0xac,0x16,0x76,0x10,0x94,0x14,0x17, +0x46,0xb6,0x88,0x51,0xe6,0x30,0x62,0x26,0xcd,0x55,0x67,0x9b, +0xc3,0x34,0x36,0x78,0x8d,0x9b,0xc9,0x36,0x45,0x8d,0x2d,0xff, +0xe0,0x5a,0xd5,0xad,0xa4,0x8f,0x94,0x84,0xe3,0x91,0x2e,0x38, +0x02,0x9a,0x0c,0x7e,0x6c,0x21,0x97,0xd8,0x5f,0x60,0x91,0xf4, +0x66,0x19,0x5e,0x0b,0x9b,0xc9,0xaf,0x39,0xc0,0x16,0xbe,0x2c, +0x0c,0x6b,0xe6,0x15,0xfe,0xfa,0xfe,0x7a,0x01,0xd4,0x11,0x60, +0x5b,0x2b,0x6e,0x03,0x56,0x46,0x51,0xe3,0xe0,0x49,0xdf,0x93, +0x7e,0xe1,0x9c,0x70,0xef,0x02,0xc1,0x09,0x8c,0x7b,0x48,0x6c, +0xa1,0xe6,0x53,0xf6,0xfe,0x85,0x6f,0xaa,0x7b,0x2e,0xef,0xa9, +0xe5,0x2d,0x5d,0xb7,0xee,0xd6,0xf7,0xe5,0x60,0xb6,0x0c,0x1b, +0x58,0xdd,0x6c,0xbf,0x6b,0x1a,0x52,0x3d,0xc3,0x94,0x94,0x1a, +0xcd,0xb7,0x52,0x25,0x15,0x51,0xd2,0xa6,0xc2,0xc2,0xbf,0x07, +0xf7,0x29,0xfb,0x60,0x3e,0x73,0x64,0xab,0x15,0x0e,0xb1,0x5d, +0xc1,0x5d,0xd7,0xae,0xdc,0xb0,0x49,0xdd,0x38,0xd0,0xc3,0x4c, +0xc3,0x9e,0x49,0xd0,0x55,0x69,0x62,0x6e,0x57,0xd5,0x7d,0x7c, +0x65,0xff,0xcc,0xa4,0x4f,0xf3,0xf2,0xbd,0x46,0x50,0xc9,0x7c, +0xc9,0x41,0x32,0x56,0x92,0xd0,0xbd,0x41,0x7b,0x0f,0xef,0xe1, +0xd0,0x50,0x34,0xee,0xbe,0x22,0x4c,0xd2,0xef,0x11,0x8c,0x31, +0x91,0x49,0xca,0x4d,0xc8,0x8f,0xcf,0xe7,0xd0,0x1f,0x23,0x09, +0x0c,0x15,0x26,0xe1,0x50,0xa9,0xb3,0xb4,0x08,0xa8,0xd0,0xb6, +0x0a,0x7d,0x2a,0x2d,0xa9,0x8f,0x27,0x28,0x97,0x2b,0x27,0xb0, +0xba,0x68,0x46,0xc4,0x0a,0xf8,0x92,0xf2,0x7b,0x7c,0x3e,0x8c, +0xb6,0x34,0x68,0x4b,0xac,0xa0,0x67,0x85,0x0a,0x9c,0x2a,0xd2, +0xb3,0xf3,0xb1,0x9e,0xc0,0xc4,0x86,0x3f,0xae,0x3e,0xbc,0x6e, +0x53,0xc1,0x6f,0xd0,0x9f,0x6d,0x82,0xc4,0x8e,0x13,0x9a,0x61, +0x04,0x79,0xef,0x00,0x23,0xf5,0xde,0xe9,0x57,0x35,0xf1,0xf3, +0x3a,0x71,0xcc,0x8d,0x69,0x55,0xdc,0x68,0x61,0x83,0x24,0x87, +0xaa,0x86,0x5f,0xc0,0x6a,0x39,0xa5,0x02,0xa3,0x41,0xcd,0x14, +0xf5,0x84,0x25,0x40,0x7d,0x69,0x63,0x7f,0x39,0x71,0x65,0xf6, +0x85,0x45,0x17,0x6b,0x2a,0x93,0xb0,0x10,0x83,0x59,0xcc,0xf1, +0xc7,0xb9,0xdb,0x91,0xd7,0x08,0xaf,0xd8,0x7f,0xc2,0xfd,0xc4, +0x9e,0x13,0x6a,0xd9,0xd5,0x19,0x0d,0xc9,0x95,0x8a,0x2c,0x3e, +0xd8,0xd6,0x47,0xc7,0xc7,0x72,0xe9,0xd1,0xf9,0xc1,0xab,0x8e, +0xc7,0x53,0x46,0xce,0x27,0xc3,0xca,0x1c,0x60,0x2e,0x84,0x1d, +0x0d,0x0b,0x0a,0x3d,0x4a,0x07,0xee,0x0f,0x58,0x5d,0x08,0x9b, +0xe0,0xae,0x3a,0xe8,0xc0,0xf2,0xfe,0x5d,0xec,0xb6,0x02,0xbf, +0x3e,0x8d,0x62,0xa6,0x36,0x39,0xa5,0x4a,0x13,0xbc,0x59,0x8b, +0x74,0x95,0x7e,0x11,0x9a,0x88,0xb9,0xb0,0xaf,0x45,0xd2,0xd0, +0x1d,0x4d,0xd0,0x41,0xf8,0x02,0x1c,0x58,0x7c,0x84,0x0b,0xc8, +0x6f,0x90,0x39,0x83,0xc5,0x4d,0xe8,0x40,0x02,0xea,0xfc,0x1a, +0xfd,0x2e,0x9b,0x7b,0xf3,0xd9,0x4e,0xd9,0xe6,0xc9,0x0e,0xdc, +0xe8,0xa7,0xb0,0x86,0xc0,0xca,0x77,0x30,0x08,0xa6,0x3f,0x05, +0x7d,0x8a,0xb4,0xbb,0x57,0x39,0x6a,0x5b,0xea,0xf9,0xe6,0xf9, +0xe4,0xf9,0x5c,0x6a,0xec,0xa9,0xbc,0x77,0xa9,0x8f,0x03,0x8b, +0x4e,0xb4,0xfc,0xd9,0x78,0x2e,0x9a,0x98,0x80,0x21,0xe3,0x63, +0xb6,0xc7,0xd4,0xcd,0xfe,0x68,0xca,0xd1,0xe4,0xa0,0x24,0x67, +0x47,0xbe,0xcb,0xa4,0x51,0x51,0xa7,0x6f,0x6d,0xaa,0xb0,0xd5, +0x73,0xe5,0x94,0x93,0x05,0x91,0x18,0xa2,0x09,0x8e,0x31,0x82, +0x31,0xcc,0x09,0x6c,0x32,0xc6,0x8d,0xc8,0xe3,0xd4,0x6a,0x2b, +0x1e,0x66,0xc3,0xb2,0x5e,0xb0,0x8a,0x86,0x76,0x0e,0x56,0x7e, +0xda,0x0d,0x15,0x34,0x4d,0x43,0x3f,0xf4,0xe8,0x11,0xd9,0xc4, +0x99,0xd2,0x36,0xec,0x5f,0x99,0xe7,0x05,0x65,0x2f,0x12,0x34, +0x53,0x61,0x64,0x14,0x2c,0x84,0x2b,0xea,0xe8,0xc3,0x60,0xb7, +0x18,0x44,0x42,0xa5,0xaa,0xc9,0xa1,0x81,0x21,0xfc,0xc9,0xc8, +0x9e,0xdb,0x2d,0x4f,0x1a,0x7f,0x56,0xb3,0x28,0x9a,0x82,0x7b, +0x71,0x34,0x65,0xc4,0x3b,0xa6,0xab,0x15,0x99,0xfe,0xd4,0xf1, +0xb8,0xef,0xe6,0x7d,0xb5,0xa8,0xa8,0xe8,0xd3,0x51,0xc7,0xbf, +0xc5,0x2f,0xf8,0x86,0x0a,0x95,0xd1,0x7f,0xb9,0x40,0x12,0x59, +0x55,0xb9,0xad,0x5a,0xaf,0x99,0x13,0x74,0xf4,0xc4,0xcf,0x59, +0x87,0x4a,0xa7,0x5a,0xc7,0x56,0x3b,0x57,0xbe,0x6d,0x6b,0x87, +0x51,0xaf,0x19,0x27,0x1a,0x5d,0x15,0x26,0xb2,0x1d,0x8e,0xbd, +0xae,0x37,0xdc,0xb8,0x7e,0x63,0x25,0x47,0x3c,0x50,0x5f,0x17, +0xa7,0xe1,0x20,0xfc,0xac,0xce,0x8a,0x7f,0xf8,0x6d,0xe7,0x6f, +0x97,0xa5,0x59,0x55,0x6b,0xca,0x1a,0x07,0x79,0xcd,0x72,0x5c, +0xe0,0x50,0x61,0x5d,0x21,0xaf,0x74,0xb1,0xe2,0xbb,0x9c,0x9a, +0x9d,0x1a,0xed,0x4d,0xa6,0xae,0x9b,0x37,0x65,0x49,0x8d,0x39, +0x0f,0x3e,0x94,0x02,0x72,0x70,0xa4,0x00,0xca,0xb9,0x16,0x3c, +0xcd,0x26,0x5c,0x8e,0xaf,0x8a,0xad,0xa1,0xc6,0xb1,0x16,0xe6, +0x12,0x30,0xfe,0x09,0xbe,0x80,0x2f,0xdf,0x83,0xbe,0x65,0x11, +0x6f,0xbd,0x54,0xb1,0x41,0x57,0xd7,0xa7,0xc0,0xbb,0xc0,0x2b, +0xaf,0xe3,0x7a,0xfd,0xbd,0x92,0xeb,0x1c,0x64,0xb6,0x63,0x12, +0x30,0x86,0xc8,0xe0,0x31,0x05,0xf8,0x30,0xfb,0xe4,0x2e,0x26, +0x0e,0xd6,0xfe,0x59,0xfe,0x59,0x87,0x32,0x9c,0x1d,0xf8,0x3e, +0xa3,0x4e,0xbd,0xb6,0xed,0x0a,0x6b,0x03,0xa7,0xad,0xd4,0xf0, +0xaf,0x09,0xbd,0xa4,0xdf,0xab,0xe7,0x23,0xb8,0x29,0xa5,0x5a, +0x51,0x72,0x02,0x0b,0xc4,0x44,0x5c,0xc0,0x28,0xb5,0x76,0x91, +0x90,0xb4,0x90,0xb3,0x47,0x42,0x83,0x8e,0xf3,0xe1,0x91,0xd7, +0xaf,0x5e,0xfb,0xae,0xe9,0x7b,0x35,0xab,0x42,0x9a,0x08,0xb8, +0xd0,0x5e,0x1a,0x8b,0xb5,0xf8,0x85,0xda,0x45,0x39,0xcc,0xee, +0x01,0xf2,0xf4,0xe5,0x03,0xb5,0xd8,0xd8,0xd8,0x88,0xe8,0x10, +0x98,0x87,0xfb,0xf9,0xa6,0x62,0x15,0x49,0xc5,0xd6,0x88,0xe0, +0x48,0x69,0x3f,0xc9,0xbc,0x27,0x06,0x6b,0xc5,0x89,0xd2,0x7e, +0x92,0x91,0xac,0xf0,0x25,0x56,0x11,0xf8,0xae,0x15,0xbf,0x7b, +0x0c,0x57,0x5b,0xf1,0xea,0x15,0x43,0x7d,0x6c,0x34,0x83,0xc6, +0x75,0x78,0xcf,0x0c,0xee,0xad,0x16,0xe7,0x9a,0xfe,0x35,0xaa, +0x4d,0x5c,0xcd,0x60,0x93,0xb8,0x80,0xd4,0x0a,0x75,0x76,0x57, +0xa1,0xa8,0x5f,0x0b,0x8b,0x58,0x41,0x00,0x5f,0x49,0x3b,0xb8, +0x8e,0xe6,0x2b,0xa3,0x95,0x77,0x95,0x9d,0x84,0x62,0x5f,0x07, +0xf0,0x06,0xd4,0x16,0x2e,0x4b,0xd1,0x6b,0xa5,0x32,0x15,0x56, +0xb2,0x0d,0x98,0x47,0xda,0xfa,0xef,0xa0,0x8c,0x45,0xe3,0x50, +0x1c,0xae,0x83,0x9f,0x69,0xf4,0x38,0xab,0xdc,0x05,0x3e,0x96, +0x92,0x2d,0x07,0x75,0xf8,0x92,0xad,0xa0,0x9f,0x50,0xda,0xb5, +0xe0,0xaf,0xcf,0xa0,0xad,0x19,0xdb,0x6e,0x1a,0xec,0xc0,0x0c, +0x0b,0xc8,0x58,0x8d,0x5d,0x8c,0x30,0x54,0x2a,0x56,0x7a,0xbb, +0x05,0x6f,0x3f,0x35,0x58,0x83,0xe5,0xe6,0x50,0x3e,0x1f,0x7f, +0x37,0x55,0x66,0xb6,0x89,0x43,0x28,0x25,0x76,0xd9,0xfc,0xcf, +0x24,0x82,0x70,0x08,0xb6,0x11,0xb7,0xa7,0x36,0x6f,0x76,0xf5, +0xd9,0x78,0xf2,0xd9,0x7b,0xb2,0x1d,0xb3,0x1d,0x6c,0xbd,0x2d, +0xbc,0xcd,0x7d,0xa5,0xe2,0x7b,0x56,0xc2,0x5a,0x8c,0xee,0x97, +0xb3,0xde,0x21,0xde,0x21,0x3e,0x61,0x19,0x26,0xfc,0x8f,0xc5, +0x7f,0x34,0x7e,0xd3,0x90,0xe0,0x9d,0xe0,0x1d,0x77,0x90,0x83, +0xa7,0x9b,0xc9,0x01,0xc6,0xeb,0xe4,0xb9,0x22,0x4d,0xc8,0xdb, +0xc3,0x26,0x16,0xc7,0x95,0xc6,0x96,0x73,0xef,0xdb,0x16,0x31, +0xf1,0x77,0xa2,0x1e,0x3c,0x57,0xaf,0xbb,0xd7,0x8a,0xcf,0xcd, +0x3a,0x30,0xdf,0xd8,0x14,0x76,0xb2,0xae,0xa8,0xbb,0x02,0x27, +0xe2,0x66,0x9c,0x50,0x42,0xad,0x9d,0xfc,0xfa,0xf2,0xcf,0x56, +0xf8,0x82,0x43,0x6f,0x76,0x67,0x8a,0x4f,0x97,0x46,0x29,0x53, +0x15,0x9f,0xd6,0xa0,0x09,0xb3,0x58,0x6b,0x8a,0x83,0x13,0x84, +0xaf,0x25,0xd4,0x98,0x26,0x4d,0x58,0xfc,0x7c,0x9a,0xbc,0x32, +0x67,0xb4,0xc2,0x37,0x87,0xec,0xd0,0xd8,0xc8,0x88,0xcb,0x8e, +0x92,0xd0,0xdb,0x01,0x8f,0x0f,0x77,0xda,0x05,0xf2,0xa9,0x26, +0x29,0xeb,0x63,0xb6,0x71,0xb8,0x75,0x01,0xc9,0xfa,0x36,0xfe, +0xfd,0xd9,0x3f,0xcc,0x22,0xf9,0x88,0xe9,0x61,0x0b,0x7d,0x56, +0x72,0x42,0xa8,0x24,0x14,0xf1,0x25,0xbd,0xc4,0x97,0x14,0xe1, +0x32,0x05,0x37,0x72,0x22,0x35,0x34,0x22,0x58,0xd2,0x7b,0x3c, +0x09,0xaa,0x6f,0x5b,0xe7,0x7f,0x2a,0x1b,0x36,0xca,0x0c,0x54, +0xa4,0xb2,0x61,0xae,0x38,0x73,0x3d,0x8e,0x2e,0xb7,0xe2,0xfb, +0xde,0x9f,0xff,0x2d,0x52,0x2a,0x1b,0x96,0xdc,0x21,0xc4,0xfc, +0x53,0x36,0xac,0x0f,0x17,0x97,0x96,0xab,0xc0,0x1d,0xdc,0x47, +0xf6,0x3c,0xb3,0x7d,0xed,0xd2,0x67,0xeb,0xc9,0x67,0xd1,0x9e, +0xca,0xb2,0xb7,0xf3,0xb6,0xf2,0xb1,0x1c,0xe8,0x29,0x05,0xed, +0xa9,0x88,0x7e,0x05,0xed,0x29,0x9f,0x50,0x9f,0xd0,0x0c,0x39, +0xff,0xaa,0xf8,0xb7,0x86,0x67,0x0d,0xf1,0x3e,0xf1,0x3e,0x52, +0x4f,0xdd,0xdf,0x48,0xbc,0x69,0x4f,0x45,0x16,0x6a,0x42,0xfe, +0xa7,0x9e,0x8a,0x29,0xe7,0x7e,0x6d,0x5b,0xfc,0x6f,0x4f,0xdd, +0x6d,0xc5,0x87,0x66,0x6d,0x98,0x2f,0x33,0x85,0x6d,0xec,0x6e, +0xd4,0x5d,0x49,0x7b,0x6a,0xe3,0xa7,0x9e,0x1a,0xff,0xeb,0x0b, +0x18,0xd4,0x42,0x53,0x76,0xf4,0x65,0x77,0x26,0x1f,0xec,0xa2, +0xa8,0x56,0x19,0x9f,0x4a,0xbb,0x6a,0xf6,0x40,0x57,0x8d,0xf9, +0xd4,0x55,0x1a,0x52,0x57,0xbd,0x3a,0x4d,0x5e,0xfe,0xdb,0x55, +0x5b,0x18,0xb4,0xfe,0x89,0xa0,0x06,0xfd,0x89,0x06,0xed,0x81, +0x2e,0xa5,0x29,0x31,0xaf,0xd3,0xab,0x37,0x90,0x0a,0xb5,0x5c, +0x75,0xe9,0x74,0x6c,0xb7,0xe6,0x94,0x9b,0x5e,0xd0,0xec,0x57, +0xc4,0x7d,0x2c,0x66,0x87,0xa0,0x62,0x2d,0xce,0xd7,0x68,0x77, +0x54,0x79,0x0e,0xeb,0x92,0x60,0x37,0xe4,0xaa,0xc3,0x0a,0xb6, +0x42,0x1c,0x4b,0x84,0xb3,0xed,0x18,0x0a,0x23,0xc1,0xb5,0x1d, +0x5d,0x61,0x98,0xa4,0x25,0xa0,0xaf,0x00,0x7d,0x1c,0x89,0xbb, +0x18,0xdc,0x58,0x4e,0xcc,0x1b,0xb4,0xdb,0x74,0xa4,0xf2,0xf8, +0x37,0x9c,0xaf,0x5a,0x75,0x59,0x70,0x82,0x17,0x26,0x10,0xd8, +0xd3,0x86,0x7b,0x60,0xb8,0x21,0x0e,0x1f,0xa8,0x8f,0x83,0xea, +0x18,0x2b,0x17,0x7a,0x3b,0xf0,0x0c,0x23,0x46,0x43,0x05,0xd9, +0x8b,0x43,0xa5,0x62,0xf9,0xb3,0x9a,0x07,0x8a,0xe5,0xb7,0x48, +0xf9,0x0c,0x45,0x03,0x37,0x65,0x3d,0xc1,0xc7,0x82,0x3e,0x3c, +0x66,0xfb,0xed,0xf5,0x88,0x2f,0x2e,0xb3,0xc0,0x49,0xcb,0x70, +0x48,0x81,0x1e,0x9f,0x93,0x9f,0x59,0x98,0x5e,0xc4,0x89,0xda, +0xdd,0x8f,0xc0,0x4c,0xf0,0x41,0x23,0x36,0xf7,0x61,0xd6,0x93, +0xe4,0x57,0x1c,0x2c,0xeb,0xc2,0x3f,0x65,0x8c,0xb2,0x70,0x0b, +0xc1,0x87,0xcf,0xe1,0x21,0x83,0x0f,0xa5,0x45,0x65,0x0f,0x97, +0x22,0x6d,0xbe,0x15,0xed,0x88,0x30,0x18,0x26,0x89,0x83,0x59, +0x21,0x01,0x36,0x92,0xdf,0xdf,0xb6,0x8a,0xbe,0x66,0xf0,0x68, +0x1a,0x7e,0x30,0x85,0x0f,0xe8,0x84,0x63,0x59,0x9a,0x90,0xbf, +0x67,0x1a,0xd2,0xd3,0x6b,0x35,0xc1,0x0a,0x46,0xb5,0xb1,0xa2, +0x35,0x0e,0x21,0x25,0x6e,0x95,0x36,0xc5,0x96,0x35,0xc5,0xfc, +0xde,0x46,0xa7,0x7a,0xd7,0x62,0x89,0x6a,0x2a,0x79,0x72,0x0b, +0x0a,0xb6,0x77,0xdf,0x92,0x5e,0x2b,0x24,0xde,0x36,0xde,0x86, +0x05,0xb7,0x8d,0xb6,0xe1,0x49,0x33,0x38,0xb9,0x9d,0x55,0x6a, +0xe0,0x1e,0xd2,0x2a,0x6a,0xdd,0x87,0x0f,0x2d,0xf8,0xe1,0x96, +0xe1,0x76,0x7c,0x65,0x0e,0xaf,0x36,0x89,0x73,0xcc,0x20,0x8f, +0x3d,0xe8,0x72,0xc0,0x65,0xaf,0x0b,0x17,0x61,0x6a,0x1e,0x61, +0x3d,0x31,0xca,0x14,0x1c,0x23,0xa1,0x20,0x16,0x3c,0x12,0xd5, +0x0a,0x7c,0x72,0x7d,0xce,0xfb,0xd5,0x54,0xf0,0xb2,0xa6,0x45, +0x77,0x36,0xd6,0xda,0xed,0xe1,0x2f,0x1d,0xc9,0x3b,0x94,0xeb, +0x87,0x63,0x4f,0xe2,0xec,0x70,0x9c,0x7c,0x2a,0xbf,0xf4,0x62, +0x69,0xce,0x65,0x4e,0x30,0x41,0x2f,0xd2,0x6f,0x89,0x4e,0xb3, +0x4d,0xff,0x9a,0xd1,0x36,0x95,0x11,0xc3,0xa4,0xd7,0x90,0x0b, +0xa5,0xc5,0x7f,0xac,0x30,0x08,0x69,0x7b,0x1e,0x0d,0x07,0xf3, +0x98,0x5e,0x49,0xd9,0x65,0x21,0x65,0x2e,0x0b,0xe9,0x70,0x7b, +0x2a,0xbf,0x21,0x36,0x33,0x0d,0xb4,0xd6,0xed,0x28,0xb7,0xe4, +0x5f,0xdc,0xbf,0xf1,0x73,0xf3,0xef,0x5c,0x32,0xde,0x20,0x72, +0xe1,0xf3,0x0e,0xfa,0x9b,0x8b,0x60,0x4a,0x1b,0x4e,0x81,0x31, +0xc6,0x38,0x06,0xe7,0x4b,0xb2,0x97,0x8b,0x58,0x38,0x0d,0xa5, +0xc4,0x08,0x62,0x7b,0xd8,0x7e,0x17,0xdc,0x46,0xec,0x66,0xaf, +0xc1,0x51,0xab,0xb4,0x8b,0xcd,0xf8,0xa2,0xfc,0x8b,0x79,0xe7, +0xf3,0x39,0x71,0x63,0x97,0x70,0x96,0x2d,0xac,0x2b,0x68,0xbb, +0xd8,0xca,0x09,0x53,0xdd,0x89,0x0c,0x78,0xf1,0x24,0x7e,0xc9, +0x26,0xc9,0x54,0xe0,0x33,0xa6,0x36,0x3d,0xab,0x56,0x53,0x08, +0x7a,0xd6,0xc5,0xd2,0x04,0xc7,0x81,0x98,0x85,0xc9,0xc2,0x8c, +0x4e,0x50,0x1e,0x05,0x8b,0xdb,0x71,0x31,0x8c,0xa2,0x9e,0x86, +0xcb,0x15,0xf4,0xe6,0xd6,0xb0,0xfa,0x27,0xf5,0xc2,0x8d,0x4f, +0xc5,0x51,0x2a,0x3e,0x3e,0x1a,0x96,0xa5,0xc3,0xd8,0x4c,0xa9, +0xbe,0x16,0x4d,0xd1,0x0f,0x65,0x1d,0xa6,0x98,0xee,0xe2,0xc0, +0x77,0x1b,0x76,0xec,0x6c,0xd9,0x6a,0x69,0x2e,0xb3,0xdb,0xe9, +0x5a,0x44,0x69,0xee,0xc6,0xdf,0x68,0xf4,0x98,0xfe,0x0a,0x8c, +0x2c,0x0a,0x78,0xa7,0x65,0xd6,0xeb,0x4d,0x74,0x0e,0x16,0x7a, +0x17,0x78,0xe7,0x37,0x5f,0xab,0xb9,0x57,0x40,0x23,0x44,0x84, +0x64,0xa0,0x8c,0x11,0x8d,0x10,0xde,0x0a,0x70,0x61,0x3c,0xe5, +0x7b,0xe4,0xbb,0xac,0x39,0xd1,0x09,0x9a,0x89,0x1c,0xae,0x75, +0x48,0x4b,0x77,0xa7,0x10,0x13,0x61,0x7c,0x27,0x8b,0x3f,0xa2, +0x26,0x3d,0xd7,0xda,0xc1,0x0a,0xa6,0xe2,0x60,0x12,0x9a,0x76, +0x8c,0x86,0x84,0x63,0x34,0x24,0x44,0x75,0x5d,0xed,0xfe,0xb1, +0xe6,0x3b,0x29,0x24,0x0c,0x46,0x07,0xa4,0xdc,0x15,0x23,0xf0, +0x73,0xb5,0x5c,0x05,0x8c,0xe9,0x85,0xc1,0x8f,0xef,0x7d,0x4d, +0x43,0x42,0xcc,0x57,0x34,0x24,0xa8,0xe1,0x1e,0xbe,0xb1,0x58, +0x45,0xbc,0x2b,0x8c,0xa0,0xc9,0x4f,0xeb,0xbf,0xaa,0x67,0x11, +0x90,0x83,0x1d,0x92,0xea,0x59,0x04,0x9c,0x27,0xb8,0x0c,0x65, +0xb0,0x8c,0x22,0xfb,0x1f,0x92,0xbe,0x94,0x26,0xae,0x84,0xad, +0xc6,0xb8,0x15,0x67,0x83,0xa6,0x0c,0x15,0x42,0x00,0x28,0xd8, +0xfe,0x8d,0x61,0x24,0x71,0x79,0xb3,0xce,0xf7,0xeb,0x0a,0x5b, +0xf9,0xd5,0x77,0xac,0xef,0x0c,0x14,0x4d,0xf6,0xdd,0x60,0xbf, +0x7e,0xae,0x54,0x34,0xf9,0xed,0xdd,0xf6,0x97,0x29,0xd4,0xb8, +0x57,0xf4,0x9b,0x13,0xa7,0x60,0xdb,0x63,0x36,0x21,0x1c,0xb4, +0x02,0xdf,0x8e,0x3c,0x8c,0xf8,0xb1,0x1d,0x83,0x15,0x2f,0x69, +0x86,0x3b,0x5b,0x01,0xb3,0xf1,0x1a,0x6b,0x16,0x62,0x1a,0x66, +0x7e,0x3c,0x81,0x76,0xe7,0xc8,0x74,0x50,0xcb,0xfd,0x3e,0x97, +0x4b,0x14,0x4e,0x11,0x53,0xa1,0x84,0x1a,0x73,0x38,0xf5,0x05, +0xf4,0x11,0xec,0xc1,0x87,0x15,0x67,0x48,0xdb,0x9a,0x3f,0x83, +0x37,0xf8,0x19,0x2b,0xc6,0xcc,0x26,0xa9,0xed,0x89,0x3d,0x71, +0x1d,0x36,0x09,0x7c,0xa8,0x61,0x88,0x3c,0xd0,0x82,0xc3,0xc3, +0x30,0x8b,0xe4,0x28,0x72,0xd6,0x24,0x1a,0x35,0xa5,0xf2,0xc1, +0x3d,0x5e,0x2f,0x0e,0xb6,0x73,0xca,0xe5,0x58,0x47,0xb2,0xcb, +0xb3,0xeb,0x53,0xaa,0x64,0xe9,0x7c,0xa0,0xad,0x9f,0xd9,0x01, +0x5b,0x0e,0x9f,0x9b,0x0a,0xbd,0x6d,0x0c,0xbe,0x3e,0x4f,0x8e, +0x55,0x05,0xd4,0x1c,0x2a,0x95,0x1f,0xe6,0xd3,0x5c,0xd3,0x1c, +0x12,0x9c,0xe8,0x38,0xde,0x14,0x22,0xc9,0xe1,0xac,0x80,0xcc, +0xc3,0x19,0x2e,0xf6,0x7c,0x87,0x71,0x8b,0x5e,0xe3,0x76,0x6b, +0x73,0x33,0x3b,0x03,0x17,0x6a,0x48,0xb0,0xfc,0x83,0x44,0xa3, +0x9e,0x83,0xae,0x45,0x3e,0xef,0xb2,0xd2,0x7e,0xa3,0xd9,0x4e, +0xbf,0x3c,0xdf,0x3c,0xdf,0xdc,0xfa,0x6b,0x97,0xef,0xe5,0xd1, +0x71,0x3c,0xdc,0x8e,0x9e,0x9f,0xc6,0xd1,0x51,0x01,0xa6,0x8c, +0x8f,0xc2,0x5d,0xee,0x66,0xc3,0x4d,0x69,0x25,0x36,0x10,0x8e, +0xf7,0x31,0xdc,0x12,0x97,0xb4,0x8a,0x5e,0x5d,0x60,0x00,0x56, +0x38,0x76,0x1a,0x93,0x6c,0xa6,0xf2,0x92,0xa9,0x4d,0x4b,0xa9, +0xd6,0x14,0x16,0xb5,0xb0,0x33,0xe1,0x37,0x62,0x8c,0x93,0x51, +0x6d,0x8b,0xa4,0x90,0x30,0x66,0x32,0xf9,0x7e,0xe5,0x52,0x06, +0x37,0x99,0x13,0xe8,0xde,0x8a,0xdd,0x8c,0xd2,0x1f,0x8b,0xa5, +0xf1,0x3e,0x77,0x24,0x34,0x58,0xa2,0x00,0x1d,0x57,0xbb,0xde, +0x54,0xbf,0x52,0xb3,0xca,0xa7,0xe3,0xed,0x34,0x15,0x27,0xd0, +0xe1,0x26,0x6a,0x79,0x66,0x30,0xba,0xf7,0xcf,0xc7,0xb7,0xef, +0xa9,0xc5,0xc6,0xc5,0x46,0x44,0x85,0xc0,0xe7,0xe8,0xc6,0x37, +0x15,0xaa,0xf4,0xd7,0xc1,0x3b,0xf2,0x2d,0x58,0x2d,0x67,0xd1, +0xca,0x92,0x80,0xd5,0x52,0xb4,0xa2,0x31,0xb4,0x56,0x69,0x4e, +0xcc,0x6b,0x0d,0xea,0xfe,0x81,0xd4,0x76,0xc7,0x76,0x5b,0x4e, +0xf8,0x42,0x0c,0x20,0x70,0xb9,0x8b,0x86,0x71,0x75,0x48,0x15, +0x74,0xc5,0x87,0xa2,0x2e,0xc4,0x52,0x6b,0xca,0x95,0x41,0x2e, +0x2e,0xc2,0x3e,0x63,0xa5,0x76,0x37,0xde,0x64,0x0c,0x84,0xd7, +0x04,0x15,0x30,0x11,0x14,0x4c,0x1f,0xcd,0x5b,0x68,0xc3,0x06, +0x27,0xb2,0xfd,0xa5,0x3b,0x49,0xdf,0xae,0x3e,0xeb,0x76,0xeb, +0xf2,0x06,0xde,0xb2,0x6e,0x47,0xb3,0x5e,0x19,0x27,0x9c,0x74, +0x23,0x38,0x85,0x7e,0x76,0x0a,0x0b,0x31,0xaa,0xf4,0x63,0x53, +0xd0,0x86,0x11,0x0b,0xc4,0xc3,0xe4,0x5f,0x9d,0x11,0x79,0x16, +0x4f,0x01,0xd5,0x46,0x02,0x54,0x6e,0xf4,0x5d,0xa5,0x82,0x38, +0x08,0x4b,0xab,0x71,0x5b,0x03,0x58,0xd5,0xa0,0x55,0x83,0xb1, +0x35,0x3a,0xda,0x83,0xa3,0x35,0xab,0x9c,0x95,0x47,0x8c,0x99, +0x80,0xf0,0xc8,0x24,0xcd,0x27,0x18,0xc1,0x6e,0x3d,0xee,0xbb, +0xc5,0x45,0x23,0x7f,0xb7,0xca,0x31,0x7b,0xe8,0x65,0xf6,0xed, +0x71,0xf4,0x54,0xf8,0xed,0xca,0xda,0x9b,0xe3,0x71,0xc9,0xe5, +0x00,0x9f,0xe3,0x7b,0xd1,0xb7,0xe0,0x90,0x7d,0xb0,0x55,0x88, +0x3c,0x2c,0xc3,0x86,0xbf,0x1d,0x7f,0x25,0xa5,0x2d,0xa3,0x6f, +0xdf,0x03,0xaf,0x77,0xfe,0x69,0x0d,0xfc,0xfa,0x14,0xfd,0x74, +0xf3,0xac,0x9e,0xfc,0xba,0x8a,0xfc,0x3a,0xae,0x0c,0xff,0x64, +0xaf,0x15,0x67,0x57,0x9f,0xab,0xa3,0x3e,0x6a,0xcb,0xb8,0xa4, +0x04,0xd7,0x68,0xdc,0x67,0x8a,0x93,0x93,0x0b,0x34,0xcb,0x24, +0x9d,0x3b,0x71,0x13,0xcd,0xa7,0x61,0xb6,0x38,0x95,0xc5,0x89, +0xe1,0xce,0xf6,0x06,0x1a,0xb5,0x2e,0x79,0x95,0x29,0xa5,0xb1, +0x4d,0x6a,0x91,0x55,0xe4,0x4c,0xc6,0x99,0xac,0x1c,0x75,0x18, +0xae,0xc7,0xb4,0xa8,0x5e,0x85,0x51,0x34,0x2b,0x48,0xc5,0x9d, +0x44,0x5c,0x5d,0xcf,0xc0,0xa0,0xa8,0xd7,0xb1,0xf7,0x13,0x7d, +0xeb,0xf8,0x83,0x38,0x13,0x2d,0x42,0x30,0x71,0x62,0xbc,0xad, +0xca,0x2f,0xaf,0xcf,0x9e,0x7b,0xa1,0x69,0x2f,0x2e,0xb2,0x06, +0x64,0x0d,0x9c,0x90,0x71,0x43,0x33,0x97,0x0c,0x2b,0xbe,0x31, +0xa1,0x26,0xbe,0x22,0x9e,0xc3,0x80,0xde,0x12,0xe1,0xa8,0x5b, +0x2f,0x04,0xb0,0x97,0x43,0x6a,0x43,0x1a,0x8f,0x65,0x34,0xf2, +0x68,0x51,0x8e,0x9f,0x95,0xe8,0x55,0x72,0x82,0x0a,0xd3,0x3f, +0x75,0x1a,0x79,0x9d,0xdf,0x5a,0x98,0x7d,0x99,0x8b,0xd9,0xd8, +0xf1,0x20,0x86,0xc9,0x72,0xee,0x72,0xff,0x69,0x1f,0x27,0x9a, +0x2d,0x23,0x35,0xc2,0x51,0x7b,0x56,0x3c,0xea,0x48,0x84,0xa3, +0x56,0xe2,0x51,0x66,0xb4,0x72,0xbf,0x10,0x2a,0xe1,0xa9,0x79, +0x1b,0x9a,0xc3,0x97,0x86,0x94,0x4a,0xe8,0x99,0x82,0x1e,0xc5, +0x5d,0x57,0xb9,0x70,0xb4,0x83,0xed,0x1f,0x8a,0x71,0x24,0xc1, +0x35,0xd1,0x26,0xc1,0xfa,0x40,0xd8,0xfe,0xb0,0xfd,0x14,0xeb, +0x5c,0x61,0x9a,0x40,0x28,0xe1,0x18,0x28,0x82,0x3b,0x59,0x24, +0x30,0x19,0x7d,0x58,0x59,0xb0,0x61,0xa8,0x7e,0x68,0xa2,0x21, +0x0f,0x9f,0x65,0xfc,0x91,0xfd,0xae,0x20,0xea,0x60,0xa4,0x6f, +0xa4,0x7f,0x4b,0x0a,0x1f,0xf8,0xd8,0xfb,0x37,0xff,0xdb,0x1c, +0x9e,0x12,0x58,0xf2,0x12,0x73,0x57,0x30,0x10,0x00,0xb9,0x04, +0x73,0x97,0x42,0x2e,0x2b,0xd8,0x89,0xda,0x04,0x1c,0x3b,0xd0, +0x11,0x26,0x1b,0x52,0x9b,0x36,0x95,0x03,0x4d,0x9b,0xd0,0x5f, +0x2e,0x24,0x74,0xa0,0xdf,0x40,0x95,0x19,0x77,0xb2,0x3b,0xc0, +0xf5,0xc8,0xae,0x40,0x0e,0xbe,0x05,0xae,0x0b,0x39,0xc8,0x35, +0xc4,0x5c,0x1c,0x21,0x83,0x11,0xf8,0x17,0xeb,0x10,0x68,0x1f, +0x68,0x1b,0x94,0x6e,0xcc,0x03,0x53,0xfa,0xb6,0xf4,0xfb,0x1a, +0xee,0xb8,0x72,0x1c,0x91,0x09,0x3f,0x75,0xb1,0x72,0xdc,0x4c, +0xc4,0xa3,0xe2,0x5e,0xe1,0x28,0x63,0x00,0x99,0x44,0x1c,0x0c, +0x33,0x84,0xc1,0x8c,0x38,0x18,0x6d,0x69,0xa4,0xc4,0x05,0x22, +0xcd,0xc2,0xe7,0x62,0x04,0x51,0x4e,0xe8,0xea,0x9f,0xc0,0x8c, +0xfe,0x4b,0x2e,0xf1,0xde,0x28,0x98,0x62,0x48,0xad,0x2e,0xc8, +0x04,0x82,0xa8,0x21,0xef,0x16,0x03,0xba,0x05,0x6d,0x98,0x2f, +0xe6,0xf5,0x0a,0x79,0xa0,0x25,0x0e,0x42,0x4e,0x7a,0x09,0xf2, +0x8e,0x7a,0xa2,0xb4,0xf6,0x62,0x29,0x1e,0xa4,0x96,0x1f,0xc5, +0xf6,0x6f,0x47,0x3d,0x72,0x82,0x36,0x3f,0xef,0xc4,0xcf,0x41, +0x66,0x8c,0x32,0x9c,0x67,0x02,0x53,0x69,0xaa,0xf0,0x85,0x03, +0x4e,0x9e,0x8e,0xea,0x95,0x03,0x55,0xe0,0x0b,0xff,0x8c,0xfe, +0x85,0x92,0xad,0xe2,0xee,0x81,0xca,0x4a,0x11,0xe7,0xc2,0x35, +0xde,0xe2,0xba,0xcb,0x15,0x0b,0x61,0x45,0x68,0xea,0xf1,0x33, +0x41,0x21,0x6a,0xd2,0x3d,0xd4,0x10,0x31,0x08,0x4f,0x32,0xb8, +0x3b,0x0c,0xd7,0x3b,0xe1,0x44,0x8d,0x23,0x5f,0x7b,0xbf,0xf6, +0xbf,0x62,0x7d,0x84,0x4f,0xd8,0x9d,0x64,0x97,0x68,0xeb,0x15, +0xe2,0x19,0xea,0x19,0xca,0xd1,0x1c,0x63,0x92,0x30,0x1e,0x27, +0xc1,0x42,0x19,0x1d,0x25,0x35,0x71,0x3c,0xc5,0x6a,0x17,0x56, +0x11,0x20,0x0b,0x34,0x0c,0x4a,0xa1,0xf0,0x38,0xfc,0xd2,0x2f, +0x45,0xaf,0xcb,0xa3,0xfc,0x22,0xfd,0x22,0x0f,0xd5,0xa4,0xf0, +0x61,0x9e,0x21,0xde,0xc1,0x3e,0x2d,0xbb,0xf9,0xfb,0xb0,0x2a, +0x15,0x4c,0x20,0x5f,0x1d,0x86,0xed,0x60,0xd0,0xdd,0x1f,0x97, +0xce,0xc6,0x99,0x1a,0x0d,0x4e,0xcf,0x80,0x14,0x83,0x6a,0x02, +0xac,0x57,0x83,0xe5,0x0c,0xb2,0xa7,0x66,0x06,0xeb,0x6a,0x28, +0x42,0x82,0x02,0x4d,0x26,0xea,0x31,0xc9,0xc6,0x2a,0x1d,0xcc, +0xb3,0xf2,0x62,0xa9,0x1a,0xf8,0xdd,0xc8,0x77,0xb0,0x43,0x1d, +0xf7,0x31,0x67,0x72,0xbe,0xca,0xb9,0xa0,0x7e,0x07,0xbe,0xea, +0x14,0x57,0xd2,0x5b,0xd1,0x66,0xfb,0x6f,0xe1,0x28,0xf2,0x04, +0x73,0xd7,0x32,0xb0,0x7f,0x60,0x6c,0x57,0xd1,0xb1,0x1d,0x2d, +0x7c,0x54,0x9a,0x90,0xa4,0xcb,0x09,0x55,0xb1,0x95,0x46,0x89, +0xbc,0x37,0xaa,0x2b,0x50,0x7d,0xed,0xbc,0x3a,0x07,0xbe,0xb1, +0xaf,0xf2,0x5e,0xc1,0x63,0x0e,0x2e,0x6f,0x66,0xf0,0xcb,0x93, +0xe8,0x1b,0x84,0xc3,0x34,0x74,0xc2,0x0e,0x78,0xe8,0x4d,0xc4, +0x71,0x52,0x17,0xc3,0x58,0xe6,0x55,0x4d,0xd3,0xfb,0x04,0xcd, +0x64,0x20,0x31,0xe0,0x02,0x53,0xd5,0x61,0x02,0xdb,0xbf,0xfe, +0x35,0x49,0x5e,0xde,0xbd,0xed,0x8d,0x24,0x64,0xbc,0xf4,0xb6, +0xe2,0xee,0xc1,0xbb,0x92,0x90,0xf1,0x06,0xcb,0x75,0x38,0x48, +0xbb,0x40,0xc1,0x7f,0xbc,0x77,0xe5,0x45,0xca,0x8f,0x5c,0xae, +0x68,0x48,0x60,0x4e,0x07,0xce,0x81,0x91,0xbf,0xb5,0x63,0xbc, +0xe2,0x1d,0xe5,0x6f,0xab,0xe5,0xb0,0x1a,0x7b,0x19,0xd9,0x31, +0xa3,0x30,0xd9,0x40,0x00,0x51,0x4f,0x83,0xe9,0x79,0xbf,0x4a, +0xd5,0xf4,0x6d,0x82,0xcc,0x83,0x4d,0x8f,0x71,0x42,0xeb,0x13, +0xe2,0xff,0xda,0x0d,0x86,0xee,0xfe,0xd6,0xc2,0x8f,0xcf,0x32, +0xcb,0x30,0x4e,0x33,0x96,0x05,0xea,0x1d,0xd5,0x39,0x56,0xf3, +0x7b,0x11,0x8c,0xbd,0x00,0x23,0x4c,0x12,0x78,0x2f,0x54,0x75, +0x45,0x55,0x2b,0x1c,0x64,0x71,0x82,0x4f,0x36,0xfe,0x33,0x19, +0x06,0x9d,0xff,0xf1,0x92,0x5a,0xd4,0xc1,0x68,0xdf,0x48,0x5f, +0x4e,0x5c,0x9e,0x40,0xd2,0xdb,0x93,0xbb,0xe3,0x3b,0xac,0x93, +0xf8,0x10,0xc3,0xa0,0x01,0x01,0xe4,0xaf,0x60,0x1a,0xb9,0xa0, +0xb8,0xb8,0x36,0x49,0xd6,0x9c,0xc6,0x1f,0xed,0xf6,0x7c,0xe1, +0x2d,0x89,0x47,0xfd,0x2a,0x4c,0x21,0xed,0xf0,0x55,0x0d,0x7e, +0xd5,0x0a,0x07,0x7e,0xa9,0xaf,0xb1,0xf9,0x05,0x0f,0xd4,0x2b, +0x6c,0xd0,0xcd,0x01,0xdc,0xe4,0x78,0xda,0x1e,0x4e,0x9b,0xa0, +0x9b,0x23,0xb8,0x99,0xa1,0x9f,0x3d,0xf8,0x29,0xf0,0x2b,0x5b, +0xe1,0x5a,0x1d,0x0b,0x21,0xe2,0x24,0x1a,0x70,0x07,0x6a,0x20, +0xa9,0x4b,0xab,0xbb,0x5b,0x34,0x95,0xcd,0x86,0x2c,0xea,0x5b, +0x92,0xfe,0x2f,0x7b,0x94,0x5f,0xb2,0xe8,0xee,0x49,0xe4,0xa8, +0xd5,0xc1,0x82,0xd6,0x2c,0x62,0x82,0x5a,0x9d,0x2c,0x1c,0xc6, +0x5f,0x89,0x78,0x1a,0x8f,0x0b,0xa7,0x19,0x2c,0x83,0xa9,0x04, +0x97,0x77,0xd2,0x21,0x6e,0x37,0x21,0x9d,0xb0,0xd9,0x84,0xc5, +0x43,0xce,0x34,0x45,0x5f,0xde,0xcb,0x82,0xbb,0x2a,0x6c,0x36, +0x44,0x3a,0x1a,0xdd,0xb8,0x88,0xc0,0xf6,0x28,0x38,0x18,0x07, +0x9b,0x53,0x4e,0x35,0xf1,0xb8,0x26,0x08,0x8f,0x84,0xa2,0x4e, +0x38,0x8d,0x78,0x6f,0x85,0x26,0x82,0x5f,0x50,0x7e,0xcc,0xb5, +0x52,0x2f,0x1c,0xac,0xa0,0xf1,0x64,0x98,0x19,0x0c,0xa3,0xfd, +0x3b,0xc1,0xec,0x07,0x7d,0x06,0x8d,0xbc,0x70,0xd9,0x4c,0x1c, +0xaf,0x51,0xe2,0xa2,0x02,0x83,0x61,0x72,0x3e,0x6c,0x06,0x1b, +0xf5,0xbe,0x06,0x31,0x61,0x33,0x9b,0x68,0x49,0xad,0xa8,0x2c, +0x35,0xad,0x42,0x53,0x88,0x7a,0xc2,0xc2,0x7f,0xb5,0x4a,0xe8, +0x31,0x12,0xbe,0x68,0xa5,0xd7,0x1b,0xb8,0xd0,0x18,0x33,0x18, +0x43,0x2f,0x34,0xc5,0xec,0x67,0x73,0x06,0xad,0xbc,0x71,0xf5, +0x74,0x1c,0xab,0x51,0xb2,0x4b,0xba,0xd0,0x97,0x05,0xa0,0x0d, +0xfb,0xd4,0x9b,0x5a,0xc4,0x84,0xd5,0xd2,0x85,0xae,0x32,0x65, +0x69,0x03,0x17,0x7a,0xcb,0xfe,0x3d,0x06,0x2a,0x49,0xff,0xa9, +0xb6,0x8f,0xa0,0x2a,0x6d,0xf7,0x50,0x35,0x23,0x8f,0xc4,0xca, +0xf5,0x8c,0xb0,0x0c,0x0e,0x93,0x24,0x59,0x8c,0x76,0xa4,0x41, +0x65,0x02,0x1f,0xde,0x73,0xfc,0x41,0x50,0x07,0x07,0x7d,0xc7, +0x48,0xd6,0xcc,0x14,0x9c,0x14,0x8d,0x9f,0xd5,0xa6,0xf1,0xc7, +0x81,0x3b,0x0c,0x93,0x0e,0xfd,0xca,0x61,0x45,0x04,0x39,0x85, +0x2a,0x87,0x71,0xa4,0x6c,0x51,0x85,0x27,0xdf,0xfd,0x5b,0x06, +0x8c,0x88,0x84,0x71,0x9c,0x38,0xee,0x0c,0x39,0xbd,0x3c,0x70, +0xba,0xb7,0x4e,0x85,0x0f,0x5f,0xf0,0x38,0xf1,0xf7,0x73,0xaf, +0x07,0xa2,0xfe,0x3e,0xf2,0xf6,0xea,0x9d,0xfb,0xed,0xdf,0x73, +0x75,0xe2,0x72,0x36,0xed,0x7c,0x4a,0x4e,0xf2,0x05,0xd9,0x05, +0x9a,0xcf,0x0e,0x99,0x3b,0x07,0xa7,0xaf,0x2a,0x32,0xe3,0xaf, +0x97,0x77,0x54,0x36,0xd4,0xb4,0x19,0x77,0x5b,0x5d,0x77,0x98, +0x62,0x86,0x6a,0x0e,0xb8,0xde,0x35,0x8b,0x02,0x94,0xac,0x02, +0x66,0x35,0x03,0x7b,0x0d,0x86,0xeb,0xc3,0x64,0x1b,0xd8,0x66, +0x9f,0xdd,0xc3,0xe3,0x8a,0x4a,0x1c,0x57,0x39,0xb5,0x99,0xc3, +0x64,0x30,0x23,0x31,0x31,0x31,0xb1,0xd1,0x31,0x9c,0xf0,0x19, +0x63,0xb6,0x45,0xcf,0x58,0xcb,0x62,0x63,0x8d,0x7e,0x8b,0xec, +0x2a,0xa7,0xdf,0x7f,0x98,0x34,0x0a,0x91,0x56,0x57,0x85,0xc1, +0xfd,0x63,0x24,0x86,0x7f,0x13,0x7a,0x09,0xda,0x89,0x91,0x60, +0x47,0x7d,0xac,0x8b,0xf2,0x5f,0x9d,0x0d,0xe2,0x78,0x09,0x36, +0x2e,0x1f,0xc6,0x2f,0x8d,0x71,0xb8,0x46,0xb3,0x99,0xca,0x4d, +0xd0,0x4c,0x87,0xc5,0xd0,0xa2,0x0e,0xc6,0xca,0x8b,0x6d,0xa2, +0x86,0x54,0x51,0x71,0x31,0xc1,0x35,0x96,0xc2,0xd4,0x26,0xdc, +0x72,0xcd,0x84,0x11,0x8c,0xb0,0x97,0x34,0xdd,0xae,0x7a,0x92, +0xfb,0x8c,0xab,0xc2,0xba,0x7e,0xc7,0x2e,0xe5,0x22,0xd8,0xcc, +0x1e,0xdc,0xe9,0xa0,0xa5,0xbf,0x8e,0xbb,0x6b,0x70,0x75,0xcb, +0x1a,0x75,0x73,0x5f,0xf7,0x6d,0x1a,0x0e,0x52,0x89,0x91,0x7a, +0xe6,0xe7,0x8a,0xfa,0x97,0x6f,0xf4,0xef,0x18,0x74,0x69,0xe2, +0x39,0xd0,0x24,0xf8,0x08,0xb7,0xc2,0x23,0x46,0x0e,0xaa,0x64, +0x35,0xee,0x79,0xc6,0x42,0x0f,0x5e,0x27,0xa6,0xc7,0x65,0xc7, +0x8d,0x4e,0x72,0x69,0x6c,0x6b,0x56,0x67,0x49,0x49,0x3e,0x57, +0x87,0x7f,0x5a,0x42,0x36,0xbb,0xfb,0xa0,0x93,0xbf,0x53,0x20, +0x67,0xcb,0xea,0x9e,0xd4,0x09,0xd7,0x39,0x15,0x67,0xc9,0xf7, +0x45,0x5e,0x8b,0xbc,0x12,0xc5,0x2d,0xc2,0x61,0x6c,0x92,0xa5, +0xca,0x2f,0x4c,0x55,0x6a,0xf2,0x65,0xcd,0xd7,0x6c,0x6f,0x74, +0x4f,0x74,0x5b,0x0c,0x37,0x5a,0xb9,0x43,0xf9,0x80,0x18,0xe1, +0xe7,0x78,0x0a,0x57,0x31,0x18,0xe6,0x87,0xb2,0x4d,0xb8,0x5c, +0xa3,0xd5,0x4d,0xe5,0x09,0x6c,0x3b,0x4f,0xd3,0x97,0x08,0xf5, +0x3f,0x85,0xa8,0x2e,0x4c,0x63,0x11,0xb1,0x9d,0xec,0x39,0xb2, +0x3b,0xd0,0xf5,0xa8,0x24,0x51,0xa7,0xd2,0x81,0x2a,0xa0,0x6f, +0x8c,0x34,0x67,0x93,0xc3,0x48,0x8c,0x62,0xed,0x03,0xed,0xff, +0x91,0xa8,0x4b,0xa8,0x4c,0x94,0x24,0xea,0x0a,0x71,0x90,0x54, +0x41,0xfc,0xe5,0x3f,0x92,0x79,0x4d,0x6c,0x45,0xca,0xe5,0xb4, +0xf2,0x74,0x4e,0x58,0x7d,0x82,0xe4,0x6d,0x2d,0x5c,0x90,0xbb, +0x60,0xf5,0xe1,0xd9,0x47,0x66,0x1c,0xeb,0x80,0xd9,0x35,0x60, +0x96,0x0f,0x06,0x3b,0xe3,0xa9,0xdb,0xef,0xb4,0x41,0x47,0x13, +0x5c,0xb6,0xff,0xf4,0xfe,0x53,0x07,0x4e,0xc7,0xeb,0xf2,0xb0, +0x30,0x05,0x56,0x5d,0x80,0xb1,0xf9,0xf1,0x6e,0x71,0x6e,0xb1, +0x7b,0x7b,0x2e,0xf2,0x1e,0xc0,0x2b,0x60,0xbd,0x2d,0x30,0xf4, +0xe6,0x57,0x29,0x0f,0x90,0xc0,0x0a,0xdf,0x6a,0xdf,0x22,0x4b, +0x3f,0xfe,0xfc,0x9e,0x6c,0xfb,0x64,0x57,0x0e,0x9b,0xb0,0x93, +0xb8,0x1f,0xdd,0x7b,0x74,0x8f,0xa4,0xed,0xf7,0xba,0x63,0xe1, +0x27,0x65,0xbf,0xb1,0x72,0x18,0x8b,0xe7,0x58,0xdb,0x23,0xb6, +0x47,0xed,0x8f,0x25,0x48,0xca,0x7e,0x55,0x89,0x55,0x03,0x85, +0xce,0x55,0xa4,0xdb,0xfc,0x51,0xba,0xcd,0x1a,0x4d,0x68,0x61, +0xcb,0x06,0x0a,0x9d,0x73,0x42,0x39,0xd4,0x11,0x1c,0xdc,0x09, +0x4b,0x71,0x3c,0x7b,0xa9,0xe4,0x62,0x6d,0x7a,0x8d,0x69,0x1a, +0x7f,0xc8,0xda,0xcb,0x72,0xaf,0x03,0x27,0x4e,0xc6,0xa5,0x9d, +0x30,0x98,0x79,0xfb,0x84,0x04,0x94,0x79,0x5f,0x3e,0x98,0x6b, +0x75,0x90,0xcf,0xd9,0x77,0xde,0x35,0xcd,0x95,0x13,0xec,0xfb, +0x1d,0x08,0xaa,0x32,0xde,0x61,0x92,0x4c,0xf8,0x17,0xc0,0x0a, +0x5a,0xa2,0xa1,0xa8,0xf5,0x33,0x7b,0x74,0xa3,0x99,0x29,0xae, +0x74,0xcd,0xa0,0xb9,0x87,0x7e,0xe5,0xdd,0x67,0x49,0xef,0x38, +0x50,0xc1,0xcf,0x99,0x1d,0x59,0x47,0xae,0x69,0xc0,0x04,0x49, +0x05,0xba,0x58,0xf3,0x3d,0x6b,0x91,0xa2,0x32,0x59,0x58,0x45, +0xd6,0xe1,0xa3,0xc7,0x2c,0x3c,0xc2,0x31,0x64,0x2d,0x3e,0x7a, +0x22,0xb5,0xc6,0xd2,0xc1,0x7f,0xf4,0x8c,0xf2,0x7f,0x5f,0xe1, +0x28,0xb9,0xdd,0xdb,0x7c,0xab,0xf4,0x19,0x57,0x8b,0xad,0x6c, +0xca,0xa5,0xa4,0xdc,0x84,0x3c,0xa3,0x38,0xde,0x6d,0xa9,0xb1, +0x96,0xd6,0x76,0xae,0x11,0xc7,0x82,0x91,0x31,0x1a,0xe1,0x32, +0x13,0x98,0xc3,0x06,0xe2,0x58,0x7b,0xca,0x32,0x06,0xe1,0x24, +0x1a,0x1a,0xbf,0x83,0x61,0xc5,0x30,0x28,0xe6,0x9f,0xd8,0x78, +0x56,0x9a,0x88,0xa0,0xb1,0xf1,0x05,0xf2,0xe5,0x55,0xeb,0x60, +0x4c,0x48,0x72,0xd8,0x99,0xa0,0x63,0x6a,0x41,0x41,0x2a,0x27, +0x40,0x5a,0xcd,0x57,0x6c,0x97,0x7f,0xfe,0xd2,0xc5,0x8b,0xb9, +0x6a,0xe5,0xd6,0x35,0xf6,0xad,0x8e,0xfa,0x76,0xeb,0x9d,0x17, +0xba,0xe6,0x99,0xf1,0xef,0xab,0x9e,0xd7,0xde,0x6a,0xba,0x63, +0xf9,0x8d,0xed,0x3b,0xfb,0xbc,0x76,0x7e,0x49,0xc5,0x86,0xca, +0x9d,0x35,0x1c,0x9a,0xc1,0x0e,0x12,0x1d,0x13,0x1d,0x1b,0x15, +0xcb,0x41,0x0a,0xe3,0x61,0x64,0x2f,0x37,0xb6,0x34,0xa9,0xb1, +0xae,0x77,0x6e,0xe1,0x0e,0xf6,0x1f,0x21,0x57,0xa0,0x59,0xbf, +0x4f,0xe0,0xc5,0x35,0x22,0xcf,0x82,0x08,0x2f,0x08,0xee,0xc6, +0x66,0xd8,0xcd,0x4a,0xf2,0x5a,0xbb,0x48,0x68,0x6a,0xd8,0x99, +0xe0,0x63,0x41,0xc7,0xf8,0x13,0x94,0xb4,0xaa,0xb4,0x53,0xd3, +0x1a,0x28,0x9b,0x38,0x53,0x01,0x5f,0x4a,0xc1,0xdd,0x11,0xa7, +0xce,0x41,0xb5,0xcb,0xd6,0xfc,0x63,0x18,0x9c,0xff,0x47,0xf4, +0xcf,0xf4,0x01,0x0a,0xfe,0x29,0x9b,0x78,0xee,0xa4,0xc6,0x2b, +0x5c,0x7f,0xb9,0x42,0xe5,0x24,0x78,0x93,0xab,0x06,0x3d,0x3b, +0x3b,0xb4,0x4d,0x2c,0xf5,0x1c,0x37,0xbb,0x15,0xc8,0x79,0x30, +0x7b,0x07,0x3c,0x68,0xfe,0x01,0xa6,0x16,0x85,0xbc,0xe5,0x22, +0x93,0x75,0x3a,0x3b,0xbc,0x8a,0x0f,0x14,0x1d,0x28,0xe8,0xba, +0xd1,0x74,0xaf,0xf4,0x06,0x07,0x05,0x1d,0x98,0x03,0xac,0x21, +0xb2,0x78,0x50,0x0e,0xae,0x8c,0x87,0x89,0xb3,0x89,0xad,0x95, +0x34,0x0b,0xe8,0x9f,0xc1,0xd1,0x7b,0x9d,0x4b,0x42,0x52,0xa4, +0xe9,0xbd,0x01,0x6e,0x7f,0xfd,0xfa,0xd5,0xef,0x9a,0xbf,0x53, +0xb3,0x2c,0xc2,0x2f,0xd0,0x05,0x55,0x91,0x60,0x39,0x8e,0x53, +0xbb,0x68,0x02,0xd3,0xfb,0x80,0x3c,0x7b,0x3e,0x30,0xbd,0xf7, +0x55,0x74,0x28,0x2c,0x42,0x6f,0xbe,0xb1,0x4c,0x65,0xf4,0x6d, +0xe1,0x25,0x31,0x17,0xc6,0xb7,0xe0,0xf2,0x5f,0xc0,0xb8,0x05, +0x8d,0xdf,0x98,0x2c,0x40,0x13,0x73,0x30,0x99,0xcd,0x0a,0x3c, +0xac,0x22,0x30,0x15,0x1d,0x18,0xa3,0x0c,0xff,0x1e,0x8d,0x6a, +0xa6,0x72,0xa0,0xec,0xf9,0x28,0xd6,0x32,0x43,0x05,0xe7,0xba, +0xb0,0x3e,0x27,0x62,0xa8,0xe5,0x44,0x63,0xf4,0x34,0x16,0x87, +0xf9,0x2b,0x64,0x46,0x1a,0xa5,0xf6,0x2a,0xd7,0x6f,0x15,0x3c, +0x80,0x91,0xea,0x34,0x0b,0x0c,0x20,0xe2,0x0a,0x1a,0x7a,0x80, +0x81,0x2e,0x64,0x3a,0x18,0x21,0x00,0xbf,0x26,0x1b,0x4b,0xf5, +0x6b,0xcc,0x1a,0x6f,0xdc,0xab,0xfe,0xe6,0xfc,0x4b,0x8a,0x96, +0xe3,0x14,0x70,0x87,0x3d,0xa4,0xe7,0xba,0x53,0x6e,0x68,0xd1, +0xee,0xd4,0xb3,0xa7,0xd7,0xdc,0x93,0x2f,0xdf,0x51,0xa3,0xd7, +0x66,0x2c,0xb3,0xd0,0xb6,0x1d,0xa8,0x69,0xfe,0xae,0xec,0x51, +0xc3,0x95,0xce,0x4e,0xb3,0x1b,0x36,0xcf,0x9c,0x38,0x71,0x2d, +0x44,0x10,0x1b,0x49,0x0d,0xd4,0x86,0xf5,0x09,0x8f,0xcd,0xd3, +0x84,0x40,0x0c,0xdf,0xc2,0xe2,0x67,0x01,0xab,0xd7,0x2d,0xd5, +0xa8,0xb5,0x57,0x79,0xf0,0xba,0xe0,0x15,0x7c,0xa9,0x5e,0x02, +0x13,0xd0,0x94,0xb5,0x4a,0xf6,0xea,0xd2,0xe8,0x60,0x2a,0x12, +0xd2,0x0b,0x34,0x47,0x0b,0x26,0x4a,0x1d,0xe2,0x63,0x65,0xb9, +0x65,0xbb,0x71,0xb6,0x0d,0x9f,0x93,0x95,0x91,0x9e,0x4c,0x9d, +0x2a,0x5d,0xb8,0x5a,0x87,0xc9,0xd7,0xc1,0xb3,0x06,0x3d,0xfb, +0xc0,0xb3,0x56,0x3a,0xd2,0x20,0x1c,0xc6,0x26,0xa6,0x25,0x64, +0xc4,0x65,0x9a,0xc5,0xf1,0xa1,0xbe,0xc1,0xbe,0x81,0x7e,0x1c, +0x0d,0x84,0xd2,0xa9,0xf8,0xf4,0xe3,0x67,0xf9,0x96,0x76,0x30, +0x34,0xea,0xe8,0x81,0x35,0x0d,0xb8,0xa6,0x4b,0x2e,0x43,0xc3, +0x2e,0x6a,0x04,0x5a,0xd6,0xa0,0x65,0xca,0xe0,0x7e,0x58,0x4c, +0x0e,0x5a,0x78,0xdb,0xec,0x77,0xf4,0xad,0xf1,0xaa,0xda,0x57, +0x65,0xeb,0xce,0x97,0x58,0xe6,0x59,0x9d,0xb7,0x74,0xb3,0xdf, +0xb5,0xcb,0xc1,0x2d,0xcf,0x94,0xaf,0x2a,0x2e,0x2b,0x2b,0xaa, +0x4a,0xb3,0x49,0xb2,0x8e,0xb3,0x30,0x5b,0x26,0x37,0x5a,0x6f, +0x98,0x6b,0xc6,0xdf,0x6b,0x6d,0xee,0xae,0xbd,0xcb,0x45,0x3a, +0x9c,0xb5,0xb3,0x56,0xc7,0x2d,0x9e,0x76,0x5b,0x34,0x64,0x92, +0x4a,0x49,0x3b,0xf3,0x63,0x4b,0x37,0x1c,0x84,0x65,0x94,0x57, +0x5a,0xc2,0x28,0xcd,0x92,0xa6,0x82,0xce,0xbc,0x2b,0xd2,0x3a, +0xda,0x6a,0xd2,0x07,0xa6,0x06,0x2c,0x9a,0x4e,0xfe,0xb7,0x81, +0x43,0xc8,0x75,0x30,0xdd,0xc9,0xc2,0x4f,0xf8,0x94,0x2c,0x4f, +0x59,0x93,0xb1,0x39,0xfb,0xeb,0xe2,0xbe,0xaa,0xaa,0x66,0xae, +0x5a,0x7c,0x62,0x25,0x44,0xb0,0x4e,0xae,0x46,0xee,0x5b,0x3c, +0x37,0x5f,0xd4,0x29,0x90,0x17,0xb9,0x38,0xf0,0xb5,0x9e,0xcd, +0xde,0x1d,0x07,0x57,0xfb,0x2c,0x3a,0x3c,0x3f,0x38,0xd9,0x72, +0x60,0x31,0x16,0x7b,0xe1,0x97,0x92,0x1f,0x3c,0x7e,0xf3,0x82, +0xa1,0x87,0x29,0x68,0x85,0x5c,0x22,0x34,0x20,0x6f,0x6f,0xc6, +0xed,0x74,0x0c,0xb7,0x35,0xe1,0x36,0x50,0x01,0x9b,0x16,0x34, +0x63,0x2f,0x96,0x66,0x55,0xa4,0x54,0x9a,0xa6,0xf2,0x01,0xb6, +0xbe,0x76,0x1e,0x4e,0x1c,0x8e,0x61,0x8a,0xdb,0x0a,0xba,0x72, +0xba,0x39,0x08,0x41,0xb6,0x13,0xd6,0xe1,0x25,0x26,0xee,0x62, +0xec,0xa5,0xe8,0x4b,0xc6,0x89,0xfc,0x71,0x8f,0x50,0x8f,0x63, +0xfb,0x38,0xf4,0xc4,0x4d,0x1d,0xf4,0x72,0xd3,0x19,0x19,0xaa, +0x2f,0xc3,0x91,0x8b,0xb5,0xca,0x2d,0xf9,0xac,0xac,0xac,0xec, +0xac,0x1c,0x4e,0xb4,0xee,0x6a,0x16,0xf4,0x5b,0x59,0xf1,0xa1, +0xd2,0x81,0x74,0xe2,0x53,0x13,0x18,0xcd,0xfa,0xe1,0x52,0x3b, +0x9c,0xb0,0x06,0x07,0xe5,0xeb,0xf3,0x59,0x97,0x52,0xf3,0x52, +0x0b,0x38,0x71,0x4e,0xd7,0x43,0xd8,0x28,0xd8,0xe3,0x6a,0xf6, +0xd2,0x83,0x8c,0x47,0x89,0xdf,0x71,0x82,0x13,0x66,0x13,0x54, +0x41,0xed,0xef,0xd9,0xe8,0xd8,0x01,0x97,0x16,0x55,0xc4,0x91, +0x04,0x7e,0x01,0x16,0x7f,0xa1,0xec,0xe8,0x9d,0xf4,0x8e,0x5c, +0x1b,0x19,0xd6,0x42,0xa2,0x24,0xda,0x30,0x92,0xba,0xf1,0x25, +0x61,0x22,0x39,0x99,0x10,0x1a,0x1d,0x24,0xd5,0x50,0x08,0x87, +0x11,0xdf,0x31,0xe9,0xae,0x39,0x59,0xe9,0x69,0xc9,0xa9,0x6a, +0xd4,0x1c,0x3a,0xeb,0x30,0xfe,0x3a,0xec,0xab,0xc1,0x7d,0x7d, +0x03,0xc7,0x2b,0x10,0x5e,0x83,0x41,0x6c,0xc2,0xff,0xdb,0x1c, +0x36,0x30,0x09,0xff,0x9a,0x43,0x73,0x3b,0xe8,0x19,0x75,0xf6, +0xc0,0xaa,0x06,0x5c,0x25,0x59,0x82,0x9e,0x74,0x58,0xcc,0x9c, +0xf9,0xea,0xcc,0x99,0x89,0x1e,0x0d,0xba,0xce,0x53,0x5c,0x17, +0x1c,0x56,0x4b,0x37,0x2f,0x8d,0xad,0x88,0xab,0x48,0x54,0xc3, +0x05,0xf8,0xa5,0x0c,0x54,0xd9,0xb0,0x19,0x7b,0x70,0xc8,0x02, +0x1c,0x57,0x62,0xc5,0xdf,0xfd,0x39,0xe7,0x61,0xd4,0x63,0x8a, +0x15,0xf2,0x56,0xa9,0x20,0x43,0xe4,0xa7,0x82,0x0c,0x4b,0xaa, +0x0b,0x55,0x70,0xb8,0x10,0x46,0x24,0x9c,0x2f,0x48,0xe7,0xec, +0x60,0x85,0x19,0xbb,0x2b,0xe1,0xa0,0xad,0x9d,0x8e,0xbe,0x5c, +0xad,0x6c,0x3e,0x0b,0xfb,0xed,0x29,0x5a,0x99,0xe8,0xb3,0x68, +0x32,0x85,0xda,0x80,0x89,0x81,0x24,0xf1,0x24,0xd9,0x80,0x09, +0xb5,0x81,0x1f,0xa8,0x0d,0xac,0x48,0x59,0x9b,0xa1,0x9d,0x7d, +0xaf,0xb8,0xf7,0x93,0x0d,0xdc,0xb3,0x12,0xc2,0xa8,0x0d,0x18, +0xbb,0x6f,0xa3,0x36,0xa0,0x5b,0xa0,0xf8,0x64,0x03,0x4d,0xde, +0xed,0x07,0xd7,0x50,0x1b,0x58,0x38,0x60,0x03,0x23,0x52,0x80, +0xb9,0xf0,0xae,0xe4,0x95,0xc7,0x7b,0x2f,0x18,0x2c,0x6d,0xc6, +0xac,0xa1,0x81,0xcb,0xaf,0xf6,0x40,0xa3,0x67,0x89,0x54,0xfa, +0xdd,0x39,0xd7,0x2e,0xdd,0x91,0x13,0xc6,0xe8,0x12,0xdc,0x4e, +0xf3,0x4c,0x34,0x60,0x8b,0xca,0x8a,0x1b,0x2e,0x54,0x1a,0xe6, +0xf2,0xde,0x96,0xce,0x72,0x7b,0x6b,0x4e,0x7c,0x85,0x01,0x3d, +0xb0,0x9d,0x81,0x15,0xcf,0x89,0x77,0xc5,0xde,0x2a,0xf7,0x42, +0x33,0x77,0xbe,0x60,0x6f,0x91,0xd3,0xf9,0xdd,0x9c,0x72,0x42, +0xbf,0x3e,0x41,0x0f,0xc6,0x35,0x34,0xaa,0x54,0xf3,0x67,0x58, +0x2d,0xe8,0x88,0x3d,0xa2,0x0e,0xcc,0x64,0x0f,0xeb,0xe9,0x99, +0xe0,0x11,0xb7,0x0c,0x19,0x0f,0x71,0xe5,0xcf,0x1e,0x67,0xfc, +0xcc,0xc1,0x17,0xb3,0x98,0xad,0x59,0xbe,0xf7,0xa5,0xa5,0x04, +0x75,0x19,0xe9,0xb5,0x9a,0x7f,0x0c,0x88,0x00,0x2f,0x81,0x5b, +0x44,0x34,0xfa,0x5a,0x30,0x62,0x44,0x23,0xb4,0x26,0xb4,0xb1, +0x99,0x0e,0xed,0x5a,0xd1,0xe8,0x09,0x65,0x3d,0x3f,0x0b,0x5f, +0x93,0xba,0xd2,0xfa,0x86,0x82,0x06,0x1a,0x6f,0x7e,0x61,0x53, +0xb2,0x93,0xb3,0x13,0xcf,0x1b,0x67,0xf0,0x3b,0x70,0x14,0x0e, +0xa5,0x7c,0xf2,0xcb,0xf5,0x85,0x66,0x7c,0x51,0x46,0x41,0x56, +0x5e,0x16,0x87,0x4b,0x58,0x9c,0x7c,0x14,0xbf,0x98,0x82,0xf3, +0x34,0x3a,0x77,0xb7,0x3e,0x29,0x7c,0x98,0xfe,0x50,0x4d,0xf8, +0x83,0xa6,0x4e,0xee,0x03,0xe2,0x40,0xba,0xff,0x6c,0x64,0xab, +0x67,0xf1,0x18,0x8c,0x26,0x7b,0x1d,0xad,0xec,0x2d,0x76,0xd3, +0x88,0xcd,0xd4,0x95,0x57,0x56,0x96,0x54,0x73,0x30,0x07,0x29, +0x5f,0x8d,0x85,0xcf,0x21,0x96,0xe9,0xfd,0x24,0x9e,0x93,0x23, +0x89,0xe7,0xbc,0x30,0x23,0x38,0x1e,0x33,0xd9,0x98,0xaa,0x73, +0xd5,0x67,0xe9,0xc7,0x6e,0xa9,0xd2,0xf3,0xe3,0x31,0x87,0x19, +0x2d,0xec,0x15,0xda,0x08,0xe5,0x47,0xa3,0x61,0x45,0x2b,0xae, +0xf8,0x68,0x32,0x15,0x57,0x99,0xc1,0x2a,0x1c,0x8d,0x0a,0x53, +0x98,0xa8,0xcb,0xa0,0x99,0x2f,0xce,0x9e,0x8e,0xbc,0x46,0xad, +0x93,0x0a,0x0c,0x85,0x59,0x39,0xb0,0x16,0xec,0xd4,0xaf,0x5e, +0x15,0xe3,0x97,0xb0,0x94,0x6b,0x7d,0xcd,0x54,0xa7,0xa5,0x55, +0x6b,0x0a,0xe7,0x80,0x65,0x85,0x00,0x7a,0x21,0x1b,0x7a,0x21, +0x9d,0x56,0xd4,0xf9,0x28,0x9b,0x8a,0x9b,0xcc,0x60,0xd3,0xa7, +0x0b,0xa9,0x52,0x04,0x32,0xdd,0x8b,0xeb,0xe8,0x9f,0x1c,0xa7, +0x51,0xe3,0x48,0x93,0x02,0xf8,0xb2,0x02,0x8c,0xc1,0x49,0xbd, +0xe5,0x96,0x98,0x38,0x8b,0x8d,0x37,0x53,0xf9,0x96,0x5e,0x29, +0xb5,0x86,0x52,0x65,0xd0,0x60,0xa7,0x2e,0x21,0x17,0x17,0xe5, +0xe0,0xd8,0xa4,0xd9,0xed,0x59,0x7c,0x10,0x75,0x7b,0xc6,0xf3, +0x0d,0x27,0xa6,0x04,0x90,0x34,0x59,0xca,0x86,0x38,0x83,0xe6, +0x0c,0x3e,0xf4,0x4a,0xc0,0xd7,0x01,0x1d,0xdc,0xcf,0xe1,0xe4, +0xe4,0x54,0xdf,0xd9,0x26,0xcb,0xeb,0x3c,0xf8,0xde,0x5f,0x73, +0x3e,0x46,0xc3,0x50,0x4e,0x3c,0x1d,0x49,0x4e,0x2f,0x0c,0x9c, +0xb7,0x67,0x5b,0x83,0x07,0x5f,0xfe,0x2c,0xe5,0xc3,0xb9,0xf7, +0x34,0x8f,0xc9,0x87,0xf1,0xe4,0x7b,0x98,0x23,0x8c,0xc3,0x39, +0x4f,0x60,0x7d,0x1b,0xae,0xff,0x43,0x36,0x05,0xb7,0x98,0xc2, +0x96,0xb5,0x38,0x53,0x1c,0x07,0x33,0x97,0xe2,0x76,0x05,0x6c, +0xc7,0x79,0x92,0x02,0xe7,0xe6,0x76,0x16,0xca,0x84,0x9b,0x04, +0x26,0x1b,0xd1,0x34,0xdf,0x4a,0x2e,0xec,0xee,0x60,0xf1,0xe7, +0x75,0xc4,0x63,0xa5,0xc5,0x2a,0x5d,0xfd,0x52,0x1b,0xfe,0xce, +0x9d,0xd6,0xe7,0x65,0xef,0x39,0x18,0x1e,0x46,0x5a,0x37,0xd6, +0xae,0xb8,0xbc,0xb0,0xa9,0x90,0x77,0xfe,0xc1,0xfa,0x5b,0xd3, +0xfb,0x9c,0xf8,0xbd,0x36,0xc1,0x21,0x4b,0x60,0x08,0x0b,0xc7, +0xa9,0xd1,0x2f,0x80,0x21,0x6f,0x18,0x81,0x15,0x67,0x91,0x86, +0x9b,0xa5,0xcf,0x2e,0xbc,0x93,0xe7,0xf0,0xfe,0x2b,0xf7,0x69, +0x3b,0x1b,0xec,0xea,0xdd,0x77,0xd7,0xff,0xb9,0xc2,0x87,0xbf, +0x30,0xaf,0x74,0x6d,0xdd,0x0e,0x23,0xed,0x0d,0xf2,0xf9,0x0e, +0xf9,0xa6,0xfc,0x4f,0xb5,0x8f,0x3b,0xaf,0x7e,0xdd,0xbb,0xf9, +0x81,0xc9,0xb7,0xb6,0x05,0xed,0xfc,0xf2,0x1a,0xed,0x76,0xd9, +0x5d,0x4e,0x04,0x38,0x49,0x5e,0x21,0xbb,0x84,0x81,0x99,0xc0, +0x92,0x37,0xc8,0x2e,0x60,0x46,0x43,0x8a,0xf2,0x09,0x59,0x85, +0xbb,0x4d,0x85,0xe0,0x36,0xf4,0x7c,0xce,0x0a,0x61,0xe2,0x10, +0xd2,0xf2,0xf6,0xf2,0x9b,0x9c,0x6f,0xb8,0x66,0xfc,0xae,0xff, +0xaf,0x2b,0xca,0x56,0x70,0x66,0x7d,0x36,0x3a,0x2f,0x34,0x9e, +0xc5,0xdd,0xdf,0xda,0xb5,0x71,0x8d,0xfa,0x16,0x7f,0xb7,0x8d, +0x1a,0x3a,0x4c,0xa2,0x81,0xca,0x75,0xe6,0x43,0xed,0xb5,0xb7, +0x3f,0xcb,0x1f,0xee,0xb8,0xa1,0xd9,0xef,0xe6,0x4c,0x84,0x19, +0x60,0x2f,0xce,0x60,0xba,0x71,0x3e,0xf9,0x15,0x4a,0x67,0xb1, +0x6f,0xf0,0x32,0x31,0x3c,0xb1,0xfd,0xc4,0xb6,0x93,0x5c,0x0e, +0x7b,0x3f,0xf7,0x76,0x6d,0x79,0x15,0x0d,0x8c,0x46,0x66,0xf0, +0x07,0xeb,0xe1,0x65,0xe0,0x61,0xe4,0xc7,0xc9,0xd8,0x75,0x27, +0xd7,0x86,0x6b,0x9f,0x8e,0x54,0xf0,0x77,0xcf,0x3d,0x8a,0x7c, +0x14,0xcd,0xa1,0x1a,0x8e,0x65,0x53,0xe5,0x2a,0xbf,0x33,0x75, +0xd2,0x96,0x0f,0x20,0xec,0x9d,0xa8,0x5b,0x31,0xbd,0x94,0x25, +0x0b,0x67,0x21,0x9e,0x3c,0x70,0xf9,0xd1,0x03,0x06,0x1d,0x4a, +0x6a,0xe2,0x17,0xa6,0xae,0xcf,0xd1,0xcb,0x6d,0x2b,0xa9,0xbd, +0x5c,0x5c,0xcb,0x55,0xe2,0x19,0x36,0x29,0x35,0x31,0x35,0x2e, +0x75,0x5f,0x02,0x0f,0x8d,0xe2,0x90,0xbf,0x07,0xf7,0x08,0xf7, +0x20,0x9f,0x75,0x35,0xda,0xba,0x63,0xb6,0x63,0xae,0x3d,0x5f, +0x99,0x5e,0x71,0xa1,0x34,0xf7,0x92,0x57,0x81,0x4f,0xd9,0x41, +0xed,0xbd,0xcb,0xbc,0x16,0x1c,0x49,0xb3,0xe6,0x0b,0xa2,0x0b, +0xa2,0xf3,0x62,0x39,0x0c,0xeb,0xb8,0x0c,0x0f,0xc1,0x46,0x1c, +0xc5,0xde,0xcb,0xb8,0x9e,0xd3,0x95,0xcf,0x15,0xc0,0x69,0x02, +0xf7,0xc5,0x58,0x9c,0xc9,0x48,0x52,0xdc,0x13,0x98,0x5a,0x69, +0x8d,0xa9,0xf2,0xb2,0x38,0x8e,0x15,0x35,0xa8,0x4f,0xdc,0x87, +0xaf,0x36,0xb1,0xe0,0xa8,0x7a,0x1f,0xd2,0x36,0xb1,0xfd,0x0e, +0x38,0x8e,0x3c,0x84,0xaf,0x36,0x48,0x67,0x1e,0x42,0xda,0x06, +0x56,0x74,0x91,0x56,0x79,0x9d,0x3b,0x17,0x19,0x19,0xc9,0xc1, +0x3e,0xe6,0xc0,0x5e,0xe7,0x7d,0xd6,0x9e,0x76,0x39,0xae,0x97, +0xf6,0xe5,0x72,0x10,0x2c,0x49,0xf2,0x0c,0xc1,0x2c,0x3a,0xbe, +0xa3,0x1f,0x2a,0x6b,0xc8,0x3f,0x8b,0x02,0xd8,0x00,0x1d,0x9b, +0xe9,0xd6,0xab,0xb8,0x1b,0xdb,0xaa,0x37,0xea,0xa8,0x1b,0x07, +0x1e,0x50,0xd0,0x54,0x24,0x5e,0x57,0xa5,0x85,0xb9,0x53,0x59, +0xff,0xf3,0x0b,0x87,0xc7,0xb2,0x3e,0xcd,0xcb,0xb7,0xeb,0xff, +0xc8,0x7a,0xc6,0xd5,0xb3,0x65,0x0a,0x22,0x74,0xb5,0x8b,0x5d, +0xcc,0x65,0x7c,0x40,0x04,0x47,0xb0,0x13,0x1d,0x69,0xb7,0xcf, +0x23,0xbf,0xc0,0x4f,0xb3,0x59,0x71,0xa4,0xf8,0x81,0x08,0x3b, +0x60,0x48,0x10,0x6b,0x72,0xd0,0x75,0xad,0x8b,0xc6,0x45,0x3b, +0x95,0x1f,0x6b,0xcb,0xdb,0x1e,0xa9,0x27,0x3d,0x59,0xcb,0x5a, +0x67,0x05,0x56,0x6b,0x7c,0x44,0x6f,0x1c,0xca,0xa4,0x99,0xa9, +0xfc,0x20,0xc9,0x18,0x55,0x69,0x0a,0xf3,0xc4,0x8b,0xe2,0x61, +0x56,0xf8,0x1c,0x5e,0x11,0xbf,0x93,0x91,0xe9,0x9a,0x0f,0x80, +0x9b,0xc3,0xea,0xce,0x25,0x78,0xd9,0x86,0xc6,0x9b,0xf5,0xad, +0xd2,0x72,0x7f,0xea,0xe8,0x59,0x14,0x30,0x7e,0x80,0x97,0x10, +0x8a,0x2f,0xbf,0x05,0x17,0x58,0x02,0x0e,0x5d,0xe8,0x20,0xbd, +0x86,0xfc,0x59,0x3a,0xd8,0xca,0xc0,0x96,0xe2,0x98,0xf9,0x72, +0xbc,0x86,0xa1,0x70,0x6d,0xb1,0xb8,0x54,0x26,0x2c,0x45,0x8d, +0xab,0xa0,0x21,0x68,0x77,0xb1,0x58,0x2a,0xdc,0x26,0xd3,0xf1, +0xe7,0x0f,0x2c,0x72,0xd8,0x4c,0xe0,0x2c,0x25,0x70,0x67,0x19, +0xe1,0x89,0x2a,0x9e,0x07,0x55,0x38,0x4f,0xaf,0x5e,0xa7,0xb4, +0x25,0xbe,0x8d,0xfb,0xda,0x0e,0x54,0x18,0x7b,0xf2,0x05,0x76, +0x79,0x56,0x99,0x36,0x9c,0x40,0x36,0x11,0xd4,0xec,0x03,0x2b, +0x94,0xb3,0xa5,0x55,0x65,0x6d,0x97,0x1a,0x0c,0x72,0x79,0x4f, +0xb9,0xa3,0x81,0x8d,0x29,0x27,0xfe,0x86,0x56,0xbd,0xa0,0xc9, +0xc0,0xda,0xd7,0xe4,0x40,0xcd,0xee,0xfa,0xbd,0xc5,0xa6,0xee, +0x7c,0xb1,0x6b,0x89,0xdd,0x45,0x27,0x0e,0x3a,0xc4,0x25,0xa4, +0x8e,0x85,0x41,0x35,0xcf,0xdb,0x5b,0xbb,0xb8,0x56,0xf1,0x81, +0x89,0x10,0xcc,0x9a,0xdb,0x6f,0x70,0x5c,0xb4,0x97,0x5b,0x2b, +0xae,0x31,0x16,0xd6,0xa0,0x13,0xba,0xb2,0x69,0x32,0x15,0x30, +0x93,0x86,0xb7,0x4a,0x13,0xec,0x84,0x85,0xdd,0x94,0xdc,0xbb, +0x0b,0x35,0x04,0x76,0x76,0xf5,0xb3,0xf4,0x91,0x61,0x77,0x24, +0xb8,0xa7,0xc3,0x82,0x52,0xa9,0x36,0xd3,0x52,0x37,0x74,0x3d, +0x8c,0xa7,0x4f,0x71,0xe2,0x3a,0x5c,0x63,0xfc,0x97,0x6a,0x37, +0x7a,0xb3,0x7a,0x20,0x23,0x28,0xa3,0xee,0x2f,0x63,0xe1,0x94, +0xf8,0x15,0x01,0xbf,0x9d,0xe8,0x87,0x29,0xb0,0x55,0x17,0xeb, +0xaf,0xf5,0x08,0xbf,0x1b,0x5d,0x83,0x7a,0x5d,0xdc,0x4a,0x31, +0x3c,0x4e,0x19,0x44,0x92,0x0b,0xe2,0xf3,0x62,0xf3,0x8c,0xe3, +0xf9,0x50,0xb7,0x90,0xfd,0x47,0xdd,0x28,0xbb,0x10,0x55,0xe0, +0xad,0xa0,0xc2,0x88,0x04,0x07,0x11,0xcb,0xfa,0x15,0x37,0x15, +0x65,0xbb,0x1c,0xf9,0x4e,0xa7,0xc7,0xfa,0x6d,0xe6,0x9c,0x72, +0x2a,0x58,0x10,0x53,0x99,0x8e,0x89,0x8e,0x53,0xb9,0x35,0x7f, +0xf5,0xf2,0x83,0x6b,0x6d,0x5d,0x1c,0x3e,0xc7,0x25,0x04,0xfd, +0xff,0x04,0x7f,0x06,0xfd,0xa5,0xe9,0x0b,0x7f,0x4a,0x9d,0x69, +0x7b,0x0c,0x0c,0x26,0x06,0xe6,0x6b,0xcd,0x56,0xdb,0x94,0x9a, +0xf3,0xdf,0x34,0x3c,0xed,0x6c,0x6f,0xe6,0x94,0x8b,0xe8,0x55, +0x65,0x75,0x8b,0xef,0x18,0x96,0xef,0xb2,0xe3,0xaf,0x38,0x3e, +0xd7,0xbb,0x62,0xce,0xa5,0xa1,0x2a,0xe9,0x10,0x97,0xbf,0x30, +0x58,0x29,0x4e,0x93,0x0b,0x83,0x59,0x93,0xcd,0x38,0x54,0x81, +0xee,0x46,0x39,0x26,0x3c,0x84,0xdf,0xff,0xd0,0x7c,0xf9,0x03, +0x17,0x83,0xa9,0x7d,0x90,0x1a,0xcd,0x54,0x4e,0x07,0xce,0x82, +0x9a,0xfa,0x79,0xfa,0xf0,0x9e,0x3d,0x38,0xaa,0x43,0xf6,0x35, +0xf5,0xc3,0xe5,0x4a,0x13,0xb2,0xb0,0x1d,0xa6,0xa3,0xce,0x2b, +0xd9,0x12,0xdc,0x8e,0x0b,0x3a,0x7e,0x63,0x85,0x95,0x32,0x22, +0x66,0x0a,0x63,0x85,0x4c,0x54,0xb0,0x29,0x25,0x09,0xa5,0xf1, +0xc5,0x1c,0x98,0xb4,0x89,0x32,0x53,0xb0,0x64,0x42,0xdc,0x83, +0x77,0x1f,0xa1,0x49,0xe1,0x22,0x71,0x2c,0x71,0x2a,0x36,0xa8, +0xd7,0xa9,0x6b,0x68,0x28,0x6b,0xcb,0xea,0xa0,0x6e,0xbb,0x9f, +0x8d,0xcf,0x8a,0xcd,0x8c,0xce,0xb4,0x48,0xe4,0x3d,0x57,0x1b, +0x2d,0xdc,0x68,0x58,0xbc,0x8b,0xbf,0x98,0x75,0xe1,0xc2,0xf9, +0x4b,0xc5,0xbe,0xe5,0xde,0xe5,0x5e,0x46,0x36,0xda,0x8e,0x6b, +0x3d,0xb2,0xad,0xf9,0xef,0x8b,0x9f,0xd6,0x5f,0x6f,0xbf,0x6d, +0x7d,0xcd,0xaa,0xca,0x85,0x03,0x0e,0xce,0x53,0x88,0xc9,0x98, +0xc5,0xf6,0x6f,0x8a,0x23,0x71,0xc9,0xf1,0x29,0xb1,0xc9,0x1c, +0x0d,0x6c,0x87,0x9d,0x3c,0x9c,0x9c,0x76,0x39,0xe5,0x3a,0x5d, +0x72,0x3d,0xcf,0x29,0x37,0x19,0x91,0x69,0x98,0xf1,0x3b,0x8b, +0x8b,0x86,0x41,0x06,0x0d,0x93,0x19,0x8c,0xb8,0x04,0x23,0x48, +0x17,0xa4,0xc0,0x57,0x78,0xe7,0x7f,0x51,0xf6,0x1e,0x50,0x55, +0x24,0x51,0xbb,0xa8,0x89,0xee,0x76,0x74,0x70,0x66,0xb4,0xb4, +0x45,0x07,0xcc,0x39,0x61,0x44,0x8c,0x28,0x82,0x80,0xc4,0x43, +0xce,0x39,0x1b,0x40,0x05,0x05,0x45,0xcc,0x61,0x0c,0x80,0x48, +0xce,0x39,0x67,0x90,0x0c,0x87,0x6c,0xce,0x61,0x66,0xcc,0x71, +0xd4,0x31,0xcc,0xa8,0xb3,0xfb,0xb8,0x9b,0xf9,0x6f,0x35,0xfa, +0x87,0xfb,0xde,0x5b,0xeb,0xdd,0x2b,0x6b,0x75,0x97,0x75,0xe0, +0x74,0x55,0x75,0xd5,0xde,0xdf,0xd7,0x5d,0xfb,0xdb,0xd8,0xc9, +0xd2,0x42,0x34,0xc1,0x69,0xe8,0x0a,0x94,0x10,0x3c,0xa2,0x3c, +0xaf,0xc9,0xfb,0xa2,0x55,0xbd,0x4d,0x79,0x35,0x6f,0x5f,0x6f, +0xd8,0x68,0x5d,0xca,0x61,0x1b,0x6a,0x93,0x6b,0x95,0xf2,0x86, +0x3a,0xb9,0x43,0x11,0xef,0x66,0x63,0xee,0xa0,0xef,0xcb,0x29, +0x5f,0x92,0x5e,0xfe,0x44,0x81,0x01,0x44,0xb1,0x55,0x23,0x69, +0xc1,0x98,0x16,0xae,0xe1,0x02,0xa9,0xff,0xfd,0x68,0xff,0x0d, +0xd8,0x78,0xda,0xff,0xe8,0x62,0x29,0x32,0x54,0x5c,0x69,0x01, +0x26,0xcc,0xbe,0xaf,0xfd,0x17,0xeb,0x1d,0x08,0xa8,0xdf,0xa7, +0xfe,0x19,0xd4,0x46,0x82,0xfa,0x63,0xa9,0xa0,0x33,0x8e,0x7c, +0x80,0x88,0x29,0xac,0x38,0x56,0x97,0xb4,0x8a,0xc3,0x2d,0x59, +0x45,0x62,0x12,0x6d,0x75,0x04,0x6d,0x75,0x3f,0x9c,0x4a,0xab, +0x2c,0x2c,0x3f,0xb0,0x61,0x4e,0x3b,0xec,0x03,0x2d,0x39,0xa8, +0x65,0x8e,0xf9,0x1c,0xf5,0x38,0xe0,0xcd,0x79,0x1e,0xd8,0xbd, +0xd7,0x63,0x0c,0xf6,0x67,0xfa,0x0c,0xe5,0xb9,0x82,0xcc,0xee, +0x18,0xb5,0xe8,0xc6,0x88,0x9e,0x13,0x97,0x39,0x4c,0x67,0x62, +0xf3,0x62,0x0b,0xa3,0x0b,0x39,0x41,0xed,0x00,0x81,0x08,0x1c, +0x84,0x11,0x0c,0x2c,0x40,0xa5,0xbe,0xce,0xd5,0x49,0x9d,0x73, +0xa8,0xdf,0xd0,0x68,0x43,0x3b,0x27,0xff,0xd6,0xb9,0x5a,0xb9, +0xe3,0xd7,0xce,0x19,0xd0,0xce,0x41,0x83,0x30,0x89,0x04,0xee, +0x09,0x08,0x0f,0x08,0xe7,0x20,0xf8,0x79,0x87,0xfa,0x57,0xe6, +0xae,0x64,0x46,0x89,0xf2,0x49,0xd6,0x25,0xd4,0x25,0xcc,0x55, +0x62,0xee,0xe5,0x31,0xe5,0xb1,0xe5,0x12,0x73,0x9f,0xc4,0x26, +0x1a,0x2a,0x3d,0x60,0xea,0x93,0xd2,0x28,0x7d,0x92,0xb3,0x79, +0xb1,0x79,0x71,0x79,0xf1,0xdc,0x41,0x98,0x43,0x64,0xc2,0x94, +0x76,0x5c,0x05,0xd3,0x61,0x6a,0x1b,0x4e,0x85,0x51,0xa6,0x38, +0xea,0xeb,0x9b,0xad,0xe9,0xac,0xc0,0xa4,0x92,0x03,0x31,0xfb, +0x4e,0xee,0xdf,0xbf,0x67,0x2f,0x85,0xa9,0x37,0x8c,0xfe,0x9d, +0xd0,0x23,0x94,0x30,0xd1,0xa7,0x4e,0x50,0x74,0x08,0x23,0xd0, +0xa3,0xac,0x5e,0x49,0x34,0x99,0x4c,0x60,0x9e,0x1c,0xe7,0xc1, +0x64,0x53,0x9c,0x8c,0xf3,0x2d,0x80,0xba,0x57,0xc6,0x78,0xbf, +0xd1,0x41,0x83,0x43,0x91,0x14,0x4c,0xcd,0x8a,0x03,0x92,0x0c, +0x2a,0x19,0x87,0x3a,0x78,0xb3,0xbd,0xa6,0xfb,0x4c,0xf7,0xd3, +0xa6,0xe7,0x2a,0x66,0x92,0x5c,0xbb,0x5c,0xab,0x2c,0x8b,0xd6, +0x2c,0x3e,0xa8,0x6e,0x5b,0x55,0x60,0x35,0x07,0x8b,0x3a,0xb0, +0x84,0x49,0x2a,0x8e,0xa7,0x33,0xd2,0x34,0x8e,0xf7,0x9d,0x2a, +0x9b,0xb3,0x7a,0x55,0x9d,0x1b,0x5f,0x51,0x59,0x52,0x97,0xd7, +0xc8,0x09,0x36,0x1d,0x24,0xa1,0x24,0xae,0x24,0xba,0xc4,0x24, +0x86,0x0f,0x9c,0xe3,0x34,0xdf,0x70,0x4d,0x93,0x37,0x9f,0x57, +0x9a,0x55,0x91,0x5e,0xcd,0x3d,0x67,0xf2,0xec,0x72,0xa4,0x6f, +0xcb,0xe4,0xb7,0xd7,0x6f,0xef,0xfb,0x36,0xc3,0x0e,0x46,0xdc, +0x87,0xe5,0x04,0xff,0x43,0xa6,0x68,0x6c,0x17,0x87,0xc1,0x77, +0x7a,0x0c,0x1c,0x41,0x7b,0xe2,0x87,0xfd,0xdc,0x90,0x91,0x4d, +0xe0,0xc4,0x34,0xd3,0x2f,0xa3,0x3b,0xf1,0x1c,0xd3,0xfc,0xa6, +0xe2,0x63,0xa1,0x04,0x26,0x86,0x62,0x22,0xd9,0xfc,0xc6,0xe7, +0x8d,0xe7,0x13,0x93,0x20,0xbe,0x74,0x71,0xf1,0xec,0x1c,0x29, +0x0d,0x4a,0x49,0x1f,0xe5,0x3e,0xf8,0x4b,0xd8,0xde,0xbe,0x84, +0x67,0x63,0x60,0x88,0x1c,0x87,0x80,0x99,0x8c,0x02,0xdd,0x51, +0x16,0x30,0x8c,0xd9,0x83,0x23,0xdc,0x71,0xf2,0x42,0x1c,0x5e, +0x61,0xcb,0x5f,0xf9,0x94,0xf3,0x31,0xe2,0x15,0x45,0xd1,0x99, +0xd2,0xde,0x85,0xaf,0x1b,0xb6,0xef,0xa1,0x76,0x45,0xb9,0x12, +0xf8,0xdd,0x26,0xef,0xee,0x81,0x85,0xe6,0xeb,0x47,0xcd,0x98, +0x25,0xee,0x86,0xdc,0x66,0xb6,0x76,0x03,0xa9,0x2d,0x2b,0xad, +0x2c,0xa8,0x29,0x70,0x2c,0x77,0xa9,0x75,0xcf,0x6b,0xe5,0xed, +0xcb,0xbd,0xaa,0x36,0xd6,0xd4,0xde,0xcf,0xf9,0x23,0x01,0x06, +0x51,0x04,0xf9,0x8b,0x39,0x58,0xb0,0x7b,0x35,0x82,0x56,0xfb, +0xea,0xf9,0xf5,0x04,0x5d,0xde,0x75,0xd7,0x3e,0x98,0x4f,0x5a, +0x90,0xb3,0xa2,0x52,0x7b,0x93,0x93,0xa7,0x9b,0x23,0x45,0x83, +0xb3,0xe9,0x2c,0x98,0xa5,0xf1,0x9a,0xa5,0x30,0x8e,0x16,0x70, +0xc9,0x6b,0xf6,0x01,0x2d,0x4c,0xd3,0x78,0xc7,0x0a,0xc1,0x14, +0x7e,0xb7,0x61,0xf8,0x47,0xa3,0x89,0xb8,0xc3,0x1c,0x76,0xe0, +0x18,0xec,0x94,0x29,0x06,0xb7,0x63,0x22,0x8c,0xa1,0x14,0x24, +0x53,0xf0,0x20,0xfb,0x13,0x0f,0x1e,0x0b,0xdb,0xb7,0x47,0xda, +0x85,0x3e,0xe6,0xa3,0x7c,0xe2,0xd7,0x4e,0x0d,0xb3,0x00,0x8e, +0x76,0x8a,0x78,0xe0,0x64,0x4d,0xfc,0xf1,0x5b,0x1e,0xb7,0x53, +0x2f,0x69,0xa7,0x52,0xdb,0x85,0xe8,0x6f,0xd9,0x17,0x2e,0xe1, +0xc2,0xb2,0x72,0xa5,0xd3,0xc2,0x3e,0x62,0x2b,0x7c,0x6e,0x64, +0xc5,0x0e,0x14,0x88,0x10,0x09,0x49,0x62,0x24,0x03,0x01,0xe3, +0x08,0x6a,0xf6,0x80,0x26,0xd3,0x66,0x44,0x7a,0x40,0xdb,0x88, +0xc5,0x50,0x47,0xa2,0x87,0x9a,0x97,0x58,0x08,0x18,0x09,0xda, +0x7a,0xa8,0xcd,0xe0,0x1d,0x75,0xfa,0x87,0x1f,0x1b,0x59,0x97, +0x99,0x44,0x4c,0xc7,0x44,0x21,0x9d,0xc1,0x46,0xca,0x5a,0x71, +0x4d,0x0f,0xac,0x61,0xe4,0xd2,0xdf,0x19,0xd3,0xbf,0x3b,0xe8, +0x48,0xf4,0x71,0xcd,0x45,0x16,0x76,0x8c,0x04,0x63,0x7d,0x34, +0x66,0xf0,0x39,0x4e,0x24,0x8a,0x81,0x4d,0xbd,0x03,0x29,0x24, +0x2a,0xa4,0x3d,0x38,0x90,0xb0,0xf7,0x44,0x78,0xf8,0x9e,0x3d, +0xbc,0xf4,0x18,0xe6,0xfb,0x36,0xfc,0x1e,0x8c,0x65,0x68,0x8c, +0xa3,0xcd,0xe1,0x87,0x6f,0x3b,0xe9,0x17,0xf4,0xed,0xa4,0xbf, +0xf6,0x29,0xfb,0x63,0xe4,0xb7,0x3e,0x9c,0xa2,0xf4,0x46,0xea, +0xc3,0x2d,0x54,0x2f,0xab,0x50,0xaa,0x16,0x76,0x12,0x0c,0x60, +0xf1,0xec,0x0e,0x5c,0x33,0x0f,0x67,0xa9,0x36,0xbb,0x2a,0x3d, +0x87,0x59,0x79,0xb0,0x16,0x2e,0xab,0x08,0xfe,0xb0,0x8f,0x11, +0xfd,0x25,0x31,0xc0,0x51,0xc2,0x3c,0x1c,0xc5,0x96,0xf6,0x7e, +0x47,0xf0,0x67,0xc6,0x69,0x6f,0x7c,0x91,0xda,0x4b,0x16,0x0e, +0x95,0x1f,0x6c,0xc5,0x70,0x4f,0xa5,0xbf,0x58,0xf0,0x2b,0xa2, +0x45,0x0f,0x5f,0xa5,0xb7,0xec,0x8d,0xc4,0xcb,0x29,0xf5,0x29, +0x81,0x0d,0xbc,0xba,0x17,0x2e,0xf3,0xc4,0x61,0xbb,0xe3,0xac, +0xf9,0xba,0x88,0xe6,0xe8,0xe6,0x33,0xdc,0x2c,0x16,0xb5,0xb6, +0x9c,0xb6,0x82,0xa5,0xd9,0x4a,0x93,0x59,0xb4,0xf6,0x8f,0xb6, +0x02,0xe3,0x3c,0xa5,0x05,0xac,0x61,0x8e,0xcf,0x4d,0x55,0x98, +0xc8,0x9c,0x4d,0x4c,0xa8,0x55,0x7b,0xc0,0x5a,0x24,0x29,0x29, +0x3f,0x00,0x33,0x02,0xf1,0x82,0xa6,0x2e,0x5d,0x12,0x89,0x95, +0x31,0xa5,0xdc,0x59,0xfc,0x99,0x8d,0xca,0x88,0xc8,0x8c,0xc8, +0xb4,0x89,0xe2,0x77,0x4e,0xf5,0x98,0x65,0xb6,0xb2,0xcc,0x9b, +0x8f,0x8e,0x55,0x52,0xec,0x84,0x52,0x62,0x8e,0x8d,0x0c,0xc6, +0x39,0x50,0x50,0xa6,0x8c,0x1a,0xaa,0x65,0x56,0x94,0x72,0xce, +0x2d,0x87,0x41,0x27,0x40,0x7b,0x74,0x14,0x73,0x02,0x57,0x14, +0xa0,0xd2,0xdf,0xb8,0xb0,0xb4,0x55,0x0a,0x75,0x5c,0xee,0x45, +0xc7,0xea,0xb4,0x0a,0x86,0xe2,0xf7,0x74,0xfc,0xf6,0x45,0x85, +0xed,0xd9,0x4d,0x49,0xe8,0xbb,0xf7,0xf2,0xa9,0xb0,0x9c,0xa9, +0x88,0x2f,0x4f,0x2a,0x4a,0x95,0x34,0x50,0xdc,0xa7,0x7a,0x2f, +0xd8,0x99,0x6c,0xc3,0x17,0x45,0x95,0x46,0x97,0xc6,0x70,0x38, +0x03,0x39,0x8b,0x4f,0xec,0x9e,0x59,0x9e,0xf8,0xd3,0x62,0xe4, +0x8a,0x4c,0xf8,0xeb,0x6f,0xf3,0x5e,0x45,0x7c,0xa2,0x63,0xba, +0xab,0x55,0xb0,0x62,0x4e,0x47,0x48,0x63,0x7a,0x17,0x35,0x2b, +0xab,0x94,0xc4,0x69,0x82,0x1b,0xd9,0xb7,0x29,0xd4,0x6d,0xa7, +0x17,0x37,0x85,0x49,0x2a,0x4a,0x2c,0x89,0x2b,0xe3,0x14,0x21, +0x3e,0x64,0xff,0xec,0xdd,0x13,0xb6,0x2d,0xae,0xdf,0xc6,0x67, +0xbf,0x88,0xff,0x78,0xfa,0x3d,0x87,0x69,0x58,0x4d,0xd2,0x1e, +0x9f,0x79,0x7f,0xea,0xb5,0x6d,0x2c,0x7f,0x78,0xce,0xfe,0xb9, +0x41,0xcb,0x38,0x31,0x26,0x95,0x80,0x4a,0x17,0xaa,0xb0,0xb5, +0x23,0x41,0xe5,0x1c,0x3d,0xa3,0x26,0xd2,0xd1,0x98,0xd8,0x85, +0x13,0xa5,0xaa,0x89,0xe7,0xe8,0xf9,0xe0,0x52,0x92,0xe0,0x9a, +0xe0,0x18,0x63,0x5b,0x95,0xc8,0xef,0x6e,0x08,0xad,0x0b,0x2d, +0xe3,0xf0,0x24,0x1e,0x21,0x85,0x17,0xd2,0x1f,0x46,0xff,0xe6, +0x1c,0xcd,0xef,0xd5,0x0e,0x5e,0xe3,0x67,0x24,0xbd,0x93,0x32, +0x23,0x71,0xd6,0x31,0xb2,0xd3,0x7a,0x67,0xe3,0xf8,0x7d,0x3d, +0x61,0x9d,0xbb,0x9b,0x39,0xec,0xb7,0x9b,0x44,0x1a,0x9c,0x5a, +0xab,0xab,0x52,0x1f,0x75,0xf4,0xda,0xa1,0x2b,0xfb,0x2f,0x8d, +0x56,0x86,0x46,0x85,0x05,0xb1,0xad,0x33,0xa9,0x33,0x2e,0xf5, +0x71,0xe0,0x7b,0xdc,0x5b,0x5d,0x5a,0xec,0x38,0xd8,0x8a,0xbf, +0x91,0x9c,0xdc,0x8c,0xbc,0x94,0x3c,0x0e,0x5e,0x09,0x43,0x30, +0xd2,0x12,0x2c,0x26,0xe0,0x06,0x6b,0xd8,0x80,0x8c,0xb8,0x8c, +0x8e,0xb2,0xf4,0x64,0xe2,0x25,0x73,0xf1,0xf4,0x85,0xa4,0xee, +0x82,0xcd,0xf5,0xbc,0xa9,0xff,0xaa,0x1d,0x8b,0x0f,0x70,0x08, +0xa0,0xc2,0xda,0xea,0xac,0xdc,0x30,0xd9,0x2e,0xdb,0x86,0x6f, +0xcd,0xae,0x2f,0xa8,0x2c,0xe2,0x04,0x6b,0x46,0xeb,0xd0,0x8c, +0x7d,0xda,0xaa,0x5e,0x87,0x42,0xf6,0x38,0x8f,0x41,0x25,0x26, +0x5e,0x26,0x85,0x4c,0x5f,0x2f,0xc8,0xbb,0x7c,0x46,0xed,0xcc, +0xad,0x88,0x7f,0x60,0x98,0x4a,0xef,0x62,0x18,0x42,0x6c,0x9a, +0xb4,0xdb,0xf4,0x2b,0xbd,0x1d,0xf8,0x0b,0x2e,0xe7,0x6d,0xda, +0xad,0x24,0xf4,0xe1,0x4f,0xae,0x40,0xff,0x06,0x18,0x93,0xf3, +0x51,0x96,0x2a,0x09,0x79,0x3a,0xe3,0x60,0xfd,0xa9,0x9c,0x62, +0x16,0x1c,0x27,0xa9,0xae,0xe9,0x1b,0x62,0x6d,0x5b,0xd2,0xf9, +0x5d,0xcd,0xdb,0x7b,0x82,0x2b,0x38,0xd1,0x1c,0xcf,0x93,0xee, +0x3f,0x8a,0x5f,0x25,0x3f,0x96,0x92,0xd5,0x2c,0xf5,0x5d,0x68, +0xb2,0x48,0x7a,0x49,0x79,0x90,0x24,0x9b,0x24,0xe9,0xc5,0xac, +0x69,0x4b,0xe4,0xf7,0x5c,0x09,0xbd,0x10,0x74,0x81,0x43,0xad, +0x9d,0x24,0x66,0x59,0xd4,0xc2,0xe3,0x9a,0x1d,0x67,0xf8,0x63, +0xf7,0xf7,0x3d,0x0d,0xbb,0xd3,0xb7,0x13,0x64,0x15,0x69,0x44, +0xdb,0xdf,0xc1,0xa0,0x46,0x0e,0x1a,0xb8,0xe7,0xbe,0xe1,0x52, +0xdc,0x89,0x1a,0x6d,0xce,0xa0,0xbd,0x0c,0x6d,0x6d,0xc1,0x76, +0x11,0x1e,0xb0,0x11,0xca,0x9a,0xf0,0xd0,0x63,0x56,0x38,0x26, +0x2e,0x25,0xb8,0x82,0x49,0xa6,0x7c,0x75,0x22,0xd3,0x94,0x9a, +0xd6,0xa2,0xa6,0x68,0x32,0x64,0xd1,0xce,0x9a,0xf4,0x8e,0xee, +0x51,0x8c,0x66,0xc5,0x97,0x06,0x44,0x98,0x33,0x11,0x75,0xaf, +0x98,0xea,0xa2,0x16,0xd3,0xd0,0xbb,0x8a,0xb4,0xc2,0x2d,0xcb, +0x2e,0x68,0x10,0x37,0x60,0x83,0x04,0x64,0x0f,0x4b,0x5b,0xa4, +0x6e,0x49,0x5b,0xa4,0x84,0x66,0x61,0x36,0x89,0xcf,0x88,0xcb, +0x8c,0xcd,0xe6,0xa0,0x03,0x6e,0xd1,0x95,0x77,0x0b,0xfa,0x31, +0x6e,0x2b,0x8c,0x74,0xd6,0xdb,0x16,0xd8,0xf1,0x29,0xf1,0xc9, +0x09,0x49,0x89,0x1c,0xae,0x64,0x0d,0x53,0x02,0xee,0xa8,0x82, +0x36,0xd3,0x18,0x9f,0x50,0xa9,0x76,0x91,0xb5,0x4b,0x52,0x5a, +0x80,0x7a,0xac,0xeb,0xfe,0xc8,0x52,0xb5,0xb3,0xec,0xeb,0x94, +0xcf,0xb9,0x37,0x8b,0x03,0xea,0xf8,0x0d,0x1b,0x67,0x6c,0x5e, +0xb0,0x93,0xfb,0xd3,0x9f,0x4d,0x48,0x88,0x4b,0x8c,0x4b,0xe2, +0xe0,0x23,0x73,0x14,0xb9,0xc3,0x13,0xf6,0xad,0xe5,0x8c,0xf7, +0x87,0x87,0x9a,0x8e,0x99,0x2b,0x41,0xeb,0x87,0xcc,0x93,0x9c, +0x82,0x57,0xd4,0x31,0xff,0x1a,0x01,0x03,0x8e,0xc3,0x62,0xae, +0x37,0x4b,0x1c,0x4b,0x3e,0x81,0xbb,0x62,0x2c,0xa6,0xf5,0x1e, +0x64,0x15,0xc7,0x15,0x41,0x64,0x31,0x7e,0x79,0xc4,0xa2,0x85, +0x78,0x93,0xe0,0x74,0xa1,0x10,0xa6,0x33,0x42,0xc3,0x5c,0x32, +0x17,0xbf,0xbc,0xa4,0xa6,0xf4,0xb4,0xd6,0xb7,0xc0,0x59,0x41, +0xfd,0xcb,0x38,0xe2,0x31,0x6b,0xe5,0x42,0x1c,0xa1,0x7e,0xb0, +0x3c,0xfc,0xec,0xde,0x02,0xdb,0x60,0xfe,0x8c,0x67,0x8c,0x75, +0x84,0x63,0xe6,0x19,0x3e,0xdf,0x0e,0x26,0xfd,0xf5,0xe2,0x71, +0x09,0x28,0x8f,0x8e,0x64,0x0a,0x91,0x83,0x7e,0xf3,0x61,0xe6, +0xb8,0xa2,0x0e,0x1e,0x27,0x7f,0x98,0xfc,0xcc,0xe1,0x13,0x27, +0xde,0x15,0x43,0x49,0xde,0x93,0x84,0xff,0x3d,0xc6,0x76,0xd5, +0x9f,0x04,0xb0,0x13,0x91,0x39,0x22,0xfe,0x41,0xba,0x85,0x41, +0xc6,0x3d,0x82,0xba,0x18,0x26,0xaa,0xb3,0x82,0x16,0x00,0xc1, +0xbd,0xe2,0x20,0xd8,0x4b,0x1b,0xe1,0x24,0xa5,0x28,0xd5,0xc7, +0x59,0xa6,0x30,0x0b,0x7f,0x61,0xcd,0x43,0x64,0xbb,0xac,0xc2, +0xcf,0x18,0xf3,0x4d,0xb1,0xcd,0x71,0x2d,0x49,0x52,0x10,0x9e, +0x6a,0x9f,0x42,0x2d,0xc3,0x34,0x27,0x4b,0xfa,0x4b,0x0d,0xec, +0xd9,0x84,0x9a,0xc4,0xaa,0xe4,0xf0,0x76,0xde,0x33,0x54,0x0a, +0x1f,0x97,0x62,0xf9,0x46,0x76,0xe2,0x48,0xd0,0x67,0x15,0x3a, +0x48,0x81,0x53,0x1c,0xe8,0x30,0x77,0xe3,0x6e,0x25,0x5e,0x4c, +0xdd,0x48,0xcd,0xc6,0x28,0x0f,0x5c,0x17,0x80,0x4b,0xc3,0xe3, +0x4c,0xf8,0x8b,0x11,0x37,0xa3,0x6e,0xf5,0x89,0x22,0xed,0x30, +0xa1,0x6e,0x45,0x17,0x9d,0xc5,0x1f,0xce,0xf5,0xc0,0x67,0xa3, +0xf3,0xc2,0x0f,0xe8,0x0d,0xba,0x10,0xc7,0x8a,0xee,0xe2,0x06, +0x02,0xce,0xf0,0x19,0x9d,0x59,0xe5,0xd7,0x8a,0x74,0x72,0xcd, +0xe7,0xa2,0x7b,0x97,0x73,0x61,0x0b,0x6f,0x56,0xa3,0x53,0xad, +0x53,0xc0,0x29,0x2e,0x61,0x0d,0xc1,0x66,0x58,0xc7,0x3c,0x8b, +0x7b,0x92,0x78,0x2d,0x79,0x63,0x1b,0x8f,0xe3,0x7c,0xd0,0x6d, +0x0b,0x9a,0x85,0xc7,0x19,0xf1,0xb7,0x4e,0x3d,0x3a,0xfd,0xa8, +0xef,0x12,0x45,0xc6,0x50,0x44,0xa1,0xeb,0x2e,0xf1,0x87,0x0b, +0x3d,0xc2,0x02,0xa3,0x0b,0xf4,0x12,0xbf,0x80,0x0e,0x34,0xb3, +0xbd,0xcb,0xc2,0x89,0x69,0xcd,0xea,0x3a,0xed,0xc2,0x8d,0x56, +0xfc,0x75,0x9f,0xcb,0x2e,0xe7,0x1d,0x39,0x1c,0x2f,0xee,0x24, +0xf7,0xfe,0xbe,0x02,0xa3,0xaa,0x3e,0xcb,0xb2,0x79,0x67,0x1c, +0x60,0x8c,0xac,0xe6,0x0c,0x4e,0x18,0x7c,0x89,0x50,0xd2,0xb0, +0x00,0x1d,0x59,0xe5,0x67,0x8a,0x4c,0x72,0xcd,0xf3,0x82,0x4b, +0x8f,0x5d,0x71,0x23,0x6f,0x56,0xaf,0x5d,0xaf,0x53,0xcc,0x09, +0xdf,0x89,0x2b,0x89,0xf4,0xce,0x2c,0x8e,0x4e,0xbc,0xf7,0x70, +0x47,0xcc,0xc5,0x3b,0xa0,0xcc,0x38,0xac,0xd2,0x5b,0xbf,0xd2, +0x8a,0x4e,0xbc,0xf4,0x84,0xf4,0xc4,0x54,0x3a,0x88,0xcb,0x58, +0xbd,0x94,0xcd,0x0f,0x54,0xc1,0x97,0x69,0x8e,0x4f,0xaa,0x54, +0xbb,0xc0,0xda,0x24,0x29,0x2d,0xa2,0xd0,0xd8,0x61,0x5f,0x64, +0x85,0x5a,0x19,0x0b,0x03,0x92,0x61,0x58,0xee,0xa3,0xa2,0x80, +0x46,0x5e,0x6b,0x23,0x32,0x9b,0x27,0x86,0x70,0x6f,0x7c,0xd8, +0xc4,0x84,0x84,0x84,0xf8,0x44,0x4e,0x98,0x49,0xe7,0xde,0xc0, +0xc3,0xd3,0xf6,0x69,0x73,0x7a,0xfb,0xf7,0x84,0xac,0x1f,0x33, +0x4d,0x12,0x1e,0x7e,0xc9,0xbc,0xc9,0x2b,0x7e,0x4b,0xe7,0xde, +0xdd,0x88,0x7f,0x8e,0x83,0x3a,0x37,0x0f,0xde,0x93,0x25,0xa2, +0x3a,0x25,0xf8,0xea,0x38,0x9a,0xcc,0x15,0xd5,0x5f,0xb2,0xe2, +0xd0,0x55,0xe4,0x6b,0x12,0x95,0x52,0xa9,0xc1,0xab,0x9b,0xb4, +0x4b,0xb9,0xdc,0xde,0xa9,0xe4,0xce,0xa7,0x6e,0x29,0x23,0x8a, +0x2c,0x83,0xf7,0xc0,0x01,0x96,0x52,0x9a,0x14,0x4e,0xf9,0x0f, +0x45,0x16,0xb9,0xea,0x71,0xde,0xb9,0xcb,0xae,0xb8,0x81,0x97, +0x35,0xe8,0xd4,0xeb,0x96,0x70,0x8a,0x50,0x3f,0x22,0xee,0xc2, +0xe3,0x0b,0x71,0x69,0x27,0x28,0x09,0x65,0xa8,0xd4,0x05,0x4b, +0x97,0x32,0xc6,0x94,0xb2,0xe8,0xe0,0x71,0x1c,0x8e,0x43,0xc1, +0x9a,0x85,0x75,0x68,0x4d,0x7e,0x05,0xd9,0x0a,0xb6,0xf7,0xcc, +0x01,0x72,0xd5,0xfd,0x92,0x7d,0xb7,0x6d,0x69,0x3d,0x6f,0xde, +0xa0,0xd5,0xac,0x53,0xc6,0x09,0x5c,0xef,0x3c,0x42,0x47,0x5d, +0xc4,0xfe,0xa8,0xc3,0x26,0x5a,0x29,0xc1,0x12,0xa6,0x2a,0x39, +0xa5,0x4a,0x4d,0x58,0x21,0x6e,0x13,0x8f,0xb1,0x82,0x86,0xd0, +0x8f,0xa0,0xf8,0x04,0x44,0xa6,0xd7,0x42,0x34,0x26,0xb7,0x3e, +0x77,0x80,0x4a,0xd1,0x27,0xf3,0x74,0xde,0x13,0x07,0xda,0x20, +0xb7,0x76,0x3a,0x05,0xb9,0x90,0x4c,0x40,0x5c,0x80,0x22,0x23, +0x69,0x16,0xdd,0x26,0x46,0x1b,0x30,0x55,0xda,0xae,0x4b,0x21, +0xce,0x2f,0xc6,0x3d,0xdd,0x90,0x2a,0x1d,0xa4,0x3c,0x73,0x0c, +0x4c,0x11,0x97,0x10,0x28,0xea,0x9d,0x85,0x45,0x30,0x95,0x35, +0xd7,0x56,0x37,0xc5,0x1f,0x6c,0x73,0xad,0xf8,0xdf,0x8b,0x2f, +0x95,0xca,0xab,0x39,0xe1,0x22,0x73,0x4c,0xeb,0x88,0xf1,0x3e, +0x5b,0xce,0x72,0xef,0xb6,0xbd,0x66,0x63,0xd6,0x33,0x31,0xd1, +0xa7,0xe2,0x33,0x54,0x6a,0x59,0xf3,0x78,0x25,0x03,0x94,0xb3, +0x3e,0xe1,0x51,0x45,0x6a,0x69,0x2c,0x4c,0x38,0x0d,0x7c,0xc2, +0x3f,0x45,0x5b,0xeb,0xf9,0xd9,0x7e,0x38,0x6c,0x0f,0x8e,0xdb, +0xcb,0xb5,0x9b,0x51,0x2f,0x6a,0x96,0xb1,0x95,0x7a,0xdb,0x0e, +0xfa,0x67,0xc7,0x4f,0x44,0xa9,0xc5,0x3b,0x29,0xdd,0x61,0x5e, +0x17,0x67,0xdc,0x8f,0x53,0x8b,0xbd,0x78,0xe2,0xd7,0xbf,0x54, +0xc4,0x2b,0x4c,0x4a,0x5a,0x62,0x5a,0x42,0x26,0x27,0x8c,0x85, +0x10,0xa2,0x2f,0xd6,0x5c,0x64,0x85,0x1a,0x1c,0x44,0x74,0xc5, +0x9a,0x2b,0x74,0xa1,0xa1,0xb0,0x8d,0x84,0x38,0x87,0x78,0x6e, +0xf7,0xd8,0x96,0x2f,0xa5,0xe0,0x3c,0x19,0x1e,0xbe,0x77,0x1f, +0x7f,0x38,0x8e,0xa9,0x3e,0x5f,0xfb,0x2c,0xfd,0x19,0x45,0x6d, +0x03,0xbf,0xe6,0xe0,0x54,0x96,0xc1,0x0e,0xd6,0x1f,0x87,0x2e, +0x41,0x35,0x9c,0x88,0x43,0x0b,0xad,0xf9,0xe6,0xba,0xca,0x9a, +0x82,0x2a,0x4e,0x9c,0xd4,0x21,0x2c,0xfa,0x96,0x83,0xf3,0x93, +0x94,0x83,0xd3,0xf8,0xf7,0xdc,0xda,0xb4,0xaa,0xd4,0xfa,0xd1, +0x30,0xdb,0xe1,0xbf,0x0c,0x60,0x27,0x35,0x80,0x1b,0xfb,0x0c, +0xa0,0xf7,0x5a,0x4b,0x43,0x53,0xc7,0x42,0x3b,0xfe,0xcc,0xe9, +0x33,0xd1,0x67,0xa2,0x39,0x5c,0x2e,0x19,0xc0,0xbb,0xff,0xbb, +0x01,0x5c,0x88,0xfa,0xac,0x9b,0xf4,0x50,0xf3,0x2c,0xfb,0x26, +0xe5,0x1f,0x6a,0x00,0xb7,0xd4,0xf1,0x06,0x1b,0x67,0x6e,0x9e, +0x4f,0x0d,0xe0,0x26,0x36,0x9e,0x4e,0xc1,0xff,0x69,0x00,0xb5, +0x39,0xa3,0xfd,0x7b,0xa8,0x01,0x9c,0xc7,0x24,0x4a,0x22,0x44, +0xff,0x0f,0x03,0xb8,0x04,0xde,0x51,0x83,0x87,0x8f,0x58,0x40, +0x69,0x16,0x22,0xbe,0x94,0xe2,0x69,0x05,0x4d,0x02,0xb2,0x66, +0x94,0xfd,0x06,0xcb,0x8b,0xea,0x40,0x0b,0x7d,0xee,0x19,0x6b, +0x4a,0x62,0xca,0xf5,0xbe,0x30,0x7f,0x39,0x1a,0x5a,0x83,0xa1, +0x06,0xfa,0x5b,0x09,0x7b,0x5a,0x70,0x23,0x83,0x8f,0x28,0xb8, +0x10,0x94,0x51,0xf5,0x77,0x58,0x24,0xc7,0x45,0x1f,0x65,0x13, +0x71,0x89,0x05,0x2c,0x59,0x86,0x63,0x45,0x65,0x18,0xbb,0x10, +0x35,0xcd,0x41,0x13,0x67,0xb4,0xc3,0x0c,0x58,0xd9,0x86,0x2b, +0x9f,0x48,0xe2,0x66,0x23,0x09,0xaa,0x5f,0x37,0xd6,0xc6,0xe9, +0x1f,0x84,0x01,0x4c,0xef,0x6a,0x5c,0x44,0xb0,0xbf,0x26,0xf4, +0xa7,0xa0,0x11,0xfb,0x93,0xc5,0xd0,0xff,0x11,0x83,0x01,0x94, +0xbc,0xdd,0x43,0x46,0x93,0x81,0xb1,0xc0,0x90,0x47,0xc8,0x2c, +0x96,0xa2,0xcf,0x3e,0x10,0x39,0x5c,0xb2,0xe8,0x82,0x46,0x71, +0x0d,0x36,0xb2,0x02,0x2b,0x79,0x94,0x31,0x78,0x49,0x42,0xb9, +0x8a,0xcb,0x52,0x60,0x85,0x5a,0x6f,0x22,0x12,0x93,0x2f,0xe3, +0xba,0x70,0x04,0xa3,0x27,0xa4,0x10,0x31,0x09,0x2c,0x85,0x24, +0x46,0x4c,0x12,0x65,0x04,0xac,0x84,0x24,0xb4,0x62,0x4d,0x07, +0xa1,0x17,0xad,0xf6,0x62,0x95,0x9f,0x4a,0xc0,0xab,0x49,0x58, +0xba,0x82,0x49,0x29,0x4e,0xae,0xea,0x03,0x5e,0x73,0x28,0xf0, +0x8a,0xa2,0xc0,0xcb,0x32,0x8a,0xdf,0x3e,0xd5,0x69,0xa6,0xfe, +0xca,0x32,0x4f,0x3e,0x21,0x59,0x49,0x48,0x47,0x7d,0xf2,0xee, +0x16,0x58,0x68,0xbd,0xbe,0xd3,0x8c,0x51,0x14,0xd3,0x9f,0x69, +0x66,0xab,0x37,0x90,0xca,0xb2,0xe2,0xca,0x9c,0xea,0x3c,0xa7, +0x62,0x97,0x2a,0x09,0xd3,0x3b,0x57,0xf8,0x54,0x6e,0x39,0x5b, +0x7d,0x2f,0xf3,0x8f,0xf8,0x3e,0x4c,0x1f,0x64,0x0e,0x6b,0xd8, +0x7d,0x9a,0x3b,0xb5,0x36,0xea,0x6d,0xee,0xde,0x71,0x29,0xec, +0x8e,0xfd,0x0e,0x3e,0x71,0x41,0xd6,0xf2,0x32,0xed,0x2d,0x4e, +0x3e,0xae,0xae,0x14,0xd3,0x4f,0x10,0x26,0x93,0x59,0x5a,0xaf, +0x59,0x34,0x73,0x25,0x7b,0x37,0x86,0xb8,0x05,0x79,0x73,0xf8, +0x3d,0x93,0x5a,0x94,0x5c,0x92,0x48,0xd7,0xa2,0xcd,0x64,0x32, +0x13,0xa7,0xbd,0x61,0xf1,0x2f,0xa4,0x36,0x96,0xbf,0x89,0x3c, +0x5b,0x3f,0x12,0xf8,0x3b,0xf4,0x0c,0xc1,0x15,0x64,0x9a,0xd6, +0x3b,0xe9,0xa3,0x1d,0x04,0x26,0xdc,0xc4,0x09,0xd2,0x47,0x13, +0xee,0xd0,0xb3,0xf0,0xc7,0x54,0x4a,0x06,0xfc,0x3f,0x1b,0x8d, +0x47,0x4f,0x73,0xf0,0xa4,0x03,0xb4,0x5b,0x26,0x14,0xb4,0xe3, +0x01,0x3a,0x4c,0x22,0x49,0x24,0x49,0xae,0x89,0x8e,0x71,0xb6, +0x35,0x89,0xfc,0xae,0xc6,0x9d,0xb5,0x3b,0xcb,0x39,0xac,0xc2, +0xa3,0xa4,0xe8,0x42,0xf6,0xc3,0x33,0xbf,0x3a,0xc4,0xf0,0xe1, +0xda,0xdb,0xd6,0xf8,0x50,0x30,0xb5,0x09,0x4c,0x49,0x82,0x55, +0xac,0xec,0x8c,0x5e,0x7d,0x1c,0xbf,0xf7,0xfc,0xae,0x8e,0xd0, +0x16,0x0e,0x95,0x77,0x91,0x28,0x83,0x88,0xb5,0xc7,0x75,0x1b, +0x4f,0xf3,0x47,0xaf,0x1d,0xbc,0xb2,0x4f,0x4a,0xd3,0xe9,0x2d, +0x64,0x12,0xe8,0xd2,0xc7,0x2e,0xf4,0x31,0x02,0x1f,0xb1,0xf4, +0xa2,0x50,0x0a,0x7b,0x7b,0xd8,0xde,0x46,0x31,0x86,0xba,0xd6, +0x23,0xd4,0xb5,0x76,0x4b,0xaa,0xa4,0xc7,0x24,0x5d,0x51,0x03, +0x21,0x1f,0x0c,0x18,0x65,0xa1,0x5e,0x78,0x4a,0x9e,0x83,0xad, +0x7a,0xe7,0xf3,0x3e,0x2a,0xfa,0xce,0x74,0x1a,0xda,0xbe,0x33, +0x9b,0x86,0x93,0xcc,0x61,0x92,0x3a,0xc5,0xcb,0x38,0x80,0x32, +0x96,0x7d,0xbf,0xec,0x09,0x0f,0xdb,0x43,0x19,0xcb,0x77,0xa0, +0xdc,0x86,0xca,0x60,0x6c,0x4a,0xf1,0x7e,0x5f,0xca,0x38,0x8a, +0xf7,0xdd,0x70,0xfc,0x6c,0x24,0x52,0xca,0xb8,0x7f,0x72,0x3f, +0x45,0xf6,0x11,0xb1,0x4e,0x21,0xe5,0x1b,0x11,0xbb,0x85,0x93, +0xca,0xaa,0x94,0x60,0x31,0xec,0x20,0x6e,0x38,0xd4,0x68,0xfe, +0xca,0x35,0x39,0xe6,0x7c,0x51,0x41,0x76,0x7e,0x5a,0x3e,0x27, +0x4e,0xed,0x12,0x42,0xd9,0xcc,0xea,0x8c,0xc6,0x34,0x39,0x07, +0x26,0x62,0x3b,0x71,0x3f,0x10,0x5d,0xa1,0x06,0xbe,0xec,0xa3, +0xba,0x7b,0xed,0x17,0xcf,0x79,0xd5,0xf2,0x26,0x32,0x3d,0xfb, +0x75,0x6e,0x1c,0xec,0x36,0xc6,0x64,0xd6,0x27,0xc4,0x27,0xd4, +0x3b,0x2c,0x51,0xc6,0xe7,0xc5,0x50,0x1e,0x1d,0xc7,0xa1,0x25, +0xab,0xdd,0x97,0x82,0x69,0x04,0xd3,0x90,0x24,0xed,0xa2,0x9f, +0xce,0x5a,0x24,0x2a,0xa1,0x16,0x05,0x35,0x6d,0x7d,0x32,0xad, +0xba,0xba,0x9d,0x57,0x60,0x5a,0x33,0x4e,0x7b,0x60,0xaa,0x81, +0xba,0xd2,0x61,0xbe,0x35,0xcc,0xd7,0x65,0x71,0x3b,0x6a,0x91, +0xfd,0x09,0x52,0x34,0xf0,0x1e,0xe9,0x8d,0xae,0xca,0xc7,0xd6, +0x89,0x5f,0x37,0xc6,0xff,0x64,0x09,0xdf,0x7d,0xdd,0x18,0x3f, +0x79,0x49,0x5f,0x3e,0xed,0x4b,0x7f,0x67,0xfe,0x1d,0xf1,0x82, +0xf6,0x29,0xa9,0x8f,0xc3,0xf4,0xbd,0xce,0xbd,0x8c,0xf3,0x28, +0x87,0x11,0x44,0x18,0xde,0x27,0xe8,0xda,0x24,0x5e,0xb7,0x79, +0x80,0x83,0x26,0x59,0xff,0x8d,0x9c,0x86,0x0d,0xc4,0xce,0x94, +0x04,0x10,0x2a,0x70,0x7e,0x27,0xcc,0x87,0x94,0x56,0x4c,0x79, +0x03,0x31,0x4d,0x2b,0x80,0x7b,0xcf,0xe0,0x8b,0xaf,0x82,0xae, +0x43,0x25,0x7d,0x18,0x9d,0xff,0x21,0xe8,0xaa,0x6f,0x4d,0x90, +0xa3,0xd5,0x9c,0x54,0xcd,0x11,0xe0,0x68,0x35,0xc7,0x2a,0x7f, +0x61,0x22,0x08,0x1e,0x62,0x4c,0xc3,0x63,0xcf,0xa9,0x81,0x13, +0x38,0x42,0x3e,0x6e,0x61,0x53,0xcb,0x12,0x2b,0xe2,0xab,0x38, +0x88,0x63,0x50,0xe3,0xc8,0xec,0xfd,0x4b,0x54,0x75,0x0f,0x84, +0xef,0xb0,0x1f,0xb3,0x41,0x8a,0x95,0xe9,0x60,0xae,0x97,0x94, +0xff,0x15,0xad,0x16,0xfd,0xf6,0xd4,0x7b,0xf0,0x54,0xc1,0x0e, +0x26,0xba,0x20,0xaa,0x28,0xb2,0x48,0x16,0xcf,0x07,0xe2,0xcf, +0x8e,0xe3,0xd7,0xcc,0xaa,0xb1,0xe5,0x53,0xb3,0x92,0x73,0x12, +0x73,0x39,0x6f,0xd0,0xc6,0xa5,0xe8,0x82,0x89,0xec,0xd4,0xf4, +0x2d,0x7f,0xa9,0x42,0x38,0xd3,0x98,0x92,0x42,0xc7,0x70,0x98, +0x94,0xc0,0x52,0x5c,0x76,0x8b,0xc0,0x41,0x5c,0xf0,0x10,0x06, +0xc0,0xd4,0xfb,0xf2,0xa5,0x52,0xea,0xe0,0xc5,0xbf,0x99,0x2c, +0x5f,0x6e,0xf1,0x1b,0x4e,0x85,0x7e,0x4b,0x70,0x3e,0x1e,0x84, +0xf9,0xf3,0xd0,0xca,0x1c,0xac,0x50,0xbd,0x07,0xd4,0x41,0xb7, +0x0d,0x75,0x5f,0xb0,0x2d,0x82,0x3f,0x99,0x83,0x8b,0xff,0x60, +0x9b,0xb1,0x8c,0xe0,0xd8,0x49,0x30,0x96,0x85,0x85,0x38,0x96, +0xc0,0xd8,0xbf,0x71,0x2c,0x35,0xe3,0x17,0xbf,0xbd,0x49,0x0f, +0xdb,0x1b,0x26,0xb1,0x47,0x15,0x18,0xd5,0x81,0xa3,0xbe,0x6e, +0x93,0x9b,0x6d,0x06,0x93,0x98,0xdd,0xf8,0x93,0xb3,0x94,0x51, +0x68,0x4c,0x95,0x1d,0xff,0x10,0x06,0x7e,0xdb,0x26,0x57,0xd2, +0x25,0x44,0x7c,0xdb,0x0a,0xf0,0xa7,0xb4,0x4d,0x4e,0x49,0xa8, +0xba,0x49,0xda,0xf1,0x38,0xe8,0xc3,0xf6,0x76,0xdc,0x0e,0x2b, +0x4c,0x28,0x66,0x19,0xc4,0xc6,0xd7,0x9c,0x39,0x1b,0x55,0x6d, +0x79,0x86,0x0f,0xc6,0xfe,0x1e,0x38,0xd0,0x7c,0x69,0xbd,0x1f, +0x9f,0x5d,0x91,0xd9,0x90,0xd2,0xc2,0xc1,0x28,0x8a,0xd2,0xf6, +0xcb,0x60,0x13,0xe3,0x89,0x9c,0x24,0x41,0xc0,0x4f,0x29,0xb3, +0xe1,0xa5,0x47,0xfd,0xd7,0x5f,0x67,0xf4,0x09,0x19,0xce,0xea, +0x12,0x66,0x45,0x31,0xe9,0x48,0xba,0x17,0xc0,0xcf,0x38,0xb4, +0xbc,0x85,0xc7,0x9f,0x3e,0x2f,0x05,0x25,0x6f,0x50,0x92,0x1e, +0xae,0x2b,0x8e,0x91,0xd8,0xdc,0xe8,0xbc,0xc8,0x0c,0xc3,0x33, +0xfc,0xc1,0x80,0x70,0xdf,0x70,0x7f,0x89,0x1f,0x2c,0x83,0x2f, +0xc2,0x32,0x46,0xcc,0x12,0x47,0x11,0x78,0xcf,0x36,0x46,0x75, +0xc5,0x56,0xc6,0x6f,0x6f,0xe5,0xad,0x43,0x8c,0xf6,0xac,0xdc, +0xcf,0x89,0x36,0x60,0xde,0xc1,0x0a,0x26,0xc2,0x34,0x62,0x06, +0x3f,0xe1,0x7b,0xfc,0xc9,0x0c,0x4c,0x05,0x17,0x16,0x1b,0xd0, +0x86,0x60,0x38,0xfc,0x44,0xc7,0x1c,0xc3,0x51,0x87,0x40,0x38, +0xfe,0x8c,0xe1,0x8c,0x10,0x22,0x0e,0x26,0xb8,0x8c,0x71,0xd9, +0x1b,0x5d,0xa5,0x06,0x5b,0x0c,0x70,0x17,0xbb,0x2e,0x37,0x80, +0x4e,0x6f,0x1d,0xa6,0x21,0x2d,0xad,0x5e,0x9a,0xde,0x06,0x89, +0x4a,0xbd,0x05,0x52,0xb6,0xdc,0xa0,0x4b,0xcf,0x60,0x60,0x14, +0x68,0x1a,0x9c,0xe2,0x0f,0xa1,0x8a,0xb1,0x3a,0x06,0x1a,0xd0, +0x66,0x7e,0xaf,0xd8,0x46,0x82,0xed,0x74,0x37,0xe1,0xf2,0xb0, +0x78,0x47,0x1e,0x6c,0x13,0x1e,0xd4,0xa7,0x4a,0x69,0x6b,0xac, +0x19,0xfb,0xe4,0xdd,0x72,0x55,0x98,0xc9,0x54,0xc5,0xc4,0xe5, +0xaa,0xe5,0xb3,0xe6,0x31,0x4a,0xce,0x38,0x82,0xdd,0x78,0x38, +0x22,0x5d,0xad,0x0e,0x8e,0xaf,0xed,0x82,0x21,0xe2,0xac,0x4e, +0x63,0x53,0x71,0x2c,0x0e,0xe9,0xba,0xc1,0x0a,0xaa,0x92,0x70, +0x58,0x6d,0x15,0xd6,0xb6,0x18,0x5a,0x61,0x9e,0x2b,0xe4,0xb9, +0x89,0xd3,0x5d,0xbe,0x0c,0xad,0x16,0x97,0x32,0x07,0x29,0x79, +0x2c,0x81,0x9b,0xb0,0xbe,0x77,0x1d,0xae,0x87,0x73,0xde,0xf8, +0x0e,0x8f,0xf6,0xd4,0x43,0xf9,0x6e,0x56,0x3f,0x29,0xf8,0xbe, +0x2a,0xdc,0x65,0x2a,0x93,0x28,0x51,0xbf,0xca,0x9a,0x26,0x28, +0x81,0x26,0x2b,0x6a,0xc2,0x24,0x82,0x27,0x4a,0xe1,0x04,0xd3, +0xed,0x45,0x4a,0x21,0xce,0x8b,0x15,0x2f,0xf9,0x12,0x38,0xe1, +0x8a,0x27,0x18,0x38,0x57,0x45,0x20,0xce,0x15,0xe3,0x18,0x63, +0x49,0x90,0xb7,0xbc,0x06,0xca,0x19,0x90,0x36,0xa7,0xc8,0x6b, +0x40,0xce,0xf4,0xaa,0x2c,0x27,0x50,0xee,0x88,0xe5,0x8c,0x42, +0x65,0x24,0xca,0x6b,0x69,0x15,0x46,0x20,0x4f,0x5c,0xf7,0x9f, +0x2e,0x51,0x8b,0x02,0xb4,0xe9,0x13,0x62,0x3c,0x46,0xee,0x18, +0xad,0xc2,0x54,0xe9,0x70,0xcc,0x1c,0x8e,0xad,0xe9,0xb9,0x49, +0x51,0x8d,0xe3,0x3a,0x6c,0xb2,0x65,0xed,0xcb,0x0c,0x2a,0x6d, +0xb2,0xbd,0xed,0xf9,0x6e,0xff,0xf3,0x2e,0x72,0xd7,0xe2,0x3a, +0x7e,0x5f,0x94,0x12,0x9c,0x5d,0x81,0x91,0x62,0x6c,0x37,0x9d, +0x3c,0x16,0xa8,0xd9,0x0d,0x9a,0xe0,0x82,0x43,0x71,0x30,0x13, +0x6f,0xa5,0xf4,0x8a,0x69,0x4c,0x4d,0x69,0x54,0x13,0xf4,0x30, +0xf9,0x57,0xe8,0x92,0x63,0x57,0x47,0xdd,0x4d,0x48,0x6c,0x63, +0x75,0xa4,0x74,0xb1,0xd9,0x4e,0x99,0x3e,0x89,0xde,0x6e,0x7c, +0xd5,0x8e,0xd2,0xa0,0xf2,0xcd,0x9c,0x78,0x0f,0x4f,0x10,0xa3, +0x06,0x83,0x32,0xc3,0x62,0x1f,0x1b,0xfe,0x92,0x77,0xa7,0xdf, +0x79,0xca,0x5c,0x3f,0xa5,0x11,0xb4,0x78,0x06,0x16,0x4c,0xf7, +0x7c,0xf2,0x0c,0x5c,0xe6,0xb3,0xa2,0xa3,0x0d,0x01,0x8b,0xb9, +0x68,0xc1,0x40,0xe4,0x4b,0x02,0x2e,0x73,0xd1,0x45,0x8a,0x2b, +0x0c,0x22,0xd7,0x6e,0xdc,0x85,0x41,0x67,0xef,0x39,0x14,0xf1, +0x36,0x8b,0x57,0x4f,0xd2,0x95,0x12,0xe3,0xa2,0xe2,0x3e,0x59, +0xad,0xb3,0xd8,0x0a,0x67,0x58,0xe4,0x59,0xf2,0x30,0xbb,0xf3, +0x8f,0xf6,0xdf,0x7f,0xe5,0x84,0xb3,0x38,0x91,0xe0,0x77,0xb7, +0x66,0xca,0x71,0x60,0x93,0x27,0xbd,0xab,0xac,0xec,0x9d,0x39, +0x0c,0xd2,0xe6,0xf0,0x9f,0x30,0x52,0x97,0x5f,0x51,0x54,0x54, +0x66,0x57,0xc2,0x7b,0x7b,0x38,0xf9,0x58,0xfb,0x5b,0xe5,0x39, +0x15,0x79,0x94,0xd8,0x7b,0xf2,0x25,0x3e,0x95,0xfe,0x75,0x52, +0xce,0x34,0xfc,0xd9,0x05,0x97,0xf8,0x26,0x9b,0xf3,0xa0,0x5b, +0x06,0xb3,0x1b,0xe1,0xbb,0xf3,0x30,0xd4,0x08,0xa6,0xdb,0xc3, +0x7a,0xb7,0x24,0x39,0x8f,0x1a,0x25,0x38,0xa6,0x66,0x5c,0x33, +0x07,0x2f,0xf1,0x5f,0xd2,0x21,0x0e,0x7d,0x07,0x7b,0xda,0xc5, +0x44,0x19,0x04,0x4c,0xc3,0x7f,0xcd,0xe0,0x5f,0xdc,0x2a,0x4e, +0x33,0xfd,0xf2,0x5d,0xa7,0xb8,0x04,0xb6,0xb2,0xf8,0xc4,0x91, +0x94,0x59,0x17,0x9b,0xe7,0xca,0xda,0x72,0xf9,0x2d,0x72,0x8f, +0x6e,0xaf,0x7a,0x4e,0xb0,0x42,0x19,0x29,0xaf,0xab,0xbc,0x92, +0x29,0x97,0xa5,0xf1,0xdb,0xac,0xdc,0x0d,0x3c,0x9d,0x38,0xe5, +0x2f,0x8e,0xc2,0xf7,0xa4,0xc9,0x02,0x66,0xe3,0x92,0x97,0xe0, +0xd8,0x8c,0xeb,0xd9,0xd4,0xbc,0x94,0xa2,0x84,0x02,0xcb,0x74, +0x3e,0xd4,0x23,0xc8,0x7d,0xab,0x07,0x87,0x77,0xad,0x61,0xe6, +0x5c,0x54,0xb1,0x06,0x95,0xc9,0xb8,0xc0,0x06,0x16,0xe0,0x40, +0x54,0xb1,0xa1,0xb4,0xdc,0x6f,0xfd,0x06,0x5d,0x0d,0xa3,0x3c, +0x2b,0xfe,0xd5,0xb5,0xae,0x6b,0x67,0x1e,0x72,0x51,0x98,0xda, +0x06,0x67,0xff,0xc2,0xb3,0x72,0x48,0x8d,0x62,0xce,0x2c,0x93, +0xeb,0x7d,0x5e,0x91,0xd7,0xcc,0xcf,0xbd,0x6a,0x74,0xc9,0xff, +0x1c,0x07,0xe3,0x61,0x11,0x83,0x97,0x84,0x21,0x64,0x57,0x5e, +0x60,0xf1,0x8e,0x0c,0x49,0x77,0x7c,0x5b,0xba,0x77,0xe2,0x26, +0x0e,0xef,0x5d,0x21,0x31,0x8b,0xce,0xea,0x3d,0x5c,0x56,0xd8, +0xca,0xaf,0xbe,0xee,0x7c,0x2d,0xf8,0x06,0xb7,0x86,0x09,0x5a, +0xe5,0xb1,0x62,0xa1,0x14,0x69,0xf0,0xf8,0x46,0xe3,0x93,0xb8, +0xa7,0x9c,0x10,0x84,0xc3,0xc8,0xdc,0xc9,0x2f,0x59,0x3a,0x23, +0x9e,0x10,0xff,0x7d,0x3e,0xfb,0xbc,0xf6,0x4b,0x21,0x07,0x7d, +0x69,0x51,0xbf,0x7b,0xd8,0x8a,0x1b,0x2d,0x7f,0xc5,0xef,0x50, +0xc5,0x1c,0x54,0x90,0xe2,0xbd,0xbd,0x36,0x7b,0xed,0x0f,0xc4, +0x98,0xf0,0xef,0x92,0x60,0x48,0xee,0xed,0x2c,0x7a,0xbb,0x85, +0xa3,0x64,0xf2,0xe4,0xbf,0x58,0x48,0x9e,0x4c,0x71,0xd3,0x5f, +0xd0,0x9f,0xc1,0x64,0x9c,0x45,0xfe,0xc2,0x81,0x93,0x19,0x98, +0x07,0x03,0x09,0xf4,0x97,0x5e,0x40,0x33,0x94,0x75,0xab,0x92, +0xf8,0xf6,0x98,0xee,0xa8,0x76,0x87,0x33,0xfc,0x01,0xc3,0x7d, +0xb2,0x30,0x6b,0x8e,0xb2,0xb6,0xe9,0x24,0x43,0x96,0xae,0x19, +0x63,0xd4,0x98,0xc0,0x87,0x77,0x6f,0x7b,0xbc,0xad,0x9d,0xfa, +0x70,0x03,0x05,0xc5,0x47,0x3b,0x5b,0x70,0xe7,0x23,0x53,0xdc, +0x81,0x3f,0x83,0x81,0x19,0x1a,0x8c,0xb7,0x12,0xfe,0xa3,0x05, +0xe3,0x19,0xb1,0x4b,0x7c,0x45,0x1d,0xf9,0x22,0xc5,0x7c,0xdc, +0xd4,0x9b,0xc8,0xc2,0x12,0x58,0x48,0xc6,0x0b,0x9d,0x9f,0x19, +0xd8,0xdd,0x3b,0x8e,0x3c,0xbf,0x59,0xdf,0x13,0x79,0x95,0x0e, +0xd9,0xb6,0x56,0xd8,0x16,0xc5,0x44,0xea,0xd6,0x18,0xbd,0xd2, +0x2a,0x3e,0xcb,0x6b,0x9c,0x73,0x68,0xde,0xdc,0xc6,0x81,0x6a, +0x23,0x6a,0x80,0xae,0x39,0xe5,0x8e,0x4b,0x6d,0x41,0x8d,0x09, +0x90,0x59,0x5b,0x2d,0xa3,0xf0,0xe2,0x83,0xf0,0x23,0x09,0xf1, +0x08,0x70,0xda,0xec,0x5b,0xb9,0x99,0xcf,0x2f,0xc9,0xae,0x49, +0xad,0xe6,0xf0,0x3f,0x0e,0x93,0x6c,0xef,0x1c,0xc7,0x64,0xcf, +0xea,0x2c,0x3e,0xa4,0x74,0x53,0xc3,0xd6,0x22,0x4e,0x5d,0xdc, +0x48,0x04,0x7f,0x33,0xf1,0x5e,0x47,0xb7,0x60,0x67,0xda,0x29, +0xfc,0x66,0x2a,0xfa,0x53,0x1f,0x25,0xfb,0xff,0xc8,0x90,0x6e, +0xf2,0x35,0x43,0x7a,0xf8,0xff,0x65,0x86,0x74,0xb1,0x51,0x70, +0x21,0xf8,0xb4,0x77,0x59,0xdb,0xe3,0x47,0x58,0xd6,0x06,0x65, +0x30,0x8e,0x41,0x2b,0xa1,0x80,0xa0,0xeb,0x62,0x70,0x65,0x61, +0xfb,0x48,0x74,0x5d,0x48,0x0b,0xc2,0xcd,0xcd,0x64,0x15,0x5e, +0xbb,0xc3,0xc2,0x35,0xfc,0x81,0x2c,0xc3,0x6b,0xbf,0xb3,0x78, +0x11,0x07,0x12,0xf4,0x59,0x0c,0x3e,0x7d,0xbf,0xe6,0xb3,0x90, +0x16,0x84,0xad,0xd8,0xf2,0x2d,0x13,0x7a,0x75,0x32,0x1f,0x56, +0x11,0xdc,0x12,0x42,0x31,0xc7,0x20,0x6a,0x3e,0x6b,0xae,0xe5, +0x3c,0x8d,0xb9,0x61,0x13,0xcb,0x87,0xe9,0x05,0x6a,0x3a,0x1b, +0x70,0x90,0x4f,0x79,0x59,0xa2,0x4d,0x82,0x59,0xb4,0xac,0x31, +0x8e,0x0f,0x6f,0x0f,0xed,0x08,0x69,0xe0,0x70,0xe6,0x6e,0x12, +0xdb,0x97,0x09,0xbd,0x55,0xca,0x84,0xbe,0xaf,0x2f,0x13,0x3a, +0x24,0x0b,0x4e,0xe4,0x20,0xf0,0xf0,0x63,0x3b,0xfe,0xf8,0x15, +0x06,0x4d,0x93,0xd1,0xc1,0xdc,0x8d,0x3f,0xba,0xe0,0xb8,0xa9, +0xc8,0x57,0xda,0xf1,0xf7,0xa0,0x7f,0xc1,0xe7,0xc8,0x6f,0x99, +0x73,0x4f,0x7e,0xc3,0x0c,0x4f,0x51,0xbd,0xa2,0x72,0x09,0x4c, +0xdf,0x2b,0xed,0xef,0x0e,0x1f,0xad,0xd0,0x80,0xdf,0x88,0x78, +0xd5,0x18,0x52,0x99,0x30,0xc7,0x60,0x8b,0x20,0x7b,0x0e,0x57, +0xf5,0xce,0xee,0xb9,0x06,0xe2,0xba,0x73,0x8a,0xd9,0x78,0x8c, +0x49,0xad,0x4b,0x91,0x27,0xd4,0x71,0xb0,0x9f,0x11,0x7d,0xc4, +0x59,0x12,0xad,0x17,0x29,0xad,0x47,0x11,0x73,0x08,0x6c,0x04, +0x29,0x78,0xed,0x1b,0xa3,0xfb,0x96,0x16,0xe1,0x94,0x0c,0x4e, +0x49,0xb9,0x12,0xfa,0x12,0x26,0xa4,0xb5,0x63,0x1a,0x83,0x3f, +0xa1,0x82,0xfc,0x55,0xf3,0xa6,0xad,0xbd,0x85,0xab,0xed,0xfd, +0xd9,0x52,0xa8,0x65,0x9d,0x7c,0x16,0x3a,0x2f,0xf1,0xd3,0x2b, +0xd1,0x2f,0x72,0x4a,0xf5,0x72,0xe5,0x2f,0x6c,0xbc,0xed,0x79, +0xdb,0x95,0x13,0x75,0x2c,0x84,0xf1,0x8c,0xfe,0x3c,0x1c,0xbb, +0x04,0x3d,0x17,0xd0,0xd5,0x01,0x11,0x30,0x10,0xc8,0xeb,0x82, +0xf7,0x74,0x2e,0x9d,0x43,0x6d,0xe9,0x71,0x0d,0x4c,0x65,0x5a, +0xd2,0x53,0x5b,0xd4,0x40,0x0e,0x55,0xac,0x87,0xcd,0x5a,0x5d, +0x7d,0xd7,0x6a,0x17,0xfe,0x5e,0xd7,0x6f,0xb7,0xea,0x7e,0xe3, +0x6a,0x90,0x52,0x34,0x85,0xae,0xd4,0x9a,0xf5,0x98,0x7f,0x99, +0x1e,0x0e,0x9a,0xc3,0x41,0xdd,0x9e,0x2b,0x90,0x2f,0x1d,0x62, +0xda,0x30,0x86,0xc1,0x10,0x5c,0x4a,0x44,0x15,0x5c,0xdc,0x0d, +0xfd,0x14,0x41,0xd8,0xaf,0x1b,0x16,0x8b,0x33,0xee,0x1a,0x32, +0x18,0x85,0xfb,0x88,0xf0,0x5b,0x8b,0xf8,0x1b,0xa3,0x50,0x12, +0x29,0xe1,0xed,0xe8,0x9d,0x89,0xd4,0x6b,0xbe,0x85,0x75,0x44, +0x2c,0xbf,0x2d,0x94,0x33,0x62,0x39,0xfe,0x48,0x84,0xf2,0xd5, +0x22,0xf5,0x03,0xee,0xa8,0x47,0xda,0xfe,0x1d,0x69,0x4e,0x11, +0x5e,0x06,0xbc,0x21,0x87,0xfe,0x04,0x95,0x76,0x54,0x81,0x17, +0x66,0xf8,0x02,0xc7,0xcb,0x80,0x67,0x76,0x49,0xc9,0x4b,0x07, +0xad,0x9c,0x56,0x6c,0xc9,0x5f,0xff,0xa3,0xf8,0x45,0xd4,0x63, +0x7a,0x17,0xe6,0x74,0x08,0x84,0x89,0x3c,0xf1,0xcb,0xa9,0x43, +0xaa,0xaf,0xd0,0xb8,0xa2,0x6a,0x26,0x18,0x1e,0x8c,0xd9,0x7f, +0x82,0xde,0x05,0xb0,0xa5,0x28,0xba,0x35,0xfa,0xea,0x09,0x0a, +0x3f,0x57,0x41,0x39,0x1e,0x30,0x05,0x7d,0x5c,0x85,0x9a,0xcc, +0x91,0x19,0xe1,0xd3,0x77,0xcd,0xe6,0xc0,0x81,0x39,0xb6,0xec, +0xd0,0xd2,0xbd,0x46,0x9c,0xfd,0x81,0xdd,0x61,0x36,0x63,0x28, +0x21,0x88,0x37,0x54,0x82,0x1f,0x99,0x9b,0x39,0x39,0x77,0x63, +0xd4,0x62,0x1f,0x44,0x7c,0x3a,0x01,0x03,0xb8,0xde,0xb1,0xb0, +0x82,0x40,0x19,0xee,0x34,0xa3,0x04,0x6d,0x25,0xce,0x66,0x0f, +0xcd,0xdc,0x3b,0x2b,0x74,0x2e,0x85,0xb4,0x8c,0xc6,0xa1,0x25, +0xfb,0x4c,0x54,0x1d,0xf7,0x87,0x85,0xb9,0x4b,0xc2,0x8b,0x46, +0x4a,0xcf,0x98,0x73,0x39,0x59,0xb7,0x62,0xd4,0x62,0x6e,0x45, +0xbe,0x3f,0x0e,0x84,0x43,0x3d,0x26,0xba,0xf9,0xf4,0xa5,0x13, +0x2d,0x9c,0xb0,0x19,0x72,0x48,0xd8,0xaa,0xa0,0x65,0x41,0x06, +0x67,0xb7,0xf2,0xe9,0x17,0x33,0x1f,0x27,0xdc,0x96,0x36,0x4f, +0xd9,0x93,0xdd,0xd7,0x83,0x7e,0xdf,0x71,0xd1,0x6e,0x3b,0x9f, +0xaa,0x9f,0xba,0x32,0x61,0x2d,0x75,0xf4,0x53,0x14,0x77,0xc9, +0x2e,0x1c,0xb6,0x09,0x47,0xdb,0x21,0xbf,0xfe,0xf7,0x75,0xb7, +0xd6,0x5c,0x76,0xb2,0xe7,0x7f,0x5f,0x73,0x7b,0xe9,0x8d,0xf9, +0x66,0xa8,0xb2,0x02,0xf9,0x09,0xc8,0xd6,0x49,0xc9,0xc1,0x94, +0x7e,0x83,0x11,0x5d,0xc0,0xcb,0xd7,0x35,0xaf,0x6e,0x5c,0xd6, +0xd4,0xc0,0x9b,0x3f,0x31,0xb9,0x6f,0xf4,0x6b,0x17,0x4c,0x2f, +0x86,0x99,0xf1,0xf0,0x33,0x27,0x0c,0xe9,0xed,0x22,0x68,0xc5, +0x24,0x19,0x28,0xc1,0x2a,0xa6,0x25,0x35,0xad,0x55,0x4d,0xd1, +0xa8,0xcf,0xe2,0x41,0x4b,0xd2,0xfb,0xc3,0x05,0xc5,0x0f,0xff, +0xbf,0x39,0x56,0x6c,0x7b,0xb7,0x90,0x64,0x23,0x25,0x58,0xcb, +0x34,0x25,0x49,0xb1,0x70,0x97,0x0d,0xc4,0x1b,0xac,0x18,0x08, +0x29,0xa4,0xe9,0x65,0xe9,0xeb,0x8c,0x3f,0x8c,0x53,0xf8,0x60, +0x4d,0xbf,0x85,0x8e,0x8b,0x75,0x2e,0xe8,0x74,0x1a,0x57,0xbb, +0xd9,0xf3,0xe7,0x1d,0x6e,0x18,0xde,0xd0,0x33,0x9e,0xbc,0x72, +0xfa,0x2c,0x8d,0x7a,0x7b,0xfe,0xd5,0xe3,0xbb,0x7f,0xf6,0x7c, +0xe8,0x36,0xe9,0x34,0x6a,0x30,0xad,0xab,0xe5,0xad,0x7a,0x0c, +0x2f,0xe9,0x9d,0xe7,0x20,0x0c,0x92,0x89,0xb8,0xf2,0xbc,0xb0, +0x92,0xda,0x98,0x9f,0x22,0xc9,0x38,0xc6,0x65,0xd7,0x89,0x9a, +0x93,0x6a,0xf9,0x42,0x8c,0x92,0xb8,0x98,0x39,0x23,0x3f,0xdd, +0x1a,0xd9,0xc0,0x09,0x57,0xba,0xff,0x1d,0x64,0x0c,0x87,0x99, +0x2d,0xe8,0x61,0x86,0x05,0x32,0xb4,0xf3,0x38,0x4c,0x7f,0x8e, +0xc4,0x18,0xf1,0x60,0x99,0x02,0xce,0x79,0xb0,0xa8,0xf0,0x70, +0x27,0x8f,0x4a,0xdb,0x71,0x74,0x30,0x8e,0x0d,0x2d,0x81,0x91, +0xe5,0xb0,0x3a,0x0f,0x96,0x70,0xd0,0xcb,0x6c,0x16,0xfd,0x94, +0x74,0x0e,0x97,0x6c,0xbf,0x33,0xe6,0x1d,0xd3,0x95,0x96,0xd2, +0x23,0xa5,0x75,0x31,0x4e,0x54,0x12,0xa3,0x61,0x25,0xe9,0x34, +0xbb,0xb2,0xa8,0x71,0x6d,0x43,0x05,0x6f,0x7b,0x5d,0xeb,0xb9, +0xac,0x85,0xda,0xe5,0xa1,0x0a,0x7d,0x92,0x58,0x13,0x5f,0x1b, +0x5b,0x6f,0x12,0xc3,0xfb,0xe3,0x70,0xbb,0xc9,0x5a,0x93,0x6b, +0x9d,0xf8,0x8a,0xe6,0xa2,0x8e,0xdc,0x1e,0x0e,0xde,0x77,0x33, +0xe2,0x11,0xd1,0x95,0x50,0xf2,0x3e,0xf7,0x19,0x58,0xca,0xd1, +0xf2,0xbd,0xe9,0x54,0x34,0xb1,0x00,0x93,0xf9,0x38,0x13,0x11, +0x66,0x4e,0x47,0x2b,0x19,0x05,0xcb,0xb3,0x3a,0x61,0x16,0x18, +0xb5,0xa3,0xd1,0x5b,0xf6,0x2d,0x74,0x91,0xe9,0x78,0xf2,0x2d, +0x2b,0x24,0x89,0x45,0xc4,0x60,0x67,0x42,0x59,0x59,0x71,0x5d, +0x41,0xa9,0x5a,0xfb,0x05,0x4a,0xb3,0x46,0xfc,0xf9,0x86,0x6b, +0xc0,0xcf,0xa6,0x90,0xcc,0x6a,0xeb,0x4c,0x44,0xc6,0xdc,0x88, +0x73,0xb0,0xf4,0x30,0xb1,0x55,0xd1,0xaf,0xf2,0x78,0xa3,0x0a, +0xc1,0x5f,0x65,0xae,0x40,0x4f,0x4a,0x6e,0x8e,0x4e,0x6c,0x6f, +0xa8,0x40,0x31,0xe8,0xc9,0x09,0x78,0x92,0x51,0x86,0x70,0xc5, +0x63,0xe2,0x8c,0x96,0xfa,0x38,0x61,0x12,0x72,0xe5,0x56,0x7c, +0x7e,0x41,0x41,0x55,0x7e,0x23,0x27,0x16,0x75,0x2b,0xc6,0xb3, +0x85,0x37,0x73,0x1f,0xa6,0xbc,0xe4,0x3a,0x7c,0x08,0xbe,0xa5, +0x14,0xf0,0x2d,0x2b,0xfa,0x62,0x25,0xf5,0x38,0xc2,0x0c,0xdc, +0xc9,0x8a,0x8b,0xa5,0x27,0x00,0xfa,0xfe,0x53,0x70,0xf0,0x62, +0xd5,0x72,0x6b,0x25,0x18,0xfd,0xba,0x0c,0x7e,0x04,0x5b,0x95, +0x4a,0x63,0x56,0x88,0x12,0x47,0x10,0x13,0x26,0x70,0x6f,0x64, +0xb6,0x1a,0x7c,0x32,0x42,0x60,0xf5,0x73,0xb7,0x77,0xab,0x76, +0x31,0xf5,0xc9,0xc9,0x14,0x9c,0x2e,0x63,0xcd,0x52,0x94,0x30, +0x17,0xf7,0x13,0x61,0xa5,0xb1,0x48,0xef,0x9a,0x60,0x2f,0xdc, +0xa6,0x28,0xfd,0x57,0xe8,0x4f,0xd7,0xfb,0xcf,0xe7,0xc0,0xa6, +0xf7,0x2f,0xb4,0xe9,0xd8,0xcc,0x2a,0xf4,0xde,0x10,0x23,0x24, +0x18,0x25,0x83,0x28,0xfc,0x1b,0xa7,0xf6,0x3d,0x90,0x1f,0xc9, +0xd4,0x25,0xc7,0x34,0xab,0xc1,0x9f,0x30,0xa2,0x9d,0x02,0x53, +0x04,0xb1,0x84,0xd8,0x85,0xc6,0x53,0x3e,0xf2,0xe8,0x4d,0xbb, +0x68,0x28,0x03,0xc6,0x8c,0x45,0x99,0xfb,0xe2,0x19,0x33,0x55, +0xab,0x6d,0x94,0x80,0x85,0x41,0x55,0xd4,0x46,0xb9,0xa8,0x34, +0xff,0x83,0xef,0x58,0xad,0x3c,0xbf,0x87,0xaa,0xc2,0x52,0x69, +0x4f,0x0c,0x05,0xce,0x43,0x58,0xe3,0x64,0x25,0x54,0x63,0x51, +0x17,0xe2,0xc9,0xc6,0x16,0x8b,0x9b,0x6e,0x95,0xce,0x7e,0x7c, +0xb9,0xab,0x7c,0x4d,0x81,0x65,0x5f,0x42,0xbe,0x0a,0x22,0xc7, +0xea,0x07,0x60,0xdb,0x8a,0xb6,0x77,0xc1,0xbf,0xb9,0x19,0x16, +0x89,0x33,0xaf,0x19,0xae,0x13,0xc7,0xe0,0xa2,0x26,0x6b,0x70, +0x59,0x89,0xc6,0x96,0x60,0xac,0x81,0x05,0x16,0x10,0xc5,0x9a, +0xac,0xd2,0xb0,0xc4,0x61,0x36,0xf9,0x66,0x3c,0x0c,0x6f,0xff, +0x78,0xf5,0xb6,0x24,0xd3,0x7f,0x94,0xb9,0x8b,0x03,0xa1,0xdf, +0x7a,0xe0,0x65,0xf9,0x6d,0x3c,0x8e,0x68,0x5a,0xdc,0x6a,0x74, +0x87,0x13,0x3b,0x84,0x15,0x44,0xb1,0x63,0x02,0xba,0xdd,0x36, +0x5a,0x8d,0xfe,0xd2,0xc1,0x8a,0x11,0xfc,0x2d,0xc9,0x4a,0xf4, +0xbf,0xcb,0x82,0x3f,0x8e,0x24,0x1a,0xe8,0xff,0x80,0x0d,0xa3, +0x23,0xf4,0x21,0xe8,0x85,0xef,0x33,0xf7,0xd4,0x16,0x7e,0x76, +0x8d,0x7a,0xde,0xec,0x34,0xe9,0x35,0x0f,0x9d,0x39,0x53,0x76, +0x82,0xb9,0x23,0x8c,0x73,0x4c,0x6e,0xe7,0x71,0x52,0x03,0x9a, +0x55,0xe3,0x94,0x64,0x3a,0xf1,0x1e,0x45,0x11,0xb4,0x61,0x92, +0x0d,0x24,0x65,0xf8,0xaf,0xeb,0xb3,0x81,0xae,0xcf,0x7b,0x33, +0x48,0xb7,0x68,0x66,0x0c,0x66,0x98,0x8f,0x5e,0x86,0xe0,0x25, +0xba,0x9e,0x17,0x5c,0xc1,0xf3,0x1c,0x7a,0x42,0x3e,0x0b,0x05, +0xb5,0xa4,0x77,0xd8,0x05,0xc5,0x30,0x29,0x29,0x08,0x9c,0x23, +0xc7,0xe6,0x84,0x39,0xaf,0xb5,0x2d,0x71,0xe1,0xef,0xb7,0xa7, +0x5d,0x38,0xf1,0x0f,0x77,0x19,0x47,0x33,0xf6,0x99,0xdb,0xeb, +0x55,0x3b,0x98,0x82,0xd8,0xb8,0x02,0xb5,0x97,0xac,0x7d,0xac, +0xd2,0x14,0x57,0x36,0x78,0xef,0xe9,0x4c,0x35,0x49,0x0b,0xb7, +0x59,0x0f,0xfe,0x39,0xdf,0xbc,0xe1,0xaa,0x99,0x0e,0x86,0xd3, +0x83,0x8e,0xf5,0x55,0xfc,0x67,0x85,0x75,0x95,0x38,0xbc,0xab, +0x1d,0xbe,0xb4,0xe2,0x17,0xc8,0x61,0x85,0x1b,0x42,0x9a,0xa4, +0xe9,0x30,0xd1,0xe4,0x23,0x73,0x04,0x1b,0x5c,0x71,0xf5,0x2c, +0x9c,0xdc,0x60,0xcf,0xff,0x0d,0x0b,0xeb,0xc0,0xe6,0xa4,0xa4, +0xe7,0x30,0x85,0xc1,0x23,0x07,0x51,0x63,0xcf,0x54,0x55,0xc3, +0x03,0x61,0xa1,0xb2,0x31,0x4b,0x99,0x44,0x63,0xa5,0x7b,0xcc, +0xbd,0xfc,0xd2,0x87,0x67,0xd4,0xe2,0x80,0x93,0xb2,0xdb,0x5e, +0x57,0x91,0x04,0x97,0x3a,0xc2,0x29,0x21,0xba,0x2f,0xf1,0x21, +0x7e,0x90,0x06,0x86,0x3f,0x60,0x29,0x25,0x1a,0x4d,0xe6,0x63, +0xf8,0x33,0x3a,0x8f,0x0e,0x50,0x4b,0xd0,0x88,0x63,0x9f,0xc3, +0x8c,0x66,0x9c,0xcc,0x26,0xa4,0x27,0xe6,0xc5,0x64,0x5a,0xc5, +0xf1,0xbb,0x37,0x86,0xf8,0xed,0x08,0xe0,0x90,0x65,0xf2,0x4b, +0xb2,0x4a,0xd3,0x2b,0x39,0x38,0xd5,0x8c,0xdb,0x99,0x84,0xa2, +0xb8,0x92,0xd8,0x0a,0x0e,0x56,0x36,0xe3,0x1d,0x26,0x3a,0xe5, +0x74,0x4a,0x64,0x8a,0x55,0x2c,0x1f,0x64,0xe4,0x65,0xe8,0x68, +0x55,0xed,0xcd,0x67,0xe6,0xa6,0xe5,0x27,0x17,0x72,0x30,0x94, +0xd9,0xe3,0xb1,0xdb,0x3b,0xc4,0x87,0xa3,0xe4,0x1b,0xe6,0x30, +0x2e,0x3a,0xe6,0x46,0xda,0xb2,0x22,0x27,0x3e,0x39,0x21,0x39, +0x31,0x31,0x81,0x13,0x5d,0xda,0x5a,0xe1,0x4a,0x33,0x8e,0xfc, +0x00,0x3f,0x37,0xe2,0xcf,0xcf,0x59,0x10,0x85,0x8b,0x7d,0x12, +0x16,0x03,0x4c,0x60,0x00,0x73,0x18,0x1b,0x1c,0x50,0x6b,0x1c, +0x4e,0xa2,0xf6,0x0b,0x06,0xc3,0x82,0x26,0xb0,0x3b,0x05,0xf2, +0xbe,0x1e,0x1f,0x3e,0x84,0x4b,0xc2,0x26,0xd3,0x1e,0xef,0x0e, +0x35,0x1f,0xb3,0x50,0xea,0xf1,0xe3,0x6f,0x3d,0x8e,0x87,0xc1, +0x11,0x74,0xf1,0x5f,0x55,0x41,0x37,0x46,0xac,0xc6,0xfb,0xe4, +0x39,0x8c,0x52,0x67,0x71,0x14,0xaa,0xfd,0x57,0x69,0x06,0xf9, +0x00,0xa3,0xa6,0x50,0x9b,0x3b,0x5c,0x30,0x21,0x37,0xa6,0xbc, +0x9e,0x0d,0x3f,0xac,0x2d,0xa6,0x54,0x74,0xd0,0xc5,0x65,0x37, +0x8d,0xef,0x72,0x70,0xb8,0x1d,0x4b,0x99,0xad,0xa5,0xc1,0xa5, +0x3b,0x4b,0x39,0xe8,0x69,0x47,0x67,0xa6,0xb0,0x36,0xbf,0x25, +0xed,0xac,0x71,0x16,0xbf,0xd5,0xc2,0x63,0x83,0xa7,0xad,0x24, +0xa6,0x95,0xd2,0x11,0xdb,0x79,0xa6,0xdb,0x34,0x92,0x0f,0x37, +0xda,0x6d,0x1c,0x64,0xcc,0xe1,0x43,0x19,0x9c,0x63,0x42,0x3d, +0x83,0xbd,0xb6,0x79,0x73,0x58,0x29,0xa3,0x13,0xd8,0x58,0x6b, +0xe9,0x3a,0x1c,0xa8,0x5f,0x64,0xc5,0x3f,0x69,0xb9,0xda,0xd6, +0xd1,0xc1,0x99,0x0b,0xfd,0x67,0x88,0x2b,0xe9,0xaa,0x59,0x9e, +0x11,0xf8,0x87,0xaa,0xe0,0xc5,0xd4,0xa6,0x26,0xd6,0xab,0x7d, +0x60,0x8d,0xa4,0x2d,0xd7,0xa2,0x3b,0x6b,0xbd,0x3f,0xe6,0xac, +0xda,0x4d,0x61,0x39,0x78,0xd2,0xa5,0x5d,0x50,0x90,0x53,0x98, +0x59,0xc4,0xd9,0x40,0x34,0x09,0xaa,0xf5,0x6d,0xda,0x52,0x6c, +0xb5,0x91,0xcf,0xf6,0x2c,0xb2,0x49,0x73,0xe1,0xa0,0xc4,0x90, +0x24,0x79,0xa5,0x78,0xa5,0x7b,0x71,0x68,0xcf,0xa4,0x95,0x24, +0x95,0x26,0x94,0xd1,0x45,0x67,0x0c,0x1b,0x88,0xdc,0x51,0x60, +0x51,0x9b,0x2d,0x2e,0x2d,0xac,0xce,0xaa,0xe2,0xaa,0xf1,0x0c, +0x7b,0x26,0x85,0xde,0x9f,0x54,0xb3,0x58,0xde,0x63,0xce,0xda, +0x85,0xea,0x7a,0xe5,0x4e,0x7c,0x54,0x44,0x54,0x64,0x54,0x24, +0x87,0xf7,0x2d,0x2c,0x20,0x95,0xdd,0x3c,0x0b,0x19,0x0b,0xd4, +0xb6,0x4c,0x33,0xe6,0x61,0x41,0x33,0x2c,0xbc,0x1c,0xd3,0x27, +0xd0,0x1c,0x89,0x4a,0xf0,0x83,0x21,0xa8,0xaf,0xcf,0xea,0xe2, +0x71,0xe1,0xf9,0x19,0x0d,0xdb,0x5e,0x72,0xe2,0x40,0x17,0xa2, +0xe0,0x30,0xbc,0x37,0xa0,0xf3,0x13,0x2b,0xa0,0x70,0x83,0x6c, +0xf7,0xf2,0xf5,0xf4,0xa4,0xfd,0xf5,0x67,0x8a,0x8b,0x0a,0x4a, +0xb3,0x2b,0x38,0x71,0xc2,0x51,0x02,0xca,0x62,0x3c,0x2a,0x33, +0x82,0x26,0x88,0x64,0xbc,0x9f,0xad,0x9e,0x9d,0x6a,0x91,0xbd, +0xd2,0x9d,0xee,0xea,0xcb,0x30,0x54,0xe5,0xe4,0xaf,0xf8,0x3d, +0x6b,0x99,0xba,0x4d,0xae,0xfa,0x0c,0x87,0xe1,0xba,0x27,0x26, +0x0b,0x29,0x5c,0xbe,0xc9,0xc0,0x7d,0x9c,0x46,0xfc,0x0e,0xc6, +0xe4,0xab,0xfd,0x43,0xd1,0xfc,0x34,0x56,0xea,0xcc,0x1f,0x64, +0x82,0xd0,0xef,0x65,0xeb,0xdc,0x07,0xd4,0x4c,0x74,0x3e,0x30, +0xd5,0x50,0xb7,0x7c,0x2e,0xf6,0x43,0xd6,0xa2,0x43,0x1c,0xd0, +0xd9,0x29,0x9c,0xe9,0x10,0xcf,0xc0,0x29,0xf8,0x99,0x39,0xbc, +0xdc,0xcf,0x61,0xa9,0x6b,0xa1,0x23,0xff,0xba,0xb1,0xba,0xe7, +0xd4,0x07,0xee,0x09,0x72,0x8c,0x7d,0x4a,0x48,0xbd,0x2a,0x0c, +0x64,0x4a,0x92,0xe2,0x4b,0xd4,0xae,0xb0,0x36,0x71,0x4a,0x9a, +0x33,0xd9,0xe0,0x03,0x91,0xa9,0x6a,0x9f,0xc0,0x82,0xed,0x0d, +0x84,0x00,0xf2,0x55,0x69,0x38,0xd7,0x98,0x1a,0xd3,0x3e,0xa5, +0x61,0x91,0x71,0xdb,0xe5,0xba,0xcb,0x25,0x2c,0xd9,0x94,0xff, +0x5c,0xfa,0xb4,0xe4,0xfe,0xd9,0xbd,0x1d,0xbc,0x5f,0xa8,0x4f, +0xa8,0xf7,0x2e,0x4e,0xb8,0x24,0xc8,0x08,0x76,0x3e,0x86,0x4e, +0x06,0x7f,0x1e,0xb4,0x18,0x3b,0x1f,0xb1,0xd0,0x89,0x63,0xc9, +0x3c,0xec,0x7c,0x41,0x57,0x8e,0x0c,0xee,0x13,0x34,0x62,0xe2, +0xf2,0x63,0xf3,0xcf,0x14,0xba,0x47,0xf1,0xa0,0x94,0xf0,0x32, +0xe3,0x56,0x11,0xb0,0x1b,0x61,0x90,0x3f,0x70,0x5e,0xd9,0x74, +0x6a,0x0d,0x28,0x9c,0x99,0x33,0x3b,0xe3,0x52,0x4d,0x6d,0x5b, +0xd6,0x15,0x0e,0x8c,0x5a,0xc5,0x60,0x26,0x3d,0x27,0x35,0x37, +0x35,0x4f,0x3f,0x81,0xdf,0xe6,0x1b,0xe8,0xbb,0xc9,0x97,0xc3, +0xb3,0x92,0x62,0xb0,0xbb,0x9b,0xb3,0x9b,0x9d,0xeb,0xf3,0x1d, +0x8f,0x82,0xef,0x07,0xcf,0xdb,0x84,0x83,0x43,0x70,0x8a,0x24, +0xcc,0x5e,0x7f,0xb2,0xf6,0x54,0x75,0x44,0xb8,0x5f,0x98,0xdf, +0x2e,0x3f,0x8a,0x99,0x2d,0xe1,0x07,0x66,0xab,0xd3,0x16,0xe7, +0x8d,0x6e,0x5d,0x81,0x9d,0x5b,0xda,0xb6,0x98,0xbb,0xae,0xf3, +0x5f,0x1a,0x94,0x66,0xc1,0xbf,0xcb,0xb8,0x57,0x79,0x4e,0x5e, +0x16,0x54,0x12,0x54,0x10,0x5c,0xd6,0xc8,0xfb,0x27,0xfb,0x26, +0xfb,0x24,0x37,0xb4,0x17,0x5c,0x8e,0xb9,0xcb,0xe1,0x54,0x8a, +0x86,0x4b,0xf3,0x8b,0x0a,0xf3,0x8b,0x38,0xc8,0x61,0xb6,0x6c, +0xb0,0xb3,0xd3,0xf6,0x5e,0x93,0xa4,0x95,0xb4,0x2c,0x89,0x53, +0x4c,0x42,0x4a,0x00,0x0a,0x98,0xb8,0xbc,0x98,0xfc,0x98,0x02, +0x3a,0x59,0xc2,0x7c,0x76,0xfb,0x84,0xd2,0x75,0xfb,0x83,0xe5, +0x5b,0x26,0xd0,0x66,0x93,0xbd,0x9f,0x53,0xd7,0xd6,0xce,0x80, +0xf6,0xcd,0x32,0x4f,0xed,0x80,0x85,0x3b,0xd3,0x65,0xfc,0xa7, +0xf4,0x07,0xc5,0xe7,0x9b,0xba,0xfc,0x3a,0x7c,0x3a,0x3d,0x2a, +0x1a,0x78,0x93,0x52,0xf3,0x42,0x8b,0xbc,0x46,0x79,0xe1,0xd5, +0x84,0xc7,0xdc,0x7d,0x46,0xbc,0x34,0x72,0xaf,0xfe,0x26,0x99, +0xa3,0xbd,0x73,0x9a,0x53,0x9a,0x53,0x72,0x46,0x49,0x5a,0x69, +0x4a,0x19,0x27,0xec,0xc2,0xf5,0xc4,0x21,0xc3,0x21,0xcd,0x31, +0x39,0xab,0x3c,0xa3,0x22,0xb5,0x4a,0x4a,0x1c,0xb0,0x7b,0xb5, +0xbf,0x89,0xbd,0x03,0x35,0xc1,0x1f,0x15,0x1a,0x04,0xe7,0x9d, +0x03,0x6f,0x71,0xf2,0x5f,0x06,0x93,0x45,0x82,0xde,0xe7,0x60, +0x1e,0xab,0x98,0x42,0xd9,0x87,0xf8,0xc2,0x54,0x78,0xc1,0xdc, +0x16,0x77,0x10,0x5c,0xc4,0x58,0xed,0x8e,0x69,0x57,0x83,0x1d, +0x50,0xd4,0xd5,0xfb,0xd8,0x04,0x7e,0x61,0x0f,0xe1,0x22,0x2d, +0x75,0xb4,0x30,0xcd,0xa5,0x13,0xd8,0xe7,0xc2,0x73,0x18,0x18, +0x01,0x96,0x1c,0x98,0x62,0x28,0x33,0xb3,0x20,0xe0,0x85,0x2a, +0x2c,0x91,0x84,0x9c,0x1a,0xd5,0x60,0x3c,0x6b,0x9c,0xa0,0xa4, +0x2c,0xa4,0x29,0xee,0x10,0x83,0x29,0xf4,0xeb,0x4d,0x7a,0x80, +0x57,0xf8,0x23,0xdf,0x03,0x26,0x22,0x65,0x92,0x79,0xe2,0x78, +0x02,0xc7,0xc5,0x67,0xbd,0x33,0x2e,0xc8,0x85,0x78,0x8b,0x0b, +0x70,0x55,0xfc,0x95,0xa2,0x06,0x37,0xa0,0xf7,0x5e,0x45,0x74, +0x03,0x15,0x56,0x88,0x17,0xf7,0x12,0x31,0x1e,0xa6,0x08,0xf1, +0xd4,0xff,0xdf,0x13,0x1e,0x13,0x29,0x5d,0x99,0xa7,0x74,0xd8, +0x92,0x2b,0x87,0x29,0xe2,0xcc,0x1b,0x86,0x6b,0xa9,0x83,0x9b, +0xd2,0x46,0xfd,0xef,0xee,0x46,0x82,0xbe,0x8d,0x26,0xb6,0xe8, +0x29,0x1d,0x6c,0x6f,0x2b,0x76,0x30,0xf1,0xbd,0xae,0x92,0xc2, +0x9b,0xe7,0xbe,0x88,0x12,0xb5,0x5b,0xe0,0x28,0x4c,0xe8,0x9d, +0x21,0x4e,0x00,0x1d,0x76,0x87,0xb1,0x9e,0x13,0x7a,0x6e,0x91, +0x52,0x38,0x87,0xe7,0x3d,0xbc,0x90,0xfe,0x9a,0x83,0x05,0xab, +0x98,0x75,0x69,0x41,0xb7,0x54,0x81,0xda,0x88,0x94,0xa4,0x5a, +0xb5,0x37,0xac,0x49,0xa2,0x12,0xf6,0x83,0x5c,0x22,0x56,0x5f, +0x14,0xaa,0x25,0xcb,0xa6,0x43,0x2e,0x08,0xd5,0x06,0xac,0xed, +0x20,0x1d,0xb1,0xfa,0xaa,0x04,0xd5,0x05,0x43,0x02,0x79,0xc2, +0xd0,0x73,0xbd,0x35,0x86,0x14,0x1f,0xe5,0x89,0x53,0x0d,0x84, +0xa9,0xa2,0xd9,0x65,0xc1,0x4c,0x58,0x7c,0x81,0x7e,0xae,0x09, +0xbb,0x08,0x7c,0xc1,0xf1,0xcf,0xfb,0x04,0xa5,0x3e,0x98,0x4d, +0xe9,0xdb,0xd8,0xac,0x8e,0xaa,0xd4,0xd1,0xa8,0x4e,0x43,0x5d, +0x0b,0xd0,0xc5,0xd9,0x1d,0x30,0x1b,0x0c,0xe5,0x68,0xf8,0x8e, +0x05,0x47,0x38,0x42,0xfe,0x79,0xfc,0x0c,0x06,0xa6,0x82,0x0a, +0xb5,0x07,0x19,0x38,0xf2,0xe5,0x38,0x18,0x34,0x57,0x7a,0x66, +0xf7,0xfd,0xdb,0x45,0x9f,0xb6,0x7c,0x90,0x42,0x41,0x27,0xaf, +0x96,0x04,0x7b,0xa6,0x71,0xcb,0xe2,0xc9,0x54,0xdc,0xf6,0x9e, +0x55,0xf8,0xcc,0x27,0x9d,0x78,0xc9,0x14,0xbe,0xc7,0xa5,0x5f, +0xe5,0x9b,0xe5,0x5d,0x94,0xcd,0x6c,0xeb,0xc2,0x6d,0xb0,0x94, +0x15,0x9f,0x19,0x13,0xd8,0x36,0x1e,0xb7,0x31,0xca,0xc2,0x2a, +0x30,0x20,0x72,0xef,0x4e,0xd7,0x46,0xe7,0x8a,0x1a,0xde,0xa1, +0xd2,0xae,0xc4,0xb6,0x80,0xab,0x90,0x08,0xae,0x97,0xf8,0xfd, +0x0d,0x78,0x0e,0x8e,0xf8,0xfc,0xa2,0xa1,0x3e,0xde,0x42,0x47, +0xb8,0xb5,0x96,0x32,0x32,0x2f,0x10,0x29,0x8f,0x89,0x11,0x0e, +0x10,0x88,0x99,0x4a,0xa9,0x8e,0xf0,0x62,0x24,0xe6,0xbc,0xa7, +0xf3,0xb8,0xf7,0x7b,0xcc,0x25,0xd0,0x34,0x0e,0x9b,0x18,0xc5, +0xa2,0x91,0x78,0xf9,0x1f,0xb8,0xcc,0x88,0xda,0xa2,0x05,0x71, +0x0d,0x8f,0x2a,0x57,0x03,0x0d,0x43,0xd4,0x64,0x57,0x66,0x07, +0xdd,0x53,0x85,0x2a,0xa6,0x21,0x21,0xad,0x5a,0xed,0x11,0x6b, +0x9c,0xa6,0x84,0x0c,0xdb,0x01,0x1a,0xa4,0xdb,0xb4,0x5b,0xb7, +0x46,0xbb,0xb1,0x8c,0xb7,0xbf,0x65,0x7a,0xd1,0xb8,0x93,0xeb, +0xb5,0xa2,0x44,0xe9,0xda,0xc5,0xfa,0x5b,0x79,0x57,0xac,0x73, +0xf8,0x2d,0x1b,0xec,0xd7,0xea,0x9b,0x53,0x3e,0xba,0x5e,0xb1, +0x8a,0x08,0xeb,0x99,0x08,0xec,0x9f,0x35,0xb5,0x41,0xc3,0xd3, +0xd9,0xc9,0xd5,0xda,0xad,0xdc,0x85,0x6f,0x2c,0xaf,0xaa,0x28, +0xad,0x2c,0x70,0x29,0xf7,0xaa,0xdb,0x58,0xb3,0xf9,0xec,0xe9, +0x88,0xb6,0x58,0x98,0xc4,0x5b,0xa4,0x87,0xe1,0x02,0xe7,0x7c, +0x8f,0x72,0xbf,0xba,0xd1,0x0d,0xe7,0xcb,0xaf,0x95,0x3e,0xb2, +0x4e,0xe7,0x03,0xf5,0x7c,0x37,0x38,0x19,0xfb,0x5c,0x0c,0xfa, +0xfd,0xd0,0x9f,0x1c,0x64,0xb7,0x2d,0x61,0xf2,0x8a,0x3c,0x0a, +0xac,0x73,0xfd,0x12,0x46,0xfb,0xb8,0xe7,0xef,0xae,0xdb,0x52, +0xbc,0x65,0x34,0xae,0x79,0x63,0x3a,0x53,0xdc,0x3f,0x87,0xc1, +0x19,0xbf,0xe0,0x0f,0x9a,0x38,0x44,0xb5,0xc9,0x43,0xe9,0x19, +0x8c,0x39,0x01,0x63,0x61,0x8e,0x4a,0xdb,0x56,0x62,0x05,0xf7, +0x5b,0x58,0xbc,0x80,0x43,0xe9,0x34,0x82,0x06,0x70,0x61,0x71, +0x3f,0xce,0x23,0xff,0x80,0xc1,0x38,0x56,0x0f,0x7f,0x26,0x6d, +0xde,0x9d,0x2e,0x8d,0x4e,0x95,0x67,0x79,0xcb,0x3a,0xf3,0x0a, +0xb3,0x62,0xce,0x14,0x4f,0xfe,0x1f,0x0c,0x82,0x26,0xe9,0x36, +0xe9,0xd6,0xf9,0x3a,0x08,0xb7,0x4d,0x2f,0x7d,0x1d,0x84,0x03, +0xe4,0xda,0xa5,0xfa,0x5b,0xb9,0x57,0xad,0xb3,0xf9,0x00,0x69, +0x10,0x64,0x74,0x10,0x82,0x96,0x93,0x2f,0x33,0x4c,0xff,0x9d, +0x41,0x6f,0xb2,0xe2,0x34,0x89,0x85,0xa1,0x4a,0xe2,0x61,0x66, +0x0f,0x0e,0x55,0x5a,0x69,0x77,0x9d,0x39,0xe4,0x72,0xd0,0xf5, +0xa0,0x0b,0x27,0x1c,0x66,0x22,0xab,0x23,0xab,0x22,0xaa,0xb9, +0xcb,0x0d,0x0c,0x3e,0xb9,0x4d,0x8e,0x06,0x1e,0x0d,0x38,0x12, +0xc8,0xe1,0x52,0xe6,0x64,0xd6,0x89,0xec,0x13,0x59,0x1c,0x78, +0xae,0x22,0x27,0xb3,0x4e,0xf6,0x15,0xb5,0x98,0x6f,0x1f,0x8b, +0x0f,0xdc,0x49,0x92,0x79,0xf2,0xea,0x68,0xdd,0xd6,0x64,0x3e, +0xfc,0x72,0xf0,0x9d,0x9d,0x72,0x0e,0xbd,0xf1,0x3a,0xc9,0x7c, +0x1a,0xfb,0xe9,0xe4,0x67,0xcb,0x48,0xfe,0xf0,0x84,0xf0,0x99, +0x81,0x8b,0x38,0xe1,0x2a,0xe4,0x91,0x23,0x5b,0x8e,0x6c,0x39, +0xbc,0x85,0xc3,0x65,0x4c,0xec,0x3d,0x25,0x70,0xd3,0x24,0xa7, +0x72,0x4e,0xe6,0x9c,0xca,0x91,0xbe,0x6f,0x8f,0xa6,0x92,0x68, +0x3e,0x8e,0x88,0xc3,0x84,0x33,0xc2,0x30,0x56,0x86,0x03,0x88, +0x38,0xe5,0x82,0x40,0x01,0xc3,0xda,0x41,0xe2,0x94,0x8b,0xb4, +0x20,0x4e,0xa1,0x75,0xc2,0x94,0xf5,0xe2,0x14,0x06,0x62,0xc6, +0x93,0x2b,0x41,0x6f,0x3d,0x6e,0x7b,0x67,0xd7,0xf1,0xba,0x85, +0x93,0x2b,0x75,0x52,0x38,0xba,0x7a,0xd5,0xc8,0xbd,0xf4,0x0f, +0x55,0x1d,0x65,0x3e,0xe5,0xbc,0xa5,0xdf,0x1c,0xcf,0x65,0xc1, +0xb4,0xeb,0x7f,0xc3,0x66,0xd2,0xfa,0x29,0x16,0x46,0x83,0xaa, +0xca,0x4b,0x68,0x61,0x4f,0x22,0x93,0x38,0xb5,0x40,0xc3,0xdf, +0xc3,0xdd,0xd3,0xce,0xbb,0xd8,0x85,0xaf,0x2e,0x28,0x29,0xcc, +0x2f,0x49,0x77,0xce,0xf1,0x2a,0xda,0x58,0xea,0x5d,0x11,0x13, +0xd1,0x92,0x00,0xf3,0x79,0xdb,0xd4,0xdd,0xa8,0xe1,0x97,0x1f, +0x50,0x1e,0x5c,0x37,0xba,0xe9,0x7a,0xc1,0xef,0x69,0x8f,0x6c, +0x93,0xf8,0x90,0xb5,0xdb,0x36,0x78,0x9b,0x06,0x5d,0x0d,0xbf, +0x7f,0xf4,0x0f,0x0e,0x64,0xad,0x1b,0x98,0x82,0xb2,0xcd,0xe9, +0x9e,0x19,0xd2,0x44,0xf0,0x28,0xd8,0x5d,0xba,0x35,0x27,0x68, +0x34,0x2a,0xbf,0xb6,0x98,0x85,0x9f,0x70,0x1a,0x83,0xca,0x74, +0x80,0x1d,0x16,0xa8,0xce,0xc3,0x67,0xe4,0xcb,0x38,0xb3,0x7f, +0xc7,0xb1,0xf7,0x14,0x3e,0x24,0xc9,0x32,0x69,0x75,0xf4,0xfa, +0x96,0x24,0x3e,0xfc,0xd2,0x8e,0xdb,0xd2,0x50,0x39,0xd0,0xa1, +0x92,0x84,0xa8,0xfb,0x84,0x99,0x25,0x21,0x6a,0x49,0xa4,0x68, +0x0d,0xc4,0x11,0x1b,0xf0,0x6f,0x62,0xd1,0x05,0xfb,0x11,0x74, +0x05,0x4b,0x70,0x65,0x71,0x0a,0xaa,0x13,0xe8,0xf7,0x0e,0xfb, +0xb1,0x4b,0xa8,0xcb,0xed,0xd8,0x72,0xd9,0xb3,0xc9,0xb5,0xb0, +0x9e,0x37,0xaf,0xde,0x50,0x6a,0x96,0xcd,0xe1,0x2e,0x6c,0x27, +0x4d,0x57,0xf2,0x1f,0x27,0xde,0xb4,0x88,0xe3,0xc3,0xb4,0x37, +0xae,0xb1,0x35,0x94,0x32,0x29,0xaf,0x26,0x15,0xa6,0x15,0xcb, +0xb3,0x8d,0x5a,0x73,0xf9,0x4d,0x97,0xdd,0x6e,0xb8,0x77,0x71, +0x98,0x85,0x76,0xc4,0xeb,0x40,0x54,0x91,0x1a,0x4c,0x91,0xe1, +0x7c,0xd6,0x38,0x35,0xe8,0x82,0x2a,0x98,0x32,0x55,0x89,0x89, +0x35,0x6a,0xaf,0x59,0xcb,0x04,0x25,0xe9,0xe5,0x0a,0xb5,0x92, +0xb3,0x88,0xe4,0x44,0x25,0x45,0xe5,0x90,0x3f,0xd9,0x32,0xe7, +0x34,0x6a,0xc7,0xaa,0x3b,0xa0,0x08,0x06,0xb0,0x47,0x27,0x06, +0x3b,0x2e,0xb7,0x28,0xb2,0xe3,0x5f,0x5c,0xca,0xeb,0x39,0x49, +0x51,0xc7,0x7d,0x1c,0xca,0x58,0xa4,0x6e,0x6b,0x53,0x7d,0xa5, +0xd1,0x01,0x8f,0xd0,0x90,0x29,0x2d,0x2d,0xaa,0xea,0x83,0x31, +0x89,0x7d,0x30,0x26,0x3a,0xd5,0x34,0x96,0xf7,0x9c,0xbf,0x76, +0xd1,0xfc,0x0d,0x5c,0xc3,0xa4,0xaf,0x61,0xa7,0x83,0x65,0x30, +0x18,0x23,0x24,0x55,0x82,0x30,0xd7,0xaf,0x61,0xa7,0x15,0x5f, +0xc3,0x4e,0xc7,0x49,0xe1,0x9c,0x8f,0xbe,0x85,0x73,0x36,0xb3, +0xe5,0x09,0x15,0x89,0x65,0xc9,0x9c,0x30,0x43,0xe8,0x47,0xb6, +0x79,0xfb,0x78,0x78,0x50,0xe7,0x16,0xc0,0x94,0x14,0x16,0x94, +0xe6,0x50,0x1c,0x7b,0x1a,0xbb,0x88,0xef,0x21,0x0a,0x3f,0x3e, +0x03,0x83,0x53,0xd9,0x8f,0xb8,0x9b,0xb4,0x61,0xf5,0x4b,0xe3, +0xb9,0x58,0x66,0x0e,0x79,0xac,0xff,0x5c,0xfc,0xce,0x12,0x0d, +0x6c,0x52,0x29,0xe3,0xd5,0x6c,0x84,0xe5,0x17,0xe3,0xfa,0x34, +0xe7,0x25,0x8c,0x34,0xc2,0x18,0x96,0xe8,0x49,0x18,0x49,0xa3, +0x67,0x5a,0x43,0xc0,0x53,0xea,0xc7,0x52,0xc0,0x95,0xdc,0x81, +0xe1,0xc5,0x30,0x36,0x16,0xa6,0x71,0x3d,0xdd,0x58,0xcb,0xc4, +0x37,0xc7,0xb6,0x9e,0x6e,0x36,0x8b,0xe6,0xb7,0xe1,0x54,0x07, +0x9c,0xfd,0x75,0xe3,0x5e,0x41,0x4d,0x6e,0x73,0x66,0x5b,0x22, +0xf6,0x2b,0x98,0xdc,0x3c,0xc3,0x5c,0x73,0xf5,0xea,0xc9,0xda, +0x45,0x26,0xfc,0xbb,0x1b,0xb7,0xef,0x74,0xde,0x6b,0x58,0x7e, +0x61,0xd5,0x3d,0xad,0xe2,0x4e,0x5e,0xe3,0xb6,0xe1,0x2d,0x07, +0xea,0xbb,0x0f,0x08,0xcb,0x08,0xb5,0xa1,0x43,0xc0,0xbe,0x4d, +0x34,0x31,0x07,0x7d,0x1c,0x82,0x6e,0xe6,0xd7,0xc5,0x9d,0x4c, +0xc0,0x91,0x2d,0x74,0x09,0x49,0x8a,0x37,0x5c,0x2c,0x0c,0x4e, +0x01,0x36,0x83,0x12,0x9d,0x1e,0xc5,0xcf,0x14,0xdd,0xb7,0xd5, +0x90,0xbd,0xf8,0x53,0x00,0x72,0x26,0xd8,0xcf,0xfa,0x73,0x20, +0x30,0x7b,0x60,0x24,0x27,0x6e,0x93,0x92,0x45,0x2b,0xc1,0x46, +0x29,0xfd,0xf6,0x46,0x5c,0xf6,0xdf,0x65,0x0b,0x42,0x0b,0xfd, +0x99,0xb5,0xbb,0xd7,0x84,0xaf,0xdd,0xc7,0x49,0x39,0x8c,0x57, +0x13,0x98,0x67,0x84,0xf3,0xb0,0xac,0xef,0xa4,0xe9,0x8d,0x3f, +0x7c,0x8d,0xc7,0x9c,0x64,0x0e,0x63,0xd8,0x3d,0x38,0xc2,0x05, +0x27,0xcc,0xc0,0x51,0x95,0xb6,0xfc,0xaf,0xd0,0x2f,0xff,0x73, +0x84,0x14,0x8f,0x99,0xdf,0xf9,0x55,0xd9,0xea,0xe4,0x61,0xd5, +0x17,0xa8,0x55,0x59,0x31,0x1f,0x34,0xf7,0x25,0xf4,0x89,0x2d, +0x84,0x85,0xf7,0x05,0x94,0x8e,0x28,0xb8,0xdb,0x6b,0xd1,0x73, +0x1e,0xca,0x36,0xf4,0x28,0x2c,0xde,0x74,0x31,0xa2,0x21,0x1d, +0x7a,0xf8,0x05,0xca,0xf0,0x17,0x16,0xcb,0x4c,0xa5,0x27,0x3c, +0x05,0x58,0x46,0xfd,0xeb,0xd9,0xff,0xa9,0x25,0x2c,0x3d,0x0c, +0x1c,0xd2,0x86,0x43,0xbe,0xaa,0x09,0x8f,0x35,0x87,0xe1,0xd2, +0xfb,0x43,0x77,0x9c,0x30,0x0f,0x47,0x54,0xd8,0xf1,0x37,0x3e, +0xe5,0x7e,0x8a,0x90,0xd4,0x84,0xd3,0x3b,0x84,0x93,0xdf,0x2e, +0x7f,0x1f,0x57,0x54,0x54,0x28,0x1d,0x10,0xf6,0x10,0x53,0xe1, +0x6e,0x27,0x6b,0x2e,0x89,0x53,0xf8,0x8b,0xbe,0x82,0x3f,0x63, +0x04,0xa9,0x04,0xff,0x86,0x29,0xf0,0x37,0x43,0xa9,0xb1,0x23, +0x81,0xbf,0x71,0x0e,0xd2,0xf2,0x54,0x3c,0x4a,0x14,0x03,0x3b, +0xa5,0x1d,0x98,0x8a,0x7f,0x85,0x0e,0xd2,0x09,0xeb,0x31,0xf2, +0xbd,0xf1,0x54,0x0c,0xc7,0xf5,0x1d,0xbd,0x23,0xba,0xae,0xc0, +0x47,0xdd,0x2e,0x78,0x2c,0xce,0x79,0x2d,0x0c,0x61,0x7a,0xfb, +0xc3,0x20,0x72,0x08,0x54,0xfe,0x6e,0x9b,0xf4,0xdf,0x83,0xc2, +0x84,0xe1,0x08,0xd7,0xff,0x1c,0x94,0xbb,0xd2,0xa0,0x44,0x7e, +0x1b,0x94,0xc8,0x6f,0xbb,0x4b,0x5f,0xa1,0x6e,0x55,0xf9,0x1c, +0xd0,0xfa,0xa6,0x40,0x01,0x6b,0xc1,0x8f,0x08,0xda,0xb3,0x44, +0x6d,0xa6,0x53,0xda,0x08,0x38,0x16,0xae,0xe1,0x58,0xb6,0x18, +0x05,0x82,0x1f,0x61,0x0e,0x7c,0xa4,0x2d,0xd9,0xa6,0xe8,0x47, +0x60,0x06,0x13,0xbe,0x7a,0xeb,0x1c,0x4f,0xcd,0xc6,0x00,0xfe, +0xec,0xdb,0xcc,0x8f,0xb1,0x0f,0xb8,0x7a,0xbc,0xc8,0x9e,0x69, +0x89,0xfc,0xcf,0x64,0xe3,0x8b,0x36,0xe3,0xf0,0x35,0x38,0x81, +0xab,0x11,0xa7,0x9b,0x09,0xd3,0x63,0xd8,0x3a,0xef,0xaa,0x5f, +0xf3,0x7e,0x4f,0x7d,0x38,0xba,0x53,0x4a,0x3a,0xee,0x63,0x88, +0xe3,0x71,0x05,0x4e,0x92,0x92,0x8e,0x4f,0x86,0x31,0xd7,0xe1, +0xbb,0xc8,0xbe,0xa4,0xe3,0x51,0xb8,0xf2,0x0e,0x7e,0x0f,0x13, +0x71,0x54,0x51,0x37,0x8f,0xcb,0x60,0xb2,0x1e,0x8c,0x07,0x6f, +0x95,0xde,0x05,0xf0,0x1d,0xb1,0x10,0x56,0xc8,0x51,0xe7,0x4f, +0xb0,0x6b,0x47,0xbb,0xa7,0xc6,0x0b,0xd0,0x59,0x06,0xce,0x33, +0x58,0x48,0xc0,0x12,0x22,0xfa,0x99,0x81,0x2f,0xa6,0xce,0x66, +0x92,0x8c,0x95,0x6e,0x30,0x75,0x29,0x52,0xb2,0xde,0x78,0xb0, +0x61,0x77,0xe1,0x6a,0xb2,0xb3,0x32,0xa0,0x21,0xb0,0xd4,0x6e, +0x0b,0x9f,0xe1,0x95,0x6b,0x95,0xe4,0xce,0xe1,0x5d,0x98,0x45, +0x76,0x6e,0xf0,0xd4,0x72,0xb3,0x6b,0xf0,0xe0,0x6b,0xbb,0x4a, +0xef,0xa6,0x5e,0xa1,0x93,0x6b,0xbf,0x94,0x42,0x7d,0x34,0x13, +0xae,0xb5,0x6d,0xb6,0x97,0x66,0x63,0x20,0x5f,0xf3,0x36,0xe3, +0xef,0x18,0xa9,0x57,0x6d,0x6c,0x6c,0xcb,0x69,0x79,0x44,0x97, +0x05,0x65,0x56,0xa8,0x12,0x80,0x03,0xd6,0xe3,0x80,0x7a,0x1f, +0xbe,0xa0,0x25,0xa3,0x25,0xa9,0x9d,0xbb,0x86,0x13,0x18,0x74, +0x74,0xa4,0x24,0xee,0x7b,0x1c,0xa3,0x1a,0x8b,0x33,0x3f,0xc0, +0x94,0x46,0x9c,0xf2,0xbc,0xef,0xf8,0x0c,0x16,0x35,0xa3,0x3a, +0x9b,0x94,0x96,0x94,0x17,0x9b,0x69,0x11,0x4f,0xb9,0xeb,0x0e, +0xbf,0xe0,0x00,0x29,0x7c,0xb2,0xa0,0x24,0xa7,0x34,0x83,0x72, +0xd7,0xe8,0x16,0xdc,0xc1,0x24,0x16,0x25,0xf4,0x71,0x57,0xbd, +0x66,0x7c,0xd5,0xc7,0x5d,0xa3,0x52,0x2c,0x62,0xf9,0xed,0xc6, +0xee,0x86,0xf6,0x56,0xd5,0x9e,0x7c,0x56,0x6e,0x46,0x41,0x2a, +0xe5,0xae,0x23,0x98,0xdd,0x1e,0xbb,0xbc,0x25,0xc5,0x4b,0x73, +0x2b,0x0a,0x53,0x1d,0x75,0x4c,0x8d,0xb5,0x64,0xc5,0x8e,0x7c, +0x4a,0x62,0x4a,0x42,0x12,0xe5,0xae,0xce,0xed,0xad,0xf0,0x88, +0xcd,0xb1,0x87,0x1f,0x41,0xad,0x15,0x06,0x9c,0xea,0x1b,0xd0, +0x08,0xd4,0xba,0x4a,0x8d,0xc2,0xcf,0xc8,0x7f,0xcd,0xe2,0x3e, +0xc5,0x14,0x54,0xc0,0x57,0x45,0xbc,0x46,0x17,0xda,0x33,0x98, +0x30,0x9f,0xc5,0x09,0x7d,0x44,0x74,0x82,0x3a,0x05,0x6e,0x53, +0x70,0xc2,0x07,0x56,0xf9,0x4f,0x45,0x1a,0xb9,0xee,0x7b,0xd9, +0xbd,0xdb,0xa9,0xb0,0x85,0x37,0xad,0x59,0x5b,0xb3,0xae,0x80, +0x13,0x4a,0xc5,0xe1,0x04,0xf2,0x21,0xbd,0x5b,0xbc,0x6b,0x0c, +0x47,0x31,0x1f,0xf3,0x0c,0x29,0x40,0x75,0xbb,0x44,0xe1,0x68, +0xf5,0x39,0xb6,0x77,0x6e,0x02,0x31,0xac,0x5f,0x56,0xbf,0xb2, +0xd8,0xdf,0x8a,0xff,0xd5,0xeb,0xba,0xf3,0x55,0x3b,0x0e,0xd5, +0xc5,0xad,0xe4,0xfe,0x5f,0x57,0x61,0x54,0xf5,0x3f,0xb2,0x6c, +0xde,0x09,0x07,0x18,0x21,0xbb,0x74,0xa6,0x24,0xca,0xad,0xb0, +0x24,0xb0,0x44,0xbf,0xe7,0x22,0x6c,0x96,0x0e,0xab,0x9a,0x71, +0xd5,0xef,0x46,0xcb,0x70,0xb3,0x74,0x58,0xb2,0x91,0xb1,0x2f, +0x37,0x2f,0xb7,0xc8,0xf7,0xb5,0xe1,0xbb,0x7c,0x9b,0xbc,0x9a, +0xdc,0xf2,0xcf,0xf2,0x8a,0xc5,0xe2,0x3d,0xd2,0x8e,0x37,0x1f, +0x40,0xbd,0x1c,0xeb,0x7f,0x85,0x14,0x70,0x11,0xef,0x52,0xc4, +0x71,0x7a,0x85,0xf4,0xb8,0xa6,0x40,0x03,0x3b,0x64,0x50,0xcb, +0xfa,0x19,0x4e,0xb3,0x47,0x17,0xfb,0x14,0x8a,0x5a,0x43,0xdb, +0x60,0x50,0x67,0xec,0x5b,0x6a,0x11,0xe3,0x66,0xc2,0x00,0x19, +0xf8,0x99,0xa4,0x76,0xf0,0x68,0xd2,0x34,0xad,0xd6,0xb7,0x87, +0x13,0xc7,0xc3,0x73,0x62,0x53,0xbd,0xbe,0xa1,0xef,0x1d,0x5e, +0x8f,0xf7,0x39,0x27,0xb9,0x13,0x07,0x9a,0xa0,0x4a,0xc0,0x7a, +0x22,0x5a,0x33,0x70,0x7a,0xe4,0x47,0x70,0x9b,0xc8,0xf6,0x0e, +0xc5,0x39,0xc4,0x13,0x07,0x5a,0x21,0xb7,0x66,0x5a,0x93,0x0b, +0x7f,0xfb,0x73,0x17,0x8c,0x2e,0xfe,0x4c,0x3b,0x50,0xa4,0x70, +0x21,0x0e,0x55,0x16,0xd5,0x16,0x45,0xbe,0x0e,0x7c,0x87,0x57, +0x83,0x47,0x83,0x33,0x07,0x6c,0xef,0x2e,0x22,0x54,0xc1,0x46, +0x78,0x88,0x39,0xbd,0xff,0xc1,0x0a,0x1d,0x42,0x15,0x11,0x37, +0xe3,0x2c,0x36,0xa1,0x4f,0xbb,0xb5,0x36,0x25,0xb5,0x56,0x4d, +0x51,0x8e,0x45,0xf8,0x90,0xc5,0x12,0x28,0x21,0xb0,0x48,0x9d, +0x72,0x07,0x78,0xf1,0x9c,0xc0,0x52,0x75,0x0a,0x47,0xf0,0x85, +0x1d,0xad,0x9b,0xd5,0x57,0xf7,0x9a,0xd6,0xcd,0xa2,0x75,0xa2, +0x85,0x19,0xb1,0xab,0x5d,0xdf,0x6c,0x54,0x46,0x2f,0xd4,0xe5, +0xde,0x6d,0xdf,0x6a,0xcf,0x41,0x8f,0xb8,0x94,0x74,0x43,0x38, +0xfc,0x81,0x35,0xe2,0x24,0x56,0x0e,0x9f,0x08,0xe8,0xcd,0x42, +0x3d,0x46,0xd4,0xa4,0x4e,0xf7,0xda,0x37,0x99,0x24,0xf3,0x54, +0x49,0x26,0xc9,0x11,0x07,0xaf,0x9f,0xc6,0x09,0xbe,0x10,0x42, +0x7f,0x67,0x2a,0xfd,0x1d,0xe5,0x2f,0x46,0x42,0x05,0x91,0x8b, +0x2c,0x9b,0x58,0x1c,0x57,0x12,0x5b,0xca,0x41,0xbb,0x5c,0x0c, +0x60,0x62,0xd3,0xcf,0xa4,0x47,0x67,0xd8,0x24,0xf2,0xdb,0x8c, +0x9d,0xd6,0x58,0x98,0x57,0xf9,0xf0,0x59,0x39,0x19,0xb9,0x29, +0xf9,0xd2,0xa3,0x8d,0x3d,0xde,0xbb,0xbd,0xa4,0x07,0x26,0x21, +0x16,0xe0,0xc0,0x98,0x4e,0x5d,0x39,0x5f,0xdd,0xa0,0xc0,0x8a, +0xcf,0x4d,0xcf,0xc9,0xc8,0xce,0xe2,0xc4,0x9f,0xba,0xcf,0x0a, +0xa7,0x5b,0xf1,0xf8,0x53,0x08,0x68,0xc6,0x80,0x07,0xdf,0x8e, +0x87,0x5b,0x30,0x94,0x4d,0x48,0x8f,0xcb,0x89,0x4e,0x37,0x8d, +0xe7,0xf7,0x6e,0xdd,0xbd,0x31,0xc8,0x9f,0xc3,0x25,0x4c,0x76, +0x69,0x66,0x59,0x5a,0x05,0x87,0xc9,0xb0,0x86,0xd8,0x55,0x9b, +0x56,0x9b,0x16,0xf9,0xd8,0xf2,0xdd,0xde,0x2d,0xff,0xa9,0x40, +0x6e,0x57,0xa3,0xdf,0x68,0x24,0x09,0x4c,0x75,0x79,0x76,0x3b, +0xb6,0x38,0x72,0x82,0x36,0xfe,0x48,0xd0,0xf9,0x0e,0x73,0xe2, +0xe4,0x09,0xfa,0x8f,0x03,0x5b,0x46,0xac,0x10,0x4d,0xc8,0x8d, +0x7f,0xda,0x40,0xa5,0xf0,0x93,0x59,0x9f,0x2c,0xb8,0x2d,0x0e, +0x5e,0x47,0x3b,0x39,0x1a,0x8c,0xc8,0x03,0x70,0xd6,0x60,0xd1, +0x99,0xce,0xe8,0xa7,0xe0,0xbc,0x80,0x72,0x8c,0x61,0x52,0x58, +0xca,0x46,0xa1,0x1a,0x36,0xb2,0xe2,0x7d,0xf1,0x19,0x71,0x0b, +0x71,0x0d,0x71,0xd9,0xc5,0x41,0xee,0x9f,0x1d,0x33,0x60,0x3f, +0xf4,0xef,0xc0,0x52,0x29,0x88,0x63,0xff,0x04,0xb3,0x4f,0xd8, +0xc4,0xba,0xef,0x76,0xdb,0xe3,0x16,0x1e,0x6f,0xc2,0x7f,0x2e, +0xf8,0xb3,0xec,0x79,0x2d,0x07,0xd6,0xc2,0x6b,0x82,0xca,0x13, +0x40,0x99,0x85,0x14,0x54,0x26,0xe3,0x41,0xf9,0x33,0xd3,0x46, +0x0b,0xa0,0x0c,0x83,0x50,0x99,0x15,0xe3,0x29,0x8e,0xb1,0x14, +0xfe,0x6a,0x65,0x71,0x12,0xc5,0xf7,0x35,0x99,0xf5,0xc5,0xc5, +0x85,0x1e,0x95,0xbc,0xaf,0xb7,0xa5,0xa7,0x7d,0xa0,0x4b,0x91, +0x5f,0x69,0x70,0x19,0x07,0xfb,0xc0,0x4a,0x8c,0x46,0x2b,0x70, +0x61,0xcc,0x96,0x4c,0xd0,0xc7,0xb1,0x76,0x39,0x96,0x3c,0x30, +0xd5,0x2f,0xe5,0x97,0xae,0x73,0xe8,0xd1,0x05,0x47,0xa3,0xd8, +0xf4,0x79,0x7f,0xeb,0xc2,0x24,0xd3,0x9c,0x16,0xde,0x24,0xdd, +0x3a,0xd3,0x39,0x87,0x2b,0x87,0x52,0x32,0x5b,0x54,0x7b,0xc5, +0x2a,0x2b,0x0a,0x14,0x83,0x09,0xd8,0xe8,0xa3,0x8d,0x68,0xd9, +0x77,0x42,0x75,0x63,0x50,0xef,0x25,0x17,0xef,0x0a,0x96,0x2b, +0x2f,0x2a,0x08,0xa8,0x77,0xb3,0xbd,0x0b,0x31,0x93,0x80,0x97, +0x60,0x89,0x5e,0xac,0x68,0x69,0x42,0x68,0x21,0x4c,0xb4,0xa4, +0x9c,0xa6,0x54,0x38,0x45,0x8a,0x2b,0xf2,0xcf,0x66,0xd5,0x71, +0x70,0xa5,0x1d,0x2b,0x98,0xb4,0xda,0xc4,0xda,0xd8,0x6a,0x59, +0x3c,0xbf,0x71,0xbc,0xe5,0x54,0xad,0x85,0x1c,0x4e,0xc6,0xc5, +0xe4,0x05,0xa8,0x81,0x39,0xaa,0x3d,0x06,0xad,0x66,0xca,0x53, +0xfc,0x04,0x9d,0x66,0x16,0xc3,0x68,0x03,0x70,0xdc,0x63,0xe9, +0x55,0xdc,0x38,0xdc,0x49,0x5e,0x41,0xe1,0x6c,0x16,0xd5,0x6c, +0xc9,0x3c,0x1c,0xf7,0x82,0x55,0x44,0xed,0x23,0xf8,0x5c,0x06, +0xcf,0x19,0x1d,0x9c,0x4a,0x7a,0x0d,0x31,0x76,0x96,0xc5,0x97, +0x1f,0xe5,0x14,0xcc,0x86,0x48,0xb9,0x37,0xdc,0x70,0x16,0xb8, +0xb1,0xd0,0x8b,0x6e,0x92,0x5a,0x9f,0x1b,0xcc,0xa4,0xae,0xc4, +0x8d,0xd0,0xc2,0x42,0x74,0x63,0x95,0xbf,0xe8,0x0a,0xa9,0x44, +0x8c,0x64,0x62,0x73,0x62,0x72,0xa2,0x73,0x39,0xc1,0xb6,0x55, +0xd4,0x67,0x22,0x73,0x22,0x73,0x22,0xf2,0xe0,0xe7,0xd3,0x30, +0x32,0x1e,0x06,0x67,0x07,0x36,0xf1,0xe8,0xe9,0x80,0x79,0xe1, +0x98,0x7e,0x2c,0xde,0x92,0xff,0xe7,0x04,0xf4,0x3b,0xf1,0x29, +0xe2,0xf0,0x96,0x83,0x01,0x07,0xa8,0xf9,0xfc,0xdb,0x12,0x9e, +0x30,0x7b,0x37,0xef,0xd9,0x1c,0x46,0xff,0x73,0xcb,0x12,0xce, +0x32,0x7a,0xe3,0x67,0xce,0xc5,0x31,0x4b,0x4a,0x6c,0xf8,0x6b, +0xb5,0xdd,0xf5,0xcd,0x8d,0x1c,0x7e,0xe9,0x69,0x16,0xdc,0xad, +0xcf,0x0b,0x7e,0xe2,0x2e,0x36,0x39,0x2b,0x29,0x3b,0x21,0x87, +0x13,0x0a,0x99,0xde,0x41,0x68,0x4f,0x6e,0x08,0xee,0x6b,0x59, +0xd1,0x9d,0xde,0xc6,0x5b,0x82,0xbb,0x96,0x54,0xfa,0x89,0xfc, +0x2a,0xb8,0xaf,0x90,0x62,0xc5,0x15,0xf3,0x48,0xae,0x43,0xb6, +0x6d,0x96,0xa5,0x14,0x2c,0x73,0x76,0x7b,0xc5,0x56,0x6a,0xa3, +0x17,0x4b,0x4f,0xdf,0x12,0x8b,0xe2,0x8b,0xce,0x14,0x49,0xc1, +0x32,0x33,0xcd,0xe7,0xaf,0x5e,0x53,0xe7,0xca,0x97,0x57,0x94, +0xd4,0xe6,0xd7,0xd3,0xf6,0xb7,0x93,0xf8,0xa2,0xd8,0xe2,0xe8, +0x22,0xd3,0x18,0x7e,0xcb,0x6c,0x07,0x75,0x03,0xad,0x06,0x6f, +0xbe,0xb0,0x3c,0xaf,0x26,0xb3,0x96,0x7b,0xce,0x7c,0xfd,0xb6, +0x96,0xff,0xfe,0x36,0xa3,0x76,0x66,0x03,0xb6,0x91,0xce,0xde, +0x34,0x53,0xf8,0x0b,0x97,0x89,0x93,0x8c,0x85,0x49,0x98,0x7e, +0x11,0xd2,0x85,0xc5,0xdd,0xe2,0x62,0x29,0xbb,0x1e,0x64,0x2a, +0x6c,0x48,0xba,0x4f,0x9a,0x77,0xaa,0x7b,0x6b,0x1a,0x1f,0x5a, +0xb0,0x33,0x77,0x47,0x2e,0x07,0xcb,0x9a,0xb1,0x9a,0x89,0x4b, +0x8f,0x49,0x3f,0x9d,0x2e,0x25,0x01,0x5c,0x63,0xbd,0x5e,0x5b, +0x56,0xe3,0xce,0x97,0xe5,0x97,0x94,0xe4,0x96,0x73,0x82,0x43, +0x33,0x89,0xa1,0x4b,0x38,0x2a,0x9d,0x7a,0x8e,0x6d,0x06,0xde, +0x06,0xb6,0x96,0x75,0x7e,0x7c,0x46,0x76,0x6a,0x6e,0x72,0x1e, +0xf7,0x07,0x93,0x41,0xbf,0x2d,0xcd,0xa3,0x25,0x95,0x0f,0x29, +0x0c,0xc9,0xdd,0x41,0x89,0x89,0x49,0x33,0x23,0x86,0xe3,0x0f, +0x64,0xb5,0x38,0x9a,0xe2,0x44,0x18,0xa4,0x08,0xc4,0x41,0x3d, +0xa0,0x21,0x4e,0xbf,0xcd,0x42,0xb2,0x64,0xea,0x4d,0xc4,0xdb, +0x62,0xec,0xf9,0x16,0xe1,0x94,0xd5,0x79,0x88,0x10,0x2f,0xdf, +0x66,0x05,0xeb,0x66,0x22,0x5a,0x3f,0x16,0xac,0xe9,0x02,0x10, +0x89,0x78,0xea,0x8d,0x70,0x8a,0x62,0xa2,0x0c,0x85,0x27,0x49, +0xf3,0x4f,0xf5,0x4b,0xf1,0xa2,0x4d,0xdd,0x95,0x1b,0x92,0x15, +0x42,0x59,0xd4,0xb2,0x26,0xda,0xd4,0x58,0x0a,0x8e,0x4f,0xa7, +0x5a,0xd0,0xa6,0xea,0x5a,0x6f,0xd0,0xb1,0xae,0x76,0xe3,0xcb, +0xf2,0x4a,0x8a,0x72,0x4b,0x39,0xc1,0xb1,0x89,0x44,0xa7,0x46, +0xa7,0x46,0xa5,0x4a,0x4d,0xdd,0xe0,0x69,0x68,0x6d,0x59,0xe7, +0x2b,0xd9,0x9b,0xfc,0x94,0x42,0xda,0xd4,0x74,0xff,0x14,0xbf, +0x54,0xaf,0x96,0xff,0xfe,0x36,0x93,0x26,0xa6,0xf7,0x31,0x2e, +0x22,0xbd,0x5a,0x3d,0xc2,0x12,0x28,0x85,0x14,0x56,0xf8,0x11, +0x53,0x28,0x1c,0xc1,0x45,0x6c,0xa2,0xa5,0x12,0x8c,0x65,0x1a, +0xd2,0x53,0x1b,0xd4,0x84,0x77,0xd8,0x8b,0x29,0xac,0xd8,0x0f, +0xe6,0x93,0x73,0xb0,0xdd,0x90,0x15,0x0c,0xce,0x11,0x43,0x3c, +0x74,0x8e,0xa5,0x76,0x71,0x0d,0xb9,0x02,0xdb,0x75,0x69,0xd5, +0x15,0xa2,0x8b,0x87,0xae,0xb0,0x28,0xc7,0x55,0x04,0x6f,0x75, +0xb5,0xc1,0x5b,0xfa,0x7d,0xa6,0xd8,0x9f,0x60,0xd5,0x79,0xca, +0x44,0xb1,0x6a,0x1c,0x81,0xaa,0xf5,0x58,0x45,0xbb,0xf6,0x14, +0x04,0x12,0x67,0xde,0x90,0x1c,0x7a,0x7d,0xfb,0xb5,0xad,0x5d, +0xa3,0xed,0x76,0xc4,0x6d,0x8e,0xf1,0x3b,0xe3,0x3b,0xda,0xe5, +0xa0,0xe3,0x21,0xc7,0x23,0xe7,0x1e,0x5c,0x06,0xa6,0x0b,0x58, +0x1b,0xca,0x3f,0x8c,0x7c,0xf4,0xbd,0x8c,0x82,0x33,0xb7,0x67, +0x6d,0xcf,0xa8,0x38,0x5f,0x72,0x3d,0xf7,0x8a,0x55,0x26,0xbf, +0x55,0xdf,0x5f,0xcf,0x57,0xb6,0x2b,0x81,0xfe,0xc4,0xf9,0x38, +0xf1,0x2d,0xf6,0x2d,0x16,0xf5,0x66,0x81,0xae,0x01,0x9e,0x5b, +0xfd,0xfc,0x8f,0xfa,0x1f,0xdd,0x78,0x2c,0x42,0xc6,0xb7,0x9d, +0x6c,0x3f,0xd5,0x16,0xc1,0x89,0x8b,0x3a,0x84,0xe5,0x6c,0xf6, +0xc9,0xec,0x93,0x59,0xa7,0x38,0x41,0x2e,0x04,0x11,0x1c,0xe3, +0x8f,0x4b,0x83,0x71,0xc5,0xe1,0x38,0x73,0x1e,0x16,0x45,0xc2, +0xca,0x54,0x98,0x55,0xcc,0x9d,0xed,0xed,0x21,0x6b,0xd2,0xf4, +0xf2,0x4c,0xcb,0x3b,0x1b,0x1a,0xba,0x0a,0xae,0x72,0x95,0x78, +0x93,0x8d,0xcc,0x8b,0x28,0x38,0x59,0xc4,0x81,0xd8,0x82,0xc0, +0x9c,0x28,0x3c,0x5e,0x54,0xaa,0x02,0x2f,0x5a,0x90,0x61,0x0a, +0x9b,0xf3,0xba,0x52,0x9b,0xac,0x53,0xf9,0x60,0x0b,0x6f,0x6d, +0x4f,0x73,0x0e,0x05,0x2b,0x3a,0x54,0x5e,0xc7,0x7c,0x8f,0xfa, +0xa9,0xe2,0x44,0x2b,0x50,0x65,0x76,0xe2,0x32,0x6b,0x1c,0x40, +0x7f,0x7e,0x2a,0x77,0xe2,0xef,0x3e,0x6d,0x79,0x50,0xf8,0x3a, +0xcf,0xa1,0xca,0xa9,0xc1,0xdd,0xd4,0x4b,0x6f,0xd3,0x9a,0xed, +0xe9,0xb6,0xfc,0x6f,0x59,0xb7,0x8b,0x2f,0x9e,0xbd,0xe8,0x78, +0xdb,0xf3,0xd7,0xad,0x1c,0x6e,0x51,0xe8,0x92,0xbd,0x25,0xdb, +0x5a,0x77,0x14,0xd9,0x06,0xf3,0xc9,0x7e,0x19,0x16,0x67,0xbc, +0x39,0x54,0x8a,0x23,0x7b,0x4a,0x83,0xea,0x82,0xf3,0xed,0x82, +0xf8,0xa4,0xcd,0xe9,0xf6,0xb1,0xb4,0xce,0x05,0x7f,0x27,0xc9, +0x06,0xb1,0x6b,0xa2,0xb5,0x9b,0x93,0xf8,0x7d,0x57,0x42,0xef, +0xec,0xec,0xe1,0x30,0x01,0xeb,0x48,0xd9,0xc3,0x94,0xf7,0x31, +0x6f,0xad,0xa3,0xf8,0x7d,0x0b,0x82,0x17,0x78,0x69,0x70,0x8a, +0x1a,0xd8,0x48,0x36,0x5b,0xb9,0x39,0xda,0x7a,0xd8,0x54,0xb8, +0xd4,0xfa,0x35,0x73,0x92,0x75,0xd0,0x20,0xa2,0x26,0xf8,0x0a, +0xca,0xe7,0x7a,0x09,0x93,0x52,0x99,0x58,0x1d,0x53,0xb9,0x21, +0x96,0xf7,0xc7,0x41,0x7a,0x38,0x70,0xfe,0xe2,0x26,0x67,0xbe, +0xae,0xb6,0xaa,0xb5,0xa8,0x83,0xb2,0x37,0xf4,0x15,0x67,0x18, +0x0a,0x33,0xb0,0x13,0xe3,0x60,0x9b,0x3e,0x7e,0xbc,0x78,0x49, +0xf8,0x47,0xef,0x22,0x7c,0xd4,0xc7,0x6d,0x94,0x21,0x74,0x0a, +0x9a,0xd4,0x02,0xae,0x11,0x72,0x08,0x0c,0xbf,0xfe,0xe2,0x6d, +0xda,0x27,0x2e,0x92,0xc9,0x18,0xff,0xd7,0x0c,0x18,0xb7,0x36, +0x57,0xce,0xa3,0xda,0xcd,0xf9,0x2f,0xbc,0x9e,0x71,0x1b,0x18, +0xbf,0x05,0x9a,0x33,0x70,0xc4,0x3a,0x0e,0xd5,0x7a,0x27,0x12, +0x98,0x0d,0x33,0xe4,0x38,0xe3,0x1d,0xfc,0x04,0x5f,0xf0,0xa7, +0xe7,0x30,0xbf,0x15,0xe7,0x7f,0x90,0x4d,0xc1,0x39,0x96,0x30, +0x47,0x1d,0x87,0xe1,0x17,0x18,0x36,0x0d,0x17,0x5a,0x50,0x4b, +0x36,0x9b,0xd5,0x11,0xa8,0xf5,0xb5,0x9e,0x4a,0x11,0x83,0xb0, +0x29,0x8f,0x88,0x5b,0x71,0x3c,0x1b,0x6b,0xa5,0x04,0x3f,0x51, +0xc6,0x29,0x85,0xee,0xa7,0x62,0x80,0x15,0x2b,0xac,0x1e,0x49, +0x3f,0x98,0xcc,0xc6,0xd1,0x0f,0x86,0x7f,0x8b,0xe9,0x4f,0xc5, +0x1d,0x56,0x2c,0x26,0x6b,0x90,0x32,0xdf,0x6a,0x9b,0x1c,0xd7, +0xb2,0x52,0x3e,0xa0,0xc2,0x49,0xee,0x4d,0x6f,0xe2,0x0e,0x37, +0x52,0xe2,0x5b,0x65,0x9b,0x2d,0xd5,0x05,0x56,0xb8,0xb4,0xd2, +0x3a,0xf1,0x4f,0x7f,0x7a,0x91,0x71,0x12,0x2c,0xb9,0x88,0x7b, +0xc8,0xb9,0xf2,0xb6,0xba,0xca,0xfa,0x4d,0x35,0xbc,0x9b,0xbd, +0x99,0xbd,0xa1,0x0f,0x07,0x67,0x1d,0xfe,0x5f,0x75,0xca,0x30, +0x44,0x88,0x23,0xf8,0x4b,0x30,0x2e,0x37,0x41,0x55,0x55,0xb9, +0x6b,0xf5,0xc7,0xf4,0xbf,0x63,0x60,0xd4,0x68,0xd8,0x80,0x71, +0x38,0x9c,0x49,0x32,0x52,0xfa,0x8b,0xa9,0x4f,0x49,0x6b,0x52, +0x53,0x14,0x63,0x2d,0x2b,0x88,0xf8,0x99,0x40,0x01,0x38,0x75, +0x8a,0x0e,0xa6,0x60,0x46,0xc9,0x4e,0xdf,0x2e,0x52,0xf7,0x0b, +0x82,0x3b,0x6c,0xe9,0x61,0xc5,0x77,0x40,0x57,0xc7,0x5a,0x30, +0x82,0xb5,0x0c,0xae,0x17,0xb5,0xc8,0xc9,0x8e,0x13,0x3d,0x57, +0xa5,0xdc,0x17,0x52,0x12,0xc3,0x49,0x82,0x2b,0x09,0x3b,0x12, +0x76,0x34,0xec,0x08,0x07,0xe5,0x38,0x9c,0x8d,0x2f,0x8a,0x29, +0x3a,0x9d,0x2f,0x3b,0xc3,0x1f,0xf0,0xdb,0xeb,0x11,0xe6,0xc5, +0xa9,0x63,0x28,0x33,0x8f,0x0d,0x3e,0x16,0x74,0x34,0xf8,0x58, +0x84,0x39,0x9f,0x72,0x3c,0xf9,0x44,0xf2,0x89,0xc3,0x68,0xbc, +0x07,0x87,0x78,0x4c,0xab,0xf5,0xe4,0x6b,0x61,0x50,0x1c,0x8c, +0x3d,0x05,0x76,0xdd,0x91,0xf2,0xd3,0xcd,0xd1,0x14,0x9b,0x4d, +0x62,0xe3,0x2c,0x94,0x9e,0x33,0x65,0x89,0x89,0xe5,0x6a,0xc2, +0x2c,0xb6,0x2a,0x5a,0x09,0x7c,0xc3,0xc9,0x93,0x9b,0x97,0xd8, +0xb2,0xcd,0x19,0x95,0x49,0x15,0x71,0x15,0xa3,0x41,0xbb,0x1d, +0x17,0x30,0x31,0xd5,0xa7,0xab,0xa3,0xea,0x2c,0x4f,0xf3,0xbb, +0x66,0xee,0x5c,0x69,0x3f,0x9b,0x7b,0xbf,0xe6,0xfe,0xab,0x26, +0x2c,0x11,0xad,0xa1,0xbc,0x89,0xc5,0x19,0x14,0x16,0x2d,0xd5, +0xb8,0xcf,0xe2,0x33,0x7c,0x40,0x9e,0xb3,0xb0,0x0e,0x34,0xf0, +0x28,0x6b,0xb5,0xdf,0x7c,0xbf,0xd9,0x41,0x2e,0x9b,0x7a,0xa9, +0x74,0xd7,0x1c,0xe3,0x24,0xeb,0x9a,0x4c,0x7e,0x67,0xf3,0xa6, +0x73,0xdb,0x2a,0x38,0x61,0xb5,0x1f,0x59,0x8c,0xea,0x8f,0xd8, +0x07,0xa8,0x42,0x16,0x6a,0x3c,0x61,0x05,0xd7,0x4d,0x04,0xbd, +0x64,0xe0,0xc5,0xf4,0x86,0xac,0x24,0x78,0xa4,0x0e,0x8e,0xb0, +0x8a,0x19,0xb6,0x44,0x74,0xc5,0x42,0x6b,0x4b,0xe1,0x7c,0xab, +0x25,0x83,0xbf,0x43,0x30,0xc1,0xe0,0x65,0x10,0xcc,0xc2,0x68, +0x0c,0x26,0x10,0x7c,0x0f,0x83,0xd9,0xd6,0x91,0x10,0xfc,0x88, +0x9e,0xbf,0xed,0x8d,0x58,0x88,0xf9,0x4f,0xe8,0xe1,0x90,0x0c, +0x0e,0x2d,0xeb,0xf9,0x1d,0xf2,0xa5,0x43,0x6c,0x3b,0xc6,0x4a, +0x7b,0x23,0x8c,0x89,0x38,0x1c,0xd7,0x9e,0x03,0x65,0x05,0x75, +0x47,0xe7,0x60,0xad,0x38,0xf1,0x91,0xa1,0x74,0xa3,0x77,0x12, +0xb1,0xc6,0x5c,0xa8,0x61,0x34,0xc5,0x01,0xc4,0x39,0x2c,0xba, +0x5a,0x0d,0x96,0x43,0x5d,0x7b,0xef,0x3b,0x19,0xe4,0xb3,0x07, +0x71,0xa8,0xee,0x2a,0xdc,0xec,0x92,0x4a,0x6d,0xc3,0x91,0xba, +0x47,0x7f,0x47,0xc1,0x24,0xea,0xa3,0x70,0x0d,0xb3,0x3a,0x27, +0xe0,0x37,0x55,0x30,0x63,0x1a,0xd2,0x52,0x1a,0xd5,0x3e,0xb3, +0xc6,0x71,0x4a,0x38,0x8a,0xba,0xdb,0x31,0xc7,0x89,0x25,0x13, +0xb8,0x3f,0x22,0x57,0x0d,0x2c,0x5f,0x0a,0x37,0x45,0x46,0xbc, +0xf9,0x82,0xdd,0x3f,0xde,0x79,0xe5,0x64,0x03,0xee,0x2c,0xaa, +0x7e,0x80,0x9f,0x1a,0xf1,0xa7,0x17,0xf0,0x63,0x03,0xfe,0xf8, +0x02,0x54,0x9b,0x70,0x0c,0x1b,0x9f,0x9e,0x94,0x77,0x26,0xcb, +0x3a,0x8e,0x0f,0xf3,0xef,0x7b,0xd7,0x36,0x91,0xc9,0x2b,0xcd, +0x28,0x4d,0xa3,0xce,0x6b,0x77,0x33,0x7a,0x30,0x71,0x45,0xb1, +0x25,0x31,0x94,0xae,0x2c,0x68,0xc6,0x76,0x26,0x2a,0x45,0x4a, +0x60,0x69,0x1d,0xc3,0x07,0x1b,0xfa,0x19,0x39,0x5b,0x56,0xfb, +0xf0,0x19,0xb9,0xa9,0x05,0x49,0x94,0xae,0x0c,0x64,0xc2,0x3d, +0xc2,0xbc,0x77,0x51,0xe4,0xb8,0xda,0x1a,0x26,0x33,0xee,0x3a, +0x56,0x86,0xba,0xe6,0x94,0xae,0x24,0x25,0x48,0x51,0x1a,0x94, +0xae,0xc8,0x5b,0xa1,0x85,0x3d,0x74,0xa4,0xc0,0x01,0x46,0x5d, +0x6f,0xfb,0x18,0x0d,0x23,0x46,0xdf,0x40,0x4b,0x46,0x2f,0x3d, +0xa8,0x55,0xf5,0x22,0x53,0x99,0x18,0x5f,0xaf,0x06,0xc3,0x25, +0x29,0x7b,0x2b,0x49,0x3d,0x94,0xc5,0x28,0x60,0x59,0x88,0xc2, +0x15,0x04,0x87,0xd0,0xf2,0x10,0xa9,0xac,0x25,0xa5,0x41,0x8a, +0x82,0x1f,0x59,0x71,0xed,0x1c,0x8a,0x62,0x86,0xce,0x63,0x71, +0x28,0xc5,0x7e,0x7d,0x25,0x89,0xcd,0x0c,0xa5,0x6c,0xe6,0xcb, +0x78,0x38,0x43,0xa8,0xa7,0xdd,0xf4,0x18,0xe2,0xe5,0x18,0xff, +0x87,0xd9,0x1c,0xdc,0x6f,0x01,0xfb,0x17,0xa1,0x07,0xfe,0x05, +0x46,0xac,0xc7,0x92,0x85,0x8b,0x71,0xe8,0xea,0x62,0x1b,0x1e, +0x46,0x3e,0x7c,0xf0,0x38,0x81,0x72,0x06,0xbc,0xd0,0x06,0x17, +0xa2,0x98,0x84,0x19,0x8f,0x17,0xc1,0xc8,0xc5,0x25,0x14,0x8a, +0xfc,0xf4,0xdb,0x92,0x7b,0x9e,0x0f,0xb9,0xde,0x1f,0x84,0x7a, +0x62,0x0e,0x59,0x6d,0x2c,0x76,0xe1,0x04,0x62,0x0a,0xb7,0x3b, +0x59,0x48,0x45,0x17,0x82,0xb3,0x5f,0xc1,0x6c,0xa6,0x6d,0x36, +0x85,0x49,0x8b,0x66,0xb3,0xbd,0x51,0xe7,0xe9,0x6f,0x25,0xb6, +0xb1,0x50,0x89,0x4a,0x64,0x0a,0xce,0xfe,0xc0,0x82,0xfb,0x48, +0x58,0x34,0x85,0x42,0x7b,0x7c,0x9d,0x4e,0xda,0x30,0xd1,0x9c, +0x6d,0x17,0xe7,0x10,0x39,0x78,0x40,0x36,0x26,0xe3,0xef,0x2c, +0x78,0x4a,0xb9,0xe6,0x97,0xe0,0x1c,0x58,0x42,0xa7,0xcd,0x53, +0x85,0x3e,0x89,0x28,0x8f,0xa8,0x38,0x55,0xca,0xf5,0x2e,0x66, +0x0e,0x7b,0x1f,0x74,0x3f,0x40,0x69,0xeb,0x0f,0x76,0xc0,0x32, +0xfb,0x5d,0xf7,0xba,0xed,0xf3,0xe2,0x14,0x6b,0x98,0xa8,0xb2, +0xa8,0xca,0x48,0x7a,0x4b,0x98,0x06,0x46,0xdc,0x7c,0x99,0x1c, +0x0d,0x3e,0xb2,0xed,0x30,0x35,0xd2,0xfb,0x99,0x98,0xcb,0x4a, +0x50,0xbe,0x9e,0x9c,0xca,0x3c,0x99,0x71,0x22,0x55,0xda,0x30, +0xbc,0x7f,0xbd,0x12,0xfe,0x6e,0x47,0x0e,0x05,0xd2,0x9f,0x20, +0x0e,0x0f,0x30,0x11,0x69,0x91,0x59,0x11,0xd4,0xb3,0x96,0x69, +0x93,0x88,0xb4,0x53,0x7d,0xc5,0x38,0xe6,0x70,0xe0,0x61,0xe9, +0x63,0xf1,0xd3,0x14,0x22,0x4e,0x54,0xac,0x10,0x26,0xb2,0x86, +0x38,0x98,0x88,0xf2,0xab,0x82,0x9c,0x41,0xc3,0x41,0xa2,0xfc, +0x1a,0x2d,0x88,0x72,0xe4,0x88,0x20,0x5f,0x2b,0xca,0xa5,0x87, +0x13,0x0e,0x04,0xc6,0x66,0x40,0xbf,0xd2,0xbb,0x65,0x9e,0x52, +0xae,0xe3,0x29,0x1b,0x71,0xe4,0xf6,0xaf,0xb9,0x8e,0xb7,0xc3, +0x60,0x9f,0x0f,0xde,0x05,0x2d,0xfc,0xb4,0x42,0x1c,0x5a,0x34, +0x21,0x9d,0xda,0xa4,0x74,0xe1,0x23,0x71,0xbe,0x63,0xfa,0xbb, +0x55,0xa7,0x8d,0x37,0x2f,0x37,0x95,0x6b,0xd6,0x68,0x51,0xce, +0x04,0xa1,0x04,0xd7,0x0b,0x77,0x61,0x3d,0x2b,0xce,0x70,0x24, +0xea,0xc8,0xd1,0xa5,0x5a,0xa5,0x4e,0xe8,0x19,0x38,0xa6,0x5d, +0x9d,0x12,0xd3,0xa1,0xea,0xac,0xd8,0x3d,0x9b,0x58,0x29,0xa6, +0xb5,0xb0,0x78,0x9e,0x32,0x1c,0x8a,0x1c,0xb5,0x60,0x88,0x11, +0xcc,0x77,0x48,0x6f,0xe2,0x65,0x49,0xf6,0x89,0x6e,0x49,0x45, +0x19,0xa5,0x45,0xd9,0xb9,0x6e,0x25,0x7c,0xc0,0x26,0x47,0x37, +0xcf,0x00,0xd3,0x7c,0xaf,0x82,0xa0,0x62,0x0e,0x0e,0xc0,0x3a, +0x31,0x1f,0xd7,0x81,0x27,0xb3,0x5e,0x6f,0xb2,0xfd,0x64,0x4a, +0xff,0xf9,0x97,0xc5,0x7f,0x36,0xdc,0xbc,0xcc,0xa1,0x55,0x27, +0x8b,0xa6,0xee,0x04,0x47,0xa9,0x77,0x02,0xab,0x06,0x15,0x68, +0x64,0x02,0xc3,0x70,0x2b,0x3b,0xcb,0xcf,0x72,0x9a,0x93,0x6a, +0xa6,0xf1,0xb3,0xea,0xda,0xf6,0x13,0xb7,0x28,0x7f,0x5e,0x18, +0x7d,0x7f,0x2d,0x2c,0x1c,0x23,0x1c,0x66,0xce,0x9c,0x53,0xc2, +0x9f,0x05,0x75,0xb2,0x52,0x54,0xbf,0x4b,0x6f,0xd2,0x00,0x61, +0x12,0x79,0x72,0xed,0x12,0x5b,0xba,0x39,0xfd,0x9b,0x55,0x5a, +0xd1,0x86,0xb3,0x25,0xab,0x74,0x96,0x5a,0xa5,0x28,0x7e,0xf7, +0xac,0x90,0x95,0x0e,0xb3,0xb8,0xf7,0xeb,0xee,0xbf,0x68,0xc2, +0x1c,0x6a,0x95,0xf2,0x9b,0x58,0x31,0x50,0x20,0x24,0x76,0x51, +0xa3,0xee,0xd3,0x15,0x85,0xad,0xbc,0xe6,0x75,0xfb,0xeb,0x41, +0xd7,0x25,0x25,0xe4,0x55,0x2e,0x2b,0x66,0x49,0xfb,0x13,0xff, +0xb8,0xd1,0xfa,0x38,0xe1,0x19,0x07,0x7f,0xf8,0x92,0xa5,0xcb, +0xee,0xb3,0x30,0x03,0x47,0x51,0x9b,0x34,0xe3,0x11,0x85,0xe3, +0x98,0x4d,0x60,0x64,0x1b,0x8e,0x84,0xc1,0x2f,0xe4,0x18,0x6a, +0xf1,0x10,0x07,0xf7,0x6d,0xd5,0xc7,0x73,0x8c,0xd5,0x5e,0xcb, +0xfd,0x36,0x7d,0x8a,0x96,0x6c,0x12,0x8c,0xca,0x7b,0x92,0x7b, +0xa4,0x8d,0x77,0xdb,0xe3,0x14,0xee,0xb0,0x97,0x83,0xcb,0x82, +0x1e,0x59,0xb8,0x8c,0xda,0x32,0x33,0x6a,0xcb,0x9c,0xcc,0xc1, +0x89,0x11,0x3f,0x60,0x31,0x49,0x68,0x8b,0xed,0x3e,0xdd,0x66, +0x1f,0xc3,0xef,0x37,0xda,0x6b,0x2e,0xc9,0x21,0x6f,0x93,0xe4, +0x90,0x65,0x19,0xcb,0x62,0x4d,0x1a,0x13,0xf8,0x3d,0x5d,0x81, +0x7d,0x72,0xc8,0x85,0x01,0x44,0x34,0xc3,0x22,0x03,0x2b,0xa1, +0xab,0xc5,0x8a,0xc1,0xab,0xb0,0x93,0xe0,0xce,0x55,0xb0,0x93, +0x05,0x7a,0x26,0xb0,0xf3,0x0e,0xee,0x64,0x5b,0x46,0xc2,0xce, +0xdf,0xe9,0x59,0xf9,0x89,0xa2,0x86,0xf4,0x0a,0x17,0x84,0x22, +0xa8,0x87,0x47,0xec,0x2b,0x7c,0x44,0xe0,0xbc,0xe8,0x89,0x0b, +0xfb,0x32,0x97,0x4c,0xf9,0x96,0xb9,0xa4,0x5c,0xfc,0x8e,0x15, +0x79,0x54,0x25,0x8f,0x21,0xec,0x5b,0x9e,0x92,0x93,0x8b,0xd8, +0x5e,0x23,0xba,0x98,0x5e,0x42,0xd8,0x5c,0xa9,0xe6,0x25,0x9c, +0x9c,0xcb,0x8a,0xd2,0xcb,0x4c,0x51,0xfd,0x7c,0x27,0xfc,0x05, +0x40,0xe7,0xe1,0x34,0x0a,0xcf,0xde,0xf6,0xc1,0x33,0x9c,0x42, +0xf1,0x19,0xf6,0x97,0x00,0x5a,0xdf,0x15,0xc5,0x0b,0x42,0x25, +0xbd,0xe2,0x7d,0x7a,0xc5,0x7b,0xd2,0x15,0x7d,0xa9,0x63,0x88, +0x35,0x93,0xae,0xd8,0xa7,0x22,0xa4,0x28,0x92,0xae,0xa8,0x42, +0xaf,0xf8,0x14,0xc2,0x17,0x48,0xdf,0xff,0x14,0x22,0x16,0xb0, +0xbd,0x66,0x38,0x9e,0xfc,0x01,0xe1,0x73,0x68,0xcd,0x71,0x7a, +0xe9,0x88,0xb9,0xec,0x1a,0xca,0xdf,0x26,0xf6,0x4c,0xbf,0xe5, +0x73,0x8f,0x83,0x5d,0x2d,0x78,0xfa,0x4f,0xe3,0x19,0xb8,0xcf, +0x0a,0x7c,0x19,0x3f,0x8d,0x39,0xab,0xb1,0xbf,0x51,0x81,0x35, +0x0f,0x83,0x2e,0x7d,0x78,0x7c,0xfa,0x25,0x17,0x89,0x3d,0x5d, +0xd0,0x13,0xc9,0x44,0x2f,0xfc,0xb4,0x04,0xfa,0xe9,0x70,0x7d, +0x59,0x5b,0xfe,0xed,0x7f,0x4e,0xe8,0x06,0x39,0x5c,0x66,0x9f, +0xe2,0x65,0x02,0xd7,0xc4,0x43,0x53,0x99,0xb8,0x92,0x49,0xf9, +0x93,0xcb,0xfd,0xaf,0x8f,0x86,0x53,0x2d,0x18,0xf7,0x08,0x0e, +0xb5,0xe0,0x64,0x26,0x39,0x2f,0xa5,0x38,0xbe,0x94,0x42,0xf8, +0x30,0xd7,0x6d,0x6e,0x41,0xbe,0x94,0xc0,0x58,0xc1,0xf6,0xc5, +0x78,0xd8,0x0a,0xc2,0x98,0x4d,0xda,0xd3,0x28,0x63,0xf7,0x4a, +0xa7,0x96,0x9d,0xaf,0x81,0xef,0xce,0x45,0xbf,0xe0,0xa2,0x98, +0xd3,0xf3,0x80,0xb3,0x82,0xe1,0x6e,0x91,0xc9,0x3c,0x85,0x17, +0xcf,0xfe,0x4b,0x75,0xe5,0x07,0x96,0x62,0x77,0x9e,0xdc,0x87, +0x43,0x4b,0x25,0x8d,0x95,0xfb,0x10,0xbb,0x54,0x4a,0x02,0xc3, +0x93,0x87,0x70,0x68,0x89,0x54,0xf3,0x10,0x62,0x97,0x50,0xcb, +0x88,0x0b,0x48,0x78,0x4e,0x60,0x79,0x48,0x86,0xd5,0x0e,0x3e, +0x29,0x30,0xd3,0x2b,0x76,0x0b,0x27,0x69,0xf5,0x1d,0x23,0x1d, +0xdd,0x8d,0x17,0x0a,0x6f,0x72,0x0d,0x18,0xc3,0xc6,0xa6,0xc7, +0x64,0x9e,0xc9,0x32,0x4e,0xe4,0x9d,0x26,0xac,0x5d,0xb8,0x44, +0xbb,0xce,0x89,0xaf,0xab,0x6e,0x6d,0xad,0xbb,0xcc,0xc1,0x66, +0x66,0xf3,0x06,0x33,0x5d,0x23,0x19,0xa7,0x29,0xde,0xea,0x3e, +0x0f,0xa1,0x1b,0xba,0x85,0x5b,0x4c,0xef,0x53,0x90,0xd3,0x1e, +0x9f,0x57,0x9c,0x83,0x05,0x6c,0x88,0xae,0xcd,0x44,0xbb,0x25, +0xdc,0x15,0x9d,0xda,0x55,0x3a,0x2a,0xa6,0xa1,0x9b,0x64,0xaa, +0x0e,0x4c,0x8c,0x9e,0x92,0x9c,0xb9,0x51,0xdd,0xf0,0xf6,0xb1, +0xd3,0x6f,0xc6,0xe7,0xd4,0xaa,0xae,0x35,0xfe,0xd3,0x27,0xd1, +0xf2,0xea,0xdf,0x01,0x44,0xb8,0x63,0x28,0xde,0x61,0x05,0x2f, +0xf8,0x48,0x30,0x14,0x56,0x40,0x28,0x83,0xa1,0x18,0x44,0x20, +0x14,0xd7,0x50,0xb0,0xa0,0xfc,0x85,0x28,0xfa,0x4b,0x62,0xc2, +0x1e,0x6c,0x54,0x56,0x54,0x76,0x44,0xb6,0x45,0x04,0x7f,0x70, +0xf3,0x81,0x2d,0xfb,0xb7,0x70,0xc8,0xdb,0xc0,0x60,0x66,0xaf, +0x7f,0xf8,0xc6,0xf0,0x4d,0x1c,0xfe,0x68,0x2d,0x84,0x37,0x33, +0xbd,0x41,0xe0,0x43,0x4d,0xec,0x62,0x4b,0x58,0xac,0x8e,0x23, +0x29,0x3c,0x1b,0x39,0x0d,0x57,0x58,0xc0,0x8a,0xaf,0x2f,0x0e, +0xe7,0xca,0x71,0xee,0x3b,0x18,0x4d,0xa1,0xdc,0xe8,0xe7,0xb0, +0xa0,0x15,0x17,0x7c,0x60,0x85,0x4b,0x38,0x8c,0xda,0x19,0x5b, +0x36,0x26,0x2f,0x26,0xff,0x4c,0x01,0x87,0xbf,0x62,0x16,0x41, +0xcf,0xf7,0xd4,0x48,0x08,0x3a,0xa2,0x09,0xf9,0x00,0xd3,0x9a, +0x70,0xda,0x35,0xf8,0x0e,0x64,0xa2,0x1a,0xca,0x20,0x60,0x1d, +0x06,0xe0,0x4c,0x73,0x6b,0xc8,0xc3,0x61,0xed,0x30,0x0c,0x56, +0x53,0x6e,0x3c,0x10,0xfe,0x83,0xcc,0xc1,0x92,0x3f,0x58,0x71, +0x19,0x65,0x16,0x9f,0xc1,0x73,0x3c,0x0b,0xde,0x0b,0x08,0x68, +0x4e,0x41,0x0a,0x39,0x15,0x0a,0xa1,0x9d,0x74,0x80,0x3e,0x6e, +0x7c,0x67,0x3c,0x0d,0x9d,0x17,0x32,0xd3,0xae,0xba,0xb4,0x06, +0x77,0x72,0x06,0xcc,0x76,0x53,0x47,0x19,0x2a,0x69,0x49,0x5b, +0x2d,0x07,0xdd,0x69,0xee,0x48,0xb8,0x43,0x11,0x69,0xbc,0x56, +0x83,0xd1,0x47,0xed,0xcc,0x2a,0x7e,0x65,0x7b,0xef,0xf0,0xae, +0xcb,0x50,0xb2,0xbe,0x0b,0x1e,0xe3,0xab,0x37,0x40,0x79,0xcb, +0x40,0x78,0x4e,0x84,0x01,0x73,0xc4,0x01,0x0c,0x6e,0x15,0x17, +0x93,0xd4,0xcd,0x69,0x5e,0x69,0x9e,0xe6,0x21,0x46,0xa1,0x1b, +0x76,0x71,0xe0,0x0a,0xbb,0xe0,0x6f,0xe4,0xfe,0xb2,0x98,0x8c, +0x83,0xc5,0x8b,0xec,0x86,0x3d,0xf1,0x66,0x30,0x28,0xf3,0x73, +0xf6,0x8b,0x82,0xd1,0x71,0x81,0x31,0x81,0x67,0x82,0xce,0xe6, +0xf3,0x1b,0xaf,0x58,0xfe,0xe1,0xd6,0x25,0x3d,0x81,0xb0,0x26, +0x94,0xe3,0x47,0xa0,0x1a,0x2b,0xfa,0x95,0x10,0xd4,0x7d,0x0d, +0xba,0x0c,0xea,0x4a,0xe9,0xc7,0x75,0x27,0xa1,0x2e,0xa3,0x58, +0x8e,0xfb,0x09,0x96,0xc0,0x3c,0x28,0xa1,0x37,0x60,0xe0,0xb7, +0xf6,0x6f,0xea,0x6b,0x3f,0xa5,0x12,0x93,0x6f,0xbb,0x9c,0x0b, +0xba,0xc0,0xe9,0x32,0x3b,0xf4,0x2c,0x97,0xe1,0xa0,0xe5,0xf9, +0x96,0xfc,0xa7,0x5f,0x2f,0xde,0x4c,0xfc,0x83,0xce,0xce,0x78, +0x8d,0x06,0xa3,0x4f,0xcb,0x73,0xea,0x78,0xd3,0xaf,0xed,0x2f, +0xed,0x6b,0xff,0xeb,0x37,0x70,0x9e,0x15,0x07,0x49,0xed,0x1f, +0x38,0x47,0x1c,0xc8,0xe0,0x30,0x13,0x22,0xc7,0x24,0x8b,0x0f, +0x74,0xe9,0xae,0xb2,0x80,0x55,0xd4,0x6d,0x8f,0xc0,0xa7,0x9d, +0x9d,0x10,0x0d,0xf9,0x38,0x1c,0x7e,0xec,0xbb,0x53,0x52,0xfc, +0x59,0xb9,0x94,0x66,0x5a,0xd2,0x18,0x54,0x63,0xf3,0xa5,0x8c, +0x99,0xa5,0xb4,0x4d,0xa5,0x4c,0xaf,0xa1,0x14,0x2e,0xb1,0x0a, +0xec,0x71,0x15,0x75,0xe8,0x83,0x53,0xc8,0x12,0xc6,0x3e,0x3c, +0x92,0x72,0xbe,0xdf,0xf1,0x31,0x68,0xad,0x47,0x2d,0x4c,0x30, +0x84,0x04,0x4b,0x76,0xd5,0xe1,0xf5,0x61,0xc6,0xaa,0x7a,0xf5, +0xfa,0x35,0xb2,0x22,0x4f,0x2b,0xfe,0x9c,0xd7,0x0d,0xbb,0x1b, +0xd6,0x1e,0xe3,0x57,0x2f,0xc0,0x49,0x0b,0x2b,0xe8,0xa2,0x9a, +0xfa,0xe4,0xfe,0x9b,0xb3,0x30,0xe8,0xaa,0xd5,0x25,0x0b,0xb9, +0x6d,0x55,0x13,0x6f,0xd2,0xaa,0xd5,0xb5,0xaa,0x9d,0x4b,0xb9, +0x15,0x75,0xef,0xb9,0x4a,0x2b,0xa4,0x88,0x45,0xec,0xda,0x82, +0x2d,0xd7,0x55,0xdf,0x33,0x75,0x99,0xe9,0x75,0x6a,0xe0,0xcf, +0x6e,0x48,0x54,0x52,0x16,0xec,0x28,0x8c,0x33,0x9e,0x8a,0xdc, +0x32,0x3c,0xb9,0x24,0x87,0xda,0xd9,0xb8,0x97,0x40,0x9e,0xd7, +0xc0,0x40,0xda,0xfd,0xb3,0x74,0x32,0xa8,0xa9,0x43,0xea,0xdc, +0xec,0x6e,0x1e,0x4f,0x3f,0xc0,0xe1,0xf7,0x8c,0xdf,0x73,0x18, +0x44,0x6d,0xac,0xa0,0x2a,0x17,0x55,0x19,0xe1,0x24,0x4e,0x27, +0xbd,0x63,0x65,0xc2,0x65,0x66,0xab,0x9b,0x9b,0xad,0xad,0x03, +0x27,0xda,0xe3,0xab,0x8b,0xf5,0xc2,0x59,0xfb,0x8b,0xf0,0x0a, +0xd5,0x98,0xda,0xfa,0xb2,0xe6,0x9c,0x7a,0x4e,0xfc,0x4d,0xfc, +0x89,0xc0,0x7a,0xe1,0x2c,0xae,0xa7,0xbe,0xa5,0x47,0xd1,0x40, +0x5d,0x13,0x36,0xc1,0x02,0x43,0x5c,0x40,0xef,0xcb,0x28,0x43, +0x34,0x54,0x44,0x82,0x21,0xdb,0x7b,0x48,0x5c,0x47,0x70,0xd5, +0xce,0xf1,0xba,0x38,0x42,0x55,0xee,0xa6,0x74,0x1b,0xa6,0xa5, +0xc2,0x00,0x30,0x54,0xf9,0xac,0x08,0xef,0xe8,0x6d,0x61,0x15, +0xbf,0xa0,0x1b,0x69,0x13,0xff,0x35,0x87,0x64,0x3a,0xc4,0x72, +0x73,0x90,0x63,0xe0,0x79,0x08,0x84,0xd7,0x6d,0xf8,0xba,0x2f, +0xfb,0xca,0x15,0x45,0x07,0x59,0x89,0x1d,0xef,0x0d,0xa7,0x62, +0xd5,0x5d,0x43,0x1c,0xae,0x48,0xa6,0x18,0x0b,0x9f,0xa0,0x3b, +0x09,0x2d,0x0c,0x4d,0x0b,0xc9,0xb6,0xda,0xc6,0xa7,0x6e,0x49, +0xd8,0x16,0xb7,0x99,0x13,0x8c,0x8f,0x52,0xd7,0xcc,0xa4,0x65, +0x27,0x67,0x25,0x66,0x59,0x65,0xf1,0x3b,0xfd,0xb7,0xb8,0x05, +0x6c,0xe4,0xc4,0x07,0xf3,0x19,0x3c,0x19,0x8a,0x2a,0x46,0x94, +0x5a,0xb4,0x39,0x29,0x5d,0x84,0xe9,0x29,0x30,0x03,0x92,0x54, +0x2a,0x15,0x71,0x6c,0xaf,0xf2,0xef,0x24,0x38,0x2f,0x24,0x2d, +0x28,0xc3,0x26,0x80,0x4f,0xdf,0x9a,0xbc,0x35,0x31,0x90,0x13, +0x5a,0xc4,0x10,0xd2,0x78,0xbd,0xe0,0x41,0xe4,0x2b,0x4e,0xde, +0x82,0x81,0x4c,0x6c,0xf1,0x99,0xc2,0xc8,0x3c,0xcb,0x78,0x3e, +0x70,0x9c,0x0d,0x2a,0xe9,0x2e,0xaf,0xf6,0xe4,0x33,0x32,0xd3, +0x8b,0x52,0xcb,0x12,0x8c,0xb3,0xcc,0x4b,0xad,0x9c,0xac,0x64, +0x4e,0x3a,0xae,0x45,0x0e,0xfc,0xc5,0xb2,0xce,0xfa,0xba,0xb6, +0x2a,0xdb,0x66,0x87,0x6e,0xa7,0xa2,0x06,0xde,0xa4,0xc6,0xba, +0xc6,0xb5,0x91,0x43,0x77,0xa0,0xeb,0x55,0xef,0x12,0xcc,0x3c, +0x8b,0x1f,0x9d,0x60,0xa2,0x1e,0x6e,0x70,0xb8,0x82,0x8d,0x4c, +0xe0,0xd1,0x80,0x63,0x81,0xc7,0x4e,0x53,0x18,0xd7,0x2f,0xea, +0x6d,0xf4,0xdb,0x58,0x6e,0x45,0xbb,0x30,0xe9,0x1c,0xfb,0x77, +0x12,0x39,0x71,0xfc,0xf8,0xf1,0x13,0xaa,0xc0,0x33,0x07,0x96, +0x6d,0xd7,0xf7,0x91,0x79,0xcb,0xb7,0x9e,0xdf,0xf3,0x1b,0x27, +0x4e,0x5e,0x49,0xba,0x61,0xbd,0x31,0x8b,0xeb,0xc7,0x91,0xf3, +0xb0,0x7e,0x03,0x2d,0x38,0xd1,0x3b,0xa0,0xcf,0x98,0x1c,0x30, +0x3e,0x64,0x24,0x69,0x1d,0xaf,0x51,0x14,0x11,0x63,0x21,0xa4, +0x9b,0x15,0xe3,0xc4,0x5b,0xc4,0x66,0xa7,0xcd,0x4e,0xeb,0x10, +0x0e,0x72,0x81,0xed,0x40,0x96,0x2e,0x29,0x95,0x4e,0x7c,0x6a, +0x0a,0x6a,0xb8,0x0f,0x89,0x19,0xf5,0x88,0xf5,0xac,0xdd,0x2e, +0xbb,0x30,0x9b,0x3d,0xf1,0x26,0x3c,0xfc,0x58,0x00,0x4c,0x39, +0x0c,0xa8,0xe7,0x84,0xa3,0xb8,0x88,0xac,0x65,0xdc,0xf7,0xc6, +0x50,0x32,0xa3,0x07,0x4b,0x7b,0xc4,0x7a,0x23,0x98,0xc0,0x1e, +0xc5,0x42,0x53,0x8a,0x54,0xd7,0x61,0xff,0x32,0x6a,0x0b,0x4c, +0x61,0xf0,0x4d,0x98,0x72,0x02,0x5a,0x38,0xe0,0xc4,0x0d,0xcc, +0xf2,0x8c,0xad,0x77,0x55,0x7f,0xa3,0x5c,0x51,0x4a,0xd3,0xb1, +0x92,0x35,0x4f,0xa5,0x33,0xf0,0x81,0xe2,0x21,0x59,0xb7,0x02, +0x5f,0xe1,0x26,0xc6,0xf0,0x98,0xec,0x88,0xad,0xaa,0xab,0x9b, +0x9d,0x8f,0xe5,0xa6,0x34,0x23,0xbe,0x2e,0xaf,0x3c,0xbf,0xa8, +0x74,0x37,0x4e,0xf1,0x9f,0xa3,0x3f,0xb7,0xd9,0x8e,0xff,0x1b, +0xa6,0x67,0x82,0x01,0xd4,0xaa,0x80,0xba,0xc2,0xb5,0x45,0x1c, +0xc8,0x8a,0x2b,0xb0,0x80,0x04,0xdf,0x08,0xbc,0xb8,0xa5,0xc7, +0x7e,0x0b,0x9f,0x6b,0x94,0xb5,0x3e,0x45,0x9b,0x83,0x48,0xb0, +0x24,0x68,0x28,0x04,0xd2,0x39,0x25,0x6a,0xe0,0xcf,0xe4,0x09, +0xfc,0xbb,0x90,0x45,0x5f,0xca,0xd1,0xc1,0x9c,0x7a,0x59,0x73, +0x56,0xf1,0xf3,0x48,0x5a,0x6a,0xa4,0x25,0x1c,0x0a,0x93,0xc8, +0x4c,0x5c,0xfb,0x86,0x15,0xf2,0x47,0xce,0x44,0x83,0x37,0xac, +0x11,0xbe,0x20,0xb0,0xd6,0x18,0xd7,0xa2,0x1f,0xa8,0x19,0xe3, +0xd1,0xee,0x16,0xe1,0x98,0x55,0x37,0x1c,0x35,0xa6,0xab,0x56, +0x19,0xc6,0x59,0x91,0x9b,0x70,0x40,0x91,0x81,0xf2,0xde,0x37, +0xac,0xc2,0x05,0x5c,0x49,0x7b,0x75,0x67,0x57,0x49,0xb3,0x6b, +0x15,0xef,0x67,0x6b,0x63,0x66,0xed,0xba,0xb9,0x23,0xe4,0x5c, +0xf8,0x75,0x0e,0x2c,0x04,0x75,0x51,0xa7,0xb7,0x9a,0xf1,0x3b, +0xb8,0xe9,0x60,0xc0,0xe1,0x38,0x53,0xfe,0x63,0x32,0x4c,0x2a, +0xfe,0xb3,0x60,0xaf,0x9c,0x37,0x0b,0x59,0xb3,0x73,0xdd,0x2e, +0x4e,0x18,0x42,0x71,0x7e,0x1e,0xca,0xae,0xe1,0x78,0x58,0x87, +0x23,0x8b,0x5b,0xf8,0xd5,0x6d,0x16,0xed,0xee,0xe7,0xb9,0x16, +0xe1,0x25,0xc1,0xef,0xf1,0x12,0x7c,0x2f,0x35,0x7a,0x3d,0x41, +0x7d,0xd0,0x01,0x7d,0x46,0xc8,0xc4,0xd5,0xd2,0xc2,0xb9,0x04, +0xa3,0x58,0x71,0x9c,0x11,0xa1,0x46,0x4c,0x17,0xf5,0x19,0xd9, +0x20,0x5a,0x70,0xa4,0x05,0x65,0x45,0xb7,0xa2,0x8a,0xe0,0x3c, +0x6c,0x04,0xb3,0x0d,0x48,0xb1,0x0d,0xcc,0xdb,0x80,0x5e,0x8a, +0x08,0xf0,0x62,0xcf,0x61,0x37,0xf9,0xf7,0x3b,0x63,0xa8,0x60, +0x36,0xa0,0xd2,0xf8,0x59,0x38,0x76,0x4d,0xa9,0x8c,0x6f,0xcb, +0x6f,0x2d,0x6b,0xac,0xe6,0xb0,0xf0,0x42,0x83,0xb0,0xcf,0xee, +0x22,0xfc,0x25,0xd6,0xb3,0x75,0x8d,0x15,0xad,0xb9,0xed,0x9c, +0x90,0xc1,0xf4,0x8e,0x15,0x27,0x11,0x30,0x10,0xf6,0xa1,0x01, +0xed,0x36,0x2b,0xe8,0x93,0x58,0x07,0x49,0x6e,0x2f,0x36,0xa5, +0x58,0x0d,0x04,0x0c,0xb2,0xa1,0x1c,0xf9,0x12,0x0b,0x73,0x46, +0xd2,0xea,0x67,0x4c,0x4d,0x42,0x7c,0x85,0x54,0x1d,0x62,0x03, +0xda,0xb4,0xfa,0x33,0xfc,0x43,0x64,0xf0,0xb6,0x9d,0xed,0xfd, +0x77,0x3e,0xc9,0xdd,0x5a,0xe6,0x99,0xe1,0x5f,0x52,0xc8,0x6f, +0x2d,0xf0,0x29,0xf1,0xcf,0xe1,0x60,0xbb,0xa7,0x54,0xe7,0x95, +0xe9,0x5f,0xd4,0x57,0x57,0xec,0x97,0xc3,0xfd,0x49,0xfd,0x96, +0x8b,0x8b,0xa9,0x8b,0xcd,0xe6,0x2c,0x17,0xbe,0xbd,0xa8,0xbd, +0xaa,0xaa,0x86,0xc3,0xca,0x12,0xe2,0xed,0xb9,0xc1,0xd6,0x6e, +0x63,0xb6,0x0b,0xdf,0x56,0xd2,0xd5,0x54,0x52,0xce,0x29,0xcc, +0xc4,0x1b,0xc4,0x93,0xd9,0x72,0x20,0xb2,0x44,0x4d,0xb0,0x84, +0x01,0x1d,0x22,0x6f,0xf6,0x8c,0x3d,0x86,0x99,0x7e,0xa8,0x3c, +0x6e,0x02,0x07,0x4f,0xd1,0x9f,0x4d,0xc8,0x88,0xcd,0x3a,0x93, +0x6d,0x11,0xcf,0x87,0xfb,0x87,0x6d,0xda,0xb9,0x99,0xc3,0xd9, +0xe2,0xc4,0xb6,0x56,0xe8,0x65,0xf6,0xee,0xab,0x76,0x04,0x1e, +0xbe,0x3b,0x0b,0xe3,0x8f,0x43,0xc7,0xe8,0xdb,0xa2,0x1d,0xa3, +0x9d,0xbe,0xe3,0x82,0x6a,0x15,0x53,0xde,0x97,0x5a,0x6c,0x1d, +0x6b,0x9d,0xaa,0xd4,0x1b,0xbf,0x93,0xbc,0x83,0xeb,0xd3,0x58, +0xbc,0x8e,0x33,0xc9,0x47,0xb8,0x3e,0x51,0x7a,0xa8,0xab,0x38, +0x48,0x5a,0x7a,0xbb,0xd0,0x9d,0xc5,0x94,0x5d,0xe8,0xbd,0x06, +0x55,0x54,0xeb,0x2d,0x94,0xee,0x83,0x7a,0x12,0x04,0x43,0x31, +0x9d,0x8d,0xac,0x50,0x88,0xcf,0x48,0x13,0x18,0x94,0xa3,0x41, +0x5d,0xdf,0xb1,0x01,0x5c,0x2b,0x51,0xc6,0x9e,0x4e,0xfc,0x5f, +0xcc,0xbd,0x67,0x74,0xd5,0x56,0xd7,0x35,0x0a,0x81,0x23,0x89, +0x10,0x48,0x42,0xb2,0x89,0x6c,0x92,0x63,0x08,0xbd,0x84,0xde, +0xc1,0xf4,0x66,0x70,0xef,0xbd,0x57,0xdc,0xbb,0x8d,0xbb,0x8d, +0x69,0x01,0xdc,0x7b,0xef,0xbd,0xf7,0xde,0x2b,0x9d,0xd0,0x03, +0x84,0x04,0x92,0x10,0xd2,0x1b,0x4b,0x27,0x4b,0x7e,0xbf,0xbb, +0x45,0x9e,0xf7,0xbd,0xdf,0x8f,0x3b,0xee,0xb8,0x3f,0xbe,0x1f, +0x77,0x1c,0x8f,0x63,0x21,0x1b,0x1f,0x69,0x6b,0xed,0x35,0xe7, +0x94,0xd6,0x5e,0x33,0x29,0x27,0x21,0xc3,0x24,0x8d,0x8f,0x09, +0x8e,0xf6,0x8f,0x0a,0xe4,0x70,0x25,0x93,0x94,0x99,0x94,0x99, +0x98,0x69,0x96,0xcd,0xbb,0x1e,0x32,0x50,0x3d,0x6e,0x58,0x63, +0xcd,0x17,0xe4,0x15,0x16,0xe5,0x97,0x70,0xa8,0x25,0x04,0x35, +0xb1,0xe2,0x0f,0xe0,0x40,0xf2,0x2a,0x73,0xaa,0x32,0xaa,0xa4, +0xdf,0xd9,0xa3,0xbe,0x55,0xd3,0xac,0xda,0x92,0x2f,0xc8,0x2d, +0x28,0x94,0x7e,0xe7,0xf8,0x00,0x0b,0x0f,0x21,0x9f,0x98,0xe1, +0xe6,0x2e,0x16,0xf9,0x99,0x1d,0xb0,0xd9,0x82,0x75,0x98,0x69, +0x82,0x9b,0x7b,0x58,0x0c,0xa2,0x00,0x83,0x9d,0xc2,0x2f,0xd0, +0xc9,0xea,0x6e,0x21,0x62,0x68,0x9b,0x10,0xca,0xe0,0xbc,0x99, +0xff,0x6e,0x88,0xa1,0x3b,0x88,0x10,0x6a,0x21,0xd2,0x5d,0x1f, +0xe3,0x36,0x02,0x33,0xd2,0x81,0xad,0xb8,0x56,0xee,0x5a,0xcb, +0x1f,0xf0,0xc4,0x69,0x5e,0xcb,0xa2,0x38,0xc1,0xae,0x8c,0xfc, +0x18,0x0a,0x32,0xcf,0x27,0xee,0x25,0xad,0xfc,0xce,0x12,0xe4, +0xca,0xd7,0xa6,0xbd,0xb1,0x19,0x8d,0x22,0x43,0x53,0x57,0xa5, +0xd3,0xcf,0x0a,0x47,0xdb,0x43,0xb8,0x48,0xde,0x6f,0x20,0x7b, +0x08,0xab,0x33,0xc1,0x17,0xaa,0x94,0xa9,0xac,0x83,0x13,0xc6, +0xc4,0x0a,0x17,0xab,0xe3,0x9c,0xdd,0x1b,0xcb,0x35,0xf9,0xb2, +0xca,0x92,0x9a,0xa2,0x7a,0x4e,0xb4,0x1f,0x11,0xae,0xb2,0x15, +0x63,0xc5,0x57,0x0b,0xae,0x72,0xf0,0x50,0xba,0x03,0x45,0x81, +0xae,0x0f,0xf7,0xc2,0x5c,0x50,0xed,0x43,0x55,0xfa,0x4d,0x77, +0x80,0xc6,0x57,0x41,0x43,0x6e,0x6b,0x46,0x83,0x4e,0x16,0x1f, +0x6e,0xe3,0x6f,0xec,0x67,0xc3,0x51,0xe4,0xc8,0x69,0xc8,0x6e, +0xce,0x6a,0xd3,0xcd,0xe5,0x6d,0x50,0x7e,0x18,0xdf,0xdf,0xbd, +0xae,0x42,0x8f,0xaf,0x69,0x28,0xaa,0xcc,0xaf,0xe5,0x44,0xc7, +0xe1,0x0e,0x61,0xf7,0x00,0x8b,0xa9,0x52,0xd7,0x8a,0x9d,0x54, +0x4a,0x5d,0x4e,0x90,0xfa,0x08,0xe0,0x4e,0xec,0x96,0x9e,0x5d, +0xec,0xc4,0xb9,0xac,0xd1,0x4c,0x94,0x7e,0x44,0xd8,0xb9,0xc2, +0x79,0xc5,0x47,0x44,0xcc,0x15,0xd6,0x08,0xb9,0xf4,0xf8,0xb3, +0x6a,0xd3,0xde,0xf4,0x29,0xb3,0x1b,0x14,0x7d,0xf5,0xc1,0x85, +0x89,0x3a,0x19,0xee,0x7c,0xca,0x91,0x13,0xaf,0xc2,0x6a,0xaa, +0x78,0x7f,0xa3,0x8a,0x57,0x8e,0xc3,0x94,0x26,0x75,0x2e,0x63, +0x45,0x2a,0x3f,0x88,0x67,0x98,0x5b,0x88,0x2b,0x9d,0xaa,0xef, +0xfd,0x34,0x22,0xae,0xd7,0x79,0x75,0x98,0x45,0xf5,0x58,0x5c, +0xb9,0x18,0x3f,0x91,0x77,0x5a,0xca,0x5e,0x4b,0xab,0x0d,0x96, +0x82,0x87,0xf2,0xed,0x3f,0xc5,0x95,0xac,0x4f,0xa4,0x4f,0x74, +0xc0,0xe9,0x1c,0x5d,0x7e,0xa2,0xe8,0x87,0xe6,0x2b,0x75,0x9c, +0x30,0x0f,0xae,0x90,0x25,0xd8,0xf9,0xc7,0x9b,0x6e,0x64,0x9d, +0xf8,0x16,0x76,0x32,0x0b,0x31,0x8e,0x3c,0x6c,0x18,0xef,0xec, +0x1d,0xb0,0xaa,0xe3,0x2d,0x4d,0x34,0xac,0x0e,0x9e,0xe4,0xe0, +0xcb,0xe7,0x64,0xc8,0xe5,0x9e,0x51,0x9f,0x69,0x5d,0x3b,0x6f, +0xd4,0x71,0xa8,0x5b,0x57,0x72,0x29,0xba,0xaa,0x88,0x26,0xdf, +0xe8,0x6c,0xc6,0x3d,0x46,0xc2,0xfc,0x3e,0x76,0x62,0xd1,0x7f, +0xb7,0x5a,0xd3,0x7b,0xd3,0x6a,0x4d,0x6a,0x35,0xa6,0x37,0x20, +0xea,0xfe,0x77,0xab,0xb5,0x50,0x7a,0x0a,0x7b,0xf7,0x93,0xa8, +0xfa,0xc0,0xf6,0x60,0xe9,0xfe,0x65,0xb6,0x5b,0xb6,0x65,0xba, +0x3d,0x07,0x57,0x4e,0x90,0x5e,0x9c,0xc3,0xe6,0xd4,0xe7,0x0d, +0xa4,0x35,0x1a,0x66,0xf3,0x91,0x96,0xfe,0xda,0x7e,0xd6,0x54, +0x11,0xe1,0x47,0x0c,0x6a,0x46,0xe3,0x1c,0x5b,0x9c,0x21,0xef, +0x75,0x92,0x75,0xc2,0xc7,0xa9,0xf0,0x1e,0x98,0x2b,0xdf,0xa5, +0x13,0x3d,0x9e,0xfc,0x0a,0xf9,0xcb,0x29,0x97,0x3a,0x45,0x4c, +0xcc,0xb7,0x99,0x6f,0x71,0x2f,0x34,0xe5,0xbf,0xaa,0xfc,0xb6, +0x7b,0x78,0x80,0x13,0xd4,0xe2,0xc9,0x62,0xcc,0xff,0x93,0x15, +0xd7,0xe0,0x0d,0x02,0x6f,0x35,0xfd,0x79,0xe3,0xce,0x1d,0xa7, +0x26,0x5e,0xed,0xd8,0x2a,0x35,0x7c,0xcb,0x4e,0x2a,0x82,0x99, +0x49,0x20,0x1f,0x67,0x48,0x4b,0x75,0xe6,0xa4,0x91,0xfd,0xdb, +0xf0,0xdd,0x1d,0xb8,0xd8,0xa6,0xc8,0x88,0x07,0x79,0x33,0xf0, +0x4f,0x9f,0xbe,0xe2,0x9c,0xd0,0x97,0xdc,0x6f,0x1c,0xe9,0xea, +0xe9,0xb7,0xac,0xe3,0xad,0x4d,0xb4,0x2c,0x0f,0xd3,0x31,0xb8, +0xfd,0x2d,0x19,0x70,0xb9,0x6d,0xd8,0x6b,0x5a,0xd7,0xc6,0x9b, +0x74,0x1e,0xed,0xd2,0xaf,0xa5,0x10,0x75,0x4a,0x41,0xa3,0xf9, +0x03,0x26,0xad,0x2e,0xb9,0x21,0xa9,0x9a,0x03,0x59,0xaf,0xb8, +0x14,0x63,0x18,0x0c,0x8f,0xc6,0x23,0x26,0xb8,0x51,0xde,0xe3, +0x28,0x1b,0x82,0xa3,0x49,0xa0,0x0e,0x59,0xca,0x94,0x69,0x1f, +0x66,0x63,0x5c,0x62,0x9c,0xc2,0x1d,0xb9,0xf5,0xf8,0x1a,0x66, +0xe0,0xf0,0x16,0x69,0xf5,0xe3,0x2d,0xa6,0x25,0x23,0x43,0x2a, +0x48,0xa1,0xf4,0xeb,0x2e,0xfc,0x4d,0x47,0x11,0x80,0x8e,0xe2, +0x91,0xff,0x69,0xd8,0x76,0x68,0x40,0xdc,0x6c,0x20,0x79,0x84, +0xff,0x3b,0x8a,0x78,0xce,0x82,0x5e,0xb3,0x3d,0x7f,0xb0,0xf0, +0xa7,0xd4,0xa6,0xed,0x3c,0x0d,0x83,0x3d,0x36,0x84,0x9e,0xcf, +0x1e,0x98,0xc1,0x0a,0x2f,0xa3,0xe9,0xd9,0x9f,0xff,0x93,0xc5, +0xb5,0x33,0xe1,0x3c,0xce,0xc4,0xf3,0xcc,0x0a,0x9c,0x4e,0xa2, +0x06,0xfd,0xbf,0x0a,0xea,0x34,0x0f,0xe1,0x73,0x8c,0x72,0xf7, +0xa6,0x68,0x72,0x18,0x03,0xd6,0x24,0xf2,0xa0,0xf7,0x86,0x93, +0xc7,0xda,0x3d,0xf8,0x86,0x47,0xc5,0x3f,0xa6,0x7d,0xc1,0x09, +0xa7,0x28,0xc9,0xeb,0x75,0xbe,0x6e,0xd4,0x69,0x52,0xdf,0xca, +0x5b,0x74,0x9e,0xe8,0x32,0xaa,0xe3,0x70,0x14,0x0f,0x91,0xdb, +0x8d,0x83,0x5d,0x9d,0x03,0x16,0x35,0xbc,0xad,0x89,0x9e,0xa5, +0x9a,0x0b,0x3d,0xef,0x18,0x45,0x0b,0xa9,0xc5,0x0f,0x61,0x01, +0xce,0x81,0x22,0xe4,0x6b,0xc6,0x79,0x1a,0xea,0xef,0xe2,0xfb, +0x30,0x4d,0x0f,0xe6,0x72,0x7b,0x18,0x5d,0x9c,0x8b,0x32,0x9c, +0x86,0x89,0xf8,0x6e,0xad,0x26,0x0f,0x59,0xd2,0xca,0x2d,0x98, +0x53,0x0b,0x1f,0x72,0xc2,0x4c,0x31,0x9b,0x8c,0xe3,0x3d,0x38, +0xa7,0x26,0x8e,0x53,0xd8,0xf8,0x5d,0x0d,0x7f,0xc7,0xed,0x9a, +0xff,0xcc,0x19,0x17,0xd7,0x41,0x1a,0xcd,0xe3,0x17,0x15,0x5f, +0x13,0x0b,0x34,0x3a,0x86,0x0b,0x17,0x22,0xd7,0x60,0xc8,0xd7, +0xd7,0xd7,0x77,0xd5,0x8e,0x71,0xe2,0xf0,0x98,0x62,0x17,0x5b, +0x76,0xad,0xf8,0x5e,0xf6,0x63,0x4e,0xb1,0x6a,0xea,0x19,0x59, +0x58,0xb9,0xb1,0x61,0x7f,0xfb,0x6f,0x8f,0xee,0xfc,0xd2,0x0a, +0xb3,0xb9,0x6e,0x4c,0x87,0x43,0x30,0x38,0x82,0x83,0xb0,0xe1, +0x04,0x6e,0xc0,0x26,0x1d,0x68,0xc2,0x43,0x58,0xa2,0x2d,0xe4, +0xb1,0x76,0xcb,0xd5,0xb6,0xad,0x55,0xdb,0x32,0x79,0xfc,0x9e, +0xfe,0xb7,0x06,0xae,0xfc,0xc0,0x86,0x6b,0xaa,0x4f,0x8f,0x6f, +0x37,0x5d,0xe6,0x80,0xb3,0xbc,0x4a,0xe8,0xe1,0x7d,0x58,0x09, +0x33,0xda,0xbf,0x1f,0x7d,0xaa,0xf7,0xab,0x15,0xbc,0xed,0x4c, +0xd5,0x99,0xb2,0xf0,0x9c,0xb4,0x35,0x35,0xf4,0x95,0x77,0x72, +0x6d,0xa2,0x8c,0x4d,0xcf,0x4b,0xc9,0x4f,0xca,0xd5,0x4a,0xe7, +0x75,0xe8,0x49,0x49,0x37,0xec,0x3f,0x39,0x56,0x61,0xc4,0x97, +0xa5,0x97,0x67,0x97,0xe5,0x72,0x5b,0x59,0x74,0xf1,0xc3,0x4f, +0x3e,0xc3,0xf7,0xe4,0x3d,0x7a,0xb2,0x3f,0x60,0x51,0x19,0xac, +0x83,0x60,0xe5,0x9b,0x0a,0xeb,0x11,0x76,0xca,0x63,0x7e,0x57, +0x43,0x7b,0x5b,0x5d,0x3b,0x9d,0x42,0x8c,0xbf,0x83,0x8d,0xa9, +0x89,0x1d,0xb7,0x5d,0xbc,0x4f,0x0c,0x4f,0x65,0xf6,0xa9,0x40, +0x17,0xd5,0x45,0xeb,0xd1,0x89,0x95,0x16,0x62,0x18,0x32,0xed, +0xf9,0x52,0x33,0x7c,0x2b,0x31,0x18,0x91,0xdd,0x52,0xe7,0xf6, +0x4c,0x2e,0x2c,0x66,0x3a,0x0a,0x25,0x16,0xfc,0x1e,0x7b,0x3c, +0x47,0x86,0x6b,0xe8,0xd8,0xcc,0x51,0x7c,0x42,0x8c,0x14,0x97, +0xfa,0xf0,0x9f,0x2f,0x84,0x5d,0xfd,0xe2,0xae,0x1b,0x27,0x8e, +0x8a,0xab,0x0c,0x85,0x55,0x07,0x59,0xb0,0x17,0x67,0x90,0x8c, +0xa2,0x8c,0x92,0xd4,0x62,0x8e,0x66,0x30,0xb5,0xa9,0x4d,0xa8, +0x06,0x73,0x98,0x34,0x9f,0x74,0xef,0x14,0x5f,0x0e,0xcb,0x0c, +0xff,0x59,0xd8,0xcf,0xe0,0x31,0x4a,0x06,0x76,0x8a,0x6d,0x8f, +0x59,0xa9,0xc1,0x17,0x89,0xf4,0x0d,0xf3,0x3e,0xe5,0xc3,0xa1, +0x1d,0x13,0x59,0x12,0x51,0x1c,0x51,0xc4,0xe1,0x52,0x51,0x93, +0x34,0x0a,0x0f,0xec,0x27,0x20,0x7d,0x4a,0x1f,0xd3,0x59,0xc5, +0x7c,0xe9,0x71,0x22,0x23,0x3e,0x00,0x86,0x42,0x8c,0x19,0x9c, +0x21,0xb8,0xb1,0x75,0x45,0xaf,0x1a,0x4d,0x95,0x93,0x83,0xa2, +0x1f,0x93,0x5d,0x9e,0x51,0x95,0x52,0xa3,0x9e,0xc5,0x9f,0x3f, +0x73,0xe1,0xcc,0xf9,0x33,0x1c,0xc4,0xe1,0x73,0x7a,0x1d,0x9e, +0xb1,0x11,0xae,0x61,0x1e,0xc1,0xde,0x1c,0xbe,0xd6,0x87,0x71, +0xe6,0xb8,0xfa,0x4a,0x0b,0xdc,0x68,0x5e,0x6c,0xc0,0x17,0x25, +0x16,0x24,0x16,0x24,0x71,0xd8,0x3c,0xd6,0x07,0x96,0x46,0xa3, +0x14,0x0b,0x6d,0xd8,0x67,0x4d,0x13,0x9d,0x1d,0x03,0x92,0xd5, +0x78,0xa7,0xfe,0x98,0xf9,0x23,0x7b,0x8e,0x12,0x8a,0xe7,0xa3, +0x7d,0xe0,0x46,0x19,0x4d,0x23,0x53,0x70,0xba,0xf0,0x74,0xf1, +0x69,0x4e,0x5c,0x29,0x28,0xa4,0x2e,0x3d,0x7f,0x40,0xba,0xd4, +0xd9,0xd4,0x9e,0xd0,0x31,0x76,0x95,0x6c,0xc4,0x9c,0xe6,0xd3, +0xad,0x20,0xba,0x35,0xf5,0xa1,0x38,0x4e,0x68,0x04,0x58,0xe2, +0x21,0x16,0x1c,0xe6,0xd3,0x2d,0x37,0xa9,0xc1,0xe5,0x3f,0x5a, +0xf0,0x82,0xf4,0xa3,0x3e,0xdc,0x80,0x63,0x03,0x78,0xec,0xbe, +0xe6,0x5e,0x71,0x85,0xb4,0x66,0xf9,0x98,0x01,0x48,0x26,0xb7, +0xfa,0x86,0x10,0xc6,0x1a,0x1d,0xd9,0xad,0x85,0xb3,0x0d,0x2a, +0x69,0x06,0x98,0x37,0xf6,0xdb,0xc3,0x6b,0x3f,0x71,0x50,0xc5, +0x7c,0xb1,0xfa,0xcf,0xfd,0xf0,0x89,0x46,0x99,0x54,0xdc,0xda, +0xbf,0x7d,0x58,0xe3,0x16,0x77,0x16,0xfa,0x89,0xb8,0xe2,0x86, +0xb0,0x82,0x11,0x57,0xa0,0x0e,0xb9,0x29,0xac,0x38,0x42,0x93, +0xf8,0x7e,0x71,0x05,0xcd,0x48,0x41,0x28,0xd5,0x47,0xa4,0xc1, +0x5b,0x1a,0x34,0x3a,0xa4,0x3b,0xcd,0x38,0x5f,0x7c,0x4b,0x4f, +0xd1,0x37,0x24,0x7e,0x20,0x39,0xbf,0xc3,0x34,0xc1,0x87,0xc0, +0xfa,0x22,0x98,0x5d,0x7a,0x77,0x34,0x3d,0x25,0xf9,0x6c,0xf6, +0x19,0x81,0xe0,0x5b,0x7c,0x69,0xbf,0x38,0xfd,0x4f,0xff,0x84, +0xd8,0x73,0x91,0x91,0x4a,0xa1,0xa1,0x31,0x97,0x72,0xf2,0xd3, +0x4a,0x12,0xcb,0x95,0x84,0x0f,0x86,0xc4,0x77,0xd2,0x98,0x7b, +0xc7,0x55,0xd9,0x68,0xfc,0x2f,0x3d,0x00,0xd6,0x7f,0xdf,0x4e, +0x1b,0xcc,0xb2,0xe3,0x3c,0x37,0x10,0x5d,0x85,0xb4,0x64,0xc6, +0x81,0xcd,0xd2,0x95,0x81,0x0e,0xd3,0x9d,0x97,0xd3,0xa9,0x22, +0x7c,0x00,0x64,0x58,0x5a,0xa4,0xb8,0x90,0x1e,0x20,0x0e,0x5c, +0xb9,0x0e,0x2f,0x19,0x8d,0x01,0x82,0x95,0x30,0x0f,0x2a,0x99, +0xb9,0x90,0x0b,0xe6,0xa4,0x0b,0x66,0x95,0x82,0x72,0x2a,0x6c, +0xe5,0x5a,0x70,0x25,0x9b,0x76,0x35,0x79,0x32,0x71,0x58,0x3b, +0x8e,0x8f,0xd5,0x8f,0x52,0x8b,0x38,0xca,0x2d,0xd6,0x7e,0xc9, +0x04,0x2d,0xf6,0xf9,0xd4,0x63,0x7b,0x87,0x43,0xbb,0x7d,0xbb, +0x8d,0x83,0xaa,0xd1,0xa1,0xa3,0xc7,0xeb,0x4d,0xf8,0x9b,0x37, +0x06,0xee,0x34,0x3f,0xae,0x75,0xae,0x75,0xac,0xb3,0x6d,0xe8, +0xe2,0x6d,0xdb,0xed,0x9b,0x1c,0xeb,0x39,0xf8,0x90,0x92,0x2d, +0x53,0xa1,0xb1,0x1b,0xe3,0xee,0x42,0x76,0x37,0x66,0x3f,0xd4, +0x55,0xc5,0x8b,0xa6,0x70,0x71,0x3f,0x2b,0x9e,0xc3,0x6b,0xa4, +0xe8,0x69,0xfe,0xcb,0xdc,0x57,0xdc,0x1f,0x4c,0x14,0xce,0xf7, +0xc7,0x59,0x36,0x8b,0xdc,0x2a,0xdc,0x4a,0xdd,0x8a,0x39,0x45, +0x1e,0x38,0x12,0x31,0x0c,0x0f,0x0a,0x61,0x8c,0x0e,0x7c,0x40, +0x76,0x8b,0x6f,0xbf,0x31,0x33,0xf0,0x25,0x69,0x85,0x69,0x25, +0xc9,0xc5,0xfa,0x99,0x7c,0x94,0x47,0x84,0xe7,0x29,0x57,0x0e, +0xad,0x98,0xce,0xec,0xc8,0x92,0xb0,0xd2,0xd0,0x7c,0x25,0xe3, +0x80,0x8c,0xa0,0x74,0xef,0x54,0x1f,0x25,0xdc,0x61,0x24,0x3c, +0xef,0x63,0xc4,0x40,0xfc,0x91,0xd4,0x09,0xf3,0x9c,0xc6,0xe0, +0x94,0x78,0x1e,0x4f,0xb1,0x82,0x06,0xa8,0x91,0x35,0xe2,0xbc, +0x57,0x14,0x4b,0x6d,0x15,0xba,0xc4,0x98,0x3d,0x85,0xdd,0x26, +0xd0,0xcc,0xfa,0xab,0x1d,0x72,0x41,0x67,0xfb,0x3c,0x43,0x1e, +0x3e,0x2e,0xfe,0xa9,0x6c,0xb4,0x2b,0x25,0x29,0xfe,0x62,0xc6, +0x59,0xf8,0x66,0x11,0x5f,0xd2,0x8b,0xa3,0x3f,0x9f,0x8a,0x8f, +0x3e,0x1f,0x19,0xa1,0x14,0x19,0x71,0xfa,0x52,0x46,0x6e,0x72, +0x5e,0x7c,0xa1,0x12,0xdc,0xec,0xc1,0x49,0xe6,0x62,0xca,0xe7, +0x29,0xa9,0xca,0xf5,0xf0,0xeb,0x9a,0x31,0xa9,0x88,0xfb,0x89, +0xc6,0x0e,0xa9,0x88,0x7b,0xec,0x15,0x7b,0x10,0xbf,0x22,0x06, +0x0a,0x35,0x7c,0x20,0x01,0xb5,0xbe,0x0c,0xb4,0x99,0xee,0xdc, +0x6c,0x3a,0x45,0x6f,0xc2,0x3c,0x8a,0xf6,0x02,0xa5,0x88,0xe2, +0x3a,0x4c,0xbf,0x32,0x04,0xbf,0x32,0x1a,0x7d,0x04,0x1b,0x7e, +0x85,0x06,0x3a,0xfe,0xff,0xa5,0x30,0x25,0xa2,0xb8,0x55,0x11, +0xa4,0x35,0x15,0xb4,0x5d,0x10,0x75,0xa7,0xa2,0xc6,0xee,0x42, +0xad,0x62,0x1b,0x2b,0xb4,0x4f,0x79,0x90,0x2d,0xf5,0x47,0x5a, +0x74,0x7a,0x9e,0x3d,0x1e,0xf9,0xa5,0x1c,0x38,0xae,0x0b,0x0d, +0x29,0x52,0x04,0x8e,0x60,0x20,0xac,0xd5,0xc4,0xb5,0xe8,0xae, +0x03,0xee,0xa8,0x8a,0xd6,0x3a,0xc2,0x02,0xd6,0x6b,0x8d,0xc9, +0x8e,0x43,0xc7,0xb4,0x26,0x2c,0xee,0xd8,0x7f,0xa3,0xe7,0xcd, +0x37,0xaf,0xeb,0x56,0x9d,0x3c,0x76,0xd8,0x60,0x8b,0xf5,0xd2, +0x93,0x65,0x3a,0xfc,0xeb,0xba,0xef,0xbb,0xef,0x8d,0x5d,0xd1, +0xbd,0x67,0xfe,0xad,0x2d,0x85,0xe7,0x19,0x02,0x9d,0x0f,0x27, +0x8a,0x61,0x75,0x15,0x28,0x75,0xbc,0x72,0x7b,0xe5,0xf8,0x93, +0x4d,0x55,0x0f,0xbf,0xab,0x66,0x77,0xc5,0x9e,0xd2,0x5b,0xe5, +0x57,0xab,0xaf,0x34,0x5a,0x34,0xf2,0x07,0xac,0x76,0x3b,0x6e, +0x76,0x43,0xbe,0x05,0x3f,0xac,0xc4,0x79,0x85,0x1e,0xc6,0xfc, +0xeb,0x60,0x98,0xe6,0x03,0xd3,0x5c,0x91,0x3d,0x89,0xc4,0x07, +0x97,0x07,0x73,0x8a,0x97,0xa8,0x4b,0x46,0xc4,0x00,0x36,0xb7, +0x3a,0xbb,0x2e,0xa3,0x9e,0xa6,0xc1,0x10,0xdb,0x20,0x3b,0x3f, +0x07,0x0e,0xbf,0xd5,0x81,0x6e,0xe6,0xc8,0xa6,0x55,0x7b,0x70, +0xc1,0xb1,0x1a,0x63,0x7e,0xb0,0xbc,0xa7,0xa2,0xbd,0x9a,0xc3, +0xfc,0x09,0x28,0xa6,0x07,0x7d,0x6b,0x02,0x6e,0x41,0x24,0x9a, +0xe1,0xd6,0x37,0x15,0x38,0x2a,0x4c,0x77,0x7e,0x5e,0x97,0x0a, +0x9c,0xc5,0xde,0x1f,0x34,0x3e,0xa3,0x13,0xbf,0xad,0xa9,0xb1, +0xb5,0xba,0x8b,0x66,0xdb,0x3d,0x42,0x3f,0xf1,0xf6,0xf2,0xf2, +0xf1,0xf4,0x0d,0xbd,0x10,0xf6,0x79,0xd8,0x85,0x04,0x3a,0x11, +0xa7,0x27,0xfc,0x9d,0xf6,0x2a,0x23,0xc5,0x2f,0xc9,0x3f,0x31, +0xa0,0x33,0x8f,0xf7,0xbf,0xee,0x7c,0xc7,0xbd,0xcb,0xca,0x9f, +0x4f,0x0b,0xcc,0xf4,0x4c,0xf7,0xd0,0x3f,0xad,0x7d,0x46,0xeb, +0xec,0x83,0x5b,0x57,0x1e,0x5e,0xf9,0x46,0x6a,0x13,0xaa,0x63, +0x67,0x64,0x63,0x16,0x9c,0x4b,0x5f,0x39,0x4d,0x5d,0x35,0x3d, +0x8d,0x13,0xa6,0xe5,0xbc,0x9b,0xae,0xab,0x99,0x9d,0x59,0x58, +0x7a,0x58,0x5a,0x68,0xba,0x8b,0x1d,0xdf,0x6b,0xd5,0x66,0xdd, +0x60,0xc3,0x41,0x1e,0x86,0x12,0x71,0x0e,0xe3,0x00,0xef,0x9c, +0x82,0x65,0xa0,0xaa,0x7c,0x5f,0x67,0x2f,0x8b,0x5b,0xb2,0x71, +0x45,0x03,0xce,0x93,0x8b,0xf6,0x46,0x70,0xd8,0x9f,0x59,0xac, +0xb1,0x11,0x67,0x1d,0x92,0x57,0x1a,0xc3,0x5b,0x37,0x7b,0x6e, +0x95,0x5c,0x57,0xba,0x1c,0x7f,0xf9,0xf3,0xb8,0x73,0x94,0x78, +0x4d,0xe7,0x6b,0xdb,0xf0,0xc3,0xdf,0x22,0x52,0x62,0x2e,0xd0, +0xb8,0x89,0x8a,0x3c,0x73,0x49,0x96,0x54,0x10,0x5f,0x55,0xa9, +0x9c,0x07,0xe7,0xd9,0xa2,0x63,0x95,0xda,0x0d,0xc6,0x1b,0xf5, +0x17,0x3b,0x22,0xf1,0xca,0xd5,0xe7,0x61,0x41,0x39,0xbc,0xd5, +0xfc,0x6a,0xac,0xc7,0x60,0xcc,0xe6,0xb6,0x57,0x73,0x68,0x69, +0x72,0x52,0x73,0x19,0x7c,0xc6,0x9b,0x16,0x78,0xe0,0x46,0x8d, +0x22,0xc3,0x1a,0xcb,0x76,0xa5,0xde,0x86,0xce,0xf6,0xd6,0x7e, +0xdb,0x06,0xde,0xc6,0xc8,0xc2,0xda,0xc4,0xc9,0xb5,0xc5,0xab, +0xdb,0x7f,0x90,0x03,0x64,0xa6,0xae,0xc0,0x09,0xa2,0x71,0x2e, +0xce,0x18,0xb8,0x04,0x98,0x9e,0xf6,0x6b,0x8e,0x52,0xb2,0x5f, +0xb2,0x5f,0x7c,0xb0,0x34,0x18,0x37,0x5c,0xbe,0xf0,0xe8,0xb0, +0xf6,0xe7,0x53,0x83,0x33,0x3c,0x33,0x3c,0x0c,0xa2,0x75,0xa9, +0x62,0xbe,0x77,0xf3,0xca,0x57,0xd7,0x7f,0xb5,0xa8,0xe2,0xa9, +0xc2,0x36,0x71,0x30,0x0f,0xca,0x0b,0xa0,0xaf,0x86,0xce,0x9a, +0xae,0xba,0x31,0xd3,0x52,0xde,0xc3,0xd0,0xcd,0xdc,0xd1,0x22, +0x34,0x3d,0x84,0xbe,0x5c,0xa8,0x7c,0xb1,0xea,0x32,0x6f,0xb6, +0x72,0x77,0x71,0x73,0x75,0x71,0xe7,0x14,0x66,0x1b,0x89,0x65, +0xa1,0x7e,0x81,0x75,0xaa,0xb7,0x1d,0xdf,0x1a,0x3e,0xe9,0xdf, +0x10,0x40,0xc3,0x27,0x5f,0x58,0x40,0xf4,0x4f,0x25,0x8c,0xa8, +0xfc,0xaa,0x90,0xc3,0xc5,0x29,0x2f,0x5d,0xc5,0x3a,0x5c,0x30, +0x25,0xc7,0x2d,0xec,0xc6,0x5a,0xaf,0x5f,0xe5,0xc2,0xb0,0xe4, +0x7e,0xd4,0xad,0xf2,0x84,0x3d,0x9e,0x41,0x81,0x9e,0x45,0x6d, +0x0c,0x26,0xba,0xfd,0x5a,0x1d,0x9a,0x4d,0xf6,0xd6,0xfc,0xa8, +0xed,0xa4,0xe9,0x80,0x31,0xf7,0x14,0x0f,0x93,0xee,0x2c,0xa9, +0x07,0xeb,0x0c,0x56,0x33,0x5f,0x86,0x2a,0x58,0xc2,0x5a,0x44, +0x48,0x5d,0x36,0x82,0xd4,0x31,0x94,0xdd,0x55,0xe6,0xf7,0x44, +0x2e,0xf4,0x5f,0x23,0xe6,0x3f,0xe8,0x3d,0xd4,0xf8,0xc2,0xc4, +0x85,0x1f,0x3f,0x38,0xb2,0xbd,0x75,0x23,0x37,0x35,0x7a,0x96, +0xdc,0x7c,0xdc,0xfe,0x5d,0xe9,0x53,0xfd,0x02,0xde,0x47,0xd5, +0x72,0xe3,0xf1,0xc3,0xf4,0x88,0xbe,0x10,0x56,0x11,0xd7,0x50, +0x97,0x50,0xe7,0x37,0x85,0xc3,0xc3,0xab,0xfe,0xad,0xf6,0x9d, +0xa9,0x0b,0x33,0x31,0x9e,0xb5,0x09,0xb5,0x09,0xb7,0x8b,0x4a, +0xd5,0xe1,0xeb,0x53,0x1a,0xd2,0x1b,0xd2,0x39,0xac,0x5c,0x2a, +0xf5,0x80,0x7d,0xcc,0x74,0x65,0xe5,0xbf,0xa9,0xf6,0xad,0xcf, +0xac,0xcf,0xaa,0xcf,0xe6,0xe0,0x1b,0xbc,0x40,0x9e,0x42,0x38, +0xfd,0x1e,0xfe,0x00,0x9c,0x0a,0x87,0xe0,0x98,0xf8,0x00,0x8f, +0x0d,0xfa,0x81,0xd9,0x1e,0xf4,0xc7,0x6f,0xc0,0x7f,0x3b,0x8e, +0x18,0xc1,0x08,0x92,0x51,0x0a,0xa3,0x6d,0x7d,0xac,0xd8,0xa6, +0x50,0x26,0x82,0xc3,0x32,0x74,0xb8,0xa1,0x7d,0x14,0x4d,0x18, +0x30,0xc1,0x7c,0x82,0xbb,0xbe,0x83,0x5d,0x0c,0x84,0xaf,0x27, +0x78,0xf0,0x3b,0x38,0xc8,0x50,0xd6,0xa7,0x42,0x60,0xd7,0x2a, +0xa4,0x3b,0x03,0x7e,0xa2,0xda,0x7c,0x15,0x1e,0xa4,0xf3,0xfe, +0xa1,0xe0,0x40,0xa2,0x32,0x63,0x2e,0x87,0x47,0x86,0x85,0xbf, +0x69,0xda,0xb9,0x7e,0x04,0xd7,0x83,0x8e,0x16,0xea,0xe0,0x0e, +0x1d,0x58,0xc7,0x84,0xe2,0x3c,0x4b,0xfc,0x04,0x19,0x5c,0xd8, +0x62,0xc6,0x7f,0x0f,0x4c,0x1d,0x4c,0x4f,0xfc,0x9d,0x4b,0x14, +0x9b,0xc7,0x84,0xf8,0xff,0xac,0x5f,0xa7,0x27,0x77,0xa8,0xa5, +0x49,0x26,0xd8,0x61,0x0b,0x31,0x63,0x5c,0x63,0xe2,0xeb,0x55, +0x14,0x29,0x34,0xfd,0xf8,0xb2,0x17,0xf1,0xaa,0x2f,0x7e,0x46, +0x09,0xc9,0xfa,0x0e,0x73,0x1e,0xde,0x81,0x3d,0x95,0x70,0x10, +0xee,0x2b,0x4b,0x6d,0xec,0xa7,0x6c,0xd8,0x83,0x15,0xfe,0x57, +0xe4,0xdd,0x4c,0x7b,0x66,0xd6,0x1b,0x43,0x6a,0x83,0x1c,0xd9, +0xdc,0x7f,0x34,0x15,0xc7,0xc8,0xa0,0xb8,0x98,0x4d,0x2f,0x4d, +0x29,0x4b,0x2e,0xd3,0x4b,0xe3,0x3d,0x56,0xea,0xad,0xdf,0xae, +0xde,0x6c,0xc3,0xf7,0x34,0x37,0x75,0x57,0x0d,0x70,0xf8,0x40, +0x9d,0x80,0xc9,0x18,0xca,0x61,0x85,0x26,0xae,0xc0,0x1d,0x5a, +0xaf,0x37,0x50,0x2e,0xeb,0x8f,0xea,0xeb,0x71,0x85,0xbc,0xdb, +0xfa,0x31,0x2c,0xa8,0x82,0x4d,0xc9,0x60,0xae,0x04,0x1f,0x30, +0xb8,0xf9,0x2c,0xce,0x8c,0xdc,0x25,0x37,0x8e,0x0d,0x0f,0xb1, +0x5b,0xb0,0x47,0x7a,0xa8,0x7d,0x93,0xb9,0x5e,0x5e,0xf1,0x38, +0x4d,0x25,0xf5,0x79,0x02,0xbc,0x0b,0x6e,0xca,0xa8,0xc9,0x5c, +0x2c,0xfc,0xbc,0xb0,0x48,0x19,0xbc,0x44,0x7d,0x22,0x34,0x0c, +0xac,0x87,0x3f,0x1f,0xf6,0xa9,0x3e,0xd3,0xd9,0x8a,0xb1,0xcf, +0x74,0xb7,0xaa,0x1a,0x3d,0xc4,0x3f,0x3f,0x63,0x84,0x8f,0xa1, +0x88,0x60,0xec,0x97,0x10,0xcb,0xe0,0xfc,0x99,0xdb,0x31,0xf6, +0x29,0x8b,0x4a,0x33,0x21,0x76,0x13,0xd2,0x1d,0x0b,0x30,0x8a, +0x3c,0xaa,0xba,0xd3,0xd1,0xd3,0x63,0xdb,0xc2,0x5b,0x5b,0x1e, +0xb2,0xdc,0xe3,0x45,0x2f,0xe1,0x2d,0x72,0xed,0xe4,0x35,0xeb, +0x61,0xf3,0xc6,0x2e,0x5e,0xaf,0xfd,0x40,0xc7,0x89,0x0a,0xc9, +0xce,0x75,0x90,0xb8,0x7e,0x69,0xfa,0xca,0xe6,0x8a,0x91,0x27, +0x9f,0xef,0x9e,0xef,0x90,0x67,0xa7,0xe5,0x74,0xd8,0xf5,0x88, +0x07,0x07,0xf5,0x50,0x23,0x18,0xe1,0xab,0xa9,0x0b,0xac,0x6f, +0xb4,0x6f,0x8c,0xdf,0xe9,0x6c,0x75,0x1e,0xd8,0x26,0x78,0x7f, +0xe8,0xe7,0xc9,0x74,0x8f,0x34,0xaf,0x14,0x6f,0x4e,0x08,0xf4, +0x20,0x1a,0x8c,0x67,0x4c,0x5a,0x89,0x0a,0xf4,0x39,0xb1,0x39, +0xd7,0x64,0xb0,0x77,0x04,0x37,0x33,0x99,0x8f,0x13,0xbf,0xbb, +0xf8,0x07,0x07,0xf3,0x87,0x45,0x07,0xdd,0x7b,0x58,0xb6,0x55, +0x07,0x2e,0x33,0x16,0x78,0x62,0x35,0xbe,0x87,0x47,0x70,0x4e, +0x2d,0xcd,0x53,0xab,0x7e,0xfb,0x11,0xa6,0x8f,0xc0,0x42,0x0e, +0x23,0xd8,0xc3,0x25,0x5e,0xd7,0xe5,0xfd,0x4c,0x4f,0x5e,0x5e, +0x8f,0x0a,0x2c,0x63,0x75,0x72,0x64,0x62,0xb6,0x70,0x45,0xb2, +0x53,0xf4,0x86,0x45,0xac,0x60,0x11,0x4b,0xe0,0x53,0xe6,0xc2, +0xa7,0xa7,0x37,0x84,0xee,0xe2,0x70,0x36,0x83,0x91,0xdf,0x10, +0x5c,0x4e,0x7f,0xb6,0x9c,0xc2,0x96,0x2e,0xf8,0x11,0xc1,0xec, +0x8b,0x81,0x83,0xbf,0x69,0x2f,0x43,0x2b,0xfa,0x76,0xd8,0xe0, +0x96,0x68,0xb6,0xc3,0x40,0xf0,0x19,0x60,0xdb,0x28,0xf1,0xc0, +0xc6,0x10,0x7c,0x7b,0x33,0xae,0x93,0x0f,0x38,0x8c,0xc0,0xb4, +0xb2,0xef,0xd3,0xa5,0x72,0x82,0x73,0x18,0x4f,0x23,0x2e,0x5b, +0x5d,0x06,0x4b,0x99,0x9e,0x4c,0xc9,0x8b,0xac,0x1c,0x5f,0xb3, +0x54,0xc8,0x9d,0x25,0x18,0x01,0x1a,0x10,0x21,0xf5,0x73,0x3d, +0x46,0xd0,0x0a,0x18,0xb0,0xa2,0xe2,0x73,0x26,0xb2,0x74,0x9b, +0x65,0x85,0xa3,0x68,0x46,0x2e,0x0f,0x5e,0x9a,0xf8,0x42,0x19, +0x22,0x50,0x87,0xfe,0x56,0x15,0xa1,0x84,0xdd,0x0a,0xe6,0xb2, +0xeb,0xc5,0xf5,0x64,0xa8,0x63,0xf8,0x6e,0xd5,0x84,0x71,0x15, +0xef,0xa9,0xa3,0x77,0xc4,0xc0,0x56,0xba,0xe5,0xa6,0x44,0xea, +0xec,0x5a,0x75,0x4a,0xad,0x7b,0x6a,0x79,0xaf,0x36,0xf3,0x51, +0xe7,0x3a,0x3a,0x1f,0x27,0x05,0x7b,0x1a,0xdd,0xa7,0x2f,0x85, +0x47,0xbe,0x69,0x2a,0xb4,0xe0,0x3f,0x4d,0x85,0x74,0x68,0x74, +0xaf,0xd2,0x85,0x85,0xff,0xda,0xf3,0x2c,0x5c,0xfa,0xc6,0x7b, +0xef,0xf1,0x1b,0xef,0xbd,0x9f,0x69,0x6c,0x57,0x8f,0xfc,0x8f, +0xf7,0xde,0x0b,0xdc,0xd4,0xd8,0x24,0x73,0x41,0x96,0xe8,0x0b, +0xcf,0x07,0x97,0x0a,0x8e,0xcf,0xfb,0x37,0xc1,0xdb,0x9a,0xf8, +0x36,0x66,0xbc,0xf9,0xb6,0xc9,0xf0,0xb9,0xe8,0xc8,0xc2,0x3d, +0xf8,0x9d,0xd0,0x3d,0xb3,0x20,0x83,0x41,0x55,0xc9,0x56,0x24, +0x03,0x66,0xb3,0xb8,0x6f,0x26,0x64,0xe0,0xfb,0x28,0xed,0xc3, +0x72,0xf2,0x7d,0xfb,0xbd,0xde,0xd1,0x71,0xab,0x16,0xde,0xc4, +0x40,0xd5,0x68,0x93,0x2d,0x27,0xb0,0xbf,0x90,0x2f,0x6c,0xbf, +0x36,0xbc,0xaa,0xdb,0xd0,0xcd,0x9f,0xe8,0xdf,0x3c,0x7c,0xa8, +0x81,0x1e,0x71,0xa1,0xf0,0x37,0xc1,0x43,0x4c,0xa2,0x21,0xc4, +0x5d,0x04,0x9f,0x04,0x70,0xc8,0x55,0xba,0x63,0xd8,0x54,0x7f, +0xb8,0x6f,0x77,0xbf,0x5a,0x83,0x12,0xa4,0xf6,0x89,0x9b,0x1f, +0x69,0xec,0x16,0x97,0xd0,0xf9,0xcf,0xb8,0xbb,0x9c,0x74,0x39, +0xe9,0xca,0x09,0x46,0x59,0x04,0xa7,0xc5,0xe0,0x07,0x67,0xf1, +0x93,0x73,0x95,0x95,0x95,0xb5,0x65,0x54,0xe6,0x45,0x30,0xf6, +0x6e,0x25,0x61,0x15,0x41,0x15,0x81,0x4a,0xe0,0x21,0xda,0x92, +0x01,0x71,0xcb,0x0d,0xe8,0xa1,0xf9,0x82,0xef,0x43,0x5e,0x6a, +0xeb,0x16,0x75,0x43,0xeb,0x28,0x7a,0x8f,0x6b,0x69,0x22,0x6f, +0x04,0x3c,0x12,0xa8,0x39,0x2a,0x2e,0x35,0x10,0x64,0xac,0xce, +0x71,0x94,0x1b,0xa3,0xa1,0x2d,0xd5,0xe0,0xe0,0xd7,0x03,0x6b, +0xaf,0xe5,0x3e,0xe3,0x12,0x31,0x70,0x0c,0x02,0x13,0x99,0xdc, +0xad,0xb0,0x45,0x0d,0xc2,0x4d,0xb2,0x87,0x79,0xb4,0x69,0xc6, +0x45,0xbd,0xda,0x57,0x39,0xbc,0x0e,0x71,0x04,0xbc,0x55,0xd1, +0x9b,0x11,0x32,0xe7,0x63,0xd4,0x43,0x88,0x92,0x8a,0xbe,0x04, +0x5f,0x72,0x3a,0xf3,0xf4,0x85,0x88,0xe8,0x70,0xa9,0x9d,0xf1, +0xdc,0xd7,0x03,0x0b,0xff,0x6d,0x67,0x3c,0xd7,0x00,0x58,0x26, +0xf2,0x7f,0x6b,0x67,0x3c,0x29,0xb5,0x33,0x96,0xda,0x68,0xe5, +0x0e,0x09,0x85,0xff,0x69,0x0d,0x36,0x86,0x2b,0xea,0x1a,0x65, +0x82,0x0d,0x04,0x12,0x6f,0x27,0x1f,0x57,0x7f,0x5f,0x2e,0x26, +0xe6,0x42,0xcc,0x82,0x78,0xd3,0x1b,0x71,0xf7,0x93,0x6f,0xa4, +0x29,0xc5,0x07,0xc7,0x9d,0x8a,0x0b,0xe9,0xcc,0xe4,0xc3,0x47, +0x02,0x26,0x02,0xbb,0x2c,0x42,0xf8,0xe4,0x80,0x64,0x9f,0x64, +0x2f,0xa7,0x33,0xd2,0x22,0xff,0xde,0xf1,0x89,0x6f,0x5b,0x1f, +0x5a,0x14,0xf3,0x41,0x0e,0x5e,0x56,0x1e,0xd6,0x61,0x39,0x61, +0xd9,0x21,0xd9,0xd5,0x9d,0x95,0xfd,0x25,0xfd,0xe6,0x45,0x7c, +0xa0,0x99,0x87,0x91,0xa7,0x9d,0x5b,0x25,0xef,0xe2,0xd8,0xe8, +0xd0,0x64,0x5d,0x63,0xa5,0x24,0x6e,0x58,0x4c,0x2e,0x84,0x47, +0x5c,0x08,0x5f,0x10,0x6f,0x7c,0xed,0xf2,0xfd,0xa4,0x5b,0x69, +0x4a,0x69,0x26,0x1d,0x99,0xe1,0x13,0xa7,0x46,0x82,0x7a,0x95, +0xcc,0x43,0x28,0xaa,0x79,0x27,0x79,0x2b,0xb9,0x9c,0x71,0x39, +0xeb,0x7c,0xbe,0x6b,0x7c,0xec,0x65,0xfb,0x37,0x96,0xc5,0x7c, +0xa0,0xb5,0x97,0x85,0x97,0x55,0x68,0x4e,0x68,0x6e,0x48,0x4e, +0x5d,0x77,0xc5,0x50,0xe1,0xa0,0x79,0x3e,0x1f,0x64,0xe6,0x69, +0xe8,0x69,0x1d,0x95,0x1a,0x99,0x12,0x95,0xea,0xe4,0xc8,0x37, +0xdb,0x34,0x5a,0xd5,0x99,0xfb,0x3a,0xf9,0xba,0x06,0xfa,0x71, +0x42,0xa9,0xe8,0x45,0x6c,0x2a,0x1c,0x6a,0x5d,0xdb,0x1a,0x1b, +0x6a,0xdb,0x6b,0xfb,0xad,0x28,0x03,0x30,0x77,0xb7,0x3f,0xe9, +0xe2,0xd7,0x14,0xd8,0x11,0x4a,0xf5,0x45,0x72,0x3f,0x16,0x30, +0xc1,0x5f,0x45,0xff,0x0a,0xef,0x28,0x83,0xb1,0x11,0x1a,0xb3, +0x38,0x2b,0x79,0x59,0xf6,0x16,0x39,0x8e,0x19,0xfe,0x1a,0xc4, +0xa0,0xcc,0x68,0xe7,0xc2,0xcf,0xe4,0xf5,0x96,0x0f,0x6f,0x77, +0x5e,0x29,0x1d,0x57,0x8a,0x4f,0x8e,0xbf,0x9c,0x1c,0xf3,0xc3, +0x56,0xbe,0xa1,0x69,0xed,0xd3,0xf0,0x94,0xc8,0x0b,0xd1,0x51, +0x4a,0xd1,0x11,0x67,0x2f,0xcb,0x92,0x8a,0xe3,0xab,0x3a,0x29, +0xde,0xef,0x60,0x73,0x8e,0x16,0x69,0x57,0x98,0xa8,0x1b,0xee, +0xb3,0x5b,0xe2,0x50,0x64,0xcc,0xff,0xd1,0xf4,0xb0,0xf5,0xea, +0x60,0x8d,0x65,0xa3,0x63,0x9b,0x5b,0x9b,0x7b,0x6d,0x7a,0x5c, +0x47,0xaa,0x04,0xf6,0x79,0x32,0x6f,0x3a,0xd2,0xae,0xb9,0x16, +0xd9,0x4e,0x29,0x3e,0x36,0x7c,0x6d,0x54,0x5b,0x50,0x4d,0x08, +0x0d,0xc6,0x70,0x0a,0x0e,0x78,0xce,0x7b,0x09,0x6e,0xc1,0xe5, +0xf2,0x36,0x73,0x19,0xec,0x81,0x0d,0x55,0xf0,0x1e,0x64,0x2a, +0x0b,0x33,0xb5,0x59,0x58,0xe3,0x45,0x8c,0x04,0xc3,0xbd,0xe2, +0x21,0x63,0xe1,0xd0,0x2e,0xd1,0xda,0x58,0xc8,0x86,0x49,0x76, +0xea,0x86,0x13,0x11,0x13,0x47,0x84,0x44,0x69,0x61,0xfb,0x2f, +0x14,0x86,0x46,0xb0,0x63,0x0c,0x92,0x61,0x39,0x0e,0x8e,0xc1, +0x20,0x6c,0x44,0xbd,0xc5,0x6c,0x86,0xb1,0xec,0x05,0xd3,0x92, +0x93,0x4d,0xf3,0xbe,0xd7,0x08,0xec,0x62,0xc5,0x06,0x03,0x02, +0xb6,0xab,0xd0,0x96,0x81,0x5c,0x0a,0x4d,0x6e,0xab,0xd0,0x8d, +0x86,0xd0,0x15,0x45,0x38,0x79,0xae,0xbd,0x09,0x8f,0x9a,0x08, +0x9b,0x7b,0x58,0xf8,0x24,0x41,0x7a,0xe4,0x67,0xcd,0x68,0xe5, +0x05,0x8e,0xca,0x5b,0x98,0x96,0x94,0xff,0xcd,0x77,0xca,0x91, +0xf5,0x3b,0x2d,0x39,0x96,0x25,0xe2,0xe5,0x4f,0x59,0x9c,0x11, +0xa8,0xaf,0xfb,0xc6,0x77,0xea,0xea,0xcd,0x8a,0x37,0xbe,0x53, +0x39,0xa2,0x15,0x39,0x9f,0x14,0x77,0x39,0xfe,0x0c,0xac,0xc1, +0x65,0x7c,0x6d,0x2b,0x7e,0x06,0x4b,0x23,0xd3,0xc2,0xcf,0xc5, +0x44,0x2a,0x45,0x86,0xc6,0x5e,0x38,0x9b,0x71,0x86,0xbe,0x94, +0x5a,0x6b,0x86,0x07,0x6a,0xdb,0x1c,0xaa,0x79,0x37,0x5b,0x73, +0x0b,0x07,0xd7,0x90,0xfa,0xa0,0x9a,0x80,0x8a,0xec,0xcc,0xac, +0xac,0xf4,0x2c,0x0e,0x8e,0xf6,0xe2,0xbb,0x4c,0x5e,0x6d,0x5e, +0x5b,0x46,0xb3,0x71,0x16,0x1f,0x6e,0x19,0x60,0xea,0x65,0xc3, +0xe1,0x59,0x63,0x38,0xc1,0x18,0x9a,0xab,0x5a,0xab,0xba,0x15, +0x59,0xf0,0x03,0x45,0xc3,0xe5,0xdd,0xb5,0xe9,0x41,0x69,0xfe, +0xa9,0xfe,0x06,0x46,0x5b,0x0d,0xf6,0x38,0x96,0x98,0xf3,0xf7, +0x1a,0x9e,0x8e,0xf4,0x75,0xa7,0x7a,0x25,0x7b,0x25,0x7a,0x9e, +0x38,0xbc,0xe6,0xe0,0x12,0xa3,0x12,0x4b,0xfe,0xd7,0xbe,0xef, +0x6f,0x0d,0x4e,0x70,0x71,0x7e,0x97,0x7c,0xfd,0x94,0xf7,0x5e, +0x08,0x75,0xd6,0x58,0x70,0x88,0xc9,0x32,0xa0,0xf8,0xf4,0x7d, +0xe9,0x00,0xcc,0xbc,0xa0,0xd2,0x1c,0xdb,0x1a,0xd5,0x2a,0xc7, +0x0f,0xe0,0x17,0x12,0x5d,0x75,0xaa,0x25,0xa8,0xc2,0xec,0x14, +0x9f,0xed,0x9e,0x65,0x9f,0xec,0xc4,0x29,0x92,0xc5,0xc7,0x64, +0x5f,0xbd,0x46,0x9b,0x51,0xf7,0xb5,0x3b,0xcd,0x4f,0x0b,0x9f, +0x71,0x9d,0xe2,0x2c,0x7d,0x98,0x60,0x83,0xd4,0x5d,0x8e,0xe9, +0x6b,0x99,0x0c,0xda,0x8f,0x9e,0x94,0x4c,0xb3,0xea,0x8f,0xb6, +0x9c,0xe8,0xd7,0xd1,0x36,0xdc,0x6b,0xb1,0xca,0xa5,0xd4,0x90, +0xff,0xbd,0xfe,0x71,0xf7,0xe4,0xf0,0x90,0xe1,0x35,0xb3,0xc7, +0x94,0x7b,0xff,0xb3,0x49,0xa1,0x4d,0x46,0xa6,0xe6,0xb0,0x69, +0x45,0xc9,0xc5,0xc9,0x45,0x27,0x32,0x78,0x5b,0x7c,0x67,0x3f, +0x4e,0x5b,0xb8,0xb3,0xcd,0x98,0xbf,0x37,0x3c,0x71,0xbf,0xe3, +0x09,0x27,0x7c,0xbf,0x92,0x4c,0x7d,0xa4,0xab,0xf8,0x88,0x29, +0x17,0x7b,0x89,0x71,0x87,0x17,0x28,0x83,0x86,0xf2,0xf3,0x29, +0x77,0x1d,0xc5,0x3a,0x77,0x16,0x8f,0x56,0xe0,0xee,0x1b,0x5a, +0xf2,0x0a,0xc7,0x91,0xe4,0xc4,0x91,0x7c,0x50,0xe3,0x8d,0x0a, +0x64,0x78,0x9f,0x52,0x42,0x3b,0x6d,0x43,0x5d,0x75,0x03,0xd5, +0xde,0x5d,0x6d,0x7b,0x6a,0xed,0x2d,0xf8,0x3b,0x27,0xef,0x5b, +0xdf,0x33,0x5b,0x7f,0x0c,0xa7,0x6b,0xe3,0x5c,0x1b,0xc9,0xda, +0xec,0xa3,0x0e,0x98,0x75,0xfd,0xa7,0x7b,0x4f,0xf4,0x1e,0x6a, +0xde,0xd0,0x6c,0xec,0xe1,0x8f,0x8e,0xec,0x1f,0xd9,0xdb,0x77, +0x65,0xa8,0x7f,0xac,0x79,0x94,0x1e,0xda,0x4e,0x45,0x08,0x11, +0x2d,0x98,0xb4,0xd2,0xe4,0xf2,0xe4,0x72,0xad,0x4c,0xde,0x11, +0xe7,0xe9,0xad,0xdd,0xbc,0xa9,0xd3,0x8a,0x1f,0x1c,0xed,0xb8, +0x52,0x77,0x8b,0x82,0x21,0x33,0xc5,0xe6,0x13,0xa3,0x0e,0xf5, +0x0e,0xf5,0xda,0x93,0x66,0xfc,0x15,0xc7,0x61,0x9b,0x41,0x73, +0x0e,0x83,0x71,0x06,0x99,0xb4,0x1f,0x37,0x1f,0x34,0xab,0xef, +0xfc,0x6f,0xb7,0x60,0x45,0x73,0x34,0x11,0x6d,0x74,0x05,0x1b, +0x26,0x47,0xac,0x22,0xe6,0x0f,0x42,0xff,0x86,0x1d,0xca,0x4f, +0xc4,0x78,0x5d,0x41,0xdb,0x99,0xc5,0x35,0x39,0xf8,0x61,0xff, +0x16,0x79,0xa5,0xc9,0xad,0xcf,0x93,0x6e,0xe4,0xd1,0x73,0xd0, +0x2b,0x96,0x4d,0xf5,0x62,0x32,0xb9,0xfd,0x7a,0x00,0x16,0x54, +0xfc,0xeb,0x24,0x3c,0xd3,0x1c,0x67,0x1d,0x59,0x41,0x55,0xc0, +0x34,0x21,0x8f,0xa8,0x9f,0x4b,0x30,0x05,0x59,0xc2,0xeb,0x94, +0x97,0x59,0xff,0xa1,0xbb,0x1d,0x79,0x7c,0xf0,0xf8,0xc9,0x9b, +0x5e,0x9d,0xd6,0x81,0x7c,0x4a,0x70,0x9a,0x4f,0x9a,0x97,0xf1, +0x69,0xc3,0x58,0xbd,0xb3,0x57,0x47,0x06,0xaf,0x4d,0x3c,0xb3, +0xae,0xe2,0xed,0xf4,0x1c,0x4d,0x6d,0x2d,0x83,0x72,0x83,0xb2, +0x03,0xb3,0x1b,0xda,0xaa,0xda,0x6b,0x87,0x29,0xf7,0xf7,0x34, +0x74,0xb7,0x74,0xb4,0x0a,0x4d,0x0b,0x4d,0x0d,0x49,0x3b,0x69, +0xcf,0x0f,0xd8,0x77,0xd9,0x35,0xd9,0x07,0x06,0xf8,0x07,0xfa, +0x05,0x72,0x62,0x98,0x1f,0xf1,0xbb,0xe0,0x73,0xde,0xf7,0x42, +0xa2,0x19,0x0f,0xb3,0x12,0xe0,0xad,0x94,0xdf,0x72,0x12,0x03, +0x13,0x83,0xe2,0x43,0x28,0xb7,0x0e,0x98,0x3c,0x79,0xcb,0xab, +0xcd,0x3a,0x80,0x0a,0x0d,0xca,0xad,0xdd,0x0c,0x4f,0xeb,0xc5, +0x6a,0x9f,0xb9,0x3e,0x31,0x79,0x77,0xf2,0x99,0x4d,0x0d,0xef, +0x60,0xe0,0x60,0x6a,0x6b,0x11,0x4c,0x3f,0x2c,0x28,0xa7,0xa1, +0xad,0xba,0xa3,0x76,0xd8,0xbc,0x82,0x7e,0x98,0x9b,0xb9,0x83, +0x55,0x78,0x6a,0x78,0x5a,0x68,0x9a,0x8b,0x2d,0xdf,0x67,0xdf, +0x66,0xdb,0x68,0xef,0xe3,0xed,0xe3,0xe3,0xe5,0xc7,0x29,0x02, +0xc4,0x6c,0x62,0x90,0x67,0x5a,0x6b,0xdd,0x39,0x3c,0xde,0xf9, +0x45,0xe3,0x63,0xe3,0x52,0xde,0x69,0xaf,0xcd,0x71,0x63,0x7d, +0xab,0x51,0xa7,0x3b,0x9e,0x4f,0x29,0x50,0xf5,0xa0,0x9c,0xa9, +0xa8,0xb3,0xc9,0x35,0xc8,0xb1,0x4e,0x51,0x72,0x73,0x68,0x8d, +0x1c,0x09,0xae,0x0b,0x51,0xc2,0xf3,0x8c,0x2b,0xc8,0x4e,0x51, +0x4c,0x59,0xa0,0x7c,0x5d,0xef,0x18,0x8b,0x7c,0x16,0x92,0x4a, +0xe4,0xe4,0xa2,0xb9,0x89,0xe0,0xca,0x54,0xae,0x6c,0xd9,0xdc, +0x7f,0xc8,0xca,0xce,0xe4,0xa4,0x2e,0x65,0x38,0xc3,0xe2,0x72, +0xfc,0xaf,0x81,0x3e,0xf8,0x96,0x8d,0x3e,0x13,0x79,0x36,0xea, +0x4c,0xa5,0x21,0x7f,0xbf,0xf6,0x5a,0xeb,0x50,0x5f,0x97,0xe1, +0x90,0xdd,0x84,0x5f,0x53,0x68,0x71,0x46,0x52,0x73,0x15,0xec, +0xe4,0x4d,0xe8,0x05,0x78,0xef,0x22,0xc1,0x39,0xdf,0xc0,0x1c, +0xa6,0x67,0x33,0xf9,0x06,0xe6,0x6d,0x66,0xf1,0x90,0x0d,0x59, +0x8b,0x73,0x5e,0xb2,0xb0,0x77,0x3e,0xcc,0x5b,0x8b,0xf3,0x68, +0x7a,0x78,0x26,0x7c,0x4c,0x68,0xa2,0xbd,0x1c,0x11,0x15,0x11, +0xcd,0x9f,0x89,0x63,0xba,0x06,0xaf,0xff,0x58,0xf9,0x3d,0xd7, +0x8d,0xcb,0x60,0x95,0x3a,0xae,0x92,0x2c,0x04,0x07,0x58,0x2b, +0x8a,0xc5,0xca,0xb8,0x15,0x57,0x2c,0xa7,0xe2,0x6f,0xac,0xad, +0xaf,0xa3,0xb1,0x85,0x13,0x97,0x4e,0x08,0x7b,0xa5,0x76,0xaf, +0xf1,0xb1,0x72,0x20,0xb8,0xba,0xb9,0x49,0xf6,0x0a,0x72,0x09, +0x1c,0x67,0xe1,0xb3,0x4c,0xf8,0xb0,0xe2,0xc7,0x46,0xd7,0x5e, +0x7e,0x95,0x83,0xd4,0x43,0x47,0x2b,0x88,0xc3,0x04,0x16,0xe3, +0x3d,0x71,0xd1,0x6e,0xaa,0xbd,0x7a,0xcc,0x9f,0xc1,0xc7,0x95, +0xb0,0xee,0x32,0x9c,0x56,0x02,0x1d,0xb1,0x68,0x52,0x28,0x82, +0x95,0xc3,0xcc,0xdc,0xeb,0x40,0xb3,0xd6,0xa9,0x2f,0x81,0x9d, +0x68,0xa1,0xdc,0x18,0xd7,0x4d,0xc0,0xba,0x44,0xa6,0x65,0x09, +0xbc,0xab,0x09,0x31,0xbb,0x4a,0x07,0x78,0x34,0x18,0xc7,0x0f, +0x86,0xf6,0x3d,0xe4,0x84,0x39,0x83,0xe2,0xf6,0x97,0x0c,0xcc, +0x4b,0x84,0x77,0xd3,0xfe,0xc8,0xf5,0xed,0xe5,0xd1,0xd3,0x1e, +0xab,0xce,0xe0,0xf9,0x8b,0x69,0x06,0x3c,0x4c,0xbb,0x00,0xb3, +0x2e,0x02,0x17,0xcf,0x6d,0x10,0x57,0xe8,0xc3,0x7f,0xb1,0xfb, +0x55,0x71,0xb6,0x1e,0x6a,0x69,0x72,0x42,0x2c,0xee,0x21,0x5f, +0x95,0xfd,0xd4,0xd1,0xd7,0xca,0xf5,0x88,0x75,0x06,0x82,0x3a, +0x6b,0xe3,0xb5,0xc7,0x7d,0x8f,0x1f,0xa7,0x26,0xae,0xd5,0x17, +0xd6,0xe2,0x12,0x3c,0xc2,0x66,0x53,0x05,0xbb,0x82,0xe9,0x7f, +0xd3,0x8b,0xe9,0x43,0x61,0xe9,0xa0,0xb8,0x94,0x92,0xb6,0xed, +0x42,0x3d,0xf9,0xbb,0xec,0xdb,0xba,0xc7,0x1d,0xd7,0x9d,0x27, +0x1c,0x06,0x1c,0x6b,0xba,0x78,0xd3,0x4a,0xfd,0x6a,0xed,0xaa, +0xfe,0xda,0xae,0xa6,0x8e,0x76,0xab,0x46,0xde,0xc4,0xc4,0xc8, +0x46,0xc7,0x69,0x6f,0xa3,0x6a,0xdd,0xe1,0x62,0x37,0x0b,0xfe, +0xaa,0xcf,0x75,0xf7,0xab,0xae,0x47,0x9d,0xf7,0x78,0xac,0xf7, +0xe3,0xd6,0xe2,0x06,0x72,0x3a,0x35,0x2a,0x2e,0x42,0xf2,0x45, +0x3b,0xf3,0x05,0xbc,0x37,0x82,0xef,0xc1,0x0e,0xa6,0x33,0xa3, +0x2d,0xa7,0x3e,0xdf,0xbd,0x8b,0xdf,0x6d,0x83,0xef,0x3a,0x2d, +0x0e,0xcd,0x32,0xe4,0x5b,0x12,0xbb,0x52,0x3a,0xd3,0x38,0x5c, +0x89,0x5b,0x74,0xe0,0x33,0x36,0x7a,0x91,0xd5,0xc2,0x45,0xf8, +0x7e,0x83,0x31,0xff,0xd5,0x6f,0xd5,0x4f,0xe2,0x1f,0x53,0x78, +0x37,0x1a,0x14,0x7c,0x98,0x84,0xb8,0x4b,0x71,0xb1,0xf2,0xc7, +0xb8,0xae,0xbd,0x4e,0x26,0x8c,0xc2,0x4a,0x32,0x84,0x5f,0xb3, +0x29,0x45,0x29,0x25,0x29,0x65,0xfa,0x99,0x7c,0xc4,0xc9,0x08, +0xb7,0x30,0x0f,0x0e,0x0f,0xe8,0x51,0xb6,0x68,0xb9,0x5b,0xf7, +0xd8,0xee,0xe3,0x75,0x66,0x7c,0x49,0x41,0x5e,0x5e,0x6e,0x1e, +0x87,0xc5,0x23,0xd0,0x01,0x8b,0xf0,0xfb,0x31,0xf8,0x1e,0x56, +0xa3,0xcf,0x62,0xc9,0x82,0xe6,0x09,0xd3,0x91,0x23,0x3d,0x03, +0x2d,0x46,0xc7,0x47,0x5a,0xbb,0x51,0x99,0x2d,0x28,0x2b,0x6f, +0x2a,0x93,0xcc,0x73,0x41,0xf8,0x9c,0x64,0x7a,0xa4,0x9f,0x4c, +0x77,0xd1,0x3b,0xad,0x43,0x95,0xf8,0x8d,0xaf,0xbe,0x00,0x66, +0x02,0x18,0xc3,0x0a,0xde,0xf5,0xb8,0xfd,0x51,0x5b,0x75,0xbf, +0x12,0x9f,0x12,0xef,0xe2,0xd6,0xc9,0x86,0xdb,0x15,0xd7,0xf5, +0x8b,0x79,0xef,0xe3,0x2e,0xc7,0x1d,0xf5,0x82,0xb3,0x83,0x33, +0x4f,0x65,0x3a,0x59,0xf2,0xa3,0x26,0xa3,0x7a,0xfd,0x1a,0x3e, +0x4e,0xde,0xce,0x3e,0xee,0x76,0xe7,0x6d,0x2f,0xd8,0x5d,0x48, +0xd0,0xe1,0xaf,0x5e,0xbe,0x16,0x77,0x35,0x9e,0x13,0xd7,0x8d, +0x09,0x9b,0xd9,0x96,0xcb,0xcd,0xf1,0x4d,0xf1,0x89,0x41,0x09, +0x81,0xf1,0x41,0xbd,0x74,0x56,0x7e,0xe1,0x71,0xcf,0x63,0x94, +0x13,0xfc,0x45,0x1a,0xbc,0x91,0x8c,0x76,0x44,0xda,0xb0,0x0a, +0x3c,0x80,0xa7,0xc2,0x3c,0x51,0x43,0x5b,0x98,0x8b,0xd9,0xf8, +0x95,0xf8,0x29,0xbb,0xab,0xd6,0xe5,0xb1,0x1c,0x2e,0x31,0xdd, +0x59,0xd9,0xdd,0x2a,0x70,0x44,0x32,0x30,0x13,0x9b,0xaa,0x49, +0x95,0x6a,0xc9,0xa6,0xbc,0xcd,0x83,0x05,0x7c,0xe0,0x53,0x8f, +0x17,0x2e,0x0f,0x38,0x1c,0xc6,0x5e,0xd2,0xf9,0x4d,0xf1,0x4f, +0xd9,0x3f,0x1b,0xa4,0xf1,0x21,0x1b,0x7c,0x36,0x5b,0x6c,0xa3, +0xe7,0xe4,0xa0,0x78,0x4a,0xac,0x96,0xe9,0x6c,0xdf,0x7f,0xb4, +0xc1,0x8c,0xff,0xf2,0xfe,0xe4,0x8f,0x9d,0x7f,0x72,0x0a,0xd3, +0xa9,0xa7,0x44,0xed,0xae,0xe9,0x6d,0xc7,0x7b,0x93,0xf0,0x51, +0x29,0x2c,0x4a,0x82,0x95,0x5c,0xc7,0x18,0x06,0x31,0x69,0x7d, +0x29,0xfd,0x89,0x7d,0xfa,0x89,0x7c,0x20,0x2e,0xb7,0xc7,0xed, +0xaa,0xf8,0x5e,0xa3,0x19,0x5f,0xdc,0x54,0xd8,0x91,0xd7,0x9b, +0xb6,0xb8,0x78,0x45,0xf3,0x1a,0xdb,0x3d,0xba,0xfb,0xf7,0x1e, +0xa9,0xd1,0xe7,0x6f,0xdf,0x18,0xba,0xdd,0x7a,0xb7,0xe1,0x40, +0xf7,0xa1,0x89,0x23,0x9c,0x38,0xf3,0x9f,0xd9,0x04,0x0d,0x36, +0x83,0xb7,0x01,0x7a,0x6f,0x03,0x03,0x43,0x3c,0x0b,0x5f,0xc1, +0x59,0x16,0x62,0x50,0x9f,0xc4,0xe2,0xfb,0x81,0x38,0xcb,0x12, +0xa7,0xdb,0xfd,0x15,0x04,0x4c,0x0c,0xf0,0x9c,0x78,0x26,0x8a, +0xd8,0xae,0xda,0x83,0x73,0x77,0x1f,0xa0,0x53,0xac,0xa2,0xbc, +0xb0,0x2c,0xbf,0x9c,0x13,0x55,0x87,0x84,0x8b,0x6c,0x55,0x57, +0xf9,0x60,0x51,0x3f,0x07,0xb7,0xc4,0x69,0x24,0x21,0x22,0x9e, +0xbe,0x3a,0xcb,0xf8,0xc0,0x1e,0xef,0x56,0xe7,0x4e,0x6b,0x37, +0x3e,0x3d,0x38,0x35,0x38,0xf5,0x94,0x51,0x8c,0xe1,0x19,0xbd, +0x73,0x57,0xc7,0xae,0x3c,0x68,0x9d,0xb0,0xaa,0xe6,0xbd,0x6c, +0xad,0x0c,0x2c,0x8c,0xc3,0x32,0x43,0xb3,0x4e,0x65,0x36,0xb6, +0xd5,0xb4,0x95,0x77,0x5b,0x54,0xf2,0x01,0x76,0x4e,0xa6,0xf6, +0xd6,0x11,0x29,0xf4,0x95,0xec,0x62,0xc3,0x37,0xba,0xb6,0xdb, +0xd5,0x38,0x05,0x05,0x05,0x9d,0x0a,0x0e,0xe5,0x7c,0xbc,0x2f, +0x78,0x2d,0x88,0xd7,0x1f,0xb9,0x38,0x72,0x79,0x28,0x4e,0x09, +0xcb,0x87,0xa1,0x86,0x6d,0x8c,0x6b,0x8c,0xaf,0x4b,0xe0,0x0e, +0xab,0x92,0x3c,0xab,0x1c,0xeb,0x4c,0xf3,0xde,0x22,0x3e,0xac, +0x2d,0xa8,0xc3,0xbf,0x8d,0xc3,0x42,0x74,0x22,0xe5,0xfd,0x65, +0x77,0xd2,0x26,0xf4,0xb3,0xf9,0x08,0x0d,0xcf,0x63,0x5e,0xe6, +0x74,0x5c,0x87,0xa0,0x98,0x44,0x64,0x44,0x5e,0x8a,0x8c,0x0c, +0xa7,0x61,0x7e,0x39,0xb1,0x3a,0xbe,0xe9,0x72,0xbb,0x12,0x6c, +0xa3,0x02,0xab,0x80,0x81,0xcf,0xe0,0xd3,0x11,0xfc,0x14,0xd6, +0x6b,0xe1,0x7a,0x5c,0xa2,0x03,0x4b,0x70,0x3d,0x1b,0x24,0x89, +0xe3,0x6d,0x6c,0x14,0xca,0x6d,0x71,0x26,0x72,0xf8,0x49,0xbd, +0x36,0xff,0x07,0xcc,0x6d,0x7c,0x59,0x70,0xe7,0x72,0x6a,0xfc, +0xe7,0x89,0x31,0xa0,0x84,0x1b,0xf9,0x96,0x6e,0x99,0xe0,0x84, +0x6f,0x93,0x3d,0x8c,0x47,0x4c,0x7c,0x85,0x0a,0xe8,0xc0,0x3b, +0xc2,0x5d,0x51,0x4f,0xbc,0x0b,0x33,0xd8,0x48,0x9c,0xae,0xbb, +0x13,0xd7,0x68,0x94,0x99,0xf0,0x70,0xf0,0xc6,0x15,0x98,0x96, +0x06,0xf3,0xb8,0x1f,0x51,0x9f,0x39,0x5e,0xec,0x37,0x2c,0x7f, +0x21,0xad,0x48,0x6e,0x97,0x6a,0x5b,0x0d,0x73,0x64,0x06,0xd2, +0x83,0x6c,0x16,0x1f,0x4b,0xb5,0xad,0x8f,0x69,0x1e,0xc0,0x59, +0x74,0x7b,0x96,0xb4,0xbd,0x57,0xaa,0x6d,0x7d,0x2c,0x15,0x6d, +0x08,0x47,0x15,0x11,0x74,0x2e,0xfd,0xaa,0xc7,0x2a,0x1a,0xa6, +0xfc,0x09,0x46,0x4b,0x01,0x38,0xa2,0x02,0xcf,0x68,0x9a,0x5c, +0x20,0xee,0xd2,0x06,0x11,0x4b,0xf0,0x6b,0x71,0x35,0xbb,0xab, +0xc6,0xe5,0x89,0x1c,0xe2,0x99,0xae,0x2c,0xa9,0x2b,0xae,0xf6, +0x9b,0x00,0x5c,0x27,0x7c,0x48,0x46,0xc5,0x7d,0xda,0xac,0xf0, +0x01,0xca,0xa5,0x19,0xa9,0xc7,0xc2,0xd7,0xf8,0xf1,0xbf,0x5b, +0xe7,0xc5,0x15,0x64,0x74,0x00,0x2a,0x21,0x1f,0xbf,0x65,0x46, +0xf5,0x09,0x78,0xe1,0x06,0xf4,0x62,0xe6,0x0a,0xb9,0x42,0x0f, +0x19,0x87,0xef,0x60,0x3b,0x7e,0x37,0xac,0xa5,0x8b,0xf7,0x70, +0x3b,0xdc,0xd3,0x14,0xd7,0x9a,0xfc,0x43,0x7a,0xd8,0xa9,0x08, +0x38,0x4c,0x20,0xfd,0x28,0xa6,0x33,0xc2,0xcb,0xf9,0x58,0x7e, +0x03,0xca,0x99,0x36,0xac,0x23,0x53,0xfb,0x45,0xa2,0xd8,0xcf, +0x68,0x40,0x09,0x11,0x47,0xae,0x08,0x23,0x8c,0x38,0x22,0xad, +0x6c,0x1f,0x39,0x2e,0x8e,0x30,0x16,0x33,0x85,0x91,0xa3,0xf4, +0x3b,0x2e,0x45,0x6d,0x0a,0x29,0x79,0x30,0xad,0xfa,0x61,0xb5, +0x53,0x1b,0xbf,0xdb,0x6d,0x99,0x17,0xce,0x0f,0xe2,0x84,0xce, +0x72,0xf2,0x7b,0x20,0xbc,0xed,0xfe,0xab,0xab,0x54,0x34,0x5a, +0x8e,0xef,0x94,0x2f,0xca,0xa3,0xaa,0xda,0x35,0x89,0x68,0x9a, +0x24,0xa6,0xdb,0xa9,0x80,0x2f,0x1c,0x1c,0xc4,0x83,0xf4,0x7a, +0x99,0x0c,0xa1,0x29,0xe5,0x2a,0xfb,0x06,0x71,0x1f,0xcc,0x57, +0xc7,0xf9,0x78,0x42,0x1f,0x4e,0x50,0x1c,0xb0,0xd3,0x03,0x47, +0x71,0x39,0xab,0xd5,0xe8,0x33,0x7e,0x5f,0x59,0x72,0x98,0xfb, +0x84,0x5d,0xe4,0x73,0x70,0xaf,0xae,0xbc,0x4c,0xe3,0xfa,0x40, +0xf9,0x78,0xc2,0xd7,0x4a,0x89,0xcc,0xb2,0xc4,0xa7,0x1b,0x20, +0x7c,0x01,0xa5,0x18,0x89,0x63,0x32,0x71,0xbd,0x90,0x40,0xf0, +0x0e,0x7b,0xb4,0xd4,0xe3,0xae,0x1c,0x42,0x99,0xae,0xdc,0xbc, +0x66,0x15,0x58,0xc8,0x6a,0x64,0xca,0x70,0x23,0x06,0xb2,0x2e, +0xa1,0x19,0x75,0x2a,0x90,0x00,0xdd,0x70,0x53,0x9c,0xa7,0x03, +0x5f,0x48,0x0d,0xed,0xff,0x99,0x7b,0x99,0x78,0x32,0x9e,0x67, +0x93,0x2a,0x55,0x84,0x1f,0xe8,0xa0,0x18,0x6b,0xa1,0xf1,0x32, +0xed,0xdf,0xd8,0x0b,0x58,0xef,0x89,0x47,0x71,0x0e,0xae,0xe8, +0x32,0xe7,0x41,0x09,0x36,0x96,0x81,0xf3,0x45,0x68,0xe6,0x7e, +0x17,0x3b,0x19,0x8d,0x1c,0x9f,0x11,0x79,0x17,0x53,0x9f,0x95, +0x43,0x39,0xad,0x27,0xab,0x9f,0x2f,0x13,0xbf,0x43,0x86,0xbc, +0x80,0xcd,0x34,0x73,0x6c,0x7e,0x04,0x06,0x83,0x68,0xf0,0x87, +0xf6,0x12,0xd4,0xd6,0x07,0xed,0xdd,0xb8,0x41,0x9c,0x0b,0x1b, +0x28,0x91,0xd6,0x07,0x3d,0x5c,0x49,0x93,0x28,0x98,0x0c,0xb2, +0x98,0x2c,0x6c,0x20,0x0b,0x57,0x50,0x69,0x9d,0xb1,0x90,0x2c, +0x79,0xfd,0x07,0x83,0x19,0xb8,0x89,0xfc,0x82,0x33,0x57,0x30, +0xb0,0x71,0x3e,0xcc,0xfc,0x03,0x67,0xb2,0x73,0x15,0xc7,0x60, +0x1a,0x79,0x0c,0x2e,0xf0,0x1c,0x5d,0x1e,0x80,0x4e,0xc1,0x00, +0x1c,0x13,0xcb,0xf1,0x58,0xbf,0x3f,0x1c,0xd9,0x83,0x36,0xf8, +0x1c,0x6c,0x76,0x62,0x1c,0x7b,0xa6,0xd5,0x3b,0xcc,0x3b,0xdc, +0x3b,0x5c,0x09,0xae,0xde,0x1e,0x42,0x1e,0xc0,0x00,0x01,0x17, +0xea,0xdd,0xa1,0x08,0xbf,0x26,0x08,0xdf,0xd6,0xc2,0x19,0xf2, +0x8e,0x93,0xb2,0x1b,0xa0,0x94,0x03,0x73,0x60,0xb7,0xf2,0xe8, +0x03,0xfc,0x96,0xf5,0x8b,0xf2,0x8b,0xf2,0x8d,0xce,0xd0,0xe1, +0x6f,0x55,0x0c,0x97,0x8d,0xd5,0x72,0x4e,0x90,0x84,0xf3,0x47, +0x60,0x3e,0xe4,0xf4,0xb1,0x53,0x32,0xc5,0xa7,0x24,0xf2,0x48, +0xc0,0xee,0x00,0xdd,0x36,0x7f,0xbe,0x60,0xb4,0xe8,0xab,0xd4, +0x1b,0x1c,0x46,0xa2,0x2e,0x89,0xbc,0xed,0xff,0x24,0xb8,0xcf, +0x32,0x88,0xcf,0x36,0xcc,0xdf,0x95,0x76,0x80,0x83,0x29,0x70, +0x27,0xc2,0xb6,0xa5,0xa8,0x79,0x53,0xe7,0x08,0x1e,0x64,0xe0, +0xa0,0x74,0x23,0x6b,0xc5,0xf7,0x14,0xd6,0xc0,0x65,0x1d,0xc1, +0x75,0xdf,0xc3,0x3a,0x06,0xa7,0xa4,0x1b,0x59,0x2b,0x56,0x20, +0xdd,0x69,0xfb,0x0b,0x81,0x75,0x2b,0x70,0x1d,0xa5,0x03,0xe5, +0x8a,0x16,0x92,0x71,0x68,0x54,0x07,0xb8,0x63,0x55,0x83,0x3c, +0xbe,0x73,0xc3,0xbc,0xd3,0x7b,0x94,0x53,0x97,0x7a,0x59,0x1a, +0xe2,0xfc,0x43,0xe5,0xfa,0x3c,0x7c,0xf0,0xc5,0x95,0xe1,0xac, +0x3b,0x9c,0xe2,0xbd,0xa9,0x66,0x62,0xcb,0xb8,0xc7,0xc4,0xd7, +0xaa,0x28,0x2e,0x61,0x07,0x06,0xb0,0x17,0x31,0x33,0x14,0x57, +0xaa,0xe3,0x47,0xce,0x23,0xda,0x8f,0xac,0x7a,0xac,0x5d,0xf8, +0x02,0xdf,0x22,0xb7,0x42,0x57,0xfd,0x20,0xad,0xe0,0x13,0xc1, +0x1c,0x18,0x42,0x01,0xfc,0x89,0xca,0xbf,0xe9,0x2c,0xc3,0x05, +0xe2,0x08,0xeb,0x17,0xeb,0x7b,0xc6,0x2f,0x36,0x9b,0xfe,0xc9, +0xb7,0x2b,0xe0,0xad,0xaa,0x57,0xb5,0x19,0x01,0xe9,0x81,0xa9, +0xc1,0x75,0x65,0x7c,0x54,0x50,0x54,0x50,0x44,0x70,0xbb,0x05, +0xff,0x27,0xec,0x2a,0x86,0x7d,0x70,0x53,0x19,0xf6,0xc2,0xbe, +0x29,0x13,0xf6,0x50,0x65,0xc0,0xa4,0xbc,0x81,0x69,0xcf,0x94, +0x4a,0x24,0x3c,0x59,0xa3,0x1c,0x99,0x58,0x0c,0x56,0x04,0x9d, +0x7f,0x04,0x67,0x06,0x9d,0xa5,0x9a,0x55,0xe7,0x25,0xe8,0x4c, +0xe7,0x95,0x97,0x70,0x89,0x80,0xac,0xae,0xb7,0xa1,0xaa,0x2a, +0x25,0x39,0xfe,0xf3,0xd4,0x58,0xf0,0x5c,0xc8,0x57,0xf6,0xa2, +0xc5,0xcf,0x61,0x49,0x51,0x67,0xa2,0xa3,0x95,0x22,0xc3,0x62, +0x2f,0xa7,0xe6,0x26,0x17,0xc4,0x15,0x29,0x81,0x4b,0x3f,0x3a, +0x3e,0xd4,0x54,0x45,0x53,0x43,0x30,0x64,0x42,0x8f,0x69,0xda, +0x23,0xb1,0xe3,0x4c,0x36,0x90,0x6e,0x7c,0xe7,0x25,0xbc,0xd3, +0x23,0xbd,0x7f,0xd4,0x83,0x3f,0x8a,0x21,0x30,0xc6,0xe2,0x3b, +0xe7,0xb7,0xc5,0xe8,0xc9,0x75,0x4e,0x87,0x45,0x18,0x2f,0x38, +0xce,0x64,0x1a,0xcb,0xc6,0x99,0xbb,0x85,0xa5,0x5f,0xa6,0xaa, +0xa4,0xdc,0xbd,0xfc,0x1b,0xac,0x54,0xc6,0xa5,0xbf,0x33,0xb8, +0x09,0xf4,0xc9,0x4b,0x98,0xb6,0x56,0xf2,0xd1,0x5a,0xfc,0xef, +0x16,0xb8,0x38,0x12,0x3d,0x41,0x2e,0xee,0x47,0xa5,0x37,0xb7, +0xc9,0xdf,0x66,0xda,0x33,0x0a,0x1a,0x55,0x84,0xdd,0x93,0x43, +0xec,0xd4,0x43,0x1a,0xa7,0xbf,0xc3,0xb4,0xa5,0x2c,0xc4,0x7b, +0x13,0xbc,0x35,0x78,0x93,0x86,0xd7,0x45,0x16,0x5d,0xd0,0x88, +0xc0,0x62,0x2a,0xf7,0x16,0xb3,0xf8,0x64,0xfe,0xe9,0xf6,0xd0, +0xbe,0xd0,0x16,0xfb,0x48,0x3e,0xc3,0x2a,0xc3,0x34,0xd1,0x94, +0xfb,0x14,0x94,0x49,0xba,0x4e,0xea,0xd1,0xc4,0x7d,0x6d,0x29, +0x7c,0xec,0xb5,0xb0,0x47,0x61,0x83,0x1c,0xaa,0xe1,0x20,0x29, +0xfc,0x32,0xeb,0xaf,0x78,0x98,0x6e,0x9a,0xc8,0xc7,0x2e,0x0b, +0xf9,0xd4,0x7f,0x8f,0xe4,0x58,0x56,0x44,0x92,0x0e,0xc4,0xad, +0xb9,0xb8,0xb5,0x2b,0x99,0xbf,0xf0,0x28,0xe6,0xb7,0xe8,0x5b, +0x54,0x22,0xcc,0xba,0x40,0x30,0x89,0xb1,0x08,0x4f,0xa7,0xa3, +0x59,0x03,0x2d,0xc2,0x46,0x91,0x61,0xb3,0x2a,0xd3,0xaa,0x92, +0xca,0x4f,0x24,0xf1,0xa7,0x3d,0x22,0x9c,0x83,0x9d,0x38,0x6c, +0x13,0x37,0xd2,0x51,0x89,0xc5,0xad,0x06,0xab,0xd1,0x75,0x49, +0x0d,0x15,0x1e,0x6e,0xbf,0x3f,0x81,0x59,0x49,0x60,0xca,0x01, +0x83,0x8d,0xcc,0x9e,0x12,0x8f,0x47,0x72,0x28,0x66,0x3a,0xb3, +0xf3,0x5a,0x54,0x86,0x58,0xf5,0x74,0x99,0xb8,0x4b,0x38,0x4d, +0x30,0x87,0x4a,0xdc,0x1c,0x66,0x0c,0xdf,0x23,0x74,0xa3,0x14, +0xdf,0x63,0xf1,0x1b,0x43,0x82,0x1f,0xa0,0x54,0x07,0x07,0x0f, +0xe7,0xd3,0x5d,0x1f,0x60,0x29,0x03,0xa6,0x7b,0x48,0x80,0x96, +0x8f,0x86,0xa3,0x76,0xd8,0x85,0xd0,0xcf,0x43,0x2f,0x24,0x1b, +0xf1,0x3f,0x25,0xdd,0x4f,0xfa,0x2a,0x37,0x29,0x3c,0x31,0x2c, +0x31,0xa2,0xb5,0x98,0x77,0x1b,0xb0,0x9b,0x70,0xaf,0x73,0xf0, +0xe5,0xb3,0x02,0xb3,0xbd,0xb3,0xbc,0xad,0x63,0xac,0x62,0x8d, +0xcf,0x94,0x75,0xe5,0xf7,0x15,0x8e,0xd3,0x53,0x60,0xa5,0xe2, +0xd6,0xa9,0x41,0x78,0x0c,0x39,0x18,0xc1,0x54,0x17,0x96,0x15, +0xe7,0x95,0x70,0x2d,0x78,0x97,0x4d,0x4d,0x4f,0x4d,0x4f,0x49, +0xd7,0xcd,0xe6,0x0f,0x6c,0x5c,0x7f,0x08,0x37,0x1c,0xa1,0xba, +0xbd,0x26,0xb3,0x2a,0xb3,0x22,0x9b,0x43,0x6b,0xb8,0xa6,0x8f, +0xbf,0xe2,0xf3,0xf1,0x21,0x68,0x74,0x65,0x77,0xa5,0x79,0xbf, +0x94,0xc3,0x17,0x54,0x49,0x67,0x36,0xa9,0x3c,0x60,0xd5,0xf3, +0x64,0x98,0xaf,0x50,0x21,0x7e,0x7e,0x6e,0xfe,0xae,0x01,0x1c, +0xd6,0x31,0xe5,0xf9,0xa5,0x05,0x45,0x85,0x1c,0x05,0x8c,0x83, +0x64,0x12,0x12,0xd4,0xd9,0xb1,0xf9,0x93,0x90,0xa7,0xce,0x8a, +0x0f,0xac,0x08,0x24,0xa8,0x61,0x02,0x03,0xd7,0xae,0x11,0xc8, +0x53,0xc3,0x3c,0x46,0x0b,0x4f,0x12,0x6c,0xbc,0x0a,0x8d,0x0c, +0x88,0xc7,0x09,0xf6,0x5f,0x85,0x7e,0x66,0x4a,0x59,0xea,0x44, +0xde,0x78,0x98,0x8e,0x95,0xd4,0x67,0xb9,0xff,0x16,0xdd,0x87, +0x97,0xd1,0x8e,0xd8,0xc4,0x24,0x36,0xa9,0x34,0x83,0xb8,0x89, +0x9d,0x0b,0xae,0x8a,0xaf,0x89,0x03,0xea,0x69,0xe1,0xb2,0x75, +0x6f,0x5a,0x0a,0x96,0xd7,0x54,0xb6,0x97,0x0f,0x71,0x62,0xc7, +0x98,0x62,0x1f,0x5b,0x74,0x2d,0xff,0x4e,0xc6,0x23,0x0e,0xac, +0xa8,0x32,0x0b,0x6b,0xf0,0xef,0x09,0xa8,0x31,0xf2,0xe7,0x73, +0x5d,0x8a,0x4d,0xd3,0x1d,0x38,0xc1,0x40,0x9c,0x4b,0x72,0x3a, +0x32,0xfb,0x92,0x3a,0xb9,0xc6,0x1d,0x6c,0x6e,0x67,0x7a,0x4f, +0x52,0x17,0xd7,0x48,0x09,0x77,0x56,0x47,0x5a,0x67,0x4a,0x97, +0x6e,0x2a,0x1f,0x65,0x18,0x66,0x12,0x6c,0xca,0x61,0x81,0x09, +0xc4,0x31,0x6a,0xb8,0x75,0x29,0xca,0x71,0xce,0x92,0x6a,0x53, +0xbe,0xb2,0xa4,0xbc,0xb4,0xac,0x82,0x13,0xd2,0xdc,0x19,0x9d, +0x73,0x87,0xa3,0x0c,0xe4,0xd6,0x31,0x81,0xc1,0x96,0x0b,0x96, +0x32,0xe9,0x7a,0xb2,0xbf,0x98,0x5b,0x15,0x25,0x77,0x32,0x55, +0xd2,0xc6,0xe3,0x9e,0x4d,0x28,0xdf,0x61,0xf1,0x13,0xb8,0x4d, +0x62,0x6d,0xc2,0x4c,0x03,0xad,0x39,0x0c,0x61,0x0a,0x5b,0xf3, +0xdb,0xb3,0x3b,0x38,0x88,0x47,0x75,0x12,0xeb,0x10,0x66,0x1a, +0x60,0xce,0x89,0x2a,0x4c,0x4d,0x4b,0x55,0x5b,0x79,0x17,0x07, +0x1e,0x78,0x81,0xe4,0xda,0xe5,0xea,0xa7,0x9a,0x75,0x65,0xf1, +0x91,0x3d,0x81,0x03,0xc1,0xf5,0x9c,0xa8,0x83,0xc5,0xa4,0xe7, +0x5e,0xe3,0xcb,0xbc,0x27,0x66,0x99,0xbc,0xdf,0x5e,0xe7,0xad, +0x46,0x87,0x38,0x78,0x0a,0x3e,0x24,0xdb,0x20,0xf3,0x60,0xd2, +0x89,0xde,0x34,0x3e,0x66,0x32,0xe4,0x96,0xd4,0xd3,0x64,0x4f, +0x18,0x49,0x39,0x9c,0xb8,0xeb,0xf2,0xb6,0x81,0x64,0xfe,0xfc, +0xc3,0xe8,0xaf,0xc2,0x6f,0x52,0x7a,0xa1,0x4d,0x47,0xc8,0x0d, +0x75,0x0c,0x70,0xd5,0x76,0x3a,0x42,0x26,0x7c,0x61,0x45,0x71, +0x73,0x51,0x0f,0x27,0x56,0x0d,0x29,0x36,0xb3,0x45,0xb7,0xf2, +0x1e,0xa5,0x7f,0xc5,0x09,0x1f,0xe2,0x24,0xb9,0x06,0x65,0x5d, +0x58,0x36,0x09,0x7d,0xdd,0x78,0x90,0xcd,0x29,0xc8,0x2e,0xca, +0x28,0xd6,0x2f,0xe2,0x4f,0xb9,0xf9,0x9f,0xf4,0x73,0xe3,0xf0, +0x24,0xd3,0x57,0x14,0x5c,0x12,0x50,0x18,0x50,0xa0,0x64,0xe8, +0x93,0xef,0x97,0xeb,0x97,0xe5,0xab,0x84,0x27,0x4c,0xa1,0x59, +0x1d,0xf3,0xcd,0x20,0x5f,0x0d,0x27,0x4d,0x15,0xbb,0xba,0x19, +0x13,0xb1,0x80,0xd8,0xe7,0x9f,0x2c,0xf7,0xac,0x6d,0xab,0x69, +0xac,0xad,0xa9,0x75,0xa8,0xe2,0xdd,0xdc,0x9c,0xdc,0x6c,0xdc, +0x82,0xaa,0x43,0xeb,0x23,0x9b,0x39,0x08,0xef,0xc1,0x0b,0x4c, +0x4c,0xeb,0xd9,0xae,0x5e,0x65,0x2d,0xc6,0x24,0xce,0x2c,0xd1, +0x4a,0x8e,0x7b,0xee,0x30,0xcd,0x09,0xf5,0x09,0x95,0x89,0x81, +0x1d,0xfc,0xae,0x60,0x9c,0x1b,0xb1,0xe8,0x42,0xaa,0x29,0xdf, +0x71,0xb1,0xef,0x72,0x4f,0x3c,0x77,0x0c,0x55,0x4d,0x40,0x75, +0x0b,0x6b,0x10,0x4b,0x89,0xf4,0xb9,0x04,0x23,0x7e,0x38,0x6e, +0x38,0xbe,0x2f,0x81,0xa3,0xd4,0x67,0x3e,0x9b,0x65,0x22,0x03, +0x8e,0x69,0xc8,0xcb,0x6a,0x54,0x01,0x86,0x1d,0x48,0xec,0x4a, +0x6a,0x4c,0x3e,0xdd,0xc5,0x3b,0xc4,0x58,0x9c,0x36,0x89,0xe5, +0x1e,0x81,0x1a,0x9b,0x6e,0x90,0x67,0x56,0x6c,0x63,0xe0,0xa2, +0xee,0xba,0xdf,0x93,0xc6,0xf2,0xdd,0xb2,0xab,0xb5,0x23,0x0d, +0x55,0x36,0x4d,0x2e,0x9d,0x3e,0x4d,0x01,0xe5,0xf1,0x49,0x8d, +0x45,0x30,0x87,0x37,0x2b,0x94,0x5d,0x80,0x48,0x62,0x5a,0x61, +0x95,0x6f,0x98,0xef,0x66,0xcf,0x77,0x05,0x74,0x04,0xf4,0x9f, +0xa4,0xf0,0xbe,0xe1,0x67,0xe2,0x50,0xef,0x58,0xe3,0x50,0xd5, +0x0f,0xb2,0x0a,0xf8,0x28,0x1d,0xb6,0x70,0xad,0xb8,0x87,0xcd, +0xb8,0x96,0x32,0x91,0x3c,0xac,0x91,0xc0,0xc7,0xe8,0x45,0xaa, +0x85,0x1d,0xa1,0x31,0xae,0xfd,0x17,0xe3,0xb7,0xd8,0xf3,0x53, +0xd7,0xed,0x03,0x8e,0xbd,0x8e,0x3d,0xf6,0x56,0xbb,0xb5,0x0f, +0xa9,0x1e,0x6b,0x34,0xe2,0x1f,0xdd,0x9a,0xbc,0xd7,0xf5,0xac, +0xd6,0xad,0xd6,0xb5,0xd6,0x99,0x13,0xbe,0x39,0x4a,0xd6,0xd5, +0xed,0x6f,0xd1,0xe8,0xfe,0xf6,0xf1,0xc4,0x2f,0x55,0x6f,0x1e, +0x66,0x3a,0xc0,0x1e,0x38,0x37,0x82,0xe7,0x60,0x9d,0x06,0xae, +0xc3,0x30,0x1d,0x08,0xc3,0x3d,0xe8,0xa5,0x23,0xec,0x64,0xdd, +0x56,0x1b,0xee,0x50,0x3d,0x76,0x7c,0xc2,0xf4,0x8e,0xf5,0x37, +0x7a,0x5e,0x7c,0xeb,0xfa,0xfe,0x3d,0xd7,0xd5,0xf6,0x1a,0xac, +0xb1,0xc6,0x99,0x6e,0xa5,0xda,0x3c,0xcc,0xae,0xfd,0xad,0xeb, +0xe9,0xf8,0x0d,0xdd,0x27,0xe6,0x3f,0xdb,0x71,0x53,0xb5,0xc2, +0x12,0x52,0xf2,0xb8,0xe8,0x65,0xfe,0x0f,0x1c,0xcc,0x65,0x22, +0xf0,0x23,0x1f,0x64,0x2d,0x96,0x38,0x96,0x3b,0x95,0x3a,0x16, +0xbf,0xe9,0x14,0x46,0xa9,0xdb,0xfc,0x09,0xa9,0x6f,0xd7,0xab, +0x13,0x6b,0xa4,0x56,0x5e,0x13,0x30,0x9f,0x55,0xac,0x47,0x96, +0x88,0xaf,0xc5,0x7e,0x94,0xeb,0xfc,0x33,0x7b,0x04,0x55,0x18, +0x0d,0xe1,0x0c,0xa5,0x75,0xe2,0x29,0x4a,0xeb,0x84,0x53,0xa8, +0xf6,0xbf,0x6d,0xdf,0x22,0x74,0x6b,0x81,0x70,0x8a,0x99,0xfb, +0xcf,0x7b,0xa1,0xc4,0xbe,0xce,0x6d,0xd8,0xf7,0xe1,0xe0,0xf7, +0xf5,0x7f,0x14,0xff,0x69,0x94,0xc3,0x07,0x6e,0xf3,0xda,0xe5, +0x70,0xe0,0xd4,0xe3,0x88,0x9f,0x4e,0x03,0x03,0xe6,0x59,0xfc, +0xd9,0x41,0x34,0x0b,0x91,0x9d,0xbb,0x71,0xfe,0xce,0x43,0xe5, +0x7a,0x5d,0x47,0x76,0xf7,0xa5,0x7d,0x97,0x0f,0xcb,0x91,0x8d, +0x8e,0x37,0x00,0x59,0x72,0x32,0x7e,0x9a,0x8d,0x73,0x4a,0x56, +0x2b,0x99,0xed,0xd7,0x3c,0xbe,0xc7,0xb0,0xce,0x9c,0xbf,0xd9, +0x35,0x3c,0xd2,0x71,0xa5,0xe8,0x78,0xa5,0x49,0xbd,0x4b,0xbd, +0x53,0x6f,0x5a,0xdc,0x70,0x06,0x1c,0xe0,0x0d,0x0b,0x64,0x53, +0x6f,0x0b,0x87,0xc9,0x36,0x76,0x59,0x74,0xbc,0xf9,0x8f,0xc9, +0x32,0x47,0x56,0xa7,0x30,0x70,0x5c,0x0e,0xf3,0x99,0xb6,0xcc, +0x8c,0x26,0x95,0x0e,0xd6,0x38,0x4d,0x76,0x1c,0x55,0x58,0xff, +0xd3,0x49,0x85,0x2a,0x2d,0x2c,0x2c,0x4c,0x3f,0xdb,0x89,0x1f, +0x87,0xcb,0x1e,0x81,0x06,0x1b,0xeb,0x15,0xe9,0x15,0xee,0xd1, +0x75,0x8a,0xcf,0xa9,0x4f,0xab,0x4b,0xaa,0xa7,0x73,0x3b,0xe4, +0x06,0xb8,0x74,0xa1,0xcb,0x15,0x1d,0x3c,0x86,0xea,0x94,0x2d, +0xe1,0xe9,0x48,0xfc,0xc8,0x18,0xe7,0xc8,0xbb,0x6c,0x64,0xc3, +0xf0,0x49,0x3a,0x25,0x33,0x97,0x94,0x61,0x0d,0xab,0xb8,0xd8, +0x4b,0x3c,0xfa,0xad,0x87,0x1d,0xda,0x6d,0x5d,0xf8,0x06,0xdb, +0x66,0xad,0x72,0x23,0x0e,0xdb,0xc5,0x6e,0xe2,0x12,0x65,0x17, +0x6d,0x13,0xcd,0x41,0xa9,0x11,0x36,0xb0,0x81,0x67,0x03,0xce, +0x06,0x9e,0xe3,0xa0,0xdb,0x08,0x47,0x58,0xa3,0x18,0xe3,0xd3, +0x16,0x67,0x92,0xa9,0x8c,0x56,0xce,0x84,0x23,0xd5,0xc0,0x56, +0x71,0x5a,0x8f,0x48,0x79,0x5f,0xfe,0x68,0xce,0xa0,0x59,0x2e, +0x1f,0x66,0xe4,0xa7,0xed,0x45,0xff,0x88,0x83,0x07,0x89,0x9c, +0xf4,0xbd,0xef,0xdf,0x6b,0x19,0xc0,0x17,0x18,0x15,0xec,0x4f, +0x53,0x7f,0x23,0x16,0x57,0x11,0xe7,0x50,0xc7,0x30,0xc7,0x70, +0x0e,0x42,0xff,0x1a,0xfe,0x14,0x34,0xb5,0x50,0x13,0xe5,0xba, +0x20,0xc7,0x78,0xd6,0x38,0xc4,0x38,0xcc,0x2c,0x32,0x55,0x9b, +0x6f,0x4f,0xed,0xcc,0xe8,0xcc,0xa4,0x89,0x15,0xe7,0xb1,0xd9, +0x9a,0xb2,0x3f,0x99,0xae,0xec,0xdc,0x0e,0x15,0xe8,0x63,0x9b, +0x32,0x9a,0xb2,0x1a,0xb3,0x39,0xe1,0x17,0x91,0x21,0x2b,0x6b, +0x77,0x37,0x1f,0xeb,0x7a,0xf5,0xe5,0xb5,0x5f,0xea,0xde,0x44, +0x57,0x00,0x65,0x01,0x59,0xa3,0x98,0xf5,0x6f,0x74,0xc5,0x69, +0x43,0x1c,0xee,0xc3,0x28,0x1d,0xc1,0x8c,0x75,0x59,0xad,0xb3, +0x63,0xdb,0xb1,0x43,0xe3,0x06,0x77,0xcd,0xbf,0x31,0xf0,0xe0, +0x3b,0x36,0x0c,0xef,0xbd,0x7d,0x7c,0x87,0xc1,0x52,0x1b,0x9c, +0xeb,0x5e,0x4c,0xa3,0xeb,0xa3,0x1a,0x78,0xab,0xeb,0xf9,0xf8, +0x5d,0xdd,0xe7,0xe6,0x7f,0xdb,0xd3,0x99,0x50,0x2b,0xb4,0x90, +0xe6,0x2c,0x8a,0x78,0x0f,0x59,0x93,0x34,0xd9,0x1a,0x8a,0xac, +0x1e,0x67,0x13,0xca,0x54,0x46,0xd8,0x27,0x79,0x0f,0x4b,0x27, +0x6b,0x7c,0xda,0x78,0x2d,0x37,0x35,0xef,0x83,0x41,0xdc,0x1f, +0x06,0xe8,0xc5,0xea,0x16,0x9c,0x1a,0x96,0x03,0x23,0x7e,0x4a, +0xa2,0xd3,0xa3,0x2f,0x46,0x44,0x46,0xc7,0xf0,0x67,0x2f,0x25, +0x16,0xc4,0x17,0x5c,0x2a,0x56,0x82,0x39,0xfd,0xf8,0x76,0x22, +0x03,0xb3,0x60,0x5a,0x1f,0xda,0xb2,0xc9,0xc5,0x92,0x9b,0x8a, +0x69,0x3a,0x1f,0xa6,0xe5,0x79,0xc4,0xd9,0x38,0xba,0x8f,0xf7, +0x0e,0xf7,0x0a,0xf7,0x8a,0xe0,0x20,0xe4,0xd9,0xd0,0x56,0xd0, +0xd0,0x45,0x8d,0x8d,0x7a,0x2f,0x30,0x89,0x75,0x09,0x73,0x89, +0x38,0x19,0x95,0xaa,0xc7,0x57,0x24,0x57,0xa4,0x56,0xa4,0x73, +0x58,0xb1,0x43,0xea,0x57,0x34,0xc1,0xb4,0x67,0xe5,0x37,0xbd, +0x71,0xb1,0xcc,0xa0,0xaf,0xcc,0xf3,0xe7,0xce,0x9f,0x3d,0x77, +0xae,0xc5,0x85,0xcf,0x2d,0xc9,0xae,0xc8,0xac,0xe2,0xae,0x22, +0xcb,0x44,0xe3,0x42,0x43,0xf8,0x98,0x0d,0x5f,0x6b,0x71,0x04, +0xdf,0xda,0x5e,0x69,0xce,0xff,0x7c,0xb7,0x69,0xa8,0xfc,0xca, +0xa5,0x84,0xb8,0x8b,0x71,0xb1,0x77,0xf1,0x2d,0xbe,0xa5,0x41, +0x06,0x0f,0xa1,0x8b,0x94,0x76,0x14,0x5f,0x49,0xe9,0xa0,0x40, +0xf8,0x36,0x1b,0x9d,0x11,0x95,0x11,0x99,0xd1,0xdb,0x3d,0x70, +0xb7,0x68,0x9c,0x6b,0xc7,0x6b,0xc6,0x10,0xcf,0x9e,0xb2,0xb7, +0xd1,0xb3,0xb6,0xf5,0xac,0xf2,0x28,0xf7,0x2e,0x76,0x74,0xe1, +0xdb,0xec,0x5a,0x4d,0x6b,0xcd,0x39,0x3c,0x62,0x0a,0xeb,0x45, +0x17,0xc6,0xb0,0x32,0xe0,0x26,0xcc,0x54,0x86,0x95,0xc6,0xb8, +0x92,0xc5,0xa5,0x3e,0xc6,0xbb,0x8d,0xe5,0x45,0xfa,0x4f,0x86, +0x73,0xdb,0x2f,0x4b,0xdc,0x7e,0x7d,0x7c,0x83,0x2a,0xbc,0xbf, +0x80,0x12,0x98,0x94,0x3e,0x19,0xbe,0xc3,0x44,0x45,0x5f,0xbc, +0x18,0xad,0x02,0x6e,0x30,0xb7,0x17,0xe7,0x82,0xe7,0x0f,0x6c, +0xa4,0x83,0xbf,0xb1,0x9f,0x23,0x9d,0xac,0x21,0xc2,0xff,0x22, +0xb0,0x90,0x89,0xdc,0xe7,0xb3,0xd6,0x71,0x57,0xb7,0x17,0xdf, +0xfe,0x6f,0xff,0x9a,0x2e,0xbc,0xcd,0xa6,0xf4,0x25,0xfe,0xdb, +0xbf,0x26,0x1c,0xb7,0x7b,0x20,0x51,0xc5,0x65,0x9d,0x8e,0x7c, +0xdb,0xe3,0x8a,0x27,0xf9,0x5f,0x73,0xf7,0x70,0x11,0x83,0x27, +0x75,0x28,0x4a,0x6d,0xc0,0x25,0xf2,0x1a,0x2d,0xf8,0x04,0x3e, +0xbe,0x2a,0x75,0x33,0xdd,0xad,0x24,0x35,0x5e,0xda,0x7b,0x07, +0x67,0xd3,0x90,0x9a,0x5f,0x35,0xc6,0xe3,0x16,0x58,0xa2,0x0e, +0x0b,0xc1,0x59,0x19,0x07,0x30,0x81,0x08,0x66,0x37,0xfb,0x8f, +0xfc,0xae,0xbd,0x14,0x8d,0xe9,0xdb,0x51,0xc3,0x1b,0xa2,0xd9, +0x2e,0x43,0xc1,0xb1,0x9f,0xc5,0x8f,0xe0,0x25,0x41,0x63,0x60, +0xc1,0xf8,0xcd,0xc3,0x31,0x8e,0x6e,0x73,0xf4,0x1f,0xb8,0x4b, +0x7a,0x1a,0x66,0x0c,0x73,0xd9,0x4d,0xe2,0x7a,0x32,0xd8,0x31, +0x78,0xa7,0x62,0xc2,0xb8,0x92,0xf7,0xd2,0x35,0x38,0x62,0x6c, +0xcb,0x41,0x1e,0x28,0x91,0x5a,0xbb,0x66,0xbd,0x12,0xab,0x9e, +0x1a,0xde,0xbb,0xcd,0x72,0xc4,0xa5,0x8e,0x9e,0xd4,0x36,0x21, +0x97,0x5c,0x85,0xa8,0x2e,0x8c,0x9a,0x84,0xd4,0x6e,0x5c,0xcd, +0xe6,0x14,0x66,0x15,0x65,0x94,0x18,0x15,0xf0,0x21,0x6e,0x01, +0x27,0xfd,0x29,0xc4,0xe8,0x30,0xdd,0x85,0xc1,0xa5,0x81,0x85, +0x81,0xf9,0x4a,0x26,0xbe,0x79,0x7e,0x39,0x6f,0x20,0x66,0x83, +0x29,0x5c,0x52,0xc7,0x10,0x33,0x08,0x39,0x8e,0x79,0x26,0xc2, +0x77,0x3d,0x8c,0xf8,0x3b,0xee,0x26,0x9e,0x61,0x9e,0x11,0x9e, +0x34,0x46,0x2e,0x3c,0x1d,0xd9,0x0e,0x9e,0x3a,0xe8,0x79,0x82, +0x8d,0xeb,0xb8,0xd4,0x79,0xb1,0x5b,0x3f,0x8e,0x3f,0x8b,0xab, +0xc2,0xf1,0x5d,0xf7,0x35,0x3d,0xee,0x7c,0x4e,0x6f,0xfa,0xf5, +0xa4,0xfb,0xdc,0x2d,0x2c,0x60,0x8c,0x03,0x8d,0xe8,0x54,0xca, +0x52,0xe7,0x3b,0x32,0x3a,0x32,0x3b,0x72,0x38,0x1c,0x1d,0x81, +0xa7,0x6c,0x45,0x7a,0x45,0x46,0x45,0x26,0x27,0xf4,0x60,0x3f, +0x71,0x2d,0xf0,0x2a,0xf3,0xad,0x69,0xaa,0xab,0xad,0xaf,0xa8, +0xb7,0xab,0xe2,0xbd,0x4f,0x7a,0x9c,0x74,0x76,0x3b,0x55,0x1d, +0xde,0x10,0xd5,0xca,0x81,0x65,0x0f,0x3a,0x31,0xa7,0x5b,0xcf, +0x75,0xf6,0x2a,0xeb,0x32,0x26,0x97,0xcd,0x25,0xdc,0x5a,0xf4, +0x05,0x53,0x93,0x50,0x95,0x50,0x92,0x14,0xd0,0xc1,0xab,0x05, +0x2d,0x0d,0xdf,0x7c,0x21,0xcd,0x94,0xaf,0xbb,0xd8,0x74,0xb9, +0x31,0x8e,0x3b,0x81,0x2a,0x26,0xa0,0xb2,0x91,0xb5,0x8e,0xb5, +0x38,0x63,0x76,0x36,0x41,0x72,0x7d,0x6c,0x8b,0x6f,0x8e,0xe7, +0x70,0xc6,0x22,0x36,0xc3,0x54,0xf6,0x92,0xa9,0xcb,0xcb,0xa4, +0xa0,0xc5,0xb2,0xed,0x89,0x4d,0xc9,0xd5,0xc9,0x31,0x5d,0xbc, +0x6b,0x8c,0xe3,0x69,0xdb,0xd3,0xdc,0x97,0xb0,0x8a,0x4d,0xd3, +0xcb,0x36,0x29,0xb2,0xb2,0x74,0x31,0x72,0x53,0xf7,0x2c,0x35, +0xe3,0xc7,0x4a,0xfb,0xab,0x3b,0xea,0x8a,0x9d,0xcb,0xdd,0xaa, +0x7d,0x1b,0xdc,0x1a,0x93,0x12,0x9b,0x0b,0x28,0x68,0x59,0x14, +0xc8,0x2e,0x42,0x38,0xb1,0xab,0xb4,0x2b,0xb4,0x2c,0x3c,0xe9, +0xc8,0x37,0xfb,0xb7,0xf8,0xb6,0x49,0xb5,0x87,0xab,0x84,0x76, +0xd2,0x92,0x99,0xd5,0xac,0x72,0x87,0x35,0x48,0x97,0x6d,0x40, +0x37,0xd6,0x39,0x3a,0xa9,0x4a,0xa5,0x9d,0xfd,0x2b,0x03,0xa6, +0x15,0xbe,0x6a,0xf6,0xea,0xe6,0x77,0x38,0xae,0xf0,0x5d,0x1e, +0xce,0x7d,0xa7,0x8d,0x46,0xac,0x56,0x91,0xd7,0x15,0xb9,0xf0, +0x48,0x6c,0x24,0x11,0xe0,0x0c,0x6a,0x03,0xa8,0x06,0xda,0xb0, +0x8c,0x09,0x71,0xf1,0x71,0x75,0x74,0x6e,0x77,0xe5,0x5b,0x9a, +0xeb,0x47,0x32,0xda,0xb8,0x0e,0xdc,0xc6,0x5a,0x76,0x3f,0x19, +0xba,0x73,0xa7,0x74,0x50,0xa9,0x53,0x54,0xd5,0x87,0xd7,0xac, +0x87,0x8d,0xb6,0x81,0xba,0xed,0xc9,0x2a,0xa7,0x0a,0xd7,0x62, +0x07,0x07,0xbe,0xdf,0x76,0xc0,0xb4,0x9d,0xce,0x87,0x33,0x7a, +0xe0,0x22,0x6a,0x31,0x47,0x8b,0x5d,0x6f,0x83,0x92,0x32,0x70, +0xba,0xf8,0x0e,0xe5,0x41,0x7e,0xba,0x8b,0x4f,0xc8,0x2b,0x8c, +0x5e,0x8e,0x94,0x0e,0x5f,0x7a,0x40,0x23,0x72,0x65,0x62,0xaf, +0x2a,0x2c,0x5b,0x00,0x9a,0x4c,0xca,0x88,0x6c,0xea,0x1d,0x20, +0x24,0x3c,0x3d,0xf2,0xf3,0x48,0xe9,0x61,0xe9,0xd9,0x4b,0xa9, +0xc5,0x09,0xc5,0x97,0x4b,0x95,0x60,0xef,0x00,0xee,0x81,0x0f, +0x61,0x4d,0x3f,0x96,0x31,0xa9,0xc5,0xc9,0x45,0x09,0x85,0x46, +0x19,0x7c,0xd0,0x51,0xdb,0xc3,0x86,0x7a,0xad,0xce,0x52,0x4f, +0x86,0xca,0xdc,0x2a,0xee,0x07,0xfc,0x10,0x2d,0x0c,0xc0,0x8c, +0x89,0xd8,0xa8,0x73,0x10,0xc9,0xe1,0x0a,0x63,0xfe,0xfb,0xbe, +0xc9,0x81,0xe6,0xbb,0x71,0x09,0x97,0x2f,0x26,0xc4,0xfe,0xbd, +0x94,0x6f,0x6e,0x91,0xcd,0x85,0x9b,0x82,0x9c,0x44,0xa5,0x45, +0x5e,0x8a,0x8c,0x8e,0x88,0x92,0xee,0xd9,0x76,0x0c,0x4e,0xfe, +0x58,0xfe,0x1d,0xd7,0x8d,0x2a,0xb0,0x4a,0x13,0x57,0xe1,0x4a, +0x5d,0xa8,0x67,0xad,0xf1,0x6d,0x7c,0x1f,0xb7,0xe2,0xa2,0x65, +0xd5,0x26,0xfc,0x50,0x6b,0x57,0x5b,0x7d,0x33,0x27,0x7e,0x3a, +0x21,0xec,0x93,0xee,0xd9,0xc6,0x9d,0x91,0xee,0xd9,0x6e,0x6a, +0x6e,0x94,0x09,0x06,0x94,0xaa,0x1d,0x7b,0x6e,0x0f,0x0b,0x82, +0xc0,0x89,0x03,0x8d,0x51,0x1a,0xbd,0x67,0xee,0x9c,0x7f,0x7c, +0xe1,0xdb,0x1b,0xe9,0x13,0x99,0xc3,0xb9,0x2e,0x43,0x54,0x05, +0xda,0xe1,0x16,0x2f,0xdc,0x1c,0xc5,0x4d,0x85,0xb0,0xce,0x31, +0x4e,0x31,0x2e,0xb1,0xe9,0x52,0xcf,0xb1,0x22,0x98,0x5f,0xfb, +0x4d,0x79,0xe4,0x10,0x6f,0x12,0xa2,0x13,0xa2,0x15,0xca,0x09, +0x8b,0xe1,0x08,0x9b,0x87,0xc1,0xed,0xb8,0xee,0xce,0xc6,0x2a, +0xf3,0xb1,0x84,0xf8,0x2b,0x79,0x10,0xc9,0x1b,0x15,0xca,0xc4, +0xf7,0x05,0x07,0x32,0x1c,0x37,0x98,0xd0,0x9f,0x74,0x71,0xdb, +0x65,0xd5,0xb8,0x43,0x1c,0xee,0x7f,0x73,0xef,0xe3,0x2a,0x81, +0x7f,0x7a,0xf1,0x9f,0x1b,0xc2,0xb2,0x1e,0x3c,0xcd,0x14,0x97, +0xe6,0x96,0x65,0x96,0xe8,0xe5,0xd1,0x89,0xe4,0xe3,0xe4,0xe6, +0x42,0xa5,0x07,0xd3,0x96,0xed,0x57,0xe9,0x51,0x13,0x90,0x4b, +0x27,0x52,0x99,0x67,0x9e,0x6f,0x8e,0x8f,0x12,0x86,0x9b,0x08, +0xe4,0x28,0xbe,0x32,0x86,0x57,0x07,0xc5,0xd5,0xc6,0xff,0xcc, +0xed,0x15,0x77,0x31,0xa0,0x4e,0x99,0x71,0xb7,0x7b,0xeb,0xc9, +0x16,0xfb,0xc6,0x7a,0xde,0xba,0xc1,0xaa,0xd6,0xb4,0x9c,0xc3, +0xe9,0x91,0x44,0xc7,0x81,0xb1,0xbf,0xec,0x14,0xef,0x22,0xc7, +0x4b,0xf7,0x98,0x1b,0x89,0xe3,0x29,0x9d,0x69,0x1e,0xed,0xfc, +0x67,0x01,0xf8,0x69,0x38,0xee,0x8c,0x4d,0x36,0xe5,0xaf,0x5d, +0x9a,0x8c,0x1b,0x8d,0xe3,0x0e,0xa3,0xb7,0x31,0x78,0xef,0x60, +0x8f,0xc4,0xee,0x3b,0xb7,0xfb,0x7c,0x22,0xe5,0x3b,0x97,0x6e, +0xc7,0x5f,0x8b,0xe7,0xd6,0xe2,0x3e,0xe9,0x39,0x1b,0xac,0x66, +0x5a,0x0b,0xf2,0x5b,0x55,0xbe,0x66,0x6f,0x25,0x5e,0x4d,0x9a, +0x48,0x39,0xd7,0xc5,0xeb,0x45,0xab,0xc5,0x1c,0x8c,0xe5,0x1e, +0x40,0x1a,0x9b,0xa9,0x5f,0x60,0x5e,0x66,0x7f,0xc8,0x69,0x87, +0xe7,0x9a,0xc0,0x42,0x13,0xfe,0xcf,0xa2,0xaf,0xca,0xef,0x34, +0x36,0x38,0xb5,0x7b,0xf5,0x06,0xb7,0x9f,0xaa,0xbf,0x9c,0xd8, +0x91,0xf9,0x07,0x6f,0x92,0x1f,0x8a,0x8c,0x45,0xb6,0x6d,0xa1, +0x4b,0x85,0x52,0x6f,0x75,0x7b,0x53,0x5b,0x97,0x6d,0x25,0xef, +0x60,0x6d,0xe9,0x60,0xe8,0xea,0x5b,0x19,0x5c,0x1f,0xde,0xce, +0x41,0x4b,0x2f,0x0e,0x30,0xb1,0x35,0xe7,0x1a,0x5b,0x94,0xe7, +0x2a,0x74,0xde,0x64,0x19,0xb7,0x6e,0x74,0x9b,0x80,0x88,0x6e, +0x94,0x4b,0x59,0xa6,0x24,0xbd,0xd8,0x24,0x9f,0x0f,0xa5,0x59, +0x46,0xea,0xf1,0x73,0x80,0xe9,0x28,0x3c,0x55,0x42,0xb3,0x4c, +0x81,0x92,0xd9,0xff,0x64,0x99,0x25,0xa6,0x10,0xa4,0x81,0x4e, +0xa6,0xe0,0x74,0x1c,0xcf,0x9a,0x0a,0xad,0xdd,0xcc,0xd4,0x26, +0xac,0x26,0xa9,0x76,0xa9,0x46,0x29,0x86,0x47,0x83,0x79,0x38, +0x09,0x9c,0x30,0x1f,0x39,0x58,0xa7,0x4f,0x71,0x94,0x11,0xe7, +0x53,0x09,0x17,0xc8,0x9a,0x44,0x1a,0x47,0x19,0xc6,0xa4,0xe9, +0xf0,0xbf,0x65,0xbf,0x28,0xf8,0xaa,0x34,0x59,0x8b,0xef,0xce, +0x08,0x7f,0x1c,0xf0,0x67,0xf0,0x6d,0x25,0x34,0x17,0x38,0x72, +0x15,0x6b,0x8f,0x33,0x70,0x1c,0x6a,0x09,0xd6,0x1e,0x83,0x5a, +0x56,0xb1,0x66,0x6a,0x1e,0x71,0x2f,0xf0,0x2e,0xf3,0xaf,0x69, +0x6c,0xa8,0x69,0x2c,0x6f,0xb0,0xab,0xe4,0x7d,0x5c,0x3c,0x5d, +0x4e,0xba,0x86,0xd4,0x44,0x34,0xc6,0xb4,0x71,0x92,0xa3,0x9a, +0x39,0x73,0xa6,0xf5,0x5c,0x47,0xaf,0xb2,0x1e,0xcd,0x32,0x16, +0x09,0x34,0xcb,0xcc,0xbf,0xcd,0x54,0xc5,0x57,0x24,0x16,0x49, +0x59,0x46,0x33,0x68,0x4d,0xf8,0xae,0xf3,0x34,0xcb,0x54,0x5d, +0xac,0xbb,0x5c,0x1b,0xcf,0xa9,0xe3,0x87,0xc6,0xf0,0xe1,0x06, +0xd6,0x3e,0xd6,0xe6,0x8c,0xd5,0xd9,0x44,0x63,0xbe,0x39,0xae, +0x29,0xbe,0x9e,0x92,0xe3,0xb7,0x56,0x4a,0x59,0xe6,0x19,0x53, +0xfb,0x9f,0x2c,0xd3,0x9c,0xd8,0x90,0x5c,0x99,0x1c,0xdd,0xc5, +0xbb,0xc7,0xb8,0x9c,0x76,0x94,0xb2,0x8c,0x9c,0x4d,0xd3,0xcd, +0x36,0x2e,0xb0,0xb2,0x71,0x31,0x73,0xd3,0xf1,0x2a,0x33,0xe7, +0x07,0x4b,0xba,0xaa,0x5a,0x6a,0x0b,0x4e,0x16,0x7b,0x94,0xfb, +0x36,0x9c,0x6c,0x4e,0x4a,0x6a,0xc9,0xa7,0x59,0xc6,0x32,0xff, +0x4d,0x96,0x71,0xaa,0x74,0x28,0xb2,0x2e,0x72,0x71,0xe4,0x1b, +0xfd,0x9b,0x7c,0x9a,0x68,0x96,0xf9,0x67,0x86,0x50,0x4b,0x46, +0xc1,0x1c,0x23,0x7f,0x3d,0xb1,0x1c,0x7d,0xd1,0x7c,0x44,0xcc, +0xdf,0xad,0x27,0x4c,0x0e,0xed,0x64,0xa6,0xba,0x14,0x15,0x44, +0x0f,0x1a,0x87,0x58,0x21,0x1b,0x03,0x88,0xb8,0xe2,0x6f,0xa9, +0x24,0xf4,0x92,0x2a,0x19,0xc6,0x17,0xba,0x6c,0xf3,0x0e,0xfa, +0xb3,0xb2,0x21,0xc9,0x51,0xea,0x23,0x02,0xf3,0xa1,0x99,0xd2, +0x78,0xd1,0x51,0x93,0x0c,0x61,0x99,0x1e,0xab,0x08,0x4e,0x92, +0x96,0xc7,0x34,0x4b,0xcb,0x63,0x16,0x89,0x1b,0xc9,0x00,0x78, +0x43,0x11,0x56,0xe0,0x43,0x16,0x7c,0xa4,0x2a,0x98,0xcd,0xb8, +0x13,0x36,0xb3,0x8a,0xfd,0xb6,0x52,0xd1,0x48,0x33,0x2c,0x62, +0xe7,0x2a,0xb6,0xfc,0x9f,0xc2,0x95,0x29,0x84,0x1a,0xa2,0x0f, +0xc1,0x83,0x6c,0x11,0x9a,0xd2,0x63,0xad,0xd5,0x65,0x6b,0x76, +0xd0,0x1d,0x3e,0x83,0xac,0xf0,0x4a,0xac,0x20,0x27,0x0b,0x3c, +0xcb,0xfd,0x6a,0x9b,0xea,0xea,0x1a,0xfe,0x85,0x07,0x17,0xf7, +0x93,0x4e,0xf4,0xc2,0x85,0x37,0x4a,0xf0,0x60,0xd5,0x83,0xce, +0x4c,0xec,0xff,0x1f,0xe0,0xa1,0x21,0x29,0xe9,0xff,0x0d,0x1e, +0xc4,0xaf,0x4b,0xc9,0x20,0xfa,0xe8,0xb3,0xfd,0xe2,0x1a,0x3a, +0xbc,0x7b,0xa0,0x84,0x5e,0xbc,0x2f,0x59,0xd8,0xfb,0xef,0xfa, +0xfe,0xb7,0xa5,0xf5,0xfd,0xc2,0x65,0x45,0x28,0x49,0x2f,0x4b, +0x2d,0x4d,0x2e,0xd5,0xcd,0xe1,0xdd,0x57,0x1d,0x5f,0xb4,0x7e, +0x47,0xad,0xb1,0xd4,0x17,0x81,0x7e,0xe5,0xb8,0x16,0x58,0x65, +0xd8,0x77,0x17,0xf1,0x41,0x3d,0x9e,0xc3,0xc1,0x15,0xf9,0x65, +0x79,0x65,0x59,0x65,0x9c,0xf0,0xd1,0x72,0x06,0xe7,0x9d,0x45, +0xbf,0x10,0x9c,0x2b,0xdf,0x1b,0x75,0xca,0xf1,0xc0,0x82,0x65, +0x4c,0x96,0xb6,0xec,0x6b,0xe6,0x75,0xc3,0x10,0xbc,0x9d,0xae, +0x92,0x09,0xef,0x26,0xd0,0x8b,0xf9,0x81,0xb4,0xd0,0x66,0x8a, +0xc5,0x5f,0x49,0x70,0x4c,0xf0,0xe9,0xe0,0xd3,0x1c,0xf8,0xbd, +0x1c,0x5e,0x0b,0x27,0xb4,0xf0,0x04,0xf2,0xba,0xc0,0xe3,0xe7, +0xac,0xd9,0x29,0xd3,0x50,0xf3,0x88,0x54,0x1d,0xbe,0x2d,0xad, +0x3d,0xa3,0x2d,0x8b,0xc3,0x7a,0x0a,0x1f,0x94,0xe8,0xfd,0xca, +0x74,0x65,0xe5,0xb6,0xab,0xc0,0x30,0x9b,0x9f,0x54,0x90,0x9c, +0x9f,0xc2,0xc1,0x4f,0x86,0x24,0x32,0x23,0xfa,0x62,0x78,0x84, +0x64,0x96,0x76,0x0f,0xec,0xfb,0xd1,0x1e,0x42,0x75,0x31,0x14, +0x3d,0x0c,0xc1,0x96,0x71,0x5b,0xb3,0x71,0xdb,0xc2,0xad,0xd5, +0xc6,0xfc,0xeb,0x6f,0x5e,0x3c,0x8b,0xfb,0x96,0x4b,0xc4,0x91, +0x21,0x48,0x62,0x12,0x2e,0x5f,0x4a,0x88,0x95,0xc3,0x72,0xdc, +0xd3,0xd2,0x28,0x3b,0x2e,0x9c,0x23,0x81,0x16,0x8e,0x27,0x5c, +0xad,0x3a,0xdd,0xf9,0xaa,0xe6,0x86,0x1b,0xf9,0x3d,0xdc,0x7f, +0x8c,0x25,0xb6,0x62,0xde,0x33,0xfa,0x76,0x5e,0x17,0xce,0x6f, +0x9f,0x78,0x0a,0x79,0xd2,0x5b,0xe6,0x30,0x66,0x32,0xa2,0x64, +0x3d,0x67,0xbb,0xf6,0xf8,0xce,0x6d,0x07,0x5b,0x2c,0xf9,0xf1, +0xfe,0xae,0xbe,0xfa,0x21,0x4e,0xf8,0x89,0xc1,0xf5,0x67,0x70, +0x9b,0xcf,0x22,0xf9,0x9e,0x60,0xef,0xb0,0x63,0x0b,0xb6,0x31, +0xb9,0x7a,0xb2,0x49,0x06,0x66,0x57,0x57,0xff,0x54,0xa0,0x52, +0x0a,0xef,0x24,0xc0,0x4e,0x70,0x52,0x9e,0x9a,0xcd,0xa4,0xe4, +0x24,0xe5,0x24,0xe5,0x52,0xaa,0x2f,0x1e,0x22,0xa1,0xc9,0x51, +0x9f,0x47,0x47,0x46,0x84,0xf1,0x67,0xae,0x40,0x71,0x3f,0x16, +0xff,0x3b,0x10,0x1d,0x86,0x90,0xc5,0x38,0x6b,0x6f,0x3c,0x82, +0x1b,0x0e,0x54,0x1a,0xf2,0xb0,0xe7,0xab,0xe7,0xb7,0x32,0xa5, +0x3a,0x98,0xea,0x31,0xb0,0x60,0x92,0xe2,0x2e,0x26,0x9e,0x95, +0x83,0x21,0xbe,0x5b,0xdb,0x21,0x53,0x17,0x94,0x89,0x8f,0x9d, +0x83,0x95,0xad,0x4b,0xbb,0x03,0xdf,0x54,0xdf,0xd4,0x5e,0xdc, +0xca,0x89,0x61,0x91,0xa4,0xcc,0xb3,0xd1,0xa2,0xc4,0xbe,0x93, +0xf2,0xaf,0x06,0xbb,0x4e,0x8f,0x32,0xca,0x0a,0xae,0xd0,0x6b, +0x9a,0x51,0x9e,0x5a,0x96,0x54,0x6a,0x94,0xc5,0x7b,0x6e,0xd4, +0x5e,0xb2,0xfb,0x48,0x95,0x09,0x9f,0x91,0x96,0x9e,0x9e,0x96, +0x91,0xed,0x52,0x68,0x9c,0x61,0xd1,0x4e,0xa7,0xcc,0x80,0xcf, +0x70,0x48,0xb5,0x6f,0x28,0x5f,0x54,0x5e,0x58,0x95,0x5b,0xcd, +0xc1,0xd3,0x65,0x0c,0xf2,0x67,0xd0,0x3d,0x14,0xe7,0xc9,0x0f, +0x46,0x87,0x3a,0x68,0x2f,0xd8,0xca,0x64,0xe9,0xc8,0x6e,0x30, +0x2f,0xab,0x07,0x41,0x96,0xa6,0x92,0x01,0x24,0x11,0x3c,0xe0, +0x23,0x65,0x58,0xcf,0xa2,0x9f,0x68,0x41,0x22,0xa5,0x82,0x27, +0xe9,0x82,0x9c,0xb9,0x07,0x7b,0xfa,0x29,0x78,0x87,0x1a,0xd2, +0x0b,0x72,0xcc,0x10,0x76,0x33,0x3e,0x5b,0xd4,0xb7,0x6f,0xd9, +0xc1,0xd5,0xe0,0xd2,0x17,0xf0,0x31,0xc4,0xe2,0xc7,0x5f,0xbf, +0x82,0xe5,0xb7,0xfa,0x0f,0x3f,0xd4,0x53,0x45,0x9e,0xbe,0x51, +0xe6,0x89,0xcb,0xbf,0xdb,0x82,0xca,0x18,0x0b,0xca,0x1b,0x71, +0x87,0x3e,0xec,0xf8,0xd7,0xac,0x6e,0x11,0x5b,0x64,0xf3,0xdd, +0x37,0x57,0xbf,0x89,0x7b,0xac,0x94,0x88,0x7d,0x7d,0x90,0xc2, +0xbc,0x21,0xee,0x72,0x98,0x8d,0xaa,0x4d,0xb5,0x32,0x31,0x59, +0x78,0x40,0xd6,0x20,0xff,0x8a,0x15,0x1e,0xef,0x22,0x21,0xe6, +0x6e,0x27,0x3c,0x2d,0xdb,0x3c,0xf9,0xb2,0xd6,0xea,0x1b,0xd9, +0xfd,0x9c,0xf8,0x1d,0xaa,0x13,0x94,0xef,0xa4,0x09,0x0f,0x16, +0xa0,0x9c,0x80,0xfc,0x29,0x85,0x85,0xb9,0xff,0xec,0x57,0x9c, +0x20,0xe2,0x26,0x58,0x7a,0x14,0x97,0x8a,0x8b,0xb5,0x84,0xc5, +0x34,0xf8,0x51,0x5b,0xd1,0x34,0x2a,0x72,0xb0,0x4d,0xd8,0xc4, +0x4c,0xd9,0x4f,0x99,0x90,0x1e,0x61,0xd0,0xe4,0xaa,0x30,0x6b, +0xea,0xa0,0x38,0x8b,0x55,0xbc,0x05,0x37,0x08,0xda,0x89,0x83, +0x60,0x47,0x67,0xc8,0x80,0x42,0x8d,0xe4,0xb4,0x64,0xb5,0x65, +0x74,0x6a,0x65,0xf0,0xf6,0xf8,0xb1,0xd1,0xf2,0x0d,0x38,0xad, +0xdd,0x82,0xef,0x1a,0x69,0x1a,0xab,0xbe,0xca,0x09,0xaa,0x63, +0xcc,0xd4,0xd0,0xd4,0x76,0xf2,0x17,0x38,0x2a,0x3e,0xc6,0x42, +0xc9,0xdd,0xd0,0x09,0xb6,0x12,0x5c,0x2d,0x54,0x51,0x50,0x84, +0xfe,0x29,0x33,0x72,0xd4,0x2f,0xb7,0xb6,0xb9,0xb6,0xb9,0xae, +0x56,0xe5,0xea,0x04,0x2c,0x01,0x02,0xb3,0x5f,0x71,0x5d,0xe2, +0x7a,0x1d,0x98,0x60,0xb7,0x1e,0xc1,0x77,0xf1,0x2d,0x75,0x0d, +0xce,0xd0,0xd8,0xd1,0x40,0x5f,0x59,0xb3,0xc3,0xf2,0x77,0x39, +0x74,0x33,0x1d,0x79,0xf9,0x6f,0xac,0x35,0xa4,0xc6,0xd6,0xd6, +0xec,0x5c,0xf8,0x05,0xfe,0x24,0x0f,0x53,0x61,0x5a,0xde,0x17, +0x79,0x4d,0x36,0xfc,0xcf,0xcf,0xab,0x61,0x1e,0xac,0x54,0xae, +0xf8,0x91,0xc5,0xf9,0x67,0x97,0x47,0xa9,0xcb,0x6d,0x62,0x43, +0xa3,0x5c,0x17,0x9c,0x60,0x32,0x0c,0x65,0x57,0x99,0xfe,0xaa, +0xdc,0xab,0xc9,0x2a,0x69,0x77,0xe3,0x7e,0x06,0x43,0x65,0x6c, +0x37,0x7a,0xe2,0xc9,0x20,0xf1,0x5d,0xa8,0x7a,0x40,0x7e,0xba, +0xc9,0x9b,0x82,0x82,0x53,0x8c,0x12,0xb0,0x2f,0x7b,0xd6,0xbe, +0xfe,0xb3,0x77,0xf1,0x13,0x83,0x1d,0xc8,0x52,0xde,0xbf,0x70, +0x89,0xc9,0x1f,0xf8,0x3e,0x6b,0x15,0x63,0x75,0xda,0xf9,0x0c, +0x87,0xb6,0x54,0x61,0xfe,0x05,0x7b,0x15,0x4a,0x18,0x34,0x15, +0xcd,0x52,0x69,0xb9,0x85,0x20,0x2b,0x54,0x02,0xcb,0x28,0xf4, +0xc5,0x22,0x9a,0x56,0xea,0x5f,0x6a,0xad,0xc5,0x7c,0x7d,0xc8, +0x60,0x7d,0xd7,0xaf,0x39,0x80,0x87,0xb4,0x2b,0xf4,0x78,0x30, +0xb8,0xf5,0xc3,0xd3,0xb4,0xbf,0xb9,0x44,0x26,0x75,0xf1,0x6f, +0x9b,0x41,0xeb,0x48,0xd9,0x30,0x8f,0xfb,0x26,0x57,0xdf,0xf6, +0x7e,0x41,0xb5,0x6f,0xc9,0x1b,0xdb,0x22,0x65,0x98,0x3d,0x4c, +0xc5,0xc9,0x1b,0xbf,0xbd,0xb5,0xba,0xb0,0xf4,0x3f,0x7e,0x7b, +0x8b,0x70,0x41,0xb3,0x29,0xff,0x0c,0x66,0x56,0xbf,0x4e,0xf8, +0x95,0x4b,0x14,0xeb,0xfe,0x6f,0xbf,0xbd,0x9f,0x51,0xb5,0xb9, +0x69,0x35,0x6c,0xf9,0xd7,0xb4,0x4f,0x49,0xb1,0x1a,0x4e,0x12, +0x3c,0x0f,0x9f,0x69,0xe0,0x67,0x18,0xaa,0x0b,0xa1,0xb8,0x1d, +0xfd,0xf5,0x84,0xf4,0x21,0x0c,0x86,0xed,0x70,0x9e,0x11,0xb5, +0xa7,0x0c,0xc9,0x15,0xf8,0xfe,0xc4,0xb8,0x30,0x57,0xb4,0x11, +0xe7,0xb2,0xc2,0x12,0x78,0x40,0xd0,0x1a,0xbf,0x07,0x69,0x20, +0x13,0xe8,0x51,0x9c,0x01,0x7a,0xfe,0x83,0xc8,0xfe,0x7f,0xf0, +0x90,0x7c,0xd3,0x2f,0xf5,0xd2,0x59,0xf9,0x63,0xdc,0xd0,0xd0, +0xb8,0x07,0x56,0x4a,0x3d,0x57,0xe9,0x41,0x08,0x41,0xb0,0x8d, +0x44,0x24,0x86,0x25,0x86,0x26,0xde,0xa9,0xb8,0xde,0xd2,0xda, +0xc0,0x35,0x88,0xd6,0x66,0xc2,0x74,0xd6,0xc9,0xc7,0xd2,0x5b, +0xd3,0xcf,0xa2,0xc0,0x3c,0xef,0x64,0x86,0xbb,0x33,0xdf,0x76, +0x6a,0xc4,0xbb,0xcf,0x87,0xc3,0x2c,0x33,0x88,0x65,0x4c,0xcc, +0x77,0x39,0xe1,0x07,0xd6,0xf9,0x66,0x3c,0xac,0xe9,0x7b,0xd1, +0x5d,0x7e,0x9b,0x4e,0xf3,0x25,0xc8,0x31,0x19,0xe6,0x54,0xe2, +0x37,0xe4,0x48,0x37,0xb6,0xe4,0x34,0xe5,0xfb,0xd8,0xbb,0xd8, +0xd8,0x39,0x37,0xb9,0xf0,0x7d,0x1d,0xed,0x23,0x15,0x43,0x5c, +0x03,0x2b,0x9e,0xa1,0x01,0x2a,0xcc,0x83,0x59,0xec,0x19,0x4d, +0x5f,0xcf,0x9d,0xae,0x05,0x96,0xfc,0xab,0x86,0x86,0xf6,0xc4, +0xa7,0xdc,0xfd,0xbd,0x8c,0x4b,0x76,0x68,0xad,0x1c,0x3e,0x44, +0x13,0x9c,0xc7,0xe4,0x98,0xc8,0x5e,0x33,0xcd,0xd2,0x5d,0x66, +0x10,0xc5,0x3a,0xf1,0x10,0x2b,0x70,0x30,0x48,0xc2,0xcf,0xc6, +0xa5,0xaa,0x5c,0x85,0x0f,0x76,0xb1,0xf8,0x82,0xce,0x0f,0xa7, +0xbe,0x76,0xd0,0x87,0x9d,0x2c,0xea,0xe3,0x5c,0xf2,0x00,0x16, +0x4a,0xee,0x36,0x1a,0x8a,0x7d,0x04,0x7d,0xff,0xad,0xb2,0x77, +0xa1,0x94,0x1e,0x77,0xa0,0xad,0x9e,0xe0,0x35,0x84,0x0e,0xb0, +0x03,0x7c,0x99,0x29,0x11,0x0e,0x52,0x28,0xbf,0x3d,0xc4,0xe6, +0x4b,0x78,0x29,0xce,0xd5,0x65,0x3b,0x24,0x6c,0x1f,0x1d,0xa2, +0x7f,0x65,0xe6,0x20,0x8e,0xea,0xb3,0x82,0xb5,0xf8,0x19,0x99, +0x84,0x11,0xf5,0x31,0x3a,0xec,0xbb,0xe9,0xb0,0xe3,0xcf,0x97, +0x29,0xe8,0xc4,0x43,0x21,0x4e,0xe0,0x03,0x56,0x91,0x08,0x77, +0xa4,0x8b,0x30,0x42,0x2f,0x02,0x3a,0x18,0x13,0xdc,0x88,0x46, +0xb0,0xf1,0xcd,0x27,0x2f,0x22,0x34,0x09,0x1c,0xd3,0x14,0xf7, +0xe3,0x3a,0xd1,0x7d,0x6c,0x14,0xba,0xb5,0xc7,0x04,0x77,0x34, +0x07,0x03,0x3a,0x64,0x53,0x7e,0xb0,0x84,0x78,0xe3,0x46,0x3d, +0xfc,0x78,0x39,0xca,0x6a,0xa4,0xa5,0x8a,0x85,0x35,0xf9,0xf5, +0x9c,0xa8,0x36,0xf1,0x08,0xfc,0x05,0x6f,0xf4,0x62,0xab,0x1f, +0x14,0x7e,0x99,0xf5,0x2d,0x07,0x27,0x46,0xc5,0x25,0xda,0x0c, +0x2c,0x9c,0x5a,0x4b,0x60,0x0a,0xb6,0xe3,0x14,0x0b,0x3a,0x1e, +0x04,0x86,0xa0,0x1b,0x87,0x58,0xa9,0xc9,0xc4,0x0c,0x02,0xd9, +0x60,0x3c,0x86,0x02,0x9b,0xde,0x96,0xda,0x9e,0xdc,0xa9,0x95, +0xca,0xfb,0xa0,0xb2,0x2d,0xce,0x3e,0xf6,0x69,0x97,0x35,0xdf, +0x30,0x5a,0x71,0xb5,0xf8,0x16,0x07,0x2c,0x52,0x22,0xa3,0x05, +0x01,0xe2,0xbc,0x2b,0x74,0xc4,0x3d,0xe8,0xdc,0xde,0xf5,0x13, +0x0d,0xdb,0x79,0xb0,0x62,0x18,0x57,0x80,0x96,0x16,0x0d,0x98, +0xad,0xba,0xb0,0x86,0x09,0xc5,0xf7,0xac,0xf0,0x13,0x9c,0x81, +0x9f,0xb4,0x98,0xf1,0x2f,0x60,0x66,0x2d,0x4c,0x4b,0x94,0x02, +0xb7,0x76,0x4c,0xb8,0x44,0x63,0xe6,0x4d,0xbd,0xf2,0xbb,0x68, +0xdb,0xde,0x80,0xef,0x81,0x45,0x54,0x56,0x4c,0x5c,0x78,0xa4, +0xd2,0x5c,0x21,0x4f,0xf8,0x89,0x24,0x32,0x2d,0x2b,0xe0,0x3d, +0x5d,0x88,0xdc,0x2f,0x79,0x1f,0xe8,0x0e,0xe3,0x87,0x7d,0xfb, +0xef,0x70,0xc2,0xdb,0x83,0xe2,0x96,0xaf,0xdf,0x54,0x6c,0xcc, +0x49,0xfd,0x3d,0xdb,0xbf,0x87,0x47,0x77,0x67,0xac,0x38,0x83, +0x17,0x2e,0xa6,0x1a,0xfe,0x77,0xc5,0x06,0x1b,0xcf,0x6d,0x13, +0x97,0xea,0xc3,0x3f,0xec,0xc1,0x03,0x38,0xdb,0x08,0x35,0x74, +0x4b,0x8d,0x78,0x08,0xb8,0x03,0xb3,0x46,0x5a,0x7e,0xa1,0xd1, +0x24,0x67,0x34,0xb7,0xe3,0xec,0xa3,0x78,0xfe,0x78,0xbe,0x2e, +0x3f,0x9e,0x33,0x98,0xdd,0x99,0x33,0xe4,0xda,0xe5,0xd9,0x75, +0xb2,0xbe,0x89,0xb7,0x2e,0xb7,0x29,0xb1,0x2d,0x82,0xe9,0xdd, +0x57,0xfb,0x2b,0x6f,0xd2,0x29,0x5a,0x75,0xf8,0xa6,0x21,0xcc, +0x32,0x75,0xf2,0xb5,0xf3,0x35,0xf7,0xad,0xb3,0xe6,0xfb,0xca, +0x7a,0x2a,0xdb,0xaa,0x7a,0x82,0x87,0x83,0xaf,0x04,0xe7,0x53, +0x49,0xf3,0xf9,0x75,0x54,0xba,0xa1,0xf9,0x84,0xcb,0x40,0xe9, +0xfc,0xad,0x34,0xf0,0x31,0x0d,0xd5,0x4c,0x43,0xd9,0x6f,0x4c, +0x7b,0x76,0x46,0xab,0xca,0x37,0x6c,0x6a,0x5c,0x7c,0xda,0x19, +0xb9,0x30,0x0d,0xe5,0xc5,0x54,0xa0,0xc0,0xc7,0x21,0x09,0xa7, +0x3f,0x3f,0x1d,0xa1,0x84,0x9b,0x2e,0x92,0xa5,0xa6,0x8b,0x1d, +0xf1,0x5d,0xa7,0x7c,0xc9,0xb2,0xa6,0xe9,0xf7,0xa6,0x9f,0x7b, +0xe9,0xf4,0x7f,0x0a,0xcd,0xa4,0xc4,0xa2,0x42,0xa3,0x4c,0xfd, +0x40,0xe8,0xde,0xf0,0x5d,0x91,0x55,0x4f,0x6b,0x41,0x96,0xff, +0x13,0x07,0x31,0x23,0x68,0x06,0x87,0xe0,0xe0,0x28,0x1e,0x84, +0x3d,0x9a,0xb8,0x07,0xf7,0x6b,0xc3,0x7e,0x3c,0x84,0xc6,0x52, +0x59,0xb8,0xdf,0x0a,0x47,0x9c,0xed,0xb4,0x75,0x7f,0x34,0x9f, +0x72,0x02,0xe4,0xb9,0x30,0xbf,0x10,0xde,0x2e,0x55,0x4a,0xf3, +0x4a,0xf1,0x49,0xf6,0x1d,0x28,0xe3,0x1d,0x7f,0xd4,0x86,0x77, +0x2d,0x1e,0x51,0x36,0x2d,0xf2,0xe4,0x8a,0xa2,0x8b,0x8a,0xd1, +0x1b,0xb8,0x94,0xc9,0xd2,0x90,0x5a,0x9f,0x75,0xe5,0x66,0x77, +0xa9,0x28,0x18,0x94,0x1a,0x57,0xfe,0xa3,0xd0,0x21,0x48,0xc6, +0x40,0x5d,0x5c,0xfd,0x50,0x43,0x55,0x5c,0x80,0xea,0x63,0x40, +0x58,0x45,0xbf,0xa8,0x46,0x70,0x7d,0x15,0xce,0xae,0x5f,0xd3, +0xf6,0xa0,0x67,0x72,0xac,0xef,0x0e,0xd7,0x82,0x0a,0x36,0x23, +0x27,0x23,0x37,0x3d,0x57,0xbf,0x90,0xd7,0xd8,0xf8,0xd9,0x06, +0x5c,0x7e,0xac,0xca,0x8c,0xff,0xa2,0x6a,0xb4,0xbe,0xa7,0xb9, +0xc5,0xa2,0xdb,0x6e,0xc8,0x69,0xb1,0x89,0x54,0x56,0xba,0xdd, +0x3d,0x57,0x9f,0x6f,0x4d,0x6a,0x4a,0x6a,0x4c,0xe6,0x70,0x7c, +0xbc,0x5b,0x88,0x30,0x9d,0x80,0xeb,0x6c,0x5d,0x74,0x63,0x74, +0x53,0x34,0x27,0xde,0x81,0xaf,0x48,0x7c,0x5c,0x1c,0xfd,0xe2, +0xe0,0x1e,0x63,0xae,0xaf,0x6f,0x7e,0xd4,0xee,0x78,0xbd,0x61, +0x8b,0x79,0x0f,0x47,0x75,0xe7,0x00,0x81,0xe9,0x65,0x2f,0x6b, +0xbe,0x6c,0xfd,0xd2,0xf6,0x07,0x67,0x98,0xe1,0xc1,0x89,0x0d, +0xe8,0x4c,0x60,0x83,0x10,0x81,0x1b,0x28,0xe6,0xd4,0x41,0x1b, +0xc9,0x31,0xca,0x3d,0x94,0x79,0xd4,0x34,0xdc,0x30,0xd2,0x20, +0xaa,0xe4,0x45,0x19,0xbc,0x9f,0xf5,0x9a,0x83,0x4f,0x07,0xf1, +0x7d,0xd0,0x84,0xb9,0x43,0x38,0x17,0x56,0xe9,0x51,0x25,0xcb, +0xe8,0x51,0x7d,0xa2,0x89,0x73,0xf4,0xff,0x62,0x4e,0x7d,0xea, +0x8e,0xca,0x5e,0xeb,0x6c,0x63,0xf9,0x14,0x9d,0xe7,0x59,0x2f, +0x72,0x1e,0xe5,0x2b,0xc5,0xfb,0xc7,0x05,0x5c,0x0e,0xec,0xcd, +0xe7,0x4f,0xfd,0xe8,0x0e,0xf3,0x3c,0x9e,0x70,0x62,0x12,0xb8, +0x10,0x1c,0x08,0x95,0x3a,0x6d,0xcf,0x90,0xf7,0xdb,0xd6,0x7e, +0x97,0xfd,0x2a,0x09,0x3e,0x53,0xa2,0x09,0x24,0x73,0x85,0xe4, +0xdf,0x7a,0x97,0xe9,0xc8,0xc9,0xef,0x56,0x51,0xd4,0x61,0x04, +0x2b,0xc0,0x7f,0xcd,0x20,0xa3,0x8a,0x49,0x78,0x57,0x7c,0xb5, +0x8e,0xc9,0xd4,0x92,0x3d,0x60,0x9a,0x73,0x32,0x3a,0x55,0x14, +0x9f,0x62,0xac,0xd4,0xcc,0xe5,0x1c,0xc1,0x77,0x81,0x5e,0x00, +0x4a,0x07,0xc5,0x83,0xe4,0xd2,0xe0,0xc5,0x89,0xdb,0xca,0x34, +0xe8,0xb5,0xa9,0x70,0x2d,0x53,0x04,0x11,0xf8,0xb3,0x0f,0xff, +0x1c,0x51,0xc7,0xfd,0xf8,0x0a,0x75,0x19,0xf4,0x0d,0xc2,0x4d, +0x47,0xf1,0x5d,0x79,0xaf,0xb9,0xec,0x01,0x2c,0xce,0x87,0x03, +0x10,0xa1,0x4c,0xc9,0xc1,0xf9,0xad,0x2c,0xda,0x46,0x5d,0x36, +0x02,0xab,0x54,0x99,0x39,0xab,0x59,0x18,0xf4,0x50,0x0e,0x37, +0x99,0x96,0x8c,0xcc,0x06,0x95,0x21,0x56,0x2f,0x53,0x26,0xad, +0x5b,0x77,0x3e,0x9d,0x58,0xa2,0xd2,0xce,0x42,0x53,0xe6,0xb9, +0x5e,0xac,0x0f,0x93,0x3d,0x16,0x78,0x36,0xc4,0xd5,0xdf,0xdf, +0xd7,0xb7,0xc3,0x99,0xaf,0xaa,0xae,0x6e,0xcd,0xed,0xe6,0x5a, +0xc4,0xed,0x2c,0xfc,0x2f,0xf1,0x0a,0xe9,0x13,0xc7,0xbf,0x14, +0x1e,0xf5,0x4d,0xcd,0x17,0xdf,0x19,0xeb,0x17,0x5e,0x0e,0x88, +0x2f,0x9f,0xd1,0x11,0xfd,0x59,0x38,0x4a,0x1c,0xce,0xbb,0x9c, +0x75,0x97,0xe3,0x51,0x30,0xd6,0xc0,0x44,0x08,0x66,0xbc,0xb7, +0xe9,0x9b,0x2c,0xd3,0x6f,0xa3,0xc0,0x35,0xfb,0xe6,0xf8,0xf5, +0x62,0x98,0xce,0x41,0x06,0x24,0x6a,0xa0,0x31,0xd5,0x11,0x97, +0xab,0x2e,0xd5,0x36,0x2a,0x53,0xe0,0xab,0x1f,0x41,0x2d,0xb6, +0xa2,0xb1,0x72,0xa0,0x6c,0x54,0xab,0x80,0xf7,0xd3,0xb1,0x53, +0xb3,0x37,0xe1,0xc4,0xb7,0x75,0xa0,0x91,0x31,0xff,0x81,0xf8, +0x74,0x3a,0xf5,0xbb,0x37,0xe8,0x78,0xf3,0x95,0xf6,0xb5,0x46, +0x45,0xe6,0x1c,0x9a,0x1c,0x23,0xfa,0x8f,0xd4,0xee,0xeb,0x0e, +0x98,0x3b,0xf0,0x23,0x06,0x93,0x7b,0x06,0x55,0x39,0x70,0x10, +0xc7,0x09,0xce,0xdf,0x30,0xfa,0x6f,0x77,0x27,0x3d,0x2d,0xf8, +0x40,0xea,0xee,0xe4,0x6c,0xb0,0x4c,0xea,0xee,0xf4,0x5d,0x73, +0xd7,0xc8,0xe5,0xff,0x74,0x77,0x3a,0x00,0x9b,0x16,0x08,0x51, +0x4c,0xca,0xa4,0x6c,0xae,0xc2,0x40,0x58,0x4f,0xc0,0x75,0x62, +0x6a,0x35,0xf8,0x30,0x60,0x9d,0x08,0x9e,0x29,0x60,0xd7,0xe1, +0x3e,0xca,0xa3,0xa9,0x15,0x7a,0x46,0xe0,0xe5,0x58,0x6e,0xca, +0x0c,0x3f,0xd6,0xf8,0xe7,0xbd,0x09,0x7a,0x31,0x8e,0xd1,0xec, +0x26,0xce,0x10,0xdf,0x17,0x66,0xd0,0x53,0xbd,0x07,0x13,0xe4, +0xfa,0xcb,0xae,0xbf,0x2b,0xe1,0x7d,0xae,0x1f,0x9f,0xb0,0x79, +0xad,0xd9,0xad,0x69,0xad,0x6a,0x69,0xbc,0x19,0xee,0xa2,0xa1, +0xa7,0x4a,0xa3,0x66,0x46,0xbb,0x31,0xff,0xc7,0xa3,0xe7,0x7f, +0x5c,0x81,0x99,0x54,0x55,0x33,0x07,0xb0,0x1a,0xd5,0xd1,0x00, +0x5f,0xe0,0xea,0x5a,0x2d,0x1e,0xf4,0x5f,0xc0,0xb2,0xdf,0x5e, +0xc3,0x07,0x2f,0x50,0x06,0xef,0xe3,0x4c,0x58,0xfb,0x59,0xc3, +0x08,0x8f,0xbb,0x7f,0xc7,0x99,0xbf,0x6e,0xa1,0xff,0x61,0x2e, +0x64,0x2b,0x9e,0x11,0x53,0x34,0x3e,0x88,0x1f,0x23,0x8b,0x5c, +0x83,0x3e,0x5f,0x59,0x5e,0x59,0x5b,0xde,0xcc,0x89,0xd9,0x93, +0x8a,0x19,0x6c,0xcb,0xa3,0xba,0x97,0xc5,0x7f,0x71,0xc2,0xf5, +0xa9,0x71,0xa2,0xc7,0x58,0x47,0x25,0xb6,0xab,0x08,0x8f,0xf0, +0x73,0x30,0x3a,0x8e,0x46,0x78,0x40,0x13,0x0e,0xb0,0x98,0x6b, +0x4e,0x3f,0x6d,0x1f,0x2e,0x96,0x77,0xe8,0x83,0x2e,0x6c,0xe9, +0x04,0xcf,0x8b,0x50,0xa1,0x04,0x6a,0x62,0x15,0xb3,0xaf,0xcc, +0xfb,0x8e,0xfc,0x16,0x25,0x40,0x79,0x9d,0x2a,0xe0,0xca,0x6a, +0xe4,0xca,0xfe,0x1f,0x3e,0xaf,0xa6,0xaa,0xa6,0xb1,0xaa,0x93, +0x13,0x2b,0x26,0x15,0x84,0x6d,0xb8,0x57,0xfd,0x4d,0xe1,0x4f, +0x9c,0xe2,0x6d,0x8c,0x22,0x23,0x38,0x04,0xea,0xea,0xf4,0x64, +0x1a,0x74,0xa0,0x98,0xf5,0xc1,0x25,0x3b,0x50,0x05,0x0d,0x71, +0x47,0x2b,0xcd,0x93,0x9b,0x40,0xe5,0xcb,0xd7,0xc5,0xb0,0x85, +0x66,0xe9,0xeb,0x93,0xc2,0xf5,0x44,0xa6,0x14,0x37,0xbc,0xc0, +0xe9,0xb0,0x1a,0x17,0xb5,0xd2,0x4c,0x7c,0x1c,0x76,0xae,0x01, +0xb9,0x17,0x2c,0xa1,0x8a,0x57,0x3b,0x84,0xe0,0xcc,0xce,0x75, +0x6d,0x7b,0xdb,0x60,0xc6,0x0f,0xf7,0xe1,0x9d,0x76,0x58,0xc3, +0x75,0x62,0x15,0x9b,0x7f,0x3d,0xe7,0x4e,0xea,0x08,0xd7,0x23, +0xfe,0xa9,0x05,0xce,0x9a,0x2c,0xf6,0x5b,0x53,0xc0,0x34,0xc1, +0x70,0x79,0x8f,0x85,0x0c,0x6c,0xe1,0x52,0x0e,0xac,0x80,0x23, +0xca,0x89,0x4c,0x3a,0xae,0x1f,0xa7,0xfc,0x82,0x52,0xab,0x9d, +0x86,0xab,0xac,0x91,0x71,0x29,0xd1,0xa6,0xa9,0xb0,0x11,0xa6, +0xf5,0x3c,0x9f,0x7c,0x6c,0xfa,0xab,0x09,0xbc,0x67,0xc8,0x89, +0xf7,0x14,0x75,0x04,0x72,0x99,0x88,0xfd,0x5e,0x6b,0xbc,0xf6, +0x72,0xd0,0xc9,0x58,0x23,0xbf,0x7f,0xd1,0xa2,0xed,0x1c,0x3a, +0xc1,0x27,0x5a,0xb0,0x18,0x82,0x95,0xe7,0xfe,0x63,0x18,0x44, +0xf6,0x0f,0x69,0xf4,0x18,0x77,0x3f,0xf9,0x79,0x08,0xb8,0x32, +0x58,0xcd,0x75,0xe0,0x61,0x36,0xe7,0x56,0xc6,0x9d,0x84,0xab, +0x5c,0xa7,0xb8,0x56,0xea,0x18,0x3c,0x8d,0xc5,0xee,0x93,0xb8, +0x89,0x32,0x2a,0x47,0x79,0xb3,0x29,0xec,0x07,0xc3,0x26,0xd8, +0x72,0x09,0x8c,0x68,0x50,0xa5,0xe0,0xa2,0x8e,0x15,0x5f,0xaf, +0xd2,0xd7,0x57,0x33,0xde,0x65,0x56,0xa9,0xc3,0x3f,0xe9,0xfd, +0x62,0x60,0x7c,0xbc,0xcf,0xe8,0xaa,0xe1,0x7d,0x4d,0x6e,0xaa, +0x14,0xa2,0x09,0xb8,0x29,0xe6,0x61,0xf9,0x54,0xc8,0x18,0x23, +0xec,0x55,0x1c,0x22,0x70,0x90,0x89,0xda,0x71,0x6a,0x7d,0xc0, +0x4e,0x8a,0xa8,0x8c,0x0f,0xbe,0x63,0xbe,0x7c,0xdf,0x46,0x0e, +0x19,0x78,0xcf,0x14,0x3e,0x04,0x3b,0x65,0x2c,0x14,0x77,0x12, +0xdc,0x20,0x14,0xc0,0x06,0xe6,0x7f,0xdc,0x62,0x94,0x50,0x7b, +0x0c,0x94,0x14,0x01,0xa8,0x34,0x06,0xda,0xe2,0x4a,0x06,0x4a, +0xc5,0x05,0x04,0xce,0x8b,0x2f,0x29,0x4d,0x2b,0x60,0xa3,0x3d, +0x22,0xdc,0x43,0xdd,0xa4,0xd5,0xd3,0x5f,0x8e,0x77,0x28,0xa6, +0x5b,0x8c,0xc3,0x97,0xe2,0xac,0x37,0x5e,0x3a,0x29,0x95,0x1c, +0x58,0x83,0x01,0x15,0xf8,0xa2,0x07,0x65,0xfe,0x07,0xc4,0x44, +0x02,0xfb,0x15,0xd3,0x25,0xf7,0x6c,0x0a,0x08,0xb7,0x49,0xe6, +0x78,0xea,0x64,0xca,0x30,0xa7,0x58,0x08,0x6d,0x53,0xf1,0x9a, +0x0a,0x8a,0x0d,0x53,0x3c,0x13,0xb9,0x36,0x60,0xa9,0xe7,0x42, +0x4e,0x11,0xc2,0x9c,0xd5,0x3a,0x63,0x19,0x69,0xc1,0x69,0x87, +0xf9,0xf8,0x6e,0x58,0x80,0x2e,0x4c,0x96,0xba,0x0c,0x6c,0x18, +0x98,0x31,0xd0,0xf8,0x22,0x4f,0x25,0xb5,0x3b,0xe5,0x66,0xfc, +0x9b,0x60,0xb5,0x17,0x06,0x88,0xf0,0x78,0xf5,0xd4,0x4c,0x03, +0xc5,0xcc,0xe5,0x53,0x8b,0x0d,0x14,0xb6,0xf0,0x0f,0xfa,0x33, +0xcd,0x35,0xf5,0x0d,0x85,0x8d,0x74,0x34,0x5f,0xb1,0x99,0xf9, +0x19,0xf9,0xe9,0xf9,0xba,0x99,0xfc,0x21,0x9c,0xb1,0x66,0x1d, +0x6e,0xda,0x5a,0x67,0xc1,0xb7,0x15,0x35,0x17,0x37,0x50,0xb1, +0xab,0x03,0xef,0x13,0x2f,0x27,0x7b,0x67,0x1b,0x57,0x9a,0xe4, +0x99,0xa6,0xaa,0xba,0xda,0xaa,0x3a,0x0e,0xea,0xc4,0xaf,0xc9, +0xbf,0x3e,0x22,0x8e,0x36,0xfc,0xbf,0xce,0x22,0x1c,0x9e,0xd8, +0xfc,0x7f,0xd0,0x50,0x44,0x91,0x06,0x4e,0xe4,0x21,0xbc,0x5b, +0x07,0x0b,0xd2,0x61,0x05,0x37,0x31,0x86,0x03,0x4c,0x66,0x6f, +0x5a,0x5f,0x52,0xdf,0x1b,0xa3,0x04,0xb9,0x1d,0x2e,0xdc,0x8a, +0x4c,0xbd,0x09,0x5f,0x5a,0x57,0xdc,0x5a,0xd0,0x91,0x85,0xd3, +0x2b,0x17,0xf7,0xaf,0xd0,0xde,0xb1,0x63,0x2f,0xca,0x0e,0x55, +0xd2,0x49,0xfc,0xd6,0x9d,0xa7,0x0f,0x26,0x9e,0xf4,0xee,0xba, +0xb6,0xe7,0xd9,0xbe,0xda,0x51,0x7e,0xf3,0xfd,0x13,0x77,0xcd, +0x1f,0x71,0x22,0xf9,0x9e,0x44,0xa4,0x44,0x5d,0x0e,0x0f,0x0f, +0x09,0xe5,0xcf,0x5c,0x94,0xc1,0x77,0xe0,0x33,0x82,0x3e,0xb0, +0xf2,0x04,0xae,0x44,0x6f,0x1d,0xf0,0x9e,0x92,0xe1,0x46,0x49, +0x82,0xc3,0x62,0xa6,0x3d,0x27,0xb7,0x4d,0x05,0xce,0xb2,0x69, +0x89,0x97,0x13,0x4f,0xcb,0x61,0x1b,0xae,0x6c,0xea,0x93,0xf9, +0x0b,0x77,0xc8,0xc9,0x5a,0xcb,0x26,0x97,0x62,0x5b,0x47,0xbe, +0xda,0xa7,0xd3,0xbe,0xca,0x89,0x83,0xd7,0xbb,0x48,0x24,0xce, +0xf3,0x44,0x56,0x73,0x91,0xd1,0xdf,0xde,0x30,0x33,0x42,0x72, +0x95,0x8c,0xc4,0x24,0x52,0xd3,0xdd,0x70,0xab,0x70,0x58,0xaf, +0x82,0x0f,0x34,0x76,0x3a,0xe4,0x62,0xca,0x61,0x1f,0x7c,0x40, +0xea,0xcd,0x9b,0xb4,0x4a,0x0d,0x7b,0x1b,0x79,0xef,0x5e,0xab, +0x71,0xa7,0x36,0xee,0x35,0x5e,0x22,0xe6,0xa6,0x07,0x74,0x4f, +0xd8,0xd7,0xea,0xf0,0xe3,0x4d,0x0f,0x46,0xbb,0x25,0xbe,0xd0, +0x2d,0xd8,0x93,0xd3,0xf0,0xbe,0x54,0x1c,0xb7,0x0d,0xb4,0x34, +0x29,0xef,0xda,0xa7,0x03,0x5b,0x98,0x10,0x7c,0xd7,0x12,0x17, +0xe0,0x3b,0xb8,0xb0,0xd5,0x94,0xff,0x11,0xb8,0x46,0x98,0x9e, +0xf8,0x87,0xb4,0x4e,0x6c,0x9c,0xf2,0xae,0xff,0xac,0x13,0x93, +0xe3,0xc9,0x8e,0x06,0x94,0x83,0x63,0x64,0xf6,0x1b,0xde,0xa5, +0x50,0xa2,0x19,0x51,0xec,0xd5,0x85,0x4f,0x98,0xc8,0x75,0xde, +0x38,0xdb,0x1d,0xa7,0x71,0x20,0x32,0xe7,0xf0,0xfd,0xd8,0xc5, +0x21,0xeb,0x39,0x8d,0x48,0x9f,0x40,0xb5,0x05,0xf8,0x81,0x64, +0x94,0x06,0x73,0x98,0x6f,0xbb,0x9b,0x9f,0x67,0xaa,0x64,0xff, +0x9c,0x04,0xd3,0x2e,0x81,0x3a,0x87,0xaf,0x98,0x82,0xef,0x72, +0xbe,0x4f,0xa5,0x24,0x43,0x32,0x1c,0x58,0x04,0x65,0xe4,0xab, +0x89,0xaf,0x9f,0x5e,0x7b,0x64,0xda,0xca,0x6b,0xa9,0x6e,0xdf, +0xb5,0x5d,0x4b,0xff,0xa1,0xd7,0xb3,0x73,0x7f,0x73,0xc2,0xa6, +0x71,0x2a,0x32,0x8f,0x9d,0xc0,0x63,0xe2,0x67,0x9a,0xc2,0x67, +0xe2,0x23,0x8a,0x22,0x39,0xf4,0x2f,0x6e,0x64,0xfa,0x8b,0x0a, +0x06,0x54,0x84,0x05,0x09,0x6c,0x11,0xee,0xa6,0x40,0x3b,0x0b, +0x4e,0xe1,0xa7,0x35,0x83,0x3c,0xf2,0x8f,0x57,0x7e,0x71,0xf4, +0x3e,0x07,0x26,0x82,0x36,0x31,0xad,0xdd,0xd5,0xa2,0x59,0xec, +0x66,0xca,0x8f,0x7b,0xde,0xb7,0xeb,0x71,0xe2,0x44,0x1f,0x1c, +0x25,0x56,0x7d,0xfb,0xee,0x6b,0xf5,0x98,0x5b,0xf3,0x57,0xf4, +0xaf,0xab,0x75,0xea,0x70,0xf7,0xfc,0xc8,0x9e,0xed,0x28,0xdb, +0x8d,0xef,0x68,0xd6,0x51,0xd4,0x7a,0x7b,0x1c,0xde,0x7a,0xf2, +0xe5,0x33,0x69,0x3d,0xa0,0x42,0x8f,0xe8,0x77,0x1d,0xe9,0x3c, +0x5a,0x7b,0xd2,0x94,0xbf,0xe9,0x30,0x61,0x3d,0x66,0xc6,0x29, +0x76,0x4c,0x6d,0x22,0x5b,0x07,0x0e,0x75,0x6b,0xf5,0xbc,0xfa, +0xf5,0x8a,0x54,0x41,0xb4,0x8c,0xe6,0x30,0x07,0x36,0xef,0x66, +0xe6,0xdd,0xa4,0x49,0xaa,0x3f,0xed,0x74,0xe0,0xe3,0x65,0x2c, +0x36,0xba,0x53,0x05,0xb5,0x1f,0xdd,0xe5,0xad,0x46,0xb0,0x13, +0xec,0xcb,0x60,0xfd,0x45,0x30,0x7c,0x93,0x3a,0x16,0x0f,0x2e, +0xfd,0x73,0x99,0x86,0xfe,0x7e,0x93,0x8d,0xe6,0xe5,0xda,0xfc, +0x0f,0xbd,0x8f,0x07,0x6f,0x4e,0x8c,0x1b,0xde,0x37,0x78,0xa1, +0xc9,0x89,0x3b,0x15,0x63,0x04,0x2c,0x99,0xc8,0x9d,0x81,0xeb, +0x7c,0x77,0x71,0xe0,0xce,0x78,0xe2,0x2c,0xfd,0x25,0x9b,0xd6, +0x73,0xa8,0x0c,0xf3,0xb4,0xa9,0xcc,0xb3,0x51,0xc6,0x70,0xd4, +0x22,0x06,0x5d,0xfb,0xfb,0x0e,0xd7,0x4b,0x47,0x65,0x7f,0xcd, +0x7c,0xcc,0x84,0xf3,0xc2,0x69,0xc4,0x09,0x67,0x98,0xe0,0xac, +0x83,0x2b,0x7b,0x6c,0xf8,0xbb,0x7f,0x0f,0x83,0x72,0xf5,0x5f, +0xf4,0x14,0xae,0x08,0x7f,0x13,0x85,0x6c,0x02,0x9b,0x60,0xdb, +0x51,0x2a,0xd0,0x0b,0x99,0xc4,0x0e,0xa2,0xdf,0xaa,0xd6,0xac, +0x56,0xe5,0x66,0xcc,0x5f,0x77,0x19,0xb7,0x1f,0xb6,0xe6,0xce, +0xa3,0x25,0xd1,0xee,0xd8,0xdb,0x7d,0xa0,0xd6,0xd5,0x98,0xbf, +0xe3,0x78,0xd3,0xea,0x8a,0x19,0x27,0xb8,0x8b,0x1f,0x90,0x7e, +0xd8,0xd0,0x0c,0xc7,0xcb,0x60,0x8f,0x5a,0x06,0xef,0x85,0x6a, +0xd6,0xa8,0x66,0x88,0x5b,0x38,0xf1,0x9d,0x13,0x8a,0x6d,0x57, +0x18,0xf1,0xb3,0xaf,0x49,0x20,0x6c,0x71,0x85,0xe5,0x76,0x30, +0x57,0xd3,0x8f,0x6f,0x42,0x52,0x8e,0x2a,0x85,0xb8,0x89,0xa3, +0x2c,0xc0,0x9a,0xd8,0xe0,0x5b,0xba,0xc8,0xa9,0xae,0xea,0xb1, +0xe6,0x1f,0xfd,0x71,0x15,0xf8,0xc6,0xd7,0xdc,0xdc,0xfb,0xf0, +0x33,0x01,0xdd,0x76,0x58,0x7f,0x0d,0xd8,0xaf,0x5f,0xef,0x80, +0x8f,0x35,0x60,0x91,0x59,0xe9,0x18,0x8f,0x0b,0xdb,0x50,0x79, +0x72,0xf3,0xb5,0xb6,0xc6,0xba,0xd6,0xb2,0x0e,0xae,0x15,0x3b, +0xd8,0xac,0x9c,0xcc,0x9c,0xf4,0x3c,0xdd,0x72,0x5e,0xed,0x33, +0x9c,0xa1,0x8a,0x2b,0x35,0x4b,0x0d,0xf8,0x5f,0x9a,0xbf,0xe9, +0xbe,0x3d,0xca,0x41,0x36,0xb3,0x01,0x3f,0x40,0x9d,0xc5,0x58, +0x79,0x82,0x13,0x5c,0x4b,0x88,0xda,0x22,0x06,0x37,0xe0,0x7b, +0x5b,0xb0,0x65,0xad,0xbc,0xe4,0x04,0x74,0xff,0xfe,0xf3,0x9d, +0x42,0x58,0xa2,0x94,0xc0,0x14,0xe3,0x12,0x98,0x75,0x00,0x3a, +0x96,0x16,0x5f,0xe1,0xb1,0xf1,0x25,0x2e,0xf9,0x1a,0x36,0x50, +0xf2,0x81,0x9b,0x48,0x67,0x67,0xcf,0xb5,0xaa,0x09,0xfd,0x52, +0xde,0x53,0xd7,0x5c,0xd3,0xc4,0x8c,0x13,0x4d,0x0c,0x48,0x77, +0xd7,0xf0,0x83,0xca,0xeb,0x3a,0x85,0xbc,0x97,0x96,0xf1,0x11, +0x03,0x03,0x9a,0x2c,0xce,0x40,0x2b,0x99,0x1c,0xbf,0xf6,0xa8, +0xfd,0x9e,0x69,0x15,0x6f,0x7f,0x54,0xff,0x90,0xb6,0x8e,0xc3, +0x83,0xc0,0xc7,0xe7,0x5f,0x51,0x74,0x1f,0xc2,0x16,0xd0,0xd0, +0x44,0x0d,0x2c,0xd2,0x83,0x22,0x9a,0x93,0x37,0x32,0xd9,0x3a, +0x32,0x3a,0x15,0xda,0xf3,0xf2,0x28,0x30,0x2f,0x4c,0x64,0x73, +0x70,0xcd,0xf5,0x4d,0xb0,0x0b,0xd7,0xb5,0x74,0xf3,0xeb,0x1e, +0x1f,0xba,0x67,0xf2,0x25,0x07,0x2b,0x85,0x2d,0xc4,0xb9,0x51, +0xbb,0xcb,0xa4,0xd2,0xc1,0x86,0xef,0x75,0x1b,0x36,0xaf,0x75, +0xe0,0xc4,0x14,0x71,0x19,0xb1,0xf5,0xb1,0xf5,0xb5,0xf6,0xe3, +0xe0,0xdc,0x1f,0xc3,0x4b,0x20,0x1a,0xde,0x1d,0xc1,0x2b,0x3a, +0x94,0xcf,0x44,0xe3,0x6c,0x5d,0x98,0x8d,0x65,0xac,0x75,0x80, +0x65,0xa0,0x45,0x50,0x36,0x85,0x3b,0xb6,0xeb,0x8f,0xc1,0x1f, +0xae,0x52,0x18,0xa1,0x12,0xce,0x75,0xc4,0xec,0xaa,0x75,0x97, +0xb9,0x13,0xdf,0x69,0xd2,0xa2,0x59,0xa7,0xcd,0x55,0xda,0x12, +0x9d,0xfd,0xdb,0xb6,0xaf,0xd2,0xa9,0x36,0xe1,0x7f,0x1a,0x7d, +0xf1,0x6c,0xec,0x21,0x8d,0x00,0x51,0xb1,0x83,0xc4,0x2e,0x3a, +0xa2,0x81,0x5a,0x26,0xc5,0x34,0xba,0xb5,0xfb,0x7e,0xbb,0x9d, +0x4c,0xf1,0x0e,0x54,0x70,0x03,0xa3,0x5e,0x1c,0x3c,0x29,0x87, +0xf5,0x4c,0x57,0x4e,0x56,0x83,0xca,0xe4,0x18,0x1c,0x14,0x57, +0xfd,0x71,0x62,0x89,0xa8,0x8c,0xba,0xe3,0xf0,0x31,0xab,0xd8, +0xb1,0x8c,0x6c,0xc1,0xe5,0xac,0xeb,0xe9,0xb8,0x0a,0x15,0xf8, +0x0c,0x3e,0xa7,0xa9,0x36,0x5e,0x9c,0x24,0x38,0x83,0x71,0x0b, +0x4d,0xae,0x56,0x81,0x2e,0x4c,0x86,0xd9,0xea,0x38,0x1b,0xdb, +0x74,0xa0,0x99,0x0d,0xc2,0x25,0x0b,0x77,0xa0,0xc1,0x51,0xc9, +0x52,0xd3,0xfb,0x3e,0xcc,0x84,0xe9,0xb9,0x40,0xf1,0xce,0x08, +0xc3,0x99,0x5d,0x25,0x01,0x5f,0xca,0x5f,0x33,0xbd,0xb9,0xd9, +0xbd,0x2a,0xb0,0x40,0xaa,0xbf,0xa4,0xa2,0x4d,0xf1,0x80,0x68, +0x1c,0xa0,0x9a,0x61,0xf5,0xf8,0xcf,0x70,0x89,0x39,0xa5,0xb1, +0xdb,0x03,0x37,0x07,0x65,0xea,0xf3,0x60,0x5a,0xfc,0xbc,0x3b, +0xe3,0x3b,0x0e,0xa6,0xab,0x33,0x27,0x4a,0x82,0xae,0x52,0xf5, +0xce,0xb4,0xa7,0x65,0xd5,0xaa,0xb4,0xb2,0xba,0x69,0x32,0x1d, +0xfc,0x98,0x75,0x88,0x89,0xab,0x56,0x19,0x87,0xcc,0x2d,0xe3, +0xa0,0x22,0xae,0x66,0x43,0x28,0x4d,0x8e,0x0e,0x8d,0x0a,0x8d, +0x0a,0xe3,0xc0,0x19,0xd7,0xb0,0xff,0x17,0x5d,0xef,0x01,0x5d, +0xb5,0xb1,0x85,0x8d,0x12,0xc0,0x92,0x08,0x09,0x84,0x32,0x20, +0x9b,0x5c,0x9b,0x6e,0x20,0x40,0x68,0xa1,0x77,0x30,0xc5,0xbd, +0xf7,0xde,0x7b,0x07,0x1b,0x5c,0x31,0xc6,0x80,0x03,0xd8,0xb8, +0xf7,0x6e,0xdc,0x3b,0xc6,0xbd,0x77,0xd3,0x7b,0x87,0x00,0x21, +0x40,0x08,0x04,0xd2,0xb6,0x4e,0xb6,0x7c,0xef,0x1b,0x99,0xdc, +0x77,0xff,0xb7,0xd6,0xfb,0x17,0x6b,0xe9,0x08,0x9f,0x23,0x69, +0x34,0x33,0x7b,0xef,0xef,0x9b,0xd9,0x25,0x29,0x33,0x29,0x2b, +0x31,0x9b,0x1a,0x9e,0x08,0xdf,0x50,0xff,0x10,0x3f,0x0e,0xe7, +0xe0,0x0b,0xc6,0xe7,0xa4,0xf7,0x09,0x9f,0x93,0x09,0x14,0xb0, +0x8c,0x49,0xfe,0x35,0xe5,0x79,0xc6,0x66,0xd5,0x25,0xfa,0xf8, +0xa5,0x59,0x89,0x09,0x0f,0x0b,0x86,0x61,0xcc,0x8d,0x1f,0x9e, +0x70,0x94,0x24,0xfd,0x8b,0x4d,0x31,0x95,0x1c,0x62,0x9a,0xb3, +0xd2,0x5b,0xa4,0xe4,0x70,0x05,0x25,0x79,0xa5,0x39,0x65,0x1c, +0xc8,0x92,0xa8,0x58,0xa2,0x60,0x0c,0xad,0xca,0x98,0xc3,0x86, +0xef,0x0d,0xd9,0xeb,0xbf,0x95,0x83,0x1f,0x98,0x93,0xb6,0x51, +0x26,0x47,0x5c,0x38,0xe7,0x23,0x87,0x23,0xac,0x67,0xe1,0x72, +0x26,0xcd,0x48,0x0e,0x66,0x33,0x77,0x6a,0x72,0xfa,0x53,0x95, +0xd2,0xfa,0x62,0x2e,0x9d,0xb9,0xce,0xe1,0x6d,0x26,0xb9,0x2e, +0xb6,0x22,0xbe,0x8a,0x43,0xbb,0x67,0x04,0x23,0xfa,0x20,0x82, +0xa1,0x03,0xbb,0x96,0x0c,0x41,0x84,0x06,0x6b,0x33,0xde,0x89, +0x0d,0x0b,0xdd,0x15,0xb6,0x2d,0x7c,0x4b,0x84,0xfc,0x23,0x6a, +0xa1,0x0b,0x64,0x3b,0x49,0x81,0x6d,0x81,0x75,0xae,0x45,0x7b, +0x11,0x7f,0xa8,0x2a,0xa0,0x3c,0xa0,0x9c,0x83,0xf5,0x5d,0x58, +0xcb,0xa4,0x15,0xa5,0x14,0x25,0x14,0xe9,0xa6,0xf2,0x6e,0xdf, +0x19,0x6c,0xde,0xb9,0xbf,0xd1,0x8e,0xaf,0xa9,0xac,0x3c,0x5f, +0x7c,0x81,0x83,0xdf,0x50,0x8e,0x94,0x54,0x14,0xd6,0xe6,0xd6, +0x71,0x3f,0x31,0x85,0xb6,0x79,0xd6,0xf9,0x16,0x6d,0xe7,0xf8, +0xc0,0xea,0xc0,0xf2,0x83,0xf4,0x62,0xad,0x2e,0xbc,0xca,0x24, +0x17,0x25,0x15,0xc7,0x4b,0x11,0xb9,0xbe,0xeb,0xad,0x37,0x69, +0xef,0xa7,0xf2,0x3d,0x32,0x96,0xcc,0x2e,0x5d,0x51,0xba,0xad, +0xf4,0xdd,0xd5,0x4b,0x8f,0x6a,0xdf,0x52,0x93,0x1d,0xc4,0xa6, +0xd5,0x26,0x9d,0x4f,0xac,0xe7,0x9a,0x59,0xf1,0x55,0xb4,0x9c, +0x3e,0x68,0x1b,0xb1,0xb8,0x47,0x93,0x5a,0x05,0x75,0x5c,0xa9, +0xd8,0x64,0x0a,0xea,0xb0,0xfa,0x02,0xc8,0x9d,0x85,0x79,0xf2, +0x12,0x16,0xfb,0xec,0xf6,0x5a,0x98,0xbd,0x6d,0x87,0xd3,0x6a, +0xcf,0x79,0x7e,0xf9,0x74,0xcc,0x27,0x17,0x7f,0xac,0x79,0xda, +0xf4,0xcc,0xfe,0x0f,0x47,0x98,0x42,0x35,0xed,0x13,0xa1,0x93, +0x40,0x29,0x13,0xaa,0x1f,0xa8,0xed,0x6f,0xc8,0xc1,0x71,0xc6, +0x61,0xa3,0xda,0x9e,0x65,0xba,0x1c,0x1a,0xbd,0xde,0xfe,0x11, +0xe6,0x2a,0x48,0xd5,0xe1,0x80,0x64,0xea,0xb6,0x67,0x1f,0xb8, +0xe9,0x79,0xdb,0x63,0x40,0xde,0xf4,0x60,0x9a,0x67,0xaa,0x6b, +0x8a,0x8b,0xbc,0x4e,0xa4,0x56,0x94,0xc6,0xf1,0xab,0x4f,0x6e, +0x02,0x33,0x08,0xac,0x51,0x31,0xef,0xa6,0xe6,0xb0,0xcf,0x56, +0xfd,0x40,0xa1,0x6f,0xa1,0x6f,0x41,0xfd,0x50,0xcd,0x8d,0xe2, +0x2b,0x06,0x05,0xbc,0xef,0x3f,0x1e,0xff,0x87,0xff,0xeb,0xf1, +0xdf,0xa7,0xd7,0xa1,0xe5,0xeb,0x20,0x79,0xfc,0xdb,0x9f,0xb4, +0x8f,0xb6,0x97,0x3c,0xfe,0x87,0xcf,0x5c,0x3a,0x33,0x1c,0xcb, +0x89,0xcb,0x07,0x84,0xd5,0x6c,0x43,0xcc,0x85,0xd8,0xfa,0x58, +0x4e,0x18,0x8f,0x07,0xc9,0x83,0x3f,0xba,0xe0,0xcb,0x3c,0xaa, +0xba,0x9b,0x70,0x03,0x9b,0x7e,0x3d,0xf9,0x56,0x9c,0x04,0xfb, +0xe4,0x75,0x7f,0xc7,0xb1,0x2c,0x96,0x1c,0xa4,0x33,0x61,0xb2, +0xa4,0xba,0xe9,0x5c,0xf8,0x02,0x6c,0xd2,0xe0,0x3b,0x50,0x55, +0x90,0x2a,0xd7,0x28,0x36,0x2c,0x7c,0xb6,0xc0,0xc2,0xd0,0xc0, +0x54,0xcd,0x82,0xce,0xf2,0x2b,0x2d,0xfd,0x1d,0x6d,0x7d,0x2d, +0x26,0xfd,0xc6,0xd7,0x74,0x2a,0x7b,0xf8,0xbd,0x9d,0xba,0xad, +0xe6,0x2d,0x1c,0x9a,0x0a,0x22,0x81,0x0d,0x4c,0xc4,0x86,0xa0, +0x15,0x01,0x74,0xfe,0x6f,0x63,0x02,0x90,0xb5,0x9c,0xbb,0xfb, +0x1b,0x0e,0xc7,0xc2,0x34,0x4b,0x98,0x29,0xe1,0xbd,0xa5,0xe2, +0x05,0x12,0xd6,0x7f,0xe8,0xca,0xe1,0x76,0xd3,0xc3,0x7c,0xa6, +0x7e,0x9a,0x7a,0xa2,0x06,0x87,0x4d,0xca,0xa4,0xf1,0x59,0xc1, +0xbb,0xf4,0x77,0x86,0x49,0x7c,0xf0,0x4a,0xbf,0x35,0x96,0xeb, +0xb8,0x49,0xc2,0x6e,0xa9,0x93,0x74,0x3a,0xb2,0xfd,0x6f,0x7a, +0xdc,0xa5,0x9d,0x64,0x72,0x30,0x9d,0x76,0x52,0xaa,0xb3,0xbc, +0x56,0xa4,0x46,0x94,0xfa,0xf1,0xab,0x4f,0x6f,0x81,0xdc,0x10, +0x70,0x86,0xb4,0x93,0x54,0xed,0xf6,0xda,0xaa,0xf9,0x15,0xfa, +0x9e,0x1b,0x0d,0x8b,0xb8,0x5e,0x72,0xd5,0x20,0x9f,0xf7,0x51, +0x73,0xfe,0x27,0x2c,0xe2,0x50,0x9a,0xa3,0x25,0x3f,0x68,0xdc, +0xaf,0xd7,0xa5,0xe1,0xe3,0xe4,0xe3,0xe2,0xeb,0x61,0x7b,0xd2, +0x36,0xda,0x36,0x3a,0x4e,0x87,0xbf,0x74,0xfa,0x72,0xcc,0xe5, +0x18,0x4e,0x5c,0x36,0x28,0xac,0x62,0x9b,0x62,0x1a,0x63,0x1b, +0xce,0x72,0x82,0x54,0xf6,0x62,0x6b,0x90,0x9c,0xf0,0x41,0x43, +0x1c,0x61,0x51,0xd7,0x5e,0x4e,0xf8,0x4d,0x43,0xfc,0x37,0xbb, +0x2d,0x28,0x59,0x03,0xae,0x5d,0x95,0xc3,0x80,0x21,0x38,0xc6, +0x3e,0xcd,0x94,0x13,0x7f,0xbf,0x48,0x8a,0x54,0xf2,0x37,0x65, +0x6c,0xee,0xce,0xe5,0x0f,0xdd,0xf5,0x7e,0xe4,0x79,0x95,0x22, +0x3a,0xec,0x20,0x2d,0x2f,0x0a,0x7f,0xc9,0x78,0xa7,0x9f,0xcc, +0x07,0xad,0xf2,0x5d,0x3d,0x1a,0xfe,0x70,0x5b,0x38,0x49,0x52, +0xbd,0x52,0x5c,0x93,0x5d,0x8c,0x8e,0xe9,0x45,0xe9,0x1d,0xbf, +0xf4,0xe4,0x1a,0x30,0x03,0xc0,0x1a,0x17,0xf1,0x1e,0x1a,0x4e, +0xaa,0x0e,0x1a,0x07,0x0b,0xfc,0x0b,0xfc,0xf2,0xcf,0x0f,0x55, +0xd1,0x01,0x36,0xcc,0xe7,0x7d,0xd5,0xdc,0x54,0x9d,0xf5,0x82, +0xd2,0x83,0x52,0x83,0x52,0x9d,0xad,0xf8,0x6e,0xb3,0x2e,0xfd, +0x36,0x1d,0x1f,0x3b,0x29,0xa2,0xd4,0x25,0xda,0xe5,0xa4,0x4b, +0xf4,0x59,0x3d,0xbe,0xff,0x74,0x7f,0x4c,0xbf,0x14,0xd2,0xd1, +0x27,0xac,0x61,0x6b,0x62,0xaa,0x63,0xaa,0x62,0xcf,0x1e,0x3a, +0x1b,0x18,0x1b,0xd8,0x9a,0xc5,0x07,0xdc,0xf4,0xbe,0xe9,0x4d, +0xcd,0x45,0x19,0x5c,0x26,0xae,0xca,0x3b,0x95,0x71,0xea,0xd2, +0x4a,0xaa,0x5d,0xa6,0x7e,0xbc,0xf7,0xb2,0x00,0x26,0x48,0xa9, +0xe2,0x71,0xfc,0xeb,0x95,0x30,0x65,0xb6,0x04,0x1a,0xbe,0xf8, +0xb0,0xe6,0x95,0xd3,0x47,0x8a,0x36,0x45,0x8e,0x40,0x0f,0xe5, +0x3b,0x4c,0x8c,0xf8,0x8a,0x0c,0x42,0xbb,0x26,0x9d,0x3a,0xe2, +0x5a,0x71,0x35,0x0b,0x7f,0xc3,0xdf,0x04,0x23,0xb1,0x1d,0x22, +0x59,0x3c,0xe8,0x49,0x8a,0xb6,0xe6,0xae,0x4a,0xfb,0xae,0x3b, +0x87,0x0f,0x7a,0xec,0xf3,0xc2,0xf3,0x1e,0x87,0xa5,0xd8,0x42, +0xea,0x7e,0xc8,0x7d,0x97,0xf2,0xce,0x28,0x91,0x0f,0x5b,0x75, +0x60,0x8d,0xdd,0x7a,0xfa,0xd6,0x6b,0x55,0xc8,0xdf,0xe3,0xf7, +0xff,0x7b,0x3c,0x0b,0xd1,0x67,0xc9,0xe5,0xfb,0xc2,0xce,0x2d, +0x57,0x64,0xcf,0x45,0x4a,0x0b,0x8e,0xe1,0x47,0x22,0xee,0x82, +0x7a,0x61,0x17,0x43,0x49,0xff,0x07,0x22,0xec,0xc2,0x0e,0x71, +0x17,0x85,0xff,0xa5,0x70,0x89,0x40,0x82,0x30,0x79,0x58,0x9c, +0x0c,0x56,0xfb,0xd0,0x0a,0x9d,0xd9,0xc2,0xde,0xec,0xfe,0x94, +0x6e,0x8d,0x0c,0xde,0x15,0xe5,0x77,0xe3,0x82,0x25,0x8b,0x5b, +0x2c,0xf9,0x96,0x96,0xfa,0xfe,0x8a,0x61,0x6a,0x32,0x30,0x41, +0x5c,0xa7,0x2e,0xac,0xc3,0xbb,0x57,0xe0,0xae,0xb0,0x7a,0x98, +0x99,0xf4,0xf7,0x2e,0x61,0x0c,0x19,0x10,0xbf,0x03,0x7d,0xf8, +0xa5,0x1f,0x7f,0x81,0x35,0x7b,0x71,0x0d,0xde,0xd5,0x86,0xbb, +0xa8,0x2f,0x2e,0xd0,0x82,0x77,0xac,0xfe,0x7c,0x15,0x64,0xd7, +0xe1,0x58,0xc7,0x93,0x0e,0xd1,0xf6,0x27,0x13,0xf6,0xf3,0x90, +0x98,0x0a,0x87,0xd3,0xc0,0xab,0x3a,0xd7,0x39,0xc7,0x39,0xcb, +0x65,0xb0,0x82,0x57,0xff,0x63,0x13,0x4c,0x5c,0x03,0x9f,0xe9, +0xbb,0xf2,0x17,0x0c,0x2f,0x68,0xd7,0x6a,0xe2,0x9c,0x03,0xb8, +0x3a,0x04,0x77,0x86,0x5f,0x7d,0x7b,0x09,0xc6,0xd1,0x29,0x47, +0xf9,0xdc,0x7e,0x41,0x8d,0xe0,0xaf,0x30,0x01,0xba,0x21,0x7a, +0xe4,0x14,0x06,0x33,0x78,0xdf,0x03,0x17,0xec,0x9c,0xa3,0xd8, +0xad,0x79,0x0d,0x3e,0x2b,0x85,0x19,0x89,0xe0,0x20,0x0f,0x3f, +0x50,0x63,0x9d,0x8d,0x4f,0x87,0x3b,0x85,0x43,0xc6,0xc3,0xf0, +0x18,0xcb,0x61,0x1a,0xfc,0xca,0x50,0x61,0xf8,0x0f,0xa5,0xef, +0x23,0x9f,0xc3,0x0c,0x36,0x1a,0xfb,0xc8,0xa9,0xea,0xef,0x6b, +0xcf,0x2b,0xd0,0xaf,0x27,0x30,0x68,0x2d,0x7e,0x43,0x60,0xa3, +0x70,0x88,0xe2,0xfd,0x49,0xa0,0xd1,0x4c,0x40,0x4b,0xb6,0x1b, +0xae,0x8d,0xec,0x86,0x7d,0xb2,0xa0,0xa1,0x91,0x8e,0x91,0xbf, +0xae,0xf6,0xcb,0x4e,0x0c,0xb1,0xf8,0x35,0x9c,0x26,0x23,0x63, +0x40,0x5f,0x36,0x86,0x76,0x1b,0x11,0x56,0x12,0x9b,0xc3,0x56, +0x87,0x2d,0x83,0x39,0x08,0x06,0xa5,0x3e,0x54,0x02,0x0d,0x0d, +0x6a,0x9f,0x17,0xe9,0xc0,0x22,0x8c,0x61,0x0d,0x0e,0x1b,0x84, +0x18,0x87,0x27,0x6a,0xf3,0x2d,0x49,0x6d,0x29,0xed,0xe9,0x1c, +0x56,0xa2,0x02,0x9b,0xa1,0x21,0x07,0x63,0x99,0xf6,0x4c,0x29, +0x6b,0x48,0x2b,0xdb,0x92,0xde,0x92,0xd9,0x94,0xcd,0x7d,0xc4, +0x5e,0x02,0x2a,0xc2,0x6a,0xf8,0x99,0x02,0xcf,0x4d,0x82,0xee, +0x80,0x78,0x76,0xe4,0xef,0xe1,0x8b,0x82,0xf9,0x00,0x3b,0x1f, +0xc2,0x09,0xfe,0x09,0xfe,0xf0,0x27,0x7d,0x60,0x28,0x58,0x92, +0x1e,0xf8,0xaa,0x14,0x16,0xc7,0xc3,0x6e,0xae,0x1d,0x57,0xb3, +0x67,0xa9,0x82,0x39,0x5d,0x67,0x10,0xcb,0x47,0xe0,0x2a,0x47, +0xdc,0xab,0xb1,0x20,0xb2,0x92,0x3f,0x10,0xe2,0x4f,0xff,0x71, +0x60,0xf7,0xa1,0x67,0x21,0x68,0xe8,0xa0,0xc6,0x1c,0xbd,0x3f, +0x31,0x82,0xb5,0x0b,0xb0,0x3b,0xe4,0x10,0x92,0xa4,0xcb,0x57, +0xa5,0x54,0xa5,0x57,0x66,0x71,0xd8,0xb0,0x44,0xca,0x26,0xf1, +0x90,0x69,0x48,0xcb,0xae,0x53,0x82,0xfb,0x6c,0x61,0x5a,0x61, +0x7a,0x61,0xc6,0xc9,0x14,0xbe,0xca,0x2e,0xb3,0x28,0xa3,0x3c, +0xb5,0x4a,0x3e,0x69,0x75,0xee,0xc6,0x72,0x15,0xf3,0x25,0xea, +0x5b,0xb7,0xea,0x54,0x9b,0xf3,0x77,0x06,0x06,0x6f,0x36,0x3f, +0xe3,0x70,0xf2,0x5d,0xf8,0x7c,0x1b,0xac,0x9b,0x05,0x0a,0x4c, +0x52,0x9f,0x1c,0x2a,0x33,0xb8,0x74,0xf6,0x6d,0x98,0xb2,0x57, +0x49,0xd8,0x66,0x48,0x0e,0x30,0x1e,0x47,0xe2,0xca,0x95,0x84, +0x97,0xe8,0x80,0x2c,0x8b,0x4e,0x27,0x50,0x75,0x23,0xce,0x56, +0x6c,0xb4,0x96,0x7b,0x09,0x2b,0x62,0xc0,0x11,0x1c,0x15,0x86, +0xdf,0x89,0x35,0xac,0x4a,0xde,0x81,0x01,0xc5,0x0a,0xa6,0x3a, +0x35,0x85,0xf6,0xc4,0xd7,0xac,0x49,0x8e,0x9c,0x98,0x02,0x71, +0x24,0xae,0x30,0xb6,0x28,0xf6,0x1c,0x07,0xe3,0x99,0x63,0xb8, +0xc0,0x17,0xa7,0xda,0xce,0x76,0x7b,0x7a,0xe8,0x43,0xa4,0x44, +0x00,0x85,0x16,0x99,0x25,0xf1,0x6b,0xf1,0x6c,0xf6,0xa8,0x33, +0xf0,0xe3,0x4b,0xad,0x8a,0x2c,0x72,0x2c,0x38,0x61,0x9a,0xb8, +0x8c,0x48,0x89,0x48,0x3f,0x63,0xaf,0xc5,0x5d,0x4a,0x6c,0x4d, +0xe9,0xd7,0xb9,0x65,0xf2,0xd8,0xb6,0xb4,0x95,0xc7,0x59,0x17, +0x97,0xbd,0x34,0x7e,0xc6,0x41,0x7c,0x0f,0x1a,0x30,0xe5,0xf5, +0xa5,0x1d,0x79,0x8d,0xba,0xb9,0xbc,0x9f,0xa9,0xed,0x7e,0x47, +0x0b,0x4e,0x04,0x3d,0x48,0x60,0x8c,0x57,0x2f,0x5d,0x89,0xb3, +0xd4,0xcb,0x4c,0xf8,0xc7,0x75,0x37,0xda,0x7b,0x7a,0xe2,0x6d, +0xf9,0xee,0x53,0x97,0xcf,0x5c,0x8e,0xe5,0xe6,0xe3,0x07,0x7d, +0xf8,0x80,0x9f,0x89,0xcb,0xf5,0x84,0xe5,0x38,0x05,0x0d,0x46, +0x73,0x13,0xed,0x65,0xea,0x47,0x97,0xf7,0xa7,0x09,0xca,0x3d, +0xa2,0x32,0x7d,0x26,0x1e,0x14,0xb6,0x12,0x8f,0x26,0x8f,0x6a, +0xa7,0x5a,0x43,0x6f,0xbe,0xca,0xb6,0x82,0xda,0x51,0x0e,0xfe, +0xa3,0x41,0xd2,0x5c,0xb3,0xdd,0xf3,0xbc,0xe6,0xf8,0xe2,0x8a, +0x23,0x38,0xe9,0x44,0xcd,0xf9,0x92,0x86,0xdc,0x46,0x2a,0x9b, +0xf7,0x65,0x01,0x44,0xbf,0x72,0x5f,0x85,0x5a,0x9e,0x9b,0x19, +0x7f,0xd5,0xfb,0xb2,0x7b,0x87,0x33,0x07,0xf3,0xb1,0x88,0xdc, +0x11,0xa8,0xf1,0x13,0xf5,0x6f,0x09,0x81,0x1d,0x62,0xbd,0xa8, +0x2e,0xb4,0x75,0xb0,0x23,0x0a,0xa0,0x42,0x8c,0xcb,0xb7,0x57, +0xee,0x3e,0xe7,0x6e,0xc2,0xdf,0xf0,0xb9,0xe2,0x36,0xe8,0xc0, +0x09,0xd7,0xa2,0x89,0x28,0xff,0x42,0x90,0x67,0x46,0xfc,0xf1, +0x1a,0x79,0x72,0xe1,0xfd,0xc5,0xc1,0x56,0xcf,0x16,0x7e,0xbb, +0xee,0x1a,0xc3,0xb5,0x36,0x9c,0x0c,0x71,0x07,0xe9,0x16,0x17, +0x3f,0xd2,0xd8,0x28,0xf2,0x92,0xbb,0x8f,0xfe,0x6e,0x1c,0x6b, +0x84,0xce,0xba,0xf9,0x54,0x0f,0x1d,0xbd,0xfe,0xb1,0xb5,0xf6, +0x57,0x2e,0x0e,0x63,0x87,0x20,0xf6,0x2c,0x53,0xa7,0x0c,0x9c, +0x29,0x44,0xed,0xce,0xeb,0xe1,0xd1,0xa3,0x17,0x27,0x74,0xe8, +0xdc,0xa0,0x9d,0x9c,0x2b,0xf3,0x23,0xf0,0xbe,0x03,0xdf,0x0f, +0xab,0xa2,0x1a,0xbe,0xc4,0x7d,0x0c,0x1e,0xa4,0x62,0xb1,0x1f, +0x27,0x28,0xb6,0x98,0xc9,0xdd,0x05,0xc5,0x3c,0xda,0x73,0x81, +0x94,0x1b,0x40,0xcc,0x52,0x16,0x9d,0xc3,0xce,0x18,0x82,0x43, +0x8a,0x9c,0x06,0xab,0x97,0x1b,0x78,0x57,0x11,0x06,0x99,0xc6, +0xf4,0xb4,0x0a,0xa5,0x3e,0x69,0xc1,0x4f,0x05,0xfb,0x59,0xe7, +0xa3,0x09,0x85,0x4a,0x9d,0x2c,0x14,0x65,0x1c,0xef,0xc0,0xfc, +0x20,0xb9,0x9f,0x84,0xa9,0xec,0x21,0x27,0x1f,0x6f,0x2f,0xaf, +0x56,0x27,0xbe,0xaa,0xa6,0xaa,0x35,0xa7,0x93,0x3b,0x2f,0x6e, +0x65,0x7f,0x11,0xe5,0x09,0x16,0xe3,0xe7,0x50,0xac,0x49,0x3f, +0xf2,0x0c,0x64,0xe9,0x5d,0x98,0x09,0xc5,0xac,0x68,0xe2,0x4a, +0x6a,0xb5,0x2b,0xf6,0x16,0xec,0xeb,0xa4,0xa6,0xe5,0xaa,0xf3, +0x75,0x87,0x5e,0x4e,0xb8,0x78,0x82,0xf8,0xa9,0x3a,0xed,0xb3, +0xd6,0xed,0x70,0xe7,0x1b,0x86,0x2a,0xaf,0x16,0x5e,0xa6,0xc8, +0x39,0x58,0x18,0x4f,0x20,0x1d,0xf4,0x07,0xf0,0x03,0x9b,0xdc, +0x90,0xd4,0x94,0xd0,0xac,0x95,0xc8,0xfb,0xa1,0xbc,0x2d,0x7e, +0xb9,0x7f,0x5e,0xab,0x15,0x5f,0xdd,0x5f,0x72,0x39,0xff,0x3a, +0x07,0xe3,0x30,0x1d,0xbd,0x35,0xc0,0x5b,0x9c,0x72,0x51,0x98, +0x02,0x2e,0x43,0xcc,0xc8,0x7f,0x84,0xbd,0x44,0x0f,0x2e,0xf6, +0xb0,0x15,0xa3,0x7b,0x22,0xd3,0x74,0xd9,0x46,0x69,0x4f,0xa4, +0x63,0x74,0x4f,0xa4,0x07,0x3b,0xf4,0xd8,0x1e,0x71,0x09,0xe9, +0x82,0x93,0x90,0x8f,0xdd,0x92,0x5b,0xc3,0x49,0xc8,0x23,0xb8, +0x1a,0xb5,0x41,0xf2,0x66,0xef,0x01,0xaa,0x2d,0x66,0xf5,0xe0, +0x2c,0x58,0x03,0x63,0xa0,0x09,0x6f,0x62,0x13,0x2c,0x15,0x75, +0x19,0xcf,0x63,0x9e,0x51,0x1e,0x51,0x9c,0xf0,0xa5,0x8e,0x38, +0x93,0xd5,0x88,0x48,0xd0,0x84,0x65,0x79,0x30,0xb7,0x18,0xbe, +0xac,0x91,0x8f,0xea,0x31,0x09,0x31,0x0e,0x33,0x0a,0x93,0x87, +0x84,0x03,0x54,0xee,0x61,0x04,0x7e,0xc6,0x11,0xd8,0x2c,0xf0, +0xfd,0xa2,0xe1,0x88,0x6c,0x68,0x58,0x98,0x33,0xc0,0x8a,0xef, +0x65,0xfb,0x09,0xaa,0xa2,0x25,0xa8,0xb2,0x32,0x23,0xd1,0x92, +0x60,0x27,0x1c,0x84,0x4e,0x66,0x12,0x44,0xc9,0xaa,0x48,0xf2, +0x9a,0x8e,0x3d,0x3f,0x6d,0x2e,0xed,0xe4,0x37,0xdc,0x30,0xb9, +0x79,0xe0,0xd6,0x68,0xba,0x77,0xab,0xcd,0xdf,0x48,0xe9,0xde, +0x7f,0xbe,0xd9,0xf5,0x2c,0xed,0x25,0x27,0xb3,0xc3,0x11,0x29, +0x49,0xc6,0x54,0xd8,0x02,0xdf,0x8b,0x8e,0x14,0x11,0x63,0xf5, +0x61,0xd4,0xdc,0x8e,0xf3,0x15,0x5b,0x6c,0xa9,0x09,0x2c,0x86, +0x05,0x89,0x60,0x25,0x0f,0x1a,0x28,0x8f,0x6b,0xf1,0x61,0x5f, +0x1b,0x94,0x98,0xf4,0xc1,0x43,0xdc,0x09,0xf2,0x60,0xc5,0x2c, +0x13,0x26,0x48,0xde,0x1a,0xbf,0xc2,0x1c,0x16,0xa7,0x8c,0x7c, +0x4b,0xec,0xc2,0x6d,0xc2,0x2d,0x23,0x38,0xe8,0x00,0xbe,0x1b, +0x29,0x5f,0x7d,0xd5,0x85,0xa1,0x06,0xcf,0xf0,0x73,0x54,0xd6, +0x07,0x65,0xbc,0xc8,0x1a,0x1d,0x31,0x88,0x30,0x1a,0x4d,0x17, +0x3f,0x21,0x13,0xa6,0x15,0xbd,0x28,0xe2,0xe0,0x4b,0x61,0x21, +0x39,0x55,0x77,0xaa,0xbe,0x41,0x01,0xf6,0xe3,0x54,0x06,0x05, +0x1c,0x18,0x4d,0x11,0x9f,0xd0,0x33,0x9a,0x22,0x3e,0x5c,0x4f, +0x4a,0x11,0x1f,0x00,0x8b,0xa4,0x14,0xf1,0x1b,0x93,0xb5,0xda, +0xd2,0xf9,0xb0,0x01,0xdf,0x1f,0xfc,0xba,0x39,0xc1,0x0b,0xab, +0x09,0x6c,0x87,0x52,0xdc,0x4e,0xbb,0xb7,0x43,0x48,0x26,0xe9, +0xc9,0xe9,0x49,0x69,0x29,0x1c,0xfe,0x5b,0xe8,0x16,0x96,0xa2, +0x16,0x5b,0x5b,0x55,0xd5,0x98,0x77,0x9e,0x92,0xb6,0xf3,0x6c, +0x52,0x76,0x62,0x56,0x7c,0xb6,0x41,0x06,0x6f,0xbd,0x70,0xe3, +0x62,0x64,0xb6,0x72,0x0d,0x30,0x8b,0x18,0xb5,0xaa,0xb6,0xa9, +0x57,0x3b,0x5b,0xf0,0x97,0x6c,0x7b,0x2d,0x7b,0x8c,0x39,0xc1, +0xb5,0x9f,0xf8,0x3b,0x3b,0x58,0x5b,0xb8,0x70,0x18,0xce,0xd4, +0x54,0x95,0xd6,0x9c,0xab,0xe1,0x30,0x08,0x93,0x88,0x49,0xab, +0x4a,0x8f,0x6a,0x9d,0x93,0x05,0x7f,0xd1,0x66,0xc8,0xb8,0xc7, +0x88,0x83,0x7d,0x19,0x04,0x26,0x83,0x36,0x4e,0x66,0x7b,0x67, +0xd0,0x13,0x63,0x7a,0x22,0x6a,0xe0,0x3e,0xc9,0xe9,0x45,0x1b, +0x67,0xb0,0x7d,0x33,0xe8,0x89,0x11,0x3d,0x19,0x59,0x38,0x40, +0x3c,0x70,0x9c,0x2d,0x7e,0xae,0xaa,0xdc,0x61,0xcf,0x5f,0x81, +0xcf,0x5a,0xe0,0xeb,0x82,0xdf,0x39,0xa1,0x0f,0xd7,0x90,0x1a, +0xbd,0x9a,0x9d,0xe7,0x76,0x0f,0xe4,0xf1,0x5e,0x37,0x6d,0xef, +0x38,0x76,0x73,0xe2,0x65,0x0c,0x20,0xed,0x83,0x35,0xf7,0xb2, +0xaf,0xe8,0x65,0xf3,0x81,0x6a,0x0e,0x2a,0x66,0x86,0x9c,0xb0, +0x00,0xd6,0x91,0x3c,0xdd,0xdc,0x1d,0x89,0xaa,0x43,0xe9,0x7c, +0xe8,0x65,0xff,0x3b,0xfe,0x5d,0x1c,0x7a,0x84,0x90,0x24,0xed, +0xb3,0xbb,0x4f,0xed,0x1f,0x8a,0xe7,0x4f,0x5e,0x8e,0xb8,0x15, +0xde,0x4b,0x45,0xd2,0x8a,0x2a,0x8d,0x1d,0xb8,0xd5,0x02,0xb6, +0xa2,0x25,0xbb,0xe3,0x98,0x1c,0x2c,0x35,0xc0,0x6f,0xd9,0x03, +0xd1,0x07,0x4e,0x1e,0x18,0x8d,0xf7,0x26,0x09,0x30,0x3f,0x9e, +0xf6,0xfc,0x89,0x66,0xde,0x3c,0xd2,0x2c,0xca,0x38,0x8a,0x7b, +0x06,0x13,0x1b,0x70,0xe2,0x55,0x98,0xdb,0x84,0x73,0x6f,0x03, +0xdf,0x88,0x49,0x6c,0x7c,0x7a,0x5c,0xfa,0xd9,0x74,0xb3,0x64, +0x3e,0xc0,0xd0,0xc3,0xdc,0xd6,0xae,0xd6,0x8d,0xcf,0xce,0xc9, +0xcc,0x4b,0xcb,0xe3,0x70,0xe9,0x07,0x62,0xa7,0xae,0xaf,0xb7, +0xdd,0xa4,0xcc,0x8a,0x7f,0xde,0xd7,0x3d,0x74,0xe1,0x22,0x27, +0x80,0x36,0xc1,0xea,0x35,0x6c,0x86,0xb1,0xdc,0x4d,0xa6,0x26, +0x55,0x4a,0x32,0xfb,0x0c,0x83,0x44,0xab,0x1e,0x61,0xa9,0x54, +0xf2,0x6c,0x29,0xb5,0x42,0xc7,0x98,0x9c,0xbc,0x9c,0x82,0xec, +0x52,0x9b,0x62,0xde,0xc1,0x40,0x4b,0x65,0x99,0x76,0x99,0x25, +0x5f,0x96,0x5d,0x5c,0x98,0x97,0xcb,0xc9,0x76,0x63,0x3e,0xe9, +0x18,0xd1,0x34,0x62,0x57,0xe1,0x44,0x22,0x7c,0x87,0x2b,0x70, +0x1b,0x93,0x62,0x20,0xb9,0x96,0x35,0xe5,0xe7,0x36,0x2b,0xc1, +0x1c,0x61,0x76,0xd7,0xbf,0xc7,0xb0,0x10,0xb0,0x96,0xe8,0x59, +0xab,0xd9,0xe3,0x38,0xe7,0x62,0x53,0x1e,0xc6,0x55,0xdd,0xb8, +0xd0,0xd7,0x42,0x39,0x4e,0x14,0x79,0xee,0xfc,0xd0,0xf6,0x9e, +0x55,0x59,0x33,0xbf,0xb5,0x61,0x5b,0xdd,0xea,0x72,0xaa,0x38, +0xb7,0x82,0x0e,0x91,0xed,0x12,0xe6,0x60,0x0c,0xd3,0x5c,0x7b, +0xa1,0xb9,0xb0,0x91,0x6b,0xc6,0x3b,0x6c,0x6a,0x4e,0x4a,0x6e, +0x72,0xae,0x46,0x3a,0xbf,0x07,0xbf,0x58,0xb2,0x00,0x57,0x2e, +0xaf,0x31,0xe2,0xcf,0x51,0x23,0x56,0x90,0x29,0xd5,0xa7,0xdb, +0x4b,0x3c,0xac,0xad,0x6c,0xcd,0x1d,0x38,0x2c,0x61,0x1a,0x6a, +0x6a,0xcf,0x57,0x50,0xe2,0xc2,0xe1,0x6e,0x82,0x1c,0x46,0x49, +0x4e,0xb1,0xbd,0x48,0x91,0x17,0x07,0x89,0xc8,0xb1,0x78,0xd3, +0x90,0x50,0xd6,0x11,0x05,0x5f,0xd0,0x3f,0xcf,0xa0,0x7f,0xfa, +0x02,0x13,0x19,0x08,0xc4,0x69,0xa4,0x5e,0xaf,0x5e,0xbb,0x7c, +0x6f,0x7f,0x11,0xef,0x7c,0xdd,0x72,0xd0,0xa6,0x85,0x1b,0xd1, +0x47,0x17,0x32,0x3c,0xd4,0x70,0xb1,0x68,0x48,0x2f,0x97,0xf7, +0xd4,0xb5,0xd2,0xd2,0xd4,0xe3,0x84,0xd3,0xa0,0x4c,0x0a,0x74, +0x72,0xb4,0xd2,0x54,0x2f,0xa5,0xf2,0x87,0xaf,0xfa,0x0f,0xf8, +0xd0,0xc1,0xcc,0x0d,0x21,0xa9,0x9a,0xf1,0x7a,0xb1,0x7b,0x2e, +0xc6,0xf1,0x51,0x37,0x8e,0xf4,0x05,0x4b,0x83,0x99,0x23,0xbb, +0x4f,0xd4,0xd6,0x88,0xdf,0xea,0xfd,0xad,0xd0,0x23,0x6e,0x63, +0xf0,0x2f,0xbc,0x49,0x64,0x8b,0xc0,0x64,0x64,0x11,0x33,0x84, +0xf3,0xc9,0x4f,0x42,0xf9,0x0a,0x36,0x0c,0xb5,0xc9,0x6e,0x87, +0x35,0x1e,0x38,0xd5,0x8b,0xa3,0x68,0xcc,0x93,0xcd,0xa4,0xb6, +0x47,0x97,0x69,0xcb,0xcf,0x1d,0x4d,0xc2,0x03,0x7c,0x39,0x7c, +0xde,0xf2,0xf4,0x22,0xd7,0x3a,0x52,0xa8,0xc7,0x4a,0xbc,0x36, +0x82,0x3c,0xd7,0x58,0x23,0x2e,0xd4,0xff,0x9b,0xe9,0x66,0x71, +0x1c,0x7d,0xad,0x91,0x45,0xa8,0x23,0x5b,0xc4,0x68,0xc2,0xbf, +0xc8,0x5a,0xb1,0x52,0xaa,0xe4,0x2e,0x2e,0x20,0xa5,0xec,0x5f, +0x45,0xef,0x6a,0xee,0xb4,0xd0,0xeb,0x36,0x19,0x09,0xc3,0xac, +0x96,0xd7,0x2e,0xbf,0xc5,0x7e,0xdc,0x7e,0x71,0xb3,0x81,0xb0, +0x19,0x15,0x24,0x1b,0x47,0x07,0x69,0x33,0xd3,0x96,0x2b,0x3d, +0x87,0x13,0x56,0x77,0xb1,0x52,0x7b,0x6f,0x11,0x35,0x6a,0x07, +0xbf,0xd5,0xfa,0x5b,0x61,0x80,0x36,0x18,0x7a,0x70,0x2e,0x19, +0x99,0x8b,0xe7,0xa0,0x0b,0x87,0x70,0x05,0x93,0xaa,0x25,0x07, +0xf2,0xff,0x34,0xad,0x8d,0x72,0x72,0x75,0x70,0x27,0xb8,0x4a, +0x2c,0x80,0x55,0x6c,0x1d,0x96,0x10,0xa3,0xa5,0x3b,0xb6,0x2f, +0xdc,0x5b,0x67,0xca,0xbf,0xbf,0xfa,0xc3,0xcb,0xee,0xf7,0x1c, +0x7c,0x0c,0x20,0x0f,0x77,0x5f,0xd9,0x73,0x77,0x69,0x73,0x3d, +0xbf,0xf5,0xcd,0xb6,0x7b,0x3b,0x2e,0xd1,0xd1,0x4d,0x92,0x3d, +0x23,0x66,0x68,0xbc,0x1b,0x15,0xa5,0xd6,0xd7,0x18,0xf0,0xe5, +0x65,0xe5,0xb5,0xa5,0xd2,0xbe,0xc0,0x90,0x6c,0x06,0x5b,0x7d, +0xa7,0xf4,0x79,0xee,0x5b,0x2e,0x08,0xe3,0x09,0x2c,0xc0,0x24, +0x5c,0xa7,0x25,0x5b,0x35,0x80,0x5b,0x21,0x09,0x96,0xf4,0xe3, +0x12,0xb0,0xd1,0x40,0x1b,0x74,0xf9,0xf4,0xb1,0x80,0x11,0xd6, +0xe3,0x75,0x42,0xff,0x9b,0x04,0x2e,0x8c,0xb8,0x65,0x84,0x90, +0x0f,0x97,0x9f,0x3e,0xef,0x7d,0x62,0x52,0xc3,0xeb,0x6e,0xdc, +0xbe,0x6d,0x91,0x2a,0x27,0xec,0x81,0xdd,0xe4,0x9e,0xc6,0xcb, +0xd5,0x83,0x3b,0x9b,0x1b,0x78,0xcd,0xdb,0x6b,0x9e,0x6e,0x90, +0x9a,0x70,0x8c,0x36,0xc1,0x1a,0x0d,0x55,0x71,0xee,0xfc,0xd1, +0xa8,0xa4,0xa2,0xe2,0xe2,0xea,0x73,0x0d,0x9c,0x98,0x3b,0x20, +0x9b,0xc2,0x56,0xde,0x2b,0xf9,0x31,0x87,0x36,0xfe,0x8d,0x68, +0x40,0xa2,0xb3,0xa2,0xb3,0x73,0x14,0xc0,0x08,0x5a,0xfb,0xb0, +0x15,0xe6,0x69,0xe0,0x3c,0x3c,0xa7,0x03,0xe7,0xd0,0x88,0x3d, +0x18,0x1d,0x10,0x1d,0xa8,0x88,0xad,0xda,0x50,0xc7,0x78,0xa3, +0xc2,0xba,0xe5,0xb8,0x17,0x27,0x54,0x1b,0xf2,0x14,0x15,0x4f, +0x7d,0x0f,0xd3,0x4f,0xc1,0xbf,0xb8,0x38,0x26,0x06,0x95,0xde, +0xe0,0x17,0x60,0x8f,0x7c,0x95,0x14,0xe7,0x0f,0x5f,0xae,0x7b, +0xe1,0x05,0x0a,0x1c,0x0c,0xf7,0x33,0xb8,0xa9,0x84,0x14,0x54, +0x37,0x3e,0xcd,0x6c,0xd1,0xcc,0xe7,0x83,0x2c,0x1d,0x77,0x7a, +0x58,0x71,0xe2,0x4c,0xf8,0x9a,0x14,0x59,0x54,0x6f,0xcb,0xb0, +0xec,0x2b,0xe4,0x83,0x1a,0xed,0xef,0x7b,0x5e,0xa0,0xad,0x0d, +0x91,0xfd,0x44,0x6c,0xa4,0xd6,0xce,0x57,0x46,0x8e,0x3e,0xa2, +0xa0,0xb0,0xa0,0x5c,0xca,0xfc,0x9b,0x3a,0x20,0x63,0xd9,0x9a, +0x47,0xe5,0x6f,0x73,0xfe,0xe2,0x64,0xab,0xd1,0x96,0xb4,0x8b, +0x13,0xd9,0x8c,0xc2,0xd4,0x73,0x49,0x45,0xbf,0xc7,0xbd,0x4f, +0xfc,0x31,0xcd,0xb7,0x99,0xc7,0x75,0x3e,0x68,0x75,0x04,0x9d, +0x4f,0x26,0x1a,0xf3,0x0f,0x4e,0x3d,0x3c,0xfd,0x20,0x26,0xd4, +0x3b,0xd8,0xe7,0x90,0x2f,0x55,0x8e,0xc6,0x60,0xc8,0xe8,0x6a, +0xee,0x30,0x5a,0x6d,0x5b,0x62,0xcc,0x37,0xe6,0xd6,0x17,0xd6, +0x15,0x73,0x38,0x49,0x50,0x84,0x99,0x6c,0xbd,0x7b,0xb3,0x77, +0xe3,0x81,0x82,0x76,0x7e,0x43,0xcd,0xfa,0x6e,0xa3,0x6e,0x0e, +0xf3,0x77,0x90,0x82,0xbc,0xfc,0x82,0x9c,0x42,0x8e,0x8e,0x7f, +0x96,0x6f,0xbe,0xef,0x39,0x3f,0x89,0x91,0x10,0xf2,0x18,0xce, +0x6d,0x60,0x45,0x22,0x9e,0x22,0xf0,0xab,0xf0,0x3d,0x45,0xbd, +0xdf,0xb0,0xe9,0x46,0x72,0x30,0x8b,0x69,0xc8,0xcc,0xa9,0x57, +0x82,0x3b,0x23,0x8c,0x38,0x97,0x85,0xd5,0xd0,0x42,0x30,0xb8, +0xb7,0x0d,0xa2,0xa9,0x85,0xc3,0x68,0x54,0x20,0xcf,0x40,0xfb, +0x3b,0xaa,0xf1,0x8b,0x84,0xed,0xe4,0x75,0xcd,0xf3,0xae,0x3b, +0x83,0x57,0x2d,0x2f,0x99,0xf6,0x98,0xd4,0xb5,0xf0,0x86,0x8d, +0x6a,0xcd,0xfb,0x1b,0x86,0x7a,0x3b,0x86,0x6a,0x24,0xa7,0x75, +0x47,0x4d,0x23,0x4d,0x35,0xbd,0xdd,0x0d,0xbb,0xce,0xab,0x96, +0x3a,0x5a,0xf0,0xc3,0xee,0x57,0x1d,0x2e,0xdb,0xee,0x31,0xdc, +0x6c,0xf1,0x9d,0x2b,0x27,0x9b,0x26,0xfa,0x12,0xdc,0xc2,0x98, +0x85,0x27,0x37,0x28,0x41,0x32,0xf8,0x0b,0x61,0xaa,0xa2,0xca, +0xc8,0x38,0x41,0x45,0x55,0x0c,0x03,0x47,0x36,0x04,0xd7,0xaa, +0xcc,0x45,0x9b,0x5d,0x65,0x7a,0x3c,0xb8,0xdd,0x7a,0x0d,0x33, +0x53,0x41,0x8f,0xa3,0xba,0x3d,0x9b,0xd9,0x7e,0xce,0xed,0xa9, +0x22,0xa8,0x33,0x0d,0x59,0x59,0xb4,0x95,0xcb,0x59,0xb5,0x74, +0xb9,0x49,0x50,0x2d,0x8b,0x26,0xf7,0xb4,0xb7,0xe2,0x0e,0x63, +0x61,0x75,0x3b,0x0b,0xd5,0x33,0xa4,0xff,0x68,0x18,0x0b,0x1a, +0xed,0x2c,0x56,0x53,0x55,0x7f,0xa4,0x22,0xb8,0xe2,0x50,0x91, +0x89,0x54,0xa6,0x2c,0xd5,0x25,0xd1,0x95,0xf2,0xfe,0xac,0x7f, +0xfe,0x66,0x1a,0xc0,0xa7,0x79,0xa5,0x49,0x7f,0x03,0xab,0x08, +0x92,0x59,0x95,0x56,0x9e,0x5c,0x65,0x94,0xc6,0x87,0x3b,0x1c, +0xb6,0x3b,0x60,0xc3,0xe1,0x59,0x23,0x61,0x67,0x07,0x03,0x7f, +0xcd,0xf8,0xf4,0x8d,0xe1,0xff,0xbe,0xc9,0x34,0x12,0x0c,0x3b, +0x18,0xd1,0x55,0xdc,0x4e,0x1c,0x7d,0xac,0x7c,0x2c,0xfc,0x38, +0x58,0xf3,0x02,0x02,0x44,0x06,0x03,0x7e,0x60,0xa3,0x70,0xac, +0xed,0x8e,0x75,0xea,0x55,0xe6,0xfc,0x2f,0xb7,0x5b,0x7e,0x39, +0x0b,0x93,0xb9,0xa7,0xa8,0xc5,0x48,0xc1,0xb4,0xfe,0x47,0xf3, +0x0c,0xf8,0xc7,0xe5,0xbf,0xf7,0x5c,0x6b,0xe3,0x84,0xf9,0xf3, +0x89,0x3a,0xe3,0x7d,0x24,0xbe,0x48,0x09,0x4c,0x28,0x2a,0x09, +0x10,0xe5,0x31,0xe0,0x29,0x7b,0x0c,0x3f,0xa7,0x22,0x36,0x41, +0x95,0x8e,0x2d,0x28,0xdd,0xe9,0x7e,0x1b,0x47,0xe7,0xdd,0x13, +0xb4,0x65,0xf4,0x0a,0xfc,0xba,0x15,0x6f,0x33,0x75,0x29,0xc9, +0x35,0x4a,0x30,0x59,0x4a,0x90,0x23,0x66,0x48,0x9e,0x9b,0x53, +0x31,0x19,0xa6,0xb2,0x32,0xaf,0x19,0xf4,0xac,0x94,0x9e,0x4d, +0x92,0x19,0xc2,0x20,0x81,0x14,0xb0,0xee,0x43,0xeb,0x4f,0xbb, +0x80,0x1d,0x60,0xa4,0x46,0x3f,0xb4,0x74,0x40,0x0b,0x53,0xd0, +0x5f,0xeb,0xef,0x29,0x03,0x2c,0xf6,0x43,0x0a,0xa1,0xff,0xeb, +0x80,0x14,0x16,0xcf,0x52,0x09,0x04,0xfe,0xd2,0x6f,0xcf,0xee, +0xbc,0x30,0xaa,0xe4,0x77,0xac,0x5b,0xb2,0x15,0xa7,0x6a,0x70, +0x42,0x0d,0xec,0x21,0xef,0xb5,0xe1,0xf3,0x35,0x3f,0xaf,0x6f, +0x69,0xe6,0x97,0xdf,0xc3,0x49,0x3f,0x2d,0xec,0xa3,0xf3,0xfa, +0x34,0xd0,0x9f,0xb3,0xf7,0x7f,0x7e,0x79,0xef,0x97,0xfb,0xbb, +0x6f,0x6f,0x1f,0xda,0xd9,0xd0,0xc5,0x6b,0x5e,0xdf,0x7a,0x77, +0xd3,0xad,0x3b,0x7f,0x76,0x83,0x5c,0x15,0xc8,0xa9,0xe5,0xf2, +0xae,0xf3,0x4c,0xe6,0xa8,0x2c,0x5a,0x7d,0x6f,0xf5,0xf5,0x5d, +0x6d,0x36,0xfa,0xfc,0x7d,0x83,0xe7,0x7b,0x9f,0xed,0xd8,0xbe, +0xec,0xdb,0x35,0xc8,0xec,0xe2,0x64,0x0a,0x38,0x93,0x8c,0xe8, +0xca,0x7c,0xf6,0x8e,0x7c,0xbc,0x7a,0x59,0xa6,0xbb,0xff,0xaa, +0xec,0xe3,0x5e,0xca,0x9d,0x5e,0x08,0xd5,0x24,0xd5,0x40,0x2a, +0xe2,0xf2,0xa4,0x3e,0xff,0x6a,0xaa,0x52,0x42,0xf3,0xe9,0xe6, +0x67,0x0a,0x58,0x2f,0x39,0x0c,0x06,0xeb,0x43,0x00,0x73,0x60, +0xcd,0x5a,0x53,0x9c,0xee,0x9c,0xa7,0xc3,0xc3,0xec,0x1a,0x18, +0x7f,0x33,0x0f,0x26,0x72,0x70,0x88,0xb1,0x3f,0x61,0x1f,0xe9, +0xa2,0xe8,0x1e,0x79,0x28,0x40,0x6f,0x96,0xa8,0x5f,0x4f,0xbe, +0x85,0x44,0x4d,0x4c,0x9c,0xaf,0xfd,0x9b,0xf8,0x7e,0x50,0x78, +0xff,0x8a,0x81,0xe9,0xdf,0x11,0x9d,0x35,0xcb,0x0c,0x5e,0x33, +0xc7,0x71,0xa5,0xcb,0xb7,0x7b,0x36,0xd5,0x9b,0xf3,0x0f,0xdf, +0xd6,0x00,0x13,0x0b,0x1b,0xb9,0x5f,0x99,0x53,0xdf,0x46,0x2d, +0x3f,0xa2,0xc3,0xd9,0x45,0x4a,0x19,0xe5,0x0c,0x98,0x14,0x1d, +0xb9,0x76,0x66,0xa8,0xa2,0x6c,0x30,0x49,0x29,0xf1,0x52,0xec, +0x87,0x68,0x58,0xca,0x51,0x1d,0x0a,0xbf,0xcc,0x78,0x3e,0x7a, +0x0f,0xf6,0x38,0xae,0x70,0x5e,0xb9,0x65,0x3d,0xbd,0xc7,0xcb, +0x5f,0x6a,0x41,0x2e,0x46,0x5a,0xce,0xfc,0x8c,0x39,0xb5,0xfc, +0xc4,0x8a,0x23,0xda,0x9c,0xdd,0xd1,0xb0,0x20,0xdb,0x59,0xbb, +0x98,0x54,0x1d,0xb9,0xcb,0xcc,0xd5,0xd2,0xd2,0xa1,0x44,0xa5, +0xc4,0x2b,0x31,0xef,0xa2,0x61,0x99,0x64,0x20,0x37,0x91,0x61, +0x59,0xfc,0xc0,0x48,0xbc,0x4c,0x5b,0x76,0x6a,0x60,0xe4,0xca, +0xbf,0x59,0x56,0x96,0x09,0x11,0xa4,0x07,0x6b,0x60,0x15,0x9c, +0xec,0xc6,0x93,0xb0,0x00,0xb2,0x7a,0xc4,0x67,0x7a,0x90,0x8c, +0x0b,0xf0,0xa8,0x3e,0x1c,0xc5,0x55,0x58,0x46,0xed,0x07,0x7c, +0x2f,0x53,0x26,0xd8,0xc5,0x7a,0x47,0xfb,0x9e,0xf4,0x57,0x74, +0x09,0x72,0x0c,0xb6,0x09,0xe6,0x04,0x7b,0xb6,0x3f,0xf3,0x7e, +0x71,0x5f,0xad,0x5b,0x1b,0xaf,0x66,0xb3,0xc1,0x75,0xd7,0x61, +0x4e,0xcc,0x67,0x1d,0xc2,0xd2,0x74,0xef,0xe6,0x77,0xe7,0xb6, +0xe7,0xcb,0x1f,0xc0,0xcf,0xf5,0xf6,0xaf,0xd3,0x29,0xa3,0x73, +0xe9,0xcb,0x17,0x77,0x60,0x3c,0x04,0x2b,0x40,0x17,0x0b,0xa6, +0xe2,0x42,0x92,0x6d,0x9a,0xab,0x9d,0xa9,0x65,0x15,0x64,0x16, +0x6c,0x4a,0x69,0x68,0x2d,0x38,0x0b,0x76,0x98,0x33,0x12,0xc3, +0x7a,0x47,0x7a,0x1f,0xf3,0x89,0xca,0xd4,0xe1,0x7f,0xce,0x79, +0x5f,0xf4,0xb0,0x3c,0xc1,0x3d,0xce,0xf3,0xac,0x57,0x77,0x16, +0xef,0xff,0xc1,0x0e,0xbe,0x70,0x7c,0xc9,0x81,0x22,0xfe,0x41, +0xfa,0x64,0xad,0x30,0x51,0x7c,0xb6,0x52,0x72,0x53,0xb8,0xcd, +0xd4,0x67,0x48,0x6e,0x0a,0xf2,0x18,0xc6,0xa2,0x9c,0x31,0xc1, +0x45,0xb8,0x0a,0x16,0xb1,0xb0,0x0a,0xcd,0x24,0xc7,0xa3,0x55, +0xa3,0x8e,0x47,0x7b,0xe1,0x7b,0xb2,0x21,0x48,0x4e,0xf8,0x55, +0x4d,0x44,0x16,0x1d,0xec,0xe4,0x84,0xdf,0xd4,0xc5,0x7f,0xb3, +0xca,0x81,0xc9,0x9a,0x20,0xde,0x94,0xc3,0x43,0x17,0xe1,0x18, +0xfb,0x63,0xa6,0xdc,0x48,0x07,0x6e,0x27,0x7f,0x40,0xac,0xec, +0x6b,0xbc,0x22,0xf9,0xf6,0xc5,0x52,0xfc,0x85,0xba,0x42,0x31, +0x35,0xac,0x93,0xfe,0xde,0x2c,0x20,0xe9,0x10,0x23,0xd8,0xd4, +0x73,0xc9,0xe7,0x12,0x8b,0x41,0x31,0x0e,0xa6,0xa7,0xfc,0x99, +0xe1,0x47,0x59,0xa4,0x81,0x07,0x9e,0x0e,0xc5,0xac,0x53,0xc9, +0x46,0xfc,0xdb,0xe8,0x5f,0x4e,0xbf,0x89,0x09,0xf7,0x0a,0xf5, +0x0e,0xa2,0xca,0xf2,0xb2,0x11,0x14,0x32,0xda,0xfb,0xd6,0xe8, +0xa1,0x82,0x6e,0xb1,0x09,0x7f,0xa7,0x6c,0xb8,0xa2,0x93,0xc2, +0xca,0xf1,0x82,0x0e,0x4c,0x60,0x87,0xac,0xaf,0x39,0x5e,0xf7, +0x2e,0x6a,0xe1,0xf1,0x5f,0x3d,0xcb,0x06,0x34,0x2e,0x72,0x38, +0xb4,0x8f,0xe4,0xe6,0x64,0xe7,0x65,0xe4,0x71,0x94,0x45,0x66, +0xf9,0xe7,0xfa,0x17,0x1c,0xe4,0xf0,0x3a,0x4e,0x26,0x77,0xe0, +0xe1,0x76,0x56,0x0c,0x16,0xa3,0x08,0xbc,0x91,0x2d,0xc2,0x22, +0x5c,0x31,0x1a,0x22,0xc9,0xff,0x93,0x28,0x79,0x68,0x24,0x4f, +0xfc,0x97,0x54,0x6a,0xae,0x82,0xa0,0x6f,0x5f,0x0b,0xfc,0x2d, +0x6d,0xbb,0xff,0x8d,0x5f,0xd1,0xeb,0x3a,0x29,0x40,0x96,0x6d, +0x90,0x9d,0x22,0x0f,0x34,0x36,0xe3,0x49,0x23,0xe1,0x62,0x07, +0x2b,0xbe,0x10,0xeb,0x88,0x4d,0xa0,0x75,0xa0,0xd5,0x61,0x0e, +0x5e,0x4b,0xa5,0x68,0x3f,0x83,0x22,0x2d,0x7a,0xd3,0x31,0xba, +0x30,0x06,0xff,0xc3,0xda,0x85,0xd8,0x86,0xd8,0x84,0xd1,0x21, +0x00,0xae,0xe6,0x4d,0xd5,0x9b,0x06,0x4e,0xd8,0x22,0xac,0x24, +0x59,0x95,0xe9,0x35,0xc9,0xd5,0x7a,0x59,0x7c,0xb8,0xfd,0x61, +0xf3,0x03,0xd6,0x9c,0x28,0x67,0x20,0xbc,0xeb,0x62,0xc4,0x99, +0x79,0x54,0x99,0x1d,0xae,0x0b,0x2a,0x36,0x3a,0xc4,0x67,0x78, +0xa6,0xd9,0x25,0xb9,0x70,0x02,0x11,0x9f,0x13,0xfc,0x8c,0xd2, +0x9b,0x84,0x7c,0x25,0x60,0x60,0x21,0xdc,0x12,0x4f,0xe0,0x2d, +0x98,0xc1,0x1e,0x52,0xd9,0xa3,0x8b,0xf3,0x5d,0xf2,0xa8,0x62, +0xdd,0x56,0xff,0xf0,0x49,0xe6,0x2b,0xee,0x77,0xfc,0x92,0xd1, +0xcd,0xf7,0xed,0x57,0x04,0x8e,0xf2,0xe6,0xcc,0x7a,0xa5,0x0f, +0xac,0x5e,0xa6,0x9c,0x36,0x34,0x91,0x8d,0xe2,0x94,0x47,0x52, +0xc5,0xcd,0x99,0xe4,0x3b,0x71,0xca,0x33,0xfa,0x16,0x66,0xc2, +0x64,0xc9,0xb0,0x66,0x51,0xc3,0x6a,0x0a,0x61,0x3d,0x18,0x06, +0xf3,0x34,0xa9,0x61,0x75,0xd3,0x03,0x37,0x34,0x65,0x03,0x3e, +0x19,0xd6,0xc3,0x3a,0xe0,0xcb,0x78,0xe1,0xac,0xb5,0x0b,0xd1, +0x6a,0x6e,0x31,0x7d,0x8e,0x03,0x6d,0x00,0x03,0x33,0x4e,0x81, +0x12,0x27,0x15,0xa5,0xfe,0xd7,0x0d,0x1c,0x0f,0x6b,0x50,0xa1, +0xb2,0x9b,0x47,0x65,0x98,0xb0,0xef,0xf5,0x01,0xe0,0x39,0x38, +0xde,0xc7,0x8c,0x7c,0x0e,0x4f,0x89,0xf8,0xc7,0x6e,0x99,0xb7, +0xee,0x88,0xb7,0x8a,0xf0,0x87,0xfe,0x48,0x60,0xdf,0x6d,0x38, +0x23,0x5b,0xce,0x0a,0x5a,0xd8,0x46,0x0a,0x6b,0x6b,0x9e,0xa6, +0xb5,0xe8,0xe7,0xf0,0xa1,0x16,0x2e,0xdb,0xbc,0xac,0x38,0xbc, +0x0a,0x8a,0x24,0xd7,0xa2,0x78,0x5f,0xaa,0x49,0x4f,0x2e,0x1f, +0xdc,0xea,0x79,0xc7,0xaf,0x9e,0x9b,0xf4,0xb7,0xa5,0x16,0x71, +0xbd,0x6b,0xf9,0xc0,0xfc,0xa2,0x89,0x27,0x9f,0xe1,0x97,0xe1, +0x9d,0xe1,0x65,0x14,0x69,0x70,0x4c,0xff,0x18,0x07,0xeb,0x21, +0x1c,0x72,0x69,0x9b,0x39,0x76,0x28,0x66,0x20,0xb6,0xfd,0x6c, +0xda,0x41,0x29,0xbe,0xbf,0xa5,0x9a,0x37,0xbd,0xbb,0xff,0xb1, +0xf6,0x25,0x73,0x27,0xbe,0xc4,0xad,0xcc,0xa1,0xd4,0x76,0x75, +0x04,0x8e,0x3d,0x36,0xff,0xf8,0xf9,0xc1,0x9a,0xeb,0xc5,0x43, +0x9a,0xb9,0xbc,0xd7,0x7e,0x9b,0x0d,0xa6,0x7b,0x38,0x6f,0x9f, +0x68,0xdf,0x59,0xf1,0x9a,0x57,0x4f,0xbf,0x8c,0x7d,0x79,0x56, +0x1e,0xc7,0xe3,0x21,0xcc,0xa5,0xd8,0x73,0x0b,0xbb,0xfa,0xe8, +0x8a,0xa8,0xe5,0xc7,0xe3,0x28,0xad,0xd2,0x4a,0x82,0x6d,0x69, +0xb0,0x32,0x2f,0xdd,0x33,0xd5,0x33,0xc9,0x9b,0x13,0x7f,0x10, +0x5e,0x49,0x35,0xe4,0xb3,0x75,0xc0,0x01,0xb7,0xa0,0x06,0x1b, +0xb5,0x3c,0x6c,0x49,0xe0,0x72,0x8e,0xaa,0xb1,0xe8,0x8d,0x51, +0xeb,0xa8,0xc2,0x31,0x3f,0x1a,0x12,0x6a,0x33,0x0b,0xc7,0x31, +0x69,0xa3,0x0b,0x4e,0x97,0x8a,0x0b,0xef,0x24,0x2b,0x25,0xdf, +0x3e,0xfb,0xfe,0x94,0xb4,0xa5,0xeb,0xc9,0x24,0xb6,0x27,0x5c, +0x3a,0xd3,0xc1,0xc1,0xb5,0x6f,0x28,0xd7,0xc2,0x0d,0xb8,0x9d, +0x11,0xbe,0x99,0x81,0x7b,0x60,0x03,0xec,0xa1,0x1c,0xf3,0xa1, +0xac,0x99,0x98,0xca,0xe4,0x5a,0xd9,0x91,0x6f,0xb1,0x85,0x40, +0x1d,0x06,0xe9,0xc2,0x2e,0xdc,0x49,0x59,0xc7,0xf1,0x6f,0xc2, +0xbf,0x09,0xa2,0x0f,0xd2,0x67,0xd6,0x45,0x7d,0x17,0xa1,0xa5, +0x68,0x79,0x34,0x34,0xd4,0x7e,0xd6,0x32,0x26,0x4d,0x53,0xee, +0x27,0x66,0xf8,0x5c,0xc1,0x9d,0x24,0xa5,0xe4,0x3b,0xb1,0x1f, +0x4f,0xc1,0x0c,0x0e,0xd5,0x99,0xf8,0xf6,0xf8,0x2b,0x67,0x3a, +0x39,0x38,0xa3,0x45,0x84,0x2c,0x48,0x17,0xb3,0x18,0x08,0x98, +0x4d,0x70,0xdb,0x20,0x6c,0x63,0x7a,0x34,0xc9,0x20,0xa8,0x6a, +0xb2,0x18,0x61,0x49,0x54,0x71,0xdb,0x25,0x4a,0x07,0x66,0x80, +0xaa,0x2a,0xaa,0x32,0xf8,0x64,0x05,0x31,0x93,0x8d,0x6d,0x61, +0xad,0x97,0x12,0xb1,0x0a,0xd3,0x84,0x2a,0x06,0x7b,0x61,0x05, +0xc1,0x7d,0x03,0xb0,0x8f,0xe9,0xd6,0x22,0x03,0x60,0xa0,0xc5, +0xe2,0x29,0xe9,0xba,0x7d,0xf4,0xba,0xb0,0x19,0x60,0xa0,0x8a, +0x06,0x0c,0xbe,0xc3,0x79,0x44,0x36,0xad,0x6d,0x64,0x1a,0x7d, +0x85,0x98,0x1d,0xe4,0xef,0xd9,0x1a,0xff,0x9e,0xcd,0xca,0xe2, +0x8b,0x88,0x21,0x8c,0xdd,0x0b,0x5f,0x6a,0x3f,0x37,0x76,0xe1, +0x2b,0x8c,0xab,0xd5,0xab,0xd4,0x56,0x06,0xe3,0x67,0x21,0xc8, +0x86,0xd7,0xff,0x78,0x01,0xa6,0x95,0x82,0x1c,0x07,0x37,0xfa, +0xb1,0x98,0x02,0xb5,0xd3,0xfd,0x78,0x1a,0x76,0xa9,0xe3,0x2e, +0x3c,0xa4,0x0d,0x87,0x50,0x1f,0x13,0xb4,0xc1,0x89,0xf1,0x90, +0x52,0xd8,0x4c,0xb2,0xf8,0xc6,0xf9,0x84,0xf3,0x49,0x97,0x93, +0x67,0x35,0x79,0xd8,0x9b,0x0c,0x46,0x05,0xf0,0x75,0x7e,0x9a, +0x67,0x9a,0x67,0x8a,0x17,0x27,0x8a,0x32,0x6b,0x92,0x69,0x92, +0xad,0x92,0xa4,0xde,0x45,0xe7,0xd1,0xe0,0xc1,0x1b,0x01,0x6d, +0x1c,0x1e,0xc7,0x61,0x52,0xf4,0x3c,0xed,0xf7,0xd8,0x3f,0xf4, +0xe3,0xf8,0x63,0xf3,0x42,0x96,0x7a,0xae,0xa5,0x0c,0x40,0x49, +0x5a,0x31,0x18,0x07,0x53,0x33,0xa9,0xd2,0x5c,0xa7,0xd0,0x05, +0xb6,0xf8,0x86,0x55,0xcf,0x3b,0x70,0x49,0xb1,0x8f,0x69,0x4f, +0xcd,0xa7,0x26,0x58,0x99,0x35,0xc8,0x92,0xc3,0x9d,0xea,0xac, +0x7f,0x78,0x6c,0xb1,0x92,0xf0,0x2f,0xbc,0xbf,0x8e,0x45,0x8d, +0xf0,0x35,0xb3,0x51,0x4e,0x11,0x4b,0xb2,0xa8,0x81,0xcc,0x01, +0x52,0xfa,0xcb,0xf9,0x88,0x36,0xde,0x31,0xd4,0x26,0xd4,0x2a, +0x8c,0x83,0x74,0xf8,0xb2,0x17,0x9f,0xe8,0x52,0x32,0x5e,0xca, +0x1a,0x84,0xe9,0x87,0x1b,0x1c,0xe5,0x64,0x4a,0x83,0xc4,0x7d, +0xd0,0xb6,0xcb,0xf6,0x82,0x85,0x0b,0x7f,0xde,0xb2,0xd2,0xac, +0x4c,0x5d,0x4a,0x78,0xa6,0x49,0x06,0x6c,0x2e,0x1a,0x77,0x1a, +0x5d,0x68,0xe0,0x75,0xba,0xb5,0x5a,0x34,0xce,0x73,0xe6,0xd8, +0x4b,0xcc,0xc3,0xa4,0x7a,0x90,0xd1,0x6a,0x78,0x86,0xdd,0x58, +0xec,0xff,0x44,0x11,0x8a,0x99,0x4f,0x49,0x6e,0x3f,0x1f,0x4d, +0x72,0xbb,0x90,0xed,0x85,0x60,0x32,0xb8,0xad,0x77,0xed,0x85, +0x65,0x5d,0x65,0xbc,0xf9,0x7b,0xfd,0x47,0x9a,0x77,0xb9,0x11, +0x03,0x6c,0x24,0xd7,0x9f,0x36,0xbc,0x2d,0x7c,0xae,0x97,0xc3, +0xfb,0x6d,0xb0,0x5c,0xae,0xba,0x63,0x74,0x8d,0x56,0x97,0xf4, +0x52,0xe8,0xb0,0x12,0xbc,0x7b,0xd0,0x1b,0xc6,0x6b,0xd2,0x19, +0x5d,0xf4,0xe9,0xc3,0x4a,0x0f,0xac,0x70,0x25,0x46,0xe9,0xc2, +0x09,0xd6,0x6c,0xfd,0xa6,0x3d,0x38,0x7d,0x7f,0xa5,0x09,0x0f, +0x0a,0x37,0xde,0x3e,0xef,0x83,0xb1,0x1c,0xe4,0x33,0xfd,0x38, +0xe6,0xdd,0x6a,0x50,0xdc,0x5d,0xd6,0xce,0xe3,0xcc,0x8b,0x1b, +0x6f,0x98,0x3e,0xe2,0x54,0x24,0x3f,0xe1,0x95,0xf4,0x16,0x2b, +0xd9,0x95,0x23,0xcb,0x89,0x94,0xa2,0x9a,0xf9,0x54,0x9e,0x17, +0x50,0x5d,0xa4,0x3c,0xae,0x06,0x62,0xc8,0xd0,0xd6,0xee,0x4d, +0x6d,0x4b,0x3b,0x8a,0x79,0xa3,0x5f,0x0c,0xef,0xaa,0xde,0xe7, +0xd0,0xc6,0x89,0x5c,0x58,0x5b,0xb6,0xad,0x74,0x41,0x6f,0x16, +0xef,0xfa,0x87,0xcb,0x1d,0xab,0x1f,0x38,0xbc,0x76,0x92,0x38, +0x7f,0x67,0xba,0xe5,0xbb,0xbd,0x0d,0x56,0xfc,0xeb,0x07,0x2d, +0x3f,0xd4,0xfe,0x24,0x45,0x0e,0xfc,0x4f,0xf5,0x98,0x40,0x7c, +0x2f,0xc6,0x7f,0xc2,0xf4,0x61,0xba,0x10,0x86,0x26,0xff,0x55, +0x3d,0xb1,0x3a,0x70,0x82,0x62,0xfa,0x59,0x6b,0x17,0xa3,0x31, +0x8e,0x2d,0x33,0xe0,0xc1,0x0a,0x3e,0x87,0xcf,0x60,0xc6,0xe9, +0x7f,0x40,0xfd,0xbf,0x1e,0x20,0x0b,0xbb,0x51,0x5e,0x02,0xf5, +0xeb,0xe0,0xf3,0x9d,0xaf,0xfc,0x41,0x9e,0x83,0xcc,0x3e,0x46, +0xfc,0x4f,0x21,0x71,0x0f,0x71,0x0d,0x75,0xa5,0xa3,0x14,0x08, +0x63,0x7b,0x71,0xec,0xa7,0x80,0x81,0x59,0xba,0x30,0x0b,0x4f, +0xb3,0x26,0x41,0xa6,0x21,0x66,0xa3,0x91,0x13,0x49,0x52,0x90, +0x23,0x87,0x15,0x38,0x59,0x5a,0x24,0xfe,0x95,0x69,0xcd,0xc8, +0x6e,0x92,0x92,0xfc,0x56,0xa5,0x56,0xa5,0x56,0xa6,0x73,0x82, +0xc3,0x10,0x29,0xac,0xa9,0x7b,0x9a,0xde,0xa2,0x9b,0xcb,0x87, +0x58,0x38,0x6f,0xf7,0xb4,0xe6,0xf0,0x15,0x25,0x07,0xf9,0x96, +0x65,0x2a,0x69,0xa6,0x3d,0xf9,0x7c,0x70,0xb3,0xeb,0x5d,0x5f, +0x4a,0x0e,0x64,0x29,0xe0,0x48,0xee,0xc2,0x57,0x95,0x9f,0x3c, +0x4e,0x06,0x07,0xb0,0x91,0x49,0x6d,0x4f,0xee,0x8c,0x6f,0x1f, +0xf5,0x38,0x99,0x6f,0x8d,0xdf,0xac,0xc5,0x49,0x75,0x26,0x7c, +0x51,0x5d,0x41,0x4b,0x5e,0x47,0xfa,0x9c,0x12,0xe5,0xd6,0x6f, +0x74,0xd7,0x6f,0xda,0x86,0xe3,0x76,0x97,0x69,0xf1,0x7f,0xdd, +0x7a,0x74,0x6f,0xf0,0x71,0xeb,0xa6,0x8b,0x5b,0x9f,0x6c,0xaf, +0xe8,0xe3,0xd7,0xdd,0x55,0xbf,0x63,0xf1,0x80,0xc3,0x03,0xb9, +0x44,0x23,0x62,0xfb,0xd1,0xad,0x47,0xb9,0x72,0xb6,0xaf,0x7c, +0xa0,0xb5,0xfa,0x02,0xd7,0x80,0x7e,0x6c,0x4d,0x69,0x45,0x59, +0x79,0x25,0x07,0xdf,0x75,0xa3,0x1c,0xd3,0x7d,0xb9,0xf9,0x56, +0xfd,0x63,0xfd,0x22,0xde,0x7c,0xa9,0xfe,0x06,0xd5,0x5d,0x9c, +0x2d,0x4c,0x80,0x69,0x5d,0x38,0x4d,0x8a,0x53,0x5d,0x6f,0x00, +0xeb,0x71,0x02,0x1a,0xe9,0xc3,0x31,0x66,0xe7,0x9e,0x75,0x9a, +0x8b,0xf5,0x4b,0x0d,0xf8,0x96,0xa2,0x86,0xe2,0xfa,0x12,0x0e, +0xec,0x19,0x67,0x0f,0x53,0x17,0x0b,0x7f,0x6e,0x3f,0xbb,0x29, +0x72,0xf3,0x31,0xd5,0x13,0xb1,0xda,0xfc,0xc5,0x98,0x7b,0xb1, +0xf7,0xe3,0x38,0x3a,0x14,0x9f,0x4b,0x7e,0x2c,0x1f,0x29,0x16, +0xa0,0x26,0x04,0x96,0xb0,0x0f,0xe2,0xee,0x25,0x0c,0x27,0x70, +0x50,0x2d,0x68,0x49,0xde,0x2a,0xde,0xc8,0xea,0xcc,0x35,0xf9, +0xc3,0x17,0xe4,0xc2,0x60,0x3a,0x05,0x42,0xd1,0x82,0x35,0x39, +0x06,0xfc,0x1f,0xdd,0x73,0x41,0x4b,0x17,0xb5,0x50,0x41,0x1f, +0xa6,0x30,0x61,0x38,0xd5,0x1e,0xe7,0xad,0xc2,0xa9,0xb5,0xa6, +0xfc,0x8d,0x3f,0xce,0xfd,0x1e,0xfb,0x9a,0x8b,0x13,0x73,0x7a, +0x85,0x98,0x7f,0xd2,0xb6,0x3e,0xc0,0x8d,0x92,0x5b,0xf8,0xaa, +0xa3,0x9f,0xdc,0xc2,0x65,0xfb,0xa9,0xba,0x69,0xc3,0x8b,0x6c, +0x5a,0x61,0x72,0x61,0x42,0xd1,0xd3,0xb8,0x47,0x89,0x37,0x53, +0x7d,0x9a,0x78,0x54,0xf0,0xc5,0x1d,0x61,0xb8,0xf3,0x44,0x92, +0x09,0x7f,0xe9,0xf4,0x95,0xd3,0x57,0x62,0x8e,0xf8,0x86,0xfa, +0x04,0x53,0xe2,0x63,0x61,0x02,0x1b,0x18,0x73,0x2d,0x75,0xa3, +0xed,0xd6,0x14,0x0c,0xd4,0xe4,0x55,0x9d,0xab,0x90,0xa8,0x13, +0x3c,0x00,0xc2,0x56,0xb9,0xd7,0x7a,0x9f,0xf7,0x2b,0x6c,0xe5, +0xb7,0xd7,0xab,0x74,0xdb,0x74,0x73,0x1a,0x33,0xd2,0x7d,0xb3, +0xfc,0xf2,0xe8,0x55,0x3e,0x4c,0x4e,0x5e,0x76,0x7e,0x66,0x21, +0xa7,0x85,0x96,0xe4,0x09,0xb8,0xaf,0x67,0xf1,0x8a,0x78,0x82, +0xc0,0x2f,0xc2,0x6a,0x2c,0xc3,0x29,0xac,0xb4,0xb9,0xfb,0x19, +0x73,0x21,0x43,0xe2,0x4d,0x37,0xc4,0x62,0x51,0x91,0x05,0x25, +0x68,0x24,0x18,0xd4,0xd5,0x4e,0x09,0xe8,0x3e,0x96,0x4e,0x46, +0x05,0xf2,0x02,0xe6,0x4a,0x0b,0x91,0x83,0x32,0x23,0x62,0xd8, +0xa4,0xd6,0xa4,0x56,0xe1,0x62,0xca,0x5f,0x76,0xec,0xb3,0xe9, +0xb1,0xe0,0x84,0xff,0x8c,0x28,0x93,0xc5,0x8c,0xd3,0x11,0x49, +0xba,0x5f,0x81,0xa2,0xa0,0x2c,0x96,0x8a,0xca,0xd4,0x58,0x9f, +0x44,0x63,0x33,0x9c,0x8c,0xfa,0xcb,0xa4,0xa9,0xec,0xf4,0xeb, +0x10,0x2c,0x3a,0x05,0x5e,0x12,0x00,0xfb,0xc8,0xec,0x28,0xf4, +0xbb,0xa4,0x08,0x2c,0xd3,0x30,0x9a,0x79,0xc6,0x9c,0xd5,0xcd, +0x94,0xdb,0x2d,0xa4,0x13,0x6c,0x10,0x17,0x41,0x03,0x8b,0x2b, +0xb0,0x88,0x18,0x35,0xa9,0xb4,0xa9,0x56,0xbb,0x98,0xf1,0x17, +0xed,0x2f,0x5a,0xf4,0x98,0x71,0x01,0x38,0x9e,0x38,0xe3,0x38, +0x53,0x9c,0xa0,0xb2,0xa8,0xdd,0x96,0xbf,0xf9,0x57,0x0f,0x28, +0x94,0x4a,0xbe,0x20,0x37,0x64,0xf7,0x88,0xa7,0x91,0x9b,0x99, +0xb3,0xb5,0x4f,0xa3,0x7b,0x83,0x73,0x3d,0xd5,0x44,0xb5,0x66, +0x65,0x66,0x85,0x66,0x36,0x96,0xe6,0x76,0x26,0xce,0xc5,0xfa, +0x7c,0x5b,0x55,0x53,0xed,0xf9,0x86,0x1c,0xf3,0x74,0xd3,0x24, +0x63,0x8d,0x95,0xfb,0x34,0x56,0x6a,0x15,0xe9,0xf3,0xcf,0xba, +0x87,0x87,0xba,0xee,0x72,0x67,0x2d,0xce,0x98,0x19,0x2b,0xe0, +0xb6,0x53,0x6e,0x66,0xeb,0x67,0xed,0x66,0x32,0xd4,0xe4,0x2e, +0x31,0x7f,0xf5,0x0c,0x81,0x0f,0xac,0xf4,0x82,0x59,0x3a,0x30, +0x49,0xe9,0x7c,0x6b,0x75,0x77,0xf9,0x20,0x07,0xcf,0x28,0x59, +0x02,0xbf,0x01,0xf4,0x83,0x06,0x38,0x3d,0x20,0x76,0x6b,0xc1, +0x09,0x6c,0x40,0x0f,0x2d,0xf0,0xc0,0x97,0x98,0xab,0x29,0xbc, +0x1c,0xc4,0x64,0x6a,0x13,0xa2,0x65,0x13,0x48,0x43,0xc7,0xf9, +0xde,0xaa,0xcb,0x96,0x65,0xbc,0xbb,0xbe,0x8b,0xb1,0x83,0xa5, +0x4f,0x8b,0x47,0x93,0x53,0xa3,0x85,0x2b,0x5f,0x6b,0x5c,0x66, +0x52,0x60,0x6c,0x6b,0x63,0xe5,0x60,0xe6,0x4a,0xdb,0xd5,0x5c, +0x71,0xa1,0xba,0xae,0x2e,0xcb,0x22,0xc5,0x3c,0xd1,0x44,0x67, +0xb5,0x9a,0xe6,0x5a,0xad,0x22,0x03,0xfe,0x51,0x57,0xff,0x60, +0xfb,0x2d,0x2e,0xd6,0xea,0xb4,0xb9,0xa9,0x02,0xee,0x38,0xe5, +0x61,0xb1,0x79,0xd6,0x7e,0xa9,0x5d,0x83,0xcc,0x87,0xae,0x41, +0xf0,0x85,0xe5,0xbe,0xc0,0x1b,0xc1,0x44,0x25,0x61,0x17,0x9e, +0xf9,0x9f,0x52,0xc9,0xe8,0xc5,0x8c,0x4f,0x4a,0xe5,0x04,0x55, +0x7c,0x54,0xa9,0x1c,0x8c,0x0e,0x94,0x94,0x4a,0x9a,0x0e,0xc4, +0x49,0x4a,0x65,0xdd,0x12,0x3a,0x4d,0xc7,0x95,0xd3,0x91,0x30, +0x81,0x2f,0x7e,0x07,0xf2,0xff,0xea,0x94,0xc7,0x38,0x01,0xd4, +0x3e,0x2d,0x14,0x6c,0x85,0xcf,0xb7,0xff,0xe4,0x27,0x2d,0x14, +0x9c,0xeb,0x63,0x70,0x51,0x19,0x29,0xa8,0x39,0xff,0x34,0xa3, +0x45,0x87,0xea,0x02,0x4b,0xa7,0x51,0x5d,0xf0,0x71,0x54,0x17, +0x54,0xec,0x4a,0x33,0xeb,0x2d,0xe0,0x83,0x9a,0x5d,0xee,0xfa, +0x48,0x0b,0x05,0xc1,0x90,0x48,0x8e,0x9f,0x89,0xaf,0x89,0x3d, +0x7f,0xba,0x51,0x1e,0xe4,0xfa,0x71,0x5c,0x3a,0x03,0x26,0xbf, +0xf5,0xa3,0x1e,0x9b,0x58,0x1b,0x57,0x17,0x7b,0xde,0x20,0x81, +0x0f,0xc1,0xf1,0xde,0xca,0x16,0x3b,0x1b,0x5d,0xf8,0xbc,0xaa, +0xec,0xc6,0xb4,0x36,0xae,0x85,0x1a,0xd3,0x00,0x9c,0xa7,0x0d, +0x73,0xd8,0x48,0x5c,0xe9,0x8a,0x53,0xe6,0x21,0x39,0x6f,0xcd, +0x3f,0xfe,0xad,0xea,0x6d,0xce,0x07,0xee,0xcc,0x99,0xef,0x4f, +0x1f,0x57,0x7c,0x8d,0xba,0xcd,0x65,0x4b,0x41,0x2f,0x32,0x39, +0xfc,0x4c,0x58,0xb8,0xbc,0xcc,0x18,0x46,0xa8,0xc4,0x0c,0xb3, +0xa9,0xff,0x48,0xcc,0xe3,0xc4,0x1b,0xff,0x87,0xc4,0xec,0xf8, +0xaf,0xc4,0x5c,0x8e,0x39,0xe2,0x13,0xea,0x2b,0x49,0x8c,0xf9, +0xa8,0xc4,0x68,0xab,0x1b,0xfe,0x57,0x62,0x0a,0xcb,0xa9,0xc4, +0x7c,0xf9,0x49,0x62,0x3c,0x6a,0xbd,0xfe,0x6f,0x12,0x93,0x4b, +0x25,0x26,0xa3,0x90,0xd3,0xa6,0x12,0xf3,0x14,0xdc,0xa8,0x65, +0xbc,0xfc,0x49,0x62,0x56,0xfd,0xff,0x48,0x4c,0xd1,0xff,0x47, +0x62,0x0c,0x25,0x89,0x31,0x1a,0x95,0x98,0x39,0x54,0x62,0x84, +0x3e,0x99,0x17,0x49,0x29,0x4b,0x2a,0x8f,0x2f,0xa7,0xf4,0xdb, +0x0b,0xc7,0xa9,0xcf,0xde,0xbc,0xa1,0xd2,0x94,0x6f,0x6b,0x6f, +0x18,0xaa,0xbc,0xcc,0xc1,0x0f,0x8b,0x18,0x9c,0x7e,0x1c,0x5d, +0x43,0x71,0xb2,0xe2,0x86,0x08,0x3f,0x4f,0xb5,0x59,0x38,0x91, +0x49,0xd3,0x95,0xfb,0x93,0x79,0x7f,0xa1,0x1d,0x3e,0x4f,0x52, +0x4a,0x81,0x69,0x31,0xe0,0x0c,0x44,0xca,0x3f,0x31,0x72,0x11, +0xdd,0x08,0x36,0x1f,0xc6,0x85,0x26,0xd4,0x4a,0x77,0xda,0xd6, +0xbc,0xca,0x7a,0x1b,0x0f,0x4b,0xe4,0x61,0x3e,0xa6,0xce,0x96, +0xfc,0xb1,0x1f,0x33,0x4d,0xa3,0xd5,0xb1,0x2b,0x31,0x86,0x05, +0x23,0xc9,0xe5,0x5a,0x11,0xb4,0x40,0x91,0x81,0x30,0x71,0x90, +0x54,0x37,0x97,0x77,0x17,0xf5,0xe6,0x3a,0x65,0x3b,0x64,0x3a, +0x57,0x57,0xf0,0x81,0xe7,0x7d,0x1a,0xbd,0x1b,0x8a,0x2e,0xe7, +0x5c,0x4d,0x1b,0xb2,0xc8,0xe2,0x43,0x0d,0x83,0xf4,0x0e,0xe8, +0x7b,0x5d,0xf0,0xaa,0xf3,0xae,0x70,0xa1,0x58,0xd2,0xbe,0xdc, +0xbc,0xd4,0xc4,0x4b,0xcd,0x59,0xdb,0xce,0x94,0x83,0x28,0xb8, +0x47,0xc4,0x2f,0xf1,0x14,0xfc,0x69,0x20,0x06,0x77,0x3f,0x86, +0x4e,0x61,0x27,0x3b,0x32,0x19,0x03,0xff,0xeb,0xc6,0xad,0x28, +0xb9,0x71,0x03,0x23,0xfc,0x45,0xc0,0x31,0xfe,0x63,0x6b,0xe5, +0x0d,0xc9,0x8b,0x3d,0x3a,0xe8,0xfb,0xc8,0x13,0xc1,0x9c,0x7f, +0x54,0xc8,0x49,0x97,0x59,0x68,0xcd,0x24,0x5b,0xc8,0x81,0x15, +0x33,0x5c,0x92,0xd0,0x1c,0xaf,0x14,0x93,0x1f,0x53,0xd4,0xa6, +0x20,0x72,0xcc,0xa9,0xd8,0xef,0xcf,0xc6,0x2a,0x54,0x69,0x38, +0xb2,0x51,0xdf,0x47,0x45,0x47,0x29,0x62,0x81,0x29,0x9d,0xaf, +0xae,0x36,0x1b,0xbd,0x71,0xef,0x11,0x0e,0xae,0xe2,0x62,0xe2, +0x77,0xf2,0xf0,0xb1,0x03,0x8a,0x3e,0x47,0x43,0x4f,0xb8,0xcf, +0xda,0x20,0xdd,0xe5,0x07,0xe6,0x62,0x76,0x56,0x73,0xa2,0x52, +0x5c,0xc9,0xe9,0xf2,0x5e,0x05,0x34,0x8c,0x65,0x1a,0x75,0x6d, +0x58,0xca,0x34,0xcd,0xa8,0xe2,0x3e,0x64,0x6c,0x6e,0x37,0xdf, +0x3d,0x8f,0x1a,0xfc,0x69,0xe7,0xfb,0xfb,0x32,0x6f,0x71,0x82, +0x41,0x0b,0x49,0x60,0xab,0xf5,0x9c,0xd9,0x70,0x5c,0x64,0x06, +0x4a,0xec,0x21,0x53,0x33,0x97,0x39,0x9e,0x79,0x94,0x53,0xce, +0xa8,0xe9,0xef,0xc8,0xba,0xc5,0xc1,0x32,0xc6,0x2f,0xfa,0xd3, +0x33,0x42,0xe8,0x33,0x36,0x31,0x29,0x16,0xb4,0x27,0x87,0x72, +0xff,0xf7,0x8c,0x11,0xa3,0x91,0x2f,0x09,0xd5,0x6c,0xdd,0xdb, +0xd0,0x81,0x4d,0x35,0x92,0xca,0x57,0xb4,0xe4,0xa4,0x52,0xcb, +0xf9,0x7a,0x64,0xab,0xb8,0x9c,0x95,0x8d,0x81,0x76,0x22,0x76, +0x0f,0x0a,0xdd,0x8c,0xd8,0x2d,0xa5,0x8e,0xeb,0xd6,0x10,0xbb, +0x29,0xe1,0x5b,0x20,0x3b,0x47,0x50,0x4f,0x0f,0x66,0x52,0xda, +0x3e,0x57,0x0e,0xa7,0x1b,0xc0,0x54,0x7a,0x26,0x2f,0x27,0xa5, +0x9b,0xfe,0x82,0x89,0xc2,0x05,0x72,0xa8,0x2c,0xbc,0x13,0x27, +0x89,0xef,0x50,0x99,0x89,0x82,0x05,0x72,0xf0,0x45,0x17,0xa5, +0x33,0xc7,0x41,0x5e,0x0e,0xa6,0x74,0x21,0xfd,0x31,0x4c,0x6e, +0x4d,0xed,0x48,0x6f,0x2c,0x90,0xf7,0x68,0x35,0xf5,0xd5,0xf4, +0x57,0x0d,0x91,0xcf,0x10,0x5b,0xe4,0xf6,0xe8,0xfd,0xbd,0xa2, +0x67,0x2f,0x83,0xa9,0x42,0x13,0x11,0x9b,0x30,0x4b,0x68,0x62, +0x2f,0xe0,0x54,0x02,0xaa,0x2d,0x14,0xd8,0xc2,0x36,0xf1,0x2b, +0x02,0x29,0xb8,0x16,0x53,0x58,0x6a,0x1a,0x9d,0x09,0xae,0xdf, +0x05,0xeb,0x59,0x71,0xaa,0xf8,0x98,0x80,0x42,0xe3,0x1f,0x43, +0xf7,0x86,0x2d,0x6a,0xf9,0x6d,0x5a,0x8b,0x0c,0x70,0xba,0x35, +0x27,0xd4,0xc3,0x58,0xf2,0x81,0xda,0x50,0xcd,0x77,0x5a,0x75, +0x6d,0xfc,0xd2,0x6e,0xfc,0x72,0x78,0x5e,0x1d,0xb5,0xef,0x3b, +0x64,0x8f,0x89,0xb6,0x3e,0xe6,0x74,0xd3,0xc3,0x29,0x63,0x38, +0x65,0xd8,0xdf,0x09,0x39,0xd2,0x21,0xb3,0x1d,0x33,0x19,0x48, +0xc3,0x70,0x22,0x7e,0xcf,0xa4,0x64,0x27,0x65,0xc7,0xe7,0xc0, +0xa2,0x18,0x98,0x13,0xff,0x5b,0xca,0x01,0x4a,0x45,0x75,0xfc, +0xb1,0x21,0x12,0x93,0x4f,0x53,0x51,0x7c,0xfb,0xdb,0xa9,0xd3, +0x1f,0x94,0x8e,0x1c,0x0c,0x0b,0x0c,0x09,0xe4,0xf0,0xb1,0x29, +0xd4,0x30,0x5a,0x3a,0xab,0x4d,0x51,0xc1,0xac,0xc8,0x82,0x7f, +0x54,0x7c,0xa5,0xac,0xbb,0x8a,0x53,0x16,0xb6,0xfc,0xce,0x0e, +0xdb,0xde,0x72,0xbe,0xeb,0x5b,0x48,0x05,0xf9,0xeb,0xc6,0xe5, +0x5d,0x9a,0x3d,0x1c,0xd4,0x31,0xe2,0x4b,0x03,0x92,0x9d,0x91, +0x99,0x99,0x9e,0x25,0xf9,0x16,0x67,0x04,0x66,0x1f,0xca,0x39, +0xcc,0xe1,0xc0,0x3c,0xd2,0x07,0x57,0x75,0x58,0xd1,0x5f,0x5c, +0x4f,0xa0,0x4c,0xb6,0x00,0x3d,0x71,0x31,0x9b,0x66,0x2a,0x07, +0x33,0x98,0xc6,0x74,0x69,0x0b,0x21,0x7d,0x24,0x19,0x1f,0xb1, +0xb0,0x89,0x42,0x49,0x34,0xee,0x6e,0x12,0x58,0x3a,0x27,0x44, +0x56,0xba,0xec,0x9a,0x0e,0x35,0x60,0x25,0x82,0x12,0x89,0xb2, +0x8f,0x74,0x8a,0x70,0x71,0x3a,0xea,0x10,0x69,0x17,0x79,0x1d, +0xc6,0xdf,0x85,0x35,0x17,0xe0,0x2b,0xb3,0x02,0xfe,0xa0,0xa6, +0x97,0x8a,0xeb,0x9e,0xc3,0x85,0x81,0xe7,0x02,0x0b,0xab,0xee, +0x55,0xbd,0xcb,0xbf,0x6f,0x9a,0xc5,0x1f,0xdc,0xe1,0xb1,0xce, +0x7d,0x6f,0x70,0x56,0x70,0x66,0x48,0xba,0x9b,0x0d,0xdf,0xa0, +0xdf,0xa9,0x72,0x61,0x9f,0x9b,0x9a,0x8b,0x96,0x8b,0x71,0x68, +0x74,0xe8,0xc9,0xd0,0xe8,0x38,0x3d,0xfe,0x4a,0xc2,0xb5,0x94, +0xc1,0x74,0x07,0x94,0xd3,0x5c,0xb7,0x42,0xad,0xdc,0x9c,0x62, +0xcd,0xb7,0xcf,0x60,0x75,0x3e,0x58,0x72,0x42,0xed,0x6b,0xd2, +0xf0,0xa6,0xf4,0xb7,0x94,0x47,0x14,0xc8,0xe4,0x8c,0x8c,0xf4, +0xc8,0x06,0x69,0x7b,0x8e,0xec,0x72,0x5d,0x60,0xb5,0x84,0xeb, +0xd8,0x56,0xbf,0x66,0x8d,0xc2,0xae,0x40,0x2f,0x4b,0x45,0x23, +0x26,0x51,0x4f,0xae,0x97,0xb9,0x56,0xdd,0xf8,0xe7,0xcf,0xf6, +0x3f,0x19,0xdf,0x50,0x42,0x01,0xbd,0x48,0x96,0x59,0x96,0x56, +0xba,0xb6,0xf9,0x61,0xe3,0x20,0xe3,0x50,0x0e,0xea,0xc1,0x49, +0xb0,0xc5,0xec,0x91,0x58,0xd6,0xe7,0x98,0xcf,0x31,0xdf,0xa8, +0x0c,0x1d,0xfe,0x6d,0xce,0xaf,0xc5,0x4f,0x2a,0xb2,0x57,0xf2, +0x9d,0x59,0x01,0xbf,0xba,0xc0,0x44,0x97,0x1f,0xe5,0xe3,0x05, +0x47,0x82,0x0b,0x71,0x85,0xb4,0x84,0xbf,0x02,0x4d,0xa5,0xd0, +0xe8,0x15,0xb0,0x86,0xb2,0x5f,0x73,0xd9,0xf7,0xe4,0xa1,0xd6, +0x26,0x74,0x37,0x12,0x4e,0x75,0xb0,0x23,0xbb,0xaa,0x48,0xd2, +0xe6,0x7a,0xf5,0xfb,0xbb,0x2a,0x3a,0xf8,0xdd,0x17,0x6d,0x2e, +0x07,0x5c,0xe6,0x76,0x33,0xfe,0x5b,0x4d,0xb7,0xcc,0x93,0xca, +0xbc,0x7e,0xbc,0x39,0xf0,0x2c,0xed,0x27,0x4e,0xe8,0x42,0x7f, +0x92,0x51,0x95,0x5a,0x9b,0x5c,0xa3,0x9f,0xc1,0x87,0xdb,0x05, +0x99,0x4b,0xd9,0xaa,0xee,0x18,0x08,0x25,0x5d,0x0c,0xbe,0x2e, +0x20,0x11,0x15,0x41,0x75,0xc1,0x25,0xc6,0x87,0xa4,0x55,0x48, +0xdb,0x04,0x17,0x0e,0xe7,0x8a,0xa1,0xc4,0x32,0xcc,0x24,0xcc, +0xe8,0x88,0xb4,0x8f,0x37,0xaf,0x1b,0xe7,0xc1,0xc4,0xf7,0xdd, +0x78,0x46,0xff,0x0d,0x4e,0xc4,0xd5,0xfa,0xb0,0x9a,0x2a,0x6f, +0xbd,0x23,0x3a,0x47,0xf5,0x22,0x13,0x29,0xbf,0x21,0x99,0x30, +0xa7,0xe8,0x6d,0x31,0x27,0xf8,0x9a,0x93,0xd5,0x8c,0x77,0x54, +0x42,0xae,0x12,0x4c,0x84,0xe9,0x70,0x53,0xd4,0xc6,0x9b,0xf0, +0x19,0x1b,0xbc,0x4b,0x53,0x17,0xa7,0x38,0x17,0xe8,0xf3,0xb0, +0xa8,0xe1,0xe6,0xe3,0xb4,0xd7,0xdc,0x4b,0xfc,0x8a,0xd1,0xcd, +0xf3,0xeb,0x53,0x7c,0xf5,0x89,0xec,0xff,0xca,0xea,0x67,0xc8, +0x19,0x41,0x2b,0xd9,0x88,0x0f,0x1f,0xb1,0xb8,0x09,0x4b,0x49, +0x66,0x77,0xca,0x40,0x62,0xb7,0x59,0x32,0x7f,0x44,0x2b,0x4c, +0x2f,0xc8,0x44,0xda,0x86,0x59,0x40,0x0a,0xf5,0x0a,0x36,0x25, +0x6b,0xb7,0x67,0xf0,0xa1,0xfd,0xde,0x3f,0xf8,0x75,0x71,0x32, +0x2f,0x57,0xb2,0x06,0x1f,0x3e,0x67,0x27,0xdd,0x16,0x38,0x02, +0x33,0xbb,0x7e,0x7d,0xdd,0xf1,0xd1,0xa1,0x90,0x0f,0x3f,0x18, +0x7a,0x30,0x38,0xc0,0x25,0xca,0xe1,0x84,0xfd,0x89,0xce,0x96, +0xce,0xee,0xd6,0x21,0x87,0x62,0xde,0xc3,0xd1,0xd5,0xc1,0xc5, +0x39,0x24,0x3d,0x34,0x2d,0x24,0xad,0xa2,0xbc,0xac,0xba,0xa8, +0xc6,0xa9,0x94,0xf7,0x75,0x74,0x75,0x72,0x75,0x0b,0x4b,0x09, +0x4d,0x0e,0x4d,0x71,0x76,0xe1,0xeb,0xed,0xaa,0xed,0x2a,0xec, +0x03,0x03,0x03,0x0f,0x05,0x06,0x71,0xd1,0x07,0x0f,0x46,0x1f, +0x9c,0x15,0x63,0x7a,0xed,0xf4,0xb5,0xb8,0xc1,0x04,0x79,0x53, +0x53,0x35,0x9b,0xad,0x6e,0x1c,0x64,0x51,0x56,0xc5,0xa5,0xbc, +0x4c,0x7e,0x92,0x95,0x74,0x38,0x31,0x28,0x21,0xb8,0xae,0x88, +0xf7,0xad,0xf3,0x68,0x74,0xaf,0xe6,0x3a,0x21,0x04,0x2b,0xf1, +0x3e,0x73,0xf8,0xe4,0xa1,0x93,0x81,0xd1,0x9c,0x70,0x1f,0x6a, +0xc8,0x21,0x27,0x4f,0x1b,0x17,0x7b,0xae,0xdf,0xa6,0xcc,0xdd, +0x55,0xc1,0x3d,0xe4,0xb0,0x99,0xa2,0x31,0x93,0x61,0x21,0xd7, +0xca,0x0c,0x57,0x17,0x0e,0xb6,0x3b,0x95,0x58,0x57,0x2a,0x95, +0xd6,0xe4,0xd7,0xe4,0xb6,0x70,0x54,0xdb,0x8b,0x0b,0x3a,0x41, +0x60,0x71,0x8d,0x19,0xc1,0x3d,0x6d,0x94,0x5d,0xe3,0x9e,0x6f, +0x09,0xec,0xd1,0xc7,0x3d,0x54,0x1d,0x58,0x13,0x67,0xff,0xc4, +0xb0,0xc4,0x90,0xc4,0x10,0x79,0x93,0x08,0x83,0xa3,0x1a,0x91, +0xdc,0x73,0x16,0x52,0xb1,0x87,0x64,0xe4,0xa4,0x66,0x27,0x66, +0xb8,0x24,0xf2,0x60,0xd7,0x80,0xff,0xe9,0xd0,0x32,0xc2,0x5f, +0xad,0xc0,0x92,0x71,0x0a,0xcf,0x08,0x48,0x0e,0x48,0x38,0x2c, +0x8f,0x85,0x96,0x7f,0xcf,0x6e,0xa4,0xb4,0xf8,0x2a,0x09,0x3b, +0x78,0xd8,0xff,0x20,0xb5,0x8c,0xe7,0x28,0x63,0x88,0xc8,0x0c, +0xce,0x3e,0x92,0x22,0x8f,0xe3,0xc4,0xcd,0xa4,0x5c,0xa8,0x72, +0x1d,0x82,0xdc,0x91,0x25,0x98,0xcb,0x0a,0xbf,0xc0,0x6e,0x4a, +0xa5,0x5b,0x29,0x93,0x16,0xab,0xbe,0x25,0x42,0x95,0xbe,0x58, +0xc5,0x4c,0x7a,0x42,0x75,0x54,0x70,0x50,0x74,0xf0,0xac,0x18, +0xf3,0x7f,0xba,0xc3,0x44,0x4f,0xcd,0x74,0x87,0x63,0xa1,0x35, +0x0f,0x93,0x86,0xfe,0xfc,0xd0,0x43,0x79,0x31,0x7e,0xc1,0x1a, +0x1c,0x4b,0x34,0x83,0xf1,0x69,0xaf,0xb2,0x1e,0x65,0xcb,0xa7, +0x04,0xa6,0x04,0x24,0x05,0xd6,0x15,0xf2,0x7e,0xb5,0xee,0x8d, +0x2e,0x55,0x36,0x07,0xf8,0x73,0x1e,0xa6,0xe1,0x06,0x47,0x34, +0x23,0xe4,0x7f,0x84,0xc3,0x10,0x80,0xe5,0xa8,0xcf,0xda,0xe7, +0x49,0x1b,0x0a,0x87,0xfd,0xe4,0x1d,0xa2,0xac,0x8f,0x5b,0x1f, +0xef,0x6d,0xeb,0x1d,0xe8,0xbc,0x64,0x5f,0xc2,0x7b,0xbb,0x78, +0x38,0xbb,0xbb,0x06,0x67,0x06,0x65,0x04,0xa7,0x97,0x97,0x95, +0xd5,0x14,0x55,0x3b,0x16,0xf3,0x3e,0x4e,0x6e,0x4e,0xee,0xee, +0x74,0xa8,0x92,0x43,0x93,0x5c,0x9d,0xf9,0xf3,0x4e,0x17,0x6c, +0x2a,0xed,0x7c,0x7c,0x7c,0xfc,0xa4,0x4c,0xd3,0x2d,0xe0,0x4e, +0x82,0xac,0x9c,0x4d,0x5c,0xad,0xb8,0x1e,0xf3,0x72,0x27,0x27, +0x05,0xe7,0x90,0x43,0x56,0x8a,0x26,0x4c,0xba,0x85,0x5c,0x1b, +0xd3,0x57,0x5d,0x74,0xa9,0xdb,0xb1,0xdc,0xaa,0x56,0xa9,0xa4, +0xbe,0xa4,0x3d,0xab,0x93,0xab,0xa6,0x9d,0xad,0xd5,0x25,0xcc, +0xa6,0x20,0xd5,0x92,0xe0,0xfe,0x16,0xd8,0xcf,0xe0,0xfe,0x95, +0x04,0xf6,0x9b,0xe0,0x7e,0x06,0x44,0xfc,0x8b,0xb4,0x87,0xf6, +0x86,0x5e,0x0e,0x4d,0xa3,0xdc,0xf2,0x72,0xff,0xb6,0x36,0xf3, +0x1e,0x6e,0x3f,0x63,0xa1,0xaf,0x62,0x88,0x03,0xda,0x69,0x26, +0xfc,0x50,0x72,0x57,0x72,0x4b,0x0a,0x87,0x8d,0xac,0xf5,0x71, +0xab,0x13,0x56,0x27,0x62,0x8d,0x78,0xd8,0x9a,0x0c,0x73,0x33, +0x61,0x62,0xee,0xf1,0x66,0x7e,0x6f,0xd8,0x86,0xf0,0x55,0x47, +0xb9,0x8f,0x60,0xc8,0xbe,0xa6,0x24,0x6e,0xae,0x3d,0x78,0xfa, +0xa6,0xb6,0xf1,0x1b,0xe3,0x77,0x27,0x6b,0xa7,0x0d,0x9c,0xeb, +0x2e,0x6b,0xaa,0xb2,0xa9,0xe0,0xcd,0x1c,0x34,0x9d,0x36,0xbb, +0x98,0x66,0xda,0xe7,0x79,0x9d,0xe3,0xe0,0x30,0x83,0xc5,0xf0, +0x13,0x29,0xd2,0xbf,0x68,0xff,0x97,0x33,0x87,0xbb,0x7a,0xf4, +0xf4,0x70,0x3d,0xf3,0x5b,0x65,0x5f,0x6d,0x51,0x37,0x07,0x3e, +0xe8,0x4c,0x44,0x95,0x0b,0x82,0x0a,0xb3,0x61,0xbc,0x85,0xa8, +0xd2,0x44,0x35,0x41,0xb1,0x70,0x97,0xd4,0xd7,0x14,0x37,0x65, +0xf7,0x71,0x57,0x5b,0x30,0x9d,0x49,0xce,0x4e,0xca,0x49,0xc8, +0x36,0x49,0xe1,0xdd,0xf7,0x1a,0x6b,0x6c,0x37,0xae,0xb4,0xe7, +0x0b,0x32,0x73,0x33,0xb3,0xb2,0x0a,0x1c,0x4a,0x5c,0xab,0x3c, +0x2d,0x7d,0xf4,0x0f,0xec,0x3b,0x5c,0x60,0xce,0xdf,0xc9,0x19, +0x2a,0x68,0xad,0xe8,0x74,0xbe,0xe4,0xf5,0xc0,0x37,0xbb,0x85, +0x57,0xc9,0xd1,0xcd,0x37,0x2f,0xe2,0x46,0xbe,0x80,0x6f,0x48, +0x80,0xb6,0x95,0x8e,0xa1,0x75,0x95,0x03,0x9f,0x9b,0x49,0x91, +0x53,0x01,0xb7,0x18,0x2c,0xd9,0x44,0x0f,0xb9,0x4e,0xa6,0xab, +0x38,0xbd,0x3d,0x41,0x29,0xae,0x2e,0xa6,0xe7,0xa2,0x02,0x0e, +0x33,0x67,0xe2,0xce,0xc4,0x9d,0x8a,0xe3,0xca,0xaa,0x60,0x96, +0x53,0x7b,0x15,0x7c,0xd5,0x84,0x5f,0xd5,0x19,0xdb,0xe1,0xac, +0x3a,0x23,0x3b,0x54,0xb0,0x00,0x05,0x0f,0x46,0xb0,0x8d,0x24, +0x67,0x62,0xe4,0x60,0x37,0x73,0xd8,0xca,0xc7,0xd1,0xc1,0xdd, +0xb6,0xc4,0xbd,0xca,0xa7,0x9e,0x43,0x5d,0x35,0x62,0x77,0xc2, +0xe9,0xb8,0x8f,0xa2,0x7b,0x54,0x58,0x84,0xd3,0xac,0x40,0x18, +0x83,0xbe,0x4c,0x5c,0x52,0x7c,0xd2,0xd9,0x64,0x2e,0x1e,0x59, +0x72,0x01,0x16,0x59,0xb3,0x42,0x32,0xde,0x21,0x17,0xb0,0xa1, +0x03,0x1a,0xe8,0xb1,0x0d,0xee,0x34,0x8d,0xd8,0xe3,0x33,0xd9, +0x16,0x36,0xda,0x25,0xda,0xe1,0xb8,0x1f,0xe7,0x79,0x2c,0x24, +0xcc,0x6c,0xd6,0x3e,0x26,0xc5,0x5c,0x6e,0x98,0xea,0xda,0xac, +0xfe,0x44,0xa5,0xb3,0xd5,0xa7,0x3b,0x86,0x14,0xf0,0xe7,0x2e, +0x46,0x17,0x14,0x09,0x56,0xb6,0x41,0x25,0x43,0x45,0x71,0x01, +0xe9,0x80,0x4a,0x23,0xd6,0x7a,0xbc,0x01,0x56,0x76,0xb1,0xc2, +0x6c,0xfc,0x17,0xc9,0xf7,0xcc,0xb5,0x4f,0x77,0x6d,0xcb,0xe5, +0x0f,0x97,0x1e,0xa8,0xf5,0x2e,0xe6,0xc4,0x4e,0xdc,0x44,0x3a, +0x2f,0x54,0xb7,0x16,0x36,0x9b,0xe5,0xf3,0xde,0xb6,0x8e,0xd6, +0x46,0x76,0x9c,0xa0,0xfc,0x17,0xc9,0x72,0xca,0xb4,0x48,0xb6, +0xeb,0x4e,0xe3,0xc3,0x6b,0x0f,0x36,0x06,0x54,0x70,0xe8,0x10, +0x4e,0x92,0x1c,0x92,0x75,0x62,0x6c,0x87,0xe2,0xf9,0xa3,0x0d, +0x61,0xdd,0x21,0x52,0x11,0x90,0x38,0xd9,0x33,0x62,0x8e,0x46, +0x7b,0x50,0x09,0xc7,0x8e,0xee,0x46,0x96,0x96,0x96,0xd5,0x94, +0x34,0x71,0xe2,0xb9,0x41,0xd9,0x14,0xb6,0xfa,0x5e,0xd9,0x8b, +0xdc,0xf7,0xdc,0x47,0x6a,0xd5,0x7b,0xd2,0xaf,0x97,0x74,0x95, +0xb9,0x75,0xf0,0x9a,0xf6,0x1b,0xdd,0xf7,0x06,0x72,0x22,0xb2, +0x7e,0x91,0x3e,0x91,0xde,0x91,0x69,0xda,0x3c,0xc8,0x57,0x3e, +0x2c,0x7d,0x75,0x3e,0xa4,0x8b,0x37,0x3a,0x60,0x78,0x50,0x23, +0x50,0x72,0x14,0xf6,0x26,0x43,0xb2,0x36,0x50,0x11,0xef,0xe1, +0x2c,0x29,0xd1,0x02,0x05,0x1a,0x0d,0x19,0x19,0xcd,0x4a,0xb2, +0x89,0x28,0xed,0xb4,0x46,0x0b,0x0d,0xa4,0x3e,0x23,0xb9,0x5e, +0xe9,0x1e,0x6b,0x9c,0x22,0xb7,0x0c,0x57,0xb1,0x9e,0x27,0xe2, +0x8a,0x94,0xba,0xd9,0x17,0xd9,0x4f,0xce,0x5d,0xae,0xf0,0x6d, +0xe2,0xd5,0x5c,0x55,0x7c,0xb7,0x04,0x72,0x1f,0xf5,0xd1,0xf3, +0x53,0xba,0x2e,0xa1,0x1e,0xed,0x49,0x71,0xe3,0xb9,0x4b,0x49, +0x52,0x02,0xac,0xa9,0x6c,0x44,0x6a,0x78,0x4a,0x78,0x6a,0x57, +0x5b,0xef,0xad,0x82,0x01,0xae,0x19,0x7f,0x30,0x82,0x5c,0x36, +0xc0,0xce,0x5a,0xdf,0xdc,0xd6,0xa3,0xcc,0xad,0xc4,0xab,0xc0, +0xd1,0x91,0x6f,0xb6,0x6f,0x34,0xab,0xb1,0xe0,0x50,0xdb,0x04, +0x36,0x8a,0xce,0x8c,0x5e,0x89,0xdf,0x68,0x02,0xac,0x25,0x46, +0xa3,0x09,0xb0,0xbc,0x4d,0xd6,0x1b,0x2a,0x16,0x18,0x3c,0xeb, +0xcd,0x6e,0x8c,0x79,0x21,0x7f,0x96,0xf9,0xf6,0xec,0xf9,0xcd, +0x30,0x7d,0x16,0x10,0x26,0xb1,0x53,0x0e,0x09,0x73,0xe4,0xc8, +0x68,0x02,0x2c,0x37,0x98,0xd9,0x8e,0x33,0xc1,0xf3,0x23,0x1b, +0xe6,0xe8,0x6f,0xe2,0xe7,0xc4,0x8d,0x70,0x70,0x94,0x78,0x0c, +0xd9,0x5e,0x35,0xb9,0x64,0xe6,0xca,0x37,0x68,0xd6,0xa9,0x96, +0xef,0xe1,0x60,0x40,0xdc,0x48,0x22,0x52,0x8e,0x7c,0x1f,0x16, +0x1e,0x11,0x29,0x25,0x13,0xcb,0x89,0xc9,0x3d,0x93,0x2f,0x0f, +0x33,0x3b,0x71,0x7a,0x3c,0x03,0x14,0x02,0x75,0xa2,0x17,0x9b, +0x90,0x1f,0x9f,0x1f,0x9b,0x4f,0xa7,0x78,0x90,0x9a,0xcb,0x76, +0x5b,0xe3,0x0b,0x2e,0x7c,0x56,0x41,0x66,0x49,0x7a,0x29,0x77, +0x1d,0xe5,0x98,0x23,0xb8,0xc4,0x90,0x9a,0xcb,0x90,0x65,0x66, +0x7b,0x71,0xc2,0xc6,0x52,0x33,0x6a,0xfd,0x1a,0xba,0x4b,0xaf, +0x9e,0x39,0x7b,0xe6,0xfb,0xd8,0x63,0x0f,0x70,0x3c,0x7f,0xa1, +0x56,0x4e,0x54,0xa0,0x10,0xd8,0x07,0x27,0x5b,0xe0,0x6c,0x93, +0xa5,0x6d,0x76,0x7c,0xf7,0x5f,0x0d,0xa0,0x5c,0x02,0x93,0xb9, +0x49,0x7f,0xab,0x0b,0x29,0x04,0x8d,0x40,0x4e,0x1d,0xe5,0x28, +0x83,0x5a,0x2d,0x8c,0xe9,0x11,0xc7,0xfc,0xa6,0x3e,0x1f,0x3f, +0xea,0xc1,0x47,0x5c,0x8d,0xeb,0x3f,0x7d,0xa3,0xa1,0x0b,0x1a, +0xa8,0x8c,0x6b,0xf4,0x20,0x85,0x09,0xc2,0xaf,0xd4,0xb7,0xa2, +0xbb,0x5e,0x91,0x2e,0x0f,0x81,0xbd,0xcf,0x3e,0x64,0xc0,0x0a, +0x8e,0x7e,0x6b,0xc3,0xa8,0x17,0xfa,0xdc,0x50,0xa4,0x70,0xe7, +0xc2,0xe8,0xf6,0x20,0xcf,0xaa,0x67,0xc8,0xe1,0x72,0xdc,0xcc, +0x3a,0x1c,0x4d,0x2d,0x51,0xa2,0xd4,0xa2,0xb4,0x07,0xb7,0x80, +0x32,0x18,0xb1,0x23,0xf3,0x50,0x99,0x80,0xb2,0x30,0x07,0x95, +0xa9,0x40,0x6f,0x96,0x2a,0x96,0x8d,0x85,0xd3,0xdd,0x78,0x1a, +0xc6,0x6a,0xd3,0xf9,0x74,0x42,0x9f,0x52,0xc0,0xb1,0xac,0x18, +0x24,0x0a,0xe4,0x35,0x6c,0x93,0x45,0x63,0xf0,0xc8,0x2b,0x16, +0x46,0x29,0xf6,0x04,0x28,0x81,0x09,0x8c,0x6c,0xce,0xc8,0x49, +0x6a,0x73,0xed,0x42,0x93,0xea,0x94,0xc0,0x1f,0xd4,0xba,0xf1, +0x33,0x6a,0x78,0x27,0x75,0xe3,0x24,0xe0,0x74,0x90,0xc3,0xb3, +0x52,0x76,0x26,0xca,0x94,0xf4,0xe1,0x4b,0x9c,0xbe,0x50,0x1f, +0x36,0x50,0x7c,0xbd,0x5c,0x7b,0x07,0x2e,0x52,0x2d,0x31,0xe4, +0x61,0xfd,0xcd,0xeb,0x6f,0x12,0x60,0x1f,0x07,0x72,0x18,0xc6, +0xec,0x2b,0xf1,0xbc,0xa1,0xf8,0x96,0xb9,0x90,0x9e,0x71,0x41, +0x09,0xe6,0x4b,0xab,0xef,0x38,0x45,0x62,0x43,0xd3,0xe9,0x4d, +0xa6,0xb3,0xe2,0xd7,0x6e,0x04,0x26,0xe0,0x75,0x9c,0xc0,0x4c, +0x92,0x65,0xca,0x36,0x91,0xd2,0xda,0x92,0xd6,0xac,0x3a,0xdd, +0x3c,0xfe,0x80,0x99,0x87,0x91,0xa3,0x31,0xb7,0x1c,0x56,0x69, +0xe1,0x2a,0xe4,0x3f,0x7d,0xdc,0x1a,0xad,0xb7,0x38,0xb2,0xa9, +0x9a,0x78,0x5d,0x70,0x6b,0x3e,0x50,0x60,0xe4,0xc3,0x97,0xdb, +0x16,0xda,0xe5,0x3a,0x73,0x32,0x17,0x31,0x92,0x74,0x8a,0x9b, +0x9f,0xc0,0xdf,0x1d,0xf8,0xf7,0x23,0xe1,0xeb,0x0e,0x0c,0x61, +0x73,0x8b,0xb2,0x4b,0xd3,0x8b,0x0c,0xb2,0xf9,0x43,0x6e,0x7e, +0xf6,0xee,0x4e,0x1c,0xd6,0x32,0x4d,0x85,0x07,0x8a,0xbd,0xaa, +0x02,0x33,0xe5,0x4d,0xbc,0xcf,0x79,0xe6,0x7b,0x66,0xf8,0xc9, +0xe3,0x11,0x23,0xe1,0x8b,0x8d,0xf8,0xc6,0x08,0xde,0xac,0x17, +0x97,0x1a,0x0a,0x14,0x42,0x6c,0x43,0x79,0x3d,0xb4,0x36,0x92, +0x22,0x07,0x3c,0xfb,0x61,0xee,0x50,0x89,0xe4,0xb1,0x16,0x33, +0x04,0x31,0x71,0x4c,0x89,0x32,0xac,0xd0,0x00,0x5f,0x6d,0xc9, +0x63,0xcd,0xa1,0x03,0xe7,0xf6,0x68,0xdf,0xa5,0xe2,0x6a,0x21, +0x38,0x90,0x53,0x25,0xdf,0x97,0x96,0x2b,0xc8,0xb6,0xc1,0xc9, +0x91,0x30,0x0c,0x61,0xf0,0xa1,0x0f,0x2e,0xde,0x89,0x63,0x14, +0xbb,0xf4,0xae,0x4b,0xbe,0x4e,0x53,0xe3,0xe1,0x88,0xbc,0x6c, +0x21,0x13,0x8d,0xb3,0x8f,0x22,0x09,0xde,0xc0,0x99,0x1c,0x39, +0x78,0x58,0x55,0x0a,0x15,0x4a,0xa5,0x62,0x38,0x9d,0x79,0xd2, +0x58,0xf6,0x20,0x4d,0x29,0xf3,0xe7,0x38,0x20,0xa7,0xc0,0x94, +0x5b,0x28,0x6d,0xb6,0x10,0xf1,0x3f,0x94,0x89,0xbe,0x16,0x77, +0x12,0xbc,0x3c,0x74,0x1b,0x7e,0x87,0xa3,0x2c,0xfe,0x8e,0x5a, +0x04,0x66,0x41,0x3d,0xce,0xa2,0x43,0xfb,0xb5,0xec,0x0a,0xd1, +0xc4,0x75,0xa8,0x01,0xeb,0x34,0xe8,0xc7,0x89,0x91,0x03,0x43, +0xb7,0x64,0xdb,0x77,0x0e,0xcb,0x0e,0x60,0x22,0x83,0x83,0x3a, +0x04,0x8f,0xa2,0x2a,0xbd,0x4a,0xd8,0x81,0x47,0x09,0xfd,0xd5, +0x51,0xd0,0x60,0x06,0xe9,0x29,0x3d,0x31,0xc4,0xa3,0xac,0x18, +0xad,0x4b,0x30,0x96,0xfe,0x22,0x56,0xfa,0x45,0xac,0xf4,0x8b, +0xd8,0xd1,0x5f,0xc4,0x12,0x7a,0x62,0x88,0xb1,0x14,0x12,0xe7, +0xd2,0x57,0x8b,0x48,0x3b,0xf6,0x7d,0xe8,0x11,0x29,0x5d,0x0a, +0xc8,0xff,0xd6,0x35,0x1f,0xb4,0xf5,0x50,0x1b,0x89,0xc4,0x52, +0xc2,0x47,0x17,0xb5,0xbe,0xc3,0xa9,0xb5,0x66,0xfc,0xd5,0xdf, +0x0a,0x7f,0x8f,0x7d,0xf5,0xa9,0x28,0xce,0x7f,0x17,0xb5,0xae, +0xe3,0x8a,0xea,0x5a,0x39,0x38,0x07,0xd5,0x04,0x97,0x9f,0xc0, +0x3d,0x91,0xdf,0x28,0x9a,0x1d,0x3f,0x12,0xe6,0x26,0x6d,0x21, +0x1a,0xc9,0x5d,0x64,0x06,0x4b,0x0a,0x1e,0xc7,0x2a,0xc5,0x7d, +0x3c,0x03,0xbb,0xa5,0x28,0x1f,0xc2,0xc4,0xe7,0x26,0x57,0x27, +0x55,0x73,0xc2,0x94,0xae,0x91,0x99,0x06,0x60,0xc3,0x84,0x9a, +0x05,0x6a,0x05,0x3b,0x70,0x82,0x53,0x26,0xc1,0x43,0x86,0xb0, +0x83,0x89,0x5a,0x7d,0xe8,0x3b,0xd7,0xed,0x9e,0x97,0x02,0x6f, +0x87,0xbd,0x94,0xa0,0x25,0x8e,0x29,0x58,0x53,0xb7,0xd5,0xdd, +0xd8,0xc1,0xca,0xcc,0xb9,0xd2,0x9c,0x6f,0xa8,0xa8,0xa9,0x2f, +0x6d,0x2e,0xb6,0xac,0xb4,0xae,0xb7,0xa9,0x6d,0xe0,0xcd,0x9b, +0x1c,0x1b,0x3d,0xda,0x9a,0x5f,0x9d,0x83,0xb1,0x71,0x30,0x81, +0x13,0xef,0x8a,0x1b,0x08,0xe8,0x51,0x8d,0xad,0xc7,0x74,0xe0, +0x3b,0x02,0xcd,0xcf,0xb0,0x99,0x15,0xdc,0xf0,0x24,0xe9,0x1e, +0x59,0xad,0x4f,0x35,0x60,0xb2,0x30,0x91,0xc0,0x1f,0x43,0xf8, +0x07,0x94,0x0a,0x0b,0x87,0x46,0xee,0x68,0x08,0x9f,0x61,0x29, +0x5e,0xd5,0xa0,0x5c,0xf3,0xb1,0xa8,0xa4,0xf1,0xf7,0xd4,0x21, +0x71,0x37,0x03,0x9f,0x43,0x08,0xe9,0x36,0xbd,0xa4,0xd2,0xa0, +0xd3,0x5e,0xcf,0x5b,0xf4,0xab,0x5d,0xd1,0x6d,0xa3,0xb3,0xe0, +0xe8,0xe8,0xb2,0x9f,0x3c,0x8c,0xeb,0xc4,0x71,0x9f,0xfa,0x68, +0x9a,0x21,0x4c,0x94,0x16,0xfe,0x1c,0x71,0xc1,0x5a,0xfc,0xaa, +0xd6,0x94,0xbf,0xfc,0x5b,0xc1,0x6f,0xb1,0x52,0xe1,0xa0,0x8c, +0xd1,0x3e,0x8a,0xf9,0xfe,0x74,0x14,0xed,0xa3,0x35,0xd5,0x35, +0x7b,0x61,0x59,0x64,0xfa,0xd1,0xe8,0xb0,0x23,0xf2,0x30,0x5d, +0x3c,0x4f,0xfa,0x64,0xc3,0xc2,0x66,0x3a,0x8f,0xb6,0x4a,0x69, +0x53,0x60,0x31,0xd3,0x96,0x92,0xd5,0xa4,0x24,0xab,0x12,0xab, +0xd9,0xdf,0x71,0x1b,0xd1,0x87,0x27,0xdd,0x2c,0x5e,0xc0,0xcd, +0x44,0x24,0x5d,0xd7,0xc0,0x04,0xae,0xb1,0x68,0x82,0x69,0x04, +0xec,0x61,0x1e,0xda,0xd3,0x41,0x6b,0x80,0x9f,0x49,0xd4,0x5b, +0x98,0xd7,0x47,0x11,0xf6,0x5b,0x2d,0x7c,0x8b,0x7b,0x74,0x60, +0x33,0x13,0x80,0xe3,0xf6,0xe3,0xf8,0x6f,0x95,0xab,0x0c,0xf8, +0x1f,0x7f,0x6d,0x7e,0x9d,0x20,0x2d,0x40,0x6e,0x1d,0x10,0x78, +0xe6,0xec,0x69,0x29,0x2f,0xca,0x9f,0xb8,0xad,0xae,0x61,0x0e, +0x6c,0x39,0x9a,0x18,0x71,0x3a,0x34,0x4c,0x5e,0x58,0xf5,0x33, +0x81,0x0c,0xf6,0x76,0xea,0x8d,0x8c,0xbe,0x1c,0xf7,0x2e,0x1e, +0xc7,0x38,0xe2,0x32,0x2f,0x9c,0x13,0x9a,0xa2,0xc5,0xb7,0xc4, +0x76,0xc4,0x75,0xc6,0x73,0x74,0xee,0xe8,0x69,0x81,0x9e,0x68, +0x7b,0x51,0xb0,0x85,0xa3,0x03,0xac,0xf8,0xf8,0x0d,0x29,0xbe, +0x58,0xf6,0x2c,0xfb,0xb6,0x61,0x2e,0x7f,0x68,0x87,0xd7,0x46, +0x2f,0x35,0x0e,0x67,0x9f,0x26,0x01,0x37,0xbc,0x1e,0xf9,0x5e, +0x34,0xf1,0xe1,0x0b,0xd5,0x8a,0xb6,0x64,0xed,0xa2,0x5d,0xe5, +0x33,0x9a,0x80,0x57,0x5f,0x13,0x17,0x2c,0x43,0xae,0xda,0x98, +0x2f,0x2e,0x2f,0x6d,0x28,0xee,0xe6,0xc4,0x86,0x3e,0xd9,0x1a, +0xf6,0xdc,0xb5,0xbc,0xfb,0x69,0x4f,0x39,0x21,0xea,0x2c,0xd1, +0x5f,0x8f,0x7e,0x4f,0xe8,0x61,0x9d,0x31,0xac,0xdb,0xd9,0x7d, +0x0b,0xfc,0xa4,0xc3,0xbe,0x76,0xdc,0xc7,0xc0,0xcc,0x91,0xe9, +0xa4,0x1d,0xf3,0x7f,0x84,0xa6,0x76,0x6c,0x7a,0x02,0xd9,0x60, +0x27,0x3e,0x44,0x3b,0x48,0x5e,0x8f,0xe7,0x8d,0xe1,0xfc,0x2a, +0xcc,0x32,0x86,0xac,0xc5,0x78,0xdd,0x40,0xa6,0xda,0x85,0xb7, +0xde,0xb1,0x98,0x22,0xa8,0x10,0xb0,0xa2,0xea,0xcf,0x8a,0x81, +0x94,0x19,0x54,0x21,0x3a,0x52,0x1d,0x38,0x09,0x0e,0xc8,0xa6, +0x93,0xeb,0xa0,0xac,0xd2,0x7b,0x1d,0xbe,0xea,0xc2,0xaf,0xae, +0xeb,0xaa,0xa0,0xf2,0x75,0x3d,0x15,0x9c,0x6c,0x00,0x93,0x55, +0x58,0xa1,0x1d,0x0c,0x88,0x16,0xea,0x2c,0xd1,0xfa,0x85,0x39, +0x81,0xcd,0xb6,0xb8,0x73,0x05,0x2e,0x68,0xb1,0xe0,0x7f,0x85, +0x35,0x0d,0x60,0x76,0x06,0x3a,0x39,0x98,0xcd,0x60,0x74,0x14, +0xae,0x0b,0x53,0x56,0xd4,0x88,0x0c,0x0d,0x36,0x98,0xb5,0x59, +0xda,0x36,0x7e,0xc0,0x3c,0x28,0xa9,0x7a,0x92,0xa0,0x94,0x0a, +0x5c,0x0c,0x7c,0x03,0xb7,0x14,0xd0,0x9c,0x11,0xe7,0x89,0xe9, +0x04,0x8c,0x3a,0xd1,0xe8,0x39,0x38,0x74,0xa1,0xc3,0x43,0xaa, +0xb2,0x5d,0x44,0x35,0x74,0x01,0xcd,0x4d,0x68,0x43,0x27,0xfb, +0x1a,0xd4,0x33,0x04,0xbd,0xb9,0xcc,0xee,0xc8,0xdd,0x51,0xbb, +0x8e,0x53,0xe6,0x08,0xeb,0x92,0x60,0x51,0x2a,0x7c,0x9b,0x7f, +0xa2,0x9d,0xdf,0x7f,0x74,0xff,0x51,0xd5,0x63,0x9c,0x8e,0x50, +0x4a,0xe8,0x3b,0xcc,0x84,0xb1,0x2c,0x68,0xe1,0x58,0x49,0xb1, +0xcf,0x96,0xde,0x43,0xe8,0x96,0x6d,0x26,0xd9,0xcd,0x19,0x2d, +0xc9,0xad,0x9a,0x99,0xbc,0x0b,0x4e,0x53,0xc5,0x99,0x1b,0x97, +0xd0,0x96,0xd6,0xb7,0xd7,0x4a,0xa9,0x65,0xe0,0x81,0x1e,0x83, +0x5f,0x1e,0x43,0xbb,0x83,0x38,0x59,0x71,0x4f,0xd8,0x01,0xfb, +0x9d,0xb3,0x70,0x05,0x23,0xb9,0x82,0xcf,0x65,0x60,0x4c,0x33, +0xc5,0xd9,0xe9,0x4a,0xd9,0x30,0x2d,0x0e,0xcc,0x61,0x8a,0x02, +0x4c,0x64,0x47,0xb6,0xe3,0x5e,0x02,0xe3,0xfa,0xe8,0x4c,0x2e, +0xd2,0xc0,0x22,0x9c,0xa4,0x03,0x93,0x10,0x19,0xab,0x60,0xcb, +0x10,0xf3,0x50,0x29,0x24,0x6b,0x52,0xf5,0xc7,0xea,0x77,0x8d, +0xe1,0x7d,0xbc,0x4d,0xa0,0xf5,0x21,0xcb,0x20,0x0e,0x22,0xa1, +0x81,0x68,0x42,0xed,0x20,0x8b,0xcb,0xc6,0x2b,0x1b,0xe0,0x4c, +0x7d,0x64,0xdc,0xb3,0x35,0x78,0xc9,0x25,0xfe,0x5f,0x3d,0xef, +0xbb,0xb9,0x49,0x42,0x9e,0xec,0x0e,0xd9,0x8b,0x3b,0xf1,0x77, +0xf1,0xd9,0x65,0x21,0x1f,0x6a,0x46,0xd6,0x5c,0x95,0xad,0x81, +0x1e,0xd1,0x00,0x77,0x8f,0xb6,0x64,0x21,0xd3,0x9d,0x9f,0xdb, +0xad,0x24,0x44,0x8a,0x72,0x54,0xb7,0x39,0x0a,0xb3,0x09,0xa8, +0x01,0xa2,0x05,0x93,0x5c,0x94,0x5c,0x1a,0x57,0xa0,0x15,0xcf, +0x47,0xfa,0x85,0x39,0x85,0xba,0x71,0xd4,0xea,0x21,0xec,0x58, +0x8a,0x06,0x78,0xa3,0x0f,0xb2,0x60,0x16,0xde,0x1b,0x80,0x7b, +0xb0,0x04,0x2d,0x67,0x33,0xe9,0xba,0x72,0xcf,0x98,0xa6,0xac, +0xcc,0x66,0x25,0x88,0x46,0x47,0x56,0x8c,0x12,0xd2,0x88,0xef, +0x36,0xc3,0x4d,0x38,0x76,0x67,0x29,0x25,0x8a,0x63,0x6e,0x5e, +0x7a,0x9e,0x4e,0xe5,0x8f,0x49,0xde,0xd2,0xa5,0xfd,0xe3,0x5e, +0xc9,0x7d,0x75,0xd0,0x78,0xf8,0xe0,0x10,0x27,0x34,0x53,0x98, +0xa8,0x8c,0x6d,0xbf,0xb2,0xd4,0x28,0x6b,0x90,0x1e,0x4c,0xd7, +0xfb,0x15,0x27,0xe0,0x16,0x3d,0xd8,0x82,0xfd,0xac,0x36,0x65, +0x17,0x5a,0xc7,0x24,0x52,0xaa,0x90,0x01,0x73,0x8b,0xde,0x15, +0x9d,0xec,0xe5,0x2d,0xc3,0xcc,0xc2,0x8d,0x29,0x91,0x6d,0x81, +0xe5,0x3d,0xb8,0x1c,0x26,0xb0,0x42,0x5f,0x05,0x99,0x83,0x6d, +0x7f,0xb2,0xb8,0x47,0xdc,0x4d,0xb2,0xba,0x52,0xfb,0x93,0xba, +0x4d,0x53,0xf8,0x70,0xad,0x50,0xfd,0xc3,0xa6,0x92,0xcd,0x9c, +0x43,0x0a,0x0d,0x0a,0x37,0xa5,0xe8,0x52,0xa2,0x19,0xd2,0xef, +0xf5,0xd4,0x57,0x2a,0xf9,0x71,0x46,0x38,0x40,0xc0,0x91,0x85, +0xd0,0xb3,0x60,0x97,0x08,0x16,0xcd,0x9e,0x7d,0x3c,0xea,0x5b, +0xa1,0x63,0x18,0x96,0x44,0x71,0x98,0xc7,0xa2,0x8e,0x0f,0xae, +0x5d,0x8a,0x4a,0x8a,0x3d,0x96,0x3f,0x82,0x7c,0x15,0xac,0x8b, +0x05,0x15,0x79,0xb8,0x2b,0x06,0x5c,0x15,0x02,0xa0,0x63,0x88, +0x5a,0x4d,0x37,0x29,0xed,0xe7,0x62,0x26,0x6c,0x87,0xcf,0x72, +0x87,0x4d,0x6d,0xde,0x7c,0xd3,0xbb,0xc2,0xdf,0x93,0x1f,0x73, +0x2d,0xf8,0xe2,0x9f,0xb4,0x9f,0x7a,0x71,0xfc,0x11,0xfc,0x2a, +0x60,0x9e,0xd5,0x6c,0x2e,0x05,0xaf,0xc0,0x4e,0x16,0xc6,0xa5, +0xc2,0x97,0xc5,0xf7,0x2b,0x5c,0x7a,0xf8,0xf5,0xf6,0x38,0xd3, +0x1d,0xa7,0x86,0x73,0x94,0xa1,0xa1,0xfd,0x21,0x54,0xa1,0x3a, +0x4b,0xb1,0xcb,0xe2,0x32,0x2c,0xcc,0x86,0xcd,0xa7,0x20,0x40, +0x1e,0xe6,0x88,0x65,0xc3,0x42,0xd9,0x8f,0x4c,0x64,0xf0,0xd1, +0xe0,0xa3,0x41,0xad,0x4e,0xfc,0xf9,0xbb,0x25,0x0f,0xb2,0x1f, +0x73,0x8f,0x51,0x89,0x41,0x17,0x0d,0x9c,0x83,0x5b,0x70,0xbe, +0x62,0xa5,0x16,0x2c,0x80,0x59,0x37,0xe0,0xf3,0xb3,0xb0,0x45, +0x5e,0x0a,0x1a,0xda,0x7a,0x97,0x62,0x85,0x79,0x38,0xa3,0x7c, +0x80,0xc7,0x4d,0xb0,0x60,0x3f,0xcc,0x01,0x67,0x05,0x69,0x50, +0xff,0x4d,0x60,0xd9,0xff,0x1a,0xdb,0xfc,0xa9,0xb1,0xad,0xf8, +0x0b,0x9b,0xd4,0x11,0xff,0xa9,0xb1,0xa1,0x38,0xd7,0x1b,0x27, +0xa8,0xe0,0xa4,0x56,0x17,0xbe,0x72,0xa0,0x60,0x28,0xeb,0x12, +0xf7,0x02,0x15,0x19,0x74,0xd5,0xa4,0x68,0x78,0x13,0x2e,0x90, +0x1e,0x36,0x1f,0xbe,0xbe,0x0e,0x13,0x62,0xff,0x79,0xd8,0xb6, +0x7b,0xf8,0x05,0x28,0xe3,0x4c,0xe9,0x61,0xdb,0x61,0xe1,0x7e, +0x50,0x02,0x17,0x05,0xd1,0x10,0xfa,0x48,0xea,0xda,0xc1,0xbd, +0x6f,0x76,0x96,0x75,0xf2,0xab,0xae,0xe8,0xde,0xf4,0xbf,0xca, +0xed,0x66,0x7c,0xb7,0xea,0x6d,0xc6,0xcf,0x77,0x48,0x93,0x81, +0xb9,0x75,0xed,0x87,0x8c,0xd7,0x1c,0xec,0x18,0xd1,0x25,0x96, +0xe1,0x66,0xe1,0x26,0x11,0x1c,0x34,0xc1,0xba,0x1e,0x69,0xf7, +0x0c,0xc6,0xf6,0x60,0xb1,0xde,0x9f,0xf8,0x39,0xee,0xd5,0x83, +0xbd,0xd8,0xcb,0x6a,0x1c,0x51,0x8d,0x50,0x3f,0x96,0x44,0x27, +0xb4,0x62,0x06,0x2c,0x38,0xf7,0xb1,0x88,0xd3,0x7d,0x43,0x72, +0xba,0xd3,0xfa,0x92,0xbb,0x4c,0xd3,0xf8,0x30,0xad,0x60,0x83, +0x43,0x26,0x1c,0x66,0xc2,0x6c,0x3a,0xc8,0x45,0x9b,0x52,0x75, +0xdb,0xb3,0xf8,0x90,0x3e,0xcf,0xa7,0x3e,0x1d,0x14,0x03,0x6e, +0x11,0x02,0x48,0x07,0xea,0x3f,0x87,0x4d,0x6d,0xb8,0xe9,0x31, +0x68,0x77,0x88,0xeb,0x8c,0x60,0xc7,0x06,0x5c,0x67,0x02,0xeb, +0xd6,0xe0,0xfa,0x40,0x36,0xfa,0x94,0x9c,0x29,0x73,0xb2,0x5c, +0x37,0x52,0xfb,0x98,0x66,0x94,0xfc,0x4b,0x58,0xdf,0x86,0xeb, +0x1f,0xc3,0xce,0x0e,0x71,0xa1,0x11,0x6c,0xdd,0x80,0xcb,0x4c, +0x60,0xd9,0x52,0x56,0xe7,0xb8,0xd6,0x71,0xed,0x13,0xf1,0x94, +0x12,0x92,0x38,0xc9,0x69,0xec,0xcb,0x74,0xf5,0xdd,0xc8,0xea, +0xe1,0x51,0xa3,0x2c,0x7d,0xfe,0x8f,0x82,0xa7,0xf9,0x97,0x8b, +0x38,0x0b,0x41,0xfe,0x02,0x7b,0xd5,0xe7,0x07,0xbf,0xdf,0xfd, +0x32,0xa9,0xca,0xf6,0x6c,0xc1,0x69,0x1d,0x2a,0x43,0x1c,0x1e, +0xc6,0x99,0xe4,0x69,0x4d,0xc7,0x05,0xca,0xf9,0xe2,0x98,0x62, +0xbd,0x6e,0xeb,0x17,0x8e,0xdc,0x2f,0x68,0x44,0xcc,0xf5,0x36, +0xaf,0xdb,0xa3,0xd1,0x68,0xcf,0x3f,0xb8,0xfd,0xe3,0x2f,0x83, +0x77,0xb8,0xd6,0x11,0x75,0x03,0x76,0xd2,0x5d,0xc1,0x9d,0xc0, +0xc4,0x4b,0x17,0xfa,0x93,0xae,0x50,0xe0,0xe3,0xd0,0x4b,0xa7, +0x57,0x7c,0xcc,0xa9,0xb3,0x51,0x8a,0xc0,0x6e,0x2a,0x3b,0x8f, +0x9f,0xdd,0x0d,0x4d,0x88,0xf8,0x5e,0xca,0xea,0x1f,0x26,0x77, +0x6c,0x18,0x96,0xb5,0xe3,0xb2,0x17,0xba,0xab,0xd1,0xc4,0x18, +0x54,0x18,0x5f,0x4d,0x6d,0xed,0x39,0x7a,0x9c,0xa0,0x65,0x43, +0x60,0xfa,0x8d,0x8a,0xae,0x94,0x8b,0xf4,0x0e,0xce,0xbd,0xe0, +0x1c,0xc7,0xa4,0xa8,0x36,0x1b,0xc2,0x8c,0x5d,0x92,0x47,0xca, +0x67,0x3d,0xaa,0xbd,0x1e,0x7d,0x1c,0x18,0xb4,0xa3,0xeb,0x0b, +0x9d,0xd5,0xb8,0xc9,0x18,0x94,0x19,0x5f,0x5d,0x23,0x3d,0x1c, +0xa7,0xcd,0x09,0x04,0xb7,0x93,0xae,0x11,0x55,0x03,0xa9,0x84, +0x31,0x65,0x5d,0x1e,0xb8,0x9b,0x95,0xdc,0xa6,0x96,0x33,0x2d, +0xf9,0xb9,0x2d,0x4a,0x14,0x6c,0x29,0x75,0x8f,0x8c,0xe8,0xb3, +0xc2,0xeb,0xb5,0xe4,0x07,0xf3,0xbb,0x86,0xb7,0xb4,0x6a,0x1a, +0xf8,0x1d,0x03,0xbb,0x3a,0xbe,0x6b,0xe6,0xc4,0x75,0xd1,0xc4, +0x50,0x5b,0xd3,0x04,0xc7,0x98,0x55,0x98,0x53,0xdd,0xd3,0x76, +0xb5,0xb7,0x6b,0x98,0xaa,0x1e,0x4b,0xd9,0x63,0xa2,0xb5,0x1e, +0x59,0x35,0x3c,0xa3,0x23,0xa5,0x92,0x89,0xbb,0x04,0x33,0x2f, +0xb5,0xfe,0x46,0x3b,0xa3,0x6d,0x3e,0xcc,0x56,0x85,0x54,0xd5, +0x9c,0x5e,0x1e,0xcf,0xf6,0xe1,0xb4,0x4b,0x9a,0x8f,0xb9,0xfd, +0xe8,0x44,0x30,0xc0,0x44,0x28,0x6d,0xc3,0xe3,0xd7,0xd5,0x18, +0xdc,0x88,0x4f,0xc8,0xe3,0xec,0x5b,0x05,0x97,0x4b,0x07,0xfc, +0x07,0x7c,0xfb,0x7c,0x8b,0x1a,0x78,0xd3,0x6c,0xb3,0x6c,0xb3, +0xcc,0xda,0x9c,0xaa,0xdc,0xca,0x7c,0xe7,0x2a,0xde,0xda,0xc3, +0xd2,0xc7,0xd4,0x5f,0x3d,0x4f,0x2b,0x47,0x37,0xdd,0xdb,0x96, +0x6f,0x0c,0x69,0x0e,0x6a,0x3d,0xac,0x77,0x40,0xfb,0x90,0x46, +0x10,0x27,0x5c,0x59,0x42,0xe0,0x80,0x06,0xee,0x12,0x7b,0x60, +0x97,0x06,0x1e,0x80,0x12,0x36,0xf2,0x60,0xe4,0x81,0xa3,0xfe, +0x1c,0x5e,0xc1,0x1f,0x86,0xa1,0x0c,0x82,0x98,0x43,0xd6,0x07, +0x2d,0xfd,0xad,0x16,0x9c,0xe0,0xcf,0xea,0xc3,0xb2,0x38,0x58, +0x98,0x00,0xf2,0x99,0xf2,0xc9,0x87,0x92,0x0f,0x25,0x1d,0x4a, +0x35,0xe6,0x29,0xd0,0x6a,0x4a,0x4f,0xa5,0x98,0x3f,0x49,0xdc, +0xc8,0xc6,0xe7,0xc5,0xe5,0x9e,0xcd,0xe1,0xe0,0x27,0x7c,0x4c, +0x70,0x2a,0x73,0xa1,0xc8,0x7e,0xd0,0xe8,0x92,0x7d,0x8d,0xbc, +0xb5,0x77,0x66,0x60,0xe6,0x81,0x4c,0x7f,0x79,0x95,0xa3,0x5b, +0x8f,0xad,0x8b,0xca,0xaa,0xcb,0x6a,0xc8,0x68,0xe0,0x84,0x49, +0x8c,0x14,0x5e,0xb9,0x8f,0x14,0xd8,0xe5,0x5b,0xe7,0x59,0x74, +0xe5,0xf2,0x81,0x35,0x01,0x15,0x07,0x2a,0x39,0x58,0xdf,0x89, +0x75,0xff,0x84,0x57,0xea,0xa5,0xf2,0xae,0xdf,0x19,0x6e,0xd9, +0xa9,0x3a,0x1a,0x5e,0x59,0x51,0x57,0x7c,0x81,0x13,0xcc,0x3a, +0xa5,0x5c,0x7e,0x9f,0xc2,0x27,0x7d,0x36,0xd8,0x6c,0xd2,0x56, +0x6d,0x76,0xe6,0x4b,0x2a,0x0a,0x6b,0x46,0xe3,0x2d,0x3f,0xdd, +0xad,0x73,0xf4,0x6e,0x95,0x07,0x2a,0x38,0xd0,0xea,0x64,0xb0, +0x1f,0x37,0x10,0x9c,0x8c,0x4b,0xf4,0x60,0x31,0x1b,0x89,0x5b, +0xcd,0x71,0x2e,0x7e,0x85,0x93,0x9a,0x6d,0x78,0x98,0x01,0x7c, +0x17,0x2c,0x8d,0x03,0x7d,0x0e,0x96,0x32,0x38,0x27,0x6a,0x6e, +0xe8,0x0a,0x45,0x93,0xc8,0x90,0x60,0xe3,0x59,0x8b,0xa4,0x08, +0xe2,0xd7,0xcc,0x9d,0xaa,0x73,0xcf,0x93,0x95,0x52,0x3f,0xc4, +0xc0,0x38,0xd0,0x55,0xa0,0x26,0x71,0x32,0x23,0xbe,0xc4,0x43, +0x04,0xbf,0x39,0x81,0xd3,0xb6,0x53,0x14,0xdd,0x61,0xd7,0x7a, +0x3b,0xf7,0x41,0xc2,0x8f,0xf2,0xe0,0x87,0x5b,0x71,0x15,0x93, +0xad,0x27,0x2d,0xea,0xb6,0x65,0x65,0xb6,0x29,0x09,0x4d,0xf8, +0x13,0x0b,0x25,0x14,0x0d,0xa1,0x3b,0x65,0x74,0xee,0x0c,0x7a, +0x61,0x2d,0x39,0x5d,0x73,0xaa,0xb6,0x5e,0x01,0xdc,0x71,0x22, +0xd5,0x91,0x0f,0x61,0x33,0xc9,0x94,0xca,0x18,0x07,0x34,0x54, +0xf0,0xfa,0x3d,0x5a,0x5d,0xfb,0xdb,0x6c,0xdc,0xf9,0xc2,0x80, +0xfc,0x80,0x82,0x03,0xdf,0x44,0x2e,0x8c,0x9c,0x73,0xfc,0x71, +0xd3,0x0f,0x03,0x37,0x7b,0x2d,0x2a,0x79,0x2d,0xd3,0x0d,0xda, +0x6b,0x4c,0xbc,0xd3,0xbd,0x32,0x3c,0x32,0x7a,0x2b,0xdb,0xab, +0xdb,0xcf,0xbb,0xe5,0xf2,0xe7,0x71,0xe9,0x6d,0x50,0x80,0xd5, +0xa8,0x70,0x05,0x96,0x36,0x8b,0x4b,0x44,0x45,0x61,0x02,0x6b, +0xeb,0x66,0xec,0xac,0xef,0xea,0x9c,0xe5,0x9c,0xe5,0x9a,0xee, +0x68,0xc7,0x3f,0xb0,0xbb,0x6d,0x77,0xdd,0xda,0x3b,0x84,0x3f, +0xb9,0x44,0x39,0x7a,0xee,0xac,0x78,0x7d,0x39,0x98,0x06,0x33, +0x63,0x62,0x61,0xba,0x92,0x94,0x56,0xd4,0x8b,0x85,0x31,0x67, +0xff,0x8a,0xfb,0x90,0xc8,0x61,0x23,0x84,0x91,0x9b,0xc5,0x83, +0xe5,0xed,0xd5,0x9d,0x56,0x97,0x6c,0x1f,0x3a,0x16,0xb7,0xf1, +0x3b,0x2b,0xb4,0xaa,0xcc,0x6a,0x6e,0x0c,0xb7,0xdc,0x2a,0x7e, +0xca,0x5d,0x90,0x4a,0x65,0xbe,0x60,0x7d,0xd5,0xec,0x74,0x34, +0x8d,0x8c,0x5b,0x1c,0x3a,0xdc,0xba,0x4d,0xbd,0xf9,0x0a,0xed, +0x5a,0x83,0x76,0x13,0x0b,0x77,0x3d,0xcf,0xbd,0x3e,0x1c,0x86, +0x40,0x24,0xc1,0xd9,0x57,0x24,0xf4,0x31,0x1b,0x55,0xc9,0x0d, +0x38,0xb7,0x9b,0x45,0x05,0x2b,0xb2,0x03,0x67,0xdf,0x66,0x85, +0xc3,0xa2,0x2b,0xf9,0xcd,0xee,0xb9,0xe3,0x0f,0x96,0x15,0xcd, +0xfc,0x8a,0xc6,0xef,0x6a,0x97,0x54,0x71,0xe2,0x15,0x5c,0x47, +0x7e,0xab,0xf8,0xb9,0xfe,0x72,0x93,0x6d,0x1d,0xaf,0x6a,0xb3, +0xc6,0x41,0xd9,0xfd,0xbf,0x59,0x0b,0x97,0x62,0xf6,0xcf,0xf4, +0x70,0x5c,0x07,0x8e,0xaf,0x18,0xfa,0x09,0xb2,0xa5,0x43,0x72, +0x1f,0x26,0x33,0xa2,0x35,0xc6,0x11,0x88,0x8e,0x01,0xb7,0x38, +0x30,0xbc,0xe0,0x45,0x49,0x8f,0xb6,0x0d,0xba,0x1e,0xc3,0xf3, +0xc7,0x39,0x84,0xe0,0x39,0x2b,0x90,0x55,0x6c,0x33,0xbf,0xf5, +0xb6,0xf4,0x6d,0x22,0x68,0xca,0xc3,0x13,0x91,0x1b,0x16,0x38, +0x78,0xd2,0x3f,0x62,0xcf,0x9c,0xaa,0x3d,0x55,0xdf,0x4c,0x35, +0xfe,0x4e,0x7a,0x7f,0xcd,0xdd,0x98,0x2d,0xd5,0xef,0x3c,0xa5, +0x0f,0xa7,0xf6,0x0e,0x5c,0x85,0xec,0xbd,0x83,0x57,0x21,0xbd, +0x1b,0xd3,0x19,0x31,0x63,0xe4,0x3e,0x19,0x94,0xad,0xd0,0x1c, +0x92,0xed,0x1c,0x29,0x1f,0xd9,0xc9,0xca,0x3c,0x65,0x13,0x89, +0x98,0x3c,0xb2,0x42,0x48,0x66,0x85,0x3f,0x31,0x8a,0x42,0xbc, +0xf8,0x47,0xec,0x83,0xb8,0x3b,0x09,0x17,0x53,0x0f,0x53,0xcd, +0x31,0xcb,0x03,0x77,0x1e,0xc3,0xb5,0x51,0x09,0x26,0xfc,0xc5, +0xd3,0x37,0x4e,0x5f,0x8f,0xe5,0xb6,0xe2,0x31,0x63,0x70,0x65, +0xed,0xb4,0x54,0x0c,0x90,0x35,0x2e,0xb0,0xe0,0x61,0xee,0x95, +0xe1,0xde,0xb4,0x3b,0x54,0xef,0xf8,0xf7,0x80,0x7f,0x1c,0x93, +0xbe,0xfd,0x96,0x2e,0x2c,0xde,0x97,0xdf,0xc4,0xe3,0xc4,0xf6, +0xcd,0x3d,0xd6,0x7d,0x54,0x1f,0x4c,0x14,0x1c,0x49,0x90,0xc3, +0x61,0xb7,0x03,0x2e,0xbe,0x25,0x7c,0x64,0xfc,0x91,0x98,0xf0, +0xb0,0x23,0x11,0xfc,0xf1,0x64,0xa6,0x71,0xb8,0xf9,0x45,0xde, +0x4f,0x5c,0x23,0x25,0xc2,0x4b,0x75,0x70,0x29,0xce,0xd4,0x85, +0xe3,0xac,0x2b,0x7e,0xb9,0x12,0x15,0xf1,0x1b,0x9c,0x58,0x66, +0xcc,0x77,0x37,0x35,0x34,0x94,0x9f,0xe7,0xc4,0x05,0x7d,0xc2, +0xda,0xff,0x66,0xf7,0xfd,0x02,0x97,0x9c,0x3f,0xbf,0xfb,0x59, +0x61,0x6d,0x76,0x55,0x56,0x9d,0x3c,0xb8,0x08,0x4a,0xc4,0x79, +0xde,0xfa,0xc5,0x48,0x56,0x54,0x52,0x14,0x37,0xe5,0xd5,0xcb, +0x9f,0x8b,0xe0,0x4b,0xee,0x2c,0x73,0x0e,0xb9,0x5f,0x96,0xc2, +0xec,0x79,0x95,0x54,0xd9,0xcc,0xfe,0x75,0xf5,0x6b,0xbb,0x3f, +0x39,0x34,0x12,0x27,0x10,0x78,0x3c,0x80,0x8f,0x19,0xb8,0x82, +0x47,0x88,0xd9,0x37,0xbb,0x91,0x57,0x59,0xdc,0xe9,0xc4,0xdf, +0x07,0xee,0x3e,0xcc,0xef,0x84,0xf1,0x5c,0x9b,0x68,0xa6,0x45, +0xa1,0xea,0x7f,0x04,0x37,0x72,0xff,0x72,0x59,0xcb,0xd9,0x3b, +0xdc,0x59,0xf4,0xef,0xa2,0xda,0xf6,0x53,0x69,0xb2,0xe1,0x9d, +0x95,0x55,0xaa,0x77,0x22,0x92,0x22,0xbf,0x0f,0x8f,0x90,0x8f, +0x38,0x2a,0x17,0xd5,0xf2,0x73,0xdb,0xd2,0x9f,0x0d,0x96,0x22, +0x6f,0x42,0xe9,0x47,0x80,0x96,0xad,0xee,0x46,0x75,0x0e,0xda, +0x75,0xc8,0xb3,0x9b,0x05,0x2d,0x67,0xef,0xd1,0x8b,0x3d,0xbb, +0xc0,0xf3,0x2c,0x13,0xb7,0xb7,0xc8,0xf8,0xd5,0xb6,0x92,0x0b, +0xfc,0xaa,0x9b,0x96,0x83,0x87,0x06,0x38,0x98,0xde,0x86,0x4a, +0xf4,0xba,0xe5,0x26,0x8f,0x98,0xc3,0xea,0xb6,0x1a,0x6b,0x77, +0x73,0xd8,0x81,0x7b,0x48,0x7e,0x5d,0x66,0x5d,0x66,0xbd,0x43, +0x01,0x1f,0xe2,0x10,0xec,0x1a,0xe8,0x12,0x5c,0xc0,0x47,0xc5, +0x47,0xc4,0x1e,0x39,0x12,0x1e,0xce,0x1f,0x4f,0x63,0x6a,0x2f, +0xd6,0xbf,0xcc,0x7a,0xc9,0x35,0x29,0xc3,0x32,0x3d,0x5c,0x86, +0x63,0xf4,0xc1,0x86,0xf5,0xc6,0x2f,0xb7,0xe2,0x3c,0x24,0x38, +0x45,0x72,0xe2,0x6e,0xae,0x3c,0x7f,0x4e,0x4a,0x87,0xdc,0xfd, +0xa9,0xc3,0xce,0x44,0x29,0xde,0xc5,0x19,0x75,0x35,0x72,0xc2, +0xc5,0x37,0xa4,0x5d,0x8c,0x37,0x66,0x85,0xee,0x35,0x44,0xfc, +0x68,0x08,0x05,0xe8,0x4e,0x29,0x60,0x86,0xae,0x1c,0xc8,0x31, +0xf5,0x99,0xd2,0x22,0x87,0x33,0x14,0xb0,0xa2,0xbb,0x23,0x31, +0xd5,0x56,0x37,0xd9,0x60,0x5b,0x61,0xca,0x3f,0x69,0xb8,0xd1, +0xd5,0x4e,0xe1,0x6c,0xc4,0x09,0x32,0x60,0xdc,0x69,0xd4,0xac, +0x5b,0x7f,0x9e,0xb7,0xec,0x34,0xe8,0xd3,0x6a,0xa6,0x73,0xb9, +0x4f,0x76,0x97,0xe8,0xaf,0xc3,0x9d,0x4f,0xe9,0x61,0x9a,0x31, +0x4c,0xdb,0xd5,0x7d,0x13,0x76,0x4a,0x07,0xc5,0x76,0x0a,0x20, +0x46,0xfc,0x3b,0x88,0x1e,0x94,0xf5,0xb0,0x54,0xed,0xce,0x21, +0xba,0xf0,0x4b,0x2f,0x2b,0xe4,0x8a,0x2d,0x74,0x86,0xb9,0xfd, +0x08,0x21,0xed,0x18,0xf2,0x08,0x5c,0xc1,0x49,0xf4,0x47,0x27, +0x70,0xdc,0x88,0x87,0x8d,0xe1,0xf0,0x2a,0x74,0x32,0x06,0xa7, +0xc5,0x18,0x6f,0x28,0x0c,0x77,0x62,0x3c,0x25,0x11,0x0e,0x02, +0x45,0xc5,0xcb,0x90,0x62,0x5c,0x06,0x1c,0x66,0x80,0xe4,0x07, +0xca,0xb2,0x23,0x29,0xaf,0xe8,0x8d,0xf3,0xe8,0x8d,0xf5,0xc6, +0x77,0x63,0x9e,0x3e,0xdb,0x23,0x7e,0x43,0xba,0xc0,0x9d,0xbe, +0x4f,0x01,0x3e,0x60,0xc1,0xe3,0x53,0x0e,0xda,0xef,0x46,0x37, +0x5a,0x1c,0x04,0x3f,0x22,0xae,0xbf,0x2c,0xac,0x87,0xcd,0x03, +0xa2,0x35,0x7c,0xc7,0xc2,0x96,0xb3,0xb0,0xbe,0xf8,0x43,0xa5, +0x07,0x9d,0x13,0x63,0x1d,0x70,0x9d,0x37,0x1a,0x53,0xe4,0xe7, +0x4e,0x91,0x9f,0x37,0xf2,0x6a,0xcb,0x14,0x3b,0xcd,0xaf,0xbc, +0x2f,0x01,0x5e,0xc2,0x3a,0xa8,0x0e,0xb3,0x88,0xd6,0xc3,0x3d, +0x77,0xb4,0x3b,0x2c,0xec,0xf9,0x01,0xc3,0x2b,0xdb,0x06,0xb6, +0x70,0x60,0x21,0x0e,0x11,0x24,0x2b,0x07,0xa4,0x94,0x50,0x75, +0x68,0xa2,0x09,0xbc,0x94,0x12,0xca,0x41,0x7f,0xbe,0x95,0x62, +0x9e,0xd6,0x9b,0xf3,0xed,0x7d,0x67,0xee,0xfc,0x1f,0x29,0xa1, +0x0e,0x33,0x89,0x43,0x72,0x93,0x64,0xc7,0x84,0x0b,0xa4,0xd3, +0x63,0xd0,0xe3,0xba,0x47,0x29,0x05,0x4d,0x89,0x7f,0xe1,0x57, +0xef,0x74,0xe9,0x4c,0xdb,0xce,0xe8,0xe0,0x78,0x1c,0xbf,0x18, +0xcf,0xce,0x2e,0xd3,0xe2,0xaf,0x97,0x0e,0x94,0xb6,0x97,0x70, +0x86,0xe0,0x86,0x33,0x11,0x75,0x28,0x16,0xaf,0x17,0x67,0x6b, +0xc9,0xc4,0x01,0x71,0x05,0xd4,0x0b,0x13,0xfb,0xc4,0x89,0x30, +0x13,0x0e,0xb1,0x98,0x04,0xfd,0xa4,0x68,0xf5,0xfd,0x4d,0x30, +0x77,0x23,0x27,0x86,0x31,0x30,0xeb,0xd1,0xad,0x87,0x45,0x2f, +0x38,0xf0,0x18,0x39,0x48,0xaa,0xda,0x6a,0x6f,0xe6,0xf7,0x6a, +0x17,0xf2,0xfe,0x7a,0xf6,0x7b,0x9c,0x4c,0x38,0xfa,0xce,0x4a, +0xa4,0x46,0xbf,0x52,0xa7,0x58,0xab,0xef,0x1c,0xef,0xdd,0x67, +0x7d,0xcd,0x45,0x1a,0xba,0x71,0x54,0x4d,0x38,0xcf,0x5b,0xbb, +0x18,0xf9,0x15,0x52,0x3a,0x92,0x69,0xaf,0x5e,0xbd,0x29,0x82, +0x49,0x9f,0x44,0xe6,0xfd,0x52,0x98,0x37,0x2a,0x32,0x73,0x7f, +0x5d,0xf1,0xc6,0xee,0x0f,0x4e,0x6c,0x19,0xe9,0xfb,0xbf,0xa5, +0xc8,0xb4,0xc4,0xb3,0x04,0x7e,0x1c,0xc0,0x1f,0x19,0xb8,0x45, +0xa5,0xc9,0xf4,0x9b,0x9d,0x38,0x73,0xf7,0xa2,0x0e,0x27,0xfe, +0x21,0x70,0x8f,0x60,0x7e,0xd7,0xa8,0x34,0xd9,0x49,0xd2,0x94, +0x21,0xab,0x22,0xa9,0xab,0x07,0xf6,0xfc,0xbc,0x8d,0xc2,0xc3, +0x95,0xd7,0xf5,0x6e,0xfa,0xdf,0xa4,0xf0,0xd0,0x6f,0xab,0xd1, +0x66,0xfc,0x4c,0xe2,0x0a,0x7f,0xdd,0x1c,0x7e,0x96,0xfe,0x8a, +0x13,0x5a,0x46,0x66,0x90,0xce,0xfa,0x9e,0xc1,0xca,0x0e,0x9b, +0x3a,0xde,0xc3,0xd4,0x5c,0xd7,0xd4,0xd6,0xa7,0x27,0x68,0xe8, +0xc8,0x4d,0x0e,0x54,0x85,0x15,0xe2,0xaa,0x91,0x06,0xc6,0xeb, +0x98,0x6f,0x94,0xff,0xf1,0x54,0x5d,0xfe,0x97,0x4c,0x50,0x28, +0xff,0xb1,0x34,0xa2,0x8b,0x37,0x3c,0xb4,0xe7,0xd0,0xfe,0x60, +0x6a,0x7e,0x61,0x3c,0x5b,0x88,0x7a,0x97,0x29,0x11,0xdf,0x8c, +0x44,0xda,0x4d,0xeb,0x32,0xee,0x71,0x1c,0xe6,0x9a,0x85,0xd7, +0x52,0xb4,0x4f,0x0b,0x7c,0xc1,0xe2,0xc4,0x91,0x85,0xc4,0x2c, +0xd4,0x30,0x4c,0x3f,0x9c,0x4a,0x29,0x2c,0xed,0xc1,0xa5,0x30, +0xf1,0xf7,0x6e,0x4c,0xd1,0x7f,0x87,0x13,0x71,0x93,0x1e,0x6c, +0xc2,0x21,0xca,0x40,0xb4,0x8e,0x6a,0x47,0x26,0x51,0x06,0xf2, +0xaf,0x0c,0x58,0x58,0xfc,0xa1,0x84,0x03,0x4e,0xa8,0x25,0xd0, +0x82,0x3c,0xb6,0x30,0xa8,0x8b,0x37,0x48,0x66,0x77,0x5a,0x7f, +0x62,0xb7,0x19,0x65,0x1c,0x9a,0x61,0xfa,0x12,0x18,0x3d,0x03, +0xf3,0x49,0x81,0x7e,0xe1,0xc6,0x54,0x9d,0xb6,0x4c,0x3e,0x54, +0x62,0x1c,0x5d,0x14,0x8c,0x8e,0xcd,0x22,0x0b,0x19,0xf3,0xf0, +0xb8,0x66,0x25,0xa1,0x97,0xd2,0x01,0xe3,0x7d,0x68,0x8c,0x09, +0x1a,0x90,0xc0,0x9e,0xc0,0x73,0x5b,0x29,0x98,0xb7,0x47,0xa5, +0x3a,0x8a,0x90,0x3c,0x60,0xee,0xcf,0x60,0x79,0x06,0x5a,0x38, +0x88,0x16,0x4f,0x33,0x9b,0x4a,0xbd,0x1f,0x29,0xc2,0x18,0x29, +0x7a,0xaa,0x49,0x09,0x3c,0xa5,0xb5,0xc7,0x49,0x70,0x92,0xb2, +0x78,0x4b,0x34,0xda,0x8b,0xb3,0xe7,0x20,0x57,0x63,0xc8,0x97, +0x96,0x96,0xd4,0x96,0x50,0x10,0x56,0x3c,0x28,0x9b,0xc9,0x56, +0xde,0x29,0x79,0x9e,0xf3,0x96,0xeb,0xf2,0x21,0x62,0x82,0x50, +0x2c,0x24,0xb0,0xa2,0x07,0x2e,0x25,0xef,0x84,0x95,0x8b,0x59, +0x71,0x25,0x7e,0x43,0xde,0x0b,0x2b,0x17,0x49,0x67,0xdf,0x92, +0xdf,0x84,0x95,0xf3,0x59,0x98,0x4e,0xe1,0xe8,0xe8,0x22,0x4c, +0x0a,0x1e,0x24,0x6f,0x2a,0xdf,0x5e,0xec,0xef,0x75,0xa8,0xe7, +0x75,0xf4,0xd6,0xe8,0x2f,0x77,0xe3,0x84,0x95,0xbf,0x90,0x1f, +0x6c,0x5f,0xeb,0x5c,0x37,0xac,0xec,0xe0,0x55,0x3a,0x96,0xf5, +0xac,0x95,0x0a,0x4f,0x77,0xca,0x6c,0x48,0x5a,0x6d,0x72,0x5d, +0x42,0x9d,0x7a,0x12,0xef,0x8c,0x4b,0xb6,0xa1,0x02,0xc5,0x1f, +0x9f,0x35,0x9a,0xf2,0x8f,0x6f,0x0f,0x3f,0x6b,0xa4,0x83,0x77, +0x8d,0x89,0xc6,0xf6,0x20,0xd4,0x3a,0xb8,0x96,0x33,0x0a,0xf5, +0xf0,0x52,0x9f,0x85,0xdb,0x46,0xa9,0xe6,0x77,0xcc,0x4f,0x2d, +0xd5,0x8f,0x72,0x95,0x8a,0xde,0xa7,0x82,0x3f,0x3c,0x55,0x18, +0x51,0x43,0x7b,0x22,0xee,0xbf,0xf8,0x50,0x18,0x03,0x32,0x56, +0x1c,0x83,0x1d,0x04,0x8e,0x41,0x27,0x1e,0xa3,0x13,0x65,0x9b, +0xcc,0x83,0xc8,0x8e,0x0f,0x8c,0x0c,0x8d,0xfc,0x7e,0xf9,0xb2, +0x2c,0x66,0x60,0x24,0x86,0x81,0xc9,0x37,0xc8,0x5f,0x83,0x1f, +0x1f,0xbc,0x7a,0xf5,0x62,0xd7,0xc3,0x9d,0xbd,0x5a,0x8d,0x2d, +0xbc,0xf6,0xd0,0xe6,0x9b,0x6b,0xae,0x5f,0xbe,0xd1,0x7f,0xbf, +0xed,0xb1,0x6e,0x0d,0x6f,0xba,0x41,0x77,0x9b,0xea,0x9e,0x55, +0x57,0x97,0x5e,0x5e,0xd3,0x6e,0x63,0xc2,0x3f,0x33,0x79,0xa3, +0xf6,0x7c,0xef,0x77,0x6b,0x97,0xec,0x9c,0xab,0x4d,0xcd,0x4f, +0xa3,0xcc,0x8c,0xa4,0xd5,0x25,0x9d,0x4f,0xa8,0xd5,0x4a,0xe6, +0x3d,0x70,0x86,0x1a,0x7e,0xbd,0x62,0xd1,0x05,0x23,0xbe,0x77, +0xb8,0xf5,0x41,0xf5,0x53,0x0e,0x9e,0x6e,0x61,0x70,0x3a,0x25, +0xeb,0x87,0x71,0xa2,0xe2,0x96,0xb0,0x03,0x76,0x7b,0x67,0xe1, +0x0c,0x26,0x43,0x4b,0x0e,0xbe,0x62,0xfe,0x2c,0xed,0x81,0x89, +0xe9,0x4a,0xe9,0x30,0x31,0x9e,0x4e,0xfc,0xe9,0x0a,0xf0,0x35, +0x2b,0xde,0x86,0x29,0xc4,0x55,0xdf,0xc1,0xd8,0xd6,0xd2,0xbb, +0xc5,0xad,0xc9,0xa1,0xd1,0xc2,0x85,0xaf,0x33,0xa9,0x30,0x2d, +0x34,0xb1,0xb2,0x32,0x73,0x30,0x96,0x7c,0x89,0xda,0x2b,0x9a, +0x6b,0x2e,0xd4,0x67,0x5b,0xa4,0x99,0x25,0x99,0x6a,0xac,0xdc, +0xab,0xb1,0x42,0xbb,0x48,0x9f,0x7f,0xde,0x3d,0x3c,0xd8,0x73, +0x87,0x8b,0xb5,0x3c,0x63,0x66,0xf2,0xc9,0xc7,0x69,0xdd,0x7f, +0x7d,0x9c,0x60,0x4c,0xef,0x30,0x78,0xc3,0x72,0x6f,0x90,0xd7, +0x85,0x89,0x4a,0xcd,0xed,0xf5,0xbd,0xb5,0x17,0xb9,0x5b,0x58, +0x46,0x44,0xf5,0xc1,0x87,0xf4,0x1b,0x91,0x45,0x6f,0xec,0x26, +0x70,0x92,0x82,0xa2,0x93,0x92,0x5a,0x83,0x16,0x72,0x11,0x98, +0x4a,0xf8,0x32,0x89,0x8a,0x6d,0x0b,0xc6,0xb2,0xc9,0xf5,0x09, +0xf5,0xb1,0x75,0xea,0x52,0x29,0xc7,0xd9,0xd4,0x30,0x28,0xe3, +0x94,0x26,0x0b,0x7e,0xf0,0x4e,0xc7,0xfb,0xaa,0x0f,0x1c,0x58, +0x33,0x3e,0x18,0x84,0x0c,0x1e,0xc1,0x56,0xd4,0xad,0xd5,0xa1, +0xa4,0xea,0xd5,0x6f,0xbf,0xdf,0xa6,0xa4,0x6b,0xde,0x43,0x94, +0xfb,0x69,0x75,0x43,0x1f,0xff,0xcd,0x8f,0xeb,0x61,0xa2,0xc1, +0x47,0x0e,0x07,0xb6,0x10,0xc3,0x40,0xfa,0x2f,0x88,0x83,0x73, +0xf0,0x45,0x2f,0x65,0x7a,0x11,0x30,0xa7,0x0f,0x3f,0xea,0xc0, +0x02,0x8c,0xc0,0xaf,0x75,0xe1,0x6b,0x6c,0x66,0x4d,0x42,0x8c, +0x43,0x8c,0xc2,0x52,0xb5,0x28,0xd4,0x2c,0x83,0x89,0xb5,0xc0, +0x51,0x9d,0x42,0x81,0x75,0x0c,0x39,0x7e,0x26,0xa1,0xe6,0xec, +0x79,0xa9,0x32,0xe2,0x77,0x03,0xb8,0x3a,0x8d,0x01,0x2b,0x58, +0x34,0x80,0x19,0x6c,0x72,0x75,0x62,0x6d,0x5c,0xad,0x6e,0x0a, +0x7f,0x10,0xe5,0x9c,0x97,0xe8,0x6e,0x6d,0x76,0xe4,0x8b,0x6a, +0x0b,0x9a,0xb2,0xdb,0xb9,0xbb,0x68,0xce,0x1c,0x42,0x2d,0x2d, +0xd0,0x60,0x8f,0xe0,0x4a,0xcb,0xd1,0x62,0xac,0xb3,0x1a,0xcc, +0xf9,0xf7,0xbf,0x77,0xbc,0x29,0xfa,0xfd,0x54,0x4c,0x4c,0xf4, +0xe9,0xe3,0x30,0x1b,0x6d,0xf8,0xb6,0x3a,0x54,0x02,0xcb,0x88, +0xe4,0xb0,0x53,0xd2,0xaa,0x5d,0x16,0xda,0x49,0x81,0xb4,0xff, +0x81,0x9f,0xf1,0x3f,0xb0,0x59,0x50,0xe8,0x17,0x8d,0x47,0x03, +0x69,0xe7,0x0d,0xb0,0x8b,0x29,0xde,0xc3,0x2e,0x38,0x08,0x5d, +0x14,0x8a,0xee,0x95,0xdd,0x26,0x9a,0x8b,0xb1,0xe4,0x1d,0x3d, +0x1c,0xd3,0x87,0x63,0x73,0x06,0xff,0x84,0x12,0xe9,0x90,0xd4, +0x8d,0x49,0x0c,0xed,0x94,0xe9,0x14,0x43,0x8b,0xca,0x3a,0x82, +0x32,0xce,0xc0,0x1e,0x91,0x19,0x6e,0x13,0xfa,0x4c,0x86,0x05, +0x46,0x72,0x70,0x17,0xd6,0xf7,0x89,0xeb,0x61,0x32,0x8b,0xbd, +0xe2,0x75,0x02,0xd6,0x42,0x9f,0x94,0xcf,0x57,0xd8,0x20,0xac, +0x27,0xf0,0x1c,0x97,0xb2,0x29,0x85,0x52,0x9e,0x66,0x29,0x05, +0x8c,0x7b,0xb8,0x8b,0x94,0x26,0x6d,0xbc,0xe8,0xcc,0x04,0x9e, +0x0c,0x3c,0x11,0x70,0x32,0x45,0x87,0x7f,0x9d,0xf6,0x53,0xda, +0x0f,0x39,0x3b,0xd7,0x7c,0xb3,0x1d,0x27,0xab,0x57,0x98,0xf0, +0x94,0xe0,0xfd,0xfe,0xf4,0xd1,0x2f,0x1c,0x9e,0xc5,0x25,0x6c, +0x3a,0x85,0xd3,0x53,0xa4,0x2c,0x5d,0x54,0xb8,0xaf,0xb1,0xe9, +0x79,0xa9,0x79,0x29,0xf9,0x94,0x20,0xbe,0x22,0x32,0x6d,0x61, +0x5a,0xaf,0xa8,0xf5,0xef,0xb1,0x03,0x17,0x05,0xc5,0x5e,0x16, +0xaf,0x9f,0x27,0xad,0x57,0x5a,0x9f,0x36,0xbc,0xad,0x55,0xad, +0xda,0x5f,0xaa,0xd1,0xd0,0xc8,0x3b,0x5d,0xb3,0xb9,0x63,0x75, +0xa3,0xf2,0x45,0xc9,0xcf,0x39,0xbf,0xea,0x66,0xf1,0x41,0xeb, +0xfc,0x36,0x7a,0xed,0xb0,0xb9,0x64,0x33,0x68,0xd7,0x62,0x6d, +0xc5,0x37,0xea,0xb5,0xaa,0x34,0xed,0xb4,0x9c,0x67,0xb4,0xd2, +0x68,0x2f,0x87,0x07,0x05,0x2f,0x82,0x6e,0x6f,0xc0,0x8d,0x41, +0x37,0x8c,0x20,0xf4,0x64,0x19,0x8b,0x6e,0x26,0x04,0xdc,0x36, +0x30,0xd1,0xd1,0xdf,0x47,0x2b,0xa8,0x84,0xa8,0x84,0xed,0x38, +0x42,0x25,0xe4,0x73,0xb8,0x46,0x70,0xd2,0xc9,0x0d,0x91,0x7a, +0x8a,0xba,0xa3,0xc5,0xdf,0xd4,0xa5,0x05,0xe3,0x01,0xe6,0x76, +0xbe,0x54,0xfc,0x2d,0xe1,0xc6,0x99,0xf7,0xb0,0x5c,0x01,0x67, +0x7c,0x84,0x69,0xad,0x38,0xed,0x35,0x4c,0x6b,0xc3,0x69,0xaf, +0x24,0x33,0xff,0xb7,0x18,0xc4,0x08,0x4e,0x98,0x4b,0x64,0x9a, +0xc2,0xa2,0x3e,0xd1,0x7e,0xb4,0xe1,0xab,0xfb,0xd8,0x11,0x4b, +0x99,0x01,0xf9,0x16,0x99,0x57,0xac,0x10,0x31,0xb2,0x94,0x74, +0x5c,0xed,0x78,0xda,0xf4,0x4b,0xbd,0x6a,0xcd,0xbe,0x72,0xf5, +0xc6,0x46,0xde,0xe1,0x9a,0xd5,0x1d,0xf3,0x9b,0xd5,0xcf,0x4a, +0x7f,0xce,0x7d,0xaf,0x97,0xc9,0x1f,0x5a,0xe7,0xbb,0xd1,0x73, +0x87,0xe5,0x25,0xcb,0x41,0xeb,0x56,0xfa,0x0e,0x2d,0x7a,0xed, +0x7b,0x5a,0x76,0x9a,0xcf,0xd3,0x5f,0xa5,0x4f,0xdf,0xe1,0x85, +0xe0,0x4d,0x96,0x23,0xf3,0x9a,0x05,0x06,0xe7,0x92,0x05,0xc8, +0x7c,0x64,0x21,0x1c,0xef,0x92,0xc8,0xc6,0xe0,0xb6,0xe0,0x7a, +0x87,0x70,0x3e,0xd5,0x32,0xc5,0x3c,0xde,0x8c,0xc3,0x48,0x5c, +0x43,0x72,0x1f,0xa6,0xff,0x7e,0x16,0x3e,0x33,0x8b,0xe7,0x8f, +0x2d,0x08,0x9a,0x77,0x60,0x1b,0x07,0xea,0x50,0x48,0x52,0x74, +0x93,0xf7,0xc7,0x6d,0xbb,0x90,0xc4,0x1f,0xbb,0x14,0xfc,0x20, +0xa4,0x93,0xc3,0xb1,0xa1,0x52,0xbd,0xb8,0x65,0xa7,0xd6,0x35, +0x4b,0xf5,0xe2,0x22,0xdf,0x1f,0xb9,0x41,0x4d,0x62,0xa7,0xa0, +0x4b,0x40,0xa1,0x17,0x45,0xd0,0x63,0x60,0x7a,0x3a,0x4c,0x2a, +0xfe,0xa9,0xc6,0xb5,0x83,0x5f,0xe9,0x88,0xf2,0x6e,0xa8,0x1c, +0xcc,0x8d,0xd8,0xab,0xe9,0x08,0x47,0xfa,0x70,0x0e,0x8b,0x1f, +0x64,0x6e,0x14,0x49,0xf1,0x62,0x10,0xdc,0x65,0xf1,0xcb,0x13, +0x1b,0x8e,0xe9,0x2b,0xea,0x1c,0x0d,0x0e,0x33,0x9c,0xb5,0x4f, +0x4a,0xce,0x73,0x89,0xb9,0x53,0x38,0xda,0x6b,0x37,0x63,0xde, +0xc2,0x0a,0x05,0x8a,0x3c,0x61,0x4e,0x1b,0xce,0x79,0x0d,0x73, +0x5a,0xe9,0x91,0xc1,0x7d,0xcb,0xc9,0x6b,0x98,0xba,0x9c,0xc5, +0xa9,0xf4,0x85,0xfe,0x7b,0xb6,0x84,0xfc,0x0a,0x53,0x95,0x59, +0xe1,0xc8,0x03,0x22,0x6e,0xc0,0x0d,0xc2,0x06,0x16,0xcd,0xb0, +0x87,0x1c,0x6d,0x0c,0x6a,0x0f,0xae,0xb7,0x0b,0xe3,0xd3,0xe8, +0x5b,0x26,0xd0,0xb7,0x1c,0x07,0x3c,0x49,0xd1,0x4b,0xd9,0x17, +0xb7,0xad,0x29,0x89,0x8f,0xbc,0x14,0xf4,0x20,0xb8,0x8b,0xa3, +0xe6,0xa8,0x93,0xe4,0x3f,0xc8,0xf8,0x23,0x0e,0xc6,0x98,0xc4, +0xf1,0x91,0xca,0x87,0xe6,0xfa,0x6f,0xff,0x7f,0x58,0x7b,0xef, +0xb0,0x2c,0xae,0xaf,0x6d,0x34,0x26,0x32,0x33,0x26,0x91,0x44, +0xcd,0x36,0x23,0x26,0x60,0xef,0xb1,0x62,0x45,0xb1,0x60,0x43, +0x7a,0xef,0xbd,0x23,0xd2,0x44,0x94,0x26,0xa0,0x52,0x24,0x2a, +0xbd,0xf7,0x2e,0xbd,0x37,0xe9,0xbd,0xd8,0x7b,0x89,0x26,0x46, +0x13,0x63,0x6c,0x49,0x4c,0x59,0xf3,0xb8,0x86,0xbc,0xdf,0x1e, +0xfc,0xbd,0xe7,0x7b,0xcf,0x75,0xbe,0xeb,0x3a,0xe7,0x8f,0x23, +0x5e,0xc3,0x38,0xc2,0x33,0x33,0x6b,0xef,0xbd,0xd6,0x7d,0xef, +0xbd,0xf6,0xbd,0x38,0x90,0x87,0x3c,0x92,0xb4,0x33,0x6e,0xe5, +0xd9,0x0d,0x1d,0x49,0xfc,0xe9,0xef,0x4e,0xbe,0x0e,0x93,0x5e, +0x93,0xa3,0xbe,0x30,0xb5,0x21,0xb9,0x31,0xa1,0x41,0x37,0x95, +0xf7,0xc3,0x99,0xe6,0xf8,0x85,0xfa,0x12,0xae,0x0c,0x17,0x3c, +0x87,0x05,0x1d,0xd2,0x71,0x55,0x97,0xa8,0x48,0xdf,0xec,0x3b, +0xfa,0x66,0xa7,0xb7,0x9c,0x32,0x54,0xd4,0x3d,0x15,0x44,0xdf, +0x6c,0x9f,0xf4,0x66,0x97,0x99,0xbb,0xc5,0x25,0x0f,0xa5,0xfe, +0x10,0xfb,0x02,0xd6,0x28,0x50,0x80,0x00,0x0b,0xb2,0x99,0x26, +0xd3,0xf4,0x3c,0xa9,0x03,0xcf,0x12,0x37,0x0c,0xdc,0x05,0x35, +0xe1,0x03,0xf4,0x66,0x73,0x1b,0x73,0x9a,0x33,0x5b,0x39,0x48, +0x50,0x66,0x50,0x21,0x02,0x0d,0x83,0x71,0xaa,0xe2,0xb6,0xf0, +0x00,0x27,0xad,0xd9,0xf8,0x01,0x93,0x25,0xc9,0xc4,0xbf,0x2e, +0xe9,0x83,0x29,0x19,0x92,0xe2,0x7c,0x22,0x58,0x01,0xaf,0x00, +0x73,0xd9,0xf1,0x4a,0x13,0x6a,0x0f,0x42,0xed,0x41,0x26,0x2c, +0xf3,0xfe,0x4c,0xb2,0x0c,0xa1,0x96,0xb1,0xfa,0x8d,0xe0,0x39, +0xfc,0x04,0xce,0xb1,0x34,0x66,0xde,0x9b,0xb0,0x4c,0x50,0xa3, +0x43,0x18,0xb5,0x4c,0xba,0x85,0xd4,0xfe,0x99,0xb8,0x46,0x32, +0xc2,0x9f,0xd4,0x08,0xa6,0xb4,0xfd,0x17,0x05,0xcc,0x3f,0x4c, +0x8d,0x60,0x4d,0xc1,0x60,0x9a,0x7e,0x9a,0x7a,0xa2,0x64,0xaf, +0x93,0xb4,0xfd,0x83,0x69,0xfb,0x7f,0x7a,0x9c,0x24,0xed,0x8a, +0xfb,0xe6,0xec,0xc6,0xff,0x18,0x46,0x6a,0x7f,0xd8,0x24,0x6b, +0x23,0x62,0xbc,0x6c,0x9d,0x10,0xcf,0x6a,0xd1,0x78,0x29,0xb6, +0xbc,0x12,0x5a,0x18,0x3c,0x33,0x59,0x6c,0x79,0x43,0x4f,0xc4, +0x16,0x7a,0x4d,0x68,0x59,0x24,0xd2,0x6b,0x3b,0x70,0x09,0x31, +0x78,0x37,0xad,0x9f,0x1d,0xff,0x07,0xcb,0x68,0x9f,0x69,0xf8, +0xbb,0xef,0xee,0x80,0x4d,0x03,0xaf,0x6a,0xbc,0x84,0x5a,0xd3, +0x99,0x13,0x9a,0x7f,0x21,0xbf,0x3b,0xc3,0x14,0xa3,0x37,0x46, +0xf5,0x5d,0xfc,0xb2,0x0e,0x9c,0xda,0x3f,0xbf,0x86,0x0e,0x32, +0x07,0x61,0x1b,0x59,0xce,0xae,0x8f,0x5c,0x13,0xb5,0x35,0x26, +0xce,0x94,0x87,0x4d,0x71,0xe0,0x96,0x0e,0x24,0x2b,0x3d,0x28, +0x3d,0x30,0x35,0x88,0xf3,0x63,0xb2,0x2c,0xe4,0xde,0x32,0x75, +0x39,0x19,0x75,0x4a,0xe0,0x26,0x7e,0x35,0x0c,0x37,0xa1,0x78, +0x5c,0x15,0x8b,0x61,0x50,0x47,0xfc,0x14,0x4b,0x46,0xc0,0x9f, +0x85,0xab,0xb4,0x51,0xf1,0xf4,0x65,0x38,0xcd,0x0c,0xaa,0x93, +0xcb,0x90,0xaa,0xce,0x8a,0x43,0xd6,0x34,0x2e,0xec,0xc5,0xd3, +0x0c,0xf4,0x5f,0x23,0x90,0xba,0x97,0xf2,0x48,0xf8,0x81,0x5a, +0x68,0x1d,0x53,0x51,0xe1,0xd2,0x6a,0xda,0x65,0x5d,0x3b,0xcb, +0xdd,0x23,0xe3,0x78,0x56,0x48,0x66,0xd0,0x2c,0xeb,0x48,0xa3, +0x28,0xdd,0x28,0xee,0x17,0xf8,0x81,0x45,0x3f,0x6c,0x96,0x94, +0x10,0x1b,0xf4,0xab,0x9c,0x6d,0xf9,0x5e,0xb7,0x21,0xdb,0x4e, +0x5b,0x0e,0x35,0x97,0xfe,0x7f,0x50,0x42,0x54,0x79,0xaf,0x84, +0xa8,0x26,0x29,0x21,0xde,0xd5,0xbb,0xa4,0x33,0x24,0x29,0x21, +0x46,0xfc,0x0f,0x25,0x44,0x2d,0xcb,0x5d,0x92,0x12,0xa2,0xb0, +0x45,0xa6,0x48,0x74,0x69,0x7b,0x9d,0x38,0x67,0x0d,0x76,0x49, +0x72,0x47,0x59,0xd3,0xdc,0x63,0x57,0x15,0xe1,0x6f,0xa6,0x31, +0x35,0xb3,0x52,0xa9,0x8e,0x35,0x49,0x91,0x33,0xc6,0xdf,0x59, +0xaf,0x93,0x09,0x45,0x4a,0x19,0x2c,0xb4,0xa4,0x46,0xb7,0x62, +0x63,0xa8,0xdc,0x80,0xa0,0xc8,0x06,0xfb,0x1f,0x0b,0xf4,0x3a, +0x5a,0xef,0xca,0x57,0x97,0x54,0xd4,0x67,0x57,0x72,0x2d,0xe2, +0xaa,0x4e,0x78,0xd6,0x89,0xcf,0x3a,0x74,0x70,0x29,0xfe,0x86, +0x0e,0x2c,0x9e,0xf5,0xc7,0x35,0x3a,0xf8,0x81,0xe2,0x05,0x0b, +0xb9,0xab,0xf0,0x59,0x31,0x6c,0x87,0x3c,0xa9,0x70,0x01,0xf8, +0x21,0x0d,0x00,0x8b,0x84,0x43,0xb0,0x88,0x1d,0x57,0xc3,0x97, +0x44,0x96,0xd0,0xbe,0xfc,0x77,0xb1,0x02,0x34,0xf5,0x30,0x50, +0x28,0x33,0x14,0xff,0x61,0xa0,0x08,0x8c,0xc8,0x20,0xc8,0xf4, +0xd8,0x71,0x56,0x12,0xbc,0x9c,0x5c,0xf8,0xb2,0xea,0x56,0xed, +0xc1,0x06,0x7e,0x97,0xf3,0xf2,0x83,0xf3,0x8f,0x72,0x42,0x70, +0x0b,0xf9,0xd9,0xef,0xb7,0x43,0x3f,0x3a,0x9e,0x6f,0xe1,0xd7, +0xd6,0x2e,0xac,0x5c,0x9f,0x4b,0x87,0x8e,0x92,0xac,0x9a,0x94, +0x2c,0x82,0x0f,0xd7,0xc3,0x0a,0xd5,0xd2,0x5e,0x1e,0x55,0x1e, +0xad,0xfd,0xfe,0xd0,0x13,0x6e,0x1f,0xe3,0xbd,0x6e,0xdd,0x26, +0x5c,0xb7,0xad,0xd4,0x88,0xc2,0xc5,0xcb,0xc0,0xbc,0x2c,0x7a, +0xc3,0x89,0x23,0x21,0x64,0x3c,0x7a,0xf0,0x6f,0xd0,0x95,0x29, +0xb2,0xa8,0x6b,0x48,0xe0,0x4b,0xb1,0x06,0xbf,0x64,0x64,0x31, +0x55,0xc4,0xc5,0xd6,0xd4,0x5e,0xcf,0xc5,0xb9,0xd6,0xbb,0x29, +0x80,0x0e,0x11,0x1b,0xf8,0x19,0x0d,0x9f,0xeb,0xae,0x44,0x23, +0xf1,0x32,0xe3,0x1a,0xe1,0x1c,0xe5,0x12,0x2d,0x55,0x28,0xfb, +0x3c,0x0d,0xa6,0x16,0x3d,0xaf,0x3e,0xd5,0xc5,0x9b,0x04,0xe8, +0x06,0x69,0x1d,0xe7,0xc0,0x17,0xa6,0xb2,0x9d,0xd2,0x52,0x04, +0x4e,0x02,0x15,0xed,0x92,0x4e,0x7e,0x7f,0xa1,0x41,0x99,0x55, +0x4d,0x77,0x79,0x4f,0x5b,0x53,0x33,0x87,0x33,0x20,0x9c,0xe0, +0x83,0x5f,0xe0,0x01,0x83,0x73,0x26,0x2f,0xc1,0x07,0x6f,0x28, +0x96,0xfa,0x57,0xb6,0x8d,0x9c,0xc0,0xe5,0x5b,0x36,0xa2,0x85, +0x5d,0xa1,0x94,0xf7,0xdd,0xfa,0xf7,0x1f,0x89,0x40,0xd9,0xe9, +0x72,0xf4,0x60,0x74,0x8b,0x8e,0x5d,0x56,0x84,0xed,0xd2,0x5c, +0x57,0x95,0xd2,0x2d,0xa9,0xcc,0xef,0x26,0x5c,0xc3,0x3a,0x9c, +0x4a,0xad,0x50,0x02,0x13,0x38,0x8e,0x93,0x46,0x61,0x8b,0xb8, +0xec,0xa5,0xc6,0x72,0x51,0x01,0x2d,0x47,0x61,0x3e,0x2b,0x7c, +0x2d,0xea,0x13,0xe1,0xa3,0x81,0xf1,0x42,0x7d,0x78,0x8b,0x5e, +0x34,0x6a,0xbe,0xfb,0x74,0x50,0xdc,0xc8,0xc8,0x43,0x28,0x45, +0xa6,0x76,0x68,0xa4,0x81,0xf3,0x17,0xbf,0xdf,0x4a,0x5d,0x56, +0xd6,0x50,0x2a,0x21,0xd3,0x21,0xd9,0x57,0x6c,0xc5,0xed,0xd2, +0x1f,0x73,0x7e,0xe5,0x40,0x26,0x7e,0x45,0x20,0x41,0xf8,0x48, +0x1c,0x14,0x3f,0x82,0xb3,0xca,0x58,0x26,0xaa,0x0c,0x0b,0x0c, +0x1c,0xc2,0x35,0x8c,0x4e,0x84,0x6e,0xa4,0x69,0x74,0x92,0x01, +0xff,0x3a,0x1e,0x66,0xa5,0xc3,0xa4,0xbc,0xc4,0x23,0x09,0x47, +0xe2,0xfd,0x5b,0xb3,0xf8,0x63,0x17,0xbd,0x6e,0xf9,0xf4,0xd8, +0x06,0xf3,0x29,0x47,0x52,0xbc,0x53,0xbc,0xe6,0x05,0xf3,0xb0, +0x1c,0x7c,0xb1,0x17,0x95,0x27,0xe4,0x59,0xe6,0x30,0x6d,0xd9, +0xb9,0x2d,0x4a,0xf0,0x1b,0x56,0xb1,0x7a,0xd0,0x49,0xd0,0xe0, +0x2f,0xea,0xbe,0x07,0xe7,0x51,0xbe,0x62,0x3a,0x8f,0x15,0xf5, +0x4c,0x09,0x18,0xe0,0x07,0x48,0x3d,0xfa,0x59,0xf8,0x80,0x80, +0x29,0x3d,0x37,0x65,0xa4,0xfd,0xf3,0xf7,0x89,0xd6,0x26,0x71, +0x36,0x6a,0x8d,0xc0,0x4c,0x99,0x3f,0xce,0x1c,0x01,0x2d,0x91, +0xd2,0x99,0x3a,0x29,0x91,0xb1,0x5b,0x44,0xec,0x86,0x82,0xbd, +0xf8,0x2f,0xfe,0x32,0x02,0xf5,0xd0,0x8b,0x33,0x59,0x95,0xc8, +0x4d,0x51,0x5b,0xa3,0xa5,0x35,0xa2,0x15,0x49,0xa0,0x9a,0x08, +0x2b,0xf2,0xd2,0xfd,0x53,0xfd,0x93,0x03,0xda,0x4b,0xf9,0x43, +0x1d,0xe6,0x77,0x1d,0x9a,0x6c,0x7d,0xf8,0x8c,0xc0,0xcc,0x23, +0x99,0x47,0xac,0x22,0x4c,0xa3,0x8c,0xa3,0x38,0x98,0x0e,0xd7, +0xf1,0x30,0x0d,0x16,0x52,0x7a,0xf2,0xc7,0x4c,0x57,0x76,0x4e, +0x87,0x12,0xa4,0x89,0xf2,0xd7,0xe8,0x63,0xc6,0x12,0x55,0x74, +0xbe,0xc7,0x42,0x9e,0x2a,0xb9,0x07,0x47,0x55,0x59,0xf1,0xa4, +0x15,0x01,0x67,0x15,0x74,0x66,0x20,0x6f,0xe6,0x77,0x70,0x54, +0x85,0xb6,0x5c,0xb9,0xf0,0x17,0xb1,0xbc,0xa7,0xf3,0xc0,0x68, +0xc0,0xdc,0x85,0xef,0x33,0x18,0x50,0x69,0xdb,0xce,0x09,0x53, +0xd1,0x96,0xb2,0x18,0x56,0x2b,0x52,0x2b,0xda,0x34,0x26,0xd1, +0x88,0xff,0x27,0x01,0x16,0xa7,0xfe,0x9c,0x96,0xe4,0x97,0x78, +0x24,0xee,0x68,0x53,0x06,0x1f,0x34,0x70,0xf0,0xae,0x5f,0x33, +0x35,0x56,0x52,0x60,0xb2,0x7f,0xca,0xe1,0x43,0x91,0x6e,0x51, +0xce,0xf4,0x51,0x58,0xf0,0xc4,0xd3,0x38,0x9f,0x4d,0x31,0x97, +0x36,0x19,0xbe,0xcf,0xf2,0x6f,0xc2,0xb2,0x4b,0x70,0x0a,0x6e, +0x8a,0x65,0x78,0x13,0xc2,0x0f,0x50,0xe6,0xfc,0xcf,0x10,0xf4, +0xb1,0xe0,0x06,0x7d,0x04,0xf7,0x3e,0x86,0xbd,0x4c,0xff,0x06, +0xf2,0x18,0xf6,0x6f,0x60,0xc5,0xb5,0xf4,0xe9,0xf6,0xae,0x91, +0xb2,0xd7,0x8e,0xff,0x4c,0x60,0xff,0x1a,0x49,0x20,0xc6,0x4d, +0xa4,0x1c,0x9b,0x5f,0x3b,0x00,0x9c,0xa4,0x8b,0xac,0xae,0x0b, +0x1f,0xa3,0x1f,0xfb,0x8d,0xa7,0xc9,0x72,0x49,0x17,0xf9,0x71, +0x53,0x73,0xdf,0xd9,0x5b,0x12,0x09,0x4e,0x7c,0xb4,0x1b,0xd6, +0xcf,0x16,0xce,0x4e,0x90,0xe0,0x7b,0xb2,0x16,0xf2,0xef,0xa4, +0x11,0xd9,0x18,0x28,0xb0,0x21,0xfb,0x6d,0xe6,0x5b,0xaf,0xe7, +0x46,0xf6,0x34,0x6e,0x53,0x57,0xd0,0x0d,0xf1,0x32,0x51,0x74, +0x62,0x92,0x0f,0xc8,0x5d,0x60,0xae,0xd4,0x5f,0x78,0xf5,0xd8, +0xe1,0x3b,0xa3,0x51,0xa5,0xba,0x1b,0x2d,0xf0,0x41,0xce,0x23, +0xae,0x8d,0x85,0x5f,0xc4,0x8f,0x08,0x1c,0xa1,0x3d,0xe7,0x34, +0xed,0x39,0x5e,0xeb,0x31,0x4a,0xdc,0x3a,0x28,0xb0,0xa0,0x85, +0x6b,0x19,0xd3,0x08,0xd3,0x48,0x9b,0xe8,0x44,0x03,0xfe,0xc7, +0x04,0xe0,0xd2,0x5f,0xe6,0xc6,0xd3,0x6e,0x13,0xe7,0xdf,0x92, +0xc9,0x07,0x5e,0x3c,0x7c,0xcb,0xaf,0xd7,0xee,0x38,0x9f,0xec, +0x97,0xec,0x95,0xe4,0xe9,0x1d,0xe9,0x11,0xe9,0x41,0x6d,0xb1, +0x9c,0xf6,0x87,0x01,0x5c,0x30,0x81,0xc0,0xe4,0xa5,0xce,0xd3, +0xaa,0x04,0xbf,0xe3,0xb7,0xac,0x3e,0x74,0x10,0xdc,0xf0,0x0f, +0x6c,0x60,0x06,0xe6,0x90,0x7f,0x60,0xeb,0x1c,0x56,0xfc,0xd2, +0x9c,0xc0,0x06,0xfc,0x10,0x37,0x30,0xe0,0x05,0x1f,0x12,0x4a, +0x28,0x3f,0xc4,0xad,0x52,0xe7,0x11,0x0e,0x11,0x78,0x07,0x59, +0xf8,0xee,0x95,0xd6,0x32,0x7c,0x81,0x59,0xf0,0x62,0x9e,0xf8, +0x31,0x3e,0x1a,0x1d,0x84,0x4b,0xb8,0x7d,0x94,0xba,0xa1,0x87, +0x7a,0xa3,0xf0,0x48,0x54,0x60,0xf0,0x05,0x5c,0x26,0x50,0x89, +0x2b,0xb0,0x92,0x91,0x4d,0x9f,0x89,0x1d,0xb0,0x02,0x3a,0x98, +0xf1,0xb5,0xa2,0x1c,0xa1,0x3f,0xba,0x0e,0x2f,0x31,0xc2,0xc7, +0x33,0x61,0x1d,0x3c,0x44,0x29,0x39,0xdd,0x53,0x66,0x43,0x72, +0x5d,0x73,0x6c,0xd3,0x9d,0xda,0xf3,0xf8,0xd0,0xb2,0xa0,0xaa, +0xe0,0x72,0xca,0x3a,0x3b,0x51,0x9d,0x49,0xce,0x4f,0x28,0x88, +0xcf,0x37,0x4e,0xe6,0x03,0x76,0x3a,0xec,0xd4,0x33,0xae,0x77, +0xe2,0x2b,0xca,0xcf,0xd7,0x17,0x34,0x71,0x70,0xa5,0x93,0x24, +0x15,0x24,0x14,0xc4,0xe5,0x1b,0x27,0xf1,0x01,0x6a,0x2e,0xaa, +0xfa,0x86,0x0d,0xce,0x94,0x17,0x96,0x36,0xe6,0x37,0x71,0x1d, +0x4c,0xbe,0x6b,0x81,0x55,0x86,0x43,0x47,0x2e,0x1f,0x5c,0x15, +0x50,0x13,0x40,0x3f,0x6d,0x4a,0x27,0x33,0xae,0x85,0xbd,0xe4, +0x64,0x66,0x44,0x4c,0xe8,0x89,0xe3,0x61,0x7c,0x24,0x28,0xbc, +0xee,0x59,0xfa,0x7e,0xf5,0x7c,0xaa,0x31,0x30,0xef,0x57,0xcf, +0x17,0xa9,0xa0,0x7c,0xbd,0x39,0x3f,0xfa,0x7b,0xe1,0x5b,0xa9, +0x24,0x8b,0x98,0xf1,0x3e,0xc3,0x40,0x5a,0x3d,0xbf,0x88,0xab, +0x6b,0xea,0xe5,0xc0,0x1c,0x17,0x93,0x74,0xdf,0x0c,0x8f,0x74, +0x77,0xcb,0x60,0x13,0x4a,0x05,0x38,0xd0,0x9e,0xa8,0x19,0x9d, +0x2b,0x96,0xb1,0x52,0x3a,0xac,0x6f,0x24,0x25,0x07,0xcf,0xf3, +0x60,0x52,0xc9,0x8f,0x65,0xa9,0x5e,0xc9,0x5e,0x89,0xbe,0x3d, +0xf9,0xbc,0xf7,0x2d,0x87,0x9f,0x0f,0x0e,0x71,0xb0,0x0d,0x0b, +0x88,0xf0,0x3d,0xcc,0x15,0x17,0xae,0x65,0x53,0x8c,0xe4,0xee, +0x33,0x8d,0x19,0xd9,0xcd,0x4a,0x82,0x3e,0xc6,0x8f,0x4f,0x67, +0x71,0x92,0x10,0x41,0x50,0xf9,0x39,0x50,0xe4,0xa0,0x2c,0x95, +0x71,0x56,0x5e,0x8c,0xca,0xd4,0xea,0x21,0x42,0x35,0xc1,0xa2, +0x20,0x54,0xdd,0x84,0x8b,0x14,0xbb,0x9d,0xe5,0x1e,0xc3,0x92, +0x7c,0xd8,0x05,0xa9,0x0a,0xf0,0xab,0x0e,0x2b,0x7c,0xf8,0xef, +0x3c,0x32,0xf6,0x6e,0x9e,0x26,0x23,0x3e,0x73,0x20,0x69,0xca, +0x43,0x7b,0x5e,0x6c,0x2f,0xef,0xe1,0xd7,0x5d,0x37,0xfc,0xef, +0x69,0x06,0xb3,0xad,0xf8,0x81,0x34,0xcd,0xf0,0xd7,0xad,0xd1, +0xc7,0xd2,0x34,0xc3,0xa1,0xf1,0xab,0x44,0xf6,0x48,0x67,0xfc, +0x11,0x8b,0xe9,0x30,0x85,0x38,0x86,0xdb,0x87,0xdb,0x9c,0xe0, +0xa0,0x13,0x96,0xf6,0xe3,0x52,0xf8,0xe4,0x8f,0x3e,0x4c,0x36, +0x7c,0x45,0xc9,0xc8,0x26,0x03,0xd8,0x84,0x23,0xac,0x5e,0x98, +0xee,0x49,0xbd,0x89,0xf9,0x80,0xcf,0xb2,0x40,0xa1,0xe4,0x97, +0x62,0xce,0xf6,0xb5,0x94,0xdc,0x3a,0x94,0xf2,0xdf,0x33,0x00, +0x81,0x66,0x1c,0x7e,0xfb,0x7e,0x06,0x40,0x25,0x4d,0x77,0x62, +0x06,0xc0,0x7b,0x62,0x06,0x00,0xe6,0x0a,0x7f,0x10,0x7c,0xe9, +0x83,0xab,0xb6,0xe3,0xa7,0x8a,0x3d,0x86,0x72,0x4f,0x60,0x49, +0x21,0x6c,0x81,0x7f,0x14,0x64,0xb6,0x60,0x3f,0x9e,0xc3,0x8c, +0x52,0x64,0xf1,0x52,0x36,0x6f,0x39,0x8b,0x43,0x2a,0x04,0x77, +0x61,0x96,0xe8,0x3b,0x0c,0x3b,0x04,0x5f,0xda,0xdd,0xd4,0xd9, +0x54,0x53,0x39,0x50,0x61,0x5a,0xb2,0x33,0xa9,0x81,0x56,0x60, +0x89,0xb4,0x9c,0xe8,0x7e,0x82,0xf8,0xd8,0xdb,0x59,0xd9,0xba, +0x75,0x7b,0xf2,0x2d,0xd5,0x0d,0xad,0xa5,0xad,0x9c,0xa8,0xb6, +0x82,0x1c,0xae,0xb2,0xb9,0xe0,0x50,0x65,0xe1,0xc5,0x37,0xba, +0x36,0x5b,0x15,0xba,0x71,0x26,0xb8,0x90,0xdc,0x15,0x7c,0xb7, +0xb3,0xa2,0xaf,0x19,0x11,0x7c,0xb7,0x89,0xbe,0xd4,0x51,0x2b, +0x08,0xbd,0x04,0x6b,0x8f,0xe1,0x06,0x55,0xe4,0x14,0xbb,0x75, +0xe5,0x1e,0xc1,0x17,0xc5,0xa0,0x0c,0x0f,0x15,0x64,0x96,0x10, +0x37,0x9e,0xc5,0x5c,0x44,0x63,0x02,0x5f,0xc9,0xbe,0xc2,0xaf, +0x58,0x3c,0x21,0xde,0x21,0xe0,0x09,0xc5,0xe0,0x43,0xa1,0x00, +0xba,0x80,0x83,0x06,0x3a,0xa0,0x31,0x6c,0xd6,0x42,0x6f,0x48, +0x42,0x4f,0x3c,0x0c,0xca,0x5a,0x58,0x34,0x3a,0x20,0x64,0xeb, +0x8f,0x4a,0xab,0xd6,0x1b,0x59,0x49,0x7f,0x6f,0x01,0xf1,0x3a, +0x7e,0x28,0xec,0x10,0xed,0x11,0xc1,0xbf,0x0f,0x2c,0x7a,0x5f, +0x25,0x73,0x9a,0x3e,0x4c,0xc3,0x78,0xd6,0x2a,0xd8,0x32,0xc4, +0x26,0x2c,0x45,0x8f,0x6f,0x4c,0x69,0x4e,0x6b,0x4a,0x97,0xe4, +0xd1,0x58,0xa9,0x4a,0xe6,0xaf,0xcc,0x85,0x2c,0x49,0xaf,0xb8, +0x8f,0xad,0x4c,0xad,0x48,0xaf,0x48,0xe7,0xaa,0x05,0x7b,0x82, +0x47,0x59,0xcc,0x3e,0x85,0xaa,0xeb,0x71,0xaf,0x62,0x87,0xc3, +0x53,0xd8,0x93,0x09,0x9a,0x67,0xa0,0x5c,0xaa,0xdf,0x11,0xc1, +0x88,0xc7,0x26,0x0a,0xc0,0x0b,0x2a,0x38,0x9b,0x2d,0x13,0x5f, +0x10,0x5c,0x0d,0x61,0x70,0x00,0xc2,0x8c,0x50,0x13,0xbf,0x00, +0x2f,0x03,0xf4,0xa2,0x40,0x51,0xd3,0x10,0xc3,0x60,0x17,0x86, +0xe1,0x32,0x38,0x60,0x80,0x35,0x03,0x1d,0x30,0x6e,0xde,0x0f, +0x35,0x06,0xcc,0x7f,0x74,0x41,0x77,0x53,0xff,0xbf,0x68,0xf4, +0x17,0x88,0x64,0x02,0xb5,0xb4,0xdd,0x71,0xcb,0xd1,0x2c,0x8a, +0xc9,0xf4,0xf3,0xbe,0x1b,0xc8,0x79,0x4a,0x47,0xca,0x7a,0xc6, +0x3a,0x37,0xb8,0x4f,0x11,0x96,0x32,0xad,0x99,0x99,0x55,0x4a, +0xcd,0xac,0x51,0xba,0x9c,0x2e,0x2a,0xb2,0xde,0x11,0xb1,0xf9, +0x4a,0x37,0x21,0x71,0xc7,0x28,0x10,0x71,0x39,0x2b,0x4e,0xa7, +0xc0,0x07,0x77,0xb3,0x38,0xdb,0x17,0x67,0x6f,0x9a,0xab,0xd8, +0x69,0x2d,0xf7,0xf0,0x4d,0x03,0x28,0xc1,0x1e,0x05,0xd9,0x46, +0x38,0xc0,0x8c,0x6f,0xc4,0x2f,0xc9,0x77,0x82,0xa0,0xc2,0xa2, +0x8f,0xf8,0x09,0x05,0x8b,0x50,0x09,0x0b,0x75,0x56,0x51,0x13, +0x4e,0xd2,0xc4,0x49,0xe8,0xfc,0x4c,0x07,0x17,0x40,0x01,0xe5, +0xbc,0x27,0x7f,0xd1,0x46,0xc3,0x91,0x36,0xa1,0xd1,0x6a,0x04, +0x8c,0xb5,0xbf,0xa1,0x1c,0x7f,0x95,0x70,0x8d,0x3c,0xee,0x78, +0x72,0x7b,0xf0,0x8a,0x55,0x23,0x6f,0xa8,0xa1,0xbc,0x75,0x9d, +0x19,0x67,0xd0,0xeb,0x31,0x7a,0x47,0xa1,0xf2,0x00,0xf5,0x37, +0x2b,0x58,0x29,0x57,0xe5,0x4b,0xa6,0x33,0x37,0xbb,0x53,0x09, +0x4c,0x13,0xd8,0x12,0xfc,0x0a,0x96,0xed,0x02,0xd7,0x75,0xc5, +0x03,0x3c,0x4e,0x69,0x5b,0xd2,0xb6,0x8b,0x52,0x83,0x4c,0x50, +0x26,0xf8,0xdc,0x00,0x0a,0x18,0x87,0x65,0xcb,0xd6,0xe2,0xea, +0x7d,0x15,0xc6,0x3c,0xec,0x7b,0x08,0x0c,0x4c,0xa9,0x83,0x4f, +0x38,0xdc,0x33,0x7e,0x86,0xf4,0x0a,0xcd,0x46,0x63,0xc2,0xe6, +0x71,0x65,0x71,0x33,0x2b,0xfc,0x4d,0x01,0xa6,0xd8,0xfc,0x5a, +0x68,0x66,0xc4,0x66,0x5c,0x41,0x84,0xe6,0xf9,0x62,0x33,0xb5, +0xd8,0x4b,0x1a,0xe1,0xdd,0x51,0xdf,0x10,0x97,0x6e,0x78,0x5f, +0xa0,0xf8,0x7c,0x51,0x43,0x61,0x3b,0x27,0x96,0xf6,0xcb,0x96, +0xb1,0xc5,0x37,0xf3,0x1f,0xa5,0x3f,0xe5,0x30,0x54,0x7c,0x43, +0x20,0x02,0x17,0xfc,0xf8,0x3b,0x2c,0xbe,0xd3,0xb3,0xe3,0xbe, +0xfe,0x36,0x5c,0x40,0x0f,0x6a,0xc6,0x37,0x71,0xf1,0xeb,0xf5, +0xb8,0x00,0x23,0x60,0xc1,0x5a,0xdc,0x6d,0x08,0xbb,0x71,0xed, +0x10,0xac,0x85,0xfd,0x7d,0xb8,0xff,0x27,0x56,0xa8,0xc7,0x60, +0xe2,0x12,0x96,0xda,0x4c,0x3d,0x31,0x7b,0xf7,0xda,0xa5,0xfb, +0xbd,0x4f,0x1d,0x9a,0x79,0x1b,0x55,0x13,0x75,0x5d,0x3d,0x0e, +0xfe,0xd1,0x1a,0x2f,0x64,0x37,0x95,0xfa,0xdc,0x54,0xfc,0x99, +0x69,0xce,0x92,0x14,0x53,0x03,0x59,0xa3,0x02,0x39,0x4c,0x65, +0xc5,0x47,0x32,0x63,0xb2,0x02,0x17,0xbc,0x60,0x9b,0xb1,0x96, +0xa0,0xe2,0x1a,0xa9,0x78,0xd0,0xc2,0x89,0xe2,0x41,0xcf,0xa4, +0xe2,0x41,0xcf,0x84,0x72,0x12,0x14,0x14,0x13,0x34,0x3b,0xc1, +0xa2,0xe1,0x6c,0xfd,0xd9,0x86,0x73,0xb3,0x30,0xb3,0x0b,0xf2, +0xd8,0xa2,0x73,0xf4,0x2b,0x36,0x3e,0x38,0x2e,0x38,0x36,0x98, +0x06,0xcd,0xe0,0x0b,0xfe,0xbd,0x87,0x9b,0x1c,0x83,0xf8,0xa4, +0x80,0xa4,0x80,0xc4,0x63,0x8e,0x11,0x8e,0xd1,0x0e,0xd1,0x1d, +0xed,0x17,0x06,0x7b,0x6e,0x3a,0x95,0xf1,0xbe,0xce,0x87,0x1c, +0xdd,0x1d,0x43,0xb3,0xa4,0x1d,0x07,0x55,0xb5,0xe5,0x4d,0x15, +0x9d,0xf6,0xc5,0xbc,0xaf,0xed,0x21,0x7b,0x77,0xd7,0xd0,0xb4, +0xb0,0x94,0x13,0x49,0xee,0x6e,0x7c,0xad,0x5b,0x9d,0x65,0xb9, +0xc3,0x51,0xff,0xa3,0xf4,0x2f,0x07,0xd9,0xd4,0x09,0x50,0x9f, +0x22,0x67,0x80,0x5f,0xd8,0xc0,0x17,0xeb,0x2e,0x3c,0x85,0x59, +0x2d,0x38,0xab,0x9f,0x5a,0x3c,0x1d,0x99,0x1e,0x49,0x9a,0x89, +0x1f,0xb2,0xd4,0x45,0x05,0x6b,0x50,0x30,0x66,0x41,0xad,0x9e, +0xd4,0xb8,0xd4,0x99,0x97,0xdb,0x1d,0x3d,0x7a,0xf4,0x98,0xff, +0x31,0x2e,0x38,0x98,0x3e,0x70,0xa2,0x45,0xf3,0x99,0x86,0xb3, +0x8d,0xb1,0xb3,0x30,0xbd,0x0b,0x72,0xd8,0xd2,0x73,0x25,0xb1, +0xe7,0xe3,0xe8,0x03,0x07,0xc5,0x05,0x37,0x67,0xf1,0x41,0x17, +0x8e,0x74,0xfb,0x36,0x39,0x04,0xd0,0x28,0x4f,0x1f,0x38,0xc0, +0x26,0xc2,0x36,0xca,0x2a,0xba,0xb7,0xbd,0x63,0x60,0xe0,0x8e, +0xe3,0x79,0xde,0xcb,0xd1,0xdd,0xde,0xc5,0x31,0x34,0x33,0x24, +0x3b,0x24,0xab,0xa6,0xa1,0xb2,0xb9,0xb2,0xcb,0xbe,0x88,0xf7, +0xb1,0x39,0x68,0xe7,0xe6,0x1a,0x9a,0x11,0x9a,0x76,0x22,0x89, +0x43,0x27,0xdc,0x4f,0xd4,0x2f,0x5e,0x66,0x2e,0x68,0x90,0x8b, +0x57,0x34,0x58,0x64,0xec,0xc8,0x3e,0xf5,0xab,0x2c,0xc8,0xcd, +0xbc,0xb2,0x8f,0xc6,0xf6,0x02,0x1f,0x92,0x67,0x98,0x61,0x9c, +0xa1,0xdd,0x92,0x2e,0xed,0x6b,0x1e,0x3c,0xd6,0xc1,0xa1,0x39, +0x9a,0x90,0x92,0xd1,0x94,0x91,0xe4,0x21,0xeb,0x14,0xfe,0x84, +0x7e,0x90,0x86,0x9f,0x11,0x27,0xeb,0x81,0x0d,0xa4,0x58,0x27, +0xcb,0x2c,0x5b,0xbd,0x35,0x83,0x0f,0xb8,0xec,0xdf,0xeb,0x47, +0xb9,0x95,0x2b,0x1a,0x92,0xc2,0x91,0x8c,0xb1,0x94,0x01,0xeb, +0x44,0xfe,0x84,0x51,0xa0,0x96,0x9f,0x09,0x47,0x19,0xed,0x3b, +0xd2,0x2d,0x74,0x98,0x8c,0x41,0xcd,0xf8,0x66,0xac,0x61,0x85, +0x77,0x10,0x44,0x70,0x86,0xd8,0x01,0x33,0x68,0xe0,0x9b,0x2a, +0xd3,0x26,0x61,0xdb,0x76,0xdb,0xe2,0xb2,0xc3,0x45,0x74,0x08, +0x6a,0x94,0xdf,0xbe,0x95,0xfc,0x0b,0x07,0x93,0x37,0x31,0x16, +0x05,0x47,0x87,0xde,0x0f,0xc1,0xac,0x2a,0xa5,0x56,0xd6,0x30, +0x43,0x4e,0x8b,0xb6,0xac,0x67,0x58,0x62,0xb1,0xd2,0x55,0x48, +0x7f,0x2f,0xcd,0x2b,0xe9,0x20,0xcd,0xc6,0x35,0x23,0x7f,0xb2, +0x60,0x28,0x6a,0x11,0x19,0xd3,0x83,0xdd,0x3f,0x40,0x56,0x37, +0x66,0x49,0x6b,0x60,0x81,0x26,0x10,0xb8,0x11,0x73,0x29,0x62, +0x81,0x79,0x64,0xd0,0xab,0xef,0x50,0xb7,0x7d,0x45,0x1b,0x6f, +0x56,0xa7,0x5f,0x69,0x50,0xc2,0xfd,0x83,0xa7,0x89,0x71,0xdd, +0xde,0x06,0xc3,0xe2,0x83,0xe6,0xfc,0xb0,0xf7,0xb0,0x7b,0xbf, +0x1d,0x27,0xec,0xc6,0x49,0x04,0x8a,0x7b,0xb0,0xf8,0xb6,0xce, +0x4e,0x8c,0x34,0x86,0xc8,0xd5,0xd8,0x6b,0x20,0x5b,0xde,0x8f, +0x7d,0x8c,0x38,0x0d,0xb6,0x11,0x8d,0x9d,0xdb,0xf7,0x29,0xeb, +0xd4,0x18,0xf3,0xbf,0x5e,0x7e,0xf4,0xa0,0x5b,0x12,0x12,0xfa, +0x45,0x96,0x45,0xb2,0xfd,0xf2,0x3d,0xf2,0x3c,0x34,0x4e,0xed, +0x88,0xd8,0x11,0x5d,0xd6,0x5c,0xd2,0x5d,0xdc,0xa7,0x9f,0xc1, +0xfb,0xea,0x1f,0xd4,0x71,0x36,0xe5,0x0e,0x1f,0x8e,0xf1,0x9b, +0x9d,0x68,0x04,0x9f,0xc4,0xc2,0xc2,0x44,0xf8,0x30,0x73,0x56, +0x6a,0x40,0x72,0x40,0x52,0x70,0x47,0x11,0xef,0xde,0x6f,0x7e, +0xdb,0xbe,0x93,0x13,0x02,0x28,0x8f,0x2c,0xcf,0xcc,0x28,0x51, +0xfa,0x99,0xd5,0xcb,0x90,0x5b,0x89,0x36,0xac,0x6b,0x58,0x4a, +0x85,0x52,0x1f,0xfb,0x7b,0xf6,0xdb,0xfc,0x17,0xb5,0xbe,0x5d, +0xfc,0x5a,0xf7,0x35,0x7e,0x2b,0x02,0xb9,0xe7,0xda,0xe8,0xcb, +0x1a,0x15,0x1d,0xbe,0xa4,0x28,0xfa,0x53,0x9b,0xc2,0x2c,0x48, +0xde,0x89,0xd3,0xd9,0x54,0x33,0x09,0x64,0xd6,0x65,0x52,0x52, +0x05,0x6f,0xc4,0x8f,0xc5,0x25,0x2c,0x5c,0x93,0xb2,0x3e,0x93, +0x2f,0x42,0x32,0x23,0x38,0xe1,0xaf,0xa4,0x32,0x23,0xbd,0x54, +0xe9,0x39,0xab,0x97,0x46,0x3f,0xfd,0x20,0xfd,0xf4,0xe4,0x0a, +0xa5,0x76,0xf6,0x8f,0xac,0xdf,0x0a,0x5e,0xd7,0xfa,0xf5,0xf0, +0xab,0xdd,0xd6,0xfa,0x2d,0x0b,0xe4,0x7e,0xd7,0xc6,0x23,0xac, +0x51,0x85,0xdf,0x25,0x69,0x02,0x20,0x90,0x40,0xf2,0x01,0xa4, +0xbf,0xfe,0x0e,0x03,0x49,0xb3,0x61,0x93,0x4e,0xd5,0xbe,0xe1, +0x32,0xde,0xe5,0x9a,0xd5,0x88,0x6d,0x3b,0x37,0xee,0x34,0xa1, +0x89,0xd5,0x3a,0x76,0x7e,0xcc,0xb0,0x80,0x3f,0xa4,0x6f,0xa5, +0xad,0x6d,0xc8,0x09,0xe9,0xb0,0x88,0x14,0xe9,0xff,0x6f,0x4d, +0xac,0x21,0x6f,0xea,0x81,0x4a,0x26,0x34,0xb1,0x0c,0xe3,0xf6, +0x5e,0x4c,0xe4,0x23,0xaf,0x87,0x0f,0x06,0xf7,0x53,0x93,0x9d, +0x12,0x4e,0x91,0xfa,0x1b,0x6d,0xff,0xe4,0x7e,0xcf,0xb5,0x61, +0xe1,0xbf,0x93,0x46,0x29,0x2a,0x5c,0xc0,0x06,0xed,0xb3,0x9a, +0x6f,0xb5,0x81,0xbb,0xb8,0xa7,0x49,0x75,0xbf,0x82,0x6e,0xb0, +0x97,0xb1,0xa2,0xbd,0x84,0x0a,0x3b,0x99,0x6b,0x0d,0x17,0x5e, +0x3f,0xb6,0x7f,0xa0,0x3f,0xaa,0x44,0xd1,0xd5,0x30,0xc1,0x7f, +0x85,0xb3,0xf0,0xaf,0xa4,0xc7,0xb3,0x8a,0xe0,0xc6,0xbf,0x60, +0xe3,0x7b,0xc4,0xbf,0x6d,0x1e,0x8b,0x47,0xcd,0xc8,0x1c,0xdc, +0xf8,0x0f,0x0b,0x3e,0x33,0x61,0xdb,0x1c,0xdc,0xc6,0xc0,0x64, +0x91,0x90,0xc1,0xc6,0xce,0xf6,0xca,0x06,0x87,0x1a,0xde,0xd5, +0xce,0xca,0xc6,0xc4,0xd9,0xfd,0x82,0x5f,0x57,0xf0,0x20,0x07, +0xe9,0x3d,0xe2,0x13,0xe3,0xdf,0xb0,0x95,0x31,0x3b,0x61,0x7a, +0xd2,0x2a,0x22,0x55,0x9f,0x87,0x2f,0xb3,0xe1,0xeb,0x72,0x60, +0x2b,0xc2,0xba,0x78,0xe3,0x10,0xed,0x10,0x4d,0xca,0xbb,0xaa, +0xe0,0x43,0xb6,0x1e,0xd7,0xfe,0x8c,0xf2,0xa0,0xba,0xe4,0x7c, +0x27,0xbf,0xb7,0xc1,0xa8,0x99,0x9a,0x40,0xfe,0xa6,0xb0,0x8a, +0x80,0x51,0x0d,0xac,0xeb,0x86,0x4f,0xaf,0xc2,0xa4,0x7d,0xa0, +0x64,0x06,0xb3,0x9c,0xf2,0xfb,0x79,0x54,0xa8,0xc2,0xcf,0xdb, +0x57,0x77,0xf7,0xd7,0xb5,0x36,0x56,0xb5,0xd1,0x17,0xbc,0xc7, +0x66,0x65,0x65,0x64,0xa5,0x67,0x6b,0xe6,0xf2,0x7b,0x37,0xe0, +0x47,0x6a,0x38,0x5f,0xf7,0xbc,0x29,0xff,0xa2,0xe1,0x71,0xdb, +0xf5,0x3e,0x0e,0x7a,0x99,0x95,0x0b,0xd0,0x64,0x25,0x0e,0x19, +0x71,0xef,0x26,0x63,0x3c,0xe9,0x17,0x57,0x83,0x9e,0x16,0xea, +0x89,0x4a,0x06,0x30,0xce,0x1a,0xa8,0xe2,0x47,0xfa,0x78,0x48, +0xb3,0x90,0x72,0x8f,0x98,0x7b,0xbf,0xf5,0x34,0xfe,0xc5,0x25, +0x60,0xe1,0x28,0x14,0xc6,0x33,0x8d,0xf3,0x60,0x8a,0x31,0x7c, +0xab,0x2a,0x25,0xc7,0xfa,0x8e,0xe1,0x27,0x03,0xba,0xf7,0x38, +0xf8,0xfc,0x3a,0xa9,0xa9,0x6e,0xec,0x3e,0xdf,0x6e,0x7a,0x9e, +0x3f,0x6c,0xed,0x6c,0xe9,0xe0,0xc8,0x61,0x4b,0x34,0xf1,0x6c, +0x77,0x6b,0x72,0xa9,0xb1,0xf2,0xe0,0x2b,0x9d,0xaa,0x1d,0x4b, +0x2d,0x38,0xf9,0x77,0x6a,0x70,0x96,0x0c,0x88,0x9b,0x5e,0x02, +0x42,0x34,0x9e,0x7c,0x0b,0xbd,0xbd,0xff,0x4e,0x31,0x82,0xd6, +0x05,0x18,0x8c,0xd1,0xf0,0x62,0xb9,0xb8,0x58,0x5f,0x60,0x58, +0x83,0x0d,0x38,0x59,0x1d,0x7d,0x76,0x16,0x53,0xd3,0x9c,0x79, +0xfa,0xdb,0x70,0x23,0xc8,0xd1,0xdb,0xf7,0x8d,0x42,0x5f,0x02, +0xd3,0x88,0x72,0xc0,0xe8,0x40,0xec,0xda,0xa2,0x41,0x1e,0xfd, +0x6f,0xe3,0xd4,0xcb,0x7a,0x8f,0xb9,0x52,0x21,0x9a,0x2c,0xc0, +0x5d,0x6f,0x59,0x5d,0xa9,0x6d,0xe6,0xa0,0x2a,0xcc,0x61,0x21, +0x60,0x26,0x8d,0xc3,0x73,0x70,0x17,0x23,0xac,0x9c,0x89,0x7b, +0x60,0x0e,0xec,0xa1,0x50,0xe4,0x2e,0x00,0x89,0x0b,0x88,0xa5, +0x5f,0xed,0xd9,0x7c,0xe0,0xf5,0x23,0xd7,0x0f,0x0f,0x5a,0x1d, +0xe3,0x53,0xbd,0x52,0x3c,0x52,0xdc,0x6d,0x22,0xac,0x23,0xad, +0xa2,0x46,0xbf,0xbf,0x0c,0x93,0x07,0x81,0x33,0x2f,0xe5,0xbd, +0x74,0xdc,0x35,0x5d,0x75,0x8f,0x15,0xf8,0x17,0xfa,0x17,0xd4, +0x8d,0x54,0xdd,0x28,0xbd,0x62,0x5a,0xc0,0x1f,0xd6,0x38,0xa4, +0xe1,0x6e,0x18,0x92,0x4e,0xbf,0xd2,0xdc,0x6c,0xf8,0x2e,0xab, +0x4e,0xe3,0x56,0x03,0x1f,0x3b,0x1f,0x47,0xdf,0x83,0x5e,0xa7, +0xbd,0x62,0xbc,0x63,0xe2,0x0c,0xf8,0xee,0x73,0xbd,0xb1,0xdd, +0x71,0x9c,0xb8,0x7a,0x40,0xd8,0xc0,0x16,0xc7,0x16,0x53,0xcf, +0xcf,0xc1,0x02,0xc1,0x8c,0xa0,0x85,0xb0,0x01,0x2c,0x58,0x4a, +0xf2,0xbe,0x21,0x7f,0xc3,0xd0,0x5c,0x56,0x54,0x59,0x48,0xd0, +0x15,0x82,0xc0,0x95,0x85,0x8b,0x52,0x45,0x1f,0x57,0x8c,0x41, +0x57,0x16,0xa3,0xdb,0x08,0x4c,0x85,0x2f,0x70,0x2a,0x0b,0x63, +0x30,0x95,0xe0,0x54,0x9c,0x4f,0x89,0x38,0x38,0xe1,0x30,0xe9, +0xc4,0xec,0x27,0x86,0xca,0x98,0x68,0x06,0x7e,0xac,0x9d,0xba, +0xb2,0x3e,0x4e,0x31,0x2e,0xa6,0x0e,0x8c,0x8c,0xbe,0xbe,0x9c, +0xfd,0x98,0x8b,0xc7,0x9c,0x3e,0xc8,0x49,0x60,0xb2,0x94,0x7f, +0xd1,0x80,0x2f,0xb4,0x8a,0xbb,0x78,0x64,0xfb,0x54,0x7a,0xac, +0xaf,0x72,0xa2,0x56,0x2f,0xc9,0xd0,0x4e,0xd9,0x13,0xbf,0xaf, +0x2b,0x8b,0x3f,0x75,0x31,0xe4,0x76,0xc8,0xa0,0x34,0x2f,0xdc, +0x4c,0xaa,0x1f,0x65,0xff,0x96,0xfc,0xca,0x34,0x81,0x3f,0xb9, +0xee,0x98,0xb2,0xfb,0x16,0x4e,0xfe,0x95,0x50,0x4b,0xc0,0x24, +0x09,0xd6,0xe4,0xc3,0xe7,0xf5,0xbf,0x1d,0xf9,0xc3,0xe7,0x37, +0xaf,0xbc,0x0b,0xfc,0xd6,0xfc,0x2d,0xb9,0x2a,0xd9,0x77,0xab, +0x86,0x1b,0x5b,0xbb,0xb8,0xda,0x71,0x5b,0x33,0x19,0xcb,0x5a, +0x3b,0xe9,0x1e,0xda,0xe9,0x8b,0x9f,0x96,0x20,0x5b,0xb0,0x28, +0xc7,0xdf,0x86,0xff,0x2e,0xe8,0xc7,0x80,0xa7,0xc7,0x16,0x1c, +0xc1,0xe9,0x21,0xb8,0xf2,0x14,0x27,0x7b,0x2d,0x1a,0x92,0x5e, +0x71,0x43,0x3b,0xfb,0x63,0xf6,0x9d,0x82,0xd1,0xf3,0x43,0x87, +0x07,0x7c,0xdb,0xfd,0x8a,0x5b,0x78,0x87,0x6c,0xab,0x5c,0xcb, +0x9c,0xae,0xb2,0x86,0x9a,0xb2,0x46,0xae,0x59,0x5c,0x67,0x09, +0x7f,0xb0,0x9e,0x1e,0x4e,0x3e,0x56,0x7e,0xda,0x85,0xda,0xf9, +0x66,0x19,0xbe,0x0e,0x7c,0x53,0x48,0x5b,0xd0,0x85,0x00,0x43, +0x7f,0xad,0xc0,0x7d,0xc7,0x53,0x7d,0x78,0x0b,0x75,0x71,0x91, +0x11,0xfc,0x17,0xa3,0xa7,0x87,0x93,0x1d,0xd1,0xc9,0x36,0xc7, +0x90,0x87,0xa8,0xbe,0x7f,0xea,0x9b,0x7e,0x92,0xd2,0x97,0x46, +0xc0,0x29,0x9e,0x69,0x5a,0x0b,0x53,0x1d,0x21,0xc6,0x30,0xbb, +0x8f,0x47,0xf7,0x26,0xfc,0xb4,0x41,0x67,0x90,0x13,0x8f,0xbf, +0x21,0x3f,0xe6,0xdc,0x29,0x1a,0x2d,0xeb,0x3a,0xdc,0x71,0xb8, +0xd1,0xaf,0xa4,0x89,0x77,0xcb,0x71,0xc8,0xb1,0xcf,0xe9,0xae, +0x68,0xac,0x2e,0x6b,0xa0,0xf7,0x5e,0x68,0x09,0x4f,0x58,0x4f, +0x2f,0x67,0x1f,0xeb,0xc3,0xc6,0x05,0x26,0xf9,0x56,0x99,0x3e, +0x8e,0x7c,0x5d,0x48,0x43,0x60,0x43,0xa0,0xc9,0x11,0xad,0x80, +0xbd,0xc1,0x13,0x6b,0xce,0xb7,0x88,0x01,0x76,0x32,0x98,0x66, +0x89,0x3c,0x7e,0x81,0x9b,0x14,0xeb,0x4c,0xe0,0x13,0x58,0x55, +0x0f,0x1f,0x9e,0x85,0x7d,0x94,0x73,0x9e,0xc5,0xed,0x95,0x38, +0xf9,0x1f,0x54,0xae,0xeb,0xa1,0x28,0x08,0xb6,0x39,0xc3,0x97, +0x90,0xa8,0x80,0x51,0xf8,0x29,0x39,0x95,0x71,0x22,0xe1,0x78, +0x68,0xc8,0x71,0x3e,0xea,0xb5,0xa4,0x15,0xa0,0x42,0x79,0x47, +0x7d,0x56,0x75,0xae,0x47,0x1b,0xbf,0xdb,0x61,0xbe,0xdb,0x9a, +0x80,0x2c,0x33,0xbe,0x2a,0xa1,0x2e,0xa9,0x2e,0x85,0xc3,0x65, +0xf8,0xa5,0x21,0x7c,0xca,0x86,0xae,0x70,0xc4,0xe9,0xeb,0x90, +0xab,0xd4,0xe5,0x6f,0xbf,0xae,0x78,0x15,0xf7,0x27,0x25,0x43, +0x21,0x3d,0x82,0x09,0x93,0x18,0x27,0x91,0xa1,0x47,0xb8,0xb5, +0xa1,0x49,0x4e,0xd4,0x14,0xea,0x49,0xe2,0xd6,0x72,0xed,0xeb, +0xaa,0x55,0x5d,0xbc,0xf6,0x55,0x8f,0x4b,0x01,0x57,0xb8,0x5d, +0xcc,0xd1,0xed,0xae,0xdb,0x36,0x4a,0x95,0x21,0xbf,0xbf,0xd1, +0xf6,0x34,0xf5,0x09,0x27,0xd3,0xc5,0xc9,0xe4,0xc4,0x37,0x21, +0xf3,0x7c,0x37,0xb4,0xfb,0xf1,0x25,0xcf,0x32,0xfe,0x4c,0xfa, +0x8d,0xc3,0x4a,0x6c,0x22,0xf9,0x8f,0x93,0x7f,0x8b,0x7d,0x61, +0x96,0xc6,0x47,0xad,0x3c,0xb9,0xea,0x88,0x0a,0x27,0xce,0xa3, +0x20,0x7c,0x72,0x2f,0x4e,0x86,0x8f,0x1f,0xf6,0xa0,0xa3,0xf1, +0x2d,0xfc,0x18,0x67,0x18,0xc1,0x0c,0xbc,0xca,0x58,0x9d,0xb0, +0x3c,0x61,0x7d,0x2a,0x45,0x97,0xff,0x23,0x1b,0x3e,0x3b,0x7f, +0xaf,0xe4,0x74,0x2f,0xef,0x12,0x66,0x1f,0x66,0x77,0x82,0xc3, +0x7d,0x10,0x46,0x0a,0x0c,0xf2,0x36,0x27,0x6b,0x77,0xa4,0xf3, +0x61,0xc3,0x47,0x9e,0x1c,0x19,0xe0,0xc0,0x02,0x0f,0x90,0xb4, +0xfe,0xe4,0xe1,0xf8,0x7e,0xeb,0x64,0x3e,0x42,0xeb,0x84,0x7e, +0xa8,0x29,0x1d,0xfa,0x73,0x20,0x93,0x64,0xfe,0x90,0x04,0x53, +0xc0,0x4a,0x01,0x2d,0x61,0x83,0x0e,0x52,0xaf,0x64,0x08,0x1f, +0x31,0x51,0xb8,0xcd,0x01,0x97,0x2c,0x9d,0xc3,0x55,0xb2,0x7a, +0xa7,0xf6,0x45,0xee,0x8e,0xe6,0x46,0x40,0xf7,0x02,0xea,0xf6, +0x81,0x3a,0xc5,0x75,0xea,0x1d,0x60,0xdf,0x8e,0xf6,0x9d,0xec, +0xc5,0xd8,0xd1,0xf8,0xb1,0xa4,0x63,0x2d,0x3c,0xce,0x08,0xc4, +0x05,0x91,0xb8,0x32,0x26,0xd1,0x82,0xbf,0x7c,0x66,0xec,0xcc, +0xe8,0x39,0xce,0x12,0x3d,0x2c,0xc0,0xc3,0x1c,0xf7,0x4b,0xa5, +0xe1,0x0c,0xd1,0xc4,0x12,0x4c,0x34,0xd8,0x9d,0x51,0xdb,0x4f, +0xef,0x8a,0x89,0xa7,0xd0,0x73,0x43,0x3c,0xec,0x4f,0x82,0x69, +0xe9,0x75,0x4e,0x3c,0x6d,0xb6,0x69,0x2d,0xb0,0x2d,0x56,0x9a, +0x8f,0x9a,0xc3,0xe0,0x8c,0x13,0x38,0x35,0x58,0x55,0x51,0x2b, +0x34,0xfc,0xb8,0xc5,0xec,0x6d,0x0c,0x25,0xe8,0x37,0x99,0x5b, +0x65,0x25,0x8f,0x32,0x95,0xc6,0x3f,0x86,0x6e,0x62,0x8a,0xd3, +0xbb,0x58,0x38,0x60,0x4a,0xba,0x60,0x86,0x29,0x8b,0x1a,0x36, +0xc4,0x08,0xa7,0xf7,0xd2,0x2b,0x46,0xa4,0x17,0x66,0x18,0xd1, +0xc1,0x89,0x77,0x48,0x93,0x79,0xa3,0x49,0x85,0xce,0xe0,0x79, +0xde,0x75,0xc4,0xa6,0xc7,0xbe,0x89,0x1b,0xb7,0x42,0x03,0x32, +0xd2,0xd7,0x3c,0x50,0xda,0x67,0x94,0xcf,0x7b,0x9a,0xd9,0x9a, +0xe8,0x98,0x71,0x42,0x02,0x4c,0x27,0x85,0xa6,0x79,0xc6,0x19, +0xfa,0x63,0x34,0x4c,0x0d,0x1f,0xe9,0xf1,0xb9,0xc0,0x61,0x61, +0x08,0x49,0x33,0x4a,0xb2,0x88,0xd3,0x1a,0x4b,0xe4,0x23,0x46, +0x4f,0x74,0x07,0x75,0xd0,0xde,0xf6,0x40,0x18,0x26,0xef,0x15, +0x3c,0x76,0x8e,0x9b,0x18,0xd0,0x58,0x1a,0x63,0x1f,0xed,0x18, +0xe9,0xcc,0xe1,0x03,0x7d,0xb8,0xc6,0x9c,0xb0,0x0d,0x73,0x0c, +0xa6,0xff,0xf0,0x32,0x00,0x23,0x46,0x1f,0x27,0xad,0x5d,0x8f, +0x33,0xb6,0xd4,0x9a,0xf3,0xd7,0x9b,0x87,0xdb,0x3b,0xbb,0x39, +0xac,0x1a,0x1b,0x12,0x4e,0xe8,0x8e,0xc1,0x5f,0xe2,0x20,0x5b, +0x54,0x9d,0x5f,0x9b,0x5d,0xcf,0x09,0xf6,0x8c,0x26,0x50,0x3a, +0x38,0x05,0x9f,0xb0,0x71,0xb5,0xe7,0xea,0xcf,0x34,0x72,0x70, +0x1f,0x77,0x11,0xfc,0x44,0xfc,0x94,0x4d,0xaf,0x4b,0xae,0x4f, +0x6a,0x92,0xa6,0x79,0x5e,0x11,0xdc,0x23,0x9e,0x80,0x3d,0x94, +0x05,0xec,0x90,0x7d,0x47,0xf4,0x2c,0x30,0xaf,0x9d,0x1e,0xce, +0x99,0xc1,0x39,0xf3,0xc1,0x0e,0xc8,0x93,0x0e,0x39,0x9d,0x98, +0xc3,0x40,0xd6,0xb8,0x33,0x69,0x17,0x55,0x3b,0x85,0xe9,0x6d, +0xe2,0xf4,0x56,0x78,0x02,0xfe,0xf8,0xa4,0x55,0xd8,0xda,0x2e, +0x6e,0xa5,0xd6,0x22,0xb1,0x20,0x9f,0x00,0x72,0xc9,0xfe,0x2d, +0xfc,0x31,0x0c,0xc4,0xe8,0x48,0x6c,0x98,0x9d,0x64,0x25,0x07, +0xf2,0x30,0xe5,0xcc,0x39,0x98,0xac,0x64,0x26,0xae,0xb4,0x10, +0x56,0x5a,0xe3,0x6d,0xf4,0x87,0xdb,0xd6,0xe2,0x64,0x2b,0x61, +0xb2,0x99,0xb8,0xda,0x02,0xbe,0x60,0xbd,0x1c,0xed,0x1c,0xf4, +0x1d,0xba,0x9c,0xf9,0xe1,0x96,0xa6,0xb6,0x92,0x16,0xb3,0x7c, +0x5e,0xc6,0x33,0x96,0x7e,0x8d,0x4e,0x0d,0xb6,0x15,0x96,0xb3, +0xfa,0xcb,0xdc,0x2f,0xd8,0x36,0x39,0x54,0xcc,0x12,0xe5,0xa4, +0x02,0x8d,0xe9,0x17,0x20,0x9d,0x81,0xc7,0x96,0x04,0x4b,0x2e, +0x40,0x09,0x23,0xfe,0xbc,0x96,0x40,0xba,0x39,0xd2,0x6b,0x37, +0x3b,0x08,0x94,0x98,0x63,0x09,0x73,0x01,0x93,0x49,0x81,0x7d, +0xae,0x5d,0x86,0xf5,0x68,0x1a,0x1f,0xd8,0xee,0xdf,0xe4,0x5b, +0xc7,0xe1,0x79,0x6a,0x72,0xdb,0x24,0xc7,0x38,0xf3,0x51,0x6a, +0xf2,0x8e,0xf0,0xa6,0xe0,0x7a,0x4e,0x5e,0xd8,0xa8,0x4c,0x9e, +0xc1,0xd2,0x42,0xd8,0x0d,0x69,0x0a,0xf0,0xb3,0x0e,0x76,0xb0, +0x58,0x7c,0x0c,0x55,0xd7,0xe1,0x42,0x45,0xa1,0xdd,0x87,0xbc, +0x9b,0xa7,0xf1,0x2f,0x0d,0xf3,0x0a,0xcd,0x94,0xbd,0x6b,0x4b, +0xec,0xbd,0x5e,0x96,0x4b,0xfa,0xb1,0xc5,0x80,0x85,0xbb,0x38, +0x8f,0x0c,0x20,0xea,0x4b,0x67,0x8a,0xf4,0x5a,0x15,0xbd,0x56, +0x85,0x5f,0xbd,0x3f,0x8b,0x11,0x97,0x91,0x81,0x5e,0x38,0x0a, +0x85,0x58,0xcb,0x0c,0x18,0x11,0xd8,0x8e,0xca,0xb8,0x9d,0x91, +0x97,0x05,0x83,0x3b,0x81,0xad,0xb0,0xbb,0x1f,0x77,0x53,0x22, +0x6c,0x39,0x80,0x9f,0xb1,0x85,0x6d,0x25,0x23,0x39,0x3d,0xc6, +0x79,0xfc,0x11,0x5d,0x9f,0x03,0x1e,0xfa,0x1c,0x66,0xeb,0x83, +0x1e,0xfd,0x71,0x55,0x03,0x50,0xc5,0xad,0x18,0xa4,0x07,0x41, +0x18,0x38,0x02,0x81,0xe0,0x3c,0xc8,0x60,0x9d,0xe0,0x41,0xfc, +0x3b,0xbd,0x06,0x7c,0x9b,0xcc,0x7c,0xf9,0x62,0x9b,0x12,0x93, +0x3c,0x13,0x0e,0x1d,0x31,0x89,0x80,0x5a,0x6f,0xaf,0x11,0xa8, +0xe0,0x0b,0x63,0x98,0xc2,0xda,0xc7,0x38,0xc7,0xb8,0x28,0xe2, +0x5c,0x23,0x50,0x64,0xa2,0x6d,0xa2,0xec,0x23,0x9c,0xb9,0x25, +0xc6,0x4f,0x19,0xff,0x6f,0x9c,0x54,0xb5,0xb7,0x57,0x59,0xf1, +0xf9,0xc5,0xb9,0x55,0xd9,0x35,0x1c,0xd6,0xf4,0x5f,0xa4,0x4c, +0xf6,0x26,0x9e,0x64,0x53,0xcb,0x93,0x2a,0x12,0xaa,0x38,0x98, +0x0f,0x2f,0x09,0x32,0xc8,0xb1,0x67,0x6b,0xce,0xd4,0x36,0x2a, +0x80,0x9c,0x94,0x78,0x27,0x8f,0x3c,0x1b,0x5f,0x17,0xdb,0x70, +0xae,0x85,0x83,0x2f,0xf1,0x01,0x41,0x67,0xdc,0x0f,0xce,0xb4, +0xb7,0x80,0xec,0x04,0xc1,0xe9,0xa3,0xb0,0x6f,0xfc,0x37,0xdc, +0x37,0x0a,0xd3,0x59,0x41,0x61,0xfc,0x2b,0xf2,0x18,0x5e,0xc0, +0x8f,0xf8,0xe2,0x11,0xb4,0x74,0x61,0xcb,0x35,0x9d,0xbd,0x78, +0xde,0x14,0xce,0x6f,0xc6,0xfb,0xf8,0x23,0xdc,0xdf,0x20,0x2e, +0x33,0x16,0x96,0xe1,0x67,0xc3,0xf0,0x99,0xb0,0xa5,0x87,0x15, +0xfd,0xa1,0x8c,0x60,0xe6,0x33,0xc8,0x64,0xe0,0xf9,0x6a,0x82, +0x95,0xcf,0xa0,0x92,0x11,0x7f,0x93,0x26,0x62,0x32,0xbf,0x41, +0x7a,0xf1,0xee,0xaf,0x04,0x2a,0xbf,0xc1,0x4a,0x46,0xfe,0x96, +0xac,0x99,0x18,0xc1,0x62,0xd6,0x21,0xc6,0xe9,0xb4,0xab,0x22, +0xee,0x32,0x04,0x55,0x26,0xca,0x36,0xd2,0xe1,0x24,0x1d,0x12, +0x9f,0x19,0xc1,0x24,0xc6,0x7b,0x95,0xf5,0x76,0x35,0xd5,0x1a, +0x33,0xbe,0xb8,0xb8,0xa8,0x3a,0xaf,0x96,0xbe,0xdd,0xd0,0x18, +0xd4,0xc3,0x75,0xac,0x67,0xd3,0x2b,0x52,0x2b,0x93,0xab,0xa5, +0x2c,0xf6,0x5d,0xc3,0x7d,0x3a,0xd4,0x15,0xc3,0x13,0x7c,0x44, +0x7a,0x5e,0x34,0xfc,0x5a,0xf8,0x3d,0xd7,0x85,0xbf,0x8c,0xbf, +0x1b,0x93,0x75,0x83,0x0b,0x7b,0x78,0x87,0xc3,0x4a,0x9d,0xc5, +0xdc,0xdd,0xdd,0x83,0xdb,0xb7,0x28,0xec,0x3e,0xea,0xa2,0xaa, +0xb8,0x97,0x49,0xd3,0x92,0xbb,0xc2,0xfc,0xd9,0x7a,0xe9,0xc5, +0x2b,0x83,0x7b,0x7b,0xaf,0x28,0x89,0x5f,0x41,0x29,0x41,0x39, +0x5c,0xc2,0x9e,0xad,0x3e,0x5b,0xd7,0xa0,0xe0,0x8b,0x8d,0x24, +0xa1,0x36,0xbe,0x21,0xb6,0x99,0x83,0x15,0xf8,0x29,0x83,0x5e, +0x22,0xed,0x8f,0x36,0x10,0x40,0x51,0xb5,0xbc,0xac,0x50,0x28, +0x7d,0x5f,0x5e,0x3e,0x2c,0x2c,0x9c,0x8f,0x80,0xeb,0x9a,0xff, +0xae,0x1c,0x13,0x06,0x27,0x4a,0xd5,0x46,0x29,0x82,0x39,0x06, +0x35,0xb6,0xcb,0x89,0x02,0xd8,0x13,0x58,0x0a,0x36,0x7d,0x92, +0x9c,0xb2,0x36,0x4e,0x47,0x2b,0x43,0xb0,0xc2,0xa5,0x18,0x65, +0x20,0xd4,0xf4,0xb3,0x18,0x4a,0x43,0x3f,0xb8,0xf6,0x53,0xb0, +0x30,0x47,0x9b,0xc2,0x9a,0x09,0xc9,0xb2,0xed,0xcc,0xe6,0x13, +0x1b,0x4e,0xad,0x8b,0x48,0xd6,0xe1,0xc1,0x36,0x0b,0xf6,0xe4, +0xc2,0xb6,0x92,0x93,0xbd,0xbc,0x6a,0xd8,0xb6,0xf0,0x2d,0x27, +0x38,0xf9,0xdb,0xc2,0x4a,0x02,0x73,0x1e,0xb5,0x3f,0x4b,0x01, +0x4e,0x92,0x38,0xb0,0x8a,0x31,0x38,0x69,0xab,0xe8,0x7c,0x2a, +0x28,0xc8,0x64,0xf6,0x6a,0xa9,0xf4,0xeb,0x77,0xcc,0x2f,0xa5, +0x65,0x57,0x53,0x94,0x12,0x3a,0xce,0xdd,0x7a,0xac,0x80,0xce, +0x29,0xcc,0x2d,0xdd,0x9d,0x6c,0x38,0xae,0x33,0x82,0xd5,0xec, +0xc9,0x15,0x4e,0x7b,0x70,0xe6,0x36,0x4e,0xc8,0x02,0xda,0xd6, +0xf7,0xe1,0x6f,0xb8,0xcf,0x62,0x1b,0x16,0x11,0xf0,0x82,0x60, +0xf4,0x62,0xf1,0x2b,0x71,0x29,0xb9,0x56,0x39,0x52,0x37,0xd0, +0x6e,0xd7,0xc0,0x1b,0x58,0x68,0x3a,0xee,0x76,0xb7,0x6e,0x71, +0xed,0xf2,0x1a,0xe6,0x04,0xbe,0x5f,0x54,0x7d,0xab,0xb5,0x40, +0x52,0x35,0x9f,0xca,0xac,0x57,0xc5,0x2f,0x34,0x71,0xa7,0x6d, +0x81,0x21,0xff,0x28,0xef,0x76,0xc9,0xa5,0x72,0x0e,0xbf,0x66, +0xed,0x22,0x6c,0x29,0xdc,0x4a,0xd1,0xe3,0x61,0x4f,0x1e,0x2c, +0x29,0x81,0x69,0x15,0xa7,0x7a,0x79,0x95,0x00,0xe5,0xc0,0xe5, +0xc1,0x1c,0x28,0xb3,0xa3,0x35,0xdd,0x8d,0x8d,0x6d,0x57,0x71, +0x0b,0xf0,0xf8,0x39,0x04,0xa8,0x96,0x76,0xf3,0x8b,0xaa,0x55, +0x1a,0x34,0x3b,0x27,0xca,0x2d,0x7c,0x41,0x22,0xe3,0x99,0x81, +0x81,0xbb,0x2f,0xaa,0x5f,0x70,0x9d,0xb8,0x0d,0x96,0x6b,0xe0, +0x72,0xd4,0xd1,0x85,0xb7,0xac,0x29,0x45,0x4a,0xeb,0x70,0x13, +0x6e,0x5e,0x52,0x69,0xc2,0xdf,0x68,0x1d,0xeb,0x68,0x6b,0xe1, +0xc4,0x15,0x17,0x85,0x6d,0x52,0x52,0x5a,0x1c,0x35,0xf6,0x12, +0x5c,0xdc,0xd8,0x8c,0x0b,0x61,0x7e,0x58,0x72,0xd8,0xb9,0xd0, +0x13,0xb3,0x04,0xb7,0xef,0xc8,0xc0,0xaf,0x2d,0xcf,0x4b,0xbe, +0xe7,0xba,0xc5,0xc9,0xe3,0xef,0x2e,0xc9,0xba,0x20,0x94,0xf5, +0xde,0x6e,0xb3,0x5a,0x63,0x31,0xf7,0xfd,0x9e,0xb1,0x1d,0x2a, +0x0a,0x6a,0x47,0x5c,0x36,0x2a,0x6e,0x67,0x52,0x35,0xe4,0xee, +0x30,0xf0,0x51,0xc7,0x95,0x97,0x2f,0xb5,0xef,0xed,0xb8,0xac, +0x24,0x09,0x1a,0x4a,0xa9,0x31,0xc6,0xfb,0x71,0xee,0xbc,0x09, +0x75,0xd4,0xf2,0xf2,0xf2,0xfa,0xf3,0xef,0x17,0x20,0x08,0x5b, +0x7d,0xb7,0xec,0x69,0xde,0x2b,0x4e,0xb8,0x21,0xa6,0x93,0x74, +0xbf,0xf4,0x23,0x29,0xfe,0x9d,0xd5,0xbc,0xfd,0x0d,0x8d,0x5f, +0x2c,0x06,0x2c,0x3d,0xf8,0x02,0xef,0x52,0xc7,0x12,0x07,0xe5, +0xf0,0x25,0xa7,0x96,0x44,0xfe,0xfe,0xe3,0x9f,0x30,0xf5,0xc6, +0x6b,0xa3,0x2a,0xde,0x7a,0xef,0xae,0xb5,0x2a,0x2a,0x9e,0xc5, +0x1e,0x45,0x1e,0x85,0x03,0x63,0x97,0x1f,0xb6,0xdd,0x7a,0x9c, +0xfa,0x43,0xe6,0xed,0x6c,0x4f,0x8a,0xe2,0xd6,0x3b,0xa2,0xb9, +0x0f,0x6a,0x9e,0x4a,0x37,0xe0,0x6f,0x9e,0x7b,0x98,0xf0,0x28, +0xd9,0x41,0xd7,0x68,0xbf,0xad,0x8d,0x57,0xae,0x77,0x8e,0x77, +0x96,0x8b,0x05,0xff,0xc0,0xe4,0x92,0xe5,0x35,0x2d,0x5f,0x3f, +0x1f,0x7f,0xdf,0xa3,0xdc,0x69,0x5d,0xbd,0x18,0xa3,0xd9,0xf1, +0xba,0x3f,0x9d,0x79,0x15,0xfb,0x2a,0x7e,0x16,0x8a,0x63,0xc2, +0x24,0xf6,0x61,0xfc,0x83,0x84,0x5b,0x89,0x1c,0xce,0xa0,0xa8, +0xa4,0x47,0xbd,0x7f,0x6b,0xc3,0xee,0xde,0x2a,0xde,0xf6,0x96, +0xfe,0x1d,0xe3,0x4b,0x9c,0x68,0x81,0x09,0xa4,0x67,0xb4,0xeb, +0xfb,0xb2,0x07,0x46,0x05,0xbc,0x9b,0xaa,0xad,0x9a,0x91,0x1e, +0x35,0xb5,0x1d,0x7d,0x43,0x57,0xd4,0xd7,0xc7,0x25,0xeb,0x26, +0xb6,0xf0,0x14,0x94,0x16,0xd5,0x15,0xb6,0x72,0x62,0xfe,0x80, +0x4c,0x89,0x3d,0x7f,0xbb,0xf0,0xc7,0xcc,0xe7,0x1c,0x94,0xa0, +0x36,0x11,0x73,0x85,0x2f,0x85,0x5c,0x34,0x65,0x33,0xaa,0x53, +0x6a,0x92,0xa9,0x07,0x31,0xe9,0x15,0x3d,0x8d,0xc0,0x87,0x09, +0x3f,0x18,0xea,0x12,0x44,0xc7,0xa6,0x26,0x5e,0x24,0x66,0xd9, +0x72,0xe8,0x7b,0x80,0xf5,0x3e,0x19,0x57,0xae,0x04,0x21,0xec, +0x58,0xcb,0xa5,0xc1,0xf6,0x61,0xd7,0x46,0xde,0xd1,0xdc,0xd4, +0xcc,0xd4,0x91,0x83,0x64,0x03,0xb1,0x8f,0x55,0xcf,0x0f,0x18, +0x52,0xbc,0xc1,0xd4,0x66,0x65,0x35,0x28,0xc1,0x24,0x10,0xc8, +0x6f,0x50,0xb2,0x98,0x35,0x9d,0x3c,0x1f,0x4b,0xfe,0x64,0x71, +0xd5,0x64,0x7a,0xbb,0x8f,0xa8,0x6f,0x07,0x35,0x64,0x48,0x8f, +0xdb,0x35,0xe3,0x4e,0xf3,0x9a,0x16,0xde,0xbc,0x6d,0x7f,0x87, +0x51,0xb5,0x24,0x74,0xb8,0x9b,0xdc,0xae,0x1f,0x6c,0x6f,0xef, +0xb5,0xae,0xe2,0xed,0xcc,0x75,0xad,0xf7,0xb9,0xd1,0x80,0xfa, +0x24,0x9e,0xe0,0x01,0x26,0x4b,0x53,0x0e,0xd6,0x30,0xdd,0xb9, +0x79,0xdd,0x4a,0xb2,0x4e,0x0d,0x16,0x3b,0xd7,0x91,0x41,0xd1, +0x5f,0xef,0x6f,0xcc,0xc6,0xe9,0xba,0x30,0x8d,0x8d,0x42,0x0d, +0x37,0xfc,0x72,0x35,0x4e,0x6b,0x37,0xe3,0x5f,0x81,0x62,0x03, +0x2c,0x8d,0x03,0x6b,0x0e,0x96,0x89,0x41,0x23,0x42,0x10,0x7c, +0x3c,0x84,0x1f,0x43,0x36,0x03,0xea,0x35,0x64,0xfc,0x8b,0x31, +0xd9,0x17,0xac,0x68,0xee,0x42,0x87,0x2b,0xfd,0xe5,0xa5,0xd4, +0x9f,0x53,0x2e,0x8e,0x5b,0x18,0x87,0xd0,0xe4,0x46,0x25,0x78, +0x08,0xfa,0xc2,0x9c,0x71,0x55,0x71,0x0e,0xa8,0xb3,0x91,0xe8, +0xbb,0x7c,0x11,0x9a,0x6c,0xae,0xa6,0x4c,0xc6,0xe9,0x31,0xc8, +0xc1,0xac,0x38,0x88,0xe6,0x60,0x0f,0x3e,0x63,0x76,0x55,0x7a, +0xde,0x92,0x16,0xc2,0xde,0x4b,0x1a,0x6f,0x67,0x0f,0xe4,0xc8, +0xad,0x14,0x52,0x09,0x96,0x8b,0x1d,0x50,0x4e,0x7d,0xc6,0x39, +0xc1,0x94,0xf4,0x8f,0xd4,0xdf,0x2c,0xf9,0x89,0xbb,0xd1,0x4f, +0x41,0x58,0x5a,0x45,0x72,0x45,0x42,0x99,0x41,0x1a,0x7f,0x64, +0xbe,0xf9,0xe2,0xdd,0xfb,0xeb,0xac,0xf8,0x92,0x92,0xa2,0xca, +0xfc,0xda,0x22,0xed,0x72,0xe3,0x7a,0x4b,0x53,0x5b,0x4d,0x67, +0x15,0x97,0x0a,0x3a,0xc2,0xea,0xae,0x34,0xf6,0xb6,0xf5,0x1b, +0x5c,0x37,0x7f,0x6a,0x5e,0xd9,0xcb,0xaf,0x6f,0x55,0x6f,0x33, +0xee,0xe2,0xc6,0x4d,0xa9,0x43,0x37,0x14,0xd4,0xfb,0x58,0x1a, +0x45,0xba,0x88,0x6d,0xb7,0xc7,0x80,0xef,0x55,0x0e,0xcc,0x98, +0x23,0xbb,0x0f,0xea,0xdb,0x98,0x4b,0xfb,0x6a,0xd7,0x12,0xfc, +0x98,0xc5,0x69,0x21,0xea,0x56,0x3b,0x15,0xdb,0x6d,0x5a,0xaf, +0x67,0x5c,0x4c,0x18,0x9b,0x05,0x97,0xa4,0xbd,0xe5,0xc3,0xd4, +0xaa,0x34,0x7c,0x7f,0x8b,0xf2,0x2c,0x6e,0x15,0xbb,0xc9,0x05, +0xa1,0xdc,0xf2,0x22,0xbc,0x1c,0x5f,0x8a,0x2f,0x59,0xe1,0x57, +0x68,0x20,0xa8,0x29,0x96,0x83,0x26,0x2b,0x2f,0xe4,0x0b,0x31, +0x04,0x56,0xc3,0x9f,0x83,0xf8,0x27,0x7c,0xac,0x4e,0x11,0xe4, +0x13,0x3d,0xea,0x63,0x57,0x8b,0x4b,0x75,0xdf,0x4d,0x1b,0x62, +0xc5,0x2d,0x38,0x48,0xe0,0xbf,0x86,0xf1,0xbf,0x60,0x9e,0x3a, +0xce,0xc3,0x37,0x3a,0xf0,0x06,0xf7,0x8a,0x2b,0x75,0xde,0xcd, +0x96,0x24,0x9f,0xe5,0x65,0x7b,0x84,0x93,0x04,0x56,0x40,0x60, +0x3f,0x06,0xc2,0x57,0x9a,0xf8,0x15,0x7a,0x18,0x80,0x07,0xae, +0xc0,0x6f,0xf5,0x85,0xb1,0x01,0x56,0x7c,0x80,0xfd,0xc4,0x31, +0xc8,0x2e,0xc8,0x36,0x88,0x83,0xda,0x3f,0x06,0x16,0xc2,0xb7, +0x30,0x6d,0x10,0xaf,0xe9,0xc1,0x4c,0xfc,0x16,0xa7,0xea,0xc3, +0x54,0x1c,0x64,0x6d,0x42,0xac,0x42,0x2c,0x43,0xd3,0x75,0x79, +0xf8,0xb8,0xfc,0xcf,0xba,0x9f,0xa9,0x3b,0xbe,0x43,0xef,0x19, +0x31,0x40,0x81,0xa1,0x92,0x26,0x2a,0xe1,0x51,0x7d,0x38,0x8a, +0x07,0xb0,0x5a,0x4f,0xf8,0x67,0x10,0xb3,0xe9,0x3d,0xdf,0x40, +0x27,0x69,0xc9,0xca,0x6f,0x56,0x12,0xec,0x35,0xc5,0x83,0xa8, +0xca,0x66,0x18,0xc8,0xe1,0x1e,0x5c,0x40,0x00,0x87,0x10,0x41, +0x4e,0x1b,0x0e,0xfe,0xdd,0x3f,0x17,0x96,0xfd,0xdc,0x27,0x06, +0x18,0xc2,0xc7,0xc8,0x30,0xa1,0xdf,0x86,0xc6,0x84,0x2a,0xe2, +0xd7,0x06,0x30,0x8b,0x09,0x5d,0xe3,0xaa,0xbd,0xf5,0x40,0x9b, +0x2d,0xff,0xf4,0x6e,0xc3,0xdd,0xf4,0x7f,0x38,0x58,0x87,0x21, +0x83,0x2b,0xf0,0x85,0x2e,0xbc,0xc0,0x05,0x92,0x98,0x35,0x7d, +0xb3,0x1d,0xcc,0x5b,0xd9,0x79,0x82,0xff,0x8e,0xc2,0xbf,0xac, +0xa8,0x8d,0x56,0xe4,0x4c,0xda,0xb7,0x69,0xe9,0x0a,0xf0,0x21, +0xac,0xc4,0x65,0xac,0xfc,0x6d,0x90,0x11,0x98,0x99,0x08,0xeb, +0xb3,0xe0,0xe3,0x9c,0x3a,0x07,0x1e,0x14,0x81,0xab,0x81,0x0f, +0x52,0x60,0x21,0x07,0x4b,0x99,0x98,0x55,0x91,0x1b,0xc2,0xf4, +0x39,0x83,0xb0,0xe0,0xd0,0x1d,0x52,0xa6,0x87,0xbe,0xdc,0x75, +0xe6,0x5e,0x47,0xde,0xd3,0x0c,0xa5,0xb4,0x5b,0x09,0x0f,0x61, +0x99,0x82,0xb8,0xd0,0x08,0x78,0x26,0x1c,0x15,0x1c,0x57,0x22, +0xb3,0x36,0xb2,0x96,0x37,0x3b,0xa9,0x7f,0x4a,0x3b,0x42,0x5a, +0x80,0x5b,0xd6,0x83,0xcb,0xde,0x4e,0x94,0x5a,0xbf,0xa5,0xb3, +0x0b,0xf7,0x1a,0xc3,0xde,0x05,0xb8,0xd1,0x18,0x36,0x4e,0xac, +0xe6,0x69,0x44,0xe9,0x44,0x73,0xb2,0x7f,0x29,0xe7,0xec,0x17, +0xd7,0xbe,0x51,0x5f,0x22,0xce,0x35,0x10,0x66,0xb1,0xee,0xcb, +0x70,0x9a,0x2e,0x46,0xeb,0x17,0xd0,0x88,0xd2,0x70,0xeb,0xef, +0xa1,0x42,0x98,0xce,0xc5,0x33,0xc5,0x38,0x1d,0x3e,0xd3,0x85, +0xfa,0x9d,0xf9,0x23,0x3c,0x46,0x0d,0xa0,0xe2,0x90,0xcb,0x2b, +0x3a,0xae,0xde,0x50,0x5a,0xb4,0x7d,0xc9,0xbc,0xcd,0xf8,0xb9, +0x6e,0x95,0x9e,0xc4,0x40,0x81,0xf9,0xf5,0xc1,0x1f,0x1c,0xfe, +0x86,0xb7,0x88,0x34,0x5a,0xfe,0xfa,0x9f,0xe3,0x8b,0xf9,0x7f, +0x19,0x5f,0x0c,0x3e,0xa4,0xb0,0xee,0x3f,0x23,0x0a,0xfe,0x46, +0x3f,0x1a,0xba,0x6e,0xd3,0x5e,0xf7,0xc1,0xa3,0xb7,0xa6,0x75, +0xfc,0xd6,0xc5,0xf8,0xf1,0x12,0x9c,0x49,0x41,0x3b,0x25,0x1c, +0x2b,0xa8,0x93,0x9f,0x4b,0xe1,0xc8,0xd6,0x5d,0x75,0xda,0x3c, +0x6c,0xbd,0x07,0xcb,0x81,0x7a,0x89,0x59,0xd4,0x5f,0x55,0xcb, +0xbe,0x27,0xba,0x0b,0x54,0x36,0x2c,0x55,0xaf,0x31,0xe1,0xdf, +0xde,0x7c,0xfc,0xf2,0x32,0x7c,0xc0,0xc1,0x65,0xfa,0x3c,0x8f, +0x2d,0x5e,0xb9,0xc0,0x87,0x87,0x33,0x87,0xf8,0xa5,0xf9,0x9b, +0x4b,0x77,0xd7,0x3e,0x18,0x1c,0xbd,0xd5,0xf9,0x82,0xbb,0x20, +0x36,0xe8,0x0b,0x2e,0xac,0xd5,0x76,0x7d,0x9d,0xdd,0x96,0x3b, +0xdb,0xb4,0x06,0x74,0xaf,0xd9,0x38,0xf1,0x3d,0xea,0x23,0x06, +0x57,0xad,0x76,0x38,0xac,0xf5,0x9c,0xef,0x9f,0x25,0x15,0x80, +0x2a,0xfe,0xa3,0xfa,0x71,0x87,0xa4,0x7d,0xc5,0x12,0x9d,0xf9, +0xcb,0x90,0x9d,0xa7,0x56,0x69,0xc4,0x77,0xd5,0xd4,0xd7,0x94, +0x57,0x71,0xa2,0xce,0xb0,0x90,0xc0,0x56,0x35,0x55,0xb6,0x57, +0xf5,0x70,0x42,0x9f,0xf8,0x09,0xc5,0x83,0xd1,0xef,0xcb,0x8d, +0x4f,0xe8,0x70,0xe9,0x60,0x85,0xae,0x6c,0xf2,0x10,0xd6,0x80, +0x94,0x91,0xba,0x50,0xf8,0x8b,0xe0,0x2b,0x99,0x39,0xbc,0xc2, +0x1f,0x1f,0x09,0xaa,0x7d,0xa2,0xea,0x4f,0x3a,0x6b,0xc5,0x95, +0x86,0xc2,0xca,0xcd,0x2c,0x2e,0x9a,0x8c,0x89,0xbf,0x42,0x22, +0x03,0x3f,0x7c,0x43,0xb0,0xf0,0x57,0x28,0x64,0xf0,0x07,0xda, +0x13,0x97,0x63,0xe2,0x4b,0x16,0xae,0xce,0x84,0xc2,0xe5,0x58, +0xc8,0xfc,0x83,0x46,0xc4,0xf8,0x82,0x61,0x83,0x7e,0xb5,0x93, +0x2d,0xdf,0xe7,0x3a,0x64,0xdb,0x29,0xd5,0x92,0x5c,0x4f,0xec, +0x42,0x13,0xeb,0x94,0x60,0xa7,0x16,0xaa,0xb1,0xdb,0x8a,0x8f, +0x3e,0x52,0x84,0x7a,0xa6,0x23,0x23,0xb7,0x49,0xe9,0x27,0x56, +0x27,0x57,0x0e,0xa7,0xb0,0x03,0xb0,0x83,0x0c,0xeb,0x0c,0xef, +0x69,0xde,0xd5,0x51,0xc3,0x5b,0xde,0xd3,0xbb,0xa2,0x33,0xcc, +0x8d,0x1b,0x63,0x34,0xb9,0x7e,0xa5,0xed,0x6e,0xe9,0x0d,0xd3, +0x22,0xde,0x5b,0xc3,0x72,0x87,0x86,0x3e,0xa5,0x6a,0x9f,0x0a, +0x6b,0x49,0x88,0xf7,0xb1,0x40,0x9f,0x23,0x4d,0xee,0x7c,0x79, +0x69,0x75,0x73,0x46,0x2d,0x57,0x3f,0x5e,0xc8,0x9e,0xc9,0xfe, +0x36,0x3b,0x47,0x41,0x16,0x02,0xab,0xf0,0xf4,0x30,0x54,0x76, +0x8a,0xb3,0xc6,0xd4,0x35,0xc5,0x19,0x18,0xc4,0x60,0xfd,0x51, +0xdc,0xa9,0x87,0xac,0x62,0xb7,0x69,0x2f,0x30,0xf9,0xb0,0x36, +0x1e,0x3c,0x66,0x51,0xfc,0x93,0x42,0xd0,0x6a,0x18,0xac,0x18, +0x88,0xd2,0x21,0xa8,0x33,0x0c,0x3a,0x8c,0xa8,0x4b,0xb1,0xe4, +0x08,0x58,0x69,0xb3,0x10,0x35,0x13,0x75,0x46,0xe8,0xa5,0x09, +0x89,0x4e,0x1d,0x6d,0x56,0x24,0x68,0x42,0x3a,0x83,0xfa,0x8e, +0x34,0x1d,0x2e,0x6e,0xe0,0xed,0x0a,0x8c,0x0a,0x8c,0xd3,0x39, +0xfc,0x7c,0x1e,0xb1,0xca,0xf3,0xef,0x57,0x84,0x23,0x4c,0x7d, +0x46,0x46,0xa5,0x52,0x2b,0x6b,0x22,0x15,0x4b,0x73,0x63,0x3d, +0x23,0x12,0x0b,0x95,0xee,0x18,0xb0,0x42,0x16,0xb5,0x91,0x7d, +0xa7,0x55,0xb7,0x59,0xbd,0xbd,0x07,0xdf,0xe1,0xdc,0x61,0x5a, +0x6f,0xcc,0x8d,0xcb,0x85,0x93,0xee,0x0b,0x75,0x5d,0x85,0xdd, +0x96,0x45,0xbc,0x9f,0xb9,0x9b,0x95,0x99,0x2d,0x27,0x4b,0xc5, +0x3c,0x0a,0x54,0x93,0x97,0xa4,0x6f,0xce,0xbf,0x53,0x39,0xd6, +0xd0,0xd5,0xc5,0xd5,0x8a,0x73,0xd9,0x94,0xe4,0xe4,0xe4,0xa4, +0x64,0x93,0x1c,0xde,0xdc,0x68,0xab,0x19,0x7e,0x74,0xb0,0xc0, +0x86,0xef,0xcf,0xea,0xc8,0x6f,0x29,0x6e,0x75,0xee,0xf0,0xe8, +0xf3,0x5d,0xee,0x83,0x5c,0x10,0x2a,0x86,0xa7,0x9b,0xf3,0xb0, +0x36,0x05,0xbe,0xce,0x07,0xa6,0xee,0x95,0x1b,0x4c,0x39,0x02, +0x2b,0x43,0x38,0xd4,0x87,0x83,0xc4,0xc2,0x49,0xf7,0xd0,0x6e, +0x5f,0xf5,0x42,0xa3,0x72,0xb3,0x3a,0x4e,0x7e,0x50,0x48,0x27, +0x97,0xce,0x5d,0x3e,0x7b,0x31,0x96,0x73,0x1d,0xac,0x63,0xc7, +0x62,0x87,0x62,0xbb,0xe2,0xa3,0xdb,0x78,0xd3,0x48,0xbd,0x68, +0xed,0x68,0x6e,0x00,0x56,0xb6,0xe2,0xca,0x7e,0xd8,0x72,0x01, +0xb7,0x74,0xe9,0x99,0xa2,0x9e,0x25,0xe8,0x19,0xe0,0x2e,0x6b, +0xd8,0xa5,0xc3,0xaa,0x47,0xef,0x3b,0x7d,0xe0,0x34,0x27,0xdb, +0xad,0x4a,0x9a,0xc0,0xfa,0x02,0x5a,0xf7,0xc3,0x9e,0x56,0xdc, +0xd3,0x07,0x66,0x17,0xd0,0xac,0x4b,0xd7,0x14,0xf7,0x58,0xc2, +0x1e,0x43,0xdc,0x6c,0x0d,0x9b,0x0d,0x70,0x9f,0x25,0xec,0xb3, +0x63,0xc5,0x1b,0x9e,0xc4,0x54,0x66,0xaa,0x33,0xae,0x6a,0x2e, +0x53,0xd5,0x1c,0xb7,0x34,0x85,0xbf,0x59,0x0f,0xa7,0xae,0x43, +0xfd,0x2e,0x17,0x1c,0x67,0xd5,0xb5,0x58,0xd4,0x99,0x57,0x98, +0x9e,0x9f,0x25,0xac,0xa4,0x14,0x09,0x67,0x51,0x8a,0x37,0x6c, +0x39,0xa6,0xd3,0xac,0xd7,0xd6,0xc0,0x5b,0x8c,0xe8,0xf4,0xeb, +0xb4,0x4b,0x45,0x81,0x9d,0xc8,0xf5,0xbe,0x8e,0x91,0xb2,0x21, +0xf3,0xf3,0xbc,0xb7,0xa9,0xb9,0xf6,0x01,0x2b,0x0e,0x64,0xd1, +0xc4,0x29,0x2c,0xbe,0x5a,0x09,0x3e,0xd6,0xa6,0x51,0x61,0x47, +0xe1,0xb1,0xef,0x14,0xa1,0x93,0xe9,0x48,0xcb,0x69,0x52,0xba, +0xca,0xea,0xe6,0xc8,0xad,0xa0,0x01,0xca,0x56,0x16,0x44,0x32, +0x4b,0xd2,0xca,0x92,0x0b,0x0d,0x32,0xf9,0x70,0xcf,0x00,0xe7, +0x63,0x1e,0x1c,0x7e,0x2a,0x7a,0x0b,0x33,0x04,0x6f,0x66,0x7c, +0x04,0x33,0x08,0xba,0xc3,0x7f,0x81,0x3b,0x7e,0xf3,0x16,0x34, +0x7a,0x50,0xe3,0x2d,0x3b,0x98,0xd2,0x9b,0xde,0x91,0xe9,0xd3, +0xce,0xcf,0x73,0x43,0xe2,0x87,0x73,0x4f,0xa6,0x9a,0xf0,0xfd, +0xe7,0x06,0xe3,0xfb,0x12,0xb9,0x55,0x68,0x6e,0x0c,0xe6,0x0b, +0x58,0x01,0x40,0x9e,0x60,0xee,0x33,0xc8,0x65,0x30,0x68,0x32, +0xe6,0x3e,0xa7,0x27,0xe3,0x86,0xd2,0x6e,0x76,0x66,0xa2,0x4a, +0x1f,0xe8,0xbf,0x21,0x90,0xbb,0x58,0x9a,0x5b,0xdf,0x80,0x2c, +0xe9,0x75,0x1e,0xb0,0x69,0xb7,0x6e,0x6c,0xe2,0x4d,0xda,0x8d, +0x9b,0x0c,0xaa,0x39,0x03,0x8c,0x25,0xb6,0x61,0x89,0xf5,0x4a, +0xb0,0x5f,0x0b,0x0f,0xd0,0x71,0x20,0x65,0x12,0x55,0xbd,0x1f, +0x07,0xbf,0x4c,0x64,0x12,0x4d,0x65,0xfb,0x61,0x2f,0x19,0xd2, +0x1a,0xdc,0xdd,0xb4,0x83,0x02,0x32,0xab,0x07,0x06,0x57,0x75, +0x47,0xb9,0x71,0x6d,0x3c,0x43,0xae,0x5f,0x6b,0xbd,0x5f,0x7a, +0xd3,0xa4,0x88,0xf7,0x51,0xb7,0x54,0xd5,0xd0,0xa5,0xee,0xe4, +0x67,0x61,0x31,0xf1,0x0a,0x3d,0x14,0x7a,0x28,0x8c,0x03,0x7f, +0x29,0xe0,0x68,0x68,0xa3,0x06,0xce,0xd5,0x87,0xb9,0xf8,0x2d, +0x6b,0x1a,0x68,0x12,0x62,0x1e,0x9a,0xac,0xcb,0xb7,0xa5,0xb4, +0xa7,0xb7,0x4f,0xd4,0x5d,0xfa,0x42,0x92,0xd4,0xfc,0x9b,0xe9, +0xc8,0xca,0xb9,0xa0,0x04,0xdd,0x6c,0x65,0x5a,0x65,0x5a,0x45, +0x3a,0x0d,0xf7,0x23,0x24,0xa3,0x20,0xa3,0x30,0xb5,0x98,0xa3, +0xe0,0xe0,0x8e,0x78,0x16,0xef,0x00,0xcb,0xd8,0xaa,0x6a,0xee, +0x53,0x33,0x2d,0xb3,0xe4,0xf3,0xd2,0x73,0x33,0x73,0xb2,0x38, +0x1a,0x79,0x34,0x72,0x7c,0xa8,0x9d,0x4d,0x99,0xce,0xf4,0x8c, +0x06,0xa5,0x4b,0xac,0x79,0x96,0x9c,0x32,0x5a,0xb1,0xb6,0x27, +0xe2,0xeb,0x94,0x1a,0xd8,0xb7,0x39,0xc0,0x95,0x3e,0xa8,0xf4, +0xb9,0xc0,0xef,0xf5,0x9c,0xeb,0xb5,0x2c,0x80,0x7b,0xe9,0xce, +0x66,0x66,0xa4,0x67,0xa6,0x67,0x71,0xc2,0x34,0x26,0x06,0x99, +0xa8,0x85,0x27,0x76,0x73,0x9a,0x27,0xc2,0x02,0x35,0x67,0x2f, +0x67,0xb2,0x8c,0xe4,0x9e,0x32,0xcf,0x4b,0x2a,0x5e,0xa5,0x2a, +0x25,0xdd,0x8b,0x85,0x49,0x67,0x61,0x1d,0xb7,0x16,0xde,0x90, +0x8d,0x22,0xff,0x03,0x2b,0xf0,0x38,0x8b,0xac,0x16,0xf9,0x67, +0x92,0x26,0x94,0x94,0x80,0x78,0xa8,0x03,0x0f,0xdd,0x9a,0x38, +0x5e,0x87,0x90,0x4e,0xf4,0x65,0xb2,0x4a,0xd2,0xcf,0xa7,0x94, +0x9a,0xa4,0xf2,0x61,0x87,0x82,0xdc,0xfc,0x0f,0x72,0xb8,0x95, +0xc9,0x28,0x49,0x2b,0x4d,0x29,0x37,0xcd,0xe4,0xdd,0x56,0x19, +0xac,0xd9,0xb3,0xe7,0xbc,0x19,0x5f,0x58,0x98,0x53,0x90,0x95, +0xcf,0x51,0x32,0x5a,0xd3,0x29,0x15,0xf8,0x9e,0x5c,0x47,0xdc, +0x82,0x9c,0x43,0x9c,0x43,0x38,0x08,0x78,0x32,0xa0,0xfc,0x5e, +0x7f,0xf4,0x4b,0x7d,0xca,0x15,0xcf,0xb1,0x16,0x41,0xe6,0x21, +0x56,0xd2,0x2a,0x6c,0x73,0x4a,0x4b,0x5a,0xeb,0x84,0xfe,0xe8, +0xa7,0xd2,0x2a,0xec,0x6b,0xa6,0x3d,0x4b,0xca,0x86,0xe8,0x62, +0x1b,0x32,0x1a,0x32,0xeb,0xb3,0xa5,0xb0,0x95,0x49,0xae,0x83, +0xee,0x1e,0x16,0x75,0x51,0x9e,0xdc,0x02,0xdd,0x5d,0xac,0xf9, +0xe4,0x1d,0xa8,0x7b,0x87,0x15,0x3e,0xc6,0x03,0x44,0x0c,0x33, +0xa3,0xc4,0x2d,0x72,0x9e,0xd6,0x36,0x5c,0xab,0x57,0x6c,0xcc, +0xc3,0xce,0x8b,0xdf,0xc1,0x07,0x71,0x20,0x2f,0xa1,0x99,0x93, +0x07,0x43,0xdd,0x82,0x9d,0x29,0x7d,0x65,0x4e,0x1f,0x8a,0x3c, +0x78,0xea,0x10,0xe7,0x1b,0x19,0x1c,0xe6,0x24,0xe9,0xe9,0xa5, +0x99,0xc8,0xc1,0x67,0xcc,0xc0,0xf9,0x9c,0xe6,0x14,0xa5,0xa4, +0xfa,0x84,0xa6,0x73,0x8f,0x38,0x24,0x0c,0xa5,0xbb,0x75,0x89, +0x94,0xff,0xcb,0x32,0xc1,0x8e,0xdc,0x85,0x19,0x55,0xf0,0x75, +0xca,0x7b,0x29,0xd3,0x96,0xff,0x2d,0x65,0x7a,0x04,0xbf,0xb6, +0xc7,0x05,0xdb,0xf1,0x13,0xee,0x7b,0x1c,0x66,0x13,0x0b,0xe2, +0x0b,0xe2,0xf2,0xf5,0x53,0x79,0xff,0x35,0xd6,0xdf,0xe8,0xec, +0x6c,0xb6,0xe3,0xb3,0xf2,0x32,0x26,0xea,0x9b,0x5c,0xeb,0x19, +0x84,0x5d,0x90,0x8b,0xbe,0x6c,0x56,0x69,0x66,0x59,0x5a,0x19, +0x07,0x79,0x0c,0xee,0x8c,0xc0,0xaf,0x43,0xb7,0x2a,0xaa,0x87, +0xf9,0x1c,0xd3,0x9b,0xbd,0x96,0xc9,0x32,0x90,0xfb,0x89,0xb9, +0xdd,0x51,0xf3,0x73,0x86,0x52,0xea,0x83,0xf8,0x57,0x67,0x60, +0xdb,0x79,0x57,0xbe,0xb4,0xa1,0xb8,0x3d,0xbf,0x2b,0x73,0x4e, +0xf9,0xc2,0xae,0x65,0x46,0x2a,0xbb,0xb6,0x2f,0xde,0x4d,0xa3, +0xe9,0xcb,0x9b,0xb7,0xef,0xf4,0x7f,0xd7,0xb1,0x6d,0x74,0xfb, +0xc3,0x5d,0x55,0x03,0xfc,0xe6,0x3b,0x5a,0xb7,0xac,0xee,0x73, +0x62,0x9b,0xa0,0x4c,0xae,0xc0,0x86,0x35,0x43,0x3f,0x83,0xd2, +0x00,0x2a,0xfd,0xac,0xbb,0x06,0x37,0x48,0x87,0xcf,0xf5,0xe1, +0xf3,0xfd,0xac,0x6c,0x6d,0x14,0x09,0x97,0xa4,0x4a,0x39,0x3d, +0xfc,0xc0,0xf4,0x6f,0x5f,0x60,0x42,0x25,0x81,0x64,0x01,0x9b, +0xa5,0xbd,0x29,0xf2,0xd2,0xde,0x14,0x21,0x4f,0xa0,0x0c,0xee, +0x26,0x54,0x8c,0xef,0xc0,0x0a,0xe8,0xdd,0x43,0x89,0xf8,0xbb, +0xcf,0x7b,0xc4,0x2d,0x0c,0xa4,0xc2,0x71,0x22,0x8e,0x5e,0x12, +0x46,0x19,0x64,0x26,0xab,0x8b,0xa3,0x97,0xe9,0x60,0xc4,0x21, +0x32,0xbe,0x10,0xb5,0x60,0x10,0x37,0xe3,0x32,0x89,0x31,0xc2, +0xcc,0xff,0xec,0x0e,0x58,0x06,0x8d,0xac,0x16,0xcc,0x26,0x1b, +0xc4,0xb2,0xc7,0x6c,0x1f,0x6e,0x21,0x06,0xc6,0x3b,0xed,0x96, +0xbb,0x54,0x5a,0xf0,0x2f,0x6b,0x7e,0xec,0xe9,0xe9,0xe3,0xe0, +0xc5,0x49,0x72,0xdf,0xee,0x8a,0xf3,0x7d,0x83,0x86,0x26,0x5e, +0xa5,0x6f,0x57,0x93,0x9a,0x94,0xcd,0x3f,0x22,0x38,0x92,0x13, +0x99,0xa7,0xce,0x1c,0x0f,0x0f,0x09,0x95,0xf2,0x40,0x24,0x3d, +0xe1,0xa9,0xa0,0xa7,0x8b,0x7a,0xb8,0x8c,0x0e,0x2b,0xe6,0x38, +0xce,0xb0,0xc5,0x39,0x0b,0x51,0xa1,0xd1,0x9c,0x7f,0x08,0x1f, +0x56,0xfc,0x13,0xff,0x86,0x4b,0x10,0xab,0x86,0x84,0xf8,0xff, +0x88,0x4d,0xfc,0x8a,0x5b,0x1b,0x1a,0xe4,0xfc,0xc1,0x80,0x48, +0x98,0x10,0x93,0xfe,0x0f,0x70,0x91,0x1d,0xc3,0xde,0xff,0x03, +0xe4,0x2b,0xd2,0x13,0x5e,0x4d,0x40,0xbe,0x77,0x8a,0xb2,0xbb, +0x04,0x17,0xd8,0x61,0xf6,0x41,0x34,0x8a,0x4c,0x33,0xe0,0xc1, +0x24,0x1e,0xb2,0x2b,0x61,0x75,0x33,0x37,0x3e,0x4b,0x95,0x58, +0xb4,0xe9,0xb5,0xe9,0xd5,0xb8,0x59,0xf1,0x43,0x8e,0x5d,0x76, +0x5d,0x96,0x9c,0x50,0x4d,0x03,0x6e,0xd3,0x60,0xc7,0x93,0x92, +0x9b,0x46,0xf9,0xbc,0xcf,0x5e,0xfb,0xad,0x96,0xda,0xdc,0xb6, +0x1a,0x12,0xda,0xe9,0x3b,0xea,0xdb,0x6a,0x74,0x94,0x2f,0xb4, +0x29,0xd1,0x4c,0x35,0xe3,0xf0,0xab,0x20,0x12,0xd8,0xed,0x71, +0xd1,0xb3,0xd5,0xf4,0x30,0x5f,0x6c,0x57,0xa1,0x9e,0x6d,0xcc, +0xe1,0xfa,0x23,0xc4,0xac,0x73,0x4f,0xbf,0x46,0x83,0x8b,0x35, +0x3f,0x66,0x37,0x6a,0xd2,0x6f,0xc2,0xc9,0x7c,0xd1,0x9d,0xf4, +0xe1,0xb5,0xb7,0xd0,0xd0,0x8b,0x0d,0xbf,0x6a,0x7d,0x83,0x79, +0x46,0x90,0xb7,0x00,0x3b,0x0d,0xa9,0x49,0xbd,0xb6,0x2c,0x55, +0x43,0x2d,0x3d,0x69,0xe5,0xc3,0xf1,0xf6,0xef,0x77,0x53,0x7f, +0xe1,0x12,0x98,0xb4,0x55,0x7f,0xa9,0x81,0xf3,0xb6,0xd2,0x01, +0x1e,0x0d,0x2f,0x2e,0xbd,0xe2,0xf9,0x1d,0x27,0xb6,0x62,0x32, +0xed,0x06,0x93,0x2e,0x48,0xc5,0x80,0x0c,0x72,0x78,0x4f,0x9c, +0x6c,0x8f,0x1f,0x6b,0x2e,0xa6,0x3d,0xd9,0x43,0x38,0x41,0xe0, +0x1b,0x30,0xef,0x43,0x73,0xf8,0x5a,0x1b,0xbf,0x46,0x6d,0x43, +0xd0,0xa6,0x50,0xc4,0xdd,0x40,0x38,0xd5,0xcf,0x8e,0x0f,0x88, +0xb1,0xe4,0x07,0x28,0x97,0x39,0xe1,0xb3,0xf1,0x36,0x16,0xe6, +0xca,0xc2,0x29,0xd0,0xd8,0x00,0x85,0x92,0x2a,0x36,0x16,0x2a, +0xd3,0x13,0x43,0xbc,0x4f,0xb0,0x76,0x03,0xd4,0x4e,0x5c,0xaa, +0x55,0xa6,0x27,0x82,0x0d,0x1e,0x22,0xe0,0xd4,0x8f,0x4e,0xef, +0xe7,0x1e,0x4c,0x0d,0xc0,0x94,0x1a,0x34,0x5c,0x5f,0x28,0x1a, +0xc0,0x40,0x6a,0x50,0x1d,0x59,0x08,0xc1,0x47,0x4c,0x4a,0x59, +0x42,0x45,0x5c,0xb5,0x7e,0x3c,0x1f,0xe9,0x78,0xc2,0x2d,0xf4, +0x10,0x87,0x26,0x66,0x94,0xe0,0xb8,0xe8,0x19,0xda,0xa9,0xb8, +0x94,0x9a,0xf3,0xe9,0xf1,0x69,0x09,0xa9,0x09,0x1c,0x75,0xc1, +0x46,0xb9,0x52,0x12,0xe0,0xbf,0x4c,0x63,0x7a,0x7a,0x8d,0x52, +0x2f,0x6b,0x92,0x29,0xb7,0x07,0x05,0xd6,0xfd,0x54,0x7c,0xa1, +0x52,0x1e,0x0b,0x9f,0x25,0xc0,0xac,0x4c,0xf8,0xa2,0xf8,0x70, +0x3b,0x8f,0x1f,0xf9,0xa0,0x42,0x20,0xb2,0x91,0xdc,0xb0,0x17, +0x3b,0xda,0x70,0xa1,0xbd,0x7c,0x84,0x1b,0xd9,0xc3,0x98,0x65, +0x1f,0x1d,0x90,0x56,0x68,0x1b,0x32,0x32,0xaa,0x95,0x1a,0x25, +0x3c,0x60,0x88,0x73,0x59,0xbf,0x53,0xf1,0x79,0x4a,0x97,0x28, +0xb1,0xdc,0xff,0x86,0xd8,0x65,0xea,0x66,0xea,0x26,0x1d,0xb6, +0xe3,0x87,0xc2,0x46,0x03,0x1b,0x8e,0x73,0xe2,0x5b,0x04,0x12, +0xf9,0x27,0x30,0x83,0xc8,0xc0,0x26,0xa6,0x3d,0xa3,0x35,0xbb, +0x36,0xcf,0xa3,0x9d,0x57,0xb1,0xc5,0x69,0xae,0xf3,0x42,0x32, +0x8d,0xf8,0xe6,0x84,0xf6,0x24,0x49,0x96,0x6b,0x29,0x6e,0xd4, +0x83,0xd5,0x6c,0xf8,0x5c,0xeb,0x39,0x73,0x70,0x3a,0xe5,0xbc, +0x3f,0xfe,0x5e,0xfd,0x7d,0xec,0x23,0xda,0x0b,0x4d,0xfb,0x05, +0x7d,0x69,0xce,0xe6,0x5c,0xa4,0xe2,0x2b,0xdc,0xd9,0x5a,0xbb, +0x04,0xb6,0x9e,0x4c,0x3d,0x21,0x15,0x8c,0x06,0x07,0x31,0x88, +0xf4,0x0a,0x9c,0xd1,0x10,0xbc,0x13,0x83,0xf1,0x1d,0x2b,0xec, +0x84,0x10,0x22,0x72,0x77,0x05,0x8e,0x11,0x29,0x82,0x21,0x02, +0xb7,0x59,0xe4,0x28,0xd9,0x78,0x06,0xdd,0x24,0xe7,0x70,0x8e, +0x4f,0xae,0x67,0x7b,0x15,0x6f,0xf0,0x68,0xdf,0xc3,0xad,0xf7, +0xad,0xdd,0xf8,0x1a,0xe7,0x4a,0xd7,0x0a,0x47,0x94,0x0f,0xc7, +0x79,0x27,0x71,0x71,0x14,0x4c,0xbd,0x0b,0x5f,0xc0,0x64,0xca, +0x16,0xe5,0x4c,0x1b,0xf8,0x7d,0xbb,0x57,0xac,0x5b,0xb0,0xcd, +0xfd,0xbc,0x53,0x99,0x53,0xd9,0x0f,0xd7,0x6e,0xdd,0xbc,0x71, +0x1f,0xb8,0x14,0x98,0x94,0xf1,0x73,0xb6,0x5f,0x27,0xef,0x80, +0xb6,0xd8,0x75,0x0c,0xb3,0x66,0xa7,0x4a,0x99,0x65,0x30,0x23, +0x2e,0x09,0xe4,0x95,0x8c,0xf5,0xd5,0xb5,0xf7,0x19,0xba,0x15, +0xb9,0x17,0x1e,0xca,0xb3,0xb3,0xe6,0x7f,0xd4,0x7a,0xac,0x75, +0xff,0x80,0xab,0x8f,0xf3,0x61,0x57,0x7f,0xee,0xf4,0xf6,0x1d, +0xdf,0xee,0x9a,0x9d,0xa0,0x23,0x47,0xef,0xc0,0x9f,0x8b,0x07, +0xa2,0x84,0x6f,0x2e,0xc3,0x1f,0x2c,0x30,0xf1,0xf0,0x61,0xe2, +0xef,0xc9,0xdc,0xf8,0x71,0x7c,0x41,0xde,0x8c,0x3c,0xbd,0x73, +0xf1,0xb1,0x69,0x0d,0xaf,0xb5,0x6d,0xf3,0x9e,0x65,0xfa,0x9c, +0x70,0x05,0xd6,0x91,0xd7,0xbb,0x9f,0xee,0x7d,0xb0,0xad,0xa5, +0x9d,0xdf,0x7c,0x6f,0xfd,0xb5,0xa5,0xd7,0x39,0x79,0x61,0x16, +0x00,0xf9,0x9f,0x45,0x29,0x6f,0x79,0x0d,0x5a,0x48,0xe5,0x48, +0xa4,0x4a,0x98,0xc6,0x11,0x06,0x91,0xfa,0xff,0xff,0x55,0xc2, +0x8c,0xe5,0xc4,0x95,0x43,0x13,0x95,0x30,0xeb,0x62,0x6b,0xe2, +0xb8,0x5b,0xe5,0xe4,0x79,0xc9,0x83,0xea,0x2b,0x6d,0x37,0x2d, +0x1e,0x39,0xfd,0xec,0x9d,0x4d,0x1d,0x64,0xd1,0x9e,0x32,0xad, +0xba,0x6b,0x83,0x3d,0xb7,0x9b,0x7f,0xe5,0xda,0x44,0x17,0x03, +0x61,0x2e,0xeb,0xb4,0xc3,0x5c,0x57,0xd7,0x52,0xab,0xcd,0xa4, +0xcf,0xfc,0xb2,0xb5,0x2b,0xdf,0x76,0xa0,0xc7,0x70,0xd8,0x52, +0xd7,0x69,0x9f,0xe7,0x56,0x3f,0x4e,0xf0,0xc5,0x70,0xd2,0x8f, +0x76,0xb0,0x52,0x17,0x57,0xa2,0x9d,0x01,0xd8,0x51,0x17,0x14, +0xa6,0x27,0x54,0x0c,0xe2,0x29,0xd0,0x63,0x45,0xc5,0x4e,0x52, +0xb0,0x3f,0x4b,0x35,0x75,0x7b,0x4f,0x2e,0x1f,0x7a,0xd3,0xff, +0x81,0xdf,0x25,0x0e,0x2b,0xf0,0x02,0x69,0xfc,0x21,0xff,0x4d, +0xda,0xab,0xff,0x59,0x07,0xb3,0x59,0x88,0x26,0xe9,0x9e,0xa9, +0x07,0x53,0xdd,0xcd,0x4e,0x99,0x44,0x9a,0x44,0x0d,0x3f,0xba, +0x02,0xcc,0xc0,0xc4,0x02,0xa2,0xb7,0xae,0xbb,0xa6,0x9b,0x6e, +0x40,0x81,0x7f,0xc1,0xd1,0xfc,0xda,0xd1,0xaa,0x1b,0x25,0xd2, +0x02,0xa2,0x9f,0xc6,0x21,0x8d,0x83,0xef,0x17,0x10,0x53,0xdd, +0x6d,0xf8,0x4e,0xeb,0x4e,0x93,0x16,0x43,0x1f,0x5b,0x6f,0x07, +0x5f,0xf7,0xad,0xd1,0x7c,0x9c,0x41,0xd7,0xb9,0xee,0x73,0x5d, +0x71,0xb3,0xc4,0x55,0x03,0xc2,0x7a,0xb6,0xf2,0x5c,0x65,0x5c, +0x79,0x5c,0x7c,0x80,0xb4,0x66,0x79,0x21,0x9b,0x0f,0xb8,0xee, +0x7b,0xc3,0x67,0x90,0x03,0x7b,0x71,0x36,0x79,0xfd,0xbc,0xe3, +0xd7,0xc4,0xe7,0x5c,0x02,0x3e,0xed,0x87,0x76,0x26,0x21,0xee, +0xac,0x54,0xca,0x7c,0x1e,0x7a,0xb7,0x54,0xe1,0x7c,0xf0,0x0c, +0xcf,0x08,0xfb,0x36,0x28,0x74,0xd6,0xc9,0x08,0xb9,0x88,0x51, +0x30,0xee,0x41,0x63,0xb8,0x61,0x80,0x37,0x50,0xc3,0x18,0xb6, +0x30,0xbe,0xdf,0x98,0x7c,0x33,0x7f,0x09,0x17,0x28,0x63,0x89, +0xde,0xbf,0x72,0x83,0x23,0x82,0x7b,0xbf,0xe8,0xce,0x08,0x4b, +0x65,0x81,0xe4,0x88,0xda,0x21,0x35,0x67,0xcd,0x0b,0xbe,0x7c, +0xf5,0x70,0xf5,0x83,0x82,0x5b,0x1c,0x36,0xa3,0x1e,0xf1,0xbf, +0xe1,0xf1,0xc8,0xbb,0xcf,0xfc,0x08,0x5f,0x62,0x5c,0xb1,0x29, +0x77,0x0f,0x87,0x77,0x90,0x5a,0x47,0x35,0x6b,0x5d,0xea,0xfa, +0xee,0x1c,0x3e,0xec,0xa1,0xff,0x4f,0x87,0xef,0x70,0x18,0x83, +0x4d,0xa4,0xf2,0x61,0xf6,0x6f,0x49,0xaf,0x4c,0x13,0xf9,0x93, +0xeb,0x02,0x94,0x0f,0x6e,0xa1,0xd6,0x19,0x84,0x67,0x64,0x18, +0x4c,0x5a,0xd0,0xa4,0x15,0xb6,0xc2,0x41,0xdc,0xda,0x04,0x46, +0x2d,0x68,0xd4,0x69,0x64,0x86,0x66,0x36,0x60,0x66,0x87,0x5b, +0xf0,0x20,0x6c,0xb1,0x46,0x3b,0x1b,0xb0,0xd3,0x61,0xa1,0x00, +0xaa,0xc8,0x83,0xda,0xd2,0xb6,0xb8,0xeb,0x1c,0x2c,0xd8,0xc1, +0x38,0xa4,0x07,0xb4,0x2b,0x8e,0x32,0xd5,0x59,0x99,0xd5,0x4a, +0x43,0xac,0x75,0xba,0xdc,0x16,0x5d,0x36,0x38,0xe2,0x6c,0xa6, +0x12,0x4c,0xc1,0x68,0x56,0x35,0xd2,0x6e,0xbd,0xb3,0x22,0x46, +0x58,0x13,0x64,0x5b,0x28,0xa4,0xea,0xb4,0x21,0x2d,0xf0,0xa9, +0x0d,0x0b,0xaf,0x51,0x83,0x8c,0x54,0xb7,0xb7,0x54,0x74,0x71, +0xcd,0xe2,0x1c,0x2b,0x78,0xc2,0x1e,0x72,0xb4,0x75,0xd3,0xf7, +0xb2,0x2e,0xb6,0x2f,0x73,0xac,0x73,0xf6,0xe4,0x2b,0xdd,0x6b, +0x3c,0x1b,0x7c,0xad,0x02,0x4c,0x42,0x74,0xc2,0x32,0xad,0xf8, +0xeb,0x69,0x97,0x73,0x07,0x8b,0x2f,0xba,0xdd,0xf1,0x7e,0xe6, +0x9f,0xde,0xc6,0xab,0x65,0x69,0xe6,0xe8,0x17,0x73,0x62,0x2a, +0xcc,0x27,0x96,0xc8,0x5e,0x60,0x61,0xf3,0x4c,0xf8,0xd4,0x12, +0x3f,0x65,0x84,0x4a,0x51,0x81,0x64,0x07,0x49,0xdb,0xcc,0x9b, +0xaa,0x78,0xa3,0x6e,0xdd,0x0e,0x8d,0x56,0xbb,0x43,0x7c,0x61, +0x60,0x41,0x40,0xc1,0xb1,0xb5,0xa7,0xbe,0x89,0x58,0x1a,0x75, +0xa7,0xf1,0x5e,0xe7,0xc5,0x0e,0xab,0x4a,0x5e,0xd7,0x5a,0xc5, +0x78,0xbd,0xd5,0xe1,0x74,0x9f,0x0c,0xef,0xf4,0x9e,0xb2,0x8e, +0xaa,0x8e,0x1a,0xeb,0x72,0xde,0xc6,0xdd,0xd0,0x45,0xdb,0xcd, +0x25,0xdb,0x25,0xcb,0x3d,0xd3,0xc5,0x91,0xbf,0xe7,0x7c,0xdd, +0xe5,0x9a,0x53,0xf4,0xe9,0xe8,0x98,0xa8,0xd3,0x5c,0xf4,0xe2, +0xb9,0x31,0xf8,0xd1,0xec,0x24,0x23,0x69,0x53,0xf9,0xcc,0xd8, +0x78,0x69,0x53,0xb9,0xf1,0x28,0x98,0xb1,0xff,0xc4,0xfd,0x9d, +0xf8,0x47,0x12,0x87,0x0e,0xcb,0xc8,0x9f,0x2e,0x4f,0x3c,0x7e, +0x74,0xac,0xbc,0xc0,0xaf,0x6c,0x50,0xae,0x5c,0x5e,0xce,0x89, +0x57,0x71,0x09,0xf9,0xb3,0xec,0x65,0xcd,0xe5,0x7a,0xc7,0x46, +0xfe,0x80,0xcb,0x5a,0xf7,0xc5,0x3e,0x9c,0xfc,0x43,0x59,0x2b, +0x41,0x07,0xd9,0x03,0x70,0x60,0xc5,0x7b,0xa6,0x64,0x1e,0x9a, +0xff,0xc5,0x0a,0x66,0xf3,0x08,0x9a,0xfe,0x45,0xe1,0xe5,0x44, +0xda,0x82,0xfd,0x3c,0x16,0x0b,0xd0,0x8d,0x74,0xa1,0xe3,0x3d, +0x4d,0xd5,0x89,0x3d,0xb0,0xdf,0x60,0xac,0x89,0xd0,0xd7,0x8d, +0xd1,0xbf,0x52,0xff,0xb5,0x86,0x04,0x67,0x84,0x9e,0x09,0x0d, +0x0e,0x0d,0xe6,0x23,0x20,0x58,0x73,0x7c,0xda,0x98,0xc0,0x30, +0x49,0x09,0x67,0x13,0x4e,0x29,0xc2,0x3a,0xfc,0xa6,0xa1,0x43, +0x4e,0x7c,0xb4,0x81,0x80,0x67,0x37,0x7a,0x3e,0xd5,0x5c,0x87, +0x3e,0x26,0xe0,0x83,0x1f,0x30,0x1b,0x23,0x95,0xa3,0x94,0xa3, +0xe3,0x0c,0x79,0x30,0x4d,0x00,0xb3,0x54,0xd8,0x9c,0x1b,0xdd, +0xcd,0xef,0x38,0xa9,0x72,0x6a,0x63,0xe4,0x84,0xa0,0xec,0x1d, +0xa2,0xbb,0x03,0xf3,0xee,0xe8,0xec,0xc0,0x6f,0x8d,0xe0,0xdb, +0xbd,0xc3,0xd7,0x20,0x6f,0xef,0xd0,0x35,0xc8,0xea,0xc5,0x2c, +0x46,0x04,0xea,0x44,0x61,0x5b,0x3a,0xcc,0x3f,0x0f,0x53,0x1a, +0xe0,0x23,0x17,0x50,0xf0,0x81,0x03,0x47,0x33,0x7a,0x78,0x5c, +0x96,0x89,0x4c,0xce,0xf2,0x62,0x98,0xdc,0xfe,0x70,0xb0,0x67, +0x84,0x6b,0x1d,0x77,0x36,0x92,0x7d,0xc6,0x6a,0x9a,0x6c,0xb5, +0x5e,0xe2,0xba,0xb6,0x7c,0x57,0xe3,0xce,0x5e,0x4b,0x37,0xfe, +0xa2,0xc5,0x45,0xc7,0x5b,0x07,0x17,0x7a,0xe1,0xa7,0xfe,0x38, +0x27,0x9c,0x93,0x35,0xa3,0x36,0x65,0xe2,0xcf,0x7e,0xd7,0x5a, +0x84,0xb7,0xf5,0xe1,0x36,0xce,0x14,0x97,0xeb,0xbd,0x9b,0x36, +0x28,0x6e,0x85,0x99,0xec,0x7f,0xb6,0xc4,0xaf,0xc5,0xdc,0x9f, +0xe8,0xe1,0xb4,0x1e,0x9c,0xfe,0xbf,0xb6,0xc4,0x67,0x0c,0x62, +0x06,0xe3,0x35,0x1e,0x42,0xa4,0xad,0x78,0xeb,0x98,0xb6,0xdc, +0x9c,0x0e,0x25,0xe1,0xb2,0x86,0x78,0x9b,0xc5,0x7a,0x21,0x82, +0xf4,0x89,0x47,0x0d,0xdf,0xa2,0x19,0x7e,0xa6,0x0f,0x53,0xd9, +0x13,0x4b,0x5d,0xd6,0x6c,0xda,0xd8,0x62,0xc5,0xff,0xf2,0xaa, +0xe5,0x9f,0x64,0x60,0x38,0x4a,0x8c,0xaf,0x8f,0xc2,0x75,0x3a, +0xfe,0x69,0x98,0x31,0x63,0x60,0x63,0x1d,0x11,0xd5,0x2e,0x0a, +0x6a,0xac,0xa8,0xed,0x24,0xed,0x29,0x36,0xc3,0x6f,0x18,0x69, +0x67,0xa0,0x2d,0xf1,0x6f,0xf7,0xec,0xf1,0xae,0xd7,0xf5,0xe6, +0xcf,0xdb,0x95,0x99,0x65,0x5b,0x71,0x02,0xa7,0x46,0xf0,0xb3, +0x51,0xd8,0x87,0x3a,0x6c,0x75,0x63,0x4d,0x4f,0x49,0x9b,0x56, +0x09,0xef,0x63,0x68,0xa7,0x63,0x6d,0xc2,0x89,0x0f,0x70,0xdf, +0x08,0x85,0xaf,0xb0,0xe1,0x67,0xe2,0xd3,0xec,0xda,0x76,0xb0, +0xca,0xc8,0x83,0xaf,0x70,0xae,0xb6,0x29,0x74,0xe0,0x64,0xc6, +0xe3,0xee,0xc4,0x61,0x4c,0xfd,0xb9,0xc9,0xa0,0xf1,0x61,0x3e, +0xdf,0xb7,0xf0,0x60,0xe1,0x41,0xd5,0xf0,0x25,0x27,0x71,0x52, +0x04,0x7d,0x1a,0x18,0x83,0xf3,0x38,0x06,0xd3,0x34,0x70,0x1a, +0x5e,0xc0,0xf3,0x70,0x01,0xd7,0xb1,0x38,0xeb,0x14,0xce,0x8f, +0xc0,0x99,0xd1,0x09,0xda,0x3c,0xe4,0x24,0x42,0x7b,0x1a,0xf8, +0x95,0x67,0x7b,0x67,0x79,0xa7,0xfb,0x71,0xe3,0xcb,0x05,0x5f, +0x02,0xc7,0x70,0x2d,0x1e,0xa3,0x7d,0x7d,0x26,0x46,0xc3,0x5a, +0x88,0xa6,0x71,0xeb,0x8c,0x04,0x1a,0x07,0x35,0x70,0x10,0x8d, +0xb5,0xc1,0x58,0xac,0xbd,0x28,0xd4,0x82,0xed,0x08,0x3b,0xfe, +0x27,0x94,0x12,0x03,0x78,0xde,0xcf,0xd6,0x4e,0xd4,0xb4,0xdc, +0xa0,0xcf,0x76,0x48,0x35,0x2d,0x1f,0xf4,0xb3,0x68,0x34,0xb9, +0x1f,0x1f,0x18,0xb0,0x03,0xe2,0x52,0xd2,0x0b,0x85,0x50,0x80, +0xdf,0xe3,0x3d,0x16,0x8a,0x20,0x5f,0x2a,0xa9,0xe3,0x36,0x51, +0x52,0x67,0x8a,0x50,0x45,0xb0,0x8b,0xb1,0x0f,0x4b,0x6a,0x54, +0x1a,0x63,0x61,0x46,0x26,0x2c,0x2a,0xa6,0x4d,0xef,0xd5,0xc5, +0x2f,0x70,0xc6,0xaf,0x7d,0x50,0x3e,0x98,0x83,0x99,0x3a,0x98, +0xcc,0xaa,0x15,0xf9,0xde,0x92,0x8a,0x7e,0x5e,0xc8,0xc8,0x6e, +0x51,0x7a,0xc1,0xea,0x65,0xc9,0x8d,0x37,0xc1,0x12,0x7a,0xa3, +0xe1,0x7e,0xb6,0x78,0xe2,0xce,0xac,0x3e,0xdb,0x22,0xdd,0xb9, +0xa3,0x9f,0x85,0xd5,0xe2,0xaf,0x64,0x14,0x86,0xb5,0x86,0x05, +0x4f,0x51,0x55,0xf4,0x64,0x97,0x09,0x4b,0xa9,0xa7,0xef,0x30, +0x60,0x65,0xdf,0xce,0x25,0x38,0x0c,0x53,0x61,0x98,0x19,0xd7, +0x17,0x37,0xd3,0xe7,0x8a,0x80,0x42,0xec,0x96,0x6a,0x6d,0x46, +0xbd,0xaf,0xb5,0xa9,0x05,0xeb,0x58,0x41,0xc9,0x8f,0xc0,0x30, +0xce,0xc4,0x61,0x46,0x1e,0x94,0x84,0x48,0x02,0xe6,0x4c,0xba, +0xad,0x5c,0x17,0xd3,0x5b,0x2e,0x29,0x59,0xc6,0x57,0x9e,0xeb, +0x3e,0xdb,0x53,0xe1,0xc4,0x17,0xe7,0x14,0xe4,0xe4,0xe5,0x16, +0x3b,0x96,0xb9,0xd5,0x1e,0xb2,0xf1,0x36,0x38,0xb2,0x2f,0xb0, +0xc8,0xfa,0xff,0xae,0x90,0xd9,0xc6,0xef,0xc9,0xd7,0x2b,0xb4, +0x2c,0x6d,0xaa,0x2b,0x9b,0x50,0xda,0xec,0xa4,0x3d,0x2b,0x35, +0x27,0x39,0x27,0x29,0xd7,0x2c,0x83,0xf7,0xd8,0x6f,0xa8,0xbd, +0xcb,0x8c,0x3b,0x8f,0x57,0xd8,0xb3,0x71,0x67,0xe3,0xcf,0xc4, +0x59,0x65,0xf0,0x47,0x75,0x1d,0x8c,0x8d,0x6d,0xab,0x9c,0xf8, +0x82,0x9c,0x02,0x49,0x44,0xf3,0x15,0x4c,0x25,0x35,0xa0,0xe0, +0xd2,0x5d,0x03,0x9f,0xb7,0xe0,0xe7,0x13,0x1a,0x99,0x13,0x07, +0x1b,0x7a,0x91,0x95,0x91,0x99,0x41,0x36,0xde,0x4e,0x4e,0x1e, +0xf6,0xe5,0x07,0x6b,0x7c,0x9a,0xb9,0x33,0xd2,0x1f,0x45,0x34, +0x50,0x27,0x0e,0xd1,0x26,0x51,0x3e,0x8a,0x87,0x22,0x43,0x4e, +0xb9,0xcc,0x0e,0x86,0xa9,0x78,0x84,0x49,0x4c,0x49,0x90,0x74, +0x32,0x53,0xf1,0x63,0xd2,0x06,0x0b,0xad,0x58,0xe1,0x24,0x2e, +0x23,0xad,0xe3,0x4b,0xad,0x59,0x59,0xc1,0x46,0xd2,0xf6,0xef, +0x17,0x56,0x2c,0xc8,0x39,0x11,0x1b,0xd9,0xb2,0x16,0x16,0xa7, +0x4f,0x6e,0x19,0x5f,0x66,0xc3,0x76,0xa0,0x0f,0x29,0x17,0x2e, +0x79,0x5c,0x84,0x03,0xe3,0x1a,0x94,0x4d,0xcb,0x3e,0xb9,0x47, +0xc4,0x4b,0xc3,0xc2,0x25,0xda,0x85,0x97,0x83,0x27,0x11,0xe4, +0x51,0xe9,0x3b,0xd8,0xda,0x8b,0x5b,0xff,0x34,0x98,0x3f,0x51, +0x78,0x41,0x05,0xbf,0x16,0xe5,0xe1,0x6b,0x65,0x54,0x31,0x04, +0x15,0x5c,0xd6,0x4f,0x59,0xc2,0xf6,0x3e,0xdc,0xfe,0x84,0xd2, +0x76,0xd8,0x40,0xde,0x94,0xfe,0x50,0x7b,0xbd,0xf3,0x9a,0xf9, +0x7d,0xa7,0x27,0xde,0xd9,0xfd,0xfc,0xd6,0xa2,0xfd,0x15,0xba, +0x75,0x97,0x87,0xba,0x6f,0x35,0x3e,0xa7,0x11,0xdb,0xc8,0x40, +0x98,0xc6,0x3a,0xef,0xb2,0xd4,0xd5,0xb7,0xd4,0x6b,0x35,0xeb, +0xb3,0xba,0x44,0x81,0x51,0x8b,0x46,0x97,0xc1,0x80,0xa5,0xa6, +0xfd,0xce,0x83,0xeb,0x0f,0x73,0xe8,0x0f,0x93,0x08,0x4e,0xda, +0x0c,0x93,0x58,0x38,0x8c,0x93,0xc8,0x06,0x98,0xf4,0x98,0x11, +0x2e,0xe3,0x73,0x0a,0xa6,0x4d,0x60,0x95,0x2e,0xae,0x92,0xaa, +0x3e,0x98,0xa0,0x3e,0x1e,0xd1,0x17,0x52,0x28,0x30,0x05,0x7d, +0x56,0xfc,0x15,0xd4,0xc9,0x23,0x64,0x36,0x33,0xa0,0x38,0x13, +0x98,0xc7,0xc8,0x50,0x06,0x94,0x2e,0xfb,0x92,0x88,0x39,0x82, +0xa2,0x90,0x83,0x96,0x13,0xeb,0x15,0x29,0x55,0x1c,0x05,0xcc, +0xa2,0xbd,0x21,0xd8,0x31,0xe1,0xee,0xa1,0xae,0x81,0xce,0x9c, +0x78,0x1f,0x53,0xc9,0xf5,0xca,0x8b,0x0d,0xfd,0xed,0xdd,0x56, +0x83,0xf6,0x97,0x5d,0xcf,0x77,0xf3,0x5a,0x15,0xc6,0x35,0xe6, +0x0d,0x23,0x23,0x6d,0xd7,0x8b,0xef,0x73,0x9d,0xe2,0x0c,0x23, +0xb8,0xc9,0x1e,0xd3,0x73,0xd4,0x37,0x36,0xb1,0x68,0xb3,0xeb, +0x74,0xec,0xb3,0x73,0xe5,0xeb,0x8c,0x9a,0x4d,0x3a,0x2c,0xcc, +0x1c,0xf4,0x9c,0xd5,0x3d,0x39,0xa1,0xb4,0x87,0xfc,0x0e,0x95, +0x8b,0x58,0xd3,0xc9,0x0b,0xb0,0xf2,0x2d,0x3b,0x0f,0x1f,0x11, +0xe3,0xe3,0x07,0x82,0xf7,0x51,0x82,0xac,0x0a,0xca,0x3d,0xa8, +0x0c,0xf3,0x74,0x71,0x1e,0xae,0x37,0x86,0xf5,0xa8,0xce,0x6a, +0x84,0x1e,0x08,0xd7,0x3f,0x25,0x2d,0xe5,0x29,0xe5,0xc2,0x8e, +0x1a,0x60,0x2b,0xb8,0xdf,0x20,0x40,0xca,0xe4,0xff,0x08,0x2b, +0x19,0x38,0xf0,0x9f,0xf5,0x8e,0x0e,0xf3,0xda,0x16,0xde,0xe2, +0x3f,0xeb,0x1d,0x57,0x71,0x37,0xb9,0xf5,0xdf,0xeb,0x1d,0xb6, +0xe6,0x7a,0x56,0xfb,0xdc,0x39,0xf9,0x77,0x06,0xc2,0x57,0x44, +0x5c,0x7b,0x03,0x10,0xfa,0xd0,0x8e,0x49,0x2e,0x48,0x2a,0x4a, +0x28,0xd2,0x4b,0xe2,0x23,0x7c,0xc3,0x3d,0xc3,0xbc,0x38,0xfc, +0x46,0x6c,0x16,0x94,0x18,0xd5,0x68,0xe3,0x13,0x76,0x8a,0x2e, +0x11,0x21,0xc1,0xf6,0xb3,0x75,0x99,0x54,0x43,0xb9,0x61,0xe6, +0x62,0x49,0xf1,0x48,0xaa,0x52,0xca,0x40,0xec,0x15,0x98,0xa2, +0x20,0x2a,0xdd,0x12,0xd6,0x32,0x62,0xb9,0x10,0x46,0x16,0x1e, +0xc2,0x4d,0x87,0xf1,0xe3,0xc8,0x34,0xea,0xd7,0xe5,0xe2,0x41, +0xad,0x08,0x26,0x55,0x70,0x3b,0x28,0xc9,0xaa,0x18,0x2d,0x7f, +0x95,0x3e,0x66,0x96,0xc3,0x87,0x6a,0x7b,0xae,0xf0,0xd0,0xe2, +0x84,0x14,0x70,0x21,0xdb,0xb1,0xe7,0x2e,0x8b,0xdf,0xe2,0x0e, +0x12,0xde,0xe1,0x77,0xef,0x68,0xa3,0x65,0x30,0x9f,0x63,0x5f, +0xa8,0x9a,0x6c,0xce,0x6d,0x0c,0x22,0x41,0xfd,0x5e,0x37,0x8f, +0x34,0x5b,0x04,0xf1,0x85,0xd6,0x45,0xbb,0x32,0x8d,0x38,0xd9, +0xc1,0x97,0x44,0x05,0x7b,0xbe,0x63,0x31,0x4a,0xd4,0x26,0xc7, +0xd3,0x4e,0xc5,0x06,0x87,0x1e,0x0f,0xe7,0xa3,0xcf,0x26,0xe6, +0xc5,0x66,0x9f,0x2b,0x98,0x05,0x7b,0x7a,0x70,0x57,0x1d,0x33, +0x08,0x2a,0xdd,0xa8,0xf2,0xc2,0x70,0x05,0x6e,0x31,0x81,0x2d, +0xbb,0xd9,0x13,0xdf,0x9e,0x8c,0x39,0xa9,0x88,0xfb,0x8d,0x41, +0x8d,0x09,0x5c,0x6a,0xa8,0xbd,0x50,0xb5,0xca,0x94,0x7f,0x3c, +0xd6,0x77,0xbd,0xfc,0x4a,0x2c,0xe5,0x89,0xb1,0x91,0x14,0x1f, +0x7c,0xca,0x37,0xb6,0xca,0xc1,0x0b,0xf8,0x8a,0x64,0x1d,0xcc, +0x35,0x4a,0x71,0x6a,0xcc,0xe6,0x8f,0xd7,0x1d,0xed,0x09,0x2c, +0xe3,0xf0,0x4f,0x4c,0x24,0x8d,0xd7,0x8b,0x7e,0x4a,0xb9,0x69, +0x96,0xca,0x87,0xed,0x3f,0xbc,0xd9,0x5e,0x93,0x83,0x2c,0x30, +0x23,0x99,0x66,0x19,0xfa,0x49,0x06,0xed,0x69,0x7c,0x58,0x7f, +0xd0,0x40,0x50,0x3b,0x87,0x0b,0x43,0x48,0x8a,0x7a,0xfc,0xce, +0xb3,0xda,0x5d,0x89,0x7c,0xf4,0x95,0x93,0x57,0x42,0xa5,0xd4, +0xcb,0x77,0xc2,0x7d,0xf2,0x12,0x72,0x97,0x8f,0xbe,0x9c,0x88, +0x16,0x6f,0xb4,0x96,0x60,0xae,0x74,0x90,0xe2,0xc8,0x72,0x56, +0xe8,0x5b,0x40,0x86,0xc7,0x4d,0x75,0x58,0x59,0x2b,0x1a,0x93, +0x91,0x7f,0xbf,0xd4,0x86,0xcb,0xac,0xc3,0x46,0x93,0x65,0xfa, +0x6b,0x2d,0x63,0x2c,0x4f,0x5b,0xc6,0xc4,0xab,0xf3,0x70,0x36, +0x19,0x12,0xb3,0xc0,0xad,0x3c,0xcf,0x3b,0xd7,0x27,0xfb,0x70, +0x7f,0x2d,0xaf,0xf9,0xdd,0x2a,0xf8,0x68,0xe7,0x0d,0xe3,0x83, +0x7c,0x9d,0x63,0xb3,0x45,0xa3,0x39,0xce,0x0a,0xc2,0x35,0xc7, +0x71,0xcb,0x89,0x8e,0xfb,0x5d,0xbf,0x52,0x48,0x2b,0x0f,0x43, +0xb0,0x82,0x00,0x5b,0xf6,0xac,0xec,0x61,0x59,0xf8,0x30,0x6f, +0x19,0x60,0x12,0xa0,0x1f,0xc8,0x09,0x76,0x6c,0x67,0xda,0xd3, +0xf3,0x43,0x95,0x9e,0xbd,0xfc,0x6e,0xc7,0x6f,0x0e,0x1d,0xa0, +0x54,0x27,0x9f,0x3d,0x1c,0x71,0x38,0xc2,0x27,0x82,0x3b,0x2e, +0x28,0xfe,0x3f,0xb7,0xf3,0xa4,0x89,0x5f,0x13,0x1a,0x4b,0x9a, +0xb2,0xb3,0xdb,0x94,0x84,0x12,0x1c,0x1c,0x77,0x18,0x93,0x2d, +0x85,0xfd,0xa2,0x37,0xf2,0x2c,0x16,0x63,0x10,0xc1,0x99,0xef, +0x65,0x26,0xea,0x25,0xdd,0xbf,0x19,0x92,0xcc,0x84,0xab,0xd1, +0x22,0x69,0x87,0xcd,0xb3,0xc6,0xf6,0xc1,0x73,0xb7,0x27,0x76, +0xd8,0x7c,0x3f,0x21,0x33,0x11,0x3e,0xb1,0xc3,0xe6,0x15,0xe8, +0x13,0x78,0x2c,0x6c,0x56,0x66,0x72,0x2b,0x73,0x1b,0xd3,0x6a, +0xb9,0x16,0xdc,0xc5,0x26,0x15,0x24,0x14,0xc6,0x17,0x1a,0x24, +0xf0,0xbe,0x8b,0xcd,0x96,0xef,0xda,0x56,0xeb,0xc8,0x27,0x24, +0x24,0x24,0x26,0x24,0x72,0xb2,0x69,0xb0,0x9d,0x00,0xa3,0x8d, +0x0c,0x3a,0x1b,0x08,0xa1,0x94,0x92,0x7e,0x10,0x4e,0xc2,0x0e, +0x1d,0x73,0x3c,0xe2,0xca,0xe1,0x5c,0x26,0xbf,0x22,0xb7,0x3a, +0xab,0x96,0x93,0x99,0xe1,0x17,0x44,0x5c,0x84,0xb9,0xd4,0x8d, +0x3c,0xc0,0x49,0x92,0x8a,0xed,0x13,0xe6,0x42,0x6e,0x4e,0xbb, +0x12,0xdc,0x80,0x5d,0xec,0xf8,0xb7,0xd2,0xd6,0x98,0x2f,0x9f, +0xe0,0x97,0x6c,0xc7,0x4c,0xf8,0xf2,0x19,0xfd,0x2e,0x1c,0xfa, +0x43,0xaa,0xde,0x53,0x07,0x6b,0x58,0x71,0x1d,0xb6,0x10,0x98, +0xfb,0x84,0x52,0x42,0xfa,0xbf,0x73,0x9f,0xd1,0xef,0xa0,0x9e, +0x4f,0xfc,0x55,0x0f,0xed,0xb4,0x50,0x0f,0x6e,0x0b,0x6c,0x3a, +0x56,0x63,0x1f,0xc2,0x67,0x3b,0x64,0x5b,0xa5,0x9b,0x57,0xa7, +0xf1,0x2d,0xf6,0xbd,0xb7,0x6b,0x9f,0x16,0xfe,0x38,0x0b,0xd4, +0x4f,0x91,0x56,0xb5,0xfa,0x2d,0xd5,0xca,0x5d,0x95,0xbc,0xfb, +0x23,0xbb,0x1f,0xac,0xae,0x73,0xe3,0x51,0xf8,0x0b,0xa9,0xbe, +0x58,0xfa,0x7d,0xea,0x03,0x8b,0x14,0xfe,0xf8,0x1e,0x9f,0x9d, +0x2e,0x3a,0x1c,0x8d,0x16,0x7a,0x24,0xd3,0x38,0xdd,0x20,0x59, +0xbd,0x33,0x8d,0x0f,0x1d,0x0b,0x1e,0x0c,0xe8,0xe6,0x70,0x76, +0x10,0x49,0xd2,0x8c,0x57,0x3b,0xb3,0xaf,0x9b,0x76,0x95,0xeb, +0xa7,0xae,0x86,0x4b,0x5d,0xa5,0x5d,0xf6,0x31,0xd1,0x61,0xf1, +0xa3,0xc8,0x58,0xcb,0x7f,0xe2,0xe4,0x8e,0xb0,0x86,0x79,0xc7, +0x06,0x15,0x61,0x09,0xd3,0x9a,0x91,0xd1,0xa0,0x54,0xc9,0x1a, +0x67,0xc8,0x19,0xe0,0x62,0xf6,0xf0,0xa9,0xf8,0x02,0xa5,0x7c, +0x16,0x96,0x26,0x44,0xb7,0xe1,0xa2,0x08,0xb9,0x41,0x70,0x61, +0x4f,0xf8,0x86,0xf9,0x85,0x1e,0xe9,0x3e,0xc2,0x67,0x95,0xa7, +0x55,0x26,0xd7,0x71,0x0d,0x58,0xd0,0x0f,0x91,0xed,0x18,0xd9, +0xa7,0x4b,0x03,0x95,0x19,0x9a,0xb2,0x18,0x1e,0x82,0xcb,0x0c, +0x50,0x41,0xb1,0xcb,0x49,0x6e,0x04,0x16,0x65,0xc2,0x76,0x88, +0x54,0x80,0x45,0xac,0x4c,0x73,0x5c,0x8e,0xe0,0x2a,0x26,0x53, +0x4b,0xca,0xd4,0xef,0xc8,0xcd,0xed,0x56,0x92,0x75,0x69,0xb3, +0xb8,0xcf,0x8c,0x8c,0x2b,0x0e,0x4b,0x3b,0x03,0x63,0xc7,0xbf, +0x24,0x51,0x4c,0x54,0x66,0x44,0xe6,0xa9,0x8c,0x9e,0xb2,0xce, +0x9a,0x86,0x6a,0xd7,0x06,0xde,0xed,0xa0,0xb9,0x93,0xa5,0x77, +0x70,0x61,0x60,0xe1,0xd1,0xfc,0x9c,0xb4,0xac,0x8c,0xf4,0x4c, +0x0e,0x36,0xb5,0x8b,0xcb,0x2d,0x60,0x27,0x63,0xed,0x71,0xc0, +0x6b,0xd3,0x91,0x7c,0x0b,0xbe,0x27,0xb3,0x33,0xa7,0xb9,0x20, +0x29,0x3c,0x29,0x2c,0x31,0xdc,0xc4,0x51,0xd5,0x69,0xab,0x6f, +0x9e,0x05,0x7f,0xaf,0xe4,0xfb,0xa6,0xbe,0xfa,0x84,0xe3,0xf1, +0xc7,0xe3,0x8e,0xef,0x35,0x58,0x69,0x8a,0xac,0x23,0xbd,0x0a, +0x93,0x6b,0x7f,0xed,0xbd,0xd4,0xc5,0x9d,0x0b,0x3a,0x13,0x18, +0xa0,0x60,0x13,0x14,0x68,0xae,0xb8,0x9d,0x49,0x33,0x96,0xbb, +0xce,0xfc,0x54,0xd4,0x78,0x2b,0x46,0x29,0xff,0x74,0x6e,0x54, +0x9e,0x62,0x4c,0xec,0xd9,0x73,0x71,0x51,0x30,0x1d,0xe5,0xf9, +0x9a,0x46,0x9c,0x02,0x1f,0x86,0xa6,0x84,0x9e,0x09,0x0b,0x9b, +0x25,0x0f,0x97,0x41,0x81,0xbc,0x06,0x15,0x40,0x54,0xf9,0x09, +0x1c,0x7b,0xd1,0xf1,0x37,0xdd,0xc5,0x68,0x65,0x04,0x56,0x6b, +0x71,0x3d,0x22,0xac,0x5f,0x8a,0x8e,0x06,0xe0,0x88,0x2b,0xe8, +0xb8,0x80,0x43,0xfd,0xac,0xf0,0x11,0x2e,0x20,0x46,0xb5,0xd6, +0xa3,0xae,0x8f,0x2f,0x3e,0xec,0xfc,0xa9,0xe1,0xa5,0x59,0x11, +0xef,0xbe,0xc5,0x6e,0xbb,0xc9,0x6e,0x9f,0xef,0x8e,0xbd,0x08, +0xfb,0x07,0xb2,0x73,0xf9,0xa8,0x01,0xcc,0x3d,0x2a,0x17,0x79, +0x2d,0xfa,0xf6,0x7d,0x85,0x5a,0x1d,0x27,0x76,0xdb,0xb9,0x1d, +0xf1,0x6a,0x8a,0x4b,0x4e,0xc5,0xe9,0xbf,0x49,0x48,0xc7,0x69, +0x05,0x28,0x57,0xb5,0x72,0x96,0xfa,0xf6,0xcd,0xfb,0x17,0x1a, +0x56,0x99,0xf0,0xaf,0xfa,0xee,0x5f,0xbc,0x7c,0xb3,0x56,0xa5, +0x4d,0x7b,0xc0,0xb9,0xc5,0xa3,0x39,0x2b,0xb6,0x37,0x13,0x0e, +0xf0,0x86,0x05,0x72,0xa7,0x04,0x3f,0x62,0xdd,0x6d,0xd4,0x69, +0x52,0xe7,0xec,0xc8,0x77,0xba,0xf4,0x9a,0xb4,0x98,0x72,0xa2, +0xee,0x0a,0xb2,0x14,0x0b,0x5e,0xb3,0xb8,0x74,0x32,0x14,0xcc, +0xc3,0x02,0x46,0xaa,0xd9,0xfd,0x86,0x0c,0x82,0x59,0x33,0x9a, +0xb5,0x50,0x87,0xef,0x86,0xaa,0x4d,0x60,0xd2,0x8c,0x26,0xdd, +0xa6,0x26,0x68,0x6e,0x0b,0xe6,0x76,0xa8,0x42,0x81,0x90,0x8a, +0x0d,0xda,0xdb,0x82,0xbd,0x1e,0x0b,0xc5,0x70,0x9e,0x72,0x9f, +0xa2,0x56,0x89,0xfb,0xcc,0x95,0xb8,0x4f,0x60,0xbb,0xe2,0x45, +0xca,0x7d,0x32,0x24,0xee,0x63,0x96,0x21,0xb7,0xcd,0xe8,0x3f, +0xdc,0x47,0x8e,0x72,0x9f,0xed,0x91,0xf6,0xeb,0x9d,0xde,0x73, +0x1f,0xa6,0x05,0x18,0xa6,0x4b,0xe2,0x3e,0x53,0x6c,0xd8,0x1f, +0xb0,0x84,0xdc,0x49,0xbb,0x91,0x3b,0x52,0x7c,0xc9,0xfd,0x9e, +0xcf,0x2f,0x01,0xe9,0xed,0xbc,0x5a,0x9a,0x56,0x8e,0x7e,0xd1, +0x58,0x55,0x67,0x73,0x65,0x27,0xd7,0x22,0x2e,0xb2,0x84,0xa7, +0xec,0x41,0x27,0xdb,0x83,0x7a,0xde,0xb6,0x85,0x0e,0x65,0x4e, +0xd5,0x8e,0x1e,0x7c,0xf9,0xa1,0x2a,0xef,0xba,0xc3,0x16,0x81, +0x06,0xc1,0x07,0xc2,0x38,0x0c,0x03,0x1d,0x62,0x81,0x4c,0xfb, +0x04,0xef,0x99,0x62,0x81,0x53,0x18,0xe1,0xb9,0xc8,0x92,0x4e, +0xf1,0x83,0x3e,0x16,0xa6,0x9f,0x83,0x4f,0xe3,0x9e,0x26,0x1c, +0xed,0xe4,0x83,0x28,0x63,0x6e,0x8d,0xc2,0x63,0xb3,0x93,0xcc, +0xe4,0x5e,0x03,0x73,0xe6,0x2c,0x30,0x4a,0xc6,0x22,0x6b,0x26, +0xb0,0x7a,0xe2,0x2e,0x13,0x61,0x97,0x1a,0xea,0xb3,0x19,0xc6, +0x72,0xd4,0x45,0x37,0x65,0x67,0xd4,0x28,0xdd,0x16,0x36,0x75, +0x8b,0x9b,0x06,0x29,0xee,0x33,0x3d,0x4c,0xf6,0x5f,0x31,0x1b, +0x71,0xbe,0x7c,0x05,0x66,0x14,0xc3,0x9c,0x04,0x50,0xe7,0xda, +0x06,0x31,0x90,0xc9,0xea,0x49,0xeb,0x49,0x6c,0x37,0x4c,0xe4, +0xfd,0xf0,0x73,0x07,0x54,0xdc,0x8a,0xd3,0x38,0x0a,0xc4,0x14, +0xd9,0xc4,0xfc,0xe4,0xf2,0xb8,0x3c,0x83,0x44,0x3e,0xe2,0xd0, +0x89,0x43,0x27,0x8f,0x70,0x73,0x70,0x04,0x3e,0x5e,0x85,0x5b, +0x8c,0x5f,0x5b,0x30,0x38,0xcd,0x45,0x79,0xd3,0x2e,0xc5,0x1a, +0x8b,0x7b,0xd7,0x1a,0x1e,0x64,0xbc,0x98,0x05,0x4b,0x19,0xc3, +0x68,0xbb,0x28,0x77,0x45,0xb7,0xa8,0xe3,0xe1,0xae,0xb3,0xb7, +0x30,0xe9,0x86,0x72,0x77,0x99,0xe1,0xf2,0xc2,0x81,0x44,0xa5, +0x84,0xb6,0xb3,0xdd,0x7f,0x28,0xa0,0x35,0x73,0x26,0xf5,0xdb, +0xb4,0x34,0x85,0x76,0x88,0xa1,0xc1,0xe5,0x17,0xf8,0x8c,0x3d, +0x11,0xd2,0x68,0x9f,0x57,0x96,0x5f,0x97,0xdb,0x32,0x2b,0x0d, +0xbf,0x2c,0x9a,0xd7,0xbe,0xd4,0x7e,0x9f,0xa1,0xe6,0x8e,0x03, +0xd5,0xc6,0xfc,0xf5,0x8b,0x7d,0xa3,0x4d,0x97,0xea,0x35,0x3a, +0x35,0x2f,0xaa,0x73,0xe3,0xaa,0xb2,0xf3,0xc4,0xbe,0xd9,0xac, +0xd5,0xbc,0xda,0xd5,0x96,0xef,0x76,0x6c,0x72,0x68,0xb1,0xe2, +0xe0,0x03,0x67,0xf2,0x08,0x8c,0x36,0xb3,0xa0,0x77,0x84,0x9c, +0x8d,0x3d,0x13,0x7b,0x36,0x96,0x83,0x45,0x4c,0x04,0xae,0x39, +0x86,0xf2,0x66,0x73,0x6d,0xdf,0x1c,0x05,0xf6,0x38,0xac,0xe3, +0xc4,0x63,0x14,0x72,0xd9,0xb5,0xe9,0xf4,0x19,0xd6,0xbb,0xd0, +0x5f,0xb6,0xef,0x33,0x6d,0xb5,0xe0,0x60,0xfe,0x63,0xf2,0x18, +0x8c,0x36,0x48,0xb5,0x16,0x4d,0x89,0x0f,0x4e,0x76,0xc1,0x4f, +0x74,0x17,0x75,0xba,0xf0,0x63,0xf0,0x51,0x23,0x7c,0x95,0xf7, +0x27,0xa5,0x4d,0x93,0x85,0x5f,0xc8,0x85,0xec,0x8c,0x56,0x25, +0xd0,0xd4,0x41,0xfd,0xe5,0x6c,0x9a,0x91,0x9c,0xb0,0xaa,0x81, +0x38,0x8c,0x68,0xdf,0x34,0x6b,0xb3,0x71,0xe5,0x3b,0xcd,0x87, +0x76,0xd7,0xeb,0x70,0x62,0xc6,0x29,0x32,0xdc,0x35,0x7c,0xaf, +0xea,0xb2,0x79,0x11,0x7f,0x48,0x5b,0x6f,0xb7,0xbe,0x35,0x17, +0x25,0x7e,0x4e,0x7e,0xb2,0x7d,0xa8,0x37,0xa6,0xd8,0x70,0xb3, +0x03,0x26,0xe7,0xfe,0xc8,0xb5,0x61,0x85,0x94,0xf8,0x3e,0x0a, +0x2b,0xd8,0xa0,0x3d,0xe6,0x38,0xc9,0x6a,0x3d,0x77,0x59,0xad, +0x51,0x75,0x87,0x82,0x5e,0xb0,0x87,0xb1,0xa2,0x0d,0x93,0x22, +0x65,0xbe,0x5f,0x6f,0x6a,0xfb,0x53,0x49,0x18,0x94,0x4a,0x9a, +0x9c,0xc3,0x27,0xe0,0x8e,0xc7,0x90,0x91,0x0c,0xf9,0x82,0xb9, +0x90,0x2d,0xa9,0x6e,0x7a,0x42,0x30,0xab,0x03,0xa6,0x44,0xe4, +0x1f,0x0b,0x3c,0x83,0x5f,0x4f,0x9e,0x58,0x4c,0x80,0x16,0x1a, +0x3d,0x06,0xac,0xaf,0xaa,0xb7,0xe9,0xb5,0x34,0xf2,0x96,0x83, +0x7b,0x2f,0xeb,0xb5,0x72,0x78,0x39,0x86,0xd8,0xe9,0x68,0xea, +0xa8,0x59,0xd7,0x58,0xf0,0x77,0x3a,0x2f,0x5f,0x6c,0xbd,0x4c, +0xdd,0x62,0xa3,0x10,0x4e,0x4e,0xa6,0x9f,0x8a,0x39,0x1e,0x7e, +0x5c,0x9a,0x06,0xfe,0xe0,0x35,0x53,0x62,0xf2,0xe4,0xf6,0xed, +0xd7,0x5d,0x7f,0xce,0x32,0x29,0xb2,0x5e,0xa1,0xb9,0x79,0x9b, +0xfa,0xac,0x8e,0x25,0xef,0x0b,0x6b,0x7d,0x65,0x08,0x33,0xd8, +0xe3,0x38,0xdd,0x09,0xe7,0xad,0xc6,0x2f,0xea,0x2d,0xf8,0x9b, +0x7f,0x95,0xfc,0x15,0x2f,0xe9,0xda,0xe6,0x0f,0x08,0x15,0xd2, +0xb4,0xf0,0xd9,0x28,0xc5,0x41,0xfc,0xb4,0xba,0x59,0x0e,0xaa, +0x84,0x35,0x44,0x0f,0x6e,0x0d,0xb2,0xe2,0x3c,0x3c,0x40,0x2c, +0x17,0xaa,0x22,0xb3,0x51,0xad,0xd8,0x80,0xaf,0xab,0xa8,0xac, +0x2d,0xaa,0xe4,0x44,0xc3,0x01,0x21,0x87,0x2d,0x6d,0x2c,0xe9, +0x2c,0xec,0xe5,0xe2,0x0d,0x88,0x3e,0xa8,0x8b,0x7e,0x38,0x67, +0x62,0x4f,0x93,0x3c,0xd3,0x9a,0x9d,0xd7,0xaa,0x24,0x78,0xc0, +0x27,0x03,0xac,0x3c,0x38,0xcb,0x7e,0x24,0xce,0x68,0xa0,0x8b, +0x8b,0x57,0x4d,0x64,0xbe,0x14,0x96,0x14,0xd6,0x14,0x36,0x71, +0x62,0xe6,0x80,0xec,0x73,0xb6,0xe2,0x7e,0xe9,0xcf,0x59,0x6f, +0x38,0x88,0xc5,0xa9,0x24,0xc8,0xe0,0xa8,0xb9,0xb7,0x8d,0x6f, +0xa1,0x57,0xe1,0x91,0x2c,0x17,0x8a,0xdc,0x03,0xcb,0x3c,0x8b, +0xbd,0x6d,0x8d,0xf4,0x2d,0xb7,0xd9,0x48,0x45,0x4b,0xb7,0xbd, +0x79,0x0e,0x33,0x1a,0x40,0x8d,0x6b,0xc2,0x35,0x6c,0x52,0x7e, +0x62,0x7e,0x42,0xbe,0x71,0x3a,0xef,0xb3,0xde,0x74,0xd5,0x76, +0xcd,0x3a,0x5b,0xbe,0xbd,0xb1,0xa1,0xb7,0x7c,0x80,0x83,0x65, +0x14,0x6b,0x1b,0xd3,0xcf,0xa3,0xae,0x5f,0xee,0x8f,0x9e,0x85, +0x60,0xfe,0xa6,0x67,0xc9,0x4b,0xbd,0xe5,0x68,0x6e,0x5c,0x83, +0xe6,0x52,0x3d,0x78,0xf3,0x3f,0xe9,0x77,0x58,0x81,0x85,0xa4, +0x17,0x6f,0xbc,0xd5,0x5e,0x80,0x57,0x8d,0xa0,0x86,0x75,0xd8, +0x8e,0x1f,0xaa,0xe1,0x22,0x0d,0x49,0xe9,0x72,0xf9,0x2d,0x90, +0xff,0x3e,0xfb,0x67,0x29,0x51,0x7f,0x18,0x0a,0x13,0x98,0xac, +0x95,0xf0,0xc5,0x56,0x58,0xb5,0xa3,0x6c,0x80,0xc7,0x85,0x17, +0x71,0xca,0x0d,0xdb,0xbb,0x92,0x3e,0xab,0x54,0xa1,0xe7,0x22, +0x73,0x58,0xd5,0x70,0xf5,0x01,0xb5,0x1e,0x07,0xfe,0xc6,0xc3, +0x2b,0xc0,0x15,0x3e,0xe7,0xba,0xc4,0x9f,0xd8,0xdc,0xae,0xcc, +0xce,0xe4,0x4e,0x8d,0x64,0xfe,0x20,0x2a,0xaf,0xa1,0xc1,0x74, +0x2a,0x7e,0xd1,0x6e,0xc5,0xdf,0x7b,0x38,0xf6,0x4b,0xdb,0x4b, +0x0a,0x59,0x25,0x31,0x50,0x0b,0x65,0x94,0xc7,0x7b,0xb8,0x58, +0xb1,0x42,0x1b,0x1e,0xc2,0xaa,0xcb,0x20,0x97,0x09,0xcb,0x29, +0x24,0xc8,0xc2,0xe5,0x14,0x66,0xc3,0x0f,0xb8,0xb2,0x7c,0x84, +0xc7,0xef,0x60,0xc9,0x3c,0x4a,0xb3,0x2c,0x14,0x24,0x8e,0x37, +0x9d,0x40,0x39,0x9e,0x03,0xb5,0x03,0xff,0x5d,0xec,0x70,0x3f, +0x7b,0xfc,0xdb,0xe3,0x31,0xc7,0x15,0xb1,0x44,0x07,0xb2,0x19, +0x6f,0x9c,0xb5,0x7a,0x29,0xee,0xc4,0x49,0xb5,0x14,0xf9,0x1e, +0x80,0x4f,0xfe,0x86,0xaf,0xe2,0xe1,0x73,0x2e,0x81,0x49,0xc1, +0x99,0xcf,0x70,0x2a,0x38,0xe1,0x17,0xd5,0xc3,0x3c,0xea,0x83, +0xdc,0xea,0x97,0x5e,0xf0,0x25,0x07,0x57,0x29,0x7b,0x9b,0x03, +0x4f,0x89,0x71,0xb3,0x46,0xa3,0x66,0xc5,0x41,0x53,0xfe,0x92, +0xdb,0x90,0x53,0x9f,0x2d,0x07,0xe3,0xea,0x04,0xb4,0xd1,0x0b, +0xb5,0x98,0x98,0x34,0x69,0x7c,0x8b,0x93,0x5a,0x89,0x61,0xeb, +0xce,0xf6,0x3d,0xd5,0x07,0xcd,0xf8,0x6b,0xce,0x57,0x6c,0x46, +0x2c,0xb9,0x20,0x64,0x89,0x03,0x7e,0x68,0x84,0x9c,0xea,0xd2, +0x2e,0x3b,0xfe,0xde,0x9f,0xa3,0x30,0xab,0x56,0x2a,0x21,0x56, +0x20,0x6c,0x25,0x7f,0x24,0xc2,0x97,0xb9,0x3f,0x64,0x9f,0x6c, +0xe3,0x0f,0x9e,0xb2,0x3b,0x65,0x1d,0x11,0xf3,0x9c,0x07,0xa6, +0x1d,0x59,0x26,0xe6,0x7b,0x39,0x20,0x1d,0x48,0x98,0x98,0x6b, +0x86,0x31,0x67,0xf6,0xc9,0x21,0x6f,0x0e,0x3c,0x73,0x66,0x93, +0x1c,0x4e,0xb5,0x80,0xa9,0xcc,0x99,0x45,0x66,0x11,0xe6,0x51, +0xb6,0xd1,0xb3,0x22,0x20,0x9c,0x38,0x35,0x59,0xb6,0x58,0x55, +0xd3,0x11,0xde,0xe1,0x58,0xe7,0xd0,0x64,0xc3,0x09,0xeb,0xf0, +0x2c,0x79,0xf6,0xa0,0xe1,0x6d,0x02,0x2c,0xe7,0xfe,0x66,0x96, +0x45,0x29,0x9f,0x34,0x51,0xf4,0xa2,0xce,0xc9,0x4b,0x2a,0x43, +0x60,0x24,0x77,0x85,0xe9,0x2a,0xc9,0x1d,0x4c,0x56,0x4a,0xb9, +0x78,0xee,0x91,0x24,0x77,0xf2,0xbd,0x19,0x4c,0x62,0x22,0xf1, +0x2b,0xe7,0xb5,0x2a,0x1a,0x1c,0xfe,0x1b,0x41,0x1c,0xda,0x74, +0xfb,0x4c,0x1a,0x9c,0xe8,0x07,0xda,0xf7,0x99,0x34,0x9b,0x73, +0xb2,0x6d,0x18,0x4a,0xb2,0x8f,0x66,0xf9,0xa7,0x1f,0x6d,0xac, +0xe4,0x2d,0x87,0x8c,0x86,0xf4,0xdb,0x9d,0xdc,0xf9,0xdc,0xc0, +0x3c,0xff,0x7c,0x7f,0xe5,0xf0,0x75,0xa7,0x56,0x47,0x5e,0x6f, +0x7f,0x30,0x36,0x72,0xd1,0xba,0x86,0xb7,0xb6,0xd0,0x37,0xd3, +0xfa,0xcf,0x1c,0x54,0x7d,0x65,0x4d,0x75,0x4d,0x9d,0x65,0x35, +0xef,0xe1,0x62,0x6f,0x6f,0xe5,0xe2,0x99,0xee,0x99,0xee,0x95, +0xe6,0x6c,0xcb,0xdf,0x76,0xbf,0xe9,0x3a,0xe2,0x7a,0xf4,0xb8, +0xff,0x71,0xff,0x50,0x8d,0xe8,0xfd,0x31,0x7b,0x62,0x12,0x4c, +0xf8,0xb7,0x67,0x5f,0xc7,0xfe,0x1a,0xc7,0x61,0xc0,0x10,0x84, +0xb0,0x4f,0xe3,0x1f,0x27,0xfc,0x90,0xcc,0x8d,0x1b,0xc1,0x74, +0x72,0x18,0xe5,0xdc,0xf1,0x13,0xfd,0x45,0x5d,0xce,0xfc,0x08, +0x4c,0x6e,0x00,0xc5,0x9c,0xb7,0x9c,0x10,0x82,0xde,0xe4,0x81, +0xc3,0x4d,0xbb,0xcb,0x66,0xd5,0x6d,0xbc,0x7a,0xc7,0xce,0x16, +0xd5,0x5a,0x4e,0x8c,0xa6,0x0c,0xe0,0x71,0xe5,0xfd,0x0b,0x03, +0x1d,0xce,0x75,0xbc,0x81,0xd5,0x2e,0xdb,0x2d,0x5e,0x52,0xce, +0x88,0xf0,0x8e,0xa0,0xda,0x15,0x38,0x21,0xce,0x87,0x15,0xfb, +0x70,0x85,0x38,0x03,0x4f,0x5c,0x01,0x35,0xd6,0x7c,0x7c,0x0b, +0x81,0x55,0xb0,0xf8,0x77,0xd0,0xe8,0x02,0xdd,0xfd,0xb9,0xbc, +0x39,0x6a,0xac,0xa6,0x40,0x67,0x25,0x2e,0xe6,0x84,0x36,0xc1, +0x8d,0x76,0x7b,0xdd,0xdf,0x70,0x1b,0x6c,0x46,0xe5,0x9e,0x4e, +0x1e,0x37,0xc0,0x37,0x6b,0x61,0xb9,0x11,0x68,0xd0,0xa6,0x7b, +0x24,0xc4,0x90,0x0c,0x4f,0x69,0xd2,0xd9,0x68,0x62,0xd2,0xf9, +0xf2,0xf7,0xd7,0xdf,0x4f,0x3a,0x9f,0xe7,0x3d,0x34,0x5d,0xf6, +0x3b,0x6a,0xfb,0x17,0x1d,0x96,0x26,0x9d,0xc7,0x6a,0xff,0x7b, +0xd2,0xd9,0x5d,0xdd,0xd5,0x30,0x30,0x33,0x30,0x23,0x28,0xdd, +0xd5,0x9a,0xef,0x37,0xef,0x37,0xec,0xd4,0xf3,0x75,0xf4,0x71, +0xf1,0xf5,0x70,0x39,0xed,0x12,0xe3,0x1a,0x13,0xaf,0xc7,0x0f, +0x9f,0x1b,0x39,0x37,0x1c,0xf7,0x9f,0x49,0xe7,0xfa,0xd8,0xda, +0xd8,0xda,0xb8,0xf8,0x63,0xf1,0xc7,0xe2,0x02,0x3a,0x73,0xf8, +0xa3,0x37,0xbc,0x6f,0x7b,0x0d,0x71,0xc2,0x1d,0x49,0x92,0x2c, +0x04,0x56,0x6a,0xd1,0x87,0x3c,0x6c,0x40,0x39,0xe9,0x66,0x69, +0x95,0xe5,0x44,0x3f,0x7a,0xc2,0x66,0x08,0x61,0x44,0x95,0x71, +0x63,0x32,0x06,0xb7,0x34,0x47,0x04,0x79,0x51,0x4b,0x94,0x67, +0x71,0x25,0x3c,0x26,0x25,0xbb,0xf2,0x36,0x64,0x6c,0xee,0xcd, +0xe3,0x83,0xef,0xfb,0x3e,0xf6,0xbe,0xc9,0x61,0x2d,0xb6,0x93, +0xa6,0xc7,0xf9,0xaf,0xd3,0x5f,0x1b,0x4b,0x93,0xca,0x7e,0xca, +0xf6,0x9b,0x38,0xd9,0x30,0x9c,0x20,0x68,0x8b,0xb7,0xc0,0x96, +0x86,0xcb,0xc9,0x32,0x4d,0x22,0xce,0x66,0x8a,0x9b,0xb2,0xdb, +0x32,0x9b,0xd5,0xd3,0xf9,0x60,0x0b,0x3f,0x33,0x2f,0x4b,0x0e, +0x3b,0xc6,0x17,0xec,0xd0,0x7e,0x37,0x67,0x64,0x27,0x23,0x16, +0x0b,0xcf,0x89,0xf8,0x1c,0xb7,0x08,0xcf,0x59,0x38,0x2a,0x3e, +0x27,0xc2,0x73,0xd8,0x26,0x3e,0x67,0x47,0x66,0xd2,0x93,0x9d, +0xf4,0x44,0xfe,0xdd,0x6c,0x61,0x1a,0x81,0x0a,0x74,0x00,0x35, +0x6d,0x3a,0x0e,0xb5,0xf5,0xe8,0x48,0x39,0xf0,0xdf,0xe3,0xd0, +0x5d,0x17,0x1c,0x19,0x3f,0xfc,0x7a,0xc7,0x37,0xb8,0x08,0x3f, +0xaa,0xd5,0x93,0xd4,0x0e,0x3e,0xf9,0x11,0x3e,0x8f,0x85,0x19, +0x74,0x1c,0x26,0x21,0x79,0x88,0x9f,0x50,0xc3,0xcb,0xd7,0x0c, +0xf2,0xb8,0x0a,0xe4,0xb6,0x3d,0xf7,0x83,0xaf,0x38,0x48,0x1d, +0x62,0xfe,0x95,0x13,0xb6,0x10,0x03,0x68,0xef,0x67,0xf1,0x87, +0x09,0xb9,0xbd,0xff,0x1a,0x60,0xa1,0x41,0x87,0xc0,0x22,0xf4, +0xc1,0x85,0xff,0x3d,0x0c,0xff,0x7c,0x4b,0x7f,0x46,0x4a,0x61, +0x35,0x9c,0xdc,0x8f,0x35,0x06,0x6c,0x9f,0xb8,0x8c,0xf4,0x42, +0x20,0x14,0x62,0xbd,0x34,0xf5,0x12,0xf4,0x7e,0xea,0x45,0x0d, +0xa4,0xea,0x82,0x06,0x42,0x34,0xc1,0x64,0x3f,0x54,0x5c,0x88, +0x8a,0x8a,0x7d,0x0e,0x57,0x5f,0xd7,0xbc,0xcc,0x82,0xcf,0x67, +0x09,0x65,0x78,0x1c,0x4f,0x4f,0x20,0xda,0xa3,0x4c,0x5b,0x5e, +0x7e,0x9b,0x92,0xac,0x78,0xfc,0x6b,0x56,0x78,0x88,0xe7,0x88, +0x98,0x49,0x7f,0x2b,0x93,0x11,0x0b,0x44,0x4d,0x12,0x37,0x70, +0x76,0xec,0x86,0x82,0x90,0x89,0x06,0x8c,0x24,0xfe,0xf6,0x98, +0x98,0xa3,0xa9,0x1a,0x7e,0x85,0x2c,0x72,0x75,0x86,0x7c,0x55, +0x45,0x55,0x7d,0xc5,0x05,0x4e,0x2c,0x1b,0x93,0x11,0xb6,0xee, +0x4e,0xe5,0x93,0x82,0x57,0x1c,0xfc,0x2e,0x26,0x13,0x88,0x81, +0xfc,0x61,0xcc,0x87,0x83,0x9a,0x78,0x10,0xd7,0xb1,0x59,0x5d, +0x69,0x5d,0x49,0x9d,0xba,0x69,0xbc,0x2f,0x7e,0x6e,0x87,0x53, +0xd5,0xe6,0x76,0x39,0xf2,0xd5,0xdd,0xa5,0xfd,0x05,0xd4,0x51, +0xab,0x63,0x0c,0x8e,0x69,0xc3,0x18,0x3e,0x18,0x83,0x07,0xd0, +0x36,0x22,0x95,0x80,0xa5,0xa1,0xc2,0x4a,0xaa,0xe3,0x31,0x07, +0x3f,0x78,0x2f,0x91,0x56,0x56,0x5e,0x7f,0xbe,0x95,0x13,0x8b, +0x47,0x64,0xd3,0xd9,0xda,0xbb,0xe5,0x3f,0xe5,0xbf,0xe6,0xa0, +0xfd,0x10,0xa9,0x9a,0x0f,0x73,0xb7,0x81,0xb2,0xca,0xf9,0x3e, +0x1e,0xb7,0x7c,0x87,0x53,0x6e,0x9b,0xfe,0xcc,0xa9,0x33,0x96, +0x1b,0xe6,0x6e,0xc4,0xed,0xaa,0x92,0x8e,0xc7,0x8a,0x9b,0xf0, +0xf5,0x0f,0xb5,0xff,0x70,0xd0,0x26,0xfe,0x48,0x1f,0x0a,0x73, +0x9e,0xc0,0xfe,0x3e,0x71,0xbe,0x21,0x28,0x2b,0xe3,0x39,0x8c, +0x81,0x50,0xd6,0x65,0xdd,0xb2,0xed,0xb8,0x78,0x7f,0x29,0xf5, +0xf7,0x8b,0x6e,0xc0,0xd7,0xbf,0x25,0x49,0xf2,0xb6,0xe9,0xf3, +0x61,0xe6,0x1a,0x50,0x55,0x29,0xed,0xe7,0x71,0xfb,0x9d,0x15, +0x37,0xdc,0x7e,0x90,0xb6,0xe0,0x1a,0x12,0xd0,0xa3,0x61,0xfb, +0xe4,0x7b,0xaa,0xac,0xcb,0x08,0xe6,0x33,0xd1,0x8e,0x89,0x49, +0xfc,0x36,0x31,0x51,0x01,0x18,0xb0,0xa7,0xd6,0x0e,0xa7,0x4f, +0x6e,0x8b,0xc6,0x1a,0x38,0x6f,0xe1,0x84,0x82,0x46,0x71,0x49, +0x71,0x55,0x71,0x23,0x27,0xa6,0x0f,0xcb,0x58,0xb6,0xf6,0x41, +0xc5,0xf3,0x3c,0x3a,0xb8,0x53,0xc5,0x18,0x52,0xeb,0xd4,0xe0, +0x5a,0xef,0x56,0xdf,0xce,0xef,0xef,0x56,0x1f,0x32,0xb9,0xc5, +0xc1,0x9e,0x3e,0x74,0x65,0x8e,0x56,0x07,0xd5,0x86,0x36,0x52, +0x3a,0xd4,0x87,0x2b,0x98,0xd2,0xba,0xd2,0xae,0xcc,0x7a,0xc3, +0x7c,0xfe,0x98,0x8d,0x87,0xbe,0xab,0x39,0x47,0xdd,0x66,0x6a, +0x7b,0x72,0x77,0x62,0xbf,0x4e,0x12,0x7f,0x52,0x27,0xdc,0xf0, +0xb8,0x19,0x87,0x09,0x86,0x10,0xce,0x1c,0xb7,0x0f,0x74,0x0e, +0xa0,0x64,0xcf,0xcd,0x10,0xf6,0x31,0x66,0x3b,0xd4,0x35,0x37, +0x68,0x53,0x68,0xd0,0xdf,0xd4,0xde,0xdc,0xd4,0xc6,0x59,0xc3, +0x9d,0x45,0x22,0x4b,0x43,0xb2,0x5a,0xa9,0xf7,0x2d,0x45,0xe1, +0x43,0xa6,0x2d,0x3b,0x9b,0x02,0x9f,0x0f,0x58,0x9d,0x74,0x39, +0x24,0xf8,0x27,0x6b,0x19,0x1e,0xdf,0xa6,0x74,0x4f,0x60,0x58, +0x7c,0x26,0xdc,0x26,0xc7,0x6a,0x7c,0x5a,0xfc,0xca,0x0d,0x3d, +0xf9,0xc2,0x83,0x25,0x96,0xd9,0x6e,0x1c,0x78,0x69,0x91,0x14, +0xfb,0xf4,0xff,0x45,0xd9,0x7b,0x46,0x47,0x71,0x6c,0xed,0xc2, +0x24,0x75,0x37,0x26,0x63,0x0a,0x37,0x02,0x4b,0xe4,0x9c,0x33, +0x88,0x2c,0x84,0x84,0x72,0x98,0x51,0xce,0x39,0x20,0x14,0x11, +0x42,0x80,0x04,0x48,0x80,0xc9,0xa0,0x1c,0x50,0xce,0x39,0xe7, +0x9c,0x25,0xb2,0x01,0x63,0x72,0xb4,0xc1,0x18,0x6c,0x6c,0x63, +0x7b,0xf7,0xb0,0x5b,0xe7,0xbd,0xd5,0xc2,0xe7,0xbc,0xf7,0x7b, +0xbf,0xfb,0xe3,0xde,0x35,0x6b,0x0d,0xb3,0x46,0xc3,0x4c,0x55, +0xed,0xf4,0x3c,0x55,0xbb,0xf6,0x76,0x4d,0xa6,0xdf,0x3f,0x8d, +0xb9,0x5c,0x92,0x58,0x1e,0x5f,0xc9,0xe1,0x32,0xcc,0x25,0xf9, +0xc5,0xd9,0x25,0x19,0xe5,0x52,0x92,0x40,0x96,0x73,0xae,0x7b, +0xbe,0x27,0xf5,0x1b,0x16,0x74,0xf6,0x5e,0x68,0x24,0xc7,0x85, +0xeb,0x06,0x6f,0x17,0x67,0x16,0xe6,0xd4,0x66,0xb7,0x73,0x62, +0x55,0xa7,0x62,0x0b,0x9b,0x71,0x33,0xe5,0x5e,0xdc,0x23,0x4e, +0x08,0x1d,0xc8,0x27,0xf0,0x25,0x78,0xb4,0xa2,0x07,0xc5,0x69, +0xad,0x28,0x7f,0x05,0x9b,0x60,0x5a,0x43,0xab,0x35,0xf0,0xb8, +0xe9,0xa6,0x4c,0x13,0x17,0x98,0xc3,0x82,0x8d,0x68,0x60,0x06, +0x06,0x6b,0x71,0xa1,0x39,0x2c,0x5c,0x85,0x3b,0xcc,0x60,0xc7, +0x5a,0x34,0x33,0x03,0x33,0xfc,0x92,0x3d,0xb1,0x87,0x20,0xd9, +0x50,0x79,0xdb,0x4c,0xb5,0xee,0x6d,0x12,0x0c,0x89,0x06,0x55, +0xca,0xe4,0x66,0xb3,0xed,0xd7,0xfa,0xff,0xca,0xbe,0x4b,0xa9, +0xb2,0x97,0x1c,0x96,0xb0,0x7b,0xb5,0x0c,0x16,0x68,0x6f,0xe3, +0xac,0x60,0x35,0x7b,0x72,0xce,0xe1,0xd5,0xde,0xdb,0x02,0xdb, +0x0e,0x5d,0x39,0x7a,0x57,0x1e,0xc2,0x27,0x2c,0x49,0xdf,0x54, +0xaa,0xbb,0x47,0xee,0x60,0x25,0xb3,0x2d,0xb3,0xe6,0xdb,0xeb, +0xaa,0xea,0x0b,0x9b,0xb9,0xed,0x7d,0x6f,0x9c,0x60,0xea,0x54, +0xc8,0x62,0x12,0xba,0x94,0x70,0xa8,0x42,0x46,0x36,0xe2,0x88, +0xc7,0x2c,0x8c,0xc0,0x29,0x64,0x2d,0x8e,0x78,0x4e,0xed,0x9d, +0x03,0x53,0x02,0xab,0xbf,0x6d,0xd3,0x80,0xe5,0x78,0xfe,0x37, +0xb8,0xda,0x8e,0xa5,0x6c,0x4e,0x51,0x56,0x59,0x6a,0xbe,0x71, +0x16,0xbf,0xcf,0x79,0xaf,0x9d,0xbb,0x03,0x87,0xc7,0x99,0xaa, +0xcc,0xa0,0x22,0xaf,0x72,0x9f,0xdc,0x29,0xe6,0x5e,0x39,0xbe, +0xb9,0x9e,0xa9,0x7b,0xa6,0x60,0xa1,0x1c,0x1a,0xe6,0x62,0x84, +0x19,0x44,0xcc,0xc2,0x4e,0x53,0xe8,0xa4,0x4a,0x7d,0xd2,0x0c, +0x5c,0x99,0x3d,0x46,0x86,0xba,0xa8,0xbf,0x25,0xcf,0x8c,0x07, +0x8b,0x17,0x5d,0x57,0x53,0x5e,0x52,0xa4,0x11,0xd5,0x0d,0x69, +0xb0,0x19,0xd3,0xba,0x21,0x3a,0x92,0x49,0x5f,0x75,0x55,0x07, +0xec,0xd7,0xe4,0xb5,0xf2,0x28,0xbb,0xaf,0x7d,0xc5,0xa3,0x9b, +0x5b,0x2a,0x78,0x92,0xb9,0xb8,0xf9,0x37,0x96,0x7e,0x66,0x09, +0x99,0x85,0x9b,0x3f,0xb2,0xc2,0xba,0x59,0x04,0x65,0x1f,0x41, +0xc6,0x88,0xeb,0x70,0x05,0xa1,0x7f,0x18,0x22,0xdd,0x97,0xdc, +0x3f,0x19,0x86,0x80,0x0c,0x87,0xb0,0x63,0x15,0x73,0x28,0x86, +0xbb,0xbe,0xfa,0xe5,0x26,0x18,0xa6,0x51,0xd1,0xcc,0x2f,0xea, +0xdd,0xd1,0x67,0x72,0x8d,0x03,0xaf,0x4e,0x8c,0x63,0xbc,0xab, +0x03,0x6a,0xf6,0xd7,0x71,0xd0,0xd4,0x29,0x6e,0x66,0x92,0xbb, +0xe2,0x7b,0xa2,0xaf,0x18,0x5c,0xe2,0x8f,0xea,0x1c,0xd2,0x0b, +0x32,0xe4,0xf0,0xa5,0x09,0x5c,0x63,0x82,0x6c,0x03,0xec,0xbc, +0x1d,0x39,0xcc,0x36,0x81,0x60,0x46,0x5f,0x73,0xb3,0xde,0x3c, +0x19,0x55,0xec,0xde,0xd2,0xb6,0xb2,0xfa,0x0a,0xce,0x14,0x36, +0xb1,0x21,0xf8,0xd5,0x7c,0xea,0x00,0xed,0xd2,0x8d,0x79,0xb0, +0xad,0x83,0x09,0xbf,0x25,0xc1,0x4a,0xa9,0x83,0xd2,0x69,0x9d, +0x93,0x86,0xc7,0xec,0x39,0xe3,0x23,0x21,0x61,0x7a,0x53,0xa9, +0xf2,0x24,0x50,0x4c,0x48,0x98,0x5f,0x8a,0xf3,0x9e,0x27,0xaa, +0xc6,0x74,0x5e,0xb8,0x72,0x16,0x38,0x4e,0x4c,0x65,0xea,0x2b, +0x2a,0x2a,0x8b,0x6a,0x38,0x3b,0x28,0x20,0x41,0x4d,0xbe,0x0d, +0xfe,0xa5,0x26,0xbe,0x7c,0x96,0x4b,0xae,0x4d,0x9a,0x35,0x27, +0x04,0xc1,0x4a,0x12,0x6c,0xeb,0x67,0xe1,0xed,0xd4,0xea,0xcb, +0x17,0x54,0x14,0xb4,0xa6,0x36,0x72,0xd4,0x6e,0x6d,0x48,0x8a, +0x6d,0x86,0x7d,0x36,0x5d,0x6f,0x5f,0x26,0xa7,0x3a,0xa3,0x26, +0xb9,0x6e,0x70,0x63,0xe0,0x1e,0xf1,0xdb,0xb6,0x79,0x27,0x2e, +0xda,0x22,0xf5,0x80,0x59,0xf0,0xe0,0xcd,0xb7,0x14,0x51,0x46, +0x32,0xf1,0x1b,0xef,0x6a,0xc1,0x82,0xf5,0x79,0xd4,0x94,0xe7, +0xdc,0xdf,0x7d,0x2b,0xb0,0x9f,0x13,0x0e,0x0c,0xdc,0x22,0xb8, +0x7d,0x30,0x7f,0x79,0x3e,0xd3,0xfc,0x39,0x7f,0x59,0x8f,0x45, +0x47,0x73,0x32,0xc0,0xf7,0x29,0x78,0x56,0x1c,0x35,0x30,0x86, +0x9c,0xbc,0x90,0x90,0x1d,0x9d,0x7f,0xb1,0x50,0x4a,0xba,0x0b, +0x42,0x9b,0x37,0xa0,0xda,0x2a,0xf5,0xe5,0x99,0xb2,0x0c,0x6d, +0x31,0x08,0xac,0x98,0x83,0x4b,0xb6,0xed,0xc0,0x59,0x9b,0xf2, +0x4d,0x78,0xe0,0x6e,0x5c,0xed,0xae,0xec,0x3b,0x7f,0xe9,0xe2, +0x19,0x4a,0xbc,0x7d,0x70,0x2b,0x5f,0xda,0x82,0x32,0x58,0x78, +0x30,0xfe,0xc8,0xd9,0x90,0xd0,0x29,0x83,0x39,0x7b,0x13,0x70, +0x0e,0x4c,0x60,0xc1,0x16,0x69,0xd0,0x98,0x00,0xf3,0x70,0x02, +0xd5,0xa8,0xa1,0x42,0x0d,0xc9,0xee,0xa4,0x30,0xf0,0xc2,0x4f, +0x06,0x4b,0xf1,0x04,0x6e,0xe9,0xf0,0x63,0xb1,0x59,0xcc,0x26, +0x7f,0x82,0x89,0x62,0x1a,0x9e,0x93,0xaa,0x74,0x9a,0xc0,0x1a, +0x82,0x53,0x84,0x22,0x98,0xc2,0x08,0xbf,0x23,0x43,0x44,0xdd, +0x57,0x82,0x2e,0x93,0x24,0xde,0x27,0x80,0xa2,0x17,0x22,0x2b, +0x2c,0x83,0x1e,0x32,0x1f,0xff,0xfa,0x95,0x85,0xbf,0x28,0x1d, +0x9a,0x85,0x7f,0x7d,0x64,0x71,0x2a,0xf6,0x11,0x01,0x7a,0x45, +0x60,0xc6,0xde,0xdd,0x40,0x7a,0xfa,0x15,0x81,0x7a,0x3d,0x9f, +0xc6,0x0c,0xfc,0xcc,0xf4,0x0c,0x24,0x10,0x85,0x93,0x22,0x70, +0xc0,0x89,0x1d,0xd8,0x08,0xce,0xa4,0xbf,0xa2,0xa5,0xb2,0xba, +0x9a,0x73,0x86,0xf3,0xda,0x58,0x3b,0x8b,0xb5,0xb8,0x1c,0x70, +0x43,0x05,0xda,0x98,0xca,0xe4,0xf4,0x52,0xd5,0x5a,0xd6,0x32, +0x51,0x49,0x0b,0x3b,0x58,0x9f,0x88,0x4b,0x79,0xaa,0x0d,0x50, +0x0b,0x2b,0xb0,0x95,0x4d,0x49,0xb9,0x9c,0x9a,0x98,0xca,0x81, +0x03,0xd3,0xac,0x79,0x43,0xff,0x85,0x45,0x41,0x1d,0xaf,0x51, +0x66,0x52,0x6f,0xd7,0xc2,0xc1,0xb2,0x46,0x1a,0x25,0x42,0xb2, +0x0e,0xe7,0x84,0xe5,0x70,0xe0,0xd4,0x88,0x53,0x98,0xe4,0xdc, +0xd4,0xaa,0xe8,0x1c,0xd9,0x65,0x3e,0xdc,0x3b,0xd0,0x62,0x9f, +0x27,0x87,0xc3,0x98,0xb8,0x92,0x98,0xb2,0xe8,0x4a,0x1a,0x99, +0x8f,0xd9,0x1f,0x71,0x3c,0xe4,0xc2,0xe1,0x50,0xa6,0x36,0xe9, +0x70,0xe1,0xfe,0x92,0xa0,0xdc,0x29,0x16,0xfb,0x93,0xfd,0x53, +0xdd,0x13,0xa8,0xc9,0x8c,0xb2,0x02,0x6f,0xe6,0xb0,0xef,0x21, +0xdf,0x03,0xfe,0x1c,0x5a,0x58,0xc1,0x2a,0xc6,0xd6,0xdc,0xc8, +0x7a,0x0b,0x05,0x7f,0x93,0x20,0x9d,0xc4,0xf8,0xc6,0xfb,0x25, +0xfa,0x71,0x38,0x9d,0x49,0xca,0x8a,0xcf,0x89,0xcb,0xa1,0xd2, +0x7f,0x07,0xff,0x45,0xfe,0x80,0xe9,0x60,0x88,0xd3,0xdf,0xc3, +0xf2,0x56,0x71,0x99,0x18,0x26,0x2c,0x6f,0x61,0xaf,0x9b,0x90, +0x3b,0x65,0x3d,0x35,0xcd,0x4d,0x4d,0x66,0xdd,0x56,0x37,0x1d, +0x4a,0x9a,0xf8,0x5d,0x95,0x26,0xf5,0xd6,0x4d,0xd7,0x1f,0xd4, +0xbe,0xc9,0xff,0x48,0x31,0xfa,0x44,0x13,0xb8,0xcd,0x06,0x6e, +0x71,0xdb,0x62,0xbc,0xcb,0xec,0xaa,0xcb,0x2d,0xef,0x5b,0xe6, +0x41,0x7c,0xfe,0xb6,0x9a,0x2d,0x3d,0xea,0x36,0x36,0x26,0x8e, +0x3b,0x3d,0xa4,0x6a,0x20,0x0d,0x04,0xbf,0x7e,0x0f,0x5f,0x53, +0x5a,0x86,0x11,0xe4,0x3d,0xe4,0x2c,0x64,0xf1,0x6b,0x5b,0x32, +0x1b,0xbf,0xfe,0x83,0x55,0xf8,0xe1,0x0b,0xd2,0x89,0xf8,0xb7, +0xde,0x74,0xfc,0xd9,0x04,0x7e,0xc6,0x89,0xe2,0x72,0xa3,0x4f, +0x53,0xbb,0xc5,0xed,0x30,0x91,0x86,0x83,0x0f,0x7f,0x10,0xaf, +0xf2,0x3d,0x25,0x7b,0x0a,0xeb,0x61,0x64,0x26,0x28,0xc7,0xc0, +0x6a,0xae,0x8a,0xd2,0xef,0x98,0xab,0xd1,0xbd,0x97,0x3a,0x8d, +0x2e,0xf0,0x27,0x4c,0x8f,0xe9,0x1c,0xd1,0xe2,0x16,0x18,0xbd, +0x62,0x82,0x67,0x05,0x4c,0xf7,0xdb,0x58,0xe7,0x52,0xed,0x52, +0xe5,0xe8,0xb6,0xc5,0x4a,0x43,0x5b,0xbb,0xdc,0x92,0xbf,0x76, +0xa3,0xf9,0x76,0xf9,0xa3,0x1c,0xef,0x1c,0xef,0x5c,0x0f,0x4e, +0x31,0x17,0xee,0x92,0x16,0x19,0x2c,0xc1,0x2d,0xaf,0xc1,0xb5, +0x15,0x0d,0xd9,0xd4,0xbc,0xd4,0xc2,0xa4,0x02,0x79,0x06,0x7f, +0xd0,0x79,0x9f,0xb3,0xbf,0x2b,0x87,0x6f,0xcc,0x60,0xf5,0x72, +0x9c,0x6e,0x0e,0xd3,0xe7,0x48,0xd5,0xe1,0xd5,0x70,0x18,0x4e, +0xb7,0x80,0x2f,0x18,0x0f,0xcd,0xdd,0x9a,0xab,0xf4,0xf3,0xcd, +0xf9,0x5f,0x6f,0x5d,0xb9,0x1d,0xfb,0x9c,0xfa,0x99,0xb4,0x0e, +0x2a,0xcf,0x21,0x58,0xdb,0x01,0x69,0x94,0x18,0xa8,0x75,0x6a, +0xc1,0xf0,0x4d,0xf9,0x2d,0xfc,0xc2,0x5b,0x7a,0xd7,0x3d,0xaf, +0x70,0x30,0x4f,0xaa,0xdb,0xf2,0x50,0xa0,0x64,0x2c,0xd7,0xbf, +0x78,0x7f,0x86,0xa5,0x3f,0x9f,0x12,0x98,0xe1,0x91,0xb4,0x97, +0x83,0x25,0x26,0x64,0x39,0x0e,0x79,0xcd,0x8a,0x56,0xf8,0x13, +0x49,0x7f,0x9a,0xf6,0x36,0xe9,0x2d,0xf7,0x96,0x39,0x8a,0x93, +0x82,0x91,0x73,0x9e,0xe1,0x93,0xeb,0x93,0xbd,0x37,0x8b,0x13, +0x7a,0xc1,0x92,0xcc,0xc1,0x21,0xbf,0xb3,0x50,0x30,0x87,0x20, +0xfb,0x3b,0xb0,0x0c,0x16,0x50,0x8f,0x45,0x7f,0x72,0x18,0x0e, +0x61,0x60,0x9d,0xb4,0xdd,0xc8,0xd2,0xd7,0x2c,0x33,0xf6,0x13, +0x51,0xa4,0x12,0x3c,0x7b,0xdd,0x70,0x37,0x06,0x99,0x43,0xd0, +0x72,0x4c,0x37,0x87,0xf4,0x85,0x18,0x64,0x01,0x41,0xeb,0x31, +0xdc,0x0c,0xc2,0x17,0x61,0x9e,0x19,0xe4,0xcd,0xe8,0xf9,0x0b, +0x3a,0x5b,0xb1,0xf3,0x1d,0xa4,0xb4,0x62,0xca,0x53,0x38,0x0b, +0xf3,0x6e,0xb5,0xec,0x62,0x06,0x16,0x8b,0x11,0xa4,0xe1,0x5d, +0x0e,0x28,0xc5,0xc1,0x04,0x1a,0x09,0xf4,0xd9,0xa6,0xfe,0x6b, +0xcf,0xdb,0x5e,0x72,0x8d,0x78,0xde,0x04,0x34,0x58,0xd3,0xf5, +0x3a,0x6b,0xcd,0x8d,0x38,0x39,0x58,0xb3,0x47,0xe7,0x06,0xad, +0x74,0xdf,0xe2,0xd6,0xed,0x77,0x33,0xe8,0x3b,0x93,0x03,0x7c, +0xd6,0xca,0xe2,0x75,0xcd,0xbb,0xdc,0x8d,0xec,0x2c,0xe4,0x4e, +0xc5,0x72,0x1a,0x2f,0xeb,0x5b,0xcb,0x7a,0xb9,0x35,0x8f,0x81, +0x7e,0x78,0xc7,0x54,0x61,0x14,0x93,0xd0,0xab,0x24,0x8e,0x63, +0x70,0x13,0x0e,0x6d,0x79,0xb6,0x5d,0x55,0xf8,0x43,0x78,0x46, +0xa7,0x6e,0xfc,0x9a,0xc5,0xf0,0x11,0xef,0xc1,0x78,0x21,0x3b, +0x56,0x48,0x11,0x4c,0x49,0x27,0xdc,0x6d,0xc4,0xbb,0xed,0xf0, +0xdb,0xe5,0x5e,0x58,0x24,0x2e,0xba,0xae,0xb7,0x5b,0x9c,0x8a, +0x8b,0x7a,0x43,0xe0,0xb9,0x1c,0xbb,0xac,0xa0,0xcb,0x44,0x5c, +0x66,0xf1,0x69,0x72,0x33,0x3b,0xd0,0x43,0x3d,0x9c,0x22,0x48, +0x1d,0x3f,0xd4,0x19,0xd8,0xe2,0x33,0xe6,0x08,0xf6,0x13,0xd4, +0x56,0x9c,0x05,0x6d,0x56,0xcc,0xb0,0x22,0x6b,0x70,0xe7,0x0b, +0x56,0x58,0x40,0xad,0x5d,0xfd,0x05,0xa8,0x33,0xed,0x6b,0xc8, +0x0b,0xd0,0x5d,0xc3,0xa2,0x03,0x2e,0x27,0x96,0x15,0xe6,0x85, +0xf2,0x3c,0x77,0x3b,0xbe,0xc5,0xa7,0xc3,0xbd,0xc1,0x95,0x83, +0xcd,0x2f,0x49,0xaf,0xed,0x55,0xe3,0x1a,0x59,0x9d,0xb4,0x2d, +0xa0,0xdf,0xae,0x5f,0x27,0xdd,0x91,0xb4,0x21,0xdf,0xb6,0x34, +0xf5,0x14,0x74,0x5a,0xe5,0xf3,0x3e,0x96,0x96,0xc6,0xda,0x76, +0x1c,0x50,0xf0,0xe7,0x72,0x54,0x4a,0x3b,0x1d,0xaa,0x8f,0x43, +0xd9,0x6d,0x99,0x07,0x1e,0x4a,0xe6,0xdd,0x98,0x90,0x52,0xad, +0x7a,0x85,0x35,0x4c,0x55,0x5a,0x46,0x27,0x91,0x2b,0x2c,0x23, +0xcd,0xe7,0xba,0x2e,0x74,0x53,0x76,0x12,0xd2,0x4d,0x21,0x51, +0xc3,0xc5,0xfa,0x4b,0x95,0x91,0xb1,0xc1,0x31,0xc1,0x51,0x21, +0x75,0x59,0xbc,0x7f,0xa3,0xe3,0x0d,0xf7,0x6a,0x07,0x7f,0x3e, +0xfe,0x60,0xc2,0xfe,0x84,0x20,0xb3,0x08,0xbd,0x08,0x9d,0xe3, +0x37,0x7a,0xaf,0xdc,0xec,0x7e,0x60,0x47,0x09,0x81,0xad,0xa3, +0x95,0xad,0xd5,0x81,0xe4,0x03,0x49,0xc1,0x49,0x95,0x55,0x65, +0x75,0xc5,0xed,0xed,0xd1,0x2d,0xf1,0x0d,0x89,0x3e,0xd5,0xfc, +0xca,0x3d,0xf8,0xe5,0x41,0x9c,0x7b,0x3c,0xd6,0x8a,0x6f,0x3f, +0xd7,0x7e,0xa1,0xf5,0x52,0x80,0xc7,0x5e,0x2f,0xef,0x3d,0x4e, +0xf9,0xbc,0x87,0x73,0x9d,0x57,0x9b,0x7d,0xa9,0xc7,0x94,0xc0, +0x7d,0xf4,0xb1,0x5f,0xba,0xe6,0xed,0x77,0x9a,0xc3,0x57,0x40, +0x11,0xc9,0x55,0xa8,0x82,0xab,0x2c,0xae,0x11,0x57,0x11,0xca, +0x5c,0x44,0x0e,0x9e,0x98,0x88,0xe3,0xc1,0x00,0x3d,0xba,0x19, +0x18,0x26,0x94,0x13,0xd4,0xaf,0x01,0x7d,0x06,0x27,0x8f,0x40, +0xfd,0x3a,0xe9,0x85,0xfe,0x6a,0x4a,0x52,0xcd,0x51,0x9f,0x11, +0x28,0xa1,0x21,0x45,0x2e,0x95,0xfa,0xd9,0xe6,0x75,0xb9,0x7c, +0x60,0x83,0x73,0xb7,0x5b,0x0d,0x87,0xdf,0x44,0x90,0x60,0x33, +0x1f,0x2b,0x2f,0xe7,0xfa,0xbd,0x7c,0x61,0x55,0x41,0x77,0x72, +0x13,0x87,0xb9,0xa1,0x24,0xdf,0xa3,0xc4,0x22,0xdd,0xa1,0x3e, +0x9b,0x0f,0xac,0xf1,0x6c,0xf0,0x2a,0xe7,0x30,0xfe,0x1b,0xe2, +0x67,0xe2,0x6c,0xea,0xe4,0x54,0xe3,0xc1,0x57,0xd5,0xd4,0x5e, +0xc9,0x6c,0xe3,0x20,0x10,0x35,0x49,0xab,0x57,0xa7,0x73,0x83, +0x53,0x79,0x0d,0x6f,0x51,0x6d,0x56,0x2a,0x2b,0xe4,0xa0,0x74, +0x15,0xe9,0x31,0xef,0xd3,0xad,0xd1,0x6f,0x28,0xe7,0xad,0xaf, +0x1b,0xf6,0x18,0xb6,0x70,0xa2,0x32,0xee,0x22,0xce,0x47,0x22, +0x4b,0x55,0x81,0xd7,0xc7,0x29,0xec,0xd6,0x2c,0x29,0xbd,0xb7, +0x96,0x69,0x4a,0x48,0xad,0x56,0xbd,0x23,0x65,0x8b,0xcf,0x65, +0xc5,0x0f,0x4e,0xe4,0xdb,0xae,0x86,0xeb,0xf9,0xfd,0x52,0x1a, +0x8b,0xcc,0x4a,0x47,0xdb,0x92,0x92,0xb7,0xc7,0xe0,0x46,0x5a, +0xb1,0xfb,0x01,0x7b,0xfd,0x62,0xdf,0xa5,0xfa,0xa8,0xfd,0x2d, +0xfc,0x8c,0x60,0xdc,0x1c,0x81,0xe4,0x74,0x51,0x7e,0x6e,0x41, +0x36,0xfd,0xb9,0x4c,0xe6,0xdb,0xa5,0x3f,0xab,0xc1,0x78,0xf5, +0x42,0x8a,0x02,0x86,0x74,0x6f,0xbc,0xa6,0xff,0x2d,0x07,0x11, +0x1d,0x58,0xc2,0x04,0x16,0x1d,0x28,0x3a,0x54,0xcc,0x41,0x6d, +0xbb,0xb8,0x8e,0xb9,0xdc,0x18,0xd7,0x1c,0xd5,0x6a,0x18,0xc9, +0x1f,0x95,0x1d,0x36,0x0b,0xa6,0xc8,0xf0,0xb1,0x1c,0xba,0x99, +0x10,0xf7,0xfd,0x9e,0x81,0x5e,0x1c,0xd6,0xc9,0xe0,0x2c,0xa3, +0xa3,0xbe,0x56,0x07,0x87,0x19,0x95,0x58,0xf0,0x4f,0xea,0xbe, +0x6d,0xee,0x69,0x8f,0x32,0xe7,0x3b,0xce,0x5e,0x3b,0x77,0xf5, +0x3c,0xb7,0x1d,0xaf,0x99,0xc1,0xb5,0xcd,0xe2,0x72,0x99,0xb0, +0x7c,0x29,0x9a,0xb0,0x49,0x72,0xa9,0x59,0x60,0x75,0x72,0x62, +0xb9,0xea,0x5b,0x61,0x5e,0x87,0x38,0xef,0x01,0x8b,0xae,0xc2, +0x39,0xb2,0xaf,0xd6,0xb7,0x32,0x20,0x5f,0x1e,0xc8,0x67,0x79, +0x64,0xb9,0xa4,0x3b,0x70,0xc2,0x1e,0xf8,0x9a,0x04,0x3b,0xf9, +0x3b,0x7a,0x7b,0xb4,0xf9,0xf1,0xb9,0x05,0x79,0xb5,0xa9,0xd5, +0x1c,0x9e,0xc2,0x1d,0x24,0xd1,0xfd,0xb2,0x67,0x0a,0xfd,0x61, +0x39,0x93,0x5a,0x98,0x52,0x94,0x58,0x42,0xa7,0xda,0x49,0xb9, +0x5a,0xb1,0x53,0xa9,0x5b,0xa9,0x7b,0x59,0x03,0x6f,0xd0,0x66, +0xdc,0x6b,0x7b,0x9b,0x83,0xa5,0x1d,0xa8,0xc7,0x84,0x94,0x1c, +0x2a,0x3b,0x42,0x51,0xaf,0x5b,0x3b,0x2a,0x33,0xd9,0xe5,0xb9, +0x6d,0x09,0x95,0xa6,0xa9,0xfc,0x41,0xdb,0xbd,0xc6,0x5e,0x96, +0xdc,0x7c,0x26,0xb6,0x31,0xba,0x35,0xb2,0xcb,0x38,0x8a,0x8f, +0x30,0x38,0x36,0x08,0x7a,0xfd,0xe4,0xe0,0xc4,0x84,0x39,0x1e, +0x72,0x0d,0xa1,0xa0,0xd4,0x40,0x06,0x2b,0x18,0xbb,0x1d,0xc6, +0x7a,0xdb,0x0d,0x4b,0x2d,0xf9,0xe6,0x9a,0xda,0x9a,0xb2,0x06, +0xce,0x1c,0x32,0x67,0xe3,0x4d,0x9c,0xc1,0xaa,0xe7,0xf8,0xdf, +0x51,0x81,0x0e,0xa6,0xee,0x1f,0xd0,0x6b,0x48,0x41,0xef,0x64, +0xac,0xf8,0x0c,0x7a,0x1f,0xc2,0x0d,0x56,0x3c,0x46,0xe3,0xc9, +0x9e,0xc3,0x9e,0x87,0x3d,0x43,0x29,0x66,0xf9,0xd0,0x39,0x0f, +0x74,0x0d,0x51,0x17,0x47,0x9b,0xc0,0x68,0xbc,0xc0,0xda,0x1d, +0xb4,0x0d,0x75,0x38,0x12,0x63,0xc4,0x57,0xc6,0x56,0xc6,0x57, +0x25,0x48,0xf7,0xbc,0x87,0x4a,0x3d,0xed,0x5f,0x4a,0x49,0xb6, +0xb5,0x52,0x46,0x72,0x69,0x42,0x69,0x52,0x49,0x12,0x07,0x46, +0x54,0x75,0x0f,0x96,0x06,0xd4,0xee,0x2b,0x34,0xf7,0xe5,0xd3, +0x3c,0xb3,0xac,0x93,0x28,0x76,0x36,0xd7,0x27,0x31,0x8e,0xf1, +0xae,0x89,0x74,0x98,0xa3,0x99,0xa4,0x92,0xf8,0xf2,0x38,0x8a, +0x9d,0xa7,0x63,0x3e,0xc9,0x29,0xce,0x2c,0x4d,0xab,0xe0,0xa8, +0x9d,0xa7,0x3b,0x65,0xbb,0xe5,0x48,0xd8,0xb9,0x5a,0x70,0x21, +0xe1,0x89,0x11,0x67,0xc2,0x8e,0x86,0x0e,0x76,0x0c,0xfb,0xbb, +0x63,0xfa,0xe7,0xdd,0xba,0xa9,0x32,0x98,0x28,0xd5,0xf3,0x72, +0xc6,0x59,0x2b,0x70,0x62,0x85,0xa5,0xb4,0x5b,0xf7,0xf1,0xa2, +0xb4,0x5b,0x97,0xd6,0xf5,0x9f,0x8e,0x61,0x77,0x71,0x51,0x59, +0xa5,0x12,0x54,0x0a,0x7b,0x49,0xde,0x42,0xf8,0x42,0x0d,0x66, +0x6c,0xc8,0xa7,0xa4,0x7e,0xce,0x93,0x79,0xdf,0x3b,0xbc,0xe2, +0xb4,0x18,0xb7,0x4d,0xeb,0xd6,0xe3,0x94,0x6d,0xf9,0x56,0x3c, +0x8c,0xbb,0xf3,0xdb,0x93,0xbc,0xb7,0x1c,0x44,0x89,0x4f,0x09, +0x9c,0xc0,0xfd,0x3f,0xc2,0xe2,0x36,0x7c,0x6f,0x0a,0x53,0x57, +0xa0,0x07,0x9e,0x00,0x1b,0x76,0xcf,0x8a,0xb5,0x6a,0xf8,0xa5, +0x16,0x8d,0x16,0xc0,0xdf,0x87,0x61,0xef,0xa3,0xa4,0xce,0x3f, +0x31,0xcb,0xff,0x5e,0x06,0x0b,0x36,0xe4,0x53,0x25,0x9c,0x7b, +0x77,0xdd,0xf7,0x7b,0x5f,0x4a,0xa7,0xc7,0xc6,0x84,0x42,0x02, +0x8e,0x89,0xa0,0x84,0x28,0x42,0x05,0x97,0x33,0xc2,0xa4,0xc9, +0x14,0x7a,0x9e,0x8e,0x3c,0x13,0x15,0xa9,0x0c,0x1c,0x6c,0xa1, +0x11,0xb0,0x54,0x08,0x91,0xa6,0xf5,0xef,0x7d,0x49,0x0e,0xd8, +0x0e,0x64,0xc1,0xd8,0x18,0x8d,0xff,0x3d,0xb1,0x2f,0x9d,0x71, +0xf6,0x0a,0x24,0xd2,0xc4,0xfe,0xca,0xf9,0xf3,0xe2,0xcf,0x74, +0x62,0xd9,0x5d,0x42,0xae,0x54,0xa8,0xec,0xfc,0x09,0x95,0x5b, +0x38,0xbb,0xb4,0x4a,0x49,0xf8,0x0b,0x4c,0x48,0x1b,0x3e,0x67, +0x13,0x8a,0xe3,0x4b,0x63,0x4b,0x39,0xc8,0x68,0x13,0xd5,0x99, +0xd8,0xf4,0xd8,0x8c,0xe8,0x0c,0x8b,0x24,0x3e,0x40,0xcf,0x71, +0x97,0xb9,0x49,0x95,0x07,0x9f,0x91,0x93,0x96,0x9b,0x92,0xc7, +0x81,0x32,0x73,0xc4,0x2d,0xd4,0xfd,0x20,0x5d,0x77,0x7b,0x53, +0xd0,0x60,0x4c,0xe7,0xed,0x58,0xb1,0x5a,0xab,0xd8,0x9c,0xcf, +0x49,0xcf,0xca,0xc8,0xcc,0xe2,0xc4,0x71,0xdd,0xb5,0x82,0x7d, +0x2b,0xfa,0xfe,0x00,0xe6,0xcd,0x68,0xfe,0xec,0x9f,0x67,0xef, +0x66,0x74,0x62,0x13,0x33,0xe2,0x73,0xa2,0x32,0x64,0x09,0xfc, +0xb1,0x80,0xc3,0x5e,0x41,0x7b,0x38,0x9c,0xcb,0x64,0x95,0xa6, +0x97,0xa7,0x54,0x72,0xf7,0xf0,0x2c,0x75,0xd8,0xf7,0x99,0x73, +0xe7,0xcf,0x9e,0x3b,0x77,0x8e,0x32,0x36,0x06,0xb5,0x71,0x2f, +0x79,0x06,0xda,0xeb,0x58,0xfa,0x4a,0x95,0xfc,0x00,0xda,0x2b, +0xa9,0x3f,0x4d,0xfd,0x40,0x5e,0x09,0x13,0xda,0xc5,0x09,0xef, +0xd9,0x87,0x17,0xee,0x5d,0xfc,0xf6,0x52,0x76,0x50,0x56,0x50, +0x7a,0x50,0x79,0x39,0xaf,0xdb,0xa9,0xde,0xa9,0x57,0xed,0xec, +0xc9,0xa7,0x1d,0xca,0x3c,0x90,0x19,0xbc,0x28,0x02,0x99,0x13, +0xf8,0xc5,0xc9,0xf6,0x92,0x8e,0xb2,0x36,0xca,0xa4,0xfe,0xc0, +0x2f,0xfa,0x28,0x7c,0x7f,0xcb,0xb4,0x57,0xb6,0xd5,0xb4,0xd6, +0xdb,0x14,0xf0,0x3a,0x72,0x2d,0xd3,0x9d,0xa6,0x9c,0x9c,0xd1, +0xac,0x6f,0x2f,0x6d,0x2c,0x6d,0x6d,0x98,0x22,0x4c,0x6b,0x17, +0x17,0xdd,0xd7,0xdb,0x22,0x4e,0x95,0x0b,0x93,0x19,0xb7,0xbd, +0xce,0x3e,0x36,0x7b,0xbc,0xd2,0xf6,0x24,0xfb,0x25,0xb8,0x3a, +0xf3,0x75,0x7e,0x6d,0x9e,0xcd,0x92,0xb9,0xe3,0xe6,0x5e,0xf8, +0x02,0xae,0x30,0x32,0x17,0x63,0x17,0x03,0x37,0xee,0xb4,0xa7, +0xe7,0x69,0xcf,0xa9,0x91,0xe6,0xef,0xce,0xfe,0x72,0xfe,0xdd, +0x85,0x29,0x4b,0xd1,0x97,0x8d,0x4b,0x8a,0x49,0x8a,0x4e,0xb4, +0xc9,0xe2,0xdd,0x8c,0x35,0xd5,0x65,0x4e,0x55,0xce,0x7c,0x5e, +0x46,0x41,0x5e,0x4e,0x3e,0x07,0x29,0xab,0xc4,0x55,0x72,0x61, +0x15,0x8e,0xef,0x87,0xf1,0x82,0x7a,0x3b,0x8d,0xcf,0xdb,0x84, +0x43,0xa4,0x5f,0x5c,0x09,0x39,0x5a,0x98,0x23,0xce,0xd4,0x13, +0x66,0xb0,0xa1,0x68,0x3a,0x03,0x79,0x6c,0xc0,0x0d,0xd2,0xde, +0x46,0x3e,0xac,0x82,0x11,0x30,0x26,0x05,0xcc,0xa8,0xa2,0x24, +0xa3,0x29,0x8c,0xc7,0xb1,0x50,0x88,0xab,0xca,0xba,0x79,0x6c, +0x86,0x0d,0xc8,0x01,0x7f,0x18,0x4c,0x39,0x78,0x03,0x8b,0x89, +0x55,0xcb,0xf6,0x5e,0x9d,0x3a,0x67,0x7b,0xfe,0x9a,0xf5,0x55, +0x59,0x9b,0x9c,0x1b,0x2b,0x24,0x2b,0xd4,0x49,0x3b,0x7a,0xff, +0x61,0x30,0x1b,0xad,0xe4,0x60,0x85,0x0c,0xea,0x0c,0x4c,0xeb, +0x16,0xde,0xc0,0x75,0x31,0x7d,0x07,0x7b,0xd9,0x54,0xa9,0x95, +0xa9,0x49,0x4e,0xac,0x55,0x15,0x6e,0xa1,0x1e,0x30,0xac,0x42, +0x15,0x8d,0x49,0x0f,0x05,0x3f,0xa7,0x13,0xcf,0x24,0x25,0x29, +0xc3,0x21,0x3d,0x3c,0xc4,0x1e,0x3c,0x73,0xf0,0xf4,0x21,0x15, +0xd4,0x35,0x04,0x6d,0x26,0x14,0xdd,0xe4,0x38,0x93,0x06,0x12, +0xb5,0x3a,0xca,0xe9,0x27,0xc0,0xc6,0x16,0x98,0x7d,0x09,0xf4, +0xe8,0xd0,0x2e,0xa0,0x5e,0x1b,0x4e,0x83,0x69,0xb8,0xa3,0xac, +0x8f,0x47,0x65,0x50,0x93,0x83,0x4a,0x18,0xb8,0x70,0xa0,0x06, +0x3c,0xf1,0xbb,0xea,0x79,0xd5,0xa3,0xd1,0xce,0x8f,0x2f,0x91, +0xe5,0x1b,0xe5,0xec,0xe6,0xc4,0xe3,0xe2,0x6c,0xb2,0xf4,0xcf, +0xdf,0x9b,0x65,0x4c,0x62,0x45,0x62,0x6b,0x74,0xb9,0x55,0x1c, +0x1f,0xee,0x74,0x48,0x7e,0xc0,0x9a,0xc3,0x45,0x16,0x1f,0x66, +0x2e,0xb7,0x78,0x8d,0xa6,0xed,0x60,0xfa,0x13,0x83,0x21,0x70, +0x9f,0x24,0x79,0x24,0x38,0x47,0xbb,0xd6,0x26,0xf3,0xc7,0x4a, +0x0f,0x55,0x1f,0x2a,0xa4,0xf3,0x9a,0xab,0x08,0x24,0xdd,0xf8, +0xd6,0x08,0xa6,0xb0,0x81,0xb8,0xca,0x02,0xa7,0xad,0xc6,0x61, +0x05,0x3a,0x7c,0x66,0x7e,0x4a,0x41,0x72,0x31,0x27,0xee,0xe8, +0x79,0x00,0x32,0x21,0x80,0xe2,0x95,0xbc,0xfb,0x69,0x8f,0xe2, +0x7f,0xe4,0x84,0xe7,0x58,0x4f,0xa0,0xe6,0xd7,0x2e,0xf1,0x8c, +0x31,0x28,0xa1,0x2d,0xeb,0x7d,0xc6,0xfb,0xb4,0x8f,0x0a,0x7e, +0x65,0x08,0x5f,0x52,0x33,0xd9,0xee,0x88,0x2a,0x74,0x6d,0x86, +0x54,0x59,0xf2,0x94,0x3d,0x8f,0x6f,0x80,0xe5,0x09,0x60,0xc8, +0xc1,0x56,0xd1,0xee,0x8a,0x60,0x07,0x23,0x7a,0x18,0x7c,0x37, +0xf9,0x6c,0xe1,0xd9,0xe2,0x62,0x65,0x30,0x86,0x8d,0x58,0xc3, +0x8a,0xaf,0xc5,0xd1,0x44,0x18,0x06,0xca,0xe2,0x30,0xca,0x35, +0xf8,0xf3,0x64,0x3b,0xe3,0x73,0xec,0x62,0x9e,0x2a,0xfd,0xf3, +0x48,0xe1,0x3b,0x51,0x5b,0xfc,0x8e,0xfa,0xc3,0x63,0x38,0x54, +0xbe,0x11,0x67,0xe8,0xe6,0xd1,0x6f,0x5d,0x7b,0xab,0xff,0xef, +0x18,0x98,0xc8,0xbd,0x45,0x19,0xa3,0x9d,0x19,0xd8,0xa5,0xf2, +0x82,0xa9,0x4a,0x4a,0xa2,0x6e,0xf3,0x4b,0xd6,0x34,0x59,0x69, +0x40,0x0e,0x3f,0x93,0xbc,0xfb,0xe9,0xd2,0x50,0x61,0x49,0x37, +0x7e,0x34,0x02,0x15,0x86,0x4e,0xcc,0x0c,0xa7,0xad,0xc0,0xe1, +0x85,0xba,0x7c,0x56,0x7e,0x6a,0x61,0x72,0x09,0x27,0xee,0xec, +0x7d,0x00,0x56,0x42,0x00,0x4b,0x47,0x75,0x89,0x42,0x3f,0xbc, +0x0b,0x2c,0x0b,0x77,0x71,0x8b,0x54,0x2d,0xe1,0x2e,0x8c,0x64, +0xf1,0xb5,0x78,0x8e,0x08,0x43,0x61,0x86,0x38,0x94,0x15,0x12, +0xe0,0xa5,0xc4,0x8d,0xee,0x52,0x6e,0x34,0x16,0x3a,0xa5,0xbc, +0x4f,0x9f,0x38,0xaf,0x38,0x0f,0xf3,0xe3,0xa6,0xc7,0x4d,0x4f, +0x5e,0x79,0x7a,0x13,0x98,0x1e,0x60,0x2d,0xf2,0xf8,0xbd,0xfa, +0xee,0xda,0x6e,0xfa,0xfb,0xb3,0xf6,0x65,0xee,0xcb,0xac,0xe8, +0x2b,0xb9,0x9d,0x7b,0xc3,0x2c,0x93,0x0f,0xd0,0xd9,0xa3,0xe3, +0x61,0x72,0x28,0x91,0x3e,0xe2,0x3d,0x6c,0xf9,0x36,0xeb,0x56, +0xd3,0x46,0x29,0xd7,0xd5,0xc5,0xdf,0x6b,0xcf,0xa9,0x3d,0xa7, +0xf7,0x48,0xb9,0xae,0x1d,0xe7,0x3a,0x2f,0x74,0x48,0xb9,0xae, +0xdd,0xc2,0x6a,0xb6,0xe4,0x42,0xf1,0x85,0x22,0x29,0xf7,0x33, +0xf8,0xe2,0x01,0x29,0xc1,0xf6,0xb6,0xff,0x6d,0xdf,0x1e,0x0e, +0x18,0x28,0x25,0xb8,0x4f,0xd0,0x87,0x7d,0xac,0x38,0x01,0xb7, +0x13,0x18,0x0d,0x77,0x70,0x34,0x2b,0xce,0x1c,0x90,0x93,0x7e, +0x70,0x80,0xbf,0x51,0x19,0x37,0x0e,0x36,0xd8,0x98,0xc7,0x34, +0x24,0xa7,0xd4,0x4a,0xbd,0xd6,0x02,0xd8,0x7e,0x4a,0xb6,0x3f, +0xc2,0xdf,0xb3,0x58,0xfc,0x1b,0x57,0x52,0xca,0xf6,0xf7,0x4c, +0x56,0xec,0xbf,0x4d,0xb2,0xb7,0xa4,0xae,0x4a,0x58,0xd3,0x96, +0xca,0x87,0x3e,0x0e,0xf8,0xc1,0xf7,0x7b,0x0e,0x2f,0x63,0x1d, +0x29,0x7b,0x9a,0xfa,0x6b,0xec,0x7b,0xf3,0x68,0xfe,0xe8,0xaa, +0xa0,0xd5,0x6e,0x1b,0xa8,0xbb,0x6f,0x91,0xca,0x14,0x1b,0x09, +0x9d,0x82,0x11,0xab,0x87,0x84,0x88,0x5a,0xf7,0x05,0x2d,0x66, +0x60,0xc4,0x49,0xa2,0x23,0x66,0xc2,0x7f,0x61,0xf3,0x75,0x68, +0x16,0xd6,0xb6,0x0f,0x64,0x32,0x8a,0x11,0x90,0x49,0xff,0xfc, +0x90,0xfe,0x59,0xd4,0xa2,0x9f,0x14,0xb4,0xd6,0x8a,0x5a,0x0c, +0x26,0x88,0xce,0xe4,0xf7,0xf6,0xe7,0xd7,0xae,0x3f,0xb4,0x28, +0xe2,0x75,0x35,0xb6,0x19,0xcd,0x92,0x71,0xc2,0x23,0x50,0x21, +0x6f,0x0c,0x7e,0x30,0x7c,0xae,0x59,0xd9,0xc8,0xaf,0xbc,0xb1, +0xf8,0xea,0xba,0x36,0x6e,0x6c,0x9f,0xe2,0x28,0xf9,0x34,0xae, +0xf3,0x5f,0xe3,0x98,0x87,0xc8,0x13,0x94,0xb3,0x78,0xda,0x17, +0xa7,0x6d,0x45,0x25,0x95,0x16,0xb9,0xd2,0x73,0xe0,0xf3,0xa8, +0xf5,0x9e,0x53,0x56,0xec,0x04,0x5b,0x66,0x60,0x27,0xce,0x27, +0x6f,0x15,0xcc,0x12,0xa9,0xcb,0xe9,0xaf,0x04,0x36,0x0a,0xe1, +0xf3,0xd0,0x91,0x4d,0xa4,0x70,0xc0,0x84,0xa9,0xb9,0x9c,0x5c, +0xa5,0x2a,0xcc,0x13,0x51,0xdc,0xcb,0x0a,0xad,0xf0,0x9e,0x88, +0xe1,0x0f,0x84,0x70,0x46,0x0c,0xc7,0x49,0x44,0x08,0xdf,0x2c, +0x86,0x4b,0xb7,0x76,0xd3,0x09,0x1a,0x30,0x9f,0x3b,0xab,0x6e, +0x06,0x77,0xe1,0xc6,0x80,0x9e,0x78,0x03,0x0c,0xd9,0xfd,0x38, +0x5d,0xc7,0x1e,0xfd,0x4d,0x33,0x0d,0x78,0x08,0x69,0x7f,0xd7, +0x9f,0x2e,0xf5,0x39,0xdd,0x80,0x3a,0x8c,0x6e,0x96,0x14,0x9f, +0xed,0x99,0x9a,0x94,0xe4,0x1a,0x55,0x18,0xc3,0xea,0x24,0x29, +0xad,0xa5,0x31,0x4c,0xbc,0x0e,0x23,0x84,0xeb,0x8c,0x78,0x1d, +0x0b,0x89,0xf4,0x0a,0x47,0xb0,0xb2,0x11,0x38,0x96,0xbe,0x3d, +0x96,0xea,0xb2,0x35,0xe5,0x25,0xcd,0x72,0xca,0x83,0x56,0xbe, +0x01,0x8b,0x16,0xdc,0xc1,0xa6,0xe4,0x53,0x8c,0x51,0x60,0x9a, +0xc6,0x1f,0x74,0xdd,0xef,0x14,0x40,0x39,0xe5,0x4d,0x73,0x98, +0xbb,0x0c,0x89,0x39,0x50,0x12,0xb2,0xd4,0x02,0x96,0xe2,0x70, +0x24,0x16,0x30,0x84,0xf1,0xd6,0xd2,0xd7,0x52,0xd3,0xcb,0x35, +0xe7,0x5f,0xdf,0xea,0xfc,0x36,0xe6,0x29,0xe5,0x41,0x29,0xed, +0x50,0xfb,0x2b,0xd6,0xb6,0x49,0x15,0x7e,0x62,0xd4,0x5a,0x75, +0xfe,0xd8,0x94,0xd7,0xca,0xaf,0xb8,0x65,0x78,0xdd,0xbb,0x8f, +0x83,0x69,0xb0,0x86,0xc1,0x4e,0x61,0x14,0x39,0x94,0x17,0x50, +0x1c,0x9c,0x61,0x19,0x40,0x59,0x50,0xba,0x7b,0xe2,0x5e,0x4e, +0xdc,0xf7,0x3d,0x31,0x81,0xe4,0x4e,0x16,0x10,0xbf,0x22,0xcb, +0xe6,0xbf,0x61,0xc5,0x8e,0xa3,0xc4,0x18,0x1e,0x76,0xb1,0xf0, +0x0c,0xa7,0x90,0x39,0xf3,0x29,0xf3,0x89,0x99,0x43,0x66,0xfe, +0xfe,0x27,0x33,0x90,0x7c,0x9c,0x7e,0x36,0xfa,0x9f,0x3e,0x27, +0xd1,0x32,0x56,0xb8,0x5c,0x47,0x7e,0xc5,0xe1,0xf3,0x19,0x58, +0x0c,0xc3,0xc9,0x9f,0x38,0x7c,0x26,0x23,0x0e,0xe0,0x5b,0xd2, +0x0e,0x76,0x90,0x85,0xb1,0x52,0xef,0x13,0x7b,0xc8,0x22,0xb8, +0x06,0x17,0xc0,0x1a,0x6a,0x16,0xef,0x84,0x18,0xd2,0x4b,0xc7, +0xf2,0x35,0x4e,0xeb,0x80,0xa5,0x75,0xe2,0x62,0xfc,0x59,0x58, +0x56,0xc7,0x36,0x9a,0x93,0xbb,0xe9,0x7d,0xb9,0xad,0x45,0xed, +0x2e,0xd7,0x3c,0x1f,0xec,0xc9,0x69,0xe2,0x35,0x72,0x8c,0xf2, +0xac,0x0a,0xae,0xb6,0xd6,0xf7,0x15,0xde,0xe4,0xea,0x44,0xde, +0x0c,0xee,0xb1,0xbe,0x16,0xce,0x56,0xc6,0xf6,0x16,0x15,0xce, +0x55,0x9e,0xf5,0x36,0x3e,0x7c,0x91,0x75,0x85,0x7d,0x83,0xb3, +0xad,0x9f,0x3c,0x50,0x27,0x98,0xc3,0x50,0xb0,0x20,0x38,0xb3, +0x03,0x66,0x32,0xd4,0x61,0x2e,0x22,0x1d,0x90,0x27,0x63,0x51, +0xd9,0x91,0x18,0xe0,0xcc,0x5e,0x56,0xb1,0x53,0x8c,0x22,0xf0, +0x69,0x60,0xa5,0x94,0x7d,0xff,0x17,0x44,0x12,0xb1,0xae,0x5b, +0xa8,0x63,0xc4,0xba,0x39,0x44,0xa8,0x33,0x16,0xeb,0x18,0xbb, +0x11,0x42,0x9d,0x2e,0xfd,0x17,0x17,0xa3,0x39,0x81,0xa9,0x99, +0x30,0xa4,0xfc,0x7e,0x85,0x7b,0x0d,0xbf,0xc9,0x6d,0x9e,0x17, +0x4e,0x0e,0xe4,0x84,0xfa,0x1a,0xf2,0x47,0x00,0x8c,0x74,0xff, +0xe0,0x4a,0x61,0xc3,0x82,0x22,0x1c,0x5d,0x32,0x23,0x93,0x3a, +0xc6,0x6d,0x9f,0x33,0xdd,0x16,0x3c,0x02,0xcd,0x76,0xd4,0xfc, +0x68,0x34,0x0b,0xd5,0xe5,0xa0,0xae,0x86,0x73,0xc4,0xb1,0x30, +0x67,0x35,0xee,0x92,0xc1,0x2e,0x5c,0xd8,0x0d,0x0b,0xa5,0x06, +0xba,0x3a,0x2f,0x59,0xc1,0x05,0x0e,0x11,0x28,0x00,0x8b,0x6e, +0xd1,0xc8,0x08,0x74,0x29,0x8d,0x74,0xd2,0x07,0x27,0xd1,0xf9, +0xaa,0xe0,0x0c,0x1e,0x7d,0xec,0x40,0xc0,0x5b,0x82,0x43,0x57, +0x48,0x39,0x6c,0x11,0x38,0x94,0x2c,0x81,0xa1,0x6f,0x19,0x8c, +0xc0,0x55,0xe4,0x47,0x64,0x56,0x30,0x30,0x17,0x18,0xf2,0x16, +0x99,0x25,0x54,0x39,0x79,0xe1,0x0a,0x35,0xe7,0x18,0x58,0x8e, +0xd1,0xdd,0x06,0x46,0x78,0x16,0x97,0xc3,0x39,0x3d,0x6c,0xb7, +0x50,0xac,0xa6,0xe4,0x4c,0xad,0xfa,0xff,0x97,0xd8,0x43,0x35, +0x78,0x3d,0x01,0x13,0xdd,0xc1,0xb2,0xc3,0x93,0xaf,0x80,0x95, +0x2e,0x2b,0xce,0x18,0x58,0xfa,0xff,0x5a,0x30,0x57,0x6c,0x87, +0x16,0x22,0xf8,0xc1,0x32,0xb1,0x58,0x1c,0x23,0x5c,0x87,0x0d, +0xe2,0x25,0x46,0x58,0xf3,0x17,0x11,0xd7,0x74,0x09,0x6b,0x98, +0x42,0xa9,0x39,0x84,0xfc,0x86,0x20,0xa7,0x03,0x4c,0xac,0x22, +0x30,0x19,0x74,0x5b,0x50,0xf7,0x29,0xac,0x6f,0xc2,0xf5,0xaf, +0x60,0x16,0xa8,0xd6,0x34,0xdb,0xc3,0x14,0x9c,0xf5,0xad,0x4c, +0x03,0xc7,0x58,0xc0,0x98,0xf5,0x83,0x6d,0xed,0x56,0xe2,0x68, +0x0b,0x18,0xbd,0x0a,0x67,0x58,0xc2,0x8c,0xf5,0xb8,0xd2,0x1c, +0x56,0xe2,0x64,0x56,0xbc,0xa0,0x38,0x41,0x62,0xd6,0x55,0x6a, +0x3f,0x52,0xa3,0x5c,0x61,0xe7,0x6d,0x97,0x9b,0xfb,0xef,0x0c, +0x16,0x30,0xf2,0xd8,0xbc,0x51,0x2a,0x60,0xf4,0xe8,0x76,0x9d, +0x54,0xc0,0x48,0xc8,0x19,0xc8,0x25,0x38,0x7a,0x5b,0xe5,0xb7, +0xd6,0xaa,0x55,0x3f,0x25,0xc1,0xd0,0x48,0x98,0x4d,0x79,0xf3, +0x44,0xb6,0xe9,0x7a,0xeb,0xc7,0xcc,0xbb,0x5c,0x1d,0x9a,0x99, +0xc2,0x34,0xd6,0x5f,0xcb,0x6c,0xbe,0x81,0xb4,0x83,0x3a,0x83, +0x3d,0x39,0x2b,0x6c,0xb5,0xdf,0xb6,0xa0,0xf6,0xd0,0xab,0xe1, +0x77,0xcd,0x43,0xf8,0xd8,0x45,0xa9,0x1b,0x8b,0x74,0x7d,0x4c, +0x5d,0xac,0xcd,0x6d,0x4b,0x6d,0xf8,0xa6,0xda,0xf2,0xba,0xbc, +0x46,0x6e,0x67,0xd7,0x73,0x67,0x98,0x38,0x15,0xf6,0x32,0x09, +0xed,0x4a,0x73,0x14,0xa6,0x64,0xfd,0xca,0xa7,0xac,0x68,0x34, +0x30,0x8a,0x78,0x1f,0xf3,0x38,0xea,0x1e,0xce,0x41,0x3b,0x0c, +0x69,0xc7,0x21,0xf0,0xc5,0x83,0x36,0xb4,0x33,0xbd,0x8d,0x5f, +0x0c,0x36,0x0b,0xc5,0x1b,0xac,0xed,0x51,0x9b,0x63,0xf6,0x52, +0x31,0xa4,0x9f,0x92,0x81,0xcd,0xbd,0x9d,0xc5,0x51,0x46,0xda, +0x44,0x56,0xae,0xfc,0x81,0x1d,0x70,0x96,0xca,0x2a,0x19,0x4b, +0xc5,0x90,0x1a,0x13,0xf8,0xa3,0xff,0x14,0x43,0x32,0x43,0x6d, +0x12,0xd7,0x19,0xd3,0x77,0xa9,0xd3,0x36,0x9a,0x3f,0xae,0x1f, +0x6e,0x24,0x15,0x43,0x12,0x86,0x08,0xb5,0x04,0x26,0xdd,0xf9, +0xfb,0x49,0xc1,0x3b,0xee,0x12,0x93,0xbf,0x00,0xc6,0xa9,0xc1, +0xdc,0x41,0xbc,0xba,0xf0,0xf1,0xac,0xef,0xed,0x24,0x10,0xec, +0xac,0xb6,0x6a,0x3d,0xaa,0x6e,0xe7,0x56,0xe1,0x08,0x52,0x79, +0xb7,0x11,0x94,0x06,0x4f,0xef,0xf3,0x3f,0x9f,0xde,0x2f,0x64, +0x0f,0xed,0xb4,0xc4,0x61,0x36,0x6b,0xb8,0xab,0x3b,0xa4,0xd3, +0x7b,0x43,0xe9,0xf4,0xde,0x41,0x3a,0xbd,0x6f,0x62,0x6e,0x55, +0xd5,0x7f,0xfc,0xd1,0xe1,0x89,0xc9,0x15,0x55,0xc5,0x34,0xcc, +0x25,0x70,0x12,0x8f,0xfc,0x00,0x2b,0xdb,0x51,0x21,0x87,0x19, +0x2b,0xd1,0x1f,0x4f,0x82,0x0b,0xeb,0xb5,0x72,0xd5,0x26,0xfc, +0x4a,0x2b,0xdf,0x8c,0x07,0xe5,0x7b,0x30,0xf2,0x97,0xa8,0xb7, +0xd2,0x89,0xeb,0x12,0x18,0xb1,0x0c,0x96,0x6e,0x94,0x86,0xb1, +0xf8,0xee,0x9a,0xef,0xbd,0x5f,0x70,0x18,0x46,0xa1,0x2c,0xac, +0xff,0x6f,0xd8,0xbc,0x8e,0x11,0x66,0x4f,0x46,0x8d,0xff,0x86, +0xcd,0xbb,0xd8,0xb1,0x0f,0x14,0xb5,0x04,0xff,0x0b,0xfe,0x82, +0xff,0x62,0x1f,0xe2,0x6a,0x29,0xb7,0x72,0xb6,0x90,0x82,0x76, +0x6c,0x62,0x49,0xdc,0x60,0x2d,0x08,0xdb,0x0e,0xd1,0x43,0x06, +0xce,0xcc,0x51,0x4f,0x8a,0x72,0x5d,0x39,0x31,0xf6,0x12,0x0d, +0x45,0xa7,0x68,0x28,0x3a,0x45,0x15,0x1f,0x86,0xc1,0x29,0x1c, +0x46,0x41,0xf6,0xe4,0xdf,0xa0,0xe2,0x73,0xae,0x64,0xc5,0x1f, +0xec,0x22,0x7c,0x47,0x9c,0xc2,0x6c,0xc3,0xac,0x8f,0x50,0x46, +0x6d,0x8a,0x3f,0xb3,0x41,0x27,0x83,0x4e,0x04,0x9d,0xe4,0x00, +0x4c,0x69,0x20,0xb6,0x09,0xb7,0x8d,0x70,0x38,0x11,0x63,0xc2, +0x83,0x6a,0x32,0x6c,0xab,0x84,0x2f,0x4a,0xb9,0x1d,0x0f,0x48, +0xd6,0xed,0xcc,0x5f,0xe3,0xbe,0xb7,0x8a,0xe5,0x8f,0x6c,0x0d, +0x5a,0xec,0xab,0xce,0xa1,0x6b,0x00,0x09,0x7b,0x1a,0xf8,0xfb, +0xfe,0xbb,0xd6,0x87,0xf9,0x14,0x8d,0xcc,0xd9,0xf1,0x6b,0x39, +0xc1,0x15,0x0c,0x09,0xb5,0x85,0xe1,0x58,0xc1,0x48,0xc7,0x23, +0xff,0x97,0x29,0x95,0x82,0x99,0xd4,0x87,0x87,0xbb,0xff,0xfa, +0x65,0xd6,0x8f,0x54,0x5e,0x59,0x2b,0x7e,0xd9,0x00,0x5f,0xae, +0x2b,0x68,0xe0,0x91,0x3c,0x5d,0xf3,0xc0,0xfd,0x05,0xb7,0x8b, +0xd9,0xa3,0xb6,0x79,0x05,0x8e,0xd9,0xca,0x9d,0x4d,0x27,0xcd, +0x38,0xe9,0x0d,0xa8,0xb6,0xa0,0x28,0x1e,0x84,0x16,0x16,0xc7, +0x0d,0x76,0x34,0x30,0xfa,0xa7,0xc3,0x45,0xa2,0x99,0x52,0xcf, +0xff,0xe8,0x70,0x31,0xe9,0x77,0x98,0xd4,0x84,0x93,0x28,0x36, +0x53,0x6b,0x26,0x6f,0x80,0x5d,0xc6,0x52,0x20,0x32,0x8b,0xfc, +0x04,0xec,0x52,0x56,0xb1,0x04,0xbb,0x08,0x84,0xa3,0xf9,0x1b, +0xf8,0xaa,0x15,0x3b,0xcd,0xa4,0xc4,0x17,0x7d,0x0c,0x87,0x9d, +0xac,0xef,0xf2,0x2d,0xeb,0x71,0x98,0x66,0x81,0x35,0x0f,0xa3, +0x1f,0xff,0xf0,0x2e,0xf2,0x31,0x95,0x60,0x94,0xda,0xab,0xc5, +0x30,0x65,0x7d,0x41,0x23,0x8f,0x13,0x6e,0x6f,0x7b,0xe4,0xf7, +0x23,0x27,0xbe,0x86,0x25,0xe4,0x77,0x60,0xe7,0xb0,0x50,0x5a, +0x4a,0x80,0xc7,0x91,0xff,0x96,0xe4,0x57,0x0c,0x3c,0x9e,0x8c, +0x33,0xfe,0x2d,0xc9,0x91,0x40,0x11,0x41,0x18,0xc6,0x90,0xf0, +0xba,0xc3,0xff,0x9f,0x1e,0x17,0xb3,0xa4,0xe6,0x0f,0xff,0x7b, +0x33,0x8b,0xd0,0x36,0x0e,0x35,0xb0,0x9d,0x64,0x3c,0x4c,0xfa, +0x53,0xea,0x7b,0x11,0xc9,0x1f,0x9f,0xfb,0xb9,0xef,0x85,0x12, +0x65,0xa7,0x51,0x3b,0x2e,0x7e,0xee,0x71,0x71,0xea,0x61,0xc4, +0x2f,0xc7,0x6e,0xd3,0xb5,0x93,0x29,0xcc,0x49,0x2b,0x6a,0x3d, +0x94,0x63,0x30,0x4e,0x1b,0xd0,0x6c,0xee,0x84,0x46,0xc5,0x38, +0x5c,0xf6,0x9e,0x15,0x36,0xbe,0x22,0x99,0xab,0xde,0xac,0x87, +0xf1,0xeb,0x0a,0xea,0x79,0x1c,0xff,0x74,0xfd,0x43,0xaf,0xe7, +0x9c,0x06,0xe3,0xb3,0x69,0xeb,0x0a,0x54,0xda,0x5a,0x60,0xcb, +0xc3,0xb0,0x07,0xcf,0x5f,0x66,0xbc,0xe4,0xc0,0x4b,0x7c,0x48, +0xe0,0x18,0x1a,0xbc,0x81,0x09,0xad,0x58,0x6b,0x46,0xf5,0x94, +0x0e,0xe1,0x18,0xa8,0xb1,0xfe,0xcb,0xb6,0xaf,0x9b,0xa9,0x59, +0x68,0xc3,0x03,0xf7,0xe4,0xe9,0xbb,0x4b,0x0f,0xa4,0x45,0xd8, +0xf2,0x64,0x31,0x90,0x41,0xe9,0x8c,0xba,0xbd,0xe3,0xb1,0xff, +0x6b,0x0e,0x7f,0xff,0x9e,0x1c,0xc9,0x0e,0xcb,0x0a,0xcd,0xf6, +0xdc,0xc7,0x27,0xed,0x4d,0x74,0x8f,0x77,0xcf,0x4a,0xe4,0x31, +0x94,0x9a,0x42,0x13,0x9b,0xe4,0x9b,0xb8,0x37,0x61,0x4f,0x41, +0x16,0x7f,0xb8,0xf0,0x60,0xfe,0xfe,0x7c,0xbf,0xfd,0x3c,0x04, +0xc3,0x49,0xaa,0x81,0xa3,0xc8,0xc1,0xfc,0x03,0x85,0xfb,0xf2, +0xbd,0x03,0xf9,0x14,0xdf,0x64,0xaf,0x64,0x77,0x6e,0x1b,0xbe, +0x21,0xa5,0x1d,0xf9,0x5d,0xd9,0x3d,0x59,0xf6,0xe9,0xf6,0x29, +0x0e,0x45,0x99,0x7c,0x60,0x93,0x6f,0x8b,0x77,0x4b,0xd6,0xf5, +0x94,0xdb,0x49,0x0f,0x5c,0xe2,0xf9,0xd0,0xdd,0x07,0xf5,0xf7, +0x9b,0xf8,0x55,0xf9,0x56,0xf9,0x54,0x7a,0xf9,0xf1,0xc5,0xd6, +0x05,0x56,0xf9,0x56,0x3e,0x9a,0x9e,0x7a,0x2e,0x46,0x9c,0x30, +0x03,0x9a,0x09,0x65,0x1b,0x5f,0xfc,0x5b,0x02,0xe3,0x18,0xb8, +0x3e,0x19,0x95,0xff,0x2d,0x81,0x2f,0x60,0x2a,0x3b,0x30,0x04, +0x2f,0x92,0x24,0xdf,0xcb,0x2e,0xb1,0x9e,0x25,0xa9,0x7c,0x58, +0x51,0x48,0x69,0x48,0x01,0xc5,0x5f,0x63,0x14,0x69,0x44,0x4f, +0x71,0xa6,0x9f,0xbd,0x8a,0xe9,0xe4,0x5f,0xa3,0xf5,0xe0,0xb4, +0x0e,0x83,0x16,0x2b,0x28,0x46,0x5d,0xb9,0x5e,0xa5,0x4c,0xa6, +0x04,0x46,0xbf,0xbd,0x82,0x39,0xe0,0xa9,0xdc,0x09,0x07,0xc5, +0x31,0xec,0xd2,0xba,0xbd,0x3f,0xa8,0xc0,0x17,0x4c,0x7b,0x76, +0x66,0x27,0x45,0xd0,0xac,0x6e,0xa2,0x12,0x06,0x50,0x9f,0xa9, +0x7b,0x38,0xfe,0x8a,0x2a,0x0c,0x40,0x21,0x8d,0xd3,0x5f,0x0a, +0x34,0x12,0x35,0x06,0xa1,0x96,0x3a,0xf2,0x2a,0xed,0xa6,0x4a, +0x4f,0x60,0x79,0x1a,0x98,0x41,0xaf,0x32,0x2c,0x80,0x5f,0xd8, +0x08,0xcf,0x23,0x9e,0x07,0x9d,0x38,0x74,0x17,0xbf,0x82,0x48, +0x8c,0x93,0x2e,0x7f,0x1a,0x29,0xc1,0xd7,0x4c,0xfd,0xe5,0xe4, +0x5a,0x55,0x88,0x82,0x8b,0xc2,0x57,0x58,0xc7,0x26,0x94,0xc6, +0x97,0x45,0x16,0x71,0xf0,0xb6,0x7b,0xa0,0x8b,0x51,0xac,0xc2, +0x47,0x44,0x34,0x86,0x21,0x82,0x31,0x23,0x1a,0x4b,0x3d,0x2a, +0x58,0xc1,0x18,0x59,0x56,0xdc,0x38,0x93,0xd8,0x6c,0xdb,0xad, +0xb5,0xd5,0xa2,0xce,0x86,0xbf,0xd7,0x7c,0xf7,0x7e,0xd3,0x63, +0x0e,0x72,0x4f,0x90,0x5e,0x93,0x7b,0xeb,0x1b,0xb4,0x9a,0x2b, +0x79,0xf3,0xdb,0x3b,0x1e,0x18,0xb4,0x52,0x45,0xb9,0xaf,0x08, +0x20,0x21,0x65,0x01,0x35,0xbe,0x25,0x46,0xfb,0xf8,0x5c,0xb7, +0x4c,0x87,0x24,0x37,0x0e,0xce,0x85,0x93,0xac,0xfc,0xf4,0xf2, +0xcc,0x06,0xdd,0x14,0x7e,0x9f,0xf9,0x5e,0x5b,0x4f,0x17,0x4e, +0x7c,0x8a,0xfa,0x0c,0x56,0x1e,0xc0,0xd9,0x86,0x38,0x5c,0xa5, +0xd5,0x42,0xa9,0x1f,0x26,0x65,0xc0,0x06,0x68,0x55,0x06,0x5e, +0x91,0xda,0xce,0x8a,0xef,0xb2,0xc9,0xbe,0xd2,0xbd,0xa5,0xde, +0xf9,0x26,0x7e,0x7c,0xc1,0x9e,0x5c,0xb7,0x54,0x0f,0x4e,0x88, +0x12,0x7f,0x26,0xfd,0x3f,0x67,0xc2,0xf0,0x8b,0x30,0x89,0xeb, +0x6d,0xc7,0x73,0x4c,0x5c,0x59,0x74,0xf9,0xc5,0x12,0xd3,0x68, +0x3e,0x18,0x47,0xbb,0xe0,0xf0,0x6d,0x4b,0xca,0x6c,0x28,0xdf, +0xc9,0xaa,0x4c,0xa9,0x8a,0x59,0x96,0xa3,0x56,0xaf,0xee,0x68, +0x6e,0x62,0xb3,0xcd,0xa9,0xd8,0x8c,0xbf,0x5b,0xdd,0x55,0x5f, +0xd3,0x5a,0x6d,0xde,0x66,0x73,0xc3,0xbe,0xa8,0x85,0xd7,0xac, +0x34,0xad,0x73,0x6a,0xe6,0xc4,0x2f,0x01,0xc9,0x6d,0x58,0xdc, +0x8c,0x82,0x05,0xcc,0xdf,0x89,0x6a,0x66,0x1d,0x22,0xc7,0x6e, +0x3d,0x1e,0x2d,0xfb,0x18,0x0d,0x43,0x13,0x1e,0x5e,0x9e,0x32, +0xaf,0x43,0x38,0xda,0xd3,0xca,0xc2,0x19,0x7f,0x72,0x1c,0x87, +0x07,0x2f,0xb3,0xd9,0x64,0xfd,0x20,0xf0,0xa7,0x13,0x30,0x9c, +0x43,0x2f,0x5f,0xb2,0x11,0xb7,0x3c,0x66,0x61,0x0b,0x45,0xb9, +0x83,0xaf,0x90,0x1f,0x01,0x5b,0xb6,0x32,0x16,0x47,0x8d,0x8e, +0xe9,0x45,0xd0,0xc5,0x98,0x0d,0x15,0x24,0xdb,0x34,0x5b,0x33, +0x43,0x63,0x73,0xc8,0xf4,0x03,0xb3,0x0e,0xc1,0x28,0x58,0x41, +0xdd,0xad,0xc7,0x03,0xd8,0x2c,0x2b,0xe0,0x5d,0xd7,0xdb,0x2c, +0x33,0x5f,0xee,0x51,0xeb,0xd2,0xe0,0x5a,0xdd,0xfb,0xae,0x03, +0x86,0xd7,0xfc,0x6d,0x9c,0xc7,0xbb,0x2e,0xb0,0x98,0x69,0xb2, +0xcc,0x2f,0x27,0x20,0x73,0x7f,0x8a,0x93,0x0d,0x7f,0x53,0xeb, +0xf5,0xbc,0x9b,0x8b,0x64,0x4b,0x0d,0x57,0x1a,0x6c,0x0b,0xf8, +0x26,0xe0,0x9b,0x7d,0xa7,0xe2,0xa4,0xd6,0xb6,0x89,0xa0,0x5d, +0x08,0x93,0xf2,0x63,0x3c,0xa3,0xbd,0xa2,0xbc,0xbb,0xd3,0xf9, +0x3d,0x30,0xcc,0x1a,0xa6,0xdb,0xfe,0xc4,0xc5,0x08,0xd3,0x89, +0x30,0x95,0xc1,0x33,0x47,0xf1,0xc8,0x01,0x9c,0xa8,0xa2,0x71, +0x34,0x38,0x58,0x7d,0x2a,0x0e,0x67,0x12,0xf4,0x94,0xfe,0x66, +0xde,0xd5,0x14,0x7f,0x48,0x52,0x4d,0x07,0xd5,0x28,0x38,0x0e, +0x3d,0xca,0xa2,0x8d,0x74,0xf1,0x53,0x4e,0x3c,0xfe,0xb4,0x86, +0x89,0x36,0xaf,0xcd,0xfc,0x78,0x3a,0x5a,0x9d,0x4c,0xed,0x85, +0x87,0xe6,0x84,0xce,0x3a,0xf2,0x1b,0x8c,0x81,0x71,0x20,0x7b, +0x0d,0x9a,0x74,0xb0,0xb6,0x8b,0xf5,0x67,0x68,0x2f,0xf0,0x68, +0x70,0xab,0x77,0xab,0xe9,0x7d,0xde,0xf2,0x63,0xf9,0x53,0x0e, +0x2e,0x77,0x61,0x1c,0xa8,0xe8,0x51,0x96,0x78,0xc0,0x98,0x46, +0x61,0xcf,0x1d,0xf6,0xdb,0x6c,0x74,0x83,0xd3,0x0e,0xa4,0x05, +0xa7,0x38,0x38,0xf0,0xb7,0xb7,0xdf,0x5d,0x73,0x7d,0xa9,0xf5, +0x2e,0x2b,0x3d,0x3b,0x0b,0xb7,0x6f,0xdc,0xbf,0x71,0x3b,0x15, +0x49,0xb1,0xb8,0x7a,0x12,0xa8,0xa7,0xc1,0x8a,0xac,0x18,0x9f, +0x68,0x9f,0x68,0x5f,0x6e,0x20,0x5b,0x58,0x4c,0x62,0x5a,0x62, +0xaf,0x9d,0x6f,0xe5,0xc0,0x13,0xca,0xb0,0xc9,0x08,0x8e,0xe0, +0x66,0x74,0x65,0x4e,0x2c,0x0f,0x9d,0xbf,0x7f,0x29,0x07,0x97, +0x98,0x4d,0xc7,0xd7,0x1d,0x35,0x56,0xb1,0x3c,0x76,0xf8,0xb0, +0xed,0x54,0x1c,0x3f,0x98,0x40,0x30,0x96,0xb9,0x95,0x9f,0xfd, +0x20,0x4e,0x35,0xee,0x6e,0xe4,0xfb,0xb3,0x40,0xb8,0xb1,0x9f, +0x16,0x2b,0x12,0x88,0x57,0x96,0x6d,0xb6,0x47,0xa2,0x97,0x23, +0x5f,0x7c,0xb0,0x36,0xa0,0xd8,0x8f,0xbb,0x38,0xe0,0x47,0x9c, +0x6a,0xbc,0x6e,0x05,0xfc,0xd0,0xf5,0x5b,0x0d,0x8c,0x2e,0x82, +0x39,0xa6,0x97,0x79,0x7f,0x1c,0xe9,0x35,0xdf,0x61,0x6d,0x10, +0x0c,0x0b,0x83,0xaf,0x4e,0x53,0x20,0x02,0xee,0xed,0xe8,0x0e, +0x4a,0xc6,0xa8,0x24,0x8e,0xc6,0xcd,0x0c,0x56,0x05,0xe3,0x32, +0x6d,0x9c,0xa6,0xd2,0x6c,0xa3,0xf4,0x1d,0x2c,0xbd,0x0c,0x1a, +0xd0,0xa0,0x0c,0x2c,0xdc,0x61,0xcf,0xe1,0x8e,0x24,0x5c,0x55, +0x88,0x93,0x0c,0x17,0x6e,0xdf,0xba,0x44,0xb7,0xc8,0x8a,0x7f, +0xd1,0xfd,0xed,0xb7,0xdd,0xcf,0xb3,0xb6,0x17,0x18,0x96,0x3b, +0x96,0x3b,0xb5,0xc4,0x5c,0xec,0x48,0x01,0x27,0xde,0x2c,0x53, +0x69,0xe0,0x4b,0x21,0x82,0xd8,0xd5,0x98,0xd5,0x98,0x17,0xbb, +0xd9,0xf0,0xed,0xae,0x75,0x4e,0xf5,0x76,0xdc,0x05,0x74,0x20, +0x76,0x75,0x7a,0xad,0x26,0xe5,0xae,0xf4,0x3d,0xe7,0x2e,0xcb, +0x06,0x6b,0x0e,0xf6,0xc2,0x16,0x62,0x0a,0xc1,0x6d,0x2c,0x7a, +0xe0,0x54,0x22,0x7e,0xdd,0x76,0x03,0xe6,0xc3,0x43,0x16,0xe7, +0x63,0x0e,0x01,0xff,0xb7,0xe8,0x4f,0x11,0x20,0x4c,0x24,0x3e, +0x38,0x5c,0xba,0x1d,0x3c,0xb7,0xd5,0x85,0xbf,0x3e,0x78,0x67, +0x38,0xf3,0x23,0x75,0x29,0x79,0xd4,0x2b,0xdb,0xd4,0x99,0xd4, +0x99,0x94,0x78,0xd8,0xf0,0xdd,0x2e,0x8d,0x8e,0xcd,0x36,0x9c, +0xb0,0xc9,0x8f,0xc4,0xe6,0x25,0x35,0x44,0x95,0x70,0x70,0xba, +0x7d,0x60,0x04,0x66,0x31,0x78,0xcc,0x0f,0x35,0x56,0xe2,0x6c, +0x95,0x26,0x17,0xa5,0xf7,0xb0,0x2c,0x17,0x6c,0x21,0x5c,0x19, +0x7c,0x20,0x86,0x8d,0x70,0x3b,0x6c,0x17,0xb6,0x87,0xc3,0x0d, +0xe2,0x30,0xb0,0xc4,0x12,0x54,0x92,0xaa,0x27,0xbe,0xf9,0x27, +0x43,0x30,0x1b,0x1c,0x85,0x61,0xec,0xc0,0x0c,0xd4,0x25,0x96, +0x4d,0xbb,0x3a,0x74,0x2b,0xe9,0x54,0xfa,0x1d,0xfb,0xcd,0xdb, +0xcd,0x39,0xa8,0xb8,0x47,0x7e,0x83,0x5f,0xe7,0xb2,0xf8,0xab, +0x14,0xfe,0x87,0xc0,0xaf,0x38,0x84,0x1d,0x58,0x1a,0x44,0xbc, +0xa5,0x5b,0xcc,0x23,0x75,0xe7,0x36,0xbb,0xf0,0x37,0x60,0x68, +0xa3,0x74,0xb7,0x99,0x13,0xca,0xe6,0x93,0x7a,0xc3,0x86,0x4d, +0x95,0x1b,0xda,0x0a,0x78,0x87,0xa7,0x96,0x0f,0xac,0xbb,0x39, +0xfc,0xfe,0x24,0xf1,0xd9,0x61,0xbd,0x4d,0x4b,0xbb,0xda,0x81, +0xbf,0x75,0xab,0xf5,0x69,0xfe,0x63,0x2a,0x44,0x1d,0x85,0x2a, +0xe9,0x15,0xb7,0xc2,0x18,0x1d,0x1c,0x23,0x2e,0x33,0x10,0x96, +0xb1,0x56,0x5b,0x35,0x36,0x6e,0xd3,0x70,0xcd,0xf7,0xc8,0xf1, +0x4d,0xb1,0xb3,0xe2,0x1f,0xc8,0x81,0xe0,0xb0,0x97,0x6b,0x34, +0x76,0x6f,0xd3,0xdb,0x2e,0xe7,0x4e,0xd9,0xd8,0x9e,0x76,0x9c, +0x1a,0xa9,0x03,0x07,0x2f,0xc2,0xfd,0x4c,0xb0,0xcf,0x9d,0x72, +0xd9,0x33,0x61,0x4f,0xac,0x5f,0x7f,0x01,0xef,0xf8,0xf3,0x2a, +0x58,0x2c,0xbf,0x67,0xe2,0xc9,0xe7,0x39,0x54,0x6a,0x97,0xee, +0x46,0xfe,0x20,0x1a,0x1e,0x44,0x8d,0xa3,0xa0,0x0d,0xca,0x60, +0x0e,0xce,0x1f,0x60,0xa1,0xbc,0x8c,0xd7,0x5b,0xb6,0x58,0x3a, +0x1e,0x9a,0xe9,0x50,0x65,0xda,0x64,0x56,0xfb,0xfc,0xe9,0x93, +0xdf,0x9a,0x5f,0xd0,0x81,0x4c,0x3e,0x4f,0x56,0x33,0xde,0xe1, +0x97,0x0a,0x54,0xc1,0x00,0x26,0x0b,0x77,0x45,0x3f,0xf1,0xae, +0x54,0xd5,0x13,0x87,0xe8,0x6f,0xc0,0xcd,0xfa,0x52,0xad,0x56, +0xd3,0x1b,0x37,0x61,0x68,0x3c,0x4c,0xe4,0xfe,0x42,0x19,0xa3, +0x93,0x1d,0xd8,0xad,0xf2,0x81,0xa9,0xbc,0x9c,0x48,0x3d,0xeb, +0x24,0x56,0x9e,0xac,0x24,0x66,0xf4,0x10,0xfb,0x10,0xbb,0x10, +0x9b,0x83,0xd4,0x51,0x7e,0x6e,0x87,0x16,0x0e,0x13,0xba,0xf0, +0x96,0x31,0x4c,0xc6,0xf0,0xcf,0x95,0x8e,0x1a,0xa5,0x4a,0x47, +0xa1,0xff,0xae,0x74,0xf4,0x57,0xf9,0xfb,0x5a,0x4e,0x70,0x13, +0x5e,0x4a,0x55,0xfb,0x14,0xc0,0xb0,0xa0,0xc0,0xcd,0x04,0x39, +0xfa,0x9a,0x93,0x5e,0x6f,0x93,0x7a,0xf6,0x2a,0x60,0x1c,0x3b, +0x56,0x58,0x0a,0x40,0x22,0x83,0x2f,0xed,0xbf,0x18,0xdc,0x92, +0xca,0x07,0xdd,0xf1,0xb9,0xb7,0xb7,0xc7,0x72,0x3f,0x9f,0xb0, +0x37,0xc1,0x33,0xce,0x43,0x16,0x61,0x78,0xc2,0xf0,0xe4,0xcd, +0x67,0xb7,0x81,0xba,0x54,0xd6,0x34,0x9f,0xdf,0xa3,0xe3,0xac, +0xe9,0xa4,0x1b,0x98,0xed,0x9f,0xed,0x9f,0x55,0xdd,0x5f,0x7e, +0x3b,0xef,0x86,0x3c,0x8b,0xf7,0xd7,0x76,0xd7,0x76,0x33,0x39, +0x70,0x39,0x24,0x31,0x24,0xd1,0xcd,0x96,0xef,0xb1,0xe8,0x36, +0x69,0xd3,0xf7,0x73,0xf5,0x73,0xf7,0xf7,0x76,0x3e,0xe5,0x74, +0xda,0x59,0xca,0x9f,0xba,0x7a,0x9e,0x3e,0xa4,0xfc,0xa9,0x3e, +0x61,0x35,0x5b,0x75,0xbe,0xea,0x62,0xc5,0x45,0x4e,0xa8,0x15, +0x97,0x11,0x9f,0x3f,0x1c,0x61,0xbc,0xf3,0x1b,0x33,0x7f,0x3e, +0xdd,0x34,0x43,0x3b,0x4d,0x7b,0xc3,0xe1,0x35,0x47,0x56,0x1d, +0xfd,0x01,0xc6,0xfe,0x0d,0xf2,0x87,0xb0,0x4b,0x9e,0xc7,0x3b, +0x2f,0x33,0x9b,0x25,0x5b,0xe4,0x53,0xeb,0x5d,0xeb,0x5d,0xd5, +0xf6,0xa2,0xf6,0x75,0xe1,0x33,0x0e,0x82,0x3a,0xd1,0x1f,0x54, +0x0c,0xa8,0xb7,0x08,0x34,0x01,0x2f,0xc6,0x77,0x87,0xdb,0x76, +0x67,0x9d,0x83,0xe9,0x21,0xa9,0x07,0x53,0x1d,0x1c,0xf9,0x2b, +0x3b,0xfa,0xd6,0xf5,0xce,0x77,0xd4,0x74,0xd0,0x71,0xb6,0xd8, +0xf3,0x0d,0x7d,0x9c,0x8a,0xa4,0xab,0xb2,0x28,0x11,0x16,0xa5, +0x50,0x65,0x8f,0xf2,0x8d,0xf2,0x8d,0xf4,0xe3,0xc4,0x5e,0x78, +0x46,0xb2,0xb4,0x52,0xb7,0x24,0x6e,0x97,0xb2,0xaf,0xee,0x04, +0xdc,0xf7,0xbf,0xc6,0x61,0x3b,0xb6,0x90,0xfa,0x97,0x59,0xbf, +0x24,0xbd,0x97,0xc7,0xf1,0x87,0x56,0x04,0xac,0xb6,0x5d,0x47, +0x7d,0xaf,0x5c,0x70,0x26,0xf6,0xc7,0x94,0x28,0x4e,0x9c,0xcd, +0x26,0x16,0xc5,0x15,0x47,0x17,0x18,0xc5,0xf2,0xe1,0x1e,0x61, +0x2e,0x87,0x5c,0xb9,0xd9,0x18,0xc2,0x78,0x9e,0xd9,0x73,0xda, +0x5b,0x65,0xdf,0xa9,0xc0,0xd3,0x81,0xa7,0x2f,0x1a,0xf3,0x69, +0x67,0xd3,0xce,0xa5,0x9e,0x3d,0x89,0xbb,0x0e,0xe3,0x04,0xa7, +0x39,0x8d,0x2e,0x7c,0x03,0x28,0x25,0xc2,0xcc,0x8b,0x20,0xff, +0x36,0xf2,0x4a,0x54,0x6f,0x2c,0x27,0xce,0xa2,0x71,0x30,0xc1, +0x44,0xe9,0x17,0xa6,0xfa,0xb2,0xd4,0x53,0x61,0x21,0x9b,0x78, +0x3e,0xf1,0x42,0xe2,0x79,0x4e,0xb8,0x24,0xee,0x21,0x3e,0x1f, +0x1d,0xe1,0x4b,0xe7,0x9f,0xa4,0x25,0x91,0xd1,0x25,0xd1,0x92, +0x96,0x64,0xe5,0xd1,0x1f,0x61,0xdc,0xdf,0x60,0xf6,0x10,0x34, +0xa5,0x25,0x59,0x6a,0x3e,0x5b,0xb6,0xd0,0xa7,0xce,0xbb,0xc6, +0xbb,0xba,0xed,0x55,0xcd,0xeb,0xc2,0xe7,0xff,0x2c,0xc9,0x74, +0x03,0x9c,0x8e,0xee,0x26,0x60,0xc7,0xf8,0x6e,0x77,0xdb,0x46, +0x97,0x24,0x2d,0x24,0xed,0x60,0x8a,0xb4,0x24,0xdb,0xfb,0xe9, +0x92,0x38,0x68,0xd0,0x25,0x31,0xff,0x3f,0x2c,0x89,0xcf,0xe0, +0x92,0x0c,0x84,0x09,0x67,0xc8,0x5b,0x16,0xd4,0x41,0x86,0xdf, +0xb0,0x06,0x47,0xb5,0x8f,0x69,0x1d,0xe7,0x0a,0xc1,0x99,0xe4, +0x38,0x14,0x1a,0xa6,0x98,0xd7,0xe5,0xf0,0xfb,0x5b,0x3c,0xfa, +0x7d,0x2a,0xb8,0xe3,0xf8,0x9c,0xe0,0xe9,0x16,0x38,0x4d,0x71, +0xc3,0x52,0x45,0x1d,0x31,0x51,0xec,0xee,0x64,0x07,0x8a,0xd1, +0x96,0x7c,0x1a,0xdf,0xf5,0xaf,0xf1,0xcc,0x9f,0x38,0x97,0xc8, +0x14,0x5b,0x3a,0x58,0xb4,0x1a,0xd1,0x31,0xb0,0x45,0xc6,0xf6, +0x8a,0xd3,0x48,0x8b,0xd0,0x6b,0xde,0x0f,0x9d,0x03,0xea,0xd8, +0xc9,0x2a,0x94,0xfe,0x26,0x54,0x00,0xd3,0x85,0x5e,0x4a,0x1c, +0x4d,0x15,0x67,0xc8,0x43,0xbd,0x4d,0x18,0x62,0x2a,0x14,0xb7, +0xb1,0x03,0x58,0x4b,0x4c,0xa0,0xa0,0x93,0x15,0xde,0xe1,0xf7, +0xa4,0x0d,0x37,0xb0,0xb9,0x0d,0x99,0x6d,0xf1,0x35,0xc6,0xa9, +0x7c,0xa8,0xb5,0xbf,0xce,0x1e,0x33,0x0e,0xbb,0x70,0x02,0x83, +0xa6,0x07,0x70,0x8e,0xc5,0x2c,0x95,0x7a,0x7b,0xa5,0x6e,0x98, +0x98,0x0e,0xcb,0xc0,0x5e,0xf9,0x2e,0x0b,0x13,0x9f,0x92,0xb0, +0xca,0xc0,0xf6,0xa0,0x52,0xb3,0x00,0x3e,0xdd,0x2d,0xcd,0x2c, +0xce,0x99,0x13,0xa3,0x61,0x34,0x31,0x86,0xb7,0x5d,0x2c,0x95, +0xae,0x2a,0xfd,0xee,0x34,0xfa,0xdd,0xfb,0x6d,0x88,0x86,0x0c, +0x27,0xe9,0xe1,0x38,0xff,0x14,0x53,0x6a,0x31,0xd9,0xf0,0xf5, +0xf5,0x47,0xfd,0x9c,0x18,0x3f,0x8b,0x74,0x60,0x9a,0x8c,0x15, +0xf4,0x71,0x3f,0x81,0x99,0x25,0xb0,0xf2,0xc9,0xcf,0xaf,0x3c, +0xab,0xf8,0xb5,0x9b,0x71,0xee,0x26,0x5c,0xe4,0xce,0x89,0xc3, +0x31,0x94,0xb4,0xd3,0xf0,0x92,0x85,0xe9,0xf8,0x90,0x55,0x3c, +0x87,0x22,0xb2,0x78,0x31,0x6e,0x5b,0x82,0xc6,0x4e,0xa9,0x32, +0x1e,0xb4,0xab,0x40,0xf7,0xcd,0x9f,0x30,0x94,0x1b,0x58,0x54, +0x24,0x15,0xd9,0x58,0x2d,0x15,0xd9,0x80,0x64,0xe1,0x00,0xa9, +0xbe,0xd3,0x06,0x23,0x28,0x76,0x6d,0xc0,0x9e,0x7f,0x0d,0xbd, +0xaa,0xe8,0x03,0x75,0xf6,0x80,0xba,0x0c,0x87,0x59,0xae,0xe3, +0xee,0xaa,0xd7,0x6f,0xdb,0xac,0x6c,0x14,0xe2,0x65,0xa4,0x62, +0xce,0xc4,0xee,0x56,0xea,0x66,0xbe,0xab,0x6b,0xf8,0xf3,0x8d, +0xd5,0x63,0xbd,0x3e,0x55,0x21,0x99,0x2e,0x76,0x4f,0x75,0x5f, +0x4f,0x79,0xb3,0x43,0x35,0xef,0x6e,0x69,0x6a,0x2c,0x73,0xf2, +0xee,0x0c,0xee,0x0f,0xbb,0xc3,0x81,0xb3,0xb0,0x42,0xb4,0x1f, +0xa8,0x62,0xdc,0x23,0x3c,0x8e,0xfb,0x9c,0x4c,0x30,0xe2,0x61, +0x68,0x0a,0xac,0x28,0xf9,0x58,0x70,0xb4,0x83,0xd7,0x3f,0xb0, +0x39,0x78,0xeb,0x41,0x4e,0x18,0x05,0x84,0x2d,0x44,0xe3,0x7b, +0x38,0x0b,0x0c,0x91,0x14,0xb5,0xf1,0x9b,0xda,0x8d,0x3a,0x1d, +0xfa,0xb9,0x5e,0xa9,0x19,0xe9,0x18,0x7c,0x2d,0x95,0x91,0x7e, +0x2d,0x15,0x7f,0xfd,0x8a,0xbe,0xfe,0x8a,0x3a,0x84,0x0a,0x18, +0x20,0xf0,0x17,0x0b,0xe3,0xe3,0xe0,0x8b,0xe4,0x8f,0x39,0x5e, +0xdd,0xbc,0x29,0x3a,0x62,0x46,0x10,0x16,0x4d,0x8d,0xd3,0x57, +0x92,0xe2,0xf8,0x85,0x18,0x18,0xa5,0x8a,0x1f,0xc4,0x8d,0xfa, +0xc2,0x46,0xac,0x47,0x17,0xa9,0xca,0x0d,0x68,0x31,0x1d,0x99, +0xe9,0x1d,0xaa,0x50,0x20,0x2c,0xe8,0x63,0x71,0x5f,0x0f,0x69, +0xb9,0xde,0xf9,0x5b,0xd6,0x35,0xc3,0x5c,0x3e,0x40,0x47,0x3e, +0xdf,0x42,0x97,0x13,0xc3,0x61,0x25,0x29,0xb5,0xa8,0x53,0xcb, +0xd5,0xed,0x2e,0xe0,0x7d,0xfb,0x2d,0x9f,0xb9,0x49,0x0d,0x1b, +0x03,0x14,0x2f,0x88,0x33,0xca,0xf4,0x71,0xce,0xe2,0xc1,0xc4, +0xea,0xbc,0xc2,0xbc,0xea,0xbc,0x56,0x4e,0x2c,0xef,0x56,0x2c, +0x62,0x73,0xef,0x64,0x3d,0x4a,0x7a,0xc5,0x15,0xfe,0x6b,0x2a, +0xe9,0xff,0x56,0x38,0xac,0xd1,0xaf,0xf8,0x2f,0x51,0xc1,0xf4, +0xcb,0x88,0x70,0x78,0x40,0x47,0x3c,0xcc,0x08,0xbb,0x85,0x6c, +0x82,0x6a,0x30,0xd1,0x18,0x27,0x7e,0x2e,0x65,0x36,0x89,0xce, +0x29,0x05,0xba,0x20,0x05,0x27,0xc2,0x24,0x50,0x63,0xb0,0x1a, +0x7f,0x26,0xb0,0x8e,0x6a,0xf4,0x3a,0x76,0xec,0xa7,0xad,0x0a, +0x65,0x22,0x2e,0x87,0xdd,0x9a,0xb8,0x5b,0x9c,0xa9,0x2f,0xcc, +0x44,0x7b,0xbc,0x25,0xca,0x6f,0x74,0x09,0x0f,0x8c,0xaf,0x0b, +0x72,0x7c,0x0a,0xf6,0xc2,0x72,0x66,0xc0,0x5b,0x2c,0x22,0x90, +0x25,0x3c,0xc0,0x2c,0x76,0xac,0x42,0x1f,0x7e,0x23,0xc2,0x78, +0xf6,0x87,0xf8,0xe7,0x97,0xef,0xa4,0xfa,0x75,0xf0,0x38,0xdd, +0x01,0x9d,0xf7,0xa2,0xe6,0x89,0x18,0x63,0xfe,0xee,0xf9,0x47, +0x97,0x1e,0x53,0x73,0xe6,0xf0,0xa2,0x11,0x5c,0x94,0x0e,0x14, +0xd8,0x24,0xc3,0xcf,0xfb,0xac,0x52,0xd0,0xab,0x82,0xcb,0xdd, +0xec,0xc0,0x55,0xbc,0x47,0xfe,0x02,0x47,0xc5,0x5c,0x4c,0x1e, +0xb8,0xc8,0x82,0xa3,0x94,0x25,0x3a,0x4f,0xa8,0xa1,0x9f,0x12, +0x0a,0xf0,0x47,0x52,0xf9,0xa8,0xe4,0x63,0xf2,0x43,0x93,0xcb, +0x7c,0xc8,0x66,0xcf,0x39,0x2e,0xdb,0x38,0xfc,0x03,0x5c,0x49, +0x9e,0x71,0xd9,0x82,0xe4,0xcd,0xad,0x99,0xfc,0xc1,0x3b,0x2e, +0xbf,0x7b,0xf7,0x70,0x63,0x1f,0x6e,0x26,0x57,0xaf,0x28,0x6c, +0x75,0xaf,0x7e,0x1a,0x3a,0xf0,0x94,0xb9,0x3a,0xf0,0x0d,0x51, +0xe8,0x2b,0x6c,0x07,0xf4,0x59,0xf1,0x0d,0x7c,0x22,0x98,0x2e, +0x78,0x41,0x3a,0xba,0xc0,0x04,0x88,0xee,0xc0,0x68,0x18,0x61, +0x80,0x23,0x06,0x1b,0x6f,0xe3,0x04,0x16,0x67,0xe3,0x1e,0x42, +0xc1,0x30,0xd0,0xc1,0x8d,0x85,0x46,0xd0,0x23,0xdd,0x30,0xb2, +0x08,0xa6,0xc6,0xc3,0x66,0xae,0x06,0xb7,0xb2,0xf1,0xd7,0x63, +0xfb,0xa3,0xbb,0xf4,0x2e,0xf1,0xe1,0x26,0x47,0x76,0x1f,0xde, +0xc5,0xe1,0x28,0xc3,0xbf,0x98,0xc0,0x59,0x7b,0x67,0x7a,0xad, +0x6f,0x71,0x6e,0xa2,0x28,0xc0,0x6e,0x87,0xb1,0xe6,0x36,0xdd, +0x0a,0x33,0xfe,0xde,0xf5,0xde,0x5b,0x0d,0x0f,0x8a,0xbc,0x8a, +0x3c,0x8a,0x5d,0x2a,0x9a,0x79,0xd7,0x4a,0xb7,0x32,0xf7,0x22, +0x4e,0x31,0x57,0xaa,0x63,0x7e,0x16,0xac,0xf5,0xd0,0x1a,0x9d, +0x0c,0xc1,0x09,0xfd,0xd1,0x58,0xd4,0xea,0xbf,0x03,0x8f,0xd5, +0xfb,0x05,0x2d,0xb4,0x06,0x7f,0x38,0xcb,0x0c,0xb4,0x62,0x1c, +0xc9,0x79,0x92,0xf5,0x36,0xfd,0x2d,0x07,0xe3,0x98,0x30,0x9c, +0xe6,0x8b,0xa3,0xcc,0x67,0xb8,0x16,0xb9,0xe7,0xbb,0xe7,0x72, +0xc2,0x48,0x4a,0x63,0xe0,0x2c,0x3c,0xc6,0xb3,0x54,0x48,0x66, +0xce,0x44,0x06,0x1b,0x3d,0xe9,0x4a,0x1d,0x52,0x06,0x2b,0x36, +0xe3,0x52,0xda,0xc5,0xd4,0x4b,0x1e,0xad,0x3c,0x7e,0xe1,0x8e, +0x26,0xbe,0xb8,0xf3,0x18,0x87,0x07,0x58,0x0c,0xf2,0x41,0xd3, +0x8d,0x38,0x47,0xa5,0xd5,0x56,0xe9,0x07,0xd8,0x98,0x03,0x2e, +0x12,0x0e,0xd9,0xc6,0xd6,0x9d,0x6f,0xb8,0x50,0x7f,0x91,0x1b, +0xd0,0x65,0x0d,0x8e,0x18,0x1c,0xb3,0x3a,0x11,0x6d,0xc0,0xbf, +0x8e,0x87,0xb9,0xd9,0xcf,0x73,0x23,0xf7,0x5e,0xda,0x7b,0xd1, +0xbf,0x39,0x99,0x3f,0xf8,0xd0,0x0f,0x86,0x06,0x5d,0xb5,0x38, +0xcc,0xc7,0x78,0xc6,0xda,0xc7,0xda,0xf9,0x86,0x7b,0x85,0x7b, +0x46,0x70,0x0a,0x4d,0xb6,0x31,0xb2,0x31,0xaa,0x36,0x9a,0x43, +0x35,0x16,0x73,0x4b,0xd1,0xb5,0x17,0x77,0xa9,0x88,0xad,0x42, +0x35,0xf1,0x0a,0x73,0x0d,0x75,0x0c,0xe3,0xa8,0xa9,0xb4,0xf4, +0xd5,0x3e,0x4c,0xbb,0xca,0xd5,0x61,0x9b,0x0c,0x42,0xd9,0x40, +0x43,0x17,0x7d,0x4b,0x19,0x87,0xcb,0x59,0xab,0x30,0x8b,0x23, +0x66,0xc7,0xe2,0xb4,0xf9,0xc6,0x98,0xfa,0xd8,0xda,0x58,0xca, +0x30,0x71,0xa4,0xa4,0x0b,0xaf,0x99,0xf6,0xa4,0xa4,0x76,0x55, +0xf8,0x9b,0xad,0x89,0xaf,0x4c,0x28,0x8a,0xe7,0xc6,0x2a,0xae, +0x17,0x11,0x31,0x92,0x99,0xbd,0x2f,0xf9,0x0f,0x55,0x48,0x52, +0xa8,0x0a,0xa3,0x07,0x42,0xf4,0x14,0xeb,0xf1,0xd2,0xc0,0x74, +0xfc,0x89,0x45,0x52,0xe3,0x0c,0x93,0x54,0x84,0x44,0xa6,0x7d, +0xd0,0x9a,0x0c,0x59,0xed,0x04,0xa5,0xb1,0xc2,0x35,0x45,0x2c, +0x79,0xa0,0xb1,0x59,0x9c,0x88,0xfb,0x58,0xcc,0x09,0xc6,0xd5, +0x7a,0x38,0x5e,0xa5,0xc3,0x48,0xe9,0x5b,0x98,0x93,0x4a,0x41, +0x48,0xb5,0x32,0x6c,0x56,0xc4,0x75,0xb2,0xf8,0xd7,0xc0,0x5a, +0xf2,0x00,0x0a,0xe0,0x7b,0x2c,0xf8,0x16,0x9e,0x77,0xe0,0xf3, +0xeb,0x46,0xbb,0xf1,0x8a,0x0c,0xae,0x68,0x60,0x02,0x7e,0x0f, +0x09,0x9b,0xf1,0xbd,0x0c,0xde,0xe3,0xe8,0x6e,0x18,0x0d,0x8a, +0x0e,0x56,0x5c,0x25,0x35,0xf2,0xb3,0x7f,0x04,0xf6,0x0c,0xe4, +0xab,0x11,0xf4,0x79,0x04,0x3e,0x0c,0xe6,0xe3,0x57,0x64,0x0d, +0xda,0xbf,0x60,0x21,0x71,0xb2,0xd4,0xe8,0xca,0x87,0x02,0x7b, +0x73,0x67,0xea,0x38,0x37,0x7a,0xfc,0x0f,0x99,0xb4,0x51,0x46, +0xed,0x86,0x72,0x5f,0xd4,0xf8,0x2c,0x93,0x40,0x5f,0xb4,0xdc, +0x42,0xb1,0x21,0x95,0xc9,0x73,0xd8,0x90,0x0d,0xee,0x92,0x4c, +0xb6,0xb2,0xf5,0xe7,0x1a,0x2e,0x36,0x50,0x99,0xe8,0xb0,0x86, +0x61,0x06,0xc7,0xac,0x25,0x99,0xfc,0xf8,0xbf,0xcb,0xa4,0x45, +0x92,0x89,0x2f,0x0c,0xdd,0x7f,0xd5,0xfc,0x30,0x1f,0x3b,0x28, +0x13,0x9f,0x88,0x3d,0xe1,0x1e,0x54,0x26,0xbb,0xd8,0xa6,0xc8, +0x86,0xa8,0xba,0xcf,0x32,0xc9,0x29,0x45,0xf7,0x3e,0xd4,0x50, +0x19,0x28,0x17,0xd6,0x91,0xe8,0x96,0x98,0x41,0xa0,0x6f,0x4a, +0x81,0x7e,0xb6,0x11,0x78,0x51,0xa0,0x6f,0xc2,0x9c,0x5c,0x1a, +0xba,0x30,0x98,0x02,0x7d,0x77,0x66,0xe3,0x89,0x75,0x47,0x0d, +0x55,0x6c,0xc2,0x0f,0x87,0x3a,0x4d,0x5d,0xc0,0x24,0xea,0x29, +0xbd,0x63,0xae,0xe5,0x66,0xdf,0xa3,0x30,0xff,0xbb,0x4b,0xbf, +0x7e,0x86,0xf9,0x5b,0x14,0xee,0xa4,0x77,0xe0,0x6f,0x03,0x36, +0x63,0xa0,0x9a,0xbc,0xf8,0x58,0x0a,0x93,0x22,0x61,0x2c,0x27, +0x3c,0xd0,0xb8,0x21,0x4c,0x1b,0xb0,0xc5,0x7c,0x06,0x95,0xbd, +0x90,0x5b,0xb7,0x48,0x05,0x74,0x84,0x5e,0x22,0xdc,0x47,0x5b, +0xf1,0x3e,0x0d,0x57,0x47,0x68,0x40,0x7c,0x06,0x13,0x2b,0x60, +0x6a,0x02,0xcc,0xe3,0xbe,0xed,0xc3,0x1f,0x98,0xa4,0x96,0xf8, +0xd6,0xe8,0x16,0xc3,0x68,0x3e,0x10,0xa7,0xda,0xa1,0xca,0x3a, +0x1c,0x59,0x69,0xce,0x67,0x97,0x66,0xd5,0xa4,0x37,0xa4,0xe0, +0xf0,0x92,0x99,0xbd,0xf3,0xf4,0xd5,0xd6,0x6f,0x43,0x46,0xbd, +0x90,0xb2,0x96,0xe1,0xdf,0xbd,0xb8,0x7f,0xf5,0x71,0x87,0xda, +0x9d,0x2d,0x3f,0x6d,0x2b,0xe9,0xe1,0x97,0xde,0xd3,0xf8,0xce, +0xf4,0x01,0x27,0x5a,0x4b,0xe7,0xd1,0x32,0xd0,0xee,0x41,0x6d, +0xd0,0xd3,0x43,0x3d,0xd4,0x31,0x04,0x1d,0x94,0xe1,0x22,0xd1, +0xa1,0xff,0x09,0xb4,0x0b,0xe3,0x58,0x61,0x02,0xec,0x25,0xa1, +0x38,0x71,0x0f,0x8e,0xdc,0x4d,0xc1,0x23,0x0c,0xf1,0x06,0xe6, +0x10,0x9d,0x89,0xe8,0x2a,0x96,0x12,0x48,0x82,0x08,0x4c,0xa2, +0x16,0x9e,0x22,0xd8,0x92,0xe3,0x30,0x15,0xb8,0x2e,0xe4,0xc0, +0xc8,0x08,0x8d,0x70,0xd1,0xff,0x2c,0xa4,0xf4,0xe4,0xbf,0x0b, +0x29,0x75,0xff,0xa7,0x90,0xd2,0x8f,0xb8,0xaa,0xb2,0x72,0x35, +0x2c,0x3a,0x96,0x18,0x7e,0x2e,0xf4,0xc8,0x14,0xc5,0x1a,0xd8, +0x44,0x28,0x25,0xb3,0xd6,0xa5,0x66,0x1d,0x62,0x08,0x21,0xd4, +0xac,0xad,0xa8,0x59,0xdf,0x85,0x0f,0x3b,0x24,0xb3,0x76,0xa1, +0x66,0x1d,0xc7,0x88,0x76,0x62,0x26,0x81,0x33,0xf0,0x01,0xcf, +0xd0,0xc8,0x61,0x2e,0xac,0x21,0x20,0x97,0x1a,0xf5,0xce,0x00, +0x35,0x43,0x54,0xc3,0xd9,0x46,0x30,0x1b,0xe5,0x38,0x44,0x34, +0xeb,0xba,0x0f,0xbe,0xc2,0x17,0x2c,0x36,0x42,0x23,0x71,0xac, +0xb6,0xa8,0xb5,0x28,0x71,0xb7,0xe3,0xdb,0x5c,0xaa,0x9d,0xea, +0xec,0x38,0x61,0x09,0x65,0x2b,0x58,0x7f,0x08,0xc7,0xab,0xe1, +0x62,0x95,0x16,0xb7,0x8e,0x3f,0xb3,0xdf,0xc6,0x82,0xf2,0x14, +0xd8,0x85,0x51,0x38,0x79,0x90,0xa3,0x0d,0x67,0x9a,0xe3,0x53, +0x5b,0x54,0x15,0xf9,0x58,0xc1,0x42,0x10,0x7e,0x43,0x70,0x33, +0x18,0xc2,0x66,0x66,0xe0,0x3a,0x9a,0x92,0x36,0xc7,0x4e,0x8b, +0x3a,0xeb,0xca,0x1a,0xde,0xa1,0x5e,0xbf,0x4d,0x5e,0xc1,0x09, +0x9f,0xb0,0x84,0x9c,0xef,0x3c,0xd7,0x7f,0x97,0x9a,0x05,0x55, +0x0a,0x31,0x0d,0x3d,0x08,0xc4,0xc1,0x7a,0xa9,0x5d,0xcf,0x02, +0x54,0x23,0x57,0x61,0x58,0x0d,0x4c,0xcb,0xf8,0x28,0x4b,0xe6, +0x7d,0x71,0x84,0x0b,0x8e,0x32,0x98,0x47,0x03,0x91,0x8f,0x62, +0x2c,0x29,0x6d,0x2d,0xec,0xca,0xbf,0x66,0x4b,0x63,0x96,0x99, +0x9f,0xd5,0x5e,0xfb,0x7d,0x75,0x7e,0x35,0x7b,0x6a,0x6c,0xbc, +0xf8,0x12,0xf3,0x3c,0x8b,0x0c,0x0b,0x77,0x3b,0x17,0x67,0x7b, +0x8f,0x3c,0x53,0xbe,0xaa,0xb8,0xb4,0xb4,0xb8,0x32,0xc9,0x26, +0xce,0x2a,0xda,0xc2,0x6c,0x95,0xcc,0x60,0x8b,0x41,0xae,0x29, +0x7f,0xbb,0xad,0xb9,0xa7,0xee,0x5b,0xee,0xbc,0xc3,0x39,0x5b, +0x6b,0x65,0x54,0x3f,0xeb,0x6b,0xbb,0x73,0xaa,0x31,0x93,0xa4, +0xab,0xd4,0xce,0xbc,0x6e,0xe9,0x81,0x40,0x58,0xb9,0x0f,0xa6, +0x58,0xd1,0xc8,0xa9,0x38,0x34,0xb0,0x86,0x18,0xc0,0x46,0x57, +0x70,0x86,0xc3,0x94,0x3f,0xb0,0x99,0x17,0x33,0x2f,0xa5,0x5d, +0x72,0xa7,0xd6,0x34,0xde,0x0d,0x9d,0x7c,0x50,0x3f,0x9c,0xc3, +0x60,0x16,0xfd,0x7c,0xd1,0x51,0x1d,0x67,0xa8,0x74,0xd8,0x29, +0x3d,0x80,0x75,0xd9,0x94,0x64,0x1d,0x55,0x06,0x35,0xb6,0xf9, +0x5c,0xcb,0x85,0x96,0x4b,0xdc,0x80,0x36,0xab,0x17,0xa6,0x47, +0x3d,0x5c,0x8c,0xbe,0xe4,0xe1,0x96,0xe5,0xbc,0xca,0x8d,0xf4, +0x8e,0xa4,0xd6,0xd4,0x96,0xcc,0x87,0x3c,0xf2,0x81,0x61,0xfb, +0xae,0x99,0x1d,0xa2,0xd6,0x14,0x47,0xad,0x69,0x6f,0xb8,0x47, +0xb8,0x5b,0xb8,0x64,0x4d,0xad,0x91,0x2d,0x51,0x0d,0xd4,0x9a, +0xd6,0x51,0x0f,0x57,0x89,0x7b,0xae,0xa2,0xba,0xca,0x58,0xd8, +0xae,0x78,0x44,0xf0,0x3d,0x52,0xaf,0x3b,0x86,0x3d,0x8c,0xc3, +0xac,0x71,0xc4,0xce,0x39,0x85,0xa6,0x7c,0xff,0xeb,0xa2,0x37, +0x97,0x9e,0x53,0x2d,0x59,0xda,0x21,0x4c,0xa1,0x5a,0x22,0x15, +0x3a,0xea,0xc3,0x35,0xa5,0x95,0xfa,0xb0,0xfa,0x44,0x4c,0xf8, +0xb9,0xc3,0x61,0x53,0x8e,0x86,0x2b,0x9d,0x78,0x0f,0x43,0x3b, +0x70,0x28,0xbc,0x67,0xa0,0x45,0xdc,0x49,0xc0,0x0a,0xd8,0x4e, +0x64,0x61,0xbb,0x09,0x6e,0x47,0xd6,0x04,0x28,0x04,0x5c,0x2c, +0x1a,0xb7,0xdf,0x04,0xb9,0x30,0x96,0xa5,0x24,0x82,0x0a,0xfa, +0x20,0x7e,0x6d,0x88,0x63,0x54,0x6a,0xad,0xeb,0xdf,0x64,0x7c, +0x88,0x85,0x79,0x53,0x60,0x21,0x26,0xe3,0x48,0xe9,0x52,0xef, +0x2f,0x4c,0x7d,0x42,0x32,0x95,0x73,0x29,0x46,0xb3,0xa2,0x32, +0x5e,0x26,0xa9,0xd7,0xd3,0x5e,0xc4,0xdf,0xb7,0x4a,0xe2,0xc3, +0xb6,0x1e,0xd8,0x10,0xac,0xcd,0xcd,0x3c,0x47,0x42,0xef,0x1c, +0x78,0x12,0x72,0xdd,0x3a,0x88,0x4f,0xde,0x9d,0xbc,0x29,0x6e, +0x07,0xa7,0xc8,0x4a,0x22,0x12,0xb8,0x81,0x59,0x0c,0xce,0x13, +0x77,0x50,0xc9,0x9f,0xed,0xfb,0x56,0x19,0x66,0xa1,0x01,0x23, +0x5a,0x52,0xb0,0x06,0x69,0xa0,0x82,0x69,0x34,0xae,0xec,0x50, +0x68,0x90,0x4e,0xcc,0x61,0x63,0x72,0xa3,0xf3,0xa2,0xf2,0xf5, +0x29,0x82,0x77,0x3f,0xea,0x25,0x31,0x56,0x23,0x13,0x58,0xcf, +0x38,0x6c,0xd4,0xdf,0xb5,0x4c,0xbf,0xc8,0x82,0xaf,0x2b,0x28, +0x2f,0x2a,0x2a,0xe6,0xac,0x21,0xbf,0x81,0x2d,0xf5,0xa8,0xf4, +0xaa,0xf1,0x29,0x6c,0xe1,0x57,0x76,0x6d,0xbb,0xe9,0xfc,0x58, +0x02,0xee,0xe1,0xe4,0xf0,0x9e,0x43,0x3e,0x07,0x7c,0xf6,0xe5, +0xf2,0x11,0x51,0x47,0x2f,0x1e,0x39,0x72,0xf4,0x28,0x7f,0x32, +0x9e,0xa9,0xbd,0x52,0xff,0x43,0xc6,0x0f,0x34,0x30,0xb0,0xb0, +0xd8,0x08,0x17,0xe3,0x97,0xc6,0x70,0x94,0xf5,0xc2,0xd1,0xab, +0x50,0x95,0xf2,0xef,0x51,0x85,0xe6,0x7c,0x5b,0x7d,0x4d,0x6d, +0x61,0x15,0x27,0xce,0xe9,0x16,0xd6,0xb2,0x91,0xe7,0xce,0x5e, +0x38,0xae,0x02,0xc3,0x71,0x56,0x55,0x95,0xf6,0x93,0xf4,0xc2, +0xe4,0xfc,0xcb,0xc5,0x53,0x60,0x26,0x8c,0x20,0xb5,0x0d,0xc5, +0x2d,0x39,0x5d,0x5c,0x33,0x93,0x2a,0xaf,0x30,0x6d,0xb4,0xe2, +0xa8,0x3b,0x76,0x23,0xa1,0xa6,0x07,0x4c,0xfc,0x4d,0x38,0x78, +0xc7,0xb8,0x1d,0xd7,0x0f,0x0f,0x50,0xf1,0x8b,0x08,0x3e,0xec, +0x32,0x15,0x79,0x89,0x62,0x53,0xe3,0xb8,0x55,0x99,0x5e,0x9f, +0xa4,0x9a,0x50,0x73,0xa1,0xff,0x57,0x65,0xbc,0xcb,0xc4,0x15, +0xc6,0x56,0x46,0x95,0xd3,0x4f,0x77,0x8a,0x27,0xa5,0x46,0x63, +0xdf,0x2b,0x8e,0x11,0xd8,0x88,0x56,0x8c,0x5e,0xda,0xfe,0x7e, +0x95,0x36,0xa6,0x26,0x36,0xa5,0x46,0x15,0x46,0xb1,0x66,0x29, +0x4a,0x38,0xdf,0x86,0xf5,0x0b,0x8f,0xca,0x51,0xa5,0x58,0xa1, +0x78,0x0e,0x8b,0xc3,0x02,0x8d,0x77,0x19,0xaa,0x94,0x58,0x2b, +0x7d,0x7f,0xa3,0xfc,0x3e,0x8c,0x51,0x16,0x9d,0x24,0xde,0x58, +0x1c,0x8c,0xb3,0x4d,0xf0,0x6b,0x95,0x76,0xc7,0xca,0x3f,0xd2, +0xdf,0xc7,0x80,0xca,0x14,0xd8,0x8a,0xf1,0x38,0x46,0x6a,0xa2, +0xfb,0x33,0xd3,0x90,0x92,0xd6,0xa4,0xaa,0x28,0xc1,0x42,0x16, +0xfc,0x25,0xd3,0x5c,0x07,0xfa,0xb0,0x8e,0x41,0x35,0x71,0x3b, +0x39,0xd7,0x71,0xae,0x9f,0xca,0x62,0x1d,0x95,0x85,0xf0,0x17, +0x05,0x3b,0x1b,0x4a,0x76,0xd5,0x18,0x35,0xde,0xbd,0xdb,0xf4, +0x2c,0xfb,0x05,0xd7,0x20,0xaa,0x99,0x80,0xc0,0xee,0xd3,0x71, +0xd0,0xd4,0xd5,0x37,0xea,0xb0,0xee,0x73,0xee,0x37,0xf7,0xe1, +0xab,0x35,0x1b,0x75,0x7a,0x8d,0xf4,0xcc,0xb7,0xd8,0x2d,0xf5, +0xcc,0x96,0xf1,0xbf,0x95,0x3d,0x6b,0xbc,0xd1,0x79,0xc5,0xf4, +0x3b,0xeb,0x1f,0x9c,0xa4,0x34,0x69,0x61,0xa6,0xe4,0x25,0xb5, +0x7a,0x50,0xeb,0xb3,0x97,0xd4,0x36,0x04,0x6d,0xea,0x25,0x17, +0x8a,0x0e,0x7d,0x4f,0xa0,0x95,0x7a,0xc9,0x9f,0x60,0x3c,0xc1, +0xf2,0x83,0xc8,0xad,0xc2,0x65,0x2a,0x1d,0xce,0x3d,0x30,0x34, +0xf7,0x4d,0x3c,0x90,0x29,0x70,0x19,0x2f,0xe0,0xae,0xc1,0xac, +0xe9,0xe5,0x4c,0x6b,0xa2,0x74,0x09,0x3a,0x4f,0xa4,0xd8,0xf7, +0x26,0x9e,0x24,0x18,0x05,0xba,0x10,0xc5,0x60,0x3c,0x55,0x9f, +0x0b,0x1d,0x67,0xfb,0xef,0x28,0x43,0x14,0x1a,0x31,0x03,0x66, +0x78,0x54,0x72,0xac,0xe1,0x83,0x8e,0xf5,0x93,0xf0,0x1b,0x79, +0x09,0xa9,0xab,0xfb,0x5e,0x42,0x52,0x27,0x26,0xbd,0xd4,0x5f, +0x8d,0xa9,0xd2,0xd3,0x69,0x13,0x38,0xbd,0x9a,0x55,0x2c,0x18, +0x98,0x48,0x0d,0x68,0xbc,0x17,0xac,0x85,0x8d,0xca,0x30,0x8f, +0x1a,0x75,0xfa,0xc5,0xb4,0x8b,0x7e,0xcd,0x3c,0x72,0x7b,0xd0, +0x6c,0x3f,0xee,0x88,0xe0,0xd0,0x81,0xc5,0xb5,0x7e,0x38,0x61, +0x25,0x0e,0x57,0x69,0xb0,0x57,0xfa,0x19,0xbe,0x2c,0x00,0x15, +0xd8,0xad,0x0c,0xf3,0xd9,0xea,0x73,0xb5,0xe7,0x6b,0x2e,0x70, +0xe2,0x79,0x56,0x76,0xcc,0x38,0xc2,0xfa,0x9b,0x48,0x63,0xfe, +0x4d,0x0c,0xf0,0x19,0x4f,0x33,0x53,0xb7,0xf0,0x75,0xa9,0x21, +0x77,0xf6,0xfe,0xb4,0xaf,0x7b,0x8a,0xed,0xc1,0xd8,0xbd,0x71, +0xee,0x31,0xae,0x53,0xfc,0x23,0xf6,0x1e,0xf7,0x3e,0xce,0x09, +0xdf,0xb0,0x4d,0x97,0x9a,0x22,0xeb,0x22,0x39,0x8a,0x36,0xd0, +0xbd,0x04,0xd7,0xf6,0x50,0x29,0x89,0x29,0xc2,0x4a,0xe2,0x14, +0x66,0x13,0x6a,0x71,0x84,0xeb,0x60,0xbb,0xda,0x1a,0xfb,0x4b, +0xaf,0x50,0xd6,0x71,0x5f,0x0e,0x31,0xac,0x97,0xa5,0xb5,0xdc, +0xd4,0x9e,0x5b,0xca,0xda,0x1c,0xb5,0x3e,0x66,0x15,0x11,0x63, +0xc2,0xd7,0x45,0xd5,0x46,0x55,0x47,0x4b,0x9d,0xab,0x27,0xb2, +0x09,0x72,0x25,0x18,0xc2,0x54,0xa7,0x26,0x52,0xf5,0x38,0xcf, +0xb6,0xc5,0x35,0x26,0x54,0x27,0x50,0xfa,0x9b,0xa2,0xa0,0xfe, +0xf3,0x6d,0x07,0xbe,0xbd,0xaa,0x43,0xc3,0xc9,0x73,0x34,0x63, +0xd0,0x29,0x00,0xd7,0x68,0xe2,0x30,0x95,0x66,0x6b,0xa5,0x87, +0x30,0x29,0x87,0x5a,0x9f,0x8b,0x32,0xa8,0xc2,0x99,0xf9,0x2c, +0x3a,0x1d,0x3d,0x67,0x0a,0x0e,0x31,0x4a,0xba,0xec,0xee,0xcc, +0xfd,0x3f,0xaa,0x40,0x3e,0x53,0x95,0x9a,0x5c,0xa5,0xda,0xcf, +0xca,0x92,0x94,0xd6,0x63,0x39,0xeb,0x12,0x16,0x95,0xa7,0xda, +0xc7,0x42,0x6e,0xfc,0xa9,0x56,0xcc,0x0e,0x55,0x7a,0x2f,0x30, +0xec,0x21,0x4f,0x7f,0xef,0xbd,0xbe,0xcd,0x1e,0x7c,0x71,0x71, +0x49,0x53,0x4a,0x0b,0x57,0x2f,0xae,0x66,0xf1,0x0b,0x51,0x46, +0x66,0xe8,0x68,0xe0,0x52,0x73,0x95,0x3c,0xaa,0xe6,0x9b,0xda, +0x9f,0xff,0x0c,0xca,0xca,0xd5,0x3a,0x92,0xcc,0x4e,0x11,0xb7, +0xc3,0x71,0x45,0xaa,0x52,0x78,0x72,0x61,0x35,0x72,0x02,0xbe, +0x53,0xa1,0x2a,0x57,0x7b,0xf9,0x32,0x1d,0xf8,0x78,0xa9,0x1e, +0x0c,0xce,0xfa,0x8f,0xc1,0xe7,0xb1,0x31,0x39,0x83,0x06,0x1f, +0xf7,0x1f,0x83,0x97,0x51,0x2c,0x43,0x0d,0x5e,0xef,0x3f,0x06, +0x5f,0x48,0x0d,0xde,0x06,0x0a,0x1b,0xd9,0x52,0xf7,0xea,0xcf, +0x06,0xbf,0xe2,0xb3,0xc1,0x0f,0x6c,0x02,0xe6,0x33,0x1d,0xa5, +0x6a,0x96,0x4e,0xea,0xfe,0x87,0x71,0x0e,0x9c,0x86,0x49,0x94, +0x5b,0xbe,0xa3,0xdc,0xb2,0x73,0x90,0x5b,0xa6,0xff,0x73,0x50, +0x9e,0x4e,0x29,0xe4,0xd6,0x63,0x24,0xcc,0x2c,0xd8,0x58,0xb2, +0xdb,0x4f,0xd4,0x6e,0x0d,0xc2,0xfd,0xff,0x6d,0xb7,0x53,0x06, +0xed,0x76,0x04,0xb5,0xdb,0x8c,0xba,0xff,0xd8,0xed,0x2b,0x26, +0xfe,0x1f,0xbb,0xfd,0xd4,0x29,0xc6,0x99,0x30,0x98,0x2d,0xce, +0xa4,0x4c,0xd3,0x8b,0x32,0xcd,0x4c,0xe9,0x54,0x7d,0x0f,0x64, +0xfe,0x87,0x50,0x7e,0xda,0x39,0x38,0xb5,0x24,0x36,0x9a,0xfa, +0xb2,0xc8,0x7c,0x03,0x69,0x37,0xe2,0x98,0xe7,0x11,0x3a,0x35, +0x4d,0x13,0x58,0xc6,0x38,0x6d,0x34,0xd2,0x58,0xad,0x5f,0x64, +0xc9,0x57,0x17,0x94,0x15,0x16,0x94,0x50,0x5f,0x96,0xd4,0xc8, +0x16,0x7b,0x94,0x7b,0x56,0xf9,0x14,0xb5,0xf0,0x6b,0xbb,0x77, +0xde,0x74,0x7b,0xc4,0x89,0x81,0xe2,0x74,0x02,0x13,0x3a,0x70, +0x02,0xac,0xfe,0x05,0x1a,0x91,0x3e,0x60,0x86,0x68,0xc8,0xf8, +0x45,0xf8,0x1e,0xf7,0xa1,0xba,0x35,0xda,0x44,0xe4,0xd9,0xe0, +0x93,0xc1,0xdf,0xec,0x3f,0x29,0x15,0x21,0x99,0x91,0x07,0x13, +0xf3,0x81,0xad,0x3d,0xd1,0xce,0xdb,0x1e,0xb2,0x0d,0xb5,0x09, +0xe5,0x6a,0x14,0x2b,0x08,0xea,0x53,0xb8,0xa2,0xcf,0xd2,0x10, +0xee,0x41,0xaa,0x1b,0x0a,0x5b,0xb2,0xba,0xb8,0x46,0xba,0x38, +0xa5,0xa6,0xf5,0xd4,0x73,0x25,0x52,0xcf,0x15,0x66,0x76,0xc0, +0x24,0xc0,0x98,0x83,0x07,0x8c,0xdb,0x09,0x7d,0xba,0x02,0xfe, +0x74,0x05,0x5c,0xa7,0x22,0x91,0x56,0xe0,0x6f,0xe6,0x66,0x55, +0x7a,0x5d,0xa2,0x6a,0x42,0xed,0xe0,0x02,0x74,0x52,0xc7,0x15, +0x33,0xb8,0x00,0xf7,0x3b,0x45,0x5f,0xea,0xb8,0x3e,0x19,0x2a, +0x26,0x12,0x3c,0xf3,0x19,0x83,0x78,0x19,0x52,0x8c,0xf7,0x6f, +0x6a,0xf1,0x44,0xbd,0x8f,0x62,0x10,0x2b,0x8a,0x41,0xce,0x30, +0x03,0x47,0xe1,0x3c,0x09,0xdc,0x62,0xb5,0x79,0xce,0xf6,0x02, +0x39,0xff,0xe1,0x4e,0xcf,0x8b,0x44,0x29,0xe5,0x2f,0x6e,0x6d, +0xab,0xd6,0xab,0xad,0x85,0x6d,0xfc,0xc6,0x9b,0x96,0xb7,0xf7, +0x7d,0xcb,0x1d,0x11,0x7d,0x08,0x4c,0xef,0xc0,0xe9,0x30,0xea, +0x7d,0x07,0x9e,0x96,0xbd,0xc1,0x51,0xb8,0x42,0x06,0x2b,0xf0, +0x0a,0x63,0x72,0xd4,0xf8,0x98,0x2c,0x22,0x96,0x4e,0x72,0x62, +0x32,0x4c,0xcf,0xfd,0x29,0xef,0x54,0x27,0x6f,0x17,0x66,0x19, +0x66,0x71,0x94,0x7b,0x74,0x9b,0x5c,0xee,0x8c,0xef,0x89,0xee, +0xb0,0x8e,0xe7,0x8f,0xea,0x1f,0x31,0x39,0x68,0xc1,0x61,0x38, +0xcc,0x21,0x59,0xb2,0xac,0x8d,0xf1,0x86,0xcd,0x97,0xf9,0xd0, +0x1e,0xbf,0xe7,0xfe,0x1d,0x9c,0xb0,0x10,0x63,0x24,0x06,0xf3, +0x44,0x62,0x30,0x57,0xa9,0xbf,0xfd,0x34,0xb6,0xe3,0x5f,0x63, +0x19,0xc5,0x6d,0xfc,0x92,0x0c,0x9c,0x42,0x39,0x83,0x17,0xfc, +0xfe,0x49,0x5b,0x31,0x57,0x7a,0x09,0xd3,0x32,0x61,0x39,0xc4, +0x28,0x2b,0xf4,0x18,0x03,0x98,0x49,0x56,0x0c,0x4c,0xf8,0x91, +0x55,0x58,0x50,0x28,0xd5,0x84,0x97,0xee,0xc0,0xc5,0x26,0xbc, +0x78,0x07,0xf2,0x9a,0x31,0x9e,0x8d,0x4f,0x8d,0x4f,0x8f,0x4a, +0xa3,0xe2,0x3d,0xe6,0x7f,0xd8,0xff,0x60,0x00,0x87,0xce,0x4c, +0x7c,0x46,0x5c,0x46,0x4c,0x86,0x51,0x1c,0xef,0xb2,0x54,0x6f, +0xf9,0x7a,0xc3,0x5c,0x63,0x3e,0x27,0x3d,0x3b,0x2b,0x2b,0x8f, +0xc3,0x67,0xdd,0x8d,0xc2,0xf3,0x56,0xac,0x7e,0xc2,0x1a,0xc1, +0x09,0xa2,0x8e,0xc7,0xdb,0xd9,0xb8,0x64,0xa5,0x30,0x94,0x93, +0x3b,0x70,0x5c,0x9d,0xb5,0x1c,0xb1,0x01,0x8f,0x3f,0x61,0xc7, +0x36,0x28,0x6a,0x89,0xa9,0x60,0xdc,0xc6,0x5e,0xc1,0x55,0x44, +0x4c,0x05,0x14,0x52,0x51,0x8b,0x4d,0x28,0x89,0x19,0x3c,0x9b, +0xdd,0xd5,0x2e,0xae,0x97,0x83,0x1e,0x73,0xcc,0x2b,0xcc,0x4d, +0x6a,0x2b,0xb3,0x73,0x60,0x18,0xc1,0x09,0x8f,0x60,0x58,0x1d, +0x0e,0xfb,0x6e,0xf0,0xf9,0x0e,0x70,0x0d,0x33,0x99,0xb8,0xcc, +0xb8,0xdc,0xe8,0x74,0x9b,0x68,0x3e,0x3c,0xf0,0xb0,0xd7,0x41, +0x1f,0x6e,0x03,0x13,0x97,0x1d,0x95,0x71,0x29,0xd9,0x36,0x96, +0x3f,0x68,0xe1,0xb0,0xc4,0x5e,0xce,0x5d,0x78,0x70,0xf6,0xfe, +0x75,0x65,0x78,0x05,0x72,0x71,0x2a,0xaa,0x33,0xb8,0xfa,0x0c, +0x3a,0x3b,0x53,0x9f,0xdc,0xe0,0x90,0xf1,0x3c,0x1e,0xd8,0x4b, +0xc0,0x4c,0xc9,0x74,0x8f,0x8e,0xa3,0x8f,0xf8,0x29,0xf8,0xb4, +0xb9,0x19,0x52,0xd9,0x0d,0x8a,0x99,0x64,0x29,0x16,0xfd,0xc4, +0x0a,0x7b,0x51,0x85,0xfc,0x06,0x67,0xe6,0x0e,0x16,0xfa,0x3f, +0xf3,0x91,0x15,0xc7,0xe1,0x0e,0x72,0xe7,0x9d,0x3a,0x0b,0xa5, +0xa9,0x14,0x70,0x52,0x7a,0x7b,0x86,0x11,0xc7,0xf9,0x92,0xef, +0xde,0x6d,0x67,0x17,0xe1,0x04,0xf2,0xe8,0x9d,0x1a,0x2b,0x98, +0x54,0x92,0x7a,0xf7,0x3e,0xd3,0x1a,0x8b,0x8a,0x2a,0xde,0xbe, +0xc1,0xa8,0xc9,0xaa,0x8c,0xc3,0x72,0xdc,0x49,0xae,0x55,0xb6, +0x34,0xd6,0x74,0xd8,0x14,0xf0,0x2e,0x16,0x66,0x36,0x06,0x1e, +0xdc,0xd8,0x4e,0xe1,0x01,0x91,0x09,0x13,0x3b,0x70,0xcd,0x9f, +0xb0,0xa3,0x1d,0x77,0x48,0x95,0x24,0xb6,0xcb,0x61,0xfb,0x4c, +0x56,0x71,0x54,0xfc,0x95,0x6c,0x28,0xdb,0x5d,0x6d,0xd2,0xf4, +0xe8,0x49,0xe7,0x87,0x5c,0xf8,0x82,0x7a,0x4e,0x03,0xd8,0x04, +0x3e,0xdd,0xe8,0x03,0x4b,0xf5,0x71,0x29,0xba,0x1a,0x81,0x2b, +0x6e,0x42,0x0b,0x63,0x0a,0x68,0xfc,0x17,0x59,0xad,0xd7,0xd4, +0x34,0xea,0xb7,0xfd,0xce,0xe5,0x95,0x89,0x1f,0x5f,0xb1,0xa4, +0x69,0xd3,0x15,0x2d,0x1d,0xd3,0x2d,0x0e,0xab,0x3d,0xf3,0x8c, +0xf8,0x9f,0x4a,0x9f,0x34,0xde,0xec,0xee,0x95,0xdd,0xb1,0x7e, +0xe1,0xc4,0x0d,0xfc,0x21,0x50,0xae,0x15,0x00,0x1f,0x20,0x80, +0xc5,0x4a,0x1a,0x55,0x81,0x85,0x03,0xc8,0xb2,0x8f,0x30,0x84, +0xb8,0x47,0xb8,0x44,0x38,0x46,0x64,0x34,0xa5,0x5f,0x4d,0x6c, +0x31,0x4c,0xe6,0x0f,0x1b,0x06,0xaa,0xfb,0x1b,0x6c,0x3a,0xb2, +0xf1,0x98,0xe6,0xf1,0x68,0x43,0x1e,0xc6,0xc4,0xc2,0xfa,0x0c, +0x18,0x91,0xc5,0xe1,0xa1,0x56,0x12,0xda,0x18,0x78,0x63,0x5f, +0x83,0x7c,0x3f,0x9f,0x61,0x95,0xbe,0x3b,0xde,0x9a,0x12,0xca, +0x3c,0x89,0x80,0x03,0x93,0xfc,0xee,0xf2,0xeb,0xb8,0x7b,0x9c, +0xa0,0xd5,0x3f,0x70,0x57,0x0f,0x1e,0x33,0x61,0xdb,0x0f,0x2e, +0x3b,0xb0,0x88,0xc3,0x13,0xfa,0x10,0xc2,0x04,0xe0,0x58,0x1a, +0x78,0x02,0xe6,0x51,0x9a,0xa6,0xf7,0x69,0x72,0x3f,0xae,0x61, +0xb4,0xe0,0x03,0xc1,0x0f,0x22,0xc3,0xa6,0xfd,0x9a,0x0d,0x13, +0x32,0x61,0x1c,0xfd,0x26,0xf3,0x62,0x52,0x0d,0xab,0x6a,0x20, +0x30,0x0e,0x66,0x71,0xa2,0x2d,0x93,0xd0,0x1b,0xd7,0x1d,0xd5, +0xc8,0x09,0x55,0x7d,0x03,0xaf,0xf5,0xe1,0x18,0x13,0x84,0xaa, +0xc6,0x18,0x24,0xc3,0x65,0x9c,0x70,0x9a,0x09,0xd5,0x3f,0x6c, +0x70,0xc8,0x9c,0x13,0x5f,0xe8,0x7f,0x9a,0xdc,0xc7,0x50,0x47, +0x79,0x90,0xa4,0xdd,0xc8,0x78,0x9e,0xf6,0x8c,0x13,0x66,0x31, +0x11,0x86,0x87,0x57,0x1f,0x58,0x41,0x03,0x76,0xb8,0xe2,0x05, +0xb1,0x1b,0xec,0x89,0x31,0x6b,0xf0,0x2e,0x64,0x51,0x71,0x71, +0x5d,0x61,0x1b,0x27,0xd6,0xf6,0x29,0x96,0xb1,0xf9,0xb7,0xb2, +0x1f,0x26,0xbf,0xe0,0x84,0x0e,0xfc,0x9d,0x60,0x32,0x13,0xfb, +0x28,0xfa,0x71,0xf4,0x13,0x0e,0xae,0xf6,0x88,0x7f,0x1a,0xc2, +0x21,0x26,0x7c,0xe3,0xb1,0x8d,0x47,0x36,0x72,0x68,0x6d,0x04, +0x32,0x26,0x18,0x27,0xef,0x43,0xe2,0x8f,0x93,0x38,0xdc,0x6a, +0xa0,0xd8,0xdc,0x3b,0x9d,0xd1,0x16,0xbe,0x22,0xe2,0x57,0x98, +0xc5,0x66,0xc2,0x97,0xe9,0x40,0x92,0xe1,0x2b,0x1a,0xab,0x0a, +0xe0,0x5f,0x04,0xa2,0x60,0xe0,0x8a,0x38,0xc0,0xa6,0xd5,0x27, +0xd7,0xc7,0xd5,0xeb,0x25,0xf0,0x2e,0x38,0x75,0x07,0x4e,0x58, +0xb8,0xb0,0x91,0x72,0x8e,0xb6,0x86,0xab,0x15,0xb7,0x38,0xf0, +0xc3,0x28,0x71,0xa5,0x8e,0xb0,0x52,0x64,0x6e,0x08,0x8c,0xb0, +0xe2,0x2a,0x33,0x16,0xa4,0x56,0x32,0x58,0x21,0xe4,0x43,0x05, +0x6b,0x2a,0xdd,0x50,0xd2,0x11,0x7f,0x81,0x5f,0x74,0xc5,0x79, +0xc2,0x2f,0x38,0x61,0x60,0xeb,0xe7,0x8e,0x05,0x7d,0xf0,0x07, +0x81,0x1d,0xc2,0x22,0xdc,0xc1,0x0e,0x98,0x0e,0xa8,0x12,0x50, +0x6e,0xfa,0x78,0xfd,0xfb,0x9b,0xd6,0xe5,0xfc,0x56,0x9d,0x05, +0x86,0x38,0xc9,0x86,0x2e,0x16,0x8c,0x25,0xbf,0xd9,0xc1,0xc8, +0xdd,0xef,0x75,0x6a,0x9a,0xf8,0xc5,0xbd,0x38,0xf6,0xe6,0xec, +0x1a,0xba,0xb8,0xd5,0x82,0x48,0x10,0x19,0x1a,0x52,0xab,0xe3, +0x6b,0x39,0x41,0xa3,0x6b,0xe0,0x8e,0x31,0xbc,0x64,0x42,0xed, +0x0f,0xdb,0x1f,0x94,0xee,0xde,0x99,0x80,0x2f,0x13,0x6c,0xb9, +0xdf,0x3a,0x88,0x7a,0xce,0xd3,0xc6,0x9f,0xa6,0x76,0xe1,0x22, +0x46,0x47,0x6a,0xe3,0x39,0x5b,0x1c,0xc9,0xa6,0x34,0xa4,0x36, +0x4a,0xb9,0xff,0x56,0x03,0x63,0x49,0x83,0xd0,0x66,0x7d,0x15, +0xde,0x0e,0x6c,0xc3,0xb7,0xac,0x62,0x08,0x94,0x11,0xd4,0x12, +0xdb,0x40,0x8b,0x42,0x94,0x2c,0x70,0x25,0x4d,0xc0,0x66,0xc3, +0x94,0x38,0x58,0xcd,0x55,0xe3,0x62,0x36,0xee,0x6a,0x74,0x6f, +0x54,0xa7,0xc1,0x05,0xfe,0xb8,0xe9,0x51,0x9d,0x30,0x2d,0x6e, +0xba,0xe1,0x3b,0x26,0x68,0x96,0xdf,0xf4,0xbd,0x1b,0x1b,0x5d, +0xeb,0x5d,0xea,0x9d,0x9c,0xb7,0x98,0x6a,0x68,0x68,0x97,0x5b, +0xf0,0xb7,0x6f,0x76,0xdc,0xa9,0x7e,0x5c,0xe4,0x55,0xec,0x51, +0xec,0x5a,0xd6,0xc8,0xbb,0x54,0xb9,0x96,0xb9,0x51,0x77,0xd0, +0x23,0xbc,0xa2,0x88,0x1d,0xee,0x41,0x3d,0xeb,0x24,0xde,0x20, +0xb0,0x5b,0x1c,0x0e,0xbf,0xea,0x89,0x73,0x85,0xe1,0x38,0x41, +0x54,0x37,0x12,0x9e,0x77,0xb3,0x78,0x0b,0x9e,0x11,0xd0,0x03, +0x6b,0xd4,0x63,0x07,0xcc,0xf1,0x20,0xc9,0x7c,0x9a,0xfe,0x53, +0xca,0x5b,0xee,0x4f,0xe6,0x28,0x92,0x7d,0xc8,0x39,0xcc,0xf4, +0xca,0xf3,0xca,0xf6,0xca,0xe2,0x84,0x97,0x78,0x88,0x5c,0xb5, +0xb9,0xbf,0xa3,0xc9,0xa8,0xae,0x96,0x37,0xef,0xda,0x7c,0x5b, +0xaf,0x8e,0x13,0x59,0xdc,0x43,0x1e,0x36,0x7e,0x77,0xab,0xb6, +0xdf,0xba,0x94,0x77,0x30,0xd1,0xd2,0xdd,0x62,0x4b,0xb9,0xb9, +0xe1,0x7e,0x32,0x23,0x7b,0x79,0xd1,0xe6,0xaa,0x7b,0xad,0x3d, +0xfd,0xa5,0x37,0xb9,0x56,0xbc,0xcb,0xa6,0x64,0x25,0x65,0xc7, +0xe5,0xfc,0x16,0xf9,0x21,0xfa,0x45,0x5c,0x54,0x48,0x64,0x48, +0xe4,0xc1,0xb6,0x5c,0xde,0xf3,0x9e,0xf5,0x03,0xeb,0x3e,0x4b, +0x1f,0x3e,0xc7,0x33,0xcb,0x39,0xdd,0x71,0x79,0xd8,0xcc,0xf0, +0x99,0xc7,0x7f,0x7d,0xf6,0x1b,0x0c,0xbf,0xfd,0xce,0xbc,0x88, +0xb7,0xd2,0xdc,0xbd,0x75,0xa7,0x86,0x6f,0xce,0xde,0x1c,0xef, +0xac,0x9e,0x9e,0x96,0xeb,0x15,0xdd,0xf2,0x5c,0xde,0xdd,0xc4, +0x52,0x5b,0x26,0x0f,0x4c,0xd9,0x97,0x14,0x94,0xe8,0xe8,0xc0, +0xdf,0xb0,0xb9,0x61,0xd8,0x63,0xb8,0xd7,0xd7,0xdb,0x7f,0xef, +0x3e,0xeb,0x53,0xb6,0xa7,0xed,0x4e,0x47,0x1a,0xf2,0x57,0xce, +0xdf,0x3c,0x7f,0xeb,0x82,0xb5,0xda,0xd6,0x9d,0xb3,0x4c,0xf2, +0x2d,0xf8,0xaa,0xf4,0xf2,0xec,0x92,0xbc,0x4a,0xeb,0x46,0xfb, +0x4e,0xe7,0x0d,0x0e,0x0b,0x3c,0x71,0x58,0x40,0x8a,0x09,0x0f, +0xa3,0x32,0x61,0x44,0xf5,0xdb,0x8e,0x57,0x16,0x7f,0x38,0xc2, +0xc8,0xbd,0xdc,0xc0,0xd6,0x4f,0x0b,0x88,0x7c,0x8e,0xfa,0xba, +0x95,0xbb,0x4b,0x2d,0xf8,0x9f,0xef,0xde,0x7f,0xd7,0xf3,0x17, +0xe7,0x86,0xce,0xc4,0x74,0xee,0x0a,0x1c,0xb9,0x68,0x47,0x91, +0x19,0x5f,0x51,0x90,0x9f,0x9f,0x95,0xcb,0x89,0x5b,0xbb,0x85, +0x63,0x6c,0x59,0x63,0x49,0x67,0x71,0x37,0x07,0x8b,0xf0,0x07, +0x72,0xe9,0xd2,0xa5,0x8b,0x17,0x2f,0x71,0xd0,0xcc,0xb8,0x1b, +0x99,0x9a,0x6b,0xda,0xeb,0x55,0x98,0xd5,0xd9,0xb5,0x50,0x0b, +0xf2,0x52,0xbc,0x22,0xb6,0x73,0x0c,0xd7,0x6d,0xd5,0x2c,0xb7, +0xe6,0x1f,0xdf,0xbb,0xfa,0xbe,0xf1,0x4f,0x0e,0x8e,0x8b,0x5d, +0x04,0x46,0x74,0xe2,0x08,0x58,0x0a,0x13,0x3a,0x69,0x08,0x5f, +0x02,0x4a,0x1d,0x18,0xca,0xc4,0x16,0xc4,0x14,0x46,0x16,0xc9, +0xe3,0xf8,0xfd,0xeb,0xbc,0xb6,0x5a,0x1a,0x54,0xdb,0xf1,0x19, +0xf9,0x69,0xc5,0xc9,0x65,0xdc,0x2b,0x5c,0x22,0x61,0x03,0x4d, +0x71,0x19,0xb3,0xf1,0x80,0x12,0xfc,0x6c,0x82,0x7f,0xb1,0xbe, +0x27,0xfd,0x4f,0xec,0xfb,0x46,0xea,0xb9,0x33,0x24,0x19,0xb6, +0x94,0xc1,0x90,0xb2,0x88,0x0e,0xde,0x2d,0xcc,0x21,0xcc,0xf6, +0x88,0xd4,0xb8,0x62,0x01,0xe9,0x56,0x34,0xc2,0x1c,0xf1,0xc5, +0x6c,0x89,0x83,0xbf,0x60,0xaa,0x92,0x2f,0x37,0xa8,0x2a,0x94, +0x31,0x81,0x15,0xb5,0x50,0x87,0x38,0xcc,0xdf,0x8c,0xe3,0x36, +0xee,0x28,0xb6,0xe0,0x0b,0xf2,0xb2,0xf2,0xd2,0xf2,0x38,0x51, +0xbd,0x43,0xb8,0xc4,0x16,0x36,0xe6,0x77,0x64,0x49,0x1d,0xa7, +0x4f,0x6c,0x22,0x9f,0x16,0xea,0xfd,0x6b,0x21,0xab,0xd8,0xaa, +0xb0,0xa6,0x10,0x9b,0xc9,0x05,0x4e,0x09,0x9a,0xdb,0xc5,0x5e, +0x39,0xd8,0x32,0x3e,0xc8,0x51,0xf2,0x21,0x87,0xa9,0x8c,0x0b, +0xae,0xa4,0x70,0x4d,0x26,0xfc,0xd6,0xb1,0x9c,0x11,0x5f,0xc0, +0x3e,0x72,0xd9,0x3c,0x45,0x3d,0x46,0xb7,0x2d,0x95,0x3f,0xd2, +0x1f,0x74,0xe7,0x40,0x0b,0x87,0xa1,0x78,0x97,0xe4,0xfc,0x90, +0xf0,0xe7,0xc5,0xbf,0x65,0x97,0xf8,0x13,0x33,0x43,0x17,0xfa, +0xac,0xe1,0x14,0xd1,0xe0,0x25,0x55,0x0e,0x3c,0xcd,0x56,0x00, +0xfd,0xff,0x63,0x07,0x66,0x90,0x2e,0x18,0x30,0xee,0x87,0x77, +0xe2,0x01,0xa9,0x0d,0x89,0x1a,0x54,0x49,0x6d,0xac,0x07,0x60, +0x07,0xb5,0x8b,0x58,0xc1,0x8e,0x1c,0x07,0x65,0x18,0xdb,0x81, +0x63,0x3f,0xef,0x89,0xcc,0x94,0x49,0xcd,0x3a,0xf0,0x4b,0x47, +0x9c,0xb9,0x08,0x27,0x57,0x5a,0xf2,0xdf,0xc3,0x90,0xfc,0x3f, +0x2f,0xbe,0xa3,0x6c,0x37,0xb7,0x5b,0xb8,0xc8,0x44,0x0e,0xee, +0x89,0x3c,0xc3,0xb5,0x15,0x15,0x1b,0x60,0x69,0x78,0x52,0xf8, +0xd9,0xb0,0x23,0x53,0x84,0x37,0xb0,0x8e,0xe0,0x59,0x26,0x47, +0x9a,0x48,0x75,0xbb,0x58,0x27,0x07,0x8b,0xcf,0x13,0x99,0x2d, +0x87,0xaf,0x3e,0x4f,0x64,0xbc,0x4c,0xb8,0xdd,0xb1,0x8a,0x86, +0xf5,0x95,0xd2,0xe8,0x22,0x3e,0x8f,0xee,0x8b,0xc1,0xd1,0xfd, +0x3e,0x38,0x3a,0x6f,0x69,0x74,0xcb,0xa4,0xd1,0xa9,0xe3,0xef, +0xa0,0x4e,0x47,0x17,0x22,0xec,0x25,0x27,0x60,0xec,0xcb,0xb6, +0xd5,0x60,0x2c,0x43,0x63,0x1c,0x6d,0x4a,0xa1,0xe1,0x11,0x24, +0x6e,0x38,0x4f,0x0d,0xc7,0x97,0x5b,0xf2,0xfd,0xbf,0x67,0xfc, +0x71,0x91,0x62,0x1a,0x31,0xb9,0x43,0xc8,0xfc,0xa7,0xc0,0x49, +0x3f,0x2e,0x2f,0x2d,0x37,0x84,0xf9,0xe1,0x89,0x52,0x13,0xf5, +0x29,0x34,0xac,0xfc,0x4d,0x9c,0x74,0x96,0x1a,0xa3,0x8a,0x69, +0xa6,0x39,0x0f,0x93,0xdb,0xa9,0x76,0x94,0x3c,0xe6,0x2e,0x31, +0x85,0x9b,0x60,0xba,0x3e,0xcc,0x32,0xc8,0x6c,0xe1,0x71,0x4e, +0x17,0x7e,0xd1,0x6d,0x7b,0x93,0xd3,0x47,0x3b,0xfa,0xf3,0x56, +0xc2,0x92,0x46,0xd4,0xba,0x47,0xb1,0xc9,0x24,0x7c,0x40,0x7a, +0xd2,0xbb,0x32,0xdb,0xb2,0x1b,0x03,0x1a,0x02,0x4a,0xf6,0x67, +0x57,0xf0,0xde,0x97,0x5d,0x53,0x9d,0x52,0x4a,0x53,0x8b,0xd2, +0x73,0x33,0x3c,0x0a,0x78,0xef,0x40,0x67,0x7f,0xbb,0x00,0xf3, +0x4c,0xcb,0x34,0xb7,0x78,0x3f,0x37,0xbe,0x30,0xac,0x22,0xa4, +0x32,0xd8,0x36,0xc8,0x72,0xbf,0xcd,0x21,0x4e,0xd0,0x99,0x43, +0x60,0xbf,0x31,0xee,0x12,0x67,0xc3,0x2e,0x19,0xee,0x07,0x17, +0xf6,0xc4,0xfe,0x13,0x41,0xc7,0xf7,0x71,0xe8,0x87,0x3f,0xf7, +0x40,0x2d,0xcc,0x63,0x0e,0x59,0x85,0x58,0x85,0x38,0x04,0x9c, +0xda,0x77,0x6a,0xff,0xe9,0x68,0x33,0xfe,0x45,0x24,0x8c,0xbd, +0xfc,0x32,0x3e,0x26,0x38,0x3a,0x38,0x32,0xa4,0x36,0x9d,0x0f, +0x68,0x73,0xba,0xed,0x55,0xe7,0x78,0x80,0x4f,0x08,0x4a,0xf4, +0x4b,0xf4,0xb3,0x89,0x90,0x1f,0x37,0x3d,0x9e,0x58,0x9d,0x54, +0x17,0x5f,0x47,0x75,0x9d,0x2a,0x80,0x12,0x93,0x68,0xae,0xf4, +0x1b,0x53,0x91,0x9c,0x5c,0xae,0x0a,0x45,0x58,0xc1,0x5e,0x92, +0xd8,0x55,0x2a,0x75,0xf8,0xdf,0x08,0x8b,0x08,0x58,0xc2,0xb8, +0x2e,0x1c,0x07,0xdb,0x8d,0x70,0x3b,0x8e,0x35,0x86,0xb1,0x68, +0x39,0x47,0x34,0xee,0xbc,0x09,0x8e,0x34,0x46,0x5f,0x87,0x51, +0x04,0x9b,0x42,0x70,0x9a,0x2e,0x8e,0x53,0xa9,0xb7,0x6e,0x7c, +0x93,0xf9,0x79,0xd3,0x61,0x3d,0x5e,0xc6,0x89,0xcc,0x65,0x03, +0xa5,0x3f,0x99,0xa6,0x7f,0x36,0x1d,0xb2,0x58,0x31,0x55,0x83, +0x60,0xf8,0x52,0xe3,0x9f,0xb0,0x85,0xf5,0x08,0x75,0x0b,0x75, +0x3d,0x92,0x68,0xc4,0xbf,0xcb,0x7f,0x56,0x76,0xbd,0xe2,0x64, +0x07,0xef,0x73,0xd8,0xfb,0xb0,0xe7,0x61,0x0e,0x72,0x9e,0x77, +0xad,0x85,0xf0,0xf7,0x5d,0x18,0x63,0xcc,0x2a,0x1e,0xe0,0x76, +0xa9,0xf5,0xb7,0x21,0xa5,0x95,0xb8,0x9a,0x12,0xc8,0x7f,0x38, +0xef,0x72,0x69,0xff,0xe1,0xc0,0xe7,0xfd,0x87,0x85,0xd2,0xfe, +0x83,0xe2,0x1c,0x1c,0x26,0xed,0xae,0xfd,0x5e,0xb7,0xfc,0xb3, +0x29,0x2b,0x9c,0x54,0xaf,0xd6,0x66,0x78,0x8d,0x83,0xb3,0xed, +0x14,0x5f,0xd4,0x0e,0x26,0x93,0x3e,0xd1,0xdf,0x20,0x2e,0xa5, +0x4f,0xa8,0x29,0x07,0x4d,0xac,0x45,0x03,0x39,0x5c,0x60,0x0c, +0xb5,0xd6,0x98,0xe3,0x04,0xdb,0x1c,0x73,0xfe,0x66,0x56,0x7f, +0x41,0x07,0x45,0xc7,0x33,0x99,0xdd,0x1a,0x0b,0xb4,0x51,0xd9, +0x84,0xbe,0xd7,0x9e,0xd1,0x92,0x53,0x4f,0xb1,0xdf,0x9c,0x2b, +0x95,0xc2,0x7a,0xa7,0x2b,0x70,0x44,0xdc,0xc4,0x66,0x65,0x64, +0x66,0xa6,0x65,0x71,0x70,0x41,0x98,0x4f,0xa4,0x03,0xd7,0xa5, +0x0c,0x2a,0x8d,0xd0,0xa7,0xaf,0x58,0x61,0x29,0x2a,0x11,0x6d, +0x71,0xe9,0x35,0x16,0x5e,0xe1,0x28,0x92,0x12,0x90,0x1e,0x98, +0x11,0xc4,0x89,0xca,0x4c,0x46,0x5a,0x5a,0x46,0x4a,0x26,0xe7, +0x40,0x29,0xfa,0x5b,0x61,0xfd,0x12,0x76,0xec,0x13,0xe9,0x54, +0x0f,0xba,0x3b,0x59,0x21,0x14,0xb7,0x12,0xdc,0xc7,0x64,0x4b, +0x3a,0x1f,0xdf,0x2e,0x7e,0x43,0x87,0xc6,0xf8,0x49,0x3a,0xff, +0x95,0x1c,0x46,0x31,0x6e,0xb8,0x5a,0x09,0x39,0x99,0x90,0xdd, +0xb1,0x89,0x11,0x6d,0x40,0x9f,0x74,0x8b,0xa3,0x8c,0x58,0x45, +0x82,0x9f,0x44,0x55,0x3c,0xd9,0x52,0x58,0xad,0x24,0x36,0x9a, +0xd0,0xaf,0xaa,0x1f,0xac,0xf7,0xd0,0x81,0xf5,0x94,0x18,0x19, +0x8a,0x0b,0xa8,0x39,0xdc,0x30,0xee,0xa5,0xe6,0xb0,0x8b,0x9a, +0x03,0x3e,0x3e,0x45,0x89,0x4e,0x38,0x64,0x62,0x13,0x3e,0x60, +0x15,0x67,0xa0,0x96,0xa0,0x06,0xde,0x00,0x0d,0x16,0x1d,0x82, +0xa4,0x5a,0x10,0x3a,0x52,0x2d,0x88,0xfb,0x0a,0xe9,0x60,0xb0, +0x90,0x32,0xb1,0xd0,0x53,0x52,0x4c,0xba,0x4e,0x63,0x92,0x98, +0x40,0x83,0x92,0x91,0x70,0xbd,0x7b,0x19,0x68,0x21,0xc0,0x07, +0x7d,0x71,0x2e,0xfc,0x2d,0x1d,0x7a,0x2c,0x82,0xa7,0x04,0xf4, +0x41,0x86,0xfa,0xec,0x40,0xd5,0x6f,0x94,0xa2,0xbd,0xa7,0x14, +0xad,0x6b,0x90,0xa2,0x65,0xfc,0x43,0xd1,0x32,0x64,0x6c,0xa7, +0xb8,0x88,0xfe,0xf0,0x1e,0xca,0xb0,0xb2,0x24,0x86,0xe5,0xfd, +0x99,0x61,0xad,0xa1,0x0c,0x4b,0x78,0xb9,0x88,0xf4,0x59,0x7f, +0xb7,0xa3,0xc1,0xa8,0xbe,0x86,0xb7,0xec,0xda,0x76,0xc7,0xa0, +0x8e,0xc3,0x4f,0x34,0x54,0x7d,0xdf,0x78,0xfb,0xdb,0xea,0x7e, +0xeb,0x12,0xde,0xc9,0x44,0x5b,0x77,0xbb,0x0d,0x55,0xc0,0x05, +0x10,0x49,0x84,0xda,0x7a,0xbc,0x70,0x1d,0xdc,0x6a,0xd1,0xad, +0xff,0x9f,0xe7,0xa3,0xb5,0x18,0xcc,0xc4,0x24,0xc5,0x5c,0x8e, +0x4e,0xe1,0x3a,0x7b,0x61,0x75,0x23,0xae,0xee,0x36,0x31,0xc2, +0x5d,0xd2,0xd3,0x0a,0x2b,0x58,0x61,0xca,0x38,0xc7,0xee,0xb3, +0xb4,0x50,0xd7,0x32,0x9c,0x92,0x69,0x93,0x91,0x76,0x39,0x39, +0x21,0x71,0x0a,0x3e,0x87,0x52,0x22,0x83,0x93,0x1d,0x2c,0x9c, +0xda,0x45,0x60,0x97,0x09,0x63,0x1e,0x7d,0x6c,0x5f,0x58,0xe0, +0xa1,0xfd,0x53,0x70,0x03,0x13,0x9b,0x1c,0x9b,0x1c,0x93,0x12, +0x71,0x8e,0x6f,0x62,0xc4,0xa4,0x10,0x3a,0xa7,0xd6,0x2e,0x16, +0x46,0xe1,0x5c,0xd2,0x0f,0xba,0x7a,0xac,0x78,0x25,0x92,0x4e, +0x2e,0x8c,0x2e,0xcf,0x3c,0x2a,0xe4,0xc1,0xb7,0xf0,0xd9,0x66, +0x4a,0x12,0xc3,0x4c,0x58,0x61,0xa2,0x17,0xb9,0x0e,0xba,0xbb, +0x59,0x31,0x5a,0x1c,0x45,0x67,0xac,0x0d,0xd9,0x78,0x04,0x1f, +0xb1,0x9f,0x48,0x03,0x59,0x97,0xb8,0x29,0x65,0x67,0xfa,0x9d, +0xe2,0x9e,0x9a,0xaa,0x66,0xae,0x46,0xec,0xb6,0x14,0xf6,0xb1, +0x4e,0xae,0xc6,0x5e,0x9a,0xbe,0xea,0x39,0xba,0xf9,0xf2,0x22, +0x17,0x7b,0xbe,0xd6,0xb7,0xc9,0xbf,0x2d,0x70,0x53,0xc0,0xca, +0x03,0xcb,0xc3,0x12,0x2c,0x78,0xe0,0x12,0x61,0x58,0xd6,0xbb, +0x92,0x57,0x7b,0x7e,0xf1,0xfb,0xfb,0x00,0x37,0xa0,0x0b,0x79, +0x04,0xd7,0x22,0x81,0xb5,0xec,0x58,0xa1,0x57,0x32,0x47,0xeb, +0x8f,0x1d,0xb3,0x60,0xbb,0x29,0x6e,0x9f,0x29,0xfb,0x13,0xad, +0x57,0x8b,0xc6,0xad,0x37,0x41,0x9d,0x9a,0xa2,0x78,0x44,0xea, +0x23,0x38,0x61,0xdd,0x80,0xac,0xed,0x06,0x9c,0x53,0x4c,0x58, +0x0b,0x13,0xfe,0x6a,0xc3,0x8f,0xa6,0xac,0x62,0x01,0x06,0x12, +0x6c,0x39,0x84,0x5f,0xcb,0x71,0x8c,0x4a,0xb5,0x4d,0xf5,0x9b, +0xf4,0x0f,0x31,0x30,0x7f,0x0a,0xf0,0x98,0x3a,0x53,0xda,0x18, +0x7c,0xc1,0xd4,0x0e,0xda,0x68,0x19,0x86,0xb2,0xe2,0x37,0x48, +0x17,0x67,0x42,0x09,0x95,0xb3,0x82,0xd7,0xa6,0xdf,0x07,0x52, +0x3b,0xa1,0x01,0x37,0xe9,0x10,0x93,0x3d,0xb6,0xde,0xd7,0x50, +0x05,0x62,0x58,0xb0,0xc4,0x24,0xa9,0xd0,0xf1,0x2d,0x36,0x3d, +0xb8,0xee,0x4e,0xdc,0x2f,0x67,0xe9,0xb7,0x95,0xa0,0x19,0x63, +0x97,0x1c,0x50,0xae,0x92,0xd4,0x48,0xf6,0x9d,0x88,0xcc,0x53, +0x05,0xcd,0x72,0xf4,0x62,0x85,0x9d,0x8e,0xd2,0xa6,0xa1,0x64, +0xb4,0x13,0xd0,0x90,0x11,0x97,0x49,0x46,0x9b,0x0e,0xe3,0x30, +0x9d,0x15,0xbd,0xee,0x50,0xe7,0x82,0x0c,0x5a,0x52,0x7c,0xd8, +0xae,0xd0,0x26,0x29,0x55,0x89,0x55,0xb1,0x95,0x7a,0xf1,0x12, +0xa4,0x5c,0x83,0x5f,0xa3,0xd2,0x82,0x1a,0x2b,0xfe,0x76,0x5f, +0xdf,0x83,0xfa,0xc7,0x9c,0x62,0xc9,0x15,0x46,0xbc,0x3b,0xb0, +0x9d,0x18,0x78,0x25,0x34,0xfc,0x0e,0x2e,0x30,0x1c,0xde,0xc1, +0x2c,0xd5,0x6e,0xf1,0xbd,0xbe,0x60,0xc9,0x52,0x26,0x32,0x92, +0x3a,0x77,0x25,0x9c,0xa8,0xbc,0xa3,0xc1,0x0a,0x86,0xa8,0x08, +0xae,0x4c,0x57,0x66,0xe6,0xe0,0x19,0x8f,0x5e,0x82,0x12,0xee, +0x65,0xc7,0xbe,0x95,0x8e,0x00,0xee,0x0a,0x1b,0xd6,0x33,0x29, +0xc5,0xa9,0x95,0xb1,0x52,0xe5,0x44,0x35,0x36,0x6a,0xb0,0x72, +0xa2,0x2c,0x92,0x0f,0x98,0x67,0xb5,0x48,0x63,0x73,0x99,0x0b, +0x7f,0x29,0x32,0x32,0xf2,0x52,0x14,0xa7,0x18,0x29,0x8e,0x25, +0xe0,0xda,0x8e,0xae,0x30,0x1d,0x64,0x82,0x86,0x48,0x1f,0x20, +0x95,0xe3,0x97,0x6a,0xe2,0x51,0x79,0x04,0xc9,0x84,0xe8,0x0e, +0x3c,0xc8,0xc8,0x04,0xba,0xe6,0x5f,0x81,0x0a,0x8d,0x50,0x1d, +0x83,0x7d,0xe9,0xe1,0x6b,0x54,0x61,0xc5,0x92,0xdf,0xc9,0x91, +0xbd,0x07,0x9c,0xf7,0xb9,0x71,0xa8,0xcc,0xa4,0x15,0xa6,0x48, +0x65,0x16,0x29,0xed,0x5a,0x4c,0x70,0x06,0xfd,0xf4,0x0c,0x16, +0xf4,0x27,0xd3,0x0f,0xce,0xc0,0xaf,0x19,0xf1,0xbb,0x28,0x02, +0xfc,0x53,0xe4,0xd9,0xc6,0xc9,0xc0,0xbf,0x90,0xea,0x42,0x7a, +0xa3,0x11,0x81,0x19,0x4f,0x71,0x86,0xf4,0xd6,0x8c,0x17,0xf4, +0xdf,0x6f,0xd6,0x92,0xcf,0x15,0x14,0x6b,0x2f,0xf3,0x07,0x9b, +0x0e,0xd4,0xed,0x2f,0xe7,0xf0,0x16,0x9e,0x22,0x25,0x57,0x72, +0x9f,0xc6,0x4a,0xb5,0x12,0xc3,0x34,0xfc,0x07,0x6b,0x25,0x86, +0x0f,0xd6,0x4a,0x8c,0x37,0x89,0xd9,0xdd,0x14,0xcf,0x1f,0xf9, +0xa7,0x56,0x22,0x7f,0x90,0x44,0x0d,0xd6,0x4a,0x6c,0x89,0xe2, +0x4f,0xfd,0x53,0x2b,0x51,0x48,0x57,0xdc,0x25,0xbb,0x71,0x8c, +0xb8,0x54,0xef,0x93,0x72,0xbf,0xb8,0x85,0x41,0xfd,0x05,0x44, +0x73,0xf9,0x42,0x0d,0x1c,0x6a,0x52,0x26,0xe7,0x61,0x44,0xc7, +0x2f,0xdf,0x3f,0xf8,0xc0,0x09,0xb5,0x68,0x4c,0x56,0x3d,0x5b, +0xf9,0xfd,0xcc,0x1b,0x8e,0x96,0x14,0xc9,0xec,0x7c,0xbd,0xe9, +0xd1,0x66,0x0e,0xdd,0x5e,0x12,0x9d,0x45,0x06,0x1a,0xba,0xa6, +0x7a,0x2d,0x86,0x37,0xf4,0x7e,0x32,0x75,0xe7,0x7b,0x97,0xf7, +0x6a,0x5c,0x95,0xe1,0x90,0x6d,0x38,0xc6,0x15,0xd7,0x39,0x65, +0xe8,0xf2,0xb0,0xb9,0x0a,0x94,0xeb,0xe1,0x8b,0x97,0x30,0x66, +0x0d,0x7c,0x6d,0x0b,0xdb,0xed,0x33,0xae,0xf0,0xb8,0xb9,0x16, +0xc7,0x95,0xe2,0xd0,0xbb,0xd7,0xba,0xfa,0xee,0xf4,0x49,0x85, +0x36,0xa3,0x29,0x85,0xb1,0x42,0xf3,0x5d,0xa8,0x82,0xc3,0x29, +0x87,0x91,0xf3,0xf9,0x79,0xf9,0x25,0xb9,0xd5,0x9c,0x98,0xdc, +0xa7,0x50,0x62,0x2b,0x1f,0x16,0xbf,0xc9,0xa4,0x88,0xec,0x67, +0xfc,0x8a,0xc0,0x2c,0x5d,0x9c,0x85,0xf9,0xc6,0x8a,0x31,0x5d, +0xec,0xc0,0x50,0x44,0xf2,0xfb,0xcd,0x47,0x4f,0xda,0xde,0x5b, +0xe4,0xf3,0xd6,0x6b,0xb6,0x6e,0x5a,0x60,0xc0,0x09,0xf3,0x41, +0x97,0x3c,0xd2,0x7c,0xb0,0xfe,0xca,0x9a,0xc6,0x2a,0x7e,0xf7, +0xcb,0xcd,0xcf,0x36,0x5e,0xe3,0x32,0xd0,0x9e,0xb8,0xaf,0xb3, +0x55,0x97,0xe9,0xcb,0xfb,0xec,0x6f,0xbb,0x3e,0x93,0xf9,0xf0, +0x95,0xcb,0x1b,0xb7,0x76,0x69,0xaf,0xdf,0x36,0xc7,0x04,0xc7, +0x39,0xe6,0x53,0x0a,0x38,0xb1,0xf6,0xef,0xbe,0x57,0x8f,0x9f, +0xaa,0x7d,0x30,0x80,0x71,0x36,0xf9,0x3d,0x3c,0x7e,0x51,0xb3, +0xa8,0x63,0xf3,0xdd,0xde,0xeb,0xcd,0xf7,0x2b,0x5e,0xd3,0x31, +0x9e,0x53,0xbc,0x26,0x36,0xd2,0x18,0x67,0x48,0x35,0x67,0x06, +0x7b,0x0f,0x16,0x96,0x4b,0x35,0x67,0x8a,0xfa,0x14,0x53,0xd8, +0xb2,0xfb,0x05,0x3f,0xa4,0xff,0xca,0x9d,0xa2,0x3f,0x24,0x57, +0x7c,0xdd,0x3e,0x1f,0x34,0xc4,0x40,0x53,0x61,0x2d,0x8e,0x67, +0x61,0x9d,0xa8,0x46,0xda,0xb1,0x1b,0xbe,0x86,0xd4,0x76,0xd1, +0x91,0x8d,0xcd,0x8e,0xce,0x8e,0xca,0x36,0x89,0xe3,0x03,0x36, +0xb9,0xee,0xd0,0xd5,0xae,0x71,0xe1,0x8b,0x0a,0x73,0x2b,0xd2, +0x2b,0x25,0x3c,0xf8,0x35,0xb6,0xca,0xa1,0x9e,0x09,0x58,0x3e, +0x4f,0x13,0x77,0x69,0x66,0x19,0xf3,0x60,0x70,0x07,0xd8,0xa7, +0xd1,0x7f,0x4b,0x17,0x2c,0x71,0x08,0x0c,0x5b,0x0f,0xc6,0xea, +0x59,0x5d,0x3c,0xea,0xde,0x5c,0x74,0x2b,0x50,0x1a,0x95,0x8d, +0xe2,0x09,0xd9,0x83,0x1a,0xc6,0xb8,0x6a,0x13,0x8e,0x28,0x37, +0xe6,0x73,0xcb,0x33,0x6a,0x53,0x1b,0x38,0xb1,0xb4,0x5b,0xb1, +0x92,0xcd,0xbc,0x9d,0xf2,0x30,0x91,0x92,0xc5,0x5f,0xd1,0x91, +0xd2,0x07,0x71,0x81,0x1c,0x7e,0xc1,0xaf,0x44,0x62,0x22,0x14, +0x77,0xb2,0xe2,0x7b,0xb1,0x9c,0x08,0xff,0x32,0x12,0xff,0xc5, +0x2a,0x66,0xc1,0x78,0xea,0xc5,0xce,0x50,0x25,0xf7,0xef,0xa0, +0x4c,0x28,0x3a,0x9d,0x5a,0x44,0xba,0x2c,0x9e,0x0f,0xda,0xe2, +0xbc,0xdd,0xc8,0xb8,0xda,0x85,0x2f,0x2c,0xc8,0x29,0x4f,0xaf, +0xe6,0x60,0x24,0xd5,0xfd,0x63,0x26,0x10,0xca,0x04,0x2f,0x58, +0xab,0x8b,0xab,0x76,0xe5,0xd0,0x11,0x6e,0xb8,0xfb,0xf6,0x6e, +0x14,0x8c,0xa6,0x38,0x28,0x0a,0xbf,0x78,0xb7,0x1d,0x96,0xed, +0xc8,0xe9,0xe4,0x71,0xc9,0x9d,0xf5,0x7d,0xc1,0xef,0xb9,0xff, +0x43,0xa9,0x9e,0xe2,0xe2,0x92,0x9a,0xc2,0x56,0x4e,0xac,0xea, +0x53,0xcc,0x65,0x8b,0xee,0xe4,0x3e,0x4e,0xf9,0x91,0x83,0x37, +0xb8,0x91,0x40,0x71,0x27,0x16,0xc3,0x38,0x8a,0x21,0x30,0xde, +0x04,0xe2,0x71,0x04,0xd6,0x18,0x29,0x16,0x74,0x63,0x1f,0x03, +0x93,0xb7,0x93,0x03,0x96,0x7b,0x8c,0x5d,0xe5,0x9c,0x38,0xc3, +0x08,0x6a,0x90,0xc3,0x14,0x13,0x48,0xc1,0x0d,0x57,0x60,0x03, +0x54,0x74,0x62,0x05,0x70,0xd0,0xd7,0x8d,0xa6,0x4c,0x76,0x65, +0x76,0x63,0x4a,0x3d,0x27,0xee,0xf8,0x86,0xe4,0xba,0xe4,0xd8, +0xa6,0x3a,0xb6,0xe4,0xf2,0xfb,0x6a,0xfd,0x6a,0x7c,0xcb,0x28, +0xe1,0xd9,0x2d,0x98,0x11,0x51,0x4d,0xf8,0x52,0x53,0xfc,0x52, +0x5c,0x64,0x00,0x35,0x4c,0x04,0x6a,0x2e,0x44,0x1e,0x4d,0xd7, +0x94,0x53,0x7c,0x6e,0xf3,0x06,0x46,0xc2,0xdc,0x28,0xf0,0xe6, +0x60,0x1b,0xfe,0xc0,0x6c,0xc9,0xf7,0xbf,0xa7,0x02,0x5b,0xfe, +0xe9,0x15,0xb8,0x8a,0xd5,0x49,0x56,0xa2,0x98,0x76,0x3d,0x6b, +0x77,0x24,0xaa,0x56,0x15,0x1e,0x82,0xa4,0x7d,0xa0,0x46,0x6c, +0x9e,0x58,0x3c,0x34,0xbb,0x29,0xdb,0xc3,0x37,0xec,0x6e,0xdb, +0x58,0xbf,0x9e,0x13,0xaa,0x21,0x9e,0xb8,0x6f,0xb1,0x50,0x33, +0xd2,0xe8,0x70,0xe3,0x7b,0xee,0xb4,0x3e,0x2f,0x7d,0x48,0x17, +0xe1,0x17,0x45,0x07,0xd1,0x92,0xd2,0x2f,0xbe,0xc4,0x69,0x73, +0x1b,0x28,0x78,0x54,0xf9,0xeb,0x17,0xf8,0xea,0x1e,0xac,0xe4, +0x84,0x3a,0xa4,0xbe,0x63,0xda,0xef,0x0b,0x61,0xc2,0x4e,0x98, +0x6d,0xb8,0x87,0xff,0x1e,0x97,0x7e,0xc4,0x29,0xd4,0x2f,0x0c, +0xe1,0xb0,0x74,0x17,0x69,0xdd,0xd5,0xb0,0xbd,0x6e,0x2b,0xce, +0x0e,0xc0,0x75,0x87,0x71,0x57,0xf8,0x13,0xf8,0xfa,0x06,0x4c, +0xbf,0x03,0xbb,0xb5,0x32,0x78,0x03,0x5c,0xbd,0x1e,0x37,0x2f, +0xc4,0xe5,0x8e,0xa7,0x1d,0x4f,0x39,0x9c,0x8e,0xde,0xcd,0x43, +0x7c,0x1c,0x1c,0x8d,0x05,0xff,0x8a,0x54,0xf7,0x14,0xf7,0x14, +0xb7,0xfe,0x02,0x5e,0x03,0x26,0xa9,0xc1,0xd4,0x65,0x83,0x5b, +0x0f,0xb3,0x15,0xdf,0x11,0xe9,0xb8,0x73,0x97,0x01,0x68,0x30, +0xc7,0xb1,0x4e,0x1d,0x37,0xd2,0xc7,0xfc,0x1a,0x3a,0x1c,0x3d, +0x58,0xf7,0x9d,0xd4,0x92,0xa5,0x95,0x03,0x4b,0x06,0x83,0x22, +0x70,0xe3,0xa1,0x99,0x2a,0xda,0xc7,0x0e,0x06,0x6b,0x49,0x29, +0x9c,0x97,0xf5,0x95,0x60,0x3c,0xf3,0xa6,0xa8,0xe2,0x65,0x9c, +0x6a,0x32,0x7c,0x71,0x09,0x56,0x41,0x2b,0xe5,0x28,0x0c,0xfa, +0x89,0x2a,0xc4,0x26,0x58,0xbe,0xdf,0x30,0x98,0x13,0xa2,0x61, +0x49,0xaf,0x38,0xc6,0x00,0x56,0x88,0x79,0xac,0x2c,0xc4,0xf8, +0x90,0x51,0xe8,0x65,0x6d,0x1e,0x16,0x97,0x82,0x72,0xc3,0xaf, +0x94,0x9b,0x43,0xbf,0xc2,0x8a,0xc0,0x38,0x7d,0x2a,0x5c,0x13, +0x23,0x41,0xbf,0x9b,0x05,0x5b,0x4a,0xe2,0xf5,0xa8,0xbb,0x9e, +0x6c,0x00,0x84,0x0e,0xa7,0x59,0x17,0xb7,0xe1,0x4c,0x9c,0x5e, +0x4d,0xa3,0xdf,0x6a,0x58,0x75,0x0d,0x2c,0x2f,0x41,0x07,0x27, +0xdd,0xaf,0x3a,0x12,0x81,0xeb,0x0f,0xcf,0x54,0xd1,0x3b,0x16, +0x1a,0x62,0x38,0x75,0x16,0x93,0xa4,0xaf,0xf4,0x91,0x79,0x96, +0x57,0xf6,0x3c,0x4e,0xf5,0x32,0x8c,0xbe,0x08,0xcb,0xa0,0x4f, +0x19,0xfd,0x18,0x71,0x8c,0x39,0x69,0xd3,0xa8,0xdb,0x59,0xbd, +0xa9,0xbe,0x82,0x77,0xbd,0x61,0xfe,0xd4,0xbc,0x9f,0x43,0xf9, +0x49,0xe2,0xb7,0xdd,0x7e,0x8b,0xa6,0x5e,0xb9,0x15,0xff,0xdd, +0xad,0xe6,0x17,0x79,0xcf,0x39,0xf0,0x15,0xb3,0x88,0x6b,0x87, +0x6b,0x8b,0x73,0x53,0x41,0x57,0xce,0xb5,0xf4,0xef,0x4c,0x52, +0xf9,0x03,0xfa,0x41,0x32,0x3f,0x73,0xb7,0x1a,0x97,0x6a,0xc7, +0x1a,0x7b,0x47,0xbe,0xce,0xaa,0xda,0xba,0xd2,0xca,0x78,0xc9, +0x8e,0x2d,0x8b,0x34,0xcb,0xcc,0xf9,0x37,0xb7,0xbe,0xff,0xbe, +0xf7,0xe7,0x62,0xbb,0x22,0xdb,0x42,0x0b,0x3a,0x91,0x2e,0x85, +0x13,0x49,0x2c,0x8f,0xab,0x88,0xa9,0xd4,0x8d,0xe5,0xdd,0x71, +0xe1,0x56,0x9c,0x4a,0x27,0x35,0xa4,0xce,0x92,0x7f,0xf2,0x5d, +0xdf,0xb3,0xba,0xb7,0x9c,0x70,0x95,0x39,0x8d,0x2d,0x07,0xd1, +0x20,0x68,0x2d,0x67,0x16,0xea,0xe3,0xa3,0x3b,0x15,0xb7,0x32, +0x52,0xfe,0xce,0x1a,0xe6,0x75,0x63,0xd9,0xe3,0x74,0xd5,0xdc, +0x5f,0x13,0x20,0x10,0x5e,0x28,0xa3,0x85,0xf8,0x0b,0x91,0x03, +0xbb,0x0d,0xc6,0x6b,0xbc,0x91,0xbb,0xf1,0xd5,0xb2,0x1a,0xad, +0x0a,0x8d,0x05,0x87,0x90,0x09,0xc5,0x2f,0x8e,0x76,0xfe,0xd1, +0x03,0xb3,0xca,0x60,0xb2,0x76,0x0a,0xef,0x89,0x5f,0x69,0xe1, +0x0a,0x6d,0x54,0x9a,0x7f,0x9c,0x8f,0xdb,0x0d,0x06,0x09,0xa0, +0x97,0x06,0x8b,0x73,0xa6,0x24,0xfa,0xc4,0xfb,0xc4,0xfb,0xd2, +0x31,0x7d,0x29,0xed,0xab,0xd8,0xb3,0x98,0x78,0x10,0x5d,0x76, +0xa0,0xb2,0x4a,0x87,0xa9,0xd2,0x63,0x58,0x7e,0x19,0xf6,0x41, +0x96,0x32,0x2c,0x51,0x9c,0xfe,0x5f,0x9c,0xbd,0x07,0x54,0x16, +0xd7,0xf7,0x2e,0x6c,0x63,0x66,0x62,0x94,0xa8,0xf1,0xe8,0x80, +0x06,0xec,0x8a,0xbd,0x57,0x54,0xac,0x48,0x2f,0x2f,0xbd,0x83, +0x54,0x45,0x50,0x14,0x51,0xaa,0x60,0x37,0x56,0x7a,0x2f,0x22, +0x55,0x7a,0xef,0xbd,0x8b,0xbd,0x6b,0xec,0x31,0x51,0x63,0x4c, +0x31,0x71,0xcf,0x9b,0x3d,0x6f,0xee,0x3d,0x83,0xc9,0xef,0xfe, +0xff,0xf7,0xde,0xf5,0x7d,0xeb,0xfb,0x96,0x6b,0xc1,0x38,0x0c, +0xbc,0x73,0xf6,0x39,0x67,0xef,0xe7,0x39,0xe7,0xec,0xfd,0xb4, +0xb3,0xdb,0xf0,0x2b,0x22,0xbe,0xc0,0x66,0xe1,0x05,0x63,0x00, +0x9b,0x89,0xe8,0x79,0x53,0xf0,0x64,0x44,0x4f,0x1c,0x49,0x04, +0xcf,0x4d,0xa2,0x27,0x03,0xe9,0x58,0x44,0x32,0xd9,0x9f,0xb2, +0x3e,0x15,0xf6,0x16,0x72,0x0d,0x22,0x58,0x09,0x81,0xac,0x45, +0xc0,0x06,0xff,0x75,0x41,0x9c,0x09,0xbe,0xb4,0x84,0x97,0xf8, +0x25,0x45,0x7a,0x09,0xd6,0x4a,0xa0,0xc5,0xd4,0x27,0x25,0x51, +0x8e,0xc0,0xc2,0x4f,0xcd,0x94,0x5b,0x99,0xd8,0x92,0x47,0xf2, +0x21,0x9a,0x37,0xe4,0x97,0x15,0xdf,0x2a,0x2e,0xb3,0xd7,0xe5, +0xde,0x44,0x3e,0x44,0x7c,0xaa,0x18,0xc2,0x28,0x0b,0xfb,0xe5, +0x5a,0x24,0xaf,0x2e,0xa3,0x29,0xa9,0x76,0x6b,0x02,0x1f,0x64, +0xed,0x67,0xea,0x6d,0xc5,0xe1,0x2d,0xc5,0xe1,0xab,0x72,0x6d, +0xf9,0x46,0xf1,0x37,0x34,0x1f,0xd8,0x2c,0x5a,0xf9,0xf9,0x24, +0x86,0x5c,0x9d,0x15,0x05,0xb4,0x26,0xe2,0xd4,0xde,0xbb,0xf0, +0xbd,0x24,0x7d,0xfb,0x3d,0xa6,0x11,0x1a,0xe4,0xb3,0xd1,0x8d, +0x7e,0x8e,0x9b,0x9c,0x86,0xee,0x23,0xe7,0xe0,0x7c,0x3a,0x18, +0x57,0xfa,0x74,0xf3,0x68,0xe8,0x80,0x47,0x02,0xb0,0xfa,0x04, +0x87,0xc1,0x2c,0x46,0x1d,0xc0,0xb5,0xeb,0x70,0x84,0x5a,0x9b, +0xf5,0x53,0x18,0x9f,0x01,0x96,0x67,0x20,0x42,0x45,0xbe,0xbf, +0x5b,0xb1,0x9f,0x81,0xb9,0x8a,0x51,0xe4,0xaa,0x60,0xaa,0x77, +0x55,0xd8,0x24,0xde,0x15,0xb7,0xb0,0x42,0x94,0x40,0xe9,0xca, +0x39,0xd1,0x14,0xce,0x51,0x34,0x65,0x42,0xdd,0xba,0x1f,0x1a, +0xd9,0xe2,0xa2,0xcd,0xd4,0xab,0xdb,0xf0,0x29,0x39,0x69,0x25, +0xa9,0x52,0x25,0xb1,0x56,0xf9,0x1a,0x36,0xfd,0x76,0xca,0xa3, +0x98,0xe7,0xd2,0xe1,0x19,0x3f,0x12,0xdd,0x16,0x75,0xf5,0xdc, +0x75,0x0e,0x3f,0x9a,0x41,0x29,0x73,0xc2,0xe9,0xb8,0xcd,0x61, +0x67,0x0e,0x3b,0xcd,0x04,0xb3,0x36,0x46,0xd1,0xaf,0x18,0x43, +0xfe,0x84,0xe5,0xf2,0x4d,0xe8,0xab,0x28,0x64,0x61,0x25,0x2c, +0x23,0x93,0x84,0xbb,0x9f,0x18,0xf9,0x76,0x31,0x95,0x7a,0x56, +0x09,0x3e,0x98,0xb6,0xe1,0x13,0x36,0x3a,0x27,0x32,0xeb,0xfc, +0x25,0xf3,0x58,0x3e,0x78,0xc3,0xae,0xb5,0xae,0x7a,0x75,0x3b, +0xf8,0xb4,0xfc,0xe4,0xe2,0xc4,0x12,0xee,0x03,0x75,0x8f,0x96, +0x92,0xbc,0xf8,0xa1,0x85,0x7a,0x86,0xf8,0x8d,0x4e,0xb6,0x19, +0x0f,0x93,0x6f,0xf7,0x76,0xc7,0xfc,0x29,0x95,0x83,0x9b,0xd6, +0x63,0x04,0x33,0x36,0xe4,0xb6,0xf2,0x38,0xe9,0x96,0x4e,0x47, +0xd8,0x6b,0x29,0x9b,0x09,0x82,0x89,0xd3,0x01,0xc7,0x83,0x0e, +0x81,0x1c,0x3c,0x87,0xe1,0x9d,0x38,0x1c,0x32,0x0d,0x30,0x13, +0x47,0x98,0xc0,0x08,0xfc,0xc4,0x3a,0x05,0x3b,0x84,0xd8,0x85, +0xa6,0xd0,0xb0,0xa6,0x5c,0xf2,0x6b,0xc9,0xcf,0x94,0xe2,0xe5, +0x09,0x31,0x04,0xe6,0xea,0xe1,0x5c,0x3c,0x6e,0x22,0xbc,0xec, +0x64,0x6d,0x15,0xda,0xc4,0x80,0xd9,0x15,0x1e,0x9d,0xab,0x2e, +0x1c,0xa0,0x96,0xfe,0x82,0x45,0x1b,0x5f,0x1c,0x8f,0x13,0xa7, +0xa8,0x55,0xd2,0x4e,0xd6,0x80,0xe1,0xc5,0x30,0x0f,0x3c,0x54, +0x7b,0xc0,0x4d,0xdc,0xc8,0x6e,0xc9,0xd9,0x7b,0x5d,0xed,0x0a, +0x53,0x97,0x96,0x5c,0xa7,0x0e,0x0e,0xac,0x61,0xaa,0x92,0x32, +0xc8,0x21,0x94,0xb8,0x05,0xba,0x06,0x6d,0x0f,0xe2,0xe0,0x01, +0x8c,0xed,0xc4,0xb1,0x90,0x66,0x80,0x69,0x38,0xca,0x04,0x46, +0xe1,0x2f,0xac,0x43,0xb0,0x7d,0xb0,0x6d,0x48,0x32,0x7d,0x85, +0x2f,0x8b,0x7f,0x29,0x7e,0x43,0x5f,0x61,0xa8,0x90,0x4f,0x60, +0x0b,0x75,0x14,0x99,0x30,0xb2,0x78,0x27,0x6d,0xcd,0x70,0x37, +0x9c,0xe3,0x8f,0x1e,0xe1,0x1c,0x9e,0x60,0x31,0xf2,0x20,0xae, +0x5e,0x84,0xe3,0xd4,0xea,0xec,0xde,0xc0,0x37,0x39,0xb0,0xed, +0x34,0xc4,0xa9,0x08,0xbe,0x9d,0xa2,0x2f,0xf3,0x51,0xf1,0x25, +0xc5,0xd6,0x29,0x3a,0xbd,0xc2,0x1a,0x71,0xbc,0xb8,0x86,0x85, +0x87,0x82,0x12,0xc1,0xd3,0x98,0x02,0xa7,0x69,0x07,0x2e,0x95, +0xab,0x4b,0x5a,0xb3,0x09,0xfd,0x71,0x7d,0xd1,0x1d,0xfa,0xd2, +0x21,0xab,0x30,0x9d,0xa0,0xad,0x1c,0x8e,0x31,0x02,0x25,0xc6, +0x6f,0xea,0xae,0x29,0x5e,0xab,0xda,0x3d,0x5a,0xdd,0xda,0x5c, +0x6c,0xd7,0x1a,0x6c,0x59,0xa9,0x53,0x66,0xc1,0x3f,0xbb,0x79, +0xed,0x6e,0xf3,0xf3,0x1a,0x8f,0x1a,0xd7,0x3a,0xc7,0x92,0x26, +0xde,0xa6,0xd6,0xb6,0xc2,0xbe,0xb8,0x1d,0x86,0x15,0xc0,0xf8, +0x04,0x58,0xce,0xc1,0x15,0x5c,0x41,0x9e,0xb1,0x2f,0xae,0xdf, +0x79,0x5e,0x78,0x8d,0x4e,0x05,0x13,0x63,0x61,0x18,0xbb,0xc3, +0xd2,0x74,0xdb,0x12,0x7d,0x8e,0x06,0xa5,0x70,0x23,0x08,0x17, +0x47,0xe3,0x42,0x36,0xc9,0x48,0x09,0x78,0xa6,0x31,0x2d,0xad, +0x51,0x5d,0x60,0x21,0xac,0x9b,0x55,0x74,0xe1,0x08,0x92,0xf3, +0x5d,0xd6,0x8f,0xd2,0x09,0xac,0x09,0x74,0x12,0xab,0xec,0x46, +0xd6,0x6a,0x9a,0x4b,0xfe,0xf6,0x6c,0xd7,0x2c,0x1a,0x80,0x86, +0x5c,0x20,0xb8,0x91,0x71,0x0c,0x8b,0xab,0x56,0x97,0xc7,0xe8, +0x29,0x92,0xd9,0x35,0x39,0xde,0xdf,0xa9,0x51,0xb2,0x57,0x9f, +0x9a,0x4e,0x83,0x8c,0x05,0x6b,0x98,0xa1,0x84,0x1f,0x21,0x82, +0x18,0x07,0xe9,0x04,0x6f,0xa5,0x24,0x98,0x63,0x1f,0xf4,0xf6, +0x3f,0x28,0xba,0xcd,0xd5,0x8a,0x5b,0x8d,0x41,0x60,0xdd,0x0c, +0xcd,0x8d,0x37,0x5b,0x72,0x38,0x9f,0xdd,0x10,0xba,0x2e,0x4c, +0x33,0x22,0x56,0x8f,0xbf,0x1f,0x73,0x27,0xee,0x66,0x3c,0x87, +0xbf,0xe2,0xaa,0x81,0x33,0x82,0x13,0x98,0xce,0xd4,0x94,0x4e, +0x75,0xf8,0xc0,0xde,0x4e,0xbc,0x9e,0xd8,0x9d,0x4c,0x3f,0x76, +0xb3,0xd0,0x4f,0xf0,0x18,0xf3,0xb0,0xf3,0x56,0xff,0x95,0x5b, +0xf6,0x25,0xfc,0xba,0xa5,0x4b,0xd6,0xcf,0xd0,0xe6,0xf0,0x4b, +0x60,0x20,0xa2,0x15,0x23,0x7e,0x36,0xd0,0xc0,0x76,0x73,0x68, +0x47,0x46,0x1c,0x22,0x13,0xec,0x19,0xe4,0xb5,0x70,0x9e,0x2e, +0xea,0xcb,0x72,0x2c,0xf8,0x37,0x79,0x2f,0xf3,0x1f,0x17,0x71, +0x02,0xcf,0x98,0xf9,0xe8,0xf8,0x4d,0xf3,0xe3,0xd6,0x89,0x0b, +0x65,0xc2,0x42,0x9c,0x83,0x9b,0x59,0x69,0x83,0x6d,0x19,0x53, +0x91,0x96,0x58,0xae,0x0e,0x73,0x05,0xae,0x5d,0xe4,0xca,0x59, +0x18,0x7a,0xf9,0x79,0x51,0x7f,0x23,0xd7,0x24,0x0e,0x67,0xfb, +0xf2,0x3b,0x0b,0xdb,0x8b,0x39,0xb8,0xc7,0x28,0xcb,0x7f,0x97, +0xaf,0xa6,0x51,0xae,0x17,0xcc,0xc5,0x69,0x1f,0xf4,0x66,0x89, +0x63,0xd1,0xbc,0x17,0x26,0xb2,0xd0,0x8b,0x0e,0x24,0xbe,0x36, +0xa6,0xe6,0x42,0xad,0x4e,0x0c,0x7f,0xc4,0x3a,0xdc,0x26,0xd8, +0x96,0xfa,0x07,0x13,0x68,0x66,0x8c,0x71,0xf1,0x74,0x9c,0x4e, +0xa1,0xde,0xf0,0x3a,0x1a,0x10,0x16,0x83,0x3a,0x0c,0x82,0x15, +0xdd,0xb0,0x96,0x06,0x9a,0x4e,0x86,0xf6,0x7d,0x15,0xb9,0xec, +0x59,0x62,0x5f,0x64,0x3b,0x2b,0x04,0x87,0x85,0xe1,0x98,0xc3, +0xdd,0xaf,0xfa,0x7e,0x6f,0x82,0x41,0x86,0xe9,0xbc,0xed,0x74, +0x83,0xc9,0xcb,0x91,0x9b,0x71,0x82,0x8f,0xd5,0x93,0x82,0x88, +0x7e,0x2a,0xac,0xca,0x52,0x49,0xd9,0x93,0xe4,0x17,0xbf,0xaf, +0xb9,0x80,0xb7,0xfa,0x5e,0xeb,0x67,0xbd,0x1b,0x74,0x06,0x65, +0xca,0xb7,0x12,0x41,0xe5,0x8a,0xe2,0x8e,0x9e,0xf0,0x85,0x62, +0xb0,0x38,0x5b,0xe7,0xaf,0x71,0x57,0xc5,0xd5,0x8c,0xf2,0x5f, +0x86,0xf2,0x2c,0x22,0xb6,0x9a,0x00,0xcb,0x84,0x2d,0xd8,0x8d, +0x5f,0x7a,0x4f,0xe2,0x84,0xaf,0x99,0x93,0x38,0xf2,0xc8,0xe4, +0xa0,0x85,0x9c,0xfe,0xa1,0x3d,0xfb,0xb7,0x4e,0x40,0x35,0xe6, +0x73,0xef,0xbf,0x69,0xac,0x7c,0x95,0xa8,0x9e,0xf2,0x21,0x4a, +0xd2,0xfb,0xd3,0xe5,0xc4,0x41,0xcc,0xc5,0xd7,0x29,0x3f,0xc6, +0x3d,0xe4,0x84,0x2f,0x19,0x85,0xcd,0x71,0x1a,0xf1,0xba,0xf0, +0xaa,0x31,0x8c,0x11,0xdb,0x18,0x87,0x20,0xbb,0x60,0xdb,0xd0, +0x64,0x8a,0x89,0xd5,0xca,0x81,0xab,0xff,0xbe,0x32,0xa2,0x87, +0x77,0x0a,0xb0,0xde,0x6f,0x1e,0x40,0x63,0xb3,0x33,0x00,0xe9, +0x34,0xba,0x6b,0xf5,0xd2,0x21,0xbf,0x81,0xc7,0x71,0x37,0x96, +0xdd,0xb4,0x7a,0xc1,0xc1,0xf9,0x0e,0x3a,0xc6,0xa7,0x82,0x7f, +0x3b,0xfa,0xff,0x61,0x38,0x05,0xd3,0xfe,0x30,0x98,0x82,0x6e, +0x32,0x70,0xa3,0x66,0x39,0x6d,0x0a,0x87,0x19,0xbb,0xa5,0x2b, +0x36,0xe1,0xe8,0x6d,0x85,0x52,0xc1,0x96,0xdb,0xad,0x1d,0x7d, +0x9c,0xad,0xa0,0x3c,0x49,0xd4,0xc3,0x89,0xec,0x92,0x2c,0x37, +0x18,0xa2,0x26,0xb8,0x30,0xd5,0xe9,0x74,0xc6,0x7e,0x62,0x0d, +0x28,0x7c,0x19,0x27,0x3a,0xb0,0x3a,0x21,0x49,0x5d,0xea,0x77, +0x04,0x5d,0x76,0xa1,0xb4,0x55,0x32,0x15,0xd3,0x60,0x2a,0xbb, +0x0e,0x7b,0x48,0x6e,0x41,0xd6,0x40,0xbd,0x91,0x8b,0x4c,0x86, +0x6b,0x96,0x47,0xbe,0x94,0x7f,0x97,0x2e,0x5f,0x41,0x84,0x11, +0x1d,0xe2,0x88,0xdf,0x75,0xa6,0xe1,0xdf,0xa6,0xf0,0x37,0x1d, +0x1f,0x0b,0x4d,0xfe,0x9a,0xd4,0x29,0x6e,0x64,0x30,0x7d,0x31, +0xb9,0xe8,0x91,0x6b,0x9a,0xe0,0xd6,0x95,0xc9,0x87,0x94,0xf8, +0x74,0xee,0xa5,0xcc,0x66,0xe8,0x29,0x12,0x68,0xeb,0x63,0xb4, +0xd3,0x8c,0x13,0xab,0x4d,0x84,0x99,0xc8,0x8a,0x5f,0x98,0x50, +0xcf,0xa9,0x73,0x15,0x74,0x04,0xd2,0x29,0x4a,0xc9,0x49,0x4b, +0x3a,0x31,0x93,0xc9,0xad,0xce,0x6e,0x49,0xa9,0xe7,0xa4,0x23, +0x77,0x77,0xc8,0x16,0x1c,0x82,0x22,0x6a,0xd2,0x2e,0x0d,0xc0, +0x75,0x5a,0x38,0x5f,0xad,0xcd,0x46,0xe9,0x29,0x2c,0xbf,0x08, +0xdb,0x21,0x4a,0xf5,0x0f,0x79,0x50,0xb7,0xf8,0x15,0xfb,0x49, +0x9c,0x48,0xca,0x75,0x6b,0x17,0x57,0x2c,0xc5,0x2f,0x03,0x50, +0x23,0x10,0xe7,0x1e,0x7a,0x02,0x0b,0xaf,0x83,0xac,0x96,0xe2, +0xa0,0x34,0xde,0x11,0x65,0x5a,0x68,0xbf,0x04,0x97,0xed,0x3a, +0xb9,0xeb,0x94,0xcf,0xa9,0x48,0x6a,0x61,0xfb,0x78,0x08,0xbb, +0x08,0x9a,0xb9,0xc9,0xee,0x89,0x1e,0x71,0x3b,0xbb,0x72,0x79, +0x1b,0x50,0x5e,0x0e,0xeb,0x75,0x61,0x10,0xfd,0xd8,0x2b,0xf2, +0xf3,0xe4,0xe1,0xe6,0xb5,0xe2,0x48,0x4c,0x63,0xd1,0x77,0x1f, +0x6e,0x32,0xc2,0x2f,0xd4,0x9a,0x6d,0x95,0x6e,0x82,0xda,0x25, +0x30,0x87,0xbd,0xaa,0xe0,0x2d,0x8f,0x6d,0x67,0x23,0x29,0xf7, +0x6b,0x5f,0x0e,0x8b,0xb1,0xe2,0xae,0xc1,0x06,0x8c,0x96,0x41, +0xf4,0x74,0x6c,0x96,0x41,0x33,0x0e,0xc6,0x78,0x73,0x38,0xc5, +0x7a,0xce,0x9d,0xb3,0x0d,0x2d,0x57,0xe5,0xc8,0x78,0xb0,0x7b, +0x09,0xcc,0xa3,0x2c,0xf8,0x9a,0x62,0xe0,0x1c,0xea,0x05,0x47, +0xaf,0x07,0xe7,0xc5,0x59,0x9d,0x3c,0x3a,0x3d,0x9f,0xd1,0xe7, +0x41,0x7d,0x41,0x16,0xac,0xa0,0x51,0x77,0x31,0x99,0x8e,0xfb, +0x7f,0x63,0x71,0xf1,0x30,0xd8,0x4f,0xff,0xc8,0x7e,0x1a,0x1f, +0x7b,0xe5,0x71,0xe4,0xae,0xf6,0x06,0x51,0x19,0x63,0x59,0x3c, +0x7a,0x10,0xb5,0x0c,0x71,0xb8,0x94,0x75,0x7f,0x03,0x26,0xa5, +0x53,0x50,0x16,0xa7,0x0a,0x4e,0xf2,0x84,0x36,0xf6,0x3c,0x3e, +0x21,0xad,0x9a,0x30,0x16,0xeb,0xba,0x8d,0x8d,0x30,0xc5,0x12, +0x52,0xd6,0x63,0xaf,0x39,0xf4,0xae,0xc2,0x4c,0x4b,0xc8,0xc4, +0xe7,0x38,0x52,0xaa,0x50,0xfd,0x2b,0x53,0x9b,0x9a,0x52,0xab, +0x0e,0xa7,0x2f,0xb0,0xa9,0x33,0xbf,0x5f,0x0b,0x01,0x38,0x28, +0xb7,0x85,0x5f,0x5a,0xbe,0xad,0xd4,0xaa,0xa8,0xab,0xac,0xbd, +0xb6,0xab,0xdd,0xae,0x98,0x37,0x36,0x31,0x73,0x32,0x74,0x35, +0x6c,0xf6,0x69,0x0c,0xa6,0xe8,0x8a,0xa2,0x33,0xc6,0x18,0xc6, +0x91,0xf5,0x18,0x76,0x9f,0xc5,0x71,0xc3,0x20,0x6c,0x15,0x86, +0x31,0xf8,0x33,0x12,0xd2,0xbe,0xf7,0x8a,0x57,0xe3,0x8e,0xcb, +0x95,0xbc,0x75,0xa1,0x4e,0x91,0xe9,0x45,0x8e,0x8e,0xba,0x31, +0x44,0xd3,0x12,0x07,0x59,0xe2,0xe0,0x9d,0x69,0x66,0xfc,0x9f, +0xc5,0x30,0xac,0xe5,0xbb,0x66,0xea,0x5f,0xcc,0x9c,0x89,0x3b, +0x7c,0xb3,0x0a,0x02,0x65,0x30,0x42,0xe6,0xcb,0x17,0x6b,0xd6, +0xe3,0xb8,0x72,0xfc,0x62,0x85,0x3f,0x0e,0xde,0x8f,0x83,0x82, +0x7b,0x60,0x5f,0x0b,0x7c,0x9f,0x0d,0x7e,0x3a,0x91,0xfc,0x3e, +0xdc,0x67,0x8c,0x9f,0x0c,0x70,0xf7,0xee,0xe3,0x7b,0x4e,0xec, +0x39,0x19,0x4d,0xbb,0x6a,0x76,0x12,0x6c,0xcb,0x03,0x52,0x18, +0xe7,0x1e,0xe3,0x15,0xe5,0xc3,0x29,0x92,0x85,0xf9,0x24,0xae, +0x29,0xf6,0xca,0x79,0x8a,0x45,0x63,0xa1,0x04,0x7f,0x33,0x86, +0x32,0xd4,0xc4,0x0b,0xcc,0xd1,0xa5,0x41,0xd3,0xf7,0xce,0xe3, +0xa0,0x86,0x39,0xb5,0xfe,0xe8,0xf2,0x70,0x33,0xce,0x32,0x3c, +0x38,0xc4,0x76,0x02,0xaa,0x4b,0x07,0xc0,0x40,0x8d,0xb9,0x73, +0x39,0xfb,0x71,0x82,0x94,0x62,0xf4,0x6e,0xe0,0xec,0x21,0x84, +0x6f,0x20,0x7f,0x4d,0x32,0xf8,0x7b,0x12,0x25,0x60,0x72,0x39, +0x31,0x11,0x7e,0xeb,0x64,0xc5,0xbb,0xf8,0x90,0x84,0xf5,0xef, +0xbf,0x17,0xd0,0x62,0x7b,0x80,0x4f,0xb5,0x48,0xd9,0x10,0xab, +0xc3,0xe1,0xde,0x69,0x24,0xeb,0x55,0xfc,0xef,0xe7,0xfe,0x30, +0x3b,0xcf,0x1f,0x9f,0x76,0x68,0xee,0xee,0x15,0x9c,0xfc,0x47, +0x29,0x9d,0x3d,0x42,0xf4,0x14,0x22,0x68,0xc7,0xa5,0x12,0x91, +0x85,0xe9,0x02,0xcb,0x88,0x2c,0xda,0x13,0x81,0xc5,0x79,0x22, +0xcb,0x50,0x17,0x78,0x8a,0xc8,0xd5,0x3b,0x15,0xea,0xb4,0x1f, +0x8b,0x05,0x20,0xdf,0x83,0xfd,0xe2,0xee,0xef,0x61,0x41,0x0b, +0x2e,0x78,0x66,0xb4,0x02,0xed,0x9f,0x19,0xaf,0xc0,0x39,0x16, +0x30,0x67,0x31,0x8b,0xf1,0x0a,0xe9,0x5d,0x8c,0xa4,0x77,0xd1, +0x15,0x52,0x49,0xd8,0xed,0x80,0xc7,0xfb,0x3b,0xed,0x02,0xf9, +0x54,0x93,0x54,0xcd,0x98,0x8d,0x1c,0xee,0x5c,0x49,0x2e,0xbd, +0x8c,0xff,0x78,0xee,0xa3,0xf9,0x05,0xfa,0x06,0x61,0xd2,0x1b, +0x08,0xbe,0xa7,0x88,0xdf,0xa1,0xe8,0x6c,0xf5,0xf7,0x42,0x60, +0x2b,0xe6,0x3e,0x33,0x5c,0x81,0x89,0xe6,0x6d,0x38,0x88,0x35, +0xbd,0xb8,0xaf,0x4f,0x4d,0xd0,0x6c,0x63,0xc4,0x50,0x54,0x23, +0xc8,0x7a,0x6d,0x9e,0xb1,0x45,0xad,0xd4,0x46,0x09,0x06,0xdf, +0xab,0x7b,0x0b,0x13,0x55,0xcb,0x8d,0x59,0x1a,0xcf,0xf3,0x88, +0x1e,0x73,0xe0,0x68,0x64,0xaa,0x3a,0x9c,0x33,0xc6,0x48,0xd6, +0x2c,0x7d,0x7f,0x93,0xda,0x4d,0xa6,0x6a,0xe0,0xf4,0x86,0xaa, +0x94,0xf0,0x82,0x09,0x68,0x47,0xe0,0xaa,0x31,0x5e,0xa5,0xd0, +0x0a,0x85,0x79,0xc4,0x8d,0xc6,0x71,0x17,0x1a,0x73,0x42,0xfe, +0xec,0x98,0x0c,0x86,0x86,0x68,0x88,0x2a,0xa6,0xa0,0x82,0x17, +0x58,0x9b,0x20,0x9b,0x50,0xbb,0x43,0xb1,0xc6,0x7c,0x75,0x6c, +0x4d,0x7c,0x4d,0x82,0xa4,0x23,0x3a,0x52,0x2a,0x71,0xf4,0x8b, +0x24,0xba,0x5a,0x2b,0xe9,0x88,0x56,0x27,0x55,0x25,0x57,0xa6, +0x70,0x50,0x0a,0x2f,0xfe,0x81,0x18,0x3e,0x26,0xc2,0x95,0xcf, +0x10,0x43,0xff,0x3f,0x10,0xe3,0x35,0xfd,0x35,0xb4,0xf2,0xc5, +0x71,0x38,0x76,0xaa,0x5a,0x15,0x85,0x18,0x93,0xe0,0x0b,0x09, +0x62,0xb8,0xaa,0xf6,0x83,0xfb,0xbf,0x10,0xa3,0xff,0xbf,0x41, +0x0c,0x21,0x8b,0x92,0x86,0x84,0x8a,0xb8,0xf2,0xa8,0x72,0xc3, +0x58,0xde,0x0f,0x47,0x9a,0xe3,0xd8,0x75,0x73,0x6a,0xac,0xf8, +0xc4,0xb4,0xc4,0xf4,0x84,0x0c,0x4e,0x5c,0xdf,0xf3,0x1d,0x84, +0x02,0x62,0x39,0x9b,0x59,0x9e,0x5e,0x45,0x61,0x1b,0x7c,0xd0, +0x62,0x70,0xf4,0x51,0xf4,0x0c,0xa4,0x13,0x69,0x6d,0xd8,0x3e, +0x97,0x2d,0x52,0x61,0x49,0x49,0x57,0x6a,0x3c,0x03,0x83,0x2e, +0xb7,0xc3,0x88,0x64,0xf5,0x24,0xf8,0x22,0x12,0x76,0xc2,0xd7, +0xaa,0xd4,0x12,0x62,0x0d,0x36,0x10,0x8f,0x60,0xb7,0x60,0xd7, +0x50,0x0e,0x02,0x3e,0xe3,0x28,0x5d,0x43,0xd4,0xc5,0x99,0x26, +0x30,0x13,0xbf,0x65,0xcd,0x03,0x2d,0x82,0xad,0x0e,0xc5,0x18, +0xf1,0xf5,0x71,0x8d,0x09,0x8d,0x03,0x8a,0xb3,0x2a,0x03,0x71, +0x76,0x30,0xd3,0x94,0x9c,0x56,0xaf,0x0e,0x0d,0x6c,0x65,0x62, +0x45,0x52,0x79,0x32,0x07,0x95,0x7f,0x12,0x3c,0x8e,0x5a,0x70, +0x9c,0x55,0xfe,0x6b,0xa2,0xb0,0x95,0x20,0xc7,0x78,0x1f,0x8f, +0xcc,0x52,0x07,0x17,0x98,0x88,0xa3,0x3b,0x60,0x2b,0x66,0xc3, +0x60,0x23,0x3a,0xf1,0x4f,0xe3,0xd6,0x76,0x18,0x0d,0x23,0x0e, +0xb0,0x38,0xc5,0xcd,0x00,0x27,0xea,0xab,0xe5,0x5a,0x2a,0xc1, +0x82,0xbb,0x75,0x3f,0xc0,0x7c,0xd5,0xd4,0x9f,0x71,0x27,0x6b, +0x9c,0x16,0xd4,0xa9,0x06,0xe3,0x98,0x8a,0xf8,0x84,0x0a,0xf5, +0x76,0xd6,0x22,0x49,0x49,0xbc,0x3d,0x85,0x78,0x87,0xec,0x0c, +0x95,0x8a,0x50,0x1d,0x7c,0xd3,0x31,0x1f,0xf4,0x8c,0x51,0x0f, +0xc7,0x98,0xc2,0x18,0x3c,0xcb,0xda,0x05,0xd9,0x85,0x38,0x4a, +0x4a,0xaf,0x95,0xb1,0x95,0xf1,0x55,0x03,0x4a,0xaf,0xac,0xd4, +0x43,0x6f,0x29,0x50,0xff,0xb7,0x08,0x55,0x51,0x62,0x51,0x12, +0x27,0xfc,0x88,0x94,0xe8,0x8b,0x3d,0x32,0x38,0x8c,0x3e,0x58, +0x6f,0x2a,0x27,0x1d,0x58,0x0c,0x3e,0xac,0xb2,0xdc,0x1d,0xbc, +0xc8,0x6b,0x50,0xae,0x02,0xd5,0x24,0x98,0xc9,0x3d,0xea,0x11, +0x87,0x33,0xa9,0x4d,0x89,0x4d,0xd1,0x4d,0xc6,0x31,0xbc,0x37, +0xce,0x34,0xa7,0x1c,0x67,0x10,0x7e,0x55,0x6a,0xc9,0x57,0xd4, +0x96,0xb6,0x5d,0xee,0x4e,0x47,0xae,0x0c,0x07,0x5f,0x9d,0xb2, +0x65,0xf5,0x9c,0xf5,0xa8,0xb2,0x29,0x9f,0xce,0x63,0xfe,0xde, +0x87,0x47,0x77,0x9f,0xf5,0xae,0x7a,0xac,0xf9,0xfb,0xba,0xa2, +0x5e,0x7e,0xfa,0xbd,0x75,0xf7,0x4c,0x1e,0x71,0x58,0x5a,0xfd, +0x1f,0x86,0x78,0x0a,0xe6,0x77,0x8b,0xca,0x12,0x43,0x4c,0xfd, +0x2f,0x0c,0x71,0x5e,0x31,0xa8,0x48,0x0c,0x51,0x18,0x24,0xac, +0x22,0x21,0xf8,0xb5,0x27,0xb2,0x1b,0x26,0xeb,0x7e,0xf2,0x04, +0x26,0x90,0x3a,0x54,0x65,0x98,0x22,0x09,0xab,0x09,0x72,0x17, +0x0a,0x7f,0xf4,0x70,0x0e,0x11,0x5f,0xfd,0x24,0xbc,0x62,0xc4, +0x57,0xa8,0x41,0x84,0x57,0x1a,0xe2,0x2b,0xc6,0x17,0x7d,0xc8, +0xf3,0x84,0x8f,0x69,0xaf,0x73,0x7c,0xda,0xf9,0x35,0xbb,0x25, +0x29,0x32,0x26,0x98,0xf6,0x13,0xeb,0x4b,0x5d,0x8c,0xff,0xc9, +0x68,0x03,0xfe,0x5d,0x2c,0xf8,0x14,0xfd,0x92,0x79,0xaa,0x93, +0x37,0x08,0x46,0xee,0xc0,0x34,0x3a,0xc8,0x5f,0xe1,0x24,0xd2, +0x27,0x8c,0xa7,0xbe,0x73,0x2f,0x1a,0x32,0x89,0x94,0xdf,0xae, +0x66,0x1a,0x52,0x2f,0xd6,0xa8,0x43,0xa6,0x38,0x99,0xf6,0xdf, +0x16,0xc8,0x23,0xe2,0x2a,0xd8,0x0a,0x2f,0xe1,0xa3,0xc2,0x81, +0x62,0xb2,0x1b,0xb8,0x55,0x9c,0x29,0x83,0x62,0x26,0x10,0x95, +0x4d,0xcd,0xf0,0x80,0x4d,0x1a,0xc5,0xb5,0xc1,0xf5,0x3f,0xdc, +0xce,0x80,0x55,0x1c,0x68,0xe2,0x56,0x46,0x37,0x7b,0xef,0x4d, +0x35,0xb0,0x66,0xaa,0x53,0x53,0x2b,0xd5,0x81,0x61,0x8d,0x92, +0x94,0xa8,0xd1,0x4c,0x58,0xcf,0x43,0xd2,0x21,0xaa,0xd5,0xd0, +0xcf,0xe2,0x1c,0x61,0x1b,0x11,0x9f,0xbd,0x15,0x9e,0x31,0x38, +0x73,0xd8,0x1c,0xf1,0xd9,0x4f,0xac,0x70,0x06,0xaf,0x93,0x92, +0xd2,0xc2,0xa6,0x8c,0x32,0xf3,0x1c,0xde,0x7f,0xbb,0xb7,0xa3, +0xfb,0x76,0x4e,0xf4,0x79,0x4d,0xf2,0x76,0x14,0xb8,0x5e,0x72, +0x6a,0xcd,0xe1,0xf7,0x54,0x79,0x97,0x7b,0x5f,0xe6,0xa4,0x93, +0x56,0xc5,0xe4,0x6f,0xce,0x94,0xc6,0xd5,0x21,0x78,0x53,0x9c, +0x0c,0x1d,0x4c,0xa8,0xe5,0x1e,0x27,0x47,0x4f,0x97,0x1c,0xb7, +0x42,0xca,0x5a,0xdd,0xf8,0xb2,0xed,0x45,0x3b,0x4a,0x7d,0x0d, +0x77,0xac,0xf0,0x43,0xf6,0x60,0x32,0x8d,0x4a,0xaa,0xe9,0xef, +0xf3,0xaf,0x57,0xc1,0x08,0x6d,0x98,0xb3,0x0f,0x6a,0x4f,0x46, +0x76,0xf1,0x98,0x8a,0xd3,0x53,0x5a,0x71,0xb0,0x7a,0x43,0x4d, +0x4e,0x6b,0xc2,0x15,0x0e,0xde,0x0b,0x93,0xf1,0x05,0x0c,0x11, +0x56,0x30,0xa2,0x3f,0x16,0x4a,0x87,0xf4,0xbe,0x90,0xb4,0xd0, +0x5f,0xe2,0x17,0x04,0x2f,0xd1,0xeb,0x4b,0x0c,0xe5,0x8c,0x9a, +0x04,0xa2,0x8c,0x18,0xff,0x53,0x01,0x27,0x03,0xd4,0xf0,0x3c, +0x03,0xd7,0xc6,0x9d,0x49,0x3f,0x9d,0x9e,0xa1,0xda,0x09,0x97, +0x50,0x99,0x7a,0x8f,0xab,0x92,0xc0,0x6c,0xe2,0x91,0x33,0xa1, +0x87,0x06,0x04,0x66,0x27,0xc0,0xd0,0x0e,0x1c,0xfa,0x59,0x60, +0x76,0x9e,0x29,0x4c,0xa5,0x38,0x78,0x8c,0x93,0x74,0x36,0x61, +0x42,0x85,0x2d,0xff,0x14,0x86,0x14,0xc0,0xa0,0x81,0x83,0xd1, +0x45,0x5d,0xff,0xd9,0x04,0xfc,0x41,0x3a,0x18,0xad,0x04,0xc5, +0xc2,0x17,0x04,0xe6,0xe9,0xe1,0x3c,0xdc,0x6d,0x22,0x14,0x76, +0xb2,0x8e,0xd4,0x7f,0x58,0x32,0x3e,0x11,0x51,0x39,0xea,0xc2, +0x21,0xec,0x41,0x8e,0x45,0x47,0x3f,0xe4,0x71,0xec,0x67,0x8a, +0x32,0x09,0x86,0x17,0xc0,0x42,0xd8,0xa1,0xda,0x0d,0xfa,0xa2, +0x2e,0xab,0x9d,0xb5,0xef,0x9a,0x5a,0x0b,0x53,0x97,0x92,0x34, +0xe0,0x3f,0x8c,0x53,0x94,0xfe,0x2f,0xaf,0x46,0x07,0x3c,0xf9, +0xff,0xf3,0x6a,0x9d,0x02,0x21,0x30,0xd9,0x00,0x27,0x63,0x80, +0x24,0xc1,0xca,0x8a,0xca,0x6b,0xc8,0x8e,0x35,0xe6,0x6b,0xb7, +0x1a,0x17,0xdb,0xf2,0x77,0xaf,0x76,0x3c,0x2a,0x93,0x92,0x2e, +0x22,0x48,0xdf,0xc6,0x8e,0x15,0x0d,0x0b,0x1b,0x8a,0x78,0xeb, +0xd7,0xc6,0x2f,0xf4,0x6e,0x71,0x9b,0xc4,0x1d,0xa4,0xf5,0x5a, +0xc5,0xe3,0xfc,0xb7,0xa6,0x99,0xbc,0xdf,0x0a,0x8f,0x4d,0xf6, +0x86,0x8e,0x3d,0x9e,0xb7,0xf6,0x3c,0x33,0xdb,0xc3,0xe7,0xcf, +0x2f,0x5b,0xdb,0xa0,0xb3,0x49,0x6b,0xbe,0x29,0x8e,0x70,0x92, +0x60,0xc4,0xc8,0xda,0x9f,0xbb,0x1e,0x3c,0xba,0xb1,0xf6,0x85, +0xf1,0xaf,0x76,0xf9,0xed,0xfc,0xac,0xea,0x55,0xed,0x3a,0x77, +0x25,0x19,0x22,0xc1,0x8b,0x84,0x0f,0xb4,0x62,0xa0,0xf2,0x1b, +0x81,0x31,0x1d,0x38,0xe6,0xf3,0x26,0xeb,0x6c,0x53,0x98,0x24, +0x1d,0x3c,0x77,0xfe,0xef,0x0a,0xbe,0x3f,0xd3,0x46,0x14,0x74, +0x0a,0x31,0xff,0xd4,0x48,0x7b,0x8f,0x1b,0x2b,0xca,0x94,0x84, +0x4e,0x3a,0xd8,0x50,0x3d,0x71,0x4a,0xf6,0xe2,0xc6,0xc2,0xea, +0xf4,0xf6,0x98,0x5b,0x1c,0xec,0x13,0xd4,0xd0,0xfb,0x37,0x88, +0x6a,0x13,0xaf,0x9a,0x49,0x00,0x67,0xa7,0xa8,0x06,0xdb,0x99, +0x08,0xd3,0x83,0x0e,0x3e,0x6e,0xae,0x39,0x1e,0x85,0x9e,0x15, +0x8e,0x5e,0x7c,0xa1,0x53,0xa9,0x67,0x85,0xb7,0xad,0x9b,0xb6, +0xcf,0x5c,0x9f,0x8b,0x96,0xfc,0xa7,0xcb,0x0f,0x8b,0x5a,0xeb, +0x3f,0x98,0xc2,0x97,0x3b,0x61,0x0a,0x9d,0x6a,0x5d,0x42,0x99, +0xb4,0x3b,0xf7,0x05,0x2c,0x64,0xc0,0x5b,0x1a,0x39,0x8b,0xe9, +0xf5,0x62,0x49,0x85,0x75,0x35,0x81,0x85,0x56,0xcc,0x9e,0x53, +0x7b,0x4f,0xed,0x53,0xc3,0xf9,0x0c,0x78,0x8c,0x3b,0x93,0x79, +0x3a,0x2b,0x5b,0xb5,0x8e,0xa2,0xaa,0x51,0x74,0x9a,0x8d,0x80, +0x19,0x04,0x62,0xd1,0xbf,0x1f,0x2a,0x1a,0x71,0xdd,0x23,0x50, +0xaf,0x47,0xf5,0xdb,0xb0,0xb0,0x1e,0x17,0xde,0x95,0x6d,0xc0, +0x8d,0xd2,0x97,0x85,0xb6,0xb0,0x70,0x13,0x4e,0xb2,0x85,0x49, +0x9a,0xb8,0xd0,0x1a,0xd2,0x74,0xd1,0x17,0x63,0xb7,0x58,0xdd, +0xc4,0x4d,0x9d,0xb0,0x49,0x18,0x8b,0x2c,0x4e,0x67,0x13,0xad, +0xa5,0xba,0xc1,0xd5,0x49,0x89,0xd5,0xea,0x7f,0xde,0x68,0x62, +0x15,0xda,0x70,0x93,0x1c,0x49,0x3a,0x72,0x2a,0x2c,0x22,0x4c, +0xb2,0xd7,0x37,0xbf,0xb5,0x4e,0x07,0x53,0x19,0x9a,0xa2,0xb2, +0x39,0x05,0xf5,0x87,0x90,0xb8,0xe1,0xf4,0xd5,0x38,0xba,0xcc, +0x86,0xef,0xfb,0x2d,0xf3,0xe3,0x39,0x69,0xdb,0x37,0xb5,0x5d, +0x88,0xfc,0x67,0xdb,0xb7,0x1f,0x17,0x15,0x97,0x2a,0x09,0x93, +0x85,0x59,0x64,0x13,0x6e,0xbc,0xcd,0xc2,0x46,0xca,0xea,0x34, +0x71,0xe3,0x23,0xb6,0x0d,0x6f,0x13,0x5c,0xf6,0x80,0x92,0x9e, +0x8e,0x75,0xe4,0x01,0xac,0x5e,0xc7,0xe2,0x5e,0x5b,0xb2,0x1c, +0x97,0x3d,0x67,0xc1,0x67,0x1c,0xac,0x5e,0x8e,0x94,0x3e,0xc0, +0x6d,0xb9,0x2b,0x91,0x55,0x6a,0x57,0x68,0xe7,0xed,0xb2,0xe0, +0x6f,0xec,0xec,0x73,0xeb,0x72,0xe6,0x84,0xd1,0xf5,0x04,0xe2, +0x7b,0xc4,0x27,0x86,0x10,0xab,0x58,0x89,0x35,0x06,0x72,0xd2, +0x8b,0x45,0x8c,0x48,0x04,0x2d,0x62,0x58,0xa3,0x59,0xa7,0x55, +0xe0,0x6d,0xc9,0xdf,0xf7,0xb8,0xe9,0x7c,0xcd,0x8e,0xc3,0xb9, +0xa2,0x3f,0x79,0xf2,0xdb,0x0d,0x18,0x5f,0xf9,0x49,0x96,0x45, +0xd1,0xed,0x10,0x43,0x64,0x57,0xcd,0xe1,0xa4,0xf2,0x57,0xd7, +0x09,0x4c,0xc5,0x58,0x5c,0x6a,0x24,0x9f,0xd3,0x8d,0x6b,0x29, +0x3e,0xd2,0xe8,0x42,0x0d,0x70,0x36,0x44,0x67,0xf4,0x00,0x67, +0x03,0xfa,0x6d,0x2a,0x73,0xfa,0x21,0xb1,0xac,0xd1,0xaf,0x35, +0x28,0xf4,0xb2,0xe5,0xaf,0xb8,0xb5,0xbb,0xb4,0xd9,0x71,0xa7, +0xd1,0x91,0x98,0xd7,0x6f,0x6a,0xd1,0x2e,0xf5,0xb4,0xe5,0xaf, +0x6d,0xef,0xb7,0xed,0xb2,0xe6,0x84,0xe0,0x39,0x84,0xfe,0x52, +0x2c,0x78,0x30,0xe2,0xdf,0x8a,0xd1,0xe4,0xf6,0xa7,0x56,0x98, +0x90,0xf7,0x51,0x96,0xc1,0x7b,0xe1,0x50,0x5b,0xfc,0x62,0xeb, +0x2c,0x0e,0x4e,0x3b,0x90,0x5f,0xae,0x3e,0x7d,0xd9,0xf1,0xd4, +0xaa,0x94,0x97,0xad,0xd6,0x5a,0x3f,0x5b,0x87,0x13,0x36,0xc0, +0x16,0xf2,0xc0,0xe0,0xd5,0x92,0x9e,0x8d,0x75,0x55,0xbc,0xd1, +0xdd,0x65,0xcf,0x57,0xf7,0x53,0xfe,0x32,0x49,0x3e,0x9a,0x40, +0x56,0x27,0x66,0xc1,0x34,0x3d,0x9c,0x86,0x1a,0x4c,0x62,0x49, +0x6c,0x69,0x74,0x89,0x69,0x12,0xbf,0x7b,0xea,0xf6,0xd9,0x9b, +0x57,0xd5,0xba,0xf0,0xc5,0x15,0xb9,0xf5,0x99,0x0d,0x1c,0x35, +0xe7,0x16,0xec,0x34,0x95,0x2f,0xed,0xc0,0x76,0x06,0x01,0x92, +0x88,0x55,0xb9,0x71,0xb9,0x51,0xde,0x4e,0x2b,0xbe,0x77,0x47, +0xab,0x47,0xcb,0x76,0xee,0x30,0xda,0x12,0xcb,0x4a,0xed,0x1a, +0xdd,0x82,0x9d,0xd6,0x7c,0x9f,0x67,0x9f,0x73,0xbb,0x13,0x87, +0x23,0xc5,0x10,0xf2,0xe0,0x63,0x1f,0xf0,0x25,0x7f,0xca,0x32, +0xf9,0xed,0x38,0xc4,0x4c,0xd2,0x93,0xe0,0x04,0x56,0x46,0x1d, +0xf9,0x4c,0xfd,0x3e,0x61,0x84,0x78,0x49,0x1c,0x21,0xd5,0x02, +0x1a,0x41,0xc4,0x99,0x60,0x23,0xcc,0x64,0x24,0x8d,0xf1,0x8f, +0xa4,0xd2,0xaa,0xd5,0xae,0xcb,0xad,0xb4,0x85,0x9f,0xdf,0xb9, +0xe1,0xc6,0xf6,0x67,0x1c,0x58,0xb6,0xa1,0x0e,0xf5,0x1d,0x8b, +0xda,0x70,0xd1,0x9f,0x46,0x93,0xd1,0xf1,0x4f,0xe3,0xc9,0xa8, +0x61,0x06,0x1a,0x38,0x09,0x37,0x98,0x81,0x01,0xb3,0x7d,0xfe, +0xda,0x8d,0xb3,0x2d,0x2f,0x5b,0xf2,0x7d,0x25,0x9d,0xb5,0x35, +0x6d,0x9c,0x0b,0xa4,0x4d,0xc6,0x67,0xb8,0x86,0xdd,0x96,0xbd, +0xef,0xb6,0x1a,0xfc,0xc2,0xd4,0x48,0x09,0xa5,0xf0,0x35,0x2b, +0x4b,0x56,0xc2,0x59,0xf8,0x3b,0xbb,0x23,0x3c,0xa6,0x40,0xfd, +0x4f,0x78,0xce,0x8a,0xe1,0x42,0x07,0x71,0xa8,0x31,0xab,0x35, +0x2f,0xf2,0x74,0xe0,0x3b,0x5c,0xeb,0x5c,0xea,0xed,0x39,0x61, +0x47,0x1c,0xa1,0x7f,0xda,0x11,0x26,0xb1,0x18,0x87,0x7b,0x88, +0x5d,0xbd,0x4e,0x9b,0x51,0xb9,0xbb,0x03,0xdf,0xe5,0xd2,0x65, +0xd5,0x6c,0xc5,0xc1,0x29,0x5b,0x92,0x5b,0x72,0xb1,0x3c,0xa9, +0x92,0x83,0x75,0x4c,0xb2,0x8b,0xa4,0x0f,0xc4,0x29,0xe6,0x89, +0xeb,0xc8,0x55,0x18,0x52,0x23,0xe5,0x50,0xc8,0x52,0x78,0x5f, +0x1c,0xe6,0x8a,0xc3,0x0d,0x67,0x4a,0x8b,0x08,0x30,0x53,0x9a, +0x33,0xa7,0xfb,0xe1,0x56,0x23,0xca,0x1e,0xc2,0xc2,0x06,0x5c, +0x78,0x13,0x36,0x37,0xe2,0xe6,0x3b,0xc6,0x1b,0xd1,0xe4,0x8e, +0xc9,0x46,0xdc,0x68,0x0d,0x1b,0xb7,0xe0,0x42,0x1b,0x58,0xb8, +0x16,0x4d,0xac,0xa1,0x57,0x17,0x8f,0x62,0xec,0x3a,0x8b,0x07, +0xb8,0xb1,0x1b,0x36,0x0a,0x5a,0xa8,0x84,0x2b,0x06,0xe6,0x8c, +0x06,0x53,0x93,0x90,0x50,0xad,0xfe,0xc7,0x83,0x16,0x56,0xb1, +0x56,0xb8,0x49,0x1c,0x2b,0x2d,0xab,0x2c,0x0b,0x3c,0xed,0xf8, +0x36,0x8f,0x1a,0xd7,0x5a,0x27,0x4e,0x70,0xae,0xa6,0xfc,0xcc, +0xe4,0x26,0x8b,0x69,0x78,0x81,0x38,0x54,0xeb,0xb7,0x98,0x94, +0x78,0xd0,0x9f,0xba,0x76,0xd9,0x36,0xd8,0x71,0xc2,0x61,0xd0, +0x21,0xf4,0x03,0x1e,0xb2,0xbd,0xd2,0xbc,0xd0,0x79,0x00,0x3a, +0x4c,0x97,0x34,0x2f,0x8c,0xd7,0xb1,0x0a,0x67,0xfc,0x9d,0x5c, +0x87,0xc1,0x8d,0x30,0x31,0xeb,0x4f,0xd3,0x34,0x7e,0x17,0x2a, +0x39,0xe1,0x70,0x9d,0x19,0x9c,0x90,0x0a,0x89,0x64,0x25,0xea, +0x3c,0x65,0xe1,0xc8,0x38,0x30,0x5e,0x89,0xc6,0x8c,0xf2,0x47, +0xd8,0x48,0xae,0xdc,0x81,0x6a,0xbc,0x7b,0x15,0xee,0x42,0xf7, +0xc6,0x2b,0xc2,0xdf,0x8a,0x02,0x06,0x00,0x8f,0x11,0xac,0x06, +0x5d,0xa8,0x66,0xae,0xa2,0x2e,0xa1,0x17,0xdd,0xa8,0xcb,0x2a, +0xe6,0x9a,0x12,0xfa,0xa8,0x21,0x56,0x33,0x20,0x07,0x43,0x49, +0x36,0xd2,0x50,0x92,0x8d,0x14,0x8e,0xcb,0x8f,0x93,0x84,0x9c, +0xd8,0xdc,0xa8,0x4c,0xdd,0x18,0xfe,0xc8,0x9e,0x50,0xcf,0xe0, +0x5d,0x1c,0xe6,0xe0,0x3b,0xf9,0x16,0x78,0xc7,0xd0,0x31,0x49, +0xc4,0xee,0xef,0x85,0x6e,0x46,0xec,0xc6,0xc9,0x44,0xe8,0x5e, +0x20,0x76,0x33,0xd0,0x81,0x9f,0x08,0xbc,0x6d,0xc7,0xb7,0xbf, +0x08,0xaa,0x6d,0x8a,0x7e,0x33,0x81,0x9b,0x89,0xf7,0x65,0x70, +0x7f,0xb2,0x38,0xdb,0xe4,0xaf,0x51,0x9d,0xa2,0x26,0xa3,0xfc, +0x97,0x45,0x10,0x41,0x3e,0x79,0x46,0xf6,0x8a,0xa6,0x82,0xea, +0xb4,0xb6,0x98,0xdb,0x1c,0x78,0x08,0xea,0xe8,0xf4,0x3b,0x1c, +0x6b,0x13,0x2f,0x99,0xc1,0xc1,0x69,0x68,0x2f,0xaa,0x83,0x39, +0x73,0xd8,0x34,0xd0,0xd1,0xd7,0xcd,0x23,0xc7,0xab,0x60,0x67, +0xb9,0xe3,0x0e,0xfe,0xb2,0x73,0x91,0x47,0xb9,0xb7,0xbd,0xeb, +0x36,0xef,0x05,0xbb,0x2e,0x5a,0xf3,0x1f,0x0b,0xee,0x15,0xb5, +0x34,0xbc,0x35,0x05,0xa5,0x9d,0xa0,0x1a,0xc8,0x29,0x4e,0x09, +0x94,0x72,0x7f,0xae,0xea,0x07,0x53,0x3a,0xf1,0xb5,0x09,0x4c, +0x90,0x4a,0xe5,0x59,0xe1,0xc4,0x25,0x38,0x94,0xa2,0xa9,0x4c, +0xa9,0x54,0x5e,0xc1,0xe7,0x1a,0x80,0x96,0xc2,0x5e,0x16,0x2e, +0x07,0x48,0x09,0x18,0xc3,0x69,0xc8,0x02,0x47,0x1c,0x4e,0x70, +0x06,0xbd,0x9e,0xc1,0x28,0x56,0x89,0xc9,0x52,0xa5,0xbc,0x6f, +0xc4,0xc1,0x2c,0x58,0x00,0x6d,0xcd,0x54,0x73,0xc6,0x8f,0xba, +0x5b,0x7f,0x35,0x9c,0xcc,0x80,0xcd,0xb8,0xd3,0x99,0xa7,0x2f, +0x65,0xab,0x36,0xc0,0x0c,0xa9,0x9c,0xb8,0x5c,0x4b,0xfe,0x98, +0x18,0xac,0xc0,0x68,0x33,0xe1,0x79,0x1b,0x5e,0x64,0xc4,0xb5, +0x22,0x43,0x8e,0x53,0x5f,0xfd,0x4d,0x27,0x7e,0x03,0x6b,0x99, +0xda,0xc4,0x9a,0xe4,0x62,0x49,0xa1,0x7b,0xad,0x33,0x2a,0x7b, +0x4c,0x0b,0x4e,0xb2,0xe0,0x2b,0x22,0xeb,0x62,0xea,0xe2,0x38, +0x1a,0x91,0x97,0x98,0xc0,0x5c,0x36,0x7c,0x92,0x33,0x0e,0x9e, +0x8c,0x63,0x4b,0xac,0xf9,0x67,0xbf,0x15,0x3c,0x19,0x90,0xe8, +0xb6,0x6e,0x17,0xf4,0x06,0x24,0xba,0x8f,0xaa,0xdd,0xc7,0xd9, +0xd5,0x45,0x9a,0xa0,0x71,0x34,0x36,0xfc,0x5c,0xd8,0x21,0x15, +0x58,0x59,0x49,0x04,0x1d,0xb0,0x11,0x75,0x98,0x1e,0x9c,0x41, +0xde,0xc1,0xf5,0xb9,0xac,0x38,0x58,0xbc,0x4d,0x84,0x39,0xc2, +0x52,0x7c,0x85,0xea,0x03,0x99,0x9c,0xc3,0x99,0xda,0x94,0xd4, +0x1a,0x75,0x61,0xac,0x98,0x27,0x3a,0xb3,0xa0,0x02,0xef,0x09, +0x66,0xb4,0x49,0x55,0xf5,0xb6,0x7f,0xae,0x6d,0xfc,0x11,0x66, +0x4b,0x27,0xcd,0xe7,0xc3,0x03,0x02,0x2a,0xe5,0xf5,0xdb,0x61, +0x1c,0x5a,0x3d,0x84,0xc0,0x7a,0x3c,0xfb,0xc8,0x58,0x13,0xbf, +0xc5,0x02,0x16,0xb7,0xef,0xc3,0x45,0xcb,0x71,0xb6,0x5a,0xb5, +0xcb,0x6b,0x58,0x9c,0x0d,0xab,0xce,0x80,0xab,0x0a,0xf8,0x2c, +0x43,0x2d,0x3b,0xd0,0xc2,0x0f,0xd3,0x98,0x38,0x6b,0xa5,0x17, +0x4c,0x95,0xa4,0xff,0x06,0xbb,0x22,0xd9,0x04,0xcd,0x1b,0x4b, +0x61,0xa4,0xd6,0xa5,0x66,0xde,0xb8,0xd8,0xb2,0x6a,0x7b,0x4d, +0x6d,0x49,0x75,0x65,0x51,0x85,0x5b,0x31,0xef,0xe5,0xec,0xea, +0xe6,0xe0,0xce,0x79,0xd5,0x05,0xd4,0x57,0xa8,0x26,0xb0,0xa2, +0x2c,0x9b,0x1c,0x1d,0x48,0xc2,0x09,0x3f,0xcc,0x1f,0x7b,0x0f, +0x63,0xdb,0x29,0xb7,0xff,0x49,0x86,0x3f,0xe1,0x04,0x19,0x7c, +0xcd,0x04,0xe3,0x50,0x6b,0x1c,0xb6,0x61,0x7a,0x81,0x25,0x7f, +0xf5,0xc7,0xc2,0x1f,0x23,0x5f,0x50,0x63,0x2c,0x6c,0xff,0x27, +0x8d,0xe7,0xa8,0xda,0x6d,0xd4,0x2c,0xa9,0x50,0x72,0x13,0x7e, +0x26,0xa1,0xeb,0x0e,0xac,0x0e,0xd0,0xad,0xda,0xc7,0xa7,0x5f, +0xbd,0xf8,0x22,0xe1,0x3e,0x87,0x1e,0xd4,0x1d,0x87,0xdc,0x3e, +0xf0,0xe4,0x40,0xbf,0xdd,0x7e,0x3e,0x55,0x27,0x55,0x33,0x61, +0x13,0x07,0x1f,0x81,0xe2,0x2c,0x9f,0xb5,0xb8,0xce,0x1e,0xd6, +0xad,0x40,0x1f,0x46,0x58,0x36,0x0e,0x67,0x3c,0xa3,0x9d,0x8c, +0xfc,0xb0,0x65,0x38,0xe3,0x05,0x3b,0x15,0xd3,0x88,0xcf,0x65, +0xf7,0x02,0xd7,0x1c,0x2f,0x77,0xbe,0x64,0x77,0xb9,0x67,0xee, +0x0e,0x2e,0x2d,0x9c,0x38,0x58,0xe9,0x5b,0x6e,0xde,0x9e,0x63, +0xcf,0x3f,0xa8,0xe9,0x6e,0xae,0x6b,0xe1,0x94,0x85,0xd9,0x03, +0xe5,0x06,0xce,0x07,0x5c,0x90,0xca,0x0d,0x04,0xdc,0x96,0x94, +0x53,0xac,0x03,0xf8,0x84,0x7f,0x34,0xc2,0xcd,0x8e,0xc9,0x8e, +0x5f,0x7f,0x7a,0x07,0x18,0xa9,0xdc,0x40,0x2e,0xbf,0x53,0xd7, +0x55,0xdb,0x59,0x6f,0x6f,0xb6,0x5f,0xd6,0x9e,0xac,0xaa,0xbe, +0xd2,0x9b,0x79,0x52,0xb9,0x81,0x3d,0xba,0x9e,0xba,0xee,0xb2, +0x83,0xc9,0x07,0x93,0x0e,0x26,0x52,0x4f,0xd5,0x63,0xd5,0x65, +0xda,0x6a,0xe8,0xe7,0xbe,0xc7,0xcb,0xcf,0xc7,0xe5,0x24,0xfd, +0x27,0x95,0x1b,0xe8,0x3f,0x7b,0xed,0x5c,0xff,0x79,0x4e,0x5c, +0xd0,0xf3,0xbf,0x34,0xc2,0xe1,0x39,0x50,0x78,0x65,0xdf,0x25, +0xba,0x1b,0x83,0x9d,0x42,0x13,0xf7,0x18,0x09,0xdf,0x76,0xe3, +0x2e,0x46,0x9c,0x00,0xbb,0x49,0xba,0x49,0xca,0xb6,0x78,0xdd, +0x96,0x74,0x3e,0xa4,0x37,0xe0,0x86,0x7f,0x3b,0x87,0xbd,0xd8, +0x4c,0xea,0x5f,0x65,0xbd,0x4f,0xfe,0xd9,0x3c,0x96,0x0f,0x5a, +0xec,0xb7,0xd4,0x7e,0x39,0x7d,0x7b,0x55,0x49,0xe1,0xfc,0x80, +0x54,0x82,0xb1,0x21,0x95,0xdf,0x7f,0x7b,0xf7,0x1d,0x9f,0x2e, +0x49,0xe1,0xdc,0x27,0x7e,0x47,0xbc,0x97,0xd9,0x51,0xe3,0xa3, +0xc6,0x27,0xae,0xfe,0xab,0x70,0x9e,0xcb,0xef,0xd2,0xf7,0xd0, +0x71,0xfd,0x57,0xe1,0xbc,0xef,0x3f,0x0a,0xe7,0x3b,0x3e,0x2b, +0x9c,0x7f,0x16,0x9b,0x69,0xb3,0x69,0x37,0x6f,0x30,0xfe,0x2c, +0x36,0xe3,0x79,0xd2,0xf3,0xb3,0xd8,0x4c,0xd7,0xd9,0xee,0x7f, +0xc5,0x66,0x96,0xb0,0x15,0xe7,0xca,0x07,0x8a,0x25,0x74,0x42, +0x17,0xc1,0x4f,0xcc,0xb9,0xb6,0xb3,0x1d,0x67,0xba,0x0d,0xcf, +0xf2,0x27,0x0d,0x4f,0x18,0x1f,0x37,0xe3,0xf0,0x1b,0x13,0xe0, +0xe9,0xf4,0x4c,0xb5,0x46,0x9b,0xe9,0xb8,0xa1,0xd5,0x99,0xff, +0x04,0xfa,0xcd,0xe0,0x93,0x09,0x79,0x52,0xda,0xc1,0x69,0xc5, +0x54,0xe2,0x0b,0x83,0x6d,0x60,0xb1,0xc3,0x6f,0xe6,0x7e,0xfc, +0x25,0x83,0xbc,0x95,0x97,0x34,0xf5,0x43,0x36,0x87,0x6e,0x08, +0x2f,0x03,0xf5,0x32,0x90,0x5d,0x84,0x05,0x46,0xb1,0xfc,0x7e, +0x5c,0x64,0x8b,0x5e,0xdb,0x71,0xc2,0xde,0x13,0x7e,0x27,0xfd, +0x24,0x5e,0x02,0x63,0x12,0x60,0x6c,0xda,0xef,0xd9,0x31,0x3b, +0xa2,0xbc,0x2f,0xec,0xe6,0xc4,0x07,0xf0,0x8c,0x24,0x99,0xc5, +0xe9,0x47,0x19,0x36,0xa7,0xf0,0x11,0x5d,0xc1,0xd7,0x82,0x9b, +0x24,0xbe,0x59,0x47,0x2a,0x9e,0x5f,0xfc,0xf9,0x1f,0x01,0xf4, +0x7d,0x03,0x02,0xe8,0xc2,0x10,0x6a,0xa4,0x44,0x59,0x63,0xea, +0x81,0x5b,0x7e,0xb7,0xf7,0x74,0xa9,0xd8,0x1c,0x18,0x50,0x43, +0xf7,0x52,0xb1,0x39,0x2a,0xc9,0xa1,0xf7,0x3f,0xbb,0x09,0x4a, +0xd4,0x40,0x96,0x9f,0x0d,0xe4,0x66,0xe8,0x9f,0x49,0x0d,0x74, +0xe9,0xbf,0x48,0xc0,0xef,0xd0,0xf5,0x92,0x05,0xfe,0xbf,0x18, +0xa8,0xe7,0x5c,0x97,0xd4,0xbd,0x5d,0xc2,0x32,0xb6,0xf0,0x6c, +0xc1,0xb9,0xcb,0xb4,0x7b,0xdf,0xc1,0x4f,0xff,0x0b,0x05,0x67, +0x51,0x14,0x7c,0x08,0xdf,0x90,0x5b,0xfd,0x6d,0x0f,0x4a,0x7f, +0xb4,0xce,0xe2,0x77,0xae,0xb5,0x5c,0xaf,0x63,0xca,0xc1,0x7d, +0xd8,0xfc,0x7f,0xe0,0xe0,0x2d,0xa2,0x37,0x69,0xbe,0x5e,0xf1, +0x38,0xef,0x1d,0x8d,0xde,0x7e,0xcb,0x07,0x70,0x70,0xb7,0xe7, +0x6d,0x8a,0x83,0xfd,0xf8,0xfc,0x79,0xe5,0x9a,0x8d,0x3a,0xda, +0x1b,0x96,0xcb,0xa6,0x3b,0xe5,0x99,0xf1,0x1f,0xab,0x5f,0x75, +0xdd,0x7e,0x70,0x63,0xfd,0x73,0xe3,0x5f,0xec,0x07,0x50,0xf0, +0xea,0x36,0xdd,0x3b,0x9c,0x38,0x0b,0x86,0x90,0x14,0xa3,0x84, +0xad,0x31,0x3a,0xcd,0xa9,0x7c,0xf8,0x95,0x83,0xb7,0x0e,0xb6, +0xff,0x1f,0xd6,0xf1,0x97,0x94,0x7c,0x94,0xe1,0x92,0x70,0x8c, +0xc4,0xfb,0xc6,0x7a,0xc7,0xec,0x70,0x3a,0x62,0x7f,0xcc,0xfe, +0x44,0xcf,0xd3,0xab,0x30,0xac,0x73,0x40,0x1e,0xde,0xd7,0x48, +0x92,0x87,0x3f,0x70,0x31,0x20,0x73,0xff,0x80,0x3c,0x7c,0x8e, +0x24,0x0f,0xbf,0xf7,0x1f,0x79,0xf8,0xe0,0x84,0x90,0x78,0x49, +0x1e,0xde,0xbe,0xc9,0xb2,0x5a,0xb6,0xc7,0x69,0x8f,0xab,0xdf, +0x4e,0xdf,0x93,0xbb,0x4f,0xed,0x3e,0x75,0x5e,0xc6,0x37,0x9f, +0x6d,0x39,0xd7,0x4c,0xed,0xb1,0xb0,0x43,0x58,0xce,0x66,0x9d, +0xcb,0x3a,0x9b,0x75,0x4e,0x12,0x88,0x3f,0x77,0xb0,0x3e,0x85, +0x0f,0xbc,0xe9,0x7f,0x73,0x6f,0x27,0xf7,0x44,0x7c,0x45,0x3a, +0xe4,0x57,0x84,0x99,0x8a,0x10,0x9c,0xc8,0xa4,0x50,0x52,0xc9, +0x30,0x75,0x49,0xa9,0x75,0xea,0xf2,0x22,0x31,0x89,0x15,0xd4, +0xc5,0x2f,0x89,0x15,0xa6,0x1a,0xd0,0x49,0xf2,0x4d,0xd3,0x52, +0x26,0xbd,0xe6,0x52,0x4f,0x5c,0xb9,0x6d,0x02,0x1f,0xea,0xb4, +0x57,0xc7,0xcf,0x8a,0x43,0x3d,0x2b,0x98,0x80,0xcf,0x0d,0x21, +0xd5,0x4a,0x1c,0xd3,0xd4,0x0f,0xfb,0x18,0xcc,0x10,0x6e,0x90, +0x14,0xef,0x0c,0xf3,0x38,0xb7,0x9a,0x34,0x3e,0xac,0x6c,0x6f, +0xcb,0xc1,0xcb,0x1c,0x56,0x88,0xe6,0x24,0x7d,0x73,0xe2,0xca, +0x98,0xd5,0x92,0x1d,0xee,0x1d,0x78,0xbe,0xff,0xa6,0xa4,0x78, +0x51,0x45,0x0a,0x9f,0xa4,0x7c,0xf8,0x8f,0x10,0xfc,0x8e,0xd5, +0x14,0x94,0x3d,0x86,0x7b,0x04,0x12,0xa4,0xf5,0x1c,0x4b,0x23, +0xb4,0x44,0x7d,0xb0,0x34,0xa6,0xdf,0x86,0x9a,0xc2,0x50,0xf4, +0x61,0x83,0xbf,0x0d,0x39,0x15,0xa2,0x86,0xc3,0x4d,0x29,0x24, +0x0e,0xc7,0x51,0x5e,0x6b,0xd7,0x2d,0xa9,0xb1,0xe6,0x5f,0x7d, +0x2a,0xfe,0x10,0x0b,0xaa,0x1c,0x18,0xe3,0x9b,0x6e,0x78,0x03, +0x5c,0x07,0xa3,0x18,0xb9,0x8b,0x44,0xc4,0x1d,0x3a,0x73,0x28, +0x2c,0x2c,0x94,0x3f,0xf6,0x12,0x66,0xb5,0xe1,0xac,0x3f,0x80, +0xb4,0x20,0xf9,0x1d,0x26,0xb7,0xe2,0x64,0x49,0x33,0x6d,0x96, +0x39,0xcc,0x9a,0x86,0x13,0x2c,0x60,0xc2,0x14,0x29,0xe3,0x63, +0x06,0x13,0xb8,0xd0,0x10,0x07,0x2f,0x59,0x52,0x64,0xc9,0xbf, +0x7c,0x53,0x79,0xef,0xc2,0x2f,0xd4,0x37,0x32,0x9d,0xf0,0x68, +0x20,0x50,0x1c,0x53,0xfb,0x1d,0x67,0x94,0x55,0x2a,0xc1,0x7a, +0xd0,0x22,0xa7,0x93,0xbe,0x4d,0x4e,0x51,0x05,0x77,0xd0,0xc7, +0x04,0x29,0xe9,0x46,0x38,0x49,0x29,0xda,0x19,0xf6,0x41,0xd7, +0xf5,0xfe,0xde,0xdb,0x76,0xc5,0xbc,0xd6,0xa2,0x65,0x12,0xec, +0xc4,0xe1,0xc0,0x41,0x78,0x3b,0x86,0x7f,0x34,0x98,0x8a,0x85, +0x32,0x28,0x44,0x0e,0x15,0xa6,0x82,0x25,0x83,0x13,0x35,0x71, +0x81,0x01,0x6e,0xb6,0xce,0x34,0xe1,0x5f,0x64,0x3d,0xce,0xbd, +0x9b,0x1f,0x6c,0x1c,0x60,0xbc,0xcf,0x98,0xa3,0x0c,0xee,0xa4, +0xe7,0x51,0xeb,0x23,0xbe,0x9c,0xc3,0xa1,0x3d,0x47,0xf4,0xa4, +0xfc,0x08,0x49,0x73,0x6e,0x35,0xf3,0xae,0xea,0xe2,0xf5,0x64, +0xf5,0xf8,0xe6,0x0b,0x37,0xce,0x5e,0xe7,0xc4,0x10,0x66,0x20, +0x57,0x31,0x07,0x36,0x9f,0x05,0xe3,0x64,0x98,0x54,0xe2,0xd7, +0xca,0x23,0xf1,0xc2,0x55,0x41,0xb8,0xf6,0xf8,0xe9,0xb3,0xdf, +0xd2,0xf7,0x7d,0x51,0xfe,0xa8,0xea,0xb6,0xb4,0x5e,0x5d,0x25, +0xd7,0x23,0xf0,0xae,0x03,0xdf,0x3d,0xd1,0xc3,0x00,0x94,0x81, +0xa1,0x1e,0xc5,0x1e,0x9b,0x4d,0xfe,0x1a,0xdf,0x29,0xce,0x62, +0xf0,0x8e,0x62,0x1d,0x01,0x43,0xa1,0x06,0x47,0xa0,0x27,0x9b, +0x28,0x53,0x02,0x33,0xa6,0x3e,0x3d,0xa5,0x41,0x5d,0xf0,0x50, +0xac,0x14,0x2b,0x58,0x41,0x10,0xbe,0x21,0x62,0xcd,0x8f,0x03, +0x15,0x32,0xa5,0xd5,0x8b,0x9a,0xf9,0x62,0x0d,0x05,0x18,0x7a, +0xc2,0x2f,0xa4,0x93,0xa2,0x48,0xea,0x75,0x3a,0xa9,0xd7,0x39, +0x33,0xe0,0x75,0x8e,0x51,0xaf,0xa3,0x62,0x02,0x63,0x99,0xbd, +0x78,0xde,0x0a,0x4d,0x16,0xe0,0x62,0xee,0x3c,0x2b,0x2f,0xa2, +0x00,0x32,0x9f,0xc5,0xb2,0x40,0x5c,0x60,0x85,0x23,0xd5,0x5a, +0x5c,0x4a,0x7f,0x4a,0xfd,0x39,0x1a,0xa6,0xa9,0xc0,0x5c,0x4c, +0xc0,0xa1,0xd2,0xce,0xf8,0x0b,0xe6,0x52,0xf2,0x85,0x84,0x58, +0xf5,0x4a,0x2f,0x18,0x0a,0x9b,0x7b,0xc0,0x37,0x1b,0x4a,0x54, +0xb0,0xd4,0x91,0xe0,0x74,0x30,0x82,0xe9,0x8c,0x9c,0x28,0xca, +0x88,0x0f,0x0c,0xb1,0xa6,0xde,0xea,0x57,0xf3,0x3d,0xfc,0x25, +0xc3,0xbc,0x95,0x59,0xff,0x78,0xab,0x72,0x98,0x54,0x0a,0xa6, +0x99,0xb0,0xc0,0x38,0x86,0xf7,0xc7,0x05,0xb6,0xb8,0xc3,0xf9, +0x3f,0xde,0x4a,0x9f,0x87,0xaf,0xa9,0xb7,0x4a,0xff,0x98,0x15, +0xbd,0x23,0x5a,0xf2,0x56,0x0a,0x3f,0x41,0x8d,0x9c,0x6d,0x3b, +0xdd,0x77,0x53,0x15,0xa6,0x4b,0x28,0xee,0x2f,0x55,0x41,0x9b, +0xcc,0x62,0x76,0x9d,0xb8,0x90,0xa9,0x0e,0xae,0x30,0x1c,0x47, +0xb5,0xc1,0x66,0xfc,0x16,0x86,0x18,0xe1,0x10,0x3c,0x80,0x9b, +0xdb,0x60,0xd4,0xa7,0x00,0x16,0xa7,0x7a,0x18,0xe0,0x68,0x3d, +0xb5,0x5c,0x0a,0x3f,0xa7,0xdc,0xa9,0x7d,0x0d,0x0b,0x55,0xd3, +0x5e,0xa2,0x2f,0x6b,0x96,0x16,0xdc,0xa2,0x06,0x1c,0x53,0x1a, +0x9f,0x50,0xa2,0xde,0xc6,0x5a,0x25,0x29,0x29,0xca,0x28,0x6e, +0x3e,0x13,0x84,0x5a,0x36,0xa8,0x4a,0x9b,0x5a,0xf8,0x5b,0xea, +0xc7,0x68,0x50,0x51,0x81,0x49,0x98,0x38,0x70,0x06,0xe0,0x31, +0xc5,0x0d,0x52,0x52,0x64,0x31,0x9e,0x62,0xc1,0x54,0x4a,0x8a, +0x54,0xa1,0x2d,0x54,0x61,0xf0,0x1b,0x29,0x41,0xb5,0xe3,0x74, +0xef,0x0d,0x55,0x50,0xa1,0x2f,0x26,0x1f,0xb3,0x98,0xb4,0x89, +0xe9,0x66,0xe0,0x8f,0xbb,0xf1,0xac,0x4c,0xe8,0x6f,0xc7,0x68, +0xd8,0x2d,0x55,0xe1,0x96,0x3f,0x25,0x06,0x66,0xe2,0x34,0x9b, +0xbf,0x86,0x34,0x88,0x4b,0x19,0x7c,0x89,0x1e,0x44,0x3e,0x04, +0x46,0x2b,0x86,0x30,0xbd,0x2b,0x49,0x85,0x70,0xcc,0x85,0x15, +0xe5,0x18,0x47,0x60,0x82,0x7c,0x27,0x4e,0xe8,0x05,0x5d,0xc5, +0x8f,0x14,0x7f,0xc2,0xaa,0x3d,0x44,0x48,0x83,0xd1,0x62,0x1a, +0xd3,0x2d,0x3d,0x35,0x93,0x3e,0x75,0x54,0xb4,0x21,0x30,0x4a, +0x78,0xa9,0x47,0xa7,0x95,0xb4,0x41,0x6e,0x45,0x3b,0x3e,0xae, +0x46,0x1d,0x3a,0x15,0x76,0x22,0xc7,0xca,0xd5,0xe1,0x12,0x11, +0x5f,0x36,0x09,0x2f,0x19,0xf1,0xe5,0x2c,0x22,0xbc,0xb4,0x10, +0x5f,0x52,0xbc,0xba,0x4b,0x70,0x23,0xfa,0x61,0x4a,0x50,0x2a, +0x11,0xd8,0x82,0xb8,0x82,0xa8,0x3c,0xe3,0x58,0xfe,0xf0,0x8e, +0x43,0x6e,0xc1,0x1e,0xdc,0x64,0xf4,0x67,0xbc,0xbe,0xf5,0x3e, +0xe5,0xad,0xe6,0x7f,0x72,0xef,0xe7,0x82,0x37,0x19,0xff,0x14, +0xbc,0xd9,0x14,0x8c,0xa3,0xb6,0xcf,0x68,0x70,0x95,0x0a,0xde, +0x24,0xc1,0xe4,0x73,0x60,0x7a,0xeb,0x42,0x7f,0x54,0x4f,0x34, +0x27,0x4e,0xc0,0x2f,0xa4,0x61,0xf7,0xcb,0x3f,0x05,0x6f,0xa6, +0xb0,0x19,0xe7,0x32,0xce,0xa5,0x9f,0x97,0xa4,0x73,0x73,0x08, +0xcc,0xd3,0xa7,0x20,0xce,0xca,0x58,0xf0,0xef,0x62,0x15,0x99, +0x98,0x42,0x4e,0xe7,0x7f,0x7b,0xb9,0x40,0x15,0xd6,0x82,0x25, +0x1e,0x63,0x0d,0x23,0x74,0x0e,0x6f,0x3d,0xca,0x15,0x80,0x33, +0xc9,0x71,0xb9,0x6c,0x92,0x66,0x5d,0x93,0xcd,0xef,0x6f,0xf2, +0xec,0xf6,0x2d,0xe5,0xe4,0x0b,0x15,0x33,0x89,0x0b,0xb3,0xfb, +0x48,0x64,0xb6,0xba,0x70,0x02,0x0b,0xa4,0x45,0x5c,0xa7,0x00, +0x54,0x9d,0x39,0x55,0xad,0xc6,0x56,0x09,0x86,0xc0,0x17,0x59, +0xb0,0x18,0xbc,0x54,0xaf,0xc2,0x22,0x51,0xc6,0x6e,0xbb,0xb4, +0xff,0xaa,0x5a,0x05,0x53,0x9b,0x2c,0x55,0x85,0x76,0x60,0x4d, +0x52,0x94,0x14,0xcb,0x60,0x10,0xc1,0x63,0xcd,0x70,0x8c,0x02, +0x50,0x6d,0xf9,0x3d,0x62,0xb8,0x1c,0xf3,0x9e,0xd3,0x2f,0x47, +0x65,0x70,0x74,0x65,0xcf,0x53,0xc8,0x93,0xbe,0xc4,0xb6,0x63, +0x2c,0x83,0xc1,0x68,0x42,0xb9,0x9b,0x09,0x28,0xcd,0x62,0x34, +0xb3,0xf7,0xbe,0x54,0x13,0x3e,0x75,0x8a,0x1f,0x18,0xa7,0xe0, +0x98,0x4a,0xf5,0x1f,0xe5,0xb6,0x9d,0xe2,0xaa,0x17,0x7a,0xac, +0x38,0x5e,0xe1,0x49,0x60,0xf5,0xb5,0x5e,0x18,0x76,0x1e,0xe6, +0xe9,0x9d,0xe5,0x4f,0xe0,0x38,0x97,0x25,0x38,0x5f,0x9f,0x93, +0x9f,0x4d,0x23,0x3b,0xc2,0x23,0x0b,0xd4,0xc1,0xd7,0x00,0x0f, +0xb0,0xdb,0xb2,0x0e,0xf4,0xab,0xbd,0x65,0xaa,0x93,0x93,0x6a, +0xd5,0xff,0x60,0x4d,0x13,0x95,0xf0,0x6b,0x56,0x1c,0x6a,0x4b, +0xa0,0xd9,0x00,0xa5,0x63,0x0b,0xf7,0xe5,0x4f,0xc8,0x96,0xa9, +0x1a,0xcb,0x90,0xd3,0x2d,0x30,0xe3,0x61,0xe4,0xcd,0xdf,0xdf, +0x3d,0x86,0xa1,0x5c,0x87,0x3f,0x31,0x12,0x8e,0x74,0xb3,0xe2, +0x33,0xdc,0x46,0x36,0x4c,0xa2,0x5c,0x69,0x08,0x8e,0xd9,0x9c, +0x6f,0xca,0xf7,0x97,0x36,0x14,0x97,0x14,0x71,0xa2,0x71,0x9f, +0xf0,0x2d,0x5b,0x5a,0x5e,0x56,0x5f,0xd5,0xc1,0x45,0x1b,0x11, +0x23,0xe8,0x16,0x65,0xe8,0xc4,0xc6,0x1b,0x28,0x81,0x91,0x24, +0x15,0xd4,0xa8,0x2e,0xe8,0xc2,0x96,0x6e,0x3a,0xc0,0x0e,0xbf, +0x20,0x47,0xcf,0x46,0xa7,0x44,0xa6,0x9f,0xbb,0xa4,0x02,0xe6, +0x4d,0x68,0x7c,0x96,0xb9,0x0f,0x0b,0xe0,0xed,0x34,0x36,0xab, +0x30,0xb3,0x34,0xad,0x9e,0x2b,0xc7,0x2d,0x6c,0x54,0x52,0x54, +0xf2,0x85,0x24,0x8b,0x38,0x7e,0xc7,0x6a,0xf3,0x2d,0x3a,0x66, +0x05,0xce,0xfc,0x99,0x33,0x4a,0x78,0x03,0xe6,0xae,0x67,0x4f, +0xa0,0xa9,0x15,0xe8,0xb3,0x41,0x3a,0x16,0x96,0x38,0xd6,0x20, +0xd3,0x9a,0x7f,0x59,0xd5,0x59,0x55,0xde,0x70,0x21,0xfa,0xc2, +0x99,0xe8,0xa3,0xb0,0x0a,0xbf,0xe2,0x2f,0xd7,0xe1,0x5c,0x18, +0x14,0x12,0x73,0xf8,0x64,0x78,0xb8,0x0a,0x56,0xc9,0x29,0x1a, +0x9c,0x61,0xbc,0x52,0x4b,0xbb,0xd4,0xf6,0x73,0x16,0xc3,0xef, +0x9c,0xa0,0xef,0x4a,0x4c,0xe1,0x02,0x0d,0xd5,0x63,0x9c,0xc9, +0x41,0x57,0x3f,0x8f,0x9d,0xee,0x1c,0x2e,0x67,0x0a,0x0b,0x2e, +0x97,0x66,0x57,0x70,0xe8,0x84,0x63,0x89,0xb3,0xc6,0x5a,0x54, +0x5e,0xb3,0xb1,0xd0,0x8a,0xcf,0xcf,0xbb,0x94,0x97,0x91,0xcb, +0x89,0x5a,0xed,0xc2,0x59,0xf6,0x72,0x5d,0x4e,0x6b,0x66,0x0b, +0xf7,0x64,0x32,0xf9,0xf9,0x37,0x0d,0xb6,0x69,0xdc,0xcf,0x1f, +0x35,0xd8,0x27,0xf7,0x88,0x09,0x8c,0x14,0xbf,0xc5,0x2f,0xd9, +0x14,0x53,0xa5,0x77,0x4c,0x4d,0x4a,0x1a,0x45,0xee,0x87,0x9f, +0x75,0xb2,0xe2,0x71,0x54,0x26,0x33,0xa7,0xff,0xc2,0xc2,0xbc, +0x71,0x1f,0x67,0x4e,0xa5,0xee,0x60,0xd4,0xe7,0xb5,0x9d,0x5d, +0xfd,0x70,0xb9,0x01,0x57,0x3c,0x06,0xbe,0x1e,0xf9,0xdb,0xa0, +0x51,0x8f,0x1a,0xd2,0xb2,0xce,0x5a,0xe9,0x8b,0x86,0x2d,0x68, +0x6c,0x42,0x55,0x5b,0x50,0x5d,0x83,0x1a,0x36,0x10,0xab,0x4b, +0x91,0x71,0xac,0xad,0x55,0x3d,0x6e,0xea,0x80,0x4d,0x82,0x12, +0xb2,0xa8,0x36,0xc0,0x53,0x95,0x99,0xaa,0x81,0xb5,0x9d,0x6b, +0x4d,0xec,0xdf,0x5f,0xc8,0x35,0x88,0x19,0x9c,0x6b,0x63,0x85, +0xf9,0x8b,0xc9,0x26,0x5c,0x7b,0x9b,0xc5,0xfd,0x38,0x94,0x7a, +0xd0,0x26,0x13,0x56,0xae,0x13,0x41,0xd6,0xe0,0xda,0xc7,0xac, +0x18,0xb4,0x81,0xc8,0xe0,0x78,0x3b,0x8b,0xe6,0xc3,0xda,0xf1, +0xb8,0x8c,0x15,0x4a,0x2c,0x09,0xce,0x7f,0x00,0xf3,0x99,0x76, +0x89,0xa1,0x2e,0xa1,0x0c,0xd5,0x04,0xff,0x22,0xad,0x20,0x83, +0x6c,0x3c,0x89,0xdf,0xd1,0x07,0xa0,0x8f,0x2c,0xc7,0xf9,0xcf, +0x59,0x70,0x1f,0x07,0x4b,0x96,0xe3,0x12,0x46,0xd4,0x68,0x20, +0xb8,0x92,0x32,0xa3,0x95,0xac,0x74,0x50,0x72,0x16,0xf9,0x5e, +0x18,0xd6,0xaa,0xc8,0x36,0x87,0x3f,0x16,0x8b,0xdf,0x98,0xcb, +0xe5,0xad,0xec,0x2a,0xca,0xc4,0x14,0x16,0xa2,0x89,0xdc,0x82, +0xd1,0x83,0x6b,0x44,0xbc,0xf7,0x48,0xb8,0xc7,0x88,0xf7,0xa4, +0x1a,0xdc,0xf7,0xd6,0x88,0xf7,0x18,0xeb,0x61,0xc2,0xbd,0x55, +0xf4,0x3b,0xaa,0x62,0x30,0x81,0x89,0x79,0x7f,0x56,0x3e,0xac, +0x76,0xa9,0xa2,0xf4,0x6a,0x86,0x07,0x8e,0xf5,0xe5,0x84,0xea, +0x4e,0xf2,0x9b,0x2f,0x0c,0x77,0xf9,0xe0,0x5c,0xdc,0xcc,0x6b, +0x94,0xe2,0xc8,0x8a,0x29,0xd9,0x94,0xe1,0x8f,0xfe,0x8f,0xe5, +0xf2,0xff,0x2f,0x96,0xd3,0xfc,0xdf,0x2d,0x47,0x79,0x7e,0xf2, +0x80,0xe5,0x4c,0xac,0x3a,0x3f,0xaf,0x8a,0x49,0x96,0x53,0xff, +0xd7,0x72,0x52,0x8d,0xb3,0x3f,0xaf,0x52,0xcb,0x0d,0x96,0x4f, +0x27,0x8a,0x21,0x70,0x4c,0x3e,0x84,0x35,0x43,0x43,0xe9,0xbc, +0x2a,0x0f,0xe3,0x19,0xc1,0xdd,0x9b,0x9a,0x51,0xf3,0x36,0x0b, +0x9a,0x38,0x82,0x5a,0x4f,0xf3,0x31,0x8b,0x4d,0xa8,0x29,0xfd, +0x58,0x95,0xfe,0x18,0xc7,0xd3,0x47,0x61,0x3c,0xce,0x40,0xfa, +0xa8,0x7f,0x1d,0xc1,0x79,0x0f,0x60,0xde,0xe7,0xe5,0x2f,0x6a, +0x44,0xf4,0x96,0x96,0xbf,0xe6,0xfd,0x57,0xa3,0x99,0x06,0x90, +0x6c,0x9b,0x2c,0xc3,0x14,0x59,0xd3,0x65,0xfe,0x60,0xcb,0xae, +0xfe,0x3d,0x35,0x1c,0xda,0xd3,0xe6,0x57,0xb4,0x56,0x3c,0x4b, +0xbf,0x66,0x99,0xc5,0x07,0x1a,0x3b,0x2d,0x75,0x73,0xa0,0x28, +0xed,0xe9,0xc0,0x81,0x30,0x03,0xfc,0x0a,0xb7,0x1b,0x0b,0xde, +0x5d,0x2c,0x14,0x63,0x04,0x69,0x7e,0x57,0xfe,0xf6,0xd2,0x53, +0xae,0x09,0x5f,0x2b,0xfe,0xba,0x22,0x6f,0xa6,0x1c,0x70,0x9f, +0xd6,0xf6,0xf9,0xc6,0x33,0xb9,0x7b,0x9b,0x3b,0xd7,0xaf,0x56, +0xdd,0x14,0xe0,0xb9,0x4e,0x6d,0x1b,0x13,0x67,0xa0,0x74,0x95, +0xf9,0x58,0xdd,0xff,0xee,0xbd,0xec,0x81,0xf6,0x35,0x75,0xd1, +0x13,0x38,0xd2,0xa1,0xdd,0xa0,0x5d,0xb3,0xae,0xb6,0x8c,0xdf, +0x7e,0x5d,0xf6,0xd8,0xbc,0x9b,0x43,0xc7,0xe3,0x64,0xf7,0x06, +0xbb,0x0d,0x1b,0x0c,0xcb,0x6c,0xf8,0xc7,0xd7,0x5b,0x9f,0x4a, +0x15,0xbc,0xa6,0xe1,0x22,0x12,0x60,0xb0,0x57,0xe6,0x6b,0xb5, +0xbd,0xda,0xb9,0xd2,0xbe,0xda,0xc9,0x89,0x6f,0xb4,0xad,0xb1, +0xaf,0xb2,0x33,0x98,0xa7,0xa9,0x35,0x6d,0x5b,0xb1,0x05,0xff, +0xe1,0xfa,0xd3,0x07,0xd7,0xde,0xd7,0x5a,0x54,0x9b,0xd5,0xe8, +0xd5,0xd5,0xf0,0x56,0xd7,0xec,0x3a,0x6d,0xda,0x0b,0x3b,0x73, +0xaf,0x64,0xde,0xa1,0x5d,0x63,0x29,0x9c,0xa1,0xc0,0x67,0x1e, +0xdb,0xd6,0x57,0x7f,0xab,0xe6,0x3b,0xbb,0x6c,0xde,0x62,0xae, +0x4c,0x53,0x57,0x9b,0xd3,0x81,0x2f,0x61,0x1e,0xfd,0x01,0x0c, +0x36,0xc5,0xc1,0xb8,0xc0,0x02,0x16,0xe0,0x97,0xa8,0x63,0x01, +0x67,0x99,0x0d,0xdb,0x96,0x99,0x4d,0xb1,0xca,0xb2,0xe3,0x2b, +0xd3,0xcb,0xd3,0x4b,0x2f,0x72,0x10,0xc9,0xb8,0xfb,0x5a,0xfa, +0x9a,0xec,0xe3,0x74,0x31,0xd8,0x02,0x82,0x71,0x05,0x4e,0x1b, +0x38,0x49,0x31,0x8a,0xa9,0x49,0x4e,0xad,0x56,0x87,0x85,0x10, +0xd4,0x82,0x41,0x05,0xec,0xad,0x82,0x6b,0x95,0xd5,0xb5,0x5c, +0x05,0x66,0xb2,0x55,0x97,0x2b,0x8a,0x4a,0x4a,0x38,0x7c,0x02, +0x27,0x48,0xab,0x38,0xce,0x1c,0x46,0xe1,0xe8,0x79,0x0a,0xd3, +0xd6,0xab,0x90,0x2f,0x1f,0x35,0x17,0x46,0xb3,0x56,0xe3,0x70, +0xb4,0x8b,0xa4,0x1e,0x36,0x41,0xd4,0x21,0x53,0x71,0xff,0x1d, +0x36,0x6b,0x9f,0x52,0xe3,0x9d,0xc4,0x0f,0x30,0x59,0xf5,0x74, +0x05,0x9a,0xb2,0x0e,0xa9,0x7e,0xe5,0x6a,0x38,0x03,0xce,0x90, +0xa9,0xe1,0xcb,0x3d,0x8d,0xd4,0x20,0xbe,0x86,0x85,0x15,0x34, +0xe0,0xed,0x3b,0x12,0x95,0xab,0x0e,0x1b,0xeb,0xd1,0x43,0x9a, +0x47,0x4e,0x04,0xf6,0xd3,0xb1,0xb3,0x5f,0x2a,0x33,0x29,0x9f, +0x4c,0x81,0x58,0x28,0x8c,0x36,0xc2,0xd1,0xe8,0x2b,0x15,0xb3, +0x38,0x7c,0x10,0x8d,0xb4,0x71,0xb9,0x5a,0xb3,0xa7,0xd2,0x6d, +0xd8,0x92,0x0e,0x36,0xf0,0xad,0xea,0x27,0x16,0x13,0x60,0x0a, +0x89,0x5d,0xd6,0xa8,0xfd,0xfd,0xda,0xfc,0x66,0x7e,0xcd,0x2d, +0xdb,0x5b,0xfb,0x6f,0x73,0x9b,0x18,0xff,0xf5,0x4e,0x9a,0x73, +0x37,0xe6,0x9b,0xf3,0x6f,0x6e,0xb7,0xbe,0x4c,0xfc,0x9e,0x03, +0x55,0x85,0x1d,0xd9,0x11,0xe1,0x1e,0xe1,0x16,0xc1,0x41,0x33, +0x8c,0x6b,0xc3,0x71,0x30,0xfc,0x87,0x56,0x0c,0x36,0x7f,0x8e, +0xc3,0x71,0xba,0x19,0xc5,0x10,0x7d,0xac,0xe5,0x21,0x8b,0x08, +0x2b,0x29,0x49,0xf8,0x53,0x32,0x8c,0xca,0x7e,0x7c,0x89,0x13, +0x5e,0x6c,0x26,0xbb,0x61,0xbc,0x0d,0x68,0x3a,0x01,0x63,0xbc, +0x8f,0xcf,0xda,0x9c,0x37,0x37,0x6b,0xee,0xfa,0xa0,0xa5,0xc1, +0x8b,0x0f,0x35,0x82,0x46,0x39,0x58,0xe6,0x80,0xbe,0x6e,0x0c, +0xbf,0x0f,0xf5,0x9c,0xd0,0xc9,0x12,0x17,0xfb,0x9d,0xd8,0x4b, +0xd1,0x4a,0xac,0x2e,0x0f,0x13,0x13,0x61,0xda,0x45,0x60,0x72, +0xa2,0xbd,0xa2,0xbc,0x22,0x77,0x72,0x62,0x2f,0x58,0x93,0xc4, +0xf6,0xb8,0xae,0xe8,0x76,0xbb,0x58,0x3e,0xc2,0x30,0x5c,0x16, +0x4c,0x21,0xb7,0x3f,0xcc,0x22,0x99,0xb2,0x8b,0xab,0xe3,0x8c, +0x1a,0x93,0xf8,0xb0,0x2e,0xbf,0x17,0x7b,0xdb,0x68,0x27,0x1b, +0x0c,0x34,0x3d,0xf8,0x73,0xd3,0x7d,0x06,0x9a,0x1e,0x88,0x86, +0xda,0xb8,0x42,0x6a,0xfa,0xad,0xff,0xd2,0xf4,0x1b,0x74,0x34, +0x65,0x3f,0x4c,0x7d,0x24,0xad,0xe2,0x2c,0xa2,0xb0,0xd0,0x14, +0x46,0x33,0xfb,0x71,0xa9,0x1d,0x4e,0x5c,0x81,0x43,0xf2,0xf4, +0xf8,0x8b,0x79,0x29,0xf9,0xc9,0x97,0xa9,0x3f,0xed,0x7c,0x00, +0xdb,0x04,0x7f,0x56,0x78,0x2b,0x96,0x90,0x3d,0xff,0x5b,0x7b, +0x2e,0xcd,0xd5,0x0a,0x5a,0x16,0xb2,0xe4,0x50,0x03,0xcc,0xfa, +0xdf,0xda,0x63,0xf5,0x5f,0xdb,0x33,0x21,0x11,0xa6,0x5f,0x84, +0x61,0x39,0x51,0x9f,0xdb,0xa3,0xd8,0x4e,0xcd,0x2e,0x0c,0x85, +0xaf,0xc4,0xa1,0x34,0x96,0x19,0xc9,0x6f,0x92,0xfd,0xeb,0xdd, +0xd6,0x2e,0x91,0x2c,0xfe,0xf2,0x76,0xc3,0xcb,0xf8,0x57,0x52, +0x6d,0xe9,0xe5,0x55,0x3a,0x4f,0x34,0x2f,0xb7,0xf0,0x1b,0x6f, +0x3a,0xdf,0x0c,0xb8,0xc5,0xc1,0x94,0xbf,0x27,0x90,0x4e,0x4a, +0x50,0xa6,0x53,0x82,0x32,0x61,0xe0,0x54,0xe7,0xff,0x22,0x28, +0x89,0xac,0xa0,0xf6,0x7f,0x23,0x28,0x76,0x09,0x7c,0xc8,0x3f, +0x04,0x45,0xf7,0xbf,0x13,0x94,0xbd,0x9f,0x09,0x4a,0xea,0xbf, +0x04,0x25,0xb4,0x6c,0xdf,0x00,0x41,0x79,0x88,0xbf,0x12,0xf8, +0xb2,0x0d,0xbf,0x84,0xe1,0xcf,0x5b,0xd0,0xc7,0xe2,0x21,0xed, +0xe0,0x09,0x66,0xf4,0x57,0xaf,0x32,0x36,0xe1,0xd6,0x11,0x76, +0x52,0x21,0xef,0x3f,0x53,0x60,0x74,0xce,0xa3,0xec,0x93,0x6d, +0xbc,0xc7,0xa1,0xed,0xe1,0xce,0xe1,0xdc,0xad,0x3b,0x24,0xbe, +0x2d,0xae,0x3b,0xb2,0xdd,0x3e,0x96,0x3f,0x62,0x10,0x21,0x0b, +0xa1,0x9f,0xe7,0x05,0x1a,0xb4,0x77,0x32,0x56,0xc7,0x1a,0xd6, +0x27,0xf2,0xe1,0xdd,0x7b,0x5f,0xec,0x6b,0xe7,0x94,0x9f,0xc8, +0xab,0xc9,0xdf,0x83,0xbb,0x85,0x6b,0xd0,0x05,0xdd,0xec,0x2b, +0xec,0x26,0x70,0x4f,0x3c,0x83,0x53,0x99,0x38,0x73,0x25,0x8a, +0x97,0x69,0x44,0xa2,0xcd,0x29,0x17,0xc7,0xb0,0xa2,0x1a,0x8d, +0x6d,0x0f,0xe1,0xdb,0xb5,0x2c,0x38,0x8f,0x7b,0x08,0xc9,0x6b, +0x59,0x85,0x13,0xf5,0xcc,0x8f,0xe1,0xdb,0x35,0xd2,0x9d,0xc7, +0x90,0xbc,0x86,0xa5,0x5e,0xb3,0x94,0xd4,0xb1,0x25,0x07,0x2a, +0x0f,0xd6,0x04,0x66,0x34,0xf3,0x38,0xa5,0x79,0x46,0x97,0x4f, +0x3f,0x67,0xca,0xec,0xd2,0xc5,0x41,0x5b,0x70,0x9c,0x53,0xa6, +0x05,0x2f,0xed,0xee,0x16,0xa7,0x72,0xce,0x2c,0xc5,0x39,0x3a, +0x24,0xd1,0xba,0xc3,0xe9,0xe1,0x76,0x0e,0x9b,0x98,0x3b,0xe5, +0x6d,0xb5,0x09,0x75,0x1c,0x4e,0x13,0xc3,0x48,0x03,0xfc,0x01, +0x0e,0xe2,0x7c,0x3c,0xc7,0xd2,0x0b,0x47,0x32,0x19,0xeb,0xfe, +0xa4,0x41,0x63,0xa6,0x70,0x97,0x14,0xa4,0x15,0x5c,0xca,0xcb, +0x2e,0x70,0xab,0x72,0x6b,0xf2,0xdc,0xec,0xb6,0x7c,0xc7,0xec, +0x3d,0x99,0xe6,0x3c,0x0c,0xca,0xfd,0xa9,0xec,0x71,0xfd,0x5d, +0xa7,0x97,0xee,0x3f,0xfb,0x66,0xb7,0xf1,0x8b,0x33,0xd7,0xe5, +0xe9,0x14,0xdd,0x6d,0x6e,0xef,0x29,0xbe,0xca,0xd5,0x62,0x1b, +0x9b,0x90,0x1e,0x97,0x11,0x9d,0x61,0x12,0xcf,0xbb,0xaf,0xd9, +0xb8,0x6a,0xae,0x39,0x37,0x15,0x27,0x91,0xaa,0x5b,0xff,0x16, +0xb7,0xeb,0xfe,0x5c,0xdc,0x6e,0xf3,0xe7,0xe2,0x76,0xd6,0x2b, +0xb8,0xbb,0xff,0x16,0xb7,0x33,0xfe,0xb7,0xb8,0xdd,0xbd,0xcf, +0xc5,0xed,0xf4,0x7b,0xd5,0x85,0x76,0xf0,0x27,0x3e,0x36,0xd6, +0xb6,0xdb,0x9c,0x4c,0x8b,0xed,0xca,0xdd,0x2b,0x23,0x3f,0xe7, +0x36,0x08,0xa3,0xc4,0x6d,0xa4,0x0d,0x37,0xc1,0x50,0x13,0x1c, +0x8a,0x4d,0x66,0x2f,0x70,0xae,0xb4,0x3f,0xf2,0x12,0x35,0x3a, +0x41,0x03,0xac,0x5b,0xd1,0x1a,0xe6,0x52,0x03,0x8d,0x83,0x79, +0xf4,0x07,0xf3,0x28,0x60,0x5d,0x24,0x1f,0x4f,0xc4,0x34,0x61, +0x9f,0x90,0x86,0xdf,0xb2,0xc9,0x85,0x09,0xc5,0xf1,0x85,0x1c, +0x9c,0x6e,0x17,0xfb,0x64,0x10,0xc5,0x84,0xed,0x0c,0xf6,0x38, +0xe8,0xc1,0x61,0xb0,0xb8,0x82,0x78,0x04,0xba,0x1c,0x70,0x38, +0xc8,0x09,0x05,0x30,0xa4,0x0b,0x2b,0x8c,0x81,0x11,0x3b,0x59, +0x97,0x60,0xe7,0x60,0xc7,0xd0,0x64,0x03,0x1e,0x46,0x95,0xfd, +0x56,0xfd,0xb8,0x82,0x83,0x61,0xf0,0x88,0x7c,0x00,0xc5,0x2c, +0xd6,0x62,0xd8,0x74,0x54,0xfc,0xc6,0xe2,0x82,0x61,0xa0,0x98, +0x84,0x0a,0x06,0x27,0xe1,0x39,0xf2,0xbe,0xe4,0x6e,0x75,0x5f, +0x8b,0x73,0x25,0x6f,0x66,0xbb,0xde,0x69,0xf1,0x2e,0x4e,0x98, +0x78,0x9f,0xdc,0xd8,0xf9,0xc6,0xb2,0xdf,0xbe,0xa0,0x89,0xd7, +0xab,0x5e,0xd8,0xb8,0x35,0x97,0xce,0xd4,0x2d,0xc2,0x23,0xd2, +0x21,0xae,0xfa,0x95,0x85,0x31,0x51,0xa0,0x1c,0xff,0x31,0x7d, +0x2f,0xed,0x43,0x3f,0x27,0xbc,0x7c,0x14,0x4f,0x9c,0x8e,0xa3, +0xa8,0x6e,0xd0,0x29,0x18,0x7e,0x1a,0xb8,0x0b,0x9c,0x86,0x38, +0xdb,0x54,0x18,0xc4,0x6a,0x2d,0xc7,0x2f,0x0d,0xd1,0x78,0x5b, +0x2e,0xed,0x83,0xd0,0x57,0xa0,0x74,0xad,0xe2,0x13,0x17,0x89, +0xb6,0x7d,0x60,0x1b,0xc9,0x94,0xe3,0x20,0xf8,0x4a,0x07,0x8e, +0x2e,0xc9,0xa1,0x0c,0xd0,0xe2,0x1a,0x7e,0xdd,0xb3,0xfe,0x39, +0x87,0x77,0x15,0xd3,0x48,0x9b,0x10,0x69,0xd6,0x2b,0xac,0x53, +0x28,0x8b,0xeb,0x58,0xe1,0x06,0x64,0x10,0x31,0xf2,0x77,0x21, +0x92,0x11,0x23,0x71,0x01,0x11,0x22,0x71,0x90,0x18,0xc9,0x48, +0x74,0xe2,0x21,0x31,0x58,0x28,0xce,0x30,0xff,0x8b,0x69,0x15, +0x97,0x33,0x78,0x0f,0xfb,0x89,0xf0,0x0e,0xac,0xc5,0x77,0x4c, +0x2f,0x4e,0x27,0x6f,0x04,0x9f,0xf9,0xac,0xf8,0x4a,0xec,0x24, +0xc2,0x78,0xb9,0x25,0xde,0xc5,0x0d,0x03,0xaa,0x19,0x33,0xa5, +0x03,0xe6,0x4d,0xea,0x20,0x28,0xee,0x8a,0x06,0x2c,0x98,0xc0, +0x6d,0x82,0xe7,0xbb,0xdb,0x04,0x15,0xb0,0x66,0x45,0x15,0x9c, +0x49,0xde,0xc3,0x93,0xd9,0x94,0x17,0x5b,0x4b,0xe4,0x91,0xdc, +0x84,0x97,0xd0,0x8e,0x26,0x4c,0xf4,0xc5,0xe8,0x4b,0x17,0x32, +0x4d,0xa3,0xf9,0xa3,0x7e,0x11,0xbe,0x87,0x7c,0xa5,0x31,0x58, +0x25,0x0c,0x63,0xd6,0x9e,0x30,0x3f,0xec,0xac,0xe6,0x79,0x24, +0x34,0x64,0xfb,0x04,0x33,0x26,0xce,0x4c,0xa9,0x8d,0xe9,0xcb, +0xbe,0xd4,0x1b,0xab,0x1e,0xdb,0x76,0xee,0x3a,0x0c,0x57,0x15, +0x87,0xde,0x11,0x08,0xa3,0x70,0x11,0x46,0x12,0xb7,0x32,0xa7, +0x0a,0xc7,0x02,0x4f,0x47,0xbe,0xce,0xa3,0xc4,0xbd,0xcc,0x85, +0x83,0x1c,0xf1,0x6b,0xe2,0x1f,0xec,0x13,0xe8,0x1d,0xc4,0x09, +0xee,0x8f,0x3b,0x70,0x8f,0xe9,0x77,0xe2,0x11,0xd6,0x3d,0xd0, +0x2d,0xd8,0x33,0x34,0xc3,0x98,0xff,0xa1,0xf8,0x6d,0x43,0x77, +0x25,0x07,0x82,0xb0,0x8f,0xac,0xc3,0xdc,0x07,0x2c,0x3e,0xc1, +0x8b,0xc4,0xb6,0x71,0x5b,0xa7,0x41,0x85,0xbb,0x13,0xdf,0xe3, +0xd4,0x63,0xd1,0x6c,0xc1,0xc9,0x55,0xc0,0x84,0xac,0xc6,0xdc, +0xef,0x58,0x31,0x80,0xd2,0x86,0x81,0x22,0x50,0xdf,0x64,0xfc, +0xfe,0xb9,0x08,0x94,0xfb,0x40,0x11,0x28,0xb9,0x2b,0x78,0x91, +0xa4,0x9d,0x69,0xe6,0xb1,0x6e,0x65,0x29,0x7c,0x58,0x69,0x40, +0x4b,0x60,0x1e,0x87,0xf7,0x31,0x8a,0x94,0xdc,0xcc,0x7c,0x1d, +0x7d,0xdb,0x36,0x96,0x0f,0xd7,0xf6,0x5f,0xe9,0x66,0xc0,0xc1, +0x09,0xb0,0x25,0x49,0xd6,0x09,0xa6,0xd1,0xb2,0xda,0x78,0x3e, +0xbc,0x3d,0xa8,0x3d,0xa8,0x9e,0xc3,0x89,0x21,0x24,0x56,0x27, +0x72,0xc3,0x19,0xa3,0x86,0x28,0xfe,0xc4,0xb5,0xc3,0x57,0xc3, +0xa4,0xdd,0xa7,0x1f,0xce,0x53,0x74,0x37,0x70,0xc4,0x9a,0x30, +0x0d,0x69,0x52,0xdd,0x99,0x26,0x43,0x56,0xe1,0xf0,0x37,0x4f, +0xa8,0xb7,0x53,0x55,0x1c,0xc2,0x49,0x6c,0x0a,0xe5,0xfe,0x1c, +0x53,0x93,0x46,0x01,0xab,0xbc,0x44,0xbc,0xf0,0xf7,0x10,0xea, +0x8d,0xe5,0x3f,0x10,0x85,0x5a,0x97,0x5c,0x8d,0xc5,0x24,0x14, +0x88,0x39,0x26,0x9b,0xc0,0x0b,0x18,0xdf,0xbc,0x9c,0x49,0xab, +0xc9,0xb8,0x1e,0x57,0x69,0x9d,0xc4,0x87,0x5a,0xec,0xd3,0xdd, +0x67,0xc1,0x49,0xfa,0xb2,0x5f,0xe3,0x0b,0x19,0x24,0x9b,0x8b, +0x23,0x69,0xd8,0x1d,0x58,0x9b,0xb9,0x43,0x52,0x3d,0x33,0x64, +0xf1,0x4e,0x75,0x19,0x7c,0x48,0x95,0x7f,0xfb,0x81,0x62,0xfa, +0x22,0x66,0xf2,0xbb,0x03,0x67,0xda,0xc7,0x1b,0x51,0xec,0x74, +0x1c,0x2f,0x39,0xe3,0x9a,0xb9,0xf8,0x8d,0xd7,0x7b,0x13,0x18, +0xe5,0xfc,0xd0,0x7a,0x2f,0x7f,0xc9,0x36,0x57,0x2f,0x5b,0x77, +0x4b,0xf0,0xc6,0xd0,0xf5,0x61,0x97,0x9f,0x15,0x00,0x97,0xfa, +0x0b,0x07,0xc7,0x3a,0xe9,0x5c,0xdb,0x06,0xeb,0xbb,0x70,0x3d, +0x68,0x19,0xa2,0x16,0x6a,0x19,0x83,0x16,0x6e,0x43,0x0b,0x13, +0xd0,0x60,0xf6,0x53,0xac,0x38,0xd2,0x6b,0xc9,0xc6,0x08,0x3e, +0x46,0x1f,0x54,0x52,0x61,0x74,0x06,0x0d,0x6a,0x2a,0x31,0xbb, +0x63,0xf6,0x44,0xed,0xab,0xcf,0xe4,0x8f,0x46,0x1c,0xa1,0xff, +0x6a,0x6d,0xe8,0xbc,0x82,0x65,0x2d,0x60,0x75,0x5e,0x3a,0x33, +0xbf,0x88,0xc1,0x23,0x47,0x71,0x45,0xd8,0x34,0x35,0x83,0xc3, +0x21,0x41,0x26,0x13,0x16,0x48,0x7c,0xf9,0x47,0xe6,0x69,0x5e, +0xc9,0xf3,0x58,0xf5,0x44,0xe0,0xce,0xc1,0x3c,0xb8,0xa6,0x8a, +0x3e,0x8c,0x32,0x68,0x4a,0x3a,0x02,0x29,0xf2,0xb9,0x90,0xc2, +0x8a,0xef,0xd1,0x95,0xc0,0x1c,0xa1,0x00,0xe7,0xb0,0x60,0x40, +0x87,0xf6,0xdf,0x6a,0x46,0x20,0x63,0x82,0x4d,0xf6,0x6a,0xfb, +0x19,0x71,0xc2,0x7b,0xe6,0x84,0xcd,0x11,0x87,0x10,0x7b,0xce, +0x25,0xd4,0x3f,0xc4,0x62,0x82,0x24,0x0d,0x6d,0xa4,0x04,0xa1, +0xcc,0xab,0xca,0xec,0x7b,0x69,0xea,0xc9,0x57,0xa2,0x6e,0x9e, +0x7b,0xc0,0x89,0x0f,0x98,0xa4,0xca,0xf8,0xaa,0xd8,0x2a,0x4e, +0x3e,0x81,0x51,0xee,0x15,0xb4,0x09,0x24,0xc3,0xd7,0x30,0x46, +0x3a,0xe9,0x33,0x9a,0x86,0xa4,0x62,0x1c,0x0d,0x13,0xf1,0x0b, +0xb8,0x84,0x5f,0x17,0x74,0xf3,0x18,0x07,0x5f,0xe2,0xe8,0x8f, +0x26,0xf0,0x25,0xb7,0x9e,0x31,0xa1,0x88,0x49,0x69,0x2a,0x46, +0xe1,0x70,0x4e,0x6e,0xb8,0x97,0x74,0x8b,0x36,0x46,0x52,0x4d, +0x7e,0x42,0xc4,0x85,0xfd,0x2d,0x42,0x8b,0x45,0xbf,0xb0,0x90, +0x55,0x0c,0x36,0x22,0x42,0x0b,0x46,0x88,0x2d,0xf4,0xd5,0x1b, +0xa8,0x5f,0xdb,0x15,0xb4,0x2b,0x78,0x67,0x08,0x07,0xcf,0x7f, +0x6e,0xd7,0x80,0x4c,0x23,0xcc,0xd4,0x90,0xfd,0x8c,0x7f,0xb1, +0x1e,0xc1,0xee,0x21,0xae,0xa1,0x29,0xa6,0xfc,0x87,0xe2,0xc7, +0x45,0x0f,0x06,0x86,0xed,0x8f,0xe4,0xbe,0xe1,0x7a,0x2c,0xb4, +0x94,0x8f,0x6c,0x66,0x75,0x66,0x12,0xf1,0x2c,0xae,0x11,0xce, +0x32,0x46,0xf0,0x05,0xd9,0x26,0x8e,0xbb,0xc6,0x0a,0x4a,0x62, +0x20,0xa9,0xbf,0x5c,0x55,0x52,0x54,0xe2,0x5a,0xc6,0x7b,0xb9, +0x3a,0x7b,0xb8,0xec,0xf6,0x2f,0x09,0xa9,0x38,0x54,0xcf,0xc1, +0xca,0xec,0x6e,0x18,0xad,0x18,0x8b,0xa3,0x3b,0x77,0xc3,0x52, +0x46,0xe6,0xb5,0x65,0xef,0xbc,0x80,0x34,0x5b,0xfe,0x71,0xea, +0xf5,0x8b,0x9d,0x97,0x63,0x22,0x62,0xc2,0xa3,0x0f,0xe9,0xba, +0x2c,0xf4,0x9c,0xb6,0x3b,0xdd,0x9a,0x87,0x61,0xf9,0x3f,0x94, +0xf7,0x57,0x47,0x1d,0x8a,0x0c,0xbd,0x10,0xb6,0x59,0x86,0xac, +0x25,0x4e,0xf2,0xca,0xb0,0xe2,0x61,0x46,0x19,0x0c,0x6e,0xbe, +0xd6,0xca,0x9d,0x0d,0x39,0x13,0x1a,0xa2,0x6a,0x1d,0x14,0x64, +0xae,0xb6,0x84,0x49,0x32,0x53,0x7a,0xc2,0x3c,0x2d,0x2c,0x78, +0x71,0xcf,0xee,0xe9,0xd6,0x7e,0xf5,0xbc,0x4c,0xea,0xb9,0x4b, +0x71,0x7e,0xff,0x3c,0x58,0x34,0xa7,0xa0,0x91,0xdf,0x52,0x61, +0x5d,0xe6,0x51,0xc3,0xbd,0x00,0x5f,0x22,0x26,0x35,0x0a,0x49, +0x14,0x96,0x99,0x0a,0x27,0x49,0x2b,0x2e,0x64,0x5b,0xdb,0x1b, +0xfb,0xea,0xef,0xd8,0xe4,0xf3,0xc6,0x8b,0x4d,0x36,0xea,0x1a, +0x72,0x8b,0x61,0x38,0x6c,0x6e,0xc5,0xcd,0x9f,0x4f,0x18,0x6d, +0x35,0x87,0xad,0x34,0xea,0x06,0x9a,0xc3,0x0d,0x66,0x8e,0x16, +0x0e,0x33,0xc1,0xe9,0xb2,0x8b,0xe6,0xfc,0xd5,0xac,0x9e,0x9c, +0xb6,0xdc,0x60,0x0b,0x7f,0x43,0xda,0xa1,0xa0,0x60,0x4e,0xb9, +0x1c,0x31,0x89,0xf0,0xe4,0xbc,0x8f,0x04,0x1c,0x76,0x94,0x72, +0x14,0x52,0x06,0xd6,0xc7,0xee,0xe4,0x67,0xb6,0x27,0xa8,0xc7, +0xd5,0x46,0xdf,0x3d,0xf3,0x8c,0xc3,0xf7,0x4c,0x4c,0x66,0xf4, +0xa5,0xe8,0x4c,0x18,0x95,0x00,0x23,0xd3,0x61,0x64,0xd9,0xbe, +0x46,0x1e,0x07,0x79,0xe1,0x20,0x7f,0x1c,0x12,0x7a,0x2e,0xee, +0x2c,0xfd,0xd7,0x59,0xdc,0x5c,0x5a,0x5f,0xc5,0x89,0x13,0x74, +0x89,0x7b,0x80,0x6b,0x80,0x6b,0x20,0x07,0x3b,0x41,0xb9,0x03, +0x95,0x41,0xcf,0x08,0xf5,0x90,0xf2,0x4f,0x82,0x47,0x59,0xdb, +0x03,0xb6,0x81,0x0e,0xa1,0x34,0xf6,0x57,0xc6,0x57,0x27,0x56, +0xa7,0x70,0x58,0x81,0xc3,0x59,0x8a,0x41,0x7e,0x62,0xea,0x93, +0x53,0x6b,0xd4,0xe1,0x0a,0x5b,0x99,0x5a,0x99,0x51,0x71,0x91, +0xce,0x22,0x22,0x3f,0x47,0xee,0x1b,0xac,0xc7,0x46,0x4b,0xf9, +0x82,0x66,0x56,0xb1,0xcc,0x81,0x38,0x56,0x58,0x56,0x58,0x49, +0x3b,0x93,0xad,0x1e,0x35,0x6e,0xb5,0xce,0x9c,0xfc,0xeb,0xc3, +0x44,0xcc,0xc1,0xd5,0x42,0x0e,0x63,0x38,0xd0,0x85,0xf3,0xaf, +0xb1,0xb8,0x1c,0x35,0x88,0x43,0xb5,0x5e,0xd3,0xc0,0x26,0x65, +0xbb,0x5b,0x97,0x6d,0x83,0x3d,0x27,0xbc,0xc6,0x1a,0xd2,0x50, +0x50,0x5d,0x52,0x5c,0x4a,0xfb,0xd5,0x73,0xbb,0xa3,0xbb,0x93, +0xef,0xbe,0x92,0xa0,0xca,0xb0,0x06,0x0e,0xb6,0xe4,0x74,0xc3, +0x28,0xc5,0x0a,0x1c,0xd5,0xe5,0x0b,0x1b,0x18,0x63,0x2f,0xad, +0xbd,0x33,0x03,0x52,0x6d,0xf9,0x97,0xa9,0x77,0x33,0x7b,0x0b, +0xa4,0x7e,0x8d,0x09,0xdf,0xea,0x34,0xdb,0x03,0x87,0xee,0xce, +0xa0,0x1d,0x3b,0x32,0xff,0xa7,0x8a,0x1b,0x35,0x51,0x87,0xa2, +0xc2,0x2e,0x84,0x6a,0xc9,0x68,0xa8,0xc4,0x59,0x3b,0xd2,0x69, +0xc7,0x2e,0x2a,0x05,0xb6,0xf5,0x16,0xed,0xd8,0xd0,0x33,0x21, +0xa1,0xaa,0x56,0x81,0x81,0x32,0x35,0xea,0x8a,0xcc,0x94,0x5e, +0x30,0x2f,0x0a,0x0b,0x5e,0xdd,0xb5,0x7d,0xb2,0xf9,0xaa,0x7a, +0x4c,0x64,0x4c,0x64,0x74,0x14,0xd7,0xc7,0x54,0xe0,0xc2,0xeb, +0xf3,0x61,0xd5,0x3c,0x1a,0xc4,0x36,0x96,0x5b,0x96,0xba,0x55, +0x73,0x3f,0xc2,0x1e,0x22,0x36,0x34,0x08,0x0d,0x8c,0x22,0x57, +0x74,0x26,0x37,0x60,0x50,0x23,0x4c,0xcc,0xfe,0x28,0x4b,0xe3, +0x77,0xe2,0x50,0x69,0xcf,0x74,0x26,0xa7,0x2c,0xc4,0xcb,0x53, +0x48,0xbf,0x89,0xae,0x38,0xcb,0xea,0x2f,0xa6,0x89,0x55,0x44, +0x60,0x0c,0x91,0x73,0xb0,0x44,0xc1,0x31,0xdd,0x94,0xfb,0xf6, +0x09,0xe7,0xf5,0x59,0xd8,0x36,0x8b,0x28,0x00,0xa7,0xf5,0xbe, +0x93,0x07,0xcd,0xed,0x65,0xd0,0x02,0xf5,0x49,0x5f,0x51,0x4b, +0x79,0x43,0xe5,0xf6,0x12,0xde,0xc1,0xc5,0xc8,0x59,0xe6,0xbd, +0xa3,0xc2,0xbf,0x26,0xa8,0x91,0x83,0x8d,0x75,0xa2,0xdc,0x0e, +0x36,0x31,0x5b,0xbd,0xe6,0xee,0x46,0x95,0x3d,0xa9,0xd4,0x79, +0x7c,0x95,0xfd,0x29,0xff,0x79,0x6d,0xdc,0xa1,0xb8,0xb0,0xd8, +0xd0,0xa5,0x96,0x38,0xca,0x06,0x97,0xb9,0x4b,0xf7,0x97,0x94, +0x81,0x6a,0xcb,0xab,0xae,0xd8,0xa0,0x98,0xa0,0xa8,0xc0,0x45, +0x5b,0x71,0x89,0x36,0xea,0x3b,0xa7,0x59,0xf2,0x60,0xde,0x0c, +0x53,0x7b,0xde,0xdc,0xe0,0xce,0x05,0x9e,0x39,0x78,0x50,0x75, +0xe3,0xf6,0x43,0x86,0x6a,0x8b,0x98,0x04,0x69,0x9b,0xed,0x87, +0x8e,0xec,0x4f,0xaf,0x6d,0x5f,0xaf,0xba,0x4e,0x5b,0x2d,0xed, +0xee,0x35,0xe3,0xca,0x1f,0x66,0x80,0xbd,0x46,0x7e,0x3d,0xbf, +0xa0,0x46,0xbb,0xc6,0xba,0x81,0xb6,0x27,0x59,0x50,0x21,0xb5, +0xc2,0xdc,0x4a,0x71,0x6e,0x05,0xdc,0x07,0x3b,0xbc,0x5f,0x22, +0xa8,0x55,0x8a,0x6a,0x55,0x32,0x27,0x51,0xd9,0x59,0x50,0x76, +0xc7,0x5e,0xb4,0x83,0x5e,0x17,0x71,0xa2,0xb3,0x30,0xd1,0x9e, +0x85,0x33,0xc3,0x30,0xaa,0x42,0x3a,0x97,0xf4,0xd0,0x85,0x60, +0x46,0x05,0x64,0x30,0xe2,0x83,0xb5,0x04,0xa2,0x1c,0x91,0xde, +0xbb,0x52,0x4d,0x20,0xc3,0x11,0x33,0x98,0x4d,0x62,0x08,0x01, +0x77,0x5c,0x5e,0x0e,0xb2,0x2a,0x94,0x55,0xd9,0x38,0xa1,0xb9, +0x13,0x98,0x6f,0xc7,0xa5,0xe8,0x0e,0x4b,0x9d,0xd1,0xd6,0x09, +0x6c,0xb5,0x1b,0xae,0x83,0x65,0x15,0x5a,0x56,0xb2,0x82,0xb3, +0x33,0xa9,0x84,0xcd,0xe0,0x86,0x9b,0xcb,0xc1,0xad,0x0a,0xdd, +0xaa,0xac,0x9d,0xd0,0xc8,0x09,0x8c,0xa4,0xe7,0xdd,0xa4,0xe7, +0x65,0x4e,0x20,0xd3,0x6e,0xbc,0x0e,0x3b,0xab,0x58,0x85,0x17, +0xac,0x21,0x38,0xac,0x16,0x86,0x31,0xb0,0xc2,0x9e,0x20,0x53, +0x4b,0x81,0x33,0x34,0xda,0xfd,0x7b,0x6f,0x2b,0xbd,0x37,0xb6, +0x96,0xa2,0x4f,0x45,0xc4,0x2a,0x02,0xc3,0x6c,0x90,0xde,0x5b, +0xd6,0x40,0x80,0xb1,0x41,0xfa,0x5c,0x73,0x3d,0xbd,0x67,0x2b, +0xdd,0x5b,0x4e,0xaf,0xc6,0xda,0xe2,0x58,0x8a,0x16,0x2c,0x84, +0x7e,0x52,0x5c,0x54,0x50,0x97,0x45,0xfb,0xe3,0xad,0x3d,0x83, +0x1b,0x8e,0xa0,0xed,0xa1,0x55,0x6a,0x16,0x47,0x22,0xbc,0xed, +0x26,0xac,0x62,0x62,0xcc,0xa9,0x63,0xe8,0xcf,0x2f,0x78,0x1b, +0xa7,0x1e,0xff,0x73,0x24,0x58,0xc3,0x46,0xd5,0xb7,0xe2,0x70, +0x36,0x2e,0x3b,0x3a,0x2b,0xf2,0x92,0x65,0x1c,0xbf,0x7b,0x91, +0xc3,0x52,0x03,0x13,0x8e,0xa2,0x8b,0x5f,0x08,0x8e,0x9b,0x51, +0xd8,0xb9,0x41,0xbd,0xbe,0xb3,0xe8,0x46,0xea,0x7d,0xae,0x12, +0x9d,0xd8,0xa4,0xbc,0xb8,0xfc,0xa8,0x1c,0x0e,0x4c,0x9a,0x71, +0xd5,0x4b,0x98,0xd1,0x88,0x33,0x9e,0xc2,0x92,0x46,0x5c,0xf2, +0xcc,0x74,0x05,0x2e,0xb0,0x86,0x05,0x2b,0x71,0x9a,0x35,0x4c, +0x5b,0x8a,0x2b,0x2c,0x41,0x9d,0xd9,0xbb,0xde,0x64,0xa9,0x96, +0x09,0x05,0xa5,0xf9,0x99,0xb9,0xb9,0x59,0xf9,0xe9,0x96,0xb9, +0x36,0x65,0xce,0x96,0xd6,0xba,0xae,0xeb,0x7d,0x73,0x64,0xfc, +0x77,0xf9,0xb7,0x6a,0xda,0xdb,0xb9,0x6d,0xdf,0x01,0xeb,0x0c, +0x8b,0x26,0xc0,0x3b,0x26,0xb2,0x53,0x09,0xeb,0xa1,0x97,0x5c, +0x38,0x77,0xee,0xdc,0x31,0x35,0x18,0x81,0xdf,0x94,0x95,0x52, +0x8f,0xae,0x12,0x1e,0x1b,0xfa,0x6d,0x58,0x84,0xca,0xa1,0x08, +0xa5,0xe3,0x65,0xb0,0xa5,0x09,0xb7,0x40,0x80,0x19,0x06,0xe0, +0x06,0x2b,0x98,0xc5,0xf8,0x6e,0x30,0xd4,0x9e,0xbd,0xe6,0xb2, +0x3d,0xff,0xe1,0xe9,0xd5,0xdb,0x91,0xdf,0x53,0xc8,0xd5,0xd5, +0xc6,0x00,0x2b,0x7c,0x4f,0x82,0x9d,0xb6,0x6b,0xf9,0xba,0xd7, +0xec,0xe6,0x73,0x2a,0xca,0xef,0x24,0xd7,0x72,0xf8,0x3f,0xec, +0x48,0x42,0x40,0xb6,0x65,0x9c,0x6b,0x6d,0x26,0x1f,0x52,0xb6, +0xa7,0x21,0x34,0x83,0xc3,0x18,0xd1,0x95,0xb8,0x54,0xfb,0xb4, +0x1c,0xe8,0x94,0x8e,0x48,0x04,0x1a,0xfb,0x5a,0x79,0x48,0x05, +0x4c,0x36,0xc9,0xdd,0x89,0xb8,0x1c,0x86,0xe9,0xe0,0x30,0x71, +0xba,0x89,0x30,0x9d,0x7a,0xbc,0x1a,0xbc,0x0c,0x5a,0x4c,0x08, +0x7e,0xb5,0x75,0x05,0xba,0xeb,0xe7,0x9b,0xf2,0xb0,0xab,0xff, +0xcd,0x9f,0xc9,0xb0,0x90,0x83,0x0d,0xb8,0x83,0xd9,0x9a,0xbd, +0xfb,0x8e,0x1a,0xe8,0x30,0x0d,0xe9,0xe9,0x75,0xea,0xa0,0x31, +0x70,0x46,0x6f,0x33,0x6e,0x62,0x9d,0xc3,0x63,0xca,0xd5,0xc1, +0x11,0xcc,0xe0,0x32,0xf6,0xc0,0x70,0x61,0x39,0xab,0xb0,0xc3, +0xb7,0x04,0xd6,0x08,0x45,0xb8,0x86,0x55,0x7e,0x04,0x9b,0x08, +0x98,0xbe,0x81,0xd1,0x30,0xe9,0x2d,0x6c,0xb1,0xbc,0xcc,0x3b, +0x2c,0xb7,0xda,0x68,0xa4,0xbf,0x3b,0xdf,0x27,0xcf,0x27,0xb7, +0xbd,0xbb,0xf1,0x4e,0x7e,0x0f,0x07,0xfe,0x9d,0x78,0xe0,0x27, +0x83,0x39,0xe8,0x6b,0x02,0x3b,0x19,0x1f,0x73,0x67,0xf3,0xed, +0x8e,0xd2,0xfe,0x5a,0x50,0x82,0xb3,0x23,0x7f,0xdd,0xa4,0xcd, +0xb2,0x49,0xdf,0xcc,0xc6,0xc0,0x79,0x93,0x17,0x27,0xaf,0xc0, +0xbd,0x04,0xb7,0x0c,0x64,0x3e,0xcd,0x65,0x9a,0x3e,0x8b,0x8b, +0xeb,0xb3,0xe8,0x69,0x45,0x14,0xe3,0x7b,0xe5,0xe3,0x59,0xec, +0x55,0x28,0x91,0x63,0xe7,0x6f,0xde,0xe8,0x79,0xd4,0xf9,0x4e, +0xc5,0xaa,0x0c,0xc7,0xa0,0x27,0x4e,0xa6,0x5c,0xd4,0x6b,0x9a, +0x4a,0x9e,0x09,0x28,0xb5,0xbf,0xe9,0xfd,0xee,0xae,0xca,0x85, +0x0b,0x17,0x4e,0x5e,0x38,0x42,0x49,0xbc,0x2e,0xdf,0x50,0x8d, +0xb3,0x60,0x65,0x48,0x62,0x98,0xd4,0x01,0xca,0x42,0xae,0x9c, +0x23,0xc2,0xf0,0x4e,0x71,0x38,0xcc,0xd2,0xc3,0x59,0xb4,0xd9, +0x19,0xe5,0xc9,0xe5,0x09,0xe5,0xc6,0xa9,0xfc,0x8e,0x39,0x46, +0x1a,0x8b,0x57,0xd6,0x3b,0xf3,0x15,0xa5,0x45,0x15,0x39,0x55, +0x1c,0x9c,0x45,0x4d,0x71,0x91,0xf1,0x5f,0x5f,0x75,0x89,0x8b, +0x19,0xbc,0x22,0xe6,0x93,0x06,0xa1,0xdd,0xe6,0x0a,0xa0,0x62, +0x13,0x22,0x2b,0x1f,0x0a,0x2d,0x04,0xcd,0xc5,0x76,0x30,0xa7, +0x1c,0x73,0xf2,0x1a,0x72,0x53,0xee,0xb2,0xe5,0xca,0x5f,0xac, +0xe2,0xe5,0xdf,0x2c,0x7b,0x45,0x7e,0x95,0xc8,0x5d,0x14,0x06, +0x0a,0x17,0x46,0x3e,0xe9,0x0f,0x4a,0x24,0x2e,0x81,0x36,0x1c, +0x68,0xc5,0x03,0x94,0x3c,0x44,0xb7,0x89,0x8d,0x66,0x10,0x86, +0x1a,0xe8,0x66,0x4e,0x67,0x98,0x36,0x9e,0x37,0x63,0x85,0x94, +0x3f,0xc8,0xee,0xf2,0x9d,0x65,0xbb,0x2e,0x3b,0xf9,0xf0,0x97, +0xbd,0xf2,0xdc,0x32,0x5d,0x38,0xe5,0x9b,0xf2,0xc1,0xc4,0x46, +0x98,0xd6,0x80,0x5a,0xdf,0x83,0x4d,0x03,0xda,0xdc,0x33,0xd1, +0x42,0x73,0x1b,0x30,0x5f,0xcc,0x0a,0x73,0x80,0xa7,0x93,0x05, +0x5d,0x18,0xa3,0x94,0x03,0x9d,0x6a,0xa5,0x4c,0x45,0x8c,0x54, +0x50,0x71,0x04,0x6b,0x93,0xaa,0x84,0x73,0x76,0xb0,0xfe,0x47, +0xa4,0x6d,0x86,0x68,0x3c,0x34,0x99,0x45,0xa5,0x03,0x16,0x56, +0x86,0x6a,0xc5,0xce,0x4a,0x3d,0x37,0xb3,0xef,0x51,0x98,0x8b, +0x6d,0x62,0x1e,0x09,0x8b,0x39,0x7a,0x32,0x3c,0xfc,0x50,0x38, +0x7f,0xbc,0x17,0x8c,0x1a,0xd0,0xe8,0x39,0xd3,0x12,0xd9,0x14, +0x5d,0x12,0xc3,0x51,0xf7,0x2a,0xca,0x70,0x62,0x13,0x13,0xe7, +0x50,0x74,0xa6,0xe1,0x5c,0xf3,0x05,0x95,0xb5,0x68,0x65,0x03, +0xfa,0xec,0xee,0x4d,0x0b,0x36,0xae,0xb6,0xca,0xb7,0xe5,0x7f, +0xea,0xbd,0x73,0xf3,0xc2,0x7d,0x3a,0x48,0x4f,0xb7,0x83,0x25, +0x73,0xfe,0xec,0xb7,0xe7,0x8e,0xab,0x51,0xd4,0xf2,0x65,0x51, +0xb9,0x92,0xf8,0x95,0xb0,0x84,0xc0,0x8f,0xab,0x99,0xa0,0xd2, +0xe5,0xfe,0x38,0x3b,0x78,0xc9,0x31,0x15,0xf9,0x0f,0xa2,0x1a, +0xd9,0x54,0x62,0x5c,0x6d,0xdd,0xd8,0x77,0xbb,0xec,0x69,0x86, +0xa4,0x18,0x45,0x07,0x52,0x35,0x7b,0x50,0x7f,0xa7,0xae,0x95, +0x91,0x7d,0xab,0x7b,0x97,0x77,0xb7,0xe5,0x1e,0xbe,0x48,0xbb, +0x5c,0xaf,0xd1,0xc4,0xd4,0x62,0xa3,0xdd,0x5c,0xaf,0x1c,0x0b, +0xfe,0x43,0xc9,0xc3,0x86,0x9e,0x8e,0x16,0x8b,0x3e,0xdb,0x07, +0xd4,0x10,0xf2,0x30,0xf9,0x57,0x04,0x64,0x6d,0x28,0x03,0x0d, +0x63,0xd4,0x98,0xcd,0xc4,0x94,0x45,0x95,0x5d,0x28,0x37,0x8b, +0xe5,0x83,0x70,0xb0,0xcf,0x4c,0x9b,0x55,0xb5,0x3b,0xf8,0x4b, +0x55,0xe9,0x75,0x49,0xd4,0x5d,0x30,0x74,0xc8,0x7a,0x98,0x09, +0xfb,0xdb,0xd0,0x93,0xc1,0x3c,0xa8,0x22,0xad,0xa2,0xa6,0x39, +0x7c,0x83,0x63,0x26,0x2b,0x4c,0xda,0xaf,0x42,0xaf,0xfc,0xab, +0xc9,0x30,0x86,0xb5,0x1c,0x87,0x63,0x6c,0xe8,0x77,0x98,0x27, +0x6a,0x13,0x0a,0xab,0x1e,0xb2,0x79,0xbe,0x4a,0xad,0xb7,0x53, +0x7e,0x82,0x29,0xaa,0x0d,0xa8,0xcf,0xd8,0xa5,0xf9,0x55,0xa9, +0xe1,0x12,0x38,0x4b,0x68,0x1c,0x5f,0xe6,0x6c,0xac,0x06,0x09, +0x6d,0x2c,0x6c,0x42,0x17,0xe2,0x77,0x54,0x5a,0x12,0x5a,0xdb, +0x8e,0x2e,0x2c,0x98,0x8b,0x46,0xa4,0x0f,0x72,0xf4,0x3b,0x05, +0x15,0x51,0x55,0x54,0x61,0xa5,0x54,0x33,0x82,0x39,0xe0,0x0d, +0x39,0x8c,0xc2,0x63,0x0e,0xf5,0xc1,0xc8,0x51,0x27,0xac,0xfc, +0x97,0x4c,0x98,0x48,0xc4,0x4d,0xb7,0x84,0x2f,0xa0,0x0d,0xbd, +0x98,0x18,0xca,0x4f,0x22,0x2f,0x19,0x4b,0xfc,0x24,0xdc,0x47, +0xe2,0x27,0x4b,0xc4,0x6a,0x61,0x21,0xb3,0xfe,0x84,0x65,0x84, +0x93,0x9a,0xc7,0xd1,0x90,0x60,0xe7,0x09,0x06,0x4c,0xbc,0x99, +0x52,0x0f,0x73,0x35,0x3b,0xab,0x27,0x4e,0x3d,0xb6,0xf3,0xdc, +0x35,0xe0,0x54,0xc5,0x05,0x77,0x84,0x4d,0xcc,0xdf,0x33,0x60, +0x18,0x91,0x09,0x6a,0xed,0xb8,0x10,0x36,0x7c,0x2e,0x27,0x27, +0x95,0xfb,0x5c,0xc9,0x46,0x95,0x5e,0x28,0x3d,0x5b,0x60,0x11, +0xc7,0x1f,0x5e,0xe1,0x37,0xcd,0x73,0x7d,0xd3,0x1e,0x3e,0xa9, +0x28,0xbe,0x2c,0xa6,0x8c,0x7b,0x8f,0x1b,0x18,0x41,0x01,0x89, +0x64,0x3d,0x5e,0xbb,0xcf,0xc2,0x35,0x1c,0x45,0xd6,0xe0,0xb5, +0xc7,0xac,0x68,0x84,0x85,0x44,0x1c,0xdd,0xdd,0x0f,0x91,0x70, +0x83,0xc5,0x48,0x4c,0x20,0xe0,0x02,0x96,0xb4,0x61,0xc2,0x22, +0x50,0xf9,0x87,0x85,0x54,0xa4,0xf0,0xa1,0xff,0xb0,0x90,0x9f, +0x29,0x0b,0x29,0xbf,0x79,0xe9,0xfb,0xd8,0x3b,0xd6,0xb1,0xfc, +0xa1,0x6d,0xfb,0x56,0xb9,0xe8,0x73,0x90,0x20,0x2d,0x1c,0xd9, +0x24,0x9a,0x46,0x9b,0xd6,0x51,0x16,0xd2,0x11,0xd4,0x1e,0x48, +0x59,0xc8,0xd4,0x7f,0x58,0x88,0x61,0xd3,0x00,0x0b,0xb9,0x16, +0x2a,0x25,0xd3,0xa7,0x42,0x1b,0x11,0xb8,0x56,0x91,0x7b,0x09, +0xcf,0x40,0x54,0x58,0xa2,0x08,0x37,0x96,0xa2,0x60,0x0e,0xc2, +0x7c,0x71,0xae,0xd9,0x5f,0xa3,0xdb,0xc4,0xb5,0x8c,0x91,0x60, +0x40,0x30,0xea,0x57,0x1a,0xcc,0xba,0x67,0x90,0x5f,0x21,0x63, +0x06,0x2b,0x7e,0x67,0x45,0xcd,0x38,0x55,0x0a,0x65,0xd7,0x3f, +0xd2,0x50,0x36,0x95,0x86,0x32,0x38,0x25,0x6a,0x90,0x0a,0xdb, +0x0a,0x8b,0xcb,0x46,0x9d,0xb9,0xbc,0x57,0x8f,0x43,0xeb,0xf6, +0x0a,0x4e,0x61,0x81,0xa6,0xa4,0xa7,0xb5,0xaa,0x23,0xbb,0xcd, +0x3c,0x83,0xf7,0xb5,0x76,0xb4,0x34,0xb6,0xe6,0x84,0x33,0x30, +0x86,0x64,0x5a,0xa5,0x5b,0x24,0xca,0xfa,0xe2,0xf9,0xc0,0x6e, +0xff,0x16,0xbf,0x3a,0x0e,0x33,0x42,0x48,0xbc,0x79,0x94,0xed, +0x79,0x83,0xbe,0x28,0xfe,0x58,0x6f,0x78,0x53,0x70,0xa3,0x94, +0xa6,0x21,0x9c,0x20,0x9d,0x38,0xa3,0x82,0x85,0x23,0x86,0x78, +0x84,0x75,0x41,0xde,0x04,0xc6,0xb1,0x11,0xe8,0xec,0x8c,0x53, +0x26,0xe3,0x3c,0x0e,0xce,0x61,0x1c,0x3e,0x6a,0x6b,0x05,0x19, +0x5b,0x68,0x08,0xca,0xb0,0xa6,0x14,0xd4,0xce,0x83,0xae,0x8a, +0x24,0x8b,0xba,0xad,0x08,0x55,0x61,0x18,0x6e,0x28,0xbe,0x42, +0xc1,0x1f,0xac,0x72,0x81,0x29,0x11,0xe0,0xc1,0x89,0x2d,0xf0, +0x82,0xf8,0x5b,0xfa,0xd9,0xf9,0x3a,0xed,0xaf,0xd9,0x53,0xb5, +0xab,0xd2,0xde,0x7b,0xa0,0x8c,0x6f,0x86,0x95,0x97,0x83,0x9b, +0xab,0xb3,0x67,0x8e,0xb9,0x54,0xc6,0xb7,0xb4,0xa0,0x22,0xd9, +0x2e,0xce,0x26,0xda,0xd2,0x6a,0xa9,0xcc,0x70,0x9d,0x11,0xbd, +0x79,0xb3,0xb5,0xb9,0xb3,0xfa,0x16,0x77,0xd6,0xe9,0x8c,0xa3, +0xad,0x2a,0x6e,0xf9,0xef,0x65,0x7c,0xbb,0xc1,0x1f,0x96,0xfa, +0x83,0xaa,0x0d,0x28,0xab,0x17,0x36,0xe5,0x77,0xe4,0xf4,0x73, +0x72,0x1e,0x75,0xc8,0xc1,0xab,0x7b,0xaf,0xf9,0x35,0x3a,0xfa, +0xf3,0x59,0xb2,0x0c,0x83,0x54,0x6d,0x4e,0xbc,0x0d,0x4e,0x44, +0x06,0xa9,0xed,0x2c,0x36,0xe3,0x64,0x0a,0x32,0x1f,0x77,0xb0, +0x14,0x53,0xaa,0xff,0x77,0x29,0xc5,0x56,0xa4,0x71,0x78,0x19, +0xcc,0xc6,0x65,0xac,0xb2,0x7c,0xac,0xfc,0x3b,0x62,0xb4,0x1c, +0xb3,0xd1,0x81,0xc1,0xd6,0x30,0x9c,0xa2,0x8d,0x73,0xd5,0x9a, +0xdd,0xdb,0x61,0x4c,0x3a,0x8c,0xb9,0x00,0xe6,0x2a,0xc2,0x5d, +0x38,0x80,0x16,0x30,0x04,0x3c,0x9a,0xf0,0x3a,0x23,0x0e,0x72, +0xa3,0xb8,0xd3,0xa2,0xf2,0x9f,0x13,0x71,0xb5,0x6e,0x75,0x4e, +0x1c,0xc4,0x6a,0x11,0x6a,0x89,0x21,0xa0,0xca,0xb4,0xe3,0x10, +0x49,0x48,0x4d,0x15,0x87,0xb0,0xa2,0x09,0x8e,0xfb,0x3f,0x90, +0x27,0xd4,0xc1,0xd7,0x14,0x16,0xe0,0x04,0xf6,0x74,0xf9,0xb7, +0x95,0xb5,0xaa,0xf0,0x60,0x1c,0xfd,0x9f,0x2a,0x8c,0x65,0xe1, +0x3b,0x1c,0x4b,0x50,0x0d,0xc6,0x82,0x1a,0x23,0xf2,0xe2,0x18, +0x02,0x33,0x9b,0x70,0x26,0x30,0x32,0x7c,0xc0,0x78,0x1f,0xdb, +0x79,0x7c,0xd7,0xf1,0x28,0x33,0xfe,0x97,0x78,0x18,0x94,0xfe, +0x2a,0xfd,0x58,0x0b,0x6f,0x17,0x66,0x15,0x6e,0x19,0xc1,0x41, +0x45,0x20,0xf1,0x3e,0x14,0x75,0x59,0xfd,0x23,0x7b,0x35,0xfd, +0x76,0x41,0x5f,0x85,0x6f,0x35,0x6f,0xe3,0x65,0xe0,0x6d,0xb0, +0x8f,0x83,0x6f,0x64,0xd8,0xce,0xea,0x5e,0xdc,0xdf,0xaf,0x06, +0x5f,0x30,0x75,0x09,0x99,0xc5,0xea,0xef,0x59,0x0b,0xea,0x28, +0xbf,0x64,0x15,0x16,0xd0,0x4d,0xbc,0x71,0xa8,0xa3,0x84,0x24, +0x9b,0x5c,0xf9,0x01,0x7c,0x39,0x21,0xe7,0x0f,0x4e,0xf9,0xad, +0x94,0x00,0xd6,0x11,0x8c,0x33,0xec,0x71,0xa8,0x5a,0x8b,0x4b, +0xd1,0x0f,0xc9,0xef,0x22,0x61,0x9e,0x0a,0xe5,0xb9,0x89,0x1a, +0x12,0x5f,0xbc,0xf3,0x9f,0xfd,0xd5,0x10,0x56,0xfe,0x9b,0xd8, +0x49,0x5a,0xf0,0x15,0x9b,0x72,0x39,0xa9,0x20,0x3e,0x5f,0x4a, +0xcc,0x49,0xc2,0xd5,0x6f,0xc0,0xac,0x55,0x7c,0x6a,0x0e,0xba, +0xf3,0x71,0x31,0x26,0x81,0x0f,0x13,0xba,0x2b,0x68,0x67,0x80, +0x17,0x87,0xd6,0x16,0xb0,0x8a,0xd9,0xed,0xec,0xed,0xb4,0xd3, +0xf5,0xca,0xfe,0xae,0x80,0xf6,0x80,0x6d,0xee,0xcb,0xf7,0x4c, +0x09,0x4c,0x34,0xe7,0x61,0x6c,0xc6,0x6f,0x45,0x0f,0x9a,0x5f, +0x7a,0x3d,0xf6,0x7c,0xe4,0x9a,0xd3,0xcc,0x6b,0x15,0x69,0xe5, +0x6f,0xc8,0x69,0xaa,0x2b,0xee,0xc8,0xb8,0xce,0x89,0x57,0xe0, +0x26,0xa1,0xac,0xc1,0x18,0x94,0x19,0x61,0xcb,0xb8,0xf9,0x53, +0xdf,0xb0,0xe6,0x38,0x8d,0xe0,0xb2,0xa9,0xb0,0x8c,0x85,0x44, +0x5c,0x46,0xe8,0xc5,0x47,0xa6,0x95,0x5e,0xd0,0x2e,0x1d,0x42, +0xbb,0x54,0xe1,0x8e,0x63,0xc8,0x99,0xb6,0xd3,0xbd,0xb7,0x54, +0x41,0x19,0x8d,0x19,0x1a,0xcf,0x36,0x92,0x8c,0xdc,0x8b,0x45, +0x19,0xc5,0x1c,0x98,0x32,0xfe,0x46,0x1e,0xd6,0x56,0xdb,0xad, +0x53,0x6c,0x92,0x6d,0x12,0x07,0xaa,0x7c,0xed,0x23,0xc1,0xf9, +0xbb,0x9a,0x0e,0x64,0x5a,0xfb,0xf0,0xa9,0x7e,0xb9,0xb6,0x49, +0xde,0x1c,0xec,0x3e,0x41,0x32,0x0a,0x32,0x6a,0xe3,0x2f,0x9b, +0x65,0xf2,0x41,0x2e,0xfb,0x6c,0x7c,0x1d,0x28,0xde,0xc0,0x67, +0xc2,0x56,0x78,0xc6,0x08,0x73,0x14,0x96,0x64,0xf7,0xab,0xe3, +0x30,0xf7,0x14,0x00,0x87,0xee,0xcc,0x05,0x98,0xab,0x04,0x85, +0x1d,0xe2,0x66,0xd3,0x9f,0x98,0x70,0xcc,0x3c,0x88,0x67,0xf7, +0x60,0x80,0xff,0x31,0xff,0xe3,0xfb,0x8f,0xc7,0x99,0xf0,0xbf, +0xa7,0xc3,0xd7,0x85,0x77,0x72,0x0f,0x37,0xf1,0xd6,0x41,0xdb, +0x0e,0x68,0x07,0xa5,0xc0,0xca,0x04,0xd8,0x14,0x03,0x94,0x6b, +0x2d,0x61,0x30,0x2d,0x12,0x0d,0x0a,0xa7,0xa9,0xa5,0x1b,0x74, +0x9d,0x8f,0xec,0xcd,0x00,0x63,0xde,0x29,0x5d,0x49,0xb1,0x44, +0x60,0xe9,0x48,0xf8,0x91,0x0e,0x84,0xa6,0x05,0xe4,0x47,0x98, +0xb2,0x80,0x45,0x73,0x7b,0xa2,0x81,0x6a,0x3f,0xb3,0x60,0x32, +0x0e,0xa6,0x68,0xe0,0x14,0x46,0x08,0xc2,0x63,0x24,0xec,0x81, +0x37,0x0c,0xde,0x7b,0xcd,0xfe,0x00,0x9f,0xb9,0x2d,0x7b,0x4a, +0xf2,0x72,0x4e,0xfc,0x88,0x21,0xa4,0x1b,0x8a,0x8c,0x9a,0xa9, +0x6b,0x1e,0x2f,0xb9,0xe6,0x57,0x92,0x2f,0x2f,0xfa,0x01,0x8a, +0x18,0x2c,0xc2,0x6f,0x08,0x14,0xcd,0xc1,0x22,0x8a,0x34,0xb5, +0xe4,0x16,0xc4,0x80,0x72,0x6b,0xfa,0x57,0x97,0x1b,0xe6,0x5a, +0xf0,0xb0,0xbc,0x17,0x96,0x00,0x73,0x03,0x16,0x70,0xb0,0x82, +0xb1,0x43,0x7e,0x09,0x0e,0x42,0xfd,0x05,0x85,0x94,0xca,0x98, +0xff,0xf2,0x01,0xd8,0x2e,0xd0,0xe4,0x28,0xa8,0xc5,0x21,0x27, +0x74,0x29,0xa8,0xb7,0x88,0xd8,0x75,0x40,0x6f,0x02,0x8e,0x66, +0x52,0x4c,0xa5,0xba,0xb5,0xa0,0x54,0x56,0xf2,0x34,0x5e,0x3d, +0xf6,0xd6,0xd9,0x9b,0xb0,0x44,0x55,0x7c,0xc2,0x24,0xa6,0xc7, +0x67,0xc4,0x5d,0x34,0x4e,0xe2,0xed,0x96,0x6d,0xd4,0x42,0x7e, +0xdb,0x65,0x6b,0xfe,0x71,0xe5,0x95,0xda,0x86,0x16,0x0e,0x16, +0x89,0xba,0xa4,0xc7,0xe5,0x8a,0x75,0xab,0x65,0x45,0x35,0x6f, +0xd2,0x66,0x54,0x67,0x50,0xc1,0xd9,0x62,0x2f,0xb1,0x0f,0x8b, +0xae,0x54,0x87,0x23,0x7a,0x78,0x9c,0x5d,0x9d,0xb3,0xef,0x99, +0x1a,0xe4,0x53,0x06,0x98,0x4e,0x83,0x3b,0xcb,0x1a,0xa4,0x2b, +0xe1,0x34,0xb6,0x13,0x0e,0x92,0x1e,0xad,0x8e,0xe5,0x55,0x0b, +0x5a,0x0b,0x78,0xbb,0xf7,0xb2,0xef,0x0c,0xef,0x71,0xd4,0x9b, +0x56,0x91,0x9b,0x4f,0xab,0xdf,0x66,0xbf,0xa4,0xd4,0xc8,0x6f, +0x8d,0xc3,0x02,0xbd,0x4d,0x34,0x6c,0xfe,0x21,0xb7,0x26,0x27, +0x57,0x1e,0x5b,0x1d,0xb6,0x81,0x33,0x3f,0x1c,0x10,0xee,0x30, +0x61,0x09,0x93,0x68,0xae,0x74,0x9b,0x79,0x51,0x90,0xff,0x8c, +0x42,0xe7,0xd7,0xe7,0xef,0x4b,0xb9,0x60,0xa2,0x1a,0x93,0x94, +0x19,0x4f,0x49,0xac,0x2c,0x9a,0xdf,0xad,0x67,0xbc,0x75,0xb3, +0x4d,0x9e,0x0d,0x5f,0x9a,0x5d,0x5c,0x90,0x57,0xc4,0xc1,0x60, +0xc6,0x66,0xde,0x52,0x4d,0x1c,0x6e,0x94,0x6d,0xc7,0xc3,0xd7, +0xd7,0x7e,0xfe,0xbe,0x07,0x46,0x71,0x2f,0x18,0x17,0x1c,0xbf, +0x00,0x47,0xe2,0xaa,0x79,0xb9,0xf4,0xf6,0x92,0x1f,0x80,0x85, +0x71,0x8d,0xa0,0xc5,0x89,0xcd,0x8a,0xcc,0x7f,0xd3,0xca,0xb4, +0x85,0x3e,0x12,0xd1,0x16,0xd4,0x1f,0x54,0x6b,0x7b,0x80,0x4f, +0xb0,0x4f,0xd0,0x8b,0x92,0x71,0xb8,0x13,0x47,0x93,0xec,0x97, +0x09,0x52,0x36,0xd9,0x05,0xfe,0xd8,0xb4,0xb0,0xb9,0xbe,0x2b, +0x38,0xe1,0x9c,0x11,0x69,0xdf,0x79,0xd7,0xba,0xce,0xb1,0xb0, +0x86,0x37,0xaf,0xdd,0x5a,0x6b,0x46,0xa7,0xd0,0xae,0xc5,0xa4, +0x5a,0xab,0x01,0x07,0xe7,0xad,0x6c,0xc9,0xe4,0x77,0xbc,0xb2, +0xfb,0xe8,0x70,0x87,0x13,0x23,0xa9,0x7d,0x9a,0xbf,0x2b,0xf8, +0x14,0xff,0x83,0x2c,0x8a,0x0f,0x5b,0xee,0x39,0xdd,0x4e,0x97, +0x83,0xfe,0x43,0xc4,0xed,0xf0,0x05,0x0a,0x50,0x77,0x9a,0xe0, +0x5e,0x56,0x3b,0x6b,0xef,0x35,0xb5,0x81,0xa3,0xbb,0xd2,0x1e, +0x3b,0x61,0x2d,0x13,0x29,0x20,0xa2,0xce,0xad,0x4b,0x5e,0x4b, +0x14,0xa3,0x30,0x66,0x12,0xca,0x7a,0x60,0xa2,0x7c,0x17,0x4e, +0xec,0x01,0x19,0x0e,0x62,0x0c,0xc0,0x81,0x6c,0xc5,0x9f,0x50, +0x05,0xd7,0x82,0x83,0x54,0x0f,0xd3,0x81,0x7c,0x07,0xc5,0xab, +0x59,0xf1,0xb8,0x62,0x30,0x01,0x4d,0x21,0x70,0x1a,0x9a,0xb0, +0x89,0x66,0x4a,0xa0,0xc9,0xd4,0x4b,0xb9,0xa2,0xc2,0x32,0x51, +0x10,0xc3,0x58,0xa1,0x16,0x80,0x88,0x81,0x4f,0x84,0x40,0x46, +0x0c,0x44,0x55,0x22,0x04,0xae,0x14,0x03,0x19,0x65,0xf9,0x0a, +0xb9,0x1e,0x49,0xad,0x4e,0xa8,0x8f,0xab,0xd3,0x8b,0xe5,0xc3, +0x2c,0x83,0x2c,0x0f,0xda,0x73,0xb8,0x45,0x11,0xdb,0x77,0x03, +0x60,0x6b,0x9f,0x3c,0x96,0x11,0x6f,0xc2,0x64,0xe2,0x25,0x73, +0xb7,0x76,0x71,0xd8,0x5d,0xbf,0xb3,0xd6,0xad,0xc6,0xde,0x8b, +0xaf,0xb0,0x2e,0xb0,0xc9,0xb6,0x72,0x74,0xb2,0x75,0xb3,0xda, +0x91,0x6b,0xc6,0x37,0x16,0xd6,0x95,0x56,0x55,0xa4,0xdb,0x27, +0xda,0xc5,0x58,0x1b,0x2c,0xd6,0x36,0x58,0x64,0x9c,0x63,0xc6, +0xbf,0x6c,0xeb,0xed,0x69,0xbf,0xc7,0x9d,0x77,0x38,0x6b,0x6b, +0xad,0x8a,0xeb,0x4f,0xef,0xb4,0x5d,0x31,0x61,0x33,0x93,0xac, +0xa7,0x74,0x95,0xf9,0xd4,0xd1,0x07,0xbb,0x61,0xfe,0x6e,0xe0, +0x65,0x30,0x42,0xbd,0xb6,0xa9,0xaa,0xa3,0xf4,0x0a,0x07,0x43, +0xc5,0xa5,0x04,0xce,0x02,0xe0,0x59,0x16,0x01,0x5f,0x10,0xc8, +0xa1,0xd7,0x39,0x14,0xa9,0x3e,0x16,0x14,0x64,0xdb,0x77,0x1b, +0xee,0x18,0x34,0x3a,0xba,0xf0,0x7d,0xd6,0xb7,0x37,0x5c,0x5d, +0xc3,0xfd,0x28,0xee,0xa5,0x70,0x1e,0xc6,0xfe,0x00,0xca,0x31, +0xb0,0x4a,0xda,0x1c,0xc1,0x55,0xdf,0xe3,0x10,0x58,0x8f,0xdf, +0x54,0xb6,0xf2,0x68,0x0f,0x8b,0x56,0xc2,0x30,0xf0,0x53,0x85, +0x05,0x78,0xda,0x00,0xb6,0xce,0x67,0x71,0xef,0x52,0x8a,0xb8, +0x4d,0x70,0x86,0x1a,0xcc,0xa0,0x41,0x05,0xc9,0xa2,0x5e,0x50, +0x52,0x87,0x0a,0x74,0x35,0x84,0xa9,0xb4,0x1b,0xe6,0x38,0x9a, +0xe0,0x60,0x67,0xb5,0x8b,0x86,0xbf,0x54,0x74,0x74,0x9f,0xbd, +0x2f,0x69,0xba,0x46,0x3f,0xd5,0x82,0xc5,0x13,0x84,0x5d,0x4c, +0x4c,0x9f,0x92,0xf2,0x5f,0x83,0x12,0x08,0x4e,0x62,0x6c,0x83, +0x12,0x6a,0xa5,0x64,0xec,0x5f,0xbb,0xdf,0xde,0xba,0x7e,0xdb, +0xa9,0x8a,0x37,0xd6,0xd5,0x32,0x5a,0x66,0xc5,0xc1,0x7b,0x7d, +0xc5,0x59,0x76,0x79,0x81,0x17,0x1d,0xff,0xd3,0x99,0xda,0xb4, +0x34,0xfa,0x94,0x97,0x94,0xf3,0x26,0x06,0xc0,0x4e,0x02,0x4b, +0xba,0x29,0x34,0xeb,0xd6,0x53,0xa4,0x30,0x0e,0xe1,0x0e,0x11, +0xf6,0x11,0x9c,0x5c,0x43,0x5f,0xb1,0x8c,0x5d,0x18,0x1c,0x6d, +0x00,0x7a,0x79,0xb0,0xb1,0x14,0x16,0xd7,0xaa,0x1c,0xeb,0x34, +0x0f,0x31,0x0b,0x91,0x85,0xaa,0x28,0xc3,0x1f,0xf0,0x96,0x18, +0xa7,0x29,0xe1,0x6e,0x0d,0xd6,0x25,0xe2,0x02,0x9d,0x5e,0xf9, +0xec,0xc3,0xda,0x1f,0xfa,0x7b,0xba,0x5d,0xea,0x78,0x73,0xb3, +0x6d,0x96,0xda,0x8e,0x1c,0x5c,0x36,0x54,0x8c,0x66,0xb7,0xe4, +0xee,0x7b,0xa0,0xf6,0x8e,0x69,0x4a,0x4a,0xaa,0x55,0x6f,0x12, +0x8e,0x49,0x0b,0xfa,0x21,0x42,0x1a,0x9e,0x93,0x16,0xf4,0x8b, +0xe2,0x0a,0x39,0x88,0xec,0x10,0xef,0x98,0x42,0x3c,0x13,0xba, +0x33,0xd8,0x53,0x5a,0xd0,0x57,0xc2,0x79,0xe4,0x83,0xa0,0x34, +0xb0,0x4c,0x2f,0x2a,0xfd,0xc6,0xe2,0xc2,0x61,0x82,0xd2,0x64, +0x51,0x89,0xa1,0xcc,0xe2,0x1c,0xf9,0x50,0xf2,0xa0,0xaa,0xbf, +0xc5,0xb9,0x8a,0x37,0xb5,0x5d,0xeb,0xbc,0x60,0x17,0x27,0xcc, +0xbc,0x4b,0x6e,0x79,0xbf,0xb3,0xbc,0x66,0x5f,0xd0,0xcc,0x6f, +0xab,0x9e,0xdf,0xb0,0x39,0x8f,0x53,0xbe,0x2e,0x58,0x10,0x88, +0x81,0x11,0x30,0x06,0x86,0x95,0x0c,0x2c,0x03,0x96,0xe0,0x68, +0x1a,0x38,0x87,0x41,0x1a,0x8e,0xb8,0xdc,0xc3,0xe3,0x05,0xea, +0xcc,0x47,0xfd,0x6a,0x0a,0x5f,0x70,0xeb,0x18,0x13,0x0a,0x28, +0xd9,0xe9,0x78,0x0a,0x87,0x70,0x72,0x5d,0x57,0xd2,0x2d,0x3a, +0x18,0xb1,0xc2,0x69,0xb4,0x24,0x1b,0x91,0xd1,0xc2,0x41,0x9a, +0x93,0xba,0x3c,0xf9,0x17,0x30,0xf2,0x09,0x8c,0x7c,0x04,0x63, +0xb9,0x76,0x85,0x97,0x01,0xab,0xfc,0x64,0x2d,0xb9,0xda,0x27, +0x37,0xd3,0xbf,0x2a,0xff,0x5b,0xf1,0x80,0xb9,0xaa,0x38,0x4c, +0xe4,0xda,0x72,0x33,0x85,0x36,0x2b,0xfe,0x0f,0xa0,0x63,0xfc, +0x9b,0x9f,0xef,0x3e,0x4a,0x00,0x96,0x3b,0x8f,0x1f,0xba,0xe0, +0xc3,0x79,0xda,0xf5,0xec,0x0f,0x6b,0x40,0x75,0x76,0x51,0x03, +0x8f,0x23,0x9e,0xcc,0x7c,0xe3,0xfe,0x89,0x83,0xe3,0x9d,0x98, +0x08,0x53,0x8c,0x71,0x0a,0x7e,0x6b,0x02,0x07,0x19,0x2f,0x1c, +0xb4,0x78,0x11,0x8e,0x5e,0x2e,0x89,0xe7,0x08,0x47,0x09,0x70, +0x9d,0x28,0x19,0x10,0x2f,0xa3,0x12,0x25,0x60,0xe2,0x20,0xc6, +0x25,0xc8,0x29,0xc4,0x31,0x34,0xc5,0x84,0x07,0xa6,0xe4,0x6d, +0xf1,0xeb,0xea,0xf0,0x4e,0xde,0xed,0xa0,0x6b,0xe0,0xf6,0x20, +0x4e,0x70,0x95,0xaf,0x26,0x86,0x38,0x1d,0x03,0xc5,0x9e,0xce, +0x1b,0xa0,0x85,0xe9,0x3d,0x90,0x0e,0x9b,0xb6,0xf6,0x08,0x3d, +0x78,0x88,0x31,0xc4,0x5d,0x04,0xb5,0x60,0x39,0x65,0xa9,0x3d, +0xb8,0x9c,0xd0,0x8b,0xcd,0xb8,0x9c,0xc5,0x70,0x73,0x82,0x6b, +0xe9,0xfd,0xb5,0x2c,0x84,0x8c,0xa3,0xb7,0xd6,0xe2,0x66,0xea, +0xba,0x97,0xc8,0x9f,0x90,0x79,0x8e,0xf8,0x8d,0x2f,0xaa,0x05, +0x25,0x51,0xcf,0x3d,0x29,0x15,0xd4,0x0a,0xfe,0x6c,0xe2,0x4a, +0xc5,0x1a,0xf2,0x30,0xea,0xcf,0xe4,0xbb,0xc9,0x27,0xda,0x79, +0xdb,0x30,0xcb,0x70,0xcb,0x23,0x1c,0x18,0xbc,0x63,0xf3,0xf1, +0xab,0x5b,0x73,0x60,0xc6,0xc6,0xfc,0x7a,0xde,0x34,0xc7,0x2e, +0xd7,0xbd,0xa4,0x32,0xbb,0xaa,0xb8,0xa8,0xc8,0xbd,0x90,0xf7, +0xd9,0xe1,0xe0,0xbe,0x7d,0xcf,0xbe,0xfc,0x83,0x25,0xa1,0xb5, +0x1c,0x68,0x42,0xa3,0xf8,0xa5,0x18,0xc2,0x04,0x9e,0x0c,0x3c, +0x15,0x78,0x8a,0x13,0x86,0x0a,0x86,0xd4,0xbc,0x31,0x77,0x58, +0x7c,0xec,0x4c,0x12,0x83,0x93,0x0f,0xc4,0xfb,0xd7,0x5c,0xe2, +0x43,0xd3,0x82,0xd2,0x83,0x13,0xb8,0x66,0x0c,0x24,0xb1,0x81, +0xd1,0x81,0x51,0x81,0xcb,0xf5,0x71,0x98,0x19,0xaa,0x39,0x66, +0x58,0xf2,0x30,0xae,0x16,0x86,0x77,0x3c,0xee,0xe3,0xce,0x1f, +0x3c,0x73,0x20,0x40,0x55,0x77,0x4f,0x98,0xbe,0xda,0x16,0x86, +0x7a,0x91,0x76,0xe6,0x43,0x5d,0xe1,0x9b,0x1f,0x1c,0x5e,0x6b, +0x3e,0x56,0x6f,0xb9,0xd4,0x90,0x53,0x99,0xbf,0xab,0x90,0x9f, +0xb5,0x09,0xe7,0x9a,0xe2,0x62,0x8f,0x74,0x5b,0xfe,0x41,0xea, +0xc3,0x4b,0xb7,0xf2,0xe2,0x43,0xe2,0x42,0x63,0x43,0xd6,0xdb, +0xcd,0x72,0xc6,0x2f,0x76,0x4a,0x8b,0x68,0x5c,0xd1,0xa7,0xfa, +0xfb,0x4d,0x1c,0x4e,0x83,0xaf,0x48,0x48,0x66,0x60,0x66,0x60, +0x8a,0xcd,0x7e,0x3e,0xe5,0x60,0xaa,0x5f,0xfc,0x5e,0x4e,0xbe, +0x2a,0x8b,0x68,0x61,0xcc,0x3d,0x16,0x1a,0xc4,0x2c,0xd2,0x8e, +0x8a,0x87,0x46,0x6b,0xf1,0xbd,0x0c,0xde,0xcf,0x10,0x17,0x98, +0xfe,0x35,0xbe,0x43,0xd4,0xfa,0x95,0x55,0x16,0xc6,0xc8,0x67, +0x11,0x5c,0xc9,0xc4,0xf5,0xc5,0xf6,0x44,0xb5,0x19,0x9e,0xe7, +0x8f,0x58,0x1c,0xd2,0x0b,0xdd,0x46,0xc7,0x92,0xd1,0xef,0xcc, +0xbe,0xa9,0xbe,0x93,0x77,0xad,0x6e,0xf2,0x68,0x70,0x6f,0x70, +0x71,0x5e,0x6f,0xba,0x45,0x4b,0xa7,0xd4,0x8a,0x7f,0x70,0xa3, +0xfb,0x4e,0xcd,0xd3,0x4a,0xcf,0x0a,0xb7,0x2a,0xa7,0x92,0x06, +0xde,0xbe,0xd6,0xa1,0xdc,0xa9,0xa4,0x19,0x94,0x72,0x61,0x7c, +0x3c,0x2c,0xe5,0x84,0x48,0xdc,0x41,0x74,0x2b,0xb7,0xb7,0xfb, +0x3f,0xe6,0x60,0x53,0x13,0x1a,0x31,0x47,0x4b,0x4e,0x54,0x9c, +0xaa,0xbd,0x16,0x75,0x25,0xa6,0x3d,0xce,0xaf,0x91,0x47,0xe5, +0xbd,0x38,0x3f,0x10,0xf5,0x22,0x38,0xf1,0x6b,0x76,0xcf,0xd1, +0x3d,0xc7,0xfd,0x8e,0xc7,0xc9,0x78,0x18,0x92,0x0a,0xa3,0xf2, +0x5e,0xe6,0x47,0x34,0xf3,0xa6,0x07,0x75,0x03,0x75,0x82,0x39, +0x58,0x4d,0xdd,0xee,0xa5,0x19,0x8d,0x9b,0x9e,0x58,0x97,0xec, +0x2e,0x8c,0xbb,0x50,0x93,0x08,0x1c,0x6f,0x73,0x51,0x49,0x9c, +0x01,0x74,0x78,0x9f,0xeb,0x39,0xd7,0x1d,0x79,0xda,0xe9,0x9c, +0xeb,0x79,0x3a,0xd7,0x64,0x8c,0xa8,0x84,0x2d,0x24,0xeb,0xc9, +0xc5,0x37,0xe9,0x6f,0x38,0xe0,0x98,0x43,0x38,0x6e,0x2f,0xb2, +0xf6,0xd3,0x3c,0x72,0x3d,0xb3,0xbc,0x2e,0x71,0xc2,0x48,0x71, +0x0e,0x69,0x84,0xd7,0xd6,0x5d,0xc2,0x0c,0xd1,0x56,0x9c,0xc1, +0x0a,0x93,0x20,0x92,0xe0,0xeb,0x9f,0xe1,0x35,0x83,0xaf,0x71, +0x26,0x81,0xd7,0xd3,0xf0,0x35,0xa3,0x0c,0x11,0x52,0xba,0xb1, +0x21,0x8d,0x51,0xc2,0x4b,0x08,0x20,0x57,0x2a,0xae,0x76,0x56, +0xd4,0xbb,0x54,0xf3,0xae,0xb6,0x46,0xa6,0x06,0xdb,0x3d,0x3b, +0xfc,0x7b,0x83,0x6f,0x71,0x70,0x48,0x58,0x2c,0x9e,0x53,0x54, +0x31,0xde,0x47,0x7d,0x8e,0xf9,0x1d,0x8f,0xa7,0x43,0x79,0x58, +0x2a,0xac,0x2a,0x81,0x41,0x05,0x11,0x6d,0xfc,0xb6,0x80,0x45, +0xfb,0x57,0x04,0x4a,0xd2,0x56,0xd3,0xd9,0x52,0x34,0x7d,0x81, +0x53,0xc1,0x15,0xc7,0x16,0xb4,0xf0,0x4b,0x5b,0xf5,0xda,0x6d, +0x7b,0xb9,0xdb,0xc2,0x8f,0x04,0x47,0x88,0x63,0x29,0x23,0x5f, +0x83,0xd5,0x24,0xe4,0xe6,0xbe,0x47,0xfe,0xed,0xb6,0x07,0xf9, +0x74,0xd3,0xb4,0xb5,0x71,0x5b,0x38,0x0c,0x5c,0x48,0x2e,0xfd, +0x1b,0x05,0xff,0xcd,0x68,0x5e,0x01,0xdb,0x89,0x30,0x16,0xc7, +0x8b,0xd2,0x02,0xd8,0x1c,0xf9,0x33,0xb2,0xc0,0x11,0x55,0x7d, +0x71,0x42,0x50,0x12,0x1d,0x01,0xdf,0xa4,0x4a,0xd9,0x47,0x4d, +0x5c,0x8d,0x78,0x83,0x3c,0x88,0xff,0xe3,0xd2,0xed,0xcc,0x23, +0xcd,0xbc,0x43,0x88,0x4d,0x88,0x4d,0x38,0x07,0x0e,0xff,0x19, +0xdb,0x1b,0xe8,0xd8,0x96,0x65,0xdb,0xe7,0x7a,0x14,0x57,0x66, +0x57,0x16,0x17,0x16,0xba,0x95,0xf0,0x3e,0x3b,0x1d,0xdd,0x5d, +0xe9,0xd8,0x0e,0x1c,0x18,0xdb,0xab,0xa0,0x8d,0x8e,0xed,0x78, +0x46,0xaa,0xaa,0x7e,0xf0,0x24,0x27,0x70,0x82,0x2f,0xa5,0x85, +0x31,0xf7,0x59,0x3c,0xba,0x8a,0x84,0x5c,0x0c,0xba,0x18,0x94, +0x64,0xe7,0xc7,0x27,0x06,0xa6,0xec,0x8f,0xdb,0x2b,0x25,0x6e, +0xd6,0x91,0xe7,0xce,0xcf,0xd7,0xde,0x53,0x6b,0xca,0xac,0xcb, +0xae,0xc8,0xf3,0x2e,0xfb,0xcf,0x60,0xcd,0xb0,0x92,0x06,0x6b, +0x26,0x1d,0xac,0xa1,0x71,0x61,0x71,0xa1,0x1b,0xec,0x67,0xbb, +0x20,0xe3,0x9d,0x61,0xc6,0x03,0x5b,0xf4,0xb1,0xee,0x4e,0x4b, +0x5c,0x50,0xcc,0xc1,0xc8,0x83,0x4b,0xf5,0xf0,0x4b,0x19,0x4e, +0x77,0x90,0xea,0xb5,0x4c,0xa8,0x03,0xe5,0x8e,0x27,0x37,0xb8, +0xb3,0xc1,0x67,0x82,0x82,0x54,0xb7,0xec,0x09,0x1d,0x98,0x13, +0x96,0x03,0x73,0x22,0xef,0x0f,0x75,0x3c,0x0f,0xd9,0x24,0xf8, +0x52,0x50,0xe6,0x81,0x54,0x5b,0x5f,0x3e,0x35,0x20,0x65,0x6f, +0x82,0x3f,0x1d,0xdc,0xb9,0x64,0x2d,0xc6,0x3c,0x64,0x29,0x45, +0x36,0x27,0x2d,0x1e,0x1d,0x4e,0xf5,0x8e,0xe5,0x95,0xbc,0x55, +0x9d,0x45,0x85,0x59,0x21,0x67,0x82,0xa7,0x88,0xf3,0xa1,0xc8, +0x52,0x75,0x58,0x67,0x80,0xeb,0xd9,0xb5,0x59,0x01,0xdf,0xa9, +0x41,0x31,0x53,0x9f,0x98,0x56,0xa9,0xfe,0x8a,0x35,0xa2,0x0e, +0x9f,0x63,0xdb,0x41,0x93,0x74,0x19,0x77,0x6d,0xad,0xdc,0xd4, +0x50,0xcc,0xdb,0xdf,0x37,0xbd,0x6a,0xdc,0xc5,0x29,0x0c,0xf1, +0x28,0xb9,0x79,0xb5,0xf6,0x7e,0xce,0x0d,0xab,0x2c,0x7e,0x8f, +0xbe,0xdd,0x06,0x5d,0x53,0x8a,0x96,0x7e,0x12,0xa6,0x10,0x1c, +0x5e,0xb6,0xb2,0xdb,0xee,0x39,0x07,0x5d,0x6d,0xf8,0x94,0x39, +0x54,0x70,0xb8,0xf8,0x64,0xd9,0x2f,0x91,0x3f,0xc7,0xbe,0x4d, +0xf3,0x6e,0xe2,0xbd,0x50,0x1f,0x2d,0x23,0xb0,0x76,0x82,0x38, +0x8c,0xdd,0x79,0x6c,0xc7,0x31,0xcf,0xe3,0xb1,0xb4,0x5d,0x4b, +0xd2,0x61,0x7a,0x36,0x8c,0x2b,0x8a,0x68,0xe4,0x17,0xf9,0x2f, +0x0d,0x9c,0x1b,0xc4,0xc1,0x6c,0x78,0xc4,0x36,0xe1,0xd0,0xf7, +0x9a,0x30,0xd9,0xb1,0x3a,0x38,0x37,0xe1,0x42,0x59,0x0a,0xb0, +0xbc,0x05,0x45,0xb4,0x33,0xc1,0x8b,0x7c,0x38,0xfd,0xee,0xf4, +0x9b,0xf3,0x67,0xdc,0x23,0x3d,0xa3,0x77,0x70,0xd8,0xc9,0xc4, +0x2b,0x6c,0x49,0xab,0x50,0x61,0x7e,0x45,0x58,0xac,0x58,0x2a, +0x2e,0x66,0x85,0x3f,0x20,0x99,0x88,0x15,0xef,0x84,0x0a,0x46, +0xac,0x90,0x8e,0xc2,0x56,0xcc,0x10,0x2b,0xe8,0xb0,0x9d,0x2e, +0xaf,0x21,0xa2,0x8a,0xdc,0x4e,0x50,0x61,0x75,0x71,0x0d,0x11, +0x1f,0xc3,0x10,0xe1,0x31,0x23,0x3e,0xc6,0x55,0x44,0x78,0x8c, +0x43,0xc5,0xc7,0x8c,0x7c,0x81,0xe8,0x4e,0x30,0x80,0xf1,0x08, +0x8b,0x2c,0x96,0x00,0x23,0x70,0x97,0x60,0x78,0xc9,0x8f,0x8d, +0x5e,0x0d,0xfc,0x12,0x9b,0xb9,0xde,0x38,0x98,0xf6,0xe9,0x1c, +0x3d,0x7c,0xc9,0xea,0xe7,0xec,0xb9,0xa1,0x06,0x87,0x99,0xfa, +0x24,0xe9,0x4c,0xcd,0x70,0xd6,0x30,0x4d,0x49,0x31,0xbb,0x91, +0x50,0x6a,0x88,0xd1,0xc0,0xea,0xa1,0xc8,0x78,0x1e,0xf5,0x3c, +0xe6,0x29,0x29,0xbb,0xc0,0xe2,0x4c,0x98,0x9c,0x03,0x7c,0x71, +0x58,0x1b,0xbf,0x6e,0xff,0xa2,0x03,0xf3,0x83,0xa8,0xd7,0xbf, +0x29,0xb8,0x93,0x88,0x04,0x49,0xa6,0x27,0x34,0x94,0x3f,0x0a, +0xd4,0xe1,0x75,0xe0,0x38,0x30,0x32,0x46,0x23,0x5c,0x60,0x4a, +0x23,0x76,0x30,0x8e,0x72,0x46,0xb5,0xc9,0x03,0x89,0xa3,0xcf, +0x61,0x68,0xe1,0xe7,0x94,0xcb,0xcb,0x5d,0xc2,0x99,0x7f,0xf2, +0x46,0x5f,0xa3,0x46,0x59,0x85,0x92,0x30,0x06,0xb5,0xfe,0x9f, +0x95,0xe5,0xaa,0x19,0xdf,0xa3,0x7e,0xc7,0xf7,0x49,0xf3,0xef, +0x63,0x2a,0xcc,0x2c,0x7a,0x9f,0x4f,0x67,0x9f,0xd1,0x01,0xcd, +0x00,0x2d,0x1a,0x4a,0x46,0xfe,0x7f,0x14,0x96,0x83,0x55,0xf2, +0x7b,0x04,0x8d,0xf1,0x2b,0x0b,0x6a,0x9b,0x30,0x1c,0xe3,0x8e, +0x33,0x56,0xe3,0x57,0x65,0xb6,0x7c,0xdf,0xaf,0x99,0xbf,0x9f, +0x7f,0x4d,0xdf,0x30,0xb1,0x5d,0x38,0x27,0x25,0x85,0x9e,0x39, +0xa6,0xd6,0x8f,0x0b,0x8a,0x4b,0x0d,0x3e,0x97,0xb7,0x0d,0x8d, +0x50,0x09,0x3b,0xa4,0x74,0x0c,0x54,0xff,0x6c,0x99,0x0c,0x94, +0x47,0xa9,0xfc,0x3d,0x8d,0x74,0xf6,0x09,0xb6,0xfa,0xdd,0x7f, +0x0d,0x11,0x6f,0x32,0x9d,0x8a,0xd3,0x44,0x6e,0x2e,0xd8,0x2a, +0xcc,0x59,0x8c,0x13,0x96,0x11,0x71,0x68,0x9b,0x30,0x34,0x92, +0x8d,0x5c,0x52,0xbc,0xf2,0xdd,0xa4,0xf2,0x3a,0x7e,0xc1,0x1b, +0xf3,0x5f,0x0e,0x3c,0xe1,0x40,0xa3,0x85,0x82,0xcc,0xa9,0x66, +0x38,0x55,0x12,0x8a,0x9b,0xca,0x04,0xae,0xb2,0x98,0xba,0x70, +0x51,0xb9,0x1d,0xff,0xee,0xf7,0xc2,0x17,0xf4,0xe3,0x95,0xa1, +0x5f,0x6e,0x4f,0x64,0xd5,0xda,0xd5,0xda,0x97,0xbd,0xad,0xf8, +0x1b,0x9e,0xbd,0xdb,0xbb,0xfe,0x27,0x63,0xef,0x01,0x5d,0xb5, +0xd1,0xb5,0x0b,0xd3,0x2c,0x29,0x90,0x38,0x09,0xc9,0x80,0xec, +0x24,0x36,0x1d,0x4c,0xef,0xbd,0x1b,0x83,0x71,0x2f,0xe7,0xb8, +0xf7,0x5e,0x70,0xc5,0x60,0x6c,0x63,0x8c,0x0d,0xa6,0x85,0x62, +0x1b,0x70,0xef,0xbd,0xf7,0xde,0x7b,0xa5,0xf7,0x12,0x48,0x28, +0x21,0x84,0x84,0x24,0x04,0x92,0xad,0x93,0x2d,0xbf,0xdf,0x1d, +0xc1,0xfb,0x7e,0xf7,0x5b,0xf7,0xff,0xef,0x5a,0x77,0x79,0xd9, +0x9a,0x25,0x1f,0x49,0xa3,0xd1,0x9e,0xbd,0x9f,0xe7,0x68,0xcf, +0xb3,0xed,0xb9,0xab,0x30,0x8d,0x88,0x4a,0x42,0x93,0xa0,0xc4, +0xea,0xe3,0x52,0x22,0x6e,0xfa,0x53,0xd8,0xc4,0x88,0xbd,0x58, +0x49,0x4c,0x1a,0xb7,0xb6,0xec,0x28,0xf7,0xb6,0xe0,0x6f,0xb8, +0x5f,0xb1,0x1f,0xb6,0xe1,0x60,0x13,0xec,0x24,0xc2,0xa6,0x69, +0xe2,0x26,0x26,0x11,0xcb,0x08,0x68,0x75,0xa3,0x16,0x7c,0xa1, +0x2f,0x7e,0xcc,0x78,0x47,0x7b,0x1f,0xf7,0x3e,0x9e,0x60,0xc2, +0xc3,0x47,0xa9,0x30,0x31,0xf7,0x6d,0x09,0x75,0x1e,0x46,0x61, +0x7a,0x61,0xba,0x11,0x9c,0xe0,0x11,0x4c,0xf0,0x1b,0xc6,0x2d, +0x3a,0xa6,0x44,0x1d,0xd4,0xd8,0x07,0xd9,0xaf,0x6a,0xfb,0x2b, +0xbc,0x5b,0x78,0x4b,0xaf,0x8d,0x9e,0x9a,0xfb,0xa8,0xb9,0xe8, +0xe1,0xdf,0xec,0xce,0xe2,0xb0,0xcb,0x6a,0xa0,0xce,0x34,0xa7, +0x64,0x55,0xaa,0xd3,0x91,0x34,0xcd,0x52,0x1a,0x5d,0x4c,0xfb, +0xe5,0x84,0xe3,0x4c,0x91,0xdb,0x34,0xbf,0xcd,0x81,0x7f,0xf0, +0x76,0x04,0xf8,0xaa,0xbf,0x38,0xe5,0x7f,0xb4,0x15,0xfa,0x34, +0x0c,0xfd,0xfe,0x83,0xd6,0x6a,0x7c,0x89,0xb6,0xac,0xce,0x29, +0xd3,0xe3,0xe6,0x6a,0x76,0xae,0xe6,0xde,0x26,0x7e,0x99,0xfa, +0x7c,0x5b,0x61,0x4d,0x61,0x65,0x69,0x18,0x7e,0xe3,0xbe,0x70, +0xdb,0x9c,0x4e,0x5b,0xda,0x23,0x58,0x5b,0x08,0x3a,0x50,0xa9, +0x0a,0x5f,0xb3,0xeb,0xd1,0x9e,0x04,0x5d,0xf5,0x1f,0xd8,0xd3, +0x67,0xe3,0xcb,0x17,0xcb,0x0a,0xf4,0xb3,0x77,0x72,0x8a,0x31, +0xe2,0x44,0x32,0x58,0x32,0x52,0xdf,0xd5,0xe8,0xd2,0xc8,0x9b, +0x59,0xeb,0x38,0xec,0xde,0xe3,0x51,0x1d,0xd8,0x1c,0xd2,0xcb, +0x41,0x18,0xbc,0x16,0x2f,0x8a,0x02,0xe3,0x76,0xcc,0xf5,0xb8, +0xdb,0xf1,0x0b,0x86,0x3c,0xcc,0xa7,0x7e,0x32,0xfb,0x4d,0xc1, +0xd1,0x5e,0x7a,0x7f,0x5b,0x0f,0xae,0x3f,0xc4,0x51,0x64,0xb5, +0x82,0xed,0xc0,0x5d,0x30,0x79,0x16,0x58,0x68,0x16,0x74,0xf1, +0x4b,0xca,0x35,0xcb,0x65,0x0d,0x5c,0xb3,0x24,0xdd,0xae,0xf2, +0x93,0xa0,0xc2,0xe0,0x8c,0x09,0xf3,0x44,0x95,0xdf,0xa8,0x79, +0x3c,0x11,0xbe,0x25,0x49,0xbe,0x89,0xde,0x89,0x9e,0xf2,0xa3, +0xb2,0x63,0x26,0xc7,0x2f,0x7f,0x7f,0x5d,0x5a,0x49,0xc3,0x59, +0x14,0xf2,0x7b,0x74,0xdd,0xb4,0x5d,0xf4,0xf6,0xe5,0x05,0xe5, +0x06,0xe6,0xd6,0x8d,0x54,0xdc,0x28,0xbc,0x2a,0x2d,0x14,0xd1, +0xf1,0xd2,0xf6,0x90,0x85,0xa6,0x84,0x7e,0x58,0x28,0xd2,0x63, +0xd9,0x23,0x6b,0x37,0x0c,0x74,0x0d,0xf0,0xd8,0xbb,0xc7,0xed, +0xa4,0xdb,0x29,0xf7,0x53,0xb1,0x26,0xfc,0xe0,0x99,0xc1,0x73, +0x83,0x31,0x9c,0xb8,0xb2,0x5f,0x58,0xf7,0x7e,0x1d,0x50,0x65, +0x4c,0xec,0x81,0xd8,0x03,0x31,0x07,0xda,0xde,0x2f,0xdf,0xb9, +0xed,0xd7,0xcf,0x09,0x61,0x40,0x29,0xfb,0x52,0x43,0x5c,0x8a, +0xa9,0xb0,0xd4,0x00,0x97,0x6e,0x34,0x7a,0x30,0x2a,0x1f,0x1c, +0x86,0x54,0xbd,0x01,0x85,0xfc,0x79,0x3f,0x2b,0x2e,0x93,0xf2, +0x78,0x4e,0x43,0x2a,0x9e,0x66,0x31,0xd5,0x84,0xd0,0x46,0x31, +0xa6,0x32,0xe8,0x0f,0xee,0xa4,0x70,0x53,0xf6,0xf2,0xd4,0x95, +0x5d,0x99,0x7c,0xe8,0xe3,0x80,0xe7,0x3e,0xf7,0x38,0xac,0xc1, +0x36,0x52,0xf7,0x24,0xe7,0xb7,0xa4,0xd7,0x66,0x17,0xf9,0x43, +0xcb,0x83,0x56,0x38,0xae,0xa1,0xbe,0x4d,0xaa,0xba,0x7b,0xbf, +0xf6,0xfb,0x81,0xc1,0x6e,0xc7,0x06,0x5e,0x6e,0xb6,0x54,0x7b, +0x9d,0x83,0x71,0xa7,0xed,0x25,0x8f,0x47,0x9c,0xf0,0xb1,0xa0, +0x37,0xba,0x61,0xb4,0x88,0x71,0x8d,0x76,0x89,0x76,0x3e,0x26, +0xd5,0xa0,0x58,0x9c,0x01,0x0b,0x4b,0xe1,0xe3,0x9a,0xc8,0x7e, +0x5e,0x73,0xef,0xda,0xfd,0xcb,0x42,0x38,0xf8,0x11,0xb6,0xb2, +0xaf,0xf1,0x28,0x8d,0x08,0x93,0x20,0x5e,0x2f,0xab,0x8f,0xc7, +0x89,0x85,0x1a,0xd5,0x1b,0xfb,0x39,0x98,0x2c,0x84,0x11,0xb1, +0x09,0x54,0x84,0x26,0x06,0x8d,0x26,0xa0,0x3a,0x6d,0xab,0xb3, +0xca,0xff,0x4c,0x3f,0x45,0x50,0x99,0x71,0x3e,0x9c,0x40,0x91, +0x7b,0x17,0xec,0x14,0x54,0xf0,0x24,0x9b,0x58,0x12,0x5f,0x7c, +0xbe,0xd8,0xe4,0x3c,0x1f,0xe5,0x1d,0xe9,0x11,0xee,0xc1,0xe1, +0x16,0x51,0xe5,0x35,0x13,0x85,0xdb,0xb6,0xe1,0xa7,0xb8,0x74, +0x7d,0x09,0x8d,0xb1,0xc6,0x6f,0xaf,0xc1,0x82,0x38,0xd0,0xe6, +0x1e,0xe1,0x20,0xb3,0x29,0xdb,0xef,0x8e,0x24,0x1a,0x5a,0x9d, +0x96,0x51,0xa3,0x7e,0x8d,0x95,0x25,0x29,0x8d,0x7e,0x4f,0xd1, +0xa3,0x31,0x0c,0xf6,0xb1,0x90,0xa3,0x45,0x28,0xfa,0xd6,0x00, +0x25,0x16,0x1c,0x51,0x89,0x80,0x12,0xe5,0x26,0x4a,0xac,0xb8, +0x43,0x74,0x22,0xfb,0xee,0xdb,0x01,0xeb,0x71,0xdd,0x2a,0x94, +0xcf,0xb4,0xca,0xd5,0xcf,0x34,0x96,0x45,0x68,0x47,0xec,0x3e, +0x9c,0xf7,0x77,0x01,0xcc,0x89,0x7f,0xc2,0x81,0xd6,0x00,0xfe, +0x61,0x48,0x39,0x7c,0xc4,0x62,0x5f,0x5c,0xec,0x37,0xfb,0xc0, +0xc9,0x90,0x13,0xa1,0x27,0xcf,0x9b,0xf0,0xaf,0x13,0x61,0x72, +0xf6,0x8f,0x59,0x31,0xa1,0x31,0x61,0xe7,0x28,0x30,0xc9,0x97, +0x44,0x2a,0x3e,0xa5,0x57,0xf8,0x54,0xba,0xc2,0xa7,0x04,0x3e, +0xa5,0x57,0xf8,0x94,0xb5,0xdb,0x4e,0x8e,0x18,0x86,0xef,0x0a, +0x95,0x05,0x9e,0xe0,0xe3,0x2c,0x5b,0xe3,0x7a,0xe2,0x9b,0x13, +0x55,0xe2,0x3d,0x6a,0x33,0x0e,0x35,0x07,0xdc,0x0a,0xa9,0x55, +0x71,0x09,0xbd,0xb0,0x3f,0xde,0x33,0xde,0x4b,0x65,0xdf,0xb1, +0xbd,0xc7,0xf7,0x9e,0x48,0xee,0x8c,0xef,0xbf,0xd0,0xc5,0x29, +0x77,0xc3,0x65,0x02,0x5b,0x53,0x60,0x4b,0x01,0xa8,0x15,0x1f, +0xef,0xe2,0xcd,0x0e,0x1b,0x47,0x1a,0x46,0x71,0x20,0x87,0x55, +0x7d,0xb8,0x0a,0xd6,0x1a,0x88,0x1b,0x59,0x8f,0x63,0xee,0xc7, +0xdc,0x8f,0x73,0xf0,0xbb,0x01,0x9d,0x73,0xbe,0x27,0x7c,0x4f, +0xf8,0x9c,0xe4,0x14,0x37,0xdd,0x48,0x63,0x7a,0x72,0xb5,0xa4, +0x99,0x60,0x90,0xaa,0x84,0x04,0xb5,0x59,0x87,0x88,0xf3,0x94, +0xee,0x4e,0x61,0x7f,0x2f,0x7c,0xd3,0x70,0xad,0xc5,0xbf,0x93, +0xdf,0x65,0xb3,0xc6,0x65,0x89,0x1f,0x07,0x16,0xfa,0xe2,0x5c, +0x76,0x77,0xd6,0xfe,0xbb,0x6a,0xa0,0x89,0x0b,0xc8,0xc0,0xa8, +0xb9,0x21,0x3b,0x1f,0x0f,0x90,0x7f,0xf8,0xc1,0x7f,0xf1,0x34, +0x82,0xe4,0x29,0x7e,0x20,0xe6,0x68,0xb9,0x0d,0xbf,0xc2,0x49, +0xef,0x75,0x44,0x4b,0x0a,0x4b,0xca,0x8b,0x6a,0x38,0x31,0x75, +0x44,0x31,0x86,0x6d,0x78,0x50,0xf5,0x73,0xde,0x5f,0x1c,0xbc, +0x11,0x0f,0x11,0x08,0xee,0x13,0xe7,0x30,0x25,0x57,0xf2,0x6f, +0x64,0xde,0xe2,0x40,0xec,0xc7,0x5f,0x98,0xa4,0x9e,0x84,0xde, +0x8b,0xbd,0x06,0x17,0xf9,0x48,0x83,0x43,0x86,0x61,0x46,0x1c, +0x06,0x19,0x81,0x33,0x23,0xc3,0x1d,0x6b,0x70,0x15,0xf5,0xb0, +0x9f,0xd7,0x58,0xf2,0x77,0x6e,0x0e,0x3c,0x6a,0x7d,0xce,0xc1, +0x0c,0xbc,0x84,0x8d,0x46,0x8a,0x8f,0xfa,0x31,0x5f,0x12,0x8c, +0xba,0x40,0x70,0x75,0x07,0x4e,0x1d,0x9c,0xfe,0x00,0xe6,0xc1, +0xd4,0x9f,0x61,0x63,0x07,0xf8,0x71,0x9d,0xa3,0x29,0xfa,0x0a, +0x33,0xd6,0x12,0xad,0x97,0xe3,0x02,0xfc,0x06,0x27,0xe2,0x27, +0x6f,0xd7,0x80,0x8a,0x01,0x68,0x1a,0x06,0xf1,0x97,0x51,0xe7, +0x09,0xaa,0x81,0x32,0x8e,0x9b,0xbe,0x11,0x79,0x3d,0x5c,0x69, +0x51,0x20,0x89,0xa5,0xf6,0xc0,0xb4,0xeb,0xa0,0xf4,0x14,0xc6, +0xaf,0x04,0x35,0x6d,0xd8,0x61,0xcc,0x61,0x87,0x90,0x4d,0x64, +0x5d,0x0b,0x6e,0x69,0x35,0xb8,0xda,0xf0,0x57,0x9c,0x7e,0xde, +0xd6,0x4b,0x23,0xb9,0xf0,0x0d,0xe5,0x7b,0xa0,0x7a,0x69,0xf8, +0xbb,0xf3,0x30,0xbe,0xe4,0x6c,0xc9,0x99,0x92,0xb3,0x1c,0x7e, +0xce,0xea,0x64,0x06,0x0d,0xab,0xd1,0xe7,0x5e,0x9b,0x9c,0x56, +0xab,0x7e,0x9b,0x35,0x4f,0x53,0xd2,0x98,0xc5,0xfa,0x44,0x9d, +0xa7,0x8e,0xef,0x73,0xb6,0xe6,0x5c,0x55,0x4c,0xd9,0xb9,0xc4, +0xb0,0x84,0xd0,0x84,0xb0,0xc6,0x32,0xde,0xec,0xc6,0xae,0xfb, +0x7a,0x3d,0x0e,0xde,0x7c,0xb9,0x77,0xa5,0x4b,0xb9,0xd3,0xaa, +0xc3,0xa8,0x74,0x64,0xd6,0xf1,0xea,0xfe,0xb2,0x91,0xfc,0x01, +0x69,0xc1,0xf1,0x6e,0xe7,0x1d,0x36,0xda,0x9c,0x5f,0xc0,0xa9, +0xbd,0x5f,0xc5,0x98,0x36,0x9e,0xee,0x39,0xdb,0x7f,0x4e,0x25, +0x6a,0x85,0x85,0x3e,0x4e,0x34,0xe7,0xb0,0x52,0xf8,0x84,0x8c, +0x46,0xf7,0xbf,0x03,0x73,0xc5,0xd7,0x2c,0x9a,0x9b,0x12,0x50, +0x13,0x4b,0x51,0x8d,0x51,0x5c,0xa7,0xfe,0x6d,0x41,0xf1,0x86, +0x0a,0xed,0xba,0x9b,0x5d,0xed,0xc3,0x55,0x37,0xb9,0x7a,0xac, +0x61,0x33,0xf2,0x52,0x0b,0x92,0x8a,0xe8,0x49,0xed,0x96,0x6f, +0x5b,0x8f,0xac,0x4e,0x89,0x2d,0x5f,0x9d,0x55,0x9e,0x53,0x92, +0x5f,0x61,0x5f,0xeb,0xd4,0xe2,0xba,0xd5,0x61,0xbe,0x2b,0x7e, +0xbe,0x27,0x93,0x12,0x1c,0xb5,0xd2,0xbf,0xeb,0x1e,0x77,0xdc, +0xb6,0x7a,0xe6,0xf0,0x97,0x07,0x27,0xce,0x85,0x07,0x24,0x39, +0x59,0x89,0x92,0x51,0x2f,0x73,0x3b,0x6b,0x3d,0x7b,0xf3,0x6a, +0x87,0x7a,0x97,0x66,0x4e,0x4a,0x82,0x50,0x25,0x18,0x05,0x2c, +0xd8,0x77,0xa0,0x3d,0x8c,0x83,0x03,0x1d,0xf8,0x35,0x93,0x51, +0x9a,0x59,0x13,0x5f,0x24,0x4f,0xe7,0x23,0xbc,0x02,0x2d,0xf6, +0xbb,0x72,0x38,0x62,0x0e,0x7e,0x38,0x0e,0x6d,0xcd,0xc1,0x16, +0x59,0x0c,0x90,0xc3,0xc7,0xcc,0x5e,0xa4,0x3c,0x47,0x05,0x99, +0xa5,0x55,0x96,0xfc,0xa3,0x2b,0x03,0xcf,0x6a,0x9e,0x71,0xf0, +0x0d,0x25,0x5b,0x9e,0x32,0xc1,0xb9,0x1b,0x8d,0x69,0x7c,0xd9, +0xd2,0x89,0x7f,0x30,0x89,0x95,0x17,0x2a,0x62,0x28,0x17,0x7e, +0xc5,0xe0,0x6d,0x61,0x31,0x09,0x2b,0xdb,0x5f,0x11,0x92,0x6b, +0x1e,0xc8,0x67,0xfa,0xa4,0x7b,0x27,0xed,0xe1,0xf0,0xf4,0x21, +0x22,0xfe,0xbc,0x55,0xe1,0x6a,0x3c,0xea,0xba,0x4d,0xf8,0xd9, +0x74,0xd4,0xa7,0xff,0x16,0x24,0x2a,0x66,0x49,0xba,0x21,0x0a, +0x1d,0x22,0x9e,0x60,0xce,0xd7,0xc5,0x34,0xc4,0x34,0xea,0xc4, +0xf0,0xc7,0x6c,0xa2,0xed,0x8e,0xd8,0x73,0x38,0xac,0x0f,0x6d, +0x8c,0x05,0x1e,0x98,0x8d,0x3a,0xb8,0x1a,0x67,0x35,0x9b,0xf3, +0x7f,0xfd,0xfe,0x1d,0x8c,0x1b,0xa0,0x14,0x16,0x3c,0xf1,0x19, +0xde,0x33,0x54,0x58,0x0c,0xe0,0x0d,0x78,0x06,0xb5,0x03,0x62, +0x15,0x93,0x7b,0x29,0xf3,0x5a,0xca,0x6d,0x4e,0xb8,0x20,0xe5, +0x95,0x09,0x27,0x08,0x08,0x5d,0x28,0xbc,0x15,0x66,0x76,0xe1, +0x49,0xa6,0xb0,0x3c,0xbb,0x3a,0xa5,0xcc,0x38,0x93,0x3f,0xe0, +0x1c,0x68,0xe7,0x41,0xcf,0x5d,0xc9,0xb4,0x65,0x05,0x56,0x7b, +0x37,0xee,0xcf,0x56,0x31,0x0b,0x28,0x76,0xcb,0xf6,0xcc,0xf4, +0x56,0xc1,0xa3,0x72,0xe1,0x8b,0x99,0xf8,0x52,0x0e,0x2f,0x71, +0xac,0xa4,0xfb,0x1a,0xcc,0xec,0x41,0xb5,0x9d,0x94,0x5b,0xab, +0xcf,0xaf,0xb7,0xa1,0x4c,0xf2,0xcf,0xc7,0x30,0xb5,0x02,0xd6, +0x72,0xc2,0xab,0x2e,0x71,0x1d,0x23,0x8c,0x45,0x67,0xd2,0x23, +0xf6,0x9a,0xc2,0x5e,0xdc,0x80,0xf7,0x4d,0x15,0x76,0x3d,0xf8, +0x00,0x36,0xb0,0xca,0x77,0xa5,0x5a,0x60,0xd1,0xaf,0xfe,0xec, +0x2a,0x7d,0xcb,0xc5,0xa1,0xfe,0x10,0xe8,0xc7,0x31,0x65,0x33, +0x80,0x35,0x83,0xb3,0x0b,0x72,0xa9,0x8f,0xf4,0xba,0x43,0xad, +0xde,0xe8,0x09,0x27,0xa8,0xf4,0x88,0x2b,0xff,0xd0,0x9f,0x23, +0xce,0x30,0x15,0x58,0xc6,0x64,0x15,0x7e,0xaa,0x8f,0x0e,0xdb, +0x39,0x58,0x13,0x4e,0x44,0x2d,0x5c,0x62,0xfc,0xcf,0xa4,0x3e, +0x5c,0x2a,0x68,0xb1,0x06,0x32,0xb2,0x5c,0xb4,0x7a,0xce,0x0a, +0x56,0x38,0xf3,0xbf,0x5b,0x91,0x44,0xb4,0xfa,0x59,0xb0,0xa2, +0xf7,0x7a,0x0f,0xfc,0x48,0x63,0x56,0x56,0xa3,0xba,0xd0,0xa4, +0x23,0xb6,0xe3,0x0c,0x36,0x4d,0x5f,0x09,0xe7,0x08,0x07,0x89, +0xbc,0x69,0x77,0x93,0x4e,0x99,0x97,0x15,0x7f,0xd9,0x6d,0xc0, +0xb1,0xd7,0x86,0x53,0x6c,0xc7,0x18,0xe2,0xf6,0x97,0x01,0x7c, +0xa6,0xf5,0x9b,0x89,0x0f,0x7f,0x65,0xfe,0x00,0x7e,0x5a,0x83, +0x63,0x39,0xf1,0x9a,0x9c,0x7c,0xff,0x77,0x33,0xcc,0xcd,0x84, +0xaf,0x75,0x13,0xf8,0x60,0xe4,0x9d,0xf1,0xf3,0xb5,0x33,0xb8, +0x03,0x6f,0x88,0x45,0xa3,0x56,0x9b,0x6e,0x85,0xa7,0x15,0x3f, +0xec,0x36,0x6c,0xdb,0x63,0xc3,0x3d,0x14,0xc3,0x08,0x54,0x5d, +0x02,0x13,0xf8,0x82,0xba,0x56,0x13,0x59,0x29,0x3f,0x0f,0xb7, +0xe2,0x2e,0xfc,0x18,0x8b,0xe9,0xd4,0xdf,0x65,0x44,0x6e,0xff, +0xdd,0x03,0x2a,0xa5,0xef,0x4c,0xb3,0x79,0x77,0x69,0xa5,0xef, +0x47,0x3b,0xe6,0x51,0xd3,0x33,0x90,0x4c,0xaf,0x1c,0x18,0x38, +0xd1,0x89,0x27,0x60,0x2c,0xe4,0x76,0xe2,0x6a,0x26,0xb3,0x34, +0xb3,0x36,0xa1,0x50,0x96,0xc1,0x47,0x78,0xfa,0x5b,0xec,0x73, +0xe5,0xc4,0x71,0x66,0x70,0x11,0xc7,0xe2,0x11,0x33,0x38,0x82, +0x0c,0x9e,0x97,0x81,0x2a,0xe3,0x8f,0x53,0xd6,0x51,0xd3,0xfb, +0x62,0x19,0x35,0xbd,0x1f,0xaf,0x5c,0x7d,0xd6,0x40,0xbd,0xc8, +0x7a,0x6a,0x7a,0x27,0x4c,0x85,0xd2,0x1e,0x0c,0xa5,0xa6,0xe7, +0xde,0x25,0xae,0x60,0x92,0x2a,0x2e,0x56,0xc4,0x94,0x72,0xc2, +0x02,0x46,0x54,0x16,0x96,0x92,0x90,0xf2,0x7d,0xe5,0xc1,0x39, +0xe6,0x01,0x7c,0x96,0x4f,0xc6,0x9e,0x64,0x1f,0x0e,0xb7,0x89, +0xf1,0x1f,0x94,0x9a,0x24,0xff,0xfd,0x6b,0xef,0x7c,0x38,0x02, +0x6c,0x2f,0xb6,0x49,0xe5,0xc9,0x8f,0xe0,0x04,0x13,0x98,0x80, +0xad,0xac,0xd3,0x21,0xc7,0x43,0xf6,0xef,0xab,0x94,0x8f,0x2f, +0xfa,0xad,0xea,0xa9,0x54,0x18,0x85,0xa7,0x03,0xdb,0x90,0x9d, +0xd5,0xa0,0x2e,0x34,0xeb,0x8b,0x1d,0x38,0x49,0x4a,0xbc,0x41, +0x46,0xc8,0x20,0x7d,0x22,0x67,0x0c,0x2a,0x6c,0x10,0xae,0xb0, +0xc4,0xaf,0x57,0xe2,0xb8,0x62,0x5d,0x3e,0xa7,0x28,0xbd,0x38, +0xad,0xec,0xc3,0xda,0x73,0x99,0xb0,0x17,0x0d,0xd8,0x7f,0xaf, +0x54,0x17,0xb2,0x7d,0x49,0xe7,0xbc,0x66,0x9c,0x5c,0x88,0xe3, +0x7b,0x0a,0x78,0xbf,0xbf,0x6d,0x60,0xb2,0xec,0x77,0x0e,0xef, +0x44,0x91,0x83,0x52,0xc9,0xcc,0xcf,0x75,0xe7,0x74,0x7a,0xf0, +0x97,0xfe,0xac,0x84,0x19,0xc9,0xc0,0x73,0x22,0x3f,0xaa,0x4a, +0x84,0x71,0xa0,0x2a,0x8e,0x93,0x34,0xd4,0x67,0x12,0x38,0x74, +0x13,0x16,0xc1,0x17,0xdf,0x83,0x91,0x3c,0x9f,0xdf,0x8c,0xdb, +0x50,0x5d,0xca,0x35,0xd7,0xe6,0xa4,0x64,0xf3,0x9d,0x44,0x9c, +0xc8,0xa4,0xd6,0xa7,0x34,0x25,0xb5,0x18,0xa6,0xf0,0x76,0xb8, +0xcc,0x00,0x27,0xea,0xae,0xe1,0xaa,0xb1,0xdf,0x14,0xfa,0x93, +0xd9,0x46,0xeb,0xea,0xae,0xea,0x4b,0xe5,0xf7,0x54,0xea,0x47, +0xe5,0x23,0x10,0x0b,0x19,0xfd,0x98,0x41,0x87,0x2c,0xa3,0x8f, +0x6e,0xd6,0x43,0x23,0x33,0xfa,0x0f,0x48,0x2b,0x3e,0x6e,0xf4, +0xb0,0xa8,0x90,0x5e,0x06,0x09,0x5f,0xf7,0x4a,0xb5,0xee,0x0b, +0x89,0x8c,0xf2,0x1c,0x16,0xcf,0x8a,0x8e,0xa4,0x0b,0x62,0x20, +0x1b,0x87,0xf0,0x1e,0x4b,0x1b,0x59,0x52,0xe5,0x08,0x73,0x58, +0xce,0x2a,0x0b,0x5e,0x30,0x86,0x08,0xe6,0x42,0x34,0xda,0x41, +0x98,0x11,0x86,0xa1,0x09,0x83,0x7e,0x60,0x42,0x12,0x57,0xf5, +0xee,0x7a,0xb9,0xb5,0x98,0x12,0xde,0x6b,0x66,0x52,0x6d,0x2b, +0x4d,0x26,0x68,0xab,0xd5,0xc6,0x19,0x52,0xfd,0xab,0x37,0x37, +0x07,0x9f,0xa4,0xfc,0xc8,0x29,0xa6,0xa7,0x92,0x00,0x33,0x37, +0x33,0x47,0x87,0x7a,0x4f,0xbe,0xb1,0xb9,0xb2,0x27,0xbf,0x83, +0xc3,0xbf,0xf0,0x0b,0x12,0xd4,0xe4,0xd2,0xef,0xda,0x68,0xef, +0xcd,0x57,0xdb,0x94,0xcb,0xf3,0x6c,0x38,0xfc,0x42,0xcc,0x22, +0x52,0xa9,0x38,0xf3,0xc3,0x1c,0x34,0xc1,0xac,0x6e,0x9c,0x05, +0x1f,0xfd,0xd6,0x8d,0xe7,0x64,0x3f,0xe3,0x47,0xb8,0x52,0x06, +0x2b,0xb1,0x97,0x35,0x89,0x34,0x3e,0x62,0x7a,0x54,0xa2,0x23, +0x53,0xd3,0x60,0x7a,0xe1,0xaf,0x85,0xdc,0x3b,0x61,0x19,0xf9, +0x19,0x9e,0x2d,0x62,0x2d,0x26,0x2c,0xc4,0x67,0xaf,0x58,0xdc, +0x8e,0x39,0x24,0xad,0x3b,0xb1,0xef,0x62,0x97,0x75,0x22,0x1f, +0x65,0x78,0x48,0x2e,0x55,0xca,0x3a,0x0e,0x33,0xa4,0x4a,0x59, +0x1b,0x13,0x8d,0xdb,0xa5,0x4a,0x59,0xfe,0x8f,0x03,0xbb,0x38, +0x61,0x99,0x9c,0xc0,0xb3,0xd9,0xf8,0x8c,0x01,0x37,0xfc,0x88, +0x5c,0xf7,0xbc,0x6e,0xd7,0xeb,0x50,0xde,0xcc,0x1b,0xd5,0xef, +0xa0,0xc8,0x9b,0xa3,0x43,0xb4,0x96,0xdc,0x2f,0xbc,0x53,0x3f, +0xd0,0xe6,0x56,0xcb,0x9b,0xd8,0xee,0x72,0xdb,0xe4,0x4f,0x63, +0xca,0x0b,0xa1,0x89,0xb4,0x66,0x66,0xb6,0xaa,0x83,0x9f,0x01, +0x46,0xe2,0x67,0x6c,0x92,0xb9,0x12,0xea,0x80,0x0b,0xb1,0xc8, +0xd7,0xcf,0x37,0xcd,0xf0,0xb7,0xe5,0x07,0x83,0xfa,0x03,0x5a, +0x03,0x38,0xc5,0x4a,0x54,0x25,0x26,0xaf,0xcc,0xaf,0x1a,0x5f, +0xb2,0xf5,0xe5,0x07,0x76,0xb4,0xee,0xea,0x5a,0xc6,0x89,0xbb, +0xe1,0x22,0x71,0xdd,0x2c,0xdf,0xa6,0x2b,0xab,0x77,0xe5,0x6f, +0x0e,0x77,0x3d,0xaa,0xba,0x2b,0x95,0x27,0x5b,0x44,0xac,0xf2, +0x74,0xf2,0x0d,0x33,0xfd,0xad,0xf9,0xc1,0xfd,0xfd,0x81,0x3d, +0x7e,0xdc,0x5f,0x68,0x49,0xc0,0x22,0x13,0xb4,0xdb,0x61,0xca, +0x2b,0x0a,0xc4,0xf1,0xcb,0xc5,0x52,0xce,0xbc,0xd5,0x01,0x0e, +0x8f,0x6c,0x27,0x8f,0xcb,0x5f,0x74,0xf6,0x37,0xfb,0x37,0xf3, +0x5a,0x16,0x9b,0xec,0xd6,0x7a,0x70,0x8a,0x32,0xca,0x6f,0x64, +0x76,0x7a,0x6e,0x5a,0xde,0x0e,0xd5,0x9e,0x0d,0x7e,0xed,0x9c, +0xf0,0x45,0x8f,0xb8,0xec,0xd6,0xee,0xed,0xe2,0x2a,0xc9,0xd7, +0xac,0xda,0x8d,0x93,0xe5,0xb8,0xde,0x35,0xcb,0x8c,0x7f,0x98, +0x7e,0x3b,0xe7,0x52,0x21,0x47,0x21,0x8c,0x73,0xb4,0xe3,0x71, +0xfb,0x63,0xf1,0xa6,0x3c,0x6c,0xa7,0x9c,0x2a,0x17,0x3e,0x2b, +0xa2,0x7c,0x60,0x43,0xe8,0xca,0xb0,0x05,0xe1,0x1c,0xcc,0x64, +0x87,0x4a,0x3b,0x2b,0xeb,0x6a,0xaf,0xe1,0x02,0xe0,0x71,0x3c, +0x1c,0xd0,0xca,0x6b,0xe7,0xe7,0x14,0x6f,0xac,0xd0,0x6b,0xb8, +0x5a,0x3c,0x50,0xd1,0xdb,0x48,0x0d,0x72,0x0a,0xd8,0x92,0x01, +0x91,0x13,0xae,0xeb,0x88,0xd7,0x11,0x0d,0x01,0x51,0x57,0x5c, +0x61,0xf8,0xcf,0xb4,0x01,0x71,0x2b,0xe8,0xb2,0xd8,0x0a,0xbd, +0x24,0x36,0x21,0xf6,0xdb,0xb8,0x28,0x98,0x85,0x1b,0xf8,0xc6, +0x26,0x54,0x87,0x15,0xe1,0xc9,0x87,0x4f,0x1c,0x3e,0xac,0x72, +0xf8,0xf0,0xb1,0x73,0x4a,0x69,0x8d,0xb1,0x8d,0x7d,0xaa,0x0f, +0xf5,0x36,0xb0,0x38,0xc9,0x66,0x09,0x72,0xcb,0xd5,0x6a,0xad, +0x46,0xda,0xdb,0x06,0x8a,0xba,0x55,0x84,0x6f,0x4f,0x91,0x98, +0x0b,0xe7,0x4e,0x9d,0x3f,0x42,0x9f,0xfb,0x1a,0xe9,0xd8,0xc5, +0xb0,0xf8,0x60,0x72,0xd4,0xc9,0x88,0x08,0x95,0xc8,0xc8,0x63, +0x67,0x95,0xd2,0x9a,0xcf,0x37,0x0e,0xaa,0x3e,0xd4,0x95,0x8e, +0xb5,0x5c,0x82,0xe3,0x57,0xd0,0x63,0x07,0x5b,0xda,0xfa,0x8a, +0xfa,0x54,0x94,0xff,0xd9,0xa5,0x30,0xa4,0x8e,0xfa,0xe3,0xa7, +0x3b,0x56,0x8a,0x93,0xd0,0x8a,0xc5,0xd2,0x60,0x5c,0xa1,0x8d, +0x93,0xd5,0xba,0xe5,0x4a,0x37,0x61,0x76,0x0e,0xec,0x86,0x16, +0x55,0x98,0xc6,0x0a,0x1a,0xd4,0x4f,0xc0,0xf5,0x1e,0xbc,0x2e, +0x2c,0x32,0x14,0x17,0x7d,0xd0,0x2d,0x5c,0x86,0xef,0x4c,0x15, +0xf1,0x3d,0xf8,0x0f,0x83,0x29,0xc2,0x73,0xe2,0xc7,0x4e,0xf3, +0xd6,0x5b,0xb0,0x5d,0xad,0xdc,0xb2,0xa7,0xa1,0xb2,0x21,0xb7, +0x41,0xe5,0x6c,0x6c,0x0c,0x65,0xae,0x6f,0xf1,0x73,0xbe,0xb6, +0x4a,0x03,0x26,0x45,0x5d,0x8c,0x3c,0x73,0x28,0x52,0x25,0x22, +0xf2,0xc4,0x19,0xa5,0x94,0xea,0xf3,0xf5,0xad,0xaa,0xc5,0x2c, +0xfc,0x35,0x85,0x1e,0xb6,0xc7,0x70,0xfe,0x36,0x7a,0x58,0x77, +0x7d,0x45,0x55,0x7e,0x2b,0x3d,0xec,0xec,0xa9,0x73,0xc7,0xe1, +0x53,0x9c,0xca,0xd7,0xd4,0xa0,0xa4,0x82,0x74,0x31,0xea,0xff, +0x73,0xa0,0xf2,0x3f,0x4b,0xc0,0x82,0xf4,0x62,0xac,0xf0,0xc0, +0x50,0x7c,0x80,0xc7,0x4c,0x20,0x1a,0x77,0x62,0x8d,0xb1,0xe2, +0xe3,0x3e,0xac,0x80,0x9d,0x2c,0xde,0xa3,0x73,0xae,0xdc,0xa5, +0xb6,0xad,0xb0,0x3d,0xa5,0x53,0xe5,0x4c,0xec,0x99,0xd3,0xe7, +0x8e,0xde,0xc7,0x05,0x7c,0x73,0xe9,0x26,0x98,0x1f,0x1d,0x1f, +0x71,0x26,0xe2,0xa8,0x4a,0x64,0xf4,0xf1,0x33,0x4a,0xf1,0x0d, +0x31,0xed,0x97,0x54,0x7f,0x34,0x9e,0xcb,0xe2,0xc4,0xb0,0x2d, +0x9b,0x97,0xa8,0x1d,0xcf,0xf2,0x39,0xb8,0xe7,0xa0,0x77,0xb8, +0x0a,0xf8,0xc0,0xc4,0x5e,0x9c,0xf8,0x21,0xe9,0xf0,0x6b,0x13, +0xf8,0x1a,0x8f,0xb1,0x96,0x07,0x2c,0xc3,0xac,0xa5,0xa4,0xc3, +0xc6,0xc4,0xa6,0xe4,0xa6,0x34,0x89,0x3c,0x7c,0x26,0xc9,0xb7, +0xbd,0x91,0x92,0x0e,0x29,0x70,0x1f,0x62,0xcb,0x53,0xca,0x53, +0xca,0xd2,0x38,0xea,0x06,0xbe,0x22,0x67,0xe3,0xce,0xd2,0xcb, +0x3e,0xc6,0xe5,0x7c,0x4b,0xc9,0x7a,0x58,0x74,0x24,0x39,0xe2, +0xdc,0xc1,0xa8,0xff,0x5c,0x36,0xf6,0xfd,0x65,0xe7,0xb1,0xf8, +0x69,0xf0,0x86,0x25,0x0b,0xd4,0x6a,0xec,0x5b,0x3b,0x2a,0x7b, +0x53,0x5a,0x55,0x94,0x21,0x42,0xf1,0x82,0x38,0xa2,0x99,0x0e, +0xce,0x9a,0xfb,0x5e,0x17,0xbe,0xac,0xa2,0xbc,0xa5,0xb4,0x8f, +0x13,0x07,0xfa,0x15,0x9a,0x6c,0xfe,0x95,0xec,0x3b,0x29,0x94, +0x84,0x8c,0xc1,0x46,0x72,0x05,0x32,0x5a,0x30,0x63,0x18,0x9a, +0xda,0xb1,0xe9,0x9a,0xf1,0x4e,0x2c,0xb7,0x80,0x72,0x3d,0x8c, +0xb7,0x86,0x78,0x6d,0x6c,0xb3,0x54,0xcc,0x68,0x63,0x4d,0x66, +0x11,0xb1,0x44,0x9c,0x24,0x94,0x30,0x46,0x14,0xfc,0x18,0x89, +0x6b,0xfa,0x59,0x61,0xcd,0xb4,0xff,0x34,0xa6,0x13,0x7d,0x71, +0xcd,0x10,0x4b,0x99,0x7f,0x3c,0x79,0x9b,0xfe,0xba,0x7c,0xa0, +0xdc,0xb5,0x8e,0xb7,0xf2,0xd5,0xf0,0x9a,0x1d,0xca,0x09,0x0b, +0x4b,0xc8,0x93,0x7d,0x4f,0x7d,0xef,0x7b,0xe5,0xb7,0xf3,0x5b, +0x4a,0x17,0x14,0x6f,0x4a,0xa1,0x7c,0xfb,0xa0,0xe2,0x09,0xe5, +0xb0,0x72,0x5d,0x9c,0x39,0xf7,0xbd,0xf6,0x7a,0x41,0x51,0x41, +0x55,0x41,0x13,0x27,0xe6,0x0e,0x28,0x54,0xd8,0xd2,0x3b,0x05, +0x4f,0xd2,0x7f,0xe1,0x84,0x67,0x41,0x04,0xa7,0xe0,0x3e,0x58, +0x6d,0x4c,0xb1,0x89,0x3b,0x4c,0x31,0x46,0x3d,0xe1,0x2f,0xd0, +0x63,0xf1,0xf4,0x68,0x06,0x81,0x09,0x70,0xac,0x1d,0x8f,0xbd, +0x85,0x23,0xed,0x78,0xe4,0x4f,0xb8,0xd0,0x81,0x27,0xd8,0x8c, +0xd2,0x94,0xf2,0xc4,0x0a,0xd9,0x05,0x3e,0xc2,0x3d,0xd4,0x39, +0xc8,0x8d,0xc3,0x40,0x26,0xa5,0x30,0xa9,0x24,0xa9,0xd2,0x2c, +0x89,0xf7,0x5a,0x6a,0xb9,0x5a,0x4b,0xb3,0xd0,0x82,0xcf,0x2b, +0x48,0xcf,0x49,0xc9,0xe2,0x44,0xe7,0xde,0x16,0xa1,0xa9,0x9b, +0xa5,0xac,0xe9,0x06,0xf9,0x13,0x82,0x67,0xb1,0x18,0x8c,0x4b, +0xc8,0x5b,0x08,0x9e,0x49,0x1d,0x1b,0x4e,0xc0,0x60,0x98,0xc0, +0x2a,0x2b,0xde,0xc2,0x31,0x22,0x7c,0x8a,0x2f,0x61,0xa2,0xb0, +0xbd,0xff,0x5f,0x6a,0x46,0xc2,0x32,0x8a,0x97,0xef,0x8a,0x9f, +0x2e,0x34,0x7e,0x85,0xb1,0x83,0x10,0x2b,0xfc,0x81,0xda,0x68, +0xc9,0xa6,0x98,0x48,0x6a,0xd1,0xdd,0xd9,0x52,0xdd,0xee,0x95, +0xaf,0xfa,0x58,0xf1,0x18,0xc8,0x08,0x26,0xc3,0x14,0x48,0x66, +0xe0,0x15,0x4e,0x21,0x58,0x42,0xdb,0x25,0x0c,0xbe,0x92,0x56, +0xb8,0x7d,0x4d,0xff,0xf3,0x35,0x0b,0xf7,0xe9,0x1e,0xda,0x2e, +0xa1,0xfc,0x40,0x5d,0xd1,0x4e,0xb0,0x5a,0xe1,0x01,0xd5,0x2c, +0x0d,0x30,0x44,0xfc,0xfd,0x8a,0xf0,0x3b,0x23,0xfe,0x8e,0x1c, +0x11,0x7e,0xd7,0x12,0x7f,0x67,0x70,0x3e,0x6e,0x23,0x3f,0xe2, +0x1b,0x66,0x41,0x74,0x8c,0x19,0xa8,0x9d,0x87,0xa9,0x49,0xbf, +0xa6,0xa8,0x4c,0xeb,0x13,0x02,0x84,0xa0,0x8e,0x7f,0x7d,0xc5, +0xc2,0x3c,0xfc,0x9c,0xdc,0x02,0x9f,0xed,0xac,0x10,0x7c,0x8c, +0x88,0xca,0xe6,0x70,0x83,0x09,0xd0,0x77,0x97,0x5b,0xd8,0x58, +0x34,0x38,0xb7,0xfa,0x74,0x58,0x07,0xf2,0x65,0xc6,0x35,0xe6, +0xed,0xb6,0xd6,0x1e,0xc6,0x7b,0xb6,0xfb,0x16,0x5b,0xf1,0x77, +0x8b,0x46,0x2a,0x3b,0x6a,0xbb,0x9c,0x2f,0x79,0x3c,0xd8,0x43, +0xfd,0xcc,0x8e,0x3c,0xa3,0x12,0xcb,0xf2,0xe1,0xc1,0xfa,0x6b, +0xd9,0x37,0xb8,0x51,0x23,0x4d,0x72,0x07,0x7c,0xb6,0xb2,0xe8, +0x43,0x5d,0xa2,0xcf,0x76,0x46,0x3f,0x72,0xdb,0x91,0xf5,0xd1, +0xd4,0xff,0x4c,0x38,0x43,0x1c,0x8a,0xdd,0x9b,0x7d,0x47,0x3a, +0xaf,0x35,0x3e,0xac,0x78,0x29,0xcb,0xe7,0xfd,0x36,0x79,0x68, +0x3b,0x1a,0x05,0xdd,0x08,0xfd,0x21,0xea,0x0d,0x07,0x71,0xfd, +0x98,0xc0,0x9c,0x68,0x3e,0xd5,0xd6,0xa9,0x0a,0xcb,0xf5,0x71, +0x0e,0x6b,0x72,0x46,0x7e,0xd6,0x42,0x0d,0x2b,0xe1,0x4b,0xb0, +0xef,0xa5,0xa0,0xf8,0x13,0x43,0x6a,0x25,0x36,0x26,0x60,0x83, +0x5f,0x62,0xb4,0x91,0xf0,0x84,0x49,0xc0,0x4f,0xb3,0x66,0x94, +0xae,0xd2,0xde,0xb6,0xde,0x78,0xbe,0x7d,0x99,0x8c,0x7f,0xd9, +0x70,0xbf,0xf7,0xf2,0xf5,0x62,0xc3,0x6a,0xeb,0x26,0xcf,0x2a, +0xcf,0xba,0xc4,0xf3,0x1d,0x79,0xb0,0x89,0x37,0xcf,0x57,0x4a, +0x10,0x36,0x13,0x8f,0x3e,0xd3,0x7b,0x16,0x1d,0xd6,0x1e,0x7c, +0x9b,0x79,0xdf,0xe6,0x12,0x13,0x6e,0xf4,0x30,0xda,0x10,0x71, +0xc6,0xd0,0x03,0x78,0x01,0x37,0x59,0x7c,0x81,0xc9,0x04,0x1c, +0xa1,0x10,0x1d,0xe9,0xbc,0x36,0x82,0x16,0xd2,0x89,0x6d,0x2f, +0xc0,0xbe,0x1d,0xed,0x9f,0xc2,0xde,0xba,0x0e,0x98,0x2f,0x2e, +0xbd,0x6c,0xb8,0x5b,0x9c,0x86,0xf3,0x3b,0x1c,0xc1,0x7d,0x25, +0x9a,0x5a,0x80,0xe9,0x52,0xac,0x36,0x83,0x73,0xac,0xb1,0xf1, +0x5a,0x4b,0x54,0x76,0xcc,0xb7,0xe0,0xe1,0xd3,0x46,0x18,0x33, +0x74,0xff,0x67,0x0e,0x2e,0x30,0x0f,0x17,0x81,0x92,0x3e,0x4c, +0xb6,0xa3,0xa6,0x8b,0x9f,0xd7,0xae,0x6e,0x37,0xa6,0xb3,0xe7, +0xb6,0xb0,0x8e,0x28,0x8e,0xae,0x40,0x9f,0x5e,0x03,0x13,0x74, +0xeb,0x35,0x32,0x41,0x47,0x46,0xf0,0xb5,0x20,0x2b,0xd1,0xed, +0x29,0x4b,0xe3,0x9a,0x1a,0x59,0x8a,0x6e,0x2f,0x58,0xe1,0x23, +0xbc,0x49,0xba,0x31,0xea,0x85,0xfe,0x52,0x0c,0x90,0x41,0x00, +0x2a,0x89,0x1f,0x9b,0x2a,0x6e,0xf6,0x88,0xdf,0x50,0xe2,0xac, +0xac,0xf8,0x59,0x70,0x23,0x2f,0x3b,0x17,0xc3,0x67,0xf8,0xfd, +0x15,0x61,0x49,0xa7,0xb8,0xe4,0x86,0xe1,0x0e,0x51,0xcd,0x4c, +0x50,0xd3,0xc6,0xa7,0x16,0xf0,0x74,0xbb,0xb8,0xc0,0x4c,0x58, +0xa0,0x89,0xaf,0x2c,0x28,0x3e,0x0f,0xf6,0x0f,0xf2,0x0d,0xf0, +0xe5,0xb0,0x41,0x0e,0xd1,0x8c,0x9b,0x9b,0xb3,0x9b,0x9d,0xfb, +0xed,0xb0,0x5f,0x82,0xdf,0xee,0x9d,0xe3,0x85,0x24,0x14,0xd7, +0x47,0xa5,0xc8,0x78,0xb0,0xba,0x00,0xcb,0x0a,0xe0,0x93,0x2e, +0x98,0xe8,0x07,0x9f,0xef,0x01,0xce,0xab,0xa0,0x9d,0x9f,0x5e, +0x38,0x2d,0x7f,0x76,0xce,0xa5,0x9a,0x8e,0xf6,0xea,0x61,0x0e, +0x36,0x77,0x89,0xe9,0x4c,0x76,0x61,0x56,0x61,0x5a,0x3e,0x27, +0x4c,0x60,0x0c,0xe1,0x0c,0x25,0x1d,0x39,0xb7,0x28,0xa1,0xc7, +0xc9,0x44,0x13,0x73,0x6e,0xb2,0xa0,0x4d,0x07,0xd0,0xc1,0xd8, +0xcc,0x7e,0x97,0xe7,0xd2,0xcc,0x35,0x69,0x9a,0xc9,0x85,0xb9, +0x85,0x05,0x79,0x85,0x14,0xa7,0xfd,0xa5,0xa0,0xa4,0x7f,0xea, +0x30,0x18,0x88,0xf3,0x7e,0xd4,0x5d,0x26,0xf2,0x68,0x30,0x0c, +0x53,0x59,0x41,0x85,0x5a,0xf6,0x73,0xdd,0xe5,0x78,0xd9,0x44, +0x61,0xd6,0xcb,0x8a,0xfe,0x68,0x44,0x0e,0xd4,0x07,0x34,0xec, +0x2b,0xa3,0xc8,0x30,0xd3,0x2b,0xcf,0x21,0xdd,0x9e,0x13,0xf0, +0x30,0xc1,0x2c,0x26,0xb7,0x3e,0xab,0x21,0xbd,0xc5,0x24,0x83, +0x0f,0x31,0x0b,0x90,0xfb,0x5a,0x73,0x62,0x9d,0xb1,0x30,0x13, +0x3f,0x16,0xc7,0x9b,0x08,0xe3,0x71,0xfb,0x08,0x6c,0x17,0xbe, +0xe8,0x15,0xbf,0x80,0x8f,0x85,0x15,0x14,0x6e,0xa7,0x2a,0xee, +0x12,0x54,0xf7,0x40,0xfd,0x00,0x5c,0x14,0x2d,0xbd,0x00,0x98, +0x11,0x0b,0xb2,0x02,0x58,0x5a,0xc1,0x65,0xe0,0x69,0x02,0xdf, +0x0c,0xc1,0xc7,0x2f,0x1f,0xff,0x69,0x59,0xcb,0x6f,0x98,0x87, +0x13,0xd6,0xe3,0x54,0x23,0x8e,0x22,0x3e,0x72,0x60,0x9b,0xe3, +0x12,0x37,0x83,0xf6,0xbd,0x7c,0xd5,0x50,0xdd,0xcb,0xac,0x3b, +0x1c,0x9a,0xe2,0x1a,0x12,0xd1,0x1e,0x74,0x25,0xa8,0xc9,0x3c, +0x94,0xcf,0xb4,0xcd,0xd9,0x15,0x6f,0xc1,0xcd,0xd8,0x4f,0x0e, +0x76,0xfa,0x5f,0x0f,0x68,0x37,0x0b,0xe1,0xf3,0xcc,0xf3,0x77, +0x24,0x5a,0x70,0x82,0x26,0x86,0x12,0x98,0x7b,0x0b,0xc8,0x5f, +0x4f,0xde,0x59,0x56,0xf3,0x6b,0xe7,0xe0,0xe7,0xf3,0x51,0x4d, +0x8f,0xc3,0x25,0x96,0xe4,0x50,0x52,0xd4,0x99,0xc3,0x51,0x21, +0x61,0xfc,0xb1,0xd3,0x34,0x90,0x39,0xf4,0xa0,0xc3,0x3b,0xc3, +0x19,0xe8,0x64,0x0a,0x46,0xac,0xff,0xea,0xcd,0x1a,0x33,0x96, +0x97,0xcb,0x79,0x18,0xfb,0xcb,0xcd,0x57,0xe7,0x9e,0x50,0x22, +0xf2,0xc7,0x00,0x34,0x30,0xe7,0xcf,0x7d,0x1b,0x13,0xad,0x06, +0xcb,0x70,0x6d,0x63,0xa3,0x92,0xf0,0x09,0x58,0x91,0xb9,0xa8, +0x8c,0x1a,0xd4,0xee,0x35,0x35,0x2b,0xf4,0x79,0xd0,0xba,0x0b, +0xcb,0xe1,0xcb,0x77,0xa0,0x4a,0xe7,0xd3,0x26,0xc5,0x97,0x04, +0xbf,0x03,0xb9,0x36,0xca,0xc5,0xbd,0xfa,0x14,0xd4,0x86,0x30, +0xb8,0x48,0x8e,0x5b,0x5c,0x70,0xd5,0x3e,0x69,0x51,0xd2,0x8a, +0x1c,0x58,0x55,0x09,0xf3,0xda,0x39,0x4c,0xc1,0x43,0xac,0x94, +0x99,0xe9,0x24,0x69,0xd2,0x77,0xa9,0x43,0x01,0xfb,0x67,0xcd, +0xab,0xe6,0x47,0x3d,0x6e,0xcd,0xd2,0x97,0x10,0x4e,0x4b,0xdd, +0x39,0xb0,0x87,0xef,0xde,0x7f,0x97,0xa6,0x41,0xf6,0x84,0x7b, +0x1d,0xf2,0x8a,0xe0,0xe0,0xc0,0xdb,0xde,0x99,0xa0,0x6b,0x40, +0xe3,0xce,0x54,0x13,0x98,0x8a,0x67,0x59,0xab,0x30,0xeb,0x70, +0x5b,0x49,0x91,0xb3,0x3e,0xbe,0x31,0xb1,0xe1,0xbd,0x22,0xe7, +0x24,0x49,0x91,0xf3,0x35,0xd3,0x22,0x2d,0x99,0x7e,0xaf,0xc8, +0x59,0x91,0x24,0x29,0x72,0x0e,0x08,0xfb,0x09,0x4e,0xb7,0xc1, +0x08,0x77,0xd4,0x8b,0xbe,0x68,0xc2,0xc3,0xae,0x38,0x38,0x56, +0x01,0xcb,0x5a,0x39,0x24,0xe2,0x78,0xd2,0x73,0xad,0x07,0xc6, +0x96,0xfc,0x24,0xcf,0xe2,0x7d,0x97,0x5b,0xcc,0x36,0xd5,0xe2, +0x4c,0x9a,0x49,0x78,0xbf,0xef,0x5d,0xbf,0x0e,0x79,0x30,0x5f, +0x68,0x5e,0xb8,0x29,0xd1,0x98,0x32,0x7f,0x3f,0x12,0x3c,0xec, +0xf2,0xd8,0xa3,0xc3,0x22,0x88,0x2f,0x33,0xaf,0x5e,0x9f,0xb9, +0x9b,0x13,0xf6,0xe1,0x34,0x3a,0x2d,0xca,0x81,0x35,0xa4,0x20, +0x3b,0x53,0x06,0x87,0x58,0x97,0x65,0x2b,0x96,0xe0,0xf4,0xcd, +0x25,0xd4,0x88,0xe7,0x3f,0x7b,0xf5,0x26,0xed,0x0f,0x3a,0x90, +0x8f,0x07,0xe0,0x71,0x1c,0x93,0xa9,0xf1,0x62,0x36,0xcc,0x5d, +0x55,0xd6,0xc5,0xa3,0xda,0x83,0xe5,0xcf,0x5c,0x9f,0xd1,0x11, +0x63,0x4e,0x12,0xc7,0x12,0x97,0x76,0xef,0x9b,0x3d,0x37,0x9b, +0x7e,0xa8,0x7c,0x6d,0x56,0xc0,0xfb,0xac,0x71,0xdf,0x6e,0xa7, +0x1f,0x78,0x27,0xe4,0x65,0x14,0x4c,0xe0,0x20,0xa9,0x07,0xd3, +0x98,0x53,0xa5,0xa7,0xca,0x2a,0x54,0x41,0x4b,0x1f,0xd7,0xb1, +0xce,0xa7,0x5d,0xcf,0xb8,0xa9,0x61,0x11,0x4c,0x02,0xf7,0x6e, +0x74,0xff,0xdb,0x70,0x1a,0x3a,0xc8,0xc0,0x01,0x27,0x49,0x1c, +0xe7,0x11,0x73,0x11,0x55,0x73,0x71,0x42,0xf9,0xb2,0x5d,0x1b, +0xd7,0x1a,0xce,0xb5,0x2d,0x33,0xe7,0x5f,0x35,0x3e,0xec,0xbf, +0x7a,0xbb,0x44,0xa7,0xc6,0xb2,0xd1,0xa3,0xd2,0xb3,0x81,0x7a, +0xa0,0x5c,0x58,0xcf,0x5b,0x15,0x29,0xc5,0x0a,0x72,0xe2,0x3e, +0x28,0xbb,0x66,0xd9,0x6a,0xef,0xc9,0xb7,0x58,0xf7,0xec,0x28, +0x37,0xe2,0x44,0x17,0x7c,0x4d,0x22,0x28,0x22,0x39,0x18,0x11, +0x11,0xc5,0x47,0x5f,0x86,0x03,0xdd,0x78,0xe0,0xad,0xe1,0x4c, +0xf4,0x97,0x81,0x1d,0xe3,0xb3,0x50,0x53,0x13,0x55,0xd6,0xd3, +0x93,0x02,0xff,0xdd,0xad,0xfb,0xe7,0x7f,0xa7,0xb7,0xf6,0x4b, +0x3f,0xd4,0x31,0x34,0xa0,0xc7,0x1e,0x53,0x83,0x0d,0xa8,0x51, +0xd9,0xa2,0xa4,0xfc,0x8f,0x52,0x34,0x71,0x28,0x72,0xad,0xf7, +0xe9,0xe9,0xbe,0x59,0x7b,0xbf,0xf8,0x81,0x65,0x16,0xef,0xbf, +0xcb,0x4b,0xc7,0xde,0xd0,0xff,0x5a,0xe8,0xf7,0x27,0x7e,0xe1, +0xe0,0x04,0x25,0xd8,0x7f,0x40,0x5c,0x97,0xb8,0xe8,0x3b,0x78, +0xd2,0x89,0x4f,0xae,0xe8,0xa1,0x2d,0x9a,0xc0,0x32,0x3d,0x8a, +0x9d,0xb6,0xc9,0x85,0x87,0x73,0xc4,0x4c,0xe4,0x18,0xdc,0x15, +0x8a,0x1f,0x99,0xcd,0x54,0xeb,0xb4,0x57,0x1a,0x80,0x49,0x99, +0xa0,0x0e,0x3a,0xaa,0x97,0x05,0x47,0x36,0x06,0x3f,0xca,0x9e, +0x5d,0xb5,0xd6,0xcc,0x68,0xb7,0x7c,0xb5,0x5d,0xa9,0x15,0xff, +0x5d,0xfd,0xa5,0xce,0xce,0xde,0x42,0xcb,0x4a,0xa7,0xba,0x3d, +0x8d,0x5e,0x4d,0xb1,0x71,0xdd,0x59,0xd4,0xc5,0xca,0xf3,0x94, +0x8e,0xc1,0xdf,0xc4,0x23,0xc3,0x29,0xcd,0x21,0xde,0xd5,0x9d, +0x6f,0x0c,0xaf,0x09,0x2d,0x0b,0xe6,0x30,0x97,0x32,0x24,0x71, +0x8c,0x1c,0x16,0x60,0x97,0x06,0x93,0x28,0x57,0x7a,0xca,0xd4, +0xa5,0xa4,0x55,0xaa,0x43,0x27,0x2c,0x62,0xcf,0xa0,0x0f,0x39, +0x38,0x1c,0xdc,0x17,0xd0,0x69,0x11,0xca,0xe7,0x9a,0xa7,0x1b, +0x24,0xd3,0x59,0x93,0x03,0xa6,0xe4,0xd0,0x06,0xff,0xb5,0xb6, +0xbb,0x3b,0xfc,0xf8,0xe6,0x5b,0x05,0x4f,0x93,0x7f,0xa0,0xcf, +0xcd,0x42,0xd0,0x21,0xf8,0x51,0xc6,0xe2,0xec,0xad,0x25,0x97, +0x1b,0x3a,0x7a,0xab,0x6f,0x73,0x30,0xb1,0x1b,0x7b,0x7f,0x35, +0x98,0x8f,0xd5,0xb2,0xb7,0x4c,0xe5,0xb6,0x36,0x93,0x4b,0xf6, +0x9a,0xde,0xcb,0xf7,0xe1,0x98,0x03,0x19,0x26,0x7c,0x51,0x4c, +0x61,0x6c,0x41,0x1c,0xb7,0x96,0xc5,0x79,0x81,0x8b,0xe6,0x22, +0xab,0xd6,0x6c,0xdf,0x3e,0x54,0xd6,0x9b,0x39,0xa8,0x42,0x11, +0xcb,0x8e,0x01,0x21,0x90,0x29,0x3e,0x5a,0x12,0x5d,0x16,0xcd, +0x8d,0x4e,0x87,0xe7,0xc4,0xaa,0xce,0xa8,0xce,0xb8,0x94,0xd2, +0xf0,0x01,0x8f,0x4e,0x97,0x76,0x07,0x4e,0x88,0xc9,0x24,0x6e, +0xfa,0x36,0xb6,0xfa,0x6e,0xfa,0x95,0xb6,0x4d,0xee,0x43,0x1c, +0x8d,0xed,0x7e,0xc4,0xba,0x7e,0x77,0x8b,0x41,0x39,0x65,0xda, +0xfd,0xee,0x83,0x76,0x1d,0x76,0x1c,0x9c,0x5c,0x42,0x9e,0xb1, +0xfd,0xa9,0xdd,0x19,0x2d,0xb9,0x6d,0x01,0x3d,0xfb,0x47,0x42, +0xb9,0x55,0xec,0x28,0x75,0xc3,0xe4,0x26,0xa5,0xd8,0xaa,0x25, +0xef,0x4c,0xb3,0x78,0x0f,0x1c,0x6f,0xf5,0x9e,0x62,0x0b,0x5f, +0x81,0x16,0xb9,0x50,0x75,0xae,0xe6,0x4c,0x3d,0x07,0x4f,0xf0, +0x13,0x46,0xf9,0x07,0xc5,0x5c,0x32,0xac,0xdd,0xad,0x55,0xa7, +0xdd,0x55,0xc6,0x3b,0x0e,0xdb,0xf5,0xd9,0xb4,0xb6,0x34,0x35, +0xf4,0x96,0x77,0x18,0xe5,0xf2,0x9e,0x66,0x56,0x3a,0x3a,0xfa, +0x1c,0xb4,0x4c,0x19,0xd2,0xee,0xda,0x59,0xbf,0xbb,0xab,0x94, +0x77,0x18,0x76,0xe8,0xb5,0x69,0x6d,0x6e,0x6a,0xec,0x2d,0xfb, +0xf0,0x09,0xeb,0xf7,0x9f,0x68,0x9a,0x22,0x9d,0xa3,0x5e,0x3a, +0x87,0x03,0x3d,0x87,0xed,0xff,0xfc,0xc4,0xfb,0x73,0xd0,0xd0, +0xef,0x47,0xf4,0x17,0x32,0xb8,0x0e,0x3f,0x5b,0x86,0x0d,0xf3, +0xd4,0xf2,0x75,0xa0,0x8d,0xba,0x9c,0x7b,0xd9,0x30,0x4f,0x25, +0x96,0xc9,0xc5,0x79,0xc0,0x6e,0x86,0x26,0x1c,0x9b,0x77,0x89, +0xc7,0xea,0xdf,0x70,0xf6,0x8f,0xb0,0x4e,0x15,0x7c,0x71,0x07, +0x69,0xed,0x6b,0xbe,0x5b,0x78,0xd9,0x24,0x97,0xf7,0xd1,0xb5, +0xdb,0x6a,0x63,0xce,0x89,0x69,0x32,0xd2,0x31,0xd4,0xf9,0xb8, +0xf0,0x86,0x49,0x1e,0xef,0xa3,0x6d,0xb3,0x51,0x66,0x48,0x5d, +0xfb,0x5b,0xc5,0x55,0x62,0x86,0xce,0xd8,0x7b,0x00,0xb3,0xbf, +0x4a,0x34,0x54,0x82,0x42,0xb8,0x92,0xd3,0x05,0x0e,0xea,0x38, +0x03,0x7f,0x23,0x6d,0xf7,0xab,0x7f,0x28,0x7c,0x6e,0x90,0xc6, +0xef,0x5d,0xe7,0xb8,0xdc,0x5a,0x93,0x8e,0x19,0xce,0x22,0xfd, +0xe2,0x52,0x60,0xd8,0xda,0xc4,0xd0,0x21,0xbf,0x2b,0x7e,0x1d, +0x2a,0x46,0xc1,0xf9,0x96,0x05,0x3b,0x93,0xe5,0x2a,0x8e,0xc8, +0x8a,0x14,0x22,0x8d,0x61,0x64,0xb3,0x71,0xcc,0x3a,0x0c,0x58, +0x2c,0x95,0x2f,0x3a,0x09,0xe3,0x5e,0xde,0xac,0x86,0x2f,0xa9, +0xe9,0xe3,0x30,0x60,0x1c,0x53,0x8d,0x5f,0xc2,0x18,0x4d,0x38, +0x8d,0xe3,0x0a,0xfb,0x78,0x0c,0xa6,0x5c,0xf3,0x91,0xe9,0x1b, +0x0e,0xe3,0x60,0x39,0xd9,0x37,0xe0,0x7e,0xc3,0xbd,0xdb,0x94, +0x7a,0x0b,0xd3,0x8a,0x1d,0x99,0xc6,0x14,0x28,0x4e,0x51,0x34, +0x13,0xb4,0x60,0xf1,0xef,0x20,0x5c,0xb8,0x03,0x27,0xa9,0x75, +0xc8,0x95,0xbe,0x87,0xb9,0x59,0xb0,0x06,0x50,0x55,0xe1,0x4e, +0xbd,0xe1,0xa8,0x3b,0x2e,0x20,0xbf,0x28,0x34,0x16,0x50,0x36, +0xbd,0x8a,0x18,0xa2,0xc7,0x00,0x83,0x22,0xec,0x22,0x96,0x70, +0xb6,0x8d,0x85,0x95,0x53,0x2c,0x21,0xb9,0x8d,0x15,0xd7,0xd3, +0x50,0xd0,0x86,0x67,0x2d,0x59,0xc5,0xca,0x29,0x6d,0x98,0x6c, +0xc9,0x5a,0xe2,0x05,0xf2,0x0a,0xba,0x3b,0xb0,0x7b,0xc4,0x50, +0x17,0x37,0xb2,0xf1,0xa9,0xf1,0x69,0x17,0xd2,0xcc,0x33,0x79, +0x1f,0x03,0x1b,0x99,0xbe,0x6d,0x9d,0x0b,0x5f,0x98,0x9d,0x97, +0x9b,0x9d,0xcf,0x81,0xcb,0x42,0x7c,0x63,0x0e,0x6f,0x70,0xc6, +0x00,0xcc,0x80,0x5f,0x3a,0x18,0xe5,0x7f,0xbe,0x11,0x36,0x10, +0x27,0xc6,0xe3,0xd8,0xf9,0x32,0x75,0x48,0x43,0x93,0x38,0xf6, +0xb5,0xd1,0x4c,0xf6,0x14,0x4e,0x36,0x85,0xcf,0xd8,0x48,0xfc, +0xc6,0x6a,0xeb,0x42,0x83,0x0a,0xa9,0x48,0xd5,0x9d,0xee,0xe7, +0x17,0x61,0x0d,0x07,0x2a,0xe8,0xcf,0xe8,0xa4,0xef,0x1b,0x56, +0x6b,0x65,0x9a,0x93,0x93,0x5b,0xd4,0x29,0xf6,0x33,0x4b,0x57, +0x1a,0x95,0xc1,0x52,0x12,0x88,0xcb,0xcd,0xf1,0xeb,0x85,0x38, +0xa1,0x54,0x9f,0xcf,0x2b,0xca,0x2a,0x4d,0x2f,0xe7,0x44,0xad, +0xc1,0xfb,0xe0,0x46,0x43,0x81,0x03,0x5b,0x74,0x2f,0xeb,0x41, +0xf2,0x8f,0x1c,0x2c,0xe8,0x47,0x85,0xf4,0xf2,0x6b,0x74,0x09, +0x81,0xff,0x82,0xf9,0xf8,0x5f,0x2c,0x0c,0xc1,0x4f,0x84,0x4e, +0x7e,0x07,0x23,0xea,0xc8,0x72,0x07,0x21,0x17,0x8e,0xf5,0xe3, +0x31,0x58,0xc6,0x2a,0x0f,0x50,0x98,0x04,0x5b,0x52,0x60,0x7e, +0x06,0x68,0x94,0x1c,0xef,0xe0,0xe5,0x87,0xcd,0xa3,0xe4,0x47, +0x38,0x98,0x0d,0x4b,0xbb,0x70,0xa9,0xa4,0x7a,0x73,0x9d,0x75, +0x3f,0x2e,0xbd,0xb7,0xe1,0x20,0xd9,0x10,0x33,0x59,0xff,0x93, +0xbe,0x27,0x7c,0x4f,0x72,0x8a,0xbb,0xe9,0x84,0x22,0x19,0x97, +0xa8,0x0b,0xa5,0xea,0x8f,0x59,0x18,0x93,0xfd,0x6b,0xe9,0xfd, +0x1a,0xff,0x56,0x7e,0xab,0xeb,0x5a,0x3f,0x8d,0x20,0xca,0x4e, +0x0d,0xb0,0x9a,0xd5,0xcd,0xf2,0xbb,0xa5,0x06,0x1e,0x4c,0x73, +0x7a,0x66,0xbd,0xfa,0x8f,0xac,0x51,0x8a,0x92,0x58,0x81,0xbd, +0x64,0xb7,0xc6,0x8c,0x0d,0xa8,0xa2,0x5b,0x62,0xce,0xf7,0x17, +0xf4,0x94,0xb7,0x57,0x73,0x68,0x3f,0xd2,0x29,0x84,0x99,0x8d, +0x40,0xab,0x78,0x81,0x2d,0x2c,0xce,0x2d,0x4b,0x2f,0xe3,0x84, +0x9c,0xde,0x7f,0x4d,0x34,0x61,0xe0,0x5b,0xac,0x26,0xc0,0x0b, +0x61,0xc8,0xb3,0xca,0xf7,0xe1,0x12,0x01,0x93,0x9f,0xe8,0xc0, +0x7e,0x76,0x05,0xcc,0xb8,0x7a,0xb4,0x66,0x13,0x32,0xe2,0x33, +0x2f,0x64,0xc8,0x13,0x79,0xc7,0x15,0x9a,0xeb,0x70,0xcc,0xae, +0x32,0x07,0xfe,0x6a,0xc3,0x40,0x57,0x73,0x3f,0x07,0xdb,0x99, +0x10,0xfb,0x20,0x47,0x3f,0x57,0xef,0x42,0xa7,0x22,0xdf,0x4c, +0x2f,0x77,0xbe,0x70,0x7f,0xad,0x67,0x89,0xef,0x81,0x7d,0xfb, +0xf7,0x07,0x1d,0xf0,0x29,0x74,0x28,0xf3,0xcd,0x76,0x77,0xe7, +0xf3,0x83,0xab,0x3d,0x8b,0x7c,0x6d,0x3c,0x64,0x7b,0x0c,0x7c, +0xb9,0x7f,0x66,0x9e,0x26,0x6b,0xab,0x77,0x36,0x98,0xb4,0xdd, +0xbc,0xdd,0xf9,0xa8,0xe0,0x06,0xd7,0x82,0x95,0x66,0x10,0xc8, +0x06,0x1a,0xdb,0xe9,0xe8,0x1b,0x6d,0x7e,0x64,0xfd,0x6b,0x00, +0x70,0xa6,0xe1,0x7c,0x3f,0x86,0xc3,0x64,0xca,0xbb,0x8f,0xe2, +0x24,0x0e,0x4f,0x83,0x12,0x45,0x8e,0x7f,0x98,0xb1,0x42,0x3d, +0xb2,0x64,0xf4,0xa8,0x0c,0xde,0xd1,0xf0,0xbb,0x5a,0x4a,0x23, +0x81,0x69,0x4c,0x53,0x4e,0x16,0x25,0x68,0x67,0xe1,0x47,0x56, +0x7c,0x26,0x23,0x56,0x5a,0x86,0xa6,0xd3,0x8c,0xab,0x6c,0x78, +0x18,0x33,0x78,0xf5,0x4a,0x3b,0xf5,0x6a,0xd7,0x0e,0x91,0xe7, +0xb2,0xbb,0x86,0x77,0x76,0xd4,0xd5,0xf1,0x9b,0x6e,0xec,0x18, +0x58,0xda,0xf5,0xde,0xfb,0x45,0x10,0x5c,0x98,0x8a,0x9f,0xa5, +0xcf,0xce,0xfd,0xa1,0x7a,0xb8,0xa5,0x7d,0x88,0x83,0xc5,0xdd, +0xe2,0x8a,0xa7,0xba,0x2b,0xc5,0x99,0x32,0xd0,0x60,0x3a,0xf4, +0xae,0x5a,0xff,0xe8,0x32,0xdb,0x1f,0x27,0x87,0xe0,0xd2,0xb0, +0x74,0x53,0xbe,0xe6,0x5c,0x75,0x4c,0x45,0x0c,0x87,0x6a,0x2c, +0xae,0xf5,0x5a,0xbc,0x70,0x91,0x5a,0x8b,0xad,0x12,0x30,0x52, +0x1a,0xc8,0x17,0xb0,0x4a,0x15,0x66,0xb2,0x7f,0xa5,0x3e,0xcf, +0xb8,0x93,0x77,0x2f,0xf0,0x45,0xf0,0xdf,0xa1,0x9c,0x58,0x34, +0x22,0x64,0xb2,0xa5,0xc7,0xca,0x8f,0x57,0x1c,0x97,0xaa,0x94, +0xa7,0x11,0x0b,0xb9,0x8e,0xf3,0xca,0x3d,0x8b,0x8b,0x77,0xd6, +0x98,0x75,0x71,0xf1,0xf8,0x23,0x11,0x66,0x77,0x88,0xb3,0x19, +0x1a,0x72,0xb4,0x09,0x1e,0x5f,0xc0,0x26,0x9a,0x2b,0x3d,0x63, +0x2a,0xd3,0x52,0x2a,0xd4,0xe1,0x38,0x38,0x74,0x88,0x76,0xe6, +0xec,0xb0,0x05,0x09,0xd6,0x0d,0xd0,0xb7,0x34,0x6c,0xf3,0xe6, +0x9b,0x87,0xcb,0x6f,0xa6,0x5e,0xe7,0xc0,0xe6,0x08,0x29,0x35, +0xca,0xdb,0x9d,0xa3,0xd9,0x95,0xc9,0x07,0x5d,0xf6,0xbd,0xb9, +0xa7,0x97,0x93,0xd4,0x8b,0x4f,0x90,0x44,0xbf,0x04,0xef,0x78, +0x4f,0xeb,0x68,0xcb,0x63,0x16,0xc7,0x47,0x1e,0x5f,0x05,0xa5, +0xfe,0xf7,0xc2,0x77,0xbe,0x06,0x1e,0x3a,0x6e,0x06,0xc1,0x39, +0xfb,0x72,0x83,0x72,0x6a,0x06,0xcb,0x6f,0x14,0x5c,0x31,0xcf, +0xe1,0xf7,0xea,0x7a,0xeb,0x78,0xca,0x0e,0x26,0x87,0x25,0x1f, +0x4c,0xf4,0xb4,0xe7,0x3b,0xad,0x3b,0xcd,0x5a,0x8c,0x03,0x9d, +0x03,0x5c,0x03,0xbd,0xbd,0x4f,0x79,0x9f,0xf4,0x3e,0x15,0x6b, +0xca,0xf7,0x9c,0xe9,0x3d,0xd7,0xf3,0x1f,0x5d,0xb7,0x92,0xb3, +0xc5,0x31,0xc5,0xe7,0x92,0x65,0x7c,0x6b,0x7a,0xc8,0xf5,0xc0, +0x9b,0x01,0x7d,0x2a,0xbf,0x88,0x3f,0x92,0x81,0x3b,0xf0,0xfb, +0xd6,0x41,0xc5,0x3f,0x52,0x55,0x20,0x1b,0x14,0x08,0x4e,0x83, +0x0e,0xfa,0x40,0x06,0xb0,0x83,0xd0,0xc6,0x5c,0xec,0x60,0xd1, +0xd9,0x94,0xe0,0x03,0xba,0xff,0x01,0x0b,0x36,0x53,0xe8,0xae, +0x07,0x38,0x97,0x11,0xe7,0x50,0x86,0x9f,0xbb,0x3d,0x7d,0x75, +0xe2,0xba,0xce,0x74,0xfe,0xd0,0xfd,0xa0,0x27,0x81,0x37,0x39, +0xcc,0xa2,0xbc,0xb7,0xea,0x71,0xe6,0x6f,0x09,0x92,0x42,0xdb, +0xe1,0xe5,0xfb,0x57,0xba,0xad,0xa3,0x77,0xf6,0xab,0xe2,0x0b, +0x72,0x13,0x9a,0x35,0xfb,0x6f,0xc2,0x85,0x2e,0xbc,0x70,0xdd, +0x48,0x0b,0x9b,0xaf,0x1b,0x6a,0xe1,0x11,0x39,0x1c,0xd1,0x64, +0x85,0xef,0x0e,0x11,0xb4,0xf7,0xc4,0xaa,0x70,0x6c,0x3f,0x23, +0x25,0xd5,0xb4,0x9c,0x84,0x8e,0x74,0x70,0x28,0xe7,0x70,0x01, +0x66,0x91,0xa6,0xfe,0x8a,0xcb,0x85,0x57,0x28,0x24,0x0a,0x34, +0x70,0xd9,0x69,0x27,0x93,0x12,0xd7,0x3f,0x21,0x3d,0xe2,0xaa, +0x67,0x01,0x6c,0x53,0x6a,0x58,0xeb,0xbe,0xf6,0xa0,0x3a,0x15, +0xb3,0xa0,0x2c,0xe7,0x2c,0xf3,0x64,0x7b,0x15,0xff,0x15,0xe2, +0x2c,0x53,0x61,0x1c,0x63,0xba,0x19,0xc7,0x9b,0xa0,0x8f,0x5e, +0x0e,0x3d,0xdd,0xc9,0x7b,0x7f,0x74,0xd6,0xbe,0xa3,0x8e,0x32, +0x67,0x08,0x72,0x62,0x99,0xda,0x19,0xc0,0x99,0xc1,0xe9,0xcd, +0xd9,0x3d,0x3c,0x06,0x0e,0xe3,0xa4,0x5e,0xa3,0x7b,0x1c,0x16, +0x03,0x21,0x41,0x4d,0x7b,0x3a,0x7c,0xea,0xcd,0x03,0xf9,0x22, +0x87,0x62,0xf3,0x4c,0x69,0xc9,0x11,0x77,0x8a,0xa2,0x22,0xd7, +0x6e,0xef,0xfb,0x3d,0xb7,0x1b,0x9f,0x56,0xfc,0x2e,0x2b,0xe0, +0xfd,0xd6,0xb8,0x6b,0x3a,0xea,0x05,0xdd,0x0f,0xfb,0xf9,0x08, +0x8c,0xe7,0x20,0x96,0xde,0x0d,0x73,0xaa,0xf0,0x54,0x71,0xb1, +0x2a,0x6c,0x31,0xc4,0x0d,0xac,0xd7,0xe9,0x3d,0xa7,0xf7,0xa8, +0x61,0xc5,0xdf,0xe0,0xd2,0x89,0x2e,0x7f,0x1a,0xce,0x42,0x47, +0x33,0x70,0x9c,0x86,0x67,0xe4,0xc2,0x4f,0xcc,0x05,0xfc,0x2a, +0x13,0xd9,0x92,0xc5,0x3b,0xd7,0xac,0xd6,0x9d,0x6d,0x55,0x2a, +0xe3,0x5f,0xb7,0x3c,0x1a,0xba,0x76,0xbf,0x78,0x47,0xb5,0x59, +0xa3,0x47,0x85,0x67,0x43,0xfc,0x85,0xee,0x3c,0x58,0xc7,0x5b, +0x16,0x2b,0x5d,0x14,0x5c,0x89,0x67,0xbb,0xc9,0x25,0xf3,0x06, +0x07,0x77,0xbe,0xdd,0xa1,0x57,0xa7,0xd4,0x8c,0x1b,0x55,0x16, +0x27,0x91,0xa2,0xa2,0x73,0xe7,0xce,0x9e,0x3a,0x77,0x42,0x05, +0x8e,0xa3,0x71,0x79,0xfd,0xfc,0x3b,0xb5,0x45,0xd5,0x65,0x25, +0xa5,0x2a,0xae,0xd5,0x9e,0xee,0xf6,0xee,0x8e,0x7e,0x2a,0x9b, +0x06,0xc2,0xe3,0xa3,0x4e,0x47,0x44,0xaa,0x44,0x46,0x1d,0x3b, +0x9b,0x96,0x95,0x9a,0x93,0x94,0xab,0x02,0x27,0x3b,0x31,0xf8, +0x91,0xe1,0x3a,0xdc,0x67,0x06,0xb6,0x8c,0xf9,0xfa,0xb5,0x06, +0x73,0x1d,0xb3,0xcc,0xf8,0xfa,0xf4,0xda,0xec,0xaa,0x3c,0x8e, +0xba,0x69,0x8f,0xa3,0xee,0x47,0x3d,0x8e,0x5d,0xa4,0x50,0x71, +0x6a,0x16,0xf0,0xc5,0x3f,0x97,0x1c,0xed,0xe5,0x65,0x07,0x76, +0x1d,0xd8,0x11,0x2a,0x0d,0xc2,0x09,0xe2,0x9e,0xef,0xdd,0x1c, +0x30,0x34,0xf0,0x6b,0x13,0x7c,0x54,0x0c,0xbc,0x2c,0x9b,0x0f, +0xc0,0x09,0x1e,0xf3,0x6c,0xd6,0xf8,0xbe,0x0e,0x85,0xcf,0x4f, +0xc0,0x0c,0x0e,0x8e,0x74,0xe0,0x51,0x70,0x37,0x96,0x14,0x16, +0xbe,0x07,0xaf,0x36,0xf4,0x7a,0x60,0xb8,0x11,0xbd,0x2d,0xc1, +0x7b,0x0d,0xa6,0x99,0x0b,0xc0,0x9c,0xc5,0xd5,0x59,0xb8,0xa0, +0x0e,0x3f,0xf2,0x77,0xf2,0x71,0xf7,0xf2,0xe2,0xea,0x30,0xad, +0x1f,0x5c,0xe1,0x22,0xba,0xf4,0xc2,0xd1,0x36,0x3c,0xda,0x6a, +0x6c,0x85,0x91,0x96,0x10,0x69,0x42,0x11,0xd8,0x45,0xb0,0x37, +0xc2,0x1c,0x4b,0xc8,0x99,0xd9,0xfd,0x16,0x2e,0xb2,0x41,0xfb, +0x02,0xf7,0x07,0x84,0xd4,0xda,0xf1,0x03,0x75,0x9d,0x5d,0x4d, +0xc3,0xf9,0xf2,0x12,0x87,0x6a,0xdf,0x32,0xef,0xfa,0xf8,0xf3, +0x9d,0x79,0xb0,0x85,0xb7,0xca,0x55,0x8a,0x17,0xce,0x12,0xcf, +0x06,0xcb,0x76,0xeb,0x72,0x17,0x0f,0xbe,0xd1,0xa3,0xd3,0xac, +0xd8,0x91,0x13,0x47,0xb0,0x8f,0x18,0xe0,0xbc,0x41,0x16,0xec, +0x0d,0xc8,0x20,0x2c,0x36,0x60,0x51,0xe1,0x40,0x60,0x9e,0x1e, +0xce,0x63,0xc0,0x7e,0xca,0x30,0x2c,0xd6,0xa3,0xb0,0xfe,0x85, +0x50,0x46,0x5a,0x5a,0x1a,0x2e,0x95,0x5e,0xe3,0xfe,0x62,0x8e, +0xba,0x1e,0xf6,0x38,0xe4,0xb5,0x3f,0x2b,0x28,0x3b,0x38,0xcd, +0xc3,0x85,0xcf,0xdd,0x57,0xe0,0x9f,0xbd,0x37,0x32,0xe4,0x70, +0xc8,0xe1,0xb0,0x7d,0xb9,0x81,0x79,0x7b,0xb3,0xdd,0xdc,0xf9, +0x9c,0xa0,0x42,0xdf,0x6c,0x7f,0x6f,0x17,0x17,0x0f,0x7b,0xaf, +0x32,0x6b,0x1e,0x54,0xde,0xbc,0x84,0xa9,0xc5,0xa0,0xc3,0xd5, +0xe0,0x74,0xf6,0x7c,0x66,0x5c,0x66,0x4c,0xa6,0x79,0x22,0xbf, +0x57,0xc3,0x70,0x86,0xd6,0x6e,0xe9,0xab,0x53,0x37,0xa2,0xd7, +0x68,0xd1,0xe1,0xd4,0xd7,0xdb,0xdb,0x7a,0x23,0xef,0x1a,0xd7, +0x8e,0x5e,0x66,0x14,0xe1,0x05,0x99,0xbb,0x5b,0xda,0x3b,0xd8, +0x3d,0xf0,0x7d,0x16,0xf2,0x4a,0x16,0xc6,0x57,0xa2,0xc5,0xcf, +0xa8,0x03,0x9b,0x70,0x32,0x27,0xfe,0xa9,0x43,0x9e,0x3b,0x3d, +0x96,0x0f,0xa9,0x55,0xdd,0x6e,0x02,0xa5,0x74,0x69,0x7d,0x51, +0xca,0xbf,0xc6,0x0e,0x2a,0x86,0x41,0x8d,0x0d,0xdf,0x61,0x8b, +0xe3,0xec,0x57,0x72,0x83,0xdb,0xab,0x37,0x6d,0x55,0x35,0x3e, +0xb4,0xc7,0x42,0xcd,0x99,0x89,0xd7,0x51,0x6a,0x62,0xae,0xd4, +0x34,0xbd,0x55,0x17,0x7c,0x60,0x22,0x65,0x01,0x5d,0x32,0x56, +0xd8,0xbe,0x94,0x88,0x57,0xe5,0x14,0x56,0x84,0x22,0xcf,0x24, +0x98,0x48,0x8b,0xe1,0x9b,0xd3,0xd2,0x9a,0xd5,0x21,0x10,0xd2, +0x58,0xd4,0x5b,0x4e,0xfa,0xcc,0x47,0x76,0xb5,0xea,0xd4,0x37, +0xf1,0x96,0xc3,0xba,0x57,0x4c,0x28,0x13,0x7a,0x18,0x4d,0x1c, +0x0d,0x75,0x76,0xef,0xb4,0xad,0xb6,0xe0,0x6f,0x76,0x5e,0xba, +0xd6,0x38,0xcc,0x29,0x0b,0x2f,0x15,0x3a,0xd4,0x67,0x9f,0x78, +0x61,0xb8,0x14,0x4f,0x9a,0x3d,0x62,0xcb,0x34,0x9b,0x64,0xfd, +0xf6,0xba,0x5e,0x9b,0xf6,0x2e,0x0b,0xce,0x30,0xe5,0x0b,0xe3, +0x0a,0xe2,0xf2,0xcf,0x73,0x5b,0x59,0xdc,0x14,0xb6,0x60,0x15, +0x32,0x6a,0x2d,0xce,0x2d,0x97,0x0a,0x86,0x52,0xaf,0xab,0x40, +0x29,0xca,0xfa,0x85,0x50,0x26,0xe7,0x68,0xde,0xd1,0xbc,0xe8, +0xf4,0x1e,0x7e,0x61,0xe6,0xc6,0x1c,0xdd,0xd2,0xbe,0x86,0xa6, +0xee,0x92,0x9b,0x1c,0x3c,0x1f,0xdd,0x21,0x2d,0x89,0x4b,0xa3, +0xc4,0x6b,0xc1,0xff,0xef,0x92,0xb8,0x73,0x1b,0x88,0x9f,0xb1, +0xa3,0xad,0xcc,0xdd,0xb4,0xc2,0xa9,0xc9,0xa7,0x8f,0xa3,0x80, +0xe0,0x1d,0xc1,0xc4,0x1f,0x99,0x86,0x94,0xba,0xb4,0xca,0xac, +0xda,0xbd,0x4d,0xc1,0x6d,0xa1,0x1c,0x66,0xe3,0x45,0x12,0x53, +0x71,0xb6,0xfa,0x74,0x1d,0x25,0x28,0xf8,0x11,0x23,0xc9,0xe6, +0x13,0x32,0x20,0xc6,0xb0,0x29,0x75,0x49,0xf5,0x09,0x8d,0xda, +0xf1,0x7c,0x84,0x55,0x98,0x4d,0x88,0x1d,0x87,0xf5,0x86,0x90, +0xcc,0x68,0x23,0x3f,0x17,0xc7,0xe3,0x57,0xeb,0x4b,0x8d,0xf9, +0x8e,0x92,0xa6,0xf2,0xba,0x6a,0x4e,0xd4,0xbd,0x2c,0x9c,0x65, +0xbb,0x47,0x1a,0xaf,0x57,0xdc,0xe1,0xe0,0x3c,0x3e,0x24,0x70, +0x76,0x00,0xcf,0x82,0xdb,0x2e,0x74,0xc3,0x28,0x43,0x88,0xc2, +0x4a,0xcc,0x32,0x54,0x8c,0x1d,0xc0,0x4a,0x46,0x19,0x5e,0x09, +0x6e,0x24,0x32,0x39,0xea,0xec,0xa1,0x88,0x70,0x29,0x4f,0x68, +0x0a,0xcc,0xe9,0xc3,0x39,0x60,0x68,0x80,0x86,0xb8,0xcd,0x18, +0x56,0x33,0x61,0xa8,0x6c,0x87,0x5f,0x51,0x4e,0x3a,0xbd,0xde, +0x8a,0xff,0x15,0xb8,0x6a,0x18,0x17,0xf7,0x86,0x8b,0x13,0x6b, +0x07,0x85,0x33,0x52,0x1e,0x8e,0xb4,0x84,0x72,0x1c,0x2e,0xaf, +0xab,0x55,0x12,0xbe,0x90,0xaa,0x67,0xbc,0x2f,0xbc,0x31,0x64, +0x0c,0x35,0xac,0x2f,0x4e,0xc5,0x4f,0x71,0x03,0x6e,0xc7,0x45, +0xb5,0xd4,0xac,0xb6,0x52,0x32,0x3b,0x06,0x54,0x32,0x60,0x2e, +0x3d,0x3a,0x1b,0x4d,0x98,0x34,0x0a,0x21,0x37,0x50,0x84,0x90, +0xde,0xaa,0x2e,0xdc,0x85,0xcf,0xfa,0x58,0xe5,0xef,0xa4,0x4a, +0x09,0xc1,0x8a,0x07,0x10,0xcc,0x8a,0xf7,0xcc,0xa4,0x04,0x21, +0x4b,0xf8,0x84,0x15,0x2c,0xa8,0x77,0x44,0x0b,0xf8,0x04,0x2c, +0x98,0x7e,0xda,0xa4,0x0d,0x47,0xfc,0x84,0x1d,0x2d,0xc5,0x65, +0xc4,0x04,0x3a,0x67,0x61,0x99,0x09,0x94,0xb1,0xa7,0x7c,0x4e, +0x04,0x1c,0xdb,0x3b,0x2f,0x58,0xe3,0x10,0x32,0x91,0x09,0x86, +0xfc,0xaf,0xf1,0xbf,0x24,0xff,0x90,0xe6,0xa9,0xbb,0xd3,0x01, +0x55,0x1d,0x73,0xa9,0x1f,0x08,0xbf,0x75,0xfd,0x35,0x58,0xa8, +0x42,0xb2,0xc1,0x4e,0x16,0xe2,0xf1,0x19,0x81,0x8f,0xa0,0xb1, +0x17,0x1b,0xdf,0xc2,0x48,0x2f,0x8e,0x5c,0xd3,0x17,0xff,0x6b, +0x08,0x96,0xc1,0x1d,0xda,0x0d,0xc5,0x23,0xc5,0x57,0xe4,0xc3, +0x10,0x0c,0x99,0x40,0x2d,0x1b,0x80,0x04,0x27,0xe0,0x66,0x5c, +0x8b,0x0b,0x6b,0x6d,0xa4,0xda,0x7e,0xcb,0x7e,0x05,0x3e,0x0d, +0x66,0xd3,0xfb,0xc8,0xc4,0x1d,0x4c,0x9a,0x91,0x12,0x2c,0x92, +0x32,0xa0,0x5b,0xa4,0xfb,0x60,0x7b,0xd9,0xd1,0x3f,0x28,0x60, +0x13,0x11,0xee,0x0a,0xc8,0x1a,0xa1,0x1e,0x41,0x07,0x3a,0xac, +0x0e,0x0c,0x5e,0x99,0x40,0x5b,0x53,0xa5,0x96,0x03,0xdd,0x4b, +0xf1,0xd8,0x74,0x74,0x60,0xb6,0xe3,0x00,0xe9,0xee,0xe8,0xfc, +0xae,0x70,0xc4,0xbc,0x84,0xdf,0x67,0x66,0xb4,0xda,0xd2,0x5e, +0x5a,0x9d,0x32,0x97,0xd4,0x98,0xd7,0xed,0x2a,0x30,0xee,0xa8, +0xe2,0xfd,0x7b,0x6c,0x6e,0xba,0x36,0xd3,0x98,0x93,0x21,0xfc, +0x49,0x1c,0x06,0xe5,0x57,0x77,0x0f,0xdb,0x38,0xf2,0x83,0x86, +0x5d,0x7a,0x4d,0xbb,0x38,0xe1,0x21,0x45,0x71,0xa7,0x60,0x6a, +0xdf,0xe8,0x64,0x63,0x98,0x82,0xa7,0x70,0xb1,0x91,0xb0,0x99, +0xdd,0x8a,0x6a,0xa8,0x81,0x53,0xd0,0x77,0x7a,0xa9,0x19,0x4f, +0x21,0xc8,0xe7,0xb0,0x0a,0x66,0x97,0xc2,0x3c,0xda,0xe3,0xb5, +0x68,0xff,0x5e,0xf7,0x40,0xfb,0xdf,0x75,0xbf,0xd6,0x80,0x46, +0x3f,0xb5,0x53,0x38,0x45,0xe8,0xc1,0x31,0x70,0x8a,0xc5,0x64, +0x8a,0xe6,0x9d,0x70,0xe2,0x4e,0x9c,0xa1,0xb9,0xa0,0xc3,0x9e, +0xbf,0xfd,0xee,0x3a,0xcc,0xae,0x07,0x65,0xda,0x81,0xbf,0x20, +0x49,0xaa,0x97,0x16,0xea,0x14,0xc6,0xc1,0x30,0x7c,0xd1,0x87, +0x5f,0xc0,0x79,0x3d,0x3c,0xff,0xa1,0x5e,0xda,0x93,0x0f,0xf5, +0xd2,0x0e,0xa5,0x1a,0x4a,0xf5,0xd2,0xfe,0xa8,0xf8,0xb9,0x89, +0x13,0xbe,0xb4,0x27,0x8f,0x7e,0xef,0x81,0x89,0x65,0xa0,0xc6, +0xb5,0x8a,0x46,0xb0,0x53,0xd8,0x33,0x20,0x16,0x61,0x1e,0x8b, +0x31,0xfe,0xb8,0x66,0x2e,0xce,0x57,0x6b,0x73,0xfa,0x13,0x56, +0x94,0x4a,0x82,0xc7,0xf1,0x2a,0xc2,0x24,0x26,0x60,0x9a,0xcd, +0x3c,0xad,0x15,0xb2,0xbb,0x8e,0x3f,0xb8,0xff,0x64,0xea,0xcf, +0x57,0xcf,0x69,0x5e,0x36,0xb4,0x76,0xf7,0xce,0xf5,0xfa,0x73, +0xcd,0x8b,0x4d,0xf8,0x37,0x5d,0x3f,0x0c,0x5f,0xbb,0xd5,0xbf, +0xeb,0xa6,0xfe,0x73,0xc3,0xe2,0x6e,0x7e,0x55,0xd7,0xae,0x01, +0xd3,0x2b,0x74,0x4e,0x8f,0x85,0x7c,0xf2,0xc4,0xee,0xbe,0xfe, +0xa0,0x5a,0xdd,0xb5,0xb6,0xbf,0xb2,0x1e,0x71,0xcd,0xd8,0xf2, +0xaf,0xb1,0xc3,0x8a,0x21,0x58,0xc7,0x86,0xec,0xb2,0x9c,0x6d, +0xb9,0x96,0xbb,0xb1,0xb3,0x69,0x8b,0xb6,0xaa,0x51,0xa8,0x9f, +0x89,0x9a,0xb5,0x24,0x30,0xd3,0xc3,0xdc,0xaa,0x6f,0xf9,0x55, +0x5d,0x50,0x47,0x86,0xdc,0xff,0xa3,0x13,0x26,0x96,0xc0,0x37, +0x5c,0x8b,0xb8,0x16,0x76,0x09,0xb2,0x7e,0x31,0x46,0xea,0x62, +0x6c,0x00,0xae,0xd1,0x40,0x0d,0xda,0xc5,0x3f,0x60,0x45,0x31, +0xac,0x3d,0x03,0x89,0x2a,0xf0,0x8e,0xd9,0x3b,0xdd,0x61,0xde, +0xee,0x15,0x16,0x77,0x5d,0xbe,0xf7,0xfc,0x49,0x16,0xc8,0x57, +0xce,0x6a,0x58,0xd6,0xbf,0x56,0x5f,0x6b,0x93,0xde,0x42,0xf3, +0x12,0x53,0xfe,0x97,0xae,0x87,0xc3,0x97,0x6f,0x75,0xef,0xba, +0xa2,0xff,0xbd,0x61,0x49,0x17,0xbf,0xae,0x4b,0x97,0x3e,0x30, +0x29,0x1d,0x0f,0x6c,0x88,0x47,0xa8,0x5b,0xa8,0x2b,0x1d,0xba, +0xdf,0xfe,0xec,0x9d,0x05,0x65,0x46,0x58,0x36,0xd7,0xe4,0x77, +0x91,0x61,0xdd,0x0e,0xba,0x1e,0x7a,0xaf,0xf5,0xf0,0xae,0xf2, +0x49,0xf9,0xe3,0x7a,0x4e,0x78,0x0c,0x29,0x44,0x50,0x13,0x1b, +0x45,0x35,0xea,0x20,0xdd,0x8d,0x77,0x98,0xcd,0x77,0x93,0x8a, +0x2b,0x4c,0x6a,0x7e,0xfe,0x7d,0xd9,0x2d,0x0e,0x26,0x33,0xcd, +0x1b,0x1e,0x6f,0x87,0x71,0x16,0xa5,0xdd,0xfc,0xfc,0x5a,0xdd, +0x16,0xc7,0x01,0x0e,0x57,0xc0,0x3e,0x82,0xfa,0xc0,0x81,0x3e, +0xd3,0x8d,0x1c,0xa1,0x0d,0x33,0xa9,0xd8,0xc4,0x19,0x0b,0x82, +0xca,0x74,0xbf,0xf2,0x7b,0xb1,0x72,0x33,0xda,0x36,0x93,0x16, +0x5f,0x7a,0x13,0x1c,0xeb,0xb4,0x1a,0x27,0x6e,0x55,0xab,0xb2, +0x50,0x02,0xfe,0x49,0xeb,0x1f,0xa0,0xaa,0x5a,0x6d,0xc8,0x42, +0x0f,0x22,0x01,0x6a,0xf6,0x48,0x27,0xc1,0xb0,0xe2,0x1e,0x91, +0xe3,0x62,0xfc,0x42,0x7c,0xd1,0xd1,0x7e,0x07,0x3d,0xbb,0xc0, +0xf3,0xae,0x45,0xb7,0xf0,0x02,0xa7,0x32,0xe2,0x20,0xfa,0x92, +0xa3,0xa9,0x47,0x4f,0x46,0x44,0x45,0x44,0xf2,0xc7,0x40,0xe5, +0x6d,0xe7,0x4c,0x30,0x92,0xa1,0x11,0x7e,0x64,0x06,0xe3,0x98, +0x08,0xfc,0xc2,0x1d,0x67,0x6f,0x41,0xe5,0x2a,0x6b,0xbe,0xff, +0xb7,0xac,0x3f,0x63,0x9e,0x51,0xbb,0x4b,0xe8,0x16,0xce,0x49, +0x99,0x85,0x67,0x8e,0xab,0x8d,0xe0,0xba,0x8a,0x4a,0x25,0xd0, +0xbb,0x46,0x8e,0x66,0x30,0x95,0x03,0x75,0xcf,0xb2,0x9e,0x71, +0x4d,0x94,0x76,0x98,0xe2,0xd2,0x59,0x14,0x5a,0xb0,0x76,0xa8, +0xb1,0x81,0xce,0x7d,0xfa,0x93,0x67,0xc1,0x37,0x37,0x37,0x74, +0x16,0xd6,0x71,0xe2,0xcc,0x6e,0x61,0x21,0x1b,0x17,0x73,0xfa, +0x5c,0xb4,0xda,0x73,0xe4,0x2b,0xeb,0x96,0x81,0x0a,0x75,0x5b, +0xa7,0x0f,0x1d,0x52,0x01,0xdd,0x41,0x02,0xc6,0x77,0xd0,0x98, +0xed,0x9a,0x02,0xc6,0x77,0xe9,0x16,0x1d,0x31,0x8e,0x80,0xe3, +0x1d,0x74,0x94,0x76,0x39,0xde,0x95,0xbe,0xe6,0x85,0xb1,0xc2, +0x5d,0x02,0xbb,0x32,0x61,0x61,0x11,0xa8,0x36,0xbc,0xde,0xf3, +0xab,0xfb,0x2f,0x4e,0xa5,0x6d,0xfc,0x86,0xd2,0x8d,0x45,0x1b, +0xf3,0xae,0xe7,0x5f,0x2e,0x19,0xa9,0xb4,0xad,0xe1,0xb7,0x39, +0x6c,0x70,0x5f,0xe9,0x83,0x2a,0x35,0x38,0xa5,0x08,0x27,0x67, +0xfa,0x59,0xf3,0x7f,0x85,0xc2,0x98,0xbd,0x30,0x66,0x0f,0xb2, +0x7b,0xf0,0xcb,0x20,0x9c,0x11,0xce,0x29,0x5e,0xcf,0x21,0xe2, +0x31,0x26,0x29,0x3f,0xb1,0xe0,0x62,0x81,0x51,0x32,0x1f,0xe1, +0x15,0xe6,0x15,0xe2,0xcd,0xe1,0x53,0x19,0x74,0x30,0xdb,0xa6, +0x4f,0x5f,0x8c,0x64,0x77,0x99,0x39,0x3f,0x52,0xd1,0x5f,0xd3, +0xd1,0xc8,0xa1,0x38,0x04,0x6b,0x05,0xa7,0x05,0xb4,0x5b,0x49, +0xe6,0x4a,0xb0,0x8d,0x69,0x4a,0x4b,0xad,0x56,0x17,0x66,0x8b, +0x7e,0x6c,0x56,0x7e,0x46,0x41,0x5a,0x01,0x27,0xe4,0x33,0xa8, +0x85,0xee,0x44,0x74,0xba,0xcd,0x9c,0x3e,0xad,0x24,0x38,0x32, +0xa2,0x13,0x4e,0x26,0x82,0xd3,0x46,0xd1,0x89,0xfa,0xff,0x9d, +0xd0,0x4f,0x06,0xf1,0x02,0x7b,0xea,0xe2,0xb7,0x17,0xe3,0x55, +0x61,0x35,0x9c,0xea,0xc7,0x39,0x6c,0x61,0x57,0xd1,0xed,0xb4, +0x41,0xdd,0x74,0x3e,0x78,0x97,0xff,0x0e,0xb7,0x9d,0x1c,0x3e, +0x36,0x82,0x48,0x4a,0x3d,0x0e,0x7f,0x1b,0x79,0x2a,0x52,0x0d, +0xcf,0x18,0xc0,0x71,0x26,0x08,0xa7,0xad,0xda,0x88,0x06,0xb3, +0xcb,0xf5,0x78,0xa0,0xcf,0xe5,0xc5,0x8b,0x8b,0x92,0xef,0x65, +0x2e,0xe2,0xcc,0xef,0x96,0x81,0x26,0xb2,0xe5,0xc3,0x3c,0xae, +0x7b,0xb7,0xf1,0xde,0x3e,0x50,0xe7,0x34,0xe0,0x2f,0x12,0x30, +0xec,0xd3,0xe7,0xd5,0x2c,0xf3,0xe1,0x4b,0xac,0x4b,0x8c,0x72, +0x0c,0x39,0xd1,0x11,0xa6,0x7d,0xc8,0x92,0x71,0x90,0xb2,0x64, +0x1c,0x4c,0x09,0xcc,0x11,0x4b,0x70,0x0e,0xa3,0x2c,0xd8,0x53, +0x7c,0x02,0x5c,0x79,0x57,0x65,0x69,0xe9,0xc5,0x0b,0x31,0xdf, +0xc6,0x47,0x43,0xc8,0x34,0xbe,0xa8,0x03,0x5d,0x5e,0x1f,0x8c, +0x8b,0x3c,0x76,0x24,0x4a,0x25,0x22,0x3c,0xfa,0x6c,0x7c,0xfa, +0x85,0xac,0x73,0x39,0x2a,0x10,0xd0,0x89,0xbe,0x52,0xca,0xbb, +0x93,0x19,0xd8,0x31,0xa1,0xbb,0xf5,0x5c,0x50,0xc5,0x99,0x43, +0x4d,0xd1,0x8d,0x28,0x42,0x8c,0x47,0x43,0x34,0x85,0x51,0xd3, +0xd1,0xa8,0xfe,0xdb,0x70,0x51,0xb1,0xd6,0x54,0x1c,0x65,0x7f, +0x12,0xa6,0x12,0x13,0x61,0x81,0xb8,0x15,0xbf,0x79,0xaf,0x42, +0xfb,0x09,0xd3,0x94,0x94,0x4d,0x87,0x6c,0xfd,0xe5,0x5e,0x56, +0x8c,0xc4,0xe9,0x04,0xaf,0xf5,0x5c,0xa3,0x51,0xff,0x5b,0x16, +0x03,0xd1,0x8c,0x50,0x4e,0xb8,0x1e,0x67,0xb0,0xca,0xc2,0x44, +0x21,0x86,0xc0,0xd4,0xd2,0xe1,0xf2,0xda,0xd2,0xf8,0x8b,0xb1, +0xdf,0x26,0x1d,0x83,0x82,0x99,0x7c,0x41,0x37,0x7e,0xfb,0x32, +0x34,0xee,0xb0,0xd4,0xa7,0x43,0x07,0xa3,0xcf,0x26,0xa4,0x5f, +0xc8,0x8c,0xa1,0x7d,0x4a,0xec,0xc2,0xf3,0xf7,0xf5,0x37,0xe1, +0x71,0x39,0x1c,0x66,0xf6,0x1b,0x68,0x39,0xe3,0x32,0x57,0x0e, +0x67,0xea,0x13,0x18,0xdb,0x8b,0x63,0xa1,0xc0,0x08,0x0b,0x66, +0x9a,0xbc,0xc5,0xff,0x62,0x5c,0xc3,0x9d,0xc3,0x9d,0xa4,0xd9, +0x09,0xe3,0x2b,0x7f,0xac,0x78,0x2e,0xad,0x93,0x70,0x39,0xe0, +0x1c,0xe2,0x14,0xca,0x01,0x81,0x6b,0xb4,0xa3,0x9e,0xe2,0x46, +0x5c,0xc4,0x26,0x1b,0x2b,0xc1,0xd7,0x4c,0x7b,0x62,0x2e,0xed, +0xe8,0xea,0xef,0x69,0x47,0xaf,0x4a,0x1d,0xbd,0xd2,0x7f,0x1d, +0xd2,0xe0,0x04,0x8b,0x69,0x48,0x07,0xef,0x1b,0x70,0xa2,0xb7, +0xa4,0x2c,0xe8,0x49,0x83,0x37,0xb1,0xbc,0xa7,0xb2,0xbc,0xe4, +0xe2,0xc5,0xd8,0x53,0x09,0xc7,0x20,0x6a,0xba,0x34,0x78,0x3e, +0xbf,0xd2,0xc1,0x3b,0x1e,0x15,0xf9,0x7e,0xf0,0xa4,0x8e,0x4a, +0x83,0x17,0xd2,0x85,0xfb,0xa4,0x8e,0x7a,0xca,0xc1,0x85,0x09, +0xd5,0xd5,0x75,0x46,0x35,0x17,0x0e,0x0f,0x81,0x2e,0xf9,0x8f, +0x50,0xdb,0x58,0x49,0xa8,0xad,0x20,0xad,0x38,0xa5,0x84,0x13, +0xb7,0xf4,0xdd,0xa3,0x1e,0x6c,0x1f,0x6e,0x63,0x0b,0xfe,0xa7, +0xac,0x1b,0x03,0x6f,0x30,0x95,0x98,0x0a,0xeb,0xc4,0x2d,0x38, +0x8d,0x4d,0xa2,0xe0,0xe9,0x73,0xa6,0x39,0xf1,0xfd,0xa0,0xde, +0xe8,0x61,0x47,0xb3,0xc4,0x05,0x92,0x14,0x9b,0xb2,0x38,0x9e, +0x05,0x0d,0xc8,0xa0,0x03,0xdc,0x7b,0x1d,0xc2,0xa4,0x58,0x10, +0x26,0x0d,0xf0,0x74,0xd8,0x4e,0x91,0xa0,0xb2,0xa2,0x1b,0x22, +0x09,0x98,0xe3,0x25,0x36,0x3e,0xe9,0x42,0x72,0x5c,0x32,0x17, +0x06,0x3f,0x83,0x1a,0xde,0x62,0x07,0x92,0xba,0x52,0x5b,0xd2, +0x47,0x02,0xee,0xec,0x7f,0x15,0x92,0x52,0xc7,0x6f,0x4d,0xd2, +0x4b,0x96,0x65,0x74,0xe6,0xd5,0x17,0x17,0x95,0x70,0x95,0x78, +0x8e,0x3d,0x7f,0x21,0x8e,0xfe,0x38,0xa7,0xf1,0xae,0xd6,0x26, +0xb6,0xeb,0x5c,0xf2,0xdc,0xf8,0xf2,0xd4,0xe2,0xf4,0x82,0x8c, +0x82,0xfd,0x05,0x21,0xc5,0xa1,0xc6,0xc1,0xda,0xa1,0x5b,0xc2, +0xd3,0x1c,0xf9,0xf4,0x73,0xe9,0x67,0xd3,0xce,0x71,0xa8,0xc4, +0x1a,0x5c,0x3c,0x7a,0x20,0xe2,0x80,0x54,0xd0,0x3e,0x11,0x05, +0xc5,0x3a,0xe6,0xd4,0xde,0x93,0x81,0xc7,0xf6,0x71,0x01,0x47, +0xc3,0x8f,0xbb,0x7d,0xb5,0x92,0x49,0xb1,0x57,0x7a,0xca,0xdc, +0xc8,0xce,0xaa,0xba,0xa0,0x1e,0x57,0x72,0xb6,0xf1,0x74,0x1b, +0x37,0xba,0xa1,0x46,0xe1,0x50,0x37,0xea,0x50,0xc9,0x50,0xbb, +0x68,0x22,0xe6,0x47,0xe4,0xd1,0xa6,0xd1,0xdc,0x55,0x50,0xab, +0x45,0xb5,0x76,0xf8,0x1a,0x34,0xf0,0x07,0xd4,0x80,0x59,0xb8, +0x9e,0x0d,0x38,0xe9,0x7f,0xc2,0xef,0x24,0x07,0x5f,0x9a,0x23, +0xcf,0xee,0x3b,0xb5,0xef,0xe4,0xbe,0x53,0x17,0xac,0x78,0x98, +0x93,0x20,0xe9,0xed,0x7d,0x9e,0xc9,0xad,0x83,0x7a,0xa2,0x8d, +0xfb,0xaf,0xb0,0x82,0x59,0x30,0xf9,0xf6,0xdb,0xd3,0xa7,0xd5, +0x20,0x88,0xf1,0x09,0x72,0xdd,0x6f,0x73,0xc0,0x29,0xcd,0x3d, +0xc3,0x2b,0x87,0x03,0x2f,0xb4,0x21,0xc6,0x18,0xd1,0xc7,0xc2, +0x66,0x74,0x20,0x62,0x62,0xa5,0x90,0xc8,0x88,0x89,0xa8,0x44, +0xaa,0x84,0x44,0x57,0x76,0xf4,0x4b,0xfc,0x93,0xb4,0x56,0x55, +0x34,0x65,0xd7,0x98,0xa4,0xf3,0x7b,0xdd,0x3c,0x5d,0x6d,0xdc, +0x39,0xa1,0xe1,0x25,0xc9,0x09,0x4c,0xf3,0x4d,0xf1,0xee,0x48, +0xe6,0xc3,0xca,0x82,0x0a,0xf7,0x65,0x72,0x68,0x1d,0x42,0xd2, +0xf6,0x24,0x7b,0x5c,0x74,0xeb,0x8b,0xe7,0x0f,0x57,0x84,0x54, +0xee,0xcf,0xe7,0xd0,0x33,0x92,0xc4,0x7b,0x9d,0x77,0x3a,0xeb, +0x34,0x1c,0xcb,0x1f,0xab,0x8f,0xac,0x09,0x2f,0xa1,0xb1,0xa3, +0x52,0xf1,0x03,0x91,0xa1,0xd5,0x66,0x54,0xc1,0xcf,0x90,0xab, +0x96,0xf1,0x35,0xe5,0x35,0x0d,0x95,0x1d,0x9c,0xd8,0x30,0xa2, +0x50,0x67,0xab,0x6e,0x96,0x3e,0xce,0xf9,0x89,0x13,0x46,0x51, +0x95,0x88,0x5b,0x99,0x8c,0xfa,0xf4,0x86,0x94,0x26,0xbd,0x0c, +0x5e,0x86,0xab,0x36,0xe1,0xe7,0x33,0x70,0x7c,0x8b,0x15,0x3f, +0x72,0xad,0xe7,0x7e,0xf3,0x0f,0x5c,0xc7,0xa8,0xec,0x12,0x9c, +0x83,0xcb,0x03,0x78,0x19,0x36,0xc1,0xe5,0x7e,0xba,0x59,0x07, +0xaf,0x28,0x08,0xcc,0x91,0xb2,0xae,0x0b,0xd0,0x7c,0xf4,0x93, +0x01,0x08,0x81,0x9f,0x70,0x05,0xae,0x7e,0x6f,0x25,0x33,0x3e, +0xe8,0x4d,0x09,0x1d,0x68,0x07,0x05,0xac,0x90,0x30,0x7a,0x8d, +0xa0,0xe6,0x7b,0xdd,0x87,0xf9,0xff,0x1b,0xe4,0x8a,0x73,0x31, +0x92,0x34,0x76,0xd7,0x5e,0x2b,0x18,0x96,0x17,0xf0,0xfe,0xba, +0x1e,0x06,0x36,0x32,0x0e,0xf5,0xa7,0xec,0x19,0x72,0xb8,0xe6, +0xd4,0x62,0xe5,0xc5,0xd7,0x5b,0x54,0xeb,0x96,0xe8,0x71,0x42, +0x20,0x35,0xda,0x0f,0x68,0x58,0x1c,0x14,0x55,0xe8,0x14,0xa0, +0x57,0x9a,0xc8,0xe2,0x4f,0x32,0x42,0x1b,0x1f,0xe3,0x4f,0xd4, +0xd9,0xe9,0x48,0x79,0x34,0x3c,0x93,0x5a,0x97,0xd2,0x94,0xd4, +0x6a,0x98,0xc2,0xdb,0xe3,0x62,0x43,0x9c,0x60,0xb1,0xab,0xc9, +0x92,0x2f,0x6e,0x2c,0xeb,0x2d,0xbe,0xc6,0x35,0x8c,0xca,0x87, +0x21,0x06,0xca,0xfa,0xb1,0x8c,0xde,0xc3,0xfb,0xcd,0x7a,0x18, +0x60,0x46,0x5b,0x45,0x05,0x79,0x07,0x87,0x15,0x5f,0x63,0xfb, +0x68,0x34,0x0b,0x91,0xb0,0x86,0x76,0x55,0x28,0x02,0x4d,0x46, +0xf2,0x0c,0x14,0x24,0x2d,0x1a,0x19,0xbe,0x7f,0x0e,0xa6,0x70, +0xbf,0xe1,0x7c,0xc6,0x30,0x73,0xef,0xa0,0xda,0x5f,0x92,0xb4, +0x68,0x9d,0x7a,0x35,0x6b,0x9a,0xa4,0x64,0x32,0x8f,0x0d,0x8c, +0x3a,0x9f,0xab,0x0e,0xf3,0x80,0x5f,0xd0,0x0f,0xf3,0x31,0xf3, +0x89,0xfe,0x2a,0x4c,0xc0,0x85,0x7d,0xaf,0xe1,0x33,0xf6,0xc4, +0x34,0x3b,0x19,0xce,0x90,0x71,0x91,0x3b,0x88,0x7b,0x98,0x6b, +0x98,0x4b,0x38,0x07,0xa1,0xef,0x5f,0x98,0x18,0xfe,0xa7,0x84, +0xd9,0x39,0xd6,0xe6,0xe0,0xbf,0x4b,0x98,0xd5,0xc6,0xd7,0x27, +0x48,0x25,0xcc,0x4a,0x3f,0x94,0x30,0x7b,0xc9,0xb4,0xa6,0x4a, +0x2f,0x4c,0xda,0xd8,0xba,0x94,0xda,0xd4,0x9a,0x34,0x4e,0x10, +0x32,0x89,0xb8,0x80,0xc9,0x28,0x4f,0x2b,0x4f,0xaa,0x94,0x65, +0xf2,0xb6,0xc8,0x6d,0x9e,0x81,0x9f,0x6c,0xae,0xb0,0xe4,0x6f, +0xb5,0xf6,0xf6,0x36,0x0e,0x72,0x97,0xc4,0xd9,0x03,0x30,0x09, +0xea,0xbb,0xb0,0xfe,0x19,0xd4,0x76,0x60,0xed,0x33,0xb8,0xf1, +0x9f,0xb1,0x99,0x24,0xe5,0x18,0x35,0x26,0xb5,0x1a,0x48,0x63, +0xb3,0xcc,0x10,0x3f,0x32,0xdc,0xd8,0x68,0xc5,0x57,0xb6,0x57, +0x8e,0x94,0xdd,0xe6,0xea,0xa5,0xb1,0x89,0x85,0xac,0x3e,0xcc, +0xa2,0x63,0x93,0xd5,0x4f,0x37,0xeb,0xa1,0x99,0x8e,0xcd,0xe8, +0x6c,0xf2,0x13,0x1c,0x51,0xec,0xc3,0x9e,0xd1,0xeb,0x2c,0x44, +0x0b,0xe7,0x08,0xee,0xa4,0x8e,0x69,0x27,0x83,0x3b,0xf1,0x36, +0x81,0x9d,0xd8,0x8d,0x3b,0xe9,0x38,0x05,0x09,0xc9,0xc4,0x14, +0x0f,0x52,0xda,0x71,0x3a,0xeb,0x74,0x76,0x8e,0x2a,0x1c,0x02, +0xdb,0x3e,0xfc,0x92,0x2d,0xe9,0xca,0x1f,0x48,0xeb,0x34,0xcd, +0xe2,0x83,0x0d,0x7c,0x75,0xdc,0xf5,0x38,0xcc,0x35,0xa6,0x10, +0x7c,0x3f,0xe3,0x77,0x2a,0xf0,0xd4,0x5e,0x35,0x1c,0x0f,0x07, +0x4d,0xb0,0x81,0x72,0x85,0x10,0x54,0xb6,0xde,0x3d,0x57,0x4b, +0x02,0xc9,0x13,0x7f,0x68,0xfb,0x21,0x05,0xbe,0xe2,0xa4,0x6b, +0x9c,0x10,0x2c,0x48,0x78,0xb3,0xdf,0x50,0x60,0xad,0x3c,0x88, +0xcf,0x71,0xcc,0x33,0x4c,0xb2,0xe1,0x84,0x8f,0xf1,0x1b,0x82, +0x67,0x3c,0x70,0x0e,0x85,0xa9,0x8b,0xd4,0x1a,0xec,0x9e,0xbe, +0x69,0x7d,0x93,0x03,0x93,0x55,0x20,0x15,0xcf,0xe1,0xd6,0xf7, +0x44,0x4a,0x83,0x69,0x4f,0x96,0xa4,0xd0,0x0a,0xc5,0x31,0x12, +0x34,0x39,0x4e,0xf0,0x04,0xe8,0xc3,0x09,0x06,0xcf,0x8b,0x9a, +0x24,0xae,0xf7,0xec,0xd0,0xe9,0xeb,0x1c,0x9c,0x40,0x63,0x6a, +0xc0,0xa1,0x82,0x3d,0x89,0x06,0xd5,0xbf,0x3b,0xa7,0x7d,0xc0, +0x21,0x1f,0x9b,0xc1,0x04,0xe6,0xf0,0xfb,0xf5,0x03,0x9b,0x28, +0x0e,0xb1,0xe2,0x07,0xff,0xc8,0x7e,0x13,0xf3,0x9c,0xe2,0x90, +0xc4,0xee,0xff,0x5e,0x3f,0x30,0x24,0xad,0x1f,0x30,0x82,0xb9, +0x47,0x52,0xa2,0x4f,0x45,0x44,0xa9,0x28,0xd6,0x04,0x12,0x50, +0x88,0x4d,0xa8,0x30,0x37,0xe9,0x10,0x9d,0xfa,0x04,0xa7,0x77, +0xa2,0x76,0x8f,0xa0,0xfd,0x56,0xd4,0xee,0x15,0xb4,0x61,0xbc, +0x38,0x75,0x1e,0x9b,0x6c,0xa4,0xf4,0x03,0x53,0x9d,0x96,0xde, +0xa0,0x2e,0x7c,0x51,0x49,0xbd,0x7c,0x2e,0x74,0x91,0x77,0xd8, +0x35,0x83,0xa1,0x00,0xbb,0x8b,0xbc,0xc5,0xae,0x99,0x1f,0x5a, +0x30,0x1e,0xbb,0x70,0x3c,0x1d,0x52,0x46,0xb1,0x85,0x84,0x6f, +0xda,0xa8,0x8b,0x46,0xd6,0xb9,0x52,0xf2,0x74,0x3b,0x28,0x3d, +0x48,0x82,0x89,0xd4,0x01,0xe1,0x18,0x46,0x37,0x3b,0x64,0x58, +0x0d,0x56,0x32,0x2d,0x69,0x29,0xd5,0xea,0xa5,0x03,0xb0,0x44, +0x9c,0xff,0x5a,0x57,0x43,0x54,0xc5,0x35,0x83,0x30,0x8e,0x55, +0x6c,0xd8,0x49,0xb4,0x68,0x68,0xf1,0x3e,0x1a,0x5b,0xa4,0xfe, +0x27,0x9c,0x5b,0xcf,0x5e,0x92,0x5e,0x62,0x5f,0x61,0xd2,0x0b, +0x53,0x8a,0x92,0x4b,0x4d,0x32,0x79,0x13,0x24,0x33,0xe7,0xa2, +0xda,0xda,0x72,0x73,0xfe,0x97,0x81,0x7b,0xc3,0x03,0x94,0xee, +0x4d,0x10,0x37,0x0c,0xc1,0x54,0x61,0x5a,0x87,0x38,0xed,0xd5, +0xfb,0xbf,0x2f,0x05,0xfa,0x64,0x21,0x57,0x61,0x42,0xb2,0x5d, +0xb3,0x9d,0xb3,0x1c,0x3b,0x33,0xf9,0x90,0xf2,0x03,0x25,0xfb, +0x4b,0x38,0x58,0xdf,0x81,0x35,0x4c,0x52,0x6e,0x7c,0xee,0x85, +0x3c,0x59,0x32,0xef,0xb5,0xde,0x7c,0x9b,0xa6,0x41,0x83,0x0b, +0x5f,0x59,0x5a,0x5e,0x55,0x58,0xcb,0x09,0x36,0x1d,0x24,0x3e, +0xef,0x62,0xde,0xf9,0x5c,0x59,0x22,0x1f,0xb8,0xd9,0x79,0x9b, +0x89,0x7e,0xb3,0x07,0x5f,0x50,0x92,0x5b,0x99,0x59,0xc9,0xfd, +0xc4,0xe4,0xb8,0x65,0x3b,0x65,0x39,0x76,0xfc,0xef,0xb3,0x19, +0x75,0x30,0x34,0x3a,0x2f,0x22,0x9a,0xe2,0x3c,0x99,0x30,0x6f, +0x03,0xde,0xc7,0x23,0x03,0xa0,0x07,0x69,0x01,0x2c,0xe5,0x81, +0x9b,0xe7,0xe2,0xbe,0x4d,0x6a,0xc5,0x72,0x70,0xbd,0x07,0x9f, +0xdf,0xca,0x7e,0xa3,0x12,0x87,0x45,0xc3,0x50,0x14,0xc7,0xe4, +0xcc,0x06,0xf5,0xed,0xe0,0xb6,0x99,0xc2,0x79,0x3c,0xfd,0x08, +0xd7,0xbc,0x82,0xa9,0xaa,0x79,0xd0,0x84,0x1f,0xe1,0x17,0x6c, +0x9a,0x85,0x54,0xa5,0xb0,0x31,0x29,0xb5,0x4a,0x1d,0x36,0xe2, +0xbb,0x87,0xc2,0xba,0x6e,0x71,0xdd,0x4d,0x56,0xf9,0x1f,0x3d, +0x45,0x38,0x11,0xb7,0x3d,0xd7,0x5f,0x2e,0x2e,0x33,0x11,0x96, +0xcd,0x15,0x55,0xd0,0x78,0x10,0x54,0xe0,0x16,0x63,0xe7,0x6c, +0xe6,0x68,0xea,0xb2,0x37,0x79,0x6f,0xd2,0xbe,0x44,0x17,0x47, +0xfe,0x96,0xe3,0x35,0x87,0xcb,0x76,0xfb,0x0f,0xed,0x8f,0xd8, +0x7f,0x98,0x3b,0xb9,0x6a,0xf9,0xa9,0x65,0x5f,0x5d,0xa0,0x5e, +0x6d,0x32,0x90,0xb3,0xb1,0x30,0x59,0x1d,0x33,0x47,0x20,0x87, +0x85,0x31,0xb1,0xef,0xce,0xff,0x71,0x31,0x6d,0x7f,0xda,0xfe, +0xf4,0xbd,0x4d,0x65,0xbc,0xec,0xb2,0xfe,0x25,0xad,0x21,0x7b, +0x6f,0xbe,0xc8,0xbf,0xc0,0x3f,0xdf,0x6f,0x5a,0x14,0x72,0x47, +0x51,0xf9,0xf8,0xeb,0xfe,0xb7,0x0f,0x9f,0x3d,0xb4,0xae,0xe4, +0xf5,0x8c,0x57,0xed,0x58,0x62,0xe0,0x93,0xe9,0x95,0xe5,0x99, +0x79,0xa5,0xa5,0xbf,0xbd,0xbf,0x9b,0x83,0x47,0xa8,0x32,0x04, +0xc6,0xa2,0xc6,0xef,0xc2,0x36,0x06,0xef,0x8a,0xf7,0xc9,0xef, +0x66,0x4f,0x2c,0x1f,0x19,0x57,0x35,0xf3,0xab,0xfa,0x56,0xb7, +0x2f,0x68,0xe3,0xc4,0x01,0xb4,0x25,0xbf,0x37,0xbe,0xe8,0x1e, +0x19,0xb2,0xab,0xe4,0xf5,0x4d,0x57,0x5b,0xcc,0x97,0x44,0x53, +0x86,0x14,0x33,0x09,0x7c,0xd6,0x85,0x9f,0xc1,0x64,0x23,0x9c, +0x8c,0xcb,0x60,0xb2,0x09,0xdd,0x4c,0x94,0xc3,0x44,0x9c,0x85, +0xea,0xa6,0x42,0x7d,0x0f,0xaa,0x32,0xe2,0x4d,0xa8,0x24,0x09, +0xab,0xdb,0xb4,0x9f,0x6e,0x29,0xe9,0xe0,0x37,0x5e,0xb3,0x96, +0xb2,0xf9,0x76,0x30,0x41,0x9b,0x6d,0x37,0xcd,0x95,0xb2,0xf9, +0x5e,0xdf,0xea,0x7d,0x92,0xfc,0x23,0x27,0x64,0xe0,0x34,0x42, +0x0f,0x5b,0x06,0xb3,0xa8,0x4f,0x45,0x6a,0x83,0xdf,0xf4,0xe0, +0x37,0x30,0xf1,0x55,0x37,0x46,0xcb,0x9e,0xe3,0x44,0x5c,0x68, +0x0a,0x0b,0x71,0x84,0x91,0x47,0x9a,0x1e,0x31,0x93,0x34,0x6a, +0xe1,0xd3,0x34,0xf8,0xba,0xe0,0xa7,0xc2,0x93,0xdd,0xbc,0x43, +0x84,0xf5,0x61,0x69,0x99,0x5a,0x3c,0x4e,0x21,0x6d,0x70,0xcb, +0xb2,0x5f,0x30,0x15,0xb5,0x45,0x53,0x56,0xf8,0x04,0x8a,0x09, +0xde,0x02,0x96,0x8e,0xad,0x78,0x9c,0x62,0x98,0x94,0xee,0x44, +0x49,0x80,0x36,0x81,0x8f,0x32,0x38,0x6c,0x2a,0x65,0xef,0x1d, +0x82,0x39,0x24,0xc7,0x34,0x77,0x7d,0x82,0x51,0x9b,0x94,0xbd, +0x17,0xf8,0xc3,0xde,0x6e,0x4e,0x58,0x44,0x99,0x39,0xdc,0xa2, +0x00,0xfe,0x16,0x23,0xd5,0xfc,0x72,0x25,0x51,0x29,0x47,0x4f, +0x1f,0x8a,0x8c,0x88,0xe0,0xa3,0x29,0xff,0x55,0xa5,0x37,0x05, +0x86,0xc6,0x94,0x66,0xcc,0x31,0xa5,0x98,0xe9,0x10,0x7e,0xee, +0x84,0xd3,0x34,0x70,0x6a,0x8d,0x15,0x7f,0x1f,0xc6,0x14,0xff, +0x15,0xfb,0x0b,0x9d,0xa6,0xf9,0x7d,0xc2,0xd9,0x7f,0x4f,0xd3, +0x1f,0x71,0x7d,0x75,0xb5,0x12,0x3c,0x87,0x4b,0x64,0xff,0x15, +0xb7,0x17,0x9e,0x7d,0xe6,0x01,0x7c,0xa9,0x41,0xf9,0xaa,0x4c, +0x6d,0x0e,0x0e,0x80,0x3b,0xf1,0x5d,0x67,0x35,0xdd,0x74,0x7d, +0xfb,0x1e,0xbe,0xeb,0x61,0x2f,0x30,0x45,0x0f,0x39,0x71,0x01, +0xba,0x11,0xbf,0x2b,0x36,0x2f,0x5d,0xbb,0x2d,0x7c,0xf9,0x4a, +0x93,0xa6,0xe5,0xf9,0x3b,0x39,0x50,0xa9,0x24,0x11,0x8e,0xfb, +0xcc,0x03,0x68,0x6c,0xd2,0x33,0x81,0x25,0xcc,0x1e,0x63,0x77, +0x63,0x77,0x9b,0x41,0xdf,0xcb,0xee,0x57,0x5c,0x76,0xcb,0x57, +0x39,0xe1,0xb8,0x3d,0x05,0x72,0x1e,0xd8,0xb2,0x5f,0x9a,0xef, +0x5d,0x79,0x60,0xfd,0xc0,0xe2,0x9a,0x65,0x55,0x27,0xaf,0xd5, +0xbc,0xb9,0x75,0x5b,0xc3,0xc0,0x95,0x86,0xc7,0xf9,0xef,0xb8, +0x5f,0x7b,0xf1,0x36,0x93,0xd5,0x9a,0xd6,0x92,0x50,0xcb,0xc1, +0x18,0x34,0x27,0x7b,0x97,0xb9,0x6c,0x33,0x35,0x94,0x17,0x5b, +0xe4,0x3b,0x64,0xe6,0xd7,0x16,0xb6,0xe7,0x76,0x72,0xca,0xaf, +0x81,0x42,0xbd,0x9f,0x84,0x35,0xcb,0x99,0x8c,0xb2,0xcc,0xda, +0xc4,0x0a,0xae,0x01,0x77,0xb2,0x17,0x72,0xe2,0x72,0x62,0x73, +0x4c,0xe3,0xf8,0x80,0x79,0x16,0x1a,0x5b,0x37,0x55,0xb9,0xf0, +0x59,0x39,0x4a,0x8a,0x2f,0x0d,0x08,0x2c,0x01,0x83,0x2e,0x34, +0x80,0x6f,0x0c,0xf1,0x1b,0xd4,0x94,0x53,0x58,0xbe,0x04,0x6d, +0x65,0x82,0x67,0x37,0x2b,0xbe,0x81,0x40,0x12,0xe1,0x73,0xc0, +0x39,0xc8,0x83,0xc3,0xd9,0x4c,0x76,0x29,0x8d,0x18,0x95,0x9c, +0x39,0x56,0x12,0x98,0xf2,0x02,0xa7,0xb0,0xad,0x53,0x60,0xca, +0xcf,0x74,0x0b,0x7f,0xd1,0xf0,0x0b,0x16,0x3d,0x68,0x01,0xd3, +0x0c,0x71,0x1a,0xea,0x99,0x82,0x1e,0x0d,0x4b,0x9e,0xa6,0x42, +0x78,0x0f,0xee,0x61,0xc4,0xef,0x21,0x8c,0xc0,0xb4,0x17,0x14, +0xf7,0xd1,0x23,0xa6,0xfd,0x4c,0xb7,0x91,0xab,0x48,0x9a,0x73, +0x9a,0x6d,0xb2,0x55,0x63,0x2a,0x1f,0xd6,0x7a,0xa0,0x31,0xb8, +0x8a,0xd2,0x07,0x3c,0x45,0x2a,0x46,0x0a,0x1e,0x27,0xdc,0xb7, +0x4a,0xe0,0x0f,0x69,0x05,0x6c,0x73,0x33,0xe4,0xe0,0x0c,0x18, +0x93,0x54,0xb3,0x24,0x93,0x8b,0x3a,0x6d,0x09,0xfc,0xe1,0x91, +0xb0,0xbe,0x90,0x0e,0x0e,0xd5,0xc2,0xc8,0x05,0xbd,0x58,0xcd, +0xd3,0xbb,0x3a,0xcf,0xf3,0x27,0xae,0x1f,0xbd,0x7a,0xf8,0x12, +0x85,0x28,0xf9,0x8a,0xb5,0x24,0xdf,0x2e,0xcf,0x26,0xc7,0xb2, +0x33,0x87,0x0f,0xae,0xdb,0x57,0x15,0x54,0xc5,0xc1,0x9a,0x6e, +0xac,0x64,0x52,0x8a,0x13,0x8b,0x2f,0x16,0x9b,0x24,0xf1,0x9e, +0x8b,0xe5,0xab,0xb6,0x69,0x35,0x3a,0xf3,0x55,0x55,0xe5,0xf5, +0x45,0x4d,0x9c,0x60,0xdd,0x4d,0x12,0x8b,0xe3,0x4b,0x2e,0x14, +0x9b,0x48,0x72,0x60,0xf6,0xab,0xf4,0x34,0x5b,0x3c,0xf8,0x92, +0xca,0x82,0xda,0xec,0x06,0xee,0x39,0x53,0x60,0x9f,0x6b,0x9d, +0x63,0xd9,0x21,0x9d,0x6d,0x7f,0xd5,0x5e,0x7a,0x36,0xc3,0x6e, +0x46,0x34,0xc4,0xcb,0x94,0x76,0xe8,0x23,0x87,0xbb,0x81,0xd3, +0xa5,0x1b,0x0d,0x13,0xd0,0x10,0xb5,0x46,0x2e,0x29,0xf8,0x81, +0x51,0x1e,0x06,0x61,0x37,0x1a,0xc1,0x4f,0x60,0x04,0x73,0x7a, +0x71,0xce,0xfb,0x0f,0xb2,0xe8,0x8d,0x26,0x84,0x3a,0x07,0x6f, +0x54,0xa1,0x9e,0xe3,0xa3,0xd7,0xa4,0x31,0x3d,0xad,0x4e,0x1d, +0x56,0xb0,0x86,0xe9,0x4a,0xa8,0x8d,0x5b,0x59,0xcb,0x13,0xf1, +0xcd,0xea,0x70,0x84,0xfd,0xa5,0x91,0xba,0xe6,0xbb,0xb7,0xdc, +0x3b,0x78,0x6d,0xad,0x99,0x3b,0x36,0x39,0x73,0x30,0x68,0x38, +0xfa,0x29,0xab,0x95,0x11,0xf0,0x9d,0x9a,0xf8,0x46,0x61,0x46, +0x51,0xb1,0x30,0x5d,0x52,0xe1,0x79,0x8e,0x2a,0x44,0x52,0xfd, +0x67,0xb1,0x88,0xb6,0x7e,0x80,0xa2,0xd5,0x6c,0xa4,0x98,0x47, +0xbc,0x7d,0xcf,0xc4,0x04,0xaa,0xc3,0x66,0x49,0xb4,0xcc,0x18, +0xa6,0x80,0x7d,0x87,0x18,0x6d,0x0e,0x11,0xf8,0x8c,0xdd,0x51, +0xb2,0x67,0xe8,0x67,0xd5,0x9f,0x0c,0x97,0xb3,0xc8,0x78,0xea, +0xeb,0x38,0xa8,0x65,0x6a,0xdd,0x6c,0xcf,0xef,0x8d,0x7b,0xa8, +0x12,0xcb,0xcc,0x4c,0x78,0xbc,0x0b,0xb4,0xbf,0x12,0xb2,0x25, +0x59,0x32,0xe5,0x7f,0xc6,0x0a,0xab,0x89,0xa0,0x3c,0x1a,0x2d, +0x2a,0x6f,0x34,0x7e,0x20,0xee,0x1c,0x16,0x76,0xc2,0x06,0x71, +0xf9,0x80,0xb0,0xfc,0x3f,0x9b,0x6d,0xe2,0xf8,0x19,0x6c,0xb2, +0xbe,0xd2,0x03,0x49,0x76,0xb5,0x4d,0x1d,0x14,0xf7,0xfb,0xd8, +0xd1,0x0b,0x70,0x8b,0xc0,0x06,0xbc,0x85,0x1b,0x18,0x08,0xfe, +0x3f,0xdb,0xdb,0x68,0x7b,0x1b,0xf3,0x41,0x62,0x74,0xc5,0x7b, +0x89,0x51,0xd5,0xff,0x21,0x31,0x1a,0xb5,0x8f,0x60,0x24,0x8b, +0x85,0x87,0x91,0xd2,0x6f,0x15,0xb5,0x2e,0x67,0xa5,0x1e,0xf8, +0x2a,0x15,0x16,0xc2,0x0d,0x55,0x61,0x35,0x44,0x32,0x4f,0xfd, +0xc8,0xe8,0x37,0x03,0x8a,0x6f,0x58,0x71,0x08,0x17,0x13,0xea, +0x3a,0x11,0x27,0xb3,0xb8,0x62,0x29,0x99,0x8b,0xcb,0xc4,0x35, +0xbd,0xf0,0x5f,0xbf,0x8b,0xa6,0x7d,0x82,0x29,0x8c,0xc5,0xe6, +0x0d,0x6c,0xaa,0xa9,0xd2,0x00,0xd3,0x90,0x22,0x8d,0xef,0x6f, +0xb8,0xfe,0x77,0x4a,0x19,0xf6,0x0b,0x6a,0xe4,0x72,0x6f,0xcb, +0x48,0x4e,0x0f,0x97,0xd7,0x0d,0x6b,0xc4,0x85,0x8f,0xf5,0xd7, +0x8a,0x5f,0xe3,0x9a,0x01,0x98,0xa0,0x08,0x5d,0x84,0x45,0xd6, +0x10,0xc8,0x06,0xd9,0x3a,0x59,0x9b,0xda,0x6e,0xb8,0x66,0xf9, +0x9d,0xef,0x6b,0xf3,0x43,0xfc,0x10,0x5a,0x01,0xc1,0x29,0x10, +0x33,0x27,0xbf,0x85,0x5f,0x59,0xaa,0x59,0x69,0x5c,0xcf,0xe1, +0x79,0xf0,0x21,0x28,0x63,0x12,0x53,0xe3,0x53,0x2f,0xa4,0x59, +0x67,0xf0,0x0e,0xdb,0xb5,0x74,0x71,0x8c,0x69,0xbe,0x2d,0x7f, +0xb9,0xbc,0xaf,0xb6,0xb1,0x89,0x83,0xad,0x4c,0x98,0xe7,0x3e, +0x2f,0x3f,0x1f,0xff,0x5c,0x97,0x02,0xbf,0xf4,0x3d,0x5e,0x7c, +0xde,0x81,0x4a,0xdf,0xfc,0xbd,0x21,0xa1,0xfb,0xc3,0x82,0xc2, +0xfd,0xf3,0xdd,0x4b,0xfc,0x33,0x3d,0x3c,0xf9,0x9c,0x03,0xa5, +0x7e,0x79,0x81,0x16,0x7e,0xc6,0x81,0xda,0xfb,0x72,0x29,0xee, +0x77,0xbc,0x4a,0x09,0xcf,0x84,0x21,0x58,0xc4,0xc1,0x0e,0x0a, +0x30,0x3a,0xf1,0xba,0x19,0x2b,0x14,0xad,0x24,0xa3,0x51,0x66, +0x94,0x32,0x59,0xe3,0x22,0x26,0xc9,0x4c,0x2a,0x49,0xff,0xa1, +0x2e,0xb5,0x11,0xbc,0x64,0xc5,0x9b,0x8e,0x44,0x6e,0xaa,0xeb, +0x88,0xe3,0x1c,0x8b,0x24,0xb5,0xcc,0x86,0x5b,0x1d,0xdd,0xfd, +0x1c,0x74,0x1d,0x26,0x2f,0x1d,0xef,0xd9,0x3e,0x34,0x2d,0x6f, +0xe4,0xd7,0xf5,0x6e,0xaf,0x5b,0x5c,0xcf,0x29,0x0b,0x7d,0x82, +0x3b,0xf1,0xb9,0xe6,0x78,0xd3,0xb3,0xa1,0xaa,0xb1,0xfa,0x52, +0xfe,0xa0,0x31,0x25,0x04,0xc6,0x2e,0xda,0xe6,0x3a,0xcd,0x7a, +0x95,0xda,0x65,0x1b,0x39,0x88,0x2d,0x22,0x6e,0x77,0x9c,0x47, +0xbc,0x6a,0x6a,0x5a,0xca,0xfb,0x0b,0x87,0xe8,0xff,0x03,0x0c, +0x5d,0x75,0x2d,0x75,0x9b,0x8c,0x6a,0xb5,0xca,0xb7,0x72,0x70, +0xb6,0x80,0x78,0x5e,0x77,0x1a,0xf6,0x68,0x28,0xa9,0xaa,0xbb, +0x9a,0xdf,0x6f,0x9a,0xc9,0x07,0x18,0xdb,0x6f,0x77,0x94,0xb5, +0xe8,0x36,0x6c,0x2b,0xd6,0xe6,0xc4,0x62,0x4f,0xe2,0x1a,0xea, +0xf4,0x3e,0x97,0xfe,0xc0,0x87,0xa2,0xa5,0xef,0x73,0x78,0x54, +0x4d,0x40,0x15,0xcf,0xb0,0x96,0xa1,0x56,0xe1,0x36,0x12,0x24, +0x95,0xea,0x1e,0x37,0xbd,0x87,0xa4,0xca,0x6c,0x8a,0xbe,0x54, +0xf7,0x58,0x12,0x99,0x86,0x56,0xb6,0x21,0xa5,0x21,0xad,0x2e, +0x83,0x03,0xb7,0xef,0x89,0xdd,0xfc,0xb5,0xeb,0x71,0x9c,0x51, +0xb1,0x25,0x7f,0xbd,0x72,0xb8,0xad,0x8d,0xde,0x52,0x35,0xe3, +0xb5,0x4d,0xa6,0xb3,0xdd,0xcc,0xb5,0xde,0xaa,0xd6,0xb2,0xd4, +0xd1,0x83,0x6f,0xf6,0x6a,0x72,0xaa,0x70,0xda,0x64,0xbb,0xd0, +0x13,0xc7,0x87,0xa4,0x9b,0xf2,0x90,0x52,0x0f,0xd6,0x30,0xfd, +0x21,0x58,0x71,0xed,0x38,0xc2,0x26,0x67,0x27,0xe5,0xc4,0xe7, +0x52,0x67,0x50,0x23,0x4c,0x23,0x7b,0x0f,0xef,0x3d,0x1c,0x48, +0x23,0xca,0xc1,0xbf,0x7b,0xa6,0x7d,0x58,0x75,0x3a,0xc6,0x94, +0xba,0xcc,0xf3,0xac,0xd3,0x41,0xe7,0x70,0x97,0xc8,0x78,0x13, +0xbe,0xe2,0x62,0x65,0x62,0x45,0x22,0xed,0xd4,0x3c,0xa9,0x4f, +0x0f,0x99,0xa6,0x94,0x8c,0x7a,0x75,0xe8,0x61,0xf3,0xe3,0x0b, +0x12,0xf2,0x13,0xb9,0x11,0xc1,0x93,0x60,0x83,0x50,0x0c,0x0d, +0x52,0xba,0xd8,0x24,0x72,0x43,0x58,0xbd,0x83,0x15,0x57,0xe3, +0x67,0xe4,0x9e,0xb0,0x7a,0x33,0x4b,0x23,0xa4,0x12,0x19,0x55, +0xb3,0x6c,0x11,0xc7,0x30,0xfb,0x4f,0xee,0x3f,0x11,0x7c,0xf2, +0x02,0x05,0x41,0x09,0xaf,0x52,0xee,0xa4,0x70,0x33,0xbb,0x85, +0x60,0x78,0xca,0x8a,0xf5,0x9b,0xc8,0x7d,0x58,0xb6,0x89,0x85, +0x2c,0x8c,0x25,0x8d,0x97,0x4a,0x6e,0x27,0x3c,0xe4,0x6a,0x30, +0xcb,0x1a,0xbc,0xd8,0xc3,0x86,0x7b,0x4d,0x3c,0xcc,0xbd,0x1b, +0x03,0xdb,0xf6,0x0f,0x58,0x07,0xf3,0xd9,0x3b,0x8b,0x8d,0xab, +0x2d,0x3c,0x1c,0x1d,0xdc,0xad,0x7c,0x4b,0xed,0xf8,0x96,0xc2, +0x86,0xaa,0xca,0xfa,0x4a,0xe7,0x06,0xb7,0x76,0x8f,0xe2,0x66, +0xde,0xbc,0xc2,0xa1,0xcc,0x93,0xfa,0xc8,0x2c,0x70,0x24,0xeb, +0x71,0xd9,0x77,0x2c,0x92,0x09,0xb0,0x6c,0x2b,0x63,0x13,0x29, +0x8f,0x32,0x3d,0x42,0x9f,0xb3,0xa1,0x62,0x0d,0xf1,0xdf,0x6a, +0xbb,0x73,0x8b,0x49,0x85,0x03,0xdf,0x56,0x5d,0xdd,0x58,0xdc, +0xca,0xfd,0xc6,0x44,0x79,0x85,0xef,0x09,0xf5,0x0b,0x4d,0x3d, +0x90,0x12,0x9c,0xe2,0xed,0xc1,0x67,0x85,0x64,0x84,0xa4,0x85, +0x44,0x84,0x85,0x1f,0x0c,0x0f,0x0f,0x49,0x3f,0x90,0x1e,0x94, +0xe9,0xee,0xc5,0x67,0x07,0xa7,0x87,0xa4,0x05,0x3b,0x7b,0xdb, +0xf9,0x59,0x06,0x14,0x5a,0xf1,0xd7,0x2a,0x46,0x1a,0x3a,0xba, +0x38,0x7b,0x68,0xaa,0x67,0x9b,0xac,0x3b,0xed,0x06,0x5d,0x4b, +0x3b,0x78,0x9d,0x6a,0x79,0x83,0x5d,0x6b,0x4b,0x6b,0xd5,0x60, +0x4e,0x2f,0x57,0x93,0x47,0xc9,0x6c,0xdd,0x03,0xfd,0x8d,0x98, +0x83,0x0b,0x7a,0x5f,0x0b,0x67,0x17,0xe2,0x3a,0x0b,0x50,0x65, +0x43,0xdd,0x7d,0xec,0x3d,0xdd,0xcd,0xae,0xba,0xdf,0xdb,0xff, +0x44,0x16,0xc6,0x17,0xe0,0xd8,0xee,0xd9,0x0f,0x56,0x70,0x58, +0xc0,0x74,0x0f,0xd4,0x5d,0x4f,0xff,0x8e,0x12,0x71,0x55,0x36, +0x2e,0x39,0x36,0x39,0x36,0x85,0x43,0x0b,0x0c,0x23,0x3e,0x21, +0xde,0xa1,0x5e,0x61,0x1c,0xf8,0x3e,0xe9,0x5d,0x05,0x7a,0xc6, +0xa8,0x37,0xcd,0xe4,0x6f,0x3c,0xc9,0x3a,0x87,0x38,0x1d,0x74, +0x8d,0x90,0x1e,0x4f,0x42,0x45,0x52,0x05,0xfd,0x6c,0x95,0x86, +0xf4,0x78,0x1e,0x30,0x8d,0x29,0x19,0xb5,0xea,0x70,0x99,0x2d, +0x4f,0x2d,0x4f,0x2f,0xcf,0xe4,0x84,0x9f,0x71,0x06,0x11,0xfb, +0xe5,0x10,0x8b,0xa6,0x94,0x2f,0x24,0xc9,0x94,0x5e,0xd3,0x49, +0x22,0x65,0x24,0xef,0x86,0x33,0x2c,0x6e,0xd8,0x4e,0x2e,0xdb, +0x5d,0x35,0xee,0x31,0xae,0x6a,0xe2,0xe5,0xbd,0x9a,0xbd,0x7a, +0x75,0x1c,0x5e,0x3e,0x49,0xcc,0x0c,0x74,0x2d,0x36,0x3b,0x57, +0x58,0xf3,0x0f,0x9a,0x2e,0x75,0xf5,0x0c,0xbf,0x7f,0x43,0x2c, +0x01,0xf7,0xa9,0xa0,0x37,0x80,0x7a,0x60,0xac,0x87,0xc6,0x28, +0x33,0x04,0x6d,0x26,0x14,0x3f,0xb3,0xa4,0x74,0x57,0x15,0xe7, +0x35,0x58,0xf3,0x30,0x0e,0x94,0x1b,0x60,0xc2,0x79,0x18,0x4b, +0x81,0x41,0xf7,0x30,0x05,0x06,0x71,0x1f,0xde,0x3b,0x7c,0x85, +0x5a,0x4d,0x75,0xa8,0x02,0x5b,0x22,0x92,0x8e,0xc4,0x86,0x1f, +0x52,0x11,0x5a,0x44,0x6a,0x34,0x36,0x8c,0x4d,0x44,0x62,0xa3, +0xba,0x22,0x55,0x67,0x34,0x87,0x5d,0x57,0xe8,0xfd,0xbd,0x1a, +0xd8,0x33,0x6d,0xe9,0x92,0x48,0xb5,0x25,0x6b,0x90,0xad,0xa4, +0x7c,0x57,0x70,0x21,0xb7,0x6a,0xae,0xb4,0xf6,0x0f,0x34,0xbb, +0x34,0x3a,0xd6,0x39,0x56,0xd7,0xf3,0x0e,0xb5,0x76,0xb5,0xd6, +0x35,0x75,0x2d,0x55,0xdd,0x65,0x83,0x96,0x05,0xbc,0x97,0x91, +0x87,0xb9,0x8b,0xad,0x59,0xbd,0xbc,0xda,0xac,0xc2,0xcd,0x89, +0xef,0x74,0xef,0x72,0xee,0x70,0x94,0xcb,0x0d,0xec,0xb4,0x5c, +0x39,0xa1,0x09,0x8e,0x10,0x58,0x86,0xb6,0x8c,0x41,0x66,0xf0, +0xa0,0x5a,0x2b,0x53,0x17,0x2f,0x09,0xfb,0x4d,0x62,0xcd,0x69, +0x40,0xd1,0x70,0x64,0x03,0x8e,0x9e,0xcf,0x53,0x87,0xb3,0x98, +0x4d,0x61,0xd8,0xb8,0xfd,0x26,0x3a,0x46,0x6a,0xe5,0xb6,0x4a, +0x37,0xaf,0x96,0xdf,0x85,0x8f,0x55,0x31,0x4e,0xdc,0x4d,0x22, +0x13,0x23,0x4e,0x87,0x1f,0x8e,0x3a,0xc2,0x1f,0x7b,0x0c,0x6b, +0xbb,0x71,0x2d,0x10,0x23,0x24,0xa8,0x2f,0xa3,0x54,0x35,0x6c, +0xa5,0xc1,0x12,0x64,0x97,0x94,0x48,0xf7,0xfc,0xb4,0xf9,0x56, +0xdc,0x43,0x2e,0x16,0x1f,0xf5,0x43,0x23,0x45,0x42,0x67,0xce, +0x45,0x4b,0xab,0xed,0x96,0xd4,0xd4,0x2a,0x09,0x07,0xf1,0x0b, +0xb2,0xb1,0x62,0x77,0xbd,0xac,0xf5,0xfa,0xad,0xc6,0xc7,0xb9, +0x4f,0xb8,0x26,0x29,0x37,0xe0,0x09,0xbb,0x5f,0xcf,0x55,0xdb, +0xc8,0x40,0xde,0xed,0x30,0xe0,0x3e,0x68,0xee,0xcf,0x57,0xef, +0x6a,0xd2,0xed,0x31,0xd6,0x37,0xdf,0x60,0x37,0xd7,0x33,0x4f, +0xce,0xff,0x5d,0xf9,0xa4,0xf5,0x4a,0x6f,0xbf,0xfc,0x86,0xcd, +0x13,0x27,0xe9,0x4b,0x73,0xc5,0x74,0xd2,0x03,0x71,0x4e,0x03, +0xb5,0x50,0xd0,0x89,0x05,0x37,0x0d,0x35,0x31,0x4e,0xfa,0x93, +0x60,0x06,0x09,0x14,0xf9,0x7d,0x26,0x27,0xd2,0x1b,0xcc,0xe3, +0x96,0x42,0x6b,0x1b,0x3b,0xba,0x86,0x62,0x8c,0xb2,0xc1,0xe2, +0x3b,0xc9,0xc3,0x5c,0x33,0x5e,0x1c,0xdd,0x32,0xa0,0x98,0x04, +0x5f,0xb3,0x07,0x0d,0xfd,0xb5,0x1d,0x77,0x71,0x5d,0xbb,0x8a, +0xec,0x8c,0x54,0xcd,0x0e,0x7a,0x1b,0xab,0x39,0x48,0x8a,0xc0, +0x95,0xcc,0xed,0xe6,0xca,0x3f,0xae,0xf9,0x35,0x5a,0x0d,0xaa, +0xc3,0x9d,0x77,0x24,0x3c,0x7f,0x5f,0x49,0x48,0xa6,0x95,0x3f, +0x9f,0xb6,0x2f,0xc7,0x33,0x71,0x2f,0x27,0xac,0x90,0x93,0x36, +0xdc,0xc4,0x66,0xe4,0xa5,0x17,0x26,0x17,0x58,0xe4,0xf1,0xfb, +0x9c,0xf6,0x7b,0xf9,0x53,0x94,0xf3,0x3d,0x7e,0xce,0xe0,0x9a, +0xe0,0x39,0x46,0xcb,0xd4,0xda,0x5d,0x95,0xfa,0x7f,0x2b,0x04, +0x4a,0x52,0x54,0x9f,0x48,0x85,0x35,0x9a,0x08,0x18,0xb5,0xa0, +0xd1,0x73,0xb0,0x6f,0x41,0xfb,0xfb,0x26,0x9b,0xa6,0x33,0xe7, +0x33,0xe2,0x32,0x62,0xd3,0xad,0x92,0xf8,0x03,0x86,0x3e,0x26, +0xae,0xd6,0x4d,0xbe,0x7c,0x6a,0x66,0x4a,0x6e,0x52,0x3e,0xa5, +0x56,0xcb,0x71,0xab,0x35,0x6c,0x9d,0x87,0x21,0x96,0x42,0x42, +0x1b,0x86,0xd0,0xe0,0x97,0xd8,0x2c,0x89,0xe7,0xac,0xee,0xc6, +0xd5,0x30,0xff,0xc3,0x46,0x03,0xf4,0xfb,0x70,0x3b,0x9b,0xdb, +0x9a,0xd1,0x91,0x50,0x27,0x4b,0xe2,0xc3,0x6d,0xf6,0x9b,0xf8, +0x99,0x71,0x38,0x85,0xc9,0x6c,0x49,0x6d,0x4e,0x6a,0x97,0xa7, +0xf0,0x3e,0x33,0xad,0xf1,0x53,0xfd,0x25,0xdc,0x4b,0xd6,0x32, +0x49,0x09,0x49,0x30,0x7b,0x28,0xf2,0x5c,0xbe,0x3a,0xf8,0xe0, +0xcc,0xa7,0x26,0x2b,0x67,0xca,0xfe,0x64,0x8f,0xcd,0x0f,0xdc, +0xb9,0x51,0xbf,0xd2,0x86,0x7f,0x79,0xab,0xe8,0x71,0x2c,0x4c, +0xe2,0x9e,0xe2,0x0e,0xc6,0x3c,0xfb,0x40,0xa3,0x5a,0x1e,0x53, +0x97,0x94,0xdc,0xa0,0x7e,0x81,0x2d,0x77,0x3a,0x9f,0x78,0x3e, +0x21,0x2e,0x41,0x45,0xfc,0xbe,0x77,0x44,0x98,0xd3,0xc7,0x8a, +0x73,0x84,0x2d,0x84,0x5e,0x7d,0x01,0x6a,0xb0,0x62,0x58,0xb2, +0x24,0xb0,0x46,0xe1,0xe8,0x46,0x36,0x70,0xa5,0xc9,0x8a,0xd9, +0x6b,0x2a,0xad,0xf8,0x9f,0x1f,0x76,0x3e,0xba,0xf0,0x92,0x8b, +0xc3,0xfb,0xfd,0x90,0xc9,0xc4,0x9c,0x3d,0x2b,0x59,0x3a,0xc1, +0x85,0x75,0xb5,0xf8,0x25,0x2c,0x38,0x9c,0x10,0xf5,0x6d,0xc4, +0x61,0x95,0x43,0x87,0x8f,0x9d,0x56,0xba,0x0b,0xba,0xbd,0xa8, +0x2b,0xe9,0xb1,0x15,0xa1,0x3f,0xa1,0x37,0xb6,0x00,0xe7,0xb3, +0xb2,0x09,0xb8,0x01,0x17,0x48,0x4b,0xdf,0x84,0xe3,0x8a,0x6f, +0x49,0x62,0x5e,0x42,0x41,0x5c,0xb6,0x6e,0x3c,0x7f,0x24,0xe0, +0x90,0xd7,0x41,0x5f,0x29,0x06,0xdc,0x55,0x18,0xc3,0x5d,0x46, +0x0f,0xbf,0x22,0xe2,0xad,0x47,0x02,0x05,0xf6,0xb7,0x28,0x8c, +0x11,0x6e,0xad,0x11,0x6f,0x31,0x30,0x22,0x72,0x04,0x4a,0x75, +0xb1,0x54,0x5c,0x62,0x2a,0x2c,0xc1,0xaf,0x46,0xe0,0x2b,0x61, +0x6b,0x0f,0x3b,0xfa,0x0e,0x62,0x89,0x1c,0x5a,0xbb,0x58,0x21, +0x4b,0x4e,0xba,0x70,0x50,0xce,0x8a,0x09,0x3b,0xe8,0x9e,0x76, +0xba,0x27,0x5b,0xda,0x33,0x24,0x67,0x29,0xf2,0x35,0x22,0xf0, +0x40,0xd8,0xb8,0x8a,0x49,0x2f,0xcb,0xac,0x4f,0xa8,0xa4,0xc8, +0x77,0x33,0x7b,0x3e,0x3b,0x2e,0x37,0x36,0x47,0x16,0xc7,0xef, +0x9d,0x63,0x35,0x5f,0x73,0x63,0xa5,0x0b,0x2f,0x89,0xf7,0xc7, +0xc5,0x71,0x0a,0xa9,0xa2,0xb0,0xac,0x15,0x65,0xb7,0xc0,0xad, +0x0d,0xdd,0x2e,0x19,0xeb,0xa0,0xb5,0x25,0x58,0x6f,0x47,0x6d, +0x2b,0xd0,0xde,0x84,0xae,0x16,0xc2,0xc1,0x76,0x0c,0x60,0xc4, +0x79,0x60,0x4e,0x0e,0xef,0x39,0xe0,0x14,0xe4,0xce,0xe1,0x37, +0x4c,0x56,0x69,0x46,0x65,0x6a,0x15,0x67,0x89,0xf5,0x04,0xf8, +0x27,0xc8,0xb3,0x2d,0x53,0x80,0x7f,0x46,0xb7,0x60,0x22,0xc6, +0x12,0xd0,0x87,0x1a,0x4a,0x3b,0xe6,0xb1,0x89,0x72,0x09,0xe6, +0x34,0xa4,0xa4,0x50,0xa2,0xbe,0x46,0x9c,0x2b,0x86,0xb3,0x08, +0x70,0x83,0xc0,0xcc,0x27,0x38,0x53,0x3a,0x64,0xe6,0x33,0xba, +0x15,0x02,0x1a,0x08,0xd6,0xdc,0x83,0x1a,0x06,0x6b,0x70,0x32, +0x81,0x9a,0x8d,0x94,0x0f,0xe3,0xae,0x93,0x14,0x1d,0xa7,0xdb, +0x24,0x59,0x36,0xa5,0xf2,0xa1,0x6d,0x07,0x9a,0x24,0x74,0xfc, +0x1c,0x4f,0x93,0xca,0x91,0xc2,0xef,0x13,0x1e,0x4a,0xe8,0x58, +0xd3,0x7f,0xab,0x84,0x8e,0x63,0x29,0xd0,0x4f,0x35,0x4b,0x34, +0x8e,0xdf,0xdd,0x9e,0xc8,0x47,0x48,0xe8,0xb8,0x93,0xc3,0x69, +0x07,0xc9,0x45,0xdd,0x98,0x6d,0xa7,0x77,0x75,0xc5,0xf1,0x27, +0x6e,0x1e,0xbd,0x26,0xa9,0xbb,0x43,0x93,0x30,0x8f,0xf8,0x84, +0xef,0x09,0xf7,0x3e,0xc4,0x41,0xa8,0x24,0xf4,0xad,0x6f,0x84, +0xfa,0xb3,0x4c,0xff,0xc4,0x58,0xd6,0xe5,0xa0,0x4b,0x84,0x5b, +0x24,0x8d,0xd1,0x65,0x17,0xcb,0x13,0xca,0x69,0x38,0x2c,0x5a, +0x24,0xc1,0xbb,0x3b,0x4c,0xd3,0x7b,0x45,0xb1,0x76,0xb6,0x2c, +0xb9,0x3c,0xb9,0x2c,0x95,0x13,0x2e,0xa1,0x82,0x50,0x1c,0x47, +0x1d,0x2d,0x2c,0x94,0x5e,0x9a,0x36,0xa9,0x2b,0xae,0x1a,0xb1, +0xe2,0x36,0xe9,0x8d,0xcd,0x3a,0xb8,0x4f,0xb1,0xe8,0xfd,0x1e, +0x2b,0x06,0xf7,0x39,0x20,0xb7,0x60,0xa6,0x5a,0xb9,0xfc,0xd9, +0xab,0x76,0x60,0x53,0x60,0x83,0x0a,0x7c,0xc9,0x4c,0x3f,0xbe, +0xe6,0xb0,0x9e,0x9a,0xd3,0x91,0xf0,0x43,0xf6,0x5f,0x19,0x4b, +0xb2,0xfa,0x97,0x99,0x81,0x82,0xac,0x2b,0x09,0xea,0x09,0x23, +0x31,0x7f,0xc1,0x72,0x55,0xdc,0x2d,0x7d,0xe1,0x93,0x95,0xad, +0x0a,0xdf,0x82,0x82,0x8c,0xce,0xef,0x53,0xcc,0x67,0xd1,0xcc, +0x9d,0xa0,0x2f,0x6e,0x02,0x5f,0x0a,0xe3,0xe4,0xc2,0x6f,0x04, +0xfc,0x5b,0xd1,0xff,0x16,0x44,0xb7,0x61,0xf4,0x65,0xe3,0xdd, +0x78,0xd0,0x12,0x0e,0x6e,0x47,0x77,0x2b,0x70,0xdf,0x8c,0xc7, +0x2d,0x84,0xf6,0x76,0x8c,0x65,0x44,0x67,0xc8,0x26,0xf1,0x6b, +0x9a,0x74,0xbe,0x97,0x98,0xea,0x96,0xab,0xf6,0xd7,0x82,0xdf, +0xaf,0x3b,0xdb,0xe2,0xb0,0x71,0xbe,0x54,0xd8,0xe3,0xd5,0xcd, +0xee,0x27,0x49,0x3f,0x72,0x30,0x09,0x33,0xa8,0xc9,0x44,0xc8, +0x9f,0x52,0x56,0x3a,0x4f,0x06,0xf3,0x28,0x78,0x30,0xa3,0xb1, +0xd4,0xfc,0x3d,0x2b,0xfd,0x28,0x0d,0xf8,0x82,0xa7,0xf9,0x27, +0x7b,0x78,0xe7,0xc3,0xf6,0x87,0x6d,0x29,0x86,0xe8,0x04,0xbe, +0x1b,0x79,0x98,0xc8,0xc2,0xb7,0xe2,0x5b,0xe9,0x19,0x3f,0xc7, +0x8f,0x71,0xed,0xfb,0x67,0xac,0x41,0xe3,0x52,0x72,0xa3,0x24, +0xf9,0x65,0x29,0x1e,0x64,0x05,0x35,0x18,0x25,0xf8,0xfc,0x1e, +0x3c,0x67,0xc4,0xb3,0x78,0x90,0x24,0x77,0x27,0x0c,0xbc,0x2f, +0x97,0x72,0x84,0xb2,0x55,0xa9,0x5c,0xca,0x01,0x98,0x4b,0x72, +0x64,0x39,0xeb,0x13,0x0c,0x5b,0x53,0xf8,0x88,0x81,0x0f,0x6c, +0x55,0x7d,0x2b,0x81,0xe7,0x9b,0xf0,0x39,0xa3,0xfc,0x2b,0xe5, +0x3b,0xf0,0x4a,0xd8,0xb0,0x8c,0xc9,0xa4,0x06,0x9c,0x28,0x19, +0xf0,0xae,0x7f,0x53,0x37,0x93,0x38,0x3e,0x70,0xae,0xf9,0xbc, +0x2d,0x1b,0xff,0x4d,0xdd,0x3e,0x07,0xca,0xdc,0xdf,0xf3,0x2d, +0x6b,0x53,0xc1,0xb3,0x87,0x15,0x7f,0xcb,0xa0,0x56,0x1a,0xec, +0x2c,0x59,0xe9,0x5c,0x26,0xa7,0x34,0xb3,0x82,0x5a,0xa9,0x30, +0x6d,0x1e,0xd9,0xb3,0xda,0x62,0xcd,0x6e,0xbd,0x0a,0x1b,0xfe, +0xe6,0x8d,0xce,0xef,0x2b,0x7f,0xe7,0xe0,0xa3,0xa3,0xa4,0x73, +0x4b,0xd3,0xaa,0x9a,0xc5,0x6d,0x25,0xbc,0xf3,0x0b,0xab,0xa7, +0xf2,0x3b,0xdc,0xa8,0x06,0xd2,0x0b,0xf3,0x2f,0xa8,0x19,0xb7, +0x51,0x73,0x7e,0x25,0x99,0x33,0x60,0x0d,0x69,0xbe,0x5a,0xf1, +0x28,0xf7,0xb5,0x69,0x36,0x1f,0xbc,0xda,0x67,0xbb,0xb3,0xbe, +0xcb,0x90,0xcf,0x8d,0xfd,0x3f,0xc8,0xf6,0xf2,0x79,0xf3,0x2b, +0x36,0x34,0xed,0x32,0xd2,0xdc,0x6a,0xba,0xd4,0x81,0x0e,0xeb, +0x8b,0x86,0xfb,0xbd,0x43,0x77,0x86,0xb6,0xdd,0x31,0x79,0x66, +0x5b,0xdc,0xcd,0xaf,0x6c,0xd8,0xde,0x6d,0x7c,0x93,0x13,0x9f, +0xfd,0x4a,0x60,0xfa,0x0b,0x9c,0x2e,0x9d,0x73,0xfa,0x2b,0xba, +0x0d,0xa7,0xbc,0xcf,0x89,0xf2,0x3e,0xcb,0xc6,0x14,0x3e,0xec, +0xdf,0x96,0xfd,0x98,0x5a,0x76,0xc5,0x48,0xe1,0x0f,0x09,0x0f, +0xde,0x5b,0x76,0xc0,0x56,0x37,0x03,0x89,0xf7,0xc9,0x48,0x8a, +0xc4,0xfb,0xb4,0xdb,0x12,0x3f,0xf0,0x3e,0x6a,0xd9,0xdf,0x1c, +0x24,0x17,0xde,0x5b,0x76,0x67,0x1c,0x7f,0xf2,0xe6,0x91,0x6b, +0x12,0xef,0xfb,0x67,0x9c,0xe2,0x02,0x19,0x3d,0x3e,0xea,0xba, +0xd9,0xe0,0x9f,0x69,0x83,0x5b,0x18,0x31,0x4b,0xa1,0x41,0xe8, +0xdd,0xac,0x57,0x68,0xb0,0x10,0x3c,0xaa,0x41,0x14,0x1a,0xb0, +0x6e,0x54,0x83,0x1d,0x9c,0x42,0x1b,0xdb,0x69,0x43,0xf9,0x1f, +0x03,0x45,0x15,0x11,0x9f,0x9a,0x82,0x01,0x2e,0xc2,0xd5,0xd4, +0xd4,0x24,0x5c,0x37,0xa0,0x98,0x8f,0x5b,0x60,0x11,0xd8,0x32, +0xa3,0x7d,0xa3,0xd5,0xe4,0x27,0xd0,0x51,0xec,0xc7,0xe3,0xa3, +0x37,0x58,0x21,0x5f,0xa1,0x42,0x60,0xd1,0x0b,0x5c,0xc4,0x8a, +0xda,0xa8,0x46,0x70,0x32,0x64,0xc0,0x64,0x06,0xf4,0x51,0x8f, +0xbc,0x65,0x4e,0xe1,0x86,0xf0,0x8d,0x1b,0x57,0xd6,0xda,0xf3, +0x4f,0x7f,0xc9,0xfc,0xf9,0x34,0x18,0x72,0x2f,0xf0,0x10,0x63, +0x90,0x1e,0x3a,0xac,0xf6,0x03,0x6e,0x14,0x57,0x33,0xf0,0x12, +0xfc,0x88,0x7f,0xb4,0x14,0x8f,0x83,0x61,0x3c,0x26,0xb1,0xa3, +0x3e,0xf0,0x29,0x25,0x31,0xd8,0x8b,0x93,0x19,0xe5,0x7f,0x88, +0x22,0x89,0x8c,0x96,0xef,0x56,0x94,0x33,0x72,0x2c,0x25,0xa3, +0xdb,0x77,0x2b,0xb6,0x33,0x7f,0x62,0x2f,0xf9,0xd7,0x67,0xda, +0xff,0x7c,0xc6,0x28,0x0b,0x47,0x14,0xed,0xa4,0x09,0xc7,0x82, +0xda,0x06,0x48,0x59,0x97,0xd3,0xcf,0x63,0xcc,0x2d,0x9c,0x7c, +0xd7,0xf0,0x25,0x35,0x69,0xa3,0xc5,0xc8,0x6d,0xc5,0x6f,0xb7, +0xe5,0x1a,0xf1,0x10,0xf7,0x08,0xa6,0x3c,0x6c,0xa4,0xe0,0xc4, +0x1f,0x97,0x13,0x31,0x56,0x5c,0x60,0x2c,0x2c,0xc0,0x15,0x43, +0xb0,0x42,0xd8,0xd0,0x27,0x6e,0x10,0x62,0x59,0xf4,0xc0,0xd5, +0x24,0xe4,0x42,0xf4,0xb1,0xa3,0x47,0xa2,0x22,0x79,0x69,0x2d, +0x56,0xda,0x85,0xec,0x6a,0xd5,0x3c,0xd3,0x00,0x76,0x8b,0xf9, +0x81,0x45,0x3e,0x6a,0xd9,0x56,0xfd,0x69,0x2d,0x19,0xc5,0x25, +0x2a,0xb1,0x31,0x67,0x4e,0x9f,0x3f,0x0e,0xb3,0x34,0xf9,0xbc, +0x46,0x25,0xf8,0x63,0x88,0x84,0x9c,0xff,0x7f,0x3f,0x6a,0xf1, +0xfb,0xa3,0x46,0x27,0xb8,0x11,0xd3,0x00,0x66,0x8b,0x79,0xf0, +0x22,0x5f,0xb5,0x6c,0x4b,0xfa,0x91,0xcc,0xe2,0xe2,0xff,0x3e, +0xf1,0x0e,0x3e,0xaf,0x19,0x3f,0xe9,0xa7,0x9d,0x89,0x3e,0x7a, +0x44,0x25,0x2a,0x52,0x3a,0x6d,0xba,0x74,0x5a,0xc1,0x33,0xef, +0xff,0x7e,0xd8,0xe2,0xf7,0x87,0x4d,0x1d,0xa0,0xbd,0xf9,0x3f, +0x0e,0x53,0xfe,0x67,0xb7,0x10,0x4d,0xba,0xc4,0x30,0x36,0x35, +0x3f,0xb9,0x30,0xb1,0xf8,0x97,0x98,0x97,0xb1,0xcf,0x2e,0x64, +0x07,0x67,0xef,0xcf,0xdc,0x57,0x5f,0xce,0xeb,0x8e,0x6c,0x18, +0xde,0xd4,0xed,0xec,0xc5,0x97,0x05,0x96,0x05,0x94,0xfa,0xe3, +0x57,0x87,0x71,0xe6,0x31,0x5c,0x78,0xa2,0xb1,0xae,0xa9,0xad, +0xaa,0x4d,0x9e,0xcd,0xbb,0x98,0xcb,0x0c,0x0c,0xe5,0x8e,0xa7, +0x1c,0xbe,0x75,0x38,0x15,0x63,0xce,0x03,0x7b,0x06,0x98,0xb3, +0x30,0xee,0xdc,0x41,0x9f,0x83,0x7e,0x21,0x01,0x1c,0xfe,0x4c, +0x43,0x0c,0xb3,0x7b,0xe7,0x12,0x73,0x5c,0x64,0x9d,0x4b,0xff, +0xbf,0xa5,0x13,0x94,0x6e,0xdd,0x7b,0xc5,0xc1,0x3c,0xe6,0xbb, +0x25,0xc0,0xea,0xc0,0x26,0xe3,0x9c,0x76,0x1e,0x67,0x34,0x2f, +0x68,0xdb,0x76,0x85,0x5b,0xb8,0x83,0x2c,0xde,0x8a,0x1f,0xdb, +0xe2,0x52,0xaf,0x2c,0x33,0x1e,0x34,0x4a,0xe0,0xf3,0x66,0x50, +0x7a,0xc6,0x89,0x1b,0xf0,0x3a,0x01,0xbf,0x4a,0x30,0xbe,0x42, +0x23,0xef,0x24,0xc7,0x6a,0x1e,0x55,0x66,0xe1,0xd6,0xdd,0xb8, +0xcf,0x9d,0x3b,0x86,0xce,0x04,0x6a,0x4b,0xe1,0xf8,0x13,0x30, +0x85,0x39,0xb6,0x75,0x3c,0x6e,0x47,0x1e,0x5d,0x36,0xe1,0xb0, +0x2b,0xa7,0xac,0xb8,0xf9,0x80,0x60,0x9f,0x22,0x54,0x7b,0x34, +0x14,0xeb,0x84,0x87,0xda,0xa3,0x5e,0x57,0x1e,0x2a,0x34,0x36, +0x5c,0x56,0x78,0xec,0x66,0x94,0xe1,0xc0,0x46,0xf2,0xcf,0x7c, +0xc3,0x7f,0xcd,0x67,0x15,0xd9,0x42,0x2b,0x69,0xc7,0x47,0x6c, +0x7c,0xfe,0xf9,0xc2,0xd8,0x92,0xfb,0x31,0x77,0x62,0xfa,0xe3, +0x52,0x43,0x52,0x0f,0x24,0x87,0xd4,0x94,0xf1,0x26,0x97,0xb7, +0xde,0xd0,0x6f,0x77,0xf1,0xe2,0x8b,0x03,0xcb,0xf6,0x94,0x7b, +0xad,0x3e,0x3a,0x3d,0x7a,0xc6,0xf1,0x9a,0x8e,0xea,0xfe,0xa2, +0x36,0xb3,0x34,0x7e,0x8f,0x99,0xb5,0x96,0x8d,0xb1,0xcf,0x29, +0x9f,0x6f,0x7d,0xa5,0x11,0xb8,0x7a,0xfa,0xc1,0xd9,0x07,0xe7, +0xa2,0xf7,0x44,0xf9,0x1e,0x0a,0xe4,0xd0,0xc3,0x02,0x76,0x33, +0x96,0x3a,0x1b,0x1d,0x71,0x82,0x4f,0x36,0xa5,0xab,0x5f,0xd7, +0xbe,0xec,0xe9,0x7a,0xce,0x5d,0x66,0x7a,0x36,0xfc,0xba,0x03, +0x3e,0x96,0x17,0x34,0xf1,0xb3,0x9b,0x36,0xb4,0xc9,0x86,0x39, +0x71,0x0f,0x68,0x92,0x44,0x9b,0x24,0xed,0x38,0xa3,0xce,0x74, +0xfe,0x48,0x6f,0xe8,0x95,0xf0,0x16,0x0e,0x3d,0xf1,0x26,0xc9, +0x7d,0x1e,0xff,0xe7,0xb9,0xbf,0xe5,0xb1,0xfc,0xf1,0x19,0x91, +0x0b,0x02,0x56,0x71,0x8a,0x31,0xe5,0x64,0xfb,0x7a,0x54,0x32, +0xc2,0xa9,0x2e,0x39,0x76,0x3c,0x4c,0xae,0x86,0x89,0xfd,0x8f, +0x5e,0x70,0xbd,0xd6,0x64,0xd9,0x7c,0xfc,0x52,0x13,0x37,0xd9, +0x64,0x51,0xfc,0xb9,0xac,0x01,0x66,0xdd,0xf9,0x03,0xc6,0x71, +0xe2,0x24,0x1c,0x25,0x60,0xd6,0x09,0x9a,0xbf,0x80,0x12,0x7c, +0xea,0x54,0xc1,0xcf,0xc2,0xf1,0x52,0x55,0x10,0x0b,0x33,0xea, +0x00,0xcc,0x7c,0x88,0xd1,0x88,0xdd,0x35,0xaf,0xdb,0xbd,0x30, +0x35,0x17,0xe6,0x9c,0x87,0x0d,0x5c,0x6d,0x0f,0x7a,0x32,0x89, +0xed,0x17,0xbb,0xce,0xf7,0xc9,0xe3,0xf8,0x03,0xa8,0xb2,0x07, +0xbf,0x31,0xc2,0x8f,0x8a,0x4d,0xf8,0xe4,0xfc,0xd4,0x8a,0xa4, +0xea,0x04,0xfc,0x38,0x07,0xc7,0xd4,0xcd,0x71,0xdb,0x6a,0xa1, +0xb5,0x4b,0xa7,0xd4,0x8a,0x1f,0x1e,0x6e,0xbb,0x54,0x75,0xbd, +0x7c,0x67,0xe3,0xee,0x1e,0x3d,0x6e,0x74,0x8e,0x42,0x9d,0x58, +0x82,0xd8,0xb6,0x19,0xd8,0x1b,0x6d,0x3b,0xfe,0x92,0x4d,0x5f, +0x4c,0x7f,0x35,0x2d,0x6f,0x22,0xcb,0xee,0xc2,0x75,0xc4,0x2f, +0xdc,0x27,0xdc,0x87,0xc6,0xd1,0xb0,0x47,0x3d,0xeb,0x40,0xdf, +0x18,0xf5,0xe7,0x9b,0xfe,0x8a,0x71,0xac,0x5b,0xb8,0xdb,0x21, +0x8f,0xc8,0x78,0x53,0xbe,0xf4,0x62,0x49,0x7c,0xa9,0x14,0x47, +0x97,0x4b,0x71,0xf4,0x3a,0xa5,0x95,0x99,0x94,0xb7,0x74,0xb2, +0xa5,0xc9,0x25,0xc9,0xa5,0x29,0x1c,0x38,0x51,0x97,0xb0,0x18, +0xd8,0x97,0x0c,0x88,0xfa,0x24,0x1a,0xa7,0x85,0xe2,0xa7,0x4e, +0x38,0xce,0x15,0xc6,0x86,0xc0,0xa7,0x47,0x61,0x3a,0x27,0x4e, +0x18,0xa5,0xbe,0xd8,0x1c,0xb4,0x70,0xca,0x7c,0x36,0xd9,0x5c, +0xe9,0x1e,0x53,0x9f,0x9a,0x52,0xab,0x2e,0xd8,0x63,0x8d,0x98, +0xc7,0xc2,0x41,0x81,0x27,0xa8,0xf5,0x13,0x68,0x49,0xef,0xec, +0xa7,0x11,0xd0,0x5a,0x80,0x5a,0x14,0x5f,0xc6,0x82,0x1d,0xe5, +0x9a,0xa4,0x02,0xd4,0x13,0x60,0x2e,0x77,0x69,0x00,0x2f,0x33, +0xc9,0xed,0x09,0x9d,0xe7,0xdb,0x4d,0x2e,0xf0,0xa1,0xb3,0xfd, +0xa7,0xdb,0x2c,0xe0,0x4a,0xa8,0x27,0x61,0xde,0x74,0xcd,0x7e, +0x6d,0xa8,0x81,0x33,0xe9,0x9f,0x39,0xf2,0x3f,0x90,0x41,0x25, +0xb9,0xe0,0xcb,0x46,0x04,0x85,0xef,0x0b,0xdf,0x5f,0x6d,0xc9, +0xe7,0x94,0x67,0xd5,0x64,0x34,0xa4,0xe1,0xf8,0xb2,0x19,0xbd, +0xff,0x8b,0xb2,0xb7,0x0e,0xef,0xe2,0xf8,0xfe,0x47,0x81,0x92, +0xdd,0x2d,0x56,0x4a,0x3b,0x30,0x81,0x36,0xc1,0x1d,0x8a,0xbb, +0x43,0x02,0xc4,0xdd,0xdd,0x3d,0x44,0x81,0x08,0x09,0x2e,0xc5, +0xe2,0xee,0xee,0xee,0xee,0x09,0xee,0xd2,0x52,0x4a,0x81,0x96, +0x96,0x96,0x1a,0x2d,0x67,0xdf,0x9f,0xb3,0xe1,0x7b,0x67,0xc3, +0xe7,0xfb,0xbb,0xf7,0x79,0xee,0xfd,0xe7,0x3e,0x79,0x1e,0x76, +0xdf,0xcb,0xca,0xcc,0xce,0x9c,0x73,0x5e,0xaf,0x9d,0x99,0xf3, +0x5a,0x60,0xba,0x7d,0xcf,0xae,0x65,0x6a,0xc2,0xf9,0xcb,0x5f, +0x5f,0xbe,0x3c,0x5d,0xd4,0x95,0x26,0x4a,0x89,0x83,0x8c,0x5d, +0xc5,0xb0,0xab,0xa6,0xf0,0x89,0x0c,0x07,0x8c,0xe5,0xca,0xd2, +0x13,0xf2,0xa3,0x55,0x8b,0x8d,0x7f,0xb9,0x73,0xf7,0x41,0xcf, +0x63,0xe5,0xf6,0x6d,0x37,0x76,0x7c,0xbf,0xbb,0xbc,0x8f,0xae, +0xbd,0xa7,0x71,0xcf,0xe2,0xa1,0x20,0x2d,0x14,0x83,0x08,0x3b, +0x7d,0x0e,0x70,0xbc,0x28,0xee,0x27,0x91,0x38,0xc5,0x17,0xc7, +0x69,0xcb,0x02,0xba,0xa3,0x7c,0x40,0x38,0x02,0xd3,0x04,0xf4, +0x60,0xa6,0x81,0x31,0x2f,0x20,0x86,0xc3,0x18,0xb9,0x42,0x31, +0x2b,0xe5,0x74,0xd8,0xd0,0xc7,0x38,0xd2,0xb1,0xe4,0x13,0x72, +0xfa,0x28,0xf9,0xab,0xed,0x0c,0x98,0xd6,0x8b,0xd3,0x40,0x5f, +0x8f,0x11,0xb4,0x25,0x06,0x30,0x9b,0x3b,0x82,0x9f,0xd9,0xe1, +0xcc,0xb9,0x38,0xbd,0xd6,0x82,0x7e,0x07,0x63,0x4a,0xde,0x45, +0xfd,0xce,0xc8,0x59,0x59,0xbf,0x18,0xc5,0xb8,0xca,0x87,0xf4, +0x51,0xab,0x6b,0x6a,0x94,0xc4,0xd3,0xf8,0x90,0x18,0x64,0x98, +0x97,0x38,0x74,0xf7,0xd6,0x75,0xb5,0xb4,0xf5,0xd8,0x97,0x53, +0x2b,0x33,0x73,0x3b,0x53,0xa7,0xe0,0xea,0xc3,0xcd,0x61,0x7d, +0x50,0x57,0x49,0x4f,0x74,0x63,0xb3,0xf3,0x89,0x8a,0x93,0xd5, +0xa7,0xeb,0x94,0xa1,0xa6,0xe4,0x64,0x37,0xd6,0x78,0x9e,0xad, +0x38,0x53,0x79,0xae,0x46,0x19,0x7a,0x8b,0x4e,0x76,0x61,0x87, +0x8f,0xd2,0xb9,0xcc,0xaf,0x19,0x3c,0x79,0x66,0xb0,0x91,0xf7, +0xfb,0xda,0xff,0x7c,0x80,0x0a,0xce,0x0b,0xbf,0x6c,0x04,0xb3, +0x92,0x2e,0x38,0x5e,0x70,0xb9,0xe8,0xaa,0x8c,0x0b,0x43,0xa3, +0x18,0x8e,0x48,0xb9,0x64,0x1f,0xe5,0x18,0xcd,0x7e,0x6e,0x0b, +0x62,0x3f,0xf7,0x64,0xa7,0xec,0xcb,0x34,0xcc,0xb5,0x56,0x5e, +0x65,0xb0,0xc0,0x0e,0x39,0x8f,0x6c,0x63,0x0a,0x42,0xd9,0x5f, +0x8d,0x3f,0x0f,0x34,0x69,0xf4,0x39,0xde,0x0a,0xac,0x0f,0xcf, +0x4f,0xbe,0x54,0x9f,0x0e,0xab,0xa8,0x59,0xb6,0x92,0x85,0xf8, +0x0f,0xb1,0xca,0xd5,0xce,0x35,0x4f,0x3a,0x60,0x4d,0x5b,0xc3, +0xaf,0xfa,0x35,0x05,0x32,0xe0,0xf6,0x48,0x3c,0x42,0x6a,0x2b, +0x2a,0x1b,0xf2,0x5a,0x05,0x58,0xcc,0x85,0xd9,0xfa,0x3b,0x79, +0xb8,0x07,0xe6,0x04,0x64,0xf8,0xa6,0xbb,0xcb,0xf3,0xc7,0xb3, +0x0e,0x65,0x07,0xd9,0xb8,0x19,0x7a,0x6b,0xf8,0xe7,0x99,0x53, +0x98,0x3f,0x00,0xe3,0x7f,0x6b,0x85,0xb9,0x42,0x05,0x2a,0x5d, +0x07,0xbe,0x05,0xf9,0x2b,0xc6,0xa8,0xe6,0xc7,0x5f,0x8a,0xbb, +0x18,0x7b,0x31,0xce,0x3c,0x89,0x1e,0x54,0xb7,0xd3,0x31,0xb6, +0x14,0xdc,0x19,0x76,0x3d,0x9e,0x18,0x71,0x31,0xe2,0x68,0x58, +0x04,0x3d,0x7d,0x31,0xe1,0xde,0xe5,0xeb,0x17,0xde,0x28,0x37, +0x0c,0x54,0xf7,0x17,0xdf,0x70,0xac,0xa2,0x41,0x26,0xfe,0x36, +0x07,0x1c,0x05,0xc8,0x37,0xc4,0x41,0x1e,0xd3,0x7c,0x71,0x32, +0x8e,0xc5,0x1d,0x2a,0x4d,0x76,0xb7,0xff,0x29,0xff,0x31,0xfd, +0x47,0xe5,0x0b,0x51,0x17,0xcf,0x5f,0x3a,0xf9,0x0a,0x37,0xd0, +0xa6,0x6a,0x25,0xb8,0x27,0xde,0x21,0xe5,0xbe,0x15,0xcc,0xaf, +0x58,0x5b,0xe9,0x39,0xed,0xf1,0x2d,0x30,0xa3,0x77,0x8a,0xae, +0xd6,0x77,0x74,0xd5,0xda,0x57,0xdb,0x96,0xd9,0xd6,0xd6,0x51, +0xd7,0x7a,0xc7,0x06,0xbb,0xda,0xfa,0xae,0xb2,0xa1,0x8c,0x1b, +0x42,0x0d,0xe6,0x99,0x83,0x0b,0x1f,0x6a,0xe1,0x6f,0xe3,0xe9, +0xe0,0x56,0xe2,0x5a,0xec,0x56,0x20,0x0c,0x8f,0x37,0x27,0x67, +0xf1,0xa3,0xe3,0x4b,0xfd,0xb6,0xb4,0x05,0xd2,0x82,0x9f,0x62, +0xdf,0x9e,0x67,0x66,0xaf,0x98,0x2b,0xcd,0x21,0x95,0x65,0x15, +0x0d,0xf9,0x0d,0x36,0x85,0xd4,0xcf,0xd6,0xcd,0xd1,0xd5,0x53, +0x00,0xaf,0x85,0x8c,0xb9,0x55,0xc2,0x1a,0x7d,0x5c,0x83,0xe9, +0xe6,0x70,0x9c,0x77,0xd1,0x5b,0xb1,0x17,0x97,0x98,0xe6,0x30, +0xdf,0xbc,0x6b,0xe8,0xe9,0xf5,0xb4,0x67,0x8c,0xb8,0x1c,0xed, +0x83,0xa3,0xd1,0x5c,0xd2,0xfa,0xef,0xf5,0x60,0x9b,0x7a,0x6e, +0x07,0xc5,0x65,0xfd,0xeb,0x87,0x5c,0x7b,0x05,0x2c,0x81,0xf5, +0xa4,0xd4,0xbb,0xd4,0x35,0xc7,0xbd,0xae,0x84,0xfa,0x97,0x7b, +0x54,0x7a,0xc8,0x1a,0x58,0x0b,0x45,0x7d,0x79,0xdc,0xad,0x1b, +0x15,0x26,0x06,0x9d,0x23,0xe3,0x6e,0x30,0x6a,0x64,0xe0,0xed, +0xdd,0x87,0x81,0x37,0x4e,0x9a,0x36,0x5f,0x1e,0x78,0x7b,0xc1, +0x55,0xa7,0x8e,0x0c,0xbc,0x55,0xf5,0xf2,0xc3,0x27,0x42,0xc9, +0xe3,0x9e,0xad,0x70,0xfe,0xa7,0x5e,0x3c,0x67,0xf0,0x2b,0x9e, +0x5f,0x65,0xf8,0x12,0xaf,0x70,0x1e,0x47,0xdc,0x23,0xdc,0x22, +0x93,0xf5,0xe8,0xab,0xe2,0xef,0x2a,0xaf,0xd7,0x9e,0xe9,0xa2, +0xbe,0xe1,0x5e,0x23,0xfa,0x3a,0x1e,0x32,0x82,0x1d,0x85,0x5d, +0x38,0x8a,0x83,0x0d,0xd0,0x45,0xde,0x61,0xd7,0xcc,0x0f,0x7b, +0xc0,0xb1,0xa3,0x1c,0x0b,0xf7,0x6d,0x8a,0x18,0x72,0x7b,0xb7, +0x9a,0x34,0x5a,0x5f,0x51,0xd5,0xc7,0xa3,0x17,0xba,0x91,0xcc, +0xb2,0xf4,0xfa,0xd4,0x36,0x8d,0x04,0x1a,0x6a,0x12,0x64,0xe3, +0xef,0x20,0x48,0x71,0x38,0x9a,0xc3,0x83,0x87,0x71,0xae,0xd6, +0x22,0x95,0x4e,0x73,0xa5,0xdb,0x30,0x3e,0x0b,0x56,0xc2,0xe9, +0xe9,0xed,0x8a,0x58,0x46,0xed,0x9a,0xb3,0x49,0x48,0xdd,0xe1, +0xaa,0xc0,0x72,0xad,0x50,0x9a,0xe5,0x9e,0xe6,0x94,0xe2,0x24, +0x40,0x91,0xb4,0x96,0x40,0x71,0x0f,0x16,0xc3,0x38,0xe8,0xeb, +0xc1,0xbe,0x67,0xda,0xeb,0x98,0xc7,0x88,0xcb,0x1e,0x19,0x0f, +0x48,0xa4,0x41,0x8b,0xf5,0x77,0xa8,0x19,0xd6,0xd9,0xd1,0xfa, +0xb2,0x9a,0xc6,0xa2,0x0e,0x01,0xec,0x19,0x26,0xce,0x34,0x84, +0x4c,0xfc,0x12,0xff,0xd5,0x57,0x5c,0xec,0xc3,0x3f,0x98,0x7b, +0xf9,0x84,0x15,0x2d,0x2e,0x33,0x36,0x33,0x3a,0xd3,0x38,0x81, +0x06,0xec,0x77,0xd1,0x34,0x35,0x6a,0xf2,0xa0,0x79,0x05,0xd9, +0xc5,0xe9,0xa5,0xc2,0x2f,0x5c,0xa6,0x57,0x86,0x7b,0x86,0xab, +0x20,0x6d,0xe3,0x5a,0x32,0x42,0x0b,0x43,0xf2,0x0e,0xe7,0x29, +0xc3,0xe6,0x76,0xac,0xe5,0x12,0x32,0xe2,0x32,0x63,0x32,0x8d, +0x92,0xa9,0xe7,0x1e,0x33,0x4d,0x35,0xe3,0x7a,0x27,0x5a,0x59, +0x58,0x56,0x56,0x28,0x8f,0xdf,0x65,0x7a,0x66,0x7a,0xa4,0x33, +0xb0,0xba,0x51,0x9a,0x05,0xcb,0xbc,0xb8,0xd0,0x73,0x61,0x67, +0xc3,0x55,0x30,0xd1,0x14,0xce,0x72,0xbe,0xba,0x3a,0xbe,0x0b, +0x3c,0xf3,0xe5,0x24,0x99,0x8d,0x37,0xdb,0x0a,0x1e,0x09,0xac, +0x34,0x1b,0x86,0xd8,0xcb,0xba,0xd0,0x81,0x17,0x1e,0xc2,0x02, +0x71,0xd6,0x2e,0xc6,0x40,0x42,0x8b,0x3e,0x3c,0x48,0xaf,0x9d, +0x1b,0xf6,0x64,0x80,0xfe,0x86,0xd8,0xb9,0x8f,0xb7,0x1e,0xab, +0x2e,0x75,0xde,0xe2,0x91,0x1f,0x2b,0x76,0xee,0x92,0x3a,0x39, +0x46,0x49,0x27,0x93,0x0b,0x29,0xe7,0x53,0xd2,0xa6,0xe7,0x41, +0xd4,0x76,0x79,0xec,0x0e,0xea,0x49,0x8b,0x94,0xcc,0x27,0xa5, +0xc4,0x27,0xc7,0x31,0x7f,0xfc,0x1e,0x6a,0xd4,0xb9,0xba,0xd4, +0x88,0xcc,0x23,0xe9,0xe1,0xa9,0xec,0x6e,0xcd,0x78,0x97,0x8b, +0x4e,0x8a,0x62,0x7f,0x66,0x89,0x34,0xd0,0xdc,0xd3,0xdc,0xc6, +0xae,0xd1,0x93,0x66,0x67,0xa7,0xe7,0xa4,0xe6,0x09,0xbf,0x72, +0xa9,0x81,0x29,0x01,0xa9,0x07,0x04,0x69,0x2b,0xd7,0x98,0x76, +0x24,0xe3,0x48,0x5a,0x78,0x9a,0x32,0x6c,0x69,0xc6,0x3a,0x2e, +0x36,0x31,0x86,0x5d,0x63,0x92,0x42,0x3d,0x8d,0x2c,0xcd,0xf6, +0xd9,0xd7,0xb0,0xaa,0xe6,0x94,0x17,0x14,0x14,0x0b,0xaf,0xd9, +0x35,0xa9,0xfe,0xc9,0x0c,0x4c,0x2c,0xc2,0x1a,0x88,0xe4,0x22, +0x42,0xc3,0x43,0xc3,0xc2,0x04,0xbc,0x65,0x09,0x71,0x9c,0x8e, +0xc3,0x7a,0x57,0x9c,0xe8,0x99,0x6b,0x45,0x61,0x61,0xf5,0xdb, +0x9e,0xdb,0x83,0x02,0x38,0x72,0xdf,0xe9,0xc0,0x18,0x53,0x58, +0xe1,0x90,0xd5,0x4a,0x71,0x5a,0xe9,0x8a,0x0a,0x9d,0x0a,0xe1, +0x25,0xeb,0x28,0x52,0x45,0xb5,0x58,0xc1,0x49,0x15,0x38,0x81, +0xd4,0x8a,0x15,0x0e,0xbc,0xe3,0x58,0x3b,0xa9,0xa2,0x9e,0x17, +0x8b,0x24,0x42,0xd2,0x8f,0xa4,0x46,0x24,0x45,0x14,0x97,0x52, +0xb3,0x2a,0xc3,0x0a,0xe3,0x22,0x0f,0x6f,0x9a,0x7a,0x34,0x3d, +0x32,0x3d,0x42,0xf7,0xcc,0xfe,0xd3,0x7b,0xcf,0xb4,0x94,0xb4, +0x56,0xd6,0x96,0x3b,0x17,0x53,0x7b,0x67,0x63,0x27,0x03,0x57, +0xcb,0x12,0x5a,0x95,0x57,0x53,0x5c,0x51,0xec,0x5c,0x48,0xdd, +0xbd,0x1c,0xbd,0x6c,0xbd,0xc3,0x62,0xc3,0x63,0x43,0x63,0x5d, +0x3d,0x68,0xbb,0x4f,0x75,0x60,0x45,0x80,0x70,0x66,0xe5,0xf2, +0x73,0x2b,0x66,0x44,0x59,0xfd,0x73,0xfe,0xdf,0x4b,0xff,0x5c, +0x52,0xc6,0x05,0x43,0xb0,0x98,0x7f,0x7a,0xf9,0xc9,0xa5,0x87, +0x51,0x02,0x2e,0xd1,0x22,0x7f,0xfa,0x3d,0xf5,0x79,0xee,0x9e, +0x57,0x4f,0xbf,0xaa,0x58,0x9b,0xbf,0x2a,0x53,0x90,0xf2,0xf1, +0x73,0x02,0x63,0x72,0x1f,0x14,0xdc,0x2d,0xf7,0xac,0xa0,0x9a, +0x5e,0x9b,0xfd,0xe7,0x31,0xff,0xa5,0x08,0x80,0x71,0x24,0x33, +0x28,0xdb,0x37,0xc7,0x67,0xc7,0xf1,0xa5,0x27,0xe6,0x9e,0x12, +0xe0,0x0b,0x68,0x01,0x67,0xbe,0x3c,0xa4,0x32,0xb4,0x26,0x2c, +0x5f,0xd6,0x0b,0x6c,0xc3,0x09,0xb7,0x76,0x31,0x4e,0xd6,0xd4, +0x29,0x19,0x72,0xe9,0x95,0xc9,0x35,0x09,0xb5,0x82,0xb8,0xbb, +0xfb,0xfd,0x97,0x46,0xe2,0x32,0xee,0x88,0x7d,0xa8,0x53,0x90, +0x8b,0x80,0xdf,0x9a,0x40,0x03,0xa7,0xb1,0x7e,0xfe,0x1e,0xdc, +0xac,0x53,0x60,0x42,0x1b,0x53,0x6b,0xd3,0x2a,0xd3,0x05,0x74, +0x84,0x12,0x54,0xe5,0x71,0xea,0x09,0x54,0x3d,0x8d,0x9f,0x9f, +0x89,0x66,0xec,0x2d,0x31,0x06,0xaa,0xe3,0xc1,0x37,0x3f,0xdd, +0x5f,0xce,0x0e,0xd9,0x51,0x48,0x1d,0xfa,0xf6,0x3f,0x33,0xef, +0x60,0xd4,0x4b,0xdc,0x47,0x5a,0xd5,0xaf,0x1a,0x7e,0x6b,0x29, +0xa0,0x3f,0x8c,0xd7,0xc4,0xf1,0xe8,0xc0,0x3d,0x69,0xef,0xef, +0xab,0xbf,0x2a,0x2f,0xc0,0x3d,0x44,0xc0,0x03,0x55,0xd1,0x83, +0x83,0xe2,0xa9,0xa0,0x0a,0x21,0xec,0xbe,0x93,0xc4,0x69,0xe2, +0x26,0x72,0xa5,0xbd,0xb2,0x29,0xbd,0xe4,0x72,0xec,0xa5,0xaf, +0xa3,0x8f,0xbf,0x9e,0x47,0x4b,0x2a,0xf2,0x9d,0xbf,0x6d,0x2d, +0xaf,0xbb,0x3c,0xa0,0xcc,0x22,0xcd,0xde,0x1a,0x87,0xe7,0x46, +0xb9,0x0d,0x74,0x77,0x93,0x7d,0x79,0x78,0x97,0x00,0x5c,0x13, +0x4e,0x38,0xcf,0xdd,0x80,0x8f,0x1b,0xf1,0xe3,0xbb,0x66,0xbb, +0xe7,0xd8,0xbc,0xdd,0xc7,0x9f,0xc3,0xd1,0xd6,0x7f,0xf3,0x47, +0x2c,0x9d,0xdd,0xd4,0xed,0x56,0xbf,0xa2,0x11,0x09,0x27,0xbe, +0x8e,0x88,0x3c,0x79,0x92,0x9e,0xba,0x78,0x39,0xfe,0x52,0xc2, +0xc5,0x44,0xe5,0x77,0x4d,0x0b,0xb8,0xf3,0x89,0x5f,0x27,0xa5, +0x4c,0xcf,0x7d,0xdd,0xb8,0x94,0x5d,0xb6,0xc4,0xe6,0x57,0xbf, +0x11,0x75,0xf9,0x23,0x2a,0x38,0xca,0xfa,0x0f,0x2e,0xdc,0xc2, +0xdd,0x71,0xbb,0x8e,0x80,0xa5,0xf0,0x2b,0x31,0x82,0xe4,0x6e, +0x1e,0x5b,0x70,0x36,0xd1,0x87,0x7e,0xe6,0x25,0x32,0xd9,0x9e, +0x11,0x44,0x77,0xf3,0x62,0xbf,0xe4,0x40,0xc4,0x09,0x92,0xbb, +0x34,0x81,0x17,0x57,0xc3,0x53,0xa2,0x89,0xef,0xaf,0xf2,0x38, +0x5f,0x97,0xf4,0x60,0xb4,0x21,0xaf,0xb8,0x68,0x49,0xb4,0xf0, +0xfd,0x15,0x1e,0xdf,0xe0,0x7b,0xd2,0x05,0x56,0x90,0xcf,0xe2, +0xed,0x13,0x1e,0xac,0x21,0x8f,0xe0,0x7a,0x9c,0x0f,0xeb,0x79, +0x85,0xe9,0x61,0xa2,0x8e,0xef,0x99,0xf9,0x8c,0xc2,0x24,0xf2, +0x6b,0xe6,0xb3,0x8a,0xf6,0x6a,0xa7,0x6a,0x6a,0xe4,0xb6,0xcd, +0x73,0x4d,0x88,0x00,0xff,0xa9,0x20,0x3f,0xf8,0xdf,0xf7,0xbb, +0xe3,0x5a,0xd4,0x44,0xf7,0x96,0x6f,0x29,0xda,0x94,0x2e,0x4c, +0xba,0x26,0x6e,0x24,0x6f,0x1b,0xdb,0xcb,0xab,0x6b,0xa2,0xa3, +0x2f,0x9d,0x8f,0x3b,0x05,0x5a,0x5f,0xd1,0x82,0xc6,0x5c,0x1b, +0x98,0xd7,0x59,0x53,0x9e,0x70,0x53,0x39,0x9a,0x4b,0xdc,0xdc, +0xed,0x04,0xf3,0xf7,0xe5,0xc9,0xf9,0x5e,0x3b,0xf4,0xca,0x83, +0x3a,0x05,0xf9,0xa3,0x8b,0x6d,0x12,0xd7,0x08,0xfb,0x5a,0x71, +0xdf,0xa0,0xa1,0x0e,0xee,0xb0,0x80,0x1d,0x36,0x7c,0x38,0x6a, +0xb2,0x2d,0x7f,0xd0,0xce,0xdc,0x0b,0xc7,0x3b,0xe1,0xa6,0x6f, +0x68,0x64,0xd4,0xd1,0xaf,0x8f,0x1f,0x65,0xe4,0xe3,0xe4,0xc5, +0x58,0x66,0x5b,0x97,0x98,0x79,0xaa,0xb7,0xe2,0xf6,0x0c,0xae, +0x1a,0x56,0xb6,0xe2,0x4a,0xf9,0x52,0x75,0x0b,0x50,0x77,0xe4, +0x4f,0x7c,0x7d,0xf2,0xdc,0x49,0x15,0xb4,0xb4,0x00,0x7d,0xee, +0xa0,0xb9,0x89,0x13,0x7e,0x6e,0x26,0x28,0xca,0xa4,0xa5,0x44, +0x9c,0x32,0xbc,0x4c,0x9a,0xc2,0x8b,0x7f,0x42,0x36,0x91,0x6a, +0xae,0x8a,0x35,0x9c,0x54,0x83,0x63,0x88,0x58,0xa3,0x2b,0xd5, +0x70,0xd6,0x63,0xc5,0x1a,0x35,0xb6,0xc5,0xe5,0x72,0x3e,0x95, +0x2f,0xb2,0x61,0x54,0xf9,0xa3,0x4a,0x97,0x06,0xba,0xd5,0x6d, +0xbe,0x37,0x4e,0x0d,0x16,0xc4,0xa6,0x4a,0xf2,0x77,0x10,0x7c, +0xec,0xf1,0xa7,0x5b,0x71,0x07,0x5d,0x58,0x82,0x13,0x4a,0x66, +0x65,0x0b,0x93,0x44,0x17,0xf1,0x7b,0x52,0x75,0xa1,0xe9,0x42, +0xcb,0xa5,0x13,0xeb,0x1c,0xf5,0x97,0x98,0x95,0x30,0x60,0x3c, +0xf6,0x5a,0xeb,0x83,0x28,0x18,0x75,0x3f,0x8a,0x21,0x7b,0x5e, +0x2f,0x23,0xa8,0x57,0xe5,0x15,0x57,0x93,0x94,0x5a,0xa3,0xfa, +0x88,0x37,0x4f,0x55,0x5a,0xb8,0x81,0xf7,0x3f,0x1e,0x55,0xa8, +0x0a,0xd3,0xf9,0xd2,0x8b,0x45,0x97,0x0a,0x2e,0xc5,0x87,0xc6, +0x87,0xc4,0x85,0x36,0x96,0x50,0xeb,0xbb,0x7a,0x8f,0x8d,0x7b, +0xec,0xbd,0x68,0x91,0x67,0x89,0x53,0x91,0xfd,0xee,0x63,0xcb, +0x4f,0xac,0x39,0x55,0xde,0x5f,0x78,0x35,0x7b,0xc8,0x38,0x99, +0x79,0x5a,0xf7,0x3d,0x76,0xfb,0x85,0x73,0x41,0xc1,0xe7,0x0e, +0xce,0x38,0xf5,0x2f,0xe3,0x39,0xcb,0x8d,0x41,0x19,0xa7,0xcc, +0x1b,0xd6,0xef,0xbe,0x0e,0xed,0x8a,0x4f,0xe6,0xc2,0x14,0x59, +0xba,0x76,0x8a,0x35,0xdb,0x5a,0xa1,0x0e,0x99,0x19,0xb1,0xc6, +0x49,0x57,0x05,0x92,0xdb,0x79,0x30,0xc1,0x38,0x32,0x1b,0xcf, +0x3e,0xe2,0x0b,0x0e,0x28,0x75,0xdd,0x4f,0x91,0x55,0x4b,0x9a, +0x50,0x87,0xb3,0xca,0x08,0xa8,0x53,0x49,0x69,0x25,0x01,0x23, +0xb2,0xb5,0xdb,0xbb,0xd0,0x89,0x17,0x7f,0x92,0xa6,0x93,0x0d, +0xc5,0x7b,0x2b,0xf4,0x6b,0xae,0xf4,0x34,0x5c,0x2b,0xbe,0x27, +0xd4,0x62,0x2c,0x9f,0x9a,0x97,0x92,0x9f,0x58,0x68,0x94,0x46, +0x9d,0xd6,0xeb,0xed,0x5a,0xa9,0x55,0x6a,0x4b,0xf3,0xd2,0x72, +0xd2,0xb3,0x33,0x4a,0x6d,0xaa,0xed,0x9b,0x1c,0x75,0x1d,0xb6, +0xba,0x2e,0xf4,0x92,0x13,0x0f,0x8f,0x2e,0xfd,0xa1,0xf6,0x66, +0xeb,0x15,0xab,0x87,0x0e,0x2f,0xdd,0x04,0xfc,0x17,0xbe,0x21, +0x97,0xa2,0x2e,0x5f,0xbe,0x74,0x59,0x80,0x83,0x9c,0xbf,0x89, +0x8b,0xb9,0x91,0xb5,0x65,0x8d,0x43,0xa3,0x7b,0x8b,0x20,0xd9, +0xaf,0x24,0x70,0x16,0x79,0x3c,0xcb,0x62,0xdd,0x3a,0xc5,0x67, +0xc4,0xc7,0xc3,0xc5,0x55,0xc7,0xcd,0x37,0xdf,0x3b,0xc7,0x2f, +0xd3,0xc6,0x9d,0x66,0x1f,0xce,0x0b,0xcc,0x0d,0xb0,0x08,0xd2, +0x39,0xb8,0x3d,0x24,0x83,0xdd,0xf8,0x64,0x2f,0x4c,0xfc,0xad, +0xf7,0x37,0xa1,0x12,0x17,0xf4,0xc2,0x8a,0x66,0x5c,0xd1,0x6e, +0x88,0x5f,0xd9,0xf1,0x51,0xd1,0x97,0x63,0x2e,0xc7,0x98,0xe7, +0x52,0x27,0x03,0x3d,0xeb,0x1d,0x6e,0x05,0x56,0xb4,0x23,0xa7, +0xb9,0xa8,0xaa,0x42,0x10,0x6f,0xe0,0x10,0x69,0x09,0xe9,0x0d, +0xbd,0x76,0x38,0xa3,0x87,0x62,0x48,0x0f,0x8e,0xe9,0x32,0xea, +0xb8,0x9e,0xd1,0x9b,0xd3,0x56,0x70,0xd3,0xf1,0x9a,0x6d,0xa7, +0x5d,0x59,0x1b,0xb5,0xae,0xd4,0xaf,0xd6,0xa9,0xec,0xad,0xaf, +0x6f,0xcf,0x1f,0x10,0x1a,0xa4,0x99,0xc6,0xf0,0x90,0xf7,0xb7, +0x75,0x75,0xb1,0xf4,0x32,0x2a,0x36,0x28,0x30,0xcd,0xf6,0xb4, +0xa2,0x0d,0xc1,0x4d,0x81,0x4d,0xfe,0x4e,0x87,0xac,0x43,0x4d, +0xc3,0x52,0xcd,0x69,0x44,0xd2,0xd1,0xc4,0x13,0x89,0x82,0x3a, +0xe7,0xa2,0xb1,0x4e,0x0d,0xbb,0x36,0x67,0x1a,0xd1,0xbe,0xd4, +0xf6,0x14,0x79,0x49,0xfa,0x4b,0xde,0xfe,0xb4,0xfd,0x69,0x87, +0x33,0xf1,0x0c,0xd8,0x2d,0x4d,0x82,0x55,0x19,0xa0,0x94,0x75, +0xaa,0x8d,0xee,0x8b,0x58,0x17,0xb1,0x2a,0x52,0x9e,0x9e,0xa9, +0xcd,0xbf,0xc5,0xb1,0x30,0xc5,0x08,0x8e,0x3a,0x27,0x76,0xd1, +0x8d,0x09,0xfb,0x93,0x8c,0x53,0xba,0x4b,0x1b,0xab,0xea,0x6a, +0xac,0x4a,0xa8,0x9b,0xab,0x91,0xf5,0x7e,0x27,0xfd,0x6c,0xdb, +0x42,0x87,0x72,0x01,0x8e,0x72,0x98,0x2b,0x7e,0x41,0x32,0x75, +0xbb,0xad,0xe0,0x13,0x0b,0x01,0x77,0x5d,0x31,0xd6,0x92,0x87, +0x50,0x3f,0x6e,0x6b,0x6b,0xca,0x1a,0x60,0xc0,0x07,0x2f,0x11, +0x49,0xad,0x43,0x54,0xe3,0x96,0x8f,0x35,0x90,0xd4,0x7a,0xf9, +0x49,0x50,0x03,0xd3,0xc8,0x73,0x58,0x29,0x4e,0xc2,0x95,0xdf, +0x82,0x7e,0x17,0xea,0xbf,0xd5,0x9f,0x83,0xda,0xc6,0xa0,0xbd, +0x19,0x97,0x4b,0x93,0x60,0xf9,0x1a,0xd4,0x33,0x04,0xbd,0x0f, +0x6a,0xa4,0xc6,0x3d,0x3c,0x8c,0x11,0x3f,0x25,0xa0,0xc1,0xc3, +0xec,0x14,0x98,0x58,0xf8,0xb2,0xca,0xb3,0x9d,0xae,0x74,0x46, +0xc1,0x17,0x77,0x1d,0x14,0x58,0x7b,0xe3,0xc5,0x43,0x38,0x5b, +0x13,0x3f,0x53,0x69,0xb7,0xb9,0x2b,0xe7,0x12,0x5e,0x7b,0x1e, +0x22,0x95,0x61,0xb7,0x54,0x30,0x24,0x16,0x80,0x4a,0x0f,0x37, +0x1c,0x58,0x42,0x70,0xf4,0x12,0x18,0xcd,0x33,0x06,0x30,0x9a, +0xcc,0x87,0xd1,0x7f,0xca,0x88,0x7d,0x35,0xf9,0x15,0xb9,0x25, +0x1c,0x2c,0x9f,0x0a,0x1c,0xe3,0x13,0xac,0x58,0xf7,0xa1,0x9f, +0xdc,0x01,0x8b,0x26,0xb4,0x68,0x86,0x5d,0x10,0x84,0xbb,0x9a, +0xc0,0xa6,0x11,0x6d,0x3a,0x0d,0x4c,0xd0,0xc1,0x06,0x1c,0xac, +0x19,0xbf,0x0d,0x82,0x5d,0x56,0xe8,0x66,0x0d,0x6e,0x7b,0x78, +0xf1,0x63,0xf8,0x8e,0x9c,0x2f,0xfa,0xba,0xac,0x72,0x3a,0x8c, +0x8a,0x7e,0x9b,0xfc,0xac,0xc0,0xb7,0x95,0xae,0xf2,0xc6,0x51, +0x47,0x70,0xda,0x29,0x01,0x53,0x4f,0xe9,0x69,0xcf,0x52,0x69, +0x73,0x69,0xfe,0x36,0xfd,0x7a,0x34,0x08,0xca,0x30,0x0b,0x8b, +0xfa,0xa1,0x08,0xc6,0x77,0x70,0xc3,0x7b,0xd2,0x89,0x19,0x4e, +0x62,0x5d,0x7d,0x97,0x19,0x69,0x87,0xc9,0x66,0x3c,0xee,0x71, +0x26,0x26,0x38,0xa9,0x93,0x1d,0x31,0x21,0x9d,0x30,0xd9,0x84, +0x47,0x6f,0xe9,0x27,0xd2,0x26,0xb6,0x98,0x0f,0x81,0x62,0x78, +0x3d,0x2a,0x78,0x51,0x01,0x61,0x44,0x6a,0xb9,0x2f,0xb6,0x70, +0x52,0x0b,0x83,0x06,0x62,0xcb,0x66,0xa9,0x85,0x9b,0xf4,0x9f, +0x89,0x11,0xc4,0x34,0xc3,0xba,0xcc,0xb9,0xaf,0xbb,0xb6,0xa3, +0xa5,0xb5,0xc7,0xae,0x8c,0xda,0x5a,0x58,0xd9,0x59,0xb8,0x84, +0x54,0x85,0x35,0x1d,0xe9,0x81,0xf4,0x11,0x96,0x90,0xe5,0x7c, +0xb2,0xe2,0xd4,0x08,0x4b,0x48,0x2e,0x3e,0xd5,0x8d,0xc9,0x5e, +0x67,0xcb,0xcf,0x56,0xc9,0x2c,0xa1,0xa4,0xe8,0x44,0x27,0xe6, +0xfb,0x2a,0x0d,0xf1,0x2f,0x0c,0x98,0xa9,0x7f,0x1d,0x30,0xc2, +0x10,0xc2,0x18,0x07,0x98,0x99,0x7c,0xde,0xf1,0x82,0xb3,0xcc, +0x10,0x26,0x87,0x45,0x19,0xc3,0x27,0x49,0x97,0xec,0x2f,0x3b, +0x45,0xb1,0x9f,0xbb,0xfd,0xd9,0xff,0xee,0xcb,0x4d,0xd2,0x48, +0x33,0xca,0xb2,0x51,0x5e,0xa9,0xb7,0xc0,0x16,0x05,0x77,0x39, +0x37,0xf2,0xc7,0x15,0x7f,0x35,0xbd,0x1a,0xac,0xdf,0xd7,0xe5, +0x70,0x35,0xb0,0x26,0xac,0x20,0xf9,0x72,0x7d,0x2a,0xac,0x94, +0x19,0x82,0x0b,0x63,0x08,0x76,0xb9,0x86,0x79,0xd6,0x49,0xbe, +0xb6,0xb4,0x31,0xbc,0xdf,0xb7,0x36,0x50,0x90,0xfe,0x07,0xc7, +0x93,0xd8,0xc6,0xa8,0xe6,0x4b,0x4d,0x02,0x58,0xf6,0x48,0x93, +0x0c,0x61,0x22,0x17,0x8e,0x9b,0xec,0x70,0xc5,0x2a,0x54,0xaa, +0x75,0xa0,0x43,0x8f,0xeb,0x7e,0xcf,0xff,0x57,0x80,0x79,0xdc, +0xf1,0x35,0x61,0x9b,0xfd,0x77,0xb8,0x97,0xb9,0x96,0x3a,0x17, +0xb8,0xdb,0xd0,0x06,0x8f,0x1a,0x97,0x0a,0x47,0xfb,0x79,0xda, +0x2b,0xd6,0x6e,0xae,0x65,0x2c,0x7c,0x2b,0xac,0xff,0x1e,0xac, +0x73,0x20,0x43,0x68,0x60,0x6d,0xd8,0xa8,0x78,0x46,0x0c,0xd1, +0x62,0x0b,0x52,0xfc,0x0c,0x85,0x6a,0x43,0x5a,0x5d,0x5a,0x59, +0x53,0xc1,0x6c,0xb8,0xec,0x9a,0x62,0x32,0x5f,0xff,0xa0,0xe2, +0x45,0xfe,0xef,0x82,0xf8,0x3b,0x7e,0x47,0xb0,0x01,0x7e,0xda, +0x8f,0x3f,0x61,0x99,0x36,0x94,0x49,0xcb,0x30,0x43,0x5b,0xfc, +0x7b,0x08,0xf3,0xc4,0x65,0x2c,0x5e,0xcb,0xb3,0xbe,0x9e,0xb1, +0x26,0x32,0xdb,0x85,0x5f,0x30,0x50,0x29,0x54,0x19,0xd1,0xd2, +0xa2,0xd2,0xca,0xe2,0x06,0x41,0xca,0xbe,0xa2,0xe0,0xf9,0xba, +0xc7,0x15,0x3f,0xe5,0xfe,0x2d,0xc0,0x13,0x69,0x32,0x79,0xc4, +0xc3,0xa8,0xdb,0x2f,0x98,0x27,0x11,0xda,0xa5,0x72,0x1d,0xd1, +0x82,0x77,0x34,0x55,0xdb,0x87,0xa3,0x35,0x05,0x16,0x8a,0xda, +0xb5,0xa1,0x5d,0x9a,0x84,0x86,0x72,0xda,0x21,0xd8,0xcc,0xb5, +0x65,0x67,0xb5,0xa9,0x8a,0x63,0xa1,0x6d,0x88,0x15,0x34,0x4a, +0xf1,0x03,0xb1,0x46,0x53,0x75,0x9c,0xc9,0x4e,0x94,0xf3,0xf3, +0x94,0x14,0x97,0xd4,0x14,0xb1,0x82,0x16,0x0f,0x2a,0x28,0x5f, +0xfe,0xa0,0xf8,0x87,0xcc,0x5f,0x85,0xac,0x35,0x44,0x4c,0x1e, +0x0e,0xc4,0xe0,0x91,0x25,0x3f,0x76,0x5c,0x5b,0x5a,0x5a,0xab, +0xaa,0xa2,0x48,0xfa,0x86,0xf5,0x98,0xb1,0x86,0xe2,0xce,0x1e, +0x5e,0x9a,0x83,0x5b,0x88,0x34,0x7d,0xf0,0x01,0x54,0xc0,0x4d, +0x1e,0x2b,0x30,0x81,0x80,0x0d,0xf8,0xa3,0x0d,0x7b,0xc4,0x31, +0xf6,0x08,0x1b,0x34,0xdd,0x87,0x33,0x67,0x8d,0x3c,0xa1,0xa2, +0xa2,0xb2,0xa5,0xac,0x5f,0x90,0xba,0x07,0x15,0x9b,0xf9,0x82, +0x1b,0x39,0xf7,0x53,0x9f,0x08,0x8a,0xd5,0xc3,0x4f,0x08,0xae, +0xcd,0xc3,0x29,0x0d,0x4b,0xfa,0x8b,0x5b,0x32,0x7a,0x13,0x6f, +0x09,0x90,0x0b,0x75,0x18,0xf7,0x37,0x34,0xf5,0x60,0xd3,0x3b, +0x9d,0x99,0xd8,0x6a,0x08,0xad,0x73,0x31,0x1e,0xeb,0xe0,0x14, +0x17,0x69,0x14,0x6a,0xe5,0xef,0x64,0x5d,0xea,0x52,0xe9,0x55, +0x63,0xed,0x4c,0x4b,0x6d,0x6b,0x1d,0x5b,0x5c,0xcd,0xcd,0xd4, +0x9c,0x17,0x79,0x14,0x18,0xd1,0x77,0x95,0x8f,0x1b,0xbb,0x07, +0xdf,0x6a,0x80,0xb2,0x25,0x6c,0x64,0x58,0xb3,0x56,0x7c,0x4d, +0xc0,0x22,0x80,0xd3,0x3b,0x6b,0x7a,0xd2,0x5a,0x05,0x0d,0x38, +0xd1,0x72,0x2a,0xda,0x71,0x51,0xcd,0x17,0x3a,0x7a,0xa7,0xe7, +0x82,0x19,0x2b,0x64,0xb9,0xe2,0x01,0x59,0x84,0x11,0xfa,0x10, +0xb1,0x00,0x2d,0xb1,0x63,0x00,0x4e,0x83,0xea,0x7c,0x16,0xfd, +0xe7,0xe1,0x04,0x5c,0xb0,0x48,0xa5,0xd2,0x18,0xbe,0x78,0x3d, +0xf4,0x22,0xea,0x17,0xe5,0x68,0x7c,0x37,0x04,0xb5,0x5c,0xf4, +0xa5,0xaf,0x2f,0x8f,0xa4,0x75,0xd8,0xd9,0xd8,0x88,0x9b,0x61, +0xf3,0x91,0xa4,0xa3,0x17,0x8f,0x84,0x2b,0x47,0x1c,0x51,0x3a, +0xc9,0xac,0x6b,0x3e,0xaa,0xaf,0x90,0x3f,0xd3,0xdf,0xe6,0xda, +0x53,0x73,0x1a,0x55,0xe1,0x00,0xda,0xff,0x01,0x67,0xfa,0xf0, +0xcc,0x1b,0x5e,0xbc,0x20,0xcf,0xc1,0xdd,0x3c,0x32,0x07,0x77, +0x36,0xd7,0xf6,0x61,0x0e,0xae,0x36,0x8f,0x16,0x66,0x64,0x58, +0x79,0x50,0xa1,0xcc,0x4f,0x52,0x5c,0x55,0x78,0x93,0x61,0x57, +0x3c,0xc0,0xa7,0x6a,0x2a,0x81,0x19,0xd7,0x99,0x95,0xd9,0xa9, +0xaa,0x48,0x19,0xee,0xd1,0xe6,0xc5,0xa7,0x72,0xca,0xa0,0x56, +0x5d,0xb1,0x95,0x93,0xf6,0x4b,0x09,0xe4,0x81,0xa8,0x0c,0x8f, +0x24,0x73,0x69,0x0e,0x7f,0x15,0x5e,0x11,0x78,0x8c,0x76,0xf8, +0x98,0x19,0xe3,0xce,0x68,0x82,0x2e,0x97,0x71,0x49,0x01,0x4e, +0xba,0xd9,0x34,0x98,0xfe,0xe8,0xe2,0xaf,0x02,0x00,0xfc,0x8b, +0x00,0xaa,0x5a,0x0c,0xa3,0xfd,0xca,0xa2,0xcc,0xaf,0xdc,0x99, +0xf5,0xa1,0x1a,0x0e,0x66,0xda,0xf5,0xc6,0x3d,0x26,0xb7,0x2d, +0x3c,0x69,0xf7,0xce,0x1e,0xbd,0x2b,0x56,0xda,0x56,0x8b,0x3d, +0x70,0x5e,0x50,0x16,0x03,0x82,0xeb,0xf2,0xdf,0xd5,0xdc,0xea, +0x83,0x69,0x5b,0x61,0xad,0x27,0x04,0x9c,0x12,0x24,0x57,0x39, +0x33,0x4c,0x04,0x03,0x51,0x11,0xbc,0xe2,0x13,0x8c,0x20,0xd8, +0x08,0x11,0xd0,0xc8,0x4d,0x7a,0x21,0x0b,0xb8,0x1e,0x12,0x27, +0xc2,0x21,0xbe,0x59,0x87,0xc0,0x3f,0xc3,0xa1,0xb8,0x62,0x64, +0x4d,0xd5,0xf4,0x0f,0xeb,0xfb,0x14,0x15,0xd2,0x4a,0x5e,0x1a, +0x8d,0x3b,0x08,0x4c,0x82,0x44,0x9c,0xc4,0xc3,0x8c,0xa9,0x46, +0x90,0xd9,0xcd,0x0f,0xef,0x1d,0x36,0x20,0xd0,0x7f,0x1b,0x4b, +0xda,0xa0,0xe4,0xc3,0xbf,0xdf,0xe0,0x09,0x5d,0x3e,0xc5,0x58, +0xa9,0x96,0xab,0x49,0x4e,0xae,0x51,0x15,0x2f,0x48,0x5b,0xa5, +0x5b,0xbc,0x18,0x29,0x96,0x12,0xe9,0xcb,0xce,0x87,0xa0,0x0e, +0xb7,0x79,0xe9,0x57,0xdc,0x43,0xd4,0x60,0xd5,0x6d,0x0e,0x26, +0xe0,0xaa,0xff,0xee,0x11,0xb6,0xb7,0x05,0x56,0x7d,0xc3,0xc1, +0x0e,0x3c,0x43,0xc0,0x11,0x3e,0x45,0x47,0x7e,0xd2,0x77,0x1a, +0xe4,0xda,0x63,0x85,0xc9,0xd6,0x6b,0x8a,0x27,0xc3,0x8f,0xb8, +0x6b,0xc3,0x86,0x44,0x41,0x41,0x1f,0xc7,0xf0,0xb8,0xc6,0x69, +0x15,0x7e,0xbe,0x44,0xa5,0xde,0x42,0x09,0xe6,0xc2,0xc7,0xf5, +0xbf,0x82,0xc9,0xf4,0xdf,0x60,0x25,0x02,0xbf,0xab,0x36,0xa8, +0x5f,0xe5,0x4f,0xae,0x21,0x31,0xbd,0x52,0x15,0xd6,0xf0,0x06, +0x49,0x4a,0xb8,0x6b,0x19,0xef,0x13,0x1e,0x5f,0xa3,0x0a,0xbf, +0x42,0xf8,0x30,0x65,0x14,0x48,0x5d,0x3c,0x4b,0xa4,0x0d,0xf0, +0x70,0x2f,0x3e,0x94,0x16,0x6a,0x89,0x0b,0x25,0x55,0xfc,0x8f, +0x96,0xa2,0xf6,0x8a,0x34,0x4e,0x54,0x15,0x37,0xb0,0xe8,0x3c, +0x4b,0xb1,0x80,0xe0,0x36,0x2e,0xf1,0xaa,0x2c,0x05,0xa0,0x1d, +0x45,0x4f,0x18,0x47,0x6a,0x86,0xef,0x15,0x70,0x9c,0xde,0x3f, +0x5c,0xe0,0x1c,0x9f,0x59,0x5e,0x9b,0x3a,0x5c,0xdb,0x5d,0xda, +0x1d,0x6d,0xb7,0xe9,0xab,0x6f,0xdd,0x5f,0x6d,0x4a,0xbf,0xb9, +0x35,0x74,0xbf,0xe5,0xbb,0x3a,0xb7,0x7a,0xe7,0x06,0xbb,0xca, +0x36,0x6a,0xd9,0x68,0x53,0x6b,0x5b,0xd1,0x09,0x4a,0xc5,0x30, +0x55,0x96,0x02,0x80,0x3f,0xef,0x92,0x0a,0xd3,0x72,0xbd,0x52, +0xed,0x55,0x47,0x66,0x46,0xcc,0x3a,0xd1,0xf2,0x67,0x23,0x7c, +0x52,0x06,0xbc,0x2e,0x63,0x4b,0xc8,0x19,0xe3,0x6c,0x93,0xb9, +0x81,0xe7,0x82,0xbe,0x0e,0x3a,0x17,0xc5,0x1a,0x6e,0x41,0x0c, +0xec,0x4b,0x81,0x19,0x59,0x89,0xfe,0x09,0xec,0xaf,0xb3,0x88, +0x9a,0xff,0xa3,0xfb,0xaf,0xee,0x8f,0xc2,0xf0,0x2c,0x69,0x1a, +0xc9,0xfb,0x2e,0xe7,0x55,0xd6,0x2f,0x02,0x4c,0xe2,0x22,0x70, +0x9a,0x3f,0xf2,0x96,0x73,0x5d,0x8a,0x5c,0xf3,0x5c,0x73,0x05, +0x71,0x86,0xb4,0x82,0x0c,0xc0,0x55,0xdd,0x21,0x71,0xa5,0xa4, +0xce,0x5a,0x4c,0x14,0x40,0x41,0xf0,0x24,0x5e,0x85,0x93,0xcc, +0x3e,0x5a,0xc0,0x92,0xf4,0x82,0x50,0x0a,0xd3,0x93,0x60,0x93, +0x50,0x8f,0xdb,0xf9,0xff,0x57,0xe5,0xc6,0xeb,0xfd,0xcb,0x2a, +0xe7,0xcd,0x2a,0xd7,0xe6,0xdc,0xe6,0xd0,0x6a,0x6b,0xb7,0xcb, +0x60,0xff,0x0e,0x2d,0x56,0xb9,0x07,0xd7,0x07,0x6e,0x35,0x3f, +0x2a,0xf7,0x28,0x77,0xad,0x74,0xac,0x6e,0xa7,0x8e,0x75,0xce, +0x55,0x2e,0x65,0x82,0x62,0xb9,0x78,0x86,0xe0,0x69,0x98,0xa5, +0x8b,0xb3,0xf0,0xa0,0x01,0x1c,0xc4,0xe9,0x68,0x2f,0x85,0xf4, +0x8b,0xbb,0x61,0xbe,0x54,0x34,0x20,0x16,0xc1,0x4a,0xd6,0x69, +0x3e,0xe2,0x52,0xf4,0x95,0x7e,0xe6,0x1a,0x46,0x3e,0x1c,0xac, +0x46,0x2f,0x98,0x0e,0xa7,0xf9,0xe1,0x01,0xbc,0x46,0xf2,0x9f, +0xe4,0xfe,0x92,0xc9,0x6a,0x32,0x99,0x3b,0x82,0x33,0xfc,0x70, +0x9c,0xd9,0x6c,0x97,0x52,0xd7,0x22,0xf7,0x3c,0x06,0x30,0x1f, +0x2a,0x4c,0x89,0x03,0x3f,0x7b,0xf5,0x7e,0x0c,0xdb,0xa7,0x92, +0x6d,0x02,0xb6,0x03,0xef,0xae,0x25,0xfd,0x2a,0x63,0xe9,0xc5, +0xf0,0x91,0x16,0x18,0xea,0xca,0xdf,0x34,0x0e,0x5c,0x5f,0x7e, +0xf3,0xed,0xf4,0x5a,0xf0,0xe6,0x43,0xbc,0x7c,0x9c,0x9d,0xdc, +0xda,0xbc,0x68,0x4b,0x7b,0x71,0x53,0x56,0x13,0x83,0x35,0xfb, +0xf9,0xf8,0xcc,0xb8,0xac,0xd8,0x6c,0xd3,0x14,0xea,0xb1,0xc9, +0x6a,0xf7,0x36,0x8d,0x3a,0x67,0xda,0xf0,0x41,0xb0,0x10,0x97, +0x25,0x11,0x93,0x8a,0xad,0xb5,0xba,0xb9,0x1e,0x56,0x74,0xd0, +0xef,0x9e,0x73,0xaf,0xb3,0x90,0xb4,0x8d,0x68,0x5b,0x6c,0xb2, +0x5b,0x6e,0x5f,0x28,0x8f,0xe5,0x3c,0x69,0x19,0x6c,0x66,0xc5, +0x42,0x4a,0x82,0x5c,0x7c,0x1c,0x3d,0x1c,0x04,0x6c,0x32,0x82, +0x73,0x9c,0xb3,0xbd,0xbd,0x9d,0x95,0xc3,0xc3,0xc3,0xbf,0x05, +0xc2,0x28,0xdf,0xb9,0xce,0x38,0x2d,0x18,0xb7,0x1e,0x4d,0x35, +0xa0,0x60,0x1e,0x0f,0x2b,0x8a,0x61,0xe2,0x20,0x8c,0xf3,0x84, +0x4f,0xdd,0x40,0x70,0x29,0x64,0xa5,0x1b,0x55,0x8a,0x63,0x8a, +0xe7,0xe6,0xdf,0x6c,0xea,0xea,0xaf,0xb9,0x2f,0xc0,0xb6,0x6e, +0x29,0x8d,0xcb,0xab,0xc8,0x29,0x4f,0x2f,0x15,0xc0,0x95,0x81, +0x06,0xbb,0xbd,0xc6,0xa6,0x7b,0x9c,0x56,0x64,0xaf,0xcb,0xdc, +0x9d,0x52,0x52,0x5c,0x5c,0x56,0x58,0xc6,0xea,0xdd,0x20,0xee, +0x26,0x37,0x78,0x98,0x37,0x08,0x9f,0x3d,0xbf,0xfa,0x5c,0xe8, +0x18,0x3e,0xa5,0xad,0x58,0xcc,0xeb,0x68,0xa2,0xd2,0x6e,0xfc, +0xd2,0x5c,0x98,0x25,0xed,0xd0,0x12,0x77,0x20,0xe2,0x31,0xf9, +0xcb,0x2a,0xb8,0x70,0xdd,0xb9,0xb9,0xdd,0xaa,0xf0,0x8b,0x38, +0xef,0x0a,0xeb,0xd4,0x9f,0x9e,0x25,0xb8,0x8e,0x73,0x3b,0x1a, +0x5f,0xa4,0x0a,0xca,0xfc,0xcf,0x75,0x3f,0x0f,0xde,0xbd,0xc6, +0xc0,0xbc,0xb6,0xfe,0x36,0xb3,0x8d,0x4e,0xec,0xa1,0x90,0xd8, +0x33,0x7c,0xfc,0x99,0xc2,0x09,0xbc,0x87,0xb3,0xf1,0x21,0x8f, +0x07,0xfd,0x71,0xe9,0x6e,0x9c,0xa8,0xd2,0x69,0xfc,0x10,0x68, +0x3e,0x6c,0xbd,0x08,0x3e,0xca,0xa0,0xc5,0x79,0x2c,0x52,0x5f, +0xbb,0x42,0xa3,0xd4,0x86,0xf6,0xd6,0xb5,0xb6,0x56,0xf7,0x08, +0xb0,0x84,0x3b,0x6c,0xe4,0x67,0xee,0x66,0xeb,0x9d,0xe7,0x95, +0xef,0x9d,0xe5,0xe4,0x44,0x8b,0x83,0x4a,0x0f,0x14,0xf9,0x1a, +0x19,0xee,0xb1,0x5a,0xe5,0x56,0x62,0x4a,0x41,0xe3,0x3e,0x4c, +0x86,0x4f,0x7b,0xc0,0x50,0xa8,0x41,0x2d,0x3e,0xb5,0x38,0xa9, +0x24,0xbe,0x4c,0x00,0x03,0x69,0x3d,0xb7,0xbf,0xe8,0xe0,0x90, +0x0a,0xec,0xe1,0x6a,0x52,0xd2,0xab,0xe4,0x42,0xe9,0xa7,0x29, +0x39,0x8a,0xbf,0x92,0x59,0xc3,0xf3,0xff,0xe5,0x3f,0x24,0x22, +0x94,0x36,0xc2,0x8c,0xbd,0x38,0x43,0x5a,0xa8,0x2b,0x2e,0xc4, +0x25,0xf8,0x54,0xf2,0xbe,0x2e,0xae,0x84,0x54,0xe9,0xdc,0x4d, +0xf1,0x1c,0xd4,0xe0,0x53,0x06,0xd8,0xd3,0x59,0xc8,0x5a,0xc5, +0x35,0x15,0xe4,0x35,0xa9,0x32,0xa4,0xf7,0x0f,0x2c,0x11,0x37, +0x32,0x66,0x3a,0x56,0xdc,0x45,0xa0,0x01,0xbf,0xe4,0x93,0xca, +0x13,0xaa,0x63,0xaa,0x74,0x13,0xe8,0x71,0xfb,0x08,0xbb,0x30, +0x27,0x61,0xf9,0x70,0x7d,0xdf,0x03,0x38,0x0b,0x8f,0xf0,0x2c, +0x8c,0xe5,0x14,0x83,0x30,0x4c,0xa4,0x5c,0x7d,0xd6,0x3b,0xe7, +0xc9,0x3a,0x94,0xfd,0xe2,0x59,0x98,0x2e,0xfd,0x39,0xc8,0x08, +0xd1,0x5c,0x69,0xdb,0x1c,0x2e,0x55,0x47,0xe9,0x11,0xd7,0x3e, +0xb2,0x0e,0xd3,0x17,0xed,0x61,0x1e,0x9c,0xe0,0x87,0xa9,0x3a, +0x41,0x35,0xdc,0x03,0x6a,0x3c,0xe8,0x49,0x22,0x41,0x3d,0x70, +0x02,0x3d,0x4e,0x5e,0xbf,0x66,0x44,0x74,0x14,0x59,0x83,0xd2, +0x68,0xd8,0x2e,0x7e,0x35,0x24,0x7d,0x05,0xcb,0xf6,0xe3,0x32, +0x69,0xa6,0xb6,0x38,0x93,0x99,0x13,0x03,0x9a,0x09,0x44,0xaf, +0x47,0xbb,0x55,0xab,0xce,0xc9,0x96,0x0e,0xda,0x5f,0x33,0xe9, +0x36,0x11,0x50,0x17,0x67,0x12,0xab,0x88,0xd8,0x7a,0x55,0xb8, +0xa4,0x89,0x31,0xfc,0xc6,0x11,0xb5,0xaa,0xa2,0xff,0xaa,0x55, +0x4d,0x18,0x51,0xab,0x5a,0xc8,0xf7,0xc1,0x71,0x32,0xb8,0xb5, +0x77,0x4d,0xfd,0x92,0xee,0x12,0x6a,0xf9,0x97,0xd1,0x53,0x9d, +0x47,0xb2,0x5a,0x55,0x3b,0xb9,0xf5,0x43,0xc3,0x6f,0xf9,0x2f, +0x0d,0x32,0x68,0xc0,0x06,0x9b,0xa5,0x1a,0x3b,0x84,0x49,0xa0, +0xcc,0x7c,0xb5,0xb4,0x45,0x71,0x40,0xdc,0xc2,0x4b,0x0b,0x51, +0x93,0xa0,0xac,0x8d,0x9d,0xca,0x0d,0xe1,0x67,0x84,0xed,0x14, +0xe3,0x67,0x3c,0xfe,0x6c,0x2c,0x27,0xf3,0x4f,0x85,0x69,0x3c, +0x7c,0x33,0x95,0x1d,0x9a,0x86,0xc5,0x1c,0xf3,0xa6,0xe1,0x44, +0xaf,0x4f,0x8b,0x15,0xce,0xd1,0x96,0x0e,0xd9,0x5d,0x1f,0x29, +0x9c,0x1e,0xf3,0xb9,0x1f,0x0a,0x77,0x59,0x93,0x01,0xe0,0xff, +0xef,0xc2,0xf5,0xc2,0x29,0x32,0xb4,0xa5,0x77,0x75,0xfd,0x92, +0xae,0x62,0x6a,0xf5,0xb7,0xd1,0x53,0xed,0x6f,0x64,0x1d,0xc1, +0x2e,0x72,0xeb,0x79,0xc3,0x9b,0xbc,0x97,0x86,0x23,0x85,0x5b, +0xa2,0xb1,0x5d,0x4e,0x39,0x27,0x56,0x12,0xfc,0x97,0x73,0x88, +0x88,0xa9,0x53,0xed,0x67,0xdd,0x38,0x05,0x36,0xe5,0x83,0x72, +0xbd,0x2f,0x33,0x07,0xc1,0x09,0x57,0xf9,0xe2,0xec,0x30,0x01, +0xa6,0x6a,0x63,0x14,0xbf,0x23,0x2f,0xe0,0x81,0x8a,0x38,0x8a, +0x6b,0x4d,0x4a,0x6d,0x54,0xfd,0x95,0xd7,0x4d,0x55,0x92,0x62, +0xf0,0x6b,0xe2,0x12,0xea,0x18,0xe6,0x18,0x2e,0x4f,0xa5,0xfb, +0x90,0x86,0x51,0x9e,0x4a,0x37,0xc7,0x00,0xe6,0xe0,0x05,0xde, +0x34,0xd4,0x24,0xdc,0x22,0x22,0x4e,0x8f,0x36,0xc7,0xb7,0x24, +0xb5,0xa6,0xc8,0xe9,0xb0,0xa6,0xca,0x78,0xe8,0x1d,0xd7,0x96, +0x9a,0xd1,0x22,0x4f,0xa5,0xab,0x4f,0xae,0x4f,0xad,0x4d,0x13, +0xfe,0x92,0x76,0x91,0x21,0x78,0xaf,0x3d,0x24,0x7a,0x49,0x87, +0x24,0x2f,0x5e,0xdc,0x04,0xed,0x04,0xdf,0xc3,0x78,0x78,0xcf, +0xe1,0x7b,0x39,0x88,0xbd,0xc7,0xcf,0xf1,0x3d,0x27,0xf7,0x3f, +0x75,0x22,0x6d,0x82,0xb9,0xfb,0x71,0xae,0xb4,0x58,0x57,0x5c, +0x8c,0xea,0x38,0xac,0xab,0x58,0xcd,0x19,0xcf,0x59,0xb7,0x16, +0x3f,0x65,0xe0,0x6b,0x60,0xc3,0x03,0xf5,0x9f,0xcd,0x5c,0xe8, +0xcd,0x95,0x8f,0x77,0xfe,0xa6,0x3b,0xc7,0x06,0x3f,0x73,0xc7, +0xe5,0x81,0x59,0xda,0x14,0xf6,0x14,0xc0,0xec,0x3a,0xe0,0x7b, +0x60,0xac,0x21,0x7c,0xe1,0x08,0xdb,0xfd,0xd3,0x86,0x28,0x2e, +0xc8,0x64,0x04,0x79,0x41,0x3d,0x7c,0xfe,0xf8,0x87,0x3f,0xbb, +0xe0,0x33,0xa1,0x11,0xef,0x82,0xba,0xb8,0x89,0x01,0x82,0x40, +0xf0,0x24,0x3f,0xc0,0xc4,0x5a,0x50,0x4e,0x86,0x05,0xc2,0xbd, +0x41,0x7c,0xc3,0xa5,0xb6,0x27,0x75,0xc4,0xb6,0xeb,0xc7,0x52, +0x7f,0x9c,0xe6,0x80,0x9f,0xaf,0xc5,0x8f,0x2a,0xcc,0x68,0x7e, +0x59,0x6e,0x4d,0x76,0x43,0x1a,0x2a,0x55,0xcc,0x1c,0x98,0xbf, +0x77,0xc3,0x92,0xed,0x48,0x77,0x17,0xb3,0xc7,0x4d,0x7d,0xf0, +0xdb,0x37,0x77,0x9f,0xf5,0x6d,0x78,0xb0,0xe5,0xb7,0x6d,0xe5, +0x83,0x74,0xf1,0xc3,0x5d,0x0f,0x8c,0xbf,0x15,0xf0,0x26,0x9c, +0x27,0x2e,0x11,0x76,0x91,0x96,0x8c,0x6b,0x09,0xfc,0xf5,0xa1, +0xee,0x6f,0x0a,0x6f,0x0a,0x4d,0xd2,0x38,0x7d,0xe8,0xe2,0xbd, +0x74,0xad,0x74,0x75,0x58,0x1b,0x2f,0xe7,0x75,0x8e,0xec,0x8f, +0xdc,0x77,0x34,0x5e,0x83,0x5e,0x8d,0x1f,0x4a,0xe8,0x4d,0x10, +0xf0,0x2f,0x9c,0x2b,0xaf,0x8b,0x01,0x81,0xeb,0x4d,0x4d,0xed, +0x55,0x85,0xbf,0xf9,0xf6,0x84,0xc6,0xc4,0xaa,0x04,0x81,0x81, +0x11,0x0f,0x72,0x04,0x3f,0x63,0x21,0x49,0x6d,0x8e,0xde,0x3f, +0x5e,0xa0,0x14,0xc6,0xaa,0x31,0x49,0x34,0x82,0x40,0x22,0x5a, +0xde,0xe9,0xda,0xf3,0xa7,0xde,0x7c,0xb4,0x62,0xff,0xa8,0x1b, +0xdf,0x92,0x2c,0x37,0x19,0x8b,0xde,0x5d,0x8c,0x54,0x41,0xd5, +0x08,0xa9,0x9a,0x9c,0x02,0x63,0x0a,0x1f,0x57,0x78,0xb6,0xd1, +0x4d,0xae,0x73,0x7d,0x71,0x05,0xe3,0x54,0xf1,0x3c,0x5e,0x08, +0xc1,0x79,0xba,0xf8,0x29,0xe3,0x54,0x37,0xe1,0xcb,0x54,0x58, +0x7f,0x1e,0x8e,0x29,0xc3,0x52,0xa9,0x64,0x50,0x2c,0x81,0xf1, +0xdd,0x9c,0x74,0xb7,0x87,0xa0,0x15,0x70,0x60,0xc5,0xe1,0xa6, +0xb1,0x8c,0x1a,0x5b,0xc9,0x8a,0x1c,0x56,0xb8,0x59,0x5e,0x35, +0x6b,0x05,0x93,0xf8,0x95,0x2c,0xa8,0xf5,0x34,0xf5,0xdc,0x2f, +0x1e,0x32,0x2b,0xa6,0xbe,0x06,0x46,0xea,0x26,0x0e,0x32,0xae, +0xa4,0xa4,0xc2,0xb1,0xce,0x20,0xdf,0xae,0xad,0x8c,0x1e,0x68, +0xb0,0xee,0x77,0xab,0x18,0xc9,0x00,0xbc,0x94,0x0c,0x48,0x3c, +0x9f,0x54,0x16,0x5f,0x16,0x53,0xae,0x97,0x48,0xfd,0xf0,0x23, +0xc3,0x79,0x9b,0x76,0xd7,0xdb,0xd1,0xa6,0xba,0x9a,0x8e,0xe2, +0x3e,0x01,0xdf,0x3a,0x13,0xf0,0x19,0xc0,0x55,0xb0,0x50,0x07, +0x17,0xe2,0x56,0x5d,0x18,0xb3,0x92,0xc3,0x23,0x81,0xa8,0xb5, +0x1c,0x17,0xaa,0xb4,0xda,0x3d,0x85,0x19,0xa5,0xb0,0x3a,0x06, +0x2c,0x95,0x41,0x99,0xc3,0xd5,0xa7,0xf0,0xa3,0xa3,0x9b,0x55, +0x4c,0x4f,0x1c,0x09,0x73,0x9c,0xb1,0x45,0x9e,0xb7,0x7b,0x87, +0xbb,0x51,0x54,0xf4,0x5d,0x82,0x6a,0xfc,0xf3,0x28,0xf8,0x04, +0xbc,0xa6,0xa3,0x21,0x77,0x3e,0xeb,0xeb,0xec,0x9c,0xe9,0x0a, +0x6d,0xa9,0x9e,0x60,0x1e,0x67,0x14,0x9e,0xd4,0xa6,0x0a,0x57, +0x78,0x18,0x5b,0xa4,0x84,0xbd,0x3d,0x70,0x97,0x87,0xc5,0xb5, +0x4a,0xbb,0x4e,0xeb,0x1c,0x37,0x51,0x71,0x39,0x15,0x11,0xee, +0x32,0xc3,0x46,0x9e,0xce,0xda,0xcc,0x0d,0xe6,0x16,0x5c,0x8b, +0x55,0x8d,0xbf,0x79,0xf1,0xf1,0x79,0xf8,0x0c,0x5d,0x0c,0x59, +0x13,0x1b,0xe2,0x3c,0x1e,0xc7,0x7a,0x2b,0xfd,0xad,0x8f,0xe3, +0xf9,0xad,0xc1,0xd1,0xfa,0x77,0xd2,0x95,0xb0,0x93,0x5f,0x53, +0xe3,0xf3,0x52,0x05,0xd2,0xb8,0xc6,0xd4,0xb4,0x46,0x59,0xae, +0xc4,0x30,0x55,0x69,0x92,0xa2,0x41,0x2c,0x21,0xd2,0x45,0x6e, +0xc7,0xe1,0xe4,0x07,0xaa,0xd5,0x3c,0xf8,0xc6,0x42,0x50,0x36, +0x18,0xb6,0x78,0x77,0x51,0x54,0xb3,0x42,0xef,0x60,0x74,0x3d, +0x2a,0x00,0xa7,0x81,0x3e,0xfc,0x9c,0x2a,0xb7,0xb7,0x2a,0x62, +0x0c,0xd7,0x9e,0x9d,0xd5,0xae,0xfa,0x8e,0xd7,0x4a,0x51,0x92, +0xee,0x0f,0x47,0x90,0x3e,0xb1,0x51,0xff,0xaa,0xe8,0x3c,0xbc, +0x5e,0x72,0xe6,0x45,0x00,0xe6,0x53,0x1a,0x61,0x9c,0xd8,0xc8, +0x49,0x8d,0xcc,0x40,0xc4,0x46,0x9c,0x24,0x31,0x5c,0x08,0xd7, +0x44,0x27,0x72,0xf4,0xff,0x39,0x04,0x35,0x62,0x95,0xfa,0xfa, +0xa8,0x8f,0x8b,0x0d,0x60,0xa6,0x3c,0x04,0x65,0x8f,0x33,0xe7, +0x8d,0x0c,0x41,0x3d,0x19,0x19,0x82,0x92,0x15,0x4c,0x4a,0xfb, +0xfe,0xcf,0x10,0xd4,0x4b,0x5c,0x5d,0x5d,0xa3,0x24,0xde,0xc0, +0x1f,0xc8,0xf2,0x8a,0x1d,0xb5,0x5a,0xad,0x3f,0x3d,0xb9,0xf2, +0x7b,0x29,0x08,0x42,0x0b,0xba,0xc3,0x76,0x38,0xdf,0x87,0xe7, +0xe1,0x2b,0x6d,0xfc,0x0a,0x23,0xf5,0x21,0x12,0xb7,0x63,0x80, +0xbe,0xb8,0x83,0xf7,0x5e,0x62,0xb4,0x71,0xcb,0xbe,0xfd,0x43, +0x66,0xf7,0xec,0x5e,0x18,0xfa,0xd2,0x86,0x15,0x5d,0xdb,0x6e, +0xee,0xdf,0x66,0xbc,0xcc,0x1e,0xc7,0x7a,0xe5,0xeb,0x51,0x18, +0x5f,0xfe,0x67,0xcb,0xd3,0xc1,0x5b,0x06,0x4f,0x2d,0x7f,0x77, +0x62,0x9d,0xf3,0x8e,0xa8,0x41,0xe0,0xd5,0x10,0xbe,0x82,0x47, +0xfb,0x58,0x60,0xf3,0x53,0x7c,0xbc,0x6f,0xf8,0x63,0xdc,0xa4, +0xfd,0x9f,0xcf,0x86,0xa4,0x71,0xcc,0xca,0xf7,0x28,0x7c,0x48, +0xff,0xfb,0x09,0x7a,0xb0,0x9f,0xf7,0xc7,0x6d,0x3a,0x38,0x99, +0xf5,0x32,0xa1,0xc1,0x8e,0xde,0x7b,0xd0,0xfd,0x6d,0xd5,0x6b, +0x81,0xf5,0xbc,0xf0,0xc5,0x7e,0x1b,0x9c,0x76,0x59,0x97,0x18, +0x95,0x98,0x17,0xba,0x59,0xd2,0x06,0xff,0x7e,0xd7,0x36,0x17, +0xdd,0x95,0xeb,0xb6,0x23,0xb7,0xa7,0xda,0x8c,0xc2,0x51,0x58, +0xc1,0x02,0xdc,0xe6,0x62,0x28,0x17,0x9a,0xf0,0x04,0x9f,0xd4, +0x18,0xdf,0x1a,0xdd,0x21,0x88,0xdf,0x0f,0x3b,0x12,0x5c,0xc6, +0x69,0x85,0xc6,0x5c,0x55,0x05,0x2f,0xfe,0xed,0x20,0x8c,0x7d, +0x7a,0xef,0x81,0x6d,0x13,0x55,0xdb,0xb1,0x78,0xe7,0x56,0x5b, +0x01,0x06,0x34,0x25,0x91,0x5f,0x5f,0xe4,0xf9,0xb3,0x0a,0xac, +0xe6,0x3a,0xb2,0x32,0xdb,0x55,0xc1,0x94,0xd7,0x4d,0x66,0xed, +0x27,0x2f,0xff,0xa2,0x37,0xd6,0xc3,0x67,0xae,0xe0,0x2a,0xc0, +0xdd,0x7e,0x7c,0xc2,0x1d,0xbf,0x76,0xfa,0xde,0xb7,0xd3,0x8b, +0xf9,0x3f,0x13,0xde,0xa4,0xbe,0xc8,0xf3,0xe9,0xa5,0xa8,0x6b, +0x8c,0x27,0x0f,0x63,0xfe,0x29,0x61,0xf8,0x30,0xef,0x79,0x8a, +0xfd,0x9d,0x4e,0x62,0xae,0x60,0x65,0x36,0xec,0x2b,0x83,0x59, +0x0d,0x21,0xbd,0x74,0x91,0xcf,0xac,0x40,0x1c,0x7d,0x48,0x10, +0xa7,0xc1,0x0f,0x7c,0x0d,0x9e,0x7c,0x83,0x0b,0x61,0x9e,0x7a, +0x73,0x50,0x5d,0xfc,0xa5,0x96,0x14,0x08,0xa4,0x7a,0x99,0x4a, +0xc3,0xcb,0x45,0x5b,0xf2,0xf6,0xe2,0xbf,0x97,0xff,0x8e,0x13, +0xdc,0xf9,0x1d,0x97,0xd4,0x63,0x34,0x55,0x64,0x86,0x01,0xe7, +0x15,0x8f,0x49,0x90,0x51,0x80,0xf9,0x01,0x9b,0x83,0x4d,0x81, +0x4d,0xbe,0x0d,0xd6,0x3e,0xb4,0xcc,0x28,0xcf,0x24,0xd3,0xd8, +0xdb,0xc1,0xd3,0xd5,0xc5,0xb3,0xc0,0x84,0x96,0x15,0x15,0x95, +0xe6,0x97,0x27,0xda,0xc6,0x5a,0x47,0x5b,0xd8,0xae,0xb7,0xd2, +0xdf,0xaf,0xc7,0x0e,0xf6,0xb5,0xd7,0x77,0x95,0x5f,0x13,0x2e, +0x3a,0x9f,0x77,0xb4,0x9b,0x8e,0xea,0xe7,0x03,0xec,0xb4,0x67, +0x58,0x73,0x29,0xda,0x4a,0x8d,0xdc,0xe3,0xe6,0x1e,0x38,0x08, +0x2b,0x42,0xe0,0x73,0x67,0x10,0x54,0xcb,0xbb,0x8b,0x07,0x0b, +0xef,0x0a,0x70,0x5e,0x1a,0x43,0xa0,0x72,0x1e,0x9f,0x50,0x14, +0x57,0x11,0x5d,0x6c,0x18,0x43,0x4f,0xba,0x1f,0x73,0x8e,0xf0, +0x10,0xd4,0x86,0x1b,0xbb,0xee,0xc2,0x5e,0x78,0x8a,0x7b,0x61, +0x1c,0x27,0x3e,0x83,0x3f,0x89,0x34,0xc1,0x14,0x96,0x33,0x1a, +0x4b,0xa5,0xfb,0xdd,0x62,0xf6,0xa3,0x61,0xa5,0x1e,0x85,0xd2, +0x73,0xc9,0x42,0x83,0x4b,0x37,0x50,0x6a,0xe0,0x9a,0xe3,0xb3, +0x58,0xfc,0x3f,0x86,0x73,0x60,0x26,0x6c,0xe2,0x25,0x77,0x6d, +0xc2,0x62,0xc3,0x78,0xd0,0xe4,0x61,0xca,0xf0,0x38,0x79,0x5a, +0x4a,0x30,0x4c,0x61,0xf5,0xea,0x12,0x67,0x92,0x63,0x09,0x91, +0x17,0x22,0x8f,0x45,0x1e,0xa5,0xa7,0x2e,0x71,0x35,0x5d,0xfd, +0xbf,0xe6,0xfd,0xc4,0xfa,0xdb,0x14,0x58,0xac,0x83,0x8b,0x51, +0xd9,0x00,0xe2,0x78,0x47,0xfc,0x18,0xc7,0xe0,0x3a,0xa4,0xf3, +0xca,0x2c,0x68,0x5b,0x6d,0x7d,0x7d,0x49,0x95,0x20,0x7d,0x39, +0x28,0xee,0xe6,0xa3,0x2f,0xc8,0xcb,0xdb,0xe1,0x13,0xdc,0x54, +0x5b,0xa9,0x04,0x8f,0xc0,0x8a,0x80,0xce,0x00,0xea,0xc0,0x6f, +0x9a,0xc3,0xbd,0xa8,0xaa,0xd8,0xa3,0x39,0xbc,0x07,0x57,0xe8, +0x2a,0xc6,0x0d,0xa0,0x23,0x63,0x09,0xbc,0x38,0x9f,0x1c,0x8b, +0x3f,0x7a,0x21,0x22,0x32,0x2c,0x9c,0xd9,0x87,0x12,0xe8,0xf5, +0x32,0xb0,0xb0,0x81,0x1b,0x4c,0xea,0x4d,0x6f,0xca,0xf2,0x6e, +0xa3,0xb3,0xac,0x70,0xad,0x27,0x4e,0x8a,0x4c,0x30,0xa4,0x9d, +0x97,0xaf,0xc5,0x5e,0x4b,0x94,0x53,0xc4,0xb9,0x1a,0x80,0x0d, +0x7f,0x04,0x05,0x4d,0x1c,0xcb,0x62,0x33,0xa9,0x33,0xa1,0x30, +0x16,0x94,0xda,0x5e,0x8d,0x88,0xeb,0xb8,0x0e,0x8a,0x5a,0x5c, +0xd4,0xa5,0xf3,0x8c,0x9b,0xbe,0xc5,0xf9,0x4d,0xf5,0x4a,0x62, +0x30,0x76,0x13,0x67,0x50,0x59,0x03,0x87,0xf5,0x61,0xbc,0xd1, +0x01,0x5a,0xb9,0xb9,0x0d,0x49,0x2d,0x0a,0x6b,0x83,0x50,0x08, +0x42,0xa5,0xb0,0x21,0x08,0xea,0x85,0x17,0x85,0xe0,0xb7,0x2f, +0x86,0x06,0x60,0x80,0x16,0x8a,0x1a,0xe8,0xeb,0x7b,0xfa,0xc0, +0x99,0x03,0x67,0xe3,0xb4,0x28,0x7c,0x95,0x0a,0x86,0x85,0x40, +0xcb,0x13,0x5c,0xe3,0xdd,0x62,0x7d,0x84,0x49,0x8a,0x5b,0x70, +0x9f,0x64,0x1c,0xc8,0xf0,0x4d,0xf7,0x6e,0xaf,0xa4,0x5a,0xbf, +0xec,0x7f,0xb4,0xfb,0x8e,0x9d,0x33,0x2d,0xf1,0x2c,0x76,0x2f, +0x72,0x41,0xa5,0x23,0xa8,0x7c,0x1c,0xbf,0x38,0x05,0x93,0xff, +0xf8,0xfb,0xdd,0x9f,0x30,0xd9,0xa4,0x92,0xee,0x5b,0xb3,0x6d, +0xfd,0xaa,0x0d,0x1e,0x25,0x76,0x55,0xd6,0xd5,0x3f,0x3c,0xbe, +0xfd,0xb4,0xfb,0x2e,0x3b,0x68,0xb9,0x7b,0xd3,0x8a,0x1d,0xea, +0x3e,0xd9,0xde,0xd9,0x3e,0x99,0xf6,0x56,0xf4,0x37,0xf5,0x1f, +0x77,0x5c,0xd7,0xf2,0xf6,0xf3,0xf2,0xf3,0xf0,0xdb,0x78,0x76, +0xe3,0xb9,0x6d,0xe7,0x2e,0xe9,0x50,0x98,0x78,0x1e,0xa6,0x5f, +0x02,0xe5,0x68,0x41,0x1a,0x73,0x4d,0x54,0xe2,0xdf,0x45,0xff, +0x13,0xf3,0x8a,0x85,0x1f,0x1d,0x9c,0x41,0x7e,0xd4,0xf8,0x69, +0xeb,0xf7,0xeb,0x1a,0x5a,0xe8,0xea,0x1f,0x56,0x3c,0x58,0x7d, +0x45,0x90,0x7e,0xc2,0x5c,0x02,0x63,0x6e,0x3e,0x7f,0x74,0xfd, +0x27,0xf3,0x72,0xaa,0xbb,0x79,0xc3,0x76,0x1c,0xa3,0xcd,0xac, +0x7b,0x21,0x00,0x89,0x1e,0xd1,0x82,0x69,0xcf,0xa0,0x41,0x77, +0x7c,0x1f,0xf8,0xf4,0x5b,0x1c,0xa4,0xc9,0x3e,0x89,0x1e,0x89, +0xee,0x86,0x27,0xf4,0x4e,0xe9,0x9e,0xbe,0xf1,0xf4,0x2e,0x70, +0x83,0xc0,0x9b,0x16,0x52,0x4f,0x4d,0xe7,0x7d,0x8e,0x5a,0x41, +0x79,0xfe,0x79,0xfe,0xb9,0x75,0x43,0x95,0x77,0x8a,0x6e,0x18, +0xe7,0x52,0x7f,0x0d,0x77,0x0d,0x57,0xc3,0xc3,0xa9,0x21,0xc9, +0x21,0xc9,0xae,0x36,0xb4,0xcf,0xbc,0xcf,0xb0,0x43,0xc7,0xcf, +0xc5,0xdf,0xcd,0xdf,0xdb,0xe9,0xac,0xd3,0x39,0xe7,0x73,0x51, +0xfa,0xf4,0xca,0xc5,0xab,0x17,0xaf,0x5c,0x16,0xa4,0xe5,0x03, +0xe2,0x6a,0xbe,0xee,0x52,0xed,0xe5,0x9a,0xcb,0x82,0x18,0x2e, +0x8d,0x22,0x3a,0xdf,0x3b,0xc3,0x8c,0x10,0xf0,0x12,0x60,0x57, +0x1f,0xaa,0x73,0xa7,0xee,0x9d,0x7d,0xf2,0xe3,0xf4,0xab,0x89, +0xfd,0x29,0x9d,0x69,0xee,0x3d,0x14,0xc7,0x3a,0xe2,0x32,0x3f, +0x5c,0x12,0x29,0x0c,0x87,0xf3,0x5e,0xc7,0xbd,0x4e,0x7a,0x9f, +0x4c,0xd2,0xa3,0xef,0xb2,0x61,0x62,0xf9,0xe3,0x82,0xc8,0x1e, +0x6a,0x13,0x6a,0x1c,0x6a,0x18,0x26,0x88,0xf3,0x60,0x3d,0x9f, +0x8e,0x61,0xf5,0xf8,0xd5,0xcd,0xb5,0xc5,0x56,0xfd,0x97,0x2f, +0x5f,0x4d,0x87,0xa3,0xd4,0x3c,0x5b,0x09,0x15,0xa2,0x33,0xe9, +0xb8,0xd4,0x1e,0xd5,0x1a,0x23,0xac,0xbb,0xb8,0xf5,0xd2,0x1e, +0x15,0x5c,0xcd,0x61,0x00,0x86,0x90,0x6c,0x8d,0xf4,0x1d,0x49, +0x72,0x26,0xaf,0xb0,0x5b,0x41,0x0f,0x03,0xae,0x08,0xd8,0x86, +0x6d,0xa4,0xf1,0x87,0x9c,0x37,0x29,0x6f,0x4c,0xe2,0x69,0xd8, +0xca,0x80,0x35,0xb6,0x1b,0xd8,0xeb,0xa9,0x17,0xfb,0x89,0x7e, +0xa4,0xfe,0x31,0x9d,0xe3,0x02,0xb3,0x8b,0xad,0xb2,0x76,0xd2, +0x68,0x3d,0x1c,0xe2,0x9d,0x4f,0x3b,0x9e,0x76,0x38,0x23,0x40, +0x9a,0x1e,0x66,0xf3,0x6b,0x4e,0xc6,0x19,0x82,0x6e,0x22,0xac, +0x4b,0x83,0xf9,0xc5,0xca,0xf0,0x22,0x96,0xe0,0x7e,0xce,0x2e, +0x22,0xb6,0x5a,0xf5,0x11,0xff,0x57,0xfa,0xbb,0xb2,0xef,0xaa, +0x3d,0x9a,0xe8,0x16,0xa7,0x75,0xfe,0xcb,0x0e,0x0a,0xf2,0x32, +0xa8,0x3c,0x7e,0x6f,0xae,0xef,0xb7,0x2a,0xa0,0xcd,0x35,0x64, +0x24,0xd7,0xaa,0xbe,0xe1,0xf5,0x53,0x94,0x6c,0x24,0x73,0x92, +0x76,0x28,0xed,0x50,0x7a,0x70,0x43,0x19,0x35,0xee,0xd7,0xe9, +0xdb,0xdb,0x65,0xe7,0x49,0xf3,0x83,0xf2,0x82,0xf2,0x02,0x16, +0x1e,0x9f,0x79,0x02,0xc7,0x9e,0x7e,0xde,0xfe,0xea,0xfa,0xe3, +0x6b,0x56,0x15,0x54,0xdb,0x64,0x83,0xf6,0x2a,0x23,0xdf,0x34, +0xef,0x74,0xaf,0xf4,0xeb,0xf5,0x7d,0x4d,0x7d,0x1d,0x56,0xa5, +0xd4,0xd2,0x66,0x9f,0xd9,0x6e,0x2b,0xb7,0x0c,0xf7,0x74,0x8f, +0x54,0x17,0x07,0xfa,0xc4,0xee,0x81,0xed,0x5d,0xeb,0x23,0x27, +0xd8,0xdf,0x49,0xe1,0xcc,0xb2,0x45,0xe7,0x16,0xcc,0x88,0x31, +0x54,0x62,0x10,0x76,0xea,0xa5,0x28,0xf8,0x5c,0x15,0x8f,0x5c, +0x85,0xa3,0xf2,0xc2,0xc0,0x77,0xd1,0x7f,0xc6,0x09,0xe8,0x3c, +0x8b,0xfc,0x6d,0xf3,0x83,0xfd,0x33,0x8b,0xf2,0x66,0xba,0xb2, +0x6d,0x6d,0xdd,0xe2,0x3a,0x41,0xba,0x8e,0x6a,0xe4,0xaf,0xaa, +0x5f,0x9a,0xaf,0xb5,0xdb,0x57,0x53,0x4d,0xab,0x35,0xf6,0x0b, +0xdd,0x18,0x08,0xb0,0x3a,0x44,0x56,0x94,0xef,0xa8,0xd1,0x6e, +0x7e,0xfe,0xe4,0xca,0x1f,0xa5,0x30,0x8e,0x59,0xbe,0x07,0x8b, +0x34,0x17,0xfb,0xf0,0xe2,0x87,0x48,0x73,0x4c,0x1f,0x8e,0xb1, +0x48,0x13,0xa4,0x2f,0xee,0xe1,0xbd,0x16,0x19,0x6d,0xd8,0xbe, +0x57,0xfd,0x8a,0xe9,0x7d,0x9b,0x97,0xc6,0x2c,0xd2,0x2c,0xef, +0xd9,0x7a,0x7b,0x9f,0x9a,0xd9,0x3a,0x87,0xc5,0xde,0x85,0x7a, +0xf4,0x6d,0xd9,0x4f,0xcd,0x0f,0xfb,0x6e,0x19,0x3d,0xb1,0x7e, +0xe3,0x2c,0x0c,0xdf,0x14,0xff,0x26,0xd8,0x77,0x18,0xe7,0x19, +0x23,0xaf,0xd2,0xe5,0x50,0xf3,0x73,0xc6,0x2f,0x71,0xb0,0x44, +0x19,0x56,0x61,0x22,0x72,0xb2,0xd8,0xf1,0x8f,0x5c,0x53,0xba, +0x2c,0x76,0x5c,0x8e,0x19,0x72,0x6e,0x61,0x46,0x8d,0x97,0x82, +0x2e,0x2c,0xe5,0x70,0x05,0x03,0xa4,0x17,0x3f,0x08,0x0c,0x2f, +0x45,0xc6,0x23,0xfe,0xf3,0xb1,0x58,0x46,0xb0,0x95,0x73,0x88, +0x8c,0xad,0x55,0x65,0x58,0x61,0x4a,0x0a,0xcc,0xcf,0x03,0xa1, +0xc6,0xb7,0x9d,0xce,0x75,0xc1,0x2f,0xfc,0x70,0xa2,0x8c,0x92, +0x75,0x30,0x8e,0xdf,0x9d,0xe7,0x7f,0x4f,0x05,0xfa,0xb9,0xe6, +0xe4,0xb4,0x06,0xd5,0xd7,0xbc,0x7e,0xaa,0xd2,0x70,0xba,0x3c, +0x07,0xaf,0xed,0x10,0xce,0x61,0x28,0x81,0x15,0xa3,0xfe,0xd7, +0xec,0xd7,0xb1,0x72,0x31,0x76,0x62,0x2a,0x4e,0xe2,0x46,0xd2, +0xc3,0x36,0xa7,0x67,0xb6,0xa9,0x2a,0x1a,0xb0,0x82,0x87,0x20, +0x86,0xa9,0x71,0x13,0xe8,0xc3,0x26,0x0e,0xb7,0x49,0x7b,0xc9, +0xc5,0x9e,0xf3,0x43,0x77,0xa7,0xc3,0x26,0x34,0xe0,0xc0,0x4d, +0x52,0x66,0x38,0xb9,0x4f,0x7b,0x40,0xf4,0x91,0xb6,0x4a,0x3e, +0xbc,0x38,0x1a,0x3a,0x58,0x0d,0x61,0x22,0xf4,0x71,0xd8,0x87, +0x8c,0x5d,0xf5,0xe1,0x54,0xec,0x1b,0x59,0xda,0x1b,0x25,0xeb, +0x90,0x46,0x6b,0x43,0xcc,0x05,0xb8,0x10,0x07,0x1e,0x49,0xca, +0x59,0x07,0x32,0xfc,0x92,0x03,0x5b,0x6a,0xa8,0xd1,0xe3,0xc5, +0xef,0xd4,0xae,0x5a,0xb9,0xd3,0x0a,0xf7,0x7a,0xeb,0x5a,0x2b, +0xa4,0x27,0x70,0xcd,0x49,0xdc,0x7e,0xb6,0xfb,0xca,0xd5,0x57, +0xad,0xdf,0x0a,0xa2,0x65,0xdf,0xf0,0x5f,0xfa,0xf0,0x82,0xb3, +0x53,0xdf,0xf7,0x15,0x23,0x30,0xd0,0x8c,0x3d,0x44,0x1c,0x35, +0x20,0x8d,0x82,0xd9,0x9a,0x38,0x1b,0xff,0xd0,0x85,0x3f,0x50, +0x57,0xfa,0x4a,0xf7,0x3f,0x33,0x06,0xa4,0x1d,0x9c,0xbc,0x1a, +0x41,0xf5,0xbf,0xfe,0x3b,0x62,0xc4,0x7f,0xd7,0x77,0x0d,0xfe, +0x5a,0xf0,0x93,0xd0,0x8a,0xca,0x1f,0xfc,0xf7,0x6c,0x03,0xc8, +0xe5,0xed,0x99,0xff,0x1e,0xc7,0xfc,0xf7,0x17,0xf3,0x4a,0xcd, +0x69,0x67,0x7d,0x53,0x43,0x79,0x8d,0x20,0xcd,0x1a,0x14,0x77, +0xf1,0xff,0x5d,0x96,0x30,0x11,0x57,0xd5,0x56,0x29,0x89,0x4e, +0x18,0x41,0x76,0x70,0xbe,0xc7,0x2e,0x33,0x46,0xac,0xcf,0xf0, +0xcd,0x7d,0x49,0x5b,0xba,0x0f,0xa3,0xf9,0x48,0x1c,0x6d,0xb0, +0x11,0x97,0x6b,0x17,0x58,0x30,0x24,0x7f,0xf3,0x1a,0x8c,0x4a, +0x80,0x29,0xc2,0x6b,0x34,0xe2,0x34,0x72,0x02,0x7b,0x55,0x9e, +0x73,0xb5,0x29,0xb2,0x2e,0xee,0x67,0xbc,0x49,0x9a,0x92,0x89, +0x2c,0x52,0xc8,0xe3,0x43,0x19,0x96,0x3e,0xc4,0x6d,0x84,0x3d, +0xf9,0x21,0x7c,0x2c,0xef,0x6f,0x27,0xf8,0x29,0xdb,0xff,0x94, +0x71,0xd1,0x39,0x8a,0x08,0xd2,0x83,0x37,0x0c,0x79,0xf1,0xe3, +0x93,0x44,0x9c,0x33,0x7c,0x88,0xd9,0x97,0xfc,0xa1,0x75,0x35, +0xd7,0x92,0x96,0xd6,0xa2,0xaa,0x28,0x93,0xec,0x79,0x4f,0x34, +0x25,0xbd,0xd2,0x64,0x03,0x5e,0xdc,0xe0,0x4e,0xe0,0x71,0x0f, +0x8b,0xc2,0xbb,0x71,0x0d,0xbb,0xac,0x87,0x5d,0x66,0x2a,0xcd, +0x21,0x0f,0xc0,0x13,0x6e,0x63,0x8e,0xf4,0x05,0x63,0x15,0x2f, +0x09,0xac,0x46,0x7b,0xd9,0x17,0x2c,0x64,0x50,0x77,0xe4,0x9c, +0x73,0xd2,0x62,0xd2,0xd7,0x05,0xe7,0x21,0x1b,0xfb,0xb9,0x3e, +0x63,0x02,0x86,0xb8,0x9a,0xe1,0x4f,0x59,0x4e,0x24,0x86,0x30, +0xaa,0x3b,0x0b,0x02,0xbb,0x31,0x10,0xa8,0x0e,0x52,0x74,0x31, +0x62,0x1d,0x70,0x16,0x46,0x18,0x80,0x02,0xbf,0xc4,0xdf,0x0d, +0xe1,0x77,0xcc,0xc2,0x75,0xf2,0x87,0x98,0xff,0xcd,0x27,0x00, +0xc9,0xc0,0xf5,0x20,0x07,0x5f,0xc2,0x27,0xfc,0xb0,0x04,0xff, +0x12,0x23,0xa8,0xef,0xe6,0x33,0xd1,0x8a,0xf4,0xe1,0x1f,0xfa, +0x7c,0xdd,0x7a,0x76,0xa0,0xb4,0x9b,0x47,0xe3,0xb1,0x3d,0x58, +0x6a,0xc8,0xf7,0x48,0xcb,0x48,0x17,0x8b,0xb0,0x79,0x58,0x81, +0xdf,0xf2,0xe2,0x6c,0x48,0x21,0xd5,0xce,0x8d,0x46,0x25,0xd6, +0x0d,0x15,0xd4,0xb3,0xc5,0xa6,0xd3,0xb1,0x5a,0x40,0x0f,0x5f, +0xc2,0x9a,0x64,0x1b,0xac,0x63,0xcc,0xfe,0x93,0xb3,0x64,0xc5, +0x5b,0x07,0x38,0x72,0x0a,0xce,0x33,0x80,0xd5,0xc7,0x90,0xbc, +0x91,0x1e,0x1a,0x61,0xb9,0x3e,0x94,0x73,0x97,0xf1,0x62,0x1d, +0x26,0xbf,0x43,0xae,0xc2,0xa9,0x2b,0x29,0xaa,0x33,0x1b,0x82, +0xa9,0x51,0xb6,0x52,0x8a,0xe8,0x48,0x7c,0x9a,0x9d,0xda,0xdd, +0x2b,0xec,0xdc,0x68,0x99,0x7b,0x8d,0x49,0xbe,0xb5,0x30,0xdc, +0x0a,0xb2,0x14,0x7b,0x71,0x0f,0x2b,0x98,0x05,0xe9,0xc5,0xe7, +0x06,0x7c,0xcd,0x46,0x76,0x20,0xab,0x87,0x87,0x10,0x5c,0x46, +0x9e,0xf5,0x62,0xa4,0xc1,0xcf,0x78,0x95,0xb3,0x39,0x66,0x73, +0xdc,0xee,0x64,0x82,0x3e,0x85,0xd1,0xe9,0xf0,0x49,0xfe,0xd3, +0xfc,0xe3,0x9d,0xd4,0x29,0xd2,0x2e,0xd2,0x3a,0x52,0xc0,0x10, +0x48,0x22,0xdd,0x98,0x65,0xc4,0xea,0xb0,0x84,0xd5,0xc1,0x13, +0x72,0x31,0x07,0xbf,0xe1,0xc1,0x0b,0x72,0x08,0xae,0xc1,0x35, +0xb0,0x86,0x35,0xe0,0x6a,0xd1,0x81,0x18,0x89,0x19,0xdd,0x78, +0x04,0xb6,0xc2,0xc5,0x6e,0xe6,0x2b,0x96,0x69,0xe3,0x32,0x3c, +0x66,0xc4,0x7c,0xc5,0x56,0x5e,0x1a,0x82,0x37,0xec,0x7d,0x94, +0x74,0xf3,0xf1,0x23,0x2f,0xe8,0xb1,0x3e,0x5f,0x23,0xbf,0xa0, +0x6c,0xf6,0x82,0x8c,0xc6,0x76,0x63,0xb6,0x11,0x2f,0xc6,0x24, +0x90,0x0e,0xd7,0x4e,0xeb,0x66,0x8b,0xaa,0x5a,0x6a,0xd5,0x66, +0xd4,0x6c,0x5a,0x26,0x80,0x0e,0x8e,0x22,0xd5,0x1b,0xcb,0xe6, +0xe6,0x7c,0xd5,0x99,0x4b,0x03,0x7e,0x74,0xfd,0xcb,0xf9,0x3b, +0x01,0xbd,0x71,0x88,0xb8,0x8e,0xe8,0x29,0x25,0xe9,0x62,0x0e, +0xaf,0x95,0x13,0x70,0x5b,0x05,0x26,0x71,0x4d,0xa9,0xa9,0x4d, +0xaa,0xb0,0x84,0x37,0x60,0xa0,0x7f,0x0f,0x8f,0xcf,0x4f,0x91, +0xaa,0xa7,0x39,0x30,0x36,0xfe,0x77,0xa3,0x78,0x1a,0xb9,0xc8, +0x6f,0xb6,0xdb,0x2e,0x01,0x4f,0x7e,0xc5,0x2a,0xe0,0xc5,0x1a, +0x21,0x97,0x35,0x02,0x78,0x7f,0x18,0xb6,0x5e,0xcb,0x62,0xcb, +0xa4,0xff,0x58,0xca,0xb6,0xbb,0xf4,0xb7,0xed,0xb7,0x61,0xeb, +0xf4,0x01,0x58,0xc8,0x1f,0x35,0xf5,0xd7,0x75,0x30,0x6e,0xf1, +0xa4,0x75,0x57,0x4b,0x6e,0x27,0xdc,0x61,0xb8,0xb5,0x83,0x8f, +0x2f,0x88,0xc9,0x8f,0xca,0x33,0x8e,0xa7,0xe1,0xdb,0x4c,0xe7, +0xe8,0x19,0xd5,0x3a,0xd1,0xb2,0x92,0xe2,0xe6,0xdc,0x76,0xa1, +0x4f,0x97,0xc3,0x5d,0x0b,0xb6,0xa1,0xfa,0x3a,0x95,0x22,0xd3, +0xf4,0xd8,0xb4,0xd8,0xd4,0x58,0x65,0x7c,0xdb,0xdb,0x0f,0xd5, +0x7a,0x7d,0xa0,0xe0,0x93,0x22,0x53,0x8e,0xa6,0x44,0x0a,0x92, +0x8a,0xe8,0x4e,0xdc,0x4a,0x2d,0xea,0xec,0x0a,0x5d,0x9d,0x68, +0x9d,0x4f,0xb3,0x63,0xb5,0xab,0x20,0xed,0x80,0x29,0xac,0x45, +0x0a,0x7a,0x78,0x1c,0x92,0x45,0x53,0xe0,0x55,0x2f,0x0f,0x6b, +0xf1,0x63,0x62,0xe1,0xb8,0xc3,0x5e,0xdb,0x3f,0xd7,0x9c,0x5e, +0x2b,0x78,0xd8,0xd8,0x5e,0x2f,0xa8,0xc9,0xeb,0x23,0xb8,0x6b, +0xdf,0x3d,0x8e,0x01,0x5e,0x88,0xe6,0x62,0xf0,0xe3,0xde,0x7d, +0x7f,0xed,0x14,0x86,0x6b,0xe0,0x38,0xbb,0x3e,0x8d,0x5d,0x6f, +0xc8,0xde,0x64,0x9a,0x11,0xdf,0x3d,0xd2,0x4c,0x6e,0xac,0x99, +0x32,0x59,0x33,0x89,0x0e,0xd0,0x4f,0xa0,0x1a,0x4d,0xb1,0x9a, +0x63,0x5c,0x61,0x8d,0xdc,0x64,0xab,0x46,0x9a,0xec,0x81,0xc2, +0x85,0x1c,0xe2,0xd7,0x6f,0xd3,0x43,0x5b,0x23,0x95,0x2c,0x13, +0x30,0xee,0x7a,0xd0,0x9e,0xfa,0x42,0x39,0x9a,0x4b,0x5b,0xfd, +0xb3,0x19,0xd8,0x1b,0xa7,0x77,0x52,0x3c,0xd0,0xb5,0x6a,0xf0, +0xe9,0xf4,0x74,0xf0,0xe6,0x43,0xbd,0x7c,0x1c,0x3c,0xdc,0xdb, +0xfc,0x69,0x5d,0x6b,0x41,0x43,0x7a,0xa3,0x50,0x2b,0xa9,0xf3, +0x71,0xe9,0x71,0x19,0x31,0x99,0x46,0x09,0xd4,0x63,0xa7,0x8d, +0xd6,0x6e,0xbd,0x7a,0x67,0x5a,0x57,0x51,0x56,0x55,0x50,0xc3, +0x38,0x73,0x1e,0x31,0x29,0xdc,0x5e,0xa6,0x93,0xee,0x6f,0x49, +0x07,0x0e,0xdd,0xf3,0xea,0xf5,0x12,0x2e,0xe9,0x11,0x4d,0xab, +0x2d,0xce,0xab,0x5c,0x0a,0xcc,0xe8,0xcb,0xaa,0x6f,0xea,0xaf, +0x34,0x09,0x62,0xa9,0x54,0x48,0xc4,0xcf,0x87,0xb7,0x4a,0x9f, +0xf3,0xe2,0xff,0x40,0x3e,0x91,0xba,0x86,0xc4,0x2e,0x4e,0xea, +0x62,0xcd,0x2e,0x76,0x69,0x48,0x5d,0xf2,0xf8,0x7a,0x97,0x3a, +0xdb,0xe2,0x82,0xff,0x5f,0xe3,0xeb,0x3f,0xca,0xdf,0x78,0x10, +0xca,0x44,0xe4,0x61,0xaf,0xb4,0x85,0x64,0x16,0xa6,0x97,0xa4, +0x94,0x0b,0xd0,0x00,0x4f,0xa4,0x5d,0xf8,0xe4,0x5b,0xce,0x5d, +0xcd,0x50,0x5b,0xdd,0xa2,0xd0,0x9a,0x96,0xe5,0x16,0xe5,0xe7, +0x17,0x0a,0x7f,0x72,0x76,0x6b,0xf5,0xf7,0x7e,0xa5,0x51,0x66, +0x4d,0x7f,0xbf,0x73,0xeb,0x87,0x56,0x18,0x25,0xfc,0xc8,0x39, +0xe2,0x8c,0x5d,0xcc,0x5b,0x4d,0x5e,0x5a,0x6e,0x4b,0x61,0xda, +0x1f,0x4f,0xe1,0xf3,0x06,0x58,0x2f,0x74,0x71,0x67,0x91,0x3f, +0xb1,0xec,0x98,0xb6,0x60,0x7a,0x3c,0x24,0xdc,0x52,0xe6,0xb5, +0xc6,0x4a,0xf7,0xb8,0x07,0xc5,0x05,0x8f,0x19,0xaf,0x7d,0x10, +0xf5,0xea,0x02,0x6c,0x11,0xd6,0x89,0x13,0xc8,0x4a,0xbc,0xf9, +0x23,0x8f,0x2c,0x1e,0xc9,0x01,0x64,0x1a,0x0b,0x20,0x62,0x16, +0x52,0xb2,0x04,0x6f,0xfe,0x2a,0x1f,0xd5,0xfc,0xdf,0xa3,0xb8, +0x49,0x4e,0xa4,0xb6,0x89,0xb9,0xf2,0x4d,0x1c,0x63,0xb2,0x63, +0x48,0x89,0x55,0x99,0x4e,0xb6,0x49,0x47,0x05,0x0d,0x6c,0x77, +0xbe,0xea,0x55,0x2f,0xe0,0x69,0x3c,0x4c,0xda,0x3b,0x5a,0xbf, +0xcb,0xbb,0xc6,0x10,0xda,0x41,0x63,0xe3,0x75,0xd6,0xb6,0x0c, +0x85,0xb6,0x56,0x11,0x66,0x6a,0xb4,0x07,0x29,0x2c,0xf9,0xb0, +0xb8,0x60,0x29,0x2c,0xeb,0x65,0x14,0x38,0xbb,0x2d,0xad,0x2b, +0xbe,0xc1,0x34,0x91,0x1e,0xb1,0x3c,0xa8,0xe7,0x6f,0x2c,0xcc, +0xe3,0x32,0x5a,0x93,0x5b,0x13,0x3b,0x4d,0x92,0xa8,0x37,0x4e, +0x30,0xc0,0x45,0x6a,0x0b,0xab,0xac,0x69,0x5a,0x41,0x4a,0x7e, +0x42,0x8e,0x20,0xbd,0xe8,0xbe,0x0a,0x3f,0xf5,0xf2,0xc3,0x71, +0x8a,0x2a,0x32,0x9c,0xc3,0x07,0x9d,0x64,0x7f,0xa7,0x04,0xc5, +0x2c,0xc3,0xe1,0xe5,0xbc,0xe5,0xb1,0xb8,0xfd,0x6f,0x33,0x5f, +0x67,0xbf,0x28,0x57,0x3e,0x73,0x3d,0xe8,0x78,0xd0,0xf1,0xc0, +0x13,0xca,0xe2,0xe2,0x3b,0x7d,0x7b,0xa0,0x9b,0x07,0xa3,0xe1, +0x0a,0x72,0xe0,0x78,0x6c,0xb9,0xaa,0xc8,0xf3,0xed,0x1d,0x8d, +0xd7,0xcb,0x06,0x9c,0xaa,0xa8,0xbf,0xa5,0x97,0xb5,0x9b,0x83, +0x00,0x1d,0xfa,0xc3,0xc9,0xbc,0x71,0xfe,0x81,0x2e,0x95,0x26, +0xae,0x2a,0x99,0x41,0x20,0xd8,0xc5,0x9b,0x32,0xb4,0x66,0xcc, +0xc3,0x02,0x71,0x27,0x61,0x45,0x9d,0x88,0x4b,0x65,0x0d,0x0d, +0x07,0xc2,0x4a,0x3f,0x11,0x97,0xf0,0x86,0x63,0x71,0x2b,0x4e, +0x84,0xad,0xfc,0x24,0xc8,0x54,0xd4,0x91,0xa4,0x6d,0xed,0x3a, +0x30,0x6a,0x77,0x31,0xeb,0x83,0xa3,0xef,0xd9,0x76,0x05,0x5e, +0x11,0xb4,0xb8,0x40,0x5d,0x2b,0x03,0x1c,0xb7,0xbd,0xd8,0x98, +0xc2,0xc7,0x8f,0x3a,0x7b,0x53,0xbe,0x15,0xc0,0x53,0x57,0x9e, +0x9f,0x71,0x08,0x77,0x8d,0x44,0x8b,0xa5,0x72,0xb4,0x68,0x66, +0x00,0x42,0xd2,0xe3,0x71,0xfb,0xf0,0xa7,0x0c,0xa5,0x67,0xb9, +0x65,0xb9,0x69,0x1f,0xde,0x7b,0x58,0x2d,0x4c,0x9e,0x36,0x7b, +0x1a,0x00,0x27,0xfd,0x63,0x3c,0x1b,0x3f,0x91,0x6e,0xf3,0x41, +0xa7,0x82,0x4f,0x07,0x9d,0x4e,0x32,0x64,0x30,0x3b,0x17,0xf8, +0xfc,0x37,0x25,0xc9,0x7e,0x09,0x01,0xf1,0x41,0xf5,0xc5,0xd4, +0xf3,0x86,0xe1,0x2b,0xfb,0x3e,0x01,0x66,0x89,0x6a,0xcc,0xb4, +0x06,0x7a,0x78,0x49,0x83,0xb9,0x2d,0xd4,0x7b,0x23,0xab,0x72, +0x2e,0xd2,0x24,0xd2,0x97,0xdd,0x0f,0xc1,0x1e,0x6e,0xcb,0x49, +0xba,0x92,0x09,0xbb,0xef,0x22,0x74,0xe0,0xa5,0x2a,0x50,0x27, +0xa0,0x37,0x5b,0x06,0x28,0x62,0xb5,0x82,0xc5,0x97,0xef,0xbb, +0xf0,0xfb,0xc7,0x9a,0x0c,0x8c,0x9a,0x80,0x96,0x16,0x6a,0xe1, +0x6e,0xc3,0xff,0xcc,0xec,0x91,0x56,0x70,0x38,0x28,0x65,0x13, +0x58,0x74,0xa3,0xb7,0x3d,0xeb,0xae,0x10,0x8d,0xee,0xdd,0xe0, +0x1e,0xcd,0x65,0xed,0xee,0x33,0x83,0xa5,0xfb,0xf2,0xda,0x29, +0xce,0xe8,0xdd,0xdf,0xe2,0xdc,0x29,0x40,0x68,0x07,0xc6,0xc1, +0x6e,0x23,0xdc,0x8d,0x17,0x4d,0x21,0x90,0x73,0x35,0xd9,0x6f, +0xc9,0xd8,0x97,0x00,0x06,0x90,0x4c,0xdc,0x5b,0x1d,0xea,0xfc, +0x73,0xec,0x3d,0x69,0xa1,0x5f,0x93,0x49,0xb6,0x9b,0x00,0x6f, +0x60,0x3e,0x09,0xf6,0x70,0xb4,0x74,0xf2,0x6c,0xf0,0xa0,0x15, +0x45,0x0d,0xed,0x59,0x8c,0x91,0x3d,0x94,0xac,0x89,0xe8,0xaf, +0x25,0xbd,0xbc,0xda,0xaf,0x58,0xaa,0x77,0x55,0x7c,0xa9,0x25, +0xf9,0x33,0x5f,0xc7,0x03,0x7b,0xfe,0x64,0xfc,0x9f,0x9b,0xec, +0x2a,0x2d,0x7c,0x73,0x53,0xdc,0xd2,0x29,0x6d,0xb9,0xa9,0xbb, +0x57,0x9a,0x67,0x22,0xce,0xdb,0x8b,0xdf,0xa3,0x16,0x7c,0xbf, +0x57,0x1a,0x67,0x26,0x8e,0xdb,0x25,0xad,0x36,0x11,0x57,0xef, +0x1c,0xd9,0x5f,0x8c,0x23,0xe3,0x52,0xb0,0xf6,0x43,0x56,0xe0, +0xa7,0xd0,0x63,0x39,0x00,0x3b,0xef,0x76,0xf2,0xc3,0xd1,0xf0, +0x84,0x40,0xce,0x6a,0xcc,0xe1,0x44,0x69,0x2a,0x56,0xbd,0x80, +0x2a,0x2e,0x0d,0x63,0xc8,0x2e,0xec,0xb9,0xc7,0xa3,0xd5,0xd8, +0xfb,0xd0,0xb3,0x93,0x35,0xab,0x87,0xe2,0x07,0xe2,0x8a,0x86, +0xfa,0xb8,0x60,0x25,0x0a,0x55,0x66,0x34,0x3b,0x3f,0xa7,0x22, +0xa7,0x5e,0x90,0x52,0x07,0x14,0x33,0xf8,0xa2,0x07,0xb9,0xcf, +0x53,0x7e,0x11,0xc4,0x8e,0xe1,0xc9,0x24,0x32,0x35,0xf2,0x62, +0xc8,0xd1,0xa3,0x27,0xe9,0x99,0x8b,0xcf,0xe1,0xcb,0x42,0xd0, +0x3e,0x0f,0xbd,0xca,0x5a,0xdc,0x39,0x29,0x69,0x2b,0xce,0xc5, +0xdf,0x51,0xa3,0x82,0xb5,0xd9,0xbc,0xc7,0x7f,0xdd,0xbb,0xf5, +0xfa,0xe2,0xa5,0x4b,0x67,0x2f,0x9e,0x82,0x65,0x78,0x86,0x76, +0x54,0x29,0x49,0x4a,0xf0,0x90,0x68,0x3b,0xef,0x75,0xdf,0xe6, +0x29,0x28,0x3e,0xd1,0x19,0x9e,0xcf,0xfb,0x1e,0xf5,0x3d,0xea, +0x7d,0x34,0x93,0xc5,0xb5,0x99,0xcd,0x30,0xae,0xf3,0x75,0xbf, +0xf0,0x02,0x2a,0x88,0xe9,0x33,0xcd,0x67,0xfb,0xef,0xd8,0x38, +0xd1,0xab,0x6a,0x83,0x9b,0xbb,0x56,0x09,0x93,0x20,0x8e,0x95, +0xcd,0x12,0xcd,0xd4,0x50,0x05,0x3f,0x1a,0x91,0x2c,0x2c,0x2f, +0xab,0x68,0x28,0xed,0x10,0xa4,0xba,0x21,0xc5,0x7c,0xbe,0xf4, +0x4e,0xe1,0x77,0x19,0x3f,0x0a,0x8a,0x49,0xf2,0x3c,0xe3,0x7e, +0x98,0x0d,0x45,0x3d,0x58,0x04,0xd3,0x74,0x18,0xf9,0xbc,0x60, +0x08,0x17,0x98,0xe9,0x96,0xe8,0x8b,0xea,0xf8,0x85,0xb4,0xd9, +0x40,0xdc,0x8c,0xe9,0xac,0x07,0xa4,0xea,0xc9,0xc3,0xcc,0x1f, +0x80,0x42,0x22,0xcc,0xec,0xc5,0x99,0xf0,0x05,0x8b,0x4d,0x52, +0x3b,0xe6,0x93,0x46,0xd7,0x2e,0xc3,0x0a,0xeb,0x86,0x1a,0xea, +0xd2,0x62,0xd4,0x6d,0x5b,0xce,0x9e,0x3e,0x45,0x71,0x9d,0x48, +0x99,0xd7,0xc5,0x4c,0x1e,0x56,0x1d,0x26,0x92,0xa7,0x98,0x25, +0x7a,0xf2,0x9a,0x68,0x4f,0xa4,0x59,0xf2,0x4c,0x45,0x4e,0x9a, +0x85,0xb6,0x44,0x9c,0x85,0x4b,0xa5,0x59,0x9c,0x68,0x2e,0x7d, +0xc2,0x5c,0x07,0x67,0x7f,0x94,0x61,0x5f,0x08,0xd8,0x8f,0x27, +0x79,0x8d,0x7c,0x39,0x02,0xea,0x71,0x0d,0x69,0xe9,0x75,0xaa, +0xb0,0x42,0xfe,0x44,0x35,0x5c,0x8c,0x97,0x08,0x04,0x5f,0x7f, +0xf9,0x6f,0x34,0x6c,0xd7,0xb8,0x44,0x4f,0xe1,0x74,0xdd,0xaf, +0xd0,0x5f,0x73,0x44,0xdd,0x62,0x31,0xc1,0x45,0x43,0xe0,0x28, +0x2d,0x90,0x35,0x78,0x79,0x69,0x1a,0x3a,0x0e,0xc1,0x22,0x5e, +0x9c,0x27,0x7d,0x44,0x9a,0xf9,0x7f,0x1b,0x9e,0xf5,0x74,0xf7, +0x0b,0xdd,0xd2,0x03,0x43,0xf1,0x18,0x6f,0x62,0xbd,0xd9,0x76, +0xb9,0xab,0xb0,0x45,0xda,0xa0,0x2f,0x6e,0xc0,0x48,0x74,0xe3, +0x53,0x99,0x9d,0x19,0x70,0xed,0x69,0x72,0x5e,0xe8,0x43,0xe2, +0x8a,0x3e,0xd6,0x9d,0x76,0x8a,0x89,0x44,0x5a,0x0b,0x2a,0xf0, +0x53,0x1f,0xfe,0x04,0x93,0x34,0x70,0x12,0xde,0xd7,0x87,0xfb, +0xa8,0x22,0xcd,0xd5,0x17,0xdf,0xe2,0x2c,0xe9,0x2f,0x7d,0xf1, +0x2f,0x06,0xf2,0x0d,0xb8,0x54,0x86,0x9f,0xb6,0x71,0xcd,0x99, +0xa9,0xad,0xaa,0x70,0x19,0x9c,0xfa,0xd0,0x89,0xa1,0x2e,0x17, +0x7e,0xd8,0x9b,0x71,0xd7,0x2b,0xe6,0xbd,0xc6,0x9d,0xba,0xcd, +0xf5,0x8c,0x1b,0xe9,0xf6,0xe8,0xb4,0x30,0x6a,0xf6,0x89,0xe2, +0x28,0x09,0xae,0xf4,0x2b,0x3b,0x98,0x63,0xec,0x47,0x73,0x7c, +0xb3,0xdd,0xd3,0x3d,0x05,0x5c,0x8a,0xfa,0x24,0x24,0x29,0x2c, +0x31,0x34,0xc1,0xc9,0x91,0x76,0xdb,0xf7,0x98,0x37,0xda,0xb8, +0xb9,0xb9,0x7a,0xb8,0x78,0x1f,0x38,0x7b,0xe0,0x9c,0xdf,0xb9, +0x28,0xe6,0x1c,0x66,0xc5,0xc2,0xa7,0x31,0x30,0x21,0xf5,0x72, +0xe4,0xe5,0xc8,0x4b,0x91,0x97,0x2e,0x50,0x17,0xfb,0x6e,0xb7, +0x3e,0xfb,0x56,0x5b,0xe5,0x9a,0x06,0x93,0x26,0xa3,0x6a,0x83, +0x32,0xe5,0xb2,0x94,0x0b,0x87,0x40,0x25,0x16,0x26,0xc6,0xc2, +0xb8,0x34,0xe5,0xe8,0xf0,0xa8,0xb0,0xa8,0xf0,0xb6,0x2c,0xea, +0xdf,0x6f,0xfb,0xc0,0xad,0xdd,0x26,0x90,0xa6,0xfa,0x65,0x78, +0xa4,0xbb,0x69,0x1d,0xdf,0x76,0x62,0xeb,0xc9,0x6f,0x6f,0x7f, +0xf7,0xfc,0xc6,0x53,0xcb,0x32,0xea,0x6c,0x61,0x6f,0x61,0x63, +0x19,0x9c,0x15,0x94,0x15,0x98,0xd9,0xd9,0xd9,0x38,0x50,0x3b, +0x70,0xf6,0x3c,0x05,0xdd,0x0e,0xac,0xe2,0xf2,0x8a,0xb3,0x4b, +0xd3,0x4a,0x65,0x3d,0x40,0x17,0x7f,0x27,0x37,0x7b,0x41,0xaa, +0x32,0x85,0x70,0xce,0xd3,0xc2,0xd1,0xda,0xc1,0x51,0x10,0x97, +0x9f,0x21,0x87,0x93,0x0f,0x27,0x85,0x24,0x39,0x3b,0xd0,0x1e, +0xbb,0x3e,0xb3,0x66,0x4b,0x77,0x0f,0x77,0x4f,0x37,0x1f,0xa3, +0x33,0x34,0xb0,0xcd,0xab,0x33,0xa0,0xca,0x36,0x88,0x26,0xfb, +0xa7,0x7b,0xa6,0xba,0xeb,0x9e,0xd8,0x7d,0x62,0xd7,0xa9,0x6f, +0x6f,0x3d,0xf9,0xfe,0xfa,0x53,0xab,0x32,0xea,0x6a,0xe5,0x68, +0x6d,0x67,0x73,0x30,0x23,0x28,0x33,0x30,0xb3,0xa3,0xa3,0x69, +0xa0,0xae,0x5f,0x7e,0xe2,0x6b,0xce,0xd3,0xdc,0xc9,0xca,0xc1, +0x41,0x40,0x35,0xa9,0x9c,0x38,0x8c,0x48,0x53,0x6f,0xd0,0xc6, +0x4d,0xfc,0xb6,0xbc,0xe0,0x27,0x2a,0x50,0xcb,0xb5,0x24,0x67, +0xd6,0xa9,0x3e,0xe3,0x75,0x33,0x95,0x90,0xe3,0x7b,0x61,0x13, +0x19,0xd0,0x1b,0x50,0xaf,0xdf,0xd3,0x5a,0x49,0xad,0x1e,0xe8, +0x5f,0xd7,0xed,0x93,0x87,0x46,0x4e,0x90,0xdb,0xd7,0x9b,0xef, +0xff,0xaf,0x34,0xf5,0x6e,0x0d,0x43,0xd6,0x0f,0xd5,0x14,0xdf, +0x12,0xd4,0xf9,0x20,0x9f,0x11,0xc5,0x5b,0x86,0x59,0xc8,0xf2, +0x19,0x7a,0xff,0x47,0x3e,0xa3,0x1c,0x27,0xc8,0x92,0x75,0x6f, +0xb8,0xd6,0x14,0x79,0x91,0x74,0x07,0x5f,0x99,0x24,0xaf,0xaf, +0x3e,0xda,0x4d,0x3d,0xc3,0xe5,0x59,0xcb,0x02,0x84,0x7d,0x58, +0xc0,0xaf,0xc3,0x2b,0xec,0xe5,0x79,0x1d,0x25,0xcc,0x54,0xa2, +0x7b,0x30,0xfa,0x83,0xa9,0x84,0x19,0x42,0x18,0x33,0x95,0x04, +0x03,0x71,0x0e,0x33,0x15,0x65,0x03,0x51,0x19,0xe5,0xd4,0xa3, +0x32,0xa6,0x5e,0xc9,0x78,0xb2,0x6c,0x2a,0x49,0xc0,0x40,0x2a, +0x8b,0xf3,0xa0,0xca,0x4b,0x89,0xac,0x4f,0xd4,0xb9,0xb4,0x19, +0x96,0x59,0x37,0x54,0x51,0xb7,0x16,0xb3,0x6e,0x7b,0xf9,0x13, +0xb5,0x9e,0x8c,0xd5,0x33,0x58,0xaf,0x39,0xdd,0x8d,0xa7,0x3f, +0x60,0xf5,0x40,0x23,0x08,0x64,0x58,0xfd,0x8c,0x81,0x38,0x09, +0xbf,0xfc,0xa0,0xb1,0x92,0x89,0x3b,0x46,0xfa,0xda,0x92,0xff, +0x9a,0x60,0x12,0x7c,0xd2,0x8b,0x9f,0x30,0xac,0xae,0xcc,0x0f, +0xf7,0x49,0x11,0xe4,0x15,0x58,0x2b,0x22,0x30,0x75,0x98,0x81, +0x40,0x7b,0x31,0x8e,0xe0,0x5c,0xc8,0x81,0xb9,0x1c,0x73,0x2e, +0xdf,0x12,0x98,0xcb,0x70,0xd8,0x5c,0x0e,0xee,0xde,0x21,0xb5, +0x2e,0xad,0x86,0xa5,0xd6,0x0d,0x95,0xd4,0xbd,0xd5,0xa2,0xcb, +0xa1,0x92,0xd9,0x0e,0x2f,0xfe,0x87,0x40,0x24,0x17,0xba,0xdb, +0x73,0x95,0xf5,0xd6,0x1e,0x6f,0xda,0xfd,0xba,0xfc,0x5d,0xd2, +0x23,0xa1,0x43,0xf2,0xe4,0x93,0x3a,0xe3,0xbb,0xa2,0xba,0xb4, +0x62,0xe9,0x41,0x5c,0xe8,0x8a,0x13,0x96,0xe1,0x17,0xdd,0x0e, +0xb4,0xf9,0x66,0xf9,0x9d,0xdc,0xfb,0x02,0x7c,0x8a,0x13,0x38, +0xf4,0x5c,0x83,0x4b,0xd0,0x0f,0xe7,0xab,0x54,0xea,0x82,0x36, +0x90,0x77,0xf0,0x45,0x0c,0x6c,0x65,0x70,0x2b,0x1e,0xb7,0x83, +0x12,0xaa,0x82,0x09,0x4e,0xae,0x18,0xa4,0x18,0x0a,0x73,0x58, +0x20,0x07,0xcf,0xe9,0xf8,0x0d,0x4c,0x23,0xfa,0x3d,0xbb,0x06, +0xd7,0xf5,0x38,0x9b,0xd1,0x6f,0x4c,0xee,0xeb,0x5d,0xd1,0x17, +0xa2,0xd0,0x8e,0x18,0xa1,0xd2,0x4a,0x54,0x59,0xf5,0x55,0xb3, +0x15,0x7d,0xf5,0xc7,0x4b,0xf8,0xb2,0x0f,0x26,0xb0,0xc6,0x8b, +0x51,0x4c,0x26,0x0a,0xf5,0x5e,0xb4,0xe3,0xf2,0x2b,0xf3,0xea, +0xd3,0xab,0xf4,0x72,0xe9,0x21,0x5b,0x2f,0x33,0x77,0x4b,0x41, +0x5a,0xce,0x65,0x14,0x58,0xd7,0x18,0xd7,0x1a,0x17,0x2b,0xbb, +0x5b,0xf6,0xba,0xb5,0xb8,0xb4,0x38,0x28,0xc7,0x25,0x29,0x41, +0x72,0x03,0x09,0x2d,0xf1,0x69,0x0e,0xce,0x33,0xf1,0xa5,0x99, +0xbe,0x85,0xb6,0xc9,0xde,0x82,0x18,0x3e,0x7c,0x8a,0x84,0x7c, +0xe7,0x05,0x82,0xf7,0x3d,0x8b,0x43,0x34,0xd9,0x3e,0x55,0x3f, +0xd9,0xc0,0x36,0x52,0xff,0x98,0xe1,0xb1,0x07,0x40,0xef,0xc0, +0x9a,0x1e,0x58,0x68,0x92,0x4d,0xfd,0xf7,0x7a,0x6e,0x76,0xdd, +0x1c,0x5c,0x1a,0x50,0x16,0x50,0x52,0x79,0xaf,0xfa,0x75,0xe1, +0x53,0xd3,0x2c,0x1a,0xbc,0xdf,0x69,0x89,0xa7,0xae,0x55,0x37, +0x75,0xb2,0xed,0xdd,0x3f,0xb0,0xb9,0x75,0xbb,0xb2,0x97,0x86, +0xbb,0x96,0xbb,0x91,0xd9,0x49,0x7a,0xe8,0xa1,0xff,0x43,0xff, +0x41,0xcb,0x43,0x34,0xc5,0x26,0xcd,0x30,0xd9,0xc0,0xe6,0xb8, +0xf1,0x71,0xa3,0x13,0x8f,0x61,0xda,0x03,0x58,0xd9,0x03,0x8b, +0xd8,0x0d,0x83,0xf5,0x7c,0xf7,0x7a,0xaa,0x05,0x17,0xf8,0x17, +0xf9,0x17,0x56,0xde,0xaa,0xfe,0x29,0xf7,0x1b,0x93,0x2c,0x7a, +0x50,0xd3,0x7d,0xb9,0x87,0xae,0x6d,0x13,0x75,0xb6,0xed,0x32, +0xb8,0xba,0xab,0x49,0x5b,0xd9,0x75,0x87,0xc3,0x4e,0x47,0xad, +0x83,0x67,0x0f,0x9e,0x3d,0x74,0x2e,0x46,0x97,0xbe,0x8c,0x05, +0x21,0xf5,0x69,0x7a,0xac,0x2d,0x6d,0x4b,0xb9,0x10,0xf2,0x7d, +0x3c,0x4c,0xcc,0x7c,0x92,0xa5,0x7c,0x39,0xf0,0x52,0xf0,0xa5, +0x83,0xc2,0xb0,0x8a,0x58,0x4a,0x2c,0xeb,0x35,0x5a,0x75,0xca, +0xdd,0x2d,0x69,0xbf,0xcb,0x80,0x2c,0x83,0x71,0x1c,0xc7,0x11, +0x37,0xfc,0xc8,0x12,0x3f,0x56,0x5b,0xd8,0xee,0x40,0xef,0xbe, +0xeb,0x86,0xe9,0xc5,0xff,0xb0,0xa6,0x35,0x50,0xec,0x25,0xb5, +0x16,0x35,0xc6,0xd5,0x86,0xa8,0x14,0x8a,0x33,0xc3,0x71,0xea, +0xf1,0xde,0x37,0x9d,0xf0,0x71,0x2d,0x8c,0xd1,0xc9,0xa4,0x4e, +0xa8,0xb4,0x0f,0xbf,0xd4,0x5e,0xb0,0xfd,0x0c,0x8d,0xd2,0x85, +0x1d,0x31,0x70,0x38,0x1d,0x36,0xe5,0x29,0xa7,0xfb,0xa4,0x79, +0xa7,0xf9,0xb4,0x57,0x52,0xcd,0xb7,0x3b,0xde,0xee,0xf8,0x51, +0x90,0x36,0x1f,0x24,0xfa,0x4d,0xbb,0x9b,0xd4,0xca,0x46,0xf4, +0xb2,0xaf,0xdb,0x0f,0x5a,0x09,0x9e,0xa8,0x43,0x4c,0xea,0xd5, +0x9a,0xf6,0x95,0x79,0x9a,0xd3,0xeb,0xae,0x57,0xed,0xfa,0x6c, +0x05,0x30,0x94,0xce,0x92,0x41,0x71,0x81,0xce,0x35,0x71,0xa5, +0x94,0x2f,0xad,0xe4,0x31,0x36,0x99,0x3c,0x7a,0x7b,0x05,0x68, +0xe5,0xbf,0x86,0x39,0xd4,0x11,0xc7,0x18,0xa1,0xb0,0x6d,0x91, +0xa0,0x48,0x84,0x4e,0x82,0x27,0x98,0xa7,0x3e,0xc1,0xfc,0xac, +0xa3,0xd8,0x4a,0xf6,0x0e,0xe1,0xa8,0xbb,0x8b,0x6a,0x3d,0x6d, +0x68,0xe3,0xe1,0xe6,0x80,0x06,0x5f,0x01,0x2b,0x81,0x8a,0xeb, +0xfa,0xde,0x8f,0xd1,0x17,0xe7,0x33,0x63,0x08,0xe1,0x2a,0xf3, +0x4b,0x0a,0x72,0xf2,0x6d,0x2b,0xa9,0xae,0xc6,0x46,0x6d,0x1c, +0x6f,0x9e,0x63,0x41,0xb3,0xe2,0xb2,0xe2,0x32,0xe3,0x05,0x49, +0x31,0xa0,0xf8,0x04,0x9a,0x24,0xa9,0x4f,0x94,0xa0,0x4f,0x1a, +0xc0,0x8d,0x23,0x52,0x5e,0xd3,0xb9,0x76,0x39,0x0d,0x8b,0x58, +0xcf,0x67,0x86,0xa6,0x87,0xa6,0x86,0x0a,0xc3,0x56,0xcc,0x3b, +0x94,0x17,0x94,0x94,0x14,0x95,0x65,0x07,0x65,0x06,0x65,0x04, +0x96,0x96,0xd1,0x43,0x59,0x01,0x39,0xfe,0x39,0x39,0x25,0x59, +0xcc,0xcd,0x39,0xe4,0xd0,0x50,0xaf,0x83,0x5e,0x41,0xde,0xbe, +0xb9,0xde,0xd9,0x7e,0xa9,0xde,0x6e,0xb4,0xe0,0x70,0x61,0x60, +0x41,0x80,0x8f,0x87,0xa7,0x97,0x9b,0x9f,0x20,0x4e,0x73,0x27, +0x15,0xf9,0xa5,0xc5,0x45,0xa5,0x39,0x81,0xd9,0x81,0x99,0x81, +0xc5,0xe5,0x1f,0xae,0xce,0xce,0x2f,0xc9,0x2e,0x4b,0x2f,0x75, +0xca,0xa3,0x87,0x3d,0x83,0xbc,0x02,0xbc,0x7d,0xf2,0xd8,0xd5, +0xe9,0x5e,0xec,0xea,0x83,0xec,0x6a,0x7f,0x6f,0x4f,0x0f,0x1f, +0x76,0x35,0xa8,0x32,0xa4,0x9f,0x13,0x94,0x15,0x94,0x19,0x5c, +0x54,0x41,0x0f,0x65,0x04,0x65,0x05,0x64,0xe5,0x15,0x67,0x95, +0xa4,0x95,0x39,0xe6,0xd1,0x10,0xcf,0x60,0xaf,0x00,0x1f,0x1f, +0xf6,0x58,0xdf,0x74,0x1f,0xf9,0xc2,0x82,0xa0,0x42,0x7f,0x0f, +0x4f,0x57,0x1f,0x47,0xff,0x62,0x17,0x5a,0x9b,0x5f,0x55,0x5c, +0x56,0x26,0xe0,0x37,0x79,0x24,0xbf,0x34,0xbb,0x34,0xbd,0x74, +0xe4,0x8a,0x20,0x2f,0x7f,0xef,0x03,0xb9,0x3e,0xec,0x51,0x3e, +0xae,0x34,0xff,0x50,0x7e,0x50,0x5e,0x80,0x37,0xf3,0xbd,0x2e, +0xfe,0xa5,0x4e,0xb4,0x32,0xbf,0xa2,0xa4,0xb8,0x34,0x37,0x30, +0xdb,0x3f,0x33,0xa0,0xa4,0x9c,0x1e,0xcc,0x0e,0xc8,0xf5,0xcb, +0x11,0x26,0x75,0x89,0xb7,0x48,0x7a,0x74,0x46,0x6c,0x66,0x9c, +0x80,0xd7,0xfa,0xe1,0x7b,0xa8,0xc7,0xc7,0x7d,0xf0,0x18,0xfa, +0xb1,0xc6,0x94,0x8f,0x8e,0x0b,0x4d,0x38,0x98,0x14,0x9c,0xa8, +0x9c,0x91,0x96,0x9e,0x9e,0x96,0x15,0x94,0x46,0x73,0x4a,0x0f, +0x27,0x8d,0x1c,0x49,0x4f,0x49,0x4f,0x4b,0xcd,0x70,0x29,0xa2, +0x21,0x41,0x07,0x0f,0x05,0x1d,0xf6,0x4d,0x39,0x90,0x14,0x18, +0x17,0xe0,0x42,0xd3,0x8f,0x67,0x1e,0xcd,0x8c,0x38,0x10,0xea, +0x13,0xee,0x7d,0x34,0xcb,0x81,0x56,0x26,0x57,0xa6,0x95,0x65, +0xa5,0x47,0x64,0x1c,0x49,0x3b,0x72,0x38,0x28,0x38,0x38,0xe8, +0xf0,0x81,0xe4,0x03,0x89,0x01,0xb1,0xec,0xcc,0xb4,0xe3,0x59, +0xec,0x4c,0xbf,0x10,0xdf,0x70,0x9f,0xc8,0x6c,0x7b,0x5a,0x91, +0x52,0x9e,0x5e,0x96,0x93,0x1b,0x96,0x13,0x9a,0x1e,0x9e,0x98, +0x46,0x63,0x5d,0x95,0x06,0xb9,0xd2,0xe4,0x0c,0x46,0x7d,0x4b, +0xf9,0xf4,0x23,0x69,0xe1,0xa9,0xe1,0xc5,0x0d,0x54,0xaf,0x61, +0x73,0xfb,0x8a,0x0a,0x01,0x9c,0x3a,0xdf,0x4f,0x95,0xb3,0x93, +0x1a,0x99,0x6c,0xb2,0x5e,0xe7,0x25,0x88,0xbb,0x1b,0x09,0x86, +0x71,0x05,0x19,0x79,0x59,0x19,0x59,0xae,0x99,0x14,0x4c,0x38, +0x08,0xf1,0x22,0x35,0xa1,0xd5,0x87,0x2b,0x0e,0x0a,0x58,0xf3, +0x8c,0x9d,0x2a,0x45,0x4a,0xf6,0xa4,0x22,0xb9,0x24,0xbd,0x28, +0x2b,0x27,0x2c,0x3b,0x24,0x23,0xa4,0x90,0xbd,0xf2,0xa4,0x83, +0xc9,0xc1,0x49,0xac,0x72,0x19,0xe9,0x59,0x7e,0x39,0x34,0xbf, +0xe8,0x70,0xf2,0x41,0x56,0x3d,0x56,0xb9,0x34,0x56,0x39,0x8f, +0x7c,0x7a,0x38,0xf8,0xe0,0xa1,0xe0,0x10,0xdf,0x14,0xbf,0xc4, +0xc0,0x58,0x3f,0x77,0x56,0xb9,0xac,0xc8,0xac,0x23,0x7e,0xa1, +0x07,0xc2,0x7d,0x8f,0x66,0x39,0xd2,0xf2,0xe4,0xd2,0xb4,0x92, +0xcc,0x8c,0x23,0x19,0xe1,0x69,0x61,0xac,0x72,0x07,0x83,0x0e, +0xf9,0x25,0xfb,0xb1,0xd7,0xe0,0xe7,0x2a,0xbf,0x86,0xc8,0xec, +0x23,0x7e,0x21,0x7e,0x61,0xbe,0x91,0x82,0xf8,0x12,0x9b,0x49, +0x60,0x96,0x57,0xf6,0x81,0x54,0x01,0x36,0xb5,0xe1,0xff,0x5c, +0x13,0x97,0xb6,0x0f,0xff,0x69,0x26,0x7e,0xa1,0x81,0x7f,0x98, +0xc3,0x1f,0xab,0xa5,0x35,0x26,0xff,0x99,0xd9,0x89,0xda,0x9c, +0xc6,0x0b,0xe2,0xe9,0x97,0x13,0x5e,0x1a,0x90,0x17,0xa0,0x8c, +0xe1,0x2f,0x18,0xba,0x7e,0xa3,0x38,0x49,0x64,0xe1,0xf7,0x9f, +0x18,0xec,0xd6,0x3e,0x67,0x7c,0xc6,0x5c,0xc5,0xca,0xd9,0xc4, +0x43,0xdf,0x37,0x53,0x8b,0x76,0x14,0xd6,0x16,0x55,0x95,0x85, +0xe1,0x2c,0xd7,0x65,0xbb,0x16,0x77,0xca,0xb3,0xaa,0xe1,0xab, +0x62,0xe6,0x6e,0x2b,0xa7,0xc3,0x6c,0xc5,0xfe,0x1e,0x7e,0x38, +0x11,0x13,0x48,0xc0,0x4d,0x9f,0x41,0x77,0x59,0xfc,0xbd,0xcc, +0xb0,0x50,0x27,0x47,0x5d,0x50,0xdc,0x30,0x26,0x78,0x05,0x94, +0x20,0xa5,0x0b,0x53,0x9e,0xeb,0xac,0xc1,0xcb,0xc6,0x70,0x19, +0x95,0xb0,0xcd,0x50,0x34,0xc7,0x8f,0xa4,0xbd,0xc6,0xe2,0x5e, +0xb4,0xc6,0xd9,0xb2,0x20,0x10,0x4c,0xe4,0x5a,0x32,0xe5,0xe8, +0x67,0x00,0x5f,0x76,0xe1,0x97,0xf0,0x11,0x2c,0xe7,0xa5,0x1b, +0x18,0x42,0x3a,0xdc,0x06,0xad,0xea,0x6c,0x6a,0xea,0xa9,0x4d, +0x83,0x76,0x9b,0x59,0x31,0x73,0xc8,0x0a,0xe6,0x90,0xc5,0xa7, +0xbd,0xb8,0x95,0xcb,0xad,0xca,0x69,0x48,0xab,0x32,0xc8,0xa6, +0x21,0xb6,0xbe,0x66,0x9e,0x96,0x02,0xfe,0xcd,0x41,0x50,0x39, +0x09,0x2b,0xf1,0x6d,0x39,0x94,0x6f,0xe6,0x47,0x33,0x7c,0xf3, +0xad,0x93,0xbd,0x64,0xdd,0x52,0x27,0x92,0xff,0x38,0xed,0x9b, +0xf8,0x1f,0x05,0x98,0xde,0x8b,0x57,0x0c,0x60,0x3c,0x17,0x8c, +0xeb,0x6c,0x71,0xfa,0x16,0x1c,0x5d,0xa8,0x49,0x33,0xf3,0x53, +0x0a,0x93,0x8b,0x99,0x97,0xe9,0x7d,0x04,0x5b,0xc4,0x20,0x16, +0x8d,0xa4,0x7a,0x12,0xfe,0xc4,0x17,0x78,0xbf,0xbb,0x56,0x87, +0x69,0xa2,0x7d,0x8a,0x7e,0xa2,0x81,0xcb,0x51,0xab,0x63,0x56, +0xc7,0xaf,0x01,0x19,0x82,0x8d,0xcd,0x30,0xdf,0x3c,0x87,0xb9, +0x51,0xbf,0xad,0xde,0x5b,0x0f,0x17,0x1d,0x2c,0x09,0x2e,0x2a, +0xb9,0x57,0xfe,0x26,0xfb,0x5b,0xb3,0x2c,0x1a,0xa2,0xe9,0xbd, +0xdc,0x47,0x9b,0xf5,0xc0,0xb4,0x88,0x64,0x67,0x7b,0xda,0xbe, +0xb7,0x73,0x6b,0xdd,0xce,0x03,0xfb,0xbc,0x35,0xbc,0x0d,0xed, +0x4e,0xd2,0xd0,0x07,0x41,0x0f,0x83,0x07,0x6c,0x0e,0xd3,0x24, +0x9b,0x64,0xc3,0x04,0x03,0x97,0xe3,0xb6,0xc7,0x6d,0x4e,0xde, +0x00,0x7a,0x15,0x56,0xb5,0xc2,0x22,0x53,0x56,0x13,0x83,0xc0, +0x7d,0x07,0xd4,0x0f,0xe7,0x1f,0x2c,0x0c,0x2e,0x28,0xbe,0x5d, +0xf6,0x2a,0xf3,0xa1,0x79,0x16,0x0d,0xd5,0xf2,0x59,0xed,0xab, +0x7d,0x24,0x25,0x22,0x29,0x32,0xd1,0xd5,0x96,0xb6,0xe8,0x77, +0xef,0xae,0xd1,0xf2,0xda,0xe1,0xbe,0xd3,0x6d,0x7f,0xc8,0xd9, +0x90,0xb3,0xa1,0xe7,0xa2,0xf5,0xe8,0xfd,0xd8,0xdf,0xd3,0x6e, +0xa7,0x5d,0x0c,0xbb,0x18,0x7e,0x21,0xbc,0x25,0x85,0x5e,0x08, +0xb9,0x1b,0xf7,0x77,0xc6,0xed,0x4c,0x65,0xe6,0xb2,0x83,0x2f, +0x1e,0x12,0x86,0x7d,0x61,0x26,0x11,0xc7,0xc2,0x58,0x69,0x2c, +0xa3,0x0c,0xcb,0x15,0x59,0x44,0x4b,0xb1,0xef,0x0a,0x3f,0x9c, +0x87,0x55,0x84,0xf9,0xca,0x83,0x68,0x25,0x4f,0x38,0x81,0x1d, +0x5c,0x77,0x4e,0x56,0xb7,0xaa,0xe8,0x2a,0xce,0xbe,0xf2,0xfe, +0x23,0x5e,0x7c,0x87,0x06,0xe4,0xd1,0x82,0x7e,0x1c,0xd3,0x8f, +0x9f,0x5d,0x2d,0xa4,0xda,0x40,0xf5,0xde,0x6e,0xfc,0x47,0x90, +0x42,0xce,0x11,0x17,0x24,0xe6,0x4b,0x16,0xe0,0xe8,0x5e,0x07, +0xfa,0x97,0x2c,0xdc,0x31,0xae,0x0c,0x88,0xac,0x21,0xac,0x28, +0x22,0xef,0x67,0xea,0x8a,0x5b,0xb9,0x48,0x9b,0xc3,0xa6,0x87, +0x6c,0x05,0x7c,0x38,0x3c,0xe7,0xaa,0xf8,0x1a,0xd4,0xa4,0x6f, +0x86,0xc4,0x6f,0x40,0xfd,0xc3,0xc6,0x58,0xca,0xc6,0x2f,0x39, +0x06,0x7a,0xdf,0x72,0xdd,0xb9,0xd9,0xbd,0xaa,0xe2,0x80,0xb4, +0x94,0x4f,0x6b,0x48,0x69,0x4b,0x68,0x16,0xc4,0x35,0x72,0x46, +0x4b,0xd0,0x26,0x96,0x27,0x4d,0x4f,0x19,0x9d,0x12,0xc4,0x21, +0x98,0xd7,0xf7,0x7e,0xac,0x3e,0x2c,0x90,0xde,0xf0,0xa6,0x67, +0x4d,0xce,0x9a,0x9e,0xbb,0xac,0x43,0xe1,0x48,0x2c,0x1c,0x4f, +0x00,0x9b,0x14,0x01,0x77,0x5e,0x83,0xbd,0x7c,0xef,0xe5,0xce, +0xa8,0xd6,0x28,0x01,0x03,0x45,0x4b,0x22,0xd9,0xc0,0x52,0xd1, +0x86,0x43,0xe7,0xb1,0xb8,0x9a,0xed,0xaf,0xe6,0xd1,0x6b,0xac, +0x68,0x83,0xf3,0x39,0x54,0x8d,0xc4,0x95,0x47,0x71,0xdd,0x49, +0x06,0x83,0x0f,0x2b,0xf6,0x91,0x82,0xe6,0xf4,0xd6,0xe4,0x6a, +0xf5,0x24,0x7a,0xc4,0x3e,0xc8,0xc8,0xc7,0x54,0xc0,0xda,0xe1, +0xe8,0x6b,0x57,0xc4,0xf7,0x5a,0xd7,0x15,0xd1,0xdc,0x7e,0x39, +0xf1,0xf2,0x7b,0x58,0x26,0xbe,0xe7,0xa4,0x31,0x63,0xd9,0xde, +0x0a,0x79,0xef,0x3d,0xba,0x13,0xf1,0x3d,0x6e,0x90,0xe4,0x89, +0x1a,0xfa,0x22,0x21,0x98,0xf8,0x3b,0xf8,0x76,0xa1,0xef,0xf7, +0x21,0xdf,0x42,0x76,0x17,0x66,0x7f,0xaf,0xb7,0x1e,0xe3,0xbf, +0xd7,0x5d,0x3f,0xd2,0xdb,0x37,0x0d,0x3c,0x81,0xf8,0x4d,0x29, +0x1b,0xd0,0xd5,0x18,0x5c,0x17,0xe2,0xd7,0x46,0xa2,0xb0,0x18, +0xdf,0x1b,0xc3,0x7b,0xd4,0xc3,0x59,0x5c,0xba,0x91,0x12,0x7c, +0xfc,0xdf,0x59,0x2d,0x7b,0x47,0x92,0xfd,0xfd,0x06,0x33,0xf8, +0xe1,0x4e,0x69,0x32,0xb9,0x01,0x5e,0x62,0x3f,0x16,0x0c,0x7f, +0xcc,0x83,0xb7,0x38,0x85,0xe0,0x2a,0x30,0x86,0x55,0x1c,0xae, +0xc2,0xb3,0x04,0x56,0xa1,0x33,0xae,0x62,0x50,0xaa,0x9d,0xd4, +0xf9,0xb4,0xdb,0x96,0x38,0xd6,0xd7,0x50,0xcf,0x2a,0xc3,0x36, +0xc7,0x5c,0x16,0x6f,0xbd,0x15,0x8e,0x04,0x26,0xe8,0xe0,0x04, +0xf4,0x34,0x10,0x23,0x7b,0xf9,0xe1,0x4d,0xf1,0xa4,0x23,0xb1, +0x35,0xa9,0x3a,0xd9,0xb7,0x83,0xae,0x74,0xc3,0xd9,0xde,0x0b, +0x8f,0x26,0x1a,0xd2,0xfa,0xcb,0xed,0xb1,0x9d,0xcc,0x0d,0x6f, +0xc1,0x4d,0x06,0xb0,0x09,0x77,0xe2,0xe7,0xd2,0xec,0xbe,0x1b, +0x0c,0xd0,0x7d,0x8f,0x14,0x76,0xc2,0xba,0x5e,0x5c,0xc7,0x2b, +0xf6,0xe1,0x78,0x82,0x4b,0xb8,0xbc,0xbe,0x9c,0xdb,0x29,0x57, +0x8d,0xd2,0x68,0xc8,0x2e,0xff,0xdd,0x3e,0x1a,0x82,0xac,0xc8, +0xec,0x85,0xcb,0xd1,0xd2,0x00,0x2c,0xf1,0xe4,0x20,0x9c,0x04, +0x3b,0x06,0x8f,0x60,0x39,0x84,0x72,0x78,0xfb,0x0d,0x89,0xe8, +0x0a,0xbe,0x16,0xd4,0x6c,0x7a,0x98,0x66,0x5a,0x64,0x68,0x27, +0x18,0x09,0x92,0x89,0xb4,0x94,0x80,0x0f,0xd8,0xa2,0x0f,0x3f, +0xe9,0x67,0x45,0x2e,0xb9,0xed,0x7c,0xc5,0x6e,0xc0,0xaa,0xac, +0x85,0x1a,0x36,0xab,0x35,0xab,0x97,0x0b,0xa2,0x17,0x7e,0x4e, +0x52,0xaa,0x12,0x2a,0x63,0x2b,0xf6,0x27,0x51,0x4f,0xfc,0x62, +0x01,0xee,0xc0,0x4f,0x97,0x34,0x1a,0xd3,0x67,0x37,0x1f,0xfe, +0xd5,0xf9,0x56,0x60,0xd0,0x3b,0x18,0x27,0xda,0xe3,0xc7,0x7b, +0x67,0x9b,0xf6,0x6c,0xb9,0xa3,0xdd,0x68,0x6d,0x4e,0xaf,0xda, +0x7e,0xb7,0xbd,0xd3,0x60,0x2d,0x8e,0xc1,0x71,0x5f,0xe1,0x6a, +0x9d,0x4a,0x6d,0x0a,0x7f,0x30,0x58,0xbc,0x15,0xf2,0xbb,0xe0, +0xb6,0xd0,0xca,0xbf,0x9f,0x8c,0x6b,0xc8,0x2d,0xe7,0x1b,0xd6, +0x83,0xe6,0x15,0xec,0x49,0x2d,0x3b,0xdb,0xd5,0x2a,0x84,0xfc, +0xe1,0x85,0xe4,0xc1,0xbf,0x7d,0xa0,0x5c,0xf6,0xaf,0x51,0x16, +0x75,0xc6,0x8f,0xcc,0x50,0xd8,0xb5,0x88,0xf5,0x85,0x9b,0x8a, +0x97,0x44,0x7d,0x87,0x34,0x1e,0xcd,0x39,0x6c,0x09,0xc6,0xf5, +0x6a,0xf8,0xa5,0x4a,0x97,0x79,0x0f,0x70,0xf9,0x30,0x35,0x1e, +0x34,0x95,0x15,0xfe,0x70,0x8e,0xe1,0x62,0x0e,0x0a,0xbb,0xa5, +0xc9,0x1c,0x9a,0xe1,0x56,0x06,0xe8,0xd9,0x4f,0x1d,0xae,0x1f, +0x39,0xc2,0x76,0x34,0x18,0x23,0xc0,0x93,0xcc,0xdd,0xa9,0xa0, +0x3e,0x7f,0xa1,0xfe,0x7c,0x53,0xeb,0x74,0x71,0xfb,0x54,0xf6, +0x4b,0x03,0x54,0x78,0x71,0x8b,0x3c,0x36,0xa2,0xc9,0x98,0x9c, +0x26,0x87,0x0b,0xa4,0x26,0xe2,0x12,0x91,0x58,0xa6,0xfa,0x9c, +0xff,0x25,0xe3,0x4d,0xf5,0xe3,0xda,0x03,0xed,0x74,0xa7,0xfd, +0x16,0xef,0x95,0xc1,0x02,0x10,0x1d,0x2c,0xe1,0x77,0x17,0xf9, +0xdf,0x55,0x91,0x93,0x81,0xa7,0xa7,0x36,0xa9,0xbe,0xe2,0x0d, +0xd3,0x94,0x70,0x1c,0x2f,0x55,0x32,0xba,0x01,0x16,0xdd,0x68, +0xf1,0x46,0x07,0xaf,0x71,0x4e,0xa7,0x1c,0x4f,0x39,0x9e,0x61, +0x48,0x0d,0xe6,0x24,0xc3,0xf4,0x4c,0x18,0x93,0x7f,0xa2,0x87, +0x6a,0x85,0xed,0x39,0xb2,0xf3,0xa8,0xac,0xc6,0x95,0x44,0x70, +0xf4,0x37,0x7b,0xc1,0x3a,0x12,0xba,0x04,0xc8,0x19,0xc2,0xdc, +0x74,0x0e,0x56,0x6b,0xe0,0x7c,0xde,0x53,0xaa,0xd7,0x16,0x1b, +0xf9,0x04,0xbc,0xf6,0x90,0x01,0xe2,0xc9,0x6b,0x9a,0x3c,0x9a, +0x93,0xa2,0x5a,0xf3,0xc1,0x95,0xea,0x17,0x2a,0xc5,0x88,0xc7, +0x88,0x43,0x99,0x76,0xa5,0x69,0xb6,0x87,0x25,0x6d,0x0f,0xbc, +0xe2,0x5c,0xe3,0x21,0x48,0x31,0xb2,0x1a,0x82,0xed,0xa0,0xe4, +0xab,0x03,0x8e,0x58,0xca,0x6d,0x3f,0xbe,0xe5,0xc4,0xe6,0xd3, +0x09,0x5a,0x14,0x1c,0x92,0xc1,0x36,0x17,0x66,0x16,0x9f,0xee, +0xa7,0xbb,0xc2,0x56,0x87,0x2f,0x89,0x60,0xc6,0x3f,0xe5,0x38, +0xf1,0xa9,0x08,0x6e,0x0d,0x19,0x6c,0x7c,0x58,0xf6,0xbc,0xf0, +0x8d,0x25,0xc3,0xae,0xdb,0xfd,0xf7,0x7a,0xe9,0x1c,0xb9,0x77, +0xe2,0x87,0xd3,0xbf,0x0a,0xb0,0xb3,0x03,0x77,0x73,0xe7,0x5a, +0xce,0xb5,0x75,0x4c,0x87,0xb5,0xc6,0xb8,0x96,0x37,0x3d,0x6f, +0x7e,0xde,0x52,0x05,0x09,0x97,0x52,0x9b,0xd4,0x14,0xd7,0x68, +0x9a,0x48,0x8f,0x5a,0x85,0x99,0x1d,0xb6,0x12,0xd0,0xc4,0x54, +0xfc,0x84,0xbb,0x8c,0x9f,0xc5,0xe3,0x98,0xac,0x15,0xf6,0xfb, +0x4c,0xf5,0x35,0x4d,0xe5,0x99,0x7f,0xcd,0xcd,0xed,0xb5,0x7d, +0x29,0x96,0x99,0x8e,0x79,0x9e,0xa5,0x8e,0x1d,0x51,0x51,0x03, +0xa9,0xa0,0x46,0xcd,0x73,0x95,0x10,0xc4,0x66,0xf2,0xbb,0xf1, +0x42,0x9c,0x62,0x06,0x7d,0xed,0xbc,0xf4,0xf6,0x26,0x31,0x62, +0x5c,0x86,0x57,0x8c,0x46,0x4f,0x12,0x72,0xcd,0xfd,0x89,0x47, +0x3f,0xa3,0x9f,0xc5,0x46,0xa5,0x6b,0xd2,0x35,0x05,0x49,0x25, +0x8c,0x1c,0xab,0x0c,0x6f,0x0a,0xab,0x60,0xc8,0x39,0xc9,0x23, +0xc5,0x2a,0xd6,0x45,0xc0,0xd1,0xf7,0x18,0x47,0xea,0x30,0xe0, +0xcb,0xe5,0x0f,0xf9,0x91,0x3d,0xfc,0x0b,0xe4,0x89,0xe4,0xd0, +0x31,0x04,0x96,0xa2,0x9c,0x34,0x73,0x3b,0xe9,0xc1,0x48,0x43, +0x5e,0x9c,0xb0,0x44,0x9e,0x6b,0x3c,0x1f,0x27,0xf1,0x92,0x2b, +0x5e,0x25,0x5d,0xa0,0x01,0x79,0x8c,0xc0,0x33,0xc6,0xa3,0x09, +0xb9,0xf2,0x38,0x03,0x81,0x75,0xbc,0x4c,0xd2,0x09,0x7c,0xce, +0x4e,0xfb,0x9c,0xe1,0x4b,0x43,0xf1,0x0b,0x22,0xa9,0xdf,0x11, +0x27,0x40,0x37,0x7a,0x72,0x71,0xd9,0xb1,0xb9,0xd1,0xb9,0x7a, +0xb1,0xf4,0xa4,0xff,0x51,0x9f,0x48,0x06,0x34,0xd7,0x48,0x0d, +0xe2,0x6a,0x6e,0xfb,0x69,0xd3,0xe3,0x76,0x2a,0xae,0x27,0xc2, +0xc3,0x1c,0x66,0x68,0xcb,0x13,0xbc,0x87,0xb8,0x6b,0x05,0x79, +0x83,0x09,0xaa,0xf1,0x7d,0x97,0x6e,0x80,0x30,0x5d,0x5a,0x75, +0x4f,0x54,0xe7,0xde,0x0b,0xa2,0x1d,0x19,0x6e,0x1a,0xf8,0x1e, +0x8a,0x14,0xce,0x3c,0x96,0xc9,0xc4,0x2a,0xe7,0x19,0xe6,0xc8, +0xb9,0xec,0x73,0x9e,0xb3,0xad,0x78,0x18,0x4e,0x92,0xed,0x78, +0xfb,0x21,0x0f,0xb7,0x71,0x32,0xd9,0x8c,0xb7,0xbf,0xe5,0x25, +0x15,0xc9,0x92,0x40,0xe5,0x33,0xac,0x94,0x4f,0xab,0x7c,0xce, +0xb6,0xa2,0x4a,0x13,0x49,0xf5,0xcc,0x30,0x8e,0x77,0xae,0x4d, +0xa3,0x47,0xaa,0x0e,0x76,0x86,0x14,0xc9,0xb3,0xaf,0x62,0x48, +0xed,0xed,0xbc,0x97,0x71,0xf7,0xcc,0xe3,0x69,0xe4,0xbe,0x80, +0x8d,0x8e,0x5a,0x02,0x24,0x83,0x39,0x49,0xb1,0x48,0x36,0x88, +0x35,0x68,0x66,0x8d,0xd3,0x1b,0xda,0x13,0xd2,0x22,0xe0,0xdc, +0x70,0x12,0xbf,0x3f,0x7a,0xe7,0x05,0x9d,0xf6,0x18,0x7a,0xe6, +0xc6,0xf1,0x1b,0x47,0xe4,0x4c,0x36,0x85,0x2c,0x2e,0x17,0x9b, +0x16,0x1a,0xe6,0xe9,0x75,0x67,0xd1,0xc0,0x0e,0xff,0xa6,0x03, +0xcd,0x02,0xac,0xee,0xc3,0x32,0x2e,0xad,0x2a,0xb9,0x3a,0xbe, +0x4a,0x2f,0x91,0x7a,0xe0,0x28,0x83,0x05,0xdb,0x36,0xb5,0x38, +0xd0,0xea,0xfa,0xf2,0xd6,0xa2,0x0e,0x41,0x34,0xeb,0x23,0x29, +0xd5,0x89,0xd5,0x71,0xf2,0x34,0x49,0xdf,0x99,0x16,0xf3,0xd5, +0x36,0xb6,0xba,0xd0,0xf2,0xfa,0xe2,0x96,0xbc,0x36,0xe1,0x25, +0x57,0x6c,0x5a,0xf0,0xdf,0xdb,0xb5,0xfb,0x37,0xcb,0xb7,0xd3, +0xea,0xe3,0x96,0x49,0x53,0xc9,0xd0,0xb0,0xbd,0x36,0xaf,0xa8, +0xc1,0x1b,0xe4,0xca,0x7b,0x25,0x2d,0x7e,0x92,0xa8,0x0e,0xde, +0x44,0x9c,0x82,0x4b,0xbe,0x05,0x8d,0x2e,0xd4,0xf8,0x57,0x7f, +0x16,0xaa,0x19,0x83,0xda,0x66,0x66,0x6c,0x53,0x60,0xc1,0x2a, +0xdc,0x67,0x04,0xfb,0x70,0x49,0x1f,0x2c,0x01,0xed,0x6e,0xd4, +0x7e,0xc9,0x8b,0x0e,0x8a,0x31,0x44,0x17,0xf7,0xe2,0xf6,0xe1, +0xe0,0x9e,0x01,0x68,0xd7,0xed,0x55,0x04,0xe3,0x3e,0x4e,0x1f, +0xbb,0x09,0x8e,0x87,0x73,0x0c,0x1e,0xf4,0xe0,0x39,0x59,0x3b, +0x63,0x0a,0x9e,0xe3,0x87,0xa7,0x81,0x1e,0xc1,0x31,0x5f,0xc1, +0x18,0x1e,0xce,0xe0,0x18,0xb2,0x14,0xc6,0xbc,0xe6,0xf0,0x0c, +0xae,0x25,0xaf,0x90,0xff,0x8a,0x83,0x45,0x53,0x81,0x7f,0x8d, +0x3c,0x0f,0x06,0xa5,0x04,0xc6,0x63,0x1a,0x8e,0xe7,0x60,0x37, +0xa4,0xc9,0xb9,0x44,0xd2,0xe4,0x5c,0x22,0x8a,0xbf,0x14,0xaa, +0xcc,0x7f,0x5f,0x01,0x6f,0x69,0x0e,0x7c,0xba,0x1f,0x3f,0x95, +0x3e,0x43,0xef,0x2b,0xb0,0x8a,0x17,0xa7,0xca,0xce,0x7c,0xdd, +0x7e,0x5c,0x27,0x2d,0xd0,0xfe,0xcf,0x84,0x21,0x7e,0xf8,0xa5, +0x74,0x80,0x00,0xf9,0xe1,0x4f,0x50,0xba,0x0b,0xbc,0x61,0x31, +0xdd,0x8d,0x63,0x96,0xcf,0xc3,0x29,0x1b,0x04,0xb1,0x1c,0x2e, +0x93,0xdf,0xb6,0xc2,0x38,0x14,0x5e,0xe1,0xa8,0xae,0x46,0xba, +0xf2,0x0f,0x9c,0x04,0x13,0x17,0x3c,0x62,0xbe,0xcb,0x5e,0xfc, +0x1f,0x16,0x83,0xae,0x40,0x22,0xfc,0x8a,0xa6,0x83,0x70,0x5e, +0x5a,0xf8,0x50,0xfc,0xb8,0x7b,0xb8,0xcc,0x08,0x14,0xdb,0x25, +0x65,0x3c,0x3f,0x08,0xa6,0xfc,0xa0,0x2e,0x31,0x03,0xfb,0x76, +0x1e,0x74,0xa6,0x9a,0x81,0x2f,0xb3,0x8f,0x45,0xb8,0x9e,0xb4, +0xa3,0xbd,0x19,0x0b,0xf1,0x53,0xdb,0xd1,0x97,0x6d,0xc7,0xae, +0x24,0xef,0x55,0xf5,0xc5,0x75,0xf8,0x60,0x88,0xb9,0xa9,0xd8, +0x8b,0x17,0xe3,0xcf,0xa8,0xc0,0xfb,0x59,0x19,0xdd,0xf8,0xfb, +0x5f,0x41,0x31,0x27,0xcf,0x1c,0x0f,0x53,0x3e,0x1e,0xa2,0x74, +0xf2,0x5f,0x71,0x3b,0x43,0x8a,0x96,0x85,0x64,0x47,0x70,0xea, +0x7d,0x55,0xb8,0xc7,0x8b,0x2f,0x7f,0x3a,0x76,0x45,0xfa,0x76, +0x95,0x12,0xdc,0xdd,0x8b,0xdf,0x31,0x27,0xe8,0x12,0xa7,0x09, +0xa1,0x15,0x4a,0xf8,0x90,0x9f,0x5b,0xef,0xf4,0xb7,0x0a,0xfc, +0xf6,0x01,0x53,0x80,0x13,0xbf,0x3f,0x55,0x09,0x8f,0xf1,0x93, +0x14,0x52,0x22,0x41,0x1b,0xce,0xe4,0x70,0x4a,0x97,0x7c,0x03, +0x98,0x72,0x1d,0xc6,0x3d,0x79,0xf1,0xd8,0xa1,0x99,0x6e,0xd9, +0xb3,0x60,0x37,0x8e,0xd5,0x16,0xc4,0x51,0x9a,0xd2,0x2c,0xde, +0xe1,0xa0,0xfd,0x61,0xbb,0x90,0x5c,0x43,0x5a,0x96,0x54,0x9a, +0x5c,0xc6,0xe2,0x7c,0x17,0xbf,0xae,0xc8,0xf3,0x85,0x0a,0xb8, +0x7c,0xd0,0x27,0x01,0x2f,0x5e,0x27,0x4d,0x69,0xd8,0x8d,0xb1, +0xaa,0x7f,0xe0,0x94,0xe2,0x0b,0xec,0x93,0xb3,0x7b,0x9f,0x91, +0xb3,0x7b,0xef,0x17,0x8b,0x40,0x4e,0xc3,0x51,0x2b,0x5e,0x23, +0x30,0x1a,0xd6,0xf6,0xe0,0xda,0xbf,0xf4,0xe6,0xe1,0x2a,0x43, +0x16,0x3b,0x47,0xa3,0x9e,0x81,0xb8,0xb7,0x97,0x17,0xd7,0x48, +0xbd,0xc4,0x06,0x3e,0x0a,0x05,0x7d,0x30,0x9e,0xce,0x6c,0x75, +0x27,0xe8,0xe9,0xb1,0xb0,0xcc,0x31,0xc7,0xce,0x6f,0x3a,0xb3, +0xe7,0x84,0x96,0x4a,0x40,0xbe,0x5f,0x81,0x77,0xa1,0xbd,0x2d, +0xad,0xb5,0xaf,0x70,0x2a,0x75,0xf2,0x47,0x6a,0xb6,0x74,0xe9, +0xba,0x2a,0x03,0xfa,0xfa,0x79,0xf7,0x9f,0x45,0xf0,0x49,0x91, +0x53,0xbe,0x53,0xae,0x7d,0x7d,0x03,0x75,0xed,0x75,0x6f,0x75, +0x6a,0x11,0x12,0xbf,0xbb,0xfc,0xd3,0x5f,0xd3,0x61,0xec,0x62, +0x0e,0xd5,0x53,0xd1,0xa9,0x13,0x3f,0x55,0xc9,0xd1,0xbd,0x73, +0x21,0xfa,0x41,0x06,0xd8,0x50,0xf3,0x7c,0x25,0xc9,0x7a,0x2f, +0xc1,0xcd,0x30,0x11,0xf6,0xf6,0x22,0xc7,0x65,0xd4,0x65,0xf6, +0x24,0x36,0x19,0xa4,0xd2,0x08,0xb3,0xc3,0x06,0x7e,0x26,0x02, +0x9e,0x36,0x00,0x75,0x9c,0x88,0x1b,0x0d,0x61,0x23,0xee,0xee, +0x67,0x9d,0x68,0x33,0x87,0x27,0x20,0x8f,0x44,0x54,0x1f,0x6a, +0x3e,0x54,0x61,0x1c,0x48,0xd3,0xdd,0x33,0x2c,0xe3,0x9d,0x98, +0xa3,0x55,0x83,0xef,0xc9,0x90,0xb4,0x9e,0x3f,0x17,0xfb,0x75, +0x6c,0xdc,0x74,0xd0,0x16,0x95,0x06,0x24,0x25,0xd8,0xb2,0x9f, +0xc5,0x73,0x47,0x3e,0xb3,0x29,0xa5,0x29,0xbe,0x9e,0x99,0x9b, +0x0f,0x8e,0xd2,0xc3,0xf1,0x6b,0x56,0x35,0x3b,0xd0,0xfa,0x86, +0x8a,0xf6,0x22,0x16,0x0c,0x8e,0x32,0xe0,0x7f,0xf4,0xeb,0x63, +0xe7,0x8e,0xa9,0xb0,0x3e,0x27,0xaa,0x72,0xde,0x38,0x65,0xce, +0x22,0xcc,0x42,0xa5,0x22,0x86,0xa8,0x1a,0xe1,0xd3,0xb7,0xc0, +0xa7,0xc2,0x12,0x21,0x9a,0x4b,0xc2,0x25,0x30,0x0a,0x05,0x18, +0xc2,0xc9,0x85,0x83,0x14,0xcb,0x41,0x09,0x47,0xbf,0xf1,0x82, +0x29,0xcc,0xd0,0xff,0x79,0x49,0xdc,0x6b,0x3d,0xab,0xbc,0xcb, +0x5a,0x60,0x7c,0x2e,0x7c,0x11,0x07,0x1b,0x84,0x5a,0x54,0xe1, +0xe3,0xae,0xc6,0x0e,0x44,0xf5,0xe8,0x5f,0xa2,0x27,0x4d,0x8e, +0x6b,0x46,0xee,0x13,0x16,0xe9,0xbf,0xe0,0x0e,0xcd,0x09,0x98, +0xe9,0xb7,0xa9,0xce,0xa9,0xd6,0xa1,0xd6,0xce,0x6d,0x87,0xd5, +0x5e,0x2d,0xad,0x2a,0x0b,0x3a,0x74,0xb5,0xf5,0x56,0xe5,0xc3, +0x02,0xaf,0x02,0xf7,0x02,0x57,0x41,0x31,0x55,0x31,0x8d,0x74, +0x62,0xd0,0xef,0xba,0x0b,0xd1,0x9b,0x15,0xde,0x8c,0x0f,0xb9, +0x12,0xd2,0x1b,0xdc,0xc5,0x58,0x44,0xb6,0x5e,0xba,0x41,0xea, +0xde,0xfa,0x02,0x7a,0x66,0x85,0xad,0x95,0x95,0xb3,0xa9,0x97, +0x72,0x9e,0x59,0x5d,0x7e,0x65,0x71,0x49,0x99,0xf2,0x11,0x9c, +0xe3,0xb1,0x54,0x7d,0x71,0xb3,0x23,0xfd,0x17,0x96,0xe7,0xc1, +0x2a,0x68,0x98,0xce,0x08,0x83,0x68,0x28,0xad,0x64,0xf7,0x32, +0x84,0x2d,0xb0,0xb1,0x13,0x73,0xf9,0xb8,0xfc,0x98,0xfc,0xe8, +0x42,0x93,0x14,0x1a,0xfc,0x95,0xdb,0x4e,0x53,0x9d,0x7a,0xc6, +0x53,0x4b,0x73,0xaa,0xd2,0x6b,0x84,0xbb,0xec,0x3d,0xed,0x36, +0x81,0xf5,0xdc,0x21,0x9c,0xa4,0xb3,0x11,0x67,0x7f,0x55,0x6e, +0x4e,0x61,0xf9,0xdb,0xa1,0xe7,0x31,0x30,0x63,0x64,0x0c,0xf0, +0xb3,0x8e,0xd5,0xf0,0x05,0x7e,0x54,0xd9,0x4e,0x71,0xca,0x1b, +0xd3,0x27,0x21,0x20,0x08,0xc3,0xd3,0xfb,0x49,0xf6,0xf7,0x99, +0xaf,0x53,0x7e,0x11,0x7e,0xe6,0x8e,0xe2,0xd4,0x43,0x38,0xde, +0x61,0xa6,0x6f,0x91,0x6f,0xc1,0x81,0xdc,0x91,0xaf,0xbf,0x9b, +0x08,0x4e,0x1c,0x60,0x28,0x77,0xde,0x9f,0x9a,0xf3,0x25,0x82, +0x6a,0x03,0xb2,0x3c,0xd1,0x74,0xa9,0x88,0x00,0xe3,0x2a,0x4f, +0x81,0x72,0x3f,0x5f,0x7a,0x11,0xf5,0x5d,0x74,0x96,0x7f,0x86, +0x7f,0x5a,0x40,0x4b,0x05,0x35,0xba,0x69,0x78,0x55,0xa3,0xcb, +0xda,0x8b,0x66,0x1f,0xcc,0x0e,0xcc,0x0a,0xc4,0x49,0x91,0x38, +0xe7,0x04,0x2e,0x39,0x5d,0xdd,0x50,0xde,0x5a,0xcc,0x3c,0xe3, +0xac,0x9e,0xe1,0xb9,0x86,0xa0,0xcd,0x79,0x5b,0x38,0x9b,0xdb, +0x59,0x0a,0x76,0xb6,0xe7,0x6c,0x67,0x44,0x1b,0xc2,0xc7,0x17, +0x60,0xec,0x45,0x18,0x75,0x49,0x19,0x3f,0xc7,0x1b,0x06,0x70, +0x03,0x67,0x48,0x8b,0x0c,0xfe,0x33,0xb9,0x57,0xda,0xc8,0x4f, +0xba,0x0a,0x89,0x04,0x42,0x1e,0x83,0xd0,0xd7,0xf8,0xaf,0x10, +0x8d,0xce,0x83,0xe0,0x1c,0xcd,0x35,0xce,0x02,0x65,0x3d,0x38, +0x3c,0x22,0x00,0x67,0x35,0x88,0xd3,0x86,0xd4,0xef,0x09,0xe2, +0xf4,0x6e,0x69,0x3b,0x6c,0xe7,0xe0,0xd3,0x68,0x10,0x12,0x60, +0x7c,0x9a,0x4f,0x07,0x45,0x77,0x77,0x3c,0x7b,0x14,0xdb,0x4f, +0xc7,0x1b,0x51,0x98,0x7a,0x51,0x4e,0xb7,0x33,0x8a,0xc1,0xe9, +0x2d,0xd2,0x0a,0x23,0x71,0x3c,0xbf,0x7f,0x17,0x4e,0xd2,0x46, +0x73,0x1d,0x41,0x31,0x13,0x92,0x49,0x6d,0x55,0x55,0x77,0x7e, +0xb3,0x49,0x01,0x0d,0xb4,0x73,0x34,0x76,0x64,0xc1,0xb3,0xe7, +0x0c,0xf1,0xaf,0x72,0x6d,0xf4,0x28,0xb0,0xf0,0xa4,0xe5,0x2c, +0x32,0xe7,0xb8,0x08,0xf0,0x25,0x3e,0x25,0xbd,0xce,0x43,0x56, +0x1d,0x96,0x35,0x0d,0xd4,0xa8,0x5d,0xaf,0x5e,0xaf,0x4a,0x30, +0xc5,0x36,0x62,0x2b,0xcf,0xef,0x01,0x2b,0x6d,0xb4,0xe1,0xb7, +0xe4,0x05,0x7d,0xa7,0x02,0x95,0x5c,0x4b,0x4a,0x66,0x9d,0xea, +0x1f,0xbc,0x4e,0x86,0x12,0x0b,0x98,0xbd,0x60,0x41,0x06,0xf7, +0xf5,0x6d,0xab,0xdf,0xd8,0x51,0x4e,0xad,0x9e,0x1b,0xdc,0xd3, +0xb9,0x2e,0x4f,0xeb,0x4e,0x23,0xb7,0xee,0x37,0x3d,0xcb,0x7f, +0x24,0x7f,0x25,0xdb,0x63,0xbd,0x51,0x43,0x93,0xf5,0xc4,0x06, +0x85,0x09,0xb1,0x69,0x34,0x6c,0x32,0xaa,0x70,0x63,0xd8,0xc0, +0xa9,0xc5,0xbe,0xd5,0x4a,0x78,0x06,0x2c,0xda,0x7e,0x26,0x76, +0x8b,0x9f,0xf1,0x3a,0xb8,0x8e,0x48,0xfb,0xdf,0x89,0xfb,0x39, +0xe9,0x0e,0xd6,0x13,0xab,0xd6,0x7d,0x3d,0x3a,0x35,0x2e,0x36, +0x74,0xc0,0x61,0xc0,0xb4,0xc3,0x4c,0x00,0x35,0xd8,0x45,0xc4, +0xfd,0xa8,0x24,0xed,0xe7,0xe0,0xd9,0x42,0x06,0xbe,0x5e,0xe3, +0x58,0x78,0xad,0xcb,0x36,0x89,0x06,0x0a,0xcf,0x5e,0x3c,0xc2, +0x61,0xfb,0x6d,0x72,0xe8,0xb1,0xe7,0x2b,0xf7,0x1b,0x26,0x81, +0xb4,0x4c,0xb3,0x74,0x49,0xea,0x0e,0x41,0x74,0x3d,0x47,0xaa, +0x6e,0x55,0xfd,0x9e,0x72,0x8f,0x41,0xe2,0xd0,0x5d,0xae,0x8b, +0x5d,0x18,0xa2,0xf8,0x1b,0x6c,0x88,0x2f,0x8e,0x75,0xc2,0x71, +0x3a,0x0b,0xda,0x9c,0xe9,0x75,0x18,0xd3,0x00,0x5f,0xe4,0xbc, +0x65,0x3d,0x63,0xa2,0x62,0x2b,0x89,0xe6,0x32,0x56,0xfc,0xb9, +0x13,0xb6,0x68,0xe5,0x76,0x51,0x9c,0xdb,0xb5,0x78,0xc0,0xe6, +0xb6,0x00,0x19,0x9d,0xd8,0xf5,0x5a,0x7f,0x29,0x16,0x9b,0xc0, +0x59,0xce,0x69,0xef,0x06,0x1d,0x5c,0x6a,0x94,0x63,0x4c,0x61, +0xeb,0xd5,0xe7,0x77,0x33,0x5f,0xb1,0xf6,0x5b,0xc9,0xb9,0xcd, +0xc7,0x51,0xfa,0xb8,0x53,0x3d,0xc7,0x88,0xf1,0xff,0x92,0xa4, +0xa2,0xa4,0x72,0xaf,0x0a,0xb7,0x52,0x97,0xda,0x2a,0xea,0x53, +0xe2,0x5e,0xec,0x51,0xf0,0xa6,0x6b,0xa0,0x37,0xe1,0x1e,0xeb, +0xb1,0x09,0xbb,0x07,0x0c,0xfe,0x34,0x3e,0xe0,0xed,0xe1,0xeb, +0xec,0x5b,0xc9,0xac,0xbd,0xa4,0xba,0xbc,0xa8,0xac,0x38,0xac, +0x2c,0xbc,0x32,0x2c,0xbb,0x9b,0xe2,0x8e,0x1b,0x28,0x5c,0x71, +0xfd,0x53,0xc0,0x7f,0xc0,0x88,0xd8,0xd4,0x1a,0xd7,0x9a,0x94, +0xb8,0x5b,0xd2,0x6e,0xb7,0x16,0xe7,0x66,0x07,0xe1,0x22,0xda, +0x13,0xab,0x06,0xcd,0x56,0xdd,0x4a,0x37,0x4b,0xda,0xeb,0x3c, +0x60,0xdd,0x66,0x2d,0xcb,0x59,0xe7,0x92,0xd3,0xe0,0xab,0x27, +0x4d,0x60,0x34,0x4d,0x1e,0x9d,0x1a,0xcb,0xb5,0xca,0x6a,0x5c, +0x30,0x8a,0x8f,0xbb,0x74,0x31,0xee,0xa4,0x0a,0xb0,0xbe,0x5a, +0xdc,0x8a,0x47,0x60,0xe1,0xa1,0x84,0x63,0xa7,0x22,0xc3,0x95, +0xa5,0x3a,0x0c,0x20,0x77,0x60,0x54,0x07,0x4c,0x2f,0xfc,0xc7, +0x30,0x93,0xc5,0xfa,0x8f,0xac,0x19,0x62,0x5f,0x20,0x88,0xfa, +0x60,0x40,0xb4,0xf5,0x77,0xd9,0xae,0x70,0x29,0x34,0xa1,0xcf, +0xab,0x9e,0x75,0x5e,0x19,0x64,0x61,0xeb,0xad,0xe2,0x18,0x79, +0xae,0xbe,0x06,0xdf,0xa2,0x05,0xbf,0xff,0x9c,0xfe,0x19,0x53, +0x15,0x1b,0x57,0x33,0x4f,0x43,0xbf,0x4c,0x2d,0xda,0x5a,0x50, +0x93,0x5f,0x51,0x12,0x86,0x33,0xdc,0x97,0xef,0x5a,0xd0,0x66, +0x45,0x61,0x3c,0xac,0xc9,0x05,0x1d,0xf9,0x63,0x83,0xb2,0x42, +0xaf,0x87,0x1f,0x4e,0xc6,0x58,0x12,0x70,0xcb,0x67,0xc8,0xb3, +0xdf,0xf2,0x00,0x2d,0xd5,0x2b,0xd0,0x96,0x3f,0x36,0xdc,0x1c, +0x99,0x8a,0xd1,0xcb,0xdc,0x66,0x4a,0xaf,0xa4,0xc9,0xa7,0x94, +0x26,0x96,0xc5,0x96,0xea,0xc7,0x53,0xbf,0x65,0x26,0xeb,0xb6, +0xed,0xab,0x65,0x4e,0xbc,0xa2,0xac,0xae,0xa0,0x41,0x60,0x9e, +0x7e,0x37,0xd6,0x1a,0x40,0x01,0xe7,0x37,0x67,0xcb,0x76,0x74, +0x99,0x9f,0xaf,0x4f,0xc1,0xed,0xdd,0xeb,0x1f,0x32,0x61,0x32, +0x7b,0x95,0x19,0x38,0xf1,0xe5,0x26,0xb0,0x43,0x5e,0x16,0x96, +0xb5,0xfa,0x77,0xeb,0xdd,0x80,0xbf,0x59,0x69,0x33,0xc5,0x50, +0x52,0xd4,0x90,0xd9,0x9c,0xd0,0x29,0xc0,0x57,0xf8,0x59,0x1f, +0x7c,0x06,0x8b,0xda,0xf0,0x1d,0x77,0x31,0xf3,0x7c,0x56,0xd6, +0x74,0x50,0xba,0x04,0x63,0x63,0xfe,0x2e,0xf0,0x6b,0xa3,0x4b, +0xfd,0x50,0x88,0xc4,0x45,0x67,0x04,0x54,0x0e,0x57,0x37,0x51, +0x57,0xc1,0x3d,0xff,0x92,0x0f,0xe7,0xd3,0x36,0x16,0x1e,0xcf, +0x67,0xfc,0xdf,0xe7,0xff,0x55,0xe0,0xd7,0x4a,0x97,0xfb,0xe3, +0xb8,0x48,0x5c,0xc8,0xce,0x5f,0x12,0xa1,0x66,0xbc,0x5b,0xa5, +0xd5,0xbe,0xac,0x23,0xb3,0x2b,0xfe,0x9a,0xb2,0x42,0x4d,0x1a, +0x22,0xe2,0xf2,0xe1,0xed,0xff,0x17,0x6b,0xef,0x19,0x55,0x45, +0xb6,0xb5,0x0b,0x9b,0x76,0x55,0xb5,0x01,0x53,0x2f,0x4f,0x81, +0x36,0x18,0x31,0x60,0x4e,0x28,0x2a,0xa2,0x98,0xc8,0x39,0x67, +0x50,0x90,0x28,0x20,0x88,0x0a,0x0a,0x66,0xdb,0x04,0xa2,0x92, +0x73,0x46,0x72,0xce,0x39,0x8b,0x11,0x15,0x43,0x9b,0xba,0xd5, +0x6e,0xdb,0xb6,0xb5,0x83,0x9e,0x59,0xbb,0x67,0x71,0xde,0x6f, +0x15,0x7d,0xde,0xf0,0xdd,0x3f,0x77,0xdc,0x3b,0xee,0x60,0x8c, +0xbd,0x37,0x45,0x51,0x7b,0xd5,0x0a,0xcf,0x7c,0x9e,0x5a,0x33, +0x88,0x4b,0x29,0x8b,0x85,0x6a,0x22,0x76,0xdc,0x13,0x3a,0x18, +0xb1,0x03,0xc7,0x12,0xa1,0x63,0x9b,0xd8,0xc1,0xd8,0x8d,0x11, +0x3a,0xb6,0xd2,0x77,0x54,0x45,0x87,0xff,0x83,0x4d,0x7c,0x8a, +0x55,0xd4,0x0a,0x7d,0xd5,0x03,0x5b,0x44,0xd5,0xd7,0x06,0xab, +0xc4,0x69,0xb8,0xa5,0x07,0xbe,0x62,0xe5,0xb5,0xe2,0x59,0xd2, +0x2d,0xae,0x8e,0x65,0x7f,0x86,0x47,0x5d,0xf8,0xe8,0x77,0xb8, +0xd7,0x85,0xf7,0x1e,0x1a,0x6c,0xc1,0x36,0x13,0x68,0x9b,0x87, +0x3d,0x26,0xd0,0xb3,0x84,0x0d,0x17,0xe7,0x1a,0x0b,0xd3,0xd8, +0xdd,0xcb,0x70,0xb2,0x09,0x86,0x9a,0x66,0x52,0xab,0x51,0xf6, +0xf8,0xcf,0xbe,0x4c,0xf8,0x9a,0xbb,0xcc,0x64,0xe3,0xd7,0x30, +0xc1,0x00,0x4a,0x37,0xa5,0xf7,0xf1,0x78,0xa8,0x13,0xbf,0xe9, +0x72,0xfe,0x89,0x7e,0xdf,0x56,0xf9,0x20,0x31,0xd4,0xc0,0xd4, +0x67,0x46,0x1a,0x18,0x65,0x0e,0x51,0x06,0x7b,0x37,0xa0,0x93, +0x95,0xe0,0xd7,0x82,0x1e,0x37,0x8b,0x1f,0x43,0xaa,0x66,0xef, +0x63,0x48,0x6b,0xc7,0x34,0x06,0xa6,0x88,0x33,0x49,0x4b,0x7f, +0xc5,0x9d,0xb4,0x2e,0xae,0x16,0x9f,0x0e,0x2d,0xed,0x15,0x00, +0xec,0xd9,0x00,0x53,0x0f,0x03,0xe3,0x5d,0xdc,0x1b,0xfd,0x5a, +0x0b,0x23,0x25,0xe3,0x7d,0x21,0xfa,0xca,0xeb,0x99,0x14,0x13, +0xd9,0x6d,0xe6,0x63,0x53,0xfd,0xb3,0x01,0xcf,0x8e,0x95,0x37, +0x55,0xc4,0x15,0x30,0x9d,0x1c,0x75,0x0a,0x32,0x0f,0x74,0xe2, +0xb0,0xce,0x52,0x38,0xdf,0x8a,0x0b,0x98,0x8c,0xca,0xd4,0xfa, +0xd8,0x32,0x0e,0xef,0x9f,0x26,0xa9,0x3e,0x69,0x0e,0xb1,0x1e, +0xad,0x29,0x7c,0x78,0x71,0x50,0x4b,0x48,0x1e,0xe7,0x2b,0xde, +0x20,0x1d,0x50,0x68,0xd6,0x05,0x2d,0xe2,0x4c,0x6c,0x61,0xe1, +0x47,0x38,0x4f,0x50,0x05,0x0b,0x41,0x85,0x95,0x4a,0x9e,0xd8, +0x92,0x0c,0x8f,0x74,0xf7,0x34,0xd7,0xd6,0x74,0xfe,0x70,0xe1, +0xa1,0x7c,0xfa,0x1f,0x52,0x45,0x84,0x4a,0x26,0x2e,0x23,0x26, +0xf3,0x6a,0xa6,0x94,0x34,0x45,0xd3,0x6a,0xdb,0x36,0x93,0x6a, +0x37,0xbe,0xac,0xa0,0xa8,0x34,0xb7,0x9c,0x83,0xbf,0x54,0xc9, +0x1e,0x53,0x53,0x73,0x43,0xcf,0x02,0x27,0xbe,0x28,0x25,0x3f, +0x33,0x37,0x3b,0x7f,0x6f,0xb9,0x4f,0xdd,0x3e,0x3d,0x7f,0xad, +0x90,0xb5,0x47,0x92,0x2c,0xf9,0x3f,0x53,0x5e,0xe7,0xdc,0x2f, +0x1d,0x74,0x7f,0xe3,0xf7,0xe1,0x40,0x4a,0x2b,0xbf,0x2e,0x49, +0x2b,0x6d,0x57,0x5e,0x4b,0x51,0x45,0x65,0x5e,0x03,0xf7,0x63, +0x8b,0x38,0x86,0x89,0x4d,0x8e,0x49,0xb9,0x96,0xe2,0x10,0xc7, +0x27,0xa5,0x27,0x66,0xc6,0x65,0x52,0x2b,0x93,0xe9,0x91,0x26, +0xb5,0x21,0x8d,0x3f,0x54,0x74,0x28,0xff,0x20,0x6d,0x83,0x51, +0x0b,0xde,0x63,0xa4,0x16,0x5c,0xc9,0xb4,0x88,0xe3,0x03,0xb7, +0xec,0xde,0x6e,0x6e,0xc4,0x51,0xd4,0x26,0x6e,0x33,0x4d,0x71, +0xd4,0xac,0x59,0xd5,0x0e,0x7c,0x4e,0x4e,0x66,0x6e,0x7a,0x2e, +0x27,0xae,0xef,0x16,0x2e,0xb3,0xd7,0x5b,0xb3,0xbb,0xb3,0x6e, +0x73,0xc2,0x04,0x34,0x27,0xd6,0x39,0x4e,0x05,0x7b,0xcb,0x38, +0x38,0xc3,0xec,0xdb,0xb3,0xc7,0xdb,0xde,0x9f,0xc3,0x7b,0xe2, +0x26,0x22,0x7c,0x6b,0x2c,0x7e,0xcb,0xca,0x27,0x83,0x36,0x69, +0xc1,0x6f,0xdf,0x98,0xac,0xc4,0x60,0x2b,0xb0,0x63,0xdd,0x76, +0xae,0xb7,0xc2,0xd1,0xf6,0x59,0xd6,0x3c,0x28,0xb4,0xbd,0xee, +0x48,0x7a,0x4b,0xe1,0xe8,0x60,0x17,0x1c,0xa4,0xcb,0x63,0xf1, +0x1b,0x4b,0xf8,0x87,0xb9,0x94,0x33,0x62,0x5c,0xd3,0x9a,0x56, +0x17,0xa9,0x80,0xd9,0x51,0xf9,0xf7,0xc4,0x15,0x2d,0xf4,0x70, +0xce,0x02,0xe4,0x4a,0xad,0xf8,0xeb,0x45,0x85,0xb5,0xd7,0xdb, +0x38,0xb1,0xb6,0x5b,0xbe,0x92,0xcd,0xbd,0x9b,0xf9,0x24,0xe9, +0x15,0xd7,0x10,0x48,0xc4,0x45,0x42,0xab,0xb0,0x48,0xf2,0xc7, +0xd9,0x2a,0x85,0x2e,0x29,0x80,0x31,0xd3,0x85,0x0a,0x92,0x9c, +0x32,0xa7,0x72,0x0a,0x2f,0x59,0x49,0x09,0x4f,0x8d,0xa5,0x9c, +0xa5,0xe7,0xa6,0xd1,0x43,0x5f,0xa3,0x39,0xf3,0x0b,0xee,0x25, +0x96,0x4d,0x86,0x0d,0xc6,0x45,0xde,0xce,0x7c,0xd7,0xde,0x3e, +0x9b,0x26,0x5b,0xee,0xd7,0x67,0xa4,0x7a,0x6d,0xc5,0xcc,0x2c, +0xf5,0xd6,0x6c,0x3e,0xe0,0x87,0xdd,0x7f,0x38,0xbd,0x94,0x32, +0x97,0xb6,0x10,0xb7,0x88,0x6b,0xd4,0xae,0x9c,0x36,0xc4,0x28, +0x76,0x57,0xae,0xff,0x1d,0x65,0xd8,0xc9,0xd4,0x24,0x49,0xee, +0x72,0x33,0x59,0x8b,0x44,0x19,0xae,0x65,0xc5,0x75,0xc7,0x48, +0xed,0xf3,0x1c,0x18,0x15,0xf7,0x8b,0x29,0x15,0x38,0xcb,0x7c, +0xe7,0xb8,0x69,0x73,0x0a,0xed,0xc2,0x6c,0x32,0xec,0x83,0x9a, +0x02,0xaa,0xd7,0xcf,0xb4,0xf0,0x92,0xd3,0xaa,0xd1,0x49,0x0e, +0xd6,0xc2,0xc6,0x36,0xdc,0x08,0xbc,0x11,0x0a,0xff,0xe5,0xb4, +0x7a,0xd3,0x18,0xef,0xb1,0xab,0x4f,0xc9,0xe4,0x5d,0xbb,0x49, +0x5d,0x46,0x7a,0x9d,0x14,0x20,0x44,0x2f,0x3d,0x05,0xd7,0xb3, +0xce,0xe1,0x57,0xaa,0x55,0x3e,0xb2,0xbf,0xa7,0x7d,0x2e,0x7e, +0x5e,0xe5,0xd5,0xc0,0x6f,0x72,0x5d,0xeb,0xbf,0x94,0x4a,0xfa, +0xe5,0x06,0x78,0x87,0xdd,0x90,0x1d,0xfc,0x9d,0x32,0x9c,0xa6, +0x9c,0xbb,0x53,0x5c,0xf9,0xd1,0x60,0x81,0x38,0xcb,0x54,0x18, +0xc9,0x9a,0xaf,0xc6,0x51,0xbb,0x70,0x9f,0x96,0x84,0x3f,0x67, +0xdf,0xfe,0xda,0x5b,0x21,0x39,0x20,0x61,0x4f,0x1f,0xf4,0x48, +0xf5,0xad,0x59,0x90,0x19,0xc2,0x85,0x15,0x59,0x9d,0x3c,0x06, +0x3d,0xc2,0x71,0xb7,0x4d,0x7f,0xa0,0x3d,0xfd,0x97,0xd0,0x46, +0xb9,0x6e,0xea,0xec,0xbe,0xcf,0x90,0xd8,0x85,0x89,0xc0,0x18, +0x20,0x83,0xa9,0x7f,0xbf,0x9d,0x33,0x81,0x73,0xb3,0x59,0xa8, +0x12,0x6b,0xc9,0x8a,0x9d,0xb1,0xd9,0xb6,0x2a,0x60,0xfe,0x16, +0xb6,0x80,0x22,0x8c,0x06,0x75,0xae,0x11,0x5f,0xc1,0xd7,0xfa, +0xb4,0x4f,0x5f,0x98,0xc8,0xbf,0x66,0x97,0x20,0xc1,0x35,0xf8, +0x15,0x1a,0xaf,0xe4,0xbc,0x4b,0xc3,0x9a,0x6f,0x29,0x75,0xea, +0x9a,0xb1,0xa8,0x64,0x61,0x89,0x13,0x37,0x29,0x97,0x59,0xfe, +0xf3,0x66,0x4b,0xc7,0xd5,0x3f,0x14,0xa3,0x19,0x9c,0x91,0xf4, +0x5a,0x07,0xce,0x4c,0x87,0x5f,0x99,0xab,0xbd,0x32,0x05,0x98, +0x24,0x6f,0x26,0x68,0xc2,0x8a,0x23,0x0f,0xe1,0xe2,0x1d,0x38, +0x56,0xb9,0xd5,0x42,0xf6,0x04,0xe6,0x25,0xc3,0x4a,0xe1,0x1f, +0x4a,0xf2,0x20,0x3a,0x9e,0x43,0x41,0x38,0x83,0x3c,0x97,0xaf, +0x5d,0xcf,0xe2,0x28,0xd4,0x21,0xa5,0x19,0x65,0xd7,0xf3,0x8a, +0x6c,0x72,0xf8,0x00,0xef,0x3d,0xde,0x6e,0xfb,0x39,0x71,0x6e, +0x27,0x29,0x0f,0x2a,0xf3,0xc9,0xdb,0xd7,0x90,0xc5,0xfb,0xe5, +0xbb,0x15,0xb8,0xa7,0x73,0xe0,0x80,0x8f,0x48,0x37,0xcc,0x8d, +0x62,0xca,0xb6,0xc2,0x58,0x67,0xd8,0xbc,0x3b,0xa5,0x91,0xc7, +0x35,0xc5,0x8b,0xaf,0x5b,0x37,0x72,0x50,0xd7,0x80,0x6f,0x61, +0x8c,0x31,0x8e,0xc1,0x41,0x3b,0xb8,0xce,0x58,0xd9,0x2c,0xf1, +0xc5,0x15,0x1e,0x49,0xb6,0x3c,0xac,0x2f,0x87,0x89,0xd5,0xa5, +0x0f,0xb9,0x28,0x9c,0xc4,0xd8,0xc4,0x1c,0xf6,0x3b,0xe8,0x17, +0xbc,0x4f,0x11,0xc3,0x6d,0xc0,0x92,0xf1,0xf1,0xf0,0xf2,0xdc, +0xeb,0xfd,0xf8,0xe8,0x60,0xd8,0x83,0xd0,0xb5,0x7e,0x38,0xfa, +0x30,0xce,0x39,0x11,0x4f,0x2d,0xeb,0xb6,0x18,0x98,0x9e,0xf7, +0x6b,0xfd,0xef,0x01,0x9f,0x7c,0x7f,0xf3,0xcc,0x6b,0xe6,0x97, +0xe6,0xaf,0xc8,0x52,0x4f,0x6b,0x29,0x29,0xab,0xce,0x6a,0xa6, +0x52,0xb5,0x49,0xd4,0x63,0xe2,0x52,0xe2,0x53,0x63,0x53,0x29, +0x35,0xc0,0x91,0x64,0x9f,0xc3,0x6e,0x77,0x0b,0xbf,0x6d,0x89, +0x3a,0x71,0x46,0x31,0xa9,0xa9,0xe9,0x59,0xe9,0x39,0xd2,0x08, +0xc8,0x79,0x6a,0xe5,0xd2,0xb6,0x75,0x0f,0x40,0x7a,0x1b,0xa6, +0xdf,0x35,0xde,0x81,0x69,0x77,0x8d,0x76,0x0c,0x3f,0xec,0xdb, +0x46,0x85,0xff,0x4c,0x62,0xd3,0x68,0x5a,0x6d,0x59,0xe0,0xe6, +0x42,0xed,0xeb,0x4d,0xeb,0x52,0x37,0x4e,0x1c,0x09,0xa3,0x89, +0xbb,0xa6,0x83,0x91,0xbe,0x71,0x93,0x1b,0x7f,0xe3,0x46,0x5d, +0x4f,0xe5,0xf7,0x9c,0xb0,0x14,0x3d,0x49,0x73,0x4a,0x52,0xb3, +0xca,0x77,0xac,0x7e,0xb2,0x8c,0xde,0x5f,0x3a,0xeb,0x7e,0x22, +0xaa,0x54,0x05,0xe6,0xea,0xe3,0x02,0x56,0x33,0x27,0xec,0xae, +0xb2,0x50,0x58,0x45,0x1c,0x06,0x6d,0x7b,0x75,0xfa,0xec,0xbc, +0xf8,0x7e,0xfd,0x06,0xe3,0x3a,0x4d,0x4e,0x0c,0xc7,0xd1,0xc4, +0xa9,0xc4,0xa2,0xc8,0x26,0x77,0xaf,0x0b,0x5f,0xbb,0xbf,0xc7, +0xad,0xd2,0x83,0x13,0x2c,0xca,0x89,0x73,0x89,0x59,0xb1,0x75, +0x3e,0x3d,0x56,0x1f,0xd8,0xe7,0x5a,0xee,0xce,0x89,0x21,0xe8, +0x43,0x82,0x4f,0x5d,0xca,0x50,0x81,0x50,0x13,0x3c,0xc1,0x5a, +0x26,0x1f,0xec,0x52,0x7e,0xcb,0x34,0xc6,0xa6,0x54,0xa8,0x7c, +0x19,0x7e,0xa8,0x44,0x58,0x78,0x32,0xed,0x7f,0x3d,0xe3,0x23, +0xd3,0x10,0xf7,0x3f,0xce,0x10,0x17,0xc2,0x5e,0x92,0xe7,0x96, +0xea,0x99,0xea,0x54,0x9f,0xcd,0x1f,0xa8,0x0b,0x2e,0xf2,0x2b, +0xe5,0x84,0xc9,0xfb,0x48,0xdd,0xce,0x22,0xcd,0xcc,0xcd,0x2d, +0xd9,0xfc,0xfe,0x07,0x6e,0x2f,0x9d,0x6f,0x70,0x43,0x31,0x18, +0x4d,0x6a,0x1e,0x64,0xdc,0x4f,0x79,0x6b,0x91,0xc0,0x1f,0xd6, +0xd8,0xb7,0xd9,0x45,0x87,0x13,0xfc,0xfc,0x49,0xd5,0xf0,0x31, +0xdb,0x58,0xfe,0xf0,0x86,0x7d,0x9b,0x5d,0x75,0x68,0x0f,0x16, +0x0b,0x67,0x86,0x0b,0x3f,0xc7,0x7a,0xd9,0x9d,0x94,0x0a,0x3f, +0xf7,0xbe,0xb8,0x0d,0xb2,0x2e,0xe0,0x6c,0x72,0x79,0x7f,0x23, +0x2f,0xfd,0xbd,0xc6,0x07,0x33,0x42,0x32,0x0f,0xa4,0x97,0xf6, +0x15,0x0f,0xe4,0xdc,0xb6,0xce,0xe0,0x83,0xf4,0x7c,0xf4,0xbc, +0xcd,0x8f,0xc4,0x87,0xc5,0x1f,0x89,0xf3,0x72,0xe2,0x9b,0x1c, +0x9a,0xad,0x6a,0xcd,0xfc,0x5d,0x02,0xdc,0x02,0xbd,0xd6,0x9f, +0xe5,0xa3,0xcc,0x5a,0x2e,0xb5,0x5e,0x6a,0x89,0x52,0x14,0x97, +0x75,0x0a,0x6b,0xd8,0xeb,0x91,0xd7,0x23,0xf3,0xa3,0x12,0xcc, +0xf9,0xfa,0x94,0x43,0xf7,0xf6,0xdf,0x0b,0xec,0x52,0x84,0xff, +0x80,0x87,0xc4,0x40,0x1d,0x2f,0x99,0x0b,0x0f,0xda,0x31,0x89, +0x2a,0x2a,0xbc,0x4d,0x04,0x2d,0xb0,0x15,0xb5,0x98,0x1e,0x54, +0x25,0xef,0xa1,0x67,0x31,0x8b,0x82,0x78,0x9f,0x08,0x8b,0x85, +0x45,0xf8,0x06,0x67,0xb0,0x89,0xc6,0x32,0x60,0x99,0xba,0xe4, +0x94,0x5a,0x15,0x81,0x88,0x29,0xa2,0x2b,0x8b,0x93,0xe1,0x2d, +0x49,0xdf,0x92,0xb4,0xf6,0x9a,0x54,0xfe,0x39,0xe2,0x71,0xc8, +0xf7,0x41,0xf7,0x39,0xbc,0x44,0x49,0x65,0xd1,0xf3,0xe4,0x4f, +0xd7,0x3e,0x58,0x5f,0xe1,0x8f,0xaf,0x3a,0xb4,0xda,0x4b,0x83, +0x13,0x22,0x21,0x9a,0x60,0x7a,0x6b,0x2f,0xd8,0x53,0xc5,0x8b, +0xf6,0xb8,0x82,0x2e,0x58,0x55,0xa9,0x06,0x9d,0x9d,0xfc,0x09, +0x31,0x9d,0x85,0xa3,0x97,0x63,0xcc,0x82,0x5c,0x63,0x1e,0x12, +0xbf,0xc0,0xd4,0x8f,0x95,0x30,0x96,0x72,0x8e,0x2a,0x1c,0x0b, +0xdf,0x2c,0x84,0xf4,0x99,0xb9,0x94,0x73,0xc4,0x7d,0xc2,0x49, +0x3f,0x9a,0x7c,0xe1,0xe0,0x10,0x7e,0x22,0xed,0x78,0xf4,0x4f, +0xbd,0x39,0xe8,0x6f,0x0e,0xfe,0xc8,0x88,0x33,0xcd,0xe4,0x43, +0x1d,0xd4,0xd6,0x31,0x2c,0xd6,0x8b,0x77,0x49,0x87,0x50,0x6a, +0x76,0x13,0xfa,0x87,0x56,0x60,0xbf,0x94,0x47,0x87,0x7e,0xef, +0x2c,0xb1,0x14,0xa4,0x72,0x6c,0x7f,0xc8,0xfd,0x08,0xce,0xee, +0x07,0xfb,0xa1,0x77,0x68,0xdf,0x0f,0xb3,0x59,0x39,0x11,0x2f, +0x93,0xa8,0xd6,0x4b,0x9d,0xdd,0x4a,0x62,0x3c,0x13,0x57,0x11, +0x43,0x7f,0x38,0x21,0xb8,0x53,0x74,0x67,0xae,0x55,0x5f,0xad, +0x8c,0x2e,0xd3,0xbd,0xcc,0x1f,0x52,0xdd,0x8b,0xff,0x70,0xc4, +0x69,0x9c,0x50,0xcc,0x9c,0xdb,0x73,0x76,0xcf,0x19,0x0f,0x6e, +0x48,0xcd,0x44,0x3e,0x8f,0x39,0xb5,0xe7,0x94,0xd7,0x89,0x20, +0xce,0x2a,0xf4,0x50,0x88,0xfe,0x74,0xf4,0x65,0xa4,0xfe,0x71, +0x66,0x5e,0x57,0xe4,0x0c,0x64,0xa9,0xc4,0x16,0x5e,0xad,0xb9, +0xdc,0x44,0x17,0x4c,0x17,0xa3,0x20,0x78,0x0a,0x6b,0x09,0xbc, +0x92,0x22,0xb8,0xb3,0x63,0x72,0xae,0x66,0x9b,0x24,0xf2,0xc7, +0x7c,0x8e,0x7a,0x85,0xf9,0x70,0x38,0x55,0x74,0x1d,0xce,0xc5, +0x7f,0xe0,0xdb,0x18,0x63,0xfe,0x73,0xc2,0x1f,0x89,0xbf,0xa4, +0x6b,0xac,0x99,0xbd,0x15,0x95,0xf5,0x0b,0x2c,0x79,0x98,0x7e, +0x13,0xc6,0x7e,0xff,0xe3,0x27,0x0e,0xaf,0x50,0x98,0x96,0xf6, +0x4e,0xbf,0x91,0xd2,0x18,0x37,0x48,0x39,0xe5,0x13,0xd2,0x12, +0xd2,0xe2,0xd2,0x25,0x3f,0xac,0xd3,0x04,0xac,0x0c,0xd0,0x0a, +0xf3,0x4d,0x20,0x5f,0x7c,0x82,0x6b,0x58,0xc9,0x35,0x6d,0xfa, +0xbf,0x4b,0x95,0xde,0xf9,0xb5,0x8b,0x15,0x2b,0x0e,0x11,0x3c, +0xff,0x16,0xce,0x33,0x78,0x1e,0xc3,0x08,0x35,0xe9,0xcb,0x59, +0x2a,0x90,0xb2,0x89,0xc7,0x7b,0x87,0x9f,0x6d,0x1f,0xdb,0xf8, +0xf2,0x75,0x5a,0x75,0xcb,0x8b,0x17,0x71,0x62,0x24,0x5c,0x24, +0x70,0x5e,0x93,0x39,0x7b,0x66,0xe3,0x11,0x8d,0x70,0xf5,0x08, +0x45,0x05,0xf9,0x4c,0x79,0x09,0xc9,0x58,0x08,0x13,0xe6,0xc0, +0x4c,0xad,0x02,0x4a,0x99,0x17,0x3f,0x53,0x7d,0xe7,0xf3,0x86, +0xdb,0xc6,0xf8,0x2d,0x5f,0xa5,0x86,0x6a,0xab,0x0a,0xa8,0x2a, +0x52,0x1a,0xa4,0x58,0x3a,0x2a,0xe3,0x4f,0x0e,0x6f,0x89,0x4a, +0x44,0xca,0xd9,0xec,0x75,0x94,0x0e,0xd3,0xe7,0xce,0xd9,0x7f, +0x97,0xfb,0x9a,0x6c,0x0a,0x93,0xf1,0x12,0xeb,0x10,0xfa,0xdf, +0xe5,0xbe,0xe2,0xaa,0xe2,0x25,0xeb,0xc4,0xfc,0x5d,0xee,0xab, +0x61,0xb8,0xdc,0x57,0x33,0x5b,0x12,0x5f,0x9c,0x50,0x9c,0xc8, +0x09,0x09,0x30,0x85,0xea,0xd5,0x1d,0x52,0xe1,0x6c,0x75,0x2a, +0x47,0x29,0x66,0x46,0x5b,0x08,0x83,0x6d,0x98,0x04,0xa3,0x58, +0xf4,0x14,0x9b,0x48,0xbb,0x30,0xd2,0xbc,0x07,0x6e,0x8a,0x07, +0xf1,0x26,0x2b,0x6c,0x84,0x58,0x82,0x6a,0x14,0x4e,0xd4,0xe8, +0x08,0xc7,0x83,0x03,0x79,0x04,0xd3,0x8a,0x40,0x39,0x06,0x16, +0x70,0x37,0x7a,0xb0,0x85,0x89,0xff,0xaf,0xac,0x92,0x33,0x03, +0x50,0x66,0xbb,0x80,0x2b,0x41,0x4f,0x98,0x00,0x66,0xed,0x68, +0xf6,0xd9,0x64,0x36,0x9a,0x98,0x83,0x09,0x4e,0xc0,0xfd,0x66, +0xb0,0xc2,0x96,0x45,0x83,0x20,0x5c,0x47,0x8d,0xc6,0x6c,0xe5, +0x7a,0x57,0x19,0xb5,0xc0,0xcb,0xb3,0x40,0x07,0x6c,0x94,0xea, +0x9f,0x89,0x31,0x38,0x82,0x4d,0x30,0x95,0xbd,0x94,0x46,0xa0, +0x5e,0x45,0xb8,0x08,0x3c,0x7b,0xf2,0xc8,0x89,0xa3,0x27,0x8e, +0x96,0xd9,0xf0,0xc9,0x79,0xc9,0x45,0x89,0x25,0x89,0x38,0xb2, +0x70,0x5e,0xdb,0x02,0x2b,0xcd,0x1d,0x5b,0x96,0x6e,0x2f,0x32, +0xe1,0xdf,0x0e,0xdc,0x7b,0xd8,0xf6,0xb8,0x51,0xf3,0xc6,0xd6, +0x67,0xda,0xc5,0x9d,0xfc,0xba,0x07,0x06,0x0f,0xec,0x1f,0x71, +0xbd,0xc2,0x6a,0x72,0x1c,0xa7,0xf8,0xe3,0x58,0x63,0x1c,0x6d, +0x0e,0x23,0xfc,0x81,0x3d,0x0a,0x3c,0xb7,0x4e,0xdc,0x43,0xc2, +0xde,0xf9,0xff,0x19,0xf8,0xc4,0xe6,0x08,0x9f,0xb3,0x3e,0x7d, +0x76,0xc2,0x6a,0x4e,0x5c,0x0e,0xc5,0xe4,0xf4,0xe2,0x90,0xe5, +0xbb,0xb7,0x34,0xf9,0xf3,0x55,0x2f,0xd3,0x3e,0x5d,0xfa,0x44, +0x81,0x22,0x96,0xf2,0xc6,0x80,0x9d,0x26,0x1b,0x50,0x69,0x5d, +0x21,0x45,0xef,0x29,0x4f,0xef,0xbf,0x4c,0x7a,0x43,0x57,0x4b, +0x82,0xfa,0x80,0x36,0x8c,0xd8,0x51,0x40,0xb5,0x94,0x6c,0xc0, +0xf4,0xce,0xfe,0x9b,0x9c,0x7c,0xac,0x78,0x8f,0x2c,0x3c,0x28, +0x13,0xde,0x18,0x88,0xbf,0xb1,0x98,0x61,0x7d,0xcd,0x10,0xe2, +0x9a,0x65,0x78,0xa6,0x0f,0xae,0xb0,0x5f,0xd2,0x64,0xe8,0x24, +0xcc,0x20,0x36,0xfd,0x86,0x37,0xcd,0x1b,0x5d,0xdc,0xf8,0x76, +0xeb,0x5e,0xdd,0x46,0x03,0x0e,0xf3,0xfd,0xa9,0x5e,0x68,0x32, +0x85,0xb1,0x38,0x1e,0xed,0xcc,0xc1,0x0e,0xbf,0xcc,0x96,0xfc, +0x70,0x9e,0x30,0x0d,0xe9,0x69,0x54,0xe9,0x7c,0x18,0x7e,0x58, +0x08,0xe3,0x59,0x61,0x05,0xea,0x13,0x9b,0xdb,0x66,0xfd,0xc6, +0x9d,0x4e,0x7b,0xf8,0x2e,0x93,0x0e,0xdd,0x26,0x1d,0x0e,0x07, +0x3d,0xc8,0x75,0xdd,0xdc,0xe5,0x29,0xdb,0xdb,0xb2,0xf9,0xc3, +0xfd,0x5e,0xef,0x7d,0xfb,0xe9,0x15,0x4f,0x91,0xc3,0xab,0xf6, +0x69,0x58,0x68,0xd6,0xef,0xe6,0xbb,0x5e,0x15,0xfc,0x94,0xf4, +0x9e,0xd2,0x5f,0x4d,0xe1,0x35,0x79,0xd2,0xf2,0xa4,0xff,0xc1, +0x23,0x9b,0x22,0x7e,0xcb,0xfa,0x85,0x9b,0x91,0xdb,0xc9,0xad, +0xfa,0x08,0x7e,0x6d,0xe8,0xf7,0xa3,0xfe,0x72,0x2c,0xb6,0x80, +0xe2,0x05,0x22,0x6b,0x26,0xa8,0x33,0x48,0x74,0x51,0xd5,0x14, +0x57,0xd9,0x65,0x58,0xf0,0x4f,0x32,0xbb,0xd2,0xea,0xd3,0x38, +0x3c,0x21,0x3c,0x80,0x3b,0xe2,0x37,0x6c,0x4b,0x7a,0x47,0x4e, +0x57,0x21,0x25,0x9a,0x1d,0xcc,0x90,0x12,0xa6,0x93,0x67,0x82, +0x8d,0x06,0x2b,0xda,0xd8,0x12,0xc1,0x66,0xad,0x68,0xc3,0x08, +0x9e,0xaa,0xa4,0xd2,0xbe,0xd2,0xba,0xc0,0xb8,0x2b,0x8f,0xdf, +0xdb,0xe3,0xd4,0xe2,0x5a,0xc1,0x0d,0x39,0xa0,0x21,0xe9,0x6d, +0xad,0xee,0xc8,0x69,0xb5,0xc8,0xe0,0xf7,0xd9,0x3a,0x5b,0x1b, +0xd9,0x71,0x42,0x34,0x4c,0x20,0x99,0xb6,0x69,0xd6,0x09,0x66, +0x37,0xe2,0xf9,0xc3,0x5d,0xc1,0xcd,0x01,0xf5,0x1c,0x66,0x1e, +0x21,0x71,0x96,0x57,0xec,0x2f,0x1b,0xf5,0x5d,0xe1,0x4f,0xf7, +0x1c,0x6b,0x0a,0x6b,0x1c,0x4e,0x71,0xa9,0x3c,0x1c,0xf2,0x10, +0x7e,0xec,0xef,0x90,0x87,0xba,0xf6,0x9b,0xbf,0xe4,0xfd,0x44, +0xb9,0xc4,0x4c,0x58,0x64,0x80,0x8b,0xa4,0x6c,0x9f,0x15,0xac, +0x33,0x8e,0xc5,0xa9,0xb8,0x16,0x67,0xab,0x16,0xd9,0xf0,0x1d, +0xd5,0x4d,0xb5,0xa5,0x95,0x9c,0x38,0xa7,0x57,0xd0,0x62,0xa3, +0x2f,0x49,0xc1,0x62,0xa0,0x82,0x1a,0x95,0xe5,0x32,0x38,0x0d, +0x41,0x04,0xf6,0xf7,0xe2,0x7e,0xb8,0xad,0x87,0xb7,0xd1,0xcb, +0x10,0xbc,0xc4,0x8d,0x18,0x69,0x28,0xf4,0xf6,0xe2,0x45,0x46, +0x81,0xc2,0x34,0x90,0x04,0xb3,0xa6,0x94,0x43,0x03,0xfb,0xef, +0x07,0x74,0x29,0xda,0x1d,0x94,0x6c,0xc4,0x35,0x4f,0x45,0x87, +0x53,0xb6,0xa7,0x6d,0xce,0xde,0x7c,0x71,0x0f,0x64,0x3d,0xc3, +0xb1,0x54,0xbe,0xfa,0x1e,0x3a,0x7b,0x0c,0x83,0x33,0x83,0xb2, +0xf6,0x67,0x55,0xf6,0x95,0x0c,0xe4,0xdd,0xb6,0xcc,0xe4,0x03, +0xf5,0xbc,0x74,0x3d,0xcd,0x0e,0x27,0x86,0x26,0x84,0xc6,0xef, +0x75,0xe4,0xdb,0x6d,0x3b,0x2c,0x1a,0x8d,0x03,0x77,0x07,0x78, +0x04,0xfa,0xec,0xfd,0x76,0xef,0xb9,0xbd,0x52,0x2c,0x55,0xf7, +0xa5,0xde,0xc8,0xee,0x28,0x4e,0x5c,0xd6,0x4d,0x0d,0x85,0x30, +0x15,0x27,0x91,0x9a,0xcc,0xf4,0x1a,0x15,0xa1,0xde,0x40,0x6c, +0x41,0x96,0x4d,0x36,0x94,0x09,0x73,0xc1,0x90,0x04,0xc0,0x08, +0x47,0x98,0x6c,0xf5,0xc9,0x72,0x3f,0xdf,0xb4,0xb0,0x1a,0xbf, +0xce,0xc5,0x51,0x9c,0xa8,0x00,0x9f,0xc9,0x11,0x1c,0xef,0x87, +0x13,0x0c,0x17,0xb7,0xee,0xe5,0x7b,0x3f,0x16,0x4b,0x45,0x21, +0xa7,0x70,0xa8,0x31,0x54,0x40,0xe0,0xc2,0x03,0x58,0x02,0xe4, +0x25,0x18,0x5b,0x66,0xf3,0x5a,0xb8,0x05,0x67,0x23,0x1d,0xb7, +0x9d,0xdc,0x7a,0x48,0x21,0xe9,0x3a,0x49,0x9b,0x63,0xb7,0x48, +0xca,0x63,0xe0,0xc0,0x93,0xa0,0x7e,0xc9,0xdb,0xab,0x9e,0x54, +0xbd,0x4a,0xff,0x35,0xee,0x83,0xd5,0x35,0x3e,0x7c,0x65,0xf0, +0x6a,0xd7,0x75,0x9c,0x94,0xf7,0xa3,0x88,0x60,0x0c,0xf3,0xfc, +0xd6,0xe0,0x83,0x3b,0xcf,0x6d,0xca,0x78,0x8d,0x05,0x2b,0xd6, +0xaa,0x6a,0x71,0x38,0x1a,0xa6,0xc1,0xa9,0x0e,0x3c,0x05,0x63, +0xa4,0xa0,0xbc,0x16,0x33,0x68,0xc1,0x69,0xf8,0x2f,0x53,0xc1, +0x96,0xc1,0x6f,0x56,0xe2,0xf2,0xad,0xb8,0x4d,0x2f,0xd7,0x84, +0xbf,0x91,0xd9,0x97,0xdd,0x9b,0xcb,0xe1,0xef,0x7d,0x9d,0x82, +0xb9,0x69,0xbf,0x60,0x21,0x4e,0x62,0x3b,0x0b,0xdb,0x8b,0x5b, +0x29,0xdf,0xff,0x81,0xa1,0xc8,0x94,0x4d,0x44,0xd3,0x5f,0x99, +0x6b,0x91,0x57,0xa3,0xae,0x45,0x71,0xc2,0x1a,0x46,0x34,0x45, +0x0d,0x22,0x98,0x22,0x2b,0x9a,0x52,0xd8,0xfe,0x4b,0x58,0x47, +0xe0,0x25,0x8e,0x61,0x63,0xb2,0xaf,0xe6,0x44,0xe7,0x58,0xc5, +0xf1,0x27,0x7c,0x8e,0x79,0x87,0xfb,0x72,0x9b,0xc4,0xdd,0x4c, +0xd8,0xb7,0x61,0x67,0xc3,0xbe,0x8d,0x37,0xe1,0x6f,0xc5,0xf5, +0x27,0xf4,0x26,0x99,0xa9,0x6f,0xdb,0xb6,0xc2,0xa0,0xc4,0x91, +0x7f,0xd5,0x7b,0x7f,0xb0,0xeb,0x07,0x0e,0xc3,0x29,0x77,0x4f, +0x30,0x97,0x7d,0x64,0xaa,0xa4,0x44,0x1a,0xd0,0xcf,0xc6,0x67, +0xc7,0xe5,0xc4,0xe6,0x70,0x10,0x01,0x91,0xe4,0xef,0xe8,0x0a, +0x43,0x63,0x30,0x14,0x5f,0xe0,0x1c,0x36,0x9e,0x22,0xf6,0xd8, +0x7f,0x23,0xf6,0x83,0xe7,0xdd,0xec,0xbf,0xa6,0xc2,0x6a,0x62, +0x0e,0x47,0xdb,0x59,0xb8,0x8c,0x36,0x04,0xe7,0xfc,0x0c,0x73, +0x18,0x31,0x7e,0x0f,0x31,0x85,0xca,0x4e,0xf6,0x7b,0xb4,0xa7, +0xd6,0x79,0xce,0x62,0x56,0x0c,0xe9,0xa5,0x67,0x1d,0x6c,0x67, +0x85,0x20,0x6c,0x27,0x87,0xde,0xfa,0x7c,0xf6,0x7e,0x62,0x1b, +0xc4,0x17,0x6a,0xe4,0x2e,0x4c,0x51,0xe3,0x50,0x1b,0x7c,0xc9, +0x6a,0xd6,0x21,0xdc,0xee,0xb8,0xed,0x71,0x8e,0x2a,0x59,0x1c, +0xb3,0x81,0xda,0xcd,0x83,0xe6,0x6c,0x9b,0xb8,0x98,0xb4,0x81, +0x36,0x64,0xe3,0x21,0x69,0x83,0x66,0xdb,0xdf,0x71,0x09,0x0a, +0x52,0x5c,0x82,0x90,0x02,0x5f,0x53,0x0b,0xf1,0x4e,0x50,0xc0, +0x77,0x2f,0x85,0x4d,0x1d,0xe2,0xa6,0x0f,0x46,0x8b,0xc4,0xc5, +0x66,0xc2,0x62,0x75,0x1c,0xa4,0xa3,0x3d,0xb8,0x5c,0x5c,0x66, +0x22,0x2c,0xc3,0xb9,0x3d,0x30,0x57,0xd8,0x4c,0x6d,0x4b,0x28, +0x85,0x33,0x1c,0x81,0x09,0x30,0x82,0x15,0x3e,0xe2,0x08,0x42, +0xa5,0xe2,0x08,0x28,0x64,0xc4,0x8f,0xb8,0x8a,0x40,0x02,0xca, +0x30,0x81,0x81,0xc1,0x69,0x20,0x83,0x42,0x94,0x51,0x09,0x39, +0xf8,0x03,0xb9,0x05,0x5f,0xc5,0xc1,0xf4,0x8b,0x60,0xc0,0xc1, +0x04,0xb4,0x87,0x06,0x4a,0x08,0x14,0xdb,0x50,0xf1,0x77,0x93, +0x79,0xb8,0x53,0x7a,0x99,0x00,0xbc,0xd0,0xd2,0x86,0x59,0x83, +0x7a,0x5a,0x98,0x8f,0xce,0x0c,0x3a,0x1d,0xc7,0x09,0x06,0x73, +0x95,0x23,0x85,0x7d,0xc4,0xfe,0xb1,0xd1,0x53,0x8b,0x4e,0x5b, +0x0f,0xbe,0xdd,0xac,0x73,0x43,0xdd,0x66,0x4e,0x28,0x40,0x3b, +0x82,0x3b,0x61,0x11,0x15,0x35,0xd8,0x27,0x52,0x3b,0xf0,0x8f, +0x15,0x5d,0xc0,0xaa,0x40,0xb9,0xd4,0xb9,0x13,0x71,0x3f,0xbb, +0xd8,0xdb,0x72,0x81,0x93,0x72,0xa6,0xd1,0x9b,0xaa,0xda,0x8e, +0x8b,0x0f,0x29,0x77,0x5f,0x7d,0xf5,0xb9,0x36,0xac,0x9e,0x2e, +0x9c,0x61,0xae,0xf5,0xc9,0x70,0x06,0x24,0x91,0x02,0xd3,0xdc, +0x75,0xc9,0xda,0x2d,0x89,0xfc,0xa1,0x01,0xef,0x97,0xbe,0x9d, +0x9c,0xb8,0x93,0x5a,0xc9,0x9a,0xbb,0x59,0xf7,0x93,0x6e,0x59, +0x27,0xf0,0xa1,0x3a,0x81,0x7a,0x4e,0x7a,0x9c,0xb0,0x32,0x9c, +0x84,0x3f,0x3e,0xd4,0xbf,0xbf,0xd7,0x26,0x82,0x4f,0x37,0x49, +0xd9,0x76,0x75,0x2b,0x37,0xeb,0x22,0xb9,0x70,0xe7,0xd4,0xbd, +0x88,0x9b,0xd6,0xa7,0xf9,0xab,0xfa,0x51,0x5b,0xbe,0xd5,0xe3, +0x14,0x04,0x06,0xce,0x90,0xd8,0xbd,0xb1,0x4e,0x31,0x8e,0x6e, +0xe1,0xae,0x11,0x2e,0xb4,0xe7,0xdd,0x60,0xbe,0x40,0x70,0x3e, +0x2c,0x33,0xc2,0x65,0x38,0x4f,0x24,0x30,0x0f,0xfd,0x59,0xc3, +0xa3,0x06,0x11,0x7a,0xc7,0xe3,0x0d,0x79,0x50,0x4c,0x87,0x49, +0xb9,0x30,0xa6,0x24,0x7e,0x07,0xdf,0x92,0x18,0xfa,0x24,0xe0, +0x63,0xf0,0x5d,0x45,0xe8,0x17,0xee,0x13,0x03,0x8a,0x20,0xc6, +0xe8,0xd0,0x05,0x73,0xe1,0x7b,0x9c,0xdb,0x4d,0x05,0x81,0x3d, +0x23,0xfe,0xbc,0x94,0xbc,0xc5,0xec,0x15,0x0c,0x48,0x0f,0xc0, +0x31,0x7b,0x09,0x64,0xb3,0xc2,0x64,0xf1,0x5f,0xc4,0xee,0xd8, +0x35,0x8a,0xcd,0x9b,0x58,0x98,0xd0,0x0d,0x23,0x9e,0x0e,0x0c, +0xba,0x55,0xf1,0x86,0xbb,0x16,0x6f,0x9b,0x63,0xc5,0x41,0xb8, +0xb1,0x18,0xc0,0xae,0xcb,0xf1,0x7f,0xa2,0x0c,0x2e,0x4c,0x4d, +0x9a,0x64,0x6a,0x37,0x0f,0x87,0xad,0x58,0xd3,0xf1,0x4e,0x90, +0x87,0x51,0xf1,0x65,0x6c,0xfa,0x04,0x13,0x17,0x9a,0x42,0x1b, +0x6b,0x3f,0x93,0x8a,0x21,0x6a,0xff,0x56,0x17,0x9b,0xf2,0xa0, +0xfe,0x85,0x2e,0xb3,0x71,0xf1,0xf0,0x35,0x17,0x2d,0x2e,0xc5, +0x15,0x52,0xd8,0x30,0x65,0x16,0xf5,0xa9,0xa9,0x8d,0x2a,0xc2, +0xaa,0xe7,0x9d,0xeb,0x21,0x91,0x15,0x46,0x60,0x26,0x69,0x7b, +0x5f,0xf9,0x73,0xd6,0x0b,0xae,0x19,0x7f,0x1d,0xfa,0xab,0x5f, +0xde,0x02,0xde,0xec,0xfe,0xcd,0x2e,0xcb,0x8c,0xe6,0x73,0x4f, +0xb6,0x77,0x6b,0x6e,0x50,0xd2,0x3e,0xb0,0x77,0xa3,0xf2,0x76, +0x26,0x4e,0x5f,0x76,0x87,0xf9,0x52,0x77,0xf3,0x97,0x0f,0x26, +0x8f,0xb7,0xdf,0x52,0x11,0x37,0x49,0x01,0x3d,0x89,0x74,0x9a, +0x26,0xfe,0x3b,0x2b,0x96,0xbd,0x94,0x15,0x4b,0x05,0x47,0x0e, +0x7b,0x44,0x17,0x14,0x14,0x56,0x5c,0x6f,0xe0,0xc4,0x02,0x29, +0x43,0xd3,0x70,0x56,0xac,0xf7,0x9c,0xe0,0x8e,0x5b,0x08,0xac, +0xe9,0xc4,0x35,0x30,0xc9,0x00,0x27,0xd1,0xd9,0x33,0xc9,0x98, +0xbe,0x49,0x15,0xcd,0x70,0x26,0x6e,0x33,0x91,0xaf,0xee,0x42, +0x6d,0xc6,0x00,0x66,0x12,0xfa,0xab,0x3d,0x15,0xb8,0x73,0x87, +0x7c,0x49,0xa3,0xa0,0x66,0xdb,0x27,0x98,0x8b,0x59,0xa2,0x39, +0x2b,0xb8,0x43,0x01,0x11,0xd5,0x40,0x26,0xa8,0x31,0xa2,0x1a, +0x6e,0x24,0x82,0x1a,0x8e,0x15,0xd5,0x28,0xcc,0x0e,0xc8,0xed, +0x49,0x62,0x45,0x5c,0x45,0x6c,0x95,0x6e,0x1c,0xef,0x86,0x8b, +0x36,0xd3,0x2b,0x4c,0xc4,0x11,0xf5,0xd6,0xfc,0x77,0xf7,0x7b, +0x5f,0xd5,0xbd,0xa3,0x53,0x8d,0x39,0x87,0xb5,0x87,0x71,0x57, +0x88,0x3a,0x67,0x75,0xd4,0x2f,0x80,0x32,0xbe,0x5d,0x8c,0x94, +0x2e,0x4a,0x93,0xf9,0xb1,0xa1,0xf4,0x59,0xba,0x4a,0xee,0xa7, +0x78,0xf0,0x81,0x67,0x4a,0xe2,0x1f,0x78,0x99,0x50,0x9b,0x8f, +0x6c,0xfd,0xbc,0x9e,0x22,0xde,0xfa,0xcf,0x8d,0xc0,0xe8,0x0c, +0x52,0x2c,0x1b,0x2d,0x25,0x40,0x11,0x86,0xcc,0xf1,0x21,0x8b, +0xbb,0x7d,0x71,0xf6,0x62,0x9c,0xac,0xdc,0x6a,0xfe,0x1b,0x28, +0x15,0x4b,0xa9,0x5c,0xcc,0x15,0x21,0x8f,0xa9,0xa5,0x66,0x40, +0x11,0x57,0xc3,0x61,0x4a,0x25,0xfa,0x79,0x74,0x7b,0x8f,0xe3, +0x41,0xd1,0x11,0xec,0x39,0x08,0x82,0x46,0x82,0x11,0xe2,0x4d, +0x88,0xa0,0x83,0xf6,0x46,0xbe,0x89,0x24,0xd7,0x27,0x36,0xc4, +0x34,0x18,0xa5,0xf0,0x3e,0x48,0x4c,0x90,0x68,0xce,0xaf,0x77, +0xe4,0x2b,0x5a,0x4a,0x7b,0xf3,0x6f,0x52,0x75,0x68,0xca,0xe0, +0x94,0x13,0xe8,0x18,0x82,0x13,0x95,0xb7,0x47,0xec,0x77,0xdf, +0x39,0x1d,0x97,0x0c,0x97,0x31,0xfb,0x86,0xf9,0x5c,0xdf,0x06, +0xb2,0x04,0x15,0xba,0xcc,0xaf,0x81,0x1d,0x4c,0x55,0x82,0x71, +0xec,0x10,0xa5,0x57,0xe4,0x24,0xac,0x83,0xc5,0xdd,0xb8,0x18, +0x4c,0x0c,0xd1,0x04,0x77,0x19,0xc3,0x46,0x26,0x14,0x27,0x39, +0xe0,0x74,0x9c,0x8c,0xf3,0xaa,0xed,0xf8,0xdf,0x60,0x6c,0x05, +0x8c,0xbe,0xf2,0x99,0xce,0x84,0x86,0x5e,0xc1,0x5f,0x2a,0x4b, +0x1e,0x79,0x46,0x19,0xc6,0xa3,0x66,0x75,0x25,0x7e,0x05,0xea, +0x11,0x09,0x27,0x22,0x8f,0x84,0x2b,0x0a,0xdb,0xd1,0x97,0xb8, +0xbe,0xd0,0x85,0x91,0xc6,0x83,0x36,0x6e,0x7c,0xc7,0x96,0xdb, +0x33,0x2b,0xa4,0xb0,0xd7,0x17,0xb4,0xc5,0x89,0x8d,0x71,0x4d, +0xd7,0x9a,0x0c,0xe2,0x78,0x7f,0x9c,0x65,0x8c,0xaa,0x5b,0x67, +0x37,0xbb,0xf2,0x15,0x1d,0x65,0x0f,0xae,0x3f,0xa5,0x2d,0x36, +0x63,0x70,0xd2,0x09,0x74,0x3e,0x80,0x93,0x94,0x77,0x44,0xec, +0xdf,0xb3,0x6d,0x3a,0xae,0x1e,0x6e,0xf1,0x7c,0xe6,0x73,0x43, +0xbb,0xd4,0xe2,0xd4,0xbf,0x5b,0x3c,0x65,0xb8,0xc5,0xf3,0x44, +0x1d,0x72,0xfa,0x62,0xe2,0xdd,0x2b,0x37,0x2f,0x3d,0x53,0x7c, +0xd0,0xd3,0xdc,0xde,0x78,0xdb,0xa5,0x86,0x77,0x35,0x76,0xb5, +0xb3,0x73,0xe5,0xa0,0xc1,0x00,0x7b,0x58,0xbc,0xec,0x86,0x0a, +0xb8,0x02,0x75,0x94,0xeb,0xed,0x7e,0x81,0x51,0x8d,0x6f,0xf2, +0x7f,0x56,0xbc,0x44,0x5b,0x1d,0x75,0x0a,0x36,0xa2,0x09,0xdf, +0x50,0x8f,0xea,0xb0,0x33,0x3c,0x9e,0x5a,0xf1,0x08,0x45,0x34, +0x10,0xa6,0x93,0xb3,0x38,0xe2,0xc8,0x52,0x77,0x8d,0xf6,0x40, +0xbe,0xe2,0x5d,0xc2,0x1f,0x17,0x61,0x04,0x27,0x3c,0x13,0x37, +0x10,0x97,0x17,0xfa,0x7f,0x1a,0x0d,0xda,0xb9,0xf1,0x9d,0x5b, +0xfa,0xe7,0x55,0xa8,0x4b,0x49,0x53,0xe4,0x4f,0x09,0xda,0xba, +0x63,0xc1,0x09,0x7c,0x74,0xf6,0x1a,0xa5,0xe9,0xf7,0x2f,0x41, +0x0d,0x6d,0x5b,0x29,0x17,0x8d,0xef,0xa4,0xca,0xb0,0x5a,0x6c, +0xce,0xf5,0xac,0xd2,0xd4,0x32,0x8b,0x4c,0x3e,0xd8,0xc5,0xcb, +0xd6,0x63,0x37,0x27,0x7e,0xc3,0x54,0x27,0x87,0x15,0x1e,0xcc, +0x3f,0x9c,0xa9,0x68,0x7e,0x20,0x29,0x20,0xc9,0x2f,0xc1,0x8f, +0x8e,0x33,0xee,0x60,0xe0,0x67,0xc8,0x23,0x29,0x3e,0x89,0xbe, +0xb1,0x9e,0xed,0x69,0xfc,0xd1,0xe2,0xc3,0x05,0x87,0xb3,0x39, +0x9c,0x4f,0xcd,0xd0,0x06,0x34,0xfa,0x6e,0xf8,0x91,0x8f,0xf1, +0x06,0x34,0x66,0xe0,0xfc,0xb4,0xef,0xc0,0x72,0x03,0x7b,0x09, +0x75,0xc8,0x6b,0xa3,0x55,0x98,0x66,0x01,0x69,0x98,0x83,0x73, +0x59,0xa9,0xba,0xc9,0x04,0xa6,0x35,0x31,0xae,0x5e,0x05,0xd2, +0x3f,0xb7,0xb1,0xe2,0x0f,0x78,0x80,0x24,0x1f,0x4a,0x3e,0x90, +0x1c,0xb2,0x25,0x7c,0xe3,0xf1,0x35,0x27,0x39,0xba,0x86,0x7b, +0x21,0x51,0x1c,0x23,0xce,0x62,0x77,0x9d,0x8d,0x36,0x85,0xa5, +0x31,0x30,0x29,0x0e,0xbe,0x4a,0x57,0x8c,0x3d,0x1c,0x17,0x1a, +0x13,0x5a,0x57,0xc8,0xef,0x6e,0x75,0xec,0x70,0xa8,0xe4,0xd2, +0x41,0x8b,0xe0,0xc5,0x4e,0xb8,0xc8,0xe0,0xc5,0xb9,0x04,0x2e, +0xea,0x51,0x02,0x22,0xc4,0x2f,0x21,0xfe,0xb5,0x9e,0x35,0xee, +0x15,0x8e,0x5e,0x7c,0xc9,0x9e,0xeb,0x2e,0xd7,0x6d,0x28,0x77, +0x5b,0x48,0x87,0x33,0xa1,0x21,0xae,0xf1,0x6a,0x93,0x51,0x02, +0xbf,0x1f,0x15,0xed,0x91,0xec,0x98,0xcb,0xc1,0x1c,0xaa,0x07, +0xa7,0xc0,0xca,0x0e,0xf1,0x90,0xb4,0xa1,0x38,0x05,0x27,0x0d, +0x19,0x75,0xdd,0x02,0x51,0xf0,0x67,0x2b,0xdd,0xcb,0x3b,0x8a, +0x6e,0xe5,0x0c,0x28,0xc2,0x01,0x43,0x06,0xa7,0x9f,0x44,0xcb, +0xc3,0x38,0x5e,0x79,0xcb,0xb1,0xe0,0xbd,0xc6,0xd3,0x71,0xea, +0xf0,0x48,0x8f,0x62,0x3e,0x54,0xb5,0x00,0x13,0xaf,0x92,0x08, +0x5f,0x5f,0x05,0x1b,0x50,0x54,0x82,0xb1,0xac,0xf8,0xe5,0x16, +0xc1,0x29,0x46,0x30,0x85,0xed,0x41,0x20,0x76,0xe9,0x01,0xf5, +0xca,0x6d,0x73,0xb0,0xf3,0x07,0xa6,0x74,0x4f,0xdf,0x40,0xda, +0xbb,0x0b,0x30,0x4b,0xb1,0x87,0xc1,0x51,0xd3,0xce,0xe1,0xb8, +0xc3,0xea,0x96,0x26,0x1c,0xc4,0xb3,0x90,0x4c,0x6d,0x42,0xe0, +0xf1,0x2b,0xf9,0x2a,0xb0,0xe6,0x01,0xda,0xb1,0xf0,0x01,0x17, +0x91,0xbd,0x2f,0xac,0x3e,0xdb,0xde,0xb7,0xf6,0xe4,0xeb,0xb5, +0x5b,0x67,0x17,0xad,0xe3,0xc4,0x9f,0xf6,0x13,0xe8,0xa4,0x74, +0xa4,0x93,0xae,0xfd,0x5f,0xe1,0x05,0x09,0x8f,0x3b,0x76,0xf1, +0x68,0x04,0xe5,0x73,0x27,0xdf,0x83,0x76,0x3b,0x05,0xa5,0x34, +0xa6,0x2b,0xb6,0x23,0xa1,0x21,0xd9,0xb7,0x9e,0x9f,0xb7,0x07, +0x27,0x05,0xe3,0x8c,0xf0,0x04,0x2b,0xbe,0x31,0xaa,0x35,0xba, +0xf5,0x2a,0x87,0xd7,0x70,0xbb,0x39,0x68,0xb0,0x47,0x96,0x1a, +0x2d,0x9c,0x3b,0xbf,0xdc,0x8e,0x7f,0xff,0x73,0xc5,0xb3,0x2b, +0x4f,0xb9,0xcb,0xe2,0xe2,0x1e,0x41,0xc6,0x5c,0xbe,0x74,0xe1, +0x12,0x5d,0x1c,0xa3,0x71,0x4e,0x55,0xb5,0x4c,0xb8,0x80,0x9e, +0x04,0x47,0xc2,0x48,0x03,0x58,0x70,0x04,0xb6,0x4b,0x61,0x3e, +0x13,0xc4,0x59,0x38,0xc8,0xe0,0xee,0x60,0x5c,0xb4,0x00,0x55, +0x94,0xeb,0x9d,0x3f,0xc0,0xac,0x42,0x58,0x73,0x11,0xf4,0x14, +0x41,0x85,0x49,0x44,0xc3,0x7e,0xd4,0xa4,0x92,0x89,0x70,0xba, +0xf2,0x3a,0x09,0x22,0xaf,0x53,0x88,0x44,0x33,0x3c,0x4a,0xb2, +0xba,0x32,0x9f,0xc7,0x76,0x98,0x26,0xf2,0x11,0x66,0xc1,0x1b, +0x82,0xcc,0x38,0xbc,0x40,0xb1,0x2e,0xc5,0x31,0x53,0x3f,0xce, +0xb2,0x35,0x83,0x0f,0x6b,0x0f,0xba,0x71,0xb0,0x86,0x12,0xd4, +0x33,0x54,0xb4,0xc5,0xad,0x6e,0xd9,0xf9,0x76,0xd3,0xf5,0x56, +0x7e,0xfd,0x80,0xcd,0xc0,0x81,0xfb,0x52,0x4d,0x19,0x4d,0xa7, +0x4d,0x0b,0xa4,0x9a,0x32,0x1f,0xee,0x77,0x0c,0xd7,0x94,0xb9, +0x21,0xae,0x26,0xe9,0x79,0xc9,0xc3,0xa1,0x6a,0xf5,0xf0,0x4c, +0xdc,0x2e,0x85,0xaa,0xf9,0xea,0xdb,0x9a,0x19,0x3b,0xe5,0x39, +0xf0,0xd9,0xa9,0x19,0x69,0x69,0xe9,0xdc,0xef,0x8c,0xf3,0x1a, +0xe3,0x9d,0xcb,0x74,0x0b,0x1d,0xf8,0x4f,0x03,0xf7,0x5e,0x35, +0xc1,0x48,0xee,0x47,0x29,0x54,0x4d,0x4b,0x0a,0x55,0x5b,0x52, +0xec,0xc8,0x03,0xff,0xe9,0x05,0x90,0x5a,0x58,0xcb,0xb5,0x0f, +0x87,0xaa,0x2d,0x1d,0x0e,0x55,0x3b,0x74,0xc4,0x6e,0xfa,0x06, +0x26,0xc9,0x5c,0xf6,0x90,0x79,0x74,0x3d,0xf7,0x49,0x8c,0x4a, +0xec,0xbf,0x43,0xd5,0xd6,0x0c,0x87,0xaa,0x0d,0xbc,0x65,0x61, +0x00,0xbf,0x21,0x6a,0x38,0xf0,0x0b,0x4b,0x7b,0x33,0x89,0xc0, +0xf4,0x0e,0x9c,0x0e,0x63,0x7f,0x6e,0xc7,0xe3,0xe6,0xaf,0xa9, +0xe5,0x53,0x33,0x03,0x35,0xbc,0xc1,0x58,0x44,0x98,0xff,0xbb, +0xf4,0xea,0x84,0x64,0x98,0x9e,0xfb,0x36,0xf7,0xdb,0x0e,0xde, +0x25,0xdc,0x3e,0xc2,0xee,0x18,0xf7,0xe4,0xbe,0x54,0x5b,0xb5, +0xe7,0x6a,0xbb,0x5d,0xec,0x70,0xb5,0x9a,0x50,0x6b,0x0e,0x43, +0xa5,0x6a,0x35,0x66,0x99,0x1a,0x71,0xc6,0xc3,0xd5,0x6a,0x02, +0x5e,0x05,0xb5,0xd3,0xfe,0xf8,0x22,0x3c,0x20,0x9f,0x20,0x7f, +0x7e,0xef,0x27,0x88,0xe9,0xc0,0x98,0xdf,0x0d,0xe7,0x61,0xbe, +0xf4,0x72,0xca,0x0c,0x4e,0xcd,0x67,0xe5,0x8b,0xd6,0x10,0x31, +0x94,0x49,0x29,0x4b,0xaa,0x88,0xab,0x34,0x49,0xe6,0x43,0x6d, +0x43,0x1c,0xf7,0x3b,0x73,0xf8,0xd9,0x04,0xee,0x31,0x1b,0x69, +0x53,0x46,0x2c,0x47,0xa5,0x6d,0xa5,0xd6,0x7c,0x77,0x41,0x67, +0x59,0x6b,0x2d,0x87,0xd5,0xfd,0x8d,0x82,0xb3,0x6d,0x3f,0xa0, +0x18,0xcb,0x56,0xd7,0x96,0x35,0x16,0xb4,0x72,0x42,0x12,0x33, +0x34,0x4d,0xa4,0x8b,0xc6,0x5a,0x70,0x96,0xec,0xaa,0xfc,0x1c, +0xac,0x22,0xf7,0x3e,0x97,0xc0,0x84,0x54,0x98,0xc7,0xd5,0xd4, +0x81,0xba,0xb8,0xe8,0xa3,0xde,0x02,0x51,0x09,0xcd,0x6e,0xc0, +0x0c,0x79,0xe0,0x2c,0xfc,0x64,0x06,0xad,0xec,0x11,0x64,0x7d, +0xe7,0x99,0xaf,0xb0,0x78,0xe5,0xf5,0x2e,0xe8,0x37,0x93,0x10, +0x3e,0x07,0x99,0xca,0x39,0x37,0x96,0x58,0xee,0xd0,0x36,0x50, +0x33,0x2d,0xb3,0xe6,0x7f,0xee,0xba,0xdf,0xd7,0x7e,0xa7,0x75, +0xd7,0x6d,0x83,0x97,0xa6,0x25,0x2d,0xfc,0xea,0x0e,0x9d,0x5e, +0xeb,0xdb,0x1c,0x46,0x50,0x91,0x4b,0x35,0x2c,0x03,0x5a,0xed, +0xa8,0xf5,0x9d,0x01,0x5e,0x44,0x0b,0x33,0xf0,0xc6,0xbb,0xaa, +0x52,0xae,0x9a,0x37,0x4c,0x55,0x72,0x52,0xb5,0x0a,0xf4,0x81, +0x19,0x8b,0xfc,0x2e,0x92,0x6b,0x92,0x6e,0x94,0x6c,0xd0,0x9e, +0xc2,0x1f,0xee,0x09,0xea,0xf3,0xeb,0x1e,0xde,0x94,0x0c,0xd5, +0xf0,0x5e,0x61,0xad,0xd5,0xe6,0xc7,0x37,0x0f,0x96,0xfc,0x99, +0xf8,0x3d,0xed,0xa2,0x0e,0x33,0xf2,0xba,0xac,0xe4,0xe7,0x38, +0x95,0x98,0x57,0x51,0x2f,0x7e,0x55,0x7a,0x4f,0x8d,0x54,0x74, +0x69,0x74,0xd3,0x45,0xca,0x94,0x1b,0xe0,0xb4,0x94,0xa1,0xa8, +0x9f,0x12,0x83,0x2a,0xe6,0xcc,0xd6,0x70,0xf5,0xd0,0xf5,0x1c, +0xbc,0x74,0x63,0x56,0x9e,0x5e,0x15,0xb1,0x49,0x59,0xef,0xc4, +0x81,0x30,0x93,0xe9,0x38,0x52,0x8a,0x41,0x12,0x7a,0xa6,0xbd, +0xac,0x29,0xfd,0x18,0xaf,0x72,0xed,0x59,0xe4,0xf3,0x0f,0xf4, +0x22,0xef,0xd9,0x2b,0xe5,0x97,0x1b,0x2e,0xd1,0x8b,0xdc,0xa2, +0x17,0x99,0x6d,0x02,0xaf,0xe9,0x45,0x7a,0x99,0xb3,0x5b,0xc3, +0xd7,0x1d,0x5e,0xc7,0xc1,0x67,0x37,0x66,0xf5,0xd9,0x55,0x11, +0x9b,0x95,0x75,0x8f,0x07,0x1c,0x32,0x9f,0x8e,0x44,0xba,0x08, +0x7e,0x81,0x5e,0xe2,0x5c,0x68,0x51,0x68,0x9e,0xed,0xeb,0xc4, +0x77,0xee,0x6b,0xf4,0xab,0xf1,0xe0,0x84,0x43,0xb5,0xc4,0xbe, +0xd0,0xa4,0xd0,0x48,0x3a,0xd6,0xe7,0xd7,0xba,0xaf,0xc1,0x83, +0x13,0x55,0x8e,0x93,0x9d,0x2e,0x38,0xc2,0x66,0x73,0x50,0xa6, +0x19,0xff,0x24,0xe7,0xcf,0xc6,0xbb,0xd5,0x9c,0xa0,0xdd,0x44, +0xb6,0xba,0x20,0x6b,0xbb,0x21,0x28,0xc3,0x8c,0x7f,0x99,0x43, +0x91,0x7f,0xb0,0x4a,0x9a,0x02,0xf2,0xa9,0xe4,0x0e,0xe4,0xef, +0xec,0xbd,0x03,0x31,0xed,0x18,0x73,0xdf,0x50,0x1b,0xf3,0xa5, +0x97,0x53,0xe6,0x70,0x6a,0x27,0x2b,0x94,0xe3,0x76,0x69,0x0e, +0xe4,0x66,0x66,0x65,0x67,0xe4,0x72,0x42,0x5c,0xbb,0xe8,0xcf, +0xc4,0xa7,0xc7,0x66,0xc4,0x64,0x9a,0x27,0xf3,0x61,0x3e,0x87, +0xfd,0x42,0xfc,0x39,0x7c,0x69,0x0e,0x65,0xcc,0xe6,0x0d,0xb3, +0x0d,0x70,0x9a,0x5d,0xb6,0x25,0x7f,0x2b,0xbb,0x3b,0xaf,0xad, +0x90,0xc3,0xb9,0xc2,0x5b,0x56,0xcc,0x6f,0x23,0x94,0x55,0xf8, +0x50,0x92,0x8b,0x0b,0xd0,0x84,0x58,0xd5,0x5a,0x96,0x99,0x15, +0xb9,0x3b,0xf3,0xad,0x9e,0x5d,0x6e,0x0d,0x74,0x32,0xe9,0x6e, +0xfd,0x77,0xe4,0xcc,0x52,0x43,0x5c,0xc6,0x6a,0x66,0x49,0x91, +0x33,0x55,0x4c,0x63,0x7c,0x6a,0x95,0xca,0x73,0xd6,0x28,0x55, +0x86,0xa3,0xd8,0x4e,0x58,0x41,0x7a,0xcc,0x7a,0x74,0xaa,0x77, +0x34,0x94,0x49,0x59,0x96,0x6f,0x18,0x75,0x48,0x1b,0xbc,0x61, +0xe4,0xde,0x8d,0xfa,0x81,0xbc,0x5b,0xd6,0x39,0x7c,0x80,0x91, +0xdd,0x76,0x5d,0x4b,0x8a,0xbf,0x73,0xe4,0xce,0x44,0xa3,0x06, +0xa7,0x36,0xce,0xcf,0xf1,0x37,0xe3,0x7f,0xf3,0x85,0x89,0x0e, +0x2f,0x9c,0x39,0x55,0x71,0x22,0x81,0x4f,0x3d,0xf8,0x09,0x0e, +0x08,0xd3,0x7b,0x86,0x06,0x8d,0x84,0xf1,0x78,0x00,0x5f,0x19, +0xc1,0x2b,0x8c,0x14,0xd5,0x0c,0xff,0xfa,0xba,0x57,0xd4,0xa0, +0xb2,0xe6,0x88,0x14,0xad,0xaa,0x6f,0x71,0x63,0x88,0x63,0xf6, +0x9f,0x0e,0x3c,0x13,0x78,0x26,0x81,0xae,0x2e,0x59,0x3a,0x8c, +0xc9,0xfe,0x9c,0xcf,0xa1,0x7d,0x9f,0xbc,0xbf,0x86,0x85,0x22, +0x31,0x87,0xfc,0x20,0x45,0xb1,0xad,0x4f,0x02,0x57,0xae,0x41, +0x54,0x35,0x81,0xb7,0x6c,0x18,0x6a,0xef,0xc5,0xd9,0xda,0xa8, +0xa0,0x07,0x13,0x3d,0x41,0x29,0x10,0x96,0x18,0x84,0xd1,0x39, +0xbb,0xb9,0x1a,0x17,0x3d,0xc2,0x19,0xa6,0x9b,0xb6,0x68,0xab, +0xed,0x28,0x36,0xe2,0xdf,0xdd,0x79,0x78,0xbf,0xe7,0x59,0xf3, +0xa6,0xbe,0xad,0x4f,0xb7,0x97,0x75,0xf2,0x1a,0x03,0x06,0x0f, +0xed,0x1f,0x73,0xe2,0x3b,0x81,0x21,0xb0,0x1a,0xf6,0xe0,0x6a, +0xd6,0x72,0x0c,0x35,0x7e,0x7b,0x60,0x35,0x8b,0x9e,0x63,0xe8, +0x01,0x65,0x66,0x47,0xc8,0x8e,0xc3,0xdb,0xc2,0x38,0xc9,0x29, +0x68,0x01,0xe5,0xca,0x37,0xc0,0x4d,0x9c,0x03,0xac,0x0e,0x15, +0x62,0x53,0xd1,0xed,0x06,0xcc,0x67,0x85,0x56,0x29,0x1e,0x59, +0x55,0x17,0x55,0xc5,0x7b,0x46,0xc2,0x3d,0x51,0x81,0xae,0xb2, +0x54,0x2a,0x9b,0x36,0x33,0x8d,0x69,0xc9,0x54,0x36,0x31,0x70, +0xa1,0x87,0x1d,0x0a,0xc7,0xad,0xe4,0xb6,0xe5,0x80,0x71,0xb7, +0x6e,0x63,0x2d,0x6f,0xd4,0xb7,0xe5,0xd6,0x4e,0x29,0xb0,0xab, +0x1c,0xda,0x09,0x68,0x0b,0x53,0x7a,0xc4,0x29,0xb0,0x95,0x95, +0x8c,0xdf,0xf8,0xd4,0xcf,0x79,0xbe,0x1d,0x3c,0xee,0x35,0xc6, +0xc2,0x10,0x4c,0x3e,0x13,0x6b,0x3c,0x5c,0x47,0x67,0x62,0x14, +0x28,0x5c,0xe3,0x70,0x83,0x38,0xc7,0x48,0x98,0x83,0xda,0xe2, +0x26,0x23,0x61,0x13,0x86,0xe1,0xd1,0xe1,0xe4,0x7d,0x6e,0x4c, +0x5b,0x66,0x7a,0x9b,0x0a,0xf8,0x09,0x6a,0x3d,0x52,0x14,0x1a, +0xd5,0xe5,0x3d,0xe2,0x1a,0xb0,0x10,0xa6,0xf5,0x88,0xd3,0x60, +0x83,0x2e,0x6e,0xc0,0x40,0xc9,0xc7,0xa4,0x3e,0xa6,0xc6,0x28, +0x9e,0xf7,0xc3,0x31,0x46,0x38,0x69,0xcd,0x8a,0x46,0x57,0xbe, +0xaa,0xa6,0xb4,0x2d,0xbf,0x8b,0x83,0x48,0xb4,0x10,0xe7,0x19, +0x51,0xf3,0x60,0x81,0xe3,0x90,0xe0,0x28,0x74,0xc1,0xd1,0x45, +0x16,0x3c,0x1c,0x87,0x7f,0xc0,0x04,0xe0,0x52,0x61,0x22,0x25, +0x57,0x8b,0x6e,0x0a,0x8b,0xa4,0xcd,0xd6,0x89,0xa0,0x42,0x69, +0xd5,0x71,0xfc,0x47,0x21,0x6d,0xa6,0x3b,0x8c,0x44,0x65,0x18, +0x65,0x2a,0x05,0xde,0xfc,0xa5,0x4b,0x01,0xb4,0x83,0x02,0x9d, +0x1e,0xb8,0xb7,0xd3,0xbf,0x6c,0x32,0xc1,0x4d,0xb3,0xd8,0xd8, +0xea,0x6b,0x35,0x97,0xab,0xa9,0x72,0x3e,0x88,0x23,0xf7,0xa2, +0xcc,0x6a,0x7d,0xbd,0x0f,0x9f,0x55,0x91,0xde,0x90,0xdc,0x22, +0xe5,0x45,0xd4,0xc3,0x20,0x33,0x70,0x62,0x3c,0xf0,0x2b,0x35, +0xaa,0xc8,0x94,0xe7,0x96,0xda,0xf2,0xb0,0x0c,0xc6,0xdd,0x7b, +0x9b,0x0e,0x93,0xe9,0x77,0xaa,0x75,0x09,0x6a,0xd1,0x4c,0x3a, +0x4e,0x6b,0x51,0x07,0x82,0x13,0x4a,0x5b,0x78,0x1c,0xfb,0x65, +0x33,0xc8,0xbc,0x61,0x0c,0x27,0xa6,0x42,0x28,0xb9,0x5a,0x77, +0xb9,0x21,0xb2,0x7e,0x38,0x5d,0xef,0x57,0x66,0xf0,0x15,0x73, +0x04,0x35,0x5d,0x71,0xc5,0x1a,0x64,0x2b,0xdd,0xf8,0x9e,0xa7, +0x95,0x1f,0xb3,0x29,0x59,0x82,0x99,0xcc,0xc9,0x55,0x61,0x1b, +0xf6,0x6b,0x79,0x15,0x78,0x14,0xb8,0xe7,0x7a,0x39,0xf1,0x35, +0x9e,0x65,0xee,0x25,0x7b,0x5c,0xe6,0x18,0x2e,0x53,0x5f,0x57, +0x45,0xed,0xc4,0x7a,0xd8,0xf0,0x1c,0x9c,0x32,0x20,0x8d,0xab, +0xa5,0x84,0xff,0x95,0xfc,0x11,0x91,0xc2,0x85,0xf6,0x38,0xef, +0xab,0xf3,0xae,0xd9,0x53,0xe5,0xe0,0xc1,0x57,0xd8,0x17,0xd9, +0xe7,0xda,0x3b,0x38,0xd8,0xb8,0x59,0xec,0xcd,0x33,0xe7,0xdb, +0x4a,0x1a,0x2b,0xeb,0x6a,0x33,0xec,0x92,0x6d,0x63,0xad,0x76, +0xad,0xd0,0xd6,0x5f,0x64,0x94,0x6b,0xce,0xff,0xdc,0x7e,0xe7, +0x46,0xcf,0x13,0x2e,0xda,0xfe,0x92,0x8d,0x95,0x12,0x6e,0xba, +0xe0,0x69,0xbb,0x72,0xba,0x26,0x93,0xa4,0x2b,0xbb,0xc7,0x00, +0xdb,0xdd,0x0f,0xfb,0x60,0x85,0x0f,0xcc,0xa0,0xf3,0x53,0xa5, +0xba,0xa1,0xbc,0xb5,0xb8,0x9b,0x13,0x2e,0xe1,0x54,0x82,0x4a, +0xbd,0x60,0x82,0x17,0x3f,0xeb,0xcd,0xc6,0x23,0x68,0xd2,0x03, +0x4a,0xac,0xf0,0x15,0x3a,0x93,0xe1,0xe4,0xac,0xe2,0x24,0x33, +0x61,0x92,0xb8,0x0a,0xfd,0xd8,0x24,0x53,0x19,0xd8,0x30,0x8d, +0x52,0x06,0x08,0x61,0x11,0x4c,0xed,0x60,0xb1,0x1b,0xdf,0x10, +0xb7,0x41,0x9b,0x47,0xf6,0x5d,0xf6,0x94,0x3a,0x98,0x34,0x6c, +0xad,0xd8,0x38,0x1c,0x14,0x26,0x8d,0x40,0x0a,0xe8,0xc2,0xa9, +0x4e,0xa4,0x74,0xd2,0x08,0x37,0xe2,0x14,0x36,0xbe,0x2a,0xa6, +0xfa,0x4a,0x95,0x45,0x0c,0x1f,0x8c,0x23,0xdd,0x70,0x94,0xf1, +0xfa,0x7a,0x4f,0x3e,0xb7,0x22,0xbb,0x21,0xad,0x45,0xda,0x5a, +0xd7,0xc5,0x2b,0x66,0x70,0x94,0x71,0xc5,0x71,0x73,0xe8,0x10, +0x2c,0x50,0x2d,0xb1,0xe6,0x29,0xe3,0xe6,0x5e,0x7c,0xc8,0x1c, +0x1e,0x82,0x25,0x3d,0xc2,0x92,0x68,0x26,0x03,0xbf,0xbe,0xbd, +0x8c,0x9e,0x3c,0xae,0xac,0x95,0x47,0xc5,0xcf,0x2b,0x41,0xe6, +0x0e,0x0c,0x35,0x44,0xa8,0x46,0x5c,0x0e,0x3a,0x1d,0x74,0x3a, +0xcc,0x41,0xea,0xaf,0x9d,0x0b,0xe9,0x8c,0x99,0xd0,0x25,0x6d, +0x3c,0x4f,0xc6,0xe3,0xf8,0x95,0x29,0x7c,0x85,0xd5,0xac,0x73, +0xa8,0x53,0x98,0xe3,0xd1,0x78,0xba,0x92,0xd9,0x92,0x3f,0xab, +0x7e,0x69,0xa2,0x4b,0x69,0xd7,0xf7,0x04,0xa2,0x9a,0x30,0xea, +0x19,0x1c,0x84,0x97,0x78,0xf0,0x3e,0xa4,0x37,0x61,0xfa,0x2b, +0xe6,0xe5,0x95,0xe7,0x31,0xf7,0xe2,0xfd,0x1b,0x78,0xa4,0x44, +0xdc,0x2a,0x14,0xb7,0x7e,0x1b,0x6b,0xc5,0x0f,0x5c,0x78,0x24, +0x15,0x4a,0xd8,0x80,0x31,0x36,0x10,0xa3,0x8d,0xfb,0xf0,0x25, +0xec,0xd3,0xc0,0x44,0x1b,0x48,0x5c,0x8b,0x95,0xd6,0x82,0xd8, +0x8c,0x99,0xac,0x38,0x43,0xf8,0x86,0x9c,0x8a,0x3d,0x16,0x79, +0x54,0xca,0x9e,0x74,0x1a,0xbe,0x82,0x71,0x5d,0x38,0x0e,0x36, +0x31,0xf5,0x09,0x35,0x49,0xa5,0x69,0x3e,0x0d,0xfc,0x26,0x17, +0x9c,0xe8,0x31,0x37,0x2c,0xd1,0x92,0xaf,0x8a,0xae,0xbf,0x56, +0x1f,0xcb,0xe1,0x12,0x5c,0x6d,0x02,0x8b,0xd9,0xe3,0x33,0x9d, +0x71,0xd4,0x2c,0x9c,0x5a,0x6a,0xc3,0xbf,0xfa,0xbd,0xe0,0x79, +0xd4,0x0b,0x7a,0xcb,0xb6,0xed,0x82,0x9e,0x94,0x38,0x29,0xf2, +0xb4,0xf2,0x1b,0xdc,0x58,0x53,0x22,0x83,0x33,0x90,0x4e,0xa9, +0x81,0x3a,0xa5,0x06,0xfe,0x2b,0xc8,0x5b,0xd0,0x5a,0xc1,0xe2, +0x21,0x3b,0xb2,0x18,0xd5,0xdf,0xd3,0x23,0x8b,0xc9,0x7b,0xd0, +0x5a,0xcc,0xfe,0xbf,0xb8,0xad,0x33,0x36,0x70,0x66,0x2d,0xa6, +0x59,0x0b,0xef,0x86,0x6f,0xeb,0x8d,0x10,0x43,0xb0,0x39,0x14, +0x55,0xed,0x51,0xa6,0xdc,0xea,0x5a,0xf2,0x2e,0xe9,0x97,0x2b, +0xb0,0x54,0x11,0xa6,0x63,0xca,0x3c,0x26,0xd1,0x48,0xf6,0x98, +0xa9,0x4b,0xa6,0x8a,0x57,0x5e,0x87,0xa7,0x58,0x30,0x94,0x12, +0xb4,0x4c,0x03,0x53,0x98,0xc6,0xa0,0xa2,0xb8,0x8b,0x5c,0xec, +0xb8,0x70,0xe3,0xbe,0x12,0x4c,0x43,0x33,0x06,0x7e,0x07,0xfd, +0xff,0x7d,0xfb,0x05,0xef,0x28,0xb2,0x6a,0x47,0x42,0x96,0x95, +0x0a,0x78,0xc2,0xcc,0x56,0x9c,0x49,0x57,0xe2,0xcc,0x36,0xba, +0xbc,0xbf,0x81,0x89,0xad,0x74,0xd9,0x4b,0x62,0x0e,0xe7,0x58, +0x52,0x2e,0xfd,0x0d,0xaa,0x5b,0xc0,0x5a,0x71,0x0a,0xbb,0xbb, +0xe4,0x60,0x5d,0xb3,0x12,0xac,0x36,0xc3,0x15,0xac,0x6a,0xb8, +0xb1,0xa6,0xae,0x72,0x8a,0x69,0x7b,0x5d,0x49,0xd5,0x95,0x77, +0x8a,0xd1,0x8c,0x46,0xf4,0x97,0x15,0x70,0x74,0xba,0x70,0x92, +0x89,0xee,0x94,0x89,0x35,0x60,0x44,0x02,0x28,0xa8,0xef,0x3f, +0x7b,0xcd,0x8c,0xbf,0x1f,0xf3,0x5b,0xc6,0xed,0x14,0x0e,0x67, +0xb4,0x09,0xb5,0x10,0xc2,0x1e,0x5f,0x18,0xb0,0xc4,0x43,0x63, +0xef,0x83,0xfd,0xcf,0x8f,0xbc,0xb6,0x3a,0xce,0x27,0xcd,0x2c, +0x98,0x5f,0xb7,0x7a,0xaf,0x91,0x9b,0xad,0xd3,0xde,0x62,0x3b, +0xbe,0xba,0xa4,0xbc,0xa1,0xb0,0xbd,0xd8,0xbc,0xd2,0xae,0x7e, +0x77,0x7e,0x0b,0x6f,0x5b,0xe1,0xda,0xe8,0xd5,0xd1,0xf8,0xa9, +0x10,0xc6,0xc5,0x52,0xd8,0xa9,0xc1,0xa2,0x9f,0xa1,0xa3,0x55, +0x7c,0x65,0xd9,0xc1,0xb6,0x51,0xde,0x46,0x5b,0x3b,0x01,0xbf, +0x61,0x6d,0xc6,0xd0,0x56,0x4e,0x80,0x6f,0x58,0x34,0x1a,0x43, +0x0f,0x4c,0x63,0x7c,0x8e,0x3b,0x47,0xd8,0x1f,0xe7,0x14,0xbe, +0x93,0xe7,0x92,0xee,0xdd,0x8d,0xae,0x4d,0x8e,0xa5,0xf5,0xbc, +0x7d,0x8d,0x59,0xad,0x69,0x31,0x27,0x7f,0xe6,0x41,0x86,0x34, +0xcc,0x60,0x3f,0xfd,0x1f,0xb3,0x21,0xed,0xae,0x3b,0xc2,0x89, +0x9d,0x3d,0x72,0x6d,0x2a,0xd4,0xbf,0x81,0x23,0x52,0xd0,0xb1, +0x74,0xd9,0xcf,0xf4,0xaa,0x43,0xac,0x05,0xe9,0x75,0xed,0xb5, +0x69,0xb3,0x2e,0xaf,0xe3,0xed,0x1a,0x76,0xb6,0xeb,0x97,0x73, +0x82,0x96,0x03,0x39,0x83,0x63,0xfd,0x0d,0xd4,0x75,0xcb,0x1c, +0xf8,0x5f,0x06,0x8b,0x5f,0x46,0x02,0xcf,0x7d,0xc6,0x95,0x8c, +0x69,0x66,0xd0,0x2d,0x65,0x0a,0x90,0x23,0xc4,0x13,0xf0,0x91, +0x11,0x4e,0xa0,0x1e,0x99,0xc7,0xec,0x3b,0x26,0x55,0xb0,0x5b, +0x08,0x33,0xd9,0xa1,0xcb,0xa2,0x48,0x6e,0xc3,0xc8,0x06,0x98, +0x9e,0xfd,0xd9,0x34,0x85,0xf7,0xc5,0xd1,0xae,0x38,0x56,0x77, +0x3e,0x07,0x83,0xb0,0x9d,0xd0,0xd3,0x47,0x89,0x27,0xa4,0xb8, +0x0a,0xb9,0x2e,0xc1,0x78,0x26,0xb7,0x3c,0xab,0x32,0xa3,0xca, +0x24,0x83,0x0f,0x76,0xf0,0xb7,0x77,0xb7,0xe2,0xc4,0x3b,0x66, +0xc2,0x7c,0xe6,0x98,0xf7,0x11,0xcf,0xd0,0xbd,0x1c,0xc6,0x8b, +0x70,0xa3,0x53,0xb8,0x6d,0xda,0x2f,0x80,0xc8,0x30,0x09,0xc5, +0xb1,0x45,0x57,0x0b,0x38,0x61,0x27,0x23,0x3e,0x79,0x4d,0x82, +0xcb,0xf7,0x95,0xfa,0x96,0x58,0xfb,0xf2,0xd7,0xf7,0x64,0x79, +0xa6,0xed,0xe1,0xe6,0xe3,0x13,0x02,0xa3,0x84,0xdb,0xd4,0xb0, +0x8b,0xb7,0x71,0x1d,0x81,0x31,0xf4,0xf3,0x18,0xe9,0xb3,0x16, +0x81,0xf1,0xf4,0xf3,0x78,0x0a,0x82,0x2e,0xf2,0xef,0x89,0x27, +0x9a,0x9a,0xe2,0x82,0x55,0xc8,0x51,0x86,0x99,0x99,0x9f,0x53, +0x99,0xd5,0xc8,0x89,0xd7,0x3b,0xe5,0x6a,0x6c,0xce,0xfd,0xf4, +0x67,0x09,0xaf,0x39,0x41,0xb6,0x95,0x40,0x79,0xb3,0x38,0x64, +0x0d,0x59,0xbb,0xb0,0x0d,0x97,0x76,0x86,0x81,0x5d,0x1d,0xda, +0x3d,0x80,0xb3,0x18,0xdf,0x0d,0xf1,0x10,0xb7,0x15,0x7d,0x1c, +0xc0,0x27,0xa1,0x0b,0x96,0xe2,0x00,0x83,0x1d,0x78,0x9d,0x0c, +0x9f,0xc0,0xc0,0x27,0x07,0x02,0x3e,0x75,0xe8,0xc3,0x50,0x12, +0xbb,0x99,0x84,0x07,0x85,0x07,0x1d,0x09,0xe2,0x28,0x25,0x68, +0xea,0x86,0x0b,0xa0,0x80,0xe1,0x9d,0x10,0x4e,0xad,0xc3,0xf0, +0xdb,0x7c,0x34,0x58,0xc3,0xc4,0x5b,0xc9,0xee,0x33,0x15,0x29, +0xc9,0x95,0x2a,0x10,0x82,0x6f,0xd8,0xb8,0xf4,0xb8,0xcc,0x98, +0x0c,0x0e,0x5e,0x34,0x0f,0x6d,0xb5,0x66,0x14,0xe4,0x2f,0xe5, +0x8f,0x09,0x3a,0xeb,0x61,0xdd,0x21,0x8c,0x3f,0x97,0x68,0xca, +0x43,0xdc,0x05,0xe8,0x4f,0x03,0x97,0x9b,0xdc,0x31,0x6c,0x21, +0xa8,0x46,0xad,0x36,0x3a,0xb3,0x25,0x8d,0xb9,0x1d,0x39,0xb7, +0x8c,0x52,0xf8,0x40,0x1d,0x5f,0x03,0x7b,0x03,0x4e,0x7c,0x2e, +0x05,0x7c,0xab,0x31,0xc2,0x92,0x37,0x24,0xbc,0x3e,0xb4,0xf2, +0x60,0x91,0xc9,0x61,0x3e,0xc5,0x3d,0xd1,0x31,0x86,0xd2,0xa2, +0x9d,0x29,0x24,0xb4,0xe6,0x60,0xd9,0x81,0xeb,0x66,0x07,0xf9, +0x34,0xaf,0x14,0xd7,0x04,0x17,0x4e,0xbe,0x5d,0x6c,0x27,0xb8, +0x3a,0x17,0xc7,0x17,0x2e,0xaa,0xf9,0xd4,0x37,0x38,0xd8,0xf0, +0x92,0xeb,0x14,0x9f,0x9a,0x09,0x97,0x59,0xc7,0xad,0x5b,0xf5, +0xd5,0x2c,0x37,0xd4,0xea,0xb6,0xe9,0xdf,0xa6,0x5a,0xae,0x77, +0x57,0xaf,0xe5,0x7d,0xc7,0xf9,0x8e,0x38,0xc1,0x03,0x95,0xf7, +0xa7,0x52,0xec,0x5b,0x9e,0x03,0x33,0x6a,0x60,0x74,0x17,0x8c, +0x34,0x03,0xc5,0xdd,0xb0,0xcb,0x93,0xa2,0x35,0x39,0x47,0x34, +0x19,0xef,0x13,0x57,0x4a,0x55,0xe0,0x3d,0x7c,0x25,0xa8,0x89, +0x8e,0xa2,0xda,0x3f,0xd9,0xb3,0xe8,0x68,0x4e,0x81,0x58,0x7b, +0x71,0x91,0x15,0x0f,0xe6,0x7f,0xde,0x02,0xc5,0x4b,0x10,0xcc, +0xd1,0x69,0xf4,0x3b,0xa3,0x9d,0x1d,0xdc,0xab,0xfc,0x23,0x53, +0x1d,0x1f,0x57,0xab,0x02,0xb6,0xac,0x79,0xb2,0x4c,0x2c,0x58, +0x4c,0xe4,0x33,0xb0,0x78,0xe8,0x54,0xef,0x67,0x56,0xae,0x23, +0x0c,0x51,0xbc,0xc0,0x57,0xd0,0xcc,0xe2,0x50,0x00,0x81,0x35, +0xe2,0x75,0x5c,0xc3,0x48,0x66,0xc1,0x82,0x88,0x17,0x99,0x6b, +0x05,0x57,0x0a,0xa2,0x8b,0x38,0x61,0x6b,0xa7,0xb8,0x8e,0x89, +0xba,0x1e,0x79,0xfd,0x52,0x21,0x9d,0xbd,0x9d,0xe2,0x46,0xe6, +0x62,0xce,0x85,0x9c,0x0b,0xb9,0x86,0x17,0xf9,0x73,0x7e,0xe7, +0xf6,0x7d,0xeb,0xcf,0x89,0xa3,0x4d,0xe1,0x3f,0x98,0x33,0x5e, +0x67,0x7c,0x4e,0xfb,0x70,0xf8,0xdc,0x14,0x06,0x98,0x93,0x9e, +0xc7,0xbd,0x8e,0xd3,0x5f,0x3e,0x48,0xf5,0x66,0x8f,0xec,0x0d, +0xf5,0x3c,0xe4,0xcd,0xe1,0x45,0x13,0xf0,0x62,0x4c,0xd6,0x6c, +0xd6,0x5a,0xb4,0xa3,0xd2,0x86,0x52,0xb5,0x97,0xdf,0xff,0xd8, +0xff,0x99,0xb2,0x67,0x0c,0xc1,0x1d,0xc3,0x9b,0x8e,0x6a,0xff, +0xae,0x6c,0xef,0x25,0xf9,0x95,0xaf,0xfa,0x0d,0xf4,0x59,0xb1, +0x5f,0x95,0x24,0x16,0x24,0x14,0xc5,0x52,0x69,0x97,0xaf,0xca, +0xe0,0xf7,0x38,0x9d,0x34,0xee,0x6e,0xb2,0xad,0xb0,0x69,0x94, +0x12,0x01,0x58,0xb6,0x58,0x96,0x53,0x52,0xdc,0x2b,0xcc,0x22, +0x81,0x11,0x01,0x11,0xfe,0xc7,0x38,0x08,0x85,0x51,0x9d,0x38, +0x0a,0x0c,0x8d,0xd1,0x10,0x27,0x9a,0xc2,0x44,0x8c,0x62,0x1d, +0x42,0x1d,0xff,0x73,0xc3,0xae,0x2a,0xb6,0x72,0x38,0x22,0x5b, +0x26,0x55,0xb6,0x7e,0xc7,0xd4,0x27,0xa6,0xd6,0xa8,0x40,0x3b, +0x9b,0x17,0x4b,0x7f,0xe2,0x38,0xe1,0x47,0x21,0x9c,0xe0,0x4c, +0x77,0x74,0x0a,0xc4,0xdd,0xa7,0xe3,0xcc,0x78,0x70,0xb8,0x02, +0x5e,0x59,0xa0,0x56,0xce,0x65,0x0d,0xd5,0x91,0xc5,0xd9,0xea, +0xa5,0x5b,0xea,0xbe,0xeb,0xeb,0x1c,0x2c,0x79,0xc3,0x15,0x74, +0x83,0x1e,0x9d,0xfb,0x25,0x9d,0x45,0xf7,0xd2,0x3a,0x2d,0x53, +0xf9,0x60,0x43,0x8f,0x0d,0xce,0xfa,0x9c,0xb8,0x08,0xf5,0xba, +0x76,0x0b,0xaa,0x8c,0xf7,0x0e,0x1b,0x83,0x2d,0x96,0x7a,0x75, +0x66,0xad,0x76,0xdd,0xd6,0x3e,0x7c,0xbd,0x61,0x9b,0x45,0x9f, +0x9d,0xa6,0xd3,0x22,0x77,0x54,0x08,0xa0,0x34,0x1f,0x14,0xf3, +0xff,0x59,0xf5,0x7d,0xdb,0x33,0xcb,0x9f,0x5d,0x60,0x0c,0xed, +0xa8,0x73,0xf2,0xe9,0x24,0xa2,0x26,0xb0,0xf7,0x60,0x89,0xd5, +0x41,0x3a,0xab,0x32,0x0d,0x62,0x5d,0x39,0xfc,0x3a,0x9a,0x84, +0xd5,0xec,0xef,0x38,0x54,0x64,0x1d,0xc2,0xa7,0x78,0xa4,0x9b, +0xc7,0xb9,0x70,0xc2,0x3a,0xdc,0x49,0x44,0x2f,0x18,0x2d,0x78, +0x51,0xc5,0xff,0x54,0x78,0x4a,0xac,0xe0,0x79,0x0b,0x55,0x9c, +0x23,0x60,0x6e,0x2b,0xce,0x95,0x1c,0x0e,0x87,0x41,0x77,0x04, +0x2b,0x6c,0xbd,0x41,0xc0,0xd4,0x18,0x4d,0x71,0xa9,0x09,0x2c, +0x15,0xbf,0x97,0x4c,0x3b,0xed,0xe3,0x11,0x4c,0x6d,0x32,0xbd, +0x69,0xe1,0xd9,0x93,0x2e,0x76,0xc8,0x11,0x75,0xc8,0xc9,0xc4, +0x93,0xe7,0xc2,0x8f,0x87,0x47,0x50,0x4b,0xa8,0xf4,0xae,0x75, +0x29,0x18,0x9b,0xa3,0x31,0xb2,0x96,0xf4,0xc4,0x70,0x9c,0xba, +0x17,0x55,0xb5,0x70,0x7c,0x99,0x2d,0xdf,0xf5,0x31,0xfd,0xf7, +0xc8,0xd7,0xd4,0xdc,0xc5,0xb4,0x0b,0x51,0x52,0x92,0xcd,0x8b, +0x67,0x94,0x3b,0x70,0x71,0x71,0x99,0x4c,0x08,0xc1,0xaf,0x48, +0xd8,0xfb,0x80,0x3f,0xbc,0x9f,0xda,0x1d,0xe0,0xaf,0xaf,0xcf, +0x52,0x4b,0x9a,0xcf,0x89,0x33,0xa1,0x84,0xa0,0x3f,0x94,0x83, +0x3f,0x4b,0xa9,0xca,0x26,0x02,0x63,0x41,0x07,0xc7,0x52,0xa1, +0x78,0x99,0xa4,0xd7,0x25,0xb7,0xc5,0x37,0x59,0x52,0x5d,0x6b, +0x1e,0xbc,0x33,0xd0,0x4c,0x33,0x54,0xe3,0x88,0xf6,0x09,0xe9, +0xf9,0xd3,0xd7,0x09,0xb0,0xbe,0xe8,0xcf,0xeb,0xa7,0x5b,0x79, +0xcf,0x63,0xbb,0x8f,0xb9,0x1e,0xe7,0x70,0x74,0x14,0x89,0x68, +0x38,0xd0,0x17,0x5c,0x67,0x7b,0x88,0x4f,0xb7,0x4b,0x37,0x8c, +0xb1,0xa3,0xa3,0xfd,0x11,0x04,0x12,0x75,0x30,0xea,0x60,0xe4, +0xa1,0x46,0x2a,0x06,0x07,0xf6,0x0f,0x04,0x76,0xdb,0x1f,0xe4, +0xe3,0xf6,0xc5,0x78,0xc7,0x78,0x3a,0x9c,0xb2,0x3f,0x6d,0x77, +0xe6,0xc6,0xab,0x3b,0x52,0xc8,0x1a,0x6b,0x93,0xc7,0xfb,0x19, +0x78,0xe8,0xb8,0x1b,0x86,0x64,0x06,0x67,0x05,0x65,0x96,0xf7, +0x95,0xdc,0xcf,0xbd,0x63,0x95,0xc9,0xef,0xd7,0xf5,0xd6,0xf1, +0x34,0x0b,0x4d,0x0c,0x8b,0x0f,0x93,0x76,0x93,0xda,0xec,0x5b, +0x2d,0x1a,0x4c,0x02,0xdd,0x02,0xdc,0x03,0xbd,0xbd,0xbf,0xf5, +0xfa,0xd6,0xfb,0xdc,0x65,0x33,0xbe,0xe3,0x52,0xd7,0xa5,0xce, +0xcb,0x9c,0xb8,0xa6,0x4b,0xd8,0xc0,0xe6,0x5d,0xca,0x8b,0xcc, +0x8d,0xe4,0x84,0x01,0x21,0x80,0xe0,0x24,0x2f,0x34,0x08,0x44, +0x83,0xe1,0xf9,0xb1,0xf3,0x0a,0x58,0x65,0xc1,0xf4,0x12,0x2e, +0x69,0xa8,0x81,0xac,0xce,0xdb,0x52,0xa6,0x57,0xf7,0xe0,0x66, +0xd3,0xe3,0xbc,0x1f,0xb8,0xfc,0x6e,0xd0,0x9d,0xcd,0x16,0x76, +0x15,0xdc,0x4b,0xe9,0xb4,0x4a,0xe1,0x43,0x8c,0xbc,0xd7,0xef, +0x36,0xe0,0xf0,0x3f,0x50,0xb7,0xd3,0x1d,0x7e,0x65,0x02,0x76, +0x39,0xeb,0xeb,0x9b,0x9b,0xd5,0xdb,0xb7,0xb9,0xf5,0xd8,0xf8, +0xf1,0x95,0xfa,0x0d,0xa6,0x1d,0xb6,0xbb,0x1c,0xd6,0xed,0x9e, +0xbb,0x2f,0x9b,0x72,0xe9,0x51,0x05,0x6f,0x6b,0x1e,0xb4,0xde, +0xb3,0x7a,0xe6,0xfc,0xd1,0x93,0x43,0x37,0xf9,0x4c,0x12,0x5e, +0x13,0x44,0x27,0x87,0xb5,0x34,0x39,0x32,0x86,0x27,0x87,0xec, +0x32,0x39,0x4a,0x27,0xc7,0xe1,0x22,0x9b,0x10,0x3e,0x59,0x9a, +0x1c,0xae,0x9c,0xc0,0x4a,0x93,0x63,0x09,0x9d,0x1c,0x4b,0x18, +0xf1,0x25,0x06,0x92,0x14,0xfd,0x38,0xed,0xab,0xdb,0x5b,0x92, +0xf9,0x63,0xb7,0x0f,0x0f,0x1e,0xa2,0x9a,0x39,0x13,0xeb,0x49, +0xf9,0xab,0xb4,0x8f,0xb1,0xbf,0x5a,0x5f,0xe5,0x23,0x56,0x1e, +0x58,0xb5,0x47,0x7a,0xaa,0xe9,0x2a,0x9f,0x4c,0x07,0xab,0x17, +0xfc,0xe1,0x03,0x6a,0xf5,0x40,0xa0,0xb8,0xe0,0xa6,0x30,0xb6, +0x65,0xa8,0xd8,0x0a,0x50,0x57,0x54,0xc4,0xc0,0x1e,0xd0,0x62, +0x7b,0xac,0x89,0x1d,0xec,0x6e,0x60,0x41,0x77,0x9a,0x1d,0x04, +0x36,0x48,0x49,0xa0,0xe7,0x93,0x7a,0xdc,0x6d,0xcf,0x0a,0x30, +0xad,0x1e,0x03,0xec,0x59,0xf8,0x0f,0x23,0xf2,0xaf,0xc9,0xe6, +0xc2,0x6a,0xe6,0xd4,0xfe,0x13,0xfe,0x11,0x81,0x1c,0x3e,0xc6, +0xc1,0x5e,0x48,0x87,0x8d,0x18,0xdd,0x0d,0xd1,0xff,0xf9,0x66, +0x42,0xf5,0xc2,0xf4,0x61,0x9f,0xd3,0x51,0x54,0xf3,0xa4,0x37, +0xa8,0x50,0x45,0x3d,0x91,0xbd,0x9a,0x75,0x25,0xe7,0x72,0xa6, +0xb4,0x77,0xa5,0xf0,0x7c,0x13,0xb9,0x75,0x43,0x6e,0xae,0x7f, +0x4b,0xfe,0xaf,0xa1,0xc7,0xcc,0x2d,0x23,0x22,0x37,0x1f,0xda, +0x39,0x64,0xce,0x08,0x13,0xe5,0x2c,0xd1,0xc5,0x09,0x0c,0x5a, +0x2c,0xd3,0x44,0xcd,0x99,0xca,0xa5,0x66,0xb0,0xe4,0xf7,0x9f, +0x1f,0x46,0x83,0x2a,0xe5,0x0f,0x57,0x71,0xde,0xa7,0x2d,0xb0, +0x54,0xb5,0x98,0xea,0x8c,0x2d,0x30,0x42,0xed,0x21,0x58,0x28, +0x29,0x50,0xae,0x6e,0x4f,0x84,0x1a,0x7d,0xb1,0x9f,0xdd,0x15, +0x9c,0xa6,0x0f,0x15,0xbf,0xc9,0x30,0xe3,0xc6,0x5f,0x33,0xf5, +0xc5,0x07,0xac,0xa0,0x6e,0x4f,0x7e,0x82,0xd9,0x0d,0xa0,0x91, +0x02,0xee,0x5c,0xa3,0x68,0x65,0x2c,0x7c,0xcd,0x86,0xe2,0x76, +0x77,0x9c,0xbb,0x19,0xa7,0x68,0xc3,0x94,0x3d,0x30,0xc3,0x0f, +0x56,0xe8,0x87,0xf2,0xd7,0x71,0x6b,0x3d,0x2e,0x7e,0x89,0xdf, +0x98,0x6e,0xde,0xba,0x7d,0xf1,0xae,0x12,0x23,0xfe,0xa7,0xdb, +0x83,0xf7,0x7a,0x9e,0xb6,0x6e,0xbe,0xb9,0xfd,0xf9,0x4e,0xaa, +0x0c,0xd5,0xef,0xea,0xdd,0xb3,0x7e,0x48,0xa7,0xe6,0x68,0x41, +0x9f,0xe0,0x91,0x83,0x38,0xce,0x68,0x96,0x72,0x87,0x95,0xec, +0x26,0x8c,0x4d,0x07,0x65,0xb8,0xa4,0x04,0xbd,0x72,0x8d,0xa1, +0x23,0xa8,0xcf,0x26,0x98,0xc8,0xfe,0x4e,0xc9,0xda,0xa2,0x22, +0xcf,0x1b,0xaa,0x67,0xbf,0x88,0xf3,0x88,0xf0,0xa2,0x0d,0xd3, +0x7f,0x87,0x13,0x6d,0x78,0x42,0x5a,0xbe,0x07,0x2d,0xe0,0xe0, +0x3c,0x8c,0x65,0xee,0x51,0xa8,0xc3,0x81,0x9e,0xdb,0x82,0x22, +0x44,0xb2,0x74,0x14,0x6c,0xa9,0x6c,0x84,0xe7,0xa8,0x4a,0xa9, +0x57,0x9a,0x7c,0x90,0xe8,0xcd,0x11,0x95,0xd0,0xad,0x17,0x16, +0xc9,0x0f,0xe0,0xa2,0x5e,0xaa,0x33,0x17,0x31,0xd8,0x82,0x41, +0x44,0xa8,0xef,0x12,0xeb,0x19,0x2a,0xd2,0x8e,0x10,0x7c,0x25, +0x7d,0x23,0x15,0x03,0xab,0xff,0xce,0xc2,0x0b,0x77,0x05,0xd2, +0x3d,0xf4,0xce,0x98,0x15,0x9e,0xab,0x92,0xa7,0xdb,0x6f,0x6d, +0xe8,0x5f,0xd9,0x54,0xc2,0xeb,0xfc,0xa4,0x37,0xa8,0xf1,0x90, +0x13,0x75,0xbf,0x25,0x4e,0x2b,0x2d,0xb6,0xa9,0x6e,0xae,0x75, +0xe6,0x7f,0x7f,0xda,0xf7,0xb2,0xe6,0x27,0x7a,0x43,0x0f,0xa4, +0x70,0x43,0xd6,0x08,0x59,0xdc,0x6b,0x2e,0x1c,0x68,0x67,0xc1, +0x0b,0x67,0x93,0x0b,0x99,0xe7,0xb3,0xb2,0x94,0x24,0x9f,0x08, +0x0b,0x36,0xf8,0xfc,0x81,0x73,0x07,0x94,0x71,0x99,0x31,0x2c, +0x61,0xc2,0x30,0x52,0x0f,0x57,0xa1,0x0a,0x2a,0x56,0xd0,0xd5, +0xbc,0x0a,0x16,0xf6,0x83,0x71,0x3c,0xc4,0x72,0xe0,0xdb,0xcd, +0x1c,0x7a,0x45,0x02,0x1b,0x6d,0x06,0xf7,0x96,0x38,0x78,0xf1, +0xc5,0x2e,0x0d,0xbb,0xb2,0xac,0x39,0x71,0x81,0x0b,0x11,0xe7, +0xe0,0x79,0xd8,0x8c,0xef,0xe7,0x49,0x65,0x1f,0x1e,0x33,0x4d, +0x49,0xc9,0x8d,0x2a,0xf0,0x03,0x6c,0x64,0x8d,0x61,0x38,0xd8, +0xae,0x08,0x94,0xa9,0xa1,0xa2,0x1a,0xde,0xfb,0x44,0x74,0xa5, +0x8a,0x30,0xd9,0x58,0x9c,0xce,0x6a,0xa7,0x05,0xf4,0x28,0x0f, +0x30,0x0d,0x57,0xa5,0xec,0xdb,0x56,0xac,0x65,0x8a,0x8c,0x0a, +0x56,0x31,0x11,0x2e,0x90,0x3c,0x93,0x9c,0xad,0x29,0x26,0x6d, +0x59,0xfc,0xc1,0x36,0xdf,0xc1,0x7d,0x9d,0x1c,0xd6,0x9e,0x21, +0x21,0x6b,0x7c,0x36,0x5a,0x6e,0xaf,0x77,0xe7,0x3b,0x1f,0x17, +0xbd,0x49,0x95,0xee,0x49,0xb6,0x9d,0x00,0x0f,0x6a,0x8d,0xb0, +0x16,0x2e,0x28,0xc1,0x1b,0x7d,0xfc,0x9e,0xc5,0x33,0xd6,0xf4, +0xcb,0xc6,0xe1,0x37,0xca,0xf2,0xef,0x9c,0xc9,0x5f,0x53,0x74, +0xff,0x35,0x85,0xc5,0x8b,0x35,0x44,0xfe,0x58,0x6f,0xe8,0x31, +0x8b,0xa6,0xc2,0x1f,0xa4,0x60,0x6b,0x29,0x32,0xa9,0x4b,0xdb, +0x72,0xf9,0x43,0xdf,0xbb,0xc1,0x78,0xaf,0xbb,0x1c,0x9c,0x0e, +0x24,0x25,0xda,0xb5,0xc8,0x66,0x2c,0x69,0xcb,0xe3,0x0f,0xfc, +0x60,0x0f,0xe3,0xdd,0xef,0x51,0xa6,0x85,0x0f,0x48,0xf6,0xaf, +0xb1,0x30,0xe2,0xd2,0x6f,0x26,0x91,0xfc,0xb7,0x8b,0xc3,0x67, +0xfa,0x2f,0xa6,0xdf,0xea,0x2c,0x7f,0x4e,0xbc,0x71,0xbb,0x31, +0xae,0xd2,0xc0,0x31,0x65,0xa6,0x7c,0x5e,0x59,0x66,0x4d,0x6a, +0x3d,0x27,0x96,0x74,0xcb,0x97,0xb3,0x59,0xf7,0x53,0xbf,0x4b, +0x78,0xc1,0x41,0x2c,0xc5,0xe3,0x62,0x87,0x1a,0xe7,0x16,0xd7, +0xed,0xf6,0xeb,0xdc,0x97,0x05,0xa6,0x59,0xf1,0x9f,0x72,0xdf, +0xd5,0x3c,0x6d,0xbf,0x6b,0xff,0xcc,0xe5,0x47,0xcf,0xac,0x36, +0x7e,0x7d,0xde,0x96,0x62,0xbd,0xca,0xfe,0xd6,0xa6,0xbe,0xfc, +0x3b,0x5c,0x5f,0x1b,0xfe,0xc9,0xc4,0xa6,0xc7,0x64,0x5c,0xcd, +0x30,0x89,0xe5,0x7d,0xd4,0x75,0xd5,0x57,0x1a,0x17,0x3b,0xf2, +0xc5,0x19,0x05,0xb9,0x79,0x05,0x1c,0xb4,0xb7,0x13,0x7f,0x73, +0x67,0x6b,0x73,0x27,0xb3,0x2a,0xfb,0x3a,0xf7,0xe6,0x2b,0x31, +0x3c,0xee,0x19,0xe2,0x89,0x9c,0x98,0x0c,0x11,0x3a,0xfd,0x29, +0x8c,0x6e,0xdd,0x85,0x23,0x6c,0x70,0xac,0x5f,0x16,0x35,0xc7, +0x13,0x0a,0x80,0xed,0x18,0x1c,0xe0,0xf0,0x2e,0xb6,0x12,0xd8, +0x58,0x06,0xb3,0xef,0xfd,0xf9,0x87,0x5b,0x29,0x3f,0x67,0x21, +0xfe,0x43,0x0f,0xd7,0x79,0x72,0x07,0xd1,0x83,0x40,0x70,0x25, +0x58,0xbf,0x01,0x25,0x50,0x76,0x2d,0xe7,0x29,0xc1,0x9f,0x86, +0xbb,0x34,0xf0,0xe0,0x6e,0x7a,0x7f,0xfd,0xc2,0x59,0x72,0x35, +0xf2,0x62,0xf4,0x49,0x65,0x60,0xe7,0x55,0x54,0x22,0xf3,0x7b, +0x78,0x4c,0xc4,0x99,0xe3,0xc7,0x15,0x8f,0x1c,0x95,0x9d,0xba, +0x05,0x4b,0xda,0x71,0xc9,0x1f,0x4c,0xfb,0x95,0x96,0x98,0xaa, +0xf8,0xc0,0x46,0x7e,0x91,0x0f,0xce,0x0a,0xc3,0xe9,0xa7,0xa8, +0xb6,0xe9,0xba,0xd4,0x13,0xd9,0x15,0xcd,0x2d,0x46,0x1b,0x73, +0xd0,0x61,0x43,0x74,0x8c,0x36,0xe0,0xb8,0x35,0xe5,0xf6,0x3c, +0x4c,0xfd,0x50,0x7c,0xff,0xca,0x5d,0x2e,0x1a,0xab,0x7a,0x18, +0x50,0xbf,0x4c,0x60,0xe6,0x1f,0x37,0x1f,0xc7,0xc0,0x54,0x4e, +0xca,0xfd,0xc1,0xdf,0xd1,0x00,0xb5,0x39,0xa5,0x54,0x5f,0xea, +0xc2,0x04,0xb3,0xb7,0xb0,0x48,0x09,0x56,0xea,0xe1,0x4a,0x16, +0xe7,0x1b,0xaf,0xc6,0x4d,0x38,0x5e,0x59,0x70,0x10,0xcc,0x49, +0xc8,0x56,0xdf,0xed,0x6e,0x06,0x4d,0x01,0x7c,0xcd,0xdd,0xfc, +0x07,0xa9,0xf7,0x39,0x71,0x3b,0x86,0x92,0xd2,0x5b,0x39,0x2f, +0xe2,0x1f,0x59,0x26,0xf0,0x47,0x36,0xfb,0x6f,0xf5,0xd8,0xc5, +0x79,0xe1,0x43,0xd2,0xee,0xde,0xe5,0xd8,0xe8,0x50,0x59,0xc5, +0x5b,0x36,0x5a,0x54,0x99,0x96,0x72,0xe6,0x98,0x4b,0x9c,0x23, +0xa2,0xcb,0x55,0x40,0xdf,0x00,0x0d,0xd9,0x4d,0xd9,0x07,0x9e, +0x2b,0x43,0x21,0xd3,0x98,0x90,0x5a,0xad,0xf2,0x6e,0xf8,0x39, +0xd7,0x04,0xb6,0x1d,0x74,0x49,0x8f,0x7e,0xd7,0xd6,0xaa,0xcd, +0x4d,0xc5,0xbc,0xc3,0x77,0x66,0xf7,0x8c,0xfb,0xb8,0x21,0x43, +0x8c,0x24,0xf7,0xee,0xd5,0x3e,0xcd,0x79,0x60,0x95,0xc5,0x07, +0xee,0xb2,0xdf,0xa4,0x67,0x44,0x01,0x76,0xb2,0xb0,0x94,0x78, +0x84,0xed,0x3e,0xb2,0xfb,0x28,0x07,0x07,0x60,0x72,0x17,0x4e, +0x06,0x5d,0x43,0xaa,0xa5,0x57,0x98,0xc0,0x0a,0x3c,0xc7,0x9a, +0x1e,0x36,0x09,0xb3,0x08,0x8f,0x31,0xe2,0x9b,0x63,0x5b,0xe3, +0xdb,0x92,0x38,0x2c,0xc1,0x39,0xc3,0x25,0x77,0xc6,0x32,0x2d, +0x49,0x54,0xb2,0x41,0x23,0x5b,0x15,0x5f,0x95,0x58,0x91,0xc4, +0x41,0xb8,0x10,0x44,0xdc,0x55,0x37,0x2d,0xc2,0xe9,0x8b,0x8a, +0x25,0x97,0xa5,0xdf,0x5f,0xbc,0xce,0x83,0x71,0xdc,0x65,0x26, +0x07,0x65,0x1f,0x57,0xc0,0x37,0x33,0x8b,0x28,0xfe,0xf1,0xbf, +0x2d,0xfd,0xd1,0xf5,0x0f,0x0e,0x2d,0x45,0x96,0xc0,0xb3,0x2e, +0x7c,0xc6,0x5c,0x10,0xdf,0x91,0x1e,0x78,0x6e,0xd4,0x2b,0xac, +0x14,0x2d,0xc5,0x95,0x2c,0x05,0x15,0x39,0xc1,0x13,0xf8,0x1c, +0x4e,0x50,0x3c,0xf1,0x90,0x3f,0x22,0x86,0xf8,0x9a,0xc1,0x33, +0xde,0xb8,0x1a,0x47,0xe1,0x2c,0xe5,0x06,0x67,0x19,0x8c,0x83, +0x15,0x25,0xb0,0x0d,0x62,0x94,0x84,0x6f,0xc4,0x47,0xa4,0xff, +0xaf,0xd9,0x7a,0x8c,0x78,0x0b,0x95,0x88,0x5d,0xbd,0x71,0x83, +0x69,0xa9,0x87,0x03,0xdf,0xe3,0xd6,0xe4,0xdc,0x62,0xcb,0x09, +0xbb,0x60,0x1d,0x31,0x1c,0xc2,0x5e,0x46,0xb4,0x12,0xae,0x12, +0xe7,0x5a,0xc3,0x56,0xb3,0x72,0x77,0x07,0xbe,0xd5,0xad,0xd3, +0xb6,0xce,0x8e,0x83,0x3a,0x98,0x4b,0x72,0xd7,0xa4,0x6c,0xb8, +0xba,0xae,0x23,0x95,0x3f,0xf6,0xfc,0xd0,0x0b,0xbf,0x67,0x1c, +0x6c,0x38,0x40,0xae,0xaf,0xcf,0x5e,0x17,0xaf,0xd1,0x9e,0xc1, +0x87,0x3d,0xdd,0xff,0xbd,0xf7,0x13,0x4e,0xf4,0xc6,0x36,0x52, +0xf1,0x2c,0xeb,0x4b,0xd4,0x6f,0xe6,0xd1,0xfc,0xe9,0x85,0x41, +0x8b,0x77,0x6b,0x72,0x38,0x5b,0x1c,0x41,0x6e,0xc2,0xa8,0x5a, +0x98,0x91,0xf1,0x27,0x95,0x3d,0xfe,0xc3,0x41,0x18,0x06,0xaa, +0x9c,0x94,0x3f,0xe9,0x3e,0xe9,0x14,0xd7,0xfc,0x93,0x95,0xd2, +0x16,0x4d,0x88,0xff,0x23,0x3d,0x50,0xaa,0xcd,0xe1,0x88,0x79, +0x27,0xf1,0xd4,0x85,0x58,0x73,0xfe,0xcb,0x39,0xe0,0x2e,0x02, +0x1b,0xc5,0xcd,0x15,0xe7,0x99,0x82,0xc8,0x6a,0x51,0x6d,0xa2, +0x8b,0x46,0xdb,0xf2,0xa9,0x7d,0x0d,0xfb,0x09,0x46,0x0f,0x94, +0xc3,0x28,0x3a,0xbb,0x2c,0xfa,0xc1,0x42,0x72,0xc8,0x1d,0x0d, +0x13,0xb6,0xc3,0x89,0x65,0x79,0x6d,0x3c,0x5a,0x0c,0xe0,0xa4, +0x9b,0x9b,0x5f,0x73,0x54,0x3a,0x9f,0x20,0xe2,0x59,0x73,0x58, +0xc7,0x9c,0xc2,0xa9,0xbb,0xd4,0x70,0xbf,0x41,0x26,0x95,0x0b, +0x07,0x6e,0xfc,0x06,0xb2,0x2b,0xa0,0xc1,0x81,0x3b,0x73,0xd2, +0xeb,0xb0,0xe5,0x61,0x67,0x0e,0x5c,0x98,0x3d,0xe7,0xf6,0x9e, +0xf2,0x53,0xf6,0x39,0x15,0x1a,0xe1,0x34,0x1d,0xfd,0x98,0x24, +0x33,0x19,0x38,0x31,0x6f,0x32,0x72,0x5b,0x62,0x54,0xae,0x54, +0x5c,0x6c,0x7f,0xac,0x84,0x26,0x4c,0x4c,0xd1,0xb5,0xa2,0xa8, +0x34,0x4e,0x41,0x6e,0x49,0x7b,0x5c,0x17,0x7f,0x60,0xd0,0xd3, +0x00,0xa7,0x53,0xbe,0xa5,0xa5,0x5c,0x6d,0x06,0x2b,0x41,0xed, +0x3e,0x4c,0xbb,0x0c,0x0b,0xa8,0x39,0xbb,0x8c,0x4b,0x6e,0x23, +0x07,0xab,0x70,0x55,0x75,0x3b,0x8f,0x7a,0xb0,0x55,0x9f,0x62, +0x96,0x97,0x92,0x38,0x66,0x2e,0x39,0x11,0x2b,0x6d,0xf1,0x84, +0x1d,0xa5,0x84,0x8d,0x81,0x79,0x5d,0x38,0x0f,0x34,0x98,0xb6, +0x84,0x96,0xe4,0xca,0x34,0xdf,0x26,0x7e,0x89,0x23,0xce,0xf1, +0x44,0xd9,0xd1,0x38,0x73,0xbe,0x21,0xba,0xf3,0x6a,0x67,0x9c, +0x94,0xfa,0xc9,0xc8,0x04,0x76,0xb0,0x11,0x38,0xc6,0x82,0x8e, +0xed,0x38,0xfc,0xba,0x9c,0xa2,0x0a,0x8c,0xa8,0xfa,0x21,0xea, +0x07,0xca,0xe7,0x5c,0xba,0x86,0x1f,0x5f,0x5c,0x8c,0x3c,0xa5, +0xfc,0x4f,0xdc,0x54,0x57,0x21,0x13,0xb6,0x0b,0xdb,0x48,0x08, +0x8e,0xf4,0x5b,0xb8,0x47,0xb3,0xd5,0x97,0x2f,0x7f,0x75,0xfd, +0x8f,0x34,0xa9,0x16,0xf4,0x6e,0xec,0x26,0x25,0x2f,0x73,0x40, +0x16,0xf7,0x4f,0xb3,0x58,0x3e,0x7c,0x7e,0x00,0x8e,0x70,0xdf, +0x48,0xe7,0xf6,0x72,0x00,0x92,0x6c,0xda,0x9c,0x1a,0x3c,0xe0, +0x37,0xe8,0xd7,0xad,0x68,0x1b,0x92,0xe0,0x17,0xef,0x15,0xeb, +0xa9,0x68,0x7a,0xd2,0xf8,0xb4,0xe1,0x99,0x3b,0x2f,0xef,0x83, +0xec,0xbf,0x93,0x24,0xbb,0xfe,0x57,0x92,0xe4,0xb2,0x81,0xbc, +0xff,0x4c,0x92,0xec,0xfe,0xdf,0x49,0x92,0xbb,0xa5,0x24,0xc9, +0x46,0x81,0x7b,0x02,0xfe,0x9d,0x24,0x79,0xf7,0xdf,0x49,0x92, +0x6f,0xfe,0x77,0x92,0xe4,0xea,0xc8,0xaa,0xa8,0xca,0x28,0x0e, +0xbe,0x07,0x86,0x3c,0x7e,0xd0,0xf6,0x24,0xeb,0x19,0x57,0x87, +0x05,0x6c,0x5c,0x4e,0x4c,0xee,0xd5,0x5c,0xe3,0x2b,0xbc,0xaf, +0x9a,0xae,0xda,0x3a,0xad,0x12,0x47,0x3e,0x27,0x2b,0x27,0x37, +0x2b,0xbf,0xd0,0xb6,0xd2,0xbe,0xce,0xd9,0x6e,0xb7,0xe9,0x1e, +0x5d,0xcf,0xeb,0x56,0xfc,0xbd,0xb2,0xbe,0xca,0xb6,0x9a,0xbb, +0xa6,0x4f,0x6d,0x5e,0x3a,0xe7,0xb5,0xf3,0x1b,0xcb,0xb7,0xd6, +0xea,0x35,0x71,0xb8,0x0d,0x8c,0xc9,0x95,0x98,0xe8,0x98,0x68, +0x6a,0xac,0x4e,0x32,0x07,0x8c,0x1d,0xf4,0x75,0x0c,0xad,0x6b, +0x9d,0x9b,0xf6,0xb6,0x71,0x71,0xe2,0x74,0x72,0xd7,0xe7,0xbd, +0xcd,0x7d,0xdb,0xeb,0x2d,0xfc,0x96,0xc6,0x15,0x8d,0xdb,0xf3, +0x39,0x2c,0x30,0x20,0x79,0x5a,0x19,0x6b,0x93,0xd7,0xb7,0xa7, +0xf1,0x87,0xbe,0xf3,0x7f,0xe5,0xfb,0x80,0xa3,0x4a,0xaa,0x99, +0xd4,0xfe,0x90,0xf9,0x21,0xf1,0x57,0xcb,0xd8,0xe1,0x3c,0xc9, +0x8e,0xea,0x9c,0xa0,0x7f,0x87,0x5a,0x6d,0x17,0x50,0x32,0x83, +0xaf,0x2c,0xd2,0xba,0x79,0x1c,0xd5,0x82,0x8b,0xba,0x51,0xa9, +0x82,0x02,0xe6,0x20,0xed,0xb7,0xa8,0x43,0x51,0x87,0x22,0x0f, +0xd7,0x27,0xf3,0x87,0xef,0x05,0xdd,0x0d,0xec,0x72,0x38,0xc4, +0x0f,0x7b,0x45,0x79,0x39,0x9d,0xb4,0x3b,0x6d,0x7f,0xa6,0xfb, +0xc5,0x2d,0xc9,0x73,0x96,0xb5,0xcd,0xe3,0xfd,0x8d,0xbd,0xf5, +0x3d,0x25,0xcf,0x59,0xfa,0x53,0xda,0x5b,0x74,0x3f,0xe7,0xd6, +0xb0,0xe7,0xac,0xaf,0x9e,0x8f,0xf9,0x91,0xf8,0x23,0xf1,0x47, +0x63,0x3d,0x9d,0xf8,0x06,0xc7,0x26,0xab,0x5a,0x73,0x7f,0xe7, +0x80,0xdd,0x81,0x9e,0x9a,0x92,0xe7,0x6c,0xd3,0xa5,0x96,0xc8, +0xa6,0x28,0x45,0x71,0x79,0x87,0xb0,0x96,0xcd,0xbd,0x94,0x1b, +0x99,0x43,0x29,0xec,0x2b,0x41,0x93,0x60,0x50,0x87,0x85,0x19, +0x06,0xdb,0x42,0xf0,0x26,0x4c,0xb1,0x85,0x14,0x75,0x0c,0xb1, +0x85,0x83,0xe8,0x83,0x8b,0x6d,0x61,0x2a,0x13,0xa4,0x6d,0xb1, +0x7d,0x99,0x4e,0x81,0x13,0xff,0xe3,0xad,0x8e,0xfb,0x57,0xe8, +0x1c,0xc1,0x2b,0x2d,0x60,0xcb,0x44,0x47,0x0d,0x6f,0x06,0x7e, +0x8d,0xcb,0x4a,0x4a,0x70,0x0a,0xa8,0x1d,0x8b,0x8d,0x38,0x1f, +0x7e,0x4c,0xf1,0xe4,0x29,0xd9,0xa9,0x16,0xd0,0x68,0x44,0x0d, +0xf0,0x81,0x60,0x50,0x6c,0x6f,0x34,0x67,0xcc,0x9f,0x90,0x4d, +0xb8,0xe9,0x09,0x8b,0x1e,0x63,0x5e,0xc2,0x26,0x75,0x76,0x25, +0x9e,0x26,0x05,0x35,0x59,0xcd,0xc9,0x0d,0xf6,0x94,0xb1,0xdb, +0xef,0xb7,0xf3,0xa5,0x92,0xf9,0x28,0x8c,0x26,0x99,0x7b,0xb3, +0x2c,0x93,0x1d,0x6b,0x52,0xf9,0x83,0x8d,0x81,0x2d,0xfb,0xa9, +0xd8,0x9c,0x27,0xc6,0x12,0x21,0xd2,0x4c,0xa4,0x8c,0xc7,0x47, +0xb8,0x40,0xe6,0xb1,0x68,0x78,0x58,0xdd,0x70,0xb1,0x72,0x8d, +0x87,0xec,0x1e,0x8c,0x49,0xfc,0x02,0xfa,0x4a,0xbf,0x51,0x92, +0x8b,0x9a,0x24,0xce,0xe4,0xca,0xce,0x48,0x9d,0xa6,0x24,0xfe, +0x4c,0x5f,0xf8,0x40,0x78,0x07,0x87,0x67,0xb1,0x8a,0x14,0x3e, +0x4b,0xfa,0x74,0xe5,0x83,0x4d,0x34,0x7f,0x72,0xd5,0xa1,0xd5, +0x3e,0x1a,0xb4,0x97,0x2f,0x08,0xce,0x24,0x81,0x72,0xcd,0x49, +0x4c,0x6d,0x7a,0x1a,0xd5,0x7a,0xcf,0x45,0x45,0x73,0x78,0x86, +0x65,0x2c,0x8c,0x97,0xca,0x47,0xbc,0xc2,0x32,0x5c,0xc8,0xc4, +0xd3,0x13,0x78,0xa6,0x36,0xed,0xef,0x13,0x54,0x58,0x74,0xc2, +0x85,0x44,0x37,0xdb,0x20,0xc3,0x28,0x29,0xc8,0x96,0xbf,0x11, +0xd2,0x1f,0xdc,0x1b,0xc8,0x41,0xfc,0x6d,0x72,0x23,0xe4,0x06, +0xfd,0x98,0xde,0xc4,0xeb,0x66,0x1b,0x66,0x18,0x52,0xa0,0x0e, +0xc3,0x51,0x64,0x8d,0x93,0x9a,0xcf,0x02,0xff,0x0c,0x4b,0xfe, +0xa7,0xec,0xdf,0x4b,0x9e,0x56,0x71,0xa0,0x3d,0x87,0xfc,0xfd, +0x31,0xac,0x99,0x5f,0xe3,0xb4,0x98,0xfe,0x91,0x0b,0xd0,0x21, +0x47,0x5d,0x0f,0x7b,0x1e,0xf6,0xe3,0x30,0x4b,0x5c,0xd2,0xd7, +0x2a,0x34,0x59,0xf6,0x0a,0x4b,0xf0,0x0d,0x13,0x9f,0x15,0x9f, +0x1f,0x57,0xc8,0xe1,0x7d,0x0c,0x27,0x3f,0x09,0x4d,0xcb,0x58, +0xb1,0xc9,0x82,0x08,0x4d,0x0b,0xc4,0x26,0xa9,0x82,0x00,0x6c, +0x25,0x6d,0x52,0x18,0x68,0xd4,0xf9,0xcb,0x51,0x4a,0x8f,0xe1, +0xa1,0xa0,0x83,0xbf,0xb2,0xf1,0x59,0x31,0xb9,0xd7,0x72,0x77, +0x5d,0xe1,0x8f,0xfb,0x86,0x7b,0x87,0xfa,0x73,0x78,0x5d,0xd4, +0x81,0x1e,0x4d,0xe6,0xf4,0xf9,0x53,0xe7,0x4e,0x2b,0x8b,0xaa, +0x16,0x02,0xcf,0xb8,0xae,0xc5,0xc9,0xe6,0x18,0x6e,0x9d,0x61, +0xc8,0x43,0xd5,0x00,0x8c,0xe8,0xca,0x82,0x89,0xc3,0x46,0x62, +0x22,0x4c,0x36,0x81,0xca,0x6d,0x69,0xbd,0x3c,0x86,0x35,0xe3, +0x37,0xed,0x0e,0xaf,0x28,0x8f,0x11,0x1c,0x88,0x78,0x73,0x50, +0xb8,0xc9,0x88,0x37,0xd1,0x91,0x3c,0x16,0x6e,0x6a,0xb2,0x36, +0x63,0x34,0xc4,0x9b,0xcf,0x58,0x05,0xf9,0x80,0x30,0x9f,0xc0, +0x5d,0xfc,0x89,0xcd,0x2a,0x4d,0xa9,0x48,0x28,0xde,0x11,0xc7, +0x1f,0xd9,0x1d,0xec,0xe8,0x4f,0x05,0xc8,0x29,0x3c,0xc6,0xec, +0x3b,0x1f,0x70,0x2e,0x50,0x19,0x15,0x4c,0x60,0x3c,0x73,0x02, +0x35,0x7c,0x17,0xac,0xc4,0x91,0xad,0x6e,0xfc,0x2f,0xa0,0x50, +0x08,0xa3,0xaf,0x81,0x0e,0x27,0x64,0x50,0xcd,0xbe,0x75,0xb8, +0x66,0xd9,0x5c,0xa6,0x3d,0x43,0x0a,0x14,0xbe,0x0f,0x1c,0x95, +0x9e,0x16,0xd3,0x2e,0xe4,0x9c,0xcf,0xcb,0x57,0x82,0x2d,0x42, +0x2a,0xc6,0xb2,0xa2,0x02,0xec,0x24,0x1d,0xbb,0x1f,0x19,0x34, +0x38,0xd4,0x54,0xf3,0xd6,0xf5,0x1b,0x6f,0x58,0x96,0x72,0xef, +0xc5,0x7f,0x12,0x48,0xd5,0xc5,0x54,0xf6,0xdf,0x51,0x46,0x5b, +0x30,0xf5,0x21,0x7d,0x39,0x6f,0x0e,0xe7,0x35,0x7a,0x9f,0x41, +0xaa,0xf4,0x92,0xd8,0x8e,0x89,0x0c,0x84,0x0f,0x6d,0x22,0xbe, +0xd5,0x1e,0x0d,0xbe,0xf9,0x7b,0x83,0x78,0x2a,0xeb,0x0e,0xc7, +0x1f,0x74,0x39,0xe5,0x7a,0xc6,0xf6,0x4c,0x56,0x49,0x4a,0x79, +0x6a,0x8d,0x7d,0x02,0x7f,0xd0,0x21,0xd8,0xc1,0xd3,0xf1,0xc8, +0xb9,0xd0,0xf3,0xa1,0xe7,0xae,0x38,0xf0,0xef,0x2f,0x3f,0xbe, +0xfc,0x32,0xe1,0x4a,0x44,0x34,0xfd,0x89,0xbc,0xc8,0x9b,0x61, +0x1c,0xeb,0x18,0x1e,0x5b,0xa9,0x02,0x8e,0xd4,0x60,0xbd,0x14, +0x59,0x36,0x31,0x3b,0x36,0xeb,0x4a,0xa6,0xc1,0x15,0xfe,0x64, +0xe0,0xd1,0x7d,0x87,0x7c,0x39,0xac,0xc3,0x97,0x74,0x19,0x1c, +0xc7,0xa9,0x06,0x5b,0x70,0xb7,0x56,0x0e,0xb5,0x22,0x5e,0x0f, +0x5f,0xff,0x1c,0x0b,0x6b,0x39,0x90,0xa1,0x3b,0xb3,0x2d,0x3b, +0xe0,0xb1,0x32,0xe4,0x32,0x0d,0x09,0xc9,0xe5,0x2a,0xb5,0xac, +0x65,0xac,0x4c,0xd4,0x16,0xa6,0x12,0xcc,0xf8,0x11,0x32,0x98, +0xce,0xe5,0xe4,0x47,0x28,0x58,0xce,0xe2,0x1b,0x7b,0xb2,0x04, +0x33,0x7e,0x66,0xe1,0xbb,0x69,0x50,0xb0,0x04,0x0b,0x18,0x05, +0xf9,0x27,0xf9,0x31,0x22,0x8e,0x66,0x12,0x72,0xe2,0xf2,0x62, +0xf3,0x0d,0x63,0xf9,0x08,0xcf,0x30,0xaf,0x43,0x3e,0x1c,0xd6, +0xe0,0xfe,0x15,0x16,0x7f,0xcd,0x6c,0x5b,0xcc,0x88,0x17,0x81, +0x2e,0x5a,0x4d,0x5c,0x09,0x9a,0xac,0x30,0x41,0x4a,0x06,0xbd, +0x0e,0x34,0xa9,0x51,0x6a,0xa7,0x1f,0xe9,0x87,0xcd,0xa8,0xc9, +0xde,0xc1,0x7f,0x10,0xed,0xf5,0x9b,0x4c,0xd6,0x59,0xef,0x2e, +0xf5,0xae,0x08,0xae,0xae,0x2b,0xa8,0x2a,0x2e,0x28,0x72,0x2a, +0xe5,0x77,0x68,0xe1,0x8c,0xb5,0x38,0xc2,0x25,0xdf,0x9a,0x2f, +0x4f,0xac,0x49,0xaf,0xc9,0xe6,0xf0,0x53,0x1f,0xfc,0x1e,0xcd, +0xd6,0xa1,0x0a,0x2c,0x5d,0x0e,0x16,0x4b,0x29,0xae,0xa9,0x36, +0xa8,0xb5,0x68,0xf6,0xbc,0x6c,0x7e,0x72,0xeb,0xde,0x63,0x4e, +0xfc,0xfc,0x9e,0xe8,0x6a,0xaf,0xde,0x39,0xdb,0xa6,0xc4,0x86, +0xff,0xa3,0xf5,0xa7,0x3b,0x03,0xcf,0x38,0xcc,0x10,0x9d,0xc9, +0x97,0xd6,0x9f,0x1f,0x3c,0x78,0xee,0x54,0xce,0xeb,0x6c,0x59, +0xb9,0x7d,0xa6,0x15,0x5d,0x5d,0xcd,0xf2,0x5c,0x52,0x6f,0x6a, +0x8f,0xdb,0x5c,0x05,0xb5,0x4a,0xb6,0x16,0x97,0x11,0x8c,0x61, +0x0d,0x33,0x83,0xef,0x28,0x43,0x36,0x53,0x99,0x18,0x5f,0xa2, +0x52,0xcc,0x5a,0xc4,0xc9,0x32,0xb1,0xbf,0x0c,0xfa,0x4b,0xb0, +0xbf,0x74,0xf8,0xb5,0x18,0x1e,0x02,0x83,0x8f,0xcb,0xe1,0xd7, +0x72,0xfc,0xb5,0xde,0x14,0xd7,0xc0,0x63,0x57,0x56,0xf4,0x28, +0x22,0x92,0x2b,0xf8,0xb5,0x74,0xcb,0x38,0xfe,0x58,0x60,0x78, +0xe0,0xa1,0x7d,0x1c,0x26,0xb9,0x0a,0x9a,0x95,0x0c,0x26,0x25, +0x93,0xe3,0x69,0x87,0xb3,0x23,0xe2,0x6c,0x43,0xf9,0xf8,0xd0, +0xf8,0xa0,0xab,0x21,0x1c,0x8c,0x13,0x15,0xc8,0x17,0xa6,0x2a, +0x29,0xae,0x42,0x05,0xce,0xe0,0x3f,0xb1,0xab,0xf3,0x0f,0x38, +0x65,0x41,0x69,0x19,0x4c,0x00,0x1f,0xe2,0x8a,0xa7,0x2a,0xd9, +0x8d,0x63,0xe0,0x94,0x13,0x9e,0x62,0xe4,0x3e,0x4b,0x09,0x46, +0x32,0xce,0xe1,0x51,0xa5,0x2a,0x97,0xa0,0x9b,0x15,0x65,0xa8, +0x4f,0x1e,0xe0,0x04,0xf8,0x7a,0x35,0xec,0x33,0xcf,0xa0,0x6c, +0x34,0x53,0x33,0xd7,0xa0,0xb8,0x3f,0xbb,0x33,0xbf,0xb5,0xdc, +0xa3,0x80,0x7f,0x5d,0x2f,0xae,0xbf,0x63,0xb0,0x53,0x5c,0x68, +0x0f,0xef,0x98,0x75,0x76,0xf8,0xd5,0x6e,0x54,0xf3,0x4f,0xb6, +0xe1,0x9f,0x26,0x3c,0x48,0xb9,0x99,0xc9,0x2d,0x66,0xf7,0x9c, +0xd9,0x7d,0xd6,0xf5,0x8c,0x54,0x7b,0x54,0x33,0x09,0xe6,0xa5, +0xc2,0x84,0xec,0x53,0x8d,0xfc,0x86,0xb0,0xd5,0x47,0x17,0x85, +0x73,0x30,0x9a,0xed,0xcc,0x6a,0xcc,0xad,0xc8,0xe7,0xc0,0x40, +0x8d,0xec,0xc9,0xf5,0x29,0x08,0x28,0xe1,0x20,0x8b,0xb1,0xda, +0x63,0xe4,0xa3,0xeb,0x4f,0xfb,0x6c,0xaa,0xb0,0x97,0x08,0x5c, +0x35,0xaa,0xd6,0x83,0x42,0x15,0x2a,0x54,0xc3,0xb8,0x2a,0x1c, +0x57,0x05,0xb3,0x6b,0xa8,0x2a,0xbe,0x96,0x7c,0x35,0x3d,0x2a, +0x85,0x4a,0xf3,0x13,0xfb,0x4f,0x04,0x87,0x07,0x73,0x38,0x82, +0xb9,0x96,0x7a,0x35,0xf5,0x72,0x8a,0x2d,0x35,0x6c,0x1a,0x0e, +0xbb,0x8c,0x8d,0x4a,0xbc,0xf8,0xe4,0xe4,0xe4,0xb4,0xa4,0x74, +0x2a,0xf6,0x0d,0x49,0x62,0x62,0x52,0x4a,0x42,0x2a,0x87,0xfa, +0xc2,0xd4,0x6a,0x5c,0x52,0x0f,0x4a,0x55,0xa8,0x54,0x0d,0xff, +0xa8,0xc2,0x7f,0x54,0x81,0x6a,0x0d,0xce,0x64,0xaf,0x25,0x5f, +0x49,0xbf,0x9c,0x6c,0x7d,0xed,0x3f,0x2f,0x38,0xeb,0x7f,0x5e, +0xcf,0x71,0x97,0x91,0x11,0xe5,0x9a,0xed,0xa4,0x0a,0x26,0xba, +0xb0,0xc2,0x86,0x69,0xf8,0x75,0x25,0x73,0xfe,0xfc,0x85,0x0b, +0xca,0xd4,0x0a,0x88,0xd5,0x38,0x95,0x54,0xc3,0x44,0x67,0x16, +0x1a,0xa6,0x55,0xc3,0xd7,0xce,0xac,0x58,0xbd,0x92,0xd4,0xc3, +0x44,0x7b,0xe9,0x40,0x3d,0x7c,0x6d,0xcf,0xfe,0x81,0x53,0x48, +0xcd,0xd0,0x7c,0x27,0x16,0xc7,0xae,0x23,0x7f,0x4d,0xab,0xfb, +0xd7,0x34,0x06,0xc6,0xaa,0x13,0x67,0xf9,0xfc,0x6a,0x16,0x27, +0x8d,0xa9,0x1e,0x9a,0xef,0xcc,0xd6,0xe3,0x7e,0x52,0x28,0xdc, +0xf4,0xba,0x01,0xfa,0x43,0xba,0x54,0x8e,0xca,0xc7,0x3d,0xa1, +0x58,0xd3,0x47,0xb1,0x46,0x41,0x28,0x90,0xbb,0x12,0x18,0x6f, +0x86,0xe3,0x71,0x86,0x19,0xbc,0xea,0x60,0xe1,0xe2,0x90,0x2f, +0x71,0x67,0x82,0x4e,0x5d,0xce,0x53,0x11,0x16,0xba,0xb0,0x97, +0x0a,0x2f,0x15,0x5f,0x28,0xe6,0x60,0x56,0x27,0xaa,0x30,0x17, +0x52,0xce,0xa7,0xa4,0x2a,0x81,0x99,0x05,0xda,0xb0,0x56,0xaa, +0xa6,0x1f,0xd9,0x63,0x78,0xd6,0x16,0xf5,0xf0,0x2b,0x9c,0x57, +0xe1,0xc6,0xbf,0x87,0xaf,0xda,0x40,0x35,0x0b,0x76,0x70,0xf8, +0x9e,0xd5,0x4b,0x3b,0x58,0xa7,0x5c,0xcd,0x14,0xc5,0xc7,0x57, +0xa9,0x80,0x0d,0xeb,0x92,0x24,0x2b,0x17,0xec,0xc9,0x81,0x76, +0xdf,0xbe,0x7d,0x65,0x6e,0x41,0x7c,0xbe,0x4b,0x8e,0x71,0xaa, +0x29,0x27,0xbe,0x13,0xb3,0x88,0x6f,0xb8,0x5f,0x84,0xdf,0x31, +0xaa,0x50,0x7f,0x6e,0x5d,0x02,0xab,0xef,0x42,0x33,0x1e,0xc6, +0x66,0x18,0x29,0x9a,0xb1,0x07,0x4f,0x87,0x9c,0x0a,0x39,0xc5, +0x09,0x0a,0x56,0xe2,0x0c,0xf6,0xc8,0x99,0x23,0x67,0xc3,0xce, +0x5c,0xa5,0xdc,0x6f,0x54,0xde,0x4f,0xb9,0xaf,0x2b,0x38,0x2d, +0xe9,0x31,0xbb,0x05,0x35,0x83,0x16,0xac,0x10,0x2d,0x4d,0xfb, +0x64,0x8c,0xff,0x8c,0x1f,0x37,0x4b,0x99,0x3d,0xda,0x98,0xba, +0xe4,0xe4,0x3a,0x15,0x78,0xfb,0x85,0xb5,0x82,0x3d,0x04,0x57, +0xd0,0x09,0xbe,0x82,0x85,0x60,0x51,0x8f,0x9c,0xee,0x08,0xbf, +0x15,0xde,0x62,0x1f,0xce,0xc7,0x98,0x5d,0xd3,0x8b,0x32,0xe7, +0xd0,0x1b,0x74,0xc8,0xb1,0xf9,0x07,0x17,0x7a,0xac,0xab,0xf3, +0xe7,0x2b,0x7f,0x4d,0xf9,0x7c,0xe5,0x23,0x9d,0x22,0xc9,0xc3, +0xe5,0x65,0x95,0x05,0x05,0x54,0xfe,0x0e,0x36,0xb4,0xe1,0x86, +0x3f,0xcd,0xe6,0x48,0x9b,0x28,0xea,0x1b,0x70,0x06,0x05,0xca, +0x19,0xab,0x51,0xc3,0x1c,0x34,0x70,0x51,0x07,0x2c,0x02,0xcd, +0x76,0xb6,0x42,0xbe,0x92,0xa0,0x93,0xb0,0x1d,0x9c,0x58,0x71, +0x3c,0x2e,0x25,0x9f,0x61,0x60,0x36,0x3b,0x44,0xe6,0x12,0x1c, +0xa9,0x21,0x15,0x8d,0x0d,0xc0,0x91,0x44,0x1d,0x46,0xbe,0x64, +0x84,0xdf,0x44,0x4b,0xa2,0x7b,0x4a,0x26,0x8c,0xef,0x6e,0x12, +0xaf,0xd8,0xf4,0x88,0xf3,0xd8,0xf5,0x67,0xa3,0xac,0x60,0x62, +0x24,0xac,0xba,0x06,0xe4,0x9a,0xe2,0xac,0x2e,0x3a,0x7d,0xb3, +0x2e,0xa6,0x5f,0x4a,0xbb,0xc8,0xd1,0x9b,0x7b,0x42,0x30,0xef, +0x3d,0xe4,0x31,0x43,0xa6,0x1b,0xc9,0x33,0x64,0x34,0x18,0xf8, +0x66,0x1a,0x30,0x2f,0x91,0x61,0x85,0xe0,0x06,0xb2,0x98,0xfe, +0x91,0x45,0xd5,0x31,0x90,0xb7,0x92,0x59,0x7b,0x72,0xe1,0xa9, +0xa5,0xa7,0x87,0xa3,0x7f,0xbe,0x10,0xdb,0xc7,0x86,0x4f,0x2d, +0x3a,0x6c,0x3d,0xf8,0x0e,0xb3,0xae,0x0d,0x0d,0x9b,0x39,0xd8, +0x08,0xdb,0x88,0xe0,0x3a,0xc4,0xd1,0x61,0x8c,0xb3,0x94,0xc1, +0x64,0xba,0x6c,0x13,0x1a,0x55,0xe4,0x2b,0xc5,0x41,0x3c,0x4c, +0x49,0x42,0x04,0x4e,0x77,0x98,0xa3,0xdc,0xb2,0x5b,0xd6,0x24, +0xb9,0xd4,0xae,0x05,0x77,0xa5,0x42,0x9c,0x40,0x84,0x19,0x4d, +0xb8,0xe5,0x1d,0x2c,0x6f,0xc4,0xe5,0x83,0x16,0x5a,0x38,0xdf, +0x16,0xe6,0x2f,0xc5,0xf5,0x4c,0xaa,0x18,0xf1,0x7f,0xea,0x1d, +0x2b,0x7e,0x2b,0x4c,0xa2,0x1d,0x04,0xcf,0x68,0x07,0x61,0x2e, +0xed,0xa0,0x2f,0x10,0x30,0x8b,0x55,0xf8,0x4b,0x5b,0xae,0x4f, +0x30,0x93,0xc9,0xa9,0xc8,0xac,0x49,0xab,0xd2,0x4b,0xe3,0x43, +0x1c,0xbd,0xcd,0xbc,0x1d,0x38,0x8c,0x66,0x6a,0x33,0x03,0xeb, +0xf7,0x55,0x05,0x14,0x2b,0x9a,0xec,0xcb,0xdd,0x9d,0xe9,0x91, +0xe1,0xa8,0x88,0xa9,0xa6,0xd0,0xaf,0x8a,0x27,0xc4,0xbf,0x6e, +0xdc,0x17,0xe4,0xda,0x37,0x84,0xbf,0x30,0xe6,0x37,0x78,0xc5, +0x88,0x31,0xaa,0xe4,0x37,0x50,0x50,0x95,0x4a,0xf3,0x7e,0x20, +0xa2,0x1c,0x2a,0x41,0x9b,0x39,0xb9,0xc6,0xdd,0x61,0xb1,0x71, +0xa9,0x1d,0xff,0x6b,0x7f,0xfb,0x8d,0xab,0x30,0x86,0xa3,0x8d, +0x54,0x64,0x1c,0xb2,0x82,0xeb,0x94,0x3f,0x32,0x65,0x29,0xc9, +0xa5,0x2a,0x77,0x58,0xbb,0x04,0x99,0xfa,0x2a,0x36,0xf8,0x78, +0x74,0x8a,0x0a,0x45,0x2c,0x2b,0x56,0x94,0xe3,0x7b,0x22,0xc8, +0x57,0x89,0x72,0xba,0x32,0x4a,0xa5,0x02,0x87,0xb1,0xfb,0x70, +0x95,0x16,0x12,0xe5,0x5a,0x37,0xd9,0x0f,0xb0,0x2c,0x1b,0x76, +0x4a,0x8f,0x2b,0xde,0x99,0xb3,0xf0,0xe4,0x5f,0xb3,0x49,0xd7, +0x5f,0xb3,0x4d,0x18,0x1c,0xf9,0xaf,0x71,0x44,0x8e,0x16,0x43, +0xc8,0x62,0xa2,0xbc,0x8a,0x72,0x85,0x6f,0x2c,0x60,0x2a,0x4e, +0x5e,0x34,0x64,0xda,0x7e,0x0b,0x4a,0xe4,0x93,0x16,0xc1,0x64, +0xa9,0x48,0xf5,0x64,0x67,0xfa,0x2e,0x54,0xa2,0x29,0xc9,0x58, +0x97,0xb0,0xfc,0xea,0xfa,0xea,0x54,0xfe,0xe4,0xb3,0xc3,0x6f, +0x83,0x9f,0x71,0xa2,0x05,0x26,0x90,0xd9,0x18,0x3a,0xc8,0x66, +0x07,0xca,0x5a,0x1e,0xc6,0xff,0x0a,0xb3,0x94,0x2e,0x54,0xa3, +0x09,0xeb,0x90,0xba,0xbf,0x42,0x19,0x17,0xc2,0x45,0x32,0x3b, +0x62,0xcd,0x5e,0x63,0x65,0x88,0xab,0x63,0x61,0x3d,0xba,0x93, +0xa0,0x53,0xd1,0xf9,0x2a,0xb0,0xa5,0x11,0xdd,0x59,0xb8,0x00, +0xe6,0x24,0x75,0x75,0xec,0xa6,0x28,0xf5,0xda,0x64,0xfe,0xf4, +0xcb,0xf0,0x67,0x21,0x2f,0x38,0xdc,0x71,0x96,0x9c,0x59,0x76, +0x78,0x96,0xd7,0xfa,0xba,0x43,0x7c,0xc1,0xf7,0x29,0xc0,0x44, +0xfd,0xcc,0x89,0xca,0xa2,0x1a,0x81,0x50,0xda,0xcc,0x50,0x4a, +0x6b,0xb4,0xc1,0x80,0xb4,0x8b,0xeb,0x1e,0x0b,0x7c,0x13,0xbe, +0xfd,0x0e,0x3a,0x1b,0xb1,0xf3,0xd1,0xf0,0xeb,0x43,0x78,0xd1, +0x8c,0x0f,0xd8,0xc4,0x9c,0xd8,0xdc,0xd8,0x5c,0xd3,0x38,0xfe, +0xa8,0x6f,0x98,0xe7,0x41,0x6f,0x0e,0xbf,0x65,0xe2,0xb3,0xe3, +0x72,0x63,0xf2,0x4c,0x93,0x79,0x67,0x1c,0xb3,0x73,0xc5,0x4c, +0xf5,0x62,0x5b,0xbe,0x20,0x2b,0x2f,0x27,0x27,0x97,0xc3,0x5c, +0x68,0xd5,0x14,0xe7,0x9b,0x0b,0x63,0x58,0xd3,0xed,0x38,0xc6, +0x06,0x7d,0xcc,0xd2,0xcd,0x78,0x38,0x77,0xf7,0xcf,0x86,0xca, +0x8f,0x94,0xbb,0x5e,0xe8,0x83,0x0b,0x97,0x99,0xaa,0x05,0x30, +0xce,0x0e,0x2e,0xec,0x48,0xa3,0xea,0x38,0xa0,0x03,0xc7,0x37, +0x19,0xdf,0xe3,0x1c,0x85,0x68,0xb2,0x05,0x6b,0xab,0xd9,0x2b, +0xd7,0xa2,0xaf,0x45,0xc7,0x70,0xc1,0x68,0x47,0x1e,0x41,0xed, +0x66,0xd6,0x76,0xcc,0x06,0xac,0xfd,0x8e,0x4e,0x10,0xd5,0x13, +0x44,0x95,0xd9,0x1d,0x1e,0x4b,0x17,0x73,0x0f,0x2c,0x13,0x54, +0x30,0x80,0x8d,0x2f,0xb8,0x76,0xfd,0x4a,0x01,0xd5,0xa7,0xc7, +0xbd,0x8f,0xed,0x3d,0xba,0x97,0xaa,0x2b,0x51,0xe5,0x03,0x73, +0x06,0x0d,0x76,0xe3,0x88,0xc5,0xcb,0xca,0xa8,0x49,0x90,0x01, +0x5b,0x06,0xd3,0x23,0xc1,0x84,0xbb,0x89,0xb7,0x98,0x8d,0xe9, +0x01,0x0f,0x95,0x61,0x84,0x54,0x88,0xb0,0x42,0x65,0x80,0xb5, +0x8a,0x97,0x0d,0xed,0x97,0x53,0x73,0xf4,0xff,0x2b,0x24,0x0e, +0xb2,0x36,0x51,0xd9,0x82,0x05,0x7d,0x0a,0xa8,0x30,0xa5,0x0e, +0xa7,0xb0,0xc2,0xac,0x27,0x52,0xc5,0x07,0x22,0x55,0x7c,0xa0, +0x18,0x47,0xdf,0x41,0x09,0xbf,0x62,0x87,0x34,0x0e,0xfc,0xdf, +0x15,0x1a,0x87,0x46,0xc9,0x27,0x72,0x2a,0xbd,0xe0,0x54,0xe9, +0x82,0xc3,0x35,0xfb,0x94,0x70,0x2a,0xeb,0xb1,0x95,0x9c,0x32, +0x0e,0xdf,0x1e,0x66,0x16,0x7c,0x96,0x8f,0xb6,0xad,0x89,0x6e, +0xb8,0x56,0x1d,0xa7,0x78,0x29,0x3c,0x32,0xfc,0xe2,0xb1,0xca, +0x64,0x3e,0xbc,0x2e,0xe8,0x41,0x68,0xd5,0x9e,0x50,0xfe,0x4a, +0xf0,0x35,0xaf,0x6b,0x5e,0x21,0xa7,0x43,0xce,0x1c,0x38,0x1b, +0xd7,0x7a,0xb5,0x27,0xba,0x83,0x1b,0x0a,0xc6,0x8d,0xff,0x55, +0x54,0x7c,0xb8,0x6a,0x31,0x45,0xe6,0xcd,0xa8,0x84,0x0a,0xc8, +0x95,0x9b,0xf3,0xe5,0xc5,0xe5,0xd5,0x25,0xcd,0x9c,0x58,0xd5, +0x2f,0x57,0x66,0xcb,0x1e,0x14,0xbc,0xc8,0x7c,0xc7,0x41,0x3f, +0x95,0x48,0xd0,0xbd,0x13,0xbb,0x31,0x5f,0x0f,0xf2,0xc5,0xc2, +0x3b,0x42,0x21,0xd4,0xf7,0xb3,0x0a,0x90,0x4f,0xff,0xdd,0x0a, +0x6d,0xb4,0xe8,0xbf,0x8f,0x1f,0xae,0x56,0x5c,0x59,0x52,0x51, +0x5f,0xd6,0xce,0x89,0xcd,0xfd,0xf2,0xc5,0x6c,0xd1,0xdd,0xfc, +0xa7,0x69,0x3f,0x70,0x82,0x26,0x8e,0x25,0xbb,0xea,0x57,0xd7, +0x69,0xe6,0xfb,0xd8,0xf1,0xcf,0xdd,0x1f,0xbb,0xdd,0xb5,0xe7, +0x0c,0xc5,0x09,0x04,0x4e,0x77,0xe3,0x69,0xaa,0x3d,0x72,0xba, +0xc5,0x0f,0xc6,0x10,0x87,0xc1,0x18,0x66,0x0c,0x61,0x98,0x80, +0xc5,0x46,0xf2,0x89,0x3d,0x58,0x41,0x17,0x54,0x2a,0xd5,0xdb, +0x06,0xc8,0x89,0xcb,0xa5,0xfd,0x28,0x17,0x2d,0xdb,0x2d,0xa6, +0xdb,0xb8,0x73,0x76,0x76,0xe7,0x6c,0xa7,0x5f,0x36,0x80,0x98, +0x68,0x38,0x13,0x0d,0x7b,0x73,0x14,0xb3,0x7c,0xb2,0x7c,0x33, +0xbd,0x9b,0xcb,0x79,0xed,0x1f,0xd7,0xff,0xb8,0xe2,0x07,0x7b, +0x0f,0xbe,0xd2,0xb5,0xc2,0xa5,0xc2,0x09,0x67,0x1c,0xc5,0x45, +0xc7,0x71,0xed,0xe9,0xc6,0xdb,0x0d,0x8f,0x2b,0x1e,0x72,0xc2, +0xe5,0x2e,0x51,0x8b,0x11,0x75,0x86,0xb2,0xe9,0x77,0x7f,0x77, +0x0f,0x26,0x26,0x80,0xa5,0x4e,0x14,0x1f,0x86,0x1b,0xdc,0x96, +0xe0,0xc9,0xf5,0x9c,0x7c,0x4a,0x26,0xf1,0x38,0x76,0xad,0x48, +0x05,0x72,0x74,0xb0,0x92,0xd5,0xc9,0x0a,0xba,0xaf,0x0c,0x16, +0xff,0x4e,0x34,0xad,0xc9,0xea,0x25,0xc9,0xe8,0x0a,0x53,0x10, +0x32,0x05,0x37,0x02,0xb8,0x1d,0x51,0x9c,0xaf,0x23,0xcc,0x17, +0x9d,0xee,0x09,0x4e,0x82,0xfa,0x2d,0xda,0x1d,0xe7,0xe5,0x2f, +0x88,0xe5,0xbc,0x6d,0xea,0xab,0x76,0x95,0x5a,0xf3,0x3f,0x3f, +0x7c,0xf4,0x4b,0xd7,0x17,0x0e,0x12,0xf1,0x1b,0x12,0xd2,0xe6, +0xdb,0xed,0x5d,0x63,0xb5,0x8f,0x2f,0x70,0xcc,0x35,0x4b,0xb3, +0xe0,0x60,0x0b,0xd2,0x21,0x0d,0xef,0xc2,0x70,0xd8,0x0f,0xe9, +0x5d,0xa8,0xcb,0x14,0xb4,0xe4,0xdf,0xce,0xbc,0x61,0x9c,0xca, +0x1f,0xd0,0xf3,0xdc,0xec,0x62,0xc0,0xe1,0x4f,0x26,0x10,0x27, +0x76,0x30,0xb3,0x93,0xad,0x7e,0x03,0x75,0x25,0x18,0x65,0x88, +0xa3,0x59,0xdc,0xe6,0xb0,0x79,0xb1,0xa1,0x72,0xa1,0xe5,0xfb, +0xfe,0x92,0x07,0x51,0xef,0x29,0x5e,0xaa,0x45,0xf6,0xe0,0x18, +0x58,0x3c,0x1d,0xda,0x99,0xd8,0x2e,0x19,0x96,0x31,0xe2,0x3a, +0xe1,0x1d,0xb1,0x52,0x5d,0x89,0x63,0x97,0x68,0x17,0x5a,0xf0, +0x95,0x05,0x05,0x05,0xd9,0xd7,0x39,0x71,0x5b,0xb7,0x70,0x81, +0x2d,0xac,0x2d,0x6c,0xb9,0xde,0x2e,0x25,0x22,0xbb,0x42,0x2c, +0x0a,0x6d,0x7b,0xf6,0x3c,0x7f,0xf4,0x53,0x27,0x8c,0x28,0x07, +0x05,0x93,0x2c,0xde,0x73,0xa6,0xc3,0x52,0xc3,0x0d,0x9e,0x1f, +0x82,0x41,0xe1,0x2c,0xcc,0xe6,0xe0,0x46,0x0f,0xf6,0xc3,0x5a, +0x03,0x5c,0x2b,0x46,0x19,0x09,0x97,0x99,0x48,0x5c,0x91,0x8b, +0xb3,0x6b,0x91,0xd9,0xa8,0x3e,0x7f,0x17,0x7e,0x6d,0x55,0x6c, +0xcc,0xc3,0xf8,0xe6,0x8f,0xb7,0xbf,0x7b,0x56,0xb5,0xb6,0x45, +0xbf,0xcb,0xb3,0xc2,0xaf,0x32,0xf6,0x6a,0x5b,0x01,0x38,0xf1, +0x16,0xf9,0xb2,0x93,0x42,0x0c,0xb1,0x2b,0xd8,0x56,0x62,0x98, +0xba,0xcf,0x9e,0xef,0x0e,0x79,0xe8,0x5e,0x47,0x69,0xf1,0x1d, +0x1c,0x24,0xe8,0x79,0x44,0x96,0xc7,0x4a,0xce,0x4a,0x1b,0xd9, +0x88,0xf3,0x11,0xe7,0x8e,0x29,0xd3,0x23,0x91,0x06,0xe0,0x12, +0x1f,0x8a,0xbc,0xa5,0xda,0xbc,0x2d,0x8a,0xb5,0xd6,0xc0,0xbe, +0xee,0x01,0x2e,0x11,0x96,0x28,0x42,0x40,0x82,0x4c,0x42,0x1d, +0x77,0xd2,0x41,0x51,0x87,0xcd,0xba,0x1a,0x9b,0x5a,0xa4,0x04, +0xab,0xa0,0x92,0xdd,0x6d,0x63,0x64,0xbd,0xd5,0x9e,0xf2,0x87, +0xd7,0xdd,0x77,0x6e,0xd5,0xdc,0xe6,0xea,0xb1,0x87,0x8d,0x88, +0x0a,0xbf,0x1c,0x1e,0xf5,0xa5,0xf8,0x6d,0x4d,0x5f,0x3d,0x57, +0x3b,0xa4,0x6d,0x25,0x3c,0x67,0x2d,0xbd,0x36,0xef,0x5b,0xe1, +0xb7,0xe3,0xfa,0xb6,0x7c,0xdb,0x54,0x8f,0x3d,0x7c,0xcb,0x81, +0x17,0x7b,0x07,0xbd,0x39,0x71,0x9d,0xb5,0x20,0x63,0x8c,0xad, +0x70,0x84,0x3d,0xee,0xb3,0x4a,0xb1,0xe2,0x21,0xe3,0xce,0x2f, +0xf5,0xf5,0xaf,0x29,0xea,0x6c,0xc3,0x55,0x4c,0xbc,0xb5,0x0c, +0x46,0x68,0x8b,0xf3,0xcd,0xe8,0x49,0x66,0x5a,0x28,0x33,0x47, +0xbf,0xe1,0xc7,0x47,0xe7,0x06,0xff,0x68,0xa9,0xfc,0x93,0x9e, +0x94,0xd2,0x07,0x29,0x14,0x9a,0xe6,0xc0,0x57,0x56,0x70,0x49, +0x2b,0x9d,0x42,0xd3,0xfe,0x3e,0x9c,0xd0,0x61,0x3c,0x48,0xbb, +0x56,0x5d,0xc8,0xa4,0x4b,0x65,0x17,0x5d,0x2a,0x69,0xfa,0x90, +0x26,0x16,0xdd,0x16,0x8a,0xa0,0xe8,0x06,0x3b,0xf4,0x23,0x5c, +0x26,0x83,0x9e,0xf7,0xdc,0xfa,0x1d,0x29,0x6d,0x37,0xac,0xd5, +0xaa,0xde,0x72,0x5d,0xca,0x58,0x31,0x44,0x0c,0x6b,0x36,0xd5, +0x6a,0x15,0xfa,0x5a,0xf2,0x83,0x9e,0x03,0xae,0xb7,0x1c,0x24, +0x60,0x3a,0x48,0x5e,0xfe,0x7e,0x0f,0xfe,0x51,0xf3,0xc5,0x2c, +0x87,0x77,0xc4,0x51,0xfa,0xc8,0xae,0x53,0xa3,0x97,0xd6,0x95, +0xab,0x10,0x08,0xe9,0xc0,0x10,0xe0,0x0d,0xf0,0x0d,0xc5,0xf8, +0x3c,0x23,0xcc,0x43,0xc6,0x54,0x3e,0xbd,0x13,0x13,0x18,0x71, +0x06,0xb8,0x10,0xdb,0x5a,0xe3,0x5a,0x93,0xe2,0xbd,0xf6,0x7c, +0xef,0x9e,0x16,0xd7,0x66,0x7a,0x31,0x1f,0x1c,0x43,0xfa,0x5d, +0x6f,0xd8,0x76,0x58,0x97,0xd5,0xf3,0x36,0x0d,0xdb,0xdb,0x74, +0xcb,0x39,0x79,0x01,0x1a,0x13,0x0b,0x73,0x4d,0x8b,0x4d,0x2e, +0x65,0xf6,0xfc,0x93,0xaa,0xc7,0xed,0x3d,0x9d,0x9c,0x38,0x10, +0x4e,0x6e,0xb8,0xdd,0xb2,0x6c,0xb3,0xac,0xac,0xe5,0x4d,0x3a, +0xf4,0x5a,0x0c,0xcb,0x39,0xcc,0x17,0x77,0x93,0xbb,0x30,0xa2, +0x19,0xa6,0xe7,0x7e,0x36,0x4d,0xe5,0xbd,0x71,0xb4,0x33,0x8e, +0xdd,0x35,0x9f,0x83,0x4b,0x36,0xe4,0x53,0xed,0xbb,0x5b,0x8f, +0x06,0x76,0x37,0xf2,0x5b,0xb7,0xa9,0xe9,0x2f,0x75,0xe1,0x04, +0x1e,0x26,0x93,0x9f,0x4d,0xdf,0xe8,0xf4,0x9b,0x56,0xb4,0xf2, +0x3b,0xba,0x57,0xdc,0x5c,0xd9,0x4c,0x79,0xc5,0x27,0xb9,0x23, +0x39,0x5c,0x11,0xd8,0x14,0x5c,0x6c,0xbb,0x9f,0x4f,0xf3,0xca, +0xb6,0x4c,0xd8,0xc3,0xc9,0xe7,0xa3,0x05,0xe9,0xc2,0x4d,0xd4, +0x32,0x1d,0x31,0xc0,0x23,0xac,0x83,0xe4,0xa4,0xb3,0x82,0x8d, +0x40,0x0f,0x5b,0x9c,0x8b,0x63,0x71,0x43,0x2d,0x85,0x63,0x16, +0x34,0xaa,0x61,0xf6,0x65,0xd0,0xe5,0xa2,0xe9,0xe4,0xd3,0xad, +0xc5,0x19,0x30,0x19,0xb5,0x4a,0xfb,0x78,0x54,0x00,0x0d,0x5b, +0x50,0x39,0x06,0x7b,0xb8,0x21,0xeb,0x59,0x44,0xb0,0x81,0xb2, +0xcd,0x4c,0x76,0x59,0x7a,0x53,0x4a,0xa5,0x6d,0x3a,0x1f,0x62, +0xeb,0x6b,0xea,0xe7,0xc8,0xe1,0x39,0xa6,0x3e,0xfd,0x50,0xa9, +0x77,0x6b,0x70,0x9e,0xa2,0x5d,0x60,0x9a,0x7f,0xbe,0x55,0x92, +0xbb,0xa2,0x2e,0x23,0xff,0x64,0x4d,0x82,0x6e,0xfa,0xdd,0xf4, +0x6d,0x70,0xda,0xcf,0x5f,0x37,0xcf,0x36,0xca,0xd4,0xe1,0xc4, +0xa1,0xeb,0x64,0x1b,0xce,0x1a,0x60,0xc1,0x7a,0x1b,0x19,0x00, +0xd5,0x6d,0x2c,0x3a,0x38,0x10,0x2d,0x9c,0x35,0x48,0x8f,0x4c, +0x03,0x55,0x2d,0x29,0x3f,0x65,0x25,0xca,0x88,0xb5,0x50,0xd2, +0xcc,0x8a,0x1a,0xe2,0x5c,0xd2,0x0c,0x7f,0xc2,0x61,0x71,0x39, +0x16,0xb1,0xf0,0x19,0xc2,0x08,0xf2,0x58,0x03,0x3c,0x05,0x86, +0x53,0xc2,0x9f,0xc4,0x6f,0x8d,0x09,0x8e,0x31,0xd2,0x0a,0xbd, +0x19,0xd2,0x1f,0xdc,0xe6,0x78,0x88,0x8f,0xdd,0x17,0xe3,0x7d, +0xcd,0xcb,0xe5,0x94,0xf3,0x69,0xa7,0x33,0x5d,0x2f,0xfa,0x41, +0xd6,0x01,0x9c,0x5d,0x2e,0x1f,0x60,0xe2,0x63,0xe0,0x6d,0x72, +0x38,0xfd,0x60,0x46,0x48,0x7a,0x49,0x6f,0xe1,0x83,0x9c,0x5b, +0x36,0xd2,0x83,0xa1,0x7d,0xba,0x3e,0xe6,0x47,0xe3,0x8f,0xc6, +0x86,0xc7,0x7a,0x39,0xf3,0x75,0x8e,0x0d,0x36,0x55,0x16,0x01, +0x54,0xb4,0xef,0xf7,0x0a,0xfa,0x36,0xe8,0x5c,0xd0,0xb9,0xcb, +0xe6,0x7c,0xfd,0xa5,0x86,0xc8,0xfa,0x28,0x4e,0x5c,0xd3,0x21, +0x6c,0x60,0x33,0x23,0x33,0x2f,0x65,0x44,0x4a,0xcf,0xa2,0x22, +0x0f,0x65,0x5d,0xe3,0x0b,0x1d,0x32,0x72,0x53,0x73,0x92,0x72, +0x15,0xc5,0x4d,0x4d,0x42,0x14,0x9b,0xdf,0x94,0xd9,0x99,0xdc, +0xc4,0xe9,0x41,0x24,0x71,0x9f,0xef,0xb0,0x5e,0x7f,0x47,0xa9, +0x33,0x7f,0xe7,0x71,0xcb,0x87,0xd2,0xdf,0x38,0xa9,0x18,0x10, +0x39,0xdc,0xb5,0xff,0x46,0x60,0xbd,0x5d,0x30,0x9f,0x65,0x9b, +0x61,0x94,0x6c,0xc2,0x01,0xc1,0x9f,0x09,0xcc,0x6a,0xc3,0x59, +0xe0,0x05,0x4b,0xdb,0x71,0x24,0x93,0xd3,0x9a,0x79,0x2f,0xb9, +0xdf,0x2a,0x99,0x3f,0xbc,0x3d,0x70,0x8b,0x97,0x21,0x27,0x25, +0x1f,0xdf,0x25,0x36,0x32,0xba,0xd9,0x5e,0x6f,0x40,0x41,0x09, +0xe6,0x9b,0xe2,0x7c,0x16,0x67,0xee,0xdb,0x65,0x6a,0xa4,0x9c, +0x6b,0xd4,0x7f,0x2b,0xa9,0xf3,0xd2,0x5b,0x8a,0x4a,0xcb,0x2f, +0x35,0xab,0xc1,0x88,0xe9,0xb0,0x9e,0xb9,0xda,0x21,0xc3,0x95, +0x8c,0x58,0x05,0xdf,0x92,0xa4,0xed,0xb1,0xeb,0x2f,0x6f,0x68, +0x4e,0xe2,0x4f,0x3d,0x0c,0x7d,0x75,0xf8,0x2e,0x87,0xa1,0x58, +0x49,0xf2,0xbf,0x4b,0xf8,0x3d,0xfa,0x17,0x9b,0xcb,0xfc,0xe9, +0xd5,0xa1,0xab,0xfc,0x34,0x38,0x05,0x21,0xf9,0x47,0xca,0x20, +0x5b,0xc5,0x19,0x83,0xf0,0x23,0x0c,0xe2,0x8f,0x03,0x82,0x46, +0xab,0xa8,0xf1,0x8c,0x91,0x0a,0xc3,0x29,0x5c,0xf9,0x94,0x18, +0xd8,0xc2,0xfb,0xa2,0x0e,0xc6,0x7f,0x8b,0x75,0xd3,0x63,0x29, +0x27,0x65,0x61,0xcc,0xf9,0x4b,0x5f,0x54,0x36,0x8a,0x0b,0x2d, +0x85,0x85,0xdb,0xf0,0x11,0x0e,0xc2,0x23,0x2d,0x71,0x9c,0xa5, +0x30,0x6e,0x8d,0xb8,0x5a,0x52,0xe1,0xe2,0x76,0xd6,0x58,0x38, +0x44,0xd6,0x61,0xd2,0x0b,0x56,0xf8,0xb8,0x8e,0x60,0xc1,0x0b, +0x28,0x90,0xe2,0xc3,0x94,0x08,0x24,0xad,0xc1,0x24,0x06,0x1e, +0x4d,0xfb,0x1e,0x0a,0xd6,0xd0,0xe1,0xdb,0xf6,0x86,0x38,0x84, +0x5b,0x87,0x5b,0x51,0x5d,0xd1,0x0c,0x0b,0xe9,0xec,0x9c,0x7a, +0x19,0xb4,0xe3,0x61,0x5a,0x72,0x83,0x06,0xdf,0x70,0xdd,0xe1, +0x99,0xf9,0x4b,0xf3,0x41,0x45,0x07,0xdf,0xac,0xbd,0x59,0xee, +0x59,0x7b,0x14,0x37,0x46,0xac,0x3c,0xb1,0xfc,0x74,0x61,0x5f, +0xfe,0xbd,0xdc,0xa7,0x1c,0xd4,0xb7,0xe3,0xd9,0x7f,0x1a,0xcd, +0xc4,0x60,0x73,0xd8,0xc2,0xec,0xd3,0xf2,0xd2,0xf4,0xd0,0xd7, +0x38,0xcb,0x47,0xd9,0xcb,0x70,0x3e,0x8c,0xfb,0xbd,0x1d,0xaf, +0x99,0x7f,0xc0,0x71,0x7f,0xa7,0x10,0xeb,0x63,0x4c,0x8e,0x19, +0x9d,0x30,0x39,0x19,0x23,0x05,0x5f,0x25,0xc1,0x9c,0xbc,0x5f, +0xf3,0x38,0xd4,0x92,0x5f,0x22,0x31,0xeb,0x1b,0x75,0x5f,0x6d, +0x2d,0x6c,0xe1,0x37,0xdd,0xb2,0xbf,0x7b,0xe0,0x36,0xa7,0xcd, +0xec,0xd7,0xb4,0xd9,0x88,0x23,0xb6,0x5e,0x37,0xe7,0xbf,0x3c, +0xe8,0x7b,0x95,0xf8,0x13,0x27,0x3c,0x1c,0xaa,0x24,0xfb,0x4e, +0x50,0xa1,0x05,0x3f,0x1a,0xe2,0x1f,0xac,0x61,0xd6,0x81,0x1e, +0xe5,0x47,0x54,0xb8,0x64,0x94,0xaa,0x80,0x0e,0x6b,0x92,0x22, +0x43,0x07,0x16,0x5f,0xc2,0x17,0x82,0xdb,0x5d,0x71,0x14,0x2a, +0xaf,0x54,0x2e,0xb2,0x92,0xc1,0x8a,0xdf,0x1a,0xe0,0x1b,0x30, +0x53,0x4a,0x32,0x92,0x6a,0x78,0x9c,0x24,0xc9,0xed,0xf1,0xdd, +0x31,0xed,0x76,0x71,0x7c,0x84,0x61,0xb8,0xf9,0x61,0x1b,0xc9, +0x8f,0x7f,0x2e,0xc9,0x32,0xcf,0xde,0x10,0x67,0xdc,0x9c,0xcc, +0x1f,0xe9,0xf6,0x7f,0x19,0xd8,0x46,0xc7,0x22,0x57,0xca,0x3e, +0xef,0x07,0x73,0x61,0x7b,0x07,0x6e,0x87,0x09,0xfa,0xf8,0x10, +0x9d,0x4c,0x21,0x44,0x34,0xa4,0xfa,0x36,0x49,0x0a,0x9c,0xae, +0x8f,0x4f,0xaf,0x54,0x11,0xf4,0xc1,0x92,0xa5,0x5a,0x3e,0x9c, +0x7c,0xff,0x3f,0x1c,0x76,0x17,0x9a,0xc0,0x4f,0xec,0x11,0xc9, +0x61,0x77,0xd6,0x36,0x9c,0xa8,0x0f,0x93,0xbc,0x40,0xf1,0x7f, +0x3a,0xec,0x3e,0xc4,0xe9,0x66,0x1b,0xb7,0x6a,0x2f,0x96,0x1c, +0x76,0x7f,0xba,0xf3,0xf0,0x7e,0xd7,0xb3,0xa6,0x4d,0x7d,0x5b, +0x9f,0x48,0x0e,0xbb,0x1b,0xee,0x1b,0x3e,0xb0,0x7f,0xcc,0xe1, +0xe9,0x6d,0xe4,0xd0,0x23,0xff,0xef,0x7c,0x1e,0xd9,0x1c,0xe4, +0xaf,0xaf,0xcf,0xd4,0x4c,0xd2,0xe4,0xf0,0x35,0x9c,0x25,0x07, +0x71,0xfc,0x9e,0x59,0xd6,0x2b,0x5a,0xbc,0xf8,0x8e,0x4f,0x25, +0x30,0x36,0x05,0xc6,0x72,0x0a,0x7f,0x29,0x5d,0x20,0xee,0xb5, +0x07,0xff,0x84,0x9b,0x4a,0xf0,0x6a,0xc8,0x59,0x0a,0xc0,0x49, +0x09,0x42,0x05,0x1d,0x1c,0xa7,0xdc,0x62,0x2f,0x7b,0x00,0xd3, +0xb3,0x41,0x15,0xf2,0x95,0xe0,0xbc,0xf0,0x06,0x4b,0x59,0xbc, +0x9b,0x85,0xd3,0xba,0x2d,0x94,0x4b,0xbd,0xcb,0x13,0x2e,0xb7, +0xa6,0x82,0x39,0x6f,0x93,0x2d,0x13,0x4f,0x0b,0x0c,0xf1,0xc4, +0xd1,0xdb,0x67,0xaa,0xaa,0x57,0x52,0x08,0x6d,0x69,0xea,0xae, +0xb8,0xc5,0x41,0x08,0x73,0x40,0xd3,0x43,0xdb,0x4a,0xd7,0xa3, +0xd2,0xb2,0xcd,0x3b,0xd7,0xd1,0x8d,0x2f,0xf2,0xed,0x34,0x2d, +0x76,0xd1,0xd5,0x55,0x37,0x9b,0xe9,0x54,0x40,0x91,0xea,0xe4, +0x27,0x58,0x0c,0xdb,0x1b,0xc1,0x87,0xab,0xc2,0x24,0x36,0xb9, +0x34,0xa1,0x2c,0xb6,0x92,0x83,0x73,0x1d,0x62,0xa8,0x19,0xf3, +0xef,0x3d,0xdf,0xe5,0xa2,0x12,0x3a,0xf6,0x81,0xaa,0x3c,0x68, +0x91,0x18,0x6b,0x0a,0xe7,0x98,0xa3,0x1e,0x47,0xdc,0x0f,0x7b, +0x70,0xb8,0x53,0x3c,0xdd,0xdb,0x2e,0x8c,0x32,0xef,0x13,0x4e, +0x53,0xc8,0x4a,0x2a,0x89,0x2f,0x8d,0x2f,0xe1,0xc0,0xbf,0xa0, +0x0e,0x76,0x48,0x1b,0xc3,0x57,0x51,0x81,0xb8,0xce,0xd5,0x41, +0x45,0x94,0x21,0x5b,0xe3,0xc0,0x17,0x14,0x15,0x94,0xe5,0x55, +0x51,0x3a,0xd4,0x2b,0x5c,0x66,0xf3,0x5a,0xb2,0x3b,0xd2,0x3b, +0x39,0x60,0x44,0x19,0xa1,0xa2,0x93,0x0e,0x36,0x2b,0x8e,0x42, +0x2b,0x02,0xb3,0xe9,0xe7,0xd9,0xac,0x82,0xfc,0x1f,0xc2,0x79, +0x82,0x5a,0xb0,0x00,0x66,0x77,0xe2,0x6c,0x20,0xa6,0xf8,0x03, +0x2e,0x33,0x03,0x0d,0xd1,0x76,0x09,0x93,0x68,0x2a,0xbb,0xc7, +0x34,0x24,0x27,0x35,0xa8,0x08,0xa6,0x92,0x1b,0xf4,0x07,0x38, +0x47,0x6c,0x9a,0x0c,0x9a,0x0d,0xcb,0xf7,0x3a,0xf1,0x37,0x5c, +0xda,0x1c,0xda,0xac,0x38,0xb9,0xe5,0xd0,0x62,0xa2,0xff,0xd0, +0x6e,0xd0,0xe3,0xc5,0x7d,0x98,0x53,0x02,0x9b,0xe2,0xfe,0x3f, +0xca,0xbe,0x3b,0xaa,0x8a,0x6b,0x7d,0xdb,0x18,0x98,0x19,0x1b, +0x1a,0xe3,0x36,0x03,0x24,0xa0,0xd8,0x7b,0xef,0x0d,0x0b,0x2a, +0x20,0x1d,0x0e,0xbd,0xf7,0x22,0x4d,0x40,0x45,0x14,0xec,0x25, +0x8a,0xa0,0xd2,0x7b,0xef,0xbd,0xf7,0x5e,0xa4,0xd8,0x7b,0x4b, +0xd4,0x24,0xa6,0x99,0x98,0xc4,0xe4,0x9d,0x93,0x77,0xc8,0xfd, +0xf6,0xe0,0xbd,0xf7,0xfb,0xad,0xf5,0xfd,0xfe,0xf9,0x3c,0x6b, +0xc1,0xac,0xe3,0x61,0xce,0x2e,0x6f,0x79,0x9e,0x3d,0x7b,0x3f, +0x2f,0x38,0x73,0x0d,0xf8,0xd0,0x04,0x92,0x68,0xac,0xde,0x19, +0x80,0x33,0xcd,0x71,0x92,0x13,0x8c,0x0b,0x06,0xfe,0x18,0xac, +0x30,0x0a,0xe7,0x93,0x50,0x2b,0x1f,0x17,0x77,0xe0,0xe7,0xd6, +0x6b,0x74,0xb6,0xad,0xdd,0x59,0x62,0xc2,0x3f,0xb9,0x39,0x70, +0xbf,0xe5,0x45,0xc5,0xc6,0xc6,0xed,0x7d,0x5a,0xdc,0x88,0x96, +0x90,0x41,0xec,0x9b,0xf6,0x75,0x1a,0x57,0xb9,0x39,0xf0,0x5d, +0x8e,0xdd,0x16,0xcd,0x96,0x9c,0xa0,0x8d,0x19,0xe4,0xd8,0xe3, +0x90,0xd7,0x41,0x0f,0xac,0x42,0xf9,0x4c,0xcd,0xd4,0x95,0xf1, +0x6b,0x39,0xcc,0x82,0x04,0x72,0x14,0x59,0xbf,0x59,0x76,0xcb, +0xeb,0x5d,0xf9,0xa6,0x5f,0x0a,0xa5,0x53,0x80,0x13,0x39,0x4c, +0x17,0xb5,0xc8,0x00,0x8c,0xad,0x85,0x2f,0x32,0x7e,0x37,0x4d, +0xe1,0x03,0x50,0xc1,0x0d,0x27,0x18,0xcc,0xa3,0x79,0xe6,0xb6, +0xa0,0x4e,0x8e,0xc7,0x46,0x44,0x46,0x9c,0x08,0x3f,0xc1,0x9f, +0x89,0x64,0x6a,0x3b,0xae,0x7f,0x28,0x03,0xa7,0xf2,0xa1,0x0c, +0xdc,0x2c,0x63,0xc8,0x65,0x1d,0x69,0x72,0x99,0x80,0x6b,0xf1, +0x8b,0xb9,0xc5,0x96,0x7c,0xc7,0xff,0x52,0x06,0x4e,0x09,0x17, +0x57,0x55,0x2a,0x0a,0x8e,0x78,0x81,0x6c,0x67,0xf6,0x9f,0xbc, +0x5a,0x2a,0x1d,0x37,0x57,0x14,0x16,0x89,0x86,0xe2,0xa2,0xdf, +0xd8,0xf3,0x68,0x27,0x43,0x05,0x5c,0xbf,0xa8,0x8c,0x42,0x86, +0xbd,0xef,0x07,0x40,0xf9,0x12,0x04,0x71,0x7f,0xe0,0xef,0xcc, +0xae,0x9c,0xe0,0x3e,0xb5,0x57,0x4c,0x6d,0xfc,0x87,0x2d,0x5b, +0x66,0x29,0x8a,0x7a,0x42,0x2a,0xc1,0x36,0xbc,0x03,0x6d,0x34, +0xb0,0x44,0x0b,0x23,0x24,0x70,0x91,0xdd,0x2c,0xe3,0x95,0xa1, +0x37,0x82,0x6f,0x04,0x76,0xd9,0x1e,0xe2,0xe3,0x7d,0xe3,0x7c, +0x62,0xbd,0x6c,0x4f,0x59,0x9d,0xb1,0x3a,0xdb,0xf7,0xbf,0x3e, +0x2f,0xc8,0x28,0xbf,0x5e,0xf2,0x1f,0xa5,0x8d,0xfd,0xa3,0x4a, +0x1b,0xff,0x7e,0x5e,0xd0,0x6c,0xd7,0x62,0x5e,0x67,0x1a,0xe0, +0xe0,0xff,0x9f,0xe7,0x05,0xad,0x91,0xad,0x97,0x5b,0x2f,0x2b, +0x8b,0xcb,0xba,0x84,0x35,0xec,0xab,0xb8,0xa8,0x50,0x9a,0x10, +0x0e,0x2b,0x57,0x24,0x44,0x84,0xe5,0xcb,0xb2,0x4a,0x33,0x2a, +0x52,0xca,0x94,0x45,0xed,0x4e,0xa1,0x92,0x4d,0x6b,0x4a,0xac, +0x8f,0xab,0xe5,0x60,0x1a,0x2c,0x20,0xdf,0x1b,0x2c,0xc5,0xa3, +0xb8,0xb6,0x07,0xc6,0x08,0xbb,0xe6,0x60,0xbf,0x0c,0xe6,0xb3, +0x27,0x5c,0x23,0x1c,0xc2,0x9d,0x39,0x0d,0xf1,0x74,0xfb,0x10, +0x38,0xe8,0x74,0x0a,0xa7,0x71,0x29,0x13,0x5f,0x19,0x5b,0x7b, +0xb5,0x92,0x03,0xe5,0xc6,0x62,0x58,0xcb,0x60,0x97,0x98,0x44, +0x8d,0x0d,0x1c,0x24,0x63,0xbb,0x91,0x4b,0xd2,0xb4,0xe2,0x37, +0x5d,0xdd,0xdc,0x96,0xc2,0x9f,0xbc,0x7f,0xf8,0xf9,0xa1,0x9b, +0x94,0xf2,0x49,0xab,0xf9,0xcf,0x53,0x7e,0xbd,0xfa,0x93,0xe5, +0x55,0xfe,0xe4,0x87,0xd5,0x7c,0x01,0x72,0xa9,0x51,0xd2,0xbf, +0x91,0x8c,0x12,0xe4,0x69,0x04,0xdf,0xf6,0x1a,0x18,0xe2,0x0f, +0x16,0xf0,0xc3,0x5a,0x71,0x99,0x4c,0x58,0xb6,0x02,0x7f,0xb5, +0x80,0x5f,0xd1,0x0e,0xc3,0x2c,0xc0,0x99,0xf1,0xd8,0xbd,0xc3, +0x08,0xe7,0xec,0x29,0xb0,0xe4,0x61,0xf6,0x9d,0xfb,0x3d,0x99, +0xd2,0x93,0x8c,0xd3,0x7d,0x34,0xac,0xc6,0x45,0x5d,0x8a,0x39, +0xa5,0x06,0x5e,0x38,0xb7,0xb8,0x11,0xdd,0x41,0x23,0x2c,0xe6, +0xf8,0x97,0xc7,0x8f,0x29,0x1f,0x3f,0xa6,0x78,0x7a,0x00,0x12, +0x5a,0x31,0x01,0xec,0xe0,0x2d,0xa8,0x3f,0xef,0xda,0xc0,0x18, +0x7c,0x45,0xd6,0x62,0xc5,0xd7,0x2c,0xaa,0x29,0x40,0xc5,0x0a, +0x8a,0x8b,0x41,0x01,0x23,0x48,0x45,0x51,0x5d,0x67,0x5e,0x83, +0x4d,0x2e,0x1f,0xe8,0xe0,0x64,0xe9,0xe6,0xc5,0xa1,0x45,0x24, +0xf1,0xab,0x71,0x6e,0xf4,0x28,0x76,0xf4,0xe1,0x4b,0xbd,0xaa, +0xac,0x73,0x9c,0x39,0x0a,0xaf,0xa6,0x11,0x0d,0x16,0xc7,0x85, +0xe3,0x47,0x7b,0x34,0xd4,0x5a,0xdd,0x14,0x6f,0xfd,0x99,0x06, +0xd3,0xe1,0x33,0x95,0x3f,0x59,0xb9,0x89,0x78,0x80,0x08,0x07, +0x0c,0xc4,0x03,0x14,0xec,0x0f,0xcb,0x13,0x49,0x8f,0x9e,0x11, +0x9a,0x5b,0x0a,0xe6,0x2d,0xac,0x30,0x85,0x3a,0x4b,0xa7,0xf8, +0xd1,0x13,0xb6,0xa3,0xb1,0xb2,0x23,0x6f,0xa0,0xd0,0xa7,0xd0, +0xb3,0xc8,0xbd,0xb4,0x9a,0x77,0xaf,0x76,0xaf,0x74,0x2b,0x4d, +0xee,0x8e,0x19,0xba,0x7c,0x8f,0xfb,0x9e,0x72,0xff,0x95,0x09, +0xa8,0xd6,0xa3,0xa3,0x96,0xef,0x55,0x1f,0x75,0xb5,0x23,0x0d, +0x08,0xef,0x90,0x1d,0x82,0x6a,0x8a,0x6e,0xcd,0x47,0xfe,0x80, +0x2d,0x2a,0xf0,0x11,0xce,0xcf,0x64,0x7f,0x32,0x9e,0xc7,0x1e, +0x42,0xc6,0x0c,0x14,0xd9,0x73,0x46,0xa7,0x2d,0x23,0xec,0xfc, +0xb3,0xfc,0x33,0xfc,0xd3,0xbc,0x9d,0xf9,0xa2,0xc0,0x22,0xff, +0x42,0xdf,0x00,0x5d,0x27,0x33,0x5d,0x59,0xbe,0x07,0xef,0xbe, +0x19,0xdf,0x99,0xc2,0xbb,0xb9,0xe2,0x0a,0x93,0xbf,0x55,0xbb, +0xc4,0x1d,0xef,0x18,0x43,0xe1,0x1e,0x41,0x11,0x67,0x83,0xc8, +0x18,0xbe,0x23,0x46,0x78,0xba,0x87,0x7d,0x23,0x2a,0x13,0x54, +0x60,0x62,0x6c,0x14,0x41,0x91,0x29,0x4a,0x4c,0xca,0x55,0xbf, +0xcf,0x0e,0x5f,0xee,0x8f,0xea,0x8c,0x3a,0x5f,0xcb,0xcb,0xce, +0xea,0x9d,0xd5,0x39,0xc7,0xc5,0xb2,0x7d,0xa9,0x1d,0x45,0x35, +0xc5,0x5c,0x85,0xa8,0x66,0x0d,0xdd,0xac,0xcf,0x21,0xd7,0x23, +0xa6,0xc7,0x38,0x67,0x76,0xef,0x39,0xad,0xf3,0x5a,0xe7,0xa3, +0x6d,0xf9,0xdb,0x97,0x6e,0x5c,0x1a,0x8c,0xa4,0xae,0x76,0x43, +0x7e,0x85,0x0c,0x1b,0x68,0xa3,0x93,0xa5,0xe0,0xd9,0xc2,0x42, +0x26,0xaa,0x11,0x43,0x16,0x75,0x62,0x70,0x7c,0xcb,0x46,0xb5, +0x7c,0x9b,0x8e,0x2f,0xe3,0x7a,0x8b,0x60,0x3d,0x6f,0x97,0xe3, +0x89,0x5a,0x8a,0x4e,0x8f,0x8f,0xff,0x0c,0x7b,0x54,0x80,0xc1, +0x85,0xb0,0xc8,0x04,0x17,0xa1,0x92,0x0c,0x94,0xd8,0xf3,0xbb, +0x4f,0x19,0x1c,0x95,0xf9,0xe6,0xf9,0xe5,0xf8,0x65,0xba,0xba, +0xf2,0x25,0x7e,0xa5,0x5e,0x25,0xee,0x5e,0xeb,0xcd,0x75,0xb6, +0xeb,0x55,0xd9,0xf3,0xb7,0xaf,0x77,0x0e,0x56,0xbc,0xc8,0xf1, +0xcd,0xf5,0xc9,0xda,0x5f,0x59,0xc3,0xfb,0x94,0x7b,0x97,0x7a, +0x17,0xa7,0x0d,0xc4,0xdd,0xbf,0xf4,0x1d,0x87,0x47,0x1b,0x08, +0xfe,0x81,0x8b,0xe0,0x0f,0xc6,0xe4,0x3d,0x31,0xc4,0x93,0xbd, +0x2c,0xbc,0xc2,0x2a,0x62,0x75,0x66,0xcf,0x99,0x1d,0x67,0xb9, +0x34,0x76,0x38,0xb7,0x2d,0xb7,0xbe,0x88,0x6b,0x10,0x35,0x2c, +0x69,0x37,0x3c,0x0e,0x3b,0x86,0x9a,0x1f,0xe2,0x2c,0xd8,0x1d, +0x67,0xb7,0x9f,0xd3,0x3f,0x1f,0x65,0xc6,0xf7,0x45,0xde,0x8d, +0xbc,0x73,0x99,0x5b,0x31,0x93,0x4d,0xb0,0x52,0xfc,0x99,0x29, +0x4f,0x49,0xae,0x50,0x7f,0xcd,0xde,0xbb,0x7c,0x2b,0xba,0x25, +0x8a,0x83,0x3c,0x34,0x25,0xb5,0x16,0x35,0xa6,0x25,0xfb,0x7a, +0x0b,0x78,0xb7,0x41,0xbb,0x2e,0xc7,0x5a,0x6e,0xc4,0x0f,0xad, +0xc8,0x60,0x77,0x5d,0x6f,0x7e,0x8f,0x69,0x26,0xef,0x6b,0x6e, +0x6b,0x62,0x60,0xc1,0x09,0x29,0xa0,0x4c,0xb2,0x65,0xe9,0x26, +0x89,0x06,0x83,0x09,0x7c,0xe8,0x40,0x50,0x67,0x40,0x0b,0x05, +0xcc,0x47,0x49,0x82,0xc9,0x55,0xf3,0x28,0xdd,0xc1,0xab,0xfc, +0xe9,0xa1,0xe3,0x1d,0x61,0x6d,0x14,0xb7,0x3f,0xa2,0x13,0x32, +0x08,0xff,0xa2,0x98,0xf1,0x95,0x0e,0xe6,0x62,0x25,0x7c,0xa3, +0x4d,0xe1,0x7b,0x06,0xe4,0xea,0xe0,0x2b,0xda,0xf6,0x7f,0x61, +0x13,0xa4,0x6b,0x8b,0x8b,0x87,0x1f,0xcb,0x57,0x6f,0x19,0x16, +0x16,0x4b,0xfa,0xa8,0x81,0x94,0x48,0x5a,0xcf,0xd5,0x5f,0xbf, +0x69,0x4f,0x85,0x25,0xff,0xf5,0x83,0x9b,0x3f,0xb7,0xfe,0xc1, +0x09,0x33,0x71,0x0f,0xc1,0x15,0x60,0x69,0x88,0x96,0xb8,0xd0, +0x04,0x16,0x8e,0xcc,0xee,0x95,0xcf,0x86,0x15,0xcc,0x19,0x98, +0x48,0x0e,0x57,0x78,0x37,0xfb,0x16,0x39,0xfa,0xf1,0x85,0xee, +0xb9,0xb6,0x29,0x2e,0xdc,0x73,0x60,0x88,0x11,0x5c,0xea,0x61, +0x69,0x2a,0xd4,0x22,0x76,0xf3,0x37,0xe2,0xc4,0x75,0x3b,0x4a, +0x64,0x7c,0x49,0x61,0x4e,0x7e,0x66,0x01,0x27,0x6a,0xf6,0x08, +0x91,0x6c,0x51,0x43,0x41,0x7b,0x4e,0x3b,0x27,0x2c,0xf4,0xa0, +0x9f,0x9d,0x22,0x86,0xe3,0x67,0x6c,0xbc,0xa1,0x22,0x30,0x4c, +0x7d,0x8a,0xa4,0xbf,0x70,0xe8,0x65,0x0f,0x2b,0x12,0x7d,0x92, +0x87,0xd3,0x53,0x71,0x75,0x34,0x4e,0xeb,0x48,0x93,0x6a,0x16, +0x1f,0x82,0x75,0xfb,0x41,0x85,0xc3,0xfb,0xe2,0x45,0xd2,0x09, +0x8b,0x33,0x41,0x3b,0x0a,0x56,0x9a,0xd1,0xfe,0xe2,0xaa,0x60, +0xdc,0x65,0x8e,0xaa,0xb4,0xcb,0x4b,0x6e,0x10,0x21,0x0d,0xaa, +0x7a,0xb0,0x0a,0xf4,0xb5,0x51,0x1f,0xf3,0x8c,0x20,0x4f,0x4c, +0x63,0xa1,0x9d,0x52,0x18,0xe7,0x72,0x83,0x3a,0xcb,0x7c,0x57, +0x67,0xbe,0xd3,0xbb,0xdd,0xa5,0xce,0x91,0x13,0x1f,0x6b,0xff, +0x3f,0x2b,0x8f,0x72,0x7b,0x71,0x01,0x09,0x84,0x8f,0x6d,0x40, +0xcd,0xe2,0x9d,0x51,0x30,0xdf,0xb2,0xa0,0x1e,0x67,0x64,0x21, +0xc7,0x89,0x32,0x81,0x23,0x47,0x67,0x5b,0xe1,0x7c,0xa3,0x15, +0x5d,0xee,0x7c,0xdf,0xfb,0x36,0x58,0x92,0xf0,0x9e,0xf3,0x11, +0x8f,0x11,0x24,0x2b,0xfa,0xa4,0xc5,0xc5,0x2a,0xb4,0xd4,0x07, +0x5e,0x5a,0x5c,0x74,0x35,0x9d,0x6d,0xaf,0x96,0x69,0xf0,0x43, +0x75,0x6b,0x4f,0xe4,0x83,0x0f,0x8b,0x8b,0x3b,0x60,0x95,0xaa, +0x10,0x2a,0x2d,0x2e,0x2a,0x41,0xb1,0xf0,0x35,0xe9,0xb8,0x78, +0xe3,0xd2,0xdd,0xc8,0x53,0x1b,0x77,0xef,0x46,0x55,0x4b,0x69, +0x83,0xc1,0xaa,0x81,0x27,0x3f,0x5d,0x7e,0x5b,0x19,0x59,0x7d, +0xa9,0x32,0x92,0x43,0x86,0xdd,0x95,0x15,0x78,0x47,0x0d,0x66, +0x30,0x75,0x29,0x29,0xf5,0xea,0x37,0x59,0x93,0x54,0xc5,0x45, +0xa8,0xca,0xba,0x9f,0x88,0x29,0x93,0x6a,0xab,0xb7,0x5e,0x6e, +0x8e,0xaa,0x89,0x4a,0x3a,0x92,0x14,0x9a,0x10,0x5a,0x57,0xc9, +0xef,0xbb,0xb5,0xfe,0x91,0x66,0x97,0x83,0x27,0x5f,0xe3,0x55, +0xef,0x5a,0xe3,0xa4,0x11,0x81,0x6a,0x27,0x51,0xe9,0x5c,0x7d, +0x4f,0xd5,0xf5,0xc2,0x3e,0x4a,0xa0,0x3c,0x75,0x6c,0x76,0x99, +0x69,0x73,0x17,0x3c,0xbd,0xbf,0xf4,0x53,0x0d,0x01,0x5b,0x62, +0xf5,0xa1,0x06,0x97,0xc2,0xe8,0x89,0xf3,0x82,0xfc,0x82,0xd2, +0xbc,0x6a,0x4e,0x4c,0xee,0x97,0x7f,0xc4,0x56,0x3f,0x2d,0xfb, +0x3e,0xeb,0x4f,0x4e,0x3e,0x67,0xe4,0x5b,0xea,0xbb,0xb9,0xcb, +0x4a,0xb6,0x54,0x3f,0xed,0xe8,0x1d,0xac,0x7b,0xc0,0xd5,0xe1, +0x8f,0x6c,0x66,0x7e,0x5a,0x41,0x52,0x91,0x61,0x0a,0x6f,0xb9, +0x64,0xc5,0x6a,0x54,0xdf,0x5d,0x68,0xc5,0xb7,0x64,0x37,0xe4, +0x55,0x17,0xd6,0x59,0xb7,0xd8,0xf7,0xb8,0x6e,0x70,0x9a,0xe5, +0x81,0x9f,0xf9,0xa7,0x99,0xf2,0x30,0xbf,0x10,0xc6,0x55,0xbd, +0x69,0x79,0x65,0xfd,0xbb,0x33,0x4c,0xf5,0xe2,0xc4,0x83,0xf0, +0x84,0x44,0x5d,0x8e,0x8e,0x8a,0xa2,0xc6,0x7e,0x93,0x71,0x35, +0x35,0xb3,0xd8,0x61,0xaf,0x53,0x69,0xd6,0x60,0x43,0xc9,0x9a, +0xa0,0x07,0x7f,0x11,0x18,0x3f,0xd0,0xf1,0xf0,0xca,0x9f,0x79, +0x97,0xf2,0x2f,0xe5,0xd1,0x11,0x98,0xc6,0xea,0xa5,0x07,0xf5, +0xab,0xfd,0xc5,0x54,0x27,0xa6,0x54,0xd3,0xb8,0x61,0x9e,0xa2, +0xb8,0x60,0x3e,0xeb,0x77,0x52,0x5a,0x4c,0x24,0x6c,0xc5,0xe5, +0xb2,0xcb,0x45,0x97,0xe3,0x8f,0xc4,0x85,0xc6,0x1e,0xa9,0x2f, +0xe1,0x2d,0xee,0xe8,0x3c,0xd6,0xef,0x72,0xf4,0xe6,0x8b,0xbd, +0x4b,0x5d,0x4a,0x9c,0x36,0x1d,0x9f,0x75,0x72,0xd1,0xd9,0x8a, +0x9e,0xa2,0xc1,0xec,0x7e,0xb3,0x64,0xde,0x5f,0xdb,0x6d,0x97, +0x0d,0xed,0x7d,0x60,0xd0,0x85,0x60,0xd5,0x28,0x93,0xea,0x4b, +0x2d,0x97,0xda,0x2f,0x2b,0x9f,0x5c,0xef,0x68,0x3c,0xdb,0x92, +0x5b,0x0f,0x3d,0x44,0xfc,0x67,0xb7,0x3c,0xd4,0x78,0x24,0x74, +0x8f,0xf0,0x8f,0xe9,0xc8,0x89,0x9e,0xfb,0x70,0x41,0xbe,0x9e, +0x15,0x5e,0x8e,0x1c,0x20,0x4b,0x0a,0xb6,0x94,0xea,0xd4,0xdc, +0xee,0x68,0x19,0x2c,0xbf,0xc7,0xd5,0x62,0x05,0x9b,0x9a,0x9b, +0x9c,0x9f,0x50,0x60,0x92,0xc4,0x3b,0xad,0xd3,0xd5,0x5c,0xa0, +0x5b,0x64,0xc7,0xe7,0xa5,0xe4,0xa6,0x66,0xa5,0x97,0xd9,0x55, +0x3b,0x35,0xbb,0xee,0x72,0x5c,0xe6,0x86,0xe3,0xf6,0xa7,0xcb, +0x78,0x20,0x45,0xef,0x6a,0x9e,0xb6,0xde,0xb5,0x7e,0xe9,0xf8, +0xbb,0x07,0xcd,0xf5,0xf0,0x98,0x44,0x49,0xff,0xa2,0x39,0xb8, +0xc6,0xf8,0xc8,0xec,0xad,0xf4,0xed,0x64,0x95,0xf6,0xb5,0xae, +0xcd,0x14,0x41,0x9a,0x43,0x20,0xc1,0x71,0xb7,0xb6,0x0d,0x98, +0xdc,0xe2,0xe0,0x58,0x27,0xe6,0x32,0x87,0xf3,0x42,0x0b,0xc2, +0x8a,0x38,0x88,0x69,0x13,0x37,0x30,0x31,0x79,0xd7,0xf2,0xae, +0xe6,0x73,0xc2,0x8e,0x4e,0x71,0x0d,0x73,0x39,0x33,0x2a,0x2b, +0x32,0xcb,0xe0,0x2a,0x7f,0xd6,0xff,0x4c,0xc0,0x99,0x00,0x0e, +0xc1,0x14,0x7e,0x60,0x4e,0xfa,0x9e,0xf0,0x93,0xa4,0xc3,0x0b, +0xcd,0xe9,0xdd,0xc3,0x7c,0x42,0xf7,0x1f,0xf2,0xa5,0x58,0xc6, +0x14,0x8e,0x30,0xfa,0x9a,0x9b,0x76,0xcf,0xd0,0x2f,0xb3,0xe0, +0x5b,0x0a,0xea,0x0b,0xab,0x4a,0x38,0xfc,0xa6,0xaf,0x5d,0xf0, +0x90,0xf5,0x53,0x8c,0x5c,0xe9,0x5d,0xe7,0xd3,0xec,0xcd,0x89, +0x1f,0x0b,0x1a,0x24,0xc1,0x3b,0x71,0x7f,0x32,0xbd,0x81,0x27, +0x93,0x92,0x9f,0x58,0x10,0x5f,0xc8,0x81,0x3d,0xce,0x21,0x99, +0x3e,0xd9,0xfb,0xf3,0x7d,0x39,0x71,0x2f,0x93,0x9b,0x9f,0x5d, +0x90,0x51,0xc8,0x2d,0xa7,0x10,0xfe,0x67,0xc1,0x63,0x21,0x2b, +0x7a,0x58,0x10,0xc1,0x63,0x9e,0xe8,0xc1,0x28,0xfd,0x3d,0x53, +0x7e,0x97,0xa0,0x9a,0x07,0x46,0x06,0xe1,0xa6,0xb3,0xf1,0x74, +0xea,0xb7,0x44,0xc3,0x95,0x2c,0x98,0x57,0xc6,0x8d,0xd4,0x8f, +0x14,0x91,0x61,0xd8,0x2e,0x8f,0xc0,0xc3,0x23,0x9d,0x2c,0xec, +0x10,0x5e,0x13,0x1c,0x0f,0x9b,0x61,0x3c,0x23,0xff,0x04,0xcf, +0x93,0x6d,0xbd,0x30,0x0d,0x27,0xb0,0xc5,0x4d,0x25,0xfd,0xe9, +0x4d,0x16,0xe9,0x7c,0x88,0x99,0xf3,0x0e,0x67,0x0b,0x4e,0x5c, +0x86,0xd3,0xba,0x1f,0x32,0x50,0xf0,0x1d,0x09,0xaf,0x0a,0x6e, +0x0c,0x91,0x36,0xac,0x66,0x78,0x64,0x58,0xc6,0x51,0xdc,0xaa, +0x11,0x43,0xc2,0xcb,0x0f,0x34,0x1c,0x2e,0xa0,0xef,0xa5,0x7b, +0xa6,0x3b,0xc5,0xbb,0x71,0x78,0xc3,0x99,0x1a,0x0f,0x6e,0x45, +0x7a,0xd7,0x20,0x9a,0x6c,0x41,0xff,0xab,0xb6,0x75,0xdf,0x9a, +0xac,0x40,0xed,0x5c,0x4a,0x12,0xaf,0x65,0x5f,0xcd,0xbe,0x9c, +0x69,0x1e,0xcb,0x87,0x6e,0x30,0x42,0x56,0xdf,0xb8,0xcc,0x81, +0xaf,0xae,0xac,0xec,0x2f,0xb8,0xce,0xc1,0x58,0x26,0xdc,0xf8, +0xa0,0xb1,0x9f,0x59,0x60,0x96,0x5f,0x66,0x40,0x2a,0xcd,0x71, +0xb9,0x07,0xf3,0x03,0x73,0xfd,0x9d,0x0d,0xcc,0x65,0xda,0xce, +0xa5,0xd6,0x3c,0xa8,0xbd,0x7e,0x05,0x73,0xcb,0x60,0x09,0x9d, +0x79,0xfd,0x8d,0x32,0x38,0x88,0xb3,0xba,0x60,0xd6,0xab,0x76, +0x06,0x8f,0x81,0x3e,0xf9,0x0e,0xf5,0x97,0x33,0xe2,0x4b,0xd0, +0x96,0xbe,0xdc,0x98,0x7e,0xb9,0x92,0x20,0x03,0x20,0xc0,0x0e, +0xb4,0x3d,0xb8,0xf2,0x67,0xee,0xa5,0xbc,0x4b,0xb9,0xd4,0x8c, +0x09,0x35,0xe3,0xe0,0x5e,0xb5,0xf7,0x4c,0x55,0x52,0x72,0xcd, +0x07,0x33,0x9e,0xbf,0x88,0xf5,0x1f,0x35,0xe3,0xe9,0x6c,0xf9, +0xe5,0xd2,0xcb,0x85,0x97,0xe3,0xfe,0x63,0xc6,0x96,0x77,0x74, +0x1f,0x19,0x76,0x39,0xf8,0x8c,0x9a,0x71,0xb1,0xe3,0x96,0x13, +0x73,0x4e,0x2d,0x3d,0x53,0xde,0x53,0xf8,0x6f,0x33,0xde,0xeb, +0xae,0x65,0x47,0xcd,0xf8,0x40,0xd0,0x85,0x10,0xd5,0xcb,0x26, +0x55,0x97,0x9a,0x2f,0x51,0xf0,0x75,0x6a,0x9d,0xa3,0xc9,0x7c, +0x2b,0x69,0x47,0x4a,0x06,0x81,0x55,0xfa,0xb8,0x0a,0x3f,0x37, +0x82,0x6f,0x7a,0xd8,0x53,0xa2,0x2f,0xf1,0x3a,0xec,0x79,0xc4, +0xe3,0x48,0x1e,0x4c,0xce,0x81,0x85,0x09,0x30,0xd9,0x28,0x96, +0x0f,0x93,0xaa,0x36,0x6f,0xf1,0xc1,0x69,0x86,0x07,0x0c,0x0e, +0x1a,0x84,0x26,0x4a,0x8b,0x69,0xa5,0xa0,0xd8,0xf8,0xbe,0x9b, +0x43,0xfb,0x26,0x72,0x1c,0xa6,0x1c,0x81,0x89,0x41,0x30,0xce, +0xf4,0x18,0x9f,0x89,0x8a,0x09,0xa8,0x14,0x83,0x4a,0x9c,0xfc, +0x05,0xba,0x92,0x65,0x05,0xdb,0xca,0xa8,0x27,0x74,0x36,0x0f, +0x96,0xdd,0xe3,0xaa,0xb1,0x98,0x7a,0x42,0xd2,0x07,0x4f,0x70, +0xa6,0x9e,0xb0,0x70,0x5f,0x91,0xad,0xe4,0x09,0x69,0x59,0xe9, +0xa5,0xf6,0xd5,0x8e,0x4d,0xae,0x5a,0x8e,0x2b,0xdd,0x90,0xf5, +0x49,0xa3,0x80,0xf5,0xd3,0xe2,0x5f,0x6a,0x1e,0xb7,0xdc,0xb1, +0xfe,0xda,0xf1,0x1d,0xf5,0x04,0x15,0xea,0x09,0x89,0xc9,0x8a, +0x70,0x99,0x7a,0x81,0x23,0xf5,0x02,0x8b,0x4a,0x87,0x5a,0xd7, +0x26,0x1a,0xba,0x5f,0xc8,0x9f,0x11,0x34,0x30,0xc7,0x2f,0x8f, +0xe3,0x83,0xf3,0xc9,0xc6,0x3c,0xdc,0x8a,0x84,0xf4,0x04,0x30, +0x6c,0xe3,0x8e,0x63,0x09,0x59,0xde,0x0f,0xf3,0xd1,0x86,0x2d, +0xad,0x2d,0x68,0xcf,0xea,0xd5,0x4d,0xe7,0x83,0xf5,0x3d,0xf5, +0x9d,0xcc,0x38,0xf1,0x11,0x2e,0xe8,0x7f,0xc3,0x08,0xb3,0xa8, +0xa9,0xd4,0x1e,0xaa,0x39,0x5c,0x64,0x74,0x98,0x4f,0x71,0x4f, +0x75,0x8a,0xa5,0x78,0x4a,0x33,0x9d,0x1c,0xa9,0x38,0x50,0x1d, +0x52,0x60,0x1c,0xc4,0x67,0x78,0x67,0x3a,0x26,0xba,0x71,0x99, +0x68,0x40,0x62,0xd2,0xaf,0xa5,0x5f,0xc9,0x30,0x4a,0xe1,0x3d, +0xe7,0xec,0x5a,0xb1,0x68,0x6f,0x85,0x05,0x3f,0xd4,0xd4,0xdd, +0x5b,0x73,0x83,0x83,0xcd,0x4c,0xa8,0x9e,0xbf,0x89,0x8b,0x85, +0x77,0xb1,0x4b,0x91,0x57,0x86,0xb3,0x13,0x5f,0x16,0x58,0xe1, +0x55,0xe8,0x65,0x66,0xb2,0xcb,0x7a,0x95,0x0b,0xa5,0xc2,0xe0, +0xf4,0x2d,0x4c,0x84,0x65,0x55,0xa0,0xc5,0xd5,0xb1,0x30,0x84, +0x31,0x04,0x34,0x61,0x51,0x17,0x2e,0xfa,0xc9,0x70,0x11,0x1e, +0x30,0x69,0x47,0x4d,0x54,0x34,0x86,0x32,0x5c,0xd0,0x0b,0x0b, +0x60,0x6b,0x37,0x8b,0x3f,0x80,0x26,0xa1,0xf8,0x4f,0x93,0x62, +0x20,0x25,0xc1,0x09,0x7e,0x21,0x30,0x71,0xb8,0xf3,0x71,0x34, +0x7c,0x94,0x4b,0x6d,0x23,0xe7,0x12,0x47,0xf3,0x9e,0x7e,0x5a, +0x70,0x8f,0xda,0x4f,0x4c,0x55,0x42,0x72,0xb5,0xfa,0x43,0xd6, +0x32,0x59,0x71,0xfe,0x1a,0xc9,0x3a,0x28,0xcd,0xe6,0xd9,0x12, +0x1a,0xe2,0xf2,0xa8,0x75,0xc4,0x86,0xc6,0x1c,0x69,0x28,0xe2, +0xad,0xef,0x1a,0x3c,0x36,0x91,0xac,0xa3,0x50,0x6a,0xa0,0xe3, +0xd6,0x13,0x0b,0x4e,0x2e,0x3f,0x5b,0xd6,0x53,0x38,0x94,0xd5, +0x6f,0x96,0xc4,0x07,0x68,0x7b,0xec,0xb2,0xa7,0xd6,0x11,0x24, +0x59,0x47,0xd4,0x7f,0xad,0x63,0xb5,0xbd,0x81,0x86,0x8c,0xba, +0x8d,0x2f,0xf9,0x0d,0x3e,0x69,0xc6,0x4f,0xbe,0x87,0x4f,0x5a, +0xf0,0x93,0x37,0xa0,0xda,0x8a,0x7f,0x8a,0x47,0xa0,0x93,0xc5, +0x49,0xe7,0xd7,0x9f,0x32,0x51,0x33,0x3e,0x75,0x34,0xdc,0x42, +0x55,0x97,0x49,0x34,0x57,0xec,0x63,0xee,0x67,0xe5,0x3e,0x8d, +0x55,0xbf,0x76,0x37,0x92,0x12,0x4c,0x15,0x6c,0x83,0x46,0xf2, +0x06,0x14,0x96,0xb1,0x34,0x5d,0xcc,0x22,0xdf,0x83,0xc2,0x52, +0xe9,0x6a,0x11,0xbd,0xa1,0xc2,0x1c,0x56,0x7e,0x40,0xfc,0x82, +0xac,0x2d,0xdc,0x55,0x6e,0x58,0x3d,0xd4,0xd9,0x30,0x54,0x74, +0x97,0xda,0x46,0x1c,0x9b,0x9c,0x93,0x94,0x1b,0x9f,0x4f,0x89, +0x92,0xf3,0x5a,0xfd,0xed,0x4b,0xf6,0x15,0xd9,0x7f,0xb0,0x8d, +0x8c,0x62,0xfb,0x0a,0xc7,0x06,0x17,0x1d,0xc7,0xf5,0xae,0x33, +0x7c,0xd2,0x2d,0x78,0x18,0x57,0xfc,0xa6,0xe6,0x6e,0xcb,0x90, +0xf5,0x63,0xc7,0x37,0xd4,0x34,0x9e,0xc2,0x01,0x72,0xaa,0x3e, +0xac,0x35,0xac,0xc6,0x35,0x82,0x4f,0xb0,0x8b,0xb7,0xb9,0x6a, +0xc5,0x69,0x50,0xb4,0x13,0x6f,0x1c,0xb7,0xf7,0xca,0xb6,0xda, +0x18,0xfe,0xf4,0xf0,0xd1,0x27,0x47,0x3b,0x38,0xdc,0x8d,0x1d, +0x24,0xe3,0x49,0xd2,0x7b,0x3a,0x92,0xd6,0x57,0xf8,0xd3,0x73, +0x43,0x35,0x82,0xb7,0x71,0x20,0x55,0xdb,0xbc,0xba,0xe3,0xf2, +0xe2,0x4b,0xeb,0x1a,0xaf,0xf1,0x17,0x9e,0x9c,0xfc,0xe5,0xc4, +0x1d,0x8a,0x5d,0x42,0x49,0x42,0xa2,0x22,0x84,0x32,0xfe,0xe6, +0x2e,0x96,0x26,0x76,0x36,0x55,0xce,0x75,0x1e,0x92,0xb5,0xed, +0x6e,0x26,0xb0,0x1e,0x42,0xba,0x31,0x84,0xd2,0xd4,0xe0,0x2e, +0x0c,0xa6,0xbf,0xa2,0x7a,0xf1,0x38,0x9b,0x57,0x9f,0xd3,0x99, +0x50,0x65,0x98,0xc4,0x1f,0xb1,0xf1,0x37,0xf1,0xa0,0x43,0x67, +0xc0,0xe4,0x34,0xa6,0x37,0x26,0x35,0x99,0xa6,0xf3,0x16,0xf8, +0x85,0x26,0xaa,0xce,0xc2,0x8f,0x2a,0x64,0x7c,0x71,0x79,0x71, +0x4d,0x0e,0x65,0xc4,0xbf,0xf7,0x0f,0x0a,0x85,0x7d,0xec,0x88, +0x8e,0x30,0x44,0x1c,0x7b,0x4c,0x06,0x75,0x7b,0xed,0x1c,0xf8, +0x5e,0x93,0x4e,0xfd,0xc6,0x7d,0x1c,0x38,0xcd,0x25,0xf4,0xbe, +0xee,0x38,0x9f,0x45,0x77,0xe9,0xd8,0xe5,0x87,0x6b,0xb1,0x9c, +0xb6,0xff,0xe1,0x1f,0xb7,0x61,0x76,0x03,0x28,0x99,0xe4,0xf3, +0x94,0x1d,0xee,0x42,0x8d,0xed,0x8b,0x39,0xe1,0x35,0xd8,0x10, +0x5c,0x4f,0x29,0xc6,0x7a,0x8a,0xf3,0xc3,0x46,0xb1,0x98,0x2e, +0xc5,0x62,0xe5,0x96,0xfc,0xab,0xfb,0xb7,0x7e,0x6e,0x7b,0xcf, +0xc9,0x57,0xa0,0x89,0xa4,0x0b,0x15,0x5d,0x75,0xb9,0xf2,0x72, +0xf9,0xf3,0xd8,0x47,0x89,0xd7,0x93,0x02,0xda,0x78,0x24,0x5e, +0xe8,0xe6,0x8f,0x21,0xc7,0x39,0xcc,0xa5,0x5f,0x15,0x8a,0x7b, +0x8c,0x71,0xb6,0x5a,0xab,0x87,0xe2,0x00,0x2c,0x4b,0x03,0x5b, +0xf0,0x54,0x79,0x06,0xa1,0xec,0x19,0xaf,0xd3,0x5e,0x67,0xbc, +0x39,0x5c,0x24,0x36,0xf4,0xf4,0xc1,0x53,0x83,0x5e,0xa1,0x01, +0x8f,0x31,0x51,0x45,0xd1,0xc5,0x51,0xc5,0x1c,0xa4,0x30,0x62, +0x2b,0x68,0x90,0x17,0x91,0x2f,0xaf,0x3c,0xbb,0x76,0xce,0xe3, +0xac,0xdb,0x19,0x1a,0x6e,0x4f,0x30,0xb8,0x38,0x94,0xd8,0xcc, +0xdf,0x80,0x13,0xd7,0x48,0x30,0xae,0xa2,0xa4,0xa0,0x38,0xbb, +0x98,0x13,0x75,0x7a,0x85,0x04,0x36,0xbf,0x36,0xaf,0x39,0xbb, +0x99,0x03,0x7f,0xbc,0x42,0xcd,0xe2,0xd9,0x52,0xd6,0x52,0x61, +0x19,0x3e,0x7b,0xc3,0xa2,0x86,0x02,0x3c,0x9b,0x87,0xcf,0x28, +0x9e,0x7c,0x2c,0xf7,0x24,0x89,0xe5,0xf1,0xe5,0xd7,0xca,0xb5, +0x63,0x79,0x37,0xe9,0xb4,0xd7,0xe7,0xf8,0x99,0x46,0x8d,0x19, +0x5f,0x57,0x5e,0x55,0x55,0x4a,0x87,0x2f,0xf1,0xfa,0x23,0x41, +0x5d,0x70,0x15,0x75,0xd8,0xfc,0x8a,0x9c,0xca,0xf4,0x6a,0x4e, +0xe8,0x62,0x70,0x20,0x1c,0x2d,0x0e,0x6f,0x54,0xd3,0x0d,0x0b, +0x0c,0xd2,0x55,0xc5,0xd9,0x4c,0xbc,0xb1,0x22,0xcc,0x65,0xbe, +0xaa,0x2d,0xf9,0x26,0x43,0x3d,0xf3,0xc7,0x78,0x08,0x83,0x1f, +0x54,0xf0,0xb1,0x54,0x9f,0xf3,0x25,0xcc,0x81,0x97,0xd2,0x29, +0x1f,0x1b,0x02,0x2f,0x71,0x09,0xbe,0xa4,0xdf,0xd9,0x26,0xb8, +0x92,0x13,0x49,0xa7,0x2e,0x1e,0x8b,0x08,0x8f,0xa0,0xb8,0xf1, +0x33,0x50,0xea,0x42,0x25,0x30,0x30,0x42,0x03,0xd4,0x30,0x01, +0x65,0xe6,0x18,0x4e,0x75,0xc2,0x19,0x8b,0x71,0x7a,0x95,0x35, +0xff,0xf0,0xaf,0xfc,0xf7,0xd1,0x3f,0x72,0x57,0xc4,0x6c,0x8a, +0x4b,0x25,0x6d,0x97,0xc8,0xb3,0x6a,0x2f,0x71,0x93,0xc4,0xc5, +0x6f,0xc1,0x23,0x82,0xfb,0x99,0x68,0xf8,0xf8,0x76,0xec,0x50, +0x7c,0x47,0x82,0xb2,0x67,0x2b,0x8e,0xf7,0x42,0xfd,0x03,0xb8, +0xfb,0xa4,0x32,0x8d,0x7f,0xe8,0x7e,0x14,0xb7,0x1b,0xe0,0x17, +0x6a,0xcd,0x4e,0x8a,0x37,0x61,0x5e,0x22,0xd8,0x83,0x87,0xca, +0x77,0x60,0xcb,0x9e,0x98,0xaf,0x88,0xea,0x22,0x8d,0x29,0x90, +0x65,0xd8,0x23,0x34,0xa1,0x11,0x73,0xed,0x17,0x45,0x08,0x60, +0xc4,0x20,0x50,0x23,0xb7,0x22,0xef,0x5e,0xb9,0x75,0xed,0x82, +0xe7,0x79,0x8f,0xf3,0x9e,0x1c,0x3a,0x32,0x30,0x16,0x5b,0xa9, +0x77,0x65,0x2d,0x63,0x2d,0xe8,0xe0,0x65,0xd1,0xc1,0x9b,0xa5, +0x00,0x59,0xf3,0x30,0x8b,0x46,0x8c,0xbb,0x72,0x77,0x12,0x5b, +0x72,0xad,0xf8,0x4a,0x89,0x91,0x74,0xb8,0x76,0x8c,0xad,0xc6, +0x9e,0x95,0x35,0x16,0x7c,0x7a,0xbe,0xa2,0xe8,0xde,0xf3,0x10, +0x82,0x05,0x1d,0x8c,0x66,0xd3,0x4a,0x53,0xca,0x12,0xcb,0x39, +0xe8,0x5b,0xc3,0xe0,0xb4,0x33,0x18,0x18,0x8a,0x93,0xd5,0x34, +0x8f,0x07,0x3b,0x6b,0xab,0xa2,0xd2,0x68,0x6d,0x46,0x86,0xf9, +0xad,0xa0,0x0b,0xb8,0x24,0xf5,0x64,0x98,0x1a,0x05,0x01,0x40, +0x54,0x60,0x26,0x2b,0x9e,0x4b,0x27,0x9d,0x28,0x9a,0x52,0x9e, +0x77,0x14,0xb7,0xb8,0xe0,0x8a,0xf5,0xc8,0x54,0x3b,0xf3,0x3d, +0x4f,0xaa,0x7e,0xcd,0x92,0xce,0x34,0x2b,0x33,0xa7,0xd6,0x1c, +0xdd,0x1c,0xbc,0x9d,0x92,0xc9,0x42,0x8f,0x5c,0x2f,0x7b,0xbe, +0xda,0xbb,0xc2,0xa3,0xc4,0xcd,0x59,0xc3,0x68,0xd9,0x86,0xf5, +0x35,0xf6,0xd2,0x66,0xfd,0x8d,0x8f,0xc1,0x2e,0x1d,0x52,0x28, +0x2c,0xdc,0xcd,0x5e,0xad,0x8f,0x6e,0x8c,0x6c,0xe0,0x04,0x2f, +0x71,0x3c,0xc1,0xad,0xa0,0x0a,0x5b,0x19,0x9a,0x8f,0x0d,0x09, +0x6c,0xc5,0xd9,0xb8,0x95,0x51,0x92,0x2b,0xcb,0x4f,0x93,0x57, +0xba,0xab,0xb1,0xce,0x4c,0x3e,0xb7,0x83,0x1d,0x59,0xee,0x40, +0x6c,0xea,0x8c,0xea,0x4d,0x4a,0x3c,0x6c,0xf8,0x5e,0xd7,0x16, +0xe7,0x16,0x3b,0x4e,0x3e,0xc9,0x97,0x88,0x49,0xe8,0x24,0x24, +0x31,0x23,0x8f,0x60,0x12,0xe9,0x77,0xbe,0x6e,0xd5,0x6e,0x55, +0xd9,0xc0,0x5b,0x35,0xee,0x6d,0xdf,0x57,0xc9,0xc9,0x83,0xc2, +0x89,0x86,0xf8,0xf9,0x7b,0x16,0x8e,0x8a,0xf3,0x49,0x1e,0xfb, +0x22,0xfb,0xdb,0x92,0x3b,0x4d,0x5c,0xbd,0xf8,0x95,0xb9,0xe0, +0xc9,0x5a,0x04,0xee,0x0b,0xd9,0x7e,0x88,0xdb,0x87,0x8f,0x65, +0xf0,0x18,0xbf,0x40,0xf3,0xd1,0x83,0x13,0x9a,0xff,0xae,0x0b, +0xf1,0x09,0x74,0xb6,0xb3,0x23,0x3f,0xe0,0x05,0x72,0x13,0xc6, +0xb4,0xc0,0xe7,0xb9,0x7f,0x50,0x4c,0xec,0x33,0xfa,0x50,0x41, +0x7b,0x9e,0x24,0xe6,0x0d,0xdb,0xc8,0xaf,0xc2,0xe2,0x0e,0xfc, +0xf2,0x35,0xf8,0xb6,0xa1,0xef,0xd7,0xa3,0x3f,0x5f,0xc0,0xb9, +0x0e,0x0c,0x65,0x53,0xf2,0x13,0xf2,0xe2,0x8b,0x4c,0x62,0xf8, +0x30,0xd7,0x23,0xbe,0x21,0xd4,0x7d,0x34,0x99,0xe4,0x82,0x84, +0x82,0x98,0x7c,0xd3,0x04,0xde,0x65,0xb1,0xce,0xc2,0x25,0x9b, +0xaa,0x1c,0xf9,0x8c,0x94,0x8c,0x8c,0x8c,0x6c,0x0e,0x1f,0xfc, +0x36,0x4f,0x5c,0x69,0x22,0xac,0x44,0xa3,0x41,0x30,0x12,0x76, +0x74,0xb1,0x23,0x5f,0x08,0xd7,0x89,0x79,0x99,0x4e,0x89,0x5e, +0xae,0xb7,0x25,0x3f,0xe8,0xdb,0xbd,0xbf,0xc7,0x8d,0x03,0xe1, +0x3c,0x59,0x8f,0x9e,0x03,0x6c,0x54,0x74,0xd4,0x95,0xcb,0x57, +0x38,0x3a,0x56,0xaa,0xc4,0xb2,0x54,0xb7,0x54,0x3f,0xdb,0xcb, +0x8a,0xbf,0xee,0xdb,0xed,0xdb,0x45,0x3f,0x64,0xe4,0x4e,0xbe, +0x06,0xcf,0xb5,0x2c,0xca,0x8f,0x11,0x63,0xfd,0xcd,0x7b,0xd7, +0x5a,0x94,0x5b,0xf0,0x2f,0xdb,0x1f,0xdd,0xea,0xa2,0xb9,0xea, +0xc1,0x25,0xb2,0x0a,0x3d,0x5f,0xd3,0x30,0x71,0x45,0x6e,0x46, +0x1c,0xeb,0x2d,0x1b,0x2d,0xcb,0x24,0xd5,0x05,0xa7,0x1a,0xa7, +0x06,0x1b,0x0e,0x7e,0x43,0x0b,0x02,0xdf,0x62,0xed,0x3f,0x63, +0x7b,0x85,0x0a,0x56,0xf8,0x01,0x28,0x98,0x6f,0xc1,0x6f,0xe1, +0xb8,0xe8,0x8f,0x73,0x98,0x58,0x99,0x54,0x8d,0xb0,0x36,0x39, +0xa5,0x52,0x5d,0x5c,0x2f,0xff,0x92,0x2c,0x43,0xad,0x37,0x2c, +0xfc,0x39,0x1d,0xf6,0x2d,0xc3,0x7d,0x0c,0xee,0xc2,0xb9,0x04, +0xb5,0xde,0x82,0x16,0x03,0xbb,0x16,0x90,0xb7,0xb0,0x6f,0x01, +0x3b,0xf2,0x99,0x3e,0x71,0x6a,0xd4,0xef,0x32,0xab,0x76,0x75, +0xe0,0x5b,0x1d,0xbb,0xcc,0xeb,0x2d,0x39,0xf9,0x44,0x3a,0xdb, +0x6d,0x68,0xfc,0x27,0xac,0x6a,0xc5,0x55,0x6f,0x61,0x77,0xab, +0xb8,0xd8,0x82,0xfe,0x05,0xae,0xb0,0x80,0x15,0x33,0xd1,0xd0, +0x9c,0xc5,0xfa,0xd9,0xa4,0x1f,0x14,0xaa,0x40,0x2d,0xf5,0x77, +0xe3,0x64,0xfe,0x00,0x2a,0x7a,0xe1,0x04,0x63,0x69,0x2b,0xf6, +0x5e,0x39,0x75,0x5e,0x39,0x13,0x55,0x76,0xb9,0x2c,0xaa,0xfc, +0xaf,0x6b,0x6f,0xe3,0x5e,0x26,0x7a,0xf7,0xf0,0x68,0xe8,0x8e, +0x41,0x47,0xf0,0xce,0x79,0x0e,0xcd,0x58,0xfc,0x36,0x18,0xe7, +0xef,0xc5,0x49,0x6a,0x1d,0x56,0x8a,0x8f,0x60,0x46,0x1a,0x0d, +0x9e,0xa0,0x02,0x4f,0x98,0x33,0x1e,0xa7,0x3d,0x4f,0x79,0x71, +0x18,0x28,0x76,0x51,0x28,0xeb,0x29,0xeb,0x17,0xba,0xb0,0x8f, +0x89,0x2e,0x8e,0x2e,0x89,0x2a,0xe5,0x84,0xb1,0xcc,0xc8,0x29, +0x98,0x47,0x40,0xe9,0x22,0x70,0x51,0x30,0xe6,0xca,0x39,0xcf, +0xb3,0x1e,0x67,0x3c,0x38,0x7c,0xc5,0xc0,0x5c,0xec,0x23,0x3f, +0x08,0x9e,0x4b,0x58,0x99,0xc2,0x12,0xd1,0xf3,0x07,0x16,0xe7, +0x29,0x08,0x9e,0x73,0x44,0x4f,0x29,0x4c,0xd1,0x09,0x49,0xf0, +0x8b,0xf7,0x8a,0xf3,0x94,0x9d,0x36,0x3d,0x63,0x72,0x56,0x52, +0x17,0x64,0xfe,0xaf,0xba,0xa0,0x8b,0x5e,0x48,0x76,0x50,0xf6, +0x81,0xac,0xea,0x81,0xff,0x3f,0x75,0xc1,0x48,0x49,0x5d,0x70, +0x69,0xaf,0xb0,0x9a,0xf2,0x95,0x72,0xda,0xd3,0xe8,0x43,0xd1, +0x87,0xa2,0xa4,0x43,0x68,0x07,0xef,0x04,0xdc,0xf3,0xeb,0xe5, +0x84,0x44,0x31,0x99,0xe0,0x24,0xc6,0x2e,0x2c,0xbe,0x41,0x1d, +0x76,0x81,0x0c,0xfe,0x30,0xc4,0x26,0x54,0x15,0x26,0xb3,0x5f, +0x25,0x3f,0xce,0x18,0xce,0xf1,0x6f,0xe5,0x8d,0x82,0x76,0x1f, +0xdc,0x1e,0xc6,0xbd,0x37,0xc4,0x71,0xac,0x56,0xf8,0xf6,0x13, +0x3b,0x4f,0xc7,0x9a,0xf0,0x37,0xa3,0x6e,0x5f,0xbb,0x11,0xc7, +0x89,0x0a,0x48,0x20,0xde,0x58,0x54,0xef,0x7e,0x02,0x04,0xf7, +0xb1,0x9a,0x85,0x9e,0x4f,0xd5,0x60,0x22,0xd3,0x94,0x9a,0x4e, +0xef,0x37,0x8b,0x35,0x4a,0x52,0x14,0xef,0x7e,0x4d,0x72,0xb6, +0xa7,0xaf,0x4b,0x5c,0xdf,0x91,0xce,0x87,0x3d,0x3e,0xf0,0xd2, +0xef,0x2e,0x87,0x25,0xd8,0x44,0xaa,0xbf,0xce,0x78,0x9b,0xf0, +0x56,0xf6,0x7f,0x25,0x07,0x85,0xd2,0x5f,0x89,0x03,0x4c,0x31, +0x86,0x99,0xfa,0x7f,0x74,0x7c,0xd3,0x09,0x33,0xcb,0x61,0xdc, +0xbe,0x64,0xde,0x1d,0x27,0xd9,0xe0,0xa4,0x9d,0xa8,0x74,0x0f, +0xa7,0x77,0x22,0xa9,0x43,0x9e,0x83,0x8c,0x02,0xe2,0x04,0x1f, +0xeb,0xc2,0x5c,0x9d,0xdf,0xfb,0x7f,0xee,0x84,0xcf,0xcb,0x40, +0x41,0x2f,0x85,0x7e,0x72,0x9c,0x39,0x7e,0xba,0x13,0x27,0x3c, +0xc7,0x59,0x9d,0xa8,0x54,0x8b,0x13,0x38,0x48,0x2e,0x21,0xb6, +0x30,0x41,0x07,0xd4,0x75,0xbe,0xef,0x7f,0xd3,0x03,0xaa,0x15, +0x40,0x11,0x0f,0xfd,0x24,0x67,0x8a,0xd3,0x28,0x60,0x7f,0x85, +0x9f,0x77,0xe2,0xf8,0x46,0xfc,0x84,0x13,0xdf,0x0a,0xc9,0xc4, +0xfc,0xb1,0xee,0x63,0xd3,0x4e,0x6b,0x37,0xbe,0xdb,0xb4,0x7f, +0x73,0xeb,0x36,0x9a,0xe8,0x47,0xa6,0x91,0x9f,0xaa,0xdb,0x7a, +0x23,0x1f,0x70,0x12,0x8b,0x7e,0xb1,0x1d,0x56,0xaa,0x0a,0x07, +0x99,0x98,0x01,0x45,0xf1,0x14,0x33,0xca,0xbb,0x19,0x89,0x77, +0xdb,0x18,0x80,0xaa,0xc4,0xbb,0x5d,0x4c,0x34,0xec,0xd5,0x94, +0x84,0xbf,0x7e,0x26,0x09,0x36,0x8a,0xc0,0x31,0x75,0xd2,0xce, +0xca,0x77,0xb0,0xaa,0x05,0x57,0xf5,0xc3,0x18,0x78,0x84,0x36, +0xed,0x70,0xba,0x05,0x65,0x6c,0x6a,0x76,0x6a,0x71,0x52,0x81, +0x71,0x06,0x1f,0xe6,0x1d,0x68,0x1f,0xe8,0xc9,0x89,0xbc,0x25, +0x04,0xc9,0xd0,0x14,0x1f,0x09,0x4b,0xf4,0x45,0x0b,0x4b,0xc1, +0x02,0x3f,0x66,0xd0,0x5a,0xbe,0x9a,0x1c,0xc9,0x0e,0x28,0x0f, +0xc9,0x34,0x09,0xe6,0xd3,0x82,0x73,0x3c,0x12,0x29,0xdf,0x72, +0xc0,0x99,0xff,0xaf,0x1a,0xdf,0x4e,0x98,0x4c,0x64,0x6b,0xdb, +0x59,0x8b,0x79,0x24,0xc2,0xcb,0xdb,0x57,0x2b,0x24,0xd5,0x9e, +0xff,0x36,0xb7,0xba,0x31,0xb6,0x9d,0x7b,0xed,0xc8,0x38,0xa6, +0x86,0xd5,0xa8,0x81,0xb2,0xb3,0xe8,0x0a,0xea,0x0c,0xbc,0x33, +0x25,0x07,0x4f,0x47,0x27,0xab,0x17,0xc1,0x2c,0x53,0x56,0x9c, +0x2b,0x16,0x7c,0xd8,0x9d,0xc4,0x49,0xbb,0x93,0x74,0x0d,0x60, +0x22,0xed,0xc8,0x12,0x1f,0xd9,0x42,0x69,0x77,0xd2,0xab,0x9a, +0xba,0xce,0x7f,0xef,0x4e,0x7a,0xb6,0x0b,0xd6,0xa8,0x0a,0x17, +0x98,0x98,0x7e,0x45,0x54,0x14,0xe6,0x11,0x7b,0xd1,0x95,0x62, +0x50,0x03,0xec,0x22,0x6e,0x85,0x56,0xc5,0x96,0x59,0x1e,0x6e, +0x7c,0x5b,0x40,0x83,0x77,0xb9,0x0f,0xc5,0x36,0x07,0xe5,0x27, +0xc8,0x37,0x86,0x2b,0xd1,0xde,0x4c,0xf0,0xa7,0xc1,0x36,0xf1, +0xc2,0x7f,0x77,0x8f,0xb4,0x7f,0xd8,0x3d,0x32,0xae,0x43,0x9c, +0x6d,0xc6,0x82,0xde,0x7f,0x77,0x8f,0xc8,0x27,0xc4,0x12,0x51, +0x05,0x5d,0x04,0x15,0xc6,0x08,0x56,0x92,0x19,0x98,0xf7,0x17, +0x8b,0x96,0x98,0x49,0x34,0xf0,0xc2,0x63,0x36,0xdf,0xef,0x7f, +0x6e,0x16,0xb1,0x4d,0x0b,0xac,0x51,0xc3,0x65,0x70,0x89,0xe0, +0x98,0xf0,0x35,0xce,0xd2,0xce,0x92,0x36,0x16,0xb6,0xa1,0xcb, +0xff,0xdc,0x3e,0x22,0x48,0x6a,0xdf,0xd9,0xec,0x70,0xfe,0x70, +0x59,0x73,0x23,0x57,0x2b,0xee,0x32,0x87,0x6f,0x59,0x37,0x7f, +0xeb,0x20,0x83,0x60,0xce,0x04,0x03,0x64,0x10,0x80,0x33,0x28, +0x12,0x4a,0x32,0x55,0x84,0x69,0x4c,0x43,0x72,0x4a,0xbd,0xba, +0x74,0x5a,0x81,0x06,0xe9,0x1b,0x07,0x08,0x5c,0x40,0x16,0x2f, +0x30,0x4a,0x6f,0x85,0x44,0x82,0xe7,0x4f,0xe1,0x26,0x0b,0xfc, +0x4c,0xad,0xde,0x5e,0xb1,0x17,0xe6,0xc5,0x50,0x27,0x49,0x50, +0x81,0x06,0x13,0x16,0x5e,0x8f,0xfc,0x4d,0xe4,0x7f,0x9b,0x8c, +0xfc,0xcd,0xc2,0x24,0x1a,0x01,0xc5,0x54,0x61,0xa9,0x90,0x8a, +0xae,0x6c,0x52,0x69,0x5c,0x59,0x6c,0x09,0x07,0x2e,0x9d,0x62, +0x88,0x29,0x78,0x33,0x11,0x5e,0xc7,0x3c,0x42,0x29,0x49,0x7c, +0x2b,0x8a,0x44,0x7e,0xda,0x54,0xaa,0x08,0x74,0x5b,0x70,0x26, +0xbf,0x42,0xf3,0x3c,0x9a,0x72,0x67,0x63,0xf3,0xef,0x2c,0x2e, +0x53,0x80,0x66,0x1c,0x8b,0xcd,0x0c,0xd8,0x20,0x43,0xda,0x3d, +0x6f,0xcb,0x9a,0xad,0xca,0xeb,0x78,0xab,0x86,0xbd,0xcd,0x66, +0xa5,0xd2,0xf9,0xa6,0x5d,0xe4,0x7e,0x65,0x77,0x53,0x73,0x87, +0x6d,0x09,0xef,0x68,0x65,0x68,0xb7,0xc7,0x93,0x8e,0xf2,0x52, +0xea,0xba,0xab,0x70,0xc2,0x00,0x4c,0xd8,0xa2,0x3e,0x0c,0x53, +0x6a,0x61,0x59,0x12,0x18,0x73,0x6d,0xe8,0xce,0x46,0x57,0x5c, +0xae,0xb8,0x54,0x66,0x14,0xc9,0x47,0xe0,0x0e,0x3b,0xa4,0x44, +0x54,0xa9,0xc6,0x9a,0x2f,0x6b,0xc9,0xef,0xcd,0x1c,0x48,0x98, +0x95,0xb7,0xbc,0x4a,0xd3,0x6c,0xd9,0xee,0x6d,0x6b,0x0c,0x2a, +0x2d,0xf8,0xa7,0x3d,0xb7,0xee,0x75,0x7d,0xc7,0xe1,0xc4,0x97, +0x40,0xf6,0xc0,0x0e,0x55,0x28,0x62,0x62,0xfb,0x14,0xc5,0xf0, +0xd7,0x52,0x91,0x22,0x95,0x34,0x58,0x06,0x97,0x55,0x5e,0xc0, +0x7c,0xf1,0x4b,0x56,0x27,0x3b,0xb4,0x53,0xed,0x26,0x53,0x99, +0x92,0xd0,0xa4,0x0e,0x1b,0x46,0xd5,0xb8,0x0d,0x8d,0x58,0xff, +0x73,0xb1,0xb9,0xea,0x42,0x1d,0x66,0xa0,0x3a,0x8b,0x11,0x87, +0x71,0xf6,0x2c,0x1c,0xaf,0x86,0x5e,0x82,0x8c,0x44,0x65,0x44, +0x65,0x5c,0xce,0xe0,0x60,0x2d,0x13,0x86,0xab,0xbc,0x50,0x59, +0x86,0x63,0x1d,0xbf,0x09,0x04,0xc5,0x93,0xa0,0x42,0x5d,0x7d, +0x06,0x3c,0x20,0xc5,0xf5,0x99,0xd5,0x99,0x8d,0x76,0xb9,0xfc, +0x21,0xbb,0x10,0x57,0x3f,0x27,0xcf,0x52,0xfe,0xc4,0xd5,0xe3, +0x91,0xe1,0xe1,0x27,0x4e,0xf0,0x67,0x62,0x99,0x96,0x81,0x8e, +0x6f,0xb2,0xbf,0xa3,0xc9,0x9d,0x87,0x25,0xfa,0x14,0x58,0x2d, +0x36,0x82,0x42,0xd6,0x19,0x95,0xe6,0xa3,0x1a,0x6e,0x43,0xae, +0xd8,0x92,0x1f,0xa8,0x6f,0x6b,0xac,0xa8,0xe6,0xc4,0xf9,0xd7, +0x85,0x0d,0x92,0xb4,0xab,0xa4,0x8a,0x37,0x13,0x97,0xd4,0xd4, +0x29,0x7a,0x08,0x47,0x09,0x2c,0xb5,0x60,0xf0,0x91,0x15,0x1a, +0xe2,0x3a,0x34,0x54,0x6b,0xb1,0x54,0xa4,0x33,0xe7,0xd0,0x06, +0x7e,0xf0,0x5c,0xa5,0x19,0x9c,0x28,0x97,0xd8,0x16,0x81,0xb2, +0x83,0xb8,0x58,0x6d,0xd9,0x31,0xbf,0xe0,0xad,0xaa,0xf3,0x99, +0x94,0x7d,0x8a,0x3f,0x52,0x34,0x54,0x53,0x03,0x9f,0x25,0xab, +0xd3,0x9e,0xc7,0x82,0x05,0x68,0xaa,0xc0,0x42,0x31,0x9c,0x55, +0x12,0x1e,0x0a,0xd7,0x08,0x68,0xb3,0x30,0x3b,0x09,0x94,0xf2, +0xbf,0xab,0xf4,0x6a,0xe5,0x97,0xbb,0x22,0xe7,0x87,0x5a,0x07, +0x39,0x8c,0x64,0x31,0xda,0x16,0xe7,0xcd,0xc1,0x09,0x6a,0x75, +0x16,0x7f,0x01,0x69,0x83,0x45,0x51,0x10,0xad,0x0c,0xbb,0xc5, +0xdc,0xeb,0x42,0x2e,0xcc,0xe8,0x66,0xfe,0xe1,0xa1,0x98,0x18, +0x0a,0xf3,0x7a,0x59,0xec,0x13,0x2f,0x11,0x28,0xa7,0x50,0xf1, +0x17,0xac,0x60,0x70,0x49,0x04,0x2a,0x58,0xcc,0x56,0x6b,0xb2, +0xeb,0x04,0x26,0xe5,0xaf,0x48,0x98,0xad,0x0c,0x41,0x9d,0x04, +0x83,0xe0,0x00,0x04,0x31,0x52,0x51,0xa5,0xbf,0x09,0x86,0x33, +0xf7,0x2b,0x6f,0xd5,0xf6,0x37,0x3b,0x97,0xf1,0xce,0xde,0x0e, +0xfb,0x6d,0xfd,0xb9,0x0a,0xbc,0x76,0x5b,0x18,0x0f,0xc9,0x23, +0x5e,0x98,0x0c,0x75,0x5a,0xd8,0x66,0x09,0x6d,0xda,0xe2,0x04, +0x0b,0x61,0x3d,0x8b,0xd3,0xac,0x71,0xb6,0x13,0xae,0x70,0x4f, +0xb5,0xe0,0x7b,0x13,0x7b,0x13,0x7b,0x92,0x39,0x8c,0xeb,0xaf, +0x11,0x7c,0x1d,0xfb,0xe1,0x8e,0xb8,0x84,0xed,0x4f,0xef,0xcb, +0xea,0xce,0xe6,0xe0,0x07,0x06,0x67,0x09,0x6a,0x44,0x7c,0xd7, +0x2b,0xbc,0x63,0x34,0x14,0x74,0xc5,0x77,0x83,0x2c,0xd4,0xe1, +0x11,0xa9,0xe8,0xb5,0xf3,0x01,0x87,0x10,0xbb,0x10,0x69,0x27, +0x2f,0x1a,0xe1,0x31,0x32,0x2c,0xf8,0x6a,0xb3,0xa2,0xaf,0x2d, +0x11,0x7c,0x77,0x8b,0xbe,0xb4,0x55,0x06,0x82,0x2a,0xc1,0x25, +0x4c,0x53,0x45,0x5d,0x75,0x75,0x93,0x5b,0x11,0x2f,0xd3,0x33, +0x32,0xd7,0xb6,0xe3,0x34,0x5f,0xc0,0x86,0x26,0xdc,0xf0,0x08, +0x52,0xc1,0x53,0x4c,0x47,0x4f,0xb0,0xd9,0x8a,0xba,0xd6,0xa0, +0xbb,0x1e,0x83,0xad,0xa1,0x98,0x59,0x63,0xbd,0xc0,0x05,0x15, +0x3d,0x52,0xad,0xf8,0x92,0xb8,0xa2,0xd8,0xa2,0x78,0x0e,0x4b, +0xbb,0xea,0xe0,0x86,0x7d,0x37,0xbc,0xc5,0x52,0xb6,0x3e,0xa3, +0x26,0xab,0x2a,0x87,0x22,0x79,0x66,0xa4,0x57,0x64,0x28,0x1e, +0xd5,0x93,0x87,0xe0,0x85,0x91,0x3b,0xac,0xe0,0x2e,0x2f,0x22, +0x38,0x7e,0x2e,0x8c,0x67,0x61,0xe9,0xf4,0xdf,0x70,0xfc,0x1c, +0x06,0x96,0x4d,0x87,0xf1,0x7f,0x4a,0x25,0x08,0xbf,0xc1,0x8d, +0x92,0x24,0x48,0x9a,0x24,0x09,0x32,0x1d,0x1f,0x10,0x98,0x8e, +0xdd,0x38,0x9d,0x11,0xa6,0x65,0x93,0x27,0x70,0x63,0x33,0x8b, +0x37,0xec,0x08,0xdc,0x58,0x87,0x37,0x68,0xab,0xf5,0x85,0x6a, +0x82,0x66,0xcc,0xf0,0x8d,0x9e,0x87,0x2d,0xdf,0x58,0xe6,0xf3, +0xc6,0xb3,0xb5,0xd6,0x6c,0xde,0xc9,0x6d,0x02,0x02,0x06,0x1d, +0x68,0x20,0x6d,0x33,0x1a,0x8b,0x16,0x66,0x60,0x81,0x04,0x8f, +0x9b,0xc2,0x10,0xb3,0x60,0x1b,0x7e,0x6c,0x88,0x93,0xac,0x73, +0xcc,0xf8,0xc2,0xf8,0xc2,0x84,0xfc,0x44,0x4e,0xe4,0x7a,0xbb, +0x41,0x30,0xee,0x17,0xcc,0xf1,0x2b,0xb6,0xab,0xb4,0xbd,0xb2, +0xb9,0x86,0x83,0xcb,0xcc,0xc8,0xaf,0x94,0x9f,0x0e,0x79,0xf4, +0xba,0x74,0xd9,0x97,0xb4,0xf0,0x66,0xb5,0xba,0xb5,0xba,0x45, +0x1c,0xa8,0x8b,0x63,0x89,0x69,0xfd,0xce,0xa6,0xbd,0x25,0x5e, +0x96,0xfc,0x0d,0xf7,0x61,0xfb,0x1e,0x5b,0x49,0x40,0xdd,0x9d, +0xf2,0x71,0x10,0x50,0x81,0x1d,0xb1,0xc7,0x6c,0xf2,0xe8,0x8f, +0x7e,0x50,0x2e,0xfb,0xd3,0x24,0x93,0x77,0xc1,0xb1,0x66,0xc8, +0x69,0x2e,0xe0,0x84,0x25,0xa0,0x45,0xe8,0x27,0x26,0xa1,0xc0, +0x48,0x65,0x20,0x4f,0x90,0x57,0x5a,0xab,0xc5,0x71,0xb8,0x9f, +0xc5,0xab,0x21,0xb8,0x5d,0x0b,0x95,0xd4,0xda,0x64,0x14,0x8f, +0xcc,0xca,0x01,0x63,0xc8,0x54,0x81,0x55,0xf2,0x73,0x3d,0x2c, +0x6e,0xc4,0x52,0x02,0xeb,0x7a,0x70,0x1d,0x4c,0xd3,0xc5,0x69, +0x98,0xfb,0xe1,0xd7,0x2c,0x23,0x98,0x85,0xde,0xc2,0x5c,0x46, +0xb7,0x87,0xd0,0xf7,0x56,0x40,0x2e,0xd3,0x82,0x55,0xa4,0x79, +0x7b,0xf5,0xaa,0xd2,0xd5,0x7d,0xb9,0xbc,0xfb,0x4b,0xdb,0x97, +0xd6,0xf7,0x38,0xf1,0x2e,0x16,0x92,0xce,0x7b,0x8d,0x3f,0x66, +0xbe,0x34,0x4a,0xe1,0x0f,0xac,0xb5,0x5b,0x27,0xd3,0xe6,0x84, +0xe5,0xe0,0x4a,0x0a,0xb6,0x65,0xad,0x4c,0xd2,0xbc,0x1e,0xcf, +0x1f,0x79,0xe2,0xf7,0xd2,0xe7,0x3e,0x87,0x9e,0xe1,0x24,0x6e, +0xdb,0xb5,0x95,0x91,0x9a,0x83,0xd1,0xfc,0xd9,0x27,0x11,0x5f, +0x1f,0x95,0xea,0xbd,0xd1,0x0e,0x11,0x8a,0x2b,0x3e,0x20,0x8b, +0x43,0x14,0x59,0xf8,0xf7,0x5a,0x1f,0xe4,0x25,0x38,0x13,0xeb, +0x69,0x79,0x5a,0x76,0xc6,0xec,0xec,0xe0,0x57,0xb7,0xa4,0xe3, +0xed,0x9c,0xe5,0xbf,0xc5,0x92,0xf5,0x0e,0x52,0x38,0x13,0x94, +0x55,0x39,0x50,0x76,0x37,0xff,0xa6,0xec,0xc3,0xf1,0x76,0x0f, +0x13,0x9b,0x3a,0xde,0xc3,0xae,0xd3,0xba,0x83,0x42,0x19,0x65, +0x8a,0x65,0xdc,0x0e,0xf8,0x78,0x9e,0xf7,0xbc,0xe0,0x79,0x21, +0xda,0x98,0xef,0xb9,0xd4,0x7b,0xb9,0x87,0x62,0x99,0xd5,0x3d, +0xc2,0x46,0xb6,0x34,0xb2,0x34,0xaa,0xe4,0x32,0x27,0x7c,0x45, +0xa9,0x79,0x27,0xae,0x62,0xbb,0x6e,0x35,0x3d,0xa9,0xfd,0xde, +0x32,0x8b,0xb7,0x9d,0x65,0xb4,0x5a,0x67,0x3b,0xa7,0x07,0xd3, +0x60,0x49,0x3b,0x2e,0x01,0x05,0x23,0x54,0xc0,0x15,0x32,0x58, +0x41,0xc7,0xc2,0xc8,0x14,0xae,0x31,0x9b,0xb7,0xad,0x34,0x5c, +0x6a,0x93,0x6b,0xce,0xa7,0xc5,0xd2,0x17,0xc5,0x2f,0x1f,0x77, +0x77,0x43,0xb9,0x71,0xaf,0x60,0x86,0x85,0x6c,0x43,0x59,0x5d, +0x65,0x55,0x2d,0x87,0xe6,0x58,0x46,0x40,0x11,0xca,0x51,0x91, +0x15,0x73,0x1a,0x49,0xee,0x96,0x8c,0x95,0x89,0xab,0x24,0xf0, +0xf2,0x3c,0xf0,0x5b,0xdf,0x47,0x1c,0xe6,0x53,0xf0,0x52,0xf5, +0x75,0xc6,0xaf,0x71,0x92,0x5e,0x72,0xc4,0xca,0xe0,0x55,0x2e, +0xeb,0x39,0x21,0x15,0x16,0x50,0xbf,0x46,0x25,0x2c,0x97,0xfc, +0x56,0x58,0x45,0xf0,0x1c,0xf3,0xa4,0xe1,0x6e,0xeb,0x60,0xb7, +0x2b,0xf5,0x5b,0x77,0x07,0x2f,0x5b,0x1f,0xae,0x16,0x13,0x1e, +0x0a,0x1b,0xc1,0x70,0xe4,0x3a,0x1a,0xc2,0x9b,0x6d,0xd8,0x66, +0x01,0x6d,0x1b,0xc4,0x09,0xe6,0xc2,0x2e,0x16,0x95,0x8d,0x71, +0x81,0x35,0xae,0x75,0x4c,0x31,0xe3,0xfb,0x93,0xfb,0x52,0xfa, +0x52,0x39,0x6c,0xee,0xaf,0x15,0x7c,0x1c,0xae,0xc3,0xdf,0xe2, +0x06,0x76,0x38,0x67,0x30,0xaf,0xbf,0x90,0x83,0xef,0x19,0xf1, +0x9d,0x30,0x9b,0x2c,0x47,0xd3,0xef,0x58,0x88,0x9c,0x0e,0xb2, +0xe5,0x28,0x63,0x20,0x6a,0xfa,0x77,0x60,0xbd,0x9c,0xc5,0x7f, +0x70,0x27,0x81,0x48,0xc6,0xce,0xd7,0xc6,0xcf,0x32,0x70,0xd4, +0x81,0x0d,0x30,0x8d,0x3c,0x11,0x7c,0x36,0xb3,0xa2,0x8f,0x15, +0x11,0x7c,0xd6,0x8a,0x3e,0xd2,0xd6,0x42,0x61,0x09,0x11,0x98, +0x16,0x91,0xe9,0x86,0xc7,0xf0,0xf1,0x8f,0xcd,0x8b,0xe1,0x23, +0x7c,0xdc,0xa3,0x6f,0x84,0xf7,0xad,0xe0,0xbe,0x81,0x38,0xcf, +0x4a,0x98,0xb7,0x0f,0x1f,0x59,0xc3,0x23,0x63,0xfc,0xcb,0x12, +0xfe,0x32,0xa4,0xa8,0xfa,0xef,0x4f,0x5a,0xc5,0xcd,0x0c,0x24, +0x0b,0xd3,0x89,0x01,0x26,0xf7,0xb1,0x90,0x8c,0x1f,0x91,0x7d, +0x98,0x3c,0xc0,0x62,0xed,0x88,0x8c,0xd4,0x0b,0x85,0x76,0x83, +0x70,0x77,0x64,0x21,0xde,0x65,0x85,0x1f,0xc1,0x99,0x88,0x85, +0xd7,0x85,0x42,0x46,0x2c,0xc4,0xb1,0x44,0x28,0xd4,0x15,0x0b, +0x29,0x03,0xdb,0x2e,0x7f,0x4e,0x0c,0x65,0x98,0xde,0x4e,0x7f, +0x5c,0xb4,0x80,0x8b,0xb6,0xbd,0x0d,0x90,0x2e,0xfd,0x48,0x69, +0xc5,0x14,0x06,0x36,0x61,0x25,0xf1,0xf2,0x76,0xd9,0x6f,0xe7, +0xcf,0x55,0xe2,0x97,0xd7,0x05,0x35,0x58,0x38,0x12,0x85,0x0b, +0x61,0x48,0x0f,0xbb,0xac,0xa1,0x6b,0x9f,0xa8,0x64,0x29,0x50, +0x8f,0x9e,0x2b,0xc3,0x15,0x2e,0xf8,0x79,0x40,0x8a,0x05,0xdf, +0x11,0x3f,0x90,0x70,0x83,0xc6,0xb7,0x73,0xbd,0x35,0xc2,0x01, +0xc7,0x3e,0xe8,0x12,0x67,0xb2,0x3d,0xa9,0xdd,0x19,0x5d,0x34, +0xbe,0x7d,0xdb,0x82,0x11,0xcc,0x70,0x59,0x7f,0x6d,0x47,0x33, +0x27,0x96,0xc3,0x42,0x62,0x88,0xbb,0x7b,0x59,0x08,0x9b,0x0e, +0x5a,0x86,0x48,0x69,0x45,0xe8,0xf4,0x5e,0x30,0x30,0x64,0xf1, +0x1b,0x5c,0x4e,0xe0,0x28,0xe3,0x1a,0xec,0x14,0xe2,0x40,0x43, +0x39,0xc5,0x5c,0xc6,0x18,0x48,0x7a,0x84,0x03,0x46,0xac,0x78, +0x80,0x86,0xbc,0x03,0xfa,0xe2,0x01,0x3a,0xa1,0xc6,0xc2,0x66, +0x82,0xcb,0x99,0xe6,0x96,0xfa,0xce,0xea,0x61,0xbb,0x7c,0xde, +0x72,0x93,0x4c,0x47,0xdf,0x94,0xd3,0xff,0x1e,0x66,0xb6,0xe0, +0xcc,0xaf,0x52,0x06,0x21,0xb9,0x03,0x93,0x87,0x0c,0x75,0x30, +0x7d,0xc8,0x40,0x07,0xbf,0x34,0x83,0x2f,0x75,0xfb,0x06,0x21, +0x5d,0x2f,0x74,0x0d,0x2e,0xb6,0x84,0xc5,0x4b,0x51,0xdf,0x1c, +0x4e,0x33,0x9a,0x66,0xab,0xed,0x66,0xda,0xe7,0x5a,0xf2,0xc5, +0x89,0x45,0x89,0x05,0x52,0xfd,0xc0,0xce,0x36,0x88,0x37,0xef, +0x12,0x14,0xf1,0x32,0x5b,0x91,0x5d,0x96,0x53,0x9c,0xc7,0x81, +0x27,0x33,0x82,0x40,0xc9,0x53,0x77,0x0b,0x76,0x33,0xce,0x74, +0x00,0xcd,0x85,0x29,0x6d,0x2c,0x7e,0x8f,0x1f,0x13,0x4b,0xfa, +0x26,0x8b,0xab,0x15,0xe8,0xff,0x58,0xb2,0x42,0xe8,0x36,0xf2, +0x1c,0xe2,0x37,0xb0,0x23,0xba,0x18,0x41,0xea,0xe0,0x1a,0xb8, +0xe1,0x20,0x5e,0x61,0xe9,0x85,0x83,0xa4,0x71,0x66,0x0b,0x63, +0x59,0x61,0x0f,0x8d,0xe8,0xf1,0xab,0x31,0x7e,0xb4,0x32,0xf0, +0x51,0xea,0x2d,0x6b,0xd8,0xee,0x5b,0xcd,0x4f,0xff,0xed,0x2d, +0x86,0xab,0xb4,0xb7,0x73,0xc6,0xd4,0x5b,0x16,0xb5,0xe1,0x22, +0x50,0x34,0x44,0x45,0x5c,0x6a,0x0e,0x4b,0xa9,0xb7,0xe8,0x9b, +0xc2,0x45,0x66,0xdd,0xa6,0x45,0x7a,0x73,0xad,0x73,0xcc,0xf9, +0x82,0xa4,0x82,0xa4,0xbc,0x64,0x4e,0x1c,0x4f,0xbd,0xa5,0x64, +0xd4,0x5b,0x2a,0xd8,0x26,0xea,0x2d,0xd5,0xb5,0xdc,0xc8,0x12, +0xb8,0x43,0x4c,0xa1,0xa3,0x93,0xc5,0xef,0x50,0x83,0x18,0xc1, +0x08,0x8d,0x46,0x77,0xe8,0x95,0x29,0xd4,0xd2,0xf7,0xcc,0x14, +0xba,0xb0,0xd6,0x84,0x15,0xbc,0x71,0x8a,0xe4,0x53,0x25,0xd4, +0xa7,0x68,0x73,0x2b,0x48,0x07,0x84,0x43,0x36,0xd6,0xe3,0x13, +0x16,0x22,0x3e,0x54,0x29,0xdd,0x03,0x6b,0x59,0x61,0xa5,0x0b, +0xa1,0x9f,0x51,0xc2,0x12,0x6a,0x2f,0x3b,0xe5,0xf7,0x89,0x1e, +0x9a,0xe0,0x2c,0x43,0x98,0xc5,0x9c,0xc6,0x16,0x13,0xdc,0x84, +0x9f,0xe2,0xdc,0x06,0x2b,0x1e,0x66,0xc2,0x9a,0x1e,0x90,0x45, +0x43,0x37,0x07,0xdb,0x19,0x8c,0x38,0x85,0xeb,0x8f,0xcd,0x56, +0xd3,0x3d,0x19,0x16,0xaa,0xaf,0x3a,0x87,0x49,0xd2,0x57,0xfc, +0x8d,0x79,0x55,0x58,0xf1,0x32,0x56,0x3d,0x49,0xa2,0x60,0xcb, +0xe0,0xba,0x0a,0x4d,0xa2,0xe8,0x20,0x5e,0x21,0x87,0xce,0x1c, +0x3e,0x73,0xe8,0x34,0x27,0xdf,0x89,0xcf,0x47,0x2e,0xb0,0x21, +0x67,0x0f,0x9e,0x0b,0x39,0x17,0xaf,0xcf,0xc3,0xbc,0x2c,0x58, +0x55,0x06,0x2a,0xd5,0x1c,0x2a,0x09,0xa7,0x09,0xba,0x82,0x26, +0xb8,0x32,0xe8,0x2a,0x95,0x09,0xde,0x03,0xae,0xb8,0x87,0x35, +0x56,0xc0,0xdd,0xec,0x9e,0x50,0xad,0xb0,0x5d,0xc7,0x38,0x90, +0x9e,0x81,0xb7,0xc9,0x6b,0x49,0xc2,0xda,0x3b,0x9a,0xbf,0x6b, +0x95,0x74,0xf0,0x38,0xe6,0xae,0xe1,0xed,0xa0,0x61,0x6e,0x37, +0xe3,0x2f,0x55,0x07,0xf8,0x7c,0x9d,0x54,0x1d,0xe0,0xd3,0xa7, +0xf7,0xbe,0x4a,0xf9,0x96,0x13,0x0e,0x88,0xcf,0xc8,0x6b,0x98, +0xf9,0xdf,0xed,0x41,0x3b,0x8d,0x84,0x8f,0xa4,0xed,0x41,0xee, +0x92,0x9e,0xdf,0x64,0x1d,0x98,0xe2,0x09,0xaa,0x81,0xb0,0x58, +0x37,0x8c,0xcf,0xc3,0x6d,0x75,0x1f,0xf4,0xfc,0x36,0x6f,0xdf, +0xf5,0x6f,0x3d,0xbf,0x07,0xa3,0x7a,0x7e,0x03,0xff,0xd5,0xf3, +0xbb,0x67,0x4d,0x23,0x50,0x2c,0x18,0x49,0xd5,0x7e,0x27,0xc2, +0xc4,0x2e,0x49,0x81,0x7d,0x02,0x4e,0x44,0x3b,0x13,0xb0,0xc3, +0xf7,0x33,0x24,0x3d,0xd7,0xa7,0x4c,0x53,0x46,0x66,0xa3,0xb4, +0x7f,0x43,0x9f,0xc5,0x2f,0x36,0x92,0x1c,0xd3,0xac,0xad,0x49, +0x86,0x1d,0xd9,0x7c,0x58,0xa7,0xdf,0xd3,0xc0,0x0e,0xca,0xbe, +0x4e,0x92,0xc3,0xab,0xfc,0x36,0x99,0x6d,0xad,0x77,0xe1,0x7b, +0xbf,0x2a,0xfe,0x2e,0xe5,0x47,0xa9,0x4c,0xb6,0x50,0x41,0xfa, +0xc5,0x1a,0xb6,0xe8,0x7e,0xce,0xbd,0x8c,0xdb,0x7a,0x71,0x7c, +0xd0,0x8e,0xfd,0x5b,0x3c,0xb7,0x70,0xd8,0xa8,0x0f,0xa9,0x8c, +0xd3,0x5a,0x9b,0xf5,0xb2,0xed,0xa0,0xe8,0xf0,0xde,0xfe,0x17, +0xdb,0x59,0x3b,0x70,0x86,0x25,0xea,0x7a,0x66,0xea,0xf1,0x60, +0x57,0x05,0xcb,0x7a,0x41,0xf1,0x1b,0x98,0x64,0x08,0x1f,0xef, +0xfb,0x73,0x6f,0x79,0x3b,0xaf,0x31,0x84,0x63,0xfa,0x50,0xa1, +0xf3,0xcd,0x77,0x3d,0x30,0xae,0x10,0x96,0x72,0x62,0x32,0x7a, +0x92,0xba,0xdb,0x95,0x77,0x4b,0xee,0x50,0xcf,0x64,0xfc,0x70, +0xa6,0x31,0x8e,0x59,0xb6,0x7e,0x45,0xed,0xd2,0xca,0x25,0xe5, +0x34,0x7f,0xdc,0x90,0x3f,0x23,0xbb,0xd6,0x52,0x2e,0xe9,0xc5, +0x60,0x42,0x08,0x6e,0xdd,0x81,0xd3,0xd4,0xba,0xcc,0x14,0x9f, +0x4a,0xd3,0x62,0x06,0x79,0x2a,0xb0,0x58,0x7e,0xa1,0x4f,0x24, +0x6c,0x2b,0x8e,0x90,0xb7,0x0d,0x6f,0x06,0x3b,0x87,0xb9,0x3a, +0xf1,0xb6,0x89,0x10,0xc0,0xda,0x5b,0x6f,0x73,0x5d,0xeb,0x6c, +0x9f,0x6f,0x9b,0x6b,0x9d,0xeb,0xe2,0xc8,0xdf,0x73,0x19,0x74, +0xed,0x75,0xe0,0x50,0x30,0x81,0x7b,0xd8,0x43,0xa9,0x42,0x82, +0x91,0xa4,0x53,0xd8,0x94,0x9c,0x4c,0x31,0x6b,0x2b,0x44,0xb2, +0xfb,0xad,0x4c,0xed,0x74,0xed,0x1b,0x6d,0xf9,0xfb,0x6d,0xc3, +0xb7,0xeb,0xee,0x71,0xf5,0x98,0xca,0x1e,0x4a,0xa0,0xaf,0xf8, +0x51,0xed,0xd6,0x17,0xc4,0x7c,0xce,0xee,0x75,0xab,0xf7,0x96, +0x5b,0xf2,0x6f,0xee,0x3d,0xf8,0xb9,0xfb,0x3d,0x97,0x8b,0x6d, +0x04,0x56,0xbd,0x7a,0xff,0xba,0xe8,0x37,0x2e,0x9a,0x29,0x58, +0x0c,0xec,0x32,0x58,0xb5,0xa2,0xa8,0x87,0xc7,0xe5,0xaf,0x66, +0x7e,0xe7,0xf0,0x9c,0xdb,0xc3,0xb8,0x6e,0x5e,0xbf,0x12,0x97, +0xaf,0x37,0xcf,0xe6,0x2d,0xe6,0xae,0xc6,0xf1,0x4b,0x77,0x16, +0xcb,0xf8,0xaa,0xe2,0x0f,0x9b,0x8f,0x77,0x4b,0x0f,0x9b,0xf3, +0x2b,0xf2,0xea,0xb2,0xeb,0x39,0xf9,0xa7,0xb8,0x8f,0x60,0x39, +0x7c,0x02,0x7a,0x3d,0xe2,0x26,0x23,0xd0,0xc2,0x4f,0xb0,0xc4, +0x88,0x9a,0xfb,0x2d,0x54,0x1f,0x2d,0x75,0x3e,0x89,0xa9,0x4b, +0x49,0xa7,0x3c,0x64,0x10,0xca,0x59,0x31,0xd8,0x82,0xec,0xdf, +0xab,0xbf,0x40,0x47,0xaf,0xd6,0x9e,0xbf,0x75,0x67,0xe8,0xd7, +0x82,0xbb,0x1c,0x1c,0x3a,0x47,0x9a,0xf4,0x6e,0xe3,0xd8,0xea, +0x2d,0x2d,0x15,0xbc,0xd3,0x7d,0x2d,0x18,0x6b,0xd5,0xcb,0x29, +0x3d,0x84,0x42,0xf2,0x5b,0xe1,0x8b,0x9a,0xa1,0xf6,0xa6,0x80, +0x46,0xff,0x3a,0xff,0xe2,0x76,0xde,0x21,0xcb,0x31,0xd3,0x31, +0xa3,0xef,0x7a,0xd5,0xc3,0x8c,0x37,0x5c,0x03,0x7a,0xb3,0xd2, +0x0a,0x68,0x5c,0x99,0x21,0xe5,0xda,0x2e,0x47,0x9d,0x0f,0x3b, +0x71,0xb8,0xce,0x04,0xbe,0x60,0x0e,0x58,0xee,0xb7,0x70,0xb7, +0xe8,0x09,0xec,0xf1,0xef,0xf2,0x35,0x74,0xdc,0xe9,0xb9,0x32, +0x80,0x13,0x2e,0x0a,0x7a,0x44,0xd4,0x83,0xdf,0x05,0x3d,0x16, +0x6b,0x44,0x42,0xe0,0x39,0x1c,0xc4,0xe7,0xec,0xc8,0x02,0x58, +0x4c,0x72,0x2a,0xb3,0x6a,0xd3,0xeb,0x39,0xd8,0xcd,0x04,0x6d, +0x75,0xd3,0x95,0x59,0x58,0x67,0xd9,0x66,0x38,0xa6,0x72,0x70, +0x0e,0xcb,0x49,0x8f,0x73,0xbf,0x65,0x9b,0x65,0x4d,0x0d,0x6f, +0xda,0x61,0xd4,0x68,0x50,0xc5,0x59,0x61,0x37,0xb1,0x0b,0xbf, +0x5a,0xa3,0x0e,0x21,0xfb,0x30,0x94,0xdd,0x94,0x1b,0xf4,0x42, +0x3a,0x6a,0xd8,0x9c,0x24,0x55,0x16,0x1f,0xcb,0xea,0xa7,0x2b, +0xa2,0x1a,0xdb,0x05,0xfb,0x49,0xdf,0xce,0xee,0x0d,0x35,0xab, +0xda,0x8b,0x79,0xdb,0xef,0x4d,0x1f,0x19,0xdc,0x93,0xf4,0x08, +0x8a,0xc9,0xad,0xa7,0x75,0xdf,0xe6,0xbe,0x30,0xcd,0xe0,0x03, +0xb7,0xda,0xad,0xd4,0xdd,0x4d,0xc9,0x4e,0x2a,0x8d,0x06,0xa6, +0xa8,0xbf,0xce,0xe8,0x2b,0xe6,0x02,0x56,0xf8,0xa3,0xc5,0x72, +0xfc,0xa2,0xda,0x96,0x7f,0x07,0x8b,0x0a,0xc1,0xe1,0x22,0x5c, +0xe7,0xbe,0xd7,0x64,0x70,0xee,0x69,0xb4,0x8e,0xc0,0xb1,0x6a, +0x16,0x67,0x8e,0x86,0x5b,0xab,0x5a,0x30,0x94,0xdd,0xb5,0x32, +0x0f,0x32,0x8a,0x1f,0x5e,0x55,0x8f,0x87,0x4f,0xa2,0xc0,0x08, +0x56,0xa9,0xc0,0x14,0x69,0x01,0xfc,0x16,0xa8,0x91,0x6b,0x5b, +0x4b,0x8c,0x1e,0x68,0x16,0xb6,0xf1,0xba,0x43,0x9e,0xd7,0x0f, +0x0f,0x71,0x3b,0x98,0x83,0x9a,0x1e,0x9b,0x37,0xed,0x2c,0x94, +0xf1,0x4f,0xef,0xd4,0xbf,0x8e,0x7b,0xc9,0x09,0x7a,0x23,0x73, +0x88,0x7b,0x98,0xa2,0x7c,0x17,0x1e,0x1d,0xb9,0xc4,0x86,0x9d, +0x3b,0x7a,0x36,0xec,0xdc,0xf9,0x66,0xde,0xe7,0xb8,0xe7,0x09, +0xf7,0x13,0x1c,0xb4,0xc1,0x98,0x0e,0x1c,0x03,0xe3,0x1e,0xb7, +0xa3,0x9d,0xec,0x36,0x8e,0xc3,0xc9,0x66,0x30,0x19,0x07,0x59, +0xbb,0xe3,0xb6,0x27,0x1c,0x4e,0xc6,0x1a,0xf1,0x6f,0x92,0x41, +0x31,0xef,0x4e,0x76,0x9c,0x05,0xff,0x3e,0x0b,0x14,0x4b,0xbe, +0xaf,0xe6,0x16,0x09,0x27,0x89,0xa4,0xa5,0x00,0x9f,0x30,0xf8, +0x89,0xb8,0x9a,0x48,0x57,0xa8,0xc3,0x8a,0x17,0x6c,0x48,0x86, +0x71,0xfa,0xc6,0x18,0x83,0xa6,0x78,0xfe,0x78,0x5f,0xf0,0xcb, +0x60,0x1a,0xdb,0xcc,0x29,0x85,0x8d,0xeb,0x8a,0xe9,0x8b,0xee, +0xb2,0xbb,0xc6,0x9f,0xd6,0x3f,0x69,0x1c,0x6e,0xc1,0x41,0x17, +0xcc,0x21,0x68,0xc0,0x3a,0x85,0x39,0x1e,0x73,0x8c,0xe0,0x20, +0x84,0xc6,0x22,0x41,0x88,0x23,0xb0,0xf8,0xf5,0xdb,0x97,0x85, +0xbf,0x53,0x23,0xcd,0x5f,0x04,0x63,0x56,0xc0,0x92,0x15,0x45, +0xdd,0x3c,0x2e,0x78,0x35,0xe7,0x5b,0xe7,0x17,0x92,0x91,0xae, +0x5f,0xbb,0x0c,0x57,0xad,0xe6,0x76,0xac,0x21,0x55,0xf7,0x5a, +0x40,0x21,0xed,0x25,0xd7,0x88,0xe5,0xff,0x7c,0x34,0x20,0xbf, +0x0e,0xcb,0xd9,0x23,0xbb,0x2c,0x70,0xac,0xed,0x1a,0xee,0xc6, +0x8e,0x9a,0x6d,0xdb,0x54,0x0c,0xc3,0x7c,0xcc,0xd4,0xec,0x98, +0x18,0x6d,0xc5,0x36,0xe6,0x4e,0x4d,0xe3,0xfb,0x6f,0xed,0x9f, +0x1b,0x5d,0x57,0x97,0xef,0xa5,0x09,0x08,0xb3,0x28,0x79,0xdf, +0xd5,0x25,0xce,0x37,0x81,0xcd,0x38,0x15,0x23,0x8c,0x21,0x02, +0x6f,0xa3,0xca,0xa8,0xf9,0x72,0x4c,0x5d,0xb2,0x64,0xbe,0x43, +0x90,0xc5,0x8a,0x4e,0x96,0xc4,0x77,0x8f,0xd1,0x82,0x7d,0xfb, +0x6a,0x1d,0xf8,0x1b,0x77,0xaf,0xbf,0xcb,0xa7,0xe6,0xeb,0x7b, +0x8e,0xd4,0xef,0xbb,0x81,0x63,0x2b,0xb6,0xb4,0x94,0xf3,0xae, +0xf7,0xb5,0xe1,0x23,0x9b,0x3e,0xea,0x76,0xc1,0xf2,0x97,0xc4, +0x19,0xcd,0xf4,0x70,0xf6,0xc2,0x51,0x25,0xb6,0xbc,0xc2,0x82, +0xea,0x3c,0x9a,0xb5,0x8b,0x7b,0xe4,0xb3,0xd8,0xc2,0x7b,0x39, +0x5f,0x25,0x7f,0xc7,0x5d,0xc3,0x8b,0xa4,0x24,0xa7,0x30,0x2f, +0xbf,0x80,0xc3,0x2f,0x85,0x10,0x88,0x13,0xbd,0xd9,0x84,0xa4, +0xf8,0xe4,0xf8,0x64,0x4e,0xb8,0xdc,0x2a,0xfa,0x49,0xc7,0x10, +0x53,0xae,0xa4,0x18,0xc5,0xf0,0x3e,0x9a,0xba,0xdb,0x36,0x18, +0x70,0x42,0xbd,0x31,0xc1,0x7f,0xba,0xe0,0x1f,0x06,0xff,0x99, +0x43,0xe0,0x9f,0x7d,0xf8,0x0f,0x23,0x5c,0x9d,0x47,0x46,0x56, +0x5b,0xc0,0x5c,0xc6,0xc9,0x70,0xaf,0xce,0x7a,0xcb,0x62,0x47, +0xbe,0xa9,0xa0,0xae,0xb4,0xac,0x9c,0x83,0xa9,0x8c,0xc5,0x8e, +0x35,0x5b,0x96,0x9a,0x97,0xd9,0xf2,0x30,0x76,0xe8,0xfb,0xef, +0xdb,0xbf,0xe3,0x80,0x65,0xdc,0x36,0xeb,0xac,0x5c,0xb9,0xa7, +0xd2,0x8e,0xff,0xfd,0xc5,0xed,0x5f,0xaa,0x7f,0xe1,0xbe,0x66, +0x2e,0xca,0xce,0x5a,0x9d,0xb0,0xe3,0xbc,0x4f,0x87,0x06,0xda, +0xa8,0x6a,0x48,0x9a,0xbf,0x3f,0x32,0xf7,0x2a,0x4b,0xda,0x62, +0xd5,0x63,0xdb,0xa2,0x1e,0x7d,0xaf,0x22,0xba,0x31,0x49,0xe9, +0x09,0xe9,0x71,0xe9,0x9c,0x20,0xad,0xea,0xf9,0xd3,0xae,0xb9, +0xa0,0xa9,0x3e,0xce,0x59,0x32,0xda,0xb5,0x82,0x92,0xe2,0xc6, +0x82,0x6e,0x4e,0x6c,0xe9,0x91,0x6f,0x65,0xb3,0x87,0xd3,0x1f, +0x24,0x3e,0xe5,0xce,0xa3,0x02,0xc1,0x05,0xdd,0xef,0x84,0xba, +0xb9,0x3d,0xb0,0x00,0x35,0xd9,0x82,0xec,0x9c,0xfc,0xb4,0x42, +0x9b,0x1c,0xfe,0xa0,0xb7,0xbf,0x9f,0x4f,0x60,0x55,0x00,0x8f, +0x04,0x26,0x49,0x85,0x72,0x3e,0x65,0x6a,0x72,0x02,0x8b,0x03, +0xf3,0xf6,0x67,0x29,0xdb,0xef,0x2f,0x0c,0xc8,0x0c,0xcc,0xdc, +0xaf,0xbc,0x0b,0xaf,0x12,0xc1,0x0f,0xd6,0xd0,0x31,0xe8,0x42, +0x96,0xdc,0x82,0x7f,0x76,0xb3,0x6f,0x45,0x5d,0x02,0x6f,0xc5, +0x0e,0x7c,0xcb,0x0a,0xe7,0xe1,0x4b,0x22,0x1a,0xb7,0x0a,0xc6, +0x8c,0x68,0xbc,0x88,0x08,0xc6,0x16,0xa2,0x31,0x63,0xa7,0x20, +0x18,0x1b,0xd1,0xdf,0xd0,0x3e,0x87,0xfc,0x10,0xf0,0xcc,0xfb, +0x8e,0x47,0x7e,0x23,0xbf,0xa3,0x74,0x5d,0xf1,0xea,0x74,0x4e, +0xdc,0x85,0xaa,0xe4,0xdb,0xd4,0xd7,0x45,0xf7,0x6a,0x3d,0x2b, +0x79,0x2d,0xd7,0x4d,0xbe,0xcb,0x42,0x39,0x09,0x3c,0x18,0x91, +0x36,0xdc,0xca,0x86,0x95,0x86,0x97,0x9f,0xac,0xe6,0x40,0xbf, +0x0d,0x2b,0x99,0x6b,0xad,0x57,0x3a,0xa2,0xfa,0x4c,0xa3,0xf8, +0x33,0x7a,0xa7,0x8c,0x8f,0x5b,0x70,0x68,0x6c,0x0e,0x7b,0x98, +0x13,0x4e,0xe1,0x6e,0x47,0x3d,0x38,0xdc,0x64,0x0e,0xb3,0x19, +0xe7,0xcd,0x66,0x3a,0x3b,0x8d,0x8b,0x6d,0xf9,0xaf,0x6f,0x0f, +0x3c,0xa9,0x7f,0xcb,0xc1,0x46,0xa6,0x7e,0xc9,0xd0,0xa6,0x07, +0x3a,0x45,0x4d,0xbc,0x6e,0x87,0xe9,0x75,0xe7,0x07,0x5c,0xb6, +0x30,0x91,0x84,0xda,0x84,0x38,0xfa,0x39,0xb7,0x06,0xf1,0x79, +0x35,0xe9,0x75,0xa9,0x8d,0x1c,0xfe,0x32,0x97,0x1c,0xa9,0x0c, +0x6c,0x08,0x2c,0xb6,0x0d,0xe4,0x73,0xdc,0x33,0x9d,0x93,0x9c, +0x38,0x71,0x16,0x2e,0x24,0xd8,0x3b,0xaa,0x16,0xa9,0x20,0xa9, +0x45,0xd2,0xbc,0x75,0x55,0x3a,0x2b,0xa1,0x8a,0x89,0xa3,0x59, +0xff,0x11,0xd3,0x90,0x9a,0xde,0xac,0x2e,0x2f,0xc3,0xb3,0xd2, +0xc2,0xd4,0x39,0x89,0x1a,0x1a,0x52,0x6a,0x08,0x8f,0x30,0x92, +0xc4,0x97,0xc6,0x56,0x5c,0xab,0xe2,0xba,0x98,0xab,0xce,0xb1, +0x6e,0x09,0xee,0x9c,0xf8,0x90,0x3a,0xd7,0xa5,0xce,0x8b,0xd7, +0xef,0x48,0x12,0x92,0x86,0x8c,0xf0,0x59,0x0d,0x31,0x5d,0xcf, +0x84,0x49,0x5a,0x64,0x9f,0xb3,0x21,0xb3,0x77,0x6e,0xc3,0xcf, +0xad,0xf2,0x2c,0x79,0x58,0xd0,0xfe,0xf2,0x97,0x0c,0x98,0xca, +0xc1,0x3c,0xe6,0x82,0xec,0x9c,0xc9,0x49,0x4b,0xce,0xe6,0xd4, +0xb1,0x70,0x1b,0xd5,0x05,0x4c,0xbc,0x05,0x9d,0xfd,0xe1,0xe2, +0xd4,0x87,0x71,0xea,0x31,0xbd,0x91,0xb7,0x2e,0xfe,0xc2,0xa1, +0x25,0x05,0x5a,0xb0,0x45,0x1e,0x40,0xe4,0xd1,0x7d,0x23,0x77, +0x47,0x60,0xb8,0x47,0x9e,0xd4,0x37,0x92,0xc4,0x08,0xf1,0xf0, +0x1d,0x81,0x80,0x3e,0x31,0x81,0xb9,0x54,0x76,0xb1,0xaa,0x56, +0x05,0x36,0x5e,0x86,0x4d,0x49,0xa0,0x5a,0xe0,0xdb,0xc7,0xe3, +0x17,0xfb,0x71,0xd7,0x11,0x34,0x3e,0xc7,0x61,0x4d,0xd8,0xcc, +0x4d,0xb3,0xd4,0xba,0x5c,0xbb,0x1e,0xe7,0xbf,0x8c,0x05,0x65, +0x65,0x38,0x86,0x4d,0xc3,0x14,0x0b,0xb9,0x0a,0x7b,0x89,0xa0, +0xb2,0x57,0x54,0xc1,0x42,0x88,0x67,0x07,0xd2,0x7b,0x73,0xdb, +0x8a,0x5d,0x5b,0xf8,0x99,0x7b,0x51,0xc3,0x01,0x37,0x86,0xa6, +0x1a,0xf0,0x37,0xae,0x0e,0xc5,0xf5,0x53,0x44,0x79,0x0a,0x93, +0xf7,0x41,0x22,0x7b,0x02,0x97,0x98,0x50,0x0c,0xb8,0x1e,0xc7, +0x35,0xc8,0x24,0xfd,0xd7,0x29,0xf7,0x40,0x25,0x16,0x76,0x72, +0x50,0x2c,0x6a,0xdf,0x10,0xb4,0xe1,0xe8,0x00,0xa3,0xf4,0x95, +0x3c,0x94,0xc0,0x53,0xe6,0x28,0xae,0x98,0xb9,0x15,0xcf,0x19, +0xa7,0x19,0xf1,0x50,0xde,0x07,0x0c,0x28,0x24,0x48,0x5a,0xe9, +0x3f,0x33,0x17,0xf6,0x9c,0xdc,0x7b,0xcc,0x86,0xb3,0x38,0x1a, +0x18,0xb4,0x52,0x15,0x57,0x31,0xc9,0x06,0x8a,0x30,0x83,0x81, +0x89,0xcd,0xa9,0x6f,0xb2,0xd5,0x53,0x86,0xa2,0xef,0x5d,0x84, +0x4f,0xb8,0x91,0x46,0x06,0xd4,0x47,0xfe,0x21,0xed,0xc2,0x1d, +0xd9,0x90,0xb0,0x7c,0xc4,0x54,0x5c,0xce,0xca,0x3f,0x95,0x76, +0x61,0x9f,0x12,0xef,0xc0,0x29,0x56,0x49,0x3e,0x4e,0xfe,0x90, +0x60,0x36,0x06,0x8e,0x4c,0xed,0x83,0x30,0x61,0x26,0xae,0x46, +0x6d,0x36,0xc5,0x48,0x92,0x78,0xaa,0x4f,0xc9,0xa8,0x51,0x17, +0xba,0x91,0x22,0x40,0x16,0x4c,0x7c,0x88,0xbf,0xa1,0x93,0xa1, +0xa5,0x59,0xbd,0x2b,0xdf,0xd2,0xda,0x70,0x27,0xbf,0x97,0x13, +0x15,0x71,0x0e,0xf1,0xee,0xb1,0x1e,0xb6,0x6f,0xb0,0xf6,0xe2, +0x6b,0x6d,0x9a,0xb5,0x8b,0x8c,0x39,0x71,0xa2,0xf8,0x88,0xbc, +0x07,0x13,0xf9,0xe7,0x78,0x49,0x5a,0x4b,0x33,0x81,0x35,0x04, +0x95,0x85,0x62,0x50,0x66,0x28,0x77,0x7f,0x48,0x60,0x1c,0xfd, +0x8e,0x71,0xac,0x38,0xd3,0x8c,0xd0,0x8b,0xa9,0xe2,0x4c,0x4a, +0x78,0x32,0xe4,0x67,0xc8,0x53,0xed,0x4d,0xe2,0x02,0x13,0x88, +0x66,0xcd,0x03,0xb2,0xbc,0xb3,0x9c,0x92,0x5c,0x95,0xd1,0x67, +0x64,0xf2,0xa0,0xf0,0x08,0x5c,0x98,0xd3,0x4b,0xf7,0xc9,0x70, +0xba,0x6b,0xae,0x29,0x85,0x96,0xf5,0xcf,0x6f,0x5d,0xa1,0xfd, +0x82,0x69,0x38,0x96,0x31,0xcb,0x0c,0xbe,0xae,0x06,0x1f,0x33, +0x15,0x09,0x09,0xf9,0xea,0xcd,0xd2,0xb9,0x70,0xd3,0x85,0xac, +0xef,0xf1,0x98,0x6c,0xf5,0x77,0xe0,0x2b,0x46,0xe3,0xcc,0xd1, +0x1a,0x00,0x93,0x99,0xc6,0xf4,0x54,0xda,0x91,0x4e,0xf4,0x65, +0xb3,0xca,0xd2,0x2b,0x93,0xcb,0x4d,0xb2,0x79,0x88,0xe9,0x62, +0x46,0x14,0xd1,0x8c,0x74,0x66,0x1f,0xac,0x0f,0x2e,0x3f,0x50, +0xa0,0x2c,0x4c,0x62,0x0e,0xda,0x07,0x58,0xec,0x77,0xe4,0xb0, +0x97,0xb2,0x75,0x2c,0xeb,0xeb,0x83,0xb7,0x14,0x4b,0xe2,0x5b, +0xe9,0x4c,0xfc,0x38,0xa8,0xa2,0xad,0x56,0x12,0x74,0xe4,0x75, +0x04,0x45,0x41,0x52,0x7f,0x19,0x39,0x3a,0x92,0x4b,0x7b,0x6a, +0x47,0x7b,0x9a,0x40,0x7b,0x2a,0x3f,0x26,0x9f,0x44,0xf0,0xc5, +0x6f,0xf0,0x82,0x11,0xab,0xc4,0x3b,0x04,0x67,0xd3,0x4e,0xcf, +0x66,0xc0,0x13,0x15,0x09,0xbc,0x98,0x81,0x2f,0x98,0xf5,0xe2, +0x10,0xe9,0xe9,0x13,0x3e,0x35,0xe8,0x15,0xb4,0xc5,0x73,0x8c, +0xa0,0x87,0xab,0x88,0xf8,0xe9,0x5f,0xc2,0xa7,0x8c,0xf8,0x29, +0xae,0x24,0xc2,0xa7,0x48,0x2f,0xa8,0x35,0x79,0xcb,0x0f,0x93, +0xfc,0xf4,0xdc,0xec,0xb4,0x74,0xbb,0x02,0xfe,0x40,0xa0,0xf7, +0x7e,0x97,0xc0,0xb4,0x50,0x1e,0xd7,0xbc,0x35,0x58,0x80,0x6b, +0x98,0xec,0x24,0xdf,0x42,0xaf,0x5c,0x9f,0x4c,0x1a,0x63,0x0a, +0x42,0x72,0x28,0x4d,0x57,0x46,0x5b,0x5c,0xd1,0x0b,0x63,0xe4, +0x47,0x71,0x4c,0x2f,0xac,0x60,0x46,0x36,0x8a,0x9b,0x88,0xe7, +0xa9,0xf8,0x1c,0xf5,0x34,0x16,0x5c,0x2e,0xc1,0xd5,0x6b,0xb0, +0xbb,0x28,0xb4,0x89,0xc7,0xbd,0x9e,0x78,0xfc,0x14,0x3a,0x9f, +0xe7,0x7a,0x85,0x3b,0xb0,0x52,0xbc,0x83,0xf3,0x0d,0x68,0xae, +0xd5,0x2f,0x3e,0xda,0xae,0x26,0x00,0x53,0x19,0x97,0x50,0xaa, +0xde,0xc9,0x1a,0x27,0x29,0xee,0x60,0x91,0x81,0x02,0xa2,0x2b, +0x3a,0x0c,0xb2,0xd6,0x23,0xeb,0x48,0xad,0xd0,0xee,0x30,0x00, +0x5d,0x23,0x5b,0xb0,0x8b,0x15,0xfe,0x01,0x2b,0x22,0xb6,0x77, +0x09,0xed,0x8c,0x48,0xc3,0x93,0xd0,0x6e,0x20,0xb6,0x53,0x9f, +0x8a,0x85,0x72,0xd2,0x27,0x34,0x1a,0x60,0x1f,0x63,0xe0,0xb4, +0xd1,0x61,0xa7,0x7f,0xbe,0x31,0x3f,0x90,0x37,0x5c,0xd6,0x59, +0xc6,0xc9,0xbf,0x10,0xc6,0x13,0x9c,0xe6,0x81,0x36,0x87,0xd0, +0xfe,0xbc,0xb4,0xfd,0xc7,0x3e,0x0a,0x2c,0x53,0x61,0x6e,0x05, +0x37,0x62,0x8c,0x73,0x89,0x67,0x93,0x45,0x9f,0x4d,0x8d,0xad, +0x33,0xdf,0xe0,0xd4,0x6e,0x58,0x6a,0xc5,0xc9,0x17,0x44,0x10, +0x7f,0xa6,0xb4,0xaa,0xb4,0x35,0xa9,0x9a,0x46,0xd9,0x43,0x0e, +0x6e,0x26,0x4e,0xce,0xd9,0x87,0x79,0x13,0x71,0xb9,0x99,0xb0, +0x1c,0x35,0x70,0x31,0x9b,0x6c,0xa6,0x48,0xcd,0xa9,0x29,0x21, +0xb1,0x52,0x1d,0x34,0x7e,0xeb,0x98,0xc3,0xe2,0xfc,0x61,0x12, +0x56,0x1d,0xd0,0x18,0x58,0x62,0x15,0x2c,0xc5,0x23,0x9b,0x24, +0x57,0x4a,0xaf,0x23,0xc9,0xe1,0x0a,0xbf,0x7a,0xff,0x42,0xab, +0x40,0x3e,0xcf,0x27,0xd7,0x2e,0xd9,0x9d,0x03,0x15,0x34,0x27, +0xee,0xa5,0x96,0xe5,0xd6,0xb9,0x6e,0x2e,0x7c,0xf3,0xfe,0x16, +0xf7,0x52,0x77,0x49,0x2e,0x72,0x3d,0xe9,0x12,0xd7,0xfd,0xae, +0x3b,0x5b,0x3a,0x5a,0xa5,0xce,0xfa,0xac,0xc7,0xa9,0x56,0xf8, +0xa5,0x63,0x3a,0xf5,0xb8,0xb2,0x76,0x50,0x6c,0xa1,0xd8,0x60, +0xb4,0x58,0xad,0x22,0x50,0x8a,0x57,0x6e,0x96,0xd2,0xcb,0xe3, +0x85,0x1a,0x54,0x6b,0xf6,0x78,0x21,0x3d,0x1b,0x94,0x1f,0x23, +0xaf,0x75,0x57,0x89,0xe3,0x4c,0xe4,0x37,0xba,0xd8,0x62,0x3c, +0x46,0x28,0x3d,0xca,0xaf,0xcb,0x6f,0xce,0x6e,0x31,0xca,0xe4, +0x03,0xcc,0x3d,0xf5,0xdd,0x65,0x9c,0x58,0x66,0x22,0x8c,0x67, +0x82,0x5d,0x02,0x9c,0xbc,0xa9,0x7d,0xd5,0x99,0x50,0xf6,0xe6, +0x62,0xe3,0x60,0x6d,0x6d,0xfb,0xf0,0xe0,0xaf,0x01,0xf0,0x91, +0xcf,0x6c,0x7b,0xfc,0xec,0x00,0x6a,0x86,0x4b,0xdb,0x5a,0x2c, +0xe2,0x60,0x79,0x29,0x4c,0x1c,0x86,0xf1,0x1e,0x30,0xc5,0x15, +0x58,0xa7,0x82,0x76,0x1e,0x3f,0x2a,0xc7,0xb1,0x25,0x1a,0x85, +0x77,0x5a,0x3b,0x6e,0x54,0xbd,0xe0,0x60,0x5b,0x97,0x98,0xca, +0xe4,0xd7,0xe4,0x54,0xa7,0x55,0x72,0x82,0x8c,0x11,0x1f,0xbc, +0x25,0x21,0xd5,0xbe,0x4d,0x01,0x25,0x26,0xfe,0x7c,0xae,0x47, +0x9e,0x5d,0xba,0x23,0x27,0xa8,0xd0,0xb0,0xea,0xb0,0xd5,0xcc, +0x70,0x97,0xfd,0xd2,0x9c,0x35,0x19,0x3b,0x53,0x4a,0x4a,0x8b, +0x2b,0x0b,0x25,0x9d,0x98,0x22,0xb0,0x25,0x2d,0xc0,0xe4,0x01, +0x1f,0x07,0xab,0xb9,0x5a,0x5c,0xc1,0xc6,0x0d,0xc6,0xf4,0x5d, +0xed,0xd4,0x8f,0xe2,0x4f,0xcb,0x8e,0xeb,0x1e,0xdb,0xcb,0xe1, +0x58,0xc3,0xb7,0x4c,0xc8,0x2c,0xbf,0x19,0xbe,0x1b,0x5b,0x5c, +0x1b,0xdd,0x1a,0x9d,0x9c,0xb6,0x99,0xed,0xde,0xa9,0x53,0x61, +0xc1,0xdf,0xbb,0xd9,0x7d,0xb7,0xee,0x59,0xb1,0x4f,0x89,0x57, +0x89,0x7b,0x79,0x33,0xef,0x5a,0xe9,0x5e,0xe6,0x5e,0xc2,0xc1, +0x7a,0xe1,0x17,0xc9,0x2d,0xf4,0xa9,0x5b,0x18,0xe1,0x12,0x82, +0x4f,0x7e,0x83,0x27,0x0c,0x3e,0xc1,0x45,0x04,0x9e,0xcc,0xc0, +0x27,0x8c,0xf8,0x31,0x6a,0x92,0xac,0xe7,0x99,0xdf,0xa7,0xfe, +0xc0,0x51,0x87,0x8d,0xc0,0xe9,0xc1,0xc8,0xd9,0xcd,0xf2,0xca, +0xf7,0xca,0xf5,0xca,0xe6,0xa0,0x5c,0x9c,0x41,0x7a,0xfb,0x84, +0x49,0xa3,0x9e,0x71,0x92,0x11,0xf6,0x4a,0x9e,0x31,0xe9,0x2f, +0xea,0x92,0xe2,0x24,0x5c,0x41,0x84,0x49,0xc8,0x8a,0x93,0xfe, +0x73,0x64,0x61,0xa5,0xf4,0x20,0x62,0x80,0x92,0x8e,0x40,0x5c, +0x3c,0x00,0x2e,0xe2,0x42,0x46,0x77,0x29,0x41,0x07,0x6c,0x16, +0xd3,0x06,0x60,0x8f,0x50,0x4b,0x59,0xb2,0x3b,0x9b,0x68,0xa2, +0x08,0xc6,0x4c,0x53,0xba,0xa4,0x58,0x6d,0x82,0x43,0xe0,0xc0, +0x82,0xfb,0x51,0xe2,0x67,0xed,0x64,0x23,0xb3,0xad,0x73,0xe7, +0x5b,0x6a,0x9b,0x7a,0xf2,0x1b,0x39,0x71,0xf8,0x0c,0xa9,0x70, +0x6d,0x34,0x2d,0xb0,0x6d,0x2c,0xe4,0x7d,0xeb,0xac,0xbb,0x9c, +0x2b,0x39,0x2f,0xfc,0x9a,0xbc,0x16,0x6a,0x57,0xb1,0x62,0xad, +0x29,0x11,0x6a,0x57,0x8a,0xb5,0xd4,0xbe,0xcf,0x53,0x1b,0xd6, +0xd1,0xdc,0x63,0xa6,0x69,0x5b,0x60,0xc4,0x0f,0xd7,0xf7,0x36, +0xb4,0x77,0x73,0xf8,0xaf,0xfe,0xbf,0x67,0xe8,0xb3,0xf2,0x45, +0xd3,0xf1,0x33,0x33,0x3c,0xe4,0x8b,0xb2,0x33,0x31,0x86,0x3c, +0x98,0x45,0xc3,0xc9,0x02,0xd0,0xe8,0xe2,0x46,0x7c,0x68,0x18, +0xf1,0x7b,0xe8,0xf2,0xc4,0xf5,0xa6,0xcc,0x97,0xaf,0xda,0x53, +0xba,0xb5,0x70,0x33,0x27,0xe7,0x03,0x48,0x5d,0x7f,0xf3,0xcf, +0x39,0xb7,0x8c,0xb2,0xf8,0x40,0x2d,0xbb,0x65,0x0e,0x46,0x9c, +0xfe,0x45,0x12,0x36,0xe0,0xf5,0xb5,0x7f,0x9b,0x49,0x30,0x9f, +0x2f,0x2b,0x5c,0x9d,0x6c,0xc0,0xe1,0xa4,0x8b,0x24,0xb8,0xcf, +0xe5,0xf9,0xfe,0x66,0xf3,0x40,0xbe,0xc0,0xb2,0x72,0x43,0xba, +0x3e,0x27,0xb0,0x8b,0xc8,0x9f,0x7a,0x33,0xc5,0xb5,0xc6,0xc2, +0x5a,0x2c,0x44,0x2d,0x36,0x9e,0xf6,0x71,0x25,0x0d,0x6e,0x52, +0xc9,0xda,0x1c,0x98,0xd8,0xcd,0x8a,0xd7,0x28,0x38,0x28,0x77, +0xaa,0xdd,0x93,0x63,0x41,0x01,0xbb,0x5f,0x97,0xc3,0x90,0x7b, +0x25,0xb5,0x50,0x6f,0x67,0xd2,0x99,0x99,0xde,0xa9,0x2e,0xaf, +0xdc,0x3d,0xd2,0x82,0x81,0x6c,0x92,0x8e,0x22,0x6e,0x07,0x7d, +0x02,0x63,0x61,0xce,0x0d,0xd8,0x59,0x04,0xeb,0xb4,0x13,0x79, +0x5f,0x5c,0xa2,0x8b,0x1b,0x71,0x0c,0xaa,0x72,0x7f,0xcf,0xf5, +0x20,0xb6,0xb0,0x64,0x1d,0x58,0xed,0x85,0xe9,0xfa,0x07,0xf8, +0xdb,0xf8,0xf9,0x23,0x34,0x6b,0xc6,0xe5,0xf4,0x5e,0x1e,0x70, +0xfe,0xc3,0xcd,0x84,0x98,0x3d,0x62,0x26,0x1a,0xb2,0xc9,0xfb, +0x14,0x05,0x4e,0x30,0x27,0xcf,0x16,0x3e,0xc1,0xc9,0x5d,0xa8, +0xd0,0x5d,0xc6,0xef,0x03,0xa5,0xed,0x30,0x66,0xdd,0x3b,0x6e, +0x64,0xaa,0xb8,0x80,0xfc,0xf6,0xc3,0x73,0xe0,0x5b,0x61,0x9e, +0x41,0x3a,0x6f,0x8d,0x2a,0x5b,0x71,0xca,0xbc,0x55,0x9c,0xfc, +0x24,0x45,0xd9,0xb3,0xd1,0x8a,0xce,0xda,0xc7,0xf8,0x87,0x7d, +0xea,0x1e,0x1e,0xb0,0x15,0x1c,0xfe,0x82,0xcd,0x10,0xc0,0x49, +0xf9,0xe0,0x01,0xd9,0x4b,0xbb,0x28,0x1f,0x19,0x3f,0x24,0xdc, +0x92,0xaf,0x10,0xc3,0xd0,0x42,0x2a,0x80,0x00,0xdb,0x99,0xe6, +0x8c,0x74,0x3a,0xa3,0xc5,0xe2,0x04,0x16,0x4a,0x20,0x92,0xb8, +0xed,0xd3,0xdb,0x62,0x68,0xd6,0xe4,0xcc,0xf7,0xb4,0xde,0x7a, +0x55,0x7e,0x9d,0x13,0xd3,0x69,0x20,0x75,0xbe,0xae,0xff,0xc0, +0xbc,0xcd,0x8a,0xe6,0x29,0x8b,0xde,0xed,0xd5,0x3a,0x5c,0x12, +0x52,0x3a,0xfe,0xb6,0xff,0x2e,0xbc,0x86,0x1c,0x16,0x5f,0xe3, +0x7e,0x02,0x6b,0x20,0x17,0xa5,0x83,0x55,0x43,0xf2,0xbb,0x44, +0x6b,0x26,0x4d,0x64,0x7a,0x0c,0x5e,0x3a,0x8c,0x3b,0xf7,0xa0, +0x8a,0x5a,0x8f,0xb5,0xe2,0x3d,0x98,0x9f,0x09,0xde,0x92,0xcc, +0xe2,0x78,0xf9,0xc9,0x3e,0x71,0x0a,0x0b,0xaf,0xc4,0x59,0xa4, +0x0f,0xeb,0x20,0x40,0x1b,0x03,0x30,0xd7,0x80,0xfe,0xf9,0x75, +0x7c,0x65,0x20,0x0f,0xec,0xc3,0x57,0x70,0x9d,0x95,0x16,0x82, +0x0f,0x90,0x77,0xbb,0xe6,0x8a,0xe3,0x70,0x17,0x8b,0x17,0x0e, +0xa3,0xe1,0x2e,0x9c,0xa1,0xd6,0x69,0xaa,0xf8,0x04,0xd6,0xa4, +0x83,0x0b,0xc4,0xaa,0xc0,0x44,0xf9,0xf9,0x1e,0xf6,0x18,0x3e, +0xa0,0xb7,0x79,0x0c,0x1b,0x74,0x70,0x03,0x76,0x1b,0x40,0x09, +0xeb,0x81,0x93,0x66,0xcd,0x46,0x5d,0x64,0x2a,0x68,0xb4,0xd1, +0x87,0x09,0xbf,0xfc,0x91,0x08,0xaa,0xdc,0x15,0xd1,0x7c,0x50, +0x30,0xbf,0xc2,0x24,0xa3,0xea,0xaf,0x73,0xc0,0x18,0x27,0x94, +0x77,0x4b,0x9a,0x5d,0x1f,0xcf,0x78,0xef,0x0a,0x93,0xe8,0x08, +0xf5,0xca,0x63,0xc9,0xa3,0x3d,0x5b,0xa9,0x27,0x78,0xb0,0xf8, +0xe8,0x08,0xaa,0x99,0x21,0xa3,0xd6,0x2e,0x53,0xec,0x05,0x95, +0x14,0x58,0x0f,0x2f,0xa4,0x75,0xe7,0xe2,0x0e,0x16,0x35,0x46, +0x58,0xd2,0xf1,0x2e,0x0f,0xc6,0x5d,0x01,0x65,0xae,0xb7,0x0d, +0x4f,0x32,0xf1,0x75,0x31,0x4d,0x57,0xaa,0x4c,0xa5,0xfd,0x22, +0xb3,0x9d,0x28,0x21,0x5a,0xcf,0xc1,0x58,0x5c,0x0d,0x11,0x26, +0x18,0x81,0xcb,0xc4,0xf4,0x0e,0xc1,0x1f,0x92,0xc5,0x75,0x6b, +0xd8,0x18,0x1b,0x0a,0xd8,0xca,0x92,0x92,0x2a,0xd4,0xe1,0x17, +0xb6,0xd8,0x34,0xbd,0x28,0xad,0x32,0xa9,0x56,0x39,0x76,0x79, +0xf6,0xba,0xea,0xad,0xce,0xba,0x32,0xd3,0x3d,0x96,0xa5,0x96, +0xfc,0x50,0x73,0x5b,0x67,0x4d,0x7f,0xa5,0x61,0xab,0xe9,0x80, +0x45,0x71,0x17,0xaf,0xdb,0x64,0xd1,0xe9,0xda,0xcf,0x61,0x1b, +0xbc,0x20,0xf9,0x6d,0x99,0x9d,0x29,0xd7,0x2d,0x52,0xf8,0x50, +0x83,0x40,0xe3,0x00,0x6b,0x0e,0xe7,0x47,0x91,0xd0,0xb6,0xe0, +0x36,0xbf,0x36,0xab,0x10,0x3e,0xcf,0x22,0xcb,0x28,0xd1,0x8a, +0x13,0x1e,0x24,0x93,0xd3,0xa8,0x10,0xb2,0xd0,0x65,0xbd,0xe3, +0xcb,0xe0,0xb7,0x67,0x61,0x8c,0x84,0x22,0x35,0x09,0x0e,0xb4, +0x5c,0x07,0x45,0xb8,0xc8,0x52,0x57,0xb6,0x23,0xb0,0x62,0x80, +0x86,0x28,0x25,0xf8,0x4a,0x1e,0x47,0x6e,0xea,0xee,0x41,0x07, +0x4b,0x21,0xa8,0x85,0x85,0xfb,0xfd,0x64,0xe7,0x82,0x79,0x1b, +0x70,0x9c,0x61,0x29,0x1d,0x39,0xa5,0x01,0xf8,0xe8,0x87,0xfb, +0xd4,0xe4,0x36,0xe0,0x76,0x12,0x9e,0x7f,0xa8,0x2e,0x2c,0xd3, +0xec,0x20,0x9f,0x10,0x98,0xea,0x14,0xeb,0x4b,0x99,0xf9,0x29, +0x92,0x56,0x98,0x52,0x16,0x57,0x64,0x92,0xc4,0x1f,0xf3,0x38, +0xec,0x70,0xc0,0x8d,0xc3,0x0e,0x4b,0xe1,0x62,0x0b,0x03,0x2f, +0x83,0xc9,0xf6,0x79,0xa8,0x38,0x1f,0x27,0xeb,0x94,0x19,0xf0, +0xa0,0xfc,0x10,0x38,0xf8,0xe8,0xe1,0x6f,0x9c,0xf8,0x5e,0xdc, +0x4e,0xee,0x51,0x4a,0xda,0x2d,0xee,0xc4,0x6e,0xd0,0xd9,0x81, +0x07,0x4c,0xe1,0x00,0x52,0x90,0x34,0x15,0x0e,0x76,0xb2,0x8b, +0xe1,0x29,0xd9,0x86,0xb7,0x1e,0x4a,0xb2,0x24,0x70,0x6b,0x13, +0xde,0x62,0xe4,0xd1,0xb7,0xc8,0x7a,0x9c,0x80,0xd3,0x71,0x32, +0x6a,0x68,0x56,0xd2,0x7b,0xcd,0x7a,0x02,0xea,0xf0,0xd9,0x6b, +0x98,0x4e,0xf9,0xb1,0x1e,0x54,0x93,0x76,0xdc,0xf6,0x33,0x2c, +0x6e,0xc7,0xc5,0x0f,0x58,0x98,0x54,0x0c,0xd3,0x6e,0x0e,0x3c, +0xe2,0x9a,0x47,0xb4,0x0d,0x85,0x9f,0xd9,0x7d,0xa6,0xf3,0x1c, +0x91,0x0b,0xe0,0x70,0x22,0x6a,0xc8,0x40,0x63,0x21,0xae,0x92, +0xc1,0xaa,0xb9,0x68,0x69,0x06,0x96,0xf8,0x39,0xee,0x1e,0x2d, +0x71,0xaa,0xc1,0x74,0xe4,0x64,0x75,0xa9,0xd3,0x81,0x71,0xed, +0x40,0xd7,0x77,0x2c,0xe4,0x15,0x91,0x81,0xc1,0x8e,0x3b,0x35, +0x4f,0x6c,0x2a,0x78,0xb7,0x9d,0x0e,0xfa,0xd6,0xe6,0x11,0xdd, +0xa7,0xfa,0xcf,0xdc,0x32,0x39,0xcd,0x27,0xe3,0xa9,0x7a,0xdc, +0x0a,0x0b,0x71,0x53,0x7d,0x3d,0xbf,0xfe,0x8d,0xd5,0xeb,0xfd, +0x7f,0x70,0x23,0xe7,0xe0,0x28,0x31,0x02,0x3d,0x6a,0x84,0x3b, +0x2c,0x71,0x3e,0x6d,0xe8,0x17,0x2d,0x0e,0x3c,0xcc,0x86,0xe5, +0xf5,0xb0,0x51,0x7a,0x34,0xd9,0x44,0xed,0x18,0xc1,0x8f,0xd4, +0x67,0x66,0xd4,0xab,0x0b,0x0d,0xba,0x62,0x2b,0x4e,0x63,0x53, +0xf4,0x14,0x51,0x07,0x74,0x88,0x7f,0xb8,0x5f,0x84,0x1f,0x25, +0xb4,0x07,0x81,0xeb,0x46,0xee,0x43,0xf9,0xd2,0xcf,0x8d,0xe1, +0x73,0xbc,0xc8,0x5a,0x86,0x5a,0x1e,0xb5,0x0e,0xa7,0x74,0xba, +0x3e,0xb6,0x21,0xa1,0x21,0x49,0x52,0x43,0x9e,0x22,0x89,0x0d, +0xbe,0x63,0x9a,0x93,0xd3,0x1a,0xd4,0xa1,0x9d,0x2d,0x8c,0xa3, +0xaf,0x04,0x4e,0xd8,0x2c,0x8c,0x21,0x3d,0x0b,0xda,0xf0,0x93, +0x12,0x1c,0xdb,0x9d,0xcf,0x7b,0xff,0x29,0x83,0x4f,0xf4,0x7f, +0xe5,0xc4,0xe5,0x94,0x69,0xdf,0x85,0x8f,0xaa,0x61,0x5e,0x0a, +0xa8,0xeb,0xc5,0xf2,0xa1,0xa8,0xec,0x81,0x64,0xd7,0x4c,0xee, +0xbc,0xb8,0x83,0x40,0xde,0x2d,0xd8,0x01,0xd3,0xde,0x81,0x91, +0x69,0x01,0xbf,0x0a,0xb7,0xe3,0x3a,0x1c,0x8f,0xa9,0x52,0x45, +0xb9,0xc9,0xc2,0x72,0xe2,0x7a,0xc4,0x39,0xcc,0xe9,0xa8,0xd4, +0x2e,0xe5,0x1e,0x54,0x06,0x1d,0x3d,0xd4,0x91,0x9e,0x45,0x2e, +0xc6,0x2f,0x59,0xd3,0x50,0x93,0x30,0xf3,0x88,0x18,0x03,0xbe, +0x25,0xae,0x35,0xa1,0x6d,0xb4,0x5d,0x6a,0xa3,0x22,0x88,0x0c, +0xd3,0x2a,0xe9,0xd6,0x43,0x13,0x5b,0x97,0x58,0x97,0x5c,0x93, +0xc2,0x09,0xbe,0x02,0x4f,0x2e,0x2c,0x39,0xbb,0x3b,0xc2,0x86, +0x73,0x3a,0x7e,0xe4,0xa0,0xd9,0xe8,0xde,0x28,0x53,0xc5,0xbf, +0x98,0xa7,0x95,0x99,0x37,0x13,0xd5,0x93,0x86,0xa3,0x9e,0x5f, +0x84,0xb9,0x9c,0x98,0x66,0x48,0xb3,0xca,0x71,0x9c,0x6a,0xb9, +0x08,0x97,0x68,0x17,0x98,0xf0,0xb0,0xfd,0x69,0x0f,0x8c,0xa1, +0x09,0x9b,0xc3,0x15,0x23,0x7d,0x64,0x08,0x7e,0xd5,0x19,0x14, +0x36,0x89,0x7e,0xe2,0x26,0x56,0x58,0x26,0x8c,0x25,0x78,0x16, +0x7f,0x85,0xb3,0xac,0x24,0xc9,0xb4,0x8a,0xe0,0xe4,0x3e,0xd8, +0x81,0xf6,0x6c,0x71,0x76,0x61,0x71,0x7a,0xae,0x75,0x01,0x1f, +0xe4,0xe3,0xe3,0xe5,0xe2,0x5b,0x10,0xcc,0xe3,0x26,0x18,0xa7, +0x87,0xe3,0x70,0x13,0x53,0x96,0xe1,0x5b,0xe6,0x53,0xe0,0x93, +0xa3,0x6c,0x4b,0x19,0x64,0xae,0x5f,0xde,0x7e,0x65,0xb4,0xc4, +0x1d,0x7d,0x14,0xc4,0xca,0x27,0xe8,0x13,0xb1,0x16,0x0d,0x84, +0x5a,0xc6,0x08,0xd4,0xc8,0x2a,0x71,0xc7,0x6b,0x16,0x22,0x29, +0x95,0xbc,0x2d,0x4c,0x69,0x13,0xa7,0xdc,0x64,0x61,0xfa,0x65, +0x98,0x72,0xe5,0xbb,0x98,0x83,0x2d,0x7c,0x08,0xca,0xb0,0xf3, +0x0c,0x86,0xab,0xc6,0x98,0x2b,0xfe,0x0a,0xe3,0x2f,0x45,0xc2, +0x38,0x75,0x6d,0x71,0xba,0xb9,0x30,0x5d,0x4b,0xdc,0x6e,0x26, +0x6c,0x5f,0x8b,0xc6,0xac,0xa4,0x61,0xb6,0x8b,0xa9,0x49,0x49, +0x2c,0x57,0x7f,0x25,0xac,0xef,0x60,0x25,0xd1,0xeb,0x39,0xc4, +0xf7,0xd8,0xfe,0x63,0xfb,0xc3,0x39,0x38,0xfa,0x47,0xd7,0x2c, +0x30,0x30,0x44,0x03,0x1c,0x6b,0x42,0x03,0xc4,0x35,0xd6,0x29, +0xcc,0xe9,0x98,0xf3,0xf1,0x58,0x63,0xbe,0x3c,0xa6,0x3c,0xae, +0x5c,0xaa,0x51,0x3b,0x57,0x52,0xbc,0x7e,0xc6,0x34,0x24,0xa7, +0xd7,0xa8,0x43,0x07,0x5b,0x9c,0x40,0x5f,0x89,0x1c,0xbc,0x46, +0x6f,0x02,0xf1,0x1d,0x18,0xff,0x0e,0xce,0xc3,0xac,0xc1,0x36, +0x5d,0x98,0x81,0xe7,0x5f,0x41,0x5d,0x3b,0xd6,0x3d,0x36,0xda, +0x82,0xa9,0x32,0x48,0x5d,0x8d,0x47,0x2c,0xe0,0xc8,0x4a,0x4c, +0x35,0x87,0xd4,0xe5,0x78,0xc4,0x1c,0x8e,0x60,0x1e,0xb3,0x24, +0xde,0xa1,0xef,0x37,0x95,0x6a,0x43,0x17,0x16,0x3f,0x76,0x37, +0x5f,0xe2,0xa8,0x96,0x67,0xfc,0x6b,0x4b,0x76,0x5b,0xe4,0x13, +0x49,0xca,0x3f,0xb2,0x67,0x1b,0xcc,0x56,0x85,0xfb,0xcc,0xb5, +0x1e,0x45,0xbc,0xc1,0x80,0xa1,0xd0,0x4b,0x56,0xa2,0xe1,0x37, +0x2c,0x18,0xe2,0x4c,0xb2,0x1c,0x0d,0xbf,0xa3,0xed,0x9f,0x23, +0xaf,0x27,0x22,0x23,0xb7,0x11,0x18,0x56,0x87,0xa6,0x01,0xf1, +0xd9,0x6f,0xc2,0x33,0x46,0x7c,0x86,0xcb,0x89,0xf0,0x6c,0x96, +0xf8,0x8c,0xb2,0x3c,0xcc,0x20,0x1f,0x2c,0xa4,0xe6,0x1d,0xdb, +0x7b,0xad,0x2b,0xae,0x23,0xd1,0xbf,0x99,0xc7,0xf1,0xde,0x38, +0xef,0x30,0x2e,0x3f,0x15,0x67,0xc6,0xdf,0x8e,0xbc,0x15,0x3d, +0x7c,0x95,0x5b,0x86,0x51,0xa6,0x70,0x89,0x3d,0x36,0x5f,0xdf, +0x01,0x97,0xd9,0x4b,0x3b,0x7b,0x35,0x9b,0xef,0xdf,0x4a,0x80, +0xc9,0x1c,0xd4,0x63,0xf8,0x75,0x08,0x87,0xfd,0x9d,0x14,0x15, +0xac,0x96,0xc8,0x80,0x20,0xdf,0x06,0x02,0xbb,0x8f,0x92,0x5f, +0xb1,0xf3,0x47,0xa1,0x93,0x11,0x3b,0x71,0x3e,0x11,0x3a,0x17, +0x88,0x9d,0x0c,0x4e,0x10,0xef,0x91,0x81,0x6e,0xf9,0x72,0xe3, +0x41,0xc1,0x68,0xa4,0x8c,0x91,0xfb,0x51,0xa4,0x39,0xb2,0x9c, +0x42,0xf5,0xe5,0xcc,0xc8,0x72,0x5c,0x4b,0xe4,0xcb,0x91,0x5e, +0x50,0xc8,0xff,0xa7,0xfc,0x28,0xb9,0xb0,0xe8,0xcc,0xee,0xe3, +0x92,0xfd,0x85,0x1d,0x92,0xa9,0xa2,0xa2,0x64,0x7f,0xef,0x98, +0x47,0x17,0xca,0xb2,0x93,0x86,0x12,0x86,0xae,0x3c,0xbb,0x08, +0x0b,0x39,0xf1,0xa8,0x11,0x68,0x32,0x27,0x71,0xaa,0xcd,0x22, +0x9c,0xb9,0x5b,0xaa,0x30,0xbc,0xfa,0x79,0x87,0x24,0x8b,0xb6, +0x84,0x13,0xb3,0x47,0xda,0xc9,0x1b,0x38,0x2e,0x4f,0xc1,0x8e, +0x11,0x39,0x0b,0xa7,0x84,0x1c,0x82,0xbb,0xa1,0x0c,0x76,0x33, +0xb8,0x1b,0xdf,0x48,0xd5,0xd7,0x1e,0xe1,0x6e,0x46,0xe0,0x29, +0x9e,0x1a,0x82,0x3b,0x3a,0x03,0xd4,0x4c,0x8d,0x24,0x33,0x9d, +0x2a,0x99,0xe9,0x39,0xbc,0x03,0xe7,0xe8,0x10,0xee,0xa0,0x43, +0x48,0x7b,0xa4,0x31,0xda,0xa3,0x45,0x44,0xcc,0xf9,0x49,0xc8, +0x61,0xc4,0x1c,0x5c,0x40,0x84,0x9c,0x05,0x62,0x0e,0xb3,0x50, +0xbc,0x4f,0xda,0xe1,0xac,0xac,0x5f,0x30,0x15,0xc7,0x4a,0x65, +0x03,0x5d,0xa6,0xf7,0xb7,0x43,0x9c,0x4c,0x2a,0x23,0x38,0x95, +0xc1,0x55,0xb8,0x99,0x9a,0x3c,0x8d,0xa0,0x67,0x19,0xe1,0x00, +0x72,0x04,0xe3,0xe8,0x75,0x1c,0x33,0xe2,0x86,0x9b,0x08,0x9c, +0xa5,0x81,0x91,0xbe,0xef,0x0c,0x93,0x09,0xc4,0xd1,0xeb,0x38, +0x3a,0x82,0x03,0x82,0x2d,0x39,0x91,0x78,0xf2,0xe2,0xb1,0x88, +0x63,0xe1,0xfc,0x69,0x98,0x09,0x53,0xbb,0x70,0xea,0x07,0xbb, +0x5b,0x6a,0x02,0x73,0x28,0xdf,0x9f,0xe2,0x88,0xea,0x33,0x51, +0xa5,0xda,0x8a,0xff,0x1a,0x3e,0x2e,0xfe,0x2b,0xfa,0x2d,0xcd, +0x8d,0x45,0xbd,0xc2,0x69,0x49,0x31,0x3c,0xf2,0xac,0xda,0xb7, +0xb8,0xa8,0xb2,0x5a,0x31,0xf5,0x2d,0x79,0x04,0xcc,0x30,0xac, +0xcf,0x86,0x8f,0x47,0x2b,0x19,0x8c,0xd7,0xc3,0x59,0xbb,0xe7, +0x72,0xc2,0x8f,0x1e,0x64,0xcb,0x6f,0xab,0x61,0xad,0x3d,0xf0, +0x14,0x5c,0xd5,0xa2,0xf2,0x4b,0xdc,0xf9,0x1a,0xc7,0x71,0x68, +0xba,0x92,0x14,0x1b,0x56,0x6d,0x2a,0xdb,0xb2,0x34,0x14,0xa7, +0x1c,0xc6,0x09,0xc7,0xfa,0x40,0xb5,0x1b,0xf6,0x56,0x81,0xfa, +0xbe,0x64,0xa9,0xca,0xe1,0x3e,0x34,0xd2,0x43,0xf5,0x2d,0xa7, +0xf9,0x18,0x7d,0x58,0x1a,0x03,0x0e,0x85,0x30,0x33,0x4f,0xb9, +0x7c,0x65,0x4f,0x91,0x35,0xb0,0x3b,0x60,0x91,0xd9,0x77,0xca, +0x4a,0x10,0x2f,0x58,0x93,0xd3,0x34,0xc4,0x7f,0xda,0x89,0x9f, +0x82,0xb1,0x11,0x1a,0xe3,0x6c,0x53,0x50,0x65,0xc2,0x71,0x9a, +0x23,0xd2,0x10,0xfe,0x59,0x95,0x15,0xff,0x18,0xc6,0x14,0xfc, +0x19,0xf5,0x33,0x6d,0x73,0x81,0xb4,0x7f,0xf4,0x43,0x9b,0xbf, +0xc2,0x95,0x15,0x95,0x9b,0x60,0xd1,0x89,0xc4,0x53,0x17,0x8f, +0x1d,0x57,0x86,0x7f,0x09,0x0a,0x12,0x03,0xf7,0x19,0x99,0xda, +0x4f,0x19,0xf8,0xa7,0x94,0x81,0xef,0x1c,0x65,0xe0,0x4b,0xff, +0xcb,0xc0,0x0f,0x4b,0x0c,0x5c,0xcf,0x87,0x04,0x18,0xba,0x18, +0x5a,0xc9,0xa4,0x83,0xa7,0xad,0x75,0x12,0x03,0x47,0x91,0x32, +0x70,0x9f,0x6e,0x9b,0x61,0x87,0x46,0x6b,0x4f,0xbe,0xd6,0xb6, +0x51,0xbb,0xd0,0x98,0x73,0x40,0x67,0x89,0x65,0x7f,0x2a,0xb1, +0xec,0x4f,0xcd,0x24,0x5a,0x39,0x75,0x94,0x56,0xa6,0x0b,0x6f, +0x48,0x4a,0x41,0x62,0x51,0x42,0xa9,0x2c,0x95,0x0f,0xf7,0x38, +0xec,0x14,0xe4,0x4c,0x29,0x7c,0x07,0x7e,0x0c,0xc6,0xc6,0xb4, +0xed,0xaa,0xa6,0x30,0x55,0x12,0x68,0x77,0xc1,0xd9,0x2b,0x90, +0x54,0x5a,0xf1,0x77,0xff,0xcc,0x7d,0x1f,0x25,0x6d,0x7d,0xcd, +0xe9,0x16,0xa2,0x99,0x2b,0x97,0xbf,0xbc,0x74,0x46,0xed,0x81, +0xd4,0xf4,0x1d,0xb0,0xf0,0x54,0xe2,0x89,0x8b,0xe1,0x11,0xca, +0xe1,0x11,0x8a,0xa7,0xe1,0xf3,0xf7,0x32,0x01,0x3a,0x18,0x2c, +0x81,0x6d,0xe4,0x9e,0xfe,0x0e,0xbc,0x2a,0x13,0x9e,0xb5,0xb3, +0xe2,0x54,0x6a,0x34,0xe1,0xa5,0x87,0x8b,0x8f,0xe4,0x58,0x84, +0xf0,0xc9,0x01,0x89,0x5e,0x09,0x5e,0x9c,0xc0,0x53,0x6a,0x0a, +0x3d,0xe2,0x05,0xec,0x01,0xdf,0x1d,0xd8,0x6a,0x0e,0xad,0x38, +0xbd,0x0f,0xa6,0x41,0x49,0x07,0x96,0xdc,0x63,0x29,0x72,0x89, +0x26,0x3b,0xc4,0x69,0xf7,0x58,0x61,0x1a,0x4e,0x26,0x5b,0xc5, +0x69,0x8f,0x68,0xe8,0xb4,0xa7,0x6f,0xbe,0x07,0x8f,0x36,0xf4, +0x78,0x07,0xae,0x6d,0x34,0xf3,0xc1,0x91,0x76,0x3c,0xc8,0x66, +0x96,0xa5,0x56,0xc7,0x95,0x98,0xc5,0xd1,0xae,0x84,0xd8,0x48, +0xea,0x81,0x5a,0x4c,0x52,0x51,0x42,0x79,0x5c,0xb5,0x59,0x02, +0x1f,0xb2,0xd9,0x6d,0xad,0xf5,0x76,0xae,0x01,0xc7,0x7d,0x98, +0x97,0x59,0xa6,0xa0,0xc2,0x7e,0x98,0x97,0x45,0xa3,0xf3,0xf2, +0xe8,0x7f,0xce,0x4b,0x34,0x9d,0x97,0x2f,0x23,0xcf,0xa8,0xbd, +0xa0,0x9d,0xab,0xda,0x04,0x0b,0x4f,0x52,0x83,0x0c,0x3f,0xae, +0x7c,0x2c,0x5c,0xea,0x1c,0x65,0x2b,0x27,0x8e,0xd1,0x57,0x78, +0x85,0x35,0x9f,0x98,0x9e,0x98,0x11,0x9f,0xc1,0x89,0xe3,0x85, +0xaa,0x0e,0x56,0x3c,0x04,0x03,0xe4,0x1d,0xe8,0xcd,0x65,0x51, +0x8f,0x52,0x9e,0xd1,0x2b,0x73,0x05,0x0d,0xd4,0x7b,0xcf,0xce, +0xa3,0x59,0xab,0x7e,0xb0,0xe2,0x45,0xf2,0xa0,0x69,0x1a,0x1f, +0x66,0xec,0xba,0x81,0x82,0x7c,0xe1,0x2c,0x68,0x92,0x02,0xe3, +0xe2,0x2d,0x99,0xbb,0x3a,0x73,0xf8,0x03,0x77,0xdc,0x1f,0xfb, +0x74,0x70,0x68,0x11,0x48,0x52,0x65,0xd9,0x5b,0xe2,0xb5,0x7a, +0x13,0xf9,0x23,0x77,0x02,0x9f,0x1c,0x6c,0xe6,0xd0,0x3a,0x9c, +0xc4,0x1b,0x24,0x6c,0x8e,0xd2,0xee,0xbb,0xc6,0x9f,0xbe,0x79, +0xf4,0x69,0x58,0x27,0xa7,0xf4,0x93,0x3c,0x93,0xdc,0xf4,0x18, +0x70,0xe9,0xb1,0x2f,0x6e,0xe5,0x4d,0xea,0xf6,0xd4,0xec,0x2d, +0xe2,0x60,0xff,0x4a,0x02,0x7e,0x94,0x4b,0x7d,0x6a,0xbc,0x04, +0xb7,0xeb,0xe6,0x52,0xee,0x21,0x7b,0x7c,0xe3,0xcf,0x04,0xca, +0xe9,0x20,0x82,0xb9,0xb0,0xe4,0xdc,0x9e,0x08,0x3b,0xce,0x21, +0xe2,0xf0,0x41,0x63,0x55,0x69,0x09,0xd8,0x54,0xca,0x7b,0x2f, +0xeb,0x32,0xee,0x24,0xa9,0x27,0xdd,0x8a,0xa2,0xe1,0x64,0x26, +0x27,0x3e,0x62,0x76,0xe0,0x2b,0x62,0x52,0xb7,0xbd,0x51,0xab, +0xc4,0xdb,0x82,0xbf,0xed,0x7e,0xc3,0xa1,0xdf,0x96,0x03,0x27, +0xf1,0x38,0x19,0x16,0xd4,0xb4,0x87,0x68,0x8c,0x48,0xa7,0x31, +0x02,0x8b,0x62,0xc8,0xd3,0xdf,0x07,0x81,0xaf,0xfc,0xd3,0x24, +0x9b,0x77,0xc2,0xb1,0xc6,0xc8,0x6d,0x5e,0xc8,0xc9,0xf3,0x61, +0x98,0xba,0xbb,0xa8,0x26,0x65,0x38,0xe1,0xa7,0x0f,0xeb,0x48, +0xa7,0x24,0x2b,0x3e,0x2a,0x68,0x51,0x2b,0x96,0xb1,0x29,0x14, +0xb3,0xef,0xf8,0xaf,0x15,0x5f,0xa3,0x56,0x2c,0x5e,0xb7,0x20, +0xc3,0x6e,0xbd,0x8e,0x5d,0x36,0x65,0x4d,0xbc,0x59,0x83,0x4e, +0x83,0x6e,0x29,0x27,0x3f,0xb8,0x9f,0xec,0x37,0xb2,0x37,0x94, +0x99,0xd5,0x39,0xf3,0xed,0xad,0xad,0x77,0x0b,0x7b,0x39,0xf1, +0x73,0x6a,0xd9,0x1e,0xdd,0xe6,0x37,0x6d,0x1b,0xac,0x3d,0xf8, +0x7a,0xdb,0xb6,0xbd,0x65,0x46,0x9c,0xa8,0x63,0x43,0x6e,0x38, +0x0f,0xd9,0xf4,0x5a,0x96,0x37,0xf1,0xb2,0xc6,0x1d,0xed,0x7b, +0xca,0x39,0xf8,0x05,0xed,0x09,0xb0,0xf4,0x0b,0x59,0x56,0xd4, +0xa2,0xe6,0xae,0x85,0x9f,0x8a,0x5a,0x0c,0xde,0xc5,0x02,0x72, +0xf7,0xaf,0x2e,0x50,0x29,0x7c,0x6f,0x92,0xc1,0x7b,0xe0,0xc7, +0x56,0x38,0x4e,0x6b,0x3e,0x27,0x1d,0xae,0xf3,0x20,0x70,0x0f, +0x33,0x70,0x15,0x93,0x64,0x22,0x55,0x6d,0x6d,0x4e,0x4b,0xa5, +0x04,0x2a,0x01,0x6a,0xbb,0xb0,0x96,0xce,0xf7,0xe5,0x4e,0xa4, +0x79,0x54,0x1f,0x6f,0xe2,0x0c,0xc8,0x30,0xa4,0x9f,0x9b,0xc4, +0x26,0x83,0x09,0xb1,0xac,0x35,0xac,0x31,0x2c,0xf6,0xb2,0xe2, +0xfb,0x3c,0x3a,0x5c,0xda,0xec,0xb9,0x8b,0xe8,0x40,0x2c,0x1a, +0x76,0xb5,0xea,0x94,0x79,0x5a,0xf1,0x83,0xae,0x83,0xb6,0x5d, +0xd6,0x9c,0x50,0xe4,0x47,0xba,0xf7,0x36,0xe8,0x35,0x6e,0x6d, +0x2a,0xe3,0x6d,0xef,0x5b,0xdd,0x30,0x1a,0xe0,0xc4,0xe3,0x98, +0x40,0xee,0xdc,0xec,0xf9,0xaa,0xec,0x85,0x79,0x36,0xef,0xbd, +0x5d,0xb6,0x6d,0xe7,0x6e,0x4e,0xef,0x37,0xf2,0xa1,0x45,0xbb, +0xe6,0xb7,0x3a,0xf1,0xf7,0xa4,0x66,0x16,0xbd,0xe7,0x92,0xf1, +0x5f,0x04,0x1a,0x2b,0x61,0xd3,0x53,0x18,0x07,0x13,0xed,0xeb, +0x78,0x54,0xa0,0x78,0x72,0xde,0x1e,0xac,0xf7,0xa4,0x60,0x67, +0x8e,0x34,0xbe,0x86,0xa8,0x61,0x0a,0xca,0xec,0xe8,0x0e,0xf5, +0x99,0xd2,0x0e,0x75,0x2b,0x69,0x87,0xfa,0x9f,0xd1,0xff,0x76, +0xd3,0xcb,0xff,0xb6,0xe4,0xe7,0xb8,0xa2,0xa2,0x6a,0x33,0x2c, +0x38,0xf9,0x21,0xc2,0x8c,0x5a,0xb2,0x32,0x7c,0xd6,0x89,0x9f, +0x81,0x21,0x23,0xb2,0x36,0xa4,0xcb,0xb5,0xc1,0xb9,0xc9,0xb6, +0xac,0x9e,0xb7,0xab,0x33,0xab,0x97,0x95,0x72,0xc2,0x99,0x7f, +0xd4,0x49,0xdf,0x6d,0xd0,0xd7,0xea,0x97,0xff,0x0b,0xfb,0x98, +0x3e,0x3c,0x47,0xc0,0x00,0xf4,0xd1,0x80,0x1d,0x99,0xb0,0x98, +0x38,0xd6,0xe9,0xb7,0x99,0x55,0xb8,0xdb,0xf3,0xed,0xce,0x9d, +0xd6,0x0d,0x36,0x9c,0x70,0x48,0x83,0x80,0x21,0xfd,0x6f,0x43, +0xa9,0x8a,0x8c,0x12,0x19,0x86,0xb1,0x0d,0xa0,0x9a,0xf5,0x87, +0x59,0xaa,0x54,0xde,0xcb,0x99,0x86,0xdf,0x79,0x9c,0x9c,0x7b, +0x46,0xc0,0x9e,0x7e,0xc6,0x9e,0xfa,0xf0,0x2a,0xe1,0xba,0xb4, +0x63,0x6d,0x74,0x6c,0xc7,0x1a,0xe2,0x58,0xbc,0x60,0x0a,0x17, +0xf0,0x23,0xe9,0xa1,0xf4,0x03,0x72,0x3c,0x3e,0x22,0x32,0xfc, +0x78,0xd8,0x31,0xfe,0xec,0xa5,0xb8,0xc1,0xe8,0xbe,0xc8,0xc7, +0xca,0xbd,0x43,0xf5,0x7d,0x55,0x77,0x9d,0x2a,0x79,0x6f,0x43, +0x2f,0x0b,0x37,0x7b,0x2e,0x89,0x85,0x66,0x23,0xec,0x61,0x31, +0xc5,0x87,0x26,0x8e,0x29,0xb8,0x53,0xad,0xc1,0xe1,0xd1,0xfb, +0xca,0x6f,0x33,0xbe,0x53,0xbe,0x18,0x1d,0x79,0x31,0xea,0xd4, +0xef,0xb8,0x9e,0x6f,0xaa,0x56,0xc4,0x66,0xa1,0x87,0x9c,0xc7, +0xb1,0xc7,0x17,0xfb,0x6d,0x6e,0x3d,0xc0,0x17,0xbe,0x89,0xfd, +0xe3,0x22,0x7c,0xc4,0xc9,0x7b,0x71,0x06,0x45,0x5f,0xc0,0x19, +0x22,0x87,0x57,0x81,0xa3,0xe6,0x8b,0x93,0x4d,0x61,0x32,0x4e, +0xa3,0x01,0x7b,0x13,0xcd,0xa7,0x4b,0xf4,0x35,0x71,0x81,0xae, +0x74,0xca,0x72,0xe3,0xdd,0x3b,0x3f,0x5c,0x83,0xbd,0x1c,0x30, +0x18,0xce,0xec,0x2d,0xf4,0xbd,0xa3,0xf6,0x33,0x53,0x97,0x28, +0x55,0x0d,0x9c,0xc3,0x9a,0x26,0x2b,0xe2,0xc6,0x95,0xac,0xd3, +0xb1,0xd8,0x6a,0x75,0x38,0x20,0x15,0x7b,0x1f,0x4b,0x43,0xd7, +0x64,0x56,0xd4,0xc6,0x69,0x84,0x5e,0x5d,0xa5,0x70,0x59,0x09, +0xd6,0x82,0x25,0x91,0x5f,0xe9,0x16,0x3f,0x7e,0x0f,0x4f,0x3a, +0xf1,0xc9,0xdb,0xd1,0x9f,0x3f,0x00,0x74,0xe3,0x2f,0x4c,0x56, +0x71,0x7a,0x65,0x72,0x95,0x5e,0x02,0x7f,0xd8,0x3e,0xc8,0xc1, +0xcf,0x85,0xc3,0xa3,0x4c,0x66,0x59,0x5a,0x79,0x42,0x89,0x71, +0x0a,0x6f,0x81,0x0a,0xbb,0x16,0xa1,0xc2,0xb2,0x2a,0x6b,0x3e, +0x3f,0xab,0x20,0x5f,0x92,0x5b,0xff,0xf6,0x18,0xc1,0xdc,0x6f, +0x98,0xc8,0x28,0x45,0xc8,0x62,0x30,0x17,0xbf,0x24,0x6f,0x21, +0x77,0x01,0x4b,0xaf,0x56,0xd3,0x88,0x98,0xab,0xc1,0x42,0x9a, +0x24,0xa9,0x68,0x58,0xb3,0xaf,0x64,0x67,0x7f,0x1e,0xef,0xf6, +0xc0,0x6e,0xd0,0xa1,0x95,0x1b,0xb1,0xc2,0x20,0x32,0x38,0x54, +0x7f,0x33,0x7f,0xd8,0x38,0x93,0xf7,0xd5,0xb7,0xd5,0xd1,0x37, +0x92,0x8a,0xb8,0xaf,0x20,0xd9,0x7a,0xe9,0xfb,0x12,0x77,0x0f, +0xd3,0xaf,0xbf,0x1b,0x34,0x10,0xd0,0x33,0x5a,0xc4,0x3d,0x41, +0xe7,0xaa,0x61,0xd4,0x8e,0xc1,0xab,0xfc,0x99,0xfb,0x27,0xfa, +0x8f,0xf4,0x73,0x4a,0xaf,0xa4,0x22,0x78,0x3f,0x41,0xab,0xf0, +0x13,0x2b,0x04,0x99,0x12,0xbb,0xd3,0x16,0x27,0xdd,0xd4,0x9c, +0x4f,0x84,0x1d,0xb7,0x53,0xc5,0xb1,0x92,0x3c,0xc3,0xcf,0xcc, +0xdd,0xea,0x8c,0x9b,0xf1,0xea,0x31,0x1d,0xd1,0x83,0xaf,0x54, +0xc4,0x30,0x69,0x08,0x23,0x36,0x9b,0x6b,0xe1,0x14,0xcb,0x42, +0x6b,0x1e,0xd4,0x7b,0x06,0xbf,0x8a,0x7f,0xcf,0xe1,0x1b,0x74, +0x27,0xa8,0x0d,0x6e,0xa0,0xcd,0xa0,0xb6,0x54,0xc6,0x52,0x1b, +0x83,0x50,0x9b,0x81,0x21,0xb0,0x26,0x98,0x26,0xe8,0x41,0x1a, +0x2b,0x4e,0x41,0x2f,0x89,0x8b,0xdf,0xa1,0x5c,0x5c,0x7b,0x36, +0xa9,0xd7,0xad,0xdd,0x5b,0xb6,0xb5,0x3f,0x9f,0x77,0x7b,0x62, +0x73,0xcb,0xae,0x93,0x1b,0xf1,0xc2,0x93,0x64,0xf8,0x4e,0xc3, +0xdd,0xc2,0xdb,0x46,0x59,0xbc,0x8f,0xb6,0xcd,0xee,0x7d,0x7a, +0xd2,0x4e,0x9e,0xad,0x24,0x5b,0x3b,0x73,0x4f,0xe2,0x76,0xa9, +0x23,0x8f,0x83,0x6e,0xf8,0x5d,0xe7,0x30,0x2f,0x8c,0xc4,0xef, +0xb9,0xa6,0x1b,0xb5,0x65,0xe8,0x2a,0x7f,0xfa,0xc9,0x89,0xe1, +0x23,0x83,0x9c,0xd2,0xdf,0x7b,0xe4,0xbb,0x48,0x0f,0xfe,0xf8, +0x8d,0xd6,0x4a,0x7c,0x4b,0x2d,0x75,0xcf,0x79,0x83,0x73,0x66, +0x6a,0xb6,0xee,0x16,0xde,0x26,0x01,0x69,0xfb,0xf8,0xe6,0xbc, +0xaa,0xdc,0xf2,0xa2,0x50,0x54,0x71,0x5b,0xba,0x73,0x7e,0x87, +0x0d,0x4f,0x7d,0x6e,0x43,0x01,0xe8,0x42,0xa5,0x0a,0x4c,0x62, +0xb7,0xa3,0x39,0x09,0xb8,0xe5,0xdb,0xe7,0xd5,0x6b,0xed,0xcf, +0x17,0x1b,0x15,0xe8,0x67,0xed,0xe1,0x84,0x02,0x29,0xb1,0x8e, +0x9a,0xb0,0x2d,0xe4,0x76,0x8d,0x4c,0x36,0x81,0x56,0xf1,0x3c, +0xae,0x10,0x34,0xf4,0x44,0x0d,0x9c,0x65,0x24,0x77,0xee,0xc1, +0x46,0x46,0x49,0x70,0x13,0x2a,0x49,0x6b,0x6a,0x06,0x25,0x3e, +0x41,0xba,0x78,0x9c,0xe6,0x72,0x29,0xf4,0xfe,0x05,0xde,0xe4, +0xcd,0xce,0x7b,0xba,0xf7,0x37,0xd6,0x36,0xf2,0x9b,0x9f,0xef, +0x18,0x5c,0x31,0xc4,0x89,0x6b,0x2e,0x10,0xd9,0x3a,0xad,0x3d, +0x33,0x76,0xd3,0x39,0x7f,0x77,0xfd,0xeb,0xd7,0x1d,0x2f,0x39, +0x61,0xea,0x5c,0x82,0x4b,0x51,0x03,0x1d,0x36,0xe3,0x43,0x8b, +0x64,0x7d,0xbe,0xfb,0x5a,0x47,0x4c,0x5b,0x1c,0x27,0xee,0x1d, +0xec,0x10,0xa2,0xcd,0x06,0x85,0x18,0x51,0x95,0x85,0x89,0xcd, +0xbf,0xf4,0x3f,0xbe,0xcb,0x15,0xe0,0x2d,0x22,0x46,0xdf,0x63, +0xae,0x45,0xc6,0x5c,0xba,0x16,0xc9,0x09,0xc1,0x0c,0x2a,0x2b, +0x6c,0x14,0xa3,0x9f,0xb1,0xf4,0xb7,0x10,0xbd,0x46,0x8c,0xa6, +0x69,0x5f,0xf5,0x43,0x5c,0x76,0xfa,0xb0,0xbe,0x3f,0x86,0xc6, +0xe5,0xcd,0xa3,0xe8,0x62,0x1e,0x53,0x97,0xfa,0x21,0x2e,0xfb, +0x4a,0xe8,0x62,0x97,0x0f,0x09,0x34,0x74,0x35,0xb2,0x31,0x6b, +0x70,0xe3,0xeb,0x5b,0x6b,0x6f,0xe7,0x52,0x74,0xf1,0x0e,0x67, +0x13,0xdf,0x6e,0xbb,0x61,0x27,0x69,0x7d,0xbf,0xda,0xa6,0x5e, +0xb7,0xc0,0x88,0xc3,0x3f,0x60,0x16,0x09,0xc1,0xd5,0x56,0xa8, +0xba,0x16,0xc7,0x16,0xea,0xf2,0x99,0xf9,0x29,0x85,0xc9,0x45, +0x9c,0xb8,0xad,0xf7,0x11,0xec,0x13,0x82,0x51,0x8b,0xcd,0x7d, +0x94,0xf6,0x34,0xfe,0x1b,0x0e,0xbe,0xe8,0xc1,0xc7,0x46,0xd2, +0x32,0xf7,0x1f,0x12,0x1e,0x19,0x23,0xa9,0xcd,0x69,0xe2,0x1d, +0x22,0x8c,0x85,0xa9,0xe2,0x58,0x16,0x64,0x90,0x4c,0xe8,0xbb, +0x9f,0x8a,0x63,0x68,0x2b,0xfd,0x46,0x93,0xbc,0x55,0x1b,0x5a, +0xbd,0x03,0xf3,0x36,0x34,0x7f,0x07,0xfb,0xdb,0xd1,0x93,0xcd, +0x2c,0x4f,0xa9,0x8a,0x2f,0x31,0x8d,0x97,0x92,0xbc,0xb5,0x94, +0xe4,0xd7,0xd1,0x24,0x1f,0x5f,0x1e,0x5b,0x65,0x96,0xc8,0x07, +0xcc,0x31,0x47,0x76,0xf7,0x0a,0x8a,0x54,0x52,0x72,0x52,0xf3, +0x92,0xf2,0x38,0x51,0x41,0x88,0xeb,0x60,0x47,0x92,0xe0,0x2c, +0xc9,0x7b,0x9c,0xfa,0x24,0xee,0x5b,0x0e,0x56,0x74,0xe3,0xf7, +0xc6,0x30,0x85,0xa1,0x0d,0xb6,0xc5,0xcf,0xd7,0xe3,0x47,0x05, +0xb4,0xc1,0x79,0xc9,0x05,0x49,0xb4,0xc1,0x5b,0x7b,0x1e,0x81, +0x96,0x10,0xcc,0xc2,0xfc,0x1b,0x34,0x7b,0x6b,0xd2,0x3c,0xae, +0x39,0x9a,0xc7,0xe9,0x95,0x78,0x1a,0xbf,0x23,0x82,0x02,0x4c, +0x14,0x15,0x58,0x61,0x12,0x54,0x12,0x0d,0xd4,0x7c,0xcf,0x22, +0x43,0xf3,0x7a,0xed,0xf5,0xca,0x17,0xc9,0x43,0x66,0x52,0x5e, +0x77,0xd9,0xe0,0x44,0x1d,0xeb,0xe0,0x7f,0xf2,0xfa,0xce,0xf6, +0x5c,0x3e,0xe8,0xae,0xdb,0x63,0xdf,0x36,0x0e,0xcd,0x0e,0xd0, +0xbc,0x9e,0xb7,0x31,0x7e,0x6f,0x4f,0x22,0x1f,0x7a,0xcb,0xef, +0xf9,0xa1,0x26,0x0a,0x39,0x69,0x5e,0x37,0x4c,0xda,0x10,0xad, +0xdb,0x73,0x8d,0x3f,0x75,0x23,0xec,0xf9,0x11,0x49,0xf0,0xcc, +0x1a,0x3c,0x09,0x6c,0x06,0xc7,0x6e,0x74,0x84,0x55,0x10,0xd6, +0x8b,0x33,0xd9,0xdc,0x86,0xdc,0x9e,0xf4,0x0e,0xd3,0x0c,0xfe, +0x80,0xbe,0xbf,0xbe,0x27,0x1d,0xf1,0x1e,0x43,0xd8,0x4f,0xa1, +0xb5,0xb9,0x31,0x98,0xe3,0x66,0x8c,0x32,0x82,0x28,0x0c,0xbd, +0x0e,0xa1,0x70,0xb6,0x87,0xc1,0x27,0x82,0x1f,0x09,0x6e,0xd9, +0xdf,0x15,0x50,0x63,0xee,0xc7,0xe7,0xda,0xe7,0x5b,0xa4,0x9b, +0x73,0x98,0x4a,0x73,0xdf,0x89,0x38,0x1a,0x54,0x4f,0x44,0x9c, +0xe0,0xcf,0x5c,0x62,0xaa,0x3b,0x7b,0x7f,0x1c,0x95,0x1c,0x21, +0x1f,0x24,0x47,0x28,0x6f,0x4f,0x64,0x9d,0x29,0xdf,0x54,0xc4, +0xb5,0xa8,0x32,0xa7,0xc4,0x92,0x6f,0xad,0xa9,0xab,0x2d,0xae, +0xe4,0x44,0xb5,0x7e,0x61,0x27,0x7b,0xe5,0xd2,0x97,0x51,0x67, +0xd4,0xde,0xa1,0x7a,0x75,0xa5,0xa2,0xd2,0xdf,0xfa,0xf2,0xd5, +0x44,0x9c,0xcf,0xa4,0xb6,0x27,0xb4,0xc7,0x34,0x1b,0xc6,0xf3, +0xa1,0x8b,0x1c,0x70,0xbc,0xd1,0x92,0x16,0x67,0x3e,0xb3,0x22, +0xad,0x2a,0xa5,0x86,0x83,0xd9,0xa2,0x80,0xb3,0x47,0xd7,0xe7, +0xa4,0x47,0x2d,0xe9,0x8d,0xea,0xc2,0xaf,0xe0,0xc7,0x8a,0xff, +0x50,0xe7,0x96,0x94,0xe5,0xc3,0x23,0x8e,0x7c,0x50,0x96,0x1f, +0xd7,0x43,0xf1,0x98,0xa4,0x2c,0xdf,0xfa,0x41,0x59,0x7e,0xa9, +0x1d,0x6a,0x48,0xca,0xf2,0x09,0xa6,0x7c,0x53,0x74,0x57,0x4c, +0xd7,0xa8,0xb2,0xbc,0xbe,0x11,0x68,0xb1,0xc7,0xff,0xab,0x2c, +0x5f,0x65,0xce,0xff,0x02,0x63,0xaa,0xff,0x37,0x65,0xf9,0xfa, +0x4a,0x45,0x61,0x02,0x44,0x90,0x62,0x54,0x2e,0xc3,0x3d,0xf1, +0x38,0xb5,0x2f,0x9d,0x3f,0x06,0x4a,0x9e,0xb0,0xc7,0x03,0x54, +0x39,0xfc,0x27,0x9c,0x1c,0xc1,0x2f,0xbc,0x70,0x86,0x11,0x4e, +0xe8,0x70,0xe4,0xaf,0xc3,0x67,0x25,0xb0,0x38,0x19,0x66,0xd1, +0x41,0x5f,0x21,0x7c,0x47,0xb2,0x0b,0x33,0x4a,0x93,0x0b,0x6d, +0xd2,0x78,0xd8,0xdf,0x21,0x4e,0xbe,0xa5,0xbb,0x1b,0xff,0x31, +0x03,0x0b,0xc6,0x3a,0x24,0x3d,0xb0,0xc0,0x21,0xc9,0x4f,0x19, +0xaf,0x9a,0xfd,0x3d,0x8e,0xa2,0xda,0x0c,0x18,0x47,0x82,0x9d, +0xfd,0x9d,0x7c,0xdc,0xe9,0xb8,0x32,0x75,0x29,0x47,0x8a,0xbc, +0x6b,0x0f,0x66,0x29,0x83,0xbf,0x08,0xe4,0x21,0xdc,0x83,0x8e, +0x11,0x2d,0xec,0x80,0x9e,0x6d,0xe2,0x32,0x33,0x61,0x19,0x4e, +0x1c,0x84,0x89,0xc2,0xb6,0x0e,0x16,0xb7,0xc2,0x15,0x22,0xf6, +0xdd,0x11,0xfa,0x18,0x9c,0xa4,0xb0,0x4d,0xec,0x7b,0x48,0x33, +0x43,0xae,0x7c,0x05,0xc9,0xb3,0xcd,0xb1,0xca,0x32,0xef,0xcc, +0xe4,0x43,0xea,0x82,0x2a,0x0f,0x54,0x73,0xb0,0xb6,0x0b,0xcb, +0x24,0x9b,0x2e,0x8e,0x29,0x36,0x8e,0xe7,0xbd,0x16,0x99,0xae, +0xd2,0xdc,0xd1,0xe0,0xcc,0x57,0x54,0x94,0xd5,0xe7,0x37,0x72, +0x82,0x55,0x17,0x49,0x28,0x8e,0x2d,0xbe,0x56,0x6c,0x1c,0xcb, +0xfb,0x2f,0xb5,0x5b,0xa9,0xb3,0xbd,0xd9,0x9d,0x2f,0xaa,0xc8, +0xab,0xcd,0xaa,0xe7,0xbe,0x65,0x32,0x5d,0x33,0x9c,0x32,0x1c, +0xda,0x33,0xf8,0x50,0x0a,0xb4,0x43,0x68,0xc6,0xd0,0xef,0x62, +0x4e,0x8b,0xa7,0x49,0x9f,0xb8,0x31,0x91,0x05,0x86,0x85,0x29, +0x31,0xc0,0x26,0xff,0x9e,0xe9,0xd7,0xc5,0xa3,0x8d,0x2d,0x1e, +0x3d,0x82,0x55,0xe7,0x13,0x28,0x4e,0x64,0x68,0x56,0x8c,0xfc, +0xfd,0x2a,0x47,0x33,0x70,0x98,0xb8,0xd0,0x40,0x50,0x63,0xdd, +0x66,0xe2,0x27,0x7b,0x31,0x4c,0x2b,0x7b,0x1f,0x0f,0xd5,0x3f, +0xfc,0x7a,0x3b,0x13,0xd4,0xb8,0x68,0x26,0x1b,0xd5,0x60,0x9c, +0x16,0x54,0x2e,0xce,0x1e,0xe4,0xf1,0xc8,0x6d,0xfc,0xe2,0x86, +0xd3,0x9f,0x74,0xfc,0x5c,0xe5,0xcf,0x88,0x01,0x7e,0x8a,0x47, +0xd1,0x96,0xc1,0xc8,0xa3,0xb8,0x71,0x33,0xce,0x50,0x6b,0x75, +0x54,0x7c,0x09,0xab,0x92,0x40,0x07,0xae,0xa9,0xc0,0x2c,0xc1, +0xbd,0x17,0x8f,0xb1,0xe2,0x16,0x94,0x93,0xd3,0x31,0x27,0x2e, +0x1d,0x0b,0x97,0x2c,0xf1,0x7b,0x50,0xe9,0x42,0x15,0xf8,0xc9, +0x18,0x7f,0xc2,0x05,0x26,0x30,0x83,0x39,0x82,0x0a,0xa6,0xa8, +0xb0,0x69,0x6e,0x89,0x8c,0xbf,0xf7,0x63,0xe5,0x9b,0x2b,0x52, +0x39,0xa8,0xd5,0xdd,0xc2,0x17,0xcc,0x95,0x51,0x18,0xf3,0x18, +0xd7,0x96,0x57,0x2b,0x7a,0x0b,0xaf,0x48,0x98,0x66,0xf0,0xc6, +0x20,0x9d,0xfa,0x03,0x7c,0xe6,0x50,0xce,0xcb,0xa4,0x87,0x1c, +0x1e,0x46,0x5b,0x72,0xe4,0x6e,0xf0,0xb3,0x90,0x21,0x9b,0x20, +0x3e,0x4d,0x27,0x73,0x73,0xe2,0x4e,0x4e,0xde,0x81,0x47,0x48, +0x37,0xee,0x03,0x7f,0x03,0xf4,0xc7,0x45,0xc6,0xb0,0x08,0x7b, +0xd0,0xde,0x50,0xf0,0xeb,0x45,0x0f,0xe8,0xa1,0x13,0xf0,0x83, +0x70,0x81,0x24,0xfa,0xc5,0x7b,0xc5,0x7b,0x9a,0x9c,0x32,0x3a, +0x63,0x70,0xf6,0xc6,0x8b,0xdb,0x52,0x29,0x01,0xce,0x3c,0x9f, +0xf7,0xd1,0x75,0xd3,0x76,0xde,0x17,0x9c,0x73,0x20,0x5b,0x2a, +0x25,0x50,0x2e,0x9d,0xe2,0xc9,0xe6,0x03,0x75,0x3d,0xb5,0xdd, +0x4d,0x43,0x93,0x42,0x13,0x8f,0x24,0x50,0xf0,0xd3,0x6d,0xd9, +0x6d,0xda,0xfa,0xa1,0x94,0x80,0x8f,0xdb,0x79,0xd7,0x0b,0x6e, +0xd2,0x29,0x9e,0xeb,0x91,0xf4,0xf5,0x9f,0x52,0x02,0x35,0x97, +0xab,0xa3,0x2a,0xa3,0xae,0x48,0xa7,0x78,0x0e,0xb5,0xa4,0xf1, +0x21,0x77,0xfd,0xee,0xfb,0xf6,0x72,0x42,0x10,0x04,0x4a,0xec, +0x5e,0x2b,0xc2,0x86,0x73,0x3e,0x19,0x76,0xc8,0x42,0x75,0xa6, +0x04,0xc7,0x7f,0x66,0xee,0x5f,0x28,0xce,0x4e,0x1c,0x48,0x18, +0xb8,0xf2,0xfc,0xa2,0xc4,0xe0,0x6d,0x8c,0x60,0x19,0x05,0x23, +0x9f,0x38,0x2e,0xc4,0xe9,0x5a,0x52,0xfd,0xd3,0x79,0x2f,0x9a, +0x41,0x31,0x86,0xf2,0x7e,0x24,0x23,0xfd,0x94,0xb5,0xd7,0x8d, +0xb2,0xf6,0xd5,0x14,0x91,0xc3,0x9f,0x1f,0x58,0x7b,0x1d,0x65, +0xed,0x18,0xee,0x46,0xf2,0xb7,0x65,0xae,0x49,0x5e,0xd7,0x91, +0xce,0x87,0x3e,0x0b,0x78,0xb9,0xff,0x3e,0x87,0xf5,0xd8,0x4c, +0xea,0x5e,0x66,0xbd,0x4d,0xf8,0x59,0x16,0xcb,0x1f,0x5d,0x19, +0xb4,0xda,0x41,0x3a,0xc1,0x63,0x27,0x7f,0x40,0x30,0x16,0x07, +0x47,0xd4,0x86,0xc0,0x4b,0xb8,0x8f,0x9f,0xa1,0x05,0x2b,0x95, +0x49,0xd3,0x66,0xea,0x53,0xd3,0xeb,0xa5,0x5c,0xf0,0x02,0xfe, +0x0f,0x69,0xef,0x01,0x55,0x45,0xf2,0xb4,0x0f,0x9b,0x98,0x19, +0x13,0x6b,0x6a,0x1d,0xc0,0x05,0x73,0xce,0x79,0x05,0x41,0x41, +0x04,0x44,0xd2,0x25,0x67,0x04,0x24,0x47,0x31,0xa2,0x08,0x88, +0xa8,0xeb,0x9a,0x40,0x89,0x92,0x73,0xce,0x02,0x92,0x73,0x30, +0xe7,0xbc,0xeb,0xba,0xeb,0xae,0x61,0xa3,0xeb,0xae,0x35,0xd7, +0x9a,0xfb,0x7b,0xbf,0x1e,0xdc,0xf7,0x3d,0xff,0x2f,0x9f,0xef, +0x7c,0x7a,0xce,0x65,0x18,0x60,0xa6,0xbb,0xba,0xba,0xea,0x79, +0xba,0xab,0xab,0x12,0x59,0xb8,0x1c,0x41,0xbc,0x4c,0x65,0xdb, +0xcc,0x6d,0x9a,0xdc,0xf9,0xde,0xd6,0xc1,0xa7,0x35,0x03,0x9c, +0x58,0x44,0xe9,0xdc,0xce,0x41,0xb3,0x3b,0x76,0x2d,0x4e,0x5e, +0x7c,0x8b,0x63,0x9f,0x7e,0xbd,0x31,0xa7,0x8b,0x5e,0x04,0xa6, +0xd2,0xe7,0x4c,0x65,0xc5,0x07,0x96,0x84,0x5e,0x7c,0x29,0x3e, +0x18,0x0a,0x25,0x7d,0x44,0xcc,0xcd,0x30,0xab,0x9f,0x7e,0x9c, +0xb6,0x85,0xd3,0x16,0x7d,0xbd,0x90,0x25,0x7d,0xa4,0xb7,0x63, +0x3a,0x23,0x9e,0x14,0xb5,0x89,0x7c,0x1c,0x34,0x29,0xc6,0x31, +0xc2,0x2d,0x54,0x26,0x62,0xfc,0x3d,0x21,0x9e,0x11,0xe3,0x71, +0x1c,0x11,0xe2,0xb7,0x88,0xf1,0x8c,0xb1,0x18,0x4c,0x9a,0xe5, +0x13,0x1c,0x07,0x40,0xae,0x38,0x85,0x72,0x56,0x6e,0x02,0x87, +0x89,0x62,0xc2,0x7d,0xf9,0x04,0x46,0x31,0x81,0x12,0x43,0xf9, +0x84,0xaf,0x14,0x13,0xe8,0x7b,0x94,0xe4,0x63,0xc8,0xc0,0x7d, +0x48,0xeb,0xc2,0xb4,0x47,0xa6,0x3a,0x98,0x29,0x7d,0x48,0x99, +0xdc,0x75,0xe9,0xcd,0x4c,0x06,0x52,0xf4,0x09,0x12,0x5f,0xb4, +0x0c,0x47,0xfb,0x63,0x52,0x6a,0x6d,0xb7,0x0b,0x60,0x98,0x0e, +0xf3,0x2a,0x39,0xc5,0x22,0xec,0x23,0x96,0xb6,0x9a,0x56,0xda, +0x3b,0x4b,0xac,0xf9,0xeb,0x55,0x37,0x1a,0xdb,0x9a,0x38,0x2c, +0xee,0x97,0x6f,0x32,0x63,0xd1,0x61,0x11,0xa9,0x76,0x6c,0xd8, +0x56,0x68,0xdb,0x5c,0xc2,0x87,0x74,0xb9,0xde,0xf2,0x6a,0xe6, +0xe4,0x7b,0xb0,0x88,0x5c,0x0f,0x60,0xab,0xba,0xaa,0x6e,0xe7, +0xf4,0xdb,0x64,0xf1,0x7b,0x2c,0x02,0x76,0xb8,0x99,0x5f,0xd9, +0xcd,0xef,0xdd,0x2e,0xae,0xb1,0x14,0xd6,0xa0,0x9f,0x74,0xe8, +0x4f,0xa6,0x04,0x4b,0xa8,0x53,0x4d,0x6d,0xd2,0x80,0x5d,0x30, +0xa6,0x9b,0xc5,0x84,0x1f,0x48,0x78,0x67,0xe0,0x40,0x58,0x83, +0xf5,0x01,0xbe,0xc0,0xb1,0xc8,0xe4,0x92,0x23,0x87,0x63,0x8f, +0x91,0xf0,0x16,0x9f,0x3b,0xbb,0x2b,0x6d,0xf7,0xf2,0xf9,0xee, +0xa5,0x3b,0x32,0x1c,0x38,0x2f,0x5c,0x4f,0x9a,0xbd,0x9a,0x1d, +0xca,0xdc,0x1a,0x6a,0x79,0xdf,0x06,0x87,0x66,0xa7,0x4a,0xee, +0x7f,0x9f,0x9e,0x5e,0x42,0xcb,0x26,0x8c,0xff,0x45,0x97,0xb9, +0xda,0x4b,0x67,0xe9,0xab,0x54,0xd8,0x96,0x65,0x97,0xe6,0x17, +0x15,0xa9,0x60,0xb9,0xfc,0x40,0x3b,0xbe,0x7f,0x0e,0xfd,0xad, +0xd8,0xff,0x78,0xe8,0xf3,0x21,0xbc,0x69,0xc7,0x47,0x6c,0x5a, +0x6e,0x6a,0x7e,0x62,0x8e,0x29,0x75,0x9c,0x41,0xe1,0x41,0xfb, +0x83,0x39,0x0c,0x62,0x92,0x73,0x92,0xb2,0x13,0x72,0xb8,0xb2, +0x3b,0x90,0xa9,0x3f,0x70,0xe7,0x73,0x96,0x7b,0x34,0xc3,0xfb, +0x04,0x73,0xab,0x99,0x84,0xa4,0x8b,0x49,0x17,0x93,0xa5,0x85, +0x1b,0xcc,0x95,0x32,0xf6,0x43,0xae,0x36,0x4b,0xaf,0xa6,0x91, +0xe7,0x90,0xbb,0x91,0x85,0xdc,0x05,0xa4,0xce,0xb1,0xce,0xb6, +0xd4,0xbc,0xb7,0x88,0xf7,0xe9,0x77,0xed,0x70,0xaf,0xe3,0x14, +0xf6,0x68,0x41,0x06,0xba,0xea,0xbb,0x0b,0x3a,0xad,0x73,0xf8, +0x60,0x7b,0x37,0x5b,0x33,0x07,0x4e,0x38,0x0f,0x13,0x48,0x8e, +0x7d,0x96,0x6d,0xaa,0x4c,0x4a,0x3e,0xd3,0xb7,0xb7,0x3d,0x94, +0x7a,0xbe,0x1c,0x8a,0xce,0x6c,0x2e,0x38,0x9e,0x37,0xbd,0x4a, +0x61,0xe6,0x40,0x74,0xdb,0xe1,0x16,0xca,0xc3,0x7c,0xe5,0xdf, +0x11,0xe7,0x79,0xe6,0x1b,0x74,0x0c,0x28,0xb3,0x7e,0xfe,0xf0, +0xfa,0xaf,0xcd,0x7f,0x71,0xf0,0xcd,0x0e,0xd2,0x77,0xa1,0x27, +0xb1,0x21,0x25,0xac,0x89,0xdf,0x18,0x8a,0x8b,0x0e,0x20,0x7b, +0x22,0xd9,0x81,0x6f,0x3c,0xd3,0x7a,0xae,0x2d,0x8e,0xdb,0x88, +0xc6,0xf6,0x60,0xac,0x87,0xab,0xf0,0x1e,0xac,0xd2,0x45,0x7d, +0x7b,0xd0,0x5f,0xcc,0x6e,0x8f,0x35,0x3c,0xb1,0xe3,0xe4,0x39, +0x1b,0x1e,0xe6,0xc5,0xc3,0xda,0x34,0x18,0x9b,0x79,0xa2,0x85, +0xb7,0x8e,0x31,0x89,0x31,0x8e,0xe5,0x7e,0x06,0x9d,0x56,0xd4, +0xb9,0x4f,0x21,0xe6,0x3d,0x5c,0x7b,0x0f,0xcc,0x5b,0x29,0x0c, +0x04,0x37,0x18,0x4f,0x2c,0x20,0xa6,0x97,0xa5,0xf8,0xd2,0x88, +0xb8,0x2d,0xdc,0x84,0xe3,0x37,0xea,0x96,0xdb,0xf1,0x25,0x45, +0x79,0x45,0x59,0x45,0x14,0x17,0x74,0x0b,0xdf,0xb0,0xa5,0xcd, +0xc5,0x5d,0x79,0x9d,0x9c,0xb0,0xc9,0x8d,0xc8,0x60,0xbc,0x18, +0x83,0x0c,0x9b,0x2c,0x53,0x7a,0xf7,0x6f,0x02,0x9a,0xf0,0x27, +0x3d,0xac,0xf8,0xb5,0x2b,0x59,0x33,0xe3,0x07,0x16,0x56,0xad, +0x21,0x3f,0xc0,0x88,0x35,0x2c,0xae,0x75,0x26,0xcb,0x67,0xbc, +0xa6,0x37,0x96,0x93,0xd7,0x30,0x62,0x39,0xa5,0x3d,0x1f,0xe4, +0x33,0x09,0xaa,0x0c,0x50,0x12,0xe4,0xc9,0x96,0x17,0x94,0x55, +0xe5,0x16,0xdb,0x17,0xf3,0x61,0x7e,0xfe,0x3e,0x9e,0x01,0x15, +0xbb,0x79,0xd4,0x85,0x29,0x26,0x38,0x05,0xf5,0x98,0xba,0xfc, +0xc0,0x6a,0xff,0xd2,0x80,0x02,0x15,0xa7,0xc0,0xb2,0xa0,0xa2, +0xc0,0x42,0x5f,0x15,0x74,0x42,0xd3,0x7e,0x50,0x61,0x84,0xe1, +0xe2,0x02,0x72,0x07,0xe7,0xc1,0xd4,0x19,0x70,0xd0,0x28,0xaf, +0x95,0x5f,0x50,0xa4,0x55,0x6e,0x72,0xf9,0x46,0x61,0x5f,0x45, +0x57,0xbd,0x7b,0x35,0x6f,0xed,0xba,0xc3,0xc7,0x20,0xc0,0xa5, +0xda,0xb7,0x3e,0xb8,0x8d,0x13,0x48,0xa7,0xb8,0xe9,0x11,0x5c, +0x00,0x37,0xb1,0x03,0xdd,0x20,0x46,0x47,0x5c,0x6a,0x2d,0x8c, +0x66,0xd6,0x6d,0xc7,0x29,0x36,0xb8,0xc9,0x2b,0xcb,0x96,0x7f, +0x96,0x7e,0x3f,0xe7,0x7a,0x01,0x47,0xb9,0xb2,0xe7,0x09,0xf7, +0xe3,0x6e,0x27,0x12,0x2c,0x79,0xd0,0xcd,0x80,0x79,0x39,0x30, +0xa1,0xe8,0x58,0x1b,0xaf,0x19,0xbe,0xe6,0xf0,0xa2,0x23,0x1c, +0xa8,0xb2,0xd7,0x4a,0x3b,0xab,0x2e,0x53,0xf7,0x14,0x48,0xc1, +0xcf,0x1c,0x71,0xfb,0x5f,0x94,0xe0,0xf7,0xcb,0x07,0x48,0x20, +0x4e,0xdd,0x8e,0xeb,0xf4,0x67,0x37,0x39,0xf1,0x4f,0x61,0xf4, +0x1d,0x30,0xc9,0x05,0x65,0x0e,0xde,0x52,0x0a,0x68,0xf0,0x7e, +0x13,0x7c,0xe5,0x09,0xc4,0x7a,0x1f,0x5f,0x8d,0xd3,0x1e,0xa3, +0xfe,0x13,0x1c,0xcd,0x29,0xee,0x09,0xba,0xc4,0x12,0xea,0xe8, +0x5c,0x78,0x8c,0x33,0xa9,0x24,0xa1,0x87,0xc5,0x1b,0xa8,0x41, +0xef,0x15,0x77,0xb3,0xc2,0x38,0x3c,0x46,0x8a,0xcd,0x2b,0xbf, +0x2a,0xd3,0xda,0x70,0x08,0x47,0x86,0xcf,0x3c,0xd2,0x05,0xaa, +0x6d,0xb0,0xbd,0x02,0x66,0x98,0xa6,0x52,0xca,0xbe,0xd0,0x12, +0xad,0x2c,0xf1,0x4b,0xbd,0x58,0xfe,0xa2,0x19,0x68,0x24,0xc2, +0x8e,0x22,0x98,0x52,0xa0,0x92,0x18,0x90,0x18,0x94,0x10,0xd2, +0x5d,0xc2,0xbb,0x01,0xbb,0x1d,0x16,0x39,0xfe,0xc4,0x89,0x9b, +0xb3,0x48,0x37,0x16,0x5b,0xb2,0x5d,0xe2,0x22,0xd2,0x09,0x7b, +0x20,0x17,0xcb,0xf0,0x09,0x0b,0x7b,0x21,0x97,0x50,0xb8,0xbb, +0x09,0xd6,0xb0,0xca,0xdf,0x52,0x56,0x33,0xd4,0x10,0x61,0x8a, +0xa8,0x45,0xc0,0xb0,0x17,0x0d,0xa1,0x0e,0xac,0x7b,0xc5,0x6c, +0x0b,0xc8,0x56,0x6c,0xc3,0x29,0xc2,0x59,0x53,0xf1,0xec,0x4a, +0x0b,0xa1,0xa6,0x17,0x9d,0x18,0xfc,0x47,0xb8,0x49,0x3d,0x09, +0xc8,0xd8,0xcb,0x5f,0xd1,0x3f,0x2b,0xa1,0xed,0xb7,0x1a,0xd5, +0x8d,0x25,0xff,0xfd,0x0a,0xfa,0x64,0x2c,0xff,0x3f,0xbe,0xe2, +0xe5,0xd0,0x2b,0x1e,0xd1,0x57,0xec,0xb4,0xf8,0xff,0x69,0xee, +0x4f,0x51,0xbe,0xda,0x23,0xce,0x92,0xb1,0x4d,0xd2,0xeb,0xaf, +0x76,0x7f,0x0e,0xd4,0xbe,0x6a,0xc9,0x0a,0x3e,0xe2,0xc2,0xff, +0x5b,0x47,0x20,0xae,0x10,0x47,0xd0,0xc6,0x25,0x40,0x0e,0xde, +0xc2,0xc7,0x2c,0x24,0x42,0x36,0xa1,0x73,0xc5,0x09,0x56,0x51, +0x55,0xf4,0x00,0x4a,0xb5,0x34,0xc1,0xa1,0x07,0x1d,0x60,0x0d, +0xec,0xe9,0x41,0x75,0x0a,0x34,0x0b,0xfb,0x33,0x3b,0xad,0xa8, +0x39,0x33,0x0b,0x31,0xf6,0x95,0x71,0xd8,0x24,0x03,0x2f,0xda, +0x1b,0x0b,0x19,0x58,0xa0,0x26,0x1e,0x32,0x87,0x43,0x78,0x70, +0x10,0x0e,0x42,0x64,0x1f,0x83,0x77,0x84,0x40,0x0a,0x34,0x83, +0x7a,0x76,0xd7,0xd9,0x86,0x52,0xa0,0x59,0x68,0x97,0x6d,0xc3, +0x89,0xdf,0xc0,0x2c,0xda,0xbe,0xae,0x6e,0x36,0x07,0x1d,0xa8, +0xbc,0xfe,0x23,0x63,0x1b,0xa4,0x06,0xd7,0xff,0x2b,0xaf,0x7a, +0x4b,0xb6,0x7b,0x48,0x5e,0x51,0x54,0x5e,0x57,0x24,0x79,0x45, +0x43,0x8e,0x74,0x28,0xce,0x10,0x56,0xd3,0x26,0xed,0x07,0x3b, +0xf2,0xb0,0x7a,0xf0,0x72,0xff,0x15,0xcf,0x7a,0xde,0xd2,0x79, +0xbb,0xc7,0x56,0x2f,0x8f,0xbe,0xbd,0x83,0xd1,0xd7,0x38,0x38, +0x0a,0x9e,0x78,0x9e,0xa9,0x2f,0xac,0xab,0xcc,0x2f,0xe6,0x2e, +0x23,0xb2,0xe9,0x59,0x52,0xe0,0x9e,0x49,0x2a,0x6f,0xb0,0x78, +0xd9,0x57,0xb8,0x48,0xbf,0xc4,0x9e,0x2f,0x4c,0x2e,0x48,0xcd, +0x4b,0xe5,0x50,0x13,0x12,0x58,0x5d,0x27,0xa9,0xa6,0xc2,0xea, +0x80,0x3c,0x4b,0xfe,0xcf,0x9c,0x3f,0x0a,0xbe,0xab,0x49,0x8f, +0x48,0x3b,0x7c,0xe9,0xf0,0x2a,0x6b,0x54,0xf2,0xc0,0x8d,0xbb, +0xa4,0xfc,0xdd,0x1b,0xeb,0x40,0xb9,0xe1,0xdd,0x60,0xea,0xfe, +0x94,0x7d,0x09,0x7b,0x70,0x94,0x3e,0x2e,0x34,0x47,0x53,0x97, +0x7c,0x8a,0x86,0xb6,0x37,0xc1,0x9c,0x1e,0x60,0x1f,0x70,0xf1, +0xa1,0xe7,0x82,0x03,0x55,0xad,0xf6,0x1c,0xb6,0x54,0x9f,0xc7, +0x64,0x58,0x2b,0x3d,0x60,0xfe,0xae,0x2f,0xfa,0x0d,0x86,0x99, +0xc3,0x04,0x1c,0xf6,0x4c,0xa3,0x28,0x2d,0x2f,0x23,0x3b,0x8b, +0xbb,0xc7,0x64,0xa3,0xce,0x9f,0xb8,0x1c,0xf6,0xe0,0xd4,0x9a, +0x76,0x7e,0x61,0xf7,0xd6,0x1e,0xbb,0x7e,0x6e,0x99,0x90,0x4d, +0x82,0x02,0x3c,0x82,0x9d,0x43,0x38,0xbc,0xce,0x54,0x17,0x54, +0x14,0x95,0x14,0x73,0xb0,0x04,0xa7,0x13,0x1c,0x86,0x09,0x30, +0x8c,0x85,0x3b,0x38,0x8c,0xc0,0x30,0x28,0xc0,0x61,0xb4,0xef, +0x02,0xe5,0xa6,0x38,0xb2,0x0f,0xd6,0xa0,0x1b,0x5b,0x9c,0x5d, +0x98,0x9f,0x99,0xe3,0x5c,0xcc,0xef,0x09,0x0d,0x08,0xf0,0x08, +0xcd,0x3e,0xc8,0xe3,0xda,0xf7,0x66,0x73,0x71,0x2d,0x53,0x90, +0x1e,0x54,0xe2,0x5f,0xe8,0x3f,0x14,0x4f,0xb8,0x27,0x7f,0x4f, +0xde,0x6e,0x15,0x74,0xc4,0x35,0x7d,0x30,0x92,0xf9,0x1e,0x03, +0x88,0x30,0x00,0x1b,0xc4,0x01,0xa6,0x07,0x47,0x93,0xdb,0x82, +0xcd,0x36,0x0a,0xf8,0x44,0x6f,0xca,0x5a,0x14,0x1b,0x25,0xd6, +0xa2,0x80,0x14,0x22,0x76,0x0c,0x0c,0xc5,0xe9,0xcc,0x22,0x42, +0x87,0x89,0xd8,0xc1,0xb8,0x8e,0x12,0x3a,0xb6,0xd3,0xaf,0xb8, +0x10,0xb7,0x13,0x98,0x9e,0x09,0xc3,0x4a,0x9e,0x94,0x79,0x37, +0xf0,0x5a,0x81,0xf3,0x42,0x70,0xea,0x41,0x4e,0x68,0xca,0x27, +0x7f,0x1d,0x80,0xd1,0x41,0x7f,0x06,0x14,0x77,0xf0,0x0b,0x0a, +0x71,0x5c,0xe1,0xcc,0x0c,0x4a,0xa4,0x47,0x48,0x99,0x57,0x26, +0xf9,0xa2,0xd1,0x21,0x74,0xfe,0x3a,0xc9,0x81,0x07,0xaf,0x73, +0xb0,0x25,0x05,0xe6,0x54,0x73,0x0a,0x55,0x3a,0xf5,0xfb,0x85, +0xb5,0x66,0xb8,0x9f,0x31,0xf5,0xda,0xe4,0xb7,0x39,0x2c,0xc7, +0x8a,0xbf,0x9d,0x7f,0xa3,0xb8,0xbb,0x94,0x0b,0xa2,0x44,0x31, +0xa0,0xd2,0xbe,0xd1,0xa3,0x70,0xa7,0x0f,0x5f,0x1b,0xd4,0xe2, +0x56,0xea,0xc5,0xc9,0xa7,0x1c,0x26,0x61,0x4c,0x71,0x79,0x61, +0xdd,0xa5,0x0a,0x67,0x0a,0x90,0x3c,0x83,0xdd,0xdc,0x3d,0x0b, +0x0e,0xf1,0xbe,0xe2,0x62,0x7b,0x61,0xf1,0x5a,0xe4,0xd9,0x34, +0x47,0x29,0x17,0x5c,0x53,0x4a,0x66,0x8d,0xc6,0x43,0x18,0xdd, +0x4a,0x49,0x23,0xce,0xab,0x27,0x87,0x2a,0xf7,0x95,0x87,0x16, +0x3b,0x1f,0xe4,0xf3,0xfc,0xb3,0xfd,0x52,0x7d,0x38,0xdc,0xf3, +0x2d,0xc9,0x0f,0xcd,0xf7,0x4e,0x0b,0x6c,0xca,0xe0,0xc3,0xcb, +0x42,0x2a,0x43,0xf3,0xb8,0x63,0x18,0x4a,0xea,0xf7,0xd4,0x05, +0x95,0x06,0x95,0xd5,0xf0,0xfe,0x45,0xee,0x45,0x3b,0xb3,0x38, +0x1c,0x49,0x49,0x88,0x3d,0x1e,0x47,0x1c,0x2c,0x11,0xde,0x07, +0x5c,0x05,0xc4,0x94,0x56,0x78,0xd7,0xfc,0x9f,0x09,0x8e,0x94, +0xd8,0xd9,0x93,0x56,0x18,0x63,0xcf,0x42,0x1c,0xd5,0x5e,0xf1, +0x3d,0x2c,0x87,0xad,0x4c,0xb4,0xbb,0x7f,0xc8,0x4a,0xff,0x82, +0x9d,0x3c,0x70,0x75,0x15,0xcd,0x17,0x3b,0x38,0x18,0xef,0xc2, +0x38,0x67,0xec,0xef,0x54,0x87,0xe1,0x4c,0x69,0x62,0x4a,0x81, +0x46,0x31,0xeb,0x90,0xac,0xe4,0xb6,0x9a,0x0d,0x89,0x8d,0xcf, +0xd1,0xa8,0x05,0x07,0x56,0x7c,0x4f,0xff,0x5c,0x78,0xbf,0x53, +0x7c,0xcf,0x28,0xc3,0x79,0x79,0x25,0x49,0x5e,0xd3,0x6d,0xf0, +0xb3,0x76,0x69,0x07,0xbf,0xee,0x8e,0xed,0xbd,0xbd,0x77,0x39, +0x3d,0x66,0x8f,0x8e,0x93,0xd6,0x1c,0x5d,0x8a,0x35,0xfe,0xb8, +0xd7,0xf7,0x32,0xf5,0x27,0xea,0x26,0xa5,0xd0,0x62,0xa3,0x5e, +0x34,0x82,0x5a,0xb0,0xe9,0x15,0x73,0x2c,0x20,0x47,0xb1,0x95, +0x1a,0xa1,0x33,0x26,0xe2,0x99,0x15,0x16,0x42,0x5d,0xaf,0x84, +0xac,0x5f,0xf5,0x11,0xd7,0x48,0x87,0x48,0xbb,0x68,0x0e,0x5a, +0x60,0x66,0x17,0xce,0x84,0x31,0xbf,0x76,0x51,0x2c,0xf0,0x1a, +0xc7,0xe0,0x4a,0x2b,0x58,0x89,0xfd,0xac,0x65,0x94,0x2c,0xc6, +0xea,0x58,0xa2,0x19,0x0f,0x93,0xd3,0x40,0xa3,0xe8,0x6d,0x11, +0x67,0xf4,0x86,0xa4,0x75,0x25,0xf7,0x26,0x48,0x39,0x54,0x8f, +0x9a,0x46,0x5a,0x1d,0xb2,0xe7,0xf0,0x28,0xcc,0x21,0xb9,0x56, +0x79,0x9a,0xc9,0x16,0xad,0x97,0xf8,0x23,0x7d,0xa1,0x2f,0xc2, +0x24,0xea,0x69,0xfc,0x92,0xc0,0x99,0x56,0x3c,0xf3,0x9c,0x5a, +0xb1,0x17,0xb8,0xf7,0x1e,0x64,0xb4,0x62,0xc6,0xf7,0xcc,0x77, +0x17,0x9e,0x27,0xde,0x1e,0x2a,0x17,0x3e,0x35,0x04,0xad,0x0f, +0xe1,0x96,0x93,0xc9,0x76,0xfc,0x9d,0xd3,0x0f,0xcf,0x3d,0x94, +0xca,0x85,0x5f,0xf0,0x60,0x8d,0xaf,0x79,0x5f,0x1f,0x0a,0xc7, +0xde,0xab,0xb3,0x53,0x6b,0xa9,0xd4,0xab,0x37,0xf7,0x3a,0x7e, +0x48,0x79,0xc5,0xc5,0x33,0x09,0x9a,0x55,0x26,0x8f,0xb6,0x14, +0x5f,0xe1,0x21,0x4e,0x0f,0x03,0xf0,0x05,0x04,0x6c,0xc4,0x63, +0xf6,0x70,0x6c,0x1d,0xa6,0xdb,0x09,0x2f,0xdb,0x30,0x93,0xc1, +0x9b,0xcf,0x89,0x47,0x94,0x6b,0x94,0x0b,0xed,0x54,0x07,0x4c, +0xe9,0xc2,0x29,0x30,0xe6,0xa7,0x4e,0x0c,0xb7,0x7e,0x41,0x3b, +0x35,0xc7,0x0a,0xe6,0xe0,0x75,0xd6,0x36,0xda,0x36,0xc6,0xee, +0x58,0x82,0x54,0xb1,0x3d,0x1d,0xa6,0x15,0xbe,0x2c,0xe4,0xe0, +0x82,0x10,0x40,0x56,0xe2,0xda,0x9f,0x58,0x08,0x92,0x0a,0x88, +0x6b,0xaf,0x64,0x71,0xbf,0x54,0x40,0x7c,0xed,0x3b,0x7a,0x47, +0x2a,0x20,0xae,0xbd,0x84,0x15,0x2b,0x70,0x0e,0x49,0xed,0x4e, +0xea,0xbb,0xd0,0xed,0x94,0xc8,0xc7,0x98,0x46,0x5b,0x1e,0xb6, +0xa3,0x8a,0x02,0x0b,0x48,0xae,0x65,0xee,0xc6,0x44,0x33,0xda, +0xf7,0xc8,0xbe,0xdd,0x2f,0xf7,0x48,0x7d,0xb7,0x90,0xa7,0x91, +0xab,0xa6,0x3b,0x70,0xaf,0xbd,0x90,0xdb,0xca,0x2a,0x22,0x3b, +0x88,0xd4,0x99,0x65,0x52,0x67,0x5e,0xd3,0xce,0x24,0x7f,0xee, +0x4c,0xf5,0x8e,0xc7,0x9b,0xcb,0xda,0x79,0x83,0x1b,0xbb,0x6e, +0x1e,0xb8,0xc9,0xc1,0x73,0xb4,0x25,0x31,0x45,0x11,0x15,0x47, +0x72,0x1d,0xf6,0xf1,0x49,0x7b,0x52,0x7c,0x2e,0x04,0x71,0x10, +0xff,0x35,0x49,0x2d,0x4a,0x29,0x4d,0x2c,0xb6,0x4b,0xe7,0xa3, +0x03,0xc2,0x77,0xee,0xa7,0x3c,0xf1,0x67,0x3b,0xa1,0xa5,0x8d, +0x11,0x85,0xf5,0xa4,0x13,0x0f,0x58,0x7f,0x47,0x7b,0x36,0xdb, +0x0a,0x66,0xd3,0x9e,0xd9,0x45,0xdb,0xc4,0xd8,0x0f,0x0d,0xd7, +0xa8,0x74,0x98,0x52,0xf8,0xa2,0xe0,0xeb,0x2e,0x7e,0x57,0x94, +0x7b,0xb4,0xeb,0x90,0x34,0x86,0xf6,0x91,0xc6,0xb0,0x72,0x4d, +0xd1,0x9a,0x74,0x60,0xd4,0x1d,0xf0,0x86,0x0e,0xd1,0x0b,0x3b, +0xc0,0x59,0x1f,0x77,0xdb,0xc0,0x6e,0x6d,0x3c,0x61,0x2d,0xb4, +0x77,0x62,0xe2,0x63,0xd6,0x5a,0x18,0x4b,0xb4,0x71,0x3e,0x35, +0xf2,0xce,0xda,0x14,0xac,0x2d,0xa7,0x60,0x4d,0x70,0x22,0x30, +0x5f,0x13,0xe7,0x33,0xe0,0x3c,0xf5,0x19,0x2c,0xd7,0x64,0xc5, +0x2c,0x0a,0x95,0x3f,0xcb,0xc3,0x59,0x92,0x47,0x94,0x65,0x04, +0x95,0xc7,0xee,0x21,0x79,0xe4,0x50,0x79,0xb4,0x5c,0xe2,0xa3, +0xfe,0x5b,0x1e,0x1b,0xe4,0xf1,0xe4,0xbe,0x89,0x2e,0xc6,0xd9, +0x08,0x4f,0x3a,0x58,0x85,0x0c,0x73,0x48,0xf5,0xdd,0x46,0x18, +0x96,0xf9,0x2d,0x77,0x05,0x33,0xfe,0x33,0x7c,0x40,0x7e,0x15, +0x66,0xb0,0x87,0x0d,0x5d,0x66,0x3b,0xaf,0xe5,0xae,0xea,0xd7, +0x69,0x1b,0xaa,0x9a,0x47,0x04,0xdb,0xa8,0x7b,0x30,0x89,0xdb, +0x95,0x9a,0x99,0x5b,0x35,0x4d,0xbf,0xbe,0xf4,0x78,0x6a,0x35, +0xa8,0x21,0x54,0xfe,0xfa,0x79,0x93,0xa9,0x52,0xda,0x64,0xf2, +0x3e,0xe8,0x1e,0xe6,0xc1,0x89,0x9c,0xb5,0xf0,0x77,0x27,0x23, +0x7e,0x99,0xf3,0x7f,0xde,0x10,0x9a,0x26,0x6e,0x94,0x36,0x84, +0xbe,0xfe,0xbc,0x21,0xd4,0x6f,0x0b,0xfd,0x9f,0x37,0x84,0x4a, +0x3b,0xb1,0xf4,0x3e,0x0b,0xeb,0x86,0x36,0x84,0x26,0xde,0x67, +0x85,0x89,0x43,0x1b,0x42,0x13,0xa5,0x0d,0xa1,0x05,0x9f,0x57, +0xb4,0x6c,0xa5,0x15,0xad,0x43,0xf0,0x9a,0xfa,0x93,0x55,0x43, +0x2b,0x5a,0x5f,0xfe,0xcf,0x8a,0xd6,0x4e,0x69,0xa7,0x61,0xed, +0xd7,0x64,0x13,0x4e,0x7b,0x62,0xb5,0xc9,0xd0,0xe6,0x26,0xce, +0xff,0x69,0x2d,0xaa,0x60,0x2c,0xa8,0xac,0x1a,0x2a,0x7b,0x82, +0xab,0x7b,0x61,0x35,0xac,0xec,0xc4,0x95,0xaf,0x40,0x05,0x62, +0x51,0xe5,0xe5,0x1b,0x98,0x7f,0xa7,0x43,0xff,0x09,0x2b,0xe4, +0x06,0x93,0x30,0x73,0x1f,0x73,0x57,0x9b,0x46,0x2f,0xbe,0xa1, +0xbd,0xe6,0x76,0x7e,0x1f,0x87,0x2f,0xa9,0x66,0x85,0xf4,0xec, +0xbc,0xee,0xd1,0xe4,0xe8,0xc7,0xd7,0x3a,0x5d,0x36,0x2e,0x94, +0x71,0xe2,0x94,0x38,0xaa,0x77,0xd3,0x96,0xb0,0x10,0x26,0x45, +0x14,0x8d,0xa1,0x0d,0x19,0xc3,0x2a,0xe6,0x16,0x12,0x54,0xd7, +0x02,0x75,0x16,0x54,0x51,0x9d,0x80,0xfa,0x73,0xea,0x67,0x61, +0x7b,0x0f,0xa1,0x3f,0x9d,0x8c,0xaf,0x19,0xe5,0x4f,0xdb,0xf6, +0x93,0x6b,0xa2,0x91,0xa0,0x2e,0xa8,0x5d,0x13,0xd5,0xe0,0xa1, +0x81,0x22,0x4b,0x9c,0x66,0xcc,0x2a,0x7f,0x32,0xbb,0x40,0xd0, +0xba,0x1c,0xe7,0xf5,0xa1,0xd2,0x2b,0xae,0xf7,0x4d,0x36,0x70, +0x30,0x5b,0xb5,0x16,0x3e,0x0e,0xe2,0x47,0x30,0x34,0x42,0x43, +0xd1,0xc1,0x44,0x70,0xf0,0x60,0x71,0x52,0xf8,0x7c,0xc7,0x8d, +0xea,0x5a,0x0f,0x4d,0xdf,0x3a,0x00,0x63,0xe1,0xc7,0xf7,0xe0, +0x17,0xb7,0xe6,0xbf,0xd0,0xd4,0xfb,0x0a,0x59,0x19,0x1a,0xec, +0x2c,0x34,0xe6,0xc1,0xb4,0x11,0x26,0xdc,0x78,0xf2,0x13,0x28, +0x2f,0x82,0xa5,0x26,0xe0,0xe4,0x4d,0x89,0x9f,0x2f,0xac,0x21, +0xb8,0x85,0x91,0xa4,0x34,0xe3,0xdf,0xa2,0x59,0x2f,0xe2,0xd9, +0x02,0x9c,0x74,0x7f,0x11,0x54,0xe3,0xaa,0xb2,0x4e,0x1e,0xc7, +0x5c,0x5b,0xdf,0x6d,0xd2,0xf1,0xac,0xf5,0xfb,0xdb,0x8f,0x9e, +0xba,0x36,0xf0,0xfa,0x9b,0x56,0x6f,0x5d,0x6f,0x6f,0xd9,0x17, +0xd8,0x7d,0xa0,0x1f,0xd8,0x32,0x98,0x30,0x78,0xf5,0x11,0xd7, +0xac,0x30,0xb2,0x10,0x7e,0x63,0x0d,0xad,0x71,0xa4,0xd3,0xcc, +0x83,0x9c,0xa8,0x2a,0x1e,0x20,0xb0,0xfa,0x15,0x8c,0x83,0x2f, +0x2b,0x61,0x35,0xd7,0x8c,0x4f,0x2c,0x20,0x99,0xf5,0xc2,0x29, +0x73,0x91,0xc5,0xf9,0x9a,0xdc,0xa7,0xe9,0x54,0x34,0xfd,0xff, +0x99,0x64,0x46,0x3b,0xb8,0x0a,0xf6,0x50,0xad,0x56,0x85,0x89, +0x43,0x62,0x07,0x2a,0xa0,0x0e,0x71,0x3e,0x8c,0x64,0x61,0xe6, +0x45,0x98,0x90,0xf2,0x3e,0x3b,0xa8,0x9d,0xc7,0x1d,0x9e,0x78, +0x29,0x02,0x07,0x4f,0x25,0x50,0x34,0x34,0x1e,0x46,0x9f,0x89, +0x83,0x61,0x1a,0x38,0x4c,0x24,0x36,0x30,0x8d,0x3e,0x70,0x85, +0x35,0xac,0xc0,0x89,0x38,0xcd,0x06,0xfe,0x61,0xed,0xb5,0xf0, +0x4b,0x7d,0x74,0xd3,0x2f,0xa0,0x9e,0x3d,0xe1,0x2d,0x28,0xdd, +0xce,0x90,0x4a,0x73,0x54,0x0f,0x42,0x75,0x3c,0x93,0xb9,0x00, +0x88,0x3e,0x24,0x2c,0xcb,0xef,0xe6,0xd1,0xe3,0x0e,0x2e,0xb8, +0x63,0xfb,0x94,0x5b,0x0a,0x7f,0x10,0xfa,0x08,0x1b,0x60,0x59, +0x61,0x17,0xb2,0xd2,0x19,0x32,0x56,0x3a,0x43,0x96,0x8b,0x9b, +0x08,0x7d,0xa6,0x0d,0x4c,0x64,0xe1,0x22,0x4e,0x24,0xb4,0x79, +0xbb,0x70,0x22,0xab,0x0c,0x8b,0x85,0x02,0x02,0x56,0x72,0x13, +0xb4,0xba,0x09,0xf1,0x8a,0x7b,0x18,0xcf,0x9e,0x10,0x3f,0x10, +0xd0,0x7f,0xff,0x0b,0x4c,0x87,0x24,0xd5,0x57,0x50,0x2e,0x7a, +0xb3,0x5b,0x8a,0xc3,0xee,0xa9,0xc3,0x2c,0xa6,0x35,0x25,0xb3, +0x51,0x03,0x8c,0x59,0xa3,0x2c,0x25,0xdc,0x45,0xd5,0xc0,0x21, +0x26,0x89,0xb2,0xe9,0xf3,0xe2,0x6a,0x9c,0xc4,0x62,0xb4,0x09, +0x2a,0xa3,0xf1,0x1c,0x75,0x65,0xe1,0x37,0xe1,0x0d,0x69,0xc7, +0xa8,0xf7,0xec,0x83,0x0b,0x77,0x13,0x06,0x92,0x83,0xda,0xa8, +0x8d,0x0d,0xc6,0x4d,0x87,0x51,0xef,0x58,0xaa,0x35,0xff,0xe0, +0xec,0xa3,0xb8,0x07,0xf1,0xdc,0x62,0xfc,0xc6,0xf6,0x19,0x72, +0x4b,0x6c,0xde,0xe1,0x04,0x4d,0x5b,0xd8,0xcf,0x7a,0x6b,0x69, +0x6f,0x45,0xd5,0x4d,0xe5,0x94,0xe1,0x7c,0xf9,0xfd,0xfd,0xbb, +0x97,0xa4,0x6a,0x00,0x75,0xbd,0x10,0xce,0xc4,0x9f,0x3b,0x1b, +0x77,0x5c,0x1d,0x4c,0x70,0x5d,0x75,0x23,0xea,0xc1,0xd2,0xc3, +0xc9,0x91,0x67,0x22,0x8e,0xa8,0x44,0x45,0x2b,0xc5,0x0e,0x42, +0x54,0xbb,0x11,0x4c,0x78,0xd4,0xa1,0x03,0x1c,0x03,0x37,0xc5, +0x1f,0x09,0xae,0x93,0xce,0x9e,0xd1,0x39,0xd2,0x9a,0x99,0xd9, +0xae,0x21,0x6f,0x33,0x61,0xd1,0xc2,0x9e,0x28,0xa6,0x0f,0xc8, +0xa7,0xb3,0xe2,0x2a,0x29,0x81,0x27,0x87,0xa3,0x80,0x63,0xa1, +0x4a,0xda,0xb7,0x67,0xa8,0xfa,0x31,0x0c,0x6e,0x96,0xa4,0x33, +0x81,0xde,0x9f,0xc0,0x82,0xb6,0x74,0x44,0x70,0x02,0x30,0x38, +0x81,0x4a,0xa7,0x0b,0x2e,0x92,0x80,0x43,0x01,0x87,0xfd,0x0e, +0x73,0x70,0xe3,0xaf,0xee,0x39,0x70,0xc1,0x0c,0x2f,0x2c,0xb0, +0xfc,0x1d,0x5f,0xb3,0xde,0x87,0x77,0x45,0x78,0x1e,0x49,0x97, +0xf1,0x7f,0x54,0x7e,0x5b,0xf1,0xa4,0x9e,0x13,0x6e,0xe3,0x4e, +0xe2,0xde,0x14,0x30,0xb0,0xe7,0xc1,0xad,0x7f,0x1a,0x60,0x6c, +0x19,0xa8,0xd8,0x64,0xf2,0xc1,0xc8,0xf8,0xcd,0xb7,0x5f,0xb5, +0xef,0xef,0x68,0x98,0xf8,0x35,0xcc,0xe3,0x20,0xa0,0x1b,0x03, +0x60,0xb1,0x05,0x2e,0xc6,0x41,0xa4,0xe3,0xe2,0xbe,0x17,0xd7, +0xad,0xc4,0x59,0xea,0x2d,0x9e,0x3f,0xc2,0x8c,0x22,0xf8,0xea, +0x2c,0x78,0xa9,0x80,0x1a,0x73,0x6a,0xcd,0xb1,0xa5,0x31,0x96, +0x5c,0xd0,0x89,0x98,0x63,0x41,0x6a,0xfa,0xd2,0xf9,0xb1,0xdb, +0x4c,0x6b,0x4e,0x7e,0xc7,0x45,0x8d,0xc4,0x6b,0x17,0xde,0xc3, +0x0c,0x55,0xb4,0xa2,0xf3,0xf9,0x3c,0x73,0x06,0xb7,0x26,0xe3, +0x82,0x32,0x1c,0x6f,0xb5,0x49,0x57,0x7f,0xbe,0x71,0x95,0x23, +0xff,0x63,0xef,0xed,0xeb,0x5d,0xf7,0x72,0x4c,0x8a,0x6d,0xaa, +0x5d,0x6b,0x5c,0xba,0x52,0xcf,0xf7,0xa4,0x83,0x07,0x6f,0x93, +0xa3,0x54,0x24,0xe4,0x10,0x8f,0x2a,0xd7,0x52,0xb7,0x4c,0x3f, +0x77,0xbe,0x21,0xac,0x21,0xa0,0xda,0x87,0xb2,0xd3,0x47,0xe0, +0x4b,0xfc,0x0e,0xf9,0x1e,0xf2,0xa6,0x1d,0x7c,0x05,0x4a,0x3d, +0xa8,0x04,0x85,0x66,0x58,0x88,0xc3,0x65,0x30,0x1c,0x45,0xd6, +0xe3,0x90,0x7b,0x84,0xdb,0x91,0x74,0x0b,0xfe,0x63,0xe5,0xab, +0x8a,0xef,0x1a,0xb8,0xeb,0x72,0x55,0x82,0x6d,0xc2,0x49,0x68, +0x63,0x45,0x53,0x6a,0xa9,0x1e,0x09,0x93,0x75,0x58,0x71,0x32, +0x4e,0x21,0xcf,0x85,0xc9,0x94,0x3f,0xb3,0xc8,0x10,0xf1,0xad, +0x2d,0x10,0xc6,0x53,0x66,0xee,0xac,0xe9,0x5e,0xe4,0xc4,0xd7, +0x66,0x55,0x64,0x17,0xe7,0x71,0x30,0x81,0x91,0x6d,0xda,0xb4, +0x03,0xc7,0x58,0x16,0x39,0xf2,0x30,0xe5,0xea,0x9b,0xe7,0x37, +0xfe,0x94,0x64,0x6f,0x8d,0xdc,0xfa,0x95,0x38,0x63,0x53,0xa9, +0x33,0x0f,0x0b,0x5f,0xbc,0xfb,0xb3,0x0f,0xe6,0x72,0x37,0x99, +0x53,0x9b,0xbe,0x36,0x8a,0xde,0xc1,0x59,0xc7,0x1c,0x8e,0xd8, +0xa1,0xb6,0x8a,0x49,0xb3,0x57,0x7a,0xce,0xbc,0xaa,0xc8,0x7f, +0x99,0xa0,0x91,0x70,0xff,0xec,0x8d,0xd3,0x30,0x81,0x13,0x75, +0x99,0xcc,0xec,0xf4,0xdc,0xb4,0x02,0x4e,0x58,0xc0,0x28,0xcb, +0xe7,0xcb,0xcf,0x93,0x87,0xe6,0x9b,0xb1,0xdc,0x4e,0x3e,0xba, +0x8d,0x55,0xcc,0x17,0x5b,0xa5,0x71,0x3b,0xe4,0x4f,0xbb,0xf5, +0xfa,0x6d,0xf7,0x52,0x28,0xb4,0xc0,0xc2,0x95,0x96,0x3f,0x89, +0xc3,0x59,0xbf,0xc3,0x3e,0x47,0xbc,0x8f,0xa4,0x59,0xf2,0xbf, +0x56,0x3d,0x2e,0x7f,0x70,0x99,0x83,0xd3,0x42,0x03,0xd9,0xee, +0xbb,0x29,0x64,0xd5,0xc1,0x0c,0x27,0xfe,0xfb,0xf4,0xef,0x0b, +0x6f,0xd7,0x72,0x30,0xee,0x6b,0xf2,0xdd,0xee,0xdb,0xa1,0xcf, +0xdd,0x73,0xaf,0xf0,0x5a,0x35,0x9b,0x8b,0x36,0x65,0x72,0x3f, +0x28,0x46,0x92,0x8e,0xa2,0xa6,0xb2,0x8a,0xa2,0x5d,0x75,0xbc, +0x7f,0xa0,0x9d,0xaf,0x4d,0x48,0x50,0x79,0x58,0xd5,0x01,0xca, +0x1e,0x2f,0xb5,0xa3,0xfe,0x23,0x98,0xd3,0x8a,0x73,0xee,0x0c, +0x25,0x59,0xb9,0x6a,0xb5,0x03,0x65,0x57,0x6d,0x76,0xe0,0x0a, +0x7b,0x58,0xa1,0x8f,0x33,0xed,0x61,0xa6,0x0e,0x6a,0x4b,0x47, +0x6f,0xb7,0x5a,0xad,0xf5,0x9a,0x11,0x90,0x6d,0xcf,0xf7,0xa7, +0xb5,0x67,0x36,0xe7,0x4a,0xe9,0x3d,0xdd,0x62,0x5d,0x8f,0xbb, +0x9c,0x90,0xca,0xb8,0x4f,0x4b,0x86,0x71,0x99,0x30,0x3a,0x27, +0xa6,0x83,0xb7,0x38,0x62,0x1a,0x65,0x72,0x94,0x83,0xa5,0x6c, +0x45,0x4e,0x79,0x7e,0x69,0x31,0x77,0x9e,0xe9,0x45,0xd5,0x9f, +0x96,0xc0,0xf2,0x0d,0x25,0x2d,0xbc,0x51,0xb9,0x4d,0xa5,0x6b, +0x2d,0xa7,0x29,0xcc,0x25,0xfa,0x28,0xbb,0xc3,0x82,0x0c,0xc7, +0x11,0x1d,0x94,0x49,0xab,0xaf,0x6f,0xe5,0x73,0x09,0xce,0x66, +0x12,0x6f,0x24,0x0c,0xc6,0xf5,0x58,0x9c,0xe3,0x63,0xad,0x8e, +0x1a,0x45,0x1a,0x70,0xf3,0x2d,0x7e,0x62,0x0e,0xcc,0x0e,0x9b, +0x19,0xbc,0xa1,0xde,0xbd,0x6e,0xe7,0x65,0x27,0xef,0x2d,0x8e, +0x86,0x3b,0x76,0x54,0x39,0xf0,0x83,0xd7,0x5a,0x6f,0xd6,0x3c, +0xcc,0x0b,0xcc,0xf7,0xcb,0xf7,0xa9,0x69,0xe6,0x03,0x6a,0x02, +0x2b,0x83,0xcb,0xda,0x60,0x7c,0x01,0x68,0x24,0x80,0x16,0x07, +0xbf,0xc1,0x42,0xf2,0xd0,0x62,0x33,0xc6,0xdb,0x09,0xf7,0xe8, +0xa8,0x33,0xc6,0xc4,0xcc,0x6f,0x6b,0xc8,0xc6,0xf0,0x4c,0x47, +0xfe,0x49,0xc6,0xa3,0x82,0xeb,0xb4,0xfb,0xc3,0x4f,0x92,0x87, +0x61,0xd7,0x43,0xef,0x7b,0xe6,0x36,0xf2,0x7a,0x55,0xdb,0x0a, +0xf5,0x32,0x39,0xf1,0x93,0x38,0x96,0xe4,0xbe,0xc8,0x7e,0x97, +0xf6,0x8e,0xfb,0x95,0x89,0x46,0xd5,0x7d,0x38,0xce,0x0d,0x47, +0x04,0x95,0x05,0x15,0x07,0x17,0x70,0x72,0x43,0x3c,0x45,0x5a, +0x8b,0xea,0x2b,0x4a,0x4b,0x76,0x55,0xf3,0xc1,0xfe,0x2e,0xbe, +0x8e,0xc1,0x21,0x15,0xfb,0xaa,0xc3,0xe9,0x70,0x44,0x53,0xf9, +0x3d,0x06,0xd2,0x8c,0xe4,0x1e,0xcc,0x6e,0xc6,0xd9,0xd7,0x6d, +0xb6,0xa3,0xce,0x75,0xdb,0xed,0xa8,0xe1,0x08,0x1a,0x7a,0x38, +0xc9,0x11,0x26,0x69,0x4b,0x87,0x99,0x83,0x19,0x63,0xab,0x8d, +0x9e,0x0b,0x03,0xa9,0x2c,0x3b,0xd3,0x9b,0x33,0x1b,0x72,0xa5, +0x2c,0x82,0x1e,0xb1,0x3b,0x8f,0xef,0x3c,0x71,0x91,0xca,0x72, +0x7c,0x32,0x8c,0xca,0x80,0xe1,0x39,0x31,0x6d,0xbc,0x75,0x94, +0x75,0xb4,0x25,0x95,0xe5,0x4a,0xb6,0x2c,0xbb,0x38,0xbf,0xb0, +0x98,0x3b,0xcb,0xb4,0x22,0xff,0x74,0x11,0xcc,0x59,0x4b,0x65, +0x69,0x5a,0xe1,0x58,0xe9,0x59,0xc7,0x6d,0xa1,0xb2,0xd4,0x43, +0x9d,0x7b,0x52,0x06,0x97,0x71,0x14,0x73,0xe8,0x48,0x1e,0xd8, +0x45,0x6e,0x48,0x2a,0x8b,0x2a,0xeb,0x73,0x2b,0x6c,0x8b,0xf8, +0x30,0x1f,0x7f,0x4f,0x4f,0xbf,0xfa,0x20,0x29,0x40,0x75,0x96, +0x09,0xce,0x12,0x09,0x3a,0x0c,0xc2,0x5c,0xb9,0x2f,0xce,0x1d, +0x00,0x07,0x46,0x7c,0x57,0x42,0x02,0xea,0x02,0x2a,0xfc,0x8b, +0x1c,0xfc,0xf9,0x8a,0x80,0x62,0xdf,0xa2,0x5d,0x9c,0x70,0x12, +0x81,0xc0,0x1e,0xb1,0x8d,0xc2,0xb3,0xa3,0x6b,0xf1,0x2e,0x96, +0x0d,0xc2,0x3e,0x6a,0x7f,0xf3,0x06,0x21,0x0f,0x4a,0x70,0x29, +0x6e,0x1c,0xca,0xfc,0xa2,0xfe,0x6f,0x95,0x71,0x0b,0x7c,0xf3, +0x92,0x05,0x5b,0xa9,0xe0,0xd0,0x38,0xd1,0x10,0xc6,0xd1,0x16, +0x2c,0x13,0x7e,0x23,0x70,0xae,0x15,0xcf,0xdd,0x87,0xa2,0x56, +0x2c,0x92,0x8e,0x76,0x67,0xd8,0x43,0x86,0x2e,0x1e,0xb7,0x87, +0xe3,0x3a,0x58,0xc0,0xc4,0x34,0x1f,0x69,0x8f,0xac,0x76,0x3a, +0xc8,0x27,0xb9,0x24,0xef,0x88,0xb3,0x6a,0x4c,0xe5,0xc3,0xe4, +0x4a,0xed,0x58,0xc7,0x8a,0xc6,0xe2,0x2f,0xe4,0xd3,0x0c,0xb3, +0xff,0xcc,0x60,0x35,0x05,0x4d,0x92,0xf7,0x63,0xd2,0xfb,0xb3, +0x7f,0x5b,0x9f,0xe7,0x4f,0xce,0x89,0x5a,0x1a,0xba,0x8e,0x13, +0x96,0x89,0x32,0x02,0x26,0x82,0x1a,0x8e,0xc3,0xed,0x6c,0xb2, +0xb5,0x12,0x6c,0x64,0xae,0xa4,0xa5,0x52,0x73,0xbe,0x46,0x8c, +0x17,0x0f,0xb1,0x82,0x0d,0x28,0x88,0xa8,0xf6,0x48,0x50,0x63, +0x44,0x35,0xea,0x30,0x04,0xb5,0x4d,0xa2,0x1a,0x05,0xfe,0x55, +0xc2,0x2c,0x12,0x16,0xb5,0x3b,0x72,0x37,0x85,0x72,0x07,0x7e, +0xef,0x5e,0x00,0x26,0xe6,0x68,0x32,0xdb,0xf2,0x03,0x9e,0x67, +0x3d,0x0f,0x7b,0x1e,0xd9,0x15,0x9d,0x68,0xc1,0x57,0x24,0x56, +0x24,0x55,0x24,0x73,0x58,0xb2,0x84,0x4d,0x35,0x51,0x7a,0xf4, +0x6f,0xe8,0x5c,0x17,0x5b,0x98,0x54,0x90,0x5c,0x98,0xcc,0x09, +0x7f,0x35,0x91,0x55,0x9d,0xa0,0xaa,0x0b,0x59,0xf8,0x0d,0x9b, +0x94,0x9e,0x98,0x79,0x31,0x9d,0x83,0xd2,0x66,0xc5,0x38,0x47, +0x68,0x62,0x8e,0x86,0x47,0xed,0x3f,0x72,0x80,0x43,0x6b,0xcc, +0xd2,0x47,0xd5,0xae,0x57,0x8c,0xb0,0x93,0x92,0x69,0x67,0x51, +0xed,0x0a,0x2b,0xa8,0xad,0x21,0x4e,0xa2,0x5a,0x13,0xbd,0x58, +0x4d,0xec,0x45,0xb5,0x56,0x16,0x6a,0x51,0x93,0xf8,0x16,0x38, +0x14,0xb8,0x5f,0xda,0xed,0xc7,0xd7,0x1f,0x68,0x0a,0x2d,0x0f, +0xe6,0x7e,0x6a,0x22,0x55,0x5e,0x25,0xf6,0x79,0x4e,0x75,0x85, +0x7c,0x48,0xb3,0x6f,0x8b,0x77,0x25,0xc5,0x18,0xe2,0x34,0xb2, +0xf6,0xe2,0xfa,0x14,0x9d,0xcc,0xfe,0xc2,0x96,0xca,0x8a,0x46, +0xae,0x9a,0xd2,0xf4,0xf4,0xb4,0x4b,0x69,0x29,0x69,0x94,0xbd, +0x32,0x95,0x97,0x52,0xca,0x34,0x1a,0x59,0x87,0x04,0x25,0x73, +0xd4,0x62,0xc3,0x62,0xe2,0x72,0x34,0x6e,0x5a,0x6f,0x66,0x7d, +0x93,0x0e,0xe4,0x1d,0x53,0xdf,0xe9,0x64,0xe8,0x38,0xcf,0x2b, +0xc3,0x95,0xaf,0x49,0xa9,0x4a,0x2b,0xcb,0xa8,0x0a,0x68,0x08, +0x6d,0xdd,0xa7,0xb9,0x6f,0xe9,0x91,0x39,0xc7,0x53,0x28,0x49, +0x1c,0x7f,0x11,0x46,0xa7,0xff,0x56,0xf6,0x2a,0xf8,0xfd,0x01, +0x18,0x15,0xc9,0x89,0xfd,0x90,0x4e,0xaa,0xae,0xe4,0xf7,0x24, +0x5c,0x71,0xb8,0xc8,0x1f,0x75,0x0b,0x73,0xf6,0x76,0xe3,0x04, +0xdb,0x05,0xc4,0xc7,0xcf,0x21,0xc4,0x7c,0xef,0xf6,0x6c,0xcb, +0x02,0x8f,0x32,0x4e,0xf9,0xbe,0x40,0x9d,0xf0,0xba,0x7c,0x58, +0x56,0x0b,0xd3,0x7a,0x60,0xb4,0x03,0x68,0xec,0x82,0x75,0x81, +0xe9,0x3d,0x3c,0xaa,0xe7,0xa2,0x72,0xf1,0xac,0xda,0x77,0xcd, +0xcf,0xfa,0xfa,0x6e,0x73,0x4d,0xa2,0x3d,0x9b,0x91,0x95,0x96, +0x7d,0x29,0xdb,0x3a,0x97,0xdf,0xbe,0x66,0x16,0xb5,0x95,0x46, +0xa5,0x0e,0xfc,0xd5,0x92,0x9e,0xf2,0xd6,0x9a,0x76,0xc7,0x41, +0xf7,0x7b,0xde,0xc8,0xb8,0xa2,0x9a,0x0f,0xce,0xdb,0xcb,0xc1, +0x45,0x48,0x23,0x89,0x17,0x95,0x84,0xd5,0x8c,0x93,0xdd,0x66, +0x87,0xa5,0x3b,0x37,0x54,0x6d,0x6d,0xb0,0x6c,0xe7,0xe4,0xa3, +0x45,0x43,0xd2,0x23,0xae,0xfe,0xcb,0x64,0x8e,0x38,0x4b,0x26, +0x8c,0x60,0xad,0x56,0xe2,0x48,0x7d,0x0c,0xdb,0x54,0x60,0xc1, +0xc3,0xe9,0xb7,0xbf,0x0d,0xd6,0xc1,0x68,0xea,0x6d,0x6f,0x0f, +0xc2,0xed,0x78,0xa6,0x16,0x47,0x03,0x63,0x02,0xe7,0x96,0xe4, +0xf5,0xf2,0xb8,0xff,0x29,0x8e,0xbb,0x63,0xf1,0x13,0xf5,0x14, +0x3f,0x0a,0x5e,0x24,0x3a,0x35,0xe6,0x6c,0x44,0xd4,0x91,0x23, +0x7c,0x2c,0x55,0xeb,0x29,0xbd,0x94,0xd4,0x98,0x99,0xa2,0x19, +0x6a,0x59,0xc0,0x4a,0x26,0x02,0xbf,0x70,0xc6,0xe9,0xd4,0xbb, +0x6a,0x5c,0x76,0xe4,0xdf,0x02,0x53,0x05,0xc3,0xe3,0xdf,0x73, +0xf1,0x62,0xcd,0x80,0x70,0xe6,0xdf,0x70,0x0d,0x18,0x89,0x9a, +0x97,0xeb,0x94,0xe0,0x0c,0x12,0x32,0xf0,0x21,0x0f,0xc8,0x59, +0xd8,0xcc,0xc1,0xd6,0x41,0xdc,0x0a,0x32,0x63,0x94,0x61,0x96, +0x09,0x64,0x31,0x5f,0xe3,0xfc,0x03,0x38,0xd2,0x79,0x95,0xdb, +0x1d,0xdf,0xef,0xc3,0x3e,0xca,0xf6,0xf2,0x45,0xf8,0xc5,0xe5, +0x45,0xed,0x9b,0x2c,0xb5,0xbf,0x32,0x43,0xce,0xb2,0x84,0x92, +0x8a,0xd1,0x3d,0x2f,0xaf,0x0d,0x3c,0x79,0xbc,0xfc,0x9d,0x19, +0x0c,0x77,0x2a,0xa2,0xad,0x1c,0xd9,0xb4,0xbc,0x7f,0xeb,0x8f, +0x94,0xc1,0x8f,0x13,0x96,0x12,0xd0,0x42,0x73,0xb6,0xaa,0xb6, +0xb2,0xa9,0xa8,0x99,0x6b,0xc0,0x32,0x36,0x39,0x2f,0x29,0x2f, +0x21,0x5f,0x76,0x81,0xf7,0x5d,0xb5,0x71,0xc6,0xbc,0x2d,0x55, +0x2e,0x7c,0xd6,0xa5,0xcc,0xb4,0x8c,0x74,0xce,0x0a,0xac,0x70, +0x14,0xf6,0x5b,0x50,0x2c,0xce,0xe1,0x59,0x19,0x9c,0x45,0x23, +0x74,0x65,0x2f,0x51,0xec,0xa8,0xcf,0x74,0x64,0x50,0xf4,0x00, +0x9a,0x60,0x2d,0xeb,0x87,0xf0,0x9b,0xbd,0xac,0x62,0x0c,0x0c, +0x10,0xcb,0xc6,0x6d,0x8d,0xdb,0x4a,0x7d,0x6c,0xf9,0xbb,0x3e, +0xd7,0xdc,0xfb,0x5c,0x38,0xc1,0xa8,0x92,0xec,0xf6,0xf4,0x76, +0x76,0xf7,0xe0,0xf0,0x04,0x53,0x57,0x5d,0x79,0xb9,0xb8,0x91, +0xc3,0x10,0x3c,0x42,0xac,0x1a,0x74,0x9b,0x0d,0xca,0xbd,0x6c, +0xf9,0x5b,0x5e,0xb7,0xdc,0xfa,0x9d,0x39,0xe1,0xcd,0xdf,0x84, +0xbe,0xcb,0x1a,0x46,0xb1,0x58,0x43,0xe1,0x07,0x50,0xb7,0xc7, +0x2a,0x7c,0xb0,0x83,0x3c,0xfb,0xeb,0x2a,0xa8,0x54,0xff,0x23, +0xcb,0x95,0xe2,0x8d,0xcc,0x71,0xf4,0xa6,0xc5,0x54,0xd6,0xe5, +0x20,0x92,0xcd,0x86,0x1b,0xed,0xd6,0xb9,0x17,0x9a,0xf1,0x4f, +0xeb,0xef,0x5c,0xbe,0xd6,0xcb,0xa1,0x7c,0xf0,0xd3,0x0c,0x13, +0x56,0xbe,0x0e,0x7f,0x21,0x03,0x98,0xc4,0x9e,0x4a,0xfb,0x26, +0x3d,0x43,0x15,0x0e,0x6c,0xc7,0x03,0xec,0x81,0x6f,0x0e,0x9e, +0x0a,0x57,0xc7,0x28,0x53,0x38,0xcc,0x1c,0xc4,0x5d,0xba,0xa8, +0x81,0x5a,0xa8,0xd9,0x40,0x31,0xe3,0x3a,0xd8,0xf8,0x1c,0x96, +0xc6,0x81,0x0d,0x27,0x55,0xc6,0xb6,0x7d,0x82,0xea,0xb0,0x0d, +0x0d,0xeb,0xfa,0x79,0xdc,0x06,0x9b,0xb7,0x00,0x1f,0x0e,0x1e, +0x1c,0x84,0x51,0xae,0xe4,0xd9,0x6f,0x3f,0xe8,0xd0,0xe8,0xe6, +0xc7,0xb7,0xd9,0xd6,0x5b,0xd6,0x99,0x70,0x8a,0x71,0xb3,0x88, +0xf7,0x63,0xfb,0x27,0x8e,0xb7,0x6c,0xfc,0xf9,0x16,0x83,0x26, +0xed,0x1a,0x6d,0xda,0xb0,0x95,0x52,0x24,0x68,0xa9,0x5c,0x0f, +0x4a,0x59,0x71,0xa2,0x04,0x2f,0x4f,0xdd,0x82,0x53,0x4c,0xaf, +0x01,0xb9,0x05,0xa9,0x06,0x2c,0xde,0x77,0xa1,0x36,0xf4,0x14, +0xb5,0xa1,0x3d,0x53,0x21,0x55,0x0f,0x53,0x19,0xf8,0x1d,0xd7, +0x12,0x9c,0x32,0x00,0xdb,0x14,0xef,0x70,0xdb,0x00,0x4c,0x61, +0xe5,0x73,0x0d,0x88,0xf8,0x1c,0x7f,0xc2,0xa5,0x96,0x9f,0xbe, +0xe8,0xc6,0x65,0x8c,0x19,0xd4,0x12,0x13,0xd1,0x73,0x90,0x15, +0x3c,0x71,0x14,0x31,0x16,0x3d,0xaf,0x49,0x57,0xdb,0x88,0xe8, +0x79,0x5d,0xf0,0xa4,0x9e,0x5d,0x53,0xf2,0xec,0xd4,0xff,0xa4, +0xda,0x09,0x3f,0x52,0xcf,0xbe,0x56,0xe4,0x48,0x6c,0xe2,0xd1, +0xf3,0xff,0xd6,0xf1,0x1e,0xf3,0x77,0xef,0x2c,0xd0,0x66,0x2e, +0xa7,0xd6,0xa6,0x97,0x65,0x06,0x34,0xf3,0x06,0xee,0x38,0xdc, +0x6b,0x51,0x78,0xba,0x2d,0x5f,0x1d,0x5f,0x9b,0x50,0x97,0xc4, +0x51,0x23,0x3b,0xcb,0x02,0xd4,0xd8,0xe8,0xd9,0xbe,0x38,0x7c, +0x11,0x4e,0xaa,0x74,0xe0,0x1f,0xfc,0x9a,0xff,0xf4,0xfc,0x33, +0xaa,0x9a,0xd6,0x1d,0x43,0xfb,0xac,0xa7,0xcf,0xc5,0xaa,0x5f, +0xc3,0x85,0xf5,0xa5,0x4a,0xc2,0x70,0x61,0x35,0x79,0x12,0x76, +0x23,0xf4,0xa1,0x07,0x75,0x65,0x5b,0xaa,0xf5,0x0b,0xb7,0x64, +0x71,0xb8,0xe1,0x14,0x31,0xf5,0xd3,0x0d,0xd9,0x10,0x9e,0xe1, +0xc8,0x3f,0xcf,0x78,0x52,0x70,0x43,0x5a,0x2f,0x16,0x9f,0x93, +0xb6,0xe2,0xc6,0xf2,0xb2,0xe2,0x5d,0x35,0x7c,0x60,0x80,0x93, +0xaf,0x7d,0x48,0x48,0xf9,0xbe,0xaa,0x83,0xd4,0x81,0x7d,0xdd, +0x26,0x65,0x1f,0x52,0x6d,0x46,0xd5,0x7b,0xb0,0xa0,0x19,0x17, +0x48,0x0e,0x4c,0x5f,0x72,0x60,0x73,0x1c,0x61,0x8e,0x1e,0x4e, +0x73,0x84,0x69,0xda,0xb8,0xca,0x0e,0xf6,0x31,0x46,0xd6,0x1b, +0x3c,0xe7,0x4b,0x0e,0xac,0x3b,0xbd,0x25,0xa3,0x31,0x4f,0x72, +0x60,0xee,0xd4,0x81,0xb9,0x0e,0x81,0x81,0x09,0xc9,0xc0,0x64, +0xc2,0xc8,0x9c,0x63,0x6d,0xbc,0x55,0x94,0x2c,0xca,0x82,0x3a, +0xb0,0x15,0x6c,0x79,0x76,0x49,0x7e,0x91,0x04,0x06,0xda,0x90, +0xff,0x6e,0x11,0xcc,0x5f,0x47,0x1d,0x98,0x49,0xb9,0x7d,0x95, +0x7b,0x2d,0xb7,0x59,0x98,0x47,0x85,0xaf,0x4f,0x85,0xaf,0x3f, +0xe4,0xc0,0xf4,0xa9,0x03,0x83,0x4f,0xf2,0x2f,0xc8,0xff,0xb2, +0x0f,0xf2,0xe0,0x7f,0xdd,0x68,0xd1,0x67,0xfb,0xc4,0xe1,0x24, +0xd9,0x5e,0x8a,0x97,0xab,0x4d,0x4b,0xad,0xd6,0x80,0xa5,0x94, +0x2a,0xcd,0x03,0x95,0x35,0x10,0xba,0xb4,0xb0,0x83,0x5f,0x5e, +0xba,0xf2,0xca,0xd6,0xa6,0x67,0x65,0xcf,0xea,0xef,0x5e,0xa1, +0x88,0x67,0xb3,0xc3,0x57,0x6e,0x6b,0x7d,0x3c,0x4a,0x82,0x8a, +0x23,0xf3,0x5e,0x94,0x3e,0xac,0xbe,0xdd,0xc8,0x35,0x8b,0x1f, +0x6d,0x84,0xb3,0xac,0x89,0x9f,0x61,0xd0,0xea,0xdd,0x1c,0xda, +0xb3,0x46,0x60,0x4d,0xf0,0xa5,0x0d,0xa4,0x31,0x56,0x2b,0x66, +0x6c,0x41,0x75,0xfb,0x52,0x3b,0x1e,0x56,0x0e,0xc2,0xf8,0x1f, +0xfb,0xa4,0xa3,0xab,0x3f,0x62,0x27,0xe9,0x14,0x2f,0x5a,0xb3, +0x42,0xb9,0x2b,0xb9,0xec,0x54,0x6b,0x57,0x26,0x93,0xf6,0x59, +0xfa,0x5c,0xdb,0x68,0xfb,0x15,0x3b,0x71,0x07,0x19,0x68,0xaf, +0xef,0x2a,0xec,0xb0,0xce,0xe1,0x83,0x1c,0xdd,0xec,0xcc,0x9d, +0x38,0xe1,0x02,0x50,0x18,0xe1,0x98,0x65,0x97,0x6a,0x75,0x35, +0x85,0x0f,0xef,0xd9,0xdb,0x16,0x7a,0x85,0xc3,0xbc,0x08,0x92, +0x6c,0x7b,0xd1,0xe9,0xbc,0xf9,0xe0,0x05,0xfe,0x78,0x7f,0x74, +0xcb,0x61,0x29,0x91,0xad,0x81,0xa4,0x27,0xb2,0xcd,0x78,0xc6, +0x5e,0x18,0x68,0x65,0xff,0x33,0xac,0x9e,0x58,0x41,0x66,0x17, +0x0b,0x5f,0xcf,0x20,0x16,0x7e,0xfa,0x21,0x9a,0xe1,0x99,0x4e, +0xfc,0x93,0xf4,0x07,0x85,0xd7,0x6a,0xb9,0x7f,0x4e,0x92,0x07, +0x61,0xd7,0x42,0xef,0x7a,0xe6,0x35,0xf2,0x5b,0xab,0x0c,0x0a, +0xf5,0x33,0x39,0x85,0x95,0x94,0x82,0xff,0x49,0x2f,0x2b,0x38, +0x8a,0x2f,0x48,0x4b,0x71,0x7d,0x45,0x49,0xe9,0xae,0x2a,0x3e, +0xc4,0xdf,0xd5,0xd7,0x29,0x38,0xb4,0x62,0xff,0x10,0x34,0x39, +0xdc,0x8a,0x2b,0x1f,0xc3,0xe4,0x66,0x9c,0x7c,0x0f,0x66,0x34, +0xe3,0x8c,0x1b,0xb6,0x46,0xa8,0x29,0x7d,0x4c,0x77,0x84,0xe9, +0x7a,0x38,0xc1,0x11,0x26,0x68,0xe3,0x42,0x7b,0xf0,0x67,0x76, +0x58,0x6b,0x7a,0x2c,0x09,0xcc,0x76,0xe0,0x3b,0xd2,0xaf,0x64, +0xd4,0x53,0x68,0xc2,0x53,0x68,0xe2,0x21,0x41,0x13,0x5b,0x1e, +0xc6,0x26,0xc3,0x88,0x0c,0x18,0x26,0x41,0x13,0x9b,0x48,0x9b, +0x68,0x2b,0x3a,0xb2,0xab,0xd9,0xd2,0xec,0xa2,0xbc,0x02,0x69, +0x64,0x9b,0x90,0x7f,0xb2,0x18,0x66,0xae,0x29,0x69,0xe6,0xcd, +0x2a,0x9c,0xaa,0x76,0x51,0xc9,0x1c,0x14,0x2c,0x68,0x67,0x12, +0xba,0x58,0x61,0xb9,0x1b,0x1d,0x63,0xcd,0x7b,0x2c,0x9e,0xc4, +0x85,0xa4,0x1b,0x13,0x2c,0x59,0xf9,0x8a,0x22,0x3a,0xd8,0x9a, +0x8f,0x59,0x51,0x26,0x1a,0x93,0x4e,0x70,0x83,0x02,0x4c,0xc6, +0xe7,0x2c,0xb8,0x43,0x3e,0xc1,0xf5,0xb8,0x08,0xd6,0x0f,0x01, +0x19,0x2a,0x1c,0xab,0xcd,0x18,0x6e,0x2f,0x64,0xb7,0xb2,0x62, +0x6b,0x04,0xa5,0xa8,0x60,0x03,0xe3,0x70,0xd2,0x0a,0x85,0xac, +0xf3,0x06,0x64,0xca,0x27,0x2c,0x87,0x49,0xac,0xfd,0x54,0x9c, +0xe4,0x49,0xbf,0x0a,0xd9,0x2b,0xc8,0xcd,0x3d,0x83,0x21,0xd7, +0xbd,0xf2,0x1a,0x78,0xa3,0x4a,0xe3,0x82,0xed,0x74,0x1a,0x2c, +0x3e,0x45,0xac,0xfd,0x8d,0x42,0x74,0x25,0x41,0xde,0xcf,0xb8, +0x55,0xd0,0x4f,0x61,0xb2,0x15,0x9d,0x06,0x57,0x4a,0xea,0xaa, +0x8a,0xca,0x76,0x95,0xf3,0xa1,0xfe,0x9e,0x3e,0x6e,0xc1,0x7b, +0x2a,0x0e,0x54,0x47,0xd4,0x73,0xe0,0xd3,0x82,0xb3,0x9f,0x00, +0xdb,0x84,0xec,0x7d,0x98,0x72,0x05,0xa7,0xdc,0xb4,0x35,0xc4, +0xa5,0x37,0xed,0x0c,0x71,0x82,0x33,0x4c,0xd0,0x45,0x25,0x27, +0x50,0xda,0x84,0xd3,0x1d,0x28,0x72,0x92,0x59,0xeb,0x78,0xac, +0x96,0x84,0xd5,0x9c,0xde,0x90,0x51,0x43,0x85,0xa5,0xca,0xee, +0x8a,0xdd,0x75,0xdc,0xe3,0xc4,0x05,0x2a,0xac,0x51,0xc9,0x1f, +0x32,0xde,0x67,0x1f,0x6b,0xe5,0x1d,0xa2,0xec,0x8f,0xda,0x53, +0x51,0xad,0x63,0x8b,0xb2,0x0b,0xf2,0x72,0x8b,0xb8,0x73,0xcc, +0x65,0x9c,0x7a,0x67,0x01,0xf0,0x6b,0x4a,0x9b,0x78,0xcb,0x4a, +0xd7,0x2a,0x9f,0x5a,0x4e,0x8c,0x80,0x23,0x64,0x16,0xfa,0xdf, +0x65,0x73,0xf7,0x29,0xb5,0x3c,0x48,0xfe,0x1d,0xa6,0xaa,0x26, +0xd7,0xa0,0x15,0xeb,0x92,0x11,0x56,0xa3,0x8e,0xb3,0xe0,0x34, +0x99,0x77,0x74,0x9d,0xbf,0x99,0x3a,0x24,0xd5,0xb1,0xb0,0x1a, +0x7d,0xff,0xad,0xca,0xb9,0xb5,0x01,0x7d,0x59,0x61,0x03,0x8c, +0x27,0xba,0xb8,0xf4,0x3e,0x0b,0x4b,0xe9,0x14,0xda,0x84,0x4b, +0x9f,0xb0,0xe2,0x3e,0xca,0xea,0xc0,0x1f,0x19,0xf4,0xa7,0xb6, +0xe8,0xec,0x19,0x12,0x13,0xf3,0xcd,0xe9,0x63,0x1a,0x10,0x0b, +0x26,0xdd,0x68,0x02,0x96,0xb0,0xa8,0xb9,0x07,0xec,0x71,0xcf, +0x07,0xb3,0xd9,0x18,0x80,0xf6,0x3d,0x8e,0xa0,0x2f,0x86,0xb0, +0x3a,0x45,0x01,0xd4,0x02,0xa8,0xfe,0x24,0x5b,0xc1,0xa2,0xc6, +0x4e,0xbd,0xe5,0x26,0xea,0x79,0x96,0x6f,0x6e,0x54,0xdd,0x38, +0xff,0x9b,0x4a,0x3c,0x83,0x6a,0x17,0xfa,0xb6,0xc0,0x97,0x6a, +0xe0,0xcc,0x24,0x74,0x2b,0x29,0x9c,0xe4,0xe5,0x24,0x69,0x5d, +0x9b,0xe1,0x8f,0x3a,0xa5,0x1d,0xfc,0xc6,0x5b,0x0e,0x77,0xf7, +0xdd,0x91,0x56,0x52,0xb5,0x9d,0x36,0xcd,0xdd,0xf2,0xdf,0x2b, +0xa9,0x3f,0x73,0xf2,0x69,0x78,0x9a,0x88,0x53,0x40,0x55,0x98, +0xc2,0x88,0x51,0xe2,0x1b,0xb2,0x2b,0x7a,0x67,0xb4,0xeb,0x51, +0xa9,0x4e,0xd6,0x8c,0x2e,0x9c,0x01,0x63,0xff,0x5d,0x31,0x1d, +0x8b,0x2b,0xac,0x60,0x05,0x5e,0x65,0xad,0xa2,0x65,0x47,0x3f, +0xaf,0x98,0x8e,0x4d,0x03,0xbe,0xf0,0x55,0x3e,0xe7,0xf4,0x2b, +0x49,0xeb,0x4e,0xee,0xbb,0xd8,0xe5,0x94,0xcc,0x47,0x9b,0x46, +0x59,0x7e,0x5e,0x31,0x9d,0x4b,0xf2,0xac,0xf2,0x36,0x26,0x99, +0xb7,0xa6,0xf1,0x91,0x7d,0x21,0xdf,0x4b,0x2b,0xa6,0xa0,0x90, +0xac,0xbc,0x25,0x8b,0xad,0x07,0xd0,0x95,0x7a,0xad,0x25,0xea, +0xcd,0x9e,0x4a,0x7f,0xc1,0xcc,0x6a,0xb0,0x87,0x7f,0x54,0x85, +0x8b,0x60,0xc9,0x28,0xea,0x15,0xe3,0x09,0x2c,0x97,0x8f,0x41, +0x6f,0x45,0x58,0x37,0x03,0xf5,0xc2,0x3b,0xf2,0xa3,0x60,0xbf, +0x9a,0x55,0x4c,0x15,0xb7,0x93,0x79,0x42,0xfa,0x9f,0x8c,0xb0, +0x5f,0x0c,0x92,0x02,0x23,0xf5,0xd0,0xf5,0x1a,0xf3,0xdd,0xf9, +0x67,0x17,0xda,0x2f,0x1e,0x6a,0xe4,0xf7,0xcf,0xc6,0x3d,0x47, +0x50,0x45,0xed,0x82,0x8b,0x52,0xd7,0xbd,0xb3,0xe7,0x1e,0x68, +0x98,0xa1,0x2d,0xe5,0xf4,0xb6,0x16,0x78,0x00,0xeb,0x3b,0xe1, +0x38,0xe8,0xae,0x64,0x6d,0x4f,0xd8,0x9e,0xd8,0x75,0xea,0xbc, +0x0b,0xff,0xf4,0x3c,0x4c,0x4d,0x79,0x94,0x78,0xe1,0x40,0xfc, +0xc1,0x73,0x11,0xf5,0x99,0xfc,0x91,0xea,0xa0,0xbe,0xfd,0xa5, +0x9e,0x07,0xf9,0xb8,0xa8,0xf8,0x88,0x0b,0x87,0xf6,0x9c,0x0c, +0x3d,0x19,0x7c,0x92,0x7b,0x01,0x06,0x14,0x3b,0xf0,0x6c,0xa2, +0xb3,0x94,0xfc,0xa1,0x3e,0x2d,0xa5,0x56,0x03,0xc2,0xf1,0x88, +0xb4,0x08,0x62,0x41,0xe8,0x44,0xc2,0x99,0x0c,0xbc,0x9b,0x8a, +0x0b,0x7e,0x00,0x4a,0x14,0x85,0x6f,0x84,0x8f,0x44,0x8c,0x16, +0xe6,0x0a,0xd1,0x18,0xc4,0xc6,0x17,0xc6,0x15,0xc6,0x15,0x71, +0x70,0xa6,0x13,0x63,0x98,0xf3,0x85,0xe7,0x0b,0xcf,0x15,0x99, +0xc5,0xf3,0x27,0x02,0x8f,0x07,0xc4,0x06,0x70,0xf8,0xda,0x1a, +0xbe,0x65,0x8e,0x07,0xc5,0x06,0x1f,0x0b,0xe6,0xc4,0x75,0x38, +0x8c,0x7c,0xe8,0x99,0x3d,0xc4,0x8e,0xe7,0xcb,0xfe,0xc0,0xff, +0x62,0xbc,0x22,0xfe,0x5d,0x00,0xf8,0x50,0xf5,0xa2,0xe2,0xdb, +0xfa,0xe8,0x1e,0xde,0x37,0x9c,0x12,0xe9,0x43,0xd4,0x39,0x08, +0xdb,0x89,0xb9,0x42,0xb7,0xef,0xa6,0x50,0xd0,0x23,0x16,0x30, +0xa0,0x26,0x68,0x91,0xb7,0x50,0xb3,0x94,0xfa,0x7e,0x9c,0x4b, +0xde,0x41,0xcd,0x12,0xe9,0x6a,0x11,0xf9,0x03,0x6a,0xe6,0xb3, +0xca,0x9f,0x64,0x72,0x1f,0x82,0xff,0x61,0x52,0xca,0x13,0x2b, +0x2e,0x54,0xc8,0x92,0xf8,0xfd,0xf3,0xec,0x17,0xe9,0x6d,0xa9, +0x72,0xe3,0x6b,0x2f,0x57,0xb4,0x14,0xb4,0x73,0x1f,0x50,0x1d, +0x4d,0xc5,0xbc,0x1e,0x21,0x10,0x88,0xd8,0xd6,0x2b,0xb4,0x81, +0x86,0xb8,0x70,0x83,0x54,0x30,0xf9,0x3a,0xd3,0x98,0x99,0x49, +0x21,0xbb,0x0d,0x3a,0x80,0x3a,0xec,0x67,0x15,0x56,0x52,0x96, +0x70,0xfd,0x0e,0xf3,0x8f,0x06,0xa5,0x9d,0x3c,0x8e,0xb8,0xe5, +0xda,0xba,0xa7,0x97,0xdb,0xc1,0xec,0xb1,0x74,0xb2,0xc1,0xb1, +0x5b,0x8b,0xac,0x29,0x76,0xba,0xd7,0xd3,0x93,0x7a,0x8f,0xcb, +0x11,0x91,0x64,0x05,0xe7,0x78,0xe7,0xec,0x92,0x1d,0x32,0x39, +0x6c,0x1c,0xc1,0xc1,0x4e,0x38,0x09,0x7f,0xa0,0xf2,0x1f,0x56, +0xf3,0xf1,0x0b,0xb1,0x9f,0xdd,0x7b,0x62,0xdf,0x89,0xbd,0x27, +0x93,0x65,0x3c,0xb0,0x59,0x30,0x3c,0xef,0x6d,0x51,0xca,0xee, +0xe4,0xb0,0xc4,0xbd,0x0d,0x25,0xbc,0xff,0x4d,0x8b,0x77,0xae, +0x7d,0x5c,0x29,0x84,0x13,0x94,0xbd,0x05,0x99,0x94,0xab,0x6a, +0x0e,0x01,0xd9,0x3c,0x94,0x51,0x7e,0x00,0xc2,0x72,0xe2,0x15, +0xbe,0xeb,0xb0,0x07,0x65,0xde,0xe1,0x30,0xa2,0x07,0x47,0x7c, +0x3e,0x43,0x45,0x64,0x40,0xf0,0x1c,0xeb,0x78,0xd8,0x31,0xc2, +0x25,0x8a,0x72,0x84,0xcb,0x89,0x0d,0x49,0x0d,0xa9,0x1c,0x96, +0xe1,0x18,0x36,0xcd,0x54,0xe9,0x2d,0xd3,0x3a,0x74,0x86,0xaa, +0x85,0xbd,0x7c,0xe9,0x72,0x5a,0x5d,0x06,0x27,0xa4,0xa3,0x9c, +0x2c,0xf8,0xd3,0x01,0x0e,0x1f,0x87,0x73,0x1c,0x04,0xf4,0x61, +0x20,0x58,0x99,0xa2,0x15,0xd6,0x9b,0x43,0x03,0x73,0x1e,0xbf, +0x6e,0xc1,0x0c,0x18,0x83,0x4c,0xcd,0xae,0xce,0xd4,0xf3,0xed, +0x39,0xb0,0x8f,0xb7,0xcc,0x55,0x4a,0x12,0x3c,0x89,0x7f,0xf3, +0xce,0x16,0xaf,0x72,0x37,0x2f,0xbe,0xca,0xf7,0xb2,0x7d,0x89, +0x33,0x87,0xdf,0x63,0x33,0xf9,0xa5,0x07,0xe3,0x64,0xbf,0xe1, +0x55,0xc6,0xfe,0xa8,0x5d,0x8c,0x43,0x6c,0x92,0x39,0x85,0xed, +0x19,0xa0,0x51,0xf8,0xa6,0x90,0x72,0x6d,0x97,0x48,0xfb,0x48, +0x9b,0x28,0x4e,0x59,0x48,0x93,0x74,0xe3,0xa8,0x30,0x4d,0x38, +0x8a,0xbb,0xd8,0xb8,0xc2,0xf8,0xc2,0xf3,0x54,0x37,0x8e,0x76, +0xe2,0x01,0x46,0xd2,0x8c,0x73,0x45,0xe6,0x71,0x43,0xba,0x71, +0x9c,0xea,0x46,0x9f,0x35,0xb4,0x0c,0xe9,0x46,0x2c,0xd5,0x8d, +0xb9,0xb8,0x84,0x1c,0x87,0x2f,0x61,0x78,0x27,0x0e,0xff,0x7c, +0xc8,0x60,0x8a,0x35,0x8c,0x97,0x0e,0x48,0xec,0xc2,0x79,0x6b, +0x71,0x52,0x8d,0x03,0x7f,0xf3,0x43,0xfe,0x87,0x73,0x6f,0x28, +0xe6,0xc8,0xee,0x11,0xe2,0xa5,0xf3,0x11,0x67,0x4e,0xa8,0xdf, +0xc6,0x55,0x55,0x35,0x46,0x52,0x1c,0xfe,0xb1,0x6f,0xa4,0xf3, +0x11,0x36,0x74,0xf0,0x2c,0x14,0x5b,0x7a,0x6f,0x08,0x17,0x7a, +0xc4,0x0b,0x0c,0xa8,0x0c,0xa9,0x4d,0x1e,0x55,0x9b,0xbc,0x21, +0xb5,0xc9,0x5b,0x22,0x5d,0x2d,0x26,0x7f,0x42,0xde,0x3c,0x6a, +0xd3,0xa3,0xe5,0x51,0x24,0xe9,0x07,0xf3,0xb8,0x13,0x01,0x27, +0x68,0x93,0x54,0x30,0xdd,0x06,0x2e,0xd2,0x26,0x49,0x8d,0xe2, +0x70,0x98,0x18,0x03,0x28,0xc4,0xa0,0x35,0x23,0x69,0xb8,0xd4, +0x8f,0xe0,0x0e,0x46,0x51,0x7b,0x9a,0x44,0xe2,0x16,0x5f,0x5c, +0xa3,0x8d,0x5c,0x9d,0x27,0xdf,0xf9,0xbc,0xe2,0x7d,0x0e,0x8c, +0xe0,0x60,0x0c,0x73,0x7c,0x6d,0xa4,0xd6,0xfe,0x2d,0x41,0x45, +0x01,0x45,0xfe,0x79,0xfe,0x6e,0x7c,0x4d,0x40,0x85,0x6f,0xa9, +0x8f,0x17,0x0e,0xb7,0x5a,0xa2,0xb3,0xb6,0xde,0x9d,0x87,0x05, +0xa0,0x7d,0x07,0xdc,0xd3,0x21,0x8d,0x42,0xea,0xaf,0xd8,0x0b, +0x57,0xce,0x37,0x9f,0x6d,0xa2,0xd0,0xbd,0x0b,0x5f,0x5a,0x31, +0x02,0x83,0x0b,0x88,0x62,0x33,0x6d,0x77,0x60,0x8f,0x18,0x28, +0xf4,0xb2,0x30,0x19,0xd5,0x69,0x7b,0x4f,0xd1,0xf6,0x9e,0xc2, +0x79,0xe4,0x17,0x38,0xb5,0x58,0xba,0x5a,0x42,0xde,0xc3,0xa9, +0xb9,0xac,0xb2,0x60,0x2b,0xa4,0x90,0xe4,0xdc,0xc4,0x9c,0x8b, +0xb9,0x9c,0xb0,0x09,0xfc,0xc5,0x47,0xb8,0x81,0xf1,0x2a,0x0b, +0x93,0x85,0xd8,0x07,0xbb,0xa9,0xa4,0xb2,0xd0,0x6a,0x45,0x0d, +0x18,0x66,0x84,0xe0,0x84,0xd9,0xa8,0xad,0x7e,0x65,0xe7,0x1d, +0x18,0x5e,0xfe,0x26,0xed,0x73,0x0c,0xf4,0xb9,0xd8,0x07,0xf8, +0x25,0x7f,0xa5,0x5a,0x17,0xa6,0xc6,0x24,0x47,0x9e,0x8b,0x8c, +0x52,0x89,0x88,0x3a,0x71,0xe6,0xc2,0xe0,0xb9,0xee,0xd3,0xf7, +0x55,0xae,0x5c,0xad,0xe9,0x2f,0xbd,0xc5,0xed,0xfa,0x85,0x0d, +0xd2,0xb5,0xd5,0xd5,0xdf,0x51,0xe1,0xce,0xd7,0x56,0xd5,0x34, +0x94,0x34,0x71,0x82,0x25,0x83,0xdb,0x62,0x71,0x49,0xe4,0x16, +0x75,0xd9,0xd1,0x88,0x43,0x36,0x6a,0xc7,0x99,0x8a,0xb4,0x03, +0x8d,0xbb,0x06,0x02,0x1a,0x55,0xdc,0xf6,0x26,0x1c,0x4e,0x0c, +0x4f,0x38,0xa8,0xe2,0x13,0xeb,0x7e,0xcc,0x2d,0x96,0xfb,0x1d, +0x0c,0xc0,0x05,0x0d,0x1e,0xd9,0xea,0xa0,0x0e,0xba,0x80,0xce, +0x4c,0x56,0x33,0x7a,0x7d,0x8c,0xd1,0xf1,0x8b,0x14,0x4f,0xab, +0x24,0x81,0x5e,0x2e,0x8c,0xc8,0xb9,0x78,0xf0,0x62,0x78,0xdc, +0x61,0xce,0x5e,0xda,0xf1,0xbe,0xc5,0x3c,0xc9,0xaf,0x7e,0x94, +0xa4,0x91,0xf2,0x63,0x3c,0xcc,0x81,0x68,0x55,0x71,0x23,0x44, +0x13,0x1c,0x83,0xe3,0xa4,0x64,0x91,0x9b,0xa7,0xc2,0x78,0x7a, +0x3d,0x9e,0x91,0xae,0xc6,0xc0,0x14,0x69,0xf1,0xbc,0xf8,0x22, +0x39,0x85,0x23,0x63,0x96,0xec,0xd1,0x6a,0xd9,0xc3,0xe7,0xff, +0x7c,0xe1,0x6f,0x18,0xae,0x2a,0xac,0xc6,0x47,0x64,0x26,0x72, +0xff,0xb0,0xa0,0x35,0x93,0xfc,0x03,0x13,0x66,0x52,0xf8,0x96, +0x22,0x1c,0x27,0xc9,0xc1,0x89,0xfe,0x89,0x7e,0xae,0xb1,0x2e, +0xb1,0xce,0x27,0xfb,0xa4,0xf2,0x95,0x3d,0xc0,0x7e,0x2e,0x5f, +0x69,0xea,0x6f,0x71,0x30,0xfb,0x40,0xce,0x81,0xac,0xca,0x81, +0xb2,0x7b,0xf9,0x52,0xf9,0xca,0xbd,0x3b,0x82,0x3e,0x97,0xaf, +0x4c,0x3e,0x92,0xe4,0xff,0x3f,0xe5,0x2b,0x5d,0x43,0xdc,0x77, +0xfb,0x6e,0x3b,0xc9,0xc7,0x59,0x4a,0xa5,0x2b,0x9b,0xcf,0xab, +0x88,0x2b,0xba,0x85,0x75,0x6c,0xfe,0xd9,0xbc,0x73,0x79,0xe7, +0xce,0x87,0x9f,0x3b,0x78,0x2e,0xfc,0x4a,0x1a,0x7f,0xe8,0xce, +0xde,0x5b,0x61,0xbd,0x9c,0x7c,0xc6,0x05,0x82,0x06,0xcc,0xa9, +0xe6,0x53,0xad,0x1d,0xaa,0xb0,0xda,0x0a,0x57,0xb3,0xb6,0xa7, +0xed,0x4e,0x3b,0xaa,0x23,0x61,0x2e,0xd5,0xa5,0x5c,0x49,0x6c, +0xb0,0xa1,0xee,0xc3,0x29,0xc2,0xfe,0xa0,0x13,0x87,0x0e,0xb6, +0xc2,0x64,0x3a,0x17,0x27,0x27,0xe1,0x88,0xec,0x15,0x6e,0x06, +0xb6,0x16,0xdb,0x6d,0xcb,0x5d,0xf8,0x9e,0xa6,0xe6,0xf6,0xba, +0xde,0x34,0xc7,0x6c,0xf7,0x02,0xff,0x32,0x8f,0xb6,0xb8,0xb8, +0xfe,0x34,0xd0,0xe7,0x1d,0xf2,0xc3,0xd1,0x26,0xa8,0x62,0x4f, +0xeb,0xa1,0x01,0x95,0xc6,0xc7,0x15,0x3f,0x14,0xff,0xe6,0x90, +0xcd,0xef,0xd5,0x0e,0x35,0x08,0x30,0x39,0xf2,0x20,0xe6,0xe5, +0x89,0x5f,0x39,0x4a,0xbb,0xc4,0x65,0x94,0xc0,0xfe,0x66,0xb3, +0x10,0xa7,0xd8,0xc1,0x40,0x1b,0x0b,0xc9,0x54,0x7d,0xc2,0xaf, +0xf9,0x7c,0xeb,0xd7,0xe3,0xb2,0x87,0x2f,0xb1,0x2e,0x5f,0x93, +0x61,0xcc,0x89,0xb3,0x0e,0x91,0xe8,0xaa,0x88,0x2b,0x87,0x2b, +0x1d,0x0f,0xf0,0x29,0x7e,0x97,0x9c,0x2e,0x7a,0x71,0xf6,0x38, +0x91,0x88,0x3b,0xdb,0x07,0xc0,0x59,0x98,0xc3,0xa2,0x33,0xea, +0x10,0x18,0x0f,0x0b,0x71,0x3c,0x8b,0x4f,0x33,0x48,0x9a,0x61, +0x82,0x56,0x9c,0x8e,0x54,0xf7,0xf2,0x6e,0xc4,0xf3,0xf0,0x1b, +0x52,0xdd,0xcb,0x5a,0xa9,0xee,0xe5,0x1f,0xf1,0xbf,0x0e,0xd5, +0xbd,0x0c,0x5f,0x1d,0xa4,0xc9,0x09,0xcb,0x5a,0xa4,0xd8,0xf6, +0x85,0x52,0x6c,0xfb,0x27,0x4b,0x21,0x8b,0xe0,0x76,0x49,0x08, +0x6d,0x54,0x08,0xab,0xac,0x70,0x25,0x6b,0x43,0x85,0xe0,0xa0, +0x8e,0x53,0xa9,0x10,0x52,0xaf,0x24,0x34,0xd8,0xa6,0x50,0x21, +0x1c,0xb6,0x3b,0x40,0x85,0xe0,0x68,0x2b,0x4c,0xa5,0x42,0x98, +0x94,0x84,0x23,0x73,0x56,0xb8,0x19,0xda,0x98,0x0f,0x09,0xa1, +0x57,0x12,0x42,0x5f,0xba,0x83,0x24,0x84,0xf2,0xff,0x11,0x82, +0x3d,0x15,0x82,0x75,0x60,0xc5,0xde,0x96,0x70,0x2a,0x84,0x27, +0x95,0x3f,0x94,0x48,0x42,0xd8,0xa3,0x1d,0xba,0xcd,0x9f,0x0a, +0xe1,0xe8,0x90,0x10,0x0c,0x19,0x71,0xd5,0xbf,0x42,0x98,0x6a, +0x07,0xd7,0xdb,0x58,0x7c,0x74,0x93,0xe0,0x35,0xdb,0x36,0xc5, +0x68,0xc6,0xe4,0x70,0xaa,0xc5,0xdd,0x8c,0x7b,0x39,0x37,0xf2, +0x55,0xd0,0xb2,0x53,0x7e,0xa3,0x81,0x15,0xbe,0xc5,0x35,0xe4, +0xe0,0x35,0xef,0x6f,0xfd,0x7b,0x5c,0xc2,0x24,0x09,0xad,0xa5, +0x12,0x52,0x1c,0xca,0x26,0xb0,0xfe,0x23,0xae,0x67,0xe1,0x88, +0x27,0x39,0x4a,0x65,0x75,0xa8,0xea,0xb3,0xac,0x1c,0xa9,0xac, +0xd0,0xf4,0x3c,0x05,0x86,0x33,0x28,0x2e,0x84,0x13,0x38,0xf5, +0xb3,0xd8,0x5c,0x25,0xb1,0xb9,0xe2,0x66,0x02,0xca,0xb0,0x08, +0x95,0x59,0xd1,0xe2,0x47,0xf2,0x11,0x17,0x30,0xde,0x11,0x3e, +0x91,0xde,0x51,0x1c,0x34,0x6b,0x4a,0xc2,0x59,0x24,0x09,0x47, +0xfe,0x26,0x95,0x88,0x17,0x99,0xd9,0xfb,0xd2,0x3e,0x68,0xc0, +0x68,0xf9,0x3c,0x68,0xc5,0x62,0xb6,0xfb,0x72,0xdf,0x8d,0xe2, +0x36,0xae,0x11,0x7f,0x63,0x2f,0xe5,0xa6,0xe6,0x26,0xe5,0x9a, +0x5d,0xe2,0x4d,0x28,0xab,0x9e,0x82,0x2a,0x38,0x7f,0x43,0xb1, +0x2d,0x5f,0x70,0xa9,0x20,0x2d,0x2f,0x9d,0x13,0xa7,0xb2,0x48, +0x5a,0x77,0x01,0x51,0x17,0xce,0x30,0x9d,0x79,0xd2,0xfe,0xcc, +0x4c,0xd6,0x24,0x59,0x09,0x2d,0x84,0x8b,0xc4,0xcb,0x66,0x87, +0xb9,0x39,0x6d,0x5f,0x3b,0xd3,0xd3,0xd4,0xd6,0x56,0xd7,0xc6, +0xd1,0x99,0xe3,0x42,0xd0,0x02,0x93,0xc1,0x82,0x85,0x47,0x48, +0xbd,0xb9,0x05,0xe4,0x0e,0x15,0x80,0xd6,0x96,0x67,0x10,0x34, +0x63,0xe2,0x33,0xe2,0x32,0xe2,0x32,0x2d,0xe3,0xf9,0xc0,0x39, +0x36,0x2b,0x35,0xf5,0x2a,0xdd,0xf8,0x8b,0x17,0x2e,0xd2,0x7f, +0x1c,0x6a,0xb2,0xe8,0x12,0x33,0xcb,0x11,0x27,0xa8,0x37,0xbb, +0xe7,0xdf,0x49,0xbb,0x9f,0xf0,0x5a,0x05,0x52,0x28,0x1c,0x56, +0x65,0x52,0xad,0xa4,0x8d,0xf7,0xcb,0xe9,0x19,0xd4,0x6f,0xfe, +0x84,0x23,0xd8,0xc2,0xea,0x92,0xee,0xd4,0x46,0x4e,0x28,0x57, +0x5c,0x26,0x07,0x5e,0x05,0xc1,0xb0,0xdd,0x8f,0x6c,0x0f,0xf2, +0x49,0xde,0xc9,0xae,0x49,0x4e,0x1e,0x31,0x3b,0x63,0x5c,0x63, +0x38,0x88,0x01,0x03,0x61,0x16,0x1a,0xc0,0x06,0x33,0xdc,0x80, +0x9b,0xc5,0x59,0xb0,0x19,0x4f,0xb3,0x46,0xd1,0xdb,0x8e,0xea, +0xc5,0x5c,0xa4,0x08,0x6b,0x4e,0x1a,0x68,0x64,0x03,0x9b,0x7f, +0xc1,0x3f,0x3e,0x30,0x8e,0xfa,0x83,0x06,0x79,0x2b,0x39,0xec, +0x11,0x64,0x1f,0xe8,0xc1,0xe1,0x72,0xa6,0xac,0xb6,0xa0,0x3e, +0x9b,0x1a,0x4b,0x9c,0x41,0x80,0xc5,0x6a,0x64,0x19,0x68,0x82, +0x6a,0x42,0xaf,0xc6,0x43,0x35,0x2b,0xc6,0xa0,0x27,0x59,0x0c, +0x2a,0xbf,0x30,0xed,0xa8,0x42,0x40,0xe5,0x2f,0x54,0x61,0x71, +0xb9,0x1d,0xc1,0x85,0xf3,0xd8,0xb3,0x8d,0xa7,0x5b,0x4e,0x77, +0x71,0xb0,0x60,0xea,0x5f,0xb8,0x70,0x0e,0xc5,0x9f,0x75,0x42, +0x2f,0x69,0xdc,0xdf,0xb6,0xaf,0x7b,0x7f,0x7e,0x2f,0x8f,0x97, +0xde,0xe0,0xa4,0x17,0x66,0x7f,0x72,0x5b,0x18,0xf3,0x79,0x38, +0x62,0x03,0xa6,0x2d,0x2b,0x30,0xe7,0xbb,0xb3,0x5a,0x33,0x1b, +0x32,0x39,0xf1,0x1a,0xbb,0xf3,0xb8,0xdb,0x09,0xd7,0x93,0x09, +0xa6,0x3c,0x6c,0x48,0x05,0xf5,0x1c,0x50,0x2e,0x39,0xda,0xc5, +0x1b,0x84,0x6b,0x45,0xac,0x8d,0x94,0xe2,0x9d,0x96,0xb1,0xbf, +0xe0,0x02,0xd8,0x38,0x07,0x8e,0x3b,0xe6,0xb7,0xf3,0x0b,0x33, +0xd6,0x15,0xea,0x56,0xdc,0xa9,0xb8,0xd5,0xd4,0xde,0xe2,0x54, +0xce,0xdb,0xd9,0xeb,0x39,0x6b,0x7b,0x99,0x54,0xdb,0x37,0x7a, +0xb5,0x72,0x70,0x9b,0xc1,0x5e,0xe1,0x3b,0x52,0xbe,0xfa,0xcd, +0x66,0xd8,0xa8,0xc3,0x61,0x3a,0x0c,0x33,0xc1,0x61,0x78,0x9e, +0x81,0xb5,0x8f,0xbe,0x7f,0x58,0xf6,0x23,0x87,0xfb,0xc4,0x29, +0xe4,0xb5,0x10,0xbc,0x9c,0x15,0x83,0xed,0x88,0x10,0xbc,0x50, +0x0c,0x66,0x94,0x3f,0xd9,0x1a,0x91,0x7d,0xaf,0x02,0x61,0x58, +0xc8,0x63,0xdb,0x03,0x54,0xa0,0x29,0xae,0xc9,0xce,0x6e,0x54, +0x9c,0xce,0xc7,0x38,0x88,0x06,0x33,0x2a,0x50,0xb3,0xcf,0x02, +0x35,0xa4,0x02,0x35,0xc4,0x6f,0xd8,0x2d,0xd1,0x9b,0xa2,0x35, +0x8f,0x9d,0x0d,0xe7,0x7d,0xaf,0xca,0x5e,0xba,0x75,0xba,0xf9, +0xf1,0x59,0xa1,0xb9,0xbe,0x39,0x3e,0xd6,0xe1,0xe6,0x87,0x4c, +0x28,0xac,0x72,0x81,0x24,0x40,0x24,0x1f,0x65,0x33,0x70,0x9a, +0x78,0x97,0xdd,0x13,0xbb,0xf7,0xc4,0x9e,0xe3,0xa9,0xd4,0x28, +0xb3,0x79,0x30,0xac,0xe8,0x75,0x69,0x6a,0x58,0xf2,0x9e,0xc4, +0x7d,0x97,0x4b,0xf8,0xf3,0x3e,0xb0,0x22,0x0d,0x16,0x65,0xc3, +0xc4,0x02,0x95,0xec,0x15,0x4a,0x8a,0x49,0x9f,0x38,0x92,0xba, +0xa9,0xcb,0x14,0x18,0xdd,0x12,0x0a,0x8b,0xb8,0x07,0xce,0x1d, +0x61,0xd7,0x38,0x63,0x26,0xcc,0xd4,0x4e,0x86,0x13,0xb5,0xa5, +0x73,0xaf,0x13,0x9e,0xf4,0xf4,0xa4,0x7d,0x2b,0x1d,0x7b,0xdd, +0x4e,0xe0,0x0b,0xac,0xc2,0x2f,0x18,0xb8,0x0a,0x55,0x84,0x5e, +0x4d,0x91,0xf2,0xe0,0x29,0xa1,0x3d,0x41,0xb7,0x3f,0xc0,0x8d, +0x41,0x37,0x8a,0xdc,0xc0,0x6d,0x06,0xba,0x51,0xb4,0x73,0x5b, +0x38,0x43,0x41,0x10,0xeb,0x71,0xc2,0xe3,0x84,0xe7,0xc9,0x8b, +0xf4,0x39,0x93,0x92,0x60,0x61,0x3a,0x8c,0xcc,0x3a,0xde,0xc6, +0x1b,0x47,0xe9,0x45,0x6f,0xa1,0x08,0x7d,0x07,0x8c,0x66,0x5f, +0xa3,0x9a,0xb4,0x57,0x17,0x62,0x9b,0xd5,0xce,0x2f,0xcf,0xda, +0x9a,0x23,0xcb,0x6f,0x2d,0x68,0xae,0xa8,0xae,0x70,0x29,0xe5, +0xbd,0x7c,0x5c,0x7c,0x4d,0xfd,0x1d,0x8a,0x77,0x95,0xfb,0xd6, +0x73,0x02,0xdb,0xa1,0x38,0xc4,0x9c,0xa9,0x39,0x5d,0x57,0xaf, +0x7a,0x5b,0x1e,0xd4,0xa5,0x28,0x95,0x76,0xd6,0x36,0xc4,0xe2, +0x98,0xaf,0x90,0x57,0x6f,0x71,0xef,0xfa,0x31,0xff,0xe7,0xc4, +0xf7,0x2a,0x72,0x03,0xd0,0x23,0xa2,0x68,0x23,0x88,0x0c,0x7a, +0xe2,0x6f,0x64,0x83,0x08,0x96,0x02,0xe0,0x42,0xdc,0xc6,0xa6, +0x59,0x2a,0xc1,0x4a,0xe6,0x4a,0x66,0x1a,0x05,0x53,0xb3,0xc0, +0xa7,0x1b,0x7d,0xbe,0x63,0xc5,0x78,0xf4,0x20,0x7d,0x41,0x7d, +0x7e,0x9d,0x9e,0x15,0x0d,0xbc,0x55,0xb5,0x59,0xb9,0x79,0x3e, +0xa7,0xfc,0x69,0x8a,0xbc,0x82,0x28,0x8e,0xe1,0xd7,0x0c,0xb6, +0xed,0xc6,0xd5,0x5a,0xc8,0xaa,0xb7,0xd9,0x28,0xfd,0x00,0x93, +0x4a,0x41,0x17,0xba,0x55,0xe5,0xba,0x8c,0x11,0x78,0x10,0x5c, +0xa0,0x18,0x06,0x0b,0x58,0xf9,0x66,0x45,0x10,0xd1,0x67,0x02, +0xa3,0x13,0x28,0x5b,0xba,0x89,0xb1,0xec,0xe9,0x94,0x6f,0x52, +0x53,0x55,0x5f,0xed,0x58,0xc9,0x1e,0xfe,0x26,0xe2,0x54,0x84, +0x3a,0x06,0x59,0x80,0x37,0x13,0x8c,0xeb,0x17,0x2c,0xc5,0x35, +0xa6,0xe5,0x16,0x3c,0x18,0xdc,0x84,0x11,0xa0,0x5c,0x08,0x66, +0x1c,0x18,0x63,0x3a,0x63,0x96,0x1b,0x78,0x47,0xfd,0x19,0x53, +0x93,0x75,0xa9,0x41,0x03,0x0c,0x58,0xb3,0x6c,0x25,0x65,0xc8, +0x96,0xbf,0xfc,0x7f,0xaf,0xc0,0x06,0x2f,0x2f,0x10,0x13,0x9c, +0x8b,0x49,0xe2,0xc0,0xc0,0x6d,0x70,0xc0,0xac,0x41,0xc8,0x02, +0x97,0x6d,0x57,0x85,0x01,0xfa,0x54,0x13,0x0c,0x24,0x14,0xfc, +0xae,0xa5,0x34,0x72,0x10,0xd7,0x4a,0x87,0x6c,0x5c,0x70,0x2d, +0x8b,0x69,0xd6,0x04,0xb5,0xe8,0x7d,0x2d,0xea,0x42,0xa6,0xd2, +0x5b,0x5a,0xe8,0x42,0x47,0xeb,0x18,0x7d,0x9d,0x1b,0xda,0x18, +0xe1,0xac,0x39,0xf4,0x6d,0xb6,0x7c,0x49,0x69,0xe9,0xe5,0xe2, +0x56,0x4e,0xac,0xec,0x97,0xcf,0x61,0x4b,0xef,0x15,0x7c,0x97, +0xf1,0x33,0xd7,0xb7,0x97,0xd8,0x08,0x57,0x3a,0x58,0xf1,0x57, +0x74,0x26,0x72,0xf5,0x4e,0x85,0x3a,0xd3,0x46,0xe1,0xad,0xad, +0x50,0xd7,0xce,0x9e,0x42,0x5b,0xd2,0x2e,0xd6,0xd9,0xb2,0xfd, +0xe2,0x0c,0xd2,0x21,0x68,0xda,0x5c,0x83,0x3e,0xb1,0x09,0xfb, +0x58,0x21,0x1c,0xe2,0x08,0xce,0x13,0x35,0x81,0x02,0x33,0x38, +0xfa,0x7f,0x78,0x4d,0x61,0x71,0x51,0x55,0x61,0x03,0x27,0xe6, +0x0c,0xc8,0xa7,0xb0,0x15,0x8f,0x8a,0x7f,0xcc,0xfc,0x8d,0x2b, +0xd8,0x4d,0xac,0x85,0xf3,0xba,0xe2,0x21,0x6b,0xe1,0x90,0x8e, +0x98,0x64,0x2d,0xdc,0x83,0x6b,0xec,0x13,0xc5,0x2d,0x82,0x4a, +0x19,0x2b,0xf2,0x36,0x95,0x3f,0x6d,0xbd,0x3e,0xd8,0xfc,0x80, +0xcb,0x1f,0x80,0x15,0x8a,0x39,0xb8,0xa2,0xcf,0x5f,0x70,0x61, +0x5d,0x64,0x32,0xdb,0xad,0x3b,0x0d,0xaa,0xcc,0xaf,0x58,0xf6, +0xb9,0xec,0xe2,0x5b,0xac,0xbb,0x5c,0x06,0xbd,0x36,0xee,0x5a, +0x14,0x8a,0xa3,0x23,0x93,0xa4,0x4a,0x6b,0x29,0xc0,0x95,0xfd, +0xda,0xfa,0xda,0xe5,0x63,0x00,0x90,0x7d,0xdc,0x66,0x61,0x24, +0x11,0x4b,0x9e,0x08,0x52,0xd2,0xdb,0xfd,0x02,0x43,0x5a,0x0a, +0x9b,0x2a,0xab,0xcb,0x9d,0x4b,0x79,0x6f,0x6f,0x57,0x5f,0x33, +0x7f,0xc7,0x62,0xaf,0x0a,0xbf,0xcb,0x9c,0x30,0xfc,0xff,0x4a, +0xe3,0xbe,0x8a,0xc5,0xd1,0x92,0xc6,0xb5,0xba,0x77,0x7e,0xd6, +0x38,0x98,0x8a,0x6b,0x98,0xff,0x47,0x35,0x5f,0x06,0xca,0x43, +0x6a,0x3e,0x49,0x1f,0x82,0x24,0x35,0x5f,0x91,0xa5,0x9f,0x63, +0x99,0xcf,0x51,0x5e,0x72,0xf5,0x5f,0x55,0x55,0xcc,0x53,0xd8, +0x90,0x06,0xa1,0xcf,0xf5,0x2a,0xdc,0x52,0x6c,0xc5,0x5b,0xac, +0x5c,0x09,0x92,0x09,0xae,0x11,0xfb,0xa4,0xb0,0x42,0x78,0x0d, +0x23,0x48,0x68,0xc9,0xee,0xe2,0xb0,0x82,0x76,0x18,0x53,0x08, +0xd3,0x13,0x61,0x23,0x77,0x19,0x17,0xb1,0x49,0xd7,0x2e,0xf6, +0x5f,0xe8,0x36,0x3b,0xc7,0xc7,0xda,0x1c,0x35,0x8e,0x34,0xe4, +0x66,0x9a,0xbf,0x63,0xf6,0xcd,0x0e,0x9d,0x11,0xbc,0xb1,0xc9, +0xa3,0xc1,0xe3,0xb2,0xeb,0x2e,0x5d,0x7b,0x03,0x43,0x93,0x2a, +0x7b,0xfe,0xc6,0xb5,0x8e,0xdb,0xb5,0x0f,0xb3,0x77,0x67,0x87, +0x66,0x07,0x4b,0x2b,0x47,0x23,0x49,0x67,0x6d,0x47,0x7b,0xf9, +0x65,0xef,0xcb,0x7c,0x90,0xbb,0x93,0x8b,0xa3,0x57,0x78,0x67, +0x54,0xdf,0xf1,0xeb,0x1c,0x58,0xf7,0x88,0x61,0xcc,0xe9,0xaa, +0x6f,0x6a,0xea,0x54,0x61,0xa3,0x10,0xda,0x2b,0x96,0xe3,0x3e, +0x16,0xcb,0x23,0x70,0xeb,0x06,0x5c,0xa9,0xde,0xe6,0x79,0x1b, +0xbe,0xcc,0x87,0x19,0x17,0xc0,0x4d,0xe5,0x07,0x71,0x36,0xe3, +0x7f,0xcc,0xef,0xb8,0xef,0xf1,0x24,0xaa,0xd1,0xc3,0xd3,0xfe, +0x2a,0x7c,0x5d,0x1a,0xdd,0xcd,0x3b,0x1f,0xb2,0x3f,0x64,0x7b, +0x84,0x13,0xa6,0xbe,0x60,0xd3,0xd1,0xb4,0x0f,0x35,0x41,0x9d, +0xa2,0xfc,0x66,0xde,0xb0,0xdf,0xf9,0x46,0xc0,0x03,0xee,0x1f, +0xc1,0x85,0x88,0x1a,0x32,0x41,0x83,0x51,0x14,0xe1,0x71,0x92, +0xfb,0x6d,0xf6,0xdb,0xf4,0xb7,0xdc,0x07,0x26,0x0a,0xf9,0x7d, +0x38,0xd6,0x65,0x66,0x60,0x49,0x60,0x51,0x40,0x01,0xa7,0x2c, +0xff,0x24,0xb7,0x26,0xe6,0xe2,0x3e,0x07,0x61,0x93,0x9d,0xb8, +0xc8,0x49,0x58,0x64,0x23,0x6e,0x71,0x10,0x0e,0xc3,0xee,0x6e, +0x98,0x29,0x2e,0x7c,0x66,0xa2,0x29,0xaa,0xe0,0xaa,0xde,0xbf, +0xd8,0x8f,0xa2,0x11,0xb1,0xb6,0xdf,0xec,0xa8,0xef,0x59,0x62, +0xc3,0x77,0x97,0x0e,0xd6,0xb6,0xd6,0x51,0x23,0xdc,0x2b,0x0f, +0xb2,0x60,0x03,0xb0,0x8e,0x84,0x76,0xba,0xdd,0xf4,0x6e,0xb6, +0x0f,0xe4,0xab,0x1d,0xeb,0x0c,0x0a,0xec,0x38,0xb9,0xab,0x23, +0x59,0xdd,0x43,0x49,0xe2,0x7d,0xd4,0xe8,0xf9,0x91,0x15,0x2a, +0xf0,0x1e,0x59,0x9d,0xbc,0x29,0xdd,0xa0,0xe0,0x6a,0x5d,0x53, +0x7b,0xc1,0x35,0xae,0x5e,0x5c,0x63,0x0f,0xc0,0xfa,0xdb,0xba, +0xba,0x9b,0x07,0xc8,0x8a,0xec,0xab,0xdc,0x9a,0x3c,0xfc,0xf8, +0x2a,0xd7,0x7a,0x9f,0xa6,0x20,0xe3,0xdd,0x5a,0xe1,0xcb,0x8e, +0x5c,0xb2,0xe1,0x3f,0xa6,0xbe,0xcb,0x7b,0x52,0xf9,0xcc,0xeb, +0x6d,0x18,0x0c,0x0b,0xa7,0x6d,0x95,0xcb,0x1d,0x08,0x0e,0x97, +0x42,0xf1,0x16,0x3f,0x36,0xd1,0x16,0xd5,0x70,0xc3,0x00,0x0c, +0x67,0xe5,0xf7,0xc4,0x9d,0x84,0x62,0x11,0x9c,0xd8,0xa5,0x73, +0x87,0x13,0xc6,0xb4,0xe3,0x09,0xa6,0xb8,0x3c,0xbb,0x28,0xa3, +0xd2,0x32,0x8f,0x0f,0xf7,0xdb,0xe3,0x1b,0x1c,0xd4,0x1a,0xcc, +0x53,0x86,0xaf,0xc4,0xbc,0x8b,0x7b,0x95,0xf0,0x47,0x7a,0x68, +0x23,0x8f,0xdb,0x03,0xd0,0xf0,0x18,0xc6,0x4a,0x21,0x76,0x7f, +0x9d,0xf9,0xe1,0xf4,0xf3,0x73,0x1c,0x8e,0x10,0x17,0xd8,0x82, +0x9c,0xdd,0xb2,0x0d,0x47,0x5b,0xa2,0xa9,0x75,0x8e,0x0d,0xdf, +0x90,0x52,0x9b,0x52,0x99,0xcc,0xe1,0x9d,0xfe,0x36,0x21,0xcd, +0xae,0x1f,0xee,0xb0,0x95,0x47,0x6a,0x8f,0x34,0x44,0x70,0x8a, +0x9d,0x80,0x24,0x7b,0x6f,0x56,0x70,0x4a,0x68,0x57,0x3e,0x7f, +0x28,0x3f,0xac,0xf8,0x40,0x26,0x77,0x12,0xfb,0xc8,0x2f,0x8d, +0xdd,0x57,0x8a,0xfa,0xb8,0x78,0x24,0x83,0x40,0xe2,0x99,0x22, +0xf3,0x41,0xe7,0x3f,0x5d,0x38,0x71,0x1f,0x4e,0x20,0xf7,0x61, +0xb7,0x2e,0xdb,0x37,0xf5,0x3e,0xc4,0xe8,0xb2,0xd8,0x66,0x4f, +0xb4,0x70,0xf7,0x53,0x16,0xca,0xa7,0x42,0x8c,0x16,0x65,0xfe, +0xca,0x72,0x4b,0xf9,0x2c,0x32,0x6f,0x00,0x17,0xdc,0xc6,0x19, +0xb5,0xc1,0x54,0xbf,0x79,0x0f,0x58,0xba,0xed,0x0f,0x53,0xee, +0x84,0x62,0x3a,0x69,0xcd,0x95,0xf6,0xe6,0xe2,0xd8,0xed,0xe9, +0x4a,0x58,0x89,0xf6,0xac,0xc9,0xfe,0xb4,0x41,0x0d,0x21,0xcf, +0x50,0xac,0x64,0x97,0xd6,0xfb,0xbc,0x55,0x17,0x0e,0xc2,0x4a, +0x12,0x08,0xf3,0x1d,0x60,0x93,0x35,0x4c,0x36,0xdd,0xc7,0x77, +0xa0,0x72,0x33,0x6e,0x2a,0xc0,0x05,0x9c,0x22,0xd5,0x9f,0xf4, +0xc1,0xbc,0x52,0xd0,0xbf,0x08,0x8b,0x8c,0xcf,0xf3,0x47,0x71, +0xae,0x1f,0xea,0x59,0xa0,0x0a,0xa7,0x0c,0x91,0x5a,0xe4,0xd3, +0x22,0xd3,0xff,0x2c,0x62,0xc1,0x45,0xee,0x41,0xc4,0x0d,0xc2, +0x39,0x61,0x03,0x86,0xdf,0x80,0xc6,0x76,0x6c,0x7c,0x6e,0xbe, +0x11,0xab,0x6d,0xa1,0xda,0x88,0xc5,0x63,0x94,0xfa,0xc5,0xf4, +0x1c,0xbc,0x79,0xa8,0x49,0x42,0x70,0x4e,0x97,0x8c,0xe2,0x2d, +0x38,0xf4,0xa6,0xb8,0x2d,0xef,0x55,0xf2,0x87,0x73,0x1f,0xad, +0x29,0x25,0x9d,0x15,0xb9,0x28,0x64,0x2d,0x27,0xcc,0x86,0x65, +0xe4,0x9e,0xa0,0xa6,0xc7,0x3a,0x8e,0xd2,0x15,0xd5,0xee,0xb3, +0x38,0x7e,0x94,0xa0,0xa6,0x25,0xaa,0x31,0x94,0x4a,0x6b,0x93, +0x2e,0xc5,0x4c,0x2b,0x56,0x98,0xbc,0x85,0x3c,0xd9,0xfd,0xce, +0xed,0xa1,0x7b,0x51,0x3b,0xaf,0x5b,0xb7,0xb0,0x6e,0x73,0x0e, +0x27,0xce,0xc1,0x95,0xe4,0xcf,0x82,0x97,0x97,0xfb,0xae,0x78, +0xd7,0xf2,0x76,0xbb,0x56,0xed,0x5c,0xb4,0x97,0x36,0xef,0xa5, +0xb0,0x88,0xf8,0x47,0xf8,0x47,0xf8,0x52,0xb0,0x70,0x00,0x46, +0xf7,0xe0,0xe8,0xcf,0x3c,0x7e,0x9a,0x0c,0xa6,0xe1,0x59,0xd6, +0xf1,0x90,0x43,0x84,0xb3,0xc4,0xe3,0xeb,0x13,0x1b,0x92,0x1b, +0x53,0xa5,0x52,0x2a,0xe3,0x24,0x1e,0xff,0xeb,0xbf,0xb9,0x50, +0xda,0xd8,0xaa,0x94,0xca,0xd4,0x8a,0x4b,0x9c,0xe0,0x81,0x06, +0xa4,0xbb,0xa6,0xab,0xbd,0xf2,0xb2,0x57,0x3d,0x1f,0xb0,0xd3, +0xc1,0xd9,0xde,0xfb,0x20,0x9d,0x87,0xc7,0xe8,0x3c,0x74,0xed, +0x15,0x8f,0x0f,0xcd,0xc3,0xcb,0xaa,0xf0,0x95,0x70,0xac,0x57, +0xec,0x94,0xe6,0x61,0x59,0x04,0xea,0xad,0xc5,0xd5,0x74,0x1e, +0xde,0x03,0xf5,0x02,0x69,0x1e,0xba,0xa8,0xbc,0x16,0x67,0x32, +0xbe,0xc7,0x7c,0x62,0x7d,0x86,0xe6,0xe1,0xa8,0x34,0x18,0x5e, +0xf4,0x4e,0x9a,0x88,0x8e,0x87,0x6c,0xa5,0x22,0xb9,0xc2,0x94, +0x57,0x6c,0x06,0x9a,0xf4,0xd3,0x89,0x38,0x17,0x27,0xd7,0xb4, +0xf0,0xdb,0xfa,0x1d,0xae,0xfb,0x3f,0xe4,0x60,0xa4,0x34,0x13, +0x97,0x59,0x08,0xcb,0xa8,0xf5,0xef,0x95,0x1f,0x20,0xbf,0x5b, +0x2c,0x40,0x03,0x6b,0x61,0x7d,0x27,0x0b,0x93,0x70,0xdf,0x50, +0x29,0x05,0x95,0x34,0x60,0x0b,0xbf,0xab,0xf6,0x6b,0xe5,0xd7, +0x53,0xbe,0x1b,0x8c,0x1b,0xf6,0x73,0x18,0xc7,0xe2,0x79,0x1f, +0x9c,0xb7,0x0e,0xc7,0xab,0x37,0x39,0xfc,0x0c,0xd3,0xaa,0x61, +0xe5,0x59,0x38,0xad,0x42,0x75,0xbf,0xb8,0x5f,0x28,0x86,0x29, +0xdd,0x8c,0xf8,0x37,0x5e,0x21,0x51,0x49,0x47,0xcf,0x46,0x46, +0x46,0x1c,0xe1,0x63,0x1f,0x81,0x7d,0x27,0xda,0x83,0x12,0x38, +0x74,0xe1,0x34,0x26,0xa3,0x3a,0xa7,0x3f,0xb5,0xcd,0x2a,0x83, +0x3f,0x6c,0xba,0xc7,0x24,0xcc,0x85,0xc3,0x34,0x2b,0x70,0x44, +0x25,0x74,0xb0,0x06,0x63,0x26,0xf4,0xab,0xad,0x2b,0xe7,0x6f, +0xa4,0xe6,0xea,0xe3,0xab,0xae,0xc7,0x71,0xdf,0x53,0x75,0xbd, +0xd9,0x0b,0x89,0xd2,0x36,0xc4,0xf9,0x58,0x75,0x18,0x8e,0x93, +0x2f,0x37,0x2a,0x61,0x8c,0x20,0x23,0xd1,0x35,0xfb,0x5a,0xf6, +0xd5,0xdb,0xed,0xe5,0xb3,0xdc,0xd3,0x1d,0x93,0x3c,0x38,0x65, +0xe1,0xbf,0x28,0xe3,0x87,0xc1,0x6e,0xc5,0xaf,0x96,0x50,0x4f, +0x15,0xe3,0xba,0xec,0x13,0xdf,0x83,0x2f,0x18,0x53,0x38,0x46, +0xe8,0xb7,0x6a,0x70,0x8c,0xc5,0xcb,0xd4,0xc2,0xda,0x14,0xd9, +0x17,0x58,0x75,0x94,0xf0,0x41,0x83,0xfe,0x2d,0xee,0x2d,0x9c, +0x70,0x9d,0xba,0xad,0x86,0xb6,0xba,0xab,0x79,0x6d,0x16,0x05, +0xfc,0x6e,0x2b,0x4f,0x4b,0x77,0x07,0x4e,0x0c,0x56,0x4c,0x26, +0xdd,0x42,0x93,0xe5,0x55,0xc1,0x48,0xb1,0x5e,0x34,0x62,0x05, +0x01,0x0a,0x89,0xd8,0xf4,0x51,0x68,0x62,0xa8,0x4b,0x5b,0x43, +0x84,0x26,0x1c,0x29,0x36,0x31,0xca,0x37,0x84,0x8d,0x04,0x0e, +0xde,0x07,0x72,0xbf,0x54,0x8a,0x3c,0x4a,0xbe,0x0a,0xc9,0xf1, +0x4c,0xf9,0x02,0x98,0xad,0x0b,0x07,0x36,0x17,0x76,0xf3,0x18, +0x72,0x1b,0x27,0xdf,0x92,0xdd,0xa2,0xf8,0xb6,0x47,0xd4,0xf8, +0x65,0xc7,0x62,0x71,0x8a,0x0c,0xfe,0x64,0xac,0xb7,0xe1,0x18, +0x03,0xf4,0xdf,0xce,0xc1,0x43,0x3c,0x49,0xa2,0x2e,0x46,0x7f, +0x13,0x1d,0x19,0x49,0x05,0x75,0x1b,0xd6,0x75,0xe0,0xba,0x3f, +0xcc,0xe6,0xa3,0xb5,0x0d,0x6c,0x65,0x42,0x35,0xf5,0x57,0xcc, +0xde,0x52,0x6e,0xcf,0x83,0xf2,0x4f,0xf5,0x4f,0x13,0x9f,0xd2, +0x37,0xdc,0xea,0x87,0x24,0x26,0xf1,0xfc,0xe9,0x0b,0xc7,0xd4, +0x61,0xe4,0xb2,0xca,0x46,0x25,0xc1,0x07,0xe6,0x91,0x0e,0xdc, +0xf7,0x87,0xf9,0x7c,0x5c,0x60,0x03,0x53,0xd9,0xe0,0xf5,0xda, +0x2b,0x90,0xd1,0xae,0x70,0xa0,0xf3,0xf4,0x6d,0xfb,0xd3,0x44, +0x29,0x50,0xe8,0x61,0x1f,0x3c,0x8c,0x67,0x12,0x57,0x0f,0x6a, +0xc2,0xf4,0x65,0xa5,0xad,0x3c,0xb2,0x4f,0xd6,0xfd,0x14,0x20, +0xe5,0xad,0x9b,0x20,0x1f,0x4d,0xec,0x28,0xd9,0x89,0xf2,0x8d, +0xf0,0x3b,0xe4,0xcf,0xe1,0x5a,0x5b,0x98,0xc6,0xb8,0x1b,0x59, +0x9b,0x1b,0xda,0x96,0xb9,0xf2,0xdf,0x5e,0xbd,0xf6,0xb0,0xe9, +0x3b,0x8e,0x42,0x97,0xc6,0x0d,0x83,0xba,0x4f,0x4c,0x29,0x3e, +0x32,0x6c,0xb3,0xed,0xf1,0xa4,0xda,0x39,0xaf,0x1d,0x75,0x99, +0xc3,0x25,0x91,0x65,0x47,0x2b,0x38,0xd8,0xd4,0x86,0x6d,0x4c, +0x7c,0x41,0x5c,0xe1,0xb9,0x42,0x0e,0xfa,0xda,0xe9,0x37,0x67, +0xf3,0xcf,0xd0,0xff,0xb2,0xb3,0xfc,0xa9,0xe0,0x93,0x21,0x27, +0x43,0x29,0x06,0xb6,0x85,0x60,0xe6,0x78,0x70,0x6c,0xf0,0xb1, +0x10,0x8e,0x82,0x7b,0x0d,0x12,0x73,0xe9,0xd8,0xa9,0xc8,0xa3, +0x47,0xa2,0xf8,0xe3,0x1f,0x61,0x4c,0x27,0x8e,0x01,0x73,0x19, +0x9a,0x23,0xf9,0xbc,0x34,0x34,0xc9,0x13,0x67,0x4b,0x4b,0x43, +0x8e,0xfc,0xad,0xbf,0xf2,0x3f,0x9c,0x7f,0xcd,0xc5,0x8b,0x19, +0x3d,0x42,0x91,0xb4,0x53,0x7a,0xe6,0xb8,0xfa,0x5d,0x5c,0x51, +0x55,0xa3,0x04,0xbf,0x41,0x14,0xb9,0xe8,0x9b,0xe4,0x97,0x4c, +0xdb,0xbd,0x8a,0x49,0x2d,0x4d,0x2a,0x93,0x2a,0xba,0x54,0x8a, +0x73,0x49,0x2b,0xee,0x7d,0xca,0x56,0xc7,0x55,0xc5,0x57,0x24, +0xec,0x6e,0xe4,0xb7,0xee,0x5b,0x19,0xbd,0xfc,0x44,0xb2,0x13, +0x5f,0x7a,0xa6,0xec,0x4c,0xe9,0x59,0x4e,0x0f,0x3d,0xec,0xa9, +0x6e,0x07,0x5b,0xe8,0x9a,0xa3,0x96,0x2c,0xd3,0x8e,0x87,0xad, +0xd7,0x1e,0x5d,0xbb,0xf4,0x84,0x0a,0x2a,0xaa,0x17,0xa2,0xe3, +0x98,0x14,0xed,0x6f,0xb7,0x83,0xce,0xb6,0xdc,0x36,0x1e,0x57, +0xf6,0x6f,0xe8,0x0b,0xec,0xe3,0x94,0xdf,0xca,0xf3,0xc8,0x75, +0xaf,0x1e,0x8f,0x6e,0x97,0xf2,0x16,0xde,0xb6,0xc1,0xb8,0x71, +0x47,0x19,0x07,0x0e,0x81,0x14,0xa6,0x9c,0xd3,0x15,0xc3,0x6d, +0x84,0x70,0x6d,0x31,0xd1,0x5a,0xb8,0x4b,0x61,0x8a,0xe2,0x0d, +0x26,0x90,0xdb,0x9e,0x37,0x9c,0xfa,0xed,0xab,0x5a,0x78,0xab, +0xa6,0x2d,0xed,0xfa,0x55,0xdc,0xa7,0x29,0xe2,0x7f,0x11,0x1c, +0x99,0xb1,0x32,0x4f,0xbb,0xfc,0x49,0xeb,0xd5,0xab,0x14,0xbc, +0xe4,0xf5,0x53,0xf0,0xa2,0x86,0x2b,0xfa,0xfd,0x05,0x2b,0xd6, +0x4d,0x66,0x69,0xa7,0xbf,0xd3,0xa8,0xca,0xe2,0x8a,0x55,0x9f, +0xf3,0x2e,0xbe,0xd9,0xba,0xd3,0x79,0xd0,0x4b,0xd3,0x6b,0x49, +0x08,0xb2,0x91,0xc9,0x14,0xbc,0x4c,0x4e,0x05,0xa5,0xd2,0x77, +0xad,0x3f,0xbb,0xfc,0x13,0x00,0x93,0xf7,0x71,0x5b,0x84,0x51, +0x44,0xcc,0x7e,0x2c,0x64,0x33,0x8a,0x4c,0x51,0x9f,0x3c,0xf8, +0xa7,0x17,0x54,0xcb,0xfe,0x96,0xe5,0xf0,0xde,0x38,0xd2,0x1e, +0x47,0xeb,0x2d,0xa4,0x26,0xaa,0x5a,0xee,0x4c,0x1c,0xea,0xcd, +0x1a,0xcc,0xca,0xfc,0x1c,0xf9,0x41,0xef,0x0e,0x8f,0x0e,0x57, +0xee,0x09,0x9e,0x21,0xb0,0xea,0xe1,0xf5,0x5f,0xce,0xc1,0x3a, +0x8e,0xce,0x26,0x1f,0xc6,0x3a,0x63,0x5f,0x87,0x3a,0x2c,0x64, +0x9a,0x93,0xb3,0xab,0x34,0xee,0xb0,0x56,0xc9,0x4a,0xab,0x70, +0x3a,0xbb,0x3b,0x26,0xae,0x48,0x03,0x1c,0x29,0xdf,0x57,0xea, +0x07,0x4d,0x05,0x25,0x8c,0x7d,0x74,0xf6,0xaa,0xb2,0x27,0x70, +0x96,0xdd,0x16,0x9c,0x69,0xcc,0x79,0x46,0x13,0xdb,0x26,0xfd, +0x76,0xa3,0x2a,0x5f,0x47,0xfe,0xba,0xe7,0x35,0xa7,0x1e,0x07, +0x4e,0xee,0x82,0x84,0x74,0x61,0x3f,0x8c,0x32,0xa5,0x70,0xf5, +0xb2,0x15,0xa4,0xb2,0x3b,0xd7,0x2e,0x58,0x8f,0x0b,0xb6,0x48, +0x19,0x92,0x56,0x7f,0x0f,0xc3,0x7f,0x49,0xfa,0x83,0x8a,0xf8, +0xe7,0x5e,0xf8,0x39,0x9e,0x49,0x99,0x0f,0x53,0x16,0xc3,0xe2, +0x75,0x45,0x3d,0x3c,0xaa,0xde,0xc1,0xd1,0x2f,0x1d,0x7f,0xe0, +0x44,0xd7,0x0c,0xe2,0x8b,0xa3,0x1c,0x91,0xd3,0x5f,0xd0,0xea, +0xce,0xdf,0xfb,0xd8,0x25,0xe5,0x6d,0xf8,0x37,0x13,0x9c,0x11, +0xe5,0xca,0x82,0xf8,0xcb,0xb5,0x9b,0x94,0x84,0x9c,0xb8,0x01, +0x27,0x60,0xc0,0xf0,0x9a,0xf0,0x8b,0xc8,0x31,0x46,0x52,0xae, +0xc5,0x46,0xd8,0x0a,0x8d,0x8c,0x30,0x06,0xb7,0x12,0x1c,0xa0, +0xd7,0x03,0x8c,0x62,0x19,0x1e,0x26,0xf4,0x77,0x77,0x60,0x23, +0x03,0x9f,0x60,0x07,0x81,0x01,0x7a,0x3d,0xc0,0x28,0x0b,0xbf, +0xcb,0x8f,0x93,0xef,0xf5,0xd7,0xe1,0x5b,0x74,0x65,0x8d,0x4f, +0x59,0x9e,0xb4,0x53,0x77,0xd9,0x65,0xe3,0x27,0x0b,0xc9,0xda, +0xc1,0xb7,0x15,0xd5,0x16,0x55,0x55,0x44,0xe0,0x0c,0xdf,0xa5, +0x5b,0xe7,0x77,0x3a,0x53,0x4c,0x03,0xab,0x0a,0x61,0x1b,0x34, +0xa8,0x82,0x86,0x7c,0x47,0x37,0xab,0x48,0xc7,0x64,0xb2,0xf7, +0x76,0xc8,0xa0,0xbf,0x74,0x22,0xbc,0xc4,0xbc,0xc8,0x24,0x67, +0x1b,0x27,0xb8,0x82,0x05,0x09,0x58,0xbb,0xc5,0x18,0x6d,0x96, +0x15,0x52,0xef,0x68,0xfc,0xd3,0x6f,0xf7,0xb2,0x7f,0xe7,0xe2, +0x98,0x9c,0x05,0x7f,0x6d,0x03,0xf3,0x15,0x85,0x5d,0x3c,0xba, +0xbc,0xdb,0x3c,0xe0,0xfb,0x3d,0x17,0x43,0x59,0xba,0x9e,0x26, +0x72,0xdb,0x71,0x8a,0x47,0x81,0x2d,0x0f,0x2a,0xf5,0xa0,0x7c, +0xf7,0xf1,0x0b,0x0e,0x5f,0xe1,0x1f,0x04,0x0c,0x9b,0x60,0xed, +0x0b,0x18,0x05,0x8c,0x6b,0x0d,0x4f,0x09,0xe4,0x08,0x5c,0xb4, +0x19,0xb7,0xb9,0x70,0x5f,0x4b,0x81,0xa5,0xa7,0x5b,0xc0,0xfb, +0x03,0x2c,0x82,0x85,0x6e,0xd5,0x3c,0xce,0xc6,0x19,0x68,0xbf, +0x14,0xcf,0x39,0xd2,0x61,0x5e,0x4b,0x27,0xb0,0xb8,0x4c,0xbe, +0x41,0x58,0x86,0x37,0xef,0x0b,0x5a,0x9d,0xa2,0xd6,0x53,0x13, +0x2d,0x71,0xb1,0xb5,0xb0,0x98,0xfa,0xf2,0x18,0x1c,0x4b,0x6e, +0x0b,0x6d,0xdb,0xa8,0xd3,0xdb,0x2a,0xb6,0xdd,0x65,0x71,0xec, +0x28,0xa1,0x6d,0x8b,0xd8,0x26,0x15,0x6f,0xd3,0x23,0x9f,0x66, +0x76,0xfe,0x67,0x26,0x53,0x82,0xe1,0x04,0xd4,0x8a,0x3e,0x5e, +0x7e,0xdc,0xe0,0x59,0xcf,0x6f,0xda,0x39,0xcf,0x1b,0x09,0x05, +0x88,0x8d,0xbd,0xe4,0x7d,0x30,0x8c,0xf6,0xf8,0x63,0x67,0x79, +0x1b,0xbf,0x88,0xb2,0xf1,0xba,0x59,0x14,0x93,0x41,0xaa,0xa0, +0x46,0x8e,0x9f,0x63,0xea,0x3a,0xfb,0x7f,0xc9,0xff,0x99,0x6b, +0xc6,0xc9,0x9f,0xcf,0x12,0xab,0xc9,0x20,0x79,0xe8,0x2c,0xf1, +0x28,0x5c,0x87,0x2a,0x73,0xcb,0x1d,0xf8,0xb6,0xba,0xfa,0xcf, +0x67,0x89,0xfb,0xa5,0xb3,0xc4,0xd2,0xca,0xa4,0x3a,0x4c,0xc4, +0x8d,0x75,0x55,0x38,0x11,0x36,0x1e,0x4d,0x8a,0x3a,0x13,0x15, +0xad,0x22,0x18,0x0a,0xdb,0x88,0x19,0x25,0x2f,0xbb,0xc4,0x81, +0xde,0x5b,0xb0,0x18,0x33,0xfb,0x21,0x13,0x96,0x1b,0xf4,0x51, +0xf2,0xe2,0xc7,0x98,0x4b,0xe4,0x65,0x29,0xac,0x83,0xa5,0x4c, +0x1f,0xae,0x23,0xf4,0x62,0x05,0xae,0x63,0xc5,0x51,0x36,0x04, +0x96,0xa2,0x36,0x2e,0x65,0xc0,0x07,0xb4,0x09,0xbd,0xa9,0x8d, +0x2b,0x28,0x9f,0xde,0x21,0x6c,0x26,0x9d,0x98,0xc3,0xee,0x2b, +0x0a,0x2f,0x0e,0x2f,0xe5,0x20,0xb1,0x5d,0xdc,0xcc,0x24,0x16, +0x26,0x14,0x5d,0x28,0xe6,0x04,0x83,0x4e,0x71,0xa3,0x54,0x14, +0x39,0xe7,0x6c,0x8e,0x54,0x14,0x39,0xf4,0x78,0xe8,0xf1,0xdd, +0x1c,0x7e,0xb2,0x86,0x5f,0x99,0xa3,0x81,0xd1,0x41,0x52,0x51, +0xe4,0x52,0x5b,0xb8,0xc0,0x1c,0x0a,0x38,0x18,0xb0,0x2f,0x88, +0xc3,0x0c,0x6b,0x08,0x63,0xcc,0xb6,0x6d,0x32,0x99,0x6b,0x59, +0x41,0xed,0x83,0xf2,0xed,0x9f,0x9f,0xdd,0x7a,0xc5,0x41,0x0f, +0x73,0x6b,0xed,0x2b,0x5d,0x98,0xa0,0x53,0xd1,0xce,0xe3,0xa8, +0xab,0x9b,0x7b,0x2c,0xaf,0x72,0xf8,0xba,0x93,0x64,0x14,0xa5, +0x95,0xa4,0x94,0x70,0x40,0x98,0x54,0xff,0x4b,0x81,0xe9,0x41, +0x1c,0x04,0xe0,0x00,0xe9,0xc6,0xbe,0xc7,0x6c,0x77,0x5c,0x7b, +0xfc,0x95,0x84,0xbd,0xed,0xbc,0x76,0x38,0xce,0x8a,0xc4,0x2f, +0x4f,0x26,0x58,0xf3,0xed,0xa7,0xdb,0xce,0xb4,0x48,0x76,0xa8, +0xde,0x12,0xce,0xb1,0xe6,0xdb,0x71,0x9c,0x05,0x6e,0x76,0xc9, +0x97,0xf1,0x10,0x72,0x1d,0x46,0xdc,0x2e,0x7c,0xc6,0xc5,0xe1, +0xd1,0x41,0x38,0x1a,0xc7,0x14,0x6a,0xc2,0xc4,0x6d,0x10,0xb2, +0x5d,0x0a,0x62,0xd5,0xbf,0x82,0x93,0x7b,0x4d,0xaf,0xd3,0x41, +0xf8,0x4e,0x3a,0xc1,0x1a,0x94,0x32,0x74,0x82,0xd5,0xfc,0xb8, +0xd9,0x89,0xeb,0x9f,0x0b,0xb7,0xb0,0x76,0x45,0x7c,0x90,0x89, +0xf7,0x76,0x2f,0xd3,0x7d,0xb9,0x52,0xe1,0x96,0xda,0xc1,0x7f, +0xeb,0xd0,0x85,0x0d,0xd5,0xa1,0x3b,0x74,0xe9,0x50,0xca,0xe1, +0x14,0x1f,0x57,0x5e,0x2a,0xde,0xd2,0x6c,0x1e,0xea,0x19,0xea, +0xb5,0xdb,0xdf,0xef,0x6b,0xbf,0x53,0x7e,0xa7,0xe2,0x2c,0xf9, +0xde,0x33,0xbd,0x67,0xa5,0xda,0x2d,0xcb,0x7a,0x87,0x4e,0xb0, +0xd6,0x9e,0xaf,0x8d,0xfb,0x9f,0x3a,0x74,0xfb,0xee,0x06,0xdf, +0x0f,0xea,0xe3,0xe0,0x57,0xb8,0x3e,0x34,0x5c,0xb6,0xe2,0x40, +0xf7,0x2d,0xd0,0xf8,0x3c,0x5c,0xb3,0x0d,0x7a,0xe9,0x70,0x39, +0x7f,0x1e,0xae,0x99,0xb0,0x1e,0x66,0x32,0xbd,0xb8,0x9e,0xd0, +0x8b,0xb9,0xb8,0x9e,0xc5,0x5f,0xe9,0x70,0xcd,0x44,0x1d,0x69, +0x9b,0xc9,0x11,0x74,0x08,0xbd,0xa9,0x83,0x73,0x19,0x71,0x49, +0x1c,0xc9,0xdd,0x9a,0xfe,0x55,0xb2,0x56,0x67,0x26,0x1f,0xf1, +0x70,0xef,0x77,0x61,0x77,0x38,0x2c,0xc4,0x26,0x52,0xfb,0x22, +0xeb,0xf7,0x64,0xa9,0x64,0x4b,0xe4,0xaa,0x7d,0x6b,0x3c,0xbf, +0xa2,0x93,0xbf,0xe7,0x32,0x01,0x3b,0x78,0x04,0x57,0xf1,0x11, +0x98,0x08,0x93,0x07,0x15,0x77,0x15,0x8a,0x1b,0xbd,0xf2,0xd4, +0x41,0x56,0x74,0x15,0xce,0x12,0xbc,0x05,0x26,0x70,0x8b,0xc1, +0x5b,0xd4,0x0e,0x82,0xa9,0x7c,0x12,0x9a,0xb2,0xf8,0xc8,0x84, +0xa0,0x1d,0xfd,0x81,0xdd,0xd0,0x1e,0xff,0x22,0x02,0x99,0xb3, +0x06,0xff,0x86,0x4b,0xbd,0x78,0x09,0x28,0x25,0x66,0x30,0xf3, +0xf3,0x97,0x53,0x16,0x70,0x6a,0xd6,0x20,0xd3,0xb7,0x93,0x3c, +0xb0,0x7a,0xb4,0xed,0x9a,0x7e,0x53,0x13,0xaf,0xff,0x60,0xf3, +0x35,0xbd,0x2e,0x2e,0x4c,0x6c,0x27,0x56,0x11,0x49,0x2d,0x1a, +0xc2,0x18,0x43,0x71,0x12,0xbb,0xa6,0x2c,0xe4,0x07,0x75,0xea, +0x77,0x9b,0x33,0xb3,0x1b,0x35,0x28,0x6b,0x36,0xce,0x56,0x42, +0x3b,0xb6,0x07,0xfe,0x21,0x57,0x71,0x58,0x1b,0x8e,0xae,0x47, +0x95,0xab,0xb9,0xbc,0x13,0xcc,0xb2,0x87,0x91,0x3b,0x60,0x18, +0xa7,0xb0,0x14,0xd5,0xc8,0x2d,0x18,0x5d,0x0b,0xaa,0xd9,0x30, +0xd6,0x38,0x81,0xf2,0x1a,0xc6,0x03,0xa7,0x6e,0x9f,0xf3,0xdf, +0x07,0x3a,0x37,0x63,0xe6,0x43,0xfa,0x21,0x9d,0x52,0x35,0xd8, +0x65,0x82,0x8e,0x36,0x82,0x45,0x07,0x9a,0x77,0xd5,0x3d,0x84, +0xcc,0xcd,0x03,0x0f,0x87,0x8e,0xb2,0x32,0xc6,0x78,0x94,0xbc, +0x8d,0x87,0xc9,0x89,0x3f,0x57,0x84,0xb6,0xf1,0x2b,0xfc,0x70, +0x6c,0x04,0xaa,0xc6,0x72,0xe8,0xcc,0xe2,0xd6,0xd8,0x59,0x6b, +0x71,0x8a,0x7a,0xeb,0xce,0x6f,0x61,0xda,0xa5,0xbf,0xcf,0x80, +0xa1,0x0a,0x2c,0x92,0x06,0x6e,0x19,0x8c,0xed,0xc4,0x67,0x8c, +0x78,0x1c,0x86,0x91,0x6c,0xff,0xb4,0xc0,0x64,0xff,0xd6,0x74, +0x3e,0xb2,0xf8,0x60,0xf9,0x1e,0xaa,0x9b,0x36,0xf8,0x0f,0x45, +0x1a,0x47,0xcf,0x46,0x45,0x45,0x44,0xf0,0xb1,0xfd,0xe0,0xdc, +0x81,0xce,0x2f,0xc0,0xb5,0x03,0x27,0x32,0xe9,0x05,0x19,0xe5, +0xa9,0xe5,0xb6,0x69,0xfc,0x21,0x8f,0xfd,0xbb,0xc2,0x7c,0x39, +0xac,0xb3,0x01,0xdf,0xf5,0xe8,0x6d,0x03,0xe6,0x4c,0x90,0xa9, +0x95,0x0c,0x59,0x5d,0x3a,0xa3,0x61,0xec,0x93,0xd6,0x6b,0x49, +0x0f,0xa9,0x09,0x4f,0xed,0x01,0x7b,0x26,0xfe,0xfc,0x37,0xe7, +0x4f,0xa8,0x83,0xf2,0x8c,0xda,0xcb,0x4a,0xca,0x50,0x2b,0x0f, +0x23,0xbf,0xcb,0x16,0xe0,0x7a,0x6b,0x81,0x74,0xb2,0x82,0x8d, +0x22,0x94,0x18,0x33,0x21,0x31,0xe7,0xa9,0x1b,0xb1,0xfa,0x20, +0xdc,0x17,0x17,0x8a,0xf7,0xff,0x60,0xa3,0x70,0x84,0xf9,0x06, +0x5c,0xb5,0xa3,0xc0,0x89,0x07,0xc3,0x9b,0xd7,0x61,0x58,0x0a, +0x4c,0xe1,0xbe,0x43,0x1b,0x66,0x7b,0xce,0xde,0x2e,0xf5,0x47, +0x52,0x9c,0x05,0x05,0xc7,0x93,0xa5,0xea,0xd7,0x36,0xc2,0x6b, +0x29,0x52,0xbb,0x0e,0x58,0x16,0xc3,0xc4,0x6c,0x12,0x9d,0x14, +0x7d,0x2e,0x2a,0x52,0x6a,0xf9,0x63,0xd0,0xef,0x40,0x7d,0x18, +0x09,0x06,0x9d,0x38,0x8e,0xc9,0xa8,0xca,0xea,0x4f,0x6d,0xb1, +0xce,0xe4,0x8f,0x98,0xed,0x35,0xdb,0xe3,0xcc,0x61,0x8c,0x35, +0x18,0xe1,0x48,0x34,0xb4,0x81,0xaf,0x98,0x3d,0x5a,0xc6,0x2b, +0x97,0x49,0x60,0xf2,0xf7,0x57,0x57,0x1e,0xc6,0x3d,0xa7,0x2d, +0x1f,0xec,0x86,0x8b,0xff,0x0d,0x26,0x59,0x9c,0x57,0x4b,0xc1, +0x64,0x94,0xe0,0x4a,0xc1,0xe4,0xfe,0x96,0xfd,0xf5,0x0e,0x7b, +0xf9,0x4c,0xf7,0x34,0xc7,0x44,0x0f,0x4e,0xbe,0xa5,0x57,0xda, +0xa2,0xa8,0x93,0xb6,0x28,0xea,0xa4,0x54,0x94,0x13,0xe9,0xf5, +0x44,0x56,0x59,0xd8,0x40,0x67,0x1e,0x4c,0xfb,0xe5,0xe1,0x4f, +0x05,0x52,0x12,0xff,0xc2,0xf9,0x6f,0x17,0xc1,0x22,0x1c,0x56, +0x49,0x2d,0xfc,0xdc,0x0f,0xcb,0xde,0x7a,0xbe,0xe5,0x0c,0x18, +0xbf,0xd5,0x7a,0x4b,0x50,0x65,0x09,0x17,0x0b,0x56,0xd4,0x02, +0xb4,0x58,0xb2,0xf0,0x1c,0x67,0x91,0x1e,0x71,0x98,0x8c,0x95, +0x2f,0x88,0x21,0x3b,0xb4,0x70,0x98,0x16,0x0e,0x77,0xc9,0xa7, +0xe6,0x5f,0xa9,0x05,0x46,0x3c,0xbe,0xff,0x9a,0x13,0xc7,0x2e, +0xa3,0xbf,0x5a,0x65,0xc9,0xca,0x1d,0x8e,0x91,0x35,0x33,0x70, +0xee,0x2c,0x5c,0x24,0xcb,0xa3,0xae,0x64,0x41,0x3f,0x2c,0xfa, +0xeb,0x4f,0x29,0x9e,0xd7,0x67,0xf9,0xbf,0xbf,0x51,0xb7,0x9f, +0xe2,0x08,0x9c,0x47,0xb9,0xc6,0x24,0xb4,0x31,0xcb,0xa5,0x78, +0xdf,0xee,0x06,0xc8,0x60,0x22,0x7c,0x41,0x5d,0xba,0xe2,0x07, +0x7c,0x4f,0x7a,0x3a,0x21,0x1c,0x72,0xb1,0x96,0xe9,0xb1,0x22, +0xa0,0x87,0xab,0x51,0x8f,0x5a,0x47,0x22,0x9c,0x20,0xa1,0xf6, +0xbe,0x76,0x1e,0xce,0x9c,0xa0,0x82,0xad,0x6c,0x7a,0x49,0x4a, +0x59,0x62,0xa9,0x51,0x02,0x1f,0xe5,0x73,0xc8,0x7b,0xbf,0x0f, +0x87,0xa7,0xc4,0x50,0xc6,0xfd,0x6b,0x8f,0x53,0x5e,0xa7,0xce, +0xd1,0x67,0x6e,0x3f,0x0f,0x09,0x99,0x60,0x50,0x88,0xeb,0x91, +0xc3,0x60,0x2d,0x3c,0x6b,0x97,0x63,0xca,0x43,0xf1,0x00,0x04, +0xbf,0x84,0x35,0xb4,0x3d,0x94,0x63,0x39,0x0c,0x25,0x51,0xdc, +0xc6,0x5c,0xc9,0x48,0x6f,0xd2,0xa0,0xce,0x7e,0xa0,0xa7,0xf5, +0x7a,0xcd,0x7d,0x0e,0x7d,0x60,0x1c,0x11,0x23,0xfe,0x10,0x22, +0x18,0x31,0x02,0xe3,0xc9,0x5f,0x42,0xc4,0x1c,0xd6,0x6e,0x94, +0x1e,0x8b,0x53,0xf7,0xa1,0xf9,0x61,0xd4,0x89,0xe1,0x80,0x63, +0x25,0x9f,0xee,0x49,0x80,0x31,0x44,0x46,0xe4,0xcc,0xe5,0xb7, +0xfb,0xd8,0x5a,0xec,0x24,0xd8,0xc0,0x54,0xf4,0x97,0x3e,0xca, +0xb9,0x61,0x9c,0xc1,0xef,0x35,0xf2,0xff,0x6a,0xa7,0x2e,0x27, +0x36,0x98,0x09,0x2b,0x70,0xa3,0x38,0xc9,0x5c,0x98,0x84,0x9e, +0x37,0xc1,0x53,0x98,0xdd,0x27,0xce,0x86,0x8d,0xc2,0x16,0x46, +0xbc,0xf7,0x0f,0x39,0xdc,0x1d,0xf0,0x20,0xac,0xd1,0x6c,0x0f, +0x9f,0xe3,0x52,0xaa,0x93,0x62,0x43,0x6d,0x63,0x97,0xe0,0x45, +0x0a,0x0b,0x0a,0x8a,0xf3,0x4a,0x39,0xd1,0xa6,0xed,0x94,0xf0, +0x4d,0x37,0x1e,0x03,0x1e,0xfc,0x3b,0xd1,0x1f,0x26,0x7c,0xfe, +0xf2,0x05,0xc4,0x76,0x63,0x28,0x9b,0x5d,0x9d,0x75,0x25,0xa9, +0xca,0x2c,0x95,0x8f,0xf2,0xd8,0x63,0x1b,0xe2,0xca,0xa1,0x0e, +0x93,0x5d,0x9b,0x51,0x97,0x5a,0x67,0x9a,0xce,0x3b,0xe3,0x38, +0xca,0xb5,0x17,0xaf,0xe1,0x32,0x7e,0x22,0x0e,0x8f,0x4d,0x9f, +0x5a,0x77,0x3b,0x78,0xf3,0xdd,0x96,0xbd,0x9a,0xcd,0x3a,0x9c, +0xb0,0x90,0x52,0x7d,0x1b,0xe0,0x98,0x73,0xf1,0x52,0x76,0x61, +0xdc,0xa6,0x98,0x48,0x70,0xea,0x4a,0x6a,0x7f,0xa5,0xda,0x8c, +0x96,0x66,0x30,0x59,0x2a,0x32,0xe9,0x63,0x3d,0x4f,0xaa,0xcd, +0xf8,0x73,0x5d,0x73,0xef,0xd9,0xcf,0xb5,0x19,0xbf,0xd5,0x85, +0xd5,0x6a,0x42,0xf4,0x50,0x59,0xca,0x0c,0x78,0x25,0x85,0xd1, +0xdb,0xe0,0x04,0x16,0x6d,0xd0,0x94,0xd0,0x16,0xda,0x20,0xcf, +0x2a,0xcb,0xcf,0x0a,0x79,0x04,0x7a,0x8d,0xb1,0x17,0xad,0x4c, +0xc1,0x4a,0xac,0xba,0x26,0x54,0x81,0xcb,0x00,0xab,0x58,0x01, +0x09,0xe4,0xd2,0xea,0xdb,0x7a,0xef,0x75,0x4b,0x3a,0xf8,0x85, +0xb7,0x8d,0x1f,0x84,0xdd,0xe5,0x28,0x41,0xd0,0x36,0xd7,0xc2, +0x2f,0xb6,0x48,0x4b,0xb4,0x63,0xef,0xdf,0x7b,0x91,0xfe,0x96, +0x2b,0x16,0x4d,0x08,0xe8,0xf4,0xa0,0x0e,0x8c,0x01,0xb6,0x1b, +0x6b,0x2c,0x61,0x24,0x55,0x64,0x33,0x19,0x98,0x61,0x0f,0xb3, +0x3d,0xda,0x30,0xc6,0x28,0x36,0xd1,0x84,0xc2,0xb1,0x34,0x58, +0x57,0x0c,0xa3,0xcb,0x4e,0xf6,0xf0,0x16,0x87,0x8d,0x23,0x8c, +0x22,0xb9,0x37,0x77,0x48,0x56,0xe7,0xa5,0xde,0xe4,0x4e,0xfb, +0x54,0x3e,0xd2,0xec,0xb0,0xcd,0x7e,0x07,0x0e,0x0b,0x40,0x9d, +0x14,0x58,0x17,0x6a,0xa5,0x5a,0xb6,0x53,0xb6,0xd6,0x1b,0xf8, +0x5d,0x68,0x1b,0x35,0xc8,0xee,0x72,0x75,0x82,0x5e,0x03,0xe0, +0x05,0x3f,0xe3,0xaa,0x7e,0x70,0x17,0x67,0xf5,0x08,0x4a,0xad, +0x8a,0x5c,0x7b,0xf8,0x47,0x26,0x4e,0x46,0xf7,0x7e,0x58,0xc5, +0xf6,0xb9,0x10,0x67,0x70,0xbd,0xc2,0xc2,0xf6,0xa9,0xce,0x10, +0x78,0x85,0x15,0x67,0xe3,0x97,0xa4,0x11,0x5d,0x5d,0x58,0xe1, +0xb7,0xa9,0x8d,0x18,0xe0,0xc2,0x7e,0x85,0xf7,0xc9,0x1b,0xfc, +0x02,0xc6,0x1b,0xc2,0x6e,0xcf,0xec,0x66,0x7e,0x6d,0xea,0xb6, +0x74,0xcb,0xec,0xc6,0xcc,0xc6,0xe2,0x9a,0x62,0xb7,0x72,0xde, +0x37,0xd0,0xc1,0xcf,0x7c,0xb7,0x6d,0x81,0x67,0x99,0x6f,0x2d, +0x07,0xff,0x69,0x51,0x44,0x33,0xe7,0x1a,0x4e,0xb7,0xf5,0xa9, +0xca,0xfd,0x5a,0x14,0xf9,0x0c,0x16,0x1e,0x35,0xfc,0x6a,0x9e, +0xfa,0x15,0xf7,0xce,0x5b,0x85,0xd7,0x92,0xff,0x50,0xa1,0x28, +0x60,0x23,0x83,0xe4,0x68,0xbc,0x2d,0xcc,0xba,0x08,0xb3,0x53, +0x61,0x64,0xaa,0xca,0xf1,0x16,0xa3,0x98,0xad,0x31,0xba,0xb1, +0x2a,0xb0,0x96,0x15,0x7c,0x61,0x09,0x11,0xdf,0x3b,0x09,0xef, +0x19,0xe5,0x9f,0xa9,0xb8,0x9b,0xc0,0xe8,0x0d,0xcc,0x4d,0x82, +0x2d,0x1c,0x85,0xa2,0xb8,0xe5,0x6f,0x9c,0x0b,0x57,0xd0,0xb0, +0xae,0x8f,0xc7,0xbb,0x60,0x31,0x13,0x16,0xc3,0x31,0x55,0x38, +0x69,0x80,0x27,0x59,0x3c,0xb6,0x12,0x17,0xe3,0x5d,0x94,0xa9, +0x2b,0x43,0xa3,0xfc,0x7b,0x62,0x89,0x0e,0x5a,0xc8,0xe3,0x64, +0xe4,0x6a,0x2c,0xf9,0x9a,0xb2,0xaa,0xda,0xca,0x66,0x4e,0x2c, +0xbf,0x2e,0x9f,0xc0,0xd6,0x3f,0xac,0xfc,0xb1,0xe0,0x77,0x2e, +0x19,0xbf,0x20,0xc6,0x42,0xfb,0x35,0x56,0x7c,0xad,0xd8,0x4c, +0xe4,0xe3,0xae,0x2b,0xc6,0x31,0xca,0xaf,0xe4,0x76,0x04,0x9e, +0x18,0x33,0x5a,0xc7,0xf4,0x0f,0xef,0x50,0xd7,0xad,0xd3,0xad, +0xda,0x56,0x12,0x60,0xc5,0xdf,0xf3,0x7b,0xea,0xf1,0xd8,0xd5, +0x16,0x97,0xcd,0xc6,0xe1,0xb8,0x72,0x5e,0x3d,0x05,0xfa,0xeb, +0xfe,0xa6,0x98,0x73,0x6c,0x2f,0xac,0x7e,0xec,0xf2,0xd0,0xf1, +0xa6,0x53,0x65,0x0f,0xaf,0xdb,0xac,0xd9,0xba,0xa1,0x99,0xcb, +0xb8,0x9f,0xf0,0xfc,0xb5,0xea,0x35,0xf8,0x9e,0xc2,0xba,0xaf, +0x8e,0xe3,0xa6,0x10,0x9c,0xa5,0x3e,0x7b,0xbf,0x73,0x10,0x8e, +0x51,0x43,0x9e,0x49,0x33,0x52,0x82,0x09,0x0c,0xcc,0x7e,0xd0, +0x02,0x5f,0xe6,0x69,0x14,0xc0,0xfc,0x38,0x30,0x05,0x0b,0xd5, +0x0f,0x8a,0x32,0x56,0xf9,0xd3,0x2c,0xf9,0x34,0x82,0xdf,0x3c, +0x84,0xaa,0x4e,0x71,0xea,0xbd,0x6d,0x7a,0xe2,0x44,0x2c,0x66, +0xd0,0x7f,0x3f,0x6e,0x35,0xc3,0x49,0xea,0xed,0xf6,0x57,0x41, +0x2d,0x1b,0x76,0x9c,0x05,0x5f,0x15,0xf9,0x7e,0x46,0xac,0x07, +0x63,0x82,0xd6,0x0f,0xc1,0x9a,0x81,0x58,0x6a,0xf8,0x8c,0x1f, +0x52,0x52,0x2e,0x6e,0x43,0x2f,0xf2,0x03,0x58,0xaf,0x61,0x21, +0xf6,0x07,0xb2,0x06,0x8d,0x7f,0x60,0x85,0xcd,0x6b,0x08,0x9a, +0xfd,0x00,0x66,0x8c,0xf8,0x23,0xfe,0x49,0x76,0x7f,0x1d,0x76, +0x6a,0xf7,0xd7,0x71,0x14,0x2a,0x4d,0x49,0x80,0x89,0x29,0x7f, +0xa7,0x1d,0x6f,0xe5,0xf5,0x23,0x75,0x8e,0x6a,0xc5,0x70,0xdf, +0x42,0xd0,0x15,0x0c,0xea,0x30,0x63,0xe1,0x31,0xce,0x27,0xe6, +0x79,0x07,0x6e,0xa9,0x83,0x07,0x53,0x9f,0x92,0x52,0xa6,0xd1, +0x2e,0x25,0xeb,0x37,0x46,0x17,0x36,0x30,0x2a,0x41,0xca,0x53, +0xff,0x7b,0xd2,0xc7,0xdc,0x47,0x79,0x07,0xae,0xf0,0x5b,0xc2, +0x56,0xec,0x5d,0x78,0x84,0xbb,0x6f,0xc6,0x46,0x48,0xc0,0xf8, +0x5e,0x1b,0xde,0xbb,0x6d,0xb6,0x0d,0xaf,0xda,0xc1,0xd5,0x0d, +0xe2,0x70,0x5b,0x79,0x53,0xbb,0x38,0x91,0x1a,0x35,0x03,0x61, +0x03,0x11,0x37,0x42,0x29,0x03,0x6a,0xc9,0x30,0x31,0x0b,0x86, +0x95,0x04,0x52,0x7d,0x46,0x27,0xcc,0xdd,0x8f,0x97,0xd5,0x92, +0x76,0x28,0xc1,0x68,0xe0,0xce,0x5d,0x84,0x91,0x1a,0x98,0x2f, +0x2e,0x32,0x11,0x16,0xe1,0x4d,0x71,0xa4,0xa9,0xbc,0x67,0x40, +0x9c,0x0c,0x37,0x85,0x8d,0x14,0x1d,0x4c,0x95,0xb7,0x10,0x3b, +0xf9,0x9a,0x1d,0x8a,0xe9,0x0e,0xf2,0xe9,0x46,0x8a,0x8d,0x76, +0xf2,0xfd,0x50,0xc6,0xe2,0x14,0x11,0xc9,0x33,0xd8,0x00,0xd6, +0xe2,0x18,0xb4,0x86,0x85,0x9a,0xe2,0x7f,0xd9,0x0a,0xff,0x45, +0xf5,0x40,0x8f,0x4d,0xb3,0x55,0xa2,0x6c,0xa9,0x35,0x33,0xad, +0x4d,0x03,0xd4,0xc0,0xab,0x9d,0x55,0x08,0xdd,0x74,0xf6,0xc6, +0xc3,0x8a,0x24,0xe0,0x2e,0x9d,0x6c,0xe2,0x6d,0x63,0x2d,0x62, +0xcd,0x8e,0x73,0xef,0x41,0xb3,0x55,0x9c,0x66,0x0f,0x6b,0x67, +0xb2,0x66,0x27,0x4c,0x4f,0x5a,0x9c,0xe4,0xe4,0x89,0x30,0x9a, +0x2c,0xc1,0xc4,0x77,0xac,0x38,0x12,0xbf,0x27,0xbd,0xfe,0xdd, +0x1e,0x1d,0x6e,0xb5,0x75,0xbc,0x4d,0xbd,0x59,0xad,0xac,0x98, +0x53,0xfe,0xb4,0x8d,0xda,0x04,0xdc,0x02,0x08,0x2b,0xba,0x70, +0xc5,0x77,0x26,0x1b,0xc4,0x8d,0xf4,0x03,0x97,0x5b,0xc1,0x72, +0x44,0xdc,0x6c,0xfd,0x1b,0x7e,0xba,0xda,0x2d,0xb7,0xec,0x56, +0x58,0xc2,0x29,0xd8,0xc9,0xc4,0x6a,0x3a,0x38,0xe3,0xe8,0xd0, +0x74,0xea,0x46,0xa6,0x14,0x3c,0xba,0x76,0x01,0x94,0x38,0x50, +0xc2,0x51,0x8c,0x73,0xf6,0x01,0x4a,0xe8,0xd6,0x33,0x95,0x29, +0x89,0x45,0x9f,0x09,0x9d,0x1e,0x6a,0xb0,0x21,0xd1,0xf1,0xb9, +0x1a,0xef,0xa0,0x95,0xc5,0x48,0x78,0x41,0x65,0xf6,0xad,0x40, +0xa7,0x8b,0xda,0x28,0xe9,0x1d,0xac,0xb0,0x11,0xa7,0x93,0xd5, +0xe2,0xc6,0x1f,0xa9,0xaa,0x0c,0x17,0xc2,0x28,0x51,0x52,0x38, +0x48,0x85,0xcb,0x9d,0x7d,0x51,0x6d,0x0d,0xf2,0xea,0x3d,0x9e, +0x3f,0x82,0x5a,0x2d,0x6c,0x3c,0x0d,0xdb,0x54,0x04,0x03,0x26, +0x03,0x2d,0xbf,0xc3,0xe9,0x14,0xd3,0x4d,0x68,0x68,0xe1,0x51, +0x05,0x46,0xeb,0xc0,0xf8,0x08,0xd8,0xc0,0x3d,0x03,0x0a,0xc6, +0xac,0xc4,0x87,0x60,0xc5,0x3e,0x11,0x67,0x91,0x3f,0x42,0x60, +0xaa,0xd5,0x4b,0xd7,0xc2,0x4e,0x5e,0xfb,0x32,0xce,0xea,0x9d, +0x9f,0xc7,0xc9,0xb0,0x88,0xc0,0x3c,0x57,0xd0,0x34,0x81,0x2f, +0x75,0x8a,0x3b,0x79,0x54,0xbe,0x89,0xd6,0x8f,0x51,0xa3,0x9a, +0x5a,0xed,0xdf,0x85,0x3d,0xe4,0x06,0x15,0xe8,0x12,0x54,0x1b, +0x84,0x05,0xcd,0xe2,0x7c,0x71,0x9c,0xb0,0xa8,0x99,0x85,0xaa, +0xdb,0xe4,0x5a,0xcf,0x95,0x5b,0xc5,0xdf,0x72,0x8d,0xe2,0x74, +0x1b,0x78,0xc6,0xee,0x36,0xdb,0x65,0x25,0x73,0xb4,0x6b,0xf0, +0x6a,0xf6,0xed,0x70,0x0c,0xe4,0xcb,0xac,0x6b,0xec,0xdb,0x9c, +0x9d,0x02,0x65,0x21,0x06,0x7b,0x0a,0x6d,0xf8,0x07,0xf9,0x83, +0xa5,0x1d,0x55,0xed,0x9e,0x83,0xde,0x4f,0x7d,0x8b,0xdb,0x79, +0xbd,0x62,0x59,0x89,0x53,0x19,0x27,0x46,0xc2,0x42,0x82,0x33, +0x06,0x61,0x06,0x43,0x89,0x93,0x36,0xb9,0x06,0x05,0xc6,0x2c, +0xaa,0xba,0x52,0x4e,0x39,0xe3,0x06,0xfb,0x48,0x31,0x9c,0xc0, +0x12,0xa1,0x71,0x15,0x7a,0xb2,0xa9,0x36,0x4a,0x60,0xca,0x34, +0x67,0xa5,0x36,0x69,0x08,0xca,0x8a,0x35,0xa2,0x0d,0x2b,0x7c, +0x84,0xa7,0x44,0x6c,0xbc,0x2b,0x34,0x32,0x62,0x23,0x2a,0x13, +0xa1,0x51,0x4f,0x6c,0x64,0x94,0x9f,0x0c,0x9d,0xf2,0x97,0xb2, +0x17,0x54,0x2a,0x9a,0x89,0xd3,0xfb,0x63,0xf0,0x0d,0x44,0xaa, +0x42,0xb0,0xb8,0x49,0x06,0xaa,0xf4,0x41,0x5e,0xa7,0xbc,0xbf, +0xf6,0x55,0xc7,0xe5,0xbb,0x2f,0x9a,0xc1,0xcc,0x9c,0x70,0x5c, +0xed,0x82,0xfc,0x92,0x99,0x2a,0x4d,0x2e,0x7f,0xc3,0xd8,0x36, +0x58,0x94,0x06,0x3b,0x54,0xe8,0xfd,0x13,0x7d,0xa8,0xb2,0x4f, +0xe9,0x74,0xd1,0xe9,0x92,0x12,0x55,0xf0,0x03,0x2d,0x9c,0xc1, +0x62,0xd2,0x59,0x8c,0xef,0xc5,0xb1,0xea,0x85,0xb2,0xbb,0x17, +0x2e,0x5c,0x2f,0x80,0x60,0xde,0x26,0x5f,0xe9,0x3f,0xc3,0x05, +0x3d,0x22,0x83,0xb7,0x3d,0x2c,0x76,0x0e,0xe5,0x4d,0xc8,0xea, +0x66,0xd1,0x72,0x54,0x17,0x66,0x59,0xb1,0xdd,0xe2,0x62,0xd2, +0x49,0xff,0x3a,0x0f,0x73,0xa4,0x42,0x6d,0xfe,0x9f,0x73,0x11, +0xac,0x1e,0xda,0x34,0xa8,0x11,0x3e,0x12,0xfb,0xc7,0x3b,0x9e, +0x58,0x75,0x3b,0x7a,0xf1,0xdd,0x56,0xfd,0x5a,0x2d,0xd4,0x7d, +0x95,0xdd,0x26,0x58,0x94,0x83,0x4b,0xeb,0x57,0xab,0x17,0x58, +0xdd,0x3d,0x73,0xfe,0x51,0x32,0x18,0xf3,0xf6,0x05,0x47,0x70, +0xa7,0x52,0xe0,0x9d,0x30,0xea,0x1d,0xcf,0xa8,0x82,0x9d,0x98, +0x6c,0x2e,0xd8,0xb2,0xe8,0xad,0x98,0x41,0xe0,0x15,0x18,0xf7, +0xa2,0x31,0xb8,0x99,0xa0,0x1b,0x9a,0x59,0x50,0x4f,0xf2,0x8a, +0xf5,0xd8,0xfa,0xff,0xd5,0xe5,0x29,0xcb,0x37,0x81,0x1a,0xf9, +0x1d,0xf6,0xc0,0x07,0xdc,0xf3,0x1a,0x32,0x3b,0x31,0xf3,0x2f, +0xf3,0x39,0x98,0x68,0x0d,0x89,0xcb,0x31,0x08,0x3f,0x40,0xd0, +0x02,0x6c,0xb4,0xa6,0x84,0x7d,0x79,0x1f,0x2c,0x87,0x82,0x4e, +0x56,0xe1,0x26,0x28,0x91,0x9a,0xdb,0x8d,0x1f,0x32,0x9e,0x71, +0x57,0x30,0xeb,0x3f,0xc3,0x07,0xe5,0x57,0x61,0x26,0x7b,0x68, +0xbb,0xeb,0x7c,0xa7,0xf5,0xdc,0x35,0x83,0x7a,0x6d,0x13,0x55, +0xf3,0xc3,0xa1,0xd6,0xea,0x1e,0x4c,0xc2,0x76,0xa5,0x16,0xe6, +0x4e,0x4d,0xd3,0x9b,0xef,0x3c,0x1e,0xcb,0x06,0x35,0x84,0x29, +0xc5,0x64,0x21,0xae,0xfb,0x8d,0x85,0x60,0xa9,0x2e,0xb9,0xe6, +0x42,0x16,0xf7,0x38,0x92,0x39,0xb8,0xee,0x2f,0x7a,0x67,0x0e, +0xf9,0x0b,0x34,0xe7,0x50,0x00,0xb2,0x9f,0x3a,0x37,0x34,0xfd, +0x19,0x56,0x41,0x2c,0xae,0x7a,0x01,0x23,0x60,0xfe,0xf3,0xce, +0x8d,0x4f,0x2d,0xb4,0x70,0x1d,0xfd,0xd0,0xb2,0x7e,0x8a,0xf3, +0x3f,0xae,0xc7,0x55,0x18,0x0b,0xab,0x56,0xa0,0x8d,0x15,0x75, +0xcf,0x2b,0x07,0x60,0x25,0xd5,0x8e,0x72,0xb9,0x1a,0x81,0x29, +0xcc,0xa9,0x59,0x27,0x57,0x1d,0xd3,0xf6,0xa8,0xf2,0x2c,0xdf, +0x55,0xec,0xe3,0xcc,0x37,0x7a,0xb5,0xba,0x36,0x3b,0x86,0xa1, +0xbe,0x0d,0x8e,0x9c,0x87,0x6c,0xa3,0x1d,0xff,0xa7,0x14,0x8b, +0xc2,0x95,0x80,0x76,0xb9,0x77,0xa9,0x77,0x91,0x4f,0x4d,0x0b, +0xbf,0xab,0x7e,0x67,0xa3,0x5b,0x7d,0xe2,0xeb,0xb8,0x8f,0xa7, +0x29,0xee,0x85,0x25,0xeb,0x19,0x34,0x8f,0x41,0x87,0x70,0x5c, +0xa6,0xbe,0x21,0x66,0xdf,0x41,0x43,0xb5,0x15,0x4c,0xba,0xa9, +0xd2,0x23,0xe6,0x8f,0x86,0x4a,0x18,0x97,0xa8,0x91,0x0e,0xda, +0x17,0xc1,0x01,0x8c,0x55,0x41,0x43,0x5c,0xca,0xa2,0xd6,0x2a, +0xb2,0x0c,0xd7,0xbd,0x61,0xdb,0xb0,0x8a,0xe0,0xf4,0xb9,0x30, +0x5d,0x8a,0xd0,0x9c,0x4e,0x60,0xfa,0x5f,0x38,0x9d,0x0e,0x75, +0x96,0xdc,0x91,0xe4,0xf8,0x64,0x7b,0x65,0x7a,0x74,0x66,0xf3, +0xe1,0xa5,0x07,0x8b,0xf6,0x17,0x71,0xa0,0xd5,0x86,0xf5,0x4c, +0x72,0x4e,0x62,0xce,0x85,0x1c,0xab,0x54,0xde,0x5f,0xc7,0x76, +0xdb,0x56,0x59,0xbd,0x07,0x5f,0x5d,0x5a,0x5e,0x59,0x54,0xc3, +0x09,0x6e,0x6d,0x44,0x0a,0x33,0xa2,0x3f,0x4c,0xe6,0xc3,0xf4, +0x3c,0xb7,0x59,0x99,0x37,0xf9,0xf1,0x05,0xc5,0xb9,0xe5,0x59, +0x15,0xdc,0x6b,0x46,0x7a,0x5a,0x96,0x47,0x7b,0x16,0x1f,0x5e, +0x76,0xb0,0xe8,0x00,0x7d,0x9a,0xac,0x8d,0xc1,0x59,0x78,0x8e, +0x88,0xa9,0xb8,0x73,0x68,0x27,0x75,0x3b,0xd3,0x26,0xe5,0xb9, +0x11,0xae,0x2b,0x6a,0x2c,0xd9,0xea,0xb5,0xc4,0x4a,0xb8,0xd9, +0xc5,0x1a,0xe3,0x6c,0x22,0x5a,0x62,0xcb,0xc0,0x2d,0x61,0x2a, +0x63,0x4a,0x41,0xdd,0x13,0x18,0x07,0x4f,0x18,0xe5,0xfb,0x74, +0xca,0x58,0xc1,0xd1,0x2e,0x56,0xfe,0xa5,0xe2,0x3e,0xb1,0x6f, +0xf3,0xec,0x09,0xbc,0xde,0x2a,0x6d,0x65,0xcd,0xb9,0x08,0x3a, +0x5c,0x1b,0x56,0x03,0x07,0xd7,0xba,0xc4,0xbf,0xac,0xda,0x14, +0x53,0xd8,0xfd,0xc7,0x0f,0x9c,0x3c,0x70,0x22,0x49,0xc6,0x3f, +0xba,0xf4,0x63,0xf6,0x9d,0x2c,0x0e,0x75,0xbb,0xe5,0xb3,0xe0, +0x20,0x1b,0x8b,0x33,0xf7,0xe3,0x58,0x9f,0xf9,0x3e,0xbf,0xec, +0x83,0x61,0xe1,0x30,0xde,0xfa,0x30,0x9f,0x81,0x33,0x4b,0x70, +0x4a,0x33,0x8e,0xf2,0x33,0xd8,0x29,0xb3,0x71,0x2e,0xb7,0xe7, +0x9b,0x1b,0xea,0x3a,0xcb,0x07,0x4b,0xcd,0xaa,0xac,0xaf,0x50, +0x10,0xf3,0x5a,0xbe,0x84,0x20,0x0f,0x6b,0x81,0x67,0xf0,0x22, +0x9d,0x3c,0x3d,0x58,0x27,0x63,0x85,0x3a,0x1d,0xa9,0x9c,0x21, +0xf5,0xb7,0xac,0x38,0x3e,0x96,0x4e,0xa8,0x70,0x3a,0xa1,0x64, +0x74,0x42,0x85,0x5b,0xb1,0xc2,0xf8,0x03,0xd4,0xa2,0x4b,0x41, +0x57,0x51,0x4e,0x91,0x8e,0x51,0x1c,0x3e,0x42,0x4b,0x3a,0xc3, +0xb6,0x41,0x3e,0x1e,0xc6,0x67,0x2c,0x18,0x7c,0x0e,0x1d,0x9e, +0x28,0x85,0x0e,0x43,0x8b,0xfc,0x0e,0x31,0x5f,0xb1,0x78,0xf1, +0x22,0xd3,0x0a,0x3a,0xe4,0xd7,0x3e,0xfc,0x3d,0xf0,0x3b,0x77, +0x1d,0x97,0x13,0x31,0x53,0x88,0x10,0x32,0xf1,0x1c,0x9b,0x56, +0x9e,0x52,0x91,0x54,0xce,0x41,0x7c,0x8f,0x78,0x5f,0x06,0xc9, +0xcc,0x11,0xff,0xc3,0x3e,0x07,0xbd,0x39,0x54,0xc2,0xa5,0xe4, +0x77,0x41,0x69,0x01,0x2b,0x96,0x3d,0x23,0xb6,0xcb,0x67,0x53, +0x9c,0x3d,0x42,0xaf,0x8a,0x3a,0x50,0xe6,0xa9,0x84,0x00,0x7a, +0xde,0x73,0xc2,0xc1,0xb9,0x64,0xae,0xa8,0xf4,0x9e,0x45,0xb5, +0xff,0x8d,0xac,0xf7,0x00,0xab,0xe2,0xda,0xda,0xc7,0x8d,0xca, +0xcc,0x44,0x23,0xd6,0x8d,0x03,0x26,0x80,0x15,0x7b,0xaf,0x08, +0xd8,0x45,0xa5,0xc3,0xa1,0x77,0x41,0xaa,0x80,0x80,0x22,0x16, +0x8a,0x28,0xd8,0x95,0xde,0x3b,0x22,0xbd,0x49,0x95,0xde,0x41, +0xb1,0xf7,0xae,0x89,0x26,0x6a,0x8c,0x49,0x4c,0x5b,0x73,0x5c, +0xc3,0xfd,0x7e,0x7b,0xf0,0xde,0xfb,0x7d,0xff,0xe7,0x1f,0x9f, +0x87,0x99,0xcc,0x99,0x73,0xce,0xcc,0x9e,0x55,0xde,0x77,0x9f, +0xb5,0xd7,0x8b,0xea,0xc4,0x98,0x12,0xd6,0x91,0x14,0x77,0x4c, +0x58,0x53,0x45,0x43,0xbe,0xe2,0x0b,0xea,0xa7,0xfc,0x75,0x20, +0xdc,0x8b,0x54,0x22,0x28,0x4c,0x15,0x15,0x18,0x9c,0x4c,0x1f, +0xcd,0x2f,0x95,0xf7,0xeb,0xaf,0xb6,0x3b,0xd7,0xf2,0x32,0xdb, +0x75,0x4e,0x4b,0x7d,0x38,0xe1,0xdb,0x87,0xe4,0x96,0xf7,0x3b, +0xcb,0x6b,0xf6,0xa5,0xad,0xfc,0x8e,0xfa,0x25,0x2d,0x5b,0xa5, +0x4c,0x63,0x2c,0xdf,0x4a,0xb0,0x95,0x49,0xa9,0x4f,0x6e,0x4c, +0x6a,0x32,0x4e,0xe6,0x3d,0x70,0x81,0x35,0x8e,0x31,0x98,0xc7, +0x51,0x32,0x33,0x16,0x26,0xc0,0xc2,0x4e,0x71,0x8f,0x54,0x27, +0x3b,0x01,0x15,0x07,0x8d,0xbb,0xaf,0xc3,0x3f,0x82,0x09,0x5b, +0xe4,0x5d,0x7f,0xed,0xd2,0xe3,0xd2,0x1f,0x94,0x2b,0x06,0xcd, +0xaf,0x42,0x2c,0x38,0xf4,0xa0,0x03,0x68,0x7f,0xd9,0x68,0x4a, +0x8a,0xc0,0x4a,0x34,0xbd,0xe1,0x04,0x13,0x98,0xc0,0xf6,0xa0, +0x9c,0xd8,0xe6,0xf8,0x37,0xaa,0xb6,0xcd,0xc0,0xd6,0xef,0x99, +0x0a,0xb7,0xfe,0x3b,0xd9,0xef,0xce,0xc0,0x54,0xe5,0x1e,0x06, +0x87,0x29,0x21,0x77,0x68,0xb9,0x85,0xb1,0x2a,0x65,0x0c,0x90, +0x82,0xb6,0xc4,0xff,0xa8,0x54,0x61,0xbc,0xf2,0x0e,0xda,0xb2, +0xd8,0x8a,0x94,0x13,0x50,0x3e,0x4d,0xaf,0x4d,0xf1,0xd1,0x5a, +0x32,0x70,0x5b,0xbe,0x73,0xcb,0xc0,0x67,0x76,0xf0,0x07,0x66, +0x60,0xf0,0x38,0x91,0x1b,0xc8,0x77,0x0e,0x1a,0xb0,0xd8,0x20, +0xec,0x22,0x81,0x7d,0xce,0x4f,0xbc,0xeb,0xad,0xf6,0xf1,0xc5, +0x8e,0xf5,0xab,0x73,0x8d,0x39,0xbc,0x40,0xa3,0xe0,0x87,0xc6, +0x1f,0x7a,0x1f,0xdd,0xf9,0xc9,0xe6,0x7b,0xd9,0x4d,0x8b,0x12, +0x7a,0xbb,0xcd,0x6b,0xda,0x56,0x34,0x7e,0xfc,0xed,0x19,0x7c, +0xd3,0x0b,0xaa,0xb2,0x0b,0xbc,0x21,0xaa,0xeb,0xe0,0xa8,0x39, +0xf3,0x16,0x37,0x2e,0xae,0xd6,0xbe,0xe0,0x63,0xc5,0x3f,0x0c, +0x7c,0xe5,0xf6,0xc2,0x79,0xb3,0x91,0x96,0xd5,0x62,0x67,0x0e, +0x8c,0xe1,0x03,0xf1,0xef,0x77,0xbe,0xe7,0xd5,0x68,0x11,0xc0, +0x97,0xda,0x35,0xac,0xbf,0x60,0x44,0x33,0x13,0x27,0xaf,0x21, +0xb8,0x93,0xc5,0xa2,0x10,0xb4,0xd2,0x95,0xd4,0x1c,0x6c,0x15, +0x1e,0xc0,0xea,0x14,0xf0,0x84,0x0a,0x15,0x98,0x27,0x4f,0xea, +0x62,0xd7,0x62,0x1a,0x81,0x79,0x46,0x14,0x1e,0x78,0x98,0x81, +0x87,0x18,0x84,0xcb,0xd9,0x24,0xea,0x1c,0x33,0x98,0xc6,0xf4, +0xf4,0xcb,0x6a,0x82,0xdf,0xeb,0x2e,0x76,0xd0,0x17,0x18,0x6a, +0x64,0x40,0x8d,0xec,0x7b,0xa9,0x09,0xe9,0x69,0xb8,0x02,0xa7, +0x59,0x3c,0x8f,0xe6,0x04,0xd4,0xc0,0x9c,0x26,0x68,0x88,0xc7, +0x99,0xe4,0xe0,0x2d,0xf7,0x1f,0xdd,0xae,0xd3,0xbb,0xaa,0xd4, +0x2b,0x5f,0x92,0xbe,0x99,0xc3,0xdd,0xd3,0x48,0x56,0x7b,0xda, +0xb5,0xf8,0x16,0x93,0x64,0x3e,0xc2,0xf4,0xe0,0x86,0x40,0x63, +0xed,0xf0,0xd5,0x47,0x75,0x8e,0xc7,0x51,0x8a,0x46,0xdd,0x46, +0x3b,0x0f,0x98,0xdc,0xc8,0x6e,0x7e,0xd7,0x51,0xa7,0xa3,0x76, +0xc7,0x38,0xfc,0x26,0x8f,0x84,0xb7,0x06,0x0d,0x04,0xd7,0x9a, +0x05,0xf3,0xd9,0x4e,0x59,0xfa,0x89,0xd2,0x04,0x61,0xa3,0x00, +0xc4,0xe2,0xc9,0x8e,0x47,0x66,0x1d,0x34,0x07,0xf4,0xc8,0xae, +0x68,0xb7,0xeb,0x70,0x8f,0xc0,0x9f,0x18,0xcb,0x15,0x7a,0x59, +0xf1,0x2a,0xce,0x26,0x18,0x2d,0x24,0x40,0x34,0x2b,0x5a,0xa2, +0x35,0x81,0x69,0x02,0x8f,0xd3,0x28,0x44,0x11,0xf5,0x09,0x92, +0x25,0x7d,0x52,0x84,0xaf,0x46,0x6b,0x43,0xea,0x10,0x34,0xc2, +0xef,0x92,0xcd,0x70,0x54,0xcd,0x35,0x7a,0x5f,0xd3,0xda,0x73, +0xee,0xc1,0xff,0x89,0xf0,0x07,0x99,0x84,0x2b,0x0a,0x52,0x31, +0x20,0xc9,0x6f,0xcd,0xbf,0x97,0xda,0xac,0x97,0xce,0x87,0x58, +0xec,0xd1,0xf4,0x35,0xe3,0xc4,0x6f,0x4c,0xe4,0xe3,0x7a,0x18, +0x91,0x2f,0x27,0x21,0x4d,0xbb,0xaf,0xef,0xab,0x34,0x0a,0xe2, +0xf3,0x5d,0x0b,0xf4,0x52,0x1c,0x38,0x9a,0x11,0x04,0x91,0x80, +0x09,0x13,0xb2,0xd1,0x6f,0xb1,0xb3,0x56,0xbb,0x1f,0xdf,0xf2, +0xa1,0xf0,0xef,0xe4,0x27,0x5c,0x8b,0xa8,0xce,0x26,0xb5,0xc7, +0x77,0x44,0x77,0x1a,0xc7,0xf1,0x07,0x71,0xfe,0x6e,0x1c,0xbb, +0x0a,0xbf,0x6b,0xdd,0xc5,0xd7,0xdd,0x29,0xb9,0x97,0xfb,0x90, +0xfb,0x1d,0x95,0x18,0xf4,0xda,0x84,0x33,0xd1,0x14,0x67,0xaa, +0x56,0x18,0x49,0xbe,0xfd,0x3d,0x4c,0x88,0x01,0x6d,0x7a,0x49, +0xf1,0xb8,0xee,0x3d,0x12,0xd0,0xc4,0x89,0xa5,0xfd,0x3c,0x5a, +0xc2,0xf4,0xb5,0x30,0x0b,0xbc,0x54,0xc4,0x2a,0xd1,0x93,0xfc, +0x05,0xbb,0xe5,0xdf,0x62,0xa1,0x24,0x48,0xe5,0x03,0x2b,0x09, +0x2e,0x11,0x4a,0x60,0xc9,0x90,0xea,0xf4,0x12,0x82,0xab,0xe9, +0x93,0x50,0xe9,0xa4,0xdc,0x72,0x3c,0x03,0xdf,0xc6,0x82,0x62, +0xd2,0x9f,0x99,0xbe,0x14,0xa4,0x18,0xbb,0x61,0xdc,0x31,0xbc, +0x7a,0x4a,0xea,0x91,0x34,0x16,0xb8,0xb3,0xe7,0xff,0x51,0x43, +0x45,0x71,0x92,0x0c,0x08,0xaa,0xe1,0x72,0x19,0x2c,0xc7,0xb9, +0x48,0xcc,0x85,0x49,0x14,0x33,0xce,0x33,0xf9,0x3c,0xb6,0x47, +0x5c,0x0d,0x93,0x84,0xe9,0x1d,0xa8,0x02,0x73,0x61,0x35,0x2b, +0x1e,0x01,0x0b,0xe9,0x44,0x73,0x50,0x63,0x05,0x27,0x1a,0x7d, +0xd0,0x91,0x7e,0x8d,0x23,0x23,0x3a,0xa1,0x05,0xa1,0x0f,0x7e, +0x2e,0x52,0x9c,0x9d,0xa0,0x44,0xcf,0x75,0xc4,0xb9,0x34,0x29, +0xf1,0x34,0xcf,0x43,0x1d,0xce,0x61,0xd3,0x2a,0x92,0x2a,0xe3, +0xab,0x0c,0x93,0xf8,0x88,0x9d,0x61,0xce,0x87,0x5d,0xb8,0x99, +0x83,0x35,0xbd,0x0f,0x20,0x1d,0x1e,0x60,0x3a,0x28,0x30,0xc2, +0x53,0x61,0x16,0x31,0x44,0x6d,0x8a,0xb7,0xb0,0x57,0xe8,0x00, +0xe5,0x41,0xed,0x7e,0x9a,0x5f,0xa7,0x8a,0xfe,0x8b,0x99,0x54, +0x63,0x85,0x07,0x4c,0x5d,0x66,0x46,0x8b,0x9a,0x90,0x4b,0xa1, +0xb5,0xa8,0xac,0x84,0x9b,0x29,0x5d,0xdd,0xcc,0x82,0xb3,0x48, +0x2f,0xda,0x19,0x5c,0x29,0x7a,0x54,0x94,0x7b,0x37,0x11,0x58, +0x03,0x56,0xdd,0x68,0x05,0xb3,0xc1,0xaa,0x8b,0x6e,0xe6,0x80, +0x7f,0x0f,0xba,0xb0,0xf9,0x8d,0xb9,0x1d,0xc9,0xd5,0xa6,0x69, +0xfc,0x61,0xbb,0x40,0x53,0x6f,0x0b,0x0e,0x57,0x30,0x79,0x8d, +0x99,0x4d,0xa9,0xcd,0xb2,0x0c,0x7e,0x27,0x8e,0xd5,0xc3,0xc9, +0x2b,0x66,0x55,0xd9,0xf0,0xb9,0x85,0xd9,0x45,0x19,0x05,0x9c, +0xf8,0xb1,0x77,0x40,0xf0,0xa1,0x86,0xf4,0x17,0x20,0xf1,0x0a, +0xf1,0x0c,0xf1,0x08,0x93,0x54,0x18,0x26,0x74,0xe3,0x04,0xd0, +0x33,0x44,0x3d,0x9c,0x6a,0x4a,0xa1,0xe2,0x19,0xd6,0xea,0xa0, +0x65,0x88,0x4d,0x58,0x82,0x31,0x7f,0x39,0xa9,0x29,0xb9,0x29, +0x4d,0xfa,0x45,0x74,0x92,0x34,0x81,0xf0,0x97,0x54,0xd9,0xdc, +0xa8,0x46,0x91,0x69,0x55,0x4a,0x65,0x6a,0x65,0x1a,0x27,0xcd, +0x64,0x10,0x7a,0x2d,0x7a,0x74,0x10,0xe8,0xdb,0x9d,0x08,0xbd, +0x3c,0x3d,0x9c,0x2d,0x69,0xbb,0xae,0xa1,0x20,0x64,0x0d,0xe5, +0xc8,0x4a,0x02,0x47,0x3e,0xde,0xff,0xfd,0xd7,0x3b,0x1f,0x2c, +0xea,0xf8,0x2d,0x0b,0x96,0x2e,0x5c,0xb0,0x95,0xb3,0x7e,0x1d, +0xf0,0x2b,0x8c,0x56,0xf9,0x6d,0xfb,0x60,0x37,0x1a,0xb3,0x99, +0xfa,0x52,0x99,0xcf,0x17,0x85,0x1a,0xef,0x58,0xb6,0x10,0x6d, +0x41,0x19,0x59,0xd8,0x83,0xb3,0x2e,0x75,0xf3,0xa8,0xf6,0x7a, +0xea,0xf7,0x9b,0x7e,0xe5,0xc4,0x87,0x70,0x8c,0x18,0x42,0x2c, +0x1b,0x88,0x1b,0x36,0xe1,0x74,0xdc,0x81,0xd3,0x1a,0x69,0xfc, +0xb5,0x84,0x65,0x4f,0x60,0x45,0x1e,0xd8,0x70,0x6d,0xf4,0xbb, +0x74,0x85,0x41,0x02,0xdb,0x98,0xd0,0x8d,0x7b,0x16,0xed,0x5c, +0xdb,0xb6,0x87,0x6f,0xfe,0xa5,0xe0,0xaf,0xa4,0xa7,0x5c,0xb3, +0xf8,0x35,0x9b,0xd8,0x1e,0xd7,0x11,0xdd,0x65,0x12,0x4b,0x4d, +0x74,0xb5,0x37,0x4e,0x5a,0x8a,0x73,0x5b,0x5c,0xf8,0xa6,0xe7, +0xe5,0x2f,0xf3,0x7e,0xe0,0x7e,0xa0,0x9c,0x0c,0xbd,0xb7,0xd0, +0x4f,0xd5,0xff,0x62,0xa2,0x8b,0x41,0xf9,0x05,0x8c,0xfb,0x62, +0xa2,0x71,0xb8,0xee,0x27,0x9c,0x04,0x2b,0xbe,0x98,0xa8,0x09, +0x4c,0xd7,0x81,0x99,0x92,0x89,0x8e,0xc3,0xfd,0x24,0x3c,0xf9, +0xc8,0xd9,0xa1,0xc5,0x5b,0xc7,0xcf,0x26,0xdf,0x8c,0xbd,0x76, +0xf6,0x95,0xf2,0x9d,0x2b,0xad,0x3d,0x8d,0xb7,0x68,0x48,0x77, +0x31,0x72,0xb1,0xb1,0x77,0xe2,0xe0,0x92,0x21,0xb6,0xb3,0x98, +0xea,0x86,0x63,0x71,0x0e,0xea,0xaa,0x36,0xda,0xfd,0x0c,0x23, +0x2f,0xff,0x54,0xf0,0xb3,0xf2,0xd9,0xd8,0x73,0xa7,0xa2,0x23, +0x61,0x3c,0x4e,0xe3,0x1b,0x1b,0x14,0xf0,0x8d,0x90,0x43,0x4e, +0xe0,0x57,0xa1,0x0b,0x3d,0x34,0x3b,0x02,0xf8,0xaa,0x77,0x29, +0x7f,0x9c,0x81,0x61,0x43,0x2a,0x81,0x2b,0xc8,0x62,0xd0,0xb8, +0xd1,0x8e,0x31,0x40,0x98,0x97,0x71,0x4f,0x93,0xef,0xa5,0xed, +0x69,0xe1,0x71,0xca,0x6e,0xdc,0x72,0x08,0xed,0x4e,0x24,0x9b, +0xf3,0x4f,0xce,0x3e,0x3a,0x77,0x2f,0x86,0xa3,0xdf,0x70,0xc6, +0xe2,0x16,0x6a,0x2c,0x33,0x7f,0x8d,0x4b,0xb7,0x9a,0xc3,0x19, +0x24,0x98,0x66,0x26,0xbc,0xee,0xc2,0x6c,0x20,0x10,0xd3,0xb1, +0x0d,0x96,0xfe,0xc4,0x0e,0x5e,0x17,0x97,0x91,0xbb,0x60,0x2e, +0xcf,0xc3,0xf3,0x83,0x1f,0x58,0xb0,0x94,0x0f,0x27,0xd2,0x3a, +0x3a,0x50,0x65,0x28,0xd4,0xa3,0x51,0x44,0x03,0x15,0x41,0x83, +0x85,0x1d,0x94,0xfd,0x81,0x06,0xb5,0x40,0x0d,0x76,0x50,0xf3, +0x23,0x01,0x55,0xdc,0x86,0xaa,0x8c,0x10,0x52,0x20,0x75,0xa7, +0x52,0x84,0xa5,0xd2,0x19,0x4b,0x09,0x85,0x63,0xf4,0xff,0xe9, +0x19,0x0f,0xa4,0x33,0x9c,0xe8,0x19,0x8a,0xb0,0x57,0xfe,0x88, +0xe0,0x3b,0xdc,0x6c,0x0a,0x9a,0x6c,0x30,0x8e,0xd8,0x8e,0x23, +0x16,0x69,0x54,0x5a,0xf0,0xaf,0x3f,0x5e,0x7e,0x1b,0x2f,0x15, +0x8d,0xaf,0xed,0x15,0x88,0x34,0xa9,0x77,0x2e,0x4a,0xf5,0x4f, +0xd4,0xae,0xae,0x9b,0x06,0x6b,0x8f,0x25,0x46,0x48,0x4d,0x10, +0x8e,0x44,0x28,0x44,0x7e,0x80,0xf9,0xdd,0x38,0x1f,0xde,0x31, +0xf2,0x11,0xe2,0x52,0xe2,0xc6,0x78,0x1d,0x8f,0x2f,0x56,0x83, +0x6c,0xdc,0xfc,0x97,0xc9,0x34,0x54,0x30,0x83,0x91,0xec,0x51, +0x54,0xb1,0x5b,0xb7,0x54,0xbf,0xc2,0x9c,0x87,0x61,0x8f,0x5b, +0xdf,0xc6,0xc2,0x12,0x0e,0x46,0x63,0x20,0x63,0x90,0xbe,0xaf, +0x5f,0xb5,0x81,0xb9,0x9c,0x9a,0xda,0xa4,0x46,0xe1,0x96,0x65, +0xa6,0x82,0x58,0xe1,0x40,0x0a,0x07,0x8a,0x5f,0x65,0xdd,0xb7, +0xcc,0xe6,0x0f,0x6c,0xf0,0x5b,0xeb,0xa7,0xcf,0xa1,0xea,0x59, +0xb2,0xff,0xb6,0xdf,0xd3,0x80,0x01,0x9b,0x00,0xfe,0x82,0x5e, +0x81,0x76,0xe6,0x66,0x4e,0x28,0x44,0x7e,0xa8,0xe9,0x96,0x31, +0x50,0x32,0xda,0x0f,0x79,0x10,0xd4,0x8b,0x41,0x52,0x07,0x2e, +0x88,0x15,0x2a,0x49,0xb2,0xad,0xd4,0x24,0xb5,0x2e,0x2b,0xb3, +0x56,0x0d,0xce,0x8a,0xd3,0x2c,0xe1,0x1d,0xba,0xb1,0x70,0x47, +0x49,0x3a,0x4e,0xfe,0x7b,0x7c,0x8e,0x25,0x7c,0xa4,0xc7,0xc5, +0x26,0x98,0x41,0x74,0x73,0x0c,0xd3,0x0d,0x92,0x0e,0x38,0xf0, +0x03,0x87,0x06,0x0e,0x5d,0xdd,0xcf,0x09,0xfe,0x97,0x87,0x8e, +0xe9,0x4b,0xc7,0xae,0x1f,0xba,0x2a,0x1d,0x13,0xe7,0x64,0x90, +0x65,0xae,0x73,0xfc,0x67,0xec,0xcb,0xb2,0xe2,0xdf,0xe5,0xfc, +0x5d,0xf4,0xbc,0x8a,0x13,0x64,0x4d,0x64,0xe9,0xd0,0xb1,0x4c, +0x2b,0xfe,0xfd,0x97,0x63,0x83,0x7b,0x31,0x92,0xc8,0xbf,0xef, +0x12,0x67,0x5c,0x35,0xd0,0x17,0x27,0x32,0x82,0x29,0x3e,0x24, +0xad,0xec,0x99,0x93,0xcf,0x73,0x1a,0x33,0x0b,0x73,0x95,0xe3, +0x62,0x62,0x4e,0x27,0x1c,0x87,0x0d,0xeb,0xf9,0xe2,0x26,0x9c, +0x37,0x70,0x38,0xe6,0xe8,0x99,0x88,0x08,0xe5,0xc3,0x87,0x8e, +0x9d,0x55,0x48,0xc9,0x8a,0xcf,0xae,0x57,0x49,0x33,0xdc,0xcf, +0x1a,0x78,0xee,0x43,0x65,0x4f,0xd5,0x8c,0x5d,0x0a,0x96,0x4c, +0x66,0x15,0xaa,0xb6,0x85,0xc4,0x44,0x9c,0xa6,0xa7,0x85,0x1c, +0xa6,0xa7,0xa5,0xe5,0xc4,0x67,0xd7,0xaa,0xa4,0xd3,0xd3,0xf4, +0x9c,0x82,0x90,0xb8,0xab,0xe6,0x9a,0x3f,0xcf,0x6d,0xc9,0x2d, +0xce,0x53,0x8e,0x8d,0x89,0x3d,0x9d,0x10,0x05,0xab,0xf5,0xf8, +0x33,0x67,0x15,0xac,0xc4,0xd9,0xa6,0xc2,0x6c,0xfc,0xfa,0x0a, +0x7c,0x2d,0xac,0xec,0xa6,0xd1,0x2f,0x4b,0x7e,0x98,0xfc,0x68, +0xb0,0x44,0x9c,0x6f,0xfa,0x79,0x02,0xa5,0x3a,0xa1,0x83,0x8a, +0xe4,0x56,0x59,0x7f,0x55,0x6f,0xb3,0x53,0x35,0x6f,0x66,0xab, +0xef,0xb2,0xd9,0xd3,0xa9,0xce,0xab,0x79,0x4f,0x17,0x47,0xd9, +0x96,0x32,0xa8,0xb5,0x21,0x7d,0x2c,0x83,0x0c,0x7e,0x8b,0x6a, +0x96,0xa0,0x46,0xa9,0xe8,0x01,0x66,0xc5,0x06,0x1c,0x67,0x84, +0x6b,0x9c,0xf3,0x64,0xfc,0xb3,0x9c,0xfb,0x17,0xaf,0x95,0x70, +0x38,0x95,0x75,0x8e,0x74,0x8a,0xb4,0x8f,0x92,0x56,0x35,0x6c, +0xc9,0x81,0x39,0x17,0x61,0x7c,0xe9,0xb1,0x0e,0x7e,0x6d,0xf0, +0xf2,0x83,0xf3,0x0e,0x73,0x34,0xa0,0xf4,0x94,0x37,0x4b,0x8a, +0xf2,0x09,0xcc,0x4d,0x5c,0x43,0xd3,0xdc,0x38,0xd8,0xa7,0x5d, +0xd8,0xce,0xcf,0x2c,0x5f,0x5b,0xab,0xdf,0xc2,0x5d,0x12,0x58, +0x22,0x9e,0x79,0x25,0x9c,0xf9,0x42,0x97,0xcf,0xbc,0xa0,0x8f, +0xf0,0xba,0x60,0x45,0x9e,0x16,0xbc,0xa8,0xb8,0xd3,0x90,0x1a, +0x9c,0x1a,0x9c,0xbc,0x4f,0xc7,0x04,0x47,0x1a,0xe3,0x48,0x37, +0xa9,0x8b,0xd8,0xf0,0x6a,0x60,0x7b,0x9f,0xf4,0x27,0x06,0xc6, +0xef,0x89,0xf5,0x5d,0xa0,0x85,0xa3,0x77,0xe0,0xb7,0xf6,0xf9, +0x34,0x5d,0x4f,0xba,0x0c,0xdf,0x5c,0xfd,0xfe,0x1e,0x77,0x6e, +0xdf,0x99,0xbd,0x81,0x2a,0x6b,0xf6,0xee,0x36,0x52,0xd5,0x60, +0x52,0x2c,0x69,0x00,0x7c,0x5d,0xd5,0xf5,0x77,0xf5,0xf1,0xca, +0xc8,0x72,0xb5,0x93,0xb1,0x31,0xe7,0x62,0x23,0x41,0x86,0xa6, +0x7c,0x6d,0x1d,0xda,0x81,0xcd,0x91,0x84,0xb0,0xd3,0xe1,0xe1, +0xca,0x87,0x0e,0x46,0x9d,0x3a,0x9e,0x1e,0x99,0x1e,0x95,0xa6, +0x7c,0xbf,0xfa,0xd7,0xdb,0x6d,0x6d,0x8e,0xb5,0xbc,0xad,0xe5, +0x12,0x83,0x6d,0xee,0x41,0x75,0x01,0x95,0x01,0xc5,0x17,0xb3, +0xf2,0xb2,0xb3,0x73,0x39,0xa8,0xee,0x44,0x27,0x26,0xbf,0x28, +0xbf,0x36,0xa3,0xd2,0x30,0x8b,0x3f,0xec,0xea,0x67,0xed,0xe9, +0xc2,0x89,0x13,0x65,0x50,0xc1,0x18,0xcb,0x70,0x98,0x25,0x4e, +0x72,0xe5,0x20,0x1a,0xf6,0x91,0x03,0x55,0x7b,0xab,0x02,0x0b, +0x4d,0x82,0xf8,0x1c,0xbf,0xfc,0x5d,0x52,0x23,0x2d,0x7d,0x1c, +0xf6,0xff,0x03,0x09,0x60,0x2f,0x5e,0xa5,0xc8,0x79,0x29,0x65, +0x31,0x12,0xcb,0xdb,0x6e,0x0c,0xa3,0x70,0x2f,0xbb,0xc0,0xd7, +0x72,0x9e,0xc4,0xf2,0x5e,0xd5,0xd6,0x75,0x9e,0xbd,0x37,0x84, +0x01,0x9e,0x6d,0x86,0x15,0x53,0x84,0xb3,0x12,0x06,0x50,0xfc, +0xac,0x2e,0x68,0x12,0x77,0xc6,0xfb,0x44,0x1c,0x75,0xb2,0x1c, +0xd4,0xf9,0xcb,0x74,0x9a,0xba,0xec,0x6f,0xc9,0xc5,0x1c,0x74, +0x56,0x48,0x2e,0xf6,0xc7,0xe3,0x16,0xea,0x61,0x4b,0xa5,0xc9, +0x8a,0x7d,0x8c,0x61,0xda,0xbe,0x3e,0xd5,0x7a,0xe6,0x72,0xca, +0x17,0x0f,0xb3,0xca,0x50,0x18,0xf4,0x82,0x35,0x14,0x46,0x4e, +0x1d,0x34,0xe9,0xba,0x0e,0xfd,0xf2,0xb1,0x53,0x29,0x1c,0x55, +0xee,0x10,0xd7,0x98,0x4b,0x1a,0x2f,0x13,0x08,0x4c,0x68,0xc2, +0x09,0xec,0x9f,0x78,0x85,0x4c,0xc7,0xd8,0x27,0x6c,0x91,0xaf, +0x42,0xe7,0xbd,0xf4,0x5f,0x60,0xa2,0x4a,0x4a,0x13,0x1a,0xb0, +0x76,0x59,0x01,0x75,0xaa,0xb8,0x14,0x8e,0x12,0x8d,0xb0,0xe5, +0x4e,0x14,0x63,0xa6,0x77,0xb2,0xb0,0x11,0x5d,0x48,0xe0,0xb1, +0xb8,0x42,0x35,0xd0,0xe9,0xa2,0xe9,0x0d,0x6a,0x9a,0x25,0xcf, +0xb4,0x36,0x06,0x6b,0xcc,0xeb,0xa3,0x9e,0xe9,0xd7,0x8b,0x7e, +0xd4,0x33,0xc5,0x5f,0x31,0x8e,0x40,0x2c,0xb2,0x18,0x4b,0xb3, +0xe3,0xa9,0x46,0xa9,0x4d,0xde,0xba,0x4e,0x5c,0x47,0x53,0xb3, +0x4e,0x27,0xea,0xd0,0x8c,0x64,0xd1,0x83,0x3b,0xd8,0x0b,0xcd, +0xd9,0x6d,0x49,0xb5,0xb2,0x14,0x9a,0x1d,0xf7,0x99,0xfa,0xd2, +0xec,0xa8,0xc6,0xe4,0x36,0xa5,0x37,0xa6,0xb6,0x9a,0xa7,0xf1, +0xee,0xc8,0x1a,0x22,0xaf,0x3d,0xaf,0xd2,0x8e,0xcf,0xba,0x98, +0x71,0x21,0xf5,0x02,0x27,0x7e,0xea,0x19,0x10,0x56,0xf7,0xb0, +0x83,0x56,0xf2,0x20,0x92,0xa4,0xdd,0x61,0xfc,0x66,0x6b,0x51, +0x3b,0xbf,0xe6,0x8a,0xf5,0x95,0xa0,0xab,0xdc,0x66,0x26,0x70, +0x9d,0xf5,0xda,0x19,0x9b,0x8a,0x65,0xfc,0xef,0x77,0xaf,0xfc, +0x90,0xfa,0x23,0x07,0x4d,0x38,0x20,0xe5,0xbe,0x65,0x34,0xf7, +0x89,0x3a,0x52,0x3b,0xf9,0xe9,0x5d,0x38,0x1d,0x46,0x7d,0xec, +0xc4,0x73,0xb2,0xf7,0x38,0x0a,0x97,0x99,0xd1,0xd7,0xfa,0x18, +0xd3,0x23,0xa6,0x47,0xcd,0x86,0x5a,0x63,0x29,0xa5,0xc3,0xd4, +0xc2,0x0f,0x85,0x27,0xbb,0x86,0x96,0xe9,0x58,0x1e,0xe1,0x20, +0x0b,0x7c,0x09,0xbd,0xe6,0x65,0x14,0x4e,0xe0,0x47,0x0a,0xee, +0xd2,0x3b,0x53,0x7a,0x13,0x3a,0x6d,0x93,0xf8,0x23,0x46,0x5f, +0xda,0x80,0x45,0xd1,0x70,0x72,0xe1,0x4b,0x1b,0xb0,0x74,0x3e, +0xb4,0x67,0xcf,0xcb,0xc0,0x0e,0x4e,0x78,0xba,0x9c,0xe0,0x5a, +0x5c,0x06,0x6b,0x59,0xc5,0xcf,0x96,0x34,0x3f,0xac,0x81,0x39, +0x3d,0xed,0x18,0x46,0x79,0xee,0xe3,0xf8,0x07,0x49,0x37,0x52, +0xfd,0x68,0x7e,0x18,0xef,0x83,0xeb,0x0f,0xe2,0xf6,0x13,0xc9, +0x16,0xfc,0xdd,0xb3,0x77,0xcf,0xdd,0x8e,0x95,0xf2,0xc3,0x61, +0x8b,0xab,0x38,0x67,0x8d,0xf9,0x73,0x5c,0xae,0x6f,0x01,0x87, +0x51,0x09,0x4f,0x9b,0x0b,0xed,0x1d,0x78,0x0e,0x94,0x20,0xac, +0xdd,0x04,0x96,0x3f,0x67,0x07,0x73,0x04,0x3b,0x12,0xb4,0xce, +0x55,0x7b,0xe9,0xc6,0x62,0x0b,0xfe,0x87,0x3b,0x2d,0x3f,0xa4, +0xbc,0x96,0xfa,0x6a,0xad,0x6c,0xd8,0xfe,0x42,0xab,0xa4,0x8d, +0x5f,0x7f,0xc7,0xe9,0xf6,0xfe,0x3b,0x5c,0x88,0xe8,0x45,0xe0, +0x9b,0x0e,0x69,0x59,0xc8,0xab,0x76,0xf4,0xb5,0x78,0x4c,0x6f, +0x77,0x8a,0x39,0x4c,0xc1,0xab,0x8c,0xcd,0x11,0xeb,0x08,0xbb, +0x63,0x89,0xd4,0xbb,0x86,0x65,0xc0,0x84,0xc2,0x67,0xf9,0x5f, +0xfa,0x65,0x85,0x3b,0x1e,0xe1,0x84,0x39,0x42,0x32,0xa1,0x69, +0x50,0x01,0xe6,0xb0,0xb0,0x1e,0xe7,0x48,0xa3,0x37,0x46,0x42, +0x0e,0xdb,0xcc,0xa5,0x59,0x10,0x05,0x58,0x2e,0x1d,0x5e,0x4e, +0x60,0x39,0x3d,0xbc,0x9c,0x1d,0x4c,0x7c,0x46,0x72,0xcd,0x72, +0x34,0x13,0x8d,0x9b,0x53,0xf8,0xf0,0xbe,0xc0,0x57,0x7b,0x69, +0x2c,0x71,0xc3,0x6d,0x24,0xb9,0x33,0xb1,0x2f,0xae,0xd3,0x3e, +0x81,0x3f,0x6a,0x14,0x61,0x16,0x6a,0xc5,0x29,0x0a,0x49,0xc2, +0x1a,0x52,0x90,0x9f,0x9b,0x9f,0x45,0x31,0xce,0xa6,0x76,0xd0, +0x87,0x00,0x1c,0x8f,0x0c,0x9b,0x64,0xa3,0xf0,0x1b,0x53,0x9b, +0x9a,0x51,0xab,0x26,0xc8,0x30,0x87,0xcd,0x28,0x4a,0x2b,0x4d, +0xbb,0xc4,0x41,0x52,0x3b,0x1e,0x65,0xe2,0xf3,0xe3,0x0b,0xe2, +0x8a,0x65,0x89,0x7c,0x84,0x57,0x84,0x77,0xf8,0x6e,0x0e,0x17, +0x59,0x80,0x0a,0xe3,0xbe,0xda,0x66,0xe3,0xa6,0xad,0x1c,0xc6, +0x15,0x93,0xca,0x3b,0xf5,0xf4,0x16,0xa4,0x66,0x5a,0xb1,0x5f, +0x9a,0x69,0x11,0x36,0x64,0x9b,0xd3,0x74,0xc7,0xe5,0xdc,0x8d, +0x2d,0x75,0xda,0xdb,0x55,0x8c,0x43,0xf7,0x58,0xab,0xda,0x48, +0xcd,0xb4,0x3a,0x98,0x1b,0x97,0x1a,0x7f,0x79,0xe5,0xf4,0xc4, +0xe8,0xaa,0x1a,0x14,0xc3,0x28,0xe2,0xd5,0xef,0x78,0xcd,0xb9, +0xcd,0xd9,0x9b,0xaf,0xb5,0xa8,0x35,0xac,0xdc,0xce,0xc1,0x26, +0xca,0xfd,0xdf,0x43,0xc0,0x02,0x16,0x2d,0xc4,0x2d,0x04,0xd5, +0x1d,0x1e,0x03,0x51,0x03,0x77,0x9c,0x6b,0xfe,0x23,0x2e,0x61, +0x71,0xbc,0xaf,0xa5,0x86,0xb9,0xea,0x45,0xe3,0x5f,0xdb,0xf3, +0xbb,0xce,0xbd,0xa5,0x6e,0x3a,0xfb,0x7c,0x8b,0x0e,0x2c,0x9e, +0x02,0x0d,0x4c,0x62,0x8f,0x02,0x3e,0x17,0x08,0x81,0x80,0xf9, +0x18,0x40,0x6d,0xfd,0xbd,0xbc,0x96,0x50,0xa0,0x62,0x06,0xba, +0x46,0xa8,0x8b,0xdb,0x60,0xba,0x19,0xda,0x08,0xb5,0x60,0xc3, +0x0e,0x5a,0x8b,0x1c,0x79,0xd9,0xb5,0x0a,0xce,0xbc,0xeb,0xc6, +0xb3,0xa6,0xbf,0xe0,0x99,0xa5,0x66,0x6f,0xf0,0x0a,0xe3,0x19, +0xea,0x19,0xea,0x11,0x9e,0x6a,0xcc,0xbf,0x2b,0xf9,0xfe,0xd2, +0xc3,0x86,0xe3,0x1d,0xbc,0xd7,0x41,0x0f,0x69,0x69,0x9f,0xfc, +0x98,0x30,0x82,0x0c,0x8e,0x33,0x83,0x16,0x26,0xcc,0xf3,0xb0, +0xdb,0x41,0x2f,0xa9,0xf4,0x7d,0x43,0x8f,0xf0,0x35,0x30,0xf8, +0x67,0x17,0xfc,0x09,0xec,0x97,0xcd,0x58,0xec,0x5c,0xc9,0xa4, +0x9b,0x29,0xdc,0x61,0x6a,0xd2,0x52,0xab,0xd5,0x00,0xb1,0x91, +0x4d,0x2f,0x4d,0xa9,0x48,0x2c,0xe7,0xa0,0x84,0x51,0x14,0xde, +0x08,0xab,0x49,0x4e,0x7e,0x46,0x41,0x5a,0x21,0x27,0xea,0xb6, +0xd1,0xb1,0x5f,0x8f,0x64,0x11,0x9b,0x68,0xa3,0xf0,0x84,0xa9, +0x49,0xce,0xa8,0x56,0x13,0xec,0x30,0x88,0x4d,0x29,0x4a,0x29, +0x4b,0xa1,0x43,0x1f,0xd0,0x82,0x2e,0x4c,0xdc,0xc5,0xd8,0xc2, +0xd8,0x52,0xeb,0x78,0xfe,0x98,0xe7,0x51,0xaf,0x08,0x3a,0xf4, +0x13,0xac,0x61,0x38,0xe3,0xb3,0x72,0xe7,0x7a,0xe3,0xed,0x1c, +0xaa,0xbf,0x27,0x3b,0xe1,0x04,0x5e,0xc2,0x13,0x0e,0x38,0xbf, +0x49,0x0c,0xea,0xa2,0x5c,0x4f,0x13,0x27,0x2d,0x64,0x92,0x2d, +0x15,0x1e,0x31,0xf5,0xa9,0xa9,0xf4,0x69,0xae,0xb8,0x2c,0xf5, +0x19,0x73,0x26,0x3e,0x57,0x76,0xde,0x74,0xe9,0x70,0xf4,0xe6, +0xab,0x2d,0xaa,0xf5,0xca,0xb6,0x71,0xe8,0x05,0x1b,0x88,0x29, +0x7e,0x83,0xdf,0x19,0x82,0x05,0x0b,0xc3,0xa6,0x93,0x7b,0x4b, +0x36,0x32,0xf2,0xaf,0x90,0xb2,0xdd,0xf5,0x1f,0x61,0x3d,0x33, +0x98,0xbc,0x9b,0x40,0xfa,0x56,0x4c,0x67,0xe4,0x63,0xc5,0x8d, +0x04,0x95,0xdd,0x1e,0xc3,0x64,0x35,0xb0,0x47,0x5e,0xf6,0x80, +0xe2,0x56,0x54,0xdc,0x6b,0xb5,0xd8,0x42,0x35,0xcf,0xe0,0x6d, +0x47,0x76,0xc7,0xb9,0x9f,0x94,0x63,0x98,0xb9,0xe7,0xeb,0xb5, +0x61,0xd6,0x14,0xd8,0xcb,0x24,0x76,0x2b,0x60,0x8e,0xa0,0x44, +0x60,0xfd,0x5c,0x5c,0xcf,0x88,0x4d,0x67,0xc9,0x1b,0xd0,0x5c, +0xca,0xa2,0xa6,0x0d,0x25,0x30,0x4b,0x50,0x93,0x3e,0x9c,0x2b, +0xf2,0x7e,0x32,0x0b,0xdb,0x40,0xd1,0x10,0x15,0xb1,0xe2,0x77, +0x43,0x5c,0x20,0x8f,0x01,0xfa,0xd0,0x11,0xf5,0x88,0x81,0x96, +0xa8,0x84,0x5a,0x7d,0xc0,0xc8,0x7d,0x91,0xe9,0x03,0x2d,0x71, +0x16,0x43,0x61,0x92,0x2d,0x91,0x2b,0x76,0x0e,0x2a,0x32,0x34, +0x98,0x58,0x12,0x0c,0xc2,0x4d,0x43,0xf2,0xb7,0x0b,0x98,0xa6, +0xdc,0x1c,0x1a,0x64,0xdd,0x85,0x49,0x9d,0x83,0x3f,0xc9,0x58, +0xe1,0xe1,0x4a,0xf2,0xdc,0xe6,0x9e,0xe9,0x6d,0xfd,0x4b,0xb5, +0xfc,0xe6,0x01,0xdd,0x8e,0xd5,0x2d,0x9c,0xb8,0xe8,0x14,0xb1, +0x36,0x30,0xb6,0x9c,0x6e,0x51,0xe9,0xc0,0xff,0xd9,0x79,0xbd, +0xb7,0xf5,0x3a,0x85,0x8b,0x8c,0x7c,0x07,0x81,0xc9,0x46,0x5a, +0xd8,0xfe,0xde,0x68,0x01,0x56,0x3e,0x31,0xc4,0xc9,0xac,0x30, +0x6f,0x3f,0x31,0xd8,0x21,0xaa,0x99,0xcb,0xa1,0x43,0x5c,0xc8, +0xe0,0x33,0xcc,0x25,0xc2,0x5f,0xa0,0x2d,0xfe,0xc5,0xf4,0x59, +0x12,0xe1,0xf0,0x0e,0xf1,0x30,0x83,0xcb,0xc4,0x5d,0xe4,0x0a, +0x5c,0x95,0xaf,0xc7,0x33,0xb8,0x9c,0x49,0xb5,0x52,0x80,0xe9, +0x94,0x12,0xa7,0xd6,0xab,0x41,0xe3,0x60,0x33,0x0b,0xba,0x33, +0x09,0x06,0xf6,0xb4,0x08,0xe3,0x60,0x83,0x24,0x01,0x31,0x86, +0xdc,0x82,0x07,0x5b,0xa5,0x5f,0xc0,0xe8,0x43,0x78,0x02,0x13, +0x2b,0xe1,0xbb,0x24,0xd0,0xe0,0xae,0xf7,0xe3,0x5d,0x26,0xbd, +0x25,0xb9,0x2d,0xbe,0xcd,0x34,0x9e,0x0f,0x40,0xde,0x05,0x27, +0xad,0xc2,0xe1,0xb3,0x3f,0xf2,0x21,0xc9,0x51,0x27,0xc2,0xe9, +0x7f,0xfc,0xf1,0x06,0x70,0x69,0x47,0x17,0xd0,0x35,0xa6,0xe6, +0x1b,0x60,0x01,0x36,0x8c,0x9b,0x6c,0xb9,0xe9,0x3a,0x97,0x42, +0x0b,0xfe,0x5d,0xdb,0x9b,0xab,0x31,0x8f,0xb8,0x58,0x34,0x66, +0x76,0xc7,0x86,0x79,0x1d,0x74,0x0f,0xde,0xa5,0x2c,0x69,0x47, +0x33,0x4c,0xb0,0x67,0x90,0xd7,0x3e,0xef,0x4e,0xff,0x8e,0x3d, +0x2d,0x7b,0xac,0x5c,0xf5,0x7c,0xd6,0x06,0xe4,0x59,0xf0,0x6f, +0x0b,0x1e,0x54,0xf5,0xb6,0x34,0xfb,0x36,0xfa,0xd6,0xf9,0x26, +0xa4,0xf1,0x79,0x4e,0x9f,0xee,0x3e,0x7e,0xd8,0xf7,0x44,0xb9, +0x4d,0xfb,0xc6,0xba,0x1f,0x36,0x96,0xf7,0xf2,0xcb,0xee,0x6f, +0xbf,0x67,0xf3,0x90,0xc3,0x6e,0x4a,0x5c,0x0f,0xb8,0xf9,0xd8, +0x78,0x7b,0x35,0x7a,0xf2,0x25,0x65,0x25,0xad,0x59,0xd5,0x1c, +0x36,0xcf,0x27,0x07,0xaa,0xdd,0x9b,0xfd,0x8a,0x6d,0x7d,0xf8, +0x42,0xaf,0x32,0xbb,0xf4,0x5d,0x9c,0xd0,0x2f,0xce,0x21,0xa6, +0xff,0x50,0xf6,0x1f,0x02,0x4a,0x1c,0x38,0x30,0xe1,0x38,0xc1, +0x17,0xbf,0x36,0xc0,0x61,0x1c,0x1d,0x94,0x74,0xb2,0x2b,0xdf, +0x39,0xdf,0x31,0xbf,0xb6,0xa9,0xa8,0x33,0xe3,0x1a,0xf7,0xb6, +0x1d,0xab,0x98,0xd4,0xe2,0xe4,0x92,0x84,0x02,0xae,0x02,0xa6, +0x30,0x31,0x67,0xcf,0x45,0x47,0x49,0x35,0x8f,0xc3,0xd3,0x73, +0x0b,0x9d,0xca,0xaa,0x8b,0x1b,0xf3,0x5b,0x95,0xd3,0xf1,0xeb, +0x32,0x1c,0xde,0x3b,0xcd,0x6a,0xd3,0x56,0xdd,0x25,0x3b,0xb8, +0x39,0x70,0x8a,0x1c,0x34,0x0f,0xb0,0x77,0xdb,0xe5,0x92,0xe3, +0x9c,0xe5,0x92,0x91,0x96,0x97,0x76,0x31,0x45,0xaa,0xd3,0xb9, +0x28,0x38,0x90,0x28,0x98,0x02,0x93,0xba,0x29,0xd3,0x30,0x31, +0x42,0x13,0x5c,0x61,0x0a,0xf3,0x98,0x10,0x9c,0xe0,0x48,0xe9, +0xe8,0x08,0x54,0xad,0xb5,0xe1,0x5f,0x03,0x53,0x0e,0xc3,0x62, +0x7f,0x97,0xda,0x90,0xf4,0x09,0xd1,0x4c,0xec,0x90,0x2e,0xd5, +0xaf,0xb8,0xbc,0xba,0x66,0x1e,0xcc,0x8f,0x48,0x3d,0x7a,0x36, +0x34,0x4c,0x19,0x9c,0xc4,0xb5,0x44,0x6e,0x28,0x58,0xf6,0x88, +0xf1,0xff,0x1a,0xde,0x3f,0x20,0xb8,0xf4,0xb0,0xe2,0xa8,0x5a, +0xd2,0x77,0xab,0xf7,0xfb,0xb6,0x8f,0x4d,0xdb,0xeb,0x75,0x2b, +0x0d,0x1a,0xeb,0x79,0xa7,0x9b,0x36,0x0f,0x2c,0xee,0xd6,0xbc, +0x2a,0x7b,0x97,0xf7,0x8b,0x79,0x26,0xbf,0x7f,0x85,0xaf,0xa6, +0xe7,0x7a,0xab,0x1b,0x96,0x57,0x6d,0x9a,0x1d,0x1d,0xf9,0x0e, +0xb3,0xee,0xad,0x1d,0x9b,0xcc,0xa7,0x1b,0x2c,0x33,0xd0,0x95, +0xa4,0x48,0xcf,0x90,0xd5,0x3b,0x92,0x73,0xad,0xd5,0xc0,0x1b, +0x26,0xb0,0x17,0x3c,0x73,0xb3,0x73,0xf2,0xb2,0xf2,0x95,0x29, +0x4a,0x57,0x60,0x43,0x7c,0x03,0xf6,0x3a,0x07,0x96,0x38,0xf2, +0x5d,0x65,0xa5,0xe5,0xe9,0xad,0x1c,0xa5,0x0c,0x0b,0xad,0x71, +0xd8,0x32,0xe6,0x6c,0xea,0x99,0xb4,0x0c,0x95,0x97,0x96,0x6b, +0xd8,0xe0,0x53,0x07,0x4f,0x1e,0x56,0xd5,0x81,0x61,0xb6,0x4c, +0x72,0x46,0x72,0x66,0x62,0x16,0x07,0x22,0xb3,0xf1,0xe8,0xaa, +0x63,0x3b,0x55,0xbd,0x23,0xc3,0x42,0x3c,0xa6,0x6c,0x66,0xe2, +0x2c,0x15,0x9e,0x32,0xad,0xf9,0xf9,0x2d,0x09,0x6a,0x89,0x6d, +0xf1,0x1f,0x4e,0x81,0x22,0x27,0xaa,0x30,0x31,0x29,0x31,0xa9, +0xd1,0xa9,0x25,0x81,0x7c,0x61,0x69,0x4e,0x71,0x62,0x15,0x07, +0xd3,0x61,0x8e,0xf5,0xf4,0x55,0xcc,0x99,0xf8,0xd3,0x09,0x09, +0x2a,0xbf,0x5a,0xce,0x66,0x8f,0x9c,0x3a,0x72,0x2a,0x42,0x75, +0xdd,0x9f,0x1e,0x4c,0x4a,0x46,0x52,0x66,0x12,0xfd,0xe4,0xef, +0x19,0xed,0xa8,0xd5,0xc7,0x9c,0x54,0xfd,0xa2,0xc2,0xc3,0xbd, +0xa6,0x6c,0x93,0x3e,0xf9,0x3e,0xd3,0x72,0xf1,0x62,0x73,0x82, +0x5a,0x7c,0x53,0xcc,0xaf,0xa7,0x60,0x2c,0x87,0xff,0xc3,0xc4, +0x65,0xc4,0x65,0xc6,0x64,0x59,0xa4,0xf0,0xfb,0xd7,0x99,0x2f, +0xde,0x64,0x5e,0x6e,0xcf,0xe7,0xe6,0xe4,0xe4,0x64,0xe6,0x71, +0x48,0x80,0x65,0x23,0xf6,0x86,0xec,0xdf,0xbf,0x7f,0x67,0x0a, +0x1f,0x62,0xe8,0xb4,0xd9,0xda,0x9a,0x4b,0xc7,0x99,0xb0,0x10, +0xe6,0x74,0xa2,0x06,0x7c,0x0b,0x4a,0x1d,0xa8,0x04,0xc4,0x98, +0x52,0xab,0x79,0xe6,0x30,0x8f,0x82,0xd9,0xf5,0x32,0x58,0x2f, +0x2a,0xb1,0x4e,0x95,0xfb,0x9b,0xbb,0x54,0x60,0xb1,0x09,0x2e, +0x60,0x67,0x86,0x18,0xea,0xe8,0xa9,0x66,0x9b,0xf4,0x34,0x96, +0x35,0xc6,0xfe,0x44,0xa3,0xf9,0xca,0xd8,0x4f,0x4b,0x20,0x74, +0x8a,0x10,0xc1,0xc4,0x76,0x2b,0x28,0xc2,0x6a,0x61,0x2d,0xa9, +0xba,0x70,0xa1,0x28,0x99,0xde,0x13,0x03,0x0b,0x1d,0xf0,0x2b, +0x23,0xe6,0x4c,0xc2,0x99,0xc4,0x44,0x95,0x5f,0x6c,0x97,0xb2, +0x21,0xa7,0x42,0x4e,0x86,0xa9,0x9a,0xfd,0xe9,0xc9,0xa4,0x67, +0xa5,0x64,0x27,0x51,0xa0,0x18,0xcd,0x4c,0x3f,0xb1,0x3e,0xd2, +0x5e,0xd5,0x39,0xf2,0x48,0xa8,0x2b,0x1d,0xae,0x24,0x5b,0x7a, +0x53,0x5d,0xf9,0x05,0x57,0xe2,0xd4,0xe2,0xaf,0x9e,0xbb,0x0f, +0x73,0x55,0xb0,0x9c,0x89,0xcd,0x88,0xc9,0x88,0xce,0xb4,0x4d, +0xe4,0xf7,0x6f,0x74,0xd9,0x6e,0xe6,0x70,0xc1,0x9a,0x4f,0x4d, +0x4a,0x49,0x4e,0x4e,0xe5,0x50,0xe5,0x47,0x36,0xd8,0x6d,0x97, +0xff,0xe6,0xc0,0x6c,0x5b,0xbe,0x24,0xa9,0x20,0x25,0x37,0xd5, +0x67,0xa9,0x83,0x9d,0xa9,0x6b,0xae,0x25,0x9f,0x92,0x90,0x9c, +0x90,0x9c,0xc4,0xe1,0xd2,0xb7,0x6c,0xb0,0xf3,0x4e,0xdf,0x0d, +0x7b,0xb3,0xed,0xf8,0xb7,0x25,0x6d,0x0d,0xd9,0x03,0xd2,0x95, +0xad,0x75,0x40,0x45,0xa3,0x7f,0x0f,0x37,0x70,0x76,0xea,0xf4, +0xd2,0xc2,0x4e,0x85,0xa9,0x9a,0x00,0x63,0xcf,0x50,0x23,0xc8, +0xcd,0x28,0xe0,0xe0,0x14,0x83,0x63,0x8e,0x2f,0x8b,0x74,0x54, +0x75,0x3e,0x16,0x12,0xe6,0x36,0x65,0x83,0xa4,0xe0,0x7e,0x8f, +0xe9,0x2d,0x2c,0xee,0x8f,0x57,0x8b,0xef,0x8e,0x7e,0x05,0x1b, +0x54,0xf0,0x82,0x34,0xe0,0x59,0xb1,0xd9,0x9c,0x30,0x80,0x83, +0x12,0x52,0x9b,0xdb,0x89,0x73,0x29,0xea,0x19,0xda,0xcc,0x81, +0xf5,0x3d,0xb8,0x92,0xcd,0x6b,0xca,0x6a,0x4f,0xac,0x33,0x4f, +0xe6,0x43,0xed,0x83,0x4c,0xf6,0x50,0xa4,0x36,0x9a,0xc9,0x6a, +0x4a,0x6b,0x4a,0x69,0x35,0x4f,0xe5,0x77,0x23,0x6b,0x86,0xdf, +0x6d,0x9d,0x5b,0xe5,0xc0,0xa7,0xe6,0xa6,0xe4,0x50,0x0b,0x12, +0xbf,0xef,0x1a,0x10,0xc6,0x50,0xd3,0x1e,0x23,0xac,0x93,0x40, +0x84,0xba,0x04,0x22,0xd4,0xa5,0xee,0x06,0x73,0xe9,0xfe,0x5c, +0x56,0x36,0x92,0xe2,0x23,0x75,0x09,0x1f,0xc1,0x93,0x2f,0x02, +0x89,0x61,0xbb,0xc3,0x39,0x38,0xf4,0x47,0xf7,0x0c,0x30,0x34, +0x42,0x43,0x9c,0x64,0x0a,0x93,0x30,0x9a,0xb5,0x3b,0x34,0xb4, +0x82,0xdb,0x58,0x5a,0xc1,0x9d,0x5c,0x97,0x2a,0xa9,0x4d,0x7e, +0xcd,0xa6,0x19,0x2a,0x7c,0x60,0x9a,0xd2,0x25,0x81,0xa9,0x0e, +0xb6,0x2c,0xb9,0x34,0xb9,0x34,0x95,0x13,0xc4,0x37,0x04,0x8f, +0xc1,0x78,0x70,0x80,0xd3,0x62,0x25,0x86,0x32,0x58,0x19,0x8c, +0x3b,0x56,0xa2,0x86,0x6a,0xf3,0xce,0x9b,0xf0,0x75,0x29,0xcc, +0x4c,0x04,0x5b,0x65,0xf0,0x47,0x1e,0x65,0xf8,0xb4,0xaf,0x05, +0xde,0x58,0xf7,0xc1,0x53,0x74,0x02,0x1e,0x8e,0x31,0x1a,0x02, +0xcd,0x3e,0x6a,0xe2,0x72,0x50,0x63,0x4f,0xe2,0x1d,0x72,0xa6, +0xfa,0x4c,0x4d,0xbd,0x0a,0xec,0xc6,0xf1,0x0c,0xf2,0xe2,0x42, +0x02,0x3a,0xf0,0x06,0x75,0x28,0xa1,0xe2,0x04,0x77,0x12,0x96, +0x12,0x11,0x1d,0x1a,0x7a,0x38,0x84,0x8f,0x84,0x49,0xb0,0xbd, +0x1f,0xb7,0x83,0xa1,0x3e,0xbd,0x5e,0x2b,0x43,0xd0,0x63,0x0e, +0xe0,0x18,0x6b,0x9c,0x4c,0x6d,0x6e,0x76,0xbd,0x2d,0x0f,0x23, +0x41,0xb1,0x01,0x46,0xc6,0xc3,0x57,0x34,0x20,0xb4,0x5f,0x15, +0x4e,0x4b,0xfa,0x0b,0xe7,0x69,0x04,0x52,0xc2,0xe5,0x0d,0xf5, +0x0a,0xf0,0x27,0x85,0x5a,0xab,0x34,0xf0,0x6b,0x4d,0xfc,0xce, +0xa4,0xc4,0x90,0x87,0xe9,0xfd,0x30,0xe1,0xdd,0x0f,0x7f,0x72, +0xfe,0xe8,0x47,0x96,0xcf,0xc4,0xc9,0x73,0x71,0x86,0x41,0xa9, +0x01,0x0f,0x0b,0xee,0xc0,0x94,0xbf,0x7e,0xfa,0x9b,0x3b,0x84, +0x07,0x09,0x0e,0xa7,0xa8,0x69,0x29,0x8e,0x46,0xcb,0xcd,0xe5, +0xfa,0x3c,0x58,0xdf,0x07,0x2d,0x7a,0x15,0x2c,0x4c,0xa1,0x21, +0x2a,0x49,0x70,0x24,0x91,0xf4,0x76,0xbe,0xe9,0xa2,0xa0,0xcf, +0xc8,0x04,0x8d,0x70,0xba,0x19,0xc5,0x4b,0xa1,0x38,0x7e,0x27, +0xaa,0x4b,0x02,0x6d,0xb6,0xfc,0xa3,0xff,0xaa,0x5a,0x7d,0xd1, +0xcd,0xfb,0xa2,0xcf,0xb6,0x44,0xd2,0x67,0x9b,0x73,0x34,0xed, +0xe8,0xe9,0xb0,0x23,0xca,0xb0,0x00,0x5e,0x49,0xa2,0xd3,0x8e, +0x20,0xb2,0xc6,0x92,0xe8,0xf4,0xcf,0x9f,0xe0,0x67,0x06,0x7f, +0x96,0x44,0xa7,0x7f,0x56,0xc7,0x9f,0x99,0x55,0xe2,0x35,0x49, +0x55,0x5a,0x7d,0x48,0x55,0x3a,0x91,0x11,0x6c,0x25,0x55,0x69, +0xf5,0x7f,0x04,0x75,0x46,0x54,0x97,0xf4,0xd6,0xd5,0x91,0xee, +0x30,0x52,0x87,0x94,0x07,0xc4,0x50,0x0b,0x8b,0x9e,0xd0,0x3f, +0x51,0x66,0x10,0xa5,0xd3,0xff,0x08,0x8a,0xa4,0x3f,0x89,0x5d, +0x98,0xc8,0xe0,0xc1,0x25,0x64,0xa5,0xa8,0x2c,0x2d,0xeb,0x18, +0x2e,0x0f,0xc0,0xe1,0xd2,0x4a,0x8f,0x39,0xaf,0x58,0x48,0x13, +0x67,0x10,0xb0,0x12,0xef,0x88,0x25,0xfd,0x92,0x32,0x4f,0x3f, +0xa4,0x88,0x37,0x1e,0xb3,0x82,0x55,0x3b,0x11,0xad,0x7e,0x14, +0xac,0x98,0x6e,0x71,0x34,0x11,0x63,0x7e,0x17,0x62,0x28,0xac, +0x71,0x6a,0x20,0x9e,0x2d,0x1e,0x4d,0x9e,0x0d,0xd5,0x4f,0xf3, +0x5f,0x27,0xbe,0xe5,0xaa,0x29,0x65,0x95,0xfd,0xc3,0x46,0x38, +0x1f,0xb2,0xdd,0xef,0xdc,0x16,0xcc,0x67,0x5f,0xce,0xba,0x16, +0xd7,0x44,0xd1,0xe1,0xaa,0xdf,0xcc,0x34,0x70,0x31,0x16,0xb0, +0xb8,0xf8,0x38,0xea,0x58,0xe3,0x3c,0xd5,0xb6,0x5d,0x2d,0xb0, +0x28,0x1e,0xe6,0x9c,0x01,0x03,0x65,0x08,0x66,0x22,0x76,0x1c, +0xd8,0xee,0xab,0xe7,0xd2,0xea,0xda,0xb4,0xab,0x81,0x42,0x95, +0x7a,0x8b,0x7a,0x59,0xbd,0xb1,0xd3,0x7a,0x93,0xad,0xeb,0x4d, +0xa9,0x49,0xdf,0xe9,0xee,0xbd,0xde,0x70,0xbf,0xc0,0xb5,0xd0, +0xb9,0xc8,0x81,0xfb,0x43,0x3e,0x96,0x88,0x99,0x82,0xb2,0x90, +0x89,0x36,0x6c,0x5a,0x79,0x62,0x45,0x42,0x19,0x07,0x56,0x9d, +0xa2,0xbd,0x0c,0x1c,0x99,0x23,0x5e,0x61,0x1e,0x87,0xdc,0x38, +0x71,0x36,0x2e,0x22,0x73,0x40,0xf6,0x91,0x81,0x67,0x68,0x4a, +0x7e,0x87,0xa2,0x59,0xac,0xd5,0xc8,0x19,0x58,0xf4,0x07,0x8b, +0x0b,0x47,0x42,0x11,0xcd,0x17,0x45,0x0c,0xe8,0x22,0x43,0xda, +0x3d,0x6f,0x59,0x34,0xd9,0x54,0xd6,0xf1,0xb6,0x8d,0xdb,0x9b, +0x2d,0xca,0x39,0xbc,0x81,0x9b,0xc9,0xbd,0x4b,0xdd,0x4d,0x4d, +0x1d,0x0e,0x65,0xbc,0xb3,0xb5,0x89,0x83,0xae,0x97,0xd4,0x68, +0x54,0x78,0x40,0x1a,0x33,0xd3,0xea,0xd4,0xc0,0xda,0x00,0x1d, +0xa8,0x29,0xa6,0x9a,0x2b,0xc8,0x47,0x67,0x90,0xb5,0x8f,0xd7, +0x5d,0x5b,0x72,0xd5,0xc9,0x85,0x7f,0xaf,0x7b,0x5f,0xff,0xb1, +0x16,0x27,0x22,0x9c,0x26,0x66,0x5a,0x9b,0xf5,0xa7,0xee,0xa0, +0xa4,0xe9,0xf7,0xde,0x1f,0x9e,0x77,0x3d,0xe3,0x84,0xee,0x41, +0x65,0xd2,0x8c,0x7d,0x2f,0xa1,0x6f,0xe8,0xef,0x9b,0x16,0xbc, +0xc4,0xe6,0x14,0x65,0x95,0xa6,0x97,0x9a,0xa4,0xf2,0xc1,0xae, +0x41,0xbb,0xfc,0x3c,0x29,0x63,0x65,0x60,0x6a,0x0b,0x8c,0x1c, +0x78,0xfd,0xc4,0xb9,0x8a,0x47,0x55,0x9c,0x80,0x56,0x5a,0x78, +0xc7,0x3c,0xc3,0x8c,0x6f,0x8c,0xab,0x8f,0xaf,0x4b,0xe0,0x44, +0xe7,0x2b,0x7d,0x72,0xdd,0x56,0xfc,0xf3,0x27,0x16,0xdf,0xc1, +0x0e,0xf2,0x12,0x4a,0x56,0xb1,0x58,0x82,0xca,0x5f,0xf6,0x6c, +0x46,0x2e,0xc6,0x12,0x49,0x2f,0xf4,0x03,0xdc,0x23,0x85,0x97, +0x73,0x6a,0xb2,0x9b,0x9c,0xf3,0xf9,0x03,0x8e,0x07,0x76,0x05, +0xee,0x0c,0x28,0xe1,0x23,0xe3,0x8e,0x9c,0x0f,0x0f,0x3f,0x72, +0x84,0x3f,0x9e,0xc2,0x34,0x5c,0xbd,0xfc,0x53,0xee,0x8f,0x5c, +0x03,0x72,0xb0,0xd0,0x04,0x17,0xa2,0x92,0x19,0x1c,0x63,0xbd, +0x71,0xec,0x52,0x9c,0x46,0xa9,0xc7,0x98,0x12,0x2b,0xbe,0xa3, +0xb1,0xae,0xbe,0xa4,0x96,0x13,0x35,0x7a,0x85,0x35,0x6c,0xec, +0xd9,0x33,0x92,0xd7,0x28,0xe0,0xec,0x9a,0x1a,0x05,0xe1,0x32, +0x58,0x11,0x0a,0x4e,0x26,0xc0,0x7a,0xea,0xe7,0xbe,0x92,0x9f, +0xd7,0xfb,0xa2,0xee,0x4c,0x54,0x57,0xad,0x73,0x78,0x05,0x5c, +0x1d,0xa8,0xa7,0x80,0x8b,0x32,0x98,0xa2,0x0a,0xae,0xc1,0x27, +0x3d,0x2d,0x50,0x69,0xdd,0x03,0x4f,0x70,0x0b,0xa8,0x80,0x0b, +0x33,0x5f,0xe0,0x28,0xb4,0xc7,0x7f,0x40,0x9d,0x3d,0x81,0x77, +0xc9,0xd9,0xea,0x33,0xb5,0xd4,0xcf,0xf5,0x71,0x02,0xa3,0x2e, +0xb9,0xf9,0x3a,0xa8,0xc4,0x75,0xf4,0x16,0x2a,0xe5,0x9e,0xc4, +0xee,0x92,0xec,0x92,0xac,0xc8,0xcb,0x9a,0xef,0xf1,0xa2,0x36, +0xe6,0xc2,0xc9,0x4d,0x50,0x46,0xac,0x8a,0x9c,0x8b,0xdc,0x4b, +0x1a,0x8a,0x2f,0x55,0x96,0x54,0xba,0x54,0xf0,0x3e,0xee,0x4e, +0xae,0x3b,0x7d,0x82,0xb2,0x0f,0xe4,0x1c,0xce,0x6d,0x28,0xad, +0xbe,0x54,0x54,0xe9,0x52,0xc6,0x07,0x78,0xb9,0xb9,0xb9,0xf8, +0x1e,0x28,0x0f,0xa9,0x88,0xa8,0x32,0x0f,0xe3,0x2f,0xa2,0xf2, +0x6b,0x54,0x01,0x1b,0xa9,0x6f,0xff,0x24,0x08,0x27,0xe5,0xfb, +0x1a,0xbc,0x4a,0x7c,0xdc,0x3c,0xec,0xdd,0x65,0x5e,0x45,0x76, +0x3c,0xcc,0xfe,0xe9,0x23,0x8c,0x2c,0x87,0x6f,0xa8,0x99,0x7a, +0x59,0x52,0x24,0x1a,0xe2,0x1c,0xe0,0xec,0xee,0xe4,0x5d,0x68, +0x57,0xb6,0x2b,0x87,0xd3,0xc6,0x03,0xc4,0xa1,0xca,0xb0,0xc1, +0xac,0xc4,0xd3,0x9a,0xef,0xf0,0xea,0x71,0xa6,0x17,0x02,0x27, +0x6f,0x10,0xb8,0xda,0x46,0x79,0xdc,0x12,0xa4,0x90,0xcf,0x57, +0x88,0x00,0x5f,0x56,0xdc,0x86,0x5a,0x92,0x1c,0xd4,0x58,0x49, +0x0e,0x4a,0x17,0x3b,0xc9,0x83,0xbf,0x7b,0x41,0xb9,0xec,0x6f, +0xb3,0x5c,0xde,0x0d,0x47,0x58,0x22,0xb7,0x71,0x36,0x27,0x04, +0xdc,0x26,0x47,0x2a,0xf6,0xb7,0x05,0x97,0x5a,0xed,0xe5,0xd3, +0xbd,0xb2,0xac,0x12,0x3d,0x38,0x38,0x03,0x53,0x49,0x98,0x5d, +0x80,0xa9,0x9f,0x2d,0x4d,0xe8,0xe6,0xf2,0x69,0x1d,0x68,0xc3, +0xe4,0x56,0xe7,0xb4,0x25,0x4b,0x92,0xf6,0x8f,0x05,0x0d,0xb2, +0x3b,0xc4,0x2b,0xd4,0x2b,0x8c,0x83,0xc3,0xef,0xba,0x17,0x82, +0xa1,0x31,0x8d,0x74,0xe3,0x4d,0x61,0x3c,0xc6,0xb0,0xf6,0x87, +0xec,0x42,0x1d,0xa5,0x35,0x39,0x35,0x09,0x75,0xc9,0xb5,0x29, +0xd2,0x0c,0x34,0xfb,0xa5,0xb7,0x46,0x63,0x5a,0x66,0xbd,0x14, +0x99,0x2b,0x92,0xcb,0xa5,0x35,0x39,0x7f,0xbf,0x95,0xda,0x3e, +0x7d,0xcf,0x34,0xa4,0x66,0x51,0x6e,0x22,0xc7,0x62,0x2b,0x08, +0xc4,0x5b,0xec,0x1b,0xb8,0x45,0x20,0x14,0x6f,0xcf,0x62,0xe8, +0xab,0x2f,0xe9,0xab,0xa9,0x34,0x9c,0x7f,0xc6,0x3a,0x96,0x72, +0x27,0x2d,0xe2,0x5e,0xb1,0xb3,0x74,0xd7,0x05,0x4f,0x77,0xbe, +0x2a,0xb0,0xda,0xab,0xdc,0x9d,0x83,0x8f,0x45,0xc4,0xb3,0xd2, +0xb5,0xc4,0xe5,0xe2,0x97,0x63,0x1e,0x65,0xee,0xdc,0x12,0x1a, +0x9e,0xae,0x16,0xdd,0xb9,0x7c,0xb9,0xce,0xeb,0x12,0xef,0xe8, +0xbc,0x63,0xe7,0x0e,0x3f,0x0e,0x67,0xff,0x46,0x1c,0x77,0xea, +0x3a,0xec,0xf0,0xb9,0xe8,0xc0,0x0f,0x14,0x3f,0x68,0xa9,0xaf, +0xe3,0x7e,0x42,0x0d,0x12,0xe2,0x7d,0x78,0x48,0xb0,0xc3,0x59, +0x9c,0xda,0xdb,0x2a,0x68,0x5a,0xf5,0x09,0x53,0x69,0xd6,0x4b, +0xc9,0x49,0xce,0x4b,0x2a,0xe0,0xf0,0x2c,0x0d,0xb9,0xef,0x04, +0xcd,0x85,0xac,0xa8,0x69,0x4d,0x04,0xcd,0xd9,0xa2,0xe6,0x50, +0x2b,0x30,0xca,0xe9,0x64,0xba,0x28,0x13,0xdb,0x0c,0x84,0x36, +0xb1,0x0b,0xcf,0xb2,0x69,0xfa,0x0a,0x10,0xc8,0x74,0xe4,0x49, +0xf3,0xe0,0x75,0x90,0x71,0x85,0x15,0xdd,0xc5,0x35,0xc4,0xfc, +0xe5,0xe2,0xdf,0xd7,0x5d,0xb7,0x75,0xe6,0xef,0x6d,0x7b,0x35, +0xbf,0x6f,0x19,0xa7,0x28,0x6f,0x15,0x0a,0x88,0x24,0xd4,0xf5, +0x1d,0x44,0xe8,0x63,0x04,0x7a,0x7e,0xd9,0xb8,0x41,0x84,0x1e, +0xdd,0xcc,0x34,0x81,0x99,0xe2,0x6f,0x03,0xf7,0xe5,0xea,0x7d, +0x83,0xea,0x82,0x27,0xe5,0xcb,0x8d,0xf0,0x96,0xd1,0xef,0x21, +0xf4,0xbc,0x70,0xf0,0xa4,0x81,0xed,0x28,0xc4,0x90,0xa3,0x49, +0xe1,0xb1,0x61,0x61,0xa1,0xa1,0x7c,0xd4,0x63,0x98,0x08,0xb9, +0x38,0xf1,0x2d,0xcc,0x6e,0xc7,0xd9,0x3f,0x9b,0xcf,0xc7,0x19, +0x16,0x30,0x63,0x11,0x8e,0xc5,0x5c,0x18,0xc6,0x1c,0x5a,0x6f, +0x35,0x77,0xe5,0x32,0x1a,0xa4,0x5e,0xbd,0x2f,0xb9,0x77,0xfe, +0x16,0x85,0xe6,0xaf,0x3a,0xa1,0x96,0x89,0x8d,0x91,0x0a,0xc4, +0xdf,0xa1,0xfa,0xa5,0x3a,0x05,0xfc,0x28,0xfc,0x41,0x9c,0xab, +0xac,0x2f,0x59,0x17,0xfb,0x38,0xf2,0x6d,0x9e,0x75,0xee,0xf5, +0x2e,0x9c,0xb0,0xc4,0x9b,0x88,0xb9,0xd0,0x25,0xe4,0xd2,0x64, +0x9c,0x5c,0x99,0x50,0x19,0x47,0xc3,0xd8,0xcc,0x76,0xfc,0xdb, +0x02,0xe6,0x33,0xc7,0xbc,0x8e,0xb8,0x85,0xec,0xe2,0x9c,0x68, +0x14,0xfb,0x13,0x2c,0xa7,0xb3,0x83,0x53,0xf6,0x13,0xa7,0x1a, +0xe3,0x46,0xf3,0x72,0x6f,0xfa,0x01,0xee,0x9d,0x0e,0x97,0x9d, +0xa4,0xf5,0xd1,0xa3,0x09,0xea,0x6c,0x04,0x1d,0x16,0x9c,0x50, +0x87,0xe8,0x80,0xce,0x23,0x06,0x3e,0xcd,0x20,0x53,0xd1,0xf2, +0x6f,0x56,0x0c,0xc6,0xa9,0xc4,0x0b,0x47,0xda,0xe3,0xd7,0xdb, +0x66,0x5f,0x76,0xe5,0xef,0xc0,0xb0,0x36,0x50,0x29,0xfc,0x8b, +0x13,0x36,0xc7,0x10,0xa0,0xf6,0x88,0x96,0x0c,0xb5,0xa2,0xaf, +0x48,0xb5,0x5b,0xab,0x45,0x85,0x65,0x75,0x15,0xef,0xde,0x6c, +0xdb,0xb4,0xb3,0x5a,0x7a,0x14,0x5b,0x49,0x67,0x4d,0x7d,0x6b, +0x45,0xa7,0x5d,0x21,0xef,0x6d,0xe5,0x60,0x6b,0xe5,0x4e,0x2d, +0x71,0x40,0xee,0x40,0xe0,0x1b,0x43,0x4a,0x1b,0x9d,0x4d,0x84, +0xc0,0x1e,0x56,0x30,0x1a,0xdc,0x43,0x36,0x7c,0x30,0x00,0xce, +0xfd,0xef,0x16,0x69,0x45,0xf6,0xe8,0x58,0x18,0xc5,0x35,0xa1, +0x07,0x1b,0x57,0x1f,0x5d,0x77,0xae,0xda,0x38,0x96,0x0f,0x47, +0x75,0x2f,0x5c,0xb3,0x11,0x27,0x37,0x3b,0xf3,0x0d,0x8f,0x4b, +0xff,0xc8,0xf9,0x8b,0x83,0x15,0x0c,0x4d,0xa2,0x2b,0xf0,0x10, +0x46,0xa2,0x43,0xa5,0x19,0xcd,0xd0,0x1f,0x9e,0x7d,0xea,0xfe, +0xbb,0x6a,0x56,0x2f,0x0e,0xbb,0xb9,0x98,0x1b,0x7c,0x26,0x9f, +0x40,0x06,0x99,0x2b,0x8f,0xe0,0xbd,0x70,0x99,0xc5,0x83,0x18, +0x49,0x90,0x05,0x03,0x60,0x99,0x4e,0x34,0x20,0x74,0x67,0x34, +0x1a,0xb0,0x58,0x6b,0x2e,0x2d,0xac,0xb7,0x91,0x16,0xd6,0xeb, +0x00,0x25,0x96,0xa3,0xe9,0xfe,0x68,0x46,0x11,0x36,0x48,0x6d, +0x8c,0x1e,0xca,0x67,0xc0,0x43,0xd6,0x10,0xbf,0x25,0x62,0xf1, +0x0b,0xa1,0x98,0x11,0x8b,0x51,0x85,0x08,0xc5,0x2b,0xc5,0x62, +0x06,0x1e,0x89,0x69,0xe4,0x00,0x4d,0xaf,0x3f,0xb6,0xe3,0x8f, +0x30,0x4e,0x98,0xda,0x39,0xf8,0x2f,0x99,0xb0,0x0c,0x9f,0x30, +0xf8,0x6d,0x8a,0x6e,0x27,0x8c,0x53,0xb9,0xb2,0xdd,0x98,0xc5, +0x61,0x3e,0xb6,0xf8,0xdd,0x0e,0xd5,0x62,0x73,0x18,0x7f,0xb5, +0xb8,0x31,0xe1,0x07,0xa9,0x85,0xd3,0x77,0x59,0xbf,0xba,0x80, +0xd3,0x14,0x61,0x38,0x93,0xd8,0xa9,0xa0,0xf8,0x79,0x24,0xe5, +0x22,0x8f,0x5b,0xb4,0x61,0x22,0x26,0xde,0x81,0xc7,0x6d,0xf8, +0xf8,0x99,0x89,0x26,0xb6,0x59,0x42,0xdb,0x66,0x4c,0xb6,0x81, +0x64,0x6d,0x7c,0x63,0x0d,0x6f,0x56,0x63,0xb2,0x2d,0x44,0x31, +0x87,0x02,0x83,0xfd,0xf7,0xed,0xe1,0x70,0x8f,0x05,0x6c,0x64, +0x7c,0x3c,0xbd,0x3c,0x3c,0xbd,0x6e,0x1e,0xb8,0xb5,0xff,0x46, +0xd0,0x72,0x4f,0x1c,0xb1,0x1f,0xbf,0x8b,0xc8,0x30,0xe7,0x41, +0x2b,0x19,0x94,0x0a,0x7f,0x6d,0xfd,0x79,0xf7,0xdb,0xdd,0x2f, +0xbd,0x0b,0xdb,0x78,0xad,0x42,0xcd,0x7c,0xed,0xbc,0xce,0x4b, +0x75,0xcd,0xa5,0x7d,0x1c,0x4c,0x68,0x17,0xa7,0x30,0x59,0xf9, +0x19,0x17,0xd3,0xf2,0x38,0xc8,0x66,0x06,0xc7,0x43,0x05,0x71, +0xeb,0xb3,0xb9,0x61,0xd6,0x6f,0xb7,0x8b,0x6f,0x33,0x6e,0xd2, +0xaf,0xde,0xc1,0xc9,0x47,0x25,0x13,0x6d,0x74,0x78,0xcc,0x82, +0x03,0x4e,0x22,0xab,0xd1,0xe1,0x05,0x2b,0xae,0x99,0x43,0x3c, +0x70,0x8c,0x11,0x4e,0xd3,0x9b,0xd7,0xea,0xcc,0xdf,0xa0,0x01, +0x69,0xd6,0x25,0x18,0xc7,0x09,0x47,0x51,0x95,0xec,0xb6,0x74, +0x72,0x36,0xf5,0xd2,0xcf,0x34,0x4a,0x37,0x4f,0xcd,0xcb,0xcd, +0xcb,0xcf,0xa5,0x1c,0x4b,0x68,0x91,0x4f,0x21,0xdd,0xb8,0x13, +0x94,0x8c,0x50,0x09,0x19,0x36,0xb1,0x38,0xa1,0x38,0xb6,0xc8, +0x2c,0x95,0x3f,0xa0,0xe3,0xb9,0xd2,0x46,0xb7,0xd5,0x8b,0xcf, +0x2a,0x96,0xea,0xaa,0x39,0x50,0x95,0xe6,0xc5,0x4c,0xe1,0x34, +0x35,0x07,0x5b,0xf1,0x9b,0x5e,0xb8,0x47,0x21,0xe5,0xe7,0x3e, +0xf8,0x0c,0xb3,0xf0,0xf4,0x22,0x86,0xe6,0xc6,0xdb,0x5f,0x3a, +0x15,0x41,0x03,0xc5,0x77,0xdf,0x40,0x68,0x37,0x86,0x82,0x12, +0x2b,0x9c,0x18,0x24,0x04,0xb7,0x30,0x19,0xd4,0x89,0xe7,0x31, +0xad,0x59,0xd9,0x6d,0x6a,0xf2,0x16,0x7d,0x16,0x3d,0xac,0xc8, +0xe0,0xe4,0x2b,0xf2,0xc9,0xac,0xe2,0x1d,0x41,0x97,0xc0,0xa8, +0xb2,0xa6,0xb6,0x98,0x37,0xdc,0x6f,0xa6,0x8c,0x75,0x56,0x68, +0xa7,0xea,0x4d,0xa6,0x38,0x31,0xb1,0x58,0xad,0x84,0xb5,0x4b, +0x56,0x70,0xb2,0x61,0x7d,0x8f,0x9d,0xb9,0xa0,0xd6,0x02,0x63, +0x9a,0xd1,0xfe,0x2a,0xac,0x6f,0xc2,0xf5,0x57,0xcd,0xf4,0x71, +0xa5,0x2d,0xac,0xd4,0x47,0x07,0x1b,0x50,0x66,0x23,0xb7,0xb9, +0x7b,0xcd,0xf2,0xe7,0xe4,0x3f,0x53,0x97,0xf0,0xbe,0x1d,0x0e, +0xc3,0x28,0xbc,0xee,0xc7,0x39,0xff,0x98,0xa9,0x23,0x2b,0xb5, +0xc9,0x3e,0x69,0x10,0x65,0x19,0x6e,0xb7,0x3f,0x2b,0x28,0x23, +0x28,0xdd,0x6b,0x17,0x7f,0x51,0xd2,0xc6,0xf2,0xdf,0x67,0xe2, +0x69,0x63,0x63,0x5b,0xe3,0xc8,0x37,0x35,0x96,0x37,0xe7,0x75, +0x95,0xee,0x2a,0x71,0x2e,0x71,0xa8,0xaa,0xe1,0xdd,0x5a,0x76, +0x35,0xba,0xd4,0xa5,0xf7,0xc5,0xdf,0x38,0xfb,0x94,0x7b,0x7b, +0x94,0xc1,0x75,0xb1,0xa8,0x58,0xa7,0xa5,0x5a,0x60,0xd9,0x1b, +0x1d,0xd7,0x9e,0x03,0xaa,0xbc,0x7d,0xae,0x82,0xb8,0x11,0x39, +0x62,0x75,0xd4,0x30,0x72,0x47,0x14,0xf7,0x10,0x34,0x9a,0x50, +0xe3,0xb9,0xd9,0x1a,0x24,0xb6,0x40,0x34,0xd9,0x1d,0xc7,0xb7, +0x1f,0xd7,0x3f,0x29,0xf5,0xf7,0x9b,0x1a,0x03,0xcb,0xd3,0x60, +0x54,0x1a,0x67,0x7d,0x98,0x9c,0xda,0x7d,0xc2,0xef,0x98,0x3f, +0x87,0x8f,0x65,0xd0,0xc9,0xd8,0xad,0x9a,0x69,0x83,0x7a,0xbe, +0xb9,0xa6,0x3c,0xb8,0x95,0xc3,0xa8,0xdb,0xcd,0xc0,0x70,0xf0, +0x88,0x39,0xe5,0x14,0xe5,0x7d,0x2c,0x90,0x73,0x0e,0x0f,0x0e, +0x33,0x9c,0x82,0xd3,0x98,0x34,0x73,0x05,0x50,0x64,0xfe,0x2a, +0xc9,0xbd,0x95,0xa1,0x96,0x58,0x15,0xdd,0x73,0x5f,0x45,0x54, +0x60,0x62,0xf2,0xcf,0x15,0x9e,0x29,0xa2,0xee,0x59,0x03,0xf6, +0xa4,0x03,0x98,0x22,0xe0,0x93,0x60,0xe5,0x50,0xcf,0x9e,0xe4, +0x6b,0x09,0x57,0xe2,0xba,0x0c,0xa3,0xf9,0x63,0xb2,0xf0,0x1d, +0xa1,0xba,0x1c,0xb2,0x46,0x9f,0x98,0x7d,0xd3,0xfd,0xa6,0xed, +0x5e,0xd3,0xb6,0xab,0x79,0x57,0xb3,0xb3,0x93,0x8e,0xd9,0x96, +0x75,0xdb,0xab,0xac,0xf9,0x87,0x37,0xfb,0xee,0x35,0x3e,0x2f, +0xf7,0xae,0xf0,0xa8,0xd8,0x55,0xd5,0xcc,0xbb,0xd4,0xb8,0x56, +0xee,0x2a,0xe7,0x04,0xbd,0xa7,0x04,0xac,0xbb,0xd0,0x1a,0xc2, +0xc0,0xbb,0x07,0xbd,0xc1,0xd5,0x10,0x5d,0x69,0x9e,0x4e,0x6e, +0x8e,0x6f,0x89,0x6b,0x95,0x25,0xf0,0xfb,0x71,0xa2,0x17,0x72, +0xe6,0x33,0x9b,0xdc,0xf8,0x82,0xf6,0x9c,0x8e,0x8c,0x6e,0x0e, +0xa6,0x61,0x18,0xba,0x9a,0x81,0x2b,0x26,0x63,0x9d,0x89,0xf0, +0xb8,0x07,0x0f,0x32,0xe2,0x0f,0xd0,0x45,0x2e,0x3c,0xcf,0x7b, +0x97,0xfd,0x5e,0xea,0x3b,0x14,0x86,0x7c,0x20,0x72,0x76,0xd3, +0x3d,0x8a,0x3c,0x2e,0x7a,0xe4,0x73,0x52,0x95,0xcf,0x0b,0x62, +0x32,0x43,0x7b,0xd5,0xfc,0xed,0x15,0x16,0xfc,0xef,0xf7,0x5e, +0x7c,0x18,0xf8,0x87,0x13,0xd4,0xc4,0xcd,0x04,0x76,0xf7,0xe0, +0x6e,0xb8,0x04,0x07,0x7b,0xc4,0x5f,0x4c,0xa0,0x77,0x70,0x13, +0xce,0x13,0xce,0xe8,0x8b,0x67,0x70,0xba,0xb1,0x5c,0xa3,0x17, +0x23,0x18,0x71,0x93,0x70,0x83,0xbe,0x75,0x3e,0x72,0xd3,0x37, +0x95,0x99,0xf3,0xcd,0x15,0x55,0xe5,0x45,0x65,0x9c,0x68,0xd8, +0x27,0xc4,0xb2,0xa5,0xb5,0xa5,0xcd,0xa5,0x6d,0xf4,0xe3,0xa3, +0xa4,0x55,0xb7,0x06,0xff,0x9a,0xcb,0x0a,0x49,0x20,0x12,0x49, +0x1f,0x66,0x2f,0x84,0x40,0x54,0x2f,0x46,0x81,0xab,0x01,0xbd, +0x9f,0x69,0x4c,0x6a,0x73,0x52,0x4b,0x7c,0xab,0x69,0x22,0xbf, +0x17,0x27,0xec,0x42,0xd6,0x60,0x7a,0xf3,0x2e,0xbe,0xb8,0xed, +0x42,0x67,0x56,0x17,0x8d,0x56,0x18,0x82,0x07,0x4d,0xe1,0x20, +0x26,0x61,0xbf,0xb1,0x9c,0xeb,0xa5,0xb0,0x59,0x5c,0x2b,0xff, +0x9a,0xa4,0xd8,0xa7,0xee,0x88,0x33,0x69,0xcf,0xe2,0x23,0xba, +0x0e,0x5e,0x3f,0x74,0x99,0xc3,0xfd,0xf8,0x88,0xe4,0xff,0x67, +0x81,0x6e,0xd4,0x97,0x05,0xba,0x8a,0x9f,0x87,0xc5,0x12,0xcb, +0x62,0xbb,0x76,0xb7,0x7b,0xf7,0x3e,0xb4,0xc2,0xe8,0x0a,0x98, +0x6f,0x9c,0x4e,0x89,0x1a,0xbf,0x73,0xba,0xe9,0x4a,0x97,0x3f, +0x03,0x61,0xca,0x09,0x58,0xcd,0x41,0x6b,0x1f,0xb6,0xc2,0x0c, +0x7d,0x9c,0x21,0x5a,0x22,0x65,0x8a,0xc1,0x01,0x38,0xd9,0x70, +0xba,0x6a,0xbb,0xdd,0x75,0x60,0x0a,0x40,0xe3,0x1c,0xf8,0x28, +0xc3,0x5e,0x66,0xd5,0xf1,0x75,0xe1,0x66,0xaa,0x76,0x11,0x87, +0x42,0x5c,0xa7,0x68,0x30,0xc9,0x46,0x0a,0x9f,0x98,0x6b,0x85, +0x45,0x37,0x53,0xd4,0x52,0x6f,0x9f,0x7f,0x06,0xb3,0x54,0xb0, +0x1a,0x96,0x0b,0x3c,0x73,0x1e,0xcd,0x4a,0x70,0x41,0x0b,0x32, +0x7a,0x1b,0x34,0x4d,0xa7,0xd9,0x16,0xc8,0xf8,0x3f,0x9a,0x9e, +0x77,0x5f,0xbf,0x53,0xb3,0xa1,0xd5,0xa2,0xd3,0xbb,0x26,0xe0, +0x52,0x42,0x6c,0xcb,0x05,0x30,0xe1,0x65,0xf9,0x0a,0x11,0xc2, +0x25,0x62,0x53,0xbc,0xa5,0xd4,0x24,0xcb,0xd7,0x9e,0xef,0xde, +0x7f,0xd3,0xbb,0x65,0x37,0x4d,0x9b,0x51,0xe0,0x41,0x9e,0x81, +0xe2,0x25,0x50,0x49,0x81,0xd9,0xd2,0x54,0xd5,0x1d,0x26,0xad, +0x35,0xa9,0x2d,0xbe,0xd5,0x24,0x9e,0x3e,0x37,0x55,0x3b,0x54, +0x5b,0x83,0x63,0xb9,0x4e,0xca,0xef,0x23,0x41,0xab,0x4f,0xb4, +0x35,0x82,0x7d,0xe2,0xbf,0x58,0xf7,0x70,0x8f,0x23,0x6e,0x47, +0x68,0x5c,0x31,0x12,0x63,0xd9,0x7d,0x91,0x7b,0xa3,0xf6,0x46, +0xa5,0x6c,0xe7,0x61,0x75,0x15,0xcc,0x68,0x84,0xb9,0xd7,0x22, +0xfa,0x78,0xd9,0x5e,0xd9,0x7e,0x59,0xb0,0xa4,0xf7,0x31,0x81, +0x0d,0x3f,0x14,0x7e,0x38,0xec,0x70,0x8d,0x0d,0x5f,0xdb,0x56, +0x75,0xad,0xe4,0x76,0x3a,0x0e,0x2f,0x9d,0xd1,0x39,0x5b,0x7f, +0xf5,0xb2,0x75,0x38,0x66,0x53,0x31,0xa5,0x61,0xa3,0xef,0xbf, +0x79,0x7c,0xe3,0x55,0xfb,0x9a,0x5b,0x5a,0x3f,0xae,0x2b,0xeb, +0xe3,0x97,0x3c,0xd4,0x7d,0x60,0xfd,0x84,0xbb,0x27,0xcc,0x26, +0xa1,0x38,0xc1,0x87,0xde,0xdc,0x34,0xf3,0xbf,0xf6,0x80,0x42, +0x08,0x4c,0xa4,0x21,0xab,0x48,0xa8,0x24,0x17,0x2f,0x5c,0xb8, +0x98,0x5d,0x98,0x6d,0x56,0x64,0x5b,0xe3,0x64,0xeb,0x64,0xe8, +0xbe,0xce,0x27,0xcf,0x8a,0x7f,0x56,0x76,0xa3,0xba,0xad,0xb9, +0xdd,0xf1,0xba,0xeb,0xcb,0x5d,0x79,0xad,0xfc,0xba,0x32,0xfd, +0x72,0x9b,0x9a,0xa6,0xee,0xd2,0x1b,0x69,0xcf,0xb8,0xdb,0xed, +0x98,0xcd,0xa4,0x96,0x26,0x95,0xc4,0x95,0x58,0x25,0xf0,0x7e, +0x73,0x2c,0x96,0xac,0x5e,0xc7,0x89,0x9b,0x30,0x85,0x22,0xb8, +0xce,0xab,0xcd,0xa9,0x03,0x34,0x8b,0xaf,0x69,0x87,0xe1,0x4c, +0x5c,0xf4,0xe9,0xe8,0x13,0xaa,0x30,0x7f,0x7e,0x41,0x2d,0xce, +0x7e,0x7b,0x24,0x26,0xe2,0xcc,0xb1,0x23,0xca,0x47,0x42,0x14, +0x22,0xeb,0x60,0x23,0x6c,0xc2,0x8d,0xcd,0xe0,0xda,0x82,0xae, +0x7d,0x16,0x46,0xe8,0x6d,0x0d,0xde,0x36,0xd2,0x22,0x34,0x98, +0xc5,0x04,0xee,0x94,0xed,0xc4,0xd1,0x32,0x4e,0x9e,0x0d,0x77, +0x49,0xa8,0xde,0x1e,0x33,0x67,0x1b,0xc7,0x86,0xdd,0x6d,0xc1, +0x57,0xcf,0x9c,0x3b,0x4b,0xff,0x71,0xe2,0x78,0x0b,0x1a,0xa1, +0xc7,0xbd,0x60,0xa1,0x6d,0x35,0x41,0xc5,0x17,0xd4,0xaf,0x85, +0x55,0xe2,0x45,0xd2,0x86,0xbf,0x7d,0x2f,0xa8,0xb5,0x0d,0x76, +0x5b,0x02,0x62,0x28,0x45,0xcc,0x1b,0x0d,0x71,0x23,0xae,0xb0, +0xf8,0x3c,0xa9,0x5d,0xd4,0xfd,0x40,0x61,0xf1,0x0c,0x49,0xc6, +0xfe,0x5f,0x72,0x07,0xf8,0x17,0xab,0x87,0x0b,0x89,0xf8,0xf2, +0x57,0xe1,0x25,0x23,0xbe,0xc4,0xf9,0x44,0x78,0x39,0x4b,0x7c, +0xc9,0xc0,0x43,0x71,0x0c,0x81,0x4f,0x1d,0xf8,0xe9,0x93,0xa0, +0xdc,0x21,0x2a,0x3f,0xd6,0xd7,0x46,0x0f,0x26,0x2d,0x2f,0x25, +0x3f,0xf9,0xa2,0x2c,0x8f,0xdf,0xb5,0x7c,0xe3,0x6a,0x6d,0x13, +0xca,0x42,0xeb,0xca,0x6a,0x6b,0x2a,0x2f,0x73,0x70,0x7e,0x26, +0x76,0x9b,0x43,0x37,0x2a,0x88,0x4b,0xcc,0x3e,0x8f,0xef,0x12, +0x57,0x50,0xd0,0x65,0x20,0xfc,0x4a,0x20,0xb0,0x19,0x03,0xef, +0xc1,0xc9,0x16,0x3c,0x79,0xdd,0x64,0x3b,0x86,0x5b,0x43,0xf8, +0x46,0xf4,0xb6,0x01,0x6f,0x1d,0x3c,0x63,0x25,0xf4,0xb5,0x62, +0x02,0x23,0x76,0x8a,0xbd,0xe4,0x2d,0xec,0x94,0x87,0x61,0xf6, +0xe0,0x53,0x16,0x76,0x09,0x09,0x04,0xe7,0x40,0x2e,0xcc,0x91, +0x64,0x78,0x9e,0x10,0x98,0x83,0x57,0x70,0x0e,0x03,0x22,0x4a, +0x6d,0xa7,0xe1,0x03,0xcd,0x14,0x9a,0x43,0x6d,0xa7,0xe7,0x31, +0x0d,0x43,0x6d,0xa7,0x57,0x88,0x4e,0xe2,0x61,0x56,0x98,0x01, +0x83,0x04,0x3f,0x3c,0x82,0x0f,0x0c,0x7e,0x90,0x7e,0x0e,0xfb, +0xa0,0x8d,0x1f,0x68,0x2e,0x6f,0x16,0x5c,0x89,0xa4,0x57,0x1e, +0x7a,0x24,0x34,0x8c,0x8f,0x82,0x6f,0x61,0x54,0x27,0x8e,0xfa, +0x22,0x7a,0x3e,0x53,0x06,0xdf,0x52,0x4e,0x3d,0x71,0x27,0x4e, +0x9b,0x83,0xfc,0xbf,0xc5,0xe8,0xff,0x89,0x91,0x44,0xcf,0x8b, +0xff,0x2d,0x7a,0x7e,0x36,0x4a,0xf5,0x15,0x2e,0xbd,0x54,0xad, +0x20,0xe4,0xc0,0x4c,0xd2,0xd7,0x62,0x04,0x93,0xd0,0xef,0x36, +0x64,0xb4,0x62,0xc6,0x33,0x33,0x4d,0x8c,0xb4,0x82,0xc8,0x2d, +0xe8,0x66,0x03,0x6e,0x5a,0x98,0x6e,0x0d,0xe9,0xab,0xa5,0xfd, +0x2d,0x4c,0xe8,0xbe,0x43,0x01,0x07,0x03,0x38,0xdc,0x62,0x05, +0xea,0xcc,0x1e,0x77,0x5f,0x77,0x1f,0xcf,0xfe,0xe0,0xbe,0xa0, +0xbe,0x7d,0x9b,0xbc,0x96,0xec,0xc7,0xe1,0xe1,0x99,0x34,0x51, +0x4f,0x49,0xfd,0xbb,0xf0,0x59,0xf3,0x13,0x9f,0x47,0xde,0x77, +0xbc,0x8b,0xda,0xf8,0x6d,0x05,0x5b,0x2f,0x6e,0xcb,0x6b,0xa9, +0xa9,0x6c,0x2b,0xb8,0xca,0xfd,0xd3,0x8a,0x3f,0x31,0x69,0x17, +0x52,0xf3,0xa4,0x09,0xa9,0x53,0x8c,0x0c,0x52,0x88,0x16,0xae, +0x7e,0xc2,0xc2,0x6a,0x24,0xf4,0x79,0xaf,0x7e,0xc1,0x7e,0xc0, +0x38,0x12,0x20,0x73,0x73,0xb4,0xf6,0x34,0xcf,0xb4,0xca,0xb0, +0x4f,0xcd,0xca,0xcb,0x29,0xc8,0x2a,0xa4,0x61,0xea,0x84,0xe0, +0x34,0x34,0x73,0xa0,0xd0,0x89,0x0a,0x60,0x64,0x86,0x46,0x38, +0x59,0x46,0xad,0x22,0x54,0x0a,0x49,0xff,0x67,0xd9,0x70,0xcc, +0xd0,0xb2,0xe1,0xae,0xff,0xea,0x61,0x3f,0x44,0xcd,0xaa,0x4b, +0x1b,0x60,0x69,0x44,0x5a,0xa4,0xd4,0x51,0x4e,0x6e,0x28,0x95, +0xf6,0x3e,0x35,0x03,0x3d,0x5c,0x80,0xcb,0x07,0xe7,0xf6,0xdc, +0x11,0x96,0x6c,0xee,0x95,0xcf,0x45,0x6d,0x0a,0x7a,0x6c,0x19, +0xfc,0x85,0xc2,0x75,0x58,0xf0,0x06,0x17,0xb0,0x78,0x5a,0x46, +0x3e,0x31,0xa7,0x70,0x6d,0xa8,0x96,0xf6,0x72,0x9a,0xf6,0x5e, +0x7d,0x90,0xea,0xd9,0x8c,0xb9,0x37,0x18,0xc6,0x18,0x65,0x1e, +0xb8,0xaa,0xfa,0x12,0xd7,0x8a,0x4b,0x18,0x78,0x03,0x7e,0x64, +0x4f,0x64,0x6c,0xbe,0x1a,0x04,0xc3,0x70,0x4c,0x61,0x15,0x85, +0x1e,0x61,0x04,0x81,0x27,0x7d,0xf8,0x04,0x6a,0x84,0xaf,0xae, +0x0c,0xbe,0x33,0x10,0x56,0x0f,0x2e,0xa1,0x1c,0x68,0xef,0x0e, +0x71,0x2f,0xae,0x30,0xf8,0xcc,0x5f,0x11,0x95,0xa9,0x15,0xf1, +0x52,0x1f,0xf3,0xdc,0x16,0xcc,0xbd,0x0b,0x2d,0xad,0xd8,0x72, +0xcd,0x68,0x07,0x56,0x5b,0x41,0xf5,0x26,0x4c,0xb5,0x86,0xd4, +0x75,0xd8,0x61,0x29,0x5f,0x26,0x11,0x28,0xb1,0x89,0x0e,0x52, +0xaf,0x5b,0xab,0x4b,0xab,0x63,0x79,0x23,0x6f,0x5b,0x6f,0x5a, +0x67,0x42,0xd1,0xc5,0x37,0xe2,0x48,0x62,0x57,0xaf,0xd7,0x62, +0x54,0xe1,0x61,0xc7,0xf7,0xb8,0xf5,0xd9,0xb5,0xd8,0x73,0x60, +0x29,0x46,0x4a,0xfd,0xcb,0x75,0x70,0x34,0x9a,0xb3,0x29,0xd4, +0x90,0x36,0x33,0x8d,0x19,0x29,0x97,0xd5,0x84,0x65,0x62,0xbd, +0xd4,0xbf,0xfc,0x00,0x8d,0xef,0xa2,0xce,0x43,0x41,0x87,0x19, +0xf4,0x11,0xd7,0x92,0xff,0xe0,0x5d,0xb3,0x6c,0x9e,0xa2,0x60, +0x07,0xfc,0x5a,0x77,0x36,0x07,0x7f,0x43,0x22,0x11,0x74,0x74, +0x44,0x1d,0x7a,0x85,0x4e,0x50,0x46,0xc0,0xb5,0x1b,0x5d,0x21, +0x14,0x82,0x7a,0x30,0xe8,0x4b,0x3e,0xe0,0x69,0x7e,0x4b,0xa0, +0xf9,0xc0,0x4c,0x5a,0xe2,0x36,0xc1,0x03,0x39,0x93,0x19,0xcd, +0x6e,0x7c,0x61,0x7b,0x6e,0x47,0x66,0xb7,0x54,0x4c,0x18,0x8a, +0x3e,0xa6,0xe0,0x43,0xf3,0x5b,0x83,0x89,0xf0,0xb6,0x07,0x23, +0x19,0xbc,0x0b,0x6f,0x89,0xdb,0x21,0x8a,0xd6,0x43,0x39,0x38, +0x0e,0x5f,0xf5,0xe1,0x57,0xe0,0x65,0x88,0x5e,0x9a,0x6c,0x74, +0xc3,0xb9,0xa6,0xb3,0x8d,0x26,0xd1,0x7c,0x24,0xce,0x39,0x80, +0x8a,0xee,0xf3,0xda,0x77,0xf3,0xd9,0xad,0xa9,0x37,0x12,0x1f, +0xd0,0x61,0x4e,0x63,0x0c,0xf7,0x1b,0x1e,0x32,0x0a,0x49,0xdd, +0xc1,0x77,0xa5,0x76,0xa6,0x76,0x65,0x72,0xd8,0xd3,0x0f,0x8f, +0xd9,0x4b,0x29,0xd5,0xa9,0x97,0xd2,0x69,0x5c,0xab,0x86,0x16, +0x02,0xaf,0xfb,0xf1,0x35,0x04,0x09,0x63,0xfa,0xc5,0x31,0x40, +0xfd,0xd0,0x84,0xe6,0xd3,0xec,0xb6,0xb4,0x8e,0xe4,0x0e,0xfd, +0x24,0xde,0x03,0x67,0x19,0xe3,0x94,0x59,0xc8,0x35,0x3b,0xf1, +0x5d,0xd7,0xeb,0x6e,0x95,0xdd,0xe5,0x20,0x1e,0x83,0xf0,0x9e, +0x21,0xdc,0xc3,0x38,0x51,0xcb,0xe0,0xf3,0x84,0x2b,0xa2,0xd4, +0x01,0x73,0xa5,0x90,0x47,0x4e,0x3a,0x1c,0xf7,0x8c,0xf4,0xe2, +0x7c,0x8e,0x85,0x1e,0x73,0x9f,0x42,0x81,0x73,0x92,0x85,0x02, +0x8c,0x64,0xae,0x94,0x66,0x75,0x26,0xaa,0xc5,0xd6,0x45,0x77, +0x9e,0x7d,0xce,0xe1,0xa5,0x1f,0x05,0x8e,0x49,0x5e,0x5c,0xac, +0x55,0xa3,0x6f,0xea,0xbc,0xc3,0x73,0x53,0x40,0xb1,0x05,0xff, +0xa0,0xf0,0x5a,0x45,0x77,0xdd,0x65,0x59,0x87,0x6b,0x77,0x60, +0xd3,0xfe,0xa2,0x84,0xb8,0xfa,0x0b,0x30,0x83,0xb7,0xca,0xdd, +0x83,0x8b,0xcc,0x73,0x6d,0x2a,0x77,0x36,0x29,0xf7,0xb5,0x35, +0xf7,0x56,0x5f,0x73,0x28,0xe3,0xdd,0x0d,0xed,0x64,0x32,0x5b, +0x8f,0x4e,0xff,0xeb,0xe1,0x0f,0xa5,0xba,0x57,0x1c,0xc5,0x94, +0x55,0xed,0x2c,0xb0,0xcf,0xb7,0xca,0x56,0xf6,0xdc,0xd5,0xba, +0xaf,0x36,0xa0,0xda,0x4f,0x19,0x2d,0x98,0x53,0x89,0xa7,0x13, +0x93,0x54,0x1e,0x1b,0x6f,0x95,0x1a,0x09,0x9d,0x09,0x51,0x15, +0xd7,0xe3,0x5c,0x06,0x15,0x83,0x96,0x6c,0x5a,0xa6,0xda,0xec, +0x72,0xfd,0x49,0xc9,0x6f,0xb1,0xa0,0xa0,0xec,0x8c,0xc9,0x04, +0x13,0x67,0x99,0x7d,0x9e,0xd2,0xa5,0x0e,0x89,0xac,0x78,0xd0, +0x9c,0xa0,0x13,0x6a,0x80,0x13,0x0b,0x80,0x4e,0x44,0xda,0x03, +0x0d,0xa6,0x5f,0xaa,0xa6,0x72,0x82,0x45,0xe8,0xc4,0x2a,0xca, +0x0d,0xa5,0xc0,0x15,0xd0,0x8c,0x01,0xf7,0xe0,0x44,0x0b,0x9e, +0xb8,0x6e,0xbc,0x1d,0xf7,0x5a,0xc3,0xde,0x8d,0x12,0x2c,0x74, +0xd0,0xc1,0x30,0x2b,0xa1,0xb1,0x15,0xe3,0x19,0x51,0x0f,0x77, +0x90,0xa8,0x5f,0xbe,0x4c,0xd2,0x7d,0x30,0xf9,0x8f,0x64,0xeb, +0xe1,0x21,0xc9,0x56,0x4d,0x49,0xb2,0xf5,0xfe,0xcf,0x55,0x6f, +0x63,0xdf,0x50,0x4f,0x5b,0xd1,0x23,0x28,0x33,0x31,0x67,0xa5, +0x29,0xc3,0x17,0xa8,0x5d,0x55,0xb3,0x0a,0xb4,0x22,0x13,0x8e, +0x9e,0x0d,0x09,0x57,0xee,0x01,0x63,0x92,0x77,0xed,0xc2,0xf7, +0xe9,0x0f,0xad,0x32,0xf8,0x90,0xf5,0x7b,0x35,0xf7,0xed,0xe0, +0xf0,0x9b,0xb3,0xe4,0xf0,0xdd,0xbd,0xff,0x1f,0xe9,0x56,0x61, +0xd2,0xe0,0x48,0x29,0xfc,0xbd,0x1f,0x0a,0x7f,0x92,0xd5,0xce, +0xfd,0x6f,0xf8,0x73,0x94,0xc2,0xdf,0x74,0x29,0xfc,0xbd,0xa7, +0x7c,0x87,0xc1,0xf7,0x52,0xf8,0x7b,0xaf,0x8d,0xef,0xe9,0x33, +0xf3,0x81,0x67,0xd4,0x50,0xfb,0x5b,0xc5,0x60,0xab,0x3b,0xf8, +0x03,0xbb,0x26,0x32,0xd6,0x0a,0xd8,0x38,0x69,0x66,0x45,0x21, +0x45,0x79,0x33,0x0b,0x8b,0x04,0x4b,0x22,0xaa,0xc2,0x9f,0x82, +0x2a,0x2b,0x9e,0x9b,0x4f,0x30,0xf4,0x36,0x84,0x32,0xe0,0x8d, +0x37,0x09,0x54,0xc1,0x21,0xac,0x62,0x45,0x53,0xb0,0x22,0x5b, +0xe8,0x71,0x69,0x85,0x34,0x84,0xea,0x32,0x9b,0x22,0xd6,0x1c, +0x5d,0x1b,0xc9,0xd1,0x40,0xfc,0x88,0xc0,0xc7,0x0e,0xfc,0xf8, +0xa3,0x30,0xb1,0x63,0xb0,0xd5,0x5c,0xf8,0x6a,0x09,0x3e,0x31, +0x87,0x27,0xf3,0xc5,0x05,0xa6,0x9f,0x95,0xba,0xc5,0x75,0xd2, +0x2a,0x14,0xf9,0x3e,0x22,0xae,0xfd,0x43,0x6f,0x86,0x38,0xcf, +0x4c,0x98,0x87,0x23,0x10,0xcc,0xe5,0x05,0x1d,0xe2,0x48,0x18, +0x21,0xac,0x65,0x06,0x2f,0x63,0x0c,0xc1,0xe1,0x2c,0xae,0xf2, +0x9f,0xaf,0x3b,0x4b,0xb5,0xc9,0xa6,0xeb,0x65,0xf1,0xd3,0x94, +0x3f,0x94,0x85,0x0f,0x7a,0x03,0x70,0x93,0x11,0x55,0xa5,0x1f, +0xe9,0xd2,0x99,0xb3,0x17,0xcf,0x14,0x14,0xa9,0x74,0x41,0x0a, +0x7b,0x95,0x12,0x51,0x98,0x0a,0x59,0x38,0x95,0x55,0x7c,0x27, +0xe4,0x13,0xdc,0xd4,0x0d,0x4a,0x14,0x2a,0xae,0xe8,0x86,0x15, +0x30,0x5d,0x67,0x35,0x9b,0xe0,0xa8,0xf0,0x8a,0x29,0x4c,0x49, +0x2d,0x50,0x83,0xb1,0x68,0x73,0x03,0x82,0x1b,0x31,0xf8,0x21, +0xec,0x6c,0xc4,0x9d,0x37,0x4d,0x75,0xf1,0x2b,0x36,0x3e,0x3d, +0x36,0x2d,0x26,0xdd,0x22,0x8d,0x3f,0x68,0xeb,0x69,0xe1,0xb8, +0xb3,0xd1,0x9b,0xcf,0xcc,0x4c,0xcf,0x4e,0xcd,0xe6,0xe0,0xbb, +0x75,0x78,0xc4,0x0e,0x8e,0x6c,0x63,0x84,0x3a,0xdc,0x4e,0x9a, +0x52,0x33,0x2e,0xa9,0x09,0xab,0x0c,0x45,0x4d,0x9c,0x2f,0x8d, +0xb5,0xae,0x40,0x8d,0xe6,0x5e,0x1f,0xdc,0x63,0xd1,0x58,0xbc, +0x4b,0xee,0xa0,0x0a,0x28,0x69,0xc0,0x7e,0xc3,0xbc,0x16,0x7e, +0xf6,0x45,0xed,0x62,0x83,0x4b,0xd7,0x0a,0x7a,0x4a,0x3a,0x6a, +0x5d,0x2a,0x78,0xd9,0x4e,0x43,0x8f,0xad,0xbe,0xce,0xa5,0x5e, +0x55,0x7b,0xea,0x39,0x61,0x74,0x8b,0xb8,0xec,0x9a,0xfe,0x0e, +0x71,0xa1,0x35,0x08,0xcc,0x4a,0x53,0xa9,0xcf,0xfd,0x2a,0xaf, +0x2c,0x2b,0xfe,0x69,0xda,0xfd,0x9c,0x6b,0x17,0xb8,0x69,0xac, +0x6b,0xd4,0xce,0xe3,0xce,0xc7,0x13,0x64,0x3c,0x6c,0xc8,0x00, +0x8d,0x1c,0x18,0x57,0x70,0xac,0x85,0xd7,0x3c,0xb4,0xec,0xf0, +0xdc,0x30,0x0e,0xc6,0xb2,0x57,0x0a,0xdb,0xca,0x6a,0x2b,0x38, +0x49,0x62,0xba,0x94,0xfc,0x4b,0xdd,0x18,0xfa,0x70,0x1e,0x9e, +0x1e,0x54,0x1f,0xb8,0x2d,0x9f,0xbd,0x65,0x40,0xae,0x8e,0x05, +0x30,0x0f,0x5e,0x33,0x62,0x95,0x34,0xa3,0x3b,0x8f,0x52,0xa6, +0x79,0x2c,0xe4,0x89,0xd9,0x64,0x70,0xb6,0xe0,0x06,0x3b,0x98, +0xe3,0xa8,0xe1,0xbf,0x01,0xc7,0xcc,0x68,0x70,0xe4,0xe9,0x38, +0x29,0x94,0xfc,0x7c,0x1e,0x96,0x73,0xa0,0x81,0x7b,0x18,0xbd, +0xc2,0xc0,0x1b,0xaa,0xf7,0x98,0xa6,0xf4,0xd4,0x16,0x35,0xca, +0x64,0x2c,0x93,0x15,0x50,0x75,0x1d,0xbb,0xeb,0x68,0x6c,0xa5, +0xa4,0xcc,0xea,0xce,0x2a,0x7e,0x1e,0x73,0x94,0xb8,0x34,0xfa, +0xf6,0x07,0xdd,0xbf,0x0e,0x5f,0xd5,0xc0,0x98,0x62,0x98,0x6c, +0x95,0xc9,0xfb,0x23,0xe3,0xad,0x61,0xb7,0x24,0xe8,0xcf,0xa3, +0x30,0x61,0x48,0x93,0xc6,0xa5,0x13,0x5d,0x60,0x81,0x29,0x4d, +0x12,0x75,0x68,0xcd,0xe0,0xee,0xc3,0xb8,0x66,0x1b,0xaa,0xab, +0xb6,0xec,0x1a,0x90,0xfa,0xda,0xad,0x3a,0x07,0x5e,0xca,0x34, +0xf9,0x9c,0x5a,0x7e,0x6c,0xee,0x31,0x19,0xe7,0x7b,0xe2,0xe8, +0xb1,0x3d,0x53,0x76,0x30,0xa9,0xa6,0x0a,0x57,0x99,0xc6,0xbc, +0xfc,0xce,0x38,0xb5,0xf8,0xfe,0xd8,0x3f,0xcf,0x80,0x1a,0x87, +0x5b,0x69,0xca,0x0a,0x61,0xce,0xe2,0x96,0x64,0x9c,0x53,0x8c, +0xdf,0x58,0xea,0xe8,0x6e,0x5d,0xa4,0x5f,0x61,0xc7,0x3f,0xed, +0x1e,0x18,0x68,0xbb,0x9d,0x6d,0x58,0x60,0x59,0xe1,0x54,0x65, +0xd7,0x99,0x76,0xbe,0x33,0x1d,0x5c,0x78,0x4b,0x49,0x94,0x26, +0x87,0xb8,0x55,0x3a,0x97,0xee,0xcc,0xf1,0x74,0xe1,0x6b,0x03, +0x6a,0xbc,0x2b,0xdc,0xb9,0xc1,0x6b,0x7f,0x13,0x19,0x84,0x76, +0xb2,0x98,0x3e,0xa4,0xa5,0x59,0xd3,0xcd,0xfa,0x4b,0x75,0xa5, +0xc1,0x32,0x08,0xa6,0x78,0x78,0x2d,0x7d,0x31,0x98,0xbe,0xb8, +0x51,0x74,0xa1,0x0c,0x67,0x13,0xe4,0x63,0xb0,0x54,0xb3,0xbe, +0xf9,0x4b,0xcd,0xfa,0x58,0xa9,0x66,0x5d,0xf0,0x17,0x3c,0x48, +0x4b,0x67,0x4e,0x5b,0x42,0x3b,0x07,0xda,0xa8,0x29,0x1e,0xb3, +0x17,0x4a,0x1a,0x72,0x60,0x2d,0x2c,0xe9,0x10,0xc7,0x33,0x67, +0x72,0xce,0xe4,0xe6,0xa9,0x80,0xea,0xf9,0xdf,0xe3,0x81,0x2b, +0xde,0xdd,0xc0,0x6b,0xf8,0x4d,0x3d,0x82,0x5b,0x8e,0x73,0xb8, +0xfa,0xa4,0xeb,0xba,0x15,0xaa,0xe2,0xa8,0x07,0xa4,0xeb,0xdc, +0x95,0xf3,0xfd,0x31,0xdc,0x3a,0x54,0x65,0x93,0x1d,0x14,0x60, +0x02,0x53,0x9f,0x9c,0x7e,0x49,0xed,0x36,0xdb,0x15,0xdd,0x1e, +0xdd,0x10,0x73,0xa2,0x91,0x77,0x8c,0xb2,0x8c,0x92,0x45,0x71, +0x77,0x60,0x51,0x13,0x2e,0xba,0x69,0xa2,0x8b,0x9b,0x6d,0x61, +0xf3,0x7a,0xd6,0xe0,0xb8,0xde,0x71,0xe3,0x93,0xdc,0x19,0x1c, +0x20,0x9f,0x95,0x9a,0xfe,0xa5,0xc4,0xc0,0xd7,0x8b,0x89,0xbd, +0x7c,0xf6,0x65,0x16,0xa7,0x8c,0xbc,0x3c,0x38,0xdb,0x9e,0x6d, +0xc2,0x83,0xa4,0x54,0x18,0xf0,0x1a,0x00,0xa3,0xc1,0x1d,0x68, +0xc4,0xca,0x47,0xd1,0x1c,0x3d,0x70,0x45,0x18,0xa0,0x39,0xc8, +0x5e,0x0a,0x59,0x9e,0xcd,0xe8,0x79,0x0f,0x42,0x5b,0x31,0xf4, +0x9a,0xc9,0x0e,0xdc,0x67,0x05,0xfb,0x36,0xa2,0x93,0x0d,0x38, +0xe9,0x60,0xb8,0x95,0x50,0xd1,0x8a,0x27,0x99,0xc1,0x71,0x50, +0x4c,0xcc,0xe0,0x52,0x17,0x5b,0x3c,0xa4,0x47,0xf9,0x97,0x29, +0x5b,0x23,0xe9,0x51,0x16,0x76,0xb1,0xb0,0x4a,0xfc,0x55,0x0a, +0x30,0x8f,0x50,0xaa,0x06,0x91,0x02,0xcc,0x4c,0xa6,0x3e,0x3d, +0xad,0x9e,0xfa,0x81,0x68,0x20,0x86,0xb0,0x53,0x05,0x69,0x21, +0x6e,0xa1,0x19,0x2b,0x3f,0x6f,0x43,0xf0,0xd1,0x23,0x4a,0x2c, +0x07,0x2d,0xc5,0xad,0x74,0x24,0x03,0x20,0x0f,0x8b,0xf1,0x31, +0x2b,0xe8,0x41,0x3f,0x81,0x47,0xda,0xf8,0x88,0x5a,0x42,0x8d, +0x54,0x63,0xb2,0x76,0x68,0xa5,0x4d,0x05,0xbc,0x22,0x55,0x71, +0xd5,0x09,0xd5,0x89,0x1c,0x06,0x4e,0x97,0xa0,0xdb,0x7b,0xa6, +0x3a,0x3d,0xab,0x46,0x0d,0x42,0xd9,0x9a,0xa4,0x4b,0xc9,0xa5, +0x49,0x51,0xdd,0xbc,0x77,0xb8,0x5b,0x98,0x2b,0x35,0x7a,0x3d, +0x18,0xd6,0x85,0xc3,0x60,0xbe,0x11,0xce,0xc7,0x91,0x66,0x30, +0x12,0x6d,0x59,0xe7,0x30,0xa7,0x23,0x2e,0xc7,0x28,0x97,0x83, +0x5b,0xe4,0x87,0x38,0x18,0x9d,0x3b,0x50,0xec,0xdb,0xce,0x6f, +0xdd,0x8d,0x63,0xf6,0xe2,0xf0,0xa3,0x1c,0xfa,0xb3,0xa8,0x75, +0x04,0xe7,0xe9,0xe0,0x70,0xd5,0x36,0xa7,0x07,0x30,0x2a,0x1d, +0x34,0xce,0xc2,0x6a,0x65,0x98,0x22,0x6e,0xec,0x17,0x36,0x7e, +0xec,0xc2,0x46,0x46,0x5c,0xd8,0x4a,0x5c,0x1e,0xca,0x9e,0x59, +0xf5,0x5a,0x79,0xf2,0x6d,0xc6,0x6d,0x6b,0xaa,0x37,0x70,0x59, +0xd3,0x09,0xea,0x19,0xc1,0x37,0x18,0xc8,0x2c,0xd8,0x6d,0x31, +0x57,0x2a,0xdc,0xfa,0xa1,0xb6,0xbe,0xf3,0xec,0xfd,0xff,0x53, +0xb8,0x75,0x8a,0x49,0xe8,0x57,0x10,0x93,0x18,0x9c,0xbc,0xa4, +0x07,0x38,0x35,0x45,0xe1,0xa8,0x84,0x9b,0x7f,0x13,0x34,0xe1, +0x37,0x56,0xf4,0x90,0x91,0x0e,0x51,0xc3,0x1c,0x94,0x70,0x82, +0xc6,0xa0,0x49,0xe7,0x75,0x68,0x90,0x8f,0xd5,0xa0,0xb4,0x04, +0xf6,0x2f,0x24,0x1f,0x61,0x60,0x0e,0x2b,0x7e,0xff,0x8e,0xe0, +0x04,0x07,0xe9,0xd0,0x43,0x8c,0x22,0xbf,0xc1,0x80,0x06,0x2b, +0x86,0xa1,0x05,0x99,0x8e,0x47,0x1f,0xb2,0x05,0xfe,0x0a,0xed, +0xf7,0x52,0x3f,0xc2,0x54,0x95,0x06,0x34,0x62,0xec,0xb3,0x02, +0x6a,0x54,0x71,0x3e,0x9c,0x23,0xea,0x61,0xcb,0x77,0x19,0xab, +0x42,0x4a,0x0b,0x0b,0x5a,0xe8,0x4a,0x02,0x87,0xda,0x8c,0xaf, +0x6b,0x45,0x57,0x56,0x60,0x30,0x8c,0xc0,0xd6,0x36,0xdc,0xfa, +0x07,0xd8,0xb7,0xa1,0xfd,0x4f,0x66,0x8b,0x69,0x06,0x4e,0xcc, +0x8f,0xcf,0x8f,0xcd,0xb7,0x4a,0xe6,0x83,0xd7,0xbb,0x6f,0xb4, +0x31,0xac,0xf7,0xe6,0x73,0x0a,0xb3,0xcb,0x32,0xca,0x39,0x50, +0x9d,0x81,0xeb,0x2d,0x61,0x3d,0x7e,0x8d,0x01,0x16,0xc2,0xb1, +0x76,0xf4,0x65,0xc4,0xbf,0x41,0x83,0xc0,0x51,0x64,0xa5,0xde, +0x55,0x42,0xb6,0xf0,0x8c,0x80,0xd0,0x81,0xc2,0x1d,0x61,0x5a, +0x87,0x38,0xed,0x8e,0xde,0x66,0x91,0x98,0x0b,0x64,0x33,0x8d, +0xd2,0x00,0x1b,0x68,0xc8,0xfe,0x3c,0xb1,0x4b,0xd4,0x62,0xb0, +0x4d,0xa4,0x04,0x7e,0xb1,0xd0,0xb8,0x10,0x77,0xb1,0x29,0x34, +0xdf,0x1b,0xff,0x7b,0x19,0x98,0xf2,0xe0,0x4a,0xd1,0x59,0xea, +0xff,0xf3,0x03,0x11,0x1b,0xef,0x7d,0xe9,0xff,0x33,0x9e,0x08, +0x8d,0x1b,0xa4,0xf6,0x3f,0x9f,0x95,0x84,0xf9,0x84,0x7e,0xf9, +0x18,0xb6,0xb8,0xb6,0xb0,0x31,0xbb,0x99,0xab,0xa5,0xef,0x4e, +0xc8,0x8b,0xcf,0x8f,0xcb,0x37,0x8f,0xe7,0x7d,0xe7,0x9a,0xcc, +0xd6,0x59,0x57,0x62,0xc3,0xa7,0xa5,0xa5,0x65,0xa4,0x66,0x70, +0xd6,0xf4,0x39,0x8c,0xc2,0xf5,0xe6,0xf4,0x0d,0xe3,0x51,0xc7, +0x02,0x74,0x28,0x70,0x55,0x63,0xd3,0xcc,0x24,0x70,0xd1,0x92, +0x91,0x43,0xa3,0xd4,0x3a,0x98,0x64,0xdc,0x05,0x47,0xae,0x75, +0xb0,0x62,0x12,0x98,0x91,0x66,0x5c,0x7d,0x17,0x0c,0x5a,0xd0, +0xe0,0x96,0xe9,0xd6,0x7f,0x8b,0x1e,0x6b,0xda,0x80,0xa6,0x36, +0xca,0xac,0x04,0xbd,0x56,0x34,0xa5,0xe6,0x18,0x0b,0x5f,0x91, +0x60,0xd7,0xdd,0xb6,0x9e,0x3b,0x39,0xd4,0x66,0x8a,0x2f,0x15, +0xd4,0xe6,0x35,0x72,0xe0,0x4b,0x93,0x36,0xfd,0xaa,0x49,0x30, +0x8a,0x15,0x9f,0x8b,0x14,0x5b,0xee,0x80,0xd8,0xa9,0xf4,0x2a, +0x93,0x65,0x94,0x0a,0x5f,0xce,0x48,0xa5,0x06,0x3f,0x53,0x64, +0xc4,0x7d,0x2c,0x5c,0x03,0x81,0x60,0xec,0x7d,0x88,0x65,0xe0, +0xa5,0x94,0x51,0xc7,0x53,0xec,0x3f,0x9e,0x1d,0xb4,0x3f,0x47, +0x20,0x76,0x9d,0x54,0x0a,0xf7,0xd9,0x50,0x30,0x26,0x38,0x3f, +0x1b,0xc7,0xe5,0xcc,0x2e,0x7c,0x59,0x7b,0xa5,0xbd,0xf9,0x06, +0x07,0x6b,0xbb,0xc4,0x95,0x1f,0x0d,0xe6,0x88,0xb3,0xcc,0x60, +0x39,0xd3,0xac,0x7b,0xdd,0xe2,0x8d,0xf3,0xec,0xdd,0x38,0x6e, +0x2f,0x2e,0x09,0xca,0x33,0xe3,0x3b,0xe2,0x5a,0xe3,0x1a,0xe3, +0xb8,0x39,0x2c,0x2e,0xf3,0x58,0x3d,0x77,0x91,0x6a,0x83,0x6d, +0x5f,0x77,0x55,0x77,0xee,0x80,0xb2,0x10,0x84,0x5b,0xaf,0x09, +0x7b,0x99,0x9a,0xa3,0xf5,0x91,0x97,0x8f,0x71,0x18,0x0e,0xf5, +0xc4,0xd6,0xc4,0xc0,0x69,0x95,0xc7,0xd2,0xb2,0xed,0xf5,0x36, +0x3d,0x5c,0x28,0xfe,0x44,0x9e,0xb1,0x2f,0x33,0xee,0x66,0xf5, +0xe7,0xde,0x08,0x7c,0xb4,0xff,0xc7,0x03,0xdc,0x5a,0x56,0x74, +0xc3,0xad,0x24,0xbe,0xea,0x7c,0xf5,0x19,0x9a,0x6d,0xac,0x50, +0x91,0x5e,0x93,0xaa,0xd2,0x0a,0xc6,0x37,0x22,0x86,0xda,0x4c, +0x21,0x4c,0x84,0xc7,0xf8,0x0d,0x5b,0xd8,0x56,0x70,0x33,0xab, +0xd7,0x24,0x8b,0xdf,0xbf,0x6d,0xcf,0x56,0x0f,0x7d,0xa9,0xc5, +0xd0,0x63,0xca,0x48,0xa3,0x70,0x93,0x83,0x36,0x2e,0xdc,0x50, +0x68,0xc6,0x83,0xf6,0xcb,0xbe,0x5f,0x63,0xc0,0x8e,0x83,0x11, +0x58,0xcb,0x18,0x67,0x07,0xf7,0xa8,0xfe,0xc1,0x54,0xa5,0x49, +0xca,0x0e,0xab,0x58,0xcb,0x34,0x05,0x6c,0x12,0x22,0x48,0x40, +0x97,0xd7,0x95,0x3d,0xf5,0x16,0x7e,0x7c,0x91,0x43,0xb1,0x49, +0x9e,0xa9,0xa4,0xc1,0x7b,0x8e,0x1c,0x4b,0x8a,0x38,0xf7,0x6f, +0x41,0x0d,0x0e,0xa6,0xf6,0xe0,0x54,0xd0,0x62,0x9a,0x52,0x2f, +0x67,0x54,0x65,0xef,0x6e,0xe2,0x35,0x9d,0x70,0x92,0xc7,0xb4, +0xc3,0xa9,0x16,0x7c,0x5d,0x6c,0x4b,0x7c,0x73,0xb2,0x24,0xa9, +0xa1,0x69,0x02,0x4b,0xd9,0x08,0x1c,0x66,0x87,0xc3,0x71,0x18, +0x4e,0xac,0xb2,0xe2,0x7f,0xf8,0xb3,0xfc,0x45,0xf4,0x0b,0x0a, +0x92,0x6c,0xbb,0x86,0x44,0x35,0xce,0x9e,0x8b,0x54,0x7d,0x8f, +0x5a,0xf5,0x15,0x0a,0x82,0x01,0xfc,0x4d,0xd0,0x07,0x3f,0x81, +0x0f,0x45,0x65,0x59,0xc2,0x23,0x52,0x7e,0xa9,0xa8,0x25,0xaf, +0x99,0xab,0xa3,0x04,0x22,0x21,0x37,0x21,0x37,0x2e,0xcf,0x38, +0x99,0xf7,0x59,0xb0,0x75,0xfa,0xaa,0x4d,0x97,0xec,0xf9,0xb8, +0xd8,0xd8,0xd8,0xb8,0xb8,0x53,0xf8,0x38,0x04,0x27,0x9b,0xa2, +0x52,0xbb,0x33,0xdf,0x0b,0xdf,0x66,0xc2,0x12,0xb8,0xa6,0x22, +0xe8,0xb7,0x33,0x83,0x6f,0x2c,0x08,0x5e,0x39,0x84,0x33,0xad, +0x90,0x55,0x6d,0xdf,0x59,0xf5,0x2e,0xeb,0x43,0x1c,0x2c,0x54, +0x86,0xd9,0x98,0x81,0x5f,0x31,0x69,0x86,0x0a,0x2f,0x99,0xcb, +0x99,0xd9,0xcd,0x6a,0xf2,0x06,0x8c,0x67,0xc1,0x0e,0x4f,0x13, +0x9c,0x06,0xa6,0x30,0x8d,0x81,0xad,0xb8,0x8e,0x54,0x5c,0x2a, +0xa9,0xbd,0x48,0xcd,0xc7,0x87,0x09,0x72,0xf1,0xb1,0x73,0xdf, +0xc9,0x89,0x0d,0x98,0x41,0xce,0x76,0x9d,0xb9,0x7a,0x57,0x85, +0x42,0x10,0x33,0x46,0x50,0xc2,0x6b,0xc4,0xfb,0x48,0x0a,0x1d, +0xf8,0x37,0x60,0x86,0x4b,0x71,0xdc,0x10,0x49,0x1d,0xc6,0xd4, +0xa5,0x4b,0x35,0xcb,0xce,0xd8,0x2b,0xaa,0xb2,0xfa,0x79,0xde, +0x37,0x55,0xc1,0x9a,0x9a,0x74,0x06,0x35,0xe9,0x91,0xac,0x8c, +0x8e,0xad,0xd4,0xae,0x79,0x25,0x5c,0x27,0xf2,0x98,0x76,0x71, +0xc4,0x63,0x78,0xda,0x8a,0x4f,0xef,0xc3,0xd3,0x16,0x7c,0x7a, +0x17,0x84,0x36,0xfc,0x95,0xc9,0xc9,0xcf,0x2e,0x4e,0x2d,0x36, +0x4c,0xe2,0x0f,0x7a,0xec,0xf3,0xda,0xe3,0xcd,0xe1,0x61,0x26, +0xbb,0x30,0xbd,0x20,0xa5,0xc0,0x34,0x95,0xb7,0x59,0xb0,0x69, +0x35,0x0e,0xd7,0xae,0xb0,0xe5,0x8b,0x73,0x4a,0x2e,0x16,0x15, +0x72,0xf0,0xd3,0x19,0x82,0x85,0xd7,0x99,0xe8,0x18,0x05,0xc8, +0x63,0xb0,0x10,0xad,0xc8,0x7d,0x28,0xdc,0xc0,0xd2,0x3d,0x42, +0x1e,0x43,0xa1,0x36,0x2b,0xd8,0x8b,0x13,0x29,0xbf,0x4e,0xc2, +0xd1,0x19,0xb3,0x2f,0xc0,0xc8,0xfa,0x57,0x1d,0x1d,0xbd,0x5c, +0xcb,0xa0,0xad,0xb9,0x7c,0x04,0x6b,0x62,0xbf,0xca,0x11,0x47, +0xba,0xcf,0x2f,0xd6,0xae,0x5e,0xdf,0xec,0xe4,0xc9,0x0f,0x38, +0x5e,0x73,0xbb,0xbf,0x7b,0x56,0x00,0x7e,0xb3,0x1f,0xa7,0x86, +0xa7,0x53,0x43,0x59,0x93,0x0c,0xb3,0x0a,0x60,0x6c,0x15,0x70, +0x6e,0xa0,0xe6,0x0f,0x06,0x87,0x28,0xc1,0xb8,0x2a,0x7f,0x46, +0xb6,0xac,0x15,0x47,0x61,0x26,0x83,0xfe,0x81,0xa8,0x63,0x8c, +0x63,0x55,0xdb,0xec,0x15,0x6e,0x81,0x5a,0x3e,0x98,0xc1,0x3e, +0x15,0xf0,0x96,0xc7,0x75,0x89,0x93,0x59,0x58,0x30,0x8f,0xcc, +0xc4,0xda,0x4f,0x06,0x33,0x71,0x96,0x39,0x05,0x2b,0x0b,0x60, +0xc3,0x7c,0xcc,0xc4,0xd6,0x3e,0x38,0x05,0x3b,0xf1,0x52,0x3f, +0x5c,0x82,0x3d,0xa8,0x8b,0x84,0x4d,0xa6,0x31,0x66,0x34,0x4d, +0x11,0x19,0x14,0x8d,0x1c,0xc0,0xd2,0x9f,0x41,0x97,0xb2,0x4e, +0xed,0x0e,0xd4,0xfe,0xc4,0xe2,0x9f,0x98,0x40,0xfe,0x80,0xda, +0x19,0xd4,0x20,0xea,0xe4,0xd3,0x28,0x1c,0xec,0xa2,0x36,0x37, +0xde,0x88,0x46,0x8d,0x2d,0x30,0xde,0x84,0x6e,0x78,0x33,0xe0, +0x71,0x2a,0xce,0x60,0x8e,0xb4,0x1e,0xea,0x39,0x5c,0x23,0xf5, +0xbe,0xb3,0x4f,0xd3,0x8f,0x33,0xbb,0x94,0xca,0xbb,0x0a,0xbf, +0xf7,0x50,0xca,0x2a,0x76,0x8a,0x2f,0xc9,0x67,0x75,0x83,0x7f, +0xa9,0xb3,0x42,0xb7,0x7c,0x37,0xa1,0x67,0x6f,0x81,0xa9,0xac, +0xb8,0x1b,0x7b,0xc9,0xc5,0x1f,0x92,0xff,0x38,0xff,0x97,0x2c, +0x86,0x3f,0x3e,0x23,0x74,0xfe,0x9e,0x55,0x9c,0xb0,0x4d,0x34, +0x24,0xcd,0x20,0xda,0xf4,0x09,0x32,0x31,0x40,0x94,0xb1,0xc2, +0x4a,0x28,0x21,0x28,0x82,0x02,0x88,0x0c,0x8a,0xb8,0x96,0x80, +0x48,0x79,0xa4,0x48,0x1d,0x6f,0x4c,0x34,0x71,0x2c,0x70,0xe9, +0xf0,0x7a,0x7e,0x0d,0xbe,0xaa,0x07,0x72,0x01,0x34,0x8c,0x52, +0xf9,0xfd,0x38,0xd6,0x5b,0xdd,0x6e,0xb1,0xef,0x1f,0xc1,0xf0, +0xed,0x09,0xd0,0xe6,0x20,0xa6,0x0b,0x63,0x40,0xd1,0x08,0x15, +0xc5,0x74,0xca,0xc1,0x30,0xf9,0x20,0x4e,0x32,0x90,0x12,0x97, +0xa5,0xc2,0x6d,0x50,0xca,0x84,0x99,0x70,0x51,0x05,0x36,0x09, +0x0e,0xec,0x79,0xb4,0xc9,0xc7,0xe5,0xd5,0x38,0xda,0x52,0x6b, +0xfb,0xf6,0xd5,0x96,0x35,0x96,0xfc,0xfd,0xe6,0x2b,0x7d,0xad, +0x77,0x4a,0x37,0x55,0x5b,0x37,0xf8,0x56,0x7a,0x37,0x26,0xc4, +0x74,0x66,0xc1,0x46,0xde,0x2a,0x5f,0xe1,0x84,0x70,0x9d,0x38, +0x17,0x18,0x5e,0x94,0xa5,0x05,0x38,0xf3,0x9d,0x07,0xbb,0xfc, +0x1b,0xf6,0x70,0x98,0x86,0xf7,0x09,0x5a,0xbd,0x1b,0x12,0x95, +0x7b,0x6c,0x86,0xfe,0xb8,0x48,0xca,0x04,0x94,0x3d,0x48,0x85, +0x7d,0x7f,0x31,0xb5,0x69,0xe9,0x75,0x6a,0xf0,0x3d,0xe8,0xb2, +0x27,0xd0,0x9f,0x04,0xf7,0x06,0x76,0xf9,0x37,0xdb,0x04,0xf1, +0xf9,0x36,0xb9,0xa6,0x19,0xd4,0xb5,0x2f,0xc3,0x36,0x12,0xa2, +0xeb,0xaf,0xe9,0x22,0x6b,0xf2,0xe1,0xab,0xaf,0x16,0x3c,0x4f, +0x7f,0x44,0x51,0xe8,0x3a,0xe1,0x1c,0x19,0xdc,0x02,0x06,0x0c, +0x1c,0x3e,0x0f,0x1e,0x09,0x60,0xd7,0xb4,0xbb,0x97,0x47,0x33, +0x47,0xf4,0x0c,0xc3,0x82,0x28,0x0e,0x4f,0xb2,0xe8,0xb5,0x07, +0x97,0x2d,0x40,0x35,0xd5,0x2e,0xfb,0x1f,0xe1,0xdb,0x72,0x58, +0x19,0x0d,0x36,0xca,0x34,0x08,0x99,0x33,0x1b,0xf2,0xd6,0x67, +0x6f,0xce,0x08,0x92,0xf1,0x8f,0xf6,0xbf,0x08,0x78,0xe6,0xcf, +0x61,0xf4,0x75,0x38,0xc8,0xbe,0xf6,0x79,0xb5,0xfb,0xb6,0x4f, +0x5e,0x27,0xaf,0x5d,0xb2,0xb0,0x7c,0x5e,0x09,0x07,0xde,0x20, +0xad,0x2c,0xd9,0x28,0x9f,0x43,0xc0,0xaf,0x1b,0xfd,0x80,0xd3, +0x43,0x0e,0x53,0xbe,0x6c,0x1c,0x4c,0xc1,0x01,0xa7,0x63,0x94, +0xc9,0x67,0xc5,0x1e,0x4c,0x62,0xf4,0x60,0xba,0x54,0x9b,0x99, +0x02,0xd3,0x29,0x42,0x1a,0x0c,0x24,0xdd,0x42,0x83,0xe9,0x80, +0x60,0x32,0xb8,0x4a,0x34,0x61,0x05,0x80,0x72,0x22,0x36,0xfc, +0xfd,0x65,0x69,0xf2,0x0a,0x22,0x34,0xa0,0x82,0xb4,0x36,0x19, +0x7e,0x11,0xdc,0x48,0x78,0xea,0xd1,0xf3,0xa1,0x43,0xcd,0xf7, +0x80,0xc0,0x9a,0x1e,0x5c,0xf3,0x45,0x8b,0x6a,0x93,0x09,0xac, +0x62,0x0e,0xa1,0xa2,0x03,0x4e,0x41,0x45,0x9c,0x56,0x67,0xcb, +0x7f,0x04,0xee,0x12,0x0c,0x8f,0xfb,0x83,0xc6,0xa6,0xda,0x7e, +0xe1,0x8c,0x54,0xf3,0x21,0x69,0x51,0x7d,0x8d,0x5a,0xb5,0x35, +0x0a,0x7f,0xc1,0xce,0xa1,0x2e,0x80,0xf3,0xd2,0x60,0x7c,0xe1, +0xcf,0xd5,0x5e,0x2d,0xfc,0x82,0x5d,0x38,0xc6,0x0f,0xf5,0x83, +0x39,0x8c,0x65,0xf1,0xbc,0x1f,0x4e,0xd7,0xc6,0xf1,0xaa,0x2d, +0x76,0x2f,0x61,0x4a,0x11,0x2c,0x3e,0x07,0x91,0xca,0x60,0x28, +0x5e,0xb8,0x22,0x5c,0x80,0x59,0xdd,0xd4,0x5c,0x74,0xe4,0x14, +0xa7,0x8b,0xfa,0xf0,0x17,0xb3,0x1d,0xcd,0x70,0x1c,0x45,0xa0, +0x46,0x38,0xba,0xd2,0x92,0xbf,0x59,0xd7,0xdf,0xd2,0xd9,0xcd, +0x89,0x8b,0xae,0xdf,0x16,0x0e,0x6e,0xb9,0x2e,0x64,0x8a,0xb9, +0x6c,0xd7,0x93,0x86,0xd7,0xc5,0xbf,0xd0,0x08,0xcf,0x88,0xff, +0x0c,0x4e,0x27,0xf0,0x42,0x38,0x88,0x2f,0x28,0x5a,0xfd,0x56, +0x3e,0x83,0xd8,0xc2,0x11,0x5d,0x3c,0x6d,0x23,0xdc,0x6f,0xc6, +0x0b,0x37,0xe1,0x78,0x13,0x1e,0xbf,0x0a,0x59,0xcd,0x98,0x75, +0xc7,0x64,0x33,0x26,0xda,0x40,0xa2,0x3e,0x8b,0xef,0x30,0xed, +0xdf,0xca,0x47,0x87,0x42,0xf9,0xe3,0xf0,0x35,0x8c,0xec,0xc1, +0x91,0xa0,0xc3,0xd4,0xa7,0xd6,0xa4,0x97,0x4b,0x81,0x7a,0x93, +0x33,0xb2,0xee,0x1a,0x07,0xd3,0x2d,0xf9,0xea,0xd8,0xba,0x84, +0xfa,0x21,0xed,0xa3,0xb9,0x26,0x30,0x8d,0x8d,0x98,0xe6,0x8a, +0x5f,0x69,0xe0,0xc4,0x0a,0x6b,0xfe,0xc9,0x6f,0x85,0x4f,0xcf, +0x3f,0xa3,0x43,0x61,0xd9,0xf9,0x45,0xfb,0x88,0x86,0xe9,0xe7, +0xa8,0x59,0x5f,0xa6,0x20,0x94,0x82,0x2b,0x11,0xa3,0xc4,0x51, +0x42,0x14,0x63,0x02,0x4f,0x88,0x91,0x38,0xb1,0x8f,0x15,0x26, +0xaa,0xff,0xef,0x8e,0xbe,0x38,0xf1,0x2a,0xbb,0x08,0x13,0xc9, +0x8f,0x59,0x2f,0x2a,0x5b,0xca,0xdc,0x6a,0x78,0x27,0x1f,0x4d, +0xef,0x65,0x07,0x38,0xf8,0x57,0x29,0x79,0x14,0xf4,0xd8,0xe7, +0xa6,0x57,0x61,0x0b,0xbf,0xad,0x74,0x79,0xc9,0xd6,0x34,0x4e, +0x11,0x72,0xa9,0x53,0x66,0x7b,0x67,0x79,0x65,0xb9,0xb7,0xe7, +0xf0,0x87,0x0a,0x0e,0xe5,0x1f,0xbc,0xc0,0x81,0x66,0x0b,0x4d, +0x4d,0x49,0x59,0x09,0x59,0x71,0xd9,0xe6,0xa9,0xbc,0xd7,0x56, +0x6b,0xbd,0x2d,0x16,0xb5,0xae,0x7c,0x65,0x61,0x59,0x59,0x61, +0x05,0x07,0xff,0xb3,0x98,0xe4,0x17,0xe4,0x16,0x67,0x96,0x70, +0xef,0x99,0x2c,0xdf,0x4c,0x9f,0x0c,0xaf,0xb6,0x2c,0x3e,0x24, +0xff,0x50,0xee,0xa1,0x5c,0x0e,0x8c,0x5b,0xf0,0x0e,0x93,0x90, +0x2d,0x95,0x45,0x59,0x24,0xf1,0x81,0x3b,0xdc,0xf4,0xad,0xcc, +0x39,0x78,0x8a,0x6b,0x88,0xf4,0xeb,0xcf,0x18,0x69,0x26,0x6f, +0x8e,0xf4,0x67,0x98,0x0d,0x0c,0x9b,0x8b,0xe3,0xad,0x84,0xac, +0x56,0xfc,0x4e,0xa2,0x55,0x07,0x49,0xe4,0x00,0x2c,0x6f,0xc5, +0xe5,0x6f,0x40,0xad,0x15,0xd5,0xde,0x33,0xed,0x31,0x2d,0x71, +0x97,0x13,0x42,0x9b,0x79,0xe7,0x08,0xfb,0x48,0xdb,0x48,0xae, +0xdd,0xcc,0x98,0xb5,0x38,0x2e,0x3b,0x21,0x3b,0x19,0x6d,0xc5, +0xb7,0x9f,0x6d,0x3f,0xdb,0x16,0xcd,0x2d,0xc5,0xd9,0x56,0x30, +0x7b,0x29,0x6e,0xb4,0x82,0x45,0xec,0xbe,0x8d,0xe6,0x9b,0x16, +0x69,0x55,0x39,0xf1,0xbf,0x7c,0x5f,0x7a,0x35,0x49,0xaa,0xb7, +0x2c,0xe8,0x82,0xfd,0x4c,0x4c,0xf4,0x69,0xa9,0xcf,0x8e,0x02, +0x2a,0xd6,0x55,0x23,0x03,0xa3,0xc3,0x93,0x22,0xce,0x84,0x87, +0x2b,0x0b,0x5e,0x34,0x11,0xcc,0xc5,0x39,0xbf,0xb0,0x5b,0xc5, +0x87,0xa4,0x1d,0x5a,0x2c,0xba,0x04,0x46,0x9c,0x2f,0x32,0x2c, +0xfc,0x05,0x47,0x09,0x36,0x3f,0x83,0x66,0x06,0x9b,0x69,0x2c, +0x87,0xe6,0x65,0xd8,0x4c,0x0d,0xfa,0x1d,0xc8,0x49,0x4c,0xf0, +0xf9,0x03,0xd1,0x07,0x1a,0x33,0xf8,0x03,0xb7,0x03,0xef,0xfa, +0xf7,0xd8,0xd1,0x90,0xe7,0x97,0xe4,0x9d,0xe8,0x69,0x1b,0x69, +0x1d,0x65,0x75,0xfc,0xca,0x8b,0xeb,0xa0,0xd0,0x03,0x5f,0x5b, +0x17,0xf0,0x7e,0x86,0x5e,0x7a,0x1e,0x46,0xc1,0x79,0x41,0xb9, +0x41,0x79,0x95,0x57,0xca,0xef,0x16,0xdc,0xb4,0xca,0xa5,0xc3, +0xe1,0xb3,0xdd,0x4b,0xe6,0x54,0xc3,0x7b,0x3a,0xb6,0xda,0xb7, +0x5a,0x5c,0x36,0x53,0xf6,0x77,0xf6,0xdf,0x15,0xe8,0xe5,0x7b, +0xd2,0xf7,0x94,0xdf,0xa9,0x68,0x33,0xbe,0xfd,0x5c,0xc7,0xf9, +0xf6,0xf3,0x9c,0xb8,0xbc,0x4b,0xd0,0x64,0x4b,0xce,0x97,0x9c, +0x2f,0x8a,0xa6,0xe3,0x0d,0x7a,0xe4,0x26,0x1c,0xa4,0x9c,0xe4, +0x2a,0x9c,0x6f,0xc6,0xf3,0x77,0x4c,0x37,0xe3,0x09,0x1b,0x38, +0xa1,0x8f,0x7b,0x6d,0x61,0xef,0x90,0x45,0x76,0x37,0xb3,0x8e, +0x33,0x88,0xe8,0x27,0x8e,0x16,0xfc,0x18,0x53,0x78,0x4a,0x8c, +0x70,0xb0,0x8f,0x85,0x41,0xf5,0x2f,0x3b,0xe8,0xe6,0x47,0xd2, +0xf5,0x12,0x37,0xc4,0x6e,0x6a,0xcb,0xe0,0x8f,0xde,0x38,0xfc, +0xe8,0xe0,0x15,0x0e,0x63,0xb0,0x81,0x94,0xbf,0xc8,0xf8,0x2d, +0xe1,0xa3,0x55,0x2c,0x7f,0x74,0x59,0xf0,0x32,0xcf,0x35,0x9c, +0xfc,0x06,0x68,0x13,0x3d,0x1c,0x1c,0x60,0xe7,0x52,0x13,0x7a, +0x9d,0xfd,0xac,0xb2,0xa9,0xcc,0xad,0x9a,0x77,0xf6,0xd5,0xf2, +0x5c,0x75,0x90,0x83,0x3f,0xca,0xc8,0xfd,0xa0,0x7b,0xbb,0x07, +0xbc,0x0a,0x9b,0x79,0x83,0xd2,0x55,0xa5,0x3b,0xa8,0x09,0x7d, +0xb6,0x16,0x56,0x48,0x51,0x5a,0x71,0xed,0x33,0x58,0xae,0xd2, +0xb1,0xdd,0x9c,0xc5,0x15,0x5b,0xd6,0xe2,0x3f,0x34,0x33,0x5d, +0x30,0x6b,0x48,0xaf,0x49,0xad,0x4a,0x53,0x16,0xf7,0x5f,0x05, +0x13,0xe1,0x1c,0x75,0x3d,0x1b,0x56,0x6a,0xed,0xbe,0x85,0xa2, +0xda,0x8c,0x66,0x35,0x61,0x36,0x5b,0x75,0xb8,0xe6,0x70,0xc3, +0x21,0xee,0x5f,0xc3,0x84,0xa5,0xc4,0x1c,0xaa,0x3a,0x58,0x68, +0x54,0x32,0x87,0xcb,0x1d,0xec,0xe0,0x08,0x9a,0x22,0xfe,0xe8, +0xee,0x19,0x48,0xf9,0x85,0x8b,0x65,0xd2,0xe7,0xf6,0xe9,0xfd, +0x63,0x2a,0x15,0xea,0xac,0xa1,0xcc,0xb2,0xa8,0x93,0x15,0xde, +0x2a,0x61,0xa5,0x0c,0x2a,0x99,0xc1,0x2d,0x98,0x42,0x3e,0x08, +0xe7,0xe6,0xb1,0xe2,0x39,0x0b,0x22,0x9c,0x9b,0x2b,0x9e,0x1b, +0x82,0xdb,0x6d,0xe4,0x3a,0xfc,0xde,0x84,0xbf,0x0f,0x08,0x2a, +0x4d,0xa2,0x4a,0xb7,0x9e,0xa9,0x38,0xc6,0x56,0x18,0xa3,0x87, +0xbf,0xd9,0xc2,0x6f,0xdb,0x45,0x0d,0xeb,0xcf,0xa3,0x5b,0x58, +0xa9,0xbb,0x1d,0x19,0x5c,0x2e,0x4e,0x94,0x2f,0x67,0x0c,0x20, +0x8f,0x46,0xb1,0x81,0x2f,0x51,0x6c,0x38,0x8d,0x62,0xfa,0x34, +0x88,0xd9,0x8f,0x14,0x1a,0x74,0xe9,0x96,0x12,0x24,0x4b,0x02, +0xdf,0xe6,0xc2,0xb0,0xf2,0x47,0x95,0x6e,0xf5,0xbc,0xb6,0xc7, +0x2c,0x1f,0x54,0x0a,0xe2,0x84,0xcb,0x95,0xe4,0x8f,0x7d,0xf0, +0xb5,0xd7,0xef,0x1e,0xc5,0x6d,0xfc,0xec,0x12,0xfc,0xa6,0x64, +0x6a,0xae,0x34,0x87,0x20,0xc4,0x10,0x71,0x03,0xcd,0x30,0xd8, +0x8b,0x08,0x63,0xb6,0x53,0x9e,0xf7,0xb3,0x31,0xfc,0x8c,0x33, +0xc5,0x25,0xc6,0x70,0x9f,0x39,0x81,0x69,0xb6,0xcb,0x28,0xd8, +0x1a,0x55,0x6d,0xce,0xc3,0x41,0x98,0xd4,0xf3,0xcf,0x79,0xa8, +0xa1,0x6e,0x27,0x5a,0xa3,0x26,0x93,0x66,0xa4,0x00,0xb3,0x98, +0xc6,0x9c,0xcc,0xcb,0x6a,0x82,0x0c,0x1a,0xd8,0xc1,0xe8,0x6d, +0xc4,0x77,0x8d,0xf5,0xda,0x75,0x5b,0x5a,0x9c,0xf9,0x47,0x0f, +0xba,0x7f,0x2a,0x7a,0xcd,0x09,0x67,0xf7,0x92,0x4e,0xcd,0x36, +0x8d,0xea,0x19,0x3d,0x85,0xbc,0xf3,0x5f,0xb2,0xdf,0xac,0x9e, +0x0c,0xad,0xa7,0xd6,0x27,0x78,0x02,0xa6,0x1a,0xd1,0x2c,0x1b, +0x66,0x06,0x6b,0x67,0x31,0x18,0xed,0x2c,0xe9,0xbe,0xe0,0x64, +0xd5,0x7a,0x47,0x05,0x98,0x0f,0x33,0x9a,0xc0,0x11,0xf2,0x54, +0x7e,0x7b,0x35,0xa8,0x82,0x2a,0x43,0xcb,0x83,0x15,0x99,0xba, +0xb4,0xb4,0xcb,0x6a,0xf2,0x49,0xa0,0xc3,0x0e,0x6e,0xc0,0x5f, +0xc8,0x97,0x26,0x98,0x2b,0x7e,0x82,0x06,0x4a,0x34,0x1b,0x80, +0x17,0x2d,0x98,0xc0,0xa8,0x80,0xe3,0xfe,0x51,0x9c,0x30,0x56, +0x26,0xf2,0xec,0x81,0x13,0x07,0x4e,0x1e,0x38,0x21,0x35,0xd4, +0x57,0xce,0x86,0x51,0x17,0x7e,0x2f,0x39,0xde,0xc9,0xbb,0x86, +0xbb,0x1e,0x71,0x89,0xe0,0x2a,0xe5,0xab,0x08,0xea,0xa3,0x16, +0xe8,0xb3,0x72,0x43,0xdc,0x4f,0x8a,0x70,0x74,0x3e,0xae,0x4e, +0xc1,0xc9,0xdd,0xb9,0x7c,0x08,0xa8,0xf8,0xc1,0x82,0xdd,0x30, +0x9a,0x13,0xbd,0xc5,0x59,0x84,0xe6,0xed,0x22,0x98,0x1e,0x0b, +0xdf,0xca,0x12,0xf8,0x63,0xa8,0xee,0x87,0xc4,0x70,0x3e,0x85, +0x37,0x9b,0x86,0x82,0xac,0xbf,0x2e,0x1e,0xb3,0x11,0x2e,0x37, +0x63,0xf4,0x4d,0x08,0x6a,0xc2,0xa0,0xab,0x70,0xba,0x19,0x4f, +0x4b,0x56,0x1f,0x69,0x03,0x91,0x34,0xc8,0x26,0x89,0x99,0xc4, +0xe5,0x90,0x4b,0x88,0x4b,0x28,0x07,0xae,0xc0,0x74,0x50,0xaf, +0x5e,0xf2,0x06,0x2e,0x63,0x01,0x4d,0xa6,0x93,0xc5,0xed,0xec, +0x86,0x20,0x05,0x81,0x93,0x89,0x4a,0xec,0xc1,0xe3,0x07,0xa2, +0x0e,0x1c,0x4f,0x30,0xe6,0x41,0xa9,0x0c,0x14,0x4a,0xe0,0xab, +0x26,0x6e,0x89,0x7c,0x31,0x41,0x03,0x9a,0x88,0x0c,0x58,0x79, +0x1a,0x0e,0x10,0xd1,0x8b,0xfa,0x8c,0xd7,0x90,0xcf,0x18,0xa2, +0xd0,0xcf,0x82,0xa0,0xfe,0xbf,0x3b,0x7a,0x28,0x0c,0xb0,0x48, +0xa8,0x2b,0xfc,0x92,0xfd,0xa6,0xb2,0xbd,0xd4,0xbd,0x96,0xb7, +0xf7,0x59,0xe6,0xb9,0xe0,0x20,0x27,0x7c,0x2d,0xb9,0xc2,0x83, +0xdd,0xd7,0x24,0x57,0xd0,0x2f,0x5d,0x59,0xba,0x5d,0x9a,0xff, +0xdd,0x23,0x9f,0x2c,0x55,0xb9,0xe9,0x08,0x99,0xe8,0xcb,0xa6, +0x95,0x27,0x57,0x48,0x9d,0x40,0x7d,0x3a,0xc5,0x93,0x32,0x08, +0x64,0x8e,0x78,0x87,0xba,0x1f,0x70,0xe3,0xd0,0xe3,0x57,0xd2, +0x83,0x9f,0x4c,0xe0,0x3b,0x76,0x2f,0x2e,0xb3,0xc2,0x6f,0x97, +0xe0,0x88,0x62,0x7d,0xfe,0x42,0x51,0x76,0x69,0x46,0x19,0x27, +0x6e,0xee,0x7d,0x0c,0x36,0x42,0x20,0xca,0xd8,0xa2,0x47,0xd9, +0x4f,0x53,0x7e,0xe4,0xe0,0x22,0x46,0x7f,0xe1,0xb3,0x83,0x33, +0x44,0x9a,0x5e,0xbf,0x02,0x75,0xf1,0x2b,0x56,0x48,0x16,0xbe, +0xa2,0x08,0x6f,0xe0,0xd3,0x50,0x69,0xdc,0x00,0x45,0xf8,0x03, +0x0c,0xd8,0x23,0x4b,0x7a,0x3c,0x1f,0x59,0x74,0xd8,0x56,0x5c, +0xe6,0xcd,0x2f,0x6f,0x68,0x36,0x2e,0xe3,0xf0,0x67,0xdc,0x4c, +0x9e,0x55,0x5d,0x6d,0x6c,0x6f,0x77,0xa8,0xe4,0xed,0x6d,0xf4, +0x1c,0xd7,0x4b,0xa5,0x71,0xda,0xc2,0x44,0x62,0x9a,0xae,0x80, +0xfb,0x70,0x38,0xeb,0x14,0x96,0x54,0x27,0x89,0xfa,0x40,0x6a, +0x5b,0x78,0x2f,0x9e,0xb7,0x51,0x80,0x53,0x7a,0x98,0xc8,0xe2, +0x88,0x7d,0x49,0x46,0xbf,0x66,0x29,0x60,0x3b,0xbb,0x35,0xdf, +0xf7,0x81,0x2a,0x8c,0x63,0x1a,0xd2,0xb2,0xeb,0xd4,0xc2,0x85, +0x0e,0x02,0x2b,0xac,0x18,0x7c,0x64,0x4f,0xf3,0xe8,0x4a,0x34, +0x51,0x6d,0xb1,0x56,0x80,0x8d,0xe0,0xd4,0x02,0x7e,0xf0,0x5c, +0xa5,0x19,0xbc,0x17,0xb2,0xa8,0x13,0x8e,0xe6,0x41,0x38,0x4f, +0x75,0x41,0x98,0xcf,0x3e,0xad,0x29,0xd3,0xa5,0xea,0x81,0xdf, +0x19,0x18,0x51,0x57,0x0b,0xca,0xe9,0x6a,0xd9,0xb0,0x30,0x11, +0x2c,0x41,0x47,0x05,0xe6,0x8b,0xe7,0x29,0x06,0xf9,0xd4,0x4b, +0xd0,0x44,0x18,0x07,0x21,0xf0,0xd4,0x10,0x73,0x71,0x3d,0xbc, +0x35,0xc0,0xb7,0xb8,0x1c,0x72,0x8d,0xf0,0x29,0xec,0x11,0xc7, +0xe1,0x66,0xa8,0x30,0x14,0x57,0xf4,0x3f,0x10,0xd6,0xad,0xbf, +0x22,0xac,0x30,0x60,0xc4,0x9c,0x01,0xe2,0x2d,0xad,0xf2,0xa5, +0x06,0x70,0x00,0xbe,0xea,0xc6,0xaf,0xbe,0xf4,0x3d,0x9e,0x68, +0x0a,0x13,0xf1,0x1c,0x6b,0x77,0xc8,0xee,0x3f,0xfa,0x45,0x75, +0xc9,0x75,0x29,0x92,0x7e,0x11,0x27,0x55,0xbf,0xbe,0x67,0x9a, +0x32,0xa4,0xfa,0x86,0x56,0xb6,0x32,0xb5,0x2a,0xb5,0x82,0x3e, +0x31,0xf8,0x47,0x58,0x40,0xdc,0x0e,0xb9,0x52,0x63,0xe2,0xe8, +0xd7,0x0f,0x7d,0xd2,0x50,0x1d,0xad,0x92,0x29,0x28,0x61,0x0c, +0x6b,0x7b,0xc8,0x36,0xd4,0x5e,0xaa,0xa3,0x95,0x3a,0x28,0xd7, +0x0f,0x55,0x6b,0x8d,0x96,0xaa,0xb5,0x3e,0x30,0xcd,0xe9,0x99, +0x43,0x1d,0x94,0xeb,0x24,0x25,0xa4,0x0c,0x0e,0xae,0x0b,0xaa, +0xe4,0x27,0x83,0xc5,0x78,0x4e,0x26,0xdc,0xef,0x64,0x93,0xa4, +0x22,0x18,0x5d,0x26,0xb7,0x31,0xab,0x33,0xb9,0x51,0x96,0xc6, +0x87,0xc8,0x82,0x65,0x7e,0x32,0x4e,0x1c,0x6e,0x06,0x09,0x4c, +0xb0,0xcb,0x5e,0x47,0xa9,0xd1,0x97,0x91,0x19,0xcc,0x63,0x7c, +0x9d,0x7d,0x9c,0xbd,0x5d,0xaf,0xfb,0xdf,0xf2,0xb9,0xe5,0xb3, +0xc9,0x79,0xf1,0x1e,0x1c,0x7e,0x38,0x53,0x92,0xb0,0xc9,0xfa, +0xb3,0xe2,0x69,0xe7,0x53,0xb7,0xc7,0xae,0xb7,0xdd,0x4b,0xdb, +0x79,0xdd,0xb2,0x4d,0x65,0x5b,0x4a,0xba,0xda,0x6a,0xaf,0x15, +0x3d,0xe5,0x7e,0xe9,0xc2,0x4f,0xcc,0x85,0xda,0xdc,0xfa,0xcc, +0x5a,0x0e,0x2a,0x18,0x71,0xf2,0x6b,0x12,0x56,0xbf,0xbf,0x25, +0xa8,0xca,0x32,0x88,0xcf,0xd9,0x99,0x61,0x9f,0xe4,0xc4,0x41, +0x31,0xc6,0x90,0x3d,0x9b,0x5d,0xcc,0x64,0x8e,0x06,0xf9,0xc6, +0x17,0xac,0xb2,0x2f,0x14,0xe7,0x95,0xe6,0x94,0x73,0x52,0xd9, +0xf0,0x6c,0xe2,0x13,0xba,0x3b,0xd4,0x3b,0x5c,0x5a,0x20,0xfd, +0x4d,0x37,0x7e,0xf3,0x65,0xe8,0x78,0x53,0x8a,0xe5,0xcf,0xb2, +0x36,0x52,0xcb,0xe8,0x30,0x3a,0x74,0xf5,0x89,0xf5,0x29,0x0d, +0x43,0x85,0xc3,0xdf,0x48,0x43,0xf7,0xf1,0xbf,0x2d,0xa3,0xcb, +0x93,0xcb,0x52,0xcb,0x52,0xb9,0x0f,0x3d,0x64,0xcf,0x49,0xff, +0x53,0x01,0xa7,0x62,0x64,0x3c,0x7c,0x17,0x03,0xcb,0x12,0x61, +0x46,0x1a,0xb7,0xa5,0xe7,0x21,0xfb,0x21,0xe9,0x64,0x9b,0xcf, +0xf1,0xdd,0xc7,0xbd,0x4e,0x28,0x43,0xff,0x4f,0xed,0xe2,0x9f, +0x16,0x3f,0xb2,0xc2,0x48,0xa5,0x4d,0x38,0x70,0x97,0xa5,0x96, +0x3a,0x96,0xfc,0x67,0xcf,0x8c,0x68,0x1c,0xc1,0x61,0x47,0x67, +0x44,0x72,0x6f,0x61,0x80,0x5d,0x80,0x7f,0x91,0x67,0x15,0xcf, +0xea,0xaf,0xb6,0xb8,0xd6,0xf1,0xa6,0x76,0x6b,0x1d,0xb5,0xbc, +0xb8,0x65,0x47,0x89,0xe1,0xe5,0xcd,0xb5,0x3b,0x8a,0x3d,0x1c, +0xf9,0x1b,0xde,0x77,0x1d,0x7b,0xe9,0x9d,0x29,0xac,0x25,0xbf, +0x3b,0xfe,0x6c,0x71,0xd3,0xae,0xa2,0x95,0x5f,0xdf,0x32,0xb7, +0x6d,0x7e,0x35,0x27,0x7e,0x8d,0xe6,0xe4,0x8f,0x8a,0x8f,0x6d, +0x0f,0xbb,0x3c,0x1a,0xf8,0xf5,0xe6,0x73,0x6d,0xe7,0x48,0x36, +0x3e,0x45,0x52,0xb9,0x3a,0xec,0x72,0x58,0x0a,0x13,0x41,0xa0, +0xd8,0x8b,0x8a,0xb0,0xdd,0x00,0xb7,0xe3,0x2a,0x63,0x58,0x45, +0x01,0xb4,0xf1,0x01,0xa3,0xc3,0x66,0x61,0x89,0x46,0x7c,0x7b, +0x52,0x57,0x6a,0x67,0x1a,0x87,0x15,0x38,0x7b,0xa8,0x99,0xdc, +0x38,0xa6,0x2d,0x3d,0xb3,0x55,0x0d,0x9a,0xd8,0xfa,0xd4,0xba, +0xb4,0x9a,0x74,0xa9,0x64,0x7c,0x3e,0x81,0x1d,0x2c,0x68,0xa7, +0x82,0x6a,0xd1,0xdf,0x35,0xde,0x6d,0xfc,0x54,0x17,0x54,0xf1, +0x45,0xa7,0x03,0x14,0x5c,0xb3,0x18,0xed,0x83,0xea,0xab,0x71, +0x92,0x6a,0xab,0xfd,0x6b,0xf8,0xb6,0x0c,0x16,0x9e,0x83,0x08, +0x65,0xd8,0x25,0x66,0x0f,0x08,0xd9,0xb0,0x96,0x02,0x50,0xe1, +0xb9,0xfc,0x28,0xa1,0xdf,0x69,0xc7,0x18,0x64,0xed,0xbf,0xa2, +0xda,0xc6,0xd4,0x25,0x66,0x52,0x8f,0x1b,0xcd,0x5a,0x64,0x2a, +0xe0,0x6c,0x47,0xd6,0xff,0x68,0xec,0x45,0x35,0x38,0x8b,0x45, +0x33,0x59,0x1c,0xbe,0xcf,0x54,0xd7,0x48,0xb5,0xc2,0x5e,0xe1, +0xfe,0x8d,0xca,0x47,0xf0,0x8d,0x8a,0x78,0x0a,0x86,0x13,0x33, +0x68,0xef,0x62,0x4b,0xa4,0x69,0x44,0x51,0xc1,0x94,0xad,0x93, +0xa6,0x11,0x6b,0xbb,0x58,0xe1,0xba,0x58,0x43,0xd6,0x94,0xeb, +0xd6,0x19,0x37,0xdd,0xbb,0xd7,0xfc,0x32,0xff,0x7b,0xae,0x51, +0x5c,0x6b,0x06,0x02,0xbb,0x4f,0xcf,0x59,0xd7,0xc0,0xd0,0xb8, +0xd3,0xae,0xdf,0xf5,0x8a,0x95,0x1f,0x5f,0xab,0xdb,0xa4,0xd7, +0x6f,0x6c,0x68,0xbd,0xde,0x71,0x89,0xd7,0x05,0x19,0xff,0xb1, +0xf2,0x79,0xd3,0x8d,0xae,0x2b,0x16,0xf7,0xed,0xde,0xb8,0x70, +0x62,0x95,0x30,0x8f,0x74,0x61,0xad,0x19,0xdb,0x25,0xce,0x25, +0x1d,0x10,0x06,0x79,0xd8,0x80,0x8f,0x59,0x08,0x87,0x5c,0x82, +0xcb,0x50,0x17,0x96,0x51,0xf0,0x9b,0x2d,0x7f,0x40,0xf4,0x16, +0x88,0x2a,0xb8,0xbd,0x1f,0xc6,0xc1,0x31,0x26,0x0c,0x99,0x8d, +0x96,0xa8,0xbb,0x3b,0x87,0x3e,0x7b,0xfd,0xd2,0xbf,0x6e,0xa5, +0xc2,0x5c,0x0e,0xc6,0xa1,0x1a,0xa3,0x97,0x73,0xe0,0x96,0x2a, +0x2c,0x67,0xea,0xd3,0xd3,0x2b,0xd4,0xae,0xf7,0xc3,0x32,0x71, +0xae,0xd4,0xba,0x50,0x8d,0xac,0xc4,0xb9,0xac,0xc7,0xd1,0xe8, +0x52,0x35,0xca,0x03,0xa4,0x5c,0xad,0x25,0xae,0x26,0xa6,0xa9, +0x0a,0xa8,0x4a,0x39,0xa8,0xe7,0x91,0x58,0x7a,0x7c,0x21,0x0b, +0x31,0xe5,0x91,0x1d,0x78,0xda,0x53,0x01,0x58,0x43,0x1c,0xcb, +0xe2,0xa8,0x43,0xb1,0xe6,0x30,0x82,0x9e,0xb4,0x80,0xdd,0x56, +0xb0,0x7f,0x40,0x15,0x54,0x98,0xcb,0x99,0x52,0x8d,0xe4,0x76, +0x28,0x20,0x91,0x68,0x60,0xb9,0x18,0x97,0xaf,0xad,0xb4,0xe6, +0x61,0xfd,0xeb,0x01,0x18,0x11,0x2b,0x89,0xa4,0xae,0x63,0x4e, +0xce,0x3d,0xbe,0x22,0x64,0x03,0x67,0x7c,0x24,0x30,0xc8,0x60, +0xca,0x52,0x26,0xd5,0x4c,0xe1,0x19,0xf3,0xb1,0xb2,0xf2,0x51, +0xb2,0x5a,0xea,0x9b,0x98,0x9f,0xce,0xc2,0x62,0x4e,0x34,0x90, +0x24,0xd0,0xd2,0xe5,0xeb,0x48,0x9e,0x6b,0xae,0x73,0x8e,0x63, +0x7b,0x1e,0x7f,0xa0,0x22,0xb8,0x74,0x3f,0xa5,0x44,0x4b,0x3b, +0xb0,0x90,0x49,0x2d,0x4c,0x2e,0x8c,0x2f,0x34,0x4d,0xe1,0xbd, +0x96,0x59,0x68,0x6e,0xd8,0xd6,0xe0,0xc2,0x57,0x55,0x94,0xd7, +0x14,0xd6,0x73,0x82,0x59,0x07,0x49,0x2e,0x4c,0x2c,0x8a,0x2b, +0x34,0x4d,0xe2,0x03,0x56,0x3a,0xae,0x31,0xd2,0x6d,0xf4,0xe0, +0x8b,0xcb,0xf3,0xab,0x73,0x6b,0xb8,0x9f,0x19,0xe9,0xd3,0x72, +0x1d,0xdb,0x72,0x87,0x3e,0x2d,0xa8,0x94,0x03,0xbb,0x0e,0x66, +0x70,0x84,0x78,0x87,0x64,0xee,0xc9,0xf6,0xce,0xf4,0xde,0xbe, +0x6f,0xdd,0x01,0xad,0x21,0x81,0x94,0x6b,0xf0,0x52,0x1c,0x25, +0xd6,0xfc,0x1f,0xf5,0x36,0x92,0x03,0x7c,0xf1,0xa7,0x8a,0x34, +0xdf,0x54,0xbf,0x94,0x3d,0x6d,0x85,0xbc,0xeb,0x03,0xab,0xe7, +0xf6,0xfd,0x1c,0x1c,0xa7,0x6c,0x42,0xb8,0x01,0xfe,0x22,0x8b, +0xf3,0xa5,0xe2,0x65,0xf8,0x96,0x69,0xcc,0x48,0xa5,0xc0,0x60, +0x39,0x7e,0x1a,0x1c,0xce,0xa2,0xaa,0x70,0x9b,0x2c,0xc5,0xf3, +0x6f,0x58,0x38,0x8f,0xdf,0x91,0x05,0x78,0xfe,0x3d,0x2b,0xcd, +0x4a,0xad,0x66,0xfc,0xfe,0x3d,0x2b,0x35,0x8e,0x12,0xc2,0xaf, +0xd9,0x82,0xd6,0xc2,0x5b,0x19,0xbd,0xa6,0x59,0xfc,0xfe,0xed, +0xfe,0x5b,0xa4,0x59,0xa9,0x52,0x7c,0x0c,0xc3,0x98,0xe3,0xb8, +0xce,0x75,0x3d,0xaa,0x68,0x71,0x90,0x26,0x3d,0xf3,0xee,0x0e, +0x08,0x65,0x0b,0xac,0x61,0xde,0xeb,0xf6,0x8f,0xd1,0x60,0xad, +0x0c,0x5f,0xfd,0x67,0x82,0xea,0x37,0xa6,0x2a,0xf5,0x7f,0x27, +0xa8,0x6a,0x84,0x23,0x24,0xa0,0xdb,0xfb,0xca,0x9e,0x7a,0xcb, +0x3d,0x7c,0xa1,0x43,0x91,0x71,0x1e,0x05,0x66,0x41,0xb0,0x94, +0x1a,0x65,0x47,0x17,0x8b,0x3f,0x0d,0xfd,0x1e,0xf0,0x67,0x37, +0x2b,0xd8,0x68,0x49,0x33,0x4a,0x3f,0x83,0x0f,0x2b,0xae,0x36, +0xa2,0xaf,0xd6,0xd1,0x57,0x65,0x23,0xbb,0xb0,0xce,0x8c,0xed, +0xc6,0x26,0x02,0xcb,0x40,0x17,0x97,0x0d,0xad,0xb7,0x8e,0x24, +0x92,0xa6,0x4a,0x81,0x05,0xfc,0xa3,0x2b,0x12,0x3c,0xd4,0x0f, +0xdb,0xe0,0x11,0x1e,0xbb,0x02,0xc7,0xe0,0x1d,0x6e,0xeb,0x87, +0x43,0xe2,0x4c,0x06,0x9f,0x4c,0xa5,0xd0,0xc0,0xb1,0x89,0x05, +0x7d,0x25,0x5b,0xf0,0x69,0x62,0x87,0x04,0xdd,0x9a,0xd1,0xd1, +0x86,0x15,0x7e,0x57,0x6a,0x46,0x1f,0x1b,0x16,0x6c,0x51,0x9d, +0xcc,0x1b,0x1c,0x61,0x2e,0x1f,0xa1,0x31,0x38,0xdd,0x4c,0x3e, +0xdd,0x68,0x40,0x58,0x33,0x68,0x2d,0xa3,0x63,0xc2,0x2b,0x61, +0x17,0xe3,0x16,0x9a,0x58,0xa9,0x06,0x56,0xc2,0x68,0xb8,0x85, +0xea,0x6c,0x59,0x43,0x79,0xcf,0x85,0x1e,0xae,0x16,0x8f,0xb0, +0xf1,0x39,0x71,0x39,0xb1,0xd9,0x46,0x29,0xbc,0xff,0x32,0xa3, +0xe9,0xab,0x35,0x6b,0xed,0xf9,0xe4,0x64,0x05,0x31,0x84,0xd5, +0x2a,0xdc,0xf7,0x48,0x15,0x6a,0x98,0xfe,0xa4,0xb4,0x6e,0x35, +0x50,0x67,0xcd,0x32,0x14,0xc4,0xbb,0xf0,0x88,0xa4,0xf8,0x25, +0x7b,0x25,0x79,0x5a,0x46,0x9a,0x47,0xc9,0x8e,0x5f,0x7b,0x79, +0x1b,0x14,0xfa,0x86,0x9a,0xde,0xfa,0xe8,0xbb,0x6d,0xdf,0x65, +0x10,0x74,0x61,0xef,0x85,0xc0,0x0b,0xd5,0x57,0x2a,0xbf,0x34, +0xbd,0x0d,0xd0,0xf3,0xda,0xe1,0x21,0x35,0xbd,0x4d,0x3d,0x94, +0xe2,0xee,0xc0,0x77,0xd9,0x76,0xca,0x5a,0xa4,0xa6,0xb7,0xee, +0x81,0xbb,0x3d,0x4e,0x7a,0x9c,0xf2,0x38,0x15,0x63,0xc2,0xf7, +0x9e,0xeb,0x3f,0xdf,0x1b,0x4d,0x79,0x68,0xaf,0xb0,0x9c,0xad, +0x38,0x5f,0x71,0xbe,0x3c,0x3a,0xfa,0x3f,0x4d,0x6f,0x83,0xef, +0xf8,0xdf,0xf3,0xeb,0xe5,0xe0,0xbb,0x4b,0xa4,0xa6,0xb1,0xbc, +0xed,0x62,0x1b,0x07,0x96,0xcc,0x7e,0xfb,0x5d,0x26,0xae,0x76, +0x9c,0xa7,0x25,0x41,0x77,0x9c,0x0c,0xee,0x2c,0x18,0xa2,0x3b, +0x01,0x77,0x50,0x46,0x77,0x56,0xac,0x75,0x22,0x79,0x5b,0x32, +0xd7,0xa6,0x68,0xb5,0x67,0xf3,0x21,0xf7,0xf7,0x3d,0x0f,0xb8, +0x29,0x85,0xf1,0x26,0x52,0xfb,0x2a,0xe7,0x3f,0x4d,0x6d,0xf7, +0x2e,0x77,0x59,0x4d,0x11,0xe3,0x36,0xa1,0x8c,0x88,0x5a,0xb0, +0x89,0x81,0x09,0xc9,0x30,0x36,0x0b,0x86,0x97,0xec,0xee,0xe2, +0x71,0x97,0x21,0xa6,0x1e,0xc4,0xb4,0xa8,0x24,0x23,0xfe,0x9f, +0x73,0x30,0xf2,0x3c,0x0c,0x8f,0xe7,0x50,0x5b,0x9c,0x67,0x24, +0xcc,0xc3,0xd5,0x58,0x2d,0x4e,0xbe,0xd6,0x2b,0x5c,0x34,0xbe, +0x26,0x4c,0xc6,0x7e,0x58,0x2d,0x68,0xb1,0x83,0xb6,0x52,0xd3, +0x5b,0x37,0xe1,0x22,0xba,0xb1,0x8a,0x40,0x9f,0x1a,0x49,0x72, +0x4d,0xb4,0x49,0xb4,0x5e,0x13,0xc4,0x83,0x07,0xf0,0x82,0x12, +0xf2,0xb0,0xc8,0x0c,0x17,0x21,0x11,0x95,0x80,0xe0,0x5e,0x56, +0x16,0x66,0x16,0x61,0x1c,0x41,0x3f,0x1e,0x14,0x32,0x7f,0xcb, +0x79,0x57,0x74,0x7e,0xdf,0xf9,0x7d,0xe7,0xf6,0xb7,0xa4,0xf0, +0x21,0xcf,0xf6,0xfe,0x11,0x7c,0x9b,0x13,0xc6,0x53,0x36,0xb0, +0xbf,0xc7,0xb7,0xd7,0xaf,0xd1,0xce,0x9f,0x2f,0x70,0x2c,0xd4, +0xcb,0x34,0xe3,0x72,0xc5,0x08,0x0a,0x83,0x1c,0xe1,0x7f,0xd6, +0xb2,0x25,0xed,0xa5,0xb7,0xf3,0x7a,0xcc,0x73,0x24,0x7a,0xa9, +0xe3,0x6e,0x28,0x95,0xff,0xff,0x0f,0x58,0x6b,0xe0,0x3e,0x19, +0xec,0x43,0xad,0x2e,0xd0,0x82,0x93,0x9d,0x8c,0xc8,0x0a,0xc7, +0x48,0x50,0xab,0x47,0xaf,0x4f,0xbd,0x83,0x2f,0x7f,0xd1,0xa5, +0x42,0x3f,0xcb,0x8a,0x13,0x17,0x26,0x90,0x47,0x58,0xac,0xc3, +0xc0,0x2e,0x28,0x26,0x58,0xac,0x05,0xc5,0xac,0x30,0x0d,0xd7, +0x12,0x54,0xff,0x04,0xea,0x4c,0xd7,0x4c,0xf2,0x09,0x66,0xd1, +0x28,0xec,0x60,0x45,0xd4,0x51,0xfd,0x1f,0x16,0xac,0x94,0x60, +0x96,0x3a,0xce,0xa2,0x01,0x23,0x43,0xfe,0x3d,0xb1,0x46,0xab, +0xcd,0x34,0x64,0x31,0x43,0x32,0x38,0xa5,0xc5,0x65,0x97,0x8a, +0x1b,0x39,0xb1,0xf0,0xaa,0x7c,0x22,0x5b,0xf5,0xa0,0xf4,0x75, +0xee,0x47,0x4e,0x28,0x1a,0x4c,0xa6,0x18,0x58,0x9e,0xa3,0x37, +0x98,0x83,0x5b,0x05,0x30,0x18,0x0c,0xbe,0x72,0x4b,0xd0,0xd9, +0x3a,0x20,0x3f,0xa0,0xc7,0x28,0x7e,0xde,0x2c,0xac,0x21,0xe2, +0x22,0x30,0x13,0x46,0xf4,0x8a,0x23,0xfe,0x1f,0x65,0xef,0x1d, +0x56,0xc5,0xd9,0xfc,0x8d,0xdb,0xd8,0x5d,0xa3,0x21,0xd1,0x78, +0xe3,0x82,0x06,0xec,0x62,0xef,0x1d,0x1b,0x62,0xa5,0x1f,0x0e, +0xbd,0xf7,0xde,0x11,0x01,0x0b,0xd8,0x35,0x56,0x50,0xe9,0xbd, +0xf7,0xde,0x7b,0x6f,0x12,0x7b,0xac,0xb1,0x26,0x31,0xa6,0x18, +0x13,0x8d,0xce,0x92,0x59,0xf2,0xbc,0xf7,0x62,0xf2,0x5c,0xdf, +0xef,0xf5,0xbe,0x7f,0xfc,0x7e,0x70,0x5d,0xcb,0x9e,0x3d,0x7b, +0x0e,0x3b,0xf7,0xce,0x7c,0x66,0x3e,0x7b,0xdf,0x33,0x03,0x6b, +0xa8,0x2b,0x42,0x17,0x26,0xb5,0x32,0xa1,0x3a,0xae,0x5a,0x37, +0x89,0xf7,0x98,0x21,0x9b,0xb3,0x7c,0x65,0x8b,0x1d,0x5f,0x55, +0x59,0x5c,0x9b,0x53,0x27,0x99,0xbf,0x91,0xb8,0x44,0x9f,0xba, +0xf8,0x13,0xb8,0x6b,0xfd,0x4c,0xb4,0x59,0x54,0x42,0x23,0x03, +0xcf,0x37,0x3f,0xc1,0x84,0x28,0x70,0xe6,0x40,0x13,0x6b,0x98, +0x25,0xc5,0x3e,0xdf,0x4b,0x80,0x5b,0x97,0x91,0x46,0xbd,0xf3, +0x6a,0x56,0x97,0xc6,0x74,0x06,0xb8,0x94,0x35,0x3a,0x10,0xdf, +0xa1,0x06,0xc5,0xd0,0x4e,0xed,0x2b,0x5d,0xd8,0x48,0x20,0x89, +0x05,0x3e,0x09,0x3e,0xcb,0xfa,0xbd,0xd4,0xb3,0x8b,0x47,0xb9, +0x16,0x96,0x7b,0x61,0xce,0xa9,0x18,0x1d,0x1e,0xd8,0xb3,0xd2, +0x32,0x60,0x36,0x86,0xc3,0xcb,0xe2,0x4c,0x6d,0x61,0xa6,0xb8, +0xf3,0xba,0xb0,0x53,0x58,0x79,0x95,0x95,0x1e,0x9c,0xa8,0x11, +0x71,0x25,0x68,0xed,0x14,0xf7,0xe0,0x35,0xd1,0xf6,0x5a,0x97, +0xf0,0xc4,0xf0,0x9a,0x60,0x8b,0x2f,0xc1,0x46,0x58,0xc9,0x0c, +0xf9,0x8a,0xe5,0x04,0x0a,0x85,0x27,0x58,0x48,0x83,0x38,0x14, +0xea,0x49,0x46,0x37,0x68,0x89,0x0b,0x9e,0xea,0xae,0x11,0xa7, +0xa0,0x56,0x77,0x20,0x3b,0x18,0xda,0x46,0x86,0x42,0x7e,0x18, +0x0c,0x61,0x8c,0x28,0xbf,0x1f,0x62,0x51,0x1c,0x64,0x29,0xd3, +0x72,0x24,0xe2,0xb9,0xdf,0x84,0x73,0x8c,0x78,0x4e,0x5a,0x04, +0x75,0x4e,0x5d,0x3c,0xc7,0xa0,0x19,0x3a,0x93,0xbf,0x94,0x3a, +0xff,0x56,0xa2,0xc3,0xb4,0x83,0xba,0x4b,0x51,0xe3,0x89,0xfe, +0x5a,0x71,0xa1,0x89,0xb0,0x70,0x2b,0xf6,0xe3,0x3d,0x21,0x69, +0x9d,0xf8,0x1f,0x13,0xe1,0x3f,0xa8,0x89,0x7a,0x4c,0xa2,0x89, +0x02,0xac,0x66,0xea,0xd2,0x25,0x91,0x57,0x80,0x6b,0x2b,0xba, +0x3e,0x06,0x05,0xb8,0x87,0x0f,0xbf,0xa1,0xda,0x28,0x86,0xe0, +0x04,0xea,0x6e,0xce,0x3e,0x63,0x85,0x1b,0xab,0x09,0x26,0x3e, +0x83,0x44,0x1a,0xaa,0xa2,0x0a,0x59,0x89,0x67,0x5f,0xb0,0xd0, +0xbb,0x92,0xbc,0x80,0xc4,0x95,0xac,0x78,0x0b,0x2f,0x91,0x3e, +0xf7,0x7e,0xa7,0x0e,0xbb,0xd2,0x1a,0x5e,0x56,0xbd,0xa7,0x52, +0xb7,0x60,0x38,0x65,0x44,0x46,0x9a,0x53,0x92,0x68,0x90,0xf8, +0x74,0x37,0xbe,0xc0,0x75,0x2c,0xa5,0x63,0xee,0xf0,0x27,0x31, +0xc6,0x31,0xcb,0xa7,0x4d,0xdf,0x58,0x6d,0xce,0xbf,0x7f,0xfc, +0x06,0x26,0xb4,0xc3,0x18,0x4e,0x10,0x30,0x8d,0x6c,0xf9,0xb0, +0xea,0xcf,0x95,0xcf,0xac,0x9c,0xf9,0xe7,0xab,0x5f,0x4c,0xbf, +0x85,0x23,0xb8,0x32,0xf4,0x26,0x7d,0xe2,0xda,0x18,0xf6,0xa7, +0xdd,0x8b,0xd8,0x70,0x51,0x5d,0x57,0x98,0xca,0xba,0x4a,0x8f, +0xdf,0x77,0xe0,0x51,0xcd,0x2c,0x6d,0x1e,0x1a,0x7e,0x7d,0x73, +0x2b,0x1d,0xa6,0x73,0x91,0x4c,0x26,0x4e,0x87,0x4f,0xb4,0xa0, +0x6e,0x7e,0xc6,0x55,0x1e,0x23,0xee,0xe0,0xb4,0x1b,0x0e,0xc3, +0x95,0x51,0x14,0xf4,0xc8,0x5f,0x0a,0xbb,0xfe,0x56,0x60,0x87, +0xec,0x94,0x3e,0xc0,0xca,0x42,0x58,0x0b,0x51,0x2a,0xd0,0xb6, +0x0b,0x9b,0x59,0xfc,0xca,0x13,0x67,0xce,0xc7,0x59,0xaa,0xc2, +0xa5,0x04,0x32,0x58,0xb6,0x6b,0xa8,0x8c,0x5a,0xdc,0xab,0xc1, +0xe5,0x24,0xac,0x37,0x60,0x20,0xb0,0xde,0x62,0x2f,0x9f,0x61, +0x9d,0xb5,0x23,0xde,0x90,0x13,0x5e,0x0f,0x2d,0x20,0x76,0x65, +0xee,0x7d,0xfe,0xcf,0x3b,0x5e,0x54,0xfc,0x92,0xf7,0xda,0x34, +0x85,0x0f,0xd4,0xf0,0xde,0xec,0xb8,0x23,0xec,0x41,0xf8,0x4f, +0x47,0x3f,0x80,0x4b,0x22,0x7f,0xb2,0x0d,0x9d,0xf7,0x2b,0x9c, +0xba,0x7e,0xfa,0xce,0x43,0x95,0x52,0x99,0x33,0xab,0x71,0x6e, +0xcb,0xf9,0xed,0xaa,0x38,0xfe,0xc8,0x45,0x39,0x8c,0xbb,0x72, +0x19,0x95,0x13,0x91,0xcd,0x5c,0xac,0x2c,0x5b,0xaf,0xb9,0x7d, +0xb1,0x51,0x91,0x05,0xff,0xbc,0xf5,0x46,0x7f,0xfb,0xed,0xec, +0xad,0x45,0xb2,0x6a,0x97,0x32,0xb7,0xa6,0xd8,0x0b,0x1d,0x71, +0xa0,0xc5,0x9b,0xa4,0x29,0xe0,0x1f,0xce,0x04,0xc3,0xde,0x80, +0xa9,0x30,0x6e,0x2d,0x93,0xdb,0x52,0xf4,0x20,0xa5,0xdb,0x24, +0x95,0x3a,0x1b,0xb7,0xb5,0x3e,0xd4,0x38,0xfb,0xc5,0x71,0x60, +0x32,0x17,0x03,0xe4,0x10,0x80,0x2b,0xbb,0x60,0x25,0x84,0x31, +0x00,0xc2,0x37,0xc4,0xb3,0xd5,0xb6,0xc3,0xb1,0xc6,0xc1,0x9d, +0xaf,0x70,0xa8,0x36,0xc8,0x37,0xe5,0x86,0x56,0xa7,0x91,0x90, +0x36,0xcf,0xab,0xfe,0xb5,0xd6,0x01,0x7c,0x96,0x7d,0xc1,0xae, +0x24,0x53,0x0e,0x14,0x71,0x2b,0xc1,0x2f,0x61,0x04,0x7c,0xc9, +0x74,0xe0,0x08,0x42,0x77,0xd4,0x70,0x04,0x8b,0xa6,0x16,0x84, +0x5a,0xe1,0x97,0xc0,0xb0,0x60,0xac,0x44,0x0f,0x31,0x34,0xf6, +0x50,0xfc,0x6b,0xfb,0xe0,0x61,0xd2,0xf1,0x37,0x63,0xc4,0xa6, +0x0f,0x75,0x90,0xa7,0xc0,0xe7,0xc0,0xfc,0xb3,0x10,0xcd,0x0d, +0xee,0x06,0x9b,0xa1,0x13,0x48,0x19,0xcb,0x45,0x3f,0xe4,0x37, +0xa3,0x82,0x2a,0xac,0x1d,0xfc,0x82,0x0c,0x8e,0x5f,0x34,0x34, +0x9e,0x81,0x2a,0xdc,0x45,0xc4,0x11,0xb8,0x80,0x8d,0x31,0x95, +0xfc,0x6b,0x5d,0x62,0x52,0xb5,0x9a,0xb0,0x10,0xaf,0x9a,0xb0, +0x83,0x23,0x94,0xe8,0x1b,0x0b,0xd9,0x38,0xfa,0x06,0x0d,0x3d, +0x92,0x12,0x6b,0xa4,0x37,0x9e,0x99,0xb0,0xb8,0x19,0x27,0x11, +0xb7,0x5c,0xed,0x6a,0xcb,0x34,0x2f,0x3b,0xbe,0x21,0xb0,0xdb, +0xa9,0xdc,0x93,0x13,0x66,0xd7,0x10,0xf7,0xdc,0xdd,0xf4,0x98, +0xa7,0x3d,0xdf,0x18,0xd8,0xe3,0x54,0xe1,0xc9,0xe1,0x52,0xd4, +0x20,0x8f,0x73,0x7f,0xae,0xee,0xab,0x08,0x6e,0xe4,0xf5,0x9d, +0x16,0xdb,0xaf,0xf5,0xe3,0xc4,0x91,0x86,0xe4,0x79,0xde,0x2f, +0x35,0x03,0xd2,0x31,0x5d,0xa7,0x05,0x76,0xab,0x7c,0x69,0x5c, +0xde,0x2b,0xcc,0x24,0x7e,0xe1,0xbe,0xe1,0x3e,0xe1,0x94,0x88, +0xbc,0xec,0x58,0x0a,0xfa,0xfa,0x94,0x5d,0x31,0x46,0xc0,0xe0, +0x25,0xd6,0xee,0x80,0xfd,0x21,0x87,0x88,0x68,0x19,0x5f,0x76, +0xa5,0x3c,0xb6,0x2c,0x96,0x3a,0xf0,0x99,0x6c,0x82,0xae,0xc2, +0x33,0x7a,0xb5,0x29,0x34,0x90,0x6c,0x67,0xf3,0x63,0xf3,0xe3, +0xf2,0xe3,0xb8,0x3c,0x78,0x40,0x50,0x91,0x95,0xa5,0xed,0xeb, +0x51,0x85,0x19,0x4c,0x69,0x7c,0x62,0xb9,0x5a,0x23,0x6b,0x11, +0xa3,0xb0,0x13,0xa7,0xb2,0xde,0xc7,0x2e,0xe5,0xa8,0x7d,0x0d, +0xd6,0xa0,0x8d,0xb1,0xe6,0xe0,0xb8,0x9a,0x05,0x46,0x09,0x3f, +0x65,0x0d,0xd3,0xf6,0xf5,0xaa,0xc2,0x5c,0xa6,0xfc,0x7f,0x9c, +0x3c,0x93,0xf5,0xfa,0x78,0xb2,0x33,0x3d,0x39,0xd5,0x1c,0x3c, +0x57,0xb3,0xcb,0xc4,0xa3,0x52,0xa9,0xe0,0x59,0x2d,0x38,0xeb, +0x3b,0xd9,0x0a,0xd4,0x95,0x36,0x5f,0x9a,0xc2,0x97,0xf8,0x39, +0xae,0x37,0x1d,0xfc,0xbc,0x85,0xc5,0x10,0xf8,0x9c,0xd0,0x57, +0xba,0xf0,0x39,0x0b,0x4b,0xf0,0x0c,0x79,0xe2,0xfa,0xd2,0x7c, +0xc0,0x26,0xbf,0x81,0xdf,0x53,0xbd,0xb0,0x55,0x23,0x5f,0x4a, +0xef,0xd2,0x24,0x2f,0xf2,0x7e,0x69,0xed,0x6e,0x70,0xab,0xe2, +0x75,0x2c,0x97,0x5a,0x69,0xf8,0x53,0xc1,0xbb,0x04,0x2f,0x72, +0x24,0xfe,0xe8,0xd9,0x70,0x69,0xd1,0xe0,0x71,0x98,0x00,0x13, +0x3b,0x70,0xe2,0xc7,0x44,0xbc,0x39,0x46,0xf4,0xb6,0x1f,0x1c, +0x4e,0xc4,0x53,0xc7,0xc9,0x15,0x16,0xfc,0x43,0x18,0x91,0xff, +0x3e,0xf2,0x17,0x2e,0x4a,0xcc,0xee,0x12,0x2e,0xff,0x93,0x29, +0xfc,0x1d,0xae,0xa9,0xa8,0x50,0x80,0x10,0xe1,0x0a,0x71,0x99, +0xb3,0x6e,0x36,0xce,0x9b,0x5d,0x6c,0xc2,0xc3,0xb4,0xdf,0x7f, +0x7e,0x9d,0x0b,0x9f,0x50,0x33,0xcb,0x45,0xee,0xdd,0x42,0x50, +0x9d,0x59,0xdc,0xc6,0xa3,0xea,0x1f,0x0b,0x7e,0x76,0xf8,0x93, +0x03,0x03,0xf1,0x03,0x25,0xe1,0x46,0xa0,0x05,0xeb,0x3b,0xc5, +0xa9,0x32,0x58,0x87,0x5a,0x28,0x33,0x04,0x19,0x3a,0xe0,0x09, +0x99,0x50,0xd5,0x89,0x27,0xc0,0x81,0xe2,0xdf,0x34,0x28,0x24, +0x90,0x20,0x6e,0x62,0x93,0x4b,0x12,0xcb,0xe3,0xca,0x38,0x61, +0x59,0xaf,0x38,0x95,0x89,0x2e,0xbd,0x52,0x1a,0x55,0x62,0x10, +0xcb,0xef,0x9b,0x61,0x85,0x93,0xf6,0x2c,0x68,0xb4,0xe3,0xa3, +0xa2,0xa3,0xae,0x44,0x46,0x73,0xe8,0xa7,0x6f,0xd0,0x83,0x8d, +0x3d,0xd0,0x08,0x8f,0x31,0x00,0xb7,0xb2,0x71,0x32,0x05,0x58, +0xc8,0xd4,0xa5,0x26,0x35,0xa8,0x81,0x7b,0x7d,0x37,0x3b,0xf4, +0x39,0xe8,0x91,0xc3,0x71,0xc7,0xce,0x1f,0x94,0x72,0x54,0xa4, +0xc5,0x83,0xaa,0x9d,0xa8,0xfa,0xf1,0x5e,0x0f,0x67,0x46,0x1f, +0xc0,0xcf,0x6d,0xf1,0x4b,0x4a,0xe7,0xbf,0xac,0xb2,0xe4,0xbf, +0x97,0x52,0x9c,0x46,0x44,0xbe,0xa1,0xf2,0x16,0xf7,0x50,0xbc, +0xfc,0x28,0xef,0xcf,0x38,0xaf,0xa2,0x4a,0x01,0x4e,0xc0,0x0a, +0x82,0xf6,0xa8,0x0c,0xf6,0x2c,0xc8,0x95,0xe8,0x8d,0xb0,0xc7, +0x2f,0x19,0xc5,0x41,0x1d,0xd8,0x4a,0x1e,0x56,0x5f,0xad,0xbe, +0xf1,0xb5,0x5d,0x25,0xaf,0xab,0xb7,0xdd,0x72,0x8d,0xed,0xf6, +0x01,0xeb,0x1b,0x27,0x6e,0x70,0x70,0x0b,0x7e,0xc4,0x37,0x4c, +0x5c,0x4e,0x74,0xee,0xa5,0x8c,0x3d,0x57,0xf8,0x63,0xfe,0x07, +0xdd,0x0e,0x7a,0x4b,0xf5,0xee,0x7f,0x84,0x5e,0x71,0x0d,0xae, +0x63,0x12,0xe9,0xd5,0x4e,0x63,0x9a,0xa5,0xa2,0x5d,0xd0,0x11, +0xc5,0x96,0x51,0x03,0x1b,0xb7,0x18,0x3c,0x70,0x4c,0x49,0x2b, +0xbf,0xbc,0x66,0x55,0xf3,0xf6,0x0e,0xee,0x85,0xa0,0x43,0xc4, +0xde,0xef,0x84,0x5e,0x06,0xa7,0x8d,0x59,0x26,0xf6,0xfe,0x20, +0x3d,0x1e,0x09,0x27,0x72,0x38,0xcc,0x7a,0xad,0xdd,0xbc,0x16, +0x57,0xaf,0x29,0xb5,0xe0,0x61,0xd3,0x77,0xaf,0x61,0x44,0x16, +0xb0,0x5c,0x35,0x1d,0xc4,0xf1,0x47,0xc9,0xae,0x14,0xc3,0x02, +0x8b,0xb6,0xbe,0x8a,0xae,0xfa,0xb6,0x36,0xc7,0x32,0xde,0xd8, +0xdc,0xc8,0x56,0xdf,0xc9,0xbf,0x7c,0x6f,0x7d,0x58,0x27,0x3c, +0x29,0xe3,0x8f,0xb5,0xe3,0x8f,0xce,0x47,0x4b,0x8e,0x96,0x9f, +0xa8,0x52,0x86,0xa7,0x05,0x27,0x3a,0xf0,0xb9,0xc7,0xc9,0x92, +0xd3,0xa5,0xa7,0xcb,0x95,0xe1,0x8f,0xbc,0xe3,0xed,0xf8,0xda, +0x47,0xe1,0xab,0xf4,0x33,0x19,0x99,0x2a,0x8f,0x0c,0x34,0x58, +0xbf,0x33,0xfe,0x67,0x03,0x54,0xd1,0x25,0x94,0xc2,0x94,0x63, +0xd2,0x39,0xc7,0xf3,0xce,0xe7,0xdd,0x94,0x51,0x1e,0x42,0x5f, +0x9a,0x24,0x47,0xda,0x45,0x39,0x5d,0x76,0x51,0xc6,0x13,0x7e, +0x91,0x46,0x70,0x3e,0x37,0x65,0x77,0xa6,0x3c,0xcf,0x5a,0x79, +0x8e,0x21,0x8e,0xb6,0xc5,0x89,0xde,0xe9,0xd4,0x7f,0x92,0x42, +0xe0,0x6a,0xff,0xec,0x6b,0xd7,0xbe,0xe6,0xf8,0x28,0xb0,0xf6, +0x60,0x56,0xdc,0xc5,0x9a,0x14,0x58,0xc9,0x9b,0x66,0x28,0xec, +0x10,0xde,0x11,0xa3,0x0c,0xad,0x0c,0xfd,0xd8,0x40,0x2b,0xbe, +0xeb,0xd0,0x9d,0xc0,0xf6,0x20,0x4e,0x8c,0x3b,0x46,0xcc,0x2a, +0xf5,0x2a,0xf5,0xf3,0x3d,0xcd,0xf9,0x3e,0xf7,0x76,0xe7,0x56, +0x07,0xee,0x02,0xda,0x13,0x79,0xad,0x66,0xe3,0x8e,0x62,0x0f, +0x73,0xfe,0xba,0xcb,0x35,0xdb,0x1e,0x4b,0x0e,0x55,0xc4,0x20, +0x72,0xef,0x5d,0x2f,0x28,0x97,0x48,0xd9,0x63,0x4e,0x38,0xca, +0x18,0xb9,0xad,0xf3,0xa4,0x06,0x7e,0xc7,0xc9,0x12,0xc6,0xee, +0x60,0x6c,0xa5,0x1a,0xbd,0x01,0x8e,0x5d,0xd8,0x04,0xe6,0x90, +0xde,0x85,0xe9,0xb0,0x52,0x07,0x57,0x52,0x4f,0x1d,0x57,0x19, +0x5d,0x7d,0xa9,0x9a,0xd2,0x8d,0x40,0xe4,0x9c,0xa6,0x69,0x2f, +0x6c,0x70,0xe6,0x0b,0x1a,0x73,0x5a,0xd3,0xda,0x39,0xd8,0x8e, +0xe6,0xd8,0x6e,0x08,0x3a,0xcc,0x31,0xdc,0xb3,0x67,0x3a,0xae, +0xc2,0x11,0x25,0x54,0xb3,0x75,0xe0,0xd3,0x1b,0xa0,0x16,0x05, +0x86,0x1c,0xcc,0xc2,0x87,0xcc,0xfa,0xbc,0xc0,0x87,0xaa,0x3f, +0x33,0x8d,0x29,0xc9,0x8d,0x6a,0xb0,0x90,0xd5,0x4f,0x51,0x10, +0xdf,0x0a,0x85,0xc4,0xb2,0xc6,0xb0,0xc6,0xb0,0xc8,0xdd,0x92, +0xef,0x76,0x69,0x71,0x6c,0xb6,0xe1,0xce,0xa2,0x1d,0xb1,0xa8, +0xdf,0xd9,0xa2,0x53,0xea,0x6a,0xc5,0xf7,0x39,0xf5,0x59,0xb6, +0x59,0x70,0x41,0x38,0x8a,0x78,0xe2,0x68,0x69,0x9d,0xe5,0xdc, +0x66,0x47,0xfe,0xa6,0xb4,0xfa,0x72,0x4a,0xee,0x3b,0xea,0x06, +0x47,0x0b,0x1c,0x81,0xb9,0xdf,0x76,0x3d,0x8e,0x06,0x65,0x1a, +0x7b,0xa2,0x09,0xa3,0x9f,0x7e,0xa0,0x47,0xf5,0x06,0x53,0x93, +0x14,0x4b,0x01,0x67,0x34,0x6b,0x94,0xa2,0x80,0x2a,0x3b,0xd8, +0xc0,0x93,0x51,0x99,0x6a,0x70,0x14,0xcd,0x60,0xb4,0x1e,0x8e, +0xc6,0xcd,0x72,0xd8,0xc8,0x1e,0x99,0x61,0xbd,0x1b,0xa7,0x6e, +0xe1,0x8e,0xc2,0xb7,0xc4,0x28,0x7f,0x57,0xbe,0x4e,0x8a,0xb7, +0x05,0x7f,0x2d,0xf0,0x6b,0xdf,0x56,0x2f,0x2e,0x7c,0x31,0x31, +0xc9,0xdb,0x52,0xb0,0x23,0xdd,0xc7,0x8c,0xbf,0x11,0x74,0xcd, +0xa7,0xdf,0x9d,0xc3,0xf5,0xe8,0x49,0x9e,0x95,0xff,0xde,0xd5, +0x57,0xe7,0xdf,0xcc,0x6f,0x32,0x59,0x6e,0xb9,0xda,0x99,0xfb, +0x4b,0x01,0x17,0x53,0xb2,0xbb,0xea,0x67,0xdd,0x85,0xe2,0x2c, +0x99,0x30,0x9a,0x95,0xaf,0xc1,0xd1,0x3a,0xe8,0xa7,0x25,0xd5, +0x30,0xfa,0xea,0xf9,0x6f,0x5d,0x95,0xd4,0x01,0x47,0x61,0x43, +0x1f,0x34,0x44,0x31,0x15,0x38,0x06,0x18,0x43,0x38,0xb7,0x2a, +0xb3,0x93,0xc7,0xa0,0xdb,0x38,0xfe,0xaa,0xe1,0x93,0xe1,0x87, +0xb0,0x03,0xa4,0x09,0x17,0x7f,0x0f,0xd3,0x9a,0x70,0xda,0x03, +0xa3,0x8d,0xf8,0xa9,0x39,0x7c,0xba,0x1c,0x3f,0x33,0xa7,0xc4, +0x3b,0x42,0xee,0xe2,0xb4,0xd2,0x78,0xce,0x1b,0xfe,0xf0,0xe5, +0x23,0x67,0x0e,0x1f,0x89,0x38,0xc2,0x9f,0x38,0x1f,0x15,0x7f, +0x31,0xf1,0x42,0x9a,0x32,0x7c,0xd6,0x84,0xe3,0x98,0xb3,0x57, +0xce,0xc4,0xc4,0xa8,0xb4,0xc3,0x38,0xfa,0xe2,0x81,0x7c,0x23, +0x12,0x73,0x20,0xdb,0xd8,0x30,0x9c,0x65,0x0e,0x5f,0xb2,0x07, +0xb4,0x6d,0x6d,0x17,0xeb,0xe6,0x5b,0xf2,0x03,0x55,0x8d,0x35, +0x05,0xb5,0x91,0x97,0x2f,0x9c,0x8b,0x3a,0x0a,0x23,0x70,0x0c, +0x5f,0x5a,0x97,0x6f,0xfe,0xbc,0xab,0x2c,0x37,0xea,0xa9,0x54, +0x60,0x6d,0x5d,0x83,0x33,0x8c,0xdc,0x91,0xdd,0xcc,0x4f,0xef, +0xb7,0xab,0x39,0xd4,0xc3,0x89,0x09,0xa0,0x4e,0xac,0xaa,0x8c, +0xaa,0xe4,0x85,0xf4,0xc6,0x74,0xba,0x36,0x39,0x37,0xda,0x71, +0xa7,0xd0,0x46,0x5a,0x37,0xdb,0xa8,0x5f,0xea,0x66,0xc9,0x77, +0x39,0x77,0x5b,0xd3,0x9b,0x05,0x66,0x34,0xd8,0x6d,0x17,0x36, +0xc8,0x7b,0x05,0x4d,0xb1,0x4a,0xd4,0x64,0xf1,0xc4,0xe5,0x7f, +0x16,0xc7,0xe6,0xfd,0x29,0x93,0x16,0xc7,0x8e,0xb6,0x96,0x6e, +0x1a,0x37,0x98,0x04,0xfe,0x44,0xdc,0xf0,0x41,0xd8,0xc0,0x88, +0x1b,0xa4,0x34,0xe2,0x0d,0x38,0x5a,0xdc,0xc0,0x28,0x0a,0xcc, +0xe0,0x09,0x12,0x52,0xe8,0x5f,0x12,0x98,0x29,0x0b,0xe0,0x33, +0x7d,0xd2,0xbd,0x12,0xdd,0x39,0x61,0xcc,0x69,0x92,0x91,0x9f, +0x5e,0x92,0x54,0xa0,0x9b,0xc2,0x87,0xba,0xf9,0x58,0x7b,0x3a, +0x73,0x62,0x83,0xfc,0x2f,0xbe,0x9d,0xc1,0xa9,0x62,0x23,0x69, +0x48,0x4d,0xaf,0x55,0x13,0x14,0x74,0xc4,0xcf,0x71,0x33,0x9b, +0x2c,0x53,0x10,0x8f,0x1e,0x21,0x30,0x03,0x62,0x56,0xe2,0x64, +0x36,0xd1,0x42,0x01,0x46,0x51,0xfa,0x9d,0x42,0x7d,0xe0,0x28, +0x71,0xa2,0xb8,0x8b,0x15,0x5a,0xa9,0x30,0x50,0xa8,0x2b,0xd5, +0x68,0xde,0x0a,0xeb,0x09,0xc6,0xdc,0x84,0x18,0x06,0x63,0x70, +0x3c,0x81,0x98,0x6d,0x18,0xc3,0x08,0xdf,0x53,0x27,0x50,0x25, +0xaf,0xd2,0x2f,0xdc,0xd9,0x9d,0xcb,0xbb,0xdd,0xb0,0xe9,0xb5, +0x6f,0xe0,0x86,0xe4,0xe8,0x4e,0xfa,0xfb,0x6a,0xae,0x66,0xf7, +0xc9,0xd3,0x79,0x1f,0x43,0x5b,0x7d,0x3d,0x39,0x27,0x9c,0x83, +0x39,0x24,0xd3,0x30,0xd5,0x20,0x7e,0xcf,0x40,0x1c,0x1f,0x76, +0x2d,0xa8,0xc7,0xbf,0x8d,0xc3,0xb4,0x83,0x24,0x4e,0xef,0x92, +0xfc,0xe2,0x8e,0xab,0x51,0xfc,0xf1,0x9b,0x47,0xba,0x0e,0x74, +0x52,0x6f,0x91,0x0c,0xa7,0x29,0x7e,0x46,0x9c,0x0f,0x8f,0x38, +0x10,0xce,0x9f,0x3c,0x77,0xa5,0x33,0xb2,0xed,0xfc,0x0d,0xe5, +0xf6,0xde,0xea,0xee,0xd2,0xeb,0x8e,0x15,0xbc,0x8f,0x91,0xb7, +0x95,0xbb,0x3d,0x57,0xc4,0x42,0xa3,0x21,0x76,0xb1,0x98,0xe8, +0x45,0x3d,0xd2,0x04,0xdc,0xa6,0x5a,0x67,0xf7,0xf0,0x43,0xf9, +0x0f,0x69,0x2f,0xa5,0xea,0x74,0x67,0x2e,0x1c,0xbf,0x87,0xca, +0x7c,0x7d,0xa5,0xc2,0x85,0xc1,0xb1,0x44,0x78,0xd7,0x26,0xbe, +0x63,0x84,0xbb,0xf8,0x07,0x01,0x37,0xb1,0x1c,0xdd,0x58,0xdc, +0x1b,0x88,0x33,0xb7,0xe2,0x27,0xaa,0x0d,0x36,0x5f,0xc3,0x88, +0x3c,0x20,0x97,0x61,0xa7,0x32,0x68,0xe1,0x87,0x79,0x52,0x11, +0x80,0x67,0x4c,0x69,0x72,0x42,0x99,0x9a,0x30,0x0b,0xc3,0xd8, +0xb3,0xa9,0x67,0xd2,0xd2,0x55,0x68,0x28,0x6f,0x4c,0x4e,0xe3, +0xa8,0xc3,0x8b,0x7c,0x36,0xb4,0x04,0xf2,0xf9,0x3f,0x5e,0x79, +0x77,0x0e,0x46,0x72,0x83,0x41,0xde,0x04,0x47,0x88,0x1b,0x60, +0x04,0x2b,0x18,0x60,0x0e,0xc1,0x0f,0x0b,0xd9,0x68,0x33,0x85, +0xc7,0x4c,0xf9,0x3f,0x9f,0x3f,0x42,0x29,0xeb,0x97,0xa8,0x4c, +0x02,0x8b,0x5d,0xcb,0xdd,0x73,0xdd,0x3d,0xf8,0x62,0xef,0x02, +0xd7,0x0c,0x57,0x0e,0xf7,0x15,0x91,0xc0,0x22,0xb7,0x52,0x8f, +0x1c,0x0f,0x77,0xbe,0xd0,0xa7,0xd0,0x3d,0xc3,0x8d,0x83,0xb6, +0xc3,0xc4,0xc1,0x46,0xdf,0xc2,0xcc,0x2f,0xc3,0x8e,0x6f,0x2f, +0xe8,0x6f,0xaa,0xa9,0xe7,0xb0,0x2b,0x8d,0xd8,0x5a,0x1b,0x58, +0xc8,0xbd,0x73,0x1c,0xf8,0xae,0x92,0x9e,0xfa,0xda,0x06,0x6a, +0xba,0x5a,0xc2,0x49,0x52,0x5f,0x53,0xd9,0x5e,0xd0,0xc3,0x09, +0xea,0x1d,0xe2,0xa7,0x4c,0x7c,0x49,0x6c,0xe9,0xe5,0x32,0x79, +0x1c,0xef,0x8b,0x63,0x0d,0x66,0xae,0xdd,0xcc,0xa1,0x91,0x36, +0x39,0x9b,0x7e,0x26,0x3d,0x43,0xe5,0x01,0x04,0xf4,0xe0,0x2a, +0x50,0xd7,0x43,0x75,0xdc,0xa2,0x0f,0xa3,0x97,0xb1,0x78,0x28, +0x08,0xb5,0x17,0xe1,0x3c,0xd5,0x46,0xbb,0xa7,0x30,0xb5,0x10, +0x96,0x5f,0x96,0xd2,0xff,0xa7,0x30,0xb8,0xe2,0x24,0x8e,0x3e, +0xbc,0x41,0xd5,0xf4,0xd8,0xc1,0x03,0x8e,0x53,0xd6,0x33,0x89, +0xba,0x0a,0x77,0x98,0x6b,0x79,0x79,0x8f,0x63,0xd4,0x62,0x5e, +0x5c,0x84,0xcf,0xc0,0x53,0x05,0xfe,0x90,0xda,0x3a,0xe9,0xb7, +0xa1,0x3e,0x58,0xc1,0x4c,0x26,0xdc,0x25,0xc4,0x75,0xaf,0x77, +0x83,0x2f,0x9f,0x5b,0x99,0xde,0x18,0xdb,0xcc,0xd5,0x8a,0xe6, +0x72,0x90,0x8b,0x81,0xac,0x66,0x92,0x4d,0x27,0x7c,0xae,0x02, +0xeb,0x64,0xb8,0x96,0x45,0x45,0x7b,0xf3,0xd5,0x16,0xaa,0xf9, +0xb2,0xfb,0x75,0xe5,0x4d,0x17,0x7f,0x96,0xd2,0xf6,0x46,0x5e, +0x18,0xd8,0x0d,0x93,0xa6,0x80,0x2f,0x73,0xa5,0x43,0xaa,0xce, +0xa5,0xf8,0x46,0x08,0x22,0x60,0x53,0x00,0x23,0xbf,0x89,0x03, +0x45,0x0e,0x3e,0x9b,0xc5,0xe8,0x66,0x86,0x5e,0x57,0xa5,0x8e, +0xb5,0x39,0x39,0xbe,0x46,0x2d,0xa3,0x03,0xe6,0x8b,0xd3,0x1e, +0xeb,0xae,0xa3,0x7a,0x3b,0xbf,0xfb,0x0d,0x04,0xb3,0x87,0x96, +0x2e,0x36,0x42,0x6d,0x1f,0x6e,0xd0,0x13,0xc6,0x91,0xad,0xb8, +0x84,0xf5,0x89,0xa0,0xd1,0xcc,0xcf,0x70,0x41,0x8b,0xc5,0xd9, +0xf8,0x81,0x80,0x0a,0xe8,0xb5,0x0d,0xe9,0x51,0xa2,0x34,0xcb, +0x58,0xa8,0x66,0x37,0x6d,0xc1,0x79,0xbb,0xf1,0xb6,0x76,0xaa, +0x01,0x0f,0x37,0x6e,0x80,0xd1,0x8d,0x2e,0xf8,0x94,0x82,0xcb, +0x7e,0x5c,0x28,0x25,0xc5,0x01,0x61,0x1a,0xd2,0x52,0xa8,0xff, +0x0e,0x80,0xfd,0x6d,0x2c,0xd6,0x81,0x0a,0xa1,0x60,0xaf,0x04, +0x2a,0xac,0x34,0x7b,0x6a,0x45,0xd2,0xdd,0x53,0x5d,0x53,0x9c, +0x29,0xd5,0xde,0x9f,0x1f,0x96,0x13,0x92,0xc3,0xc1,0xfa,0x66, +0xac,0x62,0x62,0xd3,0xa2,0xd3,0x2e,0xa5,0x49,0xb3,0xa7,0x9a, +0x66,0x3b,0xb5,0x8c,0xaa,0x9d,0xf8,0xd2,0xfc,0xe2,0xe2,0x1c, +0x1a,0x42,0xd8,0x34,0x93,0xe8,0xb4,0xcb,0xe9,0x51,0x69,0xf2, +0x18,0x3e,0x70,0x87,0xf3,0x2e,0x13,0x59,0x9d,0x07,0x9f,0x9d, +0x9b,0x5e,0x98,0x52,0x24,0x55,0x3b,0xa6,0xdf,0x96,0xea,0xdc, +0x92,0xc2,0x87,0x15,0x7c,0xfc,0x36,0x83,0x66,0x06,0x13,0xf0, +0x53,0x12,0xea,0x16,0xe0,0xe0,0xeb,0xc6,0x61,0x1f,0x53,0x91, +0x1e,0x96,0x1b,0x50,0x1a,0x9c,0xa6,0x6c,0xe5,0x9f,0xe6,0x97, +0xea,0x1b,0xef,0xad,0x8c,0xe7,0xe5,0x7f,0x4d,0x6d,0xc7,0x64, +0x26,0x2d,0x37,0xb5,0x20,0x3e,0x87,0x5b,0x3f,0xa4,0x40,0x12, +0x86,0x6b,0xbf,0xd6,0x26,0x4b,0xb5,0x5f,0x57,0xeb,0x8a,0x1b, +0xd9,0xa1,0x99,0x3b,0xa4,0x54,0xed,0xe4,0x19,0x34,0xba,0x93, +0x0a,0x8c,0x7f,0xc1,0xd4,0x24,0xc6,0xd3,0x50,0x77,0x89,0xa8, +0x24,0x06,0xb3,0xc2,0x79,0x61,0x2f,0xc1,0x9b,0x52,0x07,0x47, +0x3c,0x86,0x84,0x60,0xf2,0x7d,0x48,0x66,0x30,0x59,0xaa,0xfe, +0x95,0xac,0x41,0xbf,0x5a,0x71,0xb0,0x19,0x34,0x49,0x53,0x43, +0x4b,0x67,0x59,0xa7,0x43,0x11,0xef,0x6a,0x62,0x2e,0xb3,0x73, +0xe0,0x5c,0x7a,0x83,0xfa,0xbb,0x55,0x92,0x40,0x0e,0xaf,0xd1, +0x57,0x5a,0x72,0x96,0x19,0x99,0x61,0x78,0x99,0x3f,0x11,0x74, +0xd8,0x4b,0x6a,0x66,0xb4,0x13,0x5f,0x83,0xa3,0xa8,0x81,0xa3, +0x98,0x04,0x43,0x6a,0x38,0xcd,0x09,0x52,0xbd,0xfa,0x84,0x28, +0xf6,0xca,0xb4,0x67,0x38,0x0a,0xc6,0xaf,0x2c,0x68,0xe1,0xf5, +0xaa,0x0c,0xdb,0x6d,0x28,0x34,0x2a,0x53,0x34,0x09,0xbd,0x19, +0x74,0xd3,0xbf,0xd3,0x32,0x84,0x8f,0x1d,0x9e,0x53,0xb5,0x1a, +0x9e,0x53,0x1d,0xee,0x2a,0x24,0x3d,0x60,0xc9,0xe1,0xbd,0x75, +0x5d,0x77,0xbb,0xe8,0x0d,0x3f,0x60,0xc9,0xa8,0xec,0x2b,0xb9, +0x95,0x73,0xcd,0x54,0x7a,0xc0,0xe2,0xf9,0xf1,0x01,0x4b,0xdc, +0xfe,0x38,0x77,0x5b,0xbe,0xcd,0xb2,0x5d,0xde,0x68,0x28,0x75, +0x15,0x0a,0xf4,0x72,0x3f,0x4d,0x7f,0x87,0xbb,0x0a,0x9d,0xef, +0x1e,0xee,0x2a,0xb4,0xa4,0x5b,0x58,0xc5,0x16,0x5c,0xc8,0xbf, +0x90,0x77,0x21,0xde,0x88,0xaf,0x4b,0x52,0xb0,0x86,0x99,0xac, +0xdf,0xdc,0x9d,0xea,0x38,0x72,0x4f,0x01,0x8d,0x5b,0x3e,0xfd, +0xe6,0x09,0x7c,0x9e,0x01,0x13,0xb8,0x4a,0x16,0xc2,0x85,0xa9, +0x64,0x31,0xbe,0x7a,0xc5,0xc2,0x2b,0x9c,0x41,0xe6,0xe0,0xab, +0xdf,0x59,0xb4,0xc1,0x9b,0x24,0x45,0x3b,0x5e,0xf3,0x8a,0x56, +0x6b,0x32,0x1f,0x71,0x3d,0xe4,0xee,0xbe,0x5e,0x0e,0xf3,0xa4, +0x7e,0x41,0xcf,0xd2,0x5e,0xc7,0xbe,0x36,0xbd,0xcc,0x87,0x2f, +0xdf,0xbb,0xd2,0x69,0x2d,0x05,0xaa,0x3a,0x10,0x48,0x8c,0x69, +0x5d,0xe2,0xfe,0x1b,0xc1,0xd7,0x03,0x3b,0x95,0x6d,0x42,0x63, +0x7d,0xa3,0xbd,0xae,0x78,0x2a,0xdb,0x1f,0xb3,0x3d,0x6e,0x73, +0xb2,0xeb,0x49,0x3f,0x28,0x74,0x00,0x67,0x99,0xcd,0x07,0xc8, +0xbc,0xf5,0xbd,0x64,0x61,0x69,0x21,0x69,0xa1,0xa9,0xc5,0x3d, +0xff,0xed,0x11,0xef,0xab,0xed,0x2d,0x0f,0x8f,0x3d,0x14,0x1b, +0x1e,0xe3,0x69,0xcb,0xd7,0xd8,0xd5,0x9b,0x57,0x9a,0xfa,0x59, +0xfb,0xd9,0x07,0xb8,0xe9,0x9e,0xe2,0x23,0x8d,0x6b,0xcf,0xd5, +0x5d,0xa8,0x93,0x7a,0xc4,0xb7,0x0b,0xab,0xd9,0x8c,0xf3,0x19, +0x17,0x32,0x2e,0x72,0xc2,0xef,0x22,0x47,0x82,0x0a,0x42,0x3a, +0xf6,0x7f,0x53,0xf7,0x3c,0xff,0x6d,0x36,0x10,0xd3,0x04,0x3e, +0x64,0x61,0xf0,0x06,0xbf,0x1d,0x87,0xbe,0x3f,0xfa,0xee,0x2b, +0xea,0x31,0x61,0x51,0x33,0x2e,0x82,0xd3,0x72,0x3c,0x8d,0xba, +0xbf,0xc3,0xac,0x66,0x9c,0xf5,0x4a,0xbe,0x18,0xe7,0x9b,0xc1, +0xfc,0x39,0xa8,0x63,0x06,0x53,0xc4,0x08,0xc6,0xea,0xb0,0xd5, +0x31,0x9b,0x63,0xd1,0x52,0xa7,0xda,0x54,0x98,0x96,0x0b,0x5c, +0xa9,0x97,0x87,0x8b,0xb7,0xad,0x5f,0xa1,0x15,0x7f,0xbd,0xb6, +0xa5,0xb9,0xba,0x37,0xce,0x34,0xc9,0x36,0xd5,0x3b,0xd7,0xa1, +0xfb,0x62,0x64,0x6b,0xaa,0x54,0xb2,0x3d,0x5d,0x21,0x4d,0xf0, +0x25,0x61,0x2d,0x3e,0x3d,0xde,0x75,0x76,0x81,0x7c,0x8e,0x4d, +0xb6,0x3e,0x65,0x6e,0xf8,0x6c,0x25,0x11,0x3d,0xa5,0x19,0xb8, +0x93,0x61,0xa7,0x38,0x21,0x98,0x05,0x1b,0x51,0x93,0x78,0x1d, +0xf6,0x38,0xec,0x76,0x94,0x1a,0x01,0x4c,0x61,0xcf,0xe1,0x94, +0x2b,0x38,0x3d,0x1d,0xd9,0x10,0xcf,0x60,0xef,0x00,0x3f,0xce, +0x46,0x50,0x26,0x47,0x17,0x1f,0x5a,0xbe,0x4f,0xa3,0xee,0x30, +0x9f,0xf2,0x28,0xfe,0xc7,0xa8,0x1f,0x29,0x57,0x8a,0x20,0x49, +0x8b,0xa2,0x97,0x46,0x2e,0xaf,0x8b,0xe3,0x8f,0xbf,0x38,0xfc, +0x32,0xf4,0x17,0x0e,0xe7,0xa2,0x8c,0xc4,0xea,0x44,0x69,0x9e, +0xdf,0xde,0x98,0xc0,0x9f,0x1e,0x08,0xbf,0x1f,0xd1,0xc3,0x61, +0x20,0x96,0x93,0x9c,0x87,0x71,0xbf,0x47,0xfe,0x62,0x21,0xb5, +0x8b,0x3f,0xb0,0xc2,0x4f,0x83,0x82,0x61,0xb2,0x10,0x4c,0x1e, +0x82,0xd8,0x8a,0xe2,0x37,0x82,0x7a,0x2b,0x9e,0x64,0xb3,0x72, +0x53,0xf3,0xe3,0x73,0x64,0xd4,0xbe,0x3c,0x02,0x9c,0xbc,0x28, +0xd6,0xd6,0x52,0x1b,0x09,0x2a,0xf0,0x2e,0x0d,0x4e,0x51,0x36, +0x0b,0xcc,0xf5,0x4e,0xf1,0x4b,0xf6,0x53,0xc6,0x08,0x13,0x61, +0xf2,0x56,0xfc,0xd5,0x04,0x7e,0xd5,0x10,0x17,0x99,0xfc,0x35, +0xb1,0x95,0xc1,0x6e,0xb4,0xa6,0xfe,0x81,0x09,0x74,0x74,0x73, +0x74,0xf4,0x6a,0xf1,0xe0,0x9b,0x6a,0xaa,0x3a,0xd2,0x9a,0xb8, +0x7a,0x71,0x3a,0x1b,0x9b,0x1a,0x9d,0x7a,0x29,0x55,0x96,0xc0, +0x7b,0x6e,0xd4,0xda,0xb0,0xce,0xac,0xcc,0x9a,0x6f,0xcc,0xaf, +0xaf,0x29,0x6b,0xe0,0x7e,0xb4,0x67,0x70,0xec,0x1a,0x0d,0xf4, +0xd8,0xad,0x9a,0x25,0x87,0x3d,0x1d,0x1f,0xee,0x47,0xc3,0xe7, +0x14,0xe2,0xae,0xe0,0x27,0xf0,0xd9,0x26,0xd0,0xd1,0xc9,0xee, +0xe6,0xd1,0xe5,0xe6,0x8c,0x5b,0xf0,0x89,0x0a,0xde,0x7d,0x48, +0xcc,0x0a,0x37,0x94,0x1b,0xa6,0xf8,0x9a,0xf3,0x1d,0xa1,0x8f, +0x1d,0x5a,0x3c,0x38,0x87,0xdd,0xc4,0x38,0x7f,0x73,0xa1,0x61, +0x22,0x3d,0xd4,0x1d,0xf2,0x8d,0x57,0xbb,0x0f,0x77,0xfb,0x10, +0xd9,0x25,0x5b,0x65,0xba,0xc8,0x31,0xd7,0x88,0xff,0xa9,0xe6, +0x69,0xfb,0xb5,0x36,0x4e,0x71,0xb0,0x41,0xb2,0xcc,0xfa,0xd6, +0xae,0x8a,0x0e,0xfb,0x62,0x6a,0x99,0xa6,0x32,0x5b,0x07,0xce, +0xf9,0x1f,0xcb,0x34,0xa3,0x96,0x19,0x48,0x2d,0xf3,0xd2,0xff, +0xb6,0xcc,0x3d,0xd4,0x32,0x5d,0xa9,0x65,0x8e,0x91,0x2c,0xf3, +0x39,0xd3,0x9c,0x28,0x59,0x66,0x22,0xb5,0x4c,0x1c,0xf1,0x02, +0x47,0xc3,0x67,0xab,0xf2,0x5b,0x78,0xdd,0x2a,0x03,0xc9,0x34, +0x87,0x64,0xf0,0x07,0xc1,0xb6,0x30,0x9c,0x6d,0x8a,0x8c,0x6a, +0xab,0x43,0xf9,0x8f,0x29,0x3f,0x5f,0x82,0x05,0xca,0xb0,0x10, +0xe3,0x70,0xb4,0xb4,0x9a,0xef,0xb9,0xb4,0x9a,0xaf,0x49,0x6d, +0xb0,0x18,0x63,0x58,0xb0,0xc5,0x53,0x04,0xe7,0x80,0x3e,0xcc, +0x61,0x84,0x0a,0x4f,0x6a,0x42,0x6f,0xa8,0x09,0xbd,0x19,0x36, +0xa1,0x37,0xbf,0x4b,0xc5,0x00,0x2f,0x93,0x73,0xed,0x67,0xfb, +0x6e,0xa9,0xc0,0x1c,0x34,0x60,0xfe,0x88,0x24,0x66,0x30,0x87, +0x0d,0x9a,0x67,0xba,0x60,0xd9,0xf6,0x52,0x6b,0xfe,0xe7,0xbb, +0xd7,0x40,0x31,0x0d,0x3e,0xa3,0x16,0xa8,0x38,0xd8,0x01,0x07, +0x09,0x88,0xa0,0xd6,0x85,0x6a,0xa0,0xad,0x8b,0xda,0x78,0xc8, +0x10,0x0e,0xa1,0x88,0x76,0x6c,0xc6,0x0f,0xc9,0x30,0xf2,0xca, +0x63,0xbd,0x8b,0x7c,0xc4,0x02,0x5f,0x54,0x77,0x9b,0xc3,0x41, +0x39,0x9e,0xed,0x83,0xb3,0x30,0xbb,0x9b,0x19,0x32,0x16,0x6c, +0xc9,0xe5,0xea,0xc8,0x9a,0x8b,0xb5,0xba,0x97,0xf9,0x50,0x34, +0xd0,0x45,0xdd,0x05,0xc8,0xd4,0x5a,0xf0,0xb7,0x5f,0xb4,0xc1, +0xb8,0x42,0x98,0xcc,0xc1,0x26,0xe6,0xe8,0xf4,0x90,0x85,0x5e, +0xab,0x6d,0xcb,0xad,0x4a,0x1c,0xb2,0x68,0x48,0x5c,0xeb,0xd3, +0xe4,0xd2,0x64,0x25,0x43,0xa5,0x55,0x33,0x70,0xd4,0xaa,0x6a, +0x0a,0x06,0x1e,0xb0,0x09,0x38,0xf0,0xcb,0x80,0xef,0xb8,0x06, +0x56,0x51,0xb0,0x17,0x9c,0xc9,0xc1,0x53,0x07,0x4e,0x1d,0x38, +0xcd,0x41,0x11,0xce,0x61,0xe3,0x0b,0xa3,0x0b,0x2f,0xe7,0x19, +0x44,0xf3,0x47,0x3d,0xc2,0x9d,0x0f,0x50,0x4d,0x1a,0x81,0x41, +0x8c,0xfb,0x19,0xcf,0xaf,0xbc,0x54,0x83,0x4e,0x07,0x7d,0x15, +0xf8,0xd5,0x45,0x19,0x9f,0x76,0x36,0xf5,0x5c,0xea,0xd9,0x93, +0xb8,0x8d,0xd2,0x3a,0x87,0x39,0x4d,0x4e,0x7c,0x3d,0x28,0x24, +0xc0,0x8c,0x0b,0x60,0x78,0x27,0xf2,0xeb,0xcb,0x7d,0xd1,0x9c, +0xf8,0x25,0x7e,0x22,0x91,0xc4,0x3f,0xa4,0x69,0x78,0x0a,0xc6, +0xb3,0xd9,0xf8,0x0b,0xf1,0xe7,0xe3,0xcf,0x73,0xb0,0x50,0x58, +0x48,0x02,0x70,0x82,0x09,0x4e,0xdf,0xb5,0xa8,0xc6,0x8a,0xbf, +0x0b,0x23,0x7a,0x61,0x75,0x12,0x8c,0xe3,0x1e,0x9f,0x22,0xf9, +0x38,0xee,0x1a,0x2e,0xfc,0x06,0x47,0x55,0x36,0xf3,0xda,0x2f, +0xf7,0xc0,0x74,0x69,0x5e,0x7d,0x48,0x49,0x9c,0x4e,0xce,0xe6, +0x9d,0x29,0x2c,0x54,0x01,0x0d,0xb0,0xc4,0xa3,0xac,0x4e,0xc4, +0xee,0xa3,0x5a,0xc7,0xb9,0x62,0xb0,0x25,0x39,0x0e,0x85,0xb2, +0x14,0xf3,0xda,0x1c,0x3e,0xb8,0xd9,0xb5,0xdb,0xb7,0x8c,0x83, +0x77,0x43,0xae,0xe4,0x3a,0xc4,0xec,0xec,0x12,0x2c,0xc5,0xf1, +0xa2,0x25,0x0b,0xb7,0x84,0x59,0x84,0x42,0x59,0x0c,0xe4,0xb1, +0x28,0x9c,0x20,0x78,0xa2,0x05,0x4e,0xd0,0x5b,0xb0,0x63,0xf0, +0x2e,0x31,0x30,0xc4,0xfc,0x2e,0xba,0x39,0x65,0x02,0xa7,0xf4, +0xba,0x7b,0x21,0x5f,0xda,0xc4,0xb6,0x62,0x2c,0x03,0xd6,0xe2, +0x5a,0x02,0xab,0xf1,0xec,0x55,0x68,0x69,0x14,0xd7,0x48,0x69, +0x87,0xef,0xf1,0x3c,0x8b,0xcb,0x42,0x70,0xba,0xe1,0x6c,0xd5, +0x06,0xab,0x6b,0x30,0x31,0x05,0xbe,0x3c,0x07,0x2b,0x94,0x61, +0x3c,0x73,0x60,0xd7,0xde,0x2d,0xbe,0xdb,0xb8,0x41,0x8e,0xf9, +0xca,0xe9,0x84,0xc5,0x11,0x0f,0xce,0xe3,0x48,0xf8,0x29,0xcf, +0x29,0x3b,0xa4,0x65,0x72,0xd7,0x99,0xee,0xac,0x94,0xd6,0x58, +0xb5,0x98,0xc6,0x8b,0x37,0xcf,0x5d,0xe3,0x44,0x60,0x22,0x93, +0x23,0x53,0xa2,0x52,0xb8,0xc1,0x31,0x0d,0xc3,0x2f,0x2e,0x26, +0x5f,0x48,0xe6,0x4e,0x41,0x30,0xd1,0xc6,0xed,0x57,0x59,0x38, +0xa8,0x4d,0xae,0xc2,0x1e,0x6d,0x16,0x8f,0x58,0x91,0x9d,0xb8, +0xfd,0x3a,0x2b,0xac,0x50,0xda,0x89,0x7b,0xe8,0xdf,0x2d,0x3b, +0x09,0xca,0xae,0x4b,0x1d,0x91,0xb6,0x88,0x9f,0x90,0x54,0xf7, +0x64,0x97,0x38,0xa7,0xd6,0x44,0xfe,0x40,0x59,0x70,0x59,0x50, +0x11,0x27,0x86,0xa1,0x01,0x29,0xa9,0x29,0x18,0x48,0x68,0x36, +0xa1,0x41,0xb0,0xb1,0x8f,0xa9,0x8b,0x2d,0x07,0x7f,0xc0,0x14, +0x92,0x62,0x1f,0x6f,0x73,0xc5,0xa6,0x33,0x9e,0x8f,0xa8,0x0d, +0xa9,0xdb,0x57,0xce,0xa1,0xf5,0x7e,0x12,0x67,0x73,0xc9,0xf8, +0x82,0x7d,0xf7,0x65,0xfe,0x64,0x7d,0x78,0xcb,0x81,0x6a,0x6a, +0x6a,0x6b,0x06,0x73,0x49,0x16,0x2a,0xfc,0xb2,0x00,0x26,0xcf, +0x94,0xba,0xef,0x4d,0x7e,0xb7,0xf2,0x27,0xa7,0x77,0xdc,0x4e, +0xc6,0x6d,0xee,0x96,0x59,0x38,0x7d,0xf8,0xd1,0x83,0xca,0xbb, +0x17,0xaf,0x25,0xf2,0x2b,0x3e,0x8b,0xff,0x98,0x00,0x80,0xdf, +0xfc,0x3b,0x27,0x82,0xfd,0xc3,0x7d,0x33,0x72,0x3b,0x58,0x21, +0x01,0xdb,0x49,0x27,0xee,0x84,0x6d,0xb0,0x44,0x9a,0xd5,0x83, +0xc5,0xb8,0x0d,0x77,0xca,0x60,0x27,0x3a,0x62,0xa8,0x4c,0x88, +0xef,0xc4,0x50,0x70,0x94,0x4a,0xc6,0x8c,0xfa,0x98,0x0a,0xf0, +0x71,0x7a,0xee,0xdf,0xf5,0xff,0xd2,0x8e,0xb4,0xea,0x7f,0xbd, +0xb4,0xea,0xff,0xaf,0x4f,0x23,0x88,0x69,0xb2,0x75,0x81,0x73, +0x6b,0x7b,0x75,0x73,0x53,0x43,0xb7,0x5d,0x11,0x6f,0x6b,0x6a, +0x65,0x63,0xe1,0xb8,0xaf,0x22,0xac,0xe1,0x60,0x0f,0x64,0x95, +0x4a,0x0c,0x3b,0xcf,0xf9,0x78,0xc9,0xf1,0xf2,0x93,0x94,0x61, +0x67,0xe4,0x53,0x4a,0x9d,0xe6,0x75,0xaa,0xf8,0x74,0xd9,0x57, +0x15,0xca,0x50,0x91,0x77,0xbc,0x15,0x4b,0x7c,0x14,0xae,0xb2, +0x2f,0x64,0x6b,0xd9,0x80,0x33,0x01,0x67,0x03,0x55,0x71,0xe1, +0x81,0x8b,0xc6,0xa0,0x1e,0x1f,0x89,0x0c,0x4e,0x96,0x76,0x27, +0xc7,0x5f,0xb4,0xbf,0xe8,0x18,0xe5,0xaa,0x8c,0xba,0x01,0x94, +0x59,0xcb,0xb2,0xe2,0x77,0xa4,0xc8,0x32,0xad,0x94,0x37,0xc8, +0x97,0x3b,0xcc,0xf6,0xc8,0x90,0xf3,0xef,0x8a,0x7e,0xa8,0x7e, +0xd2,0x59,0xad,0xd7,0xe6,0xd4,0xbf,0xb7,0xe2,0x40,0x4e,0xfc, +0xc5,0xea,0x44,0x58,0xce,0x9b,0xa5,0x2b,0x38,0x08,0x7f,0x12, +0xdb,0x0c,0xc3,0x2c,0xab,0x38,0x5f,0x5b,0xbe,0xee,0x60,0xaf, +0x6f,0x75,0x10,0x37,0x74,0xe8,0x21,0x11,0x11,0x6a,0x04,0x64, +0x0d,0xa5,0xda,0xcc,0x9a,0x30,0x19,0x34,0x19,0xbc,0x3e,0xe6, +0xdf,0x3d,0x4d,0x7a,0x14,0x34,0x71,0x06,0x6a,0x32,0x30,0x8e, +0xb2,0xd4,0x02,0xab,0x42,0xbd,0x34,0x93,0x96,0x12,0x7e,0x6f, +0x93,0xf3,0x80,0x77,0x35,0x87,0x87,0x31,0x94,0x34,0xb6,0x34, +0x3c,0xce,0x1a,0x30,0xcd,0xe5,0xf7,0x19,0x9b,0xae,0xb2,0xb1, +0xe5,0x86,0x07,0xc2,0x24,0xc5,0xaa,0xd0,0xb9,0xb3,0xbd,0xaa, +0xa5,0xbe,0xa9,0xc3,0xae,0x98,0xb7,0x31,0xb7,0xb2,0x33,0x77, +0x09,0x2d,0xdb,0x5f,0x7f,0xa8,0x03,0xd2,0x87,0x07,0x22,0x9b, +0x0e,0xc4,0x89,0xe1,0x81,0x48,0xc9,0x3f,0xd1,0x8e,0x29,0x5e, +0xa7,0xff,0x19,0x88,0xd2,0xbc,0x63,0xad,0x58,0xe0,0xab,0xd0, +0xc7,0x7e,0x37,0x3c,0x10,0x81,0xd2,0x40,0xac,0xd8,0x1f,0x29, +0x87,0xc5,0x09,0x67,0x1d,0xcf,0x3b,0x9f,0xa3,0xd2,0x4f,0x3a, +0x10,0x69,0x0c,0x5f,0xc4,0x5f,0xb0,0x8b,0x74,0x8a,0xa4,0x2f, +0x77,0x05,0xd0,0x77,0x75,0x33,0xe3,0xf7,0x24,0xc9,0xd3,0x6d, +0x94,0x97,0x19,0xcc,0xb5,0x45,0xce,0x5d,0x9a,0x15,0x1d,0x5b, +0xf2,0x47,0xdd,0xab,0x9e,0xea,0xdd,0xed,0x0e,0x03,0x41,0xff, +0x63,0x38,0xd2,0x14,0x9c,0x84,0xf7,0x74,0x38,0x64,0xff,0x0e, +0x47,0x8f,0x6f,0x55,0x10,0x27,0xae,0x13,0xbf,0x21,0xd6,0xfb, +0x6c,0x42,0x6d,0xf6,0x73,0x60,0x0d,0x8a,0xed,0xa8,0x08,0x4b, +0x5f,0x43,0x33,0x36,0x60,0x33,0x4c,0x17,0xb7,0xb1,0x7e,0x47, +0xfc,0x8e,0xfa,0x1d,0xe1,0x04,0x46,0x26,0x4e,0x66,0x43,0x4e, +0xd0,0xdf,0xe3,0xd2,0xa2,0x16,0xb5,0x2a,0x50,0x2c,0x05,0xc5, +0x2e,0x4e,0x7d,0x70,0x06,0xa1,0xd1,0xac,0x36,0x18,0xd0,0xa0, +0x34,0x4d,0x78,0x47,0xec,0xee,0x19,0x3e,0x32,0xed,0x32,0x77, +0xe3,0xdb,0x0c,0xdb,0xd6,0x57,0x6f,0xe5,0xe0,0x67,0x3d,0x52, +0x14,0x97,0x58,0xa0,0x56,0xc3,0x1a,0x5f,0x56,0x30,0xfd,0xd8, +0x8a,0x27,0x5b,0xad,0x05,0x1c,0x61,0x85,0x94,0x4d,0xeb,0xa0, +0x87,0x0e,0x38,0x92,0x95,0xa5,0x85,0xf6,0xa9,0x0a,0x61,0x4a, +0x25,0x71,0xb1,0x05,0x6a,0x75,0xac,0x71,0x34,0x3d,0x55,0xfd, +0xdf,0x53,0xbd,0xe8,0xa9,0x59,0xe6,0xe0,0xa9,0x87,0x9e,0x33, +0xe8,0x99,0x7b,0xfb,0x54,0x9b,0x31,0x86,0xfc,0x0e,0x8b,0x5a, +0x71,0xd1,0x1d,0x7d,0x4d,0x34,0x95,0x36,0x73,0x4d,0x60,0xee, +0x1c,0x5c,0x6f,0x32,0x38,0xbd,0x95,0x15,0x2f,0xe3,0x57,0x04, +0x27,0x2f,0xeb,0x80,0xb1,0x6a,0x50,0x86,0xdb,0x0c,0x60,0x0c, +0x75,0x45,0x8b,0xfc,0xcd,0x17,0x5b,0xab,0x66,0x18,0x3c,0xa9, +0x2a,0x6f,0xfb,0xb7,0x72,0xef,0x76,0x29,0x01,0xe4,0xb2,0x94, +0x00,0x82,0xa7,0xe1,0x0d,0xf5,0x14,0xa6,0xd4,0x53,0x18,0xd0, +0x60,0xeb,0x51,0xfa,0xa3,0xca,0xe6,0x32,0x8f,0x4a,0xde,0xc2, +0x75,0xa3,0xcb,0xa6,0xbd,0xdc,0xe0,0x27,0xc7,0x88,0xbc,0x70, +0x59,0xed,0x9e,0x0c,0x0f,0x5b,0xfe,0xa6,0xdf,0x73,0xc7,0x76, +0x77,0x1a,0x6b,0xc5,0x09,0x7f,0xfc,0x5f,0x29,0x27,0xcf,0xf0, +0x07,0x32,0x90,0xd5,0x99,0xd7,0x58,0xca,0x05,0xc3,0x05,0x03, +0xbc,0x3d,0x9b,0x35,0xce,0x0a,0x6a,0x56,0x15,0x38,0xa6,0x3c, +0x21,0xae,0x44,0xed,0x2e,0x6b,0x94,0xa0,0xb0,0x0c,0xdf,0xb1, +0x3e,0x47,0x62,0x33,0xe9,0x40,0xde,0x82,0x2f,0xd8,0x1a,0xcf, +0x76,0xdf,0x1b,0x41,0x69,0xf5,0x3c,0x72,0x45,0xba,0xf5,0xb6, +0x4d,0x1c,0x38,0x34,0xe1,0x20,0x73,0x25,0x49,0x2a,0xf3,0xc6, +0x41,0x3b,0xac,0x42,0xc3,0xab,0x10,0xd8,0x30,0xb4,0xca,0x12, +0xbc,0xb4,0xa9,0x0f,0x5d,0x05,0x67,0x99,0xa3,0xfb,0x8e,0x84, +0x46,0x84,0x72,0x78,0xdc,0x1c,0x6c,0x19,0x63,0x83,0xcd,0x36, +0xf3,0xdd,0x38,0x61,0x81,0xe0,0x41,0x81,0x6a,0xe2,0x55,0xd6, +0x98,0x2a,0xef,0x76,0x9c,0x78,0x93,0x85,0x5d,0x4a,0x30,0x91, +0xee,0x31,0xf0,0xb5,0x12,0x2a,0xdf,0x04,0x65,0x4a,0xd8,0x87, +0x3e,0xff,0xff,0x3d,0x3c,0x95,0xc2,0x0a,0x92,0x14,0x98,0xb2, +0x37,0x23,0x98,0xfe,0x47,0x26,0x3d,0x25,0x35,0x3d,0x29,0xe3, +0xa3,0xe2,0x9b,0x27,0xdb,0xe4,0xbb,0x36,0xb7,0xd6,0x34,0x35, +0xd7,0xf7,0xda,0x15,0xf2,0x76,0x26,0x36,0xd6,0xc3,0x08,0xd0, +0x78,0xa8,0x17,0xd2,0x86,0x15,0x3f,0xeb,0xbf,0x8a,0x9f,0x24, +0x29,0x7e,0xd2,0x7f,0x15,0xbf,0x58,0x42,0x80,0x7c,0x1f,0x85, +0xfe,0x7f,0x14,0x7f,0x18,0x01,0xd4,0x25,0x4d,0x9f,0x19,0x7f, +0xd6,0xf1,0x9c,0xf3,0x79,0xaa,0xe9,0x5f,0x48,0x2f,0x27,0x7e, +0x54,0x7c,0x17,0x65,0x5c,0x12,0x4c,0x15,0x7f,0x65,0x5a,0xbc, +0x56,0x8a,0x21,0x45,0x81,0x2d,0xc6,0x6b,0x1c,0x17,0x78,0x64, +0x18,0xf3,0xaf,0x8b,0x9e,0x55,0x3d,0x68,0xaf,0xd2,0x6f,0x71, +0xe9,0xfd,0x2f,0x0a,0x2c,0x93,0x50,0xc0,0x89,0xa2,0x80,0x5d, +0xa6,0x2c,0xcb,0x5a,0x52,0xfb,0xda,0x7f,0xd4,0xfe,0x51,0x2f, +0x89,0xde,0xd8,0xa0,0xf7,0x74,0x7b,0x41,0x2b,0xbf,0xa9,0xcf, +0x7a,0x60,0x5f,0x3f,0xb7,0x8d,0x09,0xdc,0x6c,0xaa,0x81,0x23, +0xb6,0xe6,0x1b,0xf3,0xef,0x6f,0x5f,0x7d,0x9e,0xf0,0x92,0x03, +0xed,0x21,0x7d,0x62,0x79,0xc8,0x34,0x5c,0x1e,0x21,0xd5,0x22, +0x58,0xd0,0x81,0x0b,0x60,0xec,0xdb,0x0e,0x8c,0x31,0x7a,0x8d, +0x63,0x71,0x83,0x11,0x6c,0xc0,0x6e,0xd6,0xe0,0xb0,0xfe,0x11, +0x83,0xe3,0xd1,0x7a,0x3c,0x4c,0x4d,0x84,0x39,0xb9,0x6f,0xf2, +0x38,0xcd,0x97,0x24,0xb9,0x3d,0xae,0xeb,0x4a,0xbb,0x65,0x2c, +0x1f,0xa1,0x1f,0x2e,0x0f,0xb5,0xe0,0xf0,0x1c,0xcc,0x20,0x99, +0xf2,0xac,0x0d,0xb1,0xb2,0xe6,0x44,0xfe,0x50,0xb7,0xef,0xd3, +0x80,0x56,0x3a,0x78,0x53,0x8f,0x13,0x43,0xc6,0x23,0xfc,0x4a, +0xa1,0x1a,0x3c,0xa0,0x60,0x8c,0x07,0xc0,0x12,0x5c,0xbb,0xd0, +0x15,0xd6,0xe8,0xe3,0x1a,0x54,0x60,0xa3,0x2b,0xa3,0xaa,0x23, +0xab,0x8d,0xa2,0xf9,0x03,0xc8,0x79,0x4f,0x33,0x59,0xdc,0xe8, +0xc9,0x67,0xd5,0xa7,0x35,0x27,0xb6,0x71,0x40,0xd0,0x12,0x03, +0x65,0x30,0x89,0x39,0x81,0x3b,0xcc,0x70,0x14,0x8e,0x9d,0x56, +0x6e,0xce,0xc3,0x14,0x18,0xdf,0x06,0xd3,0x2e,0x80,0x2e,0x47, +0x6f,0xe9,0x0b,0x66,0x7b,0x4e,0xf0,0xd7,0xaa,0x57,0x99,0xda, +0xc4,0xa4,0x1a,0x35,0x58,0x2e,0xcd,0x22,0x0f,0xcd,0x10,0x3e, +0x90,0xe8,0x0d,0x55,0x3a,0x8f,0x34,0x0b,0x5b,0xf8,0x6d,0x03, +0xf6,0xd7,0xf6,0x7d,0x4d,0x45,0x0f,0xda,0x6c,0xa5,0x31,0x5b, +0x93,0x4a,0xfe,0xe6,0x76,0xf7,0x73,0xa9,0x10,0xf3,0xe2,0x21, +0x39,0x71,0x3a,0x6c,0x77,0xd8,0xe6,0xb0,0x24,0xf9,0xf4,0x76, +0x69,0xc2,0xe8,0xd7,0x76,0x3c,0x2d,0x7f,0x89,0x9f,0xe0,0x52, +0xa9,0x37,0x4a,0x0f,0x2b,0x3f,0x2c,0x3b,0x22,0x3f,0x16,0xad, +0xcf,0xc3,0xf8,0x44,0x50,0xce,0xf9,0x3e,0x9b,0xb3,0xf8,0x85, +0x24,0xb6,0xc7,0x7e,0x94,0xfc,0x88,0xde,0xc7,0x72,0xcb,0x47, +0xfe,0x29,0xb7,0x1c,0x63,0xd8,0x94,0xc0,0x87,0x77,0xfb,0x3d, +0x0d,0x6c,0xa7,0x86,0xb3,0x48,0x9b,0x08,0xb1,0x94,0xaa,0xfc, +0x8e,0x38,0xf4,0x27,0x3b,0x78,0x38,0x96,0xb4,0xa7,0xa5,0xb7, +0xaa,0x0d,0x26,0x88,0xe3,0xf0,0x77,0xe8,0x13,0x75,0x71,0x05, +0x1b,0xa7,0xab,0x20,0x36,0x0c,0x96,0x11,0x08,0x5f,0x82,0xe1, +0x8c,0x60,0xf4,0x23,0x81,0x0b,0x4b,0xf0,0x02,0x23,0x1a,0x99, +0xd2,0x63,0x0b,0x86,0x8f,0xfd,0x42,0x8f,0x2d,0xa0,0xc7,0xf0, +0x0f,0x29,0xdf,0x7b,0x7c,0x17,0x8c,0x7e,0x78,0xf9,0x3d,0x17, +0xc9,0x44,0xcd,0x00,0x85,0xed,0xf0,0xa9,0x51,0x4e,0x27,0x8f, +0x9f,0xb5,0x22,0x77,0x17,0xc6,0xa8,0xfc,0xba,0x7b,0x31,0x8b, +0x1c,0x8e,0xd4,0x40,0x5e,0x4f,0x55,0xf1,0x67,0x30,0x22,0xf0, +0x5a,0x58,0xb3,0x94,0x49,0x2d,0x4a,0xad,0x8c,0x2d,0xe1,0x6a, +0x70,0x37,0x7b,0x39,0xe3,0x52,0x46,0x64,0x86,0x2c,0x8a,0xf7, +0x57,0x37,0x9d,0xb7,0x69,0x63,0x99,0x23,0x7f,0xe9,0x52,0xd4, +0xa5,0x4b,0x97,0xb9,0x41,0x65,0x7c,0x45,0x68,0x74,0xb3,0xb3, +0x83,0x3a,0xce,0x95,0x60,0xd7,0x89,0x13,0xd8,0x8c,0xba,0xec, +0xde,0xe4,0x56,0x93,0x54,0x7e,0xaf,0xbe,0xbf,0xb6,0xa7,0x8c, +0xc3,0x74,0x19,0x18,0x53,0xd7,0xb8,0xd5,0x08,0xb6,0xa2,0x06, +0xda,0x1b,0x82,0x3d,0x86,0xf5,0x42,0x18,0x78,0x74,0x31,0x58, +0x2d,0x78,0x93,0xe0,0x46,0x9f,0xce,0xc0,0x2a,0x33,0x7f,0x3e, +0xcb,0x36,0xc7,0x2c,0x85,0x32,0x95,0xf4,0x56,0x12,0xee,0xbd, +0xcf,0x31,0x90,0xb2,0xeb,0xb9,0x4c,0x7a,0x61,0x6a,0x71,0x52, +0x29,0x67,0x8c,0xa5,0x04,0x94,0x7e,0x42,0x25,0xb6,0x51,0x09, +0x94,0x7e,0xa1,0x7f,0x51,0xea,0x9a,0x0c,0xd3,0x7e,0xc2,0x69, +0xd2,0xa1,0x69,0xbf,0xd0,0xbf,0x87,0x57,0x91,0x64,0xc7,0x24, +0xeb,0x78,0x8b,0xba,0x44,0x3e,0xac,0x31,0xa4,0x36,0xb8,0x4c, +0x6a,0xa1,0xfc,0x15,0x29,0xed,0xcf,0x79,0x1a,0xfb,0xc0,0x22, +0x86,0x3f,0xa8,0xe5,0xaf,0xe9,0xa2,0xcf,0x41,0x24,0x18,0x92, +0x44,0x93,0x38,0xd9,0x95,0x3d,0xcd,0x31,0x7c,0xf8,0xd5,0xfd, +0x5d,0xa1,0x2d,0x1c,0x4e,0xdb,0x4f,0x2e,0xeb,0x44,0x6e,0x3b, +0xbb,0xb3,0xed,0x12,0x7f,0xea,0xe6,0xd1,0xeb,0x11,0x03,0x34, +0xbe,0x58,0x37,0xa8,0x43,0xb2,0xca,0x33,0xab,0x53,0x2a,0xf5, +0x33,0xf8,0x7d,0x36,0x9e,0x46,0x9e,0xd6,0x1c,0x26,0x31,0x0d, +0x19,0x01,0xf5,0x3e,0x95,0xfe,0xc5,0xca,0x86,0xfe,0xb9,0x8e, +0x19,0x6e,0x19,0xd6,0xca,0x98,0x2a,0xfb,0x6b,0x6c,0x27,0x83, +0xd7,0x86,0x74,0x49,0xa2,0xbe,0x02,0xac,0x62,0xea,0xd2,0x53, +0xeb,0xd5,0x84,0x56,0x1d,0xb1,0x97,0x1d,0xe2,0x34,0x09,0x84, +0x42,0x04,0xae,0x42,0x7e,0x78,0xc1,0xed,0xa8,0x7f,0xde,0x2d, +0x45,0x71,0x68,0x24,0x2b,0xec,0x17,0xde,0x10,0x51,0xbd,0x5f, +0x50,0x67,0xf1,0x22,0x2e,0x20,0x18,0x01,0x0c,0x44,0x30,0x18, +0x21,0xe5,0x58,0x44,0x50,0xa3,0x8a,0xa0,0x74,0x3f,0x10,0xae, +0x92,0xc2,0xfc,0xf4,0xbc,0x94,0x02,0x93,0x6c,0x1e,0x8c,0x5a, +0xc4,0x4d,0x8f,0x84,0x91,0xcd,0xe2,0xc8,0xfb,0xc2,0x9c,0x66, +0x3c,0xcc,0x64,0xe4,0xa4,0x16,0xc6,0x67,0xeb,0x26,0xf3,0x07, +0xbc,0x02,0x9c,0x7c,0x5c,0x38,0x6c,0x62,0x9a,0x52,0xf6,0x16, +0xf8,0x15,0x04,0x65,0x28,0x1b,0x0e,0x13,0xa9,0x24,0x4a,0xa4, +0x0e,0x98,0x09,0x4a,0x9b,0xf0,0x77,0x33,0xf8,0x7d,0x83,0xb8, +0xc8,0x54,0x58,0x84,0xe3,0xc5,0x95,0xa6,0x7f,0xcd,0x68,0x61, +0x86,0x26,0xe6,0x91,0x90,0xbc,0x7d,0xb9,0x5e,0xf9,0xf2,0x40, +0xbe,0xc0,0x23,0xd5,0x27,0xc9,0x97,0x13,0xe8,0x65,0x90,0x50, +0xef,0xbd,0xde,0xae,0x1e,0xad,0x7e,0x3c,0x3a,0xd3,0x90,0x11, +0x07,0xc4,0xcb,0xa4,0x42,0xb8,0xe7,0xd8,0x0f,0xc9,0x43,0x26, +0x98,0xcc,0x0e,0x4e,0x06,0x77,0x42,0xbf,0xe5,0x1e,0x8c,0xa7, +0x31,0xb9,0x15,0x4c,0x26,0x2f,0xe0,0x0b,0x61,0x02,0x7e,0xf1, +0x18,0x16,0xb6,0xe2,0xc2,0x37,0x26,0x73,0x71,0xbe,0x09,0xcc, +0x5f,0x87,0x13,0xc5,0x09,0x30,0x71,0xa5,0x54,0xfb,0x7a,0x09, +0x2e,0x6c,0x85,0x85,0x30,0x93,0x3a,0xa4,0xec,0xc1,0xb9,0xa4, +0xd9,0xa9,0xd2,0xa1,0xd6,0xaa,0xb4,0x86,0x77,0xa8,0xb1,0xa8, +0xb3,0x28,0xe1,0x84,0x3f,0xb0,0x97,0xc0,0x4e,0xf6,0x65,0xf4, +0x8f,0x19,0x1d,0xd9,0xde,0xad,0xbc,0x8e,0xd7,0x9c,0xa0,0x59, +0x87,0x38,0xcc,0x67,0xd1,0xf1,0x00,0x6e,0x33,0x45,0x25,0xd5, +0x16,0x67,0x85,0x16,0x50,0x4d,0x05,0x2d,0x08,0x53,0x81,0x91, +0x62,0x79,0x97,0x50,0xfe,0xbc,0x93,0xf9,0x7b,0x79,0x2e,0x69, +0x74,0x68,0x35,0xab,0xb2,0xac,0xac,0xe2,0x9d,0xea,0x64,0xed, +0xa6,0x15,0x1c,0x3c,0xb1,0x20,0x38,0x66,0x2b,0x8c,0x91,0x88, +0xd0,0x18,0xb2,0x19,0xc6,0xdc,0x63,0xd0,0x16,0x57,0x93,0x6f, +0x70,0xec,0x56,0x06,0xbe,0x50,0x82,0xb1,0xf7,0x70,0x2c,0x2b, +0xee,0xc6,0xef,0x49,0x2f,0x8c,0x29,0x07,0xd5,0xe4,0xb7,0xf2, +0x04,0x3e,0x10,0xc7,0x78,0xe0,0x38,0xd9,0x6c,0xaa,0x01,0x9b, +0x84,0x5c,0x72,0x49,0xbd,0x70,0x35,0xe8,0xa3,0x5a,0x19,0x8d, +0x30,0xd5,0x61,0xc4,0xae,0x27,0x21,0x30,0x92,0x83,0xe0,0x0e, +0x3c,0x90,0xc4,0x50,0xda,0x88,0x3a,0x6c,0x28,0x2e,0x66,0xaf, +0x64,0x5d,0xca,0x8a,0xcc,0xe6,0xaa,0x31,0x94,0x8d,0xcd,0x8e, +0xce,0xbe,0x9c,0x6d,0x10,0xcf,0xbb,0xcf,0xdc,0x88,0x23,0x67, +0xaf,0xaa,0xb2,0xe5,0xaf,0xf7,0x74,0x7e,0x5d,0x7d,0x9d,0x03, +0x73,0xe6,0xa0,0x69,0xb0,0xb9,0xaf,0xb5,0x73,0x81,0x5d,0x9e, +0x63,0xa6,0x87,0x03,0x5f,0xed,0x5f,0xed,0x59,0xea,0xb1,0xcf, +0x6f,0x6f,0x40,0x40,0x80,0x5b,0xa1,0x75,0x99,0x4b,0xba,0x8b, +0x23,0x5f,0x1a,0x58,0xe7,0x9c,0xe7,0x6d,0x68,0xb1,0xcb,0x6e, +0xb3,0x6b,0x31,0x85,0xb0,0x5d,0x3f,0xd0,0x40,0x6c,0xfc,0x1d, +0x58,0x20,0xad,0xa9,0xda,0x87,0xa3,0xb5,0x56,0xe1,0xbc,0xe9, +0x65,0x66,0x3c,0xc8,0x60,0x7a,0xe9,0xb3,0xe8,0xdf,0xa4,0x12, +0x78,0xf3,0x88,0x73,0xbd,0x4d,0x83,0x5d,0x81,0xa3,0x07,0x5f, +0xe5,0x56,0x6b,0x51,0x4c,0x35,0x55,0x51,0x3c,0x44,0x6a,0x77, +0x55,0x6b,0x15,0xad,0xeb,0xcb,0xe1,0x5d,0x9e,0x5a,0xdf,0xb1, +0xed,0xe2,0x86,0x74,0xf1,0x3c,0x19,0xb8,0x5b,0x77,0x37,0xf7, +0xae,0x61,0x1a,0xef,0xbd,0xc3,0x5a,0x53,0x67,0x17,0x27,0x9c, +0x85,0x3d,0x24,0x73,0x7b,0xba,0x56,0xfc,0xc6,0x6b,0x71,0x7c, +0xe8,0xb7,0x81,0xb7,0xfd,0x06,0x38,0x4c,0x3e,0x48,0x62,0xb7, +0x5e,0xde,0x7d,0x61,0xed,0xc0,0x25,0xfe,0xc4,0xd3,0x23,0x37, +0x0e,0xdc,0xa0,0x1c,0xde,0x62,0xf0,0x01,0x31,0xc4,0x71,0xa8, +0x30,0x13,0x2f,0xe1,0x27,0x45,0x14,0xe2,0x13,0xe1,0x0b,0x98, +0x48,0x43,0x2c,0x98,0xc0,0x45,0x31,0x25,0x38,0x01,0xa6,0xe2, +0x58,0xc8,0xc4,0x2f,0x0a,0x7b,0x78,0x4a,0x60,0xc6,0xe1,0x84, +0x77,0x86,0x94,0x10,0xc1,0xc3,0x21,0x96,0x74,0xe1,0x53,0x8a, +0x17,0x45,0x5d,0xe2,0x07,0x43,0x48,0xa0,0x70,0x70,0xdd,0x10, +0xae,0xa3,0x5c,0x1c,0xab,0x3f,0x78,0xa3,0x47,0x54,0x06,0x39, +0x8d,0x97,0xea,0x84,0x69,0x52,0xd9,0xb8,0xf3,0xe1,0xc3,0xd3, +0x00,0x17,0x98,0xb2,0xb6,0xf6,0x5f,0xb2,0xbe,0xe7,0xea,0x71, +0xfc,0xc7,0x76,0x4a,0x13,0xe4,0x94,0x09,0x39,0xe3,0xd8,0xd9, +0xb8,0x1a,0x27,0xce,0x2a,0xb2,0xe0,0xeb,0x2a,0x2a,0xaa,0xf2, +0xca,0x38,0x71,0x4a,0x8f,0xb0,0x9d,0x8d,0x3a,0x77,0xe6,0xc2, +0x71,0xd5,0xd7,0xb8,0xb0,0xb2,0x44,0x01,0x6e,0x0b,0x1b,0x48, +0x70,0x97,0x57,0xb7,0x77,0xbd,0x85,0x1f,0x9f,0x6b,0x5b,0xa0, +0x9d,0x62,0xc4,0x65,0x8a,0x11,0xe4,0x0d,0xec,0x83,0xff,0x2c, +0x67,0x8b,0x5a,0x4b,0xaf,0x65,0x76,0x1a,0x65,0xf2,0xfe,0xda, +0x0e,0x9b,0x9c,0xf4,0x38,0x7c,0x87,0xff,0x01,0xff,0xb9,0x78, +0x5e,0x0e,0xe7,0x51,0xa3,0x8b,0x5e,0x68,0x66,0x3b,0x23,0xae, +0x12,0x8e,0x91,0xbd,0xcd,0x6e,0xdd,0x9e,0xd5,0x56,0x3e,0x7c, +0x8e,0x63,0x99,0x4e,0xaa,0x39,0x47,0x25,0x5c,0x4a,0x70,0xf5, +0x1b,0x58,0xcd,0x74,0xcd,0xa5,0x5f,0xa7,0x31,0x97,0xc5,0x60, +0x53,0x32,0x1d,0x57,0xbf,0x67,0xc1,0x4f,0x09,0x34,0xa6,0xa3, +0x06,0xa3,0x08,0xd5,0xc2,0x29,0x12,0xeb,0x1b,0xed,0x19,0xed, +0x61,0x73,0xdc,0xea,0x84,0xe5,0xc9,0xbe,0x27,0x03,0xc0,0x74, +0x01,0x67,0xf1,0x6f,0x3e,0xc2,0xbe,0x8c,0x7d,0x19,0x7b,0xd3, +0xcb,0xfa,0x8a,0x6f,0x67,0x4b,0xf9,0x08,0x41,0x7b,0xbc,0xf6, +0x78,0x1a,0x1d,0x88,0x3f,0x18,0x7b,0x30,0xd6,0xdd,0x96,0x97, +0x72,0x12,0x6a,0xe5,0xfe,0xf6,0xfe,0x4e,0x52,0x4a,0x82,0xef, +0xbf,0x29,0x09,0xad,0x17,0x5a,0x2f,0x72,0xe2,0xaa,0x4e,0x61, +0x03,0x9b,0x7b,0x3e,0xe7,0x42,0xf6,0x85,0x8b,0xa1,0x17,0x43, +0x2f,0x84,0x36,0x24,0xf1,0x61,0x37,0x83,0x6e,0x05,0x74,0x71, +0xc2,0x28,0x67,0xf2,0x18,0xbc,0x1a,0xd0,0xeb,0x1e,0x9c,0x68, +0xc0,0x79,0x6c,0x4a,0x4e,0x72,0x41,0x4c,0x96,0x59,0x0a,0x1f, +0xee,0xed,0x6b,0x15,0xe4,0xc3,0xe1,0x37,0x96,0x70,0x60,0x33, +0xba,0x52,0xbf,0xba,0x0e,0x4f,0x98,0xc3,0x09,0x24,0x78,0xd0, +0x52,0x28,0x68,0xc0,0x93,0x40,0xe0,0x62,0x13,0x75,0x1c,0x90, +0x4f,0x0e,0x66,0x07,0x15,0xed,0x4f,0x35,0x0b,0xe2,0x13,0x82, +0x53,0x3d,0xe2,0xfd,0x38,0x48,0x12,0x35,0x49,0x46,0x56,0x76, +0x79,0x7c,0x9e,0x79,0x3a,0x7f,0xc8,0xd7,0xd7,0x79,0x6f,0x00, +0x87,0xdd,0x03,0x24,0x75,0x6f,0x96,0x73,0xbc,0x5f,0x7d,0x06, +0xbf,0x3f,0x37,0xa0,0x64,0x5f,0x3a,0x87,0x3e,0xb8,0x89,0x24, +0xef,0x8a,0xdd,0x78,0x69,0x73,0x4b,0x12,0x7f,0xe4,0x56,0xd8, +0xa3,0x50,0xaa,0x4c,0x51,0x58,0x43,0x8a,0x9f,0x24,0xbf,0xb9, +0xfc,0xda,0x3c,0x8a,0x3f,0xb2,0x22,0x74,0xb9,0xfb,0x7a,0x4e, +0x30,0x5b,0x45,0x9a,0xe0,0x3f,0xe6,0x3d,0x10,0x2b,0x06,0x63, +0x2c,0x2b,0xac,0x07,0x17,0xa9,0x3a,0xec,0x7f,0x60,0x14,0x25, +0xbb,0x72,0x61,0x2f,0x95,0xc3,0xb3,0x01,0x3d,0xef,0xc1,0xf1, +0x06,0x1a,0xf9,0xfe,0x57,0x8e,0x43,0x54,0x8e,0xbd,0x54,0x8e, +0xdb,0x96,0xb0,0x7f,0x33,0xba,0x58,0x82,0xcb,0x3a,0x29,0xe0, +0x3b,0x4e,0xe5,0x38,0x60,0x29,0xe4,0x36,0xe0,0x09,0x2a,0xc7, +0x05,0x2a,0xc7,0x9b,0xff,0x87,0x1c,0xa2,0x09,0x76,0x13,0x74, +0x0e,0xc3,0x39,0xe6,0xa8,0xa0,0xda,0xea,0x50,0xf9,0x5b,0xf2, +0x1f,0x51,0xf0,0xa5,0x32,0xcc,0xc4,0xb8,0x69,0xd2,0xf3,0x93, +0xc7,0xff,0x7d,0x7e,0x72,0x91,0x05,0x33,0xe9,0xf9,0x89,0x1a, +0xe8,0x83,0x1a,0x83,0xd3,0xe9,0x00,0x9c,0x2b,0x39,0x53,0x56, +0xa9,0x72,0x07,0xd4,0xd0,0x80,0x15,0xe2,0x8f,0x4a,0x03,0x52, +0xf6,0xbf,0x06,0xa4,0xeb,0xff,0x1e,0x90,0x10,0xf1,0x2c,0x15, +0x53,0x1c,0x16,0x33,0x48,0x12,0x73,0xed,0x47,0x31,0x45,0x49, +0x4c,0x68,0x12,0x14,0xc8,0x70,0x49,0x8c,0xf0,0xc3,0x54,0xe1, +0x1f,0x7d,0xcc,0xeb,0xfb,0x7f,0x16,0xd5,0xb8,0xf3,0x73,0xf9, +0x7f,0x8b,0x6a,0xcc,0x67,0x22,0x87,0x2b,0x8a,0x3e,0xc1,0x4d, +0x65,0x55,0x0a,0xc2,0x4d,0xa1,0x8a,0x74,0x88,0x29,0xb8,0x97, +0xc5,0xb8,0x70,0x34,0x5e,0x81,0xcb,0x54,0x1b,0x1c,0x15,0x7e, +0x84,0x6d,0x49,0x60,0x0e,0xf9,0x2a,0xb0,0x89,0xc5,0xb9,0xe5, +0xe4,0x63,0x95,0x8d,0x9a,0x40,0xfe,0x63,0xdd,0x0d,0x0e,0xc3, +0xd0,0xfa,0xff,0xaa,0xb7,0x31,0x38,0x49,0x5c,0x4a,0x60,0x4f, +0x0b,0xee,0x79,0x0f,0x4b,0x28,0x96,0x0f,0x51,0xe8,0x5e,0x34, +0x1d,0x77,0x98,0xc2,0x0e,0xfc,0x14,0x7d,0x4d,0x04,0xaf,0x56, +0xb4,0x62,0x4c,0x84,0xa3,0x44,0x1d,0xd8,0xdf,0x98,0x56,0x64, +0x09,0xb0,0xbf,0x23,0xcb,0xe2,0x62,0x0a,0xb6,0x63,0xd5,0x61, +0x2c,0x0b,0x0b,0x95,0x7e,0xc7,0xb1,0x73,0xa8,0xdb,0x4a,0x1b, +0xb4,0x26,0xe9,0x85,0x99,0x35,0x09,0x85,0xb2,0x74,0x3e,0xcc, +0xce,0xdf,0xca,0xd7,0x8e,0xea,0x0c,0x3e,0x12,0x2e,0xc3,0x23, +0x06,0x6f,0xe7,0x91,0xb0,0x02,0xef,0xea,0xe0,0x2c,0x73,0x3f, +0x3e,0x35,0x20,0xcf,0x36,0xd1,0x9b,0x13,0x57,0x0c,0x19,0x92, +0x3f,0xc1,0x6e,0x70,0x2a,0x26,0x48,0x2d,0xb9,0xec,0xa5,0x96, +0x5c,0x73,0x84,0x02,0x98,0xc3,0xc0,0x5b,0xfc,0x92,0xe0,0x86, +0x17,0xb0,0x81,0xe9,0x94,0x96,0x0d,0x6d,0x5d,0xc9,0x62,0x98, +0x25,0x59,0x84,0x1b,0x7e,0x62,0x21,0x48,0x09,0xb6,0x2e,0xc2, +0xad,0x0c,0x5a,0x89,0xd1,0xa4,0x07,0xde,0xea,0x77,0x0b,0xd3, +0x44,0x57,0x71,0x1a,0x2b,0x2c,0x84,0x2b,0x04,0xdf,0x7e,0x0f, +0x6f,0x19,0x7c,0x4b,0xe9,0x3e,0xbc,0x5d,0x80,0x6f,0xa9,0x71, +0x26,0xd3,0x11,0x73,0x3b,0xed,0x75,0xc2,0x4f,0x75,0x06,0x2c, +0x30,0x40,0x3b,0x50,0x67,0xfc,0xf5,0xcd,0x6c,0x17,0x5b,0xe6, +0x58,0xf2,0x30,0xa2,0xbd,0xbf,0x27,0xef,0x19,0x07,0x46,0x60, +0x67,0x48,0x31,0x67,0x1c,0x13,0x99,0x7b,0x2e,0xbf,0x48,0xe5, +0x03,0x38,0xb7,0x23,0x61,0x33,0x4b,0xd2,0x2a,0xe2,0xaa,0x8c, +0x12,0xf9,0xfd,0x56,0x41,0x36,0xde,0x54,0xa0,0x4a,0x39,0x78, +0x30,0x9e,0x4f,0x49,0x48,0xe5,0xbe,0x82,0xbd,0xf9,0x26,0x7e, +0x7c,0x9a,0x4f,0xaa,0x6b,0x92,0x0b,0xe5,0x79,0x52,0xfe,0x38, +0x74,0x21,0x3c,0x66,0xda,0xfb,0xf3,0xbb,0x13,0xfb,0x38,0x38, +0x88,0x9f,0xe3,0x0a,0x69,0x21,0x2c,0xcc,0x90,0x56,0xb7,0xd4, +0xa8,0x09,0xce,0xf8,0x02,0x57,0xb1,0xa8,0x7c,0x70,0x91,0xfa, +0x74,0xd5,0x4a,0x37,0x05,0x93,0x35,0xf8,0xd2,0x10,0x5e,0xe2, +0x38,0x71,0x95,0xc1,0x5f,0xb3,0xbb,0xc5,0x1d,0x0c,0x7c,0x3f, +0xa8,0x44,0xd0,0xfd,0x15,0xb8,0x33,0xe8,0x8f,0x47,0xc9,0x85, +0xbc,0xf3,0x79,0x67,0x0b,0x39,0x70,0x5f,0x4c,0x05,0xc9,0xfd, +0x89,0x0c,0x86,0xe8,0x0f,0x85,0xac,0x13,0x44,0xd9,0xd0,0xe1, +0x9e,0x3b,0x50,0x30,0xb8,0x56,0x26,0x8a,0xac,0x90,0x37,0x68, +0x4e,0xc4,0x29,0x43,0x99,0x9a,0x32,0x21,0xbb,0x73,0x37,0xa3, +0x2b,0xe4,0x11,0x4c,0x01,0x53,0x48,0x61,0x30,0x45,0x94,0x13, +0xb0,0x80,0x14,0xb4,0x90,0x6a,0x58,0xef,0xa5,0x87,0xf7,0x52, +0x83,0xab,0x1a,0x9c,0x49,0x60,0x46,0x3b,0xce,0xf8,0x5f,0x69, +0xa5,0xca,0x72,0x50,0xc6,0x99,0xb8,0xcc,0x48,0xa0,0x51,0xfe, +0x62,0x46,0xb4,0x9f,0x45,0xdc,0xf6,0xbb,0xec,0x77,0x3e,0xc8, +0xc1,0x7e,0x18,0xdb,0x41,0xb1,0x5e,0xc7,0x00,0x75,0xf0,0x33, +0x23,0xf8,0x8c,0x1a,0x8c,0xf5,0x01,0xeb,0x43,0x76,0xc3,0x05, +0x55,0xa3,0x2b,0x63,0xaa,0xe2,0xa5,0xc5,0xad,0x0a,0xd2,0x12, +0xfd,0xef,0xff,0x59,0xb1,0xde,0xc8,0x56,0x24,0x54,0x26,0x96, +0x27,0x71,0xc2,0x14,0x68,0x95,0xb2,0x18,0xb7,0xc3,0x4c,0x76, +0xe9,0x90,0xcf,0xb0,0x81,0xf4,0x0a,0x72,0x31,0x48,0x4a,0x35, +0x5d,0xf3,0x31,0xd5,0x94,0xf9,0x98,0x6a,0xaa,0x21,0xa5,0x9a, +0x8e,0x1f,0x4e,0x35,0xb5,0x14,0xfe,0x43,0x16,0xd4,0xe2,0xa8, +0x7b,0x3b,0xee,0x70,0xf8,0xa7,0x31,0xdc,0x63,0x72,0xbd,0xcb, +0x3d,0xab,0xbd,0x38,0xb1,0x88,0x29,0xcf,0x2f,0x2e,0xcc,0xc8, +0xb7,0x2b,0xe7,0x75,0x37,0xcf,0xd7,0x9a,0x63,0x9b,0x6d,0xc6, +0xe7,0xc4,0xe6,0xc6,0xe7,0x26,0x72,0x78,0x61,0xd0,0x12,0xe2, +0xd8,0xdc,0xb0,0xbc,0xfd,0xb9,0x07,0x39,0x31,0xa0,0x9e,0xa0, +0x13,0xc6,0x81,0x13,0x0b,0xb7,0xa5,0xde,0x82,0x4e,0xd4,0x59, +0x39,0xb1,0xb8,0x3e,0x8d,0x94,0x95,0x56,0xf5,0xa7,0x56,0x5a, +0xd2,0x50,0xcf,0xc9,0x49,0xe6,0xec,0x4c,0x01,0xe6,0x0f,0x52, +0xe2,0x98,0xeb,0x98,0x6d,0x5b,0x97,0xc3,0x07,0x54,0xfb,0x54, +0x38,0x55,0x71,0xeb,0x87,0x16,0x90,0x26,0xa1,0xd8,0xbc,0x4f, +0x60,0x86,0xe6,0x89,0x0c,0x2b,0xfc,0x02,0x87,0x89,0x58,0xfc, +0x50,0x28,0x66,0xc4,0x62,0x9c,0x4c,0x84,0xe2,0xf5,0x62,0x31, +0xd5,0xfc,0x59,0x83,0x6e,0x24,0xbb,0x28,0xa3,0x34,0xb9,0xc0, +0x20,0x91,0xdf,0xe7,0xec,0x6b,0xeb,0x41,0xbf,0x2f,0x92,0x69, +0x4f,0x0b,0xaa,0x08,0x2a,0xf0,0xcb,0x55,0x36,0xf6,0xcf,0xf5, +0x48,0xf5,0x4d,0xa6,0x5c,0xce,0x0b,0x7f,0x1a,0x8c,0x85,0x9f, +0x18,0x71,0x23,0xce,0x24,0x58,0xf6,0x03,0x94,0x31,0xbd,0xcb, +0xc8,0x0f,0xd0,0xb6,0x8c,0xc5,0xbf,0xcd,0xa8,0x7e,0x97,0x51, +0xfd,0xfe,0x4d,0x09,0xda,0x16,0x61,0x1b,0x83,0xf5,0x62,0x0c, +0x69,0x11,0xaa,0x4c,0xfb,0x05,0xb5,0xa1,0x95,0xa2,0x1a,0x2b, +0xbc,0x87,0x8b,0x44,0xac,0xfa,0x5e,0xa8,0x62,0xc4,0x2a,0x9c, +0x4e,0x84,0xaa,0xc5,0x62,0x15,0xa3,0x78,0x5b,0xb0,0x27,0xf0, +0xe9,0xf5,0xea,0xbe,0x68,0xa9,0x9c,0xaa,0x5f,0x17,0xac,0x60, +0x2e,0x9d,0x3f,0x13,0x75,0x52,0x15,0x98,0xb5,0x45,0x95,0x38, +0xf2,0xe1,0xc1,0xcb,0xc3,0xad,0x99,0x22,0xc2,0x15,0x8e,0x0f, +0xc0,0xe2,0x16,0x5c,0xfc,0xd2,0x70,0x29,0x5a,0x9a,0xc2,0x2e, +0x26,0x40,0x5b,0x4f,0x77,0x9a,0x01,0x27,0x18,0x39,0x10,0x20, +0x77,0x8a,0x3a,0x62,0xbf,0xa6,0xdf,0x10,0xd0,0x05,0x01,0x51, +0x4c,0xcc,0xae,0x06,0x39,0xf0,0x5b,0x72,0x1a,0x78,0x1c,0xd5, +0xbd,0xab,0xc7,0xa7,0x97,0x03,0xd3,0x16,0xf4,0x92,0x3e,0xba, +0xd1,0x14,0xe6,0x51,0x0b,0x32,0x31,0xc0,0x31,0x7a,0xdc,0x1d, +0xfc,0x9b,0x40,0x6d,0x3b,0xd6,0x82,0x12,0xbd,0x45,0xc1,0x9e, +0x01,0xbe,0x81,0x41,0xf5,0xee,0x7c,0x79,0x71,0x7e,0x65,0x46, +0x33,0x57,0x3b,0xf4,0x87,0x5c,0x98,0x87,0x0f,0x58,0x54,0x4c, +0xd8,0x36,0x00,0x2a,0x2a,0x0d,0xbb,0x2d,0xe9,0xbe,0xb5,0x1e, +0x4e,0x32,0x54,0xcd,0x95,0xc1,0xd8,0xf6,0xc6,0xf6,0xcb,0xc0, +0x48,0xb3,0x8f,0x93,0x23,0xff,0xdc,0x06,0xbb,0xa7,0x08,0x33, +0x99,0x98,0x2e,0x05,0x71,0x05,0x73,0x8a,0x2a,0xfc,0xeb,0xc1, +0xfb,0xc4,0xdd,0xc8,0xd9,0xdc,0xc1,0xc6,0xb7,0xc1,0xa3,0xce, +0xb9,0xd6,0xda,0x9d,0xaf,0x34,0x2f,0xb2,0xc8,0x36,0xb7,0xb1, +0xb5,0x74,0x36,0xf5,0xc8,0x95,0xf3,0xcd,0x45,0x0d,0x65,0x35, +0x55,0x29,0xd6,0x09,0x56,0xd1,0xe6,0xda,0xcb,0x76,0xea,0x2e, +0x31,0xc8,0x91,0xf3,0xdf,0xb5,0x5f,0xed,0xeb,0xb8,0xcb,0x45, +0x5a,0x9f,0xb7,0x32,0x53,0xc1,0xcd,0x9e,0x96,0x6b,0x54,0x35, +0x99,0x44,0x6d,0x85,0x6b,0x0c,0x8c,0xec,0xec,0x07,0x3f,0x58, +0xe4,0x0b,0xca,0x32,0x18,0xaf,0x56,0xdf,0x5c,0xdd,0x59,0x7e, +0x95,0x13,0x0e,0x9f,0x25,0xa2,0xf6,0x50,0xa6,0x86,0x4c,0x78, +0xd1,0xb9,0x8d,0xd1,0x96,0xcc,0xe7,0x2a,0x98,0xc0,0x55,0x06, +0xaf,0x8a,0x94,0x26,0x99,0xc3,0x55,0x34,0x67,0x8d,0xc6,0x60, +0x10,0x3d,0x1c,0x44,0xc3,0xdf,0x65,0x82,0x16,0x81,0xd5,0x97, +0x60,0xe5,0x15,0xe0,0x13,0x13,0x02,0x13,0x02,0xe3,0x82,0x1a, +0x0a,0x79,0x9b,0x6f,0xf4,0x9e,0x18,0xf7,0x5b,0x53,0x92,0xea, +0x95,0xed,0x96,0xe5,0xba,0xe2,0xe8,0x82,0x63,0xea,0x27,0xf2, +0x5b,0xf3,0xfb,0xb3,0xbe,0xe6,0xa0,0xb3,0x1d,0x4f,0x7d,0x30, +0x98,0x86,0xae,0x72,0x8a,0x6f,0x7e,0xda,0x9e,0xda,0x6e,0xb2, +0x2d,0xa7,0x28,0xb1,0x7d,0x49,0xdc,0x43,0x5d,0x42,0x1d,0x43, +0x39,0xc8,0x04,0xa6,0x03,0x19,0x58,0xcd,0xd6,0x34,0x56,0x74, +0x66,0xf7,0x71,0x75,0xf8,0x8d,0x4c,0xea,0x4e,0x67,0xed,0x6c, +0xea,0xe8,0xcc,0x89,0x05,0x6c,0xf0,0x91,0xbd,0x47,0x83,0x8e, +0x72,0xc2,0x5e,0x23,0xf1,0x34,0xbb,0x2b,0x38,0xde,0x10,0x94, +0xab,0x60,0x52,0xd3,0x0f,0x2d,0xca,0x50,0x4e,0xf5,0x49,0xd0, +0x91,0x89,0x3a,0x2c,0x7e,0x29,0x2c,0x27,0x68,0xe2,0x8d,0x23, +0x71,0x94,0xba,0x6a,0x95,0x8d,0x02,0x8c,0x87,0xd1,0xc5,0x30, +0x09,0x9c,0x54,0x32,0x65,0xd4,0xdc,0xc4,0x59,0xc4,0x9a,0x09, +0x3a,0x7e,0x31,0x5d,0x4d,0xe0,0x0c,0xc4,0xcf,0x58,0xc3,0xd4, +0xd0,0x0e,0xd5,0xb6,0x7f,0x72,0xa5,0x37,0xb1,0xf2,0x44,0x05, +0xc5,0xbf,0xd4,0xa1,0x9a,0x40,0x29,0x3a,0xbd,0x86,0x13,0x1d, +0x78,0xe2,0x83,0x6c,0x1a,0x7a,0x18,0x81,0xc7,0x3c,0xb4,0xc6, +0x52,0xd8,0xc6,0x3a,0x2d,0x5b,0x36,0x1f,0x3f,0xdb,0x52,0x44, +0x63,0xd2,0x2f,0xbe,0x7d,0xf1,0x3a,0xfd,0x03,0xd5,0x99,0x97, +0x1d,0xf0,0x32,0x8a,0x49,0x99,0x76,0x6f,0x19,0x8c,0x5f,0x5e, +0xdc,0xcc,0x23,0xf7,0x44,0xe3,0x27,0xd7,0x67,0x1c,0x7e,0x8b, +0x73,0x88,0x4b,0x88,0x53,0x88,0x5d,0x88,0x24,0xa0,0x62,0x07, +0x2a,0xc2,0x0a,0xb6,0xae,0xa9,0xa6,0x2b,0xa7,0x9f,0x0a,0xf8, +0xbd,0x0c,0x52,0x59,0x7f,0x2b,0x47,0x33,0xfb,0x61,0x01,0x83, +0x8e,0x04,0x1e,0x0d,0x3c,0x42,0x05,0x94,0x89,0xa7,0xd8,0xed, +0x92,0x80,0x6a,0x55,0x30,0xa5,0xf9,0xe7,0x36,0x65,0x38,0x2c, +0xec,0x24,0xb8,0x1d,0x67,0xc3,0x76,0xa9,0x6c,0xc1,0x76,0x02, +0xdb,0x61,0x21,0x6e,0xa7,0xb7,0x62,0xbc,0xe0,0x4a,0xee,0xf5, +0x66,0xf7,0x47,0x5e,0xe7,0x22,0x71,0x6f,0x2b,0x68,0x33,0x51, +0xe7,0xcf,0x46,0x1e,0x57,0xbd,0xaa,0x55,0x50,0xa0,0x73,0xfd, +0x70,0xf4,0xf1,0x33,0x11,0x47,0x95,0x0f,0x1f,0x53,0x38,0xd1, +0xfc,0xa2,0x69,0xe5,0x0f,0x26,0xcb,0xa4,0x65,0x28,0x23,0x98, +0x10,0x1d,0x07,0xed,0xad,0x32,0x0e,0x5a,0x6c,0xc8,0xe3,0x81, +0xac,0x2e,0xfa,0xe1,0x28,0x0c,0x6c,0x85,0xc0,0x28,0xe6,0xe2, +0xee,0x7c,0x83,0x47,0xbb,0x0a,0xeb,0x78,0xcd,0x6e,0xcb,0xfe, +0x7d,0x14,0xc5,0x27,0x36,0xe1,0x74,0xfa,0xb9,0x69,0xe6,0x2f, +0xe9,0xa7,0x9c,0xf6,0x68,0x18,0x70,0xa2,0xc1,0x7e,0x92,0x75, +0x2f,0xe9,0x41,0xf4,0x77,0x1c,0xf0,0x9d,0xd8,0x45,0xd5,0x98, +0x09,0xc6,0x15,0x76,0x48,0x36,0xe1,0x88,0x5c,0x6d,0x3e,0x25, +0x27,0x3e,0x3b,0x3e,0x8f,0x13,0x67,0x76,0xdc,0x87,0xd5,0x02, +0xd5,0xf7,0xd5,0x22,0x45,0xdb,0x5f,0x3f,0xe0,0xaf,0xac,0xb0, +0xfa,0x2a,0x81,0x83,0xcd,0x78,0x10,0x54,0xc1,0x86,0xd9,0xef, +0xb7,0x2f,0xd0,0x5f,0xb2,0x96,0xe2,0x92,0xac,0xd2,0xd4,0x5a, +0xae,0x4a,0x7c,0x45,0x31,0x1b,0x1f,0xb3,0xcb,0xd3,0x5d,0xae, +0x7f,0xa7,0xf2,0x83,0x3e,0x85,0x05,0x05,0x2b,0xd9,0x0c,0x07, +0xd5,0x3c,0xf9,0x1f,0x75,0x65,0xf5,0x97,0x1f,0x53,0x43,0x59, +0x17,0xd3,0xb3,0x03,0x16,0x4f,0x81,0x68,0xe6,0x4a,0xbb,0x02, +0x66,0x30,0x94,0x32,0xc2,0x03,0x41,0x95,0x1c,0x89,0x89,0x38, +0x17,0x7e,0x38,0x5c,0x5a,0x50,0xc3,0xd4,0xb5,0x5f,0xfd,0x25, +0xf7,0x47,0xae,0x91,0x86,0x33,0xf3,0x75,0x71,0x3e,0xce,0x97, +0x41,0x39,0x6b,0x87,0x9f,0xe0,0x44,0x1a,0x4a,0xcf,0x98,0x53, +0x64,0xce,0x77,0x54,0x37,0xd6,0x96,0x56,0xd2,0x6b,0xec,0x15, +0xb6,0xb0,0x74,0xc4,0xa4,0x4e,0x23,0x93,0x71,0x65,0x65,0xb9, +0x82,0xb0,0x4d,0xb8,0x4a,0xc4,0xb9,0x43,0x99,0xf3,0x64,0xc2, +0x40,0xe7,0x2e,0x46,0x47,0xb2,0x86,0x3c,0xea,0x4c,0xf2,0x18, +0xcc,0xfb,0xe8,0x4c,0xf2,0xfe,0x75,0x26,0x79,0x92,0x33,0x81, +0x5b,0xc2,0x42,0x72,0x34,0xfa,0xc8,0x85,0x43,0xe1,0x52,0x8d, +0x8c,0xb7,0x30,0xbb,0x8b,0xde,0xa7,0xb5,0x4c,0x73,0x5c,0x43, +0x52,0x79,0xaa,0x77,0x23,0xbf,0xd2,0x16,0x55,0xdc,0x71,0xe4, +0xc1,0x78,0x63,0xbe,0x36,0xb2,0xf5,0x4a,0x4b,0x0c,0x87,0xea, +0x52,0x26,0xfa,0x06,0xf6,0x30,0x8e,0x30,0xc7,0x11,0xa8,0x80, +0x13,0xcb,0xcd,0xf8,0x1f,0xdf,0x95,0x3d,0xbd,0xf8,0x54,0xaa, +0x91,0xd1,0x29,0xc8,0xa4,0x1a,0x19,0x34,0xbc,0xff,0x11,0x97, +0xd5,0x96,0x29,0x08,0x9e,0x42,0x1d,0x11,0xd7,0x0e,0x65,0x2e, +0x91,0x09,0x0f,0x3b,0xb7,0x7f,0xbc,0xa4,0x7a,0x6a,0xa0,0xf5, +0x12,0x48,0x0e,0x1b,0x68,0xfd,0xbf,0x06,0x5a,0x2f,0x19,0x28, +0x7c,0x0d,0xef,0xa4,0x6c,0x70,0x29,0xd2,0x3a,0xcc,0x1f,0xff, +0x15,0x16,0x77,0xe2,0xe2,0x8f,0x91,0xd6,0x1a,0x19,0x2c,0x66, +0x42,0x71,0x8c,0x3e,0x8e,0x5e,0x35,0xa7,0xd8,0x84,0xff,0xf6, +0xd7,0xaa,0x1f,0x2f,0xbd,0xa4,0xff,0x75,0x5d,0x97,0xc0,0x33, +0x91,0xe7,0xa5,0x2e,0x82,0x3f,0xe1,0xa6,0x72,0x1a,0x69,0x05, +0x0c,0x8e,0x20,0xe2,0xca,0xa1,0xcc,0x05,0x32,0xe1,0x41,0xe7, +0x0e,0x46,0x8c,0x1b,0xbc,0x44,0xf6,0x6f,0x09,0x58,0x1f,0xa0, +0x5d,0xeb,0xcf,0x67,0x0d,0xe4,0x3c,0x4f,0xba,0x2b,0x15,0x08, +0xb1,0x20,0xa1,0xb7,0x02,0xbe,0x0d,0x1a,0xb0,0x0c,0xe4,0xd3, +0xf7,0x64,0x6a,0x24,0x6a,0x71,0x83,0x7a,0x91,0x04,0xab,0xe9, +0xf5,0x55,0x33,0x58,0xfd,0xf1,0xfa,0xaa,0xff,0xbd,0xbe,0xea, +0x61,0x00,0x49,0x15,0x6e,0x13,0x78,0xdf,0x8c,0xef,0xbf,0x15, +0xa6,0x35,0x8b,0xd3,0xee,0x69,0x6f,0x16,0x27,0x99,0x09,0x93, +0xd6,0xe3,0x9f,0x66,0xf0,0xe7,0x5a,0x71,0xb9,0xa9,0x30,0x87, +0x71,0xf4,0xb0,0x74,0x37,0xf3,0x74,0x4f,0x71,0x4b,0xf6,0x4c, +0x74,0x76,0xe0,0x1f,0xd9,0xdf,0xb5,0xbb,0x6d,0x1d,0x7e,0x3c, +0xfc,0xd8,0xa1,0xe3,0xdc,0xa9,0x45,0xf3,0xbe,0x9a,0x33,0xe5, +0x92,0x5c,0x81,0x12,0x32,0xa5,0x0b,0x91,0x30,0x49,0x0d,0xf7, +0x5f,0x85,0x43,0x2c,0x8c,0xbc,0xf8,0xfe,0xd2,0xef,0x97,0x93, +0x42,0x93,0x42,0x92,0x83,0x6b,0x8a,0x78,0x79,0xb7,0x7e,0xc7, +0xce,0x56,0x7b,0x2f,0x3e,0x7b,0x6f,0x66,0x70,0x56,0xa0,0xfa, +0xd1,0x19,0xc7,0x71,0xcc,0xc9,0x17,0x4d,0x3f,0x5c,0xbd,0x7f, +0xd5,0xaa,0x98,0xd7,0x33,0x5b,0xab,0xbb,0xc2,0xd8,0x37,0xc9, +0x3b,0xc9,0x2b,0xa9,0xb7,0xa2,0xbd,0xba,0xbd,0x9e,0x13,0xd6, +0xb5,0x88,0x9a,0xcc,0x07,0x71,0x05,0x79,0x6b,0xfb,0xdc,0xe1, +0x99,0x65,0x71,0x3d,0xbf,0xac,0x71,0x55,0xe5,0x7c,0xaa,0x2b, +0xd7,0x50,0x93,0xbc,0x2d,0xfd,0xa9,0x6e,0xa0,0xc9,0xbe,0x9c, +0xd7,0xb6,0x59,0x69,0xaf,0xee,0x4e,0x59,0xe2,0x24,0x00,0x12, +0xf9,0x6f,0xd2,0xc4,0xbe,0x5b,0x7e,0xdf,0xf8,0x75,0x5b,0xec, +0xe3,0xe3,0x7c,0xe2,0x3c,0x62,0xdc,0x4d,0x8e,0x1b,0x9d,0x30, +0x3a,0x39,0xf0,0xe4,0x26,0x30,0xbd,0xc0,0x9a,0x7e,0xcc,0xd4, +0x70,0xd2,0x0d,0xce,0x0c,0xcc,0x0c,0xfa,0x5f,0x99,0x1a,0xbb, +0xdd,0xe4,0x61,0xff,0xcd,0xd4,0xb0,0xe8,0x90,0x37,0x19,0x06, +0x38,0xf9,0xbb,0x06,0x78,0xb9,0x9e,0x76,0xfd,0x98,0xa9,0xd1, +0x73,0xbe,0xf7,0x7c,0x0f,0x25,0x43,0x8b,0xa5,0x4c,0x8d,0xb2, +0x0b,0x65,0x17,0x4a,0x2e,0x72,0xc2,0x19,0x41,0x4e,0xc4,0xe9, +0x43,0x99,0x6b,0x64,0x42,0x2d,0xd5,0xd4,0xe1,0xb0,0x27,0x8b, +0x6a,0x6a,0x16,0x83,0x59,0x1f,0x35,0x35,0x8b,0x6a,0xaa,0x78, +0xde,0x86,0xa4,0x69,0x27,0x6c,0x8d,0x91,0xd6,0x0e,0x84,0xdf, +0x08,0xbe,0x17,0xdc,0x2b,0x95,0x87,0x91,0xd2,0x32,0xd2,0x7f, +0x8b,0xfb,0xd5,0xe4,0x63,0x5a,0x86,0xc3,0x5a,0x6e,0xb0,0x90, +0xfa,0x77,0xaa,0xd5,0x59,0xc3,0x5a,0xfd,0xd7,0xe0,0x68,0xf2, +0x10,0x52,0x34,0x7a,0x1f,0x42,0x62,0x3b,0x26,0xde,0xd7,0xdb, +0x84,0x29,0xd2,0xe6,0x8c,0x1c,0xce,0x68,0xb0,0x28,0x13,0x83, +0xa4,0x29,0xd2,0x6f,0x96,0x31,0xe9,0xd9,0x69,0x79,0xf1,0x59, +0x5c,0x15,0x1a,0xb2,0x97,0x12,0x2f,0x25,0x46,0x25,0x9a,0x24, +0xf2,0x9e,0xeb,0xf4,0x56,0xad,0xd3,0x2a,0x75,0xe0,0x2f,0x5f, +0xba,0x4c,0x7f,0xb8,0xc1,0x27,0xbb,0x48,0x07,0x5a,0xc2,0x64, +0xf6,0x5a,0x6c,0x7f,0x62,0x53,0xb2,0x7b,0x03,0xbf,0xdc,0x0d, +0xd5,0x7d,0x71,0xc6,0x91,0x04,0x13,0xbe,0xf9,0x7c,0x7b,0x54, +0xfb,0x65,0x4a,0xe2,0x71,0x97,0x11,0xac,0x62,0x03,0xd7,0x98, +0xaf,0x9c,0xb7,0xa8,0xcc,0x9e,0xff,0xfe,0x69,0xcd,0x8b,0xd8, +0x67,0x14,0x9a,0xb0,0x03,0x30,0x8a,0x89,0x5f,0xd3,0xba,0xf4, +0xb7,0x95,0x15,0xd5,0x3c,0x2a,0xfc,0x61,0xf4,0xd4,0xff,0x29, +0x27,0xaa,0x81,0x03,0x39,0x18,0xbc,0xd7,0x2b,0xc8,0x9f,0xc3, +0x05,0x4c,0x6a,0x66,0x72,0x56,0x62,0x36,0x67,0x80,0x1e,0xe4, +0xbb,0xdf,0x57,0xb0,0x4d,0x4a,0xd2,0x16,0x2f,0xd2,0x50,0xfa, +0xe5,0xef,0x4b,0xe9,0x4b,0x69,0x8b,0xaf,0x30,0x8d,0x94,0x36, +0x17,0x5c,0x4b,0xec,0x34,0x4b,0xe6,0xf7,0x1b,0x7b,0xe9,0xb8, +0x5a,0x72,0xc2,0x17,0x30,0x8b,0xa4,0x38,0x27,0x5b,0xc7,0x5b, +0xd5,0xd3,0x83,0xb5,0x21,0x35,0x7b,0xcb,0x39,0x9c,0xbb,0x8f, +0x24,0xd8,0xc4,0x9b,0x5c,0x31,0x6c,0x89,0xe6,0x23,0x3a,0xc3, +0xda,0xc3,0xea,0x38,0x5c,0x7a,0x94,0x5c,0x31,0xbf,0xb8,0xfb, +0xac,0x51,0x7b,0x24,0x7f,0xba,0xf7,0x68,0x4f,0x44,0xb3,0x94, +0x87,0x0e,0x9f,0x13,0x9b,0x22,0xe3,0x22,0x23,0x1a,0xa7,0x9e, +0x82,0xf9,0x1d,0xe2,0x02,0xd0,0x60,0x41,0x3d,0x06,0x26,0x17, +0xbc,0xaf,0x74,0x6f,0xe6,0x67,0x3b,0xe2,0x0c,0x4f,0xd4,0x08, +0xa7,0x41,0x11,0x8b,0x87,0x43,0x70,0xbd,0x26,0x7e,0xaa,0xda, +0x68,0xfd,0x00,0xf8,0x0c,0xd8,0x75,0x0e,0xc2,0x95,0xc1,0x1c, +0x5d,0x18,0x9b,0x0c,0xdb,0x74,0x87,0xe4,0x40,0x53,0xbe,0x25, +0xa0,0xc5,0xbf,0x89,0x52,0xbe,0xd4,0x1e,0x38,0xc8,0xd6,0xfa, +0x55,0xfb,0x56,0x7a,0x73,0x43,0xbf,0x0c,0xfa,0x10,0x23,0xe8, +0xea,0x60,0xa9,0x09,0x4f,0x27,0x32,0x61,0x7c,0x27,0x8b,0xcf, +0x86,0xa7,0xf4,0xea,0xff,0x49,0x6e,0xaa,0xff,0x77,0xaa,0xee, +0x18,0x64,0x60,0x93,0x34,0x55,0x77,0xfc,0x63,0x26,0x9d,0xce, +0x70,0x26,0xdd,0x48,0x48,0x26,0xdf,0xd9,0x3c,0xd4,0xed,0x55, +0xad,0xba,0xd5,0xfc,0x21,0xf5,0x29,0x57,0x8f,0x0d,0x7f,0x8f, +0xec,0x1f,0xec,0x83,0x75,0x6c,0xd8,0x0e,0xb3,0x19,0xe6,0x6b, +0xb8,0x5b,0xdb,0xeb,0x36,0x6f,0x57,0x31,0x08,0xf3,0x91,0xa9, +0x5a,0x32,0xd1,0xbb,0x15,0x3a,0x98,0x3b,0xd5,0xf5,0x6f,0xd4, +0x84,0x58,0x29,0x59,0xc7,0x70,0x28,0x13,0xc7,0xc9,0x06,0x27, +0x74,0x6a,0x7e,0x8c,0x0f,0x6e,0x52,0xf3,0xbe,0xc9,0xe0,0xcd, +0x8f,0xe6,0x7d,0xf3,0x5f,0xf3,0xbe,0x39,0x6c,0xde,0x5b,0x05, +0x47,0xe2,0x70,0xda,0xf5,0x94,0xa7,0xea,0x26,0x70,0x34,0xc6, +0x18,0xf8,0x8c,0x09,0x5b,0xe6,0x6c,0xa1,0x67,0x56,0xe1,0xc0, +0x5f,0xef,0xae,0xee,0x4f,0x91,0x9e,0x2a,0xcd,0x85,0x18,0x63, +0x74,0x5c,0xc5,0x9c,0x2f,0x38,0x57,0x5a,0xa1,0x02,0x8b,0x60, +0x65,0xdb,0x6c,0x36,0xbb,0x31,0xad,0x29,0xb9,0x55,0x9e,0xc8, +0x87,0xca,0x02,0x65,0x5e,0x72,0x0e,0x5d,0x8c,0x61,0x39,0x13, +0xfe,0x82,0x1c,0xa8,0xf2,0x6f,0x0d,0x2c,0x33,0xdd,0xcb,0x67, +0xba,0x64,0x9b,0xc4,0x51,0x26,0xa2,0xb0,0x89,0xb8,0xdc,0x35, +0x79,0x6c,0xd1,0x63,0xea,0xc1,0x37,0xeb,0x37,0xae,0x2d,0xd5, +0xe4,0x84,0x79,0xe2,0x25,0x72,0xed,0x71,0xc9,0xdd,0x44,0xf8, +0x82,0x83,0x05,0xe8,0x8c,0x23,0x98,0x18,0xb9,0xc2,0x1b,0xa6, +0x34,0x3e,0xa1,0x54,0x6d,0x70,0x05,0x5e,0xc0,0x83,0x2c,0x66, +0xf9,0x2c,0x5d,0x32,0x5b,0x15,0x6e,0x50,0x5a,0x87,0xd3,0xa4, +0xf6,0x36,0x0c,0xce,0xc1,0xf7,0xe4,0x42,0xcd,0xb9,0xc6,0x4e, +0x15,0xa9,0xd9,0x0d,0x23,0x6a,0x89,0x53,0xfe,0x47,0xe7,0xc7, +0x1d,0x06,0xc0,0x4a,0x13,0x24,0xbe,0x66,0x8b,0xac,0x55,0xd3, +0x0d,0x9e,0x55,0x55,0xb6,0x9d,0xfd,0x6f,0x01,0xb1,0xd5,0x53, +0x84,0x8b,0xd2,0x04,0x89,0x94,0x4d,0x56,0x44,0x4c,0xa1,0x66, +0x05,0xe6,0x99,0x41,0xde,0xe2,0xa1,0x4f,0x5e,0x41,0x42,0x33, +0x26,0x7c,0xc7,0xbe,0x8c,0x82,0x71,0xf1,0x4f,0x32,0xbd,0x9a, +0xf9,0x15,0xbe,0xa8,0x70,0x00,0x15,0x8f,0x72,0xf8,0x74,0xf0, +0x38,0x7c,0xcf,0x8a,0xfb,0x86,0xc2,0x89,0x51,0x98,0xd6,0xfe, +0x4d,0x07,0x39,0x61,0xb1,0x9e,0xb8,0x96,0xdd,0x10,0x1e,0x23, +0x87,0xb1,0x89,0x30,0x23,0xe7,0x49,0xae,0x32,0x8c,0x12,0x96, +0x11,0x7d,0x71,0x03,0xa3,0x7d,0x84,0x1e,0x55,0x4c,0x82,0xb9, +0x39,0xcf,0xf2,0x94,0x8f,0x36,0xe9,0x84,0xac,0x0d,0x5d,0x71, +0x40,0x59,0x98,0xf4,0x15,0x31,0xfe,0x36,0x02,0x58,0x98,0xa4, +0xf2,0x83,0xee,0x72,0x16,0xd7,0xa5,0xe1,0x98,0x96,0x0d,0xaa, +0x85,0x66,0xdd,0x97,0x2f,0x75,0x64,0xc0,0x36,0xde,0x32,0x49, +0x61,0x68,0x27,0xec,0x22,0xb5,0x81,0xfd,0x0e,0x35,0xae,0x05, +0x55,0xbc,0x4b,0xfe,0xb6,0x7a,0xbb,0x34,0x0e,0xea,0x2c,0x49, +0x6d,0x50,0x87,0x53,0xad,0x5b,0x61,0x15,0xef,0x9c,0xbf,0xa7, +0xda,0x2e,0x9d,0xc3,0x21,0xb4,0x25,0x75,0x01,0x03,0xf6,0xd5, +0x6e,0x05,0xd5,0xbc,0x53,0xe1,0xce,0x6a,0xab,0x2c,0x0e,0x1a, +0xad,0x48,0x6d,0x40,0x87,0x53,0x95,0x5b,0x61,0x35,0xef,0x5c, +0xa0,0x5f,0x65,0x9b,0xc9,0x29,0xc2,0xc5,0xc1,0xe7,0xc4,0x0a, +0x4d,0x77,0xe2,0x34,0x1a,0x64,0x71,0x65,0x26,0x7c,0x61,0x41, +0x61,0x55,0x7e,0x23,0x27,0x16,0xf7,0x0e,0x7e,0xc9,0x16,0x7f, +0x93,0xfb,0x34,0xf5,0x27,0x4e,0xd0,0x43,0x86,0x64,0x15,0x65, +0x55,0x25,0x15,0x1a,0xa6,0xf3,0x21,0xf6,0xbe,0x56,0x5e,0xf4, +0xa6,0x89,0x94,0x0f,0xff,0x4a,0xf9,0xb0,0xa8,0x90,0x4f,0xf9, +0xb0,0x4f,0x55,0x50,0x96,0xa9,0xc4,0x87,0x0b,0x24,0x3e,0xfc, +0x1d,0x55,0x6c,0x74,0x7e,0x01,0xce,0x4c,0x97,0xc4,0x79,0x3d, +0x29,0xe7,0xcd,0xb2,0x20,0x4b,0xd0,0xf9,0x47,0x16,0x52,0x94, +0xc0,0x73,0x09,0x7a,0x32,0x78,0x94,0x72,0x82,0x5e,0x61,0xb3, +0x5e,0x8f,0xa0,0x26,0xd6,0x4a,0x9c,0xe0,0x00,0xe5,0xbc,0xe2, +0xe6,0x17,0xc2,0x66,0x46,0xdc,0x8c,0xaa,0x44,0xd8,0xbc,0x58, +0x2a,0x4a,0x09,0x95,0x83,0x77,0x89,0x9b,0xee,0x7a,0x03,0x54, +0x31,0xa7,0x01,0x31,0x7c,0xde,0xf2,0x6b,0x5f,0xf6,0x03,0x2e, +0x8a,0xc9,0xdc,0xf8,0x56,0x1f,0x18,0x79,0x4e,0x1b,0x8f,0x8a, +0x6d,0xab,0xdb,0x5c,0x06,0x38,0xe1,0xf4,0xd0,0x0d,0x42,0xe9, +0x74,0xa2,0x8e,0x02,0x25,0xc6,0x4d,0x1f,0xcb,0xcc,0xeb,0xb2, +0xe8,0x60,0x46,0x86,0xf8,0xde,0x41,0x9e,0x15,0x8f,0xe1,0x42, +0x02,0x7e,0x2d,0xe8,0xc7,0xc0,0xf5,0x99,0x44,0x9c,0x8f,0x2a, +0x0c,0x6e,0x3a,0x84,0x73,0x76,0x20,0xaf,0xda,0xe4,0xd8,0xf2, +0x47,0x3a,0x8c,0xbe,0x0c,0x9c,0x32,0x7c,0x60,0x0c,0x41,0x93, +0x60,0xcd,0x75,0xa8,0x61,0xb0,0x0e,0x65,0xe4,0x6c,0xc6,0xd9, +0x8c,0x0c,0x15,0xa8,0xd9,0xc6,0xe0,0x01,0x51,0x9d,0x34,0x42, +0x17,0x84,0xe3,0x7f,0xb0,0x94,0xa5,0x3b,0xfb,0x09,0x4e,0xc2, +0x33,0x30,0x89,0x92,0xd1,0x93,0xe0,0x4d,0x7e,0x82,0x69,0x4d, +0xb0,0x2e,0x05,0x1c,0xb9,0x46,0xd1,0xd1,0x40,0x50,0x63,0xf7, +0xe3,0x36,0x67,0x9c,0xa9,0x81,0x9f,0x6b,0xc1,0x04,0x67,0x98, +0xea,0x03,0x0b,0xb5,0xf7,0xf3,0xf9,0xb8,0xb1,0x1e,0x17,0x3c, +0xc1,0xa9,0x7a,0x1b,0x35,0xb6,0xcd,0xda,0x51,0xa2,0xcf,0xbf, +0xb9,0xf1,0xe8,0xf6,0xd5,0x6f,0xdb,0x37,0x5e,0xd3,0x7c,0xb6, +0xa3,0xac,0x8b,0x5f,0x75,0x73,0xf7,0x6d,0xd3,0x7b,0x94,0x8a, +0xae,0x25,0x8e,0xfd,0xb6,0x5f,0x5b,0xf7,0xd7,0xc2,0xf8,0x6c, +0x50,0x8e,0x84,0x39,0x5c,0x33,0x0e,0x19,0x42,0x03,0x7b,0x0a, +0xc7,0x85,0xe0,0x68,0xb7,0xd9,0xfa,0x8f,0x74,0xee,0xea,0xf5, +0xda,0xd8,0xf1,0xd7,0xb6,0xdf,0x5c,0xfb,0xf5,0x72,0x13,0x9c, +0xb8,0x09,0xc7,0xa8,0x2f,0xac,0x92,0xf3,0x3f,0xbd,0x7c,0x00, +0xa3,0xba,0x60,0x52,0x99,0x71,0x89,0x51,0xa1,0x8c,0xe2,0xdb, +0x36,0x41,0x91,0x88,0xeb,0xfa,0xe1,0x7d,0x1d,0xbe,0x6f,0x13, +0x48,0x1d,0x1e,0x60,0x92,0x52,0x92,0xd2,0xe3,0x32,0xbd,0x63, +0x78,0x38,0xd7,0x80,0x6b,0x98,0x8c,0xac,0x8c,0xa2,0x94,0x62, +0xb3,0x74,0x3e,0xd4,0x33,0xc0,0xcd,0xd7,0xbb,0x38,0x98,0xc7, +0x29,0xf0,0xa9,0x01,0x7e,0x8a,0xea,0xf0,0xa9,0x21,0xfd,0xd3, +0x6d,0x09,0x57,0x18,0xd7,0x83,0x49,0x81,0x71,0xa1,0xb1,0x81, +0xca,0x18,0x6a,0x2d,0x28,0x18,0xe3,0x0f,0xd6,0xf0,0x83,0x8e, +0x38,0xcf,0xf2,0x7b,0x4a,0xf6,0x7c,0x4e,0x7b,0x9f,0xf6,0xfe, +0x2a,0xca,0x9c,0x07,0xfe,0x32,0x90,0xd8,0x57,0xf1,0xdc,0xb2, +0x2e,0x61,0x91,0xe0,0xca,0x0e,0x15,0x08,0x81,0x24,0xd3,0x3b, +0xc5,0x3b,0xd9,0xbd,0x25,0x95,0x0f,0x2d,0x09,0x2a,0xd8,0x9b, +0xc3,0x09,0x2e,0xb8,0x8e,0x1c,0x0c,0x08,0xf6,0xf1,0xa7,0xc0, +0x9f,0xc2,0x14,0xc7,0x1d,0xcc,0xda,0x9f,0x7a,0x30,0x59,0x19, +0x95,0x68,0x78,0xdf,0x0f,0x1e,0x3a,0xac,0x90,0x85,0xad,0x64, +0x67,0xa6,0x3c,0xc7,0x2a,0xbf,0xbb,0xb9,0xaa,0x3b,0xf7,0x6b, +0x1a,0x5c,0x4e,0xb2,0x82,0xfb,0xac,0x8f,0xdc,0xd5,0xda,0xd2, +0xc9,0xa2,0xdc,0xa9,0xc6,0xbd,0xc9,0xd6,0x97,0x2f,0x31,0x29, +0xb3,0x6d,0x70,0xb4,0xf4,0x32,0xf4,0xdb,0x16,0x90,0x61,0xcd, +0x3f,0xc8,0x1e,0x28,0x68,0x2b,0x6d,0x76,0xeb,0xf5,0x7c,0xe0, +0xc5,0x0d,0x39,0xc2,0x11,0xf2,0x35,0x78,0xec,0x66,0xd1,0xc3, +0x96,0x80,0x87,0x8c,0xd1,0x3b,0xa2,0x29,0x95,0x45,0x55,0x14, +0xac,0x06,0x9f,0x10,0xfd,0x85,0xf8,0xc9,0x66,0x3c,0xa1,0x99, +0xa5,0xc7,0x03,0x53,0xf6,0x43,0xe9,0xb5,0x0a,0xce,0x02,0xee, +0x37,0xb2,0x37,0x1d,0x5f,0xb9,0xc0,0x27,0xce,0x59,0xbd,0x3c, +0x9e,0xbb,0x83,0x13,0xef,0xe9,0xff,0xcc,0xa1,0x09,0x1a,0x92, +0x47,0x0d,0x8d,0xcd,0x19,0x3d,0x54,0x07,0x33,0xf4,0x5b,0xcc, +0x9e,0x5a,0x72,0xb0,0x01,0x15,0xc8,0x90,0xa2,0x54,0xcf,0x56, +0xd3,0x1f,0xc7,0x2e,0xc4,0xcf,0x54,0x3b,0x1c,0x6f,0xff,0x54, +0xf4,0x5b,0x1c,0x8c,0x55,0x16,0xee,0x31,0x7a,0xb0,0x95,0x88, +0x51,0x37,0x84,0x28,0x46,0xbc,0x42,0x95,0xe9,0xfc,0x2d,0x05, +0x21,0x4a,0x8b,0x11,0x35,0x44,0x45,0xd2,0x20,0x18,0x58,0xf6, +0x41,0xb4,0x78,0x15,0xa3,0x59,0xe1,0x1c,0x75,0x82,0xd3,0x45, +0x83,0xf7,0x54,0x93,0xd6,0xc3,0x08,0x72,0xbd,0xe4,0x56,0x5d, +0x67,0x8b,0x4d,0x25,0x6f,0x6a,0xb1,0xc3,0x62,0x93,0x8b,0x55, +0xad,0x6b,0xab,0x7f,0x0f,0x27,0x6c,0x6e,0x17,0x35,0xe0,0xb9, +0xb0,0xac,0x5d,0x5c,0xf6,0x4c,0x77,0xb5,0x38,0x47,0x2e,0xcc, +0xc1,0xe7,0xe2,0x52,0x39,0xec,0xc0,0x5a,0xc6,0xe8,0xb0,0xe1, +0x11,0xd9,0xf0,0x24,0xa6,0x46,0x2a,0x2c,0x2d,0x82,0x4f,0xca, +0x8e,0x76,0xf0,0x06,0xa1,0x9a,0xa1,0x1a,0x07,0x38,0x28,0x84, +0xb5,0xec,0x03,0x34,0x07,0x75,0x64,0xe1,0xab,0x5d,0xe9,0x9d, +0x3c,0x8e,0xc9,0x5d,0x56,0xa5,0xd5,0xca,0x89,0x77,0xe0,0x09, +0x81,0x22,0x90,0x61,0x11,0x33,0x58,0xaa,0x84,0x35,0x28,0xa3, +0x9a,0x3f,0xb4,0xbf,0x8e,0xbc,0x06,0xad,0x79,0xac,0x70,0xe5, +0x35,0x99,0x87,0xba,0xaf,0x69,0x2c,0x11,0x2b,0x8c,0x21,0x3b, +0xb7,0x6d,0x35,0xd9,0x68,0x9b,0x6b,0xc0,0xdf,0xaa,0xed,0xaf, +0xed,0xec,0xe2,0xf0,0xef,0xde,0xbf,0xa6,0xe9,0xb1,0x83,0x7b, +0xf0,0x15,0xc1,0x04,0xf8,0x71,0x0f,0xfe,0x88,0x51,0x7a,0x10, +0x25,0x2e,0xc1,0x63,0x7a,0x42,0x43,0x2f,0x7e,0x25,0x2c,0x81, +0x04,0x66,0xc8,0xeb,0x2a,0xf1,0xbc,0x6f,0xf7,0xc0,0xfe,0x86, +0x89,0x17,0x5f,0xbd,0xb3,0x62,0x53,0xf1,0x46,0x4e,0xf1,0x26, +0x18,0x10,0xf8,0xec,0xd6,0x8f,0x8f,0xaf,0xbf,0xa4,0x60,0xc6, +0x5c,0x5b,0xfe,0xc3,0x56,0x98,0xb0,0x51,0x5a,0x16,0xc3,0x0c, +0x6c,0xe9,0x36,0x1a,0xe0,0x20,0xac,0x03,0x33,0x99,0x90,0xec, +0xfd,0x39,0x07,0xf2,0x38,0xb8,0xd4,0x26,0xae,0x63,0xae,0x64, +0x5d,0xca,0xb9,0x94,0xcd,0x09,0x5a,0x9d,0xe2,0x6a,0xe6,0x42, +0xfa,0xc5,0xf4,0xf3,0xe9,0xfa,0x97,0xf8,0x93,0xfe,0x27,0xfc, +0x4f,0x04,0x70,0x08,0x32,0x78,0xc5,0x1c,0xf5,0x3b,0xe2,0x17, +0xe1,0xc7,0x61,0x9e,0x31,0x44,0x32,0x07,0x7d,0xc2,0x7c,0x43, +0x7c,0x39,0x4c,0x33,0x82,0x60,0x46,0x5f,0x4b,0x63,0xcf,0x4c, +0x19,0x27,0x64,0xc0,0x0b,0x12,0xe7,0x1d,0xef,0x9b,0x40,0xcf, +0xf2,0x64,0x12,0x73,0xe2,0x73,0x62,0x73,0x39,0x61,0x96,0xb8, +0x86,0xb4,0xe3,0xb5,0x28,0xf6,0x09,0xe8,0xb6,0x89,0x2b,0x8d, +0x61,0xe3,0x5a,0xf6,0x18,0x36,0xcb,0xa1,0x8c,0x75,0x5a,0x8f, +0x9f,0x59,0xa0,0x9f,0x6d,0x9a,0x01,0x0f,0xe9,0x3d,0x1f,0xda, +0x32,0x80,0xe3,0x22,0x99,0x2c,0xe4,0x40,0xd1,0x18,0xd2,0xf5, +0xd2,0x7a,0x78,0x0c,0xac,0x41,0xbe,0xd1,0xfe,0x5b,0x4e,0xca, +0x76,0xdf,0x43,0x04,0x8d,0x4e,0x51,0xe3,0xa9,0xf6,0x1a,0x71, +0x91,0x4c,0x58,0x84,0x7f,0x31,0xb8,0x7e,0xfa,0x5a,0xec,0x9b, +0xa5,0x9a,0xad,0x07,0x2d,0x6f,0x7f,0xbb,0x9f,0x02,0x4b,0xa8, +0xe7,0x49,0xc1,0x25,0xc0,0x6c,0x82,0xc6,0xd9,0x39,0x54,0xc9, +0x3a,0x7f,0xc7,0x2f,0x9e,0xc2,0x7a,0x15,0x71,0xcf,0x0d,0xd2, +0x9d,0xd9,0x59,0xd8,0x5c,0x5e,0xec,0x57,0xe8,0x97,0xeb,0x57, +0x5a,0xce,0xfb,0x65,0x79,0x66,0x79,0x66,0xe6,0x65,0x67,0xe7, +0xa4,0xe7,0x39,0x16,0xf3,0x41,0x5e,0xbe,0xde,0x9e,0x7e,0x0e, +0xb9,0xf6,0xd9,0xce,0x29,0x1e,0x0e,0x7c,0x49,0x70,0x69,0x60, +0x49,0x80,0xad,0x97,0xb9,0xaf,0x3c,0x98,0x13,0x4a,0xec,0x48, +0x77,0x46,0x67,0x7e,0x63,0x71,0x99,0x4f,0xb1,0x4f,0xae,0x5f, +0x71,0xc5,0xf0,0xa7,0xdd,0xb3,0x0a,0x73,0xf2,0xf2,0xd2,0xf3, +0x1d,0x8b,0xe8,0xa7,0xbd,0xbc,0x5c,0x7d,0xed,0x73,0xed,0x72, +0x9c,0x32,0xdc,0x9d,0xf8,0xd2,0xbd,0xe5,0xfe,0xa5,0xfe,0xb6, +0xde,0xe6,0x01,0xa6,0x21,0xdc,0x75,0xac,0x27,0xb5,0xc9,0xd5, +0x99,0x15,0xd9,0xf5,0xce,0xb5,0x4e,0x45,0xee,0xa5,0x15,0xbc, +0x57,0xbe,0x7d,0xa9,0x4d,0x49,0x75,0x61,0x69,0x49,0x5e,0x19, +0xfd,0xdf,0x3e,0xae,0xce,0xce,0xd6,0xee,0x0e,0xf9,0x8e,0x39, +0x9e,0xc9,0x6e,0x8e,0x7c,0x6e,0x58,0x71,0x40,0xa9,0xaf,0x5b, +0x90,0xf3,0x3e,0xc7,0xfd,0x52,0xf1,0x2f,0x43,0x12,0xe0,0xea, +0xea,0x6c,0xef,0xe6,0x98,0xe7,0x90,0xed,0x99,0xe2,0xe9,0xc8, +0xe7,0x85,0x94,0x04,0x14,0xfb,0xd9,0x7a,0x5a,0xfa,0x98,0x07, +0xe7,0x5a,0xf0,0xed,0x99,0x6d,0x85,0x8d,0x65,0x79,0x81,0xd9, +0x81,0xa9,0xc1,0xe5,0xe5,0x7c,0x70,0x6a,0x40,0x9a,0x6f,0x5a, +0x79,0x51,0x51,0x49,0x76,0x09,0xa7,0x38,0xf8,0x6a,0x70,0x1e, +0xc1,0xd9,0xfd,0x60,0x2b,0xaa,0x00,0xbb,0x1b,0x59,0xf1,0x13, +0xb4,0xed,0x87,0xd9,0xec,0x60,0x11,0x66,0x91,0x5e,0x71,0x15, +0x2c,0xd1,0xc6,0x25,0xe2,0x2c,0x3d,0x81,0x65,0xe5,0x14,0x8d, +0x46,0xce,0xc2,0x50,0x1c,0x5b,0xac,0xcf,0x43,0x24,0xa8,0x7c, +0xf7,0xa2,0x1c,0xe6,0x52,0xfe,0xb3,0xf5,0xaa,0xb0,0x35,0x8a, +0x29,0xc7,0xb9,0xef,0x56,0xc2,0x25,0x9c,0x22,0x4d,0xe9,0x1c, +0x82,0x4f,0xf0,0x93,0xb7,0x32,0xf8,0x94,0x3a,0xbd,0x29,0x83, +0xe3,0x08,0xbe,0xf3,0x47,0xad,0x1d,0xa8,0xa8,0xda,0x6a,0xa6, +0xf0,0x10,0xe6,0xa5,0xc3,0x6e,0x61,0x94,0xca,0xa0,0x13,0xec, +0x19,0x4a,0x65,0x7a,0x70,0x32,0x79,0x38,0xa8,0x4e,0x23,0x63, +0x25,0x39,0x09,0xf5,0xa1,0x43,0x4d,0xb5,0x2a,0x8c,0xa9,0x4f, +0x0c,0xc9,0x0a,0x4e,0xf3,0x4d,0x57,0x36,0xdb,0x9b,0x1d,0x9c, +0xb2,0x37,0x31,0x48,0x19,0x37,0x60,0xe4,0xe0,0x64,0x88,0xc4, +0xcd,0x4c,0x5a,0x6a,0x62,0x6a,0x62,0x0e,0x87,0xc7,0x28,0xb1, +0xc0,0xb0,0x1e,0x08,0x63,0x3a,0xf5,0x49,0x0f,0x1c,0xd1,0x67, +0xb1,0xc1,0x9e,0xe8,0x60,0x58,0x3f,0x0b,0x15,0x4a,0xc3,0xcd, +0x88,0x18,0xbc,0x24,0x2e,0x22,0x2d,0x82,0xad,0x69,0x37,0x5c, +0x17,0xef,0xe0,0x75,0x56,0x88,0x93,0xd2,0x59,0x6d,0xfb,0x04, +0x5b,0x46,0xb4,0x9d,0x4e,0x04,0xdb,0xdd,0xa2,0x2d,0x75,0x7c, +0x1b,0x07,0x7d,0xc9,0x60,0x6a,0xdf,0xd0,0x8b,0x21,0xf8,0xba, +0x6b,0x30,0xbf,0x6f,0x28,0x9f,0x11,0x8a,0x60,0x32,0x81,0xd1, +0x4c,0x55,0xb2,0x94,0x5e,0xfa,0x13,0x66,0xc3,0xf8,0xdd,0x38, +0x1e,0xaf,0x88,0x2b,0xae,0x02,0x80,0x89,0xa8,0x77,0x55,0xd0, +0x03,0x57,0xac,0xc4,0x4f,0x69,0xe8,0xb6,0x4b,0xe8,0x25,0x55, +0x25,0xa5,0xb5,0x39,0xf5,0xdc,0x37,0x8c,0xef,0xb2,0x9d,0x0b, +0x71,0xb4,0x66,0x85,0x1d,0x0f,0xe3,0x1f,0xdd,0x07,0x26,0xff, +0x03,0x77,0x8f,0xf1,0xc0,0xe9,0x1b,0xf0,0x4b,0x5c,0xaa,0x5e, +0x6e,0xcb,0x03,0x45,0x9c,0xe7,0xa0,0x5e,0x0a,0xeb,0xb8,0x16, +0x06,0x15,0x0e,0xe1,0x67,0xa1,0x7b,0x54,0xcd,0x0f,0x86,0x1d, +0x92,0x4f,0xd9,0xc9,0xc4,0x99,0x28,0xdc,0x60,0x1e,0x14,0x64, +0x5e,0x4f,0x52,0x4b,0x7b,0x48,0xa3,0xe1,0x73,0xa0,0x41,0x0d, +0x8d,0x89,0xc9,0xbe,0x92,0x1d,0x95,0x65,0x14,0xc7,0xef,0xd3, +0x30,0x5e,0xba,0x69,0x0f,0xb7,0x00,0x57,0x93,0xda,0x2b,0x35, +0x31,0x95,0x31,0x27,0x5a,0x79,0xa7,0x08,0xfb,0xc3,0xb6,0x87, +0x39,0x98,0x07,0xe3,0xdb,0x71,0x3c,0xa8,0x50,0x07,0xbe,0x8c, +0x8d,0xcc,0xbd,0x98,0x77,0x3e,0xcf,0xe8,0x12,0x1f,0xb1,0x62, +0xdf,0x6a,0xa7,0x9d,0xad,0xfe,0x7c,0x4a,0x49,0x7c,0x79,0x74, +0x05,0xf7,0x16,0x57,0x31,0x7b,0xc2,0x77,0x45,0xec,0x39,0x1a, +0x63,0xc0,0xf7,0x5c,0xee,0x8f,0xee,0x8b,0xe5,0x70,0x63,0x37, +0x0b,0x4a,0x81,0xa4,0xd5,0xb9,0xcb,0xa6,0xd1,0xba,0xb2,0x8a, +0x37,0x6d,0x34,0xae,0x36,0x2a,0xe1,0xe4,0x58,0x4e,0xec,0xc3, +0xa3,0xca,0xd5,0x60,0x8f,0x2e,0xea,0xb0,0x1b,0xb3,0x82,0x1f, +0xab,0x42,0x01,0xd3,0x10,0x9f,0x52,0xad,0xf6,0xa3,0x94,0xbd, +0x84,0xe3,0xd9,0x76,0xd8,0x4d,0x7a,0x74,0x3a,0xb7,0x55,0x6e, +0x6e,0x2a,0xe2,0x6d,0xbe,0x95,0xdf,0x30,0xe8,0xe7,0x86,0xf6, +0xe0,0x05,0x72,0xe3,0x46,0xed,0xa3,0xec,0x3b,0xd2,0xa2,0xef, +0x5d,0xd6,0x1b,0xb5,0x0d,0xa8,0x3e,0x5c,0x17,0xaa,0x49,0xd4, +0x05,0xe9,0x49,0x0b,0x28,0xe3,0xbc,0x9a,0x4a,0x54,0x86,0xb9, +0x11,0x31,0xe1,0xe7,0x0f,0x1f,0x51,0x3e,0x70,0x48,0xe1,0xf8, +0x03,0xd0,0xe8,0x40,0x0d,0x50,0xd1,0x47,0x15,0xb4,0x30,0x02, +0x6d,0x26,0x48,0x7d,0xe7,0x12,0x1c,0x3b,0xb7,0xc2,0x8a,0x07, +0xc5,0x77,0x8d,0xbf,0x44,0x3e,0xe7,0x22,0xf1,0x45,0x0f,0x03, +0xae,0x42,0x36,0x11,0x13,0x05,0x55,0x21,0x91,0x35,0xc4,0xf9, +0x04,0xf3,0x7f,0x81,0x7c,0x06,0x2f,0x8c,0xc1,0xfc,0xb7,0xd2, +0x4e,0x3e,0x2e,0x21,0x90,0x4f,0xe3,0x2c,0xba,0xbf,0x7c,0x3e, +0xe9,0x74,0xea,0xb1,0x6a,0xb2,0xac,0xaa,0xe6,0xe5,0xcd,0x46, +0x35,0x06,0x65,0x9c,0x29,0x56,0x12,0xdb,0xf0,0x4b,0x15,0x6a, +0x60,0xa3,0x8b,0xf6,0xac,0x46,0xf6,0xde,0x61,0xa1,0x1a,0x13, +0x52,0xab,0xd4,0x7e,0x67,0xf5,0x52,0x15,0x90,0xb0,0x1d,0x60, +0x4e,0x7a,0x76,0x75,0x6d,0xae,0x5a,0xd7,0x5c,0xc4,0x5b,0x3f, +0x37,0xba,0xa3,0x7f,0x8d,0x1b,0x32,0xc0,0x44,0x72,0xf3,0x9b, +0xda,0x67,0xd9,0xf7,0x29,0x01,0xf5,0xdf,0x66,0xbd,0x56,0x5b, +0x9b,0x7a,0x7a,0xcb,0x30,0x32,0x2f,0x69,0x4d,0xd6,0xb6,0x82, +0xe7,0xad,0xd7,0xae,0x55,0x3f,0xe4,0xaa,0x31,0xfc,0x7b,0x38, +0x0f,0x43,0x78,0xfe,0xb9,0xfe,0x2a,0x3c,0x8e,0x43,0x70,0x7c, +0x39,0xa6,0x9b,0x08,0x7b,0x59,0x67,0x3d,0x43,0xe3,0x8d,0x76, +0x9a,0x15,0xfa,0x75,0x26,0x2d,0x36,0x8e,0x7c,0x83,0x55,0xbb, +0xed,0x55,0xe7,0x0d,0x6e,0x8b,0x02,0x70,0xd4,0xfe,0x14,0x43, +0x1e,0x3e,0x4b,0x86,0x51,0x45,0xaf,0xea,0x9e,0xd8,0xff,0xea, +0x06,0xdc,0x5e,0x4e,0x7c,0x2f,0x1c,0x21,0x5e,0xfb,0x3d,0x0f, +0x78,0x1c,0xe4,0xc0,0x4f,0x6a,0x1a,0x39,0x5c,0xfb,0x85,0xc8, +0x80,0xe0,0x29,0xd6,0x32,0xd4,0x72,0xbf,0x4d,0xb8,0x54,0xec, +0x26,0xa6,0x3a,0xbe,0x26,0x91,0xc3,0x72,0xfc,0x44,0x7a,0x92, +0xfe,0x2b,0x35,0x1f,0xa9,0x69,0x64,0x2f,0x5b,0x12,0x5f,0x9c, +0x58,0x9c,0xc4,0x41,0x2a,0x84,0x13,0xd4,0x79,0x03,0x3a,0x1f, +0x67,0x23,0x4d,0xe6,0x52,0x7e,0x67,0x46,0xa6,0xa3,0xce,0x7b, +0x16,0x4e,0x28,0x81,0xc9,0x74,0x34,0xa1,0x36,0xb0,0x8d,0x06, +0x7f,0xf4,0xdb,0x27,0xcb,0x60,0x32,0x9e,0x65,0x2d,0xc3,0xfe, +0xa9,0x2c,0x53,0x1d,0x5d,0x1b,0x57,0xf3,0x4f,0x65,0x99,0x44, +0xa9,0xb2,0x4c,0x43,0x62,0xca,0x70,0x4b,0xca,0xdc,0xe8,0xdc, +0x98,0xdc,0xd8,0xc3,0xed,0x7c,0x40,0x84,0xff,0x61,0x7f,0xaa, +0x7d,0xc1,0x7f,0x76,0xce,0x00,0x6d,0xca,0xe1,0x02,0x88,0xa9, +0x60,0xb2,0x59,0xd4,0x32,0x13,0xb4,0x36,0x88,0x76,0x66,0x42, +0x22,0xf4,0xb3,0x62,0x99,0x38,0x91,0xe0,0x86,0x2e,0xac,0xeb, +0x81,0xcb,0x30,0x1d,0xdb,0x7b,0xa0,0x1d,0x16,0xa2,0x91,0x3a, +0x1b,0x67,0xa6,0xf0,0x94,0xa9,0x4a,0x4a,0xaa,0x54,0x03,0xbf, +0x2e,0xd8,0xc0,0x8a,0x59,0xc6,0x04,0xac,0xe6,0xa3,0x15,0x03, +0xb1,0xbf,0x12,0x70,0x99,0x4f,0x69,0x9e,0x22,0x7c,0x2b,0xcc, +0xfb,0xd8,0xa5,0x4d,0xaa,0x21,0x34,0xfc,0x8f,0xa4,0xa1,0x98, +0x28,0x83,0x89,0xc3,0x15,0x84,0xac,0xff,0xad,0x20,0x54,0x35, +0xdc,0x3f,0x53,0xea,0xd2,0x96,0xa0,0xa7,0xf0,0x4a,0x9a,0x54, +0xa0,0x17,0xdb,0xc2,0x96,0xc4,0x95,0x48,0x5d,0xda,0x84,0xbf, +0x21,0x87,0x60,0x01,0x8c,0x64,0x5e,0x46,0xbf,0x88,0xbb,0x97, +0x14,0x24,0xcd,0xd8,0xbb,0xa2,0x61,0x30,0x5a,0x1c,0xbd,0x62, +0xcc,0x3f,0x38,0xff,0x30,0xf2,0xfe,0x25,0x6e,0x36,0x46,0xc9, +0x21,0x6a,0x29,0xee,0x13,0xb7,0x76,0xf6,0xc3,0x26,0xb4,0xe8, +0x01,0x0b,0xd8,0xa6,0xd3,0x2d,0x6c,0xc5,0x43,0x2f,0xa1,0x40, +0x2a,0x9a,0x71,0x86,0xe0,0xe6,0x77,0xb0,0x99,0xe9,0x9a,0x49, +0xde,0x81,0xd6,0x4c,0x16,0x0f,0x99,0x13,0x1c,0x81,0x9b,0x61, +0x04,0x0b,0xa1,0x4a,0xa0,0x45,0xf7,0xb5,0xe8,0x55,0x3f,0x17, +0x16,0x12,0xf7,0xfd,0x6e,0x07,0x5d,0xe9,0x0d,0x0c,0xfb,0xb3, +0x63,0x06,0xe8,0xe8,0xa3,0x0e,0x7e,0x62,0x44,0x21,0xf2,0x22, +0x6b,0x7b,0xc0,0xee,0x90,0x7d,0xc4,0x15,0x43,0x9e,0x1a,0x65, +0x4c,0x45,0x1c,0x87,0x05,0xd3,0xd8,0xe1,0xe5,0xd9,0x1f,0x47, +0xb8,0x89,0x2d,0x8f,0x2f,0x4b,0x2c,0x4b,0x92,0x56,0xb2,0xc5, +0x11,0xad,0x42,0x9d,0x0a,0x83,0x66,0x7b,0x17,0xbe,0xd9,0xba, +0xc3,0xb9,0xc7,0x73,0x8b,0xdf,0xca,0x90,0xf9,0x87,0x12,0x8c, +0xa5,0x65,0x44,0xef,0xb2,0x5e,0x94,0x7d,0xe7,0xfc,0xda,0x1f, +0x46,0x84,0xc6,0xb7,0xf1,0x4b,0xe3,0x37,0xa4,0x68,0x65,0xdd, +0xaf,0xe9,0x6b,0x6f,0xbc,0xc5,0xd5,0x89,0xcd,0x46,0x82,0x37, +0x6b,0x2d,0x37,0xb0,0xdb,0xe1,0xce,0xc1,0x4c,0xf1,0x28,0x89, +0x0b,0x89,0xdb,0x1b,0xbf,0xd7,0xf2,0x98,0xd1,0x31,0xbd,0xe3, +0x1c,0x7c,0x0e,0xe1,0x70,0x02,0xc3,0xdf,0x18,0xce,0xc5,0x10, +0x3c,0x01,0x21,0x54,0xf3,0xe7,0x1c,0xc1,0xd1,0xc7,0xa6,0x9f, +0x8c,0xa2,0xfa,0xe8,0x13,0x0d,0x2e,0xc9,0x30,0x25,0x2b,0xc1, +0x3f,0xde,0x3f,0x2e,0xa0,0x21,0x8b,0x77,0xbf,0x6a,0x7f,0xcd, +0xb1,0x95,0xc3,0x50,0x70,0x22,0x14,0xcd,0xb6,0xc0,0x97,0x2c, +0x84,0xe1,0x97,0x04,0xbe,0xa4,0x11,0xd1,0x97,0x34,0x66,0x69, +0x15,0x66,0x11,0xdf,0x43,0xde,0x87,0xbc,0xc3,0x39,0x38,0xf4, +0xb1,0x60,0xb5,0xbe,0x01,0xea,0x4f,0x33,0xfa,0x80,0x57,0x58, +0xa9,0x04,0x98,0xd3,0xe1,0x68,0x19,0x5f,0x72,0xa5,0x24,0xa6, +0x84,0x82,0x4e,0xc1,0x3c,0x29,0x2f,0xfa,0x01,0x53,0x2f,0x59, +0x1e,0x55,0xa9,0xc2,0xd8,0x82,0xf8,0xc2,0x78,0xee,0x8d,0xe0, +0x40,0xd0,0x5a,0xb0,0x07,0x6b,0x56,0x9c,0x8b,0x8b,0xc9,0x7b, +0x78,0x3d,0x9d,0x15,0xbd,0x67,0x50,0xa2,0x03,0x57,0xc0,0x99, +0x85,0xdf,0xd0,0x99,0x80,0x33,0xe6,0xa0,0x33,0x65,0x3b,0x75, +0x04,0xc6,0xd2,0x30,0x6b,0x2c,0x0b,0xaf,0x61,0x2c,0xc1,0xb1, +0xb8,0x5e,0x9a,0x61,0x3c,0x84,0xed,0xa4,0x19,0x1b,0x9e,0xcb, +0x56,0x61,0x81,0x19,0x9c,0x61,0xad,0x76,0xce,0x32,0xc4,0x69, +0x26,0x99,0x26,0x3c,0x2c,0xe9,0x03,0xf6,0x7a,0xea,0x0f,0x14, +0x4a,0x52,0x3b,0x21,0x35,0x8a,0x49,0x5e,0xf6,0x7e,0x17,0xcc, +0xd6,0xcd,0x6c,0xe5,0x71,0x72,0xc7,0xb2,0x36,0xcb,0xeb,0x34, +0xa8,0x48,0x83,0x08,0x02,0x53,0xa9,0xd6,0x6d,0x1a,0x32,0x11, +0x37,0xc1,0x00,0x4e,0x15,0xd5,0x0d,0x05,0x75,0xa9,0x36,0xe7, +0x45,0x61,0x5d,0x17,0x8b,0xcb,0x84,0xf1,0x44,0xbc,0x0b,0x44, +0xb8,0xcb,0xa0,0xf6,0x18,0x1a,0x42,0xdf,0x05,0x25,0x56,0xf1, +0x2f,0x9d,0xc1,0x73,0x04,0x6f,0xdc,0xd3,0xdf,0x8c,0x1b,0xa5, +0x4d,0xb3,0x31,0x34,0xef,0xa1,0x23,0xdb,0x3b,0x78,0x11,0x7a, +0xf1,0xcc,0x00,0xdc,0x60,0xc4,0xaa,0x3d,0x64,0x00,0x36,0xee, +0x61,0x31,0xd4,0x94,0x6c,0xc1,0x0d,0x77,0x59,0xd8,0xa7,0x04, +0x1b,0xb7,0xe0,0x46,0x46,0x58,0xae,0x84,0xba,0x77,0x41,0x97, +0x11,0x7d,0x70,0x02,0xd1,0xc0,0x0d,0x0f,0x59,0x61,0x9a,0x06, +0xc1,0x8d,0x0f,0x61,0x23,0xd3,0xa3,0x41,0x1e,0x82,0xae,0x06, +0x2b,0xfe,0x20,0x3a,0xd3,0x50,0xb6,0xd2,0xb2,0x1f,0xde,0x0e, +0x2d,0xc7,0xb7,0xac,0xf0,0x0e,0xf6,0x11,0xb1,0xf2,0x86,0x50, +0xc9,0x88,0xd4,0x1b,0x11,0xa1,0x52,0x53,0xac,0x64,0x14,0x85, +0xea,0x41,0x43,0x12,0xda,0xe0,0xd5,0xe3,0x5f,0x69,0x14,0xc4, +0xe7,0x5a,0x65,0x99,0x24,0x99,0x73,0x82,0xa9,0x18,0x46,0xda, +0xc5,0x95,0x0f,0xe1,0x27,0x3a,0x88,0x93,0xd8,0xc2,0x9a,0xbc, +0xe6,0xf4,0x7a,0xc3,0x0c,0x3e,0xd0,0xd4,0x45,0xc7,0xc9,0x8c, +0x13,0x67,0x33,0x75,0x99,0x01,0x75,0xae,0xcd,0x5e,0xa5,0xca, +0xa6,0x3e,0x85,0x0e,0x79,0x36,0xe9,0xb6,0xca,0xc8,0xe2,0x6f, +0xf0,0x40,0x43,0x9c,0x29,0x17,0x46,0x30,0x46,0xdb,0x71,0xb4, +0x39,0x7a,0x18,0xa5,0x19,0xf1,0x70,0xf2,0xc6,0xbb,0x86,0x8a, +0xdf,0xb8,0xa8,0xe1,0xa5,0xfc,0x91,0x4c,0xa5,0x3a,0x7c,0x62, +0x09,0x5f,0xed,0x48,0xed,0xe0,0xd1,0x87,0xfa,0xa1,0x66,0x83, +0x9b,0xdc,0x7c,0x1a,0xfa,0x61,0xfc,0x2b,0x88,0x67,0xfa,0x16, +0x93,0x57,0x90,0xbf,0x98,0xc5,0x57,0x66,0x64,0x01,0xc6,0xff, +0xc2,0xc2,0x7d,0x25,0xc8,0x5f,0x40,0x21,0x5a,0x11,0xda,0x05, +0x27,0x72,0x24,0xfe,0xd8,0x99,0x43,0x11,0xc3,0x9d,0x68,0x54, +0xdf,0xb7,0x4f,0xff,0xff,0xda,0x87,0xe6,0xab,0x73,0x27,0x55, +0xbf,0xc1,0x2f,0x4b,0xab,0x14,0xe0,0x8c,0x70,0x9a,0xb8,0x68, +0xaf,0xa1,0x00,0x69,0x92,0x65,0xca,0xc3,0x27,0x2d,0x6f,0x07, +0x8a,0x1e,0xd3,0xb8,0xb1,0x68,0x2d,0x7c,0xbe,0x03,0x54,0x8c, +0xb2,0xa8,0xb1,0x4f,0xef,0x9a,0xd3,0x67,0x73,0x93,0xa3,0xe1, +0x84,0x37,0x81,0xcc,0x06,0x1a,0xee,0x82,0x48,0xd9,0xa9,0x03, +0xf2,0x0c,0x6e,0x09,0xc3,0x15,0x1b,0x70,0xaa,0x6a,0xad,0x6d, +0xef,0xef,0x39,0x30,0x2e,0x06,0x3e,0x55,0x16,0x96,0x51,0x76, +0xba,0x9d,0xe0,0x9b,0xfb,0xf0,0x86,0xc1,0x77,0xe8,0x40,0xce, +0x65,0x9f,0xa5,0xbf,0x1c,0xbc,0x59,0xcf,0x60,0xa9,0xa8,0x42, +0xea,0xa0,0xcb,0xba,0x0b,0x72,0xc4,0xb5,0x98,0xc3,0xc2,0xdf, +0xb0,0x97,0x20,0xc1,0x2e,0x20,0x54,0x15,0x0c,0x07,0xcf,0x13, +0x34,0x95,0xb2,0x51,0x47,0x4b,0x1b,0x33,0x39,0x98,0xed,0xc1, +0x55,0xd8,0x22,0xd4,0x41,0x0b,0x6e,0x18,0x00,0x53,0x66,0xc8, +0x02,0xcf,0x91,0x13,0x30,0xf5,0x8f,0xf6,0xd9,0x20,0x93,0x51, +0x71,0xa7,0xca,0xe1,0x0b,0x26,0x1c,0xbf,0x70,0xc2,0x59,0x4b, +0x91,0x94,0x5b,0xf0,0xb7,0xdf,0xe7,0xfc,0x79,0x71,0xb8,0x95, +0x6d,0x27,0x95,0x36,0x6a,0x58,0xda,0x7b,0xb8,0xa2,0xac,0x42, +0x13,0xe6,0x1f,0x95,0x06,0xec,0xb0,0x32,0x7c,0x4f,0x19,0xcf, +0x00,0x8c,0xa6,0x0a,0xb5,0x16,0x15,0x29,0x08,0xdd,0x81,0x11, +0x4c,0x9b,0x12,0x8c,0xd4,0xc4,0x91,0x0c,0xac,0x51,0xba,0x03, +0x0a,0x9a,0x2c,0x3e,0xb1,0x22,0x1b,0x70,0xc4,0x23,0x16,0x32, +0x36,0x10,0x1c,0xf9,0x88,0x02,0x20,0x3d,0x45,0x81,0x72,0x29, +0xa9,0x86,0xb9,0x37,0x69,0x14,0x26,0x59,0x74,0x0b,0x23,0xc5, +0xaf,0xa4,0x5a,0x75,0xfa,0xd4,0x5d,0x88,0x93,0xee,0x0b,0x93, +0x18,0x71,0x12,0x4e,0x22,0xc2,0xa4,0x75,0xe2,0x24,0x46,0xf1, +0x2f,0x7d,0x49,0x1e,0xff,0x07,0xb2,0x8d,0xf8,0x85,0xb4,0xf1, +0x34,0x06,0xcf,0xdd,0xb8,0x07,0x1b,0x85,0xbf,0xa0,0x11,0x8d, +0xbe,0x06,0x7f,0xe6,0x6f,0xe6,0x3e,0xe9,0x74,0x6b,0x70,0x69, +0x70,0x28,0x6e,0xe4,0xad,0x2b,0x8c,0x2b,0x8c,0x0b,0x38,0x41, +0x1f,0x8d,0x28,0x1d,0xfc,0x62,0x37,0x2b,0xae,0xc3,0x9d,0xc4, +0xbc,0x76,0x67,0xb3,0x4e,0x89,0x9b,0x25,0xdf,0xe7,0xdc,0x67, +0xdd,0x46,0xe9,0x5c,0xce,0x07,0x82,0x13,0x6e,0xc1,0x04,0xa6, +0x53,0x09,0x26,0x6a,0x49,0x0b,0x6e,0xb5,0x95,0x6e,0x81,0xb2, +0x16,0x2b,0x8e,0xb5,0x24,0x9b,0x70,0xc2,0x7d,0x16,0x7a,0x37, +0x11,0x9c,0x78,0x1f,0x26,0x4a,0xa7,0x28,0x6f,0x42,0x65,0x66, +0x68,0xbc,0xe8,0x48,0x6e,0x7f,0x68,0x03,0x95,0xfc,0x3f,0x8d, +0xd2,0x78,0x37,0x1c,0x6d,0x85,0x63,0xb7,0xab,0x73,0xf0,0x5a, +0x4e,0x25,0xd1,0xb7,0xe8,0x15,0x46,0x89,0xbd,0xe2,0x28,0x56, +0x38,0x23,0x49,0xa2,0xff,0x40,0xd0,0x67,0x44,0x7d,0x24,0x44, +0xd0,0x5f,0x27,0xea,0x53,0x75,0xcb,0x82,0x13,0xff,0x33,0x2b, +0x35,0xba,0x2f,0xaa,0xfb,0xdc,0x3d,0xe5,0x96,0xde,0xca,0xce, +0x92,0xeb,0x8e,0x34,0xfe,0x37,0xf6,0xb1,0xf6,0x72,0xe0,0x92, +0xff,0xcd,0x4a,0x4d,0xf2,0xc2,0xcf,0xe8,0xef,0x36,0xd5,0x3a, +0xdb,0x7b,0xef,0xcb,0x7f,0x48,0xfd,0xe1,0x9f,0xac,0xd4,0xef, +0x71,0x81,0x94,0x95,0x7a,0x73,0x90,0x42,0xbf,0x95,0x60,0x0c, +0x56,0xac,0x38,0x95,0xa2,0xd5,0x07,0xf8,0x6e,0x1a,0x3b,0x14, +0x7a,0x6c,0x38,0xc7,0x74,0xa1,0xaf,0x46,0xf3,0xc7,0x1c,0xd3, +0xb3,0x30,0x92,0x13,0x82,0xb0,0x93,0x7a,0x34,0xbc,0x88,0x2e, +0xac,0xf0,0x44,0x89,0xee,0x25,0xd3,0x3d,0xfc,0x14,0xd6,0x4a, +0xb8,0x35,0x9b,0xe2,0x96,0x10,0xa0,0x44,0xf7,0x56,0x48,0x08, +0xb6,0x0f,0x3b,0x48,0x13,0x96,0xbf,0x30,0x5a,0x89,0xb9,0xe6, +0x70,0x8a,0xb5,0xde,0xb5,0x44,0x86,0x63,0x8d,0x25,0xd5,0xe6, +0xfb,0xdf,0xdd,0x48,0x96,0x62,0xa1,0xd4,0x0e,0x09,0xc0,0x92, +0x96,0xff,0xbe,0x1b,0xa6,0xe9,0x48,0xfa,0x3d,0xa1,0x63,0x45, +0x9b,0x15,0x05,0xb0,0xc1,0xc7,0xc2,0x22,0x02,0x3b,0xf1,0x18, +0xdb,0x50,0x5e,0x5d,0x97,0x55,0xc3,0xd5,0xe2,0x43,0x36,0x3e, +0x35,0x2e,0x35,0x26,0x4d,0x3f,0x81,0xdf,0x8e,0xcc,0x82,0x85, +0xb8,0x6c,0x45,0xa1,0x29,0x5f,0x91,0x56,0x96,0x59,0x9c,0xc5, +0xb9,0x41,0x32,0x2a,0x8a,0xcb,0x0d,0x84,0xe5,0x38,0x01,0x5f, +0xc8,0xe0,0x05,0x6e,0x46,0x19,0x9b,0x20,0x93,0x5a,0x00,0xd5, +0x25,0x48,0x55,0x2b,0xd6,0xc1,0x05,0x9d,0xab,0x70,0x1a,0x46, +0x77,0xb3,0x78,0x1d,0x9a,0x88,0xa7,0x83,0x9d,0xa3,0xa5,0x0b, +0x87,0x55,0x4c,0x7d,0x69,0x45,0x45,0x49,0x25,0x47,0xbd,0xe3, +0x36,0x82,0x8a,0x78,0x01,0x14,0x59,0xec,0x1e,0x03,0x13,0xe0, +0x02,0x4e,0xa0,0x76,0xb0,0x7b,0xd0,0x82,0xb4,0xe1,0xdb,0x87, +0x3b,0x34,0xf0,0x0d,0xba,0xb1,0x3a,0x5f,0x19,0x9d,0x36,0x57, +0xb5,0x73,0x30,0x75,0x37,0xf2,0x4e,0xd5,0xe7,0x1b,0x73,0x2b, +0xf2,0x4a,0x4a,0x0f,0xe1,0x0c,0xcf,0x85,0x5b,0x67,0x37,0xd2, +0x38,0x8f,0x85,0x55,0xe9,0xb0,0x0b,0xaa,0x55,0x60,0x01,0xbb, +0x19,0x03,0x49,0xf0,0xed,0x80,0x01,0x9f,0x5e,0x4b,0x3f,0x3e, +0x57,0x2f,0x6b,0x57,0x8a,0x16,0x37,0xf8,0x5c,0x0c,0x21,0x73, +0x62,0x17,0x27,0xaf,0xcf,0x7c,0x59,0x71,0xab,0xb9,0xa6,0x97, +0xc6,0x5b,0xd1,0xf7,0x69,0x8c,0x33,0x80,0xa9,0xd7,0x0c,0x76, +0x61,0x1c,0x0e,0x40,0xdc,0x26,0x6c,0x35,0x17,0x0a,0x58,0x2b, +0x9b,0x1d,0x8e,0x2b,0x3c,0x36,0xe5,0x69,0x97,0x58,0x55,0xd8, +0xb8,0xf0,0x95,0xee,0x2d,0x9e,0x7d,0xbe,0x4b,0xfd,0xa6,0x07, +0xe3,0xd8,0x83,0xc9,0x66,0x3c,0x4c,0x4f,0x84,0x2f,0xb2,0xde, +0x97,0xfe,0xec,0x06,0x0a,0xbe,0x30,0x29,0x8c,0x13,0xc7,0x08, +0x7d,0x04,0x6d,0x1f,0x83,0x2d,0xd3,0xbd,0x8e,0x3c,0x06,0xe7, +0x75,0x2c,0xa6,0x5a,0x93,0x15,0x68,0xfb,0x1d,0x0b,0xf1,0x4a, +0xe0,0xbc,0x02,0x9d,0x87,0xd7,0x6d,0x49,0x3d,0xa8,0x95,0x40, +0xbd,0x0b,0xd5,0x3f,0x16,0x83,0xd8,0x68,0x08,0xcb,0x99,0x03, +0x52,0x17,0x93,0xa9,0xc8,0xa1,0x5a,0xb5,0x25,0xff,0x0a,0x98, +0x32,0x18,0x19,0xf5,0x07,0xb5,0xdd,0x72,0xa9,0x18,0x44,0xe4, +0x70,0x57,0xec,0x3f,0x71,0x69,0x65,0xd5,0x1c,0x50,0x8f,0x88, +0x3f,0x7a,0xfe,0x50,0xb8,0x32,0x6c,0x14,0xab,0xc9,0xc0,0x0d, +0xb8,0xbd,0x63,0x60,0xf0,0x3f,0xa2,0x31,0x33,0x80,0xa7,0xa4, +0x46,0x13,0xb7,0xa5,0x0e,0x9c,0xb7,0xff,0xd7,0x7e,0x34,0x0d, +0x89,0xe8,0xbe,0x95,0xf4,0x4c,0x7a,0x50,0x8f,0x1c,0x50,0x5f, +0xac,0x87,0x8b,0xdd,0x32,0x29,0x08,0x6f,0x29,0x87,0x11,0x2f, +0xe3,0x29,0xdb,0x02,0x6a,0xac,0x8c,0x45,0x46,0x48,0x9f,0x2a, +0xa8,0x33,0xb5,0xf1,0xc9,0x95,0x6a,0x1d,0xac,0x51,0x8c,0xc2, +0x46,0x9c,0xce,0x7a,0x1c,0x8f,0xca,0x55,0x83,0x51,0x10,0x8d, +0xe3,0x7a,0x60,0xb3,0xa8,0x2e,0x3d,0xcb,0xe0,0x71,0x73,0x0f, +0x8c,0x63,0x07,0x2f,0x8a,0x2b,0xc8,0xba,0x6f,0x16,0x5f,0x5f, +0xd2,0xe2,0xec,0xcc,0x97,0x07,0x95,0xfb,0x97,0xfb,0xe2,0x98, +0x23,0x38,0xf9,0x28,0x4e,0x3d,0xd9,0xd0,0xde,0xd8,0x5f,0x22, +0x65,0x7e,0x3b,0xed,0x36,0xd8,0xac,0xab,0xc3,0x7d,0x65,0x6d, +0xf5,0x95,0xf5,0x94,0x8b,0x06,0x10,0x72,0x1e,0x4e,0xc6,0x81, +0x5e,0xaa,0x72,0x41,0x40,0xae,0x7f,0x0e,0xe5,0x6c,0xa1,0x38, +0x86,0x18,0xd7,0x1b,0x55,0x1a,0x16,0xbb,0xd8,0xf1,0xed,0x6e, +0x3d,0xb6,0x4d,0x36,0x1c,0xea,0x2c,0x25,0xf6,0x11,0x97,0xca, +0xd4,0x60,0x87,0x2e,0xee,0x94,0xb8,0xc3,0xb7,0xaa,0x50,0xce, +0x34,0xc6,0xa7,0x54,0xa9,0xbd,0x64,0xf5,0x53,0x25,0xee,0xd0, +0x49,0xd1,0xb5,0x47,0xaf,0x7b,0x5b,0xf5,0x96,0xa6,0x52,0xde, +0xea,0xa1,0xec,0xba,0x5e,0x2f,0x37,0x64,0x42,0x61,0xf1,0xe6, +0x8d,0xba,0x07,0x39,0xb7,0x4d,0x33,0x79,0xff,0xdd,0x56,0x9b, +0xf7,0x50,0xee,0xf0,0x97,0xf1,0x47,0x3c,0x35,0xfe,0x07,0x4f, +0x77,0xcb,0x61,0xf7,0x1e,0x5c,0x49,0xf1,0xb4,0xe6,0xbf,0x78, +0xea,0x81,0x02,0x39,0xf1,0xfd,0xc7,0x3e,0x66,0xbf,0x1a,0xe1, +0xaf,0x94,0x55,0x0e,0x77,0xf8,0x1a,0x65,0x89,0x63,0xb6,0xcd, +0x2e,0x34,0xe1,0xfb,0x7f,0x2c,0x78,0x19,0xf9,0x8c,0xde,0x93, +0xc5,0x1d,0xc2,0x74,0x69,0xde,0xee,0xdc,0x09,0xd5,0x07,0xb8, +0xbb,0xac,0x5c,0x03,0x76,0x9d,0x88,0x3e,0x7a,0xee,0x50,0x84, +0x72,0x13,0xec,0x24,0x29,0x5f,0xa7,0x3d,0x8f,0xbd,0x67,0x91, +0xc8,0x47,0x6c,0x0e,0x59,0x17,0xb2,0x87,0x9b,0x7e,0x9e,0x1c, +0xba,0x1d,0xf2,0x6d,0xd8,0xd7,0xd6,0xc1,0x7c,0xe2,0xee,0x64, +0x8d,0x98,0x6d,0x9c,0x70,0xfa,0xd7,0xff,0x81,0xba,0xd3,0xee, +0x7c,0x90,0x00,0x75,0x84,0x26,0x8e,0x60,0x60,0xf5,0x3f,0x98, +0xfb,0x98,0x62,0xee,0x34,0x0a,0xb9,0x69,0x14,0x72,0x47,0x3c, +0xfa,0x88,0xca,0x1f,0x21,0xb7,0x69,0x18,0x72,0x27,0x0e,0x43, +0xee,0x49,0x09,0x72,0x75,0x24,0xa0,0x9a,0x78,0x5f,0x98,0xc8, +0x88,0xff,0x87,0xb2,0xf7,0x8e,0xab,0xe2,0xea,0xd6,0xc7,0xd5, +0xc8,0xcc,0x24,0xb1,0x25,0x71,0xeb,0xa0,0x09,0xd8,0x7b,0xef, +0x1d,0x15,0x0b,0x48,0x39,0x1c,0xe0,0xd0,0x7b,0x13,0xa4,0x08, +0x02,0x22,0x8a,0x0a,0x8a,0x1a,0x8d,0x85,0x22,0xbd,0xf7,0xde, +0x7b,0xef,0x4d,0x6c,0xd8,0x63,0x8f,0x26,0x26,0x9a,0x98,0x68, +0x62,0xb2,0xe6,0xb8,0x86,0xf7,0xfd,0xed,0xc1,0xe4,0xde,0xf7, +0xde,0xfb,0xfb,0xe7,0x1b,0x3f,0x9f,0x73,0x26,0xc3,0x99,0x73, +0xf6,0xec,0x59,0xe5,0x59,0x7b,0xaf,0xb5,0x9e,0xcf,0x25,0x93, +0xfb,0xf9,0x5a,0xf1,0x73,0x2a,0x68,0x28,0xed,0x92,0x05,0x86, +0xfd,0xdd,0x5a,0x6c,0x60,0xdf,0x4d,0xef,0x6e,0xa9,0x6b,0xbb, +0x57,0x8c,0x7b,0x8c,0x9b,0xf9,0x09,0x93,0x93,0x8a,0x53,0xfd, +0x8f,0xaf,0xfd,0xd3,0xcf,0xcc,0x4b,0xdf,0x75,0x97,0x8b,0x7e, +0x40,0x86,0x5f,0xa6,0x7f,0x7a,0xf9,0x3f,0xe5,0xb6,0xbe,0x3a, +0xee,0xbb,0xdc,0x8c,0x0f,0xc5,0x07,0xc5,0x07,0xc5,0xba,0x4a, +0xe5,0xb6,0xad,0x8a,0x06,0x43,0x1f,0x47,0x1f,0xe7,0x7d,0xee, +0xee,0x67,0xdc,0x4f,0xbb,0x4b,0xe5,0xb6,0x1d,0xe7,0x3a,0x2f, +0x74,0x4a,0xe5,0xb6,0x5d,0xc2,0x0a,0xb6,0xf8,0x42,0xd1,0x85, +0xc2,0x30,0x0e,0x7c,0x05,0x77,0x62,0xb7,0x5e,0xae,0xb9,0x41, +0xa7,0xc8,0x92,0x7f,0x72,0xed,0xf2,0x0f,0xd5,0x0f,0x39,0x78, +0x88,0x72,0xa2,0xd3,0xa3,0xfd,0xd0,0xea,0xa6,0x95,0x37,0xdf, +0xb8,0xf1,0xe6,0x8a,0x6b,0xda,0x9c,0xe8,0x8f,0x8e,0xe4,0xa7, +0x30,0xd8,0x91,0x00,0x9f,0x24,0x16,0xe8,0xf1,0x0d,0xf9,0x4e, +0xb7,0x4d,0x5e,0xda,0xf6,0xa9,0xda,0x7a,0xa5,0xed,0xc9,0xb2, +0xcd,0xb2,0x51,0xdd,0x79,0x6c,0xed,0xf1,0x8d,0x27,0xca,0xae, +0x97,0xbf,0xc8,0x7b,0x60,0x92,0xca,0xef,0xd3,0x34,0xc3,0x4f, +0xec,0x36,0x6b,0x7c,0xcd,0xc3,0x96,0xe9,0xa4,0x6e,0x4f,0x8f, +0x69,0x89,0x53,0x49,0x0d,0xef,0x52,0xa6,0xdf,0x68,0x5d,0xc0, +0xe1,0x4f,0xf3,0x49,0x92,0x7e,0xcc,0x8e,0x8b,0x3b,0x9b,0x93, +0xf9,0xe3,0xfd,0x07,0x6f,0x1e,0xec,0xe2,0x7e,0xc2,0x6a,0x52, +0xf0,0x6d,0x0e,0x30,0xd1,0x8f,0x4d,0xe3,0xf9,0xa3,0x5b,0x7c, +0xf0,0x23,0xf7,0x2d,0x9c,0xb0,0x93,0x62,0xb4,0xfc,0xed,0x85, +0x38,0x3c,0x65,0x45,0x6b,0x26,0x7f,0xe0,0x9e,0x23,0x8c,0xf3, +0xee,0x93,0x72,0xd6,0xb2,0x88,0x47,0xa8,0xd4,0xbb,0xf0,0xb0, +0x01,0x1e,0x67,0x75,0x72,0xfc,0x7b,0xd5,0x80,0x48,0xd4,0xcb, +0x35,0xea,0xd4,0xae,0x9a,0x25,0x4b,0xc4,0x02,0x83,0x7a,0x07, +0x48,0xd9,0x93,0xd4,0xd7,0x31,0x52,0x15,0x70,0xf0,0xb2,0x80, +0x15,0xce,0x6b,0x39,0x89,0xd5,0x1b,0x48,0x18,0x9d,0xef,0x0b, +0x81,0x8d,0x49,0xfc,0xc1,0x1b,0x52,0xb6,0xa4,0x95,0x54,0xde, +0x1c,0xed,0x1e,0xb5,0xc7,0xf6,0x84,0xd5,0x49,0xab,0xaf,0xa5, +0xf9,0x1e,0xd9,0x0d,0xac,0x79,0x2e,0xef,0xf9,0xf7,0x7c,0xfb, +0x67,0xfa,0xfd,0xaf,0xf9,0x1e,0x2a,0x6f,0x0e,0x8a,0x1b,0x9a, +0xef,0xb6,0x0f,0xf3,0xed,0x42,0xe7,0xfb,0xf4,0x9e,0xbf,0xe7, +0xfb,0x7c,0xd7,0xf9,0xce,0x70,0x4e,0x5c,0xd2,0x2d,0xac,0x62, +0x73,0xce,0x67,0x5f,0xc8,0xbe,0xc0,0x09,0xa5,0x30,0x95,0x14, +0x77,0x83,0x29,0x9e,0x82,0xe1,0x32,0x1a,0xb9,0x1e,0x40,0xd3, +0x2e,0x57,0x56,0x58,0xda,0x4e,0xc4,0x25,0xf0,0xa9,0xb0,0x84, +0xb9,0x85,0x55,0x44,0x4c,0x32,0x84,0xdd,0xf8,0x2d,0x4e,0x60, +0xa4,0x7a,0xf1,0xe1,0x52,0x7f,0xc5,0x3a,0x75,0xb8,0x0e,0xe7, +0xd9,0x41,0xb5,0x1d,0x24,0x4e,0x11,0xa5,0x17,0x2e,0x6b,0x4e, +0xe2,0x43,0x3b,0x8f,0x5c,0x39,0xd2,0xc4,0x09,0xda,0xfb,0x48, +0xf5,0x96,0xb2,0x45,0xf9,0x2b,0xda,0x32,0x78,0xcf,0x1f,0x1c, +0xbe,0xb7,0xbd,0xc3,0x0d,0x9e,0xc5,0x5a,0x52,0xfe,0x24,0xf5, +0xd7,0x98,0x5f,0xcc,0xa4,0x1b,0xdf,0x2f,0xdd,0xb8,0xe0,0x0a, +0x17,0x89,0xc7,0x32,0x87,0x35,0xf2,0x9d,0x75,0x8e,0x7c,0xef, +0x9d,0xba,0xd7,0x79,0xcf,0x29,0x06,0x5e,0x2c,0x74,0x92,0x67, +0xd7,0xae,0xff,0x50,0xf3,0xc8,0x3a,0x8b,0xb7,0x5e,0x27,0xd3, +0x5c,0xab,0xc3,0x09,0x77,0xce,0x11,0xed,0x9e,0xed,0x0f,0x2d, +0x6e,0x59,0xee,0xe5,0x9b,0x37,0xde,0x5d,0x7e,0x93,0x4a,0x40, +0x1a,0x1c,0x23,0xf8,0xbb,0x49,0xfb,0x20,0xc7,0x68,0x07,0xc5, +0xcb,0x9f,0xa4,0x3c,0xc9,0xb8,0x97,0xad,0x8a,0x26,0x9d,0xca, +0xcb,0x35,0x2c,0x86,0xe0,0x2a,0x02,0xab,0xe0,0x4b,0x5c,0xc5, +0xc2,0x68,0x0c,0x20,0xaf,0xc3,0x40,0x3f,0x1e,0xc6,0x26,0xc6, +0xec,0x8f,0xde,0x1f,0x1d,0xd0,0x50,0xc0,0x3b,0xde,0x36,0xfe, +0xc9,0xba,0xcf,0xd6,0x8b,0x4f,0xa7,0xf2,0x92,0x6d,0xbd,0xed, +0xf8,0x8a,0xe3,0xeb,0x4e,0x96,0x5f,0xaf,0x78,0x51,0x70,0x9f, +0x8a,0x8b,0xcf,0x36,0x05,0x7e,0x62,0xb3,0x79,0xc3,0xd7,0x3c, +0x72,0x30,0x8a,0xe0,0x2a,0xfc,0x12,0x56,0xb1,0x02,0x62,0x0f, +0x71,0x2e,0xd3,0x6b,0xb2,0x2a,0x74,0x73,0xe4,0xeb,0xdd,0x7a, +0x4d,0x4b,0x1d,0x39,0xf1,0x2e,0xa8,0x51,0xd4,0x8e,0x33,0x19, +0x9b,0x20,0x9b,0xc3,0xd6,0x34,0x52,0x8c,0xc1,0xa5,0x54,0x72, +0xf2,0x80,0x8d,0x7e,0x6c,0x12,0xcf,0x07,0x6f,0xf1,0xc6,0x91, +0x7b,0xa8,0xe4,0x98,0x53,0xc9,0x29,0xdc,0x5e,0x84,0xc3,0xd2, +0x96,0xb7,0x66,0xf1,0x01,0xf7,0x1c,0x60,0x9c,0x27,0x95,0x9c, +0x93,0x54,0x72,0xf6,0x9c,0x08,0x2b,0x52,0x87,0x20,0x03,0x0c, +0x61,0xb5,0x73,0xfc,0x2f,0xa9,0x81,0x3a,0x53,0x37,0x44,0xda, +0xfd,0x31,0x6b,0x9a,0xf4,0x81,0x92,0xe2,0x4f,0xa5,0x0a,0xb9, +0x05,0x79,0x5b,0x7b,0x6f,0x41,0x74,0x27,0x46,0xdf,0xd7,0xdf, +0x80,0x79,0xd2,0xcb,0x09,0x43,0x38,0xb1,0x95,0x85,0x20,0x0a, +0xb1,0x7f,0x81,0x9b,0x00,0x83,0x5b,0xa9,0xfe,0x76,0xcc,0x13, +0x97,0x1b,0x0a,0xcb,0x71,0x49,0x3f,0x2c,0x11,0x34,0x3b,0x59, +0xd4,0x84,0x4e,0x22,0x76,0xfe,0x24,0x74,0x32,0x38,0x6b,0xe4, +0x1c,0xb1,0xf3,0x57,0x76,0x8c,0x52,0x0a,0xbd,0xf5,0xe6,0x60, +0xca,0xaf,0xf4,0xe5,0xb4,0x1c,0x4e,0xcf,0xef,0xfb,0x19,0x52, +0xa4,0x97,0xf8,0x2e,0x8c,0x97,0xba,0x9c,0x9f,0x26,0x5a,0xd6, +0xcb,0xcc,0x57,0xba,0xe4,0xc8,0xf9,0x5b,0x25,0xf7,0x6b,0xfa, +0xaa,0x39,0x0c,0xbd,0xa4,0xe4,0x74,0x59,0x80,0x09,0x68,0x8f, +0xa1,0x72,0x08,0xc5,0x5c,0x0c,0x90,0x0b,0xc9,0x5d,0x18,0x04, +0xb9,0x70,0xbe,0x0b,0xcf,0x83,0x3d,0x3b,0x48,0x56,0x93,0x72, +0x9b,0xa6,0xad,0x99,0x56,0x4d,0x05,0xfc,0xbe,0x46,0x8b,0x9b, +0x4e,0x35,0x9c,0xb4,0x47,0x3d,0x86,0xdc,0x86,0x94,0x2d,0xbd, +0xb7,0x21,0xa1,0x1d,0x13,0x6e,0xe8,0x6f,0xc3,0x14,0xe9,0x45, +0xda,0xa3,0xde,0xc2,0xc2,0x0c,0x34,0x20,0xbe,0xce,0xce,0x4e, +0xbb,0xdc,0xbc,0xb3,0x3d,0xb2,0x3c,0x32,0x1c,0xdc,0xf9,0xec, +0xfd,0xd9,0xfe,0x59,0x3e,0x26,0xfe,0x3b,0x03,0x56,0x1c,0x4c, +0xa2,0xf8,0xa3,0xb8,0x1d,0x86,0xfd,0x5e,0xfd,0x33,0x57,0x81, +0xf6,0x6c,0x5a,0x4a,0x72,0x7a,0x42,0x06,0x27,0xdc,0x6f,0xf9, +0x17,0x63,0x0a,0x47,0x18,0x73,0x7d,0x4d,0x5b,0xfc,0xdc,0x39, +0xcd,0x92,0xbf,0x96,0xd6,0x99,0x59,0x97,0xcb,0xc1,0x0d,0x54, +0x21,0x06,0x79,0xfb,0x3b,0xd4,0x20,0x58,0x9a,0xcb,0x72,0xf5, +0xfb,0x52,0xc2,0xd0,0x5c,0xdc,0xcf,0xba,0x87,0x44,0x16,0xa9, +0x97,0xb2,0x30,0x36,0xe9,0xaf,0xdc,0xa7,0x65,0x9e,0x35,0xfc, +0x2a,0x97,0x59,0x3e,0x73,0x0e,0x73,0xbf,0xc9,0x58,0x50,0x15, +0xc7,0x90,0x01,0x83,0xed,0x78,0x66,0x40,0xae,0xc3,0x9e,0xc0, +0x52,0x05,0x64,0xb3,0x3e,0x5a,0x9b,0x1c,0x70,0x56,0x80,0x44, +0xb7,0xa1,0x9b,0xf1,0xec,0x66,0xfa,0x73,0x0e,0xc2,0x50,0xb7, +0x1b,0x74,0x21,0xad,0x8d,0x9a,0xcb,0x37,0x4a,0x96,0x7c,0x0b, +0x95,0x1b,0xbb,0xbf,0x85,0xa8,0x36,0x8c,0xba,0x63,0xb0,0x19, +0x2b,0xef,0xc8,0x36,0x63,0xa8,0x02,0x42,0x37,0xb2,0xb0,0xb5, +0x9d,0xc8,0xb6,0x21,0x6b,0x82,0x17,0xec,0xa5,0x6f,0x18,0x9d, +0xfe,0x32,0x7d,0x20,0x8f,0x73,0x80,0x5b,0x65,0xec,0xad,0xbd, +0xaf,0xfc,0x61,0x8c,0x5f,0x42,0x3b,0x8f,0xe1,0xd5,0x48,0xda, +0xf4,0x07,0xa4,0x46,0x37,0xea,0xe4,0x72,0x5e,0x75,0x71,0x66, +0x1d,0x17,0xc1,0x64,0x59,0xd7,0xee,0xbe,0xee,0xc5,0xc1,0xae, +0x79,0x64,0x90,0xc3,0x4f,0x18,0x54,0x0d,0x58,0x3c,0x0d,0x3f, +0x52,0xab,0xb2,0x7c,0xf8,0xb4,0xe4,0x51,0xfc,0x0b,0x69,0xeb, +0x41,0x0e,0x33,0x89,0x78,0xb1,0x55,0xb8,0xc8,0x88,0x31,0xb8, +0x80,0x9c,0x6f,0x57,0x11,0x2e,0x1a,0x4b,0xc8,0xf3,0x31,0x8d, +0xd7,0xdc,0x2c,0x7b,0xa8,0x64,0x3c,0xc5,0x20,0x56,0xc8,0x04, +0x5d,0xb2,0x42,0x74,0x7b,0x36,0x94,0x2e,0x30,0x83,0xf4,0x42, +0xaa,0x54,0xa1,0x9b,0xd8,0x8a,0x89,0xfd,0x06,0x3a,0x98,0xda, +0x2f,0xd3,0xc1,0xb3,0x26,0x70,0x56,0x9f,0xdd,0x47,0x31,0xab, +0x53,0xe9,0xc6,0x76,0xf3,0xdc,0xdd,0x36,0x7c,0xbb,0xfb,0x65, +0xab,0x7a,0x7b,0x4e,0xf8,0xf6,0x30,0x01,0x0a,0x63,0x71,0x2d, +0x2b,0xd0,0xc0,0x97,0xec,0xc0,0x07,0xd7,0x59,0xd4,0xc5,0x0b, +0xc4,0xb6,0x62,0x7b,0xbd,0x79,0x9e,0x33,0xfd,0xa4,0xdb,0x25, +0xfb,0x46,0x07,0x4e,0xe9,0x43,0xc1,0x68,0x33,0x3e,0xba,0x0a, +0xb5,0xa0,0x81,0xb5,0xb8,0xce,0x10,0xd6,0x51,0x21,0xd1,0x80, +0x1c,0x2d,0x6c,0x37,0x83,0x24,0xd6,0xc4,0x70,0x8a,0x19,0x12, +0x9b,0x34,0x73,0x1e,0x16,0xb4,0x01,0xd7,0x9e,0xfb,0x03,0x0d, +0xe5,0xdc,0xbb,0xc1,0x3d,0x9c,0xc9,0x5b,0x0a,0xa3,0x8c,0x61, +0xb5,0x22,0xad,0x99,0x47,0xb5,0x3a,0x1c,0xd9,0x68,0xdc,0xc9, +0xe1,0x00,0xac,0x25,0xf7,0x40,0x63,0x13,0x0b,0x6f,0xee,0x51, +0x68,0x2e,0xbb,0xc7,0x8a,0x8e,0xb8,0x84,0xd8,0xad,0xd4,0x9e, +0x29,0xd7,0x6e,0x76,0xe1,0x7b,0x6e,0xf4,0xc3,0x88,0xca,0x47, +0x54,0xc2,0x8a,0x85,0x59,0xa4,0x57,0xd8,0xa4,0x8f,0x87,0x18, +0x2d,0xab,0xa5,0x96,0xab,0x3d,0x53,0x8d,0xf9,0x5b,0xb9,0x8f, +0x2b,0xfa,0x6b,0x38,0x98,0x7e,0x98,0x28,0x84,0xc3,0x6d,0xe8, +0x0d,0xd3,0x21,0xa2,0x1d,0x23,0x80,0xd1,0x43,0x06,0x8f,0x1a, +0xc3,0x51,0x9c,0xce,0x8a,0xea,0xd4,0x0c,0x3a,0x35,0x5b,0x36, +0xdb,0x96,0xdb,0xec,0xe6,0x6b,0x1d,0x9a,0x4d,0xca,0x2c,0x39, +0x21,0x41,0x4c,0x26,0xd7,0x0a,0x7a,0x4b,0x3b,0xeb,0xed,0xcb, +0x79,0x23,0x2b,0x5d,0xe7,0xed,0xee,0x76,0x15,0x7b,0xea,0xbc, +0xdb,0x38,0x61,0x5c,0xbb,0xb8,0xf4,0xb9,0xce,0x72,0x71,0x85, +0x14,0x9b,0xae,0xdc,0x81,0xe3,0x0c,0x71,0xad,0x63,0xba,0x82, +0x7f,0x98,0x72,0x2b,0xeb,0x72,0x1e,0x87,0x13,0x59,0x87,0x13, +0x76,0x27,0x6d,0x4f,0x46,0xcb,0x79,0xd8,0x96,0x0a,0x73,0xb2, +0x60,0x5c,0x7e,0x68,0x2b,0xbf,0x3e,0x70,0xc5,0xa1,0xf9,0x41, +0x1c,0x2c,0x62,0x7b,0x0a,0x9b,0xca,0x2a,0xab,0xb8,0x48,0xe6, +0x3a,0x2e,0x85,0x89,0x14,0x37,0xec,0xdf,0x9a,0xdd,0xc2,0xcf, +0x2a,0xdc,0x50,0xa6,0x5b,0x4f,0x41,0x87,0xb6,0x70,0x80,0x88, +0x1b,0x61,0x99,0xc0,0x74,0x8a,0x0c,0x4c,0xd6,0xc6,0xc9,0xf8, +0xce,0x10,0xde,0xe1,0x32,0x71,0x81,0x5c,0x58,0x20,0xce,0x65, +0x90,0xcf,0xd2,0x7f,0x02,0x0b,0x27,0xb5,0xee,0x32,0x65,0x71, +0xb1,0x83,0x29,0x72,0xcb,0xd5,0x4a,0x8c,0xff,0x7a,0x58,0xd4, +0x7d,0xf1,0x4f,0x29,0x41,0x71,0x5b,0x32,0xb0,0x26,0xe0,0x30, +0x19,0x06,0x99,0xa8,0x1e,0x15,0x71,0x02,0x73,0xe4,0xe8,0x37, +0x67,0x8f,0xaa,0x83,0xd1,0x87,0x6f,0x5c,0x2b,0x6c,0x94,0xc4, +0xe0,0x11,0x81,0x4d,0x3f,0x7d,0xf7,0x26,0xea,0x2d,0x0d,0x57, +0x63,0xa6,0xc2,0x08,0x64,0x40,0x73,0x4d,0x4e,0x37,0x8f,0x4b, +0x6f,0x2e,0x7b,0xe8,0xfe,0x9a,0x93,0x5a,0x50,0x55,0xc2,0x72, +0x48,0xed,0x42,0x0d,0x26,0xbf,0xbc,0xa8,0x3d,0xb7,0x4f,0x3f, +0x8d,0xf7,0x35,0x70,0xdc,0xe1,0x60,0xce,0xe1,0xf7,0x72,0x38, +0x83,0xcb,0x31,0x53,0x0e,0x91,0x8c,0xd7,0xa2,0x35,0x9b,0x71, +0xc6,0x26,0x0e,0x0e,0x50,0xeb,0xbd,0xaf,0x7e,0x77,0xab,0x67, +0x99,0xdc,0x87,0xcf,0x77,0x2a,0x36,0xcd,0xb0,0xe2,0xd0,0x58, +0x8f,0x18,0xdf,0xd7,0xbe,0x6b,0xd8,0x66,0xe5,0xcc,0x77,0x29, +0x2e,0x6d,0x6a,0xdf,0xc8,0x81,0xb3,0xd8,0x4b,0x70,0xc2,0x52, +0xea,0xd4,0xa4,0x6d,0x7b,0x23,0x19,0x7c,0x81,0xbe,0xec,0x02, +0x57,0xc5,0x2c,0x89,0xf7,0xeb,0x45,0x65,0x43,0xd7,0xf9,0x0f, +0xdb,0xf6,0x8f,0xb6,0xc2,0xf2,0xc9,0x42,0x08,0x13,0x75,0x49, +0x65,0x0c,0xdc,0x56,0x2e,0x22,0x98,0x24,0xfc,0x0c,0x49,0xa8, +0xd7,0x07,0x5e,0x2d,0xe8,0xd5,0x61,0x62,0x84,0x5f,0x74,0x28, +0x8c,0xd0,0xc3,0x14,0x3c,0x28,0x66,0x0d,0x96,0x11,0xfb,0xbb, +0x46,0x0f,0xcd,0xba,0xcc,0xdc,0xf8,0x56,0x83,0xd6,0x75,0x55, +0xd4,0xee,0xba,0xfd,0x44,0xf0,0x8b,0x3e,0x1a,0xe3,0xa2,0x16, +0x4a,0x41,0x5d,0x0f,0x0d,0xea,0x5a,0x27,0xc0,0x17,0x32,0xfc, +0x82,0x01,0xad,0x09,0x3d,0x30,0x41,0xc6,0xe2,0xbf,0xad,0x89, +0x2e,0x7e,0x7e,0x89,0x85,0x6e,0x5d,0xfa,0xe9,0x4b,0xf4,0xd3, +0xf4,0x23,0x13,0x74,0xa9,0xd3,0xc3,0x12,0x51,0x97,0x0c,0x11, +0x8e,0x0d,0x0d,0x55,0xdf,0x00,0xc6,0x4a,0x43,0x75,0x37,0x99, +0x23,0x0d,0xf5,0xfb,0xaa,0xda,0x8e,0xbf,0x29,0xca,0x1e,0x69, +0xc2,0x8a,0xc9,0xc2,0x29,0x26,0xaa,0x4f,0x65,0x3d,0xfc,0x48, +0xc4,0x74,0xcc,0x12,0xd2,0x19,0x43,0xf0,0x25,0xfa,0xe2,0x92, +0x5e,0x56,0x58,0x82,0xc3,0x89,0x8e,0xb8,0xa4,0x9f,0x9a,0x5e, +0xa2,0xbc,0x4f,0xdc,0x74,0x37,0xec,0xc2,0x51,0x46,0xd9,0x34, +0x22,0x18,0xd9,0xf1,0xf3,0xd5,0xdc,0xfb,0xf4,0x29,0xe4,0x6f, +0x80,0x91,0xdb,0xe0,0x33,0x83,0x6c,0xaa,0x01,0x13,0xba,0x17, +0xf5,0x3b,0x5c,0xe3,0x44,0x57,0x3b,0x12,0xb3,0xb2,0x49,0xeb, +0xf9,0xc6,0x02,0x2a,0x41,0x03,0x96,0x37,0xf6,0xdf,0x90,0xaa, +0x00,0x37,0xd9,0x6e,0x9c,0x27,0x55,0x01,0xfe,0x7c,0xb3,0xfd, +0x3b,0xa9,0x01,0xfc,0x00,0x0d,0x83,0x20,0xa2,0x01,0xe9,0xc3, +0xdf,0x2a,0x3e,0x24,0xbb,0x43,0x9c,0x42,0x1c,0x8e,0x73,0xd0, +0x02,0xaa,0xed,0xa8,0x0a,0x9f,0xfc,0xd4,0x8e,0xc1,0xc6,0xcf, +0xf0,0x13,0x9c,0x6b,0x0c,0x73,0xb1,0x9f,0x35,0x09,0x51,0x1c, +0x33,0x19,0x2a,0x08,0x1c,0x99,0x08,0xe3,0x73,0x1e,0x67,0x71, +0xc2,0x05,0xa1,0x90,0x88,0x5b,0x71,0x2a,0x83,0x6b,0x0e,0xe3, +0x9a,0x9d,0xc8,0xab,0xd5,0xda,0xb5,0xfe,0x96,0x01,0xa3,0xa3, +0xa4,0x25,0x89,0x71,0xf4,0x46,0xb6,0x13,0x1c,0xb8,0x27,0x65, +0x92,0xdc,0x1a,0x5a,0x92,0xf8,0x66,0x68,0x49,0x62,0x60,0x1d, +0x23,0x1e,0x45,0x5d,0x92,0xd0,0x1e,0xd3,0x73,0xb1,0xdd,0x2a, +0x86,0x3f,0xa6,0x1f,0x62,0x74,0xc8,0x4c,0x5a,0xad,0x9b,0x4d, +0x32,0x8d,0xd2,0xd7,0xc7,0xc8,0xa4,0x6a,0xc2,0x1e,0x9f,0xa7, +0x7e,0xed,0x9c,0x60,0x27,0x4e,0x24,0x75,0x90,0x6b,0xdd,0x01, +0x39,0x34,0x16,0xc8,0x61,0xe1,0xe9,0x87,0xc5,0x8b,0x5c,0x69, +0xf1,0x42,0x48,0x51,0x9e,0x21,0xc2,0xa7,0xcd,0x83,0x25,0x66, +0x80,0xfa,0xa2,0x2a,0xba,0xf7,0xc0,0x3a,0x78,0x84,0x1e,0xbd, +0xe0,0x01,0xbf,0xe0,0xba,0x1e,0x70,0x17,0xe7,0x30,0xf8,0x78, +0x2e,0xb1,0x02,0xa7,0x7a,0x16,0x76,0x4d,0xb0,0x82,0x7d,0xf5, +0xac,0x38,0x07,0xa7,0x93,0x7a,0x74,0xb2,0x62,0x05,0x61,0x42, +0x3d,0xee,0xb3,0x62,0x31,0x13,0x2f,0x92,0x13,0x57,0x60,0x71, +0x0b,0x2e,0xfe,0x49,0xbe,0x08,0xb5,0x4d,0x61,0x35,0x73,0x60, +0x93,0xd9,0x66,0x64,0xe6,0x95,0xd9,0xf2,0x6f,0x5e,0xd4,0x5e, +0x8b,0xfe,0x96,0x9a,0x9d,0xf2,0x2e,0x38,0xcb,0x84,0x5d,0x38, +0x27,0x65,0x14,0x8e,0xc2,0x8f,0x2b,0xca,0xa8,0xb3,0x1f,0x19, +0x1c,0x1d,0x7c,0x21,0x38,0x44,0x15,0x82,0xb0,0x92,0xd4,0x42, +0x95,0x4d,0xb7,0xb0,0x5b,0x9c,0x2f,0xee,0xa6,0xf6,0x47,0x58, +0x4d,0xb6,0x60,0xd5,0x6d,0x16,0xaa,0x70,0x34,0xd9,0x88,0x55, +0xdf,0x4a,0x47,0x9f,0x91,0xf5,0x58,0xf5,0x80,0xaa,0x53,0x81, +0xe0,0x4a,0x4d,0x63,0x03,0x7e,0xfc,0x72,0xe8,0xf5,0x15,0x8c, +0x6f,0xc2,0x1f,0xc4,0x43,0x52,0x82,0xc1,0x98,0xd3,0x6b,0x42, +0x8d,0xd4,0x0c,0x43,0x8f,0x1c,0x35,0x9f,0xac,0xc7,0xc4,0x99, +0xa9,0x74,0x31,0xb7,0xd2,0xb3,0xef,0x47,0xab,0x5f,0xbc,0x75, +0xfe,0x0d,0xcc,0x9f,0x84,0x3c,0x03,0x8b,0xff,0x20,0x6f,0x92, +0x9f,0x67,0xdd,0x2e,0xbf,0xe3,0xfc,0xc8,0xfb,0xc7,0x80,0xc4, +0x56,0x7e,0x43,0xc2,0x8e,0x34,0xfd,0xec,0x2b,0x35,0xad,0x1d, +0x95,0x37,0xb8,0x5a,0xd1,0xcb,0x58,0x98,0xc5,0x3a,0x2b,0x2c, +0xec,0x0c,0x5c,0x65,0x85,0xa6,0x15,0x16,0x4d,0xf6,0x6e,0x7c, +0xad,0x55,0x83,0x73,0xcb,0x1e,0x1d,0xaf,0xcd,0xfb,0x57,0x05, +0x71,0x58,0x03,0x5f,0x92,0x57,0xef,0x16,0xb0,0xd3,0x70,0x1a, +0x79,0xf9,0x6e,0x21,0xab,0xf4,0x13,0xdb,0x88,0xc7,0x65,0xd7, +0xab,0xae,0x6d,0x96,0x7e,0x7c,0x6c,0x40,0xac,0x7f,0xac,0xaf, +0x63,0xa8,0x55,0xa8,0xf9,0x49,0x8e,0xc6,0xc9,0x66,0x70,0x02, +0xcd,0x7e,0x33,0x9a,0x8d,0xc6,0x78,0x02,0x8c,0x91,0x67,0xd7, +0x1d,0x5f,0x71,0x62,0xcd,0xd0,0x0a,0xec,0x8e,0x68,0xd8,0x9c, +0x0c,0x2a,0x99,0xb1,0xfb,0x62,0x7d,0x62,0xf6,0x71,0x83,0x25, +0xc2,0x76,0xf2,0xf6,0xdd,0x4c,0x56,0xd8,0x7e,0x98,0xa0,0x1a, +0xaa,0x81,0x1a,0x0b,0x26,0x48,0x51,0x8f,0x1a,0x4c,0x45,0x35, +0x56,0x0c,0xdb,0x49,0x42,0x6b,0x0f,0x37,0x1f,0xae,0x72,0x0d, +0xe6,0xe3,0x6c,0x62,0xac,0x22,0x2d,0xb8,0x59,0xa0,0x4a,0x62, +0xe4,0x31,0x5a,0xe1,0x9b,0x2b,0xa2,0xf8,0x13,0x57,0x0e,0xdf, +0x3f,0xdc,0xc6,0xe1,0x66,0x6c,0x27,0x69,0x0f,0x12,0xde,0x85, +0xc1,0x70,0xdb,0x08,0xfe,0xc4,0xcc,0x43,0xd3,0xf7,0x53,0x9b, +0xf1,0x11,0x64,0x90,0xc8,0xad,0x17,0x16,0x9c,0x5d,0x5d,0x7d, +0x91,0x3f,0x73,0x3f,0xf4,0xd7,0x63,0x37,0xa8,0x35,0x3f,0xaa, +0x7c,0x41,0xec,0xd1,0x64,0x17,0xce,0x98,0x8d,0x5c,0xa9,0x09, +0x9f,0x9b,0x9f,0x5b,0x96,0x53,0xc7,0x89,0x85,0x3d,0xca,0xa9, +0x6c,0xe1,0x9d,0x9c,0x67,0xc9,0x3f,0x73,0xc2,0x49,0x71,0x90, +0x5c,0xab,0xba,0xd6,0x51,0xdd,0xe8,0x58,0xc5,0x3b,0x58,0xec, +0x52,0x18,0xba,0xee,0x6f,0x39,0xdc,0x75,0xfc,0x1a,0x07,0x06, +0xe0,0x8c,0xee,0x4c,0x4e,0x66,0x6e,0x51,0x7a,0x21,0x57,0x8e, +0xb9,0x6c,0x64,0x6c,0x44,0x6c,0x44,0x9c,0x22,0x91,0x77,0xde, +0xae,0xb9,0x63,0x96,0x4e,0x91,0x03,0x7f,0x31,0xfc,0x62,0x58, +0x64,0x38,0x87,0x9b,0xe0,0x08,0xbb,0xc3,0x72,0xa6,0x23,0x8e, +0xf6,0x49,0x31,0xe3,0x7f,0x4c,0x7f,0x9a,0x7b,0xb5,0x2c,0x2e, +0x30,0x2e,0x20,0xc6,0x7f,0xbd,0x29,0x8e,0xb2,0x9b,0xe5,0x9f, +0x62,0xca,0xff,0x99,0x05,0x63,0x1a,0xee,0xb4,0x44,0xf9,0x47, +0xfa,0x47,0xf8,0x2d,0xd3,0x42,0x6a,0x3d,0x26,0x79,0xa6,0x48, +0x8d,0x1c,0x8a,0x81,0xbf,0x74,0xaf,0x8f,0x0b,0xf3,0x3b,0xe7, +0xb7,0x7f,0x92,0xc6,0xde,0x60,0x6b,0xb5,0x85,0x4c,0x82,0xb1, +0xca,0x03,0xe6,0xbb,0xca,0x42,0x18,0xf9,0x4e,0x01,0x9f,0xe9, +0x3c,0x54,0x4f,0x8b,0x4f,0x4e,0x48,0x48,0xe4,0x6a,0x98,0x0c, +0x74,0x7b,0x8a,0x53,0x60,0x29,0xf2,0xc5,0xcd,0xfc,0xda,0x6b, +0xf2,0x7e,0xa7,0x5b,0xdc,0x2a,0x21,0x91,0x04,0x78,0x7b,0x78, +0x78,0xf9,0x72,0x18,0xc6,0x14,0x65,0xe5,0x65,0x67,0x52,0x00, +0x33,0x0a,0x27,0x10,0x54,0x41,0x47,0x50,0x61,0x21,0x91,0x82, +0x19,0x50,0x81,0x3d,0xa8,0x42,0x8d,0xc7,0x45,0xa5,0x35,0xc9, +0x28,0xc8,0xac,0x4e,0x2c,0x92,0x67,0xf0,0x81,0x76,0xde,0x56, +0x5e,0x76,0x1c,0xfe,0x88,0x0f,0x84,0x5e,0xa9,0x7a,0xe5,0x4d, +0x3e,0x39,0x98,0xef,0x59,0xed,0x9f,0x65,0x26,0x65,0xeb,0xe4, +0x4b,0xd9,0x3a,0xd8,0x8a,0x9e,0xe4,0x4d,0xd7,0x2c,0xc8,0xd1, +0xc3,0x1c,0xfc,0x58,0x0e,0x1f,0x23,0x32,0xf6,0x41,0xb6,0x14, +0xac,0x26,0x19,0xf0,0xf0,0x71,0xe9,0xeb,0x92,0x9f,0x6a,0x83, +0xbb,0x78,0xa7,0x40,0xc7,0x40,0xfb,0x43,0x9c,0x40,0x84,0x25, +0x04,0x8d,0x9f,0x81,0xf1,0x87,0x8a,0x16,0x8b,0x15,0x2c,0x46, +0x4a,0xd9,0x3d,0xc6,0x3f,0xb2,0x70,0x6e,0x02,0x58,0x2c,0x46, +0x0b,0x06,0xf7,0x89,0x31,0xa4,0x47,0x50,0x1f,0xaa,0x68,0x89, +0x96,0x2a,0x5a,0x2c,0xa5,0xec,0x1e,0xf5,0xe7,0x82,0x3a,0x23, +0xaa,0x4b,0xd9,0x3d,0xea,0x0b,0x45,0x75,0xe6,0xff,0x8c,0x76, +0xef,0xd0,0x68,0x5f,0xfc,0x33,0xda,0xb7,0xf9,0xe4,0xd0,0xff, +0x1e,0x6d,0xfd,0x60,0x21,0x79,0x3f,0x45,0x5f,0xa2,0x03,0xd3, +0x55,0xaa,0xff,0xaf,0x91,0x88,0x78,0x99,0x24,0x1a,0x27,0x6c, +0x8e,0xd4,0x6a,0xa5,0x81,0xf2,0x95,0xc0,0xbb,0x81,0x54,0xae, +0x5c,0xb0,0x8f,0x64,0x7e,0x60,0x0a,0x0b,0xe3,0x4f,0xcd,0x08, +0x5e,0xe0,0xb3,0x9a,0x13,0x6e,0xc3,0xca,0xff,0x3d,0x66,0xdf, +0xa1,0x31,0x4f,0xf9,0x5f,0x63,0x9e,0xf2,0x5c,0x98,0xc2,0x88, +0x53,0xa4,0x31,0x4f,0x59,0x28,0x4e,0x61,0xc6,0x08,0x9d,0xca, +0x8f,0xc9,0x23,0xd8,0x6c,0xdc,0xd5,0x0e,0x6b,0x5b,0x70,0xad, +0x44,0xdd,0xb4,0x59,0xa2,0x16,0x59,0x6c,0x0a,0x8b,0xd7,0xb2, +0xe2,0xca,0xd9,0x04,0x2f,0x1d,0xc6,0xd9,0xf6,0x12,0x51,0x98, +0x63,0xc1,0x0f,0x09,0x2f,0xc3,0x61,0xb1,0x2a,0xa8,0x60,0xc2, +0x52,0x89,0x99,0xe5,0x32,0x53,0x9b,0x9c,0xda,0xa0,0xae,0x2c, +0x45,0x2f,0x16,0x56,0x4b,0x95,0x5a,0xc3,0xa8,0x34,0x0e,0x63, +0x94,0x9b,0x69,0xcc,0xee,0x9f,0xec,0x94,0xee,0x15,0xe3,0xe1, +0xcc,0xe7,0x1f,0x2e,0xf1,0x4f,0x3f,0xc0,0x9d,0x13,0x5f,0x13, +0xbf,0xfc,0x03,0x75,0x87,0xba,0x9a,0x5e,0x15,0x80,0x4a,0x22, +0x10,0xf3,0x78,0xfe,0xc8,0x34,0xff,0xa5,0xee,0x1b,0x0f,0xfe, +0x14,0x02,0x2a,0x67,0xa4,0xf4,0xb8,0x25,0x4d,0xb8,0xa4,0x4d, +0xa1,0x10,0x3f,0xc5,0x8d,0x0c,0xba,0x87,0xe0,0x44,0xd3,0xe9, +0x6a,0xf5,0x6e,0x52,0x6f,0xa8,0x58,0x98,0x09,0xbe,0x93,0xe0, +0x53,0xb8,0xcd,0x9e,0xc3,0x55,0x09,0x38,0x25,0x7b,0x6a,0x80, +0x9b,0x9f,0x87,0x8f,0x17,0x57,0xb1,0xe6,0xd9,0x00,0x6c,0xdf, +0xf6,0xf8,0x71,0x1d,0x9e,0x17,0x4f,0x37,0xf5,0x82,0x09,0x7b, +0x20,0x60,0xff,0x01,0xbf,0x83,0x05,0xb6,0x7c,0x63,0x59,0x55, +0x6d,0x71,0x6b,0xbc,0x4d,0xd2,0xee,0x64,0x9f,0x3c,0xc7,0x96, +0xd8,0xf0,0xfa,0x54,0x58,0xc9,0x5b,0xa5,0xaa,0x0c,0x66,0xd3, +0x49,0x3b,0xd7,0x3e,0x44,0xa2,0x37,0x0c,0x0d,0x19,0x78,0xf9, +0x96,0xac,0xd9,0xf1,0x98,0x05,0x75,0xfc,0x82,0x2c,0x43,0xf5, +0xef,0xd9,0x01,0x54,0x25,0x2b,0xb6,0x53,0x14,0xa9,0xd4,0x50, +0x9e,0x26,0xf7,0xf4,0x36,0x61,0x82,0xf4,0x22,0x55,0x27,0x6e, +0xec,0xfb,0x16,0x12,0x76,0x96,0xc8,0xc5,0x0a,0xf4,0x60,0x71, +0xc5,0x7e,0xfc,0x44,0x4e,0x27,0xa8,0xc9,0x5a,0xe5,0x2a,0x8c, +0xcf,0xa0,0xe3,0xdc,0x3a,0x09,0xe6,0x08,0xfe,0xec,0x59,0x5c, +0x95,0x88,0x13,0x8a,0xe7,0x7a,0xda,0xb9,0x3a,0xd8,0x39,0x72, +0xd5,0x38,0xfe,0x05,0x8c,0x84,0x9d,0x38,0xf2,0x11,0x7c,0xd6, +0x84,0xef,0xc5,0xf0,0xce,0x4e,0x68,0x64,0xa5,0x45,0xf9,0xc3, +0xc1,0x15,0x0e,0x7c,0x47,0x6d,0x7d,0x63,0x79,0x4b,0xa6,0x45, +0x81,0x53,0xb9,0x57,0x8d,0x4b,0x5d,0x52,0x44,0x67,0x0a,0x1d, +0xab,0x69,0xe6,0x7e,0xd4,0xb3,0x2b,0xda,0x53,0xbd,0xaf,0x53, +0xb5,0xef,0x75,0xd9,0x5f,0x69,0x7f,0x99,0x26,0xf1,0x07,0x16, +0x7b,0x2d,0xb7,0x5e,0xeb,0xf7,0x38,0xf8,0xcf,0x33,0xf0,0x15, +0x07,0xbe,0xed,0xe8,0xdb,0xbf,0xa7,0x0f,0x32,0xda,0x19,0x34, +0x9a,0x47,0x0a,0xfc,0x73,0x7c,0xb3,0xbd,0xaa,0xf2,0xf8,0xbd, +0xf9,0xee,0x39,0x9e,0xc9,0x9c,0xf8,0x85,0xf8,0x31,0xc1,0xd1, +0x8f,0x60,0x34,0x83,0xa3,0xd1,0x8d,0x3c,0x86,0x43,0x6b,0x58, +0x1c,0x61,0x49,0x96,0xe0,0xe8,0x17,0xf4,0xfe,0xf2,0xa9,0xe0, +0xa6,0xfd,0x53,0x24,0x16,0x68,0xbf,0xcf,0xd2,0x9b,0x0a,0x6e, +0x03,0x15,0xdc,0x63,0x92,0xe0,0xf6,0xe5,0x51,0xc1,0xf5,0xa8, +0xd9,0x9f,0x65,0xf1,0xdf,0x45,0x62,0xde,0x4f,0xa5,0x86,0x25, +0xd9,0x02,0xb2,0x86,0x52,0xc3,0x92,0xe5,0x30,0x11,0x96,0x33, +0xf0,0xa3,0xd4,0x9d,0x78,0xc5,0x33,0x58,0xc1,0x74,0x48,0x32, +0xbc,0x96,0xca,0x70,0x27,0x35,0xd0,0xff,0xf5,0x67,0x17,0xb2, +0x10,0x57,0xbc,0x64,0xc1,0x63,0x02,0xac,0x5d,0x88,0x6b,0x19, +0xb1,0xd9,0x84,0xc0,0x72,0x9c,0x8e,0xf4,0x8f,0xff,0xc2,0x1b, +0xa4,0x07,0x9e,0xc9,0xba,0xa8,0xc0,0x9a,0x48,0x02,0xfb,0xa5, +0x54,0x36,0xf6,0xec,0x7b,0x78,0xc6,0x50,0x54,0x3f,0x99,0x14, +0x99,0x14,0x69,0x65,0xc8,0x9a,0x8b,0x79,0xbf,0x4e,0xa7,0x81, +0x3d,0x8d,0x1c,0xee,0xc3,0x40,0x52,0xd7,0x5a,0xfb,0x28,0xe3, +0xb2,0x69,0x0e,0x1f,0x68,0x6c,0xb1,0xd2,0xce,0x96,0x13,0xf6, +0x4a,0xcc,0x14,0xcf,0xe6,0xe1,0x33,0xaa,0x8e,0x0b,0x84,0x08, +0xc9,0x6c,0x47,0x77,0x60,0x34,0x4c,0xd4,0xc5,0x89,0x34,0xb6, +0x8c,0x2f,0x8a,0x2d,0xbe,0x58,0x68,0x94,0xc8,0xfb,0xad,0xb2, +0x5e,0x61,0x69,0xd0,0xe4,0xca,0xa7,0x64,0xa6,0x16,0x24,0x15, +0x71,0xb0,0x81,0x1a,0xfb,0x62,0x23,0x25,0xd7,0xc1,0x0c,0x4e, +0x7d,0x43,0x4c,0xee,0xef,0xba,0x67,0xd4,0x66,0xe9,0xc2,0x77, +0x19,0xf7,0x6d,0x6c,0xa5,0x86,0xdb,0x45,0xec,0xfb,0x0f,0x0c, +0x27,0x97,0xc1,0x67,0x52,0xea,0xa5,0x9b,0x82,0x02,0xa3,0x74, +0xd9,0x0f,0x55,0xf5,0xff,0x13,0x18,0x85,0x4a,0xc0,0x48,0x4b, +0x18,0x46,0xc4,0x24,0x4c,0x17,0x92,0x18,0x3d,0xd8,0x43,0x28, +0xa2,0x9d,0x0a,0xcb,0xa8,0xf3,0x3c,0xa7,0xfc,0x8e,0x58,0x0f, +0xe5,0x29,0x4e,0x19,0x4a,0x53,0x2c,0x28,0x28,0xa8,0xcc,0x6f, +0xa0,0xd6,0x5e,0x4a,0x53,0x2c,0xba,0x95,0xf7,0x34,0xe5,0x25, +0x07,0x28,0xde,0x23,0x90,0xd4,0x8e,0x49,0xa0,0x0d,0xfe,0x70, +0x4d,0xcc,0xc7,0x6b,0x70,0x56,0xb4,0x65,0xe6,0x65,0x2a,0x5e, +0xc3,0xb0,0x49,0x30,0x42,0x5f,0x62,0xaf,0x66,0x5d,0x57,0x23, +0xb3,0x5d,0x2d,0xdf,0xf8,0x6d,0x6f,0xe5,0xc3,0xf3,0x2f,0xe8, +0x08,0x66,0x87,0xdd,0x9b,0x01,0x73,0x26,0x43,0x25,0x73,0xb1, +0x43,0x05,0xab,0x18,0x58,0xad,0xa4,0x3f,0x6d,0x2f,0x2e,0xa2, +0xc1,0xea,0x18,0xf0,0xa2,0x3f,0xed,0x82,0xc6,0x32,0x9c,0xb9, +0x88,0x3a,0x1a,0x33,0x3e,0x3b,0x3f,0xb7,0x2a,0xbb,0x89,0x13, +0x8b,0xbb,0x94,0xf3,0xd9,0x9c,0x1b,0x19,0x0f,0x13,0x9e,0x73, +0xc2,0x8b,0xc1,0x1b,0x04,0x67,0x30,0x89,0x72,0x89,0xf9,0xa3, +0x2e,0x21,0xb1,0x4e,0x5d,0x79,0xc3,0x80,0x15,0x5b,0x3d,0x88, +0xf8,0x6f,0xe8,0x16,0xfe,0xcd,0x3e,0x3d,0x4a,0x06,0x17,0x74, +0x2b,0x17,0xb0,0x68,0x25,0x3d,0x6f,0x05,0xf0,0xa0,0x60,0xf0, +0xfa,0xc8,0x7f,0x8e,0x14,0x52,0xb3,0x1a,0x05,0xce,0x44,0x05, +0x03,0x9f,0xe3,0x47,0xa4,0xd4,0xbc,0x76,0x53,0x8e,0x61,0x7d, +0x09,0xef,0xd3,0x66,0x71,0xdf,0xa5,0x81,0xc3,0xb3,0x78,0x84, +0xb4,0xb7,0xb4,0x3c,0xca,0xbb,0x61,0x9e,0xc3,0xef,0xd3,0x51, +0xac,0x33,0xb7,0xe1,0xc6,0x28,0x1f,0x84,0x13,0xd4,0x1d,0xca, +0x77,0x5c,0xce,0x34,0xa7,0x0e,0xe5,0x3b,0xea,0xb0,0x83,0xfb, +0xfc,0xa9,0xa0,0x09,0xa3,0xa9,0xa0,0x81,0xaa,0x27,0x19,0x1c, +0x7f,0x49,0x39,0x9e,0xc5,0x68,0x1a,0x78,0x61,0x98,0x54,0x2a, +0xcb,0xe0,0xe5,0x91,0xff,0x1c,0x85,0xa1,0x0e,0x7d,0xc7,0x29, +0xd4,0xb1,0xac,0xc7,0x5e,0xd2,0xdf,0x7c,0xe9,0x61,0x71,0x9f, +0xa2,0x98,0xf7,0x31,0xdf,0xb1,0xda,0xc0,0x96,0x83,0x56,0x50, +0x27,0xf5,0x66,0x4d,0x3b,0x8a,0x8c,0x5a,0xaa,0x78,0xf7,0x36, +0xa3,0x5b,0xb6,0x75,0xd4,0xf9,0xf6,0x43,0x3a,0x49,0x73,0x4c, +0xb7,0x48,0x31,0xd3,0xd9,0xbb,0xd5,0x47,0xd3,0x9f,0x83,0x6a, +0x28,0x17,0x8c,0xf0,0xcd,0xe0,0x29,0x76,0x5b,0x60,0x82,0x2e, +0xb0,0xf9,0x30,0xbe,0xfa,0x8f,0x46,0xd5,0x04,0xfb,0x78,0xbb, +0x18,0xa7,0x8e,0x0c,0xde,0x0d,0x86,0x9b,0xc3,0x18,0xcb,0xef, +0x38,0x90,0x89,0x2a,0xe4,0xb2,0xb2,0x1e,0x0e,0x8a,0xfd,0xb8, +0x88,0x49,0xd0,0x53,0x81,0xc9,0x4c,0x63,0x72,0x22,0x35,0x88, +0x1f,0xa1,0xc8,0xe2,0x72,0x63,0x82,0xea,0xe8,0x0f,0xea,0x2c, +0xf8,0x23,0x3d,0x9e,0x45,0x8f,0x67,0xb1,0x12,0x93,0xef,0x31, +0x12,0x9f,0x19,0x9f,0x1b,0x9d,0xb9,0x2b,0x96,0x0f,0xf6,0x3a, +0xb4,0xe7,0x00,0x75,0x05,0x99,0xa2,0xaf,0x72,0x97,0xe0,0xcb, +0xe8,0x52,0x85,0x11,0x2f,0xff,0x20,0x5c,0x66,0xf0,0xd0,0x48, +0xf1,0xf2,0x0b,0x7a,0x20,0x5e,0x96,0xca,0xca,0x2e,0x2f,0x14, +0x2f,0x33,0xc2,0x32,0x34,0x22,0x8a,0x06,0xe3,0x8a,0xbf,0xd7, +0x81,0xbb,0xed,0xa4,0x75,0x60,0x9d,0x05,0xc4,0xfe,0xa8,0xb4, +0x0e,0xbc,0x45,0x0f,0x35,0xd9,0x8d,0x59,0x01,0x8f,0xfe,0x6b, +0x1d,0xf8,0xfb,0xa1,0x1c,0x92,0x8f,0xd9,0x4e,0xd8,0x42,0x7a, +0x64,0x3d,0xdb,0xaa,0xb7,0x36,0x96,0xf0,0x56,0xdf,0xca,0xaf, +0xca,0x7a,0xa4,0x75,0xe0,0xd3,0x64,0xe0,0x6a,0xdd,0xbd,0x9c, +0x01,0xb3,0x2c,0xde,0x7b,0x97,0xd5,0x16,0x1d,0xb9,0xb4,0x7c, +0x21,0x2c,0x26,0xce,0x07,0x9d,0x0e,0x39,0x48,0x7b,0xea,0xf0, +0x59,0x27,0x7e,0xf6,0x1f,0x94,0x38,0xe7,0x3f,0x50,0xe2,0x04, +0x7f,0x48,0x5c,0x88,0xad,0x1d,0x62,0x13,0x1a,0xa2,0xc4,0xf9, +0x85,0x69,0x4a,0x4c,0xa9,0x97,0x68,0x62,0xaa,0x13,0xaa,0x93, +0xaa,0x92,0x25,0xa0,0x3e,0x82,0xc0,0xa9,0x36,0x3c,0x05,0xbb, +0xc0,0x91,0x0a,0xf1,0x49,0x2a,0xc4,0x07,0x45,0x1b,0x66,0x59, +0x8e,0xd5,0xab,0x3f,0xa8,0x0c,0xcb,0x24,0x19,0x56,0x71,0x5f, +0x83,0xc3,0xb7,0xab,0xe5,0x19,0xbf,0xee,0x2b,0xfd,0xf6,0xc2, +0x0b,0xd5,0x70,0x66,0x4e,0xf8,0xc0,0x4c,0x98,0x3a,0x19,0x12, +0x87,0x64,0x38,0x85,0x81,0x59,0x4a,0x77,0x82,0x8e,0xe2,0x28, +0x70,0x94,0xfa,0xea,0x43,0x2a,0x81,0x6a,0x7c,0x0b,0x23,0x04, +0x8d,0x4e,0x51,0x03,0x46,0xe8,0xe1,0x88,0x0f,0x59,0x69,0x23, +0xf0,0x31,0x56,0x43,0x3d,0x2b,0x9b,0x87,0x93,0xb7,0xa0,0x62, +0x43,0xbe,0x21,0x0f,0x41,0xaf,0xe1,0xf3,0xbb,0x39,0xf0,0x29, +0x45,0xc0,0x8f,0xfa,0xe0,0x51,0x04,0x93,0x8f,0x9f,0xc2,0x0c, +0x0d,0x08,0x9a,0x93,0xdb,0xc5,0xa3,0xd5,0x03,0x9c,0x7e,0x4b, +0xf7,0x17,0x6e,0x8e,0x94,0xbf,0xa1,0x8d,0x29,0xa0,0x2d,0xad, +0x7b,0x69,0x13,0x2c,0xa7,0x6a,0x57,0x4e,0x4d,0x88,0x70,0x86, +0xe0,0xec,0x21,0x55,0xf8,0xe2,0x3f,0x54,0xe1,0x39,0x8e,0x27, +0x56,0xb5,0x86,0x75,0x46,0x25,0x6e,0x36,0x7c,0xb7,0x53,0xa3, +0x43,0xb3,0x15,0xd7,0x09,0xd3,0x24,0xfd,0xb8,0x4c,0xf5,0xe3, +0x7b,0x49,0x3f,0xba,0x24,0xfd,0xb0,0x93,0xf4,0xc3,0x82,0x6a, +0x05,0x75,0xc8,0x97,0xb1,0x9a,0xd8,0xd6,0xea,0xb6,0xc8,0xcb, +0x5d,0x6d,0xf8,0x0e,0xa7,0x2e,0x8b,0x06,0x4b,0x0e,0x7e,0x4f, +0xfe,0xaf,0xbf,0x5b,0x48,0x5a,0x63,0x81,0x33,0x24,0xe7,0xbd, +0xa9,0x9f,0x78,0xe2,0x48,0x07,0xfc,0x44,0x77,0x76,0xa3,0x33, +0x7f,0x15,0x86,0xd7,0xc3,0x97,0x99,0x7f,0x70,0x65,0xf8,0x9e, +0x74,0xb4,0xb4,0x3e,0xca,0xbf,0x61,0x9e,0xcb,0xfb,0xec,0x32, +0x5e,0x6f,0x66,0xc3,0xc1,0x79,0x58,0x4a,0xca,0xcd,0xeb,0x36, +0xe5,0xc8,0x1b,0x4a,0x79,0xef,0x36,0xf3,0xfb,0x4e,0x52,0xd7, +0xd3,0x5a,0x08,0x21,0xf0,0xaa,0x13,0x5f,0x81,0x16,0x74,0xc0, +0xa3,0x41,0x39,0x3e,0x82,0x27,0xa2,0x39,0x83,0x93,0x12,0x37, +0x3f,0x85,0xcf,0x27,0xc1,0x57,0x3a,0x52,0x0f,0x8f,0x4f,0x9c, +0xf5,0xf0,0xf3,0x95,0x6a,0xa5,0x86,0x30,0xf2,0x41,0x61,0x4b, +0xd4,0x6f,0x52,0x40,0x3d,0x27,0x8e,0x46,0x65,0x52,0x87,0x1d, +0xb5,0xa1,0x80,0x7a,0x3a,0x03,0x21,0x12,0x53,0xa9,0xbb,0x78, +0x05,0xdc,0xa9,0x0d,0x79,0xf9,0x84,0xc0,0xb4,0x27,0x4f,0x1f, +0xa6,0x3c,0xa6,0x73,0x5a,0xdc,0x07,0xc5,0x11,0x4c,0xda,0xea, +0x57,0x6b,0x60,0xee,0xaa,0xfc,0x16,0x1e,0xa7,0xdc,0x5f,0xd9, +0x67,0x7f,0x87,0x03,0x4f,0xf8,0x1a,0xc3,0x9e,0x42,0x7d,0x07, +0xd6,0xff,0xae,0x3b,0x03,0x8b,0x8c,0xa0,0x68,0x15,0x86,0xe0, +0xd7,0x60,0xc5,0x38,0x6e,0xdd,0xa8,0x87,0xfc,0x46,0xee,0x84, +0xe0,0x43,0x0c,0x1f,0x68,0xdd,0x35,0x6c,0xa5,0xb1,0x72,0xb7, +0xa2,0x7f,0x53,0x27,0x8d,0x95,0x5f,0xee,0x96,0xd2,0x1e,0x34, +0xe1,0x2b,0x56,0xd8,0x2c,0x15,0x1b,0x1b,0xc2,0x57,0x60,0xc8, +0x88,0x5f,0x89,0x59,0xff,0xaf,0xe6,0x77,0x0c,0x9c,0xa5,0xd6, +0xce,0x66,0xc8,0xd0,0x4e,0x1d,0x32,0xb4,0xd9,0xd9,0x39,0x45, +0x59,0x15,0x9c,0x18,0xdb,0xab,0xfc,0x88,0x2d,0x7f,0x50,0xf4, +0x53,0xfa,0x3b,0x2e,0x14,0xab,0xc8,0x5f,0xb7,0x5e,0xbc,0x6d, +0x7c,0x66,0x9e,0xc7,0x2b,0x96,0xaf,0x59,0xba,0x40,0x8f,0x53, +0x1a,0x1c,0x25,0x3b,0xef,0xe3,0x47,0x30,0x7c,0x7d,0xbf,0xbd, +0x13,0x7f,0x7f,0xe7,0xbb,0xa9,0xb7,0xd6,0x70,0xf8,0x33,0x8c, +0x23,0xd6,0x53,0xa7,0x4d,0xc1,0x0d,0x0b,0x0b,0x8c,0x79,0xd8, +0xfc,0x3b,0xa8,0xfc,0x5c,0x40,0x21,0x4b,0x38,0x53,0x80,0x9f, +0xbd,0x59,0x01,0x86,0xc8,0xe6,0xb7,0xf1,0xb8,0xe1,0x57,0x1c, +0xf6,0x87,0xe5,0x9f,0x1c,0x7a,0x0f,0xfa,0x90,0x76,0xe1,0x0b, +0xe3,0x3e,0x61,0x81,0x78,0x41,0x5c,0xc0,0x0a,0x72,0xa9,0x6f, +0xe0,0x51,0xf1,0x0b,0x38,0x4a,0xa7,0x91,0x28,0x9b,0x08,0x9a, +0xb3,0xf8,0xa7,0x3f,0x2e,0xdf,0x8e,0x9f,0x4a,0x2c,0xac,0x0f, +0x61,0x56,0x2a,0x68,0x48,0xb9,0x7b,0xae,0x60,0xce,0x0c,0xba, +0xd2,0x50,0xef,0x7b,0xe5,0xbc,0x65,0x14,0x91,0x8a,0x5f,0x11, +0xc8,0x85,0x2d,0x98,0xdb,0xc3,0xfc,0x15,0xf6,0x3a,0xe2,0x45, +0xb4,0x5f,0x23,0xfd,0xa1,0xfd,0xe8,0x7a,0x1c,0xc3,0x4f,0x47, +0x5b,0xf0,0x7f,0x9e,0xfd,0xe5,0xdc,0x0f,0xe7,0x39,0x39,0x26, +0xe0,0x16,0x48,0x90,0x63,0x37,0xd6,0x76,0xc1,0x49,0x38,0x3b, +0x9b,0xd5,0x3e,0xb5,0xfd,0x6b,0x9d,0xd3,0xe1,0x14,0xbc,0xcf, +0x88,0x80,0xc5,0xd1,0x30,0x22,0x2e,0xf2,0x48,0xf8,0xd1,0xf0, +0xa3,0xd5,0xa9,0xbc,0x5f,0x95,0x47,0xbd,0x5b,0xb9,0xa3,0x1f, +0x1f,0x73,0x38,0xe6,0x70,0xf4,0x21,0xe7,0x53,0xb6,0xa7,0xac, +0xbe,0xe6,0x7e,0x86,0x38,0x29,0x47,0x69,0x88,0x08,0xf7,0x63, +0xa6,0x3a,0x29,0xa1,0x4a,0x1d,0x0e,0xe0,0x6d,0x16,0xe3,0x80, +0x5a,0x57,0xfb,0x4d,0x68,0xcf,0x08,0xbe,0x13,0xd0,0xeb,0x1e, +0x78,0x31,0x63,0xde,0x8f,0x9a,0xe0,0xdc,0xee,0x79,0x6d,0xff, +0xf7,0x6d,0x8f,0xaa,0x7e,0x2e,0x02,0xce,0x34,0x85,0xf7,0x59, +0xe2,0xb9,0xc9,0x59,0xeb,0xf0,0xf3,0xe3,0xbf,0x9f,0x81,0x71, +0x1c,0x18,0x76,0xd2,0x47,0xa8,0x21,0x47,0x0d,0x6c,0x32,0x84, +0x26,0xe6,0x1c,0xce,0x8a,0xc1,0x09,0xe9,0x38,0x6c,0xc7,0xbc, +0xc5,0x5b,0x70,0xbc,0x56,0x9e,0x82,0x07,0xae,0xef,0xfb,0x1b, +0x37,0xbe,0x4f,0xdb,0x94,0xab,0x5b,0x62,0x5d,0x64,0xd7,0x7e, +0x2e,0xa2,0x37,0x0b,0x5c,0x79,0xd3,0x34,0x95,0x54,0x21,0x98, +0x78,0x95,0x39,0x56,0x3a,0x14,0x38,0xb9,0xf1,0xa5,0x9e,0xe5, +0x76,0x05,0x8e,0xdc,0x60,0x03,0x7c,0x21,0x21,0x8f,0xa2,0x7f, +0x90,0xc7,0x3a,0x0a,0x2d,0xd6,0x0d,0xb5,0x4a,0xfb,0x70,0x04, +0x51,0xa2,0x37,0xa1,0x4a,0xa1,0xd2,0x8e,0x2a,0xb0,0xd6,0x08, +0xd7,0xe2,0x30,0x63,0x8a,0xef,0xce,0xb3,0xe2,0x47,0x50,0x4b, +0x60,0x1d,0x4e,0x43,0xfa,0xa1,0x61,0x38,0x9c,0x14,0x9b,0x16, +0xef,0x4c,0x37,0x68,0x91,0x00,0x85,0xe3,0x10,0xa0,0xf0,0x1b, +0x02,0x14,0x75,0x1f,0x00,0xc5,0x81,0x0f,0x80,0x62,0xcc,0xfb, +0x5d,0xca,0xc5,0xa4,0x07,0xff,0x64,0x63,0x0b,0xa2,0x8b,0x22, +0x4a,0x8c,0xa2,0xf8,0xfd,0x38,0xd2,0x60,0xfe,0x1a,0xcd,0x2a, +0x5b,0xbe,0xa1,0xb6,0xbc,0x29,0xbf,0x93,0xc3,0x7f,0x3b,0x10, +0x38,0xd4,0x83,0x1b,0x3f,0x34,0x0e,0xde,0x22,0x83,0x91,0x4b, +0x99,0xa1,0xc6,0xc1,0x0b,0x86,0x1a,0x07,0x3f,0x1d,0x6a,0x1c, +0x1c,0x29,0x35,0x0e,0x56,0x63,0x70,0xf9,0xc9,0xff,0x6a,0x1c, +0xec,0x30,0x79,0xbd,0xe4,0x34,0x6e,0x31,0xd7,0xf2,0xff,0xb3, +0x71,0x30,0x9a,0x31,0x1f,0xda,0x11,0x2b,0x8f,0xe2,0x35,0xd2, +0x85,0xbe,0xb0,0x14,0xcc,0xbb,0xf0,0x0e,0x9b,0x58,0x18,0x5b, +0x14,0x59,0x6c,0x1a,0xc7,0xef,0x5b,0x68,0xba,0x6e,0xa7,0xa2, +0xcc,0x8e,0x2f,0xc8,0xce,0x2b,0xcc,0x2c,0xe3,0x7e,0xc5,0xa5, +0xe8,0x22,0x07,0x6b,0x26,0x70,0xc9,0xd6,0xcd,0x38,0x6f,0xa5, +0xd4,0x75,0x6f,0xf1,0x0f,0xf7,0x9f,0x46,0xc0,0x28,0x2e,0x82, +0x09,0xc7,0x8f,0x6f,0xaf,0x86,0xb9,0x0b,0x4b,0x9b,0x79,0x9c, +0xf1,0x6c,0xc7,0xdd,0x83,0x2f,0xa8,0x91,0xff,0x13,0x04,0x12, +0x6f,0xd4,0x98,0x1c,0x78,0x63,0xdf,0x4d,0x9f,0x6e,0x55,0xab, +0x80,0x0f,0x3d,0x66,0x55,0xad,0x4e,0x58,0x9c,0x34,0x3f,0x75, +0xe9,0xc9,0x35,0x50,0xe9,0x06,0x8e,0xda,0x19,0x2f,0xa9,0xc9, +0xac,0xde,0xfe,0x4c,0xff,0x4c,0xbf,0x8c,0x8a,0xbe,0xe2,0x9b, +0xb9,0xd7,0x4c,0x32,0x78,0xdf,0x5d,0xee,0xda,0xd2,0x2e,0x4c, +0x90,0xb4,0x0b,0x63,0xf3,0x61,0x17,0x46,0xee,0xe3,0xb8,0xcf, +0x65,0x9f,0xc7,0x9e,0x7f,0x76,0x61,0x3a,0xff,0xde,0x85,0x59, +0xd9,0x25,0xac,0x63,0x61,0x2b,0x04,0x10,0x85,0x10,0xd0,0x86, +0x7b,0x61,0x38,0x1c,0x6b,0xc3,0x63,0xef,0xe4,0xd3,0x70,0x9f, +0x02,0xf6,0xe1,0x70,0x16,0xd7,0xa3,0x21,0x11,0x66,0x20,0xe9, +0x02,0x1d,0x31,0x06,0x75,0x3a,0x99,0x67,0xe5,0x04,0xd7,0x98, +0xae,0xc0,0x65,0xda,0x6a,0x79,0xa6,0x2a,0xb0,0xfd,0x4e,0x2f, +0xc5,0xcd,0xba,0x93,0x32,0xe5,0x2c,0xbc,0xc2,0x3b,0x64,0x39, +0xb3,0xf7,0x58,0x44,0x8e,0x3a,0x54,0x18,0x60,0x13,0xab,0x9f, +0xb2,0xbf,0x5f,0xed,0x15,0x53,0x93,0x90,0x58,0xab,0x0e,0x9f, +0x4b,0x2b,0xdf,0xe2,0x2b,0x18,0x21,0xed,0x71,0x6d,0xbf,0xb8, +0xb3,0x39,0x89,0x3f,0x76,0xf9,0xd0,0xad,0x83,0xf4,0x29,0x65, +0x62,0x3d,0x29,0x7f,0x9a,0xfa,0x6b,0xcc,0xeb,0x0f,0x1b,0x33, +0xcb,0x9d,0xd7,0x50,0x43,0x99,0xae,0xf4,0x24,0xef,0xb4,0xa7, +0x89,0x53,0x64,0xca,0xc1,0x1e,0x76,0x70,0x07,0x0e,0x23,0x4e, +0xec,0xdc,0xdd,0xa6,0x38,0x73,0x87,0x5a,0x89,0xe2,0x5e,0x49, +0x4b,0x59,0x7e,0xa9,0xea,0xc5,0x28,0xaa,0x66,0xa1,0xb0,0x7c, +0x06,0x5f,0xd2,0x81,0xb3,0x5f,0x1c,0x8e,0x1c,0x62,0x4c,0x3d, +0x1c,0x74,0xe2,0xbc,0x4a,0x5a,0x79,0x64,0x51,0xe7,0xa4,0x0a, +0x16,0xfe,0x3d,0xc1,0x93,0x9d,0x65,0x6b,0x88,0xe3,0x0d,0xd4, +0x4a,0x0c,0x07,0x0a,0x1a,0x4b,0x72,0x4a,0x54,0x23,0xa3,0xc3, +0x4e,0xc5,0x1c,0x87,0x5d,0xc8,0xf2,0xe5,0xad,0x34,0xf6,0x1e, +0x46,0xaf,0x3c,0x13,0x12,0xa2,0x7a,0xe8,0x20,0xbd,0x32,0xb5, +0x34,0xa6,0xba,0x85,0x5e,0x89,0x7b,0xc4,0xe9,0xe4,0x67,0xed, +0xf9,0xe2,0x0a,0x99,0xb0,0x02,0x83,0xaf,0x40,0xb0,0xb0,0xb5, +0x87,0x3a,0x3a,0x5b,0xa5,0x44,0x5b,0xba,0x13,0x2d,0x06,0xf7, +0x77,0x0d,0xf5,0x53,0x50,0xee,0x47,0x67,0x06,0x1f,0xe1,0x36, +0x12,0x68,0x7d,0xc0,0x69,0x9f,0xbd,0x77,0x21,0x1f,0x1a,0x79, +0xec,0x7c,0x70,0xb0,0xd4,0xb6,0x22,0x86,0xa9,0xed,0x6f,0x78, +0x91,0xf1,0x82,0xab,0xa5,0x0e,0x6e,0x91,0x1c,0x17,0xa1,0xaa, +0x21,0x9c,0x61,0xdd,0x70,0xec,0x52,0x9c,0x8a,0x0b,0x71,0x74, +0x81,0x19,0xdf,0xd1,0x50,0x53,0x53,0x54,0xcd,0x89,0x73,0xbb, +0x84,0xb5,0x6c,0xc4,0x85,0xb3,0xe7,0x4f,0xa9,0xc1,0x18,0x5c, +0x54,0x59,0xb9,0xfd,0xbb,0xbc,0xfa,0xf4,0xea,0xd4,0x46,0x55, +0x08,0x98,0x2d,0x51,0x8f,0x9f,0x81,0x69,0x4c,0x17,0x9e,0x21, +0xf4,0x60,0x3e,0x9e,0x61,0xf1,0x0f,0x63,0x6a,0xf3,0x31,0x09, +0xa7,0x31,0x60,0x05,0x49,0x84,0x9e,0x4c,0xc2,0xf9,0x52,0xc0, +0x0b,0x3e,0x44,0xd0,0x81,0xad,0x9d,0xb8,0x15,0x54,0x74,0x50, +0x45,0x5c,0x38,0xf4,0x86,0x9b,0x0d,0x61,0xb3,0xa8,0x83,0x9a, +0xf2,0xf7,0xa3,0xbb,0x58,0x3c,0x01,0xcf,0x88,0xb8,0xf0,0x9d, +0xb0,0x90,0xc1,0x15,0x23,0x71,0x18,0xfd,0xd0,0x30,0x96,0xba, +0xeb,0xd5,0x04,0x39,0x7a,0xcc,0xb1,0xb8,0x5b,0x5c,0x41,0x60, +0x52,0xe3,0x1f,0x57,0xee,0x5e,0xb3,0x2a,0xe3,0x35,0x74,0xe6, +0x1a,0xe0,0x78,0x6b,0x4e,0xa8,0x84,0x31,0xe4,0x8d,0x2d,0x7c, +0xac,0xfd,0x8b,0x4e,0x75,0x23,0xbf,0xa0,0x07,0xc7,0x5c,0x9b, +0x21,0xf5,0x9c,0xfc,0x46,0xb9,0x85,0x64,0x95,0xa5,0x55,0xa5, +0x54,0x18,0x66,0xf3,0x81,0x36,0x5e,0x26,0xee,0x16,0x9c,0x38, +0x79,0xf7,0x42,0xd0,0x33,0x40,0xbd,0xd9,0x46,0xbf,0x61,0x04, +0xe3,0x7c,0xd8,0xf9,0xc8,0x6e,0x29,0x11,0xae,0x28,0xaa,0x30, +0xa6,0x28,0x96,0xc3,0xbc,0xc5,0x52,0x22,0xdc,0x4d,0xa6,0x2e, +0x51,0x4a,0x84,0x6b,0x65,0x0b,0xe3,0x8a,0x12,0x0a,0x13,0x42, +0x5a,0x79,0xaf,0xc3,0x9e,0x87,0x3d,0x8e,0x52,0xa0,0xf3,0xaa, +0x58,0x39,0xa3,0x93,0x15,0x97,0x17,0x92,0xc0,0x4a,0x9f,0x6a, +0xdf,0x7c,0x53,0x6f,0x3e,0xd3,0x35,0xd3,0x31,0xd9,0x91,0x83, +0xc3,0x83,0x32,0x92,0xf4,0xc1,0x1e,0x0e,0x75,0x25,0xbd,0x66, +0x20,0xde,0x66,0x45,0x67,0x2d,0x02,0x27,0x60,0x05,0x6e,0x5d, +0xca,0xc6,0x99,0xa8,0xdc,0x66,0xaa,0x13,0xa5,0xbf,0x35,0x60, +0xce,0xe0,0x48,0x16,0x04,0xe1,0x3d,0x11,0xb7,0x77,0x0b,0xdb, +0x59,0xea,0xd8,0x17,0xd3,0xa0,0x08,0x54,0x68,0x54,0x84,0x2b, +0x70,0x0d,0xa1,0x97,0x70,0xb8,0x62,0x88,0x9e,0x65,0x29,0xe9, +0x11,0x13,0xd8,0x98,0x92,0xa8,0xd2,0xc8,0x52,0xed,0x28,0xfe, +0xb8,0x43,0xb0,0xe3,0x61,0x27,0x0e,0xeb,0x65,0x90,0xc1,0xe8, +0xe0,0xdc,0x59,0x38,0x16,0x27,0x6d,0x2c,0xd0,0xe1,0x6b,0xb2, +0x2b,0xf2,0x4b,0x8b,0x39,0x71,0xfd,0x15,0x21,0x98,0xbd,0x74, +0xbb,0xe9,0xbb,0xd2,0x1f,0x39,0xa8,0x12,0xbf,0x20,0xcd,0xec, +0x77,0x15,0xf7,0xbb,0xaa,0x3b,0xb9,0x06,0xf1,0xa4,0x5c,0x58, +0xc0,0x3a,0xda,0x69,0x39,0x6d,0xd8,0xc3,0xad,0xc3,0xab,0x72, +0xb8,0x8a,0x87,0x71,0xb1,0xc4,0xd7,0x03,0x5f,0x32,0x8d,0x69, +0x29,0x8d,0xea,0xe0,0x07,0x19,0x5d,0xec,0x98,0xf7,0xc3,0xe1, +0x12,0x89,0xf5,0x8b,0xf1,0x8f,0xda,0xdf,0x54,0xc0,0xbb,0x0c, +0xc8,0x5f,0xd8,0x74,0x5a,0x79,0xf1,0xa9,0xde,0x59,0x2e,0x19, +0x4e,0x9b,0x8e,0x2d,0x0f,0x5d,0x76,0xf2,0xc7,0xef,0x5e,0xc1, +0xa7,0x57,0x7f,0x35,0x29,0xe4,0xed,0x77,0xea,0xac,0xd4,0xdc, +0xe4,0x9d,0xe9,0x99,0xe1,0x99,0xd1,0x7e,0xa9,0xf3,0x5e,0xf5, +0xcd,0xfb,0xb1,0xf7,0xe2,0xfb,0x13,0x3d,0x9b,0x78,0x9c,0xe8, +0x86,0x5a,0xde,0xb8,0x30,0x34,0xce,0x98,0x6f,0x3f,0x7f,0x29, +0xfc,0x72,0xe4,0x6e,0x43,0xab,0x5d,0x8e,0xb6,0xbe,0x49,0xbe, +0x89,0x7e,0xf1,0xae,0xd6,0xfc,0x0d,0x8b,0x4b,0x16,0x97,0x0c, +0x7d,0x7d,0x7d,0xfd,0xf6,0x05,0x70,0xa7,0xcd,0xcc,0x4f,0x5b, +0x4d,0x8e,0x30,0xf8,0xf6,0xdc,0xd3,0x0b,0x4f,0xc3,0x54,0x51, +0xec,0x13,0x86,0xb3,0x37,0xc3,0x6e,0x44,0xf4,0x47,0x72,0xa2, +0x0f,0xac,0x23,0x0e,0x87,0xad,0x0f,0x5b,0xd0,0x07,0x31,0x8a, +0xed,0xec,0x6d,0xbc,0x9f,0x71,0x85,0x0a,0xf2,0x13,0x23,0x88, +0x67,0x7d,0x64,0xf6,0x32,0x85,0x82,0xc3,0x25,0xac,0xe2,0x88, +0x54,0x10,0x12,0xad,0xcd,0xb7,0x45,0xb5,0x46,0x37,0xc5,0x70, +0xf8,0x06,0xc7,0x4b,0xf7,0xf7,0x86,0x69,0x4f,0x4c,0x6c,0x57, +0x87,0x3f,0xd8,0x96,0xb8,0xc6,0xf8,0xaa,0x78,0x0e,0xfe,0x44, +0x6f,0xd2,0xb4,0xa3,0x71,0x63,0xd9,0xe6,0xb6,0x7c,0xde,0xe1, +0xbe,0xf9,0x2d,0xf3,0xab,0x9c,0xb8,0x18,0x2f,0x92,0xba,0xfe, +0x86,0xa7,0x59,0xf7,0x4c,0x52,0x79,0x2f,0x0d,0xbb,0x2d,0x56, +0xfa,0x54,0x98,0x7c,0x60,0x2d,0xb9,0x01,0xe3,0x05,0x82,0xe7, +0x6f,0xc0,0x93,0x16,0xcc,0x62,0x53,0xb2,0x93,0x73,0x93,0xf2, +0x4d,0x92,0xf9,0x83,0x7b,0x7c,0x9c,0x7c,0xdc,0x38,0x4c,0x60, +0x6a,0xd2,0xfc,0x0b,0xf7,0x67,0xfb,0x67,0xa8,0x9a,0xf9,0xa5, +0x7b,0x27,0xfb,0xa6,0xb8,0xab,0x62,0xa6,0x29,0x3c,0xdb,0x86, +0x11,0x22,0x11,0x72,0xb7,0x0d,0x8e,0x30,0x55,0x8e,0xc0,0xcf, +0x50,0x87,0x49,0x32,0x1f,0x62,0x62,0x92,0xba,0x8c,0x53,0x83, +0xb5,0xb7,0x85,0x15,0xa7,0x08,0x19,0x64,0x1b,0x0e,0xbb,0xc1, +0x1a,0xe0,0x68,0x12,0x6c,0xe6,0xbc,0x77,0xe1,0x9e,0x1c,0x2b, +0x1e,0x46,0xd7,0x54,0x34,0x45,0x5d,0xe6,0xe0,0x23,0x4d,0xc6, +0x21,0xe9,0x50,0xb5,0x1a,0x7c,0xc2,0xe4,0xc5,0xc5,0xe4,0xab, +0x97,0xb3,0x96,0x31,0x2a,0x96,0x0b,0xd8,0xc0,0xd0,0xb0,0x44, +0xf5,0x5e,0x90,0xa3,0xa6,0xf8,0x0b,0x68,0xb2,0xc2,0x2f,0xe8, +0x4b,0xf4,0xc4,0x5f,0xfa,0xd8,0x0c,0xcc,0x25,0xed,0xae,0x0d, +0x2e,0x75,0x36,0x55,0x65,0xbc,0x65,0x9d,0x45,0xa9,0xa2,0x80, +0x5a,0xf3,0x27,0xc2,0x2c,0xe2,0x7d,0xd4,0xeb,0xa8,0x97,0xc4, +0x62,0x39,0x94,0xc7,0xac,0x4f,0xbd,0xf8,0x57,0x14,0x3d,0xe1, +0x59,0xd6,0xfc,0xa0,0xd9,0x61,0x4b,0x29,0xd3,0xb8,0x36,0xba, +0x3e,0xae,0x6e,0x28,0x79,0xf7,0x33,0x89,0xd8,0xf1,0x77,0x89, +0xb4,0xb3,0x5e,0x4a,0xde,0x2d,0x88,0x29,0x88,0xcd,0x8f,0xe3, +0xea,0x04,0x7b,0x82,0xb6,0xc2,0x51,0xb0,0x65,0xc5,0x6d,0x54, +0x6a,0xff,0x14,0xb8,0xa9,0xac,0x68,0x82,0x2a,0x44,0x34,0x16, +0x32,0x05,0x63,0x56,0x86,0x13,0x88,0xb8,0xe0,0xa1,0xb0,0x80, +0x41,0xb7,0x91,0xe2,0x82,0x27,0xf4,0x40,0x5c,0x80,0x3c,0x11, +0x16,0x2c,0x13,0xe9,0xb9,0xe1,0x74,0xda,0x1f,0xa6,0xfd,0xd6, +0xd0,0x5d,0xe3,0x5a,0xc5,0xeb,0x3b,0x2c,0xb6,0xdf,0x18,0xc0, +0x09,0x33,0x5a,0xc8,0x9d,0x7d,0x6f,0xac,0xaf,0xba,0x65,0xb4, +0xf2,0xfa,0xf9,0xf3,0xaa,0xd6,0x48,0xb5,0x7a,0x3d,0x43,0x09, +0x3e,0x04,0x66,0xf7,0xe0,0x6c,0xd0,0xd7,0x43,0x7d,0xdc,0x25, +0x83,0x4d,0x12,0x05,0xba,0x25,0xaa,0xe2,0xe7,0x38,0xa3,0xda, +0x92,0xff,0x1d,0x3e,0xa9,0x84,0x8f,0x22,0xdf,0x71,0x11,0x62, +0x5d,0xdf,0x10,0x05,0xba,0xc4,0xf6,0x02,0x9f,0xe2,0xf2,0xaa, +0x2a,0x64,0x60,0x7e,0x70,0xbc,0x54,0xdb,0xae,0x2a,0xa4,0x52, +0xe1,0x01,0x53,0x3d,0x34,0xc5,0x5e,0x03,0xe8,0x15,0xef,0xd2, +0x08,0x28,0x59,0xff,0x43,0xd1,0x5c,0x4a,0x93,0xba,0x70,0x15, +0x46,0x74,0xb3,0x18,0x2e,0x6a,0x12,0xc7,0x97,0xe6,0x2f,0x4d, +0xee,0x9a,0xbb,0xf3,0x4d,0x5b,0x1a,0x97,0x54,0xcc,0xa7,0xc6, +0xbf,0x59,0x39,0x96,0x34,0xb9,0x74,0x9a,0x94,0x39,0xed,0xf5, +0xd8,0xeb,0xb9,0xd7,0x87,0x3b,0xbd,0x77,0xef,0x19,0xef,0xc9, +0x11,0x8a,0x8e,0x73,0xdd,0xe7,0x3b,0xa9,0x94,0xf6,0x77,0xc3, +0x00,0xdb,0x10,0x56,0x1b,0x5e,0x11,0x11,0xb9,0x3f,0x32,0x20, +0x3c,0xb0,0x36,0x95,0xdf,0xdf,0xeb,0xf4,0xed,0x9e,0x06,0x3b, +0x3f,0x3e,0xde,0x3f,0x61,0x6f,0x82,0xa7,0x51,0xa8,0x76,0xe8, +0xce,0x93,0xb7,0xaf,0xdd,0xff,0xb5,0xfb,0x7b,0xcb,0x3c,0xde, +0xd3,0xd2,0xde,0xd0,0xd2,0xf0,0x50,0x62,0x40,0x72,0x40,0x72, +0x45,0x43,0x4d,0x57,0x6e,0x4b,0x53,0x64,0x7d,0x54,0x45,0xd4, +0xde,0x66,0x7e,0xd9,0x3e,0xfc,0xe2,0x00,0x8e,0x38,0x15,0xa5, +0xe0,0x2b,0xcf,0xd5,0x87,0xd5,0x87,0xfb,0x39,0x7b,0x39,0x7a, +0xb9,0x1d,0x8c,0x3f,0x18,0x1b,0x44,0xa5,0xf9,0x87,0x2d,0xff, +0xa7,0x72,0x14,0xf4,0x96,0x10,0xc7,0x10,0x87,0x63,0xce,0xa1, +0xe1,0x32,0xbe,0x34,0xb2,0xec,0x62,0x59,0x14,0x87,0x25,0x2b, +0x25,0x70,0x76,0x97,0x29,0x4b,0x88,0xab,0x94,0x92,0x98,0x6b, +0x62,0xab,0xe2,0x8a,0xe3,0x4e,0x76,0xf2,0x7b,0x8e,0x38,0x1e, +0xb6,0x3b,0xca,0xfd,0xc1,0xd6,0x34,0x94,0xb5,0xe4,0x36,0x71, +0xf5,0x98,0x63,0x0c,0xce,0xac,0x8f,0xad,0x9b,0x83,0xbd,0x23, +0x87,0xcb,0xa5,0xce,0x76,0xda,0x06,0xf0,0x09,0xfa,0x31,0x0b, +0xbd,0x4c,0xe7,0x4b,0x5b,0x3a,0x4f,0xab,0xaa,0xdb,0xff,0xe9, +0xaa,0xb9,0x4d,0xc2,0xfc,0xe7,0x24,0xe8,0x2c,0xc6,0x33,0x7f, +0x97,0x99,0x0a,0x52,0x27,0xe0,0x5c,0xfd,0xdc,0x0d,0xc9,0x1a, +0x2d,0xc9,0xfc,0x81,0x3b,0xee,0xf7,0xa5,0x6d,0xfc,0x01,0x3c, +0x41,0x4a,0x2f,0x17,0xdc,0x49,0xb9,0x6d,0x16,0xcf,0x1f,0xd8, +0xe1,0xb1,0xd9,0xc5,0x98,0x3e,0xd3,0xe3,0x14,0x6e,0xdb,0xa1, +0x89,0x36,0x4e,0x9b,0x49,0xe1,0xb6,0x29,0x5f,0x54,0x52,0xd2, +0x50,0xd8,0xc5,0x89,0x6d,0x3d,0xca,0x8d,0x6c,0xf6,0x95,0x8c, +0xdb,0x09,0x0f,0x39,0xe1,0xc9,0xe0,0x55,0x82,0xff,0x62,0x64, +0x87,0xe2,0xba,0xd5,0x85,0x85,0x2c,0x2c,0xab,0x56,0x11,0x3f, +0xed,0x13,0x26,0xb3,0x60,0xd0,0x7c,0x66,0xfe,0xd7,0x9b,0x42, +0x77,0xaa,0x3a,0x9c,0x3a,0x7a,0xc4,0x76,0xb2,0x16,0x93,0x60, +0xa8,0xd2,0xcd,0xdc,0xcd,0xce,0xbb,0x7b,0x51,0xfd,0xe2,0xd3, +0x0b,0x3f,0x9d,0x85,0x99,0x78,0x41,0x8b,0x87,0x83,0x7a,0xf8, +0x0d,0x8b,0xcb,0xec,0x55,0xc0,0x5b,0x0f,0x43,0xd8,0x39,0x3e, +0xb1,0xf2,0xef,0xd2,0x55,0xc4,0x19,0xec,0xe2,0x62,0xf7,0x17, +0x6a,0xc2,0x30,0x89,0xf9,0xa5,0x49,0x1d,0x96,0xb3,0x06,0x49, +0x2a,0x63,0x94,0xc9,0xca,0x60,0x82,0xed,0x4c,0x5a,0x6a,0x6a, +0x5a,0x52,0xba,0x3c,0x8b,0x5f,0x84,0x1f,0xe1,0xcc,0x8d,0xb8, +0xda,0x2a,0xcb,0x50,0x6a,0x4a,0xfb,0xae,0xe9,0x69,0x1f,0x47, +0x23,0x3d,0x43,0xcd,0xad,0xbb,0xe6,0x1b,0x3b,0x94,0x9b,0xd4, +0x38,0x67,0x5b,0x3a,0xf2,0xa5,0x3e,0xb5,0x2e,0x65,0xce,0xf3, +0xad,0x91,0x73,0xc1,0x69,0xfb,0x32,0x0c,0x78,0xf8,0xf9,0x0a, +0x38,0xc0,0x17,0x30,0x07,0xe8,0x44,0x4e,0xc3,0x67,0x24,0x37, +0x3d,0x2b,0x23,0x23,0x4b,0x51,0xc8,0xd3,0xef,0x63,0x70,0xe1, +0x16,0xf4,0x36,0xcf,0x90,0xf3,0xa0,0x56,0x00,0xa3,0x6a,0x7f, +0xeb,0xe1,0xa0,0x93,0x91,0xad,0xdf,0xb0,0x63,0x86,0xc2,0xa6, +0xd1,0xb8,0xce,0x2e,0x9f,0x06,0x38,0x25,0x3e,0x6d,0x16,0x15, +0xf6,0xa8,0x62,0x8e,0xea,0x6e,0xa8,0x71,0x28,0x59,0xc6,0x0b, +0xd3,0xca,0xe1,0x14,0xa8,0xc3,0x6c,0xf0,0x1b,0xe2,0x05,0xda, +0x2c,0x9c,0x23,0x7d,0xe2,0x32,0x88,0xd2,0xc2,0x28,0x71,0x9a, +0x9e,0x30,0x85,0x3d,0x82,0xf2,0xa9,0x38,0x19,0xeb,0x50,0xaf, +0x9c,0x8e,0x36,0x87,0x86,0x72,0x0c,0x8c,0x4d,0x04,0x85,0x44, +0x00,0x8e,0x0a,0xf8,0x1c,0xc7,0x42,0x2e,0x6a,0x95,0x77,0xf0, +0xd8,0x08,0xfa,0xc8,0xc1,0xe4,0x20,0x90,0x73,0xd4,0xa9,0x72, +0xa4,0xc7,0xe4,0xca,0xf6,0x1a,0xbd,0x86,0x0a,0xde,0xa6,0x77, +0xfb,0x4d,0x79,0x0b,0x85,0xb1,0x3b,0x85,0x18,0xd2,0x8d,0xed, +0x45,0x2c,0x04,0x68,0x63,0x00,0xc5,0x05,0x19,0x06,0x90,0xc2, +0x06,0xa2,0xcf,0x12,0x1a,0x72,0xda,0xe0,0xb6,0x3a,0x53,0x1e, +0xf4,0x60,0x03,0x7c,0x04,0xcb,0xcf,0x83,0x15,0xfd,0x85,0xf3, +0x68,0xfd,0x33,0x7e,0x09,0x36,0x68,0x58,0xd3,0xca,0xa3,0x2b, +0xc8,0x57,0x83,0xea,0x41,0xf0,0xe2,0xf0,0x06,0x18,0x13,0x79, +0x9d,0x66,0xdd,0xf6,0x22,0x77,0x33,0xfe,0xe6,0xee,0xcb,0xf6, +0xbd,0x56,0xdc,0x21,0x34,0xa1,0xe7,0x34,0x9a,0x34,0x8b,0xdd, +0xcd,0xf9,0x9b,0xce,0xd7,0x6c,0x2f,0x59,0x70,0x14,0x27,0x13, +0x47,0x1c,0x61,0x8c,0xdc,0xa6,0xb9,0xcd,0xf6,0xfc,0xbd,0x3f, +0x2e,0x01,0x5f,0xfa,0x27,0x07,0xa7,0x71,0x3b,0xa9,0x70,0xea, +0xdc,0x5e,0x64,0xd2,0x52,0xce,0xbb,0xb4,0xc9,0xaf,0x3b,0x96, +0x51,0x3b,0xec,0x20,0x65,0x68,0xe0,0x27,0x68,0x8f,0xd6,0xdd, +0x30,0x1d,0x06,0x71,0x7a,0x37,0x58,0xa3,0x2b,0x33,0x38,0xf6, +0x19,0x31,0x82,0xf6,0x0e,0x36,0x5d,0xa2,0x7b,0xc5,0x7f,0x19, +0xb2,0xc2,0x8f,0xe2,0x2f,0xc4,0x3c,0x38,0xba,0x59,0x1d,0xd6, +0xb0,0x30,0xbe,0x07,0xd8,0xfb,0x77,0xef,0x38,0x56,0xf3,0x3a, +0x5a,0xd3,0xb7,0xe2,0x47,0xa6,0x1c,0x84,0x18,0x88,0x7b,0xd9, +0x55,0xd9,0xde,0x0f,0xd5,0x60,0x1f,0x53,0x97,0x2a,0x35,0x3d, +0xda,0xc8,0x1a,0xa6,0xa8,0xa0,0x19,0x3b,0x18,0x23,0xc4,0xff, +0x4f,0xe6,0xcd,0x0f,0xc5,0xe9,0xc1,0x90,0x41,0xa7,0xf9,0x5b, +0x16,0x42,0x3e,0x14,0xa7,0x6b,0x49,0xc5,0xe9,0xef,0xe5,0xc2, +0x4a,0xb2,0x04,0x66,0x5f,0x6d,0xc5,0x70,0x20,0xcc,0x93,0xc8, +0x07,0xb1,0xb7,0x12,0xbc,0xa9,0xe3,0x9b,0xec,0x81,0xdb,0x0f, +0xa1,0xd5,0xd7,0xb1,0x0a,0xfe,0xfe,0xb9,0x7b,0xe7,0x6f,0x85, +0x73,0xd4,0x51,0x9f,0x35,0xb9,0x8e,0xb3,0x97,0x2b,0x9e,0xe3, +0xb2,0x1d,0x0a,0x38,0x8b,0x04,0x4b,0x8c,0x04,0xe8,0xc0,0x54, +0x6a,0xe5,0xc2,0xdb,0xb4,0x60,0xd9,0x0b,0x76,0xb0,0x17,0x7f, +0x25,0xef,0x40,0x5b,0xf9,0x25,0x1e,0x97,0x3a,0x6b,0xed,0x82, +0x95,0x04,0xc7,0x09,0x45,0x30,0x8e,0x01,0x94,0x94,0x73,0x36, +0x8e,0x81,0xd9,0xf4,0x3c,0xce,0xa6,0x96,0x11,0xe8,0xff,0xb3, +0x28,0x57,0x10,0x5c,0x46,0x4f,0x2f,0x93,0x4e,0x2f,0x23,0xb0, +0x8c,0x9e,0x5e,0x26,0x6d,0x1f,0x52,0x6c,0x24,0x70,0x1d,0x22, +0x77,0x2f,0x03,0x26,0x40,0x05,0x8d,0x95,0xa5,0xae,0xe1,0x30, +0x86,0xa9,0x8d,0x97,0xac,0xc2,0x53,0xbc,0xce,0xc6,0xa5,0xc4, +0xa4,0x45,0xa7,0x71,0xf0,0xbc,0x15,0x2f,0x33,0x91,0x69,0x11, +0x69,0x61,0x19,0x06,0xb1,0x7c,0xa8,0xd7,0x71,0xef,0xe0,0x7d, +0x1c,0x6e,0x35,0x81,0xb9,0x8c,0xfd,0x16,0x99,0xfe,0x7a,0x45, +0xb1,0x39,0x5f,0x98,0x9e,0x97,0x91,0x9d,0xc5,0x61,0xf9,0xde, +0x0d,0x08,0x46,0x00,0x14,0xca,0x2d,0x91,0xbf,0x9f,0xdc,0x25, +0x6e,0x61,0xd1,0x53,0x19,0x48,0xfc,0x8d,0x1d,0xf4,0xed,0x15, +0x5c,0xb7,0x65,0xbd,0x95,0xf9,0x24,0x87,0x43,0x01,0xe6,0x6a, +0x06,0x4c,0xbc,0x09,0xd5,0xcf,0x9b,0x25,0xa5,0xd7,0x7b,0x5d, +0x1a,0x0d,0x1b,0xd4,0x2b,0x9a,0x8b,0x7b,0x32,0xfa,0xb9,0x6a, +0x2c,0x17,0xaf,0xf7,0x08,0x09,0xac,0x30,0x07,0x77,0x93,0x76, +0xa8,0x30,0x66,0xb1,0xc2,0x82,0x40,0x85,0x11,0x56,0x50,0xc4, +0xa8,0x54,0xf6,0x13,0xb4,0xb1,0xc2,0x6b,0x41,0x98,0x7e,0x3e, +0x86,0x2a,0x56,0xe9,0x69,0x18,0x48,0x06,0xcb,0x7a,0xa9,0xf9, +0xc8,0x4b,0xd2,0x78,0xb7,0xf2,0x49,0xde,0x33,0xfd,0x64,0xde, +0x7b,0xad,0xfd,0x6a,0x0b,0x4d,0x0e,0xc7,0x95,0x92,0x83,0xdd, +0x5e,0xd7,0xf7,0x36,0x1b,0x06,0xf0,0xd9,0xe6,0x79,0x9b,0xe3, +0x4d,0x38,0x74,0x38,0x44,0xfc,0x7a,0x5c,0xaf,0xed,0x69,0x33, +0xf2,0xe3,0x0b,0x14,0x25,0xdb,0x52,0x8d,0x38,0xa5,0x2e,0xf5, +0x42,0x5d,0x62,0x14,0x9b,0x55,0x91,0x51,0x91,0x5c,0x6a,0x10, +0xc7,0xfb,0x3b,0x78,0xdb,0x4a,0xbd,0x42,0x2b,0xe4,0x70,0x9a, +0x71,0x32,0xb7,0x35,0xb3,0x30,0xbf,0xb7,0xff,0x37,0x2f,0x18, +0xee,0x36,0xcb,0x12,0x27,0xfa,0xe0,0xc6,0x23,0x89,0x54,0x5f, +0x8d,0x63,0x61,0x51,0x29,0x7c,0x32,0x00,0xac,0x0b,0x8c,0x76, +0x00,0x15,0x3b,0x29,0x82,0x1f,0x56,0x81,0xc3,0x4a,0x67,0x14, +0xdc,0x68,0x6f,0xbf,0x59,0xf1,0x82,0x13,0x0f,0xe3,0x38,0x52, +0x52,0x56,0x54,0x5d,0x50,0xcd,0xc1,0x0d,0xc6,0x6e,0x95,0x42, +0x57,0xd3,0x72,0x71,0xce,0xca,0x8c,0xad,0x29,0xd4,0x83,0xb4, +0x29,0xbf,0x26,0x17,0xb3,0x23,0x72,0xc2,0x73,0x0d,0x2e,0xf0, +0x27,0x3c,0x43,0x3d,0x43,0xf6,0x72,0x38,0xcb,0x04,0xbe,0x60, +0x76,0xaf,0x32,0xd9,0xb4,0x71,0x5b,0x91,0x25,0xff,0xdd,0xfd, +0xcb,0x3f,0x56,0xc3,0x08,0x4e,0x58,0xd4,0xca,0x0c,0xda,0x0f, +0xde,0x25,0xef,0xe7,0xc9,0xfe,0x35,0x8f,0xfd,0x91,0x4e,0x6b, +0xb4,0x7d,0xac,0x2c,0xdc,0xb4,0x35,0x85,0x0f,0x6d,0x0a,0xea, +0x3d,0x52,0xc5,0x61,0x00,0x3e,0x27,0x59,0xcf,0x63,0xdf,0x5d, +0xf8,0x4b,0x11,0xce,0x9f,0x9c,0x76,0x74,0x9e,0xf7,0x4a,0xee, +0xfd,0x17,0x70,0x80,0x34,0x8b,0xf3,0xcd,0x60,0xe2,0x3a,0xf4, +0x30,0x17,0x62,0x9b,0x30,0xf4,0x21,0x8b,0xe7,0x06,0x57,0x11, +0xd0,0x11,0xc6,0x52,0xb8,0xbd,0x95,0x8d,0x33,0x52,0x81,0x85, +0x4c,0x83,0xb4,0xf4,0x28,0xcc,0x11,0x4f,0x89,0x01,0x2c,0x85, +0xe5,0x22,0x11,0xc7,0x0e,0x08,0x63,0x19,0x71,0x2c,0x52,0x61, +0x19,0xbb,0x45,0x1c,0xcb,0x8c,0x11,0x6c,0x84,0x4d,0xc4,0x64, +0xbf,0x61,0x80,0x3c,0x50,0xe2,0xbb,0x5e,0xd3,0x8d,0x6b,0x40, +0x5b,0x17,0xb5,0xa5,0x76,0xcb,0x9a,0x78,0x9a,0xd5,0x09,0xd4, +0x0d,0x32,0x38,0x1a,0xa5,0xcf,0x77,0xc4,0xf4,0xc4,0xf7,0x24, +0x4a,0x55,0x49,0xcb,0x58,0x69,0x4d,0x76,0x22,0xd3,0x96,0x9c, +0xd2,0xa6,0x0e,0xd5,0x6c,0x6f,0x72,0x6f,0x6a,0x67,0x06,0x67, +0x26,0x2c,0x21,0x32,0xe8,0x19,0xb4,0x43,0xeb,0xa1,0x0f,0x6c, +0x64,0x7a,0x93,0x53,0x7a,0xd4,0x95,0x32,0x58,0xda,0x33,0xb4, +0x45,0x2c,0x79,0xf8,0x89,0x30,0xa6,0x93,0x4a,0xaf,0x54,0xa1, +0x82,0x2b,0x0c,0x61,0xde,0x3f,0x7c,0x6e,0xc3,0xf1,0xcb,0x2a, +0x0b,0xfe,0x39,0x8c,0x2c,0x82,0x61,0x11,0xbf,0x52,0x0f,0x5f, +0xd4,0xfd,0x5f,0x7c,0x6e,0xbf,0xe2,0xb2,0x8a,0xca,0x05,0x30, +0x2f,0x24,0x3e,0x54,0x4a,0x17,0x15,0x96,0xc1,0xbf,0x86,0x2c, +0x83,0xe7,0x90,0x65,0x10,0xc6,0x7f,0xb0,0x0c,0xbe,0xcc,0xda, +0x41,0x4b,0x62,0x1a,0x1c,0xd3,0x22,0xd1,0x7c,0x82,0x6a,0x0f, +0x8c,0xfe,0xf6,0xfe,0x1d,0xa7,0x1a,0x7e,0xa7,0x16,0x0e,0xdf, +0x8a,0x1f,0x4b,0x76,0x40,0x26,0x7a,0xb2,0x2b,0x73,0xf6,0x3e, +0x52,0x83,0x10,0xa6,0x2e,0x4d,0x5a,0x9b,0xdc,0xc0,0xca,0x93, +0x55,0xd0,0x94,0x2a,0x90,0x97,0xe0,0x4c,0x0e,0x7e,0x1d,0x78, +0x2a,0xf0,0x6b,0x0e,0x24,0xa2,0xeb,0xf8,0xc2,0x98,0xc2,0x8b, +0x79,0xb2,0xff,0xa6,0x2f,0x18,0xfe,0x1f,0xf4,0x05,0xbe,0x12, +0x7d,0x81,0x9c,0x4f,0x3b,0x9b,0x76,0x2e,0xf5,0xec,0x49,0xdc, +0x12,0x84,0x9f,0x39,0xce,0x6a,0x74,0xe2,0x1b,0xfe,0xa6,0x2f, +0x30,0xb8,0x1d,0x7e,0xf5,0xe2,0xa5,0x28,0x1a,0x85,0xe0,0x28, +0x36,0x7e,0x88,0xbe,0x20,0x31,0xa1,0x46,0x5d,0x98,0xce,0x26, +0x9d,0x4f,0xba,0x90,0x74,0x81,0x83,0x18,0x61,0xfd,0xd0,0x4d, +0x18,0xa2,0x75,0x17,0xcc,0xa0,0xfa,0x39,0x43,0xba,0x09,0x73, +0x46,0x1c,0xc0,0x06,0x72,0x36,0xff,0x6f,0x96,0x02,0x1b,0x0c, +0x65,0x75,0x42,0xb4,0x8e,0x69,0x4a,0x2c,0x05,0x76,0x24,0xd7, +0xa1,0xd0,0x30,0xf5,0x03,0x4b,0x81,0x4b,0xb7,0x57,0x19,0x27, +0x6c,0x1a,0xfc,0x92,0x58,0x05,0x47,0x35,0x48,0x06,0x0d,0x46, +0x75,0xc3,0xb0,0x07,0x37,0xee,0x38,0x56,0xf1,0x32,0xad,0xf9, +0x9a,0x33,0xe8,0x0d,0x07,0x1b,0x88,0xfb,0xd8,0xb5,0xd9,0xde, +0xdf,0xaa,0x81,0x2d,0x53,0x9b,0x22,0xd5,0x38,0x69,0xb0,0x46, +0xc9,0x43,0x86,0xef,0x13,0xb8,0x45,0xf0,0x44,0x2b,0x9c,0xa0, +0xf7,0x7e,0x83,0x0a,0x6d,0x64,0x76,0x38,0x15,0x5a,0xb9,0x24, +0xb4,0x27,0x3c,0x8f,0x51,0xa1,0x5d,0x6c,0x42,0xe3,0x04,0x8f, +0xf5,0x56,0x5b,0xb5,0x76,0x16,0x59,0xf0,0x77,0xef,0x75,0x7e, +0x5f,0xf6,0x07,0x27,0xa8,0x51,0x99,0x95,0x63,0x13,0x39,0x09, +0xaa,0xc0,0xb6,0x23,0xfb,0x81,0x88,0x70,0x8a,0x31,0x95,0x87, +0x23,0xf8,0xb9,0x23,0x4e,0x5d,0x88,0xa4,0xc2,0x82,0xbf,0xf3, +0x57,0xce,0xbb,0xf0,0x97,0xf4,0x39,0x66,0x74,0x09,0xe7,0xff, +0x2e,0xa3,0x78,0x88,0x4b,0xcb,0xca,0x37,0xc1,0xdc,0x63,0x09, +0x43,0x65,0x14,0xca,0x05,0x30,0x9a,0x8a,0xf1,0x64,0x33,0xf8, +0x7c,0x1d,0x3a,0x98,0x0b,0xc7,0x9a,0x30,0x90,0x8a,0x71,0xf0, +0x90,0x18,0xc3,0x7b,0x2a,0xc6,0xeb,0x87,0xc4,0x78,0x16,0x53, +0x9f,0xf2,0x41,0x8c,0x7d,0x24,0x31,0x5e,0x49,0xc5,0x18,0xdf, +0xdf,0x80,0xf7,0x0c,0xbe,0xa7,0x62,0x0c,0xef,0x37,0xe3,0x7b, +0x6a,0x47,0x76,0x51,0x77,0xa1,0x8b,0x9f,0xa2,0xdf,0x07,0xa1, +0x98,0x83,0xd3,0x7b,0xe8,0x7c,0x06,0x33,0xe2,0xe0,0x73,0xf2, +0xaf,0xe1,0xfd,0xca,0x5e,0xd8,0xc1,0x06,0x6a,0x1a,0xe1,0x08, +0xf3,0xd5,0xdc,0x6d,0xcd,0xba,0xcd,0x9b,0x26,0x19,0x1c,0x74, +0x97,0xab,0x99,0x4a,0x0d,0x44,0xba,0x99,0x3b,0xb5,0xf5,0xef, +0x7e,0xb4,0x7c,0xa8,0xd3,0xa7,0x5e,0x7d,0xa3,0x0d,0x46,0xa6, +0x3f,0xe3,0xea,0x59,0xf0,0x1e,0x2c,0x23,0x8a,0xa3,0x31,0x6d, +0x12,0x76,0x80,0x29,0x5d,0x30,0xfe,0xdb,0x47,0x77,0x9d,0x6a, +0xf9,0x6d,0x5a,0xc8,0x6d,0xc1,0x71,0x74,0x7a,0x8f,0xc9,0xc4, +0x3d,0xec,0xf2,0xdc,0xbd,0x4f,0xd4,0x20,0x82,0xa9,0x1f,0x92, +0xa7,0xf5,0xac,0x3c,0x49,0x05,0x15,0xd4,0x57,0xc8,0x84,0x38, +0xd2,0x81,0x2e,0x39,0x2c,0x1c,0xd1,0xc5,0x23,0xec,0x5e,0xb4, +0x36,0x02,0x4b,0xf6,0x28,0x3a,0xcb,0xa8,0x3b,0x99,0x81,0xdb, +0x6b,0xcd,0x79,0xf8,0x12,0x74,0x7a,0x81,0x5c,0x00,0x97,0x21, +0xf7,0xea,0xd0,0x87,0x5f,0x50,0x4c,0x23,0xaf,0xa0,0xfe,0x7b, +0x2e,0x68,0x19,0xc0,0x82,0xa3,0x12,0xba,0x78,0x87,0xd6,0x04, +0x47,0x9f,0x5e,0x3b,0x94,0x45,0x11,0x74,0xc4,0x94,0x22,0xa1, +0x78,0x53,0x95,0x7e,0xe6,0x4e,0x66,0xf6,0xc3,0x68,0xf5,0x8b, +0x37,0x2f,0xbc,0x86,0x85,0x93,0x70,0xfa,0x5b,0x98,0xd4,0x80, +0x93,0x5e,0xfe,0xfd,0x3a,0xb3,0x59,0xfc,0x58,0x3c,0xc4,0x80, +0xa6,0xa0,0x45,0x16,0xe2,0xa8,0x97,0x54,0x3a,0x70,0xda,0x7f, +0x1c,0xcd,0xc4,0x51,0x6f,0x59,0x38,0x87,0xf7,0xc8,0xf1,0xda, +0xa0,0xe6,0xa0,0x2a,0x97,0x60,0x3e,0xde,0x26,0xd6,0x32,0xd2, +0x82,0xca,0x39,0xa8,0x92,0x58,0xa3,0x98,0x9d,0x91,0x9b,0xab, +0xa2,0xf8,0xd0,0xcb,0x41,0x0f,0x82,0xda,0x38,0xfa,0x88,0xdb, +0x48,0xfa,0x83,0xc4,0x3f,0xc2,0x61,0xb8,0x55,0x04,0x7f,0x62, +0xd6,0xc1,0xe9,0x7e,0x1a,0x34,0x34,0x83,0x34,0x72,0x71,0xeb, +0x85,0x05,0xe7,0x56,0xd7,0x4a,0xd9,0x0b,0xc7,0x7f,0x0b,0x19, +0x90,0xca,0x4f,0x34,0x49,0xfe,0xee,0x5a,0xed,0x2c,0xcb,0xba, +0x62,0xde,0xbb,0xd1,0xba,0xdf,0x43,0x72,0xe7,0x81,0x34,0xb6, +0x3d,0xd0,0xe9,0xd5,0xed,0x55,0x6f,0xed,0xc3,0x67,0xdb,0xe6, +0xfd,0x37,0x63,0xb1,0x35,0xfc,0x7b,0x03,0x5b,0xd0,0x5a,0x30, +0x90,0xd1,0x65,0x2c,0x75,0x5c,0x75,0xd9,0xe4,0xaa,0xc7,0x61, +0x3f,0xfe,0x1b,0x4c,0x67,0xa3,0xaf,0x31,0xf8,0x7e,0x60,0x2c, +0x3e,0xd9,0xce,0x88,0xbf,0xc2,0x06,0xf2,0x3f,0x12,0x4a,0xf4, +0x99,0x78,0x33,0x95,0x4e,0xe6,0xe6,0x87,0x84,0x92,0x9b,0xe7, +0xdf,0xc0,0x82,0x49,0x38,0xfe,0xed,0xff,0x4e,0x45,0xf9,0x9e, +0x4e,0x85,0x90,0x04,0x0f,0xc9,0xfe,0x66,0xb7,0x6e,0xcf,0x1a, +0xeb,0xbd,0x7c,0x8e,0xc3,0x10,0xdd,0x31,0x0e,0x80,0x1a,0x59, +0x30,0xfd,0x15,0xfb,0x07,0x4e,0x27,0x0b,0xa7,0xbf,0x64,0x85, +0x22,0x5c,0x40,0x50,0xfd,0x2d,0xa8,0x7f,0xe0,0x3a,0x9e,0x31, +0x93,0x1d,0x1c,0x1d,0x45,0x66,0x4e,0x7f,0x4b,0xff,0xa4,0x4f, +0xa6,0xa0,0xfa,0x5f,0x2c,0x98,0x4e,0x80,0x19,0x53,0x70,0x06, +0x23,0x32,0xb8,0x88,0x84,0xd6,0x06,0x35,0x1d,0xae,0x72,0x0b, +0xf9,0x27,0xf9,0x83,0x06,0xd9,0x2b,0x48,0xda,0xfd,0xf8,0x77, +0x74,0xaa,0x6c,0x23,0xa5,0x44,0x8f,0x69,0xfb,0xe9,0x54,0x6d, +0x87,0x6c,0x12,0x63,0x18,0xa3,0x1d,0xae,0x51,0x2e,0xe5,0x84, +0x1c,0xb9,0x7f,0xb8,0x95,0x9b,0x71,0x94,0x44,0xfc,0x9f,0xdc, +0x8f,0x18,0x8a,0x9a,0x2d,0xd0,0x6c,0x3b,0xaa,0xe1,0xc8,0x21, +0x1a,0xe5,0xa2,0xc2,0xe2,0xca,0x82,0x26,0x4e,0x2c,0xe9,0x55, +0x4e,0x66,0x4b,0x6e,0xe7,0x3f,0x4d,0x7d,0xc9,0x29,0xbf,0xc0, +0x93,0xa4,0x0b,0xaf,0x81,0x5c,0x1f,0xe5,0x58,0x26,0x87,0x44, +0xd6,0x1d,0x47,0xad,0xc0,0xe9,0xa8,0x89,0xf3,0xa8,0x21,0x85, +0x35,0x30,0xe3,0x11,0x7c,0x96,0x0a,0x73,0xb8,0x70,0x71,0x0c, +0x6a,0x1a,0x52,0x5b,0xbe,0xb3,0x17,0x76,0xc2,0xae,0x4e,0xdc, +0x25,0x8c,0x91,0x2a,0xfb,0xe7,0x3e,0xa6,0x00,0x51,0x03,0x17, +0x54,0x35,0xf3,0xb8,0x03,0x16,0x2d,0x82,0xc9,0xae,0x30,0x86, +0x3e,0x28,0xd7,0x06,0x02,0x6b,0xc1,0xbc,0x53,0xea,0xa4,0x00, +0xe6,0x1d,0xf4,0x6d,0x2e,0xec,0xeb,0x42,0x27,0x36,0xb3,0x2e, +0xa3,0x3d,0xb6,0xc2,0x30,0x81,0x0f,0xb2,0xf2,0x35,0x74,0xa7, +0x6e,0x77,0x0d,0x93,0x59,0x9f,0xd4,0x10,0xdf,0xa8,0x48,0xe6, +0x1d,0xf1,0x13,0x7d,0x1c,0xb7,0x61,0x36,0xd7,0x39,0x13,0x72, +0xf4,0x31,0x07,0x39,0x39,0x70,0x28,0xb2,0x52,0xa2,0x85,0xcd, +0x91,0x24,0xea,0x58,0x3f,0x29,0x7d,0x5d,0xf2,0xaa,0x36,0xa4, +0x8b,0x77,0x08,0xb4,0x0f,0xb4,0x3d,0xc8,0xc1,0x0f,0x6f,0xd9, +0xbd,0x7b,0xca,0xcc,0xf2,0x4a,0xb2,0xcb,0xd3,0xcb,0x54,0xc5, +0xb7,0xdd,0xfd,0xc2,0xde,0x6e,0x56,0xdc,0x4b,0xdd,0x11,0xfd, +0x45,0x5d,0x9c,0x2b,0xe5,0x58,0xda,0x11,0x3a,0x08,0x5d,0x6a, +0x8d,0x0d,0x47,0xe2,0x5a,0xd4,0x85,0xb5,0xd4,0x91,0x1c,0x91, +0xaa,0x66,0x57,0x21,0xd5,0x8f,0x34,0xf6,0xd4,0xac,0xc3,0xcb, +0x7d,0x37,0x58,0xf4,0x9a,0x75,0x9b,0x74,0xd9,0x3a,0xf0,0x97, +0xb4,0x3a,0xb5,0x5a,0xb7,0xdb,0x4e,0xd5,0x5a,0xb2,0x64,0x45, +0xa5,0x05,0xff,0xf4,0xc9,0xb5,0xe7,0x8d,0xef,0x2a,0x0c,0xcb, +0x0d,0x4a,0x65,0xb5,0x35,0xbc,0xfd,0x75,0x9b,0xcb,0x56,0xfd, +0x85,0x3f,0xa6,0xfe,0x19,0x06,0x5f,0x70,0xdf,0x75,0xe3,0x56, +0x1a,0x9a,0x0b,0xf9,0x68,0x4a,0xa3,0x45,0x1d,0x1a,0x2d,0xc6, +0xc9,0x20,0x4e,0xbc,0x8d,0x46,0x6c,0xb2,0x9e,0x0a,0xac,0xfb, +0x3b,0x5a,0xbc,0x02,0xe3,0x7a,0x58,0x8a,0xbf,0x37,0x13,0xbb, +0x9f,0x14,0x3f,0x19,0xde,0xb1,0x70,0xe3,0x5b,0xb7,0xb6,0x2e, +0xad,0x5a,0x40,0x21,0xf4,0x70,0xe5,0x78,0x02,0x26,0xfa,0x68, +0x32,0xc4,0xbb,0x23,0x3e,0xa0,0xf8,0x2c,0x49,0xa6,0x02,0xa3, +0xfe,0xbe,0x74,0xe0,0x69,0x17,0x3b,0xb8,0xf3,0x35,0x09,0xb1, +0x3f,0x6c,0x7f,0xc8,0x81,0xc3,0xb5,0x83,0xdb,0x3b,0x95,0x63, +0x9f,0x88,0x8f,0xdb,0x85,0xc7,0x8f,0x87,0x5e,0x9f,0x88,0x37, +0xb6,0x32,0xb1,0xc6,0x2a,0xcd,0x1f,0x8c,0xb3,0xf0,0x2f,0x1a, +0x9c,0x27,0x54,0xc4,0x54,0x47,0x57,0x51,0x67,0xd5,0x21,0xa6, +0x1a,0x31,0x4a,0x0b,0xb1,0x80,0x78,0xfc,0xec,0xf0,0xca,0xe6, +0x5b,0xf3,0xbd,0x7c,0x95,0x46,0xc5,0xe2,0xbc,0xb9,0x54,0x48, +0x8c,0xa0,0x84,0x5c,0x12,0x46,0x31,0x65,0xcd,0xf9,0xed,0x99, +0x1d,0x46,0x69,0xbc,0x09,0x32,0x5b,0xa6,0xe3,0x84,0xe5,0x85, +0x06,0x7c,0x5d,0x41,0x65,0x71,0x49,0x39,0xa7,0x5c,0x84,0x47, +0xc9,0x9a,0xdc,0xf9,0x5d,0x9a,0x74,0x3a,0x5f,0x54,0xf0,0xa1, +0xdd,0x28,0x38,0xec,0x6f,0x0f,0xbc,0x7c,0xf8,0x5b,0x55,0xbd, +0x90,0x58,0xcd,0xa4,0x5d,0xa9,0x72,0x55,0xb4,0xf0,0x8b,0xd4, +0x87,0x3d,0x99,0xd7,0x70,0xee,0xeb,0xf9,0x30,0xc1,0x4e,0xb5, +0x2e,0x28,0x37,0x31,0xa2,0x3a,0x1d,0xe6,0xf1,0xfa,0x85,0x2a, +0x0e,0x10,0x40,0x8c,0x8a,0xd7,0x96,0x1b,0xa4,0x7a,0x58,0xf0, +0x7d,0x7e,0x77,0x5d,0xba,0xa8,0x1b,0x2c,0x1d,0xfc,0x8a,0x40, +0xbf,0x36,0x55,0xd0,0x18,0x70,0xda,0x85,0xcf,0x2f,0x5f,0x13, +0x7e,0xd8,0x79,0x19,0x9e,0xef,0xa2,0x22,0x32,0x46,0x79,0x4b, +0x79,0x83,0xe8,0x2d,0xc6,0x73,0x3f,0xeb,0xcd,0xc7,0xc0,0x1f, +0xe9,0xd1,0x18,0x63,0x18,0x83,0x2b,0xa9,0xad,0x5f,0x39,0x44, +0xdb,0xc1,0x88,0x1f,0x1b,0x4b,0x65,0xbb,0x81,0x52,0xd9,0x6e, +0xcd,0x07,0xc2,0xe2,0x73,0x38,0x8c,0x2a,0x19,0xfe,0x42,0x60, +0x3e,0xdc,0xa1,0xc1,0x53,0x0e,0x56,0xf6,0xc1,0x61,0x70,0xc3, +0x8a,0x7e,0xa8,0x80,0x10,0x29,0xff,0x9c,0x8d,0x53,0xa8,0x00, +0xc3,0x34,0x27,0x4b,0x2c,0x4c,0xb6,0xd8,0x02,0x52,0x6a,0xc1, +0xfc,0x5e,0x70,0x18,0x7c,0x86,0x0e,0x54,0x26,0x4a,0x95,0xcf, +0x89,0xc1,0xf4,0xf5,0xab,0xe6,0x6a,0x97,0x98,0xf0,0xbf,0xdf, +0x7a,0x4a,0xa3,0xb3,0xe1,0x9c,0x30,0x88,0x3d,0x84,0x46,0x42, +0xd3,0x20,0x55,0x82,0xdd,0x13,0xf5,0x70,0x22,0x9e,0x34,0x82, +0x93,0x34,0x5e,0xcb,0x30,0x14,0xd6,0xe2,0x57,0xe2,0x62,0x43, +0x61,0x31,0xa6,0x48,0x9b,0xcc,0x72,0x15,0x58,0xc3,0xd4,0x0c, +0x79,0xc8,0x58,0xf8,0xb2,0x93,0xc6,0x39,0x5f,0x51,0xe4,0x3d, +0x38,0x15,0x16,0x13,0xd9,0xf4,0x79,0xc8,0x4d,0xdb,0x5a,0xa8, +0xe0,0xeb,0x0a,0x4b,0xf2,0x73,0x0b,0x38,0x51,0xbb,0x47,0xf8, +0x86,0x2d,0xad,0x2d,0x6d,0x29,0xed,0xe6,0xba,0xc5,0x19,0xa4, +0x66,0x77,0xab,0x51,0xb1,0x75,0x4d,0x39,0xbf,0xbb,0x41,0xd1, +0x6e,0x57,0xcc,0x8d,0xb9,0x2f,0xdc,0x23,0x70,0xf6,0x02,0x64, +0x44,0x83,0x75,0x6a,0xc1,0xbe,0x7c,0x9f,0x1c,0x9f,0xd2,0x1a, +0x7e,0xf1,0x63,0x1c,0xfe,0x70,0x56,0xaf,0xa3,0x13,0xdf,0xe8, +0xd1,0xb2,0xbb,0xd9,0x19,0x27,0x04,0xe3,0xd2,0xe3,0xb8,0xea, +0x64,0x4b,0x47,0xdb,0xf5,0xb2,0x1e,0x59,0x1a,0xef,0xb8,0x4b, +0x7b,0xb5,0xbe,0x8c,0x3b,0x63,0x6b,0x77,0xc6,0x76,0xf2,0x33, +0xfc,0x82,0xe0,0x37,0xca,0xb5,0xf0,0x0d,0x2b,0x22,0x2a,0x08, +0xa8,0x0b,0x4d,0xa8,0xce,0x52,0x58,0x6c,0x44,0x4c,0xea,0x8c, +0xcb,0x0d,0x8b,0x5c,0xec,0xf9,0x76,0xd7,0x2e,0xfb,0x46,0x5b, +0x0e,0x75,0x56,0x10,0x87,0xe0,0x88,0x32,0x1a,0x01,0xe9,0xe1, +0x3a,0x76,0xd3,0x50,0xe1,0x4f,0x25,0xd3,0x10,0x9f,0x5a,0xa5, +0xfe,0x74,0xa8,0xf0,0x87,0x61,0x3b,0x61,0x1d,0xe9,0x31,0xe8, +0xd9,0x51,0xbd,0xad,0xb1,0x94,0xb7,0xba,0x23,0xbf,0x22,0xeb, +0xe2,0x06,0x4d,0x31,0x94,0x0c,0x5c,0xa9,0xbf,0x9d,0x73,0xdd, +0x2c,0x8b,0xf7,0xd1,0xb5,0xd2,0xdc,0x65,0xc4,0x8d,0x69,0x56, +0x7e,0x4c,0x60,0x7c,0x38,0x7c,0x19,0x05,0x1f,0xc7,0xc7,0x1c, +0x8c,0x3a,0x74,0xf1,0x50,0x7d,0x26,0xef,0xd6,0x69,0x7e,0xd9, +0xba,0xd1,0xde,0x87,0x4f,0xf1,0x93,0x68,0xf5,0x74,0x4f,0x6c, +0x3e,0xa1,0x71,0x2a,0xb7,0x32,0xab,0x3e,0xa3,0x59,0x91,0xc0, +0xef,0x33,0xf6,0x54,0xec,0xb6,0xf0,0x39,0xe3,0xf3,0xcd,0xbe, +0x33,0x9c,0xb2,0x0b,0x27,0x91,0xfa,0xc4,0x84,0x32,0xf5,0xab, +0xac,0x2c,0x51,0x65,0x25,0x7a,0xb0,0x5e,0x21,0x91,0x39,0xea, +0xa5,0xec,0xbb,0xb4,0x9f,0xf3,0x9f,0x57,0xfa,0xd6,0xf3,0xeb, +0x9d,0x16,0xef,0x5d,0xb4,0x9f,0xfb,0x53,0x86,0xb6,0xac,0x71, +0xba,0xcf,0x25,0x35,0x7c,0x85,0x4f,0x08,0x70,0x4c,0x59,0x42, +0x6a,0xbe,0x3a,0xdc,0xc2,0xf7,0x22,0xe9,0xa6,0x18,0x23,0x74, +0x3b,0x8e,0x61,0x61,0x0c,0x78,0x13,0x0c,0x6d,0x87,0x50,0x46, +0xd8,0x8d,0x8f,0x48,0x63,0x7c,0x62,0x85,0xfa,0x1d,0x56,0x96, +0xa4,0x32,0x97,0x86,0xae,0x5e,0x21,0xd1,0x39,0xea,0xcd,0x2c, +0x8c,0x48,0x7d,0x99,0xfb,0xb2,0xca,0xb7,0x81,0x5f,0xe5,0xb4, +0xc8,0x6b,0x7e,0xa0,0xf4,0xdd,0x3e,0x1f,0xbe,0x5b,0x74,0x87, +0x40,0x02,0xa1,0x32,0x0c,0x65,0x20,0x9e,0x86,0x8d,0x2d,0xee, +0x1d,0x8e,0xf5,0x0e,0xe5,0xd5,0xbc,0x79,0xb5,0x69,0xa9,0x71, +0x01,0x07,0x45,0x8b,0x48,0xb7,0x49,0x8f,0x6e,0xb5,0x6e,0x7d, +0x29,0x6f,0x7d,0x4d,0xde,0x23,0x6b,0xe1,0xc4,0x89,0xb8,0x8b, +0x38,0x06,0x47,0x94,0xa8,0xc3,0x57,0xfa,0xf8,0x15,0xab,0x91, +0x19,0xf0,0x40,0x0d,0xaa,0x99,0x86,0xb8,0x94,0x2a,0xfa,0xdb, +0x06,0xc9,0x2a,0x33,0x58,0xf1,0xb5,0x13,0x19,0xe8,0xae,0xbf, +0x9a,0xdb,0x67,0x9e,0xc3,0xfb,0x18,0x59,0x6a,0xef,0x32,0xa7, +0x66,0x81,0x3b,0x43,0x5c,0xb3,0x3d,0x1a,0x7c,0xae,0xb6,0xbf, +0xa9,0x82,0xd1,0x79,0x30,0xc5,0x28,0x9d,0xf7,0xc7,0x4f,0x3c, +0x66,0xd8,0x2f,0xdf,0xfb,0xf6,0x20,0x4c,0xfc,0x1a,0x16,0x70, +0x70,0xa4,0x09,0x8f,0x7c,0x68,0xd3,0x5b,0x77,0x15,0x7c,0x1b, +0xd1,0xf7,0xba,0xc1,0x0e,0x74,0xb7,0x00,0x77,0x2d,0x8c,0x37, +0x17,0xde,0x53,0x38,0xb0,0x35,0x1d,0x57,0x56,0xe1,0x18,0x9b, +0xad,0x26,0xfa,0x7a,0x56,0x65,0x16,0x7c,0x47,0x4d,0x53,0x7b, +0xd5,0xe5,0x2c,0xa3,0x7c,0xdb,0x92,0xbd,0xc5,0x6e,0xd5,0x71, +0x91,0x6d,0x99,0xb0,0x9e,0xb7,0xc8,0x56,0xb9,0x20,0x64,0x12, +0xb7,0x32,0xf3,0x3a,0xab,0x5c,0x17,0x37,0xbe,0xce,0xa3,0xc9, +0xa6,0xd0,0x99,0x1b,0xbc,0x24,0x7e,0x47,0x84,0xdb,0x0d,0xb8, +0xe4,0x1a,0x7c,0xd5,0x80,0x5f,0x5d,0xfa,0x15,0x42,0x45,0x7b, +0x0c,0x7d,0xa5,0x8b,0xaa,0x96,0xa0,0xba,0x13,0x17,0x31,0x10, +0x2b,0x7c,0x4a,0x4c,0x70,0x76,0x2b,0x0b,0x96,0x26,0xa4,0x15, +0x16,0x99,0xb0,0xe8,0x60,0x4f,0x0c,0x71,0x76,0x27,0x3d,0x63, +0x48,0x3a,0x61,0x91,0x21,0x3b,0xdb,0x96,0xa2,0xaa,0xa5,0x97, +0x58,0x58,0x8a,0x3b,0x09,0x2e,0xbd,0x06,0x4b,0x19,0x7f,0xdc, +0x40,0x5a,0xfc,0x3b,0xdd,0x6b,0x5d,0xf3,0x6a,0x79,0x9b,0x22, +0x79,0xbe,0x79,0x0a,0x47,0x1f,0xde,0x6c,0xf2,0x6d,0xde,0x95, +0xe2,0xd6,0x1a,0x67,0x2a,0x5c,0x4e,0x7a,0x7b,0x34,0xbc,0xe9, +0x4c,0xe8,0x0a,0xad,0xa4,0x15,0x6d,0x12,0xd8,0x6b,0xb0,0xa3, +0x15,0x77,0xdc,0x93,0x6d,0x42,0x0d,0x13,0xd0,0xd8,0xc9,0x1e, +0x42,0x6d,0x13,0xd8,0xc2,0x06,0x1a,0x59,0x38,0xe1,0x38,0x0b, +0xdc,0xf8,0x13,0x7f,0x24,0x22,0xf4,0x6c,0xf0,0xd1,0x90,0x60, +0x3e,0xf4,0x42,0x4c,0x4a,0x64,0x52,0x58,0x86,0xaa,0x74,0xc9, +0x66,0xe6,0x6c,0xcc,0x37,0xb1,0xf1,0x93,0x6a,0x60,0x59,0x2b, +0x2e,0x93,0xae,0xdf,0x42,0xaf,0xb3,0x63,0x83,0xbe,0x39,0x72, +0xe6,0x88,0x1a,0x9a,0x99,0x80,0x8c,0x09,0xd8,0x69,0x6a,0x85, +0x13,0xf5,0xf3,0x14,0xfc,0xdb,0xa6,0xe6,0xaa,0xd2,0x9a,0xa8, +0x98,0x6f,0xce,0xc6,0x1f,0x03,0xdd,0x69,0x7c,0x5e,0x5d,0x96, +0x35,0xcc,0xe8,0xab,0xac,0x88,0x95,0x1a,0x72,0xc6,0x2d,0x6c, +0xb3,0x86,0x99,0x1b,0xf3,0x5a,0x79,0x9c,0xd0,0x2f,0xaf,0x0e, +0xb8,0xce,0x89,0x59,0x83,0x63,0x49,0x9b,0x50,0xa1,0xb8,0x24, +0xac,0x1a,0x5c,0x26,0xae,0x92,0x0a,0xbb,0x93,0x89,0x58,0xf1, +0x8b,0x50,0xc1,0x88,0x15,0x34,0x00,0x17,0x2a,0x66,0x8a,0x15, +0x52,0x21,0xae,0x30,0x8f,0xb4,0x61,0x0a,0xbb,0xbf,0xe0,0x40, +0xd1,0xc1,0x22,0x0a,0xde,0xa5,0xde,0x8b,0xd1,0x79,0x51,0x79, +0x91,0xf9,0x9c,0xa0,0xd1,0x22,0xae,0x60,0xc2,0xb3,0x2e,0x64, +0x9f,0xcf,0x96,0x85,0xf1,0xa7,0xbc,0x4e,0xee,0x3d,0x41,0xd1, +0xf3,0x5f,0xa6,0xf0,0x92,0x39,0xee,0x11,0xe2,0x79,0xd4,0x93, +0x46,0xd1,0xa6,0x90,0xc8,0x1c,0x72,0x3b,0xe0,0xb6,0xdf,0x9d, +0xc3,0x4c,0x05,0x04,0x31,0xfa,0x1a,0x1b,0x76,0xce,0x90,0x95, +0x98,0xf3,0x7d,0x65,0xed,0x55,0x8d,0xb5,0x2d,0x7b,0x6a,0xbd, +0xea,0xdc,0x0a,0x6a,0x79,0xeb,0x22,0xdb,0x3c,0xdb,0xec,0xac, +0xdc,0xcc,0xdc,0xb4,0x7c,0x0e,0xba,0x99,0x54,0xaf,0xf4,0xbd, +0x99,0x3e,0x8e,0xee,0x36,0x5e,0x0a,0x8f,0x62,0x1b,0xbe,0x39, +0xaf,0xb1,0xa0,0xaa,0xb8,0xd1,0xba,0xc3,0xae,0xdf,0xa9,0xa0, +0x89,0x9f,0x76,0x69,0xcb,0x55,0xc3,0x1b,0x74,0xf6,0xdb,0x48, +0x4a,0x41,0x62,0x51,0x02,0x1d,0x1a,0x61,0x12,0xdc,0x12,0xdd, +0x52,0xdc,0xb9,0x35,0xd8,0x47,0xe3,0x2d,0x13,0x3d,0xfc,0x03, +0xc7,0x4a,0x34,0x9d,0xef,0x98,0xba,0xe4,0xa4,0x3a,0x75,0x18, +0xce,0xc6,0x84,0x5d,0x88,0x3e,0xa9,0x26,0x85,0x1c,0x99,0x2d, +0xf8,0x00,0xa6,0x05,0x85,0x1f,0x3b,0x1d,0x7a,0x54,0x15,0x97, +0x7d,0x4d,0x96,0x5a,0x2f,0xda,0x8d,0x8c,0x6b,0x86,0x21,0x0f, +0x2a,0xa5,0x3f,0x96,0xfd,0xd0,0x44,0x01,0xc1,0xa0,0x72,0x80, +0xc8,0x66,0xe2,0xf6,0xbf,0xe4,0x53,0x70,0xc3,0x5b,0xf9,0x4c, +0x0d,0xc5,0x5d,0x5c,0x4f,0xd1,0xd4,0xfa,0x47,0x6d,0x6b,0x99, +0xc1,0xd2,0x6e,0xd2,0xb9,0xbb,0xc1,0xb9,0xd1,0xbe,0xb8,0x9e, +0xb7,0xae,0x32,0xae,0x34,0x2e,0xe4,0x04,0x57,0x5c,0x4e,0x90, +0xc3,0x0d,0xc0,0xb1,0xb0,0x1f,0x39,0xaa,0xd5,0xb0,0x1d,0x39, +0x76,0x30,0x39,0x84,0xf4,0x39,0xf5,0x5a,0xb5,0x59,0x96,0xd5, +0xf3,0xe6,0x75,0x5a,0xcd,0xba,0xa5,0x1c,0x64,0x52,0xad,0xc7, +0x9a,0x1e,0x48,0xa0,0x08,0xe5,0x4a,0x0f,0x5c,0x01,0x7d,0x54, +0xe0,0xa7,0x6c,0x8c,0xa1,0xca,0x6b,0xa6,0x31,0x55,0xb2,0xc7, +0x6e,0xdd,0xa0,0x39,0x38,0x1b,0x35,0x59,0xa8,0xcb,0x20,0x78, +0xe4,0x35,0x1c,0x61,0x7a,0xe6,0x92,0xd7,0x70,0x66,0x2e,0x3b, +0x98,0x8b,0x7f,0x49,0xb4,0xbf,0xad,0x30,0x29,0xf7,0x9d,0x71, +0x2a,0xef,0x86,0x23,0x25,0xda,0xdf,0x39,0x74,0xd4,0x47,0x95, +0xdb,0xa4,0x0d,0x5d,0x59,0x81,0xfe,0xf2,0xc3,0x53,0x83,0xa7, +0x87,0x36,0xbc,0xa9,0x85,0xb1,0x85,0xc0,0xca,0x12,0x78,0x0f, +0x64,0x8c,0x71,0x9a,0xd9,0x0c,0xee,0xcc,0x81,0x03,0x67,0x02, +0x27,0x87,0xcb,0x60,0x4a,0x24,0x68,0x26,0xc0,0xc4,0x54,0xd5, +0xd8,0x7d,0x31,0xf4,0x5f,0x6b,0x3e,0x6f,0xf1,0xce,0xe0,0x4f, +0xfd,0xef,0xb9,0xc1,0x0d,0x68,0x48,0xb0,0xf7,0x00,0xce,0x30, +0xc2,0x4f,0xd4,0xda,0x1c,0xaa,0x5e,0xa6,0xbe,0x8a,0x82,0x85, +0xaa,0xb0,0x01,0x13,0x71,0x94,0xd4,0x9a,0xfe,0x15,0x53,0x9f, +0x9c,0xda,0xa8,0xae,0xac,0xc5,0x3c,0x1a,0x31,0x48,0x5d,0x2a, +0x56,0x81,0x9c,0xe2,0x0a,0x5c,0x27,0xee,0x24,0xe7,0x3b,0xce, +0xf6,0xdd,0x9c,0x04,0xab,0xa4,0x6c,0x42,0x6b,0x51,0x9d,0xf4, +0x40,0xaf,0xac,0x4f,0x58,0x2a,0x6a,0x8a,0x4b,0x59,0x41,0x05, +0xde,0x13,0x3c,0x89,0xbd,0x12,0x8d,0x9c,0x90,0x2f,0xbc,0x27, +0x5e,0xd7,0xac,0xef,0x3b,0xb6,0x59,0x78,0xf2,0x15,0x26,0xb5, +0x9b,0xf2,0xb6,0x71,0xe2,0x14,0x5d,0x82,0x6d,0x41,0x38,0xcb, +0x06,0x3f,0x52,0x6b,0x71,0x28,0x7a,0x91,0xf8,0x2a,0x52,0xfa, +0xed,0x71,0x18,0x3f,0x9f,0x89,0xd7,0x97,0x36,0xaf,0x92,0xa4, +0x9f,0x2e,0xc1,0x83,0xac,0xe0,0x31,0xe8,0x41,0xda,0x23,0xe1, +0xf3,0xac,0xbe,0xe4,0xe3,0xcd,0xfc,0xee,0x60,0xa3,0xa3,0x66, +0x21,0x1c,0x14,0xde,0x67,0xd3,0x70,0xe6,0x03,0x9c,0xf1,0x7a, +0x63,0x49,0x3d,0x6f,0x59,0x66,0xdf,0xec,0xde,0x59,0x99,0x5b, +0x5e,0x5a,0x50,0xec,0x52,0xca,0x7b,0xbb,0xbb,0xb9,0xbb,0x78, +0x1f,0xac,0x38,0x52,0x1d,0x5a,0xc3,0xc1,0x04,0x61,0x14,0xde, +0x18,0x5c,0xc4,0x04,0x9e,0x0e,0xfa,0xfa,0xe8,0x19,0x0e,0x7a, +0x95,0xc3,0xa5,0x8e,0xf8,0x4e,0x30,0x82,0x15,0x55,0xa5,0x64, +0xa5,0x4f,0xc1,0x00,0x3e,0x65,0x84,0x97,0xd2,0xee,0x15,0x47, +0xcf,0x73,0xac,0x18,0x89,0xb9,0xff,0x70,0x15,0x7e,0x8a,0x06, +0x0c,0x9c,0x82,0x79,0x04,0xa7,0x98,0x3e,0x41,0x7b,0x66,0xda, +0x5e,0xd9,0x0a,0x13,0xb5,0x6c,0xf9,0xd3,0xf6,0xac,0xfe,0x73, +0x0f,0xa9,0xfa,0x2d,0x3f,0x7f,0x79,0x31,0xcc,0x9b,0x0c,0x17, +0x98,0x98,0x4e,0x15,0x4c,0x60,0x70,0x8a,0xe2,0x31,0x70,0xea, +0x63,0x94,0x3b,0x95,0xb7,0x89,0xfe,0x42,0xcc,0x7b,0x29,0x5b, +0x88,0x27,0x8d,0xe1,0xe4,0x9c,0x9e,0x5f,0x21,0x6f,0x4e,0xef, +0xaf,0x10,0xdd,0x8e,0xd1,0x8c,0x0e,0xba,0x93,0x32,0x8f,0x72, +0xf7,0x32,0x37,0xfc,0xf2,0x08,0x4e,0x3f,0x86,0xcb,0x42,0x3b, +0x7b,0xbb,0xae,0xd4,0x5e,0x33,0xcc,0xe5,0xad,0x35,0x77,0xae, +0xd7,0xd8,0x6c,0x7d,0xc6,0xea,0xb4,0xe5,0x99,0x30,0x03,0x1e, +0xe2,0xa3,0xe0,0x44,0x34,0xb8,0x64,0xe6,0x7a,0x67,0xef,0xcd, +0xf2,0xaa,0xae,0xe2,0xb7,0x3e,0x58,0x74,0x7f,0xe5,0x55,0x4e, +0x34,0x1c,0x1c,0x47,0xea,0x85,0x56,0xab,0x3e,0x78,0x45,0x9f, +0xe8,0x2b,0x56,0xf8,0x17,0x94,0x11,0xd4,0x16,0x5b,0x41,0x9b, +0x62,0x96,0x72,0x1a,0xfd,0x5a,0x16,0x9b,0xe6,0x58,0x27,0x3b, +0x3b,0xf0,0x8d,0xfe,0xad,0x9e,0xd5,0x6e,0x9c,0xd8,0x8b,0xfd, +0xa4,0x17,0xca,0x98,0xfc,0xd2,0x9c,0xca,0xcc,0x3a,0xd3,0x4c, +0x5e,0x86,0xc3,0x56,0x2f,0x9b,0xba,0x2d,0xdf,0x84,0xaf,0xa5, +0x2a,0x58,0x5e,0xc6,0xc1,0x18,0x37,0x02,0xee,0x99,0x77,0xa6, +0xfe,0xb1,0x09,0xc6,0xed,0x53,0xad,0x0f,0xc9,0x8c,0x8f,0xaa, +0xca,0xfc,0x8b,0x57,0x64,0x7b,0xe3,0xb8,0x99,0x89,0x4b,0xbb, +0xb5,0x9e,0xa8,0xc2,0xbd,0xb2,0xd0,0x4e,0xfc,0xcb,0xde,0xb3, +0xd1,0xb7,0x2d,0xa8,0x5b,0x55,0x3f,0x28,0xde,0x38,0xcd,0x34, +0xdb,0x52,0x15,0x8d,0xfc,0x54,0x84,0xd9,0x62,0x2e,0xb9,0x5e, +0xd4,0x5b,0xd6,0xd5,0x68,0x57,0xc1,0x1b,0x59,0xe8,0x3a,0x6d, +0xdf,0x63,0x57,0xbd,0xa7,0xc9,0xbb,0x93,0x13,0xbe,0x68,0x17, +0x37,0xc2,0xc7,0x3a,0xf8,0xb1,0x38,0xd7,0x58,0x18,0xc9,0xac, +0xd2,0xc0,0xcf,0x64,0xb8,0xd6,0x2e,0xc3,0x98,0x7f,0x90,0x76, +0x2b,0xfb,0x72,0x01,0x87,0x53,0xa5,0x32,0x9b,0x13,0x36,0x27, +0xa3,0xe9,0x7d,0x6b,0xa6,0xc1,0x9c,0x6c,0x18,0x5b,0x10,0xda, +0xce,0x6f,0x38,0xb0,0xea,0xe0,0x82,0x20,0x0e,0xd6,0xb1,0x5d, +0xc5,0x8d,0x15,0x15,0x35,0x5c,0x38,0x73,0x45,0x4a,0x84,0xc0, +0xcf,0xc1,0x6f,0x63,0x6e,0x0b,0x3f,0xbb,0x64,0x43,0x95,0xae, +0xa4,0xd5,0xf9,0xca,0x64,0x62,0x99,0x6d,0x9e,0x66,0x13,0xe7, +0x61,0xc3,0xd7,0x1f,0x6c,0x0e,0xa8,0xd9,0xc7,0x89,0xdd,0x18, +0x48,0xfa,0xc0,0x86,0xc9,0x2f,0xc8,0x2d,0xc9,0xac,0x54,0xa4, +0xf2,0x46,0xab,0xe6,0x6f,0x98,0x6b,0x54,0x64,0xc9,0x57,0x65, +0x56,0xe5,0x94,0x17,0x52,0xf3,0xe2,0x41,0xc0,0x3b,0xe3,0xdb, +0x55,0x7f,0xc8,0x60,0x9c,0xbf,0x6a,0xf5,0xf1,0x8c,0x8b,0x51, +0x95,0x29,0x4f,0x78,0xd3,0x4c,0xbf,0xb9,0xd3,0x93,0x57,0x56, +0x6a,0xf5,0xa9,0xc2,0x40,0x51,0x68,0x2b,0x0a,0xce,0x9e,0x65, +0xfb,0x6a,0x0f,0x34,0xaa,0x1a,0x06,0x24,0xda,0xa5,0x39,0x66, +0xef,0x56,0x45,0x59,0x80,0x8a,0x90,0x22,0x0a,0x44,0x58,0x34, +0xa8,0x21,0x2e,0x62,0x95,0xc3,0xa1,0x9a,0x88,0x1d,0x03,0x42, +0x07,0x23,0x76,0xe0,0x27,0x44,0xe8,0xd8,0x26,0x76,0x30,0x96, +0x23,0x85,0x8e,0xad,0xf4,0x1d,0x67,0x49,0x74,0xa2,0x5f,0xa6, +0xc3,0xb0,0xe2,0x7b,0xa5,0x2e,0x35,0xfc,0x46,0xd7,0x59,0x9e, +0x38,0x61,0x3f,0x27,0xd4,0x95,0x92,0xdf,0xfd,0xe1,0xe3,0x3d, +0x6f,0x5c,0xf3,0x5b,0xf8,0x39,0x05,0x38,0xaa,0x60,0x6a,0x3a, +0x05,0xc4,0xf5,0x02,0xfc,0x9f,0x1c,0xcd,0xef,0xc4,0x20,0xf2, +0x2a,0x16,0xd4,0xd3,0xbe,0x4b,0x3b,0xde,0xc1,0x1b,0x1f,0xd1, +0x38,0xb2,0x35,0x98,0x83,0x0c,0x98,0xc8,0x36,0xe3,0xb4,0x77, +0xf8,0x15,0x38,0xae,0xce,0x6e,0xe7,0x57,0x15,0x69,0x57,0x9a, +0xd7,0x75,0x96,0x5d,0x6a,0xaf,0xa8,0xb1,0x2e,0xe5,0x9d,0xed, +0x0c,0xcc,0xe5,0xce,0xce,0xb5,0xde,0x0d,0x07,0x9a,0x39,0x88, +0x10,0x54,0xc4,0xf0,0xc1,0xaf,0x98,0xfd,0xa7,0x03,0xbe,0x0e, +0x3c,0x2d,0xd5,0x89,0xbc,0x26,0xb3,0x44,0xfe,0x0d,0x2b,0xf0, +0x54,0x0d,0xa6,0x89,0xfc,0x3b,0x36,0x59,0xbc,0xff,0xff,0x5e, +0xcc,0xd3,0x2f,0x9c,0x23,0x0a,0x08,0xc3,0x1f,0xa8,0xa9,0xa3, +0x11,0xec,0x5b,0xa6,0x26,0x31,0xa9,0x42,0x1d,0x02,0xc3,0xd9, +0xc4,0x65,0x30,0x62,0x21,0xac,0x5f,0x97,0xdd,0xcc,0x6b,0x16, +0xe9,0x97,0x9a,0x97,0x35,0x51,0xb7,0x5f,0xda,0x62,0x59,0xc4, +0xbb,0x59,0x9a,0x19,0x99,0xdb,0xcb,0x3b,0x5c,0x3b,0x4f,0xb5, +0x72,0x10,0x09,0x5f,0x3e,0x69,0x5f,0x0d,0x3c,0x5e,0xec,0x95, +0xe9,0xe3,0x59,0x05,0x9c,0xdb,0x88,0x15,0xc6,0x50,0xb1,0x96, +0xc1,0xf6,0xdf,0xfe,0x0f,0xd9,0x9b,0xf0,0x17,0xcc,0x21,0x1b, +0xd1,0xec,0x5b,0x16,0xdd,0x47,0x3e,0x02,0xb3,0xb5,0xac,0x38, +0x42,0x0c,0xfd,0x7f,0xad,0xec,0x19,0x54,0x17,0x3e,0x23,0xc5, +0x7b,0x5b,0x2c,0xf2,0x5c,0x2b,0x2a,0xf8,0xbd,0x85,0x8a,0x66, +0xd7,0x6c,0x0e,0x16,0xe0,0x44,0x62,0x60,0xb9,0xd8,0x64,0xed, +0xee,0x2c,0x53,0xfe,0x69,0xd9,0x8b,0xd6,0xfe,0x16,0x6e,0x8c, +0xf0,0x56,0xe9,0x40,0xf6,0xd7,0x7a,0x57,0x7a,0x97,0x98,0xf9, +0xf2,0xd9,0xbb,0x33,0x1d,0xd3,0x6c,0x38,0x58,0xa2,0x4d,0xc2, +0x30,0xfc,0x06,0xfa,0xc0,0x34,0x5c,0x54,0x5d,0xcb,0x6f,0xbf, +0x6f,0xfa,0x74,0xcf,0x2f,0xed,0x4d,0x2d,0x57,0x2b,0xae,0xd9, +0x14,0xf1,0x7b,0x64,0xb6,0x86,0x76,0x76,0x01,0xf7,0x83,0xbf, +0x3b,0xf3,0x9a,0x03,0x13,0xc9,0xfd,0x17,0x55,0x64,0xd6,0x64, +0x34,0x1b,0xa5,0xf2,0x7e,0xa6,0x9e,0xa6,0x0e,0xa6,0x1c,0x3e, +0x34,0x01,0x33,0xc6,0x56,0x73,0xa5,0x3e,0x0e,0x73,0xcc,0x34, +0xe7,0xdb,0x53,0x5b,0xf3,0xea,0x8b,0x93,0x7d,0xa4,0x7e,0x39, +0xa6,0x16,0x9a,0x16,0xeb,0x9d,0x33,0x4d,0xf8,0xc7,0xd5,0x37, +0x1a,0x9a,0x1a,0xe3,0xdd,0x62,0xdc,0x2e,0xba,0x6d,0x5a,0x34, +0x6b,0x3b,0xb2,0x66,0xe9,0x0a,0xea,0xd1,0x5a,0x7e,0xbf,0x7e, +0xed,0x31,0x17,0xe1,0x74,0xde,0xc9,0x71,0xd2,0xae,0xfd,0xbe, +0x72,0xb5,0xd5,0x4c,0xa2,0x91,0xca,0x13,0xe6,0x71,0x69,0xdd, +0x4b,0xd8,0x6c,0x0c,0xf3,0xe7,0x01,0x51,0x2f,0xcc,0xcb,0x2e, +0x4a,0x2a,0xe5,0xc4,0xe9,0x38,0x83,0x54,0xdc,0x6a,0x84,0x91, +0xa9,0xdf,0x71,0xf5,0x58,0xfc,0xa1,0x07,0xed,0x22,0xf6,0xd0, +0x36,0x73,0x1c,0x61,0xbd,0x92,0xbb,0xb2,0xb5,0x4a,0x43,0x63, +0x92,0x41,0x90,0x87,0x42,0xcd,0x86,0x89,0xde,0xa5,0xd2,0xc2, +0x0c,0x54,0xd5,0xbd,0xfb,0xc1,0xf6,0x91,0xbc,0x4f,0x7d,0xcc, +0x7b,0x1a,0x51,0x92,0x06,0xf1,0xd3,0x2e,0x78,0x02,0xde,0x6c, +0xcb,0xd1,0xb4,0xb0,0xe8,0xca,0xb4,0x67,0xbc,0x69,0x8a,0xef, +0xe2,0x45,0x09,0xcb,0xca,0xb6,0x75,0xa9,0x42,0x47,0x61,0x68, +0x0b,0xce,0x3b,0x94,0x5d,0x6a,0x99,0xeb,0x90,0x68,0x1b,0xaf, +0xea,0xee,0x50,0x77,0xa8,0x3a,0xb0,0xc2,0x57,0x15,0xf5,0x03, +0xbc,0x0a,0x7c,0x4b,0x0f,0x56,0xaa,0x9a,0xf8,0xc5,0xb9,0x26, +0x79,0xa4,0x79,0xa9,0xa2,0xf9,0xfe,0x48,0x53,0x38,0x98,0xd9, +0x60,0xd9,0xe3,0x7c,0x75,0xaf,0xaa,0x68,0x05,0x9b,0x99,0x8c, +0xf4,0xf4,0xcc,0xb4,0x5c,0xeb,0x3c,0x5e,0x67,0xed,0xc2,0x1d, +0x0b,0x6d,0xb2,0xcd,0xf9,0xa6,0xec,0x86,0x9c,0x9a,0x42,0x0e, +0x47,0xef,0xa2,0x91,0xd9,0x55,0x39,0xa2,0xa5,0x54,0x48,0xb4, +0xc8,0xfc,0xfd,0xf8,0x26,0x71,0x53,0x2f,0x2b,0x83,0x58,0x82, +0xe1,0x5d,0x10,0xce,0xf4,0xc8,0x49,0x17,0xa4,0xcb,0x59,0xf1, +0x81,0x0d,0x81,0x70,0x3d,0x0c,0x67,0xe0,0x4a,0x1f,0x81,0x74, +0x3d,0x4c,0x67,0x20,0x1a,0xaf,0x90,0x72,0xb7,0x0a,0xa7,0x7c, +0xdb,0xf6,0x3c,0x7e,0x4f,0xb5,0x5d,0x85,0x53,0x2e,0x37,0xb8, +0x1b,0x67,0x91,0xee,0x8a,0xca,0xaa,0xac,0x4a,0xb3,0x34,0xde, +0xdb,0xd5,0xde,0xd9,0x70,0x37,0x27,0x44,0x3d,0x21,0xe9,0x2e, +0xc9,0xce,0xf1,0x0e,0xbd,0xb1,0xfc,0xa1,0xea,0xfd,0x65,0xfb, +0x8a,0x39,0xcc,0x3e,0x4c,0x62,0x9d,0x22,0x5d,0xc3,0x6d,0x7a, +0x23,0xf8,0x13,0x75,0x21,0x65,0x41,0x34,0x18,0xfa,0x11,0x0c, +0x09,0x74,0x09,0x6b,0xd7,0x33,0xc9,0x45,0x49,0x95,0x31,0x12, +0x83,0xd9,0x72,0x36,0x32,0x3d,0x22,0x23,0x2c,0x43,0x11,0xc1, +0xfb,0xcf,0xb6,0x99,0xbf,0x73,0x63,0x99,0x0b,0x9f,0x90,0xac, +0x22,0x7c,0xe4,0x46,0xb0,0xe4,0x04,0xce,0x72,0xc4,0x49,0x6a, +0xcd,0x1e,0x2a,0x35,0x30,0x33,0x82,0xc6,0x8d,0x95,0x93,0x68, +0x34,0xf8,0xfb,0xe0,0x69,0x1c,0xc7,0xc6,0x1b,0xa9,0xfc,0xc5, +0xd4,0xc7,0xa4,0x35,0x50,0xaf,0x27,0x3a,0xb2,0x38,0x7f,0x05, +0x09,0xf1,0x0c,0x74,0xdc,0xef,0xca,0xe1,0x67,0x4c,0x4a,0x61, +0x72,0x71,0x7c,0xa9,0xb4,0xd9,0xdf,0x49,0xa0,0xa9,0x11,0xc7, +0xbd,0x83,0xe1,0x8d,0x38,0xfc,0xb5,0xd9,0xdc,0xa9,0x16,0x7f, +0x4e,0x93,0x62,0xcf,0x69,0xd4,0x7a,0xf1,0xf7,0x90,0x67,0xeb, +0x27,0x00,0xff,0x80,0xbe,0xa3,0x9d,0xc4,0x59,0x36,0xed,0x1e, +0x4e,0x93,0x4e,0x4d,0x7b,0x40,0xdf,0x21,0xe0,0x17,0x82,0x97, +0x5a,0xfb,0x61,0x3b,0x9c,0x61,0x71,0x3b,0x9a,0x4b,0xcb,0x11, +0x9f,0xe1,0x5c,0x56,0x5c,0x99,0x40,0x12,0x1d,0x12,0x6c,0xe2, +0x2c,0xaa,0x12,0xf8,0xa0,0xc6,0x83,0xb5,0x07,0xca,0x38,0xac, +0xc1,0xd3,0xa4,0xa8,0x3f,0xf3,0x71,0xf4,0x7d,0xeb,0x68,0xfe, +0xe8,0x36,0xbf,0xad,0x6e,0xfa,0x1c,0xf8,0x80,0x9c,0xc4,0x9b, +0xc6,0x18,0x45,0x69,0xd7,0xc7,0xf2,0xc1,0x97,0x0e,0x77,0x1e, +0x6a,0xe1,0x70,0x5c,0x10,0x89,0xd4,0x09,0xd3,0xdc,0x39,0xa9, +0x29,0xf2,0xf4,0xc0,0x89,0x6b,0x21,0x97,0x55,0xc7,0x40,0xb1, +0xf2,0x29,0x51,0xa0,0xb9,0x06,0x4e,0xc2,0x31,0xc8,0x95,0x1b, +0xf3,0x95,0x25,0x15,0x75,0x65,0x6d,0x9c,0xd8,0xd8,0xaf,0x9c, +0xcd,0x96,0x0c,0xe4,0x3f,0x4c,0xfb,0x9e,0x13,0x8a,0xa5,0x2d, +0xd2,0xaf,0x6e,0xce,0x00,0x0b,0x6b,0x08,0x82,0xb7,0x59,0xfc, +0xa9,0x1e,0x14,0x7c,0x54,0x8e,0xde,0x3e,0x71,0xef,0xde,0xa4, +0x5a,0x1d,0x2b,0x76,0x73,0xf8,0x86,0xd8,0x4d,0x6a,0xe8,0x1c, +0x74,0x41,0x06,0xee,0x09,0x8d,0x78,0xe2,0x2f,0xaa,0x61,0x4b, +0x56,0xaa,0x96,0x04,0xb4,0x9d,0x09,0xeb,0x49,0x02,0x2f,0x5e, +0x9e,0xa9,0xe2,0x2f,0x58,0x11,0xbd,0xe6,0x2d,0x35,0x3a,0x39, +0x7b,0xcc,0xf9,0xcb,0x5e,0x37,0x6d,0xba,0xad,0xa8,0x9a,0xbe, +0x56,0x1a,0x91,0x36,0x45,0xbb,0x61,0xab,0x0c,0x17,0x05,0xa1, +0x46,0x08,0x6a,0x85,0xde,0x7c,0x73,0xfd,0xcf,0x4e,0x18,0xae, +0x93,0xca,0x2b,0xa6,0xae,0xc7,0x31,0x2b,0x71,0x24,0xb2,0x5f, +0xf3,0x11,0x3a,0x10,0x13,0x05,0x09,0xd1,0xe0,0x9b,0xa5,0x9a, +0xbe,0x37,0xcd,0x2b,0xc5,0xab,0xa3,0x94,0xd7,0xf8,0x73,0xe6, +0x5f,0xb3,0xdf,0x70,0xe2,0xd6,0xc1,0x4e,0xd2,0x2a,0xb4,0x99, +0xf4,0x0b,0x4b,0x06,0xb7,0x8a,0x4b,0x58,0xe5,0x08,0xf8,0x93, +0xc6,0x6b,0x62,0x1b,0x84,0xb2,0x52,0x5f,0xd6,0x53,0xa4,0x4f, +0x5c,0x09,0x09,0x5a,0x98,0x20,0xce,0xd2,0x13,0x66,0xb2,0x21, +0x68,0x35,0x03,0x55,0xb1,0x15,0x37,0x94,0x52,0xf7,0x95,0x07, +0xcb,0x61,0x24,0x8c,0x4e,0x06,0x53,0x2e,0x82,0x49,0x42,0x13, +0x0a,0x70,0xc6,0x40,0x01,0x2e,0x2f,0xed,0xe6,0xb1,0x83,0x22, +0x2d,0x06,0x54,0x83,0x81,0x0e,0x16,0x32,0x95,0x26,0x24,0x7d, +0x77,0x9a,0x73,0xaa,0x7d,0x6b,0x1a,0x7f,0xb0,0x28,0x30,0x2f, +0x20,0x8f,0x93,0x8a,0x54,0x2a,0x99,0xb8,0x8c,0xe8,0x8c,0x8b, +0x99,0xc6,0xf1,0xfc,0x9e,0x8d,0xa6,0x9a,0xdb,0x0c,0xaa,0x1d, +0x79,0x0a,0x71,0x4a,0x73,0x2b,0x38,0xc1,0xaa,0x85,0xc4,0x64, +0x5e,0xcc,0x88,0xcc,0x34,0x8e,0xe5,0xf7,0x6d,0x76,0xd2,0x34, +0x92,0xd5,0xbb,0xf1,0x39,0xf9,0x19,0xc5,0xa9,0x25,0xdc,0x8f, +0x4c,0xc6,0xee,0x54,0xe7,0x34,0xfb,0x96,0x54,0xfe,0x60,0xf1, +0x81,0xa1,0x6f,0x33,0x68,0x61,0x96,0x8b,0x53,0x09,0xb8,0x0e, +0x06,0x9a,0xc0,0x2f,0x53,0xf1,0x2e,0x7b,0x5c,0x16,0xb0,0xc2, +0x4f,0x8b,0x83,0x1f,0x19,0x9d,0x4d,0x38,0xde,0x08,0xcd,0x8c, +0xa5,0x7d,0xdd,0x8b,0x77,0x7e,0xbf,0x54,0xf8,0x92,0x8b,0xc0, +0xd8,0x1e,0xc8,0x86,0x2b,0xcc,0x69,0x97,0xd3,0xee,0xa1,0x1e, +0xdc,0xee,0xe3,0x41,0xc7,0x1c,0x26,0xe3,0x44,0xa9,0x08,0x0a, +0xc6,0x30,0x8f,0x33,0xf2,0x7b,0xa2,0xd5,0x23,0x2b,0xc2,0xda, +0xaf,0x4e,0x12,0x47,0xc1,0x30,0x06,0x72,0x60,0x39,0x99,0x8a, +0x39,0x7f,0xb2,0x32,0x09,0x23,0x0f,0xc3,0x7a,0xf6,0x62,0x6e, +0x54,0x75,0x44,0x09,0x7d,0x14,0x51,0xca,0x5a,0x82,0x0f,0x84, +0x29,0xf0,0x80,0xc5,0x65,0x83,0x5f,0x10,0xd8,0xd9,0x8c,0x3b, +0x81,0x80,0x7d,0x8b,0x18,0x60,0x0a,0x3e,0xf8,0x98,0xd1,0x4c, +0x73,0x19,0x78,0x33,0xe9,0x92,0xa1,0x1e,0x3b,0xc5,0xdb,0x6c, +0x9b,0xb9,0x9a,0x72,0xc4,0x0c,0xf8,0x1c,0x48,0x9b,0xb8,0x48, +0x01,0xaa,0xf8,0xf9,0xcc,0x41,0x79,0xfb,0x15,0xa8,0x66,0xd3, +0xcc,0xef,0xb6,0xe6,0xd6,0x87,0x3d,0x57,0x0d,0x67,0x56,0x9c, +0x6f,0x59,0x0b,0xfc,0x64,0x70,0x65,0x2e,0x36,0xab,0xa0,0x27, +0xf3,0x46,0x39,0x93,0x6a,0xd8,0x0f,0x50,0xc2,0x88,0xb7,0x4e, +0x10,0xfc,0xdc,0x1a,0x3e,0x67,0xe1,0x47,0xe4,0x09,0x94,0x2c, +0xc1,0x12,0xa9,0x1b,0xf0,0x54,0x62,0x95,0xe2,0x5b,0xa5,0x56, +0x3e,0x0d,0x4f,0xdf,0x63,0x72,0xbc,0x55,0xda,0x6e,0x27,0xfc, +0x0c,0xd3,0x26,0xd5,0x31,0x8b,0x8e,0x93,0x29,0x47,0x57,0x38, +0xc9,0xd4,0x20,0x9e,0xc6,0xda,0x1a,0xe8,0x44,0x7c,0x43,0x23, +0x73,0xd5,0x41,0xa3,0x4d,0xa2,0x6a,0x39,0x8d,0xf6,0x04,0x4e, +0x23,0x3d,0x60,0xc6,0x3c,0x53,0xd6,0x10,0xbc,0x2a,0x0c,0x83, +0xab,0xec,0x13,0x9c,0x44,0x44,0x1b,0x41,0x4d,0xb0,0x41,0x23, +0x36,0x36,0x37,0x26,0x27,0x9a,0x3a,0x0c,0x9d,0x26,0xd1,0xc4, +0x1c,0x1c,0x99,0x60,0xef,0xa3,0x7b,0x8f,0x78,0x71,0x62,0xc1, +0x39,0xf2,0x08,0x22,0xd6,0xb2,0x18,0x41,0x07,0xf2,0x04,0x22, +0x56,0xb3,0xa0,0x38,0x41,0x9e,0x43,0xf1,0x72,0x16,0x8b,0x71, +0xf2,0x87,0x23,0xb1,0x5a,0xea,0x40,0x36,0xb5,0x09,0xa7,0xc2, +0x04,0x58,0xde,0x22,0x6a,0x4b,0x53,0xf2,0x1d,0xa3,0x5d,0xe8, +0xd9,0xfb,0x62,0xd2,0x8f,0xf2,0xa5,0x2c,0x32,0x1e,0xfa,0x7a, +0x76,0x6a,0xa9,0xdb,0xaf,0x35,0x67,0x76,0x86,0x3f,0xa0,0xbe, +0x6b,0x46,0xf4,0x93,0x1d,0xa0,0x3f,0x59,0x48,0x67,0x22,0x3a, +0x54,0xc4,0x02,0xc6,0xc9,0xed,0x7c,0x84,0x97,0x3a,0x24,0xc2, +0x49,0xf2,0x23,0x14,0x2f,0x66,0x45,0x82,0xfe,0x64,0x20,0xeb, +0x66,0x75,0x67,0xc7,0xee,0x72,0xde,0xd2,0x56,0xd3,0x46,0xd3, +0x87,0x83,0xb6,0xeb,0xa4,0xdb,0xeb,0x9a,0x4d,0x95,0x63,0x71, +0x2d,0x6f,0x59,0xb1,0xab,0x5a,0x9e,0x43,0x03,0x59,0x3d,0xa5, +0x3f,0x69,0x12,0xbf,0xea,0xdf,0xa1,0x23,0x8e,0xa2,0x68,0x1b, +0xab,0x0f,0xe2,0xaa,0x5d,0x12,0xef,0x9d,0xa5,0xca,0x4d,0x98, +0x9e,0x04,0x7a,0xd0,0x3e,0x09,0xb4,0x58,0x65,0x8a,0xd8,0x49, +0x06,0x47,0x15,0x08,0x95,0xb0,0x19,0xaf,0x33,0x11,0xd1,0x91, +0xb1,0xe1,0x31,0x9c,0x30,0xbc,0x18,0x1d,0xeb,0x40,0xa7,0x08, +0x75,0x2a,0x40,0xbb,0x08,0xb5,0x2b,0xc0,0xa6,0x18,0xb5,0x99, +0xc8,0x8b,0x11,0x51,0xe1,0xd1,0xa6,0x17,0xf9,0xd0,0x23,0xc7, +0x8e,0x84,0x1c,0xe1,0x70,0x29,0x13,0x19,0x1d,0x1e,0x1d,0x1e, +0x65,0x16,0xcd,0xef,0xd1,0x32,0x33,0xdd,0x66,0x9e,0x63,0xcb, +0xe7,0xa4,0x66,0xa5,0x67,0x64,0x71,0xb8,0xa6,0x85,0x3d,0x79, +0x34,0xf4,0xe8,0xb1,0xa3,0x12,0x93,0x7b,0xbf,0xf0,0x2b,0x73, +0xc6,0xe7,0x6b,0xaf,0x50,0x6f,0xee,0xc0,0x89,0x63,0xc7,0xbd, +0x26,0x1b,0x31,0x61,0xe7,0x0e,0x94,0xf8,0x15,0xfb,0x67,0xa8, +0xda,0x1e,0x4a,0xf5,0xc9,0x70,0x4b,0x76,0x56,0xcd,0x8e,0xb9, +0xb8,0x5b,0xe5,0x2e,0xd3,0x9a,0x9a,0x5c,0x7a,0x51,0xfd,0x62, +0xd9,0x85,0xaa,0x73,0xcd,0x9c,0xf8,0xa6,0x48,0x39,0x8a,0x11, +0x05,0xe1,0x00,0x49,0xcf,0x49,0xcd,0x4d,0xcc,0x55,0xc4,0xf0, +0x2e,0xda,0x46,0xba,0x5b,0xcd,0xb3,0x6c,0xf8,0xec,0x94,0xac, +0xb4,0xcc,0x4c,0x0e,0x17,0xb4,0xb3,0xf0,0x1c,0x82,0x88,0x23, +0x6e,0x28,0x61,0xcf,0x9e,0x3b,0x4b,0xff,0xe3,0xbe,0x46,0x86, +0x54,0xc0,0x06,0x6a,0x72,0x37,0xac,0x27,0x75,0xb0,0xc1,0x9a, +0x85,0x09,0x38,0x8c,0xb8,0x8b,0x81,0x05,0xac,0x10,0xa8,0x4d, +0xdc,0xc4,0xc0,0x22,0x16,0x55,0x50,0x24,0x65,0x35,0xd9,0xb5, +0x71,0x15,0x16,0x71,0x7c,0x90,0xcb,0x5e,0x1b,0x57,0x17,0x0e, +0x5e,0xbf,0x24,0x09,0x7b,0x13,0x1d,0x63,0x1d,0x1a,0xe3,0xf9, +0xa3,0xe5,0x81,0xe5,0x07,0x73,0x38,0x34,0x3f,0x46,0x2e,0xee, +0x89,0xb4,0x0e,0x73,0x68,0xbf,0xc8,0x9f,0xac,0x0a,0xa9,0x0e, +0x29,0xa0,0x90,0x74,0xac,0xf2,0x02,0xb9,0xab,0xab,0x81,0x95, +0x0a,0xe5,0x8c,0x36,0x76,0xf0,0xd7,0x0c,0xd2,0xe1,0x52,0xef, +0xdc,0x60,0x4b,0x23,0x4b,0x9b,0x2a,0x45,0x95,0xa2,0x88,0x53, +0x7e,0x8a,0x09,0x24,0xb5,0x24,0xa9,0x22,0xb6,0xd4,0x24,0x85, +0x3f,0xe2,0xb4,0xdf,0xc2,0xc7,0x86,0x13,0x97,0x19,0x2b,0x35, +0xda,0x19,0x51,0x96,0x4e,0x8e,0x96,0x04,0x56,0x06,0xe6,0x29, +0x0e,0xf0,0xc9,0x1e,0xf4,0x07,0x77,0x73,0xe2,0x66,0x5f,0x72, +0xc9,0xa1,0xcf,0xa2,0xdd,0xbc,0xac,0x96,0x37,0x6f,0xd8,0xde, +0xaa,0x53,0xce,0x41,0x3c,0xce,0x21,0xe2,0x92,0xae,0x3e,0x30, +0xdc,0xc9,0xca,0x52,0x5d,0x1e,0xa9,0x81,0x13,0x53,0x9d,0x98, +0x58,0xa5,0xfe,0x3b,0xab,0x88,0x57,0x81,0x17,0x2c,0x0e,0x98, +0x90,0x05,0x68,0xf8,0x8a,0x85,0xb3,0x13,0xc0,0x72,0x01,0x5a, +0x32,0x62,0x85,0x38,0x9c,0x5c,0x87,0x61,0x4d,0x30,0x39,0xfb, +0x9d,0x71,0x0a,0x8d,0x20,0x47,0xda,0xe2,0x27,0xbb,0xe6,0x70, +0xf0,0x0b,0xe4,0x10,0x30,0x9c,0x43,0x03,0x3c,0xc1,0x68,0x02, +0x5a,0xfe,0x0a,0x96,0x0c,0xce,0xc7,0x38,0xe2,0x7a,0x24,0xaa, +0x58,0xfd,0x32,0x5c,0xc4,0x11,0x34,0xb8,0xb3,0x51,0x86,0x91, +0x01,0xf9,0x76,0x9c,0x66,0x02,0x3f,0xb7,0xb2,0xd0,0x31,0x98, +0x40,0x70,0x19,0xe3,0x1c,0x1a,0x51,0xa2,0xfe,0x2d,0x1c,0xa8, +0xc7,0x03,0x37,0xc1,0xaf,0x01,0xfd,0x06,0x20,0xa0,0x01,0x03, +0x06,0x20,0x18,0x74,0x30,0x64,0x00,0xc2,0x9a,0x30,0xec,0x8a, +0x11,0x1e,0x81,0xe3,0x2b,0xf1,0x98,0xe8,0xcf,0x6a,0xa6,0xfa, +0xdf,0x55,0x83,0xc5,0x4c,0x79,0x4a,0xbc,0xb4,0xae,0x66,0x1a, +0x4f,0xf1,0x98,0x72,0x12,0xb1,0xab,0x30,0xaf,0x34,0x2f,0xd8, +0x63,0xcd,0xb7,0xb8,0xd6,0xb8,0xd4,0xda,0x73,0x90,0x9f,0x4e, +0x82,0xcd,0x0e,0x9a,0xf9,0x5b,0x73,0x12,0x79,0x90,0xd8,0x32, +0x8d,0x49,0xae,0x8e,0x6f,0x88,0xae,0xe1,0x70,0xf9,0x14,0x12, +0x52,0x79,0xa4,0xea,0x70,0x89,0x55,0x10,0x1f,0xeb,0x1a,0xeb, +0x70,0xd1,0x81,0x9b,0x31,0x87,0xd8,0xd4,0xe8,0x35,0xcb,0xa5, +0xc2,0x85,0x76,0xe7,0x2e,0xcb,0x46,0x8a,0xd2,0x78,0xf1,0x18, +0x01,0x63,0x30,0xc2,0xf1,0xf8,0x11,0x1b,0x63,0x4a,0x03,0xf1, +0xf2,0xe4,0xa4,0x52,0x75,0xc1,0x00,0xbb,0xc4,0x48,0x3a,0x29, +0xc2,0x68,0x82,0x46,0x4f,0xc0,0x88,0x11,0x37,0x89,0x66,0xff, +0xff,0xd3,0x52,0x0a,0x85,0x04,0x8c,0x56,0xa0,0x11,0x23,0x35, +0xf6,0x9b,0x46,0x7e,0xa5,0x02,0x25,0xe0,0x6f,0x2f,0x85,0xd5, +0xed,0xe2,0xea,0xe7,0xda,0x18,0x82,0xd4,0x85,0xc1,0xad,0x39, +0xe2,0x62,0x23,0x61,0x31,0xae,0xb8,0x0c,0x2b,0x04,0x8d,0x0e, +0x16,0x97,0x40,0x17,0x11,0x7f,0xf8,0x59,0xf8,0x81,0xc1,0x39, +0x23,0x67,0x8b,0x3f,0xfc,0x46,0xbd,0x87,0x65,0x31,0xd1,0xf8, +0xdd,0x0c,0x3e,0x76,0x87,0x51,0x6d,0xcd,0x5d,0xb7,0xca,0xfa, +0xac,0x8b,0x78,0x77,0x63,0x1b,0x43,0x7b,0xfb,0xfd,0x6f,0x8f, +0xff,0x7e,0xee,0x37,0x0e,0xe4,0x6d,0xe2,0x7d,0x05,0x78,0x33, +0xd6,0x5b,0x17,0x6b,0x4c,0x53,0x50,0x24,0xd4,0x9c,0xd3,0x5c, +0x54,0x57,0x96,0xe2,0x9e,0xb4,0x27,0xc1,0x55,0x26,0x5b,0xa5, +0xbb,0xc8,0x8a,0x9e,0x7c,0x5e,0xf7,0xa4,0xbb,0xb7,0x27,0xce, +0x29,0xc6,0xe1,0xa2,0xbd,0xc6,0xea,0xe9,0x6b,0x71,0xec,0xae, +0x1c,0x53,0x1e,0xb8,0xde,0x37,0xf7,0x06,0xee,0x72,0x61,0x8e, +0xe7,0x1d,0xec,0x27,0x2d,0xf6,0x74,0xd7,0x52,0x5b,0xc3,0x24, +0xc9,0x55,0x06,0x98,0xb7,0x8d,0xad,0xa0,0x0a,0x3a,0x32,0x30, +0x58,0x01,0xbc,0x7a,0x69,0x49,0x7e,0x79,0x6a,0x05,0xd7,0xcc, +0x9c,0xc2,0xf3,0x5d,0x58,0x03,0x2b,0xd1,0x8d,0x1b,0xcc,0x2a, +0x27,0xef,0xc0,0x48,0xf9,0x25,0x9e,0x93,0xb2,0x37,0x8c,0xa4, +0xec,0x0d,0x55,0xa1,0x10,0x54,0x99,0x31,0xca,0xbf,0x94,0xab, +0x09,0x8e,0xef,0x05,0x99,0x38,0xfb,0xad,0xce,0x4c,0x71,0x22, +0xca,0x7a,0x61,0x3c,0x2b,0x4c,0x1d,0x9c,0x4d,0x74,0x02,0x63, +0x3b,0xd5,0x61,0x1b,0x55,0x9b,0xf2,0x13,0x3d,0xa2,0xaf,0x93, +0x0a,0x2c,0x60,0xe1,0xd3,0x54,0x50,0xc9,0x7e,0x53,0xba,0xa7, +0x91,0xc7,0x5d,0xbb,0x30,0xd0,0x15,0x7d,0x02,0x13,0x0d,0xf9, +0x27,0x91,0x4f,0xa3,0x1e,0xc5,0x72,0x52,0xde,0xc7,0x1d,0x9f, +0x30,0x19,0x0c,0x64,0xa9,0xe0,0x2e,0x76,0x75,0xa1,0xeb,0xef, +0x6a,0xf0,0x8c,0xa9,0x4e,0x4e,0xae,0x51,0xa7,0x17,0xeb,0xc7, +0xa9,0xa0,0xd4,0xd3,0xc0,0x4e,0xf9,0x80,0xa0,0x1e,0x2e,0x96, +0xc3,0x62,0x3c,0xcf,0x1a,0x1e,0x34,0x3a,0xac,0x90,0x9a,0x95, +0x36,0x45,0xb7,0xc6,0xb5,0x26,0x70,0x58,0x42,0x63,0xc6,0x44, +0x3d,0x29,0x69,0xb5,0x39,0x49,0x4a,0xfe,0x6c,0x64,0xeb,0xe2, +0x6b,0x13,0x6b,0x92,0x42,0x3a,0x78,0xc7,0x43,0xf6,0x41,0x76, +0x43,0xc5,0x3d,0xb3,0xba,0x70,0x16,0xe8,0xb1,0x82,0xf1,0xe0, +0x65,0x62,0x7e,0x38,0xae,0xe5,0x8c,0x54,0xbe,0x03,0xed,0xc5, +0x27,0x7a,0xb1,0xd1,0x55,0x05,0xbe,0x61,0x7f,0x4e,0xf9,0x25, +0xfb,0x5e,0x81,0x47,0x3b,0x8f,0x63,0xcd,0x71,0x9b,0x13,0xae, +0x09,0x88,0x93,0xf1,0xb5,0xe1,0xcd,0x11,0xcd,0x51,0x1c,0x9e, +0x64,0x71,0xc5,0x81,0x08,0x19,0x2c,0x4c,0x52,0xc1,0x66,0x76, +0x5d,0xa1,0xcb,0x43,0x35,0x58,0xc9,0xb4,0x27,0xa5,0x34,0xab, +0x83,0x95,0x94,0x7f,0x85,0x01,0xac,0xd4,0xe5,0x66,0x15,0xb1, +0x0d,0x94,0x9a,0xa9,0x72,0x70,0x00,0x66,0x77,0xe1,0x6c,0xa9, +0xd5,0xed,0x2e,0x5c,0x2a,0x87,0xa5,0xf8,0x0d,0x2b,0x3f,0x68, +0x18,0xa4,0x08,0x8e,0x96,0xf1,0xcd,0x31,0xad,0xb1,0x6d,0x43, +0x19,0x07,0xd3,0xff,0x1e,0x78,0xeb,0xd0,0x37,0xd5,0xb2,0xcd, +0x89,0xcd,0xc9,0x0d,0xa9,0x9c,0x70,0xa0,0x89,0x08,0xa3,0x45, +0x1d,0xbc,0xc5,0xa2,0x8b,0x0f,0xce,0x99,0x86,0x53,0xd4,0xea, +0x6d,0x7f,0x87,0x69,0xa5,0x52,0xce,0x92,0xae,0x2a,0x55,0x96, +0x14,0xd4,0xb9,0x81,0x1a,0x30,0x1d,0x27,0x4a,0x54,0xa1,0xe3, +0xe0,0xa3,0x1d,0x30,0xfb,0x20,0x68,0x72,0xbf,0xc3,0x4d,0x82, +0x71,0x78,0x13,0xe2,0xe8,0x80,0x16,0xd1,0x01,0xd9,0x04,0x5a, +0x05,0x5a,0x0c,0x0d,0x68,0x5e,0x17,0xce,0x83,0x5d,0xfa,0x74, +0x40,0xcb,0xe5,0xb0,0x7c,0x68,0x40,0xf2,0x20,0x63,0x69,0x40, +0x2d,0x31,0x6d,0x71,0x6d,0x09,0xd2,0x80,0x66,0xb2,0x49,0x74, +0x40,0x9f,0x30,0x2d,0x7f,0x0f,0xa8,0x85,0x0e,0xa8,0x91,0x0e, +0x28,0x4f,0xd8,0x4a,0xc4,0x36,0x19,0x0d,0x51,0xdc,0x71,0xd3, +0x5a,0xb4,0xc7,0xe9,0xb8,0xb8,0x4c,0xc1,0x57,0xd5,0x96,0xb7, +0x96,0x74,0x73,0xe2,0xd8,0x9e,0xeb,0x50,0xbf,0xa3,0x57,0x48, +0xc1,0x1f,0xd9,0x8a,0x1f,0x0a,0x7e,0x49,0xfa,0x99,0x83,0x26, +0x46,0x9c,0x3d,0xb8,0x96,0x50,0x05,0xa9,0xc7,0xe7,0xf4,0x29, +0x3e,0x54,0x5a,0x10,0xc3,0xda,0x6d,0xb5,0x3b,0x0a,0xdd,0xcd, +0xf8,0x1b,0xbb,0x2f,0x3b,0xf6,0x58,0x73,0xc2,0xaf,0x78,0x56, +0xba,0xd3,0x08,0xbc,0xce,0xa2,0x97,0x0f,0xaa,0xaf,0xc4,0x59, +0x6a,0xcd,0x76,0xdf,0xc1,0xac,0x02,0x58,0x74,0x1e,0xf4,0x54, +0x41,0x97,0xc9,0x42,0xad,0xc7,0xf4,0x4e,0x29,0x96,0x2c,0x6b, +0x93,0x48,0x51,0x47,0xae,0x81,0x39,0xfe,0xa0,0xc1,0x81,0x3a, +0x0c,0x10,0x8c,0x12,0x27,0x40,0x94,0x94,0x57,0x9f,0x44,0xe4, +0x75,0x9b,0xfe,0x3f,0xca,0xde,0x03,0xac,0x8a,0xab,0x6b,0x1b, +0xd6,0x08,0x33,0x13,0x8d,0x25,0xea,0x26,0x03,0x46,0x50,0xec, +0x5d,0x63,0xef,0x62,0x57,0xa4,0x1e,0x38,0xf4,0x22,0x1d,0x11, +0x2c,0xa0,0xd8,0x90,0xae,0x68,0x54,0xa4,0xf7,0xde,0x8b,0x34, +0xe9,0xbd,0x83,0xd8,0x7b,0xd7,0x44,0x13,0x63,0x34,0xc6,0xd8, +0xb2,0xe6,0xb8,0xe6,0x3c,0xcf,0xbf,0x07,0xf3,0xbc,0xef,0xf7, +0xff,0xff,0xfb,0x7d,0xd7,0xff,0x5f,0x5e,0xd7,0x38,0x1e,0xe7, +0x9c,0x3d,0xb3,0x67,0xaf,0xb5,0xee,0x7b,0xef,0xb5,0xef,0xd5, +0xb8,0xae,0x84,0xfe,0xf8,0x2d,0x97,0xab,0x76,0x17,0xad,0x38, +0x5f,0x54,0x25,0x0e,0xf8,0x95,0x0c,0xb9,0x95,0xd3,0x9b,0xec, +0xf9,0x07,0x1f,0x2e,0x02,0x5f,0xfe,0x89,0xc2,0xad,0x2a,0x4a, +0xe1,0xac,0xaa,0x0c,0x2b,0x8d,0x8a,0x76,0x58,0xf2,0x3d,0x6e, +0xad,0xce,0xcd,0xdb,0xb9,0x1e,0xd0,0x22,0x56,0xb0,0x7f,0x2d, +0x7a,0xd8,0x82,0xc7,0x4a,0x3c,0x64,0x03,0xe7,0x29,0xe2,0x28, +0x55,0xb3,0x82,0xe0,0xb5,0xe8,0x6b,0x0b,0xbe,0x2b,0xf1,0xb8, +0x0d,0xb4,0xd2,0xcf,0x94,0xb3,0xf1,0x2d,0x91,0xd7,0xad,0x6d, +0xde,0x54,0x46,0xbf,0x7e,0xc5,0xf9,0x92,0x75,0xb7,0x15,0x27, +0x58,0x88,0x13,0x69,0xf0,0x3d,0x52,0x87,0x47,0x9e,0xc0,0x91, +0x7a,0xe9,0x18,0x53,0x8f,0xa7,0xd9,0xa4,0xcc,0x94,0xc2,0xd8, +0x6c,0xa3,0x04,0x3e,0x60,0xd7,0xa1,0x1d,0x3e,0x1e,0x1c,0xea, +0x33,0x89,0xd9,0xf1,0x39,0x71,0xb9,0x96,0xc9,0xbc,0xeb,0x72, +0xd9,0xf2,0x55,0x9b,0x4d,0x32,0x79,0x17,0x49,0x07,0xf3,0xeb, +0x75,0xd3,0x9a,0xb6,0xf3,0x37,0xde,0x75,0xc2,0xe8,0xe2,0xf7, +0x85,0x4e,0x7c,0x4e,0x76,0x56,0x76,0x46,0x36,0x27,0x8e,0xea, +0xaa,0x11,0xb2,0x1b,0x59,0x31,0x1b,0xd2,0xc9,0x13,0xb0,0x5f, +0x22,0x41,0x7b,0xb5,0x2f,0x67,0x36,0x2a,0x73,0xd0,0xfe,0x37, +0xea,0x4a,0xe4,0x25,0x64,0xcd,0x07,0x0b,0xe0,0x3c,0x60,0x68, +0x7b,0x4b,0xc7,0xcd,0xb2,0x5e,0xca,0x39,0x77,0x9a,0xda,0xca, +0xb6,0xdb,0xfb,0xfe,0xf5,0xc5,0x95,0xe8,0xb7,0x89,0xd7,0x4c, +0x61,0x07,0x63,0xbf,0x76,0xee,0xaa,0x09,0xa6,0x79,0x96,0x7c, +0x63,0x6e,0xd3,0xb9,0xda,0xf2,0xd4,0x9d,0x29,0xee,0x49,0xee, +0x86,0x06,0x8b,0x75,0xe7,0xd9,0xe4,0x59,0xf0,0x3f,0xd5,0x3d, +0xe9,0xea,0xee,0xed,0x77,0x25,0x0e,0x3a,0x8b,0x26,0x2e,0xc5, +0x6f,0xfa,0x5d,0x89,0x6a,0xef,0xdb,0xfb,0x57,0xef,0x48,0xae, +0x64,0xfb,0x76,0x8d,0xb9,0x92,0x2b,0x59,0x2e,0xb9,0x92,0xab, +0xcc,0xdb,0xa6,0x16,0xd0,0x80,0x2d,0xd4,0x95,0x2c,0x04,0x0d, +0xad,0xd2,0xd2,0xc2,0xf2,0xf4,0x4a,0xae,0x49,0x72,0x25,0x9d, +0x58,0x0d,0x3f,0xa0,0x87,0x24,0x51,0xbf,0x9b,0x38,0x1e,0x72, +0x38,0xb4,0x9d,0x0e,0xc1,0xfc,0x4f,0x9d,0xe3,0x21,0x18,0x06, +0x75,0xe2,0x79,0x63,0x60,0x31,0x78,0x9c,0xf1,0xdf,0xd8,0xc4, +0x3a,0xf9,0x39,0xf8,0x3b,0x04,0x24,0x18,0xf2,0x7f,0x17,0xbe, +0x29,0xfb,0xb5,0x96,0xc6,0x4b,0x97,0x44,0x62,0x7e,0xb4,0xdf, +0x44,0x1b,0x59,0xa8,0x3f,0x17,0xda,0x83,0x95,0xee,0xaa,0x70, +0x8a,0xfd,0x3d,0xed,0x55,0xee,0xed,0x42,0xc9,0x44,0xbf,0xb1, +0x44,0x1d,0x47,0x9c,0x7f,0x20,0xd1,0x80,0xaf,0x39,0xdb,0x10, +0xd5,0x14,0xdd,0x6f,0xa2,0x73,0x0e,0x46,0x1a,0xc2,0xd4,0x64, +0x55,0x6c,0xf9,0xc7,0x44,0x67,0x33,0x6d,0xff,0x98,0xa8,0x51, +0xbf,0x89,0x2a,0x8b,0x14,0xf9,0x44,0x06,0xb7,0x3b,0x58,0x69, +0xb1,0xa4,0x53,0x1c,0x62,0xcc,0xd6,0x2d,0xa5,0x1f,0x5c,0xe8, +0xcf,0x92,0x6b,0xc7,0x0b,0x26,0x6c,0x67,0x7f,0x96,0x5c,0x24, +0x64,0xe2,0x25,0xbc,0xc7,0x42,0x14,0x64,0x48,0x69,0x69,0x16, +0xfd,0xfb,0x59,0x0d,0x14,0xd7,0xc9,0xfe,0xd5,0xce,0x2b,0xe7, +0x4b,0x1a,0x1d,0xcf,0x6e,0x36,0x3e,0x8b,0x7f,0x4e,0x81,0x7d, +0xec,0xc2,0xda,0x2d,0x4f,0x97,0x17,0xb5,0xf2,0xab,0x6f,0xd8, +0x5f,0xf7,0xbd,0xc9,0xd1,0xe7,0x6e,0x20,0xe6,0xb0,0x73,0x15, +0x86,0x98,0x09,0x2d,0x2d,0x18,0x7f,0x0f,0xf6,0x34,0xe3,0x9e, +0xbb,0xd4,0x09,0x99,0x8b,0xa7,0xd1,0x1c,0x76,0xaf,0x66,0xd7, +0xc1,0x7e,0xa2,0x3d,0xe3,0x23,0x0b,0x53,0xd4,0xde,0x68,0x4f, +0x63,0x60,0x9a,0xda,0xc7,0x0f,0xda,0xac,0x72,0x00,0xb6,0x10, +0x18,0xd2,0x8e,0x43,0x60,0xf0,0x4f,0xad,0xe8,0x25,0xbf,0x8f, +0x83,0x71,0x8c,0x09,0x8c,0xc1,0xcb,0x8c,0x65,0xa0,0x45,0x90, +0x75,0x08,0xf5,0x7a,0x9f,0x52,0xe0,0xdb,0xbc,0x07,0xb9,0x27, +0xda,0x79,0xd7,0x00,0xc7,0xc0,0xed,0x81,0x14,0x87,0x80,0x39, +0x09,0x28,0x3a,0x58,0x7e,0x24,0xd7,0xf2,0x00,0x9f,0xbc,0x2b, +0xc9,0x25,0x76,0x27,0x27,0xcc,0x3d,0x41,0x70,0x39,0x93,0x54, +0x90,0x72,0x3e,0x36,0xdf,0x34,0x89,0x0f,0xf4,0x38,0x60,0x7d, +0xc0,0x95,0xc3,0x57,0x66,0x70,0x72,0x19,0xee,0x35,0x87,0xbd, +0x38,0xb2,0x9d,0x62,0x6c,0xdf,0x66,0xf4,0x7d,0x04,0x29,0x8c, +0xf2,0x5b,0x73,0x12,0xdf,0x1e,0xd7,0x13,0xd9,0x41,0xe9,0x5e, +0x88,0x5e,0x90,0xcc,0xcf,0x9c,0x43,0x77,0x98,0x46,0xb2,0x64, +0x19,0xcb,0x62,0xf5,0x1b,0x12,0xf9,0xc0,0x1e,0xef,0x9f,0x7d, +0x3a,0xa8,0xf5,0xe4,0x52,0x3b,0xb6,0xae,0x91,0xd5,0x98,0x94, +0xb8,0xdb,0xf0,0x5d,0x2e,0x8d,0x0e,0x52,0x68,0x35,0xc4,0x29, +0x24,0x3e,0x2b,0x2e,0x33,0x3a,0x8b,0x13,0x4c,0xc0,0x43,0xfc, +0x80,0x1e,0x6f,0x19,0x4f,0x1d,0xd9,0x3a,0x1d,0xdd,0xd2,0xed, +0x7c,0x55,0xd9,0xf9,0xda,0x73,0xf5,0x9c,0xe0,0xc9,0xe0,0xba, +0x10,0x9c,0xe5,0xaf,0xa3,0x69,0x14,0x74,0xe4,0xb0,0xc9,0x98, +0x10,0xa6,0x34,0xd5,0xb7,0xc6,0xf1,0xc2,0x8e,0x1a,0x75,0x7b, +0x9f,0x98,0x23,0x71,0x87,0x62,0x0f,0xaa,0x3b,0x87,0xda,0x87, +0xda,0x84,0x72,0x6f,0xc0,0x00,0x6c,0xd0,0xe0,0xae,0x7c,0x35, +0x6e,0x46,0x1b,0xd8,0xac,0xcd,0xfe,0x10,0x30,0x27,0x68,0xdd, +0xb1,0x28,0x19,0x0f,0x13,0xe3,0xc0,0x28,0x1b,0x86,0x64,0xc5, +0x1c,0x8c,0x3a,0x18,0x79,0x84,0xb3,0x60,0x92,0x4d,0x54,0x6f, +0x30,0x0f,0x73,0xcb,0xef,0xc7,0x69,0x25,0x3c,0x8f,0x84,0xc9, +0xe0,0xa7,0x21,0xea,0x41,0x80,0x34,0x9d,0x3b,0x5a,0x9a,0xab, +0xdf,0xa2,0x06,0xa3,0xa5,0x73,0x46,0x3a,0x93,0x4a,0xea,0x72, +0xac,0x08,0xb8,0x8e,0x22,0x84,0x6d,0x2d,0x46,0x65,0x5f,0x76, +0x29,0x5a,0x35,0x5a,0x73,0xd0,0x37,0x8d,0x68,0xe3,0xb7,0xf4, +0xbd,0x6c,0xd4,0xa6,0x11,0x90,0xd7,0x66,0xc5,0xd7,0x58,0x44, +0xae,0x52,0xba,0x0d,0x63,0x72,0x3e,0x50,0x24,0xe0,0x89,0x2a, +0xf6,0x38,0x58,0x77,0x2a,0xa5,0x35,0x0f,0x84,0x2b,0xe4,0x6f, +0xd8,0x36,0xae,0xfb,0x6f,0x18,0xd5,0x86,0xa3,0x3e,0x1a,0x6a, +0xe3,0x36,0x69,0xab,0xcf,0x30,0x53,0x18,0x36,0x8e,0x15,0x0d, +0xc1,0x8f,0x8e,0xac,0x3c,0x3a,0xb2,0x2e,0x48,0x05,0x83,0xe0, +0x69,0x27,0x2b,0xdc,0xc5,0x8d,0x04,0xab,0x99,0xb8,0xd2,0xd8, +0xb2,0xa8,0x0a,0xe3,0x04,0x3e,0xc8,0x36,0x60,0xfb,0x11,0x27, +0x0e,0x3d,0x64,0x60,0xc2,0xd8,0x4c,0xd9,0xb4,0x74,0x86,0x4e, +0xb9,0x15,0x5f,0x9c,0x5b,0x90,0x9f,0x57,0xc0,0x61,0x59,0x6f, +0x27,0x14,0x18,0x5f,0x10,0xbe,0xc1,0x47,0x6c,0x6e,0x45,0x56, +0x55,0x6a,0x2d,0x47,0x09,0x99,0xf2,0xf3,0x2b,0xfa,0xbb,0x29, +0xf4,0x77,0x65,0x74,0xc4,0xa6,0x98,0xb0,0xed,0xe2,0x0c,0x3a, +0x62,0xdd,0x20,0x1b,0xd3,0xf1,0x01,0x2b,0xec,0x01,0x8e,0x52, +0x2b,0x28,0xc0,0xed,0xac,0x58,0x0e,0xd2,0x86,0x0c,0x9c,0x07, +0x0b,0xd8,0x61,0x8a,0xb5,0x8a,0x3b,0x44,0x7f,0x19,0xa6,0x3d, +0xa2,0x87,0x1f,0x8d,0xe1,0xc7,0x95,0xbd,0xf7,0x21,0x4d,0x3a, +0x24,0x75,0x62,0x12,0x03,0x31,0xca,0x21,0xc4,0xfa,0xb8,0x45, +0x98,0x69,0x18,0x27,0xcc,0x81,0x99,0x9d,0xff,0x1a,0x62,0x0c, +0x33,0xc4,0x0d,0x2c,0xce,0x0c,0x8b,0xd4,0x87,0x43,0x67,0xe1, +0x68,0x14,0xd8,0xc6,0xa9,0xe3,0xb7,0x7d,0x40,0xd8,0xb6,0x33, +0x2d,0xe1,0x0d,0xe1,0x1c,0x7a,0x82,0x40,0x44,0xbb,0xbf,0x04, +0x3b,0x06,0xe7,0xaa,0x4c,0x14,0xed,0xde,0x53,0x86,0xa7,0x22, +0xd8,0x4d,0x66,0x70,0x7c,0x08,0xce,0x0f,0xc5,0xf9,0xc7,0x29, +0xc7,0x50,0x3f,0x45,0x5c,0x6a,0xbd,0x3f,0xc0,0x25,0x0d,0x78, +0xac,0x34,0xc5,0x4e,0x16,0x53,0xf7,0xe0,0xb0,0x2d,0xd2,0x56, +0x40,0x6b,0xd5,0x5b,0x30,0x26,0x9f,0xbe,0xb0,0x02,0x0d,0x08, +0x13,0xee,0x23,0x85,0xda,0xd7,0x0a,0x50,0xad,0xdb,0x54,0xb3, +0xcc,0xa3,0x22,0x31,0xa2,0x35,0x1d,0x4c,0x78,0x8b,0x1c,0x55, +0xd1,0x5d,0xd8,0x25,0xcd,0xd9,0xaf,0x12,0x73,0x2f,0x08,0x3b, +0x61,0x80,0x78,0xfb,0x82,0x70,0x1b,0x06,0x8b,0x13,0x56,0xb3, +0x09,0x06,0xaa,0x57,0x98,0xb2,0xb4,0xb4,0x52,0x2d,0x61,0x3b, +0x6e,0xee,0x2f,0xe6,0x3b,0x49,0x71,0x97,0x60,0x36,0x5a,0x29, +0x47,0xf6,0x48,0xd3,0x0a,0xb4,0x03,0x16,0xb1,0xd4,0x5d,0xc1, +0x78,0xa6,0x26,0x35,0xa3,0x4a,0x4b,0xe8,0x44,0x57,0xc8,0x66, +0xc5,0x29,0xe2,0x4b,0x12,0xeb,0x1c,0x6b,0x19,0x6b,0xb9,0x2b, +0xd8,0x2b,0xc4,0x33,0x84,0xa3,0x7d,0xc8,0x0b,0x6a,0xc8,0xc3, +0x1c,0x19,0xce,0x41,0x42,0x03,0x0b,0xe5,0x51,0xac,0x49,0x80, +0x71,0xa0,0x51,0x70,0x9c,0x01,0x0f,0x4c,0xea,0xbb,0x8c,0x57, +0x05,0xe1,0xfb,0xc2,0xf7,0x9d,0xf1,0x6d,0x4a,0xe0,0x8f,0x3e, +0xf2,0x7e,0x77,0xe0,0x06,0x27,0x64,0x08,0xf5,0xc4,0xdb,0xd0, +0xd5,0xc8,0xd6,0xb4,0xd6,0x95,0xaf,0x69,0xae,0xbc,0x9e,0xd3, +0x2d,0x69,0x61,0x4c,0x24,0xbb,0x3a,0xed,0x2e,0x39,0xd6,0x59, +0xed,0xe0,0xcf,0xdb,0xd4,0xe8,0xe6,0x19,0x73,0xe2,0xf2,0x2c, +0x72,0x0f,0x0b,0x57,0x31,0xe0,0x0c,0x85,0x04,0x0b,0x57,0x40, +0x21,0x0b,0xf1,0x78,0x54,0x12,0x9d,0x7e,0x87,0x5f,0xb3,0xf8, +0xce,0x94,0xd0,0x93,0x51,0xf8,0x8e,0x19,0x06,0xd3,0xe0,0x2a, +0x51,0x18,0x0b,0xae,0x4a,0x63,0xe6,0xb2,0x1e,0x11,0xae,0xe0, +0x6b,0xf1,0x0a,0x03,0xdf,0xe2,0x48,0xb2,0x76,0xf2,0xac,0x59, +0x38,0x6a,0x55,0x8d,0x39,0x0f,0xdf,0x3d,0xfc,0xeb,0xe3,0x9d, +0x4f,0x9c,0xd0,0x8e,0x27,0xc8,0xdc,0x97,0x14,0x05,0xa8,0x4c, +0xb9,0x6e,0xb5,0x9d,0x7f,0xb3,0x0e,0x06,0x8f,0xff,0x7d,0x32, +0x1d,0xa3,0xa9,0x3a,0xe4,0xb2,0xa2,0x1e,0xce,0x8a,0x3d,0x92, +0x33,0xd8,0xa6,0x0a,0x53,0x98,0xa6,0xb4,0x94,0x46,0x2d,0xe1, +0x5f,0xe2,0x68,0x56,0x1c,0xac,0x4c,0xa0,0xa3,0x3c,0x9e,0xe2, +0xbc,0xbb,0x12,0xce,0x8b,0x07,0x0a,0xed,0x2c,0x84,0x7c,0xb0, +0xa0,0xed,0x27,0x29,0x7e,0x26,0x16,0x68,0xbe,0x1e,0x35,0x91, +0xf9,0x92,0xad,0x53,0x54,0x5c,0x51,0x54,0xcf,0x89,0x05,0x7d, +0x0a,0xc2,0x96,0xdf,0x29,0x7a,0x96,0xf9,0x07,0x77,0xd1,0x87, +0x88,0x0a,0xe1,0xb8,0xa0,0x60,0xc5,0x4d,0x98,0x49,0xc0,0x45, +0x60,0xd0,0x85,0x15,0x19,0x2c,0x25,0xe0,0x4d,0xcf,0xbd,0x59, +0x31,0x11,0x6b,0x88,0x42,0xbb,0x57,0xa9,0x4d,0xb1,0xe3,0x58, +0xc5,0x28,0xf2,0x00,0x52,0x5a,0x31,0xe5,0x86,0xde,0x7a,0x3c, +0x21,0x87,0x13,0x2b,0xb0,0xca,0x54,0xa1,0x4d,0x39,0xd1,0x26, +0xf7,0xff,0xf7,0xd4,0xae,0x9e,0x98,0x4d,0x5e,0x43,0x57,0x1b, +0x76,0x3d,0x84,0x8c,0x56,0xcc,0xb8,0x0d,0x75,0xad,0x94,0x6d, +0xe7,0xe6,0x67,0x97,0xa6,0x97,0xca,0xd2,0xf9,0x7d,0x8e,0xbb, +0xed,0x5d,0x9d,0x38,0xf1,0x1b,0x39,0x14,0xeb,0x60,0x94,0x1c, +0xa2,0x96,0x63,0xad,0x29,0xd4,0xce,0x60,0x2c,0x84,0x2d,0xc4, +0xa7,0xd4,0xbb,0x70,0x77,0x9e,0xa9,0x37,0x9f,0xeb,0x95,0xed, +0x91,0xee,0xce,0x79,0x8a,0x26,0xff,0x7f,0xa7,0x85,0x87,0x29, +0x76,0xc2,0x6c,0x72,0xfd,0xdc,0x83,0xd6,0xc6,0x1a,0xc7,0x3a, +0xde,0xd6,0x6e,0xa5,0xd9,0x5a,0x0f,0x97,0x96,0x3d,0x3d,0x07, +0xaf,0x72,0xf0,0xba,0x4b,0xf9,0x23,0xb4,0x29,0xfc,0xbb,0x94, +0xad,0xe2,0x40,0x3a,0xfc,0x0f,0xe2,0xb2,0x15,0x94,0x38,0xb7, +0x9b,0xdc,0x03,0x8d,0x6c,0x58,0x16,0x2e,0x89,0x87,0x4c,0x14, +0x39,0xc6,0x2a,0xc4,0x3a,0xc4,0xfa,0x58,0xac,0x1e,0x0f,0x4b, +0x32,0x60,0x7a,0x3e,0xa8,0x15,0x87,0x74,0xf1,0xeb,0x0f,0x2e, +0x3e,0xb8,0xe0,0x08,0x07,0xff,0x82,0xc9,0x6c,0x2b,0x7a,0xc0, +0x08,0xd4,0x04,0x87,0x49,0xa5,0xed,0xfc,0x94,0xc6,0x95,0xed, +0x86,0x57,0x38,0x98,0x2f,0x78,0x10,0xa5,0x8a,0x91,0x42,0x85, +0x76,0xdb,0x3d,0xa1,0x85,0x14,0x04,0x16,0x07,0x9e,0x0b,0x4a, +0x6f,0xe2,0x71,0x52,0xf9,0xb4,0xca,0x55,0x6d,0x1c,0xf4,0xb4, +0x88,0x36,0x4c,0x72,0xa6,0x84,0x26,0x8c,0x62,0xf9,0x83,0x3b, +0x0f,0x78,0xf9,0x4a,0x65,0x54,0xcc,0xa0,0x93,0xd9,0x68,0x38, +0x6b,0x3b,0xce,0x71,0xce,0xa0,0x23,0x64,0x40,0xce,0xcf,0xc5, +0xd7,0xaa,0x65,0x2b,0x16,0x6d,0xc0,0x6f,0x4c,0x72,0xed,0xf9, +0xd2,0xa4,0xe2,0x94,0xc2,0x34,0x0e,0xed,0x85,0x3d,0x7a,0xe2, +0x1b,0x33,0xe1,0x0d,0x0e,0xc5,0x8d,0x6c,0xb2,0x99,0x2a,0xcc, +0x65,0x6a,0xd3,0xa4,0xf2,0x14,0x5f,0x49,0x65,0x56,0xcd,0x2e, +0x80,0x76,0x03,0xde,0x6a,0x83,0xdc,0x5a,0xcc,0x6d,0xe9,0x3f, +0x36,0x01,0x35,0xce,0x52,0x90,0x91,0x3e,0xc3,0x47,0xb6,0x7f, +0x53,0xa7,0x75,0x8c,0x89,0x4f,0x8b,0xcd,0x8c,0xc9,0x30,0x8d, +0xe6,0x03,0x76,0xfb,0x7b,0x1f,0xf6,0xe1,0x70,0x16,0x93,0x94, +0x1a,0x9f,0x12,0x97,0xea,0x9a,0xc8,0x17,0x65,0xe4,0x65,0x65, +0x53,0x7a,0xaf,0x8f,0xa1,0xe4,0x0c,0x9b,0x9a,0x98,0x9c,0x94, +0x9c,0xc4,0x81,0xcc,0x82,0xc1,0xb0,0xe9,0xa4,0x05,0xc2,0xcc, +0x58,0x0c,0x9b,0x4a,0xfd,0x56,0x98,0x29,0x8b,0x39,0xb8,0x9d, +0xb4,0xed,0x68,0x76,0xaa,0xb3,0x2f,0xaf,0xe0,0xad,0xab,0x2d, +0x2a,0x4c,0x0b,0xa8,0xdb,0xd0,0x52,0xd3,0x61,0x76,0x05,0x9d, +0x2d,0xd0,0x82,0x42,0x18,0x0c,0xf7,0x50,0x85,0xcd,0x6d,0xc9, +0xbd,0x9a,0xd2,0x23,0x4b,0xe5,0x0f,0x6c,0xde,0xbb,0x71,0xc7, +0x36,0x0e,0x53,0xf1,0xde,0x3b,0x8a,0x36,0xd6,0xbb,0xac,0xc6, +0xef,0x57,0x17,0xd0,0xc8,0x30,0xed,0xa7,0x96,0xb7,0x67,0xc1, +0x8a,0xfb,0x0b,0x6b,0x19,0xe3,0xf4,0x03,0x9d,0x9a,0x2f,0x98, +0xb2,0xc4,0xc4,0x32,0x29,0x7f,0xde,0x3c,0x49,0x15,0xb3,0x84, +0x40,0xe2,0xd3,0xb1,0xb3,0x6f,0x4f,0x8d,0xd9,0x1e,0x3e,0xcf, +0x26,0xdf,0x28,0xc3,0x88,0x13,0x5d,0xa5,0x74,0x94,0xfa,0xfe, +0x95,0xd0,0xaf,0xff,0x6b,0x25,0x74,0x9a,0xb4,0x12,0x1a,0xff, +0x7f,0x5f,0x09,0x2d,0xf9,0xb2,0x12,0x1a,0x26,0xad,0x84,0xea, +0x4b,0x19,0x56,0x49,0xb8,0x88,0xe0,0x4e,0xbc,0x03,0x3b,0x59, +0xfc,0x17,0xa6,0xf5,0xaf,0x18,0x5e,0x97,0x56,0x45,0x0d,0x98, +0x61,0xbf,0x4a,0x3c,0x69,0x04,0xab,0x97,0x2d,0x89,0xe8,0x86, +0xd3,0xbb,0x48,0xa8,0xd0,0x6a,0x65,0x4d,0xe2,0x55,0xb7,0xa0, +0x1f,0xeb,0x12,0x12,0x99,0xab,0x75,0x85,0xa2,0xc9,0xad,0xe2, +0x10,0x39,0x5c,0x5f,0x29,0x55,0xb1,0xfe,0xdf,0x5c,0x7c,0x84, +0x75,0xfe,0x72,0x71,0x1b,0xbd,0x78,0x84,0x1c,0xee,0xac,0x64, +0x71,0x9e,0x18,0x4a,0x61,0x02,0xb8,0xb6,0xa2,0xeb,0xaf,0xfa, +0xf3,0x30,0x4a,0x3a,0x6c,0x97,0xc3,0x76,0x1c,0x82,0x3f,0x9a, +0x7c,0x1e,0xd8,0xce,0xe2,0x15,0x18,0x42,0xe8,0xbf,0xa2,0x60, +0x08,0x8b,0x0d,0xe2,0x70,0x02,0x63,0xca,0x3e,0xb5,0xdd,0x6f, +0xdf,0x5e,0xc9,0xaf,0x32,0x9b,0x6a,0x8d,0x6a,0xae,0x9c,0xd0, +0xf8,0x9c,0xbc,0x73,0x85,0xc1,0x66,0x6f,0xcd,0x4a,0x9b,0xf8, +0xe9,0x0d,0x38,0xac,0x55,0xbb,0x44,0xd2,0x2d,0x15,0xa6,0x90, +0x9f,0x61,0x1c,0x6c,0xc1,0x71,0x8f,0x60,0x6e,0x8b,0x38,0x47, +0x34,0x17,0xe6,0xb6,0xb0,0x97,0x8c,0xc9,0xf5,0x92,0xee,0x8a, +0xc6,0xaa,0x26,0x9b,0x6e,0xfb,0x1b,0xdb,0xcf,0x35,0xf3,0x1b, +0x2b,0x64,0xe7,0xad,0xab,0xae,0x5c,0xaf,0x79,0x98,0xff,0x1b, +0xd7,0x24,0x8e,0x35,0x81,0x47,0xac,0xcf,0x66,0x97,0xcd,0x46, +0x7a,0xe6,0xed,0x4e,0xdd,0x3b,0xfb,0xcc,0xf6,0xf2,0x45,0x9b, +0xaa,0x74,0x3b,0x0d,0x6c,0x9d,0x4c,0xdc,0x36,0x51,0xe4,0x7b, +0x12,0xb2,0x09,0x6a,0x3e,0x92,0x76,0x06,0x6b,0xe2,0x0e,0xf2, +0x13,0xe4,0x2f,0x62,0x51,0xd3,0x8a,0x2c,0x44,0xcd,0x9f,0x59, +0xb8,0x88,0x81,0x04,0xff,0x6d,0xaa,0x68,0x6c,0x13,0x87,0x3f, +0xdc,0xc2,0xc0,0x51,0x1a,0x34,0x77,0x19,0xb9,0x6c,0xb5,0x31, +0xe5,0xc4,0x3c,0xd9,0x67,0xf5,0x0e,0x6c,0x62,0x2a,0x1a,0x8a, +0x9a,0xf3,0x3a,0x39,0xea,0x5f,0x46,0x92,0xbd,0xcd,0x9e,0xad, +0x3b,0xaa,0xa5,0xbc,0x78,0x9b,0x02,0xcb,0x2c,0x73,0x8a,0x1a, +0xdf,0x2a,0x6c,0x88,0x98,0x86,0xdb,0x14,0xa3,0x75,0x95,0xa3, +0x71,0x93,0x90,0xa6,0x27,0x3e,0x10,0x9a,0x84,0x07,0xac,0x72, +0xe8,0x44,0x62,0x76,0x5f,0xf7,0xbe,0x49,0xbb,0x95,0x0b,0xdf, +0x69,0xd2,0xbb,0xa2,0x99,0x92,0x07,0x5f,0xb1,0x87,0x20,0x99, +0xd7,0x03,0x8c,0x16,0x9c,0x47,0x6b,0x03,0x0a,0xb2,0xa8,0x3b, +0x70,0x92,0x69,0x4b,0xfb,0xec,0x5f,0x57,0xb6,0x74,0x9f,0xb9, +0xd3,0xef,0x0e,0x9e,0xe8,0xc0,0x0f,0x63,0x04,0xdf,0x2f,0xab, +0x5b,0x79,0x82,0x13,0x91,0xb4,0xd2,0xfd,0x83,0x8e,0x06,0xf0, +0xc7,0xe0,0xfb,0x0f,0x6d,0x13,0xbe,0xa8,0xad,0x8f,0x36,0x85, +0xa1,0x8c,0x3f,0x8e,0x76,0xc6,0xc9,0x0b,0x70,0x64,0x85,0x25, +0x7f,0xf5,0x43,0xce,0x87,0x70,0x29,0x4d,0x38,0xb3,0x53,0x88, +0xfc,0x47,0x5b,0xfe,0x0e,0x2e,0x2f,0x2b,0x57,0xcd,0x13,0x4e, +0x11,0xcc,0xa7,0xaf,0xc5,0x0f,0xbf,0xd3,0xc1,0x69,0x9a,0x0d, +0x6e,0x4d,0x1f,0xb2,0x5f,0xc7,0x82,0xa6,0x3a,0xf0,0x18,0xaf, +0xcd,0x24,0xea,0x49,0x65,0x1b,0xe2,0x28,0x6c,0x55,0x9c,0x67, +0x1f,0x62,0x31,0xc1,0x86,0x00,0x1c,0xb5,0x01,0xa7,0x6b,0x36, +0xb9,0xd7,0x7f,0xcc,0x7c,0x15,0x2d,0x5d,0xf9,0x3d,0x1d,0x9b, +0x03,0xa4,0x1d,0xd5,0xbf,0xfc,0xe7,0x52,0x0c,0x65,0xf1,0x7b, +0x69,0x95,0x7e,0x04,0x98,0x48,0xdb,0x2c,0x6e,0x49,0x2b,0xdb, +0xd2,0x6c,0x07,0x61,0x44,0x53,0x51,0x97,0x9c,0xe9,0x3c,0xdd, +0x77,0x5b,0x83,0x3a,0x1a,0x39,0x03,0x06,0x6a,0x67,0x3a,0x4f, +0x49,0xff,0x22,0x52,0xb5,0x8e,0x47,0x42,0x21,0x81,0xef,0xef, +0xc2,0xa0,0xdf,0x6e,0xfd,0x6a,0x55,0xc1,0x2f,0x9d,0xa6,0xbd, +0x1c,0x87,0x6e,0xe5,0x3e,0x8f,0x3d,0x46,0x50,0xf5,0xed,0xdc, +0xfb,0x38,0xe0,0x9a,0xa3,0x0d,0x0f,0x83,0x74,0x9e,0x6e,0x00, +0x15,0x6d,0x4e,0xf9,0x54,0xf2,0xf4,0xc9,0x30,0x0a,0xbe,0x05, +0xae,0x0c,0x46,0x52,0x04,0x5c,0x86,0x23,0x69,0xf7,0x49,0x29, +0x0f,0xa3,0x8a,0xba,0xe9,0x43,0xc0,0x37,0x38,0xf2,0xa3,0x31, +0x0c,0xe6,0xd6,0x31,0xc6,0x14,0xc1,0xaa,0x6a,0x63,0x0c,0x0e, +0xe1,0x60,0xf6,0x09,0x22,0x8e,0xbf,0xd8,0x22,0x84,0x9b,0xf5, +0x09,0xe3,0x59,0xf1,0x8a,0x31,0x11,0xc2,0xf1,0x90,0x18,0x4e, +0xa3,0x4d,0x8b,0xe2,0x1e,0xd9,0x65,0xb2,0xd3,0xc2,0xcd,0xc6, +0xa7,0xc1,0xab,0x6e,0x47,0xad,0x8d,0x07,0x5f,0x66,0x56,0x68, +0x9e,0x69,0xe6,0xb2,0xdd,0xc1,0xc5,0x6e,0x47,0xbe,0x29,0x5f, +0x5d,0x5c,0x51,0x52,0x72,0x3e,0xd9,0x26,0xce,0x26,0xda,0xc2, +0x74,0x81,0xb1,0xfe,0x0a,0x83,0x3c,0x39,0x7f,0xab,0xb5,0xb5, +0xbb,0xee,0x06,0x17,0x6e,0x7f,0xda,0xce,0x4a,0x03,0xd7,0x9e, +0xda,0x65,0xa3,0x33,0xc6,0x50,0x12,0x56,0xe9,0x60,0x5e,0xb6, +0xf4,0x80,0x37,0xcc,0xd9,0x07,0xdf,0x59,0xc1,0x60,0xad,0xaa, +0x96,0xb2,0xee,0x73,0xd4,0x69,0x3f,0x50,0x0e,0x25,0x10,0xd7, +0x89,0x71,0xf0,0x3d,0x04,0x0a,0x9b,0xc5,0x4c,0x71,0x33,0x1c, +0xa4,0xfd,0x76,0xca,0x18,0x4e,0xe1,0x3c,0xcc,0x31,0x12,0x94, +0x5d,0x58,0xc6,0x18,0x08,0xbf,0x13,0x5c,0x45,0xaf,0x59,0xc5, +0xf4,0xe0,0xf7,0x52,0xf5,0x86,0xf5,0xf8,0x3d,0x8b,0x01,0x72, +0x82,0xe3,0xe9,0xe7,0xe3,0x59,0x38,0x24,0x15,0xe6,0x18,0x2f, +0x15,0xe6,0xf8,0x49,0x5a,0x05,0xba,0x21,0x2c,0x5d,0xcc,0xa4, +0x9d,0x4b,0xfd,0xb2,0x0a,0xb4,0x94,0x8d,0xca,0x8c,0xc8,0x8a, +0xc8,0x32,0x89,0xe4,0x7d,0xa6,0x58,0xcf,0xd8,0xb0,0xb2,0xcc, +0x99,0x4f,0x49,0x57,0x55,0x0c,0x05,0x33,0x1a,0x17,0x5b,0xc5, +0x00,0x39,0xb8,0xad,0xc5,0x03,0x38,0xbb,0x75,0x37,0x8c,0x6b, +0x42,0xad,0x87,0xb0,0x16,0x2b,0x3b,0xa1,0x12,0xb6,0x2d,0xc7, +0xa9,0x16,0x30,0x3d,0xb7,0x15,0x66,0x63,0x30,0x23,0xce,0x38, +0x4f,0x02,0xbd,0x0e,0x38,0xee,0x73,0xe3,0x90,0x67,0xd2,0x8b, +0x52,0x4b,0x92,0xcb,0x38,0x2b,0x2c,0x27,0xc0,0x3f,0x46,0x9e, +0x6d,0x50,0x03,0xfe,0x27,0xfa,0x37,0xf0,0x14,0x36,0x68,0x37, +0x4a,0x5b,0x96,0x33,0x2d,0x08,0xcc,0x6c,0xc2,0x99,0x8c,0xa8, +0x94,0x34,0x36,0xc6,0x3f,0xc6,0xf1,0xd2,0x65,0xe3,0x7f,0xa2, +0x7f,0x0b,0xb1,0x67,0xc9,0x72,0x71,0xac,0x99,0x30,0x76,0xbe, +0x38,0xc7,0x54,0x98,0x23,0xef,0x16,0x46,0x88,0xce,0x72,0x16, +0xd9,0x79,0x24,0xd9,0x31,0xc5,0x36,0xde,0xb2,0x46,0x5a,0xfd, +0x39,0x58,0xeb,0x5b,0xce,0x51,0xc8,0x7a,0x82,0x94,0xf4,0xe5, +0x3e,0x8d,0xbd,0x6f,0x1d,0xcb,0x1f,0xdd,0xe0,0xad,0xe3,0x66, +0xc0,0x81,0x1f,0x18,0x91,0x24,0xb3,0x78,0xe3,0x98,0xad,0x8d, +0x71,0x7c,0x40,0xdf,0xe1,0x2e,0x69,0xf5,0x47,0xed,0xcb,0xea, +0xcf,0xa9,0x4d,0xcd,0x51,0xfc,0x89,0xeb,0x21,0x57,0x03,0x2f, +0x51,0x53,0xac,0xa6,0x57,0x5e,0xfe,0x05,0x94,0xb8,0xa2,0x07, +0xf6,0x36,0xa3,0x0e,0x9b,0x96,0x9b,0x7e,0x2e,0x21,0xc7,0x34, +0x9d,0x3f,0xec,0xe6,0xe3,0xbc,0x97,0x3e,0xcf,0x26,0xa6,0x3c, +0xed,0x70,0x9e,0x57,0x95,0x6f,0xa6,0xba,0xcd,0xae,0x94,0xfd, +0x39,0xae,0x49,0xbb,0xd4,0x71,0xb9,0x39,0x38,0x33,0x3e,0x27, +0x0f,0x9c,0x3c,0xa8,0x89,0xcb,0x50,0x09,0xb0,0x45,0x9c,0x61, +0x21,0xcc,0xc0,0x59,0x38,0x81,0x49,0x92,0x4b,0x22,0x3d,0xb5, +0x09,0x69,0x35,0x5a,0xa0,0x0d,0x33,0x9a,0x58,0xe5,0x2c,0xc8, +0x27,0x52,0xc6,0xbd,0x7f,0x60,0x7f,0xa5,0x07,0xf5,0xdf,0xdb, +0x67,0x7d,0xc9,0xd9,0xa7,0xae,0x68,0x34,0x35,0xc6,0x91,0x4e, +0xa8,0x3d,0x07,0x47,0x57,0x58,0xf1,0xb7,0x3e,0xe6,0x7d,0x3c, +0xfb,0x92,0x1a,0x63,0xc6,0x7f,0xe7,0xec,0xdf,0xc7,0x79,0x65, +0x15,0xaa,0x70,0x11,0x44,0x62,0xb0,0x89,0x3d,0x9d,0x72,0x2a, +0x2d,0x43,0xc3,0x58,0x9b,0x1c,0x35,0xd9,0xbd,0xc7,0x64,0x47, +0x96,0x03,0x7f,0xbd,0xb2,0xa4,0x3c,0xe1,0x2e,0x77,0xdb,0x98, +0x71,0x48,0x39,0x54,0xad,0xf9,0x51,0x2e,0x8e,0x83,0x15,0x8c, +0x30,0x6e,0x3d,0x99,0xc3,0x1c,0x0c,0x3d,0x93,0xaa,0xd5,0x28, +0xed,0xe7,0xf6,0x50,0xa1,0x9f,0xb7,0xb2,0xc7,0x31,0x95,0x54, +0x79,0x9d,0x77,0x2d,0x76,0x3f,0x5f,0xc1,0xef,0x38,0xb7,0xbd, +0xd4,0x21,0x87,0xf6,0xc2,0xd1,0xfe,0x84,0xe3,0xcd,0x9d,0x14, +0x96,0x4e,0x85,0x4d,0x1d,0xb8,0x89,0x82,0x3a,0xbb,0x2e,0x8a, +0x60,0x72,0x1a,0xd2,0x5b,0xe3,0x2b,0x65,0x89,0xfc,0x11,0x9b, +0x7d,0xc6,0x9e,0xa6,0x1c,0x4e,0x66,0x32,0xa4,0x84,0xe3,0x26, +0x93,0x64,0xde,0x15,0x19,0x19,0x8e,0xd4,0x99,0x5e,0x6e,0xcd, +0x27,0xa5,0xc7,0xa7,0xc5,0xa5,0x71,0xe2,0x6f,0x5d,0x17,0x05, +0xdd,0x6e,0xf6,0x5f,0x03,0x15,0xc7,0x29,0xf2,0xaf,0xa4,0xc8, +0xff,0x5e,0x3f,0xa3,0x80,0x4e,0x56,0xca,0x4e,0x91,0x96,0xf1, +0x56,0x48,0xcb,0x78,0x7f,0x34,0xd2,0xff,0x2e,0xe8,0x60,0x61, +0x0e,0x46,0x48,0xe9,0xc5,0x2b,0x70,0x2a,0x8b,0x77,0x7b,0x49, +0x07,0x16,0xc8,0x28,0x4b,0x90,0x78,0xad,0x0f,0x64,0x61,0x31, +0xde,0x67,0x85,0x37,0x50,0x49,0x70,0x29,0xae,0x80,0xa5,0x2c, +0x3a,0x1d,0x92,0x48,0xc2,0xca,0x7e,0x92,0x70,0x57,0x18,0x43, +0x84,0xa9,0xca,0x91,0xf8,0x92,0xdd,0xf7,0xe3,0xbe,0x93,0xbe, +0x9a,0xa8,0x6d,0x08,0xe3,0x98,0x40,0x9c,0xe7,0x3e,0x7d,0xd1, +0xc4,0x36,0x47,0xfe,0x85,0x24,0x46,0xaf,0x12,0x0b,0xab,0x39, +0x21,0x12,0x6f,0x62,0x40,0xbf,0x8c,0x91,0x97,0xb4,0xf9,0xac, +0x41,0x0b,0xae,0x80,0x6a,0x37,0xab,0x5c,0xab,0x76,0x2a,0xeb, +0xc7,0xec,0x1c,0x0d,0xc8,0x14,0xce,0xe0,0x1b,0x96,0xe2,0xe8, +0x20,0xf2,0x48,0x76,0xdd,0xe8,0xa2,0x41,0x75,0x0d,0xaf,0xd7, +0xb1,0xfc,0xca,0xca,0x26,0x0a,0x4d,0x1b,0x15,0xab,0x89,0x77, +0xbb,0xeb,0xb5,0xdd,0xd5,0x32,0x6f,0xbe,0xd0,0xbc,0x68,0x5b, +0x86,0x9c,0xcb,0x17,0x4f,0x90,0x0f,0x34,0x04,0x8d,0xc6,0x31, +0x6c,0x69,0x6b,0x51,0x67,0x7e,0x87,0x71,0x36,0xbf,0xcb,0xd8, +0x7e,0xa5,0xa3,0x8c,0x13,0xb3,0xc4,0xd1,0xf0,0x68,0x82,0x38, +0x57,0x26,0xcc,0xc5,0xf5,0x17,0x60,0xbd,0xa0,0xd3,0xc1,0x28, +0xb5,0x84,0x74,0xe2,0x41,0x03,0x81,0x4b,0xb5,0x99,0x17,0x5f, +0x66,0x5b,0x62,0x97,0x67,0xc1,0xc1,0x0e,0x49,0x8c,0x26,0x19, +0x54,0x21,0x99,0xb9,0xf0,0x45,0x63,0xaf,0x10,0x55,0x59,0xf1, +0x2f,0x73,0xea,0xb7,0x28,0x9a,0x4d,0x66,0xe0,0x01,0x30,0x52, +0x55,0x27,0x46,0x2a,0x19,0x22,0x74,0x28,0xd4,0xc8,0x45,0x30, +0xd1,0xed,0xbe,0x08,0x53,0x5b,0x70,0xea,0x03,0xc3,0x15,0x68, +0x22,0x1d,0xc6,0x99,0xc1,0x38,0x5d,0x56,0x5c,0x0a,0xa3,0x89, +0x32,0xb4,0xeb,0x23,0x6c,0x55,0x50,0x1f,0xb0,0xd5,0x84,0xc0, +0xb7,0xe2,0x39,0xfc,0x96,0x51,0x5c,0xb0,0x25,0xed,0x58,0xf2, +0x14,0x12,0xda,0x30,0xe1,0x3e,0x04,0x80,0x23,0x05,0xbb,0x8e, +0xb0,0x6f,0x25,0x9e,0x34,0x85,0x93,0x8b,0x31,0xdd,0x04,0x62, +0xd8,0x5d,0xfa,0x0b,0x6c,0x71,0x8b,0x45,0x3a,0xc5,0x26,0x76, +0xdd,0x7f,0xb4,0xc7,0xbe,0xa2,0xee,0x32,0x66,0xf6,0x6b,0x39, +0x98,0x6e,0x4b,0xed,0xe4,0x71,0x59,0xeb,0x82,0x6a,0x2f,0x4a, +0x17,0x02,0x04,0x1d,0x42,0xdf,0xd7,0x00,0x5c,0xc1,0xc0,0x3e, +0x35,0x18,0x00,0x1b,0x71,0x00,0x3b,0x4c,0x60,0xc0,0x8b,0x6c, +0x3f,0x68,0x7f,0xd0,0xf6,0x10,0x07,0xcf,0x80,0x74,0x53,0x87, +0x9e,0xb7,0x0d,0xf3,0xf0,0x5b,0x43,0xca,0x04,0x04,0xd6,0xf6, +0xb0,0xb5,0x9f,0x95,0x5f,0xb2,0x21,0x0f,0x23,0xca,0x3e,0x94, +0xfe,0x59,0xc7,0xd5,0x2a,0x34,0x88,0xf8,0x6f,0xc1,0x4e,0xf8, +0x37,0x2b,0x6a,0x61,0x36,0x01,0x77,0x78,0x8a,0xee,0x2c,0x3e, +0xc5,0xf3,0x04,0x0e,0xd0,0xf3,0x03,0xac,0xb8,0x1b,0xab,0x88, +0xf0,0xb6,0x57,0x7c,0x4b,0x9f,0x9c,0x91,0xf4,0x8f,0x0e,0x3b, +0xf6,0xeb,0x1f,0x1d,0x04,0xb5,0x4e,0x54,0xfb,0xb2,0x9d,0x5a, +0xdb,0x18,0xb4,0xf1,0x34,0x6b,0x76,0xd8,0xec,0x88,0x65,0x40, +0x8c,0x21,0x5f,0x17,0xd7,0x18,0xdf,0x90,0x24,0x6d,0xa7,0x26, +0xd2,0x84,0xe5,0x47,0xa6,0x39,0x59,0x7a,0xdd,0x0d,0x6c,0x4d, +0x52,0x75,0x72,0x55,0x0a,0x57,0x27,0xc8,0x88,0x28,0xd2,0x76, +0x45,0xa9,0xdd,0x2c,0x02,0xae,0xb4,0x2d,0x57,0xa9,0x5d,0xea, +0xac,0xf6,0xd3,0xf3,0xfd,0xac,0xe8,0x81,0x95,0x44,0x78,0xd5, +0x2b,0xbe,0xa2,0xee,0xfe,0x1a,0x05,0x19,0x5e,0x47,0x3d,0x8f, +0x4a,0x72,0x04,0x07,0xff,0xea,0x98,0xfc,0x25,0x5f,0xf4,0x1b, +0x19,0x0d,0x1c,0xe1,0xf4,0xa9,0xec,0xbe,0xd4,0x32,0x3a,0x1f, +0x5b,0x19,0x7f,0xbe,0x5f,0x75,0x69,0xa0,0xa4,0xba,0xf4,0x9c, +0xa9,0x4f,0x96,0xac,0xbf,0x95,0x2d,0x8e,0x2f,0x96,0x6a,0xfb, +0x34,0x5e,0x23,0x30,0xe3,0x5e,0xd7,0xef,0x67,0x60,0x21,0xf7, +0x27,0xba,0x33,0xa6,0xa9,0xbe,0x2d,0x9a,0xc0,0x33,0xf5,0xf1, +0xe9,0xa5,0x5a,0x37,0x58,0x79,0x82,0xea,0x3c,0x1c,0xc6,0x7a, +0x87,0x44,0xe4,0x69,0x81,0x0d,0x68,0xa0,0x6a,0x17,0x2c,0x13, +0x1f,0xe1,0xb2,0x2e,0x3a,0x20,0x86,0x52,0x9b,0x9d,0x60,0xbb, +0x1e,0xc7,0x6c,0xe6,0x84,0x97,0xd4,0x57,0x76,0x60,0x19,0x0c, +0x32,0xc0,0x41,0x98,0x26,0x83,0xe3,0xac,0xd3,0x82,0xd9,0x8b, +0x70,0xac,0x4e,0xa1,0x09,0x0f,0x53,0x7e,0x7a,0xf3,0x32,0xee, +0x4f,0x2e,0x02,0x9f,0x77,0xc2,0xf3,0x48,0x26,0x61,0x1a,0xb0, +0xb3,0x60,0xdc,0xa2,0x82,0x76,0x1e,0x47,0xdc,0xc0,0x81,0xcf, +0xed,0x9e,0x51,0xd0,0xb4,0x4a,0x91,0x4d,0xc4,0xa7,0x8a,0x69, +0xc2,0x53,0x76,0x0b,0xc6,0x11,0x31,0x17,0xac,0x84,0x5c,0x46, +0xcc,0xc5,0x18,0x22,0xe4,0xa2,0x8b,0x98,0xcb,0xe0,0x46,0x2c, +0x23,0x9f,0x07,0x5f,0xf8,0xd7,0x60,0x0a,0xe8,0x83,0x15,0x03, +0x08,0xa8,0x33,0x01,0x6b,0x7c,0x66,0xb9,0x2e,0x6b,0xdc,0xc3, +0x57,0xff,0x99,0xf9,0x3e,0x56,0x2a,0x08,0xdc,0xc8,0x46,0xb7, +0x44,0xb4,0x85,0x77,0x9a,0x46,0xf0,0x01,0x38,0x73,0x2f,0x0e, +0xdb,0x8a,0x6a,0x52,0x75,0xf6,0xab,0xd9,0xd7,0x93,0x6f,0x73, +0xbd,0xd4,0x0d,0xa2,0xbd,0x25,0xaa,0xd3,0x80,0x35,0x56,0x93, +0xda,0xae,0xca,0xd1,0xe8,0xe0,0x93,0xfe,0x81,0xea,0x01,0x81, +0xc7,0x4e,0x47,0x26,0x44,0x24,0x85,0xa7,0xaa,0xc3,0xce,0x36, +0x74,0x62,0x4e,0xc5,0xfe,0x18,0x17,0xa7,0x51,0x07,0x26,0xad, +0x68,0x72,0x17,0xb6,0xd1,0x91,0xb9,0x9c,0x8e,0x4c,0xdd,0xd5, +0x52,0x5e,0xa9,0xb9,0x3d,0x7b,0xf4,0xe4,0xd1,0x93,0xfe,0x9a, +0xe8,0x6a,0x0a,0xd6,0xcc,0x9e,0xd5,0x9b,0x2d,0x71,0xb8,0x49, +0x8e,0x39,0xff,0xa9,0xfe,0x52,0x7d,0x65,0x77,0x54,0xf4,0xd9, +0x93,0x51,0xa1,0xa0,0x8f,0x23,0xf9,0x84,0xf4,0x7c,0x73,0xd0, +0x80,0xb1,0x14,0x23,0x9d,0x85,0x15,0xea,0x92,0xbc,0xca,0xea, +0xab,0xd2,0xe6,0x5b,0xe4,0x8b,0x7a,0x78,0x9c,0x0b,0x93,0x0c, +0x40,0x13,0xdc,0x34,0xc4,0x22,0xd8,0x44,0xba,0x61,0x92,0x61, +0x67,0x37,0xb0,0x6d,0xc8,0x5e,0x33,0xde,0x88,0x93,0xae,0xc9, +0x36,0xa2,0x8a,0x29,0xa8,0x18,0xb2,0x7b,0x96,0x10,0x18,0x35, +0x41,0x92,0xe5,0xd5,0x55,0xfb,0x00,0xa3,0x27,0x50,0x2f,0xa3, +0x46,0x19,0xfa,0x96,0xa9,0x94,0x34,0x4d,0x58,0x8b,0xc6,0xcb, +0x35,0x0b,0x64,0xb0,0xf0,0x1a,0x90,0xc7,0xe1,0xf0,0x2d,0x6d, +0xe5,0x2c,0x0e,0x07,0x6e,0x2d,0xe8,0x2d,0xcf,0xa7,0x06,0xe2, +0xfe,0x62,0x76,0x2f,0xcc,0xd5,0xc0,0xdf,0xf7,0x10,0xf3,0x1a, +0xbd,0x5a,0xfd,0x73,0xee,0x56,0x7c,0x9f,0x4b,0x87,0x43,0x9b, +0x0d,0x27,0x3c,0x06,0x75,0x72,0xc0,0xc2,0x79,0x83,0xad,0x59, +0x8b,0x3b,0x5f,0xd3,0x52,0x7d,0x2f,0xa5,0x99,0x13,0x03,0x53, +0xc9,0x41,0xb9,0xfb,0x26,0x07,0x79,0xb3,0x27,0x5f,0xd9,0x5a, +0x7e,0x3b,0xa5,0x9d,0xa3,0x10,0xbd,0x95,0x58,0xd6,0x6c,0x6e, +0xd2,0x97,0xaa,0xc5,0xf4,0xba,0xf4,0x5a,0xb7,0xd2,0x6f,0xaf, +0x8e,0x24,0x5b,0x70,0x88,0x24,0x54,0x31,0x64,0x31,0x3a,0x2d, +0xd5,0xcc,0x37,0x86,0x15,0x97,0x61,0xf6,0x8b,0x08,0x18,0x4b, +0x6f,0x22,0x12,0x47,0xc3,0xd0,0xa5,0xa0,0xbf,0xb8,0x80,0xde, +0xc4,0xce,0x97,0x53,0xef,0xc2,0x3c,0x0d,0x70,0x2e,0xfe,0xff, +0xd4,0x9e,0x38,0x48,0x1c,0xf2,0x3f,0xd5,0x94,0x19,0xf6,0x59, +0x0f,0x5e,0x12,0x1c,0x24,0x0c,0xf8,0xa3,0x75,0xfa,0x13,0xfd, +0x25,0x78,0xef,0x89,0xe1,0x92,0x99,0xf2,0x57,0xe2,0x00,0x1c, +0x66,0xda,0x23,0x7e,0xd5,0xdd,0x25,0x54,0x74,0x8a,0x15,0x10, +0x0e,0x93,0x99,0xe3,0xab,0xdc,0xad,0x16,0x38,0x14,0xd9,0xf2, +0x7f,0x35,0x54,0xf7,0x9d,0x7d,0xcb,0xbd,0x44,0x86,0xb1,0x4a, +0x3b,0xd8,0xa0,0x09,0x43,0x98,0xd2,0xe4,0x84,0x52,0xad,0xcb, +0xac,0x45,0x82,0xea,0xf2,0xf1,0xac,0x6f,0xf0,0xd9,0x74,0xad, +0x0f,0xe0,0xc8,0x2a,0x67,0x08,0x6b,0x88,0x55,0xb5,0x51,0xb5, +0x71,0x31,0xed,0xa3,0x6e,0xd7,0x66,0xa7,0x66,0x3b,0x4e,0xc8, +0xb2,0x26,0x78,0xef,0x27,0xb8,0xc7,0x88,0x85,0x14,0x60,0x5b, +0x55,0xeb,0x36,0x19,0x94,0xb8,0x59,0xf3,0x5d,0xce,0x3d,0x36, +0xcd,0xb6,0x9c,0x70,0x0d,0xa6,0x92,0x45,0xf4,0x02,0x96,0xf2, +0xab,0xb1,0x64,0x1e,0xde,0xfb,0x95,0x45,0x41,0x0c,0x21,0x37, +0xe8,0xdd,0x8f,0x29,0xf8,0x68,0x2c,0x65,0x9e,0x0e,0xb2,0xc1, +0xaf,0x37,0x4e,0xa1,0xf1,0xec,0x9a,0xa2,0x9e,0xa0,0x1a,0x76, +0xc1,0x7c,0x3d,0x9c,0x8f,0xd5,0xa0,0xa6,0x47,0xc1,0x76,0x06, +0x6c,0x63,0x9b,0x30,0x87,0x28,0xdb,0x70,0x24,0x83,0xb2,0x83, +0x48,0xd6,0xe3,0x60,0xcd,0x56,0x7b,0xd5,0xbb,0x40,0xb2,0x68, +0xa4,0x76,0xd6,0xb8,0xa6,0x08,0x64,0xf1,0xa5,0x0d,0xd1,0xc5, +0x29,0x0c,0x6a,0xfc,0xb0,0x08,0x8f,0x2f,0xd3,0xcc,0x31,0x06, +0xd7,0x1b,0xa0,0xfa,0x2c,0x16,0xbe,0xa1,0x9d,0x1d,0x8b,0x43, +0xe1,0xeb,0xc5,0xe0,0xb5,0x36,0x9b,0x76,0xf6,0xe9,0x27,0xb3, +0x9e,0x80,0x86,0x06,0xac,0xc6,0xd1,0xa4,0xa5,0xaf,0xfa,0x71, +0xc6,0x4d,0x7a,0x17,0xfb,0x37,0x3a,0xac,0xb4,0xa0,0x5c,0x6d, +0xa5,0x1d,0xe9,0xec,0xad,0x7b,0x98,0x7b,0x43,0x96,0xc9,0xef, +0xdd,0x68,0xb7,0x46,0x6e,0xd2,0xaf,0x6b,0x97,0x44,0x82,0xe2, +0x02,0x4e,0xfb,0x07,0xfa,0x07,0xf2,0xc7,0xcf,0x44,0x57,0x9c, +0xad,0x3a,0x53,0xa9,0x0e,0x33,0x7b,0x71,0x3a,0x75,0x80,0xe3, +0xba,0x31,0x9c,0x89,0x2b,0x8f,0x3e,0x1f,0x59,0x21,0x8b,0xe3, +0x7d,0x51,0x65,0xc7,0x74,0x93,0xd5,0xf5,0xae,0x7c,0x6e,0x79, +0x66,0x6d,0x6a,0x13,0x77,0x03,0xdd,0x71,0xa3,0x3e,0x6c,0x60, +0x82,0x70,0xea,0x76,0xfc,0x86,0x3e,0xdf,0xf7,0xd5,0x36,0xfc, +0xeb,0x77,0x0d,0x2f,0x73,0xff,0x3a,0x15,0x1e,0x4e,0xa1,0x02, +0x0c,0xc6,0x6d,0x7c,0x43,0x85,0x6a,0x82,0xc2,0x8c,0x18,0x0a, +0x61,0xdd,0xac,0xe8,0x22,0x29,0x4e,0x5f,0x14,0xd6,0xc3,0x45, +0x56,0x64,0x31,0x52,0xaa,0xbf,0xdd,0x8b,0x16,0xac,0x19,0xbe, +0x24,0x05,0xd7,0x72,0x1f,0x26,0x5d,0xd3,0x4f,0xe1,0x0f,0xeb, +0xec,0x5d,0xe8,0xb9,0x9a,0xc3,0xab,0x86,0x42,0x59,0x37,0x83, +0x77,0x6a,0xc9,0xe1,0x0b,0xde,0xd7,0xf7,0x74,0x1a,0xef,0xe7, +0xf3,0x0c,0xb3,0x36,0x26,0x19,0xd0,0x0e,0x7d,0xa3,0xa8,0x22, +0x38,0x01,0x75,0x60,0x93,0x21,0x6e,0xc2,0xc5,0x30,0x41,0x86, +0x16,0x42,0x04,0x58,0xb0,0xca,0xc3,0xc5,0x52,0x74,0x1e,0x2e, +0x83,0x9e,0x0e,0xfc,0x96,0xc6,0xe8,0x0c,0xa5,0x0d,0xc9,0x01, +0xb5,0x6c,0x58,0x18,0x0b,0x44,0x16,0xcd,0xfb,0xa3,0xb6,0x37, +0x6e,0xf1,0x42,0x75,0x33,0x1f,0xb9,0xaf,0xe9,0xa1,0x44,0x63, +0xca,0xf4,0x4b,0xfe,0xaa,0xfb,0xbd,0x23,0xb0,0x83,0xf7,0x3a, +0xe4,0x79,0x78,0xe7,0x61,0x0e,0xd7,0x08,0xf3,0x48,0x2a,0x7e, +0x13,0x8b,0xa3,0xa3,0x50,0xad,0x3d,0x8a,0x0f,0x06,0xb5,0xa3, +0x30,0xea,0x00,0x8c,0xe0,0x14,0xbd,0x1e,0x44,0x7c,0x26,0x83, +0x3c,0x26,0xc0,0xed,0x88,0xcb,0x61,0x77,0x0e,0x9d,0xc5,0x35, +0x9d,0xc2,0xd7,0xef,0xf1,0x43,0x1b,0x7c,0xf8,0xd8,0x7f,0x84, +0x41,0xd8,0xbe,0x4a,0xca,0x22,0xbb,0xc8,0x54,0x48,0x74,0x14, +0x44,0xcc,0x61,0x93,0xce,0x25,0x94,0xc5,0x96,0x70,0x10,0x4d, +0x7d,0x78,0xa6,0xc2,0x9a,0x64,0xba,0xa7,0xbb,0xa6,0x39,0xb7, +0x52,0x58,0x57,0x78,0x28,0xef,0x40,0x1e,0x07,0xcb,0x9a,0xb1, +0x8a,0x89,0xcf,0x88,0xcd,0x88,0xca,0x30,0x4d,0xe4,0x77,0xac, +0x35,0xdf,0xb4,0x5e,0x56,0xed,0xc4,0x97,0x15,0x96,0x94,0xe4, +0x95,0x73,0x82,0x6d,0x33,0x89,0xcd,0x88,0xce,0x8c,0xcc,0x30, +0x89,0xe3,0xbd,0x37,0x3a,0x6f,0x96,0x1b,0xd7,0xed,0xe0,0x73, +0xf3,0x33,0x8b,0xd3,0xce,0x71,0xbf,0x31,0xa9,0xbb,0x93,0x77, +0x25,0x7b,0xee,0x77,0xf6,0xb4,0xf2,0x70,0xe4,0xc4,0x02,0xbc, +0x06,0xf7,0x17,0x89,0xd3,0xe4,0xc2,0x34,0x1c,0xda,0x03,0x43, +0x85,0xc5,0xad,0xe2,0xe2,0x9f,0xe0,0x25,0x5c,0xa3,0xb1,0x37, +0xb7,0x28,0xa7,0x3c,0xb5,0xd0,0x36,0x83,0xaf,0x4d,0xf6,0xcb, +0xf1,0xcb,0x3c,0x9c,0xa1,0x0e,0x06,0xcd,0x8c,0x38,0x1d,0xfd, +0xc8,0xc1,0x92,0x3d,0x35,0x7b,0xf2,0xe5,0x3e,0x7c,0x8e,0x7b, +0xb6,0x73,0x0a,0x85,0x9a,0x26,0x99,0xc4,0xf7,0xdc,0xde,0xb2, +0xdd,0xb9,0x94,0xf3,0xe7,0x7a,0x66,0x49,0x29,0xe4,0xe0,0x81, +0x9a,0x14,0x21,0x3c,0xa6,0x00,0xa1,0x47,0x2a,0xce,0x53,0xb0, +0x94,0x15,0xdf,0x58,0x51,0x74,0xb0,0x48,0x02,0x07,0xf7,0x7e, +0x22,0x50,0xb0,0x08,0x0b,0x68,0x80,0xfc,0x1a,0x80,0x24,0x99, +0x34,0xa6,0xfa,0xde,0xd8,0x7d,0x73,0x97,0xa4,0x1d,0x95,0xb0, +0x2b,0x7e,0x47,0xbc,0xbb,0xba,0x3c,0x54,0x16,0x2a,0x3b,0x7e, +0xf1,0xe9,0x35,0x49,0x3b,0xea,0xbf,0x2b,0xa6,0xec,0xef,0xaf, +0xe0,0x71,0xfe,0x42,0xc9,0x8d,0xfc,0x2b,0xf2,0xff,0xb9,0x82, +0x87,0xd1,0xde,0xfe,0x0a,0x1e,0x3b,0x4e,0xfe,0x47,0x3b,0xea, +0x74,0x57,0x78,0x67,0x38,0x27,0xce,0x96,0x2a,0xa6,0x94,0x87, +0x97,0x85,0x97,0x9e,0xe5,0x84,0xaf,0xf1,0x13,0x09,0x0a,0xfe, +0xf1,0x54,0xb0,0x16,0x84,0x82,0x75,0x07,0x5a,0x83,0x31,0x2c, +0x6b,0xe8,0x02,0x4b,0x3c,0xfe,0xc1,0x60,0x02,0xfa,0xa3,0x65, +0x97,0x15,0x98,0x8b,0xbb,0xd8,0xe5,0x79,0x6e,0xf7,0x60,0xac, +0xc6,0x2f,0x46,0x3f,0xb0,0xa8,0x6d,0xb7,0x6e,0xda,0x36,0xcd, +0x5c,0x93,0x3f,0x2e,0x55,0x5c,0x89,0xe8,0xd7,0xb7,0xd3,0x8c, +0xbe,0xa4,0x23,0xc9,0x0b,0x7a,0x31,0x31,0x9d,0xaa,0x2b,0x84, +0x4a,0x22,0x2e,0x81,0x31,0xc2,0x12,0x46,0xf4,0x13,0xdf,0x91, +0xa0,0x8b,0x92,0x58,0x94,0xe5,0x11,0x3e,0x45,0x3f,0x7e,0x63, +0xf4,0x66,0x0e,0x93,0x96,0x49,0xd5,0x3c,0xfe,0x53,0xc6,0xa4, +0xbf,0x9a,0xc7,0xb0,0xcf,0x83,0x04,0x7d,0xea,0xda,0x0f,0xe1, +0x1e,0x58,0x6c,0x80,0x8b,0xd1,0x0a,0x0f,0x75,0x83,0x0e,0x05, +0x84,0x61,0x78,0x69,0x23,0x6e,0xa5,0x41,0x7b,0x52,0x85,0x29, +0x0f,0x8e,0xb0,0xec,0x32,0x78,0x84,0xc3,0x25,0x0e,0x16,0x31, +0xa2,0x01,0x18,0x12,0x51,0x43,0xde,0xa5,0xfc,0x9a,0xd9,0x77, +0xcc,0xe7,0x98,0xcf,0xf1,0x04,0x43,0xfe,0x65,0xfa,0x8b,0xac, +0x9f,0xf3,0x39,0x34,0xef,0x56,0x5c,0xea,0x94,0x66,0x7c,0xfa, +0x0b,0x79,0xcc,0xc3,0x45,0xac,0x99,0x0a,0x2e,0xc4,0x79,0xb0, +0x90,0x55,0xec,0x13,0x0b,0xc9,0x6a,0xc6,0x2d,0x28,0xb2,0x5a, +0x4b,0x18,0x61,0x28,0x6a,0xb0,0x6b,0x33,0xf7,0x5c,0xd4,0x7c, +0xca,0x34,0xc4,0x4a,0x60,0x63,0x8d,0x54,0x6e,0x45,0xb9,0x0f, +0x28,0x81,0x9b,0x47,0x03,0xa1,0xd9,0x21,0xb3,0x23,0xf2,0xa3, +0xd4,0xfa,0x87,0x0a,0x69,0x04,0x9b,0x7d,0x71,0xa2,0x41,0x7f, +0x22,0x7b,0xcd,0xab,0xcc,0x57,0xb1,0x30,0x55,0x1d,0xb6,0x52, +0x8a,0x3c,0x4a,0x9a,0xbe,0x79,0x2f,0x4d,0xdf,0x34,0x69,0x29, +0xce,0x61,0x2d,0x2b,0xa8,0x07,0x10,0xf1,0x9d,0x30,0x4e,0x78, +0xc7,0x8a,0x0d,0x74,0xb0,0xe0,0x3a,0xd0,0x87,0x75,0x0c,0x78, +0xa2,0x17,0x01,0x07,0x0a,0x8e,0x1d,0x58,0xe5,0x1c,0x74,0x25, +0x67,0xda,0x4f,0xf5,0xde,0xd0,0x80,0x75,0x68,0x40,0xff,0x6f, +0x23,0x81,0x3d,0xf4,0xbf,0xf6,0xb0,0xa2,0x0a,0x16,0x10,0xc1, +0xbb,0x57,0xf4,0xa6,0xe3,0x7f,0xb7,0xe2,0x1b,0xb2,0x62,0x97, +0x25,0x8e,0x31,0xd4,0x2c,0xb0,0x80,0x11,0x9d,0x85,0x55,0x11, +0x52,0x36,0x38,0x0e,0x88,0x79,0xe0,0x07,0xe3,0xc6,0x08,0x46, +0x4c,0x54,0xab,0xaa,0x38,0xfd,0x15,0x14,0x35,0x32,0x59,0x7e, +0xe7,0x4a,0x8b,0xce,0x67,0xd4,0xab,0xd7,0x28,0x1f,0x99,0x0a, +0xea,0x78,0x9c,0x45,0x75,0x93,0xf4,0xf7,0x5a,0xb5,0xdb,0x58, +0xc5,0xb7,0xb7,0xa5,0x6a,0xb5,0x9e,0x9e,0xbb,0x53,0x02,0x79, +0xcc,0x79,0xcd,0x08,0x2b,0x94,0x0d,0x64,0x7b,0xeb,0x96,0x3b, +0x16,0x75,0xe6,0x3e,0x7c,0xda,0x81,0x4c,0x9f,0x8c,0xbd,0xab, +0x42,0xa7,0x85,0x8e,0x3b,0xce,0x01,0x0b,0xbf,0xc1,0x6e,0xfc, +0xed,0xba,0xde,0x06,0x4a,0x01,0x76,0x53,0x9f,0x3d,0x98,0xc5, +0x31,0xc7,0x70,0xe2,0x71,0xe4,0x4f,0x44,0x50,0x1f,0x90,0x1e, +0x09,0x2d,0x51,0xb0,0x3f,0x2b,0xd5,0x27,0x65,0x5f,0xe2,0x01, +0x4e,0x69,0x28,0x0c,0x27,0x10,0x8f,0x1c,0xc6,0x33,0xc2,0xef, +0x6a,0x98,0x07,0x1c,0xb5,0xf9,0x61,0x8a,0x5c,0x58,0x4a,0xe6, +0x0b,0x0b,0x4c,0xc5,0x05,0x2b,0xe5,0x02,0xdf,0x8a,0xaa,0x90, +0x0b,0x83,0x5a,0x71,0x10,0x84,0x31,0xe5,0xb1,0xe7,0x62,0xf3, +0xe3,0xf7,0xb5,0xf0,0x4b,0x9c,0xf0,0xbb,0x1d,0x38,0xc2,0x3f, +0x56,0xce,0xf7,0x45,0x5d,0x89,0xeb,0x4b,0xe4,0x94,0x76,0x8f, +0x89,0x09,0x1c,0x69,0x67,0x85,0xad,0xca,0x73,0x04,0xd9,0xe5, +0xa5,0xd7,0x64,0x5a,0x35,0x7f,0x66,0xc1,0xe0,0x68,0x50,0xe7, +0xca,0x71,0x01,0xdb,0x7e,0xf9,0xc2,0xbb,0x73,0x77,0xb9,0x6a, +0xf4,0x94,0xd6,0xcb,0x76,0x6c,0xd0,0x9d,0xaa,0xbf,0x81,0xb3, +0x81,0xb5,0xec,0x31,0x54,0x39,0x38,0xdd,0x7d,0x89,0x47,0x97, +0xef,0x1d,0xff,0x5f,0xac,0x8e,0xf2,0x09,0xe3,0x72,0xe7,0xd5, +0x6e,0xdc,0x65,0xee,0x6e,0x67,0xef,0x54,0xbc,0x9d,0xaf,0x2a, +0x3f,0x57,0x93,0xdf,0xcc,0x6d,0xe8,0xfb,0xc5,0x09,0x86,0x8f, +0x81,0x9d,0x4c,0x54,0x87,0xea,0xbf,0xe6,0x28,0xc6,0x51,0x8e, +0x53,0x41,0x07,0xcb,0x59,0xd4,0xa2,0x0d,0xef,0x6f,0x67,0xd1, +0x58,0xa5,0x1d,0xf7,0x9b,0xb0,0x6d,0xe2,0x4c,0xca,0x65,0x74, +0x20,0x07,0x7d,0xf1,0xa1,0x24,0xb8,0x96,0x43,0xe8,0xd8,0xfc, +0x06,0x16,0x53,0x68,0xa1,0x0a,0xfb,0x88,0xec,0xf0,0xd6,0x23, +0x5b,0x8e,0x72,0xb0,0x1a,0xe6,0xb4,0xe2,0x1c,0x18,0x03,0x73, +0x5b,0x29,0x5a,0x19,0xcc,0x5e,0x4a,0xee,0xcb,0x6e,0x2e,0xf2, +0xa8,0xe1,0x2d,0x76,0xac,0xdf,0xbd,0xdc,0x97,0x13,0xef,0xb0, +0xfb,0x8e,0xef,0x0b,0xdb,0x17,0x16,0x65,0xc2,0x77,0x45,0xab, +0xa2,0x51,0x1b,0x58,0xb3,0xd7,0xe2,0xaf,0x24,0x77,0x26,0x71, +0xe2,0x32,0x41,0x41,0x62,0x16,0x9d,0xdf,0xf2,0x68,0x79,0x51, +0x0b,0xbf,0xfe,0x86,0x93,0xb4,0xb4,0xb7,0x96,0xf1,0x5d,0xed, +0xbe,0x72,0xe9,0xda,0x42,0x39,0xff,0xe8,0x46,0xed,0xf3,0xb8, +0x67,0x9c,0xc2,0x8e,0x62,0xbc,0xfd,0x8c,0xf7,0xb1,0xb3,0x39, +0x5a,0x10,0x46,0x63,0xc9,0x20,0xf6,0x87,0x80,0xcd,0x56,0xba, +0x9a,0xb5,0xee,0xaa,0xad,0xd7,0x93,0x9e,0xbc,0xd4,0xb8,0xfc, +0x9e,0x86,0x06,0x79,0xd2,0xfe,0x26,0xcd,0x0a,0xa6,0x24,0x3e, +0xa9,0x5c,0x0b,0x54,0x58,0xab,0x44,0x55,0xe5,0x46,0xbc,0x4c, +0x60,0x60,0x1b,0x0e,0x84,0xc1,0x0f,0x5a,0xd1,0x5e,0x7e,0x03, +0x07,0xe3,0x08,0x53,0x18,0x81,0x57,0x18,0xdb,0x40,0xeb,0x20, +0x7b,0x69,0xad,0xef,0x75,0x0a,0x0c,0xce,0xbf,0x99,0x7d,0xa2, +0x8d,0xf7,0x08,0x74,0x0d,0x74,0x0e,0xa2,0x98,0xa7,0x97,0x74, +0xdf,0x2d,0x93,0x64,0xd2,0x6b,0xb1,0xcb,0x14,0x8e,0xb1,0x87, +0xd7,0xec,0xde,0x64,0xa7,0xef,0xd4,0xbe,0xab,0xc7,0xe7,0x92, +0x85,0x37,0x9f,0xb3,0xb6,0x78,0x73,0x8d,0x81,0xad,0x95,0xb1, +0xfd,0x5a,0x97,0x5c,0x13,0xfe,0x56,0x45,0x6f,0x5d,0x63,0x6b, +0x8d,0x79,0xab,0xcd,0x45,0x87,0xbc,0x16,0x5e,0xaf,0xdc,0xb2, +0xda,0xa1,0x81,0x53,0x9e,0x81,0xf5,0x24,0xc3,0x38,0x63,0x69, +0x8c,0x7e,0x43,0x02,0x1f,0xd8,0xe3,0xf3,0x6c,0x5f,0x27,0x07, +0x16,0xb8,0x95,0xc4,0x75,0xc4,0xf4,0x46,0x74,0xd8,0x46,0xf3, +0xa1,0x7a,0xc1,0xc6,0x47,0xcd,0xb9,0x61,0x4f,0x56,0x92,0x8b, +0x17,0x15,0x72,0xdd,0x8b,0x8a,0x7f,0x29,0xef,0x30,0x17,0x0d, +0x88,0x42,0xae,0xdc,0xa4,0x94,0x33,0xc2,0x19,0x21,0x85,0xc0, +0x70,0x3d,0x1c,0x2e,0x8e,0x35,0x11,0xc6,0xe2,0x1b,0x5c,0xca, +0xa6,0xc8,0x54,0x61,0x02,0xd3,0x98,0x9c,0x54,0xaf,0x05,0x2f, +0x60,0x66,0x3b,0x2b,0x66,0xe0,0x44,0x52,0x63,0xd3,0xba,0xae, +0x78,0x6b,0x43,0x09,0xef,0x7a,0xcd,0xec,0xb2,0x5d,0x3d,0x0d, +0x7b,0x9a,0x8a,0x28,0x22,0xd5,0x52,0x29,0xb2,0x50,0x0c,0xa6, +0x3c,0x5e,0x45,0xac,0x21,0x2e,0x07,0x5d,0x0e,0x39,0x51,0x92, +0xf3,0xf2,0x9d,0xb4,0xcf,0xd6,0x00,0xf3,0xa6,0x19,0xbf,0x11, +0x07,0xb0,0xae,0x7e,0x2e,0x7e,0x4e,0xfe,0x29,0xc6,0xfc,0xa7, +0xb2,0x9f,0x4b,0x7f,0xaa,0xe6,0x32,0x84,0xd3,0x04,0xbb,0x85, +0x36,0xa0,0x41,0x38,0x0c,0x13,0x08,0xec,0x14,0xf4,0x71,0x27, +0x2b,0x0e,0x87,0xb5,0xd2,0x64,0xd7,0x25,0x20,0x2c,0x26,0xfe, +0x40,0x1a,0xc1,0xcd,0x92,0x85,0x05,0xa8,0x4b,0xc4,0x1c,0x8c, +0x10,0x72,0x18,0x43,0x98,0x41,0xc4,0xb9,0x1d,0xc2,0x5c,0x46, +0x9c,0x3b,0x85,0x08,0x73,0xf5,0xc5,0xb9,0x8c,0x94,0x97,0x41, +0x14,0xd6,0x2d,0x4a,0x6b,0x6a,0x11,0x06,0x8a,0xd9,0x64,0x7f, +0xf7,0xce,0xee,0x9d,0xf5,0x96,0xbb,0xf9,0x7c,0xbb,0x22,0xdd, +0x0c,0x63,0x2e,0x5b,0xf4,0x27,0x6f,0xe1,0x28,0xfc,0x7b,0x0e, +0x5b,0xd2,0x52,0x76,0x25,0xb7,0xc3,0x38,0x87,0xdf,0xad,0xbb, +0x7d,0xb5,0x83,0x3e,0x87,0x4a,0xfc,0x37,0x1c,0x98,0x82,0xb1, +0x26,0x10,0x8b,0x2b,0xba,0x61,0x05,0x14,0xb7,0x33,0xe2,0x5a, +0x21,0x94,0xf8,0x34,0xb9,0x76,0x7b,0x54,0x5b,0x79,0xf2,0xf9, +0x4e,0xe5,0xdb,0x32,0x2c,0x38,0x5c,0x3c,0x9e,0x40,0x19,0xc6, +0x18,0x81,0x15,0xae,0xc4,0xf5,0xec,0xf1,0x59,0xfe,0xd3,0x0f, +0xce,0xe1,0xe8,0x18,0x5f,0x76,0x6c,0x71,0xa0,0xa1,0xa6,0x75, +0xb0,0xdf,0x51,0x87,0x31,0xe3,0xbf,0xf8,0xa9,0x4b,0x79,0xd9, +0x77,0xe3,0xb4,0xe2,0x6e,0x47,0xfc,0x79,0x0a,0x08,0x47,0x71, +0x7c,0x74,0x53,0xf4,0xe5,0x33,0x2d,0x9c,0x70,0xc0,0x82,0xe0, +0xca,0xb7,0xb0,0x92,0xe9,0x96,0x8a,0xee,0xae,0x9d,0xc2,0xa2, +0x9f,0x19,0x19,0x8f,0x2b,0x3f,0xb1,0x70,0x40,0x0d,0xd6,0x8e, +0xc7,0xb5,0xd4,0x21,0xe9,0xc1,0x5c,0xf2,0xf4,0x55,0xc5,0xaf, +0x91,0x4f,0x28,0x5b,0x79,0xda,0x4e,0x2d,0x3d,0x22,0xfc,0x74, +0xf8,0x31,0x4d,0x50,0xc5,0x45,0x15,0xd5,0xc8,0xc0,0xfc,0xa0, +0xb8,0xc0,0xd3,0x47,0x8f,0xaa,0x07,0x05,0xa9,0x1e,0xbb,0x0d, +0xf3,0xdb,0x71,0x3e,0x34,0x9b,0x60,0x33,0x2e,0x32,0xa1,0x80, +0xf3,0xc0,0x12,0x8b,0x79,0x4b,0xe6,0x72,0xc2,0x4e,0x68,0x27, +0xb0,0x95,0x85,0x11,0x49,0xf0,0x55,0xfe,0xfd,0x52,0x8f,0x26, +0x7e,0xb9,0xeb,0xc4,0x5d,0x38,0xd7,0x97,0xc3,0x68,0x16,0x7d, +0xf6,0xe3,0x38,0x13,0x64,0x35,0x9b,0xc4,0x01,0x8a,0x50,0xfd, +0x7f,0x0d,0xe9,0xbd,0x07,0x4a,0xf6,0xe0,0x8e,0x06,0xeb,0x07, +0xa0,0x91,0x0b,0x0b,0x4e,0x43,0x98,0x3a,0xcc,0x12,0x8b,0x7a, +0x84,0x22,0x18,0x42,0x7b,0x64,0x17,0xa4,0x10,0x7f,0xf9,0x8e, +0x1f,0xf6,0xd8,0x54,0xee,0xe5,0x73,0xeb,0xca,0x5e,0xc5,0xb5, +0x72,0x78,0x1a,0x97,0x91,0xa3,0x6d,0x6e,0x8f,0xbc,0xeb,0x6c, +0xbd,0xf9,0x2c,0x9b,0x73,0x2b,0x12,0xe4,0x34,0xd0,0x0c,0x53, +0x3c,0x20,0x38,0xc3,0x03,0xf5,0xf7,0xe3,0xc6,0x63,0xf1,0x94, +0x78,0xad,0x8a,0x00,0xe3,0x34,0x58,0x59,0xca,0x29,0x1f,0x27, +0x11,0xe5,0x8d,0xde,0xdf,0xc0,0x40,0xb1,0x9f,0xba,0x4b,0xe5, +0x1d,0xb2,0x22,0x7d,0x6d,0xfe,0xd6,0xb2,0x4b,0x8d,0xad,0xdd, +0xe7,0xae,0x71,0xe7,0x11,0xd8,0xc8,0xfc,0x88,0xc2,0xb3,0x45, +0x9c,0xa0,0xdd,0x2a,0x8e,0x65,0xce,0x14,0x9e,0x2e,0x2e,0xd1, +0x10,0x06,0xb7,0x22,0x61,0x8a,0x1b,0x8b,0x7a,0xd3,0x1b,0xcc, +0x28,0x80,0x94,0x3b,0xe9,0x38,0x9b,0x71,0x22,0x91,0xd3,0x67, +0x3d,0xe9,0x76,0x72,0x47,0xd8,0x4e,0x0e,0x67,0xc8,0x61,0x12, +0xe3,0x83,0x0b,0xf5,0xa8,0x87,0x54,0xc3,0x11,0xe7,0x6d,0xf9, +0xe7,0xcf,0x7a,0x9f,0x96,0xbf,0x2e,0xb6,0xaa,0xb3,0x6b,0x75, +0xda,0xec,0xb2,0xd2,0x6b,0x91,0x6f,0xba,0x39,0xff,0x7b,0xe6, +0xf3,0x92,0xbb,0x75,0xb7,0x6d,0x7f,0x72,0x79,0xe6,0xc3,0x29, +0x17,0x0a,0x3d,0x04,0xbf,0x83,0x34,0xf8,0x8e,0x11,0x56,0xe1, +0x78,0x12,0x70,0xce,0xa7,0xcd,0xb7,0xc8,0xc2,0x97,0x4f,0xd9, +0x99,0x65,0x1a,0x43,0xb1,0xd4,0xf0,0x04,0x72,0xb4,0x74,0x5f, +0x8d,0x6f,0x81,0xc5,0x3e,0x3e,0x65,0x77,0xa6,0x4d,0x3c,0xfd, +0xec,0x29,0x1d,0x6b,0xf0,0x1d,0x76,0xe2,0x77,0x8c,0x62,0xcb, +0x3b,0xb2,0xd3,0xcc,0xc6,0x46,0xe6,0x6c,0x5c,0x61,0x55,0xeb, +0xd2,0x42,0x0d,0x62,0x3e,0x35,0x88,0xdb,0x06,0x3a,0x98,0x6a, +0x21,0xfc,0x49,0x0d,0x62,0x26,0x76,0x7c,0x99,0x65,0x0e,0xec, +0x9f,0x65,0x1e,0xfb,0xb1,0x4d,0xfb,0xcb,0x2c,0x33,0x4f,0xdd, +0xc3,0x97,0x59,0xe6,0x49,0x3f,0xe0,0xa8,0x0a,0x4b,0xfe,0xda, +0xc7,0xdc,0x0f,0x67,0xfb,0xc5,0x28,0xfe,0x7b,0x96,0xf9,0x16, +0xfe,0x50,0x5e,0xa1,0x9a,0x03,0x7f,0x4b,0x96,0x52,0x24,0x59, +0x8a,0xb7,0x64,0x29,0x9e,0xc2,0x32,0xf4,0x64,0x51,0x29,0x59, +0xca,0x68,0x68,0x84,0xd1,0x2c,0x9e,0xfc,0x81,0x34,0x81,0xb9, +0x05,0x0b,0x3f,0x48,0x96,0x12,0x81,0x91,0x42,0x04,0x63,0x24, +0x59,0x8a,0x66,0xa7,0xa0,0xc9,0x88,0x9a,0x93,0x89,0xa0,0xa9, +0x2f,0x6a,0x32,0xa8,0x85,0x73,0x89,0x42,0xa3,0x59,0xa9,0x41, +0x11,0x91,0x25,0x18,0x90,0xf9,0x47,0xa6,0xf8,0x4f,0x09,0xe4, +0x60,0x0d,0xf8,0x75,0xa1,0x9f,0xb4,0xdc,0x2e,0xfd,0x35,0x82, +0x7d,0x1f,0xf7,0x67,0xd6,0xed,0xbc,0x1d,0xad,0xfc,0x4a,0xaf, +0x09,0x3e,0x38,0xf4,0x08,0x27,0x2a,0xd8,0x75,0xa1,0x91,0xfa, +0x97,0x22,0x54,0x71,0x7e,0x0f,0x2c,0x61,0xdf,0xc5,0xbe,0x8b, +0xff,0x35,0x89,0x0b,0x83,0x56,0x72,0xef,0x72,0xc5,0x7d,0x18, +0xaa,0xd1,0x21,0xd5,0x44,0x66,0xb7,0xa5,0xfb,0xf6,0x69,0xb6, +0x31,0xd5,0xb1,0xa9,0xd5,0x5a,0x30,0x84,0x95,0xa7,0xaa,0xe2, +0x54,0x6b,0x76,0x4f,0x70,0x14,0x65,0xee,0x3f,0x62,0xf9,0x64, +0x16,0xbf,0xf2,0x31,0x5e,0x6f,0xa0,0x29,0x64,0x88,0xa1,0x64, +0x69,0xc9,0xc6,0x6a,0xa3,0x86,0xdb,0xb7,0x1b,0x9e,0xe4,0xfc, +0xcc,0xd5,0x8b,0xcb,0x65,0x20,0xb0,0xfb,0x74,0xb7,0x6f,0xda, +0xa6,0x6f,0xd4,0x61,0xdd,0xeb,0x74,0xc1,0xdc,0x8b,0xaf,0xdc, +0xdc,0xb8,0xb5,0xc7,0x68,0x9b,0xf9,0x4a,0xbb,0x19,0x3b,0x72, +0x4c,0xf8,0x0f,0x65,0x3f,0x35,0x5c,0xed,0xbc,0x60,0x7a,0xc7, +0xfa,0x17,0x47,0x6e,0x98,0x10,0x09,0x65,0x24,0xb2,0x24,0xbc, +0xfc,0x74,0x25,0x07,0xbf,0x0a,0x13,0x95,0x4e,0xe2,0x44,0xb8, +0xc5,0x9c,0xd8,0x7e,0xdc,0x39,0xd8,0x9d,0x92,0x37,0x19,0x7c, +0x60,0xac,0x70,0x18,0x0e,0xdc,0x8c,0x3b,0xcc,0x73,0x0c,0x78, +0x08,0xe9,0x81,0x61,0xbf,0x34,0xc2,0x0c,0x0e,0xee,0x33,0x27, +0x56,0x1e,0xb7,0x0e,0x71,0xe1,0xec,0x02,0x7d,0x7c,0x8d,0xc6, +0xe0,0x66,0x26,0xd1,0x58,0x52,0x3b,0xfc,0xb3,0x26,0xef,0x5e, +0xa2,0x56,0x74,0x63,0xc4,0x1d,0xf8,0x4a,0x43,0x5c,0x21,0xb1, +0xbc,0x18,0x18,0x0a,0x31,0xcc,0x05,0xa4,0x70,0x65,0x28,0x0d, +0x54,0x43,0x59,0x7c,0x6e,0x4e,0x70,0x04,0xfd,0x7c,0x04,0x0b, +0x37,0xd5,0xe8,0x47,0x23,0x30,0x87,0x7a,0x1e,0x3d,0x4a,0x85, +0xf5,0x70,0x00,0x83,0x93,0x17,0xea,0xe0,0xfc,0xa5,0x9a,0x85, +0x72,0xf8,0xfe,0xd6,0xbb,0xfb,0xe1,0xfd,0xc4,0xe8,0x2c,0x7e, +0xf3,0xfb,0x46,0x98,0xb7,0xb4,0xa0,0x8d,0xc7,0x4d,0xbf,0x2e, +0xbf,0x04,0x93,0x35,0xf0,0x75,0x1a,0xe9,0xc0,0x5c,0x19,0xab, +0x28,0xaa,0x27,0x87,0xcd,0x3d,0xd6,0x3b,0x5b,0x36,0xee,0xe4, +0xcb,0x5b,0x4a,0xef,0x26,0x52,0x36,0xba,0x2e,0x85,0x1c,0x91, +0x7b,0x6d,0x76,0x33,0x6f,0xdc,0xc5,0x97,0xb6,0x16,0xde,0x4c, +0xa4,0xec,0x77,0x21,0x2e,0x25,0x9d,0xf8,0xab,0x31,0x0b,0x9d, +0x14,0xf5,0x76,0x60,0xb2,0x8c,0x15,0xc0,0x9e,0x36,0x4a,0x18, +0x9c,0x34,0x7f,0x31,0x2e,0x9a,0xa7,0x59,0x60,0x0a,0x9a,0x0f, +0x3e,0xfd,0x12,0x0e,0x43,0xfa,0x59,0xfe,0x90,0xd7,0xcb,0x60, +0xfe,0x82,0xc2,0x76,0x1e,0xb7,0xbe,0x5c,0xf2,0x10,0x26,0x69, +0xe0,0xdb,0x32,0xd2,0x8e,0xc9,0x26,0xac,0x22,0x27,0x9c,0x36, +0xba,0x83,0x36,0xda,0xd4,0xdf,0xe8,0x9d,0xc4,0x96,0xff,0xa1, +0xd1,0x0e,0x4e,0xb4,0x13,0x79,0xd2,0xd1,0x06,0xae,0x90,0x8d, +0x69,0x4c,0x87,0x89,0x84,0xd9,0x16,0xe0,0x3c,0xea,0xa5,0x02, +0xfe,0xab,0x02,0xc8,0xe4,0xfe,0x0a,0x20,0x45,0xc5,0x45,0xd5, +0x05,0xf4,0x47,0xea,0x7a,0x14,0xf3,0xd8,0x82,0x9b,0x39,0x8f, +0x92,0x7f,0x91,0xd4,0x1b,0xbc,0x89,0xe8,0x2f,0xac,0x17,0xfc, +0xf1,0x00,0x1b,0x99,0x27,0x89,0x0e,0x71,0x52,0x81,0xb1,0xb3, +0xcc,0xd9,0xbc,0xb3,0x79,0xe1,0x79,0x06,0x91,0xfc,0x31,0xaf, +0x63,0x3b,0x43,0xa9,0x0d,0x5f,0x37,0x81,0x6e,0x26,0xd4,0x2b, +0x74,0x57,0xc8,0x2e,0x0e,0x7d,0x83,0x89,0xa1,0x72,0x45,0x77, +0xaf,0x70,0xad,0x4b,0xbc,0xc6,0xc0,0x78,0x61,0x05,0xa1,0x7c, +0x61,0x36,0x8b,0xd7,0x68,0x20,0xfa,0x1d,0xae,0xcd,0x92,0xce, +0xa6,0x53,0x17,0x7a,0x6d,0x0a,0x3b,0x0c,0x2e,0x29,0x26,0x10, +0x58,0xdc,0x2b,0x31,0x96,0xb2,0x98,0xf2,0xa8,0x0a,0xa3,0x78, +0xde,0x07,0x07,0xb9,0xcc,0xd0,0x5b,0xd5,0xe0,0xcc,0x17,0x54, +0xe4,0xd4,0x65,0x34,0x72,0x3f,0xa3,0x25,0x73,0x04,0x6d,0xf4, +0xc0,0x92,0x0d,0xc0,0x39,0xe6,0xa8,0x8a,0xe3,0x50,0xa3,0xc6, +0x8a,0xff,0xf0,0xae,0xe3,0x45,0xd1,0x3b,0x4a,0x10,0x7f,0x3c, +0x73,0x0c,0xa6,0xa0,0x9c,0x6f,0xaa,0xc6,0x49,0x60,0x14,0x48, +0x69,0xe8,0xd1,0x00,0x69,0x42,0xe6,0x4c,0x4c,0x59,0xc4,0xf9, +0x33,0xb5,0xea,0xb0,0xe1,0x02,0xae,0x4d,0x62,0x60,0xbf,0x98, +0x4d,0x2e,0x3d,0x84,0xf0,0xe5,0x17,0x15,0xd7,0xc4,0x11,0xcc, +0x25,0x43,0x02,0xe1,0xca,0xc1,0x28,0x2d,0x7e,0xec,0x17,0x4e, +0x7c,0x29,0xe4,0x21,0xe9,0x4b,0xa8,0x18,0x81,0x0a,0x2a,0x19, +0x07,0xbf,0xed,0x7e,0x76,0xfd,0xfa,0x12,0x43,0xca,0xff,0x28, +0x7d,0x2d,0xe9,0x4b,0xd8,0x1f,0xb0,0x3b,0x60,0x7b,0x88,0x53, +0xcc,0x90,0x56,0x1d,0xef,0x31,0xfa,0x87,0x13,0x3a,0xb5,0x84, +0xa5,0x2c,0x4c,0xa8,0x50,0x15,0x47,0xf4,0x0a,0xe3,0x59,0x58, +0x5d,0x77,0x72,0x66,0xd8,0xb2,0x90,0x0d,0xea,0x4e,0xc7,0x02, +0xfc,0x1d,0xc6,0x18,0x4a,0xc2,0x72,0x2d,0xcc,0x8d,0xdc,0xfc, +0x9b,0x51,0x5a,0xd1,0xcf,0x25,0x61,0xb9,0x69,0x78,0x64,0x1b, +0x0f,0xfb,0xf4,0xa5,0xd5,0xa2,0x09,0x4e,0xaa,0xe0,0xaa,0x4f, +0x3b,0x78,0xfa,0x9e,0x78,0xe3,0xa7,0x99,0xaa,0xe2,0x5c,0x76, +0xee,0xb9,0x9d,0x2f,0x34,0xe1,0x11,0xd3,0x90,0x9a,0xd2,0xa8, +0x45,0x21,0xb9,0x51,0x8a,0xea,0xb0,0xcf,0x43,0xd5,0xb0,0x47, +0x6a,0xad,0x43,0x4b,0x58,0xc3,0xc2,0xd8,0x32,0x55,0x71,0x54, +0x8f,0x30,0x91,0x85,0xc5,0x35,0x27,0x67,0x84,0x2d,0xf9,0xd2, +0x5a,0xa0,0xe3,0x18,0x53,0xa9,0xb5,0x06,0xe6,0x5a,0x4e,0xde, +0xf5,0x28,0xad,0x98,0x5f,0xce,0xd0,0xd6,0x66,0xa0,0xb7,0x3e, +0x0f,0xde,0x06,0x18,0xcc,0xe2,0x58,0x17,0x55,0x70,0xd4,0x47, +0x1f,0x76,0xe6,0x9e,0x78,0xd9,0xe3,0x0c,0x55,0x71,0x11,0xfb, +0x43,0x7f,0x6b,0x97,0x99,0xfa,0x94,0x14,0x8a,0x18,0x16,0x4b, +0xad,0x89,0x2d,0x70,0x4b,0x8a,0x97,0xc5,0x46,0xb0,0x87,0xc6, +0x4b,0x73,0xf6,0xd8,0x1c,0xff,0x69,0xbe,0xb3,0x39,0x08,0x62, +0x96,0x87,0x2e,0x0e,0x34,0xd2,0xb4,0xa2,0xf1,0xd2,0x7e,0x0c, +0x7e,0xdd,0x2f,0x41,0xcf,0x30,0x57,0x0a,0x72,0xbe,0x44,0xcc, +0x37,0xfd,0x11,0xf3,0x00,0x13,0xdd,0x1c,0x73,0xe9,0x8c,0xe4, +0x53,0xdf,0x2b,0x16,0x93,0x55,0x1d,0xb3,0x9b,0x17,0x97,0x7a, +0x59,0xf0,0xbf,0x3a,0x3f,0xb3,0xb8,0x63,0xcc,0x89,0x03,0x60, +0x33,0x11,0x97,0x9a,0xf6,0x28,0x39,0x86,0xf2,0x92,0x63,0xde, +0x12,0x33,0xf9,0x33,0xfd,0x4d,0xf6,0x6f,0x94,0x99,0x58,0xf4, +0x28,0x2e,0x5e,0x65,0xb1,0x0d,0x17,0x12,0x58,0x08,0x3a,0xb8, +0x90,0x15,0xbe,0x16,0xef,0x91,0x1d,0x81,0x91,0xe7,0xb5,0x84, +0x07,0x7a,0xe2,0x13,0x76,0x4d,0x8e,0xd7,0x75,0xcd,0x67,0x4c, +0x6d,0x92,0xb4,0xdb,0xd8,0xa2,0xdf,0x4b,0xed,0x62,0x53,0x84, +0x02,0x52,0x8a,0x23,0xf3,0x71,0x62,0x12,0x7e,0xdf,0x46,0x79, +0x3f,0x7c,0xbf,0x0b,0xa6,0xb8,0x50,0x96,0x2d,0x7e,0x2b,0xda, +0x92,0x2a,0xf8,0x36,0x0d,0x16,0x46,0xc1,0x0f,0xb2,0x18,0x3e, +0x08,0xe7,0x1d,0xc4,0x89,0x4e,0x38,0x84,0x9b,0x26,0x4c,0x24, +0xd4,0x2e,0x75,0x68,0x17,0xa3,0xbb,0x0a,0x6d,0x4c,0x9b,0x31, +0x3e,0x64,0x7c,0xd8,0x50,0xe2,0x33,0x9d,0xc2,0x41,0x12,0x11, +0x19,0xfe,0x63,0xc4,0x71,0xd8,0x8c,0x2c,0x5f,0x5c,0x8b,0x8b, +0x3f,0xf8,0x45,0x07,0x9e,0x08,0x0e,0x52,0x0f,0xf4,0x0f,0x39, +0x1b,0x93,0x1c,0x91,0x72,0x36,0x4d,0x1d,0x74,0xdb,0x71,0xc3, +0x19,0xe6,0x05,0xcc,0x6b,0x93,0xb6,0x5a,0xa4,0x46,0xa7,0x46, +0xa6,0xc9,0x13,0xf8,0x5d,0x9b,0x5c,0x8c,0x4c,0xe5,0xb5,0xee, +0x7c,0x76,0x76,0x56,0x41,0x46,0x11,0x07,0x03,0x7f,0x60,0x8e, +0xa1,0xaf,0x09,0xec,0x62,0xf7,0xad,0xdd,0x64,0x8e,0x9a,0xa6, +0x79,0x72,0x1e,0x54,0x1b,0xae,0x56,0x55,0x75,0x71,0x90,0xb2, +0x8d,0xc0,0x27,0xf8,0x1b,0x3f,0x31,0xbd,0xd8,0x4a,0xe0,0x04, +0x1c,0xc6,0x13,0xac,0x72,0x80,0x58,0x4f,0xda,0x84,0x12,0xd3, +0x8b,0xc2,0x22,0xe5,0x2c,0x69,0xef,0xf8,0x1b,0x69,0xef,0x78, +0xc9,0x1f,0x42,0x09,0x23,0x96,0x50,0xeb,0x11,0x4a,0x26,0x88, +0x25,0xcc,0xb0,0xcf,0x83,0x29,0x16,0x53,0xfe,0xa3,0x6f,0x38, +0x9b,0x85,0x79,0x55,0xff,0xd1,0x37,0x34,0x6a,0x3e,0x39,0xe3, +0xf8,0x7f,0xeb,0x1b,0x6e,0x91,0x06,0x46,0xd7,0xff,0x56,0xdf, +0x70,0xde,0x17,0x7d,0xc3,0x00,0x76,0xea,0xee,0x78,0x63,0x49, +0xdf,0x70,0xd2,0x17,0x7d,0x43,0xf8,0xf7,0xff,0xaa,0x6f,0xa8, +0x2c,0x16,0x7e,0x23,0x17,0x5d,0x3b,0x1d,0xdb,0x6d,0xcf,0x35, +0xf2,0x66,0x35,0xdb,0x6a,0xf4,0x8a,0x39,0x0a,0x96,0xff,0x4d, +0x2c,0xab,0x37,0xd7,0xeb,0x95,0x48,0x89,0x9c,0xae,0xbd,0xb6, +0xad,0x76,0x1c,0x32,0xe2,0x61,0x72,0xfb,0x53,0x17,0x68,0x14, +0x7f,0x94,0x65,0xf2,0xae,0x38,0xc8,0x5c,0xca,0xad,0xa4,0x7e, +0xff,0xad,0xe2,0x3e,0xd9,0x30,0x1f,0xdf,0xa3,0x31,0xb3,0xf6, +0xe4,0xb6,0xe3,0xc6,0x9a,0xf6,0x6e,0x16,0x3b,0x4d,0xf7,0xa4, +0x6f,0xe3,0xeb,0x73,0xcb,0x73,0x4a,0x0a,0x8f,0x20,0xd9,0x31, +0x67,0xf3,0xf4,0x26,0x2b,0xda,0x43,0xb0,0x2a,0x53,0x12,0xc6, +0xd7,0x80,0xd1,0x0a,0xab,0x76,0xfc,0x20,0xe5,0xb7,0xa4,0x93, +0x7d,0x57,0xf7,0xf4,0x78,0xf5,0x48,0xe0,0xce,0x38,0x47,0x2f, +0x7d,0x33,0x07,0xef,0x30,0x9a,0x1c,0x0f,0x97,0x04,0xa6,0xce, +0x16,0xa8,0xc3,0xd8,0x36,0x54,0x63,0xce,0x94,0x9e,0xae,0xa8, +0xa4,0x61,0x8d,0x6b,0x43,0x17,0x36,0xaa,0xdf,0x75,0x99,0xc5, +0xf0,0x87,0x67,0xef,0x58,0x69,0xae,0x5f,0xbe,0x9d,0x2f,0x28, +0xcb,0xaa,0x4a,0xad,0xe3,0xba,0x0c,0x18,0xc7,0x13,0x2e,0x61, +0x6e,0x9a,0x38,0xd7,0x14,0xa6,0x32,0xde,0xc8,0x1b,0xce,0xc2, +0x41,0x8b,0xcf,0x5b,0xf2,0xbf,0xdc,0x68,0xbf,0x5d,0xf6,0xe7, +0xe9,0x88,0xf0,0x53,0x67,0x43,0x80,0xe0,0x66,0xbe,0xa6,0x02, +0xbf,0x85,0x55,0xd2,0xfc,0xd6,0xd1,0x20,0x75,0x08,0xc0,0x14, +0x72,0x09,0x66,0x6f,0xed,0x52,0x8c,0xc7,0x0c,0x25,0xb5,0x79, +0x57,0xe1,0x35,0xa1,0x11,0x7e,0xb6,0xe0,0x4d,0xc9,0xcf,0xa1, +0xfe,0x15,0x27,0xbd,0x4e,0xd4,0x93,0xd4,0x65,0x3a,0x70,0x1b, +0x4c,0x03,0xe7,0x2e,0x6a,0x46,0xff,0xbd,0xe2,0x64,0xed,0x63, +0xbc,0x53,0x4e,0xa1,0x0f,0x93,0xd5,0x90,0x52,0x9f,0xd8,0x64, +0x9a,0xcc,0xbb,0x52,0x44,0xf7,0xf5,0xba,0x99,0x5c,0x09,0x65, +0x50,0x4b,0xd8,0x86,0xc4,0xba,0x94,0xb2,0xf4,0x9d,0x0d,0xfc, +0x72,0x7b,0x1c,0xe5,0x36,0xc1,0x2f,0xd1,0x94,0xaf,0x8e,0x6c, +0x88,0x6e,0x8c,0xe7,0x70,0x1a,0x2e,0x31,0x82,0x79,0x6c,0xe0, +0x78,0x9b,0x71,0xe3,0x70,0x64,0x99,0x39,0xff,0xec,0xaf,0x92, +0x27,0xe1,0x8f,0x29,0xfc,0x30,0xef,0x10,0x8c,0xfb,0xd1,0x66, +0xa8,0xe6,0x4b,0x5c,0x5e,0x5b,0x36,0x03,0x16,0x07,0xc7,0x05, +0x85,0x53,0x4f,0x78,0xc4,0x4f,0xf5,0xd8,0x87,0xbf,0x98,0x13, +0x61,0x61,0xc7,0xc3,0xc2,0xca,0x2c,0xf9,0xec,0x82,0xf4,0xc2, +0x94,0x7c,0x4e,0xfc,0xd0,0x7d,0x51,0x30,0xa5,0xd8,0xc4,0xf4, +0x8b,0x2a,0xce,0x1a,0x49,0x15,0x67,0xcd,0x17,0x55,0x9c,0x35, +0xff,0x51,0xc5,0x59,0x23,0xa9,0xe2,0x08,0x2d,0xc2,0x25,0x12, +0x91,0x7e,0x36,0xed,0x6c,0x1a,0x07,0x7f,0xc1,0x16,0xe5,0x03, +0xdc,0x22,0xe8,0x30,0xc7,0x7d,0x43,0xf7,0x1f,0xa3,0x0c,0x4e, +0x66,0x2e,0xac,0x63,0x42,0xf6,0x05,0xed,0x0b,0xde,0xcf,0xa1, +0x8e,0xc8,0x09,0xbd,0x02,0x87,0x8f,0x99,0xa8,0xf4,0xc8,0x8c, +0xa8,0x0c,0x4e,0x98,0xdb,0xcc,0x88,0x02,0x98,0x90,0x65,0x68, +0xf5,0x88,0x85,0x68,0x35,0xb0,0x58,0x86,0x16,0x0c,0x44,0xa9, +0x3d,0x02,0xc7,0x65,0xac,0x32,0x04,0x83,0x89,0x98,0xd4,0xd7, +0xa8,0x48,0x6d,0x55,0xa6,0x0a,0x0b,0x59,0x58,0x33,0x93,0xf4, +0x08,0x86,0x06,0xac,0x8d,0x8a,0x81,0x68,0xd8,0xc3,0x8e,0x57, +0x11,0x0c,0xb7,0x8a,0x86,0x34,0x4c,0x9f,0x80,0xed,0xe4,0x21, +0x8c,0x2a,0x83,0xb1,0x71,0x30,0x85,0xbb,0xdc,0x8b,0xb7,0x98, +0xe4,0xa6,0xf8,0x96,0xe8,0x16,0xa3,0x68,0x1a,0x34,0x86,0xbb, +0xe1,0x60,0x9d,0x49,0xae,0xd7,0xed,0x6f,0xba,0xb4,0x5a,0x79, +0xf0,0xd9,0x2e,0x79,0x76,0xd9,0xb6,0xeb,0x83,0x57,0x1f,0x5b, +0x7e,0xbc,0xa0,0x37,0xff,0x71,0xc6,0x43,0x0e,0x72,0xda,0x45, +0x37,0x13,0x50,0x67,0x7c,0x56,0xec,0x5c,0xb2,0x43,0xf7,0xe0, +0x49,0xdf,0x1f,0x0f,0x9c,0x8c,0xa0,0xe0,0x42,0x2b,0x12,0x86, +0x47,0x83,0x4a,0x42,0x8c,0x6f,0xf4,0x81,0xa8,0x03,0x39,0x49, +0x7c,0x92,0x77,0x41,0x69,0x6e,0x65,0x56,0x9d,0x7a,0x32,0x0e, +0x2e,0xc1,0xaf,0x7a,0xc6,0xcb,0x56,0xae,0xd6,0x99,0xb8,0xbe, +0xd8,0x90,0x7f,0x7b,0xf3,0xfe,0x9d,0xae,0x07,0xad,0x2b,0xaf, +0xac,0x79,0xb6,0xb6,0xa4,0x9b,0x9f,0x7f,0x6b,0xcb,0x6d,0x8b, +0xbb,0xdc,0x55,0x61,0x0e,0x09,0xc0,0x91,0x5e,0xf8,0xf5,0x36, +0x1c,0x68,0xfc,0xb7,0x17,0xb0,0x7e,0xa0,0xc6,0x21,0x4f,0xe3, +0xcd,0x36,0xff,0x6d,0x01,0x5b,0x82,0x38,0x58,0x07,0x5b,0x3b, +0x70,0x2b,0x68,0xeb,0xa3,0x36,0x6e,0x96,0x51,0xb7,0xa2,0xcb, +0xea,0x06,0x6f,0x09,0xd9,0x78,0x2c,0x86,0xba,0xe7,0x95,0xc9, +0x30,0x36,0x05,0xc6,0x15,0x50,0x03,0xa9,0x82,0x58,0x12,0x76, +0x3a,0xf2,0xfc,0xd9,0xea,0xd3,0x35,0xea,0x12,0x37,0x1d,0x00, +0x9e,0x6f,0x5b,0x71,0x1b,0x13,0x75,0x3e,0xb2,0x32,0xbc,0xca, +0x3c,0x86,0xf7,0xa3,0x40,0x6c,0x8a,0x8b,0x4e,0xa5,0x1d,0x9f, +0x5e,0x95,0xd2,0x10,0xdf,0xc2,0xd5,0xa0,0x27,0xaa,0x99,0x02, +0x61,0x42,0xf1,0x7b,0x37,0xfc,0x0e,0x07,0xa1,0x76,0xb1,0x9c, +0xff,0x03,0x46,0x95,0x7c,0x48,0xb9,0x7a,0x8a,0x8e,0xe2,0x33, +0x21,0x2f,0xd1,0x9a,0xaf,0x2c,0x99,0x03,0xd6,0x21,0xc9,0x41, +0x3f,0x06,0x04,0xa9,0xe3,0x36,0x3c,0x41,0xfc,0x1e,0xee,0x7b, +0x7b,0xe0,0x9a,0xad,0x1f,0x1f,0xeb,0x14,0x67,0x11,0x63,0xee, +0x13,0xe4,0x1d,0xec,0x1d,0xcc,0x81,0x35,0xa8,0x08,0x3c,0xaa, +0xc0,0x6c,0x53,0x9c,0x8d,0x03,0x45,0x1e,0x06,0x52,0xd0,0x6a, +0x75,0xc4,0xe2,0xa8,0x79,0x40,0x82,0x11,0xff,0x36,0xeb,0x79, +0xc1,0xe3,0xe2,0x70,0xdf,0x33,0xbe,0x67,0x0e,0x72,0xc2,0x57, +0xcb,0x48,0xdb,0x43,0x18,0xb9,0xbc,0x5d,0xf1,0x18,0xfd,0x99, +0x36,0xa5,0x9c,0x28,0x34,0x61,0xa4,0x52,0x93,0x55,0x06,0x0a, +0x7d,0xa4,0x17,0x4b,0xf4,0x19,0xd0,0x81,0x12,0x82,0x25,0x7a, +0x50,0x42,0xc3,0x7d,0x85,0xf0,0x37,0xb1,0xb8,0xb7,0xed,0xbe, +0x49,0x87,0x95,0x0b,0xdf,0x61,0xd2,0xb3,0xa2,0x71,0x35,0xf7, +0x56,0x3c,0x4a,0xda,0x3f,0x64,0xc2,0x62,0x48,0xd2,0x10,0x32, +0x41,0x2e,0x3e,0x91,0x8a,0x52,0xd8,0x1f,0xc5,0xf5,0xb2,0x99, +0x9a,0xc2,0xaf,0xc2,0xbf,0xc9,0x7c,0xd1,0xe9,0x39,0x2b,0xe4, +0x63,0x22,0xc1,0xf1,0x4c,0x6a,0x6e,0x5a,0x79,0x5c,0x9e,0x45, +0x32,0x1f,0xe0,0xb1,0xdf,0x76,0xdf,0x0e,0x0e,0xbb,0xcd,0xc1, +0x6d,0x15,0x5a,0x58,0x80,0xc5,0x52,0xf4,0x37,0x03,0x7f,0xfc, +0xae,0x0b,0xbe,0x83,0xe0,0x16,0x0c,0x7e,0x0c,0x2e,0x4d,0xe8, +0x72,0x0f,0x0e,0x31,0xe2,0x26,0x18,0x47,0xd2,0x7d,0xd2,0x3d, +0x12,0xbd,0xea,0x53,0xf9,0x23,0xf9,0x3e,0xc5,0xfb,0x33,0x39, +0xfa,0x70,0xbf,0x92,0x7f,0xa4,0x67,0xa1,0xe2,0x1f,0xb1,0x5a, +0xf6,0xff,0x2c,0x56,0x3b,0xec,0xf3,0x88,0x13,0x04,0xf7,0x30, +0xdb,0x0e,0xc7,0xb7,0x68,0x09,0xd6,0xec,0xc7,0x02,0x55,0x51, +0xbb,0x43,0x98,0xc7,0xc2,0xb0,0x12,0x1a,0xf8,0xe7,0x84,0xac, +0x56,0xdf,0x71,0x3c,0x20,0x64,0xc7,0x18,0x57,0xa9,0xa6,0x6f, +0x11,0xd3,0x93,0x95,0xd5,0x1b,0xa1,0x15,0xf3,0xfa,0xcc,0x6f, +0xa7,0x28,0x19,0xde,0x64,0xc1,0x83,0xab,0x0c,0x7d,0x59,0x6d, +0x4f,0x55,0x30,0x34,0x42,0x7b,0xf6,0x87,0xbd,0xf1,0x26,0x77, +0x69,0x24,0x36,0x62,0x17,0x16,0x7a,0x52,0x87,0x7b,0x98,0xa9, +0x49,0x4e,0xaa,0x95,0xa4,0x03,0x65,0x34,0x12,0xef,0x82,0x22, +0xd2,0x88,0xdf,0xbe,0x94,0xea,0x37,0x7d,0xfb,0x1b,0x7c,0xdf, +0x8c,0x20,0x1e,0x86,0x9b,0x2c,0x0e,0x39,0xb1,0x38,0x58,0xa6, +0x69,0x14,0xe2,0xe7,0xff,0x8f,0x62,0x5b,0x1f,0x73,0x27,0x2b, +0xf7,0x61,0xac,0x56,0xcc,0xed,0x33,0x7f,0xc1,0x34,0x0d,0x9c, +0xf1,0x8e,0xc1,0xa5,0xd4,0xe8,0x7e,0x03,0xd5,0x39,0xd2,0xd6, +0xa9,0x09,0x14,0x84,0xa9,0xce,0x96,0xce,0x66,0x90,0x77,0xa0, +0x3a,0x89,0x85,0xf1,0xb8,0x97,0x84,0xd4,0x1e,0x6e,0x3d,0x52, +0xe9,0x14,0xc8,0x27,0xd8,0x25,0x58,0x48,0xf2,0x62,0x51,0xf8, +0x03,0xc9,0x7c,0x98,0xf4,0x31,0x02,0x06,0x58,0x44,0x49,0x4a, +0x6c,0xda,0x3e,0xab,0x38,0x30,0x87,0x5c,0x12,0x6f,0x1c,0xb7, +0x31,0x72,0x4d,0xad,0x24,0x2f,0x76,0xe4,0xa1,0x54,0x72,0x6e, +0xb0,0x3f,0x89,0xd2,0x91,0xd4,0xd9,0x1a,0xa3,0xf9,0x93,0xf7, +0x83,0xdf,0x05,0x5e,0xa7,0x81,0x33,0x4b,0x61,0x41,0x32,0xdc, +0x32,0x5c,0xd3,0x9c,0xda,0xd2,0xf9,0x43,0x45,0x87,0xf2,0x0e, +0xe4,0xff,0xb3,0x89,0x32,0x3e,0x23,0x36,0x33,0x2a,0xd3,0x24, +0x91,0xf7,0x58,0x63,0xb6,0x71,0xbd,0x71,0x8d,0x34,0x21,0x7d, +0xae,0x34,0xbf,0x9c,0x03,0x9c,0x46,0x72,0x0b,0xb2,0x8a,0xd3, +0x4a,0xb8,0x97,0x4c,0xa6,0x7b,0xba,0x4b,0xba,0x53,0x4b,0xff, +0x77,0xf3,0x7d,0xf3,0xa4,0x2d,0x93,0x78,0x9d,0x89,0xc9,0x8c, +0xa6,0xdf,0x35,0x8d,0xe7,0xbd,0xd7,0x3b,0x6d,0x34,0x35,0xe2, +0x04,0x1b,0xd1,0x9e,0xb4,0x8b,0xab,0xae,0x7a,0xb2,0xbd,0x77, +0xa3,0xba,0x4f,0xfd,0xca,0x81,0x31,0xae,0x60,0xec,0xb3,0x8e, +0x56,0x68,0xde,0x63,0x4a,0xe3,0x92,0x4a,0xb5,0x5e,0xb2,0x16, +0x89,0xaa,0xf8,0xd5,0x36,0xd6,0x3f,0x24,0x3c,0x41,0x0b,0x1c, +0xb0,0x95,0x45,0xfe,0x84,0xcd,0xba,0xd5,0x9a,0xb9,0xfb,0x54, +0x37,0x8b,0xb3,0x4d,0x84,0xc1,0xac,0xd1,0x46,0x64,0x2d,0xd1, +0x4b,0x2e,0x2d,0x0c,0x9f,0xb9,0xfc,0xa9,0xbe,0xfa,0x0d,0x17, +0x89,0xc7,0x7b,0xe1,0x78,0x04,0x53,0x3d,0x0d,0x86,0x5a,0xc3, +0xd9,0xcd,0x69,0x1d,0x3c,0x7a,0xb7,0xe1,0xf0,0x46,0x83,0x6b, +0x9c,0x18,0x0c,0x84,0x00,0x89,0x84,0x59,0xf1,0xef,0x93,0x8f, +0xd7,0xf3,0x76,0xa1,0xe6,0xc7,0x64,0xc7,0x38,0x18,0x0f,0xb3, +0x9a,0xc5,0xc1,0xe6,0xb0,0x18,0x27,0xb3,0x46,0xc7,0xf5,0xc3, +0xf4,0xc3,0x38,0x21,0xeb,0x57,0x52,0xea,0x79,0xde,0x21,0xdf, +0xbd,0xac,0x98,0xdf,0x53,0x6c,0x5f,0xe5,0x96,0x47,0xe1,0x90, +0x99,0x90,0x4e,0xf2,0xf6,0x95,0x78,0x9d,0xf3,0x98,0x12,0x8a, +0xc3,0x42,0x70,0xe4,0xf1,0x57,0x7d,0x4f,0x6e,0xde,0xbe,0x65, +0x5d,0xc1,0x1b,0x1a,0xac,0xdb,0x3c,0x5f,0x7f,0x57,0xfa,0xce, +0x0c,0xcf,0xf4,0xee,0x9a,0x9e,0xf6,0xfa,0x66,0x4e,0x58,0xd8, +0x29,0xce,0x7d,0xac,0xbb,0x54,0x1c,0x67,0x2c,0x0c,0x61,0x1c, +0x9d,0x6c,0x9c,0xcc,0x5c,0x77,0xa6,0x7b,0xa6,0xee,0x4a,0x71, +0xb1,0xe6,0x6f,0xd8,0x3c,0x30,0xbb,0x64,0x75,0x24,0xf0,0x70, +0xd0,0xe1,0xa0,0xc9,0x27,0xa6,0x9e,0x58,0x70,0x2a,0x82,0xba, +0x91,0xe0,0x53,0x70,0x3f,0x01,0x8e,0xa4,0x66,0x79,0x67,0xf8, +0xa4,0xec,0xaf,0xa9,0xe4,0xcd,0x3a,0xa7,0xbc,0xd8,0xdc,0xca, +0x89,0x94,0x36,0x92,0x66,0xe1,0xb3,0xf9,0x05,0x41,0x4d,0xb9, +0x5f,0x54,0x63,0xe1,0x09,0xd0,0x51,0x9c,0xfe,0x2b,0xa4,0x33, +0xbd,0xf3,0xc8,0xaf,0x50,0x3e,0x8f,0xc5,0x3f,0x2d,0xc9,0x6c, +0x4c,0x7f,0xc9,0xc2,0x63,0x35,0x28,0x9f,0x8d,0xe5,0x94,0x67, +0x86,0x28,0x46,0x10,0x0c,0x62,0x0a,0xaf,0x64,0x5e,0x89,0xef, +0x31,0x88,0xe1,0xdd,0x70,0xce,0x3c,0x9c,0xaf,0x8d,0x03,0xeb, +0xed,0xf9,0xb6,0xf6,0xe6,0x9b,0x95,0xf7,0xb8,0x22,0xe5,0xb8, +0x8b,0x8a,0x71,0xb0,0x86,0x81,0x6f,0xbb,0x48,0xde,0xe5,0x8c, +0xcb,0xf1,0x17,0xf4,0xa3,0xe9,0x85,0xf3,0x16,0xe3,0xb2,0x69, +0xf8,0x55,0xfd,0x76,0xbe,0xb5,0xbb,0xf1,0x4e,0xc5,0x03,0x0e, +0xc6,0x89,0xd7,0xd0,0x94,0x49,0xd9,0xaa,0x0a,0x0b,0x99,0xb6, +0xac,0x8c,0x76,0x2d,0xa1,0x13,0xe6,0x76,0x53,0x9f,0x90,0xa3, +0x58,0x45,0x72,0xed,0xb3,0xad,0xb3,0x2c,0xdb,0x32,0x78,0xdf, +0xaa,0xfd,0x65,0xde,0x74,0x50,0x2c,0x6e,0xa7,0x77,0x90,0x54, +0x10,0x5f,0x18,0x53,0x68,0x9c,0xc0,0xef,0x98,0x63,0xba,0x58, +0x67,0x43,0xad,0x23,0x5f,0x5e,0x56,0x52,0x9d,0x5f,0xcb,0xc1, +0x5b,0xfc,0x86,0x14,0x96,0xe5,0x9e,0xcf,0xac,0xe6,0x7e,0x65, +0xfe,0x97,0x2f,0xef,0x2b,0xf3,0xa1,0x5f,0xd6,0x6f,0xc7,0x2b, +0x4c,0x7c,0x61,0x6c,0x61,0x74,0xa1,0x71,0x1c,0xbf,0xe7,0x07, +0xbb,0x45,0x7a,0x1b,0x68,0x7f,0x52,0x6b,0x37,0x61,0xf6,0x86, +0x9d,0xc9,0xd4,0x12,0xf6,0xe1,0x73,0x34,0x66,0x71,0xf8,0x21, +0xfc,0x0a,0xa7,0xe0,0x20,0xcd,0x3a,0x4b,0x55,0x98,0x05,0x23, +0x73,0xe0,0x6b,0x58,0xaa,0x01,0xdf,0x80,0xbb,0xb8,0x91,0x95, +0xa5,0xf9,0xf6,0x68,0xf6,0x31,0xd5,0xc9,0x29,0x95,0x92,0xe8, +0xa7,0x61,0xb2,0xaa,0x78,0x30,0x97,0x38,0x1e,0xb4,0x3d,0x68, +0x73,0x98,0x83,0x5c,0xd0,0x6e,0xc7,0x8f,0x26,0x30,0x95,0x42, +0x3f,0x93,0x43,0x26,0x47,0xcc,0xfc,0x93,0xb7,0xf1,0x7f,0xe7, +0x81,0x56,0xdd,0x87,0x46,0x8e,0xfa,0x9f,0x89,0xa4,0xd5,0xa6, +0x43,0xaf,0xd0,0xa2,0xa1,0x8c,0xf7,0xaa,0xd3,0xbf,0x21,0xff, +0x52,0xa9,0x79,0x2a,0xe9,0x84,0x74,0xe3,0xee,0x4e,0x48,0x6e, +0xc3,0xe4,0x3e,0xc3,0x6d,0x98,0xde,0x67,0xb0,0x4d,0x12,0x58, +0x38,0x65,0x2c,0x49,0xd8,0x3a,0x92,0xcc,0x43,0x05,0x3e,0x05, +0x7b,0xe6,0x1f,0xd7,0x3e,0x86,0x03,0x8f,0xdf,0xab,0xbf,0xde, +0x76,0xa5,0xc7,0xb6,0x8c,0x37,0x94,0xad,0x33,0x5e,0x60,0xbe, +0xae,0x9e,0xef,0x2c,0xeb,0xac,0x6e,0xa8,0xa2,0x31,0xb5,0x55, +0xfc,0xe1,0xa2,0x81,0xae,0xa8,0x2d,0x17,0xbe,0x61,0x5c,0x3c, +0xed,0x76,0x5a,0x7b,0xba,0xa7,0x7b,0xa4,0xed,0x4e,0x72,0x75, +0xe0,0xfb,0x9c,0x6f,0xdb,0xf6,0x3a,0x1c,0x3b,0x71,0x2c,0xec, +0xd8,0x09,0x1c,0x18,0x86,0x03,0xc2,0x66,0x9f,0x8c,0x30,0xe1, +0xc1,0x2f,0x02,0xae,0x47,0xc3,0x81,0xc4,0xc2,0x5d,0xf9,0xbb, +0x52,0xf7,0x57,0x57,0xf2,0x16,0x8d,0x13,0x5e,0x6c,0xae,0xe7, +0xc4,0x6a,0xb1,0x97,0xd4,0x0b,0x7f,0x5b,0x77,0xc3,0x2b,0xa5, +0x07,0xbe,0x62,0xe1,0x21,0x78,0x13,0xcc,0xb8,0x06,0x19,0x4c, +0xc7,0x46,0x72,0x0d,0xca,0x37,0xb2,0xf8,0xbb,0x15,0x59,0x89, +0x19,0xf7,0x59,0xb8,0x4f,0x47,0xc7,0x4a,0x69,0x74,0x40,0x35, +0xf5,0xe5,0xff,0xcf,0x94,0xbe,0x47,0x46,0xe4,0x56,0xe6,0xdd, +0x92,0xcb,0xd5,0x69,0xfb,0x52,0xf7,0x24,0xef,0xd2,0x31,0xc6, +0xaf,0xf4,0x71,0x80,0x9b,0xa4,0x69,0x3d,0xb0,0x12,0x54,0x7a, +0xee,0x76,0x26,0x78,0xc5,0xed,0x8c,0xf6,0x98,0xbe,0x18,0xbf, +0xd9,0x80,0x9a,0x36,0xd2,0x6e,0xe7,0xef,0xea,0x61,0xc4,0x95, +0x17,0xf7,0xb9,0xb3,0x5e,0xa7,0xbd,0xbc,0x34,0x96,0x7b,0x3b, +0x6d,0xd3,0xc4,0xaf,0x18,0xa9,0x02,0x02,0xc3,0xfc,0x5c,0x76, +0x11,0x06,0xd5,0x84,0xd6,0x04,0x55,0x69,0x9d,0xa4,0xd8,0x26, +0x22,0x14,0xec,0xd1,0x92,0xaf,0xac,0x45,0x67,0xb0,0xf2,0x8f, +0x0d,0x3a,0x75,0xe4,0xa8,0xba,0x7f,0x40,0xc8,0xc9,0xd0,0xd4, +0xd0,0xd4,0x90,0x54,0xf5,0xdb,0xe7,0x3f,0x3d,0x6e,0x69,0x71, +0xac,0xe7,0xcd,0xe5,0x33,0x74,0x36,0x38,0x7a,0x37,0x78,0xd5, +0x78,0x94,0x56,0x14,0x9c,0x2b,0xca,0x29,0xa1,0xc1,0xbf,0x4d, +0xa9,0x69,0x0a,0x8d,0x8c,0xe9,0x56,0x1c,0xbc,0x09,0xd5,0x1d, +0x39,0x83,0x09,0xe4,0x9f,0xda,0x3e,0xcc,0xff,0xb9,0xb6,0x8f, +0x18,0xc1,0xfc,0xa3,0xc1,0x31,0xec,0xf3,0x16,0x78,0x4f,0xba, +0x30,0x88,0x3d,0x99,0x7c,0x32,0x25,0x45,0x03,0xc6,0xc1,0x9e, +0x4e,0xdc,0x03,0x1b,0x0c,0x70,0x03,0x0e,0x67,0x63,0xaa,0xa3, +0xaa,0xc2,0x2b,0x4c,0xe2,0x78,0xff,0xe9,0x1e,0xf8,0xad,0xe5, +0xf2,0x7a,0x47,0x3e,0xa7,0x2a,0xbd,0x25,0xa9,0x9d,0x03,0x2d, +0x1c,0xc7,0x1c,0xfc,0xf1,0xe0,0x89,0x43,0x9a,0xb8,0xdb,0x08, +0x76,0x30,0xfb,0x70,0xfc,0x1a,0x3a,0xf6,0x0c,0x71,0x48,0x91, +0x31,0x0f,0xa6,0x30,0xf2,0x25,0x8c,0x39,0x0d,0x93,0x38,0x69, +0xd5,0x7b,0xfc,0x6d,0x1c,0x03,0x8b,0x50,0xad,0x8c,0x3a,0x9f, +0xd9,0x30,0x64,0x3d,0x0c,0xd8,0x0f,0x13,0x39,0x71,0x72,0x1d, +0x09,0x89,0x95,0x00,0xdd,0x11,0x3f,0xfe,0x18,0x70,0x30,0xb4, +0x0b,0x87,0xc2,0x0a,0xa6,0x31,0xa1,0x2e,0xa5,0x3c,0xdd,0xb3, +0x91,0x5f,0x62,0x8f,0xc4,0x6d,0xfc,0x91,0x44,0x39,0x5f,0x13, +0xd9,0x14,0xdd,0x44,0xc1,0xe2,0x2c,0x5c,0x69,0x04,0x0b,0xd8, +0x40,0x1c,0x68,0x83,0x03,0x69,0x6b,0xa3,0xcb,0xcd,0xf9,0x5f, +0x3e,0x94,0x3e,0x0d,0x7f,0x4a,0xf1,0xa2,0x75,0xa7,0xa0,0x2b, +0xe1,0xc5,0x33,0xa1,0x9a,0xaf,0x70,0x45,0x6d,0x99,0xea,0x30, +0x61,0xa4,0x42,0x46,0xfc,0x36,0xad,0xf7,0xc0,0xb1,0xfb,0x92, +0x68,0xa4,0x5a,0x94,0xf5,0x73,0x4b,0xe2,0x6b,0x0e,0x54,0x66, +0x32,0x0e,0xe9,0x07,0x5a,0xa5,0xed,0xa1,0x75,0x89,0x71,0xc5, +0x5a,0x75,0xac,0x51,0x9c,0xaa,0x0c,0xc7,0xb0,0x5e,0x81,0x91, +0x99,0x5a,0xf7,0x21,0x61,0x61,0x0f,0x68,0x8a,0x33,0x1e,0xea, +0x2d,0x17,0xc7,0xe0,0xe2,0x1e,0x18,0xc4,0x0a,0x9a,0xe2,0xcf, +0x04,0xee,0xb7,0xe1,0x7d,0x18,0xc0,0xbc,0x08,0xff,0xf9,0xec, +0xc3,0xc8,0x0c,0x9f,0x74,0x9f,0x94,0x7d,0x35,0x25,0xbc,0xbc, +0xc7,0xa4,0x43,0xaf,0xde,0xce,0x8b,0x4f,0x3b,0x94,0x7e,0x20, +0xfd,0x00,0x0e,0x0e,0x46,0xad,0x63,0x38,0x39,0xac,0xa4,0xb4, +0xa8,0x22,0x9f,0x0e,0x6d,0x9f,0x56,0x65,0xbb,0x1c,0xe2,0x99, +0x5d,0x8e,0x6e,0x8e,0x8e,0x4e,0xdc,0x76,0xbb,0x93,0xf6,0x63, +0x22,0xe5,0xc0,0x9c,0x82,0x41,0x67,0xfe,0x0e,0x57,0x1f,0x8f, +0x7d,0xa6,0xd0,0x47,0x43,0xf7,0x44,0x93,0xcf,0x2a,0xed,0xe2, +0x02,0xea,0x40,0x40,0xb8,0x4d,0x3e,0x42,0x8e,0xf6,0x85,0x8f, +0x10,0xd7,0x81,0x71,0x92,0x3a,0x60,0xce,0x6b,0xfd,0x19,0x18, +0x26,0x83,0x30,0x6d,0x16,0x96,0x94,0x13,0xc3,0xd9,0xc8,0xad, +0xc6,0x1f,0xd7,0x4a,0xe3,0x30,0xe2,0x31,0xa8,0x3d,0xa8,0x85, +0xaf,0x68,0x57,0xd7,0xe1,0x57,0xa0,0xb9,0x02,0x12,0x96,0x66, +0x75,0xf3,0x78,0xf6,0x36,0x8e,0xba,0x6b,0xf8,0x1b,0x07,0xcf, +0xf0,0x21,0xc1,0x5f,0x61,0xae,0x2e,0xce,0xc5,0x9b,0x32,0xb8, +0x89,0xdd,0x17,0xa1,0x1b,0x7e,0x65,0x94,0x27,0xb0,0x90,0xbc, +0x6d,0x7e,0x74,0xe1,0xd2,0x1d,0xab,0x73,0xbc,0xde,0xe6,0x75, +0xa6,0x93,0xcd,0x38,0xe1,0x0e,0x8c,0x22,0x3f,0x9b,0xfe,0x6c, +0xf4,0x54,0xb7,0xac,0x91,0x5f,0xd8,0x37,0xaf,0x77,0x69,0x03, +0xb5,0xf4,0x97,0x0a,0x6d,0x82,0x13,0x98,0xd8,0xcb,0x31,0x17, +0x22,0x3a,0x25,0xd9,0x5b,0x93,0xa0,0x2d,0xfe,0x9b,0xb8,0xa9, +0x46,0xbf,0x30,0x07,0x26,0x78,0x8f,0xdf,0xb5,0xa4,0xd6,0xb9, +0xda,0xa9,0x7a,0xbb,0xeb,0x4a,0x8b,0xf5,0x5b,0xb6,0x94,0x5b, +0xf2,0x97,0xaf,0xb6,0xdc,0xac,0x78,0x54,0xec,0x56,0xec,0x7a, +0xce,0xa1,0xbc,0x9e,0x77,0xac,0x75,0x39,0xef,0x5a,0x56,0x0f, +0x83,0xb3,0x41,0x23,0x16,0x16,0x71,0xf0,0x3b,0xf8,0x12,0x83, +0xd9,0x18,0x6f,0x22,0xbc,0x68,0xc7,0x5c,0xe6,0xd9,0x26,0xe2, +0x6f,0x7b,0xc8,0xee,0xa0,0x2b,0x87,0x4f,0x95,0x43,0xbb,0x84, +0x7b,0xd4,0xb9,0x45,0xe2,0x70,0x49,0x69,0xf0,0x03,0x53,0x9d, +0x9a,0x56,0xa5,0x25,0x74,0xe0,0x04,0x36,0xb1,0x38,0xa9,0x32, +0xa6,0x8c,0xc3,0x3f,0xc2,0x48,0x92,0x67,0x82,0x5b,0x8c,0x5b, +0x5b,0x12,0x1f,0x50,0xe2,0x57,0x76,0x84,0x82,0xff,0x19,0xf8, +0x37,0xc9,0x7c,0x92,0xfe,0x7b,0xf2,0x2b,0xee,0x35,0x13,0x84, +0xc4,0x17,0x07,0x3b,0x8e,0xf3,0x2c,0xf0,0xca,0xf5,0xca,0xe6, +0x84,0xc6,0xb5,0xe4,0x19,0x68,0x37,0xa3,0xf6,0x13,0xd3,0x25, +0xf8,0xbd,0x39,0x7c,0xbf,0x60,0x12,0x26,0xb4,0xb6,0x82,0x3b, +0x38,0x51,0xb2,0x2c,0x29,0x83,0x7f,0x05,0xf3,0xa5,0xdd,0xc7, +0x9f,0x37,0x0a,0x41,0x44,0x5c,0x7e,0x1b,0x3e,0xb7,0xe0,0xe7, +0xeb,0xc2,0xe4,0x66,0x0c,0x65,0xb2,0x73,0xd3,0xf2,0x13,0x73, +0x65,0x69,0xfc,0x21,0x0f,0x6f,0x97,0x9d,0xee,0x1c,0xd6,0x30, +0x35,0x29,0x3e,0x85,0x5e,0x25,0xfb,0x53,0xd5,0x2d,0xbc,0xf3, +0x76,0xa5,0xed,0x49,0xd9,0xab,0x8e,0x47,0xcd,0x05,0xb2,0x41, +0xda,0x0a,0xf5,0x4a,0x47,0x9c,0x61,0x06,0xbb,0x19,0x4f,0xfc, +0xce,0x00,0x47,0xe1,0x54,0x1c,0x5c,0x4d,0x19,0xd8,0xad,0x0b, +0x0f,0x6b,0x7e,0xe1,0xf0,0xb7,0xde,0x6a,0xc1,0xc1,0xfe,0x82, +0x20,0x17,0xcb,0xbf,0xe4,0x73,0xd2,0x9b,0x7b,0xcf,0x50,0x97, +0x6d,0x44,0x44,0x87,0xcb,0x82,0x03,0x83,0xac,0xca,0x66,0xd1, +0xe1,0x0a,0x8b,0x9c,0x8a,0xe0,0xb0,0x56,0x74,0x90,0xb6,0x04, +0x2b,0xee,0x90,0x2d,0x68,0x8a,0x82,0x78,0xfa,0xd2,0x63,0xa8, +0xc1,0xda,0xcb,0x50,0x0b,0x3d,0x4b,0x2f,0x09,0xa7,0x45,0x8e, +0x41,0x85,0x01,0xa1,0x9f,0x75,0xd0,0x9b,0x02,0x85,0x1a,0x74, +0x40,0x0f,0x76,0xd0,0x21,0x94,0xa2,0xf8,0x99,0x58,0x7d,0xd9, +0x69,0x31,0xa8,0x7f,0x4a,0xac,0xb8,0xa8,0xb8,0xa2,0x90,0xfa, +0xc6,0xc2,0x5e,0xc5,0x68,0xb6,0xec,0x6e,0xd1,0xb3,0xcc,0x37, +0x1c,0xbc,0x89,0x24,0x5b,0x51,0x0f,0xa3,0x45,0xff,0x0b,0xd7, +0x41,0x8e,0xed,0x97,0xa0,0x1d,0xec,0x37,0x5c,0x10,0xfc,0x31, +0x95,0xc1,0x38,0xfc,0x17,0x81,0x4e,0x30,0xc3,0x4e,0xb6,0x4f, +0x8d,0x9e,0x6c,0xa7,0x27,0xc3,0x84,0x74,0xc5,0x5d,0xa2,0x8b, +0x83,0xc4,0xef,0xd0,0xb6,0x0f,0x26,0x2a,0x76,0xe2,0xc4,0x3e, +0xb0,0x15,0xa7,0x30,0xba,0xc8,0x49,0x05,0x7f,0x6f,0x88,0x95, +0x17,0x2f,0x0b,0x3f,0x6f,0xe9,0x13,0x2a,0xf1,0x39,0x68,0xb2, +0xdb,0xf0,0x4f,0x82,0x91,0x30,0x13,0x22,0x19,0x78,0x2e,0x89, +0xc5,0x66,0xd3,0xf3,0x6c,0x86,0x46,0x2b,0x47,0x49,0x28,0x3e, +0x52,0x12,0x0b,0xbe,0xae,0x06,0xd9,0x52,0x79,0x70,0xfa,0xa8, +0x2b,0x20,0x8b,0xf4,0x6c,0xbf,0x2c,0x6f,0x93,0x57,0xd5,0xf0, +0xb2,0x36,0x83,0x46,0xfd,0x4a,0xae,0xed,0x4f,0x61,0x00,0xdc, +0x16,0x07,0xbc,0xd7,0x9b,0x88,0x7f,0xe1,0x6d,0xf8,0x6b,0x3a, +0x83,0x65,0xa0,0x94,0x66,0x74,0x1c,0xb1,0x8c,0x51,0x68,0xa8, +0x61,0x2b,0x38,0x42,0x2b,0x23,0x4e,0x53,0xce,0x23,0xd6,0xfe, +0xd1,0xd5,0x5a,0x10,0xae,0x8b,0x51,0xec,0xd2,0x3c,0x9f,0xa7, +0x9a,0x50,0xc0,0x34,0x24,0xa7,0xd3,0x8f,0xbe,0x61,0xf5,0xd2, +0x55,0x29,0x0b,0xec,0x82,0x40,0xd2,0xbb,0xaa,0x73,0x41,0xf5, +0xcc,0xf6,0x22,0xde,0xea,0x2f,0x93,0xc7,0xfa,0xf7,0x24,0x61, +0xc7,0x26,0x72,0xed,0x59,0xcd,0xeb,0xdc,0x5f,0xe8,0x6b,0xde, +0xbb,0xc4,0x76,0xd6,0xd6,0x35,0x74,0xd0,0x6f,0x96,0xb6,0x08, +0xeb,0x7f,0x29,0xdc,0x77,0x96,0xb5,0x3c,0x6c,0xe5,0x67,0x1d, +0x10,0x6b,0xf8,0xa5,0x70,0x5f,0xa2,0xb4,0xb1,0x75,0x28,0x9b, +0xac,0xaf,0xfa,0x27,0x6d,0x20,0x95,0x22,0xdc,0x36,0xb6,0x24, +0xbe,0x24,0xe1,0x5c,0x62,0x60,0x3b,0xef,0x79,0xd4,0xe3,0xa8, +0x87,0x3f,0x07,0x47,0x60,0x60,0x27,0x0e,0x04,0x7d,0x56,0x30, +0x54,0xd3,0xc3,0x4d,0x78,0x50,0xb9,0xbf,0xa7,0x57,0x98,0xa3, +0xdf,0xa3,0xd8,0x8f,0x21,0x8c,0x3e,0xb6,0x13,0x5c,0x0d,0x27, +0x61,0x35,0xd3,0xf3,0xa5,0x5a,0xd0,0x16,0x3c,0xc9,0x8a,0x73, +0x65,0x04,0x56,0x63,0x12,0xae,0x66,0xe0,0x30,0x24,0x11,0xfa, +0x61,0x12,0x6e,0xa1,0x6c,0xd1,0x51,0xb8,0x4b,0x22,0x76,0x46, +0xec,0x8c,0xf2,0xe2,0xc4,0xc3,0xe2,0x37,0x42,0x28,0x35,0xe1, +0x32,0xe4,0xdb,0x90,0xf9,0x69,0x72,0x4d,0x3b,0x3f,0x1e,0xd4, +0xac,0x60,0xb4,0x27,0x2c,0xe1,0xfe,0x04,0x1f,0xa5,0x37,0xea, +0x33,0xb8,0xd7,0x06,0x35,0x37,0xe3,0xd7,0x9a,0xf5,0xf2,0xfb, +0xa0,0x56,0x07,0xb3,0xc2,0xc1,0x59,0x5d,0xf8,0x04,0xcb,0x09, +0x7d,0x7f,0x1f,0x25,0xaf,0xb6,0x4b,0x5c,0x4c,0xc4,0xc1,0x1f, +0x85,0xc1,0x8c,0x38,0x18,0xe7,0x13,0x61,0xf0,0x78,0x71,0x30, +0xa3,0x18,0x82,0x3b,0x49,0xd7,0xbf,0xbe,0x31,0xa2,0xc3,0xe8, +0xa6,0xe0,0x42,0xfa,0x85,0xc4,0xfd,0xfd,0xfc,0x79,0x49,0x8f, +0xfc,0xbb,0x4e,0xfc,0xee,0x8b,0x1e,0xf9,0x5c,0x63,0x98,0x22, +0xe9,0x91,0xdb,0xa3,0xe6,0x38,0x1c,0x53,0x69,0xc5,0xff,0x0c, +0x83,0xce,0xfd,0x1d,0x21,0xa9,0x91,0x17,0xff,0xb7,0x1a,0xf9, +0x6b,0x49,0x8d,0x5c,0x55,0x18,0x21,0xf0,0x44,0xbf,0x61,0x65, +0xdd,0x86,0xc2,0x1d,0x36,0xfc,0x6d,0x97,0xeb,0x0e,0x7d,0x56, +0x9c,0x99,0x38,0x84,0x48,0x13,0x09,0xce,0xb0,0x1f,0x82,0xbb, +0xc4,0x04,0x23,0x70,0xc7,0xfd,0x68,0x63,0x04,0x36,0x98,0x8c, +0x27,0x0c,0x85,0xce,0x6e,0x3c,0x43,0xa3,0x72,0x9f,0x62,0x3b, +0x31,0xad,0xde,0x5a,0xa9,0x5b,0xe4,0x61,0xce,0x5f,0x76,0xef, +0x71,0xee,0xb0,0xe7,0x84,0xdd,0x95,0x64,0x53,0xfd,0x0f,0x75, +0x2b,0xf2,0x3d,0xac,0xf8,0x9f,0x5c,0x1e,0x38,0xde,0xb0,0xe1, +0x74,0xc5,0x61,0x04,0xce,0x76,0xe3,0x59,0xd8,0x07,0x65,0xdd, +0x4a,0xce,0x10,0x0a,0x71,0x1f,0x86,0x1a,0x42,0x28,0x26,0x62, +0xad,0x81,0x62,0x62,0x0f,0x52,0xde,0x3e,0x51,0xb0,0x26,0x66, +0x95,0x9b,0x6a,0xb7,0x4a,0xfb,0x85,0x2f,0xba,0xf7,0x6d,0xa7, +0xbf,0x86,0xc3,0x45,0x3f,0xf2,0x40,0xaa,0xaf,0x50,0xfe,0x49, +0x96,0xc5,0x3b,0xf4,0x17,0x5d,0x58,0x39,0x9d,0x1b,0xf6,0x79, +0xb5,0x0d,0x71,0x7a,0xb9,0x05,0x46,0x98,0x3e,0x93,0xef,0xe6, +0x73,0x1c,0xf3,0xcc,0x73,0xe5,0x8b,0xfd,0xa7,0xf9,0x4f,0xa4, +0xf4,0xf7,0x34,0xbc,0x17,0x86,0xe3,0x7b,0x98,0xb1,0x05,0x67, +0xe0,0x33,0x71,0x38,0xf5,0xb2,0x51,0x2c,0x7e,0x17,0x80,0x9a, +0xc1,0xa8,0x1e,0x16,0xb9,0x8d,0x87,0xd4,0x68,0xa8,0xcc,0x86, +0xdd,0xe7,0x92,0x5d,0x93,0xdc,0xe2,0x3d,0x38,0xe5,0x56,0xc5, +0x36,0x02,0x19,0xf4,0x65,0x66,0x30,0x8a,0x01,0x6a,0x58,0x0e, +0x49,0x40,0x51,0x87,0xc2,0x92,0xfa,0xdb,0x1b,0x65,0x17,0x2a, +0x7b,0x5b,0xed,0x2a,0x79,0x63,0x33,0xdd,0xed,0xeb,0xdc,0xec, +0x1a,0xdd,0x3a,0xf7,0x5c,0xe6,0xa0,0x12,0x8e,0xe1,0xc3,0x5f, +0x85,0x15,0x9d,0xe2,0x8a,0x0f,0x7a,0x13,0xc4,0x19,0xc6,0xc2, +0x8c,0x79,0x78,0x11,0x8f,0x41,0x21,0xb3,0x60,0xa1,0x94,0xbe, +0xbf,0xca,0x32,0xdb,0x98,0x7f,0x94,0x7d,0xbb,0xe0,0x52,0x09, +0x87,0xf3,0x59,0xfb,0x10,0xdb,0x50,0xeb,0xd0,0x38,0x0a,0x9c, +0x37,0x65,0xc1,0xb4,0x02,0xf8,0xb6,0x24,0xa4,0x93,0x5f,0xb1, +0x7f,0xe1,0xc1,0x99,0x87,0x38,0x30,0x60,0xbb,0x2b,0x9a,0x6a, +0xce,0x37,0x5d,0xc4,0x6d,0xa0,0x8e,0xe3,0xc0,0x77,0x61,0x61, +0x2b,0x3f,0xe9,0xfc,0xf2,0x3a,0xdd,0x4e,0x0e,0x4f,0x0b,0x53, +0x08,0x8e,0xc1,0x53,0x30,0x86,0x15,0x6e,0xe0,0x18,0x29,0xd1, +0x55,0x2a,0x20,0x39,0x4c,0x51,0x4d,0x23,0xa8,0x61,0xe3,0x9a, +0xba,0x4d,0xd2,0x8b,0xbb,0xe9,0x72,0xd9,0xa1,0xd7,0x92,0x53, +0xae,0x81,0x29,0x44,0x06,0x8d,0x1d,0x6c,0x51,0xff,0x86,0xd7, +0x01,0xc6,0xac,0x62,0x01,0xde,0x21,0x60,0xde,0x89,0xe6,0xf4, +0x65,0xee,0xef,0x12,0x4f,0x7d,0x79,0x99,0x46,0xc6,0x60,0x84, +0xa9,0x78,0xc4,0x48,0x28,0xe8,0xc2,0x00,0x46,0xf9,0xb5,0x70, +0x86,0x7e,0xb1,0xec,0x9f,0xf2,0x11,0x65,0xff,0x29,0x1f,0x71, +0x08,0xb2,0xf0,0xbc,0x54,0x3e,0xe2,0xc8,0x97,0xf2,0x11,0xeb, +0xa4,0xf2,0x11,0x0a,0x41,0x31,0x8a,0x80,0x99,0x3e,0x9a,0x61, +0xa2,0x11,0x24,0x8a,0xf7,0x71,0x1e,0x9b,0x6a,0xa0,0x0a,0xe4, +0x1f,0xbd,0xe0,0xab,0xbf,0x77,0xb1,0xca,0xe3,0x30,0x80,0xe0, +0x48,0x1c,0xa5,0x34,0xe8,0xbe,0x2c,0x0c,0x52,0x0c,0xc5,0xd1, +0x30,0x12,0x16,0x76,0x88,0x81,0x32,0x16,0x76,0xe2,0x48,0x02, +0x23,0x7b,0x71,0x24,0x8b,0x2a,0x72,0x82,0xdc,0xa1,0x85,0x26, +0x86,0x9a,0x90,0xc0,0xd2,0x60,0x7b,0x86,0x4c,0xc4,0xbe,0xe7, +0x6c,0x99,0x53,0xdf,0x8d,0x8c,0x17,0xa7,0x40,0x5b,0xbd,0x17, +0xd7,0x31,0x96,0x99,0x7b,0x1a,0x34,0x13,0x5b,0xc8,0x9e,0x60, +0x49,0xa8,0x65,0xe1,0x6d,0xb4,0x64,0xa1,0x04,0x97,0x11,0xf7, +0xd7,0xf6,0xaf,0xac,0xef,0x59,0x78,0xf1,0x35,0x6b,0xaa,0xe6, +0x14,0x4f,0xe3,0xc4,0x73,0x87,0x08,0xfd,0x0d,0x0e,0xfb,0x98, +0x61,0x9f,0x8d,0x85,0xf1,0xa4,0x15,0x2b,0xd8,0xb3,0x85,0x67, +0x0a,0xcf,0x14,0x73,0x70,0xac,0x85,0xf2,0x8b,0x53,0x05,0xa7, +0x0b,0x8a,0x34,0x20,0xaa,0x05,0x23,0xb3,0x98,0x6b,0x86,0x4b, +0xd9,0x00,0x34,0x34,0xa3,0x2f,0xc0,0xe3,0xa4,0xe7,0x09,0x4f, +0x4d,0x5c,0x6a,0x46,0x19,0x43,0xd8,0x8e,0xb0,0x9d,0xc7,0x76, +0x72,0x68,0x28,0x87,0x4d,0x4c,0xb0,0x53,0xa0,0xf3,0x51,0x1a, +0xfb,0x34,0x4d,0x80,0x63,0x5c,0x16,0x99,0xae,0x5e,0xbd,0xb1, +0xc2,0x8a,0xff,0xf5,0x69,0xef,0x8b,0xca,0xf7,0x1c,0xb5,0x87, +0xc3,0x38,0x91,0x91,0x9e,0x7d,0x08,0x53,0x97,0x26,0xe9,0xa6, +0xfb,0xdc,0x69,0x5f,0x73,0xd7,0x60,0x35,0x6e,0x61,0x63,0x4b, +0xa3,0xcb,0xa3,0x2a,0x38,0x71,0x01,0x35,0xb0,0xd8,0xe5,0xf5, +0x7a,0x4f,0xd7,0x4a,0x7b,0x86,0x2f,0xd9,0x5e,0xda,0x7f,0x99, +0x5b,0xc7,0xec,0x5b,0x6d,0xb3,0x62,0xaa,0xb4,0xaf,0xf8,0x8f, +0x9b,0x9d,0xcf,0x12,0x7f,0xe1,0x60,0x96,0x52,0x46,0x9c,0x02, +0xb6,0x07,0xda,0x06,0x72,0xd0,0x08,0xdf,0x77,0xe0,0xf7,0xf0, +0xf5,0xef,0x6d,0x18,0x6c,0xfa,0x1c,0xbf,0xc6,0x19,0x32,0x98, +0x81,0x3d,0xac,0x69,0xa0,0x49,0x90,0x3c,0x24,0xc6,0x80,0x87, +0xc1,0xc9,0xf0,0x5d,0xde,0xf3,0x5c,0xce,0xe2,0x35,0x49,0x6a, +0x8f,0xef,0x8e,0x6e,0xb7,0x8e,0xe3,0x83,0xf4,0x03,0x4c,0x0e, +0x5b,0x70,0x78,0x04,0x26,0x91,0x2c,0x59,0xd6,0xf2,0x38,0xa3, +0xa6,0x24,0xde,0xbf,0x7b,0xcf,0x53,0xef,0x76,0x4e,0xc1,0xe1, +0x09,0xe2,0x73,0xde,0xa5,0x6d,0x77,0x81,0xb5,0x2b,0x9f,0xe3, +0x55,0x2e,0xcf,0x70,0xa0,0x34,0xb1,0x4f,0x61,0x44,0x4c,0x1a, +0x37,0xd6,0xe9,0x15,0xbb,0xd9,0xf2,0x57,0x5c,0x7a,0xed,0x3b, +0x28,0x31,0xff,0x13,0x0d,0x48,0x23,0x8e,0xa1,0x28,0xb1,0x09, +0xc7,0xfc,0x06,0x93,0x9b,0xc5,0x21,0xe2,0x61,0x78,0x26,0xcd, +0x04,0x2c,0x91,0x66,0x02,0x82,0x25,0xed,0xf6,0x0d,0xd2,0x4c, +0xc0,0x15,0xe6,0x6e,0x56,0xde,0xc3,0x38,0x69,0x26,0xe0,0x4f, +0x98,0xae,0x81,0xf3,0xde,0x31,0xb8,0xb6,0x7f,0x26,0x60,0xe8, +0x1c,0x56,0x08,0x14,0x87,0x12,0xd0,0xe9,0x42,0x1d,0x6a,0xf6, +0x36,0x9d,0xa2,0xa3,0x31,0x58,0x50,0xb3,0x5f,0x6e,0x04,0xcb, +0xe9,0xc0,0x73,0x30,0x14,0xf6,0x75,0xa3,0x0b,0x23,0x7e,0x16, +0xc2,0xc8,0x4b,0x18,0x3a,0x9b,0xc5,0xa1,0xfd,0xf3,0x05,0x43, +0x27,0xb1,0x30,0x09,0x7d,0x48,0x70,0x9d,0x34,0x5f,0xe0,0x10, +0xc0,0x27,0xda,0x25,0x58,0x44,0xd3,0xdb,0x4a,0xc7,0x79,0x24, +0xeb,0x61,0xf2,0xc7,0x48,0x18,0x60,0x26,0xcd,0x17,0x1c,0x9c, +0x20,0xcd,0x17,0xd8,0x43,0x0e,0x49,0xe8,0x9f,0x2f,0xa8,0x8f, +0xfd,0x2f,0x91,0xf7,0x61,0xd2,0x7c,0xc1,0xd9,0x99,0xa7,0x17, +0x37,0x49,0xf3,0x05,0x41,0x5f,0xe6,0x0b,0xb2,0x85,0x5d,0x24, +0x38,0x29,0xf4,0xc7,0xa3,0x41,0xfe,0x01,0xd4,0x61,0x0e,0x7b, +0xd3,0x3a,0x0d,0x0c,0x65,0x14,0x16,0x8f,0x92,0xd3,0xb7,0xe7, +0x8f,0x23,0x5d,0x70,0xd2,0x22,0x1c,0x51,0x41,0x11,0xd2,0xfb, +0xec,0xf7,0x67,0x5f,0x50,0x6f,0x99,0xdc,0x21,0x24,0x30,0x11, +0x67,0x7e,0x3c,0x73,0x4c,0xf3,0x3e,0xae,0x2b,0x2f,0x57,0x05, +0x5f,0x38,0x44,0x1a,0x70,0x59,0x0f,0x65,0xf9,0x41,0xdd,0x10, +0x04,0x5e,0x06,0xb8,0xd1,0x0a,0x36,0x25,0x77,0xc0,0x78,0xcc, +0xeb,0x85,0x33,0x8d,0x62,0xb5,0x25,0x04,0xea,0x63,0x02,0x8e, +0x6f,0x3b,0xc4,0x86,0x4c,0x22,0xb0,0xb6,0x01,0xd7,0x32,0x70, +0xd9,0x8a,0x80,0x7e,0x03,0xf5,0xfc,0x94,0x54,0x2c,0x20,0x8d, +0x62,0xa1,0x25,0x2b,0x5c,0x37,0x20,0xe2,0x67,0x0b,0x50,0x67, +0xfc,0x5c,0x0e,0x6c,0x3f,0xe0,0xcc,0x09,0x13,0x99,0x93,0xbe, +0x61,0x3b,0x43,0xf7,0x70,0x3e,0xc7,0x8e,0xfa,0x3b,0x8f,0x41, +0x9d,0x7e,0x66,0xb2,0x88,0xb9,0x5e,0x90,0xd9,0x18,0xab,0x15, +0x5d,0x19,0x5e,0x7b,0xba,0x9d,0x13,0x47,0x30,0xb1,0x19,0xd1, +0x59,0xd1,0x99,0x94,0x65,0xd2,0x51,0x6e,0x2a,0xe4,0x10,0xd4, +0x62,0x9a,0xef,0x57,0xfd,0x5c,0xfa,0xc6,0x32,0x9d,0x3f,0x64, +0x75,0xd0,0xd6,0xd7,0x81,0x3b,0x3f,0x11,0x86,0x9a,0xd0,0x1e, +0x55,0x31,0x07,0x15,0x1a,0xfb,0x29,0xae,0x5a,0xcd,0x1a,0xea, +0x6c,0xd4,0x5d,0xaa,0x9f,0x6f,0xcb,0xe7,0xa4,0x65,0xd1,0x3f, +0x9c,0xf8,0x75,0x5b,0x07,0xe8,0xc9,0x3a,0x04,0x53,0xdc,0xc9, +0x16,0x9f,0x2b,0x28,0xcd,0xa3,0x7c,0x76,0x2d,0xa3,0x74,0x80, +0x00,0xe2,0x54,0x69,0x53,0x6d,0x53,0xe2,0x66,0xcf,0x37,0x3a, +0x57,0x38,0x55,0xd9,0x73,0xf0,0x14,0x7f,0x27,0xa5,0x25,0xcb, +0xdf,0x07,0xc6,0x07,0x9f,0xf5,0xf3,0x57,0xf7,0xf3,0x57,0x0d, +0x61,0x8e,0x47,0x87,0x45,0x1f,0x8b,0xee,0x68,0x3c,0x5f,0x5b, +0xda,0x65,0x9f,0xcf,0xef,0xb2,0x72,0xdd,0x6e,0x6d,0xef,0x9f, +0xed,0x97,0x73,0x30,0xbf,0xa4,0x2c,0xbf,0x32,0xbd,0x8e,0x83, +0x91,0xad,0xf8,0x5c,0x0e,0x53,0x19,0xe7,0xb5,0x86,0x46,0xf3, +0xe5,0x45,0x36,0x7c,0x71,0x7a,0x61,0x66,0x6e,0x76,0xea,0x8e, +0x24,0xcf,0x78,0x4f,0x7b,0xb9,0x89,0xc5,0x56,0xc7,0x42,0x6b, +0xfe,0x42,0x45,0x4b,0x43,0x65,0x7d,0xbc,0x6b,0xb4,0x6b,0xa4, +0xab,0xcd,0xd6,0xb5,0x1b,0x17,0x59,0xe6,0x5b,0xf2,0xf7,0x6a, +0xfb,0x3a,0x6b,0x3b,0xb9,0x33,0x6e,0xa7,0xdc,0x9c,0x35,0x50, +0x65,0x8f,0xeb,0x6a,0xcd,0xf5,0x52,0x69,0x96,0x9b,0xcc,0xbb, +0xca,0x36,0x98,0xfe,0x47,0xe0,0x2b,0xf7,0x57,0x5a,0x27,0x22, +0xce,0x9c,0x3e,0x1b,0xca,0x41,0x05,0x1c,0x25,0x6f,0x18,0x6f, +0x8b,0xdd,0xb6,0x5e,0xf6,0xdc,0x41,0x46,0x4c,0x5b,0x4f,0x9c, +0x6a,0x8d,0xda,0xcc,0x2a,0x5c,0xb7,0xf3,0x8d,0x8e,0x6d,0xe6, +0x55,0xd6,0x9c,0x70,0x14,0xdd,0x08,0xb0,0xa0,0x87,0x2c,0xab, +0x3c,0x83,0x99,0xe4,0x02,0x0c,0xaa,0x84,0xb1,0xe9,0xef,0x4d, +0x93,0xf9,0xbd,0xa8,0xea,0x8a,0x83,0x8d,0x27,0x73,0x0a,0x55, +0xa0,0xa1,0x40,0x0f,0xbf,0x45,0xbd,0x7e,0xb9,0xdc,0x4a,0x82, +0x1b,0x99,0xde,0xab,0x6d,0xf7,0xea,0x5f,0x58,0xe4,0xf2,0xf2, +0x89,0xba,0x0b,0x74,0xd6,0x72,0x1b,0x60,0xb4,0xa4,0x16,0xb5, +0xfa,0x4b,0x06,0xf9,0x26,0x53,0xd8,0x84,0xa3,0xd1,0xc3,0x84, +0xc6,0x8c,0xb9,0xab,0x26,0x19,0xe0,0x57,0xd6,0xd9,0x72,0x3e, +0x3f,0x3e,0x2f,0x21,0x37,0x91,0x13,0xb9,0xae,0x4e,0xb8,0x67, +0xdc,0x23,0xc8,0xb1,0x8f,0x6d,0x29,0x69,0xac,0xa8,0xab,0xa6, +0xd8,0x83,0x51,0x8e,0x84,0x3f,0x89,0xa7,0xcc,0xdd,0xdc,0xd9, +0x66,0x6f,0xa3,0x67,0x9d,0x5b,0x9d,0xcd,0x0e,0xbe,0xc2,0xac, +0xd0,0x3c,0xc7,0xcc,0xc1,0xde,0xce,0xd9,0x7a,0x47,0xbe,0x09, +0x5f,0x77,0xae,0xaa,0xec,0x7c,0x65,0x8a,0x75,0xbc,0x55,0x8c, +0x85,0xd1,0x0f,0x7a,0xfa,0x8b,0x0d,0xf2,0x4c,0xf9,0x07,0x6d, +0x5d,0xbd,0x4d,0xb7,0xb8,0xb3,0xb6,0xa7,0x6d,0x2c,0x34,0x70, +0x9d,0x97,0xcd,0x4a,0x4d,0x5d,0x26,0x49,0x57,0xb5,0x87,0x79, +0xdb,0x76,0x01,0xbc,0x61,0xae,0x37,0xa8,0x9b,0xc1,0x50,0xad, +0x9a,0x96,0x8a,0xee,0xb2,0x2b,0xd2,0x44,0xc8,0x2b,0x69,0x3b, +0xc4,0x3d,0x54,0x65,0xf1,0x9e,0x19,0xa1,0x27,0x43,0xf1,0x1e, +0x8d,0xdc,0x9f,0x84,0x87,0xe4,0x15,0x14,0xcc,0xbc,0xf0,0x0a, +0x62,0x3a,0x31,0xe6,0x4f,0xbd,0xa9,0x58,0x20,0x1d,0x42,0x8d, +0x21,0x74,0x26,0x2b,0xfc,0x9b,0x42,0x5e,0xb5,0xbf,0x74,0x27, +0x8b,0x2c,0x4e,0xbe,0xf8,0x5c,0xb1,0x65,0xfe,0x45,0x46,0xf9, +0xd1,0x92,0x18,0x09,0x7a,0x98,0x8b,0x01,0x6c,0x8a,0xb1,0x2a, +0x38,0x31,0xad,0xe9,0x69,0xad,0x5a,0x10,0x2b,0x4c,0xe9,0x62, +0x25,0xed,0xd3,0x3b,0x44,0x7f,0x1d,0x16,0xdc,0xa4,0x07,0x49, +0xfb,0x74,0x7d,0xef,0x0d,0x28,0x90,0x0e,0xfd,0xda,0xa7,0xb0, +0x19,0xa7,0x13,0x9d,0x2d,0x8b,0x8c,0x66,0x51,0xf7,0xa4,0xf6, +0x1c,0x62,0xda,0x30,0xe6,0x81,0xc1,0x0a,0xac,0x37,0x85,0xfa, +0xf9,0x22,0x63,0x2a,0xc8,0x19,0x1c,0xab,0x87,0x73,0x2c,0x50, +0xc7,0x36,0xcd,0x94,0xef,0x4d,0xee,0x4d,0xe9,0x49,0xe5,0xb0, +0xad,0xb7,0x41,0x70,0xb0,0xba,0x20,0x70,0xa2,0x3a,0x7b,0x29, +0xa7,0x2f,0xbf,0xa7,0x90,0x83,0x4b,0x6d,0xe8,0xc1,0x5c,0xad, +0xba,0x58,0xdb,0xd9,0xcc,0x89,0x9f,0xc4,0x79,0xe4,0x89,0xe0, +0xb0,0x84,0x15,0x1d,0x2c,0x88,0xe0,0xb0,0x40,0xc2,0xe4,0x9f, +0x07,0x29,0x34,0x09,0xf2,0x17,0xc0,0x18,0xfd,0x61,0xa4,0x2e, +0x0d,0x41,0x07,0xd0,0xb8,0x17,0x78,0x56,0x1c,0x0d,0x33,0x88, +0x52,0x85,0xe2,0x6f,0x15,0x56,0x86,0xfa,0x04,0x67,0x82,0x3a, +0xcc,0x64,0xf0,0x96,0x0a,0x3d,0xd3,0xa0,0x67,0xef,0xc6,0x13, +0x23,0x08,0x17,0x35,0x71,0xb9,0x84,0x1d,0x61,0x12,0x8d,0x66, +0xe9,0x8d,0x5a,0x02,0x81,0x40,0x1a,0xce,0x1a,0x96,0x11,0x98, +0x49,0xc9,0xc0,0x4c,0x66,0x2b,0x5e,0x22,0xf5,0xad,0x75,0x3f, +0x65,0x5f,0x31,0xcb,0xe7,0x7d,0x0d,0x2d,0x17,0xd8,0xdb,0x72, +0xd4,0xc3,0x2d,0x20,0xc5,0xf2,0xfe,0xb2,0xab,0xe7,0xa4,0x3a, +0xee,0x37,0x77,0x50,0x6a,0xd6,0xa1,0x48,0x22,0x5b,0x85,0x95, +0x4a,0x03,0x0c,0x61,0xa5,0xc9,0x28,0x57,0xa6,0x35,0x37,0xbb, +0x5d,0x4b,0xb1,0x46,0xd0,0xbc,0x44,0x11,0x9c,0x20,0x6c,0x23, +0x47,0xd9,0xc5,0xa6,0xf8,0xb5,0x5c,0xdb,0x35,0x57,0x97,0x7f, +0x57,0xf1,0x67,0xe3,0x9d,0x86,0x23,0x28,0x5b,0xb3,0x00,0xb7, +0x2f,0x2e,0xa2,0x5e,0xfe,0xf8,0x5f,0xcf,0x60,0x28,0x94,0x6a, +0x08,0x5a,0xba,0x2c,0xfc,0xae,0xec,0x21,0xd6,0x47,0xa4,0x12, +0x29,0xd5,0x6c,0xc2,0xd9,0xd3,0xb1,0xa1,0x9a,0x90,0x86,0xf3, +0x4b,0xdb,0x29,0x20,0x98,0x77,0x38,0xc6,0x3f,0x2c,0xd8,0x5f, +0xfd,0xe8,0x01,0xd5,0x50,0x61,0xfd,0x56,0x65,0x3c,0xb3,0xac, +0x68,0xd7,0x23,0x4d,0x30,0x61,0x2a,0xb3,0x32,0xaa,0xb4,0x60, +0x02,0xab,0x97,0xa8,0x8a,0x0b,0x58,0x1f,0xc5,0x61,0xe2,0xbc, +0x71,0xd3,0x42,0x5d,0xfd,0xc6,0xed,0xfc,0xc5,0x9e,0xdb,0xaf, +0xce,0x5f,0xe3,0xc4,0xcf,0xd4,0xdd,0x3b,0x5e,0xd7,0x7f,0x6a, +0x7c,0xd9,0xd4,0x95,0xef,0xd9,0xd0,0xb1,0xaa,0x6a,0x3d,0xf5, +0x96,0x25,0x42,0x22,0xc1,0x24,0x3f,0x5c,0x60,0x80,0xdf,0x6b, +0xb6,0xb9,0xa8,0x5e,0x81,0xe9,0x09,0x52,0x0a,0x9e,0x06,0x1c, +0x14,0x62,0x95,0xc1,0x14,0xd2,0x24,0xf5,0x6f,0xb1,0xaf,0x4f, +0xea,0xd7,0x30,0x54,0x8e,0x60,0x2d,0xd0,0x99,0xb8,0x5f,0xb2, +0xbb,0x29,0xbb,0x62,0xe1,0xce,0x37,0x6d,0xad,0xd9,0x5c,0xb6, +0x8e,0xa3,0x6e,0x72,0x1a,0x11,0x56,0xb7,0xa0,0xe1,0x5f,0x52, +0xae,0xf0,0xb2,0xd7,0xc6,0x33,0x70,0xbe,0x39,0xcc,0x9f,0x8c, +0x5b,0x19,0xdc,0xb9,0x86,0x78,0xe1,0x30,0x73,0x1c,0x2f,0x9b, +0xd1,0xe2,0xc8,0x77,0x7f,0x6a,0x81,0xa9,0x45,0x30,0x8c,0x03, +0x67,0x4f,0x82,0x57,0xba,0xae,0x42,0xb2,0xa4,0x5b,0x98,0x2c, +0x55,0x35,0x98,0x48,0x19,0xce,0x44,0xa9,0x6c,0x15,0x1c,0x91, +0x76,0x6e,0xfc,0x05,0x99,0x6d,0xa2,0x2b,0x85,0x24,0x1c,0xce, +0x81,0x44,0x98,0xf3,0xb1,0x4d,0xfb,0x93,0x6c,0x3c,0xce,0xf8, +0x64,0x32,0x1e,0xb9,0x4f,0xc6,0xe3,0x75,0x4c,0x6f,0x63,0x05, +0xc8,0x27,0x63,0x92,0x0c,0x42,0x59,0xd7,0xb5,0xda,0x3a,0x38, +0x79,0x1b,0xb5,0x1e,0x98,0x7c,0x11,0xd8,0x47,0xf1,0xaf,0xb9, +0x48,0x2c,0xeb,0x86,0xb2,0x48,0x26,0x7e,0x26,0x0c,0x5d,0x0b, +0x93,0x36,0xe6,0xb5,0xf1,0xa8,0xd5,0x87,0x2a,0xd7,0x1d,0x6f, +0x71,0xa2,0x28,0x94,0x7c,0xd9,0xff,0xb3,0x49,0xda,0xff,0xb3, +0xc9,0x84,0xc0,0x30,0xf1,0x1c,0x0e,0x63,0x14,0xd3,0x84,0xef, +0x09,0xce,0xf8,0x08,0x52,0x7d,0xd0,0xcf,0x0a,0x39,0x59,0xdd, +0x0b,0x44,0x9c,0x29,0x4d,0x45,0x7c,0x8f,0xdf,0xf6,0xde,0x64, +0x81,0x99,0x44,0x70,0x8d,0x95,0x30,0x8d,0x7a,0xfc,0x4b,0x86, +0x8c,0x62,0x8e,0xd8,0x45,0xf0,0x7e,0x2b,0x5c,0xac,0xc1,0x8b, +0x2d,0xff,0x1c,0xef,0xd0,0x41,0x74,0xb7,0x15,0x5e,0xd4,0xe1, +0x8b,0x5e,0x7d,0x74,0x80,0x7b,0x86,0x78,0x17,0xff,0xcd,0xac, +0xce,0x91,0x6a,0xf9,0x9c,0xa5,0xbd,0x99,0x5e,0xa9,0xd5,0xc9, +0xba,0x24,0xaa,0x2a,0xd3,0x05,0x27,0x92,0xe4,0x93,0xee,0x16, +0xef,0x55,0x97,0xc6,0xfb,0x15,0x1e,0x38,0x77,0x28,0x8b,0x03, +0xdd,0x93,0x24,0x60,0x87,0x9f,0xfb,0x3e,0x07,0x0e,0xa3,0xad, +0x84,0xf5,0x0d,0xf8,0x0d,0x93,0x9c,0x9f,0x50,0x10,0x5f,0xc4, +0x61,0xa4,0xf8,0x37,0x91,0x52,0x73,0xe6,0xe2,0x08,0x36,0xc1, +0x56,0x52,0x97,0x4c,0x4c,0x3d,0xaf,0x05,0xef,0xf1,0xbd,0xb8, +0x98,0x85,0x1a,0x81,0x25,0x9b,0xd1,0xef,0x0a,0x0b,0x7e,0xa8, +0x4a,0x29,0xab,0xdf,0x65,0x56,0x38,0x84,0x36,0xc4,0xe6,0x68, +0x4c,0x8d,0x56,0x1e,0x74,0x4b,0xf5,0x28,0xf6,0x4b,0xf5,0x28, +0x16,0xe0,0x74,0xf1,0x5a,0xb7,0x10,0xfb,0x42,0xb9,0xb1,0x57, +0xb1,0xf1,0x0f,0x51,0x7f,0x3d,0x9b,0xa8,0xaf,0x5a,0xcf,0x34, +0x25,0x4b,0x32,0x02,0x41,0xb4,0xc3,0x17,0xb0,0x8a,0xd9,0x52, +0x25,0xf1,0xa3,0xb0,0x59,0x5f,0xd4,0xa1,0x97,0x7b,0x76,0x77, +0x43,0x85,0x61,0x8f,0xe0,0x89,0x72,0x30,0x85,0xa3,0x8c,0xa8, +0x26,0x36,0x10,0x4a,0x77,0x2b,0x24,0xba,0x2b,0x4c,0x56,0x2c, +0xa2,0x01,0x0a,0x96,0x1a,0xe1,0x52,0x54,0x17,0x6f,0x77,0x08, +0x29,0xf7,0x94,0x7a,0x5d,0x0a,0xbd,0x27,0xa2,0xdc,0x80,0x49, +0x30,0x54,0x2d,0x63,0x1a,0x93,0x92,0x1a,0xb4,0x84,0x16,0x70, +0x26,0xe2,0xfc,0x17,0x20,0xb6,0xa0,0xf8,0xf3,0x97,0xa3,0xc0, +0xb7,0x8a,0x32,0x71,0x89,0xa5,0xac,0x11,0x1f,0x30,0xae,0x21, +0x6e,0xa1,0x6e,0xc7,0x63,0x8d,0x78,0x50,0x49,0x86,0xe1,0x05, +0x6f,0xce,0x05,0x75,0xf0,0xe6,0x07,0x8d,0x0e,0xe9,0x1f,0xe1, +0xe0,0xca,0x0b,0xf6,0x3c,0xae,0xfa,0x05,0x35,0x61,0xc1,0xf4, +0x92,0x7a,0x7e,0x5d,0x8d,0xac,0x69,0x7b,0x47,0x47,0x49,0x47, +0x6d,0x4d,0xbd,0xf3,0x79,0xde,0xde,0xca,0xc2,0x41,0xe6,0xe1, +0xd5,0xe4,0xdb,0x76,0x44,0x5a,0x04,0xa7,0x5c,0xf6,0x9a,0xb4, +0x32,0x8c,0x2a,0xf8,0x6f,0xdc,0xc0,0x60,0x98,0x0f,0x6e,0x58, +0x47,0x07,0x79,0x87,0x85,0xea,0x43,0x98,0x93,0x0b,0x56,0x90, +0xa0,0x01,0x03,0x15,0x47,0x7a,0xc4,0xe1,0x6c,0x1c,0x96,0x13, +0x71,0x0b,0x3a,0xb0,0xf1,0x14,0xe2,0x99,0x33,0xb5,0xc9,0x29, +0x75,0x5a,0xc2,0x06,0xa8,0xed,0x51,0xce,0x33,0x90,0x18,0xb7, +0x70,0x8a,0x08,0x83,0xa0,0x52,0xd9,0x6c,0x20,0x0c,0xc3,0x95, +0xf4,0x2e,0xfd,0xe7,0xfb,0x20,0xb3,0x77,0x06,0x27,0xa8,0xe1, +0x6f,0x97,0xe0,0x37,0x78,0xc1,0x9c,0xb0,0x39,0x6e,0x17,0xec, +0xc6,0x59,0x07,0x1d,0xde,0xbf,0x7e,0x0c,0x8e,0x64,0x24,0xb3, +0x51,0x65,0x3e,0x96,0x15,0x3d,0x4a,0xd2,0x8a,0x69,0x3d,0xdb, +0x77,0xfa,0x31,0x27,0x4e,0x67,0xa0,0x4d,0x98,0x41,0xe8,0x2f, +0xb4,0xc1,0x4a,0x56,0x54,0x11,0x67,0x90,0xf8,0xee,0xb8,0xde, +0x98,0x6e,0x0e,0xd2,0x71,0x13,0x1d,0x6e,0x29,0x30,0x84,0x74, +0x9d,0xeb,0xaa,0xab,0x93,0x9e,0xc7,0xce,0x4a,0xee,0x60,0xe8, +0xe1,0xd9,0xb8,0xaf,0xff,0x79,0x0a,0x3a,0xc4,0xf5,0x2f,0x84, +0xc1,0xad,0xe2,0xe0,0x9f,0xfa,0x8f,0x4f,0x85,0x29,0xed,0xa2, +0x93,0xb8,0x54,0x47,0x76,0x1b,0xef,0x33,0xce,0x21,0x2e,0xa1, +0x2e,0xc7,0x63,0xa9,0x2f,0xe1,0x92,0x41,0xad,0xe0,0x5d,0x49, +0x50,0x27,0x2f,0x3f,0xa8,0x7f,0x68,0x9b,0x1f,0x75,0xa5,0xaf, +0xd8,0x2a,0x5c,0xf9,0x3b,0x7d,0x39,0xcb,0x67,0xd0,0x5e,0x5b, +0x55,0x6d,0xd4,0x64,0xd7,0xc9,0x29,0xa7,0xc1,0x5e,0x12,0xd3, +0x1c,0x73,0x39,0xbc,0x85,0x03,0x2f,0x38,0x8f,0x6d,0x46,0x94, +0xa7,0xad,0xc6,0x1d,0xcc,0xb1,0xb9,0x7e,0x93,0xa5,0xdc,0x8c, +0x53,0xcc,0xb2,0xd0,0x85,0xfd,0xb9,0x19,0x47,0xfc,0xec,0xc6, +0xe0,0x90,0xfe,0xdc,0x0c,0x8e,0xb9,0x9e,0x9f,0x7b,0x2f,0x5e, +0x2b,0xee,0x76,0xe4,0x9f,0xa7,0x40,0x8d,0x62,0x4b,0x51,0x71, +0x8b,0x6c,0x9a,0x3e,0x73,0x29,0x0e,0x32,0x28,0x91,0x4a,0x12, +0xf6,0xbd,0x7f,0x7d,0xfd,0x2d,0xa7,0xbc,0x8b,0x4f,0x08,0x46, +0xfb,0x21,0xe3,0x84,0x03,0x34,0x5b,0x4c,0x54,0xeb,0x60,0x58, +0x02,0x1d,0xb7,0x29,0x1a,0x70,0x0e,0x94,0xca,0x03,0xf8,0x3d, +0x9b,0x64,0x28,0x29,0x52,0x55,0xa5,0xa6,0x54,0x69,0x29,0xca, +0x44,0x6f,0xf6,0x37,0x51,0x8d,0x40,0x5d,0x33,0x0e,0x7b,0x07, +0x6c,0x13,0xb2,0xcf,0x4d,0xe6,0xe3,0x40,0x0b,0x18,0x38,0x09, +0x39,0x46,0x61,0xfd,0x91,0x6c,0x98,0x3a,0x6e,0x0a,0x7e,0xbd, +0x45,0x12,0xe0,0x1c,0x75,0x0f,0x06,0xc2,0x57,0xb7,0xfe,0xe2, +0x94,0x87,0x50,0x46,0x6d,0xaf,0xfd,0x32,0x18,0x42,0x1c,0x2b, +0xb8,0x59,0x92,0x95,0x14,0x45,0x0f,0xc7,0x11,0x38,0x66,0xf5, +0x79,0x7a,0xe1,0x98,0x07,0xc0,0x03,0xff,0x84,0xde,0xa7,0xd2, +0x12,0x87,0x13,0x98,0x0b,0x6a,0x38,0x97,0x9a,0x80,0xb3,0xe2, +0x09,0xb1,0x9b,0x6c,0xb4,0x44,0x67,0x53,0xb9,0x15,0xff,0xf0, +0x6e,0xdf,0xeb,0xfa,0x0f,0x9c,0xc2,0x5a,0xf9,0x98,0x6c,0xb9, +0x65,0x79,0xc3,0xf5,0x36,0xe5,0xa1,0xb9,0x30,0x2e,0x12,0xa6, +0x73,0x75,0x3d,0x78,0x80,0x89,0x6b,0x8e,0x69,0x8d,0x6c,0x35, +0x8d,0xe4,0x0f,0xa0,0xa6,0x07,0xce,0x5c,0x8b,0x2a,0xc9,0x3e, +0x3c,0xfe,0x22,0x87,0xe9,0x38,0x18,0x35,0xcc,0x41,0x83,0x72, +0x03,0x59,0xa8,0xec,0x98,0x59,0x58,0x94,0x94,0xd8,0x13,0x0d, +0x33,0x53,0xdf,0x67,0x1e,0x6f,0xe1,0x6d,0x83,0x4d,0x82,0x8c, +0x43,0x38,0x18,0x0b,0x5a,0xcd,0xb4,0xf7,0x07,0xc3,0xe4,0x7c, +0xf6,0xff,0xa2,0xec,0x3d,0xa0,0xaa,0xb8,0xbe,0xf6,0x61,0x1b, +0x33,0xa3,0x49,0x8c,0xc6,0x1c,0x33,0x40,0x02,0xd8,0x7b,0xef, +0x1d,0xc4,0x0e,0xd2,0xb9,0xf4,0xde,0x8b,0x28,0xa8,0x88,0x52, +0xa4,0x59,0x63,0xa3,0x57,0xe9,0xbd,0xf7,0xde,0xab,0x0d,0xc5, +0x12,0x6b,0x6c,0x89,0xc6,0x12,0x13,0x13,0x13,0xdd,0x73,0xb3, +0xe7,0xfe,0xde,0xef,0x0c,0x26,0xf9,0xde,0x7f,0xf9,0xd6,0xb7, +0xde,0xc5,0x5a,0x70,0xd6,0x05,0xee,0x3d,0xe7,0xcc,0x3e,0x7b, +0x3f,0xcf,0xcc,0xde,0xcf,0x3e,0x7d,0x3c,0xa3,0x24,0xad,0x22, +0xb5,0x5a,0x39,0x61,0x52,0xf6,0x8c,0xda,0xd9,0x8e,0xeb,0x4d, +0xb4,0x37,0x6c,0x29,0x33,0xe6,0xaf,0x5f,0xeb,0xba,0x5e,0x77, +0xab,0x52,0xbb,0x65,0xd3,0x85,0xad,0x9c,0x48,0xe4,0x02,0x41, +0x7f,0x2d,0xc8,0x31,0xc1,0x1c,0x2d,0xf0,0x37,0xc5,0x42,0xb8, +0x0c,0x85,0x2c,0xc4,0xa2,0x16,0x89,0xc4,0xf1,0x01,0x38,0xda, +0x16,0x47,0x38,0xbd,0x0f,0x00,0xa5,0x70,0x50,0xe6,0xc4,0xe3, +0x61,0xc4,0x71,0xf6,0x7a,0x1c,0xbb,0x76,0x63,0xa9,0x39,0x5f, +0x58,0x20,0x29,0x25,0x72,0xe2,0xba,0x6e,0xe1,0x14,0x5b,0xdc, +0x5c,0xd0,0x95,0xdd,0x41,0xfd,0xbc,0xb3,0xfc,0x3e,0xb1,0xd3, +0x32,0xd4,0xdb,0x6c,0x55,0x6e,0xcd,0x3f,0xe8,0xed,0x1e,0x68, +0xba,0xc7,0x09,0xa3,0xc4,0x43,0xc4,0x21,0xd2,0xe2,0x88,0xec, +0x08,0xf7,0x00,0x28,0x17,0x20,0x37,0x60,0xe2,0x59,0xb6,0xca, +0xe7,0x7c,0x41,0x4a,0x41,0x52,0x81,0x72,0xc2,0xf6,0x8c,0x9d, +0x65,0xfa,0xce,0x16,0xa6,0xd6,0x1b,0xed,0x4b,0xad,0xf9,0xc1, +0xda,0x8e,0xc6,0x9a,0xb6,0x32,0xab,0x06,0xeb,0x6e,0x9b,0xf2, +0x66,0xde,0xb0,0xd1,0xb6,0xd1,0xbd,0xa5,0xe3,0x71,0xf6,0xab, +0xe8,0x77,0x5c,0x5d,0x17,0x3a,0x31,0x71,0xe5,0x31,0x15,0x31, +0x55,0x66,0x71,0xfc,0x7e,0x64,0xbc,0xa7,0xeb,0xcd,0xe2,0x8a, +0xf0,0xa1,0x05,0x4c,0xd9,0x84,0x5f,0x59,0xc2,0x57,0xcb,0x59, +0xa9,0xb4,0xc2,0x72,0xa8,0x93,0xfb,0xa8,0x18,0x98,0x9a,0xfa, +0x2e,0x8d,0x33,0x11,0x52,0x09,0xaa,0x2c,0x80,0x0d,0x66,0xb8, +0x61,0x19,0xa8,0x58,0x50,0x5e,0xfc,0x08,0x74,0x59,0xd8,0x24, +0x8e,0x22,0x2e,0x83,0x01,0xb7,0x23,0x9f,0x70,0xf0,0x39,0x73, +0x74,0x59,0xa0,0xa6,0xcb,0x56,0x4e,0xa1,0x86,0x07,0x49,0x37, +0xdc,0x67,0xf2,0x8a,0x73,0x4a,0xd2,0x4b,0x6d,0x0a,0x78,0xfb, +0xcd,0x1b,0x57,0x6c,0x30,0x2b,0xb3,0xe6,0x8b,0xb2,0xb3,0xd2, +0x32,0xb2,0x38,0x28,0xc5,0x46,0xd2,0xe6,0xd9,0xed,0xdc,0xe4, +0x58,0x55,0x2b,0xb5,0xca,0xa8,0x34,0x29,0xe6,0xf4,0x30,0x80, +0x38,0x85,0x46,0x55,0xa8,0x83,0x86,0x1e,0x4e,0xfa,0xbb,0x2b, +0x46,0x2d,0xd3,0x22,0x75,0xc5,0xb8,0xc3,0x1a,0xa4,0x2b,0x4d, +0x61,0xbb,0x29,0x91,0xea,0x93,0xf5,0xeb,0xd4,0xe9,0x34,0x55, +0x7e,0xec,0xa6,0xd1,0xc1,0x29,0x8c,0x70,0x2f,0xb9,0xde,0xdf, +0x74,0xb5,0xe0,0xb2,0xd4,0x2a,0xc3,0xc8,0x6a,0x9b,0xd4,0x2a, +0x03,0x1e,0x08,0x33,0x89,0x57,0x90,0x67,0x88,0x47,0x08,0x07, +0xc1,0x52,0x9b,0x5a,0x3d,0x03,0xd4,0xc3,0xb1,0x46,0x30,0x16, +0xa3,0x59,0xdb,0x20,0xdb,0x60,0xfb,0xb0,0x38,0x43,0xbe,0x26, +0xbe,0x26,0xa1,0x26,0x49,0xaa,0xab,0x1c,0x29,0x35,0x6d,0x7e, +0xfe,0x77,0x85,0x63,0x27,0x5b,0x91,0x54,0x9e,0x5c,0x9e,0xc2, +0xc1,0xe2,0x37,0x64,0x2f,0x6b,0x6c,0xb2,0x5e,0xa6,0xed,0x9e, +0xad,0xc3,0x0f,0x54,0x5c,0xaa,0x6b,0x69,0x0e,0x46,0x3d,0xe3, +0xa5,0xa8,0x36,0xbf,0xc2,0x82,0x87,0xd5,0xc0,0x5e,0x85,0x91, +0x50,0x4d,0x11,0x81,0x01,0x0b,0x15,0x8a,0x41,0xe2,0x14,0x1e, +0x4d,0xbd,0xfc,0x3d,0x36,0x31,0xea,0x54,0x6c,0xb8,0x1a,0x6c, +0xc0,0x55,0x55,0x4d,0xa8,0x09,0x2b,0x0f,0x27,0x44,0x44,0x05, +0x07,0x2a,0x07,0x07,0x2a,0x1d,0x15,0x56,0xe8,0x29,0xca,0x99, +0xcd,0x59,0xfe,0x37,0xd4,0x60,0x22,0x53,0x9f,0x72,0xbe,0x4e, +0x1d,0x66,0xb3,0xb2,0x74,0x25,0xd4,0x62,0x03,0xe5,0x91,0xc4, +0x7d,0x8b,0xc5,0x3a,0xbd,0xed,0x75,0x8e,0x7c,0x4f,0x7f,0xff, +0x8b,0xca,0xeb,0x9c,0x68,0x89,0x06,0xc4,0xe7,0x86,0xe5,0x23, +0x87,0x8b,0x16,0x5e,0x7c,0xc3,0xf6,0x86,0xf5,0x25,0x5a,0x74, +0x89,0x96,0xf2,0xbb,0x12,0xa1,0x9f,0x28,0xbe,0xe8,0xba,0x7d, +0x1b,0xd3,0xba,0x21,0x0d,0x78,0x21,0x15,0x79,0x49,0x79,0xd5, +0xdf,0x83,0x60,0x8b,0xa0,0x09,0x2d,0xac,0xc8,0xd1,0xf3,0x74, +0x17,0xae,0xad,0x67,0x15,0x93,0xd0,0x9c,0x68,0x82,0xe6,0x6d, +0xa6,0x1b,0x35,0x09,0x68,0xde,0x45,0x4d,0x16,0x1c,0x06,0xc9, +0xf7,0x70,0x6d,0x35,0xfb,0x07,0x32,0x44,0x8c,0x36,0xff,0x93, +0xf1,0xd0,0x91,0x99,0xef,0xb0,0x2b,0xb0,0xe3,0x2b,0x72,0x8a, +0x72,0xf3,0x0b,0xb9,0x9f,0x19,0xa7,0xb5,0x86,0x3b,0x96,0x18, +0x16,0xda,0xf2,0xaf,0xaf,0x0c,0x3e,0x6c,0x7a,0xcb,0xfd,0xc4, +0xb8,0xe2,0x18,0xdd,0x85,0x93,0xd6,0x16,0xdb,0xf1,0xa0,0xf4, +0xe4,0xd6,0xaf,0xb5,0x30,0x93,0xeb,0x60,0xd6,0x1c,0xd7,0x0c, +0xd7,0x53,0xb3,0x38,0x12,0x12,0x22,0x53,0x5d,0xc7,0xa4,0x58, +0x2a,0x5d,0x67,0xbe,0x2f,0xc8,0x79,0x10,0xa7,0x1e,0x33,0x78, +0xf6,0xde,0x29,0x18,0xcf,0x89,0x23,0x98,0x94,0x4c,0x49,0x2e, +0x85,0x83,0xdf,0x18,0xc5,0x89,0x5a,0x82,0xba,0x9a,0x92,0x11, +0x7d,0x35,0xf1,0x2e,0xea,0xae,0xa7,0x20,0x78,0x00,0x54,0xc8, +0x2f,0xb0,0x06,0x10,0xd7,0x3c,0x03,0xe7,0x4e,0x74,0x7e,0x6b, +0x30,0x03,0x6d,0x4c,0xc1,0x66,0x31,0x2e,0x43,0x84,0x65,0xb3, +0xd0,0xd9,0x18,0x9c,0x71,0x6e,0x1f,0xcc,0x05,0x8b,0x6e,0x76, +0x40,0x50,0x26,0x58,0x74,0x00,0xc7,0xcf,0xc7,0xf9,0x6a,0x6d, +0xce,0x97,0xde,0x17,0xbd,0x4e,0x86,0x89,0x52,0x8a,0xce,0x39, +0x5c,0x36,0x54,0x16,0x4d,0x69,0x58,0x52,0x7a,0xbb,0xba,0xbc, +0x00,0x7f,0x66,0xa1,0x1c,0x8f,0x11,0xdc,0x0f,0x3b,0x61,0x3f, +0x23,0xee,0x40,0x27,0x32,0x0b,0xb3,0x7e,0x61,0x05,0x5f,0xca, +0x6c,0xcf,0x76,0x9f,0x96,0x1a,0x0d,0xec,0x47,0x43,0x46,0x61, +0x7e,0x9b,0x40,0xd6,0x64,0xcc,0xa2,0x41,0xc9,0x06,0x94,0xc9, +0xaf,0x30,0x0e,0xfe,0xc2,0x71,0xcf,0x87,0x0a,0x19,0x7e,0x33, +0x9e,0x8e,0xb3,0xa9,0x33,0x59,0x84,0x9f,0xe2,0x5f,0xf0,0xe9, +0x4c,0x29,0x77,0x68,0x21,0xce,0xeb,0x86,0x79,0x30,0xb9,0x93, +0x45,0x10,0x9e,0x13,0xfb,0x4a,0xf3,0x4a,0x8b,0x22,0x2f,0x6b, +0xbe,0xc3,0xa3,0xde,0xa3,0xc1,0x99,0x13,0xf4,0x24,0x35,0xde, +0xf2,0x10,0x1c,0xa7,0x89,0x73,0xd4,0xda,0xdd,0xdb,0xde,0x67, +0xbf,0x8c,0x07,0x15,0x65,0x58,0x85,0x31,0x38,0x9e,0x19,0xaa, +0xe5,0x6d,0x49,0x94,0x04,0x24,0x0a,0x31,0x8f,0x05,0x2f,0x49, +0xdc,0x64,0x31,0xf5,0x91,0x8b,0x19,0x05,0x8b,0x25,0xc4,0xaa, +0x6e,0x47,0x8b,0x7e,0xb9,0xa7,0x35,0xdf,0xeb,0x7a,0xc1,0xb6, +0x8d,0xc2,0xda,0xdb,0x30,0x86,0xcc,0x40,0xe3,0xb7,0xac,0xc0, +0xe0,0xfe,0xa1,0x2e,0x10,0xb7,0x54,0x60,0x31,0x1a,0x33,0x62, +0xc1,0x1d,0x02,0xc6,0x1a,0x74,0x84,0x6a,0xe7,0x89,0x3b,0x8e, +0xb4,0xc2,0xd1,0x5b,0x66,0x36,0x3b,0xf1,0x37,0x3f,0x74,0x49, +0x75,0x90,0x9c,0xf4,0xf8,0x4a,0x02,0x6b,0x19,0xef,0x20,0xb6, +0x43,0x34,0x82,0x40,0xca,0x43,0x17,0xc0,0x69,0x58,0xf0,0xb6, +0x73,0x86,0x84,0xd3,0x34,0xde,0x9b,0x4e,0xc2,0x51,0x14,0xb6, +0x6d,0x34,0xbd,0x85,0x15,0xa0,0x37,0x15,0x4f,0x1a,0xc3,0x7e, +0xd6,0x5d,0x7b,0xa6,0x16,0x7e,0xad,0xcb,0xc1,0x4f,0xb8,0x89, +0x3d,0x55,0x77,0xaa,0xa1,0x59,0x05,0x0e,0x74,0x6f,0x81,0x2a, +0x23,0xac,0x9a,0x0e,0x19,0x86,0x58,0xcd,0x60,0x61,0x18,0xae, +0x32,0xc3,0x09,0x6a,0x2d,0x56,0x75,0x1f,0x52,0x61,0x6c,0x34, +0x2c,0x51,0x86,0xcf,0xc4,0x2f,0x7b,0x5e,0x33,0x39,0x56,0xa0, +0x3e,0x00,0xc3,0xbf,0x4f,0x78,0xa5,0x4c,0x21,0x5e,0x2f,0x54, +0x46,0x33,0xf1,0xf3,0x60,0x94,0x36,0x68,0x68,0x4b,0x10,0x4f, +0xf9,0xf2,0xe4,0x41,0x97,0x5b,0xdc,0x6b,0xf8,0x89,0xa0,0xc6, +0x9f,0xa0,0x41,0x6d,0x60,0xfa,0x09,0xf2,0x58,0xf8,0x4c,0xee, +0x24,0xea,0x28,0xea,0x59,0x30,0x94,0x07,0x11,0x4c,0x43,0x02, +0x69,0x52,0xce,0x2e,0x1d,0x7d,0x25,0x8d,0x4e,0x4f,0xd4,0x07, +0x23,0xc5,0x6a,0x5c,0x3d,0x24,0xde,0xa8,0xcc,0xf4,0xa7,0xa7, +0x5d,0x50,0x97,0xcf,0x84,0xd1,0xfd,0xac,0x62,0x0d,0xd2,0x43, +0x51,0x48,0xff,0xa3,0x70,0xe8,0x3f,0x0a,0xe9,0x7f,0x14,0x4a, +0x4d,0x4c,0x05,0x63,0x72,0x80,0xb5,0x30,0xdd,0x6a,0xb6,0xc3, +0x3d,0x4b,0x87,0xef,0xab,0xe8,0xaa,0xab,0x6b,0x0c,0x41,0x63, +0xc3,0x65,0x38,0x79,0x5e,0x29,0x3d,0xc8,0x1b,0x81,0xbd,0x42, +0x0f,0x72,0x8d,0x8a,0xa0,0x66,0xc4,0x42,0x8e,0xe2,0x3a,0x71, +0x09,0x8f,0xa6,0xbe,0xe8,0x07,0x36,0x31,0xfa,0x54,0x0c,0x3d, +0xc8,0x4b,0x70,0x45,0x55,0x23,0x2e,0x83,0xe5,0x87,0x29,0xe1, +0x0e,0x09,0xfa,0x78,0x90,0x17,0x1b,0x28,0xaa,0x99,0x6d,0x99, +0x07,0xae,0xa9,0xc1,0x67,0x4c,0x5d,0x0a,0x0d,0x90,0x30,0x87, +0x35,0x4b,0x97,0xfa,0x64,0x2a,0xae,0xcb,0x2b,0x89,0xe2,0xe7, +0x9e,0x9b,0x60,0x24,0xcf,0x66,0x85,0x4b,0x0e,0xc4,0x6b,0xb3, +0xf5,0x3a,0xa3,0xed,0xb5,0x4e,0x7c,0xe7,0x85,0xee,0x17,0x65, +0xf4,0x58,0x6f,0x42,0x43,0xb2,0xe7,0x86,0xed,0x43,0xa7,0x4b, +0x96,0xde,0x7c,0xed,0xb6,0xda,0xf5,0x45,0x1b,0x39,0x94,0x5d, +0x20,0xa8,0x0a,0x5b,0x40,0x95,0x11,0x17,0x8d,0xa2,0xa3,0x6d, +0x74,0x84,0xaa,0x78,0x98,0x80,0x2a,0xda,0xa3,0x2a,0xb5,0xcb, +0x25,0xc2,0x7d,0x82,0xa9,0x42,0x02,0xa4,0xe2,0xa1,0x5f,0x20, +0xb9,0x0b,0x93,0xff,0x30,0x98,0x82,0xa7,0x4c,0xe0,0xd4,0x2c, +0x16,0xd3,0xc1,0x97,0xe0,0x5d,0x59,0xbb,0x82,0x63,0x74,0x83, +0x92,0x0d,0x6f,0xa7,0xdd,0xc9,0xba,0x9e,0xa7,0x8c,0x26,0xdd, +0xf2,0x2b,0x75,0x2c,0x7a,0x7e,0x2c,0xfb,0x62,0x71,0x39,0x6b, +0x3e,0x0a,0x57,0x20,0x0b,0x2b,0xa4,0x7b,0x7c,0x6b,0x09,0x2c, +0x7b,0x83,0xcb,0xd8,0x8e,0x89,0xb0,0xec,0x2d,0xfd,0x49,0x0d, +0x7a,0x19,0xc1,0x65,0xd3,0x61,0x19,0x2b,0x0a,0xf4,0xa8,0xd0, +0x7f,0x98,0x21,0x35,0xba,0x3f,0xec,0x7c,0x98,0x13,0x8c,0x61, +0x3c,0xa9,0xf7,0x6a,0xb3,0xae,0xb6,0xa9,0xac,0xe6,0x5d,0xea, +0x4c,0x5a,0xec,0x8a,0xb9,0x08,0xbc,0x4c,0x3c,0xc3,0x63,0x8a, +0xd4,0x61,0x97,0x01,0xfa,0xb3,0xba,0x99,0xfb,0xaf,0xaa,0xd1, +0xcb,0xd9,0x9c,0x9c,0xdc,0xa4,0xfe,0x56,0xca,0x66,0xc1,0xf1, +0x2c,0x52,0x83,0xad,0xbc,0x93,0xff,0x3a,0xe5,0x89,0x2c,0x99, +0x0f,0x5c,0xe3,0xbb,0xd8,0x49,0x9b,0x13,0xec,0xc0,0x8b,0x54, +0x6d,0x2e,0x59,0x90,0xbd,0xb2,0x2b,0x9b,0xf7,0x7d,0xec,0xf6, +0xd2,0x69,0x90,0x1b,0xfb,0x5e,0xc8,0x23,0x78,0x25,0x10,0xa7, +0x99,0x23,0xab,0xd6,0xe1,0x58,0xf9,0x32,0xed,0x75,0x8c,0xa4, +0xe6,0x34,0x0d,0xd3,0x34,0x98,0x14,0x7d,0xa5,0x87,0x4c,0xe3, +0xdf,0x9d,0x51,0xce,0xb1,0xf2,0x05,0x8a,0x2d,0xa4,0xaf,0xb4, +0xbf,0xa9,0xa9,0xc9,0xb9,0x9a,0xb7,0xb5,0x30,0x71,0xd4,0xf7, +0xf6,0x6e,0xa5,0x48,0x8c,0x42,0xb5,0xf2,0x2e,0x51,0xef,0x85, +0x30,0xa1,0x5d,0x9c,0xf0,0x44,0x98,0xd0,0x21,0x7d,0x5f,0xd8, +0x29,0x7a,0x8b,0xab,0x74,0x4d,0x2e,0xe1,0x63,0xc6,0xef,0xa8, +0xdf,0xb1,0x7d,0xc7,0x29,0x7e,0xfd,0x2d,0x19,0x3e,0x2d,0x7c, +0x51,0x1a,0xde,0xc5,0xcb,0x02,0x76,0x04,0xe8,0x50,0x20,0x76, +0xf3,0x57,0xb6,0x0e,0x37,0xbc,0x46,0x0d,0xd0,0x9c,0x53,0xda, +0xc2,0xaf,0xab,0xd3,0x6f,0xb5,0xed,0xe6,0x44,0x2f,0x41,0x5f, +0x42,0xce,0x46,0xd4,0xaf,0xe0,0x64,0x71,0x1b,0x39,0xdd,0x7d, +0xea,0xd2,0x4d,0x15,0x50,0x97,0xc4,0x68,0x3f,0x08,0xd9,0x04, +0x7b,0x03,0x71,0xba,0x39,0x2a,0x49,0x73,0x7e,0x21,0xcd,0x79, +0x8e,0x32,0x4c,0xc7,0x24,0x0d,0xa9,0xa5,0xca,0x23,0x69,0xce, +0xad,0x92,0x86,0x51,0x14,0x0b,0x2f,0x4f,0x12,0x6c,0xa5,0xfe, +0xa5,0x95,0x15,0xa7,0x52,0xef,0x7c,0x07,0x5e,0x6f,0x60,0xc5, +0x2a,0xfc,0x94,0x9e,0x02,0xd0,0xa7,0xfb,0x06,0xd6,0x28,0xa3, +0x6e,0xf9,0xf5,0x6a,0x56,0xa1,0x85,0xa1,0xff,0x34,0x42,0xd1, +0x40,0xca,0x61,0xd4,0x61,0x2c,0x11,0xeb,0xcc,0x80,0x65,0x5c, +0xf5,0x8c,0x2d,0x36,0x39,0xe4,0xdb,0xf0,0x55,0xd9,0x25,0x39, +0x85,0xf9,0x1c,0x0c,0x63,0xac,0xd6,0x6d,0xdf,0x31,0xdd,0xa8, +0xc0,0x9a,0x87,0xe1,0x57,0x1e,0x3c,0xec,0x7a,0xcb,0xfd,0xc6, +0xd8,0xe2,0x68,0xed,0x05,0xf8,0xd9,0xfa,0x62,0x1b,0x1e,0xbe, +0x7c,0xf2,0xe8,0xb7,0x16,0x98,0xce,0xf5,0x31,0x6b,0x8f,0x6b, +0x53,0x5f,0x2d,0x8b,0x0c,0x3e,0x6c,0xa4,0xba,0x92,0x49,0xb5, +0x50,0xfa,0x8e,0x79,0x52,0x94,0xf3,0x28,0x4e,0x3d,0xf6,0xc6, +0xd9,0x5b,0x30,0x4e,0x45,0xfc,0x9a,0x39,0x9f,0x99,0x9a,0x93, +0x94,0xcb,0x09,0x2c,0x65,0xf0,0xc6,0x10,0x4c,0xba,0xf0,0xf8, +0x1f,0x10,0xdc,0x21,0x2e,0x80,0x83,0xef,0x29,0x3f,0x0f,0x80, +0xb9,0x2f,0x3a,0x17,0x7c,0x30,0xd5,0xc0,0xcf,0x3e,0xc8,0x34, +0x26,0x7d,0x30,0xd1,0xd8,0x62,0x3a,0x88,0x65,0xa0,0x3d,0x05, +0xfd,0x4d,0xc0,0x91,0xf5,0xde,0xbe,0x76,0xab,0x86,0x41,0xf0, +0x2d,0xff,0xa7,0x87,0xfa,0xad,0x83,0xf8,0x78,0xd7,0x04,0xab, +0x38,0x2b,0xaf,0x70,0xaf,0x70,0x8f,0x70,0x4a,0x28,0xe1,0x2b, +0x8a,0xc7,0xbf,0xfa,0xa8,0xf3,0xf6,0xa5,0x28,0x89,0x03,0xfa, +0xb1,0x26,0x87,0x8d,0x43,0x0d,0xc3,0x13,0x29,0x32,0x1e,0x9d, +0xf1,0x3e,0xf7,0x97,0xe2,0x73,0x43,0x3a,0x6f,0x19,0x51,0x7c, +0xca,0x2e,0x20,0x03,0x6f,0x1e,0xc6,0xbd,0xa0,0x3e,0xa4,0xb2, +0x17,0xaa,0xa2,0x98,0xd8,0x05,0x6f,0x36,0xc1,0x57,0x9a,0x05, +0x1d,0x3c,0x7e,0x7e,0x75,0xde,0x35,0xf7,0x9b,0xdc,0x43,0xc9, +0x85,0x7c,0xf6,0x8e,0x9e,0x42,0xc5,0x56,0x4b,0x72,0x07,0x8b, +0x36,0x30,0xe0,0x34,0x24,0xf2,0xb6,0x0e,0x8a,0xd8,0xb1,0xf7, +0xe4,0x8d,0xc4,0x18,0xce,0x76,0xb3,0x57,0xb1,0x9a,0x60,0x7e, +0x24,0xce,0x71,0xa4,0x04,0xa3,0xdd,0x93,0x82,0xdd,0x59,0xd1, +0xb0,0x0a,0x4a,0x55,0x20,0x48,0x98,0xa7,0x38,0x86,0xdf,0xb0, +0x29,0x46,0xd2,0xbd,0xe3,0xa6,0xa4,0x8f,0x9d,0x00,0x32,0xd9, +0x67,0xa2,0x2a,0x81,0x37,0xad,0x38,0xe3,0x1d,0x90,0x56,0x24, +0x6f,0x4c,0x67,0xe3,0x38,0x0b,0x18,0x37,0x15,0xa7,0x30,0xa2, +0x0e,0xd8,0x10,0x23,0xb8,0xd8,0xc3,0x62,0x0e,0x6a,0x10,0x13, +0x38,0xd6,0xf5,0x51,0x14,0xf0,0x98,0x09,0x2b,0xe8,0x9d,0x23, +0x78,0xb9,0xf3,0x0a,0x5d,0x2b,0x25,0xcd,0x2e,0x34,0xf2,0x52, +0x4c,0x3d,0x1f,0xa7,0xb3,0xe2,0x4b,0xf4,0x21,0x9d,0x60,0x0c, +0x79,0x78,0x02,0xbf,0x97,0xc4,0x7d,0x73,0xa5,0xa6,0x83,0xdf, +0xc0,0xf2,0x21,0x3e,0x2d,0x6d,0xf4,0xb7,0x7f,0x40,0x68,0x87, +0xb8,0x04,0x0e,0x7d,0xc0,0xf9,0x70,0x08,0xe6,0xbf,0xec,0x98, +0x2f,0x6d,0xf4,0xe7,0x74,0xa3,0x35,0x3e,0x18,0x6b,0xac,0x93, +0xdd,0xc3,0x72,0xd8,0x3c,0x05,0x23,0x4c,0xc0,0x87,0xf5,0xdc, +0x38,0x4f,0x13,0xbf,0xd0,0x95,0xd2,0x8a,0xbf,0xba,0xfa,0x0b, +0xdd,0x25,0xee,0xdf,0x5d,0x9a,0xff,0x96,0xee,0x92,0xd6,0xd0, +0x2e,0x0d,0xcc,0x1d,0x74,0xbb,0xc9,0x29,0x26,0x0b,0x57,0xe9, +0x3e,0x94,0x77,0xb3,0x82,0x25,0x52,0xcf,0xfa,0xf9,0x1f,0x14, +0xb5,0x29,0x12,0x43,0xe8,0x22,0x7e,0xa3,0x8b,0xe8,0x47,0x75, +0xfa,0xdb,0xdc,0xbf,0x1f,0x39,0xe4,0xfe,0xa3,0x59,0xb2,0x07, +0x72,0xb0,0x00,0xef,0xb3,0x74,0x90,0x2d,0xf1,0xd1,0x95,0x92, +0x50,0x89,0xe0,0x15,0x43,0xf4,0x2c,0xa2,0x13,0x9d,0xd4,0x61, +0x2f,0xac,0xea,0xc2,0x55,0xd4,0x67,0xec,0x28,0x64,0x73,0x9d, +0x60,0x78,0xc7,0xad,0x67,0xa9,0x30,0x55,0x19,0x56,0x30,0xc6, +0xc7,0x0d,0xc2,0xed,0xd5,0xdc,0x22,0x03,0x22,0x1c,0x54,0xb5, +0xa4,0x2c,0xe4,0x7b,0xcc,0x40,0x41,0x76,0x7b,0xbc,0x7a,0x7c, +0x4f,0xd4,0x95,0x13,0xc0,0x71,0xe2,0x46,0x13,0x98,0xc6,0x1c, +0xc6,0xe1,0xa6,0x1b,0x67,0x59,0x70,0x09,0xa8,0x03,0xaa,0x1f, +0xeb,0xa2,0x88,0x2e,0x12,0xd4,0x31,0x01,0x1d,0xea,0xfa,0x9c, +0x8c,0xc1,0x55,0x9c,0xc1,0xea,0x57,0xf9,0x5d,0xb8,0x43,0x4f, +0x81,0x3e,0xbd,0x48,0x93,0xfc,0xb4,0x37,0x18,0xa9,0xe5,0xef, +0xbc,0xda,0x59,0x70,0x21,0xea,0xa9,0x72,0x34,0x33,0x3d,0xfa, +0xd1,0x22,0x08,0x91,0x74,0xa2,0xa2,0xfb,0x95,0x0e,0xfc,0x48, +0xe0,0xa2,0x38,0x1f,0x2f,0xb2,0xf0,0x1b,0x44,0x11,0xb4,0xc0, +0x2a,0xb0,0xa0,0x53,0x96,0x54,0x32,0x7c,0x59,0x73,0x93,0xcd, +0xb2,0x6d,0xae,0x59,0x3b,0xf8,0xfe,0x8a,0x9e,0x86,0x86,0xe6, +0x10,0x34,0x34,0x5f,0x86,0x9f,0x2f,0x2c,0xb7,0xe2,0x29,0xac, +0x18,0x25,0x69,0x53,0xd4,0xd2,0x20,0x60,0xcc,0x42,0x12,0x0d, +0x02,0xae,0x11,0x51,0x65,0xff,0x2d,0x08,0xcc,0xc0,0xe5,0x95, +0x4d,0x38,0x0b,0x96,0x1d,0x4e,0x8c,0x8c,0x0a,0x3e,0xa4,0x1c, +0x12,0x44,0x83,0xc0,0x52,0x43,0x45,0x3d,0xa3,0x93,0x1e,0x40, +0x5d,0xde,0x08,0x1a,0x04,0x24,0x92,0x3f,0x8f,0x35,0xa7,0x41, +0x40,0x9b,0x15,0xa3,0x41,0x8d,0xd8,0x07,0x38,0x04,0x4a,0xea, +0xab,0xf6,0xc0,0x74,0x21,0x03,0x0b,0x9e,0x43,0x0b,0x16,0x61, +0x0b,0x28,0x8b,0x9b,0x58,0xbf,0x70,0xbf,0x48,0xbf,0x08,0x4e, +0x60,0x4c,0xc4,0x89,0xec,0xc1,0x23,0x07,0x8f,0x1e,0x3c,0x1a, +0x47,0xe9,0xd0,0x57,0xd5,0x30,0xba,0x9c,0xfe,0x39,0x27,0x04, +0xc9,0x17,0x92,0x5d,0x5b,0xec,0xd7,0xc9,0xb6,0xd7,0x38,0xf1, +0x6d,0x17,0x3a,0x5e,0x14,0xd3,0xc0,0xb1,0x80,0xe2,0xc1,0xbd, +0x37,0x1c,0x1f,0xba,0x5c,0xb2,0xf4,0xe2,0xab,0xb7,0x56,0x6e, +0xc8,0xd7,0xe2,0x70,0x2b,0x1c,0x21,0x68,0x80,0x6b,0xc0,0x80, +0x2e,0xb5,0x4d,0x30,0xa1,0xc0,0xd5,0xce,0xdc,0xc8,0xc2,0xc8, +0x83,0xc6,0xbb,0x96,0xb2,0xc6,0xaa,0x8a,0xfa,0xc3,0x74,0xa9, +0xcb,0x71,0xdc,0xbc,0x32,0xba,0xd4,0x79,0xc0,0xf4,0xc2,0x28, +0xa8,0x53,0x11,0xbe,0xa6,0x4b,0x4d,0x94,0x96,0x1a,0x29,0x2d, +0xf5,0x05,0x05,0xae,0xdf,0x4a,0x4b,0x9d,0x36,0xb4,0xd4,0x19, +0x74,0xa9,0x49,0x91,0xe7,0x28,0x70,0x3d,0x2c,0xc5,0xbb,0x85, +0x86,0x8a,0x06,0x46,0x37,0x3d,0x60,0x40,0x0d,0x86,0x33,0xb5, +0xff,0xcb,0x52,0x15,0x2b,0xe5,0xe9,0x24,0x61,0x79,0xeb,0xd6, +0x1f,0xd7,0x17,0x77,0xf0,0xab,0x07,0xad,0x6e,0xf8,0xdf,0x18, +0x7a,0xac,0x62,0xb7,0x6e,0x96,0x56,0x91,0x29,0xff,0xfa,0x66, +0xb7,0xf4,0x58,0x45,0xbe,0x70,0x2f,0xd9,0xb5,0xd9,0x7e,0x9d, +0x99,0xb4,0x9e,0xd6,0x8b,0xed,0x43,0xeb,0x99,0x43,0x03,0xe1, +0xde,0x1b,0x4e,0x0f,0x5d,0xa5,0x40,0x58,0xb5,0xb5,0x72,0x7d, +0x1e,0x0d,0x84,0x63,0x44,0x4d,0xe2,0x1a,0xe6,0x38,0xa4,0xb0, +0xda,0x0a,0xca,0x5d,0xa8,0x0c,0xa3,0x5f,0x76,0x62,0x98,0xe9, +0x0f,0x94,0x39,0xce,0x32,0x81,0x59,0x78,0x81,0x95,0x85,0x99, +0x84,0x9b,0x45,0x4a,0x6c,0x9a,0x49,0x05,0x92,0xff,0x24,0x97, +0xb3,0x7d,0x43,0x52,0xba,0x12,0xfe,0xdf,0xe7,0x2f,0x41,0x16, +0x1c,0x1e,0xa2,0xb4,0x21,0xc7,0x24,0x7b,0x75,0x82,0x61,0x8b, +0xf4,0xfc,0xc5,0x4f,0x7a,0xfe,0x32,0x96,0xa2,0xe5,0x0f,0xe4, +0x57,0xe1,0x59,0x87,0xf8,0xec,0xb5,0xf0,0x63,0x87,0xf8,0xe3, +0x0b,0x41,0xec,0x51,0xac,0x15,0x4d,0x71,0xa1,0x21,0x45,0x75, +0xf9,0xac,0x55,0x98,0x45,0x84,0x75,0x64,0x12,0x25,0x8a,0x6a, +0x19,0x30,0xab,0xf4,0x8f,0x8a,0x90,0x4e,0xde,0x34,0x40,0x37, +0x70,0x7b,0x10,0x07,0xc9,0xf0,0x35,0xfb,0x0a,0x37,0xc3,0x9c, +0x49,0x50,0xb4,0x36,0xa3,0x8b,0x47,0xb6,0x78,0x61,0xf9,0xc6, +0xfa,0x2b,0x55,0x03,0x2d,0x9d,0x6d,0x8e,0x75,0xbc,0x85,0x6c, +0x83,0xd1,0x16,0xe7,0x9d,0x8d,0xd6,0xed,0xae,0x97,0x39,0x21, +0xa0,0x57,0x8a,0xda,0xf2,0xaf,0x88,0x98,0x2e,0xf8,0x09,0xe9, +0x78,0x92,0x4d,0x2d,0x4d,0x2a,0x4f,0x28,0xa5,0xcc,0xbd,0x5b, +0xec,0x37,0x86,0x28,0xe6,0xb0,0x57,0x90,0x9b,0xa4,0x0e,0x1b, +0x06,0x5f,0x11,0x6c,0x37,0x04,0x15,0xc5,0x46,0x8a,0x0e,0x93, +0xf4,0x95,0x7e,0x63,0x3a,0xd2,0xcf,0xd3,0xb0,0xb1,0xfa,0x77, +0x49,0x16,0xdf,0x9f,0xe2,0x51,0x9c,0xc9,0xca,0x46,0x4d,0x43, +0xfc,0x9d,0xc5,0x05,0xa3,0x00,0x35,0x10,0x19,0xe4,0xf1,0x2c, +0x79,0x5d,0x71,0xab,0xfe,0x62,0x87,0x7d,0x2d,0x6f,0x6a,0xa9, +0xe9,0xb0,0xd4,0x9b,0x13,0x26,0xde,0x25,0xd7,0xbc,0x7e,0x32, +0xbb,0x6c,0x53,0xd2,0xca,0xeb,0xd6,0x2f,0x6e,0xdd,0x2a,0x69, +0xfa,0x69,0x0a,0x1c,0x51,0x58,0xdd,0x16,0x1e,0x41,0x0f,0xde, +0x61,0x92,0x73,0x13,0xf3,0xe2,0xb3,0xb7,0xc5,0xf3,0x61,0x3e, +0xc1,0xbb,0x0e,0xf9,0x70,0x18,0x23,0x76,0xcb,0x97,0x30,0x36, +0x27,0x9c,0x8e,0x3a,0xaa,0x99,0x47,0x1c,0x0a,0x32,0x54,0xd5, +0x96,0x2a,0xac,0x2e,0x30,0x2f,0xca,0x73,0x1f,0xc4,0xab,0x47, +0xb7,0x9d,0xe9,0x78,0xa1,0xa2,0x58,0x76,0x47,0x6e,0xc5,0xe0, +0x4e,0xe1,0x73,0xa2,0x29,0x66,0xdd,0x66,0x85,0x2c,0x1c,0x4b, +0xd6,0x88,0x59,0x0f,0x58,0x21,0x46,0x2c,0x23,0x81,0x75,0x7b, +0xeb,0xf6,0x55,0x58,0x1d,0xe0,0x33,0xbc,0xb2,0xac,0x93,0x1c, +0x39,0xf1,0xc5,0x2c,0xd2,0x75,0xa9,0xea,0x5e,0xfa,0x65,0x93, +0x74,0x7e,0x9f,0x8e,0xd3,0x26,0x0b,0x63,0x4e,0x58,0x07,0x9a, +0x24,0xcd,0x3e,0xdd,0x28,0xce,0xa4,0x2f,0x85,0x0f,0xee,0xd9, +0xdf,0xed,0x5f,0xc3,0xa1,0xcf,0x21,0x12,0x2b,0x8b,0xde,0xa4, +0xaf,0x72,0x39,0xfa,0xf8,0xe5,0x88,0xab,0xa1,0x1d,0xca,0x63, +0x05,0x16,0xa2,0xc9,0xe1,0xc4,0xf0,0xb3,0xa1,0xa1,0x21,0x21, +0x7c,0xe4,0x1d,0xd0,0xa1,0xa8,0x47,0xe7,0x67,0xf0,0xee,0x42, +0x6f,0xe9,0xde,0xa5,0xbb,0x09,0xb8,0xcf,0xc1,0xcd,0x98,0x0a, +0x2b,0x99,0xbd,0xab,0x36,0x2f,0x46,0x6e,0x59,0x39,0x45,0x73, +0x9f,0xbd,0xe8,0xbc,0x73,0xee,0x1e,0xf5,0x84,0xcf,0x7a,0xa0, +0x86,0x89,0x39,0x77,0xf2,0xdc,0x51,0x35,0xf8,0x1c,0xbf,0xa9, +0xae,0x57,0x82,0x5d,0x72,0x4b,0xa2,0x87,0x46,0xc8,0x1a,0x00, +0xc3,0x1c,0xc1,0x56,0x5d,0xd4,0x46,0x75,0x54,0xab,0xb1,0xe4, +0x61,0x31,0x2c,0xba,0x0c,0xd6,0x51,0xd0,0xc5,0xc1,0x7c,0x06, +0x23,0x22,0x71,0x45,0xf0,0x64,0xb5,0x9d,0xe1,0x21,0x81,0xc6, +0xaa,0xd3,0xa4,0x0a,0xd1,0xb7,0xcc,0xa3,0x82,0x8a,0xc7,0xf1, +0xea,0xa9,0xf0,0x59,0x14,0xcc,0x87,0x8b,0x2a,0xe8,0xc9,0x88, +0xc6,0x38,0x9c,0xe0,0x22,0x1c,0x0b,0x8b,0x58,0xe8,0xc7,0x45, +0x52,0x75,0xdf,0x22,0xf8,0x92,0x42,0xd9,0xc7,0x43,0x14,0xd4, +0x23,0xc4,0x5d,0xa2,0xa0,0x30,0xa2,0x07,0x47,0x7c,0x24,0xa1, +0x9f,0x1b,0xd1,0xa9,0x44,0xb3,0x36,0x41,0x36,0x94,0x84,0xc6, +0x1b,0x48,0x24,0x34,0xb1,0x76,0x88,0x84,0x2a,0x49,0x80,0xf6, +0x27,0x89,0x84,0x36,0xa8,0x43,0x3b,0x25,0xa1,0x95,0x29,0x94, +0x84,0x9e,0x80,0x4f,0x08,0x34,0x61,0x36,0x4e,0x95,0xd2,0x8a, +0xe1,0x53,0xa6,0x79,0x48,0x9e,0x3d,0x15,0x12,0xba,0x86,0x74, +0xd4,0xfc,0x3b,0xd1,0x1f,0xbe,0x30,0xc0,0x41,0xfc,0x02,0x32, +0x0d,0x31,0x13,0x47,0xb0,0x02,0xf5,0x9b,0xa4,0x63,0x5b,0x8d, +0x4e,0xf5,0xba,0x96,0x12,0xde,0xe9,0xb6,0xed,0xa0,0xd9,0x25, +0x4e,0x34,0xc3,0x24,0x72,0x65,0xb0,0xe3,0x49,0xf1,0x23,0xf3, +0x2c,0xde,0x47,0xd3,0x6a,0xfd,0xf6,0xad,0xdc,0x71,0x2c,0x25, +0x90,0x5f,0x05,0x4b,0x1f,0xc2,0x30,0xe0,0xa8,0xf9,0x4c,0x46, +0x16,0x27,0x6d,0xc6,0x1c,0xcf,0xa1,0xde,0x57,0xef,0x89,0x18, +0x29,0x74,0x0b,0x91,0x78,0x97,0x8d,0xc9,0x8d,0x29,0x88,0x2e, +0xe0,0x04,0xd5,0x2e,0xf1,0x73,0x26,0xaa,0xe0,0x1c,0xfd,0xda, +0x79,0x8e,0x3f,0xe6,0x75,0xd4,0xfb,0x88,0x0f,0x27,0x1a,0x9b, +0x08,0xdb,0x98,0x48,0x9f,0xc8,0xdd,0xe1,0x7b,0x38,0x6c,0x39, +0x44,0x74,0x14,0x4b,0x2e,0x77,0xc9,0x53,0xbb,0x14,0xa9,0x0c, +0x6c,0x17,0xb4,0xc9,0x6b,0x41,0x67,0x2e,0x6b,0x31,0x6a,0xb6, +0xa8,0xf3,0x86,0x82,0xc9,0x51,0x82,0xce,0x0c,0x51,0x87,0x22, +0x8b,0x6d,0xd0,0x4f,0xfa,0x31,0x90,0x3d,0x19,0xf7,0x6d,0x5c, +0x9c,0x0a,0xac,0x04,0xdf,0x5e,0x9c,0xc8,0xe6,0x76,0xe6,0xdf, +0x3e,0xdf,0xaf,0x97,0xce,0x07,0x6c,0xf1,0xdb,0xe4,0xb1,0x85, +0xc3,0x56,0x43,0x70,0xc5,0x95,0x4c,0xd8,0xb7,0x61,0x27,0xc3, +0xd4,0xd0,0x4f,0x1f,0x7c,0x98,0x00,0x3a,0xcb,0xf5,0x38,0x67, +0x72,0xf9,0x4e,0x1e,0x96,0x00,0x33,0xf8,0x43,0x0c,0x4c,0x95, +0xc4,0xa0,0x71,0xf2,0xf5,0xa5,0xb0,0x14,0xb9,0xf2,0x8b,0x3c, +0xce,0xf9,0xa0,0x7d,0x27,0x00,0x34,0xb8,0xc5,0xf0,0x8e,0xec, +0xbd,0xe4,0xd3,0xbf,0xab,0x51,0xb6,0x87,0x2f,0xb4,0x2c,0x30, +0xc8,0xd4,0xe7,0x44,0xe7,0x99,0x04,0x2f,0x1e,0x94,0x54,0x27, +0x39,0x0a,0xd8,0x6a,0x5e,0x66,0xbe,0x8a,0x95,0x00,0x9b,0xa4, +0x3a,0xf9,0x89,0x74,0xb1,0x5f,0xfd,0xab,0x3a,0x59,0xc0,0xc2, +0x6e,0x89,0x98,0x2d,0x03,0x3d,0x58,0xc6,0xe0,0x2a,0x51,0xeb, +0x1f,0x7d,0x82,0x65,0x92,0xd2,0xa4,0x5c,0x2e,0x6c,0x20,0x17, +0xe1,0x04,0xd6,0xc1,0x0a,0x1d,0x0a,0xaa,0x63,0xf0,0xc4,0x45, +0xfa,0x97,0xa6,0xcc,0x31,0xec,0x5f,0x87,0x1b,0xf1,0x28,0xce, +0xaf,0x30,0xe2,0x21,0x0b,0xb4,0xef,0x82,0xf3,0x59,0xb8,0xc8, +0x41,0x00,0x23,0xf6,0xbf,0x22,0xb2,0x46,0xdd,0x46,0x5d,0x49, +0x4f,0xe7,0x8a,0x4b,0x8f,0x63,0x97,0x35,0x77,0x04,0xad,0x89, +0x59,0xd3,0xa6,0xf6,0xed,0x15,0xee,0x56,0xfc,0x80,0xf3,0x65, +0xab,0x1e,0x4b,0xea,0x2e,0xc5,0x39,0x84,0xce,0xc7,0x36,0x3c, +0xba,0x49,0x5d,0x18,0xa3,0x2b,0x7e,0xc5,0x6e,0xc8,0xf7,0xbd, +0xa5,0x06,0xe3,0x99,0xe6,0xf3,0x92,0x2a,0x83,0x96,0xd4,0x75, +0x5d,0xb1,0xfd,0x57,0xf2,0x8f,0xca,0x4d,0x9b,0x23,0xff,0xb7, +0xf4,0x0d,0x37,0x56,0xf8,0x4d,0xfe,0x1d,0x71,0x5d,0xb4,0x6e, +0x2e,0xce,0x9a,0x5d,0x4e,0x01,0xc2,0xd4,0x37,0x8f,0x7f,0x2a, +0x7c,0xcf,0x45,0x31,0x85,0xd3,0xdf,0xce,0xa6,0x93,0x1f,0x5e, +0xd6,0xcd,0xe3,0xbc,0x77,0x33,0x5e,0x3b,0xbc,0xa2,0xa1,0x58, +0xd4,0x20,0x1f,0x73,0x70,0xc2,0x61,0x42,0x2f,0xde,0x32,0x04, +0x1e,0xc3,0x3f,0x1a,0x6b,0x13,0x63,0x17,0x6c,0x1d,0x6c,0x75, +0x38,0x89,0x3a,0xda,0x4f,0x8a,0xfe,0xac,0xfc,0xb1,0xe6,0x58, +0x37,0xef,0x1c,0xe4,0x14,0x68,0x1f,0xc4,0x09,0x16,0xc2,0x16, +0xb2,0x75,0x0d,0x8e,0x5e,0x87,0xac,0x43,0x0e,0xfd,0x90,0x4f, +0x9a,0x60,0xcc,0xed,0xfb,0x2f,0x39,0x7c,0x20,0xae,0x21,0xb0, +0xb0,0x17,0x96,0xfd,0xf1,0x01,0xc6,0x39,0x54,0xf2,0x0b,0x70, +0x18,0x2e,0x9c,0x8c,0x8b,0x4d,0xe8,0xb9,0xcc,0x26,0xe0,0x7c, +0x05,0xac,0xe0,0x73,0xe0,0x61,0x8d,0x5d,0x25,0x8f,0x9f,0xe1, +0x6c,0x34,0xc1,0xf1,0xe8,0x60,0x40,0xed,0x4e,0x57,0x08,0x20, +0xfd,0x70,0x80,0xc9,0x2f,0xca,0x2e,0xc9,0xa8,0x36,0x49,0xe3, +0x6d,0xd7,0x68,0x6d,0x9c,0xb2,0x9d,0xc6,0xad,0x96,0xe2,0xd2, +0xfc,0x3c,0x8a,0x4a,0x17,0x65,0x12,0xac,0xb3,0x80,0xba,0xd5, +0x18,0x65,0x29,0xdc,0x6c,0xc1,0xc4,0xef,0xa1,0xa6,0x15,0x6b, +0x1e,0x31,0xcf,0xa2,0x1e,0xc5,0x5e,0x49,0xda,0xd3,0xc8,0xe3, +0x17,0x7e,0x68,0x14,0x86,0x16,0x27,0x62,0x2d,0xf9,0xbb,0xa7, +0xee,0x9f,0xbe,0x73,0x96,0x83,0x13,0x8a,0xcd,0x44,0x18,0xab, +0xd0,0x14,0xc7,0xb2,0xf2,0x91,0x90,0x49,0xc4,0xbe,0x0b,0x42, +0x1f,0x23,0xf6,0x69,0x10,0xa1,0x4f,0x57,0xec,0x63,0x6c,0x46, +0x09,0x7d,0xdb,0xe9,0x4f,0x9c,0x86,0x96,0xff,0x83,0x1e,0x71, +0x82,0x9d,0x7c,0x02,0x11,0x57,0x09,0xba,0xc2,0x2a,0xb4,0x18, +0x84,0x93,0xed,0x78,0xf2,0x81,0xe1,0x1a,0x0c,0x34,0x83,0xc0, +0x2d,0xac,0x38,0x1b,0x16,0x92,0x84,0x65,0x34,0x2e,0xae,0x2b, +0x6e,0xe7,0xd7,0xdc,0xa0,0x71,0xf1,0x26,0x8d,0x8b,0xfb,0x36, +0x38,0xac,0x9d,0x23,0xa5,0x1b,0xbc,0xba,0xd9,0xf9,0x34,0xe9, +0x39,0x07,0x15,0x58,0x4c,0x6e,0xc1,0x83,0x8d,0xac,0xe8,0x28, +0x6e,0x24,0x2e,0xa1,0x8e,0x61,0xf6,0x14,0x29,0xb7,0xc3,0xc4, +0x2e,0x9c,0x08,0x63,0x7e,0xea,0xc4,0x60,0xd3,0xa7,0x38,0x06, +0xa7,0x9b,0x50,0x4a,0x71,0x99,0x35,0x0b,0x33,0x0d,0x37,0x1f, +0x0a,0x7c,0x4a,0x34,0xf0,0x15,0x3c,0xa6,0x5b,0x62,0x2f,0xec, +0x20,0x1b,0xf1,0xc1,0x2d,0x16,0x3f,0x1b,0x05,0x0f,0xd6,0xe2, +0x03,0x06,0xb7,0xe3,0x24,0x92,0xdc,0x9d,0xd0,0x17,0x23,0x89, +0x8a,0x87,0xeb,0x85,0x19,0x07,0x99,0x73,0xd4,0x57,0xcc,0x94, +0xb2,0x11,0x56,0xc7,0xeb,0x0f,0x65,0x23,0xf8,0x3d,0xdd,0xd7, +0xc5,0xc9,0x9f,0xa2,0x0b,0xe9,0x14,0xdb,0x4d,0x59,0xb8,0xb7, +0x89,0x0c,0xec,0xbe,0xef,0xd0,0xef,0x58,0xdc,0xca,0x1b,0x56, +0xad,0xaa,0xdb,0x91,0xc3,0xe1,0x5b,0xea,0xd6,0x9e,0x14,0xdc, +0xac,0x6d,0x6b,0x74,0xae,0xe2,0xed,0x9c,0x37,0x3a,0xac,0xda, +0x4b,0x63,0x89,0x0a,0xc4,0x11,0xf8,0x0d,0xc3,0x9f,0x42,0x75, +0x17,0x56,0xbf,0x32,0x9c,0x87,0x89,0x26,0x90,0xb8,0x0c,0x03, +0xf0,0x37,0xb0,0x65,0xad,0x17,0x6b,0xac,0xc0,0x45,0x9b,0x0b, +0xa9,0x45,0xac,0xbb,0x0f,0xc3,0x9f,0x66,0x7d,0xa0,0x97,0x7d, +0xa0,0x1b,0x06,0xa2,0x99,0xd4,0xe9,0x6f,0x97,0xc2,0x94,0x95, +0x25,0xed,0x3c,0xaa,0xdd,0x9d,0xff,0xc0,0xe1,0x29,0x87,0x1f, +0x12,0xc8,0x13,0x9b,0xef,0xf5,0x2f,0xaa,0x55,0xdc,0xaa,0x83, +0xe1,0xe7,0x1f,0x71,0x8d,0x78,0xf6,0x3f,0xa3,0x2f,0xc8,0x6f, +0xc2,0x04,0x36,0x68,0x8b,0xd3,0x64,0x9b,0xc5,0xdc,0xd5,0xad, +0x8d,0xab,0x74,0x54,0xf4,0x82,0xf7,0x58,0xaa,0x99,0x33,0x71, +0x3b,0x94,0xba,0x99,0xab,0xd5,0x4d,0xbf,0xa8,0xd3,0x73,0x65, +0x44,0x70,0xfd,0x2b,0x58,0xcf,0xf4,0xcc,0x23,0xaf,0x60,0xdb, +0x3c,0x16,0xc3,0x2c,0xc8,0x0c,0x5c,0xff,0x96,0x85,0x03,0x13, +0x61,0xdb,0x0c,0xdc,0x26,0x15,0xcb,0x09,0x1d,0xe4,0x7a,0xd7, +0x66,0x98,0x89,0x31,0xb7,0x0d,0x34,0x31,0xdc,0x14,0xc2,0xe7, +0x61,0x95,0x09,0x54,0x4d,0xc7,0x48,0x53,0x88,0xa4,0xd4,0xd2, +0x04,0xd2,0x26,0x63,0xbd,0x29,0xd4,0xe3,0x92,0x3e,0xea,0x51, +0xee,0x74,0xe2,0x9d,0x3f,0xa1,0xa5,0x0b,0x5b,0x7e,0x87,0x18, +0x46,0xfc,0x19,0x06,0x89,0x75,0xad,0x51,0xad,0x71,0xf1,0x90, +0xb8,0x53,0xab,0x4b,0xab,0x03,0x27,0xdc,0x2c,0x27,0xf3,0xd0, +0xfc,0x15,0x2b,0xfe,0x88,0x8b,0xc9,0x55,0xa7,0x01,0xab,0x3e, +0x8b,0x8a,0x26,0xde,0xb4,0x59,0xbb,0x63,0x6b,0x25,0x27,0x8f, +0x74,0x26,0xd3,0xd1,0xfc,0x37,0x56,0xcc,0x53,0x8c,0xf8,0xbf, +0xcb,0x51,0x8d,0x86,0x91,0x14,0xee,0xff,0xd7,0xed,0xdb,0xec, +0xed,0xb6,0xaa,0xd7,0x6f,0x2c,0x7f,0xde,0x74,0x4f,0x3d,0x39, +0x21,0x39,0x31,0x29,0x99,0x6b,0x63,0x52,0x70,0x62,0x07,0xf2, +0xb0,0x08,0x35,0x2a,0x1a,0xf9,0xad,0xbd,0xb6,0x1d,0x5e,0x6d, +0x6d,0xc5,0x0d,0x95,0xe5,0x35,0x6e,0xb5,0xbc,0x93,0xad,0xbd, +0xbb,0xf3,0x5e,0xff,0x96,0xd0,0xa6,0xa3,0x2d,0x1c,0x98,0xb5, +0xe2,0x7a,0x26,0x27,0x2f,0xb3,0x28,0x25,0x47,0x96,0xc5,0x07, +0x78,0xec,0x76,0xf6,0xf6,0xe4,0xf0,0xae,0x05,0x18,0x33,0x96, +0x4e,0x3b,0xfd,0x70,0xe4,0xee,0xf3,0x16,0xfc,0xb5,0xb4,0x4b, +0x99,0xdd,0x25,0x09,0xc1,0x09,0xc1,0x71,0x41,0x3b,0x6d,0x34, +0x77,0x2f,0xdd,0x7d,0x5e,0xc6,0x3f,0x2a,0x78,0x5a,0x76,0xb9, +0x25,0x3e,0x20,0xf6,0x40,0x74,0xc0,0x06,0xdd,0xf9,0x2e,0xc8, +0x79,0xd2,0x57,0x61,0x64,0xc9,0xeb,0x9a,0xdb,0x17,0xb9,0x33, +0x81,0xa7,0x82,0x82,0x54,0x76,0xf8,0x1c,0x92,0xa9,0x69,0x31, +0x71,0x76,0x4a,0x86,0xcb,0xf1,0x57,0x13,0xf8,0x75,0xb2,0xb8, +0xc8,0xe8,0x2f,0xd5,0x1e,0x71,0xe3,0x9f,0xcc,0x65,0xb9,0x3a, +0x09,0xc9,0xf3,0x2b,0x3e,0x90,0x61,0xb1,0x97,0xcf,0xf2,0x4b, +0xf3,0x4b,0xde,0xc5,0xe1,0xd1,0x78,0x72,0x70,0xa7,0xd3,0x76, +0x57,0x33,0xee,0xb2,0x51,0xa5,0x95,0xa5,0x8a,0xe3,0x81,0x40, +0x1b,0x35,0x5b,0x26,0x4d,0xa6,0x54,0xcd,0x5c,0xaf,0x2e,0x1d, +0xbc,0xec,0xd4,0x6c,0xda,0xa6,0x5e,0xd9,0x53,0xdc,0x97,0x79, +0x93,0x6b,0xc0,0x2c,0xf1,0x6e,0xbf,0x90,0xc9,0x8e,0x95,0x1f, +0x18,0x2a,0x9e,0x33,0xe8,0x41,0x03,0x98,0x09,0xfa,0xdd,0xa8, +0x0f,0xb3,0xc0,0xbd,0x17,0xad,0xd8,0xbc,0xd6,0xf4,0xb6,0x7f, +0x8a,0xe7,0x8c,0xbd,0x4c,0x39,0x5c,0xc8,0xe4,0x36,0x9f,0x6f, +0x4a,0x91,0x8a,0xe7,0x5c,0x70,0xb8,0x3e,0x7e,0xba,0x7a,0x7e, +0x85,0x15,0x9f,0x9e,0x9d,0x9a,0x9d,0x9c,0xc9,0x89,0xff,0xe9, +0xbb,0x2c,0x58,0xf7,0xb1,0x8a,0xb5,0xc2,0x02,0x72,0x14,0xbe, +0x82,0x4f,0x7a,0xf0,0x13,0xd0,0xd7,0x43,0x7d,0x5c,0x6d,0x04, +0x0b,0x98,0x60,0xfc,0xdc,0x16,0xbf,0xa1,0x51,0x4e,0xad,0xd6, +0x92,0x7f,0x09,0x4c,0x39,0x0c,0x8f,0xfe,0x8d,0x8b,0x16,0x2b, +0x2f,0xfc,0x9b,0x89,0xf7,0x07,0x2e,0xa9,0xa9,0x9d,0x0e,0xb3, +0xc3,0x92,0x23,0xa4,0x6a,0x62,0x70,0x3d,0x2d,0xd5,0xc8,0x69, +0x4b,0x35,0x72,0xda,0x1f,0x6b,0xe4,0xb4,0xff,0xa9,0x91,0xd3, +0x96,0x6a,0xe4,0xe4,0x5f,0x0a,0x5f,0x93,0x37,0x90,0x0e,0xb1, +0xb8,0x80,0x4d,0xca,0x4b,0x2c,0x89,0xcd,0x37,0x8e,0xe5,0xc3, +0xbd,0x43,0xdc,0x0f,0x79,0x73,0x38,0x42,0xf1,0x19,0xbc,0x86, +0x12,0x46,0xc1,0x3f,0x21,0x11,0x29,0x91,0x27,0xff,0x16,0xaf, +0xfd,0x14,0xc6,0x74,0xe2,0x18,0x30,0x30,0xa2,0xa0,0x7d,0xa2, +0x29,0x8c,0xfd,0xa8,0x98,0x39,0x45,0x92,0xaf,0xb5,0xe2,0x07, +0xdf,0xe5,0xfe,0x71,0x8e,0x52,0x39,0x31,0xad,0x47,0x48,0xf9, +0x57,0xbe,0x76,0x85,0x94,0xf1,0xb2,0x8e,0x5a,0xa2,0x57,0xa7, +0x6c,0xc0,0xa6,0xde,0xc5,0x89,0xaf,0xb7,0x69,0xd2,0xaf,0x34, +0xe0,0x84,0x51,0xbf,0x12,0x4a,0xa5,0xdd,0x60,0x01,0x3b,0xa0, +0xd0,0x22,0xb8,0xd0,0xf4,0x3b,0x58,0xa2,0x0e,0x32,0xfc,0xda, +0xf4,0x1e,0x6a,0xb0,0xa8,0xe2,0xa2,0xb9,0xc4,0x40,0x2d,0x57, +0xf6,0xb4,0xbf,0xac,0xef,0xec,0x07,0x49,0x25,0xe7,0x93,0xa8, +0x8b,0xeb,0x61,0xa9,0x2a,0x24,0x31,0x71,0xbd,0x4a,0xf8,0x10, +0xe6,0x13,0xd8,0x0c,0x07,0x71,0x33,0x25,0xa1,0xd3,0x05,0x55, +0x22,0xfa,0xc1,0x70,0xc1,0x0c,0xa2,0xf1,0x14,0x93,0x92,0x9b, +0x98,0x9f,0x50,0xb8,0x35,0x9e,0x0f,0xf5,0x0a,0xf6,0x3c,0x48, +0xaf,0xaf,0x99,0xe2,0x33,0xa1,0x82,0x11,0x45,0xe1,0x30,0x31, +0xb9,0xbf,0xfd,0x8e,0x51,0xa7,0xb5,0x0b,0xdf,0x6b,0x7a,0x69, +0x7d,0xd7,0x3a,0x4e,0xb8,0x75,0x90,0x88,0xca,0xa0,0x21,0x28, +0x33,0xe2,0x48,0xc5,0xc6,0xff,0x69,0xfb,0x4a,0x31,0x07,0xee, +0x11,0x61,0x31,0x2e,0x14,0x17,0xd3,0xb0,0xba,0x48,0xf8,0x86, +0x6e,0x6a,0x24,0xc4,0xa0,0xf2,0xff,0xb1,0xa9,0x93,0xe9,0x9e, +0x5e,0x83,0x52,0x46,0xa1,0x27,0x4c,0x27,0xf1,0x2b,0xea,0x76, +0x3c,0x94,0xbc,0xeb,0xc6,0x41,0x87,0xc1,0x03,0x1f,0x59,0x87, +0xd3,0xda,0x45,0x92,0x4a,0xcc,0xb3,0x9b,0x6d,0x4f,0x13,0x9f, +0x71,0xf0,0x92,0x1e,0xd0,0xff,0x7d,0xd3,0xe0,0xf1,0x2f,0x04, +0xe7,0xa1,0x2e,0xa5,0x30,0xd8,0x26,0xfe,0x49,0x7d,0xae,0x43, +0xa8,0xe4,0x73,0x3b,0xe1,0xf3,0x4e,0xfc,0x1c,0x3e,0xf9,0xa1, +0x03,0xfd,0x64,0x0f,0xf0,0x13,0x54,0x33,0x05,0x35,0x1c,0x60, +0x2d,0xc2,0x2c,0xc2,0x2d,0x25,0x55,0x18,0xea,0xa0,0x60,0x42, +0xfe,0xc3,0x3c,0x4e,0x18,0xe6,0x4f,0xa8,0x47,0xfe,0x77,0xaf, +0xef,0x0e,0xed,0xb5,0x9b,0x96,0xb4,0xd7,0xa6,0x4f,0xfb,0x4b, +0xff,0xdd,0xeb,0x4b,0xeb,0xa5,0x06,0xb5,0x87,0x86,0xf6,0xba, +0x03,0x16,0x48,0x7b,0x6d,0x4b,0xf7,0x5a,0xd1,0x0e,0xe3,0x49, +0x96,0x71,0xd6,0xaa,0x78,0xfd,0x96,0x64,0x3e,0xf4,0x63,0x83, +0x07,0xf0,0xc0,0x1d,0x24,0xa9,0x3b,0xbe,0x9f,0x7a,0xed,0x38, +0x3e,0x42,0x6f,0xa8,0x15,0xc4,0x58,0xe1,0x8d,0xfc,0x11,0xd9, +0xbc,0x1c,0x5f,0x52,0xc8,0x69,0x70,0xd2,0xf4,0xb8,0xa5,0x9a, +0xad,0x93,0xcc,0xc3,0xd0,0x27,0x63,0x27,0xdf,0x56,0x58,0x5b, +0x58,0x51,0x11,0x84,0x93,0x3d,0xa6,0x6f,0x9c,0xdb,0x6e,0xcb, +0x53,0x5a,0x37,0x37,0x0f,0xcc,0xa5,0xd4,0x80,0xb9,0x72,0xfd, +0x4e,0xca,0x14,0xc4,0xf5,0x34,0xe0,0xfa,0x5d,0xdf,0x7d,0x69, +0x57,0xbf,0xf5,0x1e,0xbe,0xc8,0x20,0x6f,0x7b,0xc6,0x16,0x4e, +0xa8,0x8c,0x22,0x0f,0xcb,0xee,0xd6,0xf6,0x74,0x71,0x75,0x62, +0x93,0x85,0x60,0xcf,0x5a,0x7b,0xe8,0x79,0xaf,0xf5,0x31,0xcf, +0x95,0x65,0x9b,0x67,0x78,0x3a,0xf1,0xfd,0x7e,0x57,0xbc,0x2f, +0x7a,0x71,0x58,0x21,0x26,0x76,0x53,0xdc,0xed,0x8a,0x5a,0xdd, +0xa0,0x05,0xde,0xf8,0x29,0x7e,0xc6,0xc4,0x5b,0x2a,0x51,0x06, +0x58,0x93,0x92,0x5a,0xa9,0x2e,0x18,0xa3,0x35,0x1b,0x14,0x7b, +0x28,0x36,0x30,0x86,0x5b,0x83,0xeb,0x08,0xba,0xbe,0x04,0x57, +0xa6,0x7b,0x3e,0x79,0x09,0xde,0xf3,0x59,0xd1,0xdf,0x8a,0x80, +0xeb,0x3c,0x74,0x65,0x20,0xed,0x15,0x01,0xef,0x79,0xe8,0xcd, +0xfc,0xdf,0x4b,0x01,0xe1,0x03,0x5e,0x21,0xb8,0xa9,0x1f,0x36, +0xd1,0x8f,0x9a,0x80,0xe3,0xd8,0x04,0x2b,0xa9,0x33,0x4f,0x75, +0x72,0x52,0xad,0xd4,0x5a,0xc0,0x8a,0x75,0x4e,0xbf,0x5f,0x71, +0xbf,0xa9,0xbd,0x45,0xb9,0x45,0xac,0x93,0x09,0xe6,0xac,0xb5, +0xbb,0xbe,0xe7,0x36,0x4f,0x59,0x8e,0x59,0x96,0x79,0x86,0x9b, +0x23,0xdf,0xbb,0xb7,0xcf,0xaf,0x97,0x82,0xcf,0x3c,0x31,0xab, +0x1f,0x74,0x19,0xb0,0x00,0x73,0x4a,0xfd,0x5f,0x83,0x05,0xd3, +0x3f,0x97,0xbc,0x06,0xd7,0xb9,0xac,0x38,0x4d,0x92,0xa0,0xff, +0x1f,0x9a,0xe4,0xa0,0x30,0x99,0x80,0xc5,0x1c,0xa9,0x6a,0x35, +0xee,0x67,0xba,0x94,0x39,0x74,0x29,0x63,0xe1,0x0e,0xf8,0x12, +0xb7,0x83,0x2e,0x81,0x2e,0x81,0x92,0x30,0xe8,0xc8,0x1e,0x1c, +0x09,0x39,0x7a,0x98,0x23,0x35,0x54,0xf9,0x8b,0x75,0x0e,0x72, +0x0c,0x76,0x18,0xd2,0x0e,0x18,0x51,0xf1,0xbc,0xec,0x87,0x7a, +0x4e,0x70,0x87,0x71,0xa4,0xb3,0xb1,0xfb,0x4a,0x45,0x97,0x4d, +0x09,0xef,0x69,0x61,0x27,0xb3,0x77,0xde,0x7f,0xfb,0xf0,0xdd, +0xa3,0x77,0x38,0x98,0x52,0xd2,0x07,0x06,0xe2,0x7b,0x34,0xe8, +0xf5,0x84,0x8d,0x8c,0xd5,0x8e,0x59,0xba,0xd3,0x5c,0xb3,0xcd, +0xf8,0x8b,0xd9,0x57,0x2b,0x7a,0xea,0x53,0xf7,0x27,0xef,0x4d, +0xf4,0x33,0x30,0x5d,0xa8,0xbf,0xdc,0x3d,0x4f,0xc6,0xff,0x50, +0xfd,0xa4,0xe7,0x62,0x67,0xbc,0x6f,0x9c,0x6f,0x8c,0xef,0x8a, +0xf9,0x38,0x7e,0x19,0x0d,0x25,0x79,0xa6,0xd4,0x1e,0x9b,0x61, +0xec,0xe3,0x7b,0x8f,0xb8,0x73,0x3e,0x67,0x7c,0x76,0xab,0x2c, +0x39,0xb4,0x5b,0xea,0x35,0x95,0x6c,0xac,0x74,0x97,0x79,0x56, +0xdf,0x01,0x0c,0x7c,0x6e,0x0c,0x0b,0x57,0x01,0xa3,0x9e,0x93, +0x95,0x95,0x9b,0x9a,0xcb,0x35,0xd0,0xd8,0x62,0x77,0x13,0x4f, +0xd0,0x60,0x38,0xad,0xbe,0x91,0xd7,0xba,0x2e,0x7b,0xe1,0xf6, +0x96,0x7b,0x0c,0x2f,0x88,0x18,0x02,0x23,0x85,0x10,0xba,0xbe, +0xa3,0x82,0x3d,0xf5,0x9d,0x3c,0x8c,0xee,0xc4,0xd1,0x1f,0x5d, +0x14,0x31,0xa5,0xcc,0x23,0x74,0xc8,0x45,0x2d,0x1b,0x72,0x51, +0xd7,0xfe,0x9b,0x8b,0x3a,0xfb,0xaf,0xf6,0xc9,0xd2,0x8a,0xca, +0xcd,0x30,0xef,0xa3,0x9b,0x53,0x96,0xeb,0x27,0x10,0x6d,0xe6, +0xcc,0xb3,0xd3,0xcf,0xee,0xaa,0x5c,0x11,0xcd,0xd8,0xe3,0xb3, +0x23,0x71,0x64,0x28,0x8e,0xe2,0x56,0x19,0xdd,0xa1,0xee,0xee, +0xd3,0x40,0x1c,0x7d,0x70,0x26,0x27,0xac,0x65,0x4e,0x46,0x9c, +0x88,0x38,0x19,0xc9,0x59,0x46,0x04,0xec,0xd3,0x57,0xc5,0x71, +0x52,0x2d,0x03,0x28,0x31,0x3f,0x54,0x17,0xdc,0x4f,0x52,0x3f, +0x93,0x74,0x3a,0xf9,0x4c,0x0a,0xf7,0xac,0x67,0x15,0x13,0xf7, +0x7d,0xf4,0x2f,0x67,0xdf,0x72,0xb7,0x19,0x0a,0x89,0xbe,0x23, +0x3e,0xac,0xe6,0x89,0xd5,0xc7,0xd7,0xaa,0xe1,0x2b,0x26,0xe6, +0xa7,0xe8,0xe7,0x67,0x1f,0x71,0x97,0x57,0x92,0x16,0x87,0x0e, +0xf3,0x3a,0xab,0xea,0x5a,0xde,0xbe,0xd1,0xa4,0xc3,0xb2,0x8a, +0xc3,0x15,0x62,0x07,0x49,0x7a,0x92,0xf0,0x73,0x9c,0x94,0xc3, +0xcf,0x1c,0x9d,0x12,0x31,0x2b,0x7c,0x3d,0xb7,0xf9,0x27,0xe2, +0xd2,0xb0,0xbd,0xdf,0xba,0xdc,0xd9,0x91,0x6f,0x75,0xe9,0x33, +0xaa,0xb6,0xa2,0xa8,0x73,0x9e,0x94,0x6e,0xa1,0x8b,0xc3,0x8c, +0x60,0x18,0x9e,0x63,0x1d,0x83,0x9c,0x42,0x9c,0xc3,0xe2,0x0d, +0xf9,0xf2,0xf8,0xf2,0x84,0x8a,0x44,0x0e,0x8b,0x66,0x4a,0x8f, +0x08,0xef,0x51,0x76,0x26,0xa5,0xc8,0xb7,0xb3,0xa5,0x49,0xa5, +0x29,0xa5,0x29,0x61,0x9d,0xfc,0xae,0x60,0xef,0x60,0x6f,0xca, +0xf1,0x0e,0x49,0x8f,0x19,0x75,0x59,0x50,0xfb,0x8f,0x06,0xe9, +0xbf,0x2e,0x58,0x6c,0xee,0x97,0xff,0x97,0x78,0x9d,0xe9,0x97, +0x11,0xc1,0x42,0xa1,0x2f,0x52,0x03,0x3a,0x0d,0x6f,0x08,0x28, +0xb7,0xa1,0x32,0x2c,0x84,0xb9,0xed,0xf8,0xa7,0x19,0x4c,0xc3, +0x85,0xf8,0x85,0x39,0x7c,0x81,0x32,0x9c,0x6f,0x2e,0x28,0xb5, +0xe1,0x52,0xa6,0x12,0x66,0x90,0x0c,0xaf,0x5c,0xd3,0x04,0xcf, +0xba,0x0c,0x3e,0xb8,0xd4,0xaf,0x7d,0x5f,0x09,0x9d,0x5c,0xac, +0xe0,0x4c,0x22,0x87,0x76,0xf5,0x70,0x98,0x24,0xb6,0xfc,0xb2, +0x63,0x3e,0x18,0x98,0xd0,0xeb,0xc2,0xca,0x60,0x18,0xdd,0xcb, +0x09,0xee,0x38,0x5d,0x13,0x3f,0xad,0xb4,0xe4,0x7b,0x7f,0xcd, +0xfc,0xfd,0xec,0x8f,0xf4,0xba,0xc4,0x77,0x09,0xe7,0xfe,0xbe, +0x2e,0xbd,0xb8,0xb0,0x8c,0x86,0x0e,0xd3,0x8d,0x24,0x22,0x29, +0x8c,0x86,0xb4,0xb0,0x70,0xfe,0xc8,0xe9,0xd8,0x9a,0xa8,0xd6, +0x33,0x6d,0xca,0xef,0x7b,0x27,0xc3,0x86,0x5f,0x7b,0x67,0xc2, +0x52,0x63,0x5c,0xba,0xcc,0xf0,0x29,0x6e,0x98,0x67,0xf8,0x92, +0x89,0xc0,0x65,0x36,0xc8,0x4c,0xc2,0xb1,0xd5,0xb6,0xfc,0xf7, +0xaf,0x1b,0x7e,0xc8,0xf9,0xe1,0xd4,0xb9,0xb3,0xa7,0xce,0x1c, +0xfd,0x11,0x67,0xf1,0xb5,0x55,0x4a,0xf0,0xe3,0x24,0xe2,0xc2, +0xf8,0x87,0x47,0xe5,0xa8,0x83,0xcb,0xa0,0x70,0x01,0x2f,0x89, +0x17,0xfa,0xd9,0xe3,0x93,0x6c,0x66,0xe3,0xa7,0x3a,0xf9,0x56, +0x3c,0x4c,0xbc,0xde,0x07,0xc3,0xa3,0xe0,0x6b,0xee,0x3b,0xf4, +0x62,0x8c,0x72,0x0e,0xb4,0xab,0x95,0x33,0x95,0x29,0xa9,0x55, +0x52,0x9b,0x78,0x9b,0x54,0x25,0x53,0xf9,0x08,0x42,0xd1,0xac, +0x35,0x8c,0x61,0xc1,0x1a,0xd7,0x12,0x1c,0x4d,0xc7,0xa3,0xa5, +0xf1,0x1a,0xe9,0x99,0xa6,0x35,0x7c,0xc1,0x8e,0x85,0x6f,0xe5, +0x4f,0x89,0x2d,0x9a,0x6d,0x45,0x8d,0x49,0xc8,0x55,0xca,0xf8, +0xa2,0xe2,0xe2,0xea,0xc2,0x66,0x4e,0x2c,0xbe,0x20,0xff,0x9a, +0x2d,0xfd,0xae,0xf0,0x49,0xfa,0x2b,0xae,0xe6,0x3f,0xca,0xe4, +0xf2,0x6d,0x41,0x5f,0xf3,0x92,0xfc,0x2f,0xa9,0x41,0xc7,0x19, +0x94,0x13,0xd4,0x83,0x36,0xd0,0x63,0x2e,0x62,0x1b,0xa1,0x03, +0x33,0x6c,0x63,0x31,0x8e,0x62,0xc4,0x3b,0xf4,0xf5,0x3b,0x43, +0xad,0xf7,0xcc,0xe8,0xd8,0x4c,0xea,0x87,0x21,0x54,0x92,0xab, +0x90,0xdb,0x8c,0xb9,0x97,0xa1,0xa3,0x15,0x3b,0x06,0x0d,0xb6, +0x60,0x8d,0x05,0xd4,0xe8,0x60,0x8a,0x95,0xd4,0x54,0xb4,0xd9, +0x42,0x3e,0x73,0x48,0xe8,0x7a,0x33,0xb1,0xaa,0x35,0xac,0x31, +0x92,0xda,0x55,0xf5,0xb9,0xb7,0x4b,0xd8,0x2f,0x11,0x5d,0x89, +0x69,0x93,0x76,0xfb,0xd6,0x0a,0x0f,0x4b,0xfe,0xaa,0xf3,0x15, +0x9b,0x3e,0x0b,0x4e,0x3e,0x2f,0x8f,0x88,0x75,0xe2,0x18,0xa1, +0x8e,0x31,0xa0,0x81,0xcc,0x40,0xd4,0xea,0x63,0xd1,0x76,0xa9, +0x44,0xcd,0x2c,0x70,0xf4,0xa6,0x99,0xad,0x8e,0xfc,0x77,0x1f, +0xba,0x41,0xb9,0xe4,0x3d,0x27,0xdc,0x38,0xf3,0xf1,0xf7,0x82, +0x96,0x06,0xd9,0x29,0x6a,0x5d,0x94,0xb2,0x6d,0xe3,0xc9,0xfb, +0xb4,0x5f,0xcb,0x2e,0x96,0x3a,0xd7,0xf1,0x16,0x3e,0x33,0x3d, +0x27,0x1f,0xe2,0x84,0x25,0x45,0xe4,0x47,0xff,0x67,0x3e,0x0f, +0x3c,0xf3,0xda,0xf8,0x75,0x25,0xb3,0x8a,0xd6,0xa4,0x50,0x5b, +0xf8,0x8e,0xd2,0xa3,0xb0,0x24,0x09,0x9a,0x04,0x4b,0xd5,0x60, +0x2c,0xcc,0xed,0xc1,0xb9,0xa0,0xaf,0x4f,0x11,0xce,0x0a,0x23, +0x98,0x27,0x55,0x1a,0xd8,0xe1,0xd7,0x38,0x8a,0x22,0x1c,0x2b, +0xfe,0x39,0x28,0x95,0xc1,0xb0,0xe8,0xb7,0xd4,0x20,0xca,0xfb, +0x85,0xf4,0xbf,0x11,0xce,0x4b,0x9c,0x52,0x55,0xab,0x24,0xd4, +0x0a,0x7a,0x44,0x1c,0xd0,0x07,0x5b,0xc6,0x1d,0x35,0x97,0xa1, +0x3d,0x4e,0xc5,0x05,0x15,0x32,0xbe,0xae,0xb1,0xa6,0xa3,0xa2, +0x9f,0x13,0xc7,0x5f,0xb8,0x0e,0xdd,0x9b,0x2f,0x0a,0xe9,0x34, +0x86,0xd4,0x3e,0x2f,0x79,0x93,0xf6,0x33,0x07,0xdd,0x8c,0xb8, +0x48,0xb1,0x92,0xc0,0x53,0xe8,0xc6,0xa7,0x14,0xfa,0xac,0xba, +0x4f,0x04,0x75,0x28,0xbc,0x88,0x85,0x50,0xb7,0x15,0xeb,0x30, +0x73,0x27,0x64,0x8a,0xea,0x2c,0x56,0x09,0xa5,0x64,0xc7,0xf7, +0x5a,0xb7,0xf4,0xda,0xec,0x1c,0xf9,0x8b,0x16,0x37,0x34,0x2f, +0xaf,0xe1,0xc0,0x55,0xca,0xc0,0x9a,0xb0,0xf0,0x12,0x8c,0x52, +0x87,0x1a,0xdc,0xb5,0x13,0xe6,0xa0,0x1f,0x3b,0xdb,0xd2,0x00, +0x47,0x39,0xa8,0x65,0xe9,0xfd,0x51,0x7d,0xe1,0xd2,0xd9,0x3b, +0x43,0x1e,0xf8,0xf1,0x06,0x58,0xa8,0x2a,0x38,0x33,0x71,0x97, +0x95,0xc6,0xc2,0x7b,0xb9,0x2a,0xb9,0x09,0x45,0xda,0x7d,0x37, +0x21,0xb1,0x1d,0x13,0xaf,0x1a,0x6c,0xc3,0x22,0xe9,0xdb,0x71, +0x33,0x38,0xae,0xcd,0xca,0xe7,0xe2,0x6b,0xa2,0xf0,0xea,0x11, +0x7e,0xa2,0x70,0xe5,0x2e,0x93,0x94,0x95,0x98,0x13,0x93,0xa5, +0x1b,0xc3,0x87,0xfb,0x05,0xef,0x39,0x44,0xe3,0x41,0x9a,0xb8, +0x4b,0xae,0xc9,0x9c,0x74,0x3c,0xe1,0x12,0xe1,0xc2,0x79,0x44, +0x06,0x86,0x39,0xa8,0xae,0x65,0x52,0xcd,0x95,0xbe,0x63,0xee, +0x14,0xe4,0xf6,0xc4,0xab,0xc7,0x35,0x9d,0xee,0x39,0xfd,0x1d, +0xa7,0xd8,0x78,0x49,0xee,0xc5,0xa0,0x05,0x48,0xf2,0xc1,0x1d, +0x1f,0xd5,0x83,0x17,0x91,0x1e,0x21,0xcf,0x88,0x55,0x4c,0x15, +0xf7,0x91,0x8e,0xf6,0xda,0x2b,0x39,0x9d,0x46,0x59,0xbc,0x9f, +0xcc,0xc9,0xd4,0xdc,0x82,0x13,0x7a,0xe0,0x1b,0x92,0xe3,0x76, +0xde,0x29,0xc5,0xa6,0x2b,0x95,0x0f,0x6c,0xda,0x5b,0xbb,0xbf, +0x90,0x43,0x87,0x03,0x24,0xcd,0x3e,0xd9,0x22,0xce,0xa2,0x3f, +0x81,0x0f,0x6f,0x09,0x68,0xf5,0xaf,0xe6,0x70,0x77,0x18,0x89, +0xb7,0x8b,0xd1,0x3f,0x25,0xbb,0x72,0x8e,0x3f,0xde,0x13,0xd6, +0x1d,0x2c,0x95,0x83,0xfe,0x00,0x40,0xce,0x1d,0x3c,0x7b,0xf0, +0xec,0xa1,0xe6,0xf3,0xfc,0xa1,0xc1,0x7d,0xd7,0xf7,0xf6,0x5a, +0x1f,0xe4,0x13,0x77,0xc7,0x7b,0xc5,0x7b,0xda,0x45,0x5a,0x1f, +0xb5,0x3e,0xd6,0xff,0x68,0x00,0x94,0x7a,0x81,0xb3,0xcc,0xe7, +0x77,0x1b,0x78,0xe9,0x7a,0x18,0x04,0x64,0xf9,0x67,0x1d,0xc8, +0xac,0xb8,0x58,0x7a,0x23,0xff,0xaa,0x79,0x16,0xbf,0x4f,0xc7, +0x5b,0xc7,0xcb,0x24,0x38,0x29,0x38,0x29,0x24,0xc1,0xc3,0x8e, +0x6f,0xb5,0x6d,0x35,0xab,0x37,0xf1,0xb5,0xdf,0xe3,0xbc,0xd7, +0x73,0xcf,0x89,0x3d,0x27,0x7d,0x4f,0x9e,0x33,0xe6,0xdb,0xce, +0xb4,0x9f,0x6d,0x3f,0xc7,0x49,0xd2,0x6b,0xcb,0xd9,0xfc,0x33, +0x79,0x67,0xf3,0xce,0x72,0x7f,0xf6,0x93,0xe6,0x8a,0xea,0xea, +0x92,0xba,0x0c,0xdf,0xcc,0xdd,0x19,0xbb,0x2a,0xab,0xf8,0x7d, +0xc5,0x7b,0x8b,0xf6,0xe6,0x17,0x75,0x66,0xf4,0x26,0x5c,0xe5, +0xea,0xf0,0xa4,0x0c,0x8c,0xd8,0x70,0x9b,0x20,0x07,0x7f,0xe7, +0xdd,0x85,0x3e,0xf9,0xde,0xb9,0x2e,0x6e,0x7c,0xe9,0xae,0x62, +0xef,0x42,0x8f,0x5d,0x8e,0x2e,0xae,0x56,0x6e,0x9c,0xb0,0x18, +0x96,0x12,0xef,0x42,0xaf,0x02,0xaf,0x1c,0x77,0x17,0xbe,0x74, +0x77,0xc9,0xae,0x22,0x2f,0x77,0x07,0x3b,0x67,0x23,0xb7,0x22, +0x1b,0xbe,0xa7,0xaa,0xb1,0xba,0xb2,0xa1,0xd8,0xbd,0xd0,0xa5, +0xd0,0xa9,0xb2,0x9a,0xdf,0x55,0xe3,0x59,0xed,0x59,0x5e,0xd6, +0x91,0xdd,0x9b,0x34,0x40,0xdf,0xfb,0x8c,0x0c,0x4c,0xd9,0x50, +0x9b,0x43,0xf6,0xbe,0xce,0x1c,0x2e,0x16,0x1f,0x11,0xdf,0x52, +0xbf,0x62,0xdf,0x82,0xe2,0x0b,0x19,0xd7,0x12,0x6e,0x71,0xb5, +0x78,0x4c,0xca,0xfd,0x0f,0x93,0x05,0x5a,0xec,0xb3,0xf1,0x2a, +0xf5,0x2c,0xf2,0xc8,0x73,0x77,0xe2,0x2b,0xbd,0xca,0x3c,0x4b, +0xdc,0xdc,0x8d,0xad,0x2c,0x74,0xac,0x8a,0xad,0xf8,0xcb,0x4d, +0xad,0x1d,0x55,0x7d,0x59,0x7b,0xb2,0x7c,0xb2,0xbc,0x38,0xd8, +0xf3,0x3b,0x69,0xb8,0x51,0x70,0x3f,0xf9,0xa9,0xf4,0xe6,0x66, +0x20,0x63,0x43,0x76,0x1c,0xd0,0xf7,0x34,0xf1,0x6c,0xf5,0xed, +0x38,0xd0,0x66,0xe5,0xcb,0x67,0x18,0x15,0xe9,0x56,0x19,0xba, +0xdb,0x59,0x3b,0xea,0xbb,0x14,0x59,0xf3,0xbd,0xe5,0xcd,0xb5, +0x95,0x4d,0x65,0x36,0xd5,0x0e,0x75,0x9e,0x65,0x6d,0xbc,0x5d, +0xa9,0x73,0xb5,0x47,0x3d,0x27,0xb6,0xc3,0x12,0x92,0xb6,0x25, +0x69,0x6d,0xcc,0xfa,0xf6,0xf3,0x7c,0xf8,0xcd,0x43,0x0f,0x03, +0x06,0x38,0xfc,0x16,0x6b,0x49,0xc9,0xc3,0xf3,0xbf,0xc6,0xbc, +0xb1,0x88,0xe1,0x23,0x96,0x1c,0x5c,0xea,0xb5,0x9a,0x5e,0xb8, +0x93,0xf2,0x5c,0x92,0xb0,0xa2,0x65,0xdb,0xd3,0x0d,0x14,0x70, +0xae,0x1d,0xb4,0xbe,0xee,0x7f,0x7d,0x08,0x70,0xda,0xae,0x9b, +0xa9,0x35,0x54,0x3d,0xd0,0xfd,0x34,0x99,0xd2,0x79,0xdb,0x14, +0x82,0xa1,0xe0,0x05,0xa1,0x6c,0xdf,0x44,0x3a,0xd8,0x4d,0x07, +0xe2,0x76,0xa9,0x25,0xf4,0xa4,0x0f,0x38,0x89,0x85,0x95,0x13, +0x61,0x12,0x8c,0xa0,0x23,0x51,0xc0,0xf3,0x04,0x54,0xbb,0x51, +0xf5,0x7f,0xaf,0x2e,0xb8,0xc0,0x98,0x86,0x99,0x44,0xc8,0x86, +0x48,0xfe,0xd8,0x54,0x50,0x2d,0x78,0x9e,0x7f,0xa2,0x9b,0x77, +0x38,0x6c,0x1d,0x6a,0x15,0xc6,0xc9,0x27,0x09,0xe3,0x49,0x87, +0xe8,0x25,0x63,0x85,0x33,0xab,0x89,0x58,0x6c,0x06,0x23,0x99, +0x10,0xbb,0x20,0x4b,0x7f,0x4b,0x0e,0xfe,0x60,0x4e,0xd8,0x1d, +0xb3,0x0a,0xf7,0xe2,0xbc,0x29,0xd1,0x70,0x50,0x9d,0x26,0x31, +0xaf,0x27,0xcc,0x83,0xbc,0xec,0xae,0x44,0xf5,0xb8,0xba,0xa8, +0xeb,0xa7,0xef,0x71,0xf8,0x84,0x89,0xcd,0x8d,0x2f,0x89,0x2d, +0xa6,0x10,0x96,0x11,0x3f,0xe0,0xe6,0xff,0xf3,0xa6,0x79,0xd0, +0xbf,0x37,0xcd,0x5b,0x53,0xf8,0x90,0xbf,0x6f,0x9a,0xff,0x65, +0x00,0x05,0xc4,0xa4,0xce,0xbc,0xd5,0x99,0xe2,0xd4,0xc9,0x1d, +0xb8,0x89,0x09,0x2c,0x08,0x29,0x08,0x2b,0xe2,0x40,0xaf,0x03, +0xcb,0x98,0xe8,0xbc,0x8f,0x4a,0x51,0x25,0x1d,0x98,0xcd,0x9c, +0xcd,0x3e,0x93,0x73,0x26,0xd7,0x38,0x9a,0x3f,0xbe,0xfb,0xd8, +0xee,0x63,0xbe,0x1c,0x06,0xcb,0x60,0x2f,0x73,0xc4,0x27,0x72, +0x77,0x04,0x3d,0x95,0x46,0x32,0xd0,0x62,0x0e,0x7b,0x87,0xec, +0x0a,0xda,0xcd,0xe1,0x6a,0x19,0xa8,0x30,0x0e,0x7a,0x32,0xd9, +0x76,0x9b,0x32,0x4b,0xbe,0x24,0xbb,0x30,0x37,0x2f,0x9f,0x13, +0x95,0x7a,0x3b,0xa0,0x44,0xd6,0x2b,0x0c,0x67,0x33,0xf7,0x67, +0x1d,0xc8,0x0a,0xe0,0x14,0x9f,0x43,0xe8,0x3f,0xed,0x3f,0xa4, +0x12,0x2b,0xe5,0x0f,0x5d,0x1a,0xa0,0x6f,0x4c,0xdd,0x9e,0x8a, +0x09,0x8c,0x67,0x42,0xf0,0x0b,0x17,0x9c,0xb2,0x78,0xa8,0xfd, +0xc7,0xf5,0x3f,0xf3,0xfe,0x88,0x92,0x3a,0x0e,0x64,0x74,0x7f, +0x04,0x27,0x67,0x24,0xfe,0xb4,0xa8,0xa2,0x5a,0x09,0x6e,0xc3, +0x19,0x12,0xeb,0x1d,0xef,0x93,0xe4,0x23,0x35,0x24,0x4b,0xca, +0x4f,0x2c,0x8c,0xa7,0xf3,0xff,0x14,0x27,0x93,0x34,0xef,0xcc, +0x5d,0x39,0x74,0x3a,0x83,0x4c,0x76,0x7e,0x46,0x61,0x5a,0x11, +0x67,0x8f,0xe1,0x94,0x81,0x94,0xcc,0x66,0xb1,0xc4,0x8c,0x40, +0xc9,0x14,0x2c,0xa1,0xd0,0x28,0x41,0xa8,0x22,0x16,0xf2,0xed, +0xad,0x78,0xe3,0x22,0x65,0x7c,0x9b,0x30,0xbd,0xcf,0xd0,0x00, +0xe3,0x70,0x13,0xc4,0xed,0x64,0xb1,0x1a,0x24,0x0d,0x68,0xa3, +0xff,0x45,0x03,0x1a,0xc6,0x5d,0x21,0x60,0xb9,0x16,0x2d,0x19, +0xc1,0x69,0x22,0x3a,0xdd,0x07,0x27,0x46,0x7c,0x41,0xaf,0xba, +0x75,0xfd,0x7f,0x13,0x83,0x6e,0xb5,0xe5,0xe4,0x6b,0x93,0x89, +0xd8,0x2d,0x0e,0x13,0xba,0x19,0x7d,0xca,0xf1,0x8c,0x45,0xdd, +0x6e,0x16,0x0d,0x57,0x90,0x7f,0x14,0xa0,0xdb,0x9c,0xf8,0x1b, +0x30,0xac,0x03,0x54,0x0a,0xff,0xe4,0x84,0xeb,0x67,0x88,0xa1, +0xa8,0xdb,0xcb,0x0a,0xba,0x53,0x89,0xae,0xa8,0x7b,0x89,0x85, +0x42,0xdc,0x48,0x7e,0xd9,0xfb,0xd8,0xf3,0x81,0x7b,0x61,0x2b, +0xbf,0xae,0x62,0x51,0xd1,0xfc,0x0c,0x4e,0xdc,0x80,0xdf,0x10, +0x18,0x9e,0xfe,0xba,0xbc,0xbf,0xca,0xa5,0x86,0xd7,0x73,0x5b, +0xb6,0x6b,0x46,0x20,0x27,0xc1,0xbb,0xe3,0x04,0xbe,0xea,0xc3, +0xaf,0x3e,0xca,0xd9,0x4f,0x30,0xa0,0x48,0x58,0x60,0x6c,0x02, +0xad,0x83,0x2d,0x87,0xe4,0xec,0xbf,0xa8,0xf8,0xb3,0xe2,0x6d, +0x63,0x68,0x2f,0xef,0x10,0x60,0x77,0xc8,0x86,0xc6,0x21,0x6d, +0x98,0x4b,0x84,0x75,0x90,0xd4,0x23,0x0e,0x18,0xc1,0x09,0x71, +0x1d,0x66,0xe9,0x43,0x16,0x3e,0xbd,0x44,0xc3,0x40,0x69,0x3f, +0x8b,0xcb,0x2f,0x91,0xfa,0x3b,0x4d,0xa0,0x94,0xff,0xc0,0x38, +0x9b,0xf7,0x5d,0x6b,0x83,0x23,0x1d,0x36,0x72,0xf8,0x9e,0x5e, +0xae,0xe2,0xad,0xd5,0x53,0xf3,0x17,0x75,0xe5,0xf1,0xbb,0x7f, +0x74,0x7c,0xe7,0x79,0x95,0x7e,0xf6,0x28,0x41,0x4e,0x4c,0xe5, +0xa9,0x9d,0xe2,0xf0,0x9f,0x84,0xe5,0x5d,0xe2,0xf2,0xdb,0x3b, +0x35,0xc5,0xe9,0x26,0xc2,0xf4,0x85,0x2c,0x68,0x8b,0x27,0x08, +0x84,0x82,0x6b,0x1f,0xac,0x51,0xbc,0xc3,0x35,0x7d,0xe8,0x0a, +0xfe,0x93,0xb0,0xc7,0xf8,0x2f,0xbe,0x1b,0xaf,0x32,0x58,0x06, +0xcf,0x08,0xee,0x7f,0x01,0xfb,0x99,0xde,0x89,0xb0,0x7a,0x01, +0xae,0x66,0x60,0xdf,0xc4,0x17,0x70,0x78,0x01,0xab,0xd8,0x20, +0x23,0xb0,0x1a,0xc7,0xd1,0x97,0x04,0x95,0x89,0xb8,0x1a,0xc6, +0xc1,0x6a,0xa6,0x17,0xc7,0x11,0x3a,0xd8,0x44,0xa9,0x04,0x86, +0xc8,0xc8,0x24,0x5c,0xfd,0x9e,0x82,0x8a,0xc7,0x52,0x75,0xee, +0x37,0x4c,0xdc,0x40,0xec,0x3f,0xd5,0xb9,0x11,0xdb,0x43,0xb7, +0x72,0xb3,0x0d,0x7f,0x60,0x02,0xa6,0xec,0x9b,0xb4,0x67,0x65, +0x83,0x4b,0xad,0x4b,0xad,0xa3,0xdb,0x5a,0x2b,0xed,0x1d,0x52, +0x75,0xee,0x95,0x6b,0xad,0xb7,0xaa,0x1e,0x16,0x7b,0x16,0xbb, +0x95,0x38,0x55,0x34,0xf1,0xce,0xf5,0x6e,0xd5,0xee,0xe5,0x0d, +0x30,0x3a,0x1b,0x54,0x63,0x61,0x29,0x07,0xd1,0x4b,0x48,0x23, +0x2e,0xb9,0x09,0x56,0x48,0x59,0x52,0x22,0xb8,0x6b,0xa3,0x96, +0x0d,0x68,0xa5,0x76,0xc1,0x6c,0x4c,0x1f,0x80,0xc8,0x56,0x31, +0xc3,0x02,0x02,0xb6,0x63,0x14,0xce,0xee,0x3c,0xc4,0x62,0x17, +0xda,0x90,0xcc,0x47,0x19,0xaf,0x53,0x5e,0x71,0x2f,0x98,0x70, +0x9c,0x10,0x80,0xa3,0x5d,0x26,0xed,0xce,0xdf,0x9d,0xeb,0x93, +0xcd,0x09,0x0e,0xcf,0xa5,0xb7,0xb2,0x61,0x05,0xb7,0x89,0x8d, +0xf4,0x5d,0x58,0x38,0xa8,0x45,0xc4,0xbb,0x96,0x70,0x8e,0x09, +0xdd,0x17,0xba,0xef,0xf0,0x3e,0x4a,0xbd,0xb1,0xb3,0x1b,0xce, +0xfd,0x82,0x11,0xed,0x10,0xf1,0xdb,0xd0,0x77,0xf8,0x04,0x8d, +0xb4,0x99,0x44,0x73,0xa5,0x1e,0xca,0xc6,0x52,0x6a,0xd4,0x21, +0x18,0x8b,0xd9,0x84,0xac,0xf8,0xac,0xb8,0x2c,0x0e,0xb2,0xa4, +0xa4,0x2a,0xe1,0x24,0x49,0xf4,0x49,0xf4,0x8a,0xf7,0xb0,0x3c, +0x62,0x7e,0xd4,0xec,0xd8,0xe5,0xc7,0xd7,0x40,0xa9,0x1f,0x38, +0xf3,0x02,0x7e,0x97,0xae,0xfb,0x76,0x97,0x8f,0x9a,0xc9,0xd9, +0x55,0x97,0xca,0x6f,0x16,0x5c,0x93,0x34,0x93,0x77,0x78,0x6d, +0xff,0x57,0x33,0xd9,0x96,0xef,0xb4,0xea,0x32,0x6d,0x36,0xf0, +0x75,0xf6,0x73,0xf5,0xf3,0xf6,0x3c,0xe1,0x71,0xc2,0xf3,0xa3, +0x66,0x72,0xdf,0xd9,0x5e,0x1a,0x56,0x96,0xf6,0x0a,0xab,0xd9, +0x5f,0x12,0xa2,0x02,0xce,0x05,0x9c,0x3b,0xa8,0xdc,0x92,0x16, +0x70,0xc3,0xef,0xe6,0x9e,0x3e,0x65,0x78,0x07,0x37,0x88,0x3e, +0x6e,0x45,0x3b,0x85,0x7f,0x6f,0x3f,0x88,0xfa,0x7d,0x72,0x7f, +0x89,0xb6,0x4a,0x35,0x9c,0x33,0xe0,0x24,0xcc,0xa0,0x97,0x66, +0xa8,0x86,0x73,0x21,0x9e,0x64,0x51,0x61,0x4c,0x60,0x06,0xa6, +0xe2,0x0c,0x06,0x1c,0x20,0x95,0xd0,0x17,0x53,0x71,0x21,0x23, +0x6a,0x80,0x17,0xc9,0xda,0x94,0xb6,0x32,0x61,0x4d,0x47,0x3a, +0x1f,0x72,0x67,0xff,0xe3,0xbd,0x83,0x94,0xdb,0x61,0x33,0xa9, +0x7a,0x92,0xf9,0xf6,0x1f,0x8d,0xe4,0x25,0xce,0x2b,0xb9,0xb1, +0xf2,0xab,0xf2,0x40,0x92,0x1d,0x9d,0x19,0x93,0x11,0xe3,0xd9, +0xc3,0xe3,0xce,0xcd,0x98,0x14,0x8a,0x51,0x27,0xb9,0xa9,0x2c, +0x76,0x06,0xa3,0xae,0x06,0xea,0xa8,0xf5,0x3a,0x2a,0xc1,0x48, +0x90,0xa5,0x82,0x35,0x5c,0x53,0xa9,0x61,0x6f,0x9f,0xbe,0x7f, +0xfa,0xfe,0x39,0x4e,0x71,0xf0,0xaa,0x3c,0x84,0x7d,0x18,0xf3, +0x7d,0xdc,0xcd,0x14,0x4e,0xc6,0xe2,0x0f,0xe5,0xe8,0xf4,0x01, +0xed,0xd5,0x7a,0xeb,0x95,0x34,0xc0,0xca,0x07,0x76,0xc0,0x77, +0x2a,0x52,0x4e,0xb1,0x37,0x81,0x8b,0xf0,0x40,0x31,0x1f,0x1f, +0x40,0x3d,0x8e,0xc7,0x0f,0x88,0x97,0xa5,0x46,0xa4,0xf8,0x9f, +0x01,0xf8,0x0f,0x5c,0x45,0x5f,0xd4,0x65,0x52,0xf5,0x95,0x60, +0xd1,0xdf,0x15,0x18,0xe9,0xe2,0x58,0x96,0x9e,0x30,0x35,0x82, +0x6e,0x62,0x21,0xb8,0x51,0x8c,0x34,0x5a,0xbe,0x8e,0xa4,0x34, +0x27,0xb4,0xc4,0xb5,0xea,0x25,0xf3,0xbe,0xf8,0x8d,0x05,0xaa, +0x6a,0x4f,0x69,0x71,0xe0,0xab,0xba,0x4b,0x07,0xf2,0x6e,0x52, +0x1b,0x32,0xa0,0x8c,0x26,0x12,0x2d,0x03,0x70,0xac,0x9a,0x76, +0xd8,0x3e,0x37,0x1d,0x55,0xd4,0x90,0x72,0xc3,0x60,0x1c,0xf3, +0xb6,0xa1,0x03,0x94,0x92,0xd5,0xcf,0x03,0x89,0x05,0x4b,0x20, +0x2a,0xf0,0x09,0xab,0x50,0xff,0x83,0x24,0xaf,0xb8,0xbc,0xfd, +0xd7,0xcd,0x85,0x1d,0xfc,0xfc,0x2b,0xfa,0x83,0x7b,0xaf,0x72, +0x9b,0x19,0xbf,0xf5,0x06,0x6b,0x71,0xcc,0x50,0xcb,0x04,0xf6, +0xd6,0x8d,0x27,0xa9,0x2f,0xb9,0x02,0x71,0x27,0x3d,0x14,0x3d, +0xf4,0x34,0x8c,0x81,0x51,0xdd,0x58,0x6c,0x4c,0x79,0xcd,0x18, +0xdc,0x61,0x04,0x3b,0xb0,0x9b,0xd1,0x09,0xdd,0x11,0xa1,0x73, +0x44,0xea,0x8a,0x36,0x3b,0x15,0x16,0x16,0xc0,0x88,0xa2,0x13, +0xbd,0xbc,0x2c,0xd8,0x20,0x44,0x2f,0x94,0x13,0x3c,0x61,0x3d, +0x71,0x79,0x64,0xf4,0x87,0xe9,0x77,0x16,0xae,0x7c,0xdb,0xc6, +0xde,0x29,0xe5,0x2b,0x39,0xbc,0xb7,0x83,0x64,0x74,0x26,0xf7, +0x25,0x74,0x5a,0x26,0xf1,0x87,0x0d,0x82,0x4c,0x03,0x68,0x90, +0x48,0x07,0x0d,0x92,0x67,0x9a,0xb7,0x26,0xc9,0x98,0xc6,0xcd, +0xa0,0x5e,0x9f,0xc7,0xbe,0xed,0x34,0x48,0x18,0x0b,0xdf,0x10, +0xf1,0x93,0xeb,0x70,0x9f,0x42,0xc4,0x9d,0x4c,0x6c,0x56,0x6c, +0x4e,0x54,0xb6,0x71,0x2c,0x7f,0xc4,0x2f,0x7c,0x77,0x28,0x75, +0xaf,0x93,0xc4,0x3a,0x40,0x66,0xdd,0x31,0xd3,0x08,0x07,0x35, +0xf7,0x23,0xc1,0xc1,0xce,0xaa,0xa6,0x4c,0xa2,0x89,0x52,0x07, +0x73,0x31,0x2f,0xe7,0x62,0x82,0x7a,0x5c,0xd7,0xd9,0x6b,0x30, +0x46,0x05,0xe5,0xb7,0x84,0x4f,0x18,0xf1,0x88,0x94,0xcf,0x35, +0x1e,0x38,0x98,0xd0,0x8c,0x13,0x60,0x18,0x7c,0xd1,0x8c,0x5f, +0xd0,0x1f,0x93,0x5a,0x50,0x8d,0x49,0x2f,0x3d,0x5f,0x9e,0x58, +0x66,0x91,0xcc,0x87,0xb8,0x1e,0xb0,0xdd,0xe7,0xc2,0xcd,0x66, +0xca,0x3a,0x8b,0x2e,0xe6,0x0e,0x70,0x30,0x09,0x99,0x0e,0x58, +0x87,0x5a,0x4c,0x5c,0x61,0x6c,0x61,0x4c,0x91,0x2c,0x91,0x0f, +0x77,0x0b,0xf5,0x38,0xec,0x21,0xb5,0x43,0xdb,0xda,0x41,0x9d, +0xc2,0x28,0xc6,0x02,0x3f,0xdb,0x36,0x75,0x83,0x66,0xb9,0x39, +0x9f,0x98,0x94,0x90,0x94,0x90,0xcc,0x89,0x46,0x5d,0xf5,0xd0, +0xcb,0xd6,0xf8,0x95,0x5e,0xcf,0xfc,0x29,0xf6,0x96,0xb2,0x75, +0x5c,0x84,0xce,0x81,0xb5,0xde,0x7a,0xca,0x82,0x8a,0xdc,0x97, +0xac,0xc7,0x8c,0xbb,0x2c,0x64,0x50,0x97,0xb2,0x1a,0x33,0xbe, +0x67,0xa9,0x63,0x8d,0x26,0x74,0x1e,0x13,0x70,0x18,0x8b,0x13, +0x70,0xe1,0x3f,0x63,0x61,0x60,0x0a,0x39,0x5c,0x79,0xa0,0x23, +0xa8,0xd0,0x35,0x88,0x4f,0xf1,0x4e,0x33,0x89,0x77,0xe1,0x28, +0x59,0x55,0x22,0xc9,0x96,0x49,0x46,0xb1,0x46,0xf5,0x89,0x7c, +0x58,0x4f,0x50,0x57,0x60,0x33,0x0d,0x3d,0xc1,0x24,0x6e,0x7b, +0xb4,0xd6,0x69,0xfd,0xa6,0x18,0xfe,0xf8,0xd5,0xc8,0x81,0xc3, +0x14,0x71,0xfc,0xe5,0x20,0x75,0xcc,0x9c,0x00,0x9c,0x94,0xb1, +0x26,0xbf,0x47,0x76,0x2e,0x15,0xa7,0x1b,0xff,0xc5,0x74,0x8b, +0xcb,0x19,0x7c,0x8f,0x57,0x88,0x7c,0x26,0x18,0x2b,0x66,0x32, +0x97,0x50,0x9d,0xfc,0x20,0x14,0x2d,0x65,0x15,0x9f,0x61,0x13, +0x81,0x31,0xf2,0x3d,0x38,0xe6,0x12,0x68,0x29,0x7e,0x45,0x2d, +0x56,0x98,0x77,0x98,0xa0,0x31,0x3a,0xb2,0xa9,0xa6,0x4a,0xb0, +0x95,0x69,0xcd,0xce,0x6c,0x55,0x07,0x2d,0x48,0xe8,0x10,0xdf, +0xc9,0x86,0x6a,0xdd,0x9f,0x48,0x5d,0x05,0xb5,0x29,0x3d,0x60, +0x87,0xba,0x0a,0x96,0x14,0x95,0x54,0x16,0x35,0x70,0x62,0xde, +0x05,0xf9,0x27,0x6c,0xf5,0xdd,0xb2,0xe7,0xd9,0xbf,0x73,0x42, +0xbb,0xe2,0x2a,0x59,0x0e,0x23,0xcd,0x61,0xfa,0x3e,0x70,0xe4, +0x60,0x5f,0x2f,0x1e,0x64,0x8e,0x0c,0x9c,0xb8,0x79,0xf2,0xfe, +0x83,0xf8,0xdb,0x49,0x03,0x69,0x3e,0x1d,0x3c,0xaa,0xba,0xe1, +0xea,0x03,0x18,0x10,0xc9,0x89,0xef,0x58,0x8f,0x23,0xee,0x47, +0x3d,0x8f,0x25,0xea,0xd1,0xc0,0x71,0x1e,0x26,0xe7,0xbf,0xcd, +0x0f,0xef,0xe1,0x77,0x06,0x6e,0x0a,0xd2,0x0a,0xe6,0xa0,0x1a, +0xfc,0xd9,0x1c,0x0c,0xe8,0xc5,0x35,0xaf,0x71,0x54,0xb9,0x43, +0x77,0x5c,0xd4,0xa5,0x74,0xf0,0xe2,0x8d,0xb3,0x94,0x44,0x57, +0x21,0x84,0xdc,0x38,0x73,0xe3,0xdc,0x60,0xf4,0x29,0xad,0x33, +0x9b,0xcf,0xed,0xe0,0x70,0x0f,0x03,0x79,0xe2,0x15,0x72,0x51, +0xd4,0xda,0x49,0x27,0x7b,0x90,0xf2,0x3f,0x47,0x34,0xd5,0xc5, +0x29,0x33,0x91,0xab,0x30,0xe3,0x8b,0x4b,0x4b,0x1a,0x8b,0xba, +0x38,0xb1,0xa9,0x5f,0xbe,0x92,0xcd,0xbb,0x9a,0x75,0x27,0xe5, +0x11,0x27,0x8c,0x88,0x27,0x3a,0x2b,0xb1,0x46,0x26,0x9f,0xda, +0x81,0x3d,0x0c,0x96,0xe3,0x75,0x22,0x24,0x82,0x8d,0x98,0x48, +0xb7,0x69,0x36,0x79,0x2b,0xa8,0xcc,0x60,0x45,0x07,0x4c,0x26, +0x56,0x70,0x8a,0xb2,0xe5,0x95,0xac,0x74,0x52,0x27,0x7d,0xac, +0x8b,0x85,0x2d,0xe0,0xd7,0x7c,0x01,0xa6,0x2a,0xa6,0xe2,0x54, +0x56,0x78,0x16,0x45,0xc4,0xdc,0xc7,0x42,0x2e,0xf5,0x99,0xa9, +0x43,0xbd,0x17,0x2d,0xb4,0xf1,0x9b,0xbf,0x7b,0x2f,0x96,0x97, +0x96,0xd7,0x95,0xb6,0x71,0x62,0xf5,0x25,0xf9,0x64,0xb6,0xec, +0x66,0xe1,0xc3,0xcc,0x17,0x1c,0x5c,0xc7,0xdd,0xe4,0x19,0xf4, +0xf7,0x60,0xff,0x53,0x5d,0x0c,0xc2,0xdd,0xe2,0x09,0xa1,0x44, +0x38,0xc1,0xea,0x49,0x5d,0xe0,0x17,0xbf,0x12,0x16,0x33,0x78, +0x64,0x94,0xb8,0xf8,0x35,0x1d,0x88,0x8b,0x71,0x06,0x11,0x16, +0xcf,0x10,0xe9,0x6b,0xc3,0xf1,0x08,0xf9,0x29,0xef,0xc7,0xa6, +0xfe,0x56,0xb7,0x5a,0x5e,0xcf,0x66,0x9d,0xc3,0xa2,0xbd,0x9c, +0x30,0xfb,0x0a,0x79,0xe0,0xf5,0xd8,0xe9,0x8e,0x75,0x61,0x3b, +0xbf,0xb1,0x76,0x75,0xcd,0xd2,0x22,0x49,0x0d,0x4c,0x70,0x25, +0x70,0x18,0x95,0xd9,0xac,0x8a,0xdc,0xe6,0x94,0x72,0xd3,0x4c, +0x3e,0xd0,0x7e,0x8f,0xd9,0x2e,0x2b,0x0e,0x4b,0x4c,0xc1,0x19, +0xbf,0x44,0x23,0xe6,0xa8,0x66,0xe0,0x06,0x7f,0x1a,0x84,0x3c, +0x19,0x8f,0x35,0xab,0x56,0xe3,0xb0,0x9d,0x25,0x32,0x1e,0x3e, +0xbd,0x7d,0xeb,0x56,0xdc,0x2f,0x5c,0x14,0xde,0xeb,0x03,0x80, +0x15,0x8c,0xe3,0x71,0xab,0x23,0xae,0x6a,0xde,0xc7,0x0e,0x07, +0x3b,0xa9,0x1a,0x32,0x89,0xc6,0x34,0x54,0x0c,0xe4,0xe5,0x74, +0xc7,0xaa,0xc7,0xb4,0x9e,0xe9,0x7c,0xad,0x82,0x7b,0x81,0x67, +0x56,0xc3,0x79,0x12,0x5c,0xe2,0xd3,0xbc,0xaf,0xd0,0x66,0x17, +0x9f,0xe1,0x5b,0x60,0x95,0xe4,0xc1,0xc9,0xbf,0x54,0xe8,0x11, +0x5c,0x3b,0x94,0x49,0x3b,0x45,0xaa,0xbd,0x6a,0x57,0x97,0xb7, +0x52,0x8c,0x63,0x65,0x4e,0x14,0xca,0x17,0xe4,0xca,0x2c,0xee, +0x93,0x3a,0xf7,0x7d,0x89,0xb3,0xe0,0x4b,0xd6,0x40,0xaa,0x40, +0xe1,0x71,0x09,0x1b,0xdf,0x10,0xd3,0x78,0xb6,0x86,0x4e,0x3f, +0x46,0x78,0x4b,0x9e,0x08,0x0b,0x7a,0xc4,0x05,0xcf,0x76,0x60, +0x20,0xb6,0x8a,0x47,0xe4,0x46,0xc2,0x11,0x56,0x87,0x6e,0x85, +0x78,0xe3,0x85,0x70,0x83,0xc1,0xf0,0x51,0xe2,0x8d,0x97,0x74, +0x20,0xde,0xc0,0xe9,0x44,0xb8,0x31,0x47,0xbc,0x21,0x65,0x3a, +0x1e,0x23,0xa0,0x52,0xfc,0xa1,0xf9,0x6e,0xb3,0x53,0x2d,0xbf, +0xce,0x66,0x86,0x23,0x12,0x6f,0x4e,0x68,0xb8,0x4e,0x7e,0xdb, +0x05,0x63,0x6c,0x7e,0xb5,0xa1,0xa8,0x7d,0x76,0x2d,0x7e,0xd6, +0x38,0xa5,0x90,0x62,0x89,0xe5,0x52,0x03,0x87,0x0a,0xf9,0x4a, +0xa8,0x60,0x45,0x39,0x1e,0x20,0xb0,0x4e,0x68,0xc2,0x75,0x2c, +0x9e,0x15,0x17,0x11,0xf8,0xb1,0x07,0x7f,0x84,0x49,0xc2,0x98, +0x1e,0x45,0xb9,0x11,0xc8,0x71,0x12,0xde,0x30,0x82,0x1b,0x38, +0x4b,0x9c,0xa6,0xff,0x17,0xdb,0x4f,0x8f,0xd4,0x58,0x78,0x0d, +0xde,0xc4,0xf5,0xa0,0xf3,0x21,0xa7,0x40,0x0e,0x9e,0xbd,0xeb, +0x9d,0xfa,0xdf,0x14,0x40,0x45,0xd6,0x31,0xe8,0x1f,0x05,0x50, +0xa5,0x8a,0x57,0xe5,0xcf,0xea,0xb9,0x7a,0xb9,0x32,0xc1,0x7b, +0x42,0x10,0xdc,0x63,0x0d,0x51,0x8d,0x88,0xdc,0x33,0x81,0x63, +0x44,0x8e,0x0e,0x05,0x6e,0xb1,0xc8,0x31,0xb0,0x5f,0x52,0x81, +0x08,0x6b,0xc7,0x30,0x98,0x00,0x59,0xed,0xe2,0x3b,0x33,0x8a, +0xc9,0x9e,0x30,0x0b,0x53,0x4c,0xaf,0x00,0xa3,0x72,0x45,0x7f, +0x07,0x8b,0x23,0xdd,0xcd,0x66,0x9b,0xa8,0x15,0x98,0x3e,0xef, +0x2a,0x6b,0x8a,0x7a,0xae,0x1c,0xc5,0xcc,0x8b,0xba,0xb2,0x1e, +0x34,0x54,0xa1,0x81,0x89,0x6d,0x57,0xa2,0x08,0x7a,0xac,0x70, +0xab,0x80,0x1c,0x3e,0xfc,0xed,0xa9,0x50,0x29,0xaf,0xea,0x7e, +0x37,0xde,0x87,0xf5,0x70,0xbf,0xee,0x22,0xd8,0x8a,0xb3,0x60, +0xa4,0x24,0x26,0xa1,0x8c,0xb6,0x17,0xed,0xe1,0x8d,0xa8,0xc7, +0xa2,0x72,0x8e,0xde,0x63,0x58,0xa6,0x72,0x7f,0xfb,0x7a,0x16, +0xa7,0x7b,0xef,0x40,0xe5,0xc5,0x6a,0x95,0x26,0x30,0xf6,0x49, +0x6e,0x7f,0xcc,0xd0,0x7d,0x67,0xad,0x94,0xf7,0x7a,0xe0,0xac, +0x0a,0x2f,0x99,0xf8,0x1e,0xa5,0xad,0xf2,0xf1,0x04,0x89,0xc2, +0x0f,0xc8,0x90,0x32,0x45,0x08,0xf9,0x51,0x67,0x89,0x38,0xda, +0x48,0x7e,0xa3,0x47,0x52,0xe2,0xd7,0x27,0xfe,0xd5,0x3e,0x8d, +0xbe,0x25,0xa6,0x7b,0xf8,0x3c,0x8f,0x7c,0xbb,0x0c,0x27,0x0e, +0x84,0xc3,0xa4,0xa0,0x26,0xbf,0x31,0xbb,0x51,0xe2,0xbc,0x16, +0x9e,0x46,0x6e,0x96,0x9c,0x98,0x8f,0x2e,0x97,0x60,0x2e,0x3c, +0xa4,0x97,0xa9,0x01,0x9f,0x5d,0x82,0x12,0x38,0x88,0x6f,0x2f, +0xc3,0x5b,0x88,0x42,0x07,0x5c,0xcc,0x24,0x19,0x2b,0x81,0x1a, +0xd3,0x98,0x95,0xd9,0xa8,0x0e,0xa7,0x71,0x10,0x54,0xe1,0x2d, +0xce,0xbd,0x04,0x2e,0xf4,0x13,0x2f,0xca,0x1f,0x90,0xcd,0x4b, +0xe8,0x6e,0xd1,0x79,0x1d,0x08,0xc0,0x0d,0x3b,0x70,0x9c,0x5a, +0xb7,0xd4,0x7d,0x76,0x52,0x1a,0x98,0x43,0x90,0x0a,0x58,0xca, +0x63,0xba,0x45,0x65,0x16,0xae,0x2a,0x3c,0x89,0x76,0xf3,0xea, +0xdf,0x1d,0x60,0x13,0xc4,0x44,0xf3,0x5d,0x2c,0xa6,0x47,0x46, +0x34,0x1c,0x6d,0x3e,0xd1,0xa9,0xfc,0x32,0xf6,0x51,0xe2,0x85, +0xe4,0x5d,0x92,0xf3,0xf1,0x44,0x9f,0x00,0x74,0x3d,0xc6,0x89, +0xdb,0x59,0xf7,0x63,0x1e,0xc7,0xbc,0x4f,0x48,0x59,0x53,0x63, +0xe3,0x61,0x69,0x0e,0x7c,0x96,0x13,0xd9,0xc3,0x6f,0x0a,0x5a, +0x1c,0xb4,0xec,0x30,0xa5,0x25,0x2c,0x24,0x47,0xd7,0xa3,0xd9, +0x4f,0x38,0xfe,0x85,0x81,0x72,0xf9,0xbe,0xaa,0xe8,0xe8,0xbe, +0x74,0x58,0xc5,0x9b,0xe5,0x28,0x89,0xe5,0xf0,0x90,0xdc,0x3b, +0xfd,0xfd,0xb9,0xbb,0xd1,0xa7,0xcd,0xcf,0x59,0xc7,0xd8,0xe2, +0xd9,0x23,0x3c,0xbc,0x12,0x77,0x90,0x5e,0xf1,0xac,0x21,0x3b, +0xf6,0x2f,0x1d,0xb9,0x31,0xe9,0x16,0xbf,0xfa,0x7e,0xcb,0x6a, +0x71,0x22,0x9e,0x60,0xf1,0x64,0x20,0xae,0xd6,0xa7,0xd3,0xee, +0xb2,0x52,0xba,0x0a,0x53,0x52,0xc0,0x00,0xa2,0x54,0xc0,0x90, +0x95,0xa7,0x63,0x0b,0x41,0x4b,0x98,0xc9,0x5c,0x8c,0xeb,0x4e, +0x68,0x4b,0xdc,0xd7,0xc9,0x4f,0xdb,0x85,0x63,0x03,0x70,0x51, +0x58,0xbc,0x09,0xdf,0x7b,0xb6,0xf3,0x5c,0x6b,0x34,0x87,0xea, +0xb8,0xc3,0x84,0x06,0xde,0x4d,0xb8,0xc6,0x44,0x98,0xdd,0x85, +0x9b,0xe9,0xea,0x2c,0x59,0xec,0xc3,0x97,0x04,0x47,0xac,0x2a, +0xea,0xde,0xa9,0xde,0x74,0xa3,0xe0,0x49,0xc2,0x1b,0xae,0x1a, +0x57,0xb3,0x83,0x3d,0xfd,0x37,0x4b,0x7a,0xe8,0xf0,0x9c,0x19, +0x6c,0x66,0x5d,0x4d,0x8d,0x76,0x6e,0x34,0xe4,0xcc,0xe8,0x5a, +0x42,0x35,0xf7,0xef,0x70,0x33,0xf2,0xac,0xf7,0xeb,0x0c,0xb8, +0x60,0xb6,0x87,0xcf,0xdc,0x5c,0xa0,0x57,0x6b,0xe1,0x68,0x65, +0xe6,0xac,0xe3,0x59,0x66,0xce,0x5f,0x29,0xe9,0xac,0xab,0x6f, +0xe7,0x76,0x0e,0xbe,0x76,0x07,0xa2,0x0a,0x17,0xa5,0xa7,0x0d, +0x63,0x85,0x69,0x60,0x4d,0x8c,0x84,0x82,0x1e,0x0c,0x87,0x63, +0x1f,0x3b,0xef,0x79,0xb0,0x4f,0xe2,0xef,0x26,0x0e,0xa6,0xec, +0xef,0xe2,0x91,0xf7,0xc4,0xa5,0x07,0xd0,0x25,0x2c,0xd6,0x84, +0x7f,0x70,0xf6,0xd6,0xb9,0xab,0x74,0xa6,0x8e,0x78,0xc6,0x08, +0xce,0xe0,0x31,0xd6,0x42,0x2a,0xd9,0x59,0x32,0xa5,0xf1,0xfe, +0x46,0xf5,0xae,0x5f,0x8a,0x80,0x4d,0x84,0x71,0x74,0x4e,0xd6, +0x6c,0xf7,0xc5,0x5b,0xcf,0xbb,0x1e,0x73,0xcd,0x98,0x6f,0x02, +0x36,0xac,0xf1,0xea,0x0d,0x8b,0x8c,0x0c,0x39,0x53,0xf0,0x61, +0x43,0xa7,0xf9,0x2d,0x74,0x5c,0xe3,0xd4,0xbf,0xfb,0xc6,0xbe, +0x07,0x46,0x01,0x7c,0xde,0xfc,0xb2,0xe5,0xed,0x9b,0x5d,0x4d, +0x6c,0xac,0x8d,0x9c,0xcb,0x4c,0xf9,0xde,0xea,0xe6,0xd6,0xea, +0x5e,0x6e,0xd5,0x03,0x50,0x32,0x87,0x35,0xaa,0xc2,0x68,0x26, +0xe9,0x82,0x92,0x94,0x99,0xbd,0x99,0x08,0xc3,0xa8,0xb9,0x84, +0x30,0x65,0x35,0x65,0x2d,0xd9,0xf5,0x46,0xb9,0xbc,0xaf,0xb9, +0x8b,0xb1,0xad,0x8c,0x13,0x0f,0x1b,0x09,0x0c,0x8d,0x54,0x0f, +0x99,0x88,0x35,0xfe,0xf3,0xfd,0x96,0x4b,0x37,0x70,0x2d,0x37, +0xce,0xdd,0x8c,0x81,0x8b,0xf2,0xe8,0xb1,0xcc,0x81,0x91,0xdf, +0xdf,0xcc,0xfd,0x9d,0x8b,0xc6,0xf6,0x4b,0xd0,0x0b,0x3f,0x32, +0x27,0x6c,0x8f,0x7b,0x44,0xb8,0x72,0xb6,0xe1,0x21,0x01,0xba, +0x92,0x44,0x6d,0xb2,0xa1,0x12,0x8c,0x60,0x1e,0xd4,0x65,0x7f, +0x9f,0xac,0x1e,0xd7,0x72,0xae,0x4f,0xaa,0xec,0x9a,0xca,0xe0, +0x24,0x61,0x13,0xd9,0x5f,0xe9,0xd6,0xe4,0x59,0x6e,0xee,0xc9, +0x97,0xb8,0x95,0xda,0x66,0xb8,0x70,0x42,0xa4,0x0e,0xa1,0x9f, +0xd4,0x09,0x5f,0xb3,0xba,0x52,0xe3,0xc6,0x69,0xd8,0xc3,0x26, +0x36,0x24,0xf4,0x45,0x51,0x4f,0x26,0x9f,0x0a,0x37,0xa5,0x16, +0x84,0xe7,0xe0,0x28,0xce,0x67,0xb3,0x2b,0xb2,0x5a,0x52,0x2a, +0x0c,0xd3,0xf9,0x43,0xb6,0x7e,0xe6,0x7b,0xac,0x39,0xfc,0xc9, +0x14,0x8e,0xa1,0x0a,0x06,0x30,0x47,0x36,0x1e,0x5e,0xec,0xbf, +0x92,0x83,0x23,0x8c,0xed,0xaa,0x39,0x2b,0x71,0xd6,0xe6,0x62, +0x63,0x1e,0x16,0xdc,0x03,0xe6,0x55,0xcc,0xaf,0x74,0x92,0x37, +0x2f,0xc0,0x0b,0xf0,0x60,0x4e,0x79,0x9d,0xd8,0x19,0xe9,0xc6, +0x39,0x47,0x86,0x87,0x3a,0xab,0xce,0x63,0xce,0x1b,0x2b,0xdd, +0x62,0x06,0x4b,0xd2,0x6f,0x51,0x6e,0xde,0x71,0xe6,0xea,0xc9, +0x7b,0x9c,0xc8,0x08,0xb3,0xc8,0xc1,0xaa,0x5d,0xcd,0xfe,0xb9, +0xa6,0x7e,0x7c,0x96,0x4f,0x9e,0x4d,0x8a,0x1b,0x87,0x99,0x8a, +0x14,0xf2,0x97,0x86,0xde,0x7f,0x34,0x58,0xd0,0x15,0x5a,0x48, +0x58,0x7f,0xc0,0xf5,0x83,0x2d,0x56,0x07,0xf9,0x14,0x8b,0xd4, +0x2d,0xb1,0x7a,0x1c,0x7a,0xe2,0x08,0x92,0xf3,0x43,0xe2,0xbb, +0xb3,0x7f,0x9a,0x9c,0xe3,0x8f,0x4f,0x3d,0x3c,0xd7,0x77,0x05, +0x27,0xef,0xa4,0x6c,0x9d,0x4e,0xcd,0x14,0x54,0x68,0x54,0x32, +0x90,0x16,0x28,0x63,0x63,0xab,0xe2,0x2e,0x9c,0x2a,0xa7,0x28, +0x8d,0x39,0x4b,0x34,0xdf,0xdb,0xc2,0x94,0x03,0xe0,0xca,0x81, +0x6d,0x0f,0x3a,0x32,0x47,0xaf,0x1e,0xbf,0xf5,0x40,0xe5,0x66, +0xfc,0xb5,0xa4,0xbe,0xf3,0x3e,0xed,0x3c,0x8e,0xf5,0xc0,0xf9, +0xfe,0x68,0x1f,0xc1,0x89,0x7f,0xb1,0xbb,0x8e,0xfa,0x1c,0xf5, +0x19,0x0a,0xf1,0xa3,0xd2,0x60,0x42,0xfe,0x73,0x29,0xc4,0x9b, +0x04,0xea,0x06,0xed,0xa0,0x21,0xbe,0x11,0xac,0xd8,0x4c,0x3c, +0xd8,0x8e,0x2b,0x9f,0xe0,0xf0,0x12,0x5b,0x29,0xc4,0xa7,0x81, +0x3b,0x6f,0x4a,0x43,0x7c,0x11,0x18,0x10,0x97,0x43,0x8e,0x81, +0x0e,0x41,0x1c,0x1c,0x02,0xae,0x07,0xb9,0x8f,0x0d,0xce,0xbe, +0x36,0x82,0xaf,0xf1,0x0c,0x6b,0x11,0x68,0x11,0x6c,0x15,0x1a, +0x6f,0xc8,0x37,0xc4,0x37,0x26,0x36,0x26,0x4b,0xad,0xc6,0xc6, +0x49,0x39,0x50,0x6f,0x99,0xd6,0xf3,0x92,0x78,0x43,0x0b,0x5b, +0x9f,0xd2,0x70,0xbe,0x36,0x8d,0x7b,0x0f,0x48,0x2e,0x9e,0xb9, +0x74,0xee,0x42,0xf4,0xa9,0x0d,0xa7,0x37,0x9f,0xdb,0xce,0x49, +0x6d,0x34,0x8f,0x89,0x97,0xc9,0x05,0xf1,0x4b,0x3d,0x8a,0xb0, +0x77,0x47,0x53,0xe7,0xb6,0xb6,0x7a,0xd0,0x4c,0xbd,0xf5,0xf5, +0x79,0x18,0x1e,0x0d,0xdf,0x70,0xd5,0xd4,0x29,0x9e,0xec,0x1c, +0xe8,0xff,0x23,0xff,0xae,0x72,0x03,0x7a,0x99,0xc2,0x5c,0x76, +0xf7,0x56,0x83,0x99,0xdb,0xd6,0x73,0xd6,0xb0,0x92,0x3d,0x3a, +0x35,0x64,0x89,0xc7,0x3a,0xbf,0xce,0xa0,0x81,0xd0,0xef,0xcc, +0x83,0xf9,0xb0,0x0e,0xcf,0x40,0x8f,0x60,0xf7,0x60,0x65,0x3a, +0xcb,0x61,0x3d,0x38,0xec,0x63,0x43,0x34,0xc6,0x08,0x18,0x3c, +0xc7,0xda,0x07,0x39,0x84,0x38,0x4a,0x8f,0x02,0x2a,0xe3,0x2a, +0x13,0xab,0x92,0x38,0x2c,0x9e,0x22,0x3d,0x0a,0x78,0x28,0xa9, +0xe5,0xd4,0xab,0x43,0x1b,0x5b,0x9e,0x54,0x91,0x52,0x96,0x9a, +0x3c,0x3f,0x73,0x4d,0xc5,0x0e,0x6f,0x0b,0x7b,0x1b,0x43,0xdb, +0x72,0x2b,0xbe,0xbb,0xa1,0xb6,0xb1,0xa4,0x85,0xdb,0x78,0xf1, +0x27,0x47,0x50,0x57,0x05,0x3f,0x26,0xb9,0x47,0x49,0xfc,0x1c, +0x36,0x11,0x63,0x78,0xd7,0x4d,0x63,0x66,0x0c,0x2c,0xef,0xc2, +0xe5,0xe0,0xcb,0xb6,0xa4,0x34,0xa5,0xd5,0x65,0xf8,0xb4,0xf1, +0x4b,0xec,0x90,0x75,0xc3,0xd1,0xfe,0x49,0xa6,0x3c,0x0d,0xa2, +0x71,0x0d,0x89,0x1c,0xda,0xe3,0x02,0x13,0x58,0x80,0x31,0x14, +0x0d,0x3d,0xa1,0x66,0xe1,0x1d,0xec,0x15,0xe2,0x49,0xdd,0x5a, +0x00,0x7c,0xd6,0x83,0x9f,0x81,0x8e,0x3e,0xdd,0xca,0x2f,0x8d, +0xe0,0x4b,0xba,0x95,0xd6,0x81,0x56,0xc1,0xb6,0xd2,0x56,0xd6, +0xc6,0xd7,0x27,0xd6,0x25,0x4b,0xe9,0x64,0xa3,0xd9,0xa1,0xe6, +0xb9,0xcd,0xe7,0xd3,0x1b,0xa5,0x59,0x96,0x25,0x96,0x27,0x97, +0xa6,0x70,0xdf,0x0b,0x16,0x52,0x18,0x73,0xfd,0x3b,0x8c,0xe1, +0xbb,0x67,0xf0,0x8e,0xc1,0x77,0x74,0x08,0xef,0x16,0xe3,0x3b, +0x06,0x3c,0xa5,0x30,0xb6,0xb7,0x8d,0xe2,0x82,0x2f,0x21,0xba, +0x5d,0xbc,0x6a,0x06,0x71,0xf8,0x98,0x59,0x96,0x6a,0x79,0x15, +0x46,0xfc,0x1d,0xc6,0x3c,0xcc,0x16,0x98,0xaa,0xe5,0x99,0xfc, +0xd0,0x5d,0xda,0x18,0xf5,0x8c,0x86,0xb1,0x85,0xe7,0x2e,0xae, +0x05,0x35,0x55,0xc8,0x1d,0x0a,0x63,0xe9,0xcc,0x58,0xb9,0xa6, +0x74,0x66,0xbe,0xa1,0x31,0xec,0x08,0xaa,0xb1,0x19,0x15,0xd9, +0x2d,0xc9,0x15,0x92,0x2a,0x94,0xdd,0x3e,0x33,0xe9,0xcc,0xf4, +0x98,0x82,0x1f,0x8d,0x21,0xf6,0xcc,0x11,0xed,0x90,0x45,0x07, +0x56,0x71,0xb0,0x87,0xb1,0x5b,0xb1,0x60,0x05,0x2e,0xd8,0x24, +0x29,0xa2,0x2d,0x7e,0xf0,0xfe,0x79,0xfc,0x3b,0x7a,0x64,0x06, +0xfb,0xe9,0x91,0xd9,0xc1,0x9c,0xf2,0x3e,0xb1,0xf3,0x88,0x0b, +0xe7,0x7a,0x24,0xf2,0xb0,0x9b,0xea,0x72,0xe9,0xc8,0x5c,0x66, +0x06,0x8a,0x32,0xae,0xc6,0xab,0xc7,0x76,0x9d,0x19,0x3c,0x79, +0x9f,0xc3,0xc7,0x43,0x47,0xc6,0xa7,0xe9,0x40,0x9e,0xcc,0x8f, +0xcf,0xdc,0x95,0x67,0x93,0xec,0xce,0x61,0x04,0x86,0x92,0x88, +0x94,0x88,0x8f,0xfd,0x29,0x8f,0x48,0x0f,0xb3,0xba,0x71,0xf4, +0xc7,0x0e,0x95,0x53,0x8c,0x41,0x85,0x09,0xc1,0xf1,0x8e,0xa8, +0x31,0x07,0xbf,0xaa,0xb6,0xe2,0xef,0x7e,0x28,0x78,0x1f,0xf5, +0x9a,0x8b,0x16,0x73,0xa5,0x0e,0x95,0x1f,0x15,0x26,0x1e,0xe1, +0xa2,0xca,0x6a,0x25,0xc1,0x1d,0x1e,0x48,0x7a,0x2f,0x2b,0x41, +0x95,0xd5,0xa7,0x71,0x92,0x62,0xc2,0x0d,0x6c,0x6c,0x65,0xdc, +0xc5,0xd3,0x15,0xdc,0xd8,0xdf,0xe4,0x19,0xe4,0xb6,0xc7,0x75, +0xa7,0x4b,0xb6,0xc5,0x6d,0xbc,0x5e,0x83,0x66,0xbd,0x56,0x31, +0x07,0x31,0xe6,0x44,0x0f,0xfa,0x15,0xb6,0x18,0xcc,0xa6,0xea, +0x28,0x81,0x1d,0xd3,0x9f,0x9e,0xde,0xaf,0x2e,0xd7,0x03,0x93, +0x0b,0xac,0x62,0x0e,0x0e,0x90,0x9d,0x0d,0x6b,0x1b,0x37,0x94, +0xec,0x92,0xf1,0x77,0xdd,0xaf,0x3b,0x5e,0xa3,0xdb,0xb1,0x40, +0xf4,0x27,0x8f,0x7f,0xbf,0x0e,0x5f,0xd5,0xbd,0x37,0xce,0xe3, +0x6d,0x71,0xc4,0x4e,0x64,0x57,0xce,0xa1,0x9e,0x27,0xe8,0x0c, +0x89,0x8c,0xfc,0xf6,0xd4,0x11,0x75,0x88,0x04,0xab,0x6e,0xb4, +0x02,0x23,0x58,0xd5,0xd2,0x0b,0x16,0x18,0x21,0xb5,0x21,0x3a, +0x84,0x16,0x3d,0x96,0x60,0x24,0xee,0x61,0x57,0xe6,0xba,0xdd, +0x05,0x0d,0x95,0x67,0x86,0x8b,0x58,0x9c,0x64,0xb7,0x69,0xb6, +0xae,0x5a,0xae,0xf1,0x9b,0x81,0xaa,0x81,0x7f,0xda,0x10,0x5d, +0xda,0x28,0xb5,0x21,0xf2,0x95,0xda,0x10,0x29,0xd2,0x85,0x50, +0x92,0x7f,0x2f,0xfd,0x7e,0xe2,0x73,0x0e,0xd4,0x7a,0xf1,0x81, +0x21,0x10,0xc6,0x1f,0x97,0x5a,0xa2,0xea,0x72,0x1c,0x51,0xa8, +0xc3,0x67,0x15,0xa6,0x15,0xa5,0x96,0x70,0xa2,0x56,0xef,0x3d, +0xd0,0x13,0xf6,0xb2,0x42,0x5a,0x1b,0x11,0x17,0x82,0xaa,0xb0, +0x90,0x51,0x98,0x8b,0x7f,0x12,0x61,0x04,0x10,0x51,0x6a,0xf3, +0xbe,0x5e,0x78,0x47,0xf1,0x6f,0x76,0x37,0x66,0xff,0xa8,0x87, +0xc1,0x68,0x4a,0xf1,0xef,0x5e,0x8a,0x7f,0xc5,0x0f,0xe8,0x46, +0xc2,0x13,0x43,0x4f,0x87,0x86,0x1f,0x0e,0xe7,0x8f,0x9e,0x65, +0xaa,0x3a,0xbb,0xdf,0xe4,0xfe,0xc4,0x35,0xe1,0x58,0x98,0xa7, +0x8f,0xf3,0xf0,0x4b,0x63,0x38,0xc5,0x3a,0xe3,0x98,0x29,0xb8, +0x12,0xc9,0xd4,0x12,0x4b,0xbe,0xa9,0xa6,0xa6,0xb6,0xa8,0x92, +0x13,0xd5,0x2e,0x08,0xdb,0xd8,0xe8,0xd3,0xdf,0x9e,0x3d,0xa2, +0xf6,0x01,0x97,0xd4,0x54,0x28,0x09,0x06,0x52,0x35,0x8b,0xf8, +0x0a,0x44,0x09,0x4b,0xa3,0xf8,0x5a,0x1a,0x88,0x14,0x40,0x82, +0x38,0x03,0xe9,0x70,0x02,0x46,0x92,0xe7,0xf9,0x4f,0x9b,0xfa, +0xdb,0x5c,0x6b,0x78,0x7d,0xeb,0x75,0x8e,0x4b,0x7c,0x39,0xe1, +0xab,0x6b,0xe4,0xba,0xd7,0x77,0x8e,0x57,0xad,0x4a,0x5a,0x79, +0x9d,0x3a,0xed,0xda,0xf5,0xc5,0x14,0x28,0x76,0x08,0xea,0x24, +0x32,0x21,0x4c,0x12,0xd0,0x0b,0xe1,0x8f,0x02,0x03,0x93,0x7a, +0x71,0x12,0xac,0x64,0x9a,0x92,0x1b,0x3e,0xaa,0x2d,0xaf,0x75, +0xc0,0x71,0x6e,0x53,0x82,0x52,0x64,0x7c,0x6d,0x74,0x53,0x6c, +0x73,0x02,0x87,0x33,0x71,0xb9,0x21,0x2c,0x60,0xc3,0x26,0xd9, +0x49,0x6a,0xcb,0x95,0x16,0xfc,0x93,0xb7,0xa5,0x8f,0xce,0x7e, +0x4f,0x6d,0xc4,0xac,0x5b,0xd8,0xf6,0xb7,0x7a,0x1e,0x8c,0x40, +0x93,0xc6,0x0a,0xa5,0x02,0xe1,0x39,0xc1,0x1e,0xc1,0x1c,0x28, +0x98,0x52,0xc5,0xd3,0x04,0x64,0x14,0x23,0xc9,0x58,0x54,0x11, +0xbf,0x21,0xe0,0xd9,0x8d,0x9e,0xa0,0x0c,0xe1,0xdd,0x62,0xa1, +0x31,0x04,0xa3,0x32,0xba,0x18,0x83,0x0b,0x4e,0xc1,0x1c,0x23, +0x81,0x42,0xd4,0x38,0x8a,0x43,0x6b,0x85,0xe3,0x24,0x71,0x77, +0x82,0x57,0xbc,0x87,0xf5,0x11,0x8b,0xa3,0x16,0xc7,0x2e,0x3c, +0xba,0x2a,0xdd,0xfa,0x67,0x2d,0xf2,0xf9,0xdd,0xfa,0x1e,0x3a, +0xee,0xd2,0xad,0xff,0x6c,0xff,0xac,0xca,0x0b,0x65,0x37,0xf2, +0xae,0x9a,0x4b,0x7d,0xad,0xbc,0x77,0x78,0x99,0x04,0x25,0x07, +0x25,0x05,0x27,0x4a,0xb7,0xfe,0x6d,0xda,0x65,0x8d,0xc6,0xbe, +0x0e,0xbe,0x2e,0x7e,0x9e,0x3e,0x27,0x7c,0x4e,0xee,0x96,0x6e, +0xfd,0x77,0x9c,0xe9,0x3a,0xdb,0x71,0x96,0x13,0x17,0xf4,0x08, +0xcb,0xd8,0x97,0x09,0x51,0x07,0xcf,0x1e,0x3c,0x77,0x50,0xb9, +0xf9,0xfc,0xc1,0x1b,0x7b,0xaf,0xfb,0xf6,0x29,0x0b,0xc3,0xe1, +0x00,0x79,0xa9,0x37,0x1f,0x83,0x8c,0x85,0xaa,0x6e,0x16,0x97, +0xa2,0x3f,0xc9,0xac,0xc9,0x6c,0x4d,0x6e,0x32,0x39,0xcf,0x07, +0x9a,0xf9,0xcb,0x7c,0xcc,0x39,0x7c,0x88,0x73,0x7a,0x7f,0x16, +0x76,0xce,0xe9,0x83,0x39,0x0c,0xca,0x0b,0x49,0x70,0x5d,0x40, +0xc3,0xfe,0x72,0x33,0x7f,0x3e,0xcb,0x39,0xcd,0x31,0xd1,0x9e, +0x7b,0x31,0x93,0x4c,0x45,0x3b,0x7c,0xd7,0x0f,0x2d,0x30,0x05, +0x3f,0x5c,0x80,0x0f,0xb0,0x08,0xfd,0x90,0x93,0xa4,0x08,0xde, +0x30,0xf5,0x43,0x69,0xaa,0xd9,0xb8,0xeb,0x1d,0x2b,0x2e,0xc4, +0x4d,0x24,0x7b,0xc3,0xf9,0x25,0x09,0xcb,0x3b,0xd2,0xf8,0xc3, +0xdf,0xef,0xff,0xd1,0xef,0x36,0x87,0xb1,0x58,0x4f,0xca,0x1f, +0xa6,0xbd,0x8d,0x7b,0x63,0x16,0xc3,0x87,0x2f,0x09,0x58,0xea, +0xb1,0x8a,0xf2,0x86,0x09,0x82,0x03,0x71,0x08,0x57,0x82,0x6a, +0xfc,0x84,0x4d,0x2c,0x89,0x2f,0x89,0x2e,0x34,0x8d,0xe3,0x8f, +0x78,0x86,0xb9,0x1e,0x76,0xe3,0x56,0x52,0x94,0xb0,0x84,0x0d, +0x38,0x19,0x70,0x22,0xe0,0xe4,0x39,0x53,0x3e,0xf5,0x54,0xea, +0xe9,0xd4,0x53,0xc7,0xd1,0x24,0x14,0x59,0xd7,0x99,0x75,0x6e, +0x7c,0x3d,0x8c,0x4c,0x00,0xe5,0x33,0x60,0xdf,0x15,0xd5,0x4a, +0x2f,0x23,0x27,0x4e,0x9e,0xcd,0x26,0x48,0x77,0xbf,0xcb,0x52, +0x52,0xca,0xd5,0x85,0x79,0x6c,0xf2,0x19,0xfa,0x25,0x65,0x02, +0x62,0x20,0x31,0x85,0x4b,0x9d,0xf8,0x25,0x24,0x81,0x46,0x27, +0x6a,0xc0,0x3e,0xb6,0x2e,0xa5,0x26,0xb5,0x22,0x7d,0x57,0x2b, +0xbf,0xde,0x61,0xb2,0xdb,0x34,0xff,0x24,0x19,0x5f,0x1d,0x53, +0x13,0x57,0x93,0x28,0x41,0xa2,0xaf,0x4d,0x69,0xbc,0x4a,0x62, +0xa3,0x71,0x23,0xc1,0xd1,0xda,0x15,0x57,0x6c,0xd4,0xeb,0x7e, +0x4e,0x96,0x1e,0x70,0x4e,0xe1,0xaa,0xf0,0x4b,0xb6,0x69,0xa0, +0xeb,0xcf,0xec,0x7b,0x5c,0x03,0xca,0x64,0xd4,0x4d,0xec,0xdd, +0x2a,0x9b,0xae,0xb7,0x8e,0x86,0x99,0x29,0xec,0x31,0x8d,0xb0, +0x25,0xbb,0xd7,0xef,0xef,0x0c,0xb9,0x1a,0x7e,0xc7,0x24,0x84, +0x4f,0x98,0x95,0xbe,0xbc,0x72,0x9b,0xaf,0xb5,0xbb,0x9d,0xb5, +0x43,0xb9,0x0d,0xdf,0x50,0x5b,0x5a,0x97,0xd7,0xc0,0x6d,0xeb, +0x79,0xe2,0x02,0x5f,0xa8,0x82,0x01,0x93,0xd4,0xad,0xa4,0xb8, +0x21,0x2c,0x25,0x3f,0xb0,0xb0,0x1d,0xe6,0xe0,0xb7,0xac,0x55, +0x84,0x45,0xa4,0xec,0x08,0x97,0x05,0x2e,0x24,0xdd,0x21,0x47, +0x2f,0xd9,0xbc,0x96,0xb2,0xc0,0x76,0xdf,0x4b,0xfe,0x55,0x5c, +0x28,0x7e,0x4f,0xf0,0x44,0x3d,0x9c,0x60,0xc7,0x3e,0x95,0xd7, +0xd3,0xa8,0xf2,0xa4,0x9b,0xed,0xf6,0x27,0xfa,0x90,0xab,0xb0, +0xc7,0x9d,0xac,0xc4,0xda,0xe6,0x31,0x17,0xd2,0x24,0xd7,0xa3, +0x0f,0xea,0xfd,0xac,0x18,0x89,0x9b,0x49,0x8f,0x38,0xcf,0x88, +0x6d,0x5e,0x45,0xff,0xfa,0x26,0xbd,0xe8,0xa6,0xa3,0xba,0xf1, +0xa6,0x31,0xdb,0x23,0xce,0x22,0x9d,0x90,0x0a,0x59,0x78,0x07, +0xef,0xb2,0x90,0x06,0x99,0x04,0x17,0xa3,0x13,0x2c,0xa6,0x87, +0x5c,0x26,0x0f,0x26,0xaf,0xf4,0xe6,0x61,0x80,0x89,0x50,0xd4, +0xc5,0x2a,0xfe,0xd3,0xfb,0x77,0xfd,0xc8,0x16,0x2c,0x27,0x19, +0xd5,0x99,0x6d,0x7f,0xdb,0xcb,0x01,0xb3,0x5d,0x66,0x1c,0xde, +0x1e,0xb2,0x97,0x4d,0x73,0x7a,0x25,0x7b,0x79,0x57,0x40,0x82, +0xeb,0x03,0xea,0xa9,0xbd,0x1c,0xf8,0xc7,0x5e,0x70,0xd5,0x6d, +0xd2,0x83,0xbf,0x19,0xb1,0x35,0xab,0x3e,0x16,0x9a,0x40,0xed, +0x02,0x6a,0x41,0x56,0x1f,0x2d,0x48,0xfd,0xa3,0x05,0xcd,0xa3, +0x16,0x34,0x8a,0xa5,0xd8,0xed,0xd5,0xbf,0x16,0xe4,0xf1,0x8e, +0xc5,0x77,0x33,0xc8,0xff,0x5f,0x4d,0x8a,0xdc,0x51,0x9a,0xac, +0xfe,0x3c,0xf4,0x32,0x11,0x4e,0xd3,0xc9,0xce,0x11,0xed,0x09, +0x8c,0xed,0xa2,0x7e,0x67,0xc5,0xcf,0xd0,0x81,0x75,0xd8,0x01, +0x6a,0xa2,0x29,0xe3,0x1b,0xe9,0x7b,0x64,0xcf,0x11,0x4e,0xf8, +0xdc,0x58,0x54,0x65,0x0f,0x1e,0x0b,0x38,0x1e,0x70,0x4c,0x52, +0x70,0x52,0x2b,0x80,0x71,0x85,0x30,0xaa,0xee,0x68,0x17,0x6f, +0x17,0x64,0x1f,0x62,0x1b,0xc2,0xd5,0xc8,0xd7,0x48,0xf7,0x52, +0xb6,0x80,0x31,0x2b,0xd7,0xa0,0xec,0x32,0xa3,0x26,0x83,0x9e, +0x0f,0x53,0x69,0xbd,0x01,0xb2,0xdd,0xf4,0x7c,0xf4,0xe0,0x9c, +0x9e,0x9f,0x85,0x19,0x1f,0xcf,0xc7,0x63,0x69,0xbd,0x07,0xeb, +0xfd,0xcb,0xcd,0x0f,0xf0,0x99,0x2e,0xa9,0x0e,0x74,0xbd,0x4f, +0xa5,0xf3,0x61,0xf8,0x71,0x75,0x04,0x3f,0xf4,0xd3,0xd5,0x4d, +0x46,0xbf,0x29,0xd2,0xe2,0x9e,0x32,0xf5,0xe7,0xcf,0x37,0x48, +0x8b,0xb3,0x79,0x47,0x83,0xfb,0xed,0x9f,0x48,0xd7,0xcf,0xb9, +0x7f,0x44,0x83,0x16,0x07,0xa1,0x73,0xd1,0x1a,0xcb,0x7a,0x20, +0x90,0x9e,0xa9,0xac,0x1e,0xc8,0x82,0x55,0xb8,0x6e,0x2e,0x93, +0x28,0x53,0x7a,0xc4,0xd4,0x0e,0x75,0x02,0xdc,0x83,0x7b,0x5f, +0xc3,0x99,0x0e,0x3c,0xf3,0x03,0x9c,0xea,0xc0,0x53,0x3f,0xb1, +0x4f,0x62,0x1e,0xc4,0x5f,0x4d,0xde,0x23,0xe5,0x53,0x7a,0xa2, +0x6e,0x08,0x1e,0x3c,0xce,0xe1,0x76,0x16,0x83,0x0e,0xe2,0x17, +0x3b,0x26,0xa9,0x09,0xee,0xa3,0x6c,0xee,0x18,0x3c,0x30,0xeb, +0xb1,0x70,0xe7,0x3b,0x8d,0xba,0x57,0x37,0x68,0x72,0x60,0x0c, +0x4b,0xc9,0xdd,0x53,0x0f,0xce,0xdc,0x89,0xe2,0x96,0xd1,0x38, +0x45,0xdd,0x92,0x06,0xa1,0x67,0xeb,0x54,0xde,0xb7,0x05,0x45, +0x2a,0x10,0xcc,0xa0,0xb5,0xf8,0xf2,0x7f,0x2c,0x8f,0x4d,0xa9, +0xb1,0x32,0xd1,0xbf,0xeb,0x09,0xc3,0x82,0x60,0x2d,0x27,0x55, +0x05,0xad,0x63,0x8e,0x5d,0x38,0x71,0xed,0x8e,0xca,0x85,0xb8, +0xde,0xa4,0xb6,0x54,0x6f,0xca,0xdc,0x86,0xb9,0xe3,0x02,0x3f, +0x9c,0x19,0xc9,0x29,0x46,0xb0,0x07,0x8e,0xfa,0x1f,0x3b,0x70, +0x3c,0xc1,0x88,0xff,0x3d,0xed,0xf7,0xbc,0xbb,0xb9,0x61,0x5d, +0xbc,0x55,0x90,0x49,0xa0,0x51,0xb0,0x54,0xe6,0xba,0x84,0x4d, +0xc5,0x9d,0x95,0xf8,0xf9,0xe0,0xca,0x12,0xa7,0xe6,0xa8,0xb8, +0x8e,0x7c,0x98,0xc1,0x5b,0xe5,0x29,0x41,0x17,0xec,0x24,0xed, +0xaf,0xab,0x5f,0xe5,0x3c,0xe2,0xda,0xf0,0xb9,0xe2,0xaf,0xcb, +0xf2,0x76,0x70,0x62,0xf7,0x69,0x3a,0xcd,0x37,0x98,0xc1,0xdd, +0xde,0xd4,0xbb,0x61,0xb5,0x8a,0xf6,0x01,0xf7,0xf5,0x6a,0xdb, +0x98,0x84,0x9d,0x4a,0x03,0xcc,0x1f,0xf5,0x57,0x5e,0xbf,0x31, +0xbe,0xbb,0xf5,0xaa,0xba,0x62,0x2a,0x9c,0x22,0xad,0x67,0x5a, +0xcf,0xb5,0x44,0x73,0x9b,0x4e,0xef,0x38,0x6b,0xa0,0x86,0x0b, +0x18,0x10,0xc4,0x07,0x94,0xee,0xed,0xa0,0x74,0x4f,0xd8,0x2a, +0x7f,0x4c,0x82,0x3d,0xfd,0x6c,0xa4,0x6e,0xdf,0x0f,0xcd,0x41, +0xc7,0x00,0xe7,0xe3,0xef,0xe0,0xb1,0x53,0x7a,0xcc,0x1c,0xce, +0xec,0x5f,0xb7,0xde,0x12,0xa7,0x1b,0xe6,0x98,0xf3,0xbf,0xd5, +0xdc,0xa9,0xed,0xe8,0x8b,0x8a,0x3e,0x7b,0x32,0xea,0x38,0x84, +0xa3,0x32,0x5f,0xdc,0x86,0x3e,0xf0,0x49,0x48,0x74,0xe4,0xb1, +0xf0,0x08,0xe5,0xd0,0xf0,0xa3,0xa7,0x13,0xd2,0xe2,0x32,0xce, +0xe5,0x2a,0x4b,0x89,0xc0,0x47,0x2e,0x82,0x37,0xfc,0x8e,0xcb, +0xfb,0xc0,0xb4,0x0d,0x17,0x31,0x69,0x45,0xe9,0x15,0xf1,0x79, +0x1c,0x86,0x6d,0x23,0xa1,0x79,0x07,0x8a,0xfd,0xb3,0xcd,0xf6, +0xf3,0xe9,0xbe,0x19,0xde,0x09,0xbb,0x39,0xf9,0x04,0x4c,0x24, +0x4d,0xaf,0xcb,0x7e,0xce,0x7c,0xc8,0xb5,0x62,0xa7,0xe2,0xaf, +0x7e,0x0a,0xdf,0xb7,0xb0,0x07,0x36,0xb8,0xcd,0x93,0xcd,0xb8, +0xba,0xa9,0x7d,0xed,0xc9,0xd5,0xdc,0xa6,0x40,0xf7,0x2d,0x6a, +0x86,0x4c,0xa2,0x9e,0x52,0x0f,0xf3,0xaa,0xfa,0xf2,0xab,0x5f, +0x2c,0xee,0xea,0x0d,0xaa,0x8b,0x5d,0x30,0x9d,0xf4,0x5d,0x37, +0x60,0x71,0x9c,0x0d,0x09,0xb7,0xdb,0xe5,0x6e,0xe3,0x5b,0xec, +0xc8,0x0f,0x54,0x14,0x75,0xc4,0x74,0x73,0x37,0xad,0x18,0xbb, +0x94,0x80,0x7a,0xb5,0x5f,0x2c,0xc5,0xb1,0xb0,0x94,0x81,0xae, +0x2d,0xc4,0xe7,0xc4,0xb9,0x3c,0xf5,0x8a,0x0f,0x5b,0x58,0x71, +0x2c,0x7e,0x4d,0x84,0xb1,0x66,0xe2,0x58,0x1a,0x83,0x92,0xe4, +0xfd,0x64,0xcf,0x7a,0xdd,0xb5,0xf8,0xa5,0xa6,0x74,0x0f,0x79, +0xdc,0xad,0x3b,0x8f,0xd3,0xa4,0x66,0xc9,0x29,0x8b,0xbf,0xd3, +0xfe,0x73,0x63,0x11,0x25,0xb5,0xd7,0xb6,0xde,0xf6,0xbb,0xc1, +0xc1,0x14,0xd7,0xff,0x6f,0x1f,0xa3,0xe0,0x44,0x1d,0xf2,0xb1, +0xe3,0xf6,0x18,0xf8,0xb4,0x07,0xdb,0x8c,0x60,0x34,0x8e,0x41, +0x73,0x23,0x30,0xc7,0x2e,0x66,0x6b,0xd8,0xe6,0xf0,0x2d,0x43, +0xf7,0x9c,0x57,0xa6,0xc2,0xaa,0x02,0xf8,0xb4,0xe4,0x44,0x2f, +0x6f,0x10,0xa4,0x13,0xb2,0xed,0x30,0xf7,0xe6,0x1a,0xc9,0xea, +0x4c,0xed,0x4d,0xec,0xb4,0x48,0xe1,0x83,0xf5,0x03,0x65,0xfe, +0x96,0x1c,0x56,0xc0,0xd7,0x24,0x5f,0x56,0xb0,0x36,0xd9,0xa4, +0x23,0x9d,0x0f,0xec,0xf1,0x7a,0xe4,0xdb,0x46,0x43,0x79,0xba, +0xbc,0x93,0x88,0xb3,0x04,0x37,0x61,0x16,0xab,0x18,0xef,0x48, +0xc4,0x03,0x90,0xbb,0x10,0xef,0x9a,0x53,0x8b,0x89,0x5c,0xea, +0xee,0x8c,0x23,0xed,0x0b,0xcc,0x78,0x18,0xdf,0xd6,0xd2,0x17, +0x0b,0x23,0xb9,0xf7,0xe8,0x7b,0x41,0x58,0x8c,0xb9,0xc2,0x26, +0x46,0xb0,0x15,0x6f,0x90,0x9f,0xa0,0x5e,0x38,0xa0,0x27,0x6e, +0xc2,0x7a,0x71,0xf1,0x05,0xf0,0xa5,0xce,0xc6,0xb7,0x8f,0xfe, +0xf8,0xa2,0x8d,0xc5,0x12,0xe1,0x08,0xc1,0xb7,0xd7,0xe1,0x2d, +0x83,0x06,0xa3,0xf0,0xed,0x4d,0x69,0xf0,0x16,0xc7,0x10,0x78, +0xab,0x89,0x6f,0xa5,0x07,0x29,0x72,0x2b,0x62,0x52,0xbf,0xbd, +0x61,0x47,0x89,0xa7,0x05,0x7f,0xd5,0xad,0xdf,0xa9,0xc7,0x86, +0xbb,0x0f,0x93,0x08,0x46,0xb1,0x98,0x1d,0x84,0x73,0xa7,0xe3, +0x02,0xb5,0x66,0xeb,0xdf,0x61,0x71,0x3e,0x2c,0x3d,0x05,0x05, +0xca,0xc2,0xb7,0x50,0xc1,0x88,0xdf,0x7e,0xbc,0x2b,0xa5,0x8b, +0xeb,0x58,0xf1,0x11,0xb2,0xc4,0xb8,0x49,0xb3,0x6d,0x73,0xb9, +0x87,0x25,0x7f,0xc3,0xe5,0xaa,0xcd,0x45,0x4b,0x4e,0xae,0x22, +0xce,0xa4,0x6f,0xc1,0x58,0x47,0xc4,0x52,0xbe,0x33,0x96,0x85, +0x11,0xe5,0x30,0xed,0xda,0xb3,0x6b,0x6e,0x4d,0xfc,0x2a,0x3d, +0x1c,0xbf,0x73,0xba,0x07,0x07,0x2e,0x3b,0x45,0x0d,0x76,0x65, +0xe1,0x9e,0xa7,0x6a,0x70,0x9c,0x69,0x49,0x93,0xd2,0x8f,0x56, +0x4b,0xcd,0x5a,0x14,0x4b,0x7e,0x27,0x2e,0x38,0xc2,0x0c,0x39, +0xad,0x59,0xad,0xf6,0xfc,0x9d,0xf7,0x7d,0xa0,0x5c,0xf6,0x27, +0x27,0xb5,0x77,0x9e,0x4e,0x76,0x51,0xaa,0xe0,0x15,0xc2,0x41, +0x88,0xd4,0xde,0x79,0x28,0x37,0x84,0x35,0x06,0x96,0x32,0x09, +0x7b,0xea,0xdc,0x1c,0x43,0xe3,0x8d,0x28,0x9b,0xa9,0x4a,0x90, +0xd8,0x4c,0xc9,0x64,0x89,0xcd,0x3c,0xf9,0xb7,0xbb,0x73,0x59, +0x52,0x99,0xc4,0x13,0xe0,0xa5,0x70,0x98,0x50,0x80,0x90,0x6b, +0x22,0x1f,0xd9,0x85,0xb5,0xcc,0x8b,0xad,0xe4,0xb0,0xcd,0x41, +0xbb,0x83,0xf4,0x78,0xfc,0xa6,0xf8,0xac,0x4f,0xb8,0x2b,0xe8, +0x89,0xd1,0x48,0x86,0x72,0xb5,0x86,0x53,0x57,0x9d,0x51,0xab, +0x2e,0x74,0xe1,0x9c,0x7f,0x85,0x67,0xe5,0xc7,0x49,0xea,0xae, +0x24,0xf7,0xf8,0x8f,0xc2,0xb3,0x41,0x92,0xf0,0x2c,0xcc,0x15, +0x37,0x90,0x1f,0x60,0x5e,0x1b,0xce,0x7b,0x64,0xb2,0x12,0xa7, +0x99,0xc3,0xb4,0xa5,0x38,0x1c,0x93,0x3b,0x3b,0x29,0xa3,0x71, +0x66,0x31,0x40,0xea,0xd2,0x35,0x0c,0x34,0xa5,0xde,0xdb,0xf0, +0x83,0x30,0x93,0x78,0x52,0x4a,0xf6,0xdf,0xcb,0x67,0xf4,0x91, +0xee,0x89,0x11,0x8c,0x1f,0x2a,0x9f,0xb1,0x0e,0xb6,0xfb,0x58, +0x3e,0x53,0xf7,0x77,0xf9,0x0c,0x23,0xf1,0x9d,0x97,0x7f,0x4b, +0x8c,0x76,0xb0,0x95,0x49,0x15,0xc9,0x15,0xa9,0x5c,0x96,0x60, +0x4b,0x2c,0xc1,0x41,0x1b,0x4d,0xad,0xc1,0x54,0x13,0x9d,0xad, +0x68,0x80,0xab,0x67,0x4b,0x27,0x5a,0xc2,0x2e,0x6d,0x74,0xb0, +0x06,0x07,0x4d,0xf4,0xb5,0x82,0x62,0xfa,0x1a,0x1e,0x50,0x94, +0xd2,0xe9,0xb9,0x35,0xa3,0xdb,0x23,0x70,0x6b,0x92,0xbe,0x1f, +0x6e,0xc6,0x00,0x36,0x39,0x3b,0xa5,0x30,0x3e,0xd7,0x38,0x89, +0x0f,0xf3,0x39,0xe4,0x25,0x75,0x1d,0xd0,0x64,0x92,0x72,0x13, +0x73,0xe3,0xf3,0xcc,0x53,0x78,0xaf,0x95,0x86,0x4b,0xb5,0xb6, +0x97,0xdb,0xf2,0xd9,0xd9,0x99,0x39,0xe9,0xb9,0x9c,0x38,0xae, +0xb7,0x5e,0x08,0x6e,0x63,0xc5,0x60,0x38,0x4f,0x1e,0x81,0xfe, +0x4a,0x96,0xee,0xfc,0xc4,0x8f,0x23,0xab,0x51,0x4b,0x51,0xff, +0x07,0x1a,0xa7,0x8a,0xc0,0x81,0xdc,0x80,0x09,0xc5,0xf0,0x4d, +0x1c,0xcc,0xe4,0xba,0xfa,0x31,0x8d,0x49,0x6c,0x8d,0xef,0x88, +0xe9,0x30,0x8e,0xe1,0x0f,0x20,0xef,0x85,0x5f,0x6b,0x4d,0x2e, +0x35,0xe7,0x33,0x0a,0xd3,0x4a,0xce,0x57,0x24,0xe2,0x88,0xfc, +0xa9,0xcd,0x33,0xad,0xb5,0x74,0xb7,0x2c,0xdf,0xce,0x9d,0x61, +0x85,0x66,0x1c,0xc9,0x26,0x95,0xa6,0x34,0xc4,0x55,0xe9,0xc4, +0xf3,0x61,0xb6,0x81,0x56,0x92,0x14,0x70,0xb5,0x42,0xa9,0x5f, +0xb8,0x01,0x33,0xe6,0xe3,0x70,0x73,0x18,0xbe,0x6c,0x29,0x16, +0xb5,0x77,0xc1,0x16,0xd8,0xbb,0xe8,0x29,0x0c,0x6f,0xc3,0xe1, +0x2f,0x61,0x86,0x78,0x1a,0x87,0x49,0xfd,0x64,0x9f,0x31,0xb9, +0xa9,0xd1,0x29,0x71,0xea,0x19,0x2e,0x3f,0xdd,0x18,0xfc,0xae, +0xe3,0x9e,0x72,0xc3,0xfa,0x5e,0xad,0xef,0xb4,0xcb,0x7a,0xf8, +0xf5,0xb7,0x8d,0x6e,0x39,0xdc,0xe5,0x44,0x67,0xa1,0x9a,0x3c, +0xd7,0x59,0x84,0x07,0x65,0x42,0x76,0x07,0x8b,0xdf,0xe3,0x06, +0x12,0x56,0x19,0x5a,0x1e,0x54,0xa8,0x7f,0x88,0x4f,0xf2,0x8a, +0x77,0x8b,0x75,0xe3,0xe4,0xcb,0x7b,0x48,0x04,0x7e,0xb1,0x17, +0x39,0x99,0x86,0xf5,0xfb,0xfd,0x30,0x2a,0x14,0xbe,0xe2,0x44, +0x43,0x31,0x9d,0xc0,0x04,0xf8,0x02,0x27,0xd0,0x45,0x7e,0x25, +0x7f,0x20,0x99,0x4f,0xa3,0xb1,0x7c,0x5e,0x37,0x5e,0x66,0xc4, +0x8e,0x2a,0xd2,0xe3,0xd6,0xe2,0xd2,0x6c,0x57,0xde,0xcc,0xdb, +0xd4,0x99,0xd4,0x9a,0x94,0x70,0xd0,0x45,0xdf,0x3a,0x75,0x57, +0xb2,0x6b,0x82,0xe7,0x90,0x91,0x04,0x56,0x04,0xe5,0x73,0x90, +0x7a,0x92,0x84,0xd8,0x1d,0xb2,0x0b,0x70,0xe7,0x44,0x4e,0x31, +0xb6,0x5f,0xb8,0x27,0xec,0xa1,0x86,0xf6,0x0d,0x93,0x6a,0x20, +0xe5,0x83,0xd6,0xa7,0x53,0xfb,0xa7,0x86,0xb6,0x82,0x4d,0x29, +0x49,0xa9,0x8e,0x2b,0xe7,0xc4,0x26,0xb4,0x24,0x36,0xf5,0x3a, +0xad,0x06,0x15,0x6e,0x56,0x7c,0x8f,0xf4,0x2c,0xdd,0x86,0x13, +0x36,0xe2,0x5a,0x7a,0x29,0xd7,0xb6,0xe1,0xda,0x27,0x26,0xcb, +0x87,0x24,0xae,0x96,0xe2,0xa7,0x98,0xdc,0xdd,0x09,0xa7,0xa8, +0xa5,0x29,0xe6,0xe1,0x20,0xb9,0x0e,0xc3,0xda,0x41,0xb5,0xe0, +0x0f,0xa3,0x0c,0xba,0xe3,0x23,0x6d,0x71,0xf4,0xd6,0x19,0x52, +0xa6,0xe6,0xa7,0xe4,0x3d,0x18,0x4f,0xa2,0x01,0xe1,0x27,0xf9, +0x3a,0x92,0xd6,0x9c,0xdc,0x12,0xdf,0xa2,0x9f,0xc2,0x7b,0xe3, +0x37,0xdb,0x50,0x6d,0xd5,0x14,0x0e,0xa2,0x70,0x2e,0x9b,0x52, +0x9a,0x58,0x15,0x5b,0x61,0x90,0xc2,0x87,0x39,0x04,0xdb,0x1e, +0x72,0xe6,0x70,0x98,0xa2,0xe8,0xd2,0x8f,0x90,0x20,0x68,0x33, +0x55,0xae,0xcd,0x3d,0x0d,0xb7,0x2a,0x1e,0x28,0x43,0x95,0x21, +0x65,0x28,0x11,0x68,0x7b,0x60,0xe8,0xa9,0xde,0x5e,0xd7,0x6d, +0xaa,0x38,0x67,0xe8,0xa9,0x9e,0x1a,0xf3,0x47,0x5d,0x27,0x30, +0xd2,0x53,0xbd,0x2f,0xe3,0xc0,0x0a,0xbe,0x94,0x9e,0xea,0x89, +0xf7,0x91,0x22,0x19,0x0b,0x38,0x03,0x16,0x8c,0x30,0x57,0xdc, +0x4e,0x9c,0x1e,0xe9,0xc0,0x30,0xc3,0xdb,0x56,0xce,0x7c,0xb7, +0xd6,0xe5,0x49,0x55,0x2b,0x38,0xb1,0x0d,0xd6,0x10,0xca,0xfd, +0x4a,0xd1,0x82,0xba,0xa3,0x3c,0xf9,0x0a,0x92,0x67,0x9b,0x6b, +0x9d,0x6d,0xde,0x91,0xc3,0xfb,0xd7,0xfa,0x57,0xee,0xfb,0xa8, +0x9c,0x5f,0xc1,0xa4,0x14,0x25,0x16,0x7f,0x54,0xce,0x9f,0x67, +0xb2,0x4c,0x6b,0x73,0xa3,0x23,0x5f,0x59,0x59,0x56,0x5f,0xd0, +0xc8,0x09,0x96,0x5d,0x24,0xa9,0x38,0xbe,0xf8,0xa3,0x32,0xfe, +0x12,0xfb,0x65,0x7a,0x9b,0x9b,0xdd,0xf9,0xc2,0xf2,0xdc,0xea, +0xcc,0x1a,0xee,0x39,0x93,0x6f,0x97,0x63,0x95,0x63,0xde,0x96, +0x23,0xe9,0xf0,0x57,0x7e,0x94,0xd2,0x67,0xc4,0x70,0x5c,0x4d, +0x96,0xe1,0x63,0xb1,0xe5,0xf2,0x80,0x80,0xdb,0x2f,0x09,0x2d, +0xf8,0xfb,0x53,0x76,0x27,0xb6,0x11,0x4c,0x87,0x05,0x90,0xce, +0xc0,0x6f,0xb8,0x80,0x60,0x15,0x1d,0x57,0x31,0xf8,0x1b,0x65, +0x7e,0x14,0x8c,0xa5,0x53,0x30,0x26,0x75,0x12,0xa8,0xa2,0xe3, +0x2a,0x66,0xac,0x7c,0x8a,0x3c,0x9e,0xdc,0xd2,0xd9,0x88,0x95, +0x66,0xf2,0x2f,0xda,0x59,0xc5,0x62,0x5c,0x4e,0xfe,0x77,0x40, +0x22,0xe7,0xc5,0x04,0x52,0x97,0x9c,0x5c,0x23,0xc9,0xf3,0x6b, +0xb2,0x99,0x45,0xa9,0xc5,0x29,0xa5,0x06,0x69,0x7c,0xb0,0xeb, +0x41,0x67,0x5f,0x27,0x0e,0xff,0x4b,0xac,0xe8,0x13,0x82,0x85, +0xbd,0xe2,0x16,0x1c,0xc1,0xc4,0x99,0x29,0xe1,0x13,0xf9,0x67, +0xe4,0xbc,0x5f,0x86,0x47,0xc2,0xae,0xee,0x34,0x3e,0xa4,0xd0, +0xbf,0xe2,0x50,0x16,0xe7,0x23,0x3e,0x22,0xf0,0x08,0x2c,0x51, +0xfd,0x21,0xac,0x6f,0xc6,0xf5,0x03,0xc6,0xdb,0x71,0x85,0x15, +0xac,0x58,0x85,0xaa,0x94,0xe1,0x0e,0x12,0xfc,0x6a,0x51,0x37, +0x8c,0x56,0x87,0x4a,0xd4,0x36,0x80,0x51,0xb8,0x97,0x9d,0xe7, +0x6b,0x31,0xdf,0x46,0x2d,0xdb,0xe0,0x51,0x6d,0x55,0xe7,0x3f, +0x78,0x66,0xb3,0x84,0x67,0x62,0x99,0xb8,0x0b,0x4a,0xa2,0x09, +0xac,0x25,0x6f,0xc1,0x67,0x06,0x35,0xe6,0x2d,0xd4,0x98,0x0d, +0xe6,0x63,0xac,0x89,0xf0,0x7d,0x17,0x66,0x32,0xe2,0xe9,0x47, +0xc4,0x7f,0x83,0xcb,0xba,0x25,0x52,0x05,0xcf,0xd3,0x9b,0x2d, +0x3f,0x24,0xfd,0x48,0x43,0x65,0xdc,0xb2,0x86,0xed,0x8f,0xd7, +0x14,0x77,0xf0,0x9a,0x37,0xec,0xaf,0xfb,0xdf,0xe4,0x84,0x64, +0x9c,0x43,0x42,0x6d,0x0f,0xd9,0x4a,0xa5,0x9d,0xf7,0x14,0x9f, +0xf6,0x0a,0x77,0x84,0x79,0x62,0x14,0x7e,0x26,0xf9,0xcc,0xdf, +0xff,0xd6,0xea,0xee,0xc2,0x49,0xd4,0x92,0x93,0x6b,0xe3,0x2a, +0x39,0x7c,0x79,0x6c,0x48,0xab,0x3b,0xde,0xbd,0x23,0x99,0x0f, +0x2b,0x0f,0xaa,0x08,0x2e,0xe0,0xb0,0x4b,0x52,0x8b,0xfd,0xa4, +0x0b,0x3f,0x81,0x31,0x4f,0x3a,0x70,0x97,0xec,0xae,0x24,0x65, +0x64,0x02,0x2a,0x38,0xc0,0x58,0x85,0x59,0x84,0x5b,0x4b,0x09, +0xe9,0xef,0xcf,0xc3,0xb8,0xfc,0xfb,0x79,0x27,0x3a,0x79,0xb7, +0x50,0xa7,0x30,0x87,0x70,0x8e,0x12,0x67,0x0b,0x6a,0xfe,0xea, +0xad,0x74,0x2b,0x64,0xab,0x50,0xd9,0x02,0x94,0x97,0xce,0xc0, +0xe4,0x8e,0x0e,0x70,0x06,0x17,0x56,0xdc,0x8f,0xe3,0x48,0x52, +0x57,0x7c,0x7f,0xb4,0x54,0x17,0x14,0xb9,0x73,0x28,0xc3,0x1c, +0xdd,0x61,0x96,0x94,0x8b,0xbe,0x3a,0x4e,0x6f,0x28,0x17,0x7d, +0x9f,0x94,0x8b,0x4e,0x2f,0x86,0xb7,0xa4,0xf7,0x3d,0x4f,0xd2, +0xfb,0xa6,0x91,0x57,0x46,0x6c,0x1b,0x4c,0x1b,0x4d,0xcb,0xdd, +0xed,0xf8,0x1e,0xe7,0x26,0x87,0x66,0x1b,0x0e,0xca,0xb0,0x98, +0x9c,0xc2,0x4f,0x23,0x50,0x23,0x74,0x2b,0x67,0x12,0x11,0x14, +0x6c,0xae,0xba,0x4c,0x7a,0x10,0xf0,0x94,0xb9,0x51,0x90,0x75, +0x2b,0x59,0x3d,0xf9,0xfb,0x68,0xf8,0x06,0x8c,0x55,0xf0,0x04, +0x13,0x53,0x1d,0xd3,0x7d,0xb6,0x8c,0x03,0x4f,0x08,0xc5,0x32, +0x33,0xd8,0x8f,0x2a,0xe8,0xc2,0x44,0xae,0x0f,0x59,0x11,0xa8, +0xcd,0x09,0xff,0x35,0x11,0xc7,0x1d,0x41,0xfe,0xf0,0x3a,0x35, +0xab,0xc8,0x03,0x41,0x76,0xaa,0xb3,0xa4,0x04,0xe6,0xd7,0xcc, +0x60,0x59,0xee,0xcd,0x78,0xf5,0xe4,0x97,0x51,0x40,0x60,0xa7, +0x0a,0xa6,0x30,0xd1,0x95,0x51,0x5d,0x67,0xa9,0x71,0x86,0xd0, +0x37,0xe9,0x31,0xa3,0x44,0x4e,0x05,0x0f,0x31,0xc7,0x34,0xc3, +0x96,0x05,0x6b,0x73,0xe2,0x98,0x3b,0xc4,0xbe,0x41,0xaf,0xc3, +0xa4,0xca,0xcd,0x8e,0xef,0x70,0xea,0xb6,0x6c,0xb4,0xe2,0x84, +0x1d,0x73,0x49,0x95,0x6f,0xb3,0x73,0x99,0x6b,0x79,0x25,0xef, +0x5e,0x6e,0x5e,0xe3,0x9a,0xcd,0x89,0x33,0x9c,0x49,0xa5,0x5f, +0xbd,0x4b,0xa9,0x1b,0x7d,0xcd,0xab,0xd4,0xaa,0xda,0x2d,0x9b, +0x43,0x5b,0x71,0x15,0xb9,0x02,0x23,0x1a,0xe0,0xeb,0xac,0x3f, +0x28,0xa7,0xd9,0x8d,0xa3,0x5c,0x70,0x8c,0xde,0x74,0x4e,0x98, +0x04,0x51,0xc4,0x58,0x67,0xed,0xce,0xd5,0x76,0x05,0xd6,0xfc, +0xa3,0xa6,0x67,0x37,0x3a,0x2e,0x73,0xf0,0xb8,0x94,0x18,0xe9, +0xac,0xd6,0x5b,0x61,0x57,0x68,0xcd,0x3f,0x6e,0x78,0x31,0xd8, +0x71,0x65,0xa8,0x5e,0xf2,0x5b,0xd2,0x1b,0xd7,0x15,0xd7,0x92, +0x78,0xa4,0x8d,0xb7,0x0e,0x93,0x85,0x19,0x47,0x48,0x3d,0x83, +0x17,0x74,0xe1,0x82,0xdf,0xf5,0xa6,0xe1,0x46,0x13,0xd8,0x88, +0xe3,0x58,0x83,0x08,0xdd,0x48,0xdd,0xa3,0xb1,0xc6,0x7c,0x7f, +0x54,0x5f,0x54,0x4f,0x0c,0x87,0xe3,0xa9,0xbf,0x4c,0x36,0x53, +0xfa,0x83,0x69,0x49,0x97,0xda,0xbe,0xe5,0x43,0x08,0x39,0x55, +0x7c,0xaa,0xac,0x4a,0x05,0xd4,0xcf,0xc1,0x30,0x4a,0x33,0xcb, +0x76,0x51,0x68,0xff,0x99,0xfb,0xd4,0x10,0x5c,0x79,0x8c,0xc3, +0xb4,0x70,0xfd,0xe9,0x53,0xd5,0x9a,0xed,0x6f,0x7d,0x57,0x3c, +0x90,0x00,0xac,0x32,0xac,0xc7,0xa8,0x8b,0x10,0x05,0xf3,0xba, +0x19,0x85,0x97,0x62,0x07,0x69,0x14,0x3a,0x6c,0x2e,0xc3,0x33, +0x85,0x26,0x3e,0x63,0xe5,0xc3,0xa0,0x98,0xa0,0xb6,0xd8,0x01, +0xda,0xf4,0x02,0x06,0xc9,0x1f,0x11,0xcb,0x69,0x3a,0x2b,0x57, +0x6f,0xad,0xb0,0xe2,0x7f,0xf8,0x6e,0xf0,0x4d,0xfb,0x1f,0x9c, +0x5c,0x53,0xf1,0x90,0x18,0x0e,0xda,0x5e,0xf7,0xf8,0x8e,0xc2, +0x87,0x6c,0x98,0x1c,0x0d,0x0b,0xb9,0xca,0x5e,0xf4,0x61,0x12, +0x1b,0xe3,0x3a,0xa3,0x3b,0x65,0xd1,0x7c,0x90,0x86,0x2f,0x8e, +0xb4,0x99,0xbb,0xa7,0xdb,0xb7,0xde,0xbd,0xcd,0x66,0x2f,0x7f, +0xde,0x37,0xc5,0x37,0x79,0x8f,0x55,0x84,0xd9,0x11,0xd9,0xd1, +0x8c,0xba,0x8c,0xf6,0x94,0x56,0x4a,0x28,0xda,0x70,0xce,0x63, +0xa3,0x15,0x38,0xd3,0x1c,0x86,0x31,0x07,0x65,0x7e,0xa6,0xfb, +0xec,0x03,0x4f,0x06,0x9d,0x0c,0x3c,0x99,0x56,0xc1,0x9b,0x65, +0xdb,0xcc,0x5c,0x89,0x9f,0x2e,0xdb,0xa8,0x5c,0x62,0x5e,0x5d, +0x56,0x58,0x92,0x53,0xaa,0x2c,0xee,0xec,0x16,0x12,0xd9,0xf4, +0x82,0xb4,0xe2,0xb4,0x92,0x28,0x47,0xfe,0xcf,0xe8,0x17,0xf1, +0x2f,0x52,0xa2,0x82,0xa3,0x83,0xa2,0x83,0xf2,0x53,0xf8,0xe3, +0x91,0xc7,0x8e,0x1c,0x8b,0x2c,0x33,0xe4,0x53,0x0b,0xce,0x97, +0x25,0x57,0xc5,0xe3,0x98,0x1c,0x1c,0x59,0x3f,0xc9,0x4d,0xd3, +0x72,0xd3,0xb6,0x2d,0x65,0x32,0xfe,0xc2,0x40,0xf3,0xb5,0x8a, +0xeb,0x65,0x9b,0x1b,0xb6,0x76,0x6e,0xe7,0xb6,0xc8,0x77,0x92, +0x23,0x38,0xf1,0x20,0x8e,0x71,0xc2,0x11,0xce,0x30,0xfc,0x20, +0x8c,0x39,0x22,0x05,0x23,0x4e,0xb1,0x5d,0x6a,0x0c,0x6f,0x48, +0x0d,0x64,0x34,0x9b,0x60,0x46,0x0f,0x5c,0x65,0xfa,0xf9,0x0a, +0x75,0xc1,0x16,0xdb,0xc5,0x0c,0x16,0x8e,0x0b,0xff,0x0f,0x65, +0xef,0x01,0x1c,0xc5,0xf5,0xbc,0x8b,0x9a,0xa0,0x99,0x31,0xd8, +0xb2,0xb1,0x39,0x30,0x02,0x2c,0x01,0x22,0xe7,0x9c,0x84,0x10, +0x08,0x91,0x94,0xc3,0x2a,0xe7,0x9c,0x25,0x24,0x10,0x22,0x08, +0x09,0x91,0x8d,0x49,0x12,0xca,0x09,0xe5,0x9c,0x73,0x5e,0xad, +0xb2,0x40,0xe4,0x6c,0xa2,0x31,0x60,0x8c,0xb1,0x8d,0x63,0xcf, +0xd2,0xa3,0xdf,0xef,0x9d,0x11,0xf6,0xff,0xbe,0xaa,0x77,0xeb, +0xd5,0xbd,0x45,0xd5,0x32,0xb5,0xb0,0xbb,0xa7,0x7b,0xce,0xe9, +0xfe,0xbe,0x33,0xa7,0xfb,0x23,0x04,0xcd,0x5e,0x02,0x0d,0xd2, +0x66,0xa8,0x41,0xc0,0x6c,0x29,0x9a,0x31,0xaa,0xef,0xed,0x43, +0x89,0xf9,0x75,0x67,0xea,0x8c,0x1e,0x50,0xcb,0x06,0xcd,0x61, +0x67,0x74,0xa3,0x3f,0x93,0xf8,0xaf,0x33,0x0e,0x4a,0xce,0x70, +0x5a,0xb0,0xb3,0x33,0xa4,0xd1,0x57,0x72,0x46,0x9a,0xe4,0x8c, +0x60,0x87,0xa3,0x36,0xc3,0xce,0xc8,0x1a,0x76,0x86,0x69,0x3b, +0xce,0x95,0x9c,0x31,0xcb,0xe6,0x2f,0x66,0x3f,0xf5,0x45,0x98, +0x8b,0xec,0x24,0x1f,0x6b,0xfd,0x67,0xcc,0xcb,0x84,0x97,0x69, +0x6a,0xb1,0xd4,0xcc,0x98,0x03,0x85,0x69,0xff,0xcb,0xcc,0xd4, +0x7f,0xcd,0xcc,0xa1,0x66,0x4e,0xf7,0xd6,0xb1,0xdb,0xbc,0x63, +0x6b,0x85,0x35,0xdf,0x77,0xa5,0xe5,0x6a,0x05,0x35,0xb3,0x7e, +0x3b,0x35,0x73,0x68,0x86,0x10,0x42,0x76,0x45,0x85,0x1c,0x0a, +0x3d,0xc4,0xc1,0xde,0x97,0x5d,0x4b,0xc1,0xc8,0x14,0x8d,0x66, +0x58,0xfc,0x8e,0xe7,0x59,0x8f,0x08,0x8f,0x48,0x2f,0x69,0x83, +0xba,0x3c,0xbe,0x2c,0xa9,0x5c,0x3a,0xab,0xbe,0x90,0x4d,0x31, +0x52,0xb9,0xcb,0x34,0xa5,0x51,0x54,0x06,0x9d,0x6c,0x41,0x62, +0x41,0x52,0x41,0x32,0x27,0xdc,0x83,0x02,0xea,0xab,0x89,0xfb, +0x25,0x5f,0x8d,0xf8,0xe0,0xab,0xe3,0x92,0xaf,0x46,0xd3,0x69, +0x43,0x7d,0x65,0x8c,0x93,0x91,0x65,0x13,0x6d,0x54,0x7e,0xfd, +0xc7,0x57,0xce,0xd8,0x2a,0x66,0xb1,0x70,0x4c,0xf2,0x95,0xf1, +0x4b,0x30,0x66,0x28,0xfe,0xa2,0xbe,0x32,0x5e,0x8a,0xc6,0xd4, +0x57,0x2e,0x21,0xc4,0xfa,0xaa,0xfb,0x8d,0xc0,0xdb,0x72,0x98, +0x94,0x09,0x33,0x62,0x60,0x19,0x57,0xde,0x8d,0x56,0x4c,0x7c, +0x43,0x9c,0x22,0xb6,0xdb,0xf6,0x3c,0x1f,0x39,0x6d,0x37,0xc5, +0xe3,0xf3,0xc3,0xba,0xc2,0x1a,0x82,0xda,0x9d,0xf6,0xf0,0x29, +0x3b,0x93,0x77,0x26,0x05,0xb9,0x1f,0x75,0x39,0xee,0x74,0x22, +0xa3,0x3e,0xa3,0x3d,0xa5,0x9d,0x83,0x35,0xed,0x38,0x51,0x02, +0x83,0x13,0x6d,0xde,0x32,0x14,0xf6,0x5b,0x86,0xbb,0x58,0x53, +0x5f,0x59,0xfd,0x1c,0x7b,0x37,0xfe,0xdb,0x14,0xb5,0x98,0x83, +0xe7,0x0f,0x9e,0x8f,0x28,0x4c,0xe6,0x8f,0x46,0x96,0x9a,0x26, +0xe7,0xa5,0x94,0x24,0x55,0xa8,0xc5,0x21,0x97,0x85,0xa3,0xaa, +0xa7,0xfb,0x6f,0x74,0xd6,0x33,0xdd,0x5a,0x61,0xc7,0x77,0x5c, +0xaa,0x1b,0x2c,0xbd,0x56,0xb4,0xad,0x5a,0xbf,0xd9,0x90,0x13, +0x7f,0x87,0x16,0x4a,0x6a,0x70,0xc4,0x43,0x18,0x23,0xc7,0x31, +0x7f,0x59,0x4d,0x43,0x62,0x0d,0x44,0x6b,0xaa,0xa8,0xfa,0xf7, +0x0a,0x9c,0x68,0x05,0x13,0x71,0x41,0x07,0x2c,0x00,0xd2,0x81, +0xe4,0x39,0xab,0x9c,0x4e,0xa1,0xf2,0x71,0x9c,0x18,0x81,0x1f, +0xfb,0xe0,0x48,0x5f,0x18,0x11,0xf1,0x8f,0x47,0x7e,0xdc,0x48, +0x70,0x94,0x19,0x8c,0x62,0x61,0x3d,0x8e,0x22,0xa6,0x30,0xaa, +0x97,0x81,0xe5,0xe2,0x7f,0x09,0x4d,0xd7,0x2b,0xf1,0xab,0x59, +0x92,0x93,0x9e,0x30,0xd5,0x19,0x1f,0x9c,0x74,0x51,0x72,0x92, +0xbf,0x30,0x91,0xe0,0xca,0x97,0xb0,0x92,0x11,0x23,0xf6,0x91, +0x1e,0xe4,0xcc,0x18,0x18,0x01,0x1c,0xe9,0x45,0xce,0x94,0x81, +0xa0,0xe3,0x04,0x56,0x2e,0xc5,0x95,0x34,0x73,0xff,0xf6,0x9a, +0xc0,0xba,0x97,0x3f,0xff,0x1e,0xf7,0x0b,0xcd,0x19,0x89,0xb3, +0x61,0x14,0x8e,0x02,0xed,0x65,0xc5,0xbd,0x3c,0xae,0x78,0xbc, +0xf4,0xdb,0xa0,0x1f,0x39,0xc8,0xef,0xc1,0x3a,0x58,0x0d,0x09, +0x3d,0x98,0x00,0x8b,0x0d,0x70,0x31,0xaa,0x31,0x29,0xb5,0x89, +0xb5,0x17,0xaa,0x4d,0xe3,0xf8,0xf0,0x25,0x5e,0x8b,0x65,0x1b, +0x3b,0xfd,0xf8,0xac,0xe2,0x8c,0xf2,0xb4,0x4a,0x0e,0x96,0xe0, +0x6a,0xcc,0x33,0x83,0x04,0x66,0xe7,0xd2,0xb5,0x9b,0x70,0xc1, +0x5a,0x6e,0x17,0x05,0xbc,0x56,0xdf,0xea,0xdf,0xb7,0x50,0xd8, +0x7b,0xf1,0x3d,0xb2,0x01,0xed,0x8e,0x0d,0x1c,0xf8,0x8a,0xfd, +0xff,0xb7,0xa5,0x2f,0xff,0x0a,0x9e,0x84,0xb2,0xa7,0xd2,0xbe, +0x49,0x4b,0x9f,0x04,0xd3,0xc0,0xa5,0x1b,0x5d,0x3e,0x08,0x9e, +0x8c,0x66,0xe3,0xeb,0x63,0xea,0xcf,0x55,0xc9,0x12,0xf8,0xc3, +0xf3,0x03,0xf1,0x0b,0xa7,0xf5,0xcd,0x9e,0x7c,0x76,0xed,0x45, +0x79,0x8a,0x82,0xa3,0x00,0x70,0x1a,0xb3,0xef,0x9b,0xfd,0xa7, +0xf6,0xab,0xa3,0xb3,0x19,0xc5,0x33,0xe1,0x38,0x7d,0x07,0x8e, +0xc4,0x05,0x38,0xb6,0xcc,0x42,0xaa,0xd6,0xfe,0xf2,0x1e,0x7c, +0x75,0x16,0xa6,0x71,0x31,0xcc,0x05,0x9c,0x7a,0x0d,0x27,0xc3, +0xfc,0x0f,0x82,0x27,0x9a,0x30,0x76,0x07,0x8c,0xd8,0x03,0x9a, +0x9c,0x18,0x24,0x6c,0x23,0x09,0xeb,0x1b,0x0c,0x1f,0xea,0x95, +0xca,0x79,0xdd,0xcb,0x2e,0x57,0xc2,0x07,0x39,0x3d,0x66,0xb7, +0x8e,0xed,0xfa,0xa9,0xd2,0x31,0xdb,0x3f,0x6e,0x0d,0x7c,0x97, +0xf2,0x8a,0x03,0xad,0x21,0x73,0xe2,0x72,0xc8,0xe1,0x90,0x5d, +0x34,0x07,0x2d,0x30,0xbb,0x0b,0x67,0xc3,0x98,0x77,0x9d,0x18, +0x2b,0xfb,0x89,0xa6,0xc9,0xd5,0x16,0xb0,0x1a,0x7b,0x59,0xb3, +0x68,0xd3,0xc3,0xe6,0xc7,0x12,0x8c,0x79,0xf8,0x32,0x0d,0x34, +0x0a,0xde,0x14,0x70,0x66,0x3f,0x92,0xf4,0xce,0xe4,0xde,0xf8, +0x4e,0xfb,0x44,0x3e,0xda,0x24,0x72,0xb8,0x49,0xf7,0x29,0xd0, +0x24,0xb9,0xb2,0xbc,0xf5,0x49,0x66,0x6d,0x69,0x7c,0x64,0xcf, +0xce,0xa7,0xa1,0x0a,0x4e,0x55,0xf9,0x1f,0xa5,0x25,0xc1,0x68, +0x20,0x26,0x48,0x70,0xed,0x87,0xbf,0x76,0x8b,0x3e,0x2b,0x2d, +0xde,0xcf,0xe9,0x5a,0xcd,0x88,0x19,0x70,0x84,0xe0,0x2a,0xd8, +0x0c,0xab,0xa4,0x87,0xff,0x9b,0xa5,0xff,0xb2,0x19,0xd6,0x32, +0x10,0x25,0x5d,0x6f,0xa6,0xd7,0x9b,0x19,0xd1,0x85,0x12,0x40, +0x4a,0x01,0x56,0x81,0x09,0x0b,0xa1,0x68,0x42,0xc0,0x04,0xd6, +0x22,0xbd,0x8e,0x02,0x13,0xe9,0xfd,0xcd,0xf4,0x7d,0xb1,0x4d, +0x3c,0x49,0x60,0x52,0xeb,0x1f,0x57,0xef,0x5d,0x73,0xa8,0xe6, +0x75,0xf4,0xe7,0x9a,0xe2,0x78,0x07,0x4e,0xa8,0x85,0xcf,0xc9, +0xaf,0x4e,0x30,0x66,0xc7,0x5b,0xfd,0xfa,0x56,0x7e,0x41,0x1f, +0xaa,0x5e,0x9f,0xd1,0xc0,0xa9,0xbe,0x37,0xf9,0x95,0x74,0x8a, +0xff,0x65,0xa3,0xbb,0xbc,0xf7,0x7b,0xed,0xf7,0x8c,0x50,0x83, +0x37,0x7f,0x75,0x4f,0x83,0x62,0x13,0x2c,0x9e,0x66,0xfe,0x97, +0x38,0x92,0x86,0x03,0x77,0xa9,0xfe,0xc8,0x9c,0x7f,0x57,0xf6, +0xb4,0xe4,0x61,0x35,0xe7,0xcc,0xde,0x12,0x2a,0x89,0xb8,0x46, +0x38,0x26,0xac,0xc1,0xb0,0xab,0x50,0xd9,0x8e,0x95,0x8f,0x4c, +0xd6,0x61,0x81,0x0d,0x14,0x6c,0x67,0x71,0x11,0xaa,0x92,0x5b, +0xc2,0xe7,0x9b,0x29,0x3f,0xd9,0x24,0x7e,0x7e,0x87,0x45,0xd5, +0xd1,0xc2,0xe7,0xda,0xe2,0xe7,0x0c,0x4d,0xae,0x27,0xc9,0xdd, +0xd0,0xd7,0x2e,0xb7,0xdd,0x0a,0xe5,0xbc,0x5e,0xed,0x82,0x9a, +0x4d,0x34,0x77,0x4e,0xa6,0x24,0xed,0xe7,0xfc,0xa7,0x75,0x3d, +0x4d,0x5e,0xb5,0xbc,0xad,0xc7,0x4a,0xd7,0x85,0xbb,0xe9,0x98, +0x78,0x61,0x36,0xe9,0x17,0xc7,0xc4,0xb2,0xf0,0x8d,0x30,0x73, +0x60,0xe8,0x8d,0x91,0x30,0x01,0xbf,0x61,0x8f,0x22,0x1a,0x03, +0xb0,0xfb,0x70,0xd6,0x72,0x1c,0x8b,0x5d,0x38,0xbd,0xcc,0x94, +0x87,0x47,0xb0,0xf8,0x2a,0x4c,0x48,0x82,0x59,0xd2,0xf4,0xc7, +0x59,0x37,0x71,0x02,0xfc,0x82,0x8b,0xcb,0xe8,0xfc,0xbf,0x09, +0xd3,0x97,0xc0,0xd8,0xbd,0xf4,0x5f,0x54,0x95,0x47,0xae,0x91, +0xce,0xf2,0xb6,0xba,0xea,0x7a,0x87,0x0a,0xde,0xc7,0xcd,0xc2, +0xc5,0xc2,0xc7,0xb9,0xca,0xbf,0x2e,0xac,0x95,0x83,0x1f,0x3b, +0xd0,0x11,0x3e,0x05,0x1d,0x39,0xea,0x7c,0x67,0xb2,0x12,0x0f, +0x49,0x2f,0xcb,0xad,0x61,0x39,0x7e,0x8a,0xce,0x4c,0xec,0xa3, +0xb3,0x6f,0x80,0x9d,0xa4,0xf4,0x80,0xb0,0xa1,0x5c,0x0c,0x63, +0xb0,0x37,0x0c,0x97,0xe9,0xe2,0x57,0xea,0x0a,0x9b,0xe6,0x57, +0xf9,0x3f,0xa4,0xc0,0x38,0x35,0x58,0x47,0x11,0x83,0xf5,0x31, +0xd9,0x31,0xd9,0xc9,0x0b,0x74,0x3a,0xae,0x48,0x81,0x95,0x59, +0x7f,0xe5,0x1c,0xeb,0xe6,0x4d,0x0f,0xea,0x1d,0xdc,0x40,0xa3, +0x6b,0x28,0xf0,0x6c,0x1f,0x4e,0xa7,0x91,0xe2,0x23,0xf0,0x36, +0xcd,0xed,0xe4,0x57,0xe4,0x6c,0x2d,0xb4,0x28,0xe7,0x7e,0x91, +0xf6,0x03,0x55,0x86,0x66,0x80,0x0a,0x2b,0x1c,0xc4,0x1f,0x08, +0xfd,0xc1,0x43,0xf0,0x29,0x65,0x0a,0x97,0x94,0x0f,0xc8,0xb6, +0x99,0xe2,0x28,0xdc,0xc6,0xe0,0x85,0x30,0xd4,0xdf,0x86,0xd3, +0xd4,0xbb,0x6c,0x54,0xee,0xc1,0xaa,0x1c,0x08,0x82,0xd8,0x49, +0xc0,0x28,0x8f,0xf4,0x89,0x5f,0xb0,0xce,0x38,0x92,0xe0,0x03, +0x3c,0x23,0x8e,0x19,0x50,0x08,0x21,0x56,0x03,0xc2,0xc7,0x58, +0x0b,0xea,0xf0,0xba,0x07,0x5f,0x4b,0xca,0xe9,0xe7,0xc4,0xa7, +0x04,0x5c,0x84,0x10,0x74,0xa1,0xdf,0x59,0xa3,0xf4,0x24,0x47, +0xdd,0x0e,0xb9,0x1f,0xa4,0xec,0x62,0xa7,0x0c,0xac,0x19,0x87, +0xc5,0xba,0x5a,0xb3,0x4c,0xca,0xac,0x79,0xe0,0x6e,0x3f,0xfb, +0xb9,0x03,0x54,0xb8,0xdf,0x18,0x05,0x72,0x3f,0xcf,0x03,0xa2, +0x27,0x49,0x05,0xb3,0x7d,0x5a,0xf7,0x6c,0x5f,0x73,0xb0,0xbf, +0x53,0xfc,0x84,0x49,0xae,0x4d,0xa8,0x8b,0x6d,0xf8,0x3b,0xf1, +0x8f,0xb4,0x67,0xd9,0xbb,0x15,0x3c,0x7e,0xe5,0x89,0xde,0x3b, +0xd1,0xf3,0x78,0xa2,0x8c,0xbf,0x7a,0xe6,0xc6,0xb9,0x1b,0x31, +0x9c,0xe8,0x70,0x99,0x5c,0xf2,0x52,0xb8,0x29,0x9c,0xca,0x9b, +0x79,0x9b,0x46,0xe3,0x46,0xe3,0x32,0x6e,0x25,0x56,0x91,0xcb, +0x1e,0x97,0xec,0x3b,0xed,0x2b,0x9b,0x79,0xdb,0xa6,0x2d,0x72, +0x7d,0x1a,0x5f,0x5e,0x8a,0x3f,0x93,0x64,0x73,0x8a,0xe7,0x86, +0x65,0x62,0x05,0x3d,0x13,0xd1,0x90,0x15,0x57,0x98,0x90,0x5b, +0x7f,0x77,0xc0,0xe4,0xe2,0x3f,0x2c,0xb2,0x78,0x5f,0x1c,0xed, +0x20,0x75,0x9b,0xe3,0x94,0xce,0x20,0x27,0x8d,0x46,0x97,0x51, +0xb5,0x78,0x65,0x47,0x21,0xef,0xf5,0xca,0x14,0x54,0xec,0xae, +0x70,0xb8,0xc3,0x9b,0x94,0xe9,0x55,0x22,0x93,0xb1,0xb8,0x33, +0x8b,0xdf,0xf3,0xa3,0x37,0x7c,0xe4,0x7d,0x9b,0xc3,0xa6,0xc3, +0x24,0x7c,0xbd,0xe3,0x3c,0xd9,0xc6,0x36,0x1f,0xbe,0xf3,0x41, +0xeb,0xdf,0x99,0x8f,0x28,0x84,0x6a,0x05,0x20,0x89,0xd6,0x4d, +0x69,0x11,0xd7,0xc3,0xaf,0xed,0xea,0x51,0x73,0xda,0x97,0x18, +0x9c,0x10,0x10,0xe7,0xaf,0xe6,0x7e,0xd4,0xf5,0xb8,0xcb,0x89, +0x9e,0x27,0x97,0x61,0x74,0x37,0x70,0xf6,0x05,0x7c,0x88,0x59, +0xa0,0x89,0xbf,0xd9,0xbe,0xac,0x7d,0x59,0x7b,0x33,0xcb,0xfb, +0x4b,0x6f,0xe5,0x5d,0xb1,0xcd,0xe6,0xc3,0x0c,0x83,0x0c,0x02, +0x65,0x9e,0x55,0xbc,0x9f,0x4b,0x93,0x53,0x8b,0x5d,0xad,0xa5, +0x5a,0x88,0xf3,0x4e,0xd7,0x5d,0xbe,0xdb,0x4e,0xf2,0x31,0x16, +0xcd,0x67,0x9b,0xcf,0x35,0x9f,0x57,0x93,0x8a,0x21,0x56,0xb3, +0x59,0x67,0xe9,0x9f,0x73,0x9c,0x72,0x86,0x30,0x86,0xb4,0x60, +0xaa,0x24,0xc7,0x75,0x1e,0xfd,0x59,0xcc,0x89,0x44,0x6b,0x4b, +0xe4,0xd5,0xdb,0xbc,0x54,0xba,0x60,0x6e,0x2a,0x98,0x41,0xe3, +0x24,0xd8,0xc8,0x0a,0xbb,0xc5,0xeb,0xa4,0x2c,0x2e,0x2d,0x4f, +0xa3,0x82,0xb5,0x4b,0x50,0x71,0xd0,0x65,0xf7,0x1c,0x3f,0x9f, +0xa1,0x51,0x07,0x9a,0x8d,0x78,0x50,0x01,0x5e,0x0d,0xe8,0xd5, +0x02,0xa6,0x10,0x2e,0xae,0xc4,0x70,0xd8,0x6c,0x8f,0x32,0x67, +0x90,0x59,0xa2,0x8f,0x13,0x4c,0x62,0x23,0xdc,0x9c,0x77,0x2e, +0x8d,0x4a,0x77,0xe6,0x61,0x64,0x9a,0xa2,0x21,0xf5,0x12,0x07, +0x9f,0xca,0x18,0xb7,0xf4,0xc8,0x1a,0x75,0x9c,0x27,0x6c,0x25, +0xf8,0x49,0x07,0x7c,0xc2,0x28,0xac,0x48,0x07,0xf0,0x56,0x2c, +0xf6,0x7a,0x10,0xf8,0x44,0x86,0x9f,0x30,0xa0,0xdb,0x49,0x80, +0x97,0x21,0xcf,0x88,0xb6,0x78,0x8c,0xc4,0x9b,0x9f,0xdf,0x71, +0xc6,0xa0,0x35,0x95,0xff,0xba,0xf7,0xf0,0xcd,0xc3,0x1d,0x1c, +0xee,0xc3,0x1a,0x52,0xf8,0x30,0xf5,0x5d,0xcc,0x4f,0x76,0x31, +0xfc,0xf1,0x15,0x07,0x96,0x07,0xad,0xa7,0x58,0x8e,0x7e,0xc6, +0xbf,0x05,0xfd,0x9f,0x98,0xad,0x41,0x2f,0x7b,0xf0,0xda,0x8e, +0x27,0xed,0x84,0xba,0x56,0x3c,0xc1,0x48,0xed,0x5f,0x37,0x12, +0x58,0x62,0x82,0x4b,0x30,0x66,0xf8,0xaf,0x45,0x66,0xaf,0x87, +0xac,0xfa,0x2e,0x41,0x8c,0x61,0x9f,0xd2,0xea,0x59,0x0f,0x3b, +0xb4,0xba,0x89,0x74,0x26,0x76,0x24,0xd7,0xa6,0x04,0x77,0xf0, +0xf3,0xbd,0x71,0x5e,0x90,0x66,0x74,0x92,0x05,0xdf,0x78,0xbe, +0xf3,0x42,0x57,0x02,0x87,0xeb,0x51,0xcf,0x0c,0xf4,0x70,0x23, +0x7e,0x25,0x4e,0xef,0xb9,0x0a,0xa5,0xf0,0x14,0xa7,0xc1,0x46, +0xd0,0xea,0x41,0x2d,0xe9,0xec,0x39,0xfd,0xee,0x33,0x94,0x1a, +0x9f,0x61,0x31,0xc6,0x9c,0xd0,0x8b,0x62,0x8c,0x61,0xc4,0x15, +0xe7,0x08,0x04,0x40,0x08,0x06,0xb0,0xaa,0xef,0x4d,0x95,0xd3, +0x08,0x1e,0x85,0xed,0x26,0xe2,0x26,0x5c,0x24,0x06,0xf6,0xf5, +0x42,0x93,0x69,0xbf,0x10,0x88,0x0e,0x60,0x09,0x47,0x99,0xa1, +0x77,0xe0,0x46,0x44,0x84,0x07,0x02,0xb2,0xa6,0x68,0x48,0xd0, +0x15,0x26,0x80,0x2b,0x83,0x57,0x47,0xd3,0xab,0x89,0xd2,0x95, +0x2b,0x7d,0x17,0x5c,0x71,0x1a,0xba,0x32,0xc2,0x5c,0xa9,0x07, +0x75,0x17,0x34,0x61,0x17,0x3b,0x94,0x84,0xa3,0x89,0x42,0xde, +0xf1,0xb8,0xf0,0x92,0x55,0x09,0x1f,0x66,0x69,0xbe,0xda,0xd6, +0x89,0x83,0x0b,0x30,0x87,0xd4,0x58,0xd7,0x6e,0x2b,0x30,0x97, +0x57,0xf2,0x3b,0xbb,0x1c,0x6f,0x7a,0x4a,0xc2,0x4c,0x55,0x30, +0x91,0x92,0xa2,0xc5,0x14,0x1c,0x2c,0x7e,0x08,0xc6,0x0a,0x34, +0x96,0xfa,0xe6,0xe9,0x5b,0x82,0xbe,0x16,0xce,0x17,0x55,0x61, +0xfe,0x0a,0x34,0xb2,0x00,0x23,0x9c,0xdb,0x0b,0x73,0xc1,0xbc, +0x8b,0xad,0x56,0x4e,0x21,0x66,0xc2,0x4c,0xea,0x19,0x3d,0x8c, +0x22,0x38,0x62,0x01,0x8c,0x60,0xe1,0x1c,0x8e,0x20,0x73,0x60, +0xc4,0x2f,0x8c,0x70,0x5f,0x7c,0x45,0x3c,0x61,0x9c,0x25,0xcc, +0x75,0xf8,0xd5,0x72,0x37,0x5f,0x64,0x50,0xbc,0xb6,0x70,0xcd, +0x9a,0xbd,0x0b,0xf7,0x2f,0x88,0xac,0x06,0x8d,0x5a,0x58,0x97, +0x0d,0x63,0x38,0x48,0xec,0x15,0x03,0x4d,0x61,0x01,0x13,0x8a, +0x5f,0xb8,0xe0,0x46,0x77,0x54,0x0b,0x39,0x19,0x72,0x32,0xf4, +0x6b,0x49,0xf8,0x53,0x33,0x15,0x96,0xe4,0xc1,0xe7,0x25,0x09, +0xfe,0xf1,0xfe,0x71,0x81,0xdc,0x50,0xaa,0xe0,0x4c,0xde,0x20, +0xb3,0x80,0xa1,0xe8,0x84,0x21,0xbf,0x20,0x33,0x87,0x51,0x7d, +0xa2,0x1c,0x4f,0xc4,0xd9,0xf0,0xb3,0x30,0x1b,0x67,0x5d,0x85, +0xe5,0xed,0xb8,0xfc,0x9e,0x85,0x0e,0xea,0xd8,0x80,0xce,0x76, +0x16,0xca,0xcf,0x12,0x31,0x43,0x98,0x2e,0x64,0xa0,0x13,0x9b, +0x52,0x9e,0x58,0x11,0x5f,0xc6,0x81,0x63,0xa7,0xe8,0x2d,0x03, +0x0f,0xe6,0x90,0x5f,0x94,0xcf,0x7e,0x2f,0x4e,0x3c,0x4d,0x83, +0xfb,0x0d,0x88,0xdc,0xc2,0x82,0x2c,0x80,0xbc,0x83,0xca,0x59, +0xec,0x90,0xdd,0x2a,0x72,0x13,0x22,0xf5,0x58,0x61,0x67,0x19, +0x99,0x81,0x95,0xbf,0x4b,0xe5,0xc1,0x0b,0xc9,0x6d,0x88,0xd4, +0xa5,0xff,0xe9,0x94,0xa4,0x15,0x34,0x0a,0x2b,0x19,0x31,0xe9, +0x1c,0xb1,0x12,0xe6,0x76,0xb0,0xe2,0x78,0xbc,0x40,0x7a,0x2b, +0x2f,0x0d,0x14,0x37,0xb8,0x56,0xf0,0xc1,0x6e,0x06,0x26,0x96, +0xfe,0x9c,0xa0,0x93,0x4a,0x02,0x2a,0x2c,0xda,0xdd,0x0b,0x3d, +0x3d,0xf9,0x7a,0x3f,0x85,0x75,0x89,0x77,0x4a,0x2a,0x9f,0xe7, +0x7d,0xb7,0xba,0xb7,0xa5,0x55,0xa1,0xe6,0x54,0xee,0xe5,0x62, +0xe7,0x61,0x1e,0xa0,0x06,0x35,0x77,0x89,0xc2,0xf7,0x86,0x55, +0xbb,0x5d,0x45,0x03,0x6f,0xd7,0xbc,0xad,0x45,0x56,0xce,0xa9, +0x0a,0x19,0x42,0x3e,0x81,0xcf,0x85,0x09,0x3d,0xe2,0x04,0x50, +0xdd,0x81,0xdd,0x28,0xc7,0x2e,0xa5,0x2e,0xd0,0xbb,0x39,0x82, +0x66,0x1c,0x30,0x12,0xe4,0x68,0xc4,0x1e,0x44,0x35,0xd2,0xb8, +0xbd,0x7e,0x4b,0xb9,0xd6,0x40,0x01,0xef,0xf9,0xc4,0xf1,0x96, +0x53,0x37,0x37,0x64,0x8b,0xdf,0x90,0x2b,0xb7,0x9b,0xee,0x16, +0xdd,0x31,0xcb,0xe6,0x03,0xb6,0x3a,0x6e,0x36,0xd8,0xc1,0x09, +0x71,0xb0,0x8d,0xe4,0x6d,0xcb,0xd2,0x4b,0xd1,0xbe,0x9a,0xc2, +0xef,0x7b,0xb8,0xeb,0xe6,0xce,0x41,0x0e,0xb3,0x23,0x48,0xd2, +0xe6,0xb8,0x1d,0xe7,0xd7,0x0e,0x5e,0xe0,0x8f,0x3f,0x89,0xbe, +0x1e,0x21,0xd5,0x1e,0xa4,0x0e,0x1f,0xec,0x1c,0x96,0x7a,0x62, +0x86,0xa5,0x9e,0xca,0x8a,0x4b,0x6b,0x4a,0x3e,0x48,0x3d,0x8d, +0x63,0xab,0xef,0x97,0x7e,0x9f,0xfd,0x0b,0x97,0x6d,0x4f,0x4c, +0x85,0xab,0xbd,0x6c,0xeb,0xd0,0x25,0x0a,0xfc,0xc6,0x69,0xc3, +0x5c,0xe3,0x1f,0x2d,0x03,0xf9,0x4a,0x8b,0x3a,0xed,0x5a,0x2d, +0x64,0xc3,0x70,0x4a,0x38,0x6a,0xd0,0x45,0x3f,0xae,0x0f,0x36, +0x55,0xc1,0xa7,0x1c,0xbc,0xef,0x1f,0x52,0x37,0x86,0xdd,0x8c, +0x17,0x8e,0x33,0xc4,0xed,0x96,0xf8,0xa9,0xef,0x49,0xbf,0x93, +0x7e,0x5f,0xc7,0x1b,0xf1,0xe0,0x94,0x06,0xde,0x45,0xb0,0xba, +0x3c,0xdd,0x3b,0xcd,0x27,0xc5,0x8f,0x9a,0x5e,0x08,0xc7,0xc8, +0x02,0x98,0x78,0xbb,0x5d,0x17,0x54,0xac,0x50,0x65,0xc9,0xf0, +0xab,0x1e,0x73,0xba,0xe5,0x74,0x47,0xcf,0x24,0x78,0x09,0xa1, +0xa2,0x3a,0xba,0x33,0x98,0x7c,0x1c,0x9d,0x36,0xe0,0x7a,0xf5, +0x66,0xd7,0xca,0x07,0x39,0x0f,0x93,0xfe,0x56,0x13,0x3e,0x63, +0xe2,0xe0,0x28,0xb9,0x7c,0xbd,0xe8,0x1e,0x8c,0x9d,0xd4,0x0b, +0xea,0x34,0x49,0x98,0xa4,0x87,0xf7,0xa9,0xd7,0x31,0xb5,0xf1, +0x19,0xc3,0x9a,0x4d,0xb6,0x19,0x2a,0x38,0xcf,0x87,0xdd,0x75, +0x54,0x2a,0xca,0x8c,0xc5,0xd3,0xd3,0x59,0x1c,0xbd,0xd7,0xd2, +0xc2,0x44,0xdd,0x42,0xe2,0x80,0x63,0xb1,0x08,0xc6,0xb2,0xca, +0xdc,0xa1,0x14,0xa2,0x5b,0x61,0xd2,0x60,0xdb,0x32,0x70,0xbb, +0xf6,0x49,0xd6,0x73,0xae,0x19,0xff,0x2b,0x03,0x39,0xbb,0xdf, +0xc0,0x67,0x87,0x8d,0xb1,0xbd,0xc2,0xa3,0xcf,0xbf,0xdf,0x3a, +0x94,0xaf,0xd8,0x5a,0xa7,0x2f,0x37,0xb5,0xb2,0xde,0xee,0xa4, +0xe5,0x5b,0x60,0xc5,0x3f,0xab,0xbc,0xd5,0xd2,0xdd,0xa9,0xb0, +0xbe,0xec,0x70,0xdf,0x9d,0x1b,0xda,0x0c,0x37,0xc8,0x3a,0xe6, +0x5c,0xcd,0xd9,0xfa,0x33,0x2d,0xdc,0x2d,0x06,0x66,0xe0,0x44, +0xb2,0x04,0x26,0xbe,0x62,0xa2,0xf0,0x14,0x29,0x72,0x2f,0x33, +0xba,0x68,0xdb,0x92,0xcf,0x87,0xf6,0xfb,0xc8,0x83,0xab,0x38, +0x0c,0xa7,0x00,0xa8,0xad,0xa7,0xf1,0xd9,0xc5,0x01,0x9b,0x8b, +0xfc,0x7e,0x73,0xc7,0xb5,0x0e,0x36,0xf4,0x4e,0x1c,0x54,0x3a, +0x11,0xaf,0x5a,0xe7,0x5a,0xa7,0x4a,0x5f,0x57,0xbe,0xd9,0xbd, +0xc2,0xab,0xc6,0x85,0x13,0xb6,0x88,0xe6,0x64,0x35,0x2c,0xb8, +0xd6,0xba,0x8d,0xe6,0x0d,0x54,0xf9,0xf0,0x6a,0xc4,0x9c,0x69, +0xfc,0xa6,0x4d,0x31,0x09,0x9a,0x29,0xc6,0xfa,0x45,0x4a,0xe9, +0x77,0xf6,0xe3,0x02,0x1d,0x9c,0xa5,0xde,0xe0,0x5d,0x7b,0x2f, +0xf7,0x5e,0xca,0xef,0x6a,0xf0,0x84,0xf9,0x45,0xb8,0x49,0x5e, +0x61,0x20,0x23,0xcb,0xd9,0x5b,0xa7,0x5e,0xca,0x94,0xa4,0x24, +0x35,0x6b,0x3c,0x62,0x9d,0xd2,0x54,0xf0,0xa3,0x10,0x76,0xff, +0xf1,0xb3,0x99,0x1a,0x90,0x89,0x36,0x0b,0xd9,0xa9,0x91,0xa6, +0x76,0x26,0xea,0xd5,0x1e,0x2a,0x1d,0xd7,0xb2,0xa4,0x4e,0x87, +0xb8,0xae,0x91,0xe0,0x97,0x78,0x02,0xbe,0x64,0xe7,0x60,0x1b, +0x71,0x6f,0x32,0xeb,0xb2,0xac,0xf1,0x76,0xe3,0xdb,0x5c,0x15, +0xd6,0x0d,0xf6,0x9c,0xf2,0x2b,0xbc,0x4b,0x7a,0x1f,0x94,0xbf, +0x4c,0x7a,0xcb,0xb5,0xa0,0xdc,0x1a,0xbe,0x66,0x23,0xb5,0x82, +0x75,0x1d,0x0d,0xdc,0xfa,0x82,0xae,0xee,0xbd,0x69,0x17,0xce, +0x67,0xae,0x2f,0xdb,0xd8,0xb2,0xcd,0xcd,0xc9,0xda,0xcd,0xd0, +0xa7,0xc0,0x8e,0xbf,0x5c,0xa1,0xa8,0x6f,0x68,0xa9,0x76,0x6c, +0x76,0xed,0xf4,0x2e,0x6e,0xe5,0x2d,0xcb,0x1c,0x6b,0xbc,0x1a, +0x38,0xd1,0x0a,0x26,0x11,0x5d,0xe6,0x5c,0xe3,0xb9,0xb6,0x33, +0xdd,0xdc,0x25,0x06,0x3e,0xc6,0x05,0x64,0x1b,0xb5,0x94,0xc1, +0xd7,0x1b,0x49,0x28,0xaa,0xf8,0xe1,0x58,0x8b,0x59,0x2d,0xde, +0x7c,0x3f,0x8c,0xae,0x06,0xf5,0x8c,0xdf,0x39,0x20,0x28,0x92, +0xda,0x9e,0xd2,0x07,0xa9,0x83,0x0e,0xa9,0xfc,0x01,0xe3,0x00, +0x3d,0x4f,0x2b,0x49,0x8c,0x75,0x0d,0xc9,0xb5,0xcf,0x32,0x4d, +0x35,0x6d,0xca,0xe3,0x23,0x3a,0x77,0xf5,0x86,0x36,0x71,0xaa, +0x3f,0x6e,0x25,0x83,0xf7,0x95,0x1b,0x36,0x0c,0x2a,0x7f,0x1c, +0xea,0x60,0x84,0x91,0xf8,0x37,0x41,0x05,0x45,0xc3,0x0a,0xe6, +0x32,0xb6,0x10,0x7a,0x71,0x03,0x5b,0x58,0x71,0x9c,0x19,0xc1, +0x1e,0xfa,0x7e,0x0f,0x2b,0x8c,0x98,0x40,0xdf,0xea,0xc1,0x1b, +0x8c,0x74,0xfa,0x8e,0x12,0x3f,0x77,0x78,0x2b,0x49,0xf7,0xf9, +0x88,0x73,0x7a,0x85,0xb1,0xed,0x43,0x15,0x36,0x80,0xa6,0xa2, +0x1a,0xfa,0xf4,0x51,0x0e,0xf2,0x18,0xdd,0x59,0xcc,0x82,0x15, +0xc4,0x01,0x3c,0x9a,0x59,0xd0,0x9f,0xe0,0x00,0xa1,0xcd,0xac, +0x38,0x07,0xa7,0x91,0x66,0xf4,0x70,0x60,0x05,0x61,0x42,0x33, +0x86,0x3a,0xb0,0x20,0x17,0xbd,0xe9,0x0f,0x30,0xae,0x51,0xf1, +0xd5,0x1a,0x4d,0xf0,0x00,0x06,0x87,0x8c,0xc4,0x51,0xfd,0x9d, +0x70,0x4e,0x8f,0xb5,0x2a,0x08,0x1d,0x50,0x87,0x97,0x4c,0x75, +0x6a,0x7a,0x99,0x06,0xa5,0x54,0x86,0x29,0x2a,0xe2,0x6a,0x58, +0x44,0xf0,0xdc,0x43,0x38,0xc7,0xf4,0x69,0x91,0x87,0x90,0xaa, +0xc5,0x8a,0x37,0xed,0x09,0x9c,0x5b,0x85,0xe7,0x18,0xb8,0xfc, +0x8c,0x40,0xea,0x2a,0x4c,0xa5,0x1c,0x73,0x44,0x2c,0x41,0x4f, +0x26,0x30,0x3a,0xbe,0x40,0x03,0x52,0xe1,0x20,0xd4,0xe0,0x2b, +0x18,0xcf,0xc2,0xa4,0x24,0x50,0x4d,0x87,0x8f,0xb2,0x43,0xba, +0x79,0x74,0xb0,0xc7,0x8a,0x3d,0x28,0xff,0x5a,0x6a,0x1d,0x49, +0x4e,0xc3,0xe7,0xe7,0x81,0x8b,0xe3,0xf0,0x33,0xbc,0x8b,0x35, +0xe0,0xc1,0x1e,0xc1,0x79,0x06,0x4b,0x30,0x72,0x4d,0x09,0x45, +0x9e,0x7b,0x1f,0xfd,0x06,0xa3,0xe2,0xc0,0x82,0xa3,0x84,0x23, +0x97,0x31,0xca,0x0d,0x1d,0x54,0x87,0x40,0xa6,0x35,0x33,0xb3, +0x59,0xe3,0x0f,0xd6,0x30,0x5d,0x45,0x5c,0x21,0xe9,0xc2,0x6f, +0xa6,0xac,0x6b,0x33,0x2b,0xbc,0x92,0x40,0x7c,0x3e,0x05,0xf1, +0xf9,0x34,0x54,0xe0,0x43,0xd2,0xe6,0xd7,0xed,0x56,0xe9,0x5e, +0xd3,0xc8,0x7b,0x56,0x1a,0x35,0x3b,0xe6,0x53,0x88,0xea,0x24, +0xd8,0xd1,0x74,0xdb,0x8f,0xfe,0x70,0x55,0x1f,0xaf,0xa2,0x9b, +0x31,0xb8,0x89,0xeb,0x31,0xc6,0x58,0xe8,0xec,0xc7,0xa3,0x8c, +0x78,0x2d,0x92,0xfc,0x09,0x27,0x94,0x53,0xb0,0x77,0xe8,0x18, +0x0b,0x5f,0xc3,0x6a,0x82,0xfa,0x42,0x11,0xe8,0x53,0x0a,0x18, +0x2e,0x9c,0x21,0xef,0x7a,0x66,0x7d,0x38,0x6f,0xfc,0xb1,0x19, +0x9d,0x0e,0xc8,0xb8,0x46,0x38,0x1f,0x74,0x3c,0x28,0x9d,0x37, +0xfe,0xb8,0xf2,0x6d,0xc5,0xeb,0xc6,0xe8,0x1e,0xde,0x7d,0x9f, +0xfb,0x3e,0xd7,0x03,0x9c,0xd2,0x47,0x18,0x4b,0x70,0x13,0xd3, +0x77,0x4d,0xfe,0xa0,0xe9,0x07,0xdb,0x3c,0xde,0x46,0xd3,0x68, +0x85,0x9e,0x2e,0xb7,0x0d,0xc6,0xc3,0xba,0x0e,0x5c,0x07,0xa3, +0x4d,0x71,0x34,0x6e,0xb4,0x82,0x8d,0x38,0x1e,0xdd,0x65,0x50, +0xc8,0x2c,0xdf,0x30,0xdb,0x64,0x9a,0x43,0x9e,0x15,0x9f,0x9f, +0x94,0x9f,0x9c,0x97,0xcc,0x89,0x6c,0x4f,0x37,0x0c,0x9a,0xf7, +0x0a,0x56,0xa8,0x60,0xdb,0xcb,0x9b,0xab,0x1b,0xea,0x39,0xa9, +0x0f,0xf2,0x0e,0xac,0x90,0xe4,0x48,0x06,0x25,0x39,0x92,0x41, +0x9a,0x53,0x07,0x29,0xa4,0x1d,0xa4,0x5e,0x67,0x81,0x25,0x5d, +0x28,0x7e,0xdf,0xc1,0x76,0xa6,0x64,0xb4,0x6a,0x50,0xe6,0x97, +0xda,0x81,0xa9,0x77,0x61,0x4e,0x23,0x5b,0x13,0xde,0x14,0x2e, +0xdf,0x93,0xd3,0xc1,0xe3,0xf6,0xab,0x8b,0xfa,0x9d,0x6e,0x71, +0x16,0x8c,0xd3,0xe6,0x35,0x46,0xb8,0x7d,0x5b,0x9e,0x0d,0xdf, +0x91,0xd9,0x94,0x59,0x9d,0xc9,0x39,0xc0,0x9c,0x8d,0x98,0x6c, +0x05,0xc9,0xb8,0x7c,0x2a,0x9b,0x62,0xaf,0xe2,0xbf,0x14,0xdf, +0x5a,0xd0,0x49,0xf6,0x91,0xb8,0xd4,0xe2,0xfd,0xe4,0x2e,0x71, +0x13,0x7c,0xc4,0x60,0x88,0x20,0x12,0xcb,0xea,0xad,0x15,0xc6, +0xf9,0x81,0x0e,0xfc,0x60,0x50,0xbf,0x7f,0xb7,0x07,0x07,0x3f, +0xc1,0x18,0x92,0x65,0xa4,0x70,0x78,0xe9,0x20,0xd5,0x28,0x7e, +0xd7,0xdc,0xde,0x92,0xd5,0xcf,0xe1,0x8f,0xb8,0x97,0x98,0xd6, +0xe8,0x97,0x1b,0x14,0xf9,0x39,0xf0,0x57,0x03,0xba,0x02,0xaf, +0x38,0x73,0x11,0xb6,0xc4,0x59,0x4f,0x7f,0x8d,0x91,0x55,0xb3, +0x33,0x3f,0xd8,0x37,0xf8,0xb4,0xfe,0x0e,0x65,0x83,0x47,0x89, +0x87,0x8d,0xa9,0xd5,0x36,0xd7,0x4a,0x7b,0x7e,0xa0,0xfa,0x6a, +0x4f,0xd3,0x65,0x0e,0x62,0x0f,0x91,0x4b,0xce,0x5d,0xf6,0xad, +0xa6,0x75,0x0d,0xbc,0x75,0x9f,0xa1,0xdc,0xa2,0x92,0x46,0xe1, +0x95,0xca,0xaf,0x08,0xee,0x60,0x92,0x07,0x13,0x2f,0xc5,0x75, +0x1b,0xc6,0xf0,0x47,0x2c,0xa2,0x76,0x44,0x6c,0xe5,0x70,0x9c, +0x09,0x8c,0x62,0x76,0x69,0x06,0x4e,0xf7,0x5d,0xab,0xf0,0xea, +0xf0,0x50,0x38,0x3b,0x6e,0x34,0xde,0xba,0x4e,0xbf,0xca,0x8a, +0x7f,0x7c,0xfd,0xca,0xad,0xb6,0xc7,0x8d,0x9e,0x4d,0x6e,0x2d, +0x0e,0x55,0x72,0xde,0xa6,0xc5,0xbe,0xde,0xa1,0xba,0x07,0x54, +0xca,0x80,0x4f,0x86,0xb5,0x9c,0x50,0x4d,0xe9,0x9c,0xd8,0x65, +0x4a,0x91,0x4a,0x30,0xae,0x30,0xa0,0xc4,0xee,0x13,0x5c,0x40, +0x3f,0x56,0x50,0x99,0x57,0x95,0x53,0x4b,0xfd,0xdf,0x7b,0x1d, +0x4a,0xb6,0xf6,0x09,0x99,0x78,0x87,0xad,0x7c,0x9e,0xff,0x63, +0xda,0x6f,0x1c,0x34,0x32,0x43,0x1d,0xe2,0x12,0x52,0xf0,0x28, +0xf7,0x75,0x16,0x25,0xfd,0xd2,0x81,0xb4,0xc9,0xc1,0xc8,0xd9, +0x68,0xba,0x95,0x78,0x16,0x7a,0xe6,0x71,0xc2,0x5a,0xbc,0x48, +0x68,0x4a,0x28,0xc1,0x97,0xd2,0x69,0x64,0xa9,0xa0,0x28,0x80, +0x19,0x68,0xe8,0x6c,0x6d,0x51,0x38,0x97,0xf0,0x26,0x5b,0xf4, +0x4c,0xd7,0xd9,0x72,0xb3,0xbf,0x07,0xfb,0x66,0xb4,0x7f,0x20, +0x8c,0x02,0xe7,0xa1,0x74,0x4a,0x80,0xf0,0xc7,0x50,0x5c,0xb5, +0x19,0x55,0xd5,0x5b,0x6d,0x55,0xbe,0x83,0x99,0x39,0xa0,0x05, +0xff,0x9d,0x04,0xb5,0xda,0xe8,0xe6,0x00,0x6e,0xcb,0x31,0xc9, +0x96,0x06,0xcb,0x69,0x56,0xf8,0xa9,0x1b,0xaa,0xf9,0x67,0xda, +0xf1,0x0d,0x09,0x0d,0x89,0xf5,0xd2,0xd3,0xb3,0x9e,0x36,0x41, +0xd3,0xb6,0x0f,0x7e,0xc4,0xf7,0xac,0x22,0xbb,0x3d,0xaf,0xa5, +0x90,0x83,0x26,0x66,0xa6,0xb0,0x84,0x2c,0x18,0x9a,0xf6,0x86, +0x05,0x0f,0xf1,0x2f,0x72,0x53,0xd0,0xd4,0x63,0x45,0x4d,0x47, +0x22,0x68,0x6a,0x8b,0x9a,0x52,0x29,0xa4,0xf2,0x7b,0x62,0x39, +0x43,0x77,0xf5,0xd2,0xed,0x95,0xd6,0xfc,0x4f,0x77,0xee,0xbf, +0xed,0xfb,0x9b,0xde,0xc2,0x21,0x05,0xf9,0x9a,0x46,0xaa,0xb8, +0x1e,0x8c,0x83,0x75,0x50,0x27,0xed,0x65,0xcc,0x87,0xd8,0x1e, +0x8c,0x85,0x59,0x46,0x38,0x0b,0xcf,0x9b,0xc1,0x79,0x9c,0x8f, +0x65,0x66,0x50,0x26,0x2e,0x65,0x66,0xe5,0x39,0xbf,0x04,0x8d, +0x49,0x57,0x8d,0x28,0x11,0x5d,0xe1,0xa6,0xbf,0xdc,0x50,0xbd, +0xc0,0xfc,0xf5,0x95,0xa2,0xbe,0x18,0x18,0x25,0x1d,0x5d,0x1b, +0x19,0x33,0x30,0x03,0xb4,0x26,0x43,0x0d,0x13,0xdf,0xab,0x32, +0xb4,0x46,0xf8,0x95,0x58,0xcd,0x58,0x82,0x63,0xe6,0xeb,0x96, +0x5a,0xf2,0x35,0x25,0x25,0x45,0x79,0xc5,0x9c,0x48,0xdd,0x7a, +0x96,0xad,0x68,0x2c,0x53,0x94,0x74,0x53,0x22,0xaa,0x05,0x09, +0x04,0x0f,0x86,0xa8,0x08,0xbf,0x6e,0x13,0x81,0x15,0xaf,0x1a, +0xc6,0x19,0x08,0x3d,0x83,0x2a,0x18,0x75,0x0d,0x8e,0xb3,0x70, +0xb4,0x40,0x45,0x9c,0x2c,0x68,0x90,0x4d,0x97,0x71,0xec,0xa3, +0xa5,0xf5,0x5e,0x96,0xfc,0x8f,0x0e,0xa0,0xa2,0x7d,0xdb,0x90, +0xdb,0x8c,0xba,0x44,0xe7,0x12,0x7e,0xf9,0x68,0x69,0x9d,0xb7, +0x8c,0x7f,0xed,0x08,0x9f,0x6c,0xb8,0x6f,0x48,0x13,0xd5,0x0b, +0xc1,0x8b,0x1c,0x4a,0x39,0x72,0x36,0x32,0xea,0x60,0x24,0x7f, +0x8c,0xa2,0xd2,0x19,0x3d,0x38,0xe3,0xc3,0x03,0x55,0x6d,0x33, +0x58,0xc6,0x44,0xe0,0x67,0x8e,0x38,0x85,0x46,0x08,0x8d,0x7a, +0x7b,0xa9,0x9d,0x50,0x15,0x8c,0x88,0xfd,0x8d,0x8b,0x15,0xab, +0xfb,0x84,0x33,0xd2,0x41,0xc2,0x73,0xc7,0xd5,0xff,0xc2,0x65, +0xb5,0xb5,0x2a,0x50,0x00,0x1a,0xff,0xfb,0x70,0xd1,0xd5,0x8f, +0xc7,0x68,0x2c,0xfe,0x46,0x18,0x4f,0xe0,0x32,0xcc,0x81,0xc9, +0x72,0x9c,0xfc,0xcc,0x74,0x15,0x5a,0x3d,0x33,0x5b,0x85,0x5f, +0x02,0x23,0x5c,0x53,0x60,0xe9,0xf7,0x26,0xcb,0xb1,0x01,0x65, +0x0c,0x96,0x86,0xa3,0xa9,0x0e,0x6a,0xa8,0x77,0xf8,0x3c,0x80, +0xb9,0x39,0x60,0x78,0x1a,0xca,0xd4,0xe0,0x4b,0x06,0xbd,0x60, +0x33,0xb1,0x6b,0x34,0x6d,0x32,0x93,0x4a,0x4a,0xfb,0x3c,0xe5, +0xae,0x72,0x47,0x2e,0x06,0xdd,0x89,0x6d,0xeb,0x16,0x85,0x7e, +0x8d,0x97,0x03,0x7f,0xd9,0xed,0x92,0x6d,0x97,0x0d,0x47,0x21, +0xc8,0x38,0x32,0x07,0xad,0x7e,0x61,0x85,0xe9,0x62,0x1d,0x59, +0x94,0xa1,0x55,0xb0,0xbd,0xe2,0x6e,0x7b,0xef,0xe5,0xea,0xfb, +0x5c,0xa3,0x78,0xc0,0x52,0x58,0xce,0x7a,0x9b,0x59,0xdb,0x6c, +0x73,0x35,0xac,0xb5,0x6e,0x71,0x95,0x3b,0xf8,0xf3,0xf5,0xb2, +0x56,0xc7,0x2e,0x77,0x3d,0xef,0xd5,0xc1,0x0b,0xc2,0x33,0x2d, +0x79,0xf8,0x28,0xf7,0x4d,0xd9,0xa3,0x86,0x6f,0x1d,0x5f,0xf9, +0xfd,0x19,0xc6,0x0d,0x45,0x0b,0xa3,0x49,0x00,0x8e,0x72,0xc1, +0x31,0xfa,0xb3,0xe5,0x1e,0xfc,0x35,0x18,0xd1,0x0a,0x93,0xf3, +0xfe,0xe0,0x54,0xef,0x09,0x9f,0x13,0xe0,0x3a,0x9e,0x5f,0xba, +0x74,0x83,0xb3,0x82,0xeb,0x72,0x76,0xc0,0xe0,0xb9,0x31,0x8c, +0x31,0x2e,0x91,0xf3,0xa6,0x85,0xb6,0x85,0xce,0xc5,0xf2,0xca, +0xc6,0xa6,0x9a,0x16,0x87,0x32,0xde,0xc3,0xd6,0xd6,0xce,0xc1, +0xdf,0x2f,0x3f,0xb8,0x60,0x57,0x61,0x77,0x75,0x6b,0x47,0x55, +0xb3,0x43,0x29,0xef,0xe7,0x64,0x6b,0xef,0xe8,0x1b,0xd8,0x1c, +0xde,0x1a,0xd5,0x61,0x7a,0x88,0xbf,0xb8,0xb4,0x7a,0xed,0xed, +0x0d,0x1c,0x4d,0x31,0xf2,0x9e,0xf2,0x4b,0xd9,0x83,0x14,0xb8, +0x64,0xc9,0xc0,0x89,0xdd,0x65,0xe6,0x67,0xed,0x68,0xef,0x50, +0x69,0x50,0x67,0x55,0xe4,0xed,0xc4,0x37,0xec,0xba,0xec,0xd6, +0xe6,0x69,0xed,0xac,0xef,0xbe,0x8a,0x86,0x93,0xf9,0xc7,0x09, +0x9e,0x17,0x94,0x70,0x9e,0x15,0x9b,0xd1,0x8a,0xc0,0x14,0xe1, +0x00,0x4e,0x61,0x57,0x1a,0x91,0x50,0x4b,0x3f,0xd3,0x00,0x17, +0x4e,0x8c,0x37,0x7e,0xff,0x49,0x3f,0xfd,0xce,0x82,0xda,0xbc, +0xa6,0x9c,0x26,0x0e,0x6f,0x6b,0x92,0xb0,0xc6,0x5d,0x75,0xc1, +0x55,0x16,0x21,0x7c,0x85,0xdd,0x45,0x9f,0x0c,0x49,0x94,0x4d, +0x2a,0x04,0x80,0x44,0x05,0x26,0x3e,0x34,0xd6,0xc2,0xaa,0x87, +0x26,0x5a,0x78,0xc2,0x12,0x4e,0xe8,0x76,0x32,0xdb,0x56,0x2f, +0xd7,0xc3,0xc9,0xdb,0x4a,0x6d,0xf9,0xc2,0xe4,0x82,0xd4,0xbc, +0x54,0x0e,0xed,0xe8,0x88,0x22,0x71,0xd4,0xac,0x2d,0xe8,0xea, +0x92,0x65,0xce,0x83,0x57,0x23,0x4c,0x7a,0x9a,0x04,0x0b,0x38, +0x50,0xa5,0x01,0x7c,0x7b,0x6e,0xd8,0xb5,0x61,0x99,0xf7,0x8c, +0x8c,0x1a,0x8d,0xdf,0xa4,0x47,0xf8,0xf8,0x05,0x86,0xb2,0x9e, +0x87,0xe3,0xcb,0x35,0x60,0x0d,0x9c,0x85,0x63,0x94,0x40,0x35, +0x95,0xd5,0xd7,0xe4,0x56,0x73,0x0d,0xf8,0x84,0x4d,0x4a,0x4b, +0x4a,0x4b,0x48,0x37,0x4d,0xe3,0x77,0x7a,0xab,0x5c,0x85,0x2a, +0xed,0x7e,0xd6,0x6e,0x23,0x09,0xf4,0x72,0xf1,0x71,0xf0,0xa7, +0xf4,0x99,0x69,0x2c,0xad,0x29,0x2b,0xa3,0x0c,0x7d,0x1c,0x2e, +0x91,0x8e,0xa5,0x9e,0x86,0xaf,0x58,0xe8,0x95,0x0a,0x7e,0xbf, +0x82,0x0c,0xfc,0x8a,0xad,0xa2,0x33,0xda,0xa3,0x4c,0x56,0xe1, +0x92,0xe5,0xed,0xc9,0x37,0x87,0x28,0x3c,0x2b,0x02,0xe8,0xfa, +0x30,0x13,0xa4,0x16,0xc3,0x2b,0xd9,0xee,0xeb,0xad,0x0f,0xeb, +0x5f,0xdb,0xe6,0xf0,0x8e,0x9a,0xa6,0xcb,0x77,0x6c,0xe2,0xcc, +0x69,0x32,0x99,0x2f,0xc7,0xf9,0xa0,0x62,0x8a,0x2a,0xb8,0xc8, +0x1a,0x16,0xd1,0x64,0x62,0x2c,0x83,0xd3,0xcc,0x6a,0xad,0xf9, +0x46,0xb3,0xec,0xf3,0xac,0xf9,0xa2,0xd4,0xa2,0xd4,0x82,0x34, +0x4e,0x1c,0xd3,0xdd,0x0d,0x65,0x34,0x99,0x58,0x62,0x15,0xdb, +0x52,0xd1,0x50,0x5d,0x5b,0xcf,0x0d,0x69,0xc2,0x2d,0x32,0x34, +0x02,0xaa,0x94,0x23,0x58,0x73,0x49,0xcb,0x69,0x03,0xa8,0xc1, +0x06,0x06,0x6f,0x8e,0xfe,0xf7,0x6a,0x03,0x7d,0x17,0x36,0xe0, +0x4c,0xdc,0xc0,0x08,0x0b,0xfd,0xa4,0xac,0x23,0xf5,0xbb,0x1c, +0x3a,0x85,0x45,0xa4,0xbd,0xa3,0xed,0x49,0xfe,0x15,0xab,0x22, +0x7e,0x8f,0x85,0xd5,0x4a,0x07,0x4a,0xdf,0x8e,0x53,0x70,0x50, +0x69,0x55,0xbd,0x35,0xcf,0x54,0x5e,0xc1,0x87,0x74,0xbb,0xdc, +0xf6,0x6e,0xe1,0x20,0xe2,0x28,0xa1,0x1f,0x51,0xc5,0x32,0xba, +0x54,0x56,0x09,0xe5,0x04,0xf4,0x34,0xb1,0x4c,0x46,0xdf,0xba, +0x20,0x1d,0xf5,0x97,0xf6,0xf7,0x1b,0xd2,0x53,0x1b,0x34,0xe0, +0x1b,0xa8,0xed,0xc4,0xda,0x3f,0xc0,0xb4,0x85,0x2d,0x38,0x50, +0x7c,0xa0,0xe4,0x40,0x51,0x27,0x8f,0x6b,0x1f,0x4d,0xbf,0xeb, +0xfe,0x1d,0x67,0xc4,0x78,0xae,0x5a,0xa6,0x8d,0x5b,0xb5,0xf2, +0x65,0xbc,0x74,0x64,0xbb,0x38,0x9d,0xc3,0xa9,0x17,0x89,0xc3, +0x7d,0x93,0x6f,0x2d,0xbb,0xed,0xbc,0xf9,0x4e,0x8b,0x6e,0xad, +0x26,0x1d,0x4e,0x98,0x09,0x3b,0x49,0xd6,0xd6,0x3b,0xdb,0xff, +0x36,0xe4,0xc4,0x99,0xcc,0x1f,0xfd,0xd7,0x6e,0x5c,0xbc,0xc6, +0x89,0x13,0xa4,0x5a,0xc4,0xff,0x4b,0xd5,0x68,0xe1,0x1c,0x4d, +0xa5,0x72,0xcb,0x81,0xd5,0x55,0x5b,0xdb,0x2b,0x78,0xaf,0x4b, +0x46,0xcf,0x65,0x0a,0x4e,0x34,0xc6,0x43,0xe4,0xda,0x60,0xd7, +0xbd,0x92,0x2b,0x56,0x05,0x7c,0x80,0xa1,0xe5,0x66,0x03,0x33, +0x4e,0x12,0xaf,0xcd,0x21,0x1e,0xd3,0xad,0x97,0x19,0x6c,0xe4, +0x2c,0x60,0x3a,0x68,0x74,0xa2,0x06,0x8c,0x33,0xc1,0x71,0xa8, +0x2d,0x03,0x6d,0x9c,0x8e,0x9e,0xe6,0x90,0xcb,0x68,0xad,0x9f, +0x6f,0x80,0x23,0x2d,0x0a,0xac,0xf9,0xd2,0xb4,0x92,0x8c,0x92, +0x8b,0x1c,0xbe,0xec,0x91,0xc3,0x25,0xe1,0x33,0x8c,0x66,0x2b, +0x8b,0x2b,0xca,0x4a,0x2b,0x38,0xd8,0xd6,0x8d,0x3c,0xd3,0x75, +0xab,0xe9,0x71,0xd9,0x6b,0x0e,0x4e,0x61,0x2d,0x69,0x7b,0x53, +0xf5,0x26,0xe7,0x31,0xd7,0x8e,0xf7,0x86,0xde,0x0f,0x28,0x3b, +0xc0,0x86,0x0d,0xd3,0xf1,0x5c,0x64,0x3e,0x9b,0xbb,0xa5,0xd7, +0xb9,0x61,0xdd,0xa4,0xcd,0xfb,0x7c,0x37,0xa9,0x1b,0x30,0x49, +0x46,0x2a,0x03,0xcc,0xaf,0xf5,0x97,0xdf,0xbc,0xb5,0xbc,0xaf, +0x7f,0x4d,0x03,0x05,0x7a,0x6f,0xf0,0xfc,0x9f,0xcc,0xf9,0xb3, +0x2a,0xf0,0x0d,0x83,0xe7,0x31,0x8f,0x00,0x43,0x83,0x37,0xc3, +0xaa,0x0a,0x2f,0x04,0x42,0x20,0x1d,0x66,0xfe,0x24,0x9f,0x2f, +0xe9,0xbf,0x2c,0xfa,0xde,0x62,0xf9,0x02,0xf8,0x58,0xb0,0x93, +0x63,0xe0,0x0b,0x93,0x65,0x18,0x85,0x96,0x0c,0x36,0x44,0xa2, +0x91,0x3e,0x4e,0x56,0xef,0x08,0xba,0x02,0x0b,0x52,0x61,0xfb, +0x69,0x28,0x55,0x7b,0xc3,0xe0,0x9f,0x90,0xfe,0x7f,0xd2,0x10, +0x71,0xfa,0x90,0x3d,0xf1,0x8e,0xf6,0x8c,0x76,0x3b,0xf2,0x7f, +0xd2,0x06,0x71,0x64,0x9a,0xd4,0x92,0x8b,0x26,0x4d,0x6d,0xe1, +0x6b,0x32,0x1f,0x17,0xfd,0xc4,0xc2,0x0d,0xb1,0x86,0xe8,0x65, +0x19,0x15,0x5a,0x95,0x5f,0x92,0x37,0x5f,0x2e,0xba,0xcf,0x35, +0x89,0xd3,0x65,0xf0,0x98,0x0d,0xb5,0x70,0xb7,0xb5,0x74,0xb1, +0xa9,0x73,0x6b,0xf1,0x97,0x3b,0xfa,0xf3,0xe5,0x16,0x35,0x0e, +0xcd,0x6e,0xe6,0xde,0xdb,0x82,0xd6,0xef,0xce,0xb5,0xe4,0x9f, +0x17,0xdc,0x2b,0xbb,0x5c,0xdf,0xef,0x7c,0xc3,0xef,0x61,0xa8, +0xf4,0x30,0x41,0xf6,0x7f,0xd6,0x41,0x51,0xf5,0xfd,0xd8,0x38, +0x62,0xf0,0xab,0x37,0x4c,0x3d,0x00,0x7e,0x1c,0xe8,0x76,0xe3, +0x56,0xe6,0xc4,0xd5,0xaf,0xef,0x3c,0x9e,0xd4,0x9f,0xd0,0x9b, +0x24,0x4f,0x0b,0x6a,0xe7,0xa7,0xfa,0xa1,0xfa,0x1e,0xd4,0x3d, +0xcc,0x0d,0x8d,0x66,0xf7,0x9e,0xd8,0x7b,0x62,0xdf,0x49,0x8a, +0x58,0x5f,0x5d,0x7c,0x97,0x77,0xbb,0x20,0xba,0x93,0x77,0x3c, +0x60,0x1d,0x61,0x19,0x29,0x75,0x1f,0x5b,0xc7,0xa6,0x63,0x44, +0x3d,0x2e,0xbf,0x33,0xad,0xc8,0xa1,0x2b,0x2e,0xe6,0x72,0x3a, +0x78,0xf0,0x56,0xd9,0x2a,0xa2,0xbf,0x90,0x4a,0x7a,0x44,0x8a, +0x16,0xd5,0xd9,0xdd,0xb8,0xdc,0x1a,0xa7,0x2c,0xc5,0x51,0x25, +0x86,0x7c,0x6e,0xd1,0xc5,0x92,0xf4,0x32,0x4e,0xdc,0xdc,0xf7, +0x00,0x1c,0x84,0x5d,0x68,0xc5,0x16,0xde,0xcf,0x7a,0x28,0x79, +0xb0,0x66,0x37,0x69,0x3f,0x2b,0x3f,0x2f,0x8f,0x3d,0xbd,0xe1, +0x8c,0xde,0xb9,0x1d,0x1c,0xae,0x62,0xf0,0x3d,0xa5,0x58,0xc2, +0x47,0x30,0x4d,0xfc,0x88,0xa5,0xf8,0x42,0x95,0xf4,0xe3,0x80, +0x31,0x45,0x17,0x16,0xca,0x06,0x22,0x26,0xe3,0x09,0x06,0x13, +0xa2,0xd1,0x7a,0x23,0xce,0x55,0xef,0xf0,0x56,0x79,0x00,0x6b, +0x52,0xc0,0x1c,0x0a,0x27,0xc1,0xa7,0xdb,0x18,0x0c,0x08,0xc3, +0x25,0x33,0x28,0xeb,0x6a,0x71,0xfd,0x0e,0x26,0x54,0xc0,0xf8, +0x04,0xd0,0x56,0x83,0x4d,0x0c,0xaa,0x7c,0x3d,0x3b,0x52,0x5f, +0xdd,0xe2,0xf0,0xc1,0x03,0xa6,0x93,0xb7,0x4a,0x02,0x52,0xfd, +0xcc,0xd3,0xaa,0xf2,0xa7,0x49,0x1a,0x89,0xb7,0xce,0xfd,0x02, +0x9b,0xa5,0xc7,0xb3,0xa7,0x73,0xbe,0xc9,0xc9,0x9b,0x74,0x13, +0x52,0xba,0x45,0x13,0x1a,0x83,0x1d,0xd8,0xa1,0x64,0x3c,0x43, +0xf2,0x1f,0x5c,0xfc,0x36,0x91,0x0e,0x73,0x66,0x37,0x3e,0x31, +0x87,0x2f,0xa4,0x43,0xe8,0x0e,0x38,0xe5,0xc3,0x21,0xf4,0x9c, +0xc2,0xf4,0xa2,0xd4,0x52,0x4e,0xd4,0xe9,0xb9,0x0f,0x3b,0x84, +0x30,0x16,0x77,0x88,0xeb,0x25,0x65,0xa7,0xcf,0xc5,0x51,0xac, +0xea,0x03,0x78,0x4b,0xde,0x14,0x3f,0xa8,0xea,0x6f,0x56,0x84, +0xc8,0x43,0x5a,0x83,0x4b,0x5b,0x78,0xfb,0x5c,0xbb,0x6c,0xc7, +0xac,0xee,0xae,0x9a,0xab,0xb9,0x0f,0x69,0xe8,0x74,0x62,0x93, +0x0a,0x93,0x8a,0x13,0x8b,0xcd,0x2e,0xf0,0x91,0x3e,0x07,0xfd, +0x23,0x68,0xb8,0x5c,0x69,0x03,0x93,0x99,0xdd,0x4e,0xc1,0x8e, +0x3e,0xd6,0x1d,0x7b,0xda,0xf7,0xb4,0x86,0x59,0x7a,0x6d,0x0f, +0x5c,0x17,0xca,0x29,0x2d,0x29,0xe4,0xbc,0x7d,0xb5,0xed,0xdb, +0x92,0x17,0x5c,0xbd,0x38,0xc3,0x1a,0x9e,0xb1,0x3b,0xb7,0xba, +0x1a,0x9a,0x5a,0x3a,0xb4,0x79,0x74,0x05,0x48,0x65,0x56,0x65, +0x3b,0x6a,0x4d,0xdb,0xac,0x1c,0xbc,0x2d,0xfc,0x0d,0x82,0x0b, +0x6d,0xf9,0xeb,0xc5,0xbd,0xe5,0xed,0x35,0xdd,0xd6,0x57,0x9c, +0x1f,0x78,0x14,0xb6,0xf3,0xba,0xe5,0xc6,0xb5,0xd6,0x4d,0x9c, +0x78,0xab,0x9f,0x64,0x57,0x64,0xd7,0x64,0x35,0x70,0xb0,0x86, +0x09,0xdd,0xea,0x65,0x61,0xed,0xe8,0x92,0xe1,0x9e,0xee,0x93, +0xcc,0xc1,0x61,0x0c,0x20,0xa7,0x7c,0xbf,0x0e,0x38,0x1e,0xcc, +0xe1,0x35,0x73,0xe8,0x60,0xdc,0xf1,0xe3,0x59,0x66,0x68,0x6b, +0x97,0x47,0x27,0x6e,0x58,0x0f,0x8c,0x7e,0x58,0x0b,0xb3,0x38, +0x4a,0x90,0x4e,0x59,0x9c,0xb0,0x8b,0xf6,0xe0,0xec,0xa2,0x22, +0x0f,0x6c,0x91,0xd4,0x26,0x25,0xe1,0x25,0x2d,0xe6,0xf7,0xe2, +0xaa,0x5b,0x29,0x1a,0x89,0x9d,0xe7,0x6e,0x9e,0x7e,0xc1,0x89, +0x93,0x99,0xf3,0x85,0x67,0x8a,0x4f,0x97,0x72,0xd2,0xb6,0xf3, +0x23,0xb2,0x45,0x4b,0x1c,0x23,0x29,0x50,0x87,0xec,0xc2,0x0d, +0xa6,0xf8,0x99,0xba,0xdc,0x51,0xe5,0x3a,0x68,0xe4,0x81,0x05, +0x84,0x4d,0x02,0x7f,0xa9,0xa6,0x6e,0x22,0x0b,0x0b,0xe7,0x93, +0x99,0x58,0xf7,0x9b,0xd1,0x4c,0x9c,0x65,0x49,0xd7,0xcd,0x42, +0x61,0x29,0x2c,0x04,0x6d,0x05,0x6a,0xff,0xc6,0xe2,0x1f,0x18, +0x4f,0x7e,0x87,0xba,0x19,0x2c,0x68,0xd0,0xe9,0x20,0xfe,0x6d, +0x29,0xe4,0x30,0xce,0xb2,0x6d,0x36,0x4b,0x5c,0x37,0x95,0xeb, +0x37,0x18,0x2a,0xdc,0xdd,0x78,0x85,0x63,0x97,0xdb,0x25,0xdf, +0x65,0xfe,0xd3,0x42,0xf0,0xb3,0x83,0xa9,0x94,0xa0,0xcc,0xca, +0x80,0xcf,0x4b,0x7f,0xaf,0xff,0xc9,0x15,0x18,0x7f,0x98,0x19, +0x9e,0xda,0xc5,0xa3,0x6a,0xfa,0xbc,0xec,0x35,0xc5,0x3f,0xcb, +0x6f,0x5d,0x6e,0xbc,0x45,0x87,0x96,0x2d,0x6c,0x25,0x02,0x3b, +0x20,0xb2,0xf0,0x78,0x1b,0x3e,0x46,0x30,0x02,0x10,0x27,0x8b, +0x73,0x0c,0xdf,0x7f,0x7e,0x49,0x5c,0x43,0x03,0x78,0xf0,0x5b, +0x62,0x5b,0x6f,0x5f,0x6d,0x5f,0xde,0x07,0x23,0xcb,0x81,0xa4, +0xc2,0x4a,0xae,0x11,0xad,0xd9,0xd4,0x4b,0x49,0xfd,0x71,0x9d, +0xfa,0xb1,0xfc,0x61,0xcb,0x28,0x83,0x03,0xdb,0x38,0x9c,0x6c, +0x0c,0x63,0x99,0x10,0x4d,0xbf,0xe9,0x3e,0x5a,0xbd,0xde,0x3d, +0x5e,0xdd,0x6e,0xb6,0x1b,0xb7,0x6f,0x5d,0xa1,0x5f,0x6d,0xc5, +0xbf,0xbc,0x7e,0xf3,0x76,0xe7,0xd3,0x66,0x9f,0x66,0xcf,0x16, +0x57,0x8e,0xc2,0xa6,0x4d,0xe4,0x27,0x98,0x2a,0x87,0x35,0x17, +0xc1,0x83,0x6b,0x15,0x43,0x4d,0x85,0x45,0xec,0x7e,0xdc,0xec, +0x81,0x9a,0x6b,0xf1,0x8b,0x4d,0xf0,0x85,0x3b,0x7c,0x15,0x08, +0x0b,0xf4,0xf7,0xf3,0x25,0xa8,0xdd,0x86,0xf3,0x9e,0xe1,0x57, +0x46,0xda,0x6b,0xf5,0xa6,0x6d,0xad,0x30,0xe1,0x7f,0xbf,0xfe, +0xe4,0xd6,0x95,0x47,0x5d,0xda,0x37,0x74,0x9f,0x6f,0xad,0xea, +0xe1,0x97,0xdf,0xd8,0x76,0xcb,0xea,0x1e,0x27,0xfe,0x04,0x1f, +0x93,0xa2,0x07,0xf9,0x3f,0xe4,0x50,0x6c,0x3e,0x8b,0x39,0x88, +0x93,0x02,0x51,0xc5,0x72,0x96,0x73,0xb1,0x4b,0xbe,0x6b,0x1e, +0xa7,0x7a,0x1f,0xe2,0xc8,0xbb,0xaa,0x47,0x2d,0x97,0x7a,0x9b, +0x82,0x1b,0x82,0x1a,0x02,0xca,0xda,0x78,0xd7,0x02,0x97,0x02, +0xd7,0x5c,0xc5,0x60,0xd5,0x03,0xfa,0x91,0x26,0x74,0x61,0x93, +0x4a,0x92,0x4a,0x13,0xca,0x4c,0x12,0xf9,0x28,0xaf,0x83,0x5e, +0x07,0xbc,0x38,0x5c,0x62,0x01,0x13,0x99,0xdd,0x0e,0x21,0x76, +0xfe,0x96,0xdd,0xc1,0x9d,0x41,0x8a,0x00,0x33,0x5b,0x5d,0xf7, +0xa5,0xbe,0x9c,0xb0,0x3f,0x8c,0xdc,0x2e,0xeb,0xaf,0x95,0x37, +0x2b,0x2c,0x2e,0xdb,0xdc,0x71,0x28,0x55,0xf0,0x7a,0x75,0xc6, +0xcd,0x36,0x1d,0xb7,0x1f,0xb4,0xfc,0x50,0xf4,0x1b,0xd7,0x26, +0xce,0xb0,0x80,0xe7,0x6c,0xc8,0x5a,0xb7,0x4d,0xa6,0xfa,0x76, +0x7d,0xee,0x57,0x03,0xee,0x58,0x86,0xf0,0x65,0x5a,0x0d,0x9b, +0x15,0xfa,0xf6,0x2e,0xa6,0x1e,0x5b,0xfc,0xb8,0xe5,0xf0,0x8c, +0xec,0x59,0xef,0x6b,0x60,0x6f,0xe9,0x90,0xef,0x92,0xe3,0x95, +0x91,0x55,0x93,0x55,0x9f,0x49,0xe7,0xe2,0x16,0x71,0x3b,0xe9, +0xf2,0xe8,0xb7,0x6f,0xb7,0xab,0xab,0xe7,0x65,0x72,0xf3,0x46, +0xd3,0x6a,0xce,0x06,0xab,0x88,0x53,0x54,0x5c,0x8d,0x06,0xf8, +0x19,0x62,0x20,0xab,0x55,0x10,0xf6,0x58,0x1d,0x8a,0x99,0xd6, +0xd4,0xcc,0x7a,0x8d,0x3f,0x59,0xe3,0x8b,0x2a,0xa8,0xc6,0x76, +0x81,0x1b,0xe9,0xdb,0xda,0xb3,0xbe,0x6e,0xb5,0xbc,0x94,0x77, +0x7c,0x69,0x71,0xc7,0xe4,0x3a,0x37,0x64,0x8a,0x39,0xe4,0xfa, +0xfd,0xc6,0xe7,0xf9,0x0f,0x2d,0xb3,0xf9,0xd0,0x4d,0x8e,0xab, +0xf4,0xb7,0x53,0x84,0xec,0xa6,0xfc,0x8e,0xf8,0xa2,0xb9,0x39, +0xce,0x59,0x81,0x5c,0x95,0x35,0x9f,0x57,0x52,0xd0,0x90,0xdf, +0xc1,0x51,0x04,0xac,0xdc,0xc4,0x66,0x5f,0xc9,0xb8,0x9d,0xf4, +0x2d,0x27,0xfc,0x31,0x34,0x48,0x70,0x1e,0x23,0x15,0xc4,0x4c, +0x60,0x9a,0xd2,0xd2,0x9a,0x34,0x94,0x37,0x4d,0x58,0xf1,0x47, +0x49,0x4a,0x8c,0x8d,0xff,0x3b,0xfe,0x75,0x6a,0x7c,0xf8,0x85, +0xf0,0x0b,0x7b,0x5b,0x8b,0x78,0xdf,0x27,0x36,0x6f,0x5c,0xfb, +0x1d,0x03,0xf9,0x6c,0x9f,0x7c,0x87,0x1c,0x7b,0xf3,0x23,0x26, +0xc7,0x0c,0x8e,0xe5,0x0d,0xe6,0x3f,0xcd,0x7c,0xcc,0x81,0x79, +0x27,0xa2,0x8c,0xd2,0xc7,0x70,0xad,0xe0,0x15,0x41,0x5b,0xad, +0x4f,0xf2,0xc2,0x56,0x28,0x25,0x43,0x73,0x7a,0x95,0x73,0x58, +0xcc,0x16,0x3b,0x08,0x2c,0xe9,0xc2,0x25,0xa0,0x69,0x86,0x9a, +0xb8,0xd8,0x02,0x16,0xa3,0x31,0x63,0x71,0xc4,0xec,0xa8,0xc9, +0x51,0x69,0xc7,0x75,0xfe,0x45,0xf8,0x2c,0x03,0xbe,0x28,0x3d, +0xd1,0xc9,0x9b,0x47,0x9a,0x45,0x99,0x46,0x53,0x70,0xf7,0x9b, +0xa0,0x24,0xb8,0xfa,0x12,0x04,0x8b,0x33,0x60,0xad,0x01,0xae, +0x15,0xc7,0x63,0xf0,0x25,0x49,0x16,0xc5,0xe8,0x0d,0x09,0x68, +0xf2,0xaf,0xf6,0x2f,0xb1,0xf6,0xe3,0xcb,0x7d,0x8a,0xbc,0x8a, +0x5c,0x38,0xe1,0x20,0x8d,0xfc,0xa1,0x6e,0xbe,0x2e,0x9e,0x5e, +0xf2,0x00,0xbe,0xa2,0xb8,0x4a,0x9e,0x57,0xc3,0xc9,0x87,0xd2, +0x08,0x9a,0x30,0x0e,0xd1,0x09,0x14,0x7c,0x98,0xd2,0x85,0x95, +0x24,0xb6,0x63,0x12,0xf0,0x6c,0x14,0xce,0xd9,0xb0,0x03,0x77, +0xcb,0x72,0x29,0x0e,0x3c,0xd6,0xf5,0xd3,0x9b,0x64,0xd8,0x4c, +0xb3,0x1a,0x3a,0x32,0x7a,0xc5,0x3b,0x6f,0xaa,0x83,0x1d,0xd3, +0x94,0x23,0x15,0xca,0x4e,0x67,0x8d,0xd2,0x54,0x70,0x01,0xd0, +0x5c,0x3b,0x4f,0xd4,0x83,0x79,0x34,0xb9,0x3e,0x10,0x82,0xc8, +0xcf,0x57,0xee,0x3f,0x68,0x79,0x46,0x73,0xd6,0x32,0x36,0x5d, +0x6a,0x6c,0x9a,0x63,0x90,0xc3,0x6f,0x44,0x66,0xf1,0x02,0x9c, +0xb3,0xaa,0xd6,0x8a,0xbf,0x56,0xdd,0xd7,0xd0,0xde,0xdc,0x6c, +0xd6,0x6b,0x7d,0xc3,0x11,0x47,0x9b,0xa0,0x86,0x3d,0xae,0x0b, +0x48,0x37,0xe0,0x61,0x43,0x31,0xac,0xe8,0x81,0x89,0xf7,0xa4, +0x47,0xa9,0x9a,0xd6,0xb0,0xc4,0x23,0x7b,0x90,0xc7,0x99,0xe5, +0xf8,0x65,0xdd,0xd4,0x4e,0x8e,0x72,0x30,0x07,0x12,0x13,0x13, +0x13,0x7b,0x3e,0x86,0x13,0xc6,0x32,0xf6,0xdb,0xb6,0x1b,0xad, +0xb2,0xdc,0xd8,0x64,0xa0,0xb0,0x1a,0xe4,0x0a,0xc5,0x6d,0x04, +0x46,0xed,0x83,0x4f,0xfc,0x7e,0xf7,0xca,0x1a,0xe0,0xa7,0x57, +0xe1,0xe7,0xa5,0x9a,0x14,0xd2,0x6a,0x23,0x05,0x5e,0x2b,0x83, +0x60,0xb7,0x05,0xac,0x33,0xcf,0xa2,0x5f,0xb6,0x52,0x81,0xc1, +0x3d,0xb8,0xa1,0x90,0xe6,0xbc,0xcf,0xa5,0x16,0xc0,0xbf,0x62, +0xca,0x73,0xb8,0xd9,0x85,0x37,0x5f,0x9b,0x2e,0xc2,0x4b,0x16, +0x70,0x69,0x05,0x9e,0xc3,0x5f,0x21,0x8c,0xb5,0x59,0x82,0xec, +0x3a,0x5c,0xbf,0xb5,0x50,0xc6,0xc3,0x96,0xfb,0xf0,0xd9,0x77, +0xb9,0x30,0x8a,0x8b,0xc5,0x6b,0xdd,0x70,0x2d,0x96,0xc9,0x9c, +0x06,0xec,0x0a,0x58,0xaa,0x55,0xac,0xe0,0x71,0xfe,0x9d,0xe9, +0xdf,0x3a,0x7c,0xcf,0x89,0x0b,0xe1,0x07,0xe2,0x31,0x68,0x77, +0xd3,0xe8,0x8a,0xd4,0x16,0xd2,0xa0,0x75,0x7b,0xdd,0x16,0x4e, +0x18,0x33,0x8b,0xa0,0xc5,0x0f,0x60,0xc1,0xf4,0x2e,0x26,0x3f, +0x80,0xe3,0x62,0x16,0x93,0x6c,0x28,0x7f,0xb1,0xf8,0x85,0x85, +0xb3,0x13,0xc0,0x71,0x0e,0x75,0xa8,0xa8,0x7b,0x99,0x78,0xa3, +0xaa,0x11,0xce,0xd8,0x31,0x5f,0xee,0xca,0x5f,0xfb,0xeb,0x12, +0xcc,0xad,0x86,0xcf,0x38,0xd5,0x17,0x4a,0x1b,0x02,0xf5,0xa6, +0x0c,0xde,0xd5,0xc2,0x75,0x18,0x81,0x8b,0xd5,0x9b,0x2c,0x55, +0x28,0xce,0xde,0xf8,0x14,0xac,0xe1,0xc9,0xa4,0x5e,0x61,0xa4, +0x2e,0x8b,0x6b,0x8f,0xa3,0xf6,0x4e,0x9c,0xae,0xae,0x19,0xee, +0x18,0x84,0x63,0x26,0x53,0xe8,0x94,0xb6,0x43,0x6a,0xbd,0x01, +0x4b,0xfb,0x1a,0x61,0x5a,0xae,0x46,0x3e,0xcc,0x8a,0x01,0x13, +0x30,0x9b,0xf4,0xc7,0x50,0x29,0xbd,0x39,0x57,0x94,0xf1,0xe4, +0xc1,0x36,0x6d,0xf1,0x53,0x3c,0xc7,0xe2,0xc1,0x70,0xdc,0x68, +0x84,0xe3,0xd4,0xdb,0x2d,0x55,0x6e,0xc1,0xdc,0x6c,0x1a,0xe7, +0xce,0x4e,0x02,0x6b,0xe5,0xe9,0x2e,0x76,0x1b,0x96,0x12,0x98, +0x84,0xed,0xfd,0x26,0xc6,0x98,0x64,0x0d,0x49,0x6b,0xa5,0xdd, +0x43,0xf9,0x0a,0x4c,0xb3,0x56,0x8e,0x04,0x8d,0x07,0x72,0x16, +0x35,0x1e,0x93,0xb5,0x18,0xfd,0x98,0xc5,0x90,0xd1,0xcf,0x21, +0x7a,0x05,0x2b,0xee,0x11,0x75,0x49,0xab,0xe0,0x6f,0x37,0x00, +0x9d,0xe2,0x0f,0xd8,0xc9,0x0a,0x45,0xf0,0x0d,0x41,0x4d,0xd1, +0x1f,0x34,0xe9,0xef,0x26,0x0a,0x4f,0xc8,0x2f,0x70,0x78,0x4e, +0xd7,0x2f,0xa0,0xd1,0x81,0x1a,0x6f,0x2d,0xe6,0xe1,0x61,0xe9, +0x65,0xb2,0x15,0x4c,0xa6,0x73,0x3f,0x62,0x15,0x81,0x91,0x3d, +0x38,0xf2,0xff,0xb5,0xa7,0xf4,0x9e,0x71,0x3d,0xf0,0xef,0x9e, +0x92,0x4a,0xc5,0x9b,0x8a,0xef,0x1b,0xa2,0x7b,0x78,0xef,0xfd, +0x5e,0x52,0xd7,0x4a,0xe1,0x53,0xc1,0x81,0xb8,0xaf,0x5c,0xb8, +0x0e,0x57,0x18,0x49,0x13,0x74,0xdd,0xb5,0x5f,0x1f,0x15,0xfd, +0xc1,0xc5,0x32,0x45,0x33,0xff,0x58,0x03,0x1b,0x77,0x64,0xf5, +0x50,0xd0,0xdc,0xb3,0xe0,0xa9,0xfb,0x53,0x0e,0x6d,0xa5,0x5d, +0xa2,0xef,0x3a,0xf0,0x3b,0x66,0xbf,0xe8,0x4d,0x3a,0x04,0xce, +0xaa,0x0f,0x1e,0x8b,0x51,0xf8,0x98,0x15,0x36,0x4b,0x15,0xa6, +0x1b,0x44,0x0e,0x36,0x50,0x10,0xf1,0x85,0xb0,0x9b,0xc0,0x97, +0xe8,0x31,0x68,0xa1,0x8f,0x3b,0xec,0x61,0xc7,0x7a,0xdc,0x0f, +0xbb,0x84,0x66,0x4a,0x5e,0x9f,0x98,0xac,0xc1,0x6c,0xac,0x63, +0xd1,0x36,0x14,0xd7,0x18,0xe0,0x34,0xf5,0x4e,0x8f,0xeb,0xb0, +0x28,0x0b,0xb4,0xcf,0xc2,0x76,0x35,0xd8,0xbf,0x0e,0x8d,0xec, +0x04,0x4b,0x98,0xd0,0xdf,0xc6,0x0c,0xcd,0xc2,0x30,0x12,0xb0, +0xdf,0xff,0x80,0x5f,0x04,0x07,0x37,0x7e,0xec,0x5c,0x08,0x17, +0xcc,0xf0,0xc2,0x12,0xd9,0x2b,0x7c,0xc3,0x4a,0x05,0x9a,0xde, +0x51,0x69,0xe6,0xfc,0xcf,0x15,0x0f,0xca,0xef,0xd6,0x73,0x42, +0x31,0x88,0x64,0x3d,0x2e,0xfa,0x96,0x45,0xaf,0xd1,0x8f,0x60, +0xd1,0x3a,0x16,0x9f,0x89,0x1b,0x48,0x27,0x3c,0x94,0xf5,0x42, +0x9f,0x68,0x86,0x7d,0xac,0x30,0x01,0x2e,0x10,0x9c,0x83,0x0f, +0x61,0x0e,0xab,0xaa,0x2c,0x80,0x66,0xd2,0x2e,0x1e,0xe9,0x17, +0x0e,0xb7,0x8b,0x87,0xfb,0x05,0x19,0xab,0xf0,0x19,0xf0,0xbf, +0x15,0x98,0x2f,0xe7,0x71,0x4e,0xdf,0x9c,0xc1,0x8d,0x14,0x8c, +0x0c,0x76,0x89,0x3b,0x99,0x94,0xc2,0xc4,0xa2,0x84,0x12,0xe3, +0x78,0x3e,0xd2,0x2b,0xc2,0xef,0x40,0x00,0x87,0xbf,0x58,0xc0, +0x20,0xa3,0xbf,0x78,0xe1,0x0e,0x5c,0x6b,0x92,0x6f,0xc5,0xf7, +0x65,0x75,0xe4,0x36,0x17,0x48,0x0a,0xd8,0xdb,0x2d,0x21,0x97, +0x0d,0xb4,0x75,0x33,0x72,0xb3,0xc1,0x09,0x27,0xf9,0x38,0x33, +0x38,0x12,0x0b,0x35,0x49,0x60,0x90,0xa5,0x96,0x13,0x9e,0x1d, +0x9e,0xbe,0xaf,0xa5,0x96,0x37,0xea,0x9a,0x77,0x5f,0xb7,0x81, +0xce,0xe8,0xa2,0xbd,0xd5,0x3b,0xab,0x03,0xf1,0xb3,0x28,0x5c, +0x7d,0x98,0xce,0xba,0x8a,0xe6,0xea,0xbe,0x62,0x05,0x27,0xb4, +0x2b,0x86,0x66,0xde,0x60,0x20,0x53,0x50,0x27,0xc5,0x2e,0x15, +0x1e,0xf5,0xde,0xd2,0xd6,0x57,0x4d,0x45,0x49,0x75,0x41,0x3d, +0x8d,0x4f,0x7f,0x28,0x29,0xb9,0x1b,0x39,0x00,0x1b,0xc4,0x99, +0x7f,0x1b,0x4c,0x15,0xa9,0xb7,0x07,0x60,0x24,0xab,0x6c,0xc6, +0x85,0xe4,0x3f,0x63,0xcc,0xa0,0x95,0x31,0xc0,0xb1,0x38,0x7a, +0x16,0x6a,0x6c,0xa8,0x32,0xe3,0x15,0xc5,0x1d,0x95,0x2d,0xb5, +0x1c,0x56,0x0d,0xb6,0x09,0xd1,0xb6,0x97,0x05,0x46,0x2c,0x63, +0x1b,0xda,0x2a,0x15,0x79,0xdd,0x9c,0x90,0xc6,0x0c,0x4d,0x16, +0xd7,0x11,0x70,0x12,0xa2,0x29,0x3e,0xfa,0x47,0x0a,0xc2,0xe1, +0xae,0xf0,0xf4,0x7f,0x2f,0x05,0x11,0x27,0x76,0xc1,0x16,0x5c, +0x8c,0xdb,0x60,0x84,0x31,0x3a,0xf6,0xd7,0x08,0x91,0xb0,0xd2, +0x08,0x47,0xa0,0x29,0x2c,0x16,0xb6,0xee,0x62,0xfc,0xbf,0xf6, +0x39,0xe6,0xab,0xee,0x74,0x34,0x72,0xb7,0xd1,0x64,0x5d,0x49, +0xda,0xe5,0x06,0xf3,0xb4,0xb4,0xe8,0x61,0x92,0x46,0x6c,0xc3, +0xd9,0x8e,0xe6,0x49,0x2d,0x43,0xab,0xee,0x29,0x1d,0xd8,0x61, +0x91,0x08,0x1d,0x31,0xe7,0x1e,0x2b,0xe4,0xe0,0x67,0x64,0xbd, +0x98,0xf3,0xad,0xa4,0x72,0x23,0x4c,0x21,0xe2,0x96,0x9b,0xc2, +0x58,0xe8,0x44,0x3f,0x26,0x5e,0xea,0x0f,0x93,0x6b,0x26,0xf5, +0x87,0x89,0x0e,0x92,0xfa,0xc3,0xac,0x10,0x1b,0x84,0x65,0x8c, +0xce,0x09,0xeb,0x23,0x92,0x76,0xcc,0xc1,0x08,0xb7,0xc9,0x46, +0x4c,0xa2,0x8c,0x52,0x93,0xc1,0x82,0xbc,0xfe,0x44,0x8d,0x84, +0x9e,0x73,0x57,0x81,0x9b,0x24,0x2e,0xbd,0x2d,0x6c,0x61,0x86, +0x3e,0x12,0x46,0x13,0xf1,0xcd,0x26,0xa5,0x97,0xd9,0x90,0x97, +0xae,0xf0,0x46,0x36,0x14,0xd8,0x7b,0x1b,0xe2,0x94,0x33,0x58, +0x41,0x16,0x43,0x74,0xf0,0xfa,0x3d,0x16,0xae,0xe3,0xe7,0x44, +0x0b,0xaf,0x3f,0x64,0x61,0xa7,0xb8,0x88,0xa4,0x05,0x5c,0x94, +0x25,0x78,0xd6,0xa5,0xf3,0x91,0xd5,0xe1,0x1d,0xfb,0x8b,0x38, +0x14,0xf1,0x02,0xa9,0xbf,0x91,0xf7,0x7d,0xe2,0x6d,0x9b,0x04, +0x3e,0x6a,0x47,0xe8,0x3a,0x57,0x03,0x0e,0x72,0xc1,0x86,0xa4, +0xd8,0xa5,0x9a,0xc7,0x99,0xb7,0x24,0xf1,0x87,0xba,0x0f,0x74, +0xed,0x6f,0xe1,0x70,0xce,0x41,0x92,0xb0,0x23,0x66,0xd3,0x19, +0x63,0xb9,0xd4,0xb2,0xe5,0xc8,0xd5,0xc8,0x2b,0xf4,0xfe,0x2c, +0x5b,0x4f,0x68,0xcc,0xaf,0xea,0xc2,0xaa,0x77,0x70,0x42,0xf8, +0x18,0xcf,0xbe,0x82,0xfc,0x4e,0xcc,0x7f,0x69,0x84,0x87,0xd0, +0x53,0xfc,0x18,0x02,0x67,0x61,0xb5,0x05,0x54,0xe3,0x42,0x56, +0x1c,0x39,0xe1,0xfd,0x3c,0xa3,0xff,0xcc,0x63,0xc1,0x4c,0xa8, +0x26,0x51,0xd7,0xf6,0xdc,0xdf,0xdb,0x69,0xbf,0x97,0x4f,0x97, +0xa5,0xeb,0xc4,0x53,0xa8,0x13,0x36,0x9b,0xe4,0xbf,0x48,0xfe, +0xf3,0xdc,0xdf,0xb2,0x18,0xfe,0xf8,0xf4,0xc8,0x79,0x3b,0x57, +0x72,0xc2,0x0a,0x30,0x26,0xc2,0x0c,0x4d,0x71,0x06,0x63,0x3d, +0x5a,0x98,0x81,0x23,0xe9,0x85,0x2a,0x88,0xc2,0x3c,0xe2,0x1f, +0xe9,0x1b,0xe9,0x1b,0xc5,0xc1,0x1e,0xe0,0x7b,0x90,0x07,0x7d, +0x23,0xd4,0xc7,0x79,0x66,0x30,0x0f,0xbf,0x61,0x65,0xfb,0x2d, +0x23,0xac,0x0f,0xc5,0x9b,0xf0,0xad,0x89,0xed,0xc9,0xed,0x34, +0x80,0x97,0xe3,0x94,0x61,0xa1,0xb4,0xd1,0x4c,0xfb,0xb0,0x64, +0x40,0x1b,0x5b,0x99,0x2c,0xe9,0x1b,0x72,0x1d,0xdf,0x92,0x27, +0x83,0xf5,0x0f,0x40,0x75,0x52,0x27,0x18,0xa2,0x0d,0x6b,0x98, +0x1d,0x7e,0x49,0xbd,0x97,0x69,0x4c,0x90,0x9e,0x27,0x8d,0x61, +0x2d,0x33,0x54,0x70,0x96,0x35,0x1b,0x7c,0xe4,0x42,0xa1,0x06, +0x9c,0x44,0xc5,0x6c,0x16,0x3f,0x0a,0x35,0xd5,0x36,0x55,0x17, +0x14,0xe2,0x71,0xb2,0xbc,0x7c,0x53,0x9d,0x61,0xcb,0xe3,0x3b, +0xed,0x4f,0x0a,0xbf,0xa3,0x59,0xca,0x49,0x26,0x4c,0x62,0x43, +0x0d,0x1c,0xb7,0xe9,0x19,0x19,0x74,0x59,0xf7,0xbb,0x0c,0xd8, +0x06,0xf2,0x8d,0x3b,0xe4,0x06,0x97,0xcd,0xb7,0xd8,0x2c,0x75, +0xc2,0xd1,0x7e,0xb9,0x34,0x09,0xa8,0x56,0xbe,0x6d,0xbd,0xd7, +0x7d,0xcd,0xf2,0x91,0xfd,0xcf,0xee,0x14,0x24,0x56,0x0d,0x47, +0xb4,0x3d,0x52,0x44,0x53,0xeb,0x40,0x35,0x29,0x98,0xed,0x91, +0x5e,0x88,0x15,0x10,0x1a,0xd1,0xb6,0xa1,0x09,0x09,0x3d,0x14, +0x7a,0x28,0x24,0x9a,0x83,0x70,0x18,0xd3,0x85,0x63,0xc0,0xd0, +0x04,0x0d,0xf1,0x73,0x0b,0xf8,0x1c,0xcf,0xb0,0x8e,0x07,0x1c, +0x23,0x9c,0xa5,0x82,0xe7,0xda,0x84,0xba,0xa4,0xba,0x94,0x0f, +0xfa,0x19,0xa9,0xc6,0x2a,0x3f,0x30,0x2d,0xc3,0xfa,0x19,0x1d, +0x6c,0x61,0x62,0x61,0x62,0x41,0x12,0x07,0xfd,0x50,0x4c,0x3c, +0x57,0x2d,0x5e,0x83,0x0b,0x8d,0xf2,0x68,0xa8,0x5b,0x7e,0xed, +0xed,0xd3,0x82,0xdf,0x68,0xa8,0x2b,0x98,0xfd,0x6e,0x15,0xac, +0xd9,0x9e,0x4d,0x43,0xdd,0xd2,0xde,0x85,0xcf,0xbc,0x9e,0x70, +0x68,0x41,0xa1,0x11,0xdc,0xed,0xc0,0xbb,0x4c,0x84,0xe8,0x49, +0x3a,0x00,0x86,0x43,0x5d,0x90,0x14,0xea,0x96,0x0d,0x87,0x3a, +0x04,0x29,0xd4,0x29,0xff,0x82,0x70,0x02,0xff,0xc5,0xb7,0xcf, +0x84,0x0d,0x5d,0xe2,0x86,0x3f,0x4c,0x34,0xc5,0xf9,0x16,0xc2, +0xfc,0x55,0xf8,0x2d,0xfe,0x17,0x1a,0x58,0x9b,0x35,0xc8,0x19, +0xe2,0x9e,0x4d,0xd2,0xaf,0x1d,0x7e,0x02,0xfc,0xb5,0x0f,0x89, +0xaf,0xa6,0x0f,0x6a,0x62,0x99,0x5c,0x1c,0x05,0x0b,0xb6,0x41, +0xf4,0xea,0x5c,0xfa,0xbb,0x7b,0xee,0xe0,0x84,0x4b,0xb2,0x27, +0xdc,0x02,0xb8,0x4c,0x66,0x61,0xda,0x3b,0x56,0xf8,0x9d,0xa6, +0xbb,0xf2,0x77,0x50,0xce,0xe0,0x1b,0x5c,0x40,0xa6,0x62,0xda, +0xdf,0x2c,0xdc,0x9f,0x4a,0xfe,0x86,0xf2,0xa9,0xac,0x2a,0x54, +0x0a,0x7e,0x52,0x07,0xbc,0x53,0x91,0xd1,0x51,0x87,0x86,0x6b, +0x9a,0x55,0x14,0xa8,0x02,0xe6,0x16,0x68,0x8e,0x6a,0x96,0x30, +0x8e,0x89,0xc2,0xf1,0x1e,0x38,0x73,0x19,0x8e,0xaf,0xb6,0x1f, +0xee,0x81,0x77,0xfe,0x47,0x2e,0x56,0xcc,0xe9,0x12,0x92,0xfe, +0xe9,0x81,0x77,0x05,0x35,0x2b,0x6a,0x55,0x60,0x25,0x8c,0x24, +0x34,0x3f,0x5b,0x6d,0xb1,0xd9,0xe1,0x9b,0x63,0xc8,0xf7,0x96, +0x77,0xd7,0x35,0x34,0x45,0xa2,0x99,0xd9,0x2a,0x9c,0x36,0x5f, +0x12,0x50,0xd1,0x01,0xee,0x0a,0x8c,0x1c,0x96,0xc3,0x33,0x63, +0xa1,0x6c,0x58,0xd7,0x32,0x86,0x02,0xc6,0xc7,0x6c,0x72,0xec, +0x37,0x17,0x8e,0xa8,0xc3,0x7a,0x5c,0x5b,0xd3,0x8c,0x1b,0x60, +0xb5,0x24,0x87,0x27,0xe9,0x5a,0x4a,0x4a,0x48,0xcb,0x4d,0x86, +0x2a,0x99,0xad,0x59,0x92,0xae,0xe5,0x97,0x4c,0x43,0xda,0x07, +0x5d,0x4b,0xcb,0x61,0x5d,0xcb,0x08,0xe5,0x31,0xe2,0xbb,0xd5, +0x56,0xdb,0x64,0x47,0xbd,0x3b,0xdf,0xd5,0xd7,0xfb,0x43,0xe5, +0x0d,0x4e,0x94,0xa1,0x29,0x09,0xbe,0x69,0xff,0xd8,0x75,0xc0, +0x36,0x80,0x6f,0xdc,0xde,0xb0,0xa1,0x44,0x97,0xe2,0xc9,0x6e, +0x6a,0xe3,0xe1,0x94,0x23,0xa7,0xa3,0xa2,0x0f,0x46,0xf1,0xc7, +0x61,0xc2,0x87,0xd3,0xcf,0xe6,0x66,0xd4,0x46,0x4a,0xfb,0xbf, +0x62,0x22,0xf1,0x4b,0x57,0x9c,0x3e,0x17,0xd5,0x6a,0xec,0xf9, +0x6f,0x61,0x44,0xd1,0x5f,0x31,0x6f,0xa9,0x91,0xc5,0x3d,0x42, +0xe2,0x3f,0xcd,0x4d,0x1f,0xe1,0x82,0xea,0x1a,0x15,0xe1,0xce, +0x0d,0xd2,0x81,0x03,0xec,0xf9,0xe2,0x73,0xc5,0xe7,0x4a,0x39, +0x48,0x96,0x63,0x3c,0x73,0xa6,0xe8,0x74,0xd1,0xe9,0x12,0x0e, +0xf2,0xe4,0x98,0x9b,0xc7,0x5c,0x33,0x5d,0xc7,0x46,0xa2,0x9b, +0x35,0xb8,0xb2,0xfe,0x5f,0x07,0x7e,0x1d,0xa8,0x8e,0x06,0xd6, +0xb0,0x8d,0x39,0xe1,0x77,0x22,0xe0,0x38,0x8d,0xfa,0xae,0x56, +0x60,0xc5,0x44,0x7b,0x1c,0xf2,0x8c,0xa0,0x21,0x79,0xae,0x8c, +0x42,0x02,0x97,0x95,0xc6,0x1b,0x57,0x6e,0xab,0xb4,0xe3,0x7f, +0x7f,0x7a,0xfd,0x65,0xf3,0x1f,0x1c,0xec,0xc4,0x03,0xb8,0x90, +0xc9,0x30,0x51,0x81,0xf1,0x4c,0xd3,0x45,0xa9,0x65,0xc1,0xee, +0xef,0x3a,0x57,0xde,0x33,0xd1,0x41,0x5b,0x36,0xa9,0x22,0xbe, +0x2a,0xae,0x9a,0x7b,0x8a,0x3f,0x90,0xd0,0x1a,0xcf,0x8e,0xa0, +0x22,0x07,0x2f,0x3e,0x3f,0xb8,0xc6,0x32,0x9b,0xce,0xfd,0xf7, +0x1a,0x1f,0xc4,0x13,0xf6,0x3c,0x87,0x1c,0x05,0xe6,0x48,0xe2, +0x09,0x17,0x2d,0xe1,0xe2,0x0a,0x0c,0xc0,0x77,0x60,0xc1,0x3a, +0xaf,0x98,0xbb,0x0a,0x35,0x37,0x97,0x58,0xf3,0xb0,0xe8,0xf1, +0xcf,0xdf,0x5d,0x94,0x8a,0xe1,0x07,0xbb,0x60,0x30,0x96,0x49, +0x99,0xf3,0x6a,0x25,0x4c,0x59,0x5d,0xd6,0xce,0xe3,0x84,0x07, +0xcb,0x1f,0x79,0x3c,0xe5,0xc4,0xf9,0xe0,0x4e,0xfd,0x75,0xf4, +0x74,0xa4,0x54,0xe7,0x7e,0x1c,0xa6,0xfc,0xd5,0x39,0xed,0x83, +0xb7,0xa6,0xcb,0x40,0x4d,0x6a,0x0d,0xec,0x86,0x9a,0x52,0x95, +0xbb,0x1d,0x7f,0x0f,0x3e,0x2a,0xfa,0xeb,0xfc,0x4f,0xd4,0x5b, +0x85,0x3d,0x42,0xcc,0x3f,0x65,0xee,0x8f,0x71,0x59,0x55,0x8d, +0x0a,0x9c,0x02,0x3a,0xf1,0x56,0xbc,0x86,0x15,0x1f,0x5a,0x77, +0xaf,0x5f,0xc4,0xe2,0x6e,0x1b,0x32,0x1b,0x57,0xfc,0xca,0x42, +0xc0,0x04,0x58,0x3f,0x1b,0xd7,0x4b,0xdd,0x69,0x94,0x66,0x64, +0x3b,0x8b,0x5f,0x68,0x6f,0x42,0x99,0xb6,0x7a,0xa1,0x25,0x6c, +0x7f,0x70,0xef,0x46,0x0a,0x8c,0x56,0x8b,0x65,0x32,0x90,0x7d, +0xb6,0x09,0x5c,0x97,0x17,0x77,0xf3,0xe8,0xfd,0x6c,0xd6,0x7d, +0x98,0x30,0xe9,0x2a,0xf8,0xb1,0x7b,0x9c,0xbd,0xcc,0x9c,0x1c, +0x5b,0xfd,0xf9,0xee,0x4b,0x55,0x97,0xf3,0x2e,0x71,0x0d,0xe2, +0x3a,0x36,0x21,0x3b,0x2e,0xe7,0x42,0x8e,0x45,0x0a,0xef,0xbb, +0xc8,0x66,0x95,0xce,0x96,0x66,0x57,0xbe,0xa9,0xa9,0xaa,0x8d, +0xe6,0x42,0xd4,0x8e,0x22,0x56,0x75,0xda,0x6d,0x66,0xf9,0x3e, +0xf6,0x7c,0xf7,0xce,0x7b,0xf6,0x9d,0xce,0x5c,0xee,0x6c,0xb2, +0xdd,0x7e,0x8d,0xcb,0x22,0xef,0x7c,0x73,0xfe,0x6d,0xdd,0xe3, +0xfa,0xeb,0x1d,0x1c,0x6e,0x41,0x5b,0x82,0x65,0x0b,0xcd,0xde, +0x8f,0xeb,0x99,0x0d,0x65,0xac,0x18,0x61,0x41,0x30,0x0c,0xe7, +0x50,0xcc,0x09,0x02,0xc5,0x0f,0x38,0x1b,0xc2,0x60,0x36,0xd3, +0x4f,0x2f,0xe9,0xc5,0x12,0x0c,0xa3,0xf0,0x69,0xaf,0x32,0x94, +0xa4,0x17,0x26,0x17,0xc4,0xe5,0x9b,0x66,0xf0,0x5e,0x0b,0xd6, +0xcf,0x9f,0xa5,0x5b,0xeb,0xc8,0x77,0x56,0x76,0x76,0x36,0xf6, +0x70,0xc2,0x92,0xa9,0x0c,0x7e,0x71,0x02,0x03,0x0e,0x20,0xa7, +0xae,0x15,0xb5,0xcb,0x53,0x67,0x32,0x8e,0x96,0x0a,0x4e,0xde, +0x32,0x30,0xba,0xa1,0x1b,0x3e,0x4d,0xd1,0x48,0x81,0x4f,0xce, +0x83,0x1f,0x8c,0x9b,0x04,0xab,0xd8,0xa1,0x11,0x7b,0x29,0x7d, +0x35,0xa9,0x33,0x29,0xf5,0xb3,0xe3,0x07,0xbc,0x15,0x9e,0x1d, +0xce,0x9c,0x70,0x4a,0x1c,0x4f,0xcc,0x71,0x3c,0xaa,0x82,0x01, +0xb8,0x75,0xa0,0x1b,0xb0,0x20,0xeb,0xc0,0xeb,0x4c,0x42,0xe6, +0x85,0xac,0x98,0x4c,0xfb,0x24,0x7e,0xaf,0xcc,0x5d,0xd7,0x4c, +0x56,0xed,0xce,0xe7,0x17,0xe6,0x14,0x67,0x96,0x72,0x3f,0x22, +0x8b,0x7e,0x56,0xe0,0x87,0x06,0x34,0xb2,0x8d,0x37,0xc7,0xb3, +0xdd,0xd7,0x40,0x60,0x86,0x7c,0x05,0x73,0x72,0xcd,0xe3,0xaa, +0x43,0x9f,0x6d,0x65,0x0b,0x2f,0x6b,0xd9,0x24,0xdf,0x5a,0xc9, +0xe5,0x0d,0xcd,0x25,0x77,0xfe,0xea,0x86,0x49,0xa5,0x7f,0x5a, +0x64,0xf3,0xde,0xc3,0xfd,0x84,0x37,0xcf,0xa5,0x6b,0xa5,0x87, +0xde,0x0f,0xeb,0x16,0x83,0x16,0xc3,0x0a,0x3f,0x47,0xfe,0xb2, +0x7b,0xb7,0x4b,0x97,0x1d,0xf7,0x1c,0x66,0x13,0x94,0x0b,0xa5, +0x20,0x67,0x45,0xca,0xd8,0xc9,0x5d,0x61,0xe5,0x46,0x56,0x5c, +0x89,0xe3,0xc9,0x23,0x61,0xe5,0x3a,0x56,0xbc,0x36,0x97,0xd8, +0xb4,0x6e,0x51,0xec,0xa8,0xf6,0x95,0x3e,0x72,0xc9,0xb6,0xdb, +0x86,0x53,0x06,0x16,0x90,0xa1,0x09,0xd6,0x30,0x83,0x71,0x34, +0xd8,0x6c,0x37,0xcf,0xa5,0xc0,0x8e,0xef,0xcc,0x6d,0xca,0xab, +0x2e,0xe6,0x60,0x0a,0x63,0xa2,0xa3,0x65,0x88,0x9f,0xca,0x0a, +0x69,0x58,0xe0,0x2f,0xbd,0xfd,0xf6,0xc6,0x6f,0x1c,0x7c,0xc2, +0x58,0x20,0xb3,0x62,0x09,0x6a,0xea,0x14,0xdb,0xf3,0xb0,0xf8, +0xd9,0xdb,0x77,0x03,0xa0,0xc9,0xdd,0x66,0x4e,0x6d,0xf8,0xda, +0xe8,0x90,0x3e,0x27,0x3b,0xb2,0xff,0xe0,0xf6,0xc9,0x0b,0xa5, +0x2e,0xbb,0xdf,0x31,0x3f,0x56,0xe6,0xbd,0x4c,0xd0,0x88,0xbf, +0x7b,0xb6,0xef,0x34,0x85,0xe4,0xa2,0x33,0x93,0x95,0x95,0x91, +0x9b,0x96,0xc7,0x09,0x7a,0xcc,0xd0,0xd9,0xb5,0x24,0x00,0x47, +0x3b,0xe3,0xc7,0x3b,0x66,0xb7,0x7a,0xf0,0xd7,0xe1,0xa3,0x76, +0x98,0x5c,0x20,0x69,0x95,0x9a,0x08,0x53,0x89,0x02,0xff,0x66, +0x63,0x8a,0xce,0x17,0x9f,0xa5,0x8b,0xb7,0xab,0x03,0xdb,0x99, +0xb3,0x85,0xa7,0x8b,0x4f,0xd3,0x21,0x5d,0xeb,0xc0,0xab,0x39, +0xcc,0x0d,0xe3,0x35,0xec,0x21,0xa9,0x59,0xed,0xd7,0xec,0xa9, +0x80,0x53,0x01,0x27,0x29,0x66,0x09,0xb5,0x82,0x40,0xba,0x7a, +0x8f,0x07,0x1c,0x0b,0xe4,0xa4,0x3d,0xfa,0xfd,0xcc,0x21,0x8f, +0x83,0x9e,0x07,0x7c,0x38,0x49,0x4a,0x6e,0x21,0x63,0xbb,0x7a, +0x8b,0xee,0xdc,0xed,0x92,0x6c,0xef,0xc7,0x4f,0x1e,0xbd,0x50, +0x50,0x3b,0xce,0xd1,0xe5,0xbb,0x61,0x78,0xf9,0xce,0xfe,0x77, +0xf9,0xc2,0x88,0x4e,0x1c,0x71,0xcf,0x48,0x87,0x4e,0x9a,0x94, +0x8a,0xc4,0xca,0xf8,0x6a,0x0e,0xeb,0xe1,0x2a,0xb1,0x6d,0x34, +0x6e,0x30,0x96,0xc4,0x7a,0x2e,0x79,0x75,0xba,0x75,0x38,0x71, +0xe8,0x3c,0x5a,0xd2,0xea,0xd9,0x5e,0x29,0xe9,0xf7,0x78,0x0c, +0x4a,0x5a,0x3d,0xa1,0x38,0xe2,0x7f,0xa7,0xc2,0x23,0xac,0xc3, +0x9d,0x64,0x67,0xb5,0x73,0x87,0x7f,0x91,0x83,0x07,0x5f,0xb8, +0xb3,0xc9,0x32,0x97,0x06,0x00,0x28,0x84,0xe3,0xe4,0xf8,0xd9, +0xe4,0x9e,0x0b,0xdd,0xe7,0x6e,0xa8,0x7d,0xdb,0xd7,0xd1,0x25, +0xbf,0xe6,0xda,0xc8,0x3b,0x1b,0xbb,0xd8,0x5b,0xbb,0x70,0xe5, +0x2c,0x34,0x1a,0x62,0x2b,0x8b,0x29,0xee,0xa8,0x8a,0xab,0x50, +0x5f,0xbd,0xc5,0xee,0x2d,0x8c,0x68,0x7b,0x51,0xfc,0x5a,0xed, +0x6c,0xec,0xd9,0x6f,0xce,0x1f,0x03,0x5d,0xb4,0xe2,0x5b,0x5b, +0x50,0x1b,0x0c,0xa2,0x92,0x0f,0x9d,0x89,0x3a,0xa4,0x06,0x13, +0x85,0x2c,0x62,0x02,0x7d,0x43,0x2e,0xe8,0x38,0x5c,0x99,0xa9, +0xfd,0x3f,0x95,0x99,0x4b,0xfb,0xd8,0xa1,0xef,0x91,0x27,0x27, +0xf1,0xa3,0x88,0x45,0x9e,0x6b,0xbb,0x42,0xf9,0xda,0xd7,0x29, +0xbf,0x9f,0x81,0x8f,0xe8,0x38,0xb2,0xe8,0x38,0x0e,0x27,0x1d, +0x3a,0x1b,0x15,0x1d,0x11,0xc5,0x9f,0x38,0x13,0x3f,0x70,0xbe, +0xe7,0xec,0x5d,0xb5,0xba,0xde,0xca,0xee,0xe2,0x41,0xf7,0x2a, +0x7e,0x8f,0xdd,0x6e,0x97,0x50,0x0f,0x2e,0x95,0x85,0x36,0x0b, +0xec,0x67,0x31,0x3d,0x08,0x3f,0x47,0x06,0x37,0xaa,0x37,0xb9, +0xdc,0xfa,0xab,0xe2,0x65,0xc6,0x2b,0xb5,0x33,0xd2,0x43,0xae, +0x63,0x6f,0x71,0x2d,0xdf,0x5c,0xad,0x22,0x3c,0x15,0x66,0x12, +0x87,0x42,0x8f,0x22,0xbf,0xe2,0xda,0x92,0x8a,0xca,0xe2,0x0a, +0x8f,0x72,0x7e,0xa7,0x8f,0x87,0xa7,0x47,0x60,0x78,0xe6,0x81, +0xac,0x83,0x59,0xf5,0x65,0x95,0x55,0x85,0x95,0xee,0x65,0xfc, +0x2e,0x7f,0x3f,0x6f,0xaf,0xc0,0xfd,0x65,0x91,0x15,0x47,0xaa, +0xac,0x0e,0xf1,0x79,0xa8,0xf6,0x08,0xd5,0x28,0x0a,0xf9,0x98, +0x13,0x9f,0x9d,0x22,0xf0,0xd5,0xab,0x97,0x30,0xba,0x18,0x3e, +0xe1,0x9a,0xd0,0xd1,0x9a,0x52,0xe4,0x28,0xb7,0x30,0x17,0x3f, +0xd7,0xc0,0x42,0x97,0x32,0xdf,0x2c,0x3f,0x0f,0xbe,0x34,0xac, +0xd6,0xb7,0x38,0xd0,0xd7,0xdb,0xc5,0xc7,0xc6,0x8f,0xc3,0x10, +0x58,0x4b,0xbe,0xc6,0x91,0x47,0x16,0x84,0x68,0xb5,0xed,0xe6, +0x0b,0x5e,0xc5,0xff,0x09,0x23,0x26,0xc1,0x2f,0x52,0x9f,0x88, +0xda,0x0e,0xac,0x65,0x56,0xe1,0x0c,0x82,0xc1,0x82,0x2b,0x04, +0x4b,0x07,0x17,0x28,0x5e,0xfb,0x98,0x72,0xd6,0x8f,0x59,0x33, +0x3d,0x12,0xe9,0xb8,0xdb,0x6c,0xa7,0x3d,0x87,0x7f,0x5a,0x0a, +0xbf,0x2a,0x28,0x89,0xcf,0xaa,0xc9,0x94,0x27,0x53,0xfc,0x7c, +0x74,0x16,0x89,0xae,0xd8,0xdb,0xbe,0xaf,0xd4,0x66,0x0f,0x9f, +0xe6,0x9b,0x61,0x13,0xef,0x23,0x1d,0xdd,0x51,0xde,0x23,0x3b, +0xf0,0xbd,0x38,0xca,0x58,0xe9,0x8f,0x9a,0x43,0x46,0xc6,0x4a, +0x23,0x5c,0x3e,0xb4,0xdb,0x58,0xb9,0x7b,0xc7,0x15,0xa1,0x05, +0x45,0x06,0x9a,0xe1,0x2e,0x71,0x5d,0x6f,0xba,0xcc,0x7c,0xab, +0xdc,0x8b,0xef,0xbe,0x35,0xf0,0xa6,0xf6,0x3e,0x27,0xd6,0xa2, +0x33,0x71,0x78,0x26,0xfb,0xd6,0x76,0xd0,0xc6,0x87,0x6f,0xdf, +0xa1,0x58,0xd7,0xb8,0x86,0x4e,0xf0,0x6d,0x4a,0x7d,0xd2,0x83, +0xbf,0x3e,0xdf,0xb2,0x02,0x7f,0x46,0x7b,0x76,0xc7,0x29,0xd3, +0x13,0xd6,0xea,0xce,0xde,0x36,0x01,0xb2,0x9d,0x99,0x86,0x7c, +0x4b,0x7e,0x4d,0x41,0x79,0xc9,0x01,0x9c,0xec,0xbd,0x78,0xf3, +0x1c,0x39,0x5d,0x62,0x2a,0xb0,0xbc,0x84,0x72,0xd0,0xca,0x49, +0xc0,0xb3,0x1b,0xd0,0x81,0xec,0xbe,0xb1,0x73,0xc0,0xbf,0xcf, +0x31,0x90,0x2f,0xb6,0xc8,0x37,0xca,0xd6,0xe3,0x60,0x1d,0x7c, +0x45,0xcc,0x95,0xe3,0xbb,0x59,0xf1,0x05,0xce,0x24,0x78,0x46, +0x28,0x81,0x33,0xac,0x18,0x28,0x1d,0x94,0x9b,0x26,0x2c,0xc6, +0x69,0xac,0x1e,0x9e,0x26,0x05,0x4d,0xd9,0x6d,0x17,0x3b,0x0c, +0x2f,0xf2,0xfb,0x64,0x21,0x66,0xbe,0x16,0x9c,0xb8,0xd9,0x42, +0xe9,0xda,0xc5,0x88,0xda,0xd5,0x64,0x6f,0xa3,0x7f,0x4b,0x70, +0x85,0x79,0x08,0x5f,0xec,0x5e,0xe0,0x94,0xe1,0x42,0x27,0x46, +0x2d,0x5d,0x82,0xd1,0x89,0xd1,0x67,0xa3,0x8e,0x1c,0x3a,0xca, +0x1f,0x3f,0xcd,0x54,0x2a,0x3a,0x7e,0xca,0x95,0xda,0x78,0x70, +0x1f,0xda,0x78,0x8c,0x95,0x41,0x24,0xeb,0x89,0x63,0xe6,0xe1, +0x1a,0xfc,0x4c,0xb3,0xd4,0x8e,0x6f,0xa8,0xa9,0xaa,0x2d,0xac, +0xe4,0xc4,0xc9,0x7d,0x82,0x01,0x1b,0x7b,0xe6,0xeb,0x73,0xc7, +0xd4,0x5f,0x21,0x5f,0x5d,0xa5,0x22,0x3c,0x84,0x89,0x34,0x15, +0x5f,0x19,0x4e,0xc5,0xd2,0x6a,0xce,0x90,0x63,0xf2,0xff,0xa4, +0xe2,0x22,0x39,0x16,0xe6,0x32,0xd7,0x4d,0xd6,0xb2,0x51,0xe8, +0x65,0x0d,0x9e,0xff,0xa6,0x62,0x13,0x6b,0x30,0x18,0x4e,0xc5, +0xc7,0x68,0x2a,0xf6,0xb0,0x02,0x5b,0xe6,0xb0,0x7b,0x94,0x97, +0x94,0x8a,0x67,0xc8,0x60,0x2c,0x4d,0xc5,0x86,0x1b,0x57,0x48, +0xa9,0xf8,0x8f,0xa7,0x37,0x5f,0xb6,0xd0,0x54,0xbc,0x8b,0xae, +0xe5,0x25,0xc3,0x6b,0x79,0xe2,0xbf,0x6b,0xf9,0xfb,0xce,0xe5, +0x52,0x2a,0x76,0x64,0x93,0x2b,0x12,0xaa,0x2e,0x54,0x73,0xcf, +0x86,0x53,0xb1,0xc7,0xbf,0xa9,0xb8,0x76,0x38,0x15,0x43,0x8e, +0xd2,0x94,0xe4,0x7a,0x64,0xbb,0x65,0x39,0x77,0x64,0xf1,0xfb, +0x2a,0xc2,0x4b,0xf7,0xd0,0x21,0xae,0x95,0x63,0x8d,0x54,0xe5, +0x99,0x1f,0x97,0x6f,0x91,0xcc,0xfb,0xad,0xb1,0xd2,0xd9,0x6c, +0xd4,0xe0,0xce,0x57,0x95,0x95,0x55,0x17,0xd6,0x71,0x82,0xbd, +0x9c,0x24,0xe5,0xc7,0xe7,0x5f,0xc8,0x97,0x25,0xf2,0xbb,0x36, +0x7a,0xe8,0x5a,0x99,0x14,0x84,0xf3,0x46,0x2b,0xf0,0x8e,0x0c, +0xee,0x2c,0x16,0x35,0xcd,0x85,0xdf,0x16,0x88,0xef,0xcc,0x85, +0x77,0x14,0xc4,0xda,0x4a,0x45,0x97,0xb0,0x95,0x69,0xca,0x48, +0xa3,0x63,0xd2,0x01,0xf7,0x6e,0x74,0x7f,0x03,0x1e,0xdd,0xe2, +0xb2,0x1f,0xe0,0x45,0x27,0xbe,0x78,0xce,0xa6,0x47,0xe6,0x16, +0x65,0x97,0x64,0x94,0xa9,0xbd,0x62,0x72,0x3d,0x73,0x5c,0xe9, +0x38,0x32,0xf9,0xbd,0x95,0x7b,0x4b,0xc3,0xe8,0x38,0x4c,0xe5, +0xcc,0xd0,0xee,0xa1,0xcf,0x48,0xa7,0xab,0xdc,0xa9,0xc5,0xa6, +0xa1,0x96,0xb7,0x6d,0xb7,0x6a,0x92,0x55,0xd3,0x61,0xe7,0x29, +0x75,0x49,0xb6,0x57,0x96,0x47,0xa6,0x2b,0x1d,0xf6,0x81,0xb2, +0x7d,0xc5,0xe1,0x34,0x34,0xae,0x56,0x60,0x15,0x93,0x5a,0x94, +0x54,0x14,0x57,0x24,0x15,0x00,0x2e,0xb5,0x5c,0xa3,0xbb,0xb5, +0x91,0x0e,0xbb,0xb2,0xbc,0xae,0xb0,0x91,0x13,0x52,0x26,0xe4, +0xbb,0xe4,0x3a,0x66,0xdb,0x2b,0x32,0xf9,0xf0,0xba,0xb0,0xca, +0xdd,0x95,0x1c,0x98,0x28,0x68,0x8e,0x4a,0x2e,0x4a,0x28,0x8e, +0x2b,0xb2,0x48,0xe4,0x77,0xeb,0xfa,0x6c,0xb6,0x37,0x6b,0xf3, +0xe7,0x33,0x72,0xd2,0xf2,0x53,0xf2,0x39,0x5c,0xb0,0x9a,0x98, +0x2d,0x41,0x76,0x23,0x9e,0xd9,0x9c,0x63,0xc6,0x3f,0xcd,0xbf, +0x99,0xd7,0x93,0xcf,0x39,0x09,0x76,0x75,0x6c,0x6f,0xc8,0xcd, +0xd0,0xa7,0x21,0x12,0x78,0x8e,0xb9,0x85,0x5f,0xdc,0x35,0x7d, +0xc5,0xd1,0x1b,0xe0,0x4a,0x7e,0x97,0xf7,0x77,0x16,0x5e,0xa3, +0xe8,0xba,0x70,0xdb,0xa0,0xec,0x6f,0x6b,0x4e,0x74,0x11,0xfd, +0x49,0x93,0x90,0xeb,0x38,0x08,0x4f,0x28,0xb9,0x7f,0xc2,0x0a, +0x2f,0x21,0x9f,0xe0,0x46,0x31,0x17,0x36,0xb2,0x92,0xf3,0x0d, +0x49,0x9e,0x7b,0xb6,0x6b,0x96,0x93,0x22,0x8b,0xdf,0x5b,0x45, +0x9d,0x5f,0xc6,0xc1,0x1a,0x05,0x56,0x33,0x29,0xf9,0x89,0x05, +0x1f,0x9c,0xbf,0xca,0x4a,0x5b,0xd7,0x40,0xb2,0xa2,0x9c,0x3a, +0x9f,0xd2,0x7e,0x07,0x05,0x49,0x2c,0x88,0x2f,0x18,0x76,0x7e, +0xc8,0x5a,0x57,0x6d,0x53,0xfd,0x16,0x1f,0xbe,0xb0,0x2c,0xaf, +0x2a,0xab,0x9a,0xa3,0x2e,0x74,0xcf,0x71,0xcd,0x76,0x92,0x67, +0xf2,0xfb,0xaa,0xc3,0x4b,0xc3,0xca,0x24,0x0b,0x99,0xa1,0xb4, +0xa1,0xcb,0x44,0xb8,0xa9,0xfc,0x4a,0x3c,0x4f,0x89,0x58,0xb2, +0xa5,0x34,0x47,0xda,0x33,0xd2,0xdb,0x34,0x84,0xe6,0xa1,0xe4, +0xa1,0x31,0x2c,0xcc,0x17,0x4e,0x11,0x4b,0xc1,0x4f,0x21,0x9d, +0x85,0x1c,0x4f,0xb0,0xae,0xef,0x12,0xdc,0x83,0x3d,0x2c,0xde, +0x43,0x5d,0x02,0xaa,0x90,0x8a,0xaa,0x94,0xb7,0xaa,0x09,0xbb, +0x08,0x10,0x34,0xba,0x6c,0x69,0x80,0xcb,0xec,0x61,0xd9,0x3a, +0x74,0x84,0xdd,0xc2,0x41,0x05,0x9e,0x96,0xf6,0x37,0x8e,0x60, +0x03,0x8b,0xf6,0xbb,0x71,0x95,0x19,0x4e,0x53,0x57,0x78,0x5e, +0x82,0x45,0x19,0xa0,0x75,0x16,0x0c,0xd4,0xc0,0x71,0x0d,0xae, +0xb2,0x17,0x66,0xc2,0x44,0x45,0x2b,0x33,0xb4,0x04,0x55,0xc9, +0xb1,0xf8,0x23,0x67,0x0f,0x46,0x45,0x1f,0xe6,0x8f,0xbf,0x82, +0x2f,0xbb,0xf0,0x4b,0xf8,0xc9,0x1c,0x7f,0xc2,0xa9,0x16,0xc0, +0x33,0x11,0x38,0xca,0x1a,0x47,0x6f,0x98,0x59,0x66,0xc5,0x5f, +0xff,0xb1,0xe2,0x87,0x98,0xe7,0x14,0xac,0x2d,0xeb,0x16,0x34, +0x28,0x58,0x3b,0x4d,0xc1,0xda,0x6d,0x5c,0x4b,0xc1,0x9a,0x8f, +0xf0,0x82,0x1c,0xd4,0xd9,0xb3,0x6e,0x8f,0x7e,0xc3,0x2e,0x3e, +0xeb,0x4a,0xce,0x77,0x29,0xf7,0x38,0x0c,0x42,0x27,0x72,0xf0, +0xd6,0x9e,0x47,0x7b,0x07,0xed,0xc3,0xf8,0x8b,0xfa,0x17,0xd7, +0x27,0x6f,0xe6,0x94,0x7b,0x53,0xc8,0x3a,0x1a,0x5a,0x59,0xf4, +0x1d,0xfd,0x04,0xd4,0xd6,0xb0,0x58,0x2b,0xae,0x27,0x0a,0xa8, +0xb0,0xec,0x86,0x5e,0x71,0x1a,0xf6,0xb2,0xf0,0x5a,0xda,0x20, +0x99,0x87,0x15,0xc3,0x1b,0x8f,0xa3,0x40,0x20,0xc3,0xdd,0x7c, +0xf7,0xb6,0x65,0xf0,0x7b,0x6f,0x49,0xdd,0x7c,0x29,0x43,0x4d, +0x0e,0x92,0x5a,0xd3,0xd8,0x0f,0xb7,0x0f,0x1e,0x7c,0x7a,0x1d, +0x18,0xa9,0x7d,0x70,0x01,0x1f,0x68,0xe8,0xb5,0xdd,0xd3,0x28, +0x2c,0x6f,0x77,0xee,0xae,0xdc,0xda,0x4b,0x15,0x37,0xff,0x69, +0x1f,0xec,0xb7,0xc3,0x67,0xb8,0x7d,0xf0,0x81,0x64,0x6f,0x67, +0xbe,0xcb,0xb6,0xcb,0xb2,0xd5,0x34,0xd4,0x23,0xc4,0x7b,0x57, +0x80,0xf7,0xd7,0x3e,0xa7,0x7c,0x4e,0xc5,0x98,0xf3,0xbd,0x67, +0xfb,0xcf,0xf6,0x4a,0xed,0x83,0x7b,0x85,0x75,0x6c,0xe9,0xd9, +0x52,0x1a,0x16,0x38,0xf8,0x5e,0xd8,0x4d,0x8c,0xa7,0x61,0xa4, +0x0c,0x36,0x31,0x41,0xeb,0xfd,0x36,0x79,0x19,0x85,0x9f,0xda, +0xf3,0x4d,0xf8,0xa9,0xf3,0x66,0x3c,0x8c,0x8f,0x05,0xbd,0x64, +0x20,0xe9,0xe9,0xc1,0xe9,0xc1,0x69,0xc1,0x2d,0xa5,0xbc,0xdd, +0x23,0xb3,0xa7,0x66,0xf7,0x1c,0x03,0xf8,0x3c,0x9f,0x3c,0xef, +0x5c,0xaf,0x35,0x87,0xe6,0x47,0xcf,0x3f,0x5e,0xda,0x5f,0x72, +0xa3,0xf0,0x21,0x07,0xd7,0x3b,0x31,0x81,0x81,0x31,0x43,0xa1, +0x24,0xf8,0x48,0x0c,0xa5,0xae,0x2f,0x8c,0xf1,0x1d,0x6b,0x9c, +0xbb,0xa7,0x5f,0xfd,0x39,0xd3,0x94,0x9e,0x5d,0xa9,0x01,0xfa, +0xac,0x19,0xe5,0xb6,0x4e,0xac,0x78,0x56,0x87,0xc0,0xf2,0x37, +0x3d,0xf0,0x39,0xec,0x99,0x64,0xc2,0xa0,0x8b,0xf3,0x2c,0x9c, +0xbd,0x5c,0xdd,0x11,0xca,0x48,0xba,0x79,0xe2,0xf6,0x38,0x03, +0x79,0x06,0x1f,0xdd,0x7f,0xe0,0xc6,0x01,0x85,0xc4,0xa2,0x5b, +0x49,0xed,0x77,0x59,0xbf,0x24,0x4b,0xad,0x87,0xa3,0x96,0x85, +0x2d,0x77,0x5b,0x4d,0xd9,0xff,0xd3,0x18,0xe9,0x60,0x96,0x94, +0x6d,0xe7,0xfe,0xdb,0x21,0xd3,0x90,0x15,0xf7,0xe0,0x06,0x52, +0xe0,0x57,0xe4,0x56,0xe8,0xba,0xfa,0xe8,0xb2,0xe3,0x0b,0x4e, +0x94,0xf5,0x96,0x7f,0x9b,0xff,0x80,0x83,0xdc,0x6e,0xf1,0x88, +0x39,0x2c,0x65,0x82,0x37,0x78,0xad,0xf3,0x32,0x0e,0x3b,0x15, +0xf6,0x4d,0xd8,0xa9,0x18,0x63,0x1e,0x56,0xc5,0xc2,0xf4,0x38, +0x98,0x90,0x9c,0xb4,0x27,0x31,0x3c,0x3e,0x5c,0x5e,0xce,0xdb, +0x3f,0x32,0x7c,0x65,0xdb,0xcb,0xc1,0xde,0xc7,0x64,0x88,0x1f, +0x50,0xf2,0xac,0x38,0x5a,0xa4,0xc4,0xd4,0xaf,0x1b,0xfd,0x40, +0xd3,0x08,0x35,0xd1,0xdb,0x1c,0xbc,0xd1,0x80,0xd9,0x74,0x64, +0xc3,0x51,0xad,0x63,0xd2,0x41,0x53,0xab,0x34,0x58,0x9e,0x0e, +0x2b,0x8b,0x4e,0x74,0xf3,0x9b,0x22,0x37,0x46,0x6b,0x1f,0xa6, +0x11,0xe2,0xbd,0x72,0x03,0xa5,0xb0,0x99,0x56,0xbd,0x1d,0x90, +0xde,0x8e,0xe9,0x9d,0xa6,0x32,0xcc,0x94,0x5e,0x4e,0xdb,0xc0, +0x69,0x2b,0x16,0x76,0x89,0x22,0x11,0xc6,0xb4,0x8a,0x63,0x06, +0xe0,0x29,0xe4,0xe1,0x53,0x85,0xb0,0xaa,0x55,0x5c,0xd5,0xcd, +0x80,0xda,0x79,0x50,0x8d,0xfb,0x35,0x71,0x5f,0x2b,0x8f,0x26, +0x61,0x98,0x15,0x85,0x15,0x5f,0xc7,0xda,0xf1,0xc0,0x9c,0x06, +0x86,0x62,0x86,0x73,0x9c,0xa5,0x38,0xdb,0x4e,0x98,0x6d,0x89, +0x37,0x30,0x0f,0x6e,0x18,0xe1,0x7b,0x3b,0x78,0xbf,0x4d,0x5c, +0x69,0xf3,0x7e,0x6a,0xbb,0xa8,0xc7,0x9a,0x0a,0x73,0x88,0x11, +0xc6,0x0f,0xb0,0xc2,0x13,0x23,0x82,0xd9,0x03,0x90,0xcd,0x88, +0x4f,0xf0,0x23,0x02,0xf1,0x5b,0x29,0xff,0x82,0xeb,0x13,0xae, +0x43,0xf6,0x56,0xca,0xa0,0x37,0x29,0xef,0x12,0x53,0x03,0xcc, +0xbc,0x6c,0x62,0x80,0xa7,0xad,0xe0,0xb4,0x71,0x5f,0x3f,0x64, +0x1a,0xf7,0xf6,0x43,0x5a,0x07,0xa6,0x31,0xe2,0x9f,0xb8,0x8e, +0xf4,0xfa,0x5d,0x72,0x95,0xbb,0x95,0xd7,0xf3,0x8e,0xb5,0x9b, +0x5a,0x64,0x45,0x12,0x5c,0xcb,0x20,0xc2,0x37,0x70,0x4e,0xfc, +0x86,0x11,0xcc,0x67,0x11,0x51,0x4d,0x21,0x09,0x4d,0xa9,0xcd, +0x21,0x82,0x9a,0x99,0x48,0xaf,0x3e,0xd9,0x4b,0xfa,0x7c,0x15, +0xfe,0x03,0x4e,0x65,0x2d,0xbc,0x79,0xa3,0x51,0xb9,0x59,0x09, +0x27,0x8c,0x40,0x7d,0xe2,0x6c,0xb9,0xcd,0x65,0xa1,0x7b,0xbe, +0x13,0xdf,0x9e,0xd5,0x9c,0x5b,0x4b,0xbf,0x88,0x67,0x8c,0xf4, +0x17,0xd9,0xe0,0x48,0xd7,0x7c,0x9a,0x5b,0xb9,0x56,0xf8,0xa8, +0xeb,0xf1,0x3b,0x8e,0x26,0x15,0xcb,0x95,0x4b,0xf4,0x70,0x8c, +0x55,0xb1,0x13,0x9d,0x73,0x03,0xef,0x6e,0x0f,0x52,0x00,0x72, +0x87,0x39,0xe5,0x74,0xd2,0xe1,0x98,0x27,0xe7,0x74,0xf4,0x40, +0xa4,0xf5,0xe4,0xa9,0x92,0x5a,0xf6,0x4f,0xcc,0xeb,0x9c,0xe2, +0xc1,0x78,0x8d,0x0b,0x8d,0x67,0x6e,0x9e,0xbe,0x2d,0x61,0xda, +0xb4,0xf4,0xd4,0x8c,0xe4,0x4c,0x4e,0x30,0x6f,0x1b,0x5a,0x61, +0xcb,0xe8,0x49,0x5b,0xab,0x46,0x53,0x65,0x3b,0xda,0xdd,0xf9, +0x9e,0xdb,0x03,0xa0,0x52,0xf9,0x84,0x93,0x64,0x2c,0xa6,0x90, +0x41,0xc8,0x95,0xf5,0x75,0x42,0x56,0x07,0x66,0xdd,0x32,0xd9, +0x8c,0xb9,0xd2,0xcb,0x37,0x56,0xf0,0x8d,0x3e,0x0b,0x2a,0xa2, +0x17,0xc9,0x4d,0xcb,0x49,0xcb,0x4c,0x2f,0x0a,0x29,0x0e,0xcc, +0x0d,0xac,0xaa,0xe0,0x43,0x8b,0xfc,0x0b,0x03,0x73,0xf2,0x73, +0xb3,0xf3,0x33,0xf2,0x39,0xd8,0xc1,0xa4,0x87,0x66,0x85,0xe6, +0xee,0x0a,0x09,0xf0,0xf2,0x0b,0x0a,0x2f,0xf3,0xe4,0xcb,0xb2, +0xcb,0x4b,0x0a,0x4a,0x32,0xf7,0x67,0xef,0xcf,0xdb,0x57,0x56, +0xcb,0x1b,0x55,0x3b,0x54,0xfb,0xd4,0x71,0xf0,0x59,0x2b,0x2e, +0x63,0xf6,0xe7,0x47,0x16,0x44,0x53,0x4b,0x37,0xb6,0x50,0xaf, +0xc7,0x57,0x5c,0xa8,0x8a,0xad,0xb3,0x8a,0xe1,0x8f,0xba,0x1c, +0x76,0x8b,0xf2,0xe4,0xd0,0xc8,0x9e,0xa2,0xc3,0xa8,0xc0,0x83, +0xc1,0x92,0x40,0xc6,0x02,0x3b,0xe0,0x18,0x6f,0x67,0x7b,0x77, +0x23,0x77,0x4e,0x30,0x80,0x3e,0x52,0x5c,0x9c,0x55,0x99,0x5c, +0x60,0x9f,0xcd,0x47,0xf8,0x85,0xef,0x0c,0xa6,0xd9,0xd7,0x6a, +0xc2,0xbe,0xa2,0xf0,0xa2,0x90,0x42,0xa7,0x60,0x3e,0x37,0xf8, +0x62,0x70,0x46,0x00,0x27,0xae,0x96,0x5a,0xbf,0x3a,0x9e,0xc4, +0x71,0xfa,0x38,0x42,0xbd,0xcd,0xad,0xfe,0x6e,0xc6,0xb3,0x0b, +0x30,0x52,0xd2,0x3b,0x77,0x42,0x86,0xc9,0xb0,0x50,0x79,0xc6, +0xb4,0xa5,0xd2,0x24,0x2c,0xfc,0x85,0xb1,0x2c,0xd8,0xd1,0x9b, +0x80,0xd3,0x60,0x3c,0x4c,0x63,0x84,0x29,0x6b,0x49,0x7c,0x60, +0x62,0x70,0x32,0xfd,0xe5,0x4f,0x68,0x90,0x4f,0x2a,0x48,0x28, +0xe2,0xc4,0x28,0x3c,0x40,0xce,0xd4,0x9e,0x6e,0x68,0x99,0x04, +0xd3,0x50,0x8d,0x11,0xa6,0x51,0xde,0x72,0x0c,0xf4,0xcc,0xf0, +0x26,0xb2,0x4c,0x92,0x35,0xe5,0x61,0x4d,0x69,0xe9,0x35,0x1a, +0x7f,0xb1,0xf1,0xe7,0xcf,0xc6,0x1d,0x53,0x07,0x77,0x9c,0x59, +0xd2,0x4a,0xc3,0xef,0x57,0x07,0x12,0x0e,0x9d,0x88,0x8e,0x54, +0xc3,0x19,0x67,0x88,0xb3,0xc3,0x26,0x87,0x1d,0x41,0x25,0xf6, +0xfc,0xcd,0xd2,0x5b,0xf2,0xa6,0x56,0x69,0x75,0x2a,0xbf,0x24, +0x60,0x6d,0x84,0xd6,0x78,0xdb,0x14,0x6e,0x8b,0xf7,0x70,0x0b, +0x9b,0x61,0xac,0x02,0xf3,0x3e,0xb4,0xff,0x15,0xae,0xc2,0xe8, +0x5e,0x76,0x08,0x61,0x3d,0x91,0xc1,0x60,0x27,0x5b,0x46,0x71, +0x55,0x8f,0x38,0xde,0x8c,0x6d,0x5c,0x4d,0xdf,0xe8,0xe8,0x94, +0x0e,0xd3,0x5c,0x25,0x6e,0x3f,0x5a,0xbf,0x96,0xdd,0xb3,0xf3, +0xe3,0xe5,0x9b,0xda,0x96,0xd6,0xce,0xe7,0xf0,0x3c,0xcc,0x27, +0x5d,0xd8,0x61,0xc1,0x76,0x89,0x0b,0x69,0x28,0x3d,0x05,0xb9, +0xd8,0x25,0x75,0x22,0x3a,0xf5,0xa1,0x13,0x91,0x99,0xd4,0x89, +0xe8,0xbd,0xa9,0x50,0x4d,0x9a,0x50,0x9b,0x8d,0xca,0x8d,0xce, +0x3b,0x9a,0xc7,0xc1,0xd6,0x46,0xac,0x64,0xe2,0xaa,0x62,0x6a, +0xcf,0xd7,0x5b,0xc7,0xf0,0xc7,0x1d,0x8f,0xb8,0x1c,0xf6,0xe0, +0xd0,0xd4,0x09,0xf4,0x98,0x23,0x3b,0xa3,0x43,0xa2,0x77,0x71, +0xa8,0xeb,0x08,0xf3,0x19,0x37,0x5d,0x0b,0xe3,0x0d,0x16,0x45, +0x4e,0x7c,0x66,0x4a,0x46,0x6a,0x7a,0x2a,0x17,0x26,0x18,0xe6, +0xb1,0xa9,0xfb,0xd3,0x22,0xd2,0x22,0x4a,0xea,0x78,0x83,0x4e, +0x8b,0xcb,0xee,0x37,0xb8,0x02,0x68,0x22,0x91,0x7e,0x7b,0x7c, +0xf6,0x04,0xd7,0x87,0xf0,0xb9,0xc5,0x99,0x95,0x29,0xe5,0x1c, +0xbe,0xd3,0x21,0x07,0x8a,0xf6,0x94,0xef,0xca,0xa3,0xd1,0x3f, +0x37,0xe8,0x62,0x60,0x1a,0xbd,0x49,0x53,0xa9,0x45,0xd8,0x7e, +0x00,0x67,0x39,0xe0,0x68,0xf5,0x0e,0xb7,0x8a,0x1f,0xd2,0xdf, +0x5c,0x80,0x05,0x6a,0x30,0x19,0x53,0x86,0xf5,0x6c,0xef,0x4b, +0xa2,0xf4,0xad,0x1a,0xca,0x0a,0x3c,0xc1,0x82,0x89,0x24,0x71, +0x3a,0x01,0x4c,0x61,0x02,0x23,0xac,0x59,0x4b,0x62,0x43,0xe2, +0x42,0x13,0x42,0x38,0xe4,0x98,0xf8,0xdc,0x0b,0xb9,0x17,0xe8, +0xfc,0x1b,0x4d,0xef,0x49,0x72,0x48,0x4a,0x68,0x5a,0x28,0x87, +0x67,0x99,0xb4,0x9c,0x94,0xdc,0xa4,0x7c,0x4e,0x34,0xc1,0x3d, +0xff,0x0a,0xd4,0x4f,0x40,0x53,0x06,0x4c,0x7a,0x48,0x76,0x76, +0x66,0x76,0x46,0x2e,0x17,0x06,0x65,0x99,0x6c,0xfa,0xae,0x8b, +0xbb,0x2e,0x86,0x71,0xe2,0x22,0x9c,0x48,0x84,0x45,0x75,0xe2, +0x22,0x46,0x58,0x4a,0x99,0x48,0x9d,0xb8,0xc2,0x95,0xcd,0xc5, +0x43,0xa4,0x1a,0xfe,0xeb,0xd1,0x09,0xa6,0x62,0x00,0x9a,0xb2, +0xc2,0x4a,0x98,0x45,0x0c,0xf0,0xbf,0x97,0x59,0xd5,0x5b,0xca, +0x62,0x62,0xa2,0x7c,0x4b,0x79,0xcb,0x69,0xa9,0x1a,0xe4,0x91, +0x72,0x21,0x3c,0x62,0xc5,0x9f,0x30,0x8b,0x80,0x97,0x50,0x84, +0x5e,0x2c,0xe5,0x20,0x7d,0xa4,0xea,0x52,0xe5,0xc3,0xcc,0x01, +0xc3,0x4c,0x3e,0x6c,0x8b,0xf3,0x02,0x77,0x63,0x4e,0xcc,0x37, +0x79,0xcf,0xf7,0x31,0x62,0x77,0x03,0xd9,0xd3,0xeb,0x77,0x3b, +0xb0,0xd9,0x3c,0x94,0x2f,0xb6,0x2c,0xdd,0x9c,0x6a,0x4d,0x27, +0x43,0xbe,0x80,0xa4,0xb7,0xa6,0xb7,0xb9,0xa9,0xdd,0xa3,0x9a, +0x77,0x77,0x34,0xb7,0x35,0xf3,0xe6,0x42,0xeb,0x0f,0xd5,0xd6, +0x4c,0xea,0x34,0x13,0xd5,0x25,0xed,0x5d,0x2b,0xca,0x56,0x5b, +0x87,0x5b,0x4e,0x39,0xc6,0xb2,0x89,0xda,0x97,0xd6,0xc1,0xe4, +0x95,0xc5,0x6d,0xfc,0x6a,0xb9,0xa9,0xdc,0xa3,0x8d,0x13,0x63, +0xf0,0x26,0x01,0x4e,0x41,0xf1,0xef,0xf2,0x97,0xd0,0x84,0xc5, +0xd8,0x04,0xbc,0x68,0xc2,0x6c,0xda,0xa7,0x22,0x8c,0x95,0x89, +0x13,0xd9,0x7d,0x27,0xf6,0x9d,0xdc,0x77,0x22,0xce,0x94,0x07, +0xb5,0x42,0xf8,0xa4,0xe8,0xef,0xba,0xe3,0x0a,0x5e,0x12,0x02, +0x73,0x8d,0xe4,0x2a,0x94,0x8b,0x28,0x6e,0xc0,0xf5,0x60,0xc4, +0x0a,0x3b,0x0f,0x12,0xf4,0xb6,0x86,0x05,0x4c,0xb8,0x8e,0x9d, +0xce,0xa2,0xcd,0x95,0x4e,0xfc,0x6f,0x4f,0xfa,0x5f,0x65,0xfe, +0xc9,0xe1,0xa8,0xa1,0x44,0xd2,0x0e,0x2f,0x6d,0xfa,0x04,0x2d, +0xd1,0x41,0xd4,0x62,0x85,0xa9,0x82,0x0a,0xd1,0xc4,0x97,0x7f, +0xb0,0xf0,0x52,0x3a,0xe2,0xf5,0x11,0xbe,0x04,0xa9,0x33,0x4a, +0x3b,0xb4,0x90,0xeb,0x15,0x57,0x6a,0xda,0x1a,0xc3,0x71,0x86, +0xc9,0x26,0x54,0xd9,0x58,0x47,0x39,0xed,0xfc,0x77,0xd7,0xe1, +0x33,0x48,0x99,0x04,0x85,0x26,0x58,0xc2,0x4a,0xa9,0x73,0xaf, +0xba,0xb9,0xc5,0x3a,0xbb,0xf5,0xbe,0x9c,0xf2,0x23,0xbc,0x48, +0x1a,0x53,0xd3,0xeb,0x34,0xbe,0x1f,0xde,0xd5,0x1d,0x85,0x93, +0x59,0x8f,0xa8,0x0b,0x55,0x1a,0x70,0x8e,0x4d,0x8a,0x39,0x13, +0x7f,0x44,0x1d,0xf4,0x71,0x51,0x55,0x33,0xee,0x80,0xf9,0xd1, +0x17,0x0e,0x7e,0x13,0x19,0xa9,0x76,0xe8,0x90,0xca,0x51,0x50, +0x1a,0x0f,0x4d,0x61,0xf4,0xf2,0x43,0x1e,0xa8,0x8b,0xfb,0x84, +0x94,0xff,0x6f,0xd3,0x86,0x19,0xe0,0x41,0x82,0xb7,0xd8,0xac, +0x74,0xb0,0x68,0xf7,0xe5,0x9b,0xbb,0x3a,0x7e,0x28,0xbc,0xca, +0x89,0x21,0xb8,0x83,0x04,0xf7,0x3a,0x3c,0x72,0x19,0xb0,0x09, +0xe0,0x5b,0xf4,0xeb,0x74,0x8a,0x8c,0xb8,0x1a,0x31,0xef,0xff, +0xba,0x9b,0x14,0xc8,0x29,0x95,0x84,0xb9,0x7d,0x30,0xa6,0x27, +0xe9,0x15,0x17,0x8b,0x9b,0x7a,0x60,0x53,0x2c,0x93,0xb2,0x04, +0x3e,0x33,0x87,0x45,0x66,0xd9,0x9d,0x3c,0x7e,0xd9,0xa4,0x59, +0x2f,0xbb,0xcc,0x41,0x49,0x27,0x5e,0x7d,0xc4,0xbc,0xbd,0xf0, +0x3a,0xe1,0x7e,0xf2,0xce,0x76,0x3e,0x88,0x92,0x13,0xfb,0x28, +0x74,0x9c,0x9c,0x2a,0x53,0xb9,0xf7,0xe8,0xec,0xf9,0x87,0x1a, +0x1b,0xb0,0x56,0x06,0xb1,0xac,0xe5,0x8e,0xd9,0x8e,0xf8,0x99, +0x33,0x77,0x9c,0xae,0x60,0x97,0x7b,0x66,0x0f,0xad,0x7b,0x24, +0x5b,0xcc,0x14,0xeb,0xea,0x37,0x71,0x17,0xa6,0x91,0x7f,0xc6, +0xc5,0xfc,0xff,0x8f,0x4b,0x4c,0x61,0xfe,0xb1,0x44,0x58,0x68, +0x4b,0x52,0x28,0xb4,0x9f,0xc4,0x5c,0xc9,0xca,0xad,0x4c,0xd4, +0x48,0xae,0x3a,0xd7,0x7a,0xf6,0x3e,0x87,0xb3,0x99,0x84,0x8c, +0xf8,0x82,0xd8,0x2c,0xae,0x4a,0x5c,0x67,0x0d,0x93,0xd9,0x83, +0xc8,0x9a,0x6e,0xc4,0x71,0xf6,0x52,0x6f,0xee,0xc9,0x3d,0xf7, +0x5e,0xa6,0x80,0x26,0x05,0xea,0xcc,0xa1,0xc0,0x03,0x1e,0x7b, +0xbc,0x39,0xd0,0x62,0x4e,0x85,0x9c,0xf0,0x3d,0x1a,0xca,0xed, +0x3e,0xb6,0x3f,0xca,0x6b,0xb2,0x2a,0x9c,0x54,0x56,0x90,0xb8, +0xf5,0x55,0xc6,0x77,0x37,0x95,0xca,0xf9,0x1d,0x83,0x9e,0x83, +0x7b,0xaf,0x48,0x0a,0x33,0x1b,0x9c,0xb5,0xe7,0x4a,0xe7,0xa3, +0x7e,0xba,0xd5,0x29,0x29,0xcc,0x28,0xbd,0xf1,0x32,0x71,0x2b, +0xf2,0x29,0x0a,0x2c,0xae,0x2a,0x2e,0x29,0x2f,0xa8,0xf0,0xa4, +0xa4,0xda,0xd7,0xc7,0xdb,0x37,0xe8,0x40,0x66,0x44,0x66,0x54, +0x56,0x75,0x69,0x59,0x55,0x6e,0x95,0x67,0x29,0xbf,0xc7,0x2f, +0xc8,0xc7,0x2f,0x28,0xa2,0xfc,0x50,0xc5,0xd1,0x4a,0xeb,0x43, +0x7c,0x0e,0xf2,0x37,0x91,0x87,0xb5,0x38,0x86,0x13,0x0d,0x60, +0x2e,0x09,0xf2,0xf1,0xf1,0x73,0x0d,0x28,0x76,0xe4,0xe1,0xe3, +0x17,0xf7,0x60,0x44,0x3e,0x8c,0xa5,0x9c,0xdb,0xd0,0x06,0xbe, +0x64,0xa3,0x5d,0xf7,0xba,0x06,0xbb,0xed,0x2c,0xf4,0x2a,0x0d, +0xcc,0xf2,0xf7,0xe0,0x0b,0xf7,0x54,0x79,0x17,0x04,0x4a,0xf5, +0x1c,0xfb,0xc9,0x07,0x39,0xf6,0x31,0xaf,0x3b,0x31,0x5a,0xf6, +0x1c,0xc7,0x7c,0x90,0x63,0x1f,0x64,0xac,0xa2,0x2d,0xff,0x11, +0xac,0xf9,0x24,0x1d,0x26,0x15,0xbc,0xf8,0x20,0x58,0xe3,0x24, +0x09,0xd6,0x40,0xbe,0x60,0x44,0x20,0x4e,0x8e,0x71,0x8c,0x36, +0x4e,0x97,0xe8,0xf8,0x52,0x4a,0xc7,0xf1,0x3d,0x6a,0x13,0x90, +0x9e,0x03,0x8d,0x65,0xc5,0x9d,0x38,0x52,0x92,0xa1,0xe9,0xfb, +0x57,0x86,0x66,0xf8,0xac,0xd5,0x7e,0x98,0x4d,0x72,0x2d,0x72, +0xb4,0x12,0x4d,0x24,0xed,0xf6,0xbe,0xd0,0x67,0xbb,0x3a,0xe9, +0xbc,0xa3,0xdf,0x10,0xe9,0x18,0x66,0x1a,0x6a,0x2f,0xb5,0x12, +0x15,0x4a,0x14,0xb8,0x81,0xc9,0xac,0xbd,0x28,0x4f,0xa2,0xd4, +0x3d,0x60,0x06,0x89,0xae,0xdc,0xd7,0xbe,0xaf,0xcc,0x26,0x9c, +0x4f,0xf3,0xc9,0xb0,0x89,0xf3,0x96,0x8e,0xa3,0x28,0xf7,0x91, +0xd4,0xc2,0xa4,0xc2,0x0b,0xf9,0x16,0xe9,0x7c,0xf0,0x2a,0xd3, +0x55,0xda,0xdb,0xab,0x6c,0xf9,0x9a,0xf2,0xea,0xc6,0x92,0x66, +0x4e,0xe0,0xf0,0x23,0x06,0xc9,0x09,0xf4,0x8d,0xc0,0x31,0xea, +0xda,0x87,0xc2,0xbc,0xf4,0x26,0x6b,0x32,0xe9,0xa6,0x2a,0xcf, +0x99,0xbf,0x6b,0xba,0x60,0x4c,0x92,0x46,0x0a,0x7c,0x76,0x1e, +0x7c,0xa4,0x3e,0x2d,0xab,0x58,0xf1,0xf2,0x00,0xc1,0xa2,0xff, +0x8c,0x18,0x50,0x0e,0x50,0xcc,0x77,0x60,0x9b,0xc3,0x74,0x87, +0x55,0xdc,0x95,0x2d,0x75,0x1b,0xb6,0x4e,0x32,0x8d,0x08,0xb2, +0x54,0x77,0x61,0x12,0xf4,0x55,0xda,0x99,0x1b,0xb5,0x4d,0xbf, +0x7e,0xe7,0xf2,0xd0,0x7c,0x40,0xa3,0xfa,0x66,0x0b,0x7c,0x74, +0xf1,0x29,0x27,0x6c,0x10,0x7d,0x88,0x0c,0xc7,0x4f,0x07,0x43, +0x30,0x94,0xa3,0x21,0x70,0xb0,0x41,0x8e,0x65,0x4c,0x5c,0x56, +0x6c,0xe6,0xf9,0x4c,0x6a,0xf2,0x3e,0x99,0xaf,0x8e,0x8d,0x45, +0xb5,0x37,0x9f,0x53,0x90,0x55,0x9a,0x51,0xc6,0x3d,0x44,0x9a, +0x21,0xac,0xc1,0x14,0x0d,0x67,0xc1,0x78,0x19,0x9e,0xed,0xbc, +0x06,0x37,0x18,0xd5,0x26,0x65,0x03,0x31,0x13,0xf8,0x1e,0xf6, +0x0a,0xae,0x90,0xca,0xbf,0xe6,0x0a,0x19,0xe8,0xc6,0xa6,0xfe, +0x53,0xfe,0xe5,0xda,0x29,0x06,0xcb,0xc0,0x87,0x39,0xe4,0x17, +0x39,0x5c,0xfe,0xd5,0x79,0x5a,0xaa,0x05,0xb9,0x03,0x0a,0x16, +0x96,0xe2,0x22,0xf2,0x0e,0xea,0x67,0xb1,0x43,0xb6,0x8b,0x09, +0x58,0x80,0x0b,0x5a,0xb0,0xc2,0x99,0x5a,0x32,0x03,0xeb,0x7f, +0x97,0xd4,0xc7,0xbe,0x25,0x9e,0x07,0xdd,0xa3,0xdc,0xa3,0x72, +0x2f,0x67,0x3f,0x4a,0xba,0x6c,0x91,0xc2,0x1f,0xdc,0x12,0xb2, +0x20,0x40,0x7b,0xcb,0x5e,0xdd,0x03,0x7a,0x51,0xc9,0x14,0xa5, +0xaa,0x17,0x80,0x5a,0x19,0x7c,0xda,0xc4,0xe1,0x41,0x05,0xd9, +0x7f,0x29,0xfc,0xfa,0x6e,0x85,0xf5,0x6e,0x3e,0x4b,0x96,0xb5, +0x25,0xd9,0x94,0x13,0x66,0x80,0x35,0x81,0x7a,0x1c,0x89,0xf5, +0xcc,0x34,0x3c,0x47,0x1e,0x54,0xf5,0x35,0xb7,0x2b,0x9c,0x2a, +0x78,0x67,0x5b,0x23,0x67,0x3d,0x3f,0x0e,0xee,0x7f,0x4f,0xba, +0x7c,0x6f,0x5b,0xcb,0xed,0x2a,0x1a,0x79,0x9b,0x26,0xbd,0x56, +0x8b,0x32,0x1a,0x93,0x1f,0x0a,0x2b,0x49,0xb1,0x6f,0x59,0x60, +0x79,0x48,0x71,0x3d,0x6f,0x54,0x6f,0xd9,0xe9,0x46,0x97,0xb3, +0x66,0x33,0xbd,0x9d,0x07,0xf3,0xa3,0x0a,0x8f,0x50,0xfc,0x62, +0xd8,0x44,0xbf,0x30,0xae,0x2a,0xb6,0xe6,0x7c,0x3d,0xc5,0x2f, +0xc7,0x9c,0x8e,0x0e,0x27,0x4e,0x99,0x23,0x6c,0x63,0xa2,0x03, +0x0f,0x05,0x45,0x52,0x14,0xa1,0xe3,0x00,0xb3,0x18,0x77,0x03, +0x2b,0xcb,0xcd,0x8e,0x45,0x2e,0x7c,0x66,0xf2,0xc5,0x64,0x9a, +0x38,0xf1,0x84,0xb0,0x99,0xb5,0xfd,0x3a,0xe4,0x78,0xa0,0xba, +0xff,0xf1,0xc8,0x68,0x8f,0xc9,0xc6,0x4c,0x92,0x93,0xca,0x65, +0xa6,0x37,0x3b,0xbb,0x25,0x5e,0x23,0xb6,0xee,0x5c,0xd5,0xb3, +0x49,0xb8,0xbf,0x0b,0x0c,0x6b,0xd1,0xb0,0x13,0x0c,0x6a,0xd1, +0xa0,0x93,0x81,0x89,0xc2,0x6a,0x72,0xd0,0xfb,0x80,0xdf,0xae, +0x80,0x96,0x50,0x3e,0xa7,0x24,0xad,0x4a,0x4a,0xac,0x3f,0xeb, +0x90,0xfd,0xc5,0x7b,0xca,0x76,0xe5,0x3b,0xec,0x1a,0x4e,0xac, +0xa9,0xfe,0x9c,0x38,0x05,0xad,0x08,0x76,0xfe,0x4f,0x62,0x2d, +0xff,0x21,0xfd,0xc7,0x0b,0xb0,0x50,0x0d,0x78,0x4c,0x99,0x25, +0x25,0xd6,0x7b,0x94,0x68,0x7c,0x48,0xac,0x87,0x59,0x30,0x90, +0x12,0xeb,0x97,0x34,0xb1,0x7e,0xc9,0x08,0xab,0xd6,0x92,0x0b, +0x41,0x09,0x41,0x49,0xc1,0x1c,0x7e,0xc1,0x24,0xe6,0xc7,0x17, +0xc6,0x15,0x49,0xda,0x43,0x6a,0x24,0x99,0xa6,0xd5,0xf4,0xdd, +0x1c,0xe6,0x30,0x69,0xd9,0xa9,0x39,0xc9,0x79,0x9c,0xa8,0x8b, +0x01,0xff,0x26,0xd6,0x2f,0xa5,0xc4,0x1a,0xd4,0x44,0x3a,0x61, +0xbe,0x8c,0xc5,0xf9,0xf3,0xff,0xbd,0x98,0x47,0xba,0x60,0xbe, +0x05,0x0b,0xab,0x71,0x01,0x39,0x5c,0x18,0x59,0x7e,0x30,0xdb, +0xf3,0x10,0x9f,0xb8,0x2b,0xc9,0xf7,0x42,0x10,0x87,0xe2,0x4a, +0x52,0xd2,0x9a,0x33,0x90,0xd0,0xe3,0x98,0xc4,0x47,0x59,0x85, +0x99,0xf9,0x39,0x71,0x90,0x03,0xd3,0x49,0x92,0x5b,0xb2,0x5d, +0xac,0x43,0x43,0x1c,0x7f,0xb4,0x25,0xa2,0x2d,0xa2,0x8a,0xc6, +0xab,0x68,0x12,0xef,0x10,0x6b,0x72,0xc6,0xa6,0xf9,0x02,0xff, +0x75,0xeb,0x91,0xfe,0xc8,0x26,0x4e,0xf5,0x21,0x9d,0x65,0xff, +0x19,0xd1,0x27,0x7c,0x0b,0xfd,0xd0,0xc2,0x7e,0x2f,0xd5,0x11, +0xdd,0x17,0x93,0x71,0x34,0x93,0x68,0x49,0xb1,0x58,0xa3,0xd4, +0x9c,0x59,0x59,0x23,0x8e,0x67,0x29,0xc4,0x50,0x25,0x77,0xe0, +0xcc,0x26,0x16,0x5c,0x27,0xdc,0x81,0x8c,0x4d,0xec,0x90,0x07, +0x8e,0x23,0x0f,0xe0,0x8c,0xb6,0xf4,0xce,0x03,0xc8,0xd0,0x66, +0x3d,0x28,0x42,0x68,0xdb,0xfc,0x93,0xe5,0x7c,0xdc,0x6a,0x0b, +0x5b,0xf1,0x32,0x12,0x36,0xd9,0x5a,0xd2,0x77,0xac,0x4d,0x49, +0xae,0xd5,0x80,0x7e,0x56,0x6c,0x05,0x8e,0xd8,0x40,0x6b,0x3b, +0x8b,0x05,0xd3,0x24,0xf5,0xbe,0x04,0x30,0x66,0xd1,0x0d,0xa7, +0x92,0x1f,0x61,0xd1,0x42,0x16,0xc2,0xb6,0x92,0x7d,0x6d,0x41, +0x03,0xbb,0x2a,0x9d,0xc3,0xf9,0x3c,0x8f,0x02,0xfd,0x34,0xba, +0xec,0x0d,0x36,0x93,0xa4,0xe2,0xa4,0xd2,0x0b,0x05,0xd4,0xba, +0x23,0xde,0x11,0xae,0x11,0x3e,0xc6,0x87,0xf5,0x8f,0x98,0x1d, +0x8f,0xb5,0xe1,0x61,0x54,0x02,0x68,0x64,0x3e,0x48,0x3f,0xd6, +0xca,0xef,0x3c,0xe6,0x77,0xcc,0xe7,0x18,0xa7,0x99,0x40,0xa2, +0x8b,0x22,0xca,0x22,0x72,0x5d,0x0e,0xf0,0xc9,0x3b,0x53,0x7c, +0xe3,0x03,0x29,0x1c,0x37,0x55,0x7e,0x47,0x82,0xd0,0xd4,0x06, +0x17,0xac,0x47,0xae,0xca,0x8e,0x4f,0xcf,0xc9,0x28,0xcd,0xa8, +0xa2,0x69,0xbe,0x4b,0x39,0x91,0xcd,0xbf,0x9f,0xfd,0x22,0xf9, +0x27,0x4e,0x28,0x3b,0x43,0x2c,0xd0,0x7c,0x55,0x16,0xea,0x3c, +0x64,0x3a,0xe3,0xda,0x13,0x9a,0x53,0x76,0x35,0xf3,0x8b,0x83, +0x90,0x8d,0x40,0xfe,0x48,0x82,0x2d,0xdf,0x7e,0xb6,0xf5,0x5c, +0x53,0x0c,0xa7,0x8b,0x5b,0x6c,0x60,0x8b,0x1e,0xce,0xc7,0xeb, +0x30,0x5f,0x17,0xb5,0x6d,0x41,0x7b,0x31,0x6b,0x78,0xcc,0xf0, +0xb8,0xe1,0x89,0xf3,0x34,0xea,0x7f,0x15,0x07,0x34,0x86,0xa8, +0x5e,0x3c,0x79,0x4c,0x6a,0xf9,0xd1,0xe0,0xca,0xbf,0x80,0xe5, +0xf9,0x60,0x71,0x1a,0x06,0xb8,0x57,0x0c,0x9e,0x3b,0x8a,0x6b, +0x0f,0xcf,0x53,0x37,0x3b,0x7a,0x68,0xbf,0xe3,0x64,0x07,0x26, +0xc5,0x58,0xa5,0x99,0xb9,0x9d,0x53,0xf1,0x38,0x4e,0x23,0x01, +0x98,0xf3,0x30,0x1b,0x1e,0x4e,0xc2,0x39,0x0c,0x6a,0x8a,0xbf, +0x12,0xcb,0x23,0xe6,0x47,0xcc,0x8e,0x72,0xcf,0x61,0x4d,0x1b, +0xae,0xb9,0x0d,0x4b,0xe0,0x3a,0x2e,0xb9,0x09,0x3a,0xc1,0xcf, +0xd8,0x53,0x98,0xb9,0x1b,0xb7,0x18,0x23,0xcf,0xe1,0x6e,0x61, +0x3f,0x59,0x33,0xf7,0x09,0x0b,0xf3,0x27,0xfc,0xbe,0x66,0x06, +0x63,0x65,0x4f,0x96,0xcd,0x7d,0xc1,0x42,0xec,0x32,0x32,0xe3, +0xc5,0xef,0x8c,0xaa,0x72,0xa7,0xf2,0x0e,0x31,0x41,0xb3,0x65, +0xa6,0x2f,0x98,0x93,0xd8,0xec,0x8a,0x7a,0x0b,0x51,0xb3,0xc9, +0x81,0xff,0x13,0x96,0x37,0x82,0xc3,0x59,0x50,0x48,0x7b,0xfe, +0xf8,0xcd,0x31,0x5c,0x1d,0x35,0x4b,0xdd,0xf8,0x68,0x64,0x84, +0xd5,0xe4,0xf5,0x4c,0xaa,0x89,0xca,0x03,0xe6,0x41,0x61,0xc5, +0x93,0x78,0x8d,0x64,0xf8,0xf8,0x1c,0xcc,0x83,0xdb,0x93,0xd0, +0x9a,0x41,0x3b,0xf1,0x27,0x62,0x12,0xbd,0xf9,0x88,0xce,0x11, +0xee,0x15,0xb8,0xb4,0xa2,0xcb,0x3d,0xb0,0x84,0x2e,0xb4,0xbc, +0x0b,0xfb,0xda,0x70,0xdf,0x77,0xec,0xf5,0x0b,0x83,0xf1,0x9d, +0x29,0x21,0xcd,0x3c,0xb2,0x41,0x38,0x33,0x0a,0x17,0x1d,0x8b, +0xb3,0xe3,0x07,0xce,0x0c,0x9c,0xeb,0x3b,0xcf,0xad,0xc3,0x50, +0x5b,0x08,0xdd,0x88,0xe6,0xd8,0x05,0xe6,0x3a,0xe8,0x6b,0x07, +0xbe,0xf3,0x59,0xed,0x63,0x5a,0xc7,0x37,0x9d,0x94,0x9c,0xa6, +0x13,0x0b,0x96,0x19,0xc0,0x67,0x71,0x98,0x25,0x1c,0x23,0xeb, +0x70,0xca,0x23,0x16,0x9e,0xaf,0x23,0x38,0xf5,0x11,0x4c,0x65, +0xf0,0x39,0x7e,0x41,0x60,0xca,0x2a,0x9c,0xc2,0x80,0xd5,0x84, +0x67,0x30,0x75,0x15,0xc5,0x45,0xcb,0x94,0xbb,0x88,0x72,0xe3, +0x90,0x2f,0x46,0x4a,0x4e,0x04,0x57,0xa6,0x33,0x27,0x4b,0xa1, +0xa1,0x8c,0x1f,0xea,0x1c,0x82,0x41,0xf6,0x9d,0x72,0x2c,0x11, +0x76,0x76,0x8b,0x3b,0x99,0x5f,0xc4,0x1e,0x72,0x17,0xde,0xc2, +0x75,0x71,0x9e,0x38,0x99,0x1d,0x80,0xef,0x09,0x94,0xa3,0x8b, +0xa4,0xbe,0xa0,0xfc,0x5d,0xa9,0x42,0x70,0xf1,0x00,0x78,0x89, +0x33,0x61,0x91,0x11,0x2e,0x12,0x09,0x7a,0x5d,0x82,0xc5,0x2c, +0x18,0xbf,0x24,0x01,0x0d,0xfe,0x15,0xfe,0xc5,0xb6,0xfe,0x7c, +0xb9,0x5f,0x91,0x77,0x21,0xe5,0x4a,0xfb,0x60,0x1a,0xd9,0xe5, +0xe9,0xe7,0xe6,0xe9,0xd3,0xea,0xcf,0x57,0x16,0x57,0xb5,0xe4, +0xd2,0xd5,0x54,0x3f,0x34,0x8f,0xc0,0x5f,0x5d,0xf8,0xd7,0xdf, +0x10,0x0b,0x27,0xc4,0x76,0x3c,0x01,0x87,0xa7,0xe2,0x0b,0x0b, +0x78,0x81,0xe3,0xc4,0x99,0x66,0xef,0x55,0x7a,0xc4,0x55,0x74, +0xcc,0x42,0x08,0xc1,0x29,0xe2,0x56,0x98,0xc2,0xaa,0x0a,0x9f, +0x2a,0x35,0x09,0x5e,0xa3,0xc4,0xf6,0x1a,0x9e,0x67,0x63,0x52, +0x63,0xd2,0xce,0xa7,0x70,0xd0,0xdc,0x8c,0x96,0x4c,0x56,0x4e, +0x6a,0x6e,0x4a,0x81,0x75,0x2a,0x1f,0x11,0xb4,0x27,0x30,0xd8, +0x97,0xc3,0x2d,0x4c,0x7d,0xd6,0xde,0xfc,0xb0,0xbc,0x7d,0xe9, +0x6a,0xf6,0xbb,0xd2,0xf7,0x5e,0x0c,0x4d,0x0f,0x55,0xc3,0xed, +0x0e,0x90,0xc3,0x9c,0x88,0x38,0x76,0xe0,0xc8,0x7e,0x0e,0x5b, +0xaa,0x88,0x53,0x93,0x49,0x9b,0x7d,0xa9,0x9b,0x37,0x2f,0xf7, +0xec,0x70,0x69,0xb3,0xe5,0xc0,0x6e,0x09,0x69,0x11,0x26,0xd8, +0xb3,0x30,0x09,0xcb,0x88,0x98,0xca,0xa0,0xba,0x6b,0xd5,0x23, +0x0d,0x30,0x47,0x99,0x3d,0x7d,0x6b,0x3a,0xbb,0xc9,0xd1,0x6f, +0x86,0xaf,0x7a,0x96,0xed,0xdf,0x15,0x95,0x95,0x17,0xae,0x52, +0xc4,0xa3,0x7b,0xa1,0xdd,0x09,0x16,0x4f,0x86,0xf0,0x2d,0xe2, +0x1f,0xd6,0xc2,0x1f,0xf8,0x19,0xea,0x31,0x69,0x74,0xcd,0x2e, +0x62,0x1a,0x2f,0x4a,0x5d,0x4b,0x47,0x83,0xa3,0x1c,0x1d,0x6f, +0x80,0x1f,0x2b,0xc6,0xc2,0x31,0xd2,0x2a,0x4c,0xb0,0x63,0xc5, +0x09,0x4b,0x48,0x9b,0x30,0xc1,0x96,0x15,0x5f,0xe3,0x35,0xa2, +0xf0,0x6b,0xf7,0x68,0x72,0xa9,0xae,0xe6,0x1d,0xea,0x6d,0xab, +0x2c,0x8b,0x69,0xac,0x9f,0xa6,0x4c,0x23,0x97,0x0c,0x0d,0x31, +0xd3,0x56,0xf8,0x4f,0x1b,0x3b,0xe4,0x38,0xf4,0x8a,0xbc,0x9f, +0x6a,0xf2,0x9f,0xa9,0xac,0xf0,0x93,0x52,0x97,0xa4,0x17,0xa6, +0x96,0x24,0x16,0xdb,0x64,0xf0,0x87,0x02,0xc2,0x5d,0x76,0xd3, +0xcc,0x35,0xce,0x46,0xf9,0x71,0x3b,0x23,0x6a,0xe5,0x90,0xe8, +0x82,0x08,0x1a,0xd9,0x6c,0xc3,0xf9,0xe4,0xd0,0x14,0xbf,0x78, +0x1a,0x39,0xa3,0xca,0x48,0x82,0x6b,0xa2,0x49,0x8c,0x95,0x3c, +0x83,0x3f,0xd6,0x16,0x31,0x10,0x55,0xc7,0xa1,0x3b,0xde,0x22, +0xb9,0xdf,0x27,0xfc,0x76,0xee,0x4f,0xcb,0xf3,0xfc,0x89,0x19, +0xd1,0x0b,0x43,0x56,0x71,0xef,0xc7,0x61,0x3d,0xe9,0xc0,0xe2, +0x9b,0x70,0x1a,0x14,0x62,0x05,0x4d,0x84,0x91,0x7a,0x98,0x64, +0x05,0x49,0x3a,0x58,0x6d,0xa9,0x9c,0xa2,0xc0,0x9e,0x7b,0xac, +0xb9,0xf0,0x09,0xd1,0xc1,0xad,0xf7,0x58,0x88,0xd2,0x21,0xf7, +0xe8,0x3c,0x64,0x45,0x6d,0x7b,0x02,0x5b,0xb5,0x70,0x2b,0x03, +0x51,0x13,0x1e,0x82,0xb9,0x16,0xab,0xaa,0xd4,0x90,0xc6,0x6e, +0x64,0x88,0xd9,0xb6,0xca,0x11,0x74,0xec,0xaa,0xa2,0x2a,0x09, +0x8e,0x0c,0x8a,0x0a,0x8c,0xe2,0xe0,0xe0,0xd3,0xae,0xd5,0x60, +0x62,0x8a,0x26,0xf8,0xb1,0x05,0x7c,0xfc,0x4f,0x7f,0x45,0xd7, +0xe8,0x78,0x33,0xbe,0x3a,0xbe,0x66,0xb8,0x5b,0x7c,0xd9,0x54, +0xa9,0xbf,0xe2,0xf7,0x4c,0x53,0xea,0xc5,0x7a,0xa9,0x19,0x4f, +0x49,0x12,0xfd,0x93,0xc2,0x09,0x36,0x90,0x45,0xd2,0x0a,0x52, +0x4a,0x12,0x8b,0x24,0xb3,0x03,0xf7,0xba,0xec,0xf6,0xe6,0xc4, +0xb1,0x36,0xca,0x51,0xd4,0x6c,0xed,0xac,0xff,0x65,0x76,0x0a, +0x35,0x3b,0x2e,0x98,0x13,0x2c,0xc4,0x32,0x6a,0x4d,0xe9,0x4d, +0xa0,0x6b,0x54,0xac,0xa6,0xd6,0x1c,0xd2,0xc3,0x14,0x2b,0x48, +0xd1,0xc1,0x5a,0x4b,0xa5,0x86,0x02,0xfb,0xee,0xb1,0x16,0xc3, +0xd6,0x6c,0xa7,0xd6,0x1c,0x92,0xac,0x91,0x51,0x6b,0x36,0x52, +0x6b,0xb6,0x6b,0xe1,0x76,0x06,0x0e,0x51,0x6b,0x64,0xd4,0x1a, +0xc8,0x57,0xba,0x10,0xa7,0x5a,0xcb,0x7a,0xcb,0x52,0x5f,0x07, +0xbe,0xd3,0xbb,0xc5,0xa3,0xd9,0x85,0x83,0x71,0x43,0xfb,0x89, +0x72,0x40,0x38,0x32,0x14,0x81,0x56,0x2c,0x5d,0xee,0xb0,0x91, +0x69,0x4f,0xc9,0x68,0xd1,0x50,0x96,0x89,0xe2,0x7f,0x46,0xb0, +0xf0,0xb1,0x52,0x9d,0x08,0xe3,0xba,0xc4,0x71,0x0c,0xae,0x47, +0x1d,0x62,0xdf,0xa8,0x2f,0x37,0xae,0xf2,0x76,0xe0,0x7b,0x3d, +0xfa,0xec,0xe5,0xf6,0x1c,0x5c,0xc1,0x97,0xe4,0x1a,0xec,0x81, +0x9b,0x58,0x21,0x4e,0x60,0xbb,0xe1,0x29,0x01,0x6d,0x1a,0xc3, +0xb5,0xe9,0x2d,0xc4,0x4c,0xf2,0xe1,0xd1,0x5e,0xfe,0x9f,0x16, +0x17,0xff,0x1f,0xd6,0xde,0x03,0xb8,0x8a,0x6b,0x69,0x17,0x35, +0x18,0xcd,0x0c,0x18,0xcb,0x60,0xb3,0xf0,0x48,0x60,0x89,0x9c, +0x73,0xce,0x22,0x83,0x50,0xce,0x39,0xe7,0x84,0x50,0x44,0x80, +0x32,0x39,0x2a,0xa1,0x9c,0x73,0xce,0x39,0x6f,0x65,0x09,0x44, +0x8e,0x26,0x87,0x83,0x13,0xc6,0x81,0x83,0xdd,0xb3,0xdd,0x23, +0xff,0x6f,0x8d,0xf0,0xb9,0xf7,0xd6,0xff,0x57,0xbd,0x7a,0xb7, +0xea,0x15,0xc5,0xcc,0xd4,0xd6,0x0e,0x33,0xbd,0x56,0x77,0x7f, +0xdf,0x4c,0xaf,0xfe,0xa4,0x5e,0x7b,0x36,0x38,0x41,0x7d,0x3e, +0x9d,0x12,0x2b,0xff,0x31,0x6b,0xbc,0x99,0xf0,0x1d,0x35,0x6b, +0xc7,0xc8,0x4d,0x72,0x07,0xb6,0xcb,0x73,0x31,0x68,0xe4,0x2d, +0x0b,0x3b,0x46,0x35,0x62,0x61,0x2f,0x4c,0x60,0xa0,0x0b,0x19, +0x12,0x51,0x14,0x52,0x1e,0x92,0x6b,0x16,0xc8,0x27,0xfb,0xa5, +0xb8,0x51,0x83,0x40,0xe9,0x59,0x92,0x52,0x98,0x52,0xf2,0x1f, +0xfb,0xd9,0x05,0x50,0xfb,0x7d,0x69,0x2a,0x1f,0xd3,0xc1,0x8c, +0x5c,0xa7,0x4e,0x38,0x01,0xf7,0xe3,0x04,0x46,0x5e,0x87,0xf1, +0xd4,0x6c,0x59,0xb7,0xe0,0x38,0x35,0x5b,0x3a,0x35,0x5b,0xe0, +0x1e,0x49,0x86,0xf2,0xd2,0x36,0x2c,0x34,0x92,0x8f,0xeb,0xc2, +0xe6,0x87,0xd4,0x6c,0x9f,0x51,0xb3,0x6d,0xa3,0x66,0x0b,0x94, +0xcc,0xa6,0x4e,0xcd,0xb6,0x98,0x9a,0x6d,0xdb,0x16,0x0a,0x44, +0x20,0x70,0xea,0x23,0x50,0xdf,0x42,0x27,0x6c,0xb1,0xf4,0x95, +0x76,0xf4,0x2b,0x25,0xfd,0x94,0xd8,0xd1,0x8e,0x76,0x23,0xe6, +0xf2,0xc6,0x36,0x16,0x43,0x70,0x03,0xc9,0x2d,0xca,0x2e,0x4d, +0x2b,0x36,0xc8,0xe6,0x03,0x9d,0x7c,0xed,0x3d,0xdc,0x38,0xb1, +0xc9,0xec,0x2f,0xbe,0x9d,0x11,0x9f,0x64,0x91,0xa3,0x65,0xbe, +0x95,0x41,0x39,0x06,0xfe,0x7c,0xd6,0xa1,0x3c,0xb7,0xe4,0x43, +0x1c,0xb8,0x8b,0x19,0x44,0xf8,0x4c,0x26,0x7e,0x76,0x1f,0xee, +0x43,0xe9,0xc8,0x5e,0x2c,0x85,0x81,0xed,0x88,0xc6,0x80,0x5b, +0xc5,0x55,0x46,0x7f,0x7d,0xd3,0x25,0xee,0x64,0xb4,0x85,0x4f, +0x09,0x9e,0xbf,0x0f,0xe7,0x99,0xc1,0xed,0x34,0x5a,0xa5,0x6c, +0x67,0xc5,0xeb,0xf6,0x04,0xce,0x6f,0xc3,0xf3,0x0c,0x0c,0x3e, +0x24,0x90,0xb2,0x0d,0x53,0x18,0xc5,0xf7,0x42,0x1e,0xc1,0x01, +0x8a,0x44,0x2c,0xfe,0x43,0xf1,0x3f,0x22,0x11,0x15,0x4c,0x99, +0x2d,0x21,0x91,0x47,0xff,0x8b,0xe2,0x9f,0x65,0x61,0xf8,0xef, +0x31,0xa4,0x57,0x7e,0x55,0x98,0x36,0x12,0x81,0x6b,0xa4,0xa2, +0x2d,0x50,0x65,0xda,0x13,0x33,0x9a,0xe9,0x9f,0xc5,0x8b,0x2c, +0xf5,0x72,0x0a,0x54,0x78,0xd0,0x01,0x9e,0x01,0x1f,0x6a,0x70, +0x43,0xe8,0xef,0x66,0x47,0x16,0xe1,0xcd,0xff,0xe0,0x10,0x5e, +0xc2,0x21,0x97,0x61,0x01,0x11,0xa7,0xc8,0x6e,0x80,0x06,0xdc, +0x64,0x51,0x03,0x53,0x08,0x38,0xc1,0xd7,0xe8,0x44,0xdd,0x64, +0xa7,0xfc,0x3e,0xd1,0xde,0x81,0x99,0xf7,0xe8,0xe6,0x9c,0x3e, +0x9c,0xdb,0x3d,0x78,0x1b,0x32,0xa5,0x4d,0x6a,0x2f,0xa6,0x32, +0xa2,0xe3,0x22,0xe2,0xbe,0x4a,0x7b,0xe5,0xba,0xed,0x8d,0xf6, +0x7c,0x9f,0xac,0xa9,0xa7,0xa2,0x97,0x13,0x3e,0x30,0xa8,0x76, +0x12,0x97,0xfb,0xe1,0x67,0x2a,0x3b,0x8e,0x1d,0x0a,0xda,0x37, +0x6d,0x39,0x93,0xae,0xaf,0x70,0x87,0x81,0x49,0x45,0x35,0x3f, +0x65,0xa9,0x16,0xc0,0xe4,0x18,0x3a,0x03,0xdc,0x95,0x47,0xbe, +0x66,0xe2,0x33,0xe3,0xb2,0x62,0x33,0x39,0xf8,0x4b,0x74,0x27, +0xb3,0x50,0x0d,0x56,0x4a,0x3a,0x93,0x65,0xef,0x21,0x42,0x26, +0x4e,0x62,0x13,0xb3,0xe3,0xb3,0xe3,0x72,0x68,0xa4,0xf4,0xd9, +0x6b,0x75,0x40,0x53,0xbf,0xde,0x99,0x2f,0x29,0x2a,0x28,0xc9, +0x29,0xe5,0x60,0xfc,0x1c,0x2c,0x37,0x86,0x72,0x5c,0x89,0x6a, +0x1f,0xf4,0xd0,0xbb,0x6f,0x48,0xb0,0x85,0x95,0x74,0x0c,0x59, +0xe1,0x26,0x11,0xbd,0x85,0x58,0xc1,0x1b,0xd3,0xd9,0xd4,0xc2, +0xe4,0xa2,0x84,0x02,0x0e,0x1a,0xba,0xe9,0x25,0x16,0x94,0x67, +0x57,0xa6,0x57,0xea,0x67,0xf1,0x41,0x0e,0xbe,0x76,0x1e,0xd6, +0x74,0x52,0x19,0x42,0x35,0x13,0x71,0x28,0xc4,0xfb,0xe8,0x41, +0xee,0x04,0x6c,0x23,0xc7,0x2a,0x7c,0xca,0xfc,0x0b,0xf4,0x29, +0xf8,0xf5,0xce,0x73,0x4b,0xf1,0xe0,0xd0,0x9a,0x52,0x97,0xff, +0xa1,0x67,0x6e,0x8a,0x33,0xc9,0x0b,0xe1,0xeb,0x75,0x2c,0xfe, +0x97,0xb8,0xe5,0xff,0x68,0xbe,0xf4,0x71,0x05,0x11,0xfb,0xff, +0xbe,0x82,0x08,0xe7,0x09,0x1c,0x59,0x27,0x7e,0xfd,0x82,0xc5, +0x6f,0xc6,0x09,0x5f,0x2f,0x13,0xbf,0x66,0x14,0xc1,0x48,0x7e, +0x8b,0x04,0xa8,0xd9,0xff,0x23,0x6d,0x7f,0xbb,0xf3,0x75,0x92, +0xd4,0x76,0x30,0x61,0x63,0xb3,0xf6,0xf3,0xed,0x25,0x9d,0xfc, +0xf6,0xeb,0x36,0xc3,0x87,0x6f,0x70,0xb0,0xf2,0xef,0x69,0xa3, +0xc3,0x3c,0x85,0x0e,0xf3,0xca,0xd1,0x61,0x9e,0xfe,0xbf,0x86, +0xf9,0x14,0xfb,0x33,0xf5,0x5e,0x43,0xe8,0xea,0x66,0xc5,0x61, +0x2c,0x22,0x30,0xa9,0x0b,0x27,0x8d,0x6a,0xdd,0xfb,0x1b,0x3f, +0xc1,0xcf,0x50,0xd5,0x08,0x54,0xf1,0x1a,0x63,0x16,0x61,0xfa, +0x8f,0xd6,0xfd,0xd8,0x74,0x98,0x52,0xf8,0xb4,0xe0,0x6c,0x37, +0xef,0x14,0x6e,0x1f,0x6e,0x13,0xc9,0x41,0x97,0xb0,0xf4,0xe3, +0x04,0x50,0x97,0x26,0x80,0xfa,0xc7,0x09,0x40,0xe8,0x04,0x18, +0x59,0xfb,0x9a,0xe4,0xea,0xe7,0x6c,0xfa,0x47,0xcd,0xde,0x77, +0x54,0xcd,0xde,0xe3,0xbf,0xab,0xd9,0x53,0x56,0xa7,0x28,0x37, +0x90,0x2f,0x24,0x70,0xa8,0x17,0x0f,0xc1,0xe7,0x3a,0x78,0x1b, +0xd5,0xf5,0x85,0x13,0xbd,0x18,0xc7,0x88,0x3b,0x44,0x35,0x22, +0x0f,0xd2,0x19,0x09,0xda,0x28,0x88,0xfa,0x23,0x11,0x03,0x77, +0xa1,0x4c,0xbe,0x41,0x5f,0x14,0x59,0xa8,0x06,0x37,0x22,0x4e, +0x1d,0x80,0x08,0x36,0x31,0xe6,0x52,0xc2,0x09,0x15,0xd8,0x8d, +0x13,0xcb,0x5a,0x71,0x07,0x8c,0x3f,0x96,0x10,0x71,0x2e,0x2c, +0x54,0x29,0x32,0x4c,0xe1,0x24,0x7c,0x0a,0x71,0xbd,0xe2,0x09, +0x7d,0xe6,0xff,0xd7,0x22,0x43,0xf1,0xed,0xef,0xa4,0x3e,0x35, +0xad,0x5e,0x15,0x3e,0x61,0x8d,0x52,0x14,0xf0,0x2b,0xdc,0xc2, +0x3a,0x87,0xc5,0x55,0xa9,0x7e,0xc7,0xbe,0xc8,0x7f,0x57,0x7b, +0xb7,0xd1,0xa3,0x9d,0xd7,0x76,0x5c,0xe3,0xa4,0xe6,0xcb,0xc1, +0x4c,0x6d,0xec,0x62,0xd5,0xf3,0xfc,0x6f,0xa8,0xc8,0x17,0x43, +0xde,0x7f,0xaf,0x40,0x5c,0x8c,0xaf,0x09,0xae,0x84,0x59,0x3a, +0x38,0x0b,0x37,0xe9,0xc1,0x26,0x2c,0x18,0x80,0x02,0x3a,0x1b, +0x85,0xb9,0xf8,0x05,0x09,0xad,0x3e,0x2c,0x3b,0x52,0xec,0x70, +0x8c,0x4f,0xf3,0xcc,0x34,0x4a,0x74,0xe2,0xc4,0xaf,0x91,0x25, +0x8d,0xb7,0x0a,0x5f,0x25,0xde,0x31,0x4d,0xe4,0x43,0xd5,0x7d, +0xb6,0x58,0x6b,0x70,0xd4,0x0e,0xc6,0x24,0xd5,0x3c,0x55,0xef, +0xb2,0x41,0x5b,0x12,0x1f,0xde,0x73,0xac,0x57,0xaa,0x4c,0x5c, +0x26,0x55,0x26,0xc6,0xee,0xb8,0xa8,0x2d,0x93,0x2a,0x13,0x23, +0x47,0x2b,0x13,0x61,0xb5,0x3c,0x84,0xc8,0x4b,0xfb,0x46,0xde, +0xfe,0xcd,0x5d,0xed,0x90,0xd7,0xf5,0x8d,0xd4,0xd1,0x1c,0x20, +0xd0,0x91,0xda,0x66,0x02,0xdb,0xf6,0xf4,0xdd,0x82,0xd3,0xd2, +0x46,0xa2,0xa2,0x37,0xf5,0xf6,0xe2,0xe9,0x9b,0x7a,0x8c,0xd0, +0x84,0x31,0x44,0x54,0x62,0xd2,0x8a,0x92,0x0b,0xe3,0x0b,0xcd, +0xd2,0xf9,0x50,0xb7,0x23,0xae,0xfe,0x14,0x76,0x14,0x1b,0x41, +0x04,0xa3,0xb1,0x6d,0xcd,0x9e,0x99,0xa6,0x25,0x16,0x7c,0x57, +0x41,0x7b,0x69,0x53,0x25,0x87,0x8b,0x84,0x00,0xf0,0x15,0xe7, +0xb3,0x79,0xf9,0xd9,0xf9,0x19,0x05,0x9c,0x40,0x63,0x7d,0x8c, +0x24,0x7e,0x30,0x01,0x46,0x70,0x02,0xcd,0x33,0xd9,0xf2,0x67, +0xc4,0x60,0xee,0xf6,0x75,0x4b,0xd5,0x2b,0x4d,0xf8,0x5f,0xee, +0x3e,0x79,0x3b,0xf4,0x27,0x77,0x35,0x92,0xe0,0x5d,0x21,0x09, +0xee,0xb2,0x3a,0x94,0xf5,0x88,0x33,0x9e,0x08,0x33,0x18,0x4a, +0x22,0xbe,0x26,0xc2,0x8c,0xb5,0x22,0xc5,0x75,0x6b,0xee,0xd0, +0x8f,0x2c,0xc3,0xf1,0xf3,0x76,0x95,0x1b,0xf1,0xad,0x95,0x95, +0xe5,0x45,0x15,0x9c,0xa8,0x3d,0x20,0xc4,0xb1,0xa5,0xf5,0x65, +0x6d,0x25,0x9d,0x9c,0x70,0x18,0x5f,0x90,0xf7,0xef,0xbb,0xc5, +0x7e,0x43,0x61,0xc6,0x1c,0x71,0xab,0x81,0xb0,0x15,0x4d,0x71, +0x2e,0x9b,0xa6,0x2f,0xd5,0x6c,0xb7,0x66,0x48,0xf0,0x44,0x1f, +0xf8,0x1e,0x56,0xa2,0x2b,0xa4,0xd6,0xad,0xd9,0xba,0xd6,0xb4, +0xa9,0x9a,0x77,0x68,0xb5,0x6e,0xb1,0x97,0x94,0x20,0x7c,0xe5, +0xaf,0x89,0xe5,0x3c,0xad,0xf5,0x9b,0xf7,0x49,0x92,0x0e,0xf7, +0x6f,0xfc,0xdc,0xf1,0x81,0x6b,0xc4,0x08,0x82,0xe9,0xc2,0x8f, +0x90,0x8e,0xb9,0x6f,0xe1,0x4a,0x0f,0x5e,0x79,0xaf,0x33,0x07, +0x9b,0x0d,0xa0,0x79,0x31,0x8b,0xbf,0xe5,0x11,0xeb,0xf9,0x9b, +0xf0,0xf3,0xf5,0x3b,0xcb,0x8d,0xf9,0xea,0xf2,0xa2,0xf2,0xdc, +0x32,0x4e,0xd4,0xe9,0x13,0x32,0xd9,0xa2,0x86,0xc2,0xb6,0xdc, +0x76,0xee,0x15,0xba,0x11,0x58,0x0d,0x9f,0xe1,0x6a,0xb6,0x77, +0x2a,0x3d,0x50,0xa4,0x07,0xb0,0x1f,0x56,0x13,0x5c,0x8d,0x5f, +0xc0,0x6a,0x16,0x75,0x31,0x87,0xb4,0x7b,0xf4,0x9a,0x37,0x59, +0x56,0x37,0xf0,0x76,0x0d,0x5a,0x1d,0xe6,0xa5,0x5c,0x30,0x5e, +0x21,0x8e,0x91,0x97,0x2b,0x54,0xc1,0x45,0x1b,0x7d,0x59,0xf5, +0x6c,0xff,0x3b,0x2a,0x92,0x5e,0x5f,0x4a,0x4a,0xbb,0xea,0xbb, +0xd1,0x95,0xa1,0x93,0x69,0xee,0xf6,0x25,0xcd,0x8f,0xca,0xde, +0x65,0xbe,0x30,0x4c,0xe1,0x83,0xb6,0x7a,0x2c,0xb3,0x54,0x93, +0x56,0xef,0x7a,0x91,0x96,0x5d,0x35,0x2b,0x8b,0xd7,0xf7,0xe4, +0xf3,0x9e,0x2f,0x6c,0x7e,0xb4,0xba,0x29,0xc9,0x49,0x0b,0xd7, +0x88,0xa1,0x70,0xab,0x1b,0xd3,0xa9,0x0b,0xd4,0x76,0x63,0xed, +0xbf,0xb5,0x67,0x63,0xba,0x21,0xbd,0xa0,0x4f,0x59,0xac,0x81, +0xf9,0xc4,0xac,0x5e,0xbb,0x41,0xa7,0x74,0xb4,0x5c,0xa9,0xdb, +0xa9,0xd3,0x96,0x0b,0x43,0x33,0x62,0xde,0xb0,0xbf,0x45,0xab, +0x82,0xbe,0x36,0xe0,0x32,0x68,0x23,0xb3,0xe6,0xe4,0xaa,0x96, +0x04,0xc9,0x20,0x68,0x8a,0x02,0x6a,0xf6,0x03,0x61,0x81,0x5b, +0x43,0x70,0xbd,0xd6,0x1a,0x5c,0xaf,0xa7,0x52,0x48,0xed,0xab, +0x7b,0xf3,0x16,0x30,0xa0,0xa1,0x9c,0xa7,0xcd,0x0a,0x52,0x5a, +0x40,0x86,0xf1,0x88,0x88,0x2d,0x53,0x85,0x22,0x2d,0xac,0x63, +0xb5,0xb2,0xfd,0xae,0xa9,0xc0,0x64,0xca,0x0e,0xa5,0xfe,0xcb, +0x13,0x59,0xbd,0x34,0x85,0x91,0x9d,0xb0,0x8e,0xb8,0xe0,0xa7, +0xa6,0x52,0xb9,0x52,0xbb,0x1d,0x7f,0x5f,0xaa,0x61,0x2a,0xff, +0xc0,0x29,0x0a,0x93,0x00,0x88,0x7b,0x08,0xfd,0x47,0x21,0xd4, +0xf9,0xdf,0xfa,0xe7,0xc1,0x41,0x1d,0x3c,0xa8,0xc6,0x46,0x35, +0x5d,0x6a,0xb9,0xd8,0xaa,0x1f,0xcd,0x9f,0xc4,0x85,0xc7,0xf0, +0x0b,0xb7,0xc5,0x9d,0x5e,0x7c,0x66,0x47,0xca,0xf5,0xf8,0x07, +0xdc,0x33,0xcc,0x66,0xf4,0x82,0xf4,0x8e,0xea,0x85,0xa6,0x1c, +0xe0,0x65,0xc9,0xb2,0x54,0x59,0x3a,0x87,0xfd,0x03,0xf0,0x84, +0xad,0x48,0xaa,0x48,0xa9,0x48,0xe5,0x84,0xeb,0x70,0x90,0x60, +0x1c,0xcc,0x84,0x90,0x6e,0x0c,0x01,0x5e,0x07,0x79,0xf4,0x34, +0x04,0x4f,0x9c,0x89,0x17,0x29,0xcc,0xc3,0x6f,0xc4,0xb1,0xfa, +0xc2,0x58,0xcc,0xc2,0xcd,0xa3,0x3d,0xab,0xe7,0x31,0x8d,0x99, +0x52,0x9d,0x68,0x32,0x7c,0xd6,0x8b,0x9f,0xc1,0x37,0x30,0x45, +0x7a,0x70,0x97,0x4b,0x6a,0x9d,0x5a,0x0c,0x4b,0xad,0x1a,0x2b, +0x79,0xf7,0x36,0x4b,0x99,0x43,0x35,0x35,0xae,0x9a,0x60,0x45, +0x52,0x2d,0x14,0x5e,0x30,0x55,0xa9,0xa9,0x55,0xaa,0x94,0x90, +0xe9,0x75,0xe0,0xa1,0xbb,0xa0,0xdf,0x86,0xfa,0x57,0x74,0x51, +0x0b,0xf5,0x4c,0xc1,0x1b,0x97,0xb0,0xc2,0xc5,0xa7,0xe4,0xce, +0xd5,0xb6,0xfb,0x99,0x4f,0xb9,0x06,0x51,0xc9,0x18,0xbe,0x65, +0xfd,0x35,0x1d,0xf4,0x74,0xcd,0xec,0x6a,0x9d,0xda,0x5d,0xae, +0x9a,0xf9,0xf0,0x15,0x07,0x6a,0x8c,0x9b,0xac,0x2d,0xdc,0x75, +0x0f,0xee,0xf5,0xf5,0x6f,0x38,0x58,0xe3,0x55,0x6e,0xe5,0xcb, +0x97,0x3a,0xe7,0x3b,0x65,0xdb,0x34,0xe7,0xf1,0xf9,0xc6,0xf7, +0xf2,0xaf,0x57,0xf4,0xd4,0x2a,0x0d,0x98,0xdd,0x72,0x78,0xe6, +0x92,0xdf,0xc3,0xab,0x95,0x69,0x95,0x1a,0xd5,0x73,0x23,0x5c, +0x39,0xf1,0xd7,0x77,0x32,0x70,0xb4,0x6b,0xf6,0xe4,0x9b,0xda, +0xaa,0xae,0x66,0xf7,0x70,0xf5,0x23,0x13,0x48,0xaf,0x50,0xac, +0x3f,0x24,0x18,0x8c,0xcc,0x13,0x0d,0x58,0xe1,0x07,0x78,0x45, +0xc4,0xe2,0x21,0xa1,0x98,0x11,0x8b,0xf1,0x53,0x22,0x14,0x6b, +0x89,0xc5,0x8c,0xf9,0x38,0xa1,0x58,0x9d,0xee,0x15,0xff,0x32, +0x80,0xdb,0x04,0x8d,0x1f,0xe2,0xa4,0x1b,0x6a,0x3f,0x72,0xc2, +0xc4,0x3e,0x71,0x2d,0x30,0x0c,0x4c,0xbe,0x0c,0x13,0x53,0xde, +0xe7,0xfa,0xc8,0x78,0x3c,0x64,0x8e,0x85,0x27,0xf0,0xf8,0x85, +0x04,0x7d,0xfe,0x8f,0x73,0xc0,0x5d,0x04,0x36,0x86,0xc3,0xb1, +0x94,0xb0,0x80,0xc8,0x6e,0x5f,0x86,0xdc,0x1e,0xd4,0x51,0x2b, +0x35,0xe4,0x21,0xe4,0x57,0x18,0x73,0xbf,0x1a,0x18,0x2e,0x16, +0x9d,0xaf,0x82,0x73,0x2c,0x53,0x8d,0x2c,0x4c,0xdc,0x01,0xc7, +0xe7,0x73,0xe2,0xbf,0xe2,0x08,0xce,0x37,0xda,0x8d,0x47,0x77, +0xab,0xe4,0xe8,0x2a,0x40,0xc4,0xed,0xd7,0xdf,0xc3,0x3e,0xe5, +0x2e,0x0d,0x16,0x44,0xbc,0x45,0x1c,0x22,0x12,0x2a,0x55,0x21, +0x47,0x03,0xcb,0xd9,0x7d,0x05,0xbe,0xf7,0x55,0x60,0x3f,0xd3, +0x96,0x26,0x55,0x1a,0xaf,0x65,0x75,0x33,0x14,0x50,0x12,0x7c, +0xcc,0x91,0xdb,0x90,0x6c,0xb7,0x2c,0xd7,0x4c,0x67,0x59,0x16, +0x7f,0xac,0xe4,0x68,0x41,0x10,0x4d,0xc9,0x9b,0xdb,0xb1,0x8e, +0x49,0xcc,0x4a,0xc8,0x8e,0xcb,0xa6,0x6e,0xe0,0xb1,0xcb,0x74, +0xff,0x6e,0xc3,0x06,0x47,0xbe,0xaa,0xb8,0xa2,0xa2,0xa8,0x9a, +0x13,0x2c,0xdb,0x49,0x42,0xf6,0xe5,0xec,0xd8,0x6c,0xa3,0x44, +0xde,0x6f,0x9f,0x93,0xba,0xb1,0x41,0xb3,0x3b,0x5f,0x50,0x94, +0x53,0x9a,0x59,0xce,0x7d,0xcf,0x64,0xbb,0x67,0xb9,0x64,0x39, +0x77,0x66,0xf2,0x47,0x4b,0x8e,0x16,0x1e,0xa1,0xdf,0xa6,0xdb, +0xce,0x2c,0x10,0xed,0x49,0x1b,0x76,0xdc,0x83,0x0e,0xba,0xbd, +0x0d,0xcf,0x3a,0x46,0xfc,0xc5,0x4d,0xf2,0xbd,0xec,0x39,0xe3, +0xb3,0x66,0xa7,0xdc,0x38,0xe7,0x13,0x21,0x47,0x8c,0xa6,0x69, +0x33,0xc9,0xa6,0x0a,0x32,0xe6,0x49,0x75,0xfe,0xad,0x78,0xd5, +0xd8,0xce,0x8b,0x83,0x2f,0x95,0xf1,0xdd,0x03,0x46,0x07,0xb6, +0x13,0xac,0xbe,0x4d,0xe1,0x00,0x56,0xa3,0x31,0xb9,0x07,0xd5, +0x3b,0x58,0xf3,0x71,0x6a,0x58,0xfd,0x80,0x15,0x16,0xe3,0x0e, +0x92,0xeb,0x98,0x63,0x96,0x6a,0x2d,0xb5,0xab,0x6f,0xf0,0xed, +0xf0,0xa9,0xe6,0x68,0x8e,0x75,0x21,0x3d,0xbd,0x75,0xd7,0x8a, +0xae,0x1a,0x65,0xf1,0x07,0xf5,0x1c,0xf5,0x0c,0x0c,0x39,0x61, +0x1d,0x2c,0x25,0xe9,0x56,0xe9,0xda,0x09,0xc6,0xfd,0xc9,0x7c, +0x78,0x67,0x60,0x7f,0x60,0x33,0x87,0xee,0x61,0x24,0xde,0x34, +0x61,0x47,0x94,0xe1,0x95,0x18,0xfe,0xc4,0x50,0xd8,0xcd,0xd0, +0x36,0x4e,0x12,0x9f,0x3d,0x4f,0x1e,0x01,0xb4,0x23,0x3c,0x10, +0x66,0xb6,0x8b,0x33,0x1f,0x68,0xa8,0x89,0x5f,0x99,0x09,0x5f, +0xa9,0xe1,0x6f,0x66,0xf0,0xdb,0x16,0x71,0x89,0xe9,0x5f,0x53, +0x3a,0xd8,0x18,0x8c,0xa5,0xf8,0x82,0xb9,0xd4,0x78,0xa1,0xa5, +0x55,0x79,0x64,0x0a,0x73,0xda,0xfa,0xa4,0x65,0xa4,0x25,0x87, +0x5f,0x98,0xd2,0x51,0x8e,0x30,0x0f,0x33,0x0f,0xb5,0xe6,0x04, +0x60,0xce,0x9d,0x38,0x7b,0xf2,0xec,0x09,0xce,0x3e,0xfc,0x68, +0xa8,0xd5,0xb4,0x59,0x4c,0xb2,0xb9,0xc2,0x2f,0xcc,0xb7,0xe5, +0xb9,0xf7,0xd3,0x55,0x2f,0xc6,0x5d,0x88,0xbb,0x18,0xc7,0xc1, +0xa4,0x36,0x64,0x99,0xa8,0xe2,0x8f,0x55,0x3a,0xca,0x8c,0xe8, +0x47,0x19,0xee,0x59,0xaf,0xd3,0x5e,0xa7,0xbc,0x38,0x0c,0x66, +0xa2,0x8b,0xe9,0x9f,0x8a,0x39,0x28,0x5b,0x49,0xa4,0x83,0x4b, +0xf4,0xf0,0x08,0xe3,0x75,0x6e,0xb4,0x5a,0xa7,0xdf,0x94,0x9c, +0xf2,0x38,0xe1,0x71,0x82,0xbe,0x31,0x8c,0x89,0x2b,0x8e,0x2d, +0x8d,0xa1,0xd0,0xab,0x68,0x29,0x89,0x2d,0x8e,0x29,0x8d,0x2e, +0x95,0x44,0xd1,0xce,0xb8,0x9f,0x91,0xea,0xf2,0x14,0xff,0x32, +0xd2,0x24,0x3e,0xaf,0x9d,0xff,0xf0,0x78,0x68,0x14,0xc0,0x27, +0xbb,0xa7,0xd8,0xa7,0xd8,0xea,0x47,0xe8,0x44,0x68,0x1e,0xe7, +0x20,0x1c,0x22,0x85,0xd9,0x18,0x09,0xeb,0xb5,0x71,0x3d,0x06, +0x89,0xb3,0x21,0x08,0xcf,0xb0,0x6b,0x22,0x56,0x44,0x2e,0x3d, +0x11,0xa7,0xc5,0x83,0x7e,0x1a,0x68,0x64,0xc3,0xa2,0xe2,0x44, +0xb7,0x78,0xf7,0xcb,0x9e,0x9c,0xf8,0xe0,0xaf,0xc5,0xc4,0xc3, +0xc0,0xd5,0xd4,0xd1,0xca,0xa7,0xcd,0xb3,0xc5,0xa5,0xc9,0xca, +0x9d,0xaf,0x31,0x2d,0x33,0xcd,0x37,0xb1,0xb3,0xb5,0x72,0x32, +0x77,0x2b,0x32,0xe4,0x5b,0xcb,0x1b,0xab,0xeb,0xea,0x33,0x2c, +0x53,0x2c,0xe2,0xcd,0x74,0x57,0xaa,0x6b,0xaf,0xd1,0x29,0x34, +0xe4,0x9f,0x75,0x0d,0x0c,0x75,0xde,0xe7,0x62,0xac,0x2e,0x5a, +0x9a,0x2a,0xe3,0x4e,0x2f,0xcb,0x4d,0x2a,0xfb,0xa5,0x85,0x69, +0x43,0xcc,0xfb,0xee,0x21,0xf0,0x83,0x15,0xbe,0xa0,0x64,0x04, +0x9f,0xab,0x36,0x77,0xd6,0xf5,0x57,0x5d,0xe3,0x1e,0xa0,0x16, +0x81,0x2d,0x58,0x81,0x5b,0x18,0x61,0x01,0x54,0x10,0x7a,0xb4, +0x0b,0x2a,0x28,0x6d,0x5f,0x25,0xdc,0xa0,0x31,0xf7,0x64,0x37, +0x06,0xc2,0x18,0x38,0xdb,0x85,0x67,0x3f,0xe8,0xce,0xc2,0x20, +0x23,0x7a,0xd2,0x63,0x58,0xb1,0x05,0xc2,0x29,0xca,0xca,0xeb, +0x96,0x34,0xfe,0x66,0x11,0x3d,0x78,0xd6,0xc7,0x62,0x23,0x3d, +0x32,0x84,0xd4,0x6e,0x56,0xc8,0x44,0xca,0xf8,0x49,0x3f,0x68, +0x88,0x05,0xa8,0xd1,0x2b,0xf5,0xfe,0x1b,0x63,0x4e,0xba,0x31, +0xd5,0x90,0x15,0x1c,0xec,0x09,0x6e,0xb0,0x5c,0x83,0x33,0x34, +0x54,0x8a,0x8d,0x15,0x60,0xcd,0xbd,0x1e,0x50,0xa0,0x21,0x37, +0x5f,0x97,0x85,0x0f,0x78,0x9f,0x2c,0x67,0xbc,0x23,0x63,0x8b, +0x28,0x8c,0xd4,0xc5,0x36,0x56,0x3b,0x33,0xe0,0xaa,0xca,0x2f, +0x52,0xa5,0x35,0x8d,0x63,0x93,0x58,0x03,0x1a,0x70,0xcf,0xa3, +0x2f,0xe9,0xa2,0x78,0x2c,0x1f,0xd3,0xf1,0x31,0x0b,0xce,0x90, +0x4f,0x23,0x38,0x2e,0x83,0xf5,0xac,0xe2,0x5f,0xda,0xc2,0x3b, +0x22,0xfa,0x00,0xc7,0xc0,0xa6,0x18,0xd8,0x9a,0x0e,0x13,0xeb, +0xdd,0xa5,0xbe,0xc2,0xf6,0xa8,0x11,0x88,0xfb,0xce,0x71,0x14, +0xc1,0x61,0x53,0x10,0x2e,0xdc,0x80,0x4b,0x54,0xda,0x6c,0x9e, +0xc3,0xea,0x22,0x58,0x7f,0x01,0xda,0x94,0x60,0xaa,0xb4,0x70, +0x78,0xab,0x13,0x4e,0x5e,0x8e,0x13,0x54,0x5a,0xac,0x7f,0x80, +0xcf,0x1b,0x60,0x5a,0x34,0xac,0x55,0x02,0x33,0xe6,0xc2,0x8c, +0x93,0x8b,0x43,0xb7,0x73,0x66,0x91,0x81,0x47,0xf4,0xa6,0xad, +0x63,0x92,0xf5,0x15,0x9e,0x33,0x2f,0x2b,0x2a,0xee,0x24,0xaa, +0xa6,0xbc,0x8a,0xf9,0x1d,0xd6,0x2b,0x63,0x3c,0xcc,0x83,0x3a, +0x66,0x64,0xc9,0x96,0x8f,0x45,0xca,0xe1,0x61,0xa3,0xd2,0xed, +0x30,0xb5,0x07,0xa7,0x7e,0x14,0xe3,0x9a,0x29,0xd5,0xbd,0x84, +0xe2,0x97,0x0e,0x38,0x63,0x09,0x92,0x5a,0x73,0xfe,0xfe,0x9f, +0xc5,0x1f,0xa2,0x25,0x31,0xae,0x3c,0x49,0x8c,0xeb,0x63,0x4d, +0xf7,0x43,0x5c,0x50,0x55,0xab,0xa0,0x28,0x6f,0x07,0x4f,0xd2, +0x53,0xd7,0xd3,0x55,0xd1,0x62,0x5b,0xcf,0x7b,0x58,0x5b,0x58, +0x58,0xbb,0x1d,0xed,0x8c,0xec,0x39,0x35,0xc8,0xc1,0x6c,0x70, +0xc5,0x4d,0x4c,0x5e,0x41,0x7e,0x69,0x7a,0x31,0x57,0x8f,0xc1, +0x6c,0x5c,0x52,0x6c,0x72,0x6c,0xb2,0x7e,0x2a,0xef,0xb2,0x47, +0x5d,0x6d,0x95,0x7e,0xa5,0x2d,0x1f,0x17,0x1d,0x17,0x1d,0x4b, +0x03,0xdb,0x36,0xd0,0x60,0xf5,0xad,0xb7,0xb8,0x2e,0x38,0x94, +0x6d,0xcc,0xdf,0xcd,0xb9,0x56,0xd0,0x53,0x11,0x7f,0x34,0x21, +0xe8,0x72,0xe0,0x3e,0xcb,0xb9,0x36,0x6b,0xfd,0xb2,0x8c,0xf8, +0xd7,0x05,0xef,0x9b,0x86,0x5b,0xe2,0x0e,0xc7,0x04,0xc6,0x04, +0x6e,0xd2,0xc4,0xcf,0x74,0xf1,0x33,0xcf,0x6c,0x1a,0xff,0xb8, +0x32,0xf8,0x7c,0xe8,0x4e,0x2f,0x77,0x29,0xe0,0x62,0x40,0xa0, +0xf2,0x6e,0x9f,0x08,0x1b,0x95,0xcd,0x4c,0x8a,0xa1,0xc2,0x0d, +0xe6,0x49,0x43,0xd1,0x9f,0xf0,0x89,0x25,0x10,0xc3,0x67,0xaa, +0xe9,0xc9,0xa9,0x29,0xc9,0xa9,0x5c,0x2d,0x93,0x8a,0x36,0xd7, +0x71,0x1e,0x28,0xa1,0x52,0x6d,0x27,0xbf,0xef,0x9a,0xe5,0x35, +0x8f,0x3b,0x9c,0x98,0x01,0x17,0xc8,0xf1,0xe4,0x13,0xe7,0xfe, +0x11,0x26,0x9b,0xf1,0x53,0xd7,0x92,0x8f,0x25,0xfc,0xca,0x46, +0xf0,0xa5,0x54,0xc2,0xef,0x80,0x73,0x56,0x21,0xa9,0x31,0xe7, +0x6f,0xff,0x51,0xf0,0x61,0xb4,0x84,0x3f,0xaf,0x47,0x88,0xf9, +0xc7,0x12,0x03,0x48,0x2a,0xea,0x15,0x84,0x29,0x82,0x12,0x39, +0xea,0xe3,0x77,0xf0,0x90,0x0f,0x87,0x96,0x4c,0x51,0x7e,0x7e, +0x41,0x4e,0x21,0xf7,0x12,0x89,0xa4,0x20,0xbc,0x16,0x38,0x16, +0xbc,0x90,0x23,0xc0,0xc1,0x46,0xe4,0x68,0x64,0x5d,0x78,0x80, +0x3c,0x94,0x1b,0x6c,0x1b,0x16,0xba,0xd1,0x1a,0x1a,0x45,0x6d, +0x3a,0x17,0xf5,0xc5,0x6e,0xf6,0x9a,0x70,0x92,0x50,0xb4,0xd4, +0x08,0x57,0xb0,0x11,0xac,0x11,0x47,0x28,0x72,0x16,0x18,0xf9, +0x26,0x12,0x8a,0xca,0x5b,0xb5,0x51,0xdf,0x29,0x87,0x5e,0xb2, +0x49,0xcd,0x9f,0xdf,0xa6,0x01,0x25,0x34,0x5f,0xd1,0x79,0xb0, +0x3f,0xf7,0xf0,0x75,0x15,0x58,0xcd,0x34,0x67,0xa6,0x35,0xab, +0xde,0xe8,0x81,0x9d,0xe2,0xa2,0x5f,0x35,0xe6,0x8b,0xca,0xa8, +0x31,0x04,0x5f,0xb1,0x72,0xb5,0xf9,0x64,0x09,0x2e,0x64,0x9d, +0x23,0x63,0x28,0xb2,0x59,0x06,0x17,0x50,0x81,0xbd,0x82,0x8f, +0xc9,0x80,0xb8,0x28,0x85,0x85,0xf1,0xea,0x38,0x9e,0x0d,0x16, +0x79,0x1d,0x61,0x22,0xeb,0x3c,0x03,0xbf,0xd8,0x87,0x47,0x76, +0xe5,0x6b,0xf2,0x50,0xf5,0xf6,0xdd,0xed,0x1c,0x50,0xe5,0x62, +0x98,0x3c,0x54,0x05,0x76,0x37,0x54,0x2c,0xce,0xbf,0xc2,0x63, +0xd0,0x1d,0x9c,0x7e,0xc3,0xfe,0x4f,0x9a,0x80,0xf3,0x04,0x47, +0x72,0x22,0x55,0x32,0xd8,0xe8,0xaa,0x87,0x69,0xf0,0xa9,0x0c, +0x3f,0x05,0x5d,0x03,0x8a,0xac,0x14,0x8d,0x81,0xa5,0x26,0xfb, +0xd2,0x19,0xe7,0x6d,0x42,0x45,0x6a,0xb2,0x2b,0xbf,0xe5,0xbe, +0x8f,0x7a,0x43,0x4d,0x96,0xd2,0x23,0x44,0x49,0x25,0xee,0x17, +0x4f,0xa9,0xf4,0xe3,0x9c,0x8a,0x5a,0x05,0xa8,0xa5,0xee,0x17, +0xbc,0x37,0x78,0x77,0x28,0x07,0x5b,0x61,0x5d,0x17,0xae,0xa3, +0xdf,0xb4,0x41,0x86,0x1b,0x60,0x3c,0x7b,0x33,0x6d,0x38,0x4f, +0x56,0xea,0xd1,0xc4,0x9b,0xb8,0xef,0xf0,0xde,0x10,0xc4,0x89, +0xf7,0x58,0x1a,0xf4,0x4e,0x1f,0x3c,0x1d,0x67,0xc8,0xe7,0x47, +0x15,0x46,0x15,0x44,0x73,0x68,0xd0,0x05,0x96,0xec,0xbd,0xe4, +0x3b,0x69,0x3d,0x29,0x1c,0xb4,0x83,0x9c,0x04,0x30,0xbe,0x27, +0x63,0x0a,0x54,0xe1,0x24,0x1e,0xa2,0x30,0x6b,0x65,0xa8,0xba, +0xb9,0x86,0x4a,0xb3,0x9b,0x42,0xf7,0xad,0xd4,0x67,0x3f,0x28, +0x5f,0x83,0x31,0x68,0xc2,0x1a,0xa5,0x05,0x74,0xa8,0xd4,0x32, +0x55,0x49,0xa9,0xb5,0x52,0xe7,0x2b,0xf3,0x54,0x05,0x1c,0x23, +0xca,0xc8,0xe0,0x83,0x9a,0x57,0x19,0x6f,0xb9,0x26,0xbc,0x65, +0x08,0x31,0xec,0xd1,0xed,0x07,0xf7,0x59,0x69,0x3b,0x74,0x7b, +0xf5,0xfb,0x5e,0x33,0xf5,0xe3,0x0b,0x77,0x96,0xab,0x37,0xeb, +0x58,0x5a,0xe8,0xda,0xa9,0x39,0x17,0x18,0xf0,0x0f,0x6b,0xae, +0x34,0x77,0xca,0x9a,0x4c,0xbb,0xad,0xae,0xdb,0x17,0x76,0xf2, +0x1a,0x35,0xa6,0x0d,0x76,0x2d,0xd4,0x28,0xca,0x42,0x2b,0xc1, +0xc1,0x43,0x38,0x67,0x1f,0x7e,0xa2,0xd2,0xad,0xa7,0xf0,0x04, +0xa6,0xe7,0xc2,0x72,0x78,0xa2,0x2c,0xb7,0x86,0xa8,0x91,0x4c, +0x66,0x18,0x8d,0x08,0x4c,0x93,0x7f,0x83,0xd3,0x58,0x6c,0x5e, +0x47,0xe6,0x62,0xa1,0x78,0x72,0x60,0x48,0x38,0xa5,0x35,0x20, +0x9c,0xc4,0xca,0xdf,0x29,0xfe,0x6e,0x20,0xe8,0x01,0xca,0xe0, +0xc1,0x0c,0xa0,0x32,0xa1,0x07,0x7e,0xa8,0xcc,0x62,0xa5,0x09, +0xc1,0x19,0xf4,0xf5,0x19,0x2c,0x14,0x4e,0xa5,0x2f,0xcd,0x40, +0x3f,0x46,0x51,0xfe,0x40,0x9e,0x45,0x9c,0xb3,0x0d,0x0a,0x4c, +0xd2,0xdc,0x9c,0xf8,0xf6,0xa3,0x83,0x87,0x2a,0x02,0x38,0x47, +0xf4,0x22,0x65,0x47,0xaa,0x82,0x6b,0x42,0xeb,0x43,0x8b,0xa2, +0x63,0x3a,0x12,0x7e,0xe5,0x2d,0x32,0x42,0x70,0x3c,0x7e,0x52, +0xb9,0xb1,0x4b,0x6f,0x48,0x09,0x5a,0xe3,0x4f,0x75,0xe1,0x8b, +0x70,0xdf,0xaa,0x23,0xd5,0xa1,0x35,0x4a,0xfa,0x27,0x13,0x9d, +0x52,0x9d,0xb3,0x5d,0x95,0xc4,0xf0,0x63,0xd1,0x46,0x42,0x66, +0x5a,0x81,0x7b,0x89,0x67,0x85,0xb7,0x12,0xfa,0x32,0xf1,0xe9, +0x97,0x33,0x62,0xd3,0xb4,0xe3,0xf9,0xc8,0x80,0x88,0xc0,0xd0, +0x40,0x0e,0x43,0x45,0x13,0xb9,0x36,0x73,0xce,0xf1,0xac,0xcb, +0x09,0x17,0xce,0xf3,0x44,0xf0,0x71,0x97,0x69,0x1b,0x98,0x14, +0x33,0x1a,0x5b,0x6e,0xe5,0xe6,0xca,0xe2,0x55,0xe3,0x5a,0x2f, +0x75,0x5d,0xb8,0xcd,0x8d,0xe8,0x76,0xcb,0xfd,0xda,0x46,0xfc, +0x3a,0x85,0x16,0x46,0x8b,0x82,0x5c,0x31,0xb8,0x5d,0x08,0x66, +0xc4,0x60,0x5c,0x48,0x64,0x42,0xb0,0x31,0x2b,0xfe,0x4b,0xb4, +0x23,0x6d,0x6d,0x75,0x83,0x05,0x9d,0xfa,0x79,0xbc,0x8f,0x99, +0x83,0x89,0xb9,0x15,0x27,0x5c,0x01,0x42,0x72,0xdd,0xd2,0x9d, +0xd2,0x6c,0xbb,0x33,0xf8,0x63,0x75,0xfe,0x75,0xfe,0xa5,0x1c, +0x3a,0xfa,0x93,0x0c,0x7b,0x9a,0x26,0xac,0x06,0x92,0xf9,0x88, +0xa6,0xa0,0xd6,0xc0,0x6a,0x0e,0x7d,0xc2,0x48,0x82,0x5d,0x9c, +0xde,0x25,0xf3,0xab,0x51,0xfc,0x29,0x59,0x44,0x77,0x68,0x3d, +0x65,0xae,0xfb,0xe4,0xf7,0x88,0xf6,0x42,0x2c,0x7e,0x47,0x37, +0x27,0x0d,0xe1,0xe4,0xcc,0xc1,0x3f,0xa0,0x58,0xda,0x24,0x48, +0x65,0x67,0x18,0x81,0xd3,0x08,0xf6,0x60,0xbb,0xc8,0x5e,0x69, +0x17,0xfa,0xcc,0xae,0x08,0x2c,0x3e,0x82,0xaf,0x84,0xb9,0xbd, +0xe2,0x5c,0xf8,0x8c,0xc5,0x0e,0xf1,0x0a,0x01,0x3b,0xa1,0x0f, +0xed,0x58,0x45,0xb9,0x5c,0xbe,0x8b,0xa0,0xe2,0x00,0xec,0x11, +0x17,0xfd,0xa0,0xb5,0x8c,0xfa,0xd0,0x9e,0x01,0x50,0x64,0x8b, +0xc5,0xa7,0x44,0xbe,0x01,0x00,0x6f,0xbc,0x86,0x86,0xee,0x11, +0x05,0x43,0x28,0x58,0x8d,0x32,0x06,0x64,0xb8,0x88,0x60,0xc4, +0xcf,0x94,0x88,0xc1,0x35,0x7a,0x14,0xfd,0x33,0x44,0x33,0x78, +0x0d,0x17,0x90,0x79,0x18,0xf1,0x1b,0x0b,0x1d,0x53,0x21,0x7a, +0x1e,0x46,0x33,0xa2,0x2e,0x25,0x33,0xff,0x9f,0x15,0x94,0xff, +0xd2,0x96,0x57,0x90,0xbf,0x67,0xe8,0xc2,0x10,0x4e,0xc6,0xf8, +0x91,0xed,0x57,0xae,0xc9,0x37,0xa9,0x5f,0x91,0x6f,0xc7,0x3a, +0x98,0x0c,0x3f,0x30,0x62,0x15,0x4e,0x26,0xf4,0x68,0x26,0x65, +0x23,0x50,0x25,0xce,0x26,0x23,0x9b,0xe0,0x27,0x30,0x62,0x4e, +0xce,0x72,0xd3,0xc1,0xf1,0x1b,0xeb,0xac,0x79,0xf8,0xf2,0x4d, +0xdd,0xc3,0x38,0x98,0x2c,0xad,0x6c,0x5e,0xce,0x6c,0x2f,0x0b, +0xba,0xaa,0xf2,0x8c,0x69,0x4d,0xa3,0x2c,0xe6,0x35,0x6b,0x96, +0xa4,0x80,0x9f,0xae,0x62,0x9d,0x22,0x63,0x28,0xca,0x9b,0x0b, +0x01,0xec,0xc8,0x26,0x71,0x26,0x91,0x6f,0x9a,0x31,0xb2,0x89, +0x42,0xd2,0x99,0xc2,0x12,0x02,0xdb,0xb7,0xb2,0xf9,0x0d,0x79, +0xcd,0x69,0x6d,0x5c,0x1d,0x6e,0x60,0x2f,0xe7,0xc6,0xe6,0xc5, +0x16,0x98,0xc4,0xf3,0xbe,0x73,0x6d,0x97,0x6b,0x6f,0x2b,0x32, +0xe5,0x13,0x92,0x13,0x92,0xe3,0x93,0x39,0xe7,0x6f,0x71,0x22, +0x4e,0x34,0x86,0x89,0x94,0x7b,0x8f,0x37,0x81,0xf1,0xa8,0xbb, +0x84,0x4d,0x36,0x54,0xb8,0xc5,0xb4,0xa6,0x67,0xb7,0xa9,0xc2, +0xf6,0x17,0xba,0x32,0x88,0xbc,0x22,0x63,0xc5,0x2d,0xa0,0x43, +0x5a,0xf1,0xf3,0x47,0xa0,0xd2,0x8a,0x2a,0xc3,0x46,0x07,0x70, +0x8a,0x05,0x4c,0xd9,0x82,0x0a,0x16,0xa0,0xb0,0x1a,0x67,0x98, +0xc3,0x0f,0x6d,0x38,0xef,0x35,0x8b,0x86,0x30,0x81,0x38,0xd6, +0x5b,0x36,0x58,0x54,0xb8,0xdb,0xf2,0x6d,0x4e,0xb5,0x8e,0xf5, +0xb6,0x9c,0x7c,0x6a,0x35,0x09,0x76,0x38,0x64,0xe9,0x6d,0x4f, +0x81,0x13,0x93,0x57,0x9d,0x53,0x9f,0xd9,0xca,0x89,0xe7,0xf1, +0x3c,0x71,0x6c,0x34,0xe8,0x34,0xad,0x71,0x95,0xfa,0x14,0xca, +0xcc,0xeb,0xac,0x38,0xb9,0x1a,0x8c,0x21,0x38,0x71,0x1d,0xe5, +0x38,0xa2,0x95,0xf8,0x0b,0x01,0x35,0xd0,0x44,0x85,0x05,0x6c, +0x92,0x99,0xc2,0x33,0xa6,0x36,0x59,0x12,0xb1,0x58,0x88,0x75, +0xa2,0x1b,0x2b,0xc4,0x42,0x37,0x81,0xaf,0x5e,0xe0,0x57,0x2c, +0xfe,0x45,0xbd,0x4d,0xf3,0x11,0x68,0x32,0xe2,0x12,0x71,0x0d, +0x19,0x82,0x4f,0xeb,0x61,0x7a,0xd6,0xbf,0x8d,0xd3,0x78,0x1f, +0x54,0x70,0xc1,0x09,0x7a,0xf3,0xa4,0x45,0x87,0x97,0x09,0x68, +0xae,0x47,0x4d,0x1a,0x84,0xbb,0x29,0x71,0xc2,0x09,0xb6,0xac, +0xeb,0xc9,0x18,0x4a,0x39,0x16,0x51,0x0c,0x30,0x62,0x8a,0x43, +0x5a,0xc2,0x7c,0xb6,0x2d,0xb9,0x25,0xb5,0x32,0xe5,0x70,0x3b, +0xef,0x19,0xe2,0x14,0x62,0x1b,0xc6,0xbd,0x30,0x99,0xcf,0x5a, +0x85,0x5b,0x46,0x58,0x9f,0x4a,0x31,0xe3,0xab,0xa3,0xeb,0xe3, +0x1a,0xe2,0x39,0x51,0x59,0x1b,0xfa,0x4d,0x45,0xfd,0x8e,0xd7, +0x83,0x94,0x98,0xa8,0x67,0xfb,0x0d,0xa9,0xb4,0x30,0x15,0x29, +0xa9,0x8d,0xaa,0x3f,0xb2,0x0d,0x34,0xe6,0x8b,0x59,0x50,0x23, +0x64,0xa1,0x2a,0x9b,0x58,0x76,0xb9,0x2c,0x8e,0xc2,0xb3,0x99, +0x5d,0xf8,0x93,0x11,0xa5,0x44,0x27,0x3c,0x23,0xdd,0xc3,0xdc, +0x38,0xf1,0xef,0x11,0x8e,0xfc,0x01,0x2a,0xf2,0x59,0x68,0x34, +0x72,0x81,0x85,0x19,0xb0,0x86,0xac,0x13,0x1a,0x5e,0x30,0x42, +0x18,0x86,0x91,0x3f,0x41,0x63,0x86,0x74,0xe7,0x6f,0x19,0x7d, +0x8b,0xc6,0x4c,0xe9,0x68,0x3d,0x01,0xe9,0x39,0x27,0xcb,0x6a, +0xcf,0x25,0xb5,0xb6,0x35,0x86,0xa5,0xa6,0xf5,0x65,0xbc,0x7b, +0xa7,0x83,0xcc,0xb1,0x8e,0xc3,0x00,0xdc,0x4f,0xda,0xeb,0xeb, +0xda,0xcb,0xfa,0x6c,0x0b,0xa8,0x13,0xda,0x9a,0x9a,0x3b,0x51, +0x3f,0xfa,0x23,0x8b,0x60,0x29,0xa3,0x71,0x34,0x71,0x58,0x15, +0x54,0xe1,0x29,0xfc,0xad,0x81,0x12,0x7b,0xfd,0x2f,0x16,0xa6, +0xa5,0xc3,0xe4,0x7c,0x18,0x53,0xed,0xd1,0xc3,0x2f,0xf1,0x40, +0x05,0x1f,0x24,0x47,0x38,0x18,0x77,0x00,0x3f,0x67,0x91,0x0b, +0xc5,0x29,0xc7,0x51,0xe5,0x8c,0xa4,0x43,0x3b,0x25,0x0a,0x26, +0xc5,0xc1,0xf8,0x44,0x0e,0x01,0x63,0x21,0x53,0x43,0x5c,0x70, +0xf5,0x21,0xc4,0xe2,0x22,0x76,0x49,0xb5,0xc7,0x0f,0x2a,0x50, +0xc1,0x74,0xe4,0x64,0x75,0xa8,0xc2,0x6c,0x56,0x2b,0x85,0xe2, +0x86,0xf5,0xf2,0x13,0xe4,0xb5,0xd6,0x6a,0x4c,0x35,0x12,0xde, +0x76,0xb1,0x23,0xd6,0x23,0xd7,0xff,0x91,0xd3,0x7d,0x23,0x77, +0x20,0x99,0x06,0x99,0x6a,0x09,0x7b,0x65,0x19,0x7c,0xe8,0x8d, +0x80,0x87,0x81,0xdd,0x1c,0xfa,0xe2,0xf5,0x7f,0xd4,0x74,0x47, +0x9f,0x26,0x7c,0x54,0xd3,0xfd,0x0e,0x32,0x29,0x7c,0x42,0x7b, +0xc1,0x87,0x06,0x9b,0x15,0x64,0x26,0xc2,0x1f,0xac,0xd4,0x34, +0x91,0x14,0xb2,0xdf,0xe6,0x3f,0x2b,0xbf,0xd2,0xca,0x35,0x89, +0xe5,0x26,0x82,0x1a,0x6b,0xe9,0xab,0x17,0xb0,0xf7,0x30,0xa7, +0x25,0xe9,0x53,0xf4,0xa2,0x0a,0xee,0x67,0xa5,0x7b,0x70,0x2b, +0x99,0xd6,0x8c,0x8c,0x56,0x55,0x98,0x02,0x85,0x9d,0xd4,0xf9, +0x93,0xc1,0x91,0x3c,0x80,0xc9,0x15,0x30,0x3d,0x11,0x16,0x70, +0x83,0x03,0xd8,0xca,0xa4,0x76,0x24,0x76,0xc6,0x75,0x1a,0x5c, +0xe6,0xfd,0x71,0xba,0x13,0x7e,0xb3,0x1e,0xc7,0x96,0x9b,0xf2, +0x05,0x15,0x79,0x75,0x59,0x8d,0xa9,0x38,0xae,0x78,0x96,0x6c, +0x9e,0xc1,0xa6,0x6d,0xdb,0x67,0xec,0x2e,0xd3,0xe5,0xdf,0xdf, +0xf9,0xf6,0x41,0xff,0x93,0xb6,0x2d,0x57,0xd5,0x9e,0xee,0x28, +0xef,0xe3,0x37,0xdc,0xd7,0xbc,0x6f,0xf5,0x90,0x13,0x1d,0x84, +0x2a,0xf2,0x42,0x67,0x1d,0xda,0x19,0x0b,0x91,0x32,0x56,0x0b, +0xc7,0x13,0x71,0x3a,0x5a,0x09,0xd3,0x19,0x40,0xea,0x18,0x11, +0xf8,0xe5,0x21,0x64,0x75,0x67,0x98,0xfe,0xe1,0x0b,0x0a,0x61, +0x40,0x38,0x0c,0x71,0x26,0x0b,0xb1,0xf0,0x1d,0x2b,0x4c,0x15, +0x27,0x13,0xf5,0x13,0x3b,0x4f,0x6e,0x3f,0xc5,0xe5,0xb2,0x77, +0x0b,0x6e,0x34,0x55,0xd7,0x71,0xcd,0xe2,0x1e,0x63,0xf8,0x99, +0xf5,0xf2,0xd1,0x3e,0xa8,0x17,0xc8,0xe9,0xb1,0xdb,0x4e,0x6f, +0x3d,0xbd,0xeb,0x6c,0x94,0x21,0x7f,0xfb,0xd2,0x83,0xa8,0x07, +0x34,0x21,0x7e,0x8d,0x8a,0x2c,0x85,0x3e,0xef,0x29,0xe3,0x4f, +0x6f,0x56,0x85,0x2f,0xd9,0x87,0x31,0xf7,0x62,0x86,0xe3,0xe8, +0xe0,0xfe,0x57,0x14,0xc1,0x03,0x8c,0x4d,0x70,0x32,0xc5,0xa5, +0x7b,0x21,0x06,0xde,0x6a,0x62,0x15,0xea,0x0b,0x63,0xd8,0x3f, +0xd2,0x7e,0xcb,0x7e,0x51,0x74,0xa8,0x9b,0xdf,0x7a,0x68,0xc5, +0xe1,0xc5,0xc7,0x38,0x18,0xa3,0x89,0x13,0xd8,0x15,0xa1,0x4b, +0x8e,0x2f,0x3d,0x9d,0xa8,0xc7,0xff,0x2b,0xea,0xbb,0xb8,0xd7, +0x09,0x1c,0x0a,0x78,0x00,0x2e,0x69,0x89,0xd3,0x86,0x9e,0xc2, +0x01,0xdc,0xcb,0x6e,0xa8,0x70,0x7e,0xa5,0x02,0x3b,0x3e,0x96, +0xed,0xc1,0x1c,0x56,0x9b,0x02,0xdd,0x5c,0x01,0x48,0x9f,0x4b, +0x87,0x43,0xbb,0xa4,0x27,0x64,0xd9,0xa0,0xdf,0xa8,0x5f,0xc6, +0xad,0xc1,0x6a,0x32,0xec,0x70,0xd5,0xbc,0xcf,0xac,0xba,0x99, +0x37,0x69,0xdb,0x2d,0xdb,0x5f,0x3d,0xba,0x74,0xea,0x16,0x7c, +0x22,0x03,0xe5,0xa2,0x0f,0xfa,0x59,0xbc,0xfb,0x7f,0x94,0x7e, +0x14,0x7f,0x17,0x32,0xff,0xf7,0x33,0xfc,0x4e,0xfb,0xca,0xef, +0xd2,0xdf,0x5e,0x96,0x8a,0xe3,0x94,0xff,0x47,0x71,0xdc,0x29, +0x56,0xfe,0x61,0x24,0x9e,0xec,0xf8,0x60,0x0e,0xe3,0xbd,0x40, +0xb1,0xab,0xa3,0xfb,0x76,0xe5,0x90,0x75,0x19,0xef,0x69,0x6c, +0x67,0x60,0x67,0x17,0xf4,0xeb,0xf1,0xdf,0x2f,0xfe,0xca,0xc1, +0x81,0x2e,0xb1,0xdf,0x08,0x9c,0x18,0xbb,0x5d,0xab,0xb6,0xce, +0x31,0x2a,0x34,0xe7,0x5b,0x0b,0xdb,0xca,0x1a,0xab,0x32,0x3c, +0xd3,0x3d,0x52,0x5c,0xf5,0x74,0x36,0x1e,0x58,0x6d,0x55,0x68, +0xc6,0x3f,0x6b,0x7e,0xda,0xdf,0x3b,0x98,0xec,0x98,0x68,0x7f, +0xd9,0x6e,0xd7,0xfa,0xb9,0x1b,0x71,0xfc,0x01,0x1a,0xe6,0x60, +0xcc,0xc0,0xbb,0x6f,0xaf,0xdf,0xe7,0xa2,0xed,0x2f,0xd9,0xdb, +0x29,0x2f,0xf7,0xf4,0x3c,0xa0,0xb2,0x95,0xc9,0xd0,0x53,0x18, +0x66,0x7e,0x69,0xef,0xa4,0x99,0x79,0xbf,0x0e,0xe8,0xad,0x05, +0x65,0xd5,0xca,0xca,0x92,0x9a,0xcc,0x5a,0xae,0x9d,0x39,0x8d, +0x97,0x7a,0xb0,0x1e,0x96,0xa1,0x27,0x37,0xa2,0x28,0x0c,0x53, +0x32,0x01,0xba,0x40,0x18,0xe4,0xc5,0x5d,0xff,0xb9,0x59,0x4f, +0x50,0x97,0xc6,0x91,0x15,0xc2,0x9f,0x04,0x8e,0x32,0x67,0xbc, +0x4f,0x1f,0x3a,0xed,0xcb,0xe1,0x0a,0x51,0x4f,0x50,0x17,0xf4, +0xf0,0x30,0x13,0x95,0x17,0x55,0x70,0xa9,0x90,0x83,0xc4,0x4e, +0x9a,0x34,0x2e,0x95,0x5c,0x2a,0xb9,0x98,0xff,0x30,0xfe,0x7e, +0xd2,0x70,0xca,0xc1,0x0e,0x6a,0x24,0x15,0xd4,0xf7,0x43,0xaf, +0x69,0xe8,0xcb,0xa2,0xa9,0x3f,0xf2,0xe6,0x8b,0x54,0x3a,0x2d, +0x15,0xba,0x41,0x21,0x87,0x22,0x27,0x7d,0x65,0x54,0x69,0xfd, +0x1f,0xc5,0x60,0x14,0x46,0xae,0x24,0xf7,0x5f,0x44,0x5f,0x7e, +0xa6,0x7a,0xd6,0xef,0xec,0x41,0x69,0x39,0x56,0x38,0x03,0x9f, +0x63,0x32,0xf9,0x16,0xee,0x6c,0x65,0xc5,0x45,0xe2,0x37,0xff, +0xb7,0x25,0x60,0x38,0x0e,0x7e,0x22,0x6a,0x78,0xe7,0x01,0x8b, +0x5f,0x8d,0x83,0x3b,0x6b,0xf0,0x0e,0xbd,0x20,0x0d,0xd8,0x45, +0x4c,0x29,0x8c,0x52,0xde,0xc2,0xba,0x9d,0x88,0x29,0x55,0x85, +0x15,0xb0,0x10,0xae,0x1a,0x63,0xdc,0x62,0x40,0xf6,0x4a,0xca, +0x50,0x5a,0x67,0xe6,0xa1,0x76,0xde,0x21,0xd8,0xf8,0x98,0x7e, +0x28,0xf7,0xce,0x80,0x02,0x33,0xdd,0x30,0xed,0x08,0xc3,0x93, +0x29,0x46,0x7c,0x7b,0x74,0xf7,0xe5,0x6e,0x3a,0xbb,0x7e,0x5d, +0x0e,0x71,0x86,0xe2,0xe7,0xdd,0xd7,0xbe,0xc7,0x4d,0xac,0x61, +0x96,0x4f,0x9f,0xca,0x1b,0xa6,0x31,0x39,0xa5,0x5e,0xb5,0x4b, +0x78,0x24,0x95,0xd4,0x2c,0x13,0x32,0x28,0x17,0x92,0x4a,0x6a, +0x12,0xca,0x39,0x70,0xec,0x16,0x83,0x0d,0xc1,0xe7,0x3f,0x25, +0x35,0x1b,0x70,0x29,0xf9,0x15,0xda,0xe6,0xb3,0xa6,0xe3,0xe6, +0x60,0xdb,0x7b,0x16,0x97,0x8f,0x83,0x36,0x1c,0x8b,0x6d,0x0c, +0xe8,0x22,0x4b,0x7a,0xdd,0xee,0x9b,0xc8,0xcc,0x2b,0x9b,0x79, +0xe3,0xe6,0x5d,0x6d,0x7a,0xe5,0x1c,0xbe,0xc1,0xdd,0xe4,0x51, +0xf5,0x50,0x4b,0x67,0x97,0x4d,0x25,0x6f,0x65,0xae,0x69,0xbd, +0xd3,0x83,0xa6,0x5d,0x73,0x48,0x26,0xb8,0xf1,0x11,0x8e,0x79, +0xba,0xe7,0x07,0x0e,0xee,0xf5,0x89,0xae,0x4c,0x5e,0x4b,0x7a, +0x47,0x52,0x37,0x70,0xf1,0x30,0x2e,0xe5,0x97,0x4c,0xdf,0x1e, +0x1e,0x5d,0x6c,0x30,0x21,0x18,0xe3,0xce,0x25,0xe8,0xf1,0x30, +0x0e,0xb8,0x4b,0x71,0xa0,0xa0,0x1a,0x6c,0x14,0x64,0xee,0x63, +0xc3,0xe1,0x5b,0x3d,0xe8,0x63,0xf6,0x2c,0x9b,0xad,0x86,0xcb, +0x37,0x17,0x1b,0xf0,0x0d,0xd9,0x35,0x39,0x55,0x39,0x1c,0x7e, +0xb8,0xda,0x21,0x44,0x99,0x5e,0x81,0x5f,0xd8,0xaa,0x80,0xda, +0xc0,0x86,0x40,0x6e,0x44,0x1b,0x3e,0x21,0x2f,0x06,0xae,0x5f, +0x6b,0xbb,0x4b,0x9d,0x8d,0x69,0x57,0xbb,0xa6,0xf1,0x5c,0x97, +0x13,0xcf,0x61,0x39,0x01,0x7f,0x21,0x8a,0x8e,0x81,0x22,0x6c, +0x90,0x77,0x11,0xf4,0x97,0xaf,0x03,0x7f,0x56,0x6f,0x15,0x11, +0x7b,0xea,0x85,0x1e,0x46,0xec,0x59,0x43,0x84,0x1e,0x1b,0xb1, +0x87,0x81,0x53,0x78,0x84,0xe0,0x96,0x7e,0xd8,0x02,0xbf,0xe3, +0xd4,0x3e,0xd8,0x21,0x2e,0x6e,0x10,0xbe,0x68,0x19,0x69,0xb0, +0x14,0x3e,0xb1,0xa5,0xe1,0x65,0x47,0x1f,0x4c,0x65,0xfb,0xdd, +0x88,0x1d,0x78,0xd4,0xb3,0xb0,0x77,0xaa,0x1d,0x1c,0xa9,0x67, +0xc5,0xc5,0xf8,0x19,0xa9,0x47,0x0f,0x3b,0x56,0x3e,0x76,0x6a, +0x3d,0x1e,0xb1,0x63,0xa1,0x72,0x3e,0x69,0x19,0xf1,0xb4,0x64, +0x77,0x5b,0x11,0x4b,0x38,0xc7,0xfa,0xfa,0x1e,0xf4,0x3e,0xe8, +0x87,0xe4,0x0c,0x1f,0x6d,0x02,0xc1,0xb1,0x70,0x34,0x16,0xbc, +0xd3,0x94,0x72,0x8e,0xe6,0x1c,0xcd,0x08,0x6e,0xaa,0xe0,0xcd, +0x2b,0x35,0x1a,0xf5,0x2a,0x38,0x70,0x6d,0x61,0xd0,0x7d,0x06, +0xc1,0xaf,0x4f,0xa2,0xca,0x29,0x9c,0x7d,0x3a,0x2f,0xa7,0x20, +0x3f,0x37,0x9f,0x83,0x9b,0x8c,0xb3,0x6f,0x7a,0x44,0x66,0x58, +0x46,0xa8,0x92,0xe2,0x5f,0x93,0x2e,0x10,0x1c,0xcf,0x58,0x07, +0x27,0xd1,0x28,0xb4,0x1b,0xf4,0xe0,0xdf,0x7a,0xd8,0x86,0x5f, +0x0b,0x93,0xd8,0xa7,0xe9,0x0f,0xb3,0xae,0xe6,0x1f,0xea,0xe0, +0x0d,0xfc,0xf7,0x05,0xed,0x3a,0xc6,0x7d,0xd0,0xa5,0x6c,0x68, +0x6f,0xe8,0xee,0xc8,0xdd,0x27,0x13,0x0c,0xf8,0xeb,0x31,0x37, +0x2e,0x0f,0x27,0x70,0xa2,0x02,0x4e,0x86,0x64,0x7d,0x51,0xb5, +0xf7,0x11,0x4c,0x46,0x2d,0x76,0x7b,0x89,0xfb,0x63,0x15,0xca, +0x92,0x5b,0x32,0xb2,0x9a,0xa4,0x68,0xa3,0x9f,0xaa,0x30,0xb2, +0x5e,0xae,0x42,0xfc,0xd4,0xcc,0xb7,0xcc,0xde,0x59,0x62,0xc8, +0xff,0x7e,0x67,0xe0,0x65,0xea,0x77,0x5c,0x2c,0x93,0xb4,0xa6, +0x77,0xef,0xf7,0x6a,0xa5,0x32,0x7e,0xcd,0x2d,0xe3,0x3b,0x01, +0xb7,0xb9,0x70,0xd1,0x8b,0xc0,0xec,0x1e,0x9c,0x0d,0x13,0xde, +0x75,0xe3,0x25,0xc3,0x1f,0x71,0x02,0xae,0x36,0x80,0xd5,0x38, +0xc0,0x18,0x44,0xe8,0x1d,0x37,0x38,0x21,0xe9,0x8c,0x4e,0x4d, +0x83,0x99,0x45,0x6f,0x8b,0xce,0xf6,0xf0,0xd6,0x61,0x66,0x61, +0x26,0xe1,0xdc,0x93,0xdb,0x24,0xed,0x7f,0xab,0x51,0x84,0x8d, +0xaa,0x51,0x9c,0x82,0x39,0x24,0xcf,0x30,0x6f,0x73,0x92,0x6e, +0x7b,0xfa,0xa8,0x1a,0x85,0x5f,0xd7,0x28,0x58,0x5b,0x49,0x7a, +0x45,0x3f,0x36,0xa5,0x5c,0x5a,0xd0,0xa4,0x15,0xcf,0x87,0xd8, +0x06,0x3b,0x4a,0xea,0x6f,0xa8,0x0f,0x8f,0x18,0xf5,0xb9,0xf3, +0xd5,0x70,0x9b,0xd4,0x6d,0xe5,0x4d,0xd5,0xbd,0xfa,0x81,0x16, +0xce,0x44,0xd8,0xd6,0xc5,0x0e,0x58,0xdd,0xb1,0x7f,0xe1,0x54, +0xdc,0xc5,0xe3,0x8a,0x9b,0xb3,0xef,0x6d,0xfb,0x5d,0x52,0xf5, +0x55,0x23,0x43,0xed,0x6d,0xbd,0x55,0x57,0x39,0xf8,0x84,0xa9, +0xd7,0xe8,0x34,0x18,0x36,0x95,0xd4,0xb2,0x03,0x09,0x16,0xd0, +0x5c,0x25,0xdd,0x48,0x5f,0xcc,0x74,0xe6,0x66,0x77,0xaa,0x42, +0xbc,0x30,0xbd,0x6f,0xe4,0x67,0x3d,0x56,0xb8,0xbf,0x86,0xbc, +0xd0,0xbb,0xab,0x7e,0x7b,0x47,0x7d,0x03,0xbf,0xeb,0xfe,0xee, +0xa1,0xb5,0xfd,0x9c,0xb8,0xe2,0x1c,0xb1,0xdc,0xa9,0xa7,0x3b, +0x57,0xab,0xd6,0x8a,0xff,0x30,0x7c,0xe5,0x56,0xeb,0x43,0xca, +0x4a,0x3c,0xe5,0x87,0xc9,0x81,0xf3,0x7a,0xe7,0x8c,0x55,0xf0, +0x1b,0x03,0x98,0xc6,0x9c,0xdd,0x7d,0x46,0xe7,0x84,0x09,0xcd, +0x15,0x06,0xf0,0x05,0xe3,0x8f,0x8a,0x36,0x5b,0xd7,0xcd,0x6f, +0xb1,0xe2,0x7f,0xfc,0xb3,0xf5,0x75,0x1e,0x2c,0xe6,0x60,0x3b, +0x73,0x66,0xe3,0x69,0xad,0x93,0x96,0x9c,0x7a,0xa4,0x6f,0x98, +0xf5,0xb4,0x85,0xd2,0xa2,0xdb,0xe7,0xcc,0xf3,0xda,0xa2,0x1f, +0x92,0x54,0xd3,0x60,0x4a,0x34,0x98,0x0b,0x4b,0x94,0xc5,0xbd, +0xfa,0x8c,0xfc,0x12,0x66,0x90,0xae,0x9f,0xea,0x7e,0xc8,0x7f, +0xce,0x75,0xe0,0xfb,0x8f,0xca,0x9f,0xde,0xac,0x9f,0x9a,0xdd, +0x72,0xad,0xf9,0xdc,0xa3,0x3d,0x03,0x92,0xf2,0x67,0xa0,0xeb, +0x66,0x95,0xdd,0x4c,0x92,0xa6,0xc2,0x4d,0x06,0x3e,0x69,0xbe, +0xf6,0xd3,0xcf,0xba,0x0f,0xf7,0x5c,0x53,0x15,0x9b,0xdf,0x90, +0x0b,0xb2,0x0b,0x7d,0xc3,0xca,0xb0,0x82,0xd1,0x3c,0xaf,0x7b, +0xce,0x48,0x05,0xd5,0xf0,0x38,0x89,0x91,0x45,0x0d,0x5c,0xba, +0xc5,0xc1,0x2a,0xe6,0xdc,0xde,0x73,0x3a,0x67,0x8d,0x46,0x5b, +0xf0,0xdd,0x23,0x1a,0xb8,0x4a,0xfc,0x74,0x24,0x78,0x58,0xbe, +0x1d,0xba,0x99,0x73,0xb8,0xcd,0x75,0x33,0xe5,0x77,0xaa,0x55, +0x46,0x3c,0x7c,0xfe,0xe0,0xc1,0xad,0xfa,0x7b,0xd1,0x97,0xa3, +0xce,0x5d,0x3e,0x0e,0xe7,0xd0,0x93,0x6f,0x68,0xc3,0x48,0x70, +0x0a,0x49,0x0c,0x3f,0x1f,0x16,0xa6,0x14,0x16,0x76,0xea,0xa2, +0x42,0x76,0x47,0x6c,0xff,0x13,0x65,0xb8,0x25,0x7e,0x8f,0xee, +0x4c,0xda,0x01,0x05,0x0a,0xf8,0xba,0x73,0xa4,0x2a,0x14,0x5e, +0xfc,0x52,0x6a,0xba,0x21,0xdf,0x40,0xc4,0x5f,0x99,0xac,0x96, +0xb4,0x96,0xc4,0xa6,0xfd,0x89,0xbc,0x03,0x2e,0x5e,0x84,0xab, +0x90,0xc7,0x89,0x2d,0xa6,0xfc,0x8b,0x87,0xb7,0x7f,0x92,0xfd, +0xcc,0xc1,0x9c,0x91,0x7d,0xd7,0x21,0x52,0x98,0xde,0x2f,0x4e, +0x87,0x6d,0x1f,0x77,0x1b,0x05,0x09,0x32,0x2b,0x5d,0x20,0xce, +0x4d,0xde,0xff,0x06,0x7a,0x21,0x4f,0x47,0x34,0xb1,0x97,0xc5, +0x0c,0x4f,0x54,0x54,0xc7,0xcf,0xa4,0xe8,0x7c,0x17,0xa6,0x95, +0xc3,0x3c,0x28,0x56,0x86,0x33,0xc2,0x4d,0x2c,0x67,0xf1,0x66, +0x39,0x4e,0xed,0x37,0x52,0xa9,0xf2,0xa8,0x49,0x89,0x91,0x65, +0x81,0x21,0x6f,0x96,0xaf,0x80,0xc6,0x30,0x9b,0xf4,0xe1,0x16, +0x48,0xd0,0x1a,0x19,0x87,0x8a,0x42,0x8c,0x96,0x18,0x83,0x5f, +0xe8,0x09,0xaf,0xfb,0xd0,0x17,0x06,0xff,0xf3,0x08,0x77,0x13, +0x66,0x4a,0xfa,0x20,0x17,0x0c,0xe1,0xc2,0xc6,0x81,0xa7,0x90, +0xb9,0x71,0xf0,0x29,0xa4,0x76,0x63,0x2a,0x03,0xa1,0xe2,0x9f, +0xa4,0x13,0x57,0xfd,0x09,0xab,0xe8,0xf6,0x3d,0xec,0x94,0xd1, +0x08,0x9a,0x5d,0x9e,0x56,0x99,0x58,0x2c,0x15,0xa9,0x38,0x04, +0x39,0xf9,0x38,0x71,0xf8,0x0d,0x93,0x5e,0x91,0x52,0x9e,0x50, +0x62,0x9c,0xc1,0xbb,0x2d,0x30,0x5d,0xb5,0x73,0x7b,0xa5,0x1d, +0x8f,0xd3,0x29,0x37,0x9d,0xd1,0x8d,0xf1,0x52,0xd5,0x5b,0x41, +0x6c,0xae,0x51,0x3a,0xef,0xbf,0xd5,0x6a,0x9d,0x99,0x6e,0xb3, +0x33,0x9f,0x5f,0x92,0x5b,0x9d,0x25,0x2d,0x94,0x5f,0x8e,0xa6, +0x86,0x94,0x5d,0x84,0xcf,0x33,0x5e,0x84,0x4a,0xb3,0xea,0xcc, +0xf9,0x1f,0x1f,0x76,0xdf,0xa9,0xfc,0x36,0x3a,0x3e,0xfa,0x42, +0x5c,0x24,0xf0,0xb8,0x90,0xaf,0x6f,0xa2,0xbe,0x3a,0x23,0x3c, +0x31,0x32,0x2a,0x24,0x54,0x29,0x2c,0xfc,0x44,0x54,0x7c,0x51, +0x4c,0xd1,0xa5,0x32,0x25,0x98,0xdd,0xcd,0xa4,0xa6,0xa5,0x64, +0xa4,0x64,0x72,0xa2,0x4d,0x5f,0xb7,0xf0,0x8d,0x8c,0x22,0x08, +0x86,0x45,0x17,0x70,0x21,0xef,0x61,0xe9,0x1c,0x16,0x97,0xe2, +0x6a,0x0a,0x5c,0x97,0xce,0x60,0x4d,0xc6,0x21,0x83,0x4b,0x41, +0x6a,0x62,0xd8,0x07,0xd3,0xc9,0xcf,0xf0,0x49,0xfd,0x77,0x97, +0xdf,0x73,0xb1,0x22,0xd3,0x25,0x30,0xb1,0x4c,0xfc,0xec,0xd6, +0x35,0xbf,0xe0,0xb8,0x72,0x19,0xbf,0x18,0x3e,0x35,0x7b,0x78, +0xe8,0x37,0x0e,0x56,0x77,0xa3,0x06,0x74,0x1b,0x52,0x7c,0xba, +0x47,0x5a,0x46,0xec,0x3b,0xd7,0x6a,0xd3,0xd2,0x59,0xdc,0x11, +0x61,0x2e,0x09,0xb8,0xe9,0xf0,0xca,0x71,0xd8,0xea,0x10,0x5f, +0xa3,0x59,0xb5,0x21,0x6f,0x07,0x27,0x7e,0x0d,0xc7,0x89,0x21, +0x44,0x74,0xb3,0xc2,0x83,0x33,0xe4,0xe8,0x7e,0xbf,0xfd,0x87, +0xf4,0x9b,0x02,0xf9,0xc2,0xae,0xfc,0x07,0xe9,0x57,0x38,0x2c, +0xc1,0xed,0xe4,0x58,0xff,0xc1,0x07,0xbe,0x32,0x8b,0x40,0xbe, +0xc0,0x30,0x7f,0x77,0x9a,0x16,0x27,0x5e,0xbb,0x47,0xf4,0xa1, +0x91,0x8e,0xe5,0x65,0x54,0x25,0x06,0x70,0xa4,0x87,0x05,0x9d, +0xdd,0x04,0x67,0x1a,0xbf,0x42,0x6f,0x66,0x96,0xaf,0xfd,0x4a, +0x6b,0x95,0x1c,0xbd,0x37,0xcd,0xb9,0x6d,0x17,0xbf,0xa5,0x09, +0x72,0xd5,0xa5,0x2e,0x2d,0x58,0x3c,0x0d,0x0a,0x98,0x84,0x3e, +0x05,0xac,0x66,0x50,0xd5,0x6a,0x10,0x3e,0x51,0x45,0x1d,0x58, +0x4a,0xba,0xf1,0x88,0x21,0xdb,0x25,0x2e,0x21,0x5d,0xb0,0x07, +0xf2,0xf1,0x98,0x74,0x03,0x70,0xef,0xc7,0x1b,0x80,0x93,0xa4, +0x1b,0x80,0xf2,0x3b,0x55,0x04,0x76,0xfd,0x29,0x9b,0x01,0xcb, +0xff,0xe8,0x9a,0x09,0x4b,0x81,0xeb,0xc6,0x71,0x6c,0x46,0x5b, +0x5a,0x6f,0x7c,0x8b,0x39,0x8d,0x3d,0xe6,0x47,0xb4,0x03,0x0c, +0xb9,0x4d,0x4c,0x6a,0x7b,0x52,0x5b,0x42,0xaf,0x69,0x22,0x1f, +0x80,0x94,0xe4,0x7f,0x69,0x84,0x9f,0x70,0xaf,0xf0,0x09,0x7a, +0x82,0xf2,0x7e,0x9c,0x63,0x01,0x73,0x8e,0xb0,0x41,0xe7,0x8e, +0x9e,0x3d,0xa6,0x82,0x4b,0x2c,0x60,0x16,0x13,0xb0,0xc7,0xd4, +0x6a,0x8d,0x61,0x91,0x15,0xff,0xa6,0xaf,0xb1,0x2d,0xa7,0x26, +0x3a,0x2e,0xea,0x5c,0x34,0x0d,0x5f,0xa8,0xcc,0x97,0xd7,0xe3, +0x34,0x98,0x14,0x71,0xf9,0xf8,0xc5,0xe3,0x91,0x4a,0xe1,0x61, +0xa7,0x2e,0xc5,0x24,0x45,0xa7,0x44,0xa5,0x2a,0xc1,0x86,0x56, +0x5c,0xc1,0x5c,0x48,0xbd,0x90,0x96,0xae,0x9c,0x01,0xf3,0x5a, +0x25,0x69,0x83,0x99,0xbf,0xb0,0x45,0x5e,0x97,0x33,0x2e,0x67, +0xc4,0x65,0x28,0x89,0xf7,0x64,0x57,0xa0,0xa0,0x8b,0x15,0x7f, +0x10,0x5e,0x91,0xe7,0x3f,0xaf,0xef,0x7c,0xfe,0xaf,0xe6,0x55, +0xcf,0x4c,0x36,0x2c,0xa2,0xff,0xb7,0x5b,0xdd,0x5f,0xcf,0x6e, +0x79,0x42,0xec,0x1b,0x2c,0x9a,0xcd,0x2b,0x29,0x27,0xeb,0x70, +0xa8,0xb3,0x6f,0xa0,0xac,0x3e,0x0c,0xf5,0x09,0x2c,0x7d,0x2b, +0xf5,0x59,0xe9,0x0f,0xa6,0x6e,0x62,0x20,0x33,0xaf,0x75,0xb6, +0xe3,0x9b,0xed,0x3b,0xcd,0x6a,0x2d,0x39,0x50,0x84,0x49,0xe4, +0x19,0x4e,0xda,0xc0,0xc0,0xf4,0xa9,0x30,0xe9,0x5f,0x38,0x89, +0x85,0x35,0x48,0x09,0xe8,0xf2,0xb7,0xb8,0x9c,0x15,0xff,0xae, +0x22,0x7e,0x52,0x13,0xf6,0x09,0x06,0x73,0xdb,0xfe,0x8f,0x26, +0xec,0xc2,0xc0,0x0e,0x82,0xbb,0x16,0x4b,0xda,0x69,0xc2,0x04, +0x81,0x32,0x61,0xe6,0xfe,0x93,0x77,0x6d,0x30,0x81,0x7b,0xc0, +0xd4,0xce,0x7b,0x83,0x0a,0x7f,0x6e,0xab,0xec,0xe4,0x97,0x5d, +0xdd,0xf6,0xca,0xfe,0x35,0x07,0xc6,0xdd,0x38,0xcc,0xc4,0x97, +0xc5,0x55,0xc4,0x54,0xea,0x25,0xf0,0x27,0xed,0x23,0x9c,0xc2, +0x68,0x64,0x76,0x31,0x04,0x3d,0xc6,0x7a,0xfe,0xee,0xcd,0x8b, +0xf4,0xb8,0x33,0x3e,0xc4,0x2d,0xd8,0x35,0xd8,0x25,0x94,0x83, +0x23,0xc0,0xf4,0x22,0x03,0x1a,0x3a,0x94,0x3c,0x4d,0xd1,0x87, +0x29,0x78,0x89,0xb5,0x3c,0x66,0x11,0x62,0x2d,0xf5,0x33,0xa9, +0x4f,0x68,0x4c,0x6a,0x18,0xed,0x67,0x32,0x5e,0xea,0x67,0xf2, +0x13,0xd3,0x96,0x96,0xd9,0x2c,0xb5,0x6d,0xa9,0x49,0xa9,0x4e, +0xad,0x4e,0xe3,0x04,0x37,0x60,0x09,0xde,0x33,0x82,0x7b,0x0c, +0x7c,0x8d,0xe3,0x88,0xf8,0xd0,0x08,0x2e,0x61,0x02,0x4e,0x66, +0x12,0x0d,0x14,0x68,0x44,0x6f,0xce,0x48,0x6f,0x51,0x85,0x8b, +0x90,0xc3,0x8a,0x2e,0x66,0xc4,0x59,0x5d,0x5d,0x6d,0x8f,0x59, +0x9d,0x0d,0x7f,0xa7,0xef,0xc6,0xa3,0xda,0xdb,0x1c,0x1c,0x3b, +0x41,0x3a,0x8d,0xaf,0x6c,0xae,0xd4,0x6c,0xa9,0xe4,0x9d,0x86, +0xd5,0x1f,0x9b,0xb6,0xd3,0xb0,0x7d,0x40,0x7e,0x8b,0x04,0xaa, +0x39,0x6f,0x5d,0x2b,0x55,0x98,0xbf,0xb8,0xd3,0xfa,0xea,0x63, +0x65,0xc1,0xda,0x86,0xff,0x08,0x1a,0xda,0xdd,0x3a,0x7c,0x87, +0x13,0xfe,0x1d,0x40,0xc4,0x35,0xf8,0x40,0x47,0xec,0xef,0x13, +0x62,0x84,0x0d,0xe2,0x3e,0xdc,0xc2,0x24,0xe9,0x4b,0x22,0xc0, +0x4d,0xa9,0xd9,0x8d,0xaa,0x82,0x9f,0x36,0xab,0x07,0x39,0x64, +0x11,0x1a,0xe3,0x8e,0x99,0xf4,0x04,0xa8,0x8d,0x73,0xa4,0xf5, +0x93,0x33,0x28,0x53,0x10,0x07,0x70,0x0a,0x91,0xa6,0x1c,0x07, +0x13,0x9e,0xc9,0xd0,0x63,0x54,0xc9,0x90,0x37,0xa4,0x6e,0x2d, +0x29,0x19,0x9a,0x47,0x5a,0x49,0xe5,0x06,0xef,0xd3,0xe1,0x8b, +0xa2,0x6f,0xf3,0xcf,0x76,0xf1,0xae,0x11,0x8e,0xe1,0xf6,0x91, +0x1c,0x94,0x43,0x35,0xc1,0x8e,0xce,0x21,0x70,0x86,0x70,0x56, +0x3c,0x88,0xae,0x24,0xb9,0x27,0x7e,0x20,0xb6,0xc7,0x3a,0x7e, +0x54,0xb9,0x30,0x94,0xe6,0x16,0x67,0x58,0x4c,0x72,0xf4,0xb3, +0x37,0x25,0x68,0xb7,0xa6,0xf0,0x11,0xff,0x28,0x17,0xba,0xe2, +0x72,0x02,0xd3,0x69,0xee,0x9d,0x4e,0x11,0xce,0x29,0xc1,0x96, +0x9c,0x02,0xfe,0x5d,0xf7,0x42,0xd0,0xd1,0x47,0x1d,0xfc,0xda, +0x10,0x14,0xa5,0xbb,0x86,0x4e,0x38,0x7b,0x0d,0x7e,0x59,0x63, +0xce,0xdf,0xfc,0x77,0xfe,0xbf,0xa3,0xbf,0xa7,0x41,0x20,0xa3, +0x77,0xf4,0xae,0xe1,0xb9,0x8b,0xd2,0x2d,0xe7,0x4d,0xd5,0x35, +0xdb,0x61,0xd5,0xf1,0xd4,0x13,0xe7,0xc3,0x22,0x94,0xe4,0xba, +0x34,0x96,0xa0,0x09,0x53,0x50,0x97,0xd3,0x9a,0x5a,0x6b,0x94, +0xc3,0x07,0x99,0x1f,0x32,0xf6,0xa0,0xb9,0xfa,0xa9,0x21,0x18, +0x2c,0xa0,0x39,0xe3,0xd7,0xde,0x7e,0x61,0x89,0x6e,0xaf,0xf0, +0x2b,0xee,0xfa,0x05,0x9c,0x19,0x84,0x17,0xe4,0x68,0xed,0xc1, +0x76,0xbf,0x52,0x33,0x1f,0x3e,0xd7,0xad,0xc8,0x22,0xd5,0x89, +0x1b,0xc2,0x35,0xe4,0x97,0x47,0x0b,0x58,0x9c,0x66,0x42,0x4e, +0xad,0x3a,0x68,0x64,0xa0,0x5f,0x6d,0xcd,0xdf,0x7b,0x5c,0x38, +0x10,0xfd,0x81,0x7b,0x8c,0x93,0x18,0xcb,0x02,0xdf,0x66,0x95, +0x5f,0xd7,0x8a,0x4b,0x28,0x7d,0x85,0xd7,0x38,0x8f,0x38,0x9d, +0x88,0xad,0x54,0x7d,0x4f,0xb1,0xf2,0x3c,0x56,0x5c,0x82,0x7a, +0x44,0x58,0x32,0x47,0x5c,0x42,0x51,0xb0,0xc5,0x1a,0xf2,0x04, +0xe6,0x67,0xc1,0x0e,0x48,0x50,0x86,0x9f,0x75,0xb1,0x83,0xc5, +0x9c,0x63,0xb8,0x7d,0x33,0xce,0x53,0x11,0x92,0xfc,0xc8,0x5f, +0xb3,0x34,0xff,0x9e,0xc5,0xe2,0xa4,0x06,0x22,0x7f,0xaa,0x3b, +0xf2,0x94,0x15,0x3f,0x73,0x27,0x77,0xf3,0x0a,0x1e,0xc7,0xab, +0x5e,0xbe,0x75,0xe9,0x1d,0xac,0x50,0xc6,0x89,0xbf,0x03,0x69, +0x45,0xf2,0xe3,0x3f,0xdb,0x19,0x1d,0xf8,0xb7,0x78,0x0c,0x1a, +0x18,0x9c,0x74,0x76,0xd3,0x49,0x23,0x15,0xbd,0x13,0x21,0x61, +0xa6,0xd3,0xb4,0xa5,0xbe,0xba,0x38,0x46,0xde,0x47,0xe9,0xfd, +0x52,0x64,0x19,0x8b,0x71,0xff,0x7b,0x3f,0x97,0xee,0xc1,0x1f, +0x0f,0x91,0x13,0x8d,0x21,0x6d,0xc1,0xf5,0xae,0xe1,0x7c,0x8a, +0x75,0xa2,0x55,0x9c,0x25,0x87,0x91,0xb8,0x96,0xe4,0x3c,0x4a, +0xf9,0x10,0x0b,0x9f,0xd8,0xc4,0xf1,0x27,0xe7,0x1e,0x9b,0x1d, +0xa0,0xc6,0xc1,0xa5,0x97,0xe4,0xe4,0x70,0xf0,0xb7,0xa1,0x32, +0xe7,0x48,0x3e,0xc9,0x20,0x51,0x3d,0x56,0x8d,0xb3,0xb5,0x24, +0x67,0x1f,0x9f,0x78,0x1b,0x79,0xc7,0xe9,0x24,0x1f,0xbb,0x33, +0x7a,0xe9,0x85,0x75,0x74,0x26,0x36,0x0b,0xa7,0x49,0x92,0x77, +0x82,0x47,0x82,0xbb,0xd5,0x49,0xcb,0x53,0x16,0xa7,0x07,0x9f, +0x5d,0x03,0x85,0x3e,0x60,0xcd,0x0b,0x79,0x6f,0x1d,0x77,0x4d, +0x57,0xdd,0xa0,0x9c,0x40,0xfa,0xaf,0x7a,0xa8,0xfc,0x76,0xe1, +0x75,0xd3,0x1c,0xde,0x4f,0xc3,0x4b,0xc3,0xdd,0x20,0x24,0x25, +0x38,0x39,0x24,0xc9,0xcd,0x86,0xef,0xb0,0xea,0x30,0x6e,0x32, +0xf4,0xb1,0xf3,0x71,0xf4,0x75,0xf7,0x3e,0xeb,0x7d,0xce,0xfb, +0x5c,0xb4,0x01,0x2f,0xbb,0x24,0x8b,0x92,0x45,0x53,0xc4,0xd2, +0x2b,0xac,0x63,0x8b,0x2e,0x15,0x46,0x15,0x46,0x45,0x1f,0x89, +0x3e,0x12,0x75,0xa4,0x35,0x9d,0x3f,0x7a,0xcb,0xff,0xb6,0x4f, +0x1f,0x27,0xf4,0x88,0xc5,0x04,0x97,0x32,0x76,0x11,0x31,0x35, +0xaa,0xbd,0xe0,0x0b,0x4f,0xd0,0xf7,0x1e,0x58,0xc3,0x5d,0xd1, +0x12,0xef,0x82,0xe5,0x0e,0xf4,0x10,0x67,0x77,0xdd,0x86,0xb5, +0xba,0xec,0xfe,0x2c,0xdf,0x47,0x2a,0x14,0x21,0x35,0xa4,0xa4, +0x57,0xab,0xde,0x62,0xcd,0x52,0x14,0x30,0x51,0xf8,0x91,0xe0, +0xdc,0xd7,0x30,0x97,0xe9,0x5a,0x4d,0x5e,0xc3,0x82,0xd5,0x2c, +0xfe,0x6a,0x49,0x60,0xee,0x0a,0x9c,0xcb,0x80,0xc5,0x77,0x04, +0x16,0xac,0xc0,0x05,0x8c,0x11,0x26,0x12,0x5c,0xf3,0x46,0x52, +0xe1,0xf6,0x59,0x49,0x70,0xf3,0x1b,0xd8,0xcc,0x88,0xfd,0xd4, +0x81,0x53,0x74,0xe2,0xf7,0xc6,0xec,0xef,0x48,0xe3,0x4f,0x5e, +0x09,0xb9,0x1b,0xd2,0xcb,0x61,0x0c,0x36,0x90,0xf2,0xa7,0x19, +0xbf,0x5c,0xfe,0xd9,0x2c,0x8e,0x8f,0x5c,0x7d,0x64,0x8d,0xdb, +0x26,0x4e,0xd8,0x07,0x3e,0x04,0xd6,0x2c,0x41,0xfa,0x71,0xf7, +0x9f,0x08,0x6c,0x5e,0x82,0x9b,0xe9,0x44,0xd8,0x2d,0xac,0x26, +0x6d,0x55,0xb5,0xb5,0x65,0x0d,0x39,0x87,0xb2,0xbc,0xb3,0xbd, +0x6a,0x6a,0x79,0xbf,0x52,0xbf,0x12,0xdf,0xa2,0x52,0x59,0x56, +0x7f,0xe2,0x35,0xae,0x01,0x2f,0x1a,0x83,0x11,0x1b,0x69,0x75, +0xcc,0x2e,0xd0,0xf1,0x60,0xb1,0x57,0xa1,0x67,0xbe,0x93,0x0b, +0x5f,0xe1,0x55,0xea,0x59,0xec,0xe6,0xe5,0xe0,0xe8,0x64,0xe1, +0xc2,0x09,0x1b,0x60,0x0d,0xf1,0x28,0x71,0x2f,0x74,0xcf,0x73, +0x75,0xe2,0x2b,0x0e,0x95,0x79,0x95,0xba,0xbb,0xda,0x5b,0x39, +0xea,0xbb,0x94,0x5a,0xf2,0xbd,0x35,0xad,0x75,0xd5,0x4d,0x65, +0x2e,0x25,0x4e,0xc5,0x0e,0xd5,0xb5,0xbc,0x67,0x9d,0x7b,0xad, +0x5b,0x65,0xa5,0x2c,0xb7,0x2f,0x59,0xfa,0xee,0x58,0x63,0x30, +0x63,0xc3,0xac,0x8e,0xd8,0xf9,0x3a,0x70,0x23,0xa1,0xb0,0x9f, +0x8c,0x34,0xf7,0x3f,0x87,0x10,0xb9,0x13,0x4b,0x67,0xc1,0x63, +0x02,0xf9,0xc3,0x98,0xcf,0xca,0xa6,0x42,0xfe,0x75,0xba,0x47, +0x2d,0xfc,0x81,0x40,0xed,0x30,0xd6,0x4a,0x2f,0xd5,0x5e,0xa7, +0x7b,0xf8,0x65,0x01,0xf1,0x29,0xf7,0x29,0x3d,0x54,0x5c,0x36, +0x98,0x7d,0x3d,0xf1,0x2e,0x57,0x8f,0xe7,0x4c,0x40,0x8f,0x8d, +0x30,0x3e,0x66,0xe6,0x6f,0xe5,0x5e,0xee,0x5e,0xe2,0x5a,0xe0, +0xea,0xc0,0x57,0x7b,0x56,0xb8,0x57,0x38,0x3b,0x1b,0x9a,0x9b, +0x1e,0xb0,0x28,0xb3,0xe0,0x87,0x5b,0x3b,0x64,0xb5,0xfd,0x39, +0xde,0x39,0x5e,0xb9,0x1e,0x1c,0xf8,0xbd,0x27,0xcd,0xb7,0x8b, +0x1e,0xa5,0xbc,0xa4,0xe7,0x13,0x63,0x42,0xcf,0x27,0xe4,0xc0, +0x61,0x1d,0x37,0x43,0xf7,0x76,0x1f,0x59,0x60,0x87,0x85,0x0f, +0x9f,0xad,0x5f,0xaa,0x55,0xa3,0xe7,0x62,0x6d,0x61,0xaf,0xed, +0x54,0x6a,0xc1,0xf7,0x57,0xb5,0xd6,0xd7,0xb4,0x54,0x58,0xd5, +0xda,0x37,0xba,0x55,0x74,0xf0,0xd6,0xe5,0x8e,0xb5,0x6e,0x8d, +0xa3,0x0d,0x19,0xfc,0x88,0xb8,0xe9,0x57,0xf5,0xf9,0xe2,0x42, +0x03,0x61,0x21,0x8e,0xc7,0x3f,0x47,0x26,0x5f,0x15,0x1e,0xc9, +0x57,0x8b,0x71,0x68,0x3c,0x5a,0x44,0xb5,0x9b,0x69,0x4d,0x4f, +0x6d,0x52,0x15,0xfa,0xc5,0x2f,0x60,0xbc,0xb0,0x89,0x1d,0x99, +0x8c,0x87,0x49,0x9e,0x47,0x8e,0x53,0xba,0x6b,0x7b,0x1e,0x7f, +0xb4,0xc4,0xb7,0xc1,0xa7,0x84,0x13,0x66,0x63,0x3f,0xc1,0x30, +0x18,0x0b,0xe7,0xbb,0x68,0x92,0xcb,0xaf,0xc9,0xad,0xcf,0xa8, +0x32,0xca,0xe2,0x83,0x6c,0xbc,0x4c,0x3c,0x6c,0x39,0xbc,0x61, +0x04,0x47,0x29,0x5b,0xf4,0x36,0x02,0x6f,0x54,0x1b,0x00,0x35, +0x08,0x63,0x14,0x29,0xcc,0xb6,0xa2,0xe1,0xe9,0x9b,0xd1,0xd6, +0x23,0xff,0x37,0xad,0x7b,0x1e,0xe0,0xbc,0xaa,0xba,0x5d,0xf0, +0x4d,0x64,0xca,0x89,0xf3,0xa1,0x34,0x42,0xed,0x81,0x54,0x82, +0x99,0x7f,0x68,0xcd,0xc4,0x18,0x03,0x88,0xc1,0x71,0x78,0x78, +0xe4,0xeb,0x3e,0xe1,0xa5,0xb0,0x56,0x4c,0xa1,0xde,0x9a,0x66, +0xa0,0xf0,0xfd,0x3f,0x22,0x5e,0x03,0x78,0x96,0x32,0xca,0x4c, +0x16,0xa7,0x8a,0xa7,0x08,0xaa,0xfc,0x01,0xf3,0x65,0x0b,0x98, +0x8c,0xea,0x8c,0xd6,0xa4,0x5a,0xb3,0x34,0x3e,0xcc,0x3a,0xc8, +0xd4,0x87,0x3a,0xb2,0x96,0x31,0x4c,0x9f,0x39,0xda,0x8d,0x0b, +0x75,0x7a,0x41,0x07,0x54,0x18,0x6c,0x80,0x97,0x24,0xdd,0x35, +0xcd,0x29,0xc1,0xa5,0x25,0x83,0x0f,0xab,0x39,0x52,0x73,0xb4, +0x94,0x53,0x94,0x1f,0x16,0xfe,0x8b,0x80,0x2a,0x13,0xb6,0xdd, +0x77,0x99,0xf3,0xe6,0xf6,0x43,0x7c,0xd3,0xbb,0xbc,0x7f,0x27, +0x3e,0xe3,0x5a,0xf1,0x09,0x1b,0xdf,0x19,0xdb,0x15,0xd5,0x63, +0x10,0xcb,0x87,0xe1,0xd2,0x43,0xa8,0xb8,0x0b,0x95,0xda,0x5c, +0xf9,0xea,0x5b,0x05,0xb7,0x33,0xee,0x73,0x2f,0x70,0x26,0x25, +0x77,0xfa,0xf8,0x0d,0x45,0xc0,0x73,0x55,0xca,0xe9,0x0f,0xc0, +0xf4,0xab,0xc0,0x45,0xc3,0x16,0x0a,0x74,0x62,0x50,0xed,0x2e, +0x4e,0x00,0x55,0xfc,0xba,0x64,0x80,0xc7,0xb5,0x30,0x57,0x0b, +0x54,0xc1,0x55,0x59,0xd4,0xc5,0xdf,0xa8,0x8b,0xad,0x11,0xbe, +0xc0,0x35,0x8f,0xc0,0xb0,0x1b,0x0d,0xdf,0xeb,0xce,0x41,0x1d, +0x43,0xd0,0xd9,0x82,0x2b,0xe8,0xc0,0xac,0x58,0x8d,0x06,0x34, +0x1e,0x7f,0x14,0x71,0x32,0xe8,0x66,0xf1,0xa2,0xb0,0x8a,0xe0, +0x98,0x05,0x92,0x76,0x53,0x12,0x8e,0x21,0x73,0x60,0xcc,0x7b, +0x06,0x93,0x28,0x18,0x1c,0x15,0x58,0x82,0x95,0x53,0x81,0x79, +0x2f,0x75,0xb4,0x96,0x57,0xd6,0x13,0xd8,0x0a,0xca,0xdd,0xa8, +0x0c,0x4b,0xfe,0xb3,0x5b,0xd1,0x87,0x0b,0xd8,0xbc,0x8e,0x54, +0x59,0x42,0xa3,0x49,0x12,0x1f,0x6a,0x79,0x58,0xd7,0xd7,0x90, +0x9b,0xc9,0x64,0xb6,0xa5,0xb4,0x25,0xcb,0x8c,0x93,0xf9,0x83, +0x38,0xce,0x00,0x67,0xec,0x5b,0x52,0x65,0xcd,0xa7,0xe6,0x26, +0xe7,0x24,0x64,0x71,0xe2,0x6f,0x3d,0x57,0xe1,0x5d,0x1f,0x3b, +0x72,0x52,0xf8,0x8b,0xf4,0x83,0x8a,0x6e,0x4f,0x3f,0x8c,0x91, +0xe1,0x98,0x5b,0x06,0x7b,0x50,0xe5,0x96,0xe1,0x1e,0xfc,0xc4, +0x18,0x3e,0xd1,0x65,0x61,0x89,0xf8,0x29,0x01,0x4d,0x19,0x6a, +0x3e,0xa0,0x8c,0xd5,0x81,0xd2,0x65,0x07,0xd8,0xa5,0x86,0xba, +0xc6,0xa0,0x6b,0xcf,0x84,0x9c,0x0b,0x3d,0x17,0xaa,0x82,0xd6, +0x46,0x60,0xc0,0xf8,0xaa,0x69,0x9a,0x51,0x58,0x52,0x60,0xc6, +0xff,0xde,0x3a,0xd8,0x52,0xdb,0x1f,0x1b,0x17,0x7d,0x3e,0xf6, +0x24,0xec,0xc5,0xc9,0x7c,0x45,0x2b,0x6e,0x00,0x85,0xd0,0xcb, +0xc7,0xcf,0x87,0x47,0x28,0x85,0x45,0x9c,0xba,0x18,0x9b,0x1c, +0x93,0x1a,0x95,0xa1,0x04,0x0e,0x5d,0x68,0xc1,0x5c,0x48,0x3c, +0x9f,0x98,0xa4,0x0c,0x57,0x21,0x88,0xd0,0x0b,0x99,0x84,0x4b, +0x58,0x11,0x7e,0x23,0x30,0x71,0x96,0xa4,0x2d,0xb6,0x7b,0xea, +0x07,0xf8,0x7c,0x16,0x0b,0xfa,0x68,0xf3,0x9f,0xbf,0x1a,0x8e, +0xc3,0xad,0x14,0x26,0x6e,0x95,0x9e,0x13,0xcb,0x15,0x89,0x48, +0x98,0x9c,0xab,0x99,0x57,0x53,0x86,0xb4,0x93,0xf9,0x63,0x1a, +0x01,0x7b,0x7c,0xf7,0x70,0x68,0xaa,0x07,0x3b,0x18,0xc7,0x45, +0x96,0x8b,0x8c,0x37,0xbe,0xb0,0x7a,0x62,0xfe,0xad,0xd9,0x86, +0x1d,0x33,0xf4,0x50,0xc5,0x42,0xea,0x1f,0xb9,0xa0,0x1d,0x26, +0x5c,0x7b,0xf3,0xe2,0x07,0xad,0x57,0xea,0xcf,0xf7,0xd4,0xb5, +0xf2,0x1b,0xaf,0xaf,0xbc,0xbe,0x72,0xf0,0xc7,0x3f,0xfa,0x61, +0x5a,0x21,0xa8,0x71,0xdf,0x33,0x23,0x9f,0x81,0x0a,0xd1,0x6f, +0xdc,0xd3,0xb0,0xb7,0xd4,0xd3,0x84,0xbf,0xe5,0x36,0xec,0x30, +0x60,0xc3,0x85,0xa3,0x39,0xd1,0x6d,0xde,0xd6,0xba,0xa3,0xdc, +0xd3,0x94,0xbf,0xe7,0x72,0xd3,0x76,0xd8,0x82,0x13,0xbe,0x44, +0x2f,0xb2,0xab,0x65,0x4f,0xbd,0x56,0x59,0xfd,0x8d,0x86,0xef, +0xaa,0x29,0x21,0x8a,0x66,0x0e,0xe2,0x6a,0x23,0x54,0x5c,0xbd, +0x88,0x13,0xe7,0xbc,0x27,0x76,0x38,0x56,0x0f,0xb9,0xcd,0x8b, +0xdb,0x6d,0xf8,0xc7,0xef,0xaf,0x01,0x5f,0xfb,0x07,0xf5,0x5f, +0x56,0xee,0x41,0x46,0x62,0xd4,0xe5,0x31,0xcc,0x90,0xd8,0x4f, +0xfe,0x56,0xdc,0xf7,0x97,0x22,0xf5,0xac,0xb9,0xf2,0x32,0x22, +0xf5,0xe9,0xac,0x09,0xc0,0xf9,0x5b,0x91,0x53,0xe9,0x36,0x52, +0x78,0x0a,0x93,0x4b,0x60,0x33,0x54,0x2b,0xcb,0xb7,0x42,0x31, +0x33,0xb2,0x95,0xfe,0x1a,0xac,0x14,0xe4,0xb8,0x92,0xcd,0x15, +0xaf,0x13,0x94,0x33,0x86,0x81,0xe9,0xdd,0xaa,0x30,0x9e,0x05, +0xf5,0x72,0xd8,0x7a,0x05,0x14,0xae,0xbb,0x52,0xf2,0xfc,0x89, +0x06,0x2e,0xd2,0xc5,0x6d,0x9e,0x1c,0x58,0x1c,0x10,0x09,0xbb, +0xb4,0xd6,0xed,0x07,0x15,0xf8,0x8b,0x69,0xce,0x96,0x5a,0xb8, +0xee,0x64,0xb5,0x33,0x14,0x14,0xe5,0x62,0x22,0x59,0x73,0xfb, +0x00,0x68,0x04,0xc1,0x59,0x0e,0x2e,0x0e,0x61,0x2c,0x73,0xae, +0xfc,0x5c,0x79,0xa5,0x32,0x2c,0xd7,0xc4,0xc5,0xac,0xf3,0x05, +0x97,0x8b,0xae,0x2a,0xe2,0x43,0x2d,0xe1,0x09,0x93,0x85,0xa9, +0xb7,0xd0,0xe1,0xc3,0xd6,0x5a,0xc7,0xe6,0xe4,0x58,0x59,0x21, +0x78,0xf3,0x46,0x05,0x0a,0x69,0xc2,0x22,0xe2,0xdc,0x6d,0x74, +0xd5,0xac,0xc1,0xdc,0x95,0x6f,0xb5,0xeb,0x3d,0x50,0x69,0xc4, +0x8d,0x1c,0x87,0x25,0x44,0x47,0xd8,0x3d,0xc0,0x8a,0x06,0xa2, +0x33,0x11,0x4c,0x07,0x44,0x53,0xc6,0x4f,0x24,0x04,0xac,0x8b, +0xc1,0xb2,0x0e,0x66,0x37,0x84,0x53,0xef,0x98,0x6f,0x8b,0x0e, +0xb6,0x68,0xea,0x4b,0x5d,0x91,0x91,0xab,0x12,0xf1,0x02,0x85, +0x0b,0xa9,0x14,0x0b,0x12,0xa6,0x2d,0x55,0x8a,0x58,0xa7,0x21, +0xad,0x4f,0x74,0x60,0x33,0xea,0x24,0xc1,0x74,0xbd,0x44,0xde, +0x13,0x3f,0xd9,0x8d,0x5f,0x2d,0x5f,0xdd,0x68,0xc3,0xb7,0x77, +0x34,0x5f,0xad,0x1c,0xe6,0x70,0xaf,0x1d,0x31,0x7f,0xa8,0xfd, +0xc8,0xa8,0xc7,0xdc,0x85,0xef,0x31,0xe8,0xdb,0xdc,0xaa,0xc6, +0x09,0x0d,0x7a,0xa4,0x6d,0x41,0x3b,0xce,0xc9,0xc6,0xcf,0x86, +0xb2,0xf9,0x00,0x18,0x67,0x08,0xf3,0x2d,0x7e,0x93,0x3a,0x7a, +0x4c,0x20,0x77,0xde,0x5f,0x81,0x59,0x39,0xbf,0x1b,0xa4,0xf3, +0x01,0x0b,0x35,0x70,0xe6,0xfe,0xd5,0x1c,0xcc,0x46,0x5d,0x82, +0x64,0xe5,0x00,0x30,0xaa,0x50,0x8b,0x96,0x3a,0x30,0x4d,0x92, +0x18,0x75,0x34,0x98,0x25,0x55,0xb9,0xbe,0xad,0xeb,0xec,0xbf, +0x74,0x7f,0xf4,0x0e,0xdf,0xb3,0x1d,0xb0,0x6a,0x9a,0x70,0x78, +0x54,0x62,0x14,0x6e,0xcb,0xed,0x48,0x5a,0x4d,0x52,0x4d,0x7c, +0xb5,0x7a,0x22,0xef,0x8c,0xf3,0x57,0xe2,0x0c,0x9c,0xbc,0xb8, +0x4e,0x9f,0xaf,0x29,0xae,0xac,0x28,0xad,0xe6,0xf0,0x36,0xbb, +0xbb,0xc0,0xe7,0xbe,0x0a,0xf4,0x33,0xed,0x39,0x39,0xcd,0x52, +0x99,0x83,0x56,0xba,0x02,0x65,0x73,0x83,0xac,0x4b,0x64,0x42, +0x99,0x2a,0x8c,0x63,0x61,0x7a,0x25,0xcc,0xed,0xfd,0xbd,0xcf, +0xa5,0x9b,0x5f,0xa4,0x8d,0x5f,0x98,0xe1,0x57,0x6e,0x1c,0x2c, +0x37,0x62,0xcb,0xeb,0x8b,0x9b,0xf2,0x5a,0x38,0xa1,0x8b,0x92, +0xf8,0x8e,0x63,0x68,0x1a,0xb8,0x8e,0x33,0x09,0xf5,0xf2,0xd6, +0x9c,0x86,0x6a,0xa3,0x32,0xec,0x6b,0x99,0xef,0x5a,0xab,0x9e, +0x64,0xab,0xe6,0xff,0x90,0x0a,0xde,0x70,0x43,0xb9,0x92,0x55, +0xfc,0x41,0x6a,0x83,0x8e,0x50,0x23,0x20,0x0b,0xbf,0x8a,0xb3, +0x48,0x2a,0xea,0xb4,0xe3,0x66,0x98,0x8c,0x5f,0xd5,0xb4,0xf0, +0x3a,0x83,0xf6,0xd7,0xbd,0x1f,0xb4,0xd5,0xb4,0xca,0x8a,0xeb, +0x5d,0xeb,0x78,0x5f,0x07,0x7b,0x1b,0x5b,0x97,0x10,0x59,0x64, +0xdf,0xa9,0xab,0x1c,0xa8,0xf5,0x8a,0xfb,0xa0,0x5c,0xd8,0xd7, +0x27,0x46,0x22,0x30,0xb8,0x3c,0x0c,0xf7,0x6b,0xe1,0x12,0x95, +0x4e,0xe7,0x41,0x58,0x91,0x06,0x1b,0x2e,0xc1,0x7a,0xa5,0x07, +0xe2,0x7c,0xe6,0xd0,0xc9,0x83,0x27,0x0f,0x9e,0x4e,0xd2,0xe3, +0x7f,0x4e,0x7b,0x53,0xf8,0xbc,0x34,0xbc,0x9b,0xb7,0x3b,0x66, +0x1b,0x6c,0x1d,0xc6,0x09,0x3c,0x8b,0xcf,0xc0,0x9d,0xa0,0x1a, +0x7c,0x0d,0x6a,0x8c,0xf0,0x16,0x27,0x12,0x14,0xf5,0x41,0x64, +0xc4,0xb7,0xa8,0xf2,0x9f,0x97,0x51,0x4d,0x52,0xc1,0x53,0xc3, +0x59,0xf4,0x12,0xfe,0xa4,0xd1,0xac,0xd0,0xba,0x48,0x3f,0xc3, +0xa4,0xa3,0x9c,0x0f,0x6a,0x73,0x1f,0xf4,0xa9,0xe7,0xd0,0x1f, +0x8f,0x90,0x66,0x59,0xd3,0xd3,0xdc,0x61,0xd3,0x42,0x3e,0xc8, +0xc0,0x7c,0x9d,0xad,0x0d,0xa7,0x28,0x64,0x52,0x52,0xaf,0x85, +0x44,0x64,0x47,0xd2,0xaf,0xca,0x1d,0xa1,0x8f,0x09,0x9f,0x6b, +0x60,0x84,0x16,0x6b,0x8a,0x0d,0x78,0x50,0x19,0x7c,0x24,0xab, +0x1b,0x8c,0x4b,0x88,0x3a,0x9f,0x70,0x02,0x32,0x71,0x23,0x5f, +0xd1,0x81,0x97,0x61,0xc5,0xb1,0xf8,0xc8,0x0b,0xe1,0x21,0x4a, +0x11,0x61,0x27,0x2f,0x25,0x15,0xc4,0x16,0x4b,0x14,0xfb,0xe1, +0xc8,0x17,0xe8,0x30,0xda,0x93,0x7c,0x0f,0xd3,0x95,0x9b,0xdd, +0xad,0x2a,0x5f,0x27,0x4e,0x65,0x0b,0x29,0xdf,0x3c,0x9a,0x40, +0x63,0x50,0x68,0x44,0x18,0x7f,0xf2,0x92,0x42,0x66,0x4d,0x74, +0x6d,0xa3,0x72,0xb5,0x96,0x23,0x8b,0xe3,0xac,0xf7,0x63,0xc0, +0x22,0x95,0x62,0x03,0xf8,0x66,0xe8,0x71,0x57,0xdd,0x80,0x52, +0x5c,0x62,0xd4,0xf9,0xc4,0x13,0x90,0x8e,0x5b,0xf9,0xca,0x76, +0x05,0x45,0x61,0x2c,0x44,0x92,0x44,0xd7,0x44,0x9b,0x04,0x6b, +0x97,0x08,0xe7,0x48,0xa7,0xe3,0x1c,0x38,0x52,0x57,0x9c,0x82, +0x2b,0x61,0xb9,0x36,0x2e,0xc7,0x65,0xe2,0x14,0x58,0x86,0x3e, +0xac,0x66,0x98,0x7a,0xc4,0xfe,0xc8,0x24,0x4d,0x1e,0xa6,0x65, +0xc1,0xe7,0xb9,0x30,0xae,0x22,0xc6,0x2f,0xda,0x3f,0x2a,0xb0, +0x2b,0x85,0x3f,0xf6,0xed,0xa1,0xdf,0x02,0x6e,0x70,0xf0,0x4a, +0x70,0x22,0x60,0xd8,0x27,0x1a,0xea,0x81,0xe1,0xc8,0x36,0xb4, +0xd6,0x15,0xbc,0xfa,0xe9,0xc9,0x8a,0xff,0x25,0x3c,0x25,0xef, +0x30,0x77,0x21,0x03,0xf1,0xd2,0xf2,0xfc,0xdc,0xb9,0x90,0x4b, +0x43,0x7d,0xaa,0x30,0x48,0x20,0x49,0x1d,0x93,0xc4,0xb5,0xa3, +0x3b,0xdc,0xa1,0x0d,0x3b,0xc4,0xeb,0xd7,0x1e,0x0b,0x6b,0x37, +0x5f,0x13,0xae,0xc3,0xf6,0x41,0x76,0x64,0xb6,0x18,0x4a,0x84, +0x1d,0x34,0x75,0xee,0xa0,0xfc,0x61,0x89,0x06,0xb9,0xfe,0xad, +0x30,0xb0,0xf5,0x9a,0xfc,0xd5,0x88,0x26,0x23,0x9f,0x80,0xbf, +0x13,0x71,0x00,0xea,0x84,0x01,0x86,0xb2,0x9a,0xdf,0x08,0xcd, +0xa7,0xed,0xe2,0x00,0xa3,0xf8,0xd7,0x97,0x97,0x08,0xae,0x63, +0x6c,0xc2,0x13,0x1b,0x54,0xe5,0x59,0x1a,0x23,0x85,0xec,0xe6, +0x02,0xaf,0xc7,0x2a,0xb0,0x85,0x69,0xc9,0xcc,0x6a,0x57,0x05, +0x13,0x56,0x3b,0x47,0x41,0x9c,0x24,0xbc,0x27,0x38,0xc5,0x09, +0xcd,0x7d,0x71,0xe1,0xa9,0x24,0x3a,0x04,0x0b,0x62,0xc1,0x3a, +0x1f,0x66,0xd4,0x72,0xb9,0xe2,0x05,0xa2,0x11,0xbe,0x31,0x74, +0x7d,0x04,0x57,0xc9,0x3e,0xa8,0x7a,0x20,0x6b,0xec,0xe2,0x1a, +0x71,0x2c,0xdb,0x74,0xa3,0xe5,0x5d,0xfe,0x4d,0xc3,0x0c,0xde, +0x77,0xa7,0x11,0x8e,0xb5,0xdc,0xcd,0xa1,0xcc,0x48,0x98,0xca, +0x38,0xba,0x68,0x3b,0xed,0xf5,0xe2,0x76,0xb0,0xab,0x23,0xd6, +0x1e,0xdf,0x73,0x2a,0x56,0x9f,0xbf,0x11,0xf5,0x3c,0xee,0x45, +0x02,0x27,0x75,0x4a,0x64,0xa5,0xa5,0xc9,0x9f,0x4b,0x8f,0x4c, +0x9a,0x54,0x41,0x97,0x7d,0x99,0xf8,0x3c,0x69,0x38,0x51,0xd2, +0x2e,0xb8,0x4e,0xc2,0xda,0xbd,0xef,0x07,0x34,0x9a,0x04,0xf2, +0xd9,0x36,0x45,0xbb,0x12,0xcd,0xb8,0x59,0x53,0x83,0xbb,0xbd, +0x86,0x7c,0x1b,0xcd,0xfc,0xf9,0x3c,0xdb,0x02,0xed,0x34,0x63, +0x0a,0xc3,0xad,0xe4,0x59,0x44,0x9b,0xce,0x87,0x45,0x2c,0x06, +0x2f,0xc6,0x45,0x78,0x1f,0xf5,0x55,0xea,0x74,0xa1,0x1a,0x76, +0xfc,0x09,0x33,0x52,0x40,0x87,0x7a,0x72,0x0a,0xea,0xc0,0x38, +0x9c,0x01,0xc5,0xa8,0x56,0xd7,0xc7,0xe3,0x4d,0xd0,0x5b,0x08, +0x8b,0x20,0x58,0x19,0x5c,0x28,0x5d,0x76,0x90,0x14,0x96,0xec, +0x99,0xd4,0xe1,0x94,0x2b,0x97,0x7b,0x0e,0xc4,0xf2,0x11,0x06, +0x21,0xea,0x47,0xf7,0x72,0x38,0x53,0x0b,0x26,0x33,0xde,0x73, +0xdc,0x66,0x3b,0x6f,0x1c,0x72,0x19,0x74,0x1a,0xb4,0x37,0xde, +0xb6,0x7b,0xef,0x0a,0xf5,0x1a,0x23,0xfe,0xc7,0xdb,0x0f,0xee, +0xf6,0xbd,0xe8,0x70,0x69,0x77,0xec,0xb4,0xa9,0x92,0xf1,0xc6, +0x4d,0x26,0x35,0xa6,0x95,0x57,0x60,0x6c,0x15,0x10,0xea,0x40, +0xdc,0xe3,0x91,0x8d,0xe4,0xea,0x63,0x38,0xbf,0x79,0x58,0xfe, +0x50,0x9c,0xc8,0x5c,0xd5,0x25,0x70,0x7e,0xe4,0x4b,0x3c,0xcf, +0x88,0xc6,0x90,0x48,0x8a,0xbf,0x2d,0xfa,0x2e,0xef,0x47,0x0e, +0x56,0x32,0x21,0x38,0xdd,0x03,0x15,0xf4,0xe6,0x59,0x95,0x58, +0x15,0x59,0x17,0xd0,0xc4,0x30,0x4d,0xde,0x40,0x46,0x12,0x30, +0x8a,0xc1,0x2b,0xde,0x38,0x77,0x0f,0x8e,0x91,0x9a,0x35,0xbf, +0x80,0x69,0xf9,0xb0,0x12,0x1e,0x2b,0xcb,0x8d,0x19,0x0d,0x30, +0x24,0xa8,0x3c,0x32,0x15,0x94,0x59,0xe1,0x82,0x78,0x99,0x3c, +0xea,0x7a,0x74,0x7d,0xf8,0xae,0x79,0x35,0xaf,0xb3,0x6b,0x87, +0xb6,0x9a,0x05,0xe7,0xd6,0x1b,0x34,0x78,0x5d,0xb9,0x41,0x4b, +0x4c,0xa6,0x69,0x32,0xd1,0x50,0x01,0xbe,0x91,0x28,0x36,0xb5, +0x6a,0x5f,0x2c,0x9b,0x81,0x63,0x3f,0xe0,0x78,0xd0,0x9e,0x53, +0xde,0xcd,0xe3,0xb8,0xc1,0x55,0xd7,0xb4,0xef,0x72,0xa2,0x25, +0x6c,0x20,0x86,0xa0,0xce,0x06,0xe2,0x17,0xdb,0xe7,0xa1,0xca, +0xa6,0x0a,0x13,0x1e,0x56,0xbc,0x7d,0x09,0x8a,0xd9,0xb0,0x8c, +0xab,0xa5,0xd3,0xe9,0x2f,0x3a,0x03,0x5e,0x42,0xe6,0xda,0xc1, +0x97,0x90,0xda,0x83,0xa9,0x2f,0xb5,0xd7,0x62,0xa6,0xb4,0x39, +0x67,0x00,0xe7,0xd6,0xb2,0xf0,0x48,0xf4,0x27,0xd0,0x26,0xc3, +0x36,0xf8,0x14,0x0a,0x64,0x58,0x00,0x63,0xa0,0x46,0x86,0x35, +0x3f,0x6b,0x88,0xaf,0x50,0x59,0x78,0xa5,0xb1,0x08,0xb3,0x8c, +0x21,0x0b,0xc7,0xe0,0x65,0x63,0xb8,0x8c,0x9f,0x62,0x89,0x31, +0x94,0x20,0x83,0x57,0x75,0xfe,0x52,0x1e,0xc0,0xa7,0x12,0x9e, +0x94,0xbf,0x24,0x16,0x68,0x4a,0x11,0x07,0xfd,0x2b,0x57,0x6d, +0xc4,0x57,0x94,0x57,0x36,0x96,0x75,0x72,0x62,0xfd,0x90,0x7c, +0x1e,0x5b,0x76,0xbb,0xe8,0x69,0xe6,0x1b,0x4e,0xae,0x2c,0x2e, +0x23,0xd8,0x0f,0xb5,0xcc,0x9b,0x94,0xd7,0x99,0xf7,0xf2,0xbd, +0x7a,0x78,0x5c,0x68,0x82,0x66,0x3e,0x68,0x16,0x9a,0xa4,0xcd, +0xdf,0x8f,0x79,0x1e,0xfb,0x8c,0x4e,0x98,0x62,0x6c,0xd2,0x86, +0x26,0x7c,0x83,0x49,0xda,0xc2,0x6f,0x83,0x58,0x02,0x6f,0xa0, +0x9f,0x8e,0xef,0x32,0xf9,0x7c,0x82,0xfb,0x98,0xe4,0xab,0x89, +0x83,0x71,0xdd,0x5a,0x31,0xfc,0x71,0xa3,0x30,0x8d,0xe0,0x7d, +0x1c,0x4e,0x92,0x14,0xb4,0x7c,0x67,0x7b,0xce,0xf2,0xd8,0xd4, +0xe5,0xd4,0xe9,0x24,0xb3,0xb3,0xda,0xa1,0xbd,0x6f,0x8b,0x46, +0xb5,0x31,0xff,0xe4,0xc6,0xd5,0xdb,0xed,0x8f,0x6b,0xdd,0x6b, +0x9d,0xeb,0x1c,0xaa,0x3a,0x78,0xdb,0x7a,0xbb,0x6a,0xfb,0x8a, +0x3e,0x50,0x28,0x83,0xaf,0x93,0xe9,0xf8,0x0a,0x8d,0x68,0x41, +0xf0,0x02,0x34,0x33,0x77,0x53,0x6e,0x67,0x0c,0xe4,0x79,0xd2, +0xa4,0x3b,0xc9,0x0c,0xd7,0xf9,0xe0,0xda,0x90,0x64,0x5d,0x7e, +0x30,0xfa,0x7a,0xdc,0xf5,0x04,0xe9,0xa6,0x88,0xb7,0x0e,0x85, +0xce,0xdf,0xa1,0xab,0x8e,0x70,0x66,0x00,0xfd,0xe0,0x3b,0xb8, +0xc0,0x8e,0xf4,0xf8,0x91,0xc2,0x27,0xf9,0xdf,0x67,0xfd,0xc8, +0x8d,0x96,0x92,0x29,0x1f,0x42,0xce,0x64,0x8e,0x63,0xa9,0x53, +0xa1,0x53,0x3e,0xa7,0x78,0x03,0x9e,0x10,0x58,0xdb,0x06,0xa4, +0xeb,0xf1,0x8f,0x37,0xfc,0xaf,0xfa,0x76,0xfb,0x14,0xc8,0x78, +0xd3,0x1c,0xcd,0xdc,0x03,0xd9,0x05,0x4d,0xe9,0xb2,0x38,0x1a, +0xbd,0xdb,0x18,0x1c,0x7f,0x46,0x2f,0x4c,0x4b,0xc5,0x26,0xf2, +0x98,0xcf,0x8e,0x69,0xa8,0xc2,0x64,0xe8,0x4a,0xde,0xf3,0xae, +0xad,0xf2,0x51,0x92,0x6a,0xd2,0xbd,0x4b,0x83,0xb0,0x4b,0x79, +0xa4,0x4e,0x57,0xf8,0x9c,0x39,0xae,0x7f,0xc4,0xd2,0xc7,0x71, +0x4b,0xee,0x96,0xcc,0x7d,0xc9,0x81,0x26,0xfc,0xf5,0x90,0xdb, +0x47,0x6e,0x05,0x6e,0xdf,0x81,0x8c,0x2d,0xaa,0xda,0x71,0xc2, +0x17,0xeb,0xc9,0x15,0x9b,0x6b,0x46,0x3d,0x86,0x0d,0x4d,0xbc, +0x76,0x9f,0x66,0x87,0x46,0x03,0x67,0x8b,0xef,0x89,0x45,0x58, +0x7c,0x83,0x2a,0x64,0x1c,0xc0,0x1c,0x76,0x63,0x91,0xdf,0x73, +0x15,0x28,0x64,0xda,0xd2,0xb2,0x1a,0x55,0x61,0x32,0xab,0x95, +0xa5,0x80,0xcb,0xd8,0x5e,0x88,0x21,0x43,0x1b,0x7b,0x56,0x36, +0xcc,0xef,0x29,0xe1,0x2d,0xff,0x30,0x7c,0xa9,0xf5,0x84,0x1b, +0x31,0xc6,0x21,0x72,0xf3,0x4d,0xc3,0x6f,0xf9,0x3f,0xe8,0x67, +0xf0,0x7e,0x6b,0x6c,0x16,0x1c,0xd8,0xca,0x29,0x3e,0xa2,0x39, +0xca,0x00,0xd2,0x7b,0x58,0x38,0x82,0x07,0x88,0x75,0x81,0x55, +0x9e,0x4d,0x96,0x97,0x1d,0xdf,0xe4,0xdf,0xea,0xd3,0xea,0xe9, +0xaa,0x6b,0x68,0xb5,0xcd,0xb6,0xd4,0x9c,0x7f,0xda,0x3c,0x20, +0xab,0xbd,0x5e,0xe6,0x57,0xe6,0x53,0xea,0x5d,0xde,0xcc,0xbb, +0x15,0xb9,0x14,0x38,0xe5,0x65,0x36,0x27,0xca,0xa2,0x07,0x38, +0x30,0xf3,0x60,0xf6,0x9f,0xd9,0x7d,0x42,0x4f,0xc5,0xec,0x64, +0xf0,0x31,0xc3,0x69,0xeb,0x98,0x74,0x03,0x85,0x3b,0xcc,0xbf, +0x8a,0x4a,0x1f,0xc5,0xab,0xc6,0xdd,0xbe,0xf8,0xf8,0xae,0xf2, +0x4d,0x31,0xc1,0x08,0x6c,0xd8,0xd3,0xe6,0x91,0x76,0x21,0xce, +0x9c,0x98,0x5b,0x47,0xf4,0xe1,0x4d,0x2f,0x8b,0x9d,0xa3,0xf7, +0x28,0x2f,0xd3,0x1f,0x0f,0xc7,0x6d,0xa4,0xcb,0xa9,0xcb,0xac, +0xd1,0xac,0xac,0x89,0x37,0x93,0x99,0x36,0x99,0x55,0x72,0x98, +0xa3,0x45,0xba,0xf1,0xb2,0x21,0x2b,0xb7,0xf1,0x24,0x8d,0x5b, +0xeb,0xf1,0xd3,0x92,0x85,0x94,0x1a,0x79,0xfc,0x66,0xff,0x87, +0xcd,0xb7,0x9c,0x18,0xb5,0x93,0x60,0x02,0x3e,0xea,0xee,0x02, +0x9b,0x16,0xa6,0xfd,0x60,0xcb,0xdb,0x5c,0x60,0x92,0xde,0x29, +0x19,0xc5,0x85,0x2f,0xa3,0x40,0xda,0x61,0x8b,0x12,0x54,0x7b, +0x11,0x87,0xb0,0xf8,0x3a,0x55,0x48,0xd2,0xa7,0x84,0x71,0x4f, +0x9e,0xdf,0x2d,0x15,0x98,0xcf,0x34,0x26,0xa5,0x50,0x6f,0x5b, +0xca,0x9a,0x66,0x2a,0xe0,0x1e,0x76,0x84,0xad,0xa2,0xc3,0x09, +0x0b,0x71,0x2d,0xab,0xf8,0x9d,0xbc,0x90,0x9e,0x44,0x93,0x63, +0xb3,0x4d,0x75,0x0b,0x6f,0x53,0x6f,0xd2,0x68,0x5a,0xce,0x09, +0xf3,0x70,0x98,0x34,0xa3,0xe9,0x5d,0x38,0x89,0x49,0xfd,0x90, +0x04,0x97,0x77,0xa2,0xab,0x15,0xb8,0xa6,0xf6,0xc2,0x52,0xbc, +0x76,0x1d,0xca,0x3b,0xc4,0x0f,0xa6,0x90,0xb5,0x1f,0xdb,0x71, +0x69,0xcf,0x31,0x16,0x9b,0x8a,0x49,0x8f,0x7d,0xbf,0x79,0x9b, +0x79,0x6d,0x33,0x6f,0xdd,0xac,0xd1,0xa5,0x57,0xcd,0x09,0x26, +0x34,0xcd,0xd2,0xaf,0xb0,0x62,0x05,0xd9,0xd4,0x66,0xfa,0x69, +0x16,0x72,0x76,0x90,0x91,0x55,0x66,0x50,0xc7,0x84,0xf9,0x87, +0xf9,0x87,0xf8,0x73,0xe8,0x83,0x1d,0xfd,0x70,0x01,0x26,0x60, +0x58,0x0f,0x84,0xc1,0xc4,0x8f,0xbb,0x39,0xa8,0xb5,0x52,0x6a, +0x57,0xf3,0x80,0xa9,0x4b,0x4f,0xa7,0x97,0x11,0x84,0x8f,0xd9, +0xa4,0x9c,0xc4,0xec,0x84,0x5c,0x0e,0xee,0x31,0x23,0x2f,0xf1, +0x4f,0x72,0x0d,0xc6,0x34,0xc3,0xf4,0xdc,0x7f,0xeb,0x67,0xf2, +0xde,0xf4,0xa2,0x71,0x82,0xe6,0x3c,0x1a,0x6e,0xfd,0x85,0x59, +0xe4,0xd4,0x45,0xa6,0x54,0xd6,0xf2,0x73,0xce,0x6b,0xae,0x65, +0x0e,0x2c,0xd5,0xc5,0xa5,0xf3,0x0c,0xc1,0x96,0x75,0xc5,0xf1, +0x9b,0x71,0x03,0x2a,0xcc,0x2a,0xb7,0xe0,0x2b,0xab,0x4a,0xaa, +0xf3,0xca,0x39,0xf1,0xab,0x7e,0x41,0xfb,0x9f,0x0e,0x7b,0xdf, +0xe3,0xbc,0x9a,0xaa,0x15,0x30,0x27,0x32,0x29,0xe2,0x62,0xf8, +0x71,0x25,0xb9,0x1f,0xec,0x24,0x36,0xbd,0xfa,0x57,0xec,0x6a, +0xec,0x3d,0xf9,0x42,0xdf,0x32,0xb7,0x12,0x57,0x0e,0x5d,0x40, +0x09,0x1a,0xbb,0x46,0xc6,0x1b,0x41,0x19,0x2a,0x51,0xaf,0x2d, +0x2a,0xcf,0xab,0x4c,0x2f,0xb1,0xc8,0xe2,0x3d,0x0c,0x2c,0x74, +0x75,0x6d,0xca,0x6c,0xf8,0xc4,0x78,0x05,0x51,0xec,0x96,0x7f, +0x01,0x66,0xe2,0xdf,0x32,0xe1,0x6f,0xb0,0x15,0x07,0x66,0x49, +0xcf,0xf6,0x9f,0x32,0x2d,0xa9,0x19,0x6d,0xaa,0x42,0x03,0x1b, +0x1f,0xaa,0x20,0xfa,0x61,0x3e,0xc9,0xc9,0xcb,0x29,0xc9,0x2a, +0x4b,0x3d,0x9c,0x12,0x98,0x14,0x58,0x52,0xc2,0x07,0x67,0x1f, +0xcd,0x0b,0xca,0xcd,0xa9,0xc9,0xa8,0x4b,0xac,0x70,0x4c,0xe3, +0x23,0xbc,0x82,0xdd,0x82,0x3c,0x8e,0xe4,0x1c,0xce,0x3a,0x9a, +0xee,0xe5,0xc9,0x67,0x1e,0xce,0xf2,0xcb,0xf2,0x09,0x70,0xf1, +0xf1,0xf0,0xf5,0xe5,0xa0,0xca,0x9d,0xe4,0xd2,0x4f,0x67,0x97, +0xa5,0x06,0xa6,0x06,0x24,0x1d,0x2e,0x2a,0xe5,0x43,0xb3,0x8e, +0xe4,0x1e,0xce,0xcb,0xa9,0x95,0x3e,0xed,0x44,0x3f,0xed,0x79, +0xcc,0x2d,0xc8,0xfd,0x70,0x6e,0x60,0xce,0xd1,0xf4,0x83,0x9e, +0x7c,0x46,0x50,0x8e,0x4f,0xf6,0xa1,0x00,0x57,0x5f,0xe9,0xd3, +0x38,0xe6,0x08,0x09,0xf7,0x0a,0x76,0x0f,0x72,0x0f,0xca,0x0e, +0xca,0x3e,0x92,0x7e,0xd0,0x43,0xfa,0x76,0xff,0x4c,0x1f,0x7f, +0x57,0x1f,0x37,0x5f,0xdf,0x52,0x0f,0x3e,0x37,0x2f,0xb7,0x34, +0xbb,0x3c,0xdd,0x3f,0xd5,0x3f,0x39,0xa0,0xb8,0x94,0x0f,0xc9, +0x09,0xca,0x3f,0x9c,0x4f,0xcf,0xac,0x36,0xa9,0x9c,0x83,0xb3, +0xa8,0x43,0x42,0xb2,0x8e,0xd0,0x73,0xcd,0xad,0xcb,0x92,0x7e, +0x2d,0x9d,0x0f,0xa7,0xbf,0x76,0xd8,0xed,0x70,0xee,0x61,0xe9, +0xd7,0x3c,0xf8,0xf4,0xa0,0x6c,0xdf,0x6c,0x6f,0x7f,0x37,0xe9, +0xd7,0x4a,0xdd,0xf9,0x9c,0xbc,0x5c,0xe9,0x4c,0x03,0xa4,0x33, +0x1d,0x7d,0xf4,0xb6,0x9a,0x88,0x9b,0x99,0x4c,0x59,0x6a,0x57, +0x7c,0x9b,0x4e,0x12,0x1f,0x34,0xdb,0x08,0xf9,0xbd,0x0b,0xdb, +0xec,0xf8,0x92,0xa6,0xc2,0xf6,0x9c,0x4e,0x0e,0x96,0x89,0x20, +0x09,0x5c,0xe8,0x4a,0xb0,0xbb,0x45,0x92,0x94,0x14,0x7e,0x81, +0xa3,0xec,0xc8,0x74,0xf4,0x24,0x91,0x89,0xe1,0x97,0xc2,0x22, +0xc3,0x22,0x79,0x3a,0xc4,0xf5,0x5d,0xfd,0x6f,0x0b,0xbf,0xe3, +0xda,0x70,0x2a,0x2c,0xd2,0xa1,0x89,0xf5,0x1b,0x7d,0x48,0x65, +0xed,0x71,0x3c,0x2a,0xe0,0x3a,0x54,0x9e,0x5b,0x6e,0xc6,0x77, +0xd4,0x37,0x36,0x94,0xd5,0x70,0xa2,0xca,0xa0,0xb0,0x8b,0x8d, +0x1d,0x55,0x90,0xfb,0x1d,0xe7,0xd7,0x55,0x29,0x08,0x8b,0xe0, +0x20,0xa9,0x40,0xa5,0x1a,0xdc,0x97,0x8c,0x93,0x06,0x33,0xf9, +0x10,0x50,0x74,0x86,0x7d,0xce,0x30,0x8d,0x13,0xd9,0x30,0x72, +0x04,0x55,0x5c,0x51,0x55,0x1b,0x27,0x76,0xdb,0xf3,0xc3,0xc0, +0x57,0xc0,0xe2,0x0c,0x98,0x4d,0x29,0x81,0x20,0x37,0x27,0xab, +0x07,0x40,0x55,0x5c,0xf8,0xad,0xd6,0x56,0x51,0x09,0xe7,0x0f, +0xbc,0x65,0xa1,0xc6,0x94,0xb4,0x1e,0xea,0x74,0xad,0x71,0x2f, +0xaf,0xe5,0xed,0x2a,0x2d,0x4a,0xcc,0xf2,0x39,0x5c,0x88,0xb3, +0x88,0x6e,0xfa,0xb1,0x1b,0x2a,0x90,0xc8,0xd4,0x25,0x24,0x57, +0xa8,0xde,0x60,0x0d,0x92,0x15,0x36,0xe3,0x59,0xd6,0xe3,0x54, +0x54,0xb1,0xea,0x4b,0x5d,0x56,0x3d,0x88,0xb8,0xd9,0x98,0x3a, +0x9a,0xb9,0x57,0xd9,0xf1,0x5d,0x15,0x6d,0x75,0xd5,0x6d,0x9c, +0xa0,0x75,0x86,0xb4,0xb8,0xb6,0xda,0xd7,0xdb,0xd5,0x57,0xf3, +0x8e,0xd5,0xc6,0x4d,0xd6,0xa5,0xdc,0x88,0x32,0xda,0x12,0xdc, +0x2f,0xbf,0x0c,0xfb,0x59,0xb1,0xc8,0x92,0xac,0xc5,0x3d,0x2f, +0x59,0x61,0xf9,0x5a,0x82,0x7b,0x5f,0xc2,0x5e,0xa6,0x67,0x2d, +0xcd,0x7e,0x07,0xd6,0xb2,0x23,0xa9,0xa8,0x40,0x0c,0x85,0x5d, +0xa8,0x4c,0x89,0x42,0x9a,0x91,0x02,0x58,0xfc,0x23,0x89,0x31, +0x51,0x58,0xda,0xcd,0x4a,0xf2,0x82,0x0b,0x89,0xdd,0xda,0xdd, +0xfb,0x66,0xe9,0xd1,0xb9,0xff,0xb0,0xa1,0xaf,0xbd,0xa9,0x9b, +0x02,0x6d,0xe6,0x88,0x67,0xa0,0x97,0x8f,0xb7,0x4b,0x82,0x6b, +0xbc,0x6b,0xbc,0x97,0x25,0x5f,0x12,0x59,0x1c,0x59,0x1c,0x61, +0x68,0xb9,0xcf,0x6e,0xad,0x53,0x99,0x19,0xff,0xb6,0xf1,0x51, +0xc7,0x95,0xa1,0xa6,0xe0,0xc6,0xe0,0xba,0x63,0x4e,0x6e,0x56, +0xee,0x86,0x9e,0xd5,0x36,0xfc,0x95,0x0a,0x59,0x4d,0x53,0xe3, +0xbf,0x1c,0xf9,0x92,0x76,0x9f,0x44,0x9f,0x04,0x9f,0x04,0xa5, +0x46,0x59,0x59,0x7f,0xee,0x35,0x0e,0x26,0x30,0xbb,0x4f,0xef, +0x0e,0xd3,0x57,0xb1,0x8e,0xf4,0x0b,0xd2,0x9b,0x36,0x5a,0xca, +0x7b,0x97,0x79,0xde,0x58,0xfc,0x30,0x45,0x35,0xe9,0x56,0xf4, +0x03,0x18,0xaf,0x2c,0xfe,0xcc,0xc4,0x25,0xc6,0x26,0xc5,0x24, +0x71,0x75,0x37,0xa0,0x78,0xdf,0xe0,0x8d,0xd1,0x4a,0xbf,0x3b, +0xda,0xbb,0xb0,0x58,0xda,0x48,0x35,0x80,0xfa,0x0c,0x24,0xe3, +0x65,0x62,0x93,0x66,0x93,0x62,0x9d,0x52,0x58,0x96,0x53,0x99, +0x59,0x23,0x3d,0x55,0x0c,0x34,0xf4,0x34,0xb1,0xb1,0xe0,0xee, +0x61,0x2b,0x31,0x69,0x36,0xaa,0xd5,0x2f,0x77,0xb6,0xe5,0xbb, +0xdc,0xfa,0xec,0xda,0x6c,0x38,0x3c,0x70,0x80,0xd8,0x85,0xc7, +0x56,0xab,0xc2,0x16,0x2d,0xdc,0xca,0x6e,0xcd,0x3f,0xfc,0x44, +0x85,0x06,0x97,0xd6,0x94,0xcc,0x7a,0xd5,0x57,0xac,0x0e,0x0d, +0x74,0x2c,0x4d,0x09,0x9b,0xc8,0x80,0xde,0xc0,0xde,0x86,0x5d, +0x6d,0x55,0xbc,0xe5,0x7d,0xbd,0x6b,0x3a,0x7d,0xdc,0x88,0x09, +0x1e,0x27,0xb7,0x86,0x5b,0xee,0x17,0xdd,0x34,0xc9,0xe7,0x7d, +0x34,0x2d,0x76,0x6a,0x18,0xd0,0xf0,0xd1,0x2e,0x7f,0x42,0x0e, +0x1a,0x78,0x9a,0xba,0x5a,0xf9,0xb7,0x1d,0x6c,0x76,0x6f,0xb6, +0xf2,0xe0,0xab,0x8d,0x8b,0x4d,0x72,0x4d,0x9c,0x6c,0xed,0x9d, +0xac,0xdd,0x8b,0x8c,0x78,0x3a,0xa3,0x2a,0x2b,0x6b,0xd3,0xac, +0x12,0x2d,0x2e,0x9b,0x1a,0xaf,0xd1,0xd1,0xd9,0xa2,0x43,0x5f, +0xbc,0x2b,0xeb,0x1a,0x68,0xbe,0xcd,0x45,0xd9,0x5c,0xb4,0xb6, +0x50,0xc6,0xdd,0x17,0xbc,0xad,0x76,0x4c,0xd3,0x91,0xba,0xd9, +0xf5,0x30,0x3f,0x76,0x0e,0x48,0xad,0x93,0x03,0x40,0xc9,0x02, +0x3e,0x53,0xad,0x97,0x55,0x0d,0x54,0xdc,0xe0,0x04,0xcb,0x62, +0xa2,0x83,0x5f,0xa0,0x11,0x7c,0x21,0xed,0xe6,0x1a,0xc0,0x5c, +0x9c,0x30,0x00,0x13,0xc0,0xe8,0xe3,0x6e,0x65,0x0f,0xae,0x64, +0x44,0x66,0xa4,0x9a,0xf4,0x09,0xfb,0xf4,0x86,0x84,0xbb,0x62, +0x97,0x78,0x57,0xea,0x8c,0xf5,0xbb,0xd4,0xd5,0x41,0x0d,0xb4, +0x99,0x3e,0x54,0x93,0xca,0xe5,0x0c,0x50,0x8d,0xc5,0x8b,0x14, +0x76,0xed,0xa3,0xaf,0xef,0x63,0xe1,0xcc,0x54,0xfa,0xd2,0x3e, +0x34,0x60,0x14,0xef,0x0a,0x93,0xc9,0xef,0x65,0x03,0xfd,0x71, +0x7f,0x72,0xbf,0x2c,0x61,0xec,0x33,0x03,0x1a,0x55,0xee,0x32, +0x05,0x09,0x29,0xb9,0xaa,0xad,0xac,0x65,0xa2,0x82,0xbe,0x0d, +0xeb,0x77,0x3c,0x26,0x4b,0xf5,0x5f,0x30,0xb6,0x0d,0xf5,0x9f, +0xc2,0xd6,0x76,0xdc,0x7a,0xc3,0x70,0x1f,0x6e,0x30,0x83,0x0d, +0x1b,0xd1,0xc6,0x9c,0x62,0xb8,0xe3,0x5b,0xcc,0x2d,0xd6,0x1d, +0xe2,0xe4,0x2f,0xd0,0x91,0x78,0x33,0x81,0xa7,0xa2,0xb2,0x54, +0x05,0x03,0x5c,0x08,0xaa,0x7a,0xa8,0x3a,0x4f,0xff,0x37,0x56, +0xf7,0x94,0xf1,0x71,0x73,0x95,0xa3,0xe9,0xc7,0x52,0x8f,0xa5, +0xb8,0xd9,0xf2,0x39,0x81,0x39,0x7e,0xd9,0xbe,0xbe,0xab,0x6d, +0x76,0xef,0xd3,0x6a,0xb4,0xe2,0xaf,0x0c,0x34,0xdf,0x28,0x7a, +0x99,0xef,0x91,0xeb,0x96,0xed,0x5e,0x53,0xcb,0x7b,0xd7,0x7b, +0xd4,0xb9,0xd7,0xa4,0x0c,0xc5,0xde,0xbe,0xf0,0x94,0x7b,0x23, +0xce,0x65,0xac,0x73,0x0e,0x37,0xa9,0x34,0x33,0x35,0x49,0x69, +0x94,0x7b,0x8e,0x65,0x8d,0x93,0x14,0xc4,0x0d,0x9b,0x88,0x75, +0xa4,0xa1,0xd4,0x97,0xe1,0x47,0x98,0xd5,0x8e,0xb3,0xde,0xea, +0x2f,0x46,0x15,0x33,0x50,0x99,0xcf,0xaa,0x9f,0xd8,0x77,0x4a, +0xf3,0x4c,0x9c,0x11,0x0f,0xaa,0x71,0xb0,0x3a,0x03,0xc6,0x64, +0x73,0xd0,0x38,0x87,0xd4,0x9b,0xd4,0xe9,0x97,0x1d,0xe8,0x2f, +0xe2,0x5d,0xaf,0x59,0xf7,0xd9,0x37,0x71,0x23,0x46,0xd4,0x5d, +0x86,0xfa,0x1b,0x06,0x0b,0x07,0x0c,0xb3,0xf9,0x83,0x46,0xb6, +0xfa,0x3a,0x46,0x9c,0x70,0x11,0x54,0x48,0xae,0x61,0x96,0x7e, +0x8a,0xf6,0xd5,0x24,0xfe,0xe8,0x70,0x40,0xaf,0x4f,0x27,0x87, +0xd9,0x21,0x24,0x49,0xf7,0xb2,0x49,0xf4,0xfe,0x2b,0x71,0xfc, +0xa9,0xeb,0x11,0x3d,0xc1,0x5d,0x94,0xde,0x3d,0x00,0x2f,0x02, +0x26,0xf0,0xa0,0x1f,0x1f,0xc0,0x5e,0x10,0xfa,0x47,0xc6,0xb2, +0x69,0x55,0xc9,0x55,0x09,0x55,0x07,0x92,0x78,0x7b,0x54,0xde, +0x82,0x13,0x91,0x9d,0xdb,0x62,0xce,0xdf,0x1d,0x1e,0x7c,0xd0, +0xfc,0x84,0x83,0x60,0xdc,0x8b,0x5d,0x18,0x8b,0x2b,0x75,0x05, +0x6b,0x0c,0x19,0x86,0x10,0x61,0x4c,0x3f,0x33,0xb2,0x4c,0x6a, +0xe0,0x12,0x8e,0x26,0x18,0x4e,0x11,0x64,0x8b,0x30,0x4c,0x84, +0x15,0x6d,0xcc,0x15,0xcf,0x87,0x5e,0x3f,0x78,0xe5,0x0f,0xf2, +0x78,0xe9,0x3e,0x4e,0x79,0xa8,0xf3,0x96,0xdb,0xcb,0x68,0x2f, +0xc6,0xcf,0xb6,0xe1,0xe9,0xed,0xf9,0xda,0xfc,0x8f,0xa5,0x0f, +0x4b,0x86,0xca,0x38,0xb0,0x02,0x0d,0x52,0xb0,0x7f,0x48,0xef, +0x83,0x11,0x27,0x7e,0xcd,0xfc,0xda,0xd5,0xdf,0x57,0x70,0x9d, +0x03,0xc4,0xa7,0x64,0xc4,0x49,0x57,0x3e,0x89,0x31,0x37,0xd1, +0x35,0xdf,0x6f,0xd1,0x68,0xc7,0xdf,0x96,0xdd,0xed,0xbf,0xf3, +0x82,0x13,0x37,0xe1,0x5e,0xd2,0xe7,0x78,0xc5,0xa2,0xd3,0xbc, +0xae,0x91,0x37,0xe8,0xd4,0x6d,0xd2,0xa9,0xe6,0x4c,0xb1,0xe1, +0x1f,0x59,0x22,0x4f,0x4d,0xf4,0x66,0xb7,0x14,0xfa,0x3f,0x55, +0x81,0xf2,0x8f,0xb2,0x44,0x7f,0xb0,0xda,0x14,0x26,0x4d,0xa3, +0x3e,0xe1,0x44,0x06,0xf7,0xf4,0x6d,0x69,0x58,0xdb,0x59,0xce, +0x5b,0xbe,0x31,0x78,0xa0,0x7d,0x4b,0xf2,0x89,0x02,0x72,0xeb, +0xdb,0xa6,0x57,0x05,0x4f,0x24,0x59,0xa2,0xed,0x56,0x6b,0x47, +0x65,0x89,0xfe,0x16,0x96,0x12,0xe7,0x63,0x0e,0xc1,0x0e,0x21, +0xf4,0x8a,0x7f,0xef,0x9d,0x0b,0xda,0x3a,0xa8,0x2d,0x85,0xdb, +0x6f,0x30,0x9a,0x35,0x3d,0x66,0x16,0x62,0x11,0x9e,0xa0,0xcb, +0x37,0x25,0x34,0x27,0xb5,0xa4,0x48,0xed,0x1d,0x27,0xb3,0x69, +0xda,0x0a,0xef,0x99,0xd6,0xb4,0x0c,0x1a,0x81,0x3a,0xd8,0x86, +0x94,0x86,0xb4,0xba,0x74,0x0e,0x72,0x05,0x23,0x52,0xbc,0x00, +0xc6,0xad,0x83,0x85,0x6b,0x4b,0x64,0x3c,0x2e,0x7a,0xb5,0xe8, +0xbe,0xcd,0xf7,0xdc,0x3e,0xc6,0x79,0xfd,0xfa,0xcd,0xf8,0xb5, +0x5a,0x31,0x05,0xf7,0x5f,0xde,0xfb,0xf9,0x45,0xf1,0x5b,0x8e, +0xe6,0xd6,0xb3,0x64,0x14,0xb1,0x33,0x2b,0x70,0x2a,0x31,0x12, +0xbe,0x60,0x0f,0xd9,0x38,0x19,0x3b,0x3b,0x36,0x39,0xf1,0x4d, +0xb2,0xb6,0xeb,0x65,0x57,0xb8,0x26,0x16,0xbb,0xe9,0x60,0xb7, +0xbb,0x0d,0x98,0xd6,0xda,0x54,0x35,0xf2,0xf6,0x75,0x5a,0xed, +0x66,0x65,0x5c,0x0a,0x3e,0x20,0x6e,0x27,0xa3,0x2b,0x54,0xc1, +0x5c,0x17,0xed,0xd8,0xfd,0x85,0x81,0xd7,0x54,0x60,0x01,0xd3, +0x9c,0x92,0xd2,0x3c,0xba,0xe8,0x34,0x5d,0x01,0x79,0x56,0x9c, +0xec,0x47,0x9a,0xbe,0x2d,0x79,0x95,0xf2,0xd8,0x38,0x95,0x0f, +0xd9,0x7d,0x70,0x9d,0xf5,0x6e,0xa9,0x07,0x85,0x25,0xa9,0xd2, +0xad,0x59,0x9d,0xb3,0xab,0xb3,0x80,0x0f,0xb8,0x6a,0xf3,0xb3, +0x6b,0x37,0x0d,0xf9,0x61,0x42,0x05,0xb9,0x84,0x63,0x9b,0x50, +0x11,0xbe,0x46,0xae,0x86,0x42,0xe9,0x29,0x30,0xce,0xfc,0xcf, +0x30,0x98,0xc4,0xc1,0x8e,0x7e,0xdc,0x9d,0xc4,0xc0,0x2e,0x1d, +0xdc,0xc9,0x86,0x2c,0x67,0xa3,0x32,0x2f,0x65,0x5d,0xca,0xa2, +0x34,0x73,0x13,0x7b,0xb9,0x20,0xb6,0x20,0x3a,0x5f,0x5a,0x47, +0x85,0xe3,0xcc,0x71,0xfc,0xc6,0x65,0xd5,0xb6,0x7c,0xcf,0x50, +0xe3,0xb7,0x25,0x8f,0x38,0xf8,0x8a,0x39,0x6e,0x1e,0x61,0x15, +0x62,0xe7,0x91,0xed,0x9a,0xe6,0x9e,0xe2,0x6f,0xc1,0x97,0x85, +0xd4,0x04,0x94,0x06,0x84,0x79,0x85,0x1c,0x0a,0x3e,0xe4,0x92, +0xe7,0x94,0xe1,0x99,0xe2,0x67,0xc9,0x17,0x87,0x54,0x06,0x96, +0x05,0xd8,0xeb,0x99,0x98,0x6a,0x5b,0x57,0x5b,0xf0,0x30,0x03, +0xc6,0xfc,0x0b,0xa6,0x36,0xc2,0x36,0xee,0x37,0x4a,0xcc,0xa4, +0x27,0xc9,0x38,0x15,0x59,0x4a,0xf6,0x28,0x20,0xf9,0xbc,0x0b, +0xbe,0xb8,0x04,0x63,0x39,0x51,0x0b,0x95,0x89,0x57,0x88,0x67, +0x88,0x07,0x1d,0xa8,0x63,0xef,0x7a,0x16,0x82,0x96,0x1e,0x6a, +0xcd,0x31,0x78,0x8f,0x31,0xac,0x63,0xb0,0x63,0xa8,0x73,0x44, +0x82,0x3e,0x5f,0x11,0x5f,0x9e,0x58,0x91,0x44,0xd9,0xc8,0x12, +0xa9,0x97,0xc2,0x3d,0x8a,0x4a,0xe8,0xa4,0xa0,0xa3,0x54,0x9e, +0x52,0x91,0x52,0x9e,0xc6,0xc9,0xc7,0xc2,0x6b,0xe2,0xdb,0xe6, +0xda,0xe9,0x56,0xed,0x70,0x88,0x2f,0xb7,0x2b,0xb1,0xc8,0x33, +0xe7,0xb6,0x89,0xc7,0x49,0xd9,0xde,0xb2,0x65,0xd9,0x1b,0x06, +0xb2,0xf8,0x80,0xe7,0xae,0x3f,0xb8,0x0f,0x73,0x62,0x37,0x26, +0x93,0xa6,0xc1,0xda,0xef,0xd3,0xee,0xe9,0xa5,0xf1,0x47,0xd4, +0x1d,0xd6,0xd8,0x52,0x57,0x9b,0x07,0x46,0x24,0x73,0x4f,0xfa, +0xf6,0xc4,0x2d,0x43,0x09,0x7c,0xe8,0xd3,0xa3,0x0f,0xfc,0xae, +0x72,0xe8,0x1b,0x4a,0x12,0xb7,0x47,0xef,0xbf,0xb8,0x79,0x38, +0x96,0x3f,0xf3,0xec,0xf8,0x9d,0xd0,0x61,0x3a,0xa9,0x7e,0x16, +0x7c,0x49,0xd7,0x95,0xba,0x47,0x45,0xd4,0x24,0x8a,0xcc,0x09, +0xf3,0x08,0xeb,0x50,0x5b,0xaf,0x6c,0x8f,0x34,0xcf,0x64,0x7f, +0x2b,0xbe,0x24,0xa4,0x2a,0xa0,0xc4,0x3f,0xec,0x60,0xa8,0x77, +0x88,0x8f,0x6b,0xae,0x4b,0xe6,0xc1,0x14,0x3f,0x2b,0xbe,0x28, +0xb8,0x22,0xb0,0xd4,0xdf,0x51,0xd7,0xdc,0x54,0xd7,0xaa,0xca, +0x52,0xba,0xf0,0xb1,0xcf,0x81,0xaf,0xa7,0x26,0x79,0x47,0x99, +0xca,0x14,0x53,0xca,0xd0,0x26,0x23,0x4b,0xf9,0x11,0x7c,0x05, +0x13,0xdb,0x41,0xf1,0x12,0x8c,0xe3,0x62,0x99,0x4b,0x38,0xae, +0x0e,0x27,0xc2,0xa4,0x8f,0x83,0xa7,0x08,0xe3,0xac,0x60,0x4c, +0x38,0x7c,0xc9,0xc1,0x86,0x1e,0xdc,0x2c,0x8d,0x9e,0x1e,0xee, +0x62,0x43,0x57,0x7e,0x1c,0xbd,0x6c,0xae,0x01,0xd7,0xb0,0x71, +0xa3,0xa3,0x67,0x2c,0x3d,0xb5,0x1f,0x67,0x89,0xe3,0xb7,0x2d, +0xe5,0xdc,0xb1,0x84,0x44,0x24,0x53,0xe8,0x11,0x3e,0xda,0xda, +0x3b,0xe9,0x6e,0xec,0xf5,0x0b,0xef,0x94,0xda,0xfa,0x6a,0xbb, +0xcb,0xae,0x38,0xd4,0xf2,0xbe,0xa6,0x87,0x6c,0x0f,0x3a,0x72, +0x50,0xa0,0x87,0x7d,0x2c,0xa6,0x79,0xd0,0x88,0xfe,0x25,0xee, +0x52,0x69,0xb1,0x79,0xf8,0x47,0xed,0x9b,0xec,0x37,0x4a,0x17, +0x25,0xec,0x71,0xf2,0x09,0xce,0xe0,0x5b,0xea,0x14,0x84,0x27, +0xc2,0x6d,0xe2,0xdf,0xe6,0xd6,0xe9,0x59,0x43,0x2d,0x5c,0x6a, +0x5b,0x64,0x99,0x6b,0xc6,0x8d,0x74,0x87,0x93,0x33,0x38,0x36, +0x62,0xe9,0xc1,0xcd,0x9d,0x7e,0x7c,0xc9,0xf7,0x09,0xff,0xbe, +0x00,0x63,0x38,0xf9,0x6e,0xd1,0x8f,0x14,0xef,0x29,0x5d,0x9a, +0xb9,0xa1,0x3f,0x8b,0x0f,0x7c,0xe6,0xf6,0x93,0x17,0x35,0x7c, +0x39,0x35,0x7c,0xc3,0x60,0xcd,0xf7,0xa9,0xf7,0x0c,0xd2,0xf8, +0xa3,0xfb,0x1d,0xd7,0xd8,0x53,0xc3,0x4f,0x95,0x0c,0xbf,0x37, +0x55,0x2d,0x61,0xcb,0x40,0x02,0x1f,0xf6,0xe4,0xd8,0xc3,0x00, +0x6a,0x78,0xf7,0x50,0x92,0x40,0x0d,0x7f,0x61,0xf3,0x95,0x58, +0xfe,0xec,0xd3,0x13,0x77,0x47,0x0d,0x7f,0x4c,0xfe,0x98,0xe0, +0x5b,0xd4,0xd0,0x83,0x1d,0xec,0x61,0xfc,0x74,0x1f,0x8e,0x5b, +0x32,0xbf,0xca,0x88,0xff,0xee,0xb7,0xd6,0xef,0xe3,0xa5,0x05, +0x32,0x6a,0x03,0xc2,0x37,0x52,0x8f,0x5c,0x0a,0x89,0x61,0x0c, +0xaa,0xd5,0x35,0xe2,0xa7,0xb0,0xf5,0x44,0x42,0xe4,0xc5,0x90, +0x50,0xa5,0x88,0x08,0x85,0x93,0xdf,0xc1,0xda,0x3e,0x5c,0x0b, +0x6f,0x19,0xf9,0x22,0xd4,0x92,0x78,0xe6,0x3e,0x6d,0x71,0x07, +0xae,0x16,0xbd,0x06,0xfa,0xa1,0x5f,0x77,0x40,0xf0,0x42,0x7b, +0x30,0x86,0x0b,0x8c,0x78,0x57,0x9f,0x14,0x5f,0x2d,0x7b,0x99, +0x75,0xcf,0x38,0x9b,0x0f,0xda,0x71,0x70,0xd3,0x41,0x4d,0x0e, +0x67,0x5f,0x24,0x81,0xb7,0x0f,0x3e,0xf6,0x91,0x16,0x71,0xe6, +0x6b,0x14,0x6d,0xcd,0xa2,0x8e,0xb7,0x58,0xa4,0xbe,0xde,0x03, +0xfd,0xd8,0xc3,0x2a,0xca,0x95,0x85,0x60,0x92,0x7b,0x2f,0xe7, +0x59,0xe2,0x73,0xae,0x59,0xa4,0x29,0xcd,0x85,0x3d,0x25,0x8e, +0x35,0xa7,0x19,0x4d,0x0b,0x77,0x76,0xd2,0x41,0x37,0x04,0x9d, +0x1e,0x30,0x88,0x11,0x78,0x0e,0xb2,0x99,0x90,0x65,0x07,0xe7, +0xb9,0x2d,0xe7,0xa0,0xdc,0x89,0x59,0x71,0x72,0xf9,0xb1,0xad, +0x2a,0x1b,0x8f,0x38,0x7a,0xcf,0x98,0x86,0x6b,0x99,0x54,0x4d, +0x05,0x58,0xcf,0x00,0xe9,0xa9,0x83,0x4f,0xf3,0x54,0x33,0x9e, +0xc7,0xc0,0x27,0xc0,0x28,0xdf,0x1b,0x6d,0x11,0xf3,0x29,0x11, +0x4f,0x0b,0xd5,0xc2,0x69,0xdc,0x07,0x9f,0x83,0x67,0x97,0xf8, +0xce,0x88,0xa6,0xcc,0xcf,0xd9,0x1a,0x71,0x84,0xe0,0x16,0xfc, +0xa4,0xe3,0xf9,0x0e,0xd5,0x96,0xb7,0x45,0xa0,0x90,0x08,0x93, +0xb9,0x5a,0xd4,0x65,0xdb,0x86,0xae,0xbd,0x90,0xbd,0xe2,0x5a, +0x31,0xca,0x80,0x66,0x58,0xe3,0x0d,0xea,0xeb,0x4c,0xf4,0x38, +0x23,0xb0,0x66,0x23,0xe6,0x05,0xac,0x74,0x55,0x73,0xee,0xf5, +0xb9,0x11,0x78,0xdf,0xf0,0x08,0x9f,0xb7,0xaa,0x7c,0x7d,0xfb, +0x5e,0x57,0x3d,0x1b,0x33,0x43,0x87,0x0a,0x23,0xbe,0xa7,0xbe, +0xa9,0xb3,0x7a,0x80,0x5b,0xfb,0x04,0xe8,0x9b,0x77,0x4c,0x13, +0x3e,0x63,0x92,0x07,0x14,0xc4,0x31,0xc2,0x08,0x81,0xcf,0x5f, +0x4b,0x25,0xd8,0x51,0x34,0x4b,0x8c,0x65,0xce,0xe1,0xe4,0x80, +0xcd,0xdb,0xf6,0xd6,0xda,0xf2,0xaf,0x5f,0xe5,0x7e,0x7f,0x01, +0x54,0xb8,0xd7,0xb8,0x85,0x31,0xc8,0x0f,0xec,0xa1,0x8c,0x64, +0x81,0xb8,0x95,0x81,0xdf,0xc1,0x9c,0xb8,0x44,0xc6,0x17,0xab, +0xc2,0x72,0xf8,0x1c,0x4d,0xa4,0x6a,0x9b,0x4a,0xb2,0x48,0x2d, +0xb7,0xc3,0x54,0x15,0x2e,0xc1,0x17,0x34,0x5f,0x69,0xfe,0x2c, +0x49,0xf5,0xe1,0x07,0x58,0xb6,0x17,0x97,0xe1,0x1f,0x9a,0x72, +0x4d,0x76,0x29,0xee,0x44,0x75,0xca,0x76,0x82,0x70,0x2c,0x17, +0x58,0x17,0xde,0x31,0xa4,0xfc,0x9d,0xfa,0x4a,0x16,0x97,0x39, +0xe8,0x21,0xb7,0x50,0xa5,0xca,0xe8,0xdd,0xf3,0xfa,0xde,0x38, +0x98,0x28,0x29,0x43,0xab,0x65,0x82,0xc2,0x4e,0x70,0x98,0x26, +0x7c,0xca,0x5c,0xbe,0xaa,0xa0,0xf8,0x48,0x50,0x24,0x30,0xfe, +0x79,0xc3,0xc3,0xf8,0x27,0x5c,0x2c,0xd6,0xf7,0x41,0x00,0x13, +0x1b,0x75,0x3e,0xe6,0x94,0xca,0x87,0xf9,0xf5,0xd5,0x73,0x7e, +0x09,0x4b,0x0c,0xbf,0x18,0x11,0xa1,0x14,0x1c,0xa2,0x70,0xf2, +0x11,0x2c,0xe9,0xc1,0x25,0xc0,0xea,0x22,0x8b,0xe6,0x06,0xa0, +0xce,0xf8,0x6e,0xdc,0xbf,0x61,0xee,0x2e,0x4e,0xd0,0xb1,0x26, +0xc0,0xbf,0x29,0xbb,0x9d,0xf0,0x88,0x7e,0x43,0x63,0x1f,0x34, +0xc6,0x32,0xf1,0x5b,0x9b,0x77,0xc1,0xd4,0x15,0xe5,0xed,0xfc, +0x8c,0x7b,0xbb,0x1f,0x7a,0x3d,0xa5,0xd4,0xb9,0x07,0x3d,0x80, +0xd5,0xa1,0x9f,0xdd,0x64,0x40,0x23,0xb4,0xef,0x66,0x3d,0x35, +0x64,0xb6,0x71,0xc2,0x5e,0x8c,0x23,0x7d,0xe2,0x27,0xa0,0xa8, +0x81,0x8a,0xf8,0xab,0x1e,0xfc,0x8a,0xab,0xc4,0xe5,0xba,0x7f, +0x4d,0xeb,0x17,0xb7,0xc3,0x2a,0x8a,0x65,0x17,0xc8,0xf5,0x08, +0x0d,0xc2,0x37,0xed,0x45,0x15,0xfc,0xaa,0xeb,0x19,0x14,0xb1, +0x07,0xbc,0x56,0x04,0xce,0x3f,0x96,0x66,0xc3,0xff,0x9e,0xfc, +0x67,0xe1,0x8d,0x6a,0xbf,0x12,0x1e,0xb6,0x32,0x87,0x5d,0x7e, +0xf0,0x7f,0x11,0xf0,0xda,0x55,0x29,0xa3,0x61,0x7b,0xd1,0xc6, +0xbc,0x8d,0x19,0x4a,0x90,0xb9,0xa1,0x0b,0xbe,0x12,0x97,0xd5, +0xc1,0x4b,0x98,0x82,0x2f,0xeb,0x84,0x8d,0x8d,0xe2,0x46,0x99, +0x81,0xb1,0xb8,0xd0,0x46,0x58,0x68,0xcf,0x60,0x82,0x03,0x81, +0x04,0x0b,0x4c,0x60,0x84,0x97,0x53,0xb1,0xb0,0x15,0x0a,0x19, +0xac,0x10,0x2b,0xc8,0xfd,0xc5,0x30,0x69,0x3f,0x78,0xdb,0x67, +0x36,0xf3,0x4b,0xd3,0x76,0x66,0xe9,0xe6,0xf6,0x65,0x75,0xe5, +0xb7,0x96,0x1e,0x4e,0xe3,0x9f,0x34,0x62,0x46,0x1b,0xd8,0xd6, +0xa3,0x6d,0x13,0x84,0xd5,0x63,0x58,0xaf,0x81,0x3e,0xa6,0x4b, +0x1b,0x4f,0x3b,0xf0,0xb4,0x46,0x2d,0x3b,0xd0,0x32,0xc7,0x8b, +0x36,0xf0,0x8a,0xd9,0xe8,0x86,0xcc,0x41,0x9c,0x1b,0x94,0x6a, +0xc9,0xbf,0x4a,0x78,0x94,0x76,0x2b,0x8b,0xdb,0xc7,0xda,0x9d, +0xb6,0x39,0x6d,0x7d,0xe6,0xb2,0x19,0x0f,0x9b,0x92,0x60,0x56, +0x2a,0x4c,0xcc,0x3e,0xd9,0xc4,0xef,0x08,0xdf,0x1c,0xb1,0x2a, +0x92,0x7b,0xca,0x76,0x64,0x34,0x66,0x56,0x52,0x90,0xf3,0x0d, +0xec,0x27,0xd6,0x98,0xde,0xc4,0x42,0xfa,0x1a,0x62,0x8e,0xe9, +0x6d,0x2c,0x0c,0xe3,0x7a,0xe2,0x9c,0x75,0x30,0xc7,0x27,0x9f, +0x83,0x53,0x8c,0x8d,0x8f,0xa9,0xbf,0x61,0x20,0xcd,0x54,0x26, +0xf2,0x2f,0x48,0x40,0xbf,0xc5,0x8f,0xee,0xed,0xc6,0xde,0x7c, +0x85,0x71,0xd3,0x8a,0x6c,0x3d,0x4e,0x5c,0x3e,0xb2,0x8d,0xfc, +0x35,0x43,0xeb,0xef,0x19,0xac,0x7c,0xef,0x5f,0x2c,0xf1,0xdd, +0x6b,0x38,0xdb,0xe2,0x40,0xa7,0x07,0xdf,0x72,0x75,0x00,0xc6, +0xe5,0xdd,0xe4,0x44,0x55,0xd4,0x27,0xbe,0xbd,0x26,0xaf,0x9d, +0xda,0x4c,0xbc,0xf8,0x1a,0xd3,0xb6,0x75,0xf9,0xfa,0x1c,0xba, +0x3d,0x20,0x99,0xba,0x19,0x9b,0x13,0x76,0xc9,0xd2,0xf8,0xd0, +0x3b,0x81,0x4f,0x02,0xfb,0xa4,0x42,0xfe,0x2b,0x24,0xff,0x55, +0xca,0xfb,0xa8,0x0f,0x92,0xaa,0xd2,0x9c,0xb0,0x25,0xde,0xeb, +0x39,0x61,0x15,0xde,0x24,0x82,0x9f,0xb6,0xf8,0xfb,0xe0,0x0d, +0x61,0xd5,0xbe,0x41,0xe1,0x77,0x6d,0xd1,0x8f,0xc5,0x23,0x10, +0x4b,0x6c,0x74,0x4d,0x0c,0xf5,0xcd,0xeb,0xac,0xf8,0xbe,0xce, +0xf6,0xee,0x86,0xde,0x3a,0x8b,0x2a,0x8b,0x22,0xbb,0x86,0x3a, +0xde,0xab,0xc1,0xbe,0xc3,0xa6,0xb3,0xe1,0x4a,0xf9,0xb5,0xfc, +0xeb,0xa6,0x79,0xbc,0xbf,0xae,0xa7,0x8e,0x93,0xbe,0x55,0x87, +0x65,0xab,0x43,0xb5,0xbd,0x1d,0xdf,0x60,0xdf,0x66,0xd6,0x6a, +0x4c,0x2f,0xc6,0x57,0x9e,0x48,0xae,0x18,0x68,0xe2,0xe4,0x2b, +0x86,0x9a,0x78,0x00,0xb3,0x84,0xdf,0x21,0x8b,0x1d,0x99,0xac, +0x4e,0xac,0x9a,0x0c,0x5a,0x0c,0x2b,0x5d,0xe8,0xf7,0x3a,0xb6, +0xda,0xb5,0x59,0x72,0x10,0x7d,0x81,0xe0,0xe4,0x61,0x98,0xcc, +0x74,0x4f,0x85,0xc9,0x07,0x70,0x32,0x03,0xea,0x53,0x87,0x81, +0x1c,0x60,0xc5,0x31,0x36,0x64,0x1f,0x4e,0xbe,0xc1,0x42,0xdf, +0x3e,0xfa,0x96,0x1b,0xf4,0x2d,0x3d,0x53,0x81,0xbe,0x44,0x18, +0x31,0x74,0x05,0xb1,0x6e,0xd6,0xec,0xd2,0xab,0x75,0xb6,0xe2, +0x7b,0x1c,0xfa,0x4c,0x5b,0xcd,0xa5,0x9b,0x1d,0x61,0xa4,0x0b, +0x3f,0xfd,0x69,0x03,0x98,0xea,0xe4,0xb5,0xf3,0xdb,0x73,0xf4, +0x73,0x6d,0x0a,0xdb,0xb2,0x5b,0x0a,0x6a,0xf2,0xdc,0x1b,0x78, +0x07,0x6f,0xa3,0x83,0xba,0xfe,0x9e,0x05,0x7e,0xc5,0x81,0x15, +0x1c,0x94,0x75,0x8a,0xef,0x98,0x0b,0x15,0x17,0xaa,0xea,0x94, +0xbb,0x84,0xb7,0x9d,0x23,0xf3,0x66,0xb1,0xa8,0x1f,0x3a,0x5f, +0x63,0x91,0x4a,0x87,0x6b,0xeb,0xfd,0xec,0x6f,0x2f,0xbf,0x57, +0x7a,0x8b,0xda,0x8c,0xdb,0x29,0xf7,0xd3,0xae,0x67,0xe2,0x0c, +0x79,0x98,0x98,0x04,0x9f,0x67,0xd2,0x50,0x14,0xde,0xc9,0x6b, +0x85,0x6a,0x85,0x69,0x45,0x70,0xb0,0x97,0x15,0xd6,0xc0,0x5a, +0x22,0x16,0x9a,0x0b,0x85,0xcc,0xc8,0xd1,0x14,0x72,0x08,0xc7, +0x39,0xe2,0x04,0xad,0x79,0x9d,0x4e,0x94,0x74,0x8e,0x6d,0x82, +0xe9,0x39,0xff,0xa6,0xe1,0xba,0x49,0x38,0x43,0x92,0xbd,0x3f, +0xb6,0x0d,0x37,0x3b,0x65,0x7a,0x7a,0xe8,0x9f,0x2a,0x0e,0xb3, +0x42,0xfe,0x90,0x8e,0x9b,0x86,0xab,0x6e,0x10,0xa5,0xdd,0x01, +0x39,0xd5,0x43,0x15,0xb7,0x0a,0xae,0x9b,0xe6,0x7e,0xac,0xe2, +0x30,0x0c,0x49,0xfe,0x3f,0xaa,0x38,0x9a,0x0d,0x7d,0xec,0x0e, +0xfd,0xb7,0x2a,0x8e,0x4b,0x52,0x15,0xc7,0xf2,0x5e,0x61,0x2d, +0x5b,0x1a,0x55,0x1a,0x55,0x1c,0x1d,0x13,0x14,0x75,0x24,0xfa, +0x48,0x4b,0x3a,0x7f,0xe4,0xb6,0xdf,0x2d,0x9f,0x7e,0x0e,0xfe, +0x86,0xeb,0x44,0x12,0x27,0x70,0x1c,0x39,0xd3,0x2f,0xd7,0x85, +0x85,0xe6,0x0c,0x6e,0xb1,0xc7,0x4f,0x97,0x23,0xa3,0xd2,0x64, +0x7d,0xeb,0x4d,0xcd,0xf3,0xf4,0xc7,0x4a,0x17,0x13,0xa2,0xcf, +0x45,0x45,0xfc,0x81,0xd1,0x7c,0x47,0xc5,0x0c,0x88,0x3e,0x99, +0x12,0x1c,0x75,0x34,0x4c,0x29,0xfc,0xf8,0xe9,0x28,0x85,0xd8, +0xaa,0xe8,0xce,0x41,0xe5,0x26,0x58,0x3f,0xc2,0xe1,0x4a,0x36, +0x55,0x4f,0xea,0x9c,0xd2,0x9c,0x99,0xd1,0xa8,0x2a,0xdf,0x4c, +0x29,0xaa,0xb8,0x4c,0xdc,0x4a,0x72,0xb7,0xa5,0xaf,0x4e,0x5a, +0xdb,0x99,0xf1,0xff,0x50,0xf6,0xde,0x51,0x59,0x5c,0x5d,0xdb, +0xb8,0x8d,0x99,0x49,0x62,0x48,0x62,0x72,0xcc,0x80,0x11,0xec, +0xbd,0x60,0xef,0x05,0x54,0x50,0x91,0xde,0x7b,0x95,0x8e,0x74, +0x14,0x90,0x26,0xf6,0x08,0x28,0xd2,0x7b,0x95,0xde,0x7b,0xef, +0x55,0xc5,0x86,0xdd,0x98,0x68,0x8c,0xe9,0x26,0x26,0xc6,0x3d, +0xf7,0xb3,0x87,0x3c,0xdf,0x19,0xcc,0xf3,0xbc,0xef,0x6f,0xad, +0x6f,0xad,0x6f,0xfd,0xfe,0x70,0x38,0x6b,0xb8,0xb9,0xdd,0x67, +0xf6,0x3e,0x7b,0x5f,0x7b,0xce,0x3e,0xd7,0xe6,0x23,0x9e,0x04, +0xbc,0xf0,0xb9,0x2f,0x15,0x6b,0x34,0x92,0x8a,0xaf,0x32,0x7f, +0x8b,0xff,0xc5,0xf4,0x9f,0x62,0x8d,0x2d,0xf4,0x01,0xbc,0x92, +0x9d,0x26,0x59,0xde,0x79,0xce,0x79,0x4e,0x1a,0x91,0xdb,0x4f, +0x6c,0x8c,0xaa,0x18,0x2c,0xbb,0x57,0x70,0x4b,0x27,0x85,0xf7, +0xdb,0x6b,0xbb,0xda,0x41,0x2b,0xf0,0x7c,0xe0,0xb9,0xc0,0xf3, +0x97,0x75,0x29,0x44,0x4a,0x80,0xd9,0xa9,0xc0,0x65,0x24,0xfb, +0x27,0x07,0xc4,0x07,0x35,0x97,0xf2,0x6e,0xd7,0x34,0x7f,0xb6, +0xed,0xe6,0x04,0x0f,0xfc,0x93,0x34,0x66,0x66,0x34,0x4a,0x00, +0xd0,0x80,0x26,0x84,0x8a,0x68,0xcc,0xda,0x47,0xc6,0xd7,0x2b, +0x3f,0x65,0xdf,0x94,0x81,0x5c,0xfb,0xb5,0x7a,0xb7,0x56,0x5e, +0xc7,0x71,0x89,0xa5,0x8a,0x07,0x07,0xab,0xb4,0x69,0x0c,0xdf, +0x5b,0xe8,0x77,0x47,0x49,0xfc,0x52,0xbc,0x44,0xc0,0x03,0xe2, +0x70,0x2e,0xce,0x9b,0x28,0xe6,0x9d,0xce,0xd4,0xe7,0xa4,0x74, +0x2a,0x0b,0x27,0xc5,0xf7,0xc4,0x07,0x2c,0x8c,0x0a,0x3b,0x08, +0xc6,0xfd,0x06,0x71,0x8c,0xe0,0x28,0x9a,0x11,0xb4,0x61,0x26, +0xbe,0xf5,0x25,0x0b,0x72,0x35,0x20,0xd7,0x7b,0xb3,0xcd,0xb5, +0x8d,0x3f,0x68,0xbd,0xd4,0x74,0xa9,0x0b,0x07,0x3b,0xb5,0xf1, +0x05,0xbb,0xaf,0xd0,0xf7,0x8e,0x12,0x38,0x32,0xef,0x84,0x51, +0x92,0x84,0x19,0xb7,0x87,0x2f,0x08,0xc4,0x2d,0xc2,0x38,0x46, +0x5e,0xe6,0x28,0xfb,0x98,0x1c,0x1d,0xb0,0xfa,0xd1,0xa3,0xcd, +0xd4,0x8b,0x2f,0x33,0x69,0x50,0xc9,0xd2,0xe3,0xc0,0x1c,0xac, +0x88,0xff,0x3e,0xb3,0x05,0xd6,0xd2,0xba,0x6d,0xbc,0xde,0x0d, +0x93,0xf3,0x28,0x52,0x1f,0xa1,0x5e,0x12,0x87,0xff,0xf7,0x99, +0x8b,0x9f,0x26,0xd8,0x8a,0xbe,0xc0,0xd4,0x05,0xd2,0x99,0x8b, +0x87,0xff,0xe5,0x4d,0x3c,0xcd,0x0a,0x36,0x68,0x4f,0xfc,0xfa, +0xcc,0x9f,0x39,0x4b,0x8b,0xbc,0xda,0xb4,0x65,0x53,0x9e,0x01, +0x87,0xde,0x27,0xfe,0x4b,0x52,0x3c,0x49,0xd4,0x21,0x0e,0x7a, +0xd6,0x06,0x26,0x66,0xb5,0x36,0x7c,0x67,0x67,0x63,0x57,0x75, +0x4f,0xa5,0x55,0x99,0x65,0x81,0x7d,0x43,0x0d,0xef,0xdd,0xe0, +0xd4,0x69,0xdf,0x59,0x7b,0xad,0x78,0x34,0xef,0xa6,0x69,0x2e, +0x7f,0x54,0xd7,0x5b,0xd7,0x55,0xcf,0xbe,0xdd,0xbe,0xc5,0xb9, +0xca,0xce,0x9e,0xaf,0x71,0x68,0x32,0x6d,0x34,0xe2,0x70,0x13, +0x5e,0xa2,0x8e,0x40,0x47,0x7c,0x3d,0x78,0x53,0x60,0xd4,0x07, +0x85,0xd7,0x3a,0xd4,0x11,0x8c,0x1b,0x42,0xc6,0xff,0x66,0x34, +0x96,0x97,0x9d,0x97,0xa5,0x91,0xeb,0x46,0x07,0xe6,0xd0,0x7f, +0xb8,0x01,0xf3,0x85,0x5a,0xc8,0x67,0xc7,0x9f,0x4b,0xd5,0x3c, +0x6d,0xa1,0xb8,0xc4,0x16,0xa7,0x28,0x75,0x39,0x94,0xbe,0x4c, +0xfb,0x29,0x4e,0x9a,0x0a,0x8b,0x69,0xab,0x25,0xba,0xbc,0x51, +0xa6,0xe9,0x9f,0xa9,0x78,0xb3,0xb0,0x55,0x62,0x56,0x9a,0x4a, +0xc5,0x9e,0xca,0x40,0xc7,0x46,0x32,0xf7,0xc6,0x5f,0x4c,0xf7, +0xcc,0xb7,0x1a,0x73,0x18,0xd8,0x30,0xf3,0x06,0x4c,0xd3,0x60, +0xf1,0xb1,0x0d,0xd9,0x37,0xf7,0x16,0x0b,0x59,0xfb,0xc8,0x9c, +0x5b,0x6f,0xe9,0x6f,0x61,0xda,0x3e,0x9c,0xc6,0x8c,0x33,0x18, +0x4a,0x2e,0xf4,0x5e,0x18,0xbe,0xa3,0x08,0x53,0x51,0x9f,0xa1, +0xeb,0x7d,0x1e,0x69,0xc4,0x49,0x4f,0x37,0x80,0xda,0xa1,0x82, +0x16,0x7e,0x7f,0x9e,0x69,0x81,0x43,0x51,0x4b,0x4e,0x53,0x61, +0x55,0x81,0x6b,0x1d,0xef,0xec,0x6d,0x7e,0xc4,0xc4,0xcf,0xab, +0xf0,0x68,0x49,0x30,0x5d,0xef,0x67,0x3b,0xc5,0x52,0xe6,0x42, +0xeb,0x85,0xbe,0xeb,0x8a,0x42,0x71,0x87,0xf8,0x8c,0xc1,0x81, +0xd3,0xeb,0xac,0x71,0x92,0x52,0xbb,0x7b,0xc9,0xdd,0x94,0x1b, +0x71,0xf0,0xbe,0xc2,0x37,0x68,0xc8,0x78,0x9e,0xf1,0x38,0xeb, +0x79,0xee,0x92,0x21,0xff,0x36,0x01,0xe4,0x32,0x7f,0xcd,0x8d, +0x6c,0xe7,0x8d,0xc3,0x0d,0x23,0xf5,0xa3,0x38,0x38,0xc4,0x0a, +0x53,0x60,0x23,0x11,0x5d,0xcc,0x05,0x17,0xfa,0x20,0x3e,0x91, +0xc5,0x91,0x1b,0xba,0x1a,0xb8,0x51,0xba,0xf8,0x63,0xa2,0xcc, +0x17,0x12,0x59,0x31,0x6e,0x1e,0xc1,0x8d,0xfd,0xb0,0x91,0x01, +0x1f,0xbd,0xff,0x8c,0x8e,0xd2,0xd1,0xf6,0x7e,0xd8,0xce,0x88, +0x86,0x0b,0x88,0x16,0x6e,0x1c,0x66,0x85,0x4f,0x29,0xec,0xda, +0x38,0x4c,0x7f,0x39,0x30,0x53,0x7a,0xe9,0xb1,0x9d,0x41,0x25, +0xf1,0x7d,0xf2,0x03,0x2a,0xc0,0x47,0x7b,0xc0,0xc7,0x2a,0xb7, +0x8d,0x5f,0x9f,0xa1,0x9e,0xad,0x9f,0xdf,0x9c,0xdd,0x5c,0x5a, +0x57,0x62,0x53,0xc1,0xbb,0x78,0x58,0xb8,0xe8,0xf8,0x98,0x94, +0x38,0x54,0xba,0x36,0xd2,0x95,0xdd,0x3e,0x7e,0x8a,0x89,0x69, +0xbd,0xd0,0x7b,0x5d,0x51,0xe6,0xd5,0x3e,0x5e,0xca,0x60,0x57, +0x94,0xea,0x6e,0x3a,0x99,0x16,0xfb,0xf6,0xbb,0xf9,0xb7,0x92, +0x60,0xb2,0x02,0x6c,0xa4,0xde,0xcb,0xee,0xac,0xed,0x19,0xdb, +0x73,0x97,0x29,0x9e,0x9e,0x9b,0x00,0xf3,0xd3,0x60,0x6a,0xda, +0xa9,0x36,0xfe,0x40,0xd4,0xde,0x28,0xb5,0x93,0x1c,0xec,0x67, +0x05,0x17,0xc9,0x7b,0xbd,0xb1,0x10,0xde,0x48,0xf5,0xd4,0xd1, +0x44,0x87,0xf1,0x3d,0x11,0x5b,0xa4,0x0c,0x46,0xbf,0x09,0x63, +0xe2,0x2c,0x71,0xec,0x67,0xf6,0x24,0x4e,0xb3,0xde,0x31,0xf7, +0x40,0x29,0x85,0x6d,0x1f,0xdf,0xe9,0xf8,0xf3,0x32,0x7c,0xca, +0x3d,0x42,0x63,0xe6,0x40,0x6e,0x60,0xb7,0xd2,0x6d,0xa6,0x36, +0x4d,0x4a,0xc9,0x3e,0x65,0x4d,0x33,0xe4,0xc4,0x74,0xe1,0x5b, +0x32,0x1e,0x89,0xbb,0xd8,0x0c,0x7d,0xa9,0x81,0x50,0x6b,0x46, +0x7a,0x83,0xb2,0xac,0x41,0x54,0x36,0x60,0x65,0x0d,0x17,0xa5, +0x73,0xd8,0x57,0x80,0x63,0xc5,0xf3,0xf8,0x3e,0x31,0x82,0x8b, +0xdd,0xac,0x90,0x6d,0x42,0xf0,0x7d,0x7a,0xf3,0x7d,0x56,0x0c, +0xc5,0xe9,0x44,0x54,0xea,0xbc,0x05,0xaa,0xf0,0x80,0x45,0x55, +0xcc,0x23,0xe0,0x45,0x61,0x92,0x17,0x2b,0x3c,0x07,0x2f,0xea, +0xf7,0xe9,0xa7,0x3e,0x61,0xe5,0xff,0x65,0x24,0xe8,0x12,0x9c, +0x9d,0x85,0xf2,0x57,0x70,0x4a,0x1d,0xcc,0x18,0x80,0x49,0xf7, +0xee,0xfc,0xc0,0x35,0x8e,0xb7,0x1b,0xc9,0x5c,0x58,0x0d,0xb5, +0x85,0x34,0xd4,0x98,0x2e,0x6d,0x5c,0xd3,0xb7,0xf9,0x1e,0x0d, +0x43,0x37,0x0f,0x3e,0x31,0xfa,0xd6,0x06,0xa7,0xdb,0xe3,0x6c, +0x77,0x5c,0x14,0x94,0x62,0xc0,0xc3,0xfa,0x6c,0x58,0x5f,0x05, +0xf3,0x7a,0x41,0xc1,0x00,0x16,0x39,0xc3,0xa2,0xa3,0x9c,0x98, +0x0a,0x03,0xa4,0xdd,0xbf,0xcf,0xad,0xc6,0xbb,0xbc,0x89,0xb7, +0x28,0x33,0x2b,0x30,0xcf,0xe1,0xb0,0x5c,0x9f,0xf8,0x9b,0x5a, +0xea,0xda,0xba,0x36,0x3b,0xf2,0x6d,0x35,0x6d,0xd7,0xb3,0x5b, +0x38,0x21,0x55,0x6c,0x25,0xd9,0x47,0x73,0xfd,0x72,0x7d,0x76, +0x9c,0x5a,0x7a,0x0a,0x27,0x9d,0xe6,0x60,0x3a,0x7c,0x05,0x01, +0xf8,0xd5,0x57,0x5a,0x5b,0x70,0x14,0x03,0x60,0x14,0x3f,0x62, +0x71,0xd6,0x69,0x5c,0x70,0x06,0xf9,0x73,0x97,0xf4,0x79,0xc8, +0xbe,0x04,0x9d,0xf1,0x10,0x98,0x9f,0xe9,0x9f,0xe1,0x9f,0x7a, +0xac,0xad,0x90,0xb7,0xeb,0xda,0xff,0xc0,0xac,0x95,0x13,0x1f, +0xc0,0x41,0x02,0x31,0xf8,0x01,0xc6,0x30,0xc2,0xdd,0x99,0x98, +0x01,0x1f,0x40,0x06,0xb5,0xa7,0x47,0x45,0x44,0xac,0x61,0x16, +0xfa,0x67,0xbc,0x54,0x86,0x28,0xd9,0x01,0x61,0xfd,0xf8,0xb9, +0xf1,0xd5,0x2c,0x4e,0xaf,0x72,0x82,0x25,0x4a,0x42,0x09,0xd3, +0x99,0x9d,0xda,0xa1,0x0c,0x1e,0xac,0x76,0x92,0x9c,0xf8,0x39, +0xec,0x22,0x58,0x06,0x3d,0x50,0x46,0xb1,0xe5,0x4c,0x9a,0x45, +0xd7,0x80,0xf4,0x8e,0x50,0x4f,0x76,0x8f,0xa0,0x26,0xce,0xd5, +0x87,0xb9,0x78,0x81,0x35,0x09,0x36,0x3d,0x6e,0x1e,0x91,0xa0, +0xcb,0x37,0x27,0xb5,0x26,0xb7,0xa6,0x49,0xdb,0x45,0x9f,0x49, +0xbd,0x0f,0xff,0x64,0xda,0x25,0xca,0x52,0x68,0x67,0x6b,0x53, +0x6a,0xd2,0xaa,0xd3,0x23,0x7a,0x78,0xd7,0xe3,0xce,0xa1,0x52, +0x25,0xee,0x31,0x78,0xaf,0x0f,0xdf,0x03,0x4d,0x56,0x80,0xf1, +0x61,0x82,0x4f,0x19,0xdb,0x90,0x24,0xaa,0xe1,0x06,0x61,0xaf, +0xa0,0x2e,0x9e,0x1a,0xf7,0x60,0x77,0x56,0x39,0x3d,0x56,0x82, +0x07,0x4c,0x77,0x76,0x16,0x15,0xc6,0x98,0xd5,0xca,0x94,0xc3, +0x28,0x3a,0x1f,0x5c,0x06,0x77,0x60,0x19,0x33,0x84,0x77,0x08, +0x1d,0xac,0xc5,0x3b,0x54,0x9a,0x06,0x61,0x27,0x39,0x12,0xe4, +0x19,0xe2,0x19,0xc2,0x81,0xb7,0xd4,0xbc,0x54,0x57,0x0f,0x75, +0x97,0x1a,0xfe,0x8a,0xd1,0xac,0x53,0xb0,0xd3,0x71,0xe7,0xf0, +0x44,0x3d,0xbe,0x2c,0xa9,0x2c,0xa5,0x8c,0x8a,0x56,0xbb,0x86, +0x4d,0xd5,0xa6,0xa9,0x6c,0x63,0x6a,0x56,0x8d,0x32,0xdc,0x66, +0xcb,0xd2,0xcb,0x32,0xcb,0xb2,0x39,0x19,0x4f,0x73,0xa2,0x76, +0x3a,0xbb,0x59,0xec,0xf3,0xcb,0x5f,0x27,0xdd,0x4d,0xf5,0x6e, +0xe7,0x71,0xa9,0x3b,0x9a,0x1f,0x47,0xad,0xf3,0xc9,0xc6,0xfc, +0xfd,0x0b,0x4f,0x63,0x9e,0xc6,0x71,0x34,0x8f,0xbe,0x62,0x06, +0x51,0xac,0xe9,0x81,0x95,0xd6,0xc8,0x58,0xe7,0x53,0x65,0xcf, +0xe8,0xfa,0xa3,0xbd,0xfc,0x0f,0xee,0x12,0x1e,0x1c,0x80,0x83, +0x97,0x98,0x92,0x25,0x6f,0xcd,0x41,0x51,0x3f,0xbf,0x8f,0xc7, +0x49,0x8d,0xf3,0x9a,0x8c,0xae,0x71,0xaf,0x7b,0x49,0x41,0xd9, +0x95,0x86,0xd4,0x2a,0xe3,0x2c,0x3e,0xd4,0xcd,0xcb,0xca,0xcf, +0x93,0xc3,0xef,0x86,0x49,0x7a,0x40,0xae,0x53,0x8a,0x57,0x67, +0x0e,0x1f,0x56,0xe4,0x57,0x1d,0x94,0xc3,0x1d,0x19,0xef,0x22, +0xbd,0xc2,0x62,0x83,0x41,0x61,0x97,0x98,0x29,0xee,0x62,0x21, +0x48,0xda,0x3a,0xdf,0xf9,0x06,0x76,0x32,0x7d,0xf3,0xc8,0x1b, +0xd8,0x4b,0x61,0x43,0x28,0x0d,0x1c,0x0c,0xee,0x04,0x86,0x85, +0xa3,0x33,0x61,0x2f,0x1d,0xef,0x65,0xe4,0x7b,0x65,0xe7,0x09, +0x34,0x68,0x63,0x18,0x6e,0x96,0xa5,0xc1,0x66,0xbc,0x30,0x04, +0xfd,0xad,0x7f,0x4f,0x67,0xe0,0x77,0x9c,0x4c,0x86,0x60,0x9f, +0x36,0x8b,0xe1,0x56,0x64,0x0f,0xaa,0xdd,0x61,0x85,0x95,0x33, +0xf7,0xe0,0x3e,0xfa,0x73,0xdb,0x1e,0x82,0xba,0x77,0x40,0x97, +0xc1,0x06,0xf1,0x11,0x41,0xa7,0x4e,0xd0,0x00,0x15,0xd4,0x68, +0x83,0xe9,0xdf,0xfd,0xd4,0xb4,0xa2,0xc5,0xc8,0x12,0x0f,0xd2, +0xcb,0x12,0xeb,0x57,0x6b,0x80,0x33,0xc7,0xbd,0xa8,0x02,0x7b, +0x4d,0xd0,0xcb,0x12,0xbc,0x96,0x74,0x4b,0x45,0xb6,0x4d,0xd0, +0x48,0x70,0xed,0x99,0xe5,0x1a,0x8b,0x94,0x5a,0x9d,0x9b,0x6e, +0x66,0x5d,0x8d,0x7f,0xa8,0x00,0xee,0xb8,0x04,0x17,0x33,0x12, +0xc7,0xec,0x67,0x4c,0x43,0x56,0x6a,0xb5,0xb2,0x10,0x89,0xf7, +0x29,0x14,0xc5,0x25,0x04,0x1d,0x7f,0xa5,0x91,0x4c,0x34,0x0f, +0x23,0xd2,0x17,0xb3,0xc2,0x0e,0x0a,0x9f,0xa2,0x4b,0x2e,0x94, +0x57,0x29,0x82,0xe3,0x42,0x66,0x5c,0xb3,0x8b,0xa6,0x39,0xfb, +0xf0,0x43,0x06,0x3a,0x67,0xe2,0xc7,0xb7,0xe0,0x63,0x46,0x6a, +0x6f,0x4d,0x2d,0x4c,0x07,0x57,0x19,0xc0,0x42,0x36,0x14,0x3f, +0xb6,0xc5,0x39,0xf3,0x50,0xa1,0xce,0x9c,0xff,0x1a,0xa6,0x94, +0xbd,0xbd,0xf4,0xab,0xd4,0x7a,0x70,0x40,0x88,0xf9,0xa7,0x22, +0xef,0x17,0xdc,0x52,0x5b,0xbb,0x12,0xd6,0x44,0xa6,0x9d,0x8c, +0x0e,0x8b,0x50,0x08,0x93,0x38,0xc9,0x3e,0x7f,0x77,0x24,0x48, +0x87,0x11,0xde,0x8c,0x8f,0x10,0xec,0x64,0xec,0x42,0x12,0xa9, +0x85,0x35,0x09,0x0b,0xa8,0x85,0x39,0xbc,0xb3,0xb0,0x47,0x4a, +0xd0,0xc8,0x74,0x67,0xbd,0xb3,0x30,0x6d,0x6a,0x61,0x3e,0x92, +0x85,0x7d,0x01,0x63,0x14,0x80,0x0c,0xe2,0x18,0xa1,0x83,0xb9, +0x38,0x26,0x79,0x84,0x30,0xb2,0xa2,0x66,0x57,0xf3,0xa1,0x8e, +0x47,0x4f,0xfa,0x5f,0x55,0xc2,0xc7,0x34,0x81,0xf2,0x03,0x03, +0x30,0x65,0x23,0xed,0x03,0xcd,0x02,0x5d,0xba,0xfd,0xf9,0x2b, +0xad,0x79,0xfd,0x49,0x5d,0xf4,0x7e,0x32,0x4c,0x96,0x1a,0xb6, +0x26,0x61,0x36,0x8b,0xb6,0x47,0x70,0xdd,0xea,0x89,0x73,0x22, +0x2f,0xe0,0xb3,0x1a,0x58,0x7e,0x11,0x0e,0x2b,0x08,0xab,0x98, +0x23,0xcb,0xcd,0x37,0xa9,0xaa,0x69,0x5c,0x37,0x1b,0x73,0x78, +0x62,0xec,0xc1,0x37,0x6e,0xe8,0xdc,0x75,0x53,0xe3,0x80,0xd1, +0x16,0xab,0xc5,0x4e,0xc5,0x3a,0xfc,0x1f,0x75,0x2f,0xda,0xc7, +0x86,0x47,0x0d,0x9e,0x9a,0xfe,0x61,0xc5,0x89,0x7f,0xcb,0xf2, +0x88,0x61,0xf3,0xfe,0xc6,0x03,0xe5,0x6e,0x66,0xfc,0x0d,0xe7, +0x21,0xfb,0x7e,0x2b,0x0e,0xbe,0x95,0xd8,0xf9,0x4d,0xa8,0x00, +0x26,0x0c,0xca,0xd0,0x82,0x98,0x34,0xaa,0xb7,0xd2,0x0f,0x98, +0xf3,0xd7,0x9c,0x47,0x6c,0xfa,0xac,0xb8,0x48,0xea,0xfc,0x0e, +0xe3,0x14,0x13,0xe4,0x54,0x97,0xb6,0xdb,0xf2,0xf7,0xff,0x1a, +0x00,0x85,0x8a,0x37,0x14,0x1f,0xdd,0x97,0x19,0x11,0xfd,0x96, +0x7d,0x2d,0xea,0xd2,0xb7,0xdd,0x76,0xba,0x6a,0x3b,0x68,0xc9, +0xc9,0x66,0x63,0x22,0x71,0xf6,0xb4,0x3a,0x62,0xe9,0x13,0x71, +0xeb,0xd4,0xd8,0xb9,0x87,0x5d,0x09,0x5d,0x49,0xed,0xa9,0x5e, +0xdd,0x3c,0x2e,0xb1,0xc6,0x2d,0x41,0xb8,0xef,0x04,0x07,0x2b, +0x59,0x30,0xb9,0x0c,0x6a,0x45,0xa0,0x5c,0xed,0xd1,0xc9,0xe3, +0x4c,0x17,0x54,0xf3,0xc6,0x88,0x48,0x0e,0xe3,0x59,0xbc,0xe0, +0x81,0x2b,0xd6,0xe3,0x02,0xa5,0x4e,0x87,0xef,0x61,0x6d,0x05, +0xac,0x8b,0x86,0xcb,0x0a,0xf0,0x69,0xbc,0x9c,0x78,0x77,0x50, +0x78,0xcc,0xd6,0xc4,0x56,0x5f,0xaa,0xbe,0x14,0x8f,0x47,0xcb, +0xd1,0x02,0x3e,0x42,0xf5,0xa6,0x36,0x5e,0xfb,0xb9,0xd3,0x4f, +0xfe,0x7f,0xf4,0x14,0xf5,0x56,0x34,0x94,0x73,0xe3,0xba,0x30, +0x99,0x18,0xb4,0xec,0x6e,0xdf,0x5b,0x49,0x27,0x70,0xfb,0xf0, +0xa8,0xd5,0xb0,0x39,0xe7,0x87,0x53,0xa5,0x09,0x18,0xff,0x77, +0x02,0x83,0xef,0x26,0x20,0x78,0x08,0x05,0x44,0xf7,0xa4,0xce, +0x29,0xdd,0xd3,0xdc,0x6b,0xd8,0xdc,0x86,0x9b,0x7f,0x85,0x3d, +0xed,0xe2,0x1a,0x33,0x50,0x5f,0x8a,0xeb,0xcd,0x61,0xfd,0x1c, +0x56,0xfb,0xb4,0xf6,0x19,0xad,0xb3,0x17,0x4d,0x78,0x58,0x94, +0x00,0x4a,0x49,0xf0,0x45,0x16,0x07,0xa5,0x30,0x93,0xc0,0xce, +0x36,0xdc,0xf9,0x0b,0xe8,0xb5,0x8b,0xbb,0xcd,0x40,0x63,0x19, +0x6e,0x33,0x87,0x6d,0xf3,0x51,0xc3,0x4c,0xd8,0xd7,0x4e,0xe3, +0x8c,0xe8,0x28,0x46,0x93,0x2d,0x41,0x89,0x77,0x95,0xef,0xc8, +0xd6,0x41,0xd8,0xb8,0x0f,0xde,0x64,0x17,0x97,0xba,0x03,0x51, +0x12,0xba,0x99,0x96,0xf4,0xe4,0x66,0xe5,0x6f,0x58,0xdd,0x54, +0xb9,0x85,0xac,0xa8,0x20,0xd5,0xa3,0xe7,0xc3,0x0c,0xc8,0x67, +0xe0,0xbb,0x99,0x38,0x03,0x4b,0x61,0x06,0x2b,0x2f,0x8b,0x87, +0x8f,0xc8,0x8d,0xa7,0x6d,0xbf,0x15,0xc1,0x47,0x5c,0x0b,0xea, +0x81,0x21,0xac,0x67,0x4f,0xda,0x06,0x99,0x07,0x3a,0x76,0x1c, +0xe3,0xf3,0x3a,0xb2,0xba,0x13,0x7a,0xb8,0x56,0xf4,0x84,0xc9, +0x3a,0xd4,0x38,0x3c,0xa5,0xba,0x5c,0xe7,0x00,0x54,0xd1,0x42, +0x56,0xa9,0xd3,0x6e,0x04,0x48,0x01,0xcc,0x8f,0x01,0x4f,0x05, +0xf8,0x81,0xf1,0x5f,0xe5,0xb0,0x49,0x47,0xd5,0x60,0xd4,0xfe, +0xae,0xc7,0x63,0x53,0x5f,0xbe,0x62,0x5d,0xe3,0xb6,0xc1,0x3d, +0x86,0x46,0x1a,0x16,0x9b,0x1d,0x4b,0x0d,0xf9,0xa7,0x75,0x77, +0xda,0x07,0x87,0x7a,0x0c,0x46,0xcd,0xbe,0xb6,0x2e,0xee,0xe5, +0xb7,0xd7,0x6a,0xb6,0x18,0x77,0x72,0xe2,0x24,0xe1,0xdf,0xa4, +0x1f,0x7f,0xd1,0x83,0xcf,0xd8,0x40,0xfa,0x1c,0x70,0xd6,0x46, +0x9c,0x52,0xa2,0xc9,0xe7,0x16,0x65,0x94,0xa4,0x97,0x72,0xe2, +0xae,0x81,0x07,0x70,0x48,0x08,0xc0,0x7d,0xec,0x95,0x07,0x59, +0x8f,0x93,0x5f,0x70,0xc2,0x16,0xcc,0x24,0xb8,0x8e,0x4a,0xb9, +0x8e,0x11,0x8f,0x8b,0xdf,0x13,0x0a,0x38,0x3e,0x15,0xa7,0xb0, +0xf2,0x82,0x09,0x3c,0x26,0x0f,0x32,0x46,0x73,0xfa,0x0a,0xc6, +0x5c,0x5f,0xf8,0xc0,0x34,0xff,0xdc,0x0e,0x7e,0x79,0xc6,0xae, +0x6c,0xcd,0xfc,0xdb,0xb5,0x9d,0x6d,0x35,0x83,0x5c,0x3d,0xba, +0xbe,0x01,0x27,0x36,0xc2,0x3f,0xd4,0x2f,0xd0,0xb7,0x37,0x98, +0xcf,0x2f,0x4f,0x2f,0x4b,0x2c,0xe1,0x6a,0xb1,0x60,0x54,0x6f, +0x3f,0x46,0xa3,0x1c,0x8b,0x1f,0x87,0x6c,0xdb,0xb2,0x4e,0xa9, +0xce,0xf2,0xc6,0xa3,0xb2,0x6b,0x09,0x7f,0x29,0x08,0x73,0x19, +0x77,0x5b,0x73,0x87,0x7d,0xae,0x3a,0xc5,0x96,0x15,0x36,0xf5, +0x96,0x5e,0x7c,0x9d,0x5d,0xa3,0x6b,0xbb,0xa7,0x41,0xe0,0xfe, +0x63,0x5b,0x43,0x72,0xac,0xf9,0x90,0xa3,0x41,0x01,0xc7,0x02, +0x39,0xec,0xa7,0x01,0x9b,0x39,0xec,0x64,0xeb,0x64,0xe1,0x74, +0xef,0xf8,0x4f,0x81,0x6f,0xfc,0x16,0xba,0xe3,0xcc,0x60,0xdc, +0x1e,0x95,0x46,0xfd,0xac,0xe5,0x65,0x58,0x57,0x08,0x1f,0xf5, +0xc0,0x07,0x5e,0xf0,0x89,0x3b,0xbc,0xe7,0x5e,0xd8,0xc1,0xcf, +0x29,0xc2,0x49,0x57,0x16,0xe6,0x5e,0xab,0xeb,0xe8,0xa8,0x19, +0xe1,0x40,0xb5,0x5b,0x4c,0x65,0xd2,0xb3,0xd3,0xb2,0x52,0xb2, +0x38,0xdc,0x20,0xec,0x25,0xba,0x65,0xea,0x85,0xda,0x59,0xbe, +0x74,0x5d,0x04,0x5c,0xf3,0xee,0x77,0xe7,0xe0,0xa3,0x74,0x02, +0x06,0xf3,0x28,0xfa,0xba,0x90,0xfc,0x65,0x4a,0x8a,0x22,0xce, +0x36,0x26,0x5a,0xe5,0x07,0x0a,0xf7,0xe7,0xfa,0x98,0xf3,0x37, +0xfc,0x06,0xfd,0x6e,0x1c,0xe6,0x52,0x5c,0x88,0x81,0xe9,0x56, +0x6d,0x55,0xfb,0x0a,0x53,0x7e,0xac,0xe9,0xc9,0xd5,0xae,0x1e, +0x4e,0x58,0x8e,0x05,0xc4,0x56,0xcf,0xd8,0x46,0xdd,0x55,0x25, +0x6b,0x53,0xc6,0x9e,0x94,0xd2,0x82,0xe2,0xa2,0xc2,0x22,0x4e, +0xfe,0x89,0x8c,0x23,0xb2,0x47,0x70,0x70,0xfc,0x11,0x03,0x49, +0x16,0x64,0x03,0x5a,0x3c,0x63,0x05,0xb3,0x0d,0x04,0xcd,0x9e, +0x81,0x19,0xd3,0x2f,0x6d,0xb8,0x39,0x6c,0x60,0xcf,0x89,0x8a, +0xa4,0x0d,0xbb,0x6f,0x40,0x77,0x2b,0x76,0x5f,0x87,0x67,0xed, +0xe3,0xc1,0xe2,0x22,0x99,0x16,0x6b,0x7e,0xce,0xf2,0xb4,0xbb, +0x92,0xcb,0xc9,0xd0,0x10,0xe3,0x59,0x07,0x25,0xe2,0xab,0x3e, +0xe6,0x71,0x55,0xfe,0x8d,0x04,0xe5,0xb8,0xd6,0xe8,0x81,0xc7, +0x8a,0xf8,0xfa,0x36,0xa3,0x0b,0x5b,0x08,0xd6,0x5f,0x87,0x7a, +0x06,0xeb,0xf1,0x20,0xb9,0x01,0xf5,0x1a,0xac,0xf9,0xb4,0xbd, +0x58,0x7f,0x9b,0x15,0x56,0x49,0xf4,0xa7,0xce,0x39,0x16,0xe9, +0x76,0x9d,0x59,0x7c,0x48,0xad,0x5f,0x9b,0x77,0x25,0x27,0xde, +0x40,0x6b,0xd2,0xdb,0x5d,0x37,0x52,0x38,0x68,0x92,0xc3,0x1f, +0x31,0x74,0x34,0x32,0x34,0x91,0x88,0xaf,0xe6,0x93,0x0c,0xeb, +0x4c,0x83,0x04,0x53,0x89,0xf8,0xaa,0x3d,0xb0,0x37,0xb0,0x9e, +0x43,0xf7,0x08,0x92,0x68,0x91,0xb8,0x2f,0xd6,0x78,0x38,0x8e, +0x3f,0xd5,0x1f,0x7e,0x2d,0xac,0x85,0xa6,0xd2,0x7b,0xa4,0x92, +0xb5,0xa5,0x98,0xf5,0x2b,0xbd,0x48,0x54,0xa2,0x6b,0x86,0xbf, +0x83,0x2c,0xe9,0xf2,0x8e,0x4a,0x74,0xd6,0xb8,0x33,0xd9,0x78, +0x34,0xe9,0xa1,0x32,0xcc,0x91,0xad,0x85,0xd6,0x71,0x1f,0xd1, +0x90,0x9d,0x5f,0xe6,0x06,0xbc,0x92,0xd0,0xc4,0xb4,0x67,0xa6, +0xb4,0x29,0xc3,0x47,0xac,0x4e,0xaa,0x1c,0xce,0x95,0xd6,0x49, +0x0d,0xc1,0x5c,0xd0,0x84,0x5c,0x06,0x5e,0xcc,0xa4,0x60,0xa1, +0x90,0x46,0x7b,0x79,0xa1,0x83,0xe6,0x41,0x30,0xdc,0x85,0xc3, +0x6f,0x27,0xae,0x6f,0xe0,0x45,0xcf,0xf8,0x51,0xb1,0x42,0x66, +0xc6,0x9c,0x5e,0x73,0xd2,0x38,0xcc,0x8c,0x33,0x0f,0xf3,0xf1, +0xdc,0x35,0x0b,0x15,0x99,0x14,0x03,0xa9,0x5f,0xd8,0xcf,0x2d, +0x95,0x5f,0x65,0x2b,0xa7,0x5d,0x8d,0x1f,0x8d,0x05,0x45,0x4e, +0x64,0x18,0x5d,0x61,0x37,0x99,0x87,0xe5,0x6f,0x58,0x28,0xc7, +0xb5,0x64,0x0e,0x96,0xbf,0x95,0x46,0xeb,0x09,0x4e,0xc1,0x72, +0x98,0xc2,0x0a,0x6b,0x31,0x90,0x14,0x38,0x96,0x6a,0xe5,0x9a, +0xb7,0x5f,0xe1,0xfd,0x5b,0x5c,0x86,0xbd,0x2b,0x38,0x71,0x10, +0x6b,0x48,0xdb,0xad,0x06,0x98,0x9c,0x76,0xdf,0x20,0x83,0x3f, +0xb6,0xdb,0x7e,0x99,0xc5,0x01,0xe9,0xb9,0x78,0x92,0x2c,0xe3, +0xc2,0xed,0x29,0x3a,0x7d,0x99,0x7c,0x68,0xbf,0xe7,0x63,0xdf, +0x0e,0x0e,0x5d,0x8e,0x91,0x64,0xcd,0x94,0x15,0x17,0x77,0x0f, +0x27,0xf0,0x27,0x1f,0x05,0x7f,0x17,0x7a,0x95,0xfa,0xcd,0x8b, +0xb2,0x67,0x34,0x74,0x99,0x68,0xe0,0x1c,0xba,0x7a,0xb9,0x6a, +0x63,0xbe,0xb8,0xa8,0xa8,0xaa,0xa8,0x81,0x13,0xb3,0x87,0x64, +0xef,0xb3,0xd5,0x0f,0xcb,0x5e,0xe6,0xbe,0xe6,0x82,0x70,0x36, +0xd1,0x03,0x5d,0x5c,0x2f,0xbd,0x2f,0xd5,0xdc,0xc1,0x1e,0x3d, +0x1f,0x74,0x3e,0x48,0x49,0xc3,0x6f,0xed,0xb1,0xbd,0x11,0xc9, +0xba,0xfc,0x8d,0xe4,0xfb,0xe9,0xd7,0x72,0x8f,0x22,0x63,0xa0, +0x89,0xef,0xed,0x2b,0xb3,0xe0,0x61,0xe3,0xcb,0x51,0x98,0x0c, +0xae,0x8a,0xc2,0x69,0x6d,0x5c,0xc8,0x42,0x8c,0xe8,0x41,0xe0, +0xd0,0x44,0xa7,0x3a,0x0a,0x50,0x7d,0xfa,0x69,0x34,0x5a,0xa8, +0xf3,0xf7,0xbc,0x41,0x08,0x07,0xff,0x7e,0xfa,0xe8,0xae,0xca, +0x2e,0x91,0x7b,0xea,0xbb,0xc5,0x99,0xe8,0xca,0x62,0x63,0x08, +0xae,0xd0,0xc2,0x4f,0x94,0x7a,0x8c,0xe5,0x6e,0xc0,0x92,0x74, +0x50,0x83,0x4e,0x45,0x58,0x23,0xcb,0xee,0x65,0xd1,0x69,0x3c, +0x99,0xf8,0x45,0x26,0x16,0x4b,0x04,0x16,0xc7,0xba,0xf1,0x18, +0xc8,0xff,0x78,0x85,0xad,0xf6,0x6b,0x0c,0xe8,0x0c,0xc8,0x6f, +0xe7,0x0d,0xf3,0xac,0x72,0x0f,0xe7,0x37,0x95,0x36,0x36,0x57, +0x36,0x59,0x95,0xf0,0xee,0xb6,0x56,0x96,0x56,0xee,0x47,0xd3, +0x82,0xd2,0x43,0x32,0x1a,0xca,0xea,0x1a,0x4b,0x6a,0xe9,0x4d, +0x3f,0x57,0x47,0xfb,0xc3,0x9e,0xc7,0x8a,0x42,0x4a,0x42,0x2b, +0x8c,0x8e,0xf3,0x95,0x2b,0xda,0x55,0xbf,0xd5,0xe4,0xc4,0x29, +0xcc,0x68,0x57,0xcb,0xb5,0xa2,0x47,0x5c,0x15,0x86,0x99,0xc1, +0x56,0x36,0xd8,0xce,0xcf,0xc9,0xcd,0xcd,0xb9,0xd4,0xa0,0xc9, +0xba,0xc0,0xd9,0x99,0xaf,0xf7,0xed,0xb5,0xad,0x74,0xb7,0x71, +0x35,0xf4,0xda,0xef,0x5b,0x60,0xca,0x77,0x64,0x35,0xe5,0xd6, +0xe4,0x73,0xfe,0x4f,0x0e,0xd2,0x27,0x71,0xec,0x6c,0x90,0x12, +0x3a,0x1b,0x81,0x25,0xe3,0xb1,0x68,0xa7,0x16,0x7e,0xe0,0x50, +0x68,0xc4,0xc3,0x17,0x2d,0x3f,0x3c,0xa6,0xae,0x99,0x83,0x6d, +0xb8,0x8e,0xd1,0xcd,0xf5,0x1e,0x55,0x82,0x45,0x4c,0x4d,0x7a, +0x4a,0xad,0x32,0x4c,0x96,0xce,0xff,0x4a,0x64,0x8c,0x5f,0xc0, +0x39,0x12,0x9d,0x71,0x21,0x33,0x53,0xf1,0x3a,0xac,0x92,0xfa, +0xc1,0x09,0x1f,0x08,0x2a,0xe4,0x70,0x88,0x7d,0x88,0x5d,0xa8, +0x04,0x23,0x3f,0xef,0xc7,0xcf,0xe1,0xa0,0x36,0x1e,0xc4,0xc5, +0x7a,0xb0,0x98,0x82,0x51,0xa3,0x60,0xa3,0x50,0xb3,0x70,0x0a, +0x46,0x5b,0x93,0xda,0x93,0xdb,0x27,0xc0,0xa8,0xc2,0x44,0x23, +0xee,0x49,0x52,0x23,0x6e,0x6a,0xa1,0xad,0x6c,0x53,0x6a,0x63, +0x7a,0x43,0x26,0x07,0x63,0xb8,0x9c,0xc0,0x7c,0xf0,0xef,0x43, +0x7f,0x50,0x06,0x9f,0x3e,0xfa,0xc0,0x67,0xc3,0xe9,0x01,0xb1, +0x44,0x17,0x82,0x71,0x36,0x3a,0xea,0x83,0x23,0x2a,0xa3,0x8b, +0x3e,0xb8,0xe0,0x7c,0x4c,0xd3,0x85,0x34,0xf4,0x1d,0x06,0x5f, +0x38,0x37,0x20,0x15,0x93,0xc9,0xf6,0x11,0x7d,0xd8,0x4e,0x95, +0xbd,0x49,0x1f,0x36,0xed,0x60,0x83,0xbe,0x0c,0x3e,0x1f,0xac, +0x74,0xd0,0x77,0x4b,0xe0,0xfe,0xb0,0x14,0x5d,0x7e,0x24,0xe5, +0x76,0xd6,0x60,0x5e,0x30,0x7e,0x60,0x7a,0x70,0xfe,0xde,0x0a, +0x2b,0x1e,0xe6,0xbd,0x1c,0x84,0x49,0xe0,0xa3,0x28,0x84,0xeb, +0xe1,0x22,0x16,0x8e,0x8b,0x6e,0x84,0xae,0x0d,0x8d,0x5e,0xd4, +0xa0,0xaa,0x33,0xec,0x43,0x43,0x58,0x34,0xa1,0xeb,0x08,0x30, +0xee,0x67,0xc7,0xa7,0x82,0x0e,0x71,0x3f,0xee,0x1a,0xea,0x42, +0xa1,0x72,0xf0,0xeb,0xde,0x85,0x70,0x48,0x17,0x0f,0xa1,0xbc, +0x01,0xc8,0x63,0x2c,0x6b,0x1d,0x62,0x1d,0x66,0x1b,0x91,0x20, +0xb5,0xe0,0xae,0x4b,0xae,0x4b,0xe1,0xb0,0x0c,0xa7,0x4a,0x47, +0xd6,0x5e,0xfc,0xd3,0x82,0xbb,0x43,0xea,0x34,0x9e,0x56,0x95, +0x4e,0xd7,0xf3,0x09,0xb0,0x23,0x5f,0xc1,0x67,0x55,0xf0,0x45, +0x32,0x2c,0xe6,0x6e,0x0e,0xe1,0x33,0x26,0xbd,0x3d,0xb9,0x33, +0xbe,0x53,0x2f,0x9e,0xf7,0xc5,0xd9,0xb6,0xf8,0xf9,0x6a,0x9c, +0x56,0x61,0xc2,0x97,0x54,0x17,0x35,0xe6,0xb7,0x64,0x20,0x57, +0x89,0x53,0x87,0xe7,0xe9,0xef,0xd8,0xa1,0x3a,0x6f,0x6f,0x19, +0x85,0x22,0x63,0x8f,0xee,0x0d,0x3d,0xee,0xde,0x7e,0x7b,0xf7, +0x77,0xaa,0x15,0x83,0xbc,0xca,0x98,0xfa,0x98,0xe9,0x03,0x6e, +0x5c,0x59,0xf8,0x49,0xaa,0xd7,0x7d,0x2e,0x20,0xab,0x23,0x21, +0x11,0x57,0x98,0x09,0xae,0x8c,0x60,0x80,0x0a,0x24,0x1c,0x67, +0x1c,0xc1,0xf7,0x0e,0xe2,0x14,0x6d,0x98,0xe4,0x01,0xec,0x71, +0xaa,0x5d,0x0a,0x4c,0xf7,0xff,0xe7,0x33,0xe8,0x2a,0x55,0xd2, +0xba,0xe2,0x5c,0x74,0x65,0x54,0x71,0x90,0xf4,0x75,0xf6,0x3d, +0x29,0x19,0x31,0x2a,0xe3,0xfd,0x8d,0xb5,0x36,0x19,0xdb,0x48, +0x64,0x2c,0x0b,0x49,0x89,0x43,0xb9,0x69,0x9e,0x4d,0x47,0x0d, +0x1f,0x50,0xe7,0xd8,0x7b,0xa4,0x82,0x2e,0xbf,0x9f,0x84,0x40, +0x12,0x99,0x72,0x22,0x3a,0x2c,0x3c,0x34,0x94,0x3f,0x05,0xef, +0xc1,0xc2,0x7e,0x5c,0x08,0x3a,0xda,0x14,0x20,0xee,0xd5,0x83, +0x2d,0x4c,0x30,0xca,0x5b,0xe3,0x2c,0xfc,0x08,0xe7,0x35,0x58, +0xf0,0xaf,0x80,0xab,0x81,0x29,0x97,0xff,0xa4,0x10,0xb1,0x61, +0x48,0x48,0x97,0xf8,0xbb,0x62,0xcf,0x28,0xbd,0xc2,0xcf,0x6b, +0x1a,0xe5,0xe0,0x21,0xac,0x91,0x36,0x67,0xa2,0x43,0xc3,0xc2, +0xc2,0xf8,0xd3,0x77,0x99,0x9c,0xe6,0x8c,0xf6,0x94,0x36,0x0e, +0x0e,0xf6,0x8a,0x17,0x0d,0x20,0x99,0xb1,0xc6,0xf5,0xf3,0x71, +0x3b,0xae,0x44,0xa5,0x1a,0x43,0xfe,0xd9,0x93,0xdb,0xdf,0xf4, +0xfd,0xce,0x89,0x4d,0x43,0x42,0x19,0x9b,0x18,0x77,0xe1,0xe2, +0x29,0x25,0x30,0xc7,0x8b,0x4d,0x9d,0x72,0xf2,0x57,0x85,0x59, +0x04,0x54,0x29,0x2a,0xb9,0xfd,0xf2,0x25,0x87,0x69,0x23,0x70, +0x6e,0xa2,0x47,0xd6,0x69,0x25,0x61,0x2e,0x1e,0x2e,0xed,0x11, +0x67,0x82,0x75,0x50,0x42,0x44,0x74,0x44,0xb0,0x42,0xe4,0x71, +0xb9,0x93,0x7d,0x4c,0x52,0x7a,0x42,0x7a,0x7c,0x06,0x27,0xc8, +0xf7,0x8f,0xbf,0xd5,0x13,0xd6,0x31,0x07,0x91,0xc5,0x05,0xcb, +0x30,0x7c,0xab,0xd4,0xe0,0xe9,0x13,0x82,0x03,0x8b,0xf4,0xfe, +0x35,0xab,0x7f,0x0e,0x0c,0xb0,0x62,0xb0,0x01,0xc1,0x18,0x5c, +0x04,0x31,0x2c,0xfc,0x85,0x31,0x84,0x4e,0x34,0x06,0x16,0x32, +0xc3,0x74,0x48,0x07,0xab,0x30,0x86,0x95,0x68,0x55,0xc2,0x48, +0x4a,0x71,0x42,0x71,0x42,0xa9,0x7e,0x02,0x1f,0xe9,0x1e,0xe6, +0x1a,0xe2,0xcc,0xa1,0x9e,0xb8,0x54,0x38,0x2f,0x2c,0x65,0xc4, +0x5a,0x8c,0x25,0xbd,0x3a,0x50,0xa9,0x87,0x95,0xf3,0x21,0x43, +0x17,0x4b,0x58,0x2c,0x8a,0xc0,0xad,0x46,0xf8,0xa9,0x52,0xbb, +0x65,0xe3,0x5f,0x19,0x30,0xfd,0x32,0xac,0x55,0x80,0x19,0xe2, +0xc7,0xfd,0xc2,0x01,0x3c,0xc8,0x5c,0xa8,0xbb,0xd0,0xd8,0xa2, +0x28,0x04,0x00,0xcd,0x2e,0xa6,0xe3,0x7a,0x98,0xce,0xc2,0x11, +0x9a,0x28,0xd3,0xbc,0x73,0x2b,0x4e,0x67,0xd1,0x9f,0xe6,0xcf, +0x33,0xe8,0xed,0x19,0xd2,0xed,0x19,0x84,0x22,0x9f,0xad,0x38, +0x83,0xdd,0x8c,0x2e,0x14,0xb4,0x6b,0xa3,0xb4,0xc9,0x90,0x59, +0x99,0xd6,0x90,0x52,0x63,0x90,0xcc,0x87,0xda,0x1f,0x33,0x0b, +0x70,0xe0,0x36,0x1b,0xc2,0x0f,0x68,0x3d,0x04,0xd6,0xb0,0xbb, +0x87,0x91,0x17,0x36,0x0a,0xa1,0x04,0x7e,0xd5,0x52,0xc3,0x16, +0x43,0x68,0xd9,0xcb,0xae,0xf7,0xc6,0xf7,0x7d,0x17,0x1d,0x4f, +0xd2,0xe7,0x7f,0x49,0x7d,0x9b,0xf7,0x5d,0x11,0xb7,0x86,0x15, +0xd2,0x87,0x08,0x5a,0x32,0xd6,0x11,0x89,0x75,0xca,0x23,0x2c, +0x70,0x19,0x3f,0xe6,0xff,0x5e,0xeb,0xd5,0xc6,0x6f,0x75,0x5d, +0xec,0xbd,0x90,0x26,0x75,0x8c,0x36,0x9e,0x63,0xf7,0x95,0xf8, +0x5f,0x57,0xa2,0x36,0xd4,0x9c,0x95,0xd5,0xac,0x3c,0xc6,0xea, +0xa6,0xcb,0x8d,0x2f,0xa6,0xf1,0x08,0x54,0x85,0x11,0x9c,0x84, +0x9e,0x52,0xdd,0x14,0x98,0x32,0xad,0xd9,0xe9,0xad,0xca,0x82, +0xfa,0xf8,0x7e,0xf1,0x12,0x2b,0x7b,0x4f,0x98,0x46,0xc4,0x91, +0xaf,0x85,0x11,0x46,0x1c,0x41,0x65,0x22,0x8c,0x6c,0x14,0x47, +0x18,0xf9,0x7f,0xe9,0xc8,0x74,0x08,0x9e,0x84,0xb9,0x3a,0xd4, +0x0e,0x7d,0x0d,0xc0,0x17,0x15,0xd1,0x4a,0x0c,0xe9,0x17,0xf6, +0xc0,0x7c,0xb1,0x78,0x50,0x28,0x86,0x55,0xe2,0x14,0x9c,0xc4, +0xa4,0xea,0xcb,0xbd,0x7c,0xc7,0xf2,0x27,0xac,0xa7,0xf6,0xab, +0x08,0x27,0xd9,0xf1,0x97,0xc8,0x50,0x65,0x05,0xe1,0x42,0x23, +0x8a,0xdc,0xba,0xed,0x6b,0x7f,0xc8,0xfa,0x31,0x01,0x96,0x2b, +0xc0,0x3a,0x4c,0x46,0x56,0x7a,0x97,0xf6,0x9d,0x44,0x60,0xd0, +0xa6,0x2c,0xab,0xa0,0xf8,0x1f,0x9c,0xa5,0x17,0x50,0x2b,0x41, +0x07,0x56,0x32,0xb8,0x46,0x54,0x23,0x31,0xef,0xde,0x6f,0xad, +0x9c,0xe0,0x08,0xc9,0xe8,0x23,0x5d,0xf0,0x18,0x4e,0xe2,0xe3, +0x0e,0x61,0x75,0x8b,0xb8,0x7a,0x58,0x57,0x0b,0xad,0x59,0x98, +0x31,0x5c,0xdf,0x0d,0x6b,0x14,0xe1,0x3d,0x3d,0x13,0x1c,0xb1, +0x82,0x11,0x2f,0xd6,0x1b,0xeb,0x6c,0xa0,0x8a,0x3d,0x1b,0x7a, +0x36,0xec,0x74,0xf8,0xca,0xf0,0x25,0x91,0x38,0xf5,0xe4,0x65, +0x2b,0xfe,0xd5,0xe5,0x97,0x09,0x0f,0x12,0xfd,0x7c,0x0e,0x07, +0xe8,0xfa,0x95,0x39,0xf3,0xb8,0xd3,0x52,0x50,0x32,0xc5,0x11, +0x3a,0xb1,0x11,0x63,0x71,0xbd,0xb9,0xb0,0x7e,0xc3,0xc0,0x33, +0x61,0x5f,0x1b,0x13,0x26,0x78,0x93,0x66,0xfc,0x6a,0x10,0xfa, +0x1b,0xb1,0xbf,0x0f,0x1e,0x37,0xe3,0xe3,0x4e,0x3d,0xfc,0x77, +0x7f,0x3f,0x8b,0xcb,0xb0,0x9c,0x60,0x74,0x37,0x44,0x33,0xf0, +0xd0,0x88,0x60,0x66,0x37,0x64,0x32,0xe2,0xed,0x15,0x04,0xa2, +0xf5,0x91,0xde,0x1b,0xea,0x23,0x90,0xa9,0x8f,0x99,0x34,0x1d, +0xb3,0x90,0x45,0x48,0x56,0x30,0x7d,0x5c,0xb7,0xff,0x3a,0xfc, +0x2e,0x93,0xc7,0x0f,0xa9,0x1d,0x28,0xf5,0x88,0x96,0x86,0xac, +0xec,0xdb,0xf1,0x40,0x82,0x56,0x8c,0x7e,0x78,0x62,0xaf,0x32, +0x7c,0x0b,0xad,0xc2,0x2c,0xf1,0x33,0x5d,0xb8,0x87,0x05,0xd8, +0x2a,0xae,0x62,0x77,0x96,0xbb,0x3e,0x92,0xd4,0xd6,0x92,0x96, +0x4e,0xd3,0x2f,0x7d,0x56,0x9f,0xea,0xed,0x33,0x61,0x11,0xb5, +0xa3,0x3e,0x6a,0x46,0xf0,0x01,0xf6,0x93,0xf9,0xd8,0xf4,0x35, +0x5b,0xe1,0x3a,0x78,0x27,0xeb,0x87,0x0b,0x30,0x57,0xa1,0x0f, +0x35,0x18,0xcb,0x1c,0x9f,0x66,0x25,0x54,0x83,0x58,0x9a,0xf0, +0x86,0xac,0x37,0xd5,0x55,0x82,0x94,0x51,0xe9,0xe0,0x8c,0x15, +0xf1,0x89,0xba,0x5c,0xa4,0x0c,0x9b,0x6f,0xa2,0x15,0x8b,0x4d, +0xe8,0x48,0xa0,0x09,0x39,0x6c,0xfa,0xbf,0x95,0xdf,0x96,0x14, +0x97,0x54,0x17,0x37,0x72,0x62,0xde,0xb0,0x4c,0x9e,0xad,0x7e, +0x50,0xf6,0x22,0xf7,0x77,0x0e,0xbe,0x5f,0x43,0xfe,0xd0,0x5e, +0x80,0x79,0xfa,0xc2,0x78,0x1f,0x4b,0xa3,0x46,0x21,0x29,0xe8, +0xcd,0xbb,0x9a,0x3e,0xac,0x9f,0xce,0x07,0xa9,0xfb,0x1d,0x70, +0xa7,0x61,0x4e,0x45,0x4f,0xb6,0xb1,0x9f,0x11,0xd7,0x57,0x91, +0xf0,0xf6,0xc0,0x41,0xdf,0x36,0xa3,0x40,0x3e,0xcf,0x34,0xcb, +0x20,0xd9,0x94,0x33,0x11,0x7b,0xc9,0x35,0x61,0xe6,0xc1,0x11, +0xe1,0x13,0xf1,0xb2,0xf8,0x09,0x2b,0x18,0xc2,0x43,0x82,0xb6, +0x74,0xb5,0xdb,0xb2,0x12,0xaf,0xbe,0x3f,0x91,0x08,0x80,0x2f, +0x1b,0x08,0x8f,0x7b,0xd9,0x71,0x3b,0x0c,0x22,0x30,0xad,0x0f, +0xa7,0x41,0xa1,0x0e,0x16,0xe2,0x24,0x7d,0x98,0x84,0xe3,0x8c, +0xc3,0x71,0xa9,0x39,0x59,0x86,0x1e,0x0f,0x53,0xaa,0x5e,0x56, +0x3c,0x6f,0x8c,0xec,0xe7,0x9d,0x83,0x0e,0x87,0x38,0x86,0x70, +0x42,0x23,0xcd,0xaa,0x0b,0x7a,0x73,0xaf,0xa5,0x0d,0x51,0x61, +0x82,0xd5,0x03,0x0e,0x78,0x50,0x61,0x58,0x3d,0xe1,0xdf,0x54, +0x98,0x59,0xef,0x84,0xf1,0x6b,0x33,0x3a,0x4a,0x85,0xc9,0xd4, +0x4f,0x36,0xe3,0x2c,0x25,0x61,0xe0,0xef,0x09,0x61,0x82,0x25, +0x61,0xb6,0x01,0x4d,0xe5,0xed,0xf0,0x6f,0xb0,0x63,0x25,0xea, +0xd9,0x10,0xd2,0x83,0xe9,0xbf,0xc0,0x0e,0xe8,0xfd,0xa9,0x73, +0xc5,0x6b,0xdd,0x85,0x98,0xfb,0x5a,0x6f,0xa1,0x8a,0xc9,0x4b, +0xec,0x85,0x35,0xcb,0xf0,0x92,0x21,0x84,0xb2,0xee,0x6a,0x1b, +0xf6,0xe0,0xfc,0xfd,0x85,0xd2,0x6b,0xbb,0x9b,0x3f,0xdd,0x4a, +0xf8,0x8d,0x8b,0xc3,0xea,0x41,0xa8,0xb9,0xc4,0xc4,0x2f,0x7c, +0xa9,0x0b,0x73,0x55,0x0b,0xbb,0x78,0xfc,0x62,0x74,0xe3,0x0d, +0xb7,0x3b,0x9c,0xa8,0xe6,0x4c,0xba,0x81,0x2d,0x02,0xc5,0x64, +0xd8,0xc4,0x35,0xe0,0x66,0x36,0xf9,0x5a,0xc2,0xf0,0xe5,0x3e, +0xed,0x8b,0xfc,0x49,0xc3,0x88,0x03,0x61,0x1a,0x1c,0x32,0x3a, +0xaf,0x99,0x80,0x05,0xde,0xf3,0x3c,0x36,0x77,0x3a,0xb6,0x39, +0xb6,0xd8,0xdb,0xed,0xd4,0xdf,0xab,0x7a,0xb0,0xda,0x94,0xbf, +0x77,0x63,0x60,0xac,0xf9,0xab,0xe2,0x23,0xc5,0x9e,0x45,0x6e, +0x55,0xed,0xbc,0x5b,0x85,0x7b,0x99,0x5b,0x31,0x27,0xa4,0x0b, +0xb3,0x29,0x44,0xfc,0x95,0x22,0xc4,0xf1,0x35,0xe2,0x64,0x92, +0xff,0x55,0x1e,0x5d,0x4e,0x1c,0xbc,0xc7,0x44,0x20,0xef,0x87, +0xef,0x59,0xce,0x77,0x2d,0x76,0x29,0x74,0x29,0xe0,0x64,0x6b, +0xc0,0x83,0x48,0xf2,0xd3,0x79,0xa9,0xc9,0x36,0x91,0x3e,0x51, +0x85,0x4d,0xad,0x48,0xaa,0x4a,0xac,0x94,0x5a,0xd1,0xae,0xb2, +0x59,0xa9,0xbe,0xa3,0xd1,0x91,0x2f,0xaf,0x2d,0xac,0xcf,0x6d, +0xe2,0xd0,0x19,0xb7,0x4a,0x3c,0x8f,0x5f,0x86,0x45,0x86,0x86, +0xf3,0xa7,0xbf,0x83,0xe9,0xbd,0x38,0xfd,0xdd,0xf9,0xe3,0x79, +0x06,0xa0,0x20,0x15,0x44,0xfc,0x97,0xf2,0xf2,0xfe,0xdb,0xa2, +0x37,0x97,0x26,0x28,0x2f,0xfb,0x84,0x16,0xe9,0xfc,0x71,0xcc, +0x19,0xa5,0x3b,0xf8,0x45,0x65,0xbd,0x9c,0xf0,0x93,0x0f,0xd9, +0xc7,0x44,0x5f,0x8f,0xbe,0xf3,0x40,0x51,0x34,0x60,0xce,0x1d, +0x38,0xab,0x76,0x72,0x17,0xb7,0xcd,0xe0,0x1e,0x13,0xb5,0x23, +0x7c,0xfb,0xf1,0xdd,0x1c,0x4d,0xe3,0xcf,0x45,0x9d,0x8f,0x3a, +0x17,0xc5,0xd9,0x44,0x45,0x84,0x98,0xcd,0x5a,0x20,0x1d,0xf4, +0xfb,0x96,0x19,0xab,0xca,0x79,0x94,0xaa,0x1c,0x9d,0x14,0x93, +0x1c,0x9d,0xc2,0x3d,0xec,0xd9,0xcb,0x5c,0xea,0xba,0x38,0x10, +0x7b,0x8d,0x1b,0x63,0xf0,0x1e,0x9d,0xc4,0x79,0xf3,0x73,0x86, +0x67,0x0d,0x38,0x54,0x62,0x2e,0x0e,0xc4,0x74,0x47,0xb7,0x70, +0xa0,0x45,0xa1,0x6b,0x4c,0x4f,0x4c,0xf7,0x85,0x0e,0x0e,0x66, +0x33,0x06,0xe7,0x8d,0xcf,0x99,0x2a,0xa1,0xb5,0x01,0x39,0xad, +0x7d,0x4a,0x3b,0xca,0x90,0xc3,0x79,0x4c,0x7c,0x7f,0xdc,0xe0, +0xa5,0x01,0x0e,0xd4,0x71,0x1f,0x89,0xeb,0xbd,0x34,0x78,0x51, +0x22,0xdd,0x64,0xce,0x1e,0x38,0xa5,0x7b,0xca,0x44,0x2a,0x91, +0x84,0x60,0xaa,0xe8,0x2b,0xbf,0xc0,0x1e,0xe8,0x7b,0xd5,0xb9, +0x44,0x52,0x74,0x39,0xbd,0xac,0x34,0xf9,0x11,0xfb,0x60,0xd3, +0x32,0x4c,0x35,0x84,0xd3,0xac,0x9b,0xda,0x9a,0x3d,0xb8,0xf8, +0x80,0xa4,0xe8,0x45,0x37,0x5f,0xdd,0x4a,0xfc,0x8d,0xbb,0x84, +0xd5,0x43,0xef,0x14,0xfd,0xb3,0x0e,0x2c,0x54,0x2d,0xa4,0xd9, +0xbe,0xf2,0xf5,0xb5,0x37,0x5c,0xa8,0xa2,0xe7,0x41,0xf8,0x3f, +0xa4,0xa1,0x61,0xef,0x48,0x43,0xe5,0x7b,0x51,0xfe,0x1d,0x69, +0xe8,0x42,0x03,0xf8,0x82,0x09,0xc3,0x4f,0xec,0x71,0xce,0xd2, +0x89,0x03,0x92,0x0f,0xa5,0x03,0x92,0x97,0xa4,0x03,0x92,0x57, +0xfa,0xff,0xfb,0x3a,0xe6,0x09,0x2e,0xa9,0xaa,0x93,0x13,0x36, +0x40,0x2a,0xc1,0xf2,0x5f,0xa1,0x9c,0xc1,0xa5,0xd3,0x16,0x60, +0xf9,0x1f,0x13,0x66,0x29,0x49,0x5b,0xf2,0x0b,0xec,0x83,0xbe, +0xdf,0x3b,0x17,0x49,0xd2,0xd6,0xd0,0xcb,0x0a,0x93,0x9f,0xa8, +0xb4,0x5b,0x97,0x61,0xa6,0x21,0x8d,0xa4,0xee,0x6a,0x2a,0x7b, +0x71,0xe9,0x84,0x59,0x2e,0xbe,0xf9,0xfb,0xff,0x57,0xda,0x5f, +0xb5,0x61,0x89,0xda,0x15,0x2a,0xed,0xdc,0x51,0x95,0x51,0x49, +0xda,0x75,0x69,0x24,0xf2,0x5d,0x23,0x75,0x1a,0xd0,0xa3,0x93, +0xfa,0xe3,0x7a,0x62,0x6e,0x28,0xf4,0x0f,0x36,0xf6,0xd5,0x8c, +0x3a,0xd4,0xf1,0x1e,0x86,0xee,0x56,0xce,0xf6,0x5c,0x39,0x0b, +0xad,0xba,0x48,0xb1,0x71,0xba,0x2b,0x45,0x09,0x8a,0xb8,0x57, +0xa9,0xc5,0xfa,0xab,0xb7,0xf5,0x2f,0xf2,0xbf,0xff,0xa7,0xde, +0xe2,0x0f,0x5c,0xc1,0xb7,0x36,0xc8,0x09,0x2a,0xc2,0x31,0x82, +0x35,0xaf,0xa0,0x86,0x19,0xb7,0x3e,0x2c,0x55,0x59,0x44,0xac, +0xf4,0xd8,0xd6,0xe5,0xc7,0x97,0x7d,0x9f,0xf4,0xa7,0xd4,0xb9, +0x5d,0xb6,0x78,0x0e,0x59,0x80,0x35,0x74,0x2a,0x90,0x26,0x7b, +0x9f,0xb4,0x75,0x34,0xf4,0xd6,0x5e,0x95,0xde,0x9a,0x1b,0x38, +0x9a,0xd9,0x59,0x1d,0x69,0x73,0x6b,0x76,0x6c,0xb2,0x72,0xe5, +0xeb,0xcc,0xca,0xcd,0x0b,0xcd,0xac,0x6c,0xcd,0x0f,0x1b,0xbb, +0x15,0x19,0xf0,0x9d,0x15,0x6d,0xd5,0xcd,0xf5,0xd9,0x56,0xa9, +0x16,0x49,0x66,0x07,0xd7,0xec,0xd3,0x5a,0xa9,0x5b,0x68,0xc8, +0x7f,0xd7,0x33,0x3a,0xdc,0x77,0x9f,0xbb,0x64,0x15,0x63,0x61, +0xaa,0x88,0x3b,0x2f,0xb8,0x59,0x6c,0x98,0xb5,0x5b,0x22,0x2f, +0xb9,0xc1,0x50,0xb7,0x31,0x02,0xde,0xb0,0xd2,0x0b,0x14,0x74, +0x61,0xba,0x32,0x5d,0xc3,0xfb,0xc9,0xf8,0x7c,0xc1,0x4d,0x36, +0x9f,0x3d,0x84,0xa6,0x04,0x7f,0xa5,0x70,0xf5,0x57,0x06,0xbf, +0x9b,0x46,0x47,0xf3,0xa4,0xd1,0xaf,0x68,0x4e,0x43,0x2c,0x2e, +0x41,0x3a,0x9e,0x81,0x1d,0xe4,0x87,0xf6,0x5b,0x03,0x83,0xa3, +0xb6,0xf5,0xbc,0x91,0xd6,0x5e,0xfd,0xf5,0x56,0x9c,0xc0,0xc1, +0x74,0x72,0xdd,0xf2,0xf9,0xfe,0x41,0xbd,0x9a,0x56,0x5e,0xb7, +0x6f,0xc3,0xb5,0xfd,0x4d,0x9c,0xfc,0xcf,0xb2,0x46,0x1a,0x76, +0x65,0x6d,0x60,0xc9,0x8a,0xc3,0x66,0x64,0x31,0x1e,0xf8,0x8d, +0x15,0x54,0x17,0x13,0xd4,0xff,0x0d,0xf4,0x99,0xfe,0xc5,0xe4, +0x37,0x30,0x5b,0xcc,0x26,0xe2,0x54,0x32,0x6e,0x2c,0xea,0x4d, +0x9c,0xd9,0x18,0x25,0xe2,0xbd,0x47,0xc2,0x3d,0x46,0xbc,0x87, +0x84,0x08,0xf7,0xb6,0x89,0xf7,0x18,0xb3,0x69,0xc2,0xbd,0x2d, +0xf4,0x27,0x7d,0xac,0xc7,0x09,0x7c,0x51,0xfc,0x57,0xfd,0xc3, +0x46,0xfb,0x06,0x7e,0x87,0xdd,0x22,0x67,0xfc,0xcc,0x8b,0xba, +0xb5,0x7e,0xf2,0xda,0x0b,0xde,0xb7,0x7f,0x65,0x57,0xd9,0xc9, +0x2f,0xad,0xc6,0x0f,0xeb,0xe6,0x5d,0x99,0x68,0x0e,0x77,0x8f, +0x68,0xae,0x12,0xe7,0xe8,0x0b,0x73,0x68,0xf8,0xfe,0xd3,0x40, +0x96,0xd9,0x8b,0xff,0x86,0x49,0xc2,0x8a,0x3e,0x71,0x85,0xb4, +0xe1,0x72,0x87,0x8c,0xff,0x8c,0x1a,0x23,0xf0,0x91,0xcc,0x13, +0x3f,0x1a,0x61,0x30,0x1c,0x7d,0x89,0x6d,0x54,0x5a,0xb9,0x32, +0x84,0x1c,0xc0,0x48,0x76,0x4f,0xe1,0x91,0x87,0x4a,0xa0,0x49, +0xe3,0x7d,0x76,0x8b,0x32,0xcc,0x64,0x35,0x33,0xe4,0x70,0x1d, +0x3b,0x5e,0xb9,0x9d,0xc0,0xa9,0x9b,0x8f,0xff,0x48,0x86,0xfd, +0x07,0x63,0xf9,0x70,0x9c,0xeb,0xb0,0x0e,0xbf,0xdc,0x47,0x91, +0xb0,0xad,0xcc,0x97,0xbc,0xd1,0x99,0x87,0x2e,0x06,0x42,0x14, +0x75,0xce,0xcf,0x6f,0x92,0xf1,0x49,0xd0,0x22,0x9b,0xc4,0xea, +0x49,0x85,0x29,0xfb,0x80,0x87,0x7d,0x8c,0xe0,0x8e,0x4d,0x24, +0xaf,0x2f,0xfb,0x7a,0xca,0xa0,0x41,0x3a,0x1f,0xaa,0x11,0xa0, +0xe1,0xa5,0xc9,0xe1,0x55,0x7d,0x21,0xaf,0x8f,0xc1,0xa7,0x95, +0x24,0xb2,0x3d,0x68,0x28,0xa0,0xdd,0x28,0x88,0xcf,0x31,0x4e, +0xa7,0xc9,0x34,0x87,0xa7,0x6c,0xfe,0xf3,0xa7,0xb8,0x4f,0xe2, +0x2b,0xde,0x87,0x0b,0x90,0x7e,0xcd,0x4c,0xbc,0x41,0xae,0x42, +0x9f,0xe6,0x20,0xf5,0xcc,0xdb,0x25,0xcf,0x3c,0x49,0xf2,0xcc, +0x0e,0xd4,0xc2,0x1d,0x58,0xd1,0x02,0xef,0x92,0x8e,0xae,0xb6, +0xa7,0x05,0xd7,0x4c,0x8a,0xf9,0x40,0x03,0xe3,0x0d,0x56,0xd6, +0x1c,0x9c,0x84,0xd5,0xa4,0xcc,0xac,0x42,0x2b,0xcf,0xa0,0xa3, +0x92,0xf7,0xef,0x72,0x1c,0x75,0x6f,0xa4,0x32,0xab,0xcb,0xfc, +0xc8,0x9f,0x3a,0xf3,0x31,0xd2,0x40,0x68,0xa0,0x32,0xbf,0x19, +0x23,0x7f,0xbf,0x77,0x55,0x76,0x8b,0x66,0x5e,0xc7,0xf6,0x99, +0xcf,0x37,0xd9,0xc4,0xdd,0x52,0x6f,0xdd,0xa1,0xa1,0xa8,0x13, +0x74,0x44,0x5f,0xc9,0x82,0x49,0x3c,0x20,0xd7,0xcb,0xdc,0x6d, +0x6c,0x7d,0xf5,0xdc,0xf2,0xb1,0xf6,0x90,0x72,0xfd,0xad,0x0e, +0x98,0x94,0xf3,0x35,0xd7,0x22,0xbd,0x29,0xf8,0x9d,0xe4,0xf7, +0xe6,0xbc,0x0b,0x2c,0x21,0x1a,0x01,0xfb,0x3d,0xe9,0xb4,0x7e, +0xd5,0x13,0x1e,0xd0,0xc0,0x32,0xb9,0x92,0x06,0x96,0x63,0x83, +0xfe,0xed,0x46,0xc7,0xf8,0x5c,0x93,0x0c,0x83,0x24,0x53,0xce, +0x5e,0xec,0xa6,0xe2,0xbf,0xd4,0x1c,0xa6,0xe2,0xdb,0x4a,0xe2, +0xcf,0x93,0xa2,0x9c,0x1d,0xbe,0x94,0x02,0x0b,0x34,0x08,0x6f, +0x89,0xc9,0x43,0xcd,0x87,0x86,0x3d,0x16,0x4e,0x7c,0x9f,0xe1, +0xd0,0xf6,0x8e,0x5d,0x9c,0x6c,0x09,0x35,0xd0,0x5e,0x31,0xdf, +0x80,0x15,0x1e,0xa1,0x3c,0xe9,0x1d,0x9f,0x4e,0x47,0xb7,0xe8, +0xa8,0x5b,0x4c,0x35,0x62,0xf1,0x86,0x38,0x46,0x7e,0xa8,0x6b, +0xeb,0x8f,0xb9,0xc7,0x4d,0xf4,0xdb,0x50,0x83,0x75,0xb3,0x84, +0xd0,0x89,0xb6,0x8e,0xe7,0x99,0xff,0x74,0xe8,0xa8,0x45,0x63, +0x1d,0x98,0x29,0x9d,0x5d,0x74,0x36,0x5c,0x60,0xa3,0x24,0xfb, +0x55,0x50,0x7a,0xf7,0xe7,0x51,0x58,0x4f,0x84,0x12,0xf0,0x12, +0x4b,0x18,0xc1,0x8d,0x62,0x51,0x56,0x5c,0x0e,0x2c,0x15,0xa4, +0x0f,0x4e,0x92,0xc4,0xc3,0x89,0x66,0x09,0x66,0x3e,0x27,0xbd, +0xa3,0xbc,0x4f,0x71,0xe0,0x02,0x84,0x3e,0x7b,0x02,0xab,0x0d, +0x70,0x35,0x7e,0x46,0xa3,0xf2,0x67,0x18,0xc0,0x1a,0x45,0x48, +0x24,0x50,0x49,0x3a,0x3c,0x4c,0xcb,0xf8,0x35,0xf7,0xfb,0xa2, +0xd8,0x80,0xd8,0xc0,0x98,0xa3,0x1d,0x29,0x7c,0xe8,0x13,0xff, +0x3f,0x8e,0xdd,0xe2,0x84,0x16,0xcc,0x21,0xb8,0x44,0xa2,0x20, +0xa8,0x56,0xee,0x07,0x4f,0x78,0x82,0x9e,0x77,0xc1,0x1c,0xc6, +0x44,0x03,0x1c,0x03,0x13,0x55,0x74,0x9a,0xa0,0x20,0x50,0x99, +0xa0,0x20,0x78,0x28,0x1d,0x8c,0xf8,0x5f,0x14,0x04,0x71,0x12, +0x05,0xc1,0xdc,0x6f,0x61,0xee,0x3b,0x0a,0x82,0x05,0xeb,0x58, +0xfc,0xde,0x92,0xc0,0x5c,0x15,0x9c,0xcb,0x80,0xc9,0x4b,0x02, +0x0b,0x54,0x70,0x01,0x23,0xde,0x79,0x41,0xee,0x61,0xc9,0x6e, +0x06,0xec,0xa0,0x84,0x60,0xc9,0x4e,0x28,0x61,0x85,0xd9,0x54, +0x29,0xa8,0xf2,0x1d,0xa8,0x30,0xe0,0xb9,0x86,0xe0,0xa6,0xef, +0x60,0x13,0x23,0xbe,0x87,0xb3,0x09,0xa8,0xac,0x40,0x7a,0xd3, +0xe9,0x27,0x02,0x9b,0x56,0xe0,0x26,0x46,0x5e,0xa6,0x0f,0xb7, +0x89,0xb0,0x03,0xc2,0xfb,0xc4,0x54,0x7d,0xf0,0x11,0x77,0xe0, +0x69,0x1b,0x76,0x1b,0xf0,0x27,0x13,0x23,0x63,0xc3,0x23,0x14, +0x42,0x42,0xe5,0x4e,0xff,0xf5,0x2e,0x23,0xda,0xc6,0xb4,0xa7, +0xb6,0x64,0x54,0x67,0x7b,0xb6,0xf1,0x9b,0x68,0x6e,0xe7,0x32, +0xe7,0x78,0xaa,0x11,0xdf,0x18,0xd7,0x11,0xdf,0x91,0xcc,0xe1, +0x0a,0xdc,0xa5,0x07,0x1b,0xd9,0x48,0x9c,0x6c,0x89,0x93,0x29, +0x44,0xfa,0xac,0xc6,0x94,0xff,0xee,0xcf,0xca,0xaf,0x2f,0x7e, +0x4d,0xbd,0xb7,0x65,0xaf,0x60,0xc4,0x5c,0x8a,0x8d,0x8e,0x3d, +0xa5,0xf4,0x3b,0xee,0x6d,0xaa,0x3e,0x9e,0x27,0x07,0xa1,0xf8, +0x6c,0x18,0x9e,0xc1,0xc5,0x41,0x06,0x17,0x8c,0x90,0x9a,0xfb, +0x0d,0x20,0x97,0x27,0xd5,0x7a,0xfa,0xef,0xb0,0xc7,0x69,0x4e, +0x6a,0x1c,0xde,0x85,0x13,0xa4,0x70,0x5f,0xc5,0xc2,0x3c,0x95, +0xae,0x02,0xde,0xff,0x5b,0xe7,0x3f,0x8f,0xdc,0xa0,0xc9,0x5a, +0x3c,0x24,0x93,0x33,0x31,0x71,0xd5,0xb1,0xb5,0x17,0xaa,0x15, +0x60,0xe6,0x00,0x55,0x88,0x1b,0x4c,0x1f,0x40,0x2f,0x26,0xa1, +0x3a,0xbe,0xf6,0x52,0xad,0x61,0x22,0x1f,0x8c,0xd3,0x3c,0x97, +0x98,0xa9,0x36,0xbb,0xf0,0xf9,0x55,0xd9,0x4d,0xe9,0xed,0xdc, +0x00,0xba,0xe1,0x3a,0x5d,0x58,0xcb,0x9c,0xc2,0xc5,0x4e,0xf8, +0x29,0x7e,0x80,0xb3,0xea,0x6d,0xf8,0xef,0xdf,0x34,0xfd,0x9c, +0xfb,0xd7,0x85,0x58,0x89,0x17,0x04,0x3e,0x44,0x3b,0xbe,0xb5, +0x92,0x06,0x22,0xdb,0x93,0x49,0x11,0xd1,0x61,0x91,0x0a,0xc2, +0x33,0x7c,0x45,0x86,0xff,0x35,0x5b,0x8b,0x41,0xe9,0xf4,0x3f, +0x94,0x62,0x87,0x21,0x44,0xe2,0x6e,0x3c,0xcc,0x9e,0xde,0x16, +0x8a,0x93,0x82,0xd6,0x4a,0x47,0x98,0xcf,0xaf,0x8e,0x5a,0x1b, +0xa5,0xc7,0x99,0x46,0x05,0x07,0x1b,0xcf,0xc2,0xf7,0x25,0x50, +0x0f,0xd3,0x99,0xdb,0xa5,0x79,0xb7,0x93,0x95,0x53,0xc6,0xe2, +0x29,0x8a,0xfd,0x58,0x11,0xcf,0x32,0xf1,0xad,0x09,0x77,0x63, +0xdb,0xa4,0xee,0xdd,0x82,0x48,0x1e,0x41,0xd6,0xf6,0xa1,0x47, +0x90,0xde,0x8b,0xe9,0x4f,0xb5,0x37,0x63,0x96,0x74,0xf9,0xd2, +0x00,0xbe,0xdc,0xce,0x0e,0x53,0xa5,0x45,0x26,0x9d,0xf8,0x32, +0x3c,0xe2,0x78,0x28,0x7f,0xfa,0x19,0xac,0xea,0xc6,0x55,0xf0, +0x21,0xd3,0x91,0xd0,0x9a,0x5c,0x99,0xee,0xd7,0xc2,0xab,0x38, +0xe1,0xfc,0x63,0x73,0xa2,0x92,0x8d,0xf9,0xf6,0xd8,0xee,0x4b, +0x5d,0xf1,0x1c,0x4e,0x41,0x03,0x23,0xd8,0xc3,0x06,0x6c,0x33, +0x5d,0x41,0x23,0x8f,0x5c,0x9d,0x15,0x0f,0x1f,0xc2,0xb4,0x8a, +0x6f,0x2e,0xdf,0xa7,0x58,0xeb,0xed,0x20,0x74,0x33,0x71,0x17, +0x27,0x12,0xcb,0x29,0xc8,0xd7,0xd7,0xc9,0x41,0xb4,0x60,0x43, +0x0e,0xe1,0x5a,0x06,0x8d,0x6c,0x91,0x5e,0x70,0x83,0x52,0xbd, +0x19,0xac,0x85,0x79,0xdd,0x2f,0x12,0x60,0x93,0x42,0x1c,0x93, +0x80,0x1b,0xfb,0xd6,0xc0,0x36,0x5c,0x50,0x4d,0x63,0xa0,0x11, +0xac,0x33,0x05,0x16,0x0c,0xa5,0x5e,0x85,0x7b,0x48,0xfd,0x58, +0xc9,0x83,0xfc,0x07,0xfa,0x19,0x7c,0xc0,0x2e,0x0f,0x55,0xfb, +0xfd,0x1c,0x56,0xda,0x92,0xaa,0xbb,0xf9,0x8f,0xd3,0x1e,0xeb, +0x27,0xf2,0xc7,0x77,0xf8,0xee,0x74,0xd2,0xa0,0x4e,0x65,0x9e, +0x4c,0x93,0x64,0x36,0xa4,0xb7,0x26,0xb5,0x1c,0x48,0xe2,0xc3, +0x4c,0x82,0x8d,0x8f,0x59,0x73,0x68,0x33,0x9e,0x78,0xed,0x96, +0xa0,0xb2,0xef,0x9a,0x2c,0x91,0x19,0x57,0x86,0xa5,0xc4,0x04, +0xcd,0x76,0x53,0x87,0x3e,0x9d,0x02,0x69,0x43,0xbe,0xa2,0xa4, +0xa2,0xa6,0xac,0x89,0x13,0x0b,0xaf,0x52,0x20,0x5d,0x77,0xbf, +0xe2,0x45,0xfe,0x6f,0x1c,0xb0,0xe2,0x41,0x02,0x17,0x04,0x15, +0xbc,0xc0,0x8a,0x2a,0xf8,0x8c,0xc0,0x15,0x3a,0xbe,0x42,0x61, +0xf0,0xb7,0x97,0x08,0xee,0x99,0x68,0xce,0xbe,0x8c,0xe9,0xf8, +0x4f,0x73,0xf6,0xf1,0x33,0x01,0xc4,0x48,0xf8,0x90,0x3d,0xb5, +0x4a,0x0e,0xc1,0x18,0xde,0x30,0xa7,0x96,0xcb,0x89,0x2b,0x0d, +0xe0,0xb2,0x68,0x8c,0x33,0x99,0x54,0x3d,0xb9,0xbf,0xfe,0xa1, +0x99,0xdc,0xc7,0x5e,0x8e,0xbd,0x70,0xe9,0xb4,0x12,0xc5,0xfa, +0x6a,0x35,0x0d,0xa8,0x0d,0xdb,0xc3,0x92,0x22,0xce,0x87,0x87, +0x4b,0xad,0x71,0x4f,0xc1,0x71,0x38,0xdd,0xbb,0x8e,0xc9,0x80, +0x36,0xb9,0x37,0x47,0xc8,0xf8,0xe7,0xc3,0xb2,0xcf,0x59,0xbc, +0x2c,0xa6,0x90,0x8e,0xea,0x96,0x96,0xb2,0x7a,0x9b,0x2a,0xde, +0xd3,0xde,0xd2,0xca,0xdc,0x85,0xc3,0x0d,0x67,0x89,0x63,0x83, +0x4d,0xa3,0x43,0x99,0x9d,0x23,0x5f,0xe7,0xd2,0xe0,0x58,0x6b, +0xc5,0x15,0x1d,0x21,0xe6,0x26,0xaa,0xfa,0xbb,0xec,0x4a,0xcd, +0xf9,0x6f,0xda,0xef,0xf4,0xb4,0x49,0xdc,0x6e,0x8c,0xac,0x80, +0xd8,0x16,0x98,0xe7,0xd8,0xa6,0x78,0x3a,0xf0,0x4d,0x21,0x6d, +0x01,0x75,0xbe,0x1c,0x4d,0xa0,0x37,0x92,0x15,0x90,0xa0,0x85, +0x09,0x73,0x75,0xff,0x12,0x5f,0x0d,0x0b,0xaf,0x7e,0x62,0x84, +0x24,0x6a,0x63,0x8f,0x5f,0xc0,0x2d,0x4c,0xb8,0x05,0x2d,0x9d, +0xd8,0xf2,0x87,0xfe,0x02,0xac,0x35,0x81,0xda,0x7d,0x18,0x8d, +0xb7,0x84,0x75,0xdb,0x44,0x7b,0x63,0xc1,0x9e,0x86,0x81,0x03, +0x13,0x67,0xc0,0x37,0x32,0x4d,0xe9,0x52,0xdf,0xb1,0x9d,0x30, +0xb3,0x8b,0x45,0x80,0xdf,0xc9,0x26,0x34,0xfa,0x9a,0x85,0x98, +0x4d,0xe4,0x6b,0xb0,0xdc,0xc4,0x62,0x82,0x25,0x59,0x8b,0x46, +0x2f,0xe8,0x9d,0xb5,0xe4,0x05,0x58,0xae,0x65,0x45,0x53,0x8c, +0x22,0x5d,0x6e,0xad,0x0e,0x0d,0x76,0x75,0x75,0xbc,0x65,0x83, +0x79,0x8d,0x99,0x44,0xf2,0xb0,0x56,0x52,0x57,0x63,0x0a,0x55, +0xd7,0xc1,0x44,0x3e,0xdc,0x24,0xc4,0x24,0xc8,0x8a,0x43,0xcd, +0xf1,0xc4,0x91,0x9b,0xc2,0x34,0xf5,0xab,0x54,0x5d,0x62,0x0b, +0x96,0x12,0xa7,0x10,0xc7,0x89,0x8a,0xeb,0x63,0xef,0xba,0x6a, +0x68,0x6a,0xff,0x67,0x73,0x36,0x9a,0x35,0x09,0xf9,0x7f,0x6d, +0xce,0xfe,0x53,0x73,0xfd,0x36,0x9f,0x40,0x8c,0x30,0x0d,0x63, +0x58,0x71,0x9a,0xa4,0xcf,0x42,0x3a,0x2e,0x9c,0x68,0x19,0xff, +0x4e,0x82,0xc4,0x16,0xcd,0x77,0x12,0x04,0x53,0x09,0xf6,0x48, +0x12,0xc0,0x6b,0xf5,0x11,0xc9,0x60,0x16,0x60,0x04,0x39,0x45, +0xc3,0xa0,0x42,0x2f,0x2a,0xbc,0x6b,0xca,0xb6,0xcc,0x80,0xba, +0xc4,0x50,0xfc,0xc4,0x0e,0xe7,0x2c,0x44,0xbe,0xce,0x82,0x7f, +0x02,0x93,0x4b,0xff,0xba,0xf4,0x8b,0x44,0xa4,0xf1,0x3f,0xdb, +0x76,0x2f,0x70,0x4d,0x4d,0xed,0x06,0x58,0x7a,0x22,0x4d,0x02, +0x9b,0x0a,0x10,0xb2,0x51,0x7a,0xc5,0xf1,0x9a,0x4a,0x80,0xaf, +0x27,0x24,0xa0,0x63,0x49,0x02,0xf2,0xff,0x34,0xd9,0xc1,0x6f, +0xc8,0x4d,0xe7,0x11,0xfb,0x41,0xcb,0xaa,0x2e,0x5e,0xbf,0x59, +0xbd,0x49,0xa3,0x8c,0x83,0x41,0x51,0xff,0x3f,0x06,0x3a,0xde, +0x01,0x2a,0xe4,0xce,0xe1,0x1b,0x56,0x23,0xe6,0xd5,0xd2,0x07, +0x76,0x75,0xec,0xa9,0xe0,0xe0,0x6f,0xb1,0xfa,0x3f,0x56,0x3b, +0x7e,0x1c,0xa7,0x93,0xfb,0x6f,0x86,0x40,0xa1,0xf2,0x2f,0xed, +0x7c,0xfe,0xdd,0xd6,0xd3,0xce,0x25,0x14,0xa6,0xf8,0xc8,0x54, +0x49,0x71,0x73,0x4e,0x7b,0x7a,0x8b,0x46,0x0a,0x7f,0xdc,0xdc, +0x57,0xdf,0x9d,0xc6,0xfd,0xa2,0xf1,0x33,0xd7,0xee,0x0b,0x6f, +0x77,0x8d,0xca,0xce,0x30,0xfb,0xb1,0x97,0x88,0x6f,0xe1,0xb4, +0xf0,0x96,0x11,0xdf,0x62,0x0f,0x11,0xde,0x52,0x8b,0x7c,0x4b, +0xf3,0xfb,0x73,0xb2,0xdd,0xa4,0x1b,0xab,0xd9,0xd4,0xa2,0xe4, +0xe2,0x84,0x62,0xfd,0x14,0xde,0x6d,0x8d,0xd1,0x16,0x35,0x8d, +0x26,0x07,0xbe,0xba,0xb2,0xa2,0xbe,0xa8,0x89,0x7b,0xc1,0x14, +0xd8,0xe6,0x5b,0xe7,0x5a,0x74,0xe7,0xf0,0xc7,0x6a,0x03,0xaa, +0x02,0xaa,0x38,0xe8,0xea,0x9e,0x78,0xaf,0x13,0x5f,0xac,0x9f, +0xc4,0xfb,0xae,0xb7,0xd9,0xac,0xad,0xde,0xe2,0xc2,0x97,0x54, +0x5e,0xa9,0xcd,0xad,0xe7,0xbe,0x63,0xae,0xd8,0xe5,0x59,0xe5, +0x59,0x74,0x65,0xf3,0x47,0xeb,0x02,0xab,0xfc,0xe9,0xc7,0x75, +0xba,0x99,0xf1,0x1f,0xd0,0x8c,0x8c,0x1c,0xb9,0x71,0xb8,0xf7, +0x70,0x79,0x2b,0x6f,0x56,0xb5,0xa3,0x5e,0xef,0x0a,0x27,0x84, +0xce,0x8c,0x70,0x3b,0x6a,0x1d,0xe8,0xca,0xa1,0xa5,0xd8,0x36, +0x32,0x20,0x2c,0xd1,0x1d,0x11,0xda,0x30,0x9d,0xc9,0x2c,0xc9, +0xac,0x4b,0x28,0xe6,0xc4,0x65,0x98,0x47,0xf6,0x37,0xa9,0x57, +0xec,0x2b,0x75,0x33,0xe6,0x6f,0xbb,0x5f,0x75,0xbf,0x6d,0xc5, +0x81,0x6e,0x02,0x81,0x95,0xc2,0x12,0x5c,0xc9,0x8e,0x87,0xe3, +0x0b,0xf2,0x78,0xf4,0xc5,0x1f,0x5d,0xf7,0xad,0xaa,0x79,0xdd, +0xed,0x6b,0x97,0xed,0xd6,0xe5,0x04,0x45,0x9a,0x52,0xd2,0x5f, +0xef,0x10,0x97,0xd0,0x98,0x64,0x45,0x75,0x92,0x2e,0x59,0x45, +0xab,0x66,0x02,0x1f,0xf9,0x8f,0x55,0xa8,0x8c,0x27,0x0e,0xdf, +0x84,0x41,0xf5,0x61,0x49,0x27,0x07,0x61,0xc1,0x3f,0xb5,0xc3, +0x6a,0x6c,0xe0,0xff,0xd4,0x0e,0x7f,0xff,0x7b,0xeb,0xf7,0xf1, +0x13,0xb5,0xc3,0x43,0x02,0xcf,0x5c,0x8a,0x9e,0xa8,0x1d,0x9e, +0xf2,0xdf,0xda,0xe1,0x84,0xc8,0xe8,0x30,0xba,0xd8,0x23,0xe5, +0x4e,0xff,0x0c,0xeb,0xfa,0x71,0x1d,0xfc,0xcc,0x3c,0xa3,0x80, +0xf6,0x7f,0x15,0x07,0x7b,0xfe,0x5f,0x8a,0x83,0x8b,0x77,0x64, +0xed,0xe5,0x84,0x8d,0xb8,0x81,0x40,0x2c,0x0c,0x4a,0xd4,0x13, +0x83,0xf8,0x9c,0x40,0x31,0x1d,0x17,0x53,0x03,0x72,0x9b,0x10, +0x36,0x99,0x0a,0x7b,0x28,0x81,0x8f,0x30,0x09,0x9d,0x10,0x76, +0xf1,0x78,0xe2,0xd0,0x4d,0xa8,0x99,0x10,0x96,0x2e,0xbe,0x68, +0x12,0x7a,0x36,0xf4,0xec,0xf1,0x73,0x1c,0x0d,0x24,0x2b,0xd9, +0xb4,0xb2,0xe4,0xf2,0xf8,0x62,0xed,0x44,0x3e,0xca,0x35,0xfc, +0xb0,0xf4,0x76,0x6d,0x1a,0xfa,0x30,0xae,0x5f,0xba,0x9d,0x77, +0x57,0xf2,0x3b,0xe7,0x77,0xde,0xf7,0xfc,0x45,0x3d,0x3e,0xf7, +0x42,0x4e,0x74,0xce,0x85,0xd3,0xb8,0x2b,0x04,0x3f,0xb5,0x5f, +0xd4,0xee,0xc8,0xb7,0x82,0x5c,0x3a,0xcc,0xbf,0x08,0x3a,0xf7, +0x2f,0xdd,0x8c,0xbf,0x9a,0xc8,0x89,0xb3,0x24,0xaa,0x5e,0x3d, +0xb9,0x37,0x4c,0x63,0x7a,0x7a,0xa3,0xb2,0x30,0x9f,0x4d,0x8d, +0x4d,0x8d,0x49,0x8d,0xe1,0xf0,0x5a,0x22,0xb9,0x50,0xf2,0x65, +0x59,0xb9,0x22,0x6c,0x01,0x07,0x3c,0xc1,0x1e,0x8c,0xdc,0x77, +0x42,0xed,0x14,0x27,0xac,0x0d,0x91,0x26,0x50,0x43,0x27,0x30, +0xbe,0x02,0x8e,0x90,0x62,0xfb,0x72,0xfd,0x1c,0xf3,0xa6,0x22, +0x3e,0xa0,0xc3,0xa9,0xdf,0xb3,0x9a,0x83,0x17,0xe2,0x43,0x69, +0x56,0x35,0x74,0x56,0xe3,0x0c,0x50,0x47,0x7b,0xaa,0x1b,0x4e, +0xd1,0x09,0xd6,0xc0,0x66,0x32,0xf0,0x1c,0x92,0x31,0xae,0x13, +0xae,0x77,0x2c,0x62,0x4b,0x4b,0xdc,0xf3,0x2d,0x0b,0x5c,0x32, +0x14,0x5c,0x9c,0xab,0x8f,0x55,0x05,0x94,0xfa,0x2b,0xa0,0x75, +0x6b,0xf7,0x18,0xa4,0x77,0x63,0xfa,0x98,0xae,0x1a,0x66,0x8f, +0xe9,0xa8,0xe1,0x97,0x46,0xf0,0xa5,0xda,0xe0,0x18,0x64,0x1f, +0x30,0x35,0xc4,0x7a,0x53,0xa8,0x37,0xc1,0x28,0x4c,0xa6,0xb6, +0x22,0x9a,0x1b,0x0b,0xe6,0x34,0x5a,0xa9,0x30,0x99,0x26,0x72, +0xa0,0xc4,0x34,0x27,0x66,0x56,0x29,0xc3,0x07,0xa0,0xd2,0xc5, +0x8e,0xbf,0x15,0x36,0x93,0xee,0x23,0x3d,0x2e,0xed,0x87,0x2b, +0x9b,0x78,0xab,0x9a,0x43,0x35,0x66,0x05,0x1c,0x10,0xaa,0x21, +0xbd,0x66,0xdd,0x2a,0x9d,0x52,0x57,0x73,0x7e,0xc8,0xb5,0xdb, +0x7d,0xd8,0x92,0x03,0x01,0x96,0x13,0x6d,0x3c,0x30,0xc4,0x42, +0xa4,0x36,0x19,0x02,0x53,0x6d,0x16,0x2f,0x4a,0xb1,0xed,0xc0, +0x08,0xbd,0x73,0x88,0x8c,0x80,0x29,0x0d,0x0b,0xee,0xd4,0xd0, +0xae,0xdd,0xbb,0x0d,0x53,0xeb,0x9e,0x5a,0x94,0xf0,0x96,0xeb, +0xf7,0xcc,0xd5,0xd2,0xe0,0xe0,0xe1,0xf7,0xa4,0xd3,0xb3,0xd1, +0xa3,0xd1,0xb9,0xba,0x8e,0xb7,0xab,0x30,0xa8,0xb4,0xcf,0xa5, +0x9e,0xf0,0x33,0xd9,0x61,0x92,0x51,0x99,0x5a,0x95,0x58,0xb5, +0x3f,0x89,0x8f,0x74,0x08,0xb1,0x3b,0xea,0x40,0x3d,0xa1,0xf8, +0xa3,0x70,0x59,0xf8,0x91,0x11,0xbf,0xc3,0x49,0x44,0xef,0xb1, +0xfa,0x3d,0xbd,0x2e,0x2b,0x47,0x7e,0xc0,0xf8,0xfa,0xae,0xfe, +0x1d,0x1c,0x18,0x21,0x43,0xc0,0x52,0xf8,0x0c,0x69,0x82,0x33, +0x4d,0x34,0xfe,0xff,0xcb,0x93,0x21,0xc6,0x83,0x2a,0x01,0x2f, +0xfa,0xf7,0x5e,0x12,0x3f,0x0b,0x8c,0x90,0x16,0xd4,0xb8,0x07, +0x2a,0xcd,0xa8,0x72,0x93,0x86,0xdd,0x14,0x31,0x02,0x53,0x60, +0x92,0x3a,0x2e,0xb4,0x82,0x85,0xbb,0x71,0x87,0x25,0xac,0x63, +0x5d,0xec,0xb4,0x0e,0x6f,0x71,0x2d,0xb0,0xe1,0x6b,0xd3,0xab, +0xb3,0xca,0x72,0xaf,0xf8,0x17,0xfa,0x15,0x7a,0x55,0x57,0xf1, +0xde,0x79,0xde,0xb9,0xde,0xd9,0x05,0xd9,0x39,0xb9,0x69,0x79, +0x1c,0xa8,0x32,0x29,0x81,0x99,0x81,0x39,0xc7,0xfc,0x7c,0xbc, +0xfd,0x5d,0x7c,0xab,0x5c,0xf8,0xca,0xfc,0xa2,0x82,0xbc,0x82, +0x0a,0xdf,0xda,0x80,0xda,0xa0,0x2b,0x4d,0xfc,0x8e,0x32,0xad, +0x2a,0x97,0x06,0x6e,0x7c,0x21,0x7e,0x47,0xbe,0x07,0x35,0x59, +0x20,0x86,0x8d,0xdf,0x66,0x65,0xe7,0x64,0x25,0x44,0x5b,0x94, +0x1f,0x62,0xd1,0x0a,0x2b,0x09,0x4e,0x87,0x2c,0x0a,0x65,0x84, +0xfb,0x6b,0xc9,0x01,0x51,0xfe,0xba,0x54,0x69,0x31,0x95,0xa8, +0xe3,0xda,0x9b,0x2c,0xac,0x45,0x96,0xec,0xc6,0xb5,0xf7,0x58, +0x71,0xf7,0x29,0x02,0xd3,0x71,0x00,0xe9,0xe7,0x6a,0x42,0xc8, +0x69,0xd8,0xa9,0x8f,0xcd,0xf8,0x21,0x93,0x66,0x26,0xf7,0x8a, +0x69,0x96,0xb6,0xb5,0x9f,0xb3,0xf1,0xb1,0x17,0xe2,0xce,0x28, +0x81,0x2f,0xbe,0x57,0xd4,0x8c,0xce,0x30,0xe5,0xf8,0xe5,0xa8, +0x98,0x88,0x30,0x05,0xfc,0x22,0x86,0x68,0x5a,0x1c,0xf0,0xdc, +0xe0,0x96,0x6f,0xce,0x3f,0x29,0x7f,0x50,0x7d,0xad,0x9d,0xba, +0xc3,0x0c,0xd9,0x67,0x64,0x14,0x9c,0xf6,0xf7,0x8d,0x4a,0x6d, +0xb4,0x77,0xde,0xd7,0xdf,0x85,0x4e,0xf7,0xf5,0x76,0xe1,0x7a, +0x13,0x58,0xbf,0x9f,0xc5,0x03,0xb7,0x89,0x55,0x83,0x61,0x93, +0x51,0xb9,0x8b,0x25,0xdf,0xeb,0xd4,0xea,0xd0,0x66,0xcd,0xc9, +0x4c,0xc4,0x0c,0x9a,0xf2,0x0f,0x3c,0x84,0xb3,0xf0,0x4c,0x2c, +0xc2,0x67,0x10,0xb4,0x03,0x1b,0x0c,0xa1,0x98,0x75,0x3b,0xb8, +0xd0,0x02,0xf5,0xac,0x32,0x75,0x79,0xf0,0x1e,0x80,0x69,0xc3, +0x49,0x3f,0xd3,0xf4,0x20,0x65,0xd9,0x5b,0x23,0xb0,0x3f,0x98, +0x3d,0xc0,0xe3,0xfe,0x8e,0x65,0x4d,0xee,0xc3,0x9c,0xb8,0x08, +0xae,0x12,0xf3,0x56,0x8d,0x9e,0x43,0x35,0x4e,0x56,0xfc,0xb0, +0xfd,0xb0,0x59,0x97,0x29,0x27,0xc8,0x86,0x88,0xa8,0xf2,0x5c, +0x50,0x61,0x70,0xf6,0x34,0x15,0x51,0xe5,0x25,0x8b,0x37,0xc5, +0x20,0x2a,0xda,0xe4,0x56,0x98,0x55,0xf0,0x46,0x3f,0x93,0xf7, +0xc4,0xa9,0xf6,0xf8,0xfe,0xc1,0xc5,0x14,0xd3,0x25,0x41,0x24, +0x89,0x4a,0x09,0x8f,0x0e,0x8f,0x3c,0x1e,0xc1,0x9f,0x8e,0x4e, +0x1c,0xbe,0x34,0x10,0xf3,0x48,0xa1,0xf3,0x6a,0xdd,0x70,0xe5, +0x6d,0xfb,0x6a,0xde,0x5b,0xcf,0xcb,0xc2,0xdd,0x86,0xcb,0x60, +0xa1,0xdd,0x00,0xe9,0xc3,0xcd,0x38,0x82,0x1f,0xa3,0x1c,0xee, +0x56,0x6a,0xb6,0xbd,0xf9,0x67,0xe5,0x8b,0xac,0x17,0x0a,0x17, +0x26,0xde,0x11,0xdc,0xc5,0xe5,0x7c,0x4b,0xb5,0x9c,0x6c,0x1a, +0x5d,0x99,0x2d,0xa8,0x75,0x0f,0x36,0x34,0xe3,0x86,0x9b,0x74, +0x5d,0xa4,0x88,0x17,0xa9,0x21,0x4c,0x53,0xc7,0xe5,0x56,0xb0, +0x7c,0x37,0xee,0xb1,0xa4,0x19,0x9a,0xb3,0xed,0x41,0xa7,0x8d, +0xae,0x57,0xac,0xf9,0xba,0xf4,0x9a,0xec,0x8a,0xdc,0x42,0xff, +0x22,0xff,0x42,0xaf,0x9a,0x4a,0xfe,0x48,0x9e,0x77,0x8e,0x57, +0x76,0x61,0x4e,0xee,0x84,0x21,0xa8,0x33,0x29,0x01,0x59,0x47, +0x73,0x8f,0xfa,0xfa,0x7a,0xf9,0xb9,0xf8,0x57,0xba,0xf0,0x55, +0x79,0x25,0x05,0xf9,0x05,0x95,0xbe,0xf5,0x01,0xf5,0xc7,0x0a, +0x9a,0xf8,0xad,0xe5,0x87,0xaa,0x9c,0x1a,0xb8,0x46,0xc1,0x8c, +0x2a,0x5e,0x69,0x88,0x15,0x94,0xe6,0x51,0x65,0x2b,0x5d,0x67, +0xc5,0x49,0xe1,0xe4,0x1c,0x4e,0x8d,0x5a,0xe9,0xb3,0xad,0xdd, +0x9f,0x2f,0x7c,0x19,0xff,0x46,0x3a,0x03,0x22,0x7c,0xb3,0x9c, +0x5a,0xc0,0x66,0x6a,0x01,0x9b,0x27,0x2c,0x60,0xf3,0x3d,0x16, +0xde,0xc3,0x27,0x54,0xef,0x3b,0xf4,0xb1,0x09,0x3f,0x95,0xf4, +0xfe,0xe6,0x7f,0xe9,0xfd,0x32,0xd5,0x7b,0x08,0xbe,0x57,0xd8, +0x82,0xde,0x30,0x39,0xe4,0xf2,0xc9,0x09,0xbd,0x2b,0x45,0x93, +0x03,0x96,0xea,0x9e,0xeb,0xdc,0xf3,0xcc,0xf9,0xaf,0xcb,0x1e, +0x57,0x5d,0xef,0xa0,0x38,0x49,0x41,0x96,0x47,0x1c,0xf3,0x6d, +0x72,0x1c,0x53,0x8f,0x38,0xf0,0xb5,0x21,0x8d,0x81,0xd5,0x14, +0x27,0x95,0x8b,0x33,0xc9,0xc5,0x63,0x17,0x8f,0xc5,0x06,0xb5, +0x66,0xf2,0x41,0xb7,0xfc,0x6f,0xfb,0xf6,0x5b,0x06,0xf1,0xc9, +0x47,0x92,0x26,0x68,0xe4,0x2c,0x4e,0x9b,0x4f,0x14,0x20,0x33, +0xfd,0xc0,0x99,0x15,0xf2,0x5e,0xda,0xae,0x9a,0x2e,0x3a,0xc7, +0x72,0x03,0xf3,0x26,0x0a,0x90,0xc7,0x0a,0x6f,0x48,0x34,0x72, +0x07,0x3d,0x0e,0xfc,0x87,0x46,0xce,0xed,0x1f,0x1a,0x39,0x7d, +0x5f,0x7b,0x9f,0xc3,0x7e,0x6e,0x47,0xce,0x1f,0x39,0x77,0xe4, +0x5d,0x01,0x72,0xcf,0x04,0x8d,0xdc,0x86,0x3e,0x61,0x1b,0x5b, +0x14,0x53,0x1c,0x5b,0x78,0x91,0x13,0xe2,0x70,0x0e,0x79,0xfc, +0x98,0xa2,0xb1,0xc0,0x5b,0x10,0xdf,0x81,0xf1,0x7f,0xea,0xcf, +0xc7,0x68,0x53,0x88,0xde,0x87,0x5e,0x78,0x0b,0xfe,0xbd,0x4d, +0x5c,0x60,0x22,0x2c,0x40,0x75,0x5c,0xcf,0xa6,0x53,0x34,0x36, +0x87,0x69,0xcc,0x90,0x7a,0x5e,0xed,0x06,0xa6,0x93,0x1a,0x0a, +0xbc,0x26,0x1b,0x71,0xcb,0x37,0x2c,0x78,0x6f,0x24,0xdf,0xc0, +0xce,0x8d,0x2c,0x06,0x48,0x68,0x6c,0x0b,0x45,0x63,0xde,0x12, +0x1a,0xdb,0x49,0xd1,0xd8,0x03,0x15,0x92,0xbd,0x37,0x75,0x4b, +0xc2,0xf6,0xce,0x4c,0x3e,0xf2,0xee,0xb1,0xaf,0x03,0x6f,0x70, +0x78,0x19,0x9b,0x48,0xc5,0xd3,0xcc,0xdf,0x13,0xde,0xd5,0x1c, +0x1f,0x5b,0xe7,0xba,0x85,0x13,0x34,0xfe,0x20,0xad,0x6e,0x0d, +0x0e,0x35,0x76,0x75,0x35,0xbc,0x7d,0xbd,0x75,0xad,0xb5,0x84, +0xda,0x26,0xf8,0x5c,0xf7,0x60,0x96,0x74,0x54,0xf5,0x4b,0x43, +0xf8,0x52,0x75,0xe8,0x2e,0x64,0x49,0x97,0xf4,0x1e,0x1a,0x85, +0x21,0x69,0x7c,0x1a,0xe9,0x11,0xb7,0xc6,0xb2,0x8f,0xe0,0x36, +0x3c,0x18,0xdf,0x89,0x0f,0xa0,0x67,0x3b,0x7b,0x46,0x5c,0x6a, +0x28,0x28,0xb2,0xf6,0x7b,0xf0,0x13,0x1b,0x3c,0xea,0x9c,0xad, +0xc7,0x43,0x49,0x3b,0xc8,0xb5,0xe6,0xc1,0x54,0xee,0x12,0x53, +0x40,0xc3,0xe3,0x67,0x16,0x50,0x6a,0x96,0xd9,0xcf,0xe3,0xb1, +0x4a,0x9c,0xd5,0x68,0x73,0x87,0x83,0x28,0x78,0x44,0xc4,0x9e, +0xaf,0x85,0x1e,0x06,0x15,0xa7,0x6d,0x10,0x7b,0x9e,0xb1,0xf2, +0x42,0xb2,0xb0,0x85,0x3c,0xae,0xff,0x7a,0xf8,0xde,0xed,0x21, +0xf3,0x7e,0xb3,0x16,0xcb,0x9a,0x56,0xde,0xb2,0x49,0xbf,0x55, +0xb7,0xa5,0xb3,0xab,0xb1,0xbf,0xac,0xd7,0xa4,0x84,0xf7,0x34, +0xb6,0x35,0x34,0x35,0x3e,0xd0,0xb1,0xbf,0x59,0xaf,0xdc,0xc5, +0x82,0xef,0x73,0x1d,0xb1,0x1d,0xb1,0x50,0x3f,0xb4,0xd3,0x60, +0xb7,0x23,0x17,0x12,0x45,0xda,0x71,0xc9,0x0f,0xb0,0xa4,0x4d, +0xba,0xae,0xef,0x10,0x97,0x88,0x21,0xf0,0x9a,0xc5,0x0f,0xce, +0x6e,0x39,0x69,0xa0,0xa4,0x17,0x15,0x12,0x66,0x3c,0x4b,0x4d, +0x62,0x28,0xbc,0xc5,0x3c,0xb8,0x72,0xe5,0x49,0x92,0x72,0xfc, +0x58,0xec,0xcf,0xb0,0x4a,0x11,0xd7,0xfd,0xc6,0xa0,0x0e,0x18, +0x92,0x1f,0x80,0x5f,0xc5,0x22,0x8f,0xf3,0xfe,0x3b,0x5a,0x46, +0x7e,0x03,0x7e,0x31,0x2b,0xc4,0xe2,0x09,0x72,0xf5,0x6e,0xd7, +0xb7,0xa5,0x7f,0xe8,0xe7,0xf0,0x5e,0xab,0x2c,0xb7,0xea,0x69, +0x18,0xdc,0xb0,0x7a,0x70,0xe4,0xb9,0x91,0x1f,0x5f,0xb2,0xa2, +0x7d,0xe3,0xb0,0xaa,0xa6,0xa6,0x9a,0xe9,0x1e,0xa7,0x52,0x23, +0xfe,0x5e,0xed,0xfd,0xae,0xd1,0x1b,0x43,0x07,0x6f,0x19,0xdd, +0xb2,0x2b,0xef,0xe5,0x35,0x6a,0xf7,0xb7,0xeb,0x0d,0x71,0xf8, +0x77,0x12,0x89,0x6a,0x0e,0xee,0x0c,0xa9,0xb7,0x0b,0xe7,0x53, +0x6d,0x52,0xcd,0xe2,0x2d,0x38,0x0a,0x77,0x15,0x49,0x8a,0x7e, +0xb2,0xc6,0xe5,0xdd,0xad,0x34,0x5c,0x5f,0x0d,0x79,0x72,0xbc, +0x9b,0x43,0x3b,0xec,0x22,0xf9,0x8f,0x32,0x24,0x36,0x44,0xe3, +0x38,0xfe,0xe4,0xe2,0xa0,0xf9,0x7e,0xbb,0x38,0x98,0x09,0x59, +0x24,0x5e,0xed,0xe2,0xca,0xe8,0x8d,0x9d,0x09,0xfc,0xb9,0x87, +0x27,0x7e,0x8f,0xb8,0x45,0x6d,0xdb,0xf0,0x38,0xc1,0x79,0xd9, +0x28,0x5f,0x3c,0xb7,0xfe,0xe7,0xae,0xb1,0x91,0xf6,0x7b,0x5c, +0xab,0xb8,0x8e,0xbd,0x52,0x98,0x5b,0x9c,0x59,0xc2,0x09,0x7e, +0x3d,0xe2,0xc6,0xef,0xe1,0x55,0x37,0xbe,0x7a,0x26,0x28,0x76, +0x8b,0x8a,0xcf,0x35,0xd7,0x8b,0xf2,0x46,0x82,0xfc,0x06,0x7c, +0x65,0x04,0xaf,0x56,0x8b,0x8b,0x0c,0xe1,0x19,0xb3,0x77,0xd9, +0x9c,0x6d,0xb8,0xf6,0x40,0x99,0x31,0x7f,0xb5,0x70,0xa8,0xac, +0xb7,0xa6,0xcb,0x74,0xc0,0x66,0xd4,0x19,0xa7,0xda,0xa2,0x82, +0x07,0xae,0x0b,0x48,0xd7,0xe1,0x61,0x7f,0x01,0xac,0xac,0x91, +0xea,0x57,0xa6,0x1b,0xc2,0xdc,0xc3,0xb0,0xd9,0x87,0x1b,0x97, +0x83,0x7b,0x24,0x3b,0x43,0x4e,0x98,0xc5,0x18,0x69,0xa9,0x9b, +0xae,0xb3,0xdf,0x59,0xb5,0xbf,0x59,0xbf,0x8b,0x93,0xef,0x94, +0xf9,0x13,0x61,0x06,0x13,0x6c,0xe8,0xbc,0xda,0x43,0x9f,0x83, +0x65,0x3b,0x99,0x43,0x67,0x16,0x46,0xed,0x52,0xd2,0x3e,0x19, +0x78,0xc2,0x6e,0xd6,0x5e,0xe9,0x4d,0xf3,0x35,0xe6,0xab,0x82, +0xdc,0x5f,0x13,0x95,0x63,0xae,0x44,0x17,0x44,0x17,0x71,0x14, +0x46,0xc5,0xd1,0x9c,0xc9,0x1f,0xb7,0x55,0xb5,0xe1,0x11,0x58, +0x1b,0x16,0x1f,0x11,0x1d,0x49,0x61,0x54,0x98,0xdc,0x29,0x26, +0xa6,0xeb,0x42,0x67,0xa3,0x22,0x30,0xf8,0x31,0x9b,0x55,0x5d, +0x70,0x9d,0x66,0xdb,0x82,0x51,0xff,0xdf,0x9f,0x31,0xc2,0x4d, +0x71,0x31,0x19,0xe9,0xb8,0x75,0xaf,0xbe,0xdb,0xa4,0x9a,0x77, +0xd0,0x53,0xdb,0x6d,0xec,0xc0,0x89,0x1a,0xe2,0x3c,0x22,0x8c, +0x6a,0x8e,0xef,0xba,0xda,0x23,0x33,0x31,0xbc,0x2a,0xdb,0xa5, +0x29,0x8e,0xd2,0xdc,0x44,0x50,0x24,0x56,0x3d,0x7a,0x03,0xc6, +0x4d,0xb6,0x4e,0x7c,0x87,0x6d,0xbf,0x56,0x93,0x21,0x87,0xcb, +0x30,0x81,0x3c,0x69,0xf8,0xfd,0xfe,0xe0,0xa8,0x4d,0x2d,0x6f, +0xa0,0xbb,0x6c,0xe7,0xb6,0xc3,0x52,0xd7,0x20,0xd9,0x41,0x52, +0x60,0x9f,0x67,0x93,0x6b,0x29,0xe1,0xda,0x9a,0xa3,0x15,0xfe, +0x95,0x9c,0xd4,0xef,0xa7,0x86,0x49,0x2d,0x4c,0x2e,0x8a,0x2f, +0x32,0xa0,0x40,0x78,0xbd,0xf1,0x36,0xd5,0x03,0xef,0x80,0x70, +0x6d,0x51,0x23,0x27,0x58,0x74,0x91,0xe4,0xa2,0x04,0xfa,0x4b, +0x09,0xf6,0x6e,0xb2,0xdd,0xaa,0x73,0xa0,0xd5,0x85,0x2f,0xae, +0x28,0xa8,0xc9,0xa9,0xe5,0x5e,0x32,0xef,0xbe,0xad,0x4b,0xfa, +0xb6,0xc0,0xca,0x00,0x0a,0xdc,0x75,0xba,0x98,0x71,0x05,0x51, +0x8d,0x9c,0xfe,0x01,0x96,0xf5,0xe2,0x32,0xf8,0x48,0x8f,0x82, +0x95,0x43,0x06,0xb0,0x83,0x39,0x86,0xac,0x3a,0xbe,0x8f,0x93, +0xe7,0x36,0x58,0xf2,0x20,0x07,0x5c,0xfd,0xb3,0x38,0xea,0x16, +0xe3,0xc4,0x95,0xfd,0x20,0x30,0x71,0xb1,0x31,0x52,0xa2,0xcd, +0xe0,0xbc,0xfa,0x3a,0x7c,0x0f,0xe6,0x45,0x26,0x45,0x45,0xd3, +0xc4,0x12,0x8e,0xd3,0xe7,0xd0,0x0d,0x8d,0x46,0x43,0xb2,0xa9, +0xe2,0x9a,0xf1,0xa9,0x2c,0xbc,0x91,0xa8,0xfd,0xe5,0xb0,0x11, +0xe4,0x58,0x68,0xc4,0xad,0x04,0x3f,0xa0,0xe3,0x0f,0xa4,0xf1, +0x6e,0x82,0x1f,0xd2,0xf1,0x87,0x74,0x95,0x0d,0xc9,0xee,0x10, +0xc7,0x35,0xfb,0x17,0xed,0xd6,0xa9,0xb6,0xe2,0x9f,0xde,0xbe, +0x0b,0x6c,0xe5,0x73,0x0a,0xd0,0x30,0x90,0x58,0xdd,0xdd,0xf1, +0x97,0xee,0x2d,0x6b,0x37,0xbe,0x7f,0xef,0xdd,0x05,0x6d,0xdb, +0x39,0x31,0x0c,0xcc,0x48,0x3f,0xbe,0xd1,0x03,0x45,0xd6,0x1f, +0xd7,0x99,0xe1,0x17,0xeb,0x70,0x4a,0x89,0x36,0x9f,0x5f,0x9a, +0x59,0x9c,0x51,0xc6,0x89,0xfb,0x68,0x6c,0x34,0x12,0xfc,0x50, +0x87,0x2d,0x7a,0x90,0xfd,0x38,0xf9,0x3b,0x4e,0xf8,0x64,0x83, +0x54,0xfd,0xb6,0x6d,0x2e,0x2a,0xac,0x2c,0x35,0xe6,0x61,0xce, +0x5f,0x5f,0xfd,0x50,0x04,0x9f,0x4c,0x38,0x01,0xf9,0x47,0xeb, +0x61,0x19,0x32,0xd2,0x99,0xd8,0x59,0xaf,0xb6,0xfe,0xee,0x48, +0xa7,0x27,0xa6,0x89,0x8f,0x89,0x30,0x19,0x66,0x89,0x93,0x59, +0x70,0xc3,0x25,0xa4,0x07,0x4a,0x0d,0x07,0x85,0xe5,0xe2,0x7c, +0x71,0x39,0x0b,0xdf,0xc3,0x9f,0x04,0x4f,0x62,0x29,0x9c,0x9c, +0x68,0xf5,0x67,0x47,0xb2,0x3d,0xb2,0xdc,0x33,0x9d,0x69,0x16, +0x71,0xbc,0x30,0x38,0x3f,0x38,0x7f,0xa2,0xd5,0x5f,0x3d,0x93, +0x94,0x19,0x9f,0x75,0x39,0xcb,0x28,0x95,0x77,0xd7,0x30,0x3d, +0xa4,0x6e,0x5a,0xef,0xc0,0x57,0x15,0x55,0x94,0x15,0x56,0x72, +0x82,0x55,0x3b,0x49,0xc8,0x8a,0xcf,0x8a,0xcb,0x32,0x4a,0xe2, +0x03,0xf4,0xdc,0xf4,0xac,0xcc,0x9b,0xdd,0xf9,0xec,0xdc,0x8c, +0x82,0xb4,0x02,0xee,0x27,0x26,0xc7,0x23,0xd3,0x3d,0xcb,0xb9, +0xf3,0x7f,0xbe,0x4d,0xb7,0x9d,0xd9,0x82,0xeb,0xc8,0xf6,0xbd, +0x2a,0x3a,0x8b,0x8c,0x29,0x6e,0xfe,0x1e,0x12,0x3a,0x30,0xe1, +0xb1,0xce,0x36,0x6c,0x31,0x85,0x96,0xd5,0x22,0x63,0x2c,0xa8, +0x31,0xc8,0xeb,0xe1,0x52,0x4b,0xdc,0x6c,0x9b,0x65,0xc2,0x0f, +0xa5,0x0f,0x65,0x0c,0x66,0x72,0xd8,0x35,0xdc,0x24,0xd8,0x5a, +0x8f,0x08,0x93,0xc4,0x65,0xec,0x48,0xfe,0xf0,0x95,0x81,0x62, +0x0e,0x9e,0x75,0x61,0x04,0xf3,0xa0,0xe9,0x56,0xdb,0x48,0x2f, +0x27,0xbe,0x11,0x37,0x90,0x27,0x82,0xed,0x56,0x56,0xb4,0x35, +0x23,0x82,0xed,0x06,0xd1,0x96,0x66,0x59,0x99,0x82,0x2d,0xc9, +0x64,0xbf,0xca,0xbe,0x9e,0xdf,0x5d,0x36,0xe8,0x3a,0xe6,0xfd, +0xc2,0x2f,0xab,0x8d,0xdf,0x96,0x7d,0x28,0xc7,0xb4,0xa0,0xa5, +0xaa,0xb2,0xa9,0xa0,0x87,0xbb,0xd3,0x8a,0xfd,0x4c,0x42,0x7a, +0x5c,0xc6,0xa5,0x34,0xb3,0x14,0xde,0x4b,0xd5,0x58,0x7d,0xaf, +0x51,0xc5,0x61,0xbe,0x30,0x27,0x3f,0x2f,0x27,0xff,0x8a,0x5b, +0xe9,0x91,0x2a,0x1f,0x4b,0x3f,0xfd,0xa3,0x7b,0x83,0x92,0xbc, +0x78,0x33,0x47,0x1c,0xb1,0x81,0x11,0x33,0x71,0xb5,0x95,0xb0, +0xda,0x64,0x62,0x6c,0x28,0x32,0xd6,0x02,0xa3,0x2b,0xae,0x32, +0x17,0x56,0xad,0x1c,0xfc,0x51,0xd8,0xd9,0x26,0xee,0x1c,0x10, +0x66,0x36,0x89,0x33,0x7b,0x60,0xec,0xa7,0xb7,0xad,0x73,0x7e, +0x60,0xc6,0xcb,0xe0,0x67,0x62,0x25,0xe8,0x34,0xb3,0xf0,0xc1, +0x46,0x12,0x97,0x20,0x07,0xd6,0x8c,0xaf,0xb5,0x87,0x8b,0x9d, +0xa7,0x75,0x91,0x4b,0xa9,0x47,0x0d,0x87,0x6b,0x71,0x3f,0x81, +0xed,0xe2,0xe4,0xc5,0xec,0xae,0x70,0x73,0x07,0x23,0xa5,0x16, +0xb7,0xca,0xd6,0x94,0x8e,0xb8,0x26,0x05,0x88,0x07,0xa9,0x49, +0x6d,0xec,0x63,0x56,0x26,0x8f,0xe7,0x89,0x19,0x26,0xb6,0xb3, +0xcb,0xa7,0x41,0xa2,0x09,0x26,0x32,0xf2,0x90,0x27,0x33,0x24, +0x79,0x4e,0x39,0x87,0x73,0xec,0xa8,0xf5,0x07,0x95,0x07,0x15, +0x1f,0x2d,0xe1,0x60,0x4b,0x27,0xd6,0x31,0x29,0x79,0x89,0xf9, +0xf1,0xf9,0x86,0xa9,0xbc,0xdb,0x76,0x93,0x3d,0x7b,0x75,0x1a, +0xa8,0xba,0x4a,0x2b,0xaa,0x8b,0x6a,0x39,0xc1,0xb2,0x93,0x24, +0xd1,0x5f,0x5d,0xce,0x37,0x4c,0xe6,0xfd,0x76,0x39,0xec,0x31, +0xd0,0x6e,0x76,0xe5,0x0b,0x4b,0xf2,0x2b,0xb2,0xab,0xb8,0xef, +0x99,0x6c,0xf7,0x2c,0x37,0xaa,0xfc,0x2c,0x3e,0xa4,0xe8,0x78, +0x41,0x10,0x85,0xee,0x3a,0x9d,0x8c,0xa8,0x8a,0x19,0x44,0x2a, +0x0a,0x90,0x4b,0x7a,0x93,0xe1,0x4d,0x0d,0xcb,0xc1,0x15,0x4f, +0x84,0x63,0xc1,0xb9,0x04,0x03,0x1e,0xd8,0x0b,0x30,0x2d,0xe6, +0xaf,0x8b,0xdc,0x72,0x71,0x89,0x9e,0xb0,0x64,0x01,0xb6,0x61, +0xdf,0xd5,0x06,0xa1,0xde,0x76,0x04,0xfa,0xf0,0xda,0x1f,0xc2, +0xe6,0x7e,0x71,0x33,0x8b,0x6d,0xe2,0x14,0x02,0x4b,0x85,0x7a, +0x5c,0x4a,0x17,0xc6,0x53,0xd9,0x5c,0xa2,0xc7,0xa2,0x62,0x54, +0x8c,0x03,0x7c,0x7e,0x59,0xce,0x83,0xb5,0x49,0x0d,0xee,0x55, +0x02,0x6f,0xa6,0x3c,0x39,0xa9,0x4c,0xb9,0x8c,0x35,0x49,0x96, +0x33,0xa7,0x80,0xdc,0xff,0xd4,0xa5,0x4c,0xe5,0x42,0x16,0xb4, +0x12,0xcf,0xd5,0xa2,0x66,0x84,0x5c,0x0f,0x9c,0x66,0x4f,0xfb, +0x46,0xfa,0x9c,0x38,0xd6,0x11,0xca,0x27,0x16,0x24,0x55,0x5d, +0x2a,0xe1,0xca,0xb0,0xad,0x0b,0x32,0x1b,0x30,0xb3,0x55,0x07, +0x17,0xa0,0x0f,0x06,0xb1,0x78,0x24,0x14,0xd7,0x1f,0xc0,0x99, +0x4a,0x1d,0x6e,0x72,0xb7,0x60,0x51,0x1a,0x6c,0x85,0x48,0x45, +0x50,0x97,0xb6,0xb2,0xf5,0x49,0x54,0xda,0xa9,0xf3,0x61,0x27, +0xc2,0x29,0xc6,0x83,0xd9,0x30,0xa9,0x1b,0x27,0xbd,0xeb,0xef, +0xf6,0x91,0x11,0x70,0x4c,0x38,0xd2,0x25,0xb5,0x70,0x2b,0x7e, +0x52,0x63,0xce,0x5f,0x7d,0x9d,0xf7,0x67,0xac,0x44,0x3b,0x9c, +0xd5,0x2b,0xc4,0xfd,0x43,0x3b,0x7c,0x15,0x57,0x57,0x56,0xcb, +0x09,0xa3,0xf8,0x11,0x81,0x50,0xfa,0x44,0x42,0x59,0xd0,0x85, +0xd9,0x04,0x67,0xf7,0xc2,0x6c,0xa6,0xcd,0x80,0xf4,0xc2,0x1c, +0x03,0x16,0xf5,0x1c,0x88,0x3e,0xce,0xee,0x63,0x41,0x7b,0x26, +0xcc,0xd1,0xc7,0x39,0x0c,0xd8,0x6f,0x22,0xa2,0x1d,0xae,0xd3, +0xb3,0x12,0x7a,0x9b,0x1d,0x18,0x7c,0x04,0x1c,0x41,0x6e,0xa3, +0xd4,0x09,0x4e,0x61,0xa2,0x13,0xdc,0x33,0xe4,0xd8,0xd6,0x99, +0xc0,0xbd,0x9c,0x68,0x08,0x67,0x29,0x9d,0xa7,0xdd,0x82,0x9f, +0x89,0x77,0x7b,0x84,0x8c,0xb1,0x71,0xad,0x3e,0x99,0xd6,0x43, +0xd1,0xd8,0x80,0x4d,0xd1,0x91,0x2b,0x67,0x5a,0x53,0xd3,0x5a, +0x95,0x85,0xf3,0xa8,0x00,0x5b,0x58,0x99,0x06,0x16,0x90,0x36, +0x3c,0x0d,0x73,0xd8,0xbb,0x97,0x6f,0x27,0x0e,0xa5,0x78,0xb5, +0xf2,0xf8,0xb1,0x27,0xee,0x0c,0x45,0x95,0xb3,0xc9,0xa6,0xfc, +0xd5,0xe8,0x5b,0x31,0xb7,0xe2,0x38,0x9c,0x85,0x11,0xe6,0x60, +0xcb,0xda,0x6b,0xee,0xb6,0x5e,0x68,0x7e,0xc5,0x88,0x87,0xc9, +0xfd,0x8f,0xdb,0x0a,0x7f,0x91,0xca,0xd1,0x7b,0xe0,0x60,0x1c, +0x53,0xb0,0xea,0x2b,0x4b,0x60,0xb5,0x0a,0x7a,0xf8,0x95,0xad, +0x9b,0x1a,0x6d,0x46,0xb8,0xaf,0x7a,0x48,0x41,0x79,0x7e,0x63, +0x6a,0x95,0x45,0x16,0x1f,0xea,0xe2,0x63,0xe5,0xe7,0xc1,0x61, +0xc7,0x75,0x92,0xe1,0x9f,0xeb,0x94,0x7c,0xa4,0x2d,0x9b,0x0f, +0x2d,0xf6,0xaf,0x3e,0x96,0xcb,0x9d,0x1e,0xef,0x26,0x7d,0x70, +0x4f,0x7f,0x40,0xd8,0x29,0x1e,0x12,0x77,0xb2,0xa0,0x27,0x55, +0xa3,0xcf,0x7c,0x03,0x33,0xdf,0x55,0xa3,0xcf,0x9a,0xc7,0xa2, +0xa1,0x39,0x41,0x16,0x67,0x02,0xcb,0x82,0xce,0x4c,0x9a,0x4e, +0xb1,0x38,0x8b,0xda,0x2c,0x23,0x1b,0x20,0xd8,0xc0,0x62,0x67, +0x10,0x2e,0x30,0xc2,0xf7,0x94,0xba,0xec,0xeb,0x7e,0xcc,0x7e, +0xd7,0xe3,0x65,0x3d,0xa6,0xbf,0x2b,0x92,0x78,0xf9,0x4f,0x93, +0x97,0x26,0x56,0x48,0x1a,0xef,0x22,0x16,0x8c,0xfb,0xc9,0x8b, +0x55,0xca,0xb2,0x04,0x1c,0x43,0x7f,0x16,0x87,0x22,0x70,0xf5, +0x52,0x5c,0xab,0xd4,0x62,0x2d,0xf7,0x17,0xec,0x4e,0x87,0xbd, +0x70,0x5b,0x11,0xb6,0x83,0xf9,0xb8,0x1d,0xbb,0xa7,0x28,0xe0, +0x9a,0x52,0x0b,0xd3,0x94,0x9a,0x56,0xaf,0x0c,0xbe,0xac,0x71, +0x86,0x9c,0x78,0x13,0xee,0x13,0x5c,0x05,0xfa,0xb0,0x4a,0xaa, +0xb1,0xd8,0x4f,0xa2,0x7b,0x2f,0x8c,0xdc,0x51,0x84,0x55,0x12, +0xad,0x05,0xfc,0x4d,0xd3,0x15,0x4f,0x13,0x0f,0x5b,0x17,0x47, +0x69,0x0b,0xb0,0x45,0x07,0xbb,0x59,0x4c,0x73,0xa1,0xd1,0x62, +0x2e,0xaa,0x2b,0x35,0x5b,0x3d,0xfd,0xb3,0xf1,0xdb,0x82,0xef, +0x14,0xa2,0x2f,0xc5,0x5e,0x88,0x3d,0xf9,0x0a,0x55,0xf8,0xd6, +0xc6,0x95,0xb0,0x38,0x72,0x22,0x55,0x50,0x38,0x1e,0x76,0x3a, +0x3a,0xa5,0xff,0x72,0x7f,0xcc,0x98,0x42,0x5f,0x5f,0x43,0x57, +0xcd,0x55,0x2e,0x67,0x7c,0x3d,0x19,0xbe,0x27,0x4c,0xdf,0x3d, +0x2c,0xfb,0x97,0x78,0x96,0x01,0x0f,0x14,0xa4,0xff,0xba,0x93, +0xfe,0xd7,0x83,0xd8,0x49,0xe8,0x60,0x23,0x76,0xb2,0xe3,0x69, +0xe0,0x48,0xb1,0xf9,0xe4,0xf0,0x95,0x6e,0xd2,0xce,0x61,0xe5, +0xf7,0x49,0x7f,0x44,0x4b,0xd8,0xfc,0x14,0xa6,0x12,0x7c,0x48, +0x3f,0xff,0x90,0x7a,0xe9,0x99,0xf4,0xa3,0x0f,0x71,0x23,0x75, +0x60,0xe7,0x65,0x67,0x48,0x62,0x5e,0x42,0xe1,0xe5,0xdc,0x43, +0x49,0xfc,0x09,0xf7,0x50,0xcf,0x30,0x5f,0x0e,0x4b,0xf1,0x85, +0x4c,0x0b,0x5e,0x30,0x9a,0x14,0x45,0x89,0x37,0x5e,0x08,0x37, +0x18,0xf1,0x06,0x45,0xbc,0xc2,0x8d,0x35,0xe2,0x0d,0x06,0x3f, +0x14,0x1b,0xc8,0x70,0x8f,0x6c,0xaf,0xe1,0xb0,0xb0,0x7b,0xbc, +0x8b,0x11,0xa6,0xe1,0x5a,0x82,0x03,0x7f,0xc0,0x00,0x33,0xb8, +0x80,0xfc,0x01,0xf7,0x16,0xb0,0xe2,0x0c,0x63,0x32,0x07,0x07, +0xde,0xb2,0xc2,0x94,0x99,0x70,0x6f,0x0e,0xde,0x63,0xe4,0xff, +0xa5,0x19,0x4d,0x50,0x1d,0x0c,0xcd,0x41,0xe5,0x8c,0xb0,0x95, +0x13,0x43,0x34,0x85,0xcd,0xcc,0x25,0x51,0xf1,0x06,0x6a,0xc0, +0x1e,0xd4,0xe2,0xc6,0x1b,0xce,0x12,0xba,0x9a,0x76,0x5e,0x83, +0xe5,0x59,0xf0,0x8b,0xc6,0x45,0x3e,0x08,0x1f,0xea,0xa2,0x32, +0xae,0xc1,0x75,0x14,0xd0,0xba,0x08,0xf9,0x24,0x1d,0xbf,0xe8, +0xc6,0x4f,0xe0,0x53,0x5c,0x52,0x4f,0x8d,0x91,0x3e,0x62,0x0d, +0x58,0xe8,0x23,0xf5,0x20,0x73,0x97,0x1a,0xff,0x4e,0x10,0xe8, +0xba,0x18,0x82,0x09,0xe3,0x87,0x9f,0x68,0xe3,0x12,0xfc,0x02, +0x57,0xd6,0xd2,0x28,0x4c,0x60,0x61,0x2b,0xf0,0x29,0xa0,0x40, +0xd7,0x9b,0x1c,0x7e,0x64,0x00,0x1f,0xa1,0x66,0x3f,0x68,0xc2, +0xa7,0xbd,0xf8,0xa9,0x20,0xc7,0x88,0x36,0x90,0x40,0x92,0x37, +0x75,0x6b,0xbc,0x50,0x2d,0xed,0xe2,0x37,0x8f,0x9a,0xde,0x0e, +0xb8,0xc9,0xed,0x65,0xfc,0x76,0x99,0x6d,0xc7,0x49,0xaa,0x25, +0x46,0xfc,0x9b,0x3b,0xc3,0x52,0xdb,0x8f,0x42,0x51,0x93,0xba, +0x98,0x5e,0x5c,0x0a,0xef,0xbf,0x96,0xc8,0xae,0x7e,0xa6,0x61, +0x7e,0xb3,0x01,0xcd,0x73,0x06,0x18,0xbd,0x48,0xdd,0x13,0x7a, +0xa7,0x12,0xb5,0x79,0xe0,0xd3,0x61,0x7e,0xd1,0xaf,0x52,0x93, +0x0f,0xab,0x70,0xb3,0x70,0xe3,0x48,0xee,0xeb,0x5b,0x24,0xa3, +0x27,0xb9,0x3f,0xb1,0xc7,0x22,0x99,0x8f,0xd0,0x09,0x37,0x0c, +0x36,0xe3,0xf0,0x4b,0x98,0x4f,0xf2,0x0d,0x0b,0xb6,0x25,0xeb, +0xb7,0xa7,0x4b,0x4d,0x3e,0xbe,0xf1,0xa5,0x90,0x0b,0x5a,0x64, +0x2e,0xc4,0xac,0x56,0xb7,0x5a,0xb7,0xd8,0xc3,0x9c,0x1f,0x72, +0xef,0x76,0xee,0x74,0xe0,0x84,0x84,0xf1,0xad,0xc4,0x25,0x32, +0xae,0x4a,0x19,0x6c,0xc0,0xa8,0x1b,0x8d,0x40,0xe5,0x41,0x2b, +0x5b,0xe1,0x51,0xe3,0xd9,0xec,0x55,0xdc,0xca,0x9b,0x96,0xd8, +0x95,0xba,0x96,0xb5,0x54,0xd6,0x35,0x96,0x35,0x1e,0x2e,0xe3, +0xdd,0x6d,0x6d,0x6c,0x6c,0xdd,0x02,0xf2,0x82,0xf2,0x8e,0xe7, +0x37,0x55,0x56,0x37,0x14,0xd7,0x39,0x96,0xf1,0xbe,0x2e,0xae, +0x0e,0x8e,0x6e,0x41,0xd5,0xe1,0x35,0x27,0xea,0x8c,0xc3,0xf9, +0x6c,0x9c,0xdc,0x3d,0xe7,0x8f,0x95,0x9c,0x38,0x9d,0x79,0xf4, +0xa0,0xf3,0x9b,0xdc,0xe7,0x1c,0x4d,0xb9,0xcd,0x60,0x05,0x1b, +0x6a,0xe9,0x6b,0xe1,0x64,0xe1,0x51,0x61,0x53,0xe7,0x52,0xe0, +0xea,0xc8,0x97,0x79,0x37,0xd9,0x97,0xb8,0x38,0x1f,0xb6,0x75, +0x36,0x76,0x2d,0xb5,0xe4,0x6b,0x0a,0x2a,0x0b,0x4b,0x8a,0x38, +0x9b,0x07,0x1b,0x58,0xdf,0xf3,0xfe,0xe7,0x03,0x94,0x50,0xc7, +0x08,0xf6,0x33,0x81,0x38,0xf3,0xd0,0x1e,0x9c,0xb1,0xaf,0xd8, +0x8c,0x87,0xc5,0x5f,0xdd,0x7a,0x99,0x0b,0x4b,0xa5,0x76,0x91, +0x8e,0x8c,0xea,0x95,0xa0,0xeb,0x4a,0xf0,0x1e,0xd3,0x92,0x9c, +0x53,0x25,0x95,0xe4,0x1a,0xa5,0xcb,0x49,0x54,0xe6,0xa2,0xe0, +0x42,0x0c,0x9a,0x55,0x5b,0xf7,0x95,0xd3,0x39,0xde,0x74,0x1e, +0xb5,0x19,0xb2,0xe4,0xe0,0x3a,0x7e,0x40,0x2e,0xe4,0x5e,0xc8, +0x2b,0x50,0x7c,0x0a,0x1f,0xa0,0x0a,0x2b,0x1a,0xc5,0x10,0x07, +0x9c,0x6a,0x88,0xdc,0xae,0x65,0xad,0x76,0xfc,0xc3,0x3f,0x87, +0x81,0xaf,0xfa,0x8b,0x9a,0x80,0xf1,0x59,0xe2,0x12,0x9e,0x54, +0xaa,0x0c,0x16,0x90,0xdd,0x8b,0xd9,0xb0,0xf1,0x4e,0x2b,0xdb, +0x6d,0x3b,0x6a,0xf7,0xc4,0xbe,0xb4,0x93,0xd7,0x29,0x36,0x29, +0xb6,0x29,0xed,0xac,0x6a,0x6a,0xae,0x6f,0xb3,0xac,0xe0,0x1d, +0x4c,0x4d,0xcd,0x2d,0xdc,0xdd,0x0a,0x8f,0x14,0xfa,0x15,0xf5, +0xd7,0xb6,0x77,0xd5,0xb4,0x5a,0x96,0xf3,0xae,0x56,0x26,0xe6, +0x96,0xae,0x1e,0x2d,0x47,0x3b,0xc2,0xbb,0x75,0x23,0xf8,0x7c, +0x7c,0xaf,0x6f,0x01,0x4c,0x5f,0xca,0x89,0x3a,0xcc,0xb7,0xf7, +0xfb,0x9e,0x95,0x7e,0xcf,0xb5,0xe0,0x15,0x43,0x70,0x60,0x7d, +0x75,0xdd,0x8c,0x2c,0xcd,0x2d,0xaa,0x0e,0x34,0x18,0x15,0xbb, +0x58,0xf3,0x4d,0xbe,0x57,0xed,0x3b,0x0f,0x1b,0x59,0xed,0xb7, +0x5f,0xef,0x50,0x6e,0xc6,0x3f,0xaa,0xbc,0x5e,0xd7,0xd3,0xcc, +0x59,0xdd,0xc0,0x8d,0x98,0x6e,0x00,0x69,0xec,0x09,0xfc,0x7c, +0xcd,0x3e,0xdc,0x67,0x50,0xa4,0xcf,0x83,0xd1,0xd0,0xdb,0x9f, +0xe2,0x61,0x2d,0x07,0x16,0x68,0xcf,0x68,0x14,0xf9,0xdc,0x94, +0x1a,0x1e,0xd7,0x67,0x64,0xd5,0x2a,0x83,0x02,0xab,0x93,0x21, +0x71,0xbe,0x89,0xde,0x82,0x1d,0x01,0x73,0xfa,0xd7,0xe6,0x8c, +0xbc,0xec,0xea,0x29,0x72,0xe4,0xa4,0xd4,0x4c,0xdb,0x03,0xe6, +0x77,0xe0,0x7c,0x9a,0xf0,0x34,0xb1,0x05,0x9e,0xc5,0x9e,0xe5, +0x5e,0xc5,0x4d,0xbc,0x63,0xa9,0x7b,0xa9,0x77,0x59,0x65,0x79, +0x69,0x43,0x41,0xad,0x73,0x29,0xef,0x77,0xd8,0xdd,0xc1,0xc3, +0x23,0x34,0x3b,0x2c,0x27,0x32,0xb7,0xb2,0xa2,0xa4,0x31,0xaf, +0xce,0xa9,0x84,0x3f,0xe6,0xea,0xe3,0x74,0xc4,0x23,0xac,0x2a, +0xaa,0xfa,0x54,0x8d,0x79,0x24,0x9f,0x3a,0xb7,0x76,0xde,0xe3, +0xe5,0x1c,0x56,0x30,0x83,0x0f,0xaa,0xbe,0x4e,0xfd,0x9a,0x2a, +0x78,0xb7,0x39,0x4c,0x67,0x4f,0x58,0x07,0x5b,0x51,0x9c,0x51, +0xe6,0x5e,0xed,0x97,0xe7,0xe6,0xc4,0x17,0xf8,0x96,0xdb,0xe6, +0xd3,0xbf,0x74,0x77,0x72,0x70,0x29,0xb3,0xe5,0x8b,0xae,0x14, +0x5c,0xc9,0x2d,0xe2,0xec,0x3a,0x56,0xb3,0x7e,0x5f,0xfa,0x9f, +0x0b,0x54,0xc2,0x39,0xa6,0x34,0xee,0x1c,0x47,0x05,0x9b,0xbd, +0x4b,0x77,0x95,0x5a,0xf3,0x30,0xf5,0x9b,0xce,0x6f,0xd3,0x60, +0x05,0xf7,0x02,0x7d,0x99,0xfd,0x39,0x41,0x03,0x4a,0xb7,0x99, +0xa6,0x84,0x77,0xda,0xb5,0xcc,0x94,0xc3,0x65,0xac,0x68,0x4d, +0x1d,0x49,0xb7,0xa8,0x60,0x04,0x9f,0xe0,0x27,0x2b,0xc6,0xf5, +0xbb,0xaf,0x43,0xb9,0xec,0xe3,0xe5,0xf0,0x09,0x6b,0x3a,0x13, +0x3f,0xb1,0xa3,0x3f,0xad,0x50,0x97,0xcc,0x8f,0xd8,0xe0,0xa2, +0xa3,0x04,0x29,0xcd,0x52,0xe3,0xb8,0x24,0x32,0x0f,0x83,0xee, +0xb2,0x05,0x7e,0x72,0x1d,0x63,0xa9,0xaf,0x60,0xae,0xe2,0x85, +0x7a,0xd4,0x63,0xad,0x32,0xfd,0xea,0x94,0xd2,0xda,0x88,0xff, +0x49,0xa9,0xe3,0xad,0x5a,0x1b,0x3a,0xb1,0x50,0xaf,0x4d,0x2e, +0xe4,0x5c,0xc8,0xcd,0x53,0x7c,0xf9,0x94,0xa6,0xd4,0xe2,0x6f, +0xb8,0x80,0x40,0x10,0x75,0xf8,0x41,0xf4,0x09,0xbe,0x92,0x3d, +0x24,0x2a,0x66,0x38,0xf5,0x08,0x7e,0x14,0x92,0x41,0xd1,0xea, +0x27,0x19,0x30,0xad,0xf8,0xb7,0x6e,0x6e,0xfc,0x4b,0x91,0x21, +0x7b,0xce,0xc6,0x59,0xc0,0x8c,0x4b,0xb0,0x24,0x11,0xd8,0x74, +0x85,0xc4,0xd0,0x84,0xd0,0x84,0xe3,0x4d,0xd9,0xbc,0x7b,0x93, +0x5b,0x8d,0x6d,0x8d,0x5d,0x10,0x3f,0x91,0xf9,0x1f,0x3f,0x70, +0x72,0xc7,0xc9,0xad,0xa7,0xd3,0x8a,0x92,0x0a,0x93,0x29,0xe8, +0x6b,0x6e,0xc0,0x1f,0xda,0xa1,0xad,0x0e,0xdb,0x1a,0xa1,0xad, +0x1e,0xdb,0x9a,0x60,0xb4,0x5e,0x7c,0x0f,0xd3,0xb7,0xda,0xc2, +0x27,0x4c,0xc4,0x91,0xe3,0x1e,0x47,0x3d,0x39,0x61,0x17,0x0d, +0xb4,0xa0,0x98,0x05,0xd3,0x4b,0x60,0x52,0xbf,0x67,0x33,0xbf, +0xc4,0x18,0x3f,0x70,0xc7,0xcf,0x83,0xb9,0x0c,0x89,0x59,0x78, +0x49,0x36,0x7c,0x5e,0x01,0xef,0x0f,0x1d,0xa1,0x8e,0x6a,0x92, +0x3e,0xf2,0xce,0xb8,0x20,0x88,0x13,0xd6,0x8b,0x34,0x62,0x31, +0x71,0xf3,0xd2,0x56,0xe6,0x3d,0xae,0x1c,0x6c,0xa8,0x6e,0xe4, +0x5a,0x44,0x03,0x36,0x29,0x3b,0x21,0x27,0x3e,0x97,0x13,0x6a, +0xbb,0xc4,0x1c,0xe6,0x62,0x7a,0x6c,0x46,0x4c,0x86,0xee,0x65, +0xfe,0x4c,0xe0,0x99,0xa3,0xa7,0x8e,0x72,0x38,0x60,0x0c,0xb5, +0x8c,0x19,0xbe,0xbf,0x7c,0x0d,0xae,0xdc,0x59,0x6c,0xc1,0xbf, +0xe9,0x7a,0x32,0x3c,0x38,0xd6,0xea,0xdc,0xeb,0x31,0xe4,0xbb, +0x2d,0x60,0x79,0x30,0xca,0x9d,0x48,0x36,0xa1,0x10,0x3d,0x09, +0x3e,0xc8,0xff,0xb9,0x0c,0x38,0x27,0x98,0xe9,0x0f,0x8a,0x27, +0x38,0xb4,0x04,0x5f,0xe2,0xe2,0xa6,0xeb,0xb2,0xd1,0x73,0x67, +0x81,0x46,0xa9,0x6e,0x2d,0xf5,0x31,0x15,0xb2,0x6f,0x88,0x11, +0x9a,0xed,0x42,0x45,0x94,0x47,0xae,0xc6,0x90,0xaf,0x2c,0xad, +0xac,0x29,0x6f,0xe1,0xc4,0x92,0xab,0xb2,0x8f,0xd8,0xba,0xfb, +0x95,0xdf,0xe6,0xff,0xc6,0x09,0x4d,0xe3,0xf7,0x88,0x5a,0xc5, +0xa1,0xab,0xa6,0xdf,0x3c,0xba,0x73,0xfd,0xf1,0xe0,0x4b,0x8b, +0x2a,0xde,0x64,0xbb,0xf6,0x6e,0xd5,0x7d,0xf6,0x5f,0x79,0xfe, +0x74,0xf4,0xb5,0x30,0xa5,0x80,0x3f,0x33,0x20,0x72,0x3e,0x72, +0x11,0xb7,0x4f,0xdf,0xbd,0xa7,0xd8,0x74,0xc8,0x92,0x55,0xbd, +0xb8,0x3b,0x51,0x4d,0x09,0x0f,0x1f,0x8f,0xd5,0x05,0xf7,0xd4, +0x6c,0xe4,0x2a,0x70,0x72,0xeb,0x2a,0x85,0x8d,0x7b,0x17,0x69, +0xe2,0x87,0x06,0x25,0x34,0xfb,0x9c,0x3e,0xf0,0xdb,0xd5,0xe7, +0x77,0x7a,0xd6,0xdd,0x54,0x7f,0x72,0xb8,0xc3,0xbf,0x22,0xfb, +0x62,0x7b,0x06,0x98,0xf2,0x7a,0xf9,0x72,0x5e,0x42,0x30,0xd1, +0xe8,0x50,0xab,0x53,0x2b,0x72,0xb7,0xe0,0x6f,0x79,0x8e,0x39, +0xdc,0x30,0xe5,0xe4,0x9f,0x08,0x6f,0xa4,0x73,0x0d,0xa6,0x13, +0xe7,0x1a,0xcc,0xc9,0x32,0xb4,0xf8,0x85,0x15,0xcc,0x96,0x11, +0x34,0xfb,0x45,0x3a,0xd7,0xb0,0x8c,0xfc,0x02,0x0e,0x12,0x45, +0xe9,0xf8,0x22,0x92,0xa6,0x23,0x07,0xda,0x4c,0x67,0x7a,0x46, +0xb3,0xb2,0x30,0xa0,0x25,0x8e,0xb0,0xe3,0xde,0xc2,0x45,0x22, +0xcc,0x6e,0x15,0x67,0x33,0x42,0x82,0x3d,0x11,0xe7,0x0e,0x09, +0x73,0x59,0x9c,0x87,0x53,0x49,0xbb,0x78,0xcc,0x8c,0xed,0x32, +0x25,0x16,0x82,0x42,0x2b,0x8b,0x4b,0xa6,0xb5,0x8a,0x0a,0x16, +0x6c,0x1f,0xd6,0x92,0x06,0xf8,0x01,0x8c,0xc4,0x85,0x18,0xc1, +0xc2,0x8f,0xdf,0x13,0x2c,0xfb,0x09,0xca,0x68,0xbc,0xb2,0x38, +0x4a,0x36,0xd4,0xec,0x6c,0xd7,0x1c,0xba,0xff,0xac,0xfb,0x8f, +0x77,0xc7,0x6a,0xbe,0x65,0x2f,0x36,0xc7,0xb6,0x45,0x77,0x72, +0xc2,0xc7,0x7d,0xa2,0x7c,0x1b,0xf3,0x83,0xd6,0x2a,0xd6,0x1c, +0x57,0xd9,0xe1,0xb4,0x77,0x3d,0x3d,0x94,0xf4,0x41,0x09,0x63, +0x58,0xd3,0x10,0xd3,0xff,0xd0,0x0c,0xb5,0xa4,0x48,0x34,0x43, +0x65,0x38,0x43,0xda,0xf2,0x7a,0xcd,0xb4,0xa7,0x4b,0x5b,0x5e, +0x6d,0x6c,0x53,0x5a,0x53,0x46,0x43,0x66,0x64,0x0f,0xef,0x18, +0x6c,0x17,0x6c,0x77,0x9c,0x83,0x60,0x78,0xbf,0x1e,0x16,0xb1, +0x11,0x58,0xa7,0x85,0x7a,0xb8,0x18,0xf7,0x34,0x5a,0xf1,0xbf, +0xc2,0xfb,0xc3,0x20,0x5f,0x05,0x0b,0x8b,0xf7,0xd4,0x1f,0xec, +0xd0,0x3f,0xa4,0xbb,0xc3,0x5c,0xc5,0xa1,0xc4,0x90,0xff,0xa1, +0xfe,0xab,0xae,0x1b,0xd7,0x6e,0x1c,0x7c,0x62,0xf4,0xc2,0x96, +0xc3,0x13,0x70,0x81,0x1c,0x1c,0x33,0x7f,0xee,0xf3,0x1b,0x07, +0x57,0x18,0xdf,0x45,0xd6,0x1b,0x34,0xd5,0x38,0x09,0xba,0x6f, +0x26,0x85,0x56,0x05,0xe6,0xf9,0x26,0xdd,0xb9,0x7c,0x60,0x63, +0x40,0x8d,0x5f,0x1d,0x07,0x6b,0x7b,0xb1,0x98,0x49,0x2b,0x4d, +0x2e,0x4b,0x28,0xd3,0x4f,0xe6,0xdd,0x96,0x1b,0xae,0xdb,0xad, +0xd6,0x4c,0xd3,0xe0,0xea,0xca,0xa6,0xa2,0x16,0x4e,0x30,0xe8, +0x25,0xa9,0x65,0x89,0x65,0xf1,0x65,0x7a,0x89,0xbc,0xcf,0x2a, +0xab,0xb5,0x9a,0xaa,0x15,0x3e,0x7c,0xc0,0xf9,0x58,0xfd,0xcb, +0xc6,0x89,0xa6,0x0a,0x68,0x1e,0x72,0x51,0x0f,0xec,0xd3,0x73, +0x76,0x16,0xa9,0x57,0xe9,0x2a,0x6c,0xd1,0x5d,0x66,0x8c,0xd3, +0x6c,0xa8,0x3c,0x30,0xad,0xe9,0xd7,0xee,0x67,0x43,0x4d,0xfa, +0xdd,0x96,0x23,0x2e,0x1d,0x5e,0x2d,0x71,0x97,0xdb,0xaf,0xc0, +0x36,0xde,0x20,0xc7,0x0b,0xf7,0x6a,0x96,0x1b,0x35,0xd9,0xf4, +0x2a,0x8c,0x76,0xf7,0x0f,0xb4,0x5e,0xb5,0xaa,0xe6,0x6d,0xf4, +0x8c,0x0d,0x0f,0x9a,0x78,0x74,0xf8,0xf6,0x1f,0xbb,0x0a,0x8f, +0xae,0xf0,0x67,0xfa,0xf1,0x85,0x57,0x44,0x7b,0x54,0xd7,0x99, +0x5e,0x85,0xa0,0xf3,0x85,0x34,0xe5,0xce,0xae,0x53,0xf8,0x9e, +0xc9,0x75,0xca,0x76,0xcc,0xb6,0x97,0xda,0xc1,0x97,0x07,0x95, +0x48,0x49,0x87,0x41,0x2f,0x33,0xbe,0x09,0xd7,0x10,0x13,0x9c, +0xa1,0x36,0x1f,0xa7,0xaa,0xd4,0x98,0xf0,0x8d,0x95,0x65,0xe5, +0x57,0x4a,0x39,0x51,0x7e,0x44,0x70,0x64,0xcb,0x3b,0x4b,0x86, +0xb2,0xbb,0x39,0x68,0x75,0x24,0xed,0x01,0xed,0xbe,0x2d,0xee, +0xa5,0x2d,0xbc,0x79,0xa9,0x59,0x81,0x79,0x36,0x27,0xff,0x95, +0xac,0x91,0xfc,0x3d,0x79,0x50,0x18,0x86,0x01,0xb8,0xc6,0x7e, +0x8b,0xd7,0x08,0xdc,0x13,0xcf,0x6e,0x64,0x62,0x2f,0xc5,0x5c, +0x8e,0xbe,0x9c,0xfd,0x1b,0x6f,0x93,0x1b,0x30,0xf7,0x70,0x8e, +0x7b,0xa1,0x4f,0x85,0x42,0x5b,0x73,0x6d,0x7b,0x61,0x9b,0x75, +0x09,0xef,0x67,0xe3,0x62,0x63,0x67,0x1f,0x54,0x11,0x5a,0x77, +0xa2,0x09,0x6c,0xa8,0xa0,0x6d,0xe8,0xe8,0x2d,0x77,0xba,0xfa, +0x6c,0x7d,0xa3,0xa2,0x11,0x63,0x15,0x63,0x73,0xc9,0x5e,0x09, +0x67,0x05,0x5f,0x34,0x03,0xa5,0x8c,0x24,0x83,0x4c,0xb3,0x3c, +0x1b,0x05,0x03,0xcb,0x83,0xf6,0xfb,0x8f,0xd0,0x35,0x7a,0xb3, +0xe4,0x6a,0x7d,0x4f,0x73,0x91,0x63,0x85,0x7b,0x9d,0x4f,0x7a, +0x78,0xc6,0xf9,0xe4,0x4b,0xf1,0x8e,0xfc,0x4b,0xa6,0x49,0xda, +0xef,0x94,0xd5,0x8a,0x33,0x58,0x51,0x09,0x3f,0x27,0x4f,0xe0, +0xcb,0xad,0x2c,0xd8,0xcd,0x7c,0x02,0xe9,0x5b,0xd9,0x71,0x5b, +0x7a,0xe7,0x29,0x7c,0xb9,0x59,0xba,0xf3,0x14,0xd2,0x69,0x52, +0x93,0x8d,0x0c,0xa9,0x0a,0xa9,0xf7,0x2b,0xf3,0x29,0xaa,0xe2, +0x9d,0x0a,0x0f,0xe7,0x1c,0x4e,0xe3,0xf0,0xf2,0x59,0x62,0xb7, +0x52,0x7d,0xe5,0x0e,0x1d,0x1a,0x95,0x0b,0xb2,0xf3,0xf3,0xf3, +0xae,0x70,0x58,0xdd,0x03,0x6f,0xd9,0xd2,0xa6,0x82,0xe6,0x74, +0xba,0xc8,0xff,0xa5,0x27,0x7c,0x41,0x44,0xe3,0xdb,0x82,0x22, +0xf4,0xa0,0x1f,0x13,0x9f,0x1b,0x9f,0x1f,0x97,0xaf,0x1b,0xcf, +0x9f,0xf2,0x8d,0x3c,0x12,0xe1,0xc5,0xe1,0x16,0xb1,0x91,0xe6, +0xbf,0xbb,0xce,0x98,0x46,0xd9,0x28,0x39,0x9f,0x0c,0x3d,0x6e, +0x37,0xeb,0x20,0x93,0x6c,0x28,0x77,0x95,0xb9,0x5e,0x58,0x30, +0x94,0xa4,0x9c,0xd8,0x7f,0x71,0x14,0x58,0x45,0x51,0xed,0xae, +0x60,0xcc,0x88,0xd5,0xeb,0x89,0x59,0x8a,0x1c,0x2a,0xfa,0xb0, +0xbe,0xe7,0x12,0x8a,0x95,0x05,0x7f,0x24,0xb0,0x5f,0x0f,0xf7, +0x6f,0xd3,0x7b,0xcc,0x9e,0xc7,0xd1,0x63,0xb8,0x66,0x2f,0xce, +0x6f,0x32,0xe3,0x9f,0xc2,0xea,0x2c,0x30,0xb9,0x00,0xa3,0xdc, +0x98,0xa8,0xcf,0x98,0xa4,0xfa,0x75,0x2a,0x35,0x31,0x65,0x29, +0x99,0x15,0xca,0xc2,0x16,0xe1,0x6b,0xb2,0x0b,0x9f,0xde,0x67, +0xe1,0x29,0x4a,0x99,0xe6,0xd3,0xc7,0x2c,0x44,0x88,0xab,0x48, +0xba,0x3b,0xcd,0xe7,0x0f,0xd7,0x65,0xf0,0x61,0x35,0x47,0xbb, +0x82,0x8b,0x39,0x71,0x32,0x5e,0x26,0x0d,0xb7,0xae,0x7c,0x9b, +0x78,0xc7,0x2c,0x89,0x0f,0x3f,0xe0,0xbb,0xd5,0x56,0x93,0x1a, +0x34,0x98,0x92,0x34,0xf3,0x54,0xbd,0x04,0x83,0x56,0x0a,0xa0, +0x7a,0x43,0xfa,0x82,0x5b,0x39,0x5c,0x1a,0x4a,0x12,0x0f,0x5c, +0x52,0x8d,0xd6,0xee,0xba,0xcc,0x9f,0x1d,0x3d,0x31,0x2a,0x31, +0x05,0x09,0x89,0xb2,0xa3,0xe4,0x27,0xc3,0x15,0x38,0xc3,0x18, +0xfa,0xbb,0xd8,0xdf,0xd0,0x8b,0x80,0x26,0xfb,0x30,0xe3,0xf1, +0x95,0xce,0x12,0x8f,0x4e,0x5e,0xd7,0x79,0xa3,0xf7,0x9a,0x20, +0x0e,0x33,0x58,0x0c,0x0b,0xc1,0x8d,0xba,0xf8,0xb1,0x52,0x9b, +0xfd,0x20,0xcc,0xce,0x02,0xd5,0x0b,0x10,0xa4,0xf0,0x52,0xac, +0xe8,0x11,0x2a,0x1e,0xf5,0x31,0xe3,0x77,0xc5,0x38,0xf2,0x17, +0xac,0x97,0xcd,0x43,0x4f,0xa9,0x03,0xea,0x46,0xd8,0x40,0xe6, +0x09,0xf5,0x6f,0x18,0x78,0x20,0x86,0x90,0xc8,0xa4,0x93,0xd1, +0x91,0x52,0x27,0xf3,0xd3,0x63,0x30,0xb3,0x1b,0x67,0xbe,0x05, +0xbe,0x7b,0x03,0x93,0x5a,0x9b,0x31,0x94,0xd8,0x6a,0x92,0xc2, +0x47,0xe8,0x87,0xe8,0x48,0xbb,0xe3,0xfa,0x46,0xb0,0x60,0x0e, +0xce,0x31,0x82,0x4f,0x99,0x60,0x35,0xd3,0xd5,0x6b,0x37,0x14, +0x1b,0xf2,0x3f,0xfe,0x50,0x3e,0x76,0xf1,0x09,0x4d,0x8b,0x86, +0xbb,0x21,0x75,0x82,0xb1,0xe8,0xb4,0xd2,0x73,0xfc,0xb4,0xba, +0x49,0x0e,0x8d,0x84,0x5d,0x24,0xaa,0x21,0xa4,0x23,0xa8,0xc1, +0xea,0x28,0x9f,0x6e,0x97,0x6a,0x19,0x6f,0x4d,0xd7,0xaf,0xbb, +0x10,0x4b,0x60,0x6a,0x1f,0x4e,0x9d,0xa8,0xde,0x9d,0xaf,0xff, +0x27,0xfe,0xcd,0x1c,0x3e,0xee,0x10,0x6a,0x1f,0x96,0xa1,0xcf, +0xbf,0xad,0xfa,0xb6,0xe2,0x9b,0xc6,0xc8,0x3e,0xde,0x25,0xd8, +0x39,0xf8,0x70,0x08,0x27,0x98,0xc9,0xd6,0x12,0xad,0x4d,0x98, +0x67,0x28,0xfc,0xbb,0x07,0x6b,0x18,0xbc,0x8c,0x37,0x88,0x60, +0x0d,0x16,0xa2,0x35,0x33,0x84,0x8b,0xc9,0x4f,0xf0,0xed,0x0a, +0x56,0xfc,0x5c,0xbc,0x4d,0x84,0x65,0x82,0x16,0x3e,0xa3,0x60, +0x4c,0x62,0xac,0xfc,0x98,0x69,0x49,0xcf,0x6c,0x52,0x16,0x66, +0x88,0xbd,0xa2,0x2d,0x0b,0xca,0xf0,0x23,0xc1,0xac,0xde,0x61, +0xf0,0x02,0x3b,0x16,0xbd,0x70,0x25,0xf9,0x1d,0x36,0x2e,0xa2, +0x59,0xe3,0x2b,0xf8,0x92,0x24,0xb9,0x24,0x5b,0x27,0x5a,0xb9, +0x45,0xba,0x44,0xba,0x9c,0xe0,0xc0,0x1a,0x16,0xd3,0xd4,0x63, +0x31,0xac,0xd6,0xc1,0xd5,0xb8,0x40,0x24,0xb0,0x00,0x3d,0x59, +0x9d,0x30,0xad,0x70,0xcd,0x88,0x14,0xa9,0x49,0x6b,0x1e,0xb0, +0x85,0x6f,0x2a,0x2f,0xfa,0xc7,0xfa,0xc7,0x1e,0xed,0x4c,0xe3, +0x43,0x1e,0xf8,0xfc,0x16,0x78,0x83,0x83,0x2c,0xe1,0x06,0xf1, +0x5c,0xb2,0x6f,0x21,0x7e,0xb8,0xa2,0x82,0xe6,0x8a,0xf2,0xaf, +0xc7,0x5e,0xe6,0x00,0xcb,0xc5,0x31,0xd9,0x38,0xf5,0xdb,0xb5, +0x14,0xfe,0x4d,0xaa,0xe8,0xe1,0x91,0xfd,0x7d,0xf3,0x0f,0x6e, +0xbf,0x73,0xe2,0x2b,0x74,0x26,0x2f,0xb0,0x60,0x2d,0x03,0x27, +0xa4,0x76,0x56,0x05,0xab,0xa0,0x40,0x3a,0x6a,0xb5,0x81,0x40, +0x5d,0x3f,0xd6,0x31,0x17,0xc5,0xef,0xc9,0x10,0x94,0x6b,0x0f, +0x0a,0xeb,0xc4,0x05,0xe2,0x3a,0x96,0x3a,0xf1,0x7f,0x49,0x6f, +0x9a,0xca,0xa5,0x37,0x4d,0x42,0x36,0xa8,0x92,0xdf,0x04,0xbe, +0x13,0x5f,0xbc,0x84,0x9e,0x76,0xec,0x79,0x3e,0x71,0x7d,0x06, +0x4f,0x3a,0xf1,0x36,0x9b,0x56,0x48,0x23,0x7d,0xa9,0x56,0x02, +0x1f,0xe6,0x1c,0xea,0x7e,0xcc,0x93,0xc3,0x33,0x4c,0x7a,0x51, +0x6a,0x71,0x52,0xb1,0x76,0x12,0x6f,0x8d,0x93,0x0f,0x6c,0xc6, +0x69,0x3b,0xca,0xcc,0xf8,0xca,0xfc,0xd2,0xc2,0xe2,0x22,0x0e, +0xbf,0x86,0xe6,0xc5,0xe2,0x5a,0x03,0x61,0x2d,0x1a,0x5c,0x05, +0x03,0x41,0xad,0x97,0x15,0x0f,0x09,0x6a,0x04,0xab,0x6f,0x31, +0x49,0x69,0x72,0x50,0xc0,0x60,0x35,0xfa,0x91,0xe7,0x50,0xbd, +0x9e,0x35,0x9b,0xa6,0x82,0xd5,0x2f,0xe9,0x33,0x8b,0x95,0x3d, +0x23,0x56,0x13,0x27,0xb6,0xe6,0xbc,0x3b,0xb0,0x55,0x5c,0x5c, +0x55,0xd4,0xc4,0x89,0x79,0x43,0xb2,0x8f,0xd9,0xaa,0x07,0x25, +0x2f,0x72,0x5e,0x71,0xf0,0x8d,0xf8,0x98,0x80,0x1a,0x54,0x0c, +0x62,0x05,0x08,0x87,0x50,0xc0,0x72,0x1d,0x3a,0x41,0x35,0x1c, +0xd6,0x81,0x61,0x4c,0x1a,0x81,0x24,0x18,0x1d,0x64,0x97,0x0b, +0x6d,0xc4,0x63,0x9b,0xcb,0x76,0xcb,0xbd,0x9d,0x9e,0x7c,0xf3, +0x8d,0x86,0xe7,0x85,0x8f,0x38,0x51,0x13,0xcd,0xc9,0x91,0x3b, +0xf6,0x4f,0x1c,0xae,0x19,0x7b,0xf0,0x0d,0xea,0xe5,0xbb,0x4b, +0x54,0xe9,0x22,0xe8,0x17,0xb6,0x90,0x7e,0x74,0x06,0xaa,0x63, +0x01,0xbd,0xf4,0xc0,0x8b,0xe6,0xfa,0x67,0xf4,0xe0,0x0c,0x16, +0x0c,0x43,0x01,0x04,0xf6,0x63,0x20,0x4d,0xed,0x85,0x93,0xe2, +0x3a,0x82,0x07,0x26,0x2a,0x64,0xd6,0xfc,0xa7,0x42,0x46,0x93, +0xc5,0x5f,0xdc,0x48,0xe0,0x1e,0xe7,0xf5,0x0e,0x6a,0xdd,0x3e, +0x7c,0xdd,0xdd,0xf2,0xe7,0xf9,0xf7,0xe8,0xcc,0xd1,0x81,0xf8, +0xde,0x71,0x79,0xec,0x78,0xd7,0xc8,0x9b,0xaf,0x53,0x2d,0xdb, +0x9e,0xaf,0x46,0x8d,0x0d,0x22,0xc9,0x38,0x19,0x91,0x11,0xfa, +0x98,0x73,0x21,0x84,0x80,0x9e,0xa0,0x3c,0x2c,0x2a,0xc3,0x9b, +0xfd,0xf8,0x46,0xfc,0x58,0x4b,0xf8,0x18,0xf5,0xc4,0xe5,0x5a, +0xc2,0x72,0x3c,0x33,0x0a,0x34,0xd5,0x1b,0x66,0xf1,0x0b,0xe1, +0x3a,0xb1,0xdb,0xad,0xb9,0xfe,0xd0,0x81,0x76,0x47,0x7e,0xf8, +0xea,0x9d,0x9f,0xeb,0xee,0x72,0x62,0x1a,0x9d,0x82,0xd9,0xe3, +0x83,0x4f,0x75,0x06,0xcd,0x9c,0xf9,0xe1,0x03,0x83,0x3b,0xdb, +0xb7,0x51,0xf7,0x75,0xe0,0x0c,0xc1,0x0f,0xaa,0xe7,0x77,0xae, +0xb9,0xfa,0xd7,0x8f,0x4f,0x80,0x6d,0x84,0x99,0x5c,0xfb,0x38, +0x01,0x43,0x99,0xf1,0xe0,0x78,0xb2,0x74,0xa6,0xd9,0xc3,0x07, +0x8d,0xd7,0xe0,0x67,0x4a,0x3d,0x66,0x3f,0xc0,0xac,0x62,0x30, +0x8a,0x05,0x0f,0x05,0x61,0x90,0x71,0xc0,0x49,0x7b,0x96,0xae, +0xd8,0xba,0xf9,0xa6,0xc6,0x57,0xa6,0xdf,0xeb,0x78,0xf1,0xdd, +0xcb,0x6e,0x6d,0x78,0xa6,0xba,0x5a,0x03,0xa7,0x18,0xe1,0x87, +0xae,0xc5,0x87,0x68,0x22,0x58,0x0d,0xef,0x0f,0xfe,0xf6,0xf0, +0x17,0x35,0x90,0xd3,0x03,0x62,0x4b,0x1f,0x97,0x3a,0x3c,0x25, +0xb6,0xe1,0xc6,0x11,0xfa,0x91,0x17,0x9b,0x62,0x5a,0x2f,0xd0, +0xf0,0x31,0xaf,0x17,0xe7,0xc1,0x73,0x1d,0x7c,0x8e,0x6a,0x06, +0xa0,0xc6,0x9c,0xd7,0x3d,0x6b,0x72,0xca,0x52,0x2b,0x52,0xeb, +0x84,0xf1,0xe9,0x38,0x5d,0xbe,0xe5,0x62,0xcf,0xe5,0xbe,0x78, +0xff,0x65,0xd6,0x3b,0xd6,0x6d,0x6d,0xb4,0xe4,0xff,0x78,0xdd, +0xf6,0x63,0x2e,0x7c,0x30,0x94,0x38,0x98,0xdc,0x9a,0xcc,0xc1, +0x77,0x14,0x62,0xdc,0xfe,0xbd,0x15,0x3e,0x28,0x04,0x45,0xae, +0x55,0xfc,0x10,0x34,0x84,0x25,0xfd,0xa2,0x23,0x26,0xb1,0x98, +0x7c,0x84,0xa2,0xfd,0x19,0xb8,0x52,0xa9,0xd1,0x1a,0x3e,0x81, +0x75,0x0d,0xb0,0x29,0x06,0x52,0x15,0xe0,0x3a,0xe3,0xbf,0xe0, +0xf0,0x52,0xbd,0xf5,0x36,0xf7,0x5c,0xbf,0xf2,0x7a,0x61,0xe4, +0xcf,0x97,0x2c,0xac,0x59,0xd3,0xb9,0x45,0x4f,0x75,0xb7,0xe6, +0x4a,0xe3,0x32,0x1a,0xe8,0xbb,0xef,0x5f,0x1d,0xbe,0xd7,0xa6, +0x31,0xa4,0x79,0x5f,0x5b,0x6a,0xc7,0xd5,0xab,0x37,0x62,0x71, +0x93,0x13,0x3f,0x90,0xc9,0x93,0x30,0x2d,0xaf,0x55,0x1e,0x9a, +0xad,0xfe,0x7c,0xe9,0x68,0xd1,0x8f,0xc9,0x23,0x1c,0xe6,0xa2, +0x15,0x39,0x7e,0xcb,0xf7,0x89,0xf7,0x75,0xd3,0x00,0xfe,0xca, +0xa1,0xbc,0x8d,0xa9,0xea,0x74,0x86,0x2b,0x65,0x1b,0x08,0xce, +0x81,0x0d,0x7a,0xb8,0x01,0x67,0x89,0x37,0x7b,0x85,0xe4,0x47, +0xe3,0x1a,0xfd,0x32,0x8d,0xaf,0x45,0x3d,0x6d,0x26,0x45,0x47, +0xae,0x9a,0x69,0x4b,0x93,0xce,0xab,0x1c,0xc7,0x3d,0xc4,0x8c, +0x71,0x3b,0x79,0xb1,0x5a,0x59,0x76,0x1e,0x9f,0xd2,0xc5,0x8c, +0x7d,0x27,0x71,0xd5,0x32,0x5c,0xaf,0xd4,0x6a,0x2d,0xf7,0x27, +0xa8,0x26,0xc3,0x1e,0xb8,0xa1,0x08,0xeb,0xc1,0x61,0xdc,0x88, +0xdd,0x53,0xec,0x7f,0x4d,0xa9,0x9d,0x69,0x4e,0x4d,0xaf,0x57, +0x86,0x13,0xac,0x11,0xc5,0xff,0xbf,0x40,0x1e,0x69,0x50,0x6d, +0xc7,0x49,0x45,0x1b,0xdb,0xca,0x78,0xaf,0xa7,0xc6,0x30,0xc9, +0xee,0x0e,0x15,0xe0,0xb5,0x60,0x4c,0xb2,0x02,0xe4,0x3a,0xc7, +0xb2,0xef,0xc2,0x7b,0x8a,0xc3,0x6f,0x29,0x98,0xd7,0x4b,0x3b, +0xd6,0xa7,0x54,0xcc,0x54,0x27,0x48,0x3b,0x62,0xf2,0x13,0xd9, +0xc3,0x2a,0x5f,0xf6,0xe8,0xa9,0x8b,0x39,0xca,0x90,0x8a,0x2e, +0x38,0x99,0x45,0x36,0xd8,0xd4,0x5e,0x5b,0xe9,0xd2,0x49,0xf7, +0x13,0x72,0x50,0x8f,0x2c,0x9b,0x54,0x1a,0x5f,0x1a,0x57,0x64, +0x94,0xc0,0x9f,0x72,0x8f,0x74,0x0e,0x77,0xe1,0xd6,0xa1,0x3f, +0x63,0x7b,0xde,0xe1,0xfc,0x61,0x25,0xb3,0xa8,0xd3,0xf9,0x47, +0xc3,0x03,0x22,0x02,0x23,0x14,0xc0,0xf3,0xab,0xce,0x2d,0xa0, +0x6d,0x88,0xda,0xcb,0x4d,0x7e,0xc6,0x33,0xac,0xeb,0x71,0x97, +0x50,0xb7,0x88,0x64,0x3d,0xbe,0x38,0xb1,0x38,0xa9,0x28,0x85, +0xc3,0xe6,0xb5,0x6c,0x9a,0xae,0xdc,0x75,0xa6,0x29,0x3d,0x9b, +0xa6,0x63,0xb7,0xd8,0xbc,0xa4,0xdc,0xe4,0xbc,0xe4,0x98,0x40, +0x3e,0x25,0x3a,0x25,0x26,0x25,0xfa,0x04,0xee,0xf6,0x43,0xc6, +0x66,0x79,0xa3,0x13,0xdf,0xf6,0x67,0x01,0xcc,0x8a,0x07,0xbd, +0xde,0xc4,0xce,0xc4,0xd6,0x24,0x4e,0xfc,0x62,0xb5,0xd4,0x77, +0xfc,0x11,0x53,0x99,0x9e,0x56,0xa5,0x2c,0x2c,0x67,0xd3,0x2f, +0xa6,0x5e,0x4c,0x8d,0xa5,0xd1,0xf8,0x24,0xb9,0x50,0x75,0xa1, +0xba,0x4e,0x11,0x76,0xc1,0x0a,0x8c,0x63,0x2d,0xc2,0x4d,0x22, +0x8c,0x22,0xb9,0x22,0x08,0x20,0xd9,0xd6,0x79,0xea,0x29,0x46, +0x8d,0x59,0x7c,0x68,0xb7,0xf7,0xdd,0x80,0x7a,0x4e,0x20,0x62, +0x3d,0xe9,0xbc,0x53,0xf1,0x34,0x43,0xca,0xb9,0x87,0x8d,0xe0, +0x02,0x1b,0x7a,0xc8,0x4b,0xd3,0x41,0xc7,0xa1,0xdb,0xa3,0xcf, +0x77,0xd0,0x98,0x2a,0x7f,0x6f,0xe5,0xc1,0x26,0x1d,0x1b,0x13, +0x43,0xab,0x43,0xae,0x85,0xa6,0xfc,0x68,0x65,0x7f,0x4b,0x4b, +0x77,0xb3,0x59,0xb7,0xd5,0xa8,0x7d,0x71,0x17,0xaf,0x59,0x65, +0xdc,0x64,0xdb,0xc6,0x89,0x0b,0xc1,0x93,0xe0,0xb9,0x16,0x38, +0xc7,0xca,0xcb,0xa6,0xc3,0x64,0xe2,0x7d,0xcd,0x73,0xc4,0x7d, +0xa8,0xf8,0xa7,0xb4,0x37,0xb1,0x30,0x9d,0xbb,0xd6,0x87,0x73, +0x61,0x9d,0x2e,0xae,0xc3,0x39,0xfa,0xe0,0xc5,0x9c,0x59,0x15, +0xb9,0x25,0x68,0xb7,0xd3,0x55,0x87,0x21,0xdb,0x5e,0x2b,0x67, +0xbe,0x73,0x7f,0xeb,0xee,0x86,0xad,0xf6,0xf8,0xc1,0xfe,0xc5, +0x8b,0x56,0xd4,0x59,0xf0,0x2f,0x5f,0x5e,0xff,0xa9,0x09,0x26, +0xe7,0x9b,0xe5,0x9a,0xe4,0x98,0x70,0x18,0x06,0x7b,0x88,0x8d, +0xbf,0x4d,0x80,0x4d,0x20,0x47,0x3d,0xcf,0xa4,0x3e,0x9c,0x04, +0x51,0x40,0x01,0x72,0x9b,0x3e,0x4c,0xc7,0x28,0x9c,0xaa,0x0f, +0x53,0xb1,0x86,0xb5,0xa7,0x88,0xd5,0xf6,0x78,0x9a,0x2e,0x0f, +0x53,0xea,0x7e,0x6f,0x7d,0xd5,0xcf,0x09,0xb6,0xa0,0x49,0x40, +0x7e,0x00,0xe5,0xa1,0x0d,0x14,0x87,0xf0,0xb6,0x36,0xc8,0x63, +0x1b,0x32,0xba,0xc0,0xe0,0x1b,0x54,0xd1,0x01,0x18,0xc4,0xd9, +0x8c,0x3c,0xdc,0x12,0x0e,0x93,0x13,0x69,0x51,0xd1,0xff,0x94, +0xf5,0x7f,0x0e,0x0b,0x7a,0x71,0xc1,0xbb,0x72,0x2d,0x89,0x65, +0x81,0xf9,0x7f,0xb2,0x2c,0xfc,0x8a,0xdb,0x6a,0x6b,0xff,0x0f, +0x6f,0xef,0x01,0x54,0x45,0xf6,0xfd,0x0f,0x9a,0xe8,0x6e,0x13, +0x63,0xba,0xda,0xa0,0x03,0xe6,0x9c,0x73,0x0e,0x20,0x48,0x8e, +0x8f,0x9c,0x25,0x27,0x05,0x41,0x41,0x74,0x0c,0x80,0x71,0xc6, +0x04,0x48,0xce,0x20,0x39,0x4b,0xce,0x39,0x99,0x73,0xd6,0x71, +0x82,0x69,0x82,0x8e,0x33,0xce,0xe9,0x37,0xa7,0xdf,0xfc,0xf7, +0x36,0xce,0xf7,0x3b,0xfb,0xff,0xed,0x56,0xed,0x56,0x6d,0xd5, +0x16,0xd6,0x7b,0xb7,0x1a,0x1f,0xaf,0x6f,0xdf,0x13,0x3e,0xe7, +0xde,0x73,0x3e,0x47,0x09,0xe4,0x38,0x9b,0xdc,0xfb,0xd0,0x0c, +0x23,0xf3,0xe1,0x4b,0x1a,0x40,0xcd,0xa6,0x7a,0xa6,0xd1,0x2d, +0x1e,0xc2,0x5c,0x16,0xa3,0x82,0x70,0xcd,0x32,0x9c,0xa3,0xd6, +0xe4,0xfa,0x06,0x56,0xe4,0xc1,0xda,0x33,0x90,0xa0,0x02,0xdf, +0x33,0xc1,0xd3,0x76,0xce,0x35,0x5c,0x61,0xf7,0xc0,0xe3,0x85, +0xef,0x2b,0x59,0x30,0x5f,0x32,0xb3,0x7a,0x49,0xc7,0x5a,0x93, +0xed,0xdb,0x0c,0x97,0x5a,0x16,0xca,0xf8,0x57,0x6d,0x0f,0xfa, +0xfb,0xef,0xb6,0xee,0xb8,0x62,0xf8,0xc4,0x98,0x6a,0xd9,0xa6, +0x76,0xc3,0x5e,0xeb,0x1b,0x9c,0xf2,0x2f,0xf2,0x4c,0x72,0xc7, +0xf3,0xfa,0xce,0x3e,0xfb,0xa2,0x66,0xde,0xa4,0x4e,0xa3,0x76, +0x7b,0x11,0x27,0xdf,0xa5,0xe8,0x26,0xe2,0x10,0xc6,0xf9,0x60, +0x42,0x8d,0xba,0x7c,0x81,0xc0,0xe1,0x2f,0x78,0x92,0x4d,0x31, +0x54,0x02,0x7f,0xa6,0x35,0x3d,0xb1,0x45,0x5d,0x98,0x21,0x9e, +0x56,0xf8,0xb2,0x9b,0xcb,0xdd,0x9f,0x48,0x7d,0x62,0xda,0x32, +0x25,0x6a,0x07,0x17,0x56,0x3f,0x59,0x49,0x7c,0x49,0x85,0xc2, +0xbc,0x5a,0xa3,0x4e,0x5b,0x6a,0x7a,0x73,0xd3,0xf3,0x9a,0x4b, +0x8f,0x23,0x47,0x75,0x72,0x3f,0x79,0xf2,0xf1,0x2a,0xf0,0x15, +0x9f,0xcc,0xb3,0x79,0x17,0x1c,0x62,0x86,0xdc,0xc6,0xf9,0xd4, +0xfd,0x77,0xc9,0xed,0x89,0x75,0x8d,0x51,0x8d,0x51,0x91,0x8f, +0x2d,0xdf,0xe7,0xd9,0xe1,0xda,0xea,0xc8,0x45,0x29,0x42,0x09, +0xa8,0x80,0x5e,0x22,0xe8,0xc2,0x3d,0x55,0xf8,0x12,0xca,0x14, +0x26,0xec,0xd6,0xbc,0x3d,0xb7,0xd4,0x1e,0x4a,0x7c,0xdd,0x03, +0xba,0x68,0x42,0xb5,0x29,0x6e,0x3b,0xeb,0x7e,0xfc,0x5c,0xb5, +0xba,0xfc,0x98,0xb8,0x12,0xad,0x59,0xec,0x3e,0x81,0x4b,0x71, +0x02,0x6a,0xa9,0x5d,0x16,0xc2,0x89,0x55,0x9d,0x56,0x93,0x6e, +0x99,0xb7,0x2d,0x7f,0xd5,0xfd,0x8a,0x43,0x87,0x1d,0x27,0x18, +0xa1,0x12,0x71,0x7e,0xa2,0xf5,0xde,0xe2,0xba,0x95,0x07,0xdf, +0xa9,0x79,0x6d,0x5e,0xd5,0x7a,0x4e,0x8c,0xc1,0xc7,0xe4,0xee, +0x9f,0x1d,0xa0,0x5a,0xf8,0x87,0x59,0x06,0xef,0x85,0x43,0x6d, +0x71,0xf8,0x76,0x29,0x1d,0xcd,0x9c,0xfe,0x89,0xee,0xa5,0x50, +0x6c,0x8c,0xc5,0x38,0x0a,0x92,0x8c,0x30,0x8f,0xc5,0x82,0x43, +0xb8,0xc1,0x00,0x89,0x5a,0xab,0x53,0xe3,0x1f,0xe9,0x30,0x22, +0x06,0x96,0xa8,0xc0,0x02,0x71,0x44,0xaf,0xa0,0x85,0x1e,0xcc, +0x99,0xaa,0x6f,0x6a,0x1b,0x54,0x05,0xc0,0xef,0xc9,0x8d,0xdf, +0xea,0x60,0x64,0x0e,0x5d,0xb4,0x06,0x91,0xa1,0x8b,0x36,0xb5, +0x4b,0xb4,0xc7,0x72,0x16,0xcf,0xef,0xc7,0xb5,0x46,0x38,0x5d, +0xad,0xc5,0xf3,0x3a,0x2c,0x4b,0x85,0x35,0xdf,0x40,0xb2,0x0a, +0x74,0x32,0xa1,0xd3,0x3d,0xe7,0xca,0x56,0x38,0x3d,0xf4,0xfe, +0x76,0xb7,0xb4,0x68,0x45,0x33,0x2a,0x16,0xb7,0xae,0xb6,0xd4, +0xd2,0x35,0xd8,0x20,0x99,0xc6,0xc7,0x6d,0xd7,0xfb,0xda,0x6f, +0x37,0xe8,0x76,0x19,0xde,0x31,0x29,0x6e,0xe1,0x35,0xdb,0x4c, +0xfb,0x1c,0x6e,0xd2,0xe7,0xf6,0x41,0xfe,0x80,0xf8,0x58,0x7a, +0xd8,0xba,0x3a,0xed,0xaa,0xf7,0xa9,0x75,0xab,0xa1,0x52,0x5f, +0x69,0x57,0x6c,0x97,0x6b,0xe7,0xe0,0x68,0xed,0x66,0xe1,0x9d, +0x27,0xe3,0xdb,0x4a,0x9a,0x2e,0xd7,0xd7,0x64,0xd8,0x27,0xdb, +0xc6,0xd9,0xe8,0x2c,0xd5,0x34,0x9c,0x6f,0x9c,0x4b,0xe1,0x59, +0xfb,0x8d,0xfe,0x9e,0x87,0x5c,0x94,0xfd,0x59,0x5b,0x2b,0x55, +0xdc,0xf4,0x8d,0xb7,0xed,0xf2,0xc9,0x9b,0xa5,0x5a,0x88,0x5b, +0x0c,0xb0,0xdd,0x57,0x28,0x22,0x5a,0xe2,0x0f,0x93,0x0d,0x40, +0x59,0xbd,0xae,0xb1,0xaa,0xad,0xbc,0x97,0x13,0x7c,0x15,0xb9, +0x04,0xbb,0x18,0x97,0x83,0xf1,0x54,0x12,0x96,0xc0,0x15,0x2a, +0x09,0x1e,0x6c,0x8a,0x91,0x12,0xe8,0x33,0xad,0x69,0x92,0x24, +0x4c,0x13,0x0d,0x24,0x49,0x28,0x71,0x7f,0xac,0x06,0x6d,0xff, +0x90,0x7c,0xb8,0xb0,0x86,0xc9,0x4a,0xca,0x42,0x85,0xbc,0x9f, +0x88,0x3b,0xa8,0x2b,0xd3,0xc6,0xa1,0xb8,0x64,0xad,0x5a,0xbe, +0x85,0x12,0x6c,0xf8,0xf6,0x25,0x4c,0x87,0x23,0xaa,0x82,0x0e, +0x0b,0xc1,0xa2,0x13,0x81,0x91,0xdd,0x38,0x12,0xfa,0x61,0x7c, +0x0f,0x5e,0x33,0x86,0x31,0xd8,0x8f,0xc3,0x4d,0x60,0x38,0xbe, +0xc3,0x75,0xc6,0xf0,0x57,0x0f,0x4e,0x62,0xc4,0xbd,0x60,0x4f, +0x76,0x86,0xba,0xec,0x77,0x0e,0xe3,0x20,0x13,0x06,0x77,0xe2, +0x60,0xaa,0xae,0x4c,0x27,0xd6,0x99,0xc1,0x08,0xaa,0xae,0x83, +0xcd,0x60,0x30,0xd6,0xb1,0x3b,0xa5,0x7a,0xaf,0xc3,0x09,0x54, +0x5d,0x07,0x17,0xbd,0xaf,0x7c,0xd3,0xc0,0x65,0x09,0xb7,0x88, +0x18,0xd2,0x29,0x84,0x50,0x03,0x12,0x02,0xa7,0x09,0x6c,0x05, +0xbb,0x2e,0xb4,0x83,0xbf,0x8c,0xf1,0x2f,0x74,0x30,0x05,0x07, +0xdc,0x8a,0xbb,0x4c,0x61,0x17,0x26,0xf5,0x40,0x12,0xf8,0x77, +0xb1,0x8a,0x7e,0x2c,0xa6,0xa1,0x49,0x95,0xfc,0x14,0xfe,0xa6, +0x78,0xca,0xca,0xeb,0xe5,0xf7,0x49,0xe8,0x86,0xe0,0x15,0xfe, +0xdb,0x9b,0xfd,0xf9,0xfc,0xdb,0x39,0x6f,0x53,0x1e,0x71,0xf8, +0x98,0x62,0xb5,0xfd,0x77,0x03,0xbe,0x0f,0xb8,0x69,0xe3,0xcb, +0x5f,0xd2,0xcf,0x59,0x9d,0xba,0x91,0xc3,0x57,0x92,0xad,0xaa, +0x5a,0x06,0x55,0x2c,0x84,0x4f,0xc4,0xaa,0xc5,0x74,0x20,0xc3, +0x9f,0x08,0xb6,0x2d,0x83,0xb6,0x81,0x4b,0x6d,0x8b,0xe9,0x40, +0x59,0x28,0x95,0xef,0x23,0xf5,0x78,0x8f,0xbd,0x98,0x18,0x9d, +0x78,0x21,0xd1,0x32,0x91,0xf7,0xd7,0xb3,0x30,0xd5,0xb4,0x2f, +0xde,0xc9,0xd7,0x15,0x5c,0x2e,0x2d,0x28,0xe3,0x84,0xe7,0x78, +0x8a,0xb4,0xb4,0x95,0xf5,0xe7,0x3c,0xe3,0x6e,0x34,0x61,0x03, +0x93,0x98,0x17,0x97,0x1f,0x9d,0x6b,0x19,0xcb,0x07,0xac,0x73, +0xdc,0xa6,0x69,0x50,0xe1,0xce,0xa7,0x26,0xa7,0xa4,0x26,0xa5, +0xe6,0x58,0x14,0xd9,0x57,0xba,0x38,0x78,0x9a,0xfa,0x6e,0xf5, +0xce,0xb1,0xe5,0x1f,0x97,0xf6,0x95,0x34,0x57,0x75,0xd8,0xde, +0x74,0x79,0xb9,0x33,0xbb,0x89,0x5f,0x57,0x66,0x50,0x61,0x5d, +0xc5,0x75,0x81,0x1d,0x09,0xd2,0xf1,0xb3,0x76,0x76,0x72,0xaa, +0xf5,0x69,0xde,0xdd,0x7d,0x2e,0x8a,0xc7,0x50,0xac,0x23,0xfb, +0x23,0x0e,0x1f,0x0b,0x98,0xbc,0x93,0x89,0xdd,0xa9,0x54,0xc4, +0x74,0xe6,0xa5,0xd7,0xc4,0xa9,0x77,0x56,0xd9,0x32,0xe7,0x2f, +0x9d,0xcb,0x3d,0x9b,0xcf,0xb5,0x57,0x5b,0x33,0x67,0xcb,0xce, +0x5c,0xfe,0xa6,0x96,0xc3,0x9f,0x99,0x13,0x3b,0x8f,0xbb,0x1e, +0xdb,0xc9,0x6d,0x75,0xbe,0xc9,0x44,0xba,0x86,0xbb,0x1c,0x71, +0xe2,0xc0,0x0a,0xce,0x90,0x93,0x01,0x27,0x03,0x4e,0x04,0x72, +0x73,0x99,0x73,0x97,0xce,0xe6,0x9c,0xcd,0xe1,0x60,0xca,0x06, +0x72,0xf6,0xd2,0xd9,0x4b,0x67,0x72,0xb9,0x5f,0x98,0xd3,0x7b, +0x4e,0x07,0x9c,0xa2,0x21,0xd8,0x52,0x67,0x72,0x22,0xe0,0x78, +0x40,0xa4,0x3f,0xfd,0x7f,0x17,0xb2,0xce,0xe7,0x5d,0xa0,0xf1, +0xed,0xc4,0x35,0xe4,0x42,0xfe,0xf9,0x9c,0x73,0x39,0xdc,0x1f, +0xcc,0xe1,0x35,0x4a,0xc2,0x16,0x6c,0x27,0x29,0x07,0x52,0xf6, +0xa7,0xee,0xaf,0x2a,0xe6,0x2d,0x5a,0x4c,0x1a,0xf5,0x6b,0x5d, +0xfc,0xf9,0xac,0xb0,0xcc,0xfd,0x99,0xa1,0xcb,0x23,0x17,0x1f, +0x9b,0x7b,0xe2,0x7e,0xe5,0xc3,0xa6,0x2b,0x0d,0x0e,0xc5,0xbc, +0x89,0xe3,0x06,0x8b,0xd5,0x8e,0x7b,0x12,0x02,0xe9,0x4f,0x73, +0x5e,0x7d,0x61,0x7d,0x31,0x0d,0x5f,0x9d,0xfd,0x2c,0xbd,0x8d, +0x7d,0xbd,0x92,0x3d,0x53,0x7c,0x12,0x3d,0xdd,0xf8,0x87,0x9e, +0xb7,0x3d,0x6f,0xb8,0x87,0x1f,0xe7,0x4f,0xce,0x9e,0x76,0x1a, +0x87,0x4e,0x8e,0xa1,0x12,0x37,0x1e,0x26,0x9e,0xbb,0x00,0x13, +0xd4,0xd1,0xb2,0x0f,0x6c,0xd8,0x3f,0xcf,0x7f,0x8a,0xfe,0x2d, +0x86,0x43,0xd7,0xf9,0xe4,0x77,0xcf,0xef,0xfc,0x5e,0xba,0x15, +0xd5,0xf3,0x8b,0x2f,0xaf,0x2c,0x5c,0x50,0x20,0x91,0x3a,0xcc, +0x21,0xbf,0xe7,0xff,0x54,0x7a,0xad,0xc2,0xed,0x32,0xaf,0xe7, +0xb5,0xdc,0x67,0x4e,0x20,0x35,0x05,0x01,0x82,0xc7,0xff,0x8f, +0x29,0x8b,0x30,0x0d,0xde,0x10,0x98,0x87,0x8e,0x8c,0x51,0x6a, +0x68,0xaf,0x5a,0x1d,0x53,0x35,0x80,0x1f,0x46,0xb2,0xd6,0xd4, +0xe2,0xcd,0x73,0x63,0xf7,0x44,0x46,0x65,0xab,0xc3,0x79,0x4c, +0x98,0xc1,0xe2,0xd0,0x7d,0x32,0x23,0x63,0xb5,0x52,0x47,0xa5, +0x9b,0x37,0x8a,0x1e,0xc0,0x28,0x55,0xd1,0x06,0xb3,0xfe,0x6f, +0xf3,0x1d,0x4b,0xc1,0xf1,0xff,0x92,0xe3,0x28,0x77,0x54,0xac, +0x21,0x5b,0x4a,0x0d,0xaa,0x2d,0x1a,0xae,0xdd,0xab,0x7d,0x2e, +0x6d,0x91,0x8b,0x44,0x06,0x77,0xd9,0x50,0x7d,0x0f,0x1d,0x73, +0x43,0xab,0x0e,0x97,0x1e,0xef,0x3e,0xab,0x00,0xbe,0x5c,0xbb, +0x56,0xbf,0xdd,0x44,0x66,0xad,0xe5,0xb8,0xce,0x27,0xc7,0x82, +0xff,0xa1,0xec,0x5e,0x43,0x4f,0x7b,0xa7,0xd5,0x0d,0xfb,0x67, +0xae,0x9c,0x42,0x5b,0x98,0xf5,0x9f,0xdc,0x48,0xf8,0x4b,0xae, +0x4e,0xae,0x42,0xba,0x5e,0xf7,0xd5,0x81,0xf4,0xc7,0x2b,0x26, +0xfa,0x98,0x7e,0xc5,0x58,0x7f,0x20,0xfd,0x51,0x8f,0x0d,0x9a, +0x47,0x5c,0xca,0x74,0x6a,0xad,0x73,0x3d,0x9d,0xf8,0x0e,0xff, +0x2e,0xd7,0x06,0x77,0x4e,0xee,0x81,0x52,0x46,0x48,0xf5,0xe2, +0x6a,0xd3,0x06,0x0e,0x0a,0x1a,0xf0,0x0e,0x0c,0x67,0x7e,0x89, +0xfa,0xee,0xe2,0xaf,0x29,0x7b,0xeb,0x78,0x5c,0xe6,0x8f,0xdb, +0x8f,0x60,0xd2,0xc9,0x28,0x1b,0xfe,0x8f,0xb3,0x2f,0xcf,0x3e, +0xa2,0x38,0x84,0xc1,0x36,0x3b,0x48,0x60,0x65,0x76,0xab,0x9c, +0x71,0x86,0x53,0x9a,0x1d,0x7f,0x23,0x53,0x09,0x9f,0x74,0x55, +0x0b,0x1b,0x5d,0xba,0xe0,0x31,0x9b,0x1e,0x91,0x19,0x99,0x15, +0x41,0x63,0x7f,0x08,0x27,0xd9,0xf9,0x99,0xc5,0x89,0x45,0x76, +0xe9,0xfc,0x21,0xff,0x60,0xcf,0xa0,0x40,0x4e,0x1c,0x54,0x4f, +0x01,0x5a,0xda,0xee,0xb8,0xa0,0x86,0x74,0xfe,0xab,0xec,0x7d, +0x79,0xfb,0xd3,0x39,0xdc,0x8c,0x76,0x44,0x56,0x6b,0x5a,0x62, +0x56,0xe8,0x6d,0xcf,0xf7,0x78,0xb7,0xf8,0x52,0x5f,0x05,0x5a, +0xce,0xe4,0x63,0x55,0x6b,0x55,0x4a,0x33,0x8d,0x62,0x95,0xba, +0x40,0xe9,0x02,0x93,0x6a,0xd5,0xb9,0xf3,0x93,0x0b,0xa7,0x70, +0xc6,0x77,0xa4,0xeb,0x7e,0x2f,0x8c,0x28,0xfb,0xd6,0x2e,0x9f, +0x77,0x5d,0xae,0x8f,0x4a,0x32,0x1d,0x0e,0x7e,0xa2,0x78,0xe2, +0x19,0xe8,0xac,0x63,0xdb,0x26,0x3e,0x03,0xb3,0x75,0x2c,0x9e, +0x74,0x22,0x2b,0x50,0xe7,0x7b,0x16,0x0e,0x4d,0x04,0xb3,0x15, +0x68,0xc6,0x28,0xbf,0xfd,0xdc,0x79,0xab,0x51,0x40,0x56,0x50, +0x51,0xa8,0x90,0xdb,0xbf,0x35,0x4a,0xf8,0x59,0x8d,0xfa,0xf5, +0x49,0xd4,0x45,0x2c,0xef,0x16,0x77,0x51,0xc8,0x81,0x67,0x43, +0x71,0xad,0x01,0x75,0x11,0xad,0x1e,0x37,0xff,0x75,0x11,0x77, +0x99,0x90,0xa9,0x6e,0xf3,0x4c,0x97,0xdb,0x3f,0xf4,0xfa,0xd6, +0xff,0x35,0x75,0x11,0xc5,0x33,0x2a,0x17,0xb7,0xaf,0x96,0x69, +0xef,0x30,0x5c,0x2b,0xf9,0xf5,0xe7,0xad,0xb7,0xfa,0xba,0xee, +0x34,0xe9,0xf6,0x1a,0x3e,0x30,0x29,0x6a,0xe1,0xb7,0xb6,0x19, +0xf7,0xda,0xde,0xe0,0x44,0x33,0xc1,0x85,0x46,0x3f,0x30,0x11, +0x74,0x19,0xbc,0x3e,0x8c,0x8e,0x26,0x49,0x23,0x5d,0x89,0x17, +0x40,0x17,0xa7,0xd3,0xb8,0x08,0x94,0x70,0x30,0xc9,0x77,0xc8, +0x37,0x49,0xb7,0x6a,0x2e,0xe1,0x43,0x1a,0xbd,0xfa,0x77,0x57, +0x71,0x78,0x00,0xf7,0x93,0x86,0x96,0xba,0x67,0xd9,0x57,0xad, +0xf3,0xf8,0x10,0x99,0xcd,0x6a,0x27,0xc7,0x81,0x5d,0x36,0x6b, +0x92,0xe5,0x91,0xe9,0x9a,0x2e,0x1d,0x90,0x87,0x95,0x84,0x16, +0xfc,0x73,0x40,0x7e,0xf9,0x9f,0x03,0x72,0xf3,0x44,0xde,0x77, +0xa3,0x95,0x86,0xa6,0x51,0xb5,0x1b,0x5f,0x5e,0x54,0x52,0x96, +0x57,0xc9,0x09,0xc9,0x13,0xa5,0x4f,0x64,0xb8,0xb4,0xa4,0xf3, +0x61,0xa5,0xa1,0x05,0xfb,0xe8,0x27,0x4c,0x5a,0xf0,0x26,0xf3, +0xdf,0x53,0xf3,0x3d,0x5b,0x5c,0x35,0xcc,0x8c,0xea,0xbd,0xf9, +0xdc,0xc2,0x81,0x53,0xf3,0x69,0x62,0x07,0x81,0x6a,0xd4,0xed, +0x03,0xf7,0x26,0x74,0xbf,0x6a,0xa2,0x27,0x1d,0xd9,0x78,0x1a, +0xe2,0x76,0xac,0x06,0x4d,0x7d,0xf4,0xb6,0x01,0x6f,0x1c,0xdc, +0x03,0x83,0xc1,0xb3,0x09,0x3d,0xaf,0x48,0x85,0x4f,0x0b,0x09, +0x7a,0x32,0xce,0x87,0x13,0x2a,0xd5,0x05,0x6b,0xd8,0x83,0x27, +0x71,0x29,0x9b,0x32,0xd0,0xc1,0xa8,0x3a,0x25,0x85,0x2a,0x4d, +0x1d,0xbe,0x13,0x53,0x59,0xed,0xc2,0xc0,0xab,0x6a,0x70,0x80, +0xa9,0x4a,0x90,0xa0,0xc3,0x18,0xd6,0x34,0x55,0x49,0x11,0x49, +0xa3,0xe6,0x3b,0xf0,0x85,0x26,0x0b,0xba,0x77,0x88,0x26,0x8e, +0xbf,0xc3,0xa2,0x16,0x5a,0x92,0x07,0xf0,0xc5,0x16,0xb6,0xed, +0x01,0x81,0xf1,0x5b,0x70,0x3c,0xa3,0xfc,0xd7,0x0e,0x61,0x2c, +0xe9,0x13,0x37,0x42,0x16,0x0b,0x7c,0x2c,0x28,0xa7,0xfc,0x9a, +0xb3,0xab,0x9b,0x47,0x3d,0x6b,0x4c,0x3d,0x88,0xa5,0x27,0xe2, +0x0c,0x79,0x18,0x76,0x06,0x86,0x9d,0xfd,0x33,0x8a,0xc3,0x54, +0x71,0xbe,0xa1,0x30,0x9a,0x75,0xc0,0xc1,0x38,0x6e,0x36,0x06, +0x22,0x29,0x33,0xe7,0x69,0x3c,0x3f,0x03,0x46,0x7e,0x48,0x87, +0xb1,0x14,0xe0,0x69,0x5c,0x11,0x34,0xa4,0x0d,0x80,0xb1,0x30, +0x75,0x36,0x1c,0xc5,0x19,0x25,0x1d,0x3c,0x06,0x02,0x8d,0x5a, +0x3e,0xd8,0xc2,0x60,0x0e,0x66,0x7c,0x4f,0x3a,0xba,0x9b,0x1f, +0xe5,0x5e,0x33,0xcd,0xe7,0x03,0xf5,0x6d,0x37,0x5b,0x9a,0x73, +0x62,0x10,0xa8,0x93,0x12,0xa7,0xe6,0x2d,0x97,0xcc,0xdb,0xf3, +0xf8,0xc0,0x36,0x9b,0x87,0xee,0xf5,0x74,0x2d,0xf2,0xe0,0x24, +0x09,0x8f,0x3f,0xfc,0xb9,0x12,0xf3,0xc4,0xd9,0xd8,0xce,0x0b, +0x52,0x25,0x66,0xef,0x95,0xda,0xde,0xca,0x3b,0x3b,0x2b,0x78, +0x1f,0x13,0x1f,0x1b,0x77,0x47,0xae,0x8c,0x85,0x86,0xff,0xc9, +0x7c,0xfd,0xe8,0x53,0xc5,0x8f,0x99,0xaf,0x54,0xbe,0x91,0x8e, +0x61,0x8f,0x7d,0xc2,0x35,0x12,0xf3,0x75,0x89,0xd0,0x4c,0xc4, +0x34,0x21,0x44,0x48,0xc3,0x6f,0xd8,0xe4,0xe2,0x84,0x52,0xa9, +0x9d,0xc8,0xd9,0x0e,0xf1,0xae,0x39,0x24,0x31,0x87,0x7d,0x0f, +0x7a,0xee,0xf7,0xe4,0xc4,0x33,0xe7,0xc8,0x29,0xa9,0x44,0x73, +0x80,0x08,0xbb,0xf0,0xf5,0xc5,0x01,0x22,0x6c,0x78,0x8b,0x8b, +0xc9,0xaf,0xc2,0xa0,0xb9,0xac,0xe5,0xb0,0x59,0xe2,0xa0,0xdf, +0x58,0x5c,0x32,0x4c,0x18,0x34,0x55,0x1c,0xc4,0x20,0x8b,0xe7, +0xc8,0xeb,0xb2,0x3b,0x35,0xbd,0x6d,0x2e,0x95,0xbc,0xa5,0xed, +0x36,0xe7,0x55,0x7e,0x9c,0x30,0xe6,0x31,0xb9,0xee,0xfb,0x83, +0x65,0xbf,0x43,0x71,0x13,0x6f,0x50,0xb3,0xaa,0x49,0x27,0x9f, +0x1a,0xd7,0x55,0x82,0x2d,0x39,0x1f,0x7e,0x2e,0xfc,0x7c,0x44, +0x5d,0x15,0x6f,0xf5,0x83,0x25,0xcc,0xd8,0x0d,0x23,0x2c,0xf6, +0xf3,0x97,0x66,0xd6,0x20,0xdf,0x34,0x87,0xc3,0x4e,0xa6,0xeb, +0xf7,0x4a,0x18,0x97,0xfa,0x87,0x2c,0x99,0xdf,0x8b,0xa3,0xed, +0x71,0xa2,0xe1,0xdc,0x3a,0x37,0xfe,0x7c,0xd4,0xb9,0xe8,0xf3, +0xd1,0x9c,0xeb,0x23,0xf6,0x14,0xba,0x78,0xe3,0x88,0xd9,0x38, +0x44,0x3a,0x04,0x1d,0x0c,0x4c,0x35,0xcc,0x3a,0x03,0x81,0x1c, +0x8c,0x73,0x66,0x66,0x44,0xa0,0xf2,0x11,0x1d,0x35,0xb3,0xf0, +0x03,0x61,0x46,0x93,0x75,0x98,0x24,0x53,0xa5,0x7e,0xe6,0x76, +0x65,0xca,0xdb,0x14,0xf5,0xb8,0xab,0x31,0xc0,0xc3,0x18,0xd5, +0x67,0x90,0x42,0xc4,0x54,0x61,0xb1,0x90,0x8a,0xee,0x6c,0x52, +0x49,0x5c,0xe9,0x45,0x3a,0x7b,0xb7,0x76,0xf1,0xa0,0x0c,0x02, +0x99,0xa3,0x3e,0x87,0xbc,0xc2,0x3c,0xb8,0xb5,0xb8,0x88,0xbc, +0x87,0x86,0x39,0xac,0xf5,0xb0,0x99,0xd8,0xf0,0x51,0x9a,0x26, +0x34,0xe0,0x10,0xea,0x9d,0xc1,0x08,0x59,0xd2,0xe9,0xfd,0xc0, +0xaa,0xd5,0xb6,0xb4,0x8e,0xb7,0xac,0xd3,0x68,0x34,0x2d,0xe6, +0xf0,0x35,0x6e,0x27,0x4f,0xca,0xfb,0xea,0x5b,0x5b,0x1d,0xcb, +0x78,0x07,0x5b,0x03,0x47,0x0d,0xdf,0x01,0x0d,0xaa,0x22,0x89, +0x5b,0xbb,0x28,0xb6,0xd1,0x2a,0x68,0xe3,0x71,0xd4,0x1d,0xfb, +0xc6,0x3d,0x7d,0x9c,0x3e,0xb3,0xc7,0xc4,0x4a,0x86,0x13,0xb7, +0xe5,0xcb,0x78,0x18,0x7f,0xbf,0xbf,0x33,0xe9,0x11,0x27,0x64, +0x2b,0x08,0xb9,0xf6,0x5b,0x2d,0x8c,0xbc,0x24,0x01,0x7f,0x14, +0xa9,0x81,0x98,0xd4,0x25,0x9a,0x61,0x09,0x8b,0x81,0x07,0x71, +0xb1,0x0d,0x4e,0x54,0xf3,0xec,0xb1,0x78,0xe0,0xd2,0xe8,0xec, +0xc3,0x67,0x04,0x66,0xfb,0x64,0x79,0xc9,0xc2,0x8c,0xc2,0xf4, +0xbf,0xe2,0xc0,0x1e,0x32,0x40,0xc0,0xc9,0x52,0x92,0xe6,0x14, +0xf1,0x1a,0x1b,0x7c,0x3c,0xf8,0x78,0xd0,0x89,0x44,0x2a,0x88, +0x23,0x32,0x61,0x68,0xde,0x4f,0x45,0x49,0x41,0x09,0x41,0x71, +0x21,0x71,0x31,0xfc,0xe9,0x93,0xa7,0x4e,0x9d,0x3e,0xd9,0xec, +0xc1,0xdf,0x83,0x65,0xe9,0x92,0x9d,0x49,0x91,0xba,0x44,0x85, +0x4e,0xf7,0x9a,0x67,0xb1,0xc2,0xe5,0xa1,0xef,0xf3,0x80,0x57, +0xb2,0xbd,0x7c,0xc1,0x8c,0xf2,0xc5,0x2d,0xab,0xad,0xb6,0xeb, +0x19,0x6c,0xb0,0x28,0xb2,0xe0,0x1f,0xb5,0x5d,0xeb,0x6b,0xbf, +0x53,0xa7,0xdb,0x69,0x78,0xcb,0xb8,0xb8,0x99,0xdf,0xde,0x6e, +0xde,0xef,0x48,0xa3,0xf4,0x35,0x52,0xc2,0x82,0xd7,0xaf,0xe0, +0xc5,0xd0,0x98,0x76,0x1e,0x01,0xaf,0xe9,0xe8,0x45,0x55,0x67, +0xe2,0x59,0x32,0x8d,0xd9,0x7d,0xe4,0x62,0xae,0x3a,0x9c,0xa6, +0xce,0xa8,0x12,0xed,0xd8,0x8a,0xaa,0xd2,0xa6,0x4b,0x0d,0x5c, +0x2d,0xa6,0xb1,0x71,0x19,0xb1,0x19,0x31,0x99,0x26,0xf1,0xbc, +0xfb,0x22,0xcd,0xc5,0x4b,0xb4,0xcb,0x1d,0xf8,0xd8,0x18,0x25, +0x8c,0x87,0x69,0xec,0x31,0x9c,0xae,0x39,0x07,0x57,0xe9,0x48, +0xfb,0xed,0xdb,0xef,0xbf,0x84,0x91,0x17,0x60,0x33,0x47,0x81, +0xde,0x05,0xc6,0x28,0x2b,0xa0,0x5f,0x0d,0x86,0x48,0xe9,0x1b, +0x75,0xea,0xf0,0xa5,0x14,0x8e,0x8b,0x77,0xe0,0xf8,0x00,0x7f, +0x8b,0xb7,0xc4,0xdf,0xf2,0xa9,0x63,0xda,0x67,0xfe,0x96,0xd1, +0xe6,0x30,0xfa,0x1f,0xfe,0x16,0x17,0x89,0xbf,0xe5,0xf2,0x7f, +0xf9,0x5b,0x86,0x48,0xfc,0x2d,0xdf,0xff,0x6f,0xfc,0x2d,0xa5, +0xc9,0x9c,0xb0,0x14,0x3e,0x91,0x3d,0x2e,0x1e,0x76,0x3b,0x5d, +0x39,0x3c,0xcc,0x54,0x95,0x97,0xd7,0x14,0x35,0x70,0x3f,0x48, +0x94,0x2b,0x3a,0xa8,0x0d,0x3a,0x52,0x3b,0x28,0x1d,0x02,0x3a, +0x20,0x43,0x1d,0x56,0xf9,0xaf,0x49,0x67,0xc8,0x3c,0x66,0xf7, +0xd1,0x8b,0x39,0xea,0xf0,0x35,0x50,0xd4,0x87,0x46,0x6c,0x59, +0x55,0x71,0x53,0xb6,0x34,0xb5,0x8b,0x6c,0xec,0xc0,0xd4,0x4c, +0xe3,0x79,0x8f,0x85,0xda,0x4b,0x56,0x48,0x53,0x3b,0x7b,0xf6, +0xdc,0x99,0xb3,0x67,0x39,0x3a,0x3d,0x15,0x69,0x7a,0xda,0x73, +0x70,0xb1,0x4e,0xbe,0x05,0x0f,0x9b,0x1f,0x3e,0x83,0xe1,0x17, +0x60,0x13,0x47,0xe3,0xcd,0x28,0x89,0x97,0xa7,0x57,0xed,0x23, +0x53,0x9f,0x98,0x54,0x2b,0xcd,0xce,0x92,0x5a,0xa9,0x2b,0xf2, +0xf1,0x44,0x91,0xdf,0xff,0x1a,0x6c,0xe5,0x86,0xac,0x09,0x76, +0x52,0x67,0x09,0x67,0x60,0x3a,0x23,0x04,0xb9,0x90,0x60,0x17, +0x4f,0x3b,0x57,0x7a,0xbb,0xfb,0x98,0xca,0xf2,0xd2,0x9a,0xc2, +0x06,0xee,0xc5,0xe7,0xdb,0xdd,0x20,0xdd,0x6e,0xf0,0xe7,0xdb, +0xd5,0xa1,0xb7,0xab,0xf0,0xf9,0x8d,0xc0,0x74,0x2c,0xc1,0xe9, +0x74,0x51,0xec,0xe1,0x0a,0x41,0xbb,0x07,0x48,0xba,0x35,0xbe, +0xe3,0x84,0x49,0x1d,0xa2,0x06,0xcc,0x64,0x60,0x42,0x14,0x8c, +0x89,0xff,0x98,0x19,0xd4,0xc2,0xa3,0x8f,0x3d,0x16,0x9d,0xc6, +0xf3,0xdf,0xc4,0xca,0xf8,0x3f,0x4f,0xc3,0x88,0xaf,0x81,0x3d, +0xcf,0xe1,0x34,0x69,0x4f,0x90,0x63,0x35,0x57,0xe0,0x68,0x23, +0x34,0xdf,0x9a,0x23,0xe3,0x2b,0x93,0xcb,0x92,0x4a,0x12,0x39, +0x71,0x5c,0x5f,0xab,0x70,0xc9,0xb2,0x57,0x18,0xcf,0x96,0x1e, +0x28,0x3f,0x58,0x19,0xc6,0x61,0x28,0xbc,0x25,0x85,0x95,0x69, +0xe5,0x89,0xe5,0xa6,0x19,0xfc,0x61,0xef,0xbd,0xce,0xbb,0xbd, +0x38,0x51,0xff,0x0e,0x49,0xdf,0x93,0xe9,0x1e,0xef,0xdd,0x45, +0x5d,0x41,0x79,0x68,0x51,0x70,0x0e,0xe7,0x24,0x4e,0x92,0xa0, +0xff,0xdd,0xae,0xdc,0x67,0x5c,0x14,0xae,0xbf,0x02,0xeb,0xa3, +0x98,0xdc,0x75,0x4f,0x4d,0x61,0x9c,0x09,0x27,0xe6,0xe0,0x7c, +0xf2,0x0b,0xec,0x9b,0xc7,0xf6,0x4c,0xfc,0x05,0x4e,0xcc,0x63, +0xb1,0xc3,0x9a,0xcc,0xc4,0x7d,0x1f,0x59,0xa8,0x98,0x08,0x27, +0x66,0xe2,0x09,0xea,0x50,0x21,0x8e,0x34,0xde,0x4d,0xbd,0x15, +0xfd,0xdb,0xc3,0xf3,0xf7,0x2e,0xdc,0xbf,0xc8,0xa1,0xdd,0x4c, +0x36,0xd1,0x46,0xe9,0x25,0x53,0x99,0x9c,0x5c,0xa9,0x0e,0x76, +0x6c,0x7d,0xf4,0xe9,0x3a,0x87,0x48,0x25,0x30,0xa5,0x90,0xed, +0x62,0x7a,0x54,0xe6,0x85,0x4c,0xd9,0x05,0x3e,0x32,0x20,0x32, +0xf8,0x48,0x30,0x87,0x63,0x71,0x34,0xe3,0xf9,0xb5,0xdf,0xe9, +0x5d,0x6a,0x9b,0x4f,0x9e,0xb7,0xb9,0x75,0x36,0x72,0xcd,0x01, +0x33,0x47,0x3d,0x15,0xb9,0x1f,0x75,0x9a,0x0b,0x59,0x97,0xe4, +0x83,0xb5,0x6a,0xd7,0x98,0xb2,0xc4,0xc4,0x52,0xf5,0x1b,0xac, +0x43,0x82,0xd2,0x2a,0x53,0xf6,0xc0,0xf1,0xb3,0x89,0x74,0x5d, +0xf0,0x2c,0x3b,0xff,0x98,0xc3,0x26,0x3b,0xb5,0x22,0x07,0xa5, +0xbb,0xb5,0xf9,0x4d,0xaf,0x55,0x45,0x47,0x4f,0x02,0x41,0x38, +0x97,0xd1,0x08,0xdf,0x76,0x7c,0xf3,0x71,0xee,0x9b,0xac,0xaf, +0xb3,0x72,0x54,0x9b,0x5b,0x48,0xce,0xee,0x5c,0x8f,0x34,0xaf, +0xcb,0x97,0xf8,0xa0,0xaa,0xc0,0xfc,0xc0,0x5c,0x0e,0xce,0x8b, +0x06,0xe4,0x5e,0xd2,0xcd,0xac,0xde,0xc2,0x3e,0xef,0xbb,0xbb, +0xbf,0xdd,0x97,0xd4,0xcc,0x6b,0xa5,0x98,0xa4,0x59,0x5c,0xea, +0xad,0x6c,0x6c,0x2a,0xec,0xe6,0x2a,0x44,0x75,0x5b,0x78,0xc4, +0xee,0x76,0x75,0xf1,0x30,0xf7,0x71,0xca,0x71,0x2d,0x72,0xaf, +0xd8,0xe9,0xc3,0x17,0x7a,0x95,0xfa,0x5d,0xde,0x6d,0xbf,0x4f, +0xb6,0x9f,0x6a,0x38,0x9e,0xbd,0x44,0x9a,0x60,0xb2,0x0d,0x33, +0x4d,0x62,0xac,0x09,0x5d,0x21,0xfb,0x6b,0x7c,0xfb,0x62,0x08, +0x65,0xc5,0xe3,0x96,0x04,0x35,0x71,0x19,0x68,0xb2,0x34,0x58, +0xd7,0x24,0xd2,0x08,0x96,0x31,0x5d,0x74,0x48,0x07,0xeb,0x50, +0x93,0x55,0xfe,0x08,0x0f,0x49,0xfd,0xf5,0xf4,0x6b,0xd1,0x4f, +0x1e,0x9c,0xbf,0x73,0xe1,0x0e,0x85,0xc0,0x1b,0x97,0x00,0x6f, +0x8d,0x2a,0x55,0x6c,0xa2,0xbd,0xd2,0xb7,0x4c,0x65,0x62,0x52, +0x85,0x3a,0x6c,0x64,0xeb,0x2e,0x9c,0xaa,0x3b,0x78,0xea,0xab, +0x53,0x07,0x4f,0xab,0xc0,0x46,0x9c,0xc9,0x46,0xa7,0x44,0xa5, +0x46,0x65,0x9a,0x5d,0xe0,0x8f,0x05,0x45,0x86,0x1c,0xde,0xcb, +0xe1,0xa8,0x15,0x8c,0xfb,0xd7,0x5e,0xa7,0x7c,0xd4,0x96,0x9f, +0xbc,0x60,0x95,0xf3,0xcd,0xa5,0x33,0x97,0xbe,0x51,0x89,0x30, +0xd8,0x6f,0xb1,0x53,0xc6,0xc9,0x7f,0x86,0x27,0x44,0x97,0x39, +0x70,0xfc,0x1c,0x7d,0x56,0x43,0xf1,0x24,0xbb,0x39,0xdc,0x43, +0xd3,0x5e,0xad,0xc4,0xe5,0x56,0x7d,0x7a,0xc5,0xd9,0xeb,0x2a, +0x30,0x5d,0x93,0x71,0x49,0x39,0x5c,0xaf,0x76,0x9b,0x29,0x4f, +0x4c,0x2c,0x51,0xbf,0xc6,0xda,0x25,0x28,0x29,0xfc,0x5c,0x08, +0xf8,0xe0,0x38,0x66,0x7b,0x84,0xd6,0xf1,0xad,0x27,0xb8,0x33, +0x79,0x5f,0x17,0x16,0xab,0xd6,0xc4,0x92,0xe2,0xdd,0x39,0x41, +0x39,0xbe,0xc5,0xb9,0x7c,0x60,0x91,0x6f,0x8e,0x5f,0x16,0x27, +0x9f,0x44,0xcd,0xad,0x38,0xce,0x16,0xae,0x33,0x01,0xee,0xee, +0xbe,0x76,0xbb,0xed,0xb3,0x5d,0x73,0xdd,0x4b,0x3c,0x3c,0xf8, +0x7c,0xff,0xe2,0xc0,0x8a,0x20,0xdb,0x7d,0x66,0x61,0xba,0x5f, +0xa5,0xd8,0xf2,0x4f,0x92,0x6f,0x67,0xf6,0x16,0x74,0x05,0xdc, +0x0c,0xfe,0x76,0x5f,0x72,0x33,0xbf,0x23,0xc9,0x3c,0xd9,0x2e, +0xad,0xb5,0xb4,0xba,0x36,0xaf,0x95,0x13,0x7b,0xf1,0x26,0xd1, +0xd9,0xb4,0x50,0x07,0x27,0x9a,0x15,0x5a,0xf1,0xdd,0xd9,0x1d, +0x05,0x4d,0xa5,0xf4,0x59,0xf4,0x97,0x0b,0xa1,0xee,0xfd,0x10, +0x2d,0x9e,0x67,0xb3,0xb2,0x32,0xb2,0x53,0x2f,0x71,0x42,0x41, +0xfb,0xdf,0x13,0x64,0x0c,0xc4,0x62,0x38,0x81,0xc1,0x42,0x28, +0x0e,0xa6,0x20,0xf7,0x4f,0xf9,0x0c,0xd2,0x0b,0x99,0x36,0x3d, +0x4d,0x90,0xd9,0x8c,0x99,0x37,0x8d,0xb5,0xe9,0x8b,0x89,0xf6, +0x40,0x4e,0xbc,0x11,0x2b,0x5f,0x22,0x2e,0x20,0x28,0x6b,0xc7, +0x2f,0xda,0xb6,0xdc,0xe2,0x84,0xe1,0xad,0xe2,0x3a,0x18,0xc6, +0xc0,0xf8,0x0b,0x30,0x3c,0x16,0x86,0xa7,0x06,0xd5,0xf3,0xe8, +0xe7,0x8d,0xd1,0xc7,0xb0,0xf2,0xe4,0x45,0x6b,0x6a,0xf0,0xcf, +0x00,0x7b,0x06,0x06,0x51,0x60,0x3b,0x58,0x9c,0x6b,0x09,0x02, +0xab,0xa1,0x85,0x9c,0x05,0x1a,0xcb,0x32,0xad,0xf8,0x9a,0x84, +0x8a,0xf8,0x52,0x6a,0xb3,0x6e,0xf5,0x34,0x0b,0x29,0xd6,0x3d, +0x70,0x8b,0x2d,0x3d,0x74,0xf9,0x50,0x0d,0x15,0x81,0x48,0xa8, +0x20,0x05,0x45,0x19,0xf9,0xa9,0x65,0xb2,0x54,0x3e,0xcc,0x37, +0xd8,0x6b,0xf7,0x6e,0x4e,0xdc,0xd2,0x4a,0x32,0x82,0xd3,0x03, +0x12,0x02,0xdb,0xd3,0xf8,0x03,0x39,0x41,0x79,0xa1,0xe9,0x5c, +0x24,0xf6,0x92,0x5f,0x6b,0x3b,0xeb,0xf2,0x7b,0xa8,0x86,0x8d, +0xef,0x83,0xf1,0x51,0x4c,0xbe,0xf1,0x15,0x87,0xdf,0x1d,0x39, +0xf1,0x2b,0x1c,0x4b,0x1e,0x42,0xd0,0x66,0xb6,0x6b,0xe2,0x43, +0x88,0xdc,0xcc,0x62,0xb3,0x03,0x59,0x8b,0x41,0xcf,0x59,0x28, +0x9e,0x08,0x91,0x6b,0x31,0x92,0x51,0x86,0x08,0x61,0x02,0x81, +0xa9,0xdf,0xd5,0x7d,0x7f,0x16,0xa6,0x73,0xb0,0x02,0xed,0x50, +0x9d,0x49,0xb0,0xa4,0xe1,0x14,0x53,0x95,0x9a,0x4c,0x25,0xc5, +0x1a,0x3a,0xdb,0x45,0xcd,0x67,0x06,0xeb,0xc4,0x65,0x32,0xb8, +0x43,0xdd,0xf0,0x28,0x3f,0x5d,0x54,0x59,0xcb,0x45,0x41,0x18, +0xf1,0x34,0xb3,0xb3,0x5d,0xe3,0x50,0xe6,0xc0,0xbf,0x6c,0xec, +0xec,0x2c,0xee,0xe6,0x04,0xf7,0x08,0x72,0xc3,0xee,0x86,0x69, +0xa7,0x41,0xf5,0x65,0xde,0xf4,0xfa,0xb6,0x2e,0x83,0x1a,0x0e, +0x6c,0x14,0x3b,0x89,0x4b,0x9b,0xee,0x43,0xeb,0x06,0xeb,0x60, +0x5e,0xa2,0xe2,0xcd,0x08,0xdc,0x1c,0x39,0xf7,0xf8,0xd4,0x01, +0x26,0xde,0xd7,0x10,0x82,0xaf,0xef,0x1a,0x6a,0xe0,0x43,0x0c, +0x81,0x87,0xff,0x30,0xf1,0xce,0x3a,0x81,0x93,0x4e,0x5d,0x30, +0xe5,0x21,0x3d,0x4a,0x62,0xe2,0xdd,0x9b,0x95,0x16,0x9c,0xb2, +0x37,0x31,0x84,0x53,0x18,0x4b,0x2c,0x51,0x71,0x38,0x1a,0xe3, +0x18,0xe1,0xcd,0x44,0xcc,0x85,0xd1,0x90,0x4b,0xa7,0xb0,0x4a, +0xfe,0x15,0x91,0xe7,0x75,0x29,0xde,0xfd,0xcd,0x5e,0x6f,0x92, +0x97,0x76,0x29,0xca,0x18,0xd8,0x74,0x89,0xc0,0xa4,0x67,0x0d, +0xef,0xc1,0x52,0x15,0x72,0x8c,0x67,0xe2,0x7e,0x0b,0xd8,0x3f, +0x1b,0xfd,0x2d,0xc0,0x8f,0x3d,0xed,0x7f,0x2a,0xe0,0x44,0xd0, +0xf6,0x83,0xab,0x0f,0x6f,0x8a,0x88,0x36,0xe7,0xaf,0x47,0x3f, +0x8d,0xbb,0x9a,0x18,0xac,0xed,0xe4,0xa2,0xb1,0x93,0x83,0xd7, +0x6e,0x74,0xdd,0x97,0x40,0x64,0x1b,0x7d,0xfe,0xc3,0x60,0x57, +0x1b,0xee,0x82,0x41,0x70,0xb8,0x0d,0x0f,0x7f,0x34,0x62,0x94, +0xe5,0xea,0x52,0x01,0xd3,0x0a,0xf0,0x12,0x96,0x8b,0x43,0xd9, +0xe4,0xbc,0xc4,0xc2,0xd8,0x5c,0xdd,0x58,0xfe,0x88,0xdf,0x41, +0xaf,0x10,0x6f,0x0e,0xab,0xc5,0xe5,0x82,0x25,0xae,0xc0,0x5a, +0x26,0xe3,0x72,0x5a,0x6d,0x62,0xb9,0x51,0x0a,0x1f,0xe6,0x18, +0x64,0x19,0xe8,0xcc,0xe1,0x0e,0x53,0xa1,0x02,0x4d,0xaf,0x80, +0x29,0x74,0x76,0x31,0xe2,0x51,0x41,0x8d,0x60,0x12,0x8c,0xa5, +0xd0,0xab,0x87,0x2e,0x11,0x1d,0x14,0xe2,0x58,0x16,0x5f,0x5b, +0x11,0x94,0xae,0x13,0x16,0x1e,0x4c,0xa4,0x97,0x08,0x16,0x32, +0xca,0xc2,0x23,0x1a,0x6f,0xed,0x8f,0x39,0x7a,0xfa,0xc8,0x81, +0x23,0x07,0xf9,0x63,0x37,0x19,0x69,0x57,0x21,0x26,0x89,0x13, +0xc6,0x76,0x2b,0xfe,0x34,0x11,0x96,0x31,0xfa,0x38,0x1c,0xd5, +0x17,0x60,0xf8,0xa6,0x6c,0x13,0x1e,0x34,0x7a,0x80,0xbf,0xfd, +0xea,0x0d,0x47,0x43,0x32,0x38,0xc9,0xc6,0x7e,0xa6,0xd0,0x9a, +0x82,0x1e,0x85,0xed,0x4a,0x8a,0x30,0x31,0x85,0xb4,0x08,0xed, +0x56,0x57,0x84,0x29,0x0a,0x0d,0x71,0x0a,0x2b,0x1f,0x02,0xdf, +0x11,0x0c,0x16,0xdb,0x21,0x98,0x55,0x16,0x2c,0xe5,0xd3,0x24, +0xd6,0xa1,0xa4,0xeb,0x09,0x57,0x2e,0x76,0x49,0xad,0x4e,0x4d, +0x0f,0xed,0x08,0xd3,0xe2,0x50,0xcd,0x08,0xbe,0x60,0x02,0x66, +0xfa,0xcc,0xf0,0x58,0xd3,0xed,0xde,0xb5,0xb3,0xcb,0xd1,0x7a, +0xeb,0x0e,0xed,0x95,0x7a,0x97,0x2d,0xf9,0xef,0x6f,0xde,0xb9, +0xdd,0xf1,0xbc,0xc6,0xb3,0xd6,0xad,0xd6,0xb9,0xa2,0x95,0xb7, +0xab,0x71,0xb8,0xec,0x54,0x7a,0x05,0x94,0xca,0x41,0x25,0x89, +0x7a,0x3b,0x41,0x4b,0x7c,0x49,0xf0,0x08,0x63,0x72,0x38,0xae, +0x53,0x1d,0x1e,0xc2,0x73,0x61,0x9c,0xb8,0xce,0x04,0xfe,0xc2, +0x64,0x7c,0x21,0x4e,0x67,0x37,0x94,0x78,0x3f,0x55,0x83,0x33, +0xd2,0x86,0x7d,0xa3,0x3a,0x68,0x0f,0xf0,0x4f,0x05,0x7c,0x22, +0x05,0x8f,0x72,0xde,0x5c,0x7a,0xc7,0xc1,0x02,0xe6,0x2b,0x54, +0xf7,0xc5,0xe1,0xa6,0x33,0x1c,0x4b,0x9c,0x0a,0x5c,0x72,0xa5, +0xa3,0x14,0xb9,0x0e,0xe9,0x12,0x47,0xbf,0xd3,0x5a,0x28,0x32, +0x68,0xce,0xe2,0x99,0x10,0xb4,0xd0,0xc0,0x49,0x6a,0x6d,0x16, +0x4a,0x4f,0x61,0x49,0x06,0x78,0x42,0x9c,0x2a,0x4c,0x66,0xe5, +0x46,0x8a,0x95,0x52,0xff,0x5a,0xcf,0xc3,0x71,0xa5,0xea,0xb0, +0x97,0xfd,0xe1,0xf2,0x9f,0x37,0x6f,0xdd,0x74,0x6b,0xe0,0x0d, +0x0d,0x56,0x19,0x6d,0xf4,0xe0,0x20,0xd1,0x50,0xec,0x64,0x35, +0xf3,0x76,0xdf,0x1c,0x68,0x69,0x9b,0x9c,0x4e,0xfd,0xf0,0x32, +0xd6,0x34,0x4d,0x49,0x4c,0x01,0x35,0x02,0x36,0x5d,0x68,0x03, +0x01,0x86,0xe2,0x33,0xc6,0x25,0xc2,0x25,0xd2,0xe5,0x58,0x8c, +0x11,0x2f,0xe5,0xc5,0x4c,0xc9,0x83,0x91,0x85,0x11,0x3d,0xbc, +0x61,0x98,0xf6,0x81,0xed,0x5f,0x71,0x12,0x3d,0xd2,0x73,0x62, +0x31,0x4b,0x73,0xcd,0x32,0x9d,0x32,0x6b,0xfe,0xdd,0xdd,0x87, +0x3f,0xf7,0x7c,0xe2,0xe4,0xd3,0x14,0x37,0xc8,0x92,0x8a,0xad, +0x75,0x86,0xcd,0x8f,0x9e,0x76,0xbe,0x2f,0x86,0x2f,0x38,0xa9, +0x7c,0xc0,0x1c,0xcc,0xd9,0xf0,0x9d,0xfb,0xec,0xf6,0x79,0xb4, +0x05,0xf3,0x97,0x1a,0x33,0xdb,0xe3,0xda,0xe9,0xf5,0xa8,0xcf, +0xc4,0xb6,0x51,0x14,0x26,0xa1,0x5b,0x20,0xae,0xd8,0x82,0x23, +0xd4,0x5a,0x1d,0xef,0xc3,0x84,0x12,0x98,0x7b,0x0e,0xbc,0x54, +0x84,0x99,0xcc,0xee,0x05,0x76,0x6b,0xb6,0x6b,0xea,0x5c,0xb5, +0xbd,0xe7,0x26,0x11,0xdb,0x56,0xaf,0x6a,0xda,0x7c,0x53,0x5b, +0xcf,0x72,0xa3,0xc3,0x7c,0x89,0xd8,0xf6,0x7d,0xe5,0xcb,0xa6, +0xdb,0x7d,0xd7,0xcc,0x9f,0x58,0x7f,0x70,0xe4,0xb0,0x5f,0xa8, +0x23,0x68,0x46,0xbf,0xcb,0x8c,0xc1,0x3f,0x8c,0x89,0xe5,0xec, +0x65,0x38,0x62,0x81,0x26,0xc5,0x73,0x55,0x85,0x85,0x85,0x52, +0x5e,0x81,0x56,0x8f,0x70,0x86,0x2d,0xae,0x29,0x6a,0x29,0x68, +0xe3,0x94,0xbb,0x05,0x96,0x7c,0x88,0xfd,0x90,0xf8,0x43,0x72, +0xa0,0xa9,0xcc,0x7b,0x9a,0x4f,0x81,0x15,0x0f,0xe6,0x57,0xea, +0x9e,0x81,0xa6,0x2a,0x14,0x99,0x2c,0xc6,0x7e,0x0b,0xe8,0x9f, +0x8f,0x0d,0x56,0xd0,0xc0,0xee,0x3e,0xb5,0xe7,0xc4,0x5e,0xb5, +0x99,0xfb,0x67,0x1d,0xc2,0xa1,0xe1,0xdc,0x5f,0x63,0xec,0x49, +0x2b,0xde,0xfe,0x03,0x1a,0x5a,0xb0,0xe1,0x03,0x5c,0x6b,0xc3, +0x6b,0x6f,0x8c,0xc5,0xc6,0x9e,0xb7,0x6c,0x2c,0xee,0x22,0xe6, +0x4d,0x66,0xd5,0xc6,0x65,0x1e,0xce,0x7c,0xa7,0x7b,0xaf,0x63, +0xb3,0x3d,0x87,0x86,0x38,0x86,0x38,0x1f,0x89,0xa6,0x76,0x44, +0x66,0x80,0x96,0xec,0xc6,0x9c,0x7d,0x74,0xd1,0xcb,0x99,0xc6, +0xc4,0xb4,0x6a,0xf5,0x9f,0x06,0xba,0x61,0x8d,0x65,0x3b,0xc1, +0x9c,0xf4,0xea,0x75,0x6f,0xa9,0xde,0xd8,0x54,0xc2,0x3b,0xbc, +0x30,0xbb,0x63,0x74,0x55,0xea,0x86,0x15,0x4f,0x6e,0xdd,0xa9, +0x7b,0x96,0xfb,0xc0,0x32,0x8b,0x0f,0xd4,0x72,0xd8,0xa0,0x67, +0xc8,0x29,0xf7,0xcb,0xc3,0xc9,0x5f,0xa3,0xdb,0xff,0x1e,0xcd, +0xc8,0x1f,0xe3,0x44,0xa2,0x38,0x8f,0x76,0x0c,0x46,0xed,0x43, +0xb2,0x11,0x95,0xd4,0x1a,0x6d,0x95,0x5e,0xc0,0xd8,0x1c,0x50, +0x81,0xcb,0xaa,0x72,0x19,0x63,0x0c,0x33,0xc8,0x72,0x05,0xff, +0x03,0x5b,0x88,0xc7,0x88,0x0d,0x1c,0x73,0x60,0x03,0xf1,0xb0, +0x1d,0x1c,0x64,0x4f,0x05,0x9f,0x0c,0x39,0x11,0xba,0xe6,0xc0, +0xaa,0xc3,0x8b,0x23,0x62,0x6c,0xf8,0xc7,0x51,0x8f,0xe3,0x1f, +0x25,0xed,0x32,0x36,0xf3,0x9a,0xed,0x7d,0x89,0x1a,0x6b,0xeb, +0x9b,0xad,0x3f,0x80,0x87,0x2a,0x2c,0x36,0x35,0x66,0x05,0x3b, +0xd4,0x25,0x4d,0x78,0xec,0x09,0x44,0x35,0x63,0x54,0x8f,0xa9, +0x18,0xdb,0x05,0x93,0x21,0xb9,0x19,0x93,0xbf,0xa3,0x1a,0xe3, +0x2f,0xec,0x22,0xb0,0xbc,0x0b,0x97,0x43,0x87,0xa1,0xa2,0x9f, +0xf1,0x89,0xf0,0x8d,0xf4,0x3b,0x96,0x60,0xc0,0x7f,0xcc,0x00, +0xe5,0xd2,0xef,0x2e,0x47,0x74,0xf1,0xf6,0x21,0xe6,0xa1,0x66, +0x07,0x38,0xb8,0x16,0x4c,0x3c,0x8e,0xc6,0x50,0x69,0xfc,0x8d, +0x7d,0x76,0xed,0xe1,0xcb,0xae,0xe7,0x4e,0x95,0xbc,0xad,0x86, +0x89,0xae,0x9e,0x09,0x07,0x82,0xa1,0xa2,0x8c,0xd5,0xcd,0x96, +0x32,0xeb,0xc6,0xfc,0xd3,0x6f,0xf3,0x38,0x2b,0xa3,0x0f,0x26, +0x91,0x15,0x2b,0x84,0xb9,0xc4,0x3d,0xcc,0xf5,0x80,0x54,0x8a, +0x1e,0x06,0x63,0x3b,0x69,0x50,0x39,0x90,0x97,0x33,0xc9,0x0c, +0x26,0x51,0xe0,0x6b,0x77,0xd0,0xf6,0x2b,0x87,0x23,0xb1,0xa6, +0x7c,0x75,0x6c,0x4d,0x7c,0xed,0x00,0xf0,0x1d,0x25,0xb5,0xff, +0xfa,0xe9,0x9f,0xbc,0x9c,0x06,0xb6,0x3a,0xa9,0x3a,0xb9,0x2a, +0x95,0xea,0x8e,0xc3,0x57,0x64,0xe9,0x65,0x8d,0x5a,0xa3,0xe6, +0x87,0xcf,0x3a,0xa8,0x5c,0x8e,0xe1,0x1a,0xd0,0x57,0xea,0xe7, +0xc3,0x86,0xbb,0x84,0xd8,0xed,0xfd,0x47,0x2e,0x3b,0xe2,0x24, +0x4e,0xdd,0x73,0x30,0xd8,0x88,0xca,0xe5,0x59,0x4c,0x65,0xd1, +0x63,0x0f,0x2e,0xff,0x2c,0x97,0xf7,0x60,0x42,0x31,0xcc,0x39, +0x07,0x3e,0x2a,0x82,0x1a,0x95,0x4b,0xfb,0x35,0x5a,0x1a,0xba, +0xd7,0xec,0xee,0xba,0x3f,0xb5,0xf2,0xe7,0xab,0xa8,0x5c,0x5e, +0xd7,0xd6,0xb7,0xd8,0xe4,0xb0,0xd0,0x3d,0xdf,0x84,0xff,0xa5, +0xf2,0xdb,0xa6,0x5b,0x7d,0x57,0xcc,0x1f,0x5b,0xff,0x4a,0x7d, +0xd0,0xaf,0x42,0x30,0xf1,0xf9,0x87,0x7a,0x71,0xff,0xe7,0x6d, +0xdd,0x81,0x39,0x10,0x33,0x1a,0x14,0x9f,0x65,0xed,0x0e,0xd8, +0x7d,0xe5,0xf8,0x79,0x0e,0xd5,0xf1,0x35,0x89,0x52,0x39,0xfd, +0x08,0x69,0x0e,0xef,0x98,0xc6,0xe4,0xb4,0x3a,0xa9,0x9c,0xbe, +0x3c,0xb1,0x2c,0xb1,0x2c,0x99,0x83,0x0a,0x18,0x23,0xf5,0xdf, +0x93,0x01,0x35,0xc4,0x02,0x23,0xa4,0x91,0x99,0x07,0xa7,0x1f, +0xc1,0xa1,0x11,0x51,0x96,0xfc,0xfb,0x8b,0x7f,0xc4,0xfd,0x98, +0x14,0x60,0x6f,0xe2,0x8f,0x23,0x02,0x73,0x6d,0x78,0xf0,0x68, +0xae,0xb9,0x07,0xbc,0x2a,0xc4,0x9b,0x6e,0xc3,0x7e,0x6b,0xe8, +0xdf,0x88,0x8d,0x36,0xd0,0xf8,0x15,0x1b,0x76,0xfa,0xc0,0xa9, +0xaf,0xd4,0x84,0x9b,0x1b,0x49,0x33,0xde,0xf9,0x16,0x1a,0x9b, +0xb0,0xf1,0x39,0x5c,0x6f,0xc6,0xeb,0xf7,0x4c,0x44,0xdf,0xee, +0x87,0x2c,0x3c,0x13,0xdd,0x08,0xce,0x4b,0xc7,0x09,0x79,0xd3, +0xca,0x7f,0x68,0xbc,0xd1,0x5d,0x7b,0x9d,0x03,0x8d,0x76,0x71, +0xed,0xcf,0xba,0xf3,0xa5,0xca,0xa4,0xa5,0x4c,0xcb,0x8e,0x5b, +0x26,0xaf,0x6d,0xa7,0xb9,0xe3,0x84,0x5d,0x38,0x33,0x34,0x99, +0x3a,0xa9,0xcd,0x19,0x30,0xab,0x0c,0x86,0x37,0x03,0x67,0x03, +0xb3,0x3c,0x60,0x3b,0x85,0x9d,0x47,0xe0,0x2e,0x71,0x30,0xdd, +0x61,0xbb,0xd2,0x6d,0x79,0x85,0x56,0xa3,0x55,0x17,0xa7,0x2c, +0x57,0x24,0x12,0xb4,0x61,0xac,0xc2,0x92,0xa8,0xb1,0x7b,0xc1, +0x82,0x72,0x37,0x28,0x3f,0x7e,0xfe,0xd8,0xa5,0x8e,0xdf,0xb6, +0x7d,0x8e,0x16,0x0e,0xb5,0xe4,0xe0,0x4f,0x3d,0xc5,0x69,0x76, +0x79,0xb1,0xf7,0x1b,0x35,0xb0,0x67,0xea,0xd3,0xd2,0x1a,0xd4, +0xc1,0x87,0x35,0xa0,0xe1,0xc1,0x14,0xf0,0x25,0x10,0xd5,0x4b, +0x0d,0x46,0x87,0x9e,0xa2,0x96,0x71,0x0d,0xdf,0x19,0xb9,0x33, +0xf2,0xa2,0x1e,0x0f,0xcb,0x73,0x61,0x7e,0x39,0x4c,0x69,0x88, +0xec,0xe5,0xd7,0x04,0xac,0xda,0xb3,0x6c,0x1f,0x35,0x4b,0xd7, +0xe4,0x26,0xc4,0xa2,0x41,0xa7,0x51,0xaf,0xd4,0xdb,0x8e,0xbf, +0xee,0xd6,0xed,0xd4,0x65,0xc3,0x09,0xa6,0xd7,0xc9,0xaa,0xca, +0xb9,0x25,0x4b,0xb3,0xf6,0x5a,0xf2,0x6f,0x77,0xff,0xe4,0xf3, +0xcc,0x8d,0x5b,0xa3,0x98,0x47,0x9c,0x8e,0x44,0x57,0xa9,0x4b, +0xf4,0x84,0xd3,0x61,0xed,0x7b,0xb0,0xee,0x86,0x7d,0xe6,0xa9, +0xbc,0x15,0x5a,0xad,0xc7,0xcd,0x38,0x0c,0x67,0x73,0xc2,0x50, +0x43,0xd1,0x90,0x35,0xd6,0xd9,0x61,0xbc,0x45,0x56,0x62,0xc3, +0xf7,0xd6,0x76,0x34,0xb4,0xb4,0x70,0xb6,0xec,0xfa,0x6c,0xbf, +0xe7,0x6a,0x30,0x81,0x69,0x4b,0x4e,0xa7,0xb3,0x71,0x63,0xcd, +0x25,0x2e,0x79,0x56,0x61,0x29,0x5c,0x26,0xd7,0x5d,0xaf,0xd8, +0x76,0x59,0x97,0xd5,0xf1,0x56,0x8d,0x9a,0x6d,0x3a,0xe5,0x9c, +0xdc,0x7b,0x0d,0xa9,0xc0,0xc1,0x25,0x38,0x3a,0x1d,0xd5,0xba, +0x93,0xf9,0x10,0x98,0xe4,0x01,0xaa,0xae,0x9f,0x38,0x31,0xf4, +0x14,0xd9,0x8f,0x63,0xfc,0x70,0x94,0x39,0x0e,0x69,0xf5,0xe5, +0xbb,0x81,0x2d,0x06,0x92,0x02,0x93,0x38,0xea,0x1d,0x9e,0x92, +0x5b,0x30,0xa8,0x15,0x54,0xf3,0xfe,0x30,0x4b,0xe7,0x7d,0x70, +0xa8,0x23,0x0e,0xdf,0x31,0x87,0x93,0x88,0x06,0xf5,0x48,0x3b, +0xfe,0xf9,0x9d,0xd6,0x4a,0xfc,0x19,0x6d,0x58,0xdd,0xd3,0x66, +0x27,0xad,0xd5,0x9c,0xdc,0xac,0x7c,0xcd,0x03,0xd3,0x0d,0xf9, +0xa6,0xdc,0xcb,0x79,0xa5,0x45,0xd4,0x6d,0x78,0x2f,0xde,0x3e, +0xab,0xd9,0x89,0xa7,0xfe,0x7b,0x5d,0x36,0x85,0xc5,0x55,0xaa, +0xa0,0xca,0xae,0x47,0x5b,0x12,0x72,0x2b,0xb0,0xc7,0xbf,0xcb, +0xd6,0x8f,0x2f,0x90,0x5d,0x32,0xc8,0xd4,0xe2,0xe4,0xdf,0x8a, +0x61,0x64,0x7e,0xde,0x9a,0xb2,0xed,0xb5,0x8f,0xae,0x77,0x3f, +0x2d,0x7b,0xc7,0x55,0xd2,0xc0,0x46,0x8d,0x3e,0xf6,0x30,0xef, +0xe0,0x00,0xff,0x5d,0xcd,0xbb,0xf8,0xe2,0x92,0x82,0x9a,0x8c, +0x46,0xae,0x1a,0x4b,0x7e,0x36,0x9d,0x8f,0x69,0x12,0x49,0xde, +0x5a,0x7f,0xfc,0x62,0xcb,0x2c,0xb5,0x06,0x97,0x47,0x30,0xb8, +0x18,0xa6,0x9c,0x83,0x39,0x2a,0xc2,0x56,0xc6,0x6b,0xb3,0xf5, +0x0e,0x6d,0xf3,0x1d,0x4d,0xb2,0xee,0x9d,0xd7,0x6d,0xf6,0xf0, +0x55,0xdb,0x3b,0x0c,0x6f,0x58,0x6a,0x3b,0xac,0x71,0x9f,0x13, +0x90,0x6d,0xc5,0x7f,0xca,0x7f,0x53,0xfd,0xb0,0xfd,0x89,0xe5, +0x1b,0xe7,0x8f,0xbe,0x1c,0xbe,0x11,0x2c,0x08,0xba,0x81,0xd4, +0x8d,0x44,0xf9,0x2f,0xed,0x08,0x82,0x13,0x8a,0xa7,0x57,0x2e, +0x6f,0xfc,0xfd,0xc9,0xc3,0x0f,0x35,0x30,0x8e,0xaa,0x60,0x13, +0xd8,0x40,0x0f,0xfb,0x95,0xdd,0x1e,0xa7,0x80,0x9d,0xdd,0x81, +0x7c,0x61,0x6b,0x4e,0x67,0x42,0x0f,0xd7,0x20,0x0e,0x87,0x21, +0x06,0x38,0x84,0xce,0x3d,0x9e,0xc5,0x9d,0xc1,0xb8,0x70,0x23, +0x4e,0x55,0xeb,0xf4,0xbc,0x0f,0x5f,0xe6,0xc3,0x92,0x73,0x60, +0xa2,0x22,0x5c,0x65,0x5c,0xa7,0x6e,0x5b,0x35,0x5f,0x7b,0x71, +0xef,0xb6,0xbb,0xfa,0xaf,0xac,0x7c,0xf8,0xab,0x4b,0xee,0x6e, +0xfb,0xde,0x70,0x89,0x05,0x0e,0x72,0xc1,0x91,0xfe,0x12,0x42, +0x50,0x2d,0x81,0x91,0x0d,0xbf,0x5e,0xf9,0xd5,0x18,0x86,0xdb, +0xc3,0x0c,0x77,0x4e,0xd4,0x15,0x4a,0xa5,0x96,0x04,0x36,0x52, +0x92,0xa0,0x7c,0xdd,0xbf,0x4c,0x98,0x31,0xfc,0x51,0xbf,0xc3, +0xde,0x61,0x9e,0x1c,0x1a,0x8b,0xf3,0x84,0xe3,0xc2,0x3c,0x46, +0xb1,0xff,0x04,0xd9,0x3b,0x40,0x87,0xbd,0x06,0x87,0xe4,0xeb, +0xf3,0x59,0xf9,0x29,0x05,0xc9,0x45,0x9c,0xb8,0xad,0xeb,0x11, +0x18,0x0a,0x41,0xa8,0xcd,0xe6,0x3e,0x4a,0x7d,0x1c,0xff,0x23, +0xf5,0xde,0x5d,0xf8,0xda,0x94,0x11,0x5e,0x0e,0x30,0x60,0xae, +0x90,0x44,0xcc,0xef,0x33,0x03,0xe6,0x3a,0x89,0x01,0x73,0xcf, +0x00,0x03,0xe6,0x0a,0x89,0x01,0xd3,0xef,0x33,0x03,0xe6,0x3a, +0x1c,0xc7,0x2a,0xb4,0xf1,0x9e,0xc4,0x9b,0x3d,0x41,0x1c,0xc2, +0x0a,0x41,0x30,0xf8,0x1f,0x3a,0x4c,0x0b,0x36,0xb5,0x34,0xb9, +0x3a,0xa1,0xc2,0xec,0xbf,0x74,0x98,0x3b,0x64,0xf0,0xe0,0x33, +0x1d,0xe6,0x96,0x76,0x8a,0xfe,0xae,0x09,0xd3,0x49,0x64,0x6c, +0xf8,0xb9,0x43,0x87,0x25,0xc6,0x32,0x60,0xe0,0xcb,0x2e,0xfc, +0x92,0x7a,0xf6,0xc6,0xc4,0xba,0x94,0xf2,0x74,0xbf,0x06,0x7e, +0x9d,0x33,0x4e,0xf0,0x9a,0x76,0x30,0xd1,0x92,0xaf,0x89,0x6a, +0x8c,0x69,0x8a,0xe7,0x70,0x11,0x6e,0x30,0x85,0x15,0x6c,0x38, +0x0e,0xb2,0xa7,0x8f,0x73,0x30,0x8e,0x2f,0xb7,0xe6,0xbf,0xff, +0x58,0xf2,0x5f,0xea,0x1e,0xc3,0x01,0xea,0x9e,0x48,0xb5,0xeb, +0xc8,0xd7,0x94,0x2a,0x09,0xa3,0x05,0x4b,0xa2,0x51,0xb9,0xb6, +0x64,0x53,0x76,0x90,0x0d,0xff,0x74,0xf7,0x53,0xaf,0x9b,0x6e, +0x9c,0xb6,0x62,0x01,0x71,0x3f,0x2a,0x39,0xb6,0xb1,0x2c,0x7c, +0x01,0xeb,0xbf,0x03,0xcb,0x16,0xd8,0x67,0x91,0xcc,0x3b,0xa2, +0xc5,0x0e,0xdc,0xb0,0x10,0x67,0x71,0xc2,0x60,0x13,0x51,0xc6, +0x5a,0xeb,0x99,0x1a,0xeb,0x9b,0x97,0xd8,0xf2,0x4d,0x35,0x75, +0xf5,0x55,0x4d,0x54,0x7d,0x36,0x67,0xed,0x7e,0xa0,0xf6,0x3b, +0xd3,0x94,0x94,0x4a,0x55,0xdc,0x55,0xda,0x01,0xc0,0xa3,0x2c, +0x3e,0xa1,0x16,0xed,0x20,0x8e,0x0f,0xc0,0x51,0x76,0x53,0x9b, +0x7d,0xf9,0x26,0x18,0x96,0x0f,0x24,0x11,0x54,0x39,0xb8,0x11, +0x41,0x8a,0x71,0x48,0x1e,0x8e,0x4a,0x41,0xbe,0x23,0x99,0x0f, +0x83,0x71,0x7e,0x30,0xc9,0xeb,0x4f,0xaa,0xec,0x7f,0x02,0x90, +0x0b,0xfb,0xa5,0xe6,0x41,0x0d,0x52,0xf3,0xa0,0x3d,0xb7,0x03, +0xbb,0x1c,0x42,0xf9,0xf8,0x7f,0x3a,0x16,0x59,0x1f,0xb3,0x3e, +0xd1,0xf7,0xe2,0x73,0xc7,0x22,0xdb,0x5c,0x7e,0xf7,0xe7,0x8e, +0x45,0x99,0xfb,0xb2,0xf6,0x65,0x96,0xf7,0x16,0xdf,0xce,0xfd, +0xdc,0xb1,0xc8,0x4f,0xcf,0x57,0x76,0xf0,0x7f,0x2b,0x18,0x36, +0x0f,0x74,0x09,0x74,0xdf,0xe3,0xb3,0xeb,0xdf,0x8e,0x45,0x6d, +0xff,0x76,0x2c,0x82,0x59,0xf0,0x2b,0x35,0xdd,0x8b,0x71,0xa5, +0x44,0x4a,0x32,0xff,0x33,0x51,0xef,0x01,0x35,0xfb,0x7d,0x26, +0x21,0xb6,0x87,0x13,0x4d,0xf8,0x9a,0xf8,0x86,0x94,0xea,0xf4, +0x03,0xf8,0x85,0x9d,0xce,0x42,0xdd,0x0a,0x7b,0x1e,0x26,0xbc, +0x6a,0xff,0x13,0x42,0x54,0x85,0x30,0x33,0x89,0xa7,0x37,0xe0, +0x33,0x4f,0xef,0xaa,0x0e,0x5c,0x05,0x1a,0xb0,0xad,0x13,0xb7, +0xc1,0x6c,0x93,0xbf,0xa7,0x77,0xc3,0x51,0xd0,0xec,0x64,0x15, +0xd3,0x4b,0x49,0xba,0x56,0xe2,0xfa,0x81,0x2a,0xe1,0xf0,0x7b, +0x21,0xcf,0x43,0x06,0xaa,0x84,0x6b,0xa4,0x2a,0xe1,0x5f,0xff, +0x53,0x25,0x3c,0xd0,0x99,0xe8,0xbe,0x00,0x44,0xfe,0x0a,0xac, +0x15,0xaf,0x18,0x48,0xb4,0x26,0x8b,0xd0,0xf1,0x2d,0x2b,0xb8, +0x2c,0x22,0x68,0xff,0x96,0x5a,0xcf,0xae,0x45,0xe4,0x2d,0x78, +0x2c,0x62,0xc5,0x74,0xfc,0x82,0xa4,0xee,0x4d,0x0d,0x4a,0xd9, +0x63,0x10,0xa9,0x75,0x5c,0xf3,0x44,0x76,0x45,0x4e,0x43,0x66, +0x83,0x79,0x12,0x1f,0x6c,0xe9,0x6f,0xe1,0xe3,0xc0,0x9d,0xde, +0xb3,0xe7,0x74,0xd0,0xe4,0x0b,0x96,0x30,0xea,0x3c,0x7c,0x79, +0x01,0xb8,0x44,0x95,0xb8,0xb0,0xd8,0x03,0xb1,0x61,0xb5,0x39, +0xbc,0x57,0x9b,0xdd,0x15,0xe7,0x06,0x8e,0x8a,0xa6,0x11,0x31, +0xca,0xda,0x73,0x5b,0x0d,0x02,0x99,0xca,0xa4,0xe4,0x12,0xf5, +0x3b,0xac,0x49,0xac,0xd2,0x6a,0x74,0x62,0x5d,0x8f,0x5c,0x2c, +0x53,0xaf,0x67,0x61,0x68,0xea,0x2f,0xd9,0xaf,0xcb,0xfc,0xab, +0xf9,0x95,0xde,0x6b,0x83,0x67,0x87,0x71,0x3f,0x18,0xb3,0xe2, +0x97,0x8a,0x2f,0x09,0xcc,0x86,0xd8,0x95,0x38,0x89,0x8d,0xb7, +0x93,0x9a,0xb0,0x5f,0x4e,0x48,0xa1,0x00,0xe0,0x2f,0x91,0x13, +0x37,0xb0,0x70,0x03,0x7a,0x09,0xc6,0x5e,0x87,0x58,0x06,0x4e, +0xe1,0x55,0xe2,0x7a,0x24,0xa6,0x4c,0xbd,0x97,0x05,0x26,0xed, +0x97,0xac,0x77,0xe5,0xbb,0x6a,0xf8,0xa5,0xde,0xeb,0x82,0xa6, +0xef,0xe7,0x24,0x76,0xfb,0x30,0xd6,0x30,0x23,0xf0,0x81,0x1a, +0x04,0x31,0x55,0x49,0x29,0x25,0x12,0x6d,0x7e,0x82,0xd2,0x1c, +0x56,0x61,0x0f,0x76,0x04,0x62,0xb5,0x06,0xca,0xda,0x58,0x21, +0x89,0x60,0x43,0x28,0xce,0x34,0xc7,0xe1,0x6a,0x6d,0x3b,0xab, +0xde,0xa6,0xbf,0xbb,0x08,0xf3,0x54,0x60,0x13,0xc6,0xe3,0x28, +0xa9,0x3e,0xe8,0xdd,0x7f,0x49,0x54,0x0b,0x58,0x79,0xa4,0xa2, +0x88,0x60,0x26,0xe3,0x72,0x50,0x6a,0xdf,0x50,0x2f,0x28,0x51, +0x9c,0xae,0xa9,0xf0,0x67,0x37,0x97,0x7a,0x3e,0x52,0x83,0x44, +0xa6,0x2d,0xe5,0x73,0xfb,0x06,0x93,0x54,0x25,0x31,0x17,0xee, +0x13,0x5c,0x03,0x46,0x52,0x3b,0xbf,0xc7,0xf8,0x84,0xa0,0x32, +0xdc,0x07,0x65,0xa6,0x0b,0xef,0x13,0x3a,0x98,0x80,0xf7,0x59, +0xc5,0xfa,0x59,0x52,0x97,0xa1,0xde,0xdb,0xaa,0xb0,0x06,0x8d, +0xa9,0x39,0xb3,0x3a,0x48,0xd6,0x5e,0xd6,0xa9,0x93,0xb5,0xdc, +0x7e,0xde,0xfc,0xbe,0x00,0x94,0xa9,0x35,0xb3,0xa1,0x3e,0x7b, +0x13,0x1b,0xe1,0x1c,0x62,0x13,0xe2,0xd1,0x12,0xc2,0x67,0x37, +0xa7,0x77,0x5c,0x6c,0xa5,0xd7,0x43,0x3f,0x93,0xf7,0x87,0x62, +0x12,0x8b,0xfe,0x7b,0x70,0xe9,0x26,0x7a,0xf7,0xcd,0x4e,0x0f, +0x61,0x7c,0x11,0xcc,0x3c,0x07,0xbb,0x54,0x40,0xce,0x04,0x2d, +0x72,0x5e,0x63,0xa0,0x61,0x72,0xcd,0xf9,0x9e,0xcf,0x13,0xab, +0x00,0xbe,0x6c,0x65,0xdd,0xa6,0xbe,0xed,0xa6,0x32,0x4d,0xfb, +0x15,0x6e,0x05,0xe6,0xfc,0x0f,0x95,0x0f,0x9b,0xfa,0xfb,0xba, +0xcc,0x6e,0xdb,0xfc,0xe0,0xc0,0x89,0x1f,0x04,0x75,0x92,0x57, +0x97,0x5e,0x93,0xd6,0xe0,0x92,0x4d,0xe3,0xae,0x30,0xf7,0x60, +0xd7,0xe0,0x7c,0xfe,0x58,0x74,0xf8,0xd9,0x23,0x47,0x8e,0x86, +0xf3,0x27,0xe2,0x99,0xea,0xfe,0x9a,0xef,0x33,0x7e,0xe4,0x6a, +0x71,0x08,0x2c,0x34,0xc3,0x85,0xd2,0xfe,0xe1,0x3e,0xd6,0x1f, +0x47,0xad,0x41,0x75,0x9c,0x8e,0xa3,0x0a,0xac,0xf9,0xa6,0xba, +0xca,0xea,0xfc,0x4a,0x4e,0x9c,0x29,0x89,0x7a,0xd4,0xb9,0x6f, +0xce,0x1e,0x97,0xfa,0x30,0xce,0xaf,0xbc,0xac,0x04,0x09,0x10, +0x49,0x70,0x03,0x9d,0xca,0x06,0x0a,0x3f,0x16,0x0c,0xb0,0x55, +0x2f,0xa2,0x4a,0x30,0xcf,0x1c,0xe6,0x49,0x4a,0x70,0x80,0x2a, +0x81,0xf9,0x1e,0xed,0x10,0xb3,0x43,0x54,0x09,0x5a,0xe2,0x7b, +0xd2,0x9a,0x32,0xa9,0x12,0xd8,0xeb,0x2d,0xd2,0x2a,0x73,0xfc, +0x9f,0x4a,0xb0,0xfb,0xb3,0x12,0xac,0xec,0xc0,0x95,0x54,0x09, +0xb6,0x76,0xe2,0x56,0x98,0x6d,0xfa,0xf7,0xf4,0x2e,0xaa,0x04, +0x1a,0x54,0x09,0xfe,0x16,0x9e,0x12,0x73,0x48,0xeb,0x60,0x73, +0xa9,0xcf,0xea,0xc4,0xa7,0x66,0x6c,0xc5,0x3a,0x7a,0xe1,0x62, +0x07,0x8b,0xe6,0xc3,0xda,0xf1,0xa2,0x8c,0x6d,0x17,0x17,0x90, +0x36,0x70,0x86,0x6c,0xba,0xc0,0x8f,0x59,0xd8,0x09,0xd9,0x04, +0x57,0xe1,0x7c,0x58,0xc5,0x2a,0xdf,0x80,0xbf,0x48,0x49,0x54, +0x51,0x74,0x5e,0x34,0x87,0xcf,0xe4,0xcb,0x41,0x48,0x66,0x6b, +0xb2,0x32,0x8a,0x2f,0xa8,0x9f,0xcf,0xfd,0x26,0xb7,0x4c,0x15, +0x73,0xaf,0xc3,0x11,0xaa,0xbd,0x47,0x3a,0xcc,0xcc,0xd1,0xa1, +0xc3,0xdc,0x1c,0xcf,0x3b,0xc0,0x79,0x03,0x0c,0x66,0x22,0xac, +0x0e,0x9b,0x1f,0xb0,0xe1,0xc0,0x8f,0x71,0xb4,0xdd,0x18,0x80, +0x63,0x83,0x38,0xa1,0x1e,0xee,0x11,0x03,0x74,0xe8,0x67,0x85, +0x1d,0x06,0x04,0xb5,0xfa,0x41,0x8b,0x51,0xac,0x43,0x4d,0x72, +0x21,0xe3,0x5c,0xc6,0xf9,0x4c,0x0e,0x36,0x33,0x34,0x34,0x08, +0x8e,0x08,0xe5,0x7a,0x26,0x5e,0x48,0x3b,0x9b,0xf9,0x4d,0x16, +0x07,0x8e,0x3a,0x0c,0x2a,0x0f,0xeb,0x7c,0x00,0xbb,0x98,0xd3, +0x87,0xbe,0x0e,0x3f,0x15,0xc1,0x85,0x9e,0x08,0x8f,0x0c,0x9a, +0xbc,0x8e,0x89,0x73,0xa4,0x01,0x16,0xd3,0x75,0xa9,0xb2,0x28, +0xbb,0x8a,0x83,0x83,0x8c,0x38,0x02,0x5d,0x48,0x97,0x50,0x6b, +0xca,0x3a,0x0d,0x33,0x13,0x6b,0x3b,0xd9,0xd9,0xc3,0x84,0x5a, +0x03,0xb1,0x96,0xa1,0xd6,0xd9,0x90,0xc0,0xe4,0x74,0x18,0x54, +0xf2,0xb0,0xcc,0xa7,0x9a,0xdf,0xe8,0x3d,0x67,0x17,0x4e,0xda, +0x47,0x6f,0xa7,0x94,0x7c,0xdc,0x0b,0xc3,0x7d,0xdf,0x7b,0xe7, +0xb5,0xf0,0x73,0xf3,0x71,0x54,0xe1,0xf4,0x0c,0x8a,0xac,0x9a, +0xe5,0x27,0xc8,0x53,0xe3,0xf5,0xc8,0x5b,0xc0,0xcb,0x36,0x56, +0xb1,0x0a,0xe7,0x10,0xfb,0x87,0xc6,0x8f,0x2d,0x3a,0x6d,0x3d, +0xf9,0x76,0xf3,0xce,0x0d,0x75,0x5b,0xb8,0x5b,0xe2,0x76,0x92, +0xdf,0x92,0x7e,0x2d,0xf1,0x86,0x94,0x15,0x14,0x0a,0xf7,0xd1, +0x9b,0x3d,0x5f,0x7a,0xb6,0xe4,0x9b,0x22,0x0e,0xac,0x69,0xa0, +0x7d,0x0e,0x8f,0x31,0x38,0x3c,0x14,0x17,0x19,0x2d,0x56,0x83, +0x5c,0x61,0x24,0x41,0x75,0xd0,0x02,0x75,0xe6,0x67,0x71,0x0b, +0x91,0x51,0x39,0x37,0xef,0xa2,0x71,0xd5,0x94,0x76,0x9c,0x02, +0x53,0x60,0x7e,0xdb,0x2c,0x36,0xb5,0x21,0xb9,0x2d,0xae,0xc9, +0x22,0x91,0x3f,0x6c,0x19,0x66,0xb4,0xcf,0x72,0x20,0x45,0x76, +0x2a,0x4e,0x61,0x4e,0x43,0x10,0x39,0x5a,0x7f,0xb0,0x6e,0x7f, +0x85,0xf5,0x7e,0x3e,0x75,0x67,0xa2,0x43,0x0c,0x0d,0xfd,0x2f, +0x88,0x14,0xfa,0xf1,0xcb,0x3b,0x81,0x53,0x87,0x0a,0xd4,0x35, +0x81,0x11,0x18,0xcc,0x2e,0xda,0x65,0xb5,0xc0,0x49,0x2d,0xcb, +0xf8,0xdb,0xaa,0xea,0xf6,0x33,0x77,0x25,0xa2,0x94,0xe8,0x67, +0xdb,0x61,0xd5,0x64,0xe1,0xcc,0x00,0x8d,0x9f,0x06,0x4c,0x21, +0x38,0x12,0x02,0x60,0x24,0x15,0xb6,0xaf,0xe1,0x35,0x09,0x08, +0xf7,0x8f,0xf0,0x0d,0xe7,0x84,0x14,0x3d,0x54,0xc5,0x3a,0x53, +0xa8,0xc3,0xe5,0x98,0x6f,0x0a,0xf9,0x48,0xd8,0xb9,0xc1,0x53, +0x43,0x96,0x1e,0x8a,0x33,0xe6,0x7f,0x48,0xfa,0x2d,0xf5,0x55, +0xc6,0x01,0x1c,0xb3,0x4e,0x17,0x0d,0x8d,0x72,0xa9,0xaf,0xf7, +0xba,0xf1,0xee,0x5d,0x02,0xac,0x29,0x8d,0x29,0xbe,0x98,0x1b, +0xc3,0xc1,0x18,0x63,0x02,0x86,0x50,0xd7,0x85,0x75,0x54,0xec, +0xfa,0xba,0xb0,0x0f,0xbe,0xd4,0xfb,0x7b,0xea,0x55,0x08,0x87, +0x6b,0x5d,0x12,0x15,0x2c,0x4c,0x26,0xae,0x85,0x3a,0x15,0xd6, +0x39,0x55,0xd9,0x6d,0xe5,0x97,0x2b,0x77,0x96,0xf3,0xd9,0xa7, +0x93,0x12,0xa3,0x0a,0xb3,0x3e,0xf1,0xce,0x69,0xf9,0x15,0x8e, +0x25,0xb2,0x22,0xab,0x5c,0x95,0xda,0x82,0xa6,0xea,0xe2,0x0a, +0xe7,0x0a,0xde,0xd3,0xd9,0xd2,0xc9,0xc2,0xab,0xc4,0x91,0xdf, +0x1f,0xd8,0x10,0xd0,0xed,0x5d,0xed,0xa5,0x12,0x3c,0x0d,0x47, +0xb4,0x68,0x7f,0x38,0x06,0xae,0x2a,0x8a,0x41,0xa6,0xc2,0x15, +0x26,0x0e,0xcd,0xee,0xe1,0x20,0x18,0x6f,0xce,0x45,0x26,0xc4, +0x9f,0x88,0x9d,0xbc,0xd3,0xc9,0xc8,0xcd,0x7e,0x77,0x91,0x13, +0x1f,0xba,0xab,0x25,0xe0,0x86,0x6b,0x95,0xa7,0xca,0xc1,0x45, +0x38,0xb3,0xdd,0x0c,0x54,0x22,0x60,0xaf,0x0a,0xea,0x42,0xb1, +0x01,0x0d,0x00,0xd6,0x83,0x21,0x05,0xc0,0x55,0x59,0x25,0xd9, +0x9e,0x35,0xfc,0x36,0x8a,0x5d,0x1c,0x71,0xec,0xde,0x34,0x4b, +0xbe,0x31,0xa6,0x2e,0xbe,0x9a,0x86,0x08,0xab,0x70,0xad,0x09, +0xac,0x61,0x8f,0xe3,0x36,0xf7,0xa5,0xc8,0xe1,0xd0,0x7a,0x8a, +0xf5,0x46,0x01,0x57,0x0f,0x43,0x2e,0x80,0x05,0x07,0x1b,0xc4, +0x0d,0xfd,0xc2,0x06,0x18,0xcf,0xc4,0xa0,0xc3,0x6d,0x5c,0x00, +0x0b,0x2d,0x6a,0xf6,0x17,0xc6,0x5c,0xa8,0x4a,0xfa,0x93,0x77, +0x4d,0x53,0x52,0x86,0x04,0xc1,0x95,0x44,0x26,0x45,0x9e,0x3e, +0xfc,0x4f,0x69,0xeb,0xa7,0xd6,0x69,0x9f,0x0b,0x5b,0x47,0x5a, +0xc2,0x30,0xe6,0x08,0x12,0x0f,0x9c,0xbd,0x09,0xbf,0x28,0xb7, +0xe5,0x7b,0x3f,0x64,0x7e,0x3c,0xf7,0x23,0xc5,0x04,0xc9,0x52, +0x61,0x6b,0xd4,0x40,0x61,0x6b,0x2f,0x2e,0x2b,0x29,0x57,0xa2, +0xb6,0xbd,0x90,0xec,0xbd,0xe5,0xfa,0x9d,0xfb,0x55,0x87,0x00, +0xbe,0xdc,0xb0,0x74,0x6d,0xf6,0x66,0x0e,0x32,0xf1,0x2e,0x41, +0x83,0x76,0x30,0x00,0x15,0x9c,0xbc,0x8c,0x8d,0xb3,0x55,0x7a, +0x22,0xe5,0xd8,0xd5,0xa8,0x0b,0x01,0xb8,0x86,0x8d,0x88,0x0a, +0xa7,0x3f,0x7d,0xe5,0x57,0x1b,0x6a,0x9b,0xb8,0x1a,0x71,0x81, +0x0d,0x3c,0x67,0x5d,0xbd,0xac,0xbc,0xec,0x77,0x7b,0x65,0x7b, +0x66,0xfa,0xa6,0x7a,0x79,0xf2,0x15,0x7b,0x6b,0xfd,0xaa,0xfc, +0x38,0xdc,0x21,0x56,0xb6,0x83,0x8c,0xa1,0xc8,0xc8,0x9e,0x42, +0xa5,0x8f,0x30,0x8e,0x69,0x97,0x2a,0x11,0x55,0x66,0xb2,0x78, +0x56,0xa4,0xba,0x38,0xc5,0xe2,0x21,0x0c,0x51,0x87,0x24,0x1c, +0x6d,0x73,0x9d,0xca,0xf2,0x54,0x67,0xc3,0x75,0x2e,0x6a,0x59, +0xe6,0x8f,0x6b,0x6a,0xae,0x9c,0x79,0x21,0x49,0xd3,0xb9,0xab, +0x1b,0x61,0xe6,0x64,0x78,0xce,0xc4,0xb6,0x29,0x51,0xf4,0x36, +0x85,0x82,0xac,0x19,0x38,0x8e,0x01,0xdd,0xdf,0x09,0xa8,0xcc, +0x40,0x95,0x81,0x62,0x68,0x47,0x92,0xe1,0x93,0xe6,0x9d,0xe6, +0x21,0xd5,0x25,0xe4,0xef,0xcf,0x91,0xca,0x97,0x37,0x34,0x4b, +0xb5,0xeb,0xe9,0xb1,0xe9,0xd1,0x19,0x54,0xbc,0x7d,0x34,0xad, +0x75,0xb5,0x2c,0xaa,0xdd,0xf8,0xb2,0xfc,0xe2,0xe2,0xdc,0x32, +0x4e,0x9e,0xaa,0x08,0x21,0x56,0x39,0x36,0x25,0x4e,0x55,0xed, +0x57,0x2a,0xee,0x26,0x3f,0xe0,0xea,0xa8,0xd5,0x99,0x07,0x4a, +0xec,0x51,0x8f,0x03,0xce,0x87,0xf7,0xb6,0xef,0xe7,0x13,0xf2, +0x93,0x9b,0x2f,0xd6,0x70,0x8d,0xb8,0xe5,0x36,0x5b,0x97,0x72, +0xa0,0xe0,0x00,0xfd,0xb3,0x2a,0x60,0xdc,0x8c,0xb7,0x98,0x8b, +0x19,0x31,0xe9,0x51,0x19,0x52,0x63,0x66,0x1d,0x77,0x5d,0x2b, +0x59,0xad,0x0f,0x9f,0x93,0x9b,0x59,0x98,0x5a,0xc4,0xbd,0x65, +0xd2,0xfd,0xd2,0x7c,0x52,0xbd,0x38,0x9b,0x6d,0x68,0x88,0x7e, +0x0c,0x6e,0x3d,0xba,0xd8,0x71,0x81,0x9a,0x67,0x9d,0x55,0xa3, +0x4b,0xa1,0x8b,0x37,0x5f,0xed,0xd5,0x68,0x5d,0x62,0x5f,0x57, +0xc1,0x37,0xba,0xd5,0xfe,0x99,0xf4,0xe3,0x19,0x58,0xa7,0x02, +0x97,0x98,0x03,0x06,0xfe,0x32,0x17,0x5b,0xe7,0x06,0xcf,0xd6, +0x3d,0x1d,0xb6,0xfe,0x7c,0x8e,0xe9,0x65,0xd3,0x3a,0x2b,0xc7, +0x9d,0x32,0x2f,0x23,0x7f,0x8a,0xb6,0xfa,0x0b,0x3a,0x2a,0xea, +0x6a,0x1a,0x1c,0x5a,0x5d,0xdb,0x76,0x73,0x7f,0x0f,0x01,0x03, +0x22,0x98,0x36,0x6b,0xc2,0x77,0x37,0x9a,0x77,0xdc,0x32,0xd7, +0x42,0x7d,0xfa,0xb2,0xc3,0xfa,0x06,0x7e,0xb7,0x89,0x81,0x5b, +0x10,0x47,0x50,0xff,0x3e,0xe8,0x33,0xf0,0x1b,0x2e,0x26,0x38, +0x9e,0xce,0x68,0x3c,0x83,0xbf,0xe1,0x48,0xb2,0x19,0xf5,0x1f, +0x4a,0x95,0x5d,0xe3,0xc8,0x1a,0xd4,0x7f,0xc1,0xce,0xc4,0x3b, +0xa4,0xb3,0xb4,0xb9,0xb6,0xb2,0xc9,0xa5,0x94,0x77,0x77,0xb4, +0x75,0x36,0xf5,0xa1,0x28,0xcc,0x47,0xfe,0x92,0x78,0xa2,0xb9, +0x09,0xce,0xa1,0xd2,0x58,0x66,0xcd,0x5f,0x2a,0xc8,0xad,0xca, +0x69,0xe2,0xc4,0xe2,0x4e,0xf9,0x7c,0x36,0xe7,0x4e,0xd6,0xb3, +0xc4,0xef,0x39,0x21,0xee,0x3c,0x31,0x5b,0x87,0x4e,0xcf,0xe8, +0x8b,0xa1,0x25,0x18,0x6e,0xef,0xbc,0x0d,0x4e,0xd2,0xcb,0x96, +0x56,0xdc,0xc2,0x88,0xbe,0xf8,0x94,0x60,0x68,0xa4,0xc4,0xb6, +0x30,0x41,0xad,0xc9,0x4b,0xe9,0x0e,0xf0,0x71,0x30,0x19,0x22, +0x54,0x61,0x98,0xf0,0xb4,0x5d,0x31,0x91,0x05,0x2d,0xc5,0x12, +0x02,0x76,0xd4,0xe5,0xe8,0x76,0x80,0x2e,0x2c,0xc1,0x09,0xcb, +0xd9,0x78,0x29,0x85,0xb3,0x2a,0x31,0x9e,0x8a,0x97,0x97,0xb8, +0x4f,0x2c,0x67,0xc1,0x53,0x98,0x46,0x70,0xd1,0x5b,0x58,0xc4, +0x74,0x48,0x08,0x68,0x09,0x45,0x40,0x83,0x6c,0x09,0x2c,0x9a, +0x8b,0x8b,0x18,0x70,0xff,0x95,0xc0,0x92,0xb9,0xb8,0x84,0x2e, +0xbd,0x8a,0xbc,0x8e,0xe0,0x29,0x16,0xfb,0x03,0x71,0xbe,0x06, +0x0d,0xef,0xdb,0xad,0x94,0x9e,0xc3,0xac,0x6c,0x58,0x01,0x8f, +0x55,0xe5,0x4e,0x70,0x8a,0x51,0x38,0x21,0xb5,0x15,0x44,0xae, +0x4e,0xed,0x4b,0xb5,0x62,0x30,0xc1,0x5c,0xc6,0xf3,0x60,0x6c, +0x89,0xfa,0x23,0x56,0x18,0x59,0x75,0xbc,0x55,0x64,0x76,0x2a, +0xfd,0xc6,0xc2,0x0f,0x97,0x23,0xdb,0xf0,0x99,0x9b,0xd2,0x3b, +0x16,0x06,0x27,0xbd,0x4f,0x7b,0x99,0x21,0x35,0xf9,0x5a,0xec, +0x8c,0x1e,0xfe,0x18,0x74,0x30,0x41,0xc6,0xbf,0x88,0x7a,0x16, +0xf3,0xf8,0x22,0xb7,0x98,0xc5,0x24,0xbf,0x0b,0x16,0x70,0x31, +0x5f,0x69,0x16,0x8b,0x35,0xbe,0xe7,0x2d,0xa0,0xa2,0x50,0x69, +0x23,0xab,0x9f,0xeb,0x7f,0x4f,0x0d,0x4a,0x98,0xda,0xc4,0xd4, +0x4a,0xf5,0xc7,0xac,0x69,0x0a,0xd5,0x4d,0x77,0xf9,0x73,0xe2, +0x34,0xdb,0x74,0xed,0xb6,0x1d,0xe5,0x76,0xfc,0x93,0x07,0xfd, +0x3f,0xd5,0xff,0xce,0xc9,0xed,0x15,0xcf,0x88,0xee,0x5d,0xdb, +0xdb,0x9e,0xf7,0xfa,0x81,0xcf,0x81,0xa9,0x51,0x30,0x9f,0xab, +0xeb,0xc1,0x50,0x26,0xae,0xf9,0x62,0x6b,0x54,0xab,0x45,0x14, +0x1f,0x8a,0x6a,0xbe,0xb8,0x50,0x03,0x87,0x25,0x07,0xf3,0xf8, +0x83,0xe5,0x53,0x07,0x06,0xe7,0xb9,0x2d,0x58,0xb5,0x4a,0xad, +0xca,0x41,0xe9,0xa7,0x9f,0xeb,0x80,0x83,0xb5,0xaa,0x75,0x0f, +0xb1,0x90,0xdd,0x73,0x24,0xe8,0x48,0x50,0x44,0x8a,0x05,0x7f, +0x2f,0xef,0xfb,0xba,0xab,0x35,0x07,0x9b,0xf9,0xdd,0xfb,0xbd, +0x43,0x3c,0x43,0x39,0x38,0xfb,0x30,0x8f,0x3d,0x73,0x32,0xbd, +0x28,0xb5,0x2c,0xf9,0xb2,0x4a,0xdc,0xb4,0xac,0x39,0x55,0xf3, +0x77,0x6e,0x96,0x69,0x6e,0xd1,0x2e,0x31,0xe7,0x6f,0xdd,0x68, +0xbf,0x55,0x7d,0xb7,0x5c,0xb3,0x71,0x7b,0xef,0x0e,0x4e,0x24, +0x72,0x81,0xe0,0xbe,0x6d,0x90,0x2d,0xc3,0xec,0x6d,0x14,0xf3, +0x63,0x3e,0x5c,0x81,0x7c,0x16,0x62,0x70,0x1b,0x89,0xc4,0xb1, +0xa1,0x38,0xdc,0x11,0x87,0xb8,0x7e,0x0a,0x05,0xa5,0x70,0x50, +0xe1,0xc4,0x93,0x47,0xc9,0xce,0xf9,0x9b,0x51,0x79,0xa3,0x46, +0xb1,0x35,0x9f,0x9f,0x97,0x99,0x9b,0x9e,0xc7,0x89,0x9b,0x3a, +0x84,0x6f,0xd8,0xc2,0x86,0xbc,0xf6,0x2c,0xa9,0x58,0xb6,0x55, +0x70,0xfb,0xcc,0x10,0x7d,0x74,0x20,0x95,0x74,0x0a,0x8c,0x69, +0xc7,0x31,0x9f,0x2b,0x80,0x67,0xca,0x60,0x32,0x73,0x18,0x27, +0xb8,0xe0,0xf4,0xf9,0xff,0x32,0x44,0x9f,0x97,0x98,0xff,0xf2, +0xbb,0x84,0x0b,0xff,0xa4,0x92,0xbe,0xc0,0xe5,0xe5,0x97,0x95, +0xfe,0x80,0x95,0x04,0x16,0x77,0xe1,0x62,0xe8,0x30,0x52,0xf4, +0x33,0xbe,0x11,0x7e,0x91,0xfe,0xd2,0x86,0xd4,0xfb,0x0c,0x18, +0x51,0xfa,0xad,0xb4,0x21,0xe5,0x18,0x62,0xb1,0xdf,0x3c,0x8c, +0x83,0xee,0x60,0xe2,0x79,0x34,0xa6,0x44,0x1d,0xde,0xb3,0x4f, +0x6f,0xdc,0xfd,0xae,0x53,0xda,0x90,0xb2,0xd7,0x30,0xd3,0x31, +0x30,0xe1,0x40,0x6e,0xa8,0x28,0x67,0xf5,0x2e,0x05,0x5e,0x57, +0xa3,0xde,0xa7,0x32,0xf9,0xf3,0x86,0x94,0xc5,0xc0,0x86,0x94, +0x32,0x4c,0x96,0x57,0x12,0x91,0x97,0xef,0x12,0x78,0x56,0x9c, +0x8d,0x1b,0x08,0xa6,0xd1,0x80,0x2b,0x8d,0xe9,0x96,0x88,0xc1, +0x18,0x28,0x41,0x86,0xc5,0xb7,0xd6,0x04,0x87,0xd3,0xeb,0xc3, +0x59,0x78,0x3c,0x91,0x5e,0x1a,0x8e,0x25,0x0c,0xfc,0x29,0xba, +0x10,0x0c,0x61,0x3c,0x0f,0x47,0xd3,0x2f,0x65,0x58,0xe0,0xb2, +0x61,0x44,0xd9,0xeb,0x26,0xef,0x06,0x7e,0x85,0xdd,0x42,0x3f, +0x1c,0x1c,0xc4,0xc1,0x7c,0x7d,0x7c,0xc1,0x1a,0xe4,0x4a,0x1b, +0x61,0x11,0x4c,0x43,0x52,0x6a,0x8d,0x3a,0xfd,0x13,0x46,0x69, +0x4a,0x8a,0xf9,0x8d,0x04,0x62,0x3a,0x30,0x06,0x18,0x7d,0x94, +0x33,0x5e,0xc7,0xbc,0x8e,0x7b,0x1d,0xbf,0x68,0xc4,0xc3,0xb2, +0x2c,0x98,0x9e,0x0b,0x7c,0xc9,0x91,0x76,0x7e,0x53,0xc8,0xb2, +0xd0,0xc5,0x07,0x38,0xe5,0x36,0x61,0x22,0x85,0xdd,0xb1,0xa0, +0x9e,0x00,0x53,0x32,0x4e,0x36,0xf2,0x26,0x11,0xc6,0x91,0x26, +0xc7,0x38,0x6a,0x47,0xd7,0x36,0xe3,0x5a,0x18,0x06,0x9a,0xad, +0xe2,0x72,0x4b,0xd8,0x81,0xc3,0x70,0x95,0x35,0xac,0x42,0x9e, +0x35,0x3a,0x66,0x78,0xdc,0xf0,0x24,0x27,0xb7,0x80,0x39,0x04, +0x36,0x37,0xe3,0x66,0x18,0x0a,0xa6,0xad,0xe2,0x56,0xe9,0x3f, +0x0d,0xc5,0x0d,0xd6,0xb0,0x01,0x47,0xe2,0x0e,0x0b,0x41,0xab, +0x0d,0x2d,0x99,0xe9,0xa2,0x3b,0xf9,0x1f,0x53,0x90,0xfa,0x8c, +0xfe,0x3f,0x4e,0x01,0x67,0xb2,0x8a,0xf9,0x60,0xf1,0xff,0x7a, +0x1a,0x30,0x55,0xe8,0xa4,0x3a,0xb7,0x0f,0x37,0x6f,0x41,0x15, +0xb5,0x56,0x6b,0xa5,0xc7,0xa0,0x96,0x4b,0x11,0x63,0xaf,0xaa, +0xdc,0x0e,0x8e,0x2b,0x12,0x99,0x3e,0x53,0x02,0x35,0x34,0x86, +0xae,0x61,0xe0,0xd3,0x44,0x3a,0xbb,0x26,0x1a,0x3f,0x8b,0xb1, +0x0a,0x43,0x0a,0xa8,0x82,0x4d,0x7b,0x84,0x5e,0xf1,0x67,0xb1, +0x97,0x15,0xca,0x84,0x95,0x44,0x0c,0x7e,0x2d,0x04,0x33,0x62, +0x30,0xce,0x26,0x42,0xf0,0x12,0x31,0x98,0xb1,0x18,0x26,0x04, +0xcf,0xa2,0xef,0xca,0x7f,0xad,0x01,0x7d,0xd2,0x21,0x2e,0x88, +0x65,0x7f,0x14,0x56,0x77,0x88,0x6b,0xfe,0x80,0x3f,0x3b,0xf0, +0xcf,0xf7,0xc2,0xb4,0x76,0x3c,0xc9,0xe6,0x95,0x64,0x96,0x27, +0x15,0x9b,0xa6,0xf3,0xa1,0xae,0x7b,0x1c,0xbd,0x29,0x8a,0x29, +0x63,0x9a,0x32,0x82,0x2a,0x7c,0x6b,0xf6,0x65,0xaa,0x58,0x06, +0x16,0x78,0x66,0x7a,0xa7,0xf9,0xaa,0x60,0xb8,0x4c,0x18,0x3b, +0x07,0x5f,0x99,0xc3,0xab,0xe9,0xe2,0x1c,0x73,0x61,0xf6,0x32, +0xe6,0x88,0x38,0xd9,0x5c,0x18,0xcd,0xba,0xae,0xc2,0xf1,0x32, +0x8c,0xb4,0xce,0xa0,0xf3,0x6b,0xb8,0x05,0x83,0xbb,0xb2,0x60, +0xcc,0x00,0xdd,0xca,0x18,0x18,0x4f,0xc1,0x8b,0x56,0x5a,0x2f, +0x8f,0xe1,0xcd,0xa8,0xde,0xee,0xf4,0x92,0x53,0x16,0x2e,0xc8, +0xb3,0x48,0x62,0x4a,0x5c,0x46,0x74,0xb2,0x5e,0x34,0x1f,0xb1, +0xef,0x50,0xf0,0x81,0x7d,0x1c,0x5e,0xc2,0x1e,0xf9,0x7c,0xe8, +0x61,0x0c,0xe9,0x1c,0x4a,0xea,0x85,0x12,0x89,0x90,0x49,0x2c, +0x69,0xa0,0x03,0xb1,0x64,0x25,0x11,0x4a,0x2c,0xc4,0x12,0x46, +0x08,0x10,0x27,0x93,0xdb,0x14,0xaa,0x1d,0x56,0x5c,0xc4,0xc3, +0x60,0x6b,0xc0,0x46,0x60,0x9a,0x2d,0xc4,0xb1,0x21,0x66,0x26, +0xbb,0x71,0x6c,0xc0,0x25,0x1b,0x1e,0x96,0x14,0xf5,0x77,0xa4, +0xdf,0x95,0x52,0xfa,0x16,0xf7,0xc1,0x62,0xf8,0xba,0x91,0x11, +0x8f,0x80,0x3b,0xc1,0xf2,0x0e,0x28,0x67,0x7a,0x24,0x22,0x8a, +0x56,0x73,0x16,0x45,0x37,0x62,0x8a,0xe5,0x5d,0x2c,0xfc,0x32, +0x11,0x5a,0x4d,0xb1,0x95,0xc1,0xb9,0x38,0x8c,0x7c,0x13,0xf5, +0x75,0x74,0x94,0x6a,0x23,0x64,0x6e,0x67,0x95,0xe5,0xbb,0x05, +0x5f,0xf2,0xf4,0x76,0xc7,0xc3,0xdc,0x67,0xd4,0xeb,0x55,0xb1, +0x09,0x39,0xb1,0xb9,0x31,0xb9,0x26,0xd1,0xbc,0xef,0x42,0x9d, +0x05,0xab,0xb6,0x95,0x39,0xf0,0xb9,0xd9,0x39,0x39,0x97,0xf2, +0x8b,0xed,0x2a,0x1d,0xea,0x5d,0x8c,0x1c,0x34,0x9c,0xd7,0xb8, +0xe5,0x5b,0xf2,0x3f,0x56,0x3f,0xae,0xbf,0xde,0x7c,0xc7,0xf4, +0x85,0xd5,0x2b,0xa7,0xbc,0x76,0x7e,0xcd,0xe5,0x4d,0x75,0x3b, +0x9a,0x39,0xd1,0xe5,0xf0,0x00,0xc3,0xa7,0x7a,0x07,0x45,0x9a, +0xff,0x1f,0x18,0x3e,0x33,0xc0,0x90,0x44,0xc7,0x45,0xc7,0x46, +0xc5,0x51,0x03,0xc6,0x04,0x99,0xd8,0x19,0x68,0x9b,0x58,0xd5, +0x38,0x36,0x7a,0xb5,0x72,0x89,0x22,0x4f,0x6e,0xfb,0xfe,0x6a, +0x7d,0xcf,0xb6,0xb0,0x85,0xdf,0xdc,0xb4,0xb8,0x49,0x23,0x9f, +0xc3,0x19,0x78,0x92,0xc0,0xc2,0x9d,0xa0,0x6e,0x0e,0xa3,0x65, +0x19,0xdd,0x3c,0x72,0xad,0xb8,0xa4,0x07,0xd5,0x2b,0x28,0x8e, +0xde,0x38,0xb0,0xf5,0x13,0x93,0x7f,0xb1,0xc8,0x3c,0xe6,0xbf, +0x4d,0x50,0x0c,0x29,0x78,0x38,0x2a,0x35,0x41,0xf9,0x84,0xbf, +0x12,0x89,0x20,0xf9,0xd0,0x00,0x53,0x2f,0x35,0xa8,0x7c,0x17, +0xf2,0xd2,0x2e,0x4b,0xc2,0xbf,0x04,0xc9,0x13,0xa5,0x5d,0x96, +0x01,0x82,0xe4,0x8b,0x4d,0x71,0x12,0x41,0xf2,0x66,0x53,0x1a, +0x92,0x1c,0xc5,0xc1,0x0e,0x9f,0x09,0x92,0xcb,0xff,0x77,0x82, +0x64,0xfd,0x7f,0x08,0x92,0xdf,0xe1,0xc6,0xda,0x32,0x25,0x38, +0x28,0x38,0x48,0xbb,0x45,0x4b,0xa5,0xdd,0x22,0x9f,0xcf,0xbb, +0x45,0xab,0xa5,0xdd,0xa2,0x80,0x81,0xdd,0xa2,0xa5,0xd2,0x6e, +0x91,0xcf,0xe7,0xdd,0xa2,0xd5,0x54,0xda,0xd7,0xfd,0xb7,0x5f, +0x8a,0x19,0x9b,0x32,0xb0,0x41,0xf4,0x6f,0xbf,0x94,0x59,0x32, +0xf8,0xf3,0xf3,0x06,0xd1,0x66,0x69,0x83,0x68,0xa3,0xdc,0x9f, +0x40,0xe0,0x7c,0x06,0x43,0x8c,0x90,0xc1,0xb1,0x6b,0xd4,0xaa, +0x2d,0x95,0x60,0xda,0xbb,0x6b,0xd4,0xc1,0x7e,0xa3,0xfa,0x33, +0xcc,0xa7,0x01,0xb9,0x71,0xd6,0xae,0x1b,0x6a,0x30,0x85,0xa9, +0x4e,0xcb,0xba,0xac,0x0e,0xd3,0x59,0xc3,0x14,0x25,0x94,0xbe, +0xdc,0x33,0x3c,0x21,0x47,0x5d,0x58,0x04,0x49,0x3d,0x8a,0x9b, +0x8a,0xdf,0xaf,0xf5,0xcb,0x13,0xfb,0x14,0xd4,0x0c,0x0a,0x7d, +0x97,0x49,0x78,0xf8,0xd7,0xdf,0x44,0xa8,0x43,0x1f,0xfc,0xd8, +0x83,0x3f,0x42,0x2f,0xdc,0x62,0xfd,0x2c,0xad,0x64,0xa6,0xf6, +0xb5,0x0e,0xfc,0xfd,0xfe,0x2b,0xf7,0x8b,0xef,0x72,0x2d,0x8a, +0xef,0x0d,0x85,0x89,0x8a,0xa5,0x2c,0x4e,0x2e,0xd2,0xf8,0x13, +0xe6,0xa9,0x82,0x8e,0x2e,0x6a,0xb0,0x38,0x2f,0xc0,0x00,0x27, +0xe1,0x78,0xb5,0x6a,0x6b,0x18,0x09,0xca,0x69,0x1d,0xe7,0x3f, +0x48,0x9d,0xe0,0xa7,0xc4,0xfc,0x81,0xa3,0x20,0x78,0xb2,0xc0, +0x32,0x31,0x7d,0x4a,0x52,0x19,0x78,0x3f,0x59,0x6a,0x89,0x43, +0xfd,0xf0,0x8b,0xb0,0x34,0x19,0x0f,0x63,0x53,0x61,0x58,0xd1, +0xaf,0x1d,0x9c,0xe2,0x8c,0xb8,0x98,0x68,0x9c,0xbc,0x60,0x2d, +0xe5,0x73,0xcc,0x8d,0x03,0x2e,0x45,0xa5,0xc0,0xbe,0x3e,0xd3, +0xb7,0xd1,0xbb,0xda,0xb1,0x46,0xc5,0x39,0x24,0x39,0x2c,0x81, +0xfe,0xa8,0xe8,0x46,0x6c,0x8c,0x5c,0x7f,0x3c,0xa5,0x28,0xbe, +0x50,0x4a,0xf4,0xaa,0xae,0xc5,0x37,0x1d,0xd0,0x58,0x8d,0x8d, +0x8d,0xd0,0x58,0x83,0x8d,0x4d,0x70,0xbd,0x96,0x06,0x60,0x97, +0xd7,0x3b,0xc2,0x04,0xe6,0x90,0xcf,0x41,0xaf,0x7d,0x5e,0x9c, +0xa0,0x01,0xea,0x14,0x1c,0x66,0xc0,0xa8,0x42,0x18,0xd4,0xeb, +0x5b,0xcf,0xcf,0xb3,0xc0,0x51,0xde,0x38,0x31,0x94,0x13,0x26, +0x98,0x91,0xa9,0xc6,0xa8,0xe2,0x8e,0xd3,0x42,0x93,0xcd,0x79, +0x98,0x9d,0x01,0x7c,0x39,0x0c,0xbf,0xc2,0x61,0x82,0xe8,0x40, +0xdc,0x8e,0xc4,0x96,0xab,0xbf,0x60,0x3f,0xe5,0x7c,0xcc,0x7d, +0x56,0xbe,0xbb,0x95,0xd7,0xf6,0x99,0xef,0x3f,0x3f,0x98,0x03, +0xce,0x18,0xb3,0x59,0x9d,0x4b,0x7b,0xa8,0x31,0x74,0x66,0x9a, +0x93,0x13,0x24,0x8e,0x3c,0xd3,0x64,0x25,0x1c,0xcc,0x8a,0x09, +0x30,0x83,0xc0,0xca,0x26,0x5c,0xf9,0x87,0x09,0x75,0x0e,0x38, +0xe8,0xb0,0x12,0x1c,0x33,0xc1,0xd3,0xac,0xe7,0x49,0xaf,0x93, +0xde,0xa7,0xa2,0x8d,0x79,0x58,0x1a,0x0f,0x56,0x19,0x30,0x23, +0xf7,0x74,0x1b,0x6f,0x15,0x6e,0x1a,0x61,0x1c,0x41,0xcd,0x44, +0x93,0x3c,0x9a,0xdc,0xd2,0xd4,0x12,0x07,0x9b,0xca,0xa9,0xa6, +0xa2,0x1f,0x95,0x80,0xf4,0xe2,0xd4,0xea,0xe4,0x26,0xbd,0x38, +0xfe,0x80,0xe5,0x5e,0xc7,0x3d,0x3b,0x39,0xf1,0x22,0x0e,0xa6, +0xeb,0xbc,0x1f,0x67,0x1a,0xcc,0x53,0x6b,0xb5,0x51,0xba,0x05, +0x23,0x33,0x60,0x19,0x9c,0x50,0x6d,0x96,0xc7,0x74,0xb1,0x62, +0x7d,0x26,0x09,0xab,0xda,0x5f,0x1e,0x5c,0x62,0x70,0x80,0xcf, +0xf0,0x4e,0x71,0x4b,0x72,0xe3,0x04,0x7e,0x33,0xc1,0x41,0xba, +0xb8,0xce,0x12,0xed,0x82,0xb3,0x4c,0x79,0xb0,0xcf,0x82,0xed, +0xdd,0x30,0xf4,0x36,0x27,0x86,0xe1,0x73,0x02,0x47,0x0a,0xc1, +0xed,0x1e,0x4c,0xf9,0xe0,0x56,0xcb,0xa3,0xca,0x02,0xb4,0xd4, +0xc3,0x08,0x1f,0x4e,0xbe,0xac,0x9d,0xe0,0x12,0x1c,0x83,0xa1, +0xab,0xf1,0x96,0x67,0x06,0x8d,0xb4,0x6e,0x95,0xc1,0xb1,0x1f, +0x60,0x35,0xf5,0xf7,0xca,0xf2,0xcd,0xf2,0x8d,0x24,0x8a,0x49, +0x5e,0xf6,0x44,0x1b,0x66,0xea,0xe4,0xb4,0xf0,0xf8,0x45,0xc7, +0xfa,0x6e,0xb7,0xdb,0x1c,0x84,0xb4,0xe0,0xc5,0x77,0x66,0x0b, +0x31,0xdc,0x0a,0xdc,0x19,0x6f,0x2d,0x4d,0x23,0x1c,0x27,0xbb, +0x64,0xc5,0xc3,0xcc,0x6b,0x37,0x6e,0x27,0xff,0xc0,0x45,0xe1, +0x52,0xc6,0x6f,0xe1,0x52,0x23,0x9c,0xa7,0x7d,0xc9,0x82,0xbf, +0x14,0x9f,0x1d,0x9f,0x19,0x5f,0xe8,0x5b,0xe4,0x99,0xe7,0x59, +0x59,0xc6,0x07,0xd0,0x91,0x7f,0xde,0xb7,0x6d,0x2d,0x1d,0xb1, +0x77,0xb9,0x28,0x26,0x76,0x7b,0xb3,0xf9,0xf7,0xb2,0x20,0x3f, +0x7f,0x7f,0xef,0x5d,0x65,0x6e,0x7c,0x79,0x41,0x71,0x69,0x4e, +0x49,0xd6,0xa1,0x9c,0x43,0x79,0x5f,0x65,0xb7,0xf1,0x38,0xff, +0xfa,0xfc,0xab,0xbe,0x3f,0x73,0xe2,0xa3,0x08,0x82,0x2d,0xff, +0x36,0xaa,0x7e,0x2d,0x35,0xaa,0x5e,0xa8,0x02,0xaa,0x98,0x38, +0x4b,0xda,0x17,0x7a,0xf8,0xdf,0x46,0xd5,0x91,0x2c,0x18,0x4a, +0xcd,0x75,0x08,0x98,0x00,0x61,0x90,0x17,0x35,0xff,0xd3,0x3c, +0x9a,0xa0,0x09,0x23,0xcc,0xc1,0x8d,0xe4,0x38,0xec,0x36,0x17, +0xc7,0xe0,0x70,0x26,0xc9,0x4a,0xe9,0x0d,0x53,0x9f,0x9c,0xdc, +0x20,0xb9,0xc1,0xd8,0xf3,0x67,0xa2,0x23,0xd5,0xc0,0x1a,0x17, +0x16,0xd7,0xa2,0x39,0xcc,0x3d,0x10,0x7f,0xe4,0xe4,0xe1,0x43, +0x2a,0xf8,0x65,0x14,0xb1,0x32,0x33,0xb0,0xdf,0xec,0x56,0x68, +0xc3,0xdf,0xbd,0x7c,0xa7,0xbd,0xa5,0x5b,0x22,0x03,0x97,0x4f, +0x21,0x37,0x21,0x5d,0xbb,0xfb,0x26,0x24,0xb7,0xfe,0x9f,0x52, +0x87,0xbf,0xb1,0x84,0x6f,0xb4,0x59,0xd8,0xb7,0x98,0xc0,0xdf, +0x2d,0xf8,0xf7,0x4d,0x43,0x6d,0xfc,0xd5,0x0a,0x7e,0xdd,0x26, +0x2e,0xb1,0x84,0x4a,0xc6,0xc3,0x60,0xbe,0x13,0x2e,0xf5,0x4b, +0xa5,0x92,0xb7,0xad,0x0c,0xc6,0x5d,0x29,0x7f,0xc3,0xc1,0x16, +0x3d,0xc6,0xa4,0xe0,0xab,0x2b,0x6a,0xf4,0x41,0xd6,0x25,0xc5, +0x57,0xa8,0x5f,0x66,0xcd,0xe2,0x95,0xac,0xd0,0x85,0xf5,0x8a, +0x3c,0x5f,0xa0,0xde,0x08,0x57,0x5b,0x25,0x92,0x9d,0x32,0x3c, +0x46,0xc4,0xf9,0xcc,0xa5,0xcc,0x8c,0xac,0xb4,0x6c,0xf3,0x6c, +0xde,0x60,0x3d,0xb2,0x9b,0x70,0x95,0x63,0x96,0x25,0xdf,0x99, +0xd4,0x9a,0xde,0x90,0x5d,0xe7,0xd9,0xee,0x7b,0x75,0x17,0x0e, +0xf6,0xc7,0x71,0x7b,0x71,0xca,0x61,0xa9,0xd9,0xf0,0x92,0x78, +0x58,0x5c,0x00,0x13,0x6b,0x61,0x94,0x0b,0xcc,0xf0,0x87,0x95, +0x61,0xa9,0xed,0x3c,0xaa,0x26,0xe0,0xa8,0x8c,0x19,0xf9,0x3f, +0x57,0x3e,0x6c,0xae,0xed,0xe0,0xc4,0xe3,0x7b,0x49,0xf4,0xf9, +0xe8,0xf3,0x51,0xe7,0x39,0x61,0x12,0x63,0xed,0xa8,0xe1,0xbe, +0xdc,0x77,0x53,0xae,0x6e,0x91,0xa5,0x64,0x46,0x5f,0xc8,0xc7, +0x13,0xb0,0x32,0x44,0x2b,0xbc,0x63,0x02,0x77,0xc4,0x07,0xb8, +0x9d,0x4d,0x35,0x52,0x82,0x79,0x9f,0xf9,0xb8,0x85,0xeb,0x30, +0xac,0x9b,0x55,0xdc,0x47,0x65,0x82,0x75,0xa1,0x38,0xc3,0x84, +0xa2,0xef,0xb6,0x9d,0x35,0xef,0x32,0xde,0x5d,0x84,0xb9,0x2a, +0xa0,0x83,0xf1,0x38,0x56,0x5a,0x99,0x0f,0xd2,0x8e,0x5d,0x93, +0xba,0xbc,0x18,0xab,0x59,0x38,0x28,0xad,0xcc,0x36,0x30,0x82, +0x6d,0x0c,0x6a,0x89,0xdb,0x06,0xda,0x1e,0xdd,0x52,0x85,0x6d, +0x68,0xcc,0xc0,0x87,0xa9,0x64,0xe7,0x5b,0xab,0x37,0xb2,0x07, +0xb6,0x3e,0x7c,0xcb,0xb6,0xa6,0x65,0x95,0x0b,0xe8,0x3d,0x78, +0xc2,0x2b,0x12,0xd5,0x16,0x75,0xe3,0x6c,0x1b,0x47,0x83,0x85, +0x72,0x3c,0x6e,0x0a,0x06,0xb8,0x05,0xb5,0x99,0x13,0xf3,0x23, +0xe6,0x7d,0xb5,0x88,0x03,0x0f,0xe6,0xf4,0xe6,0xe3,0xab,0x8f, +0x9a,0x70,0x76,0x11,0x5f,0x7d,0x65,0x37,0x79,0x15,0x93,0x60, +0xa8,0xf4,0x8a,0xb9,0x91,0x9b,0xf3,0x38,0x5e,0x3d,0xee,0xc1, +0x85,0x57,0x40,0x54,0x15,0x63,0x61,0x13,0xa1,0x4f,0xf0,0xb0, +0x19,0x45,0x42,0x9b,0x71,0x05,0x7b,0x62,0xc1,0xd1,0x85,0x61, +0x4b,0x38,0xb0,0x64,0xd6,0x1d,0x5f,0x73,0xd4,0x58,0xcd,0x31, +0xf2,0xd0,0x21,0xd7,0xc9,0x8b,0x98,0x44,0x23,0xa5,0xd7,0x4c, +0x7f,0x4e,0xf6,0xbd,0x58,0xf5,0xd8,0x7b,0x17,0xde,0x7f,0x03, +0x84,0x43,0x23,0x26,0xba,0x39,0xe6,0xda,0x99,0x16,0x0e,0xbe, +0x85,0x10,0x12,0xe1,0x70,0xd8,0xfe,0x90,0x23,0xb7,0x59,0x31, +0xa3,0xfd,0x36,0x8d,0x51,0x9e,0x22,0xcf,0xc4,0xd7,0xc5,0xd5, +0xc5,0xd4,0x71,0x30,0xb2,0x1d,0x7b,0x64,0xcc,0x7d,0x51,0x8d, +0x50,0x6b,0xbd,0x14,0x1d,0x59,0x5c,0x8a,0xd9,0x52,0x17,0xe9, +0xa5,0x12,0x47,0xac,0x20,0x97,0x6b,0x93,0x85,0xcd,0x38,0xb6, +0x05,0x87,0x15,0x06,0x9a,0xf3,0x1f,0xfd,0x61,0x92,0xe5,0x6b, +0x2b,0x6e,0xa6,0x62,0x08,0x31,0xda,0x97,0xd4,0xa7,0xde,0x2a, +0x11,0x29,0xad,0x02,0x35,0x70,0x7c,0x0a,0xc7,0x8c,0xb2,0x79, +0x1d,0x74,0x45,0x0e,0x0d,0x70,0x2d,0x2e,0xe0,0x04,0x15,0x5d, +0xd1,0x8c,0x5d,0xa7,0xb7,0xd4,0x64,0xa6,0x4d,0x89,0x19,0xff, +0x5d,0xcd,0x93,0xc6,0x7b,0x1d,0xdc,0x61,0x76,0x51,0x95,0xf7, +0x5b,0x35,0x70,0x60,0x9a,0xb2,0x32,0x9a,0xd4,0xe1,0x8c,0x54, +0xcc,0x84,0xf9,0xac,0x58,0x2a,0xd4,0x90,0x70,0x54,0xdb,0x8d, +0xb3,0x1c,0x70,0x58,0x5f,0x30,0xdf,0x00,0x63,0x2f,0xc1,0x8c, +0x8b,0x30,0x8b,0x13,0xae,0x19,0x92,0x7a,0x64,0xaa,0x51,0xb5, +0x00,0x67,0xf7,0xa6,0xf0,0xfe,0x30,0xc3,0x09,0x26,0xdb,0xc2, +0x48,0xa9,0x5b,0x8c,0x30,0x83,0x2e,0xcd,0xf7,0xef,0xe0,0xa6, +0x22,0x12,0x6f,0xfe,0xb4,0x02,0x35,0x2c,0x41,0x63,0x29,0x4e, +0xb7,0x16,0x26,0xac,0x16,0xe7,0x58,0x52,0xc5,0x99,0xda,0x43, +0xd1,0xdc,0xda,0x56,0x71,0xed,0xb7,0xc2,0xac,0x66,0x9c,0xfe, +0x8a,0x2e,0x22,0x05,0x20,0x0f,0x08,0x16,0x7c,0x0b,0x05,0x4c, +0x8f,0xc4,0x98,0x59,0xb7,0x9a,0xc5,0x4f,0xf6,0x64,0x25,0x16, +0x7c,0xc7,0xc2,0xab,0x89,0x50,0xb7,0x12,0xeb,0x18,0x63,0x3b, +0xb2,0x02,0xf5,0xbf,0x67,0xe1,0x84,0xd4,0x09,0xc1,0x7e,0x05, +0x2b,0x1a,0x5b,0x12,0xd0,0x5f,0x8a,0x34,0x4c,0x3d,0x31,0xf1, +0x15,0xd8,0x2f,0x65,0xa5,0x18,0xde,0x8e,0xa4,0xfb,0xd2,0x18, +0x5e,0xe2,0x9f,0x3b,0x90,0x77,0x60,0x80,0x82,0x6c,0xbd,0x44, +0x68,0x16,0x9f,0x11,0x9b,0x19,0x9d,0x29,0x4b,0xe4,0x7d,0xb7, +0x5a,0x69,0x6f,0x37,0xab,0xa1,0x31,0x3c,0xb5,0x11,0x79,0xe5, +0x9c,0xe0,0xd0,0x42,0x2e,0x66,0xc6,0xd0,0x5f,0x5a,0xc4,0xf3, +0x41,0x3b,0xbc,0xf5,0xad,0x65,0xf5,0x3e,0x7c,0x56,0x4e,0x5a, +0x5e,0x4a,0x3e,0xf7,0x66,0x80,0xd0,0x2c,0xcd,0xa3,0xe5,0xdf, +0xbf,0x66,0xd2,0xc2,0x98,0x89,0x3f,0x93,0x56,0x71,0xe4,0x1d, +0xb8,0x07,0xca,0xbf,0xb7,0xcd,0x80,0x91,0x78,0xaf,0xd3,0xc8, +0x0c,0xef,0x5b,0xc1,0x7d,0x1d,0x71,0xbe,0x85,0x30,0x5f,0x6b, +0x60,0xac,0x29,0x31,0xd1,0x83,0xe6,0xc0,0x15,0xe4,0x7a,0x81, +0x13,0x36,0xb7,0x89,0x9b,0xef,0xb0,0x10,0x2f,0x0c,0x23,0x54, +0xb2,0xaf,0xd3,0x11,0x8e,0x26,0x5a,0x18,0x7f,0x8b,0xde,0x7a, +0xbd,0x00,0xc4,0xf2,0xb1,0xde,0x43,0xf3,0x36,0x3b,0x0f,0xbe, +0x4b,0xd6,0xb7,0xa9,0x75,0x33,0xf7,0x2d,0xec,0x27,0x32,0xe1, +0xaf,0x76,0x56,0x6c,0xc3,0x5b,0x44,0x88,0x04,0x3b,0x31,0x92, +0xe9,0xa1,0xd0,0xf5,0x8d,0x30,0x6a,0x31,0x2b,0x0e,0x16,0x2f, +0x91,0xff,0xb4,0xb7,0xa8,0x40,0x73,0x63,0x18,0x2f,0x51,0x0e, +0x7b,0x59,0xcc,0x96,0x76,0xd2,0x5e,0x55,0x36,0x74,0x9d,0xbd, +0xa7,0xf2,0x6f,0x43,0x8c,0xa3,0x12,0xe5,0xf0,0xce,0x67,0x04, +0x9e,0x8a,0x0f,0xf1,0x29,0x0b,0x17,0xc1,0x9c,0xa0,0xcd,0x77, +0x12,0xe1,0xc6,0x4a,0xf2,0x1d,0xb8,0xac,0xa4,0x61,0xa9,0x1d, +0x59,0x8c,0x36,0x6f,0x58,0x88,0x9e,0x08,0x2e,0x8b,0xd1,0x85, +0x82,0x85,0x7e,0xc1,0x9d,0x1c,0x4d,0xfa,0x6f,0xb3,0x1e,0x1e, +0x54,0x3b,0x50,0xf5,0x73,0xb3,0x9e,0xff,0x40,0x34,0x67,0x9c, +0x3a,0xfb,0x7f,0x42,0xb4,0x7f,0x9b,0xf5,0xfc,0x28,0x41,0x34, +0x25,0xd8,0x2f,0x24,0x12,0xaf,0x59,0x6b,0x17,0xa0,0xda,0xfc, +0x52,0x33,0x1e,0x26,0xfe,0xf4,0xfa,0x5d,0x1e,0x8c,0xa2,0x18, +0x38,0x07,0x95,0xde,0xcf,0x03,0xb5,0x99,0xa5,0x5d,0x3c,0x4e, +0xf9,0xb0,0xe8,0xad,0xeb,0x6f,0x1c,0xda,0x88,0xc3,0x08,0xbc, +0xe8,0xc2,0x17,0x0c,0xd5,0xf5,0x27,0x24,0xcf,0xb1,0xd0,0x34, +0xcf,0x44,0xe3,0x28,0x72,0x47,0xa7,0x45,0x54,0xbd,0xa8,0xfc, +0xb5,0xf0,0x1d,0x07,0x39,0x1d,0xe2,0x71,0x73,0x58,0xc9,0xec, +0x5e,0x65,0x8f,0x83,0xec,0x56,0xe8,0x9d,0xe4,0xa3,0x4c,0x81, +0x3b,0x07,0xbb,0xd2,0x80,0x4b,0x55,0x89,0x0d,0x8e,0x0d,0xbe, +0xb8,0xb7,0xb9,0x80,0x77,0xf9,0xc1,0x0c,0x86,0x58,0x3f,0xa0, +0xc6,0xb6,0x14,0x6c,0x48,0x2b,0x70,0xf9,0xa0,0x1a,0x07,0xeb, +0xb8,0x6a,0x5c,0xc5,0xc6,0x0d,0x34,0x98,0x32,0xfe,0xb7,0xc1, +0x94,0x92,0xf1,0x87,0x7f,0x1a,0x4c,0x35,0xb9,0xd5,0xbb,0x36, +0x38,0xef,0xdc,0x22,0xd3,0xd6,0x90,0x1a,0x4c,0xdd,0xbd,0xde, +0x75,0xa7,0xf6,0x49,0x89,0x77,0x89,0x67,0xa9,0x6b,0x45,0x13, +0xbf,0xb3,0xda,0xbd,0xdc,0xa3,0x94,0x13,0x6c,0x1b,0x08,0xe8, +0x41,0x27,0xea,0xd1,0x85,0xf6,0x6e,0x17,0xe3,0xff,0x1e,0xd4, +0xdb,0x25,0xb8,0x4b,0xbc,0x0c,0x46,0x42,0x2c,0x19,0xb8,0xac, +0xc7,0x88,0x65,0xe2,0x6a,0x92,0xfd,0x2c,0xf3,0x6d,0xfa,0x5b, +0x0e,0x18,0xe6,0x08,0xaa,0x04,0xe1,0x08,0xfb,0xe9,0xde,0x05, +0xde,0x79,0x3e,0x54,0x9e,0xfe,0x0a,0x24,0x60,0x0d,0xff,0x4b, +0x2a,0xe4,0xfb,0x5f,0x34,0x22,0xd2,0x43,0x0f,0xd4,0x63,0x94, +0x05,0xb5,0xdf,0x88,0x5b,0x85,0x7b,0xa9,0x47,0x51,0x2b,0x30, +0x79,0xc0,0xc7,0xc3,0x2a,0x7a,0xcb,0x6b,0xd8,0xb8,0xfe,0xd8, +0xde,0xa8,0x76,0xe9,0x96,0x2d,0x8f,0xe8,0x1f,0xd2,0xf9,0xdc, +0x13,0x2b,0x78,0x46,0xc0,0x34,0xff,0xf5,0xcd,0x1e,0x0d,0x1e, +0x0d,0x3b,0x77,0x6e,0x31,0xd7,0xda,0x2a,0xdd,0xf2,0x83,0x9b, +0xdd,0x77,0x6a,0x9f,0x96,0xf8,0x95,0xf8,0x94,0x78,0x70,0x42, +0x81,0x9c,0x8a,0xca,0x54,0x3f,0xdc,0x1a,0x82,0xdb,0x8e,0xc7, +0x53,0xf8,0xb4,0xf6,0x02,0x68,0xa5,0xc1,0xf2,0x12,0xae,0x5a, +0xd1,0x47,0xb6,0xa4,0x6f,0x2f,0x30,0x2c,0xbf,0xd2,0xd0,0xd2, +0x55,0x74,0x93,0xbb,0x8c,0xaf,0xd9,0xe8,0xfc,0xa8,0x82,0x73, +0x85,0x9c,0x30,0xaa,0x55,0x54,0x62,0xce,0x16,0x9e,0x29,0x2a, +0x51,0x85,0x8f,0x2d,0x38,0x8a,0x29,0x6a,0x2a,0xe8,0x49,0x6b, +0xb4,0x4a,0xe3,0x43,0x2c,0x3d,0x35,0xdd,0x2d,0x38,0x71,0x88, +0x15,0x4c,0x65,0x4e,0x7b,0x9d,0xf6,0x39,0xe9,0xcb,0xe1,0x2c, +0x4b,0x50,0x63,0x82,0x70,0xa5,0x3e,0x85,0xa1,0x13,0x51,0xb9, +0xcc,0x99,0xff,0xe1,0x45,0xef,0xcb,0xca,0x9f,0x0a,0x1c,0xaa, +0x9d,0x9b,0xdd,0x74,0xdd,0x37,0xed,0x5a,0xb5,0x37,0xdd,0x86, +0x7f,0x9b,0xfd,0x5d,0xc9,0xbd,0xba,0x5b,0x0e,0x4f,0x3d,0x5e, +0x04,0x71,0xb8,0x5f,0xae,0x45,0x8e,0x94,0xec,0x6d,0x0b,0x29, +0xb4,0x0d,0xe1,0x93,0xfd,0xb2,0x2c,0x2e,0x7a,0x71,0xc8,0xc5, +0x93,0x43,0xa5,0xfb,0xea,0x42,0xf2,0x6d,0xf7,0xf2,0x29,0x01, +0x19,0xf6,0x71,0xf4,0x9a,0x02,0xcf,0x48,0xcf,0xf1,0xb5,0xf4, +0x1c,0x25,0xc2,0xbd,0x49,0x41,0xc8,0x3a,0xcc,0xf4,0xce,0xf3, +0xca,0xf1,0xce,0xe6,0xe4,0xe6,0x38,0x84,0xf8,0x5b,0x3b,0x39, +0x5a,0xb8,0x5b,0x56,0x38,0xd4,0x7a,0x49,0x64,0xd2,0x44,0x3a, +0x0e,0x0c,0xbd,0x10,0x7a,0x3e,0xb4,0x29,0x95,0x0f,0xb9,0x13, +0x78,0x37,0xa0,0x9b,0x7e,0x45,0xc2,0xee,0x38,0xdf,0x38,0x6f, +0xeb,0x48,0x8b,0xe3,0x16,0x27,0xae,0xbf,0xb8,0x0d,0x4a,0xbd, +0xc0,0x5a,0xe6,0xf1,0x7e,0xfa,0x1e,0xba,0xae,0x06,0x7b,0x2f, +0x05,0x65,0xef,0xc9,0xae,0xea,0x2b,0xbb,0x9d,0x77,0xdd,0x32, +0x9b,0x0f,0xd4,0xf3,0xd6,0xf3,0x92,0x85,0x25,0x85,0x25,0x86, +0x25,0x78,0x3a,0xf1,0x5d,0x36,0x9d,0xb2,0x66,0xe3,0x3d,0xee, +0x81,0x5e,0x7b,0xfc,0xdc,0x4f,0xb9,0x9f,0xf6,0x38,0x7d,0xc1, +0x94,0xef,0x3b,0xdb,0x7f,0xae,0x4f,0x3a,0x0e,0xec,0x11,0x56, +0xb2,0xa5,0xe7,0x4a,0xcf,0x15,0x53,0x37,0x78,0xfb,0x1e,0xd1, +0x60,0xa2,0x61,0x7c,0x34,0x8c,0xbd,0x00,0x23,0x68,0x7c,0x63, +0x4a,0x1f,0x53,0xe4,0x9c,0xa3,0xd3,0x8e,0x4e,0xe3,0x66,0x99, +0xfc,0xc4,0x1c,0xc2,0xd1,0xf4,0xdf,0x57,0x38,0x82,0x43,0x15, +0x13,0xe1,0x76,0xf7,0x1c,0x26,0x06,0xb8,0x18,0x50,0x8e,0x06, +0x65,0xee,0x11,0x83,0xc3,0x05,0x96,0x9c,0x58,0x75,0x0c,0x07, +0x47,0xe0,0x70,0x0e,0x1d,0x99,0x8b,0x9f,0x62,0x3e,0xc5,0xbc, +0xe7,0x34,0x15,0xbb,0x49,0x3c,0x8c,0x88,0x87,0xd1,0x71,0x30, +0x9a,0xa3,0x30,0x32,0x02,0x47,0x1f,0xc5,0x71,0xe1,0xa8,0xc4, +0x21,0x76,0x90,0x43,0x37,0xf6,0xde,0xdf,0xdb,0x67,0x1b,0xc6, +0x67,0xe8,0xa7,0x68,0xc4,0x6f,0xe7,0xb0,0x49,0x93,0xd4,0xbc, +0xcc,0xfa,0x25,0xf1,0x17,0xcb,0x8b,0xfc,0x57,0xcb,0x83,0x56, +0x3a,0xaf,0xa5,0x26,0x5a,0x5b,0x5e,0x40,0xfe,0x1e,0x63,0x24, +0x2c,0x67,0x0e,0x59,0x87,0xca,0x82,0x2d,0x38,0x4c,0x55,0x8c, +0xbf,0x76,0x5d,0xb8,0xad,0x73,0x4d,0x3e,0x5e,0x1c,0xc9,0xa4, +0xb7,0xa4,0xb4,0x25,0xb4,0x71,0xc2,0x0a,0x46,0x11,0x28,0x2e, +0x23,0x60,0x29,0xdc,0x46,0x4b,0x56,0xbc,0x6d,0x46,0xe8,0xc0, +0x49,0xbc,0xcd,0x28,0xcb,0x19,0xe1,0x6b,0x12,0x7d,0xf1,0x5c, +0x62,0xaa,0x2a,0x5c,0xc4,0x08,0x3b,0x30,0xc6,0xbd,0x86,0xd2, +0xb1,0x5e,0x19,0x93,0x92,0x78,0x2e,0xfa,0xa2,0xfa,0x2e,0xa3, +0x75,0x36,0xb8,0xd8,0x25,0x8d,0x2a,0xfa,0xa2,0x9a,0x8f,0x5d, +0x29,0x2f,0x29,0x42,0x4b,0x5e,0x0b,0xc3,0x0d,0x61,0xa9,0x7d, +0x56,0x27,0x8f,0x2b,0x6b,0xe6,0xb4,0x07,0x5e,0xe3,0x60,0x6c, +0x26,0x19,0xf8,0x54,0x75,0x7a,0x7a,0xb5,0x54,0x1c,0x7e,0xc6, +0x0e,0x6c,0x30,0x8c,0x55,0xe4,0x43,0x3e,0x31,0x87,0xa4,0x0e, +0x16,0x5e,0xcf,0x24,0xa5,0x21,0xe5,0x7b,0x4a,0x7d,0x73,0x2b, +0x79,0xcf,0x02,0xf7,0x4b,0xee,0xa9,0x1c,0x76,0xd9,0x93,0xb2, +0xfd,0xe5,0x7b,0x4b,0x76,0xe5,0x56,0xf3,0x5e,0xb9,0x6e,0x99, +0xee,0x29,0x9c,0x38,0x6e,0x1b,0x31,0x83,0x87,0x9d,0x2c,0x3c, +0xc1,0xad,0xa4,0xe7,0x52,0x6b,0x71,0xed,0xe5,0xa0,0x4a,0xde, +0xd9,0x53,0xe6,0x6d,0x4a,0x45,0x2c,0x57,0x87,0x5c,0x2d,0xe8, +0xbc,0xdc,0x58,0xb7,0xa7,0x92,0xb7,0x77,0x31,0x76,0x31,0x0c, +0xe0,0xb0,0xee,0x02,0xfd,0x8a,0xe8,0x7f,0xce,0x90,0xa2,0x65, +0xac,0xf0,0x2a,0x97,0xec,0x30,0x58,0xe2,0x8c,0x43,0x77,0xa7, +0xd9,0xf3,0x30,0x34,0xff,0x7d,0xdd,0xdd,0xeb,0xdc,0x35,0x37, +0xb2,0x70,0x19,0x0e,0xb3,0xc6,0x65,0xae,0xe9,0xd6,0xbc,0xc4, +0xb0,0x3b,0xae,0xf3,0xfd,0x2f,0x9c,0x62,0x35,0xde,0x25,0x6d, +0xd4,0x45,0x67,0xe3,0x45,0xe9,0xc4,0x09,0x8e,0x13,0x70,0xaf, +0x82,0x15,0x4f,0x68,0x90,0x36,0xdc,0xf5,0x32,0x8d,0x23,0x71, +0x18,0x2e,0xda,0x86,0x0e,0xae,0x1c,0x4e,0x82,0x60,0xe9,0x34, +0x6a,0x8e,0x74,0x1a,0x05,0x5f,0x7f,0xa6,0x8d,0xd0,0x46,0xf5, +0x81,0x46,0xbf,0x16,0x7c,0x5e,0x5e,0x7e,0x69,0x6e,0x15,0x27, +0xa6,0xf6,0xca,0x39,0xb6,0xe2,0x51,0xf1,0xeb,0xcc,0x8f,0x9c, +0xe0,0xaf,0xd8,0x40,0xae,0xd5,0x76,0xb4,0x94,0xd7,0x38,0x55, +0xf1,0x5e,0xce,0x16,0xd6,0x46,0x2e,0x1e,0x9d,0x81,0xbd,0x07, +0x7a,0x69,0xe4,0xd2,0x2e,0xb5,0x36,0x4e,0x6b,0xc3,0xb4,0x5f, +0xa1,0xbe,0x1d,0xeb,0x7f,0x34,0x5a,0x86,0x85,0x32,0x28,0x9c, +0x8b,0x71,0x16,0x10,0x37,0x95,0xa2,0x07,0x48,0x61,0x34,0x57, +0xcd,0xd7,0xc7,0xf1,0x3b,0x33,0x2d,0xf8,0xce,0x94,0xd6,0xac, +0xfa,0x3c,0x0e,0xad,0x58,0xfb,0x70,0xfb,0x48,0xc7,0x63,0x71, +0x14,0xd1,0x4d,0x49,0x83,0xa9,0xb9,0x30,0xa2,0x24,0xb2,0x83, +0x37,0xd9,0xaf,0x1d,0xa6,0x79,0x90,0x83,0xbd,0x6c,0x5d,0x69, +0x65,0x75,0x49,0x63,0x25,0xae,0xff,0x1d,0xd7,0x51,0xd8,0x35, +0xb4,0xb8,0x9d,0xdf,0xd0,0x60,0xd8,0x69,0xd7,0x4b,0xf5,0xe8, +0x92,0xb0,0x9c,0x58,0xc5,0x2b,0x19,0xe2,0x44,0x36,0xe8,0xd8, +0xf9,0x2c,0xf5,0x5b,0x2c,0x6c,0x48,0x39,0xd6,0x80,0xab,0xc2, +0x94,0x5e,0x83,0x0d,0x1b,0xb1,0xeb,0xa8,0xc7,0xa1,0x80,0xe6, +0x83,0x7c,0x62,0x49,0x42,0x6d,0x6c,0x29,0x57,0x85,0xa7,0x6e, +0xc1,0xce,0x26,0xdc,0xd9,0x6b,0x8c,0xba,0xa8,0x8f,0xa6,0x2c, +0xfa,0x9f,0xc2,0xc5,0xe6,0x38,0x86,0x86,0x78,0x4a,0xd7,0xe1, +0xcb,0x73,0xb0,0x0e,0x4e,0xaa,0x82,0x3a,0x8c,0x9a,0xc7,0xce, +0x39,0x72,0xc1,0xee,0xed,0x45,0xa5,0xad,0xac,0x75,0x4a,0x58, +0x8b,0xd4,0x9f,0xb7,0x34,0x31,0x31,0x5f,0x1d,0x7e,0x11,0xbc, +0x89,0xe1,0x96,0x99,0xdb,0x70,0xa4,0x57,0x0e,0x0d,0x42,0x86, +0x96,0xc1,0x88,0xc7,0x77,0xbe,0xe5,0xf0,0x9d,0x54,0x3a,0x3b, +0xbd,0x11,0xd4,0xdf,0x3d,0xfd,0x85,0x3e,0x1b,0xdd,0x35,0xa8, +0xb2,0x10,0x67,0x3a,0x70,0xfb,0xf0,0x11,0x01,0xcd,0x16,0x58, +0xf7,0xe9,0x2d,0x8c,0x70,0xa9,0xe4,0x57,0xe1,0x10,0x5c,0x32, +0x17,0xb7,0xd9,0x72,0xf8,0x23,0x3a,0x90,0x3f,0x1e,0x94,0xff, +0x06,0xda,0xaa,0x26,0x0c,0xae,0xf6,0x5b,0xbb,0xc4,0x50,0x0d, +0x3e,0x16,0x90,0xe0,0xf0,0xe8,0x0c,0x75,0x38,0x6d,0x82,0xe7, +0x59,0x93,0x8c,0x7d,0x7d,0x6a,0xc2,0x06,0xa6,0x32,0x49,0xe2, +0x7d,0x1c,0xce,0x9a,0x26,0x29,0xe1,0x64,0xba,0x5a,0x69,0xd4, +0xf9,0xfd,0x73,0x32,0x72,0x54,0x72,0x7e,0xbf,0xb6,0xce,0x05, +0x13,0x19,0x9a,0xe0,0x28,0x4b,0x50,0xa2,0x16,0x68,0x9c,0x07, +0xce,0xde,0x88,0xca,0xe5,0xb6,0x7c,0xdf,0x87,0xcc,0x8f,0xe7, +0x69,0xc8,0x22,0x26,0xb4,0x0b,0xe7,0xff,0xf1,0x7c,0xd7,0x70, +0x4d,0x69,0xb9,0x52,0xa9,0x30,0x88,0x60,0xb0,0x50,0x07,0xc1, +0xb8,0xe9,0x29,0xb8,0xb4,0x8a,0xff,0xcb,0x12,0x6c,0xd7,0xb3, +0xad,0x13,0x9f,0xc2,0xd0,0xf5,0x2c,0xae,0xb5,0x95,0xa2,0xf9, +0xc1,0x52,0x34,0x7f,0x49,0xea,0xf6,0x3e,0x54,0x1a,0xe5,0xd3, +0xb8,0x1e,0xa5,0xd3,0x0e,0x86,0xa9,0xa5,0x46,0x4f,0x2c,0xb0, +0x12,0x0a,0x98,0xba,0xcd,0x44,0x31,0xc8,0x0a,0x72,0xd1,0x9d, +0xe2,0xc5,0x24,0x0b,0x25,0x7a,0x07,0xb5,0xa9,0x19,0x54,0x6f, +0x6c,0xa1,0x8c,0x15,0x0f,0x7a,0x11,0x17,0x73,0x2d,0x03,0x5d, +0xf7,0x62,0x5b,0xfe,0x5a,0xd5,0xfd,0xeb,0xb5,0x7d,0x1c,0x9c, +0x3a,0x45,0xda,0x9c,0xef,0x69,0xd6,0xca,0xaa,0xaa,0x78,0xb7, +0xba,0x0d,0x0f,0x2d,0x2b,0x39,0x49,0x77,0x47,0x90,0xdf,0x1e, +0x03,0x03,0xdc,0xdd,0xf7,0x16,0xd5,0xbc,0xe6,0xdc,0x39,0xd3, +0x16,0x6c,0xe5,0x5c,0xbe,0x0d,0x79,0x03,0x43,0x54,0x81,0xd1, +0x55,0x74,0xa3,0x31,0x9b,0xaa,0xaf,0x04,0x4b,0x99,0xb6,0xac, +0x8c,0x76,0x75,0xc1,0x29,0x8a,0xcd,0x44,0x6b,0x90,0x5a,0x72, +0x1e,0xc2,0x05,0x97,0xa9,0x9b,0x5e,0xf4,0x0e,0x07,0xbf,0xd5, +0xfe,0x93,0xc3,0xd3,0x14,0xcc,0x1a,0xf7,0x2e,0xb9,0xbd,0xb5, +0xde,0xc5,0x9e,0xbf,0x6f,0xf7,0xbd,0x4e,0x9f,0x1e,0x87,0x25, +0x3a,0xc4,0x18,0x92,0x58,0x1f,0x9c,0xb3,0x98,0xaa,0xc1,0xac, +0x85,0x95,0xd4,0xdb,0x2c,0xfb,0xe3,0x23,0x4c,0x2d,0x81,0xed, +0x5c,0x0b,0x2b,0x31,0x38,0xdb,0x12,0xfb,0x1a,0xb3,0x5a,0x33, +0x89,0xc5,0xbf,0xdb,0xbd,0xc9,0xb5,0xd9,0x91,0x7b,0x78,0x91, +0x60,0x90,0xf0,0x0b,0x04,0xa1,0xe1,0x13,0xd8,0xdb,0xa6,0xd8, +0x60,0x01,0x01,0x1b,0xd8,0xb6,0x89,0x4f,0x60,0xec,0x06,0x16, +0x77,0xd0,0x87,0x34,0x06,0xc7,0xc0,0x18,0x16,0x3a,0x26,0xd2, +0xd1,0x58,0x69,0xd4,0x83,0x63,0xa4,0xb3,0x89,0x31,0x30,0x9e, +0x11,0xff,0xc2,0x15,0xc4,0xb1,0xc6,0xa0,0xc9,0xb4,0xcc,0xd3, +0x9e,0xef,0x70,0xef,0xb2,0x6f,0x74,0xe0,0xe4,0x86,0x2e,0x44, +0x7c,0x66,0x25,0x3c,0x63,0x14,0x36,0x7b,0x89,0x1f,0x0e,0x75, +0xc2,0x11,0xba,0x73,0x9a,0xdd,0xf8,0x9b,0x30,0xa8,0x09,0x26, +0xe7,0xfe,0xc1,0xc9,0x2d,0xbd,0x89,0x62,0x9b,0x25,0x5c,0xa3, +0x28,0xf9,0x4b,0x26,0x59,0xa6,0x04,0xc3,0x99,0xba,0xd4,0xcc, +0x6a,0x29,0xc9,0xbb,0x9f,0x15,0xf3,0xfd,0x89,0xb3,0xc9,0x36, +0x7d,0x4d,0x89,0x14,0xf0,0x66,0xf5,0xe3,0xeb,0x8d,0x57,0x38, +0x28,0x39,0x49,0x7a,0xec,0xef,0xe9,0x34,0xca,0x2a,0x6b,0x79, +0xa7,0xfa,0x4d,0xb7,0x8c,0xeb,0xa8,0x45,0x75,0x75,0x25,0xce, +0xb0,0x3a,0x90,0x7e,0x2a,0x42,0x15,0x3c,0xd9,0xe4,0xf3,0x12, +0x7f,0x84,0x5f,0x13,0x3f,0xc7,0x07,0xe7,0x06,0xe2,0xec,0x23, +0x1c,0x0d,0x27,0x31,0x20,0x0c,0x6d,0xed,0x71,0xaa,0x5a,0x83, +0x8b,0x52,0x2b,0x2c,0x4b,0x06,0x6f,0x38,0xa4,0x0a,0x46,0x6c, +0xc9,0xd9,0x92,0x73,0xa5,0xe7,0x39,0x85,0x31,0xeb,0x72,0xd4, +0x25,0xc2,0xe7,0x78,0xac,0x29,0x7f,0x3d,0xee,0x8f,0xec,0x2b, +0x59,0x17,0x02,0xce,0x07,0x9c,0x0b,0xaa,0x4b,0xe6,0xbf,0x7a, +0xb8,0xef,0xf7,0xb0,0x2b,0x0e,0x87,0xf8,0x18,0x9f,0x18,0xe7, +0x18,0xe7,0xd0,0xc8,0xe0,0x63,0xc1,0xc7,0x38,0xb9,0x1e,0x5b, +0x7a,0xa1,0x34,0xaa,0x38,0x9a,0xa3,0x01,0x15,0xe6,0x5c,0x42, +0xb7,0x26,0xd4,0x50,0x53,0x08,0xf2,0x13,0x04,0xc3,0x84,0x99, +0x10,0x86,0x23,0x9f,0x82,0x4a,0xb3,0xb8,0xd5,0x1a,0x26,0xae, +0x67,0x9b,0x27,0x3e,0xed,0xa7,0xc2,0xa6,0x64,0x4f,0x70,0x8a, +0x1e,0x4c,0x61,0x69,0x08,0x33,0x85,0xd0,0xc1,0x55,0xa6,0x91, +0x0e,0x60,0xca,0x0d,0x9c,0xc2,0x96,0xe1,0x08,0x22,0x32,0x36, +0x02,0xc3,0x14,0x6c,0x27,0xe2,0x76,0x1b,0x30,0xc5,0x5d,0xcb, +0x25,0xee,0xa8,0x1b,0xf4,0xa1,0xa4,0xd6,0xab,0x83,0x2b,0xbd, +0x5d,0xe4,0xf5,0x48,0xbe,0xc3,0x25,0xcb,0x6c,0xb3,0xba,0x22, +0x7e,0x4f,0x67,0x60,0xa3,0x5f,0x1d,0x87,0x19,0xa7,0x48,0x88, +0xb9,0x9f,0xb9,0x8f,0x4b,0xa5,0x07,0x5f,0x5a,0x57,0xdc,0x9f, +0x4e,0x63,0xdb,0x26,0x79,0x38,0x81,0x8e,0x0d,0x78,0x18,0x1d, +0xe5,0xe7,0xc0,0x11,0xc3,0x9f,0x40,0x5f,0xeb,0xdf,0xaa,0x0c, +0xfc,0x8d,0x2a,0xe4,0x09,0x6c,0xa5,0xab,0x7a,0xc0,0x9a,0xcc, +0x41,0x8d,0xf7,0xac,0x30,0x6f,0xe2,0x1c,0xdc,0x4a,0xdf,0x17, +0xce,0x21,0xa8,0xf5,0x5e,0x3a,0x55,0x5f,0x89,0x45,0x44,0x2e, +0x6b,0x53,0xc8,0x18,0x78,0x8e,0x66,0x84,0x8a,0xfc,0x76,0x89, +0xa1,0x03,0x16,0x33,0x0d,0x59,0x19,0x34,0xce,0xb6,0x14,0x66, +0xb5,0xff,0x3d,0x5c,0xc6,0x42,0xe0,0x4e,0x62,0x69,0x66,0x60, +0x87,0x43,0xec,0xa5,0x86,0xe7,0x43,0x1b,0x6e,0xb5,0xb7,0x53, +0xc1,0x7f,0x1b,0x41,0x5e,0x3a,0x3e,0xb2,0xba,0x67,0x56,0x56, +0xc3,0x6f,0xed,0xda,0xd6,0xb4,0xa2,0x96,0x0a,0xbe,0x0d,0x4c, +0x27,0x77,0xcb,0xfb,0x6b,0xfa,0xda,0x9d,0xaa,0x79,0x13,0x0b, +0x3d,0x27,0x4d,0x0f,0xc7,0x16,0xaf,0xde,0x80,0x5b,0x9c,0x40, +0x3a,0xc4,0x75,0xbf,0xc3,0x87,0x36,0xfc,0xf0,0x5e,0x98,0xd4, +0x2e,0x4e,0x7a,0xa7,0xbf,0x50,0x64,0x65,0x02,0x3b,0x07,0x5f, +0x5a,0xc0,0xcb,0x19,0xe2,0x5c,0x73,0x61,0x38,0xb3,0x72,0x09, +0x4e,0xd0,0xc0,0xad,0x16,0x97,0xcc,0xf8,0x67,0x97,0xee,0x17, +0x5e,0x2d,0xe7,0x70,0x0b,0xeb,0x14,0xe1,0x10,0x69,0x7b,0x2c, +0xde,0x90,0x07,0x9d,0x6c,0x58,0x50,0x00,0xe3,0xca,0x22,0xba, +0xf9,0x8d,0x7b,0x57,0x85,0x2e,0x0c,0xe3,0xc0,0x9e,0xed,0xa2, +0x3e,0xe7,0x72,0xcb,0x55,0xb4,0x04,0x15,0xea,0x00,0x42,0x97, +0x14,0xb6,0xf3,0x33,0xab,0xd6,0x35,0xe9,0xf7,0x70,0xca,0x4f, +0xe5,0x35,0xd4,0x01,0x95,0x50,0x1f,0xf7,0xbd,0xb8,0x5f,0x6a, +0xbf,0x16,0xde,0x29,0xa6,0x9b,0x41,0xb0,0xb8,0x09,0x4f,0x1b, +0xc3,0xe9,0xcf,0xbd,0xd1,0x62,0x7a,0x58,0x9c,0x2d,0xf5,0x46, +0xab,0xf9,0x6f,0x6f,0x34,0x17,0x1c,0xe6,0xae,0xc1,0xe1,0x23, +0x38,0x4a,0xf2,0xb4,0x4b,0x66,0x65,0x4b,0xbd,0xd1,0x82,0xbe, +0xf7,0xfc,0xdd,0xff,0x06,0x27,0xea,0x1f,0xa5,0x5e,0xf0,0x43, +0xa7,0xd4,0x9d,0x46,0x9d,0xfe,0xf1,0x6c,0xea,0xdd,0x64,0xc3, +0x3a,0x30,0xdb,0x9c,0x6d,0x17,0xe7,0x53,0x7f,0xb5,0x9b,0xfa, +0xab,0x5c,0xc9,0x5f,0x05,0x48,0xc5,0x6b,0x2b,0x71,0x2d,0xac, +0xa4,0x41,0xa5,0x28,0xdf,0x44,0x92,0xeb,0x13,0x1a,0x63,0x1b, +0x8d,0x92,0xf9,0x5d,0x38,0xd9,0x04,0x27,0x6f,0x9a,0x59,0xef, +0xc4,0x57,0xb7,0x97,0x5f,0x2b,0xb8,0xc3,0x41,0x06,0x35,0x9b, +0x24,0x02,0xed,0xf6,0xa3,0xb2,0x9a,0xe6,0x91,0x60,0x4f,0xbd, +0xc9,0x38,0x93,0x91,0x3a,0x9e,0x13,0xe6,0x43,0x2d,0x85,0xa7, +0x89,0xea,0x29,0x30,0x21,0x86,0x9a,0x21,0xa2,0x0a,0x23,0x59, +0xf1,0x18,0x2c,0x24,0x33,0x1c,0x71,0xb2,0x3f,0x4e,0x3d,0x90, +0x6c,0xc1,0x83,0x5a,0x12,0x2c,0x28,0xfd,0x9d,0x8a,0xc9,0x48, +0xdc,0x44,0xc2,0x8a,0xf6,0x15,0xef,0xcb,0xb1,0xde,0xcd,0xa7, +0x07,0x64,0x79,0x24,0xf9,0x72,0xeb,0xbd,0xc9,0xde,0xea,0xa0, +0xf2,0x5d,0x25,0x36,0xfe,0x7c,0x8e,0x4f,0xae,0x73,0x9a,0x9b, +0x44,0x0a,0x36,0x9d,0x2c,0x59,0x88,0x6a,0x1a,0xb8,0xdc,0x25, +0xc3,0x8a,0x7f,0x98,0x71,0x3f,0xef,0x46,0x69,0xc2,0xbe,0xf8, +0x7d,0xf1,0x7b,0xb7,0x19,0xcc,0xb6,0xc4,0x11,0x2e,0xd9,0x96, +0x3c,0x70,0xd5,0x1f,0xdb,0xef,0x5e,0x8d,0xdf,0x7d,0x71,0x57, +0x8c,0xff,0x86,0xd5,0x38,0x5a,0x0b,0x55,0xac,0xb3,0xe9,0xd7, +0x8d,0x6d,0x84,0x51,0xb7,0x1e,0x3e,0xe2,0xce,0xed,0x3e,0xb3, +0xcb,0x5f,0x75,0x66,0x80,0xab,0xa6,0xda,0x42,0x26,0xd9,0x58, +0xe9,0x5b,0x06,0x06,0xd5,0xb5,0xc3,0x4c,0x98,0x6b,0x09,0xe3, +0x35,0xfe,0x54,0x6f,0x2e,0xac,0x2f,0x2d,0xbf,0xcc,0x41,0x05, +0x7d,0x32,0x6e,0xcf,0x8d,0xfe,0x94,0xdd,0xb3,0xf1,0xe0,0x5b, +0xb7,0xf5,0x4d,0x2b,0xa3,0x20,0x49,0xe8,0x95,0x3f,0x27,0xda, +0x5b,0xc5,0x29,0x78,0x81,0xc1,0xb3,0x07,0x71,0x93,0x19,0x72, +0x6a,0x4d,0x56,0x92,0xf3,0x4a,0xa4,0x6a,0x1e,0xa5,0x0a,0x76, +0xf2,0xa2,0x36,0x71,0x32,0x1b,0xaf,0x98,0x4e,0x70,0xd9,0x23, +0x50,0x81,0x4a,0x54,0xb9,0x03,0xeb,0x9a,0x70,0xdd,0x6d,0xf3, +0xed,0xb8,0xca,0x06,0x56,0x69,0x52,0x08,0x5c,0x09,0x13,0x37, +0xa1,0x86,0x0d,0x68,0xe0,0xd4,0x0e,0x98,0x0a,0xcb,0x98,0x76, +0xf8,0x8d,0xa0,0xf3,0x01,0xe4,0x37,0xe0,0x60,0xb5,0x3a,0xa7, +0xd6,0xfb,0xb9,0x2f,0x12,0x3e,0xa8,0x50,0x00,0x65,0x8e,0x53, +0x98,0x38,0x0b,0x89,0xb3,0xab,0x2a,0x25,0xb5,0x4a,0x5d,0x3e, +0x0e,0x6b,0xa5,0x8d,0x0e,0x67,0x82,0x1a,0xb0,0x18,0x34,0x18, +0x71,0x08,0x86,0x52,0x3d,0xb8,0x03,0xee,0x0c,0x18,0xa2,0x2d, +0x39,0x57,0x77,0xa6,0x49,0x62,0x34,0xd2,0xc0,0xf9,0xf4,0x77, +0x4f,0xc8,0x36,0x74,0xbf,0xc7,0x2a,0xcb,0xab,0xe4,0x4f,0x89, +0x09,0x7e,0x81,0xa6,0xf0,0x85,0xf4,0x36,0xc3,0x1c,0x66,0xe0, +0xc8,0x6e,0x18,0x49,0x95,0x79,0xe0,0x6d,0x71,0x07,0x2e,0x66, +0x14,0x43,0x61,0x38,0xa1,0x8e,0x79,0xbc,0x19,0x8d,0x18,0xcf, +0xb0,0xf6,0x07,0xec,0x0f,0x0e,0xa4,0x1c,0x57,0xc5,0x56,0x0f, +0xe4,0x13,0x14,0x23,0xc7,0x0e,0x64,0x49,0x7d,0xae,0x17,0x6c, +0x65,0x0b,0xe2,0xf2,0xe3,0xf3,0x13,0x8e,0xb6,0xf1,0x81,0x47, +0x02,0x0e,0xef,0x3e,0xca,0x41,0xc8,0xc7,0xce,0x99,0xa0,0xcf, +0x82,0xc3,0xdf,0xb3,0x49,0x97,0xb0,0xc9,0xb4,0x57,0xb8,0x2b, +0x56,0x8b,0x77,0x59,0x38,0x26,0xcd,0x4f,0x0f,0xb6,0xd0,0xb8, +0xa7,0x13,0xb7,0x10,0x3a,0x30,0xa6,0x5a,0x22,0x6e,0x96,0x49, +0x91,0xcd,0x0e,0x1a,0xd9,0x40,0x04,0xec,0x20,0xf4,0xe2,0x0e, +0x29,0x3b,0x4a,0xf8,0x85,0xde,0xae,0xd6,0x72,0xfc,0x09,0x6d, +0x19,0xdd,0xd3,0xa6,0x27,0xac,0xd4,0x1c,0xdd,0xad,0xa5,0xe4, +0x55,0x03,0xbe,0x31,0xf7,0x72,0x5e,0x59,0xd1,0x01,0xfc,0xd2, +0x6b,0xf1,0xb6,0x59,0xad,0x4e,0x3c,0x75,0x58,0x6b,0xf2,0x41, +0x0b,0xaa,0x55,0x61,0x92,0x5c,0xd6,0x85,0x9f,0x58,0x51,0x03, +0x63,0xc9,0xde,0x5b,0xbb,0xfb,0xfc,0xba,0x6d,0x7d,0xf9,0x02, +0x8b,0x5c,0xfd,0x4c,0x2d,0x1a,0x92,0x3d,0x22,0xd3,0x30,0x51, +0x8c,0xea,0x13,0x6c,0xc1,0x81,0x3d,0x8e,0xe3,0x34,0xb5,0x67, +0x1a,0x14,0x5a,0xf3,0xbf,0x5f,0x6f,0xee,0xca,0xec,0x3e,0x7b, +0xe1,0xfc,0xd7,0xe7,0x8f,0xc3,0x3a,0xd4,0xe2,0x2b,0x2a,0x71, +0x25,0x6c,0x3c,0x1a,0x7b,0xe8,0xf4,0xd1,0xa3,0x2a,0x47,0x8f, +0x9e,0x3c,0x13,0x9d,0x16,0x5d,0x76,0xa6,0x5a,0x05,0xbc,0x45, +0x55,0xd4,0x97,0x7a,0x20,0xc0,0x3a,0xa6,0x36,0x25,0xbd,0x4a, +0x5d,0xd0,0xc7,0x9c,0x4f,0xd0,0xda,0xa9,0x98,0x6a,0x46,0x9f, +0xf0,0x04,0xd8,0x4d,0x6a,0x32,0x33,0x6a,0xd4,0x85,0x7a,0x43, +0xb1,0x05,0x47,0x4b,0xa4,0x20,0x18,0x0a,0xdb,0x49,0x64,0xdc, +0xd1,0xff,0xe4,0x5c,0x72,0xa0,0xda,0x45,0xa3,0xe4,0xff,0x4f, +0x39,0x97,0xff,0x39,0x0d,0x78,0x83,0x1b,0x6b,0x4b,0x95,0x84, +0x61,0x42,0x08,0x69,0x9d,0x5b,0x8f,0xe3,0xf2,0x71,0x68,0x47, +0x2e,0xbf,0xfb,0x4f,0x5b,0x18,0x27,0x7b,0xcf,0x89,0xe3,0xc5, +0xb1,0xe4,0xfa,0xaf,0x65,0xf0,0x65,0x12,0x8c,0x35,0x8a,0xe5, +0x0f,0xe2,0x68,0x3f,0x1c,0xa9,0xb7,0x80,0x0b,0x10,0xdd,0x09, +0xe4,0xdc,0x86,0xf5,0x30,0xf1,0x1d,0x98,0x58,0xe6,0xf2,0x6b, +0x71,0x2b,0x2e,0xc3,0x11,0x98,0xac,0x4b,0x6d,0xa1,0xa6,0xfc, +0x3e,0x31,0x9c,0x87,0x69,0xbf,0xd0,0x97,0xd3,0x66,0x70,0x7a, +0x59,0xdf,0x8f,0x90,0x26,0xbd,0x24,0x75,0x62,0x12,0x23,0x1e, +0x53,0x34,0x93,0xdb,0xf2,0xc1,0xdb,0xaf,0x08,0x1f,0x14,0xe1, +0xe2,0x07,0x6a,0xa2,0x84,0xa1,0x04,0x33,0x41,0x07,0x32,0x99, +0xfe,0xcf,0x35,0x96,0x95,0xa8,0xc3,0xe2,0xef,0x32,0x49,0x8c, +0x32,0x25,0x49,0x78,0x39,0x91,0x5e,0xd2,0xc7,0x4a,0x1a,0x1d, +0x5c,0x1d,0x90,0xc1,0x31,0xb8,0x1a,0xc6,0x48,0x6f,0x63,0x64, +0x30,0xe6,0xb3,0xf0,0xad,0xfe,0xfc,0x36,0xb9,0x1d,0x27,0x33, +0x8a,0x41,0x1f,0xc9,0xde,0x2d,0x4e,0x9b,0xe6,0x49,0x1c,0xcc, +0xef,0xee,0x74,0x7c,0x97,0x48,0xd1,0x13,0x13,0xb7,0xaa,0x65, +0xc7,0x0f,0x9b,0x24,0xa2,0xe6,0x5b,0x76,0x77,0xf6,0xde,0xe6, +0x0e,0x8b,0xbe,0x04,0x54,0xda,0x51,0x05,0x86,0xbf,0x69,0xc3, +0xa3,0x16,0xdf,0xe1,0x70,0x9c,0x27,0x83,0x79,0xd8,0xc7,0x58, +0x1e,0x95,0x45,0x58,0x45,0xc6,0x1a,0xf3,0x30,0x32,0x19,0x54, +0xf2,0xbe,0xcf,0x3d,0xd5,0xce,0xef,0x3c,0xec,0x74,0xd4,0x9e, +0x8a,0x67,0x04,0x4e,0xa2,0x62,0x39,0x74,0x40,0x2c,0x0f,0x48, +0x62,0xe9,0x2d,0x89,0xe5,0x12,0xd8,0x0a,0x4b,0x98,0x0e,0x1a, +0x20,0xd0,0xc1,0x72,0xdc,0xca,0x8a,0x39,0x38,0x87,0x24,0xb5, +0xc7,0x75,0xc7,0xb4,0xdb,0xc7,0xf1,0xe1,0x46,0x47,0x64,0x07, +0x6d,0x38,0x0c,0x83,0x59,0x24,0x5b,0x96,0xb5,0x3e,0xce,0xa4, +0x31,0x99,0x3f,0xdc,0xbd,0xe7,0x45,0x50,0x3b,0x27,0x4c,0x5a, +0x49,0x60,0x09,0x45,0xb3,0x4b,0x18,0xf0,0x04,0x5d,0x42,0x3f, +0xae,0x8b,0xcb,0xe9,0x5c,0xdb,0x85,0x93,0xd4,0x7d,0xb6,0x89, +0x6a,0x52,0x9f,0xcd,0x89,0x71,0xa0,0x96,0xfd,0xa1,0x98,0x7a, +0xfe,0x99,0xde,0x38,0x6f,0x0f,0xce,0x3e,0xcc,0x89,0x27,0xf4, +0x64,0xc2,0xa5,0x76,0x89,0x1d,0xb9,0x43,0x48,0x27,0xf1,0x2b, +0x3b,0xb5,0x5f,0x6f,0xa1,0xf3,0x5b,0x75,0xcb,0xf2,0x4e,0xf0, +0x6d,0x6e,0x3b,0x13,0xbc,0xc5,0x76,0xe3,0x0c,0x8d,0x02,0x19, +0xff,0xdb,0xdd,0x9e,0x6f,0x13,0x5f,0x71,0xa0,0xa9,0x30,0x21, +0x8e,0x87,0x6d,0x0e,0x5b,0x1d,0xe1,0xa0,0x09,0x66,0xb4,0xe3, +0x0c,0x18,0xf1,0x6b,0x3b,0x9e,0x95,0xbd,0xa5,0x8b,0xb7,0x42, +0x06,0x2b,0xb0,0x87,0x35,0x3b,0x62,0x16,0x61,0x1e,0x79,0x91, +0xce,0x9d,0x24,0xc3,0xb4,0xbc,0x9f,0xf2,0x38,0x78,0x2e,0xf8, +0x12,0xa4,0x46,0x1a,0x22,0x58,0xb4,0x13,0xbf,0x90,0x68,0xa9, +0xbb,0x2f,0xb6,0xdb,0xc5,0xf1,0x47,0x8d,0x0f,0xcb,0x0e,0xd0, +0x69,0x1d,0x83,0x99,0x74,0x5a,0xd9,0x1b,0xe2,0x4c,0x9b,0x07, +0x68,0xa9,0x5f,0x04,0x51,0xeb,0x71,0x53,0x1c,0x47,0xee,0xf4, +0xdf,0x79,0x75,0xf9,0xa6,0x5d,0x01,0xef,0xaa,0xbd,0x63,0x95, +0xb6,0x8c,0x83,0x4f,0xa0,0x41,0x3a,0x8c,0xaf,0x2e,0xa9,0xd0, +0xa9,0x2b,0xe3,0xdd,0xae,0xee,0x78,0x63,0xd1,0x39,0xd0,0xb8, +0x52,0x41,0x1e,0x41,0xda,0xa6,0xde,0x47,0x90,0xde,0x8e,0xe9, +0x2f,0x8c,0xd6,0x60,0xda,0x0b,0xe3,0x35,0x78,0x5e,0x06,0xe7, +0x37,0xb1,0x30,0x7f,0x06,0xe9,0x44,0xc1,0x8c,0x95,0xb7,0x4f, +0xec,0x14,0x07,0x9b,0xb1,0xba,0x34,0x1c,0x17,0xd7,0x98,0x81, +0x09,0xfe,0x3e,0x9b,0xa1,0xae,0xfb,0x7b,0xa6,0x2a,0x49,0xa2, +0x13,0x7b,0x0f,0x5b,0x59,0xc1,0xbb,0x93,0x88,0x5a,0x66,0xd4, +0x22,0xfc,0x8e,0x83,0xa4,0x5f,0xbe,0xfb,0xef,0x2f,0x65,0x2c, +0xaa,0xaf,0x23,0x15,0x9b,0xf3,0x57,0xe5,0x2e,0xee,0x4c,0xe3, +0x77,0xbf,0xf1,0xfa,0xce,0xfd,0x21,0xa7,0xf0,0x39,0x45,0x0e, +0xac,0xdb,0xb5,0xce,0x7a,0x43,0x93,0x1f,0xdf,0xfc,0xb8,0xf0, +0x97,0xa4,0xef,0x38,0xd8,0x18,0x41,0xb2,0xcd,0x52,0x0d,0x53, +0xb5,0x5b,0x52,0xf8,0xb0,0x1b,0x21,0xbd,0x01,0x3d,0x1c,0xac, +0x9b,0xb8,0x7f,0x95,0xd7,0x32,0x93,0xd5,0x2d,0x7e,0x7c,0xc7, +0x8b,0xca,0x4f,0xc9,0x3f,0x52,0x74,0xb6,0x1c,0xac,0x49,0x07, +0xba,0xc2,0x7c,0x23,0x9c,0x8f,0x96,0xe6,0x60,0x49,0x97,0x6e, +0x17,0xfb,0xd5,0xa3,0x3d,0x3f,0x87,0x5c,0xb7,0x3d,0xc8,0xc7, +0x7a,0xc6,0xd9,0xc5,0xda,0xfb,0x85,0xfb,0x86,0xfb,0x44,0x70, +0xe0,0x0e,0xea,0x82,0x94,0xed,0xb6,0xc4,0x14,0x97,0xa0,0x9a, +0x48,0x40,0x0d,0xf7,0xb0,0xa6,0x87,0x8d,0x8f,0x18,0x85,0xc7, +0xd3,0xc7,0xad,0x9c,0x06,0x83,0xb3,0x3f,0x14,0x9d,0x0b,0x3e, +0xbf,0xf7,0x6c,0xc8,0xe5,0x38,0xde,0x41,0x48,0xeb,0xc0,0x43, +0xa0,0xcb,0x62,0x0a,0x1c,0xa6,0x82,0x10,0x05,0x8b,0x62,0x60, +0x64,0x4a,0x42,0x40,0x42,0x40,0x5c,0x60,0x73,0x2e,0xef,0xfa, +0xd2,0xe8,0xbd,0xd3,0x35,0xdb,0x00,0x3e,0xd3,0x3b,0xc7,0xf9, +0x92,0xc3,0xb6,0x88,0x15,0x11,0x2b,0x8f,0x17,0x5f,0xab,0x7c, +0x97,0xfb,0x94,0x83,0xb3,0x03,0xf5,0xf6,0xdb,0x98,0xdd,0x9b, +0x9d,0xe7,0xba,0x6a,0x71,0xa7,0xf7,0xee,0x3d,0xbd,0x6f,0x32, +0xde,0x86,0x29,0xe4,0x39,0xe6,0xae,0x65,0x60,0x2f,0xe4,0x12, +0xcc,0x5d,0x09,0xb9,0xac,0xf2,0x5b,0x30,0xfb,0x3f,0x58,0x7b, +0xcf,0xa8,0x2c,0xb2,0xa6,0x6d,0x54,0x47,0xe9,0x6e,0xc3,0x30, +0x41,0x37,0x36,0xa8,0x20,0xe6,0x9c,0x73,0x42,0x01,0xc1,0x40, +0xce,0x39,0x67,0x09,0x82,0x09,0xc5,0x80,0x01,0x50,0x04,0x49, +0x92,0x73,0xce,0x39,0x83,0xe4,0x8c,0x39,0x3b,0x8e,0xe1,0x99, +0x71,0x9c,0xa0,0xa3,0x13,0x1c,0xa7,0xfa,0xb6,0x9a,0xf9,0xce, +0x6e,0x7c,0xde,0xe7,0x7d,0xcf,0xf9,0xbe,0x3f,0xe7,0xac,0xb3, +0x5c,0xeb,0xee,0xb6,0x81,0xbe,0x77,0x57,0xd7,0xae,0xba,0xae, +0xee,0xda,0x57,0x11,0xb8,0x29,0x6c,0xda,0xc4,0x64,0x94,0x67, +0xd4,0x25,0x56,0x72,0x8d,0xb8,0x91,0x8d,0xcb,0x89,0xcd,0x8d, +0xce,0x35,0x8d,0xe5,0x0f,0x2d,0xb0,0x59,0xa2,0xb5,0xad,0xca, +0x95,0x4f,0xcf,0x92,0x93,0xfd,0x55,0x47,0xae,0xe2,0x42,0xb6, +0xb5,0xb9,0xa1,0xa3,0x7a,0xc0,0xa1,0x80,0xb7,0xdd,0x69,0xae, +0xaf,0x6f,0xc1,0x69,0x3c,0x01,0xd5,0x56,0x54,0xbd,0x6d,0xa6, +0x85,0x33,0xac,0x61,0xc6,0x56,0x4a,0x3c,0xe0,0x10,0xa3,0x69, +0xbd,0xd9,0x65,0x85,0x57,0x8e,0x1d,0x5f,0x95,0x5c,0x99,0x52, +0x9e,0xca,0xed,0x65,0x2d,0x33,0x8f,0x75,0x2a,0x43,0x2c,0x53, +0x97,0x96,0x52,0xa3,0xd2,0xc5,0x5a,0x26,0xca,0x69,0x60,0x1c, +0x7b,0x28,0x2c,0x3a,0x4d,0x6a,0xa6,0x30,0x26,0x19,0x26,0xe5, +0x3e,0x2d,0x3d,0xd8,0xc0,0xab,0xf9,0xce,0x3e,0x38,0xf7,0x14, +0x97,0xc2,0xb6,0x17,0xb6,0x16,0x37,0x54,0x70,0xe2,0x6e,0xf8, +0x9c,0x04,0xfb,0x06,0x3a,0x1f,0xf1,0xe0,0x50,0x81,0xc9,0x2a, +0x4d,0xaf,0x48,0xad,0xe2,0x6c,0xb0,0x9a,0x00,0xff,0x14,0x79, +0xa9,0x47,0x01,0xff,0x9c,0x6e,0xd1,0x03,0x0d,0x09,0xa8,0x3e, +0x45,0x55,0xe9,0x90,0xea,0x73,0xba,0x05,0x3d,0x4a,0xa6,0xbb, +0xe1,0xa6,0x49,0xb7,0x30,0x5e,0xdc,0x2c,0x8e,0x67,0x85,0x71, +0x70,0x96,0xe0,0xcd,0xa7,0x70,0x93,0x11,0xcf,0x6d,0x20,0xe9, +0xce,0xe9,0xb6,0xc9,0x56,0x8d,0x69,0x7c,0xd0,0xd5,0x63,0x4d, +0x47,0x29,0xec,0xba,0x83,0x17,0x49,0xe5,0x70,0xc1,0x8b,0x84, +0x6f,0x6c,0x12,0xf8,0x53,0xbb,0x02,0x76,0xba,0xeb,0x4b,0x9d, +0x8a,0x0c,0x49,0x9a,0x59,0x92,0x71,0xfc,0x9e,0xab,0x49,0x7c, +0xf0,0x70,0x50,0xdf,0xf1,0x0e,0x0e,0x15,0x83,0xc8,0x15,0x9d, +0x68,0x8d,0x08,0xed,0x8e,0x38,0xfe,0xc2,0x9d,0x90,0x5b,0xc1, +0xd7,0x39,0x18,0x70,0xa7,0xa6,0x5c,0x8b,0x37,0x19,0x79,0xb0, +0x90,0x1a,0x54,0x3f,0x11,0xfe,0x82,0x27,0xac,0x58,0x6b,0x48, +0x04,0x7f,0x74,0x17,0xfd,0x19,0xd4,0xc7,0x95,0x44,0xb4,0x1c, +0xba,0x0d,0xa1,0x5a,0x83,0x82,0x25,0xfb,0x41,0x41,0xb4,0x1c, +0xbc,0x0d,0xf1,0x5a,0x43,0xf4,0x3f,0x23,0xc5,0xf4,0x4e,0x84, +0x62,0x0e,0x86,0x32,0x82,0x17,0xe4,0x10,0x88,0xa7,0xfb,0xf1, +0xf4,0x5c,0x19,0x42,0xd4,0x7f,0x35,0x88,0x38,0xc3,0x87,0xbe, +0x7a,0xde,0xb9,0xf1,0x3f,0x54,0x71,0xbc,0x44,0x15,0xdd,0xff, +0x07,0x55,0xfc,0x23,0xfa,0xd5,0x27,0xaa,0xd8,0xf2,0xef,0xee, +0x10,0x77,0x51,0xbd,0xaa,0x5a,0x8e,0x86,0xa9,0x2d,0xe4,0x5c, +0xd2,0xb9,0x88,0xd3,0x67,0x4e,0x05,0xf3,0xa1,0x3f,0x02,0xdb, +0x85,0x2c,0x18,0x18,0xd3,0xb3,0x8c,0x31,0x7d,0x27,0x9d,0xc4, +0x05,0xe7,0xad,0xc3,0xaf,0x6b,0x6d,0xf9,0x5b,0x7f,0xe6,0xbf, +0x8f,0x96,0x5a,0x4c,0x64,0xf4,0x08,0x8d,0xff,0xe6,0x9b,0x2f, +0x71,0x7e,0x65,0xad,0x1c,0x44,0x50,0xd2,0xaa,0xbf,0x78,0xfd, +0xa6,0xf9,0x7a,0x55,0x26,0xfc,0x87,0x6b,0x3f,0xff,0x3a,0xf4, +0x96,0xf3,0xc2,0x83,0x44,0x67,0xf1,0x92,0xf9,0xaa,0x7b,0x6a, +0x8c,0x78,0x60,0x1f,0xbf,0x03,0xb9,0x6b,0x6f,0x39,0x77,0xbc, +0x40,0xd4,0x68,0x54,0x61,0xf1,0x2b,0x9c,0xbd,0xb3,0x8e,0xf2, +0xec,0xd9,0xdf,0x50,0x3e,0xa5,0xf8,0x14,0xa6,0x71,0x52,0x65, +0x33,0x43,0x02,0xfa,0xfd,0x7b,0xfc,0xba,0xb2,0x7f,0x49,0xfc, +0x3b,0x0a,0x14,0xb8,0x21,0xa9,0xf7,0xe7,0x06,0x7d,0xdc,0x80, +0x5f,0x19,0x81,0x2e,0x73,0x71,0xf1,0xf9,0x0d,0xa7,0xd4,0xf6, +0xf7,0x78,0x75,0xb9,0x75,0x39,0x3b,0xf3,0xcd,0xbb,0xeb,0xb4, +0xab,0x76,0xf9,0xcd,0xb6,0x5d,0xb5,0x6b,0x75,0xad,0x0d,0x3f, +0xfc,0xb4,0xe9,0x79,0xe9,0x9b,0x6c,0x87,0x4c,0xfb,0x0c,0x3b, +0x4e,0x36,0x76,0x1b,0x59,0x0b,0x13,0xfc,0xc1,0x2f,0x0c,0xbc, +0x38,0xd8,0xdd,0x8b,0xbb,0xe1,0x84,0x11,0x9e,0x10,0xa7,0x19, +0x09,0xd3,0x98,0x28,0x74,0xcd,0xc3,0x88,0xdf,0x70,0x4a,0xa5, +0x4d,0x77,0x42,0x74,0x7f,0x2a,0xb8,0xf1,0x66,0xd9,0x72,0x85, +0x82,0x31,0x39,0xdc,0xe3,0xdb,0xe7,0xd3,0xea,0x70,0x90,0x2f, +0xb4,0x2e,0xd2,0xcf,0x34,0xe1,0xc4,0x58,0x98,0x49,0x21,0x6e, +0x63,0x2f,0xbb,0x51,0xa4,0xf3,0x8d,0x62,0xdb,0xf1,0xb0,0xdd, +0x48,0x74,0x65,0x56,0x9d,0x90,0x13,0x94,0x8c,0xc5,0x39,0xac, +0x5b,0xa8,0x6b,0xa8,0x4b,0xd8,0x15,0x3a,0x57,0xb7,0x66,0xc1, +0xd6,0x62,0x50,0x90,0x1e,0x73,0x58,0x07,0x8f,0xaa,0xf5,0xcb, +0xc3,0x37,0x94,0x7a,0x1a,0x35,0x69,0x36,0x69,0x95,0xed,0xb7, +0xe0,0xef,0xba,0x5f,0x77,0x1a,0xb0,0xe3,0x04,0x77,0xa4,0xc1, +0x5d,0xa7,0x5b,0xbc,0x44,0xe9,0x05,0x6c,0x8c,0x07,0xed,0x5c, +0xfa,0x57,0xbe,0x1d,0x3c,0x2a,0x50,0x5f,0x3d,0x88,0x06,0x67, +0x39,0x31,0x66,0x9b,0xb1,0x6c,0x4e,0x0f,0x9a,0xb3,0xe2,0x21, +0x70,0x27,0x86,0xcd,0xdb,0xaf,0x6a,0x54,0xd0,0x33,0xdc,0x77, +0xbb,0x65,0x7f,0xcd,0x9a,0x13,0x2c,0xbf,0x23,0x78,0x09,0x13, +0xe0,0x12,0x8b,0xfb,0xd1,0x9a,0x38,0xe1,0x67,0xc6,0xc8,0x6d, +0x5b,0xdc,0xe6,0xc0,0x3f,0x79,0x7f,0x6d,0x54,0xde,0x3e,0x02, +0x45,0xf2,0x73,0xef,0xeb,0xef,0xbb,0x6e,0xdb,0x55,0xf1,0x26, +0x5a,0xab,0xb7,0xac,0xb2,0xe0,0x04,0x13,0x58,0x41,0xee,0x1b, +0x7f,0xbf,0xb1,0x6b,0x77,0x43,0x23,0x6f,0x72,0x6d,0xd5,0x77, +0xbb,0xa4,0xe2,0xa7,0x13,0xc2,0x21,0xa9,0xd3,0x77,0xc1,0x0a, +0x26,0xd9,0x52,0xee,0x31,0x53,0x9b,0x9a,0x5a,0xab,0x02,0x59, +0x30,0xaf,0x83,0x92,0xdd,0x29,0xf0,0x39,0x85,0x1c,0xf0,0x85, +0x29,0x76,0xef,0x80,0x30,0x53,0x0c,0xdb,0xcd,0x16,0xc0,0x4e, +0xe2,0xd8,0x68,0xde,0x62,0x51,0xe9,0xe5,0xc4,0x77,0x3a,0x37, +0x38,0x36,0xdb,0x70,0xc2,0x9a,0x20,0x22,0xe6,0x40,0x83,0x90, +0x83,0x73,0xd8,0xa4,0xaa,0xf8,0xaa,0x98,0x72,0x0e,0x94,0x3b, +0xf1,0x95,0x19,0xcc,0x67,0xce,0x79,0x9d,0x75,0x3b,0xe9,0xca, +0x89,0x97,0x28,0xb1,0x72,0x69,0x32,0xe8,0x36,0xaf,0x75,0x77, +0xe2,0xdb,0x9c,0xba,0x2c,0x1a,0xe8,0x95,0x5c,0x7a,0x44,0xde, +0x83,0xce,0x1c,0xd6,0x7a,0xfc,0x2c,0xd4,0xf9,0x9b,0x45,0xdd, +0x83,0x24,0xcf,0x36,0x5f,0x3b,0xc5,0xb4,0x35,0x8f,0x0f,0x6a, +0x3f,0x70,0xcb,0xbf,0x89,0xc3,0x22,0x3c,0x47,0x1a,0xef,0xe4, +0xdf,0xc8,0xfc,0xde,0x32,0x99,0x3f,0xb2,0xe9,0xb0,0xbe,0xbd, +0x0e,0xa7,0x77,0x9b,0x04,0xa0,0x9c,0x27,0x4e,0x32,0x9a,0xdf, +0xe2,0xc1,0x0f,0xc1,0xb8,0x5a,0x98,0x99,0xf9,0x27,0x27,0xec, +0xbf,0x4c,0x4d,0x4b,0x93,0xb6,0x0e,0xa5,0x10,0xd7,0x88,0x36, +0x4e,0xc1,0x09,0x5b,0x71,0xad,0xa9,0x04,0xe0,0x37,0x0d,0x00, +0xff,0xf3,0x5d,0xe0,0x39,0x1a,0x91,0xe7,0x91,0x1a,0xb7,0x36, +0xb3,0x4a,0xf3,0xda,0x2a,0xde,0xa3,0xcd,0xba,0xd5,0xa9,0x96, +0xc3,0x70,0xd4,0x22,0xdd,0x75,0x0d,0xed,0x95,0xdd,0xd6,0x45, +0xbc,0xb7,0xb9,0xbd,0x8d,0x85,0x3b,0x35,0xce,0x69,0xd9,0x5c, +0x02,0xdb,0x19,0x37,0xcd,0xe5,0x36,0xe8,0xe3,0x96,0x46,0x4f, +0x73,0xa6,0x9e,0xba,0x41,0x13,0x7c,0xc6,0x41,0x22,0x13,0xee, +0x19,0x7e,0x38,0xec,0x08,0xe7,0x7d,0x3e,0xe8,0x82,0xed,0x74, +0x24,0x52,0x3b,0x3a,0x50,0x62,0xee,0xe5,0xe6,0x36,0x5f,0x51, +0x89,0xce,0x8b,0xcc,0x8f,0x1c,0x6c,0x3c,0x74,0xf5,0x68,0xe7, +0xf1,0xbc,0x36,0x1e,0xa7,0xd5,0xcd,0x1e,0xd2,0xbe,0x69,0x71, +0x80,0xaf,0x70,0x6f,0xf4,0xe8,0xd8,0xcf,0x89,0x5e,0xcc,0xd5, +0x92,0xfa,0x8a,0xf2,0x2a,0xab,0x42,0x7e,0xb7,0xc6,0x5c,0x3d, +0xe4,0x5d,0xf3,0x2d,0xf9,0xe1,0x8c,0xde,0xdc,0xb6,0x22,0x4e, +0xf8,0x6d,0x44,0x8e,0x08,0x33,0x47,0x36,0x8a,0x33,0x59,0xe1, +0x23,0x94,0x12,0xb1,0xed,0x9a,0xd0,0xc6,0x88,0x6d,0x38,0x9e, +0x08,0x6d,0x7b,0xc5,0x36,0xc6,0x7a,0xbc,0xd0,0xa6,0x4d,0xb7, +0xb8,0x88,0x3a,0x00,0xcc,0xc8,0x19,0xad,0xd6,0x76,0x6b,0xe4, +0xb7,0x79,0xcc,0xf7,0x41,0x85,0x23,0x9c,0xd0,0x5c,0x35,0x5a, +0xad,0xed,0xf5,0xbb,0x47,0x49,0x07,0xbf,0xb0,0x14,0x27,0x97, +0xaa,0x4a,0x5d,0x27,0x3f,0xca,0x1c,0xc8,0xac,0x01,0x58,0x25, +0x2e,0xb9,0xaf,0xab,0x2e,0x4e,0xc7,0x55,0x03,0x7f,0xb3,0xd7, +0x47,0x56,0x12,0xd9,0x04,0x61,0x82,0xa8,0xc6,0xbc,0xce,0xfe, +0xb1,0xfc,0x6d,0x8f,0x67,0x0d,0xef,0x7a,0xc8,0xf6,0x88,0xc5, +0x51,0xee,0x37,0xa8,0x6a,0x11,0x7f,0xb0,0x81,0x8b,0xd2,0xd2, +0xf0,0x89,0xce,0x52,0x99,0x9f,0x52,0x60,0x9a,0x15,0x5f,0x19, +0xdd,0x10,0x5b,0x7b,0x85,0x83,0x69,0x70,0x94,0xe8,0x7a,0x2d, +0xf7,0x5a,0x7a,0x24,0xdf,0x9a,0x7f,0x93,0xfb,0x4b,0xc5,0xcd, +0x6a,0x0e,0x9e,0x84,0x90,0xfb,0xbe,0x2f,0xdc,0x1f,0x38,0x14, +0xd4,0xf3,0x6a,0x4d,0x9b,0x2b,0x77,0x16,0x72,0xa2,0x0d,0x96, +0x92,0x21,0x21,0x4a,0x97,0xb5,0x1f,0xbf,0x4f,0x8c,0xba,0xc6, +0xe2,0x98,0xf1,0x42,0xd4,0x6e,0x31,0x8a,0x41,0x5d,0xd4,0xa4, +0x98,0x2b,0x0d,0xc6,0x96,0x7e,0x53,0xe6,0xdb,0xc8,0x6f,0xf5, +0x59,0x78,0x00,0xf9,0x63,0x9c,0xd0,0x52,0x40,0xde,0x07,0xc2, +0x04,0xdf,0xdf,0x7d,0x72,0xda,0xf9,0x85,0x85,0x38,0xa9,0x40, +0x35,0x93,0xde,0x91,0x45,0xe0,0x43,0xd2,0x4c,0xe4,0x5e,0x30, +0x0d,0xa9,0x52,0x17,0x84,0x38,0xd8,0xde,0x85,0x4b,0xe8,0x38, +0xf8,0x2e,0xe4,0x61,0xa2,0x31,0xf6,0xac,0x84,0x2b,0x26,0x78, +0x65,0x8b,0x29,0x38,0x63,0x12,0x0b,0xa9,0xc2,0x76,0x49,0x79, +0x46,0x45,0xc8,0x40,0x5b,0x36,0xb5,0x22,0x61,0x54,0x79,0xc6, +0xba,0x5b,0x74,0x36,0x01,0xa7,0x51,0xe5,0x99,0x20,0x37,0x6e, +0xfb,0xa8,0x34,0x71,0x39,0xc5,0x4c,0x61,0x3b,0x49,0x89,0x45, +0x85,0x66,0xb6,0x5e,0x4b,0x1e,0x7f,0x78,0xc8,0xf5,0x81,0x4f, +0x0b,0x45,0xf8,0x17,0xc9,0x5c,0x2c,0xff,0x93,0xe2,0xff,0x73, +0xe4,0x98,0xae,0xeb,0x26,0x1b,0xc3,0x26,0x0f,0xbe,0xed,0x56, +0xc3,0xab,0xd4,0x01,0x4e,0xf8,0x02,0xa7,0x10,0x28,0xc7,0x71, +0x58,0xce,0xe0,0xb6,0x1b,0x64,0x0f,0xca,0xa1,0xfc,0x6c,0xdc, +0x6c,0x2d,0x95,0x15,0x6c,0x6d,0x81,0x19,0x30,0xf9,0x2e,0x4c, +0xe0,0xc2,0xb0,0x92,0x3c,0xa9,0x1e,0x6c,0xe9,0xe8,0xb2,0xab, +0xe4,0xed,0x2c,0x75,0xed,0xd5,0x69,0x50,0x7a,0xfe,0x92,0xf4, +0x78,0x3e,0xfc,0xa4,0x69,0x63,0xde,0xac,0xde,0x6a,0x54,0x4e, +0x6f,0x4f,0x2e,0xd8,0x91,0xfb,0x40,0xca,0x40,0x39,0x1e,0x16, +0x72,0x7d,0x03,0x58,0xc9,0xa4,0xb4,0x25,0x76,0x5c,0xe9,0x32, +0x8a,0xe3,0x0f,0xa3,0x82,0x37,0x4e,0xd9,0xb4,0xb0,0xc4,0x9c, +0xcf,0x2b,0xc9,0x2e,0xcf,0xac,0x4a,0xc6,0x09,0x25,0x38,0xae, +0x6b,0xb6,0xe5,0xb6,0xdd,0xea,0x2b,0x76,0x95,0x19,0xf2,0x2f, +0xef,0xdc,0x7e,0xd0,0xf1,0xb8,0x59,0x6d,0x60,0xe7,0x63,0xcd, +0x8a,0x3e,0x7e,0xeb,0x7d,0x83,0xfb,0x76,0x0f,0x39,0x8c,0x30, +0x22,0xba,0x4c,0x4c,0x4f,0x74,0xff,0xe5,0x5b,0x5c,0x4f,0x87, +0x29,0x73,0xf9,0x7a,0xc4,0xbd,0xe7,0x4a,0xe2,0x78,0x26,0xa7, +0x28,0xa3,0x24,0xad,0x94,0x03,0xe8,0xc6,0x67,0x4c,0x42,0x5e, +0x5c,0x7e,0x5c,0xbe,0x51,0x02,0x7f,0x70,0x93,0xc3,0xc6,0xbd, +0xda,0x35,0x36,0x7c,0x62,0x52,0x42,0x52,0x42,0xf2,0x45,0xcd, +0xb0,0x5d,0xe7,0x76,0x72,0x7b,0xcd,0xfb,0x99,0xb3,0xea,0xa7, +0xb6,0x1f,0x5f,0xc7,0xc1,0xef,0x4c,0xf8,0xd9,0x8b,0x67,0xc3, +0xcf,0x72,0xc6,0x67,0x4f,0x9c,0xb4,0x9e,0xbe,0x90,0x49,0x35, +0x96,0xfb,0x89,0x79,0x58,0x5c,0xfc,0x38,0x51,0x25,0xb6,0x59, +0xee,0x16,0x03,0x7d,0x42,0x36,0x39,0x8b,0x5f,0x07,0xe0,0x04, +0x13,0xfc,0xcc,0xe2,0xef,0x83,0xc0,0x9c,0xa6,0x33,0x4f,0x54, +0xd0,0x26,0xe1,0xa6,0x17,0x8c,0xc3,0x0c,0xb8,0x59,0x4c,0x74, +0x77,0x54,0xf7,0xe5,0x7e,0x0e,0x16,0x52,0x9a,0x1e,0xd5,0x1b, +0xd9,0x1d,0xd9,0xcb,0xfd,0xcd,0xe8,0x86,0x1b,0x5f,0xb4,0x50, +0xc6,0xed,0xe6,0x24,0xd4,0x30,0x44,0xef,0xec,0x3e,0x0e,0x39, +0x26,0xf1,0xda,0x95,0x81,0x58,0xfa,0x8b,0x73,0x71,0x1f,0x89, +0xbb,0x11,0x33,0x10,0xd5,0x2b,0xbd,0xd7,0xba,0xb0,0x3b,0x54, +0xff,0xbc,0x31,0xa5,0xce,0x7e,0xc2,0x0c,0xb2,0x0c,0xdc,0x5e, +0xf6,0xa3,0x1c,0x93,0x7d,0x35,0x6f,0x38,0xb9,0xcb,0x38,0x9d, +0x3f,0x69,0x74,0x50,0xcb,0xcf,0x90,0xc3,0x60,0x83,0x7f,0x51, +0xae,0x77,0x7a,0xb1,0xc1,0x1b,0xf6,0x3c,0xea,0x78,0x2d,0xd7, +0x5f,0xd1,0x62,0xcd,0x5f,0x7f,0x57,0x07,0x4c,0x2c,0x38,0x70, +0x30,0x51,0x5c,0x39,0x20,0xac,0xfc,0x85,0xc1,0x38,0x61,0x3c, +0x39,0xd6,0x72,0xf0,0xaa,0x7f,0xb3,0xa5,0x2f,0x9f,0x6f,0x9f, +0x63,0x9d,0x6e,0xc3,0xc9,0x0e,0x8d,0x6c,0x24,0x5e,0xdf,0x85, +0xc2,0xea,0x8b,0xf0,0x9e,0xc3,0x28,0xe6,0x72,0xdb,0xe5,0xb6, +0xc8,0x76,0x0e,0xbe,0xef,0x13,0xfd,0x0c,0x9f,0x31,0xa7,0x30, +0xeb,0x30,0x46,0xf8,0xe2,0x31,0xff,0x50,0xff,0xd0,0x83,0x61, +0x49,0x06,0xbc,0x54,0xed,0xb2,0xbc,0xfa,0x65,0xe9,0x99,0x4e, +0xde,0x20,0x70,0xe3,0x91,0xf5,0x81,0x59,0xb0,0x31,0x15,0xd4, +0x93,0x40,0x97,0x03,0x0b,0x26,0x02,0x6b,0xe2,0x50,0xad,0x6e, +0x41,0x9e,0xde,0x60,0x4c,0xec,0x50,0x0e,0x98,0xf0,0x36,0x99, +0x72,0x23,0xae,0x60,0x46,0xa2,0xa4,0x35,0x24,0x13,0xd0,0x8d, +0x15,0x2c,0xd0,0x83,0x04,0x3d,0x72,0x86,0xf1,0xbe,0x37,0x2c, +0x8e,0xf2,0x45,0x7b,0x2b,0xf1,0xb3,0xac,0x4d,0xf4,0x22,0x9f, +0x08,0xd1,0xe4,0x74,0xdc,0x99,0x4b,0xc1,0x27,0x4f,0x04,0xf2, +0x21,0x20,0xcf,0x64,0x54,0xa6,0x54,0xc7,0x57,0x73,0x02,0x37, +0xfc,0xcf,0x64,0x1d,0xc1,0x94,0x31,0xc4,0xbd,0xb8,0x0e,0xb7, +0xe0,0x79,0xfc,0xbc,0xc2,0x98,0x87,0x35,0x34,0xa7,0x7e,0xf8, +0x01,0x26,0x71,0xe2,0xf0,0x2d,0x21,0x99,0x4d,0x8a,0x8d,0x8c, +0x0b,0x51,0x16,0xe4,0x30,0xb5,0xbe,0x47,0x4e,0x1e,0x9a,0x64, +0xff,0x22,0xc6,0x68,0xb5,0x15,0x79,0x1a,0x20,0xb9,0x1a,0x63, +0xbe,0xa1,0xb2,0xae,0xb9,0xa6,0x93,0x13,0x5b,0xaf,0xcb,0xe6, +0xb2,0xd5,0x77,0xcb,0x9e,0xe6,0xbe,0xe2,0x04,0x5b,0xd4,0x23, +0x60,0xb1,0x0f,0x2d,0xc4,0x2d,0xfa,0xc2,0x16,0xf1,0x2e,0x7a, +0xb2,0x19,0x3a,0x72,0x60,0xf0,0xef,0x4a,0x8a,0x6b,0x30,0x77, +0x80,0xc5,0x7f,0xc4,0x2d,0xc4,0xfa,0x47,0x83,0x9f,0x74,0x1e, +0x58,0xb9,0xf3,0xfd,0xea,0xbd,0x6b,0x5a,0x97,0x51,0x37,0xde, +0x08,0xaa,0x74,0x46,0x85,0x82,0xbf,0xe8,0xf5,0x40,0x30,0x06, +0x3f,0x0a,0xe9,0x92,0xf2,0xe3,0x8b,0x62,0x72,0x74,0xae,0xf0, +0x21,0x07,0x82,0x7d,0x4e,0xfa,0x70,0x68,0x28,0x26,0xc0,0xd1, +0xf9,0x58,0x6a,0x04,0xa5,0xb8,0x7e,0x18,0xd6,0x43,0x59,0x2f, +0x23,0xe2,0xf7,0xc4,0xe5,0x98,0xf3,0x71,0xa7,0x20,0x3a,0x3f, +0xfe,0xea,0x9d,0x0d,0x39,0xba,0x14,0xee,0x70,0x46,0xc0,0xe1, +0xdf,0xac,0xe3,0x09,0xfb,0x93,0x76,0xa7,0xd2,0x29,0x6c,0xe0, +0xaa,0x7e,0xad,0xfc,0xb9,0x89,0x13,0x0e,0x0b,0x14,0xb1,0x8e, +0xa7,0xa8,0x99,0x62,0xb8,0xa5,0xd8,0x4c,0x70,0x9c,0xb8,0x14, +0xc6,0xb1,0xf2,0x1f,0x35,0xe0,0x0d,0x19,0x14,0xd7,0xb1,0xe1, +0x57,0x2e,0xc5,0x5d,0x51,0x82,0xdd,0xc2,0x84,0x41,0x71,0x02, +0x6c,0xd8,0x43,0xa1,0x84,0xa0,0x07,0x02,0xe5,0x92,0x67,0x2f, +0x9d,0x0b,0x3f,0xab,0x2c,0xce,0xd3,0x13,0x66,0x32,0x7e,0xf8, +0xf5,0xfc,0x39,0x58,0x80,0x93,0xcb,0xf4,0x78,0x68,0x07,0xc5, +0x37,0x30,0x21,0x15,0x96,0x51,0x7a,0x98,0x8a,0xcb,0xde,0x51, +0x08,0x72,0x03,0xa7,0x95,0x0e,0xf2,0x58,0x07,0x93,0x54,0xff, +0xf2,0x85,0xaf,0x25,0x95,0x29,0xf0,0x24,0xad,0xc0,0xe4,0x4b, +0x72,0x65,0x6b,0x38,0xa9,0x4f,0xd8,0xa8,0x93,0xf6,0x18,0x44, +0xf1,0x21,0x66,0x67,0xf6,0x9d,0xde,0xcd,0xcd,0x36,0xf8,0x85, +0x39,0x3a,0xc7,0x7f,0x96,0xdf,0xe6,0x16,0xf7,0x26,0xb7,0x66, +0x67,0x97,0x6d,0x16,0x9a,0xbb,0xf6,0x56,0x59,0xf2,0x77,0x6f, +0x77,0xdd,0xaf,0x7f,0x56,0xed,0x51,0xed,0x5a,0xe3,0x50,0x75, +0x95,0xb7,0x6f,0x76,0xaa,0x73,0xaa,0xe2,0x60,0xb6,0xf0,0x33, +0x31,0x17,0xb6,0xab,0x89,0xcb,0x2c,0x84,0x65,0x5b,0x44,0x6d, +0x0b,0xe1,0x2c,0x0c,0xb3,0x23,0xb1,0x62,0x00,0xc9,0x7d,0x9e, +0xf5,0x73,0xc6,0x2f,0xdc,0x9f,0xcc,0x19,0x9c,0x7a,0x04,0x59, +0xc7,0xd9,0xfb,0x0b,0xbd,0xf3,0xbd,0x73,0x29,0x04,0x7d,0x43, +0x70,0x73,0x1f,0x36,0xf7,0xd3,0x28,0x38,0x1d,0xbb,0xfb,0xa1, +0x1b,0xe6,0xa1,0xf1,0x52,0x36,0xd9,0x42,0xee,0x5b,0xa6,0x7e, +0x74,0x29,0xbb,0x7f,0x2f,0x6c,0x66,0xc5,0x78,0x33,0x02,0xa6, +0x8b,0xd0,0x94,0x81,0xe8,0xb7,0x04,0xec,0x17,0xa1,0xbd,0xd4, +0x69,0x4e,0xf6,0x84,0xe8,0x6b,0x8b,0x33,0x70,0x6b,0x3f,0xc8, +0xc9,0x8e,0xa3,0x5c,0x3f,0x6c,0x15,0x97,0x32,0x08,0x38,0x91, +0x98,0xcb,0x96,0x77,0xb0,0x47,0x71,0x02,0x19,0x61,0x71,0x8f, +0x8c,0x65,0x74,0x41,0x81,0x6c,0x15,0x2f,0x3d,0x61,0xf7,0x8a, +0x83,0xa4,0x4d,0x26,0x6f,0x39,0x28,0x70,0x23,0x17,0x44,0x4e, +0x12,0x49,0xa7,0xd0,0xb9,0xf4,0x19,0x94,0x32,0x03,0x9b,0xc8, +0x33,0x68,0xdd,0xc4,0x22,0x58,0x92,0x75,0x58,0xfa,0x1d,0x0b, +0x3f,0x29,0x40,0xeb,0x3a,0x6c,0x65,0xe4,0x9f,0xc8,0x26,0x92, +0x21,0x90,0x97,0x39,0xa3,0xfc,0x10,0x68,0x8d,0xbc,0x60,0x7e, +0x47,0x96,0x98,0xca,0x14,0xba,0xd8,0x33,0xc8,0x91,0x11,0x39, +0x34,0x91,0xc9,0x31,0x3a,0xa0,0x42,0xd6,0x89,0x61,0xdf,0xb1, +0x7b,0xc4,0xdf,0x49,0x87,0xec,0x73,0xf3,0x41,0x61,0x0e,0xfd, +0x8e,0x39,0xd2,0x77,0x44,0x13,0x2c,0x79,0x2d,0x95,0x6b,0x2c, +0x25,0xaf,0xa1,0x75,0xe9,0xe8,0x77,0x2c,0xc2,0x92,0xb7,0xa3, +0xe5,0x1a,0xad,0x8b,0xa4,0xef,0xf8,0xb8,0x5b,0x36,0x9d,0x0c, +0x89,0x95,0x6c,0x42,0xf5,0x95,0xea,0xb8,0x1a,0x9d,0x18,0xfe, +0x9c,0xd3,0x19,0xe7,0xd3,0xce,0x1c,0x36,0xea,0x42,0x36,0x63, +0x86,0x33,0x28,0x92,0x45,0xd5,0x39,0x35,0x66,0x7c,0x4f,0x43, +0x6b,0x53,0xdd,0x55,0x4e,0x24,0xd7,0x85,0x45,0xe0,0x21,0xda, +0xdf,0x10,0xec,0xe1,0x3c,0xbe,0xc4,0x0d,0x92,0x9e,0x33,0x4c, +0x67,0xba,0xb3,0xb3,0xba,0x55,0x04,0x79,0xec,0x03,0x95,0x3d, +0xa8,0x82,0xde,0x6c,0xc3,0xb5,0xb2,0x5b,0x79,0x52,0x6b,0x4d, +0x6d,0xd9,0x59,0x22,0x4e,0xfe,0x97,0xd6,0x7a,0x71,0x02,0xda, +0x30,0x78,0xee,0x18,0x9a,0xec,0x42,0x25,0xe5,0x6e,0x33,0xb9, +0xc7,0x52,0x9b,0x29,0x6f,0x88,0x54,0x82,0xb9,0xb2,0x50,0x56, +0xcc,0xb2,0x22,0xae,0x38,0x6d,0x23,0xce,0x5d,0xb4,0xa5,0x4c, +0x93,0xaf,0xae,0xa9,0x6a,0x2c,0xa7,0x5f,0xb8,0x6d,0x40,0xc8, +0x60,0x4b,0xfb,0x0a,0x86,0xd2,0x87,0x38,0xf8,0x48,0x51,0x08, +0x2c,0xd3,0xc5,0x65,0x38,0x68,0x08,0x83,0xa2,0x1a,0xaa,0xb3, +0xe9,0x86,0x72,0xb0,0x98,0x69,0xce,0xce,0x6e,0x56,0x11,0xd6, +0xc1,0xc4,0x3e,0x16,0x4b,0xf0,0x0d,0xf1,0x7c,0x64,0xfe,0xcc, +0xa1,0xd7,0xc2,0x87,0x6f,0x34,0x6c,0x5f,0x57,0xa2,0x21,0x55, +0xbd,0xc8,0x66,0x53,0xf6,0xfb,0x8e,0x8d,0xaf,0x8d,0xab,0x8d, +0xad,0x33,0x48,0xe0,0xcf,0xdb,0x9f,0xb5,0x0f,0xb6,0xe7,0xd0, +0xd2,0x08,0xb4,0x19,0x1b,0x9c,0xb3,0x15,0x95,0x70,0xf2,0xac, +0x3a,0x2b,0xbe,0xa9,0xbe,0xa6,0xa9,0xa2,0x95,0xc3,0x7f,0xfa, +0x84,0x95,0x30,0x4f,0x3c,0xda,0x2f,0x1c,0x85,0xd5,0xf8,0x66, +0x2e,0x9b,0x68,0x2c,0xf7,0x2f,0xa6,0x39,0x53,0xd2,0xc4,0x9c, +0x89,0xbe,0x30,0xc3,0x00,0x67,0xe0,0x0c,0xb6,0x6c,0xb0,0xe0, +0x7a,0xd6,0x4d,0x0e,0x65,0x23,0xde,0xe4,0xe3,0x2c,0xbd,0x7f, +0x66,0xb1,0xe0,0x4c,0x23,0x79,0xd0,0xfd,0x80,0xa7,0x07,0xfb, +0xac,0x03,0xf9,0x6c,0xc3,0x9c,0xcd,0xc9,0xea,0x94,0xdc,0x6f, +0x20,0xf9,0xdf,0x27,0xbf,0x8f,0x7a,0x6f,0x12,0xc3,0x87,0xcd, +0x3d,0xb5,0xf4,0xc0,0x06,0x49,0x1f,0x04,0x7e,0x23,0xfd,0x18, +0xca,0x86,0x27,0x5e,0x4a,0x4a,0x52,0x82,0xd5,0xe0,0xd9,0x87, +0x9e,0xa0,0xa1,0x8b,0x1a,0x68,0x63,0x08,0x36,0xb8,0x9a,0x3d, +0x75,0xe9,0x54,0xf8,0x69,0x65,0xf4,0x36,0x00,0x77,0xe6,0x18, +0x2a,0x6b,0xd2,0xbc,0xe9,0x8b,0x13,0x8a,0x69,0xe0,0xf4,0x83, +0xaf,0xbf,0x07,0xf9,0x28,0x58,0x40,0x67,0x5d,0x2c,0xaa,0xdc, +0x45,0x02,0x5b,0x71,0x4a,0x55,0x3f,0x8f,0x6b,0x80,0xdb,0xf5, +0xe1,0x28,0xcc,0xe5,0xf0,0xc9,0x2d,0xe2,0x74,0xcc,0x3e,0xc8, +0x2e,0x48,0x12,0x32,0x98,0xda,0x87,0x53,0x61,0xaf,0x1e,0x8d, +0x7a,0x0b,0x0c,0x61,0x01,0x46,0xb0,0xa6,0xc7,0x4d,0x4f,0x5a, +0x9e,0x8e,0x37,0xe0,0x5b,0x13,0xda,0x92,0xdb,0x52,0xa5,0xa7, +0x8a,0x8a,0x52,0x93,0x14,0x18,0xc3,0xb4,0xa7,0x67,0x5e,0x55, +0x81,0x16,0xb6,0x35,0xad,0x35,0xbd,0x89,0x62,0x08,0x59,0x3e, +0x58,0x93,0x7b,0x30,0xad,0x14,0x54,0xfe,0x9d,0x65,0x2b,0xa4, +0x2c,0xdb,0x19,0xd7,0x49,0xb3,0xec,0x51,0x9c,0xea,0x85,0x0a, +0x1a,0xaa,0x94,0xf0,0xa3,0x55,0x3f,0x5c,0xea,0xd2,0x60,0xf3, +0x2b,0x5c,0x72,0x1c,0x32,0x1c,0x13,0x14,0xf7,0x3b,0x55,0x06, +0xd7,0x1e,0xaf,0x0e,0x54,0xc4,0x35,0xdf,0x1a,0x6f,0x19,0xd5, +0xb4,0x31,0x40,0x73,0xcc,0x13,0x4c,0x1f,0x32,0xb9,0xee,0xb9, +0x65,0xd9,0x55,0x19,0x75,0x8a,0x29,0xc8,0x94,0xe0,0x98,0xce, +0x79,0xd6,0xdb,0xf7,0xaa,0xaf,0xd5,0x2a,0x37,0xe4,0x5f,0xdc, +0xb9,0x7e,0xbf,0xed,0x51,0x8b,0x5a,0xbf,0xc6,0x23,0xcd,0x8a, +0x5e,0x7e,0xdb,0x7d,0x83,0x7b,0xf6,0x0f,0xb9,0x6e,0x61,0xbd, +0x94,0x21,0x0f,0xe2,0x44,0x13,0x1c,0x67,0x01,0x63,0x02,0x80, +0x1d,0x4d,0x91,0x4a,0x1b,0x09,0xaa,0xdc,0x04,0x15,0xa6,0x67, +0x37,0xb9,0x09,0x73,0x77,0xb3,0x68,0xe3,0x40,0x76,0xa2,0xca, +0x03,0x16,0xcc,0x15,0x60,0xee,0x4e,0x9c,0xcb,0x2c,0xc3,0x10, +0x72,0x39,0x33,0x22,0x2b,0x5b,0x29,0x1a,0x7e,0xed,0xc4,0xb8, +0x2e,0x53,0x53,0x3c,0x6e,0x06,0x33,0x42,0x59,0x94,0x73,0xdb, +0x82,0x63,0xd4,0x95,0xcb,0x2c,0x9e,0xf6,0x74,0x5c,0xcf,0x79, +0xae,0x08,0x41,0x8c,0xc7,0x05,0xaf,0xb3,0xde,0xca,0xbe,0xe7, +0x8e,0x85,0x78,0x4d,0x9f,0xc5,0x24,0x99,0xca,0xfd,0xc1,0xdc, +0x2e,0x2a,0xba,0x1a,0xaf,0x92,0x70,0x35,0xaa,0xf1,0xa6,0x92, +0xbc,0x30,0x96,0x06,0x82,0x9d,0xd6,0xcb,0x9d,0x70,0x96,0x47, +0x81,0x09,0x0f,0xf3,0xab,0xde,0x36,0x3f,0xe9,0xe4,0x84,0x92, +0x0d,0x64,0x76,0x1b,0x8e,0x6d,0xc0,0xb1,0xe5,0xde,0xd6,0x3c, +0xc8,0xb9,0x7d,0x70,0xfc,0xc3,0x9c,0x13,0x57,0xa1,0x02,0x01, +0x4a,0x32,0x17,0xb8,0xc1,0xd6,0x23,0x79,0x3d,0x3c,0xae,0xcc, +0x40,0x52,0xa4,0x5a,0x77,0xa3,0xa2,0xbb,0xb6,0xb1,0xc9,0xb4, +0x90,0xb7,0xb3,0xd3,0x77,0x56,0xf7,0xd4,0x2a,0x35,0xac,0xb6, +0x6e,0x30,0xf1,0xe5,0x9b,0x1c,0x3a,0x5d,0x87,0xbc,0x54,0x9d, +0x91,0xf8,0xe2,0x92,0x63,0xd9,0x94,0x0e,0x6e,0xca,0x84,0x05, +0xd5,0x30,0xb9,0x93,0xc3,0x2b,0x12,0x76,0x3d,0x1a,0x01,0x0e, +0x89,0x60,0x98,0xeb,0xdd,0xc5,0xa3,0x89,0x3f,0x3a,0x04,0x63, +0x42,0x38,0xb7,0x92,0x45,0x15,0xaf,0xd5,0xcb,0xd7,0x28,0x5f, +0xb5,0xba,0x7f,0xaf,0xee,0x51,0xfa,0xcf,0x8a,0xf0,0x1c,0x43, +0xaf,0xd3,0x94,0x72,0xb3,0x7b,0xc4,0x88,0x89,0x1c,0xbd,0x7a, +0x79,0xe1,0x7f,0xc9,0x28,0x95,0x1a,0xee,0xc2,0x42,0xa6,0xa8, +0xb4,0xb0,0x2a,0x35,0x4f,0x3f,0x9b,0x3f,0xe2,0xee,0xe3,0xe0, +0xe1,0x46,0xf1,0x3c,0xd3,0x95,0x7d,0xb4,0x34,0xa0,0xf2,0x70, +0x81,0xa2,0x49,0x40,0xbe,0x77,0x8a,0x7f,0x96,0x87,0x22,0x26, +0x98,0x42,0x23,0xa5,0x4c,0x37,0x4c,0x3e,0x2a,0x75,0xe3,0xbf, +0x18,0x3d,0xd8,0x4f,0xe8,0x7f,0xa7,0xc3,0x7e,0x3a,0xd3,0x6c, +0x48,0xb5,0x65,0x9e,0x6d,0x8e,0x4d,0x47,0x1e,0x1f,0xd0,0xed, +0xd7,0xe2,0x55,0xcf,0x09,0xd2,0x23,0xe5,0xaa,0xa6,0x8a,0xde, +0xec,0x66,0x93,0x6c,0xfe,0x90,0x8d,0x97,0xb9,0x87,0x1d,0x27, +0x06,0x88,0x8f,0x49,0x87,0xd0,0x68,0x7e,0x4d,0x50,0xa5,0xf8, +0x5c,0x95,0x15,0x04,0x88,0x25,0x62,0xe3,0x4b,0xca,0x8b,0xc5, +0x46,0x54,0x25,0x42,0xe3,0x72,0xb1,0x91,0xc6,0x23,0x22,0x7b, +0x44,0x70,0x93,0x1d,0x7a,0xf9,0xa3,0xeb,0x99,0x04,0x7a,0xdd, +0x2e,0x09,0x70,0xac,0x10,0x36,0x34,0x71,0x23,0x77,0xc2,0xc9, +0x90,0x47,0x97,0x4b,0xa7,0x43,0x79,0x2b,0x6f,0xd9,0xa0,0x57, +0xaf,0x5f,0xc6,0xc9,0x96,0xe1,0xef,0xa4,0xae,0xaf,0xf1,0x65, +0xce,0x90,0x59,0x26,0x7f,0x58,0xcf,0x75,0x9b,0x83,0x3e,0xb7, +0x31,0x82,0x9c,0xea,0x3c,0xf8,0xc8,0xbf,0xc5,0xfc,0x18,0x9f, +0x6b,0x53,0xb0,0x3d,0xc1,0x92,0x43,0xfe,0x32,0x39,0x79,0x75, +0xff,0x5d,0xbf,0x26,0xcb,0x43,0x7c,0x9e,0x53,0x99,0x46,0xaa, +0x35,0x27,0x7e,0x35,0x4c,0x6e,0xba,0x5e,0xb7,0xed,0xb7,0xaa, +0x6c,0xe5,0x4d,0x9b,0x35,0xda,0xb5,0x2b,0x39,0xe1,0x3e,0x22, +0x29,0x66,0x7f,0x2a,0xf9,0xae,0xa3,0xaf,0x87,0x6b,0x14,0x8b, +0x4c,0x05,0x75,0xd6,0xda,0x43,0xdb,0x73,0xab,0x3f,0xb7,0x0f, +0x9b,0x8d,0xa1,0x19,0xf7,0xe0,0x46,0x36,0x95,0x46,0x9c,0xb9, +0x4c,0x4b,0x7a,0x7a,0x8b,0x0a,0xa8,0x43,0x6f,0x0f,0x3b,0xf2, +0x0b,0x76,0x91,0x07,0x1f,0x7a,0x41,0xa9,0xec,0x2f,0x7a,0xd1, +0x6e,0x38,0xce,0x12,0x39,0x8d,0x45,0x34,0xe7,0xbd,0x97,0x5d, +0x23,0xbb,0x67,0x2d,0xa0,0x08,0x57,0x61,0x5d,0x8d,0x05,0x0f, +0x33,0x7f,0x78,0x07,0x13,0x1e,0xc3,0x44,0x4e,0x28,0xa7,0xd8, +0x7e,0x09,0xb0,0x38,0x0e,0x3e,0x9b,0xf3,0xbd,0xad,0x03,0xff, +0xdb,0x3a,0x90,0xc3,0x31,0xaf,0x71,0x12,0x37,0x24,0x1e,0xa4, +0x36,0x68,0xc5,0xe9,0xb7,0x71,0xdc,0xdb,0x47,0xcf,0xae,0xbd, +0x6d,0x87,0x49,0x86,0x45,0xbc,0x35,0xca,0xe9,0x2f,0xd7,0xd8, +0xbe,0xf3,0x1b,0xdd,0x9f,0x2d,0x61,0x9c,0xd1,0x7e,0xbe,0x03, +0xd9,0x9b,0x8b,0x9e,0x6c,0xc2,0xb1,0x0b,0x71,0xba,0x16,0x6e, +0xb4,0x2b,0xa4,0x7c,0x7a,0x4b,0x33,0xcc,0xb9,0x0f,0x13,0x60, +0xac,0xd4,0xc7,0x03,0xe6,0xed,0x80,0x2d,0xb6,0xff,0xbf,0xf5, +0x21,0x6a,0x75,0xe7,0x4b,0xab,0x0b,0x1b,0x72,0x9b,0xb8,0xff, +0xef,0xbd,0x81,0x84,0xf9,0x61,0x04,0xe5,0x46,0xdb,0x88,0x8a, +0x5f,0xa3,0x25,0x9b,0x41,0x4d,0xa9,0xce,0xb4,0x66,0x64,0xb5, +0xa8,0x08,0x1c,0x2c,0xee,0xc3,0xc5,0x20,0xc7,0x52,0xf0,0xb4, +0x86,0xd8,0xdf,0x34,0x1b,0x32,0xee,0xb2,0x76,0xe6,0x7b,0x4c, +0x5b,0x0c,0x9a,0xa5,0x3e,0x0a,0xc3,0xb2,0x24,0x72,0x5b,0x5b, +0x4b,0x9c,0x8a,0x27,0x58,0xac,0x3e,0x8a,0x6b,0x0d,0x71,0x92, +0x72,0xb7,0x95,0xdc,0x75,0x98,0x95,0x09,0x7b,0xa0,0x49,0x09, +0xb4,0x64,0x09,0x5d,0xac,0xd8,0x2f,0x15,0xc4,0x1c,0x60,0x73, +0x0b,0xb3,0x8a,0xd3,0x8b,0x2d,0xf3,0x79,0x5b,0xb5,0x1d,0x3b, +0x36,0x5a,0x95,0x5a,0xf0,0x95,0x39,0xe5,0xf9,0x25,0x45,0x1c, +0xae,0x63,0x85,0x04,0x78,0x4a,0xf4,0xb5,0xf0,0x95,0x39,0xbc, +0xc2,0x85,0xc8,0x4a,0x2c,0xfe,0x2f,0xa6,0x26,0x2d,0xb9,0x46, +0x05,0xe6,0xc1,0xf8,0x0e,0x1c,0xcf,0xa2,0x1e,0x6e,0x22,0x6e, +0xe5,0x36,0xd5,0x0e,0xb9,0x1e,0x1e,0x7c,0x9d,0x7f,0xbb,0x53, +0xf9,0x7e,0x4e,0xcd,0x8f,0xb2,0x95,0x66,0x71,0x5e,0x1f,0xbc, +0x87,0xa3,0xec,0x21,0xc7,0xbd,0x9e,0x38,0xc6,0x27,0xdb,0x8a, +0x7f,0x98,0x79,0xab,0xa4,0xb1,0x3a,0x3a,0x2a,0x2a,0x32,0xe6, +0x02,0x78,0xad,0xe2,0xf3,0x9b,0xd1,0xe8,0x9b,0xe0,0xa8,0x33, +0x61,0x67,0xcf,0x2a,0x9e,0x3b,0x17,0x7a,0x39,0x21,0x31,0x2e, +0x25,0x2a,0x55,0x11,0x2e,0x60,0x03,0x2a,0x8d,0x2a,0x95,0xc9, +0x4b,0xab,0x94,0xaa,0x54,0xe0,0x47,0xec,0xb8,0xc1,0x66,0x53, +0xaa,0x73,0x32,0xe6,0x7c,0xc8,0x99,0x33,0xe7,0xce,0xf1,0x21, +0x91,0x72,0xc9,0x19,0xf1,0x79,0xc5,0x4a,0x49,0xc6,0x67,0x59, +0x9d,0x3d,0xce,0x38,0xc3,0x59,0x39,0xd3,0xe2,0xa7,0xfc,0x9b, +0x65,0x95,0xe5,0x8a,0xd1,0xd1,0x51,0x97,0xa2,0x2f,0x82,0xd5, +0x5a,0xbe,0xa0,0x45,0x4e,0x5e,0xf6,0x5c,0x78,0x41,0xaa,0xf3, +0xea,0x6a,0xd3,0x8b,0xb8,0x6a,0x71,0x6d,0x2d,0xbc,0x6a,0xc6, +0x57,0x75,0x86,0x14,0x9f,0xfe,0x85,0xda,0x2c,0xb6,0x04,0xe2, +0x3a,0x3d,0xfc,0x4c,0xf9,0xaa,0x8d,0xdc,0x1d,0x98,0x92,0x05, +0x06,0xd0,0xae,0x04,0x53,0x21,0xd2,0x92,0x45,0xdf,0xf3,0x91, +0x8e,0xe0,0x1d,0x2b,0x77,0x96,0xb5,0x4c,0x3f,0xf6,0x58,0x19, +0xde,0x31,0x75,0x89,0xc9,0x45,0x2a,0x15,0xac,0x79,0x82,0x9c, +0x0d,0xfe,0xc9,0xfa,0x9d,0x8f,0xc9,0x54,0x49,0x60,0xa1,0x2d, +0xfe,0x62,0x3d,0xb6,0x9e,0x91,0x6b,0x15,0x66,0xb0,0x41,0xc7, +0x0e,0x05,0xf9,0x07,0x71,0xdf,0xe2,0x07,0x02,0x36,0x23,0xb3, +0xd0,0x86,0x85,0x26,0x98,0x4c,0xf0,0x74,0x2d,0x9c,0x66,0x7a, +0x9c,0x49,0x2d,0x5c,0x72,0x66,0xb1,0xc7,0x95,0x38,0xe2,0xe9, +0x7a,0x16,0x1a,0x15,0xe0,0x92,0x23,0x5e,0x62,0x30,0x41,0xe4, +0x09,0x8c,0x11,0xfc,0x8c,0x70,0x09,0x9b,0xe4,0x28,0x4d,0x9d, +0xea,0xe4,0xe4,0x52,0x15,0x88,0x12,0x5f,0x62,0x3f,0x2b,0x14, +0xc3,0x11,0x22,0xfa,0x55,0x0b,0x7e,0x8c,0xe8,0xb7,0x8d,0x08, +0x7e,0xae,0xa2,0x1f,0x23,0x0f,0x1f,0x84,0xdb,0xe4,0x03,0x14, +0xab,0x0e,0x7d,0x80,0xf8,0x5e,0x8c,0x7f,0xa7,0xbb,0x10,0x8b, +0xdf,0xe9,0x2d,0xc4,0x10,0x23,0x08,0x51,0x65,0x65,0x33,0xf0, +0x25,0xe9,0x13,0xd7,0xb0,0xe1,0xb1,0x97,0x62,0x62,0x95,0xa8, +0xc3,0x63,0x2f,0x22,0x7c,0x2e,0xd5,0xb4,0xbd,0x36,0x82,0xd7, +0x38,0x81,0x3d,0x7f,0x29,0x24,0xfc,0xbc,0xb2,0x38,0xdb,0x50, +0x50,0x60,0x5c,0x55,0xf1,0x6b,0x6d,0x3c,0xa1,0x91,0xa7,0xc3, +0x43,0xe3,0x9b,0x77,0x77,0x73,0x40,0x95,0x8b,0x61,0xf2,0x50, +0x15,0x26,0x68,0x42,0xdd,0xe2,0xbc,0x6b,0x3c,0x06,0xdd,0xc3, +0x99,0xb7,0x1c,0xa4,0x16,0x87,0x19,0x52,0x78,0xd4,0x68,0xc3, +0xb5,0x4c,0x4e,0x71,0x66,0x55,0x5a,0x8d,0x45,0x06,0x7f,0xcc, +0x36,0xc0,0xc1,0xcf,0x9d,0xc3,0xa7,0x96,0xb0,0x09,0x33,0x71, +0xaf,0xa5,0xf0,0xa0,0x0d,0x75,0x19,0xdc,0x4c,0x93,0xf7,0x89, +0xf2,0xa3,0x65,0x87,0x0a,0x2c,0x02,0xf9,0x5c,0xbf,0x74,0xef, +0x34,0x2f,0x4e,0x3c,0x72,0x8b,0x18,0x43,0x7e,0x0f,0x2b,0x30, +0x38,0x8d,0x60,0xe6,0x02,0xc8,0x64,0x31,0x64,0x37,0x85,0x1e, +0x3f,0x18,0xb1,0xc2,0xb8,0x70,0x52,0x60,0x97,0x6b,0x94,0x6c, +0xd6,0x96,0xc6,0x9f,0xe8,0x0a,0x18,0x38,0x40,0x01,0xf9,0x12, +0xd4,0x26,0xc5,0x57,0x73,0xfa,0x53,0xba,0x2d,0x53,0xf9,0x93, +0xa6,0x87,0x8c,0x7c,0xad,0xb9,0x91,0x80,0xde,0x4f,0xc5,0x55, +0xa3,0x95,0x4f,0xa9,0x26,0xac,0xb0,0x5a,0x5c,0x46,0x7a,0xe0, +0x8d,0x71,0x9f,0x20,0x27,0xda,0x8b,0x74,0x92,0x74,0x45,0x92, +0x2e,0x70,0x83,0x3c,0xcc,0xc0,0x27,0xac,0x2c,0x1c,0xce,0x10, +0x7c,0xf3,0x14,0xde,0x30,0x62,0x83,0x8d,0xf4,0xda,0x78,0x25, +0xac,0x65,0x01,0x37,0x12,0x78,0xb3,0x01,0xdf,0x50,0x83,0x6e, +0xfc,0x8b,0xc8,0xf6,0x08,0xe1,0x78,0x9e,0xa9,0x2b,0xaf,0xaa, +0xc9,0xa9,0xe2,0x9a,0xf0,0x17,0x36,0x2d,0x27,0x35,0x27,0x39, +0x47,0x3f,0x95,0xd7,0xc4,0xcf,0x96,0xae,0xc4,0xd5,0x1b,0xca, +0x2c,0xf8,0xd2,0xb4,0xe2,0xf4,0xa2,0x0c,0x4e,0xf0,0x81,0xd9, +0xe4,0x80,0x87,0x9b,0x97,0xd3,0x7e,0x0e,0x87,0x99,0xda,0x92, +0xca,0xf2,0xd2,0x0a,0x6e,0x1e,0x5e,0x22,0x3f,0x09,0x43,0x2b, +0x58,0xb3,0xf1,0xcb,0xc5,0xa1,0x9f,0x59,0x9c,0x3f,0x5e,0x18, +0x9a,0x2f,0x0e,0x31,0xb8,0x18,0x43,0x09,0x28,0x95,0xfe,0xdd, +0xfa,0xb8,0xd5,0xb9,0x9e,0xdf,0x66,0xbb,0xc0,0x09,0x89,0x37, +0x27,0x34,0xdd,0x21,0xbf,0xfb,0xc0,0x44,0xdb,0x77,0xb6,0x15, +0xed,0xfc,0xe2,0x7a,0xfc,0xbc,0x79,0x4e,0x31,0x85,0x3d,0xd3, +0x43,0xc8,0x66,0x60,0x0e,0x81,0xdf,0x05,0xf0,0xe5,0x60,0x5b, +0x0f,0x6e,0x83,0x93,0x46,0x78,0x12,0x3f,0x1a,0xc3,0x47,0xe6, +0x32,0xba,0xe7,0xe1,0xe5,0x1f,0x51,0xbe,0xcc,0xba,0x3b,0x3e, +0xba,0x3f,0x1d,0xdc,0x79,0x0b,0xe9,0x51,0xa3,0x21,0x39,0xd2, +0xe3,0xd7,0xef,0xd7,0xe2,0x70,0x88,0x2f,0xb0,0x29,0xd4,0xcb, +0x30,0xe5,0xc4,0x36,0xd1,0x96,0xc8,0xc6,0x61,0xb2,0xd4,0xb1, +0xfb,0x67,0xe1,0xd5,0x27,0x09,0x02,0x71,0x3e,0x0d,0x44,0xb8, +0x10,0x14,0x61,0xa1,0xb4,0x24,0x4a,0x97,0x50,0xba,0xac,0x84, +0x0b,0x19,0xc1,0x1f,0x17,0x92,0xdf,0x7b,0xe6,0xc3,0x76,0x53, +0xd1,0x8d,0xf1,0x0f,0x3d,0x10,0x7a,0x20,0x8c,0x13,0x66,0x9a, +0x88,0xf3,0xd9,0x03,0x61,0x7e,0x61,0x7e,0x17,0x24,0xd9,0xb4, +0x85,0xd2,0x0a,0x0e,0x98,0x50,0x76,0xae,0x87,0xb7,0x0f,0xb6, +0x0b,0xb6,0x0e,0xe6,0x44,0x7f,0xf8,0x46,0x3a,0xc5,0x02,0x7a, +0x8a,0x1f,0x67,0x91,0x6c,0xfb,0x1c,0xb3,0x14,0x8b,0xf6,0x52, +0xfe,0x44,0xab,0x7f,0xef,0xe1,0x3a,0x0e,0xed,0xf1,0x24,0xa9, +0xef,0xaa,0x7d,0x91,0x7d,0xd3,0xa2,0x80,0x3f,0xa6,0xef,0xb0, +0xce,0x45,0x8a,0xb9,0x6f,0xe0,0x32,0x25,0x82,0x3d,0x68,0x01, +0x4b,0xe1,0x58,0x2f,0x06,0xd1,0xd1,0xd8,0xf4,0xa0,0x0d,0x28, +0xec,0x45,0x05,0xb4,0x36,0x06,0x6b,0x54,0xc4,0xc3,0x46,0x70, +0x5c,0x5c,0xce,0x68,0x56,0x07,0xdc,0xfc,0x5e,0x09,0x78,0x5d, +0x24,0x2c,0x8d,0x27,0xdb,0xd5,0x4c,0x95,0x4b,0xf7,0xdd,0xeb, +0xcd,0xbf,0x1d,0xfd,0x5c,0x5a,0x64,0x33,0x36,0xf6,0xc1,0x2a, +0x38,0x35,0x5d,0x08,0x60,0x62,0x07,0xe5,0xc4,0x13,0x8c,0xa5, +0x43,0xf4,0x15,0x0f,0x15,0x61,0x8c,0x70,0x94,0x24,0x44,0x46, +0x50,0x8a,0x0a,0x07,0x71,0x57,0x55,0x2b,0x85,0x8d,0xdb,0x4e, +0xc5,0x9f,0x8b,0x3e,0x79,0x5a,0x31,0xe8,0xa4,0x5c,0x08,0x54, +0xed,0x1b,0xb9,0x7c,0x8d,0x91,0x9a,0x30,0xad,0x26,0xaf,0x85, +0x31,0xb0,0x7f,0x44,0xe3,0x91,0x4c,0x05,0x3c,0xf1,0x03,0x9b, +0x52,0x90,0x58,0x18,0x9b,0xbd,0x27,0x96,0x3f,0x17,0x70,0xca, +0xfb,0xb8,0x9f,0x24,0x02,0x18,0x01,0x0f,0x96,0x8a,0xab,0x8d, +0x84,0xd5,0xa8,0x71,0x0d,0x34,0x04,0xf5,0x5e,0x06,0x37,0x0a, +0x75,0x64,0x8e,0xf8,0xdd,0x7b,0x56,0x26,0x87,0x75,0x44,0x75, +0x44,0xee,0x03,0x2b,0x2f,0x9c,0x95,0x3d,0x25,0x0e,0xb8,0xc9, +0x04,0xa7,0x6c,0x9c,0x55,0x6a,0xc0,0xe7,0x97,0xe7,0x55,0x65, +0xd5,0x72,0xe2,0xb5,0x01,0xd9,0x06,0xb6,0xf0,0x7a,0xde,0x83, +0xac,0xa7,0x1c,0x74,0x49,0x1c,0xd8,0x5a,0x0f,0xad,0x31,0xde, +0x00,0xe2,0xc5,0x3b,0xa8,0xc6,0x66,0xe8,0xcb,0xc1,0x3c,0xa6, +0x2d,0x3d,0xad,0x5d,0x45,0x18,0xfa,0xb3,0x9f,0x15,0x05,0xd8, +0x4a,0x30,0xeb,0x9f,0xb1,0x43,0xb2,0x61,0x50,0x65,0x4e,0x68, +0xdb,0xcd,0xb1,0x59,0xcf,0x5d,0xdb,0x55,0xbf,0x7d,0xb7,0x92, +0xc1,0x09,0x3f,0x33,0x65,0x67,0x26,0x7e,0xaf,0xdc,0x55,0xe6, +0x76,0x4d,0xcb,0xaf,0xdf,0x39,0x3f,0x31,0x1a,0x52,0xa9,0xb9, +0xdb,0x0c,0x63,0x32,0x9e,0x71,0xc2,0xd7,0x62,0x33,0xd9,0xff, +0x93,0xfd,0x1b,0x9b,0x47,0x16,0x7e,0x7c,0xb3,0x5a,0xdd,0xaa, +0xb2,0x25,0xd4,0xa1,0x34,0x64,0xeb,0x68,0x40,0x38,0xc4,0xa6, +0x56,0x24,0x57,0x26,0x54,0x1a,0x24,0xf1,0xde,0x73,0x74,0x70, +0xfc,0xda,0x75,0x2d,0xf6,0xfc,0xd5,0xf6,0xba,0xde,0xb2,0x01, +0x0e,0x8d,0x61,0x07,0xb1,0x47,0xb3,0xdd,0x94,0xcf,0x8c,0x76, +0x83,0x2a,0x2c,0x2a,0xaa,0x2a,0x6c,0xe0,0xc4,0x2c,0xa9,0x1b, +0x54,0xe5,0xe3,0x92,0x1f,0xb2,0xde,0x71,0xb2,0xf9,0xa2,0x37, +0xd9,0xcc,0x5c,0xbe,0x11,0x79,0xff,0xb1,0x92,0x78,0x91,0xb9, +0xa0,0x15,0xaa,0x71,0x6e,0x07,0xb7,0xca,0xe8,0x05,0x73,0x66, +0xc7,0xa9,0x6d,0xc7,0xb7,0x73,0x82,0x27,0x73,0xf1,0x5c,0xf8, +0xb9,0x8b,0xe7,0x38,0x9b,0x33,0xa7,0x82,0xad,0x29,0x3a,0x4c, +0x33,0x92,0xfb,0x85,0xb9,0x5b,0x93,0xf3,0x28,0x55,0xe5,0x72, +0x52,0x64,0x52,0x64,0x32,0xf7,0xaa,0x67,0x33,0x13,0xdb,0x11, +0xdd,0x17,0x75,0x8d,0x7b,0xc1,0xe0,0x08,0xf8,0x90,0x70,0xeb, +0x0b,0x26,0x61,0x46,0x1c,0x6e,0x60,0x62,0xfa,0xa2,0xba,0x2f, +0xb7,0x70,0xe0,0x82,0x6b,0x09,0xdd,0xeb,0x8a,0x68,0xe7,0x60, +0x33,0x13,0x6e,0x12,0x6e,0x7a,0xd1,0x82,0xc3,0x13,0x46,0x24, +0x54,0xff,0xbc,0xfe,0x79,0x53,0x0e,0x77,0x32,0xf1,0xbd,0x94, +0x1e,0xf7,0x72,0xe0,0x88,0xea,0x24,0xae,0x3b,0xa6,0x3f,0x7a, +0x40,0x92,0xaf,0x08,0xdb,0x17,0x6a,0x70,0xde,0x82,0xe6,0xc3, +0x4d,0x42,0x18,0xd9,0x6e,0xf2,0x18,0x4d,0x35,0x4d,0x85,0xef, +0xbb,0x8c,0xc0,0xf4,0x4e,0xf7,0x2e,0xd8,0xd7,0xd3,0x25,0xda, +0x33,0xa9,0xf9,0x29,0x85,0x49,0x05,0x16,0x39,0xbc,0xe7,0x36, +0x0b,0x8d,0x7d,0x26,0xa5,0x36,0x7c,0x76,0x46,0x76,0x76,0x56, +0x1e,0x37,0x0b,0x23,0x89,0xf7,0x09,0xaf,0x93,0x5e,0x92,0x26, +0xb1,0x54,0x1f,0x30,0xaa,0x49,0x3c,0xc6,0x08,0xc6,0x60,0x34, +0xeb,0x74,0xc2,0xf9,0x94,0xcb,0x99,0x04,0x43,0xbe,0x32,0xbe, +0x2a,0x51,0xd2,0xf7,0x2c,0x59,0xc8,0xa6,0xea,0xca,0x7d,0x23, +0xe9,0x0d,0x36,0x48,0x92,0xc4,0x95,0x29,0x95,0xa9,0x15,0x69, +0x1c,0x9c,0x80,0x17,0x04,0xf7,0x6d,0x93,0x5e,0x29,0xf3,0x0a, +0x4f,0x70,0xdf,0x56,0x06,0x14,0x15,0x60,0xdf,0x73,0xdc,0xc7, +0x62,0x8e,0x09,0x41,0xd3,0x6d,0x60,0xca,0x82,0x3b,0x9a,0x92, +0xad,0x60,0xfa,0x84,0xe9,0xa2,0x3b,0x60,0xfa,0x1c,0x4d,0x59, +0xf1,0x14,0xde,0x21,0xad,0x83,0x15,0xcf,0x32,0x6e,0x99,0xa4, +0xf0,0x47,0xf5,0x3c,0xd5,0x6d,0x8c,0x28,0x14,0x02,0x75,0x52, +0xac,0x53,0xb2,0x23,0x6b,0x57,0x6f,0x2a,0x7f,0xe4,0xb6,0xcf, +0x13,0x2f,0x7a,0xb7,0x9c,0x0e,0x90,0x1c,0xbd,0xd4,0xdd,0xc9, +0x5a,0xfd,0x89,0x7c,0xd0,0xbd,0xe3,0xb7,0x02,0x7a,0x39,0x74, +0x3e,0x45,0x62,0x0d,0xe3,0xd6,0x5e,0xd6,0x1b,0x8e,0xe7,0x43, +0x87,0xcf,0xbf,0x08,0xee,0xa1,0xf1,0xda,0x4a,0x78,0x4a,0x20, +0x42,0x17,0x23,0xc4,0x5f,0x0c,0xa0,0x9e,0xba,0x80,0x7d,0x88, +0x7d,0xa8,0x5d,0x28,0x27,0x28,0xe8,0x89,0x33,0x59,0x8f,0x30, +0xf7,0x0b,0xee,0x17,0xa4,0x57,0x0d,0xde,0x99,0xe0,0x5c,0x08, +0xfb,0x2a,0x43,0xfa,0xf8,0xad,0x27,0x37,0x9d,0x5c,0x77,0x5a, +0xba,0x0e,0xeb,0x5e,0xb4,0x86,0xbd,0x10,0xc1,0xc6,0x60,0xe4, +0x35,0x3c,0x0a,0x13,0xd6,0xd4,0xbb,0xb4,0x26,0x4b,0x0f,0x9a, +0xdc,0x78,0x93,0xbc,0x83,0x78,0x68,0xc9,0x3d,0x1d,0xb0,0x38, +0x0f,0x11,0x8a,0x70,0xb1,0x9f,0xf1,0xbd,0x43,0xbc,0x5a,0x8d, +0x6f,0x5a,0xd5,0xd8,0xbb,0xf3,0xcd,0xae,0xbd,0x7b,0x4b,0x2c, +0xb9,0x91,0x8b,0x30,0x8f,0x18,0x0a,0x7a,0x7d,0xac,0xbc,0xac, +0x4d,0x66,0x4f,0x13,0x5d,0xc7,0x88,0x12,0x93,0x92,0x9e,0x9c, +0x96,0x90,0x66,0x51,0xc4,0xdb,0xeb,0x68,0xeb,0x2e,0xb7,0x29, +0xb7,0xe4,0x6b,0x32,0xab,0xf3,0xca,0x0a,0xb9,0x85,0xb8,0xc8, +0x14,0x16,0xe1,0x24,0x54,0x30,0x97,0xbd,0xef,0xc0,0x2f,0x60, +0x12,0xa8,0x76,0xa1,0x2a,0x2b,0x6e,0x07,0x56,0x6a,0xa4,0x3d, +0x45,0x6a,0xa4,0xbd,0x57,0x01,0xa6,0x48,0xfb,0x8c,0xb4,0xc7, +0xc2,0x34,0x64,0x59,0x71,0xbc,0x29,0xa1,0x7f,0x35,0x05,0x26, +0xb1,0x30,0x84,0x93,0xa4,0x9a,0xba,0x49,0x30,0x85,0xe9,0xa6, +0xbb,0x74,0x67,0x1a,0x4e,0x62,0x45,0x1f,0x54,0x22,0x89,0x69, +0xf1,0x69,0x57,0xd2,0xcd,0xb2,0x79,0xbb,0xf5,0x3b,0xf4,0x57, +0x5a,0x17,0x99,0xf3,0x43,0x65,0xdd,0xb5,0x4d,0xd4,0xdd,0xb6, +0x31,0x87,0x4d,0x3d,0x6d,0xed,0x9c,0x0f,0x16,0x79,0x95,0xf8, +0xe4,0x3a,0xba,0xf2,0x79,0x47,0xcb,0xf6,0xe7,0xf9,0x9a,0xba, +0xef,0xf5,0xd9,0xe2,0x2f,0xf5,0x0c,0x37,0x1b,0x82,0x99,0x1f, +0x7a,0x60,0x03,0x57,0xc7,0x0a,0x76,0xfa,0xa4,0x1d,0x67,0x0c, +0x18,0xe9,0xe3,0x49,0x8b,0x36,0x54,0x55,0x35,0x83,0x7a,0x9c, +0xd4,0x2b,0x55,0xa6,0x74,0xe2,0x72,0x50,0x65,0x71,0x9f,0x02, +0x7c,0x8d,0x34,0xa9,0x32,0xf2,0x32,0x75,0xd9,0x43,0xa2,0xa7, +0x8f,0x99,0x03,0xf4,0x23,0xdc,0x04,0xc2,0xf5,0x06,0x07,0x21, +0x53,0xfa,0x48,0xed,0x96,0xaa,0x14,0x2c,0xb7,0x10,0x8f,0x45, +0xbb,0x17,0xae,0x55,0xab,0x75,0xe6,0xb3,0xd2,0x33,0x32,0xd2, +0x33,0x38,0x88,0xd3,0xc1,0x28,0x51,0xb3,0x0f,0x16,0x81,0xe9, +0x68,0x6b,0x75,0x70,0x59,0x8b,0x33,0x19,0x49,0x71,0x88,0x63, +0x52,0x13,0x23,0xa3,0xe2,0x55,0xe2,0xfd,0xe4,0xca,0x98,0x0f, +0x79,0xa5,0x6f,0x53,0x55,0x32,0x81,0x8f,0x00,0x33,0x08,0x55, +0x1a,0x99,0xcc,0xc4,0xa6,0xc6,0xa4,0xc5,0xa4,0x72,0x42,0xeb, +0x3c,0x82,0x3e,0x97,0x70,0x55,0x20,0x4e,0x55,0xde,0x19,0x1c, +0x78,0xdc,0x74,0xfa,0x21,0xe6,0xf2,0x95,0xc8,0x84,0x64,0x25, +0xf8,0x1b,0x33,0x86,0xe1,0x46,0xdb,0x5c,0xb6,0xb8,0x30,0x20, +0xcd,0x31,0xc7,0x2d,0x4d,0xd1,0xcb,0xb3,0xfc,0x78,0xd9,0xb1, +0xbc,0x20,0x45,0x34,0xbf,0x69,0xbc,0x1b,0x3d,0xa5,0xb4,0x5e, +0x92,0x46,0x21,0xeb,0x32,0x7c,0x48,0x5d,0xf5,0x36,0x98,0x32, +0x3d,0x5a,0xe4,0x36,0xb8,0x68,0xb1,0xa2,0x2d,0xa5,0x56,0xa6, +0xbb,0xa4,0x67,0x3e,0x91,0x77,0x08,0xb8,0xec,0x42,0x97,0xff, +0xba,0x42,0x9a,0xf7,0x9f,0xd1,0x8f,0x70,0x63,0x08,0xdf,0x3e, +0xf8,0x18,0x32,0xa5,0x8f,0xd4,0x1e,0x7a,0x85,0x70,0x1c,0x8f, +0x93,0xce,0x91,0xd9,0x6c,0x42,0x4a,0x42,0xea,0x95,0x14,0xeb, +0x7c,0xde,0x79,0xcf,0x3e,0xdd,0xad,0x36,0x95,0x76,0x7c,0x55, +0x76,0x45,0x61,0x49,0xb1,0x54,0x53,0xb5,0xd8,0x04,0x16,0xa3, +0x0a,0x12,0x33,0xd9,0xdb,0x4e,0x1c,0x0f,0x2a,0xc0,0x77,0x23, +0x0f,0x4a,0xac,0xa8,0xa1,0x40,0x33,0xd3,0xd7,0x74,0x0f,0xa8, +0x49,0xa7,0xd2,0xfd,0xa9,0x0c,0xe8,0x2a,0x80,0x12,0xd0,0xe3, +0xac,0xc8,0xd1,0xb9,0xa4,0x42,0x7f,0xac,0xc2,0xc2,0x35,0x54, +0x21,0x94,0xbc,0xab,0xc0,0x54,0xa6,0x97,0xee,0xd2,0x1d,0x05, +0x54,0x61,0x13,0x70,0x3c,0xa9,0xb3,0xad,0xb5,0x28,0x33,0xec, +0x2d,0xe2,0x3d,0xfb,0xed,0x3b,0x9c,0x6a,0xb9,0x11,0x33,0x9a, +0xf1,0x06,0x3a,0x1b,0xba,0x0b,0x3a,0x4d,0xb3,0x79,0x3f,0x6b, +0x07,0x4b,0x03,0x6b,0x4e,0x88,0x84,0x49,0x24,0xd7,0x3a,0xcb, +0x22,0xc5,0x64,0x38,0x99,0x3f,0xde,0x7b,0xb8,0x3d,0xa0,0x99, +0xc3,0x9c,0x93,0x24,0xc9,0xfc,0x8a,0x4d,0xb4,0xc1,0x70,0x1c, +0x1f,0x32,0x70,0xf6,0x6a,0x50,0x2b,0x4d,0x5c,0x77,0x65,0x47, +0xc8,0x1b,0xbd,0x25,0x68,0x64,0x24,0xe8,0xf4,0x4a,0x15,0x9c, +0xe9,0xa4,0xf3,0x75,0xed,0x2f,0x79,0xcf,0xb9,0x76,0x7c,0x33, +0xf2,0xf1,0x9a,0xac,0x03,0x3c,0xd9,0x83,0x3b,0x9c,0x96,0xeb, +0x2f,0xe0,0x1e,0xef,0xea,0xdf,0xbe,0x45,0x49,0xe3,0xa8,0xc7, +0x56,0x65,0x2d,0x26,0x49,0x47,0xee,0x16,0xf3,0x57,0xd3,0xf5, +0x37,0x6f,0x8c,0x1e,0x6b,0xdd,0x54,0x11,0x37,0x83,0x21,0x09, +0xd2,0x3f,0xa8,0xe1,0xa3,0xcb,0x61,0x99,0xa1,0x70,0xac,0x8f, +0xb2,0xf0,0xfc,0xbe,0xbc,0x6b,0x49,0x5d,0x1c,0xba,0x23,0x4f, +0x4e,0xb6,0x1e,0xee,0x39,0xd2,0x68,0x7e,0x88,0xcf,0xb2,0xcb, +0x32,0x4b,0xb2,0xe6,0xfc,0xc5,0x21,0x72,0x03,0x9e,0xc0,0x2d, +0x51,0x41,0xfc,0x8a,0xa5,0x3b,0xdf,0x10,0x9a,0x5b,0x33,0xc0, +0x9e,0x95,0x87,0x01,0x21,0x84,0x50,0x7f,0x51,0xeb,0x41,0x35, +0x50,0xd6,0x43,0x65,0xdc,0x65,0x0c,0xbb,0x70,0x11,0x3a,0x19, +0x09,0x3e,0x74,0x90,0x6f,0x28,0x56,0xf9,0xb4,0x7e,0xad,0xcc, +0x10,0xca,0xc4,0xc7,0xb8,0x61,0x74,0xfd,0xda,0x8c,0x7f,0x3f, +0x75,0xbd,0xf5,0xae,0x8f,0xc5,0x50,0x51,0x9b,0xf8,0xbc,0x71, +0x79,0xed,0xf0,0xd8,0xdc,0x8f,0xaf,0xdd,0x51,0xb3,0xa2,0x68, +0x11,0x87,0xef,0xf3,0x08,0x68,0xf6,0xa0,0x26,0xa8,0xea,0x51, +0x7f,0xd6,0x34,0x06,0x4d,0xdc,0x25,0x89,0x65,0x9f,0xdb,0x15, +0x1a,0x6b,0xc8,0xc3,0xba,0x44,0xd0,0xca,0x85,0x25,0x45,0xe7, +0x7b,0xf9,0x3d,0xa7,0x34,0x82,0x77,0x06,0x53,0xfb,0x14,0xfc, +0x57,0xbd,0xf1,0x99,0x53,0x67,0xf8,0x50,0x50,0x94,0x94,0x58, +0x46,0x5f,0xff,0x7e,0x69,0x36,0xba,0xe2,0xe1,0x6b,0x37,0x9c, +0xb7,0x09,0xbf,0xac,0xb1,0xe2,0xaf,0xfd,0x91,0xfb,0x7e,0xf4, +0x25,0x72,0x6a,0x8f,0x10,0x25,0xbd,0xff,0x8d,0x0c,0x55,0xbe, +0x85,0x6b,0xab,0x6a,0xe4,0x84,0x7e,0xea,0x7b,0x07,0x6e,0x5d, +0x80,0xe5,0x50,0xa6,0x04,0xc3,0x62,0x38,0x0e,0xb3,0x78,0xf2, +0x14,0x6a,0x1b,0xe1,0x17,0xca,0x57,0xdd,0xe4,0x06,0x80,0x4f, +0x85,0xdd,0x90,0xa4,0x04,0xf1,0xc2,0x74,0x0c,0x61,0xb1,0x3e, +0x06,0x77,0x57,0x6f,0x55,0xce,0xb6,0xed,0xb9,0x1c,0x3d,0x90, +0x05,0x3e,0xbc,0x73,0xbe,0x1c,0x7a,0xab,0x93,0x2b,0x87,0x25, +0xd9,0x34,0xbf,0x50,0xaf,0x50,0xcf,0x50,0x0e,0x56,0x02,0x07, +0x37,0x91,0x83,0xf1,0x6c,0x6b,0x7c,0x73,0x62,0x79,0xd2,0x91, +0x16,0x5e,0xcb,0x1f,0xf9,0x03,0xcb,0xcf,0x24,0x59,0xf1,0x15, +0x51,0x0d,0xb1,0x4d,0x71,0xdc,0x7c,0x9c,0x88,0x37,0x61,0x22, +0xb5,0x90,0xd1,0x79,0xa3,0x10,0xfb,0x0b,0x57,0x4c,0xf9,0x67, +0x71,0x30,0x2b,0xe3,0x65,0x7a,0x86,0x16,0xdf,0x98,0x14,0x34, +0xe4,0xfd,0xd3,0x91,0x76,0x45,0x0a,0x1f,0xfb,0x08,0xfa,0x6a, +0x81,0x2f,0x0b,0x93,0xd1,0x97,0x80,0xef,0x2d,0xf4,0x65,0xe5, +0x3f,0x2a,0x45,0x10,0xb7,0xa6,0xe3,0xef,0xe1,0xba,0x12,0xfc, +0x30,0xe2,0x82,0xd7,0x58,0xcc,0x38,0x82,0xf2,0x7b,0x28,0x11, +0xeb,0xb0,0x91,0xbb,0x0f,0xd3,0x73,0x61,0x3e,0x14,0x2b,0x41, +0x94,0xf0,0x33,0xd6,0xb1,0x78,0x3b,0x07,0x15,0xfa,0x4d,0x95, +0xab,0xf6,0xd7,0xa4,0xc4,0x74,0x66,0x82,0x09,0x6f,0x49,0x47, +0xdd,0xa9,0x4f,0x52,0x0f,0xa5,0xfa,0xa5,0xf8,0x5a,0x9d,0xb7, +0x38,0x6f,0x16,0xc2,0x51,0x1b,0x98,0x40,0x01,0xcd,0xce,0x1c, +0xfb,0x6d,0xdc,0xc3,0xf8,0x9e,0xe4,0x43,0x1d,0x3c,0x4e,0x3e, +0x80,0x6a,0xa7,0x70,0xeb,0x85,0x2b,0xc6,0xfc,0xb5,0xc8,0x3b, +0x97,0x6f,0x45,0x73,0x38,0x8e,0x9a,0xb8,0x00,0xf4,0x71,0x2d, +0xbb,0xfd,0xfc,0xa6,0x90,0xb5,0xa3,0xaf,0x8f,0x77,0x27,0xc2, +0xa2,0x64,0x0a,0xd9,0x12,0xfd,0x13,0xfc,0xe3,0x0e,0x76,0x64, +0xf2,0x07,0xee,0xbb,0x3c,0x75,0x1a,0xe4,0xf0,0x1d,0x44,0x12, +0xe0,0x71,0x23,0xf2,0x0c,0x3c,0x51,0xc0,0x19,0xb0,0x91,0x3a, +0x83,0x54,0x52,0xf5,0x98,0x18,0xe8,0x61,0xde,0x20,0xfd,0x88, +0x32,0x87,0x28,0xeb,0xfe,0x56,0xc8,0x93,0x3e,0x32,0x3b,0x30, +0x93,0x11,0xf3,0xb0,0x87,0xc8,0xb6,0x83,0xda,0xc8,0x76,0xa6, +0x1f,0x27,0x93,0xdb,0xc2,0x80,0x16,0x0b,0xdb,0x44,0x0b,0xe2, +0x78,0xc1,0xfa,0xa2,0xc5,0x05,0x0e,0xda,0x61,0x46,0xc7,0x3f, +0x93,0xcd,0x41,0x11,0x6f,0xb2,0xd6,0x36,0xe1,0x76,0xd3,0xa3, +0x4d,0x21,0x20,0x0a,0x92,0x62,0xc0,0xe3,0x8a,0xe2,0xea,0x81, +0x9f,0xd8,0x8e,0xc8,0x96,0xcb,0x0d,0x97,0x39,0xb4,0x83,0x3c, +0x22,0x86,0xdd,0x14,0xc2,0x18,0xe4,0xc6,0xef,0x12,0xc3,0xee, +0xb0,0x38,0x69,0xbc,0x10,0xb6,0x97,0xc1,0xa5,0x21,0xa8,0x15, +0x86,0xdb,0x2e,0x8c,0xae,0x2c,0x25,0xe4,0x16,0x64,0x69,0xf7, +0xdf,0x1a,0x6d,0x4a,0x73,0xd7,0x40,0x13,0xb3,0xee,0xea,0x6b, +0x8e,0x36,0xa5,0xd1,0x66,0x65,0xcb,0xc4,0xe9,0x44,0xad,0x44, +0xbb,0xdc,0xa8,0xba,0xbf,0xbd,0x79,0xa0,0xf4,0x36,0xd7,0x88, +0xa1,0xac,0xd4,0x9c,0x29,0x26,0xc5,0x24,0x89,0xf7,0x55,0x33, +0x52,0x5b,0xaf,0x57,0xee,0xc0,0x97,0x66,0x17,0xe5,0x17,0x14, +0xe6,0xbb,0x95,0x7a,0x56,0xef,0xd7,0x73,0xde,0xe9,0xb5,0xd6, +0x37,0xd3,0x8c,0x4f,0x8b,0xa6,0x81,0x32,0x86,0xc3,0xc6,0xbe, +0x0e,0x48,0x36,0xef,0x83,0x66,0xb6,0xf1,0x98,0xdc,0xc8,0xe7, +0x57,0x08,0x90,0x0e,0x94,0x52,0xc6,0x54,0x38,0x81,0xdf,0xe3, +0x09,0x0a,0x6b,0x3f,0x32,0x7e,0xa1,0x7e,0x61,0xbe,0xd4,0x7d, +0xfa,0x0d,0xe9,0x65,0x1d,0xbe,0x78,0xe4,0xc2,0xe1,0x8b,0xd4, +0x2b,0x60,0x79,0x3a,0x2c,0x29,0x84,0x71,0x25,0x61,0x1d,0xbc, +0xed,0x69,0xf3,0xd3,0x46,0xc1,0xdc,0x3d,0x21,0x9f,0x20,0x8f, +0x01,0xc0,0xb3,0x82,0x95,0x2e,0xc9,0x2c,0x92,0x03,0x3b,0xc6, +0xcf,0xd4,0xc5,0xd6,0xca,0xc9,0xb1,0xdc,0xbd,0xca,0xaf,0x8e, +0xdb,0x8e,0x25,0xe4,0x76,0xc1,0x60,0x69,0x67,0xd5,0x55,0x8f, +0xde,0xfd,0xd7,0x7d,0x39,0xbc,0x86,0xe6,0x84,0x72,0xea,0x64, +0x9c,0x47,0xa7,0x71,0x81,0xec,0x5f,0xc4,0x1c,0x2d,0x77,0xe0, +0x74,0x1a,0x14,0xa5,0x95,0x15,0x95,0xa5,0x15,0x35,0x65,0xcd, +0x9c,0x58,0x7c,0x4d,0xf6,0x15,0x5b,0xfb,0xa8,0xfc,0xfb,0xbc, +0x77,0x9c,0x20,0x52,0x72,0x37,0x84,0x6d,0x6c,0x78,0xfa,0xa5, +0x8c,0x4c,0x25,0x38,0xb2,0x07,0x8f,0xb0,0x47,0x2f,0x05,0x86, +0x1f,0x53,0xc6,0x4a,0x5d,0x28,0x65,0x8e,0xa0,0xeb,0x06,0x9c, +0x41,0xdd,0x61,0x4b,0xa3,0x11,0x4f,0x99,0xff,0xa6,0x5f,0x61, +0x4d,0x0c,0x58,0x8d,0x3e,0x05,0xb5,0xf9,0x11,0x55,0xc0,0x06, +0xf7,0xd5,0xf7,0xf1,0x14,0x6c,0x6b,0x6e,0x00,0x85,0x23,0xe0, +0xc8,0x41,0x0c,0xac,0x20,0xb6,0xfd,0x86,0x03,0x46,0x8d,0x0e, +0x6e,0xfc,0x80,0x45,0x9b,0x59,0xab,0x1e,0x85,0x0e,0x2f,0x63, +0x08,0xaa,0x8f,0xf6,0xe0,0x5c,0xf4,0x5f,0x3d,0x38,0x75,0x58, +0x4c,0xd9,0x46,0x7a,0xc4,0x4a,0x63,0x56,0xf8,0xa1,0x80,0x8c, +0x4c,0x1b,0x92,0x4d,0x63,0xc5,0x37,0x78,0x9f,0x08,0x5a,0xe0, +0x23,0x6a,0x31,0x03,0x12,0xa7,0x1a,0x47,0xa7,0xd9,0x38,0x16, +0x5f,0x8b,0xdf,0x90,0x21,0x41,0x53,0x50,0x10,0x4f,0x8b,0x26, +0x2c,0x78,0x43,0xb5,0x24,0x6e,0x3f,0x16,0x56,0xd1,0x18,0x3d, +0x96,0xd0,0x9d,0xb5,0x52,0x23,0x45,0x1f,0x33,0x29,0xb3,0xaf, +0x92,0x32,0xbb,0x97,0x02,0x3d,0xc4,0x52,0x6a,0x29,0xff,0xd1, +0xec,0x08,0x59,0x91,0xbe,0x36,0x6f,0x47,0xe9,0xb7,0x0d,0xd7, +0xdb,0xeb,0xfa,0xb8,0x3a,0x94,0xb1,0x39,0xb9,0x99,0xf9,0x69, +0xf9,0x1c,0xd4,0xc3,0x0d,0xf1,0x28,0x93,0x9e,0x93,0x96,0x97, +0x52,0xc0,0x09,0xc7,0x7a,0x44,0x5b,0xe6,0x4a,0x66,0x6c,0x66, +0x4c,0xa6,0x41,0x2a,0x1f,0x64,0x68,0xb6,0x50,0xcf,0xb4,0xde, +0x96,0x4f,0x4e,0x4c,0x4a,0x4e,0x4a,0xe5,0xb0,0x8f,0x66,0x0f, +0xeb,0x5d,0xab,0x35,0x16,0xda,0x14,0xda,0xf2,0xb5,0x99,0xb5, +0xb9,0x55,0x85,0x55,0x4e,0x4d,0x1e,0x9d,0x3e,0x1b,0x3c,0x17, +0xfb,0xe3,0x98,0x63,0xd4,0x1b,0x60,0x72,0x16,0xb0,0xa5,0x6f, +0x1b,0x5f,0x3a,0xfe,0xe9,0x0d,0xe3,0x0f,0x71,0x23,0x9a,0x1f, +0x17,0xff,0x6f,0x3a,0xd0,0x6e,0xe8,0xfc,0x3f,0x04,0x98,0x6b, +0x4b,0x4a,0x8a,0xf3,0x8b,0x39,0x71,0xc7,0x80,0x10,0xc6,0x56, +0x34,0x57,0x74,0x95,0xf6,0x70,0x42,0x78,0x0c,0xd9,0x2a,0x8e, +0x7b,0x42,0x69,0x2c,0x12,0xb2,0x51,0x1c,0xf7,0x9c,0x85,0xdf, +0x31,0x99,0x38,0x38,0x9a,0xb8,0xed,0xf5,0xda,0x57,0x66,0x5e, +0xe5,0x56,0x4f,0xdd,0xda,0x4e,0xf6,0x2d,0xc1,0x4d,0xf8,0xb5, +0xf8,0xa0,0x5b,0xc8,0xb8,0x3b,0xa2,0xd7,0x2b,0xd3,0x7b,0x24, +0x5a,0x98,0xb0,0xc9,0x06,0x34,0xa9,0xb7,0xa6,0xa4,0xb6,0xa8, +0x08,0x97,0x70,0x1a,0x6c,0x62,0x61,0xf9,0x2a,0x22,0xd4,0x77, +0x89,0xf5,0xcc,0x30,0xbe,0x25,0xc2,0x72,0x38,0x40,0xc9,0x50, +0x2f,0x6e,0x23,0x94,0xcf,0x5f,0xa5,0x14,0x1e,0x9f,0x8a,0xdf, +0x92,0x5e,0x18,0x31,0xea,0x13,0xac,0x45,0x3f,0xd1,0x9a,0x05, +0x17,0xa8,0x21,0xb8,0x14,0x26,0xc2,0x52,0x0a,0x2a,0x27,0x12, +0xba,0xb3,0x02,0x27,0xb2,0xe8,0x6a,0x49,0x01,0x11,0x3d,0x3e, +0x85,0x05,0x27,0x05,0x7a,0x68,0xca,0xa8,0x60,0xd0,0x04,0x21, +0x93,0x60,0x47,0x20,0xce,0x35,0x1c,0x55,0x18,0x6c,0xf8,0x25, +0xfb,0x93,0xc2,0xa0,0x3a,0x26,0xe1,0x17,0xd2,0x7a,0xe5,0xb7, +0xff,0x51,0x18,0xac,0x64,0x65,0xdb,0x47,0x36,0x90,0x1b,0x6f, +0x1a,0xff,0x4a,0xf9,0x95,0x6b,0x11,0xbf,0x84,0x02,0xb8,0x8b, +0xb3,0xd1,0x8c,0x4d,0x31,0x91,0x03,0x4d,0xa6,0x21,0x33,0xad, +0x59,0x05,0x0c,0xc5,0x7d,0xff,0x8c,0x19,0x14,0x4e,0xc3,0x2d, +0xf6,0xf4,0x4e,0xcf,0xf5,0x66,0x5b,0x2c,0x6f,0x39,0xdf,0xf7, +0xbb,0x63,0x72,0x88,0x2f,0xdd,0xdc,0xb4,0xa9,0x6f,0xbb,0x83, +0x89,0x99,0xa5,0xbe,0x73,0x95,0x29,0xdf,0x5f,0xdf,0xd9,0xd1, +0xdc,0xd3,0x62,0xdc,0x6d,0x3e,0x68,0x5f,0xde,0xc3,0x1b,0xd4, +0x9a,0xb5,0xdb,0xf4,0x70,0xa2,0x8d,0xa0,0x21,0xa9,0xf1,0xe9, +0xc1,0x16,0x06,0xd5,0x3e,0x2d,0x89,0x96,0x34,0x08,0xb7,0x48, +0x55,0xb6,0x10,0x2c,0xa8,0x90,0xd0,0x28,0xa6,0xbc,0xab,0xed, +0x75,0xee,0x2b,0xae,0x05,0xc7,0xc2,0x32,0x7d,0x5c,0x86,0xe3, +0x4c,0xe0,0x00,0xeb,0x8e,0x13,0x56,0xd3,0x58,0x36,0x69,0x76, +0xb9,0x35,0x5f,0x57,0x53,0x5e,0x53,0x50,0xc9,0x89,0xfc,0x80, +0xb0,0x8f,0x8d,0x8d,0xb8,0x14,0x15,0xa2,0xfc,0x16,0x37,0xd5, +0x55,0x2e,0x82,0x8d,0xe7,0x92,0x82,0x23,0x83,0xcf,0x29,0xc2, +0x18,0xa0,0xd6,0xfc,0xbd,0x4b,0xfc,0x9d,0xb9,0x85,0xef,0xa4, +0x16,0xc4,0x07,0x44,0x3b,0x1a,0xd0,0x46,0xed,0xfa,0x33,0xb5, +0xab,0xf8,0xb9,0xf8,0x84,0xf4,0x09,0x6b,0x0d,0xfb,0x05,0x2b, +0xb1,0x58,0xb4,0x62,0x21,0x18,0x6a,0x09,0x6a,0x51,0xac,0xa9, +0x45,0x21,0x25,0x4b,0x40,0x92,0x8f,0x62,0x59,0x3c,0x6b,0x4e, +0xf0,0x2b,0x7a,0x9c,0x66,0xe3,0x93,0x14,0xdf,0xd3,0xfd,0x7d, +0xd4,0x73,0x4d,0x0f,0x91,0x2d,0x19,0x1a,0xf9,0xba,0x25,0x77, +0x1a,0x7a,0x3a,0x2a,0xfb,0xa9,0xe7,0xf6,0xb1,0x59,0x79,0x19, +0xf9,0xc9,0xd4,0x73,0xc3,0xa8,0xe7,0xce,0x63,0x52,0x73,0x92, +0x73,0x13,0xf3,0x38,0x61,0x7e,0x8f,0xf8,0x39,0x13,0x97,0x1d, +0x93,0x15,0x9d,0x69,0x94,0xc4,0x1f,0xdf,0x65,0x31,0x4b,0x6b, +0x5f,0x8d,0x3d,0x9f,0x9e,0x9a,0x9a,0x9e,0x9a,0xc9,0x61,0x0d, +0xc8,0xb1,0x0e,0xda,0x6a,0x1a,0x6b,0xad,0xa8,0xe7,0x96,0x65, +0x94,0xe7,0x96,0xe4,0x95,0xb8,0xd4,0x79,0xb4,0xec,0xd7,0xf0, +0x5a,0x7f,0x60,0xd9,0xb1,0x0c,0x0b,0xfe,0x7d,0xd6,0xdb,0xd2, +0x7f,0x35,0xdc,0x73,0xf9,0x6e,0xff,0xeb,0x00,0x6e,0xe4,0x91, +0xf0,0x92,0x60,0xd3,0x31,0x9c,0x6b,0x8e,0xac,0x72,0xa7,0x53, +0xed,0x2f,0x99,0xaf,0xaf,0x48,0x37,0x74,0x39,0xbd,0xa1,0x72, +0xcc,0x68,0xf3,0x94,0xe6,0x7f,0xdf,0xd0,0x14,0xea,0x09,0xd2, +0x02,0xf4,0x85,0xa0,0x0f,0x94,0xf8,0xe7,0xe3,0x6a,0xb2,0x15, +0x3b,0x9f,0xb0,0xe2,0x97,0x98,0xf7,0x5f,0x22,0x01,0x0b,0x25, +0x91,0x80,0x7c,0x98,0x4b,0x36,0x60,0xe7,0x0b,0x16,0x1a,0x31, +0x95,0x78,0x38,0xd8,0xb8,0x1a,0x7a,0x19,0x95,0xdb,0xd6,0x78, +0xd7,0x51,0x52,0x69,0x7a,0x98,0x6c,0xca,0xd8,0x91,0xbf,0xaf, +0xf8,0x4e,0x43,0x6f,0x47,0x75,0x3f,0x57,0x8b,0xb7,0xd8,0xec, +0xbc,0x8c,0x82,0x14,0x7a,0xa5,0xd1,0xf4,0x4a,0xd7,0x8d,0x5e, +0x69,0x12,0xbd,0xd2,0xf5,0x3d,0xe2,0x4c,0x26,0x2e,0x2b,0x36, +0x3b,0x3a,0xd3,0x30,0x89,0x3f,0xa6,0x6e,0x80,0xdc,0x8e,0xbd, +0xd5,0xb6,0x7c,0x6e,0x66,0x76,0x6e,0x56,0x21,0x87,0xf5,0x30, +0x81,0xb5,0xd5,0xd8,0xb8,0x63,0xa9,0x55,0xa1,0x35,0x5f,0x93, +0x55,0x93,0x5f,0x59,0x5c,0xe6,0x5c,0xe7,0x71,0xd5,0x7b,0xab, +0xc7,0x72,0xff,0x39,0x41,0xe9,0xe6,0x3c,0xb0,0x19,0x30,0xa6, +0xf4,0xc7,0xa6,0x47,0xce,0x2f,0xbd,0xdf,0x05,0x70,0xa2,0x4c, +0x98,0x42,0x8a,0x9a,0xb3,0x1b,0x32,0xaf,0x7e,0x52,0x86,0x74, +0x39,0xe8,0x7c,0xa8,0xe4,0xff,0xac,0x0c,0x39,0xee,0x93,0x32, +0xa4,0xbc,0x31,0x04,0x4a,0xca,0x90,0xeb,0x29,0x66,0x9c,0x83, +0x93,0x4b,0x2d,0xf8,0xf6,0xe6,0xda,0x86,0x92,0xff,0x28,0x43, +0x5e,0x96,0x94,0x21,0x3f,0xe0,0xdc,0xba,0x5a,0x39,0xc1,0x14, +0x46,0xc8,0x36,0xbc,0xf9,0x0d,0x4b,0x03,0xd9,0x54,0x6a,0x80, +0x9b,0x2f,0xd8,0x0c,0x4c,0x21,0x50,0xc5,0x78,0x3a,0x5a,0xb9, +0xe8,0x79,0x19,0x94,0x5b,0x57,0x7b,0xd5,0x8f,0xbe,0x35,0xeb, +0x24,0xff,0xcc,0xb0,0x81,0x16,0x13,0x3c,0x8b,0x6b,0xe1,0x25, +0xe3,0xab,0x6b,0x65,0xa8,0x6f,0x5e,0xe3,0xc2,0xe7,0x64,0x66, +0x67,0x67,0x66,0x73,0x68,0xfa,0x13,0x6b,0x69,0xba,0xcb,0x66, +0x9d,0x47,0x9e,0x23,0x5f,0x9f,0x56,0x93,0x59,0x99,0x53,0xeb, +0xd3,0x14,0xd0,0x76,0x48,0x2d,0x70,0xd5,0x89,0xd9,0x67,0x52, +0x2c,0x79,0x98,0x9e,0x0c,0x63,0xb2,0x5e,0x16,0x3d,0xf3,0xfb, +0xf9,0xc8,0x87,0xa0,0xb4,0xab,0xfc,0xd6,0xf8,0x1d,0x29,0x5a, +0x99,0xd7,0x8b,0xba,0x2a,0x9b,0x1a,0xa8,0xf7,0x8c,0xb0,0x29, +0x29,0x29,0xa9,0x49,0x94,0x57,0xde,0x04,0x47,0xd1,0x89,0x49, +0x48,0x8a,0x4f,0x8a,0x4f,0xe6,0x84,0x53,0x4d,0xa2,0x23,0x13, +0x9b,0x14,0x93,0x18,0x93,0x64,0x9f,0xc8,0x0b,0xba,0x34,0x74, +0x5e,0xee,0x86,0x61,0x46,0xbc,0x6a,0x42,0xba,0x41,0xc7,0x84, +0x15,0x37,0xda,0x11,0xd0,0xda,0x85,0x5a,0x8c,0xb0,0xf1,0x0e, +0xd9,0x85,0x3a,0x77,0x58,0x41,0x73,0x17,0x41,0xa3,0x3b,0x60, +0xc4,0x8c,0x5c,0xc0,0x7f,0xc8,0x2f,0xc3,0x8f,0x1f,0xb4,0x7f, +0x63,0x5d,0xca,0xdb,0xa8,0xab,0x69,0xac,0x33,0xe1,0x20,0xb0, +0x8c,0x98,0xa8,0x6d,0x57,0x5b,0x65,0x54,0x62,0xc5,0x17,0x67, +0x94,0xe6,0x95,0x16,0x70,0x58,0xd4,0x0b,0xcf,0xd8,0xb2,0xb2, +0xa2,0x8a,0xac,0x52,0x4e,0x88,0xc9,0x27,0x8e,0x28,0xd6,0xb3, +0x20,0x6e,0x21,0x76,0x28,0x36,0xb1,0xf0,0x0a,0xb5,0x88,0xd3, +0x7e,0x0b,0x7f,0xdd,0xc3,0xfb,0x72,0x4c,0x0a,0xec,0x8b,0x69, +0xde,0x10,0x85,0x1f,0x09,0xce,0x85,0x13,0x86,0xd4,0x85,0xed, +0x66,0x8b,0x91,0x4c,0x44,0x59,0x44,0x45,0x95,0x12,0x18,0x42, +0x8d,0x21,0x9e,0xa0,0xb1,0xed,0xbc,0x21,0x26,0x30,0x78,0x3d, +0x00,0xf7,0x6c,0xc1,0x2f,0x95,0xdb,0x5d,0x5b,0x1f,0x15,0xfd, +0x92,0x06,0x5f,0x28,0xc2,0x7c,0xac,0xe8,0xa3,0x67,0xb4,0x62, +0x2e,0x97,0x5f,0xae,0x8a,0xac,0xe1,0x84,0x28,0xfc,0x0c,0xed, +0xf0,0x55,0x1f,0x54,0xc0,0x5c,0x6c,0xe8,0xff,0x38,0xdb,0x80, +0xa1,0xd9,0x86,0x10,0x87,0x26,0xb3,0x16,0x8b,0x4a,0x37,0x7b, +0xbe,0xcb,0xb9,0xd1,0xb1,0xc5,0x86,0x8b,0xa5,0xd1,0xd9,0xa1, +0x45,0xa7,0xc7,0xb8,0xce,0xc5,0x9e,0xef,0x76,0xec,0x35,0x6f, +0xb1,0xe0,0xbc,0x67,0x93,0x00,0x1c,0xef,0x81,0x93,0x0c,0xe7, +0x75,0xb8,0xf1,0x43,0x30,0xbe,0x0e,0x66,0x66,0xfd,0x49,0xc7, +0x37,0x45,0xf0,0x26,0x90,0x0e,0x49,0x98,0xfe,0x87,0xde,0x3c, +0xdc,0xfe,0x87,0xfe,0x3c,0xcc,0x34,0x80,0x4c,0x9c,0x87,0x41, +0xcc,0x99,0x75,0xc7,0x56,0x1c,0x5c,0xc1,0x41,0x01,0x13,0x80, +0x2a,0x1b,0xd5,0x71,0xc3,0xde,0x62,0x63,0x1e,0x0c,0x1f,0xff, +0xf0,0x73,0x1e,0x25,0x7f,0x14,0x54,0x3f,0x1f,0x84,0xe7,0xe0, +0xcf,0x84,0xeb,0x85,0x3a,0x84,0x1c,0xe0,0xec,0xcf,0x9e,0x3a, +0x6e,0x35,0x7d,0x13,0x93,0x62,0x2c,0xf7,0x0d,0xf3,0x2c,0xbf, +0xf2,0x5e,0x8a,0x4a,0x5c,0x75,0xcc,0xd0,0x3b,0x25,0xac,0x61, +0xf4,0x40,0x20,0xf4,0x9c,0xdb,0x61,0x1e,0x2b,0xec,0x42,0xca, +0xc9,0xec,0x68,0xa2,0xb7,0x63,0x46,0xf4,0x50,0x20,0x89,0x9d, +0x57,0xda,0x63,0xdb,0xa5,0xf3,0x8d,0x61,0x82,0x2e,0x05,0x85, +0x9f,0x50,0x1e,0x50,0x88,0x48,0xb9,0x94,0x9a,0xa6,0xf4,0x37, +0x6c,0xc7,0x15,0xac,0xbc,0xa0,0x23,0x6c,0x26,0xd6,0x47,0xcd, +0x8e,0x99,0x05,0x71,0x70,0x04,0x36,0xf4,0xe3,0x06,0xd8,0xa3, +0x83,0x7b,0x50,0xdd,0x80,0x46,0xe8,0x8b,0xac,0xce,0x31,0x9d, +0x13,0x06,0xa7,0xe3,0xf5,0xf8,0x9e,0xc4,0xfe,0x94,0x81,0x34, +0x0e,0x2b,0x70,0x15,0x2b,0xa5,0x6a,0x05,0xa6,0x3b,0x3d,0xb3, +0x53,0x05,0x1a,0xd9,0xde,0xf4,0x9e,0xcc,0x8e,0x6c,0x7a,0xcf, +0xc4,0x25,0xc4,0x11,0x94,0x57,0x40,0xa0,0x1e,0x4c,0x32,0xf1, +0xe5,0x6b,0xb6,0x76,0xe2,0xd4,0x06,0xe4,0x56,0x1e,0xc2,0x2f, +0x29,0x3a,0x0d,0xba,0x01,0x87,0x87,0xe1,0x87,0x62,0xf0,0xdf, +0x1d,0xc7,0x1f,0xc0,0x80,0xdd,0x28,0x68,0xe3,0x01,0x9f,0x0b, +0xbe,0x17,0xfc,0x2e,0x5e,0xd1,0xe1,0xa5,0x6a,0x13,0x87,0x62, +0x50,0xa9,0x48,0x72,0x4b,0xf4,0xbc,0xe2,0x43,0xcd,0xe7,0x2b, +0x78,0x10,0x8a,0x49,0xaf,0xa0,0x09,0x8c,0x33,0x90,0x34,0x80, +0x3e,0x6d,0xf4,0x8c,0x40,0x8f,0x5e,0xee,0x4e,0x26,0x6c,0xed, +0x99,0x8d,0x41,0x8b,0x38,0xb0,0x64,0x8e,0xe3,0x54,0xf3,0x1d, +0xa8,0xb8,0xa3,0x8c,0xce,0xdf,0xf9,0x2f,0x86,0x7f,0xcc,0x00, +0x6a,0x59,0x25,0x7c,0xd6,0x0f,0xcf,0x60,0x69,0x20,0xe3,0x7a, +0xd1,0x32,0xd4,0x4f,0xd9,0xe3,0xfc,0xe9,0x60,0x87,0xe9,0x96, +0x4c,0xa2,0x81,0x5c,0x0d,0x73,0xaf,0xba,0xa8,0xf7,0x8a,0x4a, +0x6c,0x7d,0xe4,0xbd,0x76,0xa5,0x66,0xf4,0x60,0x47,0x94,0x05, +0x1f,0xd2,0xeb,0xd9,0xe6,0x76,0xd5,0xa9,0xe2,0x2a,0x6f,0x53, +0x6b,0x5c,0x67,0x52,0xc2,0x09,0xdd,0xb8,0x59,0xb2,0xec,0x54, +0x6a,0x59,0x78,0x20,0x59,0x56,0x89,0x5a,0x56,0x89,0x11,0x11, +0xad,0x88,0x75,0xc3,0x9e,0x56,0xbd,0x0a,0x4f,0x2b,0xbe,0xdf, +0x7d,0xd0,0xae,0xc3,0x8e,0x83,0x19,0x14,0x6b,0xc4,0x76,0xc7, +0x74,0x46,0x5f,0xe5,0x60,0xe2,0x12,0xe6,0xf0,0xa5,0xa3,0xe1, +0x81,0xca,0xfd,0x0a,0x11,0x19,0x97,0x32,0xb2,0x94,0xde,0x52, +0x56,0xb9,0x8a,0x15,0x6f,0x8a,0x9f,0x8f,0xf6,0x92,0x55,0x2c, +0xfd,0x60,0x9c,0xcd,0xbb,0xff,0xa7,0x97,0x2c,0x0c,0x53,0x44, +0xa6,0x87,0x36,0x1b,0x90,0x50,0x4c,0x26,0x55,0xb5,0x34,0x55, +0x36,0x34,0xd6,0xb6,0x73,0x62,0xd3,0x0d,0x99,0x22,0xdb,0x70, +0xbf,0xea,0x45,0xc1,0x6b,0x4e,0xf8,0xd7,0xc8,0x7b,0x62,0x07, +0xca,0x8b,0xe0,0xe8,0x5e,0x6a,0x61,0x1f,0xbe,0x7e,0x6b,0x0f, +0x4e,0x69,0x41,0x6e,0xf1,0x21,0x9c,0x7e,0x04,0xf9,0xa0,0xbb, +0x70,0xe8,0x26,0xbc,0x2a,0x1f,0xb5,0xb0,0x0f,0x1e,0x50,0x47, +0xd4,0x40,0xbf,0xfd,0x17,0x7c,0x2e,0xf8,0x8c,0x5a,0x58,0x3d, +0x15,0x0e,0x14,0xc3,0xbc,0xca,0x64,0xb7,0x24,0x8f,0x78,0x6a, +0x61,0xa1,0x5d,0x66,0x4d,0x12,0xaa,0xaf,0xd4,0xc4,0x54,0x1b, +0x24,0x4b,0x2f,0x8f,0x4d,0x70,0xda,0x06,0x64,0x9a,0x1d,0xf8, +0x8e,0xdb,0x0d,0x4f,0x4a,0x9e,0x71,0xcf,0x18,0x5f,0x5c,0xb6, +0x0d,0xd7,0x48,0xbd,0x90,0xea,0x69,0x04,0xe1,0x41,0xf1,0x15, +0xec,0x2b,0x84,0x2d,0xdc,0x37,0xf4,0x27,0xd1,0x2b,0xf0,0x00, +0x3a,0xe0,0x9e,0x06,0x6a,0xf5,0xfd,0x60,0xf6,0x07,0x84,0xe4, +0x41,0x0e,0xd7,0xbc,0x81,0x41,0x85,0x33,0xe8,0x78,0x0c,0x27, +0x2a,0x6f,0x39,0x7d,0xd8,0x7d,0xcf,0x74,0x9c,0xc0,0xa4,0x19, +0x48,0xef,0xb2,0x7f,0x2f,0xeb,0x82,0xc9,0xe9,0x2a,0xe9,0xf0, +0x79,0x3c,0x38,0x81,0x82,0x12,0x28,0xb3,0x62,0x34,0xbe,0x27, +0x2e,0x41,0xce,0x27,0xa5,0x36,0x05,0x17,0x80,0x1d,0x40,0x8a, +0xce,0xf4,0xd0,0x6b,0x1d,0x1b,0xdd,0x74,0xb9,0x25,0xb2,0xc5, +0x20,0x86,0x0f,0xc1,0x85,0x81,0xf8,0x85,0xdb,0x92,0x4e,0x6f, +0x3e,0xbb,0x3d,0xf5,0x66,0xe2,0x43,0xee,0x17,0xca,0xf7,0x75, +0x02,0xf7,0x1d,0xd7,0x39,0x95,0xb2,0x87,0xef,0x4b,0xe9,0x4f, +0xe9,0x93,0x56,0x3a,0x0f,0xc2,0x63,0xb6,0x3e,0xa5,0x2e,0xa5, +0x3e,0x8d,0xfb,0x54,0x03,0xfe,0x50,0xd8,0xb4,0x81,0xc9,0x28, +0xcf,0xac,0x4d,0xac,0xa2,0x98,0x7d,0xeb,0x68,0x0d,0x78,0x4c, +0xae,0x49,0x2c,0x7f,0x70,0x81,0xf5,0x12,0x4d,0xa9,0x06,0x3c, +0x23,0x4b,0x4e,0x08,0x84,0x3a,0xe2,0x89,0x1b,0xed,0x70,0xd6, +0x2e,0x64,0x4b,0x0c,0xf8,0xac,0xb2,0x8c,0xea,0xb4,0x1a,0x4e, +0x6c,0xec,0x97,0xed,0x60,0xb3,0x6f,0x64,0x3e,0x48,0x7d,0x44, +0x71,0x2b,0x1a,0x13,0xb0,0x36,0x44,0x6b,0x74,0x30,0x04,0x07, +0xf1,0x2e,0xaa,0xb2,0xe9,0xfa,0xd2,0xaa,0xd2,0x4f,0x8f,0x52, +0x87,0xef,0xf5,0xb1,0x23,0x5f,0x7c,0x4b,0x82,0x7d,0x8e,0xb9, +0x1c,0xf6,0xe0,0x70,0x06,0x93,0x5d,0x9a,0x51,0x91,0x56,0xc5, +0x59,0x49,0x35,0xdd,0xd3,0x5e,0xe0,0x34,0xa9,0x80,0x7b,0xda, +0xf7,0x74,0x2b,0xa8,0xe1,0x41,0xe2,0xf7,0x93,0xf3,0x1b,0x97, +0x87,0x96,0x01,0x7c,0xad,0x5a,0xe5,0xaa,0xc2,0x25,0x9c,0xf8, +0xaa,0x8f,0x80,0xea,0x8b,0x7f,0xd7,0x79,0x7f,0x4f,0xb7,0x17, +0xd6,0xff,0xef,0xa5,0xdc,0x77,0x3f,0x95,0x72,0x3f,0x4f,0x7c, +0x62,0xfd,0xdf,0xa5,0xdc,0xe7,0x29,0xbb,0x4f,0x35,0x4b,0x32, +0x4e,0xf8,0x7f,0x94,0x72,0xc7,0xe9,0xc4,0x68,0x68,0x2b,0x75, +0xc4,0x5d,0xbc,0x73,0xfe,0x56,0xf0,0x75,0x45,0x79,0x78,0x25, +0xbb,0x4f,0xf6,0xe0,0xb2,0xa5,0xa8,0x80,0xaa,0xf3,0x5a,0xac, +0x79,0x98,0xf3,0xf7,0x5b,0x50,0x7a,0x08,0x9b,0x39,0xb0,0x0b, +0x27,0x8f,0x70,0xe3,0x9f,0xa8,0x0c,0x73,0x70,0x6c,0x6b,0x1b, +0x8f,0xb3,0xff,0x58,0x08,0xbc,0x16,0x2c,0xe7,0xb0,0x52,0x5c, +0x41,0xce,0xa2,0xd3,0x46,0xea,0x01,0x8e,0x8b,0x6a,0x4d,0x78, +0xf0,0xfd,0xe3,0x35,0xac,0x8a,0x87,0xc3,0x1c,0x25,0x00,0x17, +0x71,0xc5,0x09,0xe4,0x4e,0xe8,0x71,0x66,0xa7,0x03,0x03,0xe9, +0x7d,0x96,0x67,0x52,0x75,0xe5,0x60,0x3c,0xf3,0x5d,0x73,0xfa, +0x2f,0x39,0x2a,0x99,0xdf,0x24,0x4b,0xcf,0x8c,0x1c,0x38,0xf1, +0x5b,0x69,0xf9,0x52,0x03,0xf5,0xb5,0xc4,0xea,0xf8,0xea,0x98, +0x6a,0xfd,0x54,0xea,0x6b,0x5f,0x98,0xe0,0x97,0x9b,0x71,0x0c, +0x07,0x55,0x58,0x32,0x12,0x32,0xf8,0x17,0xf8,0xc0,0x1b,0xb6, +0xca,0xbd,0xeb,0x66,0xe3,0xe3,0xb2,0xa7,0x8a,0xdf,0x31,0xfb, +0x71,0xe9,0x26,0x5c,0x41,0xa7,0xc3,0x84,0x7a,0xe9,0x7d,0x2d, +0x90,0xd7,0xa0,0x55,0x0c,0x5b,0xb9,0xa7,0x8c,0x17,0xc6,0xcc, +0xc1,0x83,0xe8,0x8b,0x1a,0x8d,0x94,0x1d,0x05,0xd2,0x68,0x4f, +0xf1,0x4e,0x01,0xe4,0x73,0x4d,0x1b,0xa9,0xe7,0x9d,0x46,0xa7, +0x40,0xc9,0xf3,0x4e,0x8d,0x7a,0x9e,0xfc,0xa8,0xe7,0x8d,0x67, +0xfe,0x2c,0x1f,0xf5,0xbc,0x0c,0x49,0x0c,0xc0,0x59,0x5a,0x7b, +0xa7,0xcc,0x8e,0x64,0x5e,0x26,0xb0,0x5a,0x2c,0x1d,0x5d,0x9a, +0xb2,0x52,0x36,0x8d,0x3c,0x86,0xf4,0x36,0x4c,0xbf,0x67,0xac, +0x81,0x71,0x96,0x10,0xb7,0x9d,0x15,0x8b,0x61,0x0a,0x19,0x09, +0xe9,0xfb,0x0b,0x76,0xca,0x66,0xb0,0xb8,0xd3,0x84,0xe2,0x36, +0xb1,0x9c,0x3a,0xb3,0xc0,0x40,0x07,0xb9,0x07,0x39,0x1a,0x3d, +0xf7,0xe0,0xcb,0x76,0xfc,0xf2,0xa1,0xf1,0x0e,0xcc,0x79,0x68, +0xb2,0x63,0x9e,0xc5,0x1f,0x1a,0xac,0x60,0x2a,0x2e,0x25,0xc2, +0x97,0x62,0x82,0xf8,0x25,0x4b,0x21,0x5f,0x2e,0x11,0x17,0x0c, +0x0a,0x0b,0x18,0x71,0xc1,0x2c,0x22,0x2c,0xd0,0x13,0x17,0x30, +0xb6,0xe3,0x85,0x05,0x5a,0x74,0x0b,0xb1,0xf8,0x19,0xb9,0x7f, +0xe8,0x27,0x8f,0x3b,0x1e,0x05,0x6d,0xfc,0xde,0xd2,0xa5,0x55, +0xea,0x99,0x9c,0x38,0x1b,0x67,0x91,0x9f,0xb2,0x7f,0xad,0x1c, +0xa8,0xf1,0xa8,0xe7,0x8d,0x3d,0x56,0xef,0x5f,0x11,0xc8,0x49, +0xc3,0x23,0xff,0x63,0x78,0xb1,0x96,0x10,0xbb,0x9d,0xc5,0x16, +0x71,0x33,0xf1,0x38,0xee,0x71,0xdc,0x8d,0x06,0xee,0x1f,0xff, +0xee,0x9d,0x05,0x85,0xfa,0x58,0x38,0xd7,0xe8,0x4f,0xfc,0x5f, +0xac,0xeb,0x49,0x97,0x93,0xce,0xa7,0xd2,0x8d,0xf8,0x0f,0x55, +0xdf,0x57,0x3c,0x6f,0xe0,0x40,0x1b,0x6e,0xfe,0x9f,0x46,0x2c, +0x15,0x6f,0x8c,0xfb,0xef,0x31,0xc7,0x4b,0x63,0xb6,0x95,0xc6, +0x3c,0x7f,0x50,0x98,0xcf,0x88,0xf3,0xe9,0x98,0xe7,0xeb,0x89, +0xf3,0xa5,0x31,0xcf,0xd7,0xa2,0x5b,0x3a,0x0f,0x3e,0x23,0x0f, +0x0e,0xfd,0xf8,0x7f,0x1f,0xb3,0xea,0xe8,0x98,0xdf,0x54,0x0e, +0x4a,0x63,0x36,0xf2,0x58,0xf3,0x69,0xcc,0x73,0x65,0x53,0xc9, +0x37,0x50,0xd8,0x86,0x85,0xd2,0x98,0xd3,0x2d,0x21,0x7d,0x1b, +0x2b,0x4e,0x1c,0x71,0x26,0x1f,0x17,0xeb,0xff,0xb3,0x98,0x05, +0x4d,0xa1,0x87,0x5c,0xc8,0x0a,0xcb,0x0e,0xcd,0xe6,0xfe,0xd0, +0xec,0xbe,0x0b,0x35,0x9a,0x3d,0x77,0x61,0x6a,0x3b,0x4e,0x7d, +0x6c,0xbc,0x1d,0x6b,0x1e,0x9b,0x6c,0x9f,0xed,0xca,0x9c,0xad, +0x39,0x53,0x7d,0xa6,0xd8,0xe6,0x38,0x9f,0x62,0x91,0xa2,0x19, +0xb7,0x8f,0x43,0x1b,0x8a,0x8a,0x73,0x7f,0x48,0xf8,0x33,0xea, +0x6f,0xd3,0x18,0xfe,0xc2,0xec,0xe0,0x25,0x01,0xeb,0x38,0xd9, +0x9f,0xd8,0x4e,0x84,0x2f,0xc4,0x02,0xf1,0x0b,0x56,0xf0,0x91, +0x46,0xbf,0x6e,0x40,0x58,0xc7,0x88,0xeb,0x54,0x89,0xb0,0x4e, +0x97,0x82,0x43,0x3a,0xfa,0x75,0x5a,0x74,0x0b,0x19,0x34,0x42, +0x3f,0x3c,0xfc,0xda,0xfd,0xbe,0x34,0x7a,0xed,0xd2,0x85,0x55, +0x3b,0xb2,0x38,0x71,0x0d,0x1d,0xfd,0x9b,0xec,0xdf,0x2a,0x86, +0x6a,0x3d,0xeb,0x78,0x03,0x8f,0x95,0xde,0x4b,0xe9,0xe8,0x41, +0x14,0x56,0x12,0x97,0xe3,0x8e,0x41,0x8e,0x27,0xa4,0xee,0x29, +0xf2,0xbd,0x28,0xff,0xa9,0xf3,0x88,0xa2,0x11,0x28,0xe2,0x65, +0xd6,0x32,0xe8,0x3f,0xdd,0x53,0x9a,0x12,0x9b,0x53,0xa4,0xee, +0x29,0x9f,0xb3,0xa3,0x54,0xe6,0x53,0xf7,0x94,0x16,0xb6,0x29, +0xb5,0x29,0xbd,0x21,0x93,0x03,0x07,0xc1,0x88,0x18,0x80,0x16, +0x9b,0x83,0x5c,0x17,0x4e,0x7e,0xa1,0xda,0xda,0xce,0xaf,0x82, +0xf1,0xf6,0xef,0x0f,0x81,0x12,0x27,0x2e,0xa5,0x19,0xf3,0xc5, +0xcf,0xfd,0x30,0xa9,0x04,0xa6,0x18,0x66,0xf3,0xbe,0x52,0x67, +0x2f,0xb9,0xcd,0x34,0xfd,0xbb,0x19,0x92,0x33,0xa8,0xab,0x4b, +0xd9,0xf9,0xfa,0x39,0xe5,0x14,0x17,0xec,0x06,0xf6,0x0e,0xcc, +0x8b,0x97,0xca,0x3e,0x0d,0x99,0x70,0x9c,0x73,0x06,0xc7,0x9c, +0xd4,0xe5,0x8c,0x4e,0x05,0x9e,0x34,0x9e,0x4e,0x49,0x94,0xe4, +0xe4,0x1c,0xf3,0xb8,0x36,0xff,0x31,0xf5,0xf1,0xe7,0x09,0xc0, +0x80,0xad,0x92,0xa8,0x66,0xc8,0xc8,0x3f,0x16,0x16,0x50,0x76, +0xf6,0x6d,0xc3,0xbd,0xf8,0x47,0x14,0xba,0x64,0xf4,0x81,0x3d, +0x13,0x17,0x15,0x11,0x13,0xa2,0x0c,0x63,0x96,0xd5,0xd6,0xa8, +0xfe,0x74,0x3a,0xf1,0xcc,0xa5,0x33,0x67,0x15,0x4f,0x06,0xcb, +0x85,0xdc,0x83,0x65,0xdd,0xb8,0xec,0x6f,0x83,0x59,0x68,0x65, +0x02,0x7b,0x98,0x00,0xb5,0x3d,0x6a,0x73,0xb5,0x39,0xc1,0xd0, +0x9e,0x80,0xc2,0x8b,0x72,0x29,0xec,0xc6,0x62,0x76,0x1f,0x64, +0xc7,0x32,0x09,0x3b,0x9a,0x77,0xc3,0xb4,0xf5,0xa5,0x34,0x50, +0x8c,0xbd,0xb5,0xeb,0x9e,0xef,0x43,0x9a,0x82,0xbb,0xd1,0x5b, +0xfa,0xd3,0x2d,0x26,0x14,0xe6,0x1f,0x54,0x37,0xd2,0x44,0x46, +0x83,0xbb,0xb5,0x95,0xec,0x33,0x64,0x24,0xad,0xb3,0x0d,0x58, +0xbd,0x4a,0x39,0x5f,0x07,0x1a,0xde,0xbe,0xbb,0x97,0x03,0xaa, +0x8a,0x9f,0x5e,0xfa,0x72,0x1a,0x50,0xbf,0x50,0x7a,0xe9,0x5b, +0xf9,0x0a,0xe7,0xbc,0x80,0x15,0x4a,0xe0,0x47,0x31,0x5e,0x53, +0x6b,0xfd,0xf5,0x9c,0x7e,0xa3,0x7c,0xfe,0xb0,0xa9,0xe3,0x6e, +0x07,0x1a,0x3d,0xd2,0x2d,0x48,0x53,0x4b,0xdb,0xdd,0x9c,0x1e, +0xa3,0x5c,0xfe,0x90,0x85,0xfd,0x1e,0x6b,0xdb,0xd1,0x7e,0x4e, +0xfb,0x49,0x9b,0x78,0x82,0x4d,0xcd,0x48,0xca,0x4a,0xca,0x36, +0x4c,0xe0,0x8f,0x1f,0x38,0x76,0x30,0xf0,0x30,0x87,0x3f,0x5b, +0x42,0x35,0xb3,0xd7,0x7a,0xd5,0x7e,0x9c,0xef,0x97,0x61,0xc5, +0xff,0x96,0xfe,0x6d,0xde,0x8d,0x72,0x0b,0x6d,0x35,0x9d,0x59, +0x66,0x14,0xf2,0x57,0xa5,0x97,0x67,0x96,0xe4,0x70,0x68,0x2b, +0xdb,0xd2,0x88,0xf7,0xbb,0xa0,0xb0,0x1e,0x0b,0x3b,0x46,0x3f, +0xdb,0xa0,0xbc,0x11,0x0b,0xd8,0xa4,0xac,0x84,0x9c,0xf8,0x1c, +0x93,0x38,0x3e,0xd8,0xef,0xf4,0xc1,0xa0,0x43,0x1c,0xaa,0x31, +0xc9,0x69,0x49,0xe9,0x89,0xe9,0x1e,0xf1,0x7c,0x71,0x7a,0x41, +0x56,0x4e,0x36,0x07,0x5b,0x99,0xe7,0xbb,0x41,0xce,0x1e,0xb6, +0xb8,0xa6,0xb7,0xf2,0xa8,0x54,0xbc,0xaa,0x58,0xb3,0x8e,0x93, +0x3a,0x85,0x13,0xa4,0x74,0x20,0x29,0x31,0x29,0x31,0x31,0x89, +0x03,0x47,0x06,0xc3,0x70,0x2e,0xe9,0x80,0x30,0x73,0x16,0xc3, +0x24,0xcd,0xf5,0x30,0x53,0x16,0x6f,0x89,0x33,0x49,0x83,0xec, +0x4b,0x87,0x41,0xe8,0x1e,0x09,0xc7,0x6e,0x16,0x5e,0x03,0x25, +0xcd,0xe5,0xfd,0x50,0xce,0xf4,0x1b,0x90,0x7e,0xb8,0x6a,0xc0, +0x22,0xd8,0x93,0x7d,0x58,0x7e,0x8d,0x85,0x9f,0x15,0xe0,0xea, +0x3e,0xbc,0x4a,0x59,0xe9,0x73,0xf8,0x8b,0x9c,0x8f,0x3f,0x1b, +0x79,0xf2,0x14,0xe5,0x1c,0x21,0xbf,0xc2,0xec,0x5e,0x9c,0x0d, +0x6f,0xf4,0xf1,0x0d,0x6a,0x1a,0x51,0x1a,0x7b,0x14,0xc7,0xef, +0xc5,0x71,0xcb,0xe7,0x53,0xce,0xfb,0xf2,0xb7,0x96,0x9f,0xe2, +0x7e,0xe6,0x62,0xa5,0x7a,0x3d,0x9e,0x89,0xb9,0x1c,0x11,0x15, +0xaa,0xfc,0x1b,0x6e,0xae,0x6d,0x94,0x6b,0x06,0x3f,0xf2,0x14, +0x3e,0x1b,0x80,0x75,0x39,0x20,0x6f,0x9a,0xc1,0x07,0xe0,0x57, +0x46,0x38,0x4f,0x9d,0x02,0xa8,0x3e,0xf8,0x8d,0x54,0xa1,0xfc, +0x0d,0x5c,0xf9,0x08,0x3f,0xab,0x6f,0xe1,0x77,0xff,0xb2,0x07, +0x16,0xbb,0xc3,0x04,0x4e,0x9c,0xb9,0x9f,0x1c,0xdb,0xe1,0xb7, +0xc5,0x6f,0x5f,0xf3,0x01,0xbe,0xe8,0x5a,0xc9,0x77,0x99,0x0f, +0x38,0x4c,0x47,0x73,0x72,0xf4,0xee,0x81,0xa7,0xfe,0xd7,0xac, +0xfc,0xf9,0xbc,0x7d,0x85,0x5b,0x33,0x34,0x39,0xc1,0x17,0x37, +0xd0,0x3c,0xb1,0xc9,0x04,0x67,0xe1,0xbc,0xb9,0xa5,0x14,0x10, +0xac,0x81,0x71,0x37,0x60,0x7d,0x3c,0xe8,0x8f,0xbe,0x56,0xc3, +0x2f,0x42,0x70,0x42,0xf0,0x6e,0xce,0xe4,0x6c,0xd0,0x61,0xd3, +0xe9,0x0b,0x98,0x64,0x23,0xb9,0xdf,0x99,0x1b,0x55,0x99,0x6f, +0xd2,0x55,0x92,0x9f,0xc5,0xc0,0x17,0x11,0xa0,0xce,0x89,0x0a, +0xa6,0x34,0x12,0x6f,0x95,0x96,0xbc,0x7a,0x35,0xa3,0x57,0x1f, +0x2c,0x86,0x73,0x4c,0x49,0x48,0xe9,0xf9,0x8a,0x90,0xcc,0xab, +0x3c,0x3a,0x96,0x23,0x5b,0xa5,0xdb,0xc1,0x09,0x6c,0x2b,0x9e, +0x61,0xca,0x73,0x4b,0x4b,0xb2,0x4b,0x2c,0x73,0xf9,0x23,0xbe, +0x9e,0x3e,0x6e,0xfe,0x35,0x01,0x3c,0xc5,0xad,0x9c,0x3e,0x72, +0xb8,0x91,0x69,0xc8,0xf7,0x2e,0xdb,0x5f,0xe0,0x99,0xab,0x68, +0xeb,0x5b,0x7a,0xb0,0x34,0xa0,0x70,0xbf,0x22,0x1e,0xb5,0x06, +0x60,0x0c,0x2c,0x70,0xac,0x1b,0x5a,0x79,0x64,0x59,0xf1,0xe5, +0xb1,0xa5,0x31,0xc5,0xb1,0x52,0x9f,0xbc,0x19,0x86,0xe8,0x60, +0x0b,0x0e,0xda,0x18,0x67,0xfd,0x91,0x6f,0xc5,0x1c,0x16,0x7d, +0x25,0xfd,0xd4,0x09,0x03,0x30,0x21,0x86,0x2d,0xd0,0xfe,0xc9, +0x19,0x96,0x7a,0x72,0xe2,0x3b,0x06,0xe6,0x95,0x7f,0x57,0x5b, +0x70,0x8b,0xc3,0x23,0x18,0x4a,0x69,0xcf,0x29,0x13,0x16,0x06, +0xba,0x89,0x09,0x46,0x76,0xb3,0x86,0x8b,0x88,0x21,0x9e,0xea, +0x63,0xa1,0x49,0x01,0x22,0x0d,0x31,0x92,0xf9,0xd5,0x8e,0x1e, +0x88,0xa2,0x07,0xa2,0xe6,0x10,0x6d,0x8c,0xba,0x45,0x63,0x35, +0x26,0x10,0xe0,0x33,0x61,0x6c,0xe5,0xe3,0x2a,0x9f,0x46,0x7e, +0xab,0xc7,0x22,0x1f,0xe4,0x25,0x59,0xfa,0x6a,0xf2,0xfe,0x30, +0x70,0x5e,0xbf,0x79,0xe6,0xb5,0xf3,0x8b,0x4a,0x70,0x72,0xc9, +0xec,0x5c,0x8a,0xcb,0x26,0x8f,0x8a,0xf1,0x44,0x07,0x46,0x1f, +0x93,0xc4,0x78,0xee,0x4a,0x62,0x3c,0xd6,0x47,0xf9,0x64,0xdf, +0xa4,0xfd,0x09,0x9e,0x16,0x21,0x66,0xa1,0xa6,0x61,0x37,0x9e, +0xdf,0x01,0x66,0x00,0x58,0x8b,0x22,0xde,0x47,0xc7,0x6d,0x8f, +0x8b,0xee,0x91,0xbc,0x83,0xf4,0x5f,0xdd,0x27,0x31,0x9e,0x5c, +0x3e,0x60,0x9f,0xd7,0x9e,0x4f,0x62,0x3c,0x41,0xc9,0x1e,0x76, +0x7c,0x8f,0x55,0x8f,0x49,0x9b,0x61,0x80,0x8b,0xbf,0x7b,0x80, +0xb7,0xfb,0x45,0xf7,0x70,0x0f,0x49,0x8c,0x67,0xe0,0xf2,0x60, +0xd4,0x80,0x24,0xc6,0xd3,0x2f,0xac,0x65,0x2b,0xa2,0x2a,0x24, +0x31,0x1e,0xb0,0x15,0x5c,0xc9,0x01,0xfc,0xda,0x00,0xe7,0xee, +0x58,0xd4,0x68,0xc7,0xbf,0x80,0xcf,0x86,0x61,0x7d,0x2e,0xc8, +0x73,0xef,0x2e,0x92,0x6a,0xfc,0xe2,0x36,0xae,0x78,0x32,0xea, +0x23,0xbb,0x5e,0x6b,0xc3,0x22,0x37,0xea,0x23,0xa8,0x27,0xee, +0xa6,0xc1,0x6a,0x93,0x11,0xbd,0xf5,0x4b,0xe6,0x95,0x4a,0x8b, +0x55,0xe0,0xb3,0xdb,0xd2,0xad,0x37,0xe0,0x40,0x9d,0xde,0xfa, +0xaf,0x42,0x90,0x3b,0xbd,0x87,0xde,0xfa,0x13,0x87,0x8d,0xa6, +0xcf,0x91,0x6e,0xfd,0x07,0xe6,0x66,0xb5,0x74,0xeb,0x53,0x9e, +0x46,0x4b,0xb7,0x5e,0x83,0xa6,0x3d,0x53,0x86,0x4e,0x20,0x42, +0x32,0xf5,0x52,0x34,0x13,0xb4,0x3b,0x33,0xf8,0xd3,0x37,0x02, +0xef,0x07,0xf6,0x71,0x58,0x8d,0xad,0xa4,0xfe,0xbb,0x9c,0xb7, +0xc9,0xbf,0x9a,0xc5,0xf3,0xa7,0x57,0x1f,0x5a,0xeb,0x24,0xad, +0x38,0x77,0x94,0x4d,0x26,0x78,0x71,0x08,0x2e,0xc2,0x5b,0xd4, +0x19,0x84,0xd3,0xe2,0xe2,0x3b,0xc2,0xa4,0xae,0x91,0x4a,0x53, +0xf8,0xb8,0x4b,0x54,0xc2,0xd3,0x83,0xa0,0xc3,0x0e,0x1a,0x13, +0x4b,0x70,0x6e,0x63,0x41,0x47,0xc1,0x12,0xfc,0xdb,0x58,0x71, +0x11,0xae,0x20,0x6d,0xe8,0x6c,0xc9,0x0a,0x82,0x42,0x1b,0xfa, +0xd3,0xed,0xd7,0x68,0x43,0x70,0x7e,0xe3,0x82,0xee,0xb5,0xb7, +0x1d,0x9d,0xf8,0x5e,0xbb,0x41,0xa7,0x07,0x1e,0x9c,0x78,0x83, +0x79,0x58,0x39,0x54,0xdf,0xda,0xe8,0x58,0xcb,0xef,0xdc,0x8d, +0x63,0x0d,0x70,0x96,0x63,0xbe,0x09,0xdf,0x91,0xda,0x92,0xd1, +0x98,0xc5,0x59,0x81,0x13,0x7b,0x70,0x1d,0x8e,0xd1,0x40,0x2b, +0xf7,0x0c,0x23,0x1e,0x4e,0x37,0x02,0xfb,0x2e,0x1f,0x28,0x8e, +0x89,0x61,0x2e,0x3a,0x84,0x59,0x9d,0xf3,0xe4,0x1c,0x82,0x0f, +0x9e,0x31,0x9c,0x8e,0xca,0x4c,0xaa,0x89,0x1c,0xf0,0xcc,0x2f, +0xa5,0xf9,0xc3,0x29,0x2a,0x49,0x6d,0x97,0x87,0x2e,0xbf,0x68, +0x3a,0x72,0x35,0xb0,0xe7,0x18,0x0d,0x5f,0x86,0x97,0x09,0x6e, +0xe8,0xc1,0x19,0x43,0x38,0xf6,0x11,0x4c,0x80,0x31,0x0f,0x40, +0xa9,0x1c,0xb4,0x38,0x50,0x1b,0x12,0x37,0xc2,0x22,0x6d,0x5c, +0x24,0xce,0xd7,0xa5,0x91,0xb4,0x18,0x77,0x3e,0xc3,0x99,0xa0, +0x80,0xe3,0xe6,0x6e,0x47,0x45,0x3d,0xdc,0x68,0x5c,0xa8,0x3b, +0xda,0xa7,0x4f,0xf5,0x16,0x7c,0xf6,0x1d,0x30,0x1b,0x60,0xae, +0x16,0xec,0x34,0xe0,0xf0,0xa0,0x6c,0x03,0xf1,0xc2,0x0d,0x5a, +0x38,0x79,0xd6,0x12,0x9c,0xfc,0x6e,0x3b,0x7c,0xee,0x0b,0x6b, +0x38,0xf9,0x67,0xb2,0x46,0xf2,0xcf,0xd8,0x01,0xe1,0x2e,0xf4, +0x43,0x0f,0xfb,0x12,0x7b,0x28,0x28,0x16,0x63,0x70,0xa2,0xb4, +0x7a,0xfe,0x4f,0xa6,0x29,0x9d,0xa6,0x2a,0x59,0xad,0xf8,0x35, +0x2b,0x2a,0xe3,0xd7,0xe4,0x11,0x5c,0x52,0x63,0xc1,0x51,0xe1, +0x11,0xa4,0xa9,0xb1,0x23,0x0e,0x38,0x85,0xa6,0xef,0x4b,0xdb, +0xa4,0x23,0xdf,0x40,0xda,0x36,0x76,0xe4,0x2b,0x9c,0x40,0x6c, +0xbe,0xc5,0x7e,0xd6,0xeb,0xa2,0x57,0xf8,0xfe,0xf0,0x68,0x0a, +0xcb,0x16,0x46,0x83,0x56,0xf2,0xfb,0x44,0x4e,0xb5,0x4b,0xd8, +0xfd,0xb8,0x85,0xc5,0x69,0x36,0x44,0x07,0x2b,0x86,0x59,0xa8, +0xa0,0x99,0x76,0x0f,0x56,0xdc,0x60,0x71,0xfc,0x78,0xa8,0x30, +0x60,0x34,0xcf,0xcf,0x3d,0x8b,0x63,0xce,0xd3,0x2b,0xd7,0x95, +0x95,0x92,0x7f,0x94,0xf5,0x85,0x35,0x94,0x57,0xe1,0x88,0xea, +0xb0,0xf0,0x23,0x5c,0x65,0xce,0xe3,0x66,0x35,0x75,0xdc,0x8b, +0x13,0x2a,0xa9,0xfb,0x7c,0xf1,0xec,0xe9,0x8d,0x86,0xe7,0x71, +0x29,0x71,0x11,0x49,0xa7,0x29,0xe0,0x38,0xce,0x37,0xb4,0xe2, +0x65,0x38,0x74,0x32,0xe9,0x4c,0xe4,0xa9,0x53,0x8a,0x27,0x4f, +0x84,0x5e,0x4e,0xad,0x89,0x6d,0x8b,0xec,0x54,0x84,0xeb,0x62, +0x2a,0x1a,0x49,0x0f,0x9c,0x60,0xcd,0xbf,0xf5,0x57,0xfa,0xc5, +0x89,0x30,0x4f,0xd8,0xc1,0xca,0x43,0x9a,0xec,0x3b,0x62,0x89, +0x16,0x1a,0x38,0x13,0x19,0x9c,0x50,0x6d,0xca,0x97,0x16,0x97, +0x55,0x17,0x37,0x70,0x62,0xce,0xb0,0x6c,0x32,0x5b,0xfb,0xb8, +0xfc,0x55,0xee,0xef,0x1c,0x9c,0xc6,0x55,0xc4,0xbf,0xcb,0x75, +0xc8,0xad,0xd5,0xd8,0x9b,0xaf,0x35,0x2f,0x35,0x2f,0xa4,0x4e, +0xdb,0x81,0x2d,0x04,0x8e,0xc2,0x9c,0x7e,0xd4,0x64,0x4b,0xaf, +0x96,0xdc,0xc8,0xbf,0xae,0x93,0x25,0xa9,0xdd,0xa9,0x3b,0xea, +0xd3,0x20,0x65,0x00,0x2b,0x50,0x87,0x39,0x71,0xe9,0x64,0xf8, +0x49,0x65,0xd4,0xd0,0x87,0xed,0xcc,0x09,0x9c,0x64,0xb5,0x1e, +0xd9,0x39,0xad,0xd4,0x22,0xf2,0xc0,0x76,0xff,0x9d,0x06,0x33, +0x39,0xf0,0x41,0xf1,0x1a,0x88,0xb0,0x62,0x80,0x11,0x35,0x14, +0x22,0x92,0x2f,0xa5,0xa4,0x28,0xc1,0x3e,0x70,0xc7,0xa3,0xac, +0xbc,0xec,0x20,0x14,0xd3,0x20,0x07,0x26,0x03,0x23,0x4a,0xb0, +0x92,0x05,0xfd,0x68,0x38,0x18,0x0f,0xeb,0xca,0x7d,0x7b,0x79, +0xdc,0xea,0x85,0xd6,0x67,0x30,0x24,0x94,0x13,0x4f,0xe0,0x3a, +0xfd,0x8f,0x5f,0x0d,0xb0,0x58,0x02,0x5e,0x04,0xbd,0x44,0x1e, +0xbc,0x58,0x34,0x17,0x07,0x09,0x28,0xf6,0xbc,0x7f,0xf4,0xf0, +0xb1,0x55,0x15,0xbf,0x43,0x7d,0xb1,0x36,0x4e,0x35,0xe3,0x84, +0x5a,0x58,0x48,0x7e,0xb3,0x80,0x09,0x6a,0xbf,0xaa,0x37,0xb5, +0xf2,0xcb,0x6e,0xa1,0xfc,0x93,0x79,0x6d,0x14,0xc6,0xdc,0x86, +0x04,0xe2,0x71,0xcc,0x2d,0x48,0xc2,0x88,0xb7,0xfe,0xe8,0x99, +0x07,0x71,0xfa,0x18,0x37,0xc7,0xf8,0x3d,0xfe,0xc4,0xba,0x9e, +0x70,0x3e,0xe5,0x24,0xad,0x48,0xf8,0xbb,0xf2,0x87,0xca,0x17, +0x8d,0x9c,0xf0,0x5e,0x78,0x43,0xc4,0x6b,0x34,0xb6,0x62,0xc2, +0x59,0xd4,0xc1,0x2f,0x71,0x99,0x72,0xab,0x1d,0x05,0xcf,0xa0, +0x5a,0x46,0xa7,0xf4,0xf7,0x4a,0x42,0x14,0xa3,0x0f,0x7b,0x09, +0x4e,0x15,0x8d,0x61,0x2a,0x2b,0x2c,0x10,0x0b,0x09,0x28,0xc3, +0x67,0x1d,0xa8,0xc8,0x66,0x54,0x66,0x36,0x27,0x56,0x98,0xa5, +0xf3,0xc1,0xce,0x07,0x4d,0x03,0x9c,0x28,0x6d,0x30,0xff,0x7b, +0x11,0x73,0xf2,0xd2,0xa9,0xf0,0x53,0xd4,0xb3,0xcc,0x60,0x32, +0x73,0x62,0x8b,0xb3,0xc1,0x06,0xcb,0x4a,0x4b,0xfe,0xd7,0xa1, +0xd6,0x7b,0x69,0x7f,0x71,0xb0,0x18,0x4f,0xf7,0xc3,0x69,0xf8, +0xba,0x93,0xc1,0xdb,0xe0,0x4d,0x4e,0x95,0x1e,0x68,0x39,0x52, +0x68,0x75,0x90,0xcf,0xf6,0xcd,0xb7,0x4f,0xf4,0xe6,0x2a,0x69, +0x92,0x89,0x48,0xba,0x94,0x9c,0xac,0xf4,0x2b,0xcc,0x45,0x65, +0x6a,0xb3,0x7c,0xc1,0x9d,0x34,0xf5,0x94,0xdc,0xca,0xfc,0x9e, +0xbb,0xd5,0x81,0x59,0x4c,0x72,0x69,0x62,0x59,0x7c,0xa9,0x49, +0x02,0xef,0x3d,0xd7,0x6a,0x8d,0xd6,0x8e,0x3a,0x57,0x3e,0x3b, +0x27,0x33,0x2f,0x2d,0x2f,0xc7,0xac,0xd8,0xb6,0xc6,0xd1,0xc6, +0xde,0xc0,0x63,0xe7,0xfe,0x62,0x0b,0xfe,0x9b,0x8a,0x6b,0xd5, +0x6d,0xad,0x1d,0x36,0xd7,0x9c,0x1f,0xb8,0x15,0x5f,0xe5,0x35, +0x2a,0xf4,0xab,0x2d,0x1b,0x39,0x31,0x01,0x54,0x08,0x56,0xb7, +0x43,0x35,0xf0,0x18,0xb2,0x9e,0x4d,0xb6,0x95,0xbb,0xce,0x34, +0xa5,0x4a,0xab,0x0e,0x4a,0x71,0x1f,0x68,0x19,0xa2,0x16,0x1a, +0xe2,0xc7,0x1e,0x18,0x60,0x1f,0xfe,0x40,0xfc,0xda,0x0f,0x55, +0x78,0xd4,0x39,0xfa,0xf1,0x65,0x2e,0x05,0x0e,0xb9,0x76,0xd2, +0x8b,0x81,0x15,0xe4,0x98,0xa3,0x9f,0x85,0x97,0x6b,0x23,0x3d, +0x58,0x5b,0xdc,0x9e,0xde,0xc8,0xc1,0x43,0x9c,0x4c,0x4e,0x68, +0x1f,0x30,0x71,0xb3,0x71,0x68,0xf6,0xee,0x3c,0x3a,0x10,0x93, +0xc0,0xe3,0x0d,0x54,0x24,0x59,0xee,0x69,0x4e,0xc9,0xf6,0x8d, +0xa9,0xfc,0xa9,0xab,0x81,0x35,0x47,0x2a,0x38,0x34,0xc0,0x7d, +0x24,0xbb,0x23,0xe3,0x5a,0x6c,0x87,0xed,0x15,0xfe,0x9c,0x59, +0xa0,0xfe,0x11,0x6b,0x0e,0x86,0x97,0x90,0xdd,0xf8,0x02,0x13, +0x07,0xc1,0x11,0x72,0x30,0x69,0x00,0x92,0xa0,0x19,0xe7,0xe0, +0x0e,0x36,0xc5,0x54,0x0e,0x16,0x30,0xed,0x19,0x94,0x67,0xc2, +0x3e,0xfc,0x70,0x93,0x95,0x17,0x72,0xe0,0x1d,0x11,0x26,0x08, +0x4a,0x83,0x23,0xf7,0xf4,0x84,0x89,0xe2,0x04,0x71,0xa9,0xbe, +0xb0,0x94,0xfe,0x08,0x3e,0x08,0x5b,0xa8,0xbf,0x84,0xb5,0x93, +0xae,0x3b,0x3d,0xef,0x2a,0x1e,0x19,0x14,0xf3,0xfb,0xd5,0x8d, +0x16,0x99,0x6a,0x73,0x62,0x38,0xb8,0x92,0x3a,0x83,0x7e,0xd5, +0x32,0x8d,0xbe,0x42,0xde,0xf5,0xa9,0xc9,0xaf,0x4e,0x03,0x34, +0x8e,0xca,0x84,0x3f,0x48,0xb6,0x79,0x89,0x6d,0x8d,0x93,0x8d, +0xa3,0x81,0x87,0xba,0x77,0x11,0xb5,0x57,0xf9,0x70,0x55,0x7b, +0x6b,0x87,0x2d,0xb5,0x97,0xbb,0x64,0xaf,0x72,0x6a,0xaf,0xfa, +0xc6,0xee,0x92,0x1b,0x59,0xdf,0x7d,0xb2,0x7b,0x52,0x49,0x62, +0x69,0x7c,0x09,0xb5,0xbb,0xcf,0x7c,0xab,0x75,0x5a,0xea,0x9f, +0xec,0x9e,0x9b,0x96,0xc7,0xe1,0xeb,0x70,0x82,0x65,0xed,0x50, +0x46,0x4d,0x1a,0x4c,0x4d,0x6a,0xf7,0x1f,0x93,0xe6,0x53,0x93, +0xee,0x34,0xc4,0x9d,0xd4,0xa4,0x7f,0xf5,0x40,0x17,0xfb,0xf8, +0x7b,0xe2,0xdb,0x76,0xa8,0xc2,0xb3,0xde,0xd6,0x97,0x2f,0x75, +0x2e,0x74,0xc8,0xb3,0xe7,0xa0,0x11,0x56,0x92,0x40,0x47,0x5f, +0x0b,0x6f,0xd7,0x16,0x1f,0xbe,0xb8,0xae,0xa4,0x2d,0xa3,0x89, +0x83,0x7b,0x38,0x89,0x04,0xed,0xf1,0x37,0x71,0xb5,0x75,0x6c, +0xf6,0x6e,0x3f,0x3a,0x10,0x19,0x15,0x71,0x39,0xf2,0x32,0x87, +0xd7,0x69,0xaa,0xa0,0x66,0x75,0x4e,0x76,0x90,0xcc,0xda,0x1a, +0x58,0xfd,0xc9,0xac,0x7b,0x48,0x76,0x3b,0x35,0x6b,0xbb,0x64, +0x56,0xf3,0x40,0x03,0x6a,0x56,0xe1,0x1c,0x8e,0x21,0x0b,0x31, +0x2f,0x8a,0x7d,0xad,0xbf,0x88,0x0d,0xc7,0x4c,0x63,0x48,0x66, +0x8f,0x6c,0xde,0xe9,0x80,0xcb,0xbd,0x0a,0x24,0x4d,0xd8,0xda, +0x97,0x43,0xd9,0x30,0x8e,0x83,0x62,0x74,0x1b,0x04,0x37,0xb8, +0xd0,0x83,0x17,0xde,0x51,0xbc,0x95,0x24,0xd8,0x93,0x10,0x98, +0x0e,0x13,0xbb,0x71,0xe2,0xff,0x1b,0x2d,0xfd,0x1f,0x70,0x9b, +0xa4,0xb1,0xbd,0xee,0xdf,0x1a,0xdb,0xb2,0x6d,0xf0,0x2d,0x11, +0x6f,0x1a,0xc1,0x25,0x5c,0x88,0xc7,0x47,0x96,0x0f,0x0a,0x1f, +0x60,0x1b,0x13,0x8a,0xcb,0xcc,0xb5,0x54,0x67,0xd5,0x58,0xf0, +0x37,0x86,0xdb,0x6e,0x15,0xf5,0x47,0x27,0xc4,0x84,0xc7,0x9c, +0x83,0xf9,0x48,0xe9,0x44,0x03,0xc5,0xc5,0x3a,0x67,0x12,0x83, +0xa3,0x4e,0x9f,0x56,0x3c,0x75,0x3a,0xf4,0x72,0x52,0x4d,0x7c, +0x5b,0xe4,0x0d,0x45,0xd0,0x12,0x8b,0x71,0x93,0x24,0xcd,0x02, +0x73,0x98,0x96,0x8c,0x8c,0xab,0x2a,0xc2,0x13,0x3c,0x07,0x0b, +0x21,0x95,0x95,0x1e,0x33,0x5e,0x23,0xd0,0x39,0x48,0xef,0x4d, +0x6d,0x4f,0xd1,0x60,0xd1,0x1d,0xbd,0x6c,0xde,0x7b,0xb3,0xb7, +0xbe,0x0d,0xbd,0xed,0x15,0x7a,0x50,0x25,0x96,0x60,0x8b,0xde, +0x47,0x85,0x41,0x1c,0x66,0x30,0x5e,0xf6,0x35,0xf1,0xeb,0x75, +0xbb,0xe6,0xd9,0x40,0xe3,0x5d,0x85,0x5d,0x85,0x5e,0x81,0x31, +0x07,0x51,0x3b,0x08,0xfd,0x9d,0xcd,0x42,0x09,0x0b,0x8f,0xc5, +0x2d,0x64,0xe0,0xe9,0x75,0xf8,0xa2,0xea,0x2f,0xca,0x47,0xbc, +0x16,0xef,0xc5,0xaf,0xf5,0xd4,0x38,0xf1,0x01,0x65,0x55,0x2d, +0x6b,0x9b,0x67,0x15,0xce,0xeb,0xcb,0xe6,0x7d,0x3e,0xd8,0xff, +0x65,0xf5,0x92,0x06,0x17,0x41,0xf6,0x05,0xb9,0x0b,0xb9,0x9a, +0x83,0x77,0x21,0xb9,0x1b,0x93,0xef,0xeb,0xa9,0x63,0xee,0x7d, +0x7d,0x75,0xbc,0x68,0x02,0x17,0x35,0xd9,0x8d,0xb8,0x92,0xf8, +0x77,0xb8,0x75,0x78,0xd4,0xdb,0x78,0xf3,0x65,0xae,0x15,0xe6, +0x25,0x66,0x1c,0x64,0x5f,0x24,0x15,0xad,0x65,0x83,0xe9,0xf5, +0x66,0x39,0x7c,0xa0,0x95,0x9f,0x95,0x07,0xbd,0x45,0x33,0xf1, +0x5b,0xd2,0xfe,0xaf,0xa2,0x5f,0x93,0xe1,0x4b,0x6e,0xb8,0x03, +0xaf,0x30,0xf1,0x15,0x71,0x95,0x31,0x95,0x94,0xe0,0x9d,0x58, +0xea,0x82,0xe3,0x77,0x2f,0xe7,0x60,0x0c,0xda,0x83,0xae,0x21, +0xea,0xa2,0x85,0x78,0xa9,0x4f,0x30,0x87,0x59,0xa2,0x46,0x97, +0xa0,0x01,0x0b,0xc4,0x29,0x73,0xd8,0x74,0x53,0xb9,0xef,0x98, +0xb2,0x94,0xc4,0xcc,0x58,0x95,0x52,0xab,0x27,0xfd,0x43,0x3d, +0x2d,0xc3,0x8a,0xcd,0xba,0xfd,0xfa,0x0f,0x8d,0xcb,0xda,0xf8, +0x1d,0xdd,0x06,0xfd,0xb6,0xc3,0x5c,0x15,0xf4,0x93,0xe0,0x45, +0x87,0x37,0xb9,0x68,0xd8,0x3f,0xf2,0x7b,0x76,0xfa,0xfb,0x88, +0xcb,0x97,0x22,0x23,0x22,0x39,0x9c,0x21,0x1e,0x21,0x91,0x71, +0x11,0x57,0xe2,0x95,0xa8,0x57,0x96,0x7a,0x66,0x17,0x66,0x96, +0x65,0x54,0x2a,0xa6,0xa9,0x17,0x69,0x34,0x6a,0xd9,0xee,0xd1, +0x33,0xda,0x6a,0xca,0x69,0xc1,0x34,0x12,0x74,0xcf,0xff,0x7e, +0xc0,0x90,0xcd,0x09,0x3e,0x6f,0x6f,0xb6,0x66,0xfa,0x4e,0x0e, +0xdd,0x02,0x49,0xf6,0x9d,0xb4,0x1f,0xae,0xdc,0xb3,0xa0,0x9e, +0xa6,0x11,0xb4,0xe1,0xa0,0x16,0x27,0xff,0xbd,0xac,0x81,0x8c, +0x88,0xd7,0x68,0x28,0x6e,0x81,0x67,0xec,0x2f,0xf8,0x94,0xc0, +0xb0,0xe8,0x85,0x6b,0x98,0x44,0x23,0x39,0x98,0xcf,0x34,0x67, +0xa4,0x37,0xa9,0xc8,0xca,0xc4,0x89,0x2c,0x05,0x28,0xca,0xe4, +0x25,0x04,0xaf,0x91,0xde,0x43,0xbe,0x84,0xe8,0x35,0xec,0x88, +0x11,0xaa,0x92,0x9f,0x21,0x78,0x39,0x3d,0x12,0x41,0x7e,0x82, +0xe8,0x15,0xec,0x52,0xdc,0x4a,0x50,0xf5,0x5f,0xba,0xeb,0xf1, +0xa6,0x29,0xe4,0x31,0x56,0x5b,0x70,0xec,0x4e,0x54,0xdd,0x5b, +0x6c,0xc2,0x03,0x19,0x86,0xd5,0xbf,0xa5,0xbf,0xe7,0x62,0x30, +0x13,0xbf,0x62,0x12,0x8d,0xe5,0xe0,0x33,0xa6,0x31,0x2b,0xbd, +0x5e,0x05,0x28,0xb5,0x62,0xe5,0x3f,0x32,0x82,0x12,0xa9,0x4f, +0x97,0xd6,0x97,0x4e,0x62,0x4d,0xd2,0xe5,0x68,0x10,0x99,0xc8, +0x06,0x9c,0x8b,0xc9,0x51,0x01,0x65,0xf6,0x61,0xc9,0x83,0x86, +0x9e,0x7a,0xaf,0x46,0xde,0xda,0xd5,0xd0,0x63,0x8f,0x1f,0x07, +0xeb,0x0c,0xc4,0x31,0xac,0x7e,0xce,0xf1,0x6e,0x65,0x51,0x29, +0x98,0xfc,0x95,0xfc,0x4b,0xfa,0xf3,0xec,0xf3,0x1d,0xbc,0xe5, +0x29,0xd3,0x60,0xe3,0x33,0x94,0x6c,0xc2,0xea,0x4e,0x5c,0x0d, +0x33,0x0c,0xc4,0x69,0xec,0xe1,0xb0,0xc3,0x17,0x0f,0x5f,0xe0, +0x66,0x77,0x90,0xda,0xfb,0x57,0x61,0x3c,0x8d,0x07,0x2d,0x58, +0xf9,0xcf,0xd8,0x61,0xd9,0x10,0x2c,0x67,0x83,0x34,0x2d,0xf1, +0x33,0xdb,0x75,0xdc,0x4d,0xf5,0x3a,0x35,0x35,0x25,0x83,0x93, +0xde,0x26,0xca,0xf6,0x52,0xe9,0x60,0x07,0x73,0xa7,0xbe,0xf9, +0xaf,0x57,0xf6,0xcf,0x8c,0x86,0x54,0x84,0x5d,0x94,0xa8,0x8f, +0x4e,0x31,0x98,0x26,0xa9,0x98,0x1f,0x36,0x86,0xc3,0x34,0x28, +0xb4,0x19,0xc9,0xbe,0xec,0xc5,0x22,0x46,0xfe,0xe3,0x76,0x61, +0x36,0x19,0x14,0x57,0x0b,0x93,0xf7,0x8a,0x93,0xc5,0xb9,0x7a, +0x82,0x1c,0x6b,0x8a,0x9f,0x23,0x41,0x39,0x74,0xc6,0x89,0x95, +0xf4,0xd2,0xcf,0xd2,0x84,0x33,0x19,0x26,0x65,0x52,0x4f,0x89, +0x15,0x8d,0xaf,0x0b,0xc6,0xb1,0x4c,0x26,0x7e,0x09,0x4a,0x38, +0x09,0xc2,0x50,0xb9,0xac,0x87,0x47,0x0f,0xe0,0x50,0x19,0x18, +0x63,0x49,0xf2,0x31,0x46,0x98,0x4e,0x5c,0xb6,0xe9,0xaf,0xd1, +0xd6,0x6e,0x71,0xe2,0x6f,0xdd,0xbc,0xfd,0xb6,0xe6,0x31,0x27, +0xc6,0xa1,0x25,0xb1,0x78,0xa6,0xfd,0xc2,0xa0,0xd7,0xd2,0x9d, +0x1f,0xda,0x77,0x7d,0x53,0xdb,0x36,0xea,0xca,0xcb,0x64,0x33, +0x88,0x98,0x29,0xdb,0x2b,0x64,0xe2,0xdf,0x6c,0x5a,0x79,0x72, +0x79,0x62,0x31,0x27,0xac,0xea,0xfd,0x47,0xc1,0x48,0xd8,0xc2, +0x9c,0xf1,0x3d,0xe1,0x15,0xe8,0xce,0xe1,0x7e,0xea,0xd1,0xbf, +0x0b,0x37,0xe7,0xb3,0xe2,0x4d,0x5c,0xfe,0x9f,0xbd,0xd5,0xe4, +0x2f,0xe1,0xe6,0x6c,0x76,0xc4,0x0e,0x93,0x09,0xcc,0xa8,0xfa, +0xbb,0xe3,0x9b,0x2e,0xc7,0x3a,0x7e,0x9b,0xc5,0x02,0x3b,0x9c, +0xe6,0xc1,0x09,0xdd,0xcf,0xc9,0x9f,0x9e,0x30,0xc9,0xe2,0x37, +0x8b,0xaa,0x76,0x7e,0x71,0x0b,0x7e,0xd1,0xa1,0x5a,0x46,0xbf, +0xd0,0x41,0xf6,0x9c,0x78,0xa0,0xb1,0x21,0x2e,0x58,0x8d,0x5c, +0xb5,0xb4,0x28,0xb6,0xa0,0x36,0xbf,0x8d,0x13,0x4b,0xfa,0x65, +0xcb,0xd9,0xfc,0xbb,0x39,0xdf,0x26,0x7f,0x47,0xd9,0x01,0x8e, +0x23,0xf0,0x85,0x21,0x7e,0x21,0x3d,0x76,0x78,0xd5,0xcb,0x8a, +0xd3,0x30,0x88,0xc0,0x1d,0x4c,0xc6,0x04,0x16,0x77,0xf9,0x22, +0x31,0x56,0x55,0xae,0x37,0x2e,0xe9,0xcd,0xbd,0x99,0xf6,0x40, +0x11,0x7f,0xeb,0x19,0x06,0x63,0xe1,0x73,0x3c,0xce,0x46,0x57, +0x5f,0xae,0x89,0xa8,0xa3,0x39,0x16,0xd2,0x09,0x7a,0xe2,0x22, +0xf0,0x64,0x85,0xb7,0xf8,0x0d,0x99,0xc5,0x64,0x0e,0x64,0xdc, +0x4b,0xb8,0x61,0x92,0xcc,0x07,0xef,0x3c,0xa6,0x7e,0x74,0x2f, +0x0d,0x9a,0x46,0x30,0x1d,0x17,0xa3,0x92,0x11,0x35,0xe2,0xd9, +0x3e,0x6a,0xe0,0x45,0xbd,0xf4,0xf7,0x17,0xc3,0x4a,0x06,0x7d, +0x7e,0x21,0x67,0xbb,0x4f,0xdc,0x0a,0xba,0x6a,0x19,0xc4,0xa7, +0x58,0xa6,0xee,0x8d,0x33,0xe6,0x70,0x9b,0xb8,0x88,0xe0,0x74, +0xc8,0xa7,0xb1,0x50,0x5e,0x16,0x24,0x4b,0x20,0xd7,0xf5,0xf7, +0xe2,0x5e,0x33,0x41,0xa7,0x93,0x1d,0xc9,0x13,0xcf,0x11,0x4a, +0x25,0xcf,0x60,0x0f,0x73,0x39,0x2f,0x22,0x3f,0x22,0x8f,0xa3, +0xd9,0xd5,0x1f,0x5f,0x53,0x46,0x36,0x3f,0x6c,0xde,0xee,0x85, +0xca,0x57,0x6d,0x1b,0x6e,0x64,0xde,0xba,0x72,0x53,0x11,0x4e, +0x4a,0x5d,0x73,0x26,0xe1,0x21,0xea,0xa1,0x42,0x28,0xce,0xa7, +0xd9,0xff,0x68,0xdd,0x89,0x1c,0xf3,0x23,0x7c,0xea,0xc1,0x0c, +0xe7,0x44,0x1f,0x6e,0x1e,0x2e,0x24,0xa6,0xa0,0x8e,0x5f,0x0d, +0xc0,0x57,0xa0,0xdf,0x85,0xfa,0xdf,0x81,0x4b,0x27,0xce,0x66, +0xb3,0xca,0xd2,0x2b,0x53,0x2a,0x4c,0xd2,0xf9,0x53,0xae,0xc7, +0x5c,0xfd,0x6d,0x39,0x4c,0x32,0x03,0x93,0x75,0x0c,0x16,0x67, +0x10,0x54,0x46,0x33,0xea,0xe0,0x70,0x0d,0x7f,0x25,0x82,0x5c, +0xaf,0x28,0xf7,0x83,0xee,0x6a,0xfc,0xcb,0x08,0xfe,0xc2,0xb1, +0xe2,0x4a,0xc3,0x8f,0xd3,0xfb,0xc4,0x9d,0x8c,0xf4,0x1a,0xcd, +0x9a,0x74,0x89,0x63,0x1e,0xef,0xda,0x8e,0xbf,0xa1,0x2b,0xab, +0x19,0xae,0x77,0xc1,0x54,0xd9,0xd9,0xdd,0x66,0xbf,0xc5,0x81, +0x4c,0x03,0xbe,0xb1,0xa0,0xaa,0xa0,0xb4,0xe4,0x14,0x2a,0xf9, +0xac,0xda,0xbd,0xb0,0xd9,0x8a,0x87,0xb1,0x12,0xf5,0x19,0x5d, +0xd2,0xb0,0x80,0xd5,0xc4,0x03,0xe4,0xc8,0x9d,0x80,0x61,0xbf, +0x3e,0x5b,0x7f,0xbe,0xd0,0x28,0x57,0x27,0x4b,0x93,0x93,0xed, +0x84,0x29,0xe4,0xb9,0xd1,0x46,0x9c,0x63,0x0e,0xbf,0x76,0xb0, +0xe2,0x77,0xe8,0x44,0xc0,0x1e,0x2e,0x63,0x02,0xba,0x33,0xb8, +0xf2,0x10,0xce,0xd0,0x5f,0xaa,0xdc,0x68,0x5b,0x78,0x35,0xe7, +0x5a,0xda,0x3d,0x45,0xbc,0xd2,0xd1,0x05,0x5a,0x30,0x84,0xee, +0x6c,0x54,0x59,0x64,0x79,0x44,0x05,0x07,0x0b,0xdb,0x08,0x2e, +0x80,0x45,0x34,0xc1,0x0b,0x0e,0x78,0x8a,0x7a,0x3a,0x93,0xd5, +0x9a,0xd6,0x93,0xd2,0x6d,0x9e,0xce,0x9f,0x36,0x3c,0xaa,0xe3, +0x4f,0x4d,0xee,0x6a,0x0e,0x6b,0x70,0x2a,0x2e,0x30,0x83,0x05, +0x68,0xd1,0x07,0x16,0xb0,0xac,0x13,0x97,0xc1,0x54,0x58,0xcf, +0xe0,0x91,0x7f,0x91,0xe0,0xe6,0xe3,0xed,0x47,0x1a,0xad,0x8f, +0xf3,0x59,0xb6,0xa9,0xd6,0x89,0x76,0x52,0xd3,0xe4,0xe9,0x04, +0x5d,0xf0,0x0b,0x70,0xa1,0x99,0xc1,0x4a,0x16,0x4f,0x92,0xb2, +0x12,0xb3,0xe3,0x0b,0x74,0xaf,0xf0,0xc1,0xbe,0xc1,0x01,0x41, +0x01,0x1c,0xce,0xc6,0x77,0xc2,0x7c,0x78,0xc7,0x8c,0x3c,0xc6, +0x11,0x02,0xb3,0xe2,0x61,0x5e,0x06,0x7c,0x96,0x1e,0xd6,0xc6, +0xdb,0x9c,0x37,0x0b,0x31,0x0d,0xe1,0x60,0x1c,0x4c,0x6f,0xc3, +0xe9,0xbf,0xc1,0xe2,0x0e,0xf1,0x6b,0x73,0x50,0x5b,0x80,0xcb, +0x2c,0x61,0x19,0x0d,0x22,0xba,0x21,0xfb,0x42,0x0c,0xc2,0x38, +0xe1,0x12,0xac,0x25,0xaf,0xa1,0x62,0x29,0x8b,0x15,0xf4,0x3e, +0xbd,0x85,0x8a,0x45,0xec,0x1f,0x38,0x91,0xfc,0x33,0xd5,0x04, +0x3a,0x99,0xdd,0x6b,0x16,0xa9,0xe1,0x0c,0x9d,0x12,0x13,0xbe, +0x2f,0xbf,0xa7,0xac,0xbd,0x9a,0x43,0xf3,0x6b,0x75,0xc2,0x11, +0xa7,0x6b,0x50,0x22,0x26,0xb2,0xa5,0xa5,0x85,0x15,0x39,0x15, +0x9c,0x90,0xc9,0x50,0x3a,0x51,0x45,0x60,0xaa,0x70,0x04,0xa7, +0xd2,0x81,0x7e,0x1b,0x23,0x49,0xc5,0x4b,0xaf,0x95,0x36,0x32, +0xed,0x59,0xa3,0x15,0x20,0x7b,0x59,0xf1,0x05,0xcd,0x0c,0x10, +0x05,0xdd,0xe2,0x46,0xec,0xfe,0xdb,0x8b,0xc1,0xf3,0x2e,0xd4, +0x69,0xc6,0xe3,0x74,0xe5,0x26,0x9b,0x9f,0x61,0x7c,0x1b,0x70, +0x69,0xb0,0x56,0x11,0x6c,0x19,0xfc,0x2c,0x6c,0xd3,0x59,0x03, +0x65,0xeb,0x73,0xc7,0x4f,0x19,0x4e,0x5f,0xc6,0x24,0x19,0xc8, +0xbd,0x62,0xbe,0xad,0x2f,0x7d,0x9c,0xa8,0x92,0x70,0xeb,0xf2, +0x77,0xb0,0x51,0x09,0xe3,0x99,0xc8,0x92,0x88,0xd2,0x72,0x25, +0x90,0xc1,0x20,0x19,0x99,0x32,0x2c,0x9b,0xc2,0xe2,0x71,0x5f, +0x42,0xf3,0x7a,0x1b,0x48,0x42,0x55,0x79,0x42,0x01,0xa9,0x6f, +0x29,0xe9,0xc9,0xbc,0xcf,0xdd,0x6e,0xc3,0x5c,0x26,0x31,0x2f, +0x3e,0xef,0x4a,0x9e,0x15,0x05,0x39,0xeb,0x6d,0x35,0xf7,0xe8, +0x56,0x52,0x90,0x93,0x95,0x99,0x9d,0x96,0x9d,0x63,0x53,0xe2, +0x5c,0xe3,0x6e,0xe7,0x6e,0xe4,0xa7,0x19,0x90,0x67,0xc5,0x3f, +0x2e,0x1a,0x2e,0xbd,0x5a,0xdf,0xe5,0x74,0xc3,0xe3,0x91,0x77, +0x7e,0x2b,0xaf,0x51,0xa4,0x5f,0x62,0x59,0xc9,0x89,0x4e,0x52, +0x07,0x8a,0x10,0x50,0x44,0xab,0xf5,0x6c,0xa2,0x23,0x85,0x41, +0x2d,0xc9,0x12,0x0c,0x3a,0xbe,0x9d,0x2d,0x2c,0xcd,0xab,0x4d, +0x2b,0xb7,0xcb,0xe6,0x8f,0x79,0xfa,0x3b,0xfa,0xee,0x2f,0x3b, +0xca,0xaf,0x84,0x99,0xc6,0x38,0x73,0x0d,0x53,0x9b,0x7b,0xa0, +0xfe,0x70,0xf1,0xfe,0x72,0x45,0x47,0xff,0xe2,0xfd,0xf9,0xee, +0x39,0xee,0x8a,0x8b,0xb1,0xa7,0x1b,0x62,0x61,0x26,0x86,0x30, +0xc2,0x44,0x68,0x24,0x91,0x11,0x11,0x11,0x91,0xca,0xb0,0x93, +0x09,0x32,0xf6,0xb7,0x71,0x73,0xb1,0xaf,0xd9,0xdf,0x74,0xb4, +0x93,0xc3,0xce,0x45,0x24,0xd3,0x3b,0xcd,0x3d,0xd9,0xb5,0x8e, +0x4e,0x8b,0xba,0x63,0xe5,0x47,0x4b,0xa8,0x13,0x84,0x92,0xb3, +0xb6,0x81,0xe6,0x47,0x1c,0x1b,0x8f,0xf3,0xd9,0x8d,0x19,0x7d, +0x71,0x4d,0x5c,0xe0,0xc8,0x36,0xd2,0x25,0x34,0x98,0x0e,0x0b, +0x5b,0x46,0xd6,0x8a,0x5b,0x58,0x8a,0x44,0xee,0x12,0xb1,0x81, +0x1e,0x62,0xc4,0x86,0x39,0x84,0xfe,0x44,0x6c,0x60,0x2c,0xc7, +0x0b,0x0d,0x86,0x74,0xfb,0xef,0x62,0x4b,0x4d,0xcc,0xbc,0x4b, +0x3f,0x2e,0x99,0xc0,0x25,0x9d,0xc1,0x61,0xc8,0x94,0x3e,0x46, +0xcb,0x49,0xc1,0x70,0x24,0x81,0x98,0xa6,0x1b,0xe6,0x99,0xd7, +0x77,0x95,0xb7,0xd6,0xd4,0x37,0x3a,0x95,0xf3,0x8e,0x0e,0xd6, +0xae,0x66,0xfb,0x3d,0xab,0x7c,0x5b,0x02,0x07,0x39,0xf8,0xb5, +0x0b,0x3f,0x32,0x21,0x85,0x61,0x25,0xe1,0xe5,0x1c,0x6c,0x62, +0x7c,0x5c,0x1a,0x82,0x1a,0x8e,0x96,0x1c,0x53,0x2c,0xae,0xf3, +0x49,0x77,0xcc,0x70,0x4a,0x51,0x84,0xf9,0xe0,0x32,0x12,0x8e, +0x2e,0xc2,0x54,0x26,0xc2,0x2b,0xca,0x3b,0xda,0x97,0x13,0xbf, +0x58,0xce,0xe0,0xd8,0x83,0x86,0xba,0x1b,0x95,0x5b,0x5d,0x7a, +0xef,0x17,0xdd,0xbd,0xf2,0x54,0x31,0x32,0x21,0x2a,0x22,0x2e, +0x14,0xac,0xf1,0x73,0xbe,0xbc,0x09,0x4d,0x60,0xc2,0xc9,0x2b, +0x94,0x05,0x1e,0x53,0x3c,0x7b,0x5a,0x2e,0x84,0x89,0x48,0x8a, +0x48,0x69,0x56,0x82,0xe7,0x4c,0x86,0x76,0x89,0x61,0x9d,0xcd, +0x72,0x1b,0x1c,0xe7,0x85,0x8a,0x87,0x73,0x68,0xa2,0x98,0x96, +0x03,0x93,0x6b,0xfe,0xe8,0x6a,0xb7,0x1b,0xf2,0xba,0x77,0xa8, +0xf1,0x64,0x65,0x5c,0x4c,0x7b,0x32,0x70,0xbc,0x45,0x8e,0x9c, +0x58,0x21,0xec,0x26,0x38,0x06,0xd5,0x61,0x0c,0x0b,0xc7,0x14, +0x60,0x27,0xdd,0xdf,0xc9,0x48,0x7b,0x63,0x60,0x2f,0x8e,0x19, +0xd5,0x45,0xb7,0x20,0xd9,0x9e,0x59,0x1e,0x59,0x2e,0x9d,0x59, +0xfc,0xf1,0x92,0xe3,0x85,0x81,0x85,0x1c,0x6c,0x6e,0xff,0xa4, +0x8b,0x9e,0x3d,0xaa,0x8b,0xee,0xb5,0xd3,0x62,0xb7,0xa6,0x71, +0x83,0x33,0x5f,0x55,0x52,0x51,0x51,0x58,0xcd,0x09,0x76,0xed, +0x92,0x2e,0x7a,0xf6,0xa8,0x2e,0x7a,0xc0,0x2e,0x57,0x6d,0x53, +0xa3,0x16,0x2f,0xbe,0xa0,0x28,0xa7,0x2c,0xb3,0x9c,0xfb,0x99, +0xc9,0xf1,0xcc,0xa4,0x67,0xeb,0xf8,0xef,0xb3,0x19,0xb4,0x33, +0xe2,0x52,0xec,0x22,0xa7,0x62,0xce,0x5e,0x38,0x73,0x26,0xf8, +0x34,0x7f,0xee,0x72,0x46,0x41,0x5c,0x6e,0x64,0x9d,0x22,0x14, +0xa0,0x2b,0x35,0xf2,0x88,0x0b,0xa6,0x0e,0x83,0x2b,0x24,0x30, +0xa1,0xdb,0xdc,0xbc,0x71,0xad,0x79,0x9e,0x39,0xff,0xaa,0xf8, +0x5a,0x51,0x79,0x45,0xfc,0x95,0xe8,0xf0,0xf8,0x50,0xd8,0xbf, +0x80,0x2f,0x69,0x95,0x5b,0x22,0x8e,0x27,0xee,0xc1,0x31,0xe5, +0x2a,0x4f,0x59,0x98,0x90,0x01,0x13,0x4b,0x7e,0xae,0xdb,0xdf, +0xca,0xaf,0x71,0x5e,0x14,0x80,0x9f,0x1d,0xe5,0x60,0x92,0x0e, +0xa6,0xb2,0x06,0xb9,0x52,0x4b,0xa1,0x4b,0x14,0x8a,0xa7,0xd5, +0x4b,0x6d,0xd3,0xd3,0xe4,0xe8,0x54,0x1e,0x59,0x46,0x09,0x23, +0x24,0x74,0x61,0xc2,0x8f,0x3a,0x58,0xcf,0xa8,0x9e,0xbe,0x62, +0x08,0xab,0x32,0x60,0x6e,0x0e,0xf0,0x45,0x8a,0x67,0x3b,0xb6, +0x06,0xad,0xfc,0xbf,0x18,0x7b,0x0f,0xa8,0x2a,0xae,0xb7,0x5d, +0x5c,0x13,0x99,0x19,0x13,0xc5,0xb4,0x6d,0x06,0x4c,0x0e,0x56, +0xec,0x5d,0x14,0xb1,0x60,0x6f,0xd4,0x43,0xef,0x55,0x44,0xba, +0xa0,0xd2,0xa5,0xd9,0x0d,0x16,0x90,0xde,0x7b,0xaf,0xd2,0x7b, +0x07,0x51,0x51,0xec,0x5d,0x63,0x8c,0x89,0x89,0xc6,0x14,0x93, +0xbc,0x73,0xf2,0x0e,0xb9,0xff,0x3d,0x98,0xfc,0xbe,0xef,0xde, +0xf5,0xfd,0xd7,0xbd,0xeb,0xac,0x35,0xe7,0x78,0x38,0x9e,0xd9, +0x67,0xcf,0x5b,0x9e,0x67,0xcf,0xbb,0x9f,0x37,0x74,0x61,0x98, +0x8a,0x32,0x78,0x50,0x16,0xbd,0x67,0x34,0x4d,0xbd,0x6b,0x4f, +0x56,0x58,0x56,0xdc,0x54,0xd4,0xcd,0x89,0x8d,0x7d,0x8a,0x75, +0x6c,0xee,0xd5,0xac,0x3b,0xc9,0x8f,0xb8,0xaa,0x55,0x44,0xa1, +0xda,0x3d,0xa2,0xca,0x08,0x7f,0x20,0xcd,0xa2,0xcf,0x71,0x1b, +0x83,0xb6,0x47,0x50,0x6d,0x03,0xce,0x90,0x75,0x3a,0xde,0x01, +0x59,0x32,0x18,0x9d,0x06,0x4d,0x15,0x21,0x9f,0xd1,0xeb,0x20, +0xa2,0xeb,0x9f,0x82,0x2b,0x23,0x7e,0x31,0xb2,0x99,0x80,0xef, +0x2f,0x68,0xd9,0x09,0x96,0xef,0x8e,0x7f,0xe0,0xe2,0xb5,0x6c, +0x82,0x85,0xd2,0x10,0x53,0x9b,0x96,0x5a,0xab,0x26,0x30,0x62, +0x96,0xa8,0xcf,0xc2,0x62,0x0a,0x3d,0xd5,0x61,0xe2,0x2f,0x4c, +0xe7,0xe4,0x5f,0x70,0xa2,0x3a,0x03,0x8b,0x26,0xc3,0xc4,0x3f, +0x70,0x22,0xbd,0x50,0x5e,0x30,0x4c,0x60,0xf9,0xaf,0xad,0x6f, +0xce,0xc0,0x26,0x0e,0x96,0x61,0x0c,0x4e,0x63,0x92,0x4d,0x25, +0xa9,0xc5,0xba,0x8c,0x34,0x0a,0x7f,0xce,0x40,0x5b,0x8f,0xb8, +0xe6,0x3b,0xdd,0x25,0xe2,0x5c,0x63,0xb8,0xc4,0x9e,0xc4,0x85, +0x6e,0xeb,0x71,0xfe,0x3c,0xae,0x08,0xca,0x88,0x9b,0x8e,0xad, +0xf1,0x6a,0xf3,0x1a,0x7b,0xfe,0x69,0x4f,0xe7,0xa5,0xb2,0x21, +0x4e,0x70,0x3a,0x4c,0xae,0x98,0x5c,0xd9,0xd5,0xb5,0xa5,0xa9, +0x8a,0x37,0xb9,0xb3,0xe5,0xaa,0x7e,0x1b,0x07,0x26,0x23,0x33, +0x08,0x7e,0x99,0x85,0x13,0x0a,0x67,0xd6,0xbc,0x6c,0xbf,0x79, +0xb1,0xe5,0x3a,0xd7,0x24,0xaa,0xb2,0x69,0x19,0x29,0x19,0x49, +0x99,0x26,0xb9,0xfc,0xe6,0xf9,0xb3,0xb5,0x70,0xb1,0x0e,0x65, +0x99,0x57,0x0b,0x07,0xca,0xba,0xaa,0x5a,0x6c,0x3b,0x77,0x0f, +0x78,0x4c,0x77,0xc2,0xcf,0x3d,0x51,0x23,0x58,0xea,0xef,0xbd, +0x29,0x03,0x16,0x54,0xc3,0x47,0xdd,0x30,0xde,0x02,0x64,0x7b, +0x41,0x63,0x1f,0x27,0xbe,0x82,0x2e,0x12,0x7f,0x3e,0x2e,0x2e, +0xfe,0x3c,0x07,0xc8,0x58,0x9a,0xee,0xb4,0x58,0xee,0xb8,0xb5, +0x4c,0xaf,0xd6,0xbc,0x85,0x93,0x10,0xd0,0x55,0x82,0xdd,0x90, +0xb6,0x03,0xd3,0xf0,0x01,0x44,0xef,0xc4,0x14,0x06,0xf7,0x1f, +0x45,0x7b,0x64,0x50,0x53,0xd6,0xeb,0x38,0xfc,0x4b,0x29,0xb0, +0x29,0x30,0x49,0x45,0xb0,0xc1,0x17,0xd7,0x84,0x19,0x62,0x0a, +0x73,0x6e,0x20,0xfa,0x62,0xf4,0x25,0x4e,0xa1,0x43,0x59,0x4b, +0x8e,0x62,0xf7,0xbf,0x5d,0xf9,0xb2,0x25,0x0d,0xfe,0x82,0x40, +0xa9,0x2b,0x5f,0xdb,0xbf,0x5d,0xf9,0xb2,0x24,0x45,0xff,0x2d, +0x16,0xbb,0xfe,0xd3,0x95,0xaf,0xa8,0x8a,0x13,0x6c,0xdb,0x48, +0x7c,0x56,0x5c,0x76,0x6c,0x96,0xd4,0x5b,0x6f,0xe7,0x9e,0x5d, +0xe6,0x26,0x4d,0xee,0x7c,0x7e,0x51,0x4e,0x49,0x66,0x19,0xb5, +0xdc,0x6c,0xf7,0x0c,0xb7,0xac,0x51,0x45,0xff,0xe2,0xe0,0xd1, +0x1e,0x7f,0x86,0x6d,0xcc,0x6e,0x74,0x27,0x5d,0x23,0xc3,0xa6, +0xac,0x22,0xdb,0x94,0x8c,0x78,0xe3,0x52,0x06,0xcd,0x5d,0x16, +0x19,0xaf,0x96,0xb5,0x39,0x0c,0xfd,0x54,0x01,0xef,0x9f,0x81, +0xad,0x2a,0x8a,0x65,0x8c,0x01,0xbd,0xd6,0x7f,0x3e,0x14,0xfe, +0x64,0xc4,0x64,0x31,0x8b,0x5e,0x27,0x98,0x8e,0xd3,0xbb,0x61, +0x3a,0x65,0xf3,0xa3,0x4f,0x0b,0xe7,0xe0,0x38,0x36,0xd1,0x5a, +0xe9,0x35,0xd3,0x90,0x96,0xd2,0xa0,0x06,0x69,0x23,0x0b,0xf1, +0x39,0x0b,0x36,0xe0,0x48,0x70,0xfa,0x63,0x98,0xce,0x74,0x4f, +0x86,0x99,0xab,0x71,0x26,0x03,0xd6,0x93,0x1f,0xc3,0xc2,0xd5, +0xf4,0x7a,0xff,0xf8,0xbf,0x77,0x2c,0xde,0x7f,0xdd,0xb7,0xdf, +0xe6,0xdf,0x8e,0xc5,0x36,0x47,0x2d,0x8f,0x59,0x1e,0x1f,0x7c, +0xf2,0x3f,0x74,0x2c,0x3e,0x98,0x53,0x3d,0x58,0x71,0xbd,0xf0, +0xaa,0x79,0x2e,0x7f,0x40,0xc7,0x53,0xc7,0xdd,0xe4,0x50,0xb2, +0xd4,0xb1,0xd8,0xed,0x5d,0xc7,0xe2,0xa6,0xff,0x74,0x2c,0xf6, +0xfe,0xb7,0x63,0x71,0xf7,0xd9,0xce,0xb3,0xff,0x76,0x2c,0xe6, +0x85,0x39,0x44,0x18,0xee,0x12,0x87,0x19,0xa1,0x4a,0xb2,0xee, +0x28,0xdc,0xca,0xa0,0x59,0x04,0x2e,0xdc,0x86,0x5f,0xca,0x9a, +0xec,0x86,0xa5,0x45,0x5d,0xfb,0xd3,0xa0,0xa1,0x22,0xec,0x64, +0xe4,0xed,0x44,0x9c,0x04,0x63,0x84,0x49,0x0c,0xde,0x1e,0xd9, +0x42,0xc0,0xef,0x21,0x5a,0xb5,0x82,0x15,0x3d,0xb6,0x80,0xd5, +0xd7,0xb8,0x74,0x27,0x9b,0x60,0xa9,0xd4,0xc9,0x5c,0x48,0x49, +0xad,0x51,0x13,0x58,0xd1,0x50,0x32,0xef,0xc9,0x90,0x43,0xd6, +0xc0,0xa4,0x87,0x4c,0xeb,0xe4,0x87,0x38,0x69,0x0d,0x03,0x9f, +0x4d,0x86,0x49,0x5f,0xe3,0x24,0x56,0xfc,0xae,0x9f,0x24,0x99, +0x9c,0xdf,0x75,0x4e,0xbf,0x2d,0x8d,0x3f,0xd6,0x17,0x7e,0x2d, +0xa2,0x43,0xda,0x73,0xfc,0x3f,0xb4,0x33,0x86,0x4b,0xc2,0x5f, +0xc4,0xe0,0xe1,0xb6,0x3b,0x86,0x1d,0xb6,0xbb,0xf9,0x01,0xb3, +0xab,0xda,0x03,0xeb,0x68,0x12,0x17,0xf7,0x13,0xa0,0xdf,0xfc, +0x18,0xb6,0x47,0xc3,0x13,0x0e,0x22,0x19,0xb4,0x88,0xc4,0xb5, +0x01,0xb3,0x65,0x9b,0x0e,0xed,0x3f,0xb8,0x5e,0xba,0x6b,0x94, +0x22,0x57,0x82,0x4f,0x98,0x5f,0x6a,0x8b,0xdf,0x66,0xaa,0xe5, +0x01,0x39,0x0f,0x2b,0xe1,0x9c,0xaa,0x78,0xcb,0x00,0x1c,0x99, +0x93,0x78,0x69,0x0b,0x2e,0xc6,0x65,0xa8,0xc4,0xd1,0x04,0x34, +0x95,0x20,0x59,0x3a,0x20,0x75,0x4e,0xa8,0x41,0x4b,0x7d,0x4a, +0xef,0xf7,0xb3,0x0b,0x5c,0x4c,0x66,0xda,0xcb,0x72,0x0c,0x7e, +0xa8,0x6d,0xef,0x3b,0x73,0xe7,0xbf,0x75,0x4e,0x08,0x96,0x7a, +0x90,0xfe,0xcf,0x63,0xba,0x2f,0x1e,0x25,0xd7,0xff,0x28,0x80, +0xe9,0x67,0xc0,0x9e,0x13,0x26,0x33,0xfe,0x8b,0xad,0xd6,0xe8, +0xe8,0xe8,0x5e,0xb4,0xbc,0xe9,0xf9,0xd0,0x74,0x3f,0x5f,0xae, +0xd1,0xb5,0x76,0x68,0xe7,0x76,0xe3,0xf5,0x8e,0xda,0xfb,0x0b, +0xe5,0xfc,0xa3,0x82,0xa7,0xcd,0xb7,0x2e,0x5f,0x33,0x7c,0x68, +0xf3,0xd4,0xa3,0xa0,0x8f,0x5f,0x57,0xb4,0xa9,0x4e,0xb7,0xe3, +0xd6,0xdd,0xbe,0xd7,0x79,0xc0,0x52,0x37,0xb4,0x82,0x05,0x42, +0x4c,0x1f,0xc5,0xdf,0xfe,0x2c,0xee,0xdd,0x8f,0x32,0xdd,0x05, +0x32,0x8a,0x93,0x38,0x82,0x9f,0x2f,0xed,0x7b,0xd7,0xe3,0x41, +0xdf,0x10,0x26,0x49,0x23,0xf5,0x30,0x9b,0x23,0xf5,0x78,0xf8, +0xb6,0xae,0xb1,0xe7,0xf4,0x3f,0x3d,0x1e,0x36,0xc3,0x8a,0x29, +0xc2,0xf1,0x77,0x23,0xad,0x10,0xfe,0x20,0x56,0xf7,0xf4,0x1f, +0x98,0xf6,0x58,0xb9,0xf2,0x3d,0xc6,0x7d,0x6b,0x5a,0xb4,0xb9, +0xab,0x70,0x80,0x98,0x29,0xbe,0xec,0x64,0xc5,0x37,0xa8,0x44, +0xa1,0x25,0x8b,0xae,0x01,0x38,0xc9,0x4a,0x53,0xd6,0x6c,0xd5, +0x0f,0xe3,0xd2,0x61,0xce,0x19,0xe9,0x8a,0xa7,0x80,0x0e,0x23, +0xa6,0xa0,0x0a,0x79,0x22,0xd8,0x69,0xb2,0xe2,0x12,0xb1,0xe6, +0xdd,0xd9,0x47,0x7b,0xb5,0xea,0x18,0xc0,0x04,0x7a,0xf6,0x85, +0x9e,0x66,0xf3,0xa4,0xb3,0x7f,0x53,0xd7,0xd0,0xfd,0xcf,0xd9, +0x1f,0x8d,0xf6,0x6a,0x3d,0xc5,0xc4,0x5f,0x54,0xc2,0x39,0x7d, +0xe4,0x12,0x53,0x9d,0x94,0x52,0xa9,0x06,0x77,0xc5,0xb3,0xe2, +0x47,0x5d,0xa0,0xf3,0x0a,0xb5,0x3a,0x40,0xeb,0xdd,0xf1,0x17, +0x24,0xdb,0x59,0x7c,0x4c,0xe3,0xd5,0xab,0xe9,0xf3,0x19,0x98, +0xf3,0xfb,0x7f,0x9e,0x7f,0x99,0xae,0x4e,0x1d,0xfe,0x20,0x0d, +0xcf,0xce,0x68,0xaa,0x87,0x33,0xe7,0x8d,0x86,0xe7,0x82,0xe2, +0xa2,0x0b,0x05,0xcd,0x9c,0x58,0xd8,0xa7,0xf8,0x82,0x2d,0xbd, +0x5d,0xf0,0x4d,0xfa,0x0f,0x9c,0x42,0x6b,0xe4,0x1e,0xc1,0x95, +0x09,0xa8,0x9c,0x3b,0xb3,0xa5,0xaa,0x31,0xa7,0x27,0xf1,0x06, +0x07,0x99,0x82,0x0c,0x13,0x5e,0x43,0x67,0xdf,0x88,0xba,0x1c, +0x5a,0xe6,0x61,0xbc,0x28,0x83,0x68,0x26,0xd2,0x20,0xc0,0xd6, +0x6d,0x8f,0x55,0x91,0x5d,0xa5,0x83,0x54,0x9f,0x5b,0x6b,0xdf, +0xe0,0xda,0xea,0x69,0xb6,0x77,0x93,0xaf,0xba,0x5f,0x8e,0x31, +0x0f,0x5c,0xe1,0xd7,0x65,0x03,0x2d,0x30,0x5e,0x0e,0x32,0x6f, +0xd0,0x8a,0xe2,0x10,0x85,0x32,0x82,0x96,0xc0,0x82,0x25,0x03, +0x29,0xc8,0x12,0xb4,0xa6,0xaf,0xad,0x19,0xd1,0x1e,0xd7,0x10, +0xb0,0x74,0x64,0x7c,0x4e,0xf9,0x9d,0xdc,0x4f,0x71,0x39,0x03, +0xf1,0x93,0x4f,0xe7,0x46,0xe7,0x17,0xa8,0xd6,0xd1,0x54,0xfe, +0x21,0xe5,0xa8,0xfc,0x69,0x22,0x5a,0x31,0xbe,0x91,0x71,0xb9, +0x6a,0x90,0x08,0xca,0xd0,0x80,0x4b,0xd9,0x92,0xda,0x92,0xce, +0xcc,0x3a,0xae,0x16,0x1d,0xd8,0x84,0xbc,0xf8,0xdc,0xd8,0x1c, +0xc3,0x44,0xde,0x67,0xc5,0x66,0x9c,0xb8,0x74,0x17,0x35,0x87, +0x84,0xb8,0xc4,0xb8,0x84,0x78,0x0e,0x4f,0xc3,0x7b,0xec,0x51, +0x9c,0x66,0xbb,0x00,0x27,0xad,0xad,0x33,0xa3,0x99,0xfe,0xc7, +0x6e,0x18,0x17,0x0b,0x1a,0xdc,0x33,0x8a,0x4b,0x76,0x16,0xf8, +0xdf,0x94,0x09,0x06,0x4c,0x47,0x2a,0x25,0xdb,0xaf,0x58,0x83, +0x54,0x25,0x71,0xae,0x05,0x81,0x99,0xc0,0x5d,0x87,0x15,0x49, +0x10,0xc3,0xc1,0x02,0x07,0x06,0x3f,0x3f,0x8a,0x1f,0x1f,0xd2, +0x92,0x59,0x46,0x86,0x85,0x9b,0x4f,0x59,0xc5,0x24,0xc9,0x95, +0xbe,0x63,0x6e,0x96,0xe4,0x51,0xb8,0x98,0xf2,0x3c,0x06,0xa6, +0x01,0xaf,0xfa,0x12,0x5d,0x4b,0x59,0x58,0x60,0x80,0x8b,0x58, +0x2f,0x54,0x31,0x86,0xcf,0xd9,0x70,0x0c,0xd3,0xa5,0x4c,0x7a, +0xca,0x74,0x6e,0x97,0xf0,0x3d,0x09,0xf1,0x74,0x37,0xf1,0xd8, +0x2d,0xdd,0x1c,0x2c,0xaf,0x2e,0xa9,0xcf,0x6b,0xe0,0xba,0x71, +0x2b,0x41,0x03,0xfc,0x0c,0x0c,0x58,0xd0,0x95,0xda,0x5f,0x1a, +0x80,0x0c,0x0d,0x58,0x65,0x61,0xf5,0x8f,0xc4,0xbe,0xde,0xe1, +0x82,0x63,0x45,0x27,0x28,0x15,0xc3,0xe7,0x49,0xb0,0x82,0xab, +0xc7,0x35,0x6c,0xd2,0xe5,0x84,0x8b,0xe7,0xbb,0xf5,0x62,0xf8, +0x23,0xa6,0x11,0x3a,0x87,0xb6,0x73,0xc8,0x19,0xbe,0x65,0x0e, +0xcc,0xf0,0x99,0xe6,0xa9,0xd5,0xb1,0xa7,0x6d,0x4f,0x9b,0xb3, +0xbd,0xb6,0xd1,0xd6,0xf5,0xbb,0x2e,0x98,0xf3,0xf7,0x87,0x07, +0x6e,0x35,0x3f,0xae,0x71,0xbb,0xe0,0x5a,0xeb,0xc4,0x09,0x09, +0x76,0x64,0x35,0xe3,0x17,0x15,0x97,0x2f,0x65,0x37,0x35,0xa8, +0xc7,0xe5,0x6c,0x45,0x5d,0x71,0x5b,0x76,0x0b,0xd7,0x88,0xe1, +0x6c,0x42,0x76,0x3c,0x85,0x20,0x46,0x49,0xbc,0xdb,0x7c,0xdd, +0x25,0x5a,0xdb,0x2a,0xed,0xf8,0xc4,0x78,0x25,0x4c,0x03,0x86, +0xce,0xd8,0x9c,0x1d,0x0b,0x70,0xd1,0xce,0x42,0x53,0x9a,0x93, +0xee,0xdd,0x83,0x71,0x31,0x34,0x65,0xbe,0xc2,0x04,0xc6,0x24, +0x6b,0x5f,0xaf,0xec,0x39,0xd3,0x98,0x2c,0xc5,0x60,0x19,0x6b, +0x91,0x4e,0xd1,0x81,0x50,0x47,0xfc,0x1d,0x3c,0x6c,0xf6,0x38, +0x73,0xe8,0xcc,0x54,0x55,0x57,0x34,0x14,0xb5,0x70,0xa2,0x5c, +0x1c,0x4f,0xf2,0x1f,0xe7,0x8e,0x36,0x94,0x98,0xf0,0x4f,0x43, +0x09,0xeb,0x99,0xae,0xc5,0xae,0xf9,0x7b,0xf3,0x38,0x21,0x09, +0x8c,0x24,0x75,0xd3,0x19,0xd2,0x56,0x34,0x2b,0xd4,0x91,0x3a, +0x54,0x2f,0x46,0x1d,0x56,0xf9,0xb5,0x40,0x43,0x7f,0xf2,0x79, +0x88,0x4c,0x01,0xd7,0xfc,0x5c,0xdf,0x5c,0xdf,0x1c,0x9f,0x8e, +0x6a,0x7e,0xfd,0xb3,0xa5,0xcf,0x16,0x3f,0xb6,0x71,0xe3,0x9b, +0x1d,0x1b,0x1d,0x1a,0xec,0x71,0xda,0x21,0x5c,0x18,0x8e,0x6b, +0x8e,0x74,0xde,0x6a,0x7b,0x56,0xff,0x48,0x3f,0x83,0xb7,0x59, +0x66,0xba,0x62,0x97,0x06,0x7e,0x7a,0x82,0x57,0x8c,0xc1,0x48, +0x02,0xea,0x3a,0xa8,0x8e,0x45,0x59,0x2c,0x7c,0xa4,0x8b,0x1f, +0xb1,0xfe,0x78,0x5e,0x0e,0xe7,0xd8,0x08,0x9c,0x64,0xb3,0x18, +0xd7,0x2f,0xac,0xa6,0x78,0x4f,0xe7,0xf7,0xbe,0x9f,0x13,0x61, +0xb9,0xd4,0xa9,0x0f,0x2f,0x03,0x42,0x54,0x1f,0xa3,0x2c,0x9c, +0x57,0x7c,0x4f,0x0e,0xa0,0xbe,0x0d,0x2e,0xdb,0x8e,0xe3,0xab, +0xac,0xf9,0xd4,0xfc,0xf4,0x8a,0xf4,0x3a,0x4e,0xcc,0xea,0x52, +0xac,0x66,0xb3,0x6e,0xa5,0x3d,0x8a,0x7f,0x26,0xb5,0x4f,0x01, +0x02,0xc7,0x69,0xc0,0x8d,0x7e,0xa6,0xf4,0x0c,0xe6,0x5e,0xea, +0xd4,0x7d,0x60,0xb2,0x16,0xc7,0x3f,0x30,0x5d,0xab,0x6f,0x76, +0x11,0xe7,0x3e,0xd1,0x40,0x65,0x3c,0x0e,0xca,0x4b,0x70,0xae, +0x19,0xcc,0x45,0x8d,0x1e,0xd0,0x18,0x25,0x60,0xdf,0x31,0x8a, +0x3d,0xf8,0x15,0x59,0x94,0xbd,0xbe,0x46,0xbf,0x3d,0xb7,0x35, +0xb9,0x2f,0xe6,0x26,0x07,0x2b,0x04,0x4a,0xfa,0xfe,0x80,0x1d, +0xdd,0x22,0x6f,0x02,0x8b,0xa7,0xe1,0x02,0x91,0xfa,0x2a,0x73, +0xdc,0x38,0xc2,0x36,0x64,0xb7,0x4f,0xb1,0x5f,0x59,0x40,0x85, +0x93,0x17,0x9f,0x6b,0x5f,0xb4,0xbb,0xcc,0xcd,0xd3,0xce,0x7e, +0xaf,0x81,0x7b,0xb1,0x2d,0x3f,0x58,0xd9,0x72,0xa1,0xbc,0x65, +0x58,0xfe,0xd8,0xe9,0x3b,0x7f,0x6e,0x64,0x85,0x22,0x93,0xcc, +0xc3,0xf1,0xaf,0x59,0xe1,0x1a,0xfa,0x90,0x39,0x6f,0xdf,0x30, +0xb0,0x78,0x06,0x99,0xf5,0xf6,0x57,0x06,0x63,0x71,0x21,0x79, +0xb3,0x81,0x79,0x27,0x43,0x32,0x97,0x81,0xf9,0x93,0xa3,0x47, +0xb5,0x4a,0xee,0xfc,0x8a,0x4a,0xec,0x88,0xee,0x8f,0x04,0xa7, +0x6d,0x85,0x69,0x2c,0x8d,0x79,0xd3,0x08,0x4c,0x93,0x2a,0x94, +0x94,0xe1,0x18,0x8d,0x0f,0x76,0xa3,0x5b,0x2d,0xa7,0x8f,0x6e, +0xb5,0x2c,0x2b,0x2b,0xab,0x2f,0x69,0xe7,0xc4,0x0b,0x03,0x8a, +0x99,0x6c,0xe9,0xcd,0xc2,0x27,0x19,0x2f,0x38,0xc5,0x0c,0x31, +0x9d,0xf4,0xe2,0x20,0x7c,0x08,0x91,0x70,0x53,0x2c,0xc0,0x9b, +0x10,0x42,0x69,0x56,0x87,0x11,0x14,0xb1,0xd6,0x33,0x16,0x2c, +0xc3,0x85,0x9a,0x25,0xd4,0x6a,0x16,0x3c,0xfe,0xed,0xe7,0x7c, +0x18,0xcb,0xc5,0xe2,0xab,0x41,0x78,0x15,0xcb,0xe4,0x4c,0x85, +0x71,0xf3,0x60,0xae,0x46,0x69,0x37,0x8f,0xea,0x4f,0x66,0x7e, +0x63,0xf9,0x96,0x83,0xb9,0xc2,0x2e,0x82,0x4e,0xe2,0x1c,0x70, +0xa2,0xe7,0x0e,0xa3,0x0c,0xc2,0x4f,0x47,0xae,0x89,0xe3,0x37, +0x95,0xd2,0x2b,0xc4,0xdc,0xb9,0x72,0x37,0xf3,0x85,0xa4,0x4b, +0xb4,0xa6,0x6f,0xc7,0xcb,0xed,0x65,0x5d,0xfc,0xfc,0x41,0xb3, +0x5b,0x07,0x07,0xe8,0xf9,0x71,0x2c,0xd9,0xc4,0x94,0x56,0x51, +0xd6,0x93,0xeb,0x9c,0xa5,0xe2,0xee,0x52,0x73,0xb0,0x7c,0x7f, +0xc9,0x7e,0x15,0x9c,0x0e,0x63,0x8d,0x70,0x2c,0x3a,0x19,0x83, +0xd3,0x02,0xd4,0x19,0x51,0xe9,0x81,0xaf,0x80,0x60,0x44,0x37, +0x44,0xc0,0x17,0xa8,0xbb,0x44,0xc2,0x7a,0xd7,0x99,0x06,0x69, +0x5d,0x4d,0xb8,0x8e,0x26,0x3f,0x82,0x0f,0x2b,0x56,0xe2,0x3a, +0xd2,0x49,0xc9,0xef,0x18,0x23,0x0a,0xeb,0x3f,0x36,0x83,0x8f, +0xe9,0x93,0xae,0xa9,0x20,0xeb,0xa2,0x94,0x79,0x0c,0x2b,0xf0, +0x73,0xa4,0x2e,0x65,0x13,0x28,0x42,0xec,0x7e,0xd7,0x24,0xf0, +0x0b,0xa9,0x49,0xe0,0x2d,0x73,0x42,0xbf,0x57,0x19,0x09,0x03, +0xba,0xa0,0x4c,0xe8,0x9b,0xca,0xf8,0x05,0x23,0x3e,0xa0,0x00, +0xbd,0x1f,0xb2,0x21,0x0f,0x1f,0xe0,0x53,0x16,0x72,0x80,0x66, +0x02,0x37,0x58,0x0d,0x6e,0x8c,0xf2,0x5f,0x86,0x0a,0x37,0xa2, +0xc5,0x94,0xd6,0xb8,0xe6,0x3b,0x67,0x3b,0x64,0xaa,0xb8,0x3b, +0x35,0xf8,0x5f,0x38,0x58,0x41,0xc7,0xac,0x09,0x63,0xe5,0x74, +0xcc,0x7e,0xc6,0xe0,0xb7,0x00,0x1d,0x47,0x54,0x7a,0xe9,0x98, +0xe7,0x62,0x78,0x2f,0x84,0x53,0x80,0xba,0x6b,0x54,0xdd,0xf5, +0x21,0xd3,0x94,0x99,0xd1,0xa4,0x26,0x5c,0x45,0xaf,0x1f,0xe1, +0x2b,0x76,0xe4,0x08,0xcc,0x23,0x07,0xb4,0xed,0xde,0xa9,0xfb, +0xbe,0xba,0xd9,0xfb,0x2c,0x59,0x9a,0xa6,0x24,0x8d,0x8e,0xed, +0x2f,0xd6,0x95,0x74,0xf2,0xab,0xaf,0x5b,0xde,0xf4,0xbf,0xc1, +0x3d,0xc2,0x0e,0xd2,0x85,0x51,0xa6,0xcf,0x71,0x3c,0xce,0x37, +0x86,0xf9,0x38,0xc0,0x9a,0x46,0x9a,0x44,0x99,0x8d,0xaa,0xfa, +0x7e,0x90,0x06,0x7c,0xe1,0xa8,0xaa,0xaf,0x73,0x84,0x7d,0xa4, +0x5d,0x24,0x07,0xad,0x30,0xa5,0x07,0xa7,0xc0,0x78,0x56,0x50, +0x91,0xb6,0x29,0xce,0xa5,0x57,0x77,0x2e,0xd3,0xfb,0x6e,0x9b, +0xe2,0x32,0x69,0x9b,0xe2,0x18,0xfa,0xa3,0xe7,0xe2,0x04,0xa4, +0x96,0xe4,0x04,0x13,0x24,0x91,0xde,0x09,0xb8,0x8c,0x11,0xc7, +0x4d,0x25,0xa9,0xdd,0x49,0xfd,0x71,0x92,0x1a,0xee,0x61,0xfd, +0x88,0x51,0x35,0xdc,0x10,0x98,0x45,0x72,0x4d,0x72,0xb5,0x92, +0xde,0x89,0xfc,0xfa,0x3e,0x3d,0xd0,0xcd,0x29,0xdf,0x5a,0x4d, +0x06,0x07,0x15,0xde,0x7a,0x83,0x7f,0x4d,0x1c,0xf9,0x91,0x19, +0x1c,0x49,0x22,0x0a,0x47,0x85,0xf7,0x88,0x23,0x3b,0x32,0x5e, +0x38,0x40,0x44,0x9d,0x1e,0x98,0x41,0xb9,0x15,0xe9,0xa1,0xde, +0xa5,0xbf,0x7c,0x2e,0x9b,0x60,0xad,0xf4,0x84,0xa9,0x4b,0x97, +0x80,0xfd,0x87,0x78,0xec,0x06,0xd4,0xb5,0x2d,0x65,0xb3,0xab, +0x9c,0xf3,0xcc,0xb2,0x9d,0x13,0x54,0xf6,0xbb,0xd4,0x84,0x77, +0xf8,0x5f,0xa0,0xd3,0x67,0xfe,0xc4,0x58,0x13,0x8b,0x2c,0xa1, +0x68,0x0b,0x83,0x1f,0x8f,0xc3,0x8d,0xf7,0x28,0xdd,0xed,0x59, +0x4f,0xee,0x81,0xfe,0x7a,0x56,0x5c,0x6e,0x4d,0x60,0xe3,0x86, +0x51,0xb6,0x76,0x87,0x7e,0xeb,0x06,0xd4,0xa7,0x29,0x50,0x8b, +0x9a,0x19,0xea,0xe2,0x24,0x63,0x6a,0xf8,0x67,0x58,0xbb,0x10, +0xdb,0x43,0x0e,0x11,0xf1,0x72,0xbe,0x36,0xa1,0x36,0xa9,0x6e, +0x54,0x9e,0x7b,0x9c,0x54,0x97,0xf3,0x9d,0x24,0xcf,0xdd,0x20, +0xc9,0x73,0x97,0x25,0x95,0x25,0x97,0xa6,0x44,0x76,0xf1,0x3e, +0x61,0x5e,0xe1,0x5e,0x11,0x1c,0x04,0xfe,0xde,0x33,0x1d,0x74, +0x59,0x85,0x37,0x8e,0x21,0x8b,0x99,0xe2,0x7a,0xa7,0x3c,0xbb, +0x2c,0xeb,0x74,0x15,0x4f,0xfb,0xb6,0xc0,0xfa,0x00,0x69,0x4c, +0x46,0x30,0x46,0x9f,0x9a,0x51,0xbe,0x11,0xe4,0x2f,0xc0,0xc8, +0x11,0xbe,0x1f,0x4e,0xc3,0x76,0x8c,0x1c,0xa0,0xee,0x62,0x48, +0x63,0x1e,0xcb,0x24,0x1b,0x2b,0xfd,0xc0,0x34,0x67,0x65,0xb6, +0xa8,0x09,0x97,0xf0,0xf4,0x8f,0x50,0xcd,0xe2,0x4f,0x98,0x49, +0x70,0x3b,0x8c,0x87,0xed,0xcc,0x00,0x8e,0x97,0x0a,0xfe,0x0d, +0xa5,0x82,0x7f,0x6d,0x33,0x42,0xff,0xeb,0x78,0xdc,0x2e,0x49, +0x7b,0xd3,0xb7,0xe9,0x9b,0x68,0x48,0x23,0xd5,0x05,0xc5,0x0c, +0x02,0xbf,0xf6,0xe0,0xaf,0xf0,0xb1,0x0e,0x5e,0x45,0x73,0x38, +0xae,0x87,0xc7,0x71,0x8d,0xb1,0xb0,0x16,0x0f,0xe3,0x4e,0x26, +0x99,0x02,0xb5,0xf5,0x4c,0x7d,0x7a,0x66,0xb5,0x1a,0x1c,0x16, +0xe6,0xf6,0x88,0x73,0x59,0xcc,0xa0,0xc3,0x35,0x5b,0xa5,0xb7, +0x6b,0xe6,0xf6,0x5a,0x1b,0xfe,0xcd,0xe5,0x07,0x5f,0x77,0x3c, +0xe5,0xe0,0x45,0x24,0xf9,0x66,0xeb,0x9d,0x6d,0xb7,0x56,0x35, +0x34,0xf0,0xda,0xcf,0xb4,0x6e,0xad,0xbd,0xc8,0x89,0xcf,0xc4, +0x50,0x02,0x9d,0x75,0xe0,0xf2,0x0c,0xa6,0xc2,0x12,0x9b,0x3a, +0x1e,0x65,0xb8,0x00,0xb7,0xef,0xc0,0x5e,0x9b,0xd1,0xba,0x72, +0x73,0x22,0x6e,0x86,0x4f,0xf5,0xf0,0x53,0x71,0xb9,0xb1,0xb0, +0x7c,0x1e,0xfe,0x34,0xc2,0x5d,0xa4,0xd6,0x5a,0x85,0x7e,0x83, +0xe0,0x07,0x9d,0xb8,0x04,0xed,0x98,0x14,0x23,0x49,0x1e,0x64, +0xb4,0xe9,0x99,0x50,0x82,0x23,0xaf,0x85,0xcd,0xec,0x2c,0x60, +0x88,0x71,0xd1,0xda,0x7c,0xa3,0xa4,0x03,0xb6,0x7c,0x77,0xd8, +0x13,0xef,0x2e,0x5f,0x4e,0x1c,0x87,0xcf,0x09,0x56,0x01,0x07, +0x55,0x52,0xef,0x02,0x0a,0xc6,0x3a,0xe9,0xeb,0x4e,0x66,0x44, +0x15,0xd7,0x4a,0xed,0xe0,0x3e,0x44,0xfa,0xfe,0x1b,0xa0,0x46, +0xd8,0x49,0x5f,0x77,0xd2,0x1f,0x3e,0x4e,0x08,0x24,0xc1,0x76, +0xc1,0x2e,0xfb,0x9d,0xfd,0xa4,0xa2,0xfa,0xc8,0x33,0x11,0x11, +0x51,0x51,0xfc,0xb1,0x44,0xa6,0xfe,0x52,0xf3,0xb7,0xa3,0x45, +0xf5,0x4a,0xb0,0x40,0x4e,0xc7,0xfb,0xb1,0x31,0x1c,0x62,0x3d, +0x71,0x82,0x06,0x4e,0xa5,0xa9,0xe0,0xc3,0x52,0x0b,0xbe,0xa3, +0xa9,0xb6,0xbe,0x94,0x46,0xf3,0x59,0xa3,0x45,0xf5,0x67,0xa3, +0xcf,0x1c,0x97,0x01,0x83,0xf3,0x6a,0x6b,0x76,0x7c,0x2d,0xd5, +0xeb,0x67,0xb5,0xa8,0x08,0x75,0x90,0x41,0x34,0x99,0xd2,0x5a, +0xd7,0x3c,0xa7,0x1c,0xfb,0x0c,0x15,0x0f,0xa7,0xc6,0x7f,0xbc, +0x54,0x0b,0xc6,0x1a,0x52,0x2f,0x3d,0x6a,0x0c,0x47,0x17,0xa0, +0x8b,0xe4,0xa5,0xd1,0xb0,0x10,0x23,0xfa,0x68,0x64,0xd1,0x40, +0x9d,0x99,0x92,0x97,0x3e,0xfe,0x8f,0x97,0xee,0xfb,0x11,0xce, +0xb2,0x38,0x88,0x59,0x84,0x06,0x91,0x0f,0x61,0x21,0xd3,0xf7, +0xce,0x8d,0x34,0x24,0x37,0xe2,0xa8,0x1b,0x2d,0xa4,0x3f,0x66, +0xa1,0xa4,0x75,0x4d,0xdf,0xa6,0x6f,0xa2,0x06,0xfd,0x61,0x73, +0xc0,0x9b,0x08,0xca,0xa8,0xf6,0x10,0x96,0x75,0xe1,0xb2,0xb7, +0x46,0x33,0x50,0xd3,0x14,0x34,0xd7,0xe0,0x17,0xa2,0x32,0x7c, +0xb1,0x42,0xaa,0x93,0x5a,0x83,0xf3,0x7a,0x61,0x1e,0x68,0x74, +0xa3,0xc6,0x37,0xac,0x42,0x47,0x38,0x4b,0xd6,0x33,0xa5,0x17, +0xdc,0xf2,0x76,0xe7,0x3a,0xd1,0x80,0xb2,0xbb,0xce,0xbf,0x72, +0x7f,0x29,0x1d,0xea,0xfc,0x77,0x01,0xc5,0xc5,0x18,0x5c,0x16, +0xa0,0xd9,0xbb,0x20,0xa8,0x86,0x11,0xbd,0x74,0xa8,0xb3,0x51, +0x67,0xbe,0x34,0xd4,0x3b,0x4c,0x63,0x46,0x06,0x0d,0x82,0xc3, +0xe8,0xf0,0x23,0x9d,0xa5,0x91,0xc3,0xf8,0x31,0xc1,0xb1,0x34, +0x12,0xb1,0x70,0x80,0xc6,0x56,0x0d,0x18,0xfb,0x8c,0x81,0x5b, +0x38,0x43,0xd2,0x6a,0xfe,0x10,0xd4,0xfe,0x0d,0x03,0xb3,0xe9, +0xf8,0x47,0x22,0x42,0xc8,0x13,0x64,0x34,0x19,0xa0,0x93,0x47, +0x9e,0x21,0xa3,0xc1,0x40,0xe6,0x7d,0x42,0xcf,0x30,0x11,0xd5, +0x18,0xb0,0x80,0x89,0x84,0x7e,0x6e,0x22,0xce,0x66,0x24,0xa9, +0x25,0x5d,0x02,0x89,0x5a,0xb8,0x1f,0x5f,0x0b,0x09,0xf0,0x1a, +0x43,0x1e,0x41,0x6e,0x27,0xe6,0x3e,0x37,0x58,0x8e,0x89,0xcc, +0x26,0xfc,0x93,0x1c,0x4d,0x88,0x3c,0x17,0x1e,0x11,0x72,0x88, +0x3f,0x4e,0x61,0xe0,0xc4,0x3e,0x9c,0x28,0x89,0xc2,0xa7,0xd4, +0xa7,0x55,0x4a,0xa2,0xee,0xda,0x8e,0xf8,0xe1,0x5e,0xf5,0x90, +0x54,0x33,0xbe,0x36,0xb6,0x29,0xbe,0x31,0x91,0xc3,0xb9,0xb8, +0x58,0x0e,0xb3,0xd9,0xc8,0x19,0xce,0x38,0x66,0x26,0x7e,0x5c, +0x69,0xc9,0x3f,0x7e,0x53,0xf2,0xe8,0xdc,0x23,0x2e,0x56,0x34, +0xeb,0x16,0x76,0x48,0x92,0xee,0x67,0x8e,0xc8,0x1e,0xe2,0xd2, +0xc6,0x0a,0x25,0xea,0x72,0xa1,0x04,0xd7,0x7c,0x0f,0x6b,0x98, +0xbe,0xc5,0xe4,0x7b,0xd8,0xb4,0x98,0xc5,0x50,0x4b,0x32,0x1b, +0xd7,0xfc,0xcc,0xc2,0xc1,0xc9,0xb0,0x69,0x36,0x6e,0x62,0xd4, +0xf1,0x7d,0xd2,0xe9,0xd1,0xe9,0x58,0xeb,0x50,0x71,0x81,0x77, +0x6a,0x90,0x37,0x59,0x16,0x72,0x60,0xbc,0x99,0x34,0xef,0xaa, +0xde,0x90,0xbf,0xb1,0x3d,0x9f,0xdf,0x77,0xc3,0xf1,0x91,0xed, +0x65,0x0e,0x53,0xd1,0x93,0xf8,0x1e,0x89,0xc9,0x53,0x03,0x1d, +0x39,0x1a,0xb2,0x06,0x59,0x01,0x97,0x64,0x14,0xcb,0x37,0xa4, +0xa6,0xd5,0xab,0x3d,0x62,0x4d,0xd3,0x95,0xa6,0xb3,0xa2,0x86, +0x27,0x69,0x1d,0xac,0x7b,0x99,0x76,0xd3,0x32,0x95,0x0f,0xde, +0xb9,0x7b,0x95,0xb5,0xd1,0xe8,0x4e,0xc1,0x25,0xa4,0x0b,0x32, +0x4d,0x2f,0x76,0x41,0x6a,0x17,0xa6,0xf6,0xe9,0xcb,0x31,0xb3, +0xcf,0x40,0x3e,0xba,0x53,0x90,0xf2,0xe1,0x25,0x62,0x12,0xc1, +0xcf,0xca,0x57,0x54,0xee,0x68,0xe6,0x20,0xa3,0x5d,0x8c,0x65, +0x12,0xd3,0x13,0x33,0xe2,0x33,0x39,0x18,0x81,0xdc,0x91,0x65, +0x98,0x0b,0x27,0x98,0x70,0xff,0xb0,0xc0,0xb0,0x60,0x0e,0xef, +0x58,0x40,0x3e,0xa3,0x6f,0xa6,0xe1,0x8a,0xd3,0xdd,0xb2,0x2c, +0xf9,0xde,0xa4,0xb6,0x94,0x86,0x74,0xce,0x15,0x0e,0xb2,0xfb, +0x36,0x2f,0x74,0xc5,0x9d,0x07,0x53,0x28,0xb8,0x75,0xcc,0x85, +0xf1,0x3d,0xf9,0xbf,0x49,0xc5,0x25,0x2e,0xa7,0xf6,0x1d,0xf3, +0x97,0xed,0x3b,0x12,0x7e,0xd4,0x79,0x0a,0xce,0x93,0x84,0x72, +0x60,0x2a,0x73,0xbd,0x2c,0xb5,0x23,0x41,0x2d,0xa6,0xe0,0x4c, +0xcd,0xa9,0x7b,0x75,0x21,0xcd,0xa1,0x1d,0x87,0x28,0x26,0x15, +0xa2,0x88,0x81,0xd8,0x3c,0xc0,0x0a,0xcd,0x34,0x44,0xe8,0x8a, +0xcd,0x97,0x58,0x9a,0xc2,0x92,0x88,0xe1,0x46,0xb4,0x65,0xae, +0x96,0x74,0x54,0xd5,0x35,0x4a,0xc5,0x69,0xad,0xb6,0x03,0xae, +0xf7,0x3c,0x39,0x6c,0x64,0xfe,0xaf,0x3f,0xeb,0x4b,0x71,0x29, +0x69,0x17,0xcf,0xb0,0xa9,0xd9,0x29,0xd2,0x76,0x22,0x78,0xfb, +0xcf,0x8f,0x39,0xcf,0x84,0xfa,0x86,0xec,0x0f,0xf6,0xe7,0xf0, +0x96,0x05,0x64,0x31,0xfa,0x56,0x2b,0xdd,0x51,0xe6,0x99,0x61, +0xc9,0xc3,0xb2,0x32,0x18,0xd3,0x79,0xf7,0x1e,0x07,0xce,0xcc, +0x83,0x6d,0x7f,0xd8,0xc2,0x62,0xe7,0x8c,0x16,0x1e,0x3f,0x2a, +0x5d,0x59,0xba,0xa3,0x9e,0x7b,0x0e,0xaf,0xfe,0xcf,0x01,0x0a, +0xdd,0xe2,0x6c,0x9a,0xb7,0x93,0x9f,0x19,0x68,0xe0,0x31,0x33, +0x38,0xb6,0x1c,0xff,0x32,0x55,0x94,0x77,0x89,0x1f,0x3e,0x67, +0xa5,0xdb,0x8c,0xcb,0x48,0x27,0xe4,0x99,0xf5,0x77,0x42,0x42, +0x07,0x26,0x5c,0xfc,0x77,0xe3,0xe8,0x31,0x73,0x38,0x66,0xc6, +0x2a,0x64,0xe2,0x9c,0xd1,0xd1,0xfd,0x3b,0xd5,0x0a,0xc8,0x1f, +0x59,0x80,0xf9,0x70,0xec,0x3f,0x53,0x4d,0x47,0x97,0x27,0x4d, +0xf5,0x1e,0x9c,0x26,0x4d,0x35,0x2c,0xaf,0x82,0x31,0x3d,0x77, +0x1e,0x71,0x60,0xcf,0xdc,0xdf,0xf4,0xa7,0x25,0x2c,0x71,0xc8, +0xa4,0xa3,0xfb,0xb4,0x5c,0xa3,0x72,0x7b,0x0b,0xf7,0x02,0x9e, +0xd2,0xd1,0xd5,0xd1,0xd1,0xd5,0xd1,0xd1,0xed,0x12,0xeb,0xae, +0xb0,0xdd,0xe2,0x59,0x92,0x6c,0xad,0xf4,0x0b,0xd3,0x9a,0x9a, +0xd2,0xa2,0x06,0x7b,0xe4,0x78,0x90,0x4e,0x29,0x2c,0x25,0x9d, +0xa6,0x4d,0x46,0x35,0xdb,0x3b,0x0b,0x78,0xc7,0xab,0xb6,0xdd, +0xc6,0xdd,0x1c,0x5a,0x04,0x90,0x2a,0x83,0x22,0x79,0xde,0xe6, +0xee,0x54,0x7e,0xdf,0x1d,0xcf,0x7e,0xd7,0x5e,0x0e,0xbb,0x4f, +0x10,0x1f,0x23,0x1b,0xbd,0xed,0x56,0x75,0x2e,0xfc,0xed,0xfe, +0xa6,0xa1,0x92,0x2b,0x9c,0xb2,0xe2,0x8f,0x64,0xb2,0xab,0x5c, +0x3e,0x60,0xf7,0xed,0x93,0x67,0x97,0x7f,0xab,0x07,0xd6,0x38, +0x9b,0x77,0x51,0x37,0x5d,0xb6,0x7d,0xbd,0xeb,0xf7,0xfb,0x81, +0x3b,0x0c,0xd3,0x39,0x78,0x39,0x80,0xaf,0x1a,0x19,0x98,0xb4, +0x0b,0x3f,0x63,0x9d,0xc5,0x19,0xe8,0xcd,0xe2,0x41,0x3f,0xfc, +0x62,0xc7,0x4c,0x59,0x8f,0x95,0xd2,0x2d,0x98,0x50,0x48,0x83, +0xc7,0x71,0x49,0xa9,0xee,0x05,0x1b,0x87,0x1a,0x25,0xa8,0xd2, +0x34,0x73,0xb1,0x06,0x32,0x3b,0x50,0xcd,0x2e,0x5f,0xce,0x83, +0x6a,0x23,0x8c,0xbf,0xfa,0xe3,0x37,0x1d,0x0b,0x2f,0xeb,0x0c, +0xef,0xad,0xf3,0xab,0x4a,0x8c,0x69,0xce,0x07,0x5b,0xde,0x38, +0x4f,0x29,0x42,0x88,0x25,0xa6,0xd5,0x9b,0x2a,0xb7,0xe7,0x78, +0xda,0xf2,0xc3,0xfb,0xaf,0xb9,0xf6,0xba,0x8c,0xde,0xcc,0xdd, +0x42,0xfe,0xd9,0x84,0x9b,0xd0,0x8e,0x09,0x9d,0x86,0x66,0x98, +0x27,0x1d,0x8e,0x59,0xc0,0x31,0x6b,0x56,0xb1,0x48,0x4c,0xa1, +0xa6,0x5d,0xa1,0x51,0xb5,0xa3,0x85,0x83,0xf4,0x76,0xf1,0x2c, +0x93,0x92,0x95,0x94,0x9d,0x98,0xc3,0xd1,0x78,0x9e,0x38,0x32, +0x15,0x13,0xe1,0x08,0x13,0xb6,0xff,0xd0,0xc1,0xd0,0x80,0x7f, +0xe7,0xdb,0x54,0x9a,0xef,0xbd,0x92,0x69,0x27,0xb7,0xa7,0x36, +0x66,0x70,0x18,0xd9,0x57,0x23,0x38,0x3b,0xf7,0x41,0x34,0xdb, +0x18,0xd8,0x1e,0xdc,0x17,0xc2,0xe1,0x56,0xe1,0x08,0x31,0x12, +0x8b,0x7a,0x59,0xa1,0x68,0x26,0x9d,0xf4,0xa2,0x01,0x16,0xde, +0xc3,0x22,0x92,0x99,0x9a,0x9e,0x96,0x96,0xce,0x81,0x1d,0x93, +0x19,0x94,0x15,0x9c,0x13,0xc2,0x0d,0x59,0x53,0x33,0x71,0x1e, +0x64,0xa3,0xbf,0x8a,0x8e,0x9e,0x72,0x92,0x86,0x34,0xc1,0x79, +0xbb,0xe8,0x2c,0xdd,0xce,0x11,0xfc,0x09,0xbe,0xc7,0x9c,0x79, +0x18,0xfd,0xe4,0x9e,0xea,0xa3,0x91,0xb9,0xec,0x89,0x05,0x47, +0x70,0x5c,0x04,0x32,0x1c,0x4e,0x30,0x02,0x96,0xd2,0x94,0x0f, +0x42,0xf1,0x83,0x10,0x75,0x4e,0xc1,0x32,0x27,0x82,0x94,0xac, +0xa3,0x02,0x7d,0x0d,0xa7,0x20,0xcf,0xa4,0x18,0x4a,0xca,0x4f, +0xdf,0xd6,0x94,0x3d,0x49,0x53,0x8b,0xa1,0xd1,0xe5,0xe3,0x5e, +0x1c,0xcf,0xc4,0xdf,0x8f,0xfd,0xe9,0x2c,0x45,0xb1,0x4a,0x0c, +0x6e,0x80,0x3b,0xc4,0x9e,0xdd,0x76,0x4a,0xfb,0x84,0xb6,0x4c, +0xac,0x67,0xce,0xbf,0x8c,0x79,0x79,0xe6,0x01,0x07,0x53,0x37, +0x91,0x1b,0x76,0xb7,0xcd,0x86,0xe4,0x55,0xf5,0xbc,0x5e,0x97, +0x76,0xcf,0x86,0x26,0x0e,0x43,0xc5,0x61,0x92,0xf4,0x28,0xf1, +0xa7,0xb8,0x5f,0x38,0xa1,0x89,0x39,0x3e,0xe3,0xf0,0x9c,0xa8, +0xf5,0x1c,0xaa,0x3e,0x23,0x86,0x1d,0xab,0x2f,0x6d,0x6a,0x74, +0xb5,0xe5,0x6f,0x3a,0x3c,0xd0,0x1f,0x30,0xe1,0xa4,0xe5,0xb9, +0xbd,0x64,0xb4,0x45,0xa6,0xab,0xb4,0x3c,0x57,0x18,0x92,0x1f, +0x4c,0x9d,0x49,0x6b,0x74,0x79,0x2e,0x33,0x3e,0xf3,0x7c,0x96, +0x69,0x0a,0xef,0xbe,0xcd,0x52,0x67,0xab,0x59,0xdd,0x6e,0xbe, +0xaa,0xa8,0xbc,0xbc,0xa8,0x92,0x53,0x8c,0x15,0x7b,0x49,0xff, +0x37,0x90,0x84,0xb1,0x1d,0x30,0xd4,0x6e,0xcf,0x16,0x16,0x79, +0x17,0x38,0x15,0xba,0x67,0xaa,0x1c,0xdc,0x1f,0x9e,0x15,0x96, +0x1e,0x96,0xa1,0x02,0x86,0x6d,0x78,0x83,0x89,0xcf,0x3a,0x9f, +0x19,0x9b,0x65,0x96,0xc8,0xef,0xdf,0xb5,0x47,0xd7,0xc2,0xb4, +0xd1,0x9d,0xcf,0x2f,0xcc,0x29,0xc9,0x28,0x95,0xd6,0xf0,0x46, +0x4f,0xd9,0x94,0xce,0x17,0x06,0xe7,0x07,0xe5,0xd2,0xeb,0x13, +0x77,0xc5,0x78,0x17,0xd6,0x59,0x40,0x9d,0x39,0x45,0x17,0x49, +0xc2,0x1c,0x43,0xd1,0xca,0x4c,0xb0,0xc2,0x49,0xb8,0x84,0xc9, +0x30,0x57,0x02,0x19,0xd3,0x94,0x90,0x51,0x25,0xa5,0x8a,0x25, +0x9d,0xec,0xc8,0x9f,0x82,0x26,0xe9,0xf2,0xee,0xde,0xdb,0xe6, +0x52,0xd9,0xc8,0xdb,0x5e,0xd0,0xbd,0x60,0x99,0xcf,0x51,0xb4, +0xdc,0x4e,0xe4,0x4d,0x86,0x55,0x06,0xa5,0x6e,0x56,0xfc,0x45, +0xb7,0x2e,0x8f,0x41,0x1b,0x0e,0x04,0x98,0x4f,0xf4,0x71,0xe7, +0x45,0x16,0x22,0xf5,0xc9,0x45,0xb0,0xd0,0x67,0xf1,0x9c,0x3d, +0xd1,0xc5,0x9d,0x34,0x00,0x45,0xea,0x92,0x4b,0x60,0xa1,0xcb, +0x8e,0x78,0xe0,0xb7,0xe4,0xca,0x9d,0x1b,0xf0,0x7e,0xed,0x13, +0xeb,0x12,0xde,0x66,0xc5,0xe6,0x69,0x7a,0xdb,0x39,0xb8,0xff, +0x3d,0xe9,0xf0,0x6a,0xf0,0x6c,0x70,0xad,0xae,0xe5,0x1d,0x2b, +0x8c,0x2b,0x9d,0x24,0xb5,0xe7,0xed,0xd2,0x2d,0x88,0x15,0x58, +0xfc,0x0d,0x3d,0x1c,0x33,0x86,0x63,0x6b,0x2e,0x3e,0x84,0x62, +0xe9,0x90,0xd8,0x43,0x13,0x0e,0x86,0x50,0x9a,0x29,0x2a,0x19, +0x2b,0x06,0x7a,0xc4,0xc9,0x4f,0x74,0x98,0x25,0x78,0x9e,0x84, +0x96,0xee,0x6b,0xf1,0x2f,0x30,0x3a,0xc0,0x67,0x7b,0xe7,0x39, +0xa6,0xba,0x72,0xc2,0x44,0xf8,0x84,0x04,0x38,0xee,0xb3,0x76, +0xb7,0xe3,0xc4,0x6e,0xe3,0xbf,0x3e,0xef,0xc1,0x5c,0x26,0xbf, +0x32,0xa7,0x3a,0xab,0x96,0x13,0x33,0xc4,0x26,0x52,0x2f,0xd4, +0x3b,0x0c,0x42,0x3b,0x8d,0x66,0xed,0xac,0xf0,0x3b,0x1c,0x23, +0x38,0x43,0xac,0x87,0x19,0x34,0xe8,0xb8,0xbf,0x5b,0xf8,0x36, +0x40,0xf5,0xc5,0xa3,0xf7,0x67,0x0b,0x4b,0x8b,0x1a,0x0a,0x3b, +0x28,0x73,0xea,0x57,0x68,0xb0,0xf9,0xc3,0xd9,0xf7,0x52,0x9e, +0x72,0x0a,0xb3,0x91,0x97,0x64,0xeb,0x6d,0xb3,0x9b,0xbb,0xef, +0x0c,0xc1,0xe4,0x62,0x98,0x7a,0x1e,0xe6,0x72,0x6d,0x03,0x78, +0x8a,0x49,0x6a,0x8f,0xef,0x8c,0xed,0x34,0x89,0xe5,0x03,0x71, +0x8a,0x3b,0xce,0xdd,0x86,0x4a,0x5c,0x05,0xae,0xbd,0xc4,0x3e, +0x03,0x87,0x01,0x9a,0xd1,0x17,0x18,0x50,0x44,0x33,0xdf,0xe0, +0xcd,0x1c,0x16,0x23,0x03,0x50,0x7f,0x25,0x4e,0x97,0xb5,0xd8, +0xdf,0x07,0xd5,0x22,0x58,0x19,0x0b,0x4e,0x2a,0xf0,0x3e,0x83, +0x5a,0xc7,0x71,0x5c,0xa4,0xa6,0xcc,0xf2,0x48,0x78,0x88,0xeb, +0x94,0xad,0x52,0xe1,0xc7,0x20,0x73,0xb9,0xa0,0xf8,0x51,0xa2, +0x5a,0xfc,0x93,0x73,0x30,0x2e,0x1a,0xcc,0x2a,0xec,0xf8,0xcc, +0xd2,0xf4,0xaa,0xb4,0x9a,0xa4,0x69,0xf9,0x73,0x1a,0x16,0xd8, +0xaf,0x33,0xd8,0xa4,0xb5,0xb5,0xdc,0x98,0xbf,0x37,0x3c,0x70, +0xb3,0xe9,0x4e,0xed,0x86,0xce,0x2d,0x57,0xb7,0x72,0x5a,0x0a, +0x1d,0x72,0x18,0x3f,0xf1,0xc7,0xf1,0x56,0x38,0xd6,0xfe,0x8f, +0x00,0x60,0x22,0x81,0xa7,0xa6,0x78,0x9c,0xfe,0xbc,0xff,0xae, +0xc1,0x53,0x54,0x54,0x54,0x5d,0xd8,0xc0,0x89,0x39,0x17,0x15, +0x9f,0xb0,0x95,0x77,0x8b,0xbf,0xcd,0xfa,0x89,0x53,0xcc,0x12, +0xb7,0x91,0x0e,0xb4,0x62,0x03,0x4a,0x42,0x4a,0x23,0xca,0x38, +0x70,0x6d,0xc7,0xef,0x99,0xf8,0xa2,0xb8,0x92,0xd8,0x52,0x0e, +0xbe,0xee,0xc4,0xdb,0xcc,0xb9,0xe2,0xb3,0x25,0x67,0xcb,0xf4, +0xcf,0xf3,0xc7,0x5d,0x8f,0xb9,0x1d,0xf5,0xe0,0x30,0xde,0x0c, +0x4e,0x31,0x47,0x3c,0xa2,0x3c,0x23,0xbd,0x39,0xdc,0x6d,0x01, +0x72,0x26,0xd4,0x2d,0xc4,0x23,0xc0,0x8b,0xc3,0x0d,0xe6,0x30, +0x85,0xb1,0x31,0x34,0x30,0xdf,0x68,0x55,0x69,0xc1,0xbf,0xb8, +0x7c,0xe3,0x5a,0x0f,0xf5,0xa8,0x23,0x4c,0xa7,0xf6,0xcd,0x1d, +0x0f,0xf4,0xab,0x5a,0xf9,0x5d,0x4d,0x86,0x1d,0xb6,0x34,0x5e, +0x96,0x74,0x90,0xf4,0xe2,0x94,0xd2,0xe4,0x72,0xee,0x19,0x13, +0xef,0x96,0xec,0x91,0xe6,0xc5,0xbd,0xc1,0x03,0x34,0x3b,0x68, +0xdc,0x35,0xd0,0xc6,0x79,0x66,0x30,0x6f,0x21,0x66,0x9b,0x42, +0x36,0xce,0x19,0x80,0x39,0x50,0xdb,0x85,0xb5,0x3f,0xb0,0xca, +0x8a,0x8b,0x0a,0x6d,0x72,0x0a,0xe7,0x46,0xa1,0x5a,0xd8,0x56, +0xce,0x34,0x32,0xe0,0x90,0xed,0x94,0xe5,0x4c,0xba,0x9e,0xd2, +0x33,0x66,0xb8,0x22,0xef,0x61,0xaa,0x5a,0xda,0x37,0x09,0xb0, +0x04,0x96,0xab,0xd6,0x8a,0x83,0x6c,0x72,0x69,0x42,0xe9,0xf9, +0xd2,0x5d,0xc9,0xfc,0x1e,0x54,0xd3,0xc0,0x8f,0x51,0x79,0x71, +0xad,0x19,0xff,0xf5,0x95,0x1b,0x4f,0xdb,0x5e,0x70,0xc2,0xd0, +0xc8,0x6a,0x22,0xb6,0x30,0x46,0xa1,0x29,0x9d,0x6a,0x60,0x2e, +0x4c,0x83,0x6a,0x71,0xa3,0x81,0x30,0x16,0x57,0x8b,0xd3,0x30, +0x81,0x5d,0x58,0xe6,0xf1,0xbb,0x4c,0xa8,0x67,0x5a,0xd3,0x73, +0xeb,0xd4,0x28,0xdb,0xd6,0xc9,0x50,0x52,0xfe,0x6b,0x23,0xb4, +0x90,0x7e,0x71,0x25,0x05,0xf9,0x77,0xe0,0xeb,0x91,0x6d,0xf8, +0x35,0xf4,0xe1,0x78,0x71,0xa6,0xa1,0xc0,0xb0,0xc6,0xf3,0xf0, +0xbd,0xb5,0x78,0x60,0x45,0x91,0x21,0x0f,0xa7,0xdf,0xfe,0x38, +0x5c,0x23,0x55,0x2e,0xe0,0xeb,0x4b,0xf0,0x3a,0x96,0xa9,0xc1, +0x8f,0xe0,0xfd,0x6d,0x70,0x76,0x46,0x61,0x1f,0x8f,0xc1,0xcf, +0xf1,0xc3,0x07,0x46,0xaf,0x39,0xf0,0x17,0x2c,0x08,0xee,0x13, +0x7b,0x61,0x1f,0xab,0x2c,0x58,0x2a,0x34,0x49,0x0f,0xae,0xfc, +0xd5,0x70,0x16,0x2e,0x37,0x86,0xe5,0x14,0x07,0x1a,0x19,0x09, +0xbb,0x7a,0x51,0x4e,0xb1,0x9d,0x90,0x2d,0x36,0x92,0x81,0x57, +0xb5,0x7f,0xa4,0xfc,0xc4,0x35,0xe1,0xef,0x50,0x00,0x75,0x38, +0x13,0xb7,0x8c,0xd6,0x8b,0x2d,0x67,0xea,0x33,0x52,0x1b,0xd5, +0xc0,0x58,0x5c,0x24,0xed,0x94,0x8e,0x80,0x5a,0x36,0x7c,0x93, +0xe7,0x2a,0x1b,0x2d,0xbb,0x61,0xd7,0x5b,0xbe,0xd7,0x4c,0xfc, +0xf9,0x62,0xad,0xba,0x55,0x5d,0x6b,0x77,0x9b,0xd8,0x58,0x98, +0x38,0x51,0xf3,0xee,0xac,0x6f,0x6e,0xaf,0xed,0xae,0x37,0x69, +0xb5,0xe8,0xb1,0xaf,0xe8,0xe4,0x4d,0x6a,0xad,0x3a,0x1c,0x7a, +0x39,0xd1,0x59,0x78,0x9f,0x84,0x5b,0x04,0x19,0xf9,0x9a,0x71, +0x78,0xd2,0x08,0x76,0x50,0x8e,0xb8,0xc6,0x98,0x22,0xd7,0xcd, +0xfd,0xb0,0x19,0xd6,0xf6,0xe0,0x5a,0x4a,0xa1,0x77,0xf4,0x52, +0x0a,0x94,0x55,0x9b,0xd5,0x9b,0xd4,0xc8,0x61,0xfb,0x31,0x92, +0xee,0x96,0x65,0x9d,0xb0,0xbb,0x2b,0x9b,0x0f,0xbf,0x10,0xd8, +0x1c,0x58,0x49,0x39,0xc6,0x0e,0x41,0x83,0x74,0x63,0x01,0x1b, +0x54,0x14,0x5c,0x1c,0x4a,0xed,0x28,0xbe,0x43,0xd4,0x94,0xec, +0xa8,0x28,0xb6,0x98,0x13,0x36,0x75,0x89,0x1a,0xcc,0xb9,0xdc, +0xb3,0xb9,0x67,0xf2,0x0c,0xa8,0x1d,0xed,0x93,0xd4,0xc0,0x38, +0x04,0x53,0xf8,0x91,0x89,0xf2,0x8a,0xf2,0x8e,0xa0,0x76,0x54, +0x62,0x0e,0x71,0x4c,0xa8,0x67,0x88,0xa7,0x64,0x47,0xb9,0x26, +0x10,0xca,0xe8,0xaf,0xd7,0xda,0x32,0x55,0x8f,0xda,0x11,0x7c, +0x72,0xf7,0xe5,0xf3,0x6b,0x74,0xda,0x2a,0x99,0x6b,0x0b,0x5e, +0xac,0x81,0xcf,0x34,0x2b,0x3b,0x78,0x1c,0x7f,0x43,0xfb,0xb2, +0xd1,0x0d,0x9a,0x88,0xba,0x25,0x53,0x2a,0x49,0x2e,0x91,0x96, +0xac,0x92,0x3d,0x52,0x3c,0xd3,0xbc,0x39,0x0a,0x67,0x4f,0x50, +0x22,0x1d,0xf4,0xb5,0xce,0x4a,0xf4,0x32,0x05,0x2f,0x75,0xfc, +0xda,0x04,0xbe,0xc6,0xd9,0x97,0x61,0x36,0xfc,0xd2,0x8d,0xbf, +0xfc,0xc2,0x4a,0x52,0x5d,0x5f,0x11,0xe8,0xe8,0xc5,0x0e,0xd8, +0x0a,0x3f,0x56,0x5c,0x04,0x57,0x71,0xf6,0x9f,0x3a,0x53,0xc5, +0xcf,0xd1,0xf5,0xe2,0x5e,0xb8,0x8f,0x5b,0xb1,0xc2,0x08,0x2a, +0x30,0x58,0xfc,0xdc,0x50,0xf1,0xba,0x5f,0x9c,0xc3,0xc0,0x0f, +0x42,0x06,0x19,0xf1,0x06,0xa2,0xf0,0x66,0x70,0xbf,0x78,0x80, +0x34,0x39,0xd6,0x99,0x97,0x59,0xb5,0x96,0xf3,0x7b,0x3b,0x1d, +0x5b,0xed,0xa4,0x4e,0x82,0x61,0x42,0x1b,0xb9,0xde,0xd6,0xd1, +0x5b,0x3c,0xc8,0xd5,0x61,0x2c,0x9b,0x9c,0x9d,0x94,0x13,0x9f, +0x6b,0x94,0xc0,0xef,0x5d,0xaf,0xb9,0x78,0x8e,0x5e,0xb1,0x1d, +0x5f,0x91,0x53,0x91,0x5f,0x5a,0x54,0xec,0x5e,0xee,0x59,0xeb, +0xbd,0x73,0xcf,0x5a,0x8f,0xc5,0xbe,0x59,0xe6,0xfc,0xaf,0xc5, +0x2f,0xaa,0xef,0x34,0x5e,0x75,0x7a,0xb4,0xe7,0xb5,0x7b,0x6e, +0x3b,0xbf,0xb2,0x70,0x73,0x89,0x7e,0x05,0x27,0x06,0x88,0x66, +0x44,0xe1,0x23,0x1f,0xf1,0xd9,0x2c,0xbc,0x35,0x1e,0x09,0xec, +0xbf,0x0d,0xf1,0x8a,0x45,0xc6,0xe2,0x5b,0x16,0x8e,0x09,0xf7, +0xc9,0xf9,0xb8,0xb8,0xb8,0xf3,0xf1,0x1c,0xec,0x67,0xf6,0xd9, +0xdb,0x39,0x18,0x38,0xd9,0x96,0xb8,0x94,0x7b,0x54,0x70,0x70, +0x49,0x3c,0x4c,0xda,0x71,0xf3,0x63,0xb0,0xe8,0x40,0x8b,0xdb, +0xf2,0x8d,0x68,0x65,0x0e,0x56,0xab,0x71,0x87,0x05,0xec,0x58, +0x8e,0xbe,0x66,0xe0,0x8b,0x9f,0xf5,0xc1,0x67,0xe0,0xdd,0x89, +0xde,0x14,0x76,0x09,0x3f,0x08,0xfa,0xe4,0x49,0xd9,0xcd,0xda, +0xfe,0x0e,0xae,0x41,0x94,0xb3,0x39,0x19,0xd9,0x99,0x99,0x59, +0x9c,0x60,0x0e,0x73,0xf4,0xe7,0xd3,0x99,0x61,0xf5,0x91,0xc5, +0xca,0x57,0xfa,0x38,0x87,0x82,0xda,0x75,0x3b,0x97,0x9a,0x22, +0x71,0xc8,0xb3,0xe5,0x7b,0xd2,0x3b,0x73,0xdb,0x0a,0x3b,0x5c, +0xfb,0xbd,0xaf,0xf8,0xe2,0x38,0xfa,0x95,0x41,0x38,0x23,0x3c, +0x99,0x42,0xd9,0x75,0x29,0xb0,0x38,0x17,0x54,0x6a,0xe0,0x33, +0x17,0x98,0xed,0x07,0x1a,0x21,0x89,0x5d,0x3c,0x7e,0x99,0x88, +0x13,0xd2,0xa6,0xe5,0x73,0xd8,0x05,0x13,0x48,0x34,0x23,0xac, +0x66,0x8c,0x76,0x6f,0xf5,0x58,0xe3,0xb7,0x26,0x7f,0x4b,0x89, +0xce,0x05,0x4e,0xf8,0x55,0x5c,0x45,0x5a,0x45,0xe5,0x6b,0xf0, +0xb4,0x15,0x9f,0x5e,0xd4,0xd3,0xc7,0xab,0x56,0x70,0x75,0x3b, +0xfe,0x6d,0x05,0x7f,0x6f,0x16,0xe7,0x58,0x08,0x73,0x16,0x0e, +0xfe,0x20,0x68,0xb6,0x8b,0x9a,0x37,0x69,0x08,0x18,0x52,0xb4, +0x12,0x6a,0xa0,0xdd,0xa0,0xae,0x47,0x29,0x62,0x0d,0x4c,0xd0, +0xc3,0x8d,0x8a,0x54,0xd8,0xc8,0x8e,0x24,0x88,0x36,0x04,0x17, +0x9c,0xc0,0x4f,0x37,0xe0,0x18,0x59,0xab,0x73,0xdb,0x9d,0xec, +0x87,0xf1,0x2f,0x54,0xc0,0x07,0xd7,0xa3,0x3a,0x23,0xc9,0x26, +0x4f,0x60,0xda,0x32,0xd2,0x29,0xb7,0x6d,0xc2,0xa7,0xd2,0x16, +0x5a,0x13,0x4a,0x35,0x8e,0xe2,0xc4,0x35,0xa8,0x24,0x6b,0x73, +0xea,0xb8,0x9f,0x7b,0x27,0xe1,0xa5,0x0a,0x84,0xd1,0x4f,0xcf, +0x67,0xd2,0xe9,0xa7,0x27,0x31,0x6d,0x59,0xef,0x3e,0xfd,0x86, +0x45,0x0d,0xa9,0x50,0x6b,0x2f,0x28,0xc1,0x5e,0x46,0x30,0xc2, +0x71,0x04,0xfd,0x61,0x1c,0xf8,0x33,0x18,0x84,0x65,0xe4,0x74, +0x45,0x74,0x75,0x9d,0x2a,0xf8,0x53,0x07,0x19,0x99,0x3b,0xf9, +0x74,0x65,0x74,0x75,0x8d,0x2a,0xec,0x45,0x86,0x92,0xa9,0xcb, +0x52,0x33,0x2f,0x49,0x89,0x39,0x92,0xc1,0x13,0x81,0xb8,0x66, +0x27,0x2a,0xcb,0x7a,0x2d,0x28,0xae,0x53,0xcb,0x00,0x33,0xf8, +0x4a,0x15,0x74,0x14,0xb1,0x7d,0xe2,0xe7,0x2c,0x24,0xe2,0x7e, +0x1a,0xd8,0xde,0x3b,0x8c,0x1f,0x46,0x18,0x71,0x76,0x51,0xc1, +0x61,0x8e,0x53,0xd6,0x30,0x09,0x66,0x4a,0xdf,0x32,0x57,0x8a, +0x0a,0xaf,0x25,0xab,0xa5,0x0c,0xc7,0xc0,0xa4,0xd3,0xb0,0x9a, +0x13,0x77,0x33,0x52,0x63,0xee,0x98,0x1c,0xc3,0x38,0xde,0x7b, +0xba,0xc1,0xc2,0xa5,0xda,0x17,0xcc,0xf8,0xc1,0x9e,0xf6,0xab, +0x55,0x37,0xb8,0x7a,0x31,0x9f,0xd8,0x44,0x25,0x56,0xab,0xc1, +0x22,0x68,0x83,0x10,0x7c,0x6a,0x02,0x39,0xa8,0x8c,0xed,0xe8, +0xc1,0x6a,0xe7,0x1d,0x78,0x26,0x13,0x8c,0xa5,0xb6,0x85,0x4d, +0x6a,0xc0,0x8c,0xb6,0xf3,0x54,0x63,0x95,0xff,0x1a,0x17,0x43, +0x28,0xac,0xd0,0x0b,0x4b,0x1c,0x92,0x9a,0x66,0x9e,0x87,0x62, +0xac,0x63,0x73,0xaa,0x32,0xab,0xd3,0x6a,0x29,0xe4,0x63,0x70, +0xc5,0xb1,0xf9,0x34,0x3d,0x6d,0x89,0x0a,0x0f,0x30,0x9e,0xb2, +0x5e,0x2a,0xc1,0xbe,0xc7,0xdc,0xad,0xa8,0xfd,0x39,0x51,0x2d, +0xe1,0xa7,0x73,0x6f,0x60,0xaf,0xaa,0xc8,0x33,0xf1,0x25,0x71, +0xa5,0xb1,0x65,0xf2,0x14,0xde,0x07,0x3f,0x37,0x9d,0xaa,0xb5, +0xb8,0xde,0x92,0xcf,0xc9,0xcb,0x2c,0xc8,0x28,0xe4,0x1c,0xe0, +0x30,0x6a,0x62,0x3c,0xc6,0xb1,0xd3,0xf3,0xbc,0x61,0x8c,0x0c, +0xae,0x4a,0xd2,0xa3,0xf4,0xf4,0x9f,0xb0,0x06,0x69,0x4a,0x62, +0x34,0x24,0x12,0x97,0x10,0xa7,0x10,0xc7,0x43,0x1c,0x04,0xc2, +0x47,0x7d,0x34,0x4e,0x8e,0x8a,0x25,0xab,0xcb,0x41,0x1d,0xa3, +0x59,0xb3,0xff,0x88,0x25,0x27,0xb6,0x26,0xbd,0x13,0x4b,0xe6, +0x25,0x7d,0x34,0x18,0xcb,0xb4,0xa5,0x67,0x52,0x80,0xde,0xca, +0x36,0xa6,0x34,0xa4,0xd5,0x65,0xd0,0xd0,0xa3,0x2b,0x7c,0x49, +0x6d,0x7e,0x07,0x1b,0x54,0x12,0x5a,0x1a,0x59,0x4e,0xd9,0x60, +0x3b,0x0e,0x31,0x71,0x45,0xe7,0x47,0x53,0xd8,0x40,0x27,0xb6, +0x49,0x29,0xac,0xf4,0x4c,0x99,0x61,0x2c,0x4d,0x61,0xc7,0x47, +0x53,0x58,0x94,0x19,0x04,0x32,0x47,0x3d,0x0e,0x7b,0x46,0xd1, +0xd0,0x63,0x6a,0x01,0x9b,0x99,0x43,0x6e,0xa1,0xee,0x41,0x34, +0xf4,0x68,0x58,0xc0,0xa7,0x8c,0x83,0xdc,0xd4,0x7c,0x9b,0x94, +0xc2,0x1e,0x5f,0x1e,0xba,0xd6,0x76,0x9f,0x03,0x5f,0xa6,0x4d, +0x7b,0x68,0xc7,0x2d,0xbd,0xca,0x36,0x5e,0xbf,0xc9,0xac,0xc3, +0x91,0x86,0xcd,0xe3,0xe7,0xc9,0xbe,0x30,0x9f,0x70,0x1f,0x69, +0x75,0x09,0xc6,0xf6,0xe2,0xd8,0x77,0xf2,0x6e,0x2c,0x85,0xa4, +0x78,0x86,0x75,0x08,0x71,0x08,0x73,0x92,0xf6,0x8e,0x55,0x27, +0x5c,0x48,0xbc,0x20,0xed,0x1d,0x9b,0x2e,0x0d,0xff,0x29,0xd3, +0x92,0x9a,0x35,0xba,0x44,0x55,0x92,0x44,0x1f,0x29,0x1c,0x04, +0xbf,0x26,0xa9,0x25,0xc9,0xa5,0x49,0xe5,0xdc,0x03,0x9a,0x09, +0x93,0x3c,0x52,0x3d,0xb9,0xef,0x46,0x33,0xa1,0xfa,0x3d,0xc3, +0xf5,0xf8,0xa5,0x19,0x7c,0xb9,0x08,0x63,0x4d,0x21,0x16,0xe7, +0xf4,0xd3,0x4c,0x98,0xd1,0x85,0x19,0x2f,0xa9,0x1b,0x44,0x81, +0x3d,0x79,0x0c,0xa4,0x0a,0x64,0x49,0xa0,0xce,0x0d,0x5f,0xc4, +0xa7,0x4c,0x6a,0x7b,0x62,0x47,0x5c,0xbb,0x3c,0x8e,0xf7,0x47, +0xe2,0x84,0x2a,0x1b,0x28,0x3e,0x4e,0xc0,0x43,0x6c,0x74,0xce, +0x57,0x39,0xb9,0xaa,0x0f,0xa1,0xe2,0x22,0x3a,0xc1,0x1c,0x5d, +0x9c,0x83,0x8e,0xfa,0x30,0x79,0x29,0x8b,0x21,0xbe,0xb8,0x8d, +0xe6,0x9a,0x25,0xb2,0x36,0x87,0x1f,0x61,0x6a,0x35,0x2c,0x4c, +0x00,0x0b,0x15,0xd8,0xc8,0xe0,0xe2,0x63,0x53,0x23,0xd7,0xca, +0x4c,0x0e,0x07,0x87,0xd8,0x4e,0x99,0x2f,0x95,0xeb,0x7c,0xc3, +0xdc,0xae,0x28,0x7a,0x96,0xa4,0x96,0xf0,0x24,0x06,0x18,0x0a, +0x4a,0xca,0x1d,0xf8,0x9c,0x8a,0x9c,0x9a,0xcc,0xfa,0x0c,0x7c, +0xbf,0x62,0xda,0x80,0xba,0xf1,0xba,0x0d,0x1b,0xd5,0xb7,0x94, +0x1b,0xf0,0x6f,0x6e,0xdd,0xbd,0xd3,0xff,0xa0,0x6b,0xdd,0x0d, +0xed,0x6f,0x37,0x95,0xf7,0xf3,0x4b,0x6f,0x6d,0xbf,0x65,0x7e, +0x8f,0xbb,0x2e,0x2c,0x25,0x11,0xf8,0xb1,0x17,0x7e,0xb0,0x0b, +0xc7,0xe9,0xc3,0x58,0x4f,0xe0,0x42,0x61,0x32,0xbd,0x6e,0x5b, +0x14,0x63,0x25,0x0d,0x7c,0x58,0xb0,0x0d,0x17,0x88,0xea,0xfa, +0x90,0xb3,0x8d,0xc5,0xaf,0x74,0xa8,0x07,0xda,0xe1,0x3c,0x59, +0x93,0x05,0x68,0xc1,0xa4,0x47,0x30,0xaf,0x10,0x76,0xa8,0x08, +0x44,0xda,0x62,0x72,0x64,0x69,0x98,0x01,0xa7,0x7f,0x68,0xbf, +0xdb,0xaa,0x29,0xb8,0x95,0x49,0xd5,0x55,0x02,0x2d,0x06,0x94, +0x6b,0xdb,0x7f,0xc8,0x50,0x4b,0xff,0xfa,0xdc,0x1f,0xb0,0x54, +0x55,0x34,0x64,0xce,0x94,0x45,0x57,0x54,0xa8,0xde,0xa0,0xe8, +0xee,0x73,0xa9,0x97,0x51,0x19,0x8b,0xad,0x07,0x70,0xba,0xe4, +0x79,0xdd,0x4e,0xad,0xaf,0xf2,0x7e,0x4c,0x04,0x75,0x15,0xd8, +0x83,0x09,0x38,0x7d,0xb4,0x63,0x23,0xc7,0xb4,0x64,0x66,0xb7, +0xa9,0x29,0xca,0xd8,0x9f,0xb1,0x94,0x60,0x4d,0x28,0x8e,0xd7, +0xc0,0xc5,0xb2,0x6e,0x97,0x3e,0x18,0x53,0xf0,0x7d,0x22,0x4c, +0x56,0x81,0xf3,0x78,0x16,0x37,0x8e,0x96,0x2d,0xcd,0x67,0xda, +0x53,0x32,0x3b,0xd4,0x14,0x45,0xe2,0xfb,0x2c,0xf4,0xe3,0x71, +0x82,0xa7,0x40,0x8f,0x62,0x21,0xd1,0x05,0xf5,0xa5,0x0d,0xf9, +0x7a,0x94,0xcd,0x80,0xbb,0xb8,0x89,0x9c,0xed,0x8e,0x1e,0xbc, +0xa9,0x0a,0xa7,0x50,0xce,0x8c,0x2c,0x3f,0x4d,0x4e,0x77,0x9f, +0xbe,0x78,0x5d,0x15,0xec,0xa4,0xb5,0xcc,0xbf,0x74,0xec,0x89, +0x01,0x8c,0xd5,0x86,0x09,0xbb,0xbe,0xb1,0x70,0xe5,0xab,0x2c, +0x6b,0xf5,0x2e,0xe8,0xce,0x39,0x84,0x93,0x42,0xf1,0xb3,0x88, +0xa6,0x6f,0xdb,0xe1,0x93,0x32,0x50,0xe2,0xe0,0xf7,0x7e,0xec, +0x07,0x13,0x28,0xea,0xc7,0x22,0xd8,0xac,0x83,0x9b,0x31,0xd6, +0x90,0xda,0x80,0x09,0x56,0x19,0x42,0x38,0xb3,0x17,0x3f,0xb0, +0xc4,0x89,0x66,0x0b,0x5d,0x4e,0xec,0x39,0xe9,0x72,0x32,0x46, +0x9f,0x07,0xab,0x04,0xf0,0xcc,0x83,0xb9,0x79,0xe9,0x5e,0x69, +0xde,0x29,0xde,0x9c,0xf8,0x48,0x51,0x49,0xcc,0xea,0x77,0xd5, +0xe9,0x94,0x7a,0x58,0xf0,0x43,0x6e,0xfd,0xbb,0x7b,0x1c,0xb8, +0x63,0x68,0x43,0x8c,0x1b,0x37,0xb6,0x6c,0xad,0xf0,0xb0,0xe4, +0x87,0xf7,0x5c,0xb5,0xbf,0x68,0xc3,0x85,0x22,0x4b,0x9c,0xf1, +0x3d,0x13,0xe4,0xd6,0xcf,0x6d,0x77,0xe4,0xef,0xbd,0xbd,0x34, +0xda,0x9c,0x47,0xf9,0xaf,0x31,0x31,0x44,0x1c,0xcf,0xec,0x0a, +0x4b,0xba,0xa6,0x46,0x43,0x55,0x1b,0x8d,0x0c,0xcf,0xd8,0xfc, +0xaa,0xec,0x0b,0x19,0xb5,0x9c,0x30,0x9d,0xc1,0xe5,0x47,0x16, +0x44,0xd0,0xc8,0x10,0x19,0x7e,0x40,0x6f,0xca,0x4a,0x26,0x4d, +0x9f,0x42,0xb0,0xc7,0xe5,0x0d,0x3f,0x27,0xa9,0x25,0xbd,0x8e, +0x79,0x05,0x6e,0xaa,0xa2,0x0e,0x93,0x48,0x23,0xc3,0xf9,0x32, +0xc3,0x54,0xde,0x0b,0x3f,0x36,0x9e,0xb1,0x6a,0x69,0x83,0x25, +0x9f,0x95,0x9d,0x91,0x9b,0x9e,0xcb,0xd9,0x41,0x19,0xae,0xc2, +0x0e,0x3c,0xcb,0xe2,0xd8,0x02,0x2f,0x78,0x5f,0x26,0xb0,0x4c, +0x4b,0x7a,0x36,0x75,0x0b,0x22,0x55,0xae,0x88,0x6d,0x42,0x33, +0x31,0x6a,0xda,0xda,0x30,0xda,0x93,0xe8,0xba,0xeb,0x15,0xe7, +0x01,0xa9,0x9d,0xb1,0x09,0x31,0x69,0xd8,0xd8,0xb2,0xad,0x9c, +0xbe,0x37,0xec,0x3a,0xe4,0x70,0xd1,0x56,0xaa,0xec,0x0d,0x20, +0x0f,0xa4,0x21,0x57,0xff,0x61,0x9c,0xcb,0x3b,0xff,0xd3,0x64, +0x88,0x53,0x16,0xb2,0x29,0xab,0xd8,0xb9,0x4e,0x9c,0x6b,0xf6, +0xd7,0x47,0x9d,0xe2,0x6a,0x06,0xff,0xc6,0x16,0xa2,0x58,0x09, +0xdb,0x47,0x56,0x32,0x97,0xf1,0x73,0xf2,0x44,0xa8,0xd7,0x64, +0x9f,0x21,0x43,0x46,0x4e,0x59,0x29,0x94,0x99,0x0d,0xbe,0xab, +0xf6,0xcd,0x0c,0xe0,0x96,0xe0,0x4c,0x36,0xc5,0x4a,0xaa,0xc3, +0x2f,0x4f,0x49,0x2d,0x51,0xeb,0x67,0xe1,0x83,0x62,0x18,0x5b, +0xff,0x7d,0x35,0x37,0x07,0x4f,0x92,0x06,0xf3,0x3a,0x79,0xb9, +0xce,0xc5,0x52,0x7e,0xcf,0x90,0x6d,0xbf,0x43,0x13,0x37,0x62, +0x8c,0x2e,0xe4,0xca,0x40,0xdd,0xc5,0xc2,0x7e,0xe3,0x3c,0xde, +0xdb,0xd4,0xd1,0x48,0xd7,0x58,0x52,0x7e,0x23,0x24,0xd7,0x34, +0xd3,0x34,0xc5,0x60,0x38,0x91,0x0f,0xbe,0x74,0xb0,0xdb,0xb7, +0x8d,0xc3,0x9c,0x30,0x92,0x68,0x1c,0x6b,0x7e,0x56,0x77,0xf8, +0x1c,0x7f,0xec,0x72,0x54,0xe7,0xa1,0x2e,0x3a,0xc1,0x4a,0xe7, +0x08,0x26,0x33,0x06,0xe1,0x49,0x97,0xd4,0xc0,0x0e,0x5c,0xe8, +0x04,0xc7,0xb1,0x59,0x95,0xe9,0x17,0x52,0x69,0xe8,0xed,0x63, +0x70,0xe5,0xf1,0x79,0x51,0xab,0x64,0xdb,0x0e,0x87,0x05,0x59, +0x4d,0xd9,0x2c,0x85,0xde,0x1b,0xcc,0xb5,0xea,0xea,0x9f,0xe3, +0xd5,0x12,0xde,0x9c,0xfd,0x05,0x5c,0x55,0xf1,0x57,0x26,0xbe, +0x34,0xb6,0x34,0xb6,0xdc,0x28,0x89,0xf7,0x43,0x62,0x3b,0x73, +0xd3,0xe2,0x7a,0x6b,0x3e,0x23,0x27,0x2d,0x2f,0x35,0x8f,0x73, +0x04,0x27,0x5c,0x8d,0xae,0x98,0xc4,0xce,0xcc,0xf5,0xf9,0x5d, +0x46,0x81,0x55,0x4b,0x86,0xb4,0x61,0xf5,0x23,0xd6,0x90,0x4e, +0xef,0x4e,0xe1,0x31,0x45,0xb2,0x93,0x0d,0x61,0x3a,0xeb,0x87, +0xcb,0xcc,0xf1,0x8b,0x45,0xf8,0x7e,0xa9,0x2e,0x5f,0x50,0x92, +0x55,0x96,0x41,0x71,0xc7,0xb6,0x81,0xfb,0xe0,0x24,0xec,0x47, +0x1b,0xb6,0xf8,0x5e,0xf6,0x83,0xe4,0x17,0xdc,0xe6,0x91,0xc5, +0x44,0x18,0x03,0xb3,0x45,0xa9,0x6e,0xea,0x26,0x08,0xe4,0x5c, +0xd0,0xb9,0xa0,0xb3,0xc1,0x94,0x6b,0x06,0x0f,0x1f,0x18,0xf6, +0xeb,0xb3,0xfb,0xa7,0x3c,0xc3,0xc3,0xf6,0xb0,0xd5,0x31,0xab, +0xe3,0x03,0x4f,0x2f,0x83,0x52,0x0f,0xb0,0xd6,0x85,0xbc,0xaf, +0xdc,0x53,0xdf,0xc3,0x28,0x38,0x3b,0x30,0x3b,0x20,0xab,0xf2, +0x62,0xd9,0xcd,0x82,0x21,0xcb,0x1c,0xfe,0x80,0xae,0xf7,0x2e, +0x4f,0x93,0xb0,0xe4,0xb0,0xa4,0xb0,0x44,0x0f,0x07,0xbe,0xc9, +0xae,0xc5,0xb2,0xce,0xd4,0xd7,0xde,0xd7,0xc9,0xcf,0x6d,0xeb, +0x09,0x3e,0xc6,0xb8,0xe5,0x0c,0x7d,0x9c,0x53,0x11,0x17,0x77, +0x0b,0x1a,0x6c,0xd1,0xd9,0xa2,0xb3,0x05,0xe7,0x38,0x68,0x81, +0xbb,0x24,0xc7,0xa3,0xc4,0xbb,0xc2,0xc7,0xcc,0x43,0x77,0xdf, +0xb6,0xa0,0x74,0x6b,0xfe,0x5e,0xd6,0xcd,0xb2,0xc1,0xba,0xbe, +0x3d,0xc3,0x5e,0xb7,0x02,0xd2,0x9a,0x79,0xdd,0x74,0xc3,0x3c, +0x8b,0xa2,0xf6,0xba,0xba,0xd6,0xfc,0x0e,0xae,0x16,0x77,0xb3, +0xf1,0x29,0x71,0xa9,0xe7,0x53,0xad,0x53,0x79,0xf7,0x1d,0x72, +0xc3,0x0d,0x0e,0xf9,0x76,0x7c,0x7e,0x4a,0x5e,0x7a,0x76,0x26, +0x47,0x09,0xbe,0xd7,0x2d,0xfb,0xfb,0xf6,0x83,0x76,0x3e,0x7c, +0x9d,0x41,0x83,0x76,0xb1,0x36,0x27,0xa8,0x52,0x5a,0xbb,0xdf, +0x79,0xef,0x1e,0x07,0x77,0xe7,0x42,0xf7,0x12,0xbf,0xf2,0x73, +0xe7,0x62,0x62,0xce,0xc5,0x70,0x6f,0xc5,0x6f,0x09,0xec,0x68, +0xc1,0x1d,0xf7,0x60,0x5e,0x33,0xce,0xbb,0x0d,0x5a,0xcd,0xa8, +0x75,0xcd,0x78,0x3b,0x2e,0xb7,0x81,0xe5,0x1b,0x71,0xb6,0x0d, +0xcc,0x5e,0x8f,0x5b,0xac,0x61,0x8b,0x7a,0x0f,0xb3,0xd0,0x8b, +0xa0,0x8a,0xed,0x53,0x78,0x5f,0x0d,0xce,0xe0,0xe7,0x16,0x77, +0xd1,0x5a,0xd2,0x97,0x35,0x59,0x66,0x2a,0xcb,0x32,0xfb,0xba, +0xb3,0xbc,0xfd,0x8c,0xa4,0x2f,0xbb,0xfc,0x6c,0xd7,0x5a,0x50, +0x9f,0x02,0x25,0x4c,0x42,0xb7,0xd2,0x88,0x2e,0x44,0x93,0x64, +0xdd,0xf3,0x9b,0xce,0x6d,0x69,0x4b,0xe3,0x8f,0x0f,0x85,0xdd, +0x0d,0xbb,0xc8,0x61,0x28,0xd6,0x90,0xe2,0x87,0x29,0x3f,0xc7, +0xbe,0xb6,0x8c,0xe1,0x8f,0xad,0x08,0x59,0xee,0xb5,0xe6,0x1f, +0x73,0xc9,0xfd,0x8f,0xb9,0xf8,0x40,0x91,0x64,0x2e,0x55,0xff, +0x65,0x2e,0xc7,0xe6,0x4b,0xe6,0x72,0x24,0x3c,0xd0,0x62,0xca, +0x16,0xc9,0x5c,0x86,0x99,0x1b,0x95,0x17,0x7e,0x49,0x50,0x8b, +0xff,0xe9,0xdc,0xcf,0xef,0xcc,0x85,0x7a,0xe3,0xbf,0xe6,0xf2, +0x99,0x9d,0xfa,0xd6,0x25,0xf5,0x56,0x7c,0x5a,0x56,0x4a,0x76, +0x72,0x0e,0xb7,0x1b,0x76,0x53,0x73,0xf1,0xc5,0xc4,0x7f,0xcc, +0x25,0x9d,0x69,0xfd,0x2f,0x73,0x19,0x49,0x14,0xc6,0x12,0x6c, +0x0f,0xc2,0x99,0xd4,0xb9,0x64,0x9d,0x4e,0x75,0x3f,0x64,0xbd, +0x53,0x76,0x5a,0x83,0x49,0xf8,0xa1,0x74,0xaa,0x1f,0xfe,0xa3, +0xec,0x54,0xc4,0x52,0xb8,0x75,0x82,0xa0,0x06,0xe8,0x83,0x06, +0x83,0x9a,0xe2,0x46,0x49,0xfe,0x47,0x92,0x5d,0xd2,0x18,0x95, +0x5d,0xfa,0x43,0x78,0x40,0x5e,0x43,0xf1,0xbc,0xc1,0xd7,0xa3, +0x3a,0xd3,0x52,0xaf,0xcd,0x62,0xe9,0x20,0xe9,0x4c,0xcf,0x63, +0x15,0xf3,0xf0,0x33,0xd2,0x27,0x6e,0x05,0x65,0x5d,0x54,0x16, +0x17,0xca,0xa1,0xc6,0x98,0x45,0x4d,0x7d,0x9c,0x44,0xa7,0xe4, +0x53,0x59,0x95,0x09,0x68,0xbf,0x7c,0xf5,0x47,0x15,0x7c,0xae, +0x22,0x4c,0x61,0x4e,0x6c,0x3a,0xba,0xe9,0x90,0x19,0xe7,0x12, +0x11,0x78,0xc8,0x62,0x0a,0x8d,0xb2,0x29,0xfa,0x4a,0xb0,0x93, +0x79,0x5c,0x91,0xd7,0x9f,0xa6,0x96,0x7e,0xe5,0xfc,0x37,0x67, +0x41,0x85,0x13,0x8d,0x98,0xb3,0xf9,0xa7,0x0b,0x0b,0x55,0x7b, +0xd8,0x7f,0x4a,0x1d,0x97,0x61,0xe6,0xb7,0xf4,0x20,0x29,0x67, +0xae,0xbd,0xf8,0x00,0x32,0xa5,0xc3,0x68,0xa9,0x23,0xae,0xc1, +0xff,0x45,0x70,0xee,0x09,0xca,0xad,0xde,0xc7,0x4f,0x64,0xed, +0xce,0xfd,0x37,0x4b,0xef,0xa6,0x3e,0x52,0xa1,0xd3,0xbc,0x1c, +0xd7,0x33,0x99,0xc6,0xd2,0x82,0x49,0x47,0x76,0x6a,0x8f,0x9a, +0x70,0x55,0xda,0x49,0xb7,0xf2,0x18,0x11,0x9b,0x07,0xae,0x40, +0xba,0x10,0xc4,0x0a,0x4b,0x71,0x3b,0xc1,0x24,0x98,0x0c,0x49, +0x8c,0xe8,0x85,0x2b,0x09,0x3a,0x52,0x12,0xea,0xc8,0x80,0x23, +0x0e,0x91,0x98,0x86,0xe8,0xc6,0xe8,0x26,0x0e,0x92,0xa4,0x06, +0x9f,0x5a,0x6f,0x09,0x7d,0x53,0x0b,0x1d,0x47,0x57,0x63,0xd5, +0xc8,0x65,0xc8,0xd4,0xb9,0x78,0x79,0x74,0x04,0x97,0xf5,0x75, +0x30,0x53,0x3a,0x48,0x63,0xd3,0x61,0x15,0x73,0xd1,0x8f,0x2c, +0x8f,0x5f,0x96,0xa8,0x99,0xdb,0x53,0xd0,0x5e,0xde,0xdc,0xc0, +0x35,0xe0,0x10,0x2b,0x75,0x3b,0x8a,0x4f,0xb2,0xcb,0xe2,0xad, +0xf5,0x57,0xeb,0xab,0xef,0xc9,0xb5,0xe7,0x5b,0x33,0x1a,0x72, +0xab,0xf3,0x4a,0xbd,0xab,0x0e,0x5c,0x08,0x58,0x7f,0x70,0x69, +0xc8,0xb4,0x88,0x24,0x2b,0x1e,0x3e,0x4f,0xfd,0x33,0xe3,0xfb, +0xb2,0x37,0xae,0xf0,0x7e,0xf0,0x1f,0x61,0xdc,0xc8,0xdf,0x10, +0x45,0xda,0x3c,0x6e,0x18,0xd4,0x39,0x54,0xd7,0xf1,0x8e,0x4d, +0x9b,0x7b,0x6c,0xca,0x38,0x85,0xfa,0x2a,0xe2,0xe4,0x69,0xeb, +0x6b,0x1a,0x60,0x93,0x61,0x9f,0xb7,0x9b,0xf2,0xb5,0xc5,0x62, +0x18,0x81,0xba,0x56,0xac,0xbb,0x0c,0x47,0x9b,0xf1,0x68,0x3f, +0x64,0xb4,0x62,0x46,0x9f,0x5c,0x8e,0x31,0x56,0x10,0x63,0x88, +0x81,0x36,0x10,0xa8,0x83,0x85,0x56,0x50,0xa8,0x43,0xcd,0xcd, +0xda,0x87,0xe0,0x2c,0xbd,0x56,0x50,0x95,0x24,0x8e,0xe5,0x66, +0x40,0x2f,0x39,0x3b,0xcd,0xca,0x7e,0x81,0xb9,0xac,0xc4,0xf4, +0xcf,0xbe,0xec,0xa6,0xf3,0xcf,0xa9,0xad,0x2f,0x88,0xad,0x5a, +0x07,0xbb,0xa6,0x08,0x5f,0x31,0xc9,0xdd,0x4a,0xff,0x07,0x39, +0x3a,0xcf,0xa6,0xfc,0x4b,0x8e,0x5c,0x29,0x39,0x9a,0xab,0x57, +0xf4,0x5f,0xe4,0xa8,0xe2,0xff,0x81,0x1c,0x6d,0xa7,0x73,0x9b, +0xb0,0x3b,0xd1,0x2a,0xde,0x72,0xdf,0x11,0x9f,0xc3,0x3e,0x47, +0x39,0xd8,0x0b,0xbc,0x30,0x19,0x79,0x58,0x6c,0x2c,0x09,0x4a, +0x88,0x93,0xe9,0x98,0x0e,0xb0,0x26,0xe1,0x46,0x91,0xf2,0xc3, +0x89,0x06,0x3c,0x28,0x65,0xfc,0x92,0xfd,0xb2,0xf8,0xec,0x81, +0xb3,0xfe,0x67,0x02,0xda,0x93,0xf9,0x43,0x8f,0x0e,0xfc,0x16, +0x70,0x9d,0x03,0x1f,0x61,0x13,0x89,0xfb,0x1f,0xa8,0x94,0x3b, +0x3d,0x87,0x89,0x21,0xb9,0x87,0x25,0xeb,0x19,0x1a,0x9c,0x4b, +0x08,0x96,0xac,0x85,0x12,0x56,0x31,0x5e,0xdc,0xf1,0xbf,0xd3, +0x2b,0x6b,0x73,0xb0,0xfe,0xff,0xa7,0x57,0x59,0x8a,0x68,0x72, +0x47,0x67,0x83,0x38,0xdb,0xec,0xaf,0x0f,0x3a,0x25,0x8a,0x52, +0x4d,0xfa,0xa1,0x9f,0x29,0x28,0xcf,0xa9,0xc9,0x6d,0x33,0xcf, +0xe5,0x1d,0x16,0x6a,0x69,0x2c,0x35,0x2c,0x35,0xe3,0xab,0xf2, +0x2a,0x8b,0x0b,0x8b,0x38,0xc1,0xdd,0x8f,0x74,0xc0,0x7e,0x58, +0x21,0x1e,0xc5,0x15,0xe0,0x6e,0x8e,0x2d,0xd6,0xd0,0x82,0xb3, +0x07,0x28,0x6d,0x6d,0x6b,0x61,0x51,0x05,0xd6,0x92,0x4d,0xe2, +0xa4,0x5b,0xec,0x34,0x71,0x12,0xb9,0x92,0x7d,0xab,0xb6,0xa5, +0x7e,0x4f,0x39,0xef,0xe4,0xba,0x6b,0xcf,0xe6,0xfd,0x9c,0xe2, +0xd3,0xe3,0xc4,0xb8,0x46,0xb7,0x62,0x67,0xbe,0xeb,0x5e,0x7e, +0xc8,0xfb,0xea,0xde,0x2e,0x07,0x4e,0x5c,0x65,0x43,0x9e,0xe1, +0x38,0x98,0xa1,0x09,0x3e,0x16,0x39,0xcd,0xfc,0x9c,0x6c,0xcd, +0xa2,0x1d,0x15,0xc3,0x85,0xfd,0x65,0x7d,0x35,0x4e,0x95,0xbc, +0xdc,0x69,0xbb,0xdb,0x46,0x2f,0xab,0x32,0xe7,0x6a,0xcf,0xba, +0xf8,0xf3,0x71,0xb1,0x71,0xe7,0xed,0x4b,0xf8,0xb9,0x5a,0xb8, +0x50,0x8e,0xae,0x2e,0x59,0x16,0xfc,0x77,0xa9,0x4f,0xb2,0x6f, +0xe5,0x73,0xd3,0x59,0x9c,0x17,0x9a,0x60,0x01,0x1b,0x52,0x61, +0x6a,0x16,0x4c,0xc8,0x57,0x39,0xda,0xbc,0xf5,0xd0,0x86,0x70, +0xcd,0x08,0x15,0x50,0x66,0xab,0x53,0x2b,0xd2,0x4b,0x32,0x69, +0x84,0x32,0x10,0xfe,0x22,0x7d,0x18,0x0e,0x1a,0x7a,0x94,0x2e, +0xed,0x96,0xc3,0x04,0x8a,0xe6,0xd2,0x0f,0x50,0x34,0xf7,0x11, +0x4e,0x93,0xb5,0xd8,0xfe,0x09,0x9f,0x5e,0x80,0xd9,0x09,0xd2, +0xca,0x97,0x0d,0x83,0x6a,0x27,0x97,0x44,0xad,0x93,0x69,0x47, +0x05,0x06,0xea,0x4e,0x59,0xc2,0xa4,0x18,0x28,0xfd,0xc8,0x3c, +0xb9,0xd0,0xf0,0x1d,0x4d,0x6f,0x2f,0x4e,0xff,0x00,0xb6,0xaa, +0x98,0xc4,0x44,0x17,0x7c,0x55,0x58,0xa4,0x7a,0x9d,0x15,0x1b, +0x40,0x4e,0x8c,0xe1,0x72,0x0f,0x9b,0x8b,0x56,0xa4,0x57,0x1c, +0x6f,0xc4,0x36,0xae,0xa6,0x6f,0x74,0xfc,0xd3,0xcb,0xbb,0xc3, +0x98,0xed,0x19,0xed,0xe5,0x7d,0x12,0x72,0xb1,0x1b,0xef,0xb3, +0xf4,0x45,0x0e,0xa1,0x7e,0x6b,0x08,0xcb,0xa5,0x7d,0x53,0x8a, +0x7c,0x22,0x2d,0x71,0xaf,0x95,0x0e,0x81,0xd8,0x44,0xa1,0x73, +0x13,0x2b,0x66,0xa0,0x32,0xc1,0xb5,0xb7,0x60,0x2d,0x03,0x01, +0x9b,0xfe,0x7d,0x15,0x46,0x5f,0x6d,0xbe,0x45,0xb9,0x80,0xe8, +0x88,0x13,0x88,0x36,0xae,0xbd,0xcb,0x0a,0x6a,0xda,0xf4,0xaf, +0x77,0xe9,0x5f,0xfb,0x27,0xc3,0x66,0x6d,0xa4,0x7f,0xbb,0x89, +0xef,0x11,0x73,0x85,0xd8,0xc1,0x62,0x8d,0xb8,0x9e,0x64,0x17, +0x67,0x97,0x67,0x96,0xd9,0xa4,0x51,0xee,0x0b,0xe6,0x23,0x4b, +0xd1,0x1c,0x96,0x32,0x16,0x07,0x8a,0xf6,0x66,0xec,0x4b,0xf1, +0x56,0xc1,0x2a,0xd3,0xbf,0x26,0x77,0x31,0xb8,0x05,0x12,0xc8, +0x22,0xb1,0xf6,0xa5,0xa4,0x0b,0x33,0x93,0xf8,0xef,0xf6,0x71, +0xf0,0xa5,0x1c,0xe4,0x08,0xd3,0x9a,0x15,0x58,0xe1,0x5f,0xbc, +0xbf,0x50,0x45,0x59,0x38,0x22,0xd8,0x90,0x5e,0xdc,0x00,0xf3, +0x41,0x2e,0xad,0xfc,0x28,0xe9,0xa0,0x12,0xba,0x18,0x81,0x0b, +0xce,0x97,0x76,0x6f,0x18,0xb2,0xfa,0x27,0xcc,0x8f,0xda,0xc8, +0xd0,0x55,0x0e,0xb6,0xcc,0x7e,0x1c,0x67,0xae,0x3d,0x6f,0x7d, +0x8b,0x05,0xff,0xf6,0xdb,0xfe,0x6f,0x0b,0x40,0xc6,0xc1,0xee, +0x3e,0xb4,0x66,0x62,0x9a,0xcf,0x74,0x0e,0xa8,0x0a,0xfe,0xe9, +0xa4,0xe7,0x87,0xfa,0x97,0xf9,0x4f,0xb8,0x0e,0xfc,0x7b,0xe4, +0xaf,0x21,0x45,0x3b,0x04,0xb1,0xbe,0x1b,0x1c,0x16,0xeb,0xcc, +0xe6,0x1e,0x6f,0x1d,0xdc,0xa0,0xa5,0xba,0xf9,0xe0,0x5e,0x4d, +0xd9,0x46,0x26,0x49,0x47,0xe9,0x26,0x03,0xef,0xb5,0x0c,0xbd, +0x7a,0x6d,0x70,0x6f,0xd3,0x90,0x1a,0xa5,0x15,0xd4,0x47,0x87, +0xa9,0x8f,0x16,0x49,0x3e,0x7a,0x96,0x4d,0xce,0x4e,0xa4,0x3e, +0x6a,0x9c,0xc0,0xbb,0x6d,0xd0,0x5e,0xb6,0x58,0x2f,0xfa,0x14, +0xbf,0x7e,0xc8,0x66,0x38,0xe0,0x2a,0xb7,0x99,0x39,0xa0,0x6d, +0xb3,0x76,0xd6,0xa6,0x12,0x53,0xfe,0xe7,0x9b,0xfd,0xcf,0x52, +0xa4,0x5a,0x86,0xc4,0x95,0x1d,0xdb,0xbf,0xd5,0x2e,0x6e,0xe3, +0xb3,0x3d,0x4a,0xb2,0x8a,0x73,0x0b,0xf3,0x54,0x8a,0x3c,0xca, +0xbd,0x6a,0xbc,0x77,0xed,0x59,0xe7,0xb1,0xd4,0x97,0x5a,0xd3, +0xcf,0xc5,0xdf,0x56,0xdf,0x6a,0x18,0x72,0x7a,0xb0,0xe7,0x95, +0xe4,0xca,0x9a,0x85,0x5b,0x4a,0x0c,0x2a,0x38,0x5c,0x4d,0x21, +0x53,0x7e,0xb1,0x12,0x78,0x33,0xbe,0x0e,0xf6,0xf6,0x86,0x92, +0xfb,0x95,0x79,0x96,0x73,0x38,0x84,0xcf,0x09,0x4c,0xeb,0xc6, +0x69,0xf0,0xc1,0xeb,0x6e,0x3c,0x69,0xf2,0x1d,0x7e,0x80,0x4b, +0x4c,0x60,0x09,0x5e,0x64,0x4c,0x22,0x8d,0x0e,0x9b,0x8c,0xd6, +0x44,0x7c,0x92,0x06,0x6a,0x45,0x3f,0x14,0x9d,0xe8,0xe1,0xed, +0xc3,0xad,0xc3,0x2d,0x22,0x39,0xe1,0x6f,0x90,0x51,0x0f,0xdd, +0xf0,0x18,0x4c,0x3a,0xd0,0xe4,0x8e,0xd1,0x06,0xb4,0x30,0x07, +0x8b,0xd5,0xb8,0xd5,0x02,0xb6,0x2e,0x47,0x6f,0x33,0xf0,0xc6, +0xcf,0x7a,0xa9,0x87,0xba,0x77,0xa2,0xfb,0x73,0x56,0x7c,0x6f, +0x07,0x49,0xeb,0x4e,0xea,0x8b,0xef,0xb6,0x4e,0xe2,0xa3,0xf4, +0xdf,0xf5,0x05,0x8e,0xfa,0xb7,0x2f,0xb0,0x61,0x9b,0x54,0x09, +0xb1,0x4f,0x6a,0x77,0xac,0xfc,0x17,0x43,0x13,0xf0,0x49,0xc6, +0x28,0x3c,0x71,0x50,0x0d,0xec,0xc1,0x81,0xe2,0x35,0x3f,0x36, +0xa3,0x2a,0xed,0x42,0x32,0x4d,0xc0,0x34,0x81,0x68,0x9e,0x58, +0x70,0x78,0x95,0x6c,0xfb,0x91,0x88,0x20,0x9b,0x29,0x3a,0x52, +0x56,0xec,0x63,0x6e,0x54,0x54,0xff,0x1a,0x47,0x13,0xf0,0x99, +0x9f,0x61,0x8f,0x2a,0xf6,0x33,0xe7,0x4b,0xce,0x97,0xc5,0x94, +0x19,0x27,0xf3,0xbe,0xa8,0x66,0x83,0x63,0xb4,0xe7,0xd3,0x0c, +0x9c,0x5d,0x90,0x59,0x98,0x56,0xcc,0xed,0x85,0x6d,0x34,0x03, +0x3b,0x61,0x0a,0xab,0x9e,0xb5,0xef,0x37,0x19,0x44,0xd1,0x0c, +0x9c,0x41,0x49,0xee,0x24,0x56,0x4e,0x01,0x1b,0x2a,0x54,0x49, +0xca,0x86,0x6e,0x03,0x50,0xda,0x5a,0xd2,0xc5,0x23,0x7b,0xd3, +0xb6,0x7d,0xff,0x45,0x4e,0x87,0xd9,0x2f,0xb7,0x32,0xc6,0x8f, +0x37,0x4a,0xdb,0xc5,0x26,0xdd,0xed,0xeb,0x4d,0xbd,0xc7,0xc5, +0x8c,0x4c,0x24,0xd9,0xfb,0x72,0x5d,0x73,0xf6,0x98,0x86,0xc8, +0x43,0xf5,0xc3,0x38,0x3a,0xd4,0x78,0xf8,0x13,0x3f,0x93,0xee, +0x4d,0x4f,0x16,0xaf,0xb2,0x3b,0xc2,0x93,0x8c,0x81,0xc9,0xfa, +0x23,0xff,0x87,0x62,0x95,0x14,0xbf,0x24,0xbf,0x04,0xff,0xc6, +0x52,0xde,0xed,0xaa,0xc1,0x4b,0xbb,0x3e,0xae,0x1b,0xc2,0x28, +0x89,0x79,0x4d,0x39,0x0c,0x25,0x60,0xb3,0x09,0xd8,0x4d,0x47, +0x3b,0xe6,0x1f,0x15,0xda,0xf0,0x7f,0x54,0x68,0xbd,0x47,0x55, +0x68,0x43,0xfe,0xbb,0x0a,0x6d,0xc6,0xbf,0x2a,0xb4,0xbf,0x8d, +0xaa,0xd0,0xa6,0xff,0x0f,0x2a,0xb4,0xee,0x30,0x8d,0x40,0x08, +0x8d,0xc7,0xe7,0x33,0xce,0x67,0xc6,0xa4,0x73,0x70,0xaa,0x43, +0xcc,0x33,0x07,0x7f,0xe6,0x68,0xd0,0x91,0x80,0xa8,0x40,0x4a, +0xba,0xc5,0x75,0x82,0x2e,0x73,0xca,0xf2,0xb0,0xe9,0x11,0x37, +0xa9,0x59,0x65,0x88,0xc7,0x14,0x3d,0x26,0x49,0xda,0xae,0xdb, +0x52,0x9c,0xd3,0x95,0xa0,0x16,0xd7,0x78,0x7e,0x28,0xfa,0x5b, +0x4e,0xdc,0xd1,0x21,0xec,0x68,0x12,0x77,0xb4,0x31,0xf0,0x18, +0xf4,0x89,0x25,0x3e,0x6e,0x63,0xe1,0xf1,0xe2,0x7f,0x5e,0x7c, +0x27,0xae,0x24,0x91,0x65,0xfe,0x0d,0xc1,0xc5,0xb6,0xc1,0x7c, +0xba,0x47,0xba,0x43,0xbc,0x3b,0x27,0x7e,0xb0,0x9a,0x14,0xb6, +0xe5,0xdf,0x4f,0xb8,0x68,0x9c,0xc4,0x47,0xc8,0x7d,0x37,0xf9, +0x38,0x70,0x50,0x0e,0xcb,0x48,0x8a,0x43,0x8a,0x61,0xac,0x55, +0x67,0x32,0x7f,0xb8,0x39,0xb4,0x3f,0xb8,0x9e,0x0e,0x21,0x8c, +0xc4,0x99,0xc7,0x6e,0x3e,0x65,0xd6,0x17,0xc7,0x9f,0xea,0x39, +0x72,0x2d,0xa2,0x8d,0x5e,0x74,0x73,0x41,0x46,0xf0,0xc5,0x4d, +0x68,0x82,0x5e,0xd4,0x62,0xe2,0x73,0xe2,0xf2,0x62,0xf2,0x8c, +0xe3,0xf8,0xa3,0xbe,0x51,0xde,0x11,0xfb,0x38,0xfc,0x54,0x6c, +0x82,0x3b,0xcc,0xda,0x13,0x86,0x87,0x1d,0x65,0x7b,0x8f,0x86, +0x1d,0xda,0x3d,0xc5,0x5a,0x6a,0x5f,0xd4,0xc2,0x0c,0xe4,0xe7, +0x0e,0x52,0xec,0xd5,0x75,0xee,0x26,0x4c,0x50,0xc5,0xdb,0xb7, +0xe1,0x05,0xf3,0xf7,0x07,0x60,0x4b,0x70,0xf0,0x28,0xce,0x75, +0xc6,0x89,0xb2,0x06,0xdb,0xa2,0xef,0x52,0x7e,0x8d,0x05,0x0d, +0x95,0xef,0xb1,0x68,0x89,0xb4,0x3c,0x75,0x8d,0x69,0x48,0x4a, +0xae,0x57,0x53,0x74,0xa1,0x31,0x8d,0x60,0x52,0x1d,0xc2,0xa5, +0xa3,0xa8,0xee,0x84,0x13,0x64,0x8d,0x76,0x25,0xdf,0x27,0xbd, +0x39,0x07,0x2b,0x55,0x7e,0xc1,0xc2,0xe5,0xd2,0x67,0x2f,0x33, +0x0d,0xc9,0xef,0x3e,0x6b,0xc5,0xce,0xc0,0xc3,0x64,0x39,0xe8, +0x3d,0x67,0xe0,0x1c,0xea,0x91,0xb9,0xa0,0xfb,0x13,0x23,0x7c, +0xe1,0x4e,0xd6,0x63,0xc4,0x3d,0x16,0x28,0xed,0x26,0xab,0x31, +0xe2,0x31,0x2b,0x1e,0xa3,0xdf,0x18,0x4d,0x59,0xe9,0x75,0xd5, +0xe7,0x14,0x8a,0xc1,0x82,0xc9,0xef,0xfe,0xf1,0x13,0xfd,0x87, +0x30,0x1b,0xcf,0x90,0xf0,0x9a,0x80,0xce,0xd0,0x92,0xbd,0xa1, +0x7c,0xaa,0x47,0x86,0x49,0x82,0x33,0x87,0x69,0x34,0x04,0x16, +0xde,0x48,0x7f,0x1d,0x7b,0xdb,0xee,0x3c,0x7f,0x74,0x4b,0xd0, +0x32,0x1f,0x7d,0x8e,0x12,0xd2,0xdd,0x24,0xc5,0x32,0x49,0x7e, +0xde,0xa8,0x96,0xfa,0x4b,0x5f,0x68,0x77,0x68,0x2b,0x87,0xef, +0x87,0x92,0xf8,0x1d,0x31,0x1b,0x4e,0xeb,0xd7,0xc7,0xf1,0x27, +0xae,0x1d,0x1d,0x8a,0xb8,0x4a,0x19,0x58,0x4d,0x19,0x59,0xab, +0x17,0x9f,0x6d,0xaf,0x06,0x01,0x7f,0xc2,0x36,0x98,0xfa,0x3b, +0x2c,0xe6,0xda,0xf0,0x47,0x30,0x63,0xe1,0xcb,0x24,0xf8,0x3c, +0x1d,0xc6,0x14,0x7a,0xf4,0xf3,0xe8,0x60,0x8a,0xbd,0x01,0x58, +0x70,0x22,0x89,0x72,0x58,0xa5,0xd3,0x30,0xe9,0x2c,0x28,0xc7, +0x71,0x28,0xc7,0xb7,0x06,0x8a,0x55,0xec,0x1c,0xfc,0x14,0x37, +0x21,0x8f,0x2e,0xcb,0x38,0xdf,0x92,0xf0,0xba,0x4e,0xd5,0x27, +0xbb,0xb4,0x29,0xa6,0xf6,0xb3,0xc5,0x09,0x2b,0x29,0x1e,0x7c, +0x73,0xa7,0xbc,0xf1,0xdc,0xb7,0x52,0xd3,0x06,0x26,0xe6,0xf5, +0x16,0x30,0x9e,0x22,0xa8,0x33,0x09,0x17,0x95,0xa4,0x72,0x97, +0x99,0x44,0xd4,0x06,0xdd,0xad,0xa8,0x2b,0x2e,0xd6,0x05,0x99, +0xe8,0xc6,0xe0,0xb8,0x3a,0x17,0x18,0x27,0x13,0x1e,0x5d,0x12, +0x6f,0x30,0x1b,0xfc,0xd3,0x6e,0xab,0x09,0x2e,0x0a,0x23,0xf6, +0x5d,0x71,0xed,0x6e,0x34,0xd1,0xc3,0x59,0xf3,0xff,0x2d,0xae, +0xad,0x29,0x68,0xe1,0xc4,0xe2,0x3e,0x85,0x1a,0x5b,0x72,0x3b, +0xff,0xeb,0xf4,0x97,0x1c,0xe0,0x3a,0xf2,0x5c,0x77,0x39,0x56, +0x18,0x2b,0x3e,0xed,0x61,0xcd,0x31,0x8e,0xcc,0xee,0x97,0x7a, +0x9f,0xb3,0x99,0x55,0xe9,0xd5,0x49,0x17,0x8c,0xd3,0xf8,0x43, +0x0e,0x81,0x0e,0xbe,0x76,0x9c,0xb8,0x10,0x17,0xf7,0xff,0xcc, +0x80,0xd6,0x33,0x12,0x56,0x11,0x50,0x15,0x58,0x28,0xe9,0x6d, +0x7b,0xa6,0xbb,0x25,0xee,0xe5,0x84,0x10,0x3c,0x4f,0xba,0x71, +0xe0,0x0f,0xbd,0x69,0xd8,0x69,0x02,0x1b,0x02,0x58,0x9c,0x66, +0xb9,0x02,0x97,0xae,0x92,0x95,0x9b,0x82,0xf2,0xd5,0xa1,0xbb, +0x45,0xaf,0x54,0xe0,0x11,0x73,0xca,0xe1,0xb8,0xf9,0x91,0x7d, +0x9c,0x47,0x54,0x64,0x94,0xd5,0x14,0x5c,0xca,0xa4,0x1a,0x28, +0xc1,0x22,0xe6,0x46,0x71,0xce,0xc5,0x64,0xb5,0xf8,0xba,0x73, +0x9d,0xa7,0xdf,0x70,0xe2,0x27,0xcc,0x99,0x9c,0xd3,0xb9,0x79, +0xaa,0x99,0x74,0xf8,0x0f,0xff,0xd1,0x0f,0x37,0x37,0x12,0xcc, +0x7a,0x59,0xb8,0x3f,0xb2,0x8f,0xd0,0x2b,0x2a,0xad,0x55,0xac, +0xfc,0x77,0x8b,0x95,0x0e,0x8b,0x81,0xe6,0xff,0x6e,0x87,0x2a, +0xc1,0xf7,0x49,0xa8,0x81,0xdf,0x26,0x4f,0x7d,0x0e,0x2f,0x18, +0x09,0x47,0x7a,0x71,0x0e,0x53,0xf0,0x8f,0x4c,0xb8,0x27,0x65, +0xc6,0x61,0xcd,0x07,0x7a,0xfc,0x1b,0xcc,0x0e,0xf0,0xd9,0x92, +0x4c,0xb8,0x0d,0xb7,0x4f,0xbc,0x44,0x86,0xe0,0x1b,0xb8,0x26, +0xca,0x24,0x99,0xf0,0x67,0xef,0x64,0xc2,0xf3,0x25,0x99,0x70, +0x41,0x9d,0xb2,0x17,0x9b,0x00,0x9b,0x20,0xcb,0x60,0x8e,0xd2, +0xc2,0xcf,0xfb,0xf1,0x73,0x48,0xd5,0xc1,0x54,0x9c,0x6a,0x08, +0x53,0xf1,0x25,0x6b,0x19,0x62,0x11,0x6a,0x1a,0x96,0x46,0x83, +0xf4,0x94,0x4a,0x60,0xaa,0x61,0x4c,0x33,0x27,0x54,0x0b,0xeb, +0x28,0x46,0x48,0x85,0x15,0xba,0xb8,0x02,0x4f,0xc9,0x61,0xee, +0x2e,0x16,0xb3,0xdc,0x29,0xfa,0xd6,0xc6,0xe9,0xb2,0x06,0x2b, +0x98,0x05,0x9f,0xf4,0x80,0x7a,0x0a,0x38,0xab,0x40,0x30,0x83, +0x5f,0x9e,0x5c,0x1e,0x29,0x81,0x84,0x80,0x83,0xdb,0xa7,0xcc, +0x94,0x20,0xfe,0x9f,0xcc,0xb7,0x35,0x2d,0xcf,0xe3,0xd5,0x12, +0xbf,0x3f,0xfd,0x3d,0x58,0xab,0x62,0x3d,0x13,0x5d,0x14,0x5d, +0x54,0xa2,0x3a,0x44,0x47,0xa3,0xf5,0x0d,0x71,0xa9,0x76,0xa9, +0xd8,0x53,0x3a,0x00,0x4a,0xe5,0xa0,0x92,0x02,0x6b,0x28,0x66, +0xd6,0x63,0x53,0x86,0x12,0x07,0xe3,0x7a,0x75,0x63,0xf8,0x28, +0xe3,0xf0,0x9d,0xa1,0xdb,0x38,0xfc,0xcc,0x00,0x18,0xc6,0x6f, +0xa6,0xe7,0x74,0x37,0xcd,0x1e,0x97,0x4e,0xe7,0x2e,0x7b,0xeb, +0x8d,0x7a,0xdb,0xb4,0x74,0x2e,0x98,0xf1,0x8f,0xaf,0x0d,0xdd, +0x68,0x7f,0x54,0xe9,0x59,0xe9,0x56,0xe9,0xca,0x09,0x57,0x85, +0xbb,0x74,0xa8,0x47,0x40,0x43,0x97,0xc2,0x19,0x07,0x39,0xb0, +0x7a,0x2c,0x66,0x7b,0xd0,0x81,0xae,0xa1,0x70,0xa6,0xc1,0x1a, +0xa6,0xc1,0xc7,0xdd,0x30,0x3b,0x05,0x76,0xab,0x80,0x33,0x83, +0xb2,0x53,0xef,0xf0,0x4c,0x40,0x80,0xee,0x94,0xf9,0x12,0x9e, +0x79,0xc3,0x7c,0x7d,0xa1,0xf1,0x05,0xc5,0x33,0xdf,0x9d,0x7e, +0x29,0xe1,0x99,0x4c,0x69,0xa8,0x25,0xa5,0xaa,0x83,0xac,0x78, +0x10,0x1b,0x49,0xd1,0xc3,0xfc,0xef,0xb3,0x7f,0xe4,0xe0,0x4b, +0x26,0x0c,0xbf,0xf0,0xc6,0xf1,0x66,0x33,0x9c,0xcb,0x9c,0x8b, +0x76,0x17,0x72,0xca,0x60,0x22,0xd5,0xba,0x69,0xe0,0x27,0xe2, +0x70,0xb7,0x90,0x7c,0x63,0x64,0x47,0xaf,0x62,0xc7,0x3d,0xd1, +0xd8,0x84,0x4d,0x32,0x54,0x2a,0x67,0x9a,0x53,0x25,0x45,0xdf, +0x63,0x14,0xe7,0x6a,0xb0,0x60,0x81,0x7f,0x10,0x21,0x0c,0xee, +0x89,0x61,0x8c,0xb0,0x59,0xda,0xb7,0x30,0xfe,0x99,0x30,0x9e, +0x11,0xc7,0xa3,0x2a,0x11,0xc6,0x2f,0x11,0xc7,0x33,0x99,0xe2, +0x5b,0xd2,0x0a,0xcf,0xad,0xfa,0x85,0x70,0xd1,0x42,0x0c,0x67, +0x85,0x2f,0xe1,0x6f,0x82,0xcf,0x1f,0xc2,0x73,0x06,0x9f,0x4b, +0x7d,0x61,0x9f,0x6b,0xe1,0x73,0xc6,0x66,0x1c,0x3c,0x5f,0x4e, +0x9f,0x95,0x41,0x4f,0x88,0x20,0x8b,0x2b,0x03,0x1e,0xca,0x84, +0xe7,0x7d,0xe2,0x1d,0xc6,0x22,0x3c,0xae,0x55,0x0d,0x96,0x2b, +0xf4,0xfb,0xc5,0xb5,0x30,0x61,0x27,0x4e,0x10,0x17,0x18,0x82, +0x2a,0x2b,0xec,0x16,0xdd,0x88,0x41,0x9f,0x5e,0xab,0x6e,0x9d, +0xb3,0x03,0x3f,0xe8,0x70,0xc5,0xac,0xdb,0x94,0x43,0x03,0x94, +0x11,0xeb,0xf0,0xf8,0x7a,0x35,0x48,0xa0,0x46,0xc0,0x6a,0x15, +0xed,0x7f,0x2a,0x83,0x42,0xa6,0x75,0xb4,0x9b,0xc5,0x24,0x56, +0x2f,0x4b,0x09,0xe7,0xb3,0xbd,0x70,0x92,0x0c,0xae,0xed,0x5d, +0x56,0x3f,0xb7,0xbb,0x94,0xb7,0xfe,0xcd,0xe4,0x6b,0xfd,0x07, +0xdc,0x88,0x39,0xf6,0x90,0xe1,0xe7,0x0d,0x6f,0x0a,0xbe,0x33, +0xca,0xe0,0xfd,0x56,0xd9,0xcf,0xdb,0xb5,0x9e,0x4e,0xc3,0xc9, +0x8d,0xff,0xf4,0xf7,0x53,0xc4,0x2a,0xbc,0x09,0x9e,0x81,0xad, +0xbb,0x70,0x2b,0x9e,0x96,0x3f,0x14,0x93,0x99,0x25,0x65,0x1e, +0xaf,0x64,0xf0,0x68,0x00,0x1f,0x31,0x56,0x21,0x29,0x9d,0x6a, +0x42,0x9c,0xa0,0xc9,0x8e,0xac,0x68,0x20,0xb9,0xfa,0xb9,0xab, +0x92,0xb5,0xbb,0x33,0xf8,0xe0,0xbb,0xbe,0x4f,0xfd,0x28,0x99, +0x8e,0xc2,0xab,0xa4,0xe0,0x9b,0xd4,0xb7,0x67,0x7f,0x37,0x89, +0xe5,0x8f,0xcd,0x38,0xb4,0xc0,0x7b,0x25,0xa7,0x3c,0xa8,0x38, +0x44,0xfe,0x9a,0xd4,0xf7,0xf7,0x24,0x46,0x21,0x29,0xfd,0x8f, +0x84,0x50,0xec,0x84,0x47,0x7c,0x91,0x5f,0x2b,0xdd,0x0b,0xb0, +0x78,0x0e,0x2a,0xc5,0x30,0x37,0x1a,0x4e,0xa8,0x28,0xd6,0x30, +0x3a,0xbd,0x44,0xc4,0x1f,0x04,0x64,0xb0,0x08,0x77,0x92,0x55, +0x78,0xc5,0x14,0xdc,0xd8,0x10,0x9c,0xb7,0x72,0x3e,0x2e,0xd9, +0x5e,0x61,0xce,0xc3,0x87,0x9d,0x4f,0xee,0x36,0xfe,0xc4,0xc1, +0xf7,0xcc,0x09,0xa3,0xa3,0x5e,0x51,0xde,0x9c,0x77,0x64,0x48, +0xa4,0xdd,0x14,0x5c,0xc0,0x24,0x9a,0x48,0xbd,0x12,0x87,0x8b, +0x32,0x1b,0x32,0xd4,0xd2,0xea,0xce,0x35,0x9c,0x81,0x71,0x9c, +0xf8,0x29,0x13,0x57,0x10,0x53,0x74,0xa6,0x84,0x13,0xf4,0xbb, +0xf0,0xd5,0x53,0x9a,0x5f,0x37,0x41,0x0d,0x69,0xc5,0xc4,0x87, +0xe0,0xdd,0x82,0xde,0x37,0x60,0x25,0xe4,0x8d,0x6c,0xc1,0x3c, +0x58,0xb1,0x05,0xbd,0xac,0xc1,0x6b,0x0d,0x26,0x58,0xc1,0x71, +0xd6,0xc6,0x74,0xb5,0x2d,0x7e,0xbc,0x3b,0xdf,0x8a,0x7f,0x90, +0x7f,0xa9,0xa4,0xad,0xbc,0xce,0xb7,0xd2,0xbf,0xd2,0xb7,0xe4, +0x02,0xbf,0x37,0xcf,0x3d,0xdb,0x3d,0x33,0x27,0x33,0x23,0x2b, +0x25,0x87,0x83,0x4c,0x26,0xf5,0x60,0x86,0x7f,0x4e,0xa0,0xd7, +0x41,0xb7,0x00,0xc7,0x80,0x62,0x07,0xbe,0x2e,0xa7,0x26,0xa7, +0xa2,0xa0,0x63,0xef,0x15,0xcf,0xfb,0xbe,0xb9,0x52,0x75,0xce, +0x05,0xad,0x26,0xeb,0x4e,0xee,0x99,0xb0,0x80,0x88,0x43,0x83, +0xc2,0x10,0x83,0x63,0xc7,0xe9,0x88,0x43,0x97,0x59,0x61,0x3e, +0x2a,0x91,0x2d,0xf8,0xd5,0x0d,0x16,0xbe,0xc2,0x0f,0xc9,0x1a, +0xfc,0xea,0x21,0x4b,0x59,0xfb,0x3d,0x72,0x14,0xe6,0x1a,0x60, +0x1c,0x32,0x4c,0x8a,0x35,0x65,0xfa,0x8d,0x99,0xc9,0x75,0x6a, +0x97,0xd8,0x84,0xb3,0x67,0x12,0x8e,0xcb,0xe0,0x0e,0x72,0xd9, +0x2d,0x78,0x03,0x98,0xd0,0x73,0x47,0x4f,0x1d,0x09,0x57,0xc1, +0x05,0xd1,0x64,0xd9,0xee,0xa5,0xde,0xf8,0x9e,0x77,0xba,0x25, +0x0d,0xe8,0x25,0xdf,0x96,0x7e,0x23,0x89,0x54,0x4f,0x14,0xa2, +0xc9,0x96,0x3c,0xbf,0xaf,0x65,0x52,0x73,0x9e,0x83,0x8c,0x5d, +0x54,0xfc,0x05,0x35,0x58,0x2f,0xb5,0xc5,0x33,0x7a,0x65,0x30, +0x1f,0x2d,0x4d,0xef,0xb1,0xc2,0x18,0xfc,0x95,0xb4,0xb6,0x54, +0xf4,0x65,0xde,0xe6,0x20,0x9d,0x39,0x15,0x72,0xf2,0xd0,0xa9, +0x43,0x9c,0xc5,0x91,0x88,0x30,0xcb,0x29,0xb3,0x99,0x24,0x23, +0xa5,0xd7,0xcc,0xc3,0x82,0xaa,0x5b,0xf1,0x6a,0x71,0x37,0x63, +0xa5,0xfa,0x3c,0x55,0x51,0x19,0x55,0x19,0xe4,0xbd,0x56,0xac, +0xdb,0x24,0x13,0xd6,0x09,0x1c,0xf1,0xff,0xea,0xe0,0x29,0x7f, +0x19,0xc6,0x5d,0x66,0x0e,0xa3,0x2e,0x39,0x9b,0x7d,0x3a,0x27, +0x3a,0x97,0x83,0x38,0xe6,0xd4,0xfe,0x93,0x07,0x4e,0x1d,0xe4, +0xf0,0xb9,0xe8,0x4c,0xe0,0xa7,0x6e,0xfc,0xe9,0x3b,0xe1,0xd3, +0xee,0x91,0x76,0x13,0x61,0xec,0x12,0x7c,0x60,0x02,0x0f,0xe6, +0x89,0x0b,0x8d,0xfe,0x9a,0xdc,0x2b,0x6a,0x33,0xd2,0x4d,0xde, +0x28,0xca,0x30,0x56,0x7e,0x07,0xc9,0x34,0xe5,0x6b,0x75,0xa3, +0xd6,0x1b,0xbd,0x39,0xa2,0x5c,0x6a,0x85,0xb5,0xda,0x04,0x56, +0x63,0x13,0x9c,0x5c,0x22,0xce,0x32,0x12,0xc6,0xb1,0xc6,0xab, +0xf0,0x7d,0x5d,0xdc,0xb7,0x45,0x2a,0xc2,0xf9,0xea,0xd9,0x9b, +0xbe,0x5a,0x7a,0x6d,0x63,0xb1,0x65,0x10,0x5a,0xa4,0x5b,0xbe, +0xe3,0x80,0x95,0xc3,0x69,0x8d,0xbc,0x5e,0x1e,0x0f,0xde,0xc4, +0x09,0x97,0xe5,0x4f,0x38,0xd0,0x82,0x5f,0x89,0x28,0xff,0x5e, +0x90,0x33,0x38,0x73,0xdc,0x7c,0x51,0xfe,0x8a,0x95,0x6e,0x5c, +0x7c,0x41,0x3a,0x50,0x9b,0x0d,0x2a,0x39,0x34,0x7a,0xe3,0x62, +0x57,0x1b,0x76,0x32,0x71,0xc5,0xb1,0xa3,0x37,0x2e,0x5a,0x3a, +0xf1,0xc2,0x3f,0x37,0x2e,0xe4,0xef,0x6e,0x5c,0x1c,0xa3,0xa4, +0x21,0xc8,0x0c,0xf6,0x31,0x47,0xdc,0x0f,0x7b,0x1e,0xf6,0xe6, +0x50,0xd7,0x12,0xd6,0x30,0x61,0x6e,0xa1,0xee,0xc1,0x5e,0x9c, +0xb4,0x3b,0xf9,0x3d,0xc6,0x49,0x6e,0x61,0xb1,0xcb,0xaa,0xc2, +0x92,0x7f,0x70,0x69,0xf0,0x5a,0xcb,0x3d,0x4a,0x8b,0x99,0x66, +0xed,0xcb,0xdb,0xaf,0xeb,0x57,0xb4,0xf1,0xf2,0x66,0x8b,0x76, +0xe7,0x5e,0x4e,0x2c,0x81,0xf7,0xc8,0xe1,0xd4,0x23,0xa7,0xc2, +0xa2,0xc2,0xc2,0xf9,0x63,0xaf,0x60,0x5c,0x37,0x1d,0xb0,0x81, +0x31,0xf5,0x60,0xde,0x04,0x26,0xd1,0x80,0xf4,0x89,0x0b,0xce, +0x58,0x81,0x9f,0x5c,0xb0,0xe2,0x87,0xdf,0xe6,0xff,0x1e,0xf3, +0x3d,0x17,0x2b,0x66,0xf6,0x08,0xb5,0xff,0xa8,0x5f,0xdc,0xc4, +0xc5,0x55,0x35,0x4a,0xe0,0xf1,0x7c,0xf4,0xbe,0x45,0x62,0x39, +0x77,0x97,0x89,0x73,0x4b,0xf4,0x48,0xf1,0xe4,0x9e,0xe3,0x01, +0xfa,0x73,0x64,0xf7,0xe5,0xeb,0xf0,0x73,0x73,0xf8,0x7c,0x21, +0x7e,0x65,0x26,0x69,0x62,0xf4,0xc1,0x1c,0x38,0xdf,0x89,0xe7, +0x7f,0xa0,0xf9,0x8a,0x13,0x4e,0x12,0xc5,0x79,0x18,0x18,0x39, +0xcf,0x28,0x8c,0xf1,0x33,0x32,0x42,0xee,0x2b,0x08,0x33,0x42, +0xf0,0x13,0xa2,0x20,0xab,0x47,0x08,0xd3,0x3c,0x32,0x8e,0xf4, +0x09,0x4d,0xf2,0xcb,0x42,0xec,0x88,0xa6,0x18,0xcb,0x0a,0x82, +0x30,0x89,0x88,0x4d,0x0f,0x84,0x26,0x46,0x6c,0xc2,0xc9,0x44, +0x68,0xd2,0x12,0x9b,0x18,0x8b,0x71,0x42,0xd3,0x4a,0xfa,0xac, +0x2c,0xcc,0x06,0x20,0xe9,0x46,0x6d,0x99,0x07,0x6f,0xfa,0xdc, +0xf6,0xea,0x57,0xb1,0x0e,0x48,0xf1,0x4e,0x72,0x4f,0x72,0x53, +0x31,0x3a,0x62,0x70,0xcc,0xe0,0xf8,0xd5,0x27,0x37,0x40,0xe9, +0x22,0x70,0xe6,0x45,0xbc,0xa7,0xce,0x9e,0x9d,0xce,0x7a,0x07, +0xf3,0xf6,0xe7,0xf9,0xe5,0xd5,0x8d,0x0a,0x68,0x99,0xe6,0xf1, +0x7e,0xbb,0xdc,0x77,0xb9,0x1a,0x07,0xa7,0xd2,0x47,0xf2,0x5e, +0x7b,0xbe,0xd7,0xb2,0xd7,0xa4,0xdd,0xc0,0xcf,0xc5,0x77,0xaf, +0x9f,0xa7,0xcb,0xc9,0x3d,0xa7,0xf6,0x48,0x02,0x5a,0x83,0x67, +0xe8,0xe3,0x1c,0x27,0x2e,0x1a,0x10,0x96,0xb3,0x75,0x67,0xeb, +0xce,0xd5,0x9e,0xe3,0x84,0x16,0x48,0xa4,0xd9,0xe1,0xab,0x77, +0x89,0xcc,0x57,0x0e,0x64,0x27,0x8b,0x99,0xde,0xb8,0x0e,0xe7, +0xd1,0x44,0xd6,0x64,0x43,0x09,0xc6,0x27,0xad,0xa0,0x9e,0x24, +0x25,0x32,0x77,0x29,0x91,0x2d,0x89,0x5a,0x2f,0xd3,0x8e,0x0c, +0xf4,0xdf,0x35,0x65,0x9e,0x94,0x1d,0x7e,0x66,0x9e,0xd5,0x34, +0x7d,0x4b,0xb3,0xc3,0xf7,0x67,0xbe,0x07,0x1b,0x55,0x2c,0x60, +0xa2,0x0b,0xbf,0x2a,0x2e,0x56,0xbd,0x4a,0x49,0x25,0x8a,0x24, +0x43,0x9e,0xb2,0x33,0x5e,0xb7,0x23,0x83,0x8f,0x18,0x0c,0xba, +0x16,0xd4,0xcd,0x61,0x03,0xb6,0x92,0xfa,0xaf,0x73,0x7f,0x4a, +0xf9,0xc9,0x2c,0x9e,0x3f,0xb4,0xec,0xc0,0x0a,0x07,0x4d,0xa9, +0xac,0x77,0x94,0x71,0x1f,0x83,0x15,0x7a,0x74,0x10,0xfe,0x72, +0xf8,0x42,0x62,0xdc,0xfb,0xe9,0x20,0x3e,0x93,0x6a,0x4d,0x6c, +0x61,0x2c,0x7c,0x56,0x07,0xea,0x09,0xe0,0x38,0x9a,0xa2,0xbe, +0xfc,0x97,0x72,0x07,0xec,0x9a,0xb2,0x50,0x1a,0xc4,0x4f,0xff, +0x3d,0x45,0xd9,0x8c,0xa6,0xa8,0x51,0xca,0x7d,0x83,0x15,0xcf, +0xad,0x20,0xd8,0x1b,0x84,0x33,0x4d,0x46,0x97,0xfc,0x6a,0x5f, +0x4a,0x4b,0x7e,0xf3,0x54,0x40,0x13,0x93,0x70,0xbc,0x44,0x6e, +0x5e,0x32,0x4d,0x99,0xef,0x96,0xfc,0x0a,0x58,0xf0,0x94,0x96, +0xfc,0x96,0x81,0x01,0x2c,0x63,0x70,0xa5,0xb8,0xe9,0x5f,0xa5, +0xf5,0x65,0xd2,0x92,0x9f,0xf0,0x21,0x4d,0xa3,0x66,0x70,0xbb, +0x13,0x55,0x7e,0x85,0x99,0x5d,0x38,0xf3,0x67,0x93,0xd9,0x38, +0xc3,0x14,0x66,0xcc,0x62,0x21,0xc4,0x99,0x3c,0x1a,0xbe,0xf1, +0xaa,0xf9,0x8d,0x55,0x31,0x4f,0x83,0xfe,0x8a,0x0d,0x7a,0x9c, +0x48,0x51,0x3d,0xf6,0x87,0xa2,0xba,0x1d,0xbe,0x2f,0xeb,0x70, +0x2a,0xff,0x2e,0xed,0x87,0xf3,0xb0,0x48,0x05,0x3e,0xc2,0x94, +0xf9,0x12,0x00,0xb8,0xc9,0x34,0xa5,0x4b,0xe7,0xad,0xc4,0x60, +0x16,0x36,0x4b,0xe7,0xfd,0x10,0x0c,0xe1,0x43,0x46,0x70,0x13, +0xa3,0xc8,0xb7,0xf7,0xef,0xc3,0xb8,0xb6,0x5f,0xac,0x8a,0x78, +0xeb,0xb9,0x1b,0xa6,0x6a,0xed,0xe0,0xc4,0x8e,0x94,0x7f,0xe5, +0xc7,0x3f,0x44,0x43,0x06,0x3e,0x80,0xc9,0x04,0xf7,0x41,0x0b, +0xec,0x63,0xf1,0x30,0x6a,0x13,0x50,0x06,0x1d,0x54,0x66,0xa1, +0x31,0x93,0x98,0xe3,0xf8,0x55,0xf8,0xf1,0x3c,0xed,0x6a,0x2b, +0xfe,0xf5,0x93,0x1f,0xe0,0xd3,0x6e,0xf8,0x8c,0xa3,0x11,0x7f, +0x0f,0xd9,0x77,0xc4,0xfb,0xa8,0xe7,0xd1,0xcc,0xfa,0x8c,0xae, +0xa4,0x46,0xb3,0x34,0x3e,0xcc,0x3c,0x40,0xe7,0x80,0xe9,0xd6, +0xb0,0x2d,0x91,0x86,0xc7,0xe2,0x0c,0xf9,0xb7,0x09,0x30,0x2d, +0xf7,0xc7,0x42,0x0e,0x4d,0x5b,0x49,0x78,0x5d,0x40,0x7f,0x60, +0xad,0x55,0x00,0x9f,0xe9,0x98,0x69,0x94,0xe4,0x44,0xaf,0x8f, +0x31,0x84,0x92,0x2e,0x4c,0x7c,0x4d,0x7d,0xbf,0xe7,0x65,0xfb, +0xa2,0xdf,0x0c,0x67,0x62,0xea,0x6f,0xf2,0x99,0x4b,0x2d,0x5e, +0x60,0x0f,0x2c,0x9c,0x27,0x55,0x5e,0x06,0xb2,0x1e,0x9b,0x34, +0x37,0xe1,0xb4,0x1d,0x85,0x66,0x3c,0xc8,0xae,0x7f,0x3f,0x9c, +0xf0,0x33,0x17,0x83,0xd5,0x17,0xe1,0x42,0x0c,0x13,0x37,0xeb, +0xb9,0x21,0xc8,0x36,0x16,0x76,0xf2,0x38,0xe5,0x9a,0xd6,0x35, +0xf7,0x9b,0xdc,0x08,0x2f,0x48,0xfd,0xee,0x0a,0x7a,0x58,0xc1, +0x16,0x3d,0x08,0xa6,0xfe,0x44,0xa9,0xe7,0x48,0xcc,0x7e,0x32, +0x2a,0x1c,0x21,0x6c,0xa0,0x68,0x7f,0x16,0xa6,0xfe,0xca,0x8a, +0x4e,0x87,0xe8,0xc7,0xd2,0xfe,0x69,0x68,0x97,0x66,0xc2,0x76, +0x8b,0x92,0x34,0xa1,0x2b,0xe4,0x61,0x26,0x3e,0x60,0xc1,0x0d, +0x72,0xa5,0xae,0x75,0x4b,0x61,0x85,0xb4,0x4b,0xeb,0x38,0xd9, +0xc9,0xf8,0x44,0xc4,0x15,0xa8,0x41,0x3f,0x4c,0x10,0xd4,0x29, +0x4d,0x4b,0xce,0x4f,0x2c,0x8d,0x2b,0x36,0x88,0xe3,0x8f,0x78, +0x85,0xed,0x0d,0xa1,0x51,0x67,0xb1,0xa8,0xfe,0x96,0x39,0x89, +0x96,0xae,0xcb,0xf0,0xa3,0x8d,0xe5,0x74,0xa8,0xaa,0x8f,0xdb, +0x80,0x3b,0x03,0x1e,0xdc,0x6b,0x4a,0x6c,0xb7,0x16,0xef,0x1f, +0x96,0x0d,0x32,0x35,0x99,0x29,0x8d,0x6a,0xf4,0x2b,0x8d,0x33, +0x94,0xc4,0xf3,0x0a,0x15,0x32,0xdf,0x11,0x3f,0xf1,0xc0,0x4f, +0x82,0xd3,0x4c,0x79,0xf8,0x38,0x1d,0xa6,0x56,0xbe,0x6e,0xe4, +0x68,0x1e,0x5d,0x4f,0x42,0xca,0xfd,0x2b,0xfc,0x0b,0xad,0x7d, +0xf8,0xec,0x7d,0xd9,0x7b,0x52,0xdd,0x39,0xe1,0x7b,0x18,0x43, +0x28,0xbb,0xbf,0x03,0x1f,0xb0,0xf8,0x33,0x4e,0x23,0x01,0x75, +0x07,0xab,0xf6,0x55,0xd8,0xf8,0xf0,0x79,0xee,0x79,0x8e,0x19, +0xbb,0x69,0x42,0x80,0x2f,0xc9,0x82,0xc5,0xf8,0xd1,0x36,0x9c, +0x65,0x43,0x73,0xe0,0x50,0xf6,0xa5,0x82,0xfe,0xd2,0xc4,0xc0, +0x84,0x80,0xf8,0x00,0x5d,0x83,0xe5,0xe6,0xb3,0x9c,0xf2,0xcc, +0xf8,0x9f,0xeb,0xbf,0xe9,0x1c,0x1c,0x48,0xf0,0x89,0xf3,0x8e, +0xf5,0xdc,0xbe,0x06,0xc7,0xec,0x40,0xc6,0x8a,0xbe,0xfd,0xb6, +0xf1,0xed,0xe5,0x6b,0xb7,0xb9,0x33,0x7e,0xd1,0x7e,0xbe,0xaa, +0x53,0xf7,0x3b,0x6f,0x96,0xad,0x95,0x28,0xd4,0x75,0xe6,0xf7, +0xfa,0x2e,0x1a,0x98,0x66,0xd9,0xc3,0x47,0xba,0xbf,0xaa,0x75, +0x94,0xb5,0x54,0xd6,0xd5,0x71,0xc2,0x62,0x75,0x82,0x1f,0xd1, +0x81,0x7c,0xc4,0x2a,0xf7,0x0b,0x51,0x04,0xd8,0x1c,0x50,0x2e, +0xfd,0xa5,0x3a,0x29,0x20,0x29,0x30,0x3e,0x28,0x3d,0x91,0xcf, +0x73,0x06,0x59,0xdf,0xa5,0xbb,0x89,0xa0,0xac,0x42,0x11,0xb6, +0xee,0x09,0x87,0x23,0x6e,0x32,0xb7,0xa3,0xa1,0x21,0x76,0x53, +0x56,0x33,0xa9,0xe6,0x4a,0xb7,0x99,0xab,0xd5,0xd9,0x57,0x92, +0xd4,0xe2,0xdb,0x4e,0x77,0xfc,0xa6,0x2a,0xae,0xb1,0x04,0x35, +0x26,0x6a,0x91,0xa3,0xf9,0x2c,0xeb,0xbd,0xfd,0xa6,0x57,0x77, +0x57,0xdb,0xf9,0xf1,0xe9,0x81,0xd9,0xbe,0x59,0x3e,0xf2,0x80, +0x9d,0x41,0xdb,0x43,0x22,0x61,0x25,0xff,0x32,0x16,0xb8,0x8c, +0x07,0xd9,0x3e,0xcd,0xfc,0x0a,0x5f,0xfc,0x28,0x04,0xc7,0x1d, +0x4e,0xc4,0x7d,0xfc,0xce,0x70,0x25,0x45,0x95,0x18,0x4c,0x84, +0x45,0x23,0xda,0xe2,0x22,0x56,0x31,0x16,0xea,0x89,0xd8,0x73, +0x5d,0xe8,0x61,0xc4,0x1e,0xfc,0x80,0x08,0x3d,0x5b,0xc4,0x1e, +0xc6,0x7a,0x9c,0xd0,0xb3,0x89,0x3e,0xa3,0x3a,0xda,0x12,0xf8, +0x22,0x07,0xc6,0x54,0xdc,0xab,0xda,0xd3,0xc0,0xaf,0xdb,0xab, +0xee,0x85,0x93,0xfd,0x39,0xa1,0xa9,0x8a,0xfc,0x76,0x10,0xc6, +0xbb,0xff,0xb2,0xb7,0xa4,0x83,0x9f,0x53,0x8a,0x13,0x4a,0xa7, +0xe5,0x50,0x6e,0xe6,0x20,0xd4,0x11,0x90,0xc5,0xc0,0xac,0x64, +0x60,0xd2,0x92,0xfd,0x92,0xfc,0x12,0x0f,0xb4,0xe4,0xf3,0x4e, +0x0f,0x4d,0x5e,0x5a,0x5e,0xb3,0xf5,0xe5,0xf3,0xf6,0x16,0x3a, +0xe6,0xd9,0x6f,0x8a,0x5c,0x19,0xb5,0xfc,0x68,0xdd,0x8d,0xca, +0xc7,0x05,0x57,0x4d,0xd3,0x79,0x9f,0x4d,0xf6,0x0b,0xad,0x37, +0x18,0x9c,0xe0,0xd1,0x0c,0x0c,0x49,0xd2,0x8a,0xfe,0x6d,0x3f, +0x68,0x97,0x74,0xf2,0xcb,0x87,0x4d,0x6e,0x1d,0xbc,0xc1,0x6d, +0x66,0xf6,0x6b,0x5b,0xae,0x9d,0x2a,0xed,0x6d,0xf9,0xfd,0xe6, +0xe0,0xb3,0xd4,0xef,0xb8,0x42,0x51,0x87,0xc0,0x9c,0x1e,0x9c, +0x03,0x1f,0xfc,0xd2,0x8d,0x71,0x26,0xaf,0xe9,0xf5,0xd5,0x34, +0xa6,0x11,0xa4,0x9f,0x91,0x47,0x1a,0x46,0xc9,0x8f,0x26,0x50, +0xc6,0xa7,0x92,0x06,0x33,0x8b,0xde,0x14,0x9f,0xec,0xe1,0x6d, +0xc2,0x2c,0xc2,0x4d,0x23,0x39,0xc1,0x4c,0xea,0x2d,0x34,0x0f, +0x6c,0xbb,0xd0,0x16,0x3e,0x95,0x7a,0x6b,0x8e,0x63,0x13,0x4a, +0xe3,0xca,0x62,0x4b,0xcc,0x12,0xf8,0x90,0xcd,0xee,0x4b,0x9d, +0xf4,0x5a,0x7d,0xf8,0xb4,0xc2,0x14,0x9a,0x79,0x38,0x50,0xa1, +0xd1,0x76,0x9f,0x09,0xec,0x43,0xaf,0x3e,0xf0,0x02,0xef,0x6e, +0x46,0x7c,0xbc,0x99,0xa4,0x77,0x27,0xf7,0xc7,0x77,0x59,0x53, +0xb6,0x6f,0x10,0x6e,0x12,0x6c,0xc9,0xd1,0x20,0x3d,0x83,0xe4, +0x9b,0xe4,0xad,0x49,0x32,0x6a,0xa7,0xfe,0xdb,0xe7,0xf3,0xf5, +0xfe,0xce,0xff,0xc4,0xce,0xa4,0x77,0x01,0xfc,0xb8,0x1c,0x66, +0x1b,0xb0,0x98,0xb3,0x9b,0xc6,0x4e,0x2b,0x1a,0x3b,0xeb,0x2c, +0xa9,0xcb,0x7e,0x7c,0x45,0xd2,0xcc,0x70,0x51,0x81,0x40,0x29, +0x76,0x2e,0xa3,0x01,0x7c,0x7d,0x64,0x80,0xff,0x8e,0x29,0x33, +0x46,0x6f,0x36,0x8c,0x61,0x9e,0xd7,0x34,0x7f,0xfb,0x5f,0x54, +0xa4,0x86,0x89,0x2e,0x8e,0x2e,0x2d,0x53,0x1d,0x60,0x71,0x37, +0x3e,0x22,0x4f,0xad,0xef,0x6d,0xef,0x97,0x35,0x5c,0xed,0xfa, +0x35,0xf7,0x21,0xd7,0x82,0xd7,0xff,0x1e,0x7b,0x45,0x71,0x11, +0x76,0xb1,0x01,0x3b,0xcd,0xe6,0x98,0xae,0xe1,0xee,0x6d,0x6f, +0xdf,0xa4,0xa3,0x6a,0x18,0xb8,0x4f,0x5f,0x66,0xca,0x24,0xec, +0x54,0x1a,0x64,0x1e,0x34,0xb6,0xfc,0xa0,0xa6,0xfc,0xd7,0x4e, +0x21,0x92,0x5c,0xc4,0x53,0xec,0xa9,0xb4,0xaf,0xd2,0xd2,0x55, +0x21,0x48,0x07,0x83,0xd8,0xa0,0xaf,0x82,0x4f,0x05,0xcb,0x30, +0x48,0x1f,0xfc,0x99,0x20,0xdc,0xb3,0x11,0xd5,0xd0,0x0c,0x57, +0xd7,0x19,0xf1,0x34,0xf4,0xad,0x7a,0x02,0xf3,0x63,0xc0,0x9c, +0x8b,0x65,0x62,0xd0,0xf4,0x06,0x7e,0x01,0xda,0xb8,0xa3,0x66, +0x80,0xc7,0xf5,0xb0,0x71,0x1b,0xf0,0xc1,0xe0,0xc4,0x81,0x3b, +0xcc,0x22,0x7b,0x2e,0xda,0x0c,0xda,0x36,0x39,0x78,0xf0,0x2d, +0x66,0xb5,0xc6,0x17,0xf4,0xb8,0x91,0x4a,0xd0,0x22,0x23,0x47, +0x07,0x7e,0x07,0x37,0x49,0xf5,0xd8,0xcd,0x98,0xc0,0x22,0xb1, +0x14,0x17,0x51,0x0e,0x30,0x00,0x61,0x24,0x2c,0xf9,0xc8,0xa9, +0xc8,0xc8,0x43,0x61,0xfc,0xb1,0x33,0x71,0x45,0xb1,0xa5,0x67, +0xab,0x54,0x60,0x5b,0x1f,0x6e,0x62,0xa2,0xb3,0xa3,0x73,0xf3, +0x55,0xc1,0x0a,0x96,0xf6,0xd2,0xe0,0xf1,0x91,0x21,0x75,0x95, +0x35,0x46,0xb0,0x06,0x9d,0xd8,0x83,0xa7,0x0e,0x9e,0x0a,0x90, +0xe1,0x66,0x39,0xac,0x67,0x02,0x51,0xcd,0x78,0xde,0x34,0x64, +0xaa,0x2d,0xf9,0x17,0x3f,0xb6,0x3d,0x2a,0xfb,0xe1,0xf4,0xb9, +0x33,0xa7,0xcf,0x1d,0xa3,0x68,0x72,0x3d,0x5f,0xdb,0xac,0x94, +0x2e,0x0c,0x11,0x31,0x43,0xd0,0x16,0x32,0xd0,0x9b,0x4d,0xad, +0x48,0xaa,0x4c,0xa0,0xc8,0xc7,0xbb,0x5b,0xfc,0xca,0x04,0x0e, +0x30,0x91,0x1e,0x61,0xae,0x41,0x7b,0x38,0xb1,0xd1,0x9e,0x64, +0x59,0xe7,0xae,0x4b,0xb0,0x68,0xc9,0xe4,0x23,0x5b,0xfc,0x1e, +0x1e,0x6c,0xe1,0xe0,0x04,0x5a,0x93,0xec,0xe6,0xbc,0x67,0x09, +0x6d,0xd6,0xa9,0x7c,0x84,0xf9,0xc1,0x0d,0x07,0xcd,0x39,0x70, +0x6b,0x27,0x3f,0xc3,0x95,0xd9,0xac,0xf9,0xb8,0x59,0x78,0xe5, +0x57,0x16,0x17,0x8d,0x83,0x2b,0xf8,0x1e,0x5e,0x61,0xc0,0x0e, +0x59,0xd2,0xe7,0x76,0xcf,0xac,0xcb,0xba,0xb2,0x89,0x37,0x6d, +0xda,0xd8,0x2a,0x2f,0xe7,0x24,0x29,0x55,0xf2,0xa8,0xfa,0x52, +0x73,0x67,0xa7,0x5d,0x15,0x6f,0x6b,0xa5,0x63,0xbf,0xc1,0x9d, +0x53,0x6e,0x11,0x86,0x89,0x3e,0x94,0xe3,0x49,0x76,0xad,0xb1, +0xba,0x35,0xbe,0xef,0x92,0xa5,0xcf,0xff,0x54,0xf1,0xb2,0xf1, +0x41,0x1b,0x87,0x99,0x97,0xff,0x9a,0xaa,0x83,0x29,0xac,0xd0, +0x28,0xde,0x20,0xb8,0x85,0xb1,0x0c,0x96,0xaa,0xc3,0x7f,0x62, +0x81,0xb9,0x08,0xe3,0xee,0xde,0xbb,0xe7,0xd8,0xc8,0x6f,0xdb, +0xba,0x6c,0xe7,0x4c,0x33,0x0e,0xfe,0xd2,0x19,0x49,0x63,0x57, +0x94,0xb9,0xbd,0x90,0xc1,0x76,0xa6,0x39,0x53,0xba,0x83,0xe6, +0xc5,0xea,0x65,0x28,0x29,0x83,0xb7,0xe2,0x3b,0xe2,0x82,0x26, +0xfa,0x38,0x7b,0x21,0x8e,0xaf,0xb2,0xe0,0x4b,0x2a,0x4a,0x9a, +0x8a,0x7b,0x38,0xb1,0xbb,0x4f,0xb1,0x99,0xcd,0xbf,0x96,0x75, +0x37,0xe5,0x11,0x77,0x1c,0xf7,0x11,0x85,0x56,0x17,0x06,0xc1, +0x06,0x23,0xdc,0x30,0x0d,0x36,0xc8,0x71,0x03,0x06,0x32,0xb0, +0xad,0x9c,0x04,0xd6,0xf8,0x35,0x79,0x55,0x59,0xed,0xe3,0x0b, +0xf7,0xe4,0x39,0x65,0x38,0x71,0x82,0x11,0xa8,0x93,0xe0,0xdd, +0x3e,0x0e,0x3e,0x2e,0xd4,0x1b,0x0a,0x2b,0x8a,0xdb,0xd2,0xeb, +0xb8,0xd6,0x91,0x79,0x14,0x7c,0x5d,0x8b,0x66,0x5f,0x42,0x7e, +0x3b,0xe6,0x7f,0x03,0x2d,0xed,0xb8,0x99,0xcd,0x2c,0xc9,0xbc, +0x90,0x5c,0x49,0x79,0xd5,0x21,0x27,0x7f,0x07,0x3f,0x27,0x4e, +0x54,0xb3,0x80,0xe2,0x15,0x18,0x67,0x01,0x71,0x8b,0x98,0x53, +0xd8,0x62,0x0e,0x55,0xac,0xd7,0xb6,0x85,0x66,0xb8,0xd9,0x26, +0xc3,0x98,0x07,0xab,0xee,0xb7,0x03,0xa9,0x7f,0x50,0x6b,0x4a, +0x9b,0x0e,0x1f,0x18,0x81,0x93,0x61,0x66,0x0f,0x8f,0x7a,0x6d, +0xb3,0x3a,0xdd,0x86,0x38,0x24,0x80,0x24,0xac,0x34,0xa8,0x26, +0xa8,0xd0,0x38,0x88,0x4f,0xf7,0x4c,0x77,0x4d,0x74,0xa3,0xc1, +0x64,0x95,0x90,0x4c,0xc2,0x63,0x23,0xbe,0x8a,0x0a,0x0b,0x0b, +0xe2,0x8f,0xc1,0xd3,0x6d,0x7f,0x4f,0x18,0x16,0x12,0x99,0xb8, +0xb3,0x31,0x89,0x47,0x64,0xc2,0x0e,0x3c,0x5a,0xd1,0xab,0xa4, +0x2c,0xa4,0x0b,0xca,0x64,0x40,0xe0,0xda,0x44,0xae,0x17,0x9e, +0x40,0xda,0x88,0x31,0xa6,0xc1,0x35,0x23,0xfc,0xdb,0x12,0xfe, +0x36,0x10,0x57,0x58,0xfc,0x25,0x6b,0x67,0xc5,0x30,0xb8,0x4b, +0x30,0x76,0x00,0x62,0x99,0x3e,0x03,0x32,0x00,0xd9,0x06,0xac, +0x78,0x9f,0xc6,0xb5,0x58,0x5d,0x8c,0x65,0xe0,0xca,0x25,0x02, +0xd9,0xba,0x98,0x2d,0xed,0x41,0x1e,0x22,0xcd,0xbb,0x9b,0xec, +0x2a,0xad,0x3a,0x2b,0x78,0xd7,0x26,0xcb,0x16,0x87,0x32,0x6e, +0x64,0xf1,0x09,0xe2,0x6e,0x6f,0x63,0x63,0xe6,0xd1,0xe4,0xc8, +0xf7,0x5e,0x68,0x6d,0x2b,0x6d,0xe6,0x04,0xbf,0x65,0x24,0xb0, +0xd2,0xb3,0x7e,0x5f,0x89,0xa9,0x3f,0x9f,0xef,0x9e,0xe7,0x9c, +0xb1,0x87,0xc3,0x3d,0x29,0x24,0xbc,0x26,0xb0,0x2e,0xa8,0xd8, +0x28,0x84,0x4f,0xf5,0x4a,0x73,0x4c,0x74,0xe1,0x84,0x8c,0xe5, +0xa4,0x53,0x7c,0xef,0x1b,0xc3,0x15,0xf8,0x9b,0x19,0xfc,0xb6, +0x4e,0x5c,0x66,0xfa,0xd7,0x94,0x2e,0x71,0xd3,0x7d,0x56,0x59, +0x11,0xa0,0x58,0x42,0x46,0xaf,0xc7,0x12,0xd8,0x60,0x4c,0xaf, +0x87,0xad,0xa9,0x00,0x5d,0xec,0x08,0x8b,0xa9,0xc4,0x3d,0x74, +0x6f,0xa8,0x6b,0x18,0x07,0x61,0xdf,0xf5,0x2c,0x01,0x03,0x43, +0x8a,0x9e,0x39,0x63,0xe0,0x30,0x8e,0x75,0x38,0x64,0x2f,0x55, +0xfe,0x18,0xf1,0xd5,0xf1,0x35,0x89,0x17,0x92,0x39,0x2c,0x9b, +0x26,0x55,0xfe,0x3c,0xa3,0xdc,0xfd,0xdd,0xe6,0xb4,0xea,0xe4, +0xea,0xb4,0xaa,0x34,0x0e,0x34,0xe1,0x37,0x12,0x54,0x7b,0xb0, +0xd9,0xa7,0xca,0xc6,0x8f,0xcf,0x77,0xc9,0x71,0x48,0x73,0xe4, +0x84,0x85,0x30,0x9b,0x84,0xee,0xde,0x67,0xeb,0xb7,0xa7,0xc9, +0x87,0xcf,0xaf,0x2c,0x6c,0x4d,0xab,0xe3,0x2e,0x8c,0xcc,0xa6, +0x97,0xb6,0xe2,0x34,0xfb,0x1d,0x9c,0x6a,0xc7,0x53,0xdf,0x40, +0x46,0x3b,0x6a,0xb0,0x19,0xc5,0x19,0xf5,0x49,0x95,0x26,0x34, +0xa6,0x39,0x06,0x38,0xf8,0x3a,0x71,0xf8,0x8b,0x05,0x44,0xaf, +0xc0,0x20,0x0b,0x08,0x5a,0x42,0x73,0x75,0x9a,0x39,0xc4,0xb0, +0x5e,0x5b,0xe6,0x5a,0xa1,0xb9,0x55,0x26,0x8d,0x15,0x1e,0x3d, +0xf0,0xde,0x40,0xca,0xef,0xf4,0xda,0xa6,0xa8,0xbf,0x95,0x83, +0x81,0x5e,0x76,0x1f,0x8f,0x6b,0x3b,0x16,0x36,0x7b,0x0d,0x73, +0x38,0x16,0x46,0x48,0x44,0x71,0x70,0x6d,0x50,0xa1,0x49,0x00, +0x9f,0xee,0x95,0xb2,0x57,0xba,0xb4,0x8a,0x08,0x21,0x9f,0x84, +0x25,0x45,0x44,0x87,0x87,0x47,0x44,0xf2,0x47,0xe1,0xba,0xce, +0xdf,0x73,0x2e,0x0b,0x9d,0x4c,0xec,0xb9,0xe8,0xb3,0x94,0xfc, +0x85,0x62,0x70,0x6d,0xab,0xd2,0xc8,0x44,0xd8,0x40,0x8e,0x00, +0x03,0xf2,0x8b,0x28,0x07,0x7d,0x5d,0xd4,0x47,0x2b,0x7d,0xd0, +0xa3,0x81,0x6a,0xa2,0x25,0x7e,0x8e,0x32,0x9c,0xd3,0x20,0xb5, +0x66,0x07,0xe5,0x26,0x50,0x8a,0x93,0x76,0x96,0x8a,0x5d,0x97, +0x84,0x78,0x26,0xf6,0xcc,0x29,0xe9,0x3b,0x96,0xa0,0x4b,0x6b, +0x2d,0x0d,0x25,0xf6,0x11,0xa9,0x51,0x31,0x87,0xc2,0x55,0x94, +0x15,0x91,0xe0,0x44,0x1e,0xc3,0xa7,0xd5,0xf0,0x45,0x32,0xcc, +0xe6,0xae,0x5d,0xc4,0x27,0x4c,0xda,0xbf,0x85,0x4d,0xbe,0x38, +0xcb,0x12,0x67,0x2f,0xc2,0x4f,0x6a,0x2c,0xf9,0xb2,0x86,0xe2, +0x8e,0x82,0xde,0xd1,0x02,0xa4,0x7e,0x75,0xf9,0xda,0x35,0x1b, +0x70,0xcc,0xe6,0x32,0x43,0xfe,0x8f,0x5b,0x8f,0xee,0x5d,0x7c, +0xd8,0xbd,0xf6,0xc6,0xfa,0x17,0x1b,0xcb,0xfb,0xf9,0x25,0xb7, +0xb7,0xdd,0xb6,0xb8,0xc7,0x61,0x3a,0x2c,0x25,0x96,0xc1,0x96, +0x21,0x96,0x87,0xa4,0xae,0x39,0x33,0x07,0x71,0x26,0xb8,0xed, +0x42,0xb7,0x69,0x6c,0x4c,0xe3,0xd9,0xa6,0x33,0x4d,0x7a,0xb1, +0x7c,0x14,0xaa,0x1f,0xc0,0x49,0xf6,0xf3,0x7a,0x3c,0xf8,0xbc, +0xf6,0x8c,0xab,0xc9,0x94,0x85,0x8e,0xc7,0x64,0x66,0x63,0xe0, +0xc6,0x90,0x8d,0x87,0x92,0x77,0xf0,0xc3,0xc9,0xd7,0x53,0x87, +0xd3,0x39,0xec,0xbd,0x02,0x77,0xd9,0x8e,0x94,0x8e,0xd4,0x8e, +0x0c,0x0e,0x9e,0xc2,0x75,0x12,0x8e,0x9f,0x78,0xe1,0xf8,0x9d, +0x38,0xd6,0x10,0xc6,0x78,0x01,0x1b,0x0a,0x84,0x3a,0xc5,0x44, +0x28,0x22,0x30,0xad,0xb9,0xef,0x52,0x3c,0x70,0x1c,0x7c,0x80, +0x1f,0x32,0x7a,0x05,0x81,0x83,0xb2,0x37,0x4c,0x5d,0x7a,0x5a, +0x8d,0xda,0x10,0x6b,0x92,0xac,0xa4,0xb9,0x80,0xf5,0x8e,0x88, +0x29,0x52,0x83,0xf7,0xc1,0xb8,0x1b,0x4b,0x60,0x22,0x1c,0xef, +0xc6,0xe3,0x7f,0x18,0x4e,0x43,0x4f,0x13,0x0a,0xa9,0x27,0xe2, +0x19,0x13,0x58,0xc5,0x46,0x2d,0x77,0xb0,0xc7,0x8f,0x9d,0x39, +0xf4,0x12,0x3f,0x21,0x37,0xc1,0x50,0x91,0x8b,0x27,0x47,0x5e, +0xb1,0x60,0xa4,0x78,0x8f,0x20,0x8d,0xca,0xa0,0xc2,0xa0,0x0a, +0x1e,0x22,0x34,0x17,0xee,0x40,0x15,0x49,0xbe,0xc2,0x88,0xc0, +0xb9,0x1e,0x3c,0x07,0x6a,0x86,0x34,0x4f,0x04,0x1a,0x43,0x20, +0x45,0x07,0xe5,0xc6,0xc2,0xff,0xea,0xc1,0x52,0x46,0xac,0x82, +0x72,0xe9,0xa3,0x0e,0xf4,0xa3,0xca,0x8a,0xf7,0xa1,0x8c,0x6c, +0x3f,0xb0,0x36,0x44,0xf3,0x70,0x36,0x25,0xeb,0x0b,0x52,0x61, +0x4e,0xeb,0x77,0xc3,0xae,0x17,0xf8,0xfd,0x81,0x5e,0x41,0x6e, +0xa1,0x52,0xab,0x38,0x5f,0xb8,0x8a,0x47,0xd8,0xa4,0xac,0xf8, +0x9c,0x98,0x4c,0xc3,0x78,0xfe,0x98,0x7f,0x98,0xcf,0x21,0x3f, +0x69,0xa9,0xe7,0x2a,0xb8,0x30,0x94,0x3c,0x93,0x23,0x09,0x51, +0x67,0xc3,0x22,0x42,0xc2,0xf8,0xe3,0x7f,0x82,0x72,0x1f,0x2a, +0xc3,0x6a,0xa6,0x29,0xa5,0x21,0xad,0x32,0xcb,0xab,0x85,0x5f, +0xe7,0x88,0xca,0xae,0xb3,0x42,0x47,0xf7,0x82,0x35,0xc7,0x37, +0x8d,0xee,0x05,0x5b,0x26,0x87,0xf9,0x6c,0xe4,0x74,0x87,0xa9, +0x33,0xf0,0x93,0x2a,0x4b,0xfe,0xc9,0xcf,0x65,0x8f,0xcf,0x4a, +0x5b,0xc1,0xcc,0x7b,0x04,0x83,0xd1,0xad,0x60,0x47,0x65,0x8f, +0x47,0xb7,0x82,0x09,0x2e,0x82,0x0f,0xd1,0x12,0x27,0x3e,0x62, +0x85,0x89,0x94,0xf5,0xad,0x14,0x27,0x7e,0x2d,0x35,0x0d,0xda, +0x49,0xba,0xf7,0xf6,0x58,0x35,0x98,0x5d,0xa8,0xe2,0xed,0xdb, +0x4d,0x5a,0x4c,0x68,0x44,0xaf,0x3e,0x4e,0x3c,0x6d,0x1d,0x1c, +0x8c,0x3d,0xca,0xa8,0xe7,0x57,0xb4,0xb5,0x96,0xb6,0x72,0xb8, +0x1e,0x05,0x02,0xc6,0x69,0xb0,0x93,0x52,0xbf,0xef,0x5d,0xab, +0x79,0xe4,0x56,0xa0,0x86,0x05,0x5a,0x06,0x71,0x61,0x52,0x83, +0xe2,0xe8,0x2c,0x70,0xb9,0x0e,0xd3,0x81,0x71,0xa9,0x95,0xf6, +0x49,0x8e,0x41,0x0b,0x1d,0x3c,0xe3,0xcf,0x29,0xc3,0x11,0xc5, +0x75,0xe2,0xb7,0xde,0x68,0x2d,0x7e,0xb0,0xb1,0xc4,0x84,0x07, +0xf6,0xd6,0xf0,0xd3,0xb4,0x1f,0x24,0x8f,0x59,0x3e,0xb4,0xe5, +0xe7,0x0d,0x25,0x5d,0xfc,0xc2,0x61,0xbd,0x5b,0xfb,0x6f,0x72, +0xe0,0xf1,0xf7,0xe7,0xe4,0xf2,0x23,0x48,0xd5,0xba,0xa2,0x18, +0x16,0xbf,0x60,0x2e,0x1b,0x12,0x48,0x1d,0xf9,0x40,0x2a,0x24, +0xa8,0x85,0x0a,0x02,0x9a,0xbd,0xa8,0x09,0x1f,0xc2,0xfb,0x3d, +0x58,0x62,0xfc,0x27,0x7e,0x88,0x3b,0xa4,0xaa,0xea,0x7e,0x46, +0x37,0x42,0xe7,0xb0,0xce,0xd1,0x04,0x3d,0x1e,0xe6,0xa6,0xc1, +0xe2,0x22,0x18,0x5b,0x72,0xb2,0x8f,0x37,0x3b,0x24,0x0f,0x33, +0x88,0xe0,0x5e,0x5c,0x27,0x99,0xdd,0xa9,0x7d,0x89,0xdd,0x96, +0x29,0x7c,0xb8,0xfe,0x21,0xd3,0x40,0x8a,0x5c,0x32,0x60,0x1a, +0x29,0x30,0x29,0x58,0x93,0x62,0xd4,0x4e,0x03,0x78,0x9f,0xd7, +0x53,0x5f,0x8a,0x5c,0x84,0x7a,0x88,0x22,0xbb,0x0e,0xaf,0x3b, +0xa2,0x75,0x94,0x6b,0x66,0x2f,0x56,0xf6,0x34,0x95,0x56,0x73, +0x39,0x7d,0xb0,0x16,0x1d,0x7e,0x06,0x9f,0x4e,0xf4,0xf9,0xc3, +0x60,0x1a,0xfa,0x98,0x81,0xcf,0x6c,0x7a,0x99,0xd7,0xf6,0xfb, +0x40,0x3e,0xeb,0xe6,0x65,0xb5,0xd7,0xda,0x8f,0x5b,0xcf,0xae, +0x3f,0xb6,0xe1,0xb8,0xee,0xc9,0x73,0x46,0x94,0xd3,0xde,0x3a, +0x77,0xe7,0x1c,0x87,0xcb,0x71,0x26,0x9b,0x6a,0x24,0x6d,0x93, +0x69,0x49,0x4f,0x6f,0x52,0x83,0xa5,0xec,0xe3,0xd8,0x87,0xe7, +0x87,0xe2,0x38,0x58,0xad,0x98,0x42,0x0c,0xd0,0x68,0xba,0xe1, +0xef,0xcc,0x51,0x6c,0x33,0xc4,0xcd,0xc8,0xa3,0x5a,0x2d,0x75, +0xe5,0x79,0xb0,0x6c,0x00,0x6c,0x62,0xa0,0x8b,0x83,0xd9,0x0c, +0x1e,0x3d,0x8a,0x2b,0x0f,0x4d,0x97,0xe9,0x1d,0x0e,0x0b,0x35, +0x91,0xa8,0xad,0xbe,0xd2,0x2b,0xe6,0x51,0x51,0xe5,0xd3,0x04, +0xb5,0x54,0x98,0x18,0x43,0x4d,0xe8,0x92,0x2a,0xee,0x66,0xf0, +0x04,0x4e,0x20,0x0b,0xf1,0xad,0xb4,0x02,0xf0,0x58,0x61,0x41, +0x0c,0x9b,0x36,0x37,0x6d,0x91,0x8a,0xbb,0x6e,0xb9,0x0e,0x39, +0x0e,0xda,0x72,0xcd,0x18,0x48,0xde,0x5c,0xec,0x7c,0x08,0x1f, +0xa9,0x76,0xc0,0x01,0x94,0xb3,0x3b,0xf3,0xfd,0xaf,0xca,0x6e, +0x33,0xcd,0x49,0x19,0xf5,0x6a,0xc0,0xb1,0xf2,0x0c,0x25,0x9c, +0xbe,0x93,0xf5,0x8c,0x8c,0x2f,0x55,0x83,0x70,0xfc,0x79,0x01, +0x3b,0xdd,0x47,0x77,0x9e,0x5c,0xe6,0x15,0x44,0xbf,0x4a,0xbb, +0x75,0x53,0x85,0xf4,0x55,0x7b,0x86,0xed,0x2f,0x5b,0x73,0x0a, +0x6b,0x71,0x0b,0x99,0x59,0xb6,0xa2,0x6e,0x43,0xf3,0x9b,0xdb, +0x97,0x9e,0x56,0x3c,0xe5,0x9a,0xc5,0x56,0x63,0xe1,0x00,0xeb, +0xae,0x23,0xdf,0xb6,0x4c,0x77,0x4d,0x8f,0xce,0x25,0xd3,0x4b, +0xd6,0x7b,0xf9,0x4e,0x9d,0x41,0xbd,0x3b,0x46,0x9a,0x56,0xd3, +0xed,0x71,0xb2,0x47,0x8e,0x9c,0x87,0x59,0x55,0xc0,0xb6,0xbd, +0xe8,0x7d,0x62,0xf2,0xda,0x0a,0xc6,0xbb,0x70,0x23,0xe6,0xc2, +0x44,0xe2,0x84,0xef,0x19,0x49,0x15,0x65,0x6d,0x0e,0xfc,0x83, +0xb7,0x57,0xa4,0x32,0x33,0x1a,0x15,0x8f,0x2b,0xb6,0x90,0x72, +0xb3,0x72,0xfd,0x12,0x3d,0xcd,0x43,0xb3,0x23,0xe6,0x1c,0x6d, +0xfa,0xb5,0x0e,0x3e,0x2a,0x05,0xd6,0x30,0x95,0xf7,0x44,0xd6, +0x02,0x67,0x58,0xce,0xe4,0x4e,0x05,0x07,0x9d,0x0a,0x9e,0x12, +0x63,0x08,0xaa,0xe7,0x61,0x4d,0x32,0x7c,0x94,0xa5,0x52,0xb6, +0xb9,0xab,0xc8,0xe6,0x77,0xa3,0x3f,0x8d,0xbe,0x55,0xc1,0x4b, +0xf9,0xa4,0x47,0xdc,0x28,0x09,0x4e,0x1c,0x42,0x4d,0x6b,0x5c, +0x34,0x1f,0x95,0xea,0x1c,0xf9,0x2b,0xf7,0x9b,0x5e,0x17,0xbf, +0xe5,0x60,0x39,0x13,0xb5,0x3c,0x78,0xf5,0xbe,0x0d,0x7b,0x2a, +0x9d,0xca,0x9d,0x4b,0xf6,0xda,0xf1,0xcd,0xae,0xf5,0x2e,0xd5, +0x8e,0xb6,0xb3,0x77,0x2e,0x5f,0xb2,0xb6,0xc6,0x46,0xea,0xc1, +0xa7,0xf1,0x12,0xac,0x0b,0x20,0x87,0x6b,0x44,0x47,0x36,0xbe, +0x31,0xb6,0xf9,0x6c,0x13,0x07,0xdd,0x23,0x97,0x69,0xd2,0xac, +0x37,0x18,0x14,0x96,0x8a,0xf4,0xc1,0xc2,0x5b,0xf8,0x8b,0xe0, +0x31,0xac,0x87,0x63,0x74,0xd6,0x47,0x14,0x2d,0x04,0x03,0x58, +0xd4,0x3c,0x89,0x9f,0x1e,0xa0,0xa4,0xfe,0x48,0xed,0xde,0xe0, +0x3d,0xc1,0x2e,0xa1,0x2a,0xf0,0x02,0xde,0xeb,0xc5,0xf7,0xa0, +0x50,0x1f,0x0b,0xa7,0x1b,0xfd,0x8e,0x7f,0xb3,0xbb,0x43,0x9d, +0x0f,0x39,0x49,0x6d,0x25,0x7e,0xaf,0xfc,0xa6,0xfc,0x69,0xfd, +0xa1,0x5d,0x01,0x06,0x9e,0x7a,0x6d,0xce,0xfc,0x73,0xd8,0x96, +0x0a,0x3a,0xd1,0x50,0xc2,0x09,0x21,0x70,0x94,0x11,0x43,0x90, +0x5a,0xfd,0x14,0x41,0x1b,0xa7,0xb0,0xc5,0xe2,0x8f,0xd2,0x0a, +0x40,0x04,0xe8,0x42,0x84,0x09,0xea,0x50,0xa4,0xe0,0x6d,0x8c, +0xde,0x38,0x01,0x74,0x8c,0x31,0x02,0xb6,0x60,0x04,0xce,0x87, +0x5d,0x46,0x58,0xd9,0xd7,0x2a,0x8c,0xb1,0xea,0x86,0x4a,0x13, +0x8a,0x33,0xcd,0xde,0x2d,0x73,0x2b,0x8b,0xc3,0x5d,0x42,0xf2, +0xb5,0xd1,0x65,0xee,0xdb,0xa2,0xb1,0x99,0xb4,0xcc,0x5d,0xca, +0x34,0xa7,0x50,0x94,0x25,0x1c,0xc3,0xcf,0x40,0x83,0x55,0xc8, +0xc5,0x36,0x82,0x47,0x41,0x0e,0xce,0xf0,0x4c,0x74,0xc6,0x67, +0x60,0x89,0x72,0x0c,0x31,0x81,0x59,0xd4,0x32,0x3f,0x30,0xdd, +0x8c,0x1f,0xea,0x17,0x9a,0xd3,0xeb,0x77,0xbb,0xf7,0x55,0x2c, +0xa8,0x70,0x7f,0xa0,0x39,0xb3,0x23,0xc7,0xff,0x8a,0xec,0x0e, +0x53,0x97,0x26,0x6d,0x8f,0xe0,0x58,0x0b,0xc9,0x7c,0x36,0xb3, +0x1e,0x51,0x31,0xd4,0x7c,0x28,0x07,0x61,0x17,0x0b,0xff,0x1f, +0x5b,0x6f,0x01,0x9d,0xc5,0xb5,0x46,0x0d,0x63,0x99,0x19,0x28, +0x84,0x02,0x3d,0x30,0x09,0x90,0xe0,0x0e,0x45,0x82,0x47,0x20, +0x58,0xdc,0xdd,0xdd,0x43,0x84,0x04,0x82,0x24,0xb8,0x36,0x10, +0x21,0xee,0x46,0xdc,0xdd,0xdd,0x20,0x04,0x87,0x96,0x22,0x2d, +0x94,0x16,0x4a,0x8d,0xb6,0xc0,0x33,0x6f,0x9f,0xc9,0xbd,0xff, +0x99,0x70,0xef,0xfd,0xff,0x7f,0x7d,0xdf,0xca,0x5a,0x79,0x67, +0xcd,0x2b,0x73,0x66,0xce,0x39,0xcf,0xde,0xfb,0xc8,0x7e,0xb4, +0x09,0xbe,0xfb,0x09,0xde,0x31,0x38,0x6f,0xc2,0x2a,0x7c,0xf7, +0x96,0x75,0x46,0x33,0x52,0xe0,0x55,0x6a,0x91,0xe9,0xd1,0x50, +0xc4,0x1f,0xae,0xf4,0xea,0x0a,0xa4,0xa4,0xb4,0x19,0x37,0x90, +0xb2,0xaa,0xb2,0xae,0xac,0x5a,0xbb,0x6b,0x7c,0x98,0xab,0x8f, +0x95,0xaf,0x3b,0x27,0x7f,0x4f,0x58,0x41,0x60,0xcf,0x6d,0x90, +0x7b,0xf9,0x10,0x58,0x0e,0xbe,0x60,0x9e,0xe0,0x78,0x60,0xb7, +0x80,0xfa,0xae,0x82,0x0e,0x1e,0x97,0x0e,0x2c,0xbf,0xb9,0xe3, +0x15,0x07,0xd7,0x7b,0xc4,0x60,0x26,0xad,0x34,0xb9,0x2c,0xb1, +0xd2,0x20,0x9e,0x3f,0xe6,0x7c,0xd4,0x23,0xcc,0x8b,0xc3,0x5f, +0x4d,0xe1,0x3a,0xa3,0xb3,0x6e,0xb5,0x36,0x6e,0x32,0xe0,0x84, +0x03,0x96,0x04,0xe2,0x7a,0x30,0x0e,0x26,0x19,0x52,0x71,0x74, +0xc6,0x14,0xce,0xe0,0xac,0x01,0x06,0xe6,0xde,0x25,0x38,0x07, +0x6f,0x27,0xb1,0x30,0x55,0x9f,0x1e,0x1c,0x32,0x85,0x03,0xec, +0xb1,0x8d,0xa6,0x4e,0x38,0xc3,0x52,0xb2,0x58,0x50,0xb9,0xd9, +0x35,0x9c,0xfc,0x5e,0x72,0xcd,0x8d,0xb8,0x0e,0x11,0x10,0xda, +0x83,0xa1,0x52,0xb6,0x4d,0xa1,0x40,0xa8,0x20,0xe9,0x38,0x1f, +0x3e,0xc7,0xd9,0x70,0x09,0x77,0x54,0x75,0xf2,0xe8,0x07,0x4b, +0x71,0x31,0x2c,0xb0,0x01,0x15,0x4e,0x98,0x33,0x28,0x6e,0x00, +0x6d,0x1d,0xd4,0x16,0x17,0x18,0x08,0x9f,0x31,0xf6,0x54,0xf5, +0xf0,0x38,0x1f,0x7d,0x71,0x69,0x2d,0x95,0xf3,0x17,0x41,0xe3, +0x03,0xcc,0x4e,0x83,0xf9,0x34,0x16,0x8f,0x43,0x3b,0x23,0xb0, +0x43,0xe3,0x9b,0xf4,0x89,0x7b,0xf7,0xa3,0xb7,0x30,0x8e,0xd6, +0xd6,0x77,0x42,0x1a,0x89,0x88,0x3f,0x7b,0xf1,0xe4,0x89,0xd3, +0x94,0x0a,0x34,0x82,0x41,0x13,0x1a,0xc0,0x02,0xa6,0x3f,0xae, +0x2f,0xbe,0x3d,0x29,0xb4,0x89,0x9f,0x1f,0x80,0xcb,0x8e,0xe0, +0xe7,0x67,0xe3,0x6c,0xf9,0xee,0x2b,0xbd,0xd1,0xbd,0x31,0x1c, +0xce,0x46,0x4b,0x7b,0xd0,0x64,0xfd,0xcc,0x75,0x2c,0xd6,0xd9, +0xe7,0xd8,0xf2,0xef,0xbb,0xae,0xf7,0xc6,0xdf,0xe1,0x62,0x71, +0x4b,0x17,0xb0,0x0c,0x95,0x04,0x51,0x17,0x94,0x60,0x3d,0x4e, +0x2c,0xa8,0x97,0xa3,0x3a,0xfc,0x27,0x22,0xaa,0xb2,0x81,0xc5, +0xde,0x26,0x66,0x5a,0x96,0xb6,0x0a,0x05,0x96,0xad,0x4d,0x9d, +0xb7,0xab,0x06,0x14,0x70,0x18,0xc9,0x68,0x5a,0xc0,0xf1,0x4c, +0x5d,0x2a,0xad,0x4d,0x59,0x03,0xda,0x58,0xb0,0x10,0x36,0x13, +0x56,0x8b,0x1b,0x98,0x80,0x22,0x2f,0x13,0x8b,0x7d,0x96,0xd6, +0x0a,0xf9,0x96,0x6d,0x2d,0x9d,0x77,0xaa,0x06,0x15,0xf0,0x11, +0xce,0x18,0xfd,0xfc,0x38,0xfa,0x79,0x4a,0xb7,0x64,0xb5,0xe8, +0xce,0xe2,0x5b,0xb4,0x22,0xb9,0xa5,0x59,0xe5,0xe9,0x95,0xf6, +0xb9,0xfc,0x31,0x9f,0x50,0xf7,0x03,0x7e,0x1c,0x9e,0xea,0x25, +0x19,0xc1,0x19,0x3e,0xc9,0x81,0x0d,0xd9,0x7c,0x44,0x51,0x58, +0x71,0xd8,0x35,0x4e,0xf8,0x46,0x8d,0xe4,0x1b,0x95,0x6e,0xc8, +0xd0,0x6d,0xc8,0xe7,0x0f,0x5f,0xf7,0x7d,0x15,0xd8,0xc7,0xd1, +0x07,0xe5,0x4e,0x0e,0xdf,0xf0,0x7e,0x15,0xdc,0x65,0x77,0x80, +0x2f,0x30,0x2a,0xdd,0x92,0xa1,0xc3,0x89,0x9b,0xc4,0x4b,0xa4, +0x0b,0x3a,0x60,0x04,0xdf,0x8b,0x1b,0x58,0x1a,0x14,0x53,0xc8, +0x8a,0x0f,0xbf,0x32,0xad,0xf3,0xc9,0x87,0x3f,0xe6,0xb3,0xb8, +0xdc,0x9e,0xa0,0xdc,0x0a,0x90,0x63,0x61,0xc9,0xcc,0x3f,0x50, +0x6e,0x29,0x45,0xdb,0xb6,0x5c,0x62,0x1b,0x9e,0xd0,0xa2,0x2c, +0x73,0x16,0xcb,0x30,0x8f,0xc5,0x0b,0x9e,0xb8,0x0d,0xbf,0xc0, +0x79,0x4a,0x9d,0xf6,0x72,0x14,0x8b,0x36,0x57,0xc0,0x4e,0x48, +0x50,0x04,0x6f,0x61,0xe9,0xc8,0x3a,0x76,0x5b,0x71,0xc0,0x53, +0xa5,0x1f,0x99,0xba,0x9c,0xec,0x3a,0x65,0xf0,0x64,0xf5,0x52, +0xe5,0x30,0x8c,0xa5,0x6a,0x35,0x99,0xe8,0xbe,0x5c,0x09,0x63, +0x76,0xdd,0xb1,0x75,0xe5,0x1f,0xee,0xfc,0x61,0xf1,0xf0,0x3a, +0x8a,0x5a,0x87,0x85,0x97,0x04,0x0c,0x98,0x20,0xc9,0x02,0x7d, +0x19,0x3a,0x84,0xa4,0x51,0x22,0x7f,0x24,0x0f,0x14,0x80,0x94, +0x48,0x4b,0x43,0x4e,0x31,0x97,0x2c,0xcf,0x99,0x9c,0xf6,0xe6, +0x5c,0x4f,0x85,0x47,0xd8,0xcf,0x96,0x36,0x43,0x8c,0x5a,0xd6, +0x7f,0x5b,0x92,0x75,0x2b,0x45,0x39,0xbe,0xe1,0xea,0x50,0xe4, +0xbb,0x46,0xbf,0xf6,0xfd,0xdd,0x41,0xc5,0x94,0xec,0xcf,0x1b, +0x5e,0xf3,0x40,0xfd,0xad,0xa5,0x2f,0x5f,0x6f,0xdc,0x6b,0x76, +0xdb,0x9a,0x13,0x2b,0x98,0xdb,0xad,0xdd,0x3d,0x35,0xbd,0x16, +0xa5,0xbc,0xce,0xca,0x25,0xdb,0x70,0xae,0x51,0x91,0x39,0xdf, +0x9f,0xdf,0x59,0xdc,0x5c,0xc6,0xed,0x16,0xe5,0x08,0xa6,0x2d, +0x32,0xf9,0x67,0xaa,0xb4,0xfc,0x3d,0x8d,0x15,0x03,0xcc,0x08, +0xba,0xe3,0x02,0x70,0x67,0xe1,0x37,0xfa,0xd8,0x70,0x21,0xb8, +0xc3,0x42,0x66,0x80,0x1e,0xd2,0x83,0x15,0xb4,0x2a,0xe4,0x85, +0x9b,0xb2,0x04,0x72,0x77,0xcf,0x1e,0x71,0x3a,0x7a,0xb1,0xd8, +0x70,0x18,0xb7,0xe8,0xe1,0xe7,0x4a,0x9d,0x36,0x72,0xf7,0x60, +0x51,0x1a,0x6d,0x71,0x2d,0x8a,0xa0,0x22,0xcb,0xec,0x60,0xc5, +0x72,0xfc,0x8a,0xc4,0x5c,0x89,0x8c,0x3e,0xaf,0xf4,0xa3,0x4e, +0x41,0xa5,0x5a,0xd7,0x89,0xab,0x67,0xaf,0x44,0x9c,0x56,0x38, +0x7e,0x46,0xee,0x6c,0x35,0xc8,0x37,0xa3,0x7c,0xbf,0xa5,0x11, +0x2e,0xb3,0xa3,0x1d,0xf0,0xa0,0xa3,0xad,0xc3,0x56,0x9b,0x5c, +0x27,0xfe,0x4e,0xfd,0x70,0x4f,0x4c,0x37,0x17,0x83,0x3b,0x3a, +0x18,0xf8,0x0d,0xb4,0x48,0x0c,0x13,0xaf,0x73,0xd7,0xea,0x95, +0x4d,0x5e,0x3d,0xbf,0xb6,0x59,0xa7,0x2d,0xa4,0x81,0x83,0x45, +0xcd,0xb8,0xa5,0xdf,0xdc,0x08,0x17,0xd9,0xc1,0x54,0xfa,0x4d, +0x6b,0xdb,0x25,0xe6,0x79,0x6e,0xfc,0xcb,0xa6,0x3b,0x5d,0xb1, +0xc3,0xf4,0x9b,0xbb,0xe9,0x37,0x57,0xd0,0xd6,0xd2,0x82,0x0f, +0x6f,0xb1,0x7f,0xc5,0xfc,0x7e,0xf5,0xc7,0xc4,0x90,0x26,0x1e, +0xb5,0x42,0xd0,0xf3,0x38,0x9e,0xbd,0x94,0x64,0xcb,0xff,0x7a, +0xf9,0xf7,0xcb,0xbf,0x44,0x73,0xba,0x38,0x6c,0x0b,0xc3,0xbb, +0xf0,0x2f,0x6b,0xf8,0x6b,0x25,0xaa,0xb2,0x29,0xd6,0x92,0xff, +0x6f,0x73,0x7a,0x5a,0xad,0xf2,0x0f,0x30,0xd2,0x86,0x23,0xf7, +0x59,0xf9,0x7f,0x0c,0x65,0x8e,0xa4,0x43,0xe4,0xef,0xef,0xd9, +0x25,0x4e,0x43,0x7f,0x16,0x9b,0x0e,0xe3,0x97,0xa3,0xb7,0x6b, +0x2b,0x77,0x07,0x16,0x65,0xd0,0x48,0x4e,0x6f,0x77,0x2b,0x4b, +0xfb,0xab,0x13,0x89,0xb9,0xfc,0x95,0x74,0xaf,0xbb,0x8a,0xab, +0xb6,0xdd,0x38,0x79,0xf5,0x6c,0x64,0xf8,0xe8,0xbd,0x9e,0xab, +0x86,0xcf,0x5b,0xf0,0xf3,0x61,0x4b,0x6d,0x5c,0x61,0x0b,0x84, +0x39,0x68,0x65,0x6b,0xbb,0xd1,0x22,0xc7,0x91,0x7f,0xd0,0x78, +0xbb,0x3f,0xe6,0x06,0x2d,0xb1,0x5e,0x87,0xe4,0xb6,0xa0,0x47, +0xa2,0x99,0x38,0xdd,0x3b,0x66,0xdf,0xd9,0xe6,0xd6,0xf3,0x1b, +0x5b,0xf5,0x3b,0x42,0x3b,0xe8,0xbd,0xb6,0xe0,0xd6,0x61,0x0b, +0x6d,0x5c,0x64,0x4b,0x01,0xfe,0xa0,0xb5,0xad,0xf5,0x22,0xd3, +0x6b,0xce,0xfc,0x77,0x4d,0xf7,0xfb,0x62,0x6f,0x7e,0xfa,0x26, +0x8a,0x5b,0x89,0xed,0x96,0x8d,0x3a,0x38,0xc6,0xa6,0xd8,0x8a, +0x6f,0xca,0x69,0x2c,0xa8,0x2d,0xe1,0xd0,0xa4,0xaf,0x45,0x50, +0xb5,0x1d,0x80,0x6b,0xa2,0x2d,0x9b,0x7d,0x2d,0x33,0x3f,0xb5, +0x90,0x13,0x02,0xda,0x46,0x0e,0x5a,0x33,0x34,0x96,0xc7,0x13, +0x98,0x26,0xa8,0xe2,0xb4,0xd1,0xdb,0xf3,0x20,0x6d,0xe2,0xac, +0xdb,0x7b,0xf6,0xd1,0xdb,0xf3,0x61,0xb1,0xfe,0x30,0x6e,0xd3, +0xa5,0xb7,0xd7,0x31,0x7a,0x7b,0x59,0x9f,0x6a,0x73,0x0b,0x2b, +0x5c,0x1a,0x39,0x44,0x3c,0x4f,0xc5,0x14,0x2b,0xc3,0xb4,0x5f, +0xd9,0xe3,0xde,0x11,0x81,0xc7,0x02,0xb9,0xe3,0x27,0x2e,0x1d, +0x9f,0x1d,0xe3,0xf6,0xf5,0x95,0x5b,0xd1,0x03,0x57,0x15,0x62, +0xce,0x44,0x9f,0x89,0x3a,0x5b,0x9c,0xc7,0x87,0x94,0x7a,0xd7, +0x04,0xe5,0xee,0x0f,0xe2,0x13,0x4f,0x24,0x1f,0x4d,0x3e,0xea, +0x77,0xc1,0xe7,0xa2,0xc7,0xc5,0x94,0xbc,0xe4,0xa2,0xc4,0x62, +0xee,0x07,0x88,0xc7,0x3f,0x99,0xa4,0xd4,0x84,0xb4,0xb8,0x8c, +0xd8,0x13,0xfc,0xe3,0xea,0xfe,0xa6,0xd8,0x1e,0x7a,0x1f,0x2b, +0x3a,0x60,0x79,0x34,0x13,0x6f,0x74,0xdb,0xf1,0x8d,0x7d,0x6e, +0x1d,0xbf,0xbe,0x56,0xa7,0x21,0xa8,0x86,0x83,0x65,0x8d,0xb8, +0xbd,0xd3,0xdc,0x02,0x17,0x3a,0xc0,0xe7,0xcc,0x41,0x37,0x3b, +0x77,0x15,0xa7,0x94,0x50,0xde,0x22,0xe6,0x74,0x68,0x44,0xd8, +0xd1,0x50,0x05,0xf4,0xc4,0x78,0xd8,0xcc,0x9c,0xd0,0x32,0xd7, +0x43,0x0d,0xc7,0x3c,0x1a,0x04,0x0d,0x5b,0xef,0x7c,0x9f,0xf4, +0x46,0xf2,0xa1,0x9e,0xc9,0x98,0x5e,0x0b,0x1a,0x52,0x82,0x93, +0x4c,0x6d,0x4a,0x4a,0xb5,0x72,0x37,0xeb,0x90,0x24,0xb7,0x8b, +0x15,0xcf,0x0b,0x83,0xa3,0xd5,0x74,0x41,0xe9,0x95,0x41,0x7e, +0xa5,0x46,0xdb,0xa9,0x98,0x33,0x97,0xff,0x53,0x4d,0x25,0x30, +0xa5,0x11,0xa7,0x74,0x5a,0x5a,0xe0,0x52,0x07,0x98,0xc1,0x84, +0x7a,0xd8,0xb9,0x6e,0x77,0xce,0x72,0xe1,0xef,0x57,0x0f,0xb5, +0xc6,0xf4,0xd2,0x42,0xae,0xea,0x60,0x3e,0xe2,0x1c,0x82,0x01, +0x03,0x10,0xc0,0x74,0x4b,0xfa,0x36,0xc2,0x90,0xc5,0x3a,0x27, +0xa2,0x8d,0x01,0xc3,0x2c,0xe4,0xcf,0x84,0x08,0x6d,0x8c,0x18, +0x35,0xaf,0x35,0x20,0xbd,0x22,0xff,0x7c,0xcf,0x16,0x71,0x06, +0x46,0xb0,0x78,0xf2,0x28,0x6a,0x19,0xe0,0x64,0xa5,0x4e,0x6b, +0xda,0x45,0x96,0xa4,0x81,0x23,0x9c,0x54,0x84,0xbd,0x2c,0x34, +0xe2,0x73,0x72,0x32,0xf9,0x54,0x54,0x78,0xc4,0xa9,0xd3,0xfc, +0xd9,0x57,0xc0,0x76,0x23,0x8d,0x36,0xc6,0x94,0xed,0x2f,0x37, +0x03,0x65,0x26,0x1c,0x39,0x7d,0x9c,0x88,0x2c,0x8e,0x6d,0xb4, +0xe6,0x7f,0xfd,0xa9,0xf9,0x63,0xf4,0x6f,0x34,0xb6,0xef,0xeb, +0x13,0x56,0x32,0x57,0xa3,0xbe,0x8a,0x3e,0xa3,0xf4,0x1b,0xce, +0xad,0xae,0x97,0x13,0x26,0x82,0x3f,0xe9,0xc6,0xdd,0x9f,0xbe, +0xb9,0xc0,0x0c,0x14,0xd8,0xc3,0x38,0xcb,0x10,0xc7,0xe1,0x54, +0x9c,0x54,0xe3,0xc8,0x7f,0xf8,0xad,0x0b,0xc6,0x47,0xbd,0xa3, +0x5f,0xd5,0xee,0x11,0xb4,0x63,0x99,0x68,0x1c,0xd3,0xba,0x01, +0xe4,0x70,0x4c,0x79,0x03,0x4f,0xf1,0xfd,0x33,0xc3,0xf7,0x61, +0x92,0xe0,0xa1,0x4a,0xc8,0x87,0x78,0x8e,0x32,0x0a,0x8e,0x32, +0x8a,0xf1,0xbd,0x14,0x13,0xa5,0x44,0x55,0xf3,0x4c,0x3e,0xe2, +0x08,0x65,0x14,0x2e,0xe1,0xce,0x52,0x12,0x02,0x18,0x5b,0xf9, +0x63,0xf9,0x0b,0xda,0x0b,0x9f,0xa4,0x11,0x48,0xee,0xc5,0x64, +0x98,0x03,0xa7,0x04,0x2d,0xf1,0x9a,0xa8,0x05,0x47,0x29,0xd6, +0x45,0x98,0x40,0x04,0xae,0xc3,0x32,0x63,0x19,0xdb,0x87,0xd5, +0x8c,0xa1,0xf0,0x33,0x41,0x0d,0xfa,0x19,0x0d,0x1a,0x42,0xe6, +0x10,0x7a,0xb0,0x17,0xe7,0xb0,0x78,0xca,0x82,0x50,0xe4,0xd2, +0x90,0x6c,0x90,0x8e,0xce,0xa4,0xa7,0xe6,0xe3,0x5e,0x8a,0x50, +0xb5,0x60,0x40,0x7a,0x60,0x62,0x09,0xcc,0x4e,0x04,0x55,0xae, +0x9e,0x76,0xc9,0xa4,0x5b,0x09,0x43,0x71,0xfd,0xfa,0x31,0xfc, +0x69,0xe3,0x13,0xfb,0xc2,0xf7,0x7c,0xb2,0xdf,0x0a,0x5d,0x14, +0xb0,0xd0,0x77,0x53,0xbb,0x6b,0x9b,0x4b,0x8b,0xa3,0x93,0x86, +0xc9,0x9e,0x1d,0x92,0xfd,0xd6,0xa3,0xdb,0x03,0xf7,0x9a,0x9f, +0x16,0xfb,0x17,0xfb,0x14,0x7b,0x55,0xb5,0xf1,0x5e,0x55,0x3e, +0x65,0xde,0x25,0x9c,0x6c,0x39,0x1c,0x20,0xbd,0x78,0x0e,0x76, +0xc1,0xfe,0x5e,0xdc,0xff,0x29,0x6b,0xb9,0xab,0x09,0xb8,0x52, +0x32,0x1c,0x66,0x42,0xc3,0xb2,0x3f,0x4e,0xdf,0x8c,0x1c,0x4e, +0x5e,0x54,0x41,0xf9,0xc7,0xa4,0x8f,0x0f,0x3f,0xa4,0xc1,0x14, +0xfa,0xa4,0xd4,0xfb,0x05,0xf5,0x58,0x26,0x0d,0xa7,0xde,0x5b, +0x4a,0xd1,0x78,0xbc,0xb4,0x57,0x71,0xea,0x87,0x2d,0xc0,0xf8, +0xc1,0x34,0x4e,0xfc,0x7e,0x3d,0xb9,0xf6,0x2c,0xef,0x4d,0xd6, +0x5b,0x0e,0xa6,0x30,0xc7,0x71,0x4e,0x10,0x4e,0xb2,0x99,0xef, +0x55,0xe2,0x59,0xe4,0x55,0x20,0xe5,0xcd,0x10,0x56,0xd3,0x2b, +0x46,0xd2,0x2b,0x86,0xf4,0x62,0x08,0xcc,0xd7,0xa7,0x57,0xf4, +0x32,0x01,0x2f,0x7a,0xc5,0x10,0x13,0x70,0x63,0x7d,0x70,0xfa, +0x26,0x7a,0xc5,0xa9,0x8b,0x2a,0xe9,0x15,0xa7,0x7c,0xfc,0x9a, +0x5e,0x71,0x2a,0xbd,0xe2,0x8e,0x01,0x61,0x47,0x2c,0x93,0x8e, +0xd3,0x1e,0x2c,0x85,0x19,0x9f,0xae,0x38,0xfd,0xc3,0x26,0x60, +0x7c,0xa5,0x2b,0x3e,0x16,0x4d,0xc8,0x6b,0x38,0x2c,0x0b,0xc5, +0xa6,0x91,0xbb,0x2c,0x1c,0x13,0xa2,0x08,0xaa,0x43,0x06,0xa8, +0x33,0x54,0x27,0x3d,0x22,0xa0,0x8e,0xdd,0xa8,0x4e,0x01,0x2a, +0x04,0xdc,0xc8,0x0b,0x98,0x5e,0x2b,0x65,0x10,0x5d,0xca,0x3d, +0x1c,0xc4,0xf7,0x54,0x79,0x27,0x77,0xc4,0xb5,0x51,0xe5,0x17, +0x88,0xf3,0x6d,0x50,0x69,0x25,0xca,0x57,0x5b,0xf1,0x65,0x75, +0xc5,0x6d,0xf9,0x5d,0x99,0xc8,0x54,0xe2,0x98,0xa1,0x45,0x7a, +0xdb,0x37,0xed,0x40,0x76,0x57,0x89,0x21,0x0f,0xcc,0xc3,0x97, +0xdf,0x0c,0x3f,0xed,0xdb,0xfe,0x48,0xfd,0x97,0x1d,0xe5,0x03, +0xfc,0xca,0x87,0x9a,0x0f,0xcd,0x1e,0x73,0xa2,0x22,0x24,0x90, +0x93,0x29,0x54,0x27,0x1e,0x0f,0x8f,0xe0,0xcf,0x00,0x81,0x55, +0xfd,0xb8,0x0a,0x0c,0x0c,0xd0,0x00,0xb5,0x8d,0x40,0x8d,0x39, +0x8a,0x53,0x6d,0xa9,0x86,0x9d,0x86,0x8b,0xea,0x6d,0xf9,0x3f, +0x61,0x52,0x2d,0x8c,0xbf,0xfa,0x37,0xbd,0xa9,0xc6,0x41,0x21, +0xf2,0xbf,0xe3,0x04,0xf2,0xa8,0xd6,0x50,0x27,0x07,0xef,0x60, +0x88,0x44,0x48,0x93,0x0a,0xdc,0x1e,0x1c,0xab,0x07,0x63,0x7c, +0x80,0x19,0xd5,0xdb,0xff,0xec,0x90,0x6d,0x20,0x7d,0x23,0x0c, +0x9b,0x52,0x94,0x54,0x18,0x5f,0xa4,0x9b,0xcc,0x3b,0xe2,0x94, +0x4d,0x94,0x54,0xc9,0x6d,0xa4,0xad,0xff,0x61,0xef,0xf0,0xd7, +0x6d,0x4f,0x39,0xd9,0x46,0xbc,0x43,0x90,0x63,0x22,0x5b,0x22, +0x9b,0xeb,0x15,0xef,0x8d,0x4c,0x62,0x2f,0xec,0x3e,0xbf,0xe7, +0xcc,0x3e,0x0e,0x57,0x98,0x52,0x90,0x3a,0xb5,0xe3,0x84,0x66, +0xb8,0x26,0x27,0xbc,0x65,0x2e,0x1c,0x91,0xb3,0x3d,0x75,0x34, +0xd4,0x68,0x36,0xce,0x60,0x3e,0x51,0x8f,0x5f,0xca,0x0b,0x5f, +0xa6,0x28,0x4b,0x1e,0xf2,0x91,0x54,0x1a,0x4d,0xeb,0xc6,0x89, +0x4c,0x4c,0x47,0x54,0xef,0x95,0x5e,0xaa,0xed,0x19,0xd1,0x03, +0x3c,0xc8,0x45,0xeb,0x0b,0x96,0xe7,0x2d,0x39,0x0c,0x62,0xa2, +0xbb,0xa2,0x3a,0x2e,0xb7,0x70,0x42,0xac,0x1f,0x71,0xbf,0xe4, +0x7c,0xc9,0x49,0x09,0x4f,0x32,0x51,0x9d,0xf4,0x5c,0x2b,0x07, +0x87,0x19,0xec,0x45,0x0f,0x72,0xce,0xe4,0xac,0xe9,0x69,0x0b, +0x0e,0x0f,0x33,0xf1,0xdd,0x57,0x7b,0x62,0xbb,0x39,0xc8,0xc0, +0x6d,0x24,0xb6,0x33,0xba,0x27,0x9a,0xfe,0xe2,0x69,0xe6,0x82, +0xc9,0x79,0x93,0xb3,0x96,0x54,0x6a,0xec,0x04,0x4d,0x02,0x17, +0x7b,0xf1,0x22,0xcc,0x85,0x10,0x61,0x9f,0x78,0x4e,0xdc,0x07, +0x7e,0x38,0xf7,0x53,0x3f,0x59,0x8f,0x15,0x26,0xc2,0xc7,0x5e, +0xcc,0x66,0xc4,0x86,0x48,0xf2,0x1e,0x2c,0x65,0x73,0x30,0x66, +0xe4,0x2c,0x2b,0x34,0x48,0xdd,0x66,0x3d,0xed,0x2d,0xeb,0x99, +0xbe,0x4f,0xdd,0x66,0x2b,0xed,0x36,0xe2,0x7d,0x51,0x8b,0xe0, +0x5c,0xa1,0x14,0xe6,0x32,0xf0,0x1e,0x57,0x49,0x7d,0x68,0xbd, +0xd4,0x87,0xfc,0x66,0xd2,0xf7,0xe7,0xe3,0x56,0xda,0x87,0x2a, +0x05,0x37,0x72,0x2a,0xe5,0xec,0x57,0x11,0x27,0x23,0x4e,0xf0, +0xe7,0x60,0xee,0xc7,0xae,0x79,0x60,0x62,0x8a,0x26,0x38,0xcb, +0x9c,0xa2,0xe5,0x71,0xfc,0xc2,0x0d,0x17,0xab,0xe0,0x8c,0x6a, +0x1b,0xfe,0xf6,0xfb,0xfc,0xbf,0xa3,0xa9,0x34,0x16,0x73,0x7b, +0x84,0x58,0x26,0xe6,0xca,0xa5,0xcb,0xe7,0x95,0xee,0xe3,0xfa, +0xca,0x6a,0xb9,0x16,0xf8,0x96,0x88,0x5b,0x84,0xa3,0xc2,0x16, +0x0c,0xbc,0x05,0x25,0x1d,0x58,0xf2,0xc4,0x70,0x3b,0x66,0x59, +0x42,0x96,0x16,0x8b,0x2b,0x70,0x2a,0x79,0x20,0x70,0x9a,0xac, +0xed,0x04,0x4d,0x91,0x7b,0xc0,0xe2,0x94,0x09,0x02,0xa7,0x2a, +0x72,0x0c,0xe5,0xfa,0x6a,0xa4,0x6b,0x44,0xce,0x9c,0x15,0xc6, +0x6b,0x92,0x87,0x41,0x3f,0x3a,0xdd,0x73,0x29,0xea,0xe0,0xf7, +0xd6,0xac,0xa9,0xdd,0x95,0xcb,0x89,0x04,0xd7,0x91,0x5f,0x0b, +0x9e,0xd5,0xf5,0x34,0x7a,0xd4,0xf2,0x36,0x6e,0x9b,0x9d,0xd7, +0x84,0x8c,0xba,0x59,0x6c,0x22,0xcd,0x90,0x67,0xd7,0xdf,0x3c, +0xea,0x19,0x72,0xc3,0x48,0x0f,0xf3,0xa4,0x7f,0x92,0x67,0x88, +0x9d,0x94,0xd2,0x3d,0x96,0xe0,0x8a,0xc2,0xf5,0x95,0xa6,0x8d, +0x1c,0x54,0xb6,0x8b,0x17,0x99,0xe4,0x8c,0xc4,0xcc,0xf8,0x6c, +0x0e,0xfe,0x84,0xe4,0x91,0xf5,0x34,0xfa,0x24,0x30,0xc7,0x43, +0xc3,0x0f,0x1d,0x09,0xe3,0xf0,0x3b,0x2b,0xc8,0x67,0xf4,0x1c, +0xd6,0x79,0xe2,0x2c,0xbf,0x6c,0x1b,0xbe,0x2d,0xb1,0x31,0xb9, +0x36,0x85,0x43,0x8b,0x7e,0xd8,0x0a,0x2e,0x68,0x47,0x15,0x2f, +0x84,0xcd,0xa7,0xd4,0x32,0xd9,0x4e,0x8e,0x56,0x79,0x4d,0x72, +0x6a,0x95,0xb4,0x3d,0xa2,0x26,0xbc,0xf1,0x44,0xeb,0x49,0x0e, +0x55,0x85,0x30,0x62,0x2c,0x36,0xf7,0xb1,0x42,0xf3,0x42,0x62, +0x20,0x36,0x0f,0xb2,0xd0,0x86,0xd1,0xc4,0x70,0x2f,0xfa,0x32, +0x43,0x05,0x1d,0xa5,0xb5,0xd5,0x1c,0x18,0x31,0x95,0x1e,0xed, +0xde,0xc3,0xfb,0x39,0x0c,0xa1,0x6c,0xfd,0xb1,0x8c,0x90,0x5b, +0xb0,0x4f,0xab,0xfb,0x16,0x2c,0x69,0xc7,0x25,0x5f,0x9b,0x69, +0xe0,0xbe,0xaf,0x4d,0x35,0x70,0xae,0x15,0xcc,0xd5,0x62,0xc5, +0xad,0x54,0x2f,0x63,0xe7,0x51,0x5c,0x6c,0x83,0x72,0x4a,0x9d, +0x2e,0x95,0xaf,0xd3,0xdf,0xc6,0xc1,0x2a,0x05,0x50,0xc2,0x94, +0x85,0xd2,0xfc,0xeb,0x93,0xff,0xcd,0x83,0x5e,0x62,0xc1,0x44, +0x9a,0x07,0x55,0x00,0x43,0x50,0x60,0x64,0xcb,0xc4,0xdf,0x48, +0x17,0xa6,0x3c,0x06,0x2f,0xaa,0x95,0x7c,0xa8,0x56,0xb2,0x55, +0xc3,0x93,0xe6,0x70,0x88,0x0d,0xd2,0xd9,0x66,0x8d,0x8b,0x6d, +0x73,0x4c,0x78,0xd8,0x36,0xf8,0xea,0x46,0xfc,0x1b,0x69,0xc5, +0xee,0xea,0x1f,0xcc,0x41,0x6b,0x5f,0x4e,0x1f,0x8f,0x5f,0x76, +0x6e,0x69,0x0a,0xb8,0xce,0xc1,0x42,0x69,0x81,0xd7,0xc7,0x1f, +0xe0,0x23,0x33,0xb2,0x1b,0xcf,0xfd,0x77,0xf6,0x54,0x41,0x4a, +0xde,0xdc,0xfa,0x37,0x59,0x8b,0x1f,0x7f,0xa2,0xb8,0x3f,0x4e, +0xd0,0x25,0xfd,0x10,0x8e,0xc7,0x60,0xb3,0x21,0x6e,0x46,0x57, +0x0c,0xef,0x87,0xdd,0xb0,0x8c,0xb9,0x80,0x77,0x35,0x70,0x2f, +0xda,0xe3,0xc2,0x4a,0x2a,0x54,0x0e,0xc2,0xd6,0xfb,0xe0,0x19, +0x0d,0x77,0x39,0xd8,0xc9,0x88,0x5d,0xb8,0x9c,0x9c,0x4a,0x3d, +0x7d,0x99,0x36,0xad,0xe3,0xfc,0x59,0xf8,0x02,0xf8,0x5e,0xa4, +0x90,0x6b,0x88,0x86,0xb8,0xde,0x84,0x7e,0xf7,0x18,0x7e,0xee, +0x44,0x5b,0xf6,0x18,0x9c,0x53,0x6b,0xc3,0xbf,0x84,0x09,0xe5, +0x30,0x26,0x46,0x42,0xac,0xd2,0x01,0xe1,0x32,0x8d,0x02,0xd2, +0xc2,0x03,0x98,0x80,0x26,0xf5,0xd5,0x72,0x82,0x07,0x96,0x92, +0xad,0x8c,0xc7,0xa9,0xab,0xf5,0xca,0xc2,0x54,0x23,0x51,0x91, +0xd5,0xcc,0x09,0xba,0xa9,0xf4,0x13,0xd3,0x92,0x28,0xed,0x0b, +0xdd,0xc1,0x5a,0x4a,0xdb,0xf5,0x0d,0x65,0x9e,0x04,0x8b,0x98, +0xb8,0xea,0xd8,0xaa,0xe8,0x0a,0x83,0x58,0xfe,0x9c,0xfb,0x19, +0x97,0x93,0x2e,0x1c,0x6e,0x30,0xa6,0x7d,0xdd,0x1b,0xe5,0xcc, +0x90,0xd5,0x58,0xc7,0x41,0xea,0x3a,0x36,0xab,0x2c,0xab,0x36, +0xb1,0x82,0x6b,0xc0,0xbd,0x6c,0x5c,0xae,0x94,0x3b,0xd4,0x34, +0x96,0x0f,0x5a,0x66,0xb5,0x5c,0x43,0xad,0xca,0x8d,0x8f,0xbd, +0x7a,0x35,0x36,0x36,0x8e,0xc3,0x7f,0xc3,0xcf,0xb0,0x94,0xad, +0x71,0x28,0x2a,0xcb,0xad,0xc9,0xa9,0x57,0x10,0x0f,0xf7,0x42, +0x38,0xa5,0x23,0x2a,0xa8,0xcc,0x26,0x9b,0x4a,0x4d,0xa2,0x49, +0x1a,0x3f,0x11,0x4a,0xb0,0x9b,0x4d,0xab,0x4d,0xae,0x4d,0xa8, +0xe3,0xa0,0x91,0x11,0x47,0xda,0xc8,0x09,0xff,0x43,0xae,0x21, +0x54,0xfa,0x2d,0x66,0x72,0x4a,0x33,0xa9,0x00,0xe1,0x2c,0x24, +0x47,0xf4,0x99,0xaf,0x71,0x26,0xdb,0x3a,0x13,0x66,0xfe,0x4c, +0x5f,0xe1,0x90,0x25,0xf9,0x00,0xf1,0xf3,0xd9,0x11,0x57,0x9c, +0x4b,0x60,0xde,0x6b,0x9c,0x27,0xbd,0x37,0xef,0x67,0xfa,0x0a, +0x87,0x9e,0x11,0x7a,0x9d,0xf1,0x18,0xcf,0x60,0x90,0x31,0xc9, +0x70,0xcd,0x70,0x48,0xb1,0x69,0x4a,0xe3,0x8f,0xb4,0x84,0x35, +0x1d,0xac,0xe4,0xf0,0x0f,0xbc,0x48,0xaa,0x6e,0x14,0x3e,0x4f, +0xfa,0xd6,0x3a,0x91,0x0f,0xdf,0x1d,0xa8,0xe9,0x6e,0xc8,0x41, +0x32,0x18,0x91,0x34,0x8b,0x64,0xd3,0x04,0xed,0x8e,0x24,0xfe, +0xf8,0xd0,0x91,0xde,0xb0,0x0e,0x0e,0x17,0x1e,0x23,0x71,0xba, +0xb1,0xbb,0x22,0xb5,0xba,0x62,0xf9,0x0b,0xf7,0x4e,0xdf,0x39, +0x71,0x83,0xf6,0xa0,0x4e,0xc1,0x9d,0x76,0x78,0x29,0x8b,0xc9, +0xf1,0x13,0xb4,0x56,0x78,0xe0,0x7a,0x90,0x03,0x43,0x63,0x5a, +0x2b,0x0b,0x4d,0x41,0x91,0x89,0xc0,0x69,0x2e,0x38,0x7f,0x25, +0xce,0xac,0xb1,0xe5,0xbf,0xf9,0x58,0xf8,0x3e,0xe6,0x17,0x5a, +0x25,0xd7,0xfa,0x84,0x2b,0xff,0x59,0x0b,0xf2,0x2d,0xae,0xa8, +0xaa,0x95,0x83,0x0f,0x3d,0x04,0x9c,0xfa,0xd0,0x09,0xaa,0xc1, +0xbf,0x4f,0xbc,0x6b,0x0c,0x4d,0x23,0xbb,0x70,0xa1,0x10,0xa9, +0x2f,0x46,0xe2,0x34,0x23,0xe1,0x5f,0xfd,0x18,0xca,0xc8,0xbf, +0x94,0xb2,0xb5,0x36,0x09,0x5b,0xd5,0x99,0x8c,0xb2,0xf4,0xda, +0x04,0xe9,0x89,0xaf,0x66,0x63,0x73,0x62,0x73,0xa3,0x73,0x2d, +0x63,0xf9,0xd0,0xa5,0x4e,0x2b,0x75,0xd5,0x2b,0x3d,0xf8,0xe4, +0x34,0x39,0xd9,0x01,0xfc,0x40,0x6e,0x3e,0x82,0x3f,0x51,0xa5, +0x07,0xfc,0x5a,0xd1,0x90,0xcd,0x2a,0xc8,0xae,0x4d,0xca,0xb7, +0xcc,0xe6,0xc3,0xbd,0x0e,0x38,0x04,0xb9,0x73,0xd2,0x16,0x71, +0x0b,0x37,0xe6,0x08,0xae,0xc4,0x3f,0xe1,0xb9,0x0e,0xfe,0xdb, +0x0a,0xfe,0x4d,0x03,0xe2,0x22,0x36,0xcd,0x42,0x0e,0xa6,0x31, +0x8d,0xc9,0x19,0x0d,0xca,0x54,0x54,0x2a,0xb6,0xb3,0xf8,0xab, +0x50,0x47,0x22,0x0a,0x82,0xab,0x0e,0xe5,0xda,0x05,0xf3,0x19, +0x21,0x39,0xee,0xc9,0x01,0x1c,0x66,0x5f,0x20,0x27,0xf7,0x1f, +0x71,0x3d,0xe4,0xc9,0xe1,0x67,0x4c,0x66,0x69,0x5a,0x79,0x4a, +0x25,0x27,0x58,0xdb,0x92,0x5e,0x53,0x93,0x64,0xc6,0xc2,0x90, +0x9c,0xb0,0x0f,0x0e,0xb0,0x0d,0xb8,0xe6,0xca,0xf7,0x57,0x96, +0xd7,0x24,0xde,0xe4,0xae,0x5b,0x33,0x76,0xd9,0xe1,0xad,0x4a, +0xdf,0xd9,0x20,0x82,0x0a,0x03,0xa8,0x45,0x34,0x98,0xc0,0x73, +0x51,0x79,0xca,0x55,0x30,0x86,0x1d,0xb1,0x94,0xc2,0xac,0xc2, +0x3d,0x54,0x60,0x9b,0x67,0x82,0xc2,0x23,0xfa,0x8a,0xe6,0x68, +0x4c,0x60,0xc1,0x3d,0x5c,0x20,0x9d,0x5a,0xf0,0x88,0xbe,0x0a, +0x09,0x30,0x85,0x58,0x22,0x76,0x50,0x79,0x88,0xce,0x24,0xcd, +0x25,0xcd,0x21,0xc9,0xa6,0x3e,0x95,0x3f,0xd6,0x7a,0xb8,0x31, +0xac,0x8a,0xc3,0x16,0x5a,0x95,0xe5,0x43,0x79,0xcf,0x13,0xbe, +0xb5,0x4f,0xe0,0x8f,0xef,0x0e,0xd1,0xf4,0x32,0xe0,0x20,0x04, +0x8c,0x49,0x8a,0x65,0xa2,0x69,0xbc,0x76,0x73,0x12,0x7f,0xf2, +0xc6,0xb1,0xde,0xa3,0xb4,0x2a,0xa7,0x1d,0x23,0x57,0x75,0xa3, +0x77,0xed,0x53,0x6c,0xbb,0x7a,0xf1,0xee,0xd9,0xdb,0x27,0x6f, +0x2a,0x40,0x8a,0x23,0xa9,0xf2,0xad,0x72,0x29,0xf0,0xa8,0xad, +0xe4,0xf7,0x57,0xb8,0xd6,0x79,0x14,0xd2,0xda,0x4d,0x14,0x5c, +0xc9,0xd9,0xd4,0xd3,0x91,0xc7,0xa5,0xda,0xa5,0xe1,0xfc,0x7d, +0xe7,0x02,0x30,0x31,0xa3,0xe1,0x7c,0x92,0x05,0xd5,0xc7,0x27, +0x90,0x78,0xe2,0x12,0x75,0x9c,0x5a,0x65,0xc3,0x0f,0xbc,0xcb, +0xf9,0x2b,0xea,0x47,0x5a,0xb7,0x69,0xdd,0x34,0x9c,0xc7,0x8e, +0x86,0xf3,0x01,0x5c,0x5f,0x41,0x7b,0x5b,0xd3,0x5a,0x22,0x4c, +0x7e,0xde,0xb5,0x05,0xb4,0x8d,0x51,0x1b,0xd7,0x88,0x9a,0x1a, +0xa6,0x70,0x04,0xcf,0xf7,0xc1,0xf9,0xb7,0x3d,0xac,0x18,0x2b, +0x1c,0x22,0xd1,0xd5,0x51,0x35,0x57,0xea,0xcc,0xa2,0xf8,0xe3, +0xb8,0xcb,0x1f,0x95,0x8c,0x16,0xd5,0x3b,0xf3,0x8d,0x4f,0x8a, +0xde,0xa4,0x7f,0xe4,0xe8,0x65,0x2e,0xe1,0x98,0x63,0xcb,0x82, +0xd7,0x07,0x14,0xf8,0x5f,0xf3,0xc9,0xdd,0x6f,0xc3,0x97,0x07, +0x95,0xed,0x2f,0xf6,0xb2,0x43,0xb2,0x0b,0xc7,0xac,0xda,0x50, +0x65,0xc7,0x83,0x1e,0x55,0xbe,0x63,0xe0,0x12,0xdc,0x57,0x6c, +0x60,0xff,0x9e,0x47,0x7e,0x11,0x27,0xaf,0x64,0xfe,0xb3,0x85, +0x13,0xd7,0x89,0x1b,0x0c,0x60,0x98,0x46,0x96,0x1f,0x47,0x17, +0xda,0xe0,0x12,0xc9,0x0d,0xf6,0x30,0x7c,0xf9,0x18,0x0c,0xaf, +0x00,0xfd,0xfd,0x4d,0xe2,0x08,0x1a,0x30,0xe9,0x06,0x72,0x94, +0xca,0xb7,0x66,0x67,0xd2,0x2e,0x28,0xc0,0xc0,0xa0,0xb8,0x9b, +0xc5,0xdf,0x71,0x0b,0xd9,0x8f,0x72,0x1e,0xab,0xb6,0x2d,0xef, +0x72,0xe3,0x9f,0xff,0x55,0x07,0x13,0x8a,0x80,0xe1,0x84,0xf3, +0xc7,0x48,0xff,0xf2,0x6e,0xfc,0xac,0x12,0xa7,0x0f,0x64,0xf3, +0xee,0xa0,0xa8,0x0f,0x53,0x4c,0x5f,0x8f,0x0e,0xfe,0x8e,0xba, +0xa5,0x68,0xff,0xd7,0x2d,0xa5,0xa8,0xb8,0xb8,0xa6,0xb0,0x99, +0x13,0x8b,0x06,0x64,0x8a,0x6c,0xd9,0xc3,0xc2,0x17,0x99,0x6f, +0xb9,0x9e,0x40,0x82,0x05,0xc2,0x35,0x28,0x60,0x45,0x2f,0x0c, +0x20,0xb0,0x59,0x58,0x81,0x9b,0x59,0xe0,0xc5,0xc9,0xa4,0x07, +0x7b,0x61,0x32,0x64,0xf6,0x88,0x3f,0x99,0x42,0x3a,0x4e,0xc6, +0x76,0x53,0x28,0x63,0xfd,0x36,0x7e,0xb9,0x07,0x77,0x6a,0x17, +0x4a,0x73,0xb5,0x8f,0xdf,0x3f,0xcb,0x00,0x96,0x8b,0xa1,0x3c, +0x8d,0x85,0x71,0x5b,0xc0,0x54,0x5d,0xb2,0x04,0xd9,0x77,0x7b, +0xcd,0x2d,0xff,0x17,0x94,0xc2,0xec,0x4b,0x22,0xb8,0xbd,0x1b, +0x67,0x0e,0x2f,0x7e,0x06,0x8b,0x61,0xce,0x4f,0xa0,0xd6,0x0e, +0xb6,0x5c,0xc7,0x48,0xb8,0x9e,0x6c,0x13,0x6b,0x83,0xfb,0x36, +0xd1,0x56,0xa3,0x80,0x93,0xe7,0xfd,0xb9,0x13,0xbe,0x30,0x81, +0x2d,0x7a,0xa1,0xfc,0x75,0xd4,0xf8,0x06,0x67,0xd3,0xa8,0x38, +0x76,0xe1,0x16,0x9c,0xb9,0x0f,0x37,0x98,0x17,0xe8,0xf1,0xa0, +0xda,0x07,0x73,0x1f,0xc2,0xb8,0x1f,0x61,0xec,0x5a,0x50,0xda, +0x0d,0x5a,0x46,0xf4,0xd6,0x7e,0x17,0x96,0x11,0x9f,0x70,0xef, +0x08,0xaf,0x08,0x0e,0x8e,0x01,0xd3,0x8b,0xcc,0x27,0xfe,0x35, +0x5b,0xca,0x0b,0x12,0xcd,0x4a,0xf3,0x22,0x76,0x27,0x12,0x8c, +0xf8,0x86,0x84,0xa6,0x24,0x29,0xcf,0x69,0x39,0x4e,0x65,0xd3, +0x0c,0x24,0x2f,0xac,0x34,0xc9,0x2f,0xa0,0x83,0xad,0x4a,0xae, +0x4c,0xa9,0x4c,0xe5,0x84,0xe7,0x7d,0xa3,0x93,0xe6,0x3b,0xa0, +0xb0,0x0f,0x0b,0x61,0x9e,0x3e,0xce,0xc3,0xb3,0xc6,0x70,0x16, +0x77,0xe0,0x71,0x63,0xf0,0x63,0x3d,0x70,0xfa,0x1a,0x4a,0x4f, +0x67,0x2f,0x94,0xe8,0xe9,0x3c,0x98,0xf0,0xe4,0x63,0x16,0x4c, +0xa7,0xad,0x4a,0x73,0x40,0xd0,0x8c,0x65,0xb2,0x70,0xc6,0xb7, +0x8b,0x60,0x31,0x72,0x15,0x9d,0x3c,0xce,0xfd,0xb8,0x1a,0xe4, +0x3c,0xe8,0xbb,0xf2,0xff,0x28,0x09,0x13,0xc9,0x80,0x38,0x1d, +0x74,0x84,0x8d,0x03,0xe2,0x46,0x50,0xd1,0x41,0x15,0x71,0x91, +0xa1,0xb0,0x08,0x75,0xc4,0xb1,0x86,0xf0,0x8a,0xb5,0x40,0x79, +0x9c,0x49,0x91,0xc1,0x13,0xe5,0x2a,0x4c,0x79,0x38,0x0b,0xb3, +0xe0,0x33,0x60,0x33,0x47,0x99,0xef,0xa6,0x9b,0xc2,0x26,0x29, +0x3d,0xcc,0x54,0x0a,0x8d,0x2c,0x2d,0x08,0x5f,0xd6,0x27,0x8d, +0x7b,0x4d,0x40,0x65,0x18,0x63,0x06,0xf2,0xf4,0xd7,0x37,0x09, +0x2b,0x69,0x99,0x1b,0x40,0x03,0xae,0xf7,0xe3,0x75,0x50,0xd6, +0x45,0x65,0xcc,0x32,0x82,0x2c,0xd4,0xc0,0x14,0x63,0x38,0xcf, +0x3a,0xe1,0xe7,0x0b,0xa8,0x50,0x5a,0xbe,0x90,0x56,0x39,0xac, +0x03,0xb9,0x1f,0x61,0x5c,0x1e,0xe5,0x94,0xb1,0xa2,0xd6,0x75, +0x41,0x2b,0x96,0xc9,0xc3,0x99,0x3f,0x2c,0x84,0xcd,0xf8,0x59, +0x45,0x17,0x8f,0xab,0x3e,0x2e,0x00,0xc6,0x05,0x3e,0xe7,0x44, +0x0e,0x6e,0x11,0xbb,0x5a,0xd3,0x1a,0xd3,0x62,0x1f,0x1b,0xbe, +0x6f,0x34,0xa3,0x38,0x97,0x86,0x5e,0xc4,0xbc,0x79,0x57,0xfb, +0xbe,0x4a,0x6f,0x1b,0xfe,0x96,0xdb,0x4d,0xfb,0x7e,0x1b,0xee, +0x00,0x8e,0xa3,0xbd,0x6c,0xbc,0x35,0x4e,0xdc,0xbd,0xbc,0xcd, +0x99,0x7f,0xf8,0xb1,0x17,0x14,0x4a,0xde,0x4b,0x9e,0x05,0xb2, +0xcd,0xa4,0x4f,0xdc,0xc5,0xa6,0x95,0x26,0x97,0xc6,0x15,0x19, +0x24,0xf2,0x3e,0xf3,0x36,0xe0,0xe7,0x5b,0x77,0xd5,0x38,0xf0, +0x1d,0xcd,0xdd,0xc3,0xf5,0x77,0x38,0xb4,0xd6,0x21,0x96,0x8f, +0x75,0x1f,0x9b,0x75,0xdb,0x7a,0xf0,0xbd,0x66,0x83,0xaa,0xed, +0x1a,0x1c,0x28,0x89,0x2c,0xd1,0xea,0x09,0x7d,0xaa,0x44,0x11, +0xba,0x39,0x2d,0xbb,0x5a,0x5a,0x5a,0x6b,0x98,0x2a,0x87,0x0b, +0xf0,0x27,0xd6,0xdc,0x37,0xba,0xb2,0x07,0xf4,0x61,0x3a,0x44, +0x7c,0x54,0xee,0x14,0x4d,0x4c,0x81,0x12,0x2c,0xdb,0xb5,0xb8, +0x15,0x27,0xae,0x57,0x7c,0x2d,0xf9,0x5d,0x7c,0xb1,0x76,0x10, +0x18,0xc9,0xdf,0xdb,0xc1,0x00,0xe6,0x62,0x30,0xbb,0xd2,0xc5, +0x74,0xbe,0xe4,0x5b,0xfd,0x6b,0x6d,0x67,0x7f,0xd4,0xd7,0x9f, +0x5c,0xb3,0x77,0xc0,0xfa,0xd9,0x42,0x08,0x13,0x7f,0x43,0xee, +0xff,0xec,0x12,0x25,0x92,0xb3,0x6c,0x07,0x27,0xd6,0x0c,0xca, +0x96,0xb3,0xc5,0xf7,0xf2,0x9f,0xa6,0xff,0xc0,0x09,0xef,0xf0, +0x3e,0x81,0x3a,0xb1,0x00,0xe3,0x58,0xd4,0x73,0x46,0x7e,0xf3, +0x12,0xa5,0x16,0xdb,0xb7,0x30,0xa9,0x0e,0x56,0x5e,0x86,0xcd, +0x0a,0x10,0xc3,0x14,0xe0,0xa6,0x3f,0x28,0xe5,0xe7,0xe6,0xd7, +0x76,0xf0,0x0b,0x5e,0xaf,0x07,0xf9,0xfd,0xb0,0x86,0x7b,0x2d, +0x79,0xfd,0xed,0x16,0x57,0xc0,0x6e,0xb6,0x51,0x5c,0x4c,0x1e, +0x78,0xfd,0x68,0x3c,0x60,0x53,0xd1,0xc2,0x6b,0x75,0x6c,0xe8, +0xde,0x53,0xc6,0x6d,0xc4,0x1c,0xf2,0x97,0x2b,0xac,0xda,0xfe, +0x46,0xab,0xbc,0x8d,0x5f,0x72,0x17,0x57,0x3e,0x59,0x56,0x21, +0x51,0x62,0xd9,0x13,0xc9,0xe4,0x2e,0xeb,0xa1,0xe1,0x4e,0x8c, +0x34,0x87,0xc8,0xbd,0x03,0x77,0x20,0x6b,0x6f,0xff,0x1d,0x48, +0xef,0xc2,0x74,0x46,0x6c,0x1c,0x79,0x4a,0x64,0x5f,0xc0,0xd3, +0x91,0x89,0x5d,0xb2,0x89,0xf0,0x9b,0xf8,0x08,0x97,0xb0,0x69, +0xd6,0x52,0xb6,0x80,0x86,0x94,0xf4,0x5a,0x65,0xd9,0xb8,0x91, +0x17,0x23,0xda,0x2c,0x94,0x09,0xcb,0x49,0x62,0x68,0xfc,0xc1, +0xb8,0x50,0xef,0xf3,0x9e,0xe7,0xdd,0x2e,0xb6,0xf6,0x34,0xde, +0xaa,0xbf,0xef,0x94,0xcb,0x87,0xba,0x1e,0x70,0x0f,0xf6,0x8a, +0x48,0x3e,0x96,0x12,0x9e,0x5c,0x58,0x75,0xad,0x3e,0xbb,0xde, +0x29,0x9b,0x0f,0x75,0x0c,0xf5,0x0c,0xf6,0x3e,0x9e,0x70,0x22, +0xfe,0x44,0x9c,0x8f,0x27,0xdf,0xe4,0x5e,0xe6,0x5d,0xee,0x11, +0x16,0x1c,0x16,0x12,0x16,0xca,0x5d,0x3a,0x1c,0x76,0x29,0x6c, +0x76,0x94,0x5d,0xd5,0xe5,0x9a,0xcb,0x95,0x57,0x14,0xb0,0xa0, +0x05,0x4a,0xd8,0x82,0x2b,0xd7,0xae,0xe4,0x44,0x45,0x47,0x44, +0x45,0x44,0x87,0xd7,0xa4,0xf1,0x47,0x9b,0x0f,0x0c,0x86,0x56, +0x73,0x82,0x25,0xde,0x26,0x87,0x5b,0x42,0xba,0x42,0x6b,0x3c, +0x8f,0xf0,0x09,0x07,0xe3,0x0e,0xc5,0x1d,0x3a,0x74,0xee,0xe0, +0xf9,0x90,0xf3,0x1c,0x30,0xef,0xe0,0xf2,0xe2,0x37,0xb6,0x6b, +0x96,0xe2,0xe5,0x77,0x38,0x85,0xf5,0x38,0xe7,0x7a,0xce,0xe9, +0x7c,0x9c,0x2d,0xff,0x2a,0xfe,0x45,0xca,0x50,0x6a,0x8a,0x0b, +0x4f,0xe1,0x74,0x16,0xc1,0x0d,0x16,0xb0,0x81,0xfd,0x1d,0x37, +0x10,0xd8,0xd0,0x8d,0x1b,0x58,0xf1,0x3a,0x26,0x93,0xbc,0xde, +0x94,0xde,0xa4,0x3e,0x87,0x44,0x3e,0x42,0xff,0x88,0xc5,0x01, +0x6b,0x0e,0x2c,0x61,0x0d,0xc9,0x34,0x4d,0xb6,0x4c,0x34,0x6a, +0x4e,0xe0,0x23,0xfa,0xc3,0x6e,0x1c,0x69,0xe4,0xa4,0x71,0xb7, +0x14,0xf2,0x69,0xa4,0xc6,0x8f,0xc5,0xe6,0xc3,0xb8,0x5e,0x17, +0xa7,0x29,0x75,0x58,0xc9,0xdd,0x83,0x65,0x19,0xb0,0x07,0x7a, +0x14,0x61,0x8b,0x2c,0xa3,0x83,0x15,0x5f,0xa1,0x09,0xc1,0x1d, +0x1d,0x30,0x9d,0x8d,0xbe,0xf2,0x55,0xd4,0x05,0xa5,0x57,0xfa, +0x05,0x95,0x5b,0xfa,0x4e,0xc4,0x9e,0xfa,0xea,0xd4,0x49,0x85, +0x33,0xa7,0xe5,0xce,0x55,0xc1,0xd4,0x46,0x9c,0xda,0x65,0x69, +0x8e,0x4b,0x1c,0xa8,0x2a,0x38,0xe4,0x68,0xe7,0xb8,0xd5,0x26, +0xcf,0x99,0xbf,0x53,0x37,0x3c,0x10,0x33,0xc8,0x09,0xb7,0x93, +0x49,0x23,0x6e,0xef,0x31,0x37,0xc5,0x45,0x0e,0x20,0xcf,0x1e, +0x74,0xb4,0x71,0x5c,0x62,0x91,0xe7,0xca,0xbf,0x68,0xbc,0xdb, +0x1e,0x7b,0x8b,0x8b,0x41,0xd5,0x0e,0x50,0x8d,0x66,0x12,0x74, +0xee,0x58,0xbe,0xb2,0xbd,0xd6,0xc0,0xaf,0x6d,0xd4,0x6f,0x3d, +0xd0,0xc8,0x3d,0x11,0x67,0x11,0xd0,0x10,0xdf,0x50,0x61,0x1f, +0xc3,0x9e,0x39,0x78,0xf2,0xe0,0x71,0x4a,0xcb,0xb3,0xf0,0x70, +0x5f,0xa3,0x30,0xe4,0xd0,0x07,0x87,0xf1,0x23,0x93,0x90,0x91, +0x90,0x15,0x9b,0xc5,0x41,0x28,0x4c,0x25,0x3b,0xc4,0x83,0x8f, +0x68,0xdf,0xbd,0x4f,0x5e,0x08,0x43,0x1b,0x29,0x27,0x55,0x93, +0xb9,0x90,0xeb,0x23,0x23,0xfa,0x50,0xae,0xce,0x62,0xef,0x5a, +0xd4,0x43,0x2b,0xdc,0xa0,0xd4,0x64,0x03,0xaa,0x30,0xe7,0x67, +0x58,0x5b,0x0a,0xde,0x0a,0x02,0xe7,0xc7,0xe0,0x67,0xa7,0x97, +0x1f,0x55,0x55,0x52,0x3d,0xea,0xb3,0x7f,0xc9,0x6c,0x54,0x19, +0xcd,0xb5,0xb6,0x82,0x01,0xa5,0xe6,0x96,0x5f,0xb3,0x95,0xb3, +0x7e,0x8e,0x85,0x09,0xb0,0x56,0xb1,0x45,0xdc,0xc3,0x46,0xd5, +0x5e,0xae,0x6f,0x52,0x7c,0xcc,0xca,0x43,0x90,0xb4,0x10,0xdd, +0xf0,0x5f,0x94,0x8b,0x79,0xfc,0xc3,0x4a,0xe1,0x3f,0x5e,0x0a, +0xff,0x76,0x28,0x47,0x6e,0x0b,0x0b,0xf6,0xb1,0xe2,0x13,0x07, +0x92,0x68,0x9f,0xa4,0x13,0x63,0xdc,0x9e,0xc6,0x9f,0xed,0x39, +0x7a,0x2b,0xbc,0x89,0x03,0xe5,0x0d,0xe4,0x9e,0xb0,0x60,0x37, +0x3b,0x12,0x82,0x47,0x48,0xce,0xcb,0x84,0x3f,0x2f,0xbf,0xb7, +0x88,0xe6,0x2f,0x2c,0x3a,0xb5,0xfa,0xc0,0x26,0xee,0x9f,0x59, +0x1a,0x04,0xf4,0x44,0x44,0x3d,0x16,0x74,0x41,0x99,0xac,0xc2, +0xe9,0x6f,0x59,0xd0,0x9e,0x09,0x5f,0xac,0xc2,0x2f,0x18,0xd0, +0x9d,0xf9,0x16,0xe6,0xae,0x62,0xbf,0xc5,0x11,0xb2,0x24,0x75, +0x6b,0xc6,0xbe,0xdc,0x9f,0x1a,0x86,0x3b,0x1b,0x7a,0xb8,0x7a, +0x71,0xd8,0x5a,0x38,0xce,0xda,0x3b,0xeb,0x39,0x6f,0xf4,0xda, +0x55,0x6c,0x5a,0x61,0x5d,0x63,0xe7,0x47,0x1b,0x63,0x8b,0x77, +0xbf,0x9f,0x7a,0xf0,0x97,0x07,0x71,0x5c,0x78,0x1a,0x0d,0xbb, +0x7c,0x3a,0x8c,0xcf,0xff,0xb1,0xfc,0x89,0xdf,0x6f,0x81,0x40, +0x42,0xa5,0x2c,0xa4,0x42,0x07,0x41,0x6d,0x58,0x00,0x6b,0x3b, +0x71,0xed,0x4b,0x43,0x15,0x74,0x93,0x96,0x3a,0xac,0xb6,0x80, +0xd5,0x34,0x6a,0x68,0x5b,0xc0,0x2d,0x15,0xcc,0x15,0x4f,0xf5, +0x0a,0x06,0xe0,0x8b,0xa9,0x2a,0x60,0x66,0x8e,0xfd,0x5d,0x37, +0xa0,0x06,0xce,0x9b,0xa1,0xd9,0x7a,0x48,0x85,0x40,0x71,0x32, +0xce,0x92,0xb6,0x35,0x01,0xc3,0x34,0xa6,0xa5,0x53,0xd2,0xbd, +0x15,0x8b,0x5e,0xc2,0x5d,0x76,0x44,0x1d,0xdc,0x89,0x63,0xbd, +0x65,0xa3,0x55,0x99,0xa7,0x3d,0xdf,0xe5,0xde,0xe8,0xd6,0xe4, +0xc0,0x09,0x07,0x4a,0x08,0xfd,0x5d,0x37,0x58,0xc0,0x8a,0x1e, +0xb8,0x84,0x74,0xba,0xf6,0xda,0x34,0xdb,0xd6,0x36,0xf1,0x4e, +0x8d,0xfa,0x9d,0xa6,0xd5,0x5c,0xee,0xc8,0x4a,0x72,0x13,0xc6, +0x35,0xc2,0x9c,0xdc,0xbf,0x4d,0x32,0xf8,0x00,0x9c,0xe0,0x86, +0x93,0xf4,0x97,0x50,0x90,0xaa,0x97,0x99,0x12,0xdb,0x26,0xe3, +0x16,0x93,0x0a,0xfa,0x6b,0xfd,0x6e,0xed,0x4e,0xed,0xb6,0xdc, +0xcf,0xb0,0x4a,0x7a,0xe2,0x25,0xd2,0x13,0x0f,0xa2,0x4f,0xfc, +0x96,0xb0,0x89,0xaa,0xa3,0x4d,0xc8,0xd1,0xc7,0xbb,0x69,0x37, +0x2b,0xde,0xc1,0xe9,0xc4,0xbe,0x45,0xbb,0xdb,0xb0,0xda,0xc3, +0x81,0xef,0x73,0x19,0xb0,0x6a,0xb7,0xe6,0xbe,0xbb,0x49,0x50, +0x57,0x46,0x40,0x97,0x15,0x2d,0x1c,0xc8,0x1a,0x54,0x78,0xc3, +0xc2,0x37,0x6b,0x08,0xce,0x7e,0x03,0xb3,0x99,0x9e,0x35,0xe4, +0x0d,0x2c,0x5a,0xc3,0x8e,0xe8,0xf9,0x90,0x4f,0xd7,0xd6,0x5b, +0xd2,0xe1,0xce,0x0f,0xff,0xa7,0x44,0x9c,0xcc,0x1d,0x6f,0x90, +0x79,0xa9,0x1b,0x33,0x77,0xe7,0xfc,0xd2,0x78,0xa7,0xa3,0x49, +0x7a,0xec,0x3f,0x5a,0x09,0xf1,0xac,0xad,0xb3,0x96,0xeb,0x3a, +0xcf,0x1d,0x25,0x26,0xe5,0x96,0x35,0xb6,0x7e,0x7c,0xb3,0x7b, +0xab,0xf7,0x80,0xff,0xe6,0xe0,0x25,0x07,0x51,0x3e,0x3c,0xd5, +0x9c,0x87,0xc5,0xe9,0x30,0xa5,0xe0,0xf7,0x8a,0xe7,0x3e,0x7f, +0x07,0xc2,0xdc,0xd0,0xd1,0x40,0xf5,0x94,0x18,0x19,0x63,0x56, +0x1f,0xfd,0x17,0x69,0x05,0x91,0x36,0xfd,0xad,0x90,0x25,0xfd, +0x4b,0x6f,0x97,0x02,0x55,0x12,0xbe,0x27,0xb2,0x55,0x70,0x74, +0x64,0x15,0x23,0xfc,0xf5,0x25,0x11,0x9b,0x1a,0x47,0x57,0x38, +0x53,0xb2,0xd5,0x64,0x27,0x36,0x49,0x8b,0xa3,0x2f,0x10,0x58, +0x3e,0xf2,0x3b,0x2e,0x67,0x21,0xfd,0x3d,0x31,0x40,0x17,0x2a, +0x2a,0xd3,0x66,0x82,0x93,0x01,0x3a,0x31,0x90,0x3c,0x73,0x10, +0x7c,0x0d,0x58,0xff,0x15,0x64,0xc4,0xdc,0xe6,0x23,0xe3,0xe7, +0x3d,0x10,0x30,0x14,0xf8,0x28,0x44,0x61,0xf9,0x61,0x9c,0x18, +0x8e,0xf3,0x4e,0x49,0xb6,0xa2,0xbb,0x12,0x61,0x59,0x36,0xc8, +0x17,0xc1,0xf8,0x40,0x50,0x0c,0x05,0x8d,0xf0,0x64,0x0a,0xbb, +0x33,0xe2,0xe6,0x25,0x7f,0x99,0xfe,0xb6,0xe4,0x41,0x75,0x67, +0x23,0xb7,0xfc,0x1c,0x31,0xf1,0xd2,0xf4,0x5f,0x75,0x60,0xde, +0xb5,0x2d,0xc5,0x7b,0x4a,0x68,0x5b,0xd1,0x1d,0x1d,0x7f,0x8a, +0x03,0x4d,0x38,0xda,0x87,0x47,0x3f,0x8d,0x3f,0x05,0x1a,0x43, +0x20,0x6a,0xe2,0x31,0x13,0xf0,0x91,0xc6,0x9f,0x54,0x28,0x58, +0xce,0x18,0x1d,0x7f,0x9a,0x06,0x63,0x1e,0x7f,0xc8,0x80,0x69, +0xff,0x03,0xf8,0x74,0x9c,0xfe,0xf5,0x52,0xe0,0x51,0xae,0xbc, +0x83,0x47,0xf2,0x51,0x05,0xe4,0x7c,0x28,0xc0,0x8b,0x77,0xc4, +0xe9,0xe4,0x3d,0x04,0xc8,0xe6,0x60,0xe9,0xc8,0x59,0x16,0x02, +0x61,0x13,0x0d,0x64,0x42,0x31,0x6c,0x90,0x16,0xdc,0x8f,0x62, +0xff,0x46,0x8a,0xfd,0x33,0x06,0xc4,0x19,0x9f,0xb0,0x7f,0x9c, +0xa1,0x30,0x8e,0x62,0xff,0x62,0x43,0x81,0x1b,0xc5,0xfe,0x59, +0x14,0xfb,0xdd,0x3e,0x61,0xff,0x29,0x8a,0xfd,0x93,0xff,0x4f, +0xec,0x57,0xa6,0xd8,0x7f,0xea,0x13,0xf6,0x7b,0x53,0xec,0x9f, +0xf7,0x1f,0xec,0x17,0x3e,0x9f,0xe9,0x7c,0x2a,0xa1,0x4c,0x39, +0x9f,0x1d,0x8c,0x1e,0xbc,0xda,0x18,0x17,0x75,0x3c,0xea,0xc4, +0x95,0x93,0x75,0x89,0xfc,0xd1,0x96,0x03,0xd7,0xc3,0xea,0x5c, +0xc3,0xf9,0xf8,0x83,0x89,0xfb,0x13,0xf6,0x07,0x5f,0x08,0x38, +0xef,0x7f,0x21,0xad,0x2b,0xf3,0x9b,0xf8,0x4e,0xbb,0x18,0xfe, +0x94,0x79,0xd8,0x96,0x43,0x26,0xdc,0xa5,0xd3,0x67,0x2e,0x9d, +0x9e,0x0d,0x61,0xa0,0x2c,0x2c,0x45,0x0b,0x36,0xb9,0x20,0xb9, +0x2c,0xae,0xd0,0x30,0x8e,0x3f,0xe9,0x17,0xe1,0x7e,0xc4,0x8f, +0xc3,0x15,0xe2,0xd2,0x1f,0x29,0xbb,0xdd,0xee,0x8b,0xfc,0xd6, +0x1d,0xd5,0xd6,0xfc,0xcf,0x3f,0x57,0xc2,0xe2,0x2b,0xa0,0xcf, +0x0d,0xe1,0x4d,0x46,0xbb,0xfc,0xe0,0x90,0x92,0x90,0xc3,0xd4, +0x65,0xa6,0xd6,0x2a,0xc3,0x04,0xc9,0xf1,0x08,0x67,0xb1,0xa2, +0x1c,0x58,0x91,0x67,0x4f,0xba,0xbf,0xb9,0xfa,0x82,0x8b,0x11, +0xb9,0x6e,0x81,0xb2,0xc1,0xc4,0xd5,0xed,0x7b,0x61,0xc6,0xe2, +0xb2,0x76,0x1e,0x27,0xbf,0xd1,0x7a,0x1e,0xf8,0x9c,0x03,0xd3, +0x2e,0x74,0x81,0x29,0x60,0xd4,0x85,0x46,0x20,0x6f,0x42,0x9f, +0x80,0xaa,0x39,0xa8,0xe2,0x14,0x34,0x34,0x07,0x0d,0x26,0x64, +0xbb,0xa9,0xfa,0x66,0x55,0x4e,0x24,0x54,0xa9,0x53,0xa8,0x9f, +0x88,0xd3,0x59,0xd0,0x82,0xe9,0x04,0xa7,0xe3,0x0c,0x1a,0xb4, +0x51,0x1d,0xfb,0x08,0x7d,0x4a,0x13,0xe9,0xe5,0xe8,0x79,0x8a, +0x19,0xb3,0xe8,0xf9,0x59,0x34,0x8e,0xf5,0x96,0x90,0x15,0x07, +0x32,0x7f,0x55,0x86,0x18,0xd9,0x97,0xc2,0x9c,0x91,0xe0,0x91, +0x79,0x2c,0x2a,0xd4,0xbb,0x81,0x82,0x92,0x90,0x29,0xb9,0x3e, +0xb7,0x2b,0x43,0x00,0xab,0x93,0x24,0x87,0xe7,0xd9,0x11,0x22, +0x68,0x12,0xc8,0x15,0x7e,0xc5,0x5c,0x56,0x72,0xb4,0x74,0x27, +0x59,0x7e,0x99,0xbe,0x19,0x5e,0x1d,0x59,0xfc,0xb1,0x82,0xa3, +0x79,0x47,0x72,0xff,0x9b,0x70,0x26,0x23,0x2e,0xe3,0x6a,0xa6, +0x79,0x0a,0xef,0xbb,0xcf,0x4a,0x7f,0xaf,0xd5,0xa8,0xa3,0x65, +0x79,0x49,0x41,0x05,0x27,0x38,0xb4,0x91,0xb8,0xcc,0xab,0x19, +0xb1,0x99,0x16,0x89,0x7c,0x88,0x9e,0x87,0x81,0xb5,0x45,0xa3, +0x0f,0x9f,0x97,0x9f,0x53,0x34,0x6a,0x56,0x99,0x11,0x94,0x1a, +0x98,0xb6,0x9f,0x73,0x51,0x17,0xd5,0xbe,0xd1,0x53,0xff,0x64, +0xba,0xff,0x17,0x6e,0xb4,0xf8,0x67,0x4c,0x27,0x6e,0x81,0xbf, +0x60,0x65,0x27,0xae,0x1c,0x66,0xaa,0x52,0x8e,0x15,0x4a,0x17, +0x93,0xcc,0x2f,0x99,0x91,0x35,0xf8,0x0b,0x79,0x2a,0xa8,0x6d, +0x63,0x45,0x35,0x54,0x24,0xcf,0x05,0xb5,0x2d,0xf4,0xc8,0x8a, +0x08,0x6a,0x9b,0x45,0x35,0x06,0xdd,0xf1,0x2c,0x01,0xc5,0x92, +0x8f,0x2d,0xdf,0xb4,0xb8,0xd6,0xf1,0x6a,0xf6,0x4b,0x5d,0x90, +0xf8,0x71,0x42,0xe3,0x5d,0xf2,0xce,0x1f,0x26,0xd9,0xff,0x6e, +0x5f,0xde,0xce,0xaf,0xa8,0xc3,0x29,0x4d,0x0b,0x8b,0x24,0x61, +0xf4,0x9a,0xc8,0x8e,0x18,0x8f,0x1c,0xd1,0x14,0xfe,0x65,0x36, +0x72,0xaa,0xff,0x21,0xc4,0xc9,0xb6,0x98,0x89,0xff,0x62,0x61, +0x46,0x3f,0x19,0x78,0x0c,0xf3,0xb1,0xa7,0x1f,0x7a,0x60,0x99, +0xda,0x80,0x6c,0x9e,0xe8,0xc5,0x80,0x3d,0xc6,0x12,0x9c,0x0f, +0xb6,0x30,0x9f,0xe9,0x47,0x5b,0x42,0x0f,0x96,0x49,0xe6,0x1e, +0xae,0x94,0x51,0x79,0xd0,0xf3,0x1e,0x2c,0xd8,0xcd,0xa4,0xa7, +0x3c,0x70,0x19,0x23,0x2f,0xfb,0x28,0xd3,0x26,0x38,0x65,0x00, +0x76,0x8b,0xcb,0xbe,0xd7,0xdf,0x24,0xf2,0xa8,0x31,0x00,0x1c, +0x2b,0x18,0xe3,0x34,0xe2,0x5c,0xa9,0xd9,0x68,0x93,0xe5,0xef, +0xc8,0x77,0x04,0xde,0x74,0x6b,0x72,0xe3,0xe8,0x77,0x2e,0x90, +0xc6,0xb4,0x94,0x1a,0xe5,0x0f,0xac,0x51,0x8a,0x1c,0xad,0xe8, +0x0a,0xf6,0x04,0x03,0xcb,0x1f,0xc1,0xb8,0x57,0x2f,0x60,0xac, +0x53,0x35,0xbf,0x76,0xde,0xc2,0x8d,0xb8,0x4c,0x93,0x8b,0x65, +0xc1,0x55,0x1f,0x7d,0xd9,0x93,0x91,0xa7,0x22,0x4f,0x2b,0xed, +0xf0,0xdd,0xe4,0xbf,0x2c,0x30,0xdb,0x8c,0xff,0xad,0xe0,0x65, +0xd1,0xe3,0x32,0x2e,0x3c,0x35,0xfb,0x6c,0xf1,0x6c,0x74,0x80, +0x36,0x72,0x40,0xdd,0x75,0x9f,0x9e,0x76,0xbb,0x37,0x3f,0xfc, +0xb0,0xee,0x5e,0xee,0x33,0x4e,0xb8,0x1c,0x4e,0x5a,0xcc,0xba, +0x56,0x97,0xaa,0x77,0xe7,0xf3,0x3e,0x8f,0x4c,0x7e,0xb6,0xed, +0xe5,0xb0,0x52,0x2c,0x24,0x60,0xa5,0x4b,0x11,0x32,0x0e,0x54, +0x74,0x31,0x77,0xa8,0x53,0x78,0x6d,0x31,0x04,0xb9,0xba,0xa8, +0xc2,0xca,0xcb,0x40,0xe6,0x48,0x16,0x0d,0xc2,0x7a,0x71,0xf9, +0x3d,0xfd,0xdd,0xa2,0x02,0x7e,0x39,0xf8,0x07,0x2b,0x68,0x2e, +0x20,0x6e,0xc5,0x3a,0x95,0xf6,0x19,0x01,0xce,0x7c,0x4b,0xe8, +0x80,0x57,0x25,0xed,0x00,0x0b,0x71,0x33,0xb9,0x14,0x1d,0xfb, +0x55,0xcc,0x6c,0x68,0x95,0xe6,0xda,0xcb,0x95,0x9f,0xb0,0x26, +0x49,0x72,0x6b,0xd0,0x83,0xfd,0xbd,0xf3,0xd9,0xcd,0xaf,0x9f, +0xb9,0x96,0xf3,0x6b,0x97,0x2e,0xd2,0x44,0x45,0x23,0xee,0x70, +0xcc,0xe9,0xe4,0x02,0x45,0x98,0x6f,0x48,0x35,0x7f,0x40,0xcc, +0xa1,0xa4,0x63,0x4a,0xdb,0xfd,0xd7,0x06,0x2d,0x38,0x20,0x6d, +0x13,0x22,0xc5,0x1f,0xcb,0x7e,0xae,0xe6,0x30,0x21,0x92,0xf4, +0x0d,0x54,0x0f,0xe5,0xde,0xb5,0xc8,0xe4,0x43,0xb4,0xdd,0x0c, +0xcc,0xcc,0x38,0x99,0x2a,0xac,0x24,0x75,0x36,0x6d,0xdb,0x4a, +0xf4,0xda,0xf2,0x78,0xbf,0xdb,0x96,0x8f,0x1c,0x5a,0x39,0x58, +0x3a,0xb2,0x91,0x38,0xb5,0x6a,0xdf,0xb6,0xa9,0xb3,0x0e,0xe5, +0x33,0x8e,0x64,0x1f,0xca,0x0e,0x55,0x3f,0xb7,0xe2,0xdc,0x82, +0xf3,0xdc,0x3b,0x78,0x0d,0x36,0xf8,0xfa,0xa6,0xbe,0x0e,0x7e, +0x83,0x36,0xf0,0xcd,0x22,0x16,0x67,0x9f,0xc7,0x45,0x17,0x90, +0xbf,0x18,0x63,0xc6,0x43,0x66,0x34,0xb4,0xc7,0xc2,0xa1,0xac, +0xcc,0x83,0xe9,0x87,0x52,0x0e,0x73,0x23,0x46,0xf0,0x96,0x40, +0xd2,0x52,0x4c,0x62,0x84,0x9f,0x67,0x62,0xc1,0x1f,0x50,0xc0, +0xc8,0x43,0x1d,0xd8,0x92,0x1f,0x6e,0xdc,0x79,0xd8,0xf9,0xbd, +0x34,0x60,0xdb,0xb1,0xf9,0xee,0xee,0x1f,0xf4,0xca,0x5a,0xf9, +0x9d,0xed,0x46,0xdd,0x0e,0x37,0x38,0x50,0xe9,0x44,0x0b,0xe6, +0x48,0x51,0x78,0xe9,0x89,0x32,0x4e,0xda,0x63,0x7e,0x9f,0x89, +0x2b,0xb8,0x2a,0x99,0x1c,0xc2,0xfd,0x4e,0x1c,0x94,0x4c,0x0e, +0xf3,0xae,0xe4,0x19,0xc5,0xf0,0x17,0x02,0xcf,0x07,0x9e,0x0b, +0xe2,0x30,0xc3,0x02,0xae,0x32,0x67,0xfc,0x4f,0xef,0x3f,0x19, +0xc0,0xa1,0xb3,0x25,0x18,0x30,0x11,0xde,0x47,0x7d,0x0f,0xd3, +0xe7,0xa7,0x43,0x9b,0x3d,0x63,0xaf,0x63,0x62,0xbc,0xdb,0x52, +0x1a,0x42,0xac,0x26,0xfd,0xee,0x6d,0x2e,0x6d,0xf6,0xe5,0x8d, +0xbc,0x5d,0xa3,0x49,0xa3,0x49,0x39,0xb7,0x19,0xcb,0x49,0xbf, +0xeb,0x80,0x4d,0x87,0x4d,0x65,0x03,0x6f,0xd7,0xac,0xdd,0x69, +0x50,0xc5,0x09,0xcf,0x0e,0x90,0x84,0x4f,0x36,0x61,0xa8,0xc6, +0xa4,0x16,0xa7,0x48,0xce,0x61,0x70,0x5d,0xdc,0x4e,0xda,0xf1, +0xab,0x57,0x30,0xb7,0x0d,0x1f,0x59,0xc3,0xf4,0xf5,0x78,0xc2, +0x0a,0x82,0xd9,0xc0,0xdd,0xab,0xac,0x50,0xcd,0x96,0xb6,0x14, +0x30,0xea,0xfe,0x30,0x9c,0xf2,0x3d,0x8d,0x37,0xa9,0x9b,0x41, +0x4e,0x0b,0x8c,0xcc,0xb2,0xbb,0x79,0xdc,0xd9,0xb1,0xa2,0x75, +0xff,0x1d,0x4e,0x6c,0x41,0x1f,0x72,0x1b,0xc6,0xb6,0xc2,0xec, +0x6b,0x7f,0x9b,0x67,0xf2,0x7e,0x28,0xe7,0x8c,0x13,0x75,0x97, +0xd2,0x9e,0xf2,0x61,0x74,0x9c,0xb2,0x58,0xab,0xff,0x16,0x24, +0x76,0x62,0xe2,0x03,0x23,0x4d,0x2c,0x96,0xb2,0xbf,0x9e,0xb7, +0x80,0xf3,0x5a,0x2c,0xa8,0xfb,0x13,0x71,0x91,0xa5,0xec,0x5f, +0x1d,0xe2,0xda,0xbb,0xfa,0x4c,0xb3,0x68,0x4d,0xee,0xa1,0x22, +0x7c,0xb1,0x0c,0x02,0x0c,0xf2,0x5a,0xf9,0xe5,0x05,0xea,0xa5, +0xfa,0x35,0x37,0x0b,0xfb,0x4b,0xbb,0xea,0x5c,0x2a,0x79,0x0b, +0x27,0x7d,0xef,0xbd,0xfe,0x6e,0x25,0x7e,0x15,0x41,0x75,0x1c, +0x9c,0x06,0x16,0xe6,0xb4,0xe3,0x1c,0x18,0x37,0x32,0x01,0xc7, +0xe1,0x1c,0x2b,0x98,0x43,0xa3,0xb8,0x37,0xb3,0xd9,0x0c,0x27, +0x39,0xe0,0x6a,0xdf,0x4c,0x2b,0xfe,0x49,0xda,0xfd,0xec,0x9b, +0xd7,0x38,0x1c,0xc7,0xba,0x9d,0x73,0x3d,0xef,0x7c,0x3e,0x9e, +0xde,0xc7,0x8e,0x74,0x58,0x9c,0x0d,0x53,0x0b,0xce,0xb4,0xf3, +0xaa,0x47,0x55,0x8e,0xad,0xa4,0x8a,0x76,0x26,0xdb,0x9d,0xdf, +0x52,0x54,0x4d,0x1f,0x43,0x26,0x6c,0x23,0x62,0xa4,0x34,0x6f, +0x80,0x13,0x26,0x68,0x8b,0x91,0xd2,0xbe,0xd0,0x99,0x42,0x0b, +0x81,0xa9,0x0f,0x7e,0x7e,0x5e,0xf4,0x96,0xde,0x7d,0xf1,0x52, +0x90,0xdb,0x04,0x2b,0x37,0x4a,0xfb,0xe8,0x57,0xbe,0x58,0xfa, +0xb5,0xe3,0x6b,0x6e,0x1f,0xe3,0xb9,0x75,0x8b,0x2a,0xce,0xd8, +0xc9,0x59,0xa1,0xb1,0x64,0x6f,0x1e,0x75,0x5c,0x5a,0xd1,0x76, +0xee,0x97,0x4f,0x2b,0xda,0xd4,0x98,0xe6,0xe4,0x86,0xf4,0x4a, +0x69,0x45,0x9b,0xaa,0x33,0x4e,0xf5,0x5c,0x28,0xad,0x68,0xab, +0x8b,0x6d,0x89,0x6f,0x4e,0xe4,0x70,0x35,0x6e,0x34,0x86,0xd5, +0xec,0x29,0x1c,0xe3,0x88,0x63,0xe7,0xe3,0x8c,0x2a,0x6b,0xfe, +0xbb,0x3f,0x4b,0x9f,0x45,0x3f,0xa7,0xf0,0x64,0xd3,0x2d,0x38, +0x32,0x31,0x51,0x91,0x51,0x67,0x95,0x9e,0xe0,0x9a,0x86,0x0a, +0x39,0x18,0x07,0xcd,0x04,0x8a,0x3b,0xb1,0x98,0x59,0x8b,0x33, +0x89,0xb9,0x30,0x83,0x0d,0x74,0x74,0xb3,0xf0,0x70,0x6d,0x74, +0xe7,0x9b,0x3a,0x5b,0x6f,0x95,0x0d,0x71,0x8d,0x2c,0xf6,0xa1, +0x13,0x69,0xf3,0x1a,0xb0,0xaa,0x71,0xaa,0xaa,0xe7,0x5d,0x6a, +0xf5,0xda,0xac,0xca,0xb8,0x14,0xfc,0x9a,0x78,0x9f,0x89,0xae, +0x50,0x06,0x6b,0x63,0x74,0x62,0xf7,0x15,0x1c,0x1c,0x56,0x82, +0x95,0x4c,0x53,0x4a,0x0a,0x55,0xe7,0x63,0x24,0x2f,0x73,0xe4, +0x59,0x71,0xd6,0x01,0xd2,0xf4,0xb8,0xf8,0x65,0xea,0x13,0xf3, +0x54,0x3e,0x7c,0xf7,0xfe,0x4d,0xf6,0xbb,0x39,0xe1,0x04,0xd8, +0x91,0x4a,0xa3,0x9a,0x0d,0x39,0xbb,0x3a,0xf2,0xf9,0xd0,0x21, +0x87,0x5f,0x3d,0x25,0x2f,0x83,0x0d,0xc2,0x97,0x24,0x60,0xbf, +0x87,0x9f,0x47,0xe0,0xa9,0x3b,0xe7,0x1f,0x5c,0x7c,0xd4,0x10, +0xd7,0x90,0x58,0x9b,0x14,0x40,0x21,0x68,0x8a,0x3b,0x2e,0x3a, +0x84,0x8b,0x4f,0x71,0xb0,0x92,0x85,0x0d,0x71,0x92,0xfb,0x1a, +0x57,0xee,0x4f,0xdf,0x60,0xbc,0x71,0x69,0x30,0x5a,0x1d,0xe7, +0xf0,0x02,0x8b,0x69,0xc7,0x70,0x85,0x35,0x2e,0x50,0xea,0x76, +0xe9,0x84,0xb5,0xe9,0xf0,0x65,0x24,0x64,0x29,0x94,0x5d,0x29, +0xbf,0x5c,0x16,0xc5,0x89,0x4f,0xfb,0x84,0x1f,0xd8,0xe2,0xa8, +0xa2,0xa8,0xa2,0x98,0xab,0x78,0x28,0x1f,0xdd,0x7e,0x47,0xcd, +0x86,0x36,0xde,0xf6,0xa5,0xff,0x6f,0x61,0x1f,0x9a,0x8a,0x9a, +0x2a,0xcb,0x4a,0xb9,0x91,0x5f,0x41,0x9d,0xe0,0x8d,0x23,0xb8, +0xc4,0x7a,0x74,0x7c,0xbb,0xea,0xa7,0x8c,0xb7,0x57,0xa5,0xf1, +0xed,0x45,0x98,0x3c,0x4f,0x1a,0xdf,0x7e,0xc6,0x34,0x65,0x7c, +0x1a,0xdf,0x8e,0x62,0xc1,0x52,0x1a,0xdf,0x56,0x92,0x92,0xed, +0x30,0x38,0x5f,0xd4,0xfc,0xef,0xa0,0xb4,0x92,0x94,0x54,0x01, +0x5a,0xc0,0x86,0x74,0x01,0x53,0x0c,0x7c,0x12,0x6c,0xe2,0xea, +0x51,0x9d,0x4d,0x1a,0x4e,0xb8,0x7e,0xb5,0xd7,0x20,0x86,0x3f, +0x6d,0x7a,0x42,0x3b,0x7c,0x2f,0x87,0x93,0x8c,0x3e,0x30,0x07, +0x16,0x06,0x2c,0xf0,0xdd,0xd2,0xe1,0xd1,0xee,0xde,0xee,0xec, +0xa8,0x6e,0xbc,0x47,0x4d,0x7b,0x34,0xeb,0xce,0xf5,0x87,0x2d, +0xcf,0x6b,0x3d,0x6b,0xdd,0xeb,0x9c,0xaa,0xda,0x79,0xfb,0x46, +0xc7,0x5a,0xa7,0x0a,0x0e,0x7e,0xc9,0x22,0x0d,0x39,0xd9,0x0d, +0xca,0x42,0xb3,0xbe,0xd8,0x81,0x93,0x59,0x69,0x74,0x29,0x42, +0x38,0x45,0x3a,0x97,0x35,0xe1,0xf4,0x22,0x1c,0xdf,0x53,0xc0, +0x07,0x7c,0xb4,0x85,0xe9,0x66,0x7f,0x70,0xf8,0xe8,0x14,0x39, +0x86,0x8b,0xbd,0x71,0x81,0x3e,0xb2,0x9d,0x9e,0xfc,0x10,0x4c, +0xac,0x84,0xf5,0x29,0xb0,0x9a,0x13,0xd5,0xc5,0x05,0x52,0x2a, +0x9d,0x37,0xd9,0x3f,0x73,0x20,0xcf,0x1c,0x47,0x85,0x60,0xe4, +0x6c,0x17,0x79,0x14,0x79,0xe6,0x7b,0x5e,0xe3,0xa0,0x48,0x9c, +0x43,0xe0,0xc2,0x7d,0x58,0x0b,0x5f,0xbc,0x04,0x23,0xf3,0x7c, +0x5e,0x0d,0x77,0xd2,0x80,0xca,0xe2,0x49,0x2d,0xda,0xeb,0xaa, +0x68,0x5c,0x3a,0xf7,0x2b,0xcc,0xef,0xa5,0xe8,0xf2,0x8b,0x21, +0xfe,0x82,0x9a,0x26,0xb0,0x95,0x09,0xc3,0x09,0x3a,0x38,0xfe, +0xcb,0x25,0x95,0xe6,0xfc,0xcb,0xdf,0x9b,0xde,0x5c,0x7d,0x43, +0x1b,0x99,0xda,0x80,0xc0,0x33,0x31,0x57,0x22,0xaf,0x9c,0x53, +0xfa,0x1b,0x35,0x6a,0xea,0x17,0x82,0xda,0x99,0xf8,0x53,0x97, +0xc3,0x8f,0x2b,0x08,0xfa,0xf8,0x13,0xb1,0x3d,0x99,0xd4,0xa6, +0x0c,0xa6,0x2c,0x94,0x94,0x9d,0x1d,0xc0,0x6b,0x3e,0x72,0xb0, +0x8e,0x85,0xf8,0x12,0x7a,0x1c,0xe5,0x2b,0x07,0xcb,0xd9,0xe7, +0x19,0xdf,0x5d,0xbb,0x53,0xec,0x4f,0x3b,0x83,0x9c,0x35,0xae, +0xf6,0xc4,0x65,0x87,0x92,0x8c,0xf8,0xda,0x98,0xa6,0xd8,0xa6, +0x38,0x0e,0x69,0xf0,0xdc,0x7e,0x30,0xd6,0x08,0x54,0x32,0xe5, +0x70,0x1d,0x8b,0x3b,0xa5,0xe3,0x6d,0xf4,0xd8,0x82,0x55,0xbd, +0xe6,0xf5,0xb5,0x12,0x2c,0x64,0x3a,0x52,0x33,0x29,0x6b,0xf8, +0x92,0x35,0xa5,0xec,0x46,0x87,0x15,0xaf,0x0a,0xb9,0xa4,0x60, +0xa8,0xf8,0x45,0xe6,0x23,0xcb,0x2c,0xfe,0xf0,0x8e,0x80,0x6d, +0x81,0x7a,0x1c,0xce,0xbd,0x4c,0x0e,0xdd,0x0b,0x7c,0x12,0x7c, +0xd3,0x26,0x88,0xcf,0xd3,0xcd,0x57,0xcd,0xd8,0x4d,0xc9,0xb1, +0xec,0x0c,0xc1,0xa9,0x43,0x5b,0xff,0x70,0x96,0x16,0xa8,0xf4, +0xf4,0xd1,0x20,0x7a,0xb2,0xed,0x4c,0xd7,0xc5,0x3e,0x0e,0x2a, +0xa1,0x76,0xc4,0x73,0xa4,0x94,0xf1,0x3d,0xe7,0x7d,0xce,0xfb, +0xbc,0x64,0xf1,0xb1,0x31,0x0b,0x96,0x56,0x50,0xcd,0x79,0xb2, +0x8f,0xdf,0x1e,0xb0,0x21,0x78,0xf9,0x21,0x0e,0x72,0xe1,0x67, +0xb6,0x11,0x37,0xbc,0x42,0x0e,0x66,0xef,0xec,0xf2,0xad,0x4f, +0xbd,0xda,0x9f,0x07,0x86,0xbc,0x71,0xae,0xdc,0x5a,0xa1,0x8e, +0xe0,0x4e,0xf1,0x07,0xd8,0xc9,0xe2,0x91,0x09,0x70,0x9d,0xb9, +0x6c,0x1c,0x63,0x1e,0x6f,0xcd,0xe1,0x13,0x46,0xfe,0x5b,0x59, +0x03,0x19,0xf9,0xa5,0xff,0x01,0x04,0xc9,0x72,0x58,0x21,0x7d, +0xa4,0x91,0xec,0x1a,0x72,0xfe,0xfd,0x10,0xac,0xe0,0xc0,0xb5, +0x1b,0xbd,0x99,0x73,0x2d,0x17,0x3b,0x2e,0xd1,0x22,0xec,0xa6, +0xb5,0xe3,0x35,0x52,0xc5,0xd0,0x98,0x7d,0x36,0xf8,0x5c,0x82, +0x11,0xff,0x73,0x26,0x2c,0xaa,0x7b,0x56,0x7c,0xa6,0x97,0xb7, +0x3d,0xa2,0x73,0x50,0xe7,0xb0,0x94,0xc7,0x5c,0x9f,0xcd,0x45, +0x8d,0x0e,0x9c,0xf2,0x6c,0x5f,0xa5,0x7f,0x4d,0xe2,0xd5,0xee, +0x6b,0xa0,0xc5,0x5b,0x67,0xcb,0x89,0xef,0x04,0x79,0x82,0x5b, +0x61,0x2f,0xad,0x2f,0xa1,0x0e,0xb7,0x13,0xfc,0x0d,0xb6,0xc3, +0x6f,0x0c,0xfe,0x86,0xc1,0x04,0xd4,0x99,0x48,0xd3,0x2b,0x16, +0xd1,0x36,0x1c,0xee,0x63,0xd0,0xce,0x57,0xfa,0xe0,0x3e,0xfa, +0x41,0xdc,0x8a,0xc7,0x09,0x6c,0x45,0x07,0x69,0x12,0x4e,0x16, +0x29,0x5c,0x25,0x03,0x1d,0x4d,0xd7,0x0b,0xee,0x72,0x3d,0x5d, +0xf8,0x3d,0x93,0x94,0x97,0x90,0x17,0x97,0x67,0x9c,0xc4,0xfb, +0x6f,0xd2,0xfb,0x72,0xab,0x41,0x95,0x13,0x5f,0x9c,0x53,0x90, +0x7f,0xad,0xa8,0xcc,0xbe,0xd6,0xb9,0xc5,0xcd,0xc8,0x6d,0x8f, +0x9f,0x6a,0x48,0x96,0x05,0xff,0x32,0xef,0x69,0xd5,0xad,0xe6, +0x61,0xc7,0x6f,0xdc,0x5f,0xee,0xcf,0xe9,0xe1,0xd5,0x72,0xf7, +0x15,0x1b,0x55,0x71,0xe2,0x4c,0x4c,0x25,0x25,0x37,0x8b,0xbe, +0x4f,0xb8,0xcd,0x35,0xe1,0x0c,0xf6,0x78,0xea,0xf1,0xd4,0xf0, +0xd4,0xc1,0xde,0xae,0xdb,0x25,0x77,0xe8,0x89,0x0f,0xa6,0x50, +0xc9,0x06,0xd9,0xb8,0xd9,0xda,0x38,0xf8,0x95,0xf9,0x96,0xf9, +0xe5,0x7b,0xb8,0xf3,0xcd,0xce,0xad,0xe6,0xb5,0x56,0x1c,0x3a, +0x98,0xc2,0x76,0x26,0x64,0xa5,0xd9,0xbc,0x79,0x28,0x57,0x66, +0xc5,0xff,0x0d,0x13,0x9a,0x7f,0x4f,0x00,0x39,0xda,0xe8,0x34, +0x50,0x41,0xda,0x42,0xf5,0x9e,0x69,0xc9,0xcc,0x68,0x53,0x16, +0x9c,0x7e,0x63,0x4f,0x18,0x06,0x69,0xee,0xb7,0xe0,0x20,0x56, +0x58,0x4b,0xe2,0x92,0xe4,0xe0,0x02,0x13,0x6c,0xe2,0x6a,0x65, +0xe1,0x64,0x5e,0xeb,0xd0,0xe4,0xd9,0xce,0x35,0x50,0x51,0xb5, +0x56,0xd2,0x9a,0x7b,0xd9,0x23,0x0b,0xd4,0xd6,0xe3,0x5a,0x63, +0x69,0xbb,0xdb,0xce,0x1b,0x3f,0x83,0x5c,0x3a,0x10,0x0e,0x74, +0x18,0xcd,0x0b,0x06,0xa7,0x5d,0x95,0xec,0x4e,0x1d,0x0f,0x37, +0x9f,0x8d,0xdc,0xe8,0x0a,0xa5,0x09,0xcc,0xa3,0xe2,0xdc,0xdb, +0xc9,0xca,0x09,0x1d,0x51,0x77,0x81,0x28,0xe2,0x99,0x9f,0xfe, +0x9b,0xb1,0x54,0x1f,0x33,0xaf,0x1b,0xea,0x63,0xa4,0x19,0x44, +0x1a,0x0f,0xf4,0x41,0xa6,0xf1,0x60,0xdf,0x27,0x1b,0x2f,0xf1, +0x01,0x3e,0x25,0xb2,0x2c,0x30,0x1e,0xc9,0x62,0xe0,0x8c,0x35, +0x59,0x8f,0xda,0xaf,0x58,0x61,0xe3,0x7a,0x82,0x5a,0xaf,0x40, +0x8b,0xe9,0x5e,0x4f,0x5e,0x81,0xc9,0x7a,0x76,0x44,0x17,0x0b, +0xa8,0x22,0x69,0x62,0xf7,0xec,0x9a,0x6f,0x8a,0xf3,0x9c,0x72, +0xad,0xf8,0x6f,0x72,0x1f,0x96,0xdc,0xac,0xe6,0x00,0x18,0x27, +0xdb,0x3d,0x36,0x0b,0x5d,0xec,0xeb,0xec,0x2a,0x9d,0x8b,0x1c, +0xfc,0xf8,0x5a,0xbf,0x5a,0x9f,0x6a,0xcf,0x4d,0x01,0x0b,0x43, +0x71,0x7a,0x78,0x9a,0x19,0x2f,0x4c,0xae,0x05,0x27,0x20,0x0f, +0xa4,0xf4,0x74,0x28,0xb2,0x05,0x39,0x79,0x79,0x19,0xf9,0x9c, +0x30,0x76,0x01,0x65,0x4c,0x23,0x3f,0xe1,0x7a,0x5a,0xc6,0x2e, +0xd9,0x5e,0x02,0x63,0x7b,0x46,0x78,0x26,0xeb,0x5a,0x5a,0x7e, +0x72,0x9e,0x51,0x1e,0xef,0xa8,0xa1,0xa6,0xb2,0x5c,0xb7,0xd6, +0x9a,0xaf,0xcc,0xad,0x28,0x2a,0x2d,0x91,0x80,0x63,0xb1,0x09, +0x2c,0x46,0x0b,0x9c,0x69,0x2a,0xfb,0xd0,0x83,0x93,0xc1,0x02, +0x16,0xf4,0x22,0xd5,0xcc,0x3b,0x41,0x9f,0xa0,0x3e,0x4e,0xa7, +0x0d,0x0c,0x74,0x67,0xc2,0x74,0xe9,0x58,0x1a,0x13,0x00,0x7d, +0xa0,0xe7,0xa9,0x82,0x30,0x21,0xf4,0x5b,0xd3,0x25,0x1f,0x8d, +0xeb,0x68,0x41,0xa4,0x23,0x98,0xce,0xf4,0xd2,0x43,0x90,0x6c, +0xb8,0x2c,0xd8,0x58,0x4a,0x34,0x1b,0x8c,0x6a,0xf5,0xca,0x34, +0x07,0x0a,0x78,0xcf,0x47,0x0e,0x43,0xce,0x1d,0xdc,0x88,0x01, +0x1e,0x24,0x37,0x6e,0x35,0xde,0x2e,0x18,0x36,0xc9,0xe6,0xf7, +0x1b,0x38,0xea,0xe8,0x1b,0x49,0x19,0x7e,0xd7,0x93,0x5c,0xfd, +0x6c,0xbd,0x94,0x3d,0xc3,0xc9,0xfc,0xe1,0x07,0x21,0x43,0x41, +0x7d,0x1c,0x66,0x1e,0x23,0x49,0x3a,0x71,0x46,0xd1,0x3b,0x87, +0xae,0xf2,0xe7,0x1e,0x9e,0xbc,0x71,0x6c,0x80,0x93,0x7f,0x26, +0x5c,0x27,0x10,0x79,0x15,0x2e,0xc4,0x81,0x6f,0x4e,0x6e,0x60, +0xf6,0xfe,0xec,0xfd,0xad,0x65,0xbc,0xce,0x8b,0x6d,0x2f,0x54, +0x1f,0xda,0xf9,0xf0,0x95,0x5e,0x95,0x1e,0xe5,0x6e,0xb8,0xe0, +0x38,0xae,0x38,0x85,0x2a,0x67,0x5b,0xfa,0x5a,0x86,0x6a,0x6e, +0x9b,0xe4,0xf2,0xae,0x5a,0xc6,0x6a,0xba,0xbb,0x70,0xd6,0x05, +0x5e,0xb0,0x12,0x37,0x51,0x35,0x2b,0xc8,0xf5,0x51,0x05,0x34, +0x59,0x07,0x27,0xe3,0x21,0x36,0xaf,0x22,0xab,0x32,0xb9,0xd4, +0x20,0x9d,0xf7,0x50,0xd5,0xde,0xa4,0xa9,0xd5,0xea,0xcc,0x17, +0x16,0x14,0x16,0x5f,0x2b,0xa1,0xbd,0x1b,0x97,0x8b,0x6b,0x8d, +0x84,0xb5,0x18,0x78,0x13,0x02,0x85,0xcd,0xfd,0xf4,0x91,0xf2, +0xc2,0x05,0x12,0x9a,0x14,0x94,0x1c,0x98,0x02,0x6c,0xfb,0xfb, +0x7b,0xc3,0x2f,0xb8,0xb6,0x11,0x5b,0x43,0xd9,0x38,0xd6,0xc4, +0x78,0xb9,0x1e,0x8e,0x73,0xde,0x5e,0xbb,0xb1,0x56,0xbb,0xc0, +0xcb,0x8e,0x7f,0xe1,0x09,0xe3,0x2d,0x7e,0xb6,0xe2,0xc4,0xfd, +0x86,0xc2,0x76,0xc6,0x76,0x1d,0x8e,0x99,0x87,0xf9,0x38,0xa7, +0xd4,0x98,0x87,0x4e,0x58,0xf7,0xdb,0xfb,0xbc,0xd1,0x2d,0x08, +0x9b,0xd1,0x9d,0x49,0x33,0x96,0x83,0xdd,0x4c,0x4f,0x6e,0x4e, +0xaf,0xb2,0xb0,0x11,0xfa,0x58,0x17,0xd5,0x6d,0x1b,0x36,0xe9, +0x35,0x3b,0xf2,0xbf,0x3d,0x7a,0x03,0x63,0xea,0xde,0x71,0x6d, +0x94,0x3c,0xb8,0xc8,0x56,0x10,0xb4,0x1c,0x00,0x4b,0xf8,0x1d, +0x97,0xf6,0x83,0xb9,0xb8,0xbc,0x5d,0x98,0xdc,0x3a,0x52,0x69, +0x03,0xa2,0x15,0xa5,0xc6,0xe6,0xfd,0xb0,0x94,0xed,0x77,0x21, +0x8e,0xe0,0xd9,0x40,0xd5,0xd6,0x4c,0x47,0x08,0x6d,0x60,0xc5, +0xe5,0x48,0x48,0x03,0x7a,0x3a,0xb2,0x02,0xce,0x6c,0xc0,0x10, +0x47,0x16,0xf4,0xd1,0x95,0x34,0x16,0x96,0x97,0xe5,0x54,0x73, +0x0f,0x5a,0x69,0xb0,0x8b,0x4d,0x8c,0x49,0x88,0x4e,0xb4,0x4b, +0xe1,0x83,0x4c,0x8d,0x0c,0x77,0x39,0x97,0x79,0xf0,0x25,0x19, +0x85,0x39,0xd7,0x72,0xaf,0x05,0x95,0x04,0x57,0x87,0x1a,0x87, +0x6a,0x1d,0xd6,0x08,0x4f,0xb7,0xe3,0x5f,0xa7,0x3d,0xcd,0x1d, +0x2e,0xbe,0xed,0xff,0x24,0xe4,0x55,0x78,0x72,0x0b,0xbf,0x2b, +0x41,0x3b,0xcd,0x38,0x8b,0x13,0x4d,0x23,0xc9,0x85,0x2b,0xe7, +0xaf,0x5c,0x88,0xea,0x28,0x6a,0xab,0xcc,0x97,0xe6,0xd1,0x04, +0x3b,0xa8,0x61,0x43,0x0e,0x78,0x85,0xb8,0x84,0xfa,0xe7,0xf8, +0xe4,0xec,0x4f,0xf7,0xf5,0xe1,0x4b,0x0f,0x56,0x06,0x97,0x50, +0xfe,0xe9,0x68,0x0b,0xfb,0x98,0xe0,0xbd,0x66,0xe6,0x38,0x46, +0xab,0xd8,0x91,0x87,0x89,0x8f,0xda,0xfb,0x52,0x5e,0x70,0xb1, +0x78,0x09,0xc7,0x30,0x49,0x36,0x72,0x6f,0x99,0xca,0x94,0x8c, +0x72,0x65,0x88,0xfb,0x89,0x3d,0x16,0x10,0xe4,0xef,0x7f,0xa0, +0xce,0x8f,0xaf,0x28,0x2f,0x6f,0x4e,0xad,0xe0,0xea,0x59,0xf8, +0xeb,0x1d,0x39,0xe0,0xe7,0x13,0xec,0x12,0xea,0x90,0xed,0x7e, +0xcd,0xbf,0x88,0xfb,0x80,0x7b,0x89,0x99,0x1f,0x73,0xf6,0xab, +0x73,0x97,0xce,0x2a,0xe1,0x3e,0x2b,0x4a,0x8f,0x82,0x75,0xb4, +0x1d,0x71,0x96,0x7f,0x8e,0x15,0x0f,0xab,0x2b,0xbf,0xbd,0x91, +0xfb,0x23,0xd5,0x35,0x8c,0xcf,0x05,0xff,0x33,0xfb,0x95,0xfc, +0xcf,0x9c,0x38,0xed,0x32,0x7b,0x93,0x94,0xc7,0xe4,0x39,0xd3, +0x53,0x96,0xda,0x99,0xa8,0x1c,0x57,0x7d,0x65,0xe0,0xf2,0x0d, +0x0e,0x6d,0x99,0xc8,0x98,0xaf,0x62,0x62,0x14,0xe5,0xff,0x31, +0x95,0x3c,0x76,0x84,0xfb,0x70,0x1d,0x7a,0x71,0x97,0xe4,0xb1, +0x93,0x1b,0x73,0xed,0x93,0xc7,0x4e,0xc0,0x71,0x4a,0x99,0x15, +0xc4,0x66,0x78,0xc3,0xa8,0x9d,0x37,0x3a,0xe3,0xac,0xe4,0x75, +0x46,0xf2,0xd8,0xb1,0x92,0x06,0xa3,0xda,0x99,0x81,0xfc,0x51, +0x8f,0x9d,0xee,0xe8,0x7b,0x92,0xc7,0xce,0xeb,0x87,0x20,0x30, +0xe2,0x51,0x35,0x72,0x08,0xed,0xad,0x81,0x1c,0x04,0x72,0x11, +0x8e,0x29,0xc0,0xac,0x5e,0x9c,0x05,0xc1,0xa6,0x18,0x8c,0xc5, +0x26,0x50,0xcc,0x5c,0xc1,0xc0,0x3c,0x34,0xea,0x41,0xe6,0x9a, +0x79,0xf7,0xa5,0xd8,0xa1,0x1c,0x70,0xe1,0x4f,0x0b,0xeb,0xc9, +0xe1,0xee,0xe0,0xde,0x03,0x8d,0xce,0xa1,0x7c,0xae,0x5d,0xae, +0x49,0x9a,0x39,0x27,0x7e,0x01,0x8a,0xc4,0x14,0xec,0x7b,0x58, +0xe1,0x8e,0x25,0x51,0xc7,0xe8,0x6f,0x58,0x88,0x1e,0xb5,0xd2, +0x89,0x7e,0xc6,0xa2,0x80,0x77,0xc9,0x60,0x97,0x01,0x18,0x9b, +0x88,0x01,0x8c,0xd9,0x71,0x39,0x61,0xb9,0xa9,0xb8,0x91,0xb5, +0x39,0x15,0x6f,0x08,0x63,0x73,0x80,0x29,0x78,0x59,0xa8,0x70, +0xb6,0xcb,0xff,0x94,0xcf,0x29,0xef,0x53,0x0a,0xc2,0x3f,0xa9, +0xe4,0x78,0xcd,0xc1,0xce,0x63,0xc5,0x9e,0x9f,0xac,0x75,0x12, +0x5d,0x39,0x6c,0xc4,0xcf,0x48,0xc9,0xbd,0xcc,0xb7,0x57,0x1f, +0xda,0xc7,0xf1,0xa7,0xf7,0x84,0x6d,0xf0,0xd5,0x97,0xfc,0xeb, +0x5c,0x48,0x8a,0x75,0xb2,0xf1,0x55,0x93,0xfa,0x24,0xfe,0x64, +0x5f,0x78,0xf7,0xd1,0x56,0x0e,0xa7,0x84,0x93,0x04,0xad,0x18, +0x8d,0xcb,0x86,0x8d,0x57,0x25,0x6b,0x9d,0x5b,0xc7,0x6f,0x51, +0x76,0x70,0x7d,0x74,0x95,0xc6,0xe9,0xcb,0x11,0x27,0xa4,0xfd, +0xfb,0x30,0x1b,0x26,0xf7,0xd2,0x00,0x62,0x6c,0x84,0xc6,0xb8, +0xdc,0x04,0xe6,0x31,0x11,0x38,0xc3,0x19,0xe7,0x2d,0x46,0xc5, +0x1a,0x1b,0xfe,0x19,0x8c,0x2b,0xfe,0xf8,0x69,0x22,0xbd,0x5f, +0x88,0xf9,0xcf,0x42,0x8d,0x57,0xb8,0xa1,0xba,0x46,0x0e,0xda, +0x84,0x0d,0x04,0xc6,0xeb,0xe1,0x78,0xbc,0x68,0x22,0xdc,0xed, +0x65,0x8d,0x71,0x21,0x11,0xbd,0x30,0x1b,0x6c,0xf1,0x11,0xce, +0x1a,0xb5,0xcc,0x1e,0xcb,0xb4,0x66,0x4a,0x93,0xea,0xc3,0xe0, +0xc2,0x1a,0x82,0x8f,0xe4,0xaa,0xf6,0x0e,0x36,0xb0,0x51,0x98, +0x45,0x7c,0xb7,0xdb,0xab,0x6b,0xec,0xad,0x77,0xe4,0xbf,0x7e, +0xd0,0xf5,0x7d,0xf9,0x4b,0x0e,0xfc,0x4f,0x93,0xee,0xdd,0x6d, +0xaa,0xf5,0x9b,0xda,0x2b,0x78,0xa7,0xe7,0xd6,0xdf,0x9a,0xdc, +0xa5,0x65,0xad,0x00,0x7b,0xd2,0x0e,0x6c,0x01,0xf0,0x89,0xb0, +0x91,0xd2,0x33,0x15,0x36,0xe9,0x66,0xfc,0xf5,0xd8,0x5e,0xc3, +0x68,0xfe,0x8c,0xd9,0x09,0xed,0x88,0x7d,0x1c,0x8e,0x37,0xfa, +0x83,0x09,0x5d,0x18,0xb8,0xc0,0x7f,0x4b,0x9b,0x47,0x8b,0x7b, +0xab,0x8b,0xb3,0x9a,0xd9,0xae,0x9d,0xda,0x55,0x56,0xfc,0xa3, +0xbb,0xfd,0x0f,0x1b,0x9f,0xd7,0x78,0xd6,0xb8,0xd7,0x39,0x56, +0xb6,0xf2,0xf6,0xcd,0x8e,0xb5,0xce,0x95,0x9c,0xb0,0x49,0x58, +0x43,0x46,0xf3,0x2d,0xfd,0x40,0x43,0xfa,0x89,0x80,0x13,0x07, +0x23,0x0e,0xb6,0x04,0xf0,0xe9,0xa5,0x29,0x05,0xc9,0x4d,0x5c, +0x93,0x58,0x6f,0x06,0x17,0x31,0x92,0xdd,0x11,0xeb,0x59,0xf3, +0x93,0x62,0x87,0xb1,0x39,0xbb,0x2d,0xd0,0x49,0xcd,0x46,0xa9, +0xd8,0xf2,0xeb,0xd6,0xcc,0xea,0x2b,0x52,0x72,0xce,0xb5,0xd1, +0x83,0x6e,0x7f,0xcc,0x86,0x4a,0x26,0xbe,0x47,0x0e,0x53,0x18, +0x71,0x08,0xb5,0x29,0x53,0xcb,0x7e,0x93,0xf9,0x56,0x4a,0x0b, +0x72,0x02,0x67,0x85,0x20,0xe7,0xb8,0xd0,0xab,0xd0,0x3b,0xdf, +0x3b,0x8f,0x83,0x7f,0xc4,0xa5,0x04,0xb6,0x80,0x6c,0x29,0xee, +0x63,0x93,0x29,0x2c,0xa9,0x32,0x0d,0x29,0x29,0x94,0x1c,0xae, +0x12,0x43,0xc5,0x40,0x56,0xd8,0x0c,0xbf,0x13,0x94,0x3d,0x06, +0x19,0x83,0x32,0x4a,0xea,0x41,0xa6,0x86,0x32,0x46,0x5e,0x58, +0xf1,0x2b,0x71,0xad,0x71,0xaf,0x74,0x2f,0xed,0x04,0x66,0x34, +0x23,0xe4,0x46,0xda,0x4d,0xb7,0xb1,0x49,0x37,0xe2,0x07,0xaf, +0x76,0x53,0x6e,0x7a,0xc6,0xe2,0x84,0x4e,0x84,0x16,0x87,0x9c, +0xe1,0x5f,0xff,0xcb,0x08,0xd9,0x2a,0xdd,0xfc,0x0e,0x93,0x3d, +0x1a,0x3a,0xd5,0x56,0xfc,0xd7,0xb7,0x07,0xee,0x37,0x3f,0x2b, +0xf7,0xad,0xf0,0xae,0x74,0xe7,0x84,0x2f,0xbf,0x23,0x37,0x5b, +0xfa,0xba,0x9a,0x7a,0x9d,0xaa,0x79,0x27,0x53,0x0b,0x2b,0x7d, +0x07,0x9f,0xee,0x43,0x7d,0x27,0x06,0xa5,0x4c,0x02,0x5f,0xa0, +0xd7,0x3b,0xc3,0x25,0x68,0x33,0x12,0xc0,0x04,0x9f,0x0b,0x3a, +0x17,0x70,0x2e,0xc1,0x84,0x87,0x59,0x79,0x7f,0xe4,0x80,0x5c, +0xc5,0xe9,0x1e,0x5e,0x33,0x54,0xe7,0xc8,0x9e,0xa3,0x1c,0xbc, +0x84,0xe9,0xec,0x35,0x5c,0x4b,0xeb,0x1e,0x4c,0x90,0xa9,0xe8, +0xe0,0xb7,0xb6,0x18,0x76,0x3a,0xf4,0x70,0x77,0x85,0x26,0x32, +0x0f,0xff,0xfa,0xc8,0xe2,0xbf,0xf1,0xef,0xff,0x25,0x7f,0xfc, +0x4c,0x4a,0xfe,0x48,0x19,0xab,0xdd,0x22,0xcf,0x42,0xaf,0x02, +0xaf,0x3c,0x4e,0x66,0x0f,0xa6,0x04,0x19,0xfc,0x0b,0x18,0x56, +0x5e,0xf6,0xab,0xec,0x24,0xc1,0x95,0xd7,0xc1,0x6d,0xe4,0x1b, +0x74,0xbb,0x4e,0xb5,0x82,0xf0,0xb9,0x38,0x40,0xfe,0x86,0x7a, +0x61,0xec,0x08,0x27,0x8e,0x85,0xfc,0x85,0xe2,0x72,0x93,0x7f, +0x3e,0xef,0x65,0xd1,0x12,0x6e,0x51,0x49,0xf6,0x87,0x24,0xc9, +0x56,0x4f,0x58,0x2c,0x46,0xfe,0xc9,0xe2,0x0e,0xf1,0x1a,0x01, +0xc5,0x9a,0x8f,0x3d,0xdf,0xf4,0x39,0xd7,0xf0,0xea,0x66,0xcb, +0x6c,0x70,0x26,0xbd,0xc7,0xd6,0xb7,0xe4,0x4f,0x0f,0x98,0x64, +0xfa,0xbb,0x79,0x65,0x1b,0xbf,0xa2,0x0d,0xe5,0x7b,0x17,0x56, +0x72,0xf2,0x82,0x0f,0x20,0x81,0xf9,0xdf,0xc3,0xc4,0x8f,0xdf, +0x80,0x32,0xd7,0x22,0x72,0x6c,0x46,0x6e,0x7a,0x5e,0xea,0x35, +0xa3,0x6c,0x7e,0x3b,0x4e,0x47,0x85,0x95,0xa8,0xa1,0x55,0x62, +0x4e,0xe3,0x5a,0xd3,0xdf,0x37,0x9e,0x7f,0x2b,0xd9,0x96,0xeb, +0xad,0xd8,0xb8,0x75,0xfe,0x3e,0xa7,0x56,0x9b,0x56,0xab,0x3a, +0x1b,0x0f,0xbe,0xd5,0xa5,0xc9,0xae,0xce,0x06,0xc7,0x18,0xe0, +0xe7,0xd6,0x38,0xd7,0x3d,0xdf,0x90,0xff,0x26,0xe7,0x61,0xfe, +0xdd,0x22,0x0e,0x7f,0x1d,0x1a,0x14,0xbc,0x0d,0x86,0x84,0x3d, +0xac,0x58,0x64,0x48,0x22,0x23,0x2f,0x7f,0x15,0x19,0xc9,0x09, +0xee,0x78,0x55,0xf4,0xa6,0x55,0x68,0x2b,0x7b,0x4a,0x0c,0xe7, +0x21,0xb7,0x16,0x23,0x57,0x15,0x19,0xf0,0x90,0xf8,0x1e,0xbe, +0xf8,0xa3,0x06,0x26,0x71,0x92,0xc3,0xc7,0x24,0x50,0x5a,0x0a, +0x19,0x0b,0x8a,0x06,0x79,0x8c,0x7d,0x8b,0xd3,0x7f,0x34,0x82, +0x31,0x54,0xea,0x63,0x32,0x31,0x12,0x3c,0xfa,0x59,0xb1,0x5c, +0x7c,0x43,0xbe,0x85,0x58,0x40,0xbc,0x23,0xea,0xb0,0xc2,0x7e, +0x2d,0x22,0x58,0x80,0x1b,0x36,0xe3,0x72,0x36,0xc3,0x44,0x0e, +0x3e,0x67,0xda,0x33,0x52,0x28,0x73,0x7e,0x83,0x2f,0xc5,0xcb, +0x2c,0xae,0x93,0x9c,0xc1,0xcc,0xe1,0x32,0x98,0xd3,0xcb,0x46, +0x0a,0xd9,0x04,0x0b,0x0f,0xe0,0x54,0x1c,0x83,0xeb,0x94,0xba, +0x9c,0xef,0x7f,0xac,0x7c,0x9b,0x06,0x33,0x14,0xa0,0x07,0x2f, +0xa3,0x35,0x93,0xae,0x2b,0x25,0x69,0xeb,0x4c,0xc9,0xec,0x54, +0x96,0x15,0x88,0xeb,0x59,0x51,0xfd,0x12,0x19,0x29,0x1b,0x7e, +0x0d,0xd1,0x32,0x63,0x56,0x0f,0xfb,0x09,0x9a,0xd2,0x1f,0x32, +0x65,0x84,0x0c,0xa4,0x44,0xa2,0x1e,0x74,0xa1,0x9e,0xc1,0x36, +0x71,0x27,0x89,0xee,0xbe,0x2c,0xa9,0xa6,0x7a,0xaa,0x9a,0x46, +0xec,0x61,0x1a,0x01,0x53,0x2c,0x45,0x53,0x7a,0x41,0x47,0x28, +0x24,0x9d,0xfd,0xc5,0xbd,0xe9,0x37,0xa8,0x2c,0x59,0x84,0x5b, +0x98,0x34,0x53,0x29,0xeb,0x54,0x4b,0xb6,0x94,0xea,0x4e,0x4f, +0x9c,0x86,0x9b,0x58,0x54,0x3c,0xb2,0x71,0xd5,0x12,0x25,0x1c, +0x14,0x02,0x89,0xb8,0x07,0x1e,0xd1,0x27,0x26,0xa8,0xe0,0x5c, +0x82,0xf1,0xaf,0x20,0x9e,0x19,0xd9,0x8a,0x4a,0x04,0x14,0xc0, +0x01,0x15,0x58,0x70,0x5f,0x44,0x62,0x8a,0x2f,0x97,0x46,0x96, +0x73,0x10,0xbf,0x8c,0xbe,0xb5,0x96,0xc0,0x42,0xfa,0xce,0x42, +0x56,0x08,0xc1,0x2d,0x64,0x64,0x1f,0x46,0x2e,0x37,0xfd,0x67, +0x5a,0xcf,0x42,0x46,0x3c,0x08,0x16,0x12,0x95,0x59,0x2e,0x51, +0x19,0x41,0xa2,0x32,0xf4,0x08,0x96,0x33,0x7d,0x9f,0xa8,0xcc, +0x3a,0x4a,0x65,0xe4,0xe1,0xb5,0x94,0xb4,0x70,0xce,0xdf,0x7f, +0xc2,0x98,0x04,0x69,0x0d,0xea,0x94,0xeb,0xc2,0x94,0x18,0x26, +0x61,0x29,0x25,0x3a,0x0c,0x28,0x2c,0xae,0xe8,0xe6,0x51,0xf9, +0x6f,0x94,0xfb,0xd9,0xed,0x0d,0x07,0xd9,0x7d,0xd8,0x04,0xc3, +0x7a,0x38,0x8c,0xcd,0xc6,0x90,0xc3,0x78,0xaf,0x5b,0xbd,0x12, +0xe7,0xcd,0xe7,0x4e,0x0b,0x7a,0xc4,0xe2,0x5b,0x9d,0x6f,0x4c, +0xbb,0x6c,0x3d,0xf8,0x3e,0xb3,0xeb,0x6a,0x9d,0xea,0x9c,0xf0, +0x16,0x0e,0x92,0x10,0x3d,0xfb,0xad,0x2e,0xb6,0x1d,0x5e,0x7c, +0x6d,0x5b,0xfb,0x4f,0xd9,0x83,0x1c,0x85,0x73,0x35,0x12,0xd4, +0xef,0xf4,0xd8,0xb5,0xcb,0x3c,0x88,0xaf,0x37,0xaa,0xd5,0xcc, +0xa3,0xea,0xc5,0x77,0x21,0x2d,0xa3,0x21,0xcc,0xc4,0x03,0xcc, +0x2a,0x4f,0x29,0x19,0x72,0xae,0xe1,0x9b,0xda,0xd6,0xff,0x7f, +0x32,0xe4,0x70,0x29,0xc5,0xb0,0x78,0x89,0xc1,0x99,0xeb,0xfa, +0x81,0x55,0x96,0x97,0xed,0x80,0xbf,0x09,0x8c,0xfb,0xf5,0x11, +0x8c,0xad,0x82,0xf9,0x5c,0x23,0x06,0xb1,0xc9,0xf9,0x09,0xf9, +0xf1,0x05,0x26,0x69,0xbc,0x0b,0x4e,0x52,0x47,0xb9,0x79,0xaa, +0xe5,0x36,0xfc,0xc3,0x9e,0xeb,0xf7,0x9a,0x1e,0x73,0x60,0xc2, +0x04,0xa9,0x79,0xec,0xb3,0xd4,0xf3,0xa9,0x70,0xad,0xdc,0x9f, +0xe3,0xe2,0xc2,0x17,0x07,0x55,0x7b,0x94,0x79,0x19,0xe8,0x6b, +0x98,0xae,0x30,0xa5,0x3c,0x39,0x37,0x25,0x37,0x25,0x3b,0x85, +0xc3,0x67,0x03,0xb7,0x20,0x52,0x6b,0x40,0x50,0x67,0x47,0x94, +0x85,0xbd,0x24,0x79,0x63,0xff,0xbe,0x37,0x3b,0x4b,0x3a,0xf9, +0x0d,0xb7,0x4d,0xef,0x87,0xde,0xe1,0x76,0x33,0xc1,0x1a,0xe6, +0xaa,0x28,0x37,0xba,0x73,0x6d,0xdc,0x83,0xe1,0xef,0xd3,0x5e, +0x73,0x85,0xa2,0x1e,0x81,0x75,0x3d,0xb4,0x81,0x4d,0xa2,0x24, +0x33,0xd3,0xf4,0x4f,0x9c,0x84,0x3b,0x4d,0x61,0x27,0xf6,0x31, +0x06,0x27,0xf5,0x4f,0x19,0x8c,0x6e,0xc2,0x5f,0x9e,0x0e,0xeb, +0x8a,0x60,0x6c,0xc9,0xc5,0x5e,0xde,0xf4,0x98,0x41,0xb8,0xee, +0x71,0xee,0xe5,0x3d,0x92,0xd1,0x95,0xd2,0x9f,0xd0,0x65,0x93, +0xcc,0x9f,0x30,0x8c,0x30,0x0b,0xa3,0x82,0x25,0x1e,0xe6,0x93, +0x6b,0x66,0xf9,0xaa,0xc9,0x26,0xed,0xe9,0x7c,0x78,0xdf,0xfe, +0xef,0x82,0x3b,0x38,0xe1,0xd8,0x79,0xca,0x0b,0x91,0xfe,0x31, +0xd2,0x34,0xd3,0x1c,0x22,0x06,0xdd,0x13,0xd6,0x41,0x37,0x9e, +0x1c,0xb5,0xca,0x8b,0xcd,0x33,0xa4,0x30,0x1e,0x7c,0x72,0xff, +0x09,0x0a,0xe3,0xbb,0xc4,0x46,0xc1,0x8e,0xd9,0x79,0xde,0xf2, +0xb4,0x23,0x85,0xf1,0xf0,0xa3,0x4e,0xb3,0xf7,0x32,0x89,0xa6, +0x72,0x77,0x98,0x5b,0x85,0xf9,0x83,0x89,0xca,0x89,0xfd,0x51, +0xc3,0xc0,0x2a,0x8a,0x76,0x0f,0x85,0x20,0x66,0xa4,0x1f,0x1f, +0x53,0x7e,0x6e,0x2f,0x9b,0x83,0x49,0x23,0x67,0x59,0xd9,0x19, +0x99,0x21,0xd1,0xc0,0xf7,0x5f,0xb3,0x68,0x23,0x96,0x13,0x5c, +0x28,0x94,0x52,0xed,0x29,0x34,0xa3,0x3c,0x51,0xc5,0xf7,0xdf, +0xb2,0x90,0x20,0x7e,0x49,0xd2,0xfc,0x32,0xcd,0x13,0xdc,0xeb, +0xd3,0xf9,0x88,0xaa,0x43,0x9d,0x87,0x8b,0x38,0xf1,0x73,0x8c, +0x25,0x8d,0x77,0x0b,0x5e,0x26,0xde,0xb7,0x4a,0xe4,0x23,0xb4, +0x83,0x54,0x1d,0x74,0x39,0xa8,0xa6,0x6d,0x2e,0xd5,0x26,0xc5, +0x38,0xde,0xb4,0x35,0x89,0x3f,0xd1,0x73,0xa4,0xf7,0x48,0x0b, +0x87,0x6b,0x28,0xc8,0x6a,0xc7,0xee,0xbc,0x6c,0xd0,0x49,0x41, +0xf6,0xd6,0xa9,0x5b,0x11,0xc3,0x14,0xb8,0xca,0xc1,0x8e,0x74, +0x00,0x5b,0x08,0x0a,0x89,0xa3,0xe3,0x0a,0x1b,0xd9,0x44,0x0a, +0x5c,0x57,0xff,0xbf,0xc0,0x25,0x67,0xf8,0x8e,0x09,0x5d,0x14, +0xb8,0xc0,0x6f,0x4b,0xbb,0x7b,0xab,0x5b,0x8b,0x8b,0xb3,0xba, +0xe9,0xee,0x4f,0xc0,0x75,0xa7,0xff,0x41,0xe3,0xf3,0x32,0xdf, +0x72,0xef,0x32,0x8f,0xaa,0x56,0xde,0xad,0xc6,0xa3,0xd2,0xa3, +0x94,0x83,0xe9,0x70,0x94,0xc0,0xaa,0x58,0x50,0x8d,0x83,0x2f, +0xd2,0x52,0x03,0x53,0x02,0x93,0x83,0xdb,0x8b,0x78,0x87,0xe7, +0x5a,0x7f,0xda,0x0d,0xd9,0x04,0xf0,0xb9,0x3e,0x85,0x4e,0x05, +0x0e,0xdb,0x4e,0xaf,0x38,0xb3,0xe2,0x5c,0xd5,0xcd,0xc6,0xb7, +0xa5,0x4f,0x38,0xc8,0xef,0x11,0x4b,0x4c,0x69,0x58,0xf0,0xd3, +0xb0,0x5d,0xee,0xb4,0x97,0xbb,0x14,0x7c,0xe0,0xd2,0x81,0xd9, +0x98,0x83,0xdb,0x48,0xde,0xb3,0x9c,0x37,0x52,0xa0,0x66,0x25, +0xc0,0x3a,0x80,0x13,0xed,0x17,0x7a,0x17,0x79,0xe7,0x7b,0x5d, +0xe3,0x84,0x01,0xfc,0x82,0x40,0x58,0x0f,0x86,0xc1,0x0a,0x3d, +0x5c,0x81,0xde,0xa6,0xe0,0x8d,0x5a,0x18,0x67,0x22,0x3c,0xec, +0xc5,0x04,0xda,0xdf,0xc3,0xe0,0xdf,0xc4,0xe6,0x88,0xcd,0x51, +0x9b,0xd1,0xbd,0xb0,0x0b,0xae,0xe3,0x82,0xd1,0xbd,0xb0,0x0b, +0xd8,0xd8,0xc6,0xa8,0xa6,0xcb,0x4d,0x06,0xd2,0x5e,0xd8,0xa5, +0x21,0x28,0xef,0xb8,0xa2,0xd7,0x97,0xcf,0x6d,0xcf,0xbc,0x95, +0xf4,0x90,0x5e,0x06,0x93,0x19,0xcd,0x30,0xcd,0xa3,0x9a,0xe1, +0x49,0xd2,0x5e,0xd8,0xdb,0xff,0xef,0x5e,0xd8,0xf6,0x94,0xf6, +0xb4,0xf6,0x74,0x4e,0x50,0xc0,0x4a,0x82,0x76,0x8c,0xc5,0x91, +0xd4,0x56,0x65,0x78,0xce,0xc2,0xd4,0x7e,0xf8,0xfc,0xdb,0xef, +0x9e,0x38,0x35,0xf1,0x3b,0x77,0x2f,0xd9,0x83,0x72,0xe6,0x1c, +0x7c,0xd4,0x19,0xb9,0xc8,0xae,0x2f,0xf3,0x7e,0xa3,0x04,0x8e, +0x54,0x3b,0x4a,0xc4,0xc2,0x87,0xd5,0x93,0x56,0xeb,0x7d,0x7e, +0x9e,0xf8,0xd4,0x05,0xf6,0x1e,0xba,0x7f,0x03,0x26,0xd6,0x48, +0x4e,0x16,0xf3,0xcd,0xd2,0xf8,0x30,0x9c,0x1c,0x80,0x63,0x1d, +0x97,0x1f,0xfc,0x78,0x12,0xf8,0x8b,0xa0,0xc2,0x81,0x55,0x27, +0x5a,0xc1,0x2c,0x63,0x9c,0x25,0x2e,0x42,0x15,0x06,0xdb,0xc3, +0x70,0xa9,0x1a,0x2a,0x29,0xb5,0x7a,0xca,0x7d,0x07,0x4b,0xb3, +0x40,0x03,0xda,0x15,0x61,0x1c,0xfc,0xc2,0x5e,0x46,0x93,0x34, +0xdc,0x54,0x82,0xd3,0x1c,0x34,0x8c,0xb5,0x76,0x1a,0x57,0xda, +0xf3,0x43,0x6d,0x9d,0xfd,0x0d,0xb7,0xb2,0x0c,0xae,0xd9,0x14, +0x7b,0x96,0xb9,0x76,0x26,0xc7,0x74,0x66,0x81,0x0d,0x6f,0x91, +0x23,0x37,0x32,0x45,0x38,0x41,0xec,0x5b,0x4c,0xda,0x4d,0xab, +0x3c,0x1c,0xf9,0x3e,0xe7,0x56,0x87,0x36,0x2b,0x4e,0xb6,0xe3, +0x2f,0xe2,0x5d,0x60,0x57,0xe8,0x9d,0xea,0xef,0xcc,0x57,0x1c, +0x6d,0xda,0x5f,0x1c,0xc0,0x8d,0xcc,0xc3,0x34,0xe2,0xd8,0xaa, +0xdb,0x67,0x54,0xe7,0xe6,0xc4,0xf7,0x3a,0xf6,0x59,0xb4,0x5a, +0x70,0x82,0x12,0x5a,0x4b,0x8b,0x9b,0xaf,0x44,0x9c,0x3e,0x79, +0x96,0x3f,0x77,0x59,0x2e,0xe5,0x4e,0xcc,0x83,0x67,0x8a,0xbd, +0x1f,0xda,0xb1,0xd0,0x0a,0x58,0x53,0x16,0xb5,0xfd,0x71,0x31, +0x4e,0xc4,0x69,0x4a,0xb5,0xce,0xc3,0x0f,0x6a,0xbf,0xce,0xfb, +0x5e,0x21,0x32,0xea,0xca,0x57,0x57,0xce,0x3f,0xc6,0x29,0x7c, +0x43,0x99,0xdc,0x01,0x50,0x26,0x19,0x3d,0x09,0x43,0x31,0x83, +0x36,0xb4,0xaf,0xe8,0x9d,0x30,0x0d,0xa3,0xca,0x7b,0x0f,0xa8, +0x92,0x8b,0x1a,0xc7,0xb5,0x82,0x8d,0x9b,0x83,0xf9,0x82,0xe1, +0x84,0x47,0x57,0x1e,0x73,0x38,0x88,0x63,0xc9,0x01,0x9c,0xe0, +0x83,0x9f,0x99,0x2c,0xee,0xf0,0xe0,0x07,0x61,0x42,0x35,0x28, +0x65,0xfc,0xc5,0xc9,0xcb,0x84,0x99,0x68,0xc2,0xf8,0x9f,0x88, +0x2b,0x52,0x86,0x93,0x10,0x0c,0x1d,0x98,0xca,0xb6,0xd7,0x36, +0xb5,0xe6,0x37,0xd3,0xd0,0xf3,0x86,0x4d,0xcb,0x4d,0xcd,0x4b, +0xce,0xd3,0x4b,0xe5,0xf7,0xe0,0xc4,0x95,0xcb,0x70,0xfd,0xda, +0x52,0x73,0xbe,0x38,0xbd,0x30,0xbd,0x20,0x53,0xda,0x60,0x6a, +0xca,0x9e,0x44,0xb2,0x7d,0x39,0x86,0xa8,0x97,0x50,0xd6,0xe0, +0xf7,0x10,0xa6,0x00,0x97,0x00,0x1a,0x1c,0xac,0xa6,0x9d,0xda, +0xe8,0x5a,0xe0,0x90,0x12,0xd8,0x33,0x4d,0xb9,0xd9,0x4d,0xca, +0x30,0x47,0xca,0x83,0x84,0x47,0x85,0x12,0xe2,0xeb,0xe8,0xe0, +0x64,0xe5,0x4e,0xeb,0x9f,0x69,0xad,0x6e,0xa8,0xab,0x6c,0xe0, +0x40,0x19,0x75,0x24,0xd5,0x7a,0x59,0x52,0xad,0x43,0xd2,0x16, +0x5b,0x7d,0x48,0xa4,0x6a,0x55,0x5e,0xa6,0x23,0x28,0x13,0x70, +0x12,0xc6,0x60,0x08,0x93,0x54,0x90,0x50,0x1c,0x9b,0x67,0x10, +0xc7,0x9f,0x39,0x70,0xdc,0x23,0xdc,0x57,0x0a,0x09,0x63,0xc0, +0x6a,0x35,0xee,0xc7,0x47,0x83,0x90,0x4d,0x03,0xfe,0xd3,0xeb, +0xf0,0x94,0xc6,0x26,0x67,0x9c,0xc2,0xa4,0x9a,0xc8,0xbd,0x63, +0x9a,0xd3,0xa5,0xc5,0x47,0x57,0x30,0x82,0x82,0x1c,0x95,0xaa, +0x67,0x41,0x11,0x66,0xf4,0xe2,0x8c,0x4f,0x4c,0x77,0x0d,0x95, +0xcf,0x4c,0x38,0x4e,0x77,0x92,0xb2,0x1e,0xcf,0xae,0xb5,0xe1, +0xbf,0x83,0x09,0xa5,0x1f,0x63,0xfe,0xa0,0x28,0x51,0xd1,0x2f, +0x44,0x4b,0x6b,0xd8,0xae,0x9c,0x57,0xfa,0x0d,0xd5,0x6a,0x6a, +0x56,0xc1,0xc6,0x53,0xa9,0xa7,0x23,0x23,0x4e,0x2a,0x08,0x9d, +0x70,0x82,0x2c,0xc2,0x37,0x7f,0xb1,0x14,0x7a,0x57,0x53,0xda, +0xf3,0xe6,0x23,0x2d,0xa3,0xbb,0x54,0x46,0x5d,0x18,0x41,0x07, +0x26,0x29,0x5f,0x2a,0xa3,0xe1,0x55,0x5a,0xc6,0x13,0x9e,0x11, +0x7e,0x1c,0xae,0xc5,0x11,0xd0,0x5c,0x8d,0x96,0x78,0x6f,0x00, +0xd2,0x61,0x36,0x7e,0x3d,0x08,0x5f,0xc3,0x0a,0xb4,0x9f,0x27, +0x15,0xf1,0xc5,0x7f,0x8a,0x78,0x09,0x3d,0x58,0xfc,0xa6,0x8b, +0xc4,0x86,0xc5,0x84,0x45,0x1f,0x6e,0xcb,0xe4,0x43,0xef,0x49, +0x66,0x54,0xb6,0x87,0xf8,0x94,0xfd,0x29,0x3e,0x49,0x5e,0x46, +0x67,0x0c,0xcf,0xe9,0x9f,0x1f,0xfe,0xee,0x2e,0x30,0x03,0xc0, +0x5a,0x16,0xf2,0xfe,0x7a,0x9e,0xda,0xee,0x06,0xa1,0xb9,0x21, +0x79,0x07,0xf2,0x6a,0xaf,0x57,0xdc,0x2b,0xbc,0x65,0x91,0xcb, +0x07,0xeb,0xfa,0xe8,0x78,0x9b,0x1e,0x49,0x3d,0x9a,0x72,0x34, +0xd9,0xcb,0x81,0xef,0xb6,0xe9,0x31,0x6f,0x35,0x0a,0x76,0x0b, +0xf2,0x0c,0xf6,0xf3,0xba,0xe8,0x75,0xc9,0x4b,0xf2,0xa2,0xea, +0xbf,0x32,0x78,0xa5,0x5f,0xf2,0xa2,0xea,0x17,0x36,0xb0,0xf5, +0x51,0xf5,0xa3,0x5e,0x54,0x66,0xf0,0x27,0x59,0x82,0x9d,0xef, +0x58,0xe8,0xc4,0x95,0x64,0x3e,0x76,0x7e,0x60,0xf1,0x30,0x76, +0x90,0x6b,0x3b,0xb3,0x36,0xa5,0x6c,0xed,0xca,0xe2,0x8f,0x3d, +0x3e,0xf0,0x22,0xe0,0xbe,0x94,0x42,0xa5,0x85,0xd4,0x7e,0x9f, +0xf3,0x5b,0x92,0xe4,0x22,0x75,0x7c,0x7d,0xa8,0x8a,0xcb,0x16, +0x89,0xa2,0x0b,0xe7,0x89,0xe4,0xdf,0x1f,0xef,0xe3,0x70,0xc6, +0xee,0x9c,0xed,0xf9,0xeb,0xdf,0x0d,0xc3,0x84,0x3e,0xe0,0x6c, +0x0a,0xf8,0x00,0x43,0x1f,0x3d,0x2f,0xa3,0xb0,0x9c,0x43,0x39, +0x07,0x73,0x2a,0xaf,0x97,0xdf,0xcb,0xbf,0x65,0x95,0xc3,0x1f, +0xd0,0xf5,0xd7,0xf5,0x35,0x95,0x16,0xc8,0x84,0x27,0x79,0x3b, +0xf2,0x6d,0xf6,0x1d,0x96,0x8d,0xa6,0x81,0xce,0x41,0xae,0xc1, +0xbe,0x01,0x17,0x03,0x2e,0x05,0x5e,0x8a,0x36,0xe5,0x3b,0xae, +0x74,0x45,0x75,0xd0,0x72,0xae,0xed,0x15,0x36,0xb1,0x05,0x57, +0x0a,0xa2,0xf2,0xa3,0x46,0x93,0x06,0x1c,0x6e,0x49,0xe7,0x8f, +0xdc,0x0d,0xb9,0x1b,0xdc,0xc7,0xc9,0x26,0x40,0x29,0x11,0x87, +0x4d,0x21,0x97,0x39,0xee,0x76,0xd4,0xee,0x28,0xd5,0x45,0x56, +0x23,0x7b,0xba,0x6f,0x09,0x73,0xb5,0x7a,0x64,0x7b,0x68,0xeb, +0x4b,0xa9,0x49,0x6d,0x4a,0xac,0x91,0xd6,0xc3,0x8b,0xca,0xa8, +0x45,0xc4,0xf8,0x0d,0x42,0x3c,0x0b,0xf3,0x51,0x91,0x92,0xc7, +0x8f,0xa8,0xc8,0x76,0x8a,0x53,0x89,0x10,0xff,0x5a,0x8c,0x67, +0x31,0x1a,0xcc,0xff,0x73,0x52,0xdc,0x99,0x4c,0xd2,0xb5,0x93, +0xd4,0xaf,0xee,0xec,0x48,0xe7,0x4f,0xdf,0x3d,0xf2,0xed,0xe1, +0x21,0x0e,0xa3,0xb1,0x9e,0x94,0x3d,0xcb,0xf8,0x3d,0xee,0x57, +0xab,0xab,0xfc,0xe9,0x0d,0x61,0x2a,0x3e,0xdb,0x38,0x99,0x3a, +0x68,0x11,0x9c,0x3f,0x0f,0xe6,0xb3,0xd2,0x9e,0x9b,0x0a,0xf2, +0xaf,0x79,0xc6,0x82,0x36,0x73,0xdc,0xf5,0xa8,0x63,0x98,0x0b, +0x87,0xaf,0x47,0x34,0x6f,0x0c,0xcb,0xd4,0xb4,0x6f,0xc8,0x34, +0xc5,0x65,0x4c,0x7a,0x6d,0x6a,0x63,0x42,0x35,0x27,0xac,0x66, +0x46,0xa6,0x51,0xb1,0x20,0x46,0xe3,0x3a,0x21,0x9a,0x05,0x7f, +0x89,0xf0,0xcf,0x84,0xd3,0x38,0x93,0x1d,0x10,0xe5,0x89,0x10, +0x0d,0x5b,0xc5,0x68,0x56,0x74,0xa3,0x4c,0x99,0xaa,0xb2,0xd3, +0x38,0x9b,0xb5,0x9c,0x80,0xca,0x78,0x1a,0x94,0x59,0x79,0xe1, +0x7d,0x14,0xc1,0x99,0x4b,0x4b,0xbb,0x77,0x28,0xb7,0xf7,0x57, +0xdc,0xcd,0x7c,0xcc,0xd5,0xa1,0x0b,0x9b,0x5a,0x94,0x54,0x7c, +0x55,0xca,0x5f,0xda,0x81,0xaa,0x2f,0x61,0x59,0x1b,0x2e,0x7b, +0x0e,0x9b,0xda,0x70,0xd3,0x77,0xc6,0x9b,0x71,0xad,0x35,0xac, +0xdd,0x82,0x4b,0xac,0x61,0x89,0x0a,0x6e,0xb1,0x84,0x05,0xcc, +0x01,0x0d,0x03,0x15,0x0d,0xe3,0x5c,0x73,0xbe,0x30,0xbb,0x20, +0x3f,0xaf,0x30,0xdb,0xaa,0xd0,0xa6,0xc6,0xd9,0xca,0x4e,0xc7, +0x7d,0x67,0x60,0xbe,0x29,0xff,0xb4,0xe8,0x6e,0x43,0x6f,0x17, +0xa7,0xfb,0x54,0x5a,0xa1,0xb6,0x7e,0x36,0xbc,0x65,0x62,0xfb, +0xe4,0xc4,0x48,0x19,0x45,0xe5,0x01,0xc1,0x93,0xa2,0x42,0x34, +0x9b,0x5e,0x94,0x5a,0x9a,0x44,0x81,0xe8,0x58,0xbb,0x98,0x61, +0x05,0x87,0x99,0xe3,0x7e,0x47,0xbc,0x0f,0xfb,0x71,0x07,0x6c, +0x88,0xe8,0xae,0x21,0xb8,0xb3,0x30,0x7d,0x34,0x67,0xec,0x9f, +0xf8,0x19,0xdb,0x86,0xbf,0x13,0xc1,0xfd,0xa9,0xe8,0xce,0x62, +0x38,0xec,0xfb,0xcf,0x49,0x71,0x51,0x10,0x39,0x62,0xe0,0x6f, +0xe1,0x66,0xef,0x5c,0xef,0xdf,0x11,0xd6,0x77,0xf9,0x72,0xe4, +0x95,0xcb,0x97,0x39,0xe1,0x4e,0x28,0xc1,0x59,0x8b,0xa5,0x49, +0x66,0xa1,0x56,0xf6,0x05,0xb9,0x05,0xd6,0x5a,0x3d,0xb7,0x40, +0xa5,0x03,0x55,0xa4,0x25,0xed,0xd6,0x5f,0x9b,0x68,0xe0,0x0a, +0x4b,0x58,0xa1,0xc5,0xa2,0x0a,0x86,0x7f,0x32,0xce,0xa0,0xd8, +0x73,0x14,0xc6,0xf5,0xe0,0xb8,0x4f,0x49,0x73,0x26,0x9a,0xc2, +0x44,0x5a,0x40,0xa7,0x63,0x92,0x75,0x46,0xbc,0x31,0x5f,0x9d, +0x50,0x9d,0x58,0x93,0xcc,0x61,0xc9,0x3c,0x29,0xaf,0xf3,0xf7, +0x52,0x5e,0xe7,0x46,0x65,0x68,0x63,0xab,0x52,0xaa,0x53,0x2b, +0x29,0xd8,0xfc,0x83,0xee,0xa4,0x0b,0x6b,0x1f,0xd3,0x1f,0x79, +0x21,0x5e,0xc1,0x17,0xe0,0xa7,0x86,0xd7,0xcc,0x21,0x99,0xf5, +0xd5,0x5d,0x61,0x8d,0xfb,0xec,0x32,0x8d,0x79,0xf0,0x18,0xf8, +0xfb,0x7a,0xd2,0x5b,0x69,0x99,0xfb,0xca,0x3f,0xcc,0xc1,0x52, +0x3b,0xab,0x8f,0x47,0xf5,0x8e,0xb5,0x4d,0xfe,0xd7,0x39,0x50, +0x91,0x36,0x29,0xf0,0x2f,0x05,0x9e,0x41,0xa5,0x09,0xeb,0x44, +0xfe,0x47,0xca,0x35,0x5b,0x46,0x65,0xb5,0xb4,0x16,0x7a,0x74, +0xf3,0xc3,0x1c,0x98,0xd4,0x4d,0x69,0xbe,0x89,0x09,0x9a,0xa0, +0xb2,0x19,0xcc,0x94,0x64,0xb5,0x2b,0x2e,0x5c,0x83,0xb3,0xaa, +0x6d,0xf9,0x47,0x1f,0x0b,0x3e,0xad,0x85,0x2e,0xe8,0xa5,0xaa, +0xfa,0xd3,0x7a,0xd9,0x27,0xb8,0xa1,0x8a,0xaa,0x6a,0x13,0x78, +0x42,0x9f,0x80,0xb1,0xf4,0x04,0xd6,0xb4,0xe3,0x1a,0xe9,0x09, +0x18,0x4b,0xff,0x16,0x5b,0xc1,0x62,0x2d,0x56,0x30,0x13,0xcf, +0x92,0x6e,0x2c,0x7c,0x0c,0x07,0x68,0xc9,0x8f,0xd3,0x92,0xbb, +0xab,0x61,0xaa,0x19,0x44,0xb3,0x7e,0xba,0x6b,0xac,0x51,0x73, +0xb4,0xe4,0x4e,0x03,0xbf,0x5f,0x4f,0x1c,0x2d,0xf9,0xaa,0xb7, +0xe6,0x60,0xa4,0x25,0x2d,0xd0,0xdf,0xd2,0xa1,0x32,0x5a,0xf2, +0xd5,0x52,0xc9,0x27,0xfe,0x20,0x4c,0x94,0x4a,0xbe,0x56,0x9c, +0xf8,0x13,0x0d,0x60,0x5a,0xb2,0x47,0x44,0x7f,0x09,0x16,0xbd, +0x33,0x58,0x32,0x9a,0x4a,0x61,0xfe,0xe0,0x07,0x28,0x9a,0x7f, +0xfd,0xc3,0x68,0x92,0x05,0xa6,0x00,0xbf,0x24,0xad,0x41,0x4d, +0xfb,0x2b,0x7c,0x6b,0x6b,0x79,0x97,0x72,0xbb,0x12,0x3b,0x1a, +0xf9,0x6b,0xce,0xd1,0xd6,0x88,0x2f,0x71,0x15,0x8b,0xea,0xfb, +0x57,0x19,0xaa,0x28,0xb5,0x58,0xcb,0xdd,0xfa,0xad,0x0a,0x38, +0xd0,0x52,0xfc,0x0b,0xf2,0xd8,0xab,0x38,0xa5,0x72,0x49,0x9f, +0xea,0x06,0x8b,0x85,0x0e,0xf8,0x99,0x5f,0xa1,0x21,0x0f,0x53, +0x4a,0x61,0x6c,0xeb,0x9b,0xfe,0x6e,0x93,0x3b,0x4e,0x8f,0xf7, +0xb7,0x87,0x35,0x44,0xc6,0x74,0x67,0xc0,0x46,0xde,0x3c,0xf7, +0x10,0xee,0xdc,0x99,0xa7,0x5d,0x6d,0xde,0xa9,0xf0,0xe6,0xce, +0xc3,0xa7,0xcd,0xdf,0x59,0x96,0xf2,0x0e,0xdb,0xf7,0xed,0x58, +0xa7,0x6b,0x75,0xc7,0xfb,0xe5,0x69,0xaa,0x8b,0x84,0xa5,0xbd, +0xe2,0x72,0xfa,0x00,0xe5,0xff,0xd9,0x0b,0xad,0xa4,0x57,0xcc, +0x66,0xaf,0xd5,0xe4,0xd6,0x64,0x52,0x29,0xbf,0xba,0x57,0x7c, +0xc3,0x58,0x46,0x5c,0xa5,0x44,0x60,0xac,0xcc,0xb0,0x57,0xdc, +0xf0,0x4a,0x77,0xbd,0x38,0xcf,0x04,0x26,0xa0,0x1c,0xbb,0xb1, +0x38,0xe4,0x83,0x12,0x8c,0x67,0x0e,0x7a,0x04,0xbb,0x06,0xd0, +0xe0,0xd0,0x6c,0x02,0x51,0x8c,0x9b,0x8d,0x93,0xb5,0x8d,0xcd, +0x37,0x07,0xff,0x08,0x84,0x71,0x3e,0x8b,0xec,0x50,0x31,0x18, +0x77,0x8e,0x6e,0x2c,0xb3,0x4e,0x82,0xb5,0x15,0x30,0xf9,0x0e, +0x7c,0xe6,0x09,0xd3,0x5c,0x80,0x73,0x2e,0xee,0xe4,0x71,0x7c, +0x35,0x4e,0xa8,0x58,0x50,0x72,0xaf,0xbb,0xe7,0x6e,0xcd,0x0f, +0x1c,0x9e,0x41,0x53,0xb2,0x3a,0x7f,0x63,0xae,0x66,0x46,0x45, +0x65,0x69,0x5d,0x49,0x1d,0x07,0x5f,0x33,0x8e,0x5b,0xcd,0xf4, +0x77,0xd9,0xd1,0x28,0x98,0x27,0xac,0x20,0xd2,0x4a,0x7e,0x0b, +0xa6,0x31,0x2d,0xb3,0x5e,0x19,0xa6,0x0b,0x4a,0x7d,0xa2,0x52, +0x21,0x0b,0x93,0xab,0x60,0x6c,0xd3,0x40,0x13,0xd7,0x3c,0xb2, +0xcc,0x44,0xa8,0x62,0xcd,0x83,0x36,0xf9,0xae,0x0e,0xe0,0xf4, +0x44,0x15,0x63,0x2a,0x81,0x14,0x58,0x61,0x1c,0x72,0x64,0x44, +0x17,0xcb,0x96,0x98,0xfc,0x33,0xbb,0x77,0x1e,0x23,0x1e,0x06, +0xda,0x1b,0x42,0xa9,0x98,0x09,0x65,0x41,0x86,0xa1,0x92,0xac, +0x09,0xa5,0xb2,0xa6,0x9f,0x1e,0xd2,0x83,0x75,0x18,0x4a,0x7b, +0xc9,0x60,0x32,0x51,0x3f,0x9c,0xf2,0x8d,0x32,0x2c,0x67,0x85, +0xe0,0xfc,0x73,0x7d,0xa2,0x7f,0xb0,0x1c,0xa8,0xb1,0x82,0x6a, +0xce,0xf9,0x3e,0x71,0x4b,0xe8,0xe8,0x2c,0xcd,0x82,0x14,0x50, +0xca,0x85,0xcf,0xaa,0xfd,0xa8,0xc8,0xb1,0xd5,0xc5,0xd4,0x60, +0x4c,0x38,0x97,0x68,0xc8,0xbf,0xba,0xf2,0x26,0xea,0xcd,0x55, +0x4a,0x5a,0x59,0xbc,0x73,0x24,0xca,0x08,0x6e,0xa6,0xc9,0xa1, +0x1a,0x8b,0x42,0x58,0x94,0x01,0xbc,0xcf,0x94,0xa3,0x62,0x6d, +0x51,0x95,0xf7,0x5f,0x4a,0xd0,0xc9,0x74,0x67,0xa4,0x75,0x2b, +0x83,0x02,0xab,0x97,0x22,0x87,0x1b,0x68,0xfb,0x3e,0x2e,0x9b, +0x4e,0xaa,0xda,0xca,0xbb,0x8b,0xaf,0x3b,0x14,0xf3,0x41,0x56, +0xfb,0x6d,0x7d,0x9d,0x82,0x1b,0xf7,0xd7,0xfb,0xd4,0xd9,0xfb, +0xf0,0x95,0x36,0xc5,0xb6,0x79,0x36,0x6e,0x0e,0x8e,0xae,0x76, +0xde,0x85,0x66,0x7c,0x53,0x79,0x5d,0x75,0x75,0x7d,0x86,0x5d, +0x8a,0x4d,0xbc,0x95,0xf1,0x7a,0x3d,0xfd,0x4d,0x86,0x05,0xe6, +0xfc,0xd3,0xae,0xbe,0xc1,0xf6,0x87,0x5c,0xb4,0xc3,0x65,0x7b, +0x6b,0x45,0xdc,0x19,0xe9,0x6f,0xaf,0x3a,0x5b,0x87,0x49,0xd5, +0x95,0x1b,0x64,0xde,0x75,0x0f,0x52,0xe2,0xb1,0x3e,0x08,0x66, +0x9b,0xc1,0x14,0x65,0xc1,0xfe,0x3c,0x79,0x55,0x72,0xbf,0xae, +0xae,0x95,0xab,0x17,0x23,0x2c,0x84,0xb9,0xac,0xf7,0x7e,0xe3, +0x20,0x8d,0x60,0xce,0x00,0x9b,0xcc,0xa1,0x09,0x59,0x69,0xbb, +0xac,0xa9,0xb4,0xee,0xae,0x25,0x2d,0xad,0x5e,0x32,0x40,0xc9, +0xec,0xc2,0x4c,0x16,0x6f,0x48,0x0c,0xf2,0xb6,0x96,0xb9,0x8c, +0xef,0xb2,0x80,0xdb,0xac,0xc8,0x52,0x4d,0x98,0xb2,0x12,0x52, +0x58,0x58,0x85,0x29,0x04,0x52,0x7e,0xc5,0x14,0xb6,0x67,0x26, +0xa4,0xfc,0x4d,0x5f,0xe5,0xff,0xd1,0x91,0x9d,0x26,0xa2,0xfa, +0x0b,0xdd,0x8d,0xe2,0x1a,0x33,0x98,0xa8,0xca,0xec,0x2a,0x0a, +0x7e,0xac,0x24,0x40,0x8f,0xf8,0x96,0x71,0x0a,0x8f,0xab,0x57, +0xbe,0x2d,0x73,0x65,0x47,0x3c,0x46,0x12,0x49,0x9b,0x50,0x6d, +0x3d,0x2c,0x64,0x8c,0x6c,0x14,0x33,0x58,0xe1,0x6f,0x81,0x10, +0xb1,0xfa,0x3b,0xa1,0x9a,0x11,0xab,0x71,0x0e,0x11,0xaa,0x37, +0x8a,0xd5,0x8c,0xe5,0x04,0xa1,0x7a,0x2d,0x7d,0x95,0x87,0x3b, +0x00,0x44,0x82,0xa9,0x51,0xa0,0x3a,0x7a,0xf7,0xe0,0x9d,0x03, +0x7d,0xf6,0x87,0xf9,0xc4,0x80,0x78,0xdf,0x78,0x5f,0x97,0xb3, +0x4e,0xe7,0x9c,0xce,0x0f,0x3e,0x1f,0x06,0xb9,0x3e,0x60,0xad, +0x3f,0xa1,0xa3,0x37,0x45,0xc7,0x83,0xb9,0x07,0xb3,0xff,0x87, +0x8e,0x21,0xba,0x7e,0xba,0xbe,0x66,0xe1,0xc9,0xc7,0x3e,0xa1, +0x63,0xbb,0x7d,0x3b,0x45,0xc7,0x20,0xa7,0x40,0xf7,0x60,0x9f, +0xff,0x1b,0x3a,0x6e,0x66,0x73,0xaf,0xe4,0x5e,0xc9,0x89,0xe2, +0x7e,0xa4,0x12,0xbd,0x4f,0x76,0x53,0x58,0x30,0x72,0x02,0x15, +0x47,0xc7,0xde,0xe4,0x98,0x96,0x94,0x8c,0x66,0x65,0x59,0xb9, +0x98,0xc0,0xc2,0x14,0xda,0xca,0xd2,0xbd,0xb2,0x4c,0x92,0x9c, +0x1b,0xb3,0xf9,0x88,0xba,0x83,0xdd,0x87,0x2b,0xb8,0x6f,0xc4, +0x2e,0xe2,0x7d,0xf2,0x72,0x9d,0x32,0x25,0x46,0xc1,0x6d,0xa8, +0x04,0x63,0x60,0x5a,0x9b,0x2a,0x9b,0xd3,0x9a,0x7d,0x23,0xb1, +0xce,0x2e,0x95,0x8f,0xb0,0x3d,0xb0,0x27,0xc8,0x92,0xc3,0x1d, +0xd6,0x34,0xb0,0x8f,0x41,0x25,0x6b,0x0a,0x2f,0x8c,0x56,0xf1, +0x31,0xca,0xe9,0xb6,0x75,0x30,0x62,0xd6,0xdf,0x24,0x6b,0x77, +0xea,0x96,0x78,0x55,0x8a,0x94,0x27,0x1f,0x85,0x7d,0x17,0x7a, +0xf7,0xff,0x8e,0x94,0xf2,0xd0,0x01,0xc5,0xe4,0xec,0x0f,0xa0, +0xd9,0x85,0x9a,0x1f,0x47,0xd7,0xe6,0xfc,0x0d,0x5b,0xbb,0x70, +0xeb,0x2f,0x46,0x2b,0x51,0xd3,0x1c,0x34,0x17,0xa2,0x8a,0x05, +0xa8,0xcc,0x43,0x3d,0x73,0xd8,0xc1,0x1c,0x5c,0xa3,0x31,0x6f, +0x85,0x4a,0x95,0x0d,0xff,0xfb,0x9b,0xae,0x6f,0xaf,0xfe,0x4a, +0x43,0xe4,0xc4,0x7e,0xda,0xcf,0x62,0xa2,0xbe,0x92,0x52,0xb7, +0x4f,0xc3,0x65,0xf5,0xf5,0x28,0x0f,0x0b,0x8f,0x27,0x9d,0xb8, +0x7c,0xfc,0xb8,0x82,0xb0,0x0f,0x9b,0x88,0xdd,0xc9,0x24,0x2a, +0x19,0xec,0x59,0xc8,0x2e,0x3d,0x33,0x80,0x29,0x3e,0x72,0xb0, +0x85,0x85,0xaf,0x4a,0xce,0xf6,0xe3,0x59,0x3f,0x39,0x58,0xcb, +0x3e,0xc9,0x78,0x9a,0x77,0xab,0xd8,0x5f,0xea,0xd0,0xd6,0xb8, +0xd4,0x0b,0x17,0x1c,0x4a,0xa2,0x08,0x11,0xdd,0x10,0xdb,0x10, +0xc7,0xe1,0x0a,0x0a,0x2a,0xd2,0xc4,0xe4,0x6a,0xda,0xf6,0x37, +0xb3,0xb8,0xed,0x60,0xac,0x21,0x6c,0xa0,0xc7,0x0e,0xd2,0x24, +0xe5,0x23,0x25,0x98,0xcd,0xb4,0x8f,0x4e,0x52,0xaa,0x8c,0x4e, +0x52,0x1a,0xb2,0x52,0xe6,0x95,0x35,0xa4,0x0f,0xb2,0x8c,0xfb, +0xfb,0x20,0xbd,0x13,0xd3,0xaf,0x1b,0xe9,0x63,0x96,0xf4,0xef, +0xb2,0x05,0x5c,0x36,0x66,0x85,0x91,0x00,0x32,0xf2,0x10,0x37, +0x0e,0xc2,0x38,0x99,0x2d,0x8e,0x1b,0x64,0x70,0x45,0x27,0x11, +0x0b,0xad,0x84,0x42,0xca,0x36,0xef,0x93,0xfe,0xca,0xf6,0x86, +0xc6,0x7a,0x07,0x1a,0x48,0x1d,0x2d,0x5d,0x4d,0xdc,0x5d,0xda, +0x82,0x3a,0x8f,0xf5,0x73,0x70,0xab,0xfd,0x5f,0x93,0xad,0xe0, +0x19,0xb3,0xd3,0x15,0xc7,0x79,0xa1,0x72,0x50,0xa6,0x15,0x0f, +0x13,0x73,0x60,0x5c,0xe9,0xab,0xe6,0x94,0x88,0x64,0xca,0x94, +0xd6,0x9a,0xa2,0xbc,0x3d,0xaa,0x79,0x65,0x59,0xf2,0xa0,0x5a, +0x09,0x33,0x5b,0x7f,0xbe,0x91,0x70,0x34,0xee,0xc8,0xd5,0xb0, +0x65,0x9a,0xb8,0x45,0x0b,0x0d,0xdc,0x32,0x2d,0x78,0x30,0xaa, +0x07,0x95,0xa1,0xdf,0x1e,0x70,0x51,0x61,0x97,0x0f,0x85,0x2a, +0xea,0x85,0x1d,0x52,0x55,0x5a,0x29,0xed,0x40,0xfc,0x91,0xf9, +0xbb,0xa1,0xec,0xf7,0x0f,0xb6,0xef,0x36,0xdc,0x57,0x8e,0x8f, +0x49,0xb8,0x1a,0x1f,0xcb,0xbd,0x66,0x5a,0x51,0xeb,0x23,0x85, +0x4f,0x9b,0xf9,0x25,0x6d,0xbc,0x4a,0x93,0x76,0x93,0x75,0x2b, +0xad,0x29,0x3b,0xd9,0x0b,0xe2,0x8d,0x14,0xb3,0x96,0xa9,0x8c, +0xba,0x99,0x67,0xe7,0xe7,0x54,0xe4,0xd4,0x71,0x62,0x6a,0xaf, +0x8c,0x67,0x8b,0xbe,0xce,0xfb,0x21,0xf5,0x17,0x4e,0x66,0x86, +0xef,0x25,0x9b,0x56,0xb6,0xf7,0xbb,0x86,0xd7,0x25,0xbf,0xdb, +0x64,0xf2,0x47,0x2d,0xc3,0x6c,0x42,0xec,0xb8,0xda,0x79,0x30, +0xc5,0x14,0xa7,0xe0,0x78,0x2b,0x18,0x8f,0x73,0x71,0xa6,0x25, +0x6c,0x66,0x4d,0x75,0x74,0x4c,0x76,0xda,0x16,0x3a,0xf0,0xf9, +0xe9,0x79,0x19,0x79,0x99,0x9c,0xa8,0x4c,0xbb,0xfa,0x1e,0x83, +0x5e,0xc1,0x09,0xfd,0xd9,0xc2,0xc2,0x82,0xe2,0xbc,0x52,0x4e, +0x4c,0x82,0xc7,0xc4,0x0c,0x12,0xbb,0x59,0xf0,0xa5,0x7d,0xea, +0x4f,0xe6,0x80,0x6d,0x80,0xbd,0xaf,0x13,0x77,0x98,0x11,0xa3, +0x80,0x27,0x26,0xf0,0xa0,0x97,0xc5,0x72,0x54,0x26,0xa6,0x10, +0x35,0x6a,0x49,0xd9,0x83,0x51,0xa6,0xac,0xb0,0x16,0x27,0x11, +0x98,0x0c,0x7b,0x70,0x32,0x2b,0x16,0x63,0x1d,0xe9,0x02,0x1b, +0xc8,0xc3,0x18,0xc9,0x9f,0xd2,0x16,0xf2,0x08,0x6e,0xc2,0x45, +0xb0,0x89,0xc6,0x50,0x1f,0x42,0x3f,0x33,0x1d,0xf7,0x50,0xfc, +0x50,0x13,0xda,0xc8,0xa0,0xb8,0x0e,0x82,0x74,0x30,0x48,0x9c, +0x67,0x20,0x4c,0x62,0xed,0x71,0x23,0xce,0xc2,0x05,0x18,0x80, +0xcb,0x24,0x1f,0x8b,0x48,0xd8,0xf1,0x1e,0x14,0x3f,0xf9,0x58, +0xdc,0xbe,0x29,0xdc,0x96,0xd6,0x24,0xce,0xa7,0x9d,0x47,0x11, +0x22,0x71,0x47,0x2d,0x6d,0x41,0x81,0xb0,0x0c,0x97,0xc0,0x02, +0x3b,0xd8,0xc8,0xc9,0xff,0x63,0x06,0x7e,0x84,0x42,0xfc,0x24, +0x9d,0x3f,0x8f,0x80,0x32,0x07,0xfa,0x7d,0x68,0x9c,0xc9,0xc0, +0x4e,0x03,0xdc,0xc9,0x1e,0x92,0xd2,0xd6,0xaf,0x62,0x23,0x70, +0x8e,0xed,0xe2,0x85,0x38,0xe1,0x42,0x23,0xaf,0x7d,0x52,0xeb, +0xd4,0xbe,0xd3,0xdc,0xef,0x60,0xd8,0x81,0x86,0x4f,0x61,0x0f, +0x3c,0x15,0x57,0xe2,0x53,0xd8,0xb5,0x0d,0x8d,0x2d,0xc1,0x78, +0x01,0xbb,0xeb,0x8c,0xe6,0x59,0xcd,0xf3,0x57,0x29,0x16,0xad, +0x8f,0x87,0x35,0xe9,0xb0,0xfc,0x5a,0xbd,0x2d,0x0f,0x9f,0xc1, +0xf4,0x2a,0x60,0xa2,0x81,0x1f,0x75,0xe8,0x53,0x6e,0x5e,0x09, +0x73,0x51,0x99,0x4b,0x14,0xf2,0x49,0x60,0xbd,0x77,0x8d,0x4f, +0xb9,0xab,0x1f,0x5f,0xe2,0x53,0xea,0x92,0xef,0xc8,0x8d,0x8c, +0x7f,0x49,0x54,0x70,0xca,0x4b,0x16,0x76,0xab,0x90,0x97,0xf0, +0xb9,0x0a,0x8b,0xfb,0x6c,0xc8,0x5a,0x9c,0xf2,0x13,0x3d,0xb3, +0x96,0xfc,0x04,0x9f,0xaf,0x65,0xe1,0x5b,0x71,0x31,0x69,0x34, +0xaa,0xd3,0x2f,0xdf,0x3d,0x58,0xc8,0x7b,0x3c,0xb0,0x1b,0x72, +0x6c,0xe3,0x46,0x7c,0x31,0x98,0x0c,0xdd,0x6c,0x1a,0x2e,0xba, +0x69,0x9a,0xcb,0xfb,0x19,0xda,0xeb,0xea,0x9b,0x70,0x42,0x3a, +0xac,0x21,0x79,0x86,0xd9,0x7a,0x29,0xfb,0xa4,0xc9,0xbd,0x7b, +0x21,0x37,0x02,0x7b,0x38,0x2c,0x0c,0x97,0xd2,0x4d,0x19,0x45, +0xef,0x92,0x26,0xf7,0x1e,0x9c,0x1a,0x3c,0xda,0x4f,0xdb,0xcc, +0x2a,0x4d,0x72,0xf3,0x6b,0x61,0x48,0xe3,0xa6,0x4c,0x36,0xa2, +0xcf,0xc8,0x26,0xe3,0x79,0x22,0x0e,0x81,0x9e,0x30,0xc4,0x88, +0xea,0x13,0xfe,0x7b,0x34,0x84,0xe7,0x88,0x30,0x84,0xa6,0xe2, +0x10,0x23,0x7f,0x0f,0x7e,0x20,0xe0,0xf5,0x0b,0x7c,0xf9,0x73, +0x0a,0x4c,0xe4,0x62,0x71,0x78,0x08,0x86,0x63,0x99,0x14,0xfa, +0x24,0xd7,0x7d,0x09,0xa1,0xcb,0x4b,0xda,0x79,0x0c,0xfa,0x0d, +0x15,0x9e,0x59,0xbe,0xe5,0x84,0xe9,0xbd,0xe2,0x5a,0x98,0xa4, +0x8b,0x93,0x28,0xac,0x0b,0xe3,0x18,0x2a,0xf7,0xbe,0xd8,0x8a, +0x6e,0xcb,0x39,0x59,0x23,0xae,0x20,0xfd,0x23,0x3a,0x46,0xd0, +0x4f,0xab,0x72,0xa9,0xe1,0x3f,0x93,0x07,0xc4,0xcd,0x10,0x44, +0xbb,0x67,0xa7,0xcc,0x82,0xa4,0xd7,0xa7,0x36,0x24,0xd6,0xeb, +0x25,0xf0,0x4e,0xb8,0x4a,0x8d,0xd6,0xee,0x54,0x1c,0xdb,0x60, +0xc3,0x3f,0x7d,0x70,0xe3,0x87,0xe6,0x9f,0x39,0x58,0xc2,0xe8, +0xe1,0x41,0x1c,0x8f,0x2b,0x51,0x1d,0xa7,0x36,0xd1,0x9e,0xa6, +0x4b,0xc9,0x1a,0x07,0x6a,0xb7,0xe0,0x12,0x07,0xeb,0x19,0x53, +0xec,0xc7,0xb1,0xe8,0x41,0xe5,0xe8,0xa2,0x16,0x6b,0x1e,0xcc, +0x61,0x3d,0xad,0x85,0x43,0x3d,0xf0,0x98,0x83,0x39,0xcc,0x25, +0xc9,0xa4,0xc0,0x3c,0x6c,0x13,0x67,0x79,0xc2,0xdb,0x5f,0x6f, +0xb6,0x94,0x04,0xd0,0x50,0x32,0xc3,0xf8,0xa9,0xb5,0xf2,0x69, +0x96,0x72,0xee,0x9b,0x74,0xf0,0x85,0x56,0xc5,0x06,0x5a,0x8e, +0x74,0x59,0x1d,0x49,0xd9,0xd9,0x69,0x00,0xe3,0x47,0x93,0x6e, +0xc8,0xdd,0x73,0xe8,0x08,0x91,0x92,0x6e,0x84,0x48,0x49,0x37, +0xe4,0x77,0x16,0x99,0xf3,0x30,0xf9,0x51,0xaf,0x94,0x74,0x43, +0xf8,0x5e,0xb4,0x25,0x70,0xe8,0xe7,0x3e,0x94,0x67,0x73,0x5b, +0x73,0x6f,0x67,0xde,0x32,0xca,0xe0,0x0f,0x6b,0x05,0xa9,0xfb, +0x1a,0x71,0x78,0xcd,0xf8,0x23,0xee,0x64,0xc2,0xbe,0x3a,0x2c, +0x59,0x38,0x4e,0x32,0x06,0x96,0x39,0x89,0x0a,0x3e,0x1b,0xf7, +0x2e,0x6d,0x76,0xe4,0x1f,0xc1,0xd8,0x4a,0x18,0x93,0x08,0x4b, +0xe8,0x3d,0xe1,0xbf,0x07,0xe0,0xdf,0x7f,0xf5,0x31,0x58,0x03, +0xf7,0x48,0x58,0xcf,0xfe,0x9b,0xfb,0x5b,0x2d,0x82,0xf9,0x22, +0x8b,0x6b,0xc6,0x99,0xc6,0x1c,0x3e,0x17,0xfd,0x49,0x76,0x40, +0xae,0x47,0x8e,0xbb,0xc9,0x51,0xbd,0x70,0x9d,0x08,0x0e,0x5c, +0x21,0x1a,0x3e,0xe2,0xf4,0xbf,0x4c,0x17,0xe1,0x0c,0xf1,0x36, +0x1b,0x7a,0x21,0xf4,0x7c,0xe8,0x85,0x44,0xaa,0xe1,0x27,0x66, +0xc0,0xb8,0xdc,0xdf,0x0a,0x52,0x82,0x92,0x83,0x13,0x42,0x1a, +0x8a,0x79,0xef,0x3b,0x86,0xbf,0x3a,0x0c,0x70,0xf0,0x08,0x96, +0x91,0xc8,0xf4,0xaf,0xd2,0x33,0x14,0x61,0x07,0x2c,0xc0,0x43, +0xac,0xa8,0xf1,0x92,0xa0,0xf5,0x6f,0x60,0xcd,0xa0,0x35,0x2e, +0x23,0x60,0xbd,0x10,0xad,0x19,0x79,0x21,0x4b,0x00,0x12,0x99, +0xf5,0x55,0x56,0xb6,0x22,0xac,0xd1,0xa1,0xfc,0x30,0x64,0xd4, +0x56,0x5b,0x5c,0x68,0x20,0xcc,0x63,0x0e,0x63,0x82,0x0a,0xee, +0xc3,0x0e,0xfc,0xac,0xdc,0x80,0x97,0x3c,0xff,0x7f,0x01,0xa7, +0x0c,0x28,0xe7,0x84,0xcd,0x83,0xcc,0xba,0xe7,0xc4,0xbc,0x66, +0x59,0xaf,0x5e,0xbe,0xa7,0x35,0x3f,0xec,0xff,0xab,0x45,0xbb, +0x13,0x87,0x73,0x47,0xc6,0x11,0xb3,0xa3,0x89,0xad,0xca,0x02, +0xa3,0x23,0x4e,0x67,0xb7,0x97,0xfa,0x7f,0xaf,0x04,0xc1,0x4c, +0x5d,0x5a,0x06,0x05,0x2d,0x5f,0x56,0x9f,0x32,0x93,0x23,0xac, +0xfc,0x2d,0xfa,0xa4,0x8d,0xff,0x19,0xdf,0xc7,0x1a,0xe2,0x72, +0x32,0x12,0x81,0x7b,0x19,0x0c,0x3f,0x88,0x8a,0xaa,0x38,0x59, +0xa9,0xdd,0xfc,0x3b,0x98,0x75,0x0d,0x56,0x5d,0x01,0x0f,0x05, +0x99,0x3a,0xa3,0x0b,0xaa,0x04,0xc7,0x89,0xff,0x82,0x71,0xac, +0xcc,0x4d,0x9c,0x42,0x7a,0xf0,0x31,0x4c,0xd4,0xc5,0x89,0xd8, +0x61,0x0a,0x35,0xec,0xfe,0x75,0xeb,0xf4,0xd0,0x63,0x4b,0x91, +0x29,0x0f,0xae,0xdf,0x03,0xfb,0x6d,0x3a,0x8c,0x93,0x9c,0x0c, +0x71,0x3c,0x7c,0xa6,0x09,0x7e,0x2a,0xd7,0x28,0x91,0x0a,0xfe, +0x7e,0xc3,0x60,0xc0,0x0f,0x9c,0x34,0xb0,0x2c,0x23,0xa7,0xa5, +0x85,0x32,0x11,0x27,0x4f,0xf1,0x67,0x7f,0x82,0x5d,0x7d,0xb8, +0xeb,0xd3,0x52,0x1b,0x3d,0x63,0xd0,0x64,0x0e,0xe1,0xf8,0x7d, +0x38,0x61,0xe5,0xd2,0x4a,0x73,0xfe,0xf5,0xbb,0x96,0xd7,0xf1, +0xd2,0x4e,0x67,0x8d,0x01,0x61,0x8e,0xb4,0xd4,0x26,0xea,0x9c, +0x12,0x8c,0xa3,0xd1,0xa4,0x41,0xae,0x4a,0xa8,0x21,0x30,0xdf, +0x89,0xd9,0x78,0x41,0xfd,0xf4,0x5e,0x25,0xa7,0x6a,0xa7,0x0a, +0x97,0x62,0x2f,0x7b,0xbe,0xc5,0xbd,0xd3,0xa1,0xdd,0x36,0x10, +0x37,0x1a,0xa2,0x3c,0x32,0x38,0xa9,0x81,0xc6,0x7c,0x16,0x26, +0x0e,0x01,0x29,0x85,0x35,0x95,0x1e,0x65,0x1e,0xc5,0x9e,0x35, +0xad,0xbc,0x6b,0xbd,0x63,0xa3,0x43,0x3d,0x97,0xf4,0x43,0xf4, +0xdb,0xf7,0x8a,0xb5,0xa0,0xba,0x91,0x45,0xbd,0xd3,0x68,0x75, +0x04,0xd7,0x28,0x6d,0x3a,0x15,0x1a,0xb6,0x67,0xf6,0x12,0x29, +0x3f,0xe5,0x4b,0xe6,0xaf,0xc6,0x2a,0x98,0x9a,0xa8,0x9c,0x0e, +0xdb,0xe3,0xc0,0x8a,0xb2,0x73,0x58,0x20,0xea,0xb0,0x6a,0x17, +0x48,0xd8,0x4e,0xff,0x6d,0xfb,0xf5,0x9a,0x03,0xf8,0xa2,0xa1, +0xd2,0x17,0x99,0x0f,0x69,0x4b,0x43,0x0b,0x72,0xf0,0x9e,0xff, +0x93,0xa0,0x21,0xeb,0x20,0x3e,0x5f,0xb7,0x50,0x2d,0x53,0x5a, +0x69,0xd3,0x22,0xfb,0x96,0x18,0xe8,0x61,0xda,0x0d,0x43,0x3d, +0xdc,0xd3,0x4f,0xc5,0x96,0xa2,0x35,0x28,0xa2,0xbb,0xec,0x58, +0xc7,0x88,0x1a,0xac,0x83,0x3d,0x0b,0x04,0xf2,0x1e,0x16,0xb7, +0xe1,0x62,0x06,0x1f,0x5b,0x13,0x48,0x33,0xc1,0x34,0x06,0x1f, +0xa0,0x27,0x11,0xe7,0xca,0xb6,0x50,0xea,0xa6,0x8f,0x0c,0x11, +0xdb,0x86,0x84,0x36,0x06,0xf7,0x4c,0x10,0xdb,0x6e,0xd2,0x03, +0xb1,0x0d,0xe5,0x88,0xd0,0xf6,0xff,0xb0,0xf6,0xde,0xc1,0x59, +0x1c,0xcb,0xdb,0x28,0x60,0xb4,0x3b,0x04,0x0b,0xb0,0x3d,0x78, +0x25,0xb0,0x44,0x46,0x88,0x9c,0x33,0x12,0x12,0x20,0x90,0x50, +0xce,0x39,0x67,0x94,0x90,0x04,0x42,0x20,0x40,0x64,0x38,0xe4, +0xa0,0x9c,0x73,0xce,0x39,0xa1,0x1c,0xc9,0x39,0xdb,0x80,0x31, +0x0e,0x70,0x6c,0x83,0xed,0xde,0xd7,0xbd,0x3a,0xe7,0xce,0x0a, +0x7f,0xbf,0xaa,0xef,0x86,0xba,0xf7,0x8f,0x5b,0x5b,0xb5,0xb5, +0x35,0xd2,0xbb,0xb3,0x13,0xba,0xfb,0x79,0x66,0x7a,0xba,0xf5, +0x24,0x56,0x36,0x47,0xf6,0x87,0xfd,0xff,0x1c,0x79,0x16,0xe6, +0x1a,0x50,0xa6,0x99,0x1a,0xe1,0x17,0xc4,0xc1,0x3f,0x78,0x45, +0x74,0x1c,0x6d,0x4f,0xcf,0x68,0x55,0x57,0x24,0x4a,0x63,0xf0, +0x17,0x18,0x90,0xcc,0x70,0x39,0x1f,0x6f,0xa8,0x24,0x35,0x2a, +0xca,0x29,0x1c,0x58,0x8c,0x07,0x38,0xd1,0xfc,0x0d,0x85,0x73, +0x8b,0xf1,0x1c,0x27,0x99,0x5b,0xb3,0xb2,0x05,0x43,0x65,0x3f, +0xb2,0xb2,0x05,0xac,0x0c,0x8f,0x48,0x87,0xe9,0x75,0x78,0x03, +0x55,0xd2,0x54,0xfc,0x8b,0xef,0x81,0x76,0x0a,0xf9,0x8c,0x4f, +0xe6,0x33,0x2c,0xa7,0xb9,0x8d,0x8a,0xd9,0xac,0xae,0x1f,0x59, +0x5d,0x0a,0x5e,0x71,0x26,0x9e,0x36,0xa6,0x24,0x57,0xa8,0x2b, +0x2a,0x58,0x5d,0x3f,0xb2,0xba,0x9c,0x59,0x5d,0x31,0xe6,0x4a, +0x52,0x83,0xa2,0x86,0xbd,0x77,0xa9,0xfc,0x5e,0x4b,0xa6,0xd8, +0xce,0x2d,0x95,0xeb,0xb2,0xb4,0x61,0x65,0xf3,0x86,0xca,0x7e, +0x66,0x65,0xf3,0x58,0x59,0x1c,0x3a,0x53,0xab,0x7a,0xbd,0x3a, +0xe3,0x42,0x7f,0x47,0xa1,0xd7,0xef,0xba,0x4b,0x8b,0x23,0xc9, +0xc2,0x02,0x5a,0x99,0x94,0x58,0xa1,0x0e,0x5f,0xf1,0xe6,0x89, +0x4a,0x38,0x03,0xd5,0x79,0xaf,0xc3,0x97,0x4b,0xd4,0xe1,0xb8, +0x31,0x5e,0xe1,0x4d,0xb3,0x82,0x6f,0xa8,0x89,0x23,0x60,0x18, +0x0d,0xbf,0xe1,0xfa,0xc6,0xad,0xcf,0x3e,0x48,0xa8,0xda,0x5e, +0xb1,0x34,0x6d,0x2b,0x91,0xb2,0x43,0x68,0xf5,0xb7,0x79,0xaf, +0x12,0x6e,0x9b,0x25,0x09,0xfb,0x36,0x85,0xac,0x72,0xd9,0x48, +0x94,0x45,0x15,0x06,0x3f,0x2f,0x44,0x5c,0xd8,0x73,0x3e,0xa2, +0x39,0x45,0xd8,0x75,0x37,0xe8,0x5e,0x90,0xbc,0x88,0x14,0x1f, +0x18,0xef,0x17,0xeb,0x6b,0x79,0xd4,0xec,0x98,0xe9,0xf1,0x6b, +0x2f,0x6e,0xcb,0x91,0x47,0x3f,0x2d,0x22,0x79,0x6d,0xf3,0x30, +0xdc,0x95,0x15,0x9a,0x15,0x96,0x55,0x39,0x14,0xd0,0xfc,0xd3, +0x22,0xd2,0x36,0x1f,0x8b,0x4f,0x8b,0x48,0xde,0x4e,0x42,0xa7, +0x5d,0xbb,0x45,0xb3,0xc9,0x4e,0x4f,0x79,0x11,0xc9,0xfb,0xa4, +0xf7,0xa7,0x45,0xa4,0x9e,0xb3,0xbd,0x67,0x7b,0x3e,0x2d,0x22, +0x2d,0xe3,0x2b,0xcf,0x56,0x9c,0x2f,0x3f,0x4f,0xe0,0x05,0x2e, +0xa5,0x6f,0x40,0xb9,0x4e,0x8e,0x02,0xb5,0x82,0x7c,0xdb,0x85, +0x87,0x61,0xb9,0x11,0x33,0xae,0x67,0x4d,0xdf,0x31,0x11,0x5a, +0x5b,0x85,0x5f,0xbf,0xc0,0xb1,0x06,0xda,0x2b,0x37,0xe1,0x08, +0x5d,0x26,0x15,0x30,0xec,0xde,0x77,0x77,0xaf,0x3f,0xea,0xd5, +0x7e,0xa2,0xfb,0x41,0xbb,0xbc,0x4d,0x98,0x7e,0x6f,0xdd,0x6d, +0xe3,0xfb,0xe4,0xb5,0xb8,0x92,0xee,0xc3,0xe9,0x5e,0x38,0x7a, +0xe3,0x54,0xbd,0x8f,0x3e,0xc0,0x47,0x81,0x06,0xc1,0x93,0x38, +0x48,0xd3,0x0d,0x12,0x37,0xc6,0x6e,0x6a,0x4d,0x15,0x0e,0xdc, +0xdc,0xf5,0x70,0x57,0x2f,0xc1,0x32,0x6c,0xa4,0xd5,0xdf,0xa5, +0xbf,0x8f,0x7f,0x6f,0x7d,0x45,0xd8,0xbf,0x24,0x6c,0x68,0x31, +0x4a,0x34,0x13,0x0d,0x28,0x0c,0xe2,0x5f,0x83,0x7f,0x5c,0x17, +0xff,0xc5,0x2b,0x0e,0xc1,0x20,0x95,0x38,0x1c,0x84,0x4e,0x49, +0x1b,0x43,0x38,0x36,0x35,0xc0,0x86,0x1b,0x9a,0x32,0x52,0x8a, +0xc2,0x93,0x6a,0x62,0xe4,0x3b,0x5e,0x34,0x9a,0x08,0xa7,0x34, +0xf1,0x14,0x87,0x3e,0xb8,0x88,0x62,0xe4,0x47,0x88,0xe4,0xc0, +0x67,0x3a,0xfd,0x08,0xa7,0xa6,0x33,0x9e,0xe0,0x01,0x33,0xa8, +0x43,0x8c,0x73,0x9c,0x6b,0x1c,0x49,0x06,0x95,0x2b,0xa0,0x03, +0xeb,0x55,0xab,0xa5,0xeb,0x7c,0x6a,0x5d,0x52,0x7d,0x5c,0x3d, +0xb3,0x31,0x4e,0xa8,0xa9,0x85,0xaa,0xff,0xd8,0x98,0xc6,0x9a, +0xea,0x86,0x92,0x96,0xce,0xb5,0xd7,0x36,0x3f,0x30,0x5e,0x8f, +0x4b,0x98,0x6a,0x51,0xc2,0xc5,0x1b,0xca,0x2d,0x04,0x58,0xfd, +0x2d,0x7c,0x0e,0x63,0x9f,0xc1,0xd2,0xef,0x0d,0x7f,0xb7,0x81, +0xd1,0x6e,0xc7,0xc3,0x8e,0xef,0x3e,0x1e,0x41,0x2c,0x0f,0xf8, +0x05,0x31,0x3b,0xa2,0x3d,0x64,0x47,0x96,0xfd,0x63,0x47,0xce, +0xa7,0x9c,0x4f,0x3f,0x97,0x59,0x71,0xa0,0xf2,0x60,0x75,0x34, +0x19,0xb4,0x14,0x2f,0xd2,0xec,0x3a,0x25,0xd8,0xc7,0xed,0x5d, +0x10,0xba,0x72,0x87,0xb6,0x6e,0x8f,0xe1,0x4d,0xab,0x27,0x04, +0x8e,0xe2,0xbf,0x68,0xd9,0xcb,0x9c,0x77,0xc9,0x30,0x9c,0x40, +0x34,0x33,0x4d,0x2b,0xa2,0x71,0xf1,0x5e,0xa6,0x33,0x46,0x56, +0x69,0x36,0xad,0x62,0xa6,0x59,0x71,0x2f,0x8d,0x4a,0x01,0xdc, +0xc6,0x5d,0x49,0x0f,0xd4,0xc5,0xf1,0x3c,0x04,0xd4,0x29,0x49, +0x93,0x06,0x44,0x0d,0x1e,0x12,0xdb,0x95,0x66,0x9f,0x32,0x3e, +0x64,0xa5,0xe6,0x70,0x64,0x5f,0xf8,0xa6,0x4f,0xe1,0xdc,0xdf, +0x70,0x3f,0x55,0x14,0xbc,0x89,0x53,0xbf,0x72,0xfb,0xf4,0x03, +0x98,0xab,0x8a,0xcf,0xb6,0x2a,0x41,0x88,0x81,0x1c,0x42,0x26, +0xc0,0x49,0x09,0xa2,0xf4,0xf1,0x14,0x8f,0x8b,0xfd,0x63,0x0d, +0x61,0x66,0xbe,0x92,0x34,0x8e,0x9f,0x51,0xe3,0xf9,0x41,0x4d, +0xdc,0xc1,0xb5,0x65,0xa6,0x31,0x9a,0xb8,0x91,0xdf,0x1e,0xaf, +0xa4,0xac,0x30,0x53,0xe8,0xd1,0x2a,0xbb,0x4a,0xcb,0x0a,0x73, +0x1c,0xb9,0x17,0xa7,0xec,0xc7,0xaf,0x0f,0x75,0xbe,0x6f,0x85, +0x51,0x55,0x30,0xc2,0x28,0x4d,0xf0,0x40,0xa5,0xad,0xf8,0x8d, +0xe1,0xec,0x80,0x93,0x81,0x8c,0xc8,0x5c,0x30,0x16,0x60,0xd3, +0x65,0x88,0x4a,0x81,0x75,0xd9,0x29,0x81,0xc9,0x01,0xc9,0x81, +0x2d,0x65,0x82,0xc1,0x47,0xed,0x8f,0xda,0x6f,0x88,0xe4,0x87, +0x9f,0x53,0x9b,0xbe,0xed,0x37,0xb5,0xfa,0x9c,0x1d,0x85,0xdb, +0x26,0x03,0x06,0x6d,0x5b,0x09,0xce,0x93,0x1e,0xd1,0x67,0x1f, +0x1f,0xc3,0xf4,0x26,0x06,0x34,0x0b,0x04,0x07,0x1c,0xb5,0x01, +0xa7,0xae,0x9b,0x47,0xc4,0xaf,0x71,0x18,0xed,0x15,0x67,0x1b, +0x5d,0x13,0x17,0x4b,0x39,0xd2,0x62,0x5e,0xf4,0x64,0xea,0x99, +0xc9,0xf6,0x6c,0x38,0x32,0x94,0x44,0xcf,0x9b,0xc2,0x70,0x03, +0x1c,0x2e,0x2d,0x34,0xfe,0x5b,0xb5,0x87,0x3f,0x3f,0xb8,0x8b, +0xe2,0x67,0xb5,0xf3,0x1a,0xd6,0x77,0xc1,0x88,0xdf,0xef,0xc1, +0x98,0x2c,0x98,0x48,0x1a,0xf0,0x15,0x1f,0x9f,0x17,0x57,0x10, +0x5b,0x68,0x9e,0x24,0x98,0xe0,0x4c,0x93,0x05,0x38,0x19,0x3f, +0x2b,0xb5,0x17,0xaa,0x8b,0x4a,0x8a,0x0b,0x8b,0xab,0x56,0x5f, +0xdd,0xd2,0x6f,0xb2,0xc1,0x64,0xa1,0xf5,0x4c,0x97,0x42,0x66, +0x20,0x46,0xd4,0xbf,0xeb,0x7c,0x76,0xed,0xb9,0xfe,0xaf,0x96, +0xf0,0xb9,0x03,0x19,0x9c,0xa8,0x70,0xa0,0xd6,0x72,0x34,0x97, +0xb1,0xd3,0x17,0x55,0x3b,0x09,0x95,0xa5,0xc5,0xe5,0x39,0xe5, +0x44,0x32,0xee,0x11,0x93,0xf9,0xd2,0xb6,0xbc,0xb6,0xdc,0xeb, +0x04,0xc6,0x32,0x06,0x9f,0x9a,0x9d,0x94,0x9d,0x94,0x4b,0xa0, +0x8d,0x0b,0x44,0x5e,0x6f,0x96,0xe6,0x72,0xbd,0x1e,0xab,0xbb, +0xee,0x6f,0x08,0x9c,0xd4,0xa2,0x01,0xa5,0xd6,0x8d,0x2e,0xa5, +0xee,0xde,0x42,0xa5,0x7f,0x9d,0x53,0x85,0x33,0xc3,0x97,0xba, +0x0a,0x0f,0xf6,0xa1,0x2d,0x38,0xa2,0x7c,0x46,0x9e,0xbf,0xbd, +0xf0,0xd7,0x8e,0x3f,0x7d,0x60,0xb8,0x0d,0x91,0xaa,0x60,0x15, +0x5d,0x6f,0xa7,0xe9,0x83,0xaa,0x81,0xb9,0x0c,0xbe,0xa8,0x15, +0x7c,0xac,0x7a,0xde,0x46,0x40,0x0b,0x4d,0x69,0x7b,0x56,0x43, +0x7e,0x45,0xb1,0x5d,0x81,0xe0,0xe2,0x65,0xba,0x63,0x73,0xc8, +0xd6,0x2c,0xf3,0x7c,0x87,0x52,0x07,0x3f,0xf9,0x9d,0x41,0x57, +0x43,0xa7,0xed,0xc0,0x2f,0x77,0xa1,0x46,0x54,0x32,0x13,0x40, +0xad,0x24,0x98,0x93,0x0b,0x9f,0xd7,0xc0,0x58,0x17,0x98,0x15, +0x0c,0x1b,0xf7,0xa4,0x32,0xfb,0x36,0x37,0x01,0x27,0xa4,0xce, +0xc8,0x27,0x92,0x13,0xb2,0xaa,0x81,0x0f,0x3e,0x19,0x7c,0x2a, +0xe8,0xe4,0x65,0x36,0x7d,0xe9,0x65,0x18,0x95,0x00,0x23,0xe2, +0x89,0x46,0xb7,0x18,0x7c,0xad,0x45,0x0a,0xb4,0xe1,0xc5,0xbb, +0x52,0x30,0x15,0x77,0x80,0x2f,0xbf,0xcb,0xd9,0xc3,0xd2,0xce, +0x8a,0xf4,0x3b,0x34,0xd9,0xdb,0xaa,0x3a,0xed,0x8e,0x34,0x57, +0x5b,0xce,0xc5,0x5b,0x28,0x3d,0xe3,0xde,0x95,0x55,0xdf,0xb8, +0x66,0xdb,0x6c,0x55,0xa5,0x5e,0xd7,0x56,0xde,0x96,0xda,0x48, +0xea,0xf0,0x9d,0x94,0xce,0x4b,0x82,0x38,0x83,0x3e,0x84,0x30, +0x2d,0xde,0x6e,0xe4,0x7a,0x0c,0x7b,0xcc,0xe3,0x97,0x23,0x21, +0x4c,0x87,0xdb,0x74,0x48,0xfb,0xd0,0xfa,0x23,0x4c,0xcf,0xf3, +0x8a,0x83,0x74,0x90,0xe7,0x77,0x1e,0xdb,0x79,0x7c,0xe7,0xf1, +0x04,0x36,0x51,0x46,0xa7,0x03,0x9f,0x03,0x23,0xf2,0x09,0x3a, +0xf6,0x2b,0xfa,0x6f,0xb5,0x4b,0xa1,0x16,0xbc,0xe2,0x22,0xe6, +0xd2,0xb6,0x9f,0xab,0x7e,0xca,0x7a,0x41,0x5a,0xf0,0xfd,0xe0, +0xdf,0x03,0x8a,0xab,0x0c,0x15,0x84,0x6a,0xb9,0x2e,0x34,0x9e, +0x4d,0x1e,0x6f,0xee,0xde,0xb0,0x56,0x55,0x77,0x97,0xcf,0x3a, +0xb5,0xcd,0x5c,0xdc,0x76,0xa5,0x9b,0xdc,0x9f,0xf5,0xd7,0x7e, +0x79,0x67,0xfa,0x68,0xf3,0x75,0xf5,0xc1,0x2f,0x81,0x50,0x58, +0x0a,0xc1,0xb8,0x94,0xb7,0x1a,0x89,0xcb,0x18,0xac,0x67,0x70, +0xd9,0x77,0x24,0x2b,0xf8,0x86,0xd3,0xdd,0xad,0x13,0xa9,0xbd, +0x97,0x7d,0xc4,0x35,0x30,0xa5,0x60,0xd3,0x89,0x36,0x20,0x80, +0x9e,0xb8,0x46,0x5a,0x2c,0xad,0x81,0x4d,0x28,0xa0,0x85,0x19, +0x58,0xe0,0x02,0xf6,0xb1,0x3a,0x87,0xb7,0x1e,0xbd,0xcc,0x80, +0xcc,0x92,0x44,0x30,0xcb,0x05,0x9a,0x79,0xa4,0x4d,0x30,0x8a, +0xd6,0x8d,0xde,0x70,0x90,0x88,0x27,0x44,0x13,0xba,0x3f,0x29, +0x2a,0x79,0x6f,0x72,0x77,0x5b,0xdf,0xe3,0xb2,0xe7,0xa4,0x41, +0x52,0x61,0x44,0x86,0x0f,0x34,0xb7,0x37,0xb1,0x75,0xf0,0xaa, +0x74,0xaf,0xf0,0xcb,0xf3,0xf2,0x16,0x1a,0x5d,0xfb,0xf5,0x9b, +0x8d,0x09,0x86,0x9a,0xc1,0x26,0x69,0x2b,0x4e,0x1a,0xf2,0x2a, +0x53,0xe2,0x1a,0x52,0xd3,0x1a,0xd5,0xc5,0xf5,0xf0,0x0d,0x1f, +0xb1,0x7d,0xc7,0x26,0x1f,0xab,0xa6,0x10,0xa1,0xea,0x46,0xf1, +0x93,0xd4,0x47,0xa4,0x81,0x1f,0x34,0x03,0x2a,0xb3,0x0e,0x15, +0x18,0xcd,0x75,0xa1,0x8a,0xbc,0x71,0x3e,0x56,0x0e,0x18,0xb0, +0xc5,0x86,0x32,0x2d,0x34,0x1a,0x54,0x19,0xdc,0x9f,0xc8,0x8a, +0x54,0x71,0x2c,0x27,0x87,0xb1,0x58,0x42,0x25,0x33,0x2e,0xbd, +0x2d,0xa9,0x2d,0xa6,0xc9,0x28,0x5e,0xd8,0x3d,0xdd,0x14,0x55, +0x37,0x6a,0x36,0xb9,0x08,0x45,0xb5,0x79,0x2d,0x59,0x57,0x09, +0xac,0x91,0xfe,0xc4,0xc5,0x43,0xda,0x67,0x32,0x57,0x9f,0x9e, +0xd6,0xa0,0x2e,0xbe,0x87,0xe3,0xfc,0xe0,0xc8,0x59,0x14,0xca, +0x18,0xfa,0x04,0x3f,0x5c,0x8f,0x66,0xfc,0xf1,0x05,0xfb,0x35, +0x23,0x16,0x10,0xa6,0x83,0xd6,0x1e,0x5d,0x19,0x6d,0xaa,0x66, +0x7f,0x38,0x6a,0xbf,0xeb,0x24,0x39,0xab,0x8b,0xa1,0xec,0x69, +0x79,0x3d,0x2f,0xfb,0x61,0xac,0x7a,0xec,0xfd,0x8b,0xef,0x4f, +0x03,0x65,0xcd,0xe1,0x2e,0xb7,0x5c,0xb9,0x76,0xf6,0x2a,0x51, +0x2c,0x74,0xa5,0x15,0x38,0xa9,0x1a,0x37,0x27,0xe0,0xb8,0xbe, +0x54,0x61,0x1f,0x8c,0x75,0x83,0xad,0xee,0x30,0x89,0x48,0x13, +0x0e,0xd0,0xdd,0xa8,0xe6,0x85,0x6a,0xdb,0xf1,0xf3,0x0e,0x77, +0xe1,0x26,0xa8,0x94,0x82,0x46,0x1a,0xcc,0x20,0x72,0x46,0x9b, +0x77,0xb4,0x5f,0x5a,0x1a,0xc7,0x83,0x87,0x38,0xa1,0x6f,0x70, +0x02,0x9f,0x5e,0x93,0x54,0x1b,0x53,0xb5,0x3d,0x41,0xf0,0x43, +0x5e,0x17,0xc7,0xcc,0x59,0xdc,0xe4,0x28,0xb4,0xd4,0xd7,0x75, +0x95,0xf5,0x12,0xd8,0x89,0x1e,0xdc,0x7e,0x69,0xe6,0x76,0x51, +0x8d,0xdf,0x89,0x93,0xa7,0xcc,0xc3,0x2c,0x1c,0x95,0x67,0x28, +0xc0,0x55,0x10,0xde,0xff,0x3b,0x09,0x96,0x0d,0x41,0xb8,0x65, +0xf0,0x99,0x06,0x5c,0x45,0x21,0xaf,0x57,0xc0,0x6c,0x18,0x8d, +0xa3,0x7e,0x0e,0x84,0xc9,0x6c,0x88,0xa7,0x8b,0x77,0x28,0x5e, +0xde,0x87,0xd6,0x2b,0x51,0x55,0xad,0xdd,0x52,0xe9,0x27,0x58, +0x96,0x0c,0xa1,0x90,0xa4,0x0a,0xf3,0x15,0xa1,0x3d,0x83,0xb5, +0x3c,0xfc,0x3a,0x98,0x40,0x2d,0x76,0x25,0x75,0xa8,0x33,0xd3, +0x32,0x0a,0xf7,0x62,0x38,0x1f,0xcf,0xba,0xca,0x93,0x6b,0x49, +0x4a,0x6a,0x51,0x87,0x12,0xe9,0x8c,0x74,0x89,0x5f,0x58,0xea, +0xfd,0xb3,0x9a,0x38,0x9a,0xab,0xcf,0x90,0xf7,0xb9,0xe6,0xf3, +0x06,0x49,0x4a,0xb8,0x99,0x51,0x80,0x78,0xc5,0x0b,0x6a,0x3e, +0x53,0x7b,0xc5,0xfc,0x6d,0xa5,0xd6,0xc2,0xbf,0xef,0x3d,0xfb, +0xa5,0xef,0x2f,0x02,0xf6,0xfa,0x14,0x9c,0xd0,0x92,0x33,0x90, +0x63,0x4c,0x5e,0xe7,0xea,0x63,0xe5,0x10,0xa5,0xa3,0xe5,0xa4, +0x07,0x38,0xd3,0x94,0x0f,0x3c,0x74,0xb9,0x40,0x1d,0x8e,0xe0, +0x83,0x39,0xfc,0x94,0x10,0xa3,0xe5,0xa6,0x6a,0xc5,0x36,0x4a, +0x6f,0x06,0x1a,0x9f,0xc0,0x38,0x55,0x3c,0xb0,0x94,0xbd,0x6d, +0x01,0x8e,0x9a,0xa5,0x5b,0x6c,0x29,0x34,0x95,0x95,0x96,0xe4, +0x97,0x10,0xc9,0xa4,0x47,0x8c,0xe1,0x0b,0xab,0x0a,0x1a,0x0b, +0x5a,0x88,0xf8,0x41,0xfa,0x99,0xce,0x2d,0x5e,0x53,0xbd,0xb9, +0xe1,0x87,0xfb,0xdd,0x2f,0x0a,0x5f,0xb2,0x59,0x77,0xc5,0x4c, +0x34,0xe2,0x03,0x0d,0x2c,0xb7,0xac,0xdd,0xae,0xd3,0x69,0xd2, +0x67,0xdb,0x6f,0xe7,0x27,0x34,0xeb,0x77,0x6d,0xbf,0x63,0xba, +0xd1,0x6e,0x81,0x0b,0x2a,0x0d,0xc5,0x2e,0x9d,0x50,0xf6,0xa1, +0xe9,0x59,0xe7,0x23,0xcb,0x37,0xf6,0x30,0xcc,0x83,0x59,0xd1, +0xdf,0x15,0xeb,0x69,0x72,0x7d,0x7c,0x63,0x4c,0x93,0x71,0x8a, +0x10,0x88,0x5f,0x58,0xe3,0x78,0xdd,0xd9,0x8d,0xce,0x42,0x59, +0x4b,0x51,0x57,0x0e,0xeb,0xf3,0x02,0x53,0x0e,0xbf,0x3a,0x8c, +0x0e,0x11,0xa8,0xac,0xb6,0x29,0x3a,0xd4,0x6b,0xeb,0x24,0x9c, +0x3d,0x94,0x0d,0x7d,0x22,0xf7,0xa1,0xb1,0x0d,0x94,0x12,0xd4, +0x53,0xe0,0xab,0xcb,0x8c,0x8f,0x7f,0xa5,0x0a,0x63,0x78,0xe9, +0x0a,0x3e,0x95,0xf7,0xb6,0x76,0x9f,0x8f,0x68,0x49,0x15,0x76, +0xdf,0x0b,0xba,0x1f,0xd4,0x63,0xb7,0x4b,0x88,0x0b,0x92,0x13, +0xad,0x58,0x1e,0xb5,0x38,0x66,0x76,0xfc,0xf6,0xb7,0xf7,0x40, +0xa9,0x0f,0x78,0xab,0x3c,0xc1,0x4f,0xdf,0x7d,0x8b,0xab,0x41, +0x68,0x4e,0x48,0x76,0x48,0x76,0x6d,0x7f,0xf9,0xed,0xfc,0x9b, +0x16,0x99,0x42,0x88,0x81,0xcf,0x36,0x4f,0x8b,0x88,0xa4,0x3d, +0x89,0x7b,0x12,0x18,0x2c,0xe9,0xb5,0xee,0x31,0x6b,0x37,0xda, +0xe9,0x1d,0xe2,0x1b,0x1a,0xe8,0x72,0xd2,0xe5,0xa4,0xab,0x0c, +0x4b,0x6e,0x9c,0x65,0x97,0x0c,0x4b,0xfa,0xc4,0xa5,0x7c,0xc5, +0xb9,0xf2,0x73,0xa5,0x0c,0x96,0xbc,0xc7,0x89,0xd4,0xfd,0xc5, +0xf6,0xbf,0xcc,0x1e,0xd8,0x78,0x08,0xed,0x1b,0xfb,0xa7,0x56, +0xac,0x24,0xf8,0xf1,0x06,0x2d,0x5c,0x9f,0xbb,0x24,0x6d,0x59, +0x47,0x86,0x10,0xfe,0x6d,0xc0,0x6b,0x9f,0x47,0x04,0x6f,0xe0, +0x55,0xda,0xf4,0x3a,0xe7,0x5d,0xd2,0x7b,0xcb,0x58,0x21,0x72, +0x49,0xc8,0x32,0x87,0x15,0x6c,0x7e,0xfc,0xae,0x98,0xc4,0xe0, +0x61,0xc5,0xb6,0xee,0xeb,0x10,0xd7,0x8a,0x71,0xb7,0x4c,0xb6, +0x60,0x85,0x7c,0x3b,0x61,0x05,0x27,0xb6,0xf1,0xb0,0xb5,0x90, +0x1e,0x0d,0x3a,0x12,0x2e,0xa7,0xf2,0xfb,0x02,0xbb,0x40,0x01, +0x72,0x90,0xfb,0x2b,0x99,0x17,0xd3,0x2f,0xa4,0x13,0xc9,0x51, +0x87,0xb6,0x05,0x3c,0x72,0x68,0xf1,0x28,0x6a,0x10,0xec,0x4b, +0xd6,0x34,0x5b,0xe5,0x10,0x45,0xc9,0x49,0x6a,0xe9,0xba,0xdd, +0x4d,0x3f,0x30,0xdf,0x5e,0xe8,0xcd,0x7d,0xd0,0xd0,0x5a,0x43, +0xa4,0x36,0x1c,0x43,0x1f,0xc1,0x89,0x0d,0x3c,0x9e,0x70,0xa4, +0x70,0x62,0x39,0x9e,0xe0,0xc4,0x9b,0x2e,0xd4,0xb4,0x74,0x7e, +0x9b,0x61,0x9e,0xaf,0x8b,0x30,0xe0,0xff,0x9d,0xed,0x80,0x3b, +0x19,0xbc,0x7f,0x86,0x3e,0x2d,0x79,0x5c,0xdd,0x5e,0x16,0xd6, +0x28,0x18,0x7b,0xac,0xf7,0x5c,0xe7,0x47,0xfe,0x1e,0x83,0x2b, +0x68,0xab,0xb4,0xec,0x96,0xd1,0x16,0x69,0x86,0x15,0xfc,0x97, +0x37,0x33,0xc2,0x91,0x6e,0xe8,0xed,0x94,0xc6,0x34,0xf6,0xd1, +0xce,0xbf,0xaa,0xaa,0x7e,0x60,0xfc,0x7a,0x47,0x2f,0xec,0xb8, +0xc0,0x55,0x2d,0x92,0x65,0xef,0xa4,0x99,0xac,0xe6,0x77,0xd4, +0xe1,0x98,0x6a,0xe3,0x1e,0xa2,0xfc,0x9d,0xa2,0x96,0x9a,0xc3, +0xbd,0x0e,0x5e,0x3c,0x27,0x4d,0xa2,0xe2,0xe7,0xd2,0x62,0xbc, +0xcf,0xa3,0x4f,0x24,0xce,0xd2,0x47,0x41,0xad,0xce,0xe1,0x36, +0x4c,0xc9,0x84,0x25,0xa7,0xc1,0x40,0x85,0xb1,0xe6,0x24,0x34, +0xbc,0x8e,0x5a,0x20,0x20,0xad,0x60,0x14,0x9d,0x87,0x11,0x06, +0x30,0x7b,0x1f,0x6c,0x26,0xdf,0xc3,0x5d,0x8a,0xf1,0x58,0x0f, +0xf1,0x6c,0xa8,0xb7,0x50,0x33,0x51,0xad,0x93,0xc7,0xdf,0x86, +0xd6,0x6b,0x7a,0x87,0x72,0xac,0xb6,0x63,0xaf,0x05,0xdf,0x39, +0x94,0x63,0xf5,0x02,0x64,0xe0,0x00,0x3e,0xe2,0xe1,0x22,0xa4, +0x53,0x86,0x8f,0x6c,0x60,0x09,0xb3,0xd0,0x2b,0x14,0x4d,0xd4, +0x1e,0x0c,0x75,0x50,0xd7,0x11,0x74,0x37,0xa0,0xa9,0x03,0x9c, +0x84,0x5a,0xbe,0x70,0xa2,0x3d,0xd8,0xea,0xa0,0x91,0x23,0x18, +0x6d,0x40,0x47,0x07,0xb8,0xc2,0xca,0x06,0xd7,0x48,0x97,0x29, +0x7c,0xd6,0xc6,0x48,0xd9,0xd2,0xef,0xa0,0x01,0x93,0xb1,0x01, +0xbe,0x60,0x0a,0x2e,0xec,0x58,0xe8,0xd1,0xd0,0x63,0x44,0xfc, +0xdc,0x52,0x12,0xf8,0xc8,0xe3,0x91,0x27,0x22,0x4f,0x5c,0x36, +0x11,0xe0,0xab,0x6c,0x20,0xb9,0xbf,0x57,0x1c,0x6b,0x15,0x3c, +0xf6,0xbb,0x1f,0x70,0x3b,0x48,0x0a,0x15,0x4b,0x29,0x1a,0xe1, +0x62,0x30,0xe2,0xc5,0x9f,0x07,0x77,0xd2,0xd7,0x60,0xd1,0x80, +0x16,0x2f,0xfe,0xb9,0xfb,0x35,0xa2,0x07,0x9f,0x90,0x95,0x90, +0x7f,0x25,0xdb,0x2a,0x41,0x88,0x0e,0x88,0xf4,0xdb,0xe5,0x47, +0x70,0x09,0x17,0x9f,0x1d,0x9b,0x7d,0x25,0xd7,0x26,0x51,0x08, +0x5c,0x65,0xbe,0x44,0x4f,0xbf,0xd4,0x59,0x48,0xcf,0x4c,0xcd, +0x4c,0xc9,0x22,0x92,0x72,0x47,0xad,0x68,0xdd,0xcc,0x4b,0xd6, +0x90,0x4c,0x5f,0x80,0xf6,0x2a,0x1e,0xb5,0xd9,0x8c,0x1b,0x7a, +0x72,0x18,0xb9,0x14,0xb5,0x5f,0xcb,0xdb,0x2b,0xe2,0xbf,0x29, +0x44,0x34,0x61,0xc4,0x3d,0x38,0xdb,0x8c,0x67,0xaf,0x9b,0x6c, +0xc3,0xa3,0xb6,0x70,0x54,0x07,0x83,0xec,0x20,0x68,0x03,0x9e, +0xb7,0x11,0x6f,0xb7,0xc8,0x7e,0x84,0x8e,0xc0,0x74,0xee,0x4a, +0x13,0x5c,0x89,0xd4,0x0c,0xee,0xb2,0x3e,0x54,0x92,0x6e,0xd0, +0x02,0x98,0x9c,0x0b,0x1b,0xe2,0x60,0xb2,0xf9,0x15,0x21,0x0a, +0x67,0x07,0xa1,0xa1,0x1f,0x7e,0x43,0x4e,0x73,0x56,0xfb,0x2c, +0x0e,0x58,0x1e,0x8c,0x67,0x6d,0x24,0x19,0xf0,0x59,0xc9,0xef, +0x55,0x87,0x3b,0x04,0xaf,0x7d,0x9e,0x51,0xee,0x07,0xc8,0x86, +0xfb,0xf4,0x30,0x7c,0x15,0x05,0x13,0x76,0xc1,0x58,0xcb,0x03, +0x42,0x2a,0x8e,0x8a,0xc3,0x09,0x97,0xf1,0x2b,0x22,0x7e,0x86, +0x27,0xe5,0xad,0xf5,0x8f,0x38,0x16,0xd7,0xf3,0xf2,0x89,0xec, +0x05,0x5c,0x5d,0x52,0x42,0x9d,0xba,0xb8,0x5c,0xf2,0x95,0xf6, +0xf1,0xe2,0x7c,0x06,0x97,0xf1,0xe3,0x23,0xf8,0xc8,0xe1,0x47, +0xfc,0x82,0xc2,0xc7,0xf5,0xf8,0x91,0x31,0xa1,0x64,0xd1,0x83, +0x1e,0x4e,0x3a,0x7a,0xea,0xc0,0xa1,0xa1,0x28,0x3f,0x2a,0x30, +0xa2,0x15,0x47,0x80,0x89,0x39,0x9a,0xe0,0xe7,0x56,0xc0,0x71, +0x07,0xf0,0x0b,0x2f,0x9c,0xb5,0x16,0x95,0x2b,0xec,0x84,0xbe, +0xdf,0x32,0x3f,0x45,0x82,0x49,0xe8,0x10,0xcf,0xc9,0x51,0x7e, +0xce,0x1c,0x53,0xbb,0x85,0xab,0x4b,0xcb,0x95,0x20,0x4e,0x4c, +0xa7,0x86,0x1e,0xcb,0xfd,0x74,0xf7,0x10,0x29,0x9e,0x0f,0x3f, +0x12,0x76,0x74,0xe7,0x91,0x04,0x73,0xe1,0xe7,0xbc,0x6b,0x99, +0xfd,0xb9,0x61,0x38,0xd2,0x46,0x7b,0x91,0x76,0xa9,0x13,0xc3, +0x33,0x30,0xba,0x07,0xc6,0xc2,0x71,0x55,0x88,0xb7,0xc0,0x54, +0xde,0xe3,0xa4,0xcf,0x09,0x3f,0x35,0xaf,0xbd,0x9e,0x7b,0x9d, +0xf6,0x11,0xd1,0x89,0xef,0x4d,0x7c,0x5c,0xd8,0x5e,0x44,0x5a, +0x07,0xdf,0xd3,0x0e,0x45,0x1b,0x4c,0x96,0x1e,0xcf,0xe2,0xe2, +0xcd,0x94,0xbe,0xe3,0xaa,0x93,0x92,0x1a,0xd4,0x15,0x3c,0x9e, +0x61,0x33,0xea,0x50,0x24,0x75,0x4d,0x73,0x49,0x75,0x4d,0xae, +0x28,0xc9,0xad,0x49,0x6a,0x22,0x2f,0x9b,0x31,0x95,0x8b,0x4d, +0x8f,0x49,0xbf,0x92,0x4a,0x72,0xde,0x72,0x97,0xcf,0x9e,0xba, +0x78,0x5c,0x0d,0x26,0x2f,0xcf,0xaf,0xc7,0xaf,0x9e,0x1d,0xbc, +0x18,0x7d,0xf6,0xe0,0x3e,0x95,0xe8,0xfd,0x4a,0x47,0x1b,0xc0, +0xb5,0x19,0x5d,0x61,0x46,0xee,0x4d,0x48,0xd3,0xeb,0xbe,0x09, +0x49,0x6d,0x98,0x24,0x0b,0x7c,0xda,0x2d,0xe3,0x2d,0x43,0xf1, +0x22,0x0c,0x76,0xa2,0x06,0x06,0xdb,0x82,0x09,0xe7,0xeb,0x64, +0xeb,0x83,0x23,0x9c,0x32,0x6d,0x05,0x98,0xd8,0xd1,0xd8,0x90, +0xd4,0xcd,0x44,0x6d,0x36,0x17,0x72,0x21,0x3a,0x7c,0x5f,0x48, +0x64,0x90,0x0a,0x2e,0xb0,0x85,0xcf,0xb9,0xdd,0x81,0xbb,0x02, +0xc3,0x77,0xb6,0x45,0x34,0xee,0xa9,0xdd,0x63,0x19,0xbc,0x2d, +0x62,0xc3,0x81,0x74,0x6b,0xe1,0x97,0xa4,0xa7,0x39,0x7d,0x95, +0x0d,0xbb,0xea,0xc2,0x9b,0x76,0x12,0x1f,0xf1,0x3a,0x2d,0xcd, +0x29,0xac,0x48,0x2f,0x77,0xcc,0x15,0xf6,0xf8,0xf9,0xb8,0x06, +0xec,0x24,0x58,0x73,0x87,0xe6,0x05,0x16,0xf8,0xa4,0x7a,0xd6, +0x65,0x0b,0xbb,0x4b,0x77,0x54,0x05,0x30,0xdd,0x31,0x51,0x3a, +0x43,0xaf,0xfd,0x58,0x08,0xc3,0xe3,0xe1,0x0b,0x72,0xa3,0x1d, +0x53,0xb8,0xd8,0x92,0x2b,0x65,0x97,0x2a,0x8c,0xaf,0x08,0xa1, +0xa8,0x6c,0x8c,0x5f,0xae,0x5f,0xdb,0xe4,0x26,0x64,0xe5,0x65, +0x16,0xa6,0x15,0x27,0xac,0xcc,0xd5,0xae,0xd5,0xb3,0x36,0xde, +0x62,0xbd,0xd0,0xb6,0xc4,0x42,0xf8,0xa1,0xf9,0x76,0x7b,0x6b, +0x6f,0xa3,0x71,0xbf,0xc5,0x63,0x9b,0xc2,0x6e,0x61,0x43,0x83, +0x71,0x8b,0x63,0x17,0xc1,0xcf,0xa1,0x93,0x9e,0xbb,0x74,0xee, +0xd2,0xd9,0x4b,0x04,0x56,0xb0,0x51,0x1c,0x19,0xbc,0xc4,0x56, +0xdb,0xe5,0x76,0xf0,0xf3,0xa8,0x5f,0x89,0xe4,0x89,0xcf,0x69, +0x42,0x72,0x62,0x7a,0x7c,0x3a,0x81,0xb9,0x5c,0xa4,0x5b,0xb0, +0xaf,0x57,0x90,0x4b,0x92,0x7b,0xbc,0xff,0x15,0x66,0x20,0x2e, +0x8b,0xb7,0xa9,0x83,0x68,0xdb,0x80,0xae,0x9d,0xb0,0x0e,0x96, +0xe2,0xba,0x26,0x6b,0x3b,0x5c,0x84,0x4b,0x61,0x91,0x19,0x8f, +0x36,0x65,0x74,0xd7,0x75,0xf3,0xdf,0xdd,0xdb,0x9c,0x02,0x84, +0x6a,0xd3,0xc6,0xc5,0x99,0x3a,0x04,0x2f,0x82,0x1f,0xbd,0xb4, +0x2e,0xcf,0xe8,0xce,0xfa,0xa2,0xab,0x82,0xf1,0x8d,0x80,0x6b, +0x7b,0x6e,0x12,0x1d,0x6e,0xb7,0x96,0xef,0xfa,0x35,0x3a,0x05, +0x56,0xc2,0xd3,0xbb,0x75,0xaf,0x62,0x5f,0x11,0xf1,0x8c,0x2d, +0xdd,0x34,0xed,0x0e,0x0f,0x8b,0x37,0xd1,0x3b,0x30,0x6a,0x13, +0x2f,0x55,0x49,0xaf,0xa8,0x7f,0xb4,0xf7,0x21,0xaf,0x68,0x02, +0xed,0x30,0xac,0x0d,0x87,0xc1,0xe8,0xc7,0xad,0xe8,0x6c,0x75, +0x07,0x47,0xe3,0x38,0x4b,0x18,0x87,0x37,0x78,0xa7,0x68,0xc7, +0x43,0x2e,0x47,0x62,0x4c,0x84,0x9f,0x93,0x61,0x54,0xde,0xdd, +0x2c,0x22,0xde,0x66,0xe8,0x0b,0xbf,0x97,0xd4,0x01,0x18,0x60, +0xeb,0x68,0x87,0x32,0x0e,0x03,0xb1,0x83,0xe2,0x2c,0xd3,0x01, +0x98,0xa2,0x0e,0x11,0x38,0xd1,0xe6,0x3e,0xb3,0xd0,0x38,0xc6, +0xdb,0x68,0xb5,0xb9,0x5a,0x8e,0xd5,0xb7,0xbd,0xb9,0xcd,0x67, +0xdf,0xc9,0x99,0x40,0xf9,0x0b,0xd7,0x0c,0x60,0xfe,0x24,0xc8, +0xe5,0x2e,0x77,0x28,0xe1,0x48,0x71,0x0d,0xdd,0x88,0x51,0xf7, +0xe5,0x40,0x01,0xdf,0xd0,0x74,0xb3,0xb4,0xd5,0x57,0x8c,0x1a, +0xe3,0x85,0xe8,0x9e,0xf0,0x57,0xe1,0x9d,0x04,0xac,0x51,0x9f, +0xc6,0x76,0x5c,0xe9,0xbd,0xd0,0xe1,0x74,0x59,0x38,0x6a,0x78, +0xd8,0xec,0x80,0x0d,0x51,0x8c,0xdc,0x47,0xf1,0xdc,0x77,0x70, +0x8e,0xc9,0x4d,0xd8,0x3a,0xfa,0xb7,0xa6,0xf1,0x7f,0x34,0x79, +0x71,0xe3,0xdf,0x33,0xa9,0xe7,0x96,0xa5,0x9b,0x70,0xd6,0x96, +0x3c,0x2b,0x01,0x26,0xdf,0xfc,0x78,0xa7,0xe8,0x7b,0x72,0x81, +0xcb,0x5b,0x0c,0x13,0x74,0x61,0xbe,0x76,0x6e,0x9b,0x80,0xcb, +0x1f,0x6a,0x5c,0x73,0x7e,0x48,0xa4,0x65,0xa8,0x4b,0x13,0xac, +0x12,0x36,0x5e,0xd2,0xbf,0x9a,0x28,0x1c,0xba,0xb6,0xe7,0xc1, +0xde,0x56,0x82,0xce,0x6c,0x34,0x32,0xbf,0x8f,0xf9,0x70,0x16, +0x86,0xc9,0x81,0x20,0xa6,0x45,0xcf,0xdd,0xb9,0x9c,0x88,0xf3, +0x80,0xd9,0x13,0x71,0x74,0x1b,0x3f,0x57,0x52,0xd0,0x38,0x0b, +0xd9,0xdf,0xba,0x26,0x31,0xb1,0x46,0x5d,0xdc,0x65,0x2a,0x45, +0xf2,0x38,0x5f,0x0c,0xa7,0xd2,0x37,0x1d,0xe2,0x37,0x3c,0xfe, +0x2c,0x35,0xc9,0x21,0x74,0xe7,0xa3,0xda,0x02,0xd9,0x0b,0xf9, +0x91,0x1c,0x0d,0x99,0xfd,0x5f,0x30,0x26,0x49,0x8d,0x32,0xcc, +0xd2,0xa4,0x38,0xff,0x47,0x98,0xcf,0xe1,0x7c,0x9c,0x41,0x61, +0xfe,0x7c,0x9c,0xcf,0xbe,0xff,0x86,0x88,0x14,0xfe,0xdb,0xc4, +0xdd,0x0e,0x7c,0x13,0x02,0x4a,0xc1,0xc9,0xec,0x23,0xaf,0x74, +0xe2,0x84,0x7e,0xe3,0xc7,0x44,0x8f,0x33,0x59,0x87,0x9f,0x19, +0xe1,0x65,0xb3,0x14,0x66,0x6a,0x86,0x67,0xbf,0xca,0xbe,0x91, +0x4f,0x60,0x1b,0x4c,0xa5,0x79,0x66,0x5d,0xce,0x6f,0x3d,0x08, +0x2a,0xb8,0xd7,0x15,0x6d,0xb5,0x79,0x9d,0x04,0x75,0xa4,0x8f, +0x94,0x21,0x83,0xaa,0xd4,0xb4,0x6a,0x75,0x68,0x96,0x94,0x25, +0xae,0x1b,0x26,0x40,0xfc,0x56,0x9c,0xc5,0x8b,0xa7,0x6c,0xe8, +0x27,0xef,0xa0,0x7a,0x63,0xec,0xc2,0xf9,0x7c,0x9c,0xb9,0x92, +0x15,0x8c,0xa7,0x3d,0xb0,0xdb,0x98,0xc3,0x8d,0x4b,0x98,0x5d, +0x69,0x83,0x78,0x0e,0xe3,0x35,0x28,0xc4,0x5b,0x62,0xbc,0x9c, +0xa7,0x32,0x97,0xda,0x55,0xd9,0x14,0x5b,0xe5,0x7b,0xbb,0x0a, +0xcd,0x3b,0xda,0xbd,0xeb,0x3d,0x09,0xac,0x7d,0x48,0x7b,0x1c, +0xfa,0x4c,0x6a,0x4c,0xeb,0x2a,0x04,0xc7,0x5e,0xe3,0x0e,0x93, +0x46,0x39,0x2b,0xa4,0x3b,0xbd,0xd3,0xd6,0xd0,0x9b,0xdf,0x65, +0x9f,0x2f,0x04,0x5b,0xdb,0x19,0xeb,0x3b,0x12,0x10,0x4f,0x50, +0x8f,0xe8,0x0b,0x25,0x0c,0x70,0x19,0xe1,0x68,0x5e,0x3b,0x33, +0xe2,0xa9,0x1a,0x34,0x70,0x4d,0x71,0x29,0xd5,0xea,0x37,0x79, +0x93,0x14,0xa5,0x79,0x4c,0x5d,0x4f,0x53,0x3c,0xa5,0xdb,0x71, +0x2b,0x5e,0x18,0x0c,0xef,0xe9,0x15,0x5d,0x8c,0xfa,0x14,0xe1, +0x4c,0xd6,0xa4,0x1b,0xec,0xb3,0x6e,0x7a,0xf7,0xba,0x76,0x3b, +0x16,0x37,0x09,0x16,0xf5,0x7a,0x75,0xdb,0x8a,0x89,0x18,0xc8, +0x18,0x10,0x5a,0xc2,0x29,0xb0,0xe4,0xfa,0xf1,0x14,0x65,0x0f, +0x2e,0x8c,0x26,0x4b,0xbf,0xfe,0x45,0xad,0xea,0x75,0x9b,0xb6, +0x96,0xc8,0x81,0x7c,0xbc,0xae,0x39,0x75,0xd9,0x13,0xa4,0x52, +0x38,0x7d,0xf0,0x67,0x37,0xa8,0x94,0xfc,0x69,0x9e,0x21,0x78, +0xe2,0x67,0xd6,0x48,0x74,0x34,0xe4,0x4c,0x70,0x8f,0x29,0x26, +0xb0,0x97,0x24,0xf0,0x70,0x79,0x22,0xfb,0x7d,0x02,0xba,0x30, +0xe0,0x6e,0xa6,0x70,0xa6,0x6d,0xd2,0xa8,0x07,0x7a,0xda,0xf8, +0x16,0x7d,0xf8,0x4d,0xa7,0x8c,0x8e,0x5b,0xa8,0xb9,0x7b,0xd9, +0xef,0xb0,0x0e,0x4e,0x35,0x11,0xea,0x72,0xca,0x73,0x0b,0x0b, +0xf6,0xe1,0x64,0x9f,0x05,0xba,0xd3,0x9a,0x5d,0x99,0xa1,0x03, +0xb3,0x78,0xb0,0x81,0x44,0x55,0x98,0xc2,0x2b,0x76,0xe0,0x6a, +0x8a,0xc1,0x75,0xdb,0xab,0xdd,0xae,0x12,0x13,0xce,0xdb,0x7a, +0x8b,0x2b,0xfa,0x38,0x26,0x5a,0x33,0xce,0x57,0x0d,0x9f,0x97, +0x96,0x7c,0xcb,0x26,0x5e,0xc5,0x4a,0xe0,0x7d,0x61,0xbb,0x0b, +0x19,0x4c,0x3b,0x44,0xc3,0x6e,0x05,0xf5,0xf9,0x76,0x3b,0x06, +0x0b,0x45,0xe6,0x79,0x06,0x19,0x7a,0x04,0xfe,0x78,0x4d,0x9d, +0x21,0xab,0x96,0xc7,0x74,0x86,0x0a,0x1e,0x72,0x55,0x49,0xc9, +0x55,0xea,0x70,0x12,0x3b,0xb0,0xff,0xea,0x7b,0xb0,0xb7,0x9f, +0xcb,0x8b,0x82,0x03,0x65,0xea,0x96,0x8d,0xe7,0x69,0x53,0xbc, +0x82,0xaa,0x7c,0xa2,0xad,0x92,0x13,0x34,0x51,0x74,0xe8,0x04, +0x07,0x1e,0x8d,0xb5,0x28,0xda,0xd7,0x81,0x3d,0x87,0xf6,0x2b, +0x28,0xd8,0x3b,0xa1,0x3d,0x07,0x3f,0x62,0x20,0xf5,0xca,0x33, +0xcf,0x73,0x49,0xf2,0xf7,0x14,0xea,0x23,0x5a,0x83,0xca,0x03, +0x08,0x08,0x03,0xb4,0xd2,0xb9,0xc2,0x38,0xd7,0xa4,0xb9,0x50, +0x08,0x6e,0x77,0xeb,0x74,0x6f,0x20,0xd2,0x53,0xb4,0xa6,0xcd, +0x2d,0x15,0x9d,0xe9,0xdd,0xd6,0x69,0x42,0x98,0x85,0x8f,0xa5, +0x9d,0x13,0x81,0x86,0x24,0x1a,0x74,0xec,0x7c,0xb6,0xfa,0x7b, +0x63,0x1c,0xce,0x5b,0x27,0xed,0xee,0x53,0x83,0xd3,0x5c,0x75, +0x42,0x42,0xa9,0xfa,0x75,0xde,0x3c,0x41,0x69,0x2d,0x53,0xf9, +0xa2,0xe2,0x01,0xf5,0xda,0xb4,0x5c,0x07,0x67,0xea,0x92,0x5a, +0x6c,0x31,0x83,0x06,0x3e,0xd3,0x19,0xa6,0xdc,0xfd,0xeb,0x41, +0xe1,0x5b,0x95,0x0b,0x5c,0xce,0x52,0x20,0x3a,0x30,0x63,0x83, +0x2c,0x6a,0x9a,0x8f,0x16,0x5c,0x77,0x7d,0x40,0xa4,0xf7,0x3b, +0xa8,0x05,0x9c,0x6d,0xe7,0xe5,0x93,0x54,0xd4,0x12,0xfe,0x68, +0xe3,0x07,0x23,0x97,0x33,0xd8,0x72,0x8c,0x01,0xa2,0xb9,0x52, +0x86,0x2c,0x52,0xbf,0xfe,0x2f,0x89,0x32,0x67,0x12,0x25,0xcd, +0xdd,0x44,0xc1,0x0b,0xd4,0x70,0xca,0x0a,0xd9,0x7c,0xde,0xe2, +0xaa,0xe3,0xe5,0xbf,0x85,0xe0,0x09,0xa9,0x89,0x87,0x5b,0x62, +0x13,0x95,0xd4,0xda,0x18,0x11,0x41,0x3d,0x9c,0x45,0x51,0xed, +0x27,0xf9,0xc4,0xe9,0xc5,0xf9,0xb4,0x03,0x8f,0x99,0xf3,0xf0, +0xb7,0x0d,0x05,0x35,0x26,0x80,0x72,0x0c,0xcf,0x04,0x06,0x85, +0xcc,0x20,0x1b,0x4f,0xe2,0x53,0x1e,0xcc,0x3f,0xed,0x56,0x4d, +0x86,0x15,0xac,0x15,0x04,0x02,0xa9,0xa8,0x8c,0xe3,0x9f,0x82, +0x66,0x2b,0x6a,0xfe,0x61,0x31,0x0d,0x35,0xac,0x40,0x63,0x2d, +0x8e,0x93,0x94,0x61,0xdc,0x32,0xd4,0xb4,0x04,0x4d,0x9c,0xdb, +0x0e,0x73,0x61,0x4e,0x1b,0xce,0x79,0xc5,0x8b,0x5f,0x8b,0x12, +0xf5,0xd1,0x5d,0xad,0x8d,0x6a,0x1b,0xf3,0xd9,0x08,0x7f,0x7d, +0xff,0x97,0x07,0x79,0x6f,0xd8,0x00,0x67,0x2d,0xfb,0x43,0x07, +0x54,0xd6,0xe7,0xc9,0xa1,0xb2,0x1e,0x2f,0xbf,0xee,0xf9,0x80, +0xa0,0x15,0xee,0xa2,0x56,0xf0,0xa4,0x95,0x1f,0x9c,0xb8,0x9d, +0xe2,0x67,0x9b,0xe1,0x33,0x1e,0x6c,0xf1,0x33,0xaa,0x03,0x9f, +0xdd,0xe3,0xc4,0x0d,0x52,0x9d,0xdc,0xde,0xef,0xb9,0x9a,0x84, +0xa1,0xf6,0x5a,0xca,0xed,0x1d,0x39,0xd4,0xde,0x31,0x38,0x45, +0x5b,0x6e,0x6f,0x37,0x57,0x15,0xf7,0xa9,0xbd,0x3b,0xe5,0xf6, +0x56,0x0e,0xb5,0xb7,0x55,0x6e,0xef,0x7a,0xb9,0xbd,0x63,0x7e, +0x82,0x31,0x9c,0x14,0xe6,0x46,0x6f,0x23,0xbf,0x99,0x83,0xf1, +0xc0,0xd3,0x7b,0xc8,0xeb,0x70,0x10,0x1d,0x43,0x61,0xcc,0x7c, +0x1c,0xc3,0x29,0x2b,0xc2,0x1b,0x29,0xac,0x06,0x93,0x4e,0x34, +0x01,0x0d,0x30,0xee,0x40,0x63,0x98,0x03,0x3e,0x5d,0x68,0xcf, +0x67,0x37,0xa6,0xb5,0xc6,0x55,0x99,0x27,0x08,0xfb,0x1c,0xc2, +0xcc,0xfd,0x2d,0x09,0x2e,0xe4,0x32,0x1b,0x53,0x1a,0x12,0x9b, +0x2d,0x93,0x04,0x77,0x1c,0x65,0x80,0x74,0xb9,0x66,0x99,0x9d, +0x90,0x99,0x97,0x96,0x9f,0x9c,0x4b,0x24,0x45,0xf7,0x80,0xe8, +0xd0,0xcd,0x0f,0xf6,0xef,0xa0,0x7f,0x80,0xab,0x62,0x32,0x26, +0xc9,0xa1,0x41,0xdc,0xe4,0xd0,0x20,0xb3,0xc5,0x42,0x98,0xcd, +0x41,0x10,0x1e,0xa1,0xec,0xe5,0xba,0x38,0x87,0x47,0x5d,0x74, +0xa1,0xac,0x3e,0x5d,0xd4,0xe0,0xcd,0x46,0xe2,0x6a,0xd4,0x85, +0xd5,0x8c,0x9e,0x5d,0x50,0xbc,0xa4,0x0e,0x68,0xbd,0x05,0xd5, +0x71,0x38,0x92,0x72,0x4b,0xa1,0xb8,0xa8,0xb8,0xa6,0xb0,0x99, +0x48,0xe5,0xbd,0x8a,0x69,0x7c,0xf1,0xdd,0xbc,0x17,0xa9,0x6f, +0x89,0x82,0x29,0x66,0x8a,0xff,0xe1,0x62,0x5b,0x2f,0xb7,0x9f, +0xef,0x34,0xba,0x24,0x1c,0x35,0x89,0x36,0x8d,0x32,0x27,0xb8, +0xc7,0x10,0x7c,0x38,0x3b,0x5c,0xb6,0x12,0xa7,0x31,0x53,0x34, +0xa2,0xd2,0x52,0xa8,0xaa,0xa8,0xac,0x2f,0xbb,0x4a,0xf0,0x43, +0xcf,0x0d,0xc0,0xad,0x3d,0xa2,0x9f,0x34,0x87,0x2f,0x1a,0xc8, +0xbb,0x9d,0xfe,0x80,0x88,0xe3,0x38,0x29,0x44,0x56,0xc1,0xa5, +0x80,0x58,0xca,0xea,0x76,0xfb,0x3f,0x6d,0xb4,0x66,0xe6,0xe7, +0x54,0x65,0x35,0x11,0xa9,0xa0,0x53,0x31,0x8f,0xcf,0xbe,0x93, +0xf1,0x2c,0xfe,0x35,0x81,0x5b,0x92,0x01,0x0d,0x0b,0xa8,0x8b, +0x68,0x0a,0x2e,0x0e,0x56,0xc9,0x2e,0xf5,0xcb,0xb2,0xcf,0x76, +0x4f,0x54,0x81,0x81,0xc5,0xed,0x30,0x69,0x03,0xa4,0x32,0x75, +0x18,0x9b,0x1c,0x9b,0x7a,0x39,0x99,0x40,0x73,0xe3,0xe0,0x1c, +0x7b,0xe8,0xe4,0xa2,0x23,0x0f,0xee,0x8e,0x8a,0x20,0xe8,0x82, +0xa9,0x3a,0x38,0xa9,0xfd,0x0d,0x27,0xee,0x67,0x38,0xdb,0x49, +0x5a,0x5e,0xc7,0x8b,0xcb,0x97,0x51,0x47,0x69,0x79,0x3d,0x7b, +0x58,0x4a,0xed,0xa4,0xe5,0x4d,0xbc,0x38,0x06,0x17,0xd0,0x0a, +0x8f,0x42,0xdb,0x6c,0xbb,0xea,0x3c,0x21,0xb0,0xd9,0xb7,0xc9, +0xa3,0x8c,0xc0,0x3c,0xe9,0x6b,0xba,0xf8,0xd2,0x92,0xb8,0x35, +0xa9,0x7d,0xb9,0x2d,0xa5,0xa5,0xf5,0xa4,0x02,0x7f,0xe4,0x53, +0x92,0x12,0x93,0xe2,0x93,0x08,0xac,0xe4,0xca,0x13,0xe3,0x8b, +0xd5,0x6b,0x79,0x9b,0x2b,0x4a,0x26,0xb8,0x8d,0x0f,0x3d,0x72, +0x3e,0x53,0xfd,0x86,0x85,0x16,0xef,0x1b,0xbb,0x27,0xeb,0x88, +0x9a,0xb3,0xdd,0x66,0xfb,0xa9,0x5e,0x29,0x4e,0x42,0x75,0x7c, +0x45,0x72,0x69,0x6a,0xb9,0x7f,0x43,0xc8,0xd5,0xf0,0x55,0xbb, +0x35,0xf6,0xe3,0x88,0xe3,0x71,0x76,0x4c,0x4b,0x5d,0x82,0xf1, +0x49,0x1f,0x8b,0x7f,0x0a,0x84,0x61,0x7b,0x60,0xd4,0x41,0x22, +0xfd,0x08,0x09,0xb4,0xb2,0x21,0xa7,0x2b,0xa6,0xc1,0xee,0x8a, +0x70,0xd0,0x79,0xa7,0x83,0xa7,0x33,0xfb,0x82,0xb9,0x14,0x1e, +0x72,0x5e,0xbe,0x36,0x41,0xdb,0xc3,0x36,0x67,0x18,0xe7,0xba, +0x16,0x33,0xc4,0x91,0x06,0x3e,0xf4,0x42,0xd6,0xd9,0xec,0x33, +0xb9,0x04,0xbe,0x87,0x07,0x58,0xc9,0x1d,0x3a,0x77,0xe8,0xfc, +0xa1,0x73,0x32,0xf6,0xad,0xbd,0x75,0x95,0x34,0x0d,0x5a,0x59, +0x8a,0x3f,0xf3,0x06,0x3e,0x1b,0x76,0xcc,0x0a,0xb6,0xc8,0xb2, +0xc8,0xb2,0x49,0xf7,0x71,0x15,0xda,0xc3,0x3a,0x43,0x3a,0x19, +0x3b,0xbb,0x8e,0x0f,0xe0,0x11,0x77,0x2a,0xf0,0x78,0xc8,0xd1, +0x50,0x22,0x31,0xdc,0xf0,0x37,0xe7,0xb0,0x74,0x8a,0x0d,0xba, +0xfb,0xa5,0x99,0x09,0x70,0xa4,0x0c,0x46,0xdf,0x6d,0x82,0xb1, +0x04,0x1e,0x73,0x27,0x3d,0x4f,0x3a,0x1f,0xf2,0x27,0xbe,0x87, +0xc2,0x0e,0xda,0x4e,0xc2,0x55,0xf2,0x32,0x16,0x9b,0x4d,0x3f, +0x95,0x67,0xf6,0x25,0xa8,0xc7,0x56,0x9f,0xbb,0x7f,0x5d,0x55, +0x5a,0x0b,0x29,0x14,0x93,0xbe,0x83,0x24,0xae,0x67,0x05,0xfd, +0x0e,0x72,0x56,0xf0,0xf8,0xca,0x9e,0x2e,0xc1,0xa4,0xef,0x79, +0x78,0x34,0x11,0x72,0x96,0x60,0x0e,0x53,0xe0,0xb6,0x7b,0x29, +0x2a,0x57,0xe2,0x67,0x2d,0x0b,0xfb,0x7e,0x7c,0x71,0xf3,0xf7, +0x5a,0xf8,0x9c,0x34,0x4b,0xbb,0xf8,0x98,0x96,0x4b,0x57,0x2f, +0xb4,0x11,0xb1,0xab,0x4f,0xba,0xca,0x9d,0x2d,0x3f,0x53,0x71, +0xba,0x52,0xff,0xb4,0x70,0xca,0xfd,0xa4,0xc7,0x09,0x66,0x34, +0x0b,0x0c,0x21,0x8b,0x0b,0xc0,0x84,0xa5,0x18,0x8e,0x1b,0x70, +0x75,0xa3,0x83,0x00,0xe3,0x60,0xc2,0x73,0x98,0xd3,0x0c,0xeb, +0x6b,0x34,0x6e,0x2e,0xff,0x5e,0x67,0x85,0xe1,0x74,0x5b,0xfc, +0xd2,0x2d,0x8f,0xb1,0x76,0xd5,0x1a,0x50,0xea,0x7c,0x7b,0xfb, +0x9d,0x1e,0x8c,0x32,0x03,0x55,0x27,0x82,0x6b,0xc4,0xf3,0xd4, +0x6d,0x96,0xf1,0x8a,0x55,0xba,0x0b,0xef,0x6e,0x79,0xe9,0xf9, +0x2b,0x51,0x56,0xfc,0xa9,0xd0,0xa3,0x9a,0xdd,0x30,0x57,0x9a, +0xf9,0xc6,0x70,0xb1,0x44,0x71,0x6e,0xf7,0x3b,0x5e,0xd1,0x8e, +0x93,0xa8,0x74,0x9a,0x4b,0xc8,0x8f,0x2b,0x8c,0x29,0x32,0x8a, +0x13,0x0e,0x78,0xee,0xf3,0x8e,0xf0,0x25,0xf8,0xd8,0x1c,0x6a, +0xb9,0x2d,0xb3,0x66,0x2d,0x47,0x61,0x53,0xb1,0xb5,0x70,0xbd, +0xbc,0xab,0xb2,0x85,0x11,0x54,0xa1,0x1f,0x56,0x8a,0x56,0x1a, +0x68,0xc0,0x27,0x30,0xca,0xb0,0x46,0x76,0xa6,0xab,0x55,0x17, +0x97,0x48,0xc1,0x7c,0x66,0x6e,0x7a,0x7e,0x4a,0x01,0x11,0x0b, +0xb8,0xc1,0xf1,0x4c,0xb9,0xbc,0x10,0xad,0x56,0xf1,0x92,0x95, +0x35,0x15,0xad,0x56,0x4a,0x56,0x4c,0xda,0x3f,0x96,0x52,0xfc, +0x19,0x46,0x72,0xe7,0x42,0xee,0x5d,0x84,0x31,0xc9,0x77,0x13, +0x54,0x2e,0x84,0x9e,0x67,0x57,0x4b,0x82,0xb0,0xf7,0x61,0xd8, +0xf3,0xb0,0x1b,0x36,0x07,0x84,0x38,0xdf,0x18,0xcf,0x18,0x0f, +0xa7,0xc3,0x86,0x87,0xcc,0x8e,0xdc,0xfa,0xf0,0x3d,0xac,0xee, +0x01,0xca,0x2c,0x76,0x98,0x75,0x90,0xc9,0x0e,0x93,0x3d,0x59, +0x61,0xf9,0x3b,0xf3,0x1a,0x5e,0x94,0xbd,0xca,0x7f,0x2a,0x47, +0xf5,0xd0,0xf1,0x5e,0xe9,0xa1,0x17,0x95,0xb4,0x3f,0x61,0x7f, +0x82,0x27,0x33,0xff,0x36,0xfd,0xda,0x95,0xc6,0x2e,0xeb,0x9c, +0xb4,0x3c,0xcc,0x0e,0x9d,0x3a,0xf4,0xaf,0xc3,0xa7,0x88,0x42, +0xc3,0x74,0xb0,0x02,0x9f,0x80,0x32,0x7f,0xc1,0xe3,0xce,0xa5, +0x0f,0xc9,0xb7,0x86,0xaa,0x0c,0x3b,0x17,0xd6,0x92,0xc8,0xaa, +0x0c,0x7f,0x1e,0x7a,0xc3,0x76,0x3f,0xab,0x32,0xd6,0x3d,0xc6, +0xdd,0xf5,0xb0,0xe5,0x21,0xeb,0xa3,0x37,0x3f,0xfe,0x00,0x6b, +0xba,0x80,0x3a,0xb3,0x2a,0x2d,0x03,0x8d,0xfd,0x8d,0x23,0x72, +0x42,0xf3,0x43,0xf3,0xeb,0x9f,0x57,0xbc,0xce,0x7f,0x62,0xc5, +0x0c,0x90,0x8e,0xd7,0x0a,0x0f,0x3d,0xaf,0x1a,0xc1,0xd3,0xad, +0xd9,0xba,0x7b,0x73,0xb5,0xa1,0x8a,0xf3,0x3a,0x47,0x56,0xdf, +0xe1,0x53,0x87,0xff,0x75,0x84,0xd5,0xf7,0x85,0xc9,0x7f,0xf8, +0xde,0xab,0x0a,0x2f,0xeb,0xde,0xbf,0x79,0x13,0x5e,0xf9,0x81, +0xb8,0x83,0x16,0x15,0xe5,0x14,0xe6,0xd6,0xb0,0xee,0x94,0x9d, +0x57,0x33,0xeb,0xd2,0x1b,0x93,0xda,0xad,0x92,0x99,0x12,0x1b, +0xa7,0x8b,0x63,0x57,0xac,0x26,0xe2,0x01,0x18,0x45,0x33,0x37, +0x55,0x18,0xb6,0x59,0x9a,0x39,0x6e,0xf4,0x5c,0xe2,0x97,0x67, +0x21,0xfc,0x58,0xf2,0xa4,0xb6,0xbf,0xf5,0x9a,0xe5,0x33,0xa7, +0x77,0x6e,0x59,0x9d,0xc2,0x92,0x52,0xd6,0xae,0xc6,0xbe,0xeb, +0x55,0x8f,0x93,0x7e,0x24,0x3f,0xb4,0xe3,0x9f,0x5c,0x7c,0x7e, +0x5c,0xde,0xe5,0x5c,0x8b,0x78,0x21,0x68,0xf1,0xd6,0x69,0xda, +0x7a,0x95,0xce,0x42,0x41,0x5e,0x5e,0x71,0x76,0x19,0x43,0x86, +0x7f,0x51,0x69,0x71,0xbb,0xb8,0x58,0x3e,0xcf,0x7b,0x91,0x5a, +0xb4,0x7b,0x5c,0x0b,0x7f,0xcc,0x8c,0x08,0x17,0xb9,0xd6,0xcf, +0xc0,0xda,0x92,0x58,0xe3,0x07,0x6a,0xd9,0x64,0x5e,0x63,0x52, +0xca,0x3a,0xac,0xc3,0xb3,0xc7,0xa9,0xc5,0x91,0xa0,0x81,0x06, +0x75,0x39,0x78,0xa9,0x42,0x1d,0x2c,0xb7,0xa3,0x35,0xbf,0x2e, +0x67,0xd7,0x33,0x35,0x28,0xe5,0x9a,0x12,0x52,0x6b,0xd4,0x7f, +0xe1,0x8d,0xd3,0x94,0x70,0x02,0xdf,0x01,0xa6,0xb4,0x57,0xbf, +0x7b,0x63,0xf5,0xba,0x96,0x12,0xc1,0xe1,0x85,0xd9,0x1d,0xe3, +0x01,0x32,0x68,0x81,0x57,0xe8,0xed,0xbb,0x75,0xcf,0x72,0x1f, +0x5a,0x67,0x0a,0x21,0x5b,0x1c,0xd6,0x1a,0x18,0x12,0xe5,0xbf, +0x95,0xc4,0x39,0x14,0x47,0xf4,0xc0,0x22,0x1c,0x07,0x29,0x78, +0x9b,0xbf,0x94,0x78,0x29,0xf1,0x42,0x12,0x11,0x97,0x36,0x0e, +0xfe,0xd7,0x5e,0x9c,0xc1,0x1d,0xdd,0x7b,0x38,0x32,0x7a,0x2f, +0x61,0x38,0x21,0x05,0xc7,0xe1,0xfa,0x1e,0x18,0xc7,0x29,0x28, +0x84,0x51,0x29,0xa9,0x5e,0x4c,0xe2,0xa4,0x24,0x54,0xa5,0x8d, +0x62,0x92,0x3d,0xef,0x3e,0xd2,0x56,0x4a,0x6a,0x96,0x33,0x39, +0x2f,0xa5,0x4e,0xa9,0x36,0x69,0x76,0x09,0x61,0x1e,0x0c,0x29, +0xf4,0xee,0x2a,0x8b,0x20,0xa0,0xd9,0x44,0x6b,0x9d,0x1a,0x4c, +0xca,0xcd,0x1a,0xf2,0x05,0xaf,0x56,0xab,0x6b,0x6e,0x35,0x04, +0x36,0x49,0x73,0x29,0x8e,0xbd,0x8c,0xe4,0xf2,0xb4,0xf4,0x67, +0x05,0xd7,0x2a,0xeb,0x5a,0x48,0x85,0xf4,0x35,0x9f,0x9d,0x92, +0x99,0x96,0x9a,0x21,0x47,0x0d,0xae,0x4e,0x88,0xab,0x56,0xaf, +0xe4,0x2d,0x13,0x94,0xb6,0xe1,0x69,0x3e,0xf8,0xe0,0xc5,0x2c, +0xf5,0x7e,0xf3,0x2d,0xbc,0x75,0xe6,0x9e,0x5e,0xb5,0x2b,0xdc, +0x5a,0xfd,0xa5,0xae,0xb8,0xd0,0x37,0xc3,0x41,0xe8,0x88,0x6d, +0x4f,0x6c,0x49,0xab,0xf1,0x6d,0x09,0x6a,0x0f,0x9f,0xbe,0x0b, +0x27,0x44,0xa1,0xe6,0xd1,0x58,0x4b,0x01,0x36,0x5c,0x84,0xa5, +0xa9,0x30,0xb1,0x14,0xbe,0xf2,0x82,0x59,0x91,0x30,0xfd,0x10, +0x19,0x4c,0x85,0x0c,0xda,0xdc,0x54,0xd3,0x56,0xdc,0x6d,0x97, +0x25,0x04,0xd9,0xda,0x1b,0x3b,0xb8,0x10,0x08,0x99,0x4d,0xcf, +0x9e,0x39,0xc7,0x2e,0x22,0x2a,0x73,0x96,0x9e,0x5b,0x77,0xac, +0x0a,0xd5,0x4b,0xdd,0x9e,0x6b,0x59,0x41,0x94,0x41,0x21,0x2e, +0xa2,0x5e,0x91,0x1e,0xfb,0xdc,0xf7,0x11,0x88,0x84,0x71,0x9d, +0xac,0x93,0x0c,0x8c,0xd1,0x00,0x27,0x9a,0xc1,0x44,0x3c,0xc7, +0xdb,0xef,0xb3,0x8f,0x72,0x3c,0x18,0x63,0x2a,0xd4,0xc4,0xd4, +0xc6,0xd5,0xca,0xd9,0xde,0x70,0x8c,0x1c,0x3b,0xf3,0x67,0xae, +0x29,0x59,0xce,0x00,0xd8,0xc8,0xd7,0x24,0x56,0x27,0x55,0xa5, +0x90,0x02,0x99,0xd3,0x38,0x89,0xa7,0xc0,0x89,0x97,0x8c,0x71, +0x3e,0xfd,0x20,0x7e,0x35,0x83,0x87,0x11,0x52,0x0b,0xdd,0x78, +0x54,0x49,0x1c,0x7b,0xb3,0x45,0x7a,0x6d,0x73,0x4b,0x9a,0xc9, +0xcf,0x3b,0x71,0xde,0x0a,0xa6,0x9f,0x07,0xd3,0xcb,0x30,0x37, +0x46,0x65,0x6a,0x2f,0xb3,0xf2,0xb9,0x67,0xb2,0xcf,0x66,0x9c, +0x21,0xa8,0x06,0x8f,0x28,0xbe,0xfc,0x05,0x5e,0x72,0x38,0x7b, +0xe4,0x7c,0x7c,0xf9,0x13,0x8f,0x33,0x47,0xc2,0xcb,0xa5,0xdc, +0xcc,0x23,0x38,0xe6,0x08,0x8e,0x3c,0x26,0xaf,0xbd,0x2a,0x76, +0x52,0x29,0x8d,0xbb,0x9c,0x77,0x29,0xff,0x62,0xbe,0xc1,0x65, +0xe1,0x88,0x6f,0xb4,0xff,0x41,0x7f,0xc6,0x48,0x8d,0x20,0x85, +0x33,0xc4,0x99,0xb3,0x51,0x19,0x27,0xcc,0xab,0xb2,0x11,0xba, +0xea,0xda,0x5b,0x9b,0xba,0x89,0x74,0x60,0x00,0x3c,0x45,0x2f, +0x14,0x18,0x48,0x4d,0x34,0x57,0x82,0xad,0xff,0x1c,0x89,0x4e, +0x94,0x4e,0xf3,0x99,0x95,0x69,0x35,0xc9,0xb5,0x44,0xac,0x95, +0xd5,0x43,0x27,0x85,0xd1,0xec,0xff,0x46,0xf3,0x92,0x97,0x39, +0x65,0x0f,0xca,0x92,0x17,0xa3,0x18,0x97,0x44,0x27,0x2a,0xfb, +0xca,0x8e,0x6d,0xc7,0xb1,0x60,0x66,0x8a,0x66,0x38,0xdd,0x62, +0x28,0x6e,0xf0,0x57,0x6e,0x38,0x6d,0x2e,0x7e,0x5d,0x69,0x27, +0x3c,0x82,0x61,0xf9,0x7f,0x9e,0x97,0x3d,0xc1,0xf2,0xbb,0x86, +0x8e,0xa0,0xca,0x4b,0x0a,0x2f,0x70,0x49,0x45,0xe5,0x5a,0xd0, +0x1c,0x72,0xb8,0x8d,0x56,0x11,0xd7,0x8b,0x4a,0xd4,0x88,0xc1, +0xae,0xa0,0xc1,0x5d,0xdd,0xbd,0xe2,0x64,0xa3,0x1e,0xc5,0x2e, +0xdc,0xcb,0x19,0x63,0x3b,0x43,0x56,0x0c,0x95,0xaf,0xe0,0xba, +0x3f,0xc1,0x73,0x6d,0x19,0x9e,0x7f,0x63,0x4e,0x61,0x05,0x26, +0xe2,0x0a,0x0e,0x42,0x20,0x91,0xb2,0xc2,0x44,0xd4,0x66,0x1f, +0xd3,0xac,0xb0,0xa4,0xd6,0xf5,0xdb,0x1b,0x0c,0x4b,0x7c,0xed, +0x85,0x01,0xcf,0x0e,0xd7,0x76,0x07,0x22,0xf2,0x92,0x0d,0x3d, +0x9f,0x71,0x2e,0xf3,0x4c,0x36,0x81,0x02,0x78,0x88,0x4e,0xdc, +0x99,0x33,0xce,0xd9,0xaf,0xca,0x1e,0xd7,0x37,0x34,0xa9,0xd4, +0x48,0x1d,0xd6,0xa2,0x1b,0xef,0xee,0x6f,0xb8,0x43,0x27,0xc8, +0x31,0xcb,0x31,0xc3,0x25,0xd9,0xc7,0x4d,0xe8,0xdc,0xd9,0x15, +0xd0,0x16,0x40,0xb0,0x0a,0x1f,0xc2,0x65,0xee,0x64,0xc8,0xf1, +0xd0,0x23,0x61,0x6c,0x60,0xad,0x20,0x86,0x73,0x58,0x3d,0xd7, +0x12,0x97,0x78,0xca,0x61,0xb4,0xb7,0x56,0xc3,0xc8,0x87,0xcd, +0xa0,0x44,0x20,0x8e,0x3b,0xe5,0x79,0xdc,0xe1,0xb0,0x37,0x09, +0x39,0xba,0x47,0x5e,0x55,0x5f,0xc3,0xc9,0x3d,0xb9,0x9c,0xbb, +0x53,0x94,0xdb,0x12,0xa3,0x7e,0xa5,0xe1,0x7c,0xff,0x99,0xa7, +0x64,0x70,0x1d,0x9c,0xa5,0x36,0x8d,0xba,0xad,0xdb,0xca,0x7d, +0x1c,0x84,0xeb,0xee,0xfd,0x76,0x5d,0xb6,0xec,0xeb,0xba,0x28, +0xba,0xbd,0x04,0x37,0xae,0x73,0x39,0x7d,0x09,0x7e,0xcb,0x79, +0xcc,0x74,0xa0,0x0b,0xd1,0xed,0x2d,0x0f,0x89,0x13,0xc1,0x6f, +0x21,0xfa,0x71,0x52,0x8b,0xa4,0xc6,0xd8,0xf4,0xb0,0xab,0xa0, +0x9a,0xff,0x87,0x59,0x9a,0xe0,0x87,0x9f,0x39,0xe2,0x28,0xbd, +0xd9,0x44,0xf9,0x47,0x45,0x16,0x1d,0xf0,0xee,0x70,0x6b,0x73, +0x2a,0x69,0x12,0x6c,0x6a,0xb7,0xd7,0x1a,0x31,0x4a,0xf3,0x16, +0x53,0x68,0x44,0xec,0xee,0x98,0xdd,0xb1,0xaf,0xaa,0xbf,0xef, +0xed,0x6c,0x27,0x75,0xd2,0x2d,0x73,0x31,0x88,0xb7,0xf7,0xd4, +0x77,0x5f,0xed,0x65,0x99,0x67,0x9e,0x63,0x99,0xee,0xef,0x22, +0xdc,0x0b,0xb8,0xeb,0x7d,0xdd,0x9b,0x60,0xdb,0xa0,0x6a,0x2f, +0xfc,0x0b,0x1c,0xf0,0x40,0x0f,0x1c,0x80,0x00,0xdc,0x86,0x93, +0xb9,0x64,0xf6,0xf5,0x84,0xab,0x4f,0x4e,0xaa,0x57,0x17,0x6f, +0xf3,0x83,0x1a,0x33,0xa8,0x4d,0xdd,0x96,0x66,0x83,0x52,0xd6, +0xab,0xfd,0x9e,0x7d,0x8e,0x1d,0xf6,0x04,0xfe,0x8e,0x64,0x5c, +0x01,0x78,0x70,0xe0,0x7a,0x90,0xa7,0x20,0xfb,0xc2,0xf3,0xbc, +0x14,0x62,0x49,0xd9,0x9b,0x94,0xd1,0x81,0x83,0x38,0x50,0xa6, +0xac,0x50,0x19,0x03,0x38,0xa9,0x04,0xab,0xe8,0xdd,0xbf,0x3a, +0x40,0xb5,0xe0,0x0f,0xf3,0x74,0xc1,0x07,0x3f,0xb3,0xc3,0x51, +0x9b,0x35,0x98,0x6c,0xf5,0x2a,0x1e,0xd1,0x00,0x0b,0x7f,0x1b, +0x6f,0xa7,0x9d,0x8d,0x01,0xf5,0xbe,0x75,0x8e,0x7e,0x42,0xb9, +0x4d,0x81,0x4d,0x96,0x8d,0x87,0x8b,0x8b,0x97,0xa3,0x5f,0x9e, +0xa5,0x50,0x57,0x54,0x55,0x5a,0x5e,0x99,0xe4,0x14,0xe7,0x70, +0xc5,0xd6,0x6c,0xa9,0xb1,0xd1,0x6a,0x93,0x5c,0x4b,0xe1,0x51, +0x6b,0x47,0x4f,0xe3,0x5d,0x72,0xde,0xe5,0x8c,0xa3,0xbd,0xec, +0x89,0x1a,0xe8,0xa8,0x35,0x69,0x3b,0x97,0x64,0xa0,0xd4,0xc5, +0xbd,0x6f,0xed,0x81,0x50,0x58,0x10,0x0a,0x82,0x2d,0x8c,0x56, +0xaf,0xb9,0x5a,0xd1,0x5d,0x72,0x83,0x88,0xbf,0xe0,0x78,0x8a, +0x8e,0x1c,0x83,0x68,0x0d,0x89,0x95,0x16,0x99,0x42,0x84,0x7d, +0x90,0xa5,0x9f,0x2d,0xc1,0x37,0x16,0x60,0xa3,0x81,0x2b,0xa4, +0x5f,0xbb,0xba,0xc5,0x95,0x26,0x5d,0xe2,0xaf,0xb8,0xf5,0xdf, +0xb0,0x83,0x93,0x86,0xbf,0xa4,0x91,0x15,0x01,0xcd,0x61,0x85, +0x36,0xc1,0xf2,0xb1,0x2c,0xfb,0x24,0x4f,0xd2,0x8f,0xcb,0xe8, +0xbf,0x9f,0x6a,0xf0,0xf8,0x8d,0x35,0x3d,0xb6,0x24,0xc0,0xca, +0xcc,0xb4,0xc2,0x51,0x78,0xf0,0x2c,0xb7,0xfb,0xc2,0x9f,0xe4, +0x19,0x8e,0xe7,0x1c,0xf2,0x42,0xea,0xd5,0x3e,0xae,0x90,0x56, +0x42,0x09,0x07,0xbf,0x30,0x38,0xed,0x71,0xe4,0x62,0x99,0xfa, +0xef,0xa0,0xcc,0x58,0xb2,0xb4,0x12,0x4d,0xa9,0xb8,0x72,0xa6, +0xb4,0x52,0xde,0xd1,0x11,0x8f,0xd2,0x6e,0x34,0xe1,0x4f,0x25, +0xfc,0x2b,0x91,0xd1,0xbd,0x7d,0xdb,0x71,0x1f,0xbf,0xf7,0x5f, +0x7b,0x4f,0xed,0x53,0xc3,0xb5,0x26,0xb0,0x9a,0x89,0x8e,0xbb, +0x25,0x4e,0xc1,0x31,0x38,0x9f,0xd9,0x65,0x9c,0xfe,0xbb,0x1c, +0x70,0x4a,0x83,0xcf,0xa8,0x4c,0x6d,0x4c,0xa8,0xb6,0xca,0x10, +0xf6,0xd8,0x84,0x5b,0x05,0xda,0x11,0xcc,0xb1,0x82,0xb5,0x33, +0x51,0x55,0xfa,0xad,0x83,0x3b,0xd5,0xa5,0x24,0x8e,0xe1,0xf2, +0xf4,0x41,0x05,0xd6,0x76,0xc0,0xcc,0xf3,0x60,0xa8,0x22,0x27, +0xea,0x30,0xbc,0xca,0x28,0xc9,0x37,0xa8,0x53,0xd6,0x27,0xa0, +0x2a,0xac,0xb5,0x04,0xb5,0x03,0xe0,0x41,0xa4,0x24,0x46,0x50, +0xf6,0x95,0x04,0xb5,0xb3,0xc6,0x85,0x08,0x99,0xbe,0x59,0xb6, +0x09,0x5e,0x44,0x11,0x61,0x44,0x43,0x06,0x7c,0x07,0x7c,0x1b, +0x5d,0x42,0x84,0x12,0x8b,0x7c,0xd3,0x9c,0x6d,0x44,0xba,0x51, +0x44,0x67,0x1a,0xff,0xce,0xf7,0x62,0x0d,0x75,0x4d,0x0b,0xad, +0x52,0xbb,0xbf,0x0c,0x1f,0x73,0xa7,0x9f,0x97,0xf9,0x0e,0x3c, +0x4d,0xef,0x3e,0xfb,0x41,0xa5,0x8f,0xc3,0x11,0x13,0x4f,0x2c, +0x8b,0xb0,0x35,0xdf,0x46,0xc0,0x99,0x41,0x27,0x5c,0x48,0x6d, +0xb9,0x80,0x23,0x17,0xf2,0xd5,0x61,0xcc,0x2b,0x1e,0x1f,0xe3, +0x4f,0x14,0x1e,0xcf,0x64,0x3f,0x92,0x83,0x39,0x3f,0xa5,0xfa, +0x8c,0x93,0x7f,0x18,0x0c,0xbe,0xf6,0x40,0xa1,0xa6,0x7d,0x4d, +0x11,0x2c,0x0d,0xe7,0xf4,0x91,0x31,0xce,0x72,0x88,0x86,0x72, +0x4e,0x1c,0x8e,0xd1,0x14,0x5b,0xd9,0x73,0x2b,0xeb,0x7e,0x6c, +0xa4,0x78,0x82,0xfd,0xe5,0x04,0x0f,0x1f,0x26,0x42,0x2b,0x7b, +0x6e,0x1d,0xda,0x0b,0x5b,0x40,0xb1,0x86,0xbb,0xd2,0x7e,0xa1, +0xe3,0x5c,0x87,0xc9,0x05,0xe1,0x98,0xe9,0x61,0xd3,0x68,0x33, +0x66,0x0d,0x8d,0x40,0x8b,0xf3,0x44,0xad,0x6d,0xb8,0x12,0x95, +0x50,0x9d,0xe9,0xb6,0xca,0x86,0xb2,0x8e,0xc2,0x1e,0x82,0x77, +0x19,0x92,0x4f,0x65,0x48,0xde,0x17,0xef,0xf1,0xd9,0x37,0xd2, +0xee,0x24,0xdc,0x23,0xd0,0xce,0x0d,0x4e,0x41,0x4f,0x1a,0x1d, +0x73,0xf0,0xec,0x81,0x43,0x07,0x8f,0x08,0xc7,0x4e,0x73,0x95, +0x6d,0xdd,0xbf,0x64,0xff,0x40,0x1a,0x71,0x02,0x68,0x1a,0xa1, +0x26,0x0a,0x66,0x70,0x89,0xf7,0xc0,0x51,0x38,0x82,0xd1,0xba, +0xaf,0x67,0x16,0xdb,0x09,0xcd,0xd5,0xd5,0xd5,0x85,0xe5,0x44, +0xfa,0xa6,0x47,0xdc,0xc4,0xcb,0x39,0x29,0x8e,0xa9,0xc1,0x30, +0x14,0x2a,0x2a,0x94,0x60,0x13,0xfa,0x53,0x28,0x63,0x68,0xbe, +0x8c,0xd1,0x82,0x5f,0xc4,0x3d,0x74,0xaf,0xd3,0x1e,0xcf,0x70, +0xf7,0xdd,0x79,0xc2,0xb1,0x4b,0xd1,0xe7,0x0e,0x1e,0x3c,0x14, +0x2d,0x1c,0x4f,0xe0,0xaa,0xfa,0x6b,0x5e,0xa7,0xbe,0x26,0xf5, +0xd3,0x60,0x9e,0x19,0xce,0x43,0xce,0x02,0x76,0xf0,0x81,0x38, +0x66,0x2d,0x1b,0xe9,0xc9,0xa8,0x5c,0x60,0x23,0x34,0xd4,0x97, +0x57,0xe7,0x55,0x12,0x69,0x6a,0x87,0xb8,0x8c,0xd5,0x20,0x07, +0xf4,0xf9,0x1d,0x35,0x2a,0x2b,0x8d,0xbf,0xcb,0x69,0x48,0xab, +0x49,0x69,0x52,0x81,0x8d,0x22,0x47,0xdd,0x16,0xeb,0xce,0x5a, +0x67,0x54,0xee,0x28,0xbc,0xbe,0xf3,0x18,0xb8,0x72,0xc6,0x31, +0x3e,0x30,0xdc,0x66,0xfb,0x60,0xd5,0x5f,0xdb,0x6f,0x3a,0xfb, +0x09,0xbd,0x9b,0x9f,0x4e,0x6f,0x5d,0xcb,0x54,0x15,0x70,0xd4, +0x03,0x87,0xaf,0x9a,0x8a,0xaa,0x8b,0x0a,0xad,0x04,0x98,0xf2, +0xfb,0xcb,0x1f,0xf3,0x60,0x02,0x91,0x43,0xf1,0x8e,0x7b,0xbe, +0x0c,0x16,0xa3,0x92,0xec,0x1f,0x3f,0xf5,0xfd,0x8a,0xdf,0xdd, +0x60,0x38,0xc1,0x2d,0x83,0xc1,0xb4,0x1d,0x9a,0x2c,0x7a,0xc5, +0x79,0xd2,0x0a,0x69,0x1e,0x0f,0x0a,0xf8,0x48,0xf1,0x30,0x36, +0xc1,0x61,0x5e,0xce,0x49,0xfc,0x9a,0xb6,0xe2,0x51,0x18,0xc6, +0x3f,0xbe,0xf4,0xe0,0x4a,0x7f,0x7c,0x70,0x93,0x80,0x5f,0x84, +0xe0,0xa6,0x7d,0xb8,0xe1,0x14,0xb3,0xb2,0xb7,0x4f,0xdf,0x3d, +0x7b,0xe7,0x02,0x99,0x81,0xfb,0xac,0x98,0x6d,0x73,0xdd,0xa4, +0x63,0x85,0xc3,0xcc,0xb2,0x65,0xf7,0xb8,0x5b,0xcf,0xfb,0x53, +0xde,0x90,0x8b,0x68,0xd2,0x01,0x26,0x17,0xb9,0x94,0xa5,0x4f, +0x4c,0x80,0xea,0xe4,0x30,0xfe,0x3e,0xbc,0x77,0x43,0xb3,0xcb, +0x4d,0x32,0x38,0x93,0x91,0x02,0x86,0x59,0x3b,0xf8,0x38,0xb4, +0xa3,0x9d,0xf8,0xa3,0x19,0x5f,0xbd,0x9a,0x15,0x14,0x0f,0xed, +0x3a,0x74,0x60,0xb1,0x39,0xaf,0xf0,0x67,0x58,0x5d,0xb2,0x82, +0x61,0xdc,0x31,0x54,0xf5,0x9e,0x8e,0xc2,0xca,0x22,0xd6,0x9e, +0x6f,0x5e,0x77,0x80,0xf2,0x05,0x58,0x4d,0x60,0x12,0x17,0xed, +0xb7,0xcb,0x68,0x97,0x1b,0x81,0xf5,0x9c,0xe7,0x31,0xeb,0x23, +0xfe,0x6a,0x3b,0x8e,0x44,0x1c,0xf4,0x98,0x84,0x2a,0x43,0xc8, +0x7f,0x2c,0xf7,0x2c,0x27,0xab,0x23,0x56,0xfd,0x72,0xcd,0xf9, +0x9b,0x4f,0x54,0x51,0x83,0x63,0x88,0xb9,0xe4,0x62,0x36,0x19, +0x5c,0x2a,0x7d,0xc1,0x28,0xfc,0x6e,0xc8,0xc4,0x32,0x7c,0xcc, +0x43,0xc4,0xa7,0x84,0xe8,0x5a,0x72,0x42,0x74,0xc5,0x58,0xc6, +0x8b,0xcf,0x5d,0x60,0xd7,0x45,0xe2,0x06,0xfe,0xfc,0x8e,0x00, +0xcf,0x10,0x87,0x50,0xa2,0x8f,0x82,0x35,0x08,0xe8,0x36,0x53, +0x66,0xd2,0x3f,0x72,0x15,0x49,0x69,0x95,0xea,0x60,0x0f,0x8b, +0xae,0xe2,0xa2,0x5a,0xbe,0x21,0xb7,0xb3,0x92,0x41,0xc6,0x6a, +0x36,0x09,0xe2,0x33,0xe3,0xb3,0x63,0x73,0x08,0x64,0xb5,0xe3, +0x59,0x2e,0xae,0x2c,0xa6,0xfc,0x72,0x85,0xe9,0x15,0x61,0x97, +0xa6,0xdf,0x2a,0xbb,0xcd,0x04,0xb3,0xa4,0xc3,0xf4,0xe6,0x4f, +0x85,0x40,0x2e,0xc1,0x16,0xf2,0x91,0x3b,0x8d,0xe4,0x28,0x8e, +0x3e,0x6c,0x44,0x1c,0x8e,0xec,0x3d,0x1c,0x30,0xc9,0x82,0x8b, +0x35,0x51,0xba,0xc1,0x35,0xe6,0x65,0x0f,0x5c,0x51,0x8f,0x79, +0x7c,0x0e,0xbe,0x84,0x75,0xaa,0xcc,0xcc,0x7d,0xf2,0xc7,0x6b, +0x07,0xab,0x76,0x9c,0x01,0x13,0x8c,0x70,0x02,0xb3,0xb2,0x3f, +0x5b,0xf0,0x78,0x62,0x27,0x8e,0xd6,0x99,0xa3,0x16,0x25,0x7a, +0x52,0xaf,0x07,0x56,0xcf,0xed,0x7a,0xac,0xfd,0x84,0x16,0xe3, +0xa6,0x55,0x65,0x3a,0x04,0x2e,0x48,0x3d,0x14,0xbf,0x5e,0xdc, +0x05,0xbc,0x3a,0x54,0xa0,0x91,0x09,0x8c,0xc3,0x50,0x7e,0x9e, +0xbf,0x95,0x86,0x7c,0x86,0xf9,0xfb,0xea,0xba,0x8e,0x33,0xf7, +0x3f,0x9d,0x61,0xd6,0x85,0x65,0x93,0xc4,0xe3,0xf2,0x19,0x66, +0x65,0x58,0xa0,0xa8,0xa1,0x18,0xad,0xd8,0x0a,0xd1,0xfc,0xe0, +0x28,0x34,0xa0,0xf0,0x95,0xd8,0x8f,0x5f,0xf1,0xaf,0xa5,0xbf, +0xa9,0xf4,0x23,0xb7,0x6a,0x77,0xec,0x43,0x75,0xe0,0x15,0x36, +0x90,0x39,0x18,0x27,0x4d,0xe3,0x67,0x16,0xfb,0xc1,0xd7,0x6a, +0xe2,0x2b,0xae,0x39,0x39,0xbe,0x51,0x0e,0x44,0x66,0x9c,0xa0, +0x24,0x2d,0x04,0x81,0x62,0x15,0x2c,0x87,0x2a,0x0e,0x14,0x13, +0x71,0x39,0x9b,0x44,0xcb,0x79,0x65,0xb1,0x4d,0xbc,0xce,0x26, +0x51,0x00,0x8c,0xe7,0x1f,0x5e,0xb9,0x1b,0xd7,0x15,0x1f,0xc8, +0xe6,0x9f,0x52,0x20,0x6e,0xdf,0x85,0xf3,0x8f,0xc5,0x99,0x09, +0x7d,0x67,0x6e,0x9f,0xbf,0x75,0x91,0x20,0x41,0x3f,0xab,0x0e, +0xd4,0x58,0x6f,0xf9,0x18,0x17,0x99,0x5b,0x81,0x1f,0x4e,0xe7, +0xd7,0x1d,0x5a,0x7f,0x78,0xeb,0xf1,0x4b,0x26,0x02,0x68,0xc4, +0x81,0x6b,0x16,0xcc,0xca,0x38,0xd2,0x21,0x18,0x44,0x6b,0x1d, +0xdc,0x70,0x88,0x30,0xe4,0x11,0xd0,0x6a,0x05,0x8b,0x1e,0xb6, +0x69,0x81,0x06,0x0f,0x77,0xe7,0xd2,0x96,0x9f,0xcb,0x7f,0xce, +0x78,0x4e,0x5a,0xf0,0xf1,0xe0,0xdf,0xfd,0x8a,0x56,0xb0,0xe3, +0xc3,0xb4,0x3c,0x17,0x98,0xcd,0x26,0x77,0x37,0x75,0x6c,0x58, +0xa3,0xaa,0x1b,0xe1,0xbb,0x51,0x4d,0x9f,0x8b,0x33,0x54,0xea, +0xe7,0x7e,0xab,0x19,0xf8,0xf9,0x9d,0xe5,0xa3,0x6d,0x37,0xd5, +0xa5,0x8a,0x5f,0x28,0x6a,0xcc,0x96,0x5f,0xb1,0x54,0x76,0x85, +0xd4,0xf8,0x93,0xa9,0x5c,0x5c,0x6d,0x49,0x71,0xd1,0x6c,0x58, +0x24,0x17,0x2e,0xa2,0xb0,0xe8,0x4f,0x5c,0xc4,0x66,0xc7,0xc5, +0x06,0x0a,0x6b,0x61,0x55,0x3b,0xae,0x02,0x4d,0x58,0xd9,0x8e, +0x2b,0x61,0x0e,0x18,0x75,0xa1,0x2e,0x9f,0xd1,0x90,0xde,0x16, +0x5b,0xcd,0x20,0x7e,0x94,0x43,0xb8,0x59,0x90,0x15,0x41,0x81, +0x63,0xd4,0xa1,0x21,0xbe,0xc5,0x32,0x51,0xf0,0xc2,0xf1,0x06, +0x38,0x63,0xcd,0xac,0x72,0x7b,0x21,0xb3,0x30,0xad,0x30,0x29, +0x9f,0x48,0x6f,0x3b,0x07,0xc4,0x39,0x5d,0xbc,0x94,0x2c,0xfe, +0x87,0xe2,0x4e,0xee,0x6c,0xfb,0xe9,0x8e,0x4e,0xd5,0xed,0xe7, +0x94,0x4c,0x4e,0x99,0x9d,0x30,0x57,0xc3,0x61,0xa6,0x7f,0x30, +0x53,0x70,0xca,0x13,0xfd,0xf4,0x70,0x45,0x9b,0xbb,0x70,0x07, +0xb4,0xab,0x21,0x32,0x01,0xe2,0x08,0x84,0x73,0x40,0x64,0xc7, +0x81,0x39,0x30,0x0f,0xe7,0xf0,0x12,0x87,0x1e,0x34,0xde,0x36, +0x45,0x3b,0x49,0xd7,0xf5,0x80,0xe3,0x01,0xfb,0x83,0x85,0x30, +0xbd,0x00,0x2c,0xe3,0x61,0x0e,0x53,0x91,0x51,0x38,0xcf,0x1b, +0xbd,0x77,0xe0,0x94,0x88,0x13,0x11,0x27,0xf6,0x9c,0xbc,0x6c, +0x2c,0xbc,0x8c,0xff,0x31,0xed,0x49,0xd6,0xf9,0xf0,0x73,0xbb, +0xce,0xed,0xbe,0x9a,0x29,0xec,0xf9,0xd5,0x1f,0x54,0x77,0x3e, +0x24,0xb0,0x66,0xaf,0x9c,0x77,0x7d,0x1e,0x6a,0xf2,0x16,0x23, +0x71,0x2d,0xce,0x83,0xb5,0x4c,0xf2,0x6d,0xf5,0x68,0xe4,0x9b, +0x9d,0x30,0x3c,0xec,0xa1,0x4d,0xa4,0x10,0xe3,0x15,0xeb,0x18, +0x63,0xef,0x7b,0xc4,0xfb,0xb0,0xf7,0x11,0x02,0x47,0x60,0x89, +0x38,0x0d,0x97,0xc0,0x2a,0x13,0x5c,0x85,0xf3,0x24,0xa6,0xd7, +0xf0,0x2c,0x6f,0x12,0xbd,0xfd,0x90,0xc1,0xe1,0x2b,0x6c,0xa8, +0xbe,0x4c,0x82,0xf1,0xe9,0xbf,0x67,0x5e,0x0c,0xb8,0x10,0x70, +0x3e,0x98,0x48,0x6a,0x8a,0x7b,0xb4,0x4d,0xda,0x69,0xc9,0x37, +0x33,0x06,0x22,0x4e,0x00,0x7b,0x69,0x02,0xd7,0xc9,0x7a,0xfa, +0x1d,0xa4,0x69,0xf2,0xe0,0xfe,0x90,0xfe,0x82,0xe5,0x73,0x39, +0xb8,0x08,0xe5,0xcc,0x20,0xcc,0x86,0x72,0x7e,0x70,0xfa,0xe0, +0x76,0x2a,0xda,0x3f,0xe6,0x4f,0x6e,0x3b,0x18,0x68,0xe6,0x54, +0xe6,0x24,0xdc,0xe8,0x48,0xae,0x39,0xf3,0x92,0xf4,0x2c,0xe5, +0x9c,0x92,0x76,0xb7,0xab,0xf5,0x61,0xf4,0x32,0x39,0xae,0xcc, +0x5d,0xae,0x3a,0x31,0xa9,0x4e,0x5d,0xd4,0x91,0x0c,0xa5,0x73, +0x3c,0x3c,0x80,0x3f,0xe8,0x81,0xa3,0xe7,0x63,0xd5,0x5f,0x3e, +0x9d,0xc1,0x7b,0x6b,0x52,0xbc,0x68,0xff,0x0e,0xf5,0x3b,0x40, +0xff,0x37,0x66,0x85,0x9c,0x14,0x66,0x34,0xb5,0x24,0xb1,0x34, +0xbe,0x4c,0x3f,0x51,0xd8,0x82,0x9b,0xf0,0x4b,0xa6,0x7e,0x4d, +0x70,0x78,0x99,0x39,0x53,0x29,0x4f,0x61,0xc4,0x6f,0x8f,0x81, +0x10,0x71,0x1a,0xe7,0x8d,0xd3,0xcc,0x70,0xec,0x12,0x8d,0x0d, +0x37,0xe7,0xdf,0xdb,0xd0,0xe6,0xe8,0x28,0x3c,0x32,0xfb,0x69, +0xe3,0xc3,0xad,0xd3,0xe7,0xa2,0xba,0x36,0x6e,0x37,0xcb,0x37, +0x10,0xc4,0x05,0x30,0x11,0x1c,0x21,0xf0,0x3b,0x71,0x98,0x1c, +0x27,0x48,0xa1,0x22,0x06,0xd1,0x9d,0x89,0xc1,0x89,0x81,0x49, +0x40,0x5a,0x60,0xe4,0xe3,0xeb,0x6f,0x49,0xf3,0xa0,0x87,0xb1, +0x62,0x2c,0x6f,0x6c,0xa0,0xa1,0x8f,0x23,0x1d,0x37,0x56,0xaf, +0xaf,0x30,0xca,0xf1,0xb3,0x13,0xbe,0xf3,0xfc,0x68,0xf5,0x83, +0x15,0x91,0x76,0x19,0x8b,0xba,0xd2,0x3c,0x3c,0x3a,0xe4,0xd3, +0xe6,0xc3,0xb5,0xe5,0x64,0xb7,0xa9,0x8b,0xaa,0xf0,0x84,0x77, +0xdb,0xba,0x72,0xe5,0x52,0x33,0x39,0x15,0xd2,0xdd,0x7f,0x7f, +0xa8,0xfd,0x61,0x28,0x0c,0x91,0xbd,0xe2,0x3e,0x35,0x65,0xd6, +0x68,0xe4,0x3c,0xbc,0x30,0xbd,0xc0,0x58,0x80,0x58,0x18,0x09, +0x5f,0x7e,0xac,0x90,0xd3,0x4d,0x71,0x95,0xf8,0x39,0x4c,0x9e, +0xc1,0x0c,0x90,0x52,0x7e,0x8f,0x80,0x57,0x3e,0xe0,0xf8,0x5f, +0x4c,0x61,0x04,0x11,0x47,0x49,0x51,0x14,0xff,0x03,0xd3,0xc0, +0xb7,0x53,0x3a,0x6f,0x06,0x7b,0x71,0x9a,0xa4,0x6c,0x2a,0x2a, +0x63,0x1d,0xae,0x1d,0x0a,0xf1,0x30,0x5b,0x66,0x28,0xf5,0xea, +0x50,0x02,0xff,0xe1,0xa5,0xff,0x9a,0x53,0xeb,0xa5,0xda,0xeb, +0x67,0x99,0x94,0xd9,0x08,0x1f,0x7a,0xbe,0xff,0xe5,0xea,0x5b, +0x02,0xb7,0xa2,0xe9,0xd3,0x8d,0x37,0xf4,0xee,0x2f,0x68,0xac, +0x12,0x74,0x7e,0xd8,0x74,0x6f,0xfd,0x4d,0xa2,0xac,0xc8,0x66, +0x9a,0xf2,0x5c,0xff,0xe9,0xdb,0x0f,0x55,0xa5,0x3a,0x2e,0xbe, +0x29,0xee,0x6a,0x4c,0x33,0x11,0x7f,0xec,0x96,0x9e,0x72,0x57, +0x9a,0x2e,0x35,0x9c,0xaf,0xd0,0x3f,0x2f,0xec,0xc7,0x11,0xde, +0xb8,0xd8,0x19,0xa7,0x11,0xf1,0x1a,0x67,0x7d,0xd2,0xe6,0xa4, +0x83,0xda,0xe0,0x0a,0x23,0xc5,0x62,0xee,0xb8,0xc7,0x51,0x9f, +0x23,0xc1,0xc4,0x60,0x8f,0x5f,0xe0,0x82,0x49,0x68,0x27,0x67, +0x8b,0x05,0x43,0x0e,0x26,0xd7,0xd5,0xbd,0x4e,0x57,0xbf,0x54, +0x7c,0xb1,0xea,0x5c,0x03,0x01,0xed,0x5e,0x36,0x52,0x35,0x8a, +0x1d,0x34,0xb2,0x3a,0xa4,0x31,0xa4,0xd8,0x74,0xb7,0x90,0xe3, +0x91,0xe9,0x96,0xe8,0x44,0xc4,0x30,0x6c,0xa0,0xb8,0xf4,0xb9, +0x5e,0xbf,0xf1,0x73,0x02,0x99,0xad,0x0c,0x65,0x16,0x94,0x17, +0x34,0x66,0x54,0x6d,0x4f,0x17,0xc2,0x1d,0xfd,0x2c,0x3d,0xed, +0xc8,0xe0,0x28,0x2b,0xc8,0xe4,0xec,0xd6,0x6c,0xdd,0x84,0xeb, +0x74,0x32,0xed,0x84,0x8a,0xa4,0x92,0xa4,0x82,0x64,0xa2,0x58, +0xcb,0xe5,0x46,0x16,0x44,0x96,0xec,0x21,0x83,0xe3,0x41,0xa4, +0xe1,0x15,0x3b,0xea,0x83,0x0b,0xcc,0x43,0x84,0x42,0xaf,0x5c, +0xf7,0x34,0x77,0x22,0x0e,0xb3,0xa0,0x09,0xe1,0x09,0xbb,0x12, +0x77,0x13,0xbc,0xc6,0xc5,0xa7,0xc6,0xa5,0xc5,0xa6,0x13,0x9c, +0x86,0x1b,0x68,0x66,0x72,0x6a,0x4a,0x72,0xaa,0x3c,0x25,0x52, +0x76,0xa7,0xef,0xc9,0x8c,0x20,0xd2,0xbd,0x29,0xd4,0x56,0xfc, +0x4f,0x33,0x8f,0x8b,0x46,0x36,0x4b,0xff,0xb1,0xe5,0x6b,0xb0, +0x92,0x56,0x88,0x79,0x1e,0x03,0xb0,0x77,0x70,0x36,0xee,0xe5, +0xc5,0xb7,0x3f,0x50,0x29,0xef,0x8d,0x98,0xc7,0xf0,0xca,0x6c, +0x45,0x0e,0x45,0x4b,0x73,0x50,0xe1,0x8e,0xe3,0x14,0x25,0xfc, +0xc2,0x12,0xc6,0xb3,0xa7,0x19,0x4a,0x38,0xd6,0x12,0x46,0x33, +0x7b,0xa6,0xa1,0x84,0xf7,0x7e,0x80,0x6d,0x8d,0xb8,0xad,0x1f, +0x16,0xb1,0xf1,0x5b,0xd4,0x05,0x7a,0x8d,0xa8,0x77,0xcb,0x7a, +0x0b,0x6a,0x71,0x01,0xcd,0x76,0x3b,0x0d,0xc2,0xf4,0xa3,0x54, +0x92,0xa4,0x1e,0xa5,0x6d,0xe6,0x7f,0x2f,0xea,0xd8,0xc6,0x0d, +0x0e,0x03,0x0d,0xda,0x86,0x63,0xf9,0xe3,0x30,0x43,0x09,0xc6, +0xb7,0xe1,0x17,0xdc,0x09,0x18,0xdb,0x18,0x7f,0x35,0xa1,0x36, +0x53,0xc5,0x11,0x74,0x4d,0x51,0x03,0x53,0x41,0x63,0x3b,0xea, +0xd8,0x83,0xce,0x22,0xec,0xe4,0x8f,0x81,0x86,0x12,0xf8,0x43, +0x2e,0xfd,0xc9,0x60,0x3e,0x07,0xa7,0x27,0xce,0x1c,0xf8,0x9d, +0xc3,0x05,0x38,0x8c,0x6e,0x9d,0x7f,0x43,0x4e,0x4d,0xf9,0xfb, +0xd6,0x99,0x9c,0xb4,0x55,0x4a,0xa0,0xa0,0x5a,0xf7,0x47,0xdf, +0xa3,0x7e,0xc7,0x0a,0x41,0xcb,0x58,0xc3,0x12,0xbf,0x72,0x21, +0x62,0x35,0x8c,0xa0,0xbf,0xb9,0xc1,0x28,0xa3,0xf7,0xc6,0x95, +0xcd,0xc2,0xbc,0x76,0xfc,0xbc,0x7f,0x7a,0x25,0x51,0x16,0xf7, +0x28,0xbe,0xa6,0x52,0x8a,0xb8,0x5a,0x4c,0x41,0x3f,0x3e,0xb1, +0x24,0xb6,0x34,0xa6,0x98,0x80,0x5f,0xbb,0x74,0xd8,0x02,0x42, +0x98,0x31,0x8e,0xf2,0x89,0xf4,0x22,0xf8,0x1c,0xd5,0x69,0x74, +0xa2,0x1c,0x6c,0xee,0xfa,0xb5,0xa6,0x3b,0x39,0x37,0x48,0x03, +0xbe,0x35,0x83,0x74,0x3e,0xd4,0xc6,0xc7,0xc1,0xde,0x36,0xb8, +0x30,0xb0,0x20,0x28,0xc7,0xcd,0x5d,0xa8,0x76,0xad,0xb1,0x2e, +0x65,0x60,0xd6,0xc0,0x0c,0x16,0x49,0xe6,0xc8,0xcb,0x3e,0x28, +0x3f,0x70,0x4d,0x29,0x29,0x4d,0xea,0xa2,0xe1,0x5f,0xfc,0x61, +0xc7,0x60,0x2d,0x7f,0x8b,0xf6,0x50,0xa1,0xf4,0x56,0xfe,0xab, +0x4b,0xed,0xa4,0x81,0x87,0x91,0x51,0xf4,0x57,0xe8,0x9e,0xcd, +0xdb,0x8c,0x9c,0x81,0xdd,0x1f,0x78,0x5c,0x38,0x12,0xba,0x99, +0x60,0x74,0x73,0x60,0xc7,0x78,0x48,0xa7,0xef,0x43,0xeb,0x56, +0xbb,0xd2,0x7a,0xc1,0xaa,0x5e,0xa7,0xc9,0xb4,0x98,0xe0,0x5b, +0xdc,0x44,0x9f,0x96,0xf7,0x35,0xb4,0xb6,0x3a,0x95,0x09,0x8e, +0x76,0xdb,0x9d,0x74,0xfc,0x19,0xed,0xf0,0x51,0xbc,0xa4,0x3e, +0x68,0x6e,0x8a,0xb3,0x97,0x7c,0x5a,0xbc,0xcd,0xcb,0xae,0xc8, +0x6a,0x20,0x52,0x76,0xa7,0x62,0x1a,0x9f,0x7b,0x3f,0xeb,0xdb, +0x84,0xb7,0x44,0xb1,0xc9,0x90,0x62,0xc3,0x5d,0x23,0x5d,0xec, +0xc4,0xc3,0x1c,0x56,0xed,0xc1,0x99,0x66,0x38,0x55,0xad,0xd5, +0xb3,0x0f,0x16,0x26,0xc3,0xfc,0xd3,0x50,0xae,0x02,0x99,0xfa, +0x18,0xec,0x04,0xc1,0xa6,0x18,0x22,0xad,0x69,0x83,0x05,0xb0, +0x16,0xd5,0x3b,0x40,0x1d,0xf4,0x16,0xe2,0x48,0x2e,0xde,0x5e, +0xe9,0x2d,0x57,0x97,0x90,0x50,0xa7,0x0e,0xbf,0x61,0x54,0x17, +0x43,0x18,0x23,0xea,0xea,0x9c,0xfe,0xc0,0x88,0x2e,0xc8,0xe6, +0xa5,0x7a,0x53,0xea,0x0c,0xc1,0x46,0x98,0x09,0x2b,0x21,0xd3, +0x94,0x87,0xbd,0xd3,0x28,0xea,0xf6,0x82,0x2e,0x87,0xba,0xa8, +0x45,0xaf,0x81,0xae,0x3e,0x8f,0x7b,0xd1,0x8f,0xe2,0xda,0x01, +0x58,0xcb,0xc1,0x01,0x03,0x8a,0x7a,0x03,0xa0,0xc7,0x49,0xb3, +0x70,0x38,0x33,0x3f,0x5b,0x99,0x08,0x43,0xe8,0x0d,0x0a,0x7a, +0x5b,0x51,0x8f,0x53,0x56,0x6c,0x62,0xfa,0x61,0x3b,0x9a,0xe3, +0x54,0x13,0x98,0xca,0xa6,0x58,0x92,0x1b,0x2e,0x5b,0x88,0xdf, +0xec,0xfc,0xde,0x13,0x46,0x79,0xbc,0xb2,0xde,0x29,0x64,0x5a, +0x65,0x6e,0x4d,0xd5,0x37,0x8c,0x58,0xbf,0x7b,0xdd,0xde,0x5f, +0x61,0xc9,0xbf,0xc1,0x7f,0x00,0xb4,0x2c,0x73,0x85,0x1d,0xab, +0xbc,0x16,0xb9,0x2e,0x0a,0xa9,0x0a,0xac,0x09,0xaa,0x68,0x7e, +0xdf,0x08,0x7c,0x09,0x0c,0xb3,0xc8,0x16,0x02,0xe7,0xba,0x4e, +0x75,0x5c,0xb8,0x3b,0x27,0x22,0x63,0x6f,0x8a,0x2b,0xa3,0xc3, +0x7a,0x0f,0x66,0x76,0x6a,0x3a,0xcd,0xb7,0x5d,0x6c,0xab,0x6d, +0x76,0x48,0x88,0x35,0x82,0x91,0xc9,0x30,0xa5,0xf8,0x8f,0x22, +0x95,0xf3,0x11,0xec,0x8a,0x6c,0x4c,0x11,0xa2,0xa3,0xa2,0xf7, +0x1f,0x8c,0x6a,0xb4,0x13,0x80,0xc2,0x72,0x86,0x53,0xce,0x43, +0x27,0x93,0x64,0x0e,0xa3,0x8f,0xe2,0xea,0xfd,0xb3,0xd4,0x0c, +0x0e,0xef,0x8b,0x34,0x9a,0xa4,0xc1,0x25,0x19,0x29,0xbd,0xe7, +0x5e,0x16,0x95,0xbf,0xbc,0xa2,0x9e,0x20,0x9f,0x8a,0x59,0x08, +0x03,0xaa,0x72,0xd2,0x43,0x71,0xf3,0x0f,0xd4,0xa1,0xce,0xa9, +0xd2,0xb9,0xac,0x15,0x94,0xf2,0x61,0x62,0x1c,0x2c,0xfb,0x94, +0xc1,0x6f,0x20,0xe6,0x9f,0x70,0x49,0x96,0x07,0x0d,0xa2,0xf4, +0x08,0x8e,0x32,0xf9,0x43,0x0e,0xe5,0x39,0x75,0xc7,0x9a,0x16, +0xaf,0x16,0xef,0x66,0x37,0x17,0x2d,0xd3,0xcd,0x1b,0xf4,0x87, +0x42,0x79,0xf6,0xde,0x6b,0x78,0x51,0xed,0x5d,0xed,0x59,0xeb, +0x4a,0xc4,0x0e,0xf8,0x81,0x71,0xac,0x4b,0x71,0x3c,0x9c,0xe6, +0xef,0xa4,0xdc,0xcc,0x68,0xcb,0x09,0xbc,0x2a,0x20,0x6f,0x89, +0x7a,0xee,0xa8,0xb1,0x27,0xde,0x58,0xe8,0xba,0x78,0x27,0xf6, +0x5e,0x12,0xc1,0x28,0x7e,0x3f,0x7a,0x9a,0x80,0x1b,0xbf,0x17, +0x17,0x6d,0xc2,0x61,0x8c,0x40,0x4c,0xad,0x62,0xc8,0x75,0x01, +0xa8,0xbf,0x80,0x2f,0xce,0xc2,0x64,0xa6,0x5e,0xcf,0xe1,0x37, +0x2f,0x71,0x2c,0xac,0xc2,0x19,0x55,0x0c,0xb9,0x6e,0x84,0x99, +0xda,0x7f,0xee,0x85,0x05,0x44,0xea,0x76,0xf8,0x9f,0x60,0x49, +0x9f,0x7f,0x0a,0x96,0xc4,0x39,0xcc,0xf0,0xca,0xf3,0xce,0xf6, +0xc9,0x62,0x6a,0xf2,0x6f,0x85,0x0e,0xc5,0xf1,0xdd,0xa0,0x27, +0x69,0xbe,0x33,0xd4,0x94,0x54,0x51,0xaf,0x9b,0x41,0x9f,0x68, +0x46,0x6c,0x60,0x74,0xc7,0x87,0xbb,0xd7,0xef,0x3b,0x95,0x08, +0x3a,0x1b,0xe6,0x1b,0xe3,0x67,0x0e,0x44,0x3c,0x02,0xdf,0xd0, +0x0f,0xe6,0xaf,0xcd,0x3f,0xae,0x2f,0x6f,0x14,0xa6,0x3e,0x5c, +0xd4,0x3d,0xeb,0x2a,0x81,0x5f,0x19,0x42,0xc5,0x73,0x2f,0xf1, +0xcb,0xef,0x4c,0x7f,0x25,0x7a,0x9c,0xe9,0x2c,0x1c,0xb5,0x02, +0x4f,0xae,0xc8,0x35,0x11,0x5a,0x52,0xea,0x53,0xaa,0x52,0x08, +0xde,0xef,0xbf,0x2a,0x7a,0x5a,0xf7,0xc3,0x3d,0xbe,0x3a,0xa2, +0x61,0x4f,0x4b,0x04,0x19,0xf4,0xe9,0xa1,0xb0,0xf8,0xfe,0xab, +0x07,0x45,0x0c,0x75,0x73,0xc5,0x8b,0x7e,0xd8,0x08,0xab,0x37, +0x12,0x29,0x01,0x77,0x50,0x58,0x26,0x7a,0xca,0xd1,0x9d,0xff, +0x1e,0x2e,0x9e,0xa7,0x2f,0x1a,0x57,0xfd,0x89,0x15,0xd7,0x01, +0xae,0x4a,0xe3,0x6f,0xe8,0x6d,0x95,0xc6,0xe3,0x41,0x0e,0xcb, +0x77,0xe3,0x32,0x13,0x1c,0xad,0xd6,0x68,0xa7,0x74,0x4b,0xf6, +0x1a,0x32,0x80,0x1a,0x55,0x76,0x83,0x6d,0x58,0x64,0x0f,0x45, +0xa6,0xf8,0xc4,0x1e,0x9e,0x18,0x61,0xb9,0x03,0x94,0x1b,0x62, +0xb1,0xb4,0xbc,0x03,0xe6,0x42,0x38,0xce,0xe8,0x80,0x19,0x70, +0x7c,0x1e,0x7e,0xc1,0xc7,0xd9,0x2b,0x7d,0xe0,0xea,0x53,0x93, +0x98,0x41,0xf9,0x37,0x5e,0xed,0x83,0x0a,0xde,0x14,0xfc,0x98, +0xd1,0x8a,0xe8,0x62,0xe8,0x7a,0x2a,0x35,0xc2,0x88,0x5e,0xde, +0x1c,0x8b,0x29,0x86,0x0f,0xc8,0x00,0xe6,0x2a,0x9b,0xd1,0xc7, +0x07,0xe0,0x38,0x27,0xa5,0xc9,0x33,0x3a,0x5c,0x1f,0x59,0x61, +0xf1,0x35,0x0a,0xc7,0xf5,0xf1,0x38,0xa7,0x0c,0xf7,0xc5,0x39, +0x74,0x47,0x94,0x5f,0x94,0xdf,0x7e,0x79,0xd5,0xed,0xb3,0x0e, +0xfc,0xec,0xd3,0x41,0xf1,0xd1,0xe6,0x30,0x1a,0xcf,0xf1,0xce, +0x7b,0xff,0xe7,0xa0,0x78,0x65,0x6c,0x65,0x82,0xbc,0xea,0x36, +0x4c,0x5e,0x75,0xfb,0x5f,0x27,0xc5,0x5b,0xf8,0xd2,0xf8,0xd2, +0x84,0x92,0x24,0xd2,0x2d,0x5a,0x53,0x6c,0x11,0xcf,0xb1,0x12, +0xc9,0x02,0xc7,0xd1,0x87,0xa2,0x8a,0x16,0x2f,0xa9,0xe0,0x57, +0xf4,0x99,0xa8,0xb2,0x86,0x67,0x40,0x8a,0xa3,0xd2,0x07,0x6b, +0x50,0xe5,0x1c,0xb4,0x37,0x9a,0xcf,0x70,0xc8,0xb6,0x13,0xae, +0x15,0xb4,0x16,0xd5,0x54,0x12,0xf8,0x92,0xb3,0xdc,0xa0,0xb3, +0x1d,0x47,0x98,0xe5,0xd9,0x33,0x2e,0xd3,0xff,0xea,0xd9,0xc0, +0x6f,0x04,0x86,0x73,0x36,0xc8,0xaf,0x5b,0x8c,0x2a,0x5a,0x05, +0x0e,0x02,0x4c,0xfb,0xf6,0xcd,0x6f,0x1d,0x30,0x9d,0x5c,0xe7, +0xd6,0x9f,0xd0,0x8f,0xde,0xae,0x66,0x71,0x78,0x5f,0xd4,0xf6, +0x49,0xcb,0xb9,0x24,0x5b,0xa5,0x47,0xdc,0x9b,0x92,0xec,0x57, +0x31,0xea,0x97,0xef,0x9d,0xbb,0x76,0x5a,0xce,0x18,0xb3,0x89, +0x4b,0x49,0x4f,0xca,0x4a,0xcc,0x96,0xa3,0x08,0x28,0xc3,0x63, +0x71,0xee,0xff,0x2f,0x07,0xe1,0xdb,0xc5,0x70,0x8a,0x4b,0xfc, +0xd0,0x72,0x37,0xba,0x1c,0x8b,0x65,0x38,0xc6,0xe2,0x02,0x38, +0xa5,0xc0,0xa6,0x32,0x52,0x2c,0xc5,0x30,0x4a,0x55,0x0b,0xa3, +0x20,0xbf,0x03,0xa7,0xf0,0x65,0x7d,0xe5,0x4f,0xd2,0xaf,0x9b, +0xa7,0x09,0x61,0x9b,0xdc,0x16,0xb8,0x19,0x10,0x49,0xc5,0x1c, +0x2e,0x32,0x8a,0x9b,0x6f,0x06,0xf9,0x78,0x10,0xb7,0xc2,0x06, +0x23,0xcc,0xef,0x6d,0x11,0xb7,0xd8,0xf4,0x42,0xbe,0x11,0x6e, +0x40,0x0b,0x38,0xc8,0x65,0x40,0x25,0x8d,0xaa,0x0f,0xba,0xb1, +0xb3,0xd2,0x32,0x5c,0xc8,0xf0,0xcc,0xdf,0x1a,0xe7,0x44,0x70, +0x62,0x3c,0x8d,0xac,0x0b,0xec,0xd8,0x59,0x66,0x1d,0x26,0x64, +0xf9,0xe4,0x9a,0x25,0xba,0xb0,0xf9,0x2e,0x28,0xf6,0xd2,0xb7, +0xc6,0x0b,0xb1,0xc1,0x4a,0xb1,0xa0,0x95,0x67,0xa6,0xf0,0x07, +0xba,0x63,0x9f,0x3f,0x1b,0x40,0xd6,0xbc,0xdf,0x3b,0x67,0xc2, +0x76,0x53,0xdc,0x2e,0x27,0x03,0xbd,0xc0,0xbb,0x47,0xb9,0xef, +0xf7,0x88,0x8e,0x31,0x15,0x4a,0xaf,0x94,0xc6,0x96,0xb2,0xa6, +0x15,0xcc,0xe1,0x13,0x0d,0x59,0x7f,0x35,0x24,0xa6,0xd5,0xc8, +0x23,0x57,0x92,0x50,0x9a,0xc8,0x46,0x8e,0xd9,0x97,0x47,0x14, +0x26,0xfc,0xd5,0x3c,0x05,0xc8,0xd0,0x0d,0x94,0xaf,0xe2,0x28, +0x3e,0xa5,0x34,0xb9,0x32,0xa6,0xd4,0x36,0x51,0x38,0xe0,0xb6, +0xcb,0x3e,0xdc,0x83,0x2c,0xe5,0xd8,0x3f,0x57,0xc7,0xd5,0xda, +0x26,0x09,0x41,0x33,0x6d,0xa6,0x6d,0x5e,0x56,0xe4,0x2e,0xa4, +0xa4,0xc7,0xa7,0xc4,0xa4,0x10,0x29,0xa4,0xbd,0x05,0xaa,0x5b, +0x79,0xc9,0x1c,0x3c,0xa9,0xf7,0x61,0x8f,0x23,0xee,0xc7,0x1e, +0xc1,0x88,0x3e,0x20,0xb5,0x30,0xdc,0x2e,0x4b,0x08,0x35,0x0a, +0x30,0xf4,0x33,0xda,0x93,0x12,0xc1,0xae,0xf2,0xfe,0xc2,0x87, +0x69,0x7d,0xd6,0xa9,0xc2,0x1e,0xa3,0x40,0x3d,0x3f,0xf3,0x83, +0x57,0x0e,0x5c,0x3e,0x78,0xd9,0xd7,0x43,0x68,0x76,0xab,0x77, +0xaa,0x74,0x0a,0x76,0xd8,0xe1,0xe4,0xef,0x62,0x71,0x42,0xb8, +0x68,0xfd,0xe0,0xfc,0xdd,0x2b,0xd7,0x63,0x55,0x5c,0x96,0x6e, +0xd1,0xd3,0xb4,0x2e,0x65,0x53,0x60,0xce,0xb3,0xef,0x61,0x7c, +0x2e,0xac,0xb2,0x4e,0x11,0x8e,0x05,0x1f,0x0d,0x39,0x1c,0x4a, +0x60,0x09,0x63,0x40,0xec,0x9b,0x91,0xf0,0x53,0x70,0xcd,0x3f, +0x4f,0xb6,0x23,0x71,0xc2,0x14,0x98,0xc0,0xb0,0xdc,0x57,0x8a, +0x26,0x6a,0x07,0x76,0xba,0x68,0xec,0x08,0xc6,0x5a,0xe8,0x68, +0xcf,0xc0,0x5c,0x2d,0x5f,0x34,0xd1,0x0e,0xbc,0x74,0xd1,0xde, +0x11,0xec,0xb5,0xd0,0xcf,0x1e,0x32,0x59,0x19,0x06,0x0d,0x96, +0xd0,0xd7,0xe0,0xd2,0x80,0x2e,0x2f,0xc0,0xa5,0x11,0x5d,0x9e, +0xc3,0xee,0x26,0x0c,0xe1,0x13,0x33,0x65,0x07,0x37,0xcb,0x21, +0x07,0x37,0xff,0x70,0x3f,0xc2,0x8c,0x41,0x7c,0x56,0x6c,0x4e, +0x4c,0x8e,0x4d,0xa2,0xb0,0x63,0xb5,0xf9,0xf2,0x4d,0xdb,0x88, +0x98,0x8b,0x67,0x07,0xef,0xf4,0xbd,0x05,0x13,0x70,0xe6,0x8b, +0x5d,0x32,0x32,0xd3,0x32,0x53,0xb3,0x54,0x24,0xe5,0xae,0x5a, +0x31,0xa8,0x99,0x1f,0xdc,0x2c,0x7a,0xc9,0x19,0x03,0x53,0x19, +0x34,0x41,0x15,0x39,0x07,0xa8,0x0a,0xb3,0x72,0x2a,0x1c,0xfc, +0x0a,0x4b,0xe9,0x73,0xd8,0xb6,0x9a,0xc7,0x6d,0xf8,0x35,0x7d, +0x01,0xdb,0x3e,0x79,0xc1,0x6d,0x7b,0xcd,0x2b,0x43,0x15,0x23, +0x99,0x87,0x13,0x8e,0xfc,0x6b,0x7f,0xf4,0x01,0x39,0x81,0x9f, +0x2a,0x8c,0x6b,0xc7,0x71,0x60,0x6c,0x86,0xc6,0xa8,0x6a,0x01, +0x13,0x64,0x27,0x32,0x0f,0x9c,0xbe,0x04,0xbf,0xa8,0xb0,0x13, +0xee,0xc8,0xd9,0x21,0xe5,0xf0,0xc4,0x69,0x9d,0x43,0x4e,0x64, +0x72,0x28,0x96,0xdb,0x38,0xbb,0xb4,0x42,0xe9,0x86,0x18,0x2c, +0xcb,0x63,0x98,0x2c,0x8f,0x6b,0x87,0xe4,0x71,0x18,0x93,0xc7, +0x61,0xf8,0x25,0x93,0xc7,0x61,0x4c,0x1e,0x95,0x98,0x15,0x97, +0xee,0xd8,0xb0,0xf7,0x39,0x6f,0xde,0x6a,0xbe,0xc8,0x29,0xc7, +0x5e,0x68,0xcf,0xab,0x2f,0x28,0x2f,0x95,0x33,0x6d,0xda,0x6e, +0xd8,0x62,0x30,0xdd,0x34,0x8f,0xf5,0xfa,0xc8,0x81,0x17,0xcf, +0xba,0x7f,0x63,0x04,0xda,0x01,0x89,0xf6,0x22,0xfc,0x42,0xab, +0xc0,0x51,0x00,0xd5,0x6f,0x5f,0xfe,0x76,0x15,0x66,0x90,0x5e, +0x26,0x8d,0x5b,0xa2,0x0d,0xd5,0x2c,0x8f,0xec,0xdb,0x6f,0x32, +0x69,0x99,0x2c,0x8d,0x8f,0xb9,0x57,0x45,0xd9,0xdf,0x32,0x69, +0xbc,0x7b,0xf6,0xf6,0x69,0x18,0x47,0xa4,0x85,0x5c,0x4a,0x46, +0x62,0x66,0x62,0x0e,0x11,0x55,0x98,0xf9,0x79,0xa8,0xd8,0x49, +0x23,0xab,0xc2,0x4b,0x77,0xe5,0xdb,0x86,0x0b,0xe9,0xfe,0x69, +0xde,0x49,0x9e,0x04,0xce,0x4b,0xd7,0x68,0x7f,0x45,0x73,0x53, +0x79,0xbd,0x5b,0xb1,0xe0,0xed,0x60,0xe3,0x64,0xe6,0xe3,0xd7, +0x18,0xd9,0x74,0xac,0x87,0x40,0x62,0x1b,0x16,0x7e,0x80,0x53, +0x57,0xf1,0xd4,0x4f,0x90,0xd2,0x8a,0x6b,0xb8,0xcc,0x92,0xd4, +0xca,0xe4,0x3a,0xf3,0x64,0x61,0xaf,0x7d,0x98,0x7d,0x80,0x2b, +0xc1,0xd7,0x56,0x10,0x3d,0x1f,0x03,0xac,0x21,0x60,0xc6,0x90, +0xdb,0x19,0x82,0xbc,0xf8,0x60,0xa5,0xc4,0x14,0x4d,0x75,0x52, +0x52,0xa5,0x3a,0x64,0x5c,0xe0,0x2f,0xce,0xea,0x59,0x04,0x5b, +0x71,0x54,0xf1,0x55,0x61,0x7d,0xb3,0x49,0x9d,0x6b,0x1d,0x91, +0x8e,0xc1,0x3d,0xb9,0x93,0x4f,0xff,0xd3,0xc9,0x2a,0x30,0xb2, +0x1d,0x47,0x7e,0xea,0xe4,0x49,0x16,0xf0,0x05,0x63,0x84,0x5f, +0x78,0xe2,0xf4,0xc5,0xff,0x74,0x72,0xee,0xff,0xa5,0x93,0x1f, +0xe0,0xe2,0xf2,0x4a,0xa5,0x14,0x17,0x5a,0x17,0xd2,0xee,0x52, +0xee,0x59,0x52,0x29,0x78,0x54,0x9a,0x57,0xbb,0x64,0x10,0x18, +0x8f,0x73,0xa8,0x99,0xe9,0x1a,0xcb,0x65,0xde,0xb9,0xb6,0xc2, +0xab,0xaa,0xef,0xba,0xba,0xe4,0x03,0x26,0xd3,0xc0,0x47,0x66, +0xb3,0x97,0xba,0xf0,0x12,0x2c,0x85,0xca,0x1e,0xdc,0xcc,0x17, +0xd6,0x15,0x74,0x64,0x75,0x98,0x66,0x08,0x81,0xdb,0x03,0x4c, +0xdd,0x4c,0x88,0xc4,0x1b,0x43,0x1a,0x2e,0xc5,0x63,0xa6,0x70, +0x8c,0x11,0xc3,0x26,0x13,0x68,0xc2,0x88,0x7e,0x86,0x67,0x5a, +0xbb,0x39,0x69,0xba,0x18,0x42,0x43,0x5b,0xfc,0x3a,0x82,0x2b, +0x2d,0x02,0x85,0x3c,0xe7,0x02,0x9b,0x0c,0x46,0x6d,0xe6,0xc0, +0x04,0x7a,0xdd,0xab,0xdb,0xbd,0x43,0xf6,0xb4,0xb1,0xaa,0xd3, +0xaf,0x35,0x28,0x26,0xcb,0x18,0x4e,0xbe,0xe5,0x71,0xc3,0xa1, +0xc7,0xae,0xac,0x51,0x30,0x6f,0xdc,0xd8,0xb2,0xb9,0x94,0xe4, +0x0c,0x6a,0xd0,0x07,0x7f,0x76,0x81,0x6a,0xd1,0x1f,0xe6,0x19, +0x8c,0x22,0x7f,0x66,0x83,0xa3,0x74,0xe7,0xb0,0xaf,0xfa,0x43, +0x61,0x4a,0x51,0xa9,0x1b,0x56,0x63,0x91,0x9c,0xaf,0x26,0x1d, +0x57,0x77,0x81,0x12,0x3f,0x2f,0x85,0x3a,0x55,0x5a,0x55,0x59, +0x17,0xfa,0xb2,0x39,0xe1,0x53,0xef,0xd5,0xe0,0x4a,0x20,0x6d, +0x27,0x75,0x58,0x6f,0x60,0x3e,0xcb,0x31,0xd7,0x46,0xf8,0xd8, +0x7c,0x77,0xa0,0xed,0x35,0x9b,0x27,0x51,0xf4,0xa9,0xe5,0x5d, +0xa3,0xc7,0xeb,0xca,0xab,0x04,0xad,0x47,0x6b,0xae,0xaf,0x6f, +0x26,0x92,0x0b,0x6e,0xa1,0x0e,0xb5,0x06,0xcd,0xc6,0x65,0x3e, +0xf6,0x42,0x97,0x67,0xb7,0x63,0x8b,0x23,0x51,0x1c,0x47,0xc6, +0x0f,0xd7,0xde,0x43,0xa5,0x6f,0x3d,0x7f,0x22,0x46,0x9c,0xd7, +0x82,0xa9,0x2b,0x70,0xfd,0x96,0x2c,0x2b,0x21,0x3f,0x36,0x37, +0x2e,0x87,0x69,0xa6,0x1f,0x7a,0x7b,0xe0,0x9d,0x71,0x2f,0xbc, +0xe5,0x73,0xa3,0xf2,0xa2,0x0a,0xa3,0x88,0x54,0xd4,0x42,0x41, +0xa9,0xe7,0xf1,0x9d,0xd4,0x47,0xcc,0xc0,0xa6,0x68,0x3f,0xda, +0x0c,0x64,0x3b,0x19,0x0c,0xc4,0x57,0xf4,0x36,0x0c,0x6b,0x05, +0xd5,0xbc,0x7f,0x16,0xe8,0x9d,0x86,0x16,0xe8,0xc5,0x6f,0xe0, +0x08,0x85,0x77,0xa8,0x87,0xef,0x98,0xca,0xdf,0x05,0x51,0xf4, +0xd8,0x99,0xf8,0x5b,0x17,0xaf,0x9d,0xf9,0x5e,0xa5,0xab,0xaf, +0xb6,0xab,0xf2,0x16,0x31,0xe9,0x04,0x4e,0x5c,0x8b,0x5c,0x17, +0x6b,0xeb,0x49,0xb9,0xad,0x51,0xf3,0x78,0xaf,0x12,0x7f,0x13, +0x5f,0x5b,0x4f,0x27,0x15,0x68,0x34,0xc5,0x2e,0x1e,0x93,0x76, +0xe0,0x78,0xfc,0x02,0x75,0xd4,0x1a,0x9c,0x1f,0x7c,0xac,0x78, +0x9d,0xf1,0x46,0xe5,0xf4,0x50,0x54,0x79,0x66,0x28,0x0c,0x84, +0xc6,0x2a,0xe4,0x40,0xf7,0x50,0xfc,0xc1,0x33,0xfb,0xa3,0x55, +0x70,0x85,0x38,0x8b,0x9e,0xc4,0x11,0xd1,0xf3,0x03,0xd7,0x5e, +0x0d,0x15,0x0a,0xde,0xc6,0x7c,0x3c,0x2d,0x9f,0x2d,0x4a,0xc1, +0x08,0xfa,0x7d,0xf3,0xc0,0xf5,0xfa,0x57,0x4e,0x39,0x82,0xc7, +0x06,0x73,0xb3,0x65,0x0e,0x04,0xbe,0x85,0xa9,0xf4,0xb6,0x79, +0x8f,0xf1,0xb5,0x75,0x95,0xe5,0x82,0xc1,0xc3,0xcd,0x37,0xb7, +0x35,0x13,0x08,0x95,0xc6,0x50,0xd4,0x7c,0x38,0xf7,0x5b,0xdf, +0xef,0x89,0x19,0xe7,0xbb,0x64,0xf1,0x72,0x9c,0xbb,0x29,0xcb, +0x5a,0xc8,0x8a,0xcd,0x88,0x4d,0x8f,0x65,0xd3,0xba,0xbb,0x07, +0x5a,0x8d,0x7b,0xe0,0x0d,0x9f,0xbe,0x3f,0x8b,0x5d,0x44,0x0a, +0x6c,0xa0,0x1f,0xfa,0x6e,0xdc,0x4e,0x91,0x3b,0x24,0x49,0xfb, +0xd6,0xe6,0x3f,0x0d,0x08,0xfe,0xdb,0x8a,0x42,0x2b,0x6e,0x91, +0x17,0x6d,0x61,0x92,0x78,0x81,0x09,0xfc,0x5e,0x24,0x1b,0x70, +0x8c,0x5a,0xab,0x63,0xdb,0x77,0xb9,0xdf,0xc5,0xc1,0x54,0x15, +0xa8,0xc6,0x86,0x01,0x68,0x80,0x66,0x3c,0x8c,0xeb,0x87,0x88, +0xe0,0x3c,0xae,0x2e,0x2d,0xb5,0x46,0x5d,0x51,0x39,0x78,0x85, +0x67,0x7d,0x76,0x99,0x62,0x11,0xd8,0x41,0x11,0x37,0x80,0x76, +0x94,0x3d,0x34,0xa3,0x1d,0x3f,0xa8,0x8a,0x67,0xe9,0xd9,0x8e, +0x33,0x03,0xf7,0x55,0xa1,0x08,0xad,0xb8,0x01,0x60,0x15,0x35, +0xa3,0x15,0x36,0x33,0x19,0x4e,0x85,0x34,0xd6,0xd7,0x57,0xf1, +0xdd,0x0b,0x51,0xb5,0x15,0xcf,0x73,0x69,0xf9,0x69,0x65,0x09, +0xf9,0xce,0x49,0x02,0x28,0x71,0xe5,0x89,0xb1,0x79,0xea,0xe5, +0xbc,0x79,0x9c,0x92,0x0b,0xce,0xe0,0xbd,0x0f,0x5d,0x2c,0x54, +0x6f,0x85,0x5c,0xdd,0x3e,0xf8,0x42,0x5a,0xf0,0xc0,0x50,0x5b, +0x52,0xc3,0x49,0x7d,0xcf,0xe0,0x38,0xef,0x6f,0xb0,0xd2,0x03, +0xd5,0xf6,0x25,0x59,0x31,0x08,0x98,0xfa,0x7b,0x4b,0xed,0xaf, +0xe4,0xf7,0x8d,0x9c,0x6d,0x7a,0xe4,0x80,0x5a,0x29,0x17,0xe9, +0x1d,0xea,0x12,0xec,0x43,0xa4,0xd3,0x56,0xe2,0xe8,0x55,0xf8, +0xdc,0x1a,0x9e,0x2f,0x96,0x16,0x58,0xfe,0x3d,0xb1,0x4d,0xda, +0xc0,0xe1,0x41,0xf1,0x33,0x9a,0x12,0x9e,0xe9,0x13,0x17,0xd2, +0x9a,0x25,0xec,0xcf,0x09,0x2f,0xda,0x9d,0x49,0x44,0x1d,0x29, +0x92,0x56,0xdb,0xb3,0x09,0x6b,0xd2,0x95,0x27,0xf8,0xf4,0x38, +0xb7,0xba,0x55,0x91,0x41,0x47,0x34,0xa1,0xbd,0x6d,0x35,0x1d, +0xb9,0x6d,0x96,0x4c,0xc4,0x6c,0x5d,0x6c,0x8c,0xed,0x88,0x78, +0x11,0xc6,0xd1,0x4c,0xdb,0x34,0xeb,0x04,0xf3,0xfe,0x78,0x21, +0xb2,0x3b,0xfc,0x6a,0x48,0x03,0xc1,0xcc,0x28,0x1a,0x67,0x75, +0xc9,0xfe,0x82,0x51,0xdf,0x25,0xe1,0x58,0x6f,0x74,0xcb,0xbe, +0x26,0xc6,0xbe,0xd2,0x61,0x0f,0x43,0xd8,0xf0,0x57,0x0f,0xfe, +0x05,0x73,0xc5,0xc9,0x3d,0x78,0x84,0x2f,0x6b,0x2e,0xea,0xcd, +0x68,0x34,0xcd,0x14,0x76,0x9a,0x79,0xe9,0x3b,0x1a,0x11,0x29, +0xc5,0x58,0xfc,0x1c,0xe7,0xe2,0x0f,0xc6,0xf0,0x03,0x2e,0x97, +0xe6,0x18,0x8b,0x73,0xf0,0xf8,0x75,0x38,0x2e,0xae,0xee,0xe1, +0xa4,0xeb,0xa2,0x0f,0x0d,0x69,0xf6,0x6f,0xf1,0xa9,0xb3,0xdc, +0x21,0x14,0x3b,0x17,0xda,0x66,0xd9,0x31,0x42,0x74,0x4b,0x5c, +0x48,0x1f,0x77,0xe2,0x14,0x91,0x98,0x4b,0x04,0xe7,0x98,0x3d, +0xd9,0xc8,0xa1,0xc6,0x6e,0x9c,0x60,0x80,0xc3,0xd4,0xea,0xbd, +0x95,0xee,0xc2,0x57,0xa9,0xf0,0x35,0xac,0x56,0xbd,0xf1,0x4c, +0x1a,0xce,0x87,0x45,0x87,0x46,0xef,0x3c,0x94,0x68,0x22,0x3c, +0x28,0xec,0xcd,0xbb,0x56,0x72,0xa4,0x4b,0x08,0xda,0x17,0x14, +0x15,0xb8,0x9f,0x7c,0x50,0xec,0xfa,0xbf,0xf1,0x02,0x2f,0xf8, +0xe4,0x05,0x6e,0xe8,0x08,0x86,0x1b,0xd0,0xc1,0x01,0x2e,0xcb, +0x5e,0xe0,0x45,0x18,0x47,0x0f,0x3e,0x08,0x7d,0xb5,0xa7,0xdd, +0x31,0x42,0x48,0x36,0x4f,0x5f,0x11,0xa3,0x45,0xe0,0x0c,0x1c, +0xa0,0x07,0x74,0x77,0xad,0x0a,0x37,0xaa,0xdb,0x25,0x64,0xf4, +0x65,0xbe,0x8e,0xb9,0x4b,0xe0,0x87,0xc1,0xd0,0xff,0x17,0x27, +0xef,0xbd,0xff,0x38,0x79,0xc7,0x65,0xc7,0x66,0xc7,0xfc,0x3f, +0x3a,0x79,0x5b,0x35,0xf3,0x92,0xd5,0x90,0x93,0xb7,0xd6,0x2a, +0x1e,0xb5,0x86,0x9c,0xbc,0xb5,0x3e,0x99,0x37,0x2d,0xd9,0xbc, +0x3d,0x51,0x68,0xd2,0x6e,0xf8,0xce,0xa4,0xbb,0x1b,0xa2,0x5b, +0x31,0xba,0xc7,0xc4,0x18,0xbf,0x93,0x6f,0x21,0x56,0x10,0x62, +0xc2,0x2b,0xd6,0x48,0xa7,0x68,0x9b,0xb4,0xe6,0xb9,0xf8,0x55, +0xf3,0xe0,0x74,0x30,0x05,0x6d,0x1c,0x27,0x8e,0x81,0x71,0x43, +0xc9,0x7b,0x9f,0x9b,0xac,0xc6,0x2b,0xf2,0x4d,0x5b,0xbe,0xc9, +0x19,0x7c,0xf1,0x30,0xa4,0xaf,0x96,0x34,0x2d,0xc5,0x91,0xbc, +0xa9,0x21,0x72,0x2e,0xe8,0xeb,0x28,0x7b,0xf4,0x9f,0xea,0xfe, +0xb3,0xba,0xe6,0x2d,0xb9,0x88,0x21,0xbd,0x10,0x72,0x81,0xab, +0x5e,0x08,0xca,0xae,0x70,0xda,0x44,0xf6,0xe8,0x0f,0xac,0x47, +0xe5,0x1a,0xe3,0x3e,0x02,0x7a,0xd0,0x4a,0xf1,0xca,0x03,0xb8, +0xc2,0xc9,0xc9,0x37,0x46,0xd1,0x87,0x90,0xaf,0xd5,0xfb,0x10, +0x62,0xda,0x30,0xe6,0x81,0x91,0x36,0xe6,0x3f,0x30,0xd6,0xc6, +0x63,0x96,0x70,0x4c,0x8b,0x57,0x4c,0x90,0xcf,0xde,0x2e,0x91, +0xe6,0xbe,0x30,0x5c,0x25,0x4d,0xc2,0x25,0x3d,0x7f,0x28,0x22, +0xa6,0xf1,0x83,0xd1,0x38,0x81,0xc2,0x67,0x55,0xbf,0x75,0xde, +0xbc,0xe5,0x54,0x2c,0x6c,0xde,0xba,0xca,0x95,0x7d,0x00,0xe3, +0x18,0x7f,0x52,0x18,0x66,0xfd,0xc8,0xe5,0x17,0x83,0x92,0x7a, +0x61,0xda,0xf5,0x35,0x8d,0x73,0x6b,0x09,0x13,0xb3,0x9b,0x14, +0x2f,0x3e,0xc4,0x2f,0x1e,0x99,0xfe,0x40,0xb6,0x72,0x66,0x0b, +0x51,0x49,0x0b,0xcf,0x69,0x67,0x98,0x0a,0x57,0x93,0xea,0x13, +0xab,0x19,0x41,0x8a,0xef,0xa9,0x16,0xc3,0x5c,0x7b,0x21,0x96, +0xaf,0xde,0x5b,0xbf,0xb7,0x65,0x2f,0x19,0x5c,0xfc,0x4c,0xa6, +0x30,0x37,0x7b,0x0a,0xee,0x33,0x89,0x2f,0xd4,0xbe,0x6b,0x02, +0xe3,0xcc,0x89,0xe4,0x86,0x36,0x14,0xa6,0x8b,0x61,0x28,0x1f, +0xb9,0xdc,0xa4,0xc8,0xa7,0xff,0x61,0x48,0xb6,0x4e,0x13,0x23, +0x71,0x2f,0xb4,0x71,0xbb,0xfd,0x76,0xfa,0x32,0xd9,0xc1,0x3a, +0x73,0x38,0xc9,0x79,0xba,0xb8,0xba,0x38,0xb8,0x3e,0xdc,0xf3, +0x3e,0x14,0x86,0x05,0xcd,0x70,0xc7,0x89,0xbb,0x70,0x43,0x74, +0x92,0x99,0x00,0x36,0x31,0xb0,0xb8,0x10,0xc6,0xf6,0xc1,0x68, +0x3f,0x18,0xef,0x0d,0xbc,0x57,0x7e,0xab,0x80,0xc3,0x8a,0x71, +0x78,0xc1,0x8c,0x9c,0x1b,0x0d,0x6d,0x3d,0x15,0x0f,0x08,0x68, +0x75,0x48,0xc9,0x5c,0x56,0x49,0x46,0x71,0x4a,0x11,0x11,0x27, +0xc1,0x5e,0x3c,0xf4,0x0e,0xda,0x39,0xa9,0x40,0x93,0xbe,0x83, +0x8d,0x9a,0x3c,0xee,0xb3,0xa2,0x38,0x01,0xd7,0x31,0xa4,0x25, +0xce,0x98,0xc8,0x9e,0x36,0xca,0x4f,0xf3,0x58,0x97,0xe0,0x26, +0x98,0x00,0x9b,0x38,0x24,0xf8,0x3d,0x75,0xd9,0x62,0x65,0xb5, +0xd9,0x7d,0x41,0xe6,0x8a,0x34,0xdd,0xc4,0xc2,0xc2,0xc2,0xe2, +0xdc,0x12,0xa2,0xfc,0xf7,0x97,0x8c,0x43,0xa3,0x10,0x80,0xda, +0xbb,0x51,0xfb,0x78,0x1c,0x1b,0xad,0xe5,0xe7,0x61,0x6b,0x0a, +0x68,0x16,0x93,0xc1,0xe7,0x69,0xd4,0x1c,0x6a,0x3a,0x78,0xf1, +0x99,0x54,0x40,0xdb,0xf1,0x3c,0x8c,0x81,0x43,0xed,0xf8,0x39, +0x5f,0xdc,0x5f,0xf2,0x34,0xed,0xba,0x65,0x8a,0x10,0xbe,0xc9, +0x73,0xa1,0x97,0x3e,0xc1,0x97,0x16,0x10,0x80,0x63,0xf0,0x98, +0x05,0x33,0x95,0x87,0x50,0x13,0xb4,0x4c,0x30,0xbf,0xbb,0x45, +0xe4,0x6c,0xba,0x21,0xdf,0x84,0x4d,0xba,0x65,0x70,0x88,0x4b, +0x66,0x98,0x7a,0x7f,0x7d,0xf0,0xcd,0xb0,0x4a,0xeb,0x5d,0x42, +0xba,0x47,0xde,0xd6,0x18,0x07,0x82,0xc3,0xe2,0xe8,0xbe,0xfa, +0xa0,0xae,0xd0,0x32,0x9b,0x70,0x21,0xd3,0x27,0xc7,0x34,0xc1, +0x89,0x48,0xee,0x43,0xb1,0x33,0x14,0x9d,0x3c,0xde,0x1c,0x3a, +0x8b,0x51,0xf4,0xcf,0xae,0x48,0x91,0x39,0xdf,0x31,0x74,0x16, +0x63,0x17,0x64,0x62,0xa9,0xbc,0x7b,0xb1,0xfb,0xd3,0xee,0xc5, +0x86,0xa1,0xdd,0x8b,0x8b,0xe2,0x75,0xba,0x2f,0x36,0x32,0x36, +0x32,0xe6,0x7e,0xed,0x9d,0xde,0xfa,0x56,0x52,0x23,0xf9,0x5a, +0x8a,0x13,0x79,0x4f,0x4f,0x6b,0x0f,0x7d,0x2f,0xe7,0x5c,0xc7, +0x5c,0xe7,0x74,0x7f,0x37,0xa1,0x37,0xa0,0xc7,0xab,0xc3,0x93, +0xe0,0x89,0xc1,0xc9,0x5d,0x70,0x1a,0xe6,0xe1,0xc1,0x4e,0x38, +0xc8,0x58,0xee,0x76,0x1c,0xc6,0x25,0x59,0x2a,0xbd,0xe6,0xea, +0x13,0x12,0x1b,0xd4,0xc5,0xbb,0xfc,0xa0,0x3a,0x66,0x51,0xe0, +0xdb,0x91,0x87,0x25,0xdf,0x43,0x3d,0xe6,0x62,0x3d,0x7c,0x2d, +0x19,0x71,0x1b,0xf7,0x28,0x89,0xa3,0x2d,0xa4,0xaf,0xf9,0xc8, +0x13,0x7b,0x8e,0xef,0x39,0x2e,0x9f,0xd6,0x10,0xf2,0x60,0x54, +0xfe,0x5f,0x35,0xc7,0xda,0x04,0xb7,0x7d,0xee,0xfb,0x5d,0x0f, +0x90,0x12,0xc5,0x7c,0x39,0x2c,0xe0,0x6a,0x30,0xe4,0xc5,0x53, +0xf8,0x81,0xe2,0x3c,0x18,0xcd,0x14,0x7d,0xa7,0x1c,0xf9,0x63, +0x34,0xab,0x6c,0x34,0x2f,0x8d,0x62,0x2a,0x7c,0x1e,0x8e,0xc3, +0x79,0x1c,0x78,0x32,0x2d,0xc8,0x0a,0xc7,0xe1,0x2a,0x4e,0x1e, +0x8e,0x7b,0x14,0x17,0xf8,0x63,0x74,0x04,0xda,0x1c,0x4f,0x64, +0xb3,0xc3,0xf0,0x3c,0xfc,0x2b,0x13,0xb4,0x8a,0xc8,0xe0,0x37, +0xa8,0x43,0x1d,0x1e,0x19,0x3f,0xb1,0xec,0xb4,0xf3,0x16,0xda, +0xcd,0x3b,0xd7,0xd6,0x33,0xe5,0xa1,0x2b,0x6d,0xa0,0x30,0xd9, +0x10,0x2d,0xc4,0xbb,0x60,0x61,0x88,0x93,0xd1,0x05,0xb6,0x41, +0x67,0x07,0x76,0xfe,0x0c,0xb5,0xed,0xa8,0xc6,0x97,0x75,0x16, +0xdd,0xcf,0x18,0x30,0x4b,0x15,0xc2,0x37,0x7b,0xac,0x73,0xdd, +0x46,0xa4,0x55,0x16,0x90,0x3d,0x0f,0x2b,0xcc,0xa1,0x02,0xb7, +0x71,0x6f,0x45,0x03,0x1a,0xd9,0x18,0xd4,0xbc,0xb3,0xd2,0x2a, +0x54,0xc8,0xf1,0xcc,0xb5,0x4c,0x64,0x44,0x47,0x48,0xa0,0xe1, +0xb5,0x01,0x0d,0x01,0x65,0xd6,0x41,0x42,0xbe,0x77,0xbe,0x43, +0xaa,0x0b,0x89,0x95,0x2a,0x29,0x4e,0xfc,0xb4,0xa9,0x52,0x89, +0xc6,0xc6,0x9f,0x36,0x55,0xfc,0xac,0xe6,0x38,0xab,0x65,0x18, +0x7f,0x5f,0x5d,0xff,0xbf,0x6f,0xaa,0x1c,0x1b,0xda,0x54,0xf9, +0xdb,0x58,0xdc,0x46,0xa5,0xbb,0x36,0xa0,0xcc,0x79,0x58,0x98, +0x38,0x69,0x79,0x91,0xd8,0xb4,0x0b,0xd9,0x05,0xaa,0xf7,0x3c, +0xee,0x18,0xf5,0xa8,0x55,0xf4,0xd5,0xbe,0x4d,0xbd,0x4b,0xea, +0x31,0xeb,0x3f,0xc3,0xfb,0x14,0xfd,0x30,0x8d,0x8f,0x34,0x73, +0x5f,0x6e,0xbd,0x96,0x5c,0x37,0x6a,0xd2,0x72,0x56,0x35,0x8e, +0x8c,0x30,0x57,0x73,0xe5,0x62,0xf4,0x95,0xae,0x72,0x95,0x79, +0xf1,0xd9,0x29,0xea,0x59,0xae,0x95,0xa9,0xc5,0x69,0x05,0x99, +0x2a,0x0c,0x0e,0x6e,0x5f,0xbf,0x74,0x1b,0xaa,0x9a,0xcb,0x04, +0x75,0xfa,0xc0,0x87,0x17,0x77,0x7f,0x93,0x13,0xee,0x1a,0x21, +0x99,0xbf,0x08,0x97,0x6e,0x90,0x21,0xf1,0xda,0x6f,0xff,0xfa, +0xed,0x1a,0xcc,0x1c,0x82,0xc4,0x7a,0x8c,0xa0,0x5a,0x1d,0xd9, +0x17,0xf5,0x0f,0x24,0x7e,0xc4,0xbd,0x2a,0xfe,0xdf,0x20,0xf1, +0x4a,0x2e,0x3d,0x23,0x25,0x33,0x89,0x41,0x62,0x55,0x4e,0x2a, +0x14,0x97,0xc9,0x38,0x3d,0x5c,0xc6,0xe9,0xeb,0x86,0x70,0xfa, +0x70,0x86,0xd3,0x87,0x0f,0xe1,0xf4,0xe1,0x6b,0xd8,0x34,0x7b, +0x06,0x2b,0xa9,0x93,0xb3,0xb9,0xcb,0x36,0x1f,0xeb,0x0c,0x97, +0x3c,0xaf,0x62,0xc2,0x66,0x8f,0x03,0x57,0xbf,0xa3,0x39,0xb0, +0x23,0xa8,0x40,0x3e,0x5e,0xd4,0x3a,0xbf,0xc7,0xa4,0x9f,0xc0, +0xa5,0x46,0x69,0xfd,0x2d,0x90,0x9a,0x50,0x1a,0x10,0x35,0x9a, +0xf0,0x08,0x97,0x99,0x95,0x92,0x13,0x9f,0x69,0x91,0x2a,0xec, +0x0d,0x08,0xf5,0x0d,0xf0,0x27,0x58,0xcf,0x55,0x25,0x86,0xe5, +0x05,0x15,0xed,0x4a,0x56,0xb1,0x0d,0xcb,0x09,0x49,0x09,0x4d, +0x0e,0x53,0xc1,0x28,0x3b,0xf1,0x6b,0x03,0x7c,0x67,0x07,0xef, +0xb6,0x48,0xf3,0xed,0xe1,0x38,0x67,0xa9,0xbf,0x54,0x0f,0x47, +0x5a,0xe5,0x59,0x0b,0x57,0x73,0x9a,0x0b,0x6a,0x8b,0x09,0x7e, +0xc7,0xdb,0x1e,0xb7,0x39,0x6e,0x7f,0xf2,0x22,0x63,0xbd,0x0b, +0x2e,0x83,0x7e,0xca,0x1f,0xc9,0xc7,0x5b,0x05,0x83,0xe8,0x55, +0xd1,0xcb,0x0e,0x13,0xc6,0x4f,0x8c,0xf9,0x7f,0xe3,0x67,0xa0, +0xb1,0x05,0xbc,0x43,0x93,0x9b,0x85,0x35,0x97,0xb7,0x24,0x98, +0xa4,0x76,0x16,0x36,0x97,0xd7,0x55,0x11,0x4c,0x83,0x1f,0x68, +0xae,0x7f,0x61,0x40,0x69,0x20,0x41,0x33,0x39,0xf8,0xcf,0x36, +0xae,0x20,0x3f,0x27,0x3f,0xa3,0x80,0xc0,0x5f,0x68,0x46,0x25, +0x83,0xab,0xa2,0x01,0xa7,0x39,0xd2,0x4c,0x32,0xe8,0x64,0x94, +0x2d,0x5d,0xac,0xa7,0xc5,0xa5,0xf9,0x35,0x59,0xb5,0xe4,0xc6, +0x3a,0xa6,0x42,0xcc,0x16,0xa0,0xfa,0x5c,0xb5,0x12,0x5b,0x50, +0x7e,0xd9,0xfb,0xf2,0x3c,0x28,0xa9,0xc8,0xab,0x44,0x4a,0xf7, +0x56,0xc2,0x17,0x0b,0xcb,0x58,0xd3,0x35,0x3e,0x6e,0x7b,0x0d, +0x44,0xf5,0x09,0xa8,0xf2,0x07,0xdd,0x76,0xdb,0x06,0x3a,0x37, +0x07,0x0b,0x65,0x3d,0xe9,0x37,0x62,0xea,0x49,0x0d,0xd6,0xf3, +0x89,0xc5,0xb1,0xc5,0x17,0x0b,0xad,0xe2,0x85,0x88,0x25,0xd6, +0x0b,0x36,0x6f,0x22,0x65,0xef,0xa8,0xe3,0x55,0xb3,0xab,0x36, +0x65,0x1e,0x9e,0x42,0xb3,0x47,0x97,0x65,0xbd,0x25,0xc1,0x0c, +0xd0,0xa7,0x7e,0xe6,0xe6,0x56,0x1b,0x9c,0x8b,0xec,0x85,0x27, +0x0d,0x7d,0xbd,0x65,0x7d,0x04,0x3f,0x97,0xea,0x28,0x3c,0x80, +0xdd,0x5c,0x5a,0x54,0xfa,0xfe,0xcc,0xfd,0x79,0xac,0x2a,0xb5, +0xbb,0x5b,0x1f,0x86,0xdf,0x62,0xe0,0x35,0x7c,0x93,0xe1,0x7a, +0x9c,0xb5,0x3e,0xcf,0x46,0xc8,0x8e,0xcf,0x88,0x4f,0x4f,0x20, +0xb0,0x0a,0x2c,0xe9,0x15,0xb3,0x46,0x93,0xc7,0x16,0x04,0xd3, +0xb9,0x7b,0x1d,0xb5,0xdd,0x97,0x3b,0x88,0x06,0xfe,0x87,0xc2, +0x14,0x70,0xc3,0x29,0x7c,0xee,0x4c,0xda,0xea,0xdb,0xe9,0xd6, +0xe8,0x5a,0x59,0x23,0x58,0xd7,0x59,0x95,0x9b,0x17,0x11,0x13, +0x3c,0x41,0xdd,0x0e,0x5e,0x2c,0x53,0x87,0x05,0x46,0xb8,0x90, +0xdf,0x90,0xb5,0xfb,0xa9,0x1a,0x54,0x71,0x4d,0xf1,0xa9,0xd5, +0xea,0xcf,0x79,0x93,0x54,0x25,0x1c,0xc1,0x77,0xc0,0x62,0xda, +0x63,0xde,0xb3,0xb5,0x5a,0xaf,0xb1,0x4c,0x70,0xbc,0x6b,0x3a, +0x60,0xdc,0x4e,0x06,0xcd,0x71,0x2f,0xbd,0xdd,0x57,0x7f,0x27, +0xef,0x86,0x6d,0x8e,0x10,0x6c,0xec,0xb0,0x59,0xdf,0x92,0xa1, +0x8a,0x6f,0xc5,0x79,0xd4,0x77,0xaf,0xf7,0x3e,0xaf,0xa1,0x35, +0x0e,0xae,0x83,0x21,0xd5,0xa1,0x35,0x8e,0xb1,0xe6,0x30,0x16, +0xcf,0xf3,0xce,0xfb,0x9c,0xf6,0xbb,0xca,0x6b,0x1c,0x95,0x31, +0x95,0xb1,0x55,0xf2,0x1a,0x07,0x0e,0x97,0x17,0x39,0x5e,0xfd, +0xcf,0x22,0x47,0x45,0x42,0x65,0x52,0x79,0x32,0x79,0x0f,0xbf, +0xd1,0xd6,0xc4,0x6b,0x79,0x2d,0x45,0xfe,0x2d,0x82,0x99,0xe7, +0x06,0xff,0xed,0x7b,0x88,0x34,0xc8,0x87,0x1d,0xd9,0x79,0x24, +0xe4,0x48,0x02,0xd3,0x3b,0xe3,0x4b,0x1e,0x16,0x7c,0x5f,0x15, +0xd5,0x26,0xd8,0x85,0xdb,0xee,0x32,0x8b,0x20,0x60,0x8b,0x41, +0xb4,0x57,0xd1,0x0c,0xab,0xa5,0x27,0xf8,0x15,0x97,0x68,0x2a, +0xa7,0xae,0xac,0x96,0xdd,0x59,0x14,0x9f,0x63,0x15,0x9b,0xbc, +0xa1,0xe2,0x7f,0x29,0xcc,0xe0,0x0e,0x68,0x87,0x2e,0xf0,0x5a, +0xdb,0x14,0x2c,0xd4,0xbd,0xcf,0xfc,0x18,0xfb,0x82,0x34,0xe2, +0x43,0x3e,0xb6,0xe5,0x52,0xdb,0xf9,0x4e,0x8b,0x8b,0xc2,0x41, +0xfc,0x62,0xe7,0x54,0xc3,0x59,0x4d,0x7e,0x42,0x4e,0x5d,0x6a, +0x7d,0x62,0x23,0x79,0x82,0x53,0x38,0xf4,0x33,0x43,0x35,0xa6, +0x6a,0x67,0xaa,0x15,0x1b,0xb3,0x7e,0xfc,0x66,0x00,0xf8,0xf3, +0xb0,0x8e,0x8d,0xff,0x45,0xd4,0xba,0x83,0x04,0xa6,0xa3,0x4a, +0x61,0x8f,0x80,0x6b,0x60,0xb6,0x11,0x7c,0x03,0xbe,0xaa,0xe8, +0x0f,0x73,0xa8,0xf3,0x7d,0xfb,0x7b,0x36,0xd7,0x1c,0x02,0x85, +0xc6,0xed,0x2d,0xab,0x6a,0x75,0x18,0xb2,0x83,0x13,0x34,0x78, +0xb5,0xe3,0xc6,0x8d,0xa6,0xe5,0x36,0xc2,0x93,0x6b,0x6d,0x3f, +0xe4,0xbd,0x22,0x55,0x18,0x40,0xe3,0x67,0x3d,0x58,0x0b,0x72, +0x8c,0x48,0x01,0xbf,0xf9,0xdd,0xec,0x51,0xc8,0x0b,0xb2,0x85, +0x0b,0x59,0x65,0xb5,0x02,0xbf,0xd1,0x2c,0x60,0x93,0x5c,0xf5, +0xb7,0xeb,0x2f,0x12,0x7f,0x23,0xf3,0x07,0x97,0xd2,0x1e,0x88, +0x81,0x3f,0xf0,0xb6,0xb4,0x88,0x87,0x38,0x00,0x8a,0xd1,0xe8, +0x08,0xd1,0xbc,0xf2,0x2f,0x8a,0x2c,0xda,0xe7,0xdd,0xe6,0xd1, +0xea,0x52,0xd2,0x24,0xd8,0xd6,0x18,0x55,0x1b,0x17,0x11,0x45, +0xb7,0x64,0x4f,0x7b,0xb1,0x23,0x96,0x67,0x00,0xf7,0xbb,0xd4, +0x67,0x99,0xbd,0x39,0x81,0xac,0x82,0x2f,0x2d,0xd0,0xcb,0x05, +0x37,0xed,0x89,0x37,0x14,0x6e,0x5d,0xfc,0x36,0xee,0xdb,0x64, +0x82,0x7b,0xf8,0x03,0x58,0x6a,0x04,0x85,0xfc,0x1e,0x5c,0xb8, +0x0a,0x87,0x33,0x5c,0x3d,0xb9,0xd2,0x54,0x80,0xad,0xa0,0xf2, +0x27,0x4c,0x3a,0x03,0x93,0x98,0xbd,0x3f,0x8b,0x93,0xff,0x44, +0x0a,0x36,0xa8,0x56,0xd9,0x25,0xa0,0x27,0x4c,0x5d,0xf1,0x67, +0x84,0x9c,0xec,0x48,0xed,0x0d,0xb5,0xad,0xdd,0xd6,0x68,0x28, +0x1f,0x98,0xe8,0xf1,0xee,0x73,0x6a,0x65,0xea,0x93,0x67,0xf0, +0xf7,0x9f,0x7c,0xc7,0x8c,0xde,0xfd,0xaf,0x24,0xc8,0x43,0x5e, +0x3f,0xae,0xd4,0xaa,0xc6,0xa0,0xca,0xa0,0xd0,0xdf,0x46,0xb8, +0xe6,0xdb,0xed,0xd9,0xe1,0x42,0x20,0x88,0xe9,0x13,0xdb,0x65, +0xeb,0x16,0x2d,0x32,0x2a,0xb5,0x11,0x7e,0xbb,0xfb,0xea,0x43, +0xfd,0x4b,0x02,0xe4,0x30,0x7d,0xb0,0xe5,0xb7,0xa9,0x37,0x57, +0xd7,0xd5,0x08,0xfa,0x8f,0xa7,0xc1,0x30,0xad,0x6b,0x8c,0x5e, +0x4a,0x85,0x8c,0xb3,0x7e,0x84,0x61,0x3f,0x17,0xc0,0x97,0x72, +0x4a,0x2f,0x1c,0xff,0x7e,0x19,0x18,0x20,0x2f,0x87,0xe9,0x59, +0xf9,0xef,0x19,0x1f,0x1c,0xff,0x62,0x58,0xc6,0x79,0xca,0xac, +0x29,0xb8,0x72,0x3e,0x89,0x86,0xf1,0xd4,0xba,0x5a,0xaf,0x4e, +0xbf,0xc8,0xdf,0x56,0xe8,0xf7,0xe9,0x77,0x95,0x2b,0xf3,0x90, +0x8e,0xd3,0x76,0x71,0xb8,0x45,0xbf,0x38,0x4f,0xda,0x2f,0xcd, +0xe3,0x31,0xf5,0x0a,0x7d,0xf4,0xb1,0x1f,0x84,0xb2,0x3f,0xcd, +0x33,0x05,0x77,0x1c,0x61,0xc1,0xf8,0x8a,0x26,0x11,0xc7,0x43, +0x13,0x15,0x87,0xe3,0x41,0x69,0x38,0x43,0x63,0xff,0x12,0x9d, +0x68,0x82,0xc5,0x50,0x7a,0xf9,0xf4,0xb4,0x5a,0x75,0x78,0x23, +0x09,0x16,0xf0,0x14,0xeb,0x78,0x68,0x9b,0x28,0x97,0x0b,0x5c, +0xed,0x3f,0xe5,0x6a,0x16,0xf0,0x2d,0x2b,0x97,0x0a,0xc0,0x9a, +0xea,0xe7,0x18,0x65,0x18,0x27,0x87,0xd9,0x09,0x7d,0xbb,0x06, +0xc2,0x7a,0x77,0x12,0xd1,0xaf,0x99,0x6e,0xcb,0x36,0xca,0x1c, +0x2a,0xeb,0xdf,0xd5,0x2f,0x97,0x49,0x53,0xcf,0xd1,0x15,0xce, +0x73,0xfd,0x35,0x82,0x33,0xac,0x84,0xb7,0x39,0xbf,0x97,0x3e, +0xa9,0x26,0xe2,0xa6,0x16,0xba,0xdc,0x79,0xde,0x0e,0x8d,0xa0, +0xf4,0xff,0x29,0x1b,0xb4,0x64,0x2c,0x5a,0xd1,0xd4,0x2e,0x8d, +0x7b,0xbd,0x6d,0x29,0xfe,0x97,0x13,0x9b,0xb1,0x83,0xd6,0xde, +0x28,0xb9,0x9d,0xff,0xd8,0x28,0x45,0x08,0xdc,0xe0,0xbe,0xd2, +0x56,0x87,0x48,0x99,0xe6,0x7f,0xab,0x74,0x70,0x52,0x7f,0x39, +0x0d,0xb9,0xe1,0x7f,0xcb,0xb7,0xc7,0x2c,0x4c,0x28,0x32,0x2e, +0xd8,0x96,0xbd,0x85,0x75,0x7d,0x82,0xf8,0x92,0xc6,0x3a,0x29, +0xc1,0x18,0xae,0x3a,0x45,0x3e,0x13,0xe2,0x25,0xa9,0xda,0xc0, +0x4b,0xdc,0xc8,0xc3,0xf5,0x89,0x72,0xf9,0x17,0xff,0x53,0x3e, +0xd5,0x86,0xb1,0x87,0x8d,0xbc,0x74,0xe2,0x57,0x1a,0x79,0x64, +0xcf,0x91,0xc8,0xa3,0xf1,0xd5,0x82,0x5e,0x8a,0x71,0xbc,0xe1, +0xe5,0x7d,0x2e,0x42,0xff,0x81,0xfe,0xfd,0xbd,0x91,0xba,0x3b, +0x37,0xec,0x59,0xb3,0x37,0xd9,0x4e,0x78,0x9b,0xfa,0x31,0xe7, +0x45,0x09,0x81,0xf5,0xab,0xe9,0x8f,0xa9,0x1f,0x72,0xbe,0x2d, +0x39,0xd8,0x20,0xfc,0xf3,0xa3,0x2a,0x41,0x2f,0xd5,0x38,0x7e, +0xbb,0xfc,0xa3,0x6b,0x07,0xfa,0xd8,0x8f,0x74,0x76,0x6a,0x45, +0xae,0x89,0x24,0xb0,0x52,0x3a,0x4b,0x07,0x20,0xb8,0x1e,0x83, +0xbb,0x41,0x07,0xce,0x0c,0x9a,0xe0,0x19,0x58,0x62,0x82,0xce, +0x8e,0xe0,0x6c,0x80,0x67,0xec,0xff,0xe6,0x1b,0x79,0x29,0x14, +0x6e,0x51,0xbc,0xd0,0x09,0x17,0xb8,0x2e,0x33,0xda,0x09,0xe9, +0x66,0x3c,0x3e,0x75,0xa1,0x26,0x78,0xa1,0x9b,0x87,0x81,0x89, +0x90,0x6e,0xc2,0x14,0xdb,0x8f,0x4e,0xac,0xe0,0x04,0x2b,0x38, +0x31,0x8d,0x1a,0xe0,0x89,0x01,0x1e,0xeb,0xf1,0x3c,0x05,0xd5, +0x34,0x18,0x56,0xf2,0xb0,0xcc,0xaf,0x46,0x58,0xef,0x3b,0x3b, +0x70,0x28,0x24,0x4d,0x55,0xa9,0x1c,0x92,0x86,0xf8,0xff,0xea, +0x9b,0x7b,0x55,0x98,0x93,0x8f,0x63,0x0b,0xa7,0xa7,0x13,0x65, +0xc5,0xb2,0x73,0xf4,0x24,0x1c,0x86,0x63,0x9d,0x78,0x0c,0x8c, +0xc1,0xbb,0xa9,0x07,0x1c,0xb1,0xec,0x83,0xf1,0x0c,0x06,0x74, +0x1c,0xbb,0xed,0x60,0x97,0xb4,0x93,0xc3,0x11,0xa9,0xd6,0x0f, +0x61,0x89,0xea,0xb7,0x46,0x2b,0x79,0xd4,0x70,0xd8,0x8c,0x9c, +0xbe,0x5a,0x9e,0x05,0x0c,0xbf,0x5e,0x7b,0xfd,0xe2,0x47,0xf9, +0xd4,0xd9,0xcc,0xb8,0x47,0x9b,0x61,0xd1,0x24,0xa8,0xe6,0x2e, +0x77,0x29,0x0d,0xce,0x52,0xd8,0x51,0xeb,0x1a,0xc3,0x1a,0xc3, +0x22,0x3f,0x5b,0x61,0xc0,0xa7,0xc3,0xa3,0xdd,0x99,0x88,0x7f, +0xe2,0xe7,0x54,0x3a,0x06,0xdf,0x30,0x50,0x20,0x01,0x06,0x52, +0xcb,0x7a,0xdd,0x66,0xbd,0x52,0x5f,0x5b,0xe1,0xa6,0xd7,0x35, +0xc7,0x6e,0x7b,0x12,0x81,0x23,0xa9,0xe7,0xd0,0x12,0x88,0x8e, +0x9c,0x28,0x7c,0xe8,0xa4,0x51,0xf1,0x9f,0x44,0xf9,0x99,0xa2, +0x8e,0xa2,0x8d,0xe2,0x09,0xd8,0xf0,0xd2,0x43,0x3b,0xaa,0x89, +0xf6,0xef,0x78,0xd1,0x56,0x93,0xa2,0xed,0x3b,0xb0,0xe5,0xba, +0x64,0xdc,0xeb,0xae,0xc9,0x4b,0x79,0xd8,0x48,0xe3,0xc3,0xe3, +0x43,0x62,0x83,0xed,0x8e,0x99,0x1d,0x33,0x3f,0xd1,0xdd,0x7d, +0xe3,0x71,0xcf,0x13,0x87,0x02,0xc1,0xdf,0xd1,0xd3,0xd1,0xcd, +0x31,0x32,0x71,0x4f,0x72,0x44,0x52,0x55,0x7d,0x79,0x63,0x41, +0xbd,0x5d,0xae,0x10,0xec,0xe4,0xed,0xe4,0xe9,0xb2,0x2f,0x6e, +0x5f,0x5c,0x54,0x8c,0xa7,0x87,0xd0,0xea,0x5a,0xe7,0x5e,0xe3, +0x1a,0x16,0x1a,0xba,0x33,0x34,0x94,0x9c,0x0a,0x0c,0x39,0xb5, +0x73,0xd2,0x79,0x9b,0xf6,0x33,0xfd,0x67,0xfb,0xce,0xab,0x60, +0x67,0x07,0xf4,0xf2,0x25,0x67,0x8b,0xcf,0x16,0x9c,0xbb,0x14, +0x71,0x71,0xcf,0xc5,0x3d,0x0d,0x19,0x42,0x58,0xb7,0xff,0xf5, +0x1d,0x2d,0x4c,0x3e,0x64,0x73,0x32,0x0c,0xd6,0x34,0xe2,0x9a, +0xdf,0x86,0xee,0xef,0x61,0x5b,0x33,0x9b,0x35,0xe9,0xc5,0x29, +0x65,0x57,0x72,0xad,0x12,0x85,0x28,0xaf,0xdd,0xee,0x3b,0x19, +0xca,0x9c,0xc6,0x25,0x17,0x27,0x16,0xc7,0x15,0x5a,0x27,0x0a, +0x7e,0xcb,0xad,0x56,0x99,0x18,0x94,0xbb,0x09,0x49,0xc9,0x49, +0x69,0x89,0xf2,0x39,0xeb,0x8e,0x16,0x51,0x95,0xb1,0x33,0x55, +0xe8,0xa2,0xef,0x61,0xf6,0x1c,0x1e,0x67,0xe3,0x1c,0xfa,0x1b, +0xcc,0x9e,0xc5,0x4b,0x9f,0x85,0xd3,0x6c,0xf3,0x34,0xc3,0x24, +0x9d,0xd6,0x34,0x61,0xcf,0xf5,0xd0,0x6b,0x21,0x9d,0x04,0xf3, +0x30,0x8c,0x96,0xf6,0xe5,0xdc,0x4b,0xb8,0x6d,0x13,0x27,0xec, +0xd5,0x09,0x33,0xf6,0x34,0x20,0x0a,0x01,0x96,0x52,0x1c,0x86, +0xb3,0x61,0x18,0xe3,0x72,0x0f,0xe0,0x30,0x8d,0xf1,0x8c,0xb1, +0xbf,0x62,0xb7,0xe3,0xd0,0x8e,0xc3,0x7e,0x47,0x08,0xf8,0xc2, +0x44,0x71,0x22,0x4e,0x84,0x85,0x66,0xb8,0x10,0xbf,0x92,0xfe, +0x0f,0xbe,0xde,0x02,0x3a,0x8a,0xa4,0x7b,0x1b,0xc7,0xa6,0xbb, +0x61,0xd9,0xc0,0xee,0x52,0x6c,0x03,0xbb,0x09,0xee,0x8b,0xbb, +0x3b,0x84,0xb8,0x4e,0xdc,0xdd,0x3d,0x90,0x40,0x84,0x10,0x1c, +0x62,0xc4,0x95,0xb8,0xbb,0xbb,0x1b,0xb6,0xb0,0xf8,0xe2,0xac, +0xb2,0x02,0x2b,0x70,0x7b,0xf6,0x76,0xde,0xdf,0x57,0x1d,0xf6, +0xfd,0x9d,0xef,0x3b,0xe7,0x7f,0xfe,0xcc,0x39,0x33,0xc5,0x24, +0x93,0xe9,0xae,0xaa,0x7b,0xef,0xf3,0x54,0xdd,0x7a,0xee,0x74, +0x98,0x86,0xfe,0xac,0x7e,0x98,0x5e,0xb8,0x4e,0x44,0xa2,0x16, +0x0f,0x5c,0xc6,0xdf,0x57,0x7e,0x2f,0x8e,0xf2,0x8b,0xf2,0xbf, +0x14,0xd8,0x96,0xcc,0x87,0x3c,0xf6,0xfb,0x23,0xf0,0x36,0xa5, +0xe5,0x72,0x12,0x1f,0x1c,0x1f,0x14,0x7f,0xb4,0x21,0x87,0xb7, +0xbf,0x6e,0xdf,0x6b,0xd7,0x6a,0xed,0xc3,0xa7,0xfb,0xa7,0xf9, +0xa6,0x79,0x6b,0x47,0x1e,0x38,0xb5,0xff,0xf4,0xed,0xbe,0x6f, +0x1e,0x36,0x0d,0x9a,0x17,0xf3,0x2e,0x66,0x46,0x7a,0xfa,0xf2, +0xa3,0x69,0x47,0x32,0x02,0xd3,0x1a,0xeb,0xaa,0x5b,0x8a,0x6b, +0x39,0x30,0x85,0x6b,0xa2,0x39,0x5e,0x03,0x43,0xc6,0xdb,0xd5, +0xcd,0xd9,0xc5,0x5d,0xaf,0x81,0x77,0xb2,0x6b,0xb3,0xed,0xb0, +0x6e,0xb6,0x98,0x11,0x14,0x7c,0xf4,0x78,0x50,0x08,0x77,0xd6, +0xd2,0xf2,0x9c,0xdd,0xac,0x68,0x83,0xab,0x17,0xee,0x5d,0xba, +0x4b,0xfb,0x3a,0xbe,0x07,0x92,0xd8,0x81,0xe8,0xbe,0xe8,0xb6, +0x18,0x0e,0xfd,0x04,0x37,0x22,0xe9,0x01,0x2f,0x66,0x3a,0x36, +0x51,0xb2,0xba,0x8c,0xd2,0x56,0x4b,0x33,0xb2,0x16,0x17,0xbf, +0x1a,0xad,0x37,0xba,0x6c,0x2d,0x2e,0x63,0xc4,0x07,0x2f,0xc8, +0x7d,0x2c,0xde,0xc9,0x80,0x1d,0x14,0x13,0x2c,0xde,0x06,0xc5, +0xac,0x70,0x45,0x8c,0x22,0xf5,0x06,0x65,0x26,0x35,0x87,0x5a, +0x8a,0x79,0x9b,0x61,0xc7,0x36,0x8b,0x4e,0x0e,0xdf,0x51,0xb2, +0xd8,0xda,0x5e,0x3b,0x90,0x3f,0x60,0x96,0xcd,0x7b,0xea,0x38, +0xca,0x4d,0x4c,0xa9,0x3f,0x78,0x09,0xf7,0x48,0x61,0x53,0x56, +0x7d,0x56,0xab,0x75,0x2e,0x1f,0x64,0x71,0xd4,0xce,0xcf,0xd6, +0xb7,0x98,0x8f,0x8c,0x0b,0xbf,0x14,0x16,0x76,0xe2,0x04,0x7f, +0x3a,0x99,0xa9,0x1f,0x6e,0x7c,0x75,0xe5,0x3b,0xae,0x11,0x27, +0x7c,0xc8,0x5c,0x9b,0xaa,0x07,0xc1,0xac,0x1b,0x4e,0x5e,0x8f, +0x2a,0x38,0x9f,0xda,0x90,0x11,0xdf,0xde,0x54,0x5b,0x4f,0xef, +0x57,0x9c,0xdf,0x27,0xac,0xff,0x37,0x73,0x0d,0x26,0xe0,0xd2, +0xda,0x5a,0x99,0xd0,0x9e,0x47,0x3a,0x31,0xee,0x57,0xb0,0x13, +0x66,0x8a,0xf6,0x74,0x80,0xcd,0x96,0x4a,0x85,0x23,0x3d,0x58, +0xfb,0xed,0xfb,0x0f,0xe2,0xac,0x1d,0x85,0xc6,0x3c,0xcc,0x79, +0x76,0x73,0x38,0xe7,0x4f,0x2e,0x06,0x6f,0xf4,0xc1,0x8d,0x18, +0xe6,0xca,0xe2,0x9b,0x5a,0xa0,0xb2,0xb6,0xb8,0x8d,0xc7,0xcf, +0x1f,0xec,0xbb,0x6e,0xff,0x80,0xdb,0x28,0xb0,0x04,0xe7,0x53, +0xba,0x30,0xff,0xbf,0xbc,0x61,0x19,0xe5,0x0d,0xf8,0xb7,0x31, +0x8d,0xe0,0x38,0x19,0xe7,0x33,0x60,0x2e,0x15,0x89,0x58,0x46, +0xdb,0xcb,0xa4,0x82,0xc2,0xf0,0x9a,0xf4,0x89,0xeb,0xa9,0xa7, +0x9b,0xdd,0x27,0xce,0x06,0xf6,0x30,0x8d,0x43,0xa3,0x69,0x0f, +0x29,0xe2,0x02,0x1d,0x61,0x3c,0xab,0x8f,0xe3,0x91,0x2c,0x40, +0x6b,0x1c,0x53,0x61,0xc0,0xc3,0x49,0x98,0x06,0x93,0x61,0x6c, +0x26,0x70,0x5c,0xac,0xa8,0x72,0x4d,0x50,0x91,0xea,0x09,0x4f, +0x04,0x15,0x94,0xc1,0x49,0x9c,0x52,0x46,0xe3,0xa4,0xfd,0x1f, +0xa8,0xfc,0xb7,0x36,0xc8,0xa4,0x9a,0x40,0xf1,0xa4,0xd2,0xac, +0x5a,0x3d,0x5f,0xaf,0xbb,0x98,0xf7,0xe8,0x77,0x18,0xb4,0x6d, +0x92,0x72,0x12,0x2c,0x49,0x63,0x6b,0xed,0xad,0xdc,0x1e,0xdd, +0x02,0xde,0xcf,0xc0,0xf6,0xa0,0x95,0xd4,0xad,0xef,0x84,0x3f, +0xc9,0x73,0x28,0xda,0x30,0xf8,0x1c,0x12,0x7b,0x30,0xf1,0x95, +0xe6,0x5a,0x2c,0x92,0x9e,0x4e,0xe9,0xc1,0xa9,0x0d,0xac,0x62, +0x06,0x2a,0x48,0xaf,0xb8,0x06,0x0c,0x84,0x69,0xdd,0xe2,0xb4, +0xef,0x34,0xd6,0x88,0xe3,0xf5,0x85,0xf1,0x68,0x20,0xce,0xd1, +0x15,0xc6,0xb2,0xfa,0xeb,0x71,0xbc,0x2a,0x7a,0xef,0xc9,0xa3, +0xb1,0xf7,0xe2,0x77,0xbf,0xf4,0xd7,0x02,0xc3,0xc5,0x62,0xf7, +0x10,0x74,0x4b,0xb9,0x1e,0x0c,0x70,0xda,0x70,0x7e,0x4d,0x6e, +0x2f,0x8f,0xfe,0x77,0x71,0xf2,0x75,0x9d,0x17,0x1c,0xfe,0x05, +0x4e,0xa4,0xc8,0xae,0xc2,0x30,0xd7,0xac,0x23,0x9f,0xf7,0x6c, +0x71,0xee,0x74,0xab,0xe2,0x04,0x75,0xdc,0x46,0xca,0xeb,0x4a, +0xba,0x73,0x5a,0x0c,0xb3,0xf9,0x23,0x56,0x4e,0x7a,0x2e,0xb6, +0xf4,0xca,0x5e,0x43,0x2c,0x09,0x4b,0x8c,0x88,0x09,0x0d,0x0d, +0x09,0xe1,0x23,0xef,0x53,0x94,0x98,0x8e,0x9b,0x7e,0x91,0x12, +0xcb,0x0c,0x5f,0xeb,0x2f,0x47,0x7d,0x7d,0xd0,0x5f,0x86,0x6b, +0x31,0x1d,0x16,0x30,0x01,0xdb,0xd4,0x57,0xcd,0x5f,0x5f,0x4e, +0xb9,0xc5,0xd8,0x9f,0x1a,0xef,0x44,0xdd,0xa3,0x17,0xf1,0xb2, +0x87,0xba,0xb8,0xd8,0xe8,0xf3,0x52,0xfa,0xa3,0x0c,0xbf,0xac, +0x6e,0x90,0x0d,0x0b,0xa9,0x52,0x36,0x80,0xb2,0x90,0x81,0x66, +0x6c,0x4a,0x79,0x62,0x45,0x3c,0x65,0x02,0x26,0xdd,0xa2,0x8d, +0x3e,0x58,0x33,0xe1,0x2e,0xa1,0x52,0x36,0xc0,0x4e,0xfc,0x8a, +0x9a,0x73,0x29,0x35,0x67,0x0a,0x60,0x71,0xdd,0x1c,0x4a,0x53, +0x21,0x17,0x29,0xbf,0x18,0x0f,0xeb,0x60,0x3c,0x23,0x18,0x2e, +0x23,0xf3,0xb1,0xf4,0x4f,0x16,0x57,0x4c,0x80,0x52,0x3a,0x3c, +0xa5,0x0c,0x8d,0xe6,0x0c,0x45,0xa7,0x37,0x0d,0x5b,0x4d,0x2a, +0xeb,0x79,0xd3,0x66,0xd5,0x56,0x83,0x72,0x49,0xe2,0x61,0x1f, +0xb9,0x53,0xdd,0xdb,0xd2,0xd2,0x65,0x51,0xc6,0x5b,0x1b,0xeb, +0x58,0x1c,0x74,0xe1,0x94,0x84,0x4c,0x45,0x38,0x11,0x26,0x75, +0x8d,0x94,0x19,0x80,0x62,0x9f,0xc8,0xe3,0x89,0x41,0xd0,0xa4, +0x61,0xf9,0xc2,0x10,0x65,0xb5,0xbf,0xa0,0xe6,0x20,0x9c,0x10, +0x17,0x33,0xf8,0x18,0xc7,0x12,0x13,0xb0,0x6e,0x65,0x41,0x7d, +0xba,0x09,0x78,0xb6,0xb2,0xe2,0x22,0x5c,0x45,0xda,0xd0,0xda, +0x98,0x15,0xfe,0x9e,0xde,0x86,0x9e,0xc6,0xac,0x38,0x59,0x3c, +0x46,0xda,0x85,0x6f,0x8d,0x06,0x85,0xe5,0x23,0x06,0x52,0x16, +0xe4,0xd7,0x74,0xc4,0x31,0xee,0x2d,0xc4,0x31,0x03,0x0b,0xe9, +0x1d,0x64,0x2d,0x64,0xf1,0xb1,0x09,0x99,0x8b,0x71,0x7f,0xb3, +0x70,0x73,0x3a,0x64,0xcd,0xc5,0x2c,0x46,0x49,0xa1,0x21,0x1c, +0x23,0x0f,0x07,0x7a,0x6e,0xd6,0x3f,0xa3,0x2c,0xee,0x37,0x36, +0x2d,0x2f,0x25,0x3f,0xb1,0x50,0x23,0x9e,0xb7,0x58,0xbe,0x7d, +0x2d,0x7e,0xb4,0xa7,0xcc,0x84,0x6f,0x2c,0xa8,0x2b,0xae,0x2c, +0x6b,0x32,0xea,0x30,0x1f,0xb4,0xde,0x6c,0x32,0xd7,0x0a,0x67, +0xd8,0xe5,0x51,0x3c,0xb7,0xb8,0x09,0x64,0x2d,0xdf,0xf5,0xbc, +0x90,0xbf,0xa5,0x33,0xd8,0x2a,0x9f,0x8e,0xe8,0xd8,0xaa,0x95, +0x35,0xdb,0x1b,0x38,0xf1,0x0b,0x08,0xa2,0xa0,0x45,0xbd,0x56, +0x5d,0x42,0x48,0x57,0x9d,0xfb,0xec,0xbb,0xad,0x69,0xaf,0x5e, +0x24,0xb1,0x31,0xd1,0xb1,0x31,0xb1,0x1c,0x5c,0x65,0x1c,0x35, +0x8c,0xf4,0xf6,0x19,0x1f,0x6a,0xd0,0x6b,0x35,0xed,0xe6,0xd0, +0x06,0xcd,0x89,0x41,0xc3,0xbe,0xe6,0x43,0x65,0x34,0xe2,0xdc, +0x70,0xbc,0x66,0xd9,0x67,0xc1,0x81,0x95,0x78,0x82,0x5c,0x15, +0x18,0xb5,0x61,0xe1,0x73,0xf1,0x24,0xe5,0xe9,0x98,0x2d,0x81, +0x9c,0x21,0x98,0x51,0xf9,0xf7,0xff,0x82,0x9c,0x9d,0x4b,0x38, +0xc5,0x29,0x28,0x21,0x68,0x2f,0x52,0xfe,0x4d,0xa9,0x0e,0x3b, +0xaa,0x40,0x16,0x2d,0xc9,0xd8,0x67,0xf0,0x47,0x6e,0xfb,0x7e, +0xe3,0x25,0x29,0x90,0x49,0xf2,0xf0,0x09,0xce,0x66,0x91,0xc6, +0xa7,0x8c,0xce,0x48,0x0a,0x64,0xb2,0x01,0x60,0x8d,0x3e,0x28, +0x90,0xd9,0x6b,0xf8,0xe7,0xfa,0xe5,0xfa,0xe6,0xd4,0x0e,0xff, +0x5f,0x32,0xf6,0x4e,0x7a,0xc1,0xa9,0x41,0x1f,0x64,0xec,0x7b, +0x24,0x05,0x32,0x9d,0xff,0xca,0xd8,0xff,0xaf,0x02,0xd9,0x40, +0x94,0xa4,0x40,0xb6,0xb2,0x9f,0xba,0x0c,0x21,0x18,0x16,0x91, +0x9b,0x43,0x2d,0xb7,0x4a,0x1f,0x71,0x0d,0x58,0xc1,0x4a,0xdd, +0x17,0x5f,0xa8,0x73,0x99,0x77,0x5c,0xa6,0xbe,0x6a,0xe5,0xee, +0x72,0x73,0xbe,0x34,0xbf,0xb8,0xb0,0xa0,0xb4,0xdc,0xac,0xce, +0xb2,0xc5,0x5a,0xc3,0x7c,0x9b,0xe5,0x52,0xdb,0x22,0x43,0xfe, +0xaf,0xc6,0x67,0x2d,0x37,0x3b,0xae,0x99,0x3c,0x30,0xfb,0xde, +0xb2,0xa8,0x8b,0xdf,0x54,0xb3,0xaf,0x56,0xa3,0x91,0x43,0x55, +0x38,0x40,0x52,0xb2,0x65,0x70,0x96,0xf1,0xd4,0xb1,0xd1,0xd7, +0x95,0x1b,0x36,0x58,0x34,0x3b,0xb6,0x73,0x47,0x46,0x82,0xc9, +0x30,0xe4,0xaa,0x0f,0x0a,0xbc,0xa8,0x2c,0xf2,0x2c,0x1e,0x84, +0x27,0x24,0x6f,0x4f,0xe6,0xc6,0xff,0x0a,0xe4,0x3f,0x93,0x04, +0xf2,0x2b,0x46,0x35,0xc9,0xb2,0x7f,0x4f,0xfa,0x75,0x54,0x93, +0x6c,0x54,0x20,0x5f,0x51,0x05,0x97,0x08,0x3a,0x61,0x2e,0x38, +0x49,0xe2,0xb1,0x82,0x82,0x3c,0x84,0xcc,0xed,0x83,0x0f,0x47, +0x2b,0x0e,0x4a,0x46,0x9d,0x29,0x3d,0x9d,0xd3,0x87,0x73,0xdb, +0x59,0x41,0x05,0x63,0xc8,0x8d,0x86,0xde,0xae,0xe6,0x1b,0x94, +0xea,0xdd,0x63,0x13,0xd2,0x13,0x32,0xe2,0xb3,0x0c,0x33,0x78, +0xf9,0xdc,0x5d,0x87,0x66,0xab,0x95,0x5a,0xf2,0x5d,0xc5,0x4d, +0xa5,0xd5,0x55,0xb5,0x76,0xb5,0x4e,0x8d,0xee,0xeb,0x2c,0xe7, +0xbb,0xe2,0x24,0xff,0x0c,0xea,0x87,0x66,0x16,0x02,0x53,0xf9, +0xba,0xe3,0xb1,0xd9,0x6b,0x47,0xf8,0xc4,0x25,0xab,0x83,0xc7, +0x71,0x79,0xeb,0x8b,0xf7,0x54,0x71,0xe2,0x6f,0xe0,0x4e,0xfa, +0xdd,0xaf,0xda,0x74,0xd9,0x94,0x36,0xf1,0x66,0x35,0xbb,0x1b, +0xf5,0x8a,0x38,0x81,0xc5,0xc9,0x24,0x2a,0xea,0x12,0x7d,0x70, +0x50,0xc1,0xd8,0x98,0x1a,0x5b,0x6b,0x3b,0xca,0x4b,0xcd,0x2b, +0x2d,0x1a,0x38,0x3c,0x8e,0xaa,0x44,0xb3,0x45,0xad,0x52,0xa3, +0x8c,0x82,0x8b,0xeb,0x4e,0xbd,0xae,0x57,0xa5,0xc3,0xcb,0xf8, +0x86,0xdc,0xfa,0xe6,0x01,0x4c,0x68,0x78,0x6c,0x56,0xca,0x1b, +0x6f,0xd8,0x39,0xf7,0xe0,0x61,0x4e,0x58,0x60,0x42,0xba,0xe1, +0xad,0xfe,0x20,0xb4,0x8a,0x2e,0xd8,0xca,0x0a,0x5f,0xbd,0x27, +0xf8,0x96,0xf2,0x96,0xb7,0x8c,0xb4,0x8c,0x14,0x42,0xae,0x0f, +0x37,0x7d,0x5d,0x22,0x0d,0x4a,0x9e,0x54,0xc0,0x86,0x0e,0x8a, +0xee,0x65,0xde,0x79,0xb9,0xd6,0xea,0xf5,0xbb,0x2b,0x2c,0xf8, +0xa2,0xdc,0xfc,0x82,0xbc,0xe2,0x32,0xf3,0x1a,0xab,0x66,0x6b, +0x6d,0xf3,0xdd,0x56,0xab,0x6c,0x8b,0xe4,0xfc,0xaf,0x0d,0x8f, +0x9a,0xaf,0x76,0x0c,0x99,0xdc,0x35,0x7b,0x66,0x49,0xe1,0xf8, +0xb6,0x9a,0x83,0x75,0xda,0xf4,0x9a,0xee,0x42,0x22,0xe9,0x12, +0xe7,0x19,0x50,0xa6,0xf2,0xe9,0xe2,0x11,0x9d,0xee,0xeb,0x50, +0xa7,0x98,0xb2,0x18,0x3e,0x65,0x8d,0xa6,0xe3,0xa7,0x96,0xf4, +0x55,0x18,0xbb,0x85,0x44,0xc7,0x46,0xc7,0x45,0xc7,0x71,0x10, +0xca,0x78,0xeb,0xd8,0xea,0xeb,0x1b,0xc9,0xeb,0xad,0x9b,0x9d, +0xda,0xe9,0x24,0x99,0x43,0xe6,0x84,0xae,0x77,0xd0,0x52,0x86, +0x64,0x6a,0xbe,0x5a,0x98,0x40,0xe6,0x61,0xd8,0x3d,0x36,0xdf, +0x47,0xd6,0x79,0x27,0xe5,0x37,0x98,0x33,0xb3,0x01,0xb5,0x18, +0xf3,0x0c,0x9f,0x5a,0xe5,0xd4,0x56,0xe2,0x17,0x19,0x57,0xa8, +0x02,0xbb,0xda,0xd0,0x9e,0xa5,0x28,0x5f,0x95,0x8e,0x79,0xfc, +0xe8,0x98,0x2b,0xd1,0x31,0x87,0x5b,0xf0,0x5c,0x1a,0xc9,0x78, +0x3a,0x92,0xa2,0xf6,0x62,0x02,0x61,0xc8,0x62,0x18,0x8d,0x19, +0x13,0xe8,0x00,0xef,0x60,0x2c,0xc2,0x12,0x1b,0x54,0x14,0x99, +0x6a,0x23,0xf9,0xec,0xd6,0x02,0x37,0xca,0x7c,0xf7,0x32,0x2d, +0x99,0x59,0x6d,0x2a,0x14,0x79,0x69,0x66,0xcb,0xc4,0x01,0x21, +0x92,0x5c,0x4b,0x1a,0x4e,0x6e,0x49,0xf5,0x94,0xe4,0x40,0x1d, +0x70,0xaf,0x07,0x7e,0x1c,0x91,0xa4,0xcb,0x77,0x46,0x5d,0x8f, +0xbb,0x9e,0xc0,0xe1,0x36,0xb4,0xd5,0x06,0x5b,0xdc,0x85,0x9b, +0xc5,0x39,0x03,0x37,0xe1,0x15,0x3c,0xc1,0xad,0xb0,0x0b,0x2c, +0xfa,0xd1,0x82,0xc5,0x6d,0xe2,0x79,0x02,0xae,0x90,0x8f,0xae, +0xd4,0xc8,0xf4,0x15,0x77,0xc9,0x4a,0x73,0x9c,0x65,0x83,0x5c, +0x30,0x27,0x26,0xb0,0x47,0x4e,0xd1,0xc7,0xe9,0x14,0x4d,0x0a, +0x44,0x8a,0x80,0xa9,0x7e,0x55,0xed,0x8a,0x5f,0xae,0xa2,0x7f, +0x47,0x47,0x3a,0x66,0x72,0xf4,0x39,0x8c,0x85,0x89,0x10,0x37, +0x13,0x1a,0xb4,0xb0,0x81,0xf5,0x3d,0xe7,0x77,0xd6,0x5f,0x59, +0xc3,0x7b,0x9b,0xd7,0x26,0x5f,0x4e,0xd0,0x63,0x7f,0xcf,0x80, +0x69,0x15,0xaf,0x1a,0xb9,0x3b,0x23,0xbf,0x50,0xca,0xdb,0x05, +0x67,0xc5,0x27,0xb8,0x61,0x94,0xf2,0xce,0x66,0x9a,0xb3,0x32, +0x29,0xe5,0x9d,0x22,0x4e,0x60,0x51,0x5f,0x5c,0x46,0x3c,0x6f, +0x18,0xfc,0xec,0xd0,0x65,0xec,0xc9,0x57,0xeb,0x75,0x7c,0x55, +0x40,0xc7,0x3f,0xe6,0x04,0x71,0xbf,0xa3,0xf5,0xb7,0xf5,0x80, +0x99,0x27,0x5f,0xa7,0xd1,0x37,0xbb,0x68,0x3f,0xc5,0xc3,0xdf, +0x28,0x3a,0x24,0x24,0x35,0x08,0x9f,0x6b,0xe0,0xe7,0xd8,0x04, +0x63,0x34,0x71,0xbd,0x22,0x0f,0xd6,0xb3,0x09,0x23,0x4d,0xc4, +0xbe,0xe3,0xf8,0x33,0xf0,0x9d,0x09,0x1e,0x23,0x2e,0x68,0xc3, +0xa2,0x4b,0xd0,0x57,0xfb,0x17,0x29,0xb7,0x5b,0xc9,0xee,0xbc, +0xcb,0xa5,0xd7,0x18,0x38,0x13,0x56,0x08,0xbf,0x23,0x75,0x93, +0x11,0x29,0xf8,0xf1,0x8d,0x03,0xca,0xc5,0x6e,0xb5,0x17,0x62, +0x5a,0xd3,0x61,0x35,0x6f,0x94,0x23,0xc3,0xb2,0xbd,0x24,0x39, +0x24,0xf9,0x58,0x72,0x30,0x6e,0x0b,0xe5,0xdf,0x83,0x2d,0x58, +0xa3,0xf5,0x43,0xf6,0x71,0xcc,0xbd,0xd8,0xa1,0xf8,0x23,0xad, +0x3c,0x4e,0x0e,0xc4,0xfd,0xa1,0xb8,0xe7,0x74,0xac,0x29,0x7f, +0xf3,0xc2,0x37,0x97,0x6e,0x45,0x71,0xbb,0xd1,0x18,0xad,0x29, +0x9b,0x1f,0xc7,0x6e,0x3a,0xb5,0xee,0xcc,0x8a,0xd1,0x1a,0xde, +0xfa,0xb1,0xb0,0x39,0x1e,0xd6,0xa6,0xa5,0xf9,0xa7,0xfa,0x25, +0x05,0xd6,0x17,0xf1,0x2e,0x1d,0xa6,0x7d,0x16,0xf5,0x1c,0xfe, +0x0f,0xa8,0x12,0x98,0x43,0xe3,0xc7,0x1c,0x06,0x7e,0x9b,0x8e, +0x4b,0x60,0x3c,0x2c,0xa1,0xb4,0x6d,0xa1,0xe2,0x1e,0x41,0x6d, +0x1c,0x23,0x7f,0xcb,0x86,0xe3,0x34,0x27,0x5c,0x7c,0x00,0x27, +0x56,0x9a,0xf0,0x5d,0xbf,0x66,0xbc,0x8d,0x7a,0x49,0xa3,0x7e, +0x5c,0x97,0x90,0xf6,0xef,0xa1,0xa4,0x76,0x5c,0x51,0x56,0x65, +0x0a,0x0b,0x22,0xd3,0x22,0xce,0x85,0x85,0xcf,0x08,0x0b,0x97, +0x45,0x82,0xd2,0xeb,0x8e,0xe5,0xa0,0xcd,0x00,0xe3,0x49,0xfe, +0xc3,0xf4,0x08,0xdf,0x81,0x03,0xd4,0xb3,0x37,0xb1,0x9e,0x80, +0xb7,0x58,0xa8,0xca,0xa4,0x95,0x1f,0x2c,0xd4,0x2f,0xf1,0xa8, +0x9f,0x01,0x9f,0x41,0x08,0xae,0x6a,0x03,0xfd,0x06,0xd4,0xef, +0x36,0xd6,0x47,0x75,0x4b,0x50,0x37,0xc6,0xc5,0x18,0x02,0x1f, +0x33,0xde,0xe6,0xfa,0x2e,0x5b,0x1d,0x72,0x4d,0xf8,0x47,0x75, +0xd7,0xaa,0x13,0x6f,0xd0,0x40,0xba,0xa3,0x0d,0x76,0xc4,0x32, +0xc9,0x5a,0xfd,0x8e,0x57,0x5d,0x2f,0x5b,0xf0,0xf7,0x98,0xfa, +0x54,0x49,0x9a,0xb2,0x17,0x8b,0x59,0x2c,0xa6,0x4c,0xe1,0x2e, +0xac,0xa5,0x9c,0x6c,0xe7,0xf4,0xbb,0xb0,0x9d,0x72,0xb0,0xd3, +0x38,0x85,0x3a,0x9d,0xb5,0xdb,0xa5,0x77,0x1e,0xc2,0xf6,0xed, +0x2c,0x96,0x62,0x17,0x59,0xd4,0xfd,0x86,0x69,0xd3,0x27,0xdd, +0xef,0xf4,0x59,0x5c,0x65,0x47,0xb4,0x17,0x51,0x12,0xb4,0x74, +0xfa,0x3b,0xed,0x39,0x8c,0x92,0x90,0x22,0x2c,0x24,0xcf,0x7f, +0xbd,0xc9,0xd6,0x3b,0xe7,0xd5,0x65,0xd6,0xa4,0xd6,0xcc,0x00, +0xc7,0x5e,0xd4,0x63,0x12,0x6b,0x2f,0xd7,0xc5,0x36,0x52,0xd7, +0x1a,0xbc,0xd8,0x6f,0x87,0xde,0x32,0xee,0xef,0xa5,0x8f,0xe1, +0xa3,0x76,0x7c,0x21,0x1a,0xc1,0x77,0x1d,0x14,0x53,0xc1,0x4d, +0x62,0x56,0xa7,0x5b,0xa7,0x2b,0x6d,0xb1,0xf6,0x3b,0xb6,0xdb, +0xb7,0x51,0xae,0x6c,0xff,0x94,0x6c,0x59,0xf8,0x98,0x05,0x13, +0xfc,0x9c,0x6c,0x42,0x93,0xa7,0xec,0x3c,0x5c,0x4d,0x8c,0x1b, +0x0f,0xb4,0x8f,0x9e,0x07,0x1a,0xb2,0x1f,0x36,0xeb,0x36,0xe3, +0xe0,0xd4,0x37,0x64,0xc3,0xc2,0xe7,0xac,0xd0,0xe9,0x41,0x30, +0x41,0x17,0x12,0x98,0x11,0xcb,0xc5,0xc4,0x19,0xc7,0x9b,0x4a, +0x27,0x7d,0xda,0x6d,0xf8,0x6f,0xde,0x77,0x4b,0xc7,0x7f,0x38, +0xc5,0xf8,0xd3,0x44,0xa4,0xb7,0xb9,0xc4,0x40,0x61,0xd3,0xa5, +0xc5,0x88,0xca,0x1f,0xd4,0xf2,0xc7,0x48,0x6a,0xf9,0x9b,0x3f, +0x48,0xe4,0x8f,0xa1,0xd0,0xbc,0x77,0x3a,0x6d,0xc8,0x24,0xad, +0x7c,0xf8,0x47,0xb1,0x90,0xf4,0x43,0x96,0xb4,0x31,0x93,0xd6, +0x81,0x69,0x37,0xb4,0x0f,0x61,0x96,0xf4,0x74,0x41,0x0e,0x17, +0xb4,0x59,0x78,0xbb,0x82,0x24,0xe6,0xc7,0xe7,0xc7,0xe5,0xe8, +0xc7,0xf3,0x01,0xbb,0xcd,0x36,0x1c,0x52,0xad,0x73,0xe0,0x2b, +0x2a,0x8b,0xea,0x72,0xea,0x38,0xf8,0xb6,0x93,0x11,0xb7,0xdc, +0x21,0xe2,0x4e,0x71,0xa2,0xb0,0xaf,0x09,0x55,0x6f,0xc2,0x4c, +0x58,0x8e,0x33,0x07,0x61,0x1f,0x23,0x32,0x9a,0x64,0x10,0x54, +0x34,0x59,0x8a,0x63,0xc7,0x50,0x26,0x9a,0xa7,0xc6,0x62,0x1e, +0xe5,0x60,0x37,0x41,0xe5,0x20,0xab,0x98,0x74,0x93,0xe0,0x3b, +0x43,0x78,0xc7,0xec,0xc3,0xf1,0x64,0xc4,0x18,0x9d,0x17,0xcb, +0xff,0x59,0xd0,0x31,0x97,0x11,0x23,0xa4,0x13,0xea,0x1b,0x70, +0x05,0x6c,0x60,0x29,0x62,0xa3,0x6d,0xda,0x82,0x15,0x4c,0x3f, +0x6d,0xd2,0xc6,0x46,0xdc,0xc0,0x2a,0x29,0x76,0x2b,0x1e,0x10, +0x6d,0x43,0xcc,0xea,0xa4,0x4f,0x17,0x0c,0xe1,0x82,0x69,0x7f, +0x0b,0x64,0x49,0x4f,0x69,0x9d,0x98,0xc6,0x88,0x2f,0xa9,0xf3, +0x1e,0xf1,0xef,0x17,0x4e,0x41,0x33,0x44,0xb0,0xc2,0x3c,0x8c, +0x20,0xa2,0xea,0x5a,0x36,0xc9,0x48,0x76,0x9f,0xa9,0x4f,0x49, +0xaf,0x53,0x51,0xac,0x14,0x19,0x8c,0x60,0xc5,0x4f,0x61,0x1e, +0xe9,0x80,0x93,0x72,0xca,0xf7,0x3a,0x88,0x1c,0xe3,0x3b,0x58, +0xf1,0x10,0x2e,0xa3,0x44,0xf8,0xa4,0x2e,0x7d,0xab,0x97,0xe8, +0x62,0x7c,0x2f,0x0b,0xcb,0xc5,0x7d,0x92,0x20,0x99,0x5f,0x35, +0x64,0x34,0x60,0xc6,0xa0,0x91,0x26,0x46,0x59,0x42,0x94,0x1d, +0x3a,0xa0,0x05,0xec,0x64,0x1d,0x9d,0x0e,0x39,0xe3,0x74,0x97, +0x2c,0x13,0x1e,0xd6,0x37,0x0f,0x54,0x65,0x4b,0x22,0x37,0xab, +0xda,0x61,0x55,0x2c,0x93,0xa5,0x3b,0xe4,0x08,0xbc,0x75,0x66, +0x2b,0x3f,0xa7,0x58,0xab,0xc8,0xa9,0x84,0x5b,0x45,0x61,0x34, +0xae,0xad,0x87,0xb5,0x4c,0x9b,0x15,0xa9,0x87,0x5d,0x56,0x2c, +0xfa,0x38,0x10,0x4b,0x5c,0xdb,0xc0,0x82,0xfd,0x74,0xd8,0x65, +0x29,0x9d,0xb1,0x53,0xac,0x52,0x04,0x91,0xd4,0x82,0x24,0xda, +0xe5,0x3a,0x89,0xbc,0xe7,0x6e,0xf9,0xee,0xfd,0xda,0x75,0x36, +0x7c,0x79,0x51,0x71,0x79,0x7e,0x25,0x07,0x43,0x1d,0x8c,0xf8, +0x13,0x7a,0xd3,0x01,0x5b,0x00,0xb3,0x70,0x41,0x27,0x1c,0xaa, +0x13,0x0f,0xe3,0x33,0x41,0xad,0x8e,0xc5,0x70,0xa9,0xde,0xdb, +0xfc,0x4e,0x8a,0xe3,0x29,0x71,0x58,0x4c,0x23,0x4f,0x1d,0x9d, +0xb8,0x0b,0x6c,0x29,0x7d,0x9f,0xdf,0xcf,0x0a,0x07,0xcf,0x10, +0x03,0x78,0xd9,0x45,0x5d,0x87,0xf8,0x90,0x38,0x9c,0x88,0x2e, +0x55,0x69,0x02,0x0b,0x78,0x3b,0xb2,0x88,0x46,0xa4,0x03,0x6c, +0x80,0xc5,0x01,0x47,0xb4,0x39,0x22,0x6d,0xcb,0x44,0x64,0x3d, +0xed,0xce,0x7d,0xc4,0xc1,0x2a,0x73,0x66,0x7f,0xd6,0x91,0x6f, +0x94,0xc1,0x8d,0xa9,0x4f,0x4f,0x6d,0x50,0x79,0xca,0xea,0xa6, +0xc9,0x70,0x2c,0x8b,0x63,0xa9,0x97,0x17,0x6b,0xdb,0x85,0x5a, +0x46,0xac,0xa5,0xdf,0xd3,0x26,0xd4,0x1a,0xb3,0x66,0x13,0xf4, +0xc4,0xda,0x1e,0x3a,0x9b,0x5e,0x0b,0x0b,0x48,0xe4,0x1f,0x60, +0xd0,0x8b,0x06,0xb0,0x81,0xb9,0x9a,0x32,0x98,0xde,0x92,0x2d, +0x95,0x37,0x97,0x99,0xe0,0x4e,0x37,0xfc,0x34,0x3c,0x5e,0x97, +0xef,0x89,0xfe,0xfa,0xf2,0xad,0x64,0x0e,0x97,0x4a,0xaa,0x7e, +0x2e,0x6c,0x08,0x7e,0xb4,0x1f,0x47,0xf5,0xd0,0xeb,0x0d,0x24, +0x3d,0x6f,0xae,0xfb,0xe7,0xd1,0xac,0x0b,0xd7,0x21,0xc1,0x90, +0x89,0x89,0xba,0x28,0x61,0x61,0x15,0x3c,0xdc,0xdc,0x84,0x73, +0x60,0xef,0x89,0xa4,0xb0,0xf3,0xa1,0x61,0x33,0x04,0x7f,0x71, +0x39,0x41,0x53,0xe9,0x48,0x9a,0x54,0xac,0x2f,0x33,0xab,0x53, +0x45,0xd1,0x72,0x98,0xc5,0xf3,0x72,0x32,0x32,0xe5,0x9a,0x62, +0x8a,0x74,0xa8,0x46,0xe1,0x45,0xc4,0x6d,0x7f,0xa8,0x2f,0x10, +0x57,0xea,0x08,0x2b,0x71,0x2c,0x3e,0xc3,0x5a,0x78,0xc8,0x9c, +0x50,0x3b,0x6a,0xec,0x62,0x2b,0x2f,0x35,0xad,0x35,0xeb,0x34, +0xb7,0xe3,0x5b,0x0c,0x5b,0xac,0xdb,0x9d,0x35,0xac,0xbe,0xf2, +0xc6,0xd9,0x41,0x57,0x28,0x53,0x5d,0x9d,0xf9,0x77,0xc5,0xd7, +0x3d,0xf0,0xe5,0x5e,0x58,0xef,0x0f,0x47,0x22,0x93,0x06,0x78, +0xf4,0x8c,0xc1,0x65,0xe9,0xf8,0xc9,0x60,0x75,0x6b,0xd6,0xe0, +0xe5,0xbb,0x1c,0xfc,0x09,0xb5,0xf8,0x1b,0x8c,0x15,0xb6,0x31, +0x23,0xa7,0xa5,0xfc,0xa3,0x2c,0x54,0x62,0x8e,0x9e,0x0f,0x92, +0xf4,0xa7,0x33,0x19,0x41,0x31,0x1d,0x2b,0x98,0x0b,0xc9,0xe7, +0x93,0x53,0x66,0xc2,0xe7,0x50,0x4e,0xaf,0x64,0x21,0x75,0xf8, +0x23,0x57,0x50,0x87,0x41,0x45,0x20,0xae,0xdb,0x81,0x9f,0x2a, +0xb7,0x9b,0xc8,0x9e,0xc2,0xf2,0x6c,0xd8,0x2e,0xb0,0x33,0x15, +0xf6,0x8c,0x16,0x7c,0x49,0x36,0x8c,0x2c,0x79,0xce,0x2a,0x62, +0x46,0xf2,0xc9,0xe6,0xe4,0x83,0xe9,0xba,0xd9,0xfd,0xa5,0xcd, +0x35,0x15,0x2d,0x5c,0x25,0x96,0xb2,0xa9,0xa9,0x29,0xe9,0x89, +0x69,0x1c,0x84,0x43,0x80,0xc8,0x33,0x09,0xc9,0x09,0x29,0xf1, +0x29,0x9c,0xb0,0xba,0x49,0x9c,0xce,0xc4,0x26,0xc5,0xd0,0x87, +0x49,0x3a,0xef,0x75,0xd8,0xf4,0xb0,0xbe,0x51,0x95,0x3d,0x9f, +0x9c,0x42,0x1f,0xa9,0x1c,0x9a,0xc1,0x58,0xd6,0x42,0x5f,0xd5, +0x7c,0x85,0x5d,0xae,0x25,0x5f,0x9f,0x5e,0x9d,0x55,0x96,0x53, +0xe8,0x56,0xee,0xd1,0xe0,0xad,0xea,0xbd,0x25,0x60,0xe9,0xb1, +0x14,0x33,0x1e,0x64,0xe9,0xaf,0xf3,0x1e,0x95,0x5f,0x77,0x7b, +0xe2,0xfd,0xfb,0x51,0x6e,0xc4,0x54,0xd8,0x41,0x6e,0xf5,0x0c, +0x3e,0x68,0xfc,0xc9,0xb4,0x80,0xb7,0x5b,0xaf,0xb5,0x57,0x95, +0x7a,0x9d,0x43,0x05,0x44,0x7f,0x8d,0xea,0xee,0xdd,0x86,0xc5, +0x46,0x7c,0xc1,0x95,0x82,0xbc,0xfc,0x7c,0x0e,0xbf,0xee,0x11, +0xa6,0xb2,0x39,0x45,0x57,0x4a,0x33,0xcb,0x38,0x61,0x73,0x36, +0x31,0xc5,0xb6,0x16,0x16,0xda,0xd6,0x10,0x23,0x6c,0x6b,0x67, +0x29,0xc1,0xd0,0x21,0x1e,0x6e,0xd6,0xee,0xfa,0x5e,0x46,0x79, +0xf6,0x85,0xee,0xa5,0x9c,0xd2,0x1d,0xa9,0xfc,0x53,0xd0,0x77, +0xf0,0xd9,0xb3,0x9c,0x77,0xd4,0x3a,0x2c,0x86,0xc0,0x22,0x96, +0xc9,0x9d,0x03,0xf3,0x36,0xc2,0xd1,0x55,0x85,0x14,0x95,0x3b, +0xdf,0xc7,0xe9,0xcf,0xf4,0xee,0x71,0xc2,0xd4,0x5e,0x71,0xf5, +0x4f,0x6a,0x2b,0x24,0x9a,0x36,0x86,0x31,0xdc,0x85,0x53,0x36, +0xa1,0xdd,0x4e,0x4e,0x08,0xa3,0xe8,0xfb,0xe7,0xaa,0xfb,0x8d, +0xbd,0x8d,0x5c,0x9b,0x58,0xa1,0x27,0x1c,0x66,0xcd,0x3c,0x0e, +0xb9,0xec,0xf2,0xe4,0x54,0xc5,0x15,0xba,0xc2,0x0a,0xea,0x2e, +0x0e,0xb2,0xe9,0xa3,0x07,0x42,0x1b,0x32,0x52,0x6b,0x55,0x60, +0xbd,0x54,0x10,0x65,0x11,0x75,0x14,0xdf,0x0a,0x53,0x49,0x53, +0x6a,0x72,0x93,0x8a,0xf0,0x85,0xa6,0x38,0x17,0xd7,0x4a,0xe7, +0xf3,0xc5,0xb7,0x1e,0x04,0x66,0x3d,0x6a,0xeb,0xcd,0x7a,0x44, +0x2f,0x26,0x70,0x00,0x36,0x32,0xf1,0x31,0xe7,0xe3,0xe8,0x24, +0xdb,0x8d,0x63,0xcb,0x1a,0x70,0xeb,0xfb,0xe3,0x97,0x43,0x2e, +0x9e,0x08,0x9d,0x11,0x7a,0x4c,0x16,0xf9,0x35,0x38,0x76,0xa2, +0xe3,0x4b,0xe6,0x56,0xcc,0xd7,0xf1,0x3d,0xc9,0x81,0x34,0x86, +0x12,0x4f,0xdc,0x1b,0x86,0x5f,0x5d,0x88,0x93,0xf3,0x43,0xf7, +0x2f,0x44,0xdf,0x57,0xd9,0x8c,0xe1,0x86,0xe0,0xcd,0x7a,0x1c, +0xde,0xbe,0x1f,0x95,0x0e,0x72,0xc2,0x0d,0x61,0x0d,0xc1,0x81, +0x41,0x18,0x60,0xe1,0xa2,0xf8,0x9c,0xd2,0xd0,0xf5,0x3f,0x69, +0xac,0x10,0xe7,0xeb,0x52,0x6a,0xac,0xb7,0x09,0xc7,0x6b,0xa0, +0xe7,0x81,0x3c,0x8a,0x3a,0xce,0x3e,0x7b,0xd3,0x5b,0x2b,0xe9, +0x67,0x63,0xfd,0x10,0xd4,0x4b,0xc4,0x73,0x1c,0xb0,0xba,0x70, +0x61,0x83,0x44,0x3c,0xfd,0x6e,0xe1,0xe4,0x61,0x9d,0x27,0x14, +0x2c,0x6c,0x85,0x3d,0x04,0xa2,0x7a,0x31,0x0a,0xbe,0x80,0xa3, +0xc2,0x21,0x31,0x46,0x3c,0x04,0x3e,0xf8,0x05,0x46,0xe8,0x42, +0x04,0xae,0xc1,0x2b,0xba,0xc2,0xef,0xbd,0x58,0xc0,0x88,0x3a, +0xc2,0x2a,0xf2,0x4b,0xef,0x32,0x38,0x0f,0x1f,0xf5,0x61,0x9f, +0x0e,0x7c,0x82,0xe7,0x91,0xd3,0x05,0x0e,0xfb,0x18,0xeb,0xe3, +0x56,0xc7,0xcd,0x43,0x25,0x21,0x34,0x59,0xf1,0x9b,0xaa,0x27, +0xb5,0xa7,0x7b,0x78,0xc7,0x63,0x0e,0xd2,0x71,0x6b,0xe1,0x73, +0xc1,0x99,0xe0,0x46,0xfa,0xa7,0x37,0x32,0x7d,0xf8,0x05,0xa1, +0x8d,0x1d,0xf8,0x05,0x8b,0x47,0xe4,0x04,0xe7,0xd0,0xf7,0xe7, +0xb0,0xe0,0x3d,0x9d,0xbe,0x35,0x87,0x82,0x37,0x25,0xc5,0x16, +0xa9,0x5c,0xe7,0x76,0x4c,0x35,0x10,0x7e,0xed,0xc2,0x22,0x46, +0xb4,0xc2,0x97,0xe4,0x4d,0xef,0x22,0xca,0x02,0xc7,0xf7,0x62, +0xb5,0x2e,0xb0,0x78,0x41,0x4a,0x40,0x1c,0x60,0xec,0x42,0xa4, +0xbd,0x49,0xfa,0x85,0xef,0x8b,0x5f,0x57,0x3d,0xa9,0x93,0xbe, +0x2f,0xd8,0x3e,0xd8,0x2e,0x98,0x83,0x36,0x1a,0xff,0xda,0xb3, +0xdb,0x8b,0x9b,0x4b,0xab,0xbc,0x2b,0xbd,0xca,0xbd,0x4a,0x6b, +0x78,0xb7,0x1c,0xe7,0x5c,0xa7,0x9c,0x8a,0x82,0x92,0xa2,0x9c, +0x02,0xbb,0x52,0xde,0xd3,0xcd,0xd5,0xcd,0xd1,0xd3,0xb2,0xd0, +0x32,0xcf,0x36,0xd3,0xc3,0x8e,0xaf,0x0c,0xac,0xf2,0xab,0xf2, +0xb1,0xf1,0xb2,0xf4,0x35,0x0b,0xe4,0x84,0x55,0xc8,0x11,0xc8, +0xd6,0x41,0x77,0x71,0x2a,0xb8,0xeb,0x62,0x36,0x38,0xb0,0xa7, +0xfc,0x4e,0xf9,0x44,0xfa,0x70,0xe8,0x23,0xaa,0xf4,0xc1,0xcf, +0xb0,0x94,0x39,0x6e,0x18,0x64,0x70,0x44,0xee,0x27,0x81,0xb8, +0x73,0x71,0xba,0xfc,0x0f,0xb1,0xc0,0x25,0xbf,0x48,0x8d,0x3b, +0x1a,0x17,0x14,0x13,0xdc,0x9a,0xc3,0x7b,0x0f,0x38,0xdc,0x74, +0x6d,0xb7,0xf0,0xe5,0x53,0x7c,0x52,0xbc,0x52,0x3c,0x2d,0x4e, +0xca,0x23,0xe5,0xa7,0xd2,0xdb,0x53,0x3b,0x92,0xda,0x38,0x08, +0xc2,0x02,0x9c,0xc8,0xa4,0xe8,0xc9,0x7e,0x63,0x5a,0x92,0xd3, +0x1b,0x55,0xe0,0x1e,0xe6,0xb3,0x31,0xb9,0xd1,0xb9,0xd1,0xd9, +0x94,0x07,0xff,0xac,0x78,0x48,0xf6,0x6d,0xc0,0x5f,0xd0,0x80, +0xd9,0x73,0x4e,0xfd,0xb4,0xae,0xb2,0xa5,0x93,0x89,0x9b,0x81, +0x77,0x96,0x3a,0xdf,0x9c,0x5f,0x95,0x57,0x5e,0x1c,0x8c,0x9f, +0xbb,0xac,0x52,0x5d,0xda,0x46,0x2d,0x6b,0x1c,0x6c,0xcf,0x83, +0x7d,0xd0,0x38,0x13,0xa6,0x2b,0x4c,0x7b,0x50,0xc1,0x8a,0x7b, +0x30,0x87,0xf8,0xdf,0xf4,0x19,0xf0,0x18,0x30,0x75,0xe7,0x0b, +0x75,0xf3,0x34,0xb2,0x0e,0x71,0xc2,0x14,0x1a,0xd4,0x22,0x6f, +0xc3,0xbc,0x2e,0x9c,0x07,0x5f,0x30,0x6d,0x49,0x2d,0xc9,0xd5, +0xa9,0x3e,0xad,0xfc,0x36,0x67,0xfc,0xc8,0x1b,0xc7,0x1f,0x4f, +0x92,0xf3,0xb5,0xd1,0xf5,0xa3,0x45,0x38,0xa6,0x48,0xba,0x36, +0xb3,0xd8,0xe0,0xd5,0xf2,0x15,0xf8,0x31,0x7e,0x54,0x66,0xcc, +0x83,0x12,0x4c,0xac,0x7a,0x1a,0x25,0xe9,0xa6,0x2b,0x75,0xc3, +0x13,0x26,0x2e,0xfa,0x42,0x54,0xa4,0xf2,0xdf,0xb8,0xad,0xbe, +0x61,0x0e,0x6c,0x08,0x4f,0x09,0x8f,0x3e,0x7e,0x7c,0x06,0x68, +0xe2,0x00,0x49,0x36,0x90,0x72,0x7f,0x9a,0xd2,0xd2,0x1a,0x55, +0x14,0x9f,0xe8,0x8c,0xcc,0x60,0x71,0xbf,0xf0,0x9a,0x88,0xd1, +0xbd,0x42,0xb4,0xb4,0xf5,0xa6,0x38,0x43,0x1e,0x1d,0xde,0x26, +0x2e,0x37,0xfa,0x67,0x5a,0x3b,0x2b,0xaa,0x89,0x43,0xe4,0x0e, +0x7e,0x0c,0x9f,0xad,0x01,0x1f,0x83,0xec,0x56,0x7e,0x69,0xce, +0x8e,0x7c,0xcd,0xf2,0xab,0xb9,0x3d,0x45,0x1d,0xd5,0x76,0xe5, +0xbc,0xa1,0x9d,0xa6,0xeb,0x41,0x2f,0xdb,0x02,0xb7,0x52,0xaf, +0x4a,0x4e,0xf8,0xb8,0x55,0xdc,0x31,0x28,0x4c,0x6d,0x16,0xa7, +0xf6,0xc0,0x1d,0xb8,0x34,0xb2,0x17,0x2f,0xc1,0x80,0x9e,0x38, +0xce,0x4c,0x18,0xa7,0x29,0xae,0x32,0xa1,0xd1,0x7d,0xa3,0x09, +0x4e,0xb6,0xc5,0x95,0x9e,0xe9,0xc6,0xfc,0x93,0x94,0x7b,0x99, +0xd7,0x73,0xb8,0xaf,0x58,0x9c,0x12,0x1a,0x6f,0x08,0x3b,0x52, +0x61,0x41,0x16,0x7c,0x9c,0x3b,0x23,0xb2,0x75,0xdb,0xb1,0x0d, +0x21,0xcb,0xc3,0x66,0xc0,0x38,0xb6,0x2f,0xb7,0xb5,0xb0,0xa6, +0x98,0xf3,0x04,0x91,0xe0,0x99,0x7e,0x38,0xc3,0x0c,0x68,0xd3, +0x48,0x17,0xaf,0xcd,0x8a,0x7d,0xd6,0x04,0xce,0x68,0xe2,0x19, +0x06,0x7a,0x07,0x09,0xc4,0x6b,0xa2,0x94,0xbe,0xf1,0x08,0xee, +0x93,0x82,0xa6,0xac,0xfa,0xcc,0x16,0x1b,0x69,0x71,0x2d,0xc8, +0xde,0xcf,0xd6,0xbf,0x88,0x8f,0x8c,0x3b,0x71,0x29,0x2c,0x2c, +0xfc,0x04,0x7f,0x3a,0x89,0xa9,0x1b,0x6a,0xf8,0x2e,0xeb,0x7b, +0xae,0x91,0xe2,0x9f,0xd1,0xc5,0xb5,0x8f,0xf4,0xc0,0x57,0x3a, +0x16,0xba,0x09,0x67,0xd3,0xc7,0x64,0xea,0xd5,0xda,0x9a,0xaa, +0xeb,0x8b,0xa4,0xc5,0xb5,0x1e,0x69,0x71,0x6d,0xb4,0x88,0xca, +0x7b,0x5c,0x5a,0x5b,0x23,0x83,0x4e,0x4d,0x02,0x27,0x7b,0xf0, +0x24,0xe5,0x6b,0x5e,0xc2,0x41,0x31,0x44,0x3c,0x08,0x4e,0x34, +0x4a,0x1d,0xd5,0x83,0xa3,0xb8,0x96,0x62,0x30,0xe1,0x41,0x2f, +0x45,0x1b,0x3a,0xb4,0x2f,0x29,0x46,0xf9,0x82,0x62,0x94,0x7f, +0x4d,0x68,0xbd,0x64,0x42,0x9e,0xa3,0x26,0xb4,0x42,0x32,0x21, +0xa7,0xe9,0xf4,0xad,0x39,0xb8,0x5e,0x92,0xfe,0x87,0xb5,0x44, +0x50,0xe9,0x15,0x55,0x60,0x3a,0xbc,0x15,0xcc,0x47,0x8e,0x89, +0xe6,0xf0,0x1c,0xa7,0x8b,0x4a,0xba,0x82,0x12,0xce,0x15,0xd7, +0x68,0xff,0x33,0xbb,0x5f,0xdc,0xc3,0xa8,0x09,0x4f,0x09,0x9d, +0xdd,0xf3,0x21,0x9b,0xb9,0x2a,0xa9,0x8d,0xcd,0x87,0x6a,0x9c, +0xcf,0x8e,0x8c,0xd1,0xa7,0xb3,0x1f,0x17,0x62,0x36,0x03,0x2f, +0x25,0x25,0xc4,0x6a,0xda,0xae,0xa6,0x86,0x59,0x5b,0x47,0x60, +0x3b,0xa8,0x74,0xa3,0x0a,0x2c,0xff,0xef,0xcb,0xba,0x3e,0x5c, +0xc6,0x66,0xb7,0xa6,0x77,0x27,0xd4,0xcb,0x93,0xf8,0x10,0xb3, +0x00,0x1d,0x1f,0x7d,0x0e,0xc7,0x31,0x99,0xad,0x29,0xad,0xc9, +0x9d,0x86,0xc9,0xbc,0x1b,0x7e,0xa4,0x8b,0xf3,0xf7,0x2f,0xe4, +0x40,0x53,0x8f,0xe2,0xc3,0x72,0xf0,0xd7,0xc5,0x7c,0xd8,0xcf, +0x9e,0x0e,0xa0,0x26,0xe5,0xcb,0xa1,0x86,0xb8,0xa8,0x1f,0xde, +0x81,0x8c,0x39,0xa6,0x1d,0xa4,0x11,0x64,0x7c,0xec,0xec,0xf1, +0x73,0xc7,0xcf,0xc5,0xca,0xf9,0xeb,0xb1,0x3f,0xa4,0x5c,0x4d, +0x8c,0x0e,0x89,0x3a,0x1e,0x15,0xd2,0x90,0xce,0x1f,0xe9,0xf7, +0xbc,0xee,0xd7,0x64,0x7d,0x8c,0x4f,0xf2,0x49,0x72,0x4b,0x74, +0x75,0x8e,0xb4,0x8d,0xb4,0x3b,0x95,0xda,0x96,0xda,0x97,0xdc, +0xc3,0x51,0x24,0xd8,0x8c,0x2a,0x4c,0x92,0xb1,0x0c,0x94,0x98, +0xfa,0xd1,0x6d,0x8f,0x57,0x68,0xc2,0x46,0xe7,0x44,0x67,0x47, +0x67,0x71,0xb0,0xe5,0x1e,0x53,0x6a,0x9b,0x51,0x94,0x56,0x90, +0x94,0x37,0x43,0xfc,0xb1,0xe7,0x2a,0xbc,0xef,0x63,0x47,0x16, +0x29,0x4c,0xc9,0x13,0xad,0xcd,0x68,0x2f,0x17,0xc2,0x28,0x60, +0xfe,0x93,0xf2,0x80,0xf2,0xd4,0x9a,0xbc,0xca,0xe2,0x52,0xbf, +0x22,0xbf,0xac,0xc0,0xa2,0x2a,0xde,0x3f,0xd3,0x3b,0xcb,0x33, +0x23,0x2f,0x27,0x3b,0x37,0x2d,0xc7,0xbe,0x84,0x0f,0xf6,0xf3, +0xf1,0xf2,0xf0,0x72,0xcc,0x76,0xcc,0xf0,0x48,0xf2,0xb4,0xe3, +0xf3,0x43,0x8b,0x83,0x8a,0x8f,0xb8,0xfa,0xb8,0xf8,0xbb,0x87, +0x70,0x82,0xa5,0x1b,0xa1,0x7d,0x41,0xa4,0x22,0x5c,0x04,0x6d, +0xff,0xdb,0xd6,0x9f,0x80,0xdb,0x91,0x76,0x19,0x45,0x2b,0x00, +0x05,0x04,0x16,0x36,0x0c,0x5e,0x8d,0x87,0x49,0x52,0x0a,0xe7, +0x44,0x46,0x3d,0x3f,0x70,0x58,0xf9,0x6f,0x69,0x33,0xb3,0x56, +0xe5,0x1a,0xab,0x9f,0x2c,0xdb,0xb4,0x90,0xf5,0x08,0x8b,0x29, +0x56,0xa1,0x24,0xd1,0xb8,0x9b,0x42,0x08,0x25,0x88,0xe9,0xc6, +0x98,0x77,0x5a,0x73,0xd0,0x5f,0x1f,0xfc,0x51,0x09,0x93,0xf4, +0x61,0x07,0x7b,0x62,0x8d,0xa5,0x15,0x7e,0x6e,0xcb,0x2d,0x85, +0x95,0xa4,0xf2,0x6e,0x03,0x30,0xe9,0xcf,0xb9,0x26,0x8c,0xfb, +0xcf,0xd8,0x41,0xc5,0x30,0x7c,0xce,0x86,0xec,0xb3,0xc0,0x71, +0x56,0xeb,0xb8,0xfe,0x3d,0x55,0xdb,0x76,0xcf,0xd4,0x0e,0x71, +0x37,0x56,0x76,0x60,0xe2,0x0f,0xcb,0x1a,0x99,0x6b,0xd5,0x4d, +0x7f,0x7d,0x67,0xf7,0x44,0x3e,0xac,0x22,0xec,0xc5,0x1f,0x09, +0xa4,0xf4,0x60,0x0a,0xa8,0x68,0x51,0xd0,0x1c,0xae,0x07,0xe1, +0xb8,0x00,0x1b,0x74,0x15,0xa4,0x17,0xeb,0xe9,0x74,0x4f,0x51, +0xbc,0x22,0xfa,0xf3,0x77,0x6f,0x5c,0x75,0xa8,0x42,0xce,0xff, +0x7a,0xf7,0xd1,0x2f,0x83,0xef,0x39,0xe1,0x0e,0xa6,0x90,0xeb, +0x5d,0xaa,0xb0,0x04,0x23,0xee,0x69,0xef,0x42,0x1f,0x43,0xf0, +0x59,0x86,0xd1,0x06,0x10,0xbd,0x10,0xfd,0x0c,0xc0,0x6f,0xc1, +0x68,0x72,0xec,0x1c,0xcc,0x31,0x80,0x1c,0x5c,0xdb,0x0f,0x6b, +0xa1,0xbb,0x0b,0xbb,0xdf,0x41,0x11,0x75,0xe1,0x7f,0x40,0x04, +0xa3,0x03,0x7d,0x64,0x19,0x1e,0xfe,0x85,0x15,0xb9,0xa5,0xf4, +0x8f,0xaf,0xc4,0x49,0x4b,0xf6,0x94,0x19,0xf0,0x4d,0x15,0xe5, +0xe5,0x85,0x65,0x9c,0xa8,0x3b,0x20,0xa4,0xb0,0x25,0xf5,0x25, +0x2d,0x85,0x1d,0x9c,0x70,0xce,0x87,0x2c,0xc4,0xc3,0x6f,0xa9, +0xd3,0x98,0x20,0xdc,0x23,0x47,0x53,0x83,0x92,0x8f,0x25,0x39, +0xd8,0xf3,0x3d,0x66,0x43,0x86,0xcd,0xa6,0x8e,0x36,0x0e,0x76, +0x0e,0x4e,0xde,0x67,0x7d,0xce,0xfa,0x9d,0x8b,0xa5,0x38,0xee, +0x93,0x38,0x58,0x95,0x0a,0x4a,0x19,0x89,0x81,0x09,0x01,0x09, +0x81,0xcd,0x85,0xbc,0xe3,0x4d,0x8b,0xdb,0xd6,0x1d,0x96,0x5e, +0x7c,0x86,0x6f,0x86,0x47,0x86,0x87,0x6a,0xd8,0xe6,0x13,0x5b, +0x4f,0x3e,0x79,0xf0,0x16,0x3e,0xeb,0x7f,0x66,0x5e,0xcc,0x3b, +0x1a,0x58,0xea,0x98,0xea,0xfa,0x67,0xfa,0x64,0x7b,0x65,0xd7, +0xb5,0xd6,0x76,0x96,0x75,0x53,0x7f,0xdf,0x2d,0xae,0x79,0xae, +0xb6,0x41,0x9c,0xab,0x2f,0x2c,0x60,0x3c,0xad,0x5d,0x6c,0x9c, +0xed,0x38,0x21,0xf6,0x2e,0xb1,0x30,0xd5,0x31,0xd3,0x30,0xaf, +0xb4,0xe6,0xfb,0xeb,0x07,0xdb,0xdb,0xda,0xb8,0x91,0xcf,0x16, +0x11,0xe3,0xd6,0x83,0x1d,0x26,0xa5,0x0e,0x76,0x7c,0x87,0xdd, +0x90,0x59,0x87,0x31,0xa7,0xd0,0xc3,0x3d,0xc4,0xb0,0xfd,0x50, +0x97,0x46,0xbd,0xa3,0x1d,0xdf,0x6d,0x73,0x5b,0xa7,0xc3,0x88, +0x1b,0xf9,0x94,0x52,0x58,0x4d,0xe3,0x3d,0x26,0xdb,0xac,0x4a, +0x4d,0xf8,0x07,0x8d,0x8f,0x7b,0x7b,0xda,0x24,0x81,0xe4,0x60, +0xf2,0x58,0x6d,0x8b,0xb8,0x46,0x57,0x58,0x83,0x1a,0x57,0x41, +0x43,0xd8,0x23,0x25,0x25,0xe4,0x28,0xb6,0x12,0x58,0xb9,0x0f, +0x57,0x8a,0xca,0x1a,0xff,0x8c,0x19,0x62,0xf1,0xc9,0xc8,0x64, +0x69,0x9b,0xe0,0x06,0xe8,0xd4,0xc2,0xf2,0xfd,0x69,0xbc,0x35, +0x6e,0x52,0x45,0xb5,0xf5,0xb8,0x81,0x13,0x8f,0x68,0xfc,0x33, +0x6d,0x88,0x11,0x6b,0x5e,0x11,0x57,0x20,0x9a,0xb0,0xd3,0x00, +0x64,0xea,0x3e,0x7c,0x0f,0x4e,0xec,0xc3,0x4d,0xc5,0x48,0x38, +0x89,0xb3,0x18,0x91,0x51,0xb1,0xcc,0x6f,0xb4,0xf7,0x62,0xd6, +0x37,0x5a,0x7b,0xf1,0xbc,0x01,0x9c,0xdf,0x3f,0x70,0x0b,0xb2, +0x54,0x8d,0xd4,0xd0,0xd3,0x18,0x3c,0x55,0x31,0xd5,0x92,0xb1, +0xcd,0xd3,0x5b,0xb7,0x6b,0xeb,0x7a,0x8d,0x19,0xa5,0x46,0x05, +0x59,0x05,0xd9,0xf9,0xb9,0x33,0xf0,0xfa,0x80,0xf0,0x11,0x5b, +0x5a,0x51,0x58,0x9d,0x53,0xc3,0x41,0xc2,0x41,0x49,0x5c,0xd3, +0x6b,0x1f,0x9e,0x36,0x82,0xd3,0xbb,0xb0,0x4c,0x0e,0x65,0x38, +0x65,0x00,0xa6,0xc0,0x8d,0x0e,0xbc,0x71,0x0f,0xf2,0xda,0x31, +0xef,0x36,0x84,0xc2,0xa4,0x87,0x1d,0xdb,0x69,0xf4,0x0f,0x1d, +0x68,0x63,0x44,0xd5,0x93,0xc4,0x7c,0xc7,0xde,0x6d,0x1b,0xb5, +0x2b,0x8c,0xf9,0xd7,0xb7,0xee,0x3c,0x6b,0x7e,0xcc,0x09,0x89, +0xa8,0x42,0x70,0xff,0x75,0xd8,0xcf,0xe0,0x7e,0x69,0xd1,0x7f, +0xff,0x41,0xa9,0xfe,0x0f,0x75,0x4a,0xcb,0x88,0xd3,0x31,0x49, +0x26,0x95,0x83,0xe3,0x30,0xb6,0x97,0x62,0x7d,0x4d,0x2d,0xd4, +0xfc,0xa0,0xc5,0x12,0xc3,0x9a,0x06,0x9b,0x86,0x98,0x87,0x25, +0x68,0x7f,0xd0,0x62,0x49,0xe1,0xb0,0xfc,0x83,0x16,0xcb,0xaf, +0x4c,0x4b,0x9a,0x54,0xa7,0xb3,0x9d,0xad,0x4d,0xa9,0x49,0xab, +0xa6,0x58,0xf5,0xa6,0xf0,0x31,0x81,0x71,0xea,0x38,0x0e,0x33, +0x75,0x84,0x77,0x7d,0xac,0x26,0xf5,0x63,0x62,0x08,0xe6,0x80, +0x03,0x7e,0x83,0xca,0x4c,0xaa,0x96,0x24,0x80,0xd1,0x9a,0x99, +0xd9,0xaa,0x02,0xc3,0xe0,0xce,0x6a,0x82,0x2b,0xa5,0x46,0xa2, +0x0c,0xd6,0xb2,0x71,0x98,0x49,0x9c,0xb7,0x98,0xec,0xda,0x72, +0xa0,0xc1,0x9c,0xff,0xf6,0x4e,0xef,0xf3,0xca,0x97,0x1c,0x1c, +0x8d,0x20,0xfd,0x7b,0x3b,0x77,0x34,0x6d,0x68,0xaf,0xe4,0xcd, +0x9f,0x1a,0x3c,0xd4,0xba,0x45,0xbb,0xf4,0x9c,0x10,0x42,0x6e, +0x0e,0x37,0x7f,0x58,0x41,0x2b,0xf9,0xbf,0x97,0x35,0x35,0x56, +0xae,0xdc,0xf5,0x61,0x59,0xb3,0xb8,0xa0,0xa4,0xcc,0xbc,0xd6, +0xaa,0xc5,0x5a,0xdd,0x74,0x8b,0xc5,0x42,0xeb,0x22,0x39,0xff, +0xbe,0xe9,0x45,0xeb,0xd7,0x5d,0x57,0x8d,0xef,0x9b,0xbd,0x94, +0x56,0xd0,0xb6,0xd4,0xec,0xab,0xd5,0x6a,0xe4,0x46,0x64,0x62, +0x2c,0x1d,0xdc,0x2b,0x14,0xa1,0x3f,0x19,0x19,0x66,0xe1,0x4b, +0x45,0x2c,0xc1,0xd2,0x2d,0x50,0xca,0x82,0xe7,0x74,0x2c,0xdd, +0x28,0x35,0x6e,0x6e,0x27,0xd1,0xb1,0x31,0xa3,0x4b,0x68,0x27, +0x19,0x2f,0x1d,0x5b,0x03,0x5d,0xb9,0x61,0xbd,0x95,0xb4,0xf8, +0x29,0xca,0xa4,0x74,0xda,0xa6,0x2d,0xd0,0x34,0xfa,0xeb,0x4d, +0x1b,0xa5,0x46,0xbb,0x28,0xad,0x88,0x66,0x8c,0xae,0x8e,0x7d, +0x2e,0xad,0x8e,0x3d,0xfa,0xb0,0x3a,0x96,0x21,0xad,0x73,0xb6, +0x08,0x41,0xe4,0x51,0xe6,0xdd,0xec,0x5b,0xb9,0x51,0xa1,0x51, +0xa1,0x97,0x42,0x29,0x34,0x09,0x1c,0xf6,0xe9,0xf3,0xec,0x32, +0xf5,0xe3,0x53,0x3d,0x53,0x5c,0x93,0x5c,0x1c,0x8e,0xdb,0x85, +0xda,0x86,0x9d,0x84,0x5d,0xfc,0x37,0x49,0xc3,0x19,0xed,0x59, +0xde,0x0d,0xbc,0x8e,0xef,0xce,0xc0,0x4d,0xc7,0x13,0xd0,0x9f, +0x0f,0x3a,0x2d,0x49,0xf8,0x72,0x8a,0x21,0xb1,0x98,0xe0,0xd2, +0x51,0x65,0xe9,0x4f,0x98,0xd6,0x8c,0xcc,0x0e,0x15,0x45,0xbb, +0x16,0x2b,0xc6,0xe0,0x77,0xa4,0x50,0xf5,0xa9,0x0d,0xac,0xd4, +0xce,0xa6,0xdc,0x6b,0x59,0xf7,0xae,0x6a,0xa7,0x4e,0xee,0x2c, +0xf3,0x75,0x77,0xe1,0xed,0x4b,0x6f,0xb8,0x17,0xcc,0xde,0xb3, +0x4e,0x91,0x0e,0xca,0x2e,0x91,0xc7,0x4f,0x38,0xcd,0x32,0x67, +0x12,0x8c,0x65,0xed,0x4c,0x5f,0xf6,0x95,0x8e,0x78,0x95,0xb8, +0x9a,0x8b,0xcd,0x30,0x75,0x26,0x96,0x98,0xbc,0x60,0xce,0xae, +0x09,0x34,0x52,0x37,0x2b,0xb4,0xe3,0xf5,0x18,0x67,0xbd,0x0d, +0xe6,0xb8,0xda,0xe0,0x8a,0x11,0x65,0xb9,0x7d,0x3f,0x37,0x15, +0xde,0xe6,0xe0,0x37,0xa8,0x21,0x23,0xb3,0x07,0x14,0xb3,0xa9, +0xeb,0x10,0x5f,0x12,0xf0,0xef,0x40,0xff,0x9b,0xa0,0xdc,0x8e, +0xcf,0x8c,0x60,0xd6,0x41,0x0c,0x93,0x43,0x18,0xee,0x63,0x36, +0x44,0xac,0x89,0x5c,0x73,0x5a,0xd2,0xc7,0x77,0x4d,0x04,0xab, +0x2c,0x58,0x93,0x17,0xd9,0xc9,0x6f,0x0b,0x59,0x17,0xb6,0x22, +0x9c,0x7b,0x97,0x45,0x8a,0x2a,0x72,0xca,0xd2,0x2b,0xcc,0xb2, +0xf9,0xa3,0x4e,0x7e,0x4e,0x9e,0xee,0x1c,0x0e,0xdd,0x20,0x05, +0xee,0x25,0xd6,0x99,0x4e,0x4d,0x79,0x7c,0x60,0xa5,0x5b,0x9d, +0x7b,0x31,0x45,0x5e,0x4a,0x42,0x38,0x59,0x7e,0x26,0x46,0x1b, +0xf4,0xe3,0xc0,0x2c,0x01,0xb6,0xa6,0xcd,0xc8,0xf2,0xce,0xf4, +0x49,0xf7,0x6d,0xaa,0xe2,0xf5,0xef,0xec,0x7a,0x7e,0xf8,0x86, +0xa5,0x03,0x5f,0xe4,0x56,0xe2,0x54,0xe4,0x88,0x63,0x23,0x70, +0xf2,0x49,0x9c,0x7a,0xaa,0xb2,0xa3,0x6a,0xb0,0xe4,0x06,0x27, +0x4c,0xea,0xc1,0xae,0xf7,0x1a,0xb3,0x31,0x57,0x2a,0xf2,0xec, +0xaa,0x6e,0xab,0x66,0xad,0xc7,0xad,0x04,0x6f,0x62,0x56,0xa7, +0xd7,0xa0,0x57,0xea,0x64,0xc6,0xf7,0x3b,0xb4,0xda,0xb5,0x59, +0x72,0xa7,0x28,0xc5,0x90,0xf2,0xd7,0x75,0x2a,0x1d,0x4d,0xf9, +0x5e,0x87,0x7e,0xb3,0x36,0x73,0x4e,0x58,0x2e,0x3a,0x13,0xe1, +0xb0,0x96,0x48,0x89,0xe5,0x16,0x81,0xf2,0x4d,0x5d,0xf7,0x39, +0x38,0x66,0xb9,0x72,0xbd,0x89,0x8c,0xd2,0xd4,0xf1,0x15,0x30, +0x15,0xac,0x67,0x16,0x6a,0xb1,0xc2,0x65,0x71,0x36,0x51,0x65, +0x3c,0x4e,0xc4,0x16,0xaa,0x80,0xa8,0x29,0x72,0xac,0x66,0x4e, +0xe0,0x80,0xf2,0xb7,0xd2,0x41,0x84,0x7a,0x15,0xd8,0xc3,0xea, +0xa4,0xcb,0x46,0x0c,0x61,0x22,0x71,0x1d,0xcd,0x5b,0x3f,0xb4, +0xa8,0xdd,0x96,0xbf,0x05,0x63,0xda,0x61,0x56,0xe1,0x5f,0xa3, +0xb8,0xf2,0x04,0xf9,0x9e,0x39,0x83,0x93,0x7d,0x76,0xe8,0xa9, +0x79,0x5f,0x75,0xbc,0xe3,0xd6,0x62,0xea,0xc3,0x67,0xb8,0xa7, +0x3b,0xa7,0x3a,0x5a,0x1e,0x31,0x09,0x34,0x09,0x0a,0x83,0x10, +0xfe,0x7e,0xc2,0x93,0xcc,0xab,0xf9,0xee,0xad,0xfc,0x21,0xcf, +0x15,0xfe,0x5f,0x85,0xa6,0x60,0x3b,0x1f,0x78,0x32,0x30,0x32, +0xf0,0x54,0xba,0x36,0xff,0xb2,0xe0,0x97,0xca,0xc7,0x35,0x71, +0x47,0x62,0xe9,0x23,0x33,0x9e,0xaf,0xb2,0x7e,0xf9,0xac,0xf2, +0xdd,0x25,0x58,0x34,0x83,0x86,0xef,0xad,0xa7,0x56,0x84,0x9b, +0x2a,0xbb,0x9c,0x3c,0x16,0xe6,0x30,0x4b,0x95,0x49,0xd0,0x97, +0x7d,0xcd,0x5c,0xcb,0xcb,0x69,0x89,0x57,0x49,0xbe,0x15,0xf3, +0x16,0xa6,0xcf,0xc4,0xbb,0x0c,0xde,0xdb,0x4c,0x2c,0x6b,0xe4, +0x35,0xa3,0x89,0xff,0x5d,0x4e,0x4d,0x8e,0x4d,0x36,0xdc,0x09, +0x34,0x25,0xd6,0x35,0xda,0xcd,0x06,0xe5,0x4e,0xa6,0x7c,0xbb, +0x63,0x8f,0x65,0xa3,0x35,0x45,0x0a,0xe2,0x19,0xd2,0x2a,0x18, +0x9b,0x0c,0x0a,0xc6,0xe2,0x6d,0xd1,0x98,0x85,0x38,0x69,0x67, +0x43,0x4e,0x43,0xa2,0x9c,0xe9,0x45,0x25,0x42,0x1b,0xe6,0xa8, +0xc4,0x8e,0x78,0x50,0xb0,0xfb,0xff,0xa5,0xa7,0x23,0x64,0x52, +0xf7,0x8b,0xd3,0xe8,0x27,0xa6,0xb1,0x10,0x3d,0x9d,0xfe,0xf2, +0x34,0x34,0xa7,0xb0,0x68,0xa2,0xb0,0x97,0xc0,0xee,0x38,0xd8, +0x9d,0x00,0xf3,0xd3,0xda,0xf6,0xf0,0x2d,0x15,0x26,0x77,0x54, +0x9f,0xe9,0x5e,0x9d,0x61,0xe1,0x92,0xef,0x56,0xe0,0x94,0xef, +0x38,0x63,0xf9,0x89,0xf9,0x91,0x38,0xe6,0x54,0x69,0x67,0xe9, +0x90,0x54,0x29,0xe2,0x71,0x37,0xa6,0xbe,0xd7,0x9a,0x8d,0x27, +0xf4,0x61,0x3b,0xe3,0xa1,0xe6,0xa4,0xe6,0xa8,0xb7,0xe9,0x0c, +0x7f,0x02,0x8b,0x89,0xf5,0x51,0xcb,0x20,0x4b,0xca,0x34,0x0a, +0x61,0x5c,0x2f,0x65,0x54,0x11,0xc0,0xf6,0x62,0x8b,0x2e,0x7c, +0x84,0x11,0x38,0x4e,0x17,0xc6,0x61,0x1b,0x6b,0x13,0x62,0x13, +0x62,0x35,0xaa,0x0b,0x3d,0xae,0xf8,0x6d,0xd5,0xcf,0x8d,0x1c, +0x74,0xa3,0x3d,0x11,0xd4,0x75,0x44,0x75,0x16,0x17,0x09,0x1b, +0x08,0xea,0xdb,0xa3,0x0c,0xbf,0x58,0xa2,0x5c,0x6d,0x26,0x83, +0x25,0x30,0xae,0x11,0x66,0x80,0xed,0xcc,0x2c,0x6d,0x56,0x90, +0x8b,0x73,0x89,0x21,0xe3,0x73,0x32,0x3a,0x57,0x45,0x98,0xa0, +0x2d,0x4e,0x66,0xb5,0xae,0x1c,0xe9,0x55,0x1e,0x66,0x6a,0x47, +0xc7,0x79,0x97,0x54,0x00,0x4f,0x49,0xb8,0xa8,0x08,0x25,0x30, +0x83,0x89,0xc0,0x2f,0xed,0xb5,0x16,0xef,0x71,0xb9,0x25,0x7f, +0xed,0x5e,0x67,0xe6,0xc3,0xa7,0xfa,0x66,0x3a,0x64,0xd9,0x6a, +0xf8,0xa9,0xfa,0xef,0x0e,0x08,0x81,0x70,0xfe,0xd7,0x38,0x98, +0x9c,0xf9,0xf8,0x8a,0x6f,0x27,0xbf,0xca,0x1b,0xc9,0x51,0xfc, +0x28,0x22,0x0d,0x7b,0x79,0xaf,0x93,0x9e,0x91,0xee,0x91,0x29, +0x7a,0x3c,0xcc,0x2d,0x7d,0x53,0x08,0x13,0x1b,0x53,0x5d,0x93, +0xdd,0xe3,0x7d,0xeb,0xaf,0xf0,0x99,0x9e,0xf0,0xd1,0x8b,0x8e, +0xa7,0xf1,0xb0,0x61,0x06,0x2c,0x33,0x61,0xe4,0x67,0xad,0x23, +0x6c,0x95,0x4d,0x23,0x02,0x8e,0x1a,0xce,0x5a,0xc9,0xa4,0x4a, +0xa5,0x24,0x9e,0xd5,0xe6,0xbc,0x4a,0x56,0x89,0xef,0xbf,0x70, +0xa3,0x65,0xe6,0x5d,0x71,0x19,0x8b,0xed,0xff,0x19,0x4b,0x7a, +0x85,0xa7,0xba,0xc3,0x82,0xf1,0x88,0x99,0x34,0x5c,0xf7,0xa1, +0x82,0x60,0x12,0x9d,0xbb,0x49,0xcc,0xe0,0x68,0x21,0x5a,0x48, +0xa7,0xfe,0x1b,0x1f,0x19,0x13,0x9c,0x4a,0xdf,0x9f,0xca,0xc2, +0xdd,0xe9,0xf4,0xad,0xa9,0x98,0x4e,0x07,0x65,0x81,0xb0,0x8f, +0xc0,0x96,0x38,0xd8,0x14,0x0f,0x5f,0xa4,0xa6,0xf9,0xa6,0xfa, +0xa6,0xf8,0xb5,0x94,0xf1,0xe6,0x77,0xd5,0x9f,0xea,0x5f,0x35, +0x77,0xe1,0xf3,0xdd,0xf2,0x9d,0xf2,0x1c,0x57,0x47,0x2c,0x3e, +0x39,0xff,0x54,0x49,0x57,0xc9,0x70,0xfe,0x35,0x0e,0xae,0x77, +0x63,0x94,0x34,0x2c,0x61,0xfa,0xb0,0x93,0xf1,0x54,0x73,0x56, +0x73,0xd2,0xdd,0x7e,0x86,0x47,0xd7,0x58,0x92,0xff,0x30,0xe3, +0x51,0xe2,0xf7,0x1c,0x50,0x24,0x33,0xa4,0x4b,0xd1,0x60,0x00, +0xae,0x33,0xc7,0x2f,0xb6,0xe0,0xd8,0x22,0x35,0xfe,0x4a,0x41, +0x5a,0x51,0x4a,0x31,0x27,0x6e,0xef,0x7d,0x00,0xbb,0x05,0x7f, +0x16,0x77,0x8b,0xdb,0x88,0x30,0x01,0x26,0x8a,0x13,0x58,0x61, +0x16,0x9d,0x56,0xff,0x8e,0xcd,0x1c,0x89,0x58,0x1b,0xb8,0xd3, +0x90,0x22,0x5b,0xac,0x5c,0x67,0x21,0xa3,0x31,0x8f,0xda,0xe0, +0x34,0xb0,0x9b,0x99,0xab,0xc3,0x0a,0x7b,0xc5,0xf9,0xc4,0x84, +0xf1,0x3b,0x19,0x93,0xad,0x22,0xb0,0xda,0xa2,0x12,0xab,0x9d, +0x75,0xb4,0x47,0xb9,0x4f,0x12,0x2f,0xa0,0x63,0xb3,0x83,0xd5, +0xa7,0x63,0x43,0x49,0x8a,0x48,0x4e,0xfe,0xb7,0x28,0xd5,0xa9, +0xef,0x60,0x49,0x2f,0x2e,0x81,0x9f,0xb4,0xf0,0x27,0xdc,0xae, +0x0b,0xeb,0x98,0x23,0x38,0x5e,0x1d,0xc7,0xaf,0x59,0x54,0x61, +0xc8,0x3f,0xff,0xb5,0xe1,0xc7,0xb8,0x1f,0x29,0xb9,0xda,0x3c, +0x20,0x7c,0xc9,0xc4,0x5c,0x94,0xc8,0xd5,0xef,0xb8,0xad,0xa6, +0x5e,0x16,0x2b,0xac,0x23,0x42,0xd2,0x00,0x9e,0x80,0xcd,0x87, +0x71,0x33,0x3a,0x33,0xe6,0xc0,0x92,0xa3,0xbb,0xbd,0xb7,0x78, +0xa9,0x37,0x79,0xf3,0xf9,0x57,0x8b,0x9e,0x67,0xdc,0xe5,0xf0, +0x32,0xca,0xc9,0x91,0xdb,0xde,0xdf,0xfa,0x5e,0x35,0xf1,0xe1, +0x73,0xd4,0xf2,0xb6,0x67,0xec,0xe3,0x14,0x9f,0x89,0x09,0xa4, +0x0e,0xd6,0x94,0x81,0xc6,0x15,0xd8,0xaa,0x96,0xcc,0x07,0xe0, +0x21,0x27,0xd4,0xb2,0xc2,0xd5,0xd4,0xef,0xa9,0x0b,0xc3,0xc3, +0x0c,0x7e,0xff,0x9c,0x1c,0x83,0x0d,0x3e,0xb0,0xcc,0x0d,0x26, +0x6b,0x05,0xf0,0x14,0x3a,0x5c,0xc1,0x79,0xa9,0xb8,0x8e,0xba, +0x89,0x39,0xc2,0x2b,0x52,0x91,0x51,0x96,0x5b,0x5c,0x50,0xea, +0x58,0xef,0xd0,0xee,0xbc,0xdb,0x76,0x9d,0xcb,0x62,0x3f,0xa9, +0xdc,0xe1,0x98,0x82,0xdf,0xab,0x9f,0xb5,0xde,0xb7,0xfc,0xde, +0xe1,0x0f,0xaf,0xec,0x2e,0x7e,0xd5,0x95,0xad,0x45,0x87,0xca, +0x6f,0xb5,0xf6,0xf6,0x56,0x5f,0xe5,0x9a,0xb1,0x97,0x4d,0xcc, +0x48,0xc8,0x8c,0xcb,0xd4,0x4b,0xe2,0x9d,0xb6,0xee,0xd9,0xba, +0xca,0x9c,0xd2,0x00,0x5c,0x45,0x6a,0xef,0x74,0xc0,0x84,0xac, +0x97,0xf4,0x17,0x9a,0xfe,0x33,0x76,0x58,0x31,0x04,0x9b,0xd8, +0xa0,0xbd,0x72,0x1c,0x6f,0xba,0x81,0xbb,0xb5,0xa7,0x7e,0xe7, +0xf6,0x99,0x3a,0xc1,0xae,0x7a,0xca,0x66,0x4c,0x82,0xaa,0xac, +0x8b,0xf9,0xa6,0xa1,0xf9,0xdd,0x0f,0xe6,0x4f,0xb4,0x86,0x54, +0x84,0x01,0x08,0x27,0x2e,0xa6,0x26,0xe6,0x1a,0xb6,0xba,0xe5, +0x66,0xd5,0x8e,0xb5,0x31,0xf4,0x5f,0x74,0x2c,0x27,0x8c,0x15, +0x7f,0x24,0x6d,0xe8,0xfe,0x27,0x04,0xb5,0x63,0xd0,0xef,0x5a, +0x8b,0x71,0x32,0x7b,0xf9,0x4a,0x5c,0x4e,0x6c,0x8e,0x01,0xbd, +0xcf,0xcd,0xb6,0xbb,0xd5,0x75,0x2b,0xac,0xf8,0xca,0x8a,0xe2, +0x9a,0x5c,0x6a,0x71,0x0b,0xe6,0xa3,0xbe,0x31,0xe8,0xe3,0x44, +0x6c,0x94,0x0b,0xef,0x3a,0x30,0x1e,0x26,0x8e,0x6a,0x18,0x45, +0x93,0xdb,0xaa,0xfb,0xc4,0xf1,0x06,0x8a,0xfe,0x2e,0x56,0xac, +0xc4,0xe5,0x24,0xa8,0xc4,0xb3,0xf6,0xc8,0x15,0x3d,0x5f,0x3e, +0xcb,0x27,0xd7,0x36,0xd9,0x93,0x03,0x88,0x24,0xf9,0xc5,0xd9, +0xe5,0xe9,0x85,0x1a,0x79,0x7c,0x80,0xb5,0x87,0x95,0x8b,0x23, +0x27,0x96,0xe9,0xff,0xc3,0x77,0x33,0xe2,0x04,0xf1,0x36,0xb1, +0x39,0x9a,0x50,0xad,0xd2,0x02,0xd7,0xe0,0xcd,0xc8,0x4e,0x71, +0xe1,0x70,0x37,0x9c,0xd3,0x63,0x0f,0xe5,0xb8,0xbe,0x52,0x06, +0x3a,0x13,0xd2,0x53,0x6a,0x55,0xde,0x48,0x22,0xc6,0x52,0x5a, +0xf4,0x06,0xe8,0x20,0x78,0xee,0x47,0x38,0xc7,0x0c,0xad,0x24, +0x3f,0xc2,0xc5,0x95,0xac,0xd8,0x25,0x27,0x70,0x6e,0x39,0x9e, +0x63,0x60,0xf0,0x35,0x81,0x8b,0xcb,0xf1,0x22,0x45,0x44,0x2d, +0x8a,0x28,0x72,0x5b,0x7b,0x1f,0xaa,0xcb,0x85,0xad,0x1d,0xac, +0xb0,0x7e,0x24,0x89,0x60,0x0c,0x63,0x73,0x32,0xae,0x51,0xa5, +0x11,0x1e,0xb7,0xe1,0xe3,0x87,0xf0,0xa0,0x0d,0x1f,0xdc,0x1b, +0x6d,0x7f,0x03,0x0f,0x29,0xe5,0xfe,0xf6,0x26,0xfc,0xd5,0x89, +0x7f,0x0d,0x6b,0x63,0x18,0x3c,0xde,0x8c,0xdf,0x8a,0x3e,0xec, +0xae,0x6c,0x9f,0x7b,0xca,0x10,0xcf,0x34,0x64,0x50,0x16,0xde, +0x2f,0x2d,0xa4,0x8e,0x6c,0x11,0x62,0x48,0x78,0xcd,0xf1,0xea, +0xe3,0x25,0x06,0x41,0x7c,0xb2,0x7b,0xb2,0x4d,0xbc,0x03,0x07, +0x26,0x30,0x95,0x84,0x59,0x07,0x9b,0x04,0x98,0x71,0x98,0x26, +0x17,0x0e,0x75,0x20,0xc3,0xa4,0xd5,0xa4,0xd4,0x26,0xd6,0x71, +0x98,0x31,0x72,0x8a,0x80,0x19,0x44,0xe1,0x4c,0x54,0x66,0x53, +0x29,0xa9,0x9f,0xc8,0xd4,0x65,0xa5,0xb4,0xab,0x08,0x6a,0xf4, +0xd6,0x93,0x59,0x18,0x16,0xa6,0x13,0x8c,0x7a,0x04,0x51,0x0c, +0x46,0x21,0x21,0x10,0xb5,0x1e,0x25,0x8d,0xed,0xcb,0x8a,0x17, +0xc4,0x14,0x8d,0x0e,0xa0,0x32,0x1d,0x77,0x49,0xc4,0xb5,0xb0, +0xa0,0xa0,0xac,0xa0,0x86,0x13,0x93,0x87,0x14,0xe3,0xd8,0x9a, +0x47,0xe5,0x3f,0xe7,0xbc,0xe3,0xa0,0x4b,0xf4,0x22,0x29,0x75, +0xa9,0x4d,0x49,0x75,0x1c,0x78,0xc3,0x3d,0xf1,0x2c,0xde,0x03, +0x57,0x26,0xd4,0x26,0xd8,0x2c,0xc8,0x9a,0x43,0x7b,0x71,0xfb, +0xf0,0x35,0xc1,0xfc,0xf0,0x55,0x61,0x3b,0x83,0x63,0x04,0x0a, +0x1d,0xed,0xc4,0x49,0x60,0xc7,0xda,0x8d,0x68,0x50,0x5a,0x2e, +0x98,0xe3,0x19,0x8a,0x97,0xb7,0x28,0x94,0x89,0x36,0x8b,0x76, +0x27,0x2e,0x59,0x82,0xf5,0x65,0x59,0x00,0x6b,0x94,0x19,0x78, +0x53,0x19,0xde,0x31,0xb5,0x89,0x69,0xa5,0x2a,0x55,0xac,0x3c, +0x41,0x66,0x88,0x6f,0x59,0xcf,0x88,0xd8,0x5c,0x95,0x54,0x16, +0x1a,0x12,0xcf,0x34,0x60,0x6d,0xa8,0xac,0x57,0x50,0x66,0x8f, +0x05,0x1c,0x09,0xf2,0x0c,0xac,0x76,0xe2,0xcb,0xf3,0x4b,0xaa, +0xd3,0x4b,0xb9,0x06,0x71,0x65,0x1b,0xfc,0xd0,0x86,0x3f,0xb4, +0x6a,0xe1,0x12,0x7c,0x83,0xb6,0x2c,0x5e,0x0c,0xc0,0xd5,0x5a, +0x38,0x46,0xb9,0xd9,0x54,0x76,0x13,0xa6,0xe4,0xc1,0x4e,0xc8, +0x9a,0x09,0xab,0xd9,0xbb,0x18,0x49,0xf0,0xac,0x62,0x2c,0x9c, +0x65,0xf1,0xd7,0xc5,0x04,0x3d,0xbb,0xc0,0x93,0xe9,0x31,0x20, +0x5d,0x10,0x64,0xc0,0x62,0xb5,0x35,0xd1,0x46,0xcf,0x7e,0x16, +0x0a,0xa6,0x43,0x90,0x36,0x06,0x31,0x3f,0xd1,0x8e,0xb1,0x28, +0xd0,0xcd,0x33,0x48,0xf1,0xb2,0xe1,0x3b,0x82,0x06,0x7c,0xeb, +0x3d,0x39,0xdc,0x64,0x40,0xac,0x23,0xe2,0xca,0x54,0x7e,0xd3, +0x99,0xcd,0x6a,0xe7,0xfb,0xd2,0x6b,0x8e,0x63,0x6a,0x93,0x53, +0x2a,0x54,0x86,0x59,0xbd,0x64,0xd9,0x76,0xb6,0x1f,0x26,0x90, +0x06,0xab,0x66,0x79,0x99,0x4e,0x43,0x21,0xef,0xdc,0x69,0x3a, +0x68,0x55,0xc5,0x8d,0x30,0xa8,0x4e,0x7a,0x5a,0xea,0xda,0x8b, +0xba,0x8c,0xf3,0x79,0x4f,0x43,0x5b,0x73,0x23,0xdb,0xd1,0xea, +0x5a,0xc1,0xa4,0xb5,0xb9,0x71,0xb0,0xfc,0x3a,0x27,0x4c,0x19, +0xc0,0xbf,0x98,0x94,0xf2,0x84,0xf2,0xb8,0x72,0xcd,0x24,0xde, +0x4b,0x92,0xe8,0x95,0x6d,0xd8,0xc1,0xa1,0xc1,0xcf,0x04,0x82, +0x06,0x70,0x0b,0x2c,0xd6,0xc0,0xc5,0xb8,0x4f,0x0b,0x98,0xd5, +0x0c,0x1e,0xf7,0x45,0xb5,0x65,0xb8,0x54,0xb9,0xd5,0xea,0x39, +0x7c,0x51,0x06,0xab,0x2f,0x83,0xe9,0x0c,0x98,0xc3,0xe0,0x9a, +0xd3,0x38,0x2e,0x6c,0xab,0xb2,0xfc,0xe4,0xf1,0x60,0x9b,0x59, +0x9b,0x25,0xa0,0x77,0x97,0xb9,0x59,0x5c,0xf4,0x24,0x51,0x25, +0xf1,0x55,0x0c,0x8d,0xb7,0xae,0x33,0xd1,0x8c,0xb9,0x90,0x7d, +0x3e,0x3b,0x67,0xa6,0xc2,0x9c,0xde,0x9c,0xbd,0xb5,0xa1,0xb5, +0x91,0xc7,0xf1,0xee,0x88,0xde,0xb3,0x03,0x1d,0xe5,0x2d,0xd5, +0xd5,0x75,0x16,0xd5,0xfc,0x7c,0x1c,0x83,0x4b,0xb7,0xe2,0x2a, +0xcb,0x2c,0x6d,0xbe,0xf0,0x72,0x41,0x7c,0x61,0x02,0x27,0x1a, +0x0e,0x08,0x9e,0x6c,0x51,0x72,0x51,0x4a,0x61,0x6a,0x0a,0xaa, +0xde,0x45,0x43,0x98,0x81,0xf3,0xea,0x1b,0xf8,0x1d,0xcf,0xf4, +0x7f,0x76,0xf9,0xa3,0xbf,0x74,0xb0,0xa5,0xb1,0x89,0x62,0xec, +0x67,0x42,0x37,0xa9,0xcc,0xab,0xac,0xce,0x2c,0xe3,0x6a,0xc5, +0x55,0x3d,0xf0,0x43,0x23,0xfe,0xd0,0xa6,0x85,0xcb,0x28,0x33, +0xb7,0x60,0x31,0x3a,0x08,0x37,0xa9,0xcf,0x55,0x6e,0x32,0x95, +0x7d,0x03,0x53,0xb3,0x40,0x0b,0x12,0x66,0xc2,0x2a,0x48,0xa2, +0xb3,0xc0,0x2b,0x8c,0xce,0x02,0xf7,0x04,0x59,0x30,0x2b,0xbf, +0x12,0x34,0xa4,0x0c,0x3f,0x31,0x0d,0x49,0x49,0x25,0x2a,0x65, +0xac,0x3c,0x49,0x66,0x86,0xaf,0xe8,0x2c,0x88,0xc9,0x55,0x49, +0x64,0xa1,0x3c,0x99,0xce,0x82,0x92,0xe3,0xb2,0x1e,0xe1,0x33, +0x36,0x38,0xc0,0xff,0x88,0x5b,0x20,0xd7,0x2d,0x2e,0x23,0x10, +0x2a,0xbe,0xc1,0x50,0xc8,0x62,0xcf,0x05,0x9e,0x3e,0x7a,0x2a, +0x88,0xc3,0x6b,0xe6,0x50,0xc7,0x58,0xaa,0xaf,0xb0,0xc7,0xfd, +0x81,0x49,0x66,0x3c,0xd8,0x5e,0x81,0xb1,0x3d,0xcd,0x34,0xa2, +0xd4,0x32,0x67,0xbc,0x4f,0xfb,0x46,0x06,0x70,0xde,0x27,0x8f, +0x9d,0x70,0x9c,0x85,0x3b,0x99,0x24,0x53,0x19,0xec,0x66,0xfa, +0x0a,0xd2,0xeb,0x13,0x55,0xe2,0x0b,0x63,0xdb,0x2e,0x0e,0x70, +0xf8,0x9c,0x89,0x4e,0xbb,0x94,0x71,0x21,0x83,0xd3,0x87,0xd9, +0x04,0x1d,0x3a,0xc0,0x81,0xe9,0x91,0x93,0x0e,0xf0,0x96,0xb3, +0x58,0x64,0x4d,0xf4,0xd1,0xa1,0x9b,0x85,0x8c,0xe9,0xe0,0xad, +0x8f,0xde,0xd4,0x13,0x39,0x5b,0x90,0x0f,0x22,0x8d,0xfb,0x59, +0x58,0x7d,0x13,0x66,0xbd,0xbc,0xfd,0x07,0xd7,0x3d,0x72,0xf3, +0xb0,0xc2,0x9b,0x3d,0xb4,0x1b,0xa7,0x6f,0xc7,0xd9,0x46,0x9c, +0x18,0x86,0x91,0x6c,0xca,0x61,0x99,0xa4,0x08,0xa9,0x49,0xba, +0xc5,0xf5,0xcf,0x54,0x37,0x8a,0x0b,0x46,0x8b,0x2e,0x65,0x12, +0xb0,0x18,0x51,0xa6,0x1d,0x34,0x0c,0x4b,0x88,0x90,0xb9,0x4c, +0xcc,0x64,0xe6,0x61,0x2b,0x81,0x49,0x0a,0xef,0xd9,0x57,0x61, +0xc3,0xc8,0x1f,0xb8,0x9b,0x55,0x34,0xe2,0x69,0x52,0x9f,0x91, +0x51,0xa7,0xf2,0x27,0xab,0x96,0x2a,0xc3,0x29,0xa8,0xc6,0x9a, +0x87,0xc7,0xd7,0xa8,0x80,0xb1,0x1a,0x3a,0xb0,0xfb,0xf2,0xfc, +0x1e,0x2b,0x8b,0x7f,0x05,0x10,0x88,0xe8,0xfc,0x1e,0x26,0x5c, +0x86,0x95,0x6a,0x51,0x7c,0x04,0x4e,0x53,0xdb,0x88,0xfe,0x72, +0x4e,0x09,0x8e,0x52,0xab,0xb6,0x45,0x03,0x75,0x9c,0xb7,0x04, +0xb9,0x4a,0x39,0x9f,0x5b,0x90,0x5f,0x9e,0x5b,0xc7,0x89,0x69, +0xfd,0x8a,0x8f,0xd9,0xf2,0x87,0x85,0x3f,0x64,0xbe,0xe5,0x84, +0xab,0xe2,0x38,0x52,0x7c,0xb4,0x28,0xa8,0x30,0x24,0xaf,0x95, +0x37,0xcb,0x34,0xca,0x37,0x2b,0xad,0x2a,0x28,0x2a,0x2e,0x2a, +0xb7,0xae,0xe6,0xdd,0xed,0x9d,0x9d,0x1d,0x3d,0xad,0x2a,0x1c, +0x6b,0x03,0xea,0x39,0xc8,0xe9,0xc2,0x1f,0x99,0xcb,0x79,0x97, +0x0b,0x63,0x8b,0x75,0xe3,0x3e,0x48,0x5a,0x52,0xc3,0xb8,0x62, +0x00,0xa7,0x19,0x2f,0x73,0x67,0x3b,0x2b,0x27,0x8f,0x72,0xdb, +0x4a,0xd7,0x7c,0x2b,0x3b,0xbe,0xd4,0xb3,0xca,0x31,0xd7,0xd5, +0xce,0xcb,0xc2,0xc7,0xc8,0xbb,0xd0,0x88,0x2f,0xc9,0x28,0x4e, +0x2f,0x4c,0xe7,0x30,0x1a,0x7c,0xd1,0x0b,0x57,0xb1,0xe9,0x3a, +0x32,0xf8,0x9c,0xe9,0x4a,0xce,0x6a,0x51,0x01,0x7b,0xb0,0x67, +0xf1,0x98,0x10,0x40,0x32,0x8c,0xea,0x8c,0xdb,0x2d,0x38,0x4c, +0x60,0x1a,0x6b,0xaa,0x9a,0x8a,0x06,0xa4,0xad,0xfc,0x4a,0xf2, +0x42,0x98,0xb4,0x9e,0x35,0x9a,0xb0,0x5c,0x9c,0xf4,0x9a,0xcd, +0xc4,0xdd,0x44,0xae,0xb9,0x47,0x6b,0xb7,0x6d,0x99,0x01,0x7f, +0xbb,0xfe,0xdb,0xab,0xbd,0x37,0x39,0x88,0x3d,0x4b,0xfa,0xcc, +0xbe,0x56,0xeb,0xd0,0xac,0x6f,0xe6,0x4d,0x7a,0xb6,0xdf,0x32, +0xac,0xe2,0x94,0xfe,0xd1,0x54,0x94,0x93,0xff,0xcc,0xd6,0x12, +0xd6,0xe1,0x34,0x71,0xfc,0xc8,0xfa,0x61,0x01,0xa1,0x57,0x5c, +0x84,0xd3,0xe0,0x9a,0xb6,0x78,0xa8,0x9f,0xd2,0x4e,0x8a,0xcc, +0xf0,0x1a,0x12,0x61,0x11,0xdc,0x11,0xab,0xf0,0x4b,0x89,0x6a, +0xfe,0xc5,0x74,0xe7,0x4a,0xa3,0x79,0x5f,0xfc,0x0c,0xa6,0x09, +0x7b,0xa5,0x52,0xf4,0x70,0x9d,0x72,0xfb,0xe6,0x7b,0x77,0x53, +0xff,0xe2,0xe0,0xf3,0xa5,0x8c,0x7a,0x76,0x30,0x9d,0xa4,0xb3, +0x25,0xd1,0xff,0x3a,0x95,0x6e,0x09,0xc8,0xed,0xc4,0xa9,0xac, +0x73,0x44,0x54,0xb1,0xca,0x4b,0xf0,0xec,0xc1,0xa1,0x5f,0x21, +0xbf,0x1b,0xf3,0x5f,0x6b,0x2e,0xc7,0x44,0x7d,0x48,0x5c,0x8a, +0x3d,0x7a,0x60,0xce,0x1e,0x5b,0xaf,0x6e,0x8e,0xd3,0xed,0xb8, +0x23,0x10,0x42,0x6c,0xae,0x1a,0xde,0x52,0xbf,0x6e,0x62,0xc3, +0xf7,0xa9,0x77,0x1c,0x6a,0x3c,0xc0,0x29,0x2e,0x89,0x8f,0xc8, +0xdc,0x8c,0x95,0x05,0xdb,0x2b,0x9f,0x75,0x0c,0x0d,0x55,0x7e, +0x4d,0x39,0xea,0x0f,0x6c,0x46,0x4e,0x5a,0x5e,0x52,0xbe,0xd1, +0x15,0xde,0x7c,0xe5,0xca,0x6d,0x38,0x53,0x3f,0x57,0xce,0x77, +0x5c,0x69,0xca,0xad,0x2d,0xac,0x35,0x6b,0xb6,0xed,0x74,0x5c, +0x6d,0x8f,0x63,0x3d,0xf0,0xb3,0xa0,0x74,0x5d,0x1e,0x16,0x64, +0xc2,0xd4,0xca,0xdf,0x5b,0xbf,0x33,0x7d,0xe7,0x08,0x53,0xfc, +0xb8,0x91,0x13,0x14,0x8f,0x39,0xe1,0xc7,0x9a,0x38,0x4f,0x7d, +0x59,0xa7,0x25,0x7f,0xe3,0x7d,0x3f,0x2c,0xaa,0x86,0x29,0x1c, +0x78,0x2d,0x20,0x49,0x09,0x32,0x18,0x60,0x9c,0x0d,0xf5,0x4c, +0xf7,0xd8,0x6a,0x54,0xc8,0x1b,0xac,0xda,0xa8,0xe9,0xa2,0x42, +0x87,0xcc,0x1f,0x82,0xd5,0xe2,0x0a,0xe9,0xfc,0x9a,0x32,0x7e, +0x35,0xf4,0x3b,0xab,0xd8,0x80,0x57,0x48,0x59,0x76,0x45,0x49, +0x61,0xb1,0x55,0x29,0xef,0xe6,0xec,0xe4,0x6e,0xed,0xad,0x5f, +0x66,0x55,0xe9,0x5a,0xc5,0x81,0x6f,0x87,0x38,0x96,0xb9,0x9c, +0x11,0x97,0x11,0x9b,0xa9,0x7b,0x99,0x8f,0xf0,0x0b,0xf7,0x0f, +0xf1,0xe7,0x30,0x51,0x0e,0x3e,0x8c,0x8b,0xad,0xa5,0x83,0xbe, +0x93,0x73,0x85,0x6d,0x89,0x53,0x9e,0x9d,0x03,0x5f,0xea,0x5b, +0xe6,0x51,0xec,0x6a,0xee,0x6b,0xe0,0xa7,0x19,0x98,0x6b,0xc8, +0xf7,0x66,0xb5,0x5d,0x69,0xcc,0xe6,0xd0,0x15,0x92,0x71,0x37, +0x2e,0x18,0x15,0x41,0xfe,0x98,0x69,0xb9,0x92,0x41,0xe7,0xc0, +0x3a,0xca,0x11,0xdc,0xd8,0x26,0x9f,0x76,0xff,0xbe,0x80,0x9c, +0x4e,0x5e,0x3d,0x4b,0x3f,0xc7,0x2c,0x97,0xc3,0x4b,0xa0,0x4c, +0xf2,0x9c,0x4a,0x9c,0xab,0x5d,0x39,0x6c,0x65,0xaa,0x4a,0x8a, +0xcb,0x72,0xcb,0x39,0xdc,0x8f,0x47,0xc9,0x4d,0x36,0x3a,0x2a, +0xfa,0x52,0xf4,0x25,0x4e,0xd8,0xc7,0x24,0x46,0xc8,0xf6,0xb3, +0xa2,0xa5,0x29,0x11,0x2c,0x37,0x8b,0x96,0x8c,0xf0,0xe5,0x02, +0xf2,0xc0,0xe2,0x9e,0xfe,0x55,0xbd,0xda,0x3a,0x7e,0x7f,0xff, +0xce,0xee,0x7d,0x34,0x8a,0x6d,0x3c,0x47,0x8c,0x8d,0xf6,0x1a, +0xac,0xb4,0x2a,0x36,0xe6,0x7f,0x6c,0x78,0x34,0xd0,0x33,0x48, +0xad,0xe3,0x3d,0xbc,0x23,0x27,0x12,0x4e,0x5c,0xf8,0x50,0x7c, +0xf4,0x35,0xac,0xec,0xc3,0x95,0xf0,0x83,0x26,0xfe,0x80,0x26, +0x3a,0xa0,0xc5,0xf8,0xe1,0x84,0x3d,0x38,0x76,0xe1,0x62,0x1a, +0x0c,0xdf,0xfc,0xd1,0xf1,0x53,0xc2,0x6b,0x8a,0xf3,0x76,0x0d, +0x0a,0x9f,0xfd,0xb7,0xf8,0xa8,0x12,0x6e,0xaf,0x6b,0x94,0x09, +0xfe,0x77,0xc9,0xbc,0x23,0x32,0xe1,0x3b,0x0d,0xf1,0x0d,0x8b, +0xb7,0xf4,0xe2,0x35,0x61,0xa0,0x47,0x86,0x67,0x86,0xe0,0x32, +0x0b,0x13,0x32,0x65,0x62,0xbe,0xf0,0x88,0x04,0xec,0x71,0xdd, +0xea,0xaa,0xd1,0xec,0xc1,0x97,0x0e,0x57,0x3c,0xcb,0xbe,0xc3, +0x61,0x13,0xea,0x10,0xbf,0x5b,0xae,0x8f,0x3c,0x86,0x8d,0x3c, +0xf9,0x42,0x8d,0x92,0xed,0xd9,0xfb,0x39,0xe1,0xcf,0x0e,0xa2, +0x3f,0xac,0x7a,0x55,0xbb,0xc5,0xd6,0x9a,0xef,0x33,0xb9,0x7e, +0xb8,0x53,0x93,0x4b,0x45,0x3b,0xa2,0x7f,0x5d,0x6b,0x58,0xbd, +0xdb,0xda,0x96,0x1f,0xd0,0x1b,0x54,0xeb,0x3e,0x4c,0x2f,0xbc, +0x57,0x71,0x94,0x98,0x94,0x6b,0x95,0xe9,0x66,0x3b,0x9b,0xf1, +0x83,0x5e,0x03,0x6e,0x4d,0x4e,0xdc,0x7d,0xfc,0x89,0x80,0x13, +0x1d,0xee,0x4f,0x63,0x60,0x13,0x07,0x33,0xf5,0x99,0x75,0xa7, +0x74,0x4e,0x98,0x2b,0xcb,0xc3,0x02,0x02,0x54,0x29,0xf8,0x4f, +0x96,0x34,0xe9,0x5f,0xd5,0x94,0xdf,0x4e,0x55,0x49,0xea,0x8b, +0xba,0x0e,0xfc,0xcc,0x6b,0xa2,0x8b,0x21,0xb8,0xb3,0x91,0x38, +0xc7,0x04,0x27,0xa0,0x7c,0x39,0xf7,0x17,0x7c,0x43,0xbc,0x54, +0x5d,0xcd,0x0d,0x8d,0xeb,0x1c,0xf8,0xee,0x8e,0x9a,0xc1,0x9c, +0x01,0x4e,0x08,0x47,0x17,0xe2,0x7f,0xdf,0xeb,0xba,0xcb,0x6d, +0x13,0x8a,0x34,0x0f,0xe5,0xed,0xcf,0xda,0xce,0x8d,0xcc,0xa0, +0xfe,0xd1,0xa4,0xf4,0x70,0x89,0x66,0x8e,0xbb,0x29,0x3f,0xe0, +0xd3,0xef,0xd1,0xed,0xc8,0xd5,0xb9,0x10,0x55,0xbd,0x6d,0x26, +0x3b,0x6c,0xca,0xe4,0xfc,0xfd,0xfa,0x57,0xfd,0x5d,0xed,0x9c, +0xe2,0x63,0x4c,0x22,0x3d,0xe2,0x9a,0xbf,0x34,0xe6,0x89,0x73, +0xf4,0xe0,0x7f,0x58,0xfd,0xed,0x38,0x5e,0x07,0x5d,0xd5,0x73, +0xe8,0xcc,0x3d,0xfd,0xe8,0x6d,0x67,0x8d,0xb4,0xd3,0x97,0x3f, +0x04,0xf9,0x31,0x4c,0xed,0x1c,0x60,0x0d,0xe1,0xdc,0xb6,0xec, +0x1e,0x1e,0xbd,0xae,0xe2,0x47,0x7d,0x3a,0x0f,0xe9,0xec,0xfc, +0x5c,0xe1,0x41,0x60,0xac,0x3a,0x8e,0xc5,0x6c,0x1d,0xc5,0x94, +0x3e,0x76,0x64,0x4e,0x04,0x31,0xa9,0xd1,0xa9,0xd1,0x29,0x76, +0x31,0xe6,0x07,0x9c,0x3b,0x1d,0xdb,0x6d,0xb8,0x33,0x68,0x41, +0x8c,0xea,0x0f,0x36,0xab,0x97,0x3b,0x1b,0xf3,0xc3,0x8e,0x43, +0x56,0xdd,0x16,0x9c,0x62,0x11,0x6c,0x24,0x62,0x26,0xe6,0x42, +0x00,0xde,0xc2,0x25,0xa3,0x75,0xd9,0x3e,0x95,0x56,0x92,0xda, +0x54,0x60,0x00,0x42,0x58,0x0d,0xa9,0xe4,0xf4,0x3a,0x71,0xbe, +0x54,0xaf,0xce,0x02,0x03,0x89,0x3d,0x8e,0x93,0x23,0xb7,0x7b, +0x49,0x9b,0x15,0x7f,0x7f,0xb4,0xb8,0xc4,0xdf,0x1c,0xac,0x0d, +0x22,0xf6,0x5b,0xe5,0xbb,0xd6,0x1c,0xa8,0x37,0xe7,0x5f,0x7d, +0x33,0xf4,0xac,0xe6,0x15,0x07,0xe7,0xc3,0xc9,0xb5,0x7d,0x7d, +0x3b,0xda,0x36,0xb5,0x57,0xf3,0xc6,0x4f,0xb5,0xef,0xa9,0xde, +0xa2,0xc3,0xe1,0xab,0x60,0x49,0x75,0x67,0xc5,0x40,0xe9,0x4d, +0x8b,0x02,0xde,0x4b,0xdf,0xc3,0xd8,0xc5,0xc2,0xaf,0xd9,0xab, +0xc9,0xb5,0xd1,0xdc,0x8d,0xaf,0x34,0x2c,0x94,0x67,0xcb,0x9d, +0xac,0xed,0x1c,0xac,0x5d,0x0a,0x0c,0xf9,0xda,0x92,0xca,0xf2, +0xd2,0xea,0x54,0xf3,0x44,0xb3,0x38,0x13,0xa3,0x75,0x7a,0x5a, +0x3b,0xb5,0xe9,0x9b,0xb7,0x3a,0xda,0xfb,0x1a,0x6e,0x71,0x97, +0x6c,0x2e,0x5a,0x9a,0xcd,0xc4,0xbd,0xde,0x16,0xfb,0x94,0x75, +0x99,0x34,0x75,0x59,0x27,0xf3,0x7d,0x7b,0x3f,0xf8,0xc1,0xca, +0x00,0xf8,0xdc,0x02,0x26,0xaa,0x08,0xda,0x55,0x24,0xb8,0xc3, +0xe5,0xa1,0x5f,0x8d,0xbe,0x3f,0x9f,0x63,0x59,0xbc,0x33,0xd9, +0x98,0x83,0xf6,0x91,0x71,0xc4,0xe4,0xe1,0x05,0x58,0x0f,0xc6, +0x34,0xaa,0xee,0x62,0xab,0xba,0xaa,0x6f,0x65,0x35,0xeb,0xe5, +0xf1,0xbe,0xda,0x66,0x9b,0x6d,0xf4,0x38,0xfc,0x0d,0xb7,0x31, +0xa8,0x11,0x8a,0x5b,0x0f,0xe0,0x14,0xe5,0x4e,0xcb,0xda,0xc7, +0x57,0x9e,0x25,0xfc,0x34,0x03,0xb6,0xe1,0xf9,0x3e,0x38,0x0f, +0x5b,0x98,0xb8,0x2d,0xc9,0xfb,0x0a,0x8d,0x0a,0xf4,0x87,0xa2, +0xa2,0xaf,0xa6,0x80,0x3a,0x6f,0x9a,0x26,0x13,0x77,0x09,0xc6, +0x24,0xa0,0xd1,0xf2,0x1b,0xaf,0x4a,0x43,0x0f,0xbe,0xd0,0xae, +0x76,0xdf,0x15,0x73,0x0e,0xe6,0xeb,0x10,0x9c,0x81,0xab,0xb2, +0xe8,0xb4,0x66,0xc1,0xe5,0x43,0xc9,0xbc,0xb5,0xf3,0x59,0x77, +0x56,0x9c,0x42,0x67,0xf3,0xa5,0xfa,0x8b,0x4d,0xcd,0x14,0x6b, +0xe1,0x17,0x4c,0x1f,0x7c,0x41,0x60,0x2d,0x63,0x7e,0xc1,0xfc, +0x92,0xa5,0x32,0x4a,0x62,0xab,0x9a,0x0a,0x6b,0xd2,0x25,0xb2, +0x77,0x0e,0xee,0xc1,0x9f,0x31,0x9c,0xd5,0x3f,0x67,0x72,0xce, +0x42,0xd9,0xd6,0xc6,0xd8,0xd1,0xd0,0x23,0x43,0x97,0x6f,0x29, +0xac,0x2a,0x2a,0x2b,0x0f,0xc5,0xc5,0xee,0x5f,0xed,0x5f,0xd4, +0x62,0xc1,0xbf,0x87,0x85,0xd9,0xa0,0x06,0x95,0x33,0x61,0x2f, +0x2b,0xbc,0xc1,0x77,0xa4,0xc4,0xbf,0x2c,0xb0,0xf2,0x48,0x7e, +0x3b,0x6f,0x9c,0x63,0x95,0x63,0x9f,0x5f,0x92,0x5b,0x92,0x5f, +0x58,0x62,0x59,0xcc,0x7b,0xba,0xb9,0x7b,0x39,0xf9,0x39,0x94, +0xb8,0x95,0x7b,0x57,0x73,0x70,0xaa,0x0d,0xdf,0x33,0x71,0x59, +0xb1,0x57,0x62,0xb2,0x29,0x8b,0x89,0xf4,0x3c,0xe1,0x1d,0xee, +0x43,0x29,0x96,0x31,0x04,0x33,0x7e,0xf6,0x9e,0x2e,0xce,0x6e, +0xee,0x79,0x4e,0x79,0xae,0x57,0xec,0x69,0x74,0x0a,0x2c,0xf5, +0xc9,0xf7,0xb5,0xf7,0xb4,0xf4,0x36,0xf6,0xc9,0x33,0xe1,0x4b, +0xd3,0x8b,0xd3,0x0a,0x32,0x38,0x74,0x02,0x6b,0xdc,0x48,0x51, +0x7f,0xb2,0x9c,0xc6,0x82,0xfa,0xb4,0x64,0x1a,0x65,0xd7,0x83, +0x13,0x3b,0xb2,0x95,0xfa,0x89,0x23,0xd7,0xfd,0x86,0xdc,0xfb, +0x2d,0x3c,0xf9,0x02,0x9d,0x1c,0x8d,0x8c,0x83,0x9c,0x90,0xf5, +0x1b,0xc9,0xb7,0x28,0xb3,0xa9,0xb1,0x93,0x8e,0x75,0x55,0x55, +0x95,0xd4,0xe6,0x36,0x71,0xb8,0x00,0xcf,0x93,0xbb,0x30,0xb2, +0x9b,0x35,0x9f,0xb0,0x05,0x47,0x1e,0xb3,0x30,0x48,0x09,0xde, +0x75,0xdb,0x6b,0xf2,0x4e,0x79,0x55,0x2d,0x2f,0x6f,0x3b,0xdc, +0xa1,0x56,0xc3,0xa1,0x78,0x8e,0x18,0xe9,0x1f,0x36,0xdb,0xed, +0x5a,0x64,0xce,0x3f,0x28,0xbb,0xd5,0xd6,0xd5,0x27,0x89,0x2d, +0x08,0x56,0x24,0xf7,0x48,0x6e,0x70,0xce,0xf1,0x9c,0x66,0xde, +0x26,0xdb,0xaa,0xc8,0xb6,0xa2,0xb4,0xa0,0xa0,0x28,0xb7,0xdc, +0xba,0x82,0xf7,0x77,0xf2,0xa0,0x77,0xea,0x52,0xee,0x55,0x15, +0x44,0x81,0xb7,0x47,0x07,0xd6,0x30,0x71,0xf9,0xb1,0x85,0x31, +0xc5,0x06,0xb1,0x7c,0xa4,0xf3,0x49,0xb7,0x70,0x0f,0x0e,0x7d, +0xe5,0x60,0xc1,0x04,0x5a,0x7a,0xd9,0xb9,0x3a,0x7a,0x97,0x3a, +0x57,0x78,0xe4,0xd9,0xd9,0xf3,0x45,0x1e,0xe5,0x8e,0xd9,0x6e, +0xae,0x1e,0x0e,0x5e,0xd6,0xde,0x05,0xc6,0x7c,0x7e,0x46,0x5e, +0x46,0x4e,0xa6,0x54,0x44,0x48,0x15,0x3d,0xf0,0x0b,0x36,0x55, +0x57,0x06,0xe3,0x3f,0x44,0xe1,0x73,0x60,0x23,0x83,0x5d,0xcc, +0x88,0x2b,0xa6,0x91,0x3b,0x60,0xa1,0xc8,0xc6,0xe4,0x91,0x5f, +0x58,0xb0,0x56,0x8c,0x23,0xb8,0x08,0x0e,0xc0,0x22,0x46,0x98, +0x6e,0x4c,0xd2,0x8c,0xca,0x8d,0xea,0x29,0x33,0xf4,0x66,0x2a, +0xeb,0x8a,0x5b,0x72,0xfb,0x38,0xf1,0x8c,0x24,0x4e,0xb9,0x08, +0x0f,0x21,0xfd,0x85,0x89,0xf7,0xc9,0x2b,0x68,0x5f,0xcb,0x9a, +0x4c,0x58,0x8c,0xed,0xbf,0xb3,0xe2,0xc4,0xcd,0xd2,0x8f,0xac, +0xa4,0x1f,0x7d,0x02,0x32,0x62,0xad,0xa5,0xa1,0xa5,0x61,0x5b, +0x2a,0xe7,0x07,0xea,0x6f,0x5e,0x6d,0xba,0xc1,0x81,0xd5,0x39, +0xd2,0x6a,0xd2,0xab,0x5e,0xaf,0x55,0xd7,0xc0,0xdb,0x74,0xab, +0xdd,0x32,0x97,0x64,0xcd,0x16,0xc0,0x6d,0x02,0x9f,0xb4,0x5c, +0xff,0x26,0xe9,0x77,0xee,0xfd,0x3c,0x46,0x3b,0xf7,0x78,0xb7, +0x32,0x8c,0x63,0x2a,0x93,0x53,0xcb,0x55,0xae,0xb2,0xc6,0x29, +0xb2,0x6d,0x8b,0x58,0xef,0x88,0xe8,0x5c,0x95,0x5f,0xe0,0x60, +0x17,0x26,0xbc,0x85,0xc0,0x4e,0x0c,0x7c,0xad,0xb3,0x1c,0xdd, +0xa9,0x2f,0x5b,0x88,0x51,0x06,0xb0,0x85,0x0d,0xdd,0x62,0x68, +0x31,0xc7,0x96,0xdb,0x7c,0x85,0x44,0x26,0x86,0x47,0x85,0x86, +0x05,0x87,0xf0,0xa7,0x60,0x22,0xb0,0x7d,0xc8,0xc2,0x76,0xa6, +0x31,0xa5,0x3e,0xad,0x3c,0xcb,0xbd,0x85,0xdf,0x65,0x83,0x93, +0x1c,0x17,0x06,0xa5,0xc9,0xf9,0x9a,0xd8,0xc6,0xcb,0x8d,0x49, +0x1c,0x7e,0x85,0x2b,0x74,0x60,0x21,0x7b,0x62,0xae,0x2d,0x8e, +0x9b,0x8f,0x9f,0x55,0x1a,0xf3,0x8f,0xdf,0x14,0x3d,0x8e,0x7e, +0x42,0x1d,0xbf,0x51,0x97,0xa0,0xc6,0xc4,0x44,0x5f,0xb8,0x14, +0xa9,0xfc,0x1c,0xb7,0x36,0x94,0xcb,0x84,0x07,0x18,0x45,0xd6, +0x66,0x6d,0x2f,0x3c,0x54,0x75,0xa7,0xa3,0x73,0xa8,0xf8,0x26, +0x57,0x8f,0x55,0x6c,0x6a,0x76,0x72,0x6e,0x42,0x9e,0x71,0x06, +0x6f,0xb7,0x6a,0xf3,0x56,0xfc,0x48,0x3f,0xcf,0x98,0x6f,0xc9, +0xae,0xcf,0xab,0x2c,0x2a,0xb3,0xa8,0xb6,0x6b,0x74,0xda,0x61, +0xbb,0xdc,0x0d,0xc7,0x1e,0x91,0x6a,0xfd,0x28,0x5d,0x79,0x57, +0xf9,0xbc,0xed,0x9e,0xe9,0x4b,0x87,0x3f,0x7c,0x38,0x71,0x16, +0xf4,0x92,0xc4,0x24,0x19,0xa5,0x14,0x1e,0x72,0x33,0x33,0x4d, +0x1b,0xa3,0x0a,0xab,0x3a,0xc7,0x56,0xea,0x5b,0x6a,0xe1,0x6f, +0x72,0x32,0x3e,0xe2,0x62,0x48,0x68,0xd8,0x09,0xfe,0xd4,0xaf, +0x30,0xb9,0x07,0x27,0xc3,0x0f,0x3a,0x34,0x46,0x2d,0xd6,0xa3, +0x48,0x24,0x48,0x4a,0x1f,0x9e,0xb0,0x6d,0x71,0x99,0x21,0x7f, +0xf7,0xe7,0xca,0x1f,0x62,0xa5,0x4c,0xba,0x55,0x7d,0xc2,0xb4, +0xd1,0xb5,0x88,0x53,0xca,0xdf,0xe3,0xde,0xea,0x5a,0x59,0x9b, +0x62,0x02,0xc1,0x0b,0x42,0x28,0x5c,0x60,0xc5,0xe7,0x01,0xe4, +0xf8,0x2e,0xff,0xad,0x7e,0x6a,0x0d,0xbe,0x7c,0xce,0xd5,0xdc, +0x17,0xa9,0x77,0x39,0x3c,0x8a,0x26,0xe4,0xd8,0x6d,0xff,0x6f, +0x03,0xae,0x99,0xfa,0xf1,0x59,0x87,0xaf,0xec,0x48,0xd9,0xcb, +0x29,0xce,0xc0,0x6a,0x22,0x4e,0xea,0x17,0x26,0x31,0xe2,0xa4, +0x45,0x44,0x98,0xa4,0x21,0x4e,0x62,0x56,0xad,0x20,0xe6,0x42, +0x67,0x13,0x8b,0x71,0xa2,0x3e,0x81,0x13,0x8d,0x78,0x62,0x00, +0xdc,0xe0,0xbc,0xe8,0x87,0xe7,0xc1,0x56,0x0b,0x43,0x2d,0x20, +0xf4,0x30,0xd6,0x98,0x0b,0x7f,0x36,0x61,0x0a,0xa3,0x07,0x37, +0x09,0x2e,0xef,0x87,0xe5,0x4c,0xb7,0xb4,0x3d,0xbb,0x8e,0xc2, +0x7d,0x57,0x1b,0xa2,0x89,0xcb,0x07,0x59,0xb0,0x9d,0x0e,0xeb, +0x34,0x71,0x1d,0xa3,0xa4,0x98,0x05,0x53,0xc8,0xe3,0xca,0x97, +0xdd,0xbd,0xad,0x76,0xcd,0xbc,0x8e,0xc1,0x3c,0xf5,0x9d,0xae, +0xfa,0x4d,0xe6,0xdd,0x0e,0x37,0x38,0xe1,0x4b,0x61,0x0d,0x3e, +0xfc,0x49,0x75,0x05,0x36,0x8d,0x78,0x31,0xf6,0x91,0xf6,0x91, +0x0e,0xa7,0x13,0x25,0xf5,0xd1,0x2c,0x58,0x51,0xfc,0x77,0x65, +0x78,0x2f,0xaf,0x11,0xb0,0x25,0x60,0x6d,0x10,0x07,0xfd,0x92, +0x36,0xe8,0x78,0xb4,0x86,0x95,0x28,0x83,0x9c,0xdd,0xd9,0x7d, +0x3c,0x7e,0x5c,0xb2,0xb8,0x66,0x6b,0x37,0x07,0xb3,0x05,0x6d, +0x22,0x76,0xc2,0xc7,0x42,0x27,0x83,0x7b,0x27,0x50,0x30,0xd8, +0x09,0xd3,0x58,0x25,0x85,0x85,0xc2,0x85,0x80,0x4c,0x03,0x65, +0x78,0x54,0x4f,0x28,0xe8,0x61,0x47,0xfe,0xe7,0x01,0xd1,0x83, +0x8e,0x1e,0x36,0x71,0x54,0x00,0xf7,0xad,0x2e,0xab,0xf8,0xe3, +0x08,0x11,0xf7,0x62,0x16,0x35,0x95,0x07,0x38,0x99,0x49,0xd5, +0x96,0x76,0xfb,0x33,0x25,0xac,0xf2,0x35,0x68,0xb3,0x5a,0xe0, +0x2c,0x55,0xdd,0xbb,0x0e,0x6b,0x58,0x51,0x27,0x82,0x7e,0xb4, +0xf6,0xdf,0x43,0xe1,0xb5,0x7a,0xac,0xa0,0x75,0x90,0x78,0x6e, +0xb1,0xde,0x71,0x68,0x7f,0xbd,0x15,0xff,0xf5,0xdd,0x96,0x17, +0xc5,0x2f,0x39,0x30,0x3e,0x49,0x5a,0xf7,0x36,0x6c,0xad,0x5e, +0xdf,0x5e,0xc6,0xdb,0x3f,0xb5,0x78,0x62,0x74,0x8b,0x1b,0xd9, +0x8b,0x3f,0x50,0x02,0x1a,0x02,0x39,0xd8,0x20,0x9d,0x1e,0x0f, +0x85,0x6c,0x82,0x6b,0xf1,0x00,0xac,0xa5,0x2c,0x59,0x5d,0xf8, +0x83,0xf8,0xe6,0xd9,0x95,0x7b,0x64,0xdb,0x3a,0xf0,0x85,0xfe, +0x35,0x8e,0x39,0x3e,0x96,0x0e,0x46,0xae,0xfa,0x5e,0xf9,0x66, +0x7c,0x69,0x5a,0x49,0x66,0x71,0x16,0x87,0xb6,0xe0,0x43,0x11, +0xf2,0x58,0x36,0xd1,0x50,0xf6,0x9a,0xba,0x2b,0x0a,0x49,0x61, +0x23,0x58,0x83,0x03,0x5b,0x10,0x54,0x18,0x5c,0x10,0x92,0xdb, +0xcc,0x5b,0x64,0x98,0xe7,0xd9,0x14,0x95,0x17,0x94,0x97,0x14, +0x94,0x5a,0x96,0xf0,0x5e,0x2e,0xce,0xee,0x8e,0x5e,0x92,0xbb, +0xf4,0xa7,0x40,0xee,0x42,0x07,0xfe,0xc6,0x24,0xe4,0x5d,0xa6, +0x8e,0x44,0x3b,0x9e,0x3f,0xe9,0x1a,0xee,0x16,0x42,0xdd,0xc8, +0x79,0x39,0x78,0x31,0xfe,0x8e,0xde,0xae,0xee,0xee,0x1c,0xee, +0xbc,0x48,0xac,0xee,0xeb,0x7c,0x2b,0xef,0x33,0x76,0xe2,0xbb, +0x74,0xba,0xb6,0xd4,0xef,0xe6,0x84,0xdd,0x30,0x9d,0x64,0x99, +0x56,0x5a,0x34,0xda,0x70,0x98,0xc3,0xd4,0x54,0x97,0x37,0x16, +0xb4,0x71,0x94,0x7e,0xc7,0x91,0x3b,0x82,0x6c,0x0f,0x2b,0xde, +0xc8,0x24,0xff,0xaa,0xdc,0x32,0xff,0xff,0x2a,0xb7,0xe2,0x65, +0xe6,0xbf,0xba,0xb8,0xe6,0xe0,0x49,0x04,0xd9,0x6e,0x51,0xc6, +0xac,0xc0,0x4b,0xa4,0xa7,0xaa,0xbf,0xab,0xb2,0xd3,0xa2,0x8c, +0x77,0x36,0x33,0x90,0xeb,0x38,0x72,0x82,0xf6,0x2f,0xa4,0xd7, +0x7a,0x58,0xb3,0xc9,0xa8,0xae,0x9e,0xb7,0x6a,0x3a,0x34,0x6c, +0x48,0x1d,0x05,0x2c,0x50,0x74,0x12,0x3c,0xa9,0x30,0x81,0x93, +0xac,0xc6,0x52,0x22,0x3e,0xed,0x10,0x9e,0x32,0xe2,0xd3,0xe5, +0x44,0x78,0xaa,0x2f,0x3e,0x65,0x70,0xd1,0x52,0x62,0xfc,0xcf, +0x84,0x36,0x56,0xdc,0x20,0x5a,0x12,0x61,0x6a,0x8b,0x38,0xb5, +0x0f,0xbe,0x83,0x0b,0x23,0x96,0x78,0x01,0xee,0xe8,0x88,0x63, +0x4c,0x85,0x31,0x1a,0xe2,0x7a,0xe3,0x7f,0x66,0xb7,0x89,0xfb, +0x18,0x6d,0x81,0x25,0x7a,0x98,0xd0,0xc3,0xc2,0x2d,0x3d,0xd2, +0x03,0xf9,0x7a,0xac,0xf8,0xca,0x8a,0x40,0x82,0x36,0xe5,0x22, +0x70,0x6b,0x7a,0x3f,0xe4,0x6b,0xd3,0x31,0xf9,0x14,0x6e,0x11, +0xf8,0xbc,0xe5,0xc6,0x37,0xc9,0x6f,0x38,0x98,0xb0,0x80,0xd1, +0xca,0x3d,0xd6,0xab,0x0c,0x2c,0x53,0x95,0x92,0x56,0xa1,0x32, +0xc4,0xca,0x53,0x65,0xdb,0xe6,0x51,0xc6,0x1a,0x9d,0xaf,0xf2, +0x13,0x68,0x75,0x63,0xd6,0x9b,0x51,0x05,0x8b,0xd7,0xda,0xcb, +0xd1,0xdf,0x10,0xfc,0x17,0x61,0x8e,0x3e,0xa8,0xb1,0x21,0x5b, +0xf4,0xcd,0x71,0xbc,0x2d,0x87,0x13,0x61,0x21,0xa9,0xba,0xde, +0xf0,0x7b,0xe6,0x7d,0xae,0x09,0xd3,0x3f,0xec,0x00,0x7f,0xc9, +0x06,0x6b,0xda,0x7c,0x65,0xb2,0x89,0xbb,0xaa,0xd6,0xb0,0xdd, +0x70,0xa6,0xd6,0x31,0x7f,0x43,0x65,0x5b,0x69,0x03,0xb8,0x95, +0xb9,0x5d,0xd5,0xfc,0xf2,0xa1,0xdd,0x3d,0x9d,0x41,0x15,0x85, +0xb3,0x58,0x4e,0x56,0x66,0x6e,0x2e,0xdc,0x5f,0xfd,0xa0,0xbd, +0x67,0xa8,0xe4,0x26,0xa5,0x0c,0x6d,0x6c,0x1a,0x75,0x3c,0x89, +0x79,0xc6,0x99,0xbc,0xf5,0xca,0x75,0x5b,0xf0,0x33,0x83,0x5c, +0x23,0xbe,0x23,0xbb,0x29,0xbf,0xa6,0xb8,0xc2,0xbc,0xd6,0xb6, +0xc9,0x79,0x8b,0xcd,0x42,0x77,0x9c,0x74,0x34,0x43,0x8f,0x87, +0xcf,0xb3,0x40,0x56,0xf5,0x7d,0xeb,0x43,0xd3,0x1f,0x1d,0xdf, +0x53,0xcf,0xb3,0x02,0x7a,0x48,0x72,0xb2,0x0c,0x32,0x19,0x37, +0x43,0x13,0xd3,0xc3,0xb6,0x86,0x15,0x16,0x75,0xf6,0x92,0xe7, +0x89,0x57,0xd4,0x90,0xf8,0xc5,0x57,0xd7,0xbe,0xff,0xaa,0x4c, +0x4a,0xb4,0xfe,0xd5,0xf8,0x79,0xe0,0xb7,0xdc,0x7e,0x26,0x70, +0x8b,0xe1,0x32,0x1c,0xbb,0xaa,0x5c,0xaa,0x3d,0xfe,0x4b,0xf7, +0xf7,0x29,0x6f,0x39,0x88,0xc2,0x55,0xd2,0xe1,0x93,0xe5,0x42, +0x06,0xda,0x8d,0x4a,0x51,0x4a,0x87,0x4f,0x6c,0xa5,0xda,0xc2, +0xe0,0xcc,0x84,0xbb,0x84,0x48,0x87,0x4f,0x36,0x8f,0x1e,0x3e, +0x69,0x5e,0xc8,0x8a,0x3e,0x67,0x48,0x37,0x9e,0xa6,0x0c,0xd8, +0xde,0x94,0xcc,0xc7,0xe6,0x3f,0x59,0xf1,0xb4,0x0e,0xd1,0x87, +0x2f,0xa4,0x83,0x4b,0xf3,0xe1,0x13,0xf4,0x5e,0xc3,0x26,0x1a, +0xc8,0x6e,0x4b,0x8b,0x60,0x4d,0x2a,0x90,0xc9,0xc2,0x94,0xa5, +0x04,0x9a,0x71,0x1c,0x36,0x33,0xab,0x30,0x9a,0xdc,0xaf,0xee, +0x6f,0x69,0xed,0xb4,0xa8,0xe0,0xad,0x8c,0xb5,0x2c,0xf6,0xbb, +0x70,0x70,0xfb,0x7b,0xd2,0xed,0x74,0x5b,0xde,0x6e,0x52,0xd1, +0xc0,0x1b,0x37,0x1f,0x68,0xd5,0x97,0xca,0xdc,0xb8,0x2b,0xee, +0x90,0x43,0x68,0x84,0x8f,0x35,0xe0,0x5b,0xe6,0x24,0xc6,0xed, +0xc7,0x03,0x98,0x8d,0x8b,0x6a,0x75,0x78,0xa8,0x83,0xb5,0x0f, +0xc1,0x34,0x16,0x4a,0x39,0xf8,0xd5,0x84,0xc1,0x25,0x27,0x71, +0xa3,0xcf,0x57,0xca,0x07,0x8e,0xba,0xf8,0x2f,0x9b,0x45,0x91, +0x62,0xaa,0xaa,0x0c,0xe6,0x33,0x20,0x1b,0x2e,0x84,0x31,0xf9, +0x2a,0x79,0x30,0x36,0x0e,0x76,0x82,0x3e,0x05,0xcb,0xab,0x29, +0x21,0xfc,0x09,0x14,0x24,0xe6,0x48,0xd4,0xd1,0xe8,0xa3,0xcd, +0xe9,0xfc,0xd1,0x5b,0xbe,0xb7,0xbd,0xfb,0xcd,0x8e,0xf0,0xc9, +0xff,0x3d,0x96,0x11,0x69,0x74,0x7a,0xf0,0xd9,0x75,0x90,0xf5, +0xc2,0x44,0xe9,0x74,0x9f,0x96,0x8b,0x9a,0x93,0xd6,0x91,0xec, +0x80,0x9c,0x80,0xec,0xca,0xa1,0xf2,0x6f,0x0a,0x6e,0x1a,0x65, +0xf3,0xbe,0x87,0xdd,0x0f,0xbb,0xea,0x1d,0x4b,0x39,0x9e,0x74, +0x3c,0xc9,0xc5,0x92,0x6f,0x33,0x6f,0x97,0x37,0xe8,0xf9,0x58, +0x7b,0xdb,0xf9,0xb8,0x78,0x9d,0xf5,0x3c,0xe7,0x79,0x2e,0x5a, +0x8f,0xef,0xb8,0xd4,0x79,0xa9,0x23,0x9a,0x13,0xd7,0xf5,0x0a, +0x5b,0xd8,0x92,0xa8,0xe2,0xa8,0xa2,0x68,0x6a,0x04,0xb8,0x9a, +0xf4,0x35,0x77,0xf7,0xd7,0xf7,0x53,0x40,0x60,0xa3,0x6d,0xa0, +0x2b,0xb7,0xe1,0x1c,0xba,0x03,0x06,0xae,0xcf,0x4c,0x80,0xd4, +0xee,0x7d,0x70,0x4d,0x34,0x33,0x10,0x66,0x2f,0x11,0x3f,0x32, +0x14,0x3e,0x9a,0x2d,0xee,0xd2,0x87,0x30,0x51,0x15,0x3f,0x66, +0x53,0x75,0x64,0xbf,0x32,0x1d,0xa9,0xa9,0x1d,0x2a,0x90,0x1d, +0xcb,0xa6,0xce,0x19,0xde,0x07,0x4b,0x71,0x7c,0x69,0x07,0xbf, +0xb7,0x43,0xab,0xdd,0xbc,0x8b,0x82,0x9e,0x27,0xc4,0xbe,0xce, +0xb8,0xc1,0xaa,0xc4,0xd1,0x9a,0xaf,0x73,0x6b,0xb7,0xac,0xb6, +0xa2,0xbc,0x2b,0x99,0xa4,0x68,0x5d,0xde,0x1f,0x7d,0xa8,0x3d, +0x8d,0x8f,0x1c,0x0e,0xb9,0x73,0xbc,0x8f,0xc3,0x28,0x6c,0x24, +0xe5,0x4f,0xd3,0xdf,0x5c,0xfe,0xcd,0x38,0x96,0x3f,0xb1,0xf6, +0xe8,0x1a,0x97,0x2d,0x9c,0x50,0x04,0x3e,0x44,0xef,0xd0,0xb6, +0x83,0x5b,0x4c,0x4a,0x8d,0xf9,0xa7,0xdd,0x0f,0xbf,0xee,0xb9, +0x31,0x3a,0x73,0x46,0xd7,0x12,0xf7,0xa3,0x32,0x8e,0xff,0x77, +0x2d,0xb1,0xb0,0x2c,0xbf,0x9a,0x13,0x93,0x86,0x14,0x63,0xd8, +0xda,0x6f,0xcb,0x7f,0xce,0x7d,0xcf,0x41,0x5a,0x2c,0x31,0x5e, +0xb3,0x72,0x23,0xee,0xde,0x52,0x40,0xc3,0xe1,0x9a,0xfb,0xc0, +0xbe,0xac,0x7f,0x2f,0xe9,0xe8,0xce,0x86,0xc9,0xdb,0x61,0xdb, +0xa6,0x42,0x49,0xe6,0xf1,0xe9,0xa2,0x07,0x06,0x3f,0x71,0xe8, +0x8f,0x3d,0x44,0x50,0xe9,0x11,0x55,0x18,0xb3,0x91,0x25,0x04, +0xb2,0x28,0xf7,0xba,0xd8,0x0b,0x17,0xa5,0x97,0x3e,0xfa,0xf2, +0x09,0xea,0x6f,0x64,0x13,0xb5,0x64,0x5f,0x33,0x4d,0xe9,0x59, +0x0d,0x2a,0xc2,0x7e,0xf1,0x4f,0x31,0x81,0xa5,0x10,0xf2,0x3e, +0x41,0x25,0xf8,0x02,0x94,0x18,0x38,0x88,0x5f,0xfc,0x6f,0x5b, +0x4d,0x6a,0x7f,0x42,0xdb,0x9f,0x30,0x4a,0xf0,0x99,0xa2,0x81, +0x48,0x39,0xf4,0xc9,0x21,0x68,0xb1,0x17,0xe7,0x2a,0x77,0x18, +0xc8,0xbe,0x85,0xf5,0x69,0xe0,0x09,0x79,0x33,0x61,0x85,0xe2, +0x4c,0x1f,0x8b,0x3f,0x8f,0x6c,0x24,0xd0,0xda,0x85,0xad,0x6f, +0x20,0x43,0x98,0x2c,0x3e,0x12,0x27,0xc3,0xe5,0x45,0x58,0x6b, +0x00,0xb5,0x38,0x11,0xdf,0xe8,0x29,0x4e,0xf6,0x50,0x4f,0xaa, +0x25,0x04,0x13,0x34,0x82,0x31,0x60,0xc4,0x0c,0xe0,0x18,0xe9, +0x38,0xa6,0x0d,0x8e,0x61,0x31,0xc3,0x98,0x20,0x43,0xdf,0x67, +0x46,0xab,0xd2,0xd9,0xd0,0xb6,0x0d,0xfd,0xd2,0x3f,0x05,0x07, +0x12,0x96,0x12,0x11,0x75,0x3c,0xe4,0xf8,0x71,0x3e,0x12,0x3e, +0x87,0x05,0x03,0xb8,0x00,0xb4,0x34,0x50,0x0b,0xd5,0xb5,0x28, +0x0e,0x0b,0xc6,0x29,0xa6,0x14,0x6b,0x4f,0xc3,0x05,0xf5,0xa6, +0xfc,0x5f,0xf0,0x51,0x1d,0x8c,0x8f,0xa3,0x54,0x49,0x6c,0x1d, +0x12,0x2e,0x49,0x49,0xf2,0x12,0xfd,0x9c,0x8c,0xeb,0xea,0xeb, +0x65,0x42,0x00,0x14,0xd3,0x88,0x15,0x00,0x5a,0xea,0xf4,0xc3, +0x3a,0xba,0x70,0x88,0x0d,0xc6,0x05,0x94,0xfe,0xe3,0x4a,0xdc, +0x54,0x6f,0xcc,0xc3,0x27,0x30,0xb3,0x0d,0xc6,0xa6,0xc2,0x0c, +0xfa,0xf1,0xda,0x61,0xa1,0x56,0x2a,0xe3,0xcc,0xf7,0xcd,0x01, +0x06,0x95,0x1b,0xdb,0x78,0x9c,0x0b,0x9b,0xf7,0xc1,0xbc,0x23, +0x52,0xbd,0x68,0x21,0x5a,0xf0,0x22,0xe1,0x69,0x27,0xa2,0x42, +0xc2,0x8f,0x85,0xf2,0xa7,0x41,0xf6,0xbe,0x67,0x36,0xe8,0x6a, +0xa3,0x2e,0xce,0xd5,0x83,0x99,0x4c,0x28,0x7e,0x6c,0x83,0x2a, +0x94,0x29,0xce,0xa4,0x23,0xfa,0x23,0x30,0xa5,0xc0,0x44,0xbd, +0xe0,0x62,0xc4,0xbc,0x7e,0x21,0x89,0x91,0x52,0xa2,0x4e,0x29, +0xbf,0xc0,0x65,0x0d,0x95,0x32,0x78,0x0b,0x89,0xf4,0x92,0x56, +0x83,0x8e,0x0e,0xea,0x48,0x22,0xfe,0x9f,0xb0,0x61,0x38,0xd5, +0x0c,0x97,0xd1,0xfb,0x99,0x5f,0x65,0x4c,0xe1,0xfd,0x27,0xa5, +0x7f,0xc5,0xfd,0x46,0xaf,0x27,0xbd,0x4f,0x48,0x8f,0x61,0xe2, +0x56,0x54,0x2c,0xfc,0x0e,0x3f,0xab,0xa3,0x57,0x33,0x0e,0x16, +0x1b,0xc0,0xdc,0x30,0x49,0x06,0x23,0x1b,0x08,0xb1,0xae,0x35, +0xad,0x33,0x29,0x75,0xb6,0xe0,0xdb,0x3f,0x08,0x8a,0x5e,0x46, +0x47,0x62,0xd9,0xa0,0xd9,0xa9,0x5b,0xe5,0x64,0xc1,0x77,0xd9, +0xf5,0x9a,0x34,0x9b,0x71,0xc1,0xc8,0x10,0x0f,0xa9,0x5a,0xef, +0x24,0x8d,0x45,0xad,0xf6,0xfc,0x75,0x18,0xdb,0x0c,0x5f,0xe4, +0x48,0x3b,0xa6,0xac,0xb0,0x90,0xc0,0xcc,0xf6,0xa7,0xbd,0xd9, +0xcf,0x29,0xcb,0x74,0xe8,0x05,0x87,0x58,0xe6,0xca,0xc6,0x57, +0xba,0x30,0x53,0x9e,0x43,0xe7,0x96,0x52,0xfd,0xd6,0x36,0xeb, +0x7e,0x0e,0x8e,0xb5,0x63,0x2a,0xa8,0xe9,0xa2,0x1a,0x5e,0x36, +0x02,0x7f,0xc6,0x56,0x6b,0xbb,0x09,0x2a,0x59,0x72,0x6b,0xd1, +0x87,0x44,0x24,0x87,0x5e,0x0a,0x0d,0x3f,0x16,0xc6,0x9f,0xbe, +0x98,0x78,0x35,0xba,0xff,0xd2,0xb7,0x33,0x5a,0x86,0x6b,0x29, +0xcd,0xb3,0xad,0xe2,0x7d,0x0c,0xbc,0x4c,0x3d,0x6c,0xb8,0x34, +0x16,0xba,0xf5,0xf0,0x3a,0x8b,0x99,0x9e,0xa8,0x84,0x1c,0xee, +0x57,0x6e,0xb2,0xba,0xf5,0x77,0xe5,0x0f,0x19,0xaf,0x66,0x5c, +0x90,0x96,0x09,0x22,0xff,0x44,0x55,0xbe,0xb9,0x5a,0x26,0xf8, +0x2b,0x12,0x88,0x8f,0xb5,0xab,0x95,0x9d,0x7d,0x8d,0x0b,0x5f, +0x55,0x55,0xde,0x98,0xdf,0xc0,0xe1,0xf3,0xe5,0xc4,0xa3,0xc1, +0xb9,0xce,0xb9,0xc2,0xc6,0x85,0xaf,0xb0,0x2f,0xb6,0x2b,0xb4, +0xe2,0x44,0x55,0x4f,0x72,0x16,0xc7,0x9f,0x58,0xee,0xbd,0xb5, +0xcd,0x8f,0x2f,0xfc,0xf1,0xf2,0x5f,0x17,0x60,0x1c,0x07,0xff, +0x83,0x43,0xe4,0x72,0x66,0x6c,0x56,0x6c,0x96,0x71,0x0a,0xef, +0xb3,0xc1,0x66,0xff,0x21,0xad,0x52,0x2b,0xbe,0xb6,0xb2,0xac, +0x21,0xbf,0x95,0x7b,0xcf,0x84,0x19,0x05,0x99,0xfa,0x58,0xfb, +0xe6,0xf8,0x66,0xfa,0xa5,0xbb,0xd8,0xf1,0x39,0x81,0x39,0xfe, +0xf9,0xde,0xb6,0x72,0xb9,0xe5,0x41,0xfb,0x52,0x53,0x1e,0x96, +0x7f,0xff,0x1c,0x3e,0x2d,0x84,0xf5,0x5c,0x1d,0x0b,0x21,0x18, +0x49,0x60,0xdb,0x8b,0xf6,0xf5,0x8f,0xf5,0xb7,0xe0,0x7c,0xf4, +0xdc,0x27,0x07,0x57,0x54,0xea,0x06,0xa5,0x5f,0x3b,0x58,0x3c, +0x05,0xdb,0xc8,0xf7,0xb8,0x6d,0x35,0xa3,0x24,0x74,0x0a,0x3e, +0xe4,0x44,0xfa,0x89,0x0b,0x21,0x27,0x8e,0x87,0x4b,0x93,0xe1, +0xf7,0xee,0xc5,0xa0,0xad,0x8b,0xda,0x48,0x7d,0xb5,0x12,0x43, +0x07,0xd4,0x0e,0x67,0x2f,0xc3,0xcf,0x2b,0x0d,0xf8,0x47,0x30, +0x36,0xff,0xdf,0xb9,0x90,0xdd,0x2b,0xa4,0xfe,0x3b,0x17,0x1e, +0xe2,0xb2,0xfa,0x0a,0x19,0x0c,0x43,0x12,0xe9,0x41,0xe5,0x0f, +0xda,0x79,0x14,0x13,0x8e,0x61,0x4f,0xe0,0xa7,0x94,0x13,0x50, +0xcb,0x99,0x5d,0xa1,0xc7,0xff,0x0a,0x9f,0x14,0xbc,0x8d,0x7b, +0x4d,0x3f,0x9a,0xd2,0x2b,0xa4,0xc4,0x32,0xb1,0x2b,0x8a,0x97, +0x3c,0xc2,0xcf,0xaa,0x7b,0xf8,0xc5,0x30,0xdf,0x14,0xe6,0x84, +0xc3,0x27,0x9c,0xf8,0x27,0xae,0x18,0xcd,0x5a,0x8d,0xf8,0xbd, +0x17,0x53,0x74,0xff,0xc2,0x88,0x65,0xba,0xbf,0x60,0x1b,0xe3, +0x74,0xdc,0x31,0xd4,0x2e,0x34,0x45,0x87,0xff,0xb5,0xe8,0x79, +0xe5,0x60,0xe5,0xe9,0x6e,0xde,0x27,0xc4,0x23,0xc4,0xed,0x38, +0x1d,0xfa,0x1b,0x8a,0x30,0x92,0x90,0x7b,0x39,0x3f,0x2e,0x5f, +0x2f,0x99,0xf7,0x5c,0x6e,0xba,0x71,0xdf,0xe1,0x4a,0x13,0xbe, +0xb6,0xa6,0xaa,0xb5,0xb8,0x9b,0x13,0x56,0xf4,0x30,0x62,0x9b, +0x18,0x4c,0xa0,0x73,0x21,0x68,0xc1,0xd4,0x1e,0xfc,0xfd,0x3f, +0xe3,0x7b,0xbf,0x86,0xaa,0x1e,0xfc,0x08,0x1c,0x59,0x5d,0x49, +0xf9,0x69,0x0c,0xfd,0xc1,0x18,0x06,0x2e,0xe1,0x3c,0x82,0x3e, +0xc2,0x57,0xe0,0xc3,0xe2,0xdf,0xb8,0x4b,0xda,0xba,0x6e,0x96, +0xb6,0xae,0x8d,0x71,0x22,0x01,0x3d,0xb0,0x47,0x3d,0x16,0x36, +0x89,0x33,0x49,0xd7,0x3b,0x83,0x2e,0x61,0x1a,0xba,0x88,0xd3, +0x58,0xb8,0x33,0xbd,0x0b,0x26,0x18,0x74,0xd3,0xff,0x7a,0xd3, +0xff,0x8a,0xde,0xf0,0x8a,0xa0,0x23,0xfd,0x83,0x8e,0xac,0xe0, +0x7b,0x86,0x60,0xc0,0x1c,0x08,0x60,0x05,0xa5,0xe9,0x18,0x80, +0x13,0x68,0x4b,0x49,0xf8,0xec,0x43,0xa5,0xc2,0x69,0xdf,0xc2, +0xca,0x4e,0x5c,0xf9,0xb7,0xde,0x5c,0x5c,0x66,0x08,0xcb,0xb6, +0xe2,0xa7,0xa2,0x12,0x7c,0xba,0x0e,0x57,0x18,0xc0,0x0a,0x5c, +0x26,0xc9,0xbc,0x7e,0xd5,0x85,0x5f,0xbd,0x64,0x05,0x5e,0x10, +0x89,0xfd,0x86,0x3d,0x1b,0x70,0xd6,0x96,0x62,0x43,0x1e,0x3e, +0x7b,0xf2,0xdd,0x8b,0xa2,0x5f,0xa9,0xdf,0x2c,0x5a,0xfc,0x72, +0x17,0xcc,0x5e,0x2d,0xa9,0x2f,0xcc,0x79,0xbe,0xe7,0xbe,0xd5, +0x2b,0x0e,0x35,0xa5,0x6a,0x41,0xd7,0xbb,0xf0,0x3a,0x83,0x8f, +0x6c,0x09,0x8e,0xdd,0x03,0x63,0x59,0xb0,0xc4,0xb1,0x64,0x27, +0x8c,0xbd,0xcf,0xc0,0x46,0xf1,0x3f,0x04,0xb2,0xbf,0xc3,0xa8, +0x76,0x88,0xfa,0xf0,0xfc,0x13,0x1a,0x1d,0x64,0x93,0x74,0x64, +0x5d,0x52,0xad,0xca,0x7a,0x15,0x41,0x5d,0x0c,0x92,0xf6,0x8c, +0x16,0xc0,0x3d,0xb2,0x06,0xe6,0x7c,0xc7,0xc0,0x6c,0x9c,0xf3, +0x6f,0x6b,0x3e,0x6d,0xad,0x80,0x39,0x3f,0x31,0x23,0x81,0xa7, +0xff,0xad,0x4f,0xf8,0x19,0xb0,0xe4,0x3e,0xb2,0x3b,0xe9,0xec, +0x19,0x2b,0xd9,0xde,0xac,0xf6,0xe7,0xff,0xaf,0xed,0x7d,0xaf, +0x0b,0xb3,0xfe,0xb5,0xbd,0x4d,0x6d,0x36,0xd4,0xf6,0x42,0xda, +0x31,0xe3,0x83,0xed,0x25,0x1a,0xc1,0x11,0x6a,0x7b,0xdb,0x4c, +0x70,0x8a,0x25,0x27,0x9c,0x12,0x3e,0x22,0xde,0xd6,0x2e,0xd6, +0xd4,0x5a,0x9c,0xa9,0xb5,0x54,0x8c,0x5a,0xcb,0xab,0xaf,0x24, +0x6b,0xa9,0x75,0xae,0xb4,0x71,0xe6,0xcb,0xed,0x4b,0x24,0x6b, +0xa1,0x31,0x7d,0x07,0xa9,0xbe,0xdd,0xf0,0x77,0xc6,0x63,0x8a, +0xa2,0x52,0xff,0x33,0x71,0x50,0x71,0x9b,0xa2,0xa8,0x63,0xaa, +0xd6,0x8b,0x4c,0xd7,0x71,0x83,0xaa,0x0d,0x5b,0x35,0x66,0x6a, +0x05,0x7b,0xcb,0x95,0xed,0x24,0xe9,0x9e,0x66,0xe6,0xeb,0xea, +0xe6,0x9f,0x9f,0xda,0x3c,0xd2,0x1f,0x54,0x81,0x0b,0xf4,0x93, +0xff,0x97,0x45,0x59,0xef,0x3f,0xa8,0x5d,0x66,0xc9,0xd7,0x7d, +0xb0,0x28,0x18,0xcb,0x84,0x4a,0x26,0x65,0xe5,0x93,0x2b,0x99, +0x94,0xb3,0x64,0x52,0xb9,0xfe,0x79,0xde,0x76,0x72,0x43,0xcb, +0x03,0xa3,0x26,0xb5,0xe2,0xbb,0x17,0xf0,0xd9,0xbf,0x26,0x15, +0x26,0x99,0xd4,0xd6,0x97,0x1d,0xeb,0x24,0x93,0x5a,0x88,0x9e, +0xfb,0xe5,0xe0,0x36,0x6a,0x52,0xbf,0x51,0x93,0x3a,0x03,0x5b, +0xc9,0x0f,0xb8,0x75,0x15,0xa3,0xf4,0x23,0xe8,0x12,0xe8,0x13, +0x36,0x6f,0x65,0xd2,0xcb,0x32,0x6a,0x13,0x2b,0x28,0x6e,0x5b, +0xcb,0xc6,0x65,0xc7,0xe6,0x44,0xe7,0x50,0x1e,0xef,0xb7,0xc8, +0x62,0xd9,0xa1,0xed,0x55,0x0e,0x7c,0x6a,0x86,0x0c,0x50,0xaa, +0x7e,0x30,0xb1,0xe3,0x66,0x57,0xe6,0x63,0xda,0x7d,0xb6,0x5d, +0x60,0x1b,0xcb,0xa4,0x6f,0xfd,0x46,0x1f,0x26,0xc9,0x73,0x24, +0x37,0xd9,0x74,0xb0,0xdd,0xb9,0x8f,0x03,0xd3,0x36,0xea,0xf8, +0xd5,0x0c,0x68,0xf7,0x79,0x19,0x83,0x3e,0xe3,0xa2,0x73,0xd8, +0x08,0xc7,0x99,0x73,0xc2,0x1e,0xda,0x7d,0x01,0xd6,0x9e,0x16, +0xce,0x76,0xb5,0x1e,0x7c,0x59,0x75,0x51,0x4b,0x36,0xed,0xbe, +0xa6,0xf9,0xc4,0xa7,0xc1,0xa3,0xce,0xbd,0xca,0xc6,0x9d,0x2f, +0xb2,0x2f,0xb0,0xcd,0xa1,0xdd,0x97,0x50,0x4b,0xc2,0xdd,0x8f, +0xda,0x06,0x38,0x71,0xf8,0x09,0x93,0x59,0x9a,0x51,0x9e,0x52, +0xc9,0x59,0x60,0x35,0x01,0xfe,0x01,0xf2,0x6c,0xf3,0x74,0xe0, +0x1f,0xd1,0x57,0xb0,0xfa,0x8a,0x48,0x1d,0x15,0x7d,0xc5,0x34, +0x89,0x0f,0x5c,0xef,0xb2,0x57,0x5f,0xb3,0xcc,0x9a,0x2f,0xab, +0x2a,0x68,0xbc,0xd2,0xc6,0xbd,0x64,0x22,0x8c,0x8f,0x9b,0x1f, +0xb1,0x0e,0xcc,0x0a,0x4c,0x0f,0x4c,0x73,0xb3,0xe3,0xb3,0x8e, +0x5c,0x09,0xc8,0xf6,0x71,0x35,0xb4,0x32,0xd7,0xb3,0x95,0xca, +0x50,0x4f,0xfd,0xf9,0x26,0x7c,0x96,0x0d,0x6b,0xb9,0x5a,0xca, +0xfb,0xf0,0x14,0x81,0x5d,0x77,0xdb,0x77,0x3f,0x36,0xdc,0x82, +0x94,0x22,0x1c,0x36,0x02,0x6d,0x54,0xea,0x04,0xa5,0x67,0xed, +0xec,0xc8,0x20,0x2c,0x22,0x30,0xf7,0x01,0xce,0x95,0xbe,0x78, +0xee,0x23,0xfa,0x2a,0x7c,0x95,0x4b,0x6e,0xe3,0xae,0x7d,0x8c, +0xb8,0x7a,0x88,0xa4,0xd9,0xa6,0x59,0x24,0x99,0xd4,0xa7,0xf2, +0xc7,0x5a,0x83,0x1a,0x8f,0x54,0x71,0xd8,0x8e,0x67,0x49,0xd9, +0xd5,0xbc,0xa7,0x09,0x8f,0xcc,0x12,0xf8,0xd0,0x7d,0x7e,0x7b, +0x9c,0x34,0x39,0x08,0x00,0x1d,0x92,0x22,0x4f,0xd4,0x8b,0x57, +0x6d,0x49,0xe2,0xc3,0x86,0x8f,0xf7,0x06,0x75,0x70,0xf8,0xe9, +0x31,0x12,0xa7,0x16,0xbd,0xf7,0xc2,0xc1,0xb6,0x38,0xfe,0xec, +0xad,0xc8,0x9b,0xe1,0xd7,0xa8,0x8f,0x48,0x12,0x16,0x93,0x37, +0x5d,0x3d,0x9d,0xa9,0x0f,0x68,0x17,0x5b,0x77,0x80,0x75,0x2c, +0x93,0xbc,0xb3,0xdf,0xe0,0x0f,0x83,0xdc,0x56,0x7e,0x51,0x8b, +0x41,0x87,0x47,0x0f,0x07,0x3b,0x5a,0xd1,0x10,0xd4,0xe5,0x48, +0x63,0xab,0x09,0x6c,0x64,0x3c,0xf5,0x0c,0xe5,0x8b,0x4d,0xb9, +0x60,0x58,0x42,0x83,0xfa,0x9f,0x30,0xb5,0x0d,0x0f,0x3d,0x37, +0xdc,0x80,0x9b,0x50,0x41,0xd9,0xe5,0x31,0x5c,0x6c,0x89,0x8c, +0x72,0x8b,0x4d,0x0b,0x7c,0x96,0x02,0x2b,0x2f,0xc0,0xee,0x19, +0xf0,0x92,0x11,0x66,0x0a,0xc6,0x24,0xc8,0xda,0xd7,0xcc,0xdd, +0xb6,0xd6,0x9b,0x2f,0xae,0xcd,0x6b,0x4b,0xa7,0x63,0x91,0x80, +0xe3,0x48,0x40,0x83,0x6f,0xbd,0x67,0xb5,0xad,0x37,0x9f,0x67, +0x9b,0x63,0x93,0x49,0x3d,0xff,0xd2,0xbd,0x44,0xe3,0xcf,0x21, +0xa6,0x79,0x3e,0xf9,0xf3,0xea,0x7c,0x16,0x77,0xe3,0x01,0x02, +0x64,0x08,0x09,0xe5,0xb6,0x34,0x16,0x22,0x51,0x03,0xda,0xdc, +0x87,0x84,0x1c,0x06,0x72,0x8d,0x81,0x9d,0xe8,0x46,0x62,0xe8, +0x98,0x44,0x65,0x9b,0x26,0xf2,0xc7,0xd7,0x78,0xee,0x35,0x57, +0xaf,0xb0,0xe1,0x0b,0xaa,0xb3,0x9b,0xd2,0x3b,0xb8,0xdb,0x4c, +0xa4,0x49,0xb8,0x79,0xb0,0x75,0x50,0x46,0x50,0x5a,0x70,0xaa, +0x9b,0x2d,0x9f,0x79,0x34,0x33,0x30,0xd3,0xd7,0x5b,0xdf,0xd1, +0xd4,0xcc,0xa6,0xda,0x86,0xff,0xe3,0xb7,0x6e,0xf8,0x24,0x8d, +0x0e,0x4a,0x0d,0x0b,0x1a,0x78,0x9a,0xc0,0xbe,0xe1,0x36,0xf5, +0x27,0x46,0x9b,0xe7,0x60,0x80,0xa6,0x11,0x6c,0x45,0xa5,0x76, +0x50,0xba,0x4d,0xc7,0xc4,0xe3,0x21,0xb9,0xdb,0xb2,0x1b,0x94, +0x8c,0xf1,0x57,0x26,0x20,0x32,0xe0,0x54,0xe0,0xe9,0x44,0x39, +0x3f,0x90,0x76,0x33,0xb3,0xe5,0x4a,0x64,0x0b,0x1f,0x10,0xe1, +0x7b,0xc2,0x27,0x82,0x83,0x3d,0x81,0x24,0xe0,0x64,0x6c,0xbe, +0xca,0x5f,0x6c,0x7d,0x79,0x6d,0x73,0x41,0xb3,0x73,0x19,0x1f, +0x48,0x89,0xa6,0x9b,0x3b,0x07,0xcb,0x4c,0xf0,0x05,0x6b,0x71, +0x25,0xb0,0x41,0xb9,0x8e,0x29,0x4f,0x4d,0x2d,0x57,0xf9,0x9e, +0xb5,0x48,0x96,0xcd,0x61,0xe1,0x35,0x14,0x51,0x1e,0xb0,0x4f, +0x9f,0x51,0x52,0x7c,0xa4,0x88,0x20,0xdf,0x32,0x67,0x70,0xa2, +0xdf,0x0e,0x13,0x35,0xbf,0x61,0xb7,0xaf,0xbd,0x5a,0x4c,0xfd, +0xf8,0x34,0xb7,0x34,0xe7,0x14,0x07,0xbb,0x23,0xd6,0x47,0xad, +0x82,0xc3,0x21,0x8c,0xbf,0x9e,0x70,0x37,0xa3,0x2f,0xd7,0xa3, +0x95,0xd7,0xf2,0xda,0x14,0xb0,0x3e,0x34,0x09,0x3b,0xf9,0x23, +0x91,0x47,0x4e,0x1e,0x39,0x95,0xae,0xcb,0x3f,0xca,0x7f,0x59, +0x7e,0xb7,0x2a,0x43,0x9f,0x4f,0x8b,0xab,0xb4,0xff,0xf6,0x59, +0xf9,0xfb,0x4b,0xb0,0x60,0xc6,0x6f,0xcc,0xa6,0x53,0x2b,0xc3, +0x4d,0x95,0x5d,0x23,0x8f,0x85,0x39,0xce,0xd2,0x65,0x12,0x0c, +0x64,0x7d,0xcc,0xd5,0xbc,0xec,0xd1,0xac,0xa6,0xe8,0xd1,0xac, +0xa6,0x26,0x46,0x5c,0x27,0x7e,0x44,0x5e,0xf6,0xae,0x83,0x0b, +0x30,0xa6,0x17,0x4b,0x75,0x61,0x02,0x5e,0x98,0x47,0x63,0xcc, +0x00,0x63,0x77,0xdc,0x2e,0xc4,0x56,0xca,0x00,0xfa,0xbb,0xf8, +0x97,0xaa,0xef,0x1a,0x69,0x78,0xb1,0x0d,0xb2,0x0d,0xb2,0x0e, +0xe6,0xc0,0x17,0xdd,0x49,0xab,0xb0,0xc0,0xa4,0x5f,0x30,0x16, +0x53,0xa4,0x8c,0x99,0x23,0x52,0x82,0xd3,0x0e,0x98,0x02,0x3b, +0x98,0x5e,0x9c,0x42,0x68,0x63,0x0f,0x4e,0x61,0x31,0xd8,0x84, +0xe0,0x74,0xfa,0xfe,0x74,0x16,0x02,0xa7,0xd3,0xb7,0xa6,0xe3, +0x1e,0xea,0x1a,0xe7,0x09,0x8b,0xc8,0xf6,0xd2,0x95,0x05,0x5b, +0x53,0x39,0x85,0x36,0xb3,0xc7,0x7d,0xa5,0xf7,0xca,0xa0,0x0c, +0x63,0xfe,0xcf,0xb4,0x77,0x25,0x2f,0xaa,0x3d,0x9a,0xf9,0x90, +0x48,0x19,0x5c,0x1f,0x71,0xc3,0xaf,0xd9,0xc0,0x4b,0x81,0x66, +0x2f,0x8e,0xc2,0x78,0x97,0x27,0x2e,0x33,0x5e,0xc1,0x30,0xc1, +0xac,0x67,0x90,0xc5,0xf4,0x6d,0x24,0xcf,0xa0,0x72,0x23,0x8b, +0xaf,0x4d,0xc9,0x3a,0xcc,0x7a,0xc9,0xc2,0xa3,0xe9,0x50,0xb9, +0x0e,0x2b,0x99,0x0d,0xb8,0x8f,0x3a,0x79,0x4b,0xe4,0x9d,0xf1, +0xcb,0x80,0x64,0x4a,0x75,0xa6,0x5f,0x81,0x05,0x35,0xef,0x1a, +0xb9,0x27,0xd3,0x81,0xf3,0x83,0xcd,0xa6,0xef,0xad,0x32,0xba, +0xf8,0xc5,0x55,0xb8,0xb7,0x03,0x27,0x66,0x72,0x9e,0x48,0x43, +0xe0,0xcd,0x5e,0xbc,0xf9,0xb7,0xc6,0x5c,0xa9,0xce,0x6f,0x3b, +0x72,0xe2,0x2a,0xdd,0x7f,0x66,0xf5,0x8a,0xbb,0x29,0x44,0x2d, +0x51,0xd8,0x13,0xf3,0x1a,0x83,0x1a,0x83,0x62,0x37,0x73,0xbe, +0xc7,0xb9,0xc5,0xa1,0xc5,0x86,0xeb,0xa4,0xf3,0x50,0x47,0xa1, +0xd2,0xc7,0x9e,0x12,0xdf,0xd0,0xa8,0x9e,0xf3,0x83,0xf6,0x2a, +0x0c,0x66,0x63,0xea,0xa3,0x1a,0x2f,0xb6,0x72,0x42,0x32,0x24, +0x88,0xf7,0x70,0x1e,0x83,0x17,0x7d,0x71,0xfe,0x5c,0x5c,0xa0, +0xdc,0x6a,0x31,0xf4,0xa2,0xf2,0x45,0xe6,0x9f,0x33,0xe0,0x04, +0x73,0x6c,0xd9,0x56,0x23,0x5c,0xb7,0x57,0x82,0xfa,0x0b,0x6f, +0xfd,0xdd,0x1f,0xfd,0x27,0x17,0xc3,0x24,0xe0,0x98,0xf7,0x46, +0xb0,0x7b,0x47,0x5e,0x0f,0x8f,0xfb,0x1e,0xad,0x68,0x39,0xfa, +0x9a,0x83,0x5d,0x52,0xda,0xc0,0x42,0x51,0x0e,0x0b,0x59,0xea, +0x4a,0x3f,0x27,0x26,0x0d,0x07,0xdb,0x34,0x2a,0x5c,0xcc,0xf9, +0x21,0xfb,0x41,0xf3,0x2e,0x73,0xee,0x38,0x8d,0xbc,0x4e,0x38, +0xc1,0x14,0xb9,0x03,0x8b,0x9b,0x6d,0x3f,0x9c,0x67,0x2c,0xf9, +0x9b,0x53,0x52,0x3c,0x00,0x13,0x92,0x4e,0x5d,0x50,0x86,0x7f, +0x63,0x19,0x6f,0x30,0xa4,0x39,0x70,0xb0,0xc7,0xd2,0x8d,0x2f, +0xf0,0xcd,0xf7,0xcd,0xf3,0x59,0x10,0x81,0x63,0x4f,0x22,0x73, +0xfa,0x87,0xce,0xd7,0xb7,0x1f,0xdf,0x32,0xab,0xe0,0x35,0x0c, +0x36,0x1e,0x5e,0xa3,0xbb,0xaa,0x9f,0x1f,0xac,0xeb,0x69,0xec, +0x6a,0xe1,0x28,0x64,0xfd,0x76,0xe4,0x0c,0x7e,0x0b,0x0f,0x18, +0x1b,0x67,0x53,0x47,0x23,0x17,0xe7,0x4c,0x97,0x0c,0xd7,0x74, +0x7b,0x6b,0xfe,0xb1,0xc5,0x3d,0x8b,0x3b,0x66,0xc1,0xe1,0xc1, +0x11,0xc1,0x27,0xb8,0xb3,0xab,0x57,0x9c,0x5b,0x36,0x2b,0x4e, +0x4f,0x06,0x9f,0xc2,0xb4,0x4b,0x31,0xf0,0x99,0x0a,0x9e,0xbd, +0x0a,0x17,0xd8,0xf7,0x31,0x7f,0xc7,0xbd,0x89,0xe7,0x44,0x4e, +0xb0,0x23,0x58,0xf9,0x12,0x2a,0x99,0x9e,0x75,0xe4,0x25,0x74, +0xae,0x63,0x51,0x30,0x25,0xab,0xb0,0xf2,0x07,0x16,0x7e,0x9a, +0x0e,0x9d,0xab,0xb0,0x93,0x81,0xb1,0xe2,0x01,0xf2,0xd6,0xec, +0x85,0xc5,0x53,0x79,0x65,0x33,0xbf,0xb6,0x63,0x7d,0xe3,0xf2, +0x46,0x4e,0x1c,0x44,0x0d,0xf2,0xb6,0xe6,0xc7,0xb6,0x6b,0xdd, +0x56,0x55,0xbc,0x9a,0xf1,0x06,0x8b,0x25,0x0e,0x9c,0xd2,0xb0, +0x30,0x96,0xfc,0x38,0x70,0xf3,0xe6,0xe5,0x3b,0xd2,0x79,0xa8, +0x1e,0x58,0x48,0xa1,0xff,0xc5,0xe8,0xd3,0xca,0xb0,0x00,0xc7, +0x97,0x34,0xa0,0xf2,0x5f,0xc7,0x12,0x22,0xcf,0x87,0x85,0xce, +0x08,0x0f,0x93,0x9d,0xea,0x01,0xed,0x76,0xd4,0x06,0x6d,0x3d, +0x8a,0xd0,0xe4,0x46,0x70,0x88,0x71,0xd3,0xd8,0x7e,0x60,0x8b, +0xb1,0xa4,0x82,0x5d,0x41,0xfc,0xea,0x5c,0x5a,0x3c,0x4b,0xec, +0x3d,0xf9,0x7c,0xd7,0x72,0x79,0x96,0x3d,0x07,0xe9,0xb0,0x98, +0x1c,0xb1,0x75,0x35,0x76,0x76,0xac,0xf4,0xe0,0x2b,0xaa,0x4b, +0x5a,0xaf,0x34,0x70,0x43,0xb8,0x94,0x88,0x99,0xc2,0x74,0x21, +0x13,0xe5,0x6c,0x4a,0x79,0xc2,0x28,0x8b,0x37,0xec,0x12,0x8d, +0x0c,0xc0,0x8c,0x09,0x77,0x0d,0x75,0x0c,0x76,0xe0,0x76,0x53, +0x16,0xff,0x06,0x72,0xa5,0xba,0x0f,0xf3,0x30,0xf7,0x2f,0x16, +0x63,0xf1,0x16,0x39,0x96,0x18,0x16,0x15,0x1e,0x1a,0x1e,0xca, +0x9f,0xba,0x14,0x9f,0x19,0x9b,0x13,0x95,0x3f,0x03,0xf4,0x3a, +0x50,0x2b,0x86,0xf9,0x51,0x77,0x15,0x7b,0x12,0x4d,0xe4,0xa0, +0xcf,0x06,0xad,0xd7,0xd4,0x44,0x6e,0x77,0xb1,0x39,0xff,0xa2, +0xfb,0xea,0x40,0x59,0x67,0xcc,0xe5,0xe8,0xf3,0x71,0x27,0x61, +0x15,0xf2,0x7c,0x65,0xa3,0x0c,0xc6,0x41,0x29,0x81,0x5c,0xca, +0x16,0x73,0x19,0x50,0x45,0x19,0x69,0x73,0xba,0x2e,0x6f,0x36, +0xae,0xaa,0xe3,0xcd,0x5a,0xd4,0x5a,0x8c,0x2a,0x38,0xec,0xa5, +0x53,0xfb,0x76,0x75,0x57,0x4b,0x53,0xb7,0x45,0x29,0x6f,0x6b, +0xac,0x67,0x71,0xd8,0x99,0x53,0xba,0x2a,0x50,0x44,0x96,0x0a, +0x04,0xa6,0x02,0x57,0x09,0xd3,0x28,0x06,0xaa,0xc4,0x69,0x30, +0x13,0x59,0xc8,0xc1,0xe9,0x25,0x7d,0x3c,0x26,0x53,0x82,0x38, +0x15,0xc6,0xe8,0xc1,0x24,0x6e,0x2f,0xa3,0x87,0x93,0x70,0xec, +0x6c,0x4c,0x42,0x25,0x4e,0xb1,0x3f,0x92,0xf4,0x89,0x1a,0x3a, +0x2c,0x1c,0x12,0x3b,0x88,0x40,0x51,0x2a,0xfa,0xa2,0x2a,0x9b, +0xa6,0x23,0x83,0xd5,0x4c,0x7b,0x66,0x12,0x25,0xcb,0xf9,0x23, +0x26,0x3a,0x90,0x2d,0xca,0xd8,0xff,0x27,0x35,0xe6,0x03,0x9d, +0x2d,0x28,0x28,0x2c,0xcd,0xaf,0xa1,0x74,0x76,0x50,0xf8,0x0f, +0xa5,0xb3,0x15,0xaf,0x73,0x61,0x0c,0x07,0xb1,0x31,0xc4,0x7a, +0xc5,0x57,0xcb,0x51,0x77,0x76,0x89,0x1e,0x0f,0x1a,0xef,0xff, +0x7c,0x55,0x01,0x1c,0x9d,0xe5,0xa5,0x14,0xfb,0xc9,0x56,0x82, +0x3a,0x8e,0x2f,0xeb,0xa5,0xf3,0xfc,0x2f,0x9c,0xf0,0x8b,0xf9, +0xcf,0x1c,0x06,0xe1,0x2f,0x44,0x58,0xd0,0x27,0x2e,0x60,0xe8, +0x15,0x9f,0x20,0xe2,0xb4,0x61,0x61,0x1a,0x9c,0xa2,0xd7,0x31, +0x97,0x4d,0xd5,0x96,0xc1,0x24,0xa6,0x33,0x3d,0xbb,0x4d,0x05, +0x32,0x46,0x38,0x5d,0x7a,0x0d,0x9e,0xf4,0x1a,0x1c,0x50,0x4f, +0x0b,0x17,0xae,0xa4,0x97,0x20,0xe7,0x73,0x0a,0x72,0x2b,0x72, +0x1b,0x38,0x31,0xa3,0x5f,0x31,0x83,0x2d,0xbe,0x97,0xf7,0x2a, +0xed,0x35,0x27,0x3c,0x1b,0xf9,0x9a,0xe0,0x32,0x26,0x9d,0x7e, +0x7c,0x0a,0xfd,0x78,0x5a,0x97,0x8a,0x62,0x48,0x93,0x15,0x3d, +0x56,0x91,0x30,0x5c,0xeb,0x88,0x64,0x2b,0x4e,0x29,0xd7,0xe7, +0x7b,0x1f,0x57,0xbd,0xcc,0xa1,0x96,0xc6,0x33,0x27,0x57,0x05, +0x6f,0xf2,0xdc,0xe9,0x52,0xe2,0x54,0xe2,0x9c,0xef,0x6e,0xcc, +0x97,0x79,0xd5,0x38,0x96,0x39,0x58,0x2c,0x53,0xdf,0xb0,0x61, +0x47,0xbd,0x09,0x0f,0xfb,0x60,0xe7,0x2b,0x50,0xcd,0x82,0x02, +0xae,0x11,0x0f,0xb1,0x97,0x9b,0x63,0x5b,0xa3,0xda,0x39,0xd0, +0xe9,0xc1,0xef,0xf5,0x18,0x81,0xaf,0x22,0x23,0x5f,0x0e,0x28, +0xbe,0xa4,0xd7,0x96,0x2d,0x04,0x11,0x50,0xfd,0xeb,0xcf,0x57, +0x95,0xc0,0xfe,0x7b,0xbf,0xcc,0x4a,0x1a,0x55,0x46,0xef,0x77, +0xff,0x5f,0x28,0x93,0xee,0x57,0x95,0xb1,0x5a,0xb1,0xe2,0x2b, +0xd4,0x9a,0xcb,0xa5,0x3f,0x21,0x36,0x83,0x7a,0xd7,0xd5,0x87, +0x2c,0x6c,0xf8,0x3e,0xed,0x2e,0xb5,0xa6,0xc3,0x9c,0xf0,0x72, +0x05,0x1d,0x8f,0xc5,0x74,0x3c,0x4c,0xc5,0x41,0x42,0xfb,0xe1, +0x0c,0xed,0x87,0xf9,0x6c,0x9a,0xb6,0xa4,0x90,0xf5,0x6f,0x3f, +0x88,0xbf,0xe9,0x42,0x10,0x05,0xd4,0x78,0x55,0x58,0x4f,0x6c, +0x70,0xf2,0x21,0x5c,0xb0,0x7f,0x69,0xbb,0x15,0xff,0xcd,0xbb, +0x6b,0xb0,0xa8,0x91,0xd2,0x04,0x25,0x85,0x83,0xe2,0x2e,0xa1, +0x1c,0x78,0x89,0xd6,0x6f,0xcc,0x69,0x6c,0x31,0xc1,0xbd,0x38, +0x06,0xe7,0x36,0x9a,0xf1,0xf0,0x31,0xac,0x6d,0x07,0xb3,0x28, +0xe8,0xe4,0xa4,0x64,0x99,0x33,0x91,0xb8,0x21,0x74,0xbe,0xb2, +0x46,0x44,0xc8,0x31,0x83,0x59,0xeb,0xa5,0x9d,0xff,0x67,0xcc, +0xb7,0x85,0x15,0x4f,0xa5,0x62,0x18,0x1f,0x45,0x53,0xa0,0x7d, +0x6b,0x26,0x9a,0x33,0xa2,0x0a,0x7a,0x93,0x0b,0x45,0xe7,0x4b, +0x4a,0x67,0xd6,0x83,0x5d,0xb7,0x28,0x03,0x22,0x90,0x1e,0x51, +0x1b,0xff,0x0f,0x61,0xef,0x01,0x55,0xc5,0xd5,0xbd,0x0f,0xc7, +0x44,0x66,0x26,0xd1,0x60,0x4c,0x3c,0x64,0xc0,0x04,0xec,0xdd, +0x58,0x62,0x47,0x45,0x05,0x1b,0xbd,0x5d,0x7a,0x97,0xde,0xa4, +0x83,0x28,0x45,0x54,0xb0,0x23,0x48,0xef,0xbd,0x77,0x90,0xde, +0xab,0x08,0x96,0xa8,0xb1,0xf7,0x92,0x44,0xd3,0x8d,0x66,0x0f, +0xee,0x21,0xbf,0xef,0x8c,0xe6,0xfd,0x7d,0xef,0xb7,0xbe,0xff, +0x5a,0xff,0xe5,0x5a,0xf7,0x5e,0x2f,0xf7,0xce,0x3d,0x6d,0xef, +0xfd,0x3c,0x67,0xf6,0x79,0x36,0xa5,0x02,0x43,0x51,0xa8,0x6e, +0x80,0x0a,0xca,0xed,0xf6,0x72,0x17,0x61,0x51,0x12,0xa8,0xc3, +0x88,0xd2,0x2b,0x6b,0x06,0xe3,0x43,0x70,0xd1,0x2a,0x9c,0xad, +0xdc,0x6c,0x77,0x03,0xa6,0x96,0x01,0x49,0x04,0x43,0x49,0x1e, +0x12,0xbf,0x8c,0xc6,0x0f,0xa2,0x74,0x95,0x2d,0x8f,0x84,0x06, +0xdb,0x4c,0xd7,0x66,0x52,0x64,0x72,0xc3,0xcc,0x8d,0x92,0xaa, +0x2b,0x89,0x2a,0x89,0x17,0xcf,0x80,0x22,0x6c,0x55,0x92,0x1f, +0xbb,0x34,0xd6,0x4b,0x96,0x60,0x3f,0xb0,0xba,0xc8,0x62,0xc3, +0x4b,0x5d,0x9c,0x3f,0x96,0x0e,0xf3,0xd9,0xf1,0x09,0x18,0x44, +0x92,0xb7,0x5f,0xd3,0x82,0x49,0xdb,0xcb,0x29,0xf4,0x23,0x37, +0x0c,0x2e,0x84,0xf4,0x72,0xda,0x4c,0xb0,0x91,0xd9,0x2e,0x9c, +0xa6,0x51,0x6e,0xc6,0xc3,0xc7,0x97,0x2f,0x5c,0x4c,0xbd,0xc6, +0x8d,0xed,0x4c,0x24,0xa2,0x9f,0x19,0xb8,0x31,0x51,0x01,0x07, +0xfd,0xc2,0xfd,0x38,0x9c,0x2e,0xce,0xa2,0x74,0x61,0x16,0x9a, +0x30,0x49,0x05,0x89,0x05,0x09,0x79,0x1c,0x38,0x32,0xe2,0x24, +0x34,0x20,0x57,0xa0,0x60,0x07,0x2b,0xba,0xa6,0x91,0x2e,0x0c, +0x36,0x65,0x05,0x55,0xea,0x68,0xaf,0x42,0x81,0x06,0x3b,0x5e, +0xd1,0x4f,0xa4,0x14,0x9f,0xdb,0x83,0x70,0x1b,0x16,0xa0,0xfa, +0x3c,0x36,0xd9,0x54,0xee,0x3e,0xd3,0x94,0x2d,0x65,0x47,0xfa, +0xb0,0x30,0x05,0xb7,0x93,0x1b,0x50,0xb0,0x85,0x5d,0xbb,0x9c, +0x0c,0x7a,0x74,0xbb,0x74,0x3b,0xd4,0x34,0xf3,0xb2,0x7a,0xc3, +0x1a,0xa3,0x52,0x0e,0x6f,0xe2,0x42,0x72,0xad,0x78,0xa0,0xaa, +0xad,0xd1,0xb1,0x9e,0xb7,0xdc,0x63,0xe2,0xb1,0xd3,0x8f,0x93, +0x87,0x98,0xad,0xe4,0xed,0x0c,0x9d,0x7f,0x66,0xd0,0xb9,0x15, +0x7e,0x24,0x30,0xf5,0xd1,0x83,0x3b,0x65,0xd2,0x36,0x4f,0xc9, +0xcc,0xbf,0x96,0xc1,0x16,0xfc,0xb0,0x8a,0x2e,0x92,0xf5,0x7f, +0xce,0xfe,0xd9,0xe1,0x05,0xb7,0x8b,0x71,0x59,0xa9,0xba,0x1a, +0xa7,0xad,0xe3,0x4e,0xe9,0x93,0x23,0x5d,0x61,0x17,0xc2,0x9a, +0xac,0xf6,0xf1,0xc9,0xb6,0x49,0xba,0x71,0x32,0x0e,0x6d,0xa8, +0x7f,0x2a,0x7a,0x9a,0xf2,0x67,0xec,0x6b,0xe3,0x38,0x3e,0x66, +0x4e,0xf8,0x12,0x9f,0xb5,0xdc,0x58,0x2a,0x4c,0x21,0xfd,0x22, +0x6b,0xc8,0x82,0xa6,0xb4,0x72,0x08,0xf8,0x62,0x00,0x7e,0xf9, +0xce,0x82,0x3e,0x60,0x3a,0x32,0x73,0xdb,0x55,0x20,0x57,0xbc, +0x6e,0x08,0x07,0x44,0x42,0xa9,0xd6,0x6b,0xba,0x40,0x5c,0x97, +0xa9,0x52,0x3e,0xb5,0xa8,0x52,0xc6,0xc3,0x82,0xdf,0x1e,0x3d, +0x2a,0x85,0x8f,0xe8,0x9a,0x2d,0x9a,0xf9,0xcb,0x72,0x58,0x83, +0x13,0xaa,0x68,0x24,0x5a,0xf6,0xc7,0xa2,0x9f,0x9d,0x5e,0x70, +0xe2,0x7a,0x71,0x21,0xf9,0xa3,0x7f,0x1e,0x9c,0x00,0xc5,0x01, +0x7c,0x62,0x00,0xca,0x78,0x02,0xa7,0x19,0xc2,0x34,0xec,0x67, +0xac,0xc2,0x2c,0xc3,0xcc,0x23,0x52,0x75,0x29,0xb8,0x2d,0x87, +0x8f,0xea,0x7e,0x6b,0x8a,0xe9,0xe3,0x6d,0x43,0x6d,0x42,0xad, +0x28,0x38,0xf0,0x82,0xdf,0x08,0x50,0xa2,0xfa,0x1b,0x03,0x1f, +0x60,0x04,0x11,0x15,0xce,0x0b,0x0a,0x60,0x47,0xd9,0xde,0xa7, +0x6c,0x9a,0x81,0xdc,0xef,0x4c,0x5b,0x66,0x0e,0x6d,0x54,0xbe, +0x58,0x2f,0x99,0xf5,0xa0,0x40,0x48,0x74,0x2c,0xd3,0xd5,0x7f, +0xfd,0xe7,0x8a,0x97,0x5c,0x07,0xae,0x84,0xc5,0xda,0xb8,0x18, +0xd5,0xf5,0xe1,0x1e,0x6b,0x89,0x93,0x29,0x4d,0x5e,0x87,0x2b, +0xe7,0x57,0x98,0xf2,0x17,0x5b,0x06,0x5a,0x1a,0xa9,0xbd,0x2f, +0xba,0x20,0xa8,0xb1,0xf1,0x34,0x0a,0x44,0x2b,0xc3,0x2a,0xdc, +0xd0,0x70,0x8e,0x7e,0x65,0x6d,0x64,0x62,0xe4,0xa9,0xc8,0x28, +0x45,0xa1,0x5f,0x9c,0x4e,0xd0,0x8a,0xb1,0x8a,0x48,0x69,0x56, +0x19,0xcb,0xd0,0x1c,0xcf,0x67,0xd7,0x97,0x78,0x3c,0x54,0x06, +0x5b,0xa6,0x23,0x2b,0xb7,0x53,0x05,0xcc,0x25,0x01,0x0d,0x49, +0x15,0xe9,0x3a,0xf9,0x13,0x4a,0xe7,0x0e,0xff,0x09,0x89,0xfd, +0x98,0xf8,0x9b,0xce,0x02,0x2c,0x95,0x1e,0x0e,0x1b,0xc2,0xe1, +0xb9,0x2c,0xa8,0xf6,0x12,0x83,0x65,0xc8,0xa8,0xe1,0xe9,0x2d, +0xf9,0x14,0x43,0xc4,0xdd,0x07,0x72,0xa7,0x45,0x3a,0x82,0xca, +0xb4,0xe0,0x87,0xa0,0xbc,0x09,0x52,0xd7,0xe5,0x53,0xdf,0x1a, +0x77,0x03,0xbf,0xb8,0x69,0xf0,0x23,0x87,0x07,0x30,0x8f,0x08, +0xcb,0xfb,0xc4,0xe5,0xcc,0xef,0x68,0x47,0xb0,0x65,0x18,0x5a, +0xa0,0x87,0xc6,0x6e,0x3d,0x36,0x8b,0xce,0xc2,0x2a,0xa6,0x25, +0x3f,0xb7,0x45,0x05,0x64,0xe3,0xdb,0x8d,0x58,0xf9,0xb1,0xaf, +0xc6,0x6e,0x10,0xef,0x6f,0xd4,0x17,0xe1,0xec,0x79,0x92,0xee, +0xd3,0x8c,0xd7,0x37,0x9e,0xe4,0xd3,0x6b,0xc7,0x31,0x79,0xb3, +0xef,0xaf,0x80,0x59,0xf8,0x81,0x34,0x03,0x5f,0xfd,0xb2,0xee, +0x57,0x0f,0x3a,0x03,0xe6,0x8e,0x24,0x59,0xb5,0x55,0xfb,0xbe, +0x7a,0x45,0x37,0xaf,0x36,0x62,0x7d,0x29,0x78,0x94,0xd3,0x60, +0xfc,0xd5,0x4c,0x37,0xe2,0x87,0x5b,0xcb,0x64,0xfc,0xdf,0xd7, +0x46,0x1e,0xa5,0xff,0xc8,0x95,0x88,0x5a,0x04,0x96,0xf4,0xe1, +0x12,0xf8,0xf8,0x55,0x1f,0xa6,0x1a,0xfd,0x86,0x1f,0xa3,0xaa, +0x11,0xc5,0xb0,0x83,0x8c,0x7e,0xa4,0xde,0x21,0xfd,0x23,0x89, +0x74,0x9e,0x94,0x33,0x60,0x5e,0xc9,0x9f,0xa5,0x47,0xfb,0x79, +0xcb,0x70,0x93,0x70,0xe3,0x83,0x1c,0xc4,0x09,0x5b,0x09,0xb4, +0xf7,0x61,0x3b,0xf3,0x90,0xe2,0x20,0x51,0x71,0x50,0x90,0xee, +0x89,0xef,0x9b,0xcf,0xa6,0x1a,0x4a,0x2b,0x3e,0x2b,0xab,0x55, +0x05,0x4a,0x44,0x6d,0x23,0x76,0x21,0x6a,0x93,0xcc,0xde,0xd4, +0x81,0xa4,0x5e,0xca,0x7e,0x22,0xf5,0xc2,0x8d,0x43,0x2d,0xa4, +0x44,0xa6,0x59,0xa4,0xd0,0xb8,0x50,0x35,0xc5,0xb0,0x33,0x83, +0x0f,0x1b,0xf4,0x79,0xe8,0xd7,0xcd,0xc9,0x5f,0x12,0x7e,0xa2, +0xd6,0xf3,0xa4,0x1b,0xa7,0xff,0xf6,0x8e,0xac,0x3f,0x37,0x5c, +0x81,0xcb,0x64,0xb0,0x6c,0x01,0x2b,0xdc,0x11,0xd7,0x93,0xbe, +0x96,0x8e,0xf6,0x86,0x1e,0x87,0x6a,0x7e,0x8f,0xa9,0xb9,0xa9, +0xb9,0x23,0xe7,0xd9,0xbc,0xaf,0xa9,0x4e,0xa9,0x03,0xcc,0x61, +0x65,0x7f,0xb7,0x21,0x2c,0x43,0xf3,0xdb,0x86,0x9b,0xd0,0xc4, +0x04,0x4c,0xe6,0xe2,0x5e,0x13,0xd8,0x3b,0x13,0x4d,0x4c,0xc1, +0x44,0x5c,0x88,0x9f,0x49,0x77,0x6a,0x7f,0xa6,0x93,0x98,0x41, +0x27,0x31,0x20,0x9e,0x4d,0x5b,0x77,0x67,0x03,0x4c,0x59,0x5d, +0xd9,0xc5,0xef,0x6c,0xd2,0xed,0xb4,0xee,0xe6,0x06,0x84,0x52, +0x32,0x17,0x67,0xfe,0xc9,0xc2,0x4c,0x5c,0x46,0x66,0xe2,0xcc, +0x37,0x2c,0x5e,0x5c,0x42,0x90,0x12,0xc6,0x6b,0x0c,0x38,0xe0, +0x46,0xe2,0x5e,0x67,0xd3,0x62,0x53,0xed,0xec,0xc8,0x37,0xba, +0x34,0xd9,0x56,0xd9,0x73,0x38,0x0b,0x3e,0x25,0xe2,0xc7,0xc6, +0xb0,0x1e,0xf3,0x36,0x30,0xd4,0xd1,0xf6,0x33,0x2d,0x99,0x92, +0xda,0x67,0x06,0x2c,0x66,0x67,0xaa,0x93,0x4c,0xb7,0x6c,0x8b, +0x54,0x87,0x96,0x22,0x3e,0xbc,0x2e,0xa8,0x2d,0xb8,0x8a,0xc3, +0xb8,0x18,0x12,0xa1,0xb3,0x77,0x8b,0xa7,0x79,0xb3,0x0b,0x5f, +0x35,0x54,0x74,0x27,0xf5,0x32,0x27,0xec,0x3a,0x4e,0x8c,0x74, +0xb6,0xea,0xaa,0x4a,0xe2,0xa8,0x0f,0xda,0x6f,0x8d,0xf6,0x5d, +0xa0,0xb4,0xca,0x61,0x6c,0x0a,0xc1,0xb9,0xe7,0x61,0x2e,0xfc, +0x8a,0x1a,0x43,0x10,0x24,0x2e,0xbc,0x28,0x4c,0xea,0x1e,0xaf, +0x36,0x01,0xdc,0x2d,0x2a,0x61,0xd0,0x10,0x68,0xb0,0xe7,0x4d, +0x89,0x25,0xec,0x69,0x93,0x44,0xa0,0x2c,0xc1,0xb7,0x8d,0xa5, +0x7d,0x5c,0x44,0xda,0x70,0x8f,0x25,0x2b,0x08,0x0a,0x6d,0xe8, +0x6b,0xc9,0xa2,0x7c,0x05,0x31,0x58,0xbf,0xc4,0x0a,0xf3,0x35, +0x25,0x15,0xf8,0x09,0x45,0x0f,0xf2,0x47,0x0a,0x38,0x07,0x41, +0xbe,0x8e,0xbd,0xe4,0xff,0x30,0xe0,0x8d,0x4f,0x66,0x37,0x8f, +0x25,0xa3,0xf8,0x41,0xab,0xc1,0x7d,0x0e,0x0d,0x71,0x0d,0x79, +0x54,0xdd,0x52,0x5f,0xd0,0x47,0x57,0x69,0x81,0x51,0xd7,0x9e, +0xe7,0x2e,0x1c,0x46,0xe1,0x56,0x82,0x0e,0xc3,0xe0,0x00,0xb5, +0x33,0x51,0x9f,0x4d,0x35,0x97,0xa3,0xf0,0xbc,0x3d,0x3d,0xbd, +0x5e,0x05,0x96,0x8c,0xcb,0x4c,0x59,0xa9,0xa9,0x5f,0x10,0xf4, +0x38,0x0f,0x1e,0xb4,0xa9,0x9b,0x86,0xc0,0x5b,0x5c,0x78,0x41, +0x98,0xdc,0x35,0x5e,0x6b,0x0a,0xa2,0x36,0x6d,0xaa,0xf7,0x10, +0x6c,0x62,0x87,0xcc,0x89,0x15,0x38,0xb5,0x52,0xff,0xa2,0x60, +0x05,0xfe,0xad,0x52,0x53,0xe7,0xd2,0xa6,0x3a,0xd1,0xa6,0xbe, +0xa5,0x4d,0xf5,0xb7,0x64,0xa1,0x18,0x27,0x92,0xce,0x71,0x3b, +0x33,0x56,0x08,0x90,0xb6,0x85,0xba,0xbb,0xc6,0x1f,0x99,0x42, +0x3d,0xba,0xe2,0x15,0x93,0xb7,0x4a,0xdd,0x78,0x9f,0xd1,0x01, +0x57,0xe9,0x44,0x8f,0x22,0xb8,0xb2,0xf0,0x04,0x2d,0x48,0x6d, +0x5b,0x51,0x57,0x7e,0x8f,0x71,0x21,0x1f,0x68,0xea,0x6d,0xee, +0x62,0xc9,0x89,0xed,0xf0,0x09,0x29,0xb3,0x2f,0x37,0xc8,0xb6, +0xeb,0x2c,0xe6,0x43,0x1a,0xdd,0x07,0x3c,0x1a,0x38,0xf9,0xe1, +0xb1,0x4e,0x62,0x2e,0x7c,0xd3,0xc1,0xb6,0x2b,0x98,0x0b,0xeb, +0x3a,0x58,0x31,0x7a,0x2e,0xc1,0x9f,0x70,0x51,0xcf,0x6b,0x08, +0x9b,0xd5,0xcd,0x08,0x56,0xb0,0x88,0xe0,0x6f,0xb8,0xa8,0xfb, +0x35,0x1c,0x9a,0xd5,0xc3,0xe0,0x81,0x51,0x92,0x1f,0x5a,0xea, +0x95,0xeb,0xdd,0x50,0xcc,0x07,0x17,0xba,0x57,0xfa,0x65,0x70, +0x62,0xb8,0x9b,0xf4,0xde,0xde,0x3c,0xaf,0xfa,0x12,0xe9,0xbd, +0x72,0xbf,0x2c,0x6e,0xcc,0x00,0x55,0x88,0xb8,0x63,0x50,0x4f, +0x1f,0xdf,0xe2,0x42,0x06,0xa7,0x1f,0x46,0xb2,0x1b,0xa7,0x28, +0x77,0xd9,0xb7,0xff,0x91,0xf5,0x34,0xfe,0x47,0x45,0xca,0x80, +0x82,0x19,0x97,0xa3,0x2e,0x47,0xdd,0x8e,0x9d,0xa5,0x40,0x46, +0x21,0x05,0x56,0x66,0xbc,0xcc,0x3f,0xdc,0xce,0x1b,0x87,0x6f, +0x88,0x5c,0x1b,0xc5,0xbd,0x02,0xaf,0x36,0xf4,0xfa,0x0e,0xf2, +0xd0,0x82,0xd5,0x2d,0x3c,0x30,0xa8,0x0c,0xc6,0xcc,0xb9,0xe4, +0xf4,0x1a,0x95,0x0b,0xac,0x71,0x9a,0xdc,0x7a,0x0a,0x15,0xbc, +0x0e,0xc7,0x15,0xa9,0x74,0xb2,0xb7,0x93,0xe0,0xc3,0xdc,0x9b, +0x85,0xfe,0x6d,0xfc,0x6e,0xbf,0x85,0x41,0x6a,0x91,0xdc,0x0f, +0x10,0x09,0xea,0x78,0xfc,0x06,0x0c,0xb3,0xe2,0x5f,0x5b,0x08, +0xea,0xde,0x00,0x5d,0xa6,0x6f,0x0b,0x8d,0x28,0xba,0x5b,0x58, +0x8c,0xb6,0x26,0x6b,0xe9,0x3c,0x9d,0x2c,0x3a,0x59,0x5c,0xa2, +0x24,0x6c,0x51,0x58,0x8b,0xba,0x0f,0x59,0x41,0x7d,0x2d,0x41, +0x83,0x87,0x60,0x40,0x19,0xc9,0x03,0x01,0xc8,0x4f,0xb0,0xb6, +0x13,0xd7,0xde,0x31,0x40,0xff,0x95,0x60,0x66,0x84,0x66,0x1b, +0x4c,0x05,0xdb,0x2e,0x4a,0x61,0xc1,0x9f,0xf8,0x2e,0xd2,0xc0, +0x0f,0x17,0x6c,0xa8,0x31,0xe5,0x7f,0x7f,0xfc,0xfd,0xeb,0xf4, +0x37,0xd4,0xa9,0x64,0xce,0xbe,0xbc,0x0c,0xa6,0xce,0xa8,0xee, +0xe5,0xf1,0xd3,0xdf,0x76,0xbd,0xf0,0xf9,0x95,0xc3,0x15,0xf8, +0x92,0xc0,0xe9,0x7e,0x3c,0xcd,0x60,0x1f,0xde,0x20,0x52,0x05, +0x07,0x69,0xdf,0xfa,0xd3,0xf2,0xd2,0xd5,0xc0,0x1d,0x4a,0x3a, +0x74,0xe2,0xd0,0x21,0x49,0x70,0x26,0xba,0x1d,0x26,0x36,0xe0, +0x44,0xd8,0x69,0x83,0x3b,0xf1,0x23,0x87,0xa7,0x4c,0xb8,0xa1, +0x93,0xb6,0xa9,0x71,0x89,0x13,0x3f,0xfc,0x5d,0x76,0x5b,0xe2, +0x55,0xee,0x0c,0x7a,0x36,0x33,0xa8,0xe3,0x49,0x84,0x30,0x33, +0xf1,0x71,0x57,0xa7,0xf0,0x89,0x50,0x65,0x26,0x86,0xb1,0xd8, +0x2a,0x98,0x91,0x0c,0xcf,0x4c,0xb3,0x44,0xf7,0xba,0x0c,0x3e, +0xaa,0x22,0xb8,0x63,0x7f,0x39,0x07,0x9a,0x47,0xc9,0x21,0xb7, +0x30,0xab,0xfd,0x6e,0xf5,0xfb,0xf9,0xf4,0xaa,0xb4,0xb6,0x84, +0x1a,0x0e,0x12,0x70,0x1d,0x11,0x95,0x06,0x05,0x25,0x8a,0xff, +0x42,0x54,0xd9,0x14,0xa9,0xe2,0x68,0x5d,0x96,0x74,0x9e,0xbc, +0x5c,0x54,0x30,0xa6,0xc1,0x81,0x93,0x8a,0x80,0xda,0xb3,0x98, +0x17,0x86,0x56,0x3b,0x71,0xba,0x72,0xb7,0x89,0xdc,0x0d,0x58, +0x96,0x0e,0x7e,0x50,0xa1,0x04,0x4b,0xc6,0x92,0x7b,0x58,0xf1, +0xbe,0x68,0x47,0x7a,0x61,0x3d,0x73,0xe6,0x94,0x14,0x11,0x9e, +0x6e,0xa8,0xaa,0x5f,0x7f,0x2d,0x32,0xf1,0xe0,0xe9,0xc8,0x70, +0xc5,0xc8,0x08,0xb9,0xe8,0x6e,0x98,0xd6,0x81,0xd3,0x9e,0x18, +0x53,0x4c,0x62,0x0e,0x9f,0x31,0xc1,0x06,0x56,0xfa,0xab,0x35, +0xcb,0xac,0xf8,0x4b,0x9d,0x17,0x6e,0xc4,0x5d,0xe4,0xce,0x30, +0xc2,0xa5,0x1a,0xd2,0x81,0x6b,0xa4,0x4f,0xcc,0x33,0x87,0xcf, +0xd9,0x20,0x63,0x6b,0xe3,0x99,0x3b,0x4a,0x6d,0xf8,0x87,0xdd, +0xa3,0x17,0xde,0xf5,0xd2,0xba,0x07,0xac,0xe2,0x98,0xb3,0x3b, +0x2f,0xea,0xdc,0x31,0x2c,0x6f,0xe5,0x57,0x9e,0xd7,0x1b,0x0c, +0x1a,0xa0,0xae,0x79,0x7c,0x11,0xa5,0xc0,0x0e,0x16,0x03,0x82, +0xa2,0x78,0x43,0x54,0x64,0x85,0x0c,0x38,0x46,0x44,0x87,0x17, +0x82,0x03,0x23,0x3a,0xe0,0x2c,0x22,0x38,0x2c,0x14,0x1d,0x18, +0xf9,0xb7,0xbb,0xc6,0xc2,0x49,0xdf,0xf8,0x4d,0x3c,0xc3,0x62, +0x51,0x38,0xae,0xd5,0xa2,0x0b,0xad,0xd3,0x52,0xee,0x3a,0xcc, +0x4b,0x03,0x2d,0x28,0x57,0x02,0x33,0x16,0x4e,0xe2,0x29,0x72, +0xe6,0xb4,0x74,0xa2,0xfa,0xe9,0x8a,0xea,0xda,0x35,0x0f,0xa3, +0xce,0x1e,0x3a,0x1e,0x1e,0xa5,0x78,0xf0,0xb0,0xd4,0x7e,0xf9, +0x0e,0x94,0xff,0xd1,0x78,0x19,0x2e,0x32,0x07,0xc2,0x04,0xed, +0xb2,0xd2,0x59,0xa5,0x5d,0x6e,0xcd,0xdf,0x19,0xe8,0xb8,0x9a, +0x70,0x99,0x8b,0xc3,0x88,0x5e,0xa9,0x58,0x4e,0x38,0x89,0x67, +0x52,0x76,0x74,0xea,0x3c,0xdf,0x5d,0xd6,0xc4,0xcf,0xbb,0x6e, +0x35,0x10,0x38,0xc2,0xc1,0xec,0x0e,0x5c,0x27,0x7d,0x73,0x8e, +0xd4,0xf3,0x40,0x2d,0x6b,0x83,0x05,0xea,0xa5,0xf6,0xfc,0xf3, +0x0b,0x2d,0xe7,0xd3,0xaf,0xd2,0x6f,0x1e,0xa6,0x4c,0xec,0x33, +0x9c,0x41,0x7a,0xb0,0xe6,0x6f,0x3d,0xec,0xc6,0x6d,0x70,0x58, +0x0f,0x0f,0xe3,0x12,0xe3,0xb1,0xe2,0x5e,0x7c,0x01,0x2a,0x34, +0x56,0x3d,0x89,0x23,0xa8,0x25,0xe5,0x61,0xc1,0x4a,0xa6,0x2b, +0x3b,0xa7,0x4b,0x65,0xac,0x43,0x8b,0x15,0xff,0x5e,0x47,0x0e, +0xe0,0x4a,0x3d,0x5c,0x84,0x13,0x71,0xe2,0x39,0x1b,0xfe,0xc6, +0x8d,0x9e,0x17,0xd5,0xbf,0x73,0x60,0xc6,0x44,0x2e,0x0f,0x5c, +0xe7,0xba,0xd9,0xf6,0x9c,0x65,0x9d,0x65,0x95,0x93,0x15,0xdf, +0xeb,0xd8,0x6e,0xdb,0x64,0x23,0x5b,0xb2,0x79,0xed,0x9c,0xad, +0x14,0xb1,0x83,0x0b,0x2c,0x83,0x89,0x60,0x52,0x05,0xa5,0x5c, +0x0b,0x46,0xb3,0x29,0x2d,0x67,0x5b,0xe2,0x5a,0x69,0x1c,0xea, +0x17,0xbd,0x0d,0x19,0xa1,0xa1,0x8c,0x8c,0x4f,0xbb,0x30,0x36, +0x8d,0xba,0x25,0x6f,0xa1,0x9a,0xb4,0x66,0xa5,0x53,0xc4,0x15, +0xa9,0x89,0x47,0x70,0x93,0x54,0xe8,0x16,0x9e,0xc3,0x7e,0xf2, +0x6c,0xf7,0xd3,0x35,0x57,0xd7,0x36,0x35,0xf3,0xdb,0xef,0x2d, +0x7f,0xb4,0xfa,0x02,0x27,0x7e,0x7b,0x8c,0x18,0xaf,0xdc,0xba, +0x1d,0x3f,0xd8,0xd5,0x60,0xc1,0xbf,0xb9,0xf4,0xf8,0x51,0xdf, +0x0f,0x9c,0xf0,0x35,0x2a,0x12,0xdc,0x80,0xb3,0xd1,0x4d,0x0b, +0x87,0x3d,0xd2,0xf4,0x78,0x18,0xaa,0x84,0xd0,0x2b,0xb0,0x1d, +0x96,0x72,0x78,0x0c,0xad,0x89,0xd6,0x5c,0x66,0x3f,0xde,0xd7, +0x87,0xeb,0xac,0x07,0x4e,0x91,0x80,0xb4,0x8f,0x55,0x3e,0xfd, +0x54,0x64,0x1b,0xcc,0x7e,0x52,0x09,0x6b,0x38,0xe8,0x60,0x8e, +0x6f,0x39,0x6a,0x71,0x70,0x0f,0x67,0x1b,0x19,0x10,0xb1,0x7d, +0x3a,0xce,0x64,0x52,0x69,0x24,0x57,0x60,0x40,0xae,0xa6,0xe8, +0x7a,0x9a,0x4a,0x52,0x6f,0xec,0x00,0x4c,0x55,0xc2,0xbf,0x25, +0xd5,0xbd,0xeb,0x60,0x47,0x9a,0xa5,0x55,0x2b,0x74,0x6a,0x89, +0x3d,0xb8,0x8d,0x4d,0xd1,0x93,0x13,0xd7,0xd0,0x1e,0xec,0x45, +0x39,0xcd,0x65,0xf8,0xf1,0xa6,0x6a,0x6b,0xfe,0x4a,0x73,0x4f, +0x57,0xfd,0x79,0x0e,0x9c,0x99,0xfd,0xbb,0xbc,0xf4,0x6c,0x4d, +0xf7,0x54,0x5b,0x55,0xda,0x17,0xed,0x71,0xe4,0x5b,0x3d,0x9a, +0x3d,0x6a,0x5d,0x77,0x6b,0xaf,0xb4,0xc0,0x09,0xae,0x05,0xd4, +0xcf,0x1f,0xbc,0x05,0xab,0x60,0x61,0x25,0xd8,0x71,0x4d,0x74, +0x88,0x32,0xaa,0x53,0xeb,0x12,0xcf,0x71,0x10,0xd9,0x27,0x7a, +0x53,0xca,0x51,0x53,0x45,0xc4,0xe9,0x17,0x84,0xe9,0xec,0xc3, +0x71,0x9e,0x34,0xe9,0x9e,0xd3,0xac,0xdc,0x7a,0xbe,0x98,0x77, +0xb9,0x69,0x7d,0xc9,0xae,0x9b,0x1b,0x37,0xa1,0x51,0x7c,0xe4, +0x72,0xf3,0x95,0x92,0xcb,0x86,0x52,0xcd,0x1c,0xeb,0xdd,0x3a, +0xba,0x9c,0x70,0x06,0xd6,0x92,0x02,0xed,0xdc,0xdd,0x69,0x1a, +0x17,0x53,0xf9,0x7d,0x37,0x02,0x46,0x7d,0x06,0x39,0xcc,0x0d, +0x23,0xa9,0xbb,0xce,0xea,0x9e,0xd9,0x32,0x72,0x96,0x8f,0xbe, +0x19,0x35,0xb2,0x7f,0x58,0xda,0x3e,0x10,0x18,0xd2,0x92,0x9e, +0xde,0xa4,0x22,0x28,0xe9,0x8a,0x33,0x71,0x33,0x9b,0x62,0x22, +0x27,0xfe,0x0a,0x2b,0xc8,0x70,0x7e,0x57,0x79,0x63,0x2d,0x07, +0x41,0x4c,0x90,0x95,0xb3,0xad,0x99,0x93,0x53,0x85,0x7d,0x91, +0x7d,0x9e,0xa3,0x3b,0x7f,0xce,0xbf,0xce,0xa7,0xd2,0x5b,0xd3, +0x69,0x83,0xe7,0xe2,0xa0,0x02,0x6b,0x1e,0x02,0x3a,0x60,0xe5, +0x9f,0x3d,0x74,0x90,0xab,0xf1,0x38,0x9b,0x95,0x97,0x5e,0x98, +0x5c,0xc8,0xc1,0xfe,0x4e,0x31,0xd4,0x0c,0x64,0x8c,0xb3,0xc6, +0x56,0xdd,0xd9,0x7b,0x38,0xe1,0x0a,0xf8,0x11,0xac,0x1f,0x82, +0x7a,0x16,0x77,0x88,0x0d,0xe4,0x0a,0xce,0x07,0x05,0x9c,0x00, +0xfe,0x3b,0x0b,0x3b,0xf8,0x05,0xa5,0x9b,0xab,0x75,0x1a,0x2f, +0x96,0x0e,0x55,0xf5,0x36,0xd9,0xd7,0xf2,0x32,0x5b,0x1d,0xe7, +0x9d,0x9e,0x76,0xb5,0xee,0x8d,0x3e,0xed,0x9c,0x20,0xdf,0x2d, +0x2e,0xff,0x4b,0x7b,0xb6,0xb8,0xc2,0x04,0xc6,0x99,0x35,0x9a, +0x28,0x6f,0x86,0x6b,0x9d,0x73,0x4c,0xf8,0xbb,0x99,0xd7,0xf3, +0x47,0x8a,0x39,0x9c,0xcc,0x3a,0x46,0x3b,0x44,0xdb,0xc5,0x24, +0x51,0x97,0xbd,0x25,0x0b,0xe6,0xe5,0x83,0x7c,0xe9,0xe1,0x2e, +0x7e,0x63,0xe8,0xaa,0xfd,0x4b,0xc2,0x28,0xed,0x61,0x87,0xca, +0x3a,0xab,0xeb,0xeb,0x39,0xf9,0xb7,0x3b,0xc7,0x9c,0x49,0xaf, +0x38,0x75,0x74,0xa7,0xa6,0x48,0x30,0x80,0xc5,0xcb,0xfb,0x70, +0x86,0x1e,0xca,0x4b,0x6a,0x33,0x57,0x60,0x66,0x26,0xac,0x85, +0x1b,0x4a,0x34,0xf0,0x41,0xc5,0x42,0x72,0xa0,0x28,0xa0,0xdc, +0xbf,0xd0,0x38,0x80,0xcf,0xf7,0xc9,0xf3,0x4c,0xf1,0xe3,0x84, +0x4e,0xec,0x21,0x1d,0x6a,0xf0,0x05,0xda,0x5f,0x81,0xc4,0x2e, +0x4a,0x85,0xb2,0xf3,0x72,0x2b,0x32,0x2b,0xf4,0xb2,0xf8,0x50, +0x27,0x1f,0x3b,0x7f,0x1f,0x4e,0x54,0x33,0x85,0x3d,0x3b,0x70, +0xab,0x39,0x6c,0xdd,0x8c,0x8e,0xe6,0xe0,0xb8,0x01,0xb7,0x9b, +0xc3,0x7c,0xc6,0x4b,0x6f,0xab,0x29,0x2a,0x6b,0x96,0xd0,0x39, +0x9e,0x75,0xf9,0xee,0x40,0xda,0x63,0x6a,0x82,0x61,0x7d,0x10, +0x4b,0x01,0x4b,0x6c,0x1f,0x84,0xc5,0x33,0xe9,0xaa,0xcf,0x34, +0x61,0xf6,0xae,0xc2,0x1e,0x1e,0xe7,0x5c,0xdc,0xd6,0xed,0xd5, +0xcf,0x81,0x1a,0x7c,0xc9,0x50,0x0a,0x7f,0x9c,0xec,0xc0,0x99, +0x57,0x24,0x68,0x33,0x89,0x6c,0xc6,0x99,0xb7,0x58,0xf8,0x79, +0x33,0xc1,0x79,0xb7,0x60,0x1e,0x83,0x3f,0xe3,0x17,0x04,0x66, +0x6e,0x90,0xa4,0xc6,0xcc,0xef,0x11,0x98,0xb7,0x01,0xe7,0xbd, +0xab,0xf0,0xd3,0x46,0x60,0xc1,0xcf,0x1d,0xf0,0xe1,0x69,0xd8, +0xc5,0xc1,0xb7,0x58,0x4f,0xdf,0x7e,0x2f,0x0d,0xdd,0x98,0x95, +0x49,0xe3,0x7f,0x0d,0x74,0xf5,0x89,0x1b,0x7f,0xd1,0x5a,0x24, +0x2e,0x36,0x82,0x11,0xf6,0x18,0x7e,0xeb,0xba,0x0a,0x67,0x2c, +0xe3,0x32,0xa0,0x8e,0xb8,0xed,0xb4,0xd1,0x5b,0x6f,0xd4,0x60, +0xcb,0x3f,0x1c,0xea,0xbe,0x5c,0xfe,0x1d,0x27,0xb8,0x44,0x91, +0x51,0x83,0x11,0x8d,0xae,0x2d,0xad,0xd5,0xbc,0xec,0xee,0x8e, +0xab,0xba,0x3d,0x1c,0x0d,0xc3,0xe3,0x64,0x68,0xcf,0x05,0x8b, +0x6e,0xf3,0x86,0x26,0xde,0xb0,0x5b,0xaf,0x45,0xb7,0x9e,0xb3, +0xc0,0x11,0x62,0x13,0x71,0xb6,0x81,0x42,0x34,0x6d,0x0c,0x66, +0x55,0x8b,0x02,0x1e,0x28,0x43,0x05,0x45,0x1c,0x52,0x39,0xb5, +0x09,0xac,0x6e,0x8e,0x1c,0x7e,0xcd,0xf6,0x83,0x27,0x39,0xaf, +0x31,0xb0,0xbe,0xf1,0xdb,0xee,0x0a,0xde,0xf2,0x27,0xa3,0xdb, +0xba,0xd7,0xa4,0xa5,0x5b,0x49,0xae,0xdc,0x6d,0x7e,0x5e,0xf4, +0xc0,0x38,0x97,0xf7,0xdb,0x6c,0xf3,0xad,0xa6,0xa4,0x11,0xfd, +0x93,0x74,0x0b,0x65,0x66,0xc7,0xf3,0x81,0xfc,0xc7,0x5c,0x3c, +0xba,0xf4,0x83,0x4b,0x3c,0x93,0xbf,0xe6,0x85,0x01,0xcc,0x32, +0xcb,0xa3,0xa3,0xf4,0x79,0xe3,0xaa,0x76,0xdb,0x21,0x4e,0xaa, +0x7e,0x55,0x0e,0x9a,0x86,0xa8,0x89,0xf9,0xa6,0x70,0x88,0xb1, +0xd7,0x5b,0x67,0x81,0xd3,0x6c,0xb9,0xb9,0x62,0x19,0x79,0xbb, +0xc8,0xe0,0x9f,0x45,0xec,0xd8,0x86,0xb7,0xb3,0x88,0x8f,0x9d, +0x9b,0x83,0x83,0x74,0x33,0xa5,0xbe,0xba,0xa6,0xb9,0xb8,0x89, +0xc3,0xdf,0x97,0x11,0xcf,0x26,0xd7,0x06,0x97,0x6a,0x07,0x37, +0xbe,0xc6,0xa9,0xc2,0xa9,0xcc,0x8e,0xc3,0x58,0x5f,0x92,0x6a, +0x96,0xaa,0x1e,0xaf,0xdd,0x95,0xc1,0x1f,0x1a,0x0e,0xbd,0x76, +0xa0,0x93,0x43,0x73,0xbc,0x4a,0xf2,0x9e,0x25,0xbe,0x3a,0xf5, +0xb7,0xc9,0x19,0xfe,0xd8,0xac,0xa8,0xc5,0xfe,0xab,0x39,0x61, +0xa3,0x27,0x49,0xcc,0x3e,0x9b,0x7d,0x36,0xc7,0x3c,0x83,0xf7, +0x5e,0x63,0xb5,0x43,0x4d,0xbf,0xc2,0x86,0x6f,0xa9,0xa9,0x6d, +0x2c,0x6b,0xe7,0x60,0x32,0x13,0x6e,0x12,0x6c,0xe5,0x6d,0xbb, +0xb7,0xd0,0x2f,0xd7,0x37,0xcb,0xcd,0x91,0x2f,0x0c,0x2e,0x0c, +0x28,0xde,0x6b,0x6b,0x6e,0x68,0xb7,0xc5,0xb9,0xcc,0x9c,0x07, +0xb5,0x67,0x3f,0xc1,0xe7,0x15,0xef,0x6f,0x9d,0x9c,0xc0,0xc3, +0x04,0x36,0xfc,0xd0,0xb5,0xfc,0xae,0x91,0x2a,0x2e,0x43,0xef, +0x6d,0xa6,0x10,0x82,0xf2,0x7d,0x20,0xff,0xaa,0x8b,0xc5,0x24, +0xd8,0x40,0x7e,0xc3,0x0d,0x0b,0xa8,0x9b,0x31,0xaf,0x93,0xce, +0x21,0x9e,0xec,0xc1,0x93,0x77,0xc1,0x06,0x1e,0xa0,0xcd,0x4d, +0x88,0xea,0xc1,0xa8,0xc7,0x86,0xab,0x31,0x54,0x06,0xa1,0x6a, +0x68,0x86,0x0f,0xc0,0x4c,0x15,0x8f,0xca,0xe0,0x28,0x4e,0x62, +0xc5,0x75,0x63,0x2b,0x89,0x6d,0xa3,0x49,0xb3,0x69,0x95,0xbb, +0x3d,0xdf,0xeb,0xd4,0xec,0xd0,0x6a,0x43,0xc9,0xaf,0x1d,0xf1, +0x19,0xb4,0xbd,0x6e,0xd3,0x6f,0xed,0xc5,0x37,0x19,0x35,0x69, +0x94,0x6a,0x49,0xe5,0x65,0x15,0x88,0x43,0x93,0x7e,0x97,0xac, +0xd6,0xcd,0x9e,0xef,0x74,0xec,0xb5,0x68,0xb6,0xe2,0x04,0x77, +0x58,0x4e,0x96,0xe3,0xac,0x1f,0x28,0x67,0x5d,0x4e,0x7e,0x80, +0x05,0xcb,0x59,0xec,0x13,0xbd,0x08,0x7e,0x65,0x75,0xf9,0x35, +0xe5,0x6e,0x38,0xd3,0xfc,0x31,0xfa,0xb2,0xf3,0xbd,0xcc,0x67, +0x5a,0x2b,0xe7,0x19,0xfd,0xd5,0x56,0xdc,0x1c,0xf7,0x48,0x4a, +0x6f,0x3a,0xdd,0xbb,0x03,0x16,0x4e,0x17,0xe6,0x32,0x49,0xfd, +0x72,0x78,0x59,0xd8,0x4c,0x16,0xe3,0xac,0x9f,0xe9,0x45,0x16, +0x93,0x9f,0x61,0xc1,0x62,0x76,0x7c,0xbb,0xa3,0xe4,0x16,0x1d, +0xf1,0x63,0xbd,0xf9,0x2d,0xce,0xfc,0xa8,0x74,0x68,0xf4,0xdd, +0xad,0xea,0xb7,0x5f,0x43,0xb2,0x54,0xa0,0x6a,0xff,0x23,0x28, +0xeb,0xc5,0xb2,0x1f,0x29,0xff,0x4a,0x37,0x86,0xf4,0x35,0xe8, +0x83,0xbf,0x80,0x29,0x6b,0xbf,0x7a,0xe1,0x3a,0x9c,0xa1,0x5e, +0x4e,0x83,0xc8,0xa2,0x7b,0xbf,0x3e,0xca,0xfa,0x93,0xae,0x87, +0xe1,0x3e,0x18,0xa6,0x56,0xb3,0xe0,0xe5,0x1a,0x50,0x5e,0x57, +0xd9,0xc9,0xa3,0xe2,0xad,0x15,0x77,0x1d,0x1e,0x72,0xe2,0xaa, +0x28,0x72,0x30,0x25,0x22,0x36,0x22,0x22,0x2c,0x82,0x8f,0x3e, +0x95,0x74,0x31,0xfe,0xfc,0xa9,0x7b,0x8a,0x9d,0x03,0xf5,0xbd, +0x55,0x23,0x94,0x96,0xfb,0x98,0xed,0xb5,0xf5,0x74,0xe4,0x4e, +0xb3,0x52,0x51,0xab,0x7e,0x16,0x33,0xdc,0x69,0x08,0x20,0xa8, +0xa1,0xdc,0x62,0x7b,0x1f,0x26,0x34,0xfc,0x90,0xf7,0xa3,0xe2, +0xa9,0xf8,0xd3,0x27,0xce,0x1c,0xf9,0x0b,0xe7,0xf3,0x2d,0xe7, +0xe4,0xb0,0x47,0xa8,0x20,0xc7,0x70,0x42,0xe4,0x12,0x2f,0xd5, +0xae,0x00,0xbe,0xe2,0x87,0xf7,0xa5,0xac,0x84,0x40,0xd4,0x21, +0xb8,0xee,0x07,0x58,0xc7,0xf4,0x4b,0x23,0xb4,0x85,0x8e,0xd0, +0x3e,0x73,0xb2,0x10,0xd7,0xfd,0xfa,0x4e,0x0c,0x68,0xcb,0x42, +0x49,0xa4,0x0c,0xf2,0xc6,0x3c,0x48,0xb6,0x77,0xb6,0x67,0xa6, +0x7b,0x57,0x0e,0x1f,0x56,0xb8,0x3f,0x6f,0x7f,0x1e,0x07,0xaa, +0x1d,0x78,0x8e,0x49,0xca,0x4c,0xcc,0x8c,0xcf,0x94,0xa5,0xf3, +0x1e,0x9a,0xe6,0x7a,0x3b,0xcc,0x1b,0x1c,0xf9,0x1a,0x29,0x4b, +0xad,0x92,0x13,0x6c,0x3a,0x48,0x42,0xe6,0xd9,0xac,0xf8,0x4c, +0x93,0x14,0x3e,0xd0,0xd0,0xdd,0xd8,0xc6,0x92,0x73,0x50,0xc5, +0xd7,0x46,0x0c,0xba,0x1c,0x43,0xcb,0x4d,0xa8,0xae,0xdc,0xed, +0x22,0x77,0x1f,0xb6,0x9e,0x81,0x50,0xd0,0x51,0xaa,0x03,0x6d, +0xd6,0x29,0xa0,0xc8,0x37,0x3b,0x38,0x7b,0xaf,0x22,0x9a,0xd8, +0xc2,0x1e,0x23,0xd4,0xb4,0x05,0x4d,0x63,0x74,0xb1,0x06,0x17, +0x03,0xd4,0xb5,0x85,0xa5,0x8c,0xab,0xbd,0xb6,0x03,0x7e,0x62, +0x57,0x60,0xc1,0xc3,0xf4,0xae,0x0b,0xcd,0x59,0xa3,0x74,0xfc, +0xb6,0xf4,0x51,0xd0,0x38,0x0f,0x75,0xfa,0x60,0x6b,0x3c,0x93, +0xb7,0xfb,0xa2,0x35,0xac,0x36,0x2b,0xa0,0xc3,0xf8,0x55,0xd3, +0x96,0x3a,0xa7,0x06,0x0e,0xb6,0xfe,0x39,0xda,0xa2,0xf9,0x1b, +0x3a,0xf4,0x49,0x72,0x6e,0xe1,0x4c,0x5e,0x7e,0x76,0x61,0x56, +0x91,0x5d,0x36,0x0d,0x51,0x1d,0xe2,0xba,0x51,0xa6,0x20,0x34, +0x37,0x2f,0xab,0x20,0xbd,0x50,0xf1,0x67,0x26,0xdb,0x3b,0xcb, +0x33,0xcb,0xbd,0x2b,0x9b,0x3f,0x50,0xf4,0xbe,0x83,0xfa,0x1d, +0x8c,0x38,0x8c,0xd7,0x48,0x63,0x41,0x48,0x61,0x50,0xae,0x4f, +0xbe,0x74,0x1b,0x28,0xc8,0xcd,0xdf,0x63,0xaf,0x27,0x87,0x6a, +0xf3,0x49,0x1f,0xcc,0x33,0x62,0x6d,0x27,0x1a,0xe3,0xbc,0x5e, +0x16,0xde,0x18,0x13,0x5c,0xdc,0x0b,0x8b,0x19,0x7c,0x43,0xad, +0x7d,0x9e,0x01,0x75,0x54,0x60,0xa3,0x30,0x00,0x8b,0x0d,0x28, +0x10,0xf8,0xe0,0x7f,0x45,0x60,0xdb,0x25,0x11,0x58,0xbf,0xeb, +0x3e,0x03,0x96,0x21,0x7c,0xaa,0x77,0xb2,0x47,0xb2,0x9b,0xd9, +0x11,0xd3,0x68,0x59,0xcc,0xe8,0x83,0x2b,0xc0,0x0c,0x01,0x23, +0x89,0xc0,0xea,0xb8,0xec,0x76,0xd6,0x0d,0x2a,0x08,0x28,0x08, +0xc8,0xaf,0x1f,0xae,0xbe,0x5a,0x7c,0xc9,0x54,0x12,0x81,0xf5, +0xd8,0xed,0x66,0xbc,0x5f,0xd2,0xe0,0x48,0x75,0xb5,0xe5,0x7b, +0x2d,0x7b,0x64,0xed,0xfa,0xbe,0x8e,0xbe,0xce,0x7e,0x1e,0xee, +0xc7,0xdd,0x8e,0xb9,0x1f,0x8f,0x33,0xe2,0xfb,0x4f,0x0d,0xc6, +0x0e,0xbc,0x17,0x81,0x5d,0xc5,0x56,0xc5,0x56,0xc6,0x56,0x9c, +0xe1,0x84,0xe6,0x45,0x04,0xfe,0x40,0xc7,0xc7,0x70,0xa2,0x07, +0x4f,0xfc,0x64,0xf4,0x0d,0x1e,0x94,0xc1,0xc1,0xd5,0x68,0x85, +0x7f,0xc0,0x76,0xd6,0x69,0xcd,0xea,0xd5,0x28,0xbf,0x45,0x92, +0x17,0xe2,0x1f,0xdd,0x7b,0x94,0xfe,0x2b,0x1d,0xcf,0x0b,0x3d, +0x70,0x81,0xa2,0xb0,0x25,0x77,0x56,0xc3,0xd4,0xd5,0x55,0x92, +0x8a,0xe4,0xbd,0x8d,0xf7,0x5d,0x1f,0x70,0x1b,0xc1,0x86,0xe0, +0x9c,0x17,0x30,0x87,0xe9,0x59,0x4a,0x5e,0xc0,0x92,0xa5,0x2c, +0x3a,0x98,0x93,0x79,0x38,0xe7,0x0f,0x16,0x2c,0x14,0x60,0xc9, +0x3c,0x5c,0xc2,0x88,0x2a,0x32,0x92,0x6a,0x9c,0xa4,0x13,0xaf, +0xd7,0x99,0xc9,0x1f,0xee,0x3f,0x70,0x29,0xbc,0x43,0x92,0x17, +0x6f,0x25,0xf5,0x8f,0x72,0x7e,0x4d,0xf9,0xd5,0x34,0x81,0x8f, +0x5c,0x19,0xb8,0xca,0x71,0x1d,0x65,0x97,0x7d,0x42,0x11,0x49, +0xf0,0x4f,0xf0,0x39,0xeb,0xed,0x16,0xed,0x1c,0xe3,0x14,0x73, +0xe1,0x51,0xdf,0xcf,0x6d,0xbf,0x5a,0x95,0xf0,0xfe,0xb2,0xbd, +0x32,0x4f,0xb3,0xb0,0xcc,0x03,0x99,0xfb,0x33,0xab,0xba,0xcb, +0x47,0xf3,0x06,0xcd,0xf3,0xf9,0x10,0x23,0x5f,0x43,0x4f,0x0b, +0xcf,0x52,0xde,0xcd,0xb9,0xd9,0xb6,0xd6,0xbe,0xca,0x5a,0xd1, +0xdf,0xc9,0xc7,0x79,0xaf,0xdb,0x81,0x63,0x07,0x4e,0x1c,0x38, +0x1e,0x67,0xce,0x3f,0x8c,0xbf,0x91,0x74,0x25,0x39,0x76,0xdf, +0xe9,0x7d,0xa7,0x43,0x3b,0x32,0xf8,0x83,0xfd,0xfb,0x46,0x83, +0x7a,0x39,0xe1,0x03,0x4a,0x1d,0xc3,0x86,0xfc,0xae,0x07,0xb6, +0x59,0x07,0xf1,0x89,0x81,0x89,0x3e,0x89,0xde,0x7b,0x0e,0xdb, +0x45,0x5b,0x47,0x5f,0xbc,0x3f,0xf0,0xa2,0xeb,0x95,0x65,0x31, +0xef,0x63,0xe8,0x65,0xe8,0x2a,0x3b,0x90,0x1b,0x9a,0xbb,0x2f, +0xb7,0xba,0xab,0x6c,0x28,0xaf,0xcf,0x92,0xfe,0x9c,0xa9,0x8f, +0x89,0xa7,0x55,0x64,0x4a,0x44,0x72,0x64,0x92,0xab,0x33,0xdf, +0x6c,0xdd,0x6c,0x5a,0x69,0xea,0xef,0xea,0xeb,0xbe,0xd7,0x23, +0xea,0x38,0x65,0x16,0xc7,0xcf,0x58,0xf0,0x8f,0xcf,0xde,0x4b, +0xbc,0x94,0x12,0x17,0x7c,0x26,0x38,0x36,0x84,0x13,0xcf,0x09, +0x46,0x04,0x9f,0x99,0x74,0x8f,0x73,0x8c,0xd6,0x81,0x34,0x83, +0x9b,0x59,0x37,0xf3,0xae,0x16,0x29,0xa2,0x71,0xff,0xd8,0x28, +0xf5,0x7f,0x41,0xef,0xd5,0x0c,0x3f,0xc6,0x35,0xac,0xd9,0x44, +0x5c,0x8b,0x1f,0xc3,0x5a,0x56,0x10,0x45,0x86,0xc0,0x4e,0x03, +0x51,0x75,0x00,0x8c,0xe1,0x53,0x59,0x3f,0x64,0x18,0xe2,0x4a, +0x16,0xef,0xd6,0x90,0xf0,0xe3,0x11,0xc7,0x23,0x94,0xf1,0x43, +0x58,0x69,0x8c,0xce,0xb0,0x8c,0x09,0xd2,0xb1,0xb6,0x5f,0xef, +0x54,0x4c,0x43,0xee,0x67,0x83,0x17,0x9f,0xc2,0xd7,0x4a,0x30, +0xc3,0x90,0x15,0xbf,0x09,0x22,0xf4,0x8a,0xf3,0x19,0xc7,0x30, +0xa7,0xf0,0x3d,0x91,0x9c,0x24,0xec,0xa8,0x42,0x46,0x20,0xdb, +0xc8,0xd7,0x14,0xeb,0xcd,0xa1,0xde,0x18,0xc3,0xb0,0x04,0xc2, +0x0c,0xf0,0x9c,0x39,0x9c,0xfb,0xb6,0xef,0x29,0xb4,0x74,0x60, +0xcb,0x00,0x1c,0x84,0x12,0x3c,0xd8,0x0b,0x4d,0x1d,0xd8,0xd4, +0x54,0x36,0xf2,0x4e,0x74,0x77,0x44,0x57,0x0b,0xb3,0xa5,0x07, +0x49,0x74,0x57,0x8b,0xc5,0xfd,0x56,0xa4,0xd3,0xe9,0x7b,0xad, +0x46,0xab,0xda,0x06,0xde,0xbe,0x6d,0xeb,0x88,0x79,0x8d,0x74, +0x7a,0x24,0x9e,0xa0,0xfa,0x05,0x50,0x67,0x20,0x42,0x9b,0xe0, +0xce,0x0b,0x52,0xf1,0xe4,0x49,0xa2,0x09,0xc1,0xe5,0xe6,0x23, +0xc0,0xa8,0x80,0x11,0x5a,0x98,0x80,0x32,0xaa,0xb0,0xf8,0x91, +0xa1,0xdb,0x22,0x7b,0xe5,0x3c,0xfd,0x57,0x4d,0x4d,0xcd,0x67, +0x1f,0x50,0x77,0xba,0x36,0xa1,0x7d,0x2b,0xa8,0x49,0xd9,0xa2, +0x49,0xbd,0x72,0xe2,0x07,0xf0,0x82,0x68,0xa0,0xfa,0x55,0x16, +0xf6,0x2b,0xc0,0x4e,0x8d,0x77,0xf5,0x96,0x95,0x3b,0xa4,0x3c, +0xab,0x9e,0x3e,0xec,0xb9,0x07,0x09,0x70,0x07,0x13,0x6e,0x41, +0x67,0x1f,0x76,0x3e,0xd0,0x5b,0x87,0x4d,0x46,0xd0,0xb4,0x19, +0x4f,0xe2,0x1d,0x38,0xb9,0x01,0x5b,0x8d,0xa0,0x55,0x4a,0xc6, +0xea,0x17,0xfa,0x89,0xf9,0x2d,0xed,0xdb,0xc6,0x7d,0x96,0xce, +0x7c,0x9f,0xf1,0xd0,0xc6,0x76,0x35,0x0e,0x60,0x15,0x65,0x98, +0xf7,0x28,0xc3,0x84,0x84,0x0d,0x04,0xcd,0xee,0x51,0x24,0x2f, +0x2a,0x8b,0x7d,0xe4,0x3f,0xc9,0xa9,0x75,0xff,0xa6,0xb3,0xb2, +0xff,0x97,0x74,0xd6,0x4f,0xa8,0xbf,0x5f,0x85,0x06,0x4f,0x58, +0x38,0xa5,0x00,0x66,0xab,0xd0,0x4c,0x2a,0x3d,0x0e,0x49,0x92, +0x1d,0xed,0x79,0x0c,0xc7,0x7b,0xf0,0xb8,0x64,0x47,0xe1,0x32, +0x08,0x5f,0x8d,0x16,0xd4,0x8e,0xd4,0x59,0xe7,0x35,0x6b,0x56, +0xe3,0xa7,0xef,0xec,0xe8,0xcb,0xc7,0x77,0x1f,0xa5,0xfd,0xf2, +0x5f,0x76,0x74,0x7b,0x35,0x7c,0xf6,0xce,0x8e,0x26,0xbd,0xb7, +0x23,0x31,0x54,0xc8,0x27,0xc9,0x6b,0x3b,0x76,0x3d,0x56,0x2b, +0xef,0xe6,0x37,0x5e,0xb6,0xba,0x1a,0x74,0x85,0x53,0x67,0x02, +0xd4,0x6c,0x36,0xce,0xdf,0x56,0x26,0xe3,0x7f,0xb9,0x36,0xf0, +0x38,0xf5,0x39,0x07,0x1b,0xc6,0x0d,0x88,0x5d,0x84,0x75,0xa4, +0xc5,0x41,0x0e,0xda,0xe1,0xab,0x5e,0xfc,0x0a,0x3e,0x79,0xd1, +0x83,0x87,0x65,0xcf,0xf0,0x13,0xca,0x6e,0x60,0x09,0x9e,0x67, +0x65,0x07,0x8d,0x0f,0xc9,0x0e,0x27,0x52,0xcc,0x3f,0x25,0x03, +0xbe,0x2a,0xf9,0xb1,0x98,0xa2,0x08,0x41,0x83,0xe0,0xac,0x17, +0x30,0xeb,0xbd,0x99,0x2e,0xa2,0x66,0x6a,0x27,0x99,0xe9,0x2c, +0x6a,0xa6,0x66,0x0a,0xb0,0x68,0x1e,0x2e,0x62,0xf0,0x7f,0x50, +0x8f,0xa4,0xf7,0xa6,0x0c,0x26,0xf4,0x5a,0x25,0xf3,0x51,0xba, +0x91,0xc6,0xfb,0xcd,0x39,0x0c,0x83,0xb9,0x24,0xdf,0xa8,0x40, +0x35,0xd9,0xa0,0x23,0x9d,0x0f,0x1f,0xf4,0x7d,0x18,0xd0,0x4b, +0xed,0x74,0x3f,0x3c,0x23,0x39,0x4d,0x99,0x8d,0x69,0x14,0xbe, +0x57,0xc2,0xed,0x71,0x25,0xbc,0x4d,0x69,0x45,0xd8,0x9e,0x7d, +0x76,0xfe,0xd6,0x1c,0x0e,0x8b,0x0b,0x2e,0x75,0x8f,0xa9,0x98, +0x5c,0x14,0x16,0x30,0xf8,0xd5,0xfb,0x83,0xc2,0x49,0xe0,0xc8, +0xee,0x1a,0x57,0x27,0x10,0x36,0xa6,0x82,0x61,0x94,0xfe,0xae, +0x13,0x66,0x90,0x31,0x75,0x28,0xc2,0x53,0x4c,0x5d,0x61,0x55, +0x71,0x7e,0x29,0x57,0x4f,0xdb,0x9e,0x9c,0x92,0x9c,0x92,0x94, +0xaa,0x97,0xc9,0xab,0xaf,0x5b,0xa9,0x85,0xcb,0xb5,0x2a,0x2c, +0xf9,0xe2,0xe4,0xa2,0xe4,0xc2,0x14,0xee,0x5a,0x3d,0xa9,0xce, +0xad,0xc8,0x2f,0x2d,0xe0,0xa0,0x94,0xf1,0xf1,0x73,0xf5,0x77, +0x0a,0xe4,0x1c,0xec,0xe8,0x9a,0x39,0x4e,0xd7,0xcc,0xa0,0x06, +0xb9,0x0a,0xc9,0x1a,0x2c,0x5e,0x73,0xa0,0x20,0xf2,0x38,0x05, +0x91,0x83,0x0a,0x90,0xbc,0x19,0x93,0x19,0xf0,0xdb,0x48,0x9a, +0x1d,0xba,0x8c,0x6a,0x0c,0xbb,0x6a,0x79,0x97,0x4e,0xc3,0x41, +0xfb,0x0a,0x4e,0xfc,0xeb,0x28,0xf1,0x71,0x30,0x35,0x34,0x75, +0x6e,0xb6,0xe7,0xdb,0x6b,0x2e,0x8c,0x14,0x77,0x52,0xb7,0xfe, +0x0d,0x39,0xd4,0x70,0xb0,0x26,0xa2,0x42,0x3f,0x86,0x4f,0x72, +0x49,0x74,0x8e,0x73,0xe4,0xa0,0x29,0x9e,0x44,0xd6,0x86,0x36, +0xec,0x2b,0x35,0x38,0xc4,0xa7,0x7b,0xa4,0x39,0x25,0xec,0xe1, +0x44,0x16,0x9f,0x93,0x66,0xa1,0xcc,0x66,0x04,0x6e,0x8e,0x2f, +0xc2,0x9b,0xac,0xf0,0x12,0xf6,0x10,0xb1,0xec,0x9a,0x50,0xc6, +0x88,0x65,0xc8,0x10,0xa1,0x6c,0x8b,0x58,0xc6,0xc8,0x0b,0x5f, +0x0a,0xca,0x44,0xc8,0x83,0x0a,0xd4,0x64,0x72,0xf3,0x72,0x8a, +0xd2,0x4b,0xb9,0x2a,0x4c,0x66,0x13,0xd2,0xce,0xa6,0xc5,0xa7, +0x1b,0x27,0xf3,0x1e,0xbb,0x74,0x34,0xd4,0x4d,0x6a,0x1c,0xf9, +0xf4,0x64,0x39,0x9c,0x80,0x73,0xc9,0xe1,0xf4,0xa8,0xe3,0x91, +0x07,0xc3,0x23,0xa5,0xb3,0x0c,0x7f,0xf6,0xcc,0x05,0x43,0x23, +0x34,0xc4,0xa9,0x52,0x09,0xfb,0x08,0x24,0x4e,0x38,0x77,0x1d, +0x4e,0xad,0xb3,0xe0,0x47,0x5f,0x15,0xbc,0x8a,0x7d,0x57,0x8d, +0x94,0xba,0xca,0x7f,0xf5,0x74,0x47,0x71,0x69,0x75,0xbd,0x9c, +0xf0,0x85,0xb0,0x80,0x84,0x05,0x04,0xfa,0x05,0x06,0x72,0x18, +0xc4,0xe4,0xe5,0xe6,0xd0,0x08,0xc6,0x19,0x48,0x62,0x79,0x1a, +0x3b,0x50,0x83,0xa1,0x76,0x75,0x05,0xb4,0x76,0xb0,0x18,0x65, +0x43,0xb6,0xa0,0xc6,0x8d,0x77,0x86,0xa6,0xb5,0x85,0x52,0x60, +0x3c,0x61,0x4c,0xf6,0xb9,0xb9,0xd9,0x38,0x79,0xb6,0x52,0x00, +0x59,0x59,0xdd,0x99,0x59,0xcf,0x81,0x70,0x94,0x94,0x3a,0x17, +0x39,0x65,0x39,0x75,0x65,0xf1,0x41,0x8d,0x5e,0xb5,0x3e,0x65, +0xdc,0x82,0x39,0x24,0xaa,0x32,0xb4,0x61,0x7f,0x91,0xe9,0x41, +0x1a,0xa5,0xd2,0x9c,0xce,0xba,0x73,0xb3,0x62,0xc9,0xd1,0xf2, +0xc8,0xe6,0xa8,0x42,0xe3,0x23,0xfc,0x59,0xef,0xb3,0xb6,0xa7, +0xbd,0xb8,0x99,0xf8,0x3b,0x69,0x13,0xa6,0x5a,0x0e,0xc2,0x63, +0x31,0x1a,0x1f,0xb3,0x82,0x16,0x78,0x11,0x71,0xea,0x15,0x61, +0x2a,0x23,0x4e,0x45,0x96,0x08,0x53,0xb7,0x8a,0x52,0x62,0xe6, +0x10,0x1c,0x25,0x91,0xa9,0x11,0xa7,0x22,0x22,0x0f,0x84,0x53, +0x24,0x93,0x76,0x3e,0x61,0x28,0xf6,0xa6,0xe2,0xe8,0x60,0x5b, +0x4f,0xd3,0xe8,0x9e,0x46,0xde,0xd9,0xd8,0xc5,0xc6,0xde,0x81, +0x2b,0x64,0xa1,0x45,0x07,0xa9,0xb3,0x4c,0x77,0x42,0x79,0x5c, +0x8c,0xbb,0x94,0xdb,0xac,0x9e,0xbe,0x69,0x7d,0x52,0x42,0x81, +0x4c,0x5c,0xec,0x89,0xd8,0x23,0xbf,0xe1,0x1c,0xbe,0xbd,0x45, +0x2e,0x71,0xec,0x23,0x22,0xd4,0x0f,0x88,0xf5,0x0c,0x7e,0x87, +0xb3,0xc8,0x51,0x9c,0x10,0xfe,0x8d,0xeb,0x86,0x1e,0x3f,0xbe, +0xf6,0xa7,0xd4,0x57,0xa7,0xa4,0xfb,0x77,0x1d,0x32,0x82,0x33, +0x58,0x0c,0xf6,0x45,0xc5,0x25,0xf8,0xb9,0x72,0xbb,0xdd,0x8d, +0xdf,0x6b,0xe1,0xc3,0x34,0x98,0xa7,0x08,0xa0,0x3a,0x22,0x7c, +0xcd,0x68,0x49,0xea,0x3d,0xaf,0x98,0x53,0xd5,0x27,0xeb,0x1a, +0x94,0x1e,0xc0,0xef,0xac,0xfc,0xd8,0x61,0x49,0x5b,0x68,0xb8, +0xed,0xbb,0x4a,0x49,0x5b,0xa8,0x96,0x4d,0x2d,0x4a,0x79,0xaf, +0x2d,0xe4,0xb4,0x70,0xd7,0x92,0x39,0x9b,0xaa,0xac,0xf9,0xba, +0xd2,0xea,0x8a,0x8a,0x9a,0x2a,0xab,0x73,0x36,0x1d,0x0e,0x9a, +0x96,0xeb,0x6c,0x66,0xdb,0x4b,0x14,0xe8,0xa3,0x96,0x67,0xed, +0xdf,0xf5,0x5e,0x32,0xbf,0xfd,0x5e,0x33,0x7d,0x6d,0xbd,0xba, +0xa4,0x99,0x3e,0x3e,0x1f,0x2e,0x12,0x11,0xa1,0x4e,0x40,0xd6, +0x10,0xa9,0xb7,0xa4,0x04,0x08,0xd4,0x18,0x38,0xbe,0x81,0xc4, +0x49,0x9a,0xdc,0xf1,0x1c,0x9c,0x7c,0xa7,0xa6,0xae,0x6f,0x2a, +0x6b,0xb2,0x69,0x75,0xee,0xe2,0xf0,0x38,0x86,0xff,0xe7,0x63, +0xa8,0x46,0xbf,0x02,0x6a,0x14,0xd0,0xaa,0x31,0xc2,0x6c,0xbc, +0x4c,0x2e,0x40,0xf1,0x3b,0x51,0xa1,0x99,0x92,0xa8,0xd0,0xb3, +0xf7,0xa2,0x42,0xc5,0xe0,0xca,0x62,0x29,0x25,0x4d,0x15,0x96, +0x95,0x3a,0x79,0xb2,0xce,0x6a,0x3e,0xb0,0xcb,0x71,0xd4,0x93, +0xf2,0x81,0x43,0xb8,0x8f,0x74,0x74,0xb5,0xdd,0x2f,0x1c,0x35, +0x2d,0xe1,0x83,0x65,0x26,0xab,0x6d,0x6c,0x29,0x2b,0x8e,0x79, +0xa7,0x9d,0xd4,0x76,0xe5,0x9d,0x24,0x7c,0xd5,0xff,0xab,0x9d, +0xe4,0x4c,0xfb,0x37,0xef,0x3f,0xfd,0x2b,0xab,0x79,0x2f,0x09, +0xaf,0x65,0xb9,0xc1,0x66,0x8e,0xa4,0x9d,0x04,0x13,0x5a,0x9e, +0xb4,0x5f,0xe9,0x19,0x35,0xbf,0x65,0xf5,0xec,0x5f,0x4d,0xf8, +0x73,0xba,0x4d,0x9c,0xe8,0x8e,0x32,0x02,0x9f,0xf6,0xe2,0xa7, +0xb0,0xf2,0x25,0xb4,0xe0,0x39,0x6c,0x01,0x65,0x51,0x87,0xf1, +0x3d,0xec,0x7b,0xc4,0xe7,0x08,0x27,0x7c,0x62,0x24,0x2a,0xb0, +0xfb,0x62,0x42,0x8e,0x86,0xc4,0x48,0xbe,0x49,0xb9,0x04,0xa6, +0x94,0xc2,0xc4,0xa6,0xe8,0x1e,0xde,0xee,0x80,0x5d,0xb8,0x4d, +0x38,0xd7,0x30,0xb6,0x84,0xa0,0x36,0xee,0xa0,0x98,0x4f,0x50, +0x93,0x54,0x96,0x24,0xa9,0x72,0x0e,0x8e,0x4a,0x2a,0x4b,0x74, +0x50,0x4c,0x9a,0x6c,0x5b,0x5d,0xba,0xb8,0x7d,0xe3,0x07,0x68, +0xdf,0xf3,0xb4,0x87,0x68,0xdf,0x95,0xa4,0xbe,0x3f,0x78,0xdf, +0xf7,0x3c,0x49,0x50,0x49,0x70,0x18,0x5b,0x48,0x50,0x67,0x88, +0x82,0xbf,0xdf,0x70,0xf1,0x20,0x98,0x8b,0x0b,0x7b,0x84,0xc9, +0xed,0xe3,0x35,0x16,0x20,0xca,0x44,0x45,0x34,0x1f,0x84,0xc5, +0xec,0xa0,0x3d,0xb1,0x01,0x97,0x66,0x16,0x76,0x29,0xd8,0x40, +0x60,0xb3,0xb4,0xe7,0xab,0x48,0x9a,0xd1,0xc5,0x86,0x15,0x50, +0xa1,0x19,0x03,0xe8,0xf3,0x54,0x1c,0x24,0x6a,0x99,0xbb,0xf2, +0x0c,0x8b,0xce,0xd7,0xb7,0x36,0x53,0xda,0x53,0x8f,0xf1,0x6c, +0x62,0x6a,0x7c,0x4a,0x7c,0xaa,0x65,0x1a,0xef,0x6d,0xa8,0xa7, +0xb5,0xc1,0xbc,0xc2,0x91,0x2f,0xca,0x28,0xcc,0xce,0xcf,0x29, +0xde,0x5b,0xee,0x57,0x15,0xa0,0xef,0xbd,0xdd,0x5f,0x35,0x34, +0xc7,0x9c,0x6f,0xa3,0x06,0xbd,0x77,0xa0,0x1a,0x52,0x5d,0x06, +0xc1,0x87,0x4d,0x8b,0x4e,0x8b,0x49,0x8f,0xe1,0xc6,0xa7,0x46, +0x13,0xf8,0xbc,0x15,0x3f,0x7f,0x08,0xd3,0x41,0x13,0x9f,0xa2, +0x26,0xcc,0xc1,0xd3,0x8c,0x6f,0x8c,0xef,0x51,0x9f,0x18,0x0e, +0x7c,0x8c,0x30,0x88,0xf5,0x3f,0xea,0x77,0xcc,0xff,0x58,0x02, +0x5d,0x40,0x4b,0xd3,0x60,0x69,0x3e,0x7c,0x58,0x10,0xdd,0xc5, +0x5b,0x1f,0x34,0x89,0x34,0x8c,0xe2,0xee,0x08,0x93,0xc9,0xb7, +0xe8,0xff,0x94,0x15,0x34,0xbd,0xc9,0x99,0xd8,0xd3,0x67,0x62, +0x63,0x39,0xf0,0x64,0xbc,0x5c,0x1d,0xdd,0xcd,0xbd,0x1c,0x0a, +0x5c,0x8a,0x3d,0xca,0x39,0x35,0xf4,0x26,0x57,0xb3,0x87,0x0b, +0x7a,0x4b,0x7a,0xbc,0xcf,0xfb,0x8d,0x06,0x73,0x78,0x19,0x95, +0x29,0x7a,0x4f,0x5d,0x4e,0x07,0xa6,0x9e,0x0e,0x4c,0xf0,0xb0, +0xfb,0xc5,0xbd,0xed,0xfa,0x81,0x7c,0x99,0x71,0xa9,0x4e,0xb6, +0x2e,0x07,0x27,0x42,0x48,0x4d,0x6f,0xf5,0x95,0xa2,0x8b,0xba, +0x39,0xbc,0xcf,0x0e,0x3b,0x55,0x5b,0x1d,0x4e,0xbc,0x8f,0xf6, +0xc3,0x30,0x7f,0xcc,0x0f,0xe7,0x0f,0x83,0x3d,0x33,0x3e,0xf1, +0x1c,0xf1,0xeb,0x76,0xed,0x73,0x6f,0x34,0xf6,0xe6,0x2b,0xad, +0xcb,0xcc,0x0b,0x4c,0x68,0x34,0xa1,0x4e,0x45,0x6b,0x1e,0x13, +0x7e,0x22,0x5c,0x02,0x24,0xfd,0x7a,0xd0,0xc9,0xf8,0xa0,0x16, +0x32,0x1b,0xd0,0x73,0x4b,0x09,0x9d,0xda,0x80,0xdb,0xa0,0xfc, +0x4b,0x29,0x04,0x70,0x70,0xc5,0x96,0xd1,0x3c,0xa2,0x1e,0x61, +0xa8,0xac,0x17,0xee,0x19,0xbc,0x74,0x3a,0x85,0xbf,0x29,0x7a, +0x72,0xa0,0xc2,0xc0,0xc4,0xa1,0xfc,0x67,0x39,0x2a,0xe9,0xa3, +0x71,0x2f,0x1e,0x29,0xdd,0x13,0x27,0xb1,0x27,0x53,0x4f,0xa4, +0xa5,0x29,0xc9,0x8f,0xfd,0x35,0x36,0x81,0x3c,0x68,0x5d,0x07, +0x13,0xf0,0xe5,0xb0,0x81,0x0e,0xde,0xc1,0x09,0xeb,0xac,0x1e, +0x20,0x03,0x77,0x8c,0xf1,0x15,0xae,0x86,0x5e,0x26,0x84,0x7a, +0x38,0x3f,0x3f,0x0e,0xeb,0x4c,0x60,0x3f,0xe3,0xea,0xe9,0xe8, +0x69,0xef,0x09,0x59,0xa6,0xfc,0x02,0x1f,0x9c,0x1a,0x86,0xab, +0x8e,0xa4,0xc9,0x78,0x30,0x8b,0x87,0xe5,0x05,0x30,0xb9,0x15, +0x3e,0xf6,0x87,0x29,0x7b,0x81,0xd9,0x5b,0xd8,0xc1,0xcf,0xcd, +0x9f,0x9b,0xb7,0x30,0xe7,0x7c,0x65,0x7b,0x63,0x6d,0x17,0x07, +0xeb,0xbb,0xc5,0x24,0x26,0xb7,0x20,0x3b,0x3f,0x33,0x9f,0x13, +0xe6,0xc1,0x6a,0x71,0x42,0x2f,0xbc,0x64,0xc4,0x39,0xb0,0x9a, +0x60,0xd6,0x08,0x64,0x31,0xf0,0x93,0x16,0xc1,0xaa,0x11,0xa8, +0x62,0xc4,0x57,0xf8,0x11,0x81,0xac,0x1d,0x48,0xdf,0xbc,0x75, +0x85,0x40,0xd5,0x0e,0xac,0x62,0x0c,0x70,0x3e,0xd9,0x85,0x8d, +0x97,0xd8,0xb1,0x99,0xbb,0x08,0x0e,0x5c,0x82,0x01,0x06,0x6b, +0xf1,0x35,0x59,0x99,0xb9,0x2e,0x5d,0x23,0xb9,0x30,0xa7,0x20, +0x37,0x8f,0x12,0x85,0xbb,0x8c,0x83,0x95,0xa9,0xb3,0xe6,0x5e, +0x1a,0x2f,0x87,0xc7,0xee,0x91,0x1d,0x9b,0xa8,0xff,0x3b,0xc9, +0xe0,0xc9,0xfd,0xb8,0x56,0x5b,0xda,0x91,0x37,0x91,0xbb,0x0e, +0x73,0xd3,0x41,0x1f,0xe2,0x95,0x40,0x36,0x96,0xd9,0x2b,0x2a, +0xb2,0xf8,0x8d,0x78,0x9f,0x14,0x78,0x16,0xb8,0x14,0x38,0x59, +0x84,0xe9,0xed,0xd7,0x0a,0xa3,0x93,0x4c,0xa1,0xcf,0x2b,0x9c, +0x76,0x5b,0x77,0x13,0x4e,0x15,0x6f,0xb0,0xde,0x47,0xbc,0xa2, +0xbd,0x63,0xa4,0x72,0x6c,0x53,0x72,0x61,0x6a,0xc5,0xe3,0xa2, +0x34,0xbf,0x54,0xbf,0x14,0xbf,0xf6,0x52,0xde,0xfe,0x9e,0xd1, +0x63,0x8b,0xf3,0x14,0xdd,0xc2,0x52,0xd2,0x7d,0xbd,0xe5,0x41, +0xee,0x55,0xee,0x1c,0x0e,0x8e,0x9b,0x0c,0x8c,0xcd,0x02,0x2d, +0x36,0x58,0xd7,0x7a,0x83,0xf6,0x26,0xee,0x8e,0xe6,0xf0,0x0e, +0x35,0x25,0x9d,0xbd,0x3e,0x86,0xca,0x3a,0x4c,0x8a,0x91,0xdc, +0x35,0xe6,0x5e,0x43,0xe7,0xe3,0xe7,0x46,0x57,0xd4,0x87,0x55, +0x70,0xe4,0x09,0x41,0xab,0x5f,0xc0,0x8a,0xa1,0x44,0x60,0x2e, +0x01,0xab,0x59,0x68,0x25,0xc9,0x55,0x0a,0xf6,0x04,0x26,0xc3, +0x9b,0x1e,0x7c,0x03,0xd4,0x32,0x7a,0xc6,0x3b,0x65,0xc2,0x04, +0xa4,0x61,0x50,0x06,0xcf,0x71,0xb2,0xa8,0x62,0x34,0xf6,0xb6, +0x8f,0xc5,0x00,0xf4,0xa3,0x0b,0x5c,0x0b,0x3f,0xc7,0xfc,0xf7, +0x4f,0x29,0x86,0x90,0xc0,0x46,0xa8,0x99,0xed,0xc6,0xcd,0x5a, +0x52,0xc6,0x84,0xf1,0x8d,0xe1,0x47,0xc9,0x7f,0x72,0x34,0xe0, +0x27,0x8c,0xd0,0x2e,0x1d,0xec,0xa7,0x97,0xd6,0xc8,0x23,0x96, +0x0f,0x76,0xfd,0x66,0x39,0x68,0xeb,0xc1,0x17,0xb9,0x55,0x58, +0x96,0x5b,0x58,0x84,0x18,0x85,0x18,0xef,0xe7,0x20,0x97,0xba, +0xc9,0xf5,0x38,0xe7,0x57,0xdd,0x85,0x38,0x73,0xdc,0x94,0x0d, +0x8e,0x0e,0x8e,0xde,0x17,0x93,0xaa,0xc7,0xff,0x52,0x08,0x5c, +0xf5,0xdd,0xda,0x54,0xff,0xd4,0x80,0xe4,0x20,0x0e,0xe6,0x0b, +0x55,0x04,0x4b,0x03,0x70,0xea,0x2c,0x5c,0xae,0xdc,0xe5,0x70, +0xf5,0xef,0xea,0x97,0x19,0x30,0x4d,0x91,0x82,0xd9,0xd3,0x34, +0xb0,0x65,0x6a,0x49,0x37,0x28,0xbb,0xd2,0xb2,0xbb,0x55,0xc6, +0x8a,0xa9,0xf3,0x81,0x5b,0x18,0x43,0x30,0x1d,0xb4,0x21,0x9d, +0x11,0x3d,0x75,0x09,0x7e,0x81,0xfb,0xe0,0x0b,0x16,0xf6,0xe1, +0x4e,0x82,0x4a,0xf4,0xb5,0x12,0x2b,0xa8,0xa3,0x21,0x39,0xd3, +0x7b,0x6a,0xf8,0xaa,0x12,0xa4,0xa3,0x3e,0x6d,0xa3,0x82,0x30, +0x8d,0xc0,0x57,0xfd,0xb7,0x07,0xb3,0x6e,0x53,0xfc,0xa6,0xd5, +0x0f,0x5a,0xf1,0x4c,0xe6,0xe6,0xc7,0x86,0xa0,0xac,0x5f,0xd0, +0xcd,0xe3,0x94,0xce,0xf5,0x5d,0xf6,0x43,0x1c,0x44,0x77,0x61, +0x0e,0x68,0x1b,0x50,0xff,0x75,0xc6,0x14,0x82,0x18,0x47,0xdd, +0xcd,0x32,0x9c,0x62,0xca,0x6d,0x2c,0x23,0x87,0xd2,0xa5,0x6a, +0xee,0xe1,0x94,0xae,0x83,0xe2,0xfb,0x02,0x9f,0xef,0x92,0xa5, +0xbf,0x32,0x86,0x2f,0xde,0x17,0x1a,0x9f,0xb5,0x1c,0xbf,0xa0, +0xa1,0xfd,0xda,0xeb,0xa2,0xd7,0x71,0x52,0x68,0xcf,0xfd,0xb7, +0xd0,0xf8,0xa9,0x18,0xe5,0x5b,0xb8,0xa2,0x86,0x86,0xf6,0x28, +0xe1,0x34,0xf1,0xb3,0x75,0xb5,0x71,0x73,0x3d,0xe7,0xc9,0x57, +0x56,0x57,0x37,0x15,0xb6,0x70,0xf8,0x62,0x01,0xd9,0xdb,0xe2, +0xd6,0xec,0x5e,0x65,0xe7,0xc1,0x57,0xba,0x54,0xd8,0x17,0xdb, +0x70,0x82,0xf5,0xf8,0x0e,0xa2,0x5a,0xb5,0xb1,0x4c,0xb5,0xb8, +0xaf,0xa5,0xa6,0x3f,0xef,0x12,0x07,0x13,0xbb,0xf0,0x16,0x93, +0x9e,0x97,0x9a,0x97,0x9c,0x2b,0xcb,0xe5,0x0f,0xf8,0x04,0x7b, +0xfa,0x7b,0x70,0xe8,0x68,0x0a,0xaa,0x8c,0x8b,0x9d,0x83,0x9d, +0xbd,0xe3,0xd5,0xe0,0x8b,0xc1,0xe7,0x83,0x34,0xdc,0xbf,0xf1, +0x43,0xf9,0x50,0xe9,0x00,0xd1,0xa2,0x3c,0xf8,0xb0,0xfa,0x6e, +0xdb,0x4b,0xf7,0x27,0xae,0x0f,0x1d,0x39,0x71,0x27,0x0d,0xdf, +0xa5,0xc5,0xe5,0x55,0x25,0x35,0x9c,0x74,0x68,0x5e,0xcf,0xd9, +0xc2,0x70,0x8f,0x09,0xa5,0xf6,0xb2,0x34,0xba,0xae,0xed,0xe1, +0x14,0x29,0xb4,0x2a,0x36,0xcc,0xd7,0x77,0x0c,0xb1,0x0c,0x31, +0x3f,0xc0,0x41,0x0f,0x38,0x0b,0xcb,0xe6,0xbc,0x34,0x5e,0x32, +0x6b,0xdc,0x93,0xf5,0x3b,0xec,0x1f,0x1d,0x10,0x9d,0x6a,0xc8, +0xff,0x90,0xf3,0xba,0xee,0x6a,0x75,0x8a,0x47,0x92,0x67,0xa2, +0x67,0x47,0x3e,0xef,0xf2,0xda,0x0c,0x58,0xcb,0x87,0x1c,0xc6, +0x80,0x11,0x39,0x9c,0x11,0x75,0x2c,0x5c,0x52,0x6a,0x8d,0x86, +0xe9,0x3f,0x76,0x2f,0x03,0x03,0x63,0x34,0xc0,0x4f,0x4d,0x40, +0x8e,0x89,0xc4,0x69,0xce,0x38,0x57,0x15,0xa7,0xd4,0x5a,0xf0, +0x17,0xfe,0xc8,0x7b,0x75,0xe6,0x39,0x1d,0x9d,0xf4,0x5e,0x21, +0xee,0xdf,0xd1,0x19,0xc6,0xa5,0x55,0x75,0x72,0x42,0x3d,0x2c, +0x27,0xe7,0x5e,0x54,0xfc,0x91,0x7e,0x8f,0x46,0xb1,0xca,0xf1, +0xf1,0xbe,0xb1,0x11,0x58,0xc3,0x86,0xab,0x7b,0xcc,0xb5,0x5e, +0xc4,0xf5,0xa8,0x35,0xae,0x58,0xa5,0xa4,0xbe,0xcf,0xdb,0x46, +0xd9,0x98,0x49,0x36,0x96,0x1b,0x60,0xbe,0xab,0x6e,0x7e,0xf3, +0xd2,0xfe,0x27,0xf3,0xab,0x2a,0x38,0x08,0xde,0x04,0xa7,0xe0, +0x0a,0x98,0xc2,0xc2,0x0a,0xdc,0x42,0xf0,0x6b,0xfa,0xfa,0x6b, +0x1a,0xf8,0x23,0x81,0x90,0xef,0x9b,0xaf,0xf4,0x76,0xf5,0xd9, +0x35,0xf0,0x66,0xc6,0x9a,0x26,0x5b,0x6d,0xed,0x7b,0xfd,0x06, +0x0f,0x9c,0xa7,0xeb,0x57,0x50,0xc0,0xd8,0x3f,0xb4,0xe7,0xe1, +0x81,0x71,0x4f,0xc6,0xf3,0x88,0x7b,0xb4,0xeb,0x91,0x24,0x6a, +0x8d,0x4b,0x8b,0xe0,0xe3,0x7c,0xe0,0xeb,0x0f,0xf5,0xf3,0x6b, +0xfc,0xd5,0x42,0xd6,0x87,0x72,0x34,0x30,0x2d,0x60,0x2b,0x71, +0xd9,0x6b,0x5c,0x03,0x21,0x38,0xb1,0xa2,0x8f,0x5f,0xd2,0xa2, +0xd1,0x69,0xd2,0xc7,0x89,0xba,0xc2,0x8f,0xc4,0xb4,0x5e,0xbb, +0x4e,0xa7,0xd4,0xd3,0x94,0x1f,0xf1,0x18,0x70,0xe9,0xd9,0xc3, +0x09,0x17,0xce,0x90,0x59,0xe2,0xfa,0xd7,0x92,0x50,0xbe,0x2b, +0x31,0x68,0xd9,0xdc,0xba,0xad,0xd2,0xd3,0x8c,0xbf,0xe6,0x72, +0xc5,0x6e,0xd4,0x8a,0x13,0x9e,0xff,0x49,0x70,0xa2,0xb8,0x1e, +0x26,0xb2,0xa8,0x8f,0x5e,0xc4,0x1e,0x3f,0xd4,0x47,0x6e,0xe3, +0xe2,0x0e,0x5b,0xfe,0xee,0xab,0x8b,0xf4,0x67,0xdf,0x50,0xa6, +0x97,0x3d,0x26,0x23,0x76,0xcd,0x26,0xad,0x26,0xd5,0x2e,0xb6, +0x7c,0xef,0x9e,0x66,0xfb,0x56,0x2b,0x6e,0xcc,0x0d,0xd7,0x12, +0xf1,0xe1,0x5d,0xa1,0x1d,0x82,0x44,0x01,0x6f,0x33,0xb8,0x3a, +0x1c,0x3d,0x97,0xe3,0xd7,0xca,0x9d,0x0e,0x3f,0x80,0x72,0x36, +0x78,0x9d,0x82,0x0d,0x8a,0x90,0xb5,0x11,0x83,0x44,0xed,0x5e, +0x41,0x11,0xd4,0xc4,0xcf,0x7b,0x84,0xcf,0x61,0x3b,0xde,0x5f, +0x20,0x69,0xb6,0xde,0x67,0x9a,0xd3,0x52,0x1b,0x55,0x84,0x8f, +0x31,0xec,0x0e,0x64,0xb3,0x8b,0x61,0x80,0xe0,0x24,0x31,0x02, +0x26,0xb1,0x38,0x0d,0xbb,0x88,0x4d,0xbb,0x56,0xbf,0x7e,0x83, +0x93,0x2d,0xdf,0x6f,0x37,0x68,0xda,0x6e,0xca,0xb9,0xce,0x21, +0xbe,0x28,0xe7,0x8a,0x9f,0xe8,0xcf,0xed,0x74,0xe6,0x2f,0xc0, +0xc4,0x06,0xf8,0x3a,0xe7,0x15,0x27,0xcc,0x5c,0x4d,0xbc,0x0b, +0x2d,0xcb,0x3d,0xd2,0xbd,0x1c,0xf9,0x8a,0x03,0x2d,0xee,0xa5, +0x3e,0x1c,0xa4,0xd6,0x13,0xcf,0x22,0xcb,0x52,0x8f,0x0c,0x2f, +0x07,0xfa,0x5e,0x9b,0x67,0x99,0x0f,0x5d,0xd3,0xba,0xa4,0x22, +0xb4,0xd5,0xad,0x74,0x6f,0x59,0x3d,0xef,0x55,0x6c,0x55,0xe9, +0x96,0xc1,0xc1,0x8f,0x9b,0x89,0x57,0x91,0x45,0x85,0x47,0xba, +0xa7,0x23,0x5f,0x1e,0xda,0xe6,0x51,0x46,0x1d,0xea,0xd8,0xdf, +0x63,0xcb,0x09,0xce,0x3b,0x0f,0x36,0xe2,0x7c,0xf8,0x48,0x0b, +0x3f,0x12,0xbf,0x44,0x9b,0xf3,0x30,0x8f,0x15,0xbe,0x16,0xb7, +0x12,0xd8,0x02,0xaf,0x07,0xf0,0x35,0x2c,0xd6,0xa2,0x88,0xd1, +0x9a,0xcd,0xae,0xcd,0xa8,0x4d,0xaa,0xd1,0x4f,0xe7,0xf7,0x7e, +0x6b,0xb1,0x7a,0xc3,0xda,0x4e,0x27,0xbe,0xac,0xa2,0xb8,0xa6, +0xa0,0x8e,0x83,0x08,0xdc,0x22,0xae,0xd0,0x17,0x56,0x60,0xfc, +0x08,0xc4,0x0b,0x1b,0x07,0x29,0xe7,0x4c,0x84,0x2f,0xc9,0xc5, +0x96,0xe1,0xde,0xd6,0x7e,0xbb,0x3a,0xde,0xc6,0xd8,0xc8,0x54, +0xd3,0xd6,0xa5,0x27,0x68,0x30,0x82,0xce,0x7c,0x94,0x30,0x0d, +0xfd,0xfe,0xd0,0x9b,0x87,0x7b,0xc6,0xbd,0x18,0xea,0x87,0x8f, +0x78,0x44,0x27,0x1b,0x50,0x20,0x53,0xf8,0x26,0x1f,0x3e,0xad, +0x39,0xd4,0xc7,0xab,0x05,0xee,0xda,0xb7,0x8d,0x3a,0xaf,0xc7, +0xa0,0xc0,0x16,0xe3,0xf2,0x9f,0x70,0x15,0x58,0xa1,0x5c,0x55, +0x37,0xbf,0xa6,0x55,0xbb,0xcb,0xba,0x9f,0x13,0xb3,0x85,0x43, +0xa4,0xb9,0xab,0x61,0xa0,0xf6,0xa2,0x4d,0x05,0xef,0x61,0xe4, +0x6a,0xe6,0x68,0xed,0xd3,0xee,0xd9,0xe2,0xd2,0x62,0xed,0xce, +0xd7,0x9b,0x96,0x9b,0x17,0x9a,0xda,0xdb,0x59,0x3b,0x5a,0xb8, +0x97,0x18,0xf3,0x6d,0x95,0x4d,0xb5,0x0d,0x0d,0x59,0xd6,0x69, +0x16,0x89,0xe6,0x7a,0x2b,0x35,0x75,0x57,0xe9,0x15,0x1b,0xf3, +0x0f,0x7a,0x86,0x86,0xbb,0xae,0x73,0x71,0x36,0xa7,0xac,0xcc, +0x95,0x70,0xdb,0x49,0x2f,0xab,0x0d,0xd3,0x77,0x4a,0xf2,0xf7, +0x17,0x98,0x57,0xbd,0x17,0xc0,0x0f,0x96,0xfb,0x81,0xa2,0x0c, +0x3e,0x55,0x11,0x5e,0x74,0x93,0x99,0xe2,0x87,0x6f,0x58,0xe1, +0x43,0xa9,0x02,0x94,0x9c,0xf8,0x21,0x48,0xa9,0x6e,0xb9,0x63, +0x6e,0x24,0xc7,0x2b,0xcb,0x33,0xcb,0xad,0x3b,0xe7,0xfd,0x7e, +0x56,0x3e,0x07,0xaa,0xed,0xef,0x36,0xec,0xa4,0x5d,0x39,0x69, +0xc3,0x6e,0xf7,0xbf,0x1b,0x76,0xb5,0xc5,0x95,0xe5,0x25,0x55, +0xd4,0xa5,0xb4,0x93,0x84,0xac,0x84,0xcc,0xf8,0x2c,0x93,0x14, +0x3e,0xc0,0xd8,0xd3,0xd8,0xc6,0xba,0xc5,0x83,0xcf,0xce,0xcd, +0xcc,0x4b,0x2b,0xe0,0x5e,0x32,0x39,0xde,0x59,0x1e,0xd9,0x6e, +0x9d,0xef,0x76,0xc7,0x0a,0x42,0x69,0xd0,0x33,0x68,0x67,0x30, +0x1d,0x7d,0x08,0x04,0x77,0x88,0x5f,0x0f,0xeb,0xe8,0x88,0xf2, +0xe6,0xe0,0xca,0x58,0xed,0xcf,0x0a,0xca,0x75,0x4d,0xf5,0x53, +0xc4,0x44,0xd3,0xb7,0x5f,0x53,0x57,0xc9,0xe4,0x16,0x65,0x15, +0xa5,0x17,0x71,0xbb,0xd3,0xc9,0x7e,0x8f,0x20,0x57,0x3f,0x2f, +0x0e,0x1b,0x98,0xc6,0xd4,0x88,0x02,0xbf,0xaa,0xe0,0x3c,0x45, +0x38,0x23,0x0e,0x11,0xf7,0xa8,0xb3,0xa5,0x2a,0xe5,0x70,0x0b, +0xea,0xc7,0x77,0xe2,0xd3,0xe1,0x36,0x38,0x66,0xcf,0x1a,0xe5, +0xfb,0x5f,0x54,0x86,0xc7,0x4c,0x4b,0x56,0x6a,0x9d,0xca,0x55, +0xd6,0x20,0x43,0x6e,0x25,0x2b,0x6e,0x83,0x43,0x04,0x8f,0x7d, +0x07,0xc7,0x98,0xa1,0xed,0xe4,0x3b,0x48,0xdb,0xce,0x8a,0x23, +0xd6,0x04,0x8e,0x6d,0xc1,0x63,0x0c,0x0c,0xdc,0x20,0x90,0xb6, +0x05,0xd3,0x28,0x5b,0xdf,0x21,0x98,0x93,0x01,0x4c,0x60,0x1f, +0x5c,0xb9,0x71,0xfb,0xd2,0x53,0xf3,0x2a,0x5e,0x75,0xd6,0xb7, +0xdf,0xce,0xdb,0xcc,0xe1,0x24,0x98,0x05,0xb1,0x03,0x18,0x0b, +0x53,0xb4,0xa8,0x37,0xe8,0x33,0x80,0x3e,0x0a,0xb3,0xd1,0x40, +0xb0,0xa7,0xec,0x75,0x05,0xae,0xdc,0x8a,0x3a,0x3b,0x8b,0x0c, +0xf8,0x7b,0x25,0x77,0x2a,0x6e,0x54,0x73,0x28,0x63,0xd7,0x16, +0x79,0xfe,0xa0,0x4c,0xb9,0x6d,0x47,0x76,0x5a,0x8b,0x0a,0x7c, +0xca,0xee,0x4e,0x97,0x43,0x65,0x71,0x3a,0xab,0x77,0x28,0xa9, +0x5d,0xe5,0x26,0x0b,0x3a,0x99,0xa0,0x5a,0x03,0x73,0x06,0x3d, +0x7b,0x78,0x9c,0x6e,0x84,0x2b,0x5d,0x70,0x4b,0x28,0xf7,0x84, +0x7d,0xd6,0xf2,0xa8,0xfb,0xce,0x20,0x27,0xa9,0x89,0x35,0x90, +0x73,0x46,0xf6,0xb8,0xd3,0x51,0x58,0x5e,0xc7,0xb6,0x4a,0x22, +0xac,0x91,0xac,0x41,0x5e,0xd0,0x25,0x65,0x28,0x67,0xce,0xa5, +0xa6,0x54,0xa9,0x94,0xb1,0xa6,0xc9,0x72,0xb9,0xf8,0x5d,0x15, +0x7c,0x57,0x89,0xdf,0x95,0xc3,0x77,0x55,0xf8,0x5d,0x19,0xdc, +0x79,0x8d,0xf7,0xcb,0xe1,0x55,0x0d,0xbe,0x3a,0x67,0x88,0xf3, +0xe0,0x81,0x2b,0x2b,0x7a,0x15,0x93,0xd4,0xcc,0xe4,0xac,0xc4, +0x2c,0x93,0x54,0x3e,0x2a,0x30,0x3c,0x20,0x84,0x42,0xa3,0x6c, +0x47,0x41,0xbd,0x8e,0xc1,0x37,0xdd,0x24,0x25,0x3c,0x35,0x24, +0x21,0xb4,0x2d,0x8d,0x8f,0xca,0xdc,0x9f,0x1b,0x91,0xc4,0xc1, +0x04,0x71,0x05,0x81,0x0f,0x99,0xfa,0xcc,0x94,0x1a,0x15,0xf0, +0x45,0xc4,0xf2,0xfe,0x17,0x70,0xcc,0x0a,0xe5,0x59,0x90,0x07, +0x13,0xe2,0x82,0xc7,0xaa,0x59,0xf5,0x89,0x70,0xcc,0x91,0x0e, +0x9d,0x10,0xba,0x8e,0x58,0x47,0x9c,0xa6,0x1f,0x1c,0xdd,0xc3, +0x0c,0xa3,0x40,0xec,0x8f,0x59,0x1e,0x35,0x3b,0x46,0xad,0x06, +0xbe,0x6a,0xf9,0x67,0x92,0x35,0x4c,0xc7,0x93,0xec,0x71,0x0b, +0xab,0x13,0xd6,0xd3,0xcf,0x58,0x83,0xdf,0x29,0x48,0x89,0x05, +0xd7,0x78,0x45,0xed,0xc1,0x51,0xb6,0xeb,0x54,0xeb,0xa9,0xc6, +0xd3,0x1c,0x5a,0x83,0x2f,0x11,0x63,0xba,0x84,0x18,0xe6,0x9b, +0x89,0x26,0x62,0x4c,0x37,0xbb,0x74,0xa2,0x10,0x63,0xce,0xe0, +0x92,0x68,0xdc,0x11,0x83,0x9b,0x8e,0x51,0x43,0x96,0x8d,0xcd, +0x21,0x11,0xbd,0xfe,0xf7,0x42,0x9a,0xcd,0x82,0xf9,0x2c,0xab, +0x7c,0xd5,0x24,0x63,0xea,0x1a,0xc4,0xff,0x21,0xce,0x77,0x0f, +0xc1,0x4a,0x58,0xa5,0x04,0xe6,0xbb,0xd9,0xca,0xc1,0xb2,0xdb, +0x19,0x1d,0x26,0xf9,0x7c,0x88,0xb6,0xf3,0x4a,0x67,0x7d,0x0e, +0x5b,0xd1,0x8c,0xc1,0x99,0xd1,0x38,0xdb,0x1e,0x3f,0x51,0x0e, +0xbf,0x13,0xf8,0xf3,0xbe,0x8b,0x56,0x61,0x7c,0x92,0x63,0x92, +0x79,0xa2,0x99,0xff,0x61,0xbf,0x23,0xbe,0x47,0x38,0x70,0x85, +0xcf,0xa9,0xab,0xfe,0x1c,0x96,0x19,0xe1,0x32,0xfc,0x4c,0x54, +0x80,0xcf,0x30,0x90,0x35,0x89,0x34,0x3e,0x68,0x74,0x28,0x89, +0x82,0xd4,0x09,0x99,0x2f,0x73,0x9f,0x97,0xc4,0x06,0x9e,0x0e, +0x3a,0x1d,0x72,0x2e,0x99,0x8f,0x89,0x88,0x8e,0x38,0x12,0xd9, +0xe1,0xcc,0x57,0xdf,0xcd,0x7c,0x92,0xf0,0x03,0x07,0x2a,0x78, +0xa2,0x1b,0x4e,0xc0,0x2c,0xe6,0xec,0xda,0x54,0xb5,0x42,0xb3, +0x42,0x8b,0xee,0xe4,0x33,0x3d,0x19,0x60,0xc0,0xdb,0xa6,0xc9, +0x89,0x8c,0x60,0x4c,0xf6,0xb7,0xb9,0x7f,0xef,0xd7,0x62,0x1e, +0xc0,0x17,0x58,0x57,0x6e,0x49,0xb3,0xe0,0xc4,0xcf,0x12,0xc8, +0x35,0x2c,0x57,0x67,0xc0,0x4a,0xca,0x17,0x2f,0x57,0x83,0x72, +0x56,0x98,0x8c,0x96,0x04,0x15,0x80,0xfe,0x63,0xba,0x51,0x81, +0xd0,0x17,0x8a,0xa8,0xc0,0xe2,0xf7,0x14,0x65,0x9c,0x6e,0x3e, +0xd9,0x72,0xb2,0x85,0x03,0x05,0xfc,0x9a,0xe9,0x86,0xaf,0x25, +0xb9,0xc8,0x93,0x36,0x27,0xad,0x4e,0xdb,0x70,0xa8,0x4c,0xf9, +0xf1,0x00,0xf8,0x91,0x42,0xcf,0x32,0x87,0x32,0xbb,0x9d,0x81, +0xaa,0x81,0x9b,0xf7,0x49,0x98,0xe8,0x96,0xb0,0x01,0xd7,0xfc, +0xaa,0xb5,0x10,0x57,0x8d,0xcb,0xd8,0x80,0xe8,0xc0,0xe8,0xa0, +0x18,0x29,0x4b,0x4d,0xbe,0x08,0xe6,0xd5,0xbd,0xaa,0xcf,0x75, +0xcf,0xf1,0xc8,0xf4,0x6e,0xa9,0xe2,0x8d,0x9e,0x6e,0x7b,0x25, +0xa3,0x48,0xd0,0x91,0x86,0xb7,0x9e,0x97,0x0d,0x3f,0x15,0x3e, +0xe4,0x3a,0xf1,0xd5,0xf8,0xdb,0x91,0xb1,0x2e,0xd8,0xcb,0xfa, +0xab,0xd9,0x2f,0xd3,0x99,0xcf,0xdd,0xd9,0x3e,0xa4,0xb6,0x41, +0x49,0x3d,0xc8,0x55,0x55,0x59,0x83,0x49,0xd1,0x96,0xbb,0xc2, +0xc0,0x07,0x2d,0x17,0x5f,0xfe,0xa2,0x7f,0x6b,0xfb,0x45,0x15, +0x71,0x2a,0x38,0x49,0xf0,0x28,0x43,0x82,0x47,0x19,0xb8,0x4b, +0x52,0x06,0xc9,0x00,0xc5,0x77,0x7a,0xc8,0x1f,0x10,0xb0,0xdb, +0x8e,0x76,0xe2,0x4c,0xcd,0xb7,0x13,0x47,0x59,0x7c,0x86,0xa6, +0x04,0x38,0x5c,0xfd,0x03,0x7e,0x73,0x0f,0xb7,0x5f,0xa8,0xe6, +0x55,0x61,0xeb,0x32,0xf8,0x96,0x1a,0xd5,0x2a,0x4e,0x3c,0x2f, +0xe6,0x11,0xf8,0x1a,0xe6,0x3d,0x83,0xad,0xdd,0xa0,0xb3,0x2b, +0x9b,0x37,0xc7,0x9d,0xab,0xf1,0x5b,0x7a,0xb5,0x99,0x9c,0x54, +0xb1,0x3b,0x8e,0x88,0x5b,0x5a,0x02,0x18,0x90,0x6b,0xaf,0x68, +0x4a,0x6d,0xa7,0xf8,0x6a,0xc5,0x00,0xac,0x88,0x67,0xd2,0x8c, +0xda,0xed,0x80,0x18,0xe7,0xb5,0xf1,0xf8,0x51,0xb3,0x7e,0x9d, +0xd7,0x39,0xea,0x57,0x5a,0xd1,0xf5,0x3b,0x83,0xed,0xb8,0xd1, +0x0a,0xe6,0x32,0x7e,0xce,0x56,0x4e,0x73,0x1d,0x72,0xad,0x79, +0x2f,0x6b,0xba,0x86,0x57,0x30,0xa8,0x10,0x8d,0xd3,0x77,0x20, +0xab,0xdc,0x65,0xdf,0xf9,0x7b,0xf6,0xb3,0xb3,0x3f,0x2b,0x82, +0x1c,0x86,0x32,0xf6,0x31,0xf6,0x47,0xed,0x8f,0x9e,0xa5,0x84, +0xea,0xab,0x14,0x58,0x90,0x01,0x1f,0x65,0x47,0xb7,0xf0,0xda, +0x07,0xb7,0x46,0x6d,0x8a,0xe2,0xfe,0x06,0xd7,0x36,0x7a,0x45, +0xc8,0x44,0x13,0x56,0xb7,0x28,0x68,0x50,0x19,0x4c,0x99,0x86, +0x94,0xf4,0x5a,0x95,0x41,0xd6,0x24,0x4d,0x6e,0x33,0xea,0xb1, +0xde,0x87,0x12,0x8a,0x54,0x7a,0xd8,0x87,0x67,0x5f,0x65,0xde, +0xcd,0x0b,0x68,0xe5,0xb5,0x02,0x17,0x86,0xae,0x8f,0xe2,0x9e, +0xc0,0x49,0x1a,0x1d,0x4f,0x5e,0x82,0x4e,0xf6,0x1f,0xe6,0x0e, +0x01,0xf9,0xae,0x73,0xad,0x29,0x03,0xb4,0xe9,0xcb,0xfa,0x7e, +0x61,0xce,0x9e,0x3e,0x11,0x1f,0xa3,0x0c,0x9f,0x6a,0x16,0x36, +0xa1,0xdc,0xf9,0xf0,0xf8,0xc8,0x98,0xc3,0x07,0x15,0x0f,0x47, +0xca,0x1d,0xe9,0x81,0xa5,0xad,0xb8,0xf4,0x3b,0xc3,0xed,0x68, +0x66,0x05,0xea,0x8c,0xbf,0xb5,0xb1,0x03,0x4e,0xb0,0xe6,0x60, +0x04,0x8d,0x09,0x1a,0x5e,0x02,0x43,0xa6,0x77,0x17,0xb9,0x04, +0x06,0xbb,0x58,0x3c,0x6a,0x49,0x54,0xd1,0x88,0x3d,0x59,0x78, +0xa2,0xa8,0x48,0x09,0x8e,0x29,0x80,0x81,0x2a,0x1a,0x30,0xc2, +0x2e,0x05,0x34,0xbe,0x0b,0xc6,0x74,0x65,0x34,0x09,0x2a,0x24, +0x2a,0x25,0xf2,0x74,0x64,0x54,0x04,0x05,0x4d,0xa7,0x99,0xda, +0x9e,0x9e,0x5f,0x0a,0x7e,0xe0,0x5a,0xf1,0x13,0x58,0xaa,0x87, +0x4b,0x51,0xde,0x18,0x0e,0xb1,0x4e,0xf8,0x89,0x94,0x5d,0x38, +0x75,0x76,0x85,0x05,0xdf,0xdc,0x50,0xd7,0x50,0x5a,0xc3,0x89, +0x5f,0x0d,0x09,0xbb,0xd9,0xf8,0x53,0x27,0xde,0xa9,0x58,0xae, +0x68,0xa8,0x91,0x13,0xa6,0xda,0x91,0x0b,0x6d,0x83,0x43,0x2d, +0x83,0x0e,0x35,0xbc,0x8d,0xbe,0x9e,0xbe,0x91,0x1d,0xb7,0xa7, +0x2f,0xf0,0xfc,0x65,0xa5,0x24,0xa8,0xea,0xdd,0x0c,0x97,0xc4, +0x10,0x13,0x61,0xd3,0x7c,0x71,0xbe,0x89,0x30,0x1f,0x3f,0x10, +0xed,0x8c,0x21,0x5e,0xd4,0xc5,0x69,0xd2,0xa9,0xe3,0xbf,0xfe, +0x3d,0x75,0x5c,0x12,0xcf,0x66,0xe2,0x07,0x97,0xb7,0xc1,0x6a, +0xfc,0xa8,0xa2,0x93,0xdf,0xdc,0xa5,0xd9,0x65,0xd1,0xc3,0xa1, +0xdf,0x23,0x62,0xdf,0x60,0xdc,0x6c,0x55,0xe6,0x66,0xcf,0x37, +0x7b,0xf6,0xda,0x35,0xda,0x72,0xe5,0xfb,0xc9,0xce,0x5d,0x2b, +0x76,0xcd,0x33,0x29,0xb5,0xe0,0x5f,0xf5,0xbf,0xb8,0x3a,0x7a, +0x89,0x9a,0xff,0xe6,0xb1,0xef,0x89,0x36,0x1a,0xe1,0x72,0x3d, +0x58,0xce,0x44,0x63,0xbb,0x29,0xae,0xc7,0xc9,0xb8,0xa0,0xcd, +0x82,0x87,0x2f,0x61,0x4d,0x1f,0x18,0x9f,0x81,0x7e,0x4e,0xd2, +0xa7,0x8e,0x38,0x82,0xeb,0xc3,0xe7,0x2a,0x6b,0x1f,0x3a,0xb0, +0x4f,0x67,0xfa,0x3c,0x26,0x43,0x57,0xee,0x77,0xe6,0x69,0x79, +0xed,0x93,0x24,0x95,0x34,0x60,0xce,0xc0,0x37,0x30,0xa2,0x84, +0x87,0x19,0xb1,0x0f,0xa7,0x12,0x6c,0x0e,0xc6,0x39,0x7a,0xd4, +0x31,0xf4,0x38,0x34,0xbd,0xcc,0x7f,0x99,0x08,0x0b,0x14,0x29, +0xe5,0x4e,0xc1,0x2f,0x98,0x74,0x5d,0xb9,0x57,0x4c,0x6b,0x56, +0x4e,0x87,0xca,0x58,0xa5,0x54,0x51,0x38,0x1c,0x8f,0x12,0x54, +0x07,0x5d,0x3a,0x23,0xb8,0x93,0x02,0x87,0xd3,0xbd,0x27,0x87, +0xbf,0x53,0x02,0x75,0xd4,0xa3,0xc3,0x7c,0x70,0xac,0x90,0x24, +0xad,0xee,0xd8,0xf9,0x74,0x53,0x59,0x37,0xaf,0x7a,0xd5,0xea, +0x6a,0xd0,0x55,0x4e,0x9d,0x09,0x54,0xb3,0xdb,0xb4,0x54,0xda, +0x91,0xfd,0xf1,0x5a,0xcf,0xe3,0xb4,0x67,0x9c,0xd0,0x2e,0x3e, +0x24,0x83,0x6d,0x7d,0x83,0x8d,0x43,0xf6,0x55,0xbc,0x83,0xbe, +0xb1,0x81,0x74,0x70,0xbb,0x2f,0xe8,0xfc,0x25,0x3a,0x86,0x19, +0x3d,0x1a,0x74,0x0c,0xad,0x4d,0x84,0x99,0xf3,0xc5,0xc9,0xa6, +0xd4,0x19,0x4c,0x10,0xb7,0xca,0xe0,0xa0,0xa8,0x47,0x1d,0xee, +0x7f,0x9d,0xdc,0x2e,0x8a,0x67,0xd3,0x67,0x5c,0x50,0x87,0xc5, +0x14,0x25,0x76,0xf2,0xdb,0xba,0x75,0xbb,0xac,0x7b,0xa5,0x13, +0xb2,0x8b,0x08,0x90,0x5e,0x24,0xf0,0xf1,0xf3,0x1e,0x0c,0x95, +0x3d,0xc4,0x8f,0x71,0x8e,0x31,0xcc,0xc1,0xf3,0x8c,0xe9,0x41, +0x93,0x28,0xf3,0xc3,0xd4,0x8b,0xfd,0x95,0x41,0x8d,0xff,0x76, +0xfe,0xb1,0x5e,0xde,0x23,0xca,0xed,0x90,0xcb,0x21,0x0e,0x2e, +0x43,0x10,0x71,0x3e,0x67,0xde,0x62,0x5b,0xee,0xba,0x87,0x6f, +0xf0,0xe8,0xb4,0xad,0xa3,0xfe,0xc4,0x1e,0x59,0x92,0xd6,0x97, +0x2c,0xed,0xec,0x26,0xf1,0x87,0x74,0x0f,0x1a,0x1f,0x30,0xe3, +0x30,0x00,0xe6,0x93,0x3c,0xa3,0x7c,0xd5,0x64,0xfd,0xf6,0x34, +0x3e,0x62,0xd0,0xef,0x51,0x40,0x2f,0x8d,0xf6,0x6a,0xc4,0x64, +0xe7,0xe6,0xed,0xea,0x56,0x15,0x96,0xfc,0xcd,0xee,0xeb,0x57, +0x7a,0xae,0xd0,0x49,0xfa,0x68,0xec,0x06,0x71,0x58,0xbd,0x79, +0x2d,0xce,0xda,0x50,0x4a,0xf9,0xb5,0xe2,0xbd,0x97,0x8f,0xcb, +0x7f,0xe3,0xe2,0x99,0xf2,0xf9,0x2f,0xd5,0x60,0xee,0xca,0x52, +0x1a,0xe6,0xe6,0x3f,0xda,0x78,0xd3,0xe6,0x19,0x27,0xbe,0xf5, +0x24,0x46,0x90,0x43,0xf9,0x60,0x0f,0xce,0x24,0x86,0xf0,0xa0, +0x5f,0x4a,0x2a,0xfe,0x92,0xc0,0x83,0x1e,0x7c,0xc0,0x88,0x2b, +0x75,0xe8,0x5f,0x25,0x1d,0x86,0xc9,0xe2,0x0b,0x02,0x79,0x3f, +0x63,0x6c,0x17,0xc4,0xfe,0xf2,0xee,0xf1,0x37,0x34,0xd5,0x60, +0x93,0xf5,0x29,0x3e,0x3f,0x97,0x91,0x45,0x01,0xa7,0xa6,0x18, +0x2f,0xa6,0xb0,0xb0,0x04,0x6e,0x92,0xc5,0xa0,0xf2,0x33,0x03, +0x0b,0x69,0x98,0x5c,0x04,0x2a,0xbf,0x30,0x74,0x98,0x54,0xc8, +0x02,0x50,0xf9,0x8d,0x11,0x53,0x8c,0xe8,0xf8,0x24,0x19,0xb3, +0x92,0x58,0x60,0x0f,0xd8,0x43,0x01,0x9d,0xe5,0x3b,0x2c,0x38, +0x40,0x3e,0xc1,0x55,0xb8,0x18,0x56,0x51,0xcc,0x13,0x36,0xf6, +0x98,0xc2,0x65,0x99,0x16,0xce,0x9e,0xf7,0x2e,0xb5,0xbe,0xa8, +0xb8,0xa8,0xba,0xf0,0x1c,0x27,0x66,0x0e,0x8d,0xc9,0xb3,0x55, +0xb7,0x4b,0x9f,0x67,0xff,0xce,0xc1,0x9f,0x52,0x92,0xa9,0xc1, +0x19,0xb6,0x6c,0xde,0xdf,0x06,0xb0,0x4a,0x23,0xbf,0x8f,0xc7, +0x2f,0x07,0xe6,0x74,0x18,0xdc,0xe0,0x20,0xab,0x07,0x7b,0xfe, +0x66,0x7e,0x3f,0xfb,0x32,0xf9,0x61,0x9a,0x4f,0x27,0x8f,0xaa, +0x5e,0xe8,0x7d,0x00,0x9d,0x8e,0xa7,0x18,0xf3,0x4f,0x7e,0x88, +0x8d,0x7b,0xa6,0x32,0x17,0x6b,0x65,0x70,0x86,0x35,0x52,0x5b, +0x6a,0x8c,0x8a,0x26,0xf9,0x94,0x41,0xcd,0x1f,0x86,0x0f,0x47, +0x4b,0xff,0xe2,0xe2,0x70,0x07,0x13,0x12,0x17,0xe4,0xec,0xb3, +0xc7,0xd3,0x41,0x11,0xed,0x8d,0x29,0x19,0xf5,0x72,0x75,0x73, +0x73,0x71,0xbf,0x15,0x70,0xc3,0xef,0xba,0x9f,0x9a,0xeb,0x12, +0x3f,0x9c,0xb4,0x2f,0x87,0x62,0x48,0x95,0x3c,0x90,0xab,0x7a, +0xde,0xf9,0xdc,0xed,0xa9,0xcb,0x13,0x47,0xba,0xdc,0xb6,0x95, +0xaf,0xaf,0x58,0x5f,0x3a,0xd4,0xd4,0xd6,0x53,0x3d,0xca,0xc1, +0xb4,0x5e,0x71,0x19,0x93,0x5f,0x99,0x53,0x99,0x59,0x41,0x29, +0x2f,0x2e,0x27,0xae,0x46,0xb6,0xd6,0x06,0xce,0xbb,0xf3,0xb4, +0xb2,0x8d,0x32,0x0a,0xf2,0xf3,0x8b,0xf2,0x8a,0x29,0xaa,0xe8, +0xa0,0xe0,0xae,0x2f,0xad,0x3b,0xb3,0x31,0xd7,0xab,0x83,0x5f, +0x64,0x8d,0x0b,0xdd,0x91,0x0d,0xa7,0xad,0x6c,0x8f,0x1b,0x4c, +0x18,0x4c,0xe1,0x28,0x14,0x36,0x31,0x00,0x1d,0x36,0x12,0xe5, +0x0c,0xf1,0x43,0xe9,0xb6,0x70,0x83,0x29,0xff,0x0a,0x3e,0x6c, +0x7a,0x7a,0xe6,0x29,0xa5,0x55,0x7b,0x06,0x25,0x01,0x9c,0xf7, +0x75,0x96,0x26,0xa2,0x5a,0x4b,0x03,0xe5,0xa9,0x1b,0x0e,0x25, +0x1f,0x3c,0x15,0x11,0xa9,0xb8,0x3f,0x4c,0x2e,0x1a,0x18,0xd8, +0x32,0x80,0x5b,0x18,0xf0,0x1b,0xff,0x84,0x8c,0xdc,0x83,0xbc, +0x0d,0xa3,0x63,0x57,0xc4,0xd9,0xcc,0x88,0x3e,0x9d,0xc8,0xf1, +0x4f,0x30,0x8f,0x91,0xfc,0x79,0x1d,0xc1,0x30,0xd8,0xc5,0x5c, +0x4a,0xb9,0x98,0x3e,0x94,0xed,0xd5,0xc5,0x4b,0xc7,0x88,0x97, +0xfb,0xe2,0xc2,0x48,0xca,0x01,0x07,0x63,0x47,0xe3,0xa5,0x02, +0x7e,0x9b,0xd1,0xc7,0x00,0x7c,0x70,0x07,0x6a,0x8b,0x53,0xcf, +0x0f,0xc1,0x05,0xbd,0x61,0x61,0x2a,0xea,0xc1,0x0e,0x08,0x63, +0xc7,0x45,0xb8,0x46,0x57,0x48,0x6f,0x1f,0x9b,0xfd,0x4e,0xa8, +0x05,0x0d,0xd9,0xa6,0xf5,0xf4,0x8d,0xc6,0x7f,0xe5,0x57,0x1a, +0x8d,0xd8,0x3e,0x71,0x11,0x9d,0xea,0x48,0xc8,0xc7,0x16,0xbc, +0xcd,0x0a,0xc6,0x30,0x89,0x86,0x23,0xb8,0x80,0x76,0xac,0x98, +0x09,0x8b,0x25,0x85,0x95,0x5d,0x92,0xc2,0xca,0xa8,0xe0,0x48, +0x60,0x59,0x23,0x28,0x9e,0x7f,0x7d,0x97,0xc3,0xa0,0x11,0xd8, +0xcd,0x26,0xc5,0xc6,0x26,0xc5,0x28,0x0b,0xca,0xb8,0xb0,0xb0, +0x4f,0xfc,0x12,0xe6,0x87,0xc6,0x1f,0x8c,0x39,0x1c,0xa1,0x78, +0x28,0x5c,0xee,0x48,0x1f,0x93,0x96,0x2a,0x95,0x4c,0xe2,0x84, +0x29,0xfd,0xff,0x4c,0x36,0x14,0x34,0x98,0x05,0x4b,0x70,0xf5, +0x26,0xd4,0x36,0xe1,0xc6,0x46,0x44,0x86,0xf4,0xe1,0x2d,0x98, +0x26,0x28,0xf5,0x8d,0xbf,0x36,0x12,0xbe,0xc1,0x5b,0x68,0x0a, +0x31,0xda,0x18,0x83,0x1a,0x86,0x6f,0x67,0xf5,0x8b,0xcb,0x61, +0x06,0x4b,0xfb,0x3e,0xe6,0x42,0xb0,0x8f,0x49,0xac,0x39,0x5b, +0x13,0x57,0xa5,0x9b,0xc8,0x1f,0x71,0x8a,0xda,0x13,0xe1,0xc0, +0xe1,0x76,0x03,0x58,0xc9,0x38,0x20,0xa7,0x8d,0xdc,0x9a,0x15, +0x8d,0x66,0x3c,0x25,0xd2,0xf5,0x85,0xcd,0x9c,0xb8,0x7f,0x10, +0x0e,0x40,0x03,0xae,0xc4,0x45,0x52,0x46,0x32,0x85,0x07,0x2d, +0x99,0x59,0x2d,0x2a,0x42,0x19,0xde,0x67,0xb3,0x1a,0xd2,0x1b, +0x24,0x05,0xd6,0xef,0x99,0x71,0x41,0xf4,0x25,0xd0,0x22,0x20, +0xb6,0x30,0x94,0xac,0x68,0x13,0xd4,0xa0,0x6e,0x51,0x83,0xc1, +0xcb,0x13,0xff,0x7d,0x05,0x27,0x50,0x9f,0xbc,0x81,0x86,0x99, +0xec,0xb8,0x65,0x2c,0x01,0x0d,0x0a,0x5c,0x35,0x18,0x41,0xf5, +0x01,0xa1,0xd7,0xfe,0x90,0x42,0x6a,0xec,0x58,0x47,0x6a,0x4c, +0xea,0x76,0x15,0xea,0x77,0xd5,0xf0,0xbe,0x7d,0x76,0x57,0x5d, +0xda,0x38,0x3c,0x8a,0xfb,0x48,0x67,0x57,0xc7,0xfd,0xc2,0x11, +0xd3,0x52,0x3e,0x58,0x26,0x5b,0x63,0x25,0x6d,0x06,0x4f,0x15, +0x2a,0x49,0xaa,0x89,0x54,0xa5,0xe3,0xd1,0xb9,0xe2,0xcb,0x89, +0x2a,0x71,0x2d,0xa7,0x1b,0x8f,0x3f,0xe6,0x30,0xf5,0x91,0xde, +0x1a,0xb4,0x35,0x01,0x4b,0x26,0x64,0xcd,0x36,0x4b,0x9c,0xb4, +0xa7,0xc0,0x98,0x3a,0xe7,0xe6,0x9f,0x2f,0x65,0x01,0xc7,0x81, +0x1d,0x63,0x7b,0xcc,0xfd,0x88,0xab,0xb2,0xe7,0x91,0xd0,0x40, +0xc3,0xe9,0xe3,0xaa,0xfb,0x09,0x76,0x85,0xe2,0x3c,0x0b,0x94, +0x53,0xee,0x76,0xa8,0xf9,0x31,0xeb,0xe5,0x59,0x58,0xac,0x08, +0xb3,0x30,0x75,0xa6,0xe4,0x7d,0xef,0x51,0xe4,0x9e,0xd3,0xae, +0x32,0x56,0x8d,0xa7,0x58,0x90,0x49,0xde,0xf7,0x2b,0xd0,0x83, +0xaf,0x18,0x54,0x11,0xb7,0x91,0x53,0xd4,0xfb,0x5e,0x55,0x82, +0xaf,0x50,0x9f,0x01,0x2f,0xf8,0x84,0x98,0xae,0x52,0x95,0xdd, +0x65,0x62,0x70,0xc5,0xde,0x6f,0x0c,0x36,0xd4,0xd9,0xf0,0x97, +0x5f,0x96,0xc1,0xa4,0x58,0x58,0xc3,0xdd,0x67,0x4e,0xae,0x38, +0xfa,0x4d,0x94,0x1e,0xe7,0x74,0xe4,0x60,0xa8,0xfb,0x74,0x2b, +0x26,0xc5,0x40,0xae,0x81,0xe9,0x2b,0x29,0x3b,0x9f,0xa0,0x92, +0x70,0x31,0xf6,0x8f,0xe3,0xb0,0x98,0xc3,0xe9,0x0c,0x74,0x2a, +0x3c,0x91,0xad,0xda,0x24,0xbb,0xcd,0xc6,0xe0,0x37,0x7b,0x97, +0x68,0xae,0x6b,0xb0,0xe5,0x6f,0xfc,0xfc,0xee,0x1a,0xab,0xb9, +0x67,0xd2,0x35,0x96,0x1d,0xd2,0xe1,0x1c,0x8e,0x1c,0x0c,0x77, +0x9e,0x6e,0xc0,0xa4,0x1a,0xc8,0x75,0x33,0x43,0x45,0x45,0x23, +0x67,0x55,0x12,0x2e,0xc7,0xfe,0x76,0x1c,0x96,0xd0,0x31,0x71, +0x1c,0x6b,0x22,0xd5,0xfb,0xcf,0xbb,0x57,0xfa,0x54,0x36,0xf3, +0x8e,0xc5,0xba,0xe5,0xee,0x29,0x9c,0x1a,0x0d,0x14,0xb6,0x76, +0x26,0xf6,0x3a,0x0e,0x35,0xf6,0xfc,0x50,0x7d,0x47,0x5d,0xe3, +0xb9,0x3a,0xb3,0x36,0xfb,0x7e,0xcf,0x66,0xff,0xea,0xe4,0x33, +0x6d,0xa9,0x30,0x9d,0x37,0xc9,0x0d,0xc3,0xf9,0xb2,0x32,0xeb, +0x7a,0xe7,0x76,0xc5,0xee,0xc1,0x73,0xa3,0x75,0x77,0x4d,0x73, +0x79,0x1f,0x6d,0x67,0x7d,0x0b,0x23,0xf7,0xc1,0xc0,0xab,0x91, +0x0f,0x39,0xe8,0xe8,0xc1,0x5e,0xe6,0x78,0xce,0xf1,0x9c,0x5c, +0xa5,0x46,0x03,0x3b,0x36,0xf0,0x64,0xd0,0xc9,0x20,0x65,0xb1, +0x4c,0x26,0x54,0x33,0x29,0x8b,0x8b,0xbe,0x6d,0xda,0xc6,0xe1, +0x36,0x30,0x26,0xe2,0x54,0xb4,0x15,0xa6,0x32,0x06,0x34,0x16, +0x2c,0xc2,0xcc,0x5f,0x58,0x40,0xd4,0x25,0xb8,0xdc,0x1d,0x55, +0xf7,0xe1,0x9a,0xb0,0x33,0x86,0x3c,0xac,0x4a,0x83,0x2d,0xd9, +0xb0,0xb4,0x86,0xa3,0xe1,0xe1,0x43,0xd2,0xeb,0x3a,0x68,0xd7, +0x61,0x5b,0xd7,0xc8,0x9b,0xb4,0x1a,0xd7,0x1b,0x54,0x71,0x86, +0x98,0x44,0xec,0x23,0xcf,0x52,0x10,0xaf,0xa6,0x83,0x5b,0xd8, +0x4d,0x85,0xc1,0xf7,0x94,0xa1,0x81,0x69,0x4b,0xcb,0x3e,0xa7, +0xf2,0x94,0xd5,0xcb,0x96,0x43,0x8e,0xed,0x07,0x35,0x32,0xa4, +0x37,0xb4,0xbd,0x71,0x5b,0x7b,0x0d,0x6f,0x75,0xcb,0xe0,0xa2, +0xde,0x90,0x94,0xb4,0x74,0x94,0x5c,0xb9,0xd4,0x7a,0xb3,0xf8, +0x3b,0xb3,0x42,0xde,0x57,0xcb,0x6a,0xab,0xa6,0x01,0x45,0x6c, +0xd3,0x84,0x8d,0xc4,0x9e,0x71,0x89,0x3e,0x5b,0xa5,0x02,0xe9, +0x68,0xfa,0x5a,0x7f,0x16,0x7e,0x69,0x44,0xd9,0xee,0x41,0x54, +0x32,0xdb,0xbc,0x40,0x47,0xca,0xf9,0x9f,0x74,0xab,0xf7,0xc7, +0x04,0x58,0xc9,0xc1,0xd7,0xb8,0x97,0xd9,0x9d,0x15,0x38,0xaa, +0xdc,0xce,0xb4,0xa6,0xa7,0xb5,0xa9,0xc0,0x57,0xac,0x2c,0x4b, +0x4e,0xbc,0x89,0x93,0x48,0x54,0xda,0xa1,0x93,0xe1,0x91,0x52, +0x06,0x0b,0x5d,0xc4,0x8a,0xfd,0xa8,0x08,0x7a,0xfa,0xa8,0x87, +0xcb,0x0c,0x29,0xb6,0x3b,0x80,0x9f,0xd9,0xa3,0xf2,0x4c,0x9c, +0xde,0x60,0xc9,0x3f,0x82,0x8f,0x2a,0xfe,0x8e,0x97,0xa4,0x24, +0xca,0x07,0x85,0x53,0x4c,0xfc,0xe9,0xe3,0xa7,0x63,0x94,0x7f, +0xc2,0x95,0xf5,0x0d,0x72,0xe0,0xff,0x0b,0xc1,0x15,0x18,0xad, +0x0f,0xd1,0x58,0x30,0x0c,0x05,0x70,0x66,0x10,0xcf,0xc0,0x0a, +0x6a,0x89,0x53,0xc6,0x32,0x89,0x5f,0x81,0x4b,0xa1,0x67,0xa6, +0x9b,0x27,0x5f,0x19,0x54,0x16,0x90,0xef,0xcf,0x89,0x8d,0x8d, +0xa4,0xc3,0xc8,0x1c,0xad,0x6c,0x05,0x59,0x13,0x2b,0x98,0x89, +0x8f,0xc9,0xb8,0x43,0xad,0x70,0x1b,0x2c,0xf0,0x12,0x93,0x90, +0x92,0x90,0x1a,0x9f,0x0a,0x1f,0x75,0x9d,0xbf,0x94,0xf1,0x07, +0x07,0x1e,0x2d,0xe8,0xcc,0x9c,0x8c,0x3f,0x71,0xf6,0xac,0xd2, +0x75,0xd3,0x6d,0xac,0x74,0x63,0xff,0xb0,0x32,0xce,0xb4,0xa6, +0xcb,0x34,0x74,0x83,0x99,0xe5,0x3c,0x9b,0x5c,0x57,0xde,0xe2, +0xec,0xe1,0x90,0x88,0xa0,0x03,0xc1,0x8a,0x98,0x86,0xff,0x33, +0xa6,0xca,0x1c,0xf7,0x3b,0xe6,0x7b,0x24,0x80,0xf3,0x3d,0x72, +0x20,0xda,0x65,0xfa,0x2a,0x26,0xdd,0x56,0xee,0x31,0x73,0x2d, +0x2f,0xb7,0x3e,0x41,0x25,0xbe,0xfc,0x74,0xcb,0xc9,0x2e,0x6e, +0x7c,0x63,0xc3,0x98,0x03,0x33,0x1e,0x0d,0x7d,0xe4,0x12,0x53, +0x9d,0x9a,0x52,0xa9,0x72,0x93,0x92,0xce,0x69,0x08,0x38,0x0d, +0x56,0x6c,0xd8,0xca,0x82,0x37,0x6c,0x24,0xd6,0x78,0xa2,0x85, +0x15,0xda,0xa4,0x94,0xa5,0xec,0xd0,0x16,0x65,0xf8,0x84,0xa9, +0x4d,0x4d,0x2b,0x53,0x19,0x65,0xcd,0xd3,0xe5,0x36,0xcc,0x64, +0x83,0x0e,0xc7,0xe6,0xa8,0xfc,0x6e,0xca,0x8a,0xad,0x1b,0x89, +0xb7,0xab,0xbd,0x9b,0x43,0x60,0xa9,0x3d,0xdf,0x5e,0x5c,0x5f, +0x59,0x5e,0xcf,0x41,0x9e,0x0b,0x09,0x2c,0xf0,0x2c,0xf0,0x4b, +0x77,0xf6,0xe4,0x8b,0x43,0x8a,0xfd,0x72,0xfd,0x39,0xb8,0x85, +0x1f,0x13,0x31,0xbd,0x56,0x48,0x67,0xc4,0x74,0xe4,0x48,0x9d, +0x90,0xee,0xc8,0x8e,0x2b,0xe0,0x5b,0xd2,0x56,0x57,0xd3,0x9a, +0xd7,0x60,0x98,0xcd,0x07,0x38,0xba,0x3a,0x5a,0xb9,0x70,0x42, +0xd3,0x4b,0x92,0xef,0x97,0xe9,0x95,0xee,0xde,0x95,0xc6,0xef, +0xaf,0x0a,0x28,0x09,0xcc,0xe5,0xd0,0x72,0x1f,0xc9,0xf2,0x4c, +0x73,0x49,0x70,0x1a,0x4c,0xe2,0x23,0x6b,0xf6,0xd5,0x04,0x15, +0x73,0xe8,0x7e,0x90,0x24,0xb9,0x9f,0xb5,0x3b,0xed,0x70,0x21, +0x8e,0x8f,0x6e,0x3c,0x78,0x2e,0xac,0x9c,0x1a,0x89,0x5d,0x09, +0x69,0x85,0x15,0x0d,0xe0,0x9f,0x08,0xea,0x9c,0x68,0xcb,0x24, +0x75,0x9c,0x6d,0x3f,0xd3,0xc6,0x09,0x8d,0xe7,0xc7,0x7f,0xd0, +0x85,0x43,0x4c,0x00,0x6a,0x6b,0x62,0xe4,0x46,0xdc,0x70,0x21, +0x80,0xef,0x86,0x49,0xad,0x30,0xab,0x1c,0x66,0x72,0xc2,0x5c, +0x26,0x1c,0xe7,0xbb,0xa2,0xb9,0x39,0x2e,0xe6,0xc4,0x1f,0x74, +0xdf,0x2a,0x9c,0x67,0xb0,0x01,0x86,0x88,0x61,0x03,0xca,0x0d, +0x6a,0x16,0x78,0x5b,0xf2,0x17,0xfc,0xe0,0x23,0xbd,0x41,0xea, +0x44,0x3b,0xcc,0xc9,0x88,0x0f,0x7c,0xa2,0x33,0x60,0x5b,0xd6, +0xc1,0x1b,0xd5,0xe3,0x47,0xe7,0xb7,0x96,0x71,0xf2,0xdf,0x8f, +0x95,0x13,0x9d,0xb1,0x9f,0x86,0xd9,0x85,0xa8,0x45,0xc6,0xe7, +0x88,0x16,0x63,0x73,0x18,0x2d,0x48,0x21,0x62,0x01,0x4c,0x17, +0x0a,0x18,0xb1,0x80,0x62,0x6b,0xa1,0x00,0xe7,0x88,0x05,0x0c, +0xea,0xd2,0xe5,0xfc,0x96,0x1f,0xfe,0x87,0x67,0xe4,0x5f,0x48, +0xe7,0xf4,0x2f,0x09,0xeb,0xd7,0x33,0x59,0xff,0x39,0xa7,0xbf, +0xee,0xbf,0xcf,0xe9,0x5b,0x2d,0xde,0xb1,0xa9,0xc6,0x89,0xcf, +0xcc,0x91,0x03,0x84,0x93,0x94,0x9a,0x83,0x33,0x44,0xb2,0x03, +0x0a,0xf4,0x85,0x3b,0x7d,0x21,0xaa,0xa1,0x01,0x81,0x99,0xaf, +0x70,0x26,0x0b,0x6b,0x14,0x60,0xe6,0x1b,0xfa,0x42,0x1c,0x78, +0x45,0x22,0xbd,0x43,0xde,0x1d,0xb4,0x57,0x60,0x72,0xca,0x33, +0xab,0xd2,0x6b,0x38,0x2b,0xac,0x25,0xc0,0xdf,0x43,0x9e,0x6d, +0x53,0x00,0xfe,0x01,0x7d,0x16,0x86,0x4e,0x91,0x6e,0xd1,0xce, +0x84,0xc5,0xcb,0x68,0x44,0xaf,0x71,0x8f,0x7e,0x95,0xfe,0x6d, +0xe6,0x03,0xfa,0x2c,0xbc,0x80,0x0f,0x89,0x98,0x64,0xfa,0x07, +0x13,0x61,0x7b,0xc0,0x22,0xc8,0x82,0x83,0x17,0xcc,0x31,0xdb, +0x18,0x8b,0x28,0x4f,0xce,0x33,0x2a,0x3c,0xd2,0x7e,0xfa,0x22, +0x26,0xcb,0x84,0xfa,0xcf,0x3b,0x45,0xf9,0xbd,0x29,0x2a,0x09, +0x8d,0xf1,0xdf,0x9d,0xbc,0xcd,0xe1,0xf7,0xcc,0xd9,0xc2,0xc4, +0x8a,0x84,0x72,0x0e,0xfe,0x66,0xc4,0xfb,0x38,0x9b,0x64,0xee, +0xc9,0xb4,0x4e,0xb5,0x68,0xce,0xe0,0xf7,0xb7,0x87,0x34,0x07, +0xd7,0x4a,0xa7,0xb6,0x8e,0x91,0xea,0x0b,0x45,0x0f,0x92,0xef, +0x58,0x26,0xf1,0xe1,0xdb,0xfd,0xb6,0x3a,0xeb,0x71,0x70,0x14, +0x0c,0x48,0x86,0x49,0x8a,0x51,0xe2,0xee,0x0e,0xe9,0x14,0xfd, +0xfe,0x81,0x7d,0x5d,0xd4,0x61,0xee,0x27,0x09,0xda,0x71,0xea, +0x3b,0x95,0xba,0xcf,0x1e,0xfd,0xee,0xf0,0xe5,0xc8,0x51,0x45, +0xf9,0xb7,0x1f,0x8d,0x2d,0x25,0xf8,0xf9,0x20,0x85,0xcf,0x47, +0xde,0xeb,0xa9,0xf9,0xa0,0xe6,0x00,0x7c,0xce,0x8a,0x5f,0x81, +0x32,0x8d,0xcb,0x15,0x7d,0x6c,0xe2,0xbb,0x40,0x7d,0xdb,0x90, +0x1d,0x5b,0x22,0xbe,0x22,0x7b,0x0e,0x9e,0xad,0x54,0x01,0x7b, +0x16,0x06,0x4a,0xa3,0xfb,0xb1,0xdb,0x4b,0x0e,0x56,0xb2,0xb7, +0xb2,0xaf,0xe7,0x9f,0x2f,0xf0,0x6a,0xe7,0xf1,0x63,0x2b,0x5c, +0xec,0x80,0x0b,0x03,0x33,0x8c,0xf9,0xae,0x84,0x9e,0xa4,0xee, +0x64,0x0e,0x17,0xb2,0xe8,0x10,0x1c,0x67,0x08,0x56,0xd4,0x13, +0xd9,0xb2,0x3b,0x0b,0x7d,0x2e,0x29,0x83,0x01,0xd3,0x9a,0x9d, +0xdd,0xaa,0x02,0x5f,0xb3,0x86,0x99,0x72,0xb8,0x9e,0x1d,0x6f, +0x11,0x72,0xe8,0x8f,0xe5,0x51,0x10,0x60,0x34,0xb1,0x17,0xf3, +0xfe,0x83,0xf7,0xbc,0x28,0xde,0x2b,0x94,0xf0,0x9e,0xf7,0x7b, +0xbc,0xb7,0xe6,0x1d,0xde,0x7b,0x33,0xb6,0x83,0xb4,0x43,0x99, +0xc5,0x60,0x3b,0xa4,0x74,0x62,0x4a,0xa7,0xbe,0x19,0x96,0x49, +0x0f,0x47,0xcd,0xe0,0xa8,0x05,0x0b,0xfb,0xfc,0x49,0x9b,0xae, +0xa5,0xf8,0x95,0xd5,0xd8,0x0f,0xad,0xec,0xb8,0x3d,0xda,0x10, +0xe1,0x21,0xc8,0x8b,0x0f,0x99,0xc1,0x0d,0xa4,0x5e,0x70,0xdb, +0xc3,0x8a,0x1e,0x58,0x4c,0x04,0x1b,0x26,0xd5,0x4e,0xee,0x25, +0xd3,0x94,0x91,0xda,0xa2,0x02,0xda,0xe3,0x05,0x78,0x7c,0x08, +0xac,0xc7,0x16,0xe3,0x37,0x33,0x29,0x76,0xb5,0x67,0xfb,0xe8, +0x87,0xe1,0xcf,0x3d,0x2c,0x94,0xe1,0x16,0xd2,0x25,0xae,0xef, +0xd1,0x93,0x89,0x0b,0x4c,0x61,0x9c,0xd5,0xb3,0x42,0x39,0x6f, +0xb4,0xf5,0xca,0xa0,0x9e,0x30,0xba,0x01,0x3e,0x2a,0x3b,0x27, +0xd5,0x17,0x54,0x1b,0x02,0xb5,0x38,0xa6,0x71,0x23,0x4c,0xf5, +0x84,0x63,0x0e,0xe9,0x14,0x2f,0x3b,0x96,0xe2,0xa7,0x25,0x3a, +0xad,0xef,0xf2,0x73,0xe4,0xc8,0x1d,0xc8,0xd9,0x38,0x78,0x07, +0x32,0x7b,0x30,0xf3,0xa6,0xbe,0x1a,0xe6,0xdc,0xd4,0x53,0x7b, +0x57,0xb1,0x69,0x23,0x8b,0xfa,0x7b,0x09,0x5a,0xb2,0x68,0x73, +0x60,0x96,0x0e,0x4e,0x52,0x6e,0xb7,0x96,0xbb,0x0a,0x4a,0x99, +0x30,0x05,0x5c,0x95,0x60,0xe1,0xd8,0xd9,0x6e,0x56,0xfc,0x01, +0x97,0x91,0xb0,0xd2,0xa0,0xea,0x90,0x7c,0x5b,0x3f,0x3e,0xcb, +0x2f,0xdb,0x2d,0xd5,0x8b,0x13,0xec,0x5d,0x08,0x7c,0xc4,0x84, +0x5b,0x07,0x9a,0xee,0xb5,0x6d,0x0f,0xe0,0x4b,0x3b,0x8b,0x86, +0xd3,0x87,0xb9,0x06,0x4c,0x67,0xe3,0x0b,0xe3,0x0a,0x63,0x73, +0x65,0x49,0x7c,0xc4,0x26,0xef,0xe5,0x76,0x3b,0xb9,0x52,0x19, +0x7e,0xb3,0x9a,0x3d,0x95,0x7e,0x32,0x33,0x8b,0x5e,0x11,0xd6, +0x76,0x2e,0x60,0x73,0x2a,0xb2,0x6a,0x52,0xcb,0xcc,0x32,0xf9, +0x70,0xc7,0x20,0x5b,0x5f,0x17,0x0e,0xbd,0xcc,0x60,0x39,0xce, +0x67,0x82,0x8f,0xef,0x3b,0x16,0xaa,0xbc,0x11,0xbe,0x91,0xa1, +0x1d,0x45,0x09,0xc1,0xfa,0x56,0x2e,0xcb,0xed,0x2b,0xac,0xf8, +0xdf,0xdb,0x07,0x3a,0xf2,0x1e,0x71,0xf4,0xdb,0x8b,0x98,0x9a, +0xc0,0xe2,0xc6,0xbc,0xee,0xcc,0x4e,0xc5,0xce,0xc5,0x34,0xa8, +0xcb,0x36,0xe1,0xd6,0xe5,0xca,0x15,0xa6,0xb0,0xf0,0xd1,0xc8, +0x95,0x38,0xf8,0x58,0x31,0x9e,0x89,0xc3,0x8f,0x87,0x77,0x82, +0xc2,0xea,0x8a,0x6e,0x1e,0x17,0xfe,0x64,0x78,0x13,0x94,0x95, +0xe4,0xa1,0x59,0xd8,0x4f,0x63,0xc2,0xff,0xde,0x26,0x61,0x60, +0x52,0x2f,0x4e,0x02,0x43,0x03,0x34,0xc4,0x99,0xc6,0xc0,0x33, +0x11,0xf8,0xc5,0x1e,0x9c,0xbd,0x18,0xbf,0xac,0xb7,0xe0,0x6f, +0xc0,0x07,0xa5,0x6f,0xce,0xfc,0x4c,0x63,0x42,0xc9,0x80,0x50, +0x22,0xc5,0x84,0x53,0x31,0xca,0x37,0x70,0x5e,0x4d,0x83,0x9c, +0x50,0x00,0xf7,0xc8,0xca,0x41,0x98,0x8d,0x49,0x7f,0xea,0xcd, +0xc5,0x68,0x9c,0x33,0xf8,0x9c,0xcd,0xd9,0x45,0xc2,0x70,0x8a, +0x1d,0xca,0xed,0x5a,0x53,0x63,0xc5,0x77,0x5d,0xae,0xf9,0x3e, +0xff,0x01,0xf7,0x86,0x39,0xbc,0x29,0x5c,0x23,0x40,0x73,0x6f, +0xa9,0x77,0xd1,0xde,0x3c,0x2f,0x33,0xbe,0xd4,0xa7,0xcc,0xa7, +0xc4,0xc5,0x71,0xbd,0xc1,0xb6,0x0d,0x5a,0x55,0xa6,0x3c,0x6c, +0x85,0xd9,0xb7,0x61,0x77,0x0a,0x1c,0xe0,0x1a,0x71,0x2e,0x1b, +0x5f,0x7c,0xa6,0x38,0xb6,0x94,0xa2,0x43,0x51,0x20,0xf8,0x19, +0xe3,0x73,0x28,0xbe,0x48,0x45,0xd8,0x43,0xdd,0xf7,0xa1,0x19, +0x92,0xce,0xf1,0x33,0xa6,0x31,0x4d,0x92,0xe7,0x6b,0xc4,0x43, +0x62,0x3e,0xab,0x93,0xb3,0xef,0xbc,0x32,0x10,0xa6,0x31,0x35, +0xf5,0x9c,0xb4,0x3b,0x68,0x92,0x29,0x27,0x2f,0x68,0x08,0x46, +0xe4,0xd7,0xa1,0xa6,0x07,0x67,0xe0,0x13,0xee,0x2f,0x34,0x99, +0xc9,0x24,0x99,0xc9,0xfd,0xc8,0x34,0xa7,0xa5,0x35,0xab,0x80, +0x0e,0xb8,0x76,0x61,0xfb,0x2d,0xbd,0xcd,0x58,0x62,0x0a,0x36, +0x6c,0xcc,0x42,0x57,0xcd,0xe5,0x32,0x6e,0x29,0x78,0x11,0xd3, +0x66,0xed,0x16,0x9d,0x4a,0x0f,0xea,0x09,0x9d,0xfb,0x1d,0x7a, +0xac,0x39,0x98,0x95,0x48,0x9c,0xf4,0xad,0x2c,0x0c,0x1c,0x6b, +0x6c,0xf9,0xa1,0x86,0x8e,0xfe,0x73,0x97,0x38,0x78,0x14,0x49, +0x3a,0xec,0x5b,0xcd,0x1b,0x0c,0x9b,0xaa,0x78,0xbb,0x7e,0xab, +0x4e,0xb3,0x06,0x6e,0xbc,0x14,0xe5,0xc9,0x65,0xc7,0x51,0xcb, +0x41,0xf3,0xea,0x16,0xde,0xa4,0x6d,0x5b,0xf7,0xce,0x5a,0x6e, +0xac,0x1b,0xc7,0x08,0x6c,0x17,0x3b,0xcc,0x84,0x08,0x35,0xd1, +0x96,0x3d,0x28,0x3b,0xb0,0x3d,0xc4,0x84,0xa3,0x63,0x78,0x7c, +0x6f,0x8c,0xeb,0x61,0x6f,0x2e,0xe0,0x48,0x78,0x94,0xdb,0x74, +0xf4,0x65,0x32,0x64,0x72,0xe0,0xc2,0x8c,0x94,0xa4,0xb7,0x25, +0xa9,0x24,0x36,0xc6,0xb5,0x9f,0xfc,0x9e,0xd2,0x25,0xea,0x69, +0xe2,0x8a,0x62,0x69,0x5c,0xb8,0x88,0xfd,0xe4,0xda,0xdf,0x3d, +0x52,0x9d,0x61,0xe3,0x1c,0xfe,0xdf,0xe2,0xc3,0x0b,0x29,0x38, +0x98,0x3c,0xa6,0xfa,0x5f,0xa3,0x7f,0xe4,0xdd,0xe8,0x2f,0x19, +0x25,0xef,0x4a,0xaf,0xb0,0x6c,0x30,0xae,0xb1,0x43,0xa5,0xcd, +0x38,0xa1,0x58,0x93,0xcf,0x29,0x4e,0x2f,0x4e,0x2d,0xe3,0x44, +0xd5,0xfe,0x5b,0xb0,0x5a,0x08,0xc4,0x65,0x6c,0xe1,0xed,0xcc, +0xbb,0x49,0xcf,0x39,0x38,0x84,0xfc,0xff,0x61,0xba,0x5e,0x33, +0x47,0x36,0x87,0xd1,0xe9,0xf2,0x29,0xf5,0x2e,0xfc,0x77,0xba, +0x4a,0x7d,0x4a,0x5c,0x1d,0xd7,0x19,0xfe,0x3b,0x5d,0x5b,0x60, +0xf6,0x9d,0xff,0xff,0x74,0xc9,0x4b,0xd3,0x35,0xe5,0x7f,0xa7, +0xeb,0x0b,0x69,0xba,0xd2,0x65,0x72,0x4f,0xff,0x3f,0xd3,0xa5, +0x9d,0x23,0x29,0xd3,0x4f,0xfb,0xef,0xe9,0x1a,0xf7,0xd3,0x24, +0x02,0xf3,0x46,0x64,0x28,0x9a,0x90,0xff,0x4f,0xa7,0xe2,0xa5, +0x4e,0x45,0xbd,0xeb,0x14,0xbe,0xc1,0x15,0x04,0x7b,0xf6,0xe3, +0x5c,0xcb,0x7f,0x61,0x6e,0x26,0x85,0xb9,0x4b,0x14,0x41,0x19, +0xd3,0x66,0x4b,0x30,0xf7,0xae,0x24,0x54,0xf6,0x0e,0xe6,0x1e, +0x67,0xc1,0x50,0x82,0xb9,0x14,0xe1,0x80,0xa2,0x24,0x4d,0xa6, +0x44,0xc2,0x71,0x8a,0x23,0x4e,0xd4,0x91,0xba,0xd7,0x76,0xb9, +0xf2,0xfb,0xbc,0xfb,0xdc,0x1f,0xcc,0x11,0xb5,0x08,0x8d,0x40, +0x2d,0xdf,0x92,0xbd,0x05,0x3e,0xf9,0xde,0x26,0x7c,0x89,0x6f, +0xe9,0xde,0x22,0x37,0xe7,0x75,0xb2,0x6d,0x9b,0xde,0x75,0x6f, +0x03,0xcc,0xfe,0x1e,0x76,0x27,0xbf,0xeb,0xde,0x2c,0x36,0xae, +0x38,0xf6,0x5d,0xf7,0x3e,0x96,0xba,0x37,0xf9,0x7f,0xbb,0x37, +0x15,0x0f,0xcd,0x92,0x56,0xe3,0x13,0xda,0x95,0xf7,0xdd,0x8b, +0x10,0x0b,0x59,0xdd,0xec,0x50,0xba,0x1a,0xbf,0x60,0xce,0xfd, +0x57,0xf7,0x22,0x60,0xd7,0x7f,0xc0,0xb6,0xa2,0x74,0x8f,0x73, +0xec,0x4d,0x16,0x99,0x7b,0x4d,0x15,0x4c,0x0e,0x41,0x35,0x07, +0x05,0x23,0x58,0x08,0x26,0xbb,0xd0,0x44,0x6c,0xd1,0x12,0x5a, +0x99,0xb3,0x58,0xf3,0x04,0xf7,0xc3,0x94,0x55,0x2d,0x1e,0x2d, +0xa9,0xf1,0x7d,0x85,0xe0,0xc2,0x1b,0x14,0xcb,0x25,0x09,0xb6, +0xc4,0xae,0x4e,0xb7,0xd1,0xa4,0xd0,0xc5,0x8a,0xef,0xf4,0xb9, +0x60,0x57,0xef,0xcc,0x61,0xb7,0xb8,0x8c,0x5c,0x10,0xc3,0xb5, +0xe9,0xb0,0x69,0xd0,0xd8,0xfc,0xcf,0x64,0x3d,0x41,0x45,0x24, +0x58,0xcc,0xe4,0x3e,0xcc,0xfd,0x3d,0xed,0x67,0xad,0x58,0xfe, +0xc0,0x22,0x1f,0x9c,0xea,0x22,0x1d,0xd1,0x3f,0xcc,0xc4,0x6c, +0x3d,0xac,0x17,0x6e,0xca,0xed,0x0a,0xf5,0xf5,0x5d,0x37,0x9d, +0x32,0xe5,0x54,0x3d,0xa9,0x8a,0x2f,0x4c,0xaa,0x6d,0xfd,0x29, +0x57,0x25,0x6d,0x30,0xf1,0x66,0x2c,0x7c,0xc6,0x89,0x33,0x60, +0xbd,0xf0,0xe9,0xa0,0xf8,0x29,0x5d,0x27,0x6a,0x8c,0xfc,0x75, +0x48,0x27,0xb0,0xf5,0x01,0x4c,0xfb,0xf9,0x31,0x4c,0xe2,0x44, +0x8f,0x8b,0x82,0x26,0xe5,0x75,0xa7,0x13,0x8e,0x28,0x0b,0x9f, +0x61,0x51,0x7d,0x37,0xfd,0x5c,0xde,0xbe,0x94,0xa8,0x63,0x51, +0xe1,0x8a,0x61,0x21,0x72,0x47,0x60,0x02,0x73,0x36,0x3d,0x3e, +0x23,0x2e,0x83,0x13,0x14,0x86,0xc6,0xff,0xd6,0x13,0x56,0x32, +0x3b,0x71,0x0d,0x52,0x70,0x89,0x61,0x33,0xb8,0xb7,0x0b,0xf0, +0x35,0x39,0xff,0xcf,0x2c,0x5d,0x56,0xfe,0x7b,0x41,0x9e,0x40, +0x32,0x2c,0xa6,0x8e,0x95,0x2f,0x07,0x15,0x69,0x6f,0x03,0x55, +0x40,0x01,0xbf,0x84,0x3c,0x5c,0x52,0x3d,0xc4,0x63,0x32,0xa5, +0x30,0xf2,0x30,0xc5,0x04,0xbe,0xe4,0xb6,0x32,0x32,0xfc,0x72, +0x06,0x25,0xd0,0x89,0x38,0x8b,0x13,0xd6,0xff,0x40,0xc4,0xdf, +0x2f,0x0b,0xbf,0xb3,0x52,0xd9,0xb4,0x49,0x24,0xf0,0x78,0xf0, +0xf1,0x10,0x65,0xd4,0x13,0x74,0x34,0xc5,0x63,0x70,0x8c,0xf1, +0xc7,0x19,0x14,0x78,0x6f,0x34,0x78,0x97,0x16,0x71,0xf3,0x39, +0x4c,0x82,0x13,0x4a,0x82,0xc9,0x6e,0x56,0x88,0x12,0x13,0x08, +0xee,0x11,0x12,0x76,0xff,0x33,0xf5,0x22,0x7c,0x0f,0x7b,0xd4, +0x47,0x85,0xab,0x9a,0x74,0x2a,0xec,0x81,0x3a,0x7c,0x16,0xe6, +0x52,0x62,0x34,0x1f,0x17,0xc2,0x17,0x66,0xe6,0x3c,0x2c,0x45, +0x25,0xba,0x78,0x55,0x40,0x0e,0x67,0x53,0xb8,0x15,0x01,0x05, +0x04,0x1e,0x81,0xec,0x3c,0xca,0x60,0x93,0x26,0x6e,0x42,0x7c, +0xff,0x64,0xae,0x0b,0xe6,0x18,0xc7,0x7a,0x1f,0xf7,0x3d,0xe6, +0xaf,0x8c,0xd6,0xba,0x60,0xcc,0x04,0xcc,0x92,0xe9,0xcd,0xd7, +0xa9,0xa7,0xb1,0x88,0xbd,0x3e,0x7c,0xbb,0x00,0x14,0x38,0x81, +0xc5,0xda,0x51,0xa8,0x05,0xab,0xf3,0xcc,0x38,0xa7,0x70,0xba, +0xf4,0x64,0x79,0x95,0x12,0x44,0x50,0x56,0xf1,0x88,0xc5,0xf3, +0x10,0x4a,0xae,0x9b,0x3f,0xd4,0xe8,0x36,0x68,0x68,0xe1,0x8d, +0x86,0xd6,0x5d,0xd9,0x2a,0xe9,0x44,0xea,0x59,0x12,0xe1,0x43, +0xd8,0x0d,0x5a,0x10,0xdb,0x22,0x6c,0xdc,0x19,0xcb,0xdb,0x88, +0x1f,0xe3,0x62,0x3c,0x29,0x4e,0xc4,0xed,0xd4,0xe8,0xf5,0x93, +0x08,0xee,0x18,0x40,0xc5,0x6b,0xf3,0x1f,0xc2,0x5c,0x58,0x78, +0x19,0x34,0xeb,0xc0,0x73,0x57,0x0a,0xf5,0x0b,0x36,0x94,0x70, +0xa0,0x32,0xce,0xc0,0xd9,0x30,0x4b,0x1b,0xb6,0x39,0x82,0xc5, +0xae,0x70,0xfe,0x1c,0x3a,0x5d,0x41,0x5d,0x58,0x8c,0x4b,0x16, +0xae,0x45,0x05,0x0d,0xdc,0x66,0x50,0xaa,0xcd,0x83,0xe6,0x05, +0xf8,0xfa,0xe6,0xab,0xe7,0xaf,0x57,0x80,0xca,0x26,0xd0,0xd5, +0xe5,0xe4,0x85,0x9c,0x31,0x4f,0x02,0xca,0x49,0x40,0x32,0x7e, +0x2d,0xf0,0xed,0xe2,0xd1,0xcf,0x0c,0x9b,0x0e,0x62,0xc2,0xf1, +0x24,0xca,0x78,0xe4,0xe0,0xb3,0xd3,0xf1,0x30,0x59,0x05,0x39, +0x71,0x95,0x81,0xb0,0x6a,0x7c,0xe2,0xf0,0xd8,0x44,0x61,0xdb, +0x80,0xb8,0x8d,0x15,0xed,0xf1,0x30,0x31,0x00,0x2f,0xfc,0x92, +0x55,0xf3,0xdc,0xe2,0xbf,0xdc,0x2f,0x47,0x9f,0x7f,0x54,0x78, +0x31,0xef,0xbb,0x52,0x0e,0xe7,0x0d,0x09,0xb1,0x7a,0x38,0x91, +0x1d,0x9b,0xd8,0x40,0x34,0xad,0xb4,0x3d,0xb7,0xfb,0x70,0xa0, +0xa1,0x27,0x2a,0xb1,0xdb,0x4a,0x02,0xaf,0x2a,0xc3,0x64,0xa6, +0x23,0x2d,0xbb,0x49,0x05,0xa6,0xb3,0x86,0x59,0x72,0x74,0x8d, +0x7c,0xca,0xba,0x85,0x27,0x50,0xda,0x34,0x8f,0x7d,0x5e,0x7e, +0xbd,0xf6,0x4a,0xbb,0xd4,0x26,0xe1,0x2e,0x11,0xd6,0xf7,0x88, +0xeb,0x5f,0x33,0xa0,0x9c,0x00,0x5f,0xa4,0xfe,0x9e,0xe3,0xd3, +0xc1,0xdb,0xe3,0x5e,0xac,0x8d,0xc2,0xe4,0xe9,0x49,0xd4,0x6b, +0x72,0x30,0xe9,0x54,0x1c,0xb0,0x2a,0x73,0xc5,0x85,0x32,0x61, +0x21,0xfa,0xb2,0xf8,0x2d,0x6a,0x2c,0xc4,0x98,0x55,0xca,0xc5, +0x46,0x10,0xfe,0x10,0x14,0x9e,0xe5,0xfc,0xad,0x18,0x87,0x57, +0x46,0xe0,0x4a,0x1c,0x93,0x3b,0x03,0xe6,0xac,0x84,0x88,0x35, +0xc5,0x7d,0x3c,0x9e,0x7e,0x82,0x3a,0xbf,0xc1,0xb7,0x4a,0xa2, +0x15,0x75,0x80,0xb7,0xd2,0xee,0xe7,0x5c,0xca,0xe5,0xb4,0x06, +0xa0,0xdf,0x40,0x0f,0x5d,0xcd,0xc0,0x75,0x13,0xab,0x1e,0xb8, +0x3a,0x64,0xdd,0x7e,0x4e,0xb8,0x59,0x4a,0x76,0xe5,0x1f,0xb8, +0xa8,0x4c,0xd9,0x48,0x73,0x5a,0x56,0xbd,0x4a,0x37,0x2b,0x4b, +0x95,0x53,0x43,0x15,0xd6,0x47,0xaa,0xa8,0x32,0xc2,0x3e,0xc8, +0xfa,0x3e,0xff,0x52,0xa5,0xd7,0x39,0x5e,0xcb,0x53,0x2f,0x78, +0x7b,0x28,0xf7,0x87,0x94,0x69,0x9e,0x38,0xf6,0x88,0x2c,0xf1, +0xc1,0x29,0xfb,0x70,0xfd,0xb1,0x60,0x4d,0x4f,0x2d,0x1b,0x1b, +0x4a,0xa7,0xdb,0xda,0x4b,0x47,0xb2,0x7a,0x60,0x5a,0x2c,0x7c, +0x9d,0x0e,0x1f,0x50,0x08,0xf9,0xc7,0x78,0x35,0xc1,0x19,0x8c, +0x43,0x64,0xf2,0x39,0x95,0xb1,0x3c,0xed,0xf1,0x52,0x76,0x63, +0xa1,0xf7,0x6d,0x65,0xca,0xc9,0x5a,0xb3,0xa4,0x4a,0x0e,0xa6, +0xac,0x5e,0xae,0x9c,0x28,0x13,0x12,0x49,0xb9,0x53,0xb9,0x6d, +0xbe,0x7d,0x4b,0x09,0xef,0xd7,0xe0,0xde,0xec,0x51,0xc5,0xe1, +0xd4,0xb9,0x24,0xac,0x24,0xb8,0x6c,0x5f,0x96,0x4d,0x20,0x9f, +0x11,0x94,0xe5,0x95,0xe2,0xcd,0xb5,0x50,0x5c,0xd2,0x5b,0xdc, +0x59,0x53,0x55,0xcf,0xd5,0x89,0x1f,0x59,0x41,0x0d,0xeb,0x17, +0xe0,0xe2,0x6f,0x1b,0xe4,0x96,0xed,0x46,0x69,0x85,0x87,0x13, +0x5f,0x17,0x72,0x2e,0xb0,0x3e,0x80,0xc3,0x20,0xb1,0xb1,0x5f, +0xa0,0x44,0x90,0x09,0x77,0xde,0xef,0x12,0xe8,0xc6,0x1d,0xdf, +0xb7,0xef,0xf8,0x81,0xe9,0xf1,0xd6,0xd7,0xcf,0xfc,0x95,0x34, +0x94,0xa8,0x58,0x60,0x5d,0x5f,0xe0,0xdf,0xe8,0xdd,0xee,0x59, +0xa3,0xe8,0xe4,0x97,0x14,0x9e,0x74,0x20,0x29,0x54,0xd1,0x33, +0x66,0x4f,0x8c,0x43,0x4c,0x56,0x45,0x5a,0x75,0x4a,0x25,0x07, +0x9a,0xe2,0x76,0x55,0xa6,0xa8,0x3e,0x30,0xdd,0x37,0x73,0x6f, +0xa6,0x62,0x55,0x65,0x61,0x6d,0x5a,0x2d,0x57,0x8d,0xf9,0xd6, +0xe0,0xcc,0x46,0xf8,0x05,0xf9,0xf9,0xf9,0xbb,0xe4,0x3a,0x67, +0xbb,0xa5,0xf9,0xec,0xe1,0xcb,0x0e,0x94,0x87,0x96,0xee,0x73, +0xf1,0xb1,0xf3,0xb7,0xdd,0x9f,0x67,0xc5,0x77,0xe7,0x75,0x94, +0x9c,0xab,0x2c,0x09,0x29,0x0e,0x29,0x08,0xe1,0x22,0x25,0xe1, +0x86,0x6b,0x4c,0x7b,0x56,0x56,0xbb,0x8a,0xe0,0x42,0x71,0x67, +0x54,0x5c,0x64,0x7c,0x64,0x1c,0x9d,0x78,0x4f,0x77,0xd2,0x93, +0x9f,0xdb,0xab,0x32,0x96,0xb5,0x9d,0x46,0xd6,0x70,0x36,0x73, +0xb7,0x9c,0xfc,0xdb,0x79,0xc2,0x4c,0xe2,0x69,0x63,0x69,0x65, +0xeb,0xba,0xbf,0xfb,0x60,0x5f,0xf4,0x05,0x0e,0x66,0x82,0x2b, +0xae,0x65,0x0a,0x0b,0x0b,0x2a,0x32,0xcb,0xb8,0x7a,0x0c,0x65, +0xcf,0xa6,0x9e,0x4d,0x8b,0x4f,0x33,0x4a,0xe5,0xdd,0xb6,0x6b, +0x6e,0x5e,0x61,0x54,0x6d,0xc7,0xe7,0xa7,0xcb,0xe1,0x66,0xd8, +0xc5,0x1a,0xda,0x6c,0x72,0x5d,0xbc,0x37,0xd7,0x94,0xbf,0x9a, +0x37,0x52,0xd4,0x53,0x99,0x18,0x9a,0x14,0x92,0x10,0xbc,0xc3, +0x12,0x3f,0xb0,0x59,0xed,0x97,0x63,0xca,0x3f,0x2d,0x82,0x09, +0x2d,0xa3,0x6d,0x67,0x83,0xe2,0x83,0xce,0x04,0xae,0xd6,0x46, +0x5e,0x1b,0x89,0x7b,0xae,0x09,0x2f,0x9d,0xab,0x51,0xbc,0x78, +0x6b,0x88,0x8b,0x0d,0x38,0x15,0x10,0xa4,0xa4,0xe1,0x1b,0x69, +0xa3,0xbc,0x89,0xa1,0x3e,0x7f,0x94,0xb9,0xd3,0x5c,0xf2,0x06, +0x26,0x58,0xc3,0x17,0x26,0x0f,0x55,0x32,0xd3,0xd2,0xa5,0xea, +0xdf,0x75,0x4c,0x1a,0xda,0x8e,0xe2,0x3c,0xf8,0x12,0x15,0x6b, +0x3b,0xf9,0xdd,0x17,0xad,0x2f,0x7a,0x5e,0xeb,0x6d,0xe8,0xed, +0xa9,0x6a,0xe5,0xc6,0x55,0xf0,0x03,0x52,0x7e,0xa5,0xe8,0x71, +0x5c,0x0f,0xd7,0x32,0x87,0xf5,0x6e,0xed,0x1b,0x69,0xba,0x9e, +0x77,0x59,0xb1,0x19,0x3b,0x8d,0x21,0x8c,0x0d,0x36,0xf3,0xb2, +0xb2,0xb7,0x08,0x28,0xf7,0x2b,0xf5,0x2f,0x72,0x70,0xe6,0xeb, +0x6c,0xeb,0x4c,0xca,0xcd,0x39,0x5c,0x65,0x08,0x4a,0xa2,0xf1, +0x42,0x29,0xc4,0x7d,0xcf,0xb4,0x65,0x66,0xb6,0xa9,0x08,0x7a, +0x77,0xd8,0xc3,0xd6,0xfe,0x6a,0xde,0xc6,0x9c,0x10,0x28,0x38, +0x93,0x50,0x5f,0x3f,0x2f,0x1f,0x5f,0x0e,0xcd,0x99,0xd2,0xc2, +0x82,0xa2,0xdc,0x12,0xee,0x21,0x4e,0xa3,0x41,0x0a,0x57,0xc2, +0x64,0x96,0x0e,0xcf,0x64,0x29,0x93,0x68,0x1d,0x4e,0x66,0xe5, +0xc7,0xfe,0x84,0x57,0x04,0x56,0xe3,0x0b,0x30,0x11,0x56,0xf6, +0x89,0x2b,0xaf,0x69,0xab,0x8b,0xd3,0x8d,0x84,0xe9,0x68,0x82, +0xff,0x63,0x02,0xff,0x83,0x1f,0x88,0xcb,0x8c,0x85,0x65,0xf8, +0xc9,0xfb,0xff,0x4d,0xc5,0x1d,0x6c,0xba,0x91,0x1c,0x2c,0x66, +0x3a,0xf3,0x72,0x3b,0xa4,0x2a,0xac,0x65,0x86,0x17,0x20,0xe4, +0x45,0x2f,0x3b,0x7e,0x02,0x46,0x49,0xa1,0x6b,0xb5,0x7e,0xa6, +0x7d,0x77,0x01,0x1f,0xd2,0xe8,0xd6,0xe7,0x5d,0xc7,0x09,0x4e, +0xb8,0x91,0x54,0x54,0x57,0x5d,0xce,0xa8,0x93,0xe5,0xf3,0x07, +0x1c,0xdd,0xf5,0xdd,0x1d,0x38,0xf8,0x6a,0x39,0xc1,0x0f,0xb0, +0x0c,0x3e,0x60,0xb1,0x72,0x22,0x7c,0x42,0xb1,0xfb,0x27,0xd4, +0x6b,0x17,0x8e,0x9d,0x23,0xa9,0xaa,0x3d,0x5a,0x30,0x71,0x53, +0x39,0xc5,0xa4,0xec,0x4d,0xeb,0x8b,0x81,0x43,0xdc,0x4e,0x26, +0x48,0xdb,0x70,0x3d,0x7e,0xba,0xa9,0x8c,0x3a,0xcf,0x8f,0x6e, +0x5d,0xbb,0x95,0xf1,0x9c,0x13,0x4a,0x71,0x94,0x1c,0xc8,0xd8, +0x9f,0x15,0x9a,0x39,0xd2,0x73,0xf1,0x56,0xfd,0x3d,0xae,0x4d, +0x5c,0x6f,0x00,0xaf,0x58,0x37,0x43,0x33,0x03,0x99,0x95,0x43, +0x83,0x7d,0xad,0x73,0x89,0x8b,0x13,0xdf,0x6d,0x7f,0x51,0xab, +0xdb,0x80,0xc3,0xa3,0x86,0x60,0x2a,0xaa,0xe3,0x02,0xe9,0xfc, +0x3d,0x7c,0xce,0xb4,0x65,0x65,0xd3,0x85,0xb5,0x1e,0xbe,0x65, +0x83,0xb4,0x5c,0x34,0x1c,0x65,0xed,0x3e,0x7c,0xcb,0xa5,0xba, +0x7b,0xb9,0xb7,0xb9,0x56,0x4a,0xe9,0x3b,0x49,0x0f,0x56,0xc8, +0x60,0xc2,0x2c,0xd4,0x91,0x81,0x0e,0x8d,0x2e,0xca,0xf8,0x68, +0x60,0x00,0x4a,0xa1,0x08,0xbf,0xa6,0x51,0x69,0x7d,0x0f,0x4a, +0xb9,0x21,0x33,0xc4,0x13,0x04,0x36,0x82,0x2f,0x6e,0xa4,0x23, +0xf8,0x57,0x2a,0xc1,0x89,0xf7,0x76,0x82,0xf3,0x61,0xa8,0xe5, +0x20,0x6f,0x18,0xf3,0x41,0x63,0x37,0x6a,0x88,0x8d,0x3a,0x42, +0x13,0x0d,0xdb,0x8d,0xb7,0xf0,0x28,0x4c,0x5b,0xde,0xe2,0xde, +0x9a,0x1a,0xd7,0x5e,0x24,0x85,0xed,0x12,0xb9,0xd3,0x42,0x18, +0x71,0xa8,0xd4,0xa9,0x31,0xcd,0x73,0xb7,0xe4,0x3b,0x03,0x2e, +0x38,0xd5,0xbb,0x73,0xe3,0x87,0x24,0xa9,0x9a,0x9d,0xc3,0xe2, +0x4e,0x46,0x88,0x16,0x27,0x90,0x61,0xb1,0x59,0x87,0xfa,0x8c, +0x56,0xc1,0x9c,0x40,0x06,0xc0,0x85,0xf1,0x0e,0x6d,0xe1,0x4b, +0xcc,0x10,0xd5,0xb4,0x04,0x35,0x91,0xc5,0x23,0x6c,0x86,0xa6, +0x1c,0xb8,0x31,0xdd,0x05,0xf9,0x5d,0x2a,0x20,0x0a,0xca,0x23, +0xb4,0x29,0x53,0xc1,0x83,0x40,0x3c,0xfc,0x82,0xf1,0x14,0x39, +0x77,0x0e,0x8c,0xbf,0x35,0x80,0x5a,0xdc,0x4a,0xe1,0xd2,0x2f, +0x10,0x85,0x7a,0xd8,0x6d,0xf0,0x96,0x1f,0xc0,0x8b,0x8c,0xb8, +0x47,0xf0,0x26,0x10,0x05,0xa1,0xb0,0x16,0x43,0x21,0x1e,0x43, +0x31,0x1e,0x8f,0xe2,0x5a,0x38,0x8a,0x51,0x8c,0xbc,0x10,0x22, +0x3c,0x23,0xb8,0xed,0x18,0xae,0x8f,0xdc,0xa1,0x6c,0x7a,0x28, +0x30,0xd2,0x6a,0xfa,0x4a,0xa9,0xa6,0xdd,0x1d,0xe6,0x56,0x75, +0xfe,0x8d,0x14,0x95,0xd4,0xfb,0xa7,0x41,0x1d,0x02,0x95,0x28, +0xc3,0x4e,0x2e,0x48,0xaf,0x4e,0xa9,0xe6,0x84,0x43,0x03,0xff, +0x28,0x18,0xc0,0x0f,0x4c,0x88,0xb9,0xaf,0x6c,0xaf,0x25,0x07, +0x49,0xe2,0x69,0x72,0xa3,0x71,0xa8,0xbd,0xad,0xab,0x53,0x76, +0xde,0xf2,0x3b,0x87,0x92,0x2e,0x7e,0x67,0x9d,0x41,0x8b,0x65, +0xc7,0xe5,0xa7,0xb5,0xbf,0x65,0xc3,0x04,0xee,0x1c,0x3e,0x92, +0x41,0x2e,0x1b,0xba,0xc6,0x63,0x83,0x89,0xba,0xc5,0x05,0xb7, +0xab,0x21,0xb7,0x64,0x41,0x7c,0xee,0xda,0x7a,0xd5,0x7e,0x0d, +0x1b,0x33,0x03,0x1b,0x75,0x47,0x4e,0xb4,0x68,0x23,0x90,0x27, +0x4c,0xc6,0x3c,0xa6,0x0f,0xbf,0x27,0x90,0x05,0x2b,0x31,0x8b, +0x1d,0x53,0xc1,0x26,0x32,0xf0,0xcf,0x0c,0xc9,0x9b,0x16,0x08, +0x7f,0x10,0x0d,0x74,0x13,0xbf,0xd9,0xf5,0x56,0xf9,0x92,0xb8, +0x89,0xb6,0x3c,0x6f,0xec,0x26,0xd9,0x89,0xb3,0xc4,0x59,0x3a, +0x6f,0x27,0x0e,0x8b,0x2b,0x19,0xf0,0x1e,0x5f,0x4f,0x6c,0x0f, +0x27,0xd5,0xa9,0x08,0x26,0xe2,0xec,0x55,0x2c,0x86,0x1b,0xcd, +0x46,0xc3,0x25,0xca,0x95,0x06,0x72,0x20,0xfb,0xf9,0x11,0x7c, +0x06,0xa7,0x94,0xda,0x21,0x5b,0x5c,0xc9,0x1a,0x14,0xed,0xbd, +0xa0,0x0c,0xcb,0x99,0xf6,0x54,0x49,0x9d,0x41,0x9b,0xd5,0xa6, +0x8c,0x77,0x0f,0xfd,0x8d,0x6c,0x29,0xfe,0x4d,0xd0,0xc1,0x09, +0xe2,0x72,0x83,0xb7,0x4a,0x03,0xac,0xb4,0x5f,0x4f,0xc6,0xe7, +0xe0,0x4b,0xe8,0xc1,0x24,0x5c,0xc7,0xa4,0xd3,0x2b,0x29,0x33, +0x3d,0x39,0x39,0x9d,0x2a,0x94,0xcd,0x37,0xb2,0xda,0x60,0x45, +0xc4,0xa2,0x27,0x42,0x11,0x83,0x33,0x26,0x2e,0x13,0x8b,0x7e, +0x64,0x1b,0xd1,0x88,0x98,0xac,0xdf,0xa2,0x35,0xdb,0xb0,0xce, +0x94,0xff,0x73,0xe0,0xd9,0xbd,0xfe,0x27,0x1c,0x3c,0x0f,0x21, +0x0f,0x74,0xaf,0xe9,0xdf,0x5d,0xdb,0xda,0xc4,0x6f,0xb8,0xb7, +0xf1,0xd2,0xe6,0xde,0x77,0xb1,0xf6,0x26,0xd1,0xd4,0x10,0x97, +0x9a,0xbe,0xe5,0xbb,0xc4,0xcd,0x0c,0x02,0xd6,0x92,0xb1,0x45, +0xb0,0x73,0x7c,0x11,0x33,0x8c,0x5f,0x90,0x1b,0x42,0xd5,0x16, +0x76,0xfc,0x53,0xac,0x92,0x4a,0x17,0x79,0xe2,0x27,0xc3,0xa0, +0x36,0xfe,0x13,0xaa,0xb1,0x82,0x07,0xc6,0x12,0x59,0x64,0x42, +0x13,0x8d,0x41,0x82,0x4d,0x75,0x74,0x8f,0x68,0xee,0x2a,0x77, +0x9f,0x05,0x2e,0x19,0x98,0x8c,0x67,0xd9,0x1e,0x6d,0x3c,0xce, +0xf3,0xc4,0xc3,0xbe,0x68,0x7f,0x28,0xd5,0x84,0xbf,0x7a,0xfa, +0xf6,0x99,0xdb,0xf1,0xdc,0x06,0x16,0xdf,0xfa,0xc4,0x19,0xc1, +0xeb,0x62,0x39,0x53,0x76,0x7d,0x51,0xf0,0x4f,0xca,0x74,0xfa, +0x3a,0xb3,0xd2,0x5a,0x54,0xae,0xb0,0x3a,0x69,0x72,0xcb,0xde, +0x75,0x3d,0x83,0x9c,0xd7,0xd1,0x15,0xe7,0x99,0xbe,0x65,0xba, +0xd8,0xf1,0xce,0xc5,0x04,0x2f,0x8f,0x05,0xc1,0x65,0x76,0x7c, +0xad,0x54,0x53,0x69,0xaf,0x20,0xe0,0x5e,0x56,0x4c,0x06,0x2d, +0x82,0xb3,0x85,0x55,0x30,0x9b,0xc5,0x7f,0x16,0x91,0x4e,0x38, +0x6f,0xc6,0x82,0x3e,0xee,0x22,0xe3,0x9b,0xf0,0xec,0xd8,0x26, +0x46,0x17,0x96,0x10,0xb1,0xbf,0x47,0xe8,0x67,0xc4,0xfe,0xb9, +0x44,0xe8,0x97,0x89,0xfd,0x0c,0x6e,0xc3,0x95,0xe4,0xed,0x8c, +0xee,0x7f,0x66,0x48,0xf9,0xf9,0xba,0x52,0xbd,0xec,0x8d,0x77, +0x61,0xf9,0x69,0xd0,0xa6,0x80,0x2f,0x16,0xb5,0x1f,0xa2,0x32, +0x35,0x3d,0xdd,0x06,0x8a,0xf7,0xbc,0xc1,0x61,0x37,0x28,0x49, +0x47,0xd8,0xdd,0x76,0xa2,0x1b,0x8b,0xc5,0xba,0xb8,0x04,0xed, +0xd0,0x4c,0x19,0x93,0x1c,0xa5,0x43,0x29,0x5f,0x5e,0x04,0x85, +0x32,0x50,0x3e,0x9d,0x1c,0x77,0x32,0xee,0x10,0xc5,0xfd,0x9b, +0xf9,0xff,0x87,0xaf,0xff,0x0e,0xa8,0xe2,0xda,0xda,0xc7,0x71, +0x1b,0xb3,0x47,0x8d,0xc6,0x18,0x37,0x0e,0x98,0x80,0x1a,0x7b, +0xec,0x5d,0xec,0xa2,0x28,0x20,0xbd,0x77,0x44,0x50,0xaa,0x05, +0xc1,0xae,0x34,0x7b,0x97,0x22,0xbd,0xd7,0x73,0x0e,0xbd,0x77, +0x91,0x8e,0x5d,0xec,0xc6,0xae,0xd1,0xd4,0x9b,0x68,0xca,0x9a, +0x93,0x35,0xe4,0xfd,0xee,0xc1,0xe4,0xde,0xf7,0x93,0xf7,0xfe, +0x7e,0xfe,0x21,0x73,0xe6,0x9c,0x99,0xd9,0x65,0xad,0x67,0x3d, +0xcf,0xde,0x7b,0xf6,0xaa,0xad,0x65,0x2c,0x6d,0x41,0x68,0x7c, +0xd8,0xe9,0x83,0x61,0x5a,0x7b,0x0e,0x1c,0x39,0xad,0x91,0xf0, +0xfc,0xcc,0x8b,0xef,0xb4,0x61,0xa1,0x21,0x2e,0x24,0x78,0xc3, +0x04,0xa7,0xe3,0x64,0x5c,0xab,0x33,0x14,0xce,0xaa,0x5f,0x50, +0x17,0xb4,0x33,0x60,0xd4,0xa8,0x0f,0xf2,0x25,0x8c,0xee,0xe7, +0xe5,0x16,0xe6,0x96,0xf3,0x52,0x52,0xa7,0x9a,0x23,0xa5,0x8f, +0x0a,0xde,0x66,0xfc,0xc2,0x8b,0x9e,0xf8,0x0d,0xcd,0x7a,0x9d, +0xf9,0x6b,0x02,0x33,0x5b,0x29,0xca,0x1c,0x26,0x71,0xc7,0xa5, +0xf1,0x8e,0xb8,0x1a,0x0d,0xd0,0xa8,0xce,0x59,0x00,0x73,0xb0, +0x69,0x01,0xeb,0xd3,0xe2,0x22,0x1e,0x82,0xb8,0x7d,0xd3,0x77, +0x4c,0xf6,0xc3,0xbe,0x3c,0x18,0x72,0xc7,0x70,0x4c,0x04,0x0e, +0xdb,0x3b,0x87,0xb7,0x0a,0x0d,0xd8,0xbd,0x66,0x14,0xd3,0xed, +0x0c,0xad,0xd9,0xd5,0x6f,0x1b,0xf2,0xdf,0x24,0xea,0xa6,0xbc, +0x8b,0x62,0xec,0x09,0xec,0x78,0xf9,0xdd,0x7d,0x15,0xed,0xa9, +0x91,0x17,0x52,0x64,0xec,0x45,0xfb,0x05,0x38,0x5e,0xa7,0xd5, +0x5e,0xe3,0x0d,0x2c,0x4a,0x63,0xee,0x99,0xa3,0x0d,0x54,0x1d, +0x4c,0xf0,0xf1,0x42,0x66,0xd7,0x46,0x1c,0xae,0x9f,0x8f,0x14, +0x23,0x70,0xba,0x4e,0xb1,0x19,0x38,0x83,0xe6,0xef,0x30,0x22, +0x16,0xa6,0x31,0x35,0x1f,0x8b,0x53,0x81,0xc3,0x11,0xe0,0x82, +0xb4,0x98,0xb5,0xda,0x71,0x98,0x3e,0x0b,0x46,0x80,0x31,0x93, +0xf4,0x22,0xa3,0x1c,0x6b,0xd0,0x7d,0x06,0x0e,0x65,0xb5,0xe6, +0x4b,0x2c,0x84,0x4b,0x65,0x17,0xeb,0x6a,0x5b,0x78,0xa9,0xfd, +0xba,0x7a,0x0c,0xa9,0xbe,0x55,0xfa,0x95,0xe2,0x2d,0x0f,0x69, +0x58,0x4b,0xf7,0xc5,0x1e,0x3c,0x79,0xe0,0x40,0x78,0x84,0x70, +0x18,0xae,0x1b,0xfe,0xa9,0x7d,0x8d,0x81,0xd7,0xf9,0xf3,0xa7, +0xe4,0x7d,0xd0,0x4a,0x71,0x57,0xf9,0x45,0x8d,0xa1,0x90,0xc3, +0xee,0x65,0x87,0x0e,0x2b,0x18,0x6d,0x1f,0xdc,0xbb,0x43,0x57, +0x91,0xaa,0xa8,0xbc,0xa0,0x96,0x97,0xf2,0xaf,0xa8,0x29,0x29, +0xbd,0x57,0xf0,0x22,0xf3,0x07,0x9e,0x01,0x8e,0x29,0x4d,0x26, +0xb0,0x7a,0x2d,0xb3,0xcd,0x20,0x0c,0x33,0x83,0x10,0x12,0x82, +0x17,0xf5,0x58,0xb3,0x5b,0xe0,0x94,0x6a,0xa6,0xa2,0x36,0xc2, +0xfc,0x97,0x60,0x12,0x0b,0x9d,0x3c,0x84,0x72,0xe8,0x17,0x81, +0x4b,0xf6,0x8d,0xd6,0x59,0x17,0xb6,0x77,0xe7,0xb2,0x51,0x38, +0x8e,0x4b,0x36,0xd1,0x80,0x09,0xdc,0x4f,0x45,0xe5,0x6f,0xe2, +0x75,0x93,0x81,0x44,0xc2,0x02,0xa8,0xd4,0xfe,0x2f,0xcf,0x2e, +0x2b,0x2a,0xab,0x29,0xbe,0xc4,0x4b,0xf5,0x57,0xd4,0x53,0x48, +0xe1,0x2d,0xc5,0xa3,0xb4,0x57,0xbc,0x9a,0xef,0x79,0x4c,0xf1, +0xf3,0x2a,0xec,0xdf,0x3e,0xe7,0xf5,0x75,0xe8,0x93,0x07,0x9a, +0x67,0x60,0x31,0x0f,0x7b,0x2e,0xe3,0x1e,0xb0,0x30,0x64,0x05, +0x78,0xb6,0x1e,0x9e,0x71,0xc7,0x71,0x72,0x10,0x6a,0xd8,0x4e, +0xb7,0xea,0x76,0x7d,0xe1,0xfb,0xbb,0x59,0xb0,0x50,0x8a,0x43, +0x9b,0xa6,0x5c,0x5d,0x6a,0xa5,0xbf,0xc4,0x0c,0xfb,0x58,0xaa, +0xcc,0x59,0xa8,0x69,0x7f,0x76,0xb5,0xf3,0xfe,0x77,0x53,0x61, +0xa0,0x09,0x8c,0x72,0x67,0xf4,0x3b,0x89,0x3d,0xdf,0x11,0xed, +0xf5,0xf1,0x33,0x24,0xec,0xf9,0xd6,0x42,0xbe,0x32,0xbf,0x44, +0x59,0xcd,0x4b,0xd9,0x97,0xd5,0x1f,0x93,0xd2,0xfb,0x05,0xaf, +0x33,0x7f,0xe2,0xeb,0xbe,0xa4,0xe0,0xc9,0x1d,0x95,0xa6,0xd8, +0xe1,0x04,0x0c,0x46,0xa7,0x5a,0x56,0xdb,0xfd,0xe0,0x71,0x05, +0x56,0x9f,0x93,0xed,0xc3,0x67,0x0a,0x87,0x7a,0xe1,0x68,0xb5, +0x17,0x27,0xeb,0x4c,0x09,0xdf,0xbe,0x63,0xfe,0x28,0x86,0x20, +0x72,0x7d,0xa7,0x32,0xb9,0x55,0x5b,0x05,0x9f,0xc7,0xe9,0x26, +0xc1,0xb4,0x68,0xb0,0x82,0x45,0xda,0x30,0x53,0x6a,0x20,0xc5, +0xb8,0x96,0xee,0x41,0xc1,0x6f,0xa1,0xde,0xd8,0x4b,0xde,0xc2, +0x33,0xe8,0x53,0xf4,0x6b,0x32,0x68,0xfd,0xb7,0xd2,0x14,0xa8, +0x0a,0xcb,0x54,0x75,0xbc,0xa4,0xba,0xac,0xd6,0x24,0x25,0xf7, +0x54,0x2f,0x32,0x7e,0xe0,0xd5,0x23,0x7b,0x36,0xd1,0xad,0x09, +0xdb,0x12,0xb6,0x25,0xf1,0x49,0x30,0xf9,0x02,0xac,0x85,0x99, +0xda,0x30,0x4b,0xea,0xb0,0x00,0x7b,0x72,0x62,0xf4,0xd1,0xd9, +0x61,0xcb,0x9d,0x5a,0x5c,0xda,0x36,0x74,0x3a,0x6e,0x16,0x2e, +0x2e,0x6f,0x5d,0xd9,0x65,0xe0,0x83,0x8b,0x56,0x7e,0xc1,0x8a, +0x3e,0xbc,0xcc,0x4a,0x80,0x71,0x30,0xfc,0x11,0xf4,0xab,0x80, +0xf9,0x0f,0x17,0x3f,0xd3,0x7f,0x65,0xc6,0xcf,0x0c,0xd9,0x16, +0xbc,0x68,0x14,0x7e,0xce,0x25,0x9b,0xca,0x59,0xc5,0xde,0x55, +0x17,0xbe,0x4b,0xd1,0x4d,0x0b,0x49,0x0d,0x49,0x0b,0xe5,0xf1, +0x37,0xf8,0x83,0x26,0xbe,0x39,0x0f,0x7d,0x4e,0x83,0xc0,0xc3, +0x91,0x49,0x1c,0x8e,0x0d,0xc7,0x85,0x07,0x50,0x57,0x67,0x6e, +0xa7,0xde,0xed,0x15,0x5f,0xb1,0x32,0x17,0xb2,0x32,0xdb,0xa0, +0xe3,0x32,0xd4,0x62,0x20,0x2a,0x97,0xb9,0xbc,0xa8,0xac,0xba, +0x84,0xf5,0x60,0xdd,0x15,0xf5,0x38,0x52,0xdc,0xad,0x7a,0x9c, +0xf1,0x86,0x87,0x36,0x69,0x08,0x85,0xd3,0xe4,0x9b,0xc4,0x37, +0x29,0xf7,0xb3,0x03,0x5a,0x05,0x9c,0xe4,0x88,0x6e,0x5b,0xd1, +0xe9,0x60,0x9c,0x89,0x70,0xef,0xdc,0xb3,0xa8,0xa7,0xb1,0x3c, +0x1e,0xc2,0x3a,0x13,0xa8,0x93,0x36,0x5c,0x15,0x37,0x40,0x57, +0x17,0xe3,0x0e,0x99,0xec,0xd6,0xf6,0x68,0xbf,0x8a,0x35,0xc7, +0xc0,0xbf,0x9b,0xa3,0x54,0x55,0xc3,0x4b,0x79,0x97,0xd5,0xc3, +0x48,0xd9,0xfd,0x82,0x57,0x99,0xff,0xe2,0xe1,0x70,0x34,0x75, +0x47,0x6e,0x16,0x7e,0x8a,0xeb,0x47,0x17,0x5b,0xc8,0x1b,0xaf, +0xf5,0x79,0x0f,0x83,0xf3,0x61,0xb4,0xbc,0xab,0x2f,0xd3,0x79, +0x1a,0xc8,0xc3,0x5a,0xec,0x5f,0xd8,0x26,0xe0,0x7a,0xe8,0x3f, +0x15,0x06,0xb8,0xc0,0x10,0x1e,0xef,0xfc,0x39,0x8e,0xc2,0x58, +0xd0,0x2a,0x83,0xe1,0x50,0xa6,0x6d,0xcc,0x61,0x22,0x73,0x70, +0xe6,0x85,0x83,0x75,0xc4,0xe3,0xf6,0x54,0x2c,0x35,0x92,0x4a, +0x59,0x09,0x22,0x18,0x96,0xb8,0xa3,0xad,0x11,0x8e,0x1d,0xd7, +0x3b,0xbb,0xad,0x50,0x2a,0xcb,0x15,0xf5,0xcc,0x33,0x3a,0x98, +0x97,0xa9,0xee,0xe4,0x3e,0x4b,0x79,0xcb,0x9f,0x40,0x27,0xaa, +0x1e,0xd9,0x8e,0xd7,0xe1,0x4b,0x23,0xa6,0xdc,0x92,0x38,0xf1, +0x75,0xcf,0x5a,0xba,0x92,0xf3,0x0f,0x89,0x51,0xe8,0x8a,0xdb, +0xa4,0x3e,0x4c,0xec,0xa0,0xb5,0x1f,0x8e,0x40,0xdd,0x2f,0x74, +0x2a,0xec,0x35,0x60,0x3a,0x0c,0x2c,0x65,0x5a,0x78,0x83,0xf6, +0x55,0x08,0x91,0xf4,0x88,0xbe,0x22,0xf0,0xa6,0xce,0x7d,0xae, +0x2e,0x2d,0x89,0x89,0x00,0x37,0x62,0x92,0xc2,0x5c,0x32,0x8e, +0x3d,0x97,0x19,0xc2,0x6a,0x46,0x53,0x06,0x7c,0x70,0xc9,0x82, +0xa2,0xea,0x82,0x8b,0xbc,0x54,0xd9,0xa5,0x9e,0x40,0x0a,0xba, +0xf3,0x9e,0xa4,0xbe,0xe6,0xd5,0xc3,0xa5,0xed,0xb4,0x03,0x6b, +0xc8,0x89,0xe4,0x13,0xf2,0xf0,0xe2,0x67,0x90,0xd7,0x8e,0x79, +0xb0,0xda,0x84,0xa1,0xd8,0x6c,0x12,0x57,0x1e,0x5d,0x7e,0xbe, +0xd4,0x32,0x51,0xd8,0x3b,0x61,0x23,0x0e,0x32,0x9a,0x5b,0xe7, +0x2e,0x14,0x54,0xe7,0x34,0xa5,0x37,0xf3,0x60,0x80,0x9f,0x71, +0xbb,0x4f,0xec,0x39,0xb1,0x47,0x07,0xeb,0xcd,0xa0,0x9c,0xdb, +0x86,0x63,0xe6,0x7e,0x81,0x1e,0x38,0xb8,0xc0,0x44,0x00,0x3f, +0x10,0x7e,0x01,0xe1,0x1c,0x4c,0x64,0xcd,0x17,0x89,0x13,0xbe, +0x63,0xf0,0xe3,0x88,0x9f,0x17,0x75,0x0a,0x68,0x0e,0x43,0xe6, +0xbf,0xdb,0x0e,0x63,0x59,0xa7,0x27,0xb2,0xf2,0x39,0x7c,0x28, +0x1f,0x87,0x7c,0xb1,0xad,0x50,0x5c,0x50,0x5c,0x55,0xd0,0xc4, +0x4b,0x55,0x9d,0xea,0x2f,0x48,0xe1,0x6d,0xc5,0x93,0xb4,0xb7, +0xbc,0xfa,0x63,0x16,0x23,0xb1,0x45,0xce,0xb5,0xe7,0x80,0xb9, +0x66,0x90,0x8b,0x01,0xb8,0x5f,0x5a,0xd3,0x75,0x47,0x9c,0xbb, +0xea,0xb2,0xb8,0x86,0xc1,0x59,0x00,0xb4,0x70,0x52,0x81,0x94, +0x28,0xe7,0xb7,0x9c,0x2b,0xe7,0xb7,0x84,0xe3,0xec,0xc6,0xae, +0x68,0xbb,0x0e,0xc7,0x8c,0xed,0xc5,0x6e,0xa5,0x52,0x55,0xae, +0x90,0x1d,0xa0,0x43,0xfd,0x19,0x29,0xb8,0x9b,0xf7,0x3c,0xf5, +0x5b,0x5e,0x5c,0x8a,0x7f,0x50,0x70,0x80,0x28,0x74,0x80,0xfe, +0x96,0xd8,0x9f,0x05,0x86,0xfe,0x16,0xec,0x8f,0x95,0x15,0x58, +0x31,0x2b,0x5f,0xcd,0x1d,0x99,0x13,0xa6,0xb7,0x77,0x32,0x0f, +0xae,0xdc,0x5e,0x1c,0x69,0xc3,0xcc,0x67,0x45,0xbe,0xfc,0xf2, +0xf7,0xd3,0x2b,0x6f,0x92,0x61,0x16,0x0f,0xa3,0xf1,0x69,0x2b, +0x3c,0x85,0x39,0xbb,0x39,0xcf,0xe3,0xce,0x87,0xb7,0xe8,0xf8, +0x1c,0x3a,0x18,0xb2,0x61,0x94,0x2d,0x17,0x6b,0xa1,0x51,0xc6, +0xdd,0x29,0xce,0x6b,0x8d,0xd1,0x8d,0xac,0x38,0x7d,0xab,0x41, +0xbb,0x06,0x03,0x88,0x25,0xa8,0x29,0xbb,0xa9,0x36,0x53,0xaa, +0xf0,0x1c,0x27,0x50,0x1c,0x03,0x13,0x60,0x0c,0x27,0xe5,0xa1, +0x9a,0x46,0x35,0x47,0x36,0x9d,0x6d,0xe0,0xe1,0xe3,0x29,0x5c, +0xf0,0x49,0x79,0x60,0xa2,0x4d,0xf3,0x54,0xca,0xc9,0x94,0x34, +0xed,0x7f,0x81,0x36,0xeb,0x01,0x79,0x41,0xe8,0x3f,0x0c,0xb8, +0xbc,0xb8,0xac,0xae,0xa4,0x8d,0x97,0x9a,0x2f,0xab,0x67,0x13, +0xd5,0x8d,0xdc,0x07,0xa9,0xcf,0x64,0xe3,0xe4,0x68,0x62,0x59, +0x6c,0x79,0x74,0xa9,0x69,0xac,0xe0,0x87,0x23,0xd7,0xe0,0x17, +0x13,0x27,0x56,0xd9,0x09,0x97,0xaf,0x5c,0x7a,0x5a,0xf6,0x92, +0x17,0x87,0xe8,0x73,0xf8,0xf1,0x61,0xdc,0xb2,0x07,0x07,0xea, +0x2c,0x0d,0x09,0xf4,0x58,0x25,0xe3,0xa9,0x9c,0x92,0x6b,0x34, +0x07,0xfd,0x0b,0x5a,0xe1,0xa3,0x24,0x86,0x2f,0x7c,0x24,0x6c, +0x81,0xe1,0xda,0x20,0x10,0x29,0x1a,0xcd,0xa9,0xb4,0xfe,0xf2, +0x13,0x38,0x03,0x7f,0x10,0x3c,0x83,0x4d,0x14,0x8e,0x80,0x19, +0x1e,0x61,0x05,0x4a,0xf8,0x60,0x57,0xfa,0xac,0xdf,0x34,0x7a, +0xfb,0xad,0xac,0xa4,0xbc,0xb1,0xa4,0x83,0x97,0xba,0x3a,0xd5, +0x4b,0x88,0xe2,0x5a,0xf6,0xdd,0xe4,0xc7,0x3c,0xbc,0x8f,0xa4, +0x26,0x0c,0x8e,0xcf,0xa3,0x4b,0x07,0x8c,0x15,0x9d,0x70,0x6c, +0x07,0x8b,0x40,0x71,0xdc,0x94,0x1e,0x7b,0x6a,0x1e,0x1a,0xdb, +0xae,0x0b,0xd3,0x08,0x4c,0x6d,0x05,0x9d,0x87,0x5f,0xdf,0xf7, +0xac,0x11,0x96,0xad,0xc3,0x11,0x2b,0xf0,0x33,0x7b,0x1e,0xc2, +0x4d,0xa4,0x4d,0x64,0xa6,0x72,0xcb,0x4b,0x1d,0x28,0xe1,0x6a, +0x33,0x64,0x51,0xbb,0x90,0x98,0x33,0xca,0x65,0xc5,0x1e,0x7d, +0xfe,0x9f,0x61,0xb9,0xa0,0xa0,0xb0,0x52,0xc5,0x4c,0xba,0xbc, +0x93,0x99,0x74,0xfe,0xed,0xdc,0xc7,0x29,0x4c,0x03,0x5c,0x45, +0x03,0x8a,0x42,0x17,0xeb,0xc8,0x1c,0x18,0x6e,0x84,0xc3,0x31, +0x19,0xad,0x3a,0x59,0xa5,0x56,0xa0,0x2d,0x35,0x63,0xe0,0xa0, +0x8d,0x26,0x44,0x4e,0xc4,0xbe,0x90,0x6b,0x90,0xb3,0x91,0x89, +0xc3,0x21,0xbb,0x83,0xdd,0x3c,0x92,0xdd,0xdc,0x19,0xed,0xd6, +0xa0,0x2e,0x73,0x62,0xbe,0xd4,0x5a,0x28,0x2c,0x64,0xfe,0xc2, +0x40,0xa8,0xfa,0xb2,0x7a,0x06,0x51,0xde,0xcc,0x79,0x98,0xf2, +0x82,0x01,0xa7,0xbc,0x14,0xb4,0xfe,0xc3,0x26,0x71,0xf9,0x16, +0x90,0x8f,0x8c,0xf1,0x58,0x8a,0x3f,0xb7,0xb2,0x67,0x2d,0x80, +0x7a,0x4e,0x52,0xf4,0xd8,0xd1,0xab,0xe2,0x3c,0xa3,0xcb,0xe2, +0x30,0xa9,0x54,0x1a,0x46,0xc4,0x1d,0xf0,0x80,0xa2,0x9b,0x34, +0x8f,0xb9,0xe5,0x50,0xc8,0xfa,0x10,0xaa,0x56,0xfe,0x3b,0x54, +0xa9,0xf2,0x94,0x05,0x8a,0x32,0x5e,0x4a,0xec,0x12,0x25,0x52, +0xfd,0x55,0xe9,0x77,0x4c,0x56,0xf2,0xf0,0x95,0x64,0x4f,0x73, +0x73,0x33,0x95,0x29,0x4a,0xc7,0x34,0xe1,0xfb,0x8e,0x87,0x77, +0xeb,0x5f,0xf1,0x95,0x58,0x4e,0x52,0xd2,0x93,0x32,0x63,0x33, +0x4d,0x13,0x05,0xdb,0x59,0x38,0x70,0x31,0x7e,0xee,0x94,0x6d, +0x23,0x3c,0xcb,0x7b,0x59,0x73,0xa3,0x8d,0x87,0x78,0x6e,0xc3, +0x7a,0x33,0xab,0xa5,0xce,0x5e,0x25,0x8e,0xe5,0xbe,0x39,0xce, +0x9b,0x04,0xd5,0x8e,0x72,0xcf,0x42,0x2f,0xbd,0x8d,0x53,0xfc, +0xb1,0x7f,0x50,0x9a,0x19,0x53,0xa6,0x39,0x30,0xa4,0xf2,0xe7, +0x0e,0xc3,0x69,0x38,0x64,0x0e,0xce,0x76,0xcc,0xb6,0x10,0xbe, +0x53,0xbd,0xaa,0xe9,0x6e,0x61,0x71,0x99,0x73,0x5a,0xbc,0xce, +0x68,0x81,0xdd,0xe6,0x0a,0xdb,0x86,0xcd,0x39,0x0e,0x5e,0x82, +0x2a,0xb0,0xc1,0xa9,0x60,0xc3,0x74,0x67,0xec,0xe7,0x8d,0xc3, +0x83,0xd2,0x4d,0x05,0x28,0x6b,0x62,0x06,0x30,0x18,0x78,0x08, +0xe1,0xab,0x58,0x45,0xce,0x7c,0xe8,0x89,0x75,0x38,0x7a,0xf4, +0x5f,0x3e,0xa6,0x2c,0xc9,0x63,0xa8,0x9a,0xd3,0xa1,0xfe,0x94, +0x14,0xdd,0x57,0xbe,0x4a,0xfb,0x91,0x57,0x7f,0x26,0xd9,0xd1, +0x56,0xbc,0x0c,0x86,0x50,0xd0,0x8a,0x05,0xb0,0xc4,0x14,0x97, +0xe0,0x64,0x92,0x50,0x1e,0x57,0x11,0x5d,0x61,0x1d,0x2b,0x6c, +0xc7,0xfe,0xce,0x63,0xd7,0xe9,0xd5,0x78,0x09,0xf9,0xcc,0x3f, +0x33,0x2f,0xf2,0xb0,0x0a,0x0d,0xb1,0xc1,0x12,0x72,0x38,0x17, +0xa6,0x47,0x59,0x0f,0xe3,0xc4,0x2f,0xd9,0xbd,0x61,0x16,0xf4, +0xfd,0x1e,0xfa,0x64,0xc3,0x27,0x72,0x6a,0xa5,0x4e,0x71,0x66, +0x24,0x97,0x85,0xc3,0x5f,0x8e,0x87,0x25,0xc8,0xcb,0x1b,0x4b, +0x4d,0xff,0x79,0x3c,0x68,0xb8,0xc3,0x20,0xfe,0xbf,0xf0,0xb6, +0xe2,0xe2,0x92,0xfa,0x22,0x66,0x9b,0x6d,0xb2,0x6d,0xe6,0x5d, +0xcb,0xbc,0x9b,0xf4,0x98,0x17,0x1b,0x70,0x1e,0xc5,0x11,0x9d, +0xb0,0x1e,0xb3,0x60,0x80,0x31,0x43,0xc7,0x73,0xb8,0xbe,0x43, +0x4e,0x75,0x9e,0xdc,0x33,0x9d,0x7a,0xf5,0xce,0x8f,0x39,0x13, +0xf8,0x3e,0xff,0x48,0x1b,0xbe,0xf1,0xd5,0x80,0xb9,0xe4,0x69, +0xea,0xa3,0x8c,0x6b,0x59,0x01,0x0d,0x02,0x8e,0x70,0x46,0xbd, +0x0d,0xb8,0x48,0x9e,0x1f,0xeb,0x88,0xee,0xba,0xd0,0x11,0xcf, +0xe3,0x54,0x82,0xe7,0x03,0x23,0x2d,0xe1,0x44,0xa6,0x06,0x3a, +0x90,0x35,0xd9,0xdb,0x6e,0xe8,0xc0,0x6e,0x39,0xd1,0x5d,0xbd, +0x2e,0x68,0xf7,0x9a,0xee,0x02,0xf2,0x7f,0xf3,0x80,0x2a,0x54, +0xca,0xca,0xbc,0x46,0x5e,0x2a,0x69,0x57,0x7f,0x49,0xf2,0xba, +0xb3,0x1e,0x27,0xbd,0xe2,0x99,0x16,0x9d,0x46,0xcd,0xac,0x17, +0x58,0x2f,0xf1,0xce,0x34,0x16,0xee,0x94,0x74,0xd7,0x34,0xd5, +0x87,0xa2,0x81,0xe5,0x4c,0x9c,0x3c,0xa5,0xb8,0x77,0x08,0x7d, +0xe0,0x2d,0xa6,0xab,0x2f,0x68,0x8b,0x4b,0xcd,0x08,0xd4,0xf5, +0xdc,0xa4,0x1b,0xc2,0xe4,0xdd,0x4e,0xee,0x90,0xf8,0xf3,0xa7, +0xa2,0xc3,0x75,0xc0,0x08,0xf5,0xca,0x6b,0xd1,0x18,0x16,0x1d, +0x8c,0x8d,0x38,0xb7,0x7f,0x9f,0xd6,0x81,0xfd,0x1a,0x47,0xc4, +0x45,0x26,0x3d,0xf9,0x9c,0x7e,0x66,0xf0,0x1d,0x1d,0xd0,0xe5, +0xaa,0x93,0x92,0xab,0x74,0x61,0x32,0xb1,0x4e,0xd5,0xc0,0x95, +0x64,0x9f,0x3a,0x82,0x6e,0x32,0xb0,0x59,0x6a,0x64,0x54,0xbd, +0x41,0xe8,0x68,0xbf,0xf2,0x4d,0xd9,0x2d,0x5e,0xda,0xca,0x5c, +0x3f,0xa0,0xdb,0xf6,0xa9,0x5b,0x97,0xbd,0x9f,0x50,0x67,0x58, +0xbb,0xac,0x68,0x25,0x6b,0x59,0xff,0x0f,0xdb,0x9f,0x9a,0xe3, +0xc4,0x19,0xac,0xfc,0xf6,0x42,0x56,0x5e,0x76,0x71,0x16,0xe3, +0x38,0xe9,0x6d,0x0c,0x54,0x15,0xf7,0xb2,0x5f,0x24,0x7d,0xcb, +0xab,0x07,0xf7,0xdc,0xa2,0x5b,0x6f,0x1c,0x82,0x29,0x50,0xa8, +0x0d,0x2d,0x52,0x0d,0x5e,0x26,0x78,0x74,0x0f,0xae,0x58,0xc3, +0x50,0xa7,0xd6,0x53,0xe3,0x3e,0x8c,0x90,0xb3,0xca,0xc5,0x69, +0x43,0xa4,0x68,0x80,0x11,0x04,0x0b,0xa3,0x70,0x65,0xd9,0x42, +0x9d,0x0c,0xbb,0xd6,0xa8,0xf3,0x1d,0x19,0x60,0x21,0x78,0xe4, +0x68,0x48,0x7d,0xc4,0x11,0x94,0x75,0xbd,0x96,0xe4,0xdd,0x2c, +0xce,0x7b,0x28,0x85,0x35,0x8b,0x61,0x4f,0xf1,0x1b,0x63,0x12, +0x6d,0xa7,0x71,0x85,0xcb,0x8f,0x8b,0x67,0x8a,0x4d,0x9b,0xa9, +0x00,0x1e,0xe6,0x36,0x49,0x9c,0xed,0x5f,0xb6,0xc8,0x1c,0x77, +0x2d,0xeb,0xf4,0xbe,0xbd,0x9d,0x9e,0xaf,0xca,0xaf,0x50,0xb2, +0x08,0x5b,0xd8,0xa9,0xfe,0x9c,0x14,0xde,0xcd,0x7b,0x96,0xc6, +0xca,0xa6,0x1d,0x40,0x7b,0x06,0x99,0xb2,0x48,0x75,0xc0,0x75, +0xa7,0x4d,0xb0,0x33,0x8f,0xf6,0x3d,0x53,0xbb,0x6e,0x89,0xf3, +0xd6,0x5c,0x56,0x4f,0x45,0x25,0x97,0x56,0x93,0x7a,0x29,0xa1, +0x86,0x87,0x5c,0xe6,0xc2,0x72,0x5e,0x5b,0x37,0x71,0x1e,0xba, +0x11,0x69,0x1e,0xe6,0x50,0xf0,0x67,0xc7,0xfe,0xec,0x41,0xb1, +0x1f,0x90,0x6f,0xcd,0xbf,0x23,0x6a,0x81,0xaa,0xa0,0x42,0xf5, +0xe1,0x41,0x5a,0xa4,0xe8,0xae,0xf2,0x45,0xfa,0x77,0xbc,0xfa, +0xd3,0xf1,0x14,0xff,0xe4,0x62,0xf3,0x2f,0x14,0x44,0x15,0x98, +0x24,0x0a,0x61,0x9e,0x21,0x9e,0xfb,0x3c,0x79,0xf4,0x36,0x03, +0x33,0xce,0x0a,0x07,0xeb,0x21,0x37,0x71,0x6e,0x99,0x8d,0x50, +0x5a,0x54,0x5c,0x56,0xc8,0xae,0x3d,0xd8,0x05,0xfb,0xa0,0x07, +0x67,0xa0,0xbe,0xbc,0x01,0x19,0xcc,0xe6,0x6a,0x52,0x52,0x6b, +0x74,0xc5,0x3c,0x49,0x87,0x64,0x95,0xa5,0x55,0xa4,0x54,0xf0, +0xe2,0x48,0x4e,0x0a,0xc2,0x32,0xfa,0x1b,0xf4,0x8c,0x21,0xd8, +0x63,0x45,0xd9,0xcf,0xfb,0x62,0x0f,0xf7,0x5f,0x42,0x7c,0x41, +0x7e,0x41,0x99,0x5c,0xa0,0x82,0xae,0xff,0x14,0x08,0x5e,0x48, +0x2c,0xd4,0xe9,0x41,0x6c,0x3b,0xc6,0xc2,0x1c,0xa8,0xee,0xc0, +0x75,0x24,0xbf,0x46,0xd1,0x9c,0xd5,0x62,0x91,0x21,0x6c,0x31, +0x0e,0xb0,0xf4,0x30,0xe7,0xa5,0xa1,0x66,0x90,0x85,0x73,0xf0, +0x84,0x39,0x9c,0x40,0x3d,0x6c,0x32,0x83,0x26,0xdc,0x75,0x05, +0x76,0x41,0x5b,0x07,0x27,0x4d,0x11,0x03,0xe9,0x8e,0x06,0xdf, +0x96,0x6d,0x65,0xd6,0x01,0x42,0x9e,0x9b,0xd2,0x21,0xc3,0x96, +0x97,0x35,0xa0,0x1e,0x15,0x97,0xb5,0x4b,0xcb,0x7e,0x5c,0x3f, +0x59,0x9a,0x66,0x2e,0x4e,0x43,0x26,0x6c,0xb5,0x59,0x1f,0x7c, +0x8e,0x65,0x38,0x54,0x47,0x65,0x05,0xc9,0xf0,0xd1,0xfb,0x77, +0xa9,0xd0,0x47,0x2b,0x12,0xa5,0xcb,0x20,0x45,0x72,0x69,0xd8, +0x07,0x3e,0x1a,0x0f,0x29,0x38,0x54,0xc1,0xd8,0x5b,0x05,0x7c, +0x8c,0x33,0x60,0x14,0x7c,0xa6,0x8d,0x0f,0xc0,0x8f,0x05,0xc5, +0xfd,0xcb,0x7b,0xb9,0x53,0x85,0xcb,0xd5,0x8e,0xb2,0xe6,0xcc, +0x56,0xad,0x73,0xd1,0xe7,0x4f,0xc5,0x84,0xc1,0x00,0x24,0x42, +0x79,0x39,0xbb,0xb4,0xdf,0x81,0xf8,0xf0,0xb3,0x21,0x21,0x5a, +0xfb,0x65,0xe5,0x96,0x58,0x73,0xbe,0xe3,0xae,0xb6,0xe8,0xaa, +0x89,0x34,0x6c,0xcd,0xe8,0x31,0x3a,0x35,0x6e,0xf5,0x8d,0xb9, +0x95,0xe9,0xd5,0x5a,0xe7,0x62,0x98,0x2f,0x84,0x31,0xbd,0x37, +0x47,0xa8,0x28,0x43,0x2d,0x98,0x7e,0x20,0xf1,0xd0,0x99,0x03, +0xa1,0x5a,0xfb,0x43,0xd8,0x55,0x49,0x17,0xcf,0x36,0xdf,0xd4, +0x1e,0x2a,0x3a,0xa9,0x1f,0x53,0xc6,0xe7,0x71,0xe0,0x2c,0x3c, +0x39,0x55,0x61,0x2a,0xdc,0x57,0x5e,0x55,0x34,0x2b,0x79,0x6b, +0x31,0xa8,0x99,0xb4,0xfa,0x5f,0x0f,0x78,0xe8,0xaf,0x60,0x64, +0xe5,0xfc,0x77,0xf8,0xe9,0xd7,0xe6,0xd0,0x87,0xc7,0x24,0x8c, +0xa1,0xf0,0xc9,0xed,0x9b,0x77,0x72,0x1f,0x33,0x4a,0x93,0xab, +0x77,0x77,0x15,0x68,0xea,0xb3,0x66,0xee,0x99,0x24,0x8f,0x95, +0x2c,0x42,0x7f,0x39,0x0b,0x9b,0xde,0x87,0x3f,0x6b,0x71,0x05, +0xf2,0x24,0xce,0x5a,0xe3,0x27,0x79,0xaf,0xc3,0x6a,0x5d,0x71, +0x65,0xcf,0x11,0xe9,0x38,0x61,0x8d,0x59,0x43,0x71,0x11,0x23, +0x6d,0x8b,0xb8,0x0e,0x4d,0xf6,0xe3,0x2f,0x51,0x8f,0x83,0x9d, +0x9a,0xec,0xc4,0x5a,0xfc,0x92,0x59,0x57,0x20,0xeb,0x4c,0x4f, +0xb4,0x36,0xc5,0xf1,0x5f,0xf6,0x7a,0x58,0xae,0x52,0x51,0x91, +0xdb,0xc0,0x8c,0xab,0x4d,0x3d,0x91,0xe4,0xdd,0xce,0x7a,0x9a, +0xf4,0x9a,0x8f,0xc0,0x05,0xd4,0x01,0x6a,0x57,0xe2,0x39,0x47, +0x38,0xb7,0x06,0x6b,0x1c,0xd4,0xcb,0x1a,0xf0,0xc5,0x2d,0x50, +0xc0,0xc7,0x5d,0x0d,0x26,0x30,0x04,0x15,0x97,0xac,0x6c,0xf0, +0xac,0x23,0x9c,0xd5,0x27,0xa0,0xd4,0xc4,0xc0,0xdb,0x10,0xc8, +0x61,0x20,0xda,0xd3,0xbb,0x10,0xb8,0x92,0x48,0xd5,0x28,0xd1, +0xa6,0xfa,0x92,0xa6,0x8c,0x4b,0xce,0xe9,0xc2,0x4e,0x67,0x4f, +0x3b,0xa7,0x8d,0xbc,0xd8,0x09,0xfd,0x68,0xb9,0x53,0xae,0xbb, +0xd2,0xa2,0x21,0x4f,0xf0,0xed,0x08,0x28,0xdf,0x58,0xcb,0x8f, +0x41,0x4a,0x0f,0x54,0xed,0x2e,0xd9,0x95,0xef,0xb0,0x57,0x48, +0xf6,0x4e,0xda,0x14,0xe7,0xc6,0xe3,0xa7,0x31,0xf4,0x48,0x65, +0x58,0xf9,0x81,0x42,0xfb,0x70,0xe1,0x82,0x57,0x94,0xe7,0xb9, +0x0d,0x3c,0x3a,0x6e,0xa7,0x68,0xb9,0xc8,0x5e,0xed,0xd2,0xb8, +0x0a,0x2c,0x89,0x34,0xca,0x91,0x75,0x24,0xf6,0x87,0x31,0x84, +0xd5,0x70,0x0c,0x85,0x31,0xd0,0x1f,0xc7,0x90,0x66,0x4d,0x90, +0xd3,0xdd,0x8c,0x21,0xff,0x64,0x7d,0xa5,0x36,0x82,0x32,0x4f, +0x59,0x94,0x57,0xc1,0x4b,0x29,0x57,0xd4,0x3c,0x29,0x7b,0x58, +0xf8,0x26,0xf3,0x1d,0x2f,0xde,0xec,0xe9,0xa4,0xe3,0x38,0xbf, +0x88,0xf3,0x2a,0x5d,0x06,0x18,0x93,0xc4,0xbb,0x52,0x96,0x74, +0x97,0x85,0xf0,0xb0,0xd1,0x56,0x8b,0x71,0xa6,0x79,0x8e,0xb5, +0x00,0x86,0xd7,0xaf,0x42,0xff,0x0b,0x72,0x5e,0xdd,0x8f,0xd1, +0x92,0x5b,0x9f,0x1d,0xd8,0xc5,0x30,0x81,0x2b,0x4f,0x92,0x77, +0x6d,0x1b,0x41,0xac,0x92,0x35,0xac,0xc5,0xaf,0xe5,0xd7,0x6a, +0xbe,0x04,0x0d,0x22,0x7e,0x89,0x4b,0x29,0x12,0x76,0x4c,0xe4, +0xe3,0xe5,0x14,0x3f,0x66,0xc7,0x1f,0xb3,0xe2,0x94,0x89,0x35, +0x14,0xd6,0x44,0xc3,0xce,0x0b,0x30,0x33,0x29,0x25,0x28,0x39, +0x38,0x31,0xb8,0xbe,0x50,0x30,0xbf,0xb7,0xec,0xc5,0xca,0x6e, +0x17,0x5f,0xa1,0xd8,0xbb,0x64,0x63,0xf1,0x86,0x89,0xe1,0xf8, +0x49,0x04,0x7e,0x74,0xb8,0xf6,0x56,0xd9,0x03,0xe5,0x2d,0x8b, +0x24,0x21,0x40,0xdf,0x7e,0x96,0xcd,0x0a,0xef,0xe3,0xde,0x27, +0x7c,0x4f,0xf0,0xdb,0x20,0x42,0x86,0x1f,0x03,0xc6,0x1b,0x3e, +0xe4,0x6d,0x57,0x28,0x94,0xc5,0x79,0x55,0xbc,0x94,0xd1,0xa9, +0xfe,0x88,0x94,0x3c,0xcc,0xff,0x3a,0xe3,0x67,0x19,0x1a,0xfb, +0xd1,0x16,0x6c,0x63,0xed,0x90,0xd3,0x2c,0x05,0x93,0x98,0xf4, +0x98,0x8c,0xc8,0x34,0xeb,0x04,0x21,0xc8,0xd8,0x65,0x91,0x9d, +0x79,0xe5,0x26,0x21,0x47,0x91,0x5d,0x9c,0x51,0xca,0x83,0x3e, +0x6b,0xbf,0x62,0x2b,0x50,0x72,0x81,0x93,0x27,0x98,0xa0,0xc9, +0xea,0x6c,0x4b,0x01,0xf4,0xbb,0x41,0xf7,0xc1,0x59,0xf8,0xa8, +0x77,0x0c,0x64,0x30,0x4c,0x5c,0x0a,0x06,0xab,0xb3,0x99,0x0b, +0x59,0xdd,0x19,0xd7,0xb9,0xfd,0x07,0x86,0xce,0x87,0xc5,0x07, +0xf4,0xf4,0xb9,0xb3,0xa7,0xce,0x1d,0x81,0x99,0x38,0x45,0x28, +0xab,0x46,0x46,0x30,0x43,0x62,0x23,0x4e,0x1f,0x3c,0xa8,0x15, +0x1a,0x7a,0xf4,0x8c,0x46,0x6c,0x49,0x54,0xfd,0x65,0xed,0xbb, +0x26,0xcb,0x09,0x4e,0x74,0x5e,0xc5,0x14,0xbf,0x86,0x4e,0x85, +0xe3,0x0f,0x6f,0x2b,0x6f,0x27,0x96,0x69,0xa9,0x47,0xc2,0x0e, +0x2a,0xcd,0xef,0xc9,0x9a,0x67,0x29,0x76,0xb7,0xae,0xe1,0xd6, +0x8b,0x0a,0x8a,0xd5,0x60,0x0b,0xd5,0x1c,0x56,0x4b,0x56,0x32, +0x4d,0xae,0x66,0x91,0x4d,0x4a,0x99,0x4c,0x43,0x2f,0x84,0x9f, +0x0c,0x65,0xff,0x04,0x76,0xcb,0x0b,0x45,0x31,0xf5,0x57,0xb4, +0x1f,0x9b,0x2c,0x64,0xb7,0xb4,0x9d,0x8f,0xc3,0x70,0x80,0x4e, +0x85,0xc3,0x9d,0xab,0xcd,0x77,0x8b,0x1f,0x69,0x9d,0x39,0x77, +0xf6,0xe4,0xd9,0xa3,0x30,0x0c,0x3f,0x17,0x2a,0xab,0x35,0xc4, +0xf1,0xb0,0x8c,0x62,0x10,0xbb,0x67,0x10,0xf9,0x2f,0xbc,0xbf, +0x30,0xbf,0xb0,0x3c,0x9f,0x81,0x56,0x91,0x8c,0xa2,0xc5,0xf7, +0x54,0xcf,0xd3,0xbf,0xe7,0x61,0x38,0xf6,0xa5,0x30,0xe7,0x2c, +0xac,0x4d,0x86,0xb1,0xc5,0x5b,0x9b,0x04,0xfc,0xdc,0x17,0x57, +0xed,0x44,0x8b,0xe3,0x7b,0xf5,0xdd,0x26,0xbb,0x99,0x37,0x6d, +0x12,0x2a,0x3a,0xcb,0x5f,0x24,0x5d,0xe6,0x41,0x1d,0x4c,0x4b, +0xad,0x4a,0x0c,0x72,0x4c,0x9b,0x72,0x84,0x6d,0x1d,0x9e,0xdd, +0x9e,0x17,0x79,0x5c,0x8b,0x2b,0x69,0x58,0xfd,0xae,0xb6,0xbd, +0xe5,0x36,0x21,0x42,0xb2,0x53,0xbc,0x7d,0x8c,0x1d,0x23,0x50, +0x7b,0xe8,0xb7,0xe5,0xaf,0xda,0xeb,0x2f,0xf1,0x55,0x52,0x8a, +0x8d,0xb8,0x8a,0xb8,0x6c,0x36,0xdc,0x38,0x7b,0x13,0x6f,0xf4, +0x61,0xeb,0x7d,0x5f,0x34,0xeb,0xdd,0x7f,0x7c,0x1e,0xd7,0x98, +0x9a,0xd6,0x20,0xa7,0xc4,0xab,0x6b,0xc5,0x3a,0xf2,0x5f,0x50, +0x36,0x5f,0xa9,0x2a,0x55,0x32,0xb2,0x93,0xdb,0xa5,0x1e,0x4e, +0x4a,0xee,0xab,0x5e,0x65,0xfc,0xc8,0x8b,0xdf,0xe1,0x59,0x8a, +0xdb,0xb8,0x8a,0x8a,0xb2,0xfa,0xbc,0x5a,0xbe,0x06,0x0b,0x49, +0x6c,0x5a,0x4c,0x5a,0x4c,0x06,0x63,0x6b,0x1b,0xa7,0x2d,0x9b, +0xf6,0xa5,0x41,0xb9,0x8b,0x70,0xe6,0xf4,0xd9,0x33,0x67,0xce, +0xf0,0x98,0x00,0x07,0xc9,0x26,0xd4,0x9d,0x3e,0x0d,0xd7,0x1a, +0xe4,0x30,0xb9,0xe9,0xfa,0x80,0xa9,0xcd,0x12,0x39,0x69,0x70, +0x19,0x87,0x96,0xe2,0x42,0xba,0xdd,0x63,0xa3,0x8b,0x9b,0x07, +0x8f,0xc7,0xb8,0xaa,0x92,0xb2,0x8a,0xfc,0x3a,0x7e,0xaa,0x9c, +0xe5,0xd3,0x66,0x2d,0xe7,0x71,0xcc,0xeb,0x88,0xb7,0x0e,0x9a, +0x70,0x70,0x5c,0xf3,0x7c,0xf1,0xe9,0x92,0x72,0xed,0x6b,0xe0, +0x85,0x46,0xa4,0x02,0x5f,0x50,0x1c,0x2f,0xeb,0x45,0xa5,0x2e, +0x58,0xac,0x47,0x77,0x62,0x95,0xbd,0x8d,0x79,0xc4,0x34,0x19, +0x83,0x6a,0x75,0x99,0x3f,0x5a,0x27,0x6a,0xc8,0xd2,0xe8,0x0d, +0x93,0x46,0x2c,0x54,0x8e,0x1d,0xc3,0x9a,0x9e,0xd5,0xa4,0xa0, +0xa0,0x42,0xc9,0x58,0x48,0x75,0xa7,0x7a,0xaa,0xcc,0x9f,0x9f, +0xa6,0xbc,0xe1,0xc5,0x15,0x98,0x4c,0x77,0xc7,0xee,0x8e,0xdd, +0x75,0xe1,0x79,0xc5,0xcb,0xae,0xe6,0x4b,0x7c,0xb5,0x74,0xd1, +0x4a,0x74,0x23,0xae,0x5e,0xc6,0x1b,0x97,0x6e,0xb2,0xcb,0xb3, +0xce,0xb1,0x4b,0xf7,0xdb,0x20,0x74,0x07,0x74,0x6f,0xbe,0xb2, +0x89,0xc7,0x9a,0x1e,0xed,0x4e,0x38,0x09,0xd6,0x18,0xd2,0x01, +0x21,0xe0,0xc9,0x28,0xdc,0x48,0x2e,0xd9,0x4a,0xce,0x6b,0x5a, +0x93,0x94,0xc4,0x22,0xd9,0x2d,0x82,0x4f,0x64,0xf7,0xb3,0x06, +0x02,0xd6,0x5c,0x07,0x12,0xca,0x0e,0x3c,0x91,0x10,0xc9,0xdd, +0x86,0xb2,0xcb,0x86,0xa2,0x35,0x07,0xe7,0x60,0x28,0x65,0x27, +0x87,0xa2,0x27,0xf7,0x6f,0x16,0xb7,0xf6,0x6f,0x72,0x99,0x9b, +0x9b,0x5b,0x90,0x53,0xce,0x4b,0x09,0x9d,0x6a,0x0d,0x79,0xf0, +0xed,0x9b,0x8c,0x5f,0x78,0xf8,0xa6,0x67,0x2c,0x05,0x55,0x1b, +0xaa,0x58,0x08,0x89,0x12,0x0d,0xa5,0x4e,0xc9,0x10,0x4e,0x32, +0x5e,0x9d,0x62,0xc1,0x02,0xcc,0x0c,0xbc,0x68,0xae,0x9e,0xd1, +0x8e,0xed,0x9c,0x89,0xf8,0x0d,0x45,0x13,0xf6,0x1b,0x13,0xae, +0x0b,0x47,0x51,0x76,0x60,0x83,0xa3,0x08,0x46,0xd9,0xca,0x38, +0x65,0x22,0xe3,0xd4,0x49,0x4d,0x76,0x6a,0x0c,0xda,0xb0,0x07, +0x7b,0xb0,0x07,0xfb,0xa0,0xa5,0x25,0x4e,0x9a,0xdb,0x0b,0xc1, +0xd9,0xf9,0x79,0x55,0x39,0xcd,0x4c,0x31,0xb7,0xaa,0x97,0x92, +0xcc,0xeb,0xa9,0xf7,0xe2,0x98,0xb2,0xd9,0x29,0xcd,0xa7,0x47, +0xbf,0x87,0xc9,0xad,0x38,0x19,0xf4,0xb8,0x9a,0xf8,0xaa,0xe4, +0x92,0x54,0x46,0x0d,0xe7,0xb9,0xe1,0x10,0xef,0x49,0x07,0x12, +0x6c,0x84,0xf2,0xc8,0xda,0xe8,0xda,0x38,0x1e,0xa7,0xe0,0x4c, +0x4b,0x98,0x48,0xc2,0xa7,0x5b,0xa1,0x30,0x1a,0xb9,0x7c,0x53, +0xe1,0xcd,0xf7,0x55,0xd0,0x37,0xf2,0x1b,0xfe,0xbc,0x14,0xdc, +0x26,0xda,0x70,0x51,0x72,0x7a,0x2a,0x9d,0x5f,0x70,0x65,0x65, +0xf5,0x58,0x58,0x1c,0x1e,0x1f,0x71,0xfe,0x60,0xa8,0x16,0xf4, +0xb0,0xfb,0xe3,0x44,0xf9,0x95,0x41,0xf8,0x54,0x6e,0xc2,0x5a, +0x5d,0xf5,0x35,0x33,0x82,0x16,0x6e,0xb4,0xe7,0x8b,0x0e,0xa6, +0x8c,0x87,0xc2,0x3e,0x56,0x4c,0x8f,0x5e,0x2e,0x39,0xa9,0x97, +0x4b,0xe6,0x2a,0x72,0x4b,0x73,0x65,0xf2,0xdd,0xa6,0x1e,0x49, +0xf2,0xef,0xe7,0xbe,0x4c,0x61,0x0e,0xf4,0x2f,0xe9,0x9c,0x5c, +0xdb,0x62,0x38,0x82,0x2b,0x48,0x66,0x71,0x56,0x5d,0x62,0xb1, +0x79,0x9a,0xb0,0xc7,0x35,0xd0,0x7e,0x8b,0x33,0x2f,0x0d,0xb6, +0x86,0x34,0xd4,0xc2,0x28,0xee,0xf0,0xca,0xd0,0xb9,0xc1,0x0b, +0x78,0x48,0x61,0x12,0x60,0x82,0x1e,0x8e,0x5b,0xa3,0xb4,0x12, +0x60,0xfa,0x03,0xf8,0xf8,0xc7,0xf3,0xdf,0xf3,0x91,0x78,0xbf, +0x13,0xde,0xc2,0x09,0xee,0x94,0xef,0x31,0xd3,0x43,0xde,0xbc, +0x47,0x44,0x68,0x98,0xfb,0xa8,0x71,0x72,0xf7,0x3e,0xe5,0xba, +0x8b,0x92,0xbf,0x4a,0xd0,0x8d,0x69,0x3c,0x7b,0xed,0xc4,0x03, +0x5e,0x9a,0x29,0x4e,0xa2,0xbb,0x4b,0xfd,0xeb,0x76,0x66,0x5b, +0x07,0x0a,0x19,0x5b,0xf2,0x5c,0x92,0x36,0xf3,0x22,0x35,0x97, +0xdf,0x4a,0x0a,0x02,0x2d,0x62,0x8a,0x66,0x94,0x75,0xce,0x36, +0x12,0x5d,0x12,0xd3,0x75,0xaa,0x90,0x41,0x56,0xd0,0xbf,0x2b, +0xf1,0x17,0x21,0xce,0x57,0x55,0x29,0x98,0xfa,0xaf,0x68,0x67, +0x6a,0x2b,0xef,0x56,0xe6,0x57,0x49,0x2f,0x78,0x90,0x7a,0x8c, +0xe8,0x0f,0x70,0x01,0x00,0x2f,0xbc,0x81,0xb6,0x4b,0xd8,0xf6, +0xce,0x7c,0x3c,0xd6,0xd9,0x40,0xdd,0x4c,0x3c,0x8b,0x00,0x67, +0xa7,0x60,0x9b,0x0d,0xb4,0xe1,0x8c,0x76,0x98,0x01,0x37,0x2e, +0x11,0x69,0x90,0x38,0x8e,0x4e,0x46,0xeb,0x1f,0x89,0x68,0x33, +0x99,0xa2,0xe3,0x8f,0xe0,0xc8,0x49,0x36,0x72,0x26,0x1f,0xeb, +0x71,0xb2,0x95,0x9d,0xd5,0x7c,0x0f,0x8e,0xe3,0xfe,0xd9,0x82, +0x2c,0x08,0xe5,0x2a,0xf2,0xca,0x72,0x6b,0x59,0x0b,0x76,0xb1, +0x06,0x56,0xde,0xce,0x7e,0x9a,0xfc,0x86,0x57,0xe0,0x2d,0x0a, +0xa3,0x95,0xb7,0x0a,0xaa,0xf3,0xe3,0x62,0x22,0x4f,0x26,0x1c, +0x81,0xb6,0xf1,0x42,0x4e,0x1b,0x66,0xbf,0xd9,0x73,0x3e,0xe4, +0xf0,0xa1,0x08,0xad,0x03,0x7b,0x0f,0x9d,0x89,0x4b,0x8e,0x49, +0x3b,0x9f,0xa5,0x05,0x25,0xcd,0x98,0xff,0x70,0xfd,0x52,0x4c, +0xb3,0x86,0x58,0x6e,0x87,0xc5,0x72,0x4f,0x5c,0xee,0xc5,0xef, +0x9d,0x45,0x2d,0xc5,0x48,0x49,0x0f,0x17,0xf6,0x6e,0x87,0x3e, +0x81,0xbb,0x14,0x9b,0xcd,0xd8,0xeb,0xdc,0xef,0x5b,0x49,0x4f, +0x7f,0x1c,0x4b,0xf1,0x5a,0x67,0x37,0xd4,0xc2,0x11,0x82,0xb5, +0x8c,0x73,0x83,0x36,0x1c,0x40,0x6d,0x56,0xb8,0x83,0x1f,0x0a, +0x67,0xfc,0x77,0xf7,0xe6,0xfd,0x55,0xb8,0xbc,0x76,0x46,0xb5, +0x55,0xf7,0x72,0x9f,0x27,0x33,0x3a,0x3b,0x43,0xfa,0x8c,0x32, +0x1c,0x19,0x06,0xdb,0xe1,0xa4,0xf4,0x08,0x0f,0x72,0x58,0xb4, +0x1b,0x0d,0x67,0xe1,0x64,0x9d,0x06,0x8f,0x6e,0x18,0x5c,0x00, +0x13,0x62,0xc1,0x5e,0x0b,0x0e,0xa3,0x80,0x5e,0xf8,0x55,0x67, +0x83,0x48,0x1c,0xba,0xe0,0x2b,0xdc,0x01,0x02,0x24,0x70,0xe3, +0x44,0x9e,0xe2,0xe7,0x92,0x0b,0x7c,0x4e,0x8e,0xe3,0x4d,0x7a, +0xaa,0xf4,0x54,0x45,0xa5,0x36,0x84,0xe2,0x30,0x0e,0x27,0x49, +0x33,0x28,0x2c,0x13,0x09,0x2e,0x63,0x25,0xd9,0xfb,0x8f,0x3e, +0x62,0x94,0xa4,0x34,0xb7,0x8e,0x97,0x14,0xed,0xea,0xd1,0x44, +0x79,0x27,0xe7,0x79,0xf2,0x37,0x7c,0x65,0x30,0xc5,0x5d,0x04, +0x93,0x0f,0xe3,0xe2,0xe9,0x68,0xa8,0xd3,0xb0,0xf1,0x5b,0x30, +0x4c,0x84,0xf5,0xa7,0x20,0x47,0x4b,0xbc,0x00,0x87,0x39,0xe9, +0x42,0x6f,0xdd,0x44,0x7b,0x56,0x37,0x85,0xf4,0x2d,0xc5,0xa5, +0x0c,0x25,0x6c,0x21,0xd4,0x0a,0x8d,0x19,0x8b,0xdf,0x62,0x89, +0x5b,0x90,0x82,0xb1,0x15,0x86,0x82,0x09,0x86,0xe0,0x7c,0x30, +0xb4,0xc0,0xa2,0xf6,0x7a,0x71,0xa4,0x63,0x0b,0x14,0x59,0x71, +0x1f,0x34,0xff,0x5f,0xe1,0xb5,0x6f,0x2f,0xfa,0xca,0x52,0x53, +0x21,0x8f,0xae,0x76,0xaa,0x3f,0x21,0xc5,0x0f,0x54,0xaf,0xd2, +0xff,0xc5,0x8b,0xcf,0x7b,0xae,0xb1,0x00,0xcf,0x6d,0x0a,0x8d, +0x2c,0xd6,0x85,0x5c,0x58,0x2d,0x3a,0x61,0xae,0x05,0x78,0x33, +0x93,0x73,0xb5,0x04,0x57,0x9c,0x28,0xd9,0xc3,0x44,0xb0,0x68, +0x45,0x0b,0xf8,0x84,0x3c,0x4c,0xbc,0x9d,0xd5,0x98,0xbb,0xb9, +0x51,0xb0,0xdb,0xb2,0x6a,0xeb,0xf8,0xfd,0xf2,0xfb,0xf3,0xe3, +0xc8,0x31,0x5c,0x65,0x34,0x03,0x67,0xad,0x94,0x47,0x78,0x4d, +0x5f,0x5f,0x87,0xe1,0xf2,0x94,0x03,0x68,0x62,0x09,0xb7,0x26, +0x2b,0xe8,0x96,0xbc,0xfa,0xa8,0x56,0x46,0x33,0x26,0x9d,0xcc, +0x12,0x34,0xfe,0xfd,0xca,0x0a,0x6b,0x99,0x89,0x1f,0xfa,0x48, +0xa9,0x28,0x93,0x5b,0x46,0xd9,0xae,0xd6,0x21,0xaa,0xbb,0x39, +0xcf,0x53,0xbe,0xe1,0x45,0x90,0x74,0x28,0xea,0x72,0x3e,0x47, +0xa3,0x72,0x75,0xc1,0x15,0xe6,0xe3,0x27,0x6d,0x8c,0xeb,0x5d, +0x87,0xbe,0x66,0xac,0x2a,0x0a,0x5c,0xdb,0x06,0x9f,0x80,0x2e, +0x39,0x8a,0x7a,0x7e,0x8e,0x38,0x73,0x9d,0xbc,0x6d,0xcb,0xe2, +0xdb,0x75,0x77,0xce,0x83,0x05,0x0f,0x04,0xbd,0x38,0xa3,0xd4, +0xbd,0x57,0x74,0x60,0x0a,0x57,0x1d,0x17,0x5f,0xa3,0xdb,0x26, +0x03,0x78,0x1e,0x56,0xd0,0xd6,0x9e,0x7e,0x96,0x10,0x8b,0x01, +0x58,0x6b,0xa1,0x5e,0xd6,0x86,0xf7,0x21,0x80,0x75,0x54,0x08, +0xc3,0x75,0x0f,0x79,0x8c,0x71,0xdc,0x24,0x1c,0x28,0x4f,0x57, +0xfc,0x55,0x9c,0xa2,0x2e,0xf5,0x14,0xd6,0x51,0xd9,0xcf,0x98, +0x3d,0x1f,0xc5,0x85,0x54,0xfd,0x79,0x1b,0xb6,0x80,0xc6,0x7a, +0xd4,0xc0,0x22,0x39,0x95,0x58,0x3b,0x3d,0x1b,0x75,0xfe,0x74, +0x54,0x04,0x0c,0xc6,0x41,0x42,0x71,0x65,0x89,0xeb,0xc5,0xca, +0xc2,0xd2,0xcc,0x52,0xad,0xb3,0x91,0xe7,0x4e,0x45,0x47,0xc0, +0x18,0x1c,0x21,0x94,0x56,0x33,0x12,0x3d,0x68,0x7f,0x5c,0xf8, +0x49,0x46,0xbd,0xc3,0xc2,0x8f,0x9c,0xd1,0x48,0x2a,0x8a,0xae, +0x69,0xd3,0x2e,0x36,0xdd,0x44,0x26,0x06,0xdb,0x8c,0x99,0xa3, +0x83,0x7d,0x7f,0x3d,0x10,0x17,0x76,0x4a,0xfe,0x3a,0x8c,0xf1, +0x82,0xc4,0xfc,0xe8,0x8b,0x97,0xb4,0xcb,0x4c,0x36,0x12,0xec, +0xbb,0xdd,0x0e,0x87,0x4c,0xd3,0x29,0x71,0xe8,0xac,0xa9,0x6a, +0xc8,0x2e,0xd5,0x02,0x0f,0xdc,0x49,0xbf,0x59,0x3f,0x1d,0x9b, +0xcd,0xa1,0x19,0x7d,0x2f,0x83,0x2f,0xdc,0x6d,0x67,0xc5,0x8f, +0xff,0x4f,0x84,0xfd,0x30,0xa4,0x54,0xa0,0x2a,0x2c,0xff,0x4b, +0x58,0x09,0xa4,0xf8,0xae,0xea,0x25,0xa3,0x04,0xe2,0x57,0xd2, +0x38,0x6a,0xc3,0xb9,0x45,0x44,0x32,0x05,0x1b,0x89,0x11,0xef, +0xd7,0x8f,0xc3,0x95,0xe6,0xb0,0x9c,0x1c,0xc4,0xcf,0x4c,0x57, +0xe0,0x10,0xf3,0x22,0xc6,0x94,0xbe,0xb8,0x7b,0xfd,0x5b,0xa6, +0x72,0xe4,0xf1,0xc9,0x4d,0xdc,0xaa,0x6c,0x26,0x7a,0x3b,0xb9, +0xba,0x64,0x79,0x69,0xfb,0x28,0x62,0xc9,0x34,0xef,0x1d,0x79, +0x4b,0xf2,0xe9,0x58,0x6f,0x0a,0xf5,0x98,0x7d,0x05,0xb2,0xa1, +0xa3,0x13,0x3b,0x60,0x3a,0x91,0x53,0xc8,0xcb,0x02,0x5d,0xa6, +0xdf,0x53,0x3e,0x08,0xdc,0x9c,0xac,0xc2,0x2c,0x39,0xe8,0xb4, +0xab,0x87,0x90,0x82,0x87,0x79,0x6f,0x52,0x7f,0xe6,0xe1,0x77, +0xfc,0x8a,0xe2,0x1a,0x98,0x0c,0x13,0x5a,0x19,0xc3,0xa2,0x16, +0xf8,0x0a,0xe7,0x58,0xc3,0x32,0xc9,0x61,0xaa,0x3c,0xdd,0x77, +0x9b,0x3d,0x2a,0xa9,0x4e,0x57,0xb4,0x84,0x45,0x04,0x5e,0x49, +0x1e,0xd4,0xe8,0xae,0xe3,0xfd,0x4d,0x4f,0xee,0xc2,0xb8,0x62, +0x58,0x1a,0x0f,0x1e,0x8c,0x15,0xbc,0xb0,0x82,0x2c,0x12,0x8a, +0xfa,0x5b,0x71,0x8c,0x0d,0x0e,0xd9,0x00,0x03,0x83,0x40,0x38, +0x00,0x33,0x2d,0x42,0x84,0x44,0x5c,0xad,0xc0,0xa9,0xcd,0x38, +0xca,0x71,0x9e,0xe1,0xb2,0x39,0xfa,0x05,0x96,0xc2,0x93,0x9b, +0x57,0xef,0x35,0x3e,0x2d,0xd5,0xab,0x5f,0xd1,0xb5,0x9a,0x67, +0xdd,0xe6,0x43,0x0f,0x3e,0x0c,0x7e,0xbd,0xe3,0x9e,0xe3,0x5e, +0x21,0x63,0x45,0xea,0xec,0xf8,0x79,0x3c,0x2a,0x20,0x81,0x1e, +0x40,0xb2,0xe5,0x0b,0xe7,0x99,0x35,0x5e,0x42,0xc3,0x4f,0x4a, +0x18,0x94,0xc0,0x68,0xe2,0x50,0x38,0xfa,0x8f,0x57,0xaa,0x18, +0x86,0x94,0xca,0x18,0x92,0x2b,0x8f,0x81,0xaa,0xee,0xe6,0xbe, +0x48,0xf9,0x96,0x6f,0x0f,0xa4,0x28,0x89,0xd9,0x20,0x31,0x74, +0x9e,0x46,0xa5,0xa9,0x3f,0x8b,0x53,0x39,0x69,0x2a,0x7e,0x49, +0xc5,0xa9,0x63,0xa5,0xa9,0xdc,0x4c,0xe9,0x1a,0xed,0xec,0x10, +0xfd,0xcd,0x3a,0xc5,0x75,0xd2,0x1b,0x4e,0x54,0xe0,0x1c,0x2a, +0xf9,0xff,0x26,0xfa,0x73,0x92,0x3f,0xce,0xa2,0xa2,0x3f,0x23, +0xd7,0xfe,0xcc,0x41,0x0f,0x7f,0x18,0xdf,0x36,0xc4,0xb1,0xe3, +0x7b,0x1f,0x95,0x5f,0x58,0x58,0xa3,0x6a,0xe1,0xa5,0xfa,0x0e, +0xf5,0x3c,0x92,0x77,0x33,0xf3,0x7e,0xd2,0x33,0x1e,0xde,0x63, +0x18,0x85,0x94,0x06,0x4c,0x79,0x08,0x55,0x17,0xb1,0xea,0x86, +0xd9,0x5a,0xcc,0xb6,0x83,0xec,0xa5,0x18,0xe9,0x00,0x91,0x8b, +0xb0,0xc2,0x4e,0xad,0x73,0x11,0x2f,0x71,0x18,0x24,0xbd,0xa0, +0x70,0x50,0x1c,0x8f,0x8b,0x70,0x6a,0xef,0x5b,0x37,0x23,0xb9, +0xfa,0x64,0x16,0x02,0xc5,0x51,0x52,0xa2,0xb4,0x59,0x16,0x51, +0x25,0x32,0x82,0x08,0xb0,0x94,0x6b,0x43,0x81,0xb2,0x83,0x55, +0x28,0xb0,0xde,0x3b,0xd1,0x3b,0xe6,0x2b,0x8f,0x47,0x8d,0xe9, +0xa5,0x0c,0x2a,0x95,0xea,0xef,0x21,0x80,0x31,0x24,0xff,0x4e, +0xee,0xd3,0xd4,0xb7,0x3c,0xfc,0x28,0xbf,0xd2,0x16,0x2b,0x0e, +0xc2,0xac,0xb7,0xd0,0xd4,0x8c,0x4d,0xaf,0xd7,0x63,0x28,0xee, +0x91,0x06,0xc1,0xd1,0x89,0x58,0x6b,0x09,0xb5,0x38,0xb5,0x0b, +0xa6,0x42,0x47,0x2b,0x76,0x70,0xe0,0xc0,0x58,0xd8,0x17,0x92, +0xe9,0x2f,0x04,0x67,0x0e,0x10,0x4d,0xb1,0x9f,0x64,0xca,0xaa, +0xfa,0x0e,0x4c,0x28,0x7c,0xa1,0x78,0x5e,0x5f,0xf1,0x35,0x0f, +0x17,0xc5,0xcf,0xb0,0x81,0x8b,0x53,0x5c,0x50,0xc4,0xa8,0x4c, +0xa2,0x85,0x70,0xff,0x10,0xdf,0x7d,0x8c,0x0e,0xed,0x90,0x3e, +0x83,0xad,0xdc,0x26,0xcb,0xb5,0xbe,0xc8,0x07,0xf2,0x73,0xc4, +0xf7,0xd4,0xad,0x77,0x2c,0xfa,0x8b,0x0f,0xe3,0x64,0xaa,0xfc, +0x0a,0xc5,0x87,0x72,0x7d,0x41,0x54,0x1f,0x08,0x17,0x63,0xd7, +0x0c,0xcb,0x07,0xa0,0x23,0x0c,0x20,0x70,0x01,0x07,0x50,0x18, +0x00,0xee,0x38,0x80,0x48,0x1e,0xb6,0x94,0x05,0xb0,0x13,0xce, +0x47,0x3d,0xc3,0x7c,0x79,0x34,0xe6,0xe0,0xa8,0x66,0x74,0xc1, +0xb9,0xb2,0x53,0xd5,0x3c,0xfb,0x7e,0x30,0x37,0x8f,0x11,0x5a, +0xf8,0x82,0x41,0x90,0xb4,0xc2,0x8a,0x91,0x36,0x87,0xcb,0x8c, +0xa8,0x9b,0xb4,0xb0,0xc6,0x08,0xfe,0xa0,0x24,0x4d,0xfe,0x56, +0x92,0xbd,0xa6,0xcc,0x24,0x56,0x62,0xdb,0x7f,0x4c,0x59,0x1c, +0x32,0x9d,0xfe,0x62,0xf6,0x05,0x56,0xa0,0x3f,0xc1,0xec,0x5d, +0xf8,0xa5,0x23,0x8e,0xd4,0x69,0x72,0xd7,0x68,0x81,0x19,0x29, +0x2c,0x98,0x96,0x6b,0xc3,0x6c,0xf1,0x71,0x1b,0x93,0x4c,0x73, +0xa9,0x1f,0xf2,0x0e,0x63,0x97,0x4e,0xce,0x5c,0x2f,0x28,0x8a, +0xd3,0x94,0xc9,0x4a,0x5e,0x32,0xef,0x10,0xab,0x48,0x46,0x5d, +0x62,0x65,0xda,0x6d,0x1e,0x94,0xc8,0x22,0xc6,0x4c,0x53,0x9c, +0x89,0x7b,0xac,0x61,0x8f,0xb4,0x8a,0x89,0xd9,0x24,0x2b,0xb9, +0xe3,0x2a,0xd3,0x12,0x98,0xfa,0x5d,0xf6,0xa8,0x99,0xa0,0x13, +0xde,0xa3,0x01,0xb7,0x36,0xdc,0xd8,0xd4,0xe8,0xec,0x23,0x94, +0x5b,0x97,0x19,0x29,0xe4,0xfd,0x75,0xff,0x39,0x26,0xc6,0x50, +0xab,0x3c,0x57,0x9e,0x19,0x69,0x57,0x8f,0x23,0x8a,0x3b,0xbd, +0x51,0xf8,0xe5,0x9f,0xa3,0xa8,0x78,0x10,0x3c,0x44,0x8a,0x29, +0x3d,0xff,0x43,0xe0,0x6b,0xf1,0x20,0x05,0x5f,0x69,0x01,0xd3, +0x7c,0xf1,0x8c,0xac,0x2f,0xe5,0x1a,0x92,0x98,0xcb,0xa9,0x4b, +0x30,0x87,0x20,0x65,0xa4,0xae,0x3f,0x63,0x65,0xfd,0x09,0xbc, +0x96,0xb7,0x04,0xea,0xcf,0xc4,0x50,0x7f,0x82,0xdf,0xdb,0xc9, +0xe3,0x49,0x93,0x81,0x97,0x4f,0xf3,0x14,0x78,0x76,0x9a,0x67, +0xcd,0xb4,0x85,0x81,0xe6,0x26,0xd9,0xe3,0x27,0xce,0xc0,0x81, +0x32,0xdb,0x53,0xe4,0x94,0x66,0x33,0x1f,0x29,0x68,0x53,0x4f, +0x22,0x8a,0xbb,0x59,0xcf,0x93,0xbe,0xe1,0xd5,0x2b,0x36,0xd1, +0x9e,0xd9,0x36,0x70,0x11,0x87,0x63,0x5e,0xcf,0xda,0x56,0xf5, +0xa7,0xb0,0xa3,0x67,0xe0,0x25,0xf5,0x40,0xd8,0x27,0xb5,0x33, +0x6c,0x97,0x27,0xf9,0x39,0xae,0x3e,0x29,0xb9,0x41,0x57,0xfc, +0x19,0x8b,0x60,0x38,0x74,0x12,0xa9,0x12,0xb3,0xa8,0x53,0x95, +0x31,0x99,0x17,0x64,0x64,0x6d,0xa0,0xa3,0x72,0x6b,0xee,0x8e, +0xa9,0x3e,0xdd,0xa4,0x75,0x9e,0x3b,0x63,0x1b,0xe3,0xd1,0xbc, +0x4a,0x59,0x2d,0x98,0xdc,0xdf,0xdf,0xfc,0xbb,0xf6,0x1b,0xb9, +0xbb,0x37,0xd2,0xb3,0xb6,0xd1,0x1b,0x2e,0xad,0x2a,0xa8,0x11, +0xd6,0xdf,0xdf,0x27,0x9f,0x9d,0xe1,0x54,0xb9,0x9e,0xcc,0xdd, +0x61,0x68,0xbd,0x56,0xbe,0xf6,0xe6,0x85,0x5a,0x76,0xad,0x3c, +0x00,0xf7,0x86,0x7a,0xa1,0xb5,0x19,0x4e,0x9c,0xfe,0xa1,0xb4, +0x79,0x39,0x25,0x59,0x8c,0xf4,0x29,0xdb,0x64,0xca,0x72,0x2f, +0xfb,0x65,0xd2,0x77,0x7c,0x71,0x00,0xfd,0x93,0xef,0x6c,0x15, +0x9f,0x5e,0x92,0x9e,0xaa,0xbd,0xc4,0xa7,0x17,0xc9,0x5e,0x29, +0x92,0xd6,0x61,0x0d,0x49,0xce,0x4c,0xca,0x8c,0x4f,0xe7,0xc1, +0x0b,0x54,0x92,0x15,0xe3,0xcc,0xab,0xb9,0xfd,0xc1,0x7b,0x77, +0xec,0xde,0xc1,0xe3,0x02,0x27,0xf8,0x98,0x0b,0xdc,0x12,0xb8, +0x2d,0x30,0xf0,0xf2,0xee,0xd6,0xdd,0xcd,0xbb,0xac,0x77,0xe8, +0xef,0x99,0x19,0x96,0xe8,0x20,0x80,0x46,0xdc,0xcb,0xdc,0x6b, +0x25,0x37,0xb6,0x5f,0xdb,0xd6,0x1d,0x90,0x5d,0x25,0x18,0x65, +0x9b,0x65,0x59,0xa5,0xd5,0x94,0xa8,0xaa,0x52,0x6b,0xf9,0xa3, +0x90,0x4f,0xf1,0xed,0x2d,0x78,0xcb,0x21,0x37,0x60,0x15,0xbe, +0xbd,0x43,0x2a,0xb1,0x9e,0x26,0x25,0xa5,0xa4,0x25,0xb3,0xc7, +0x98,0x70,0xbb,0x37,0x06,0x6c,0x72,0x0d,0xb0,0x4b,0x71,0x4a, +0x74,0x8d,0x65,0x5d,0xbd,0x9d,0x75,0xb5,0x57,0x2f,0xba,0x4e, +0xfb,0xc0,0xac,0xf3,0xb2,0x8b,0xe5,0x77,0xec,0x32,0xda,0xe4, +0xec,0x49,0xf7,0x73,0x5e,0x26,0x7f,0xc7,0xc3,0xfd,0x9e,0xcf, +0x29,0xee,0x84,0xd1,0xb0,0xa9,0x0d,0x37,0x31,0x3a,0x14,0x04, +0x55,0x58,0xfc,0x67,0xdf,0x0e,0xb0,0x87,0x9d,0x5c,0xb5,0x7a, +0x29,0xb5,0x84,0x40,0x5c,0x89,0x81,0x16,0x50,0x04,0xe5,0x44, +0xd2,0xb6,0xa2,0x68,0x80,0x0b,0xc1,0x80,0x88,0xe6,0x3d,0x5a, +0xb4,0xe3,0x5e,0xe9,0xd7,0x69,0xbf,0xf2,0xb5,0xf8,0xc4,0x12, +0x12,0xc9,0xde,0xc5,0x01,0xab,0x5d,0xcd,0x36,0xb6,0xf8,0x77, +0xed,0xbc,0x6c,0xb7,0x5d,0xc8,0x5c,0x5d,0x68,0x50,0x6d,0x6a, +0x6f,0x6f,0xec,0xbe,0xd8,0x4f,0x61,0x2d,0x3c,0x2e,0xbc,0x51, +0x75,0xe9,0x52,0x8d,0x4d,0x93,0x4b,0xbb,0x9f,0xaa,0x45,0xb0, +0x52,0x38,0x54,0xb8,0xc9,0xeb,0x07,0x9d,0x59,0x31,0xcd,0xe6, +0xe0,0xa0,0xb5,0x78,0x7c,0x7d,0x06,0x63,0x02,0x91,0xdd,0x30, +0xf2,0x4e,0xed,0x2f,0x4c,0x77,0xd7,0x7d,0x01,0xa3,0xf5,0x21, +0x5e,0x3f,0xa3,0x5d,0xc0,0xb3,0x97,0xf1,0xd3,0x1b,0xa6,0xaf, +0x78,0xf4,0xc7,0x70,0x2a,0x6a,0xd4,0x4b,0x1a,0x9c,0xa8,0x44, +0x46,0x63,0xa2,0x7a,0x0c,0x31,0x8a,0xc0,0x15,0xd8,0x28,0xbf, +0xec,0x70,0x1e,0xe6,0x12,0xb8,0x8c,0x73,0x29,0xcc,0x65,0x92, +0x64,0x2e,0x91,0xa2,0xe1,0x23,0x5a,0xe8,0x9b,0xeb,0x9d,0xb5, +0xb9,0x32,0x57,0x08,0x2c,0xdc,0x96,0xef,0x55,0xcc,0x43,0x37, +0x7e,0x4e,0x8b,0x54,0xf9,0x35,0xa9,0x05,0x6e,0x59,0xc2,0x2e, +0x5f,0x1f,0x67,0x9f,0x00,0x1e,0x7f,0x90,0x36,0xd3,0x7a,0xf1, +0x8c,0x63,0x17,0x3c,0xe8,0x19,0x88,0x0f,0x88,0x78,0x05,0xbc, +0xa9,0x74,0xe6,0x8a,0x78,0x86,0x93,0xce,0x60,0x3f,0x2a,0x9e, +0x59,0x2b,0x9d,0x61,0x80,0xb4,0xff,0x9f,0x54,0xf1,0x3f,0x34, +0x44,0x97,0xa8,0x3e,0x10,0x34,0x56,0x84,0x78,0x6a,0xb6,0x6b, +0xf5,0xae,0x35,0xfb,0x78,0x98,0x05,0xf6,0x4d,0x72,0x2e,0x64, +0x73,0xfc,0x9a,0x04,0x1e,0xde,0x71,0x24,0xe8,0x68,0x9c,0x9c, +0x46,0x3c,0x13,0x86,0x2b,0xbe,0x51,0x31,0xf9,0x79,0x98,0xe2, +0x24,0xce,0x37,0x34,0xaa,0x40,0xf7,0x01,0x79,0x9c,0xf5,0xb6, +0xe2,0x4a,0x85,0x77,0x8d,0x60,0xeb,0xa5,0xb7,0x79,0x6d,0x30, +0x0f,0x93,0xcc,0xb0,0x96,0x18,0x65,0xee,0xbc,0xaa,0x03,0x73, +0xb8,0x8a,0xc4,0x84,0x4a,0xdd,0x6f,0x89,0x0d,0x0b,0xaa,0x9d, +0x2c,0x1c,0x84,0xfb,0x1e,0xf0,0xdb,0xed,0xc3,0xa3,0xab,0x64, +0xd9,0x71,0x59,0x5c,0xb5,0xbe,0x53,0xb4,0xc4,0x42,0x2e,0x3e, +0xf7,0x42,0xde,0x05,0x85,0xbc,0xe9,0xfd,0x59,0x0a,0xfd,0xc4, +0x55,0xd8,0x8f,0x30,0x80,0x58,0x44,0x41,0x83,0x1d,0x6b,0xfc, +0xb7,0x19,0x9d,0xff,0x36,0x60,0x0f,0x7f,0x58,0xd3,0x2e,0x53, +0x13,0x4c,0xb2,0x15,0xbf,0x6f,0x22,0x52,0x2e,0xe6,0xd2,0xf7, +0xc9,0xaf,0xb3,0x1f,0x16,0xb4,0xef,0xb8,0x14,0xd8,0xb0,0x3d, +0xa7,0x42,0xd8,0x90,0xee,0x96,0xea,0x9a,0x52,0x9e,0x5e,0x9c, +0x59,0x98,0xe3,0xa9,0x12,0x3c,0xfc,0x5d,0xb7,0x3b,0x04,0xad, +0xca,0x5d,0x9e,0xb1,0x3c,0x39,0xc8,0x43,0xb8,0xba,0xb7,0x73, +0x4f,0xcb,0x2e,0xe3,0x1d,0xab,0xf7,0x2c,0x3e,0xc8,0x8b,0x0d, +0x86,0x54,0x7a,0xc9,0x61,0x45,0xc8,0xb4,0x45,0xf8,0xa9,0x4e, +0x8d,0xa7,0xc6,0x13,0xd0,0xcc,0x80,0x8f,0xe0,0x94,0xb6,0xa8, +0xe0,0x70,0x48,0x38,0x9d,0x69,0x8b,0x9f,0x7a,0xa0,0x76,0x70, +0x12,0x23,0x64,0xe3,0xb3,0xe0,0x93,0x8a,0xef,0xdb,0x79,0x89, +0xca,0x8b,0x6b,0x96,0x2b,0x61,0x52,0x0b,0xf0,0xf7,0xfc,0x2a, +0x85,0xd1,0x06,0x38,0xc9,0x06,0x17,0x6d,0xe3,0x45,0xf7,0x48, +0x8a,0xa3,0x67,0xe1,0x42,0x0b,0x74,0xf7,0x4f,0x62,0xe2,0xc9, +0xbf,0x18,0x16,0xb5,0xc1,0xf8,0xef,0xe5,0x61,0x19,0xf5,0x2b, +0x19,0xfd,0x0d,0x7b,0xd1,0xbf,0xb8,0x37,0x2a,0x55,0x2a,0x1b, +0x78,0xa9,0x58,0xd6,0x71,0xaa,0x3b,0x1f,0xd0,0xdf,0x44,0xd2, +0xa7,0xf2,0x56,0x2d,0x09,0xd9,0xbc,0x38,0x00,0x9e,0x4a,0x17, +0xf1,0x29,0x0c,0x61,0x6a,0x6c,0xe5,0xda,0x45,0x76,0x0a,0x07, +0x21,0x25,0x36,0x25,0x2e,0x99,0xa9,0xc9,0x2b,0xed,0x57,0xe0, +0xcd,0x45,0x7c,0x03,0xde,0x5e,0x24,0x2b,0x2d,0x33,0x23,0x23, +0x93,0x17,0x0d,0xb9,0x13,0xe3,0x8e,0x4c,0x0a,0x37,0xe0,0x0d, +0xc2,0x43,0xf7,0xad,0x19,0x35,0x9a,0x63,0xc0,0xfb,0x13,0xf7, +0x53,0x5e,0xe1,0xcf,0xb1,0xba,0xd1,0xf7,0xcf,0xfe,0x7a,0x1a, +0x26,0xf1,0x13,0xe1,0x17,0xba,0x40,0x32,0x78,0x46,0x44,0x03, +0x16,0x66,0xe6,0x48,0x06,0xaf,0x08,0xd8,0x62,0x13,0x0d,0x25, +0x7a,0x01,0x5b,0x91,0x38,0xe8,0xa4,0x39,0x5d,0xcd,0xae,0xc9, +0xcb,0xce,0xd6,0x8a,0x8c,0x3c,0x7d,0x32,0xea,0x08,0x8c,0x9f, +0x27,0xe4,0x54,0xe3,0xf0,0x3b,0x07,0x23,0x0f,0x9f,0x0c,0x0f, +0xd7,0x0a,0x0d,0x61,0x94,0x2f,0x21,0x33,0x32,0xa7,0x49,0x3b, +0x86,0x7c,0x98,0x07,0xe8,0x85,0xa1,0xf1,0xd3,0x3f,0x8c,0x52, +0xaa,0xf2,0x2a,0x72,0x1b,0x59,0x95,0xda,0xd4,0xd3,0x48,0x6e, +0x77,0xc6,0x57,0x89,0x2f,0x79,0xb5,0x75,0xcf,0x5b,0xaa,0x7f, +0xc7,0xfa,0xf6,0xc6,0x7b,0x37,0x60,0xa4,0x02,0x46,0x47,0xb1, +0x72,0x34,0x75,0x30,0xb5,0x19,0xd7,0x18,0xd3,0x14,0x75,0xd1, +0x2a,0x4a,0xd8,0x8d,0x9f,0xf9,0xe0,0x24,0x7d,0xe4,0x4a,0x1c, +0x84,0x54,0x55,0x72,0x71,0x52,0x69,0xfc,0x98,0xdc,0x89,0x35, +0x53,0x5c,0x97,0x99,0xae,0x5a,0xb4,0xa6,0xc0,0x4a,0x78,0x78, +0xb3,0xe3,0x76,0xed,0xbd,0xca,0x95,0xcd,0xfa,0x37,0xd7,0xf0, +0x52,0xa0,0xe8,0x47,0x19,0x83,0xd6,0xed,0x40,0x5d,0x58,0x6b, +0x89,0x6b,0x51,0xd7,0x0c,0x74,0xd1,0x15,0xfb,0x4b,0x96,0xed, +0xaf,0x60,0x0b,0xfc,0x41,0x98,0xd0,0x0d,0xa2,0x87,0x70,0x78, +0x30,0x0e,0x92,0x33,0xb0,0xfe,0xbe,0x13,0xb8,0x50,0xd0,0xe2, +0xf1,0x67,0x29,0x8d,0xc2,0x51,0xd0,0xc3,0xa3,0xac,0xf0,0xc9, +0xea,0xe7,0xf2,0xd0,0xd3,0x7f,0xd6,0x46,0x14,0x17,0x96,0x54, +0x15,0x7e,0x98,0xe2,0x9b,0x48,0x0a,0xba,0x15,0x5f,0xa5,0x7d, +0xcd,0xab,0x79,0xbc,0x4b,0x9b,0xd1,0x94,0x5c,0xb9,0xdc,0xdc, +0x5d,0xf7,0xc4,0x41,0x21,0x58,0x7f,0xb9,0x56,0x6f,0x99,0x01, +0xbf,0x94,0xa9,0x2d,0xa3,0x4b,0x68,0x24,0xef,0x2f,0x64,0x6d, +0x03,0xd6,0x38,0x0c,0xf7,0x5b,0x43,0x0b,0x37,0x6e,0x09,0x0e, +0x36,0xc1,0x91,0x0e,0xd9,0x36,0x42,0x59,0x52,0x49,0x52,0x51, +0x12,0x2f,0x69,0xb7,0xb7,0xc0,0x3b,0xab,0x0e,0xd1,0x82,0xc4, +0x1d,0x2c,0x2e,0xf7,0x2e,0x72,0x29,0x76,0xcb,0xd3,0xda,0xe4, +0x59,0xb2,0xbd,0x28,0xa0,0xc0,0x5f,0x0b,0x7f,0xe3,0xba,0xcb, +0xaf,0x54,0xb5,0x35,0xc8,0x8e,0xd1,0xc4,0x1c,0x03,0xde,0x31, +0xc7,0xc0,0x77,0x36,0x94,0x1d,0x0c,0xc6,0x77,0xcc,0xb1,0x0f, +0xfd,0x83,0xcf,0x28,0x94,0xca,0x52,0x85,0xac,0x01,0x65,0x42, +0x5c,0x78,0x4f,0xf1,0x22,0x95,0x49,0xfc,0x9f,0xa4,0xbe,0x34, +0xf5,0x60,0xf2,0xc1,0xa4,0x83,0x45,0x75,0x82,0x7d,0x61,0x5d, +0x47,0xf1,0xf5,0xac,0x7b,0x5a,0xb7,0x4d,0x38,0x9b,0x23,0xab, +0x22,0x9c,0x75,0x6c,0xc3,0x77,0x1c,0x70,0x1a,0x35,0x8d,0x4b, +0xb4,0x65,0x6a,0xfd,0x59,0x89,0xf2,0x79,0x9c,0x6e,0x74,0xc7, +0xd9,0x87,0xf7,0xb4,0x9f,0x48,0x86,0x24,0x21,0x35,0x36,0x2d, +0x2a,0xd5,0x21,0x55,0xf0,0xd2,0x5f,0xb8,0x64,0x92,0x8d,0xca, +0x49,0x68,0xcb,0xbf,0x54,0x5e,0x59,0x29,0x67,0xa5,0xdb,0xe5, +0xb3,0xc3,0x7f,0xeb,0xd6,0x1d,0xb1,0x3b,0x2e,0x04,0xc5,0xf8, +0x6c,0x10,0x3a,0xfd,0x9d,0x37,0x5a,0xfa,0x18,0xfa,0x6b,0xe5, +0x38,0xdc,0x2b,0xbc,0x5a,0xd1,0xdc,0xa0,0x95,0xb7,0x57,0xb1, +0x27,0x77,0x8f,0x83,0xe3,0x7a,0x97,0x25,0x1b,0x99,0x89,0x3e, +0xa9,0xe8,0x6e,0x6c,0xeb,0xe0,0x5f,0xc3,0x09,0xba,0xd3,0xdc, +0xcf,0xc2,0xd5,0x76,0x5b,0xd2,0x96,0xa4,0x2d,0x89,0xaa,0xa2, +0xbc,0xd2,0xac,0x6a,0x1e,0x07,0x4b,0x93,0x68,0x9b,0xef,0x1d, +0xdb,0x5a,0xd7,0xe2,0x2a,0xc1,0xa6,0xde,0xa0,0xce,0x9a,0x21, +0xcd,0x9e,0xd9,0xb4,0x6e,0xf9,0xc5,0x31,0xca,0xd9,0x4d,0x59, +0x82,0xcf,0x2b,0x97,0xf7,0x0e,0xf7,0x79,0x4c,0xc1,0x02,0xba, +0x21,0xf4,0x42,0x85,0x2e,0x6c,0x30,0xc1,0xed,0xc4,0x40,0xb1, +0xfd,0xba,0x0e,0xac,0xe1,0xaa,0x13,0x93,0xaa,0x75,0xe1,0x53, +0x62,0x19,0xaf,0x81,0xe3,0x89,0x64,0xba,0x85,0xb6,0x3c,0x29, +0xfa,0x2d,0xe1,0x8d,0x45,0xa4,0x70,0x70,0xe1,0xc6,0xf1,0x0e, +0x86,0xbc,0x2c,0x80,0x7a,0x49,0xa8,0xf1,0xdf,0x24,0x34,0x37, +0x2f,0xaf,0x24,0x47,0x1e,0x83,0xed,0x50,0x53,0x52,0x70,0x5f, +0xf1,0x2a,0xf5,0x07,0x1e,0x1e,0x99,0xd1,0xec,0x85,0x40,0x0d, +0x60,0xb9,0x61,0xd6,0x25,0x01,0x97,0x5f,0x46,0xee,0xde,0xe6, +0xcb,0x3c,0x2a,0x6d,0x61,0x1d,0x67,0x63,0x3e,0xc3,0x1d,0x75, +0x5d,0x32,0xac,0x05,0x58,0xd2,0x02,0x9f,0x5c,0x57,0xb0,0x06, +0xb6,0xc6,0x20,0x7a,0x49,0xe2,0x6d,0x08,0x94,0x3b,0xd3,0xdd, +0x33,0xb7,0xcd,0xde,0x30,0xa7,0x62,0x7a,0xe1,0x98,0xcc,0x31, +0x97,0x92,0x85,0x1d,0xbf,0x6d,0x04,0xe2,0x7f,0x4d,0xd1,0xa9, +0xfa,0x36,0xfd,0x67,0xfe,0xd7,0x68,0xba,0x63,0xa6,0xff,0x1c, +0x97,0x79,0xb5,0xd3,0x4a,0xc7,0x2a,0xc7,0x5e,0x4c,0x15,0xb6, +0xff,0xc0,0x02,0xab,0xef,0x95,0xc2,0x1b,0x85,0xaf,0x33,0xbf, +0xe5,0xa5,0x9b,0x52,0x03,0x15,0x0f,0x81,0x91,0xb4,0x6c,0x1c, +0x89,0xb7,0xd6,0x78,0xc9,0x55,0xc8,0x23,0xd5,0xe2,0x56,0x6c, +0x94,0x6a,0x08,0x04,0xc3,0xcf,0xd4,0xaf,0xd0,0xb5,0x68,0x63, +0x6e,0x80,0xa7,0x50,0x1e,0x50,0xb9,0x59,0xe9,0xc3,0xe7,0xe1, +0x27,0xd4,0xb7,0xc8,0xad,0x78,0x83,0xc2,0x7f,0xa3,0x50,0x11, +0x50,0xed,0xa5,0xf2,0xe6,0x87,0xfe,0x41,0x4f,0x53,0x5c,0xc2, +0xb9,0x87,0xc4,0xd6,0xeb,0x42,0x3d,0xec,0x13,0x05,0x6c,0x25, +0x71,0xca,0x58,0x55,0x74,0x9e,0x69,0x8c,0x10,0xee,0x17,0xea, +0xbd,0xdf,0x9b,0xc7,0x2d,0x92,0x00,0x9f,0x71,0x87,0xd1,0x98, +0x11,0xbc,0x29,0x33,0x4a,0x99,0x2e,0x32,0x00,0x8d,0x36,0x18, +0x75,0x0e,0xcc,0xf9,0xaf,0xb1,0x9d,0x5b,0xda,0xbb,0x68,0x7c, +0x3d,0x57,0x9a,0x92,0x52,0xa6,0x7b,0x8d,0x98,0xc5,0x6b,0xf4, +0x8c,0x55,0x9f,0xfa,0x7f,0x88,0x2a,0x6b,0xc0,0xa2,0x9c,0x4a, +0x5e,0x4a,0xed,0x54,0x0f,0x25,0x45,0x0f,0x54,0x5f,0xa7,0xfd, +0xc4,0x83,0x0a,0xb5,0x29,0xf6,0x43,0x07,0xe8,0x47,0x20,0x9a, +0x85,0x21,0x66,0xb9,0x1e,0xb2,0xe5,0x26,0x33,0xe2,0x35,0x88, +0x9d,0x1e,0x24,0x9f,0x1e,0x44,0x61,0x10,0x3b,0x3d,0x88,0xac, +0x5d,0x41,0x43,0x59,0xdc,0x09,0xb4,0xda,0x72,0x4c,0x88,0xb4, +0xbd,0x1c,0xd9,0x1d,0xdb,0x11,0xaf,0x75,0xf6,0xe0,0xb9,0xd0, +0x33,0x61,0xd5,0xe9,0xc2,0xde,0x3a,0xbf,0x7b,0x41,0xe5,0x1e, +0xbb,0x85,0x0b,0xc1,0x09,0x3e,0x71,0xde,0xfe,0x47,0x7c,0x8f, +0xfa,0x1e,0x4d,0xbf,0x94,0xd8,0x11,0xd7,0xc2,0xfa,0xd3,0xf7, +0x1f,0xd9,0x16,0xff,0xe6,0x66,0x39,0x32,0x35,0xcc,0xbb,0x93, +0xf9,0x34,0xf1,0x0d,0xaf,0xb6,0x62,0x30,0xb3,0xee,0xbe,0xe3, +0x5d,0xef,0xfb,0x97,0xe1,0xd3,0x1c,0xf8,0x3c,0x1a,0x26,0xf3, +0x55,0x1d,0xb8,0x9d,0x8b,0x65,0x30,0x13,0xd9,0x64,0x1d,0xc9, +0x60,0x66,0xdc,0x66,0x9c,0xb3,0x0c,0x07,0x15,0x3b,0x09,0x99, +0xc5,0xe9,0x95,0x29,0xb5,0x17,0xc6,0x65,0x4c,0x29,0x99,0xee, +0xaa,0x67,0xbc,0x7c,0xee,0x9a,0x7c,0x2b,0xe1,0xc9,0xad,0xae, +0x3b,0xb5,0x0f,0x4b,0x96,0x37,0xac,0xbc,0xbc,0x9a,0xef,0xd1, +0x53,0xfb,0x51,0xb1,0x7f,0x33,0xce,0x05,0x6a,0x89,0x14,0xa7, +0x70,0xf0,0x03,0x8b,0xf0,0x3b,0xea,0x7d,0xdb,0xfd,0xab,0xdc, +0xfd,0x84,0x7c,0x27,0xa5,0x75,0xb6,0x35,0x0f,0x4d,0x60,0xce, +0xa0,0x66,0xd8,0x2e,0xe4,0xdc,0xc6,0x6e,0x7e,0xbf,0x17,0xfa, +0x47,0x00,0xe5,0xa5,0xa1,0x11,0x34,0x68,0xe5,0xc6,0xe5,0x66, +0x66,0x25,0x1b,0x84,0xab,0xd7,0xaa,0x5f,0x66,0x3e,0xe2,0xc1, +0x46,0xba,0x40,0x03,0x1a,0x7d,0x1b,0x36,0xd7,0x65,0xb6,0xa6, +0x74,0x25,0xde,0xb4,0x4d,0x17,0x42,0x2c,0xf6,0xdb,0xed,0x71, +0xf2,0x2b,0xf5,0x2d,0xf6,0xcd,0xf7,0xf0,0x10,0x4a,0xbc,0x4a, +0x5c,0x8b,0x9d,0xdc,0xa6,0x99,0x2d,0x5b,0x60,0x50,0xe4,0x28, +0x7c,0x75,0xab,0xeb,0x41,0xed,0x9b,0xbc,0x0d,0xb9,0xee,0x59, +0x6e,0xac,0x19,0x76,0xfd,0x83,0xc9,0x2b,0x0b,0xf2,0xeb,0x94, +0xad,0xbc,0xd4,0xd8,0xc6,0xa2,0x63,0xf6,0xf5,0xf4,0x7b,0x09, +0x8f,0xf9,0x4a,0xdc,0x40,0xa5,0xc1,0xad,0x77,0xc1,0x65,0x59, +0xdb,0x03,0xf0,0x5e,0xd9,0x26,0x0e,0xc6,0x8c,0x1b,0xd0,0x71, +0x71,0x06,0xc9,0xae,0xde,0x90,0x6a,0x9b,0xe2,0x16,0xab,0xb5, +0xc5,0xad,0xfa,0x60,0xd3,0x9e,0xf2,0x9d,0x5a,0xe8,0xfd,0x9d, +0xc5,0x54,0x6c,0xb2,0x83,0xa6,0xb5,0x9c,0xc3,0x80,0xe5,0xe8, +0x72,0x9f,0x40,0xec,0x72,0x7a,0x1f,0xbc,0x97,0x13,0xc9,0xcf, +0x91,0xb2,0x9b,0xa0,0x0b,0x07,0xb1,0x9a,0xec,0x4e,0xcb,0x88, +0x37,0xae,0xa2,0xb7,0xcd,0xf5,0xa5,0xc3,0xb6,0xe2,0x61,0x9c, +0x81,0xd6,0x24,0x85,0x11,0xfb,0x25,0x5c,0x75,0x8a,0xbc,0x12, +0x76,0x02,0x8c,0x62,0xc1,0xf8,0x0e,0x12,0x7a,0x69,0x5b,0xa3, +0x5f,0x9d,0x6f,0x7e,0xb5,0xe0,0x58,0x60,0xab,0x74,0xc8,0x64, +0xe5,0xde,0xf6,0x81,0xac,0x9a,0xe0,0xc4,0x69,0x38,0x50,0xee, +0x3e,0x79,0xb6,0xb8,0xaa,0x77,0x79,0xc0,0x98,0x5e,0xba,0xc7, +0xc8,0xea,0x0f,0x3d,0x79,0x54,0x6d,0x2e,0x5e,0x69,0xed,0xe1, +0xff,0xec,0xdb,0xd9,0x25,0xde,0x67,0x6a,0xc3,0x4f,0x3d,0x88, +0xa2,0x9f,0x48,0xc1,0x8f,0xe0,0x23,0xd4,0xa3,0x30,0x10,0x52, +0x71,0x20,0xc1,0xf9,0xd2,0xe7,0x14,0x8a,0x70,0x03,0x16,0x11, +0x88,0x84,0x22,0xca,0x98,0xb6,0x1f,0x14,0x11,0xbc,0x69,0x4f, +0xd1,0x70,0x3c,0x18,0x12,0x88,0x42,0x43,0x0a,0x86,0xd0,0x0f, +0x0d,0x19,0xce,0x7b,0xb1,0x66,0xf3,0x46,0x2b,0x4b,0x9c,0x38, +0xbb,0xb7,0xd9,0x32,0xf3,0xb2,0x4b,0xb3,0x98,0xf5,0x64,0xb7, +0xb2,0xb8,0x9b,0x7b,0x37,0xf3,0x59,0x02,0xb3,0x1e,0x73,0x66, +0x3d,0xeb,0xaf,0x38,0x5e,0xdf,0x7c,0xa7,0x0b,0x68,0x26,0x7c, +0x11,0x09,0x0b,0xf9,0xaa,0x36,0x3c,0xc8,0x5d,0xa8,0x8b,0x6a, +0x38,0x7f,0xc9,0xfa,0xbc,0xb0,0x1f,0x47,0x06,0xa0,0xb6,0x15, +0xf2,0x45,0xb6,0x42,0x72,0x41,0x72,0x65,0x42,0x4d,0x0c,0x0e, +0xcd,0xc6,0xfe,0xd5,0x63,0x37,0xae,0xb0,0x34,0x58,0x6a,0x94, +0x6f,0x23,0xdc,0xb9,0xd2,0x72,0xbd,0xa2,0xbb,0x64,0x4d,0xed, +0xba,0x0e,0x23,0xbe,0x67,0x89,0x7a,0x14,0xb5,0x05,0x68,0xc2, +0x89,0x4c,0x7b,0x68,0x36,0xa1,0xe6,0x4f,0x56,0x13,0x51,0x4b, +0x4e,0xe7,0xd8,0x9f,0x88,0xf6,0xf5,0xf4,0x30,0xea,0xee,0xc1, +0x21,0xee,0xd8,0xc7,0x03,0xfa,0xec,0x82,0x8f,0x22,0x60,0x34, +0x8f,0xf7,0xa5,0x4f,0xe9,0xa9,0xcc,0x53,0xd9,0x39,0xda,0x09, +0xb0,0xb1,0x09,0x27,0xfc,0x68,0x35,0x19,0xa7,0xd8,0xbe,0xde, +0x49,0x70,0xf6,0xf6,0x79,0x7a,0x53,0x74,0xca,0xdd,0x6f,0x3d, +0x56,0x3d,0x88,0x7b,0xaf,0x05,0x63,0xb8,0x13,0x2e,0x87,0xad, +0xc2,0x1d,0x79,0xdf,0x43,0x21,0x61,0xde,0xa3,0x16,0x71,0x09, +0xb6,0x1a,0xf7,0xb9,0x1b,0xe9,0xd9,0x9d,0x17,0x74,0x63,0xda, +0xce,0xb7,0x9c,0xfe,0x91,0x97,0x67,0x36,0xef,0x51,0xab,0xd1, +0xd8,0x7f,0x3a,0x46,0x4e,0x54,0x98,0x0b,0xef,0xab,0x9e,0x56, +0x5c,0xa9,0xe4,0xed,0xe0,0xcf,0x8b,0xe4,0xba,0xfb,0x8b,0x0d, +0xd0,0xc7,0x2d,0xaf,0x4d,0xc0,0x98,0x9f,0xf0,0xe3,0xef,0x2c, +0x7f,0xe3,0x71,0x33,0xee,0xa6,0x6f,0xbb,0x2e,0x5d,0xce,0xec, +0x66,0x1c,0x37,0x73,0x75,0xeb,0xfa,0x1f,0x4c,0x78,0x29,0x4d, +0xce,0x5f,0x14,0x04,0x2d,0x10,0x44,0x9e,0x68,0xb2,0x83,0x9b, +0xec,0xa0,0x67,0x24,0xae,0xa4,0x30,0x54,0x4e,0x16,0xde,0xbb, +0x1f,0xf9,0x50,0x70,0x61,0x47,0xb3,0x70,0x3f,0x3d,0x74,0x46, +0x23,0x25,0x3b,0x32,0xbf,0x50,0xbb,0xc6,0x78,0x03,0x59,0xe7, +0xe7,0x81,0x63,0xf4,0x75,0xf0,0x93,0x6f,0x0f,0xc6,0x84,0x1f, +0xef,0xcd,0x8c,0x7b,0xf8,0x8c,0x46,0x6a,0xce,0x59,0x65,0xa1, +0x76,0xed,0xfa,0x0d,0xc4,0x70,0x9b,0x3d,0x1a,0x2f,0xd7,0xc9, +0xb1,0xf9,0xb5,0xea,0x52,0x61,0x79,0xb9,0x56,0x4c,0xf4,0xd9, +0x33,0x71,0x61,0x30,0x6a,0xac,0x90,0x9d,0x9f,0xeb,0xf6,0xb8, +0xac,0xa5,0x54,0x99,0xaf,0x15,0x13,0x73,0xfe,0x74,0x7c,0x38, +0x38,0xe2,0x10,0xa1,0xb0,0x01,0x4d,0x41,0x63,0x7f,0x74,0xe8, +0xc9,0x90,0xfd,0x4c,0x04,0x6d,0x62,0x1d,0xbb,0xb9,0x77,0x15, +0x02,0x93,0x70,0x25,0xf6,0x72,0x12,0xd6,0xde,0x55,0x08,0x69, +0xf2,0xb0,0x5b,0xde,0xdd,0xec,0x17,0x89,0xdf,0xf0,0x62,0x81, +0xf4,0x8e,0x96,0x6f,0xaf,0xd9,0xd1,0xb4,0x2b,0xb3,0x51,0x40, +0x52,0xb6,0xf4,0xa2,0xdd,0x65,0x1e,0x76,0x5f,0x94,0x38,0x2e, +0x3a,0x2d,0x2a,0xe3,0x7c,0xa6,0xbc,0x05,0x8f,0x1b,0x5a,0x77, +0x83,0xff,0xc5,0x9e,0x31,0x76,0xe0,0xba,0x1a,0x0d,0xd1,0x0d, +0x0e,0x72,0x87,0x02,0xc3,0x83,0xc3,0x76,0xf2,0x18,0x69,0x07, +0x3b,0x38,0xbb,0xd5,0x4b,0x5c,0x51,0xc3,0x39,0xdb,0x41,0xa8, +0x4a,0x29,0x4b,0x2d,0x4c,0x63,0x02,0x9c,0xac,0xcb,0x08,0xbe, +0xab,0x03,0x3f,0x70,0xd5,0x09,0x49,0x95,0xba,0x5f,0x13,0xbb, +0x24,0x0d,0xc6,0x23,0xde,0x13,0xff,0x90,0x98,0x5c,0xdd,0x6e, +0x60,0xc7,0x23,0xd5,0x13,0xe8,0x6a,0x1c,0xd1,0x4d,0x6c,0x71, +0x08,0x1d,0x87,0x9f,0xbe,0x97,0x77,0x30,0x86,0x11,0xe3,0x70, +0x04,0x07,0xdd,0x9a,0xf8,0xd9,0x7b,0x79,0x23,0x0d,0x4f,0xcc, +0xa6,0xa9,0xdb,0x32,0xb7,0xe5,0x06,0xf2,0x18,0xc1,0x65,0x67, +0xa6,0x65,0x27,0xe7,0xf1,0x8c,0xfe,0xfa,0xd3,0xd7,0xd0,0x3a, +0xfb,0xaf,0xa1,0xa8,0x0f,0x33,0xc1,0x53,0x7b,0xcd,0x57,0x51, +0xa0,0xaa,0x91,0xbd,0xbe,0xbe,0x4d,0xad,0x47,0xb2,0x6f,0x30, +0xaf,0x7f,0xc2,0xab,0xf5,0xa4,0x7b,0xd4,0xa7,0xc6,0xab,0xd2, +0xb3,0x80,0x6f,0x83,0x7c,0x4c,0xeb,0x80,0xeb,0x0d,0x78,0xfd, +0x9e,0xc5,0x0a,0x6c,0x74,0x80,0x46,0x33,0x8c,0xc6,0x7c,0xb8, +0x60,0xc0,0x1d,0x9b,0x30,0xee,0xc4,0xb4,0x51,0x67,0x6c,0xc0, +0xf8,0x0c,0x84,0x9c,0x07,0x83,0x0b,0x5a,0x71,0xfb,0x63,0xf7, +0xc5,0xee,0xe7,0xf1,0x8d,0xa8,0x49,0x0d,0xd0,0xf9,0x26,0xf3, +0x28,0x03,0x7a,0x13,0x36,0x1b,0x10,0xc9,0xcb,0x95,0x82,0xb3, +0x3e,0x3a,0x73,0x10,0x79,0x9b,0xc2,0x66,0x7d,0xdc,0xcc,0x39, +0x0f,0x00,0x27,0xce,0x2f,0x28,0x2e,0x34,0x36,0x24,0x36,0x44, +0xcb,0xf8,0xa8,0xc1,0xb1,0xd5,0xc7,0x79,0xf8,0xc8,0x80,0x9a, +0x49,0xde,0xb6,0xa2,0x37,0x7e,0x8e,0x46,0xbd,0x72,0x7f,0x2e, +0x57,0x9d,0x9a,0xcc,0x22,0xb7,0x16,0x8c,0x6d,0xc2,0xb1,0x1d, +0x44,0x5a,0x8d,0x73,0x68,0xb5,0x4f,0x95,0x77,0xc5,0x86,0xd2, +0x72,0xc1,0xa3,0xcc,0xa5,0xd8,0x55,0xf1,0xff,0x00,0xda,0x87, +0xaa,0xe5,0xa9,0x94,0x55,0x79,0x4d,0xbc,0x54,0xde,0xae,0x9e, +0x45,0x72,0x6f,0x65,0x3c,0x4a,0x7c,0xce,0x8b,0x6f,0xd0,0x8b, +0x3e,0x6e,0xd4,0x83,0xfe,0x78,0xb8,0xd5,0xdc,0x12,0x0f,0x62, +0xff,0x15,0x76,0xf7,0x70,0x20,0x84,0xad,0xc7,0xf3,0xb8,0x88, +0xf5,0xcd,0xfe,0xe0,0xdd,0x41,0x3b,0x59,0xeb,0xed,0xb2,0x07, +0x43,0x6e,0x4b,0x80,0xbf,0xbf,0xdf,0x96,0xeb,0xfb,0xaf,0xef, +0xbd,0xba,0x6f,0x59,0xd0,0xd4,0x03,0xf8,0xd1,0xa1,0x04,0x5b, +0x01,0x66,0x5f,0x80,0x41,0x19,0x6f,0xca,0x7e,0x0c,0xfc,0x66, +0xfb,0xb3,0x1d,0x99,0x17,0x85,0x65,0xa9,0x4b,0x53,0x97,0xa7, +0x5c,0xcc,0xaf,0x28,0x2f,0x6a,0xe4,0xa1,0x5f,0xa3,0x34,0x8a, +0x4b,0xc9,0x4c,0xce,0x4c,0x60,0x6a,0x55,0x09,0x8b,0x30,0xee, +0x32,0x1c,0xe3,0xb0,0x01,0xf4,0x28,0xae,0xbf,0xce,0x42,0x63, +0x93,0xbc,0xd7,0x97,0xe5,0x3a,0x22,0x2d,0x77,0xa1,0xb0,0x7e, +0x15,0xae,0xe7,0x20,0xec,0x0e,0x05,0xcb,0x55,0x68,0xc9,0xd9, +0xe2,0x4c,0xba,0x0a,0x1d,0xee,0x10,0xd1,0x61,0x15,0x45,0xb7, +0x3b,0xe0,0xc6,0x19,0xe3,0x21,0xea,0xe3,0xe6,0xe6,0x6d,0xb5, +0xd5,0x28,0xd1,0x34,0xde,0x3a,0x2e,0x2d,0x35,0x2d,0x2d,0x35, +0x83,0xff,0x77,0x5f,0xfe,0xff,0x45,0xf0,0x4c,0xb4,0xa0,0x8e, +0xea,0x81,0xf5,0x58,0x73,0x1b,0xda,0x1b,0xb0,0xfd,0x81,0xf9, +0xb2,0xde,0xdc,0x0f,0xfa,0x04,0x6e,0x4c,0xa0,0x52,0x1b,0x1a, +0x88,0x6d,0x9c,0x39,0x50,0xba,0x58,0x32,0xff,0x8a,0x88,0x83, +0x18,0x2b,0x89,0xcf,0x8a,0xcb,0x8e,0xce,0xb4,0x4e,0x12,0xc2, +0x02,0x0e,0x6c,0xd9,0xe5,0xcb,0xe3,0x5e,0xae,0x26,0x39,0x24, +0x7b,0x5f,0xce,0xfe,0x34,0x2d,0xdb,0xe0,0xf8,0x5d,0x09,0x81, +0xb1,0x81,0x5a,0x68,0x63,0xab,0x5e,0xde,0xc4,0x49,0x57,0xf0, +0x47,0x5a,0x24,0xba,0x6f,0xee,0x84,0xbd,0xd2,0x23,0xdc,0x4b, +0xc4,0x64,0x58,0x47,0xa7,0x4b,0xee,0xdf,0x90,0xff,0xab,0x20, +0xb3,0xff,0xde,0x7b,0x49,0x1e,0xf6,0x2c,0x7c,0xa8,0x78,0x93, +0xfa,0x13,0x9f,0x8b,0x67,0x68,0x65,0x43,0xd1,0x8d,0x94,0x26, +0x98,0x76,0x0a,0xb6,0x26,0xc1,0x88,0x8c,0xad,0x0d,0x02,0x7e, +0x12,0x8c,0x7e,0x7b,0xd1,0xe0,0xc4,0x1e,0x33,0x8f,0x25,0x1b, +0x5c,0x78,0x31,0x07,0x86,0xd2,0x7c,0xf7,0x12,0xd3,0x34,0x97, +0xa6,0x54,0x21,0xb8,0xc6,0xb3,0xcb,0xb7,0x9c,0x47,0x53,0x1c, +0x4e,0xc3,0x55,0xfb,0xaa,0xf6,0x29,0xed,0xc2,0x85,0x38,0xef, +0x04,0x8f,0x48,0x1f,0x1e,0x9a,0x71,0x2d,0x35,0xe4,0xe2,0x4a, +0x63,0xaa,0xce,0x97,0xf2,0xa5,0x52,0x1c,0xae,0x26,0xb8,0xda, +0x13,0x17,0x2e,0xc6,0x8f,0x75,0x6a,0x3c,0x9a,0x5f,0x96,0xbe, +0x4b,0x03,0x4e,0x4b,0xdc,0xc3,0x9d,0x30,0x3f,0xbc,0x28,0xcc, +0x85,0xf7,0x8e,0xd8,0x7b,0xd0,0x73,0xd4,0x4a,0x2e,0xd6,0x4a, +0xe3,0x0e,0x77,0x4d,0x99,0x71,0x25,0x4e,0x37,0xbe,0xf3,0xfc, +0xa3,0x53,0x40,0xf8,0xf5,0x5c,0x6c,0xc5,0x85,0xda,0x73,0xc5, +0xfc,0x54,0x98,0x4c,0x0f,0x79,0x87,0x7b,0x85,0x6c,0xe2,0x25, +0x02,0xfd,0x38,0x71,0x1d,0x53,0xde,0x87,0x37,0x47,0x78,0x1d, +0xf4,0xe0,0xa5,0xf9,0xdc,0xb9,0xe2,0xd3,0xa5,0xa7,0x4b,0x79, +0x78,0x85,0x9e,0x34,0xd1,0x3f,0xd5,0x31,0xc6,0xbb,0x2a,0x59, +0x08,0x2d,0xde,0x59,0xbb,0x97,0xf9,0x9e,0x4e,0x20,0x4d,0x70, +0x4e,0x34,0x8a,0x36,0xad,0x8b,0x13,0xc2,0x3b,0xf6,0x77,0xed, +0xad,0xe3,0xf1,0x14,0x1e,0xa1,0xd9,0xb7,0x52,0x5e,0x46,0xdd, +0xb7,0x8b,0x12,0x22,0x56,0xef,0x5e,0xb4,0xcd,0x90,0x87,0xe9, +0xb0,0x81,0x46,0x99,0x47,0x2f,0x3c,0x61,0xd2,0x74,0x56,0x38, +0x71,0x35,0xe2,0x49,0x68,0xcb,0x7f,0x19,0xc7,0xca,0xfd,0x5b, +0x85,0xcb,0x32,0x4f,0x79,0x27,0xfb,0x69,0x12,0x93,0x79,0x22, +0xda,0xd3,0xaf,0x20,0xf1,0x22,0x26,0xca,0xfb,0x07,0x9c,0xb6, +0x83,0xd3,0x8b,0xb1,0xd8,0x56,0x3d,0x92,0xc5,0xd0,0x78,0x6c, +0xa4,0xce,0xc7,0x1c,0x8f,0x39,0x1c,0x3f,0xc7,0xc4,0xf8,0xc0, +0x28,0xe8,0x1b,0xf5,0x3a,0xee,0x58,0x83,0xe0,0x73,0xd4,0xf3, +0xa8,0xc7,0x51,0xfe,0x09,0x90,0x06,0x24,0x8f,0x2c,0x97,0xe0, +0x70,0x39,0x43,0x20,0x38,0x21,0x0b,0x86,0xf7,0x1b,0x71,0xf4, +0x0b,0x18,0xde,0x80,0xc3,0xe5,0x2f,0x3e,0x72,0x80,0x8f,0xe6, +0xe1,0x70,0x0e,0x94,0xf8,0x3d,0xc5,0x91,0x9c,0x5f,0x78,0x94, +0x4a,0x17,0x46,0xc1,0xae,0xe6,0x9e,0xc5,0xd6,0xe0,0x44,0x0e, +0x8e,0x5b,0xe9,0x84,0x3a,0xbe,0xe9,0x8c,0x09,0xae,0x28,0x7b, +0x74,0x3f,0x16,0x3e,0xe1,0x59,0x50,0xd2,0xe5,0x0c,0xd2,0x82, +0x6f,0xca,0xef,0x29,0xd6,0x24,0x25,0x54,0xeb,0xfe,0x20,0x6f, +0xe6,0x30,0x14,0x02,0xfe,0x8f,0xc2,0x53,0x54,0xe6,0x5e,0xe4, +0xa5,0xd2,0x36,0xf5,0x4c,0x92,0x23,0xbb,0xe8,0x0b,0x1e,0x6e, +0xb2,0xd6,0xa9,0xc1,0xc1,0x49,0xe4,0x31,0x0c,0xaa,0xc1,0x41, +0x5d,0x76,0x26,0xa8,0xed,0x02,0xda,0x8b,0xc8,0xbe,0x69,0xe4, +0x7c,0xc6,0xb9,0x8c,0xd3,0x69,0xbc,0x2b,0x77,0xc4,0x2b,0xcc, +0xe3,0x20,0xeb,0xee,0xc9,0xdc,0xfe,0xf9,0x8e,0x96,0xb3,0x1c, +0x95,0x2e,0xc2,0xbb,0xb6,0xb6,0x7b,0x09,0xbf,0xf0,0xb0,0x12, +0x34,0xe8,0xdf,0x5f,0x7f,0xce,0x85,0x2c,0xd9,0xec,0xa0,0xe7, +0x70,0xac,0x54,0x08,0x88,0x08,0x38,0xe4,0x7f,0x88,0x07,0x4d, +0x47,0xd4,0x25,0x36,0xe1,0x51,0xce,0x9d,0x31,0x4d,0x17,0x5a, +0x12,0xb5,0x54,0x2e,0xbf,0x5f,0xae,0xed,0x8e,0x7f,0xa7,0x05, +0xd3,0x6a,0x70,0x32,0x77,0x2a,0xfa,0x64,0x4c,0x8c,0xf6,0x4d, +0xd0,0xad,0x41,0x5d,0xf9,0xd1,0x5a,0x2e,0xa0,0xb5,0x86,0x84, +0x9d,0x0c,0x3f,0x11,0xae,0xa3,0xc7,0x9d,0xcf,0x38,0x2b,0x3f, +0x1f,0x42,0xb1,0x9c,0x7a,0x71,0xbb,0x23,0x22,0x93,0x75,0x61, +0x90,0x1d,0x8e,0x25,0x01,0x29,0x7b,0x15,0x3a,0x37,0xb8,0xbc, +0xf8,0x84,0x7c,0xdd,0xc7,0xc4,0x3d,0x4e,0x43,0xca,0x93,0x9e, +0xd3,0x7a,0xd1,0xd5,0xb1,0x5d,0x9c,0x20,0xdd,0x96,0x26,0x10, +0x31,0x0e,0xce,0x51,0xc9,0xf5,0x27,0xd1,0x95,0x93,0x5c,0x71, +0x22,0x15,0x5d,0xc7,0x48,0xae,0xdc,0xbf,0x47,0x54,0xff,0x8d, +0xc8,0xd9,0x79,0xb9,0xa5,0xd9,0x35,0x8c,0x50,0xb4,0xa9,0x47, +0x11,0xe5,0xbd,0x9c,0x97,0xf2,0x94,0xdc,0x3c,0x8c,0xa7,0x0d, +0x38,0xfd,0x34,0x79,0x09,0xa3,0x1b,0x70,0xf4,0x43,0xab,0xa5, +0xbd,0xfd,0x32,0x97,0x1c,0xc7,0xa1,0x0e,0x30,0x90,0x1c,0xb4, +0xd9,0xbc,0x71,0x81,0xcd,0x84,0x9f,0x84,0xb0,0xe8,0xf0,0x93, +0x61,0xe1,0xf2,0x76,0xca,0x67,0x22,0x13,0xce,0x25,0x9d,0x4d, +0xd7,0x92,0xb3,0x2c,0x0e,0xe2,0x4e,0xc5,0x9c,0x8c,0x8d,0xd5, +0x6e,0x86,0x41,0xec,0x83,0x7c,0xf5,0x08,0x07,0x18,0xa1,0x4f, +0xf6,0xca,0xa9,0x23,0x3f,0x23,0xfb,0x8d,0xdd,0x5d,0xa7,0x9b, +0x28,0x9d,0x85,0xab,0x15,0xf5,0x55,0xaa,0xea,0x73,0xd1,0x67, +0x4f,0x45,0x1e,0x82,0x3e,0x38,0x40,0x28,0xae,0x51,0x3a,0x3c, +0xef,0x28,0x51,0x46,0xbd,0xd4,0x8a,0xe4,0x22,0xe7,0xd7,0x79, +0x42,0x5f,0xfd,0x9c,0x46,0x61,0xfc,0x15,0xb7,0xaa,0xfd,0xed, +0xbc,0x34,0xae,0x67,0x24,0x6d,0x16,0xf5,0xac,0x3b,0xc5,0x55, +0x52,0x99,0xb4,0x8a,0x88,0x3b,0x21,0x83,0x4a,0x7a,0xbf,0x8b, +0x7a,0x9c,0xa4,0x87,0xb3,0xa9,0xa8,0xc7,0x64,0xb4,0x1e,0xf7, +0x7f,0xc3,0x4e,0x4e,0x5e,0x4e,0x69,0x4e,0x6d,0xef,0xb4,0xf2, +0xe7,0x44,0x79,0x37,0x47,0x5e,0xe2,0x07,0x7f,0xd8,0xd0,0x2b, +0xeb,0x8d,0xb1,0xd0,0x41,0x3d,0xaa,0x81,0xb0,0xb8,0xb9,0x80, +0x26,0xe5,0x26,0xaa,0x62,0x15,0x0e,0x29,0x42,0x48,0xc0,0x4e, +0xf7,0xa0,0xcd,0xbc,0x34,0xcf,0x5e,0xbd,0xa0,0x91,0x93,0xcc, +0xd3,0x69,0x58,0xee,0xfe,0x82,0xfd,0x99,0x8e,0x3b,0x85,0x84, +0x1d,0x09,0xbe,0xd1,0x5b,0x78,0xd1,0x4b,0x2a,0xa0,0x4d,0x58, +0xd3,0x0d,0xf1,0xd0,0x2c,0x75,0x60,0x33,0x9c,0x58,0x8d,0xd9, +0xb6,0x90,0xbd,0x02,0x2f,0x59,0xab,0xf5,0x9a,0xf1,0xee,0x3d, +0x62,0x25,0x0e,0xa1,0xcb,0xd1,0x82,0xf1,0xd2,0xe3,0x32,0x2f, +0x75,0x65,0xbc,0xd4,0xca,0x89,0x7e,0xd8,0x61,0x11,0x8e,0x6b, +0x7e,0x05,0xae,0x8b,0xff,0x5a,0x2c,0xf5,0xbf,0x67,0x6b,0xb2, +0xf3,0x72,0x8a,0xb3,0x19,0xc1,0x4c,0x6f,0x57,0x6b,0xca,0x53, +0xe0,0xaf,0x92,0x7f,0xe0,0x55,0xf2,0x52,0x5d,0x2b,0x75,0x1f, +0xb0,0x42,0xdb,0x2b,0xb0,0xe5,0x62,0xcf,0x0c,0x3b,0xf0,0x32, +0x26,0x97,0x34,0xaf,0x80,0x60,0x4c,0xd0,0xd4,0x81,0xce,0x44, +0xe1,0x0d,0x61,0x81,0xf9,0xc3,0xdf,0x07,0x33,0x29,0xea,0xbc, +0x01,0x1d,0x2e,0x07,0xed,0xa8,0xd4,0x29,0xf5,0x11,0x3b,0x39, +0x2b,0x79,0xb3,0x1a,0x87,0x56,0xd1,0x81,0x93,0x1c,0xc6,0x53, +0xd1,0xc1,0x42,0x72,0xe0,0x5c,0x07,0x88,0x0e,0x46,0xec,0x2f, +0x14,0xe3,0x00,0xfa,0xf5,0xf6,0xef,0xfc,0x1e,0x7a,0xe5,0xd6, +0x0b,0x4b,0x4a,0xa6,0x2a,0x67,0x67,0xf0,0x12,0x93,0xec,0xf4, +0xbb,0xd4,0x37,0xaa,0xc7,0x55,0x7e,0x95,0xc2,0x62,0x8f,0x85, +0x5b,0xa7,0xee,0x61,0x10,0xb1,0xf1,0x03,0x23,0xb5,0xc0,0x89, +0x73,0x3e,0xb4,0xad,0x2a,0xb7,0x3a,0xf7,0x12,0x2f,0x55,0xb4, +0xb2,0x90,0x9e,0x79,0x23,0xed,0x7e,0xfc,0x13,0x3e,0x2d,0x88, +0x3a,0xa9,0xe7,0xd4,0x11,0xa9,0x07,0x45,0x2a,0xb6,0x42,0xa2, +0xd4,0xca,0xc1,0xb1,0xd1,0x14,0xcd,0x3a,0xc1,0x8c,0x6b,0x35, +0xa5,0x9d,0xe0,0x62,0x4a,0xf0,0x82,0x0b,0x35,0x46,0xb3,0x2b, +0x04,0x8e,0x69,0x82,0x8b,0x31,0x63,0xeb,0xf8,0xeb,0x4c,0x16, +0x3e,0x66,0xd6,0x13,0x97,0x2f,0xa9,0x74,0x0f,0x13,0xc4,0x7b, +0x1c,0x3e,0x02,0x56,0x19,0xfb,0x0e,0xb0,0xe7,0x5a,0xcc,0x68, +0x07,0xf8,0x98,0x11,0x4c,0x97,0xaf,0xb3,0x67,0xd7,0x9d,0xd3, +0x04,0x1f,0x63,0xf4,0xe1,0x24,0x0d,0xfc,0x82,0xaa,0xf5,0x1b, +0x7a,0xf4,0x59,0xe7,0x1f,0xfb,0xb0,0x68,0xde,0xf0,0xef,0x45, +0xf3,0xb9,0xb9,0x1f,0xf4,0x5f,0x8a,0xbc,0x88,0xa9,0xf8,0x81, +0xea,0x4d,0xda,0xcf,0x7c,0x20,0x66,0x50,0x58,0x70,0x13,0x86, +0xdd,0x2d,0xfc,0x95,0xd1,0x45,0xe5,0x24,0x18,0xa9,0x0f,0xcb, +0x96,0xcb,0x2f,0x47,0xeb,0xdd,0x41,0xfe,0x86,0xd3,0x33,0xde, +0x90,0x73,0xd5,0x9b,0xb0,0x1c,0x57,0x19,0xf0,0xb0,0xe0,0x14, +0xb5,0x16,0xb5,0x9a,0x09,0xee,0xc3,0x1e,0x0a,0xbb,0x31,0x01, +0x77,0xcb,0x99,0x20,0x76,0x53,0xdc,0x0d,0x39,0xb0,0x9b,0x48, +0x63,0x19,0x79,0x1f,0x8e,0x93,0x65,0x48,0x7b,0xcc,0xa2,0x04, +0x0c,0x07,0x06,0x61,0x64,0x11,0x1e,0xa5,0x47,0xce,0x68,0xa4, +0x15,0x9f,0x2b,0xaa,0xd1,0x56,0x98,0xf9,0x90,0xc5,0xdb,0x5c, +0xc7,0xae,0xd5,0x41,0xee,0x65,0x48,0xf4,0xe1,0x93,0x07,0x43, +0xb4,0x42,0xc2,0xd8,0xd7,0xa9,0x25,0xe7,0xff,0xfa,0x7a,0x8e, +0xb7,0x23,0x7e,0xbc,0x5a,0x47,0x61,0x77,0xa5,0xb8,0xa6,0xa0, +0xa0,0x52,0xeb,0x7c,0xe4,0xd9,0x93,0xd1,0x87,0x61,0x36,0x0e, +0x14,0xba,0x4b,0xeb,0xcb,0x94,0x65,0xe7,0x23,0xcf,0x9d,0x88, +0x3e,0x04,0x93,0xd9,0x89,0xe2,0x5a,0xd4,0xfd,0x3d,0x34,0xfa, +0xd0,0xe9,0x83,0xa1,0x5a,0x7f,0xcf,0xf8,0xfd,0x07,0xb6,0x55, +0x85,0xf9,0xb5,0xaa,0x36,0x5e,0xba,0xd8,0xae,0x5e,0xca,0x42, +0x73,0xc6,0x5d,0x16,0x9a,0xc5,0x31,0xd2,0x28,0x0a,0x11,0xb5, +0x18,0x71,0x1f,0xc2,0xeb,0x30,0xfc,0x3e,0xa4,0xd7,0xe3,0x05, +0x2e,0x39,0x37,0x5e,0x71,0x21,0xcf,0x26,0x56,0x08,0xf5,0xdf, +0xeb,0x1d,0xcc,0xc2,0xaf,0x0b,0x17,0x9f,0x1d,0x9b,0x13,0x93, +0x67,0x97,0x22,0x6c,0xc2,0xbe,0xeb,0xc7,0x2f,0xd1,0x2b,0x77, +0x61,0x0e,0x94,0x9e,0x9b,0xca,0xc2,0x4b,0xae,0xf8,0x3f,0xf5, +0x4c,0xb9,0xa0,0x82,0x81,0xcb,0x7d,0xd8,0xba,0x9c,0xe0,0x56, +0x1c,0xf6,0xe1,0xc8,0x79,0x80,0x1e,0x6e,0x7d,0x4c,0x60,0x0e, +0x76,0x53,0xa0,0x18,0x86,0x5f,0x75,0x40,0x36,0x7c,0x84,0xc3, +0xe1,0x30,0x6b,0x8f,0xe1,0xe8,0x81,0xd3,0x89,0x9c,0x37,0xf1, +0x33,0xae,0x3a,0x39,0xb9,0x56,0x17,0xce,0xe0,0x51,0xa4,0xe4, +0xc3,0xea,0x09,0xcf,0x5e,0x90,0x9e,0xfa,0xf7,0x14,0x4f,0x91, +0x3c,0xc5,0x93,0xd4,0xa6,0xfe,0x84,0xe4,0x3f,0xc8,0xfd,0x3a, +0xe5,0x5f,0xbc,0xe8,0x68,0x43,0xaf,0x5a,0x1b,0xe1,0xb0,0xab, +0x56,0x46,0x72,0x72,0x42,0xf1,0x67,0xc8,0x24,0xcc,0xe5,0x07, +0x50,0x1c,0x76,0x0d,0x86,0x71,0x2d,0x9a,0x30,0xcc,0x10,0x87, +0x71,0xb0,0x56,0xf3,0x1a,0x68,0x1a,0x12,0xa9,0xaf,0x1b,0x5d, +0x83,0xc3,0x6e,0x11,0x68,0x5d,0xc3,0x7e,0x72,0x8b,0xfd,0xa4, +0x59,0x13,0x34,0xd7,0xa0,0x26,0x87,0x54,0xfa,0x88,0x5e,0xc2, +0x01,0xdf,0x2d,0x04,0x7b,0x13,0xc6,0xaa,0x57,0x64,0x58,0x66, +0xb9,0xe6,0x36,0x64,0xd4,0xe6,0x94,0x65,0xfb,0x56,0x08,0x1b, +0xb7,0xda,0x04,0x98,0x07,0xf9,0xe7,0xec,0x50,0x04,0x17,0xf1, +0x50,0x70,0x51,0xfa,0x81,0x3b,0x55,0x70,0xaa,0xb8,0x5c,0xbb, +0x4d,0xfc,0xee,0x62,0xcf,0x38,0x39,0xf1,0x93,0xd5,0xc1,0x09, +0xc6,0x93,0x75,0x1a,0xbd,0xeb,0x1e,0xa4,0x3d,0x8c,0xfe,0x45, +0xeb,0x07,0x46,0xa3,0x7c,0x8e,0xfa,0x1e,0xf3,0x3e,0x16,0x65, +0x2d,0xc0,0xe0,0x0b,0xf0,0x71,0x2a,0xf4,0xcb,0x0c,0x6b,0x14, +0xd6,0x1f,0x34,0x09,0x5d,0x1f,0xce,0x83,0x11,0x11,0xe7,0xc0, +0x7c,0x2a,0x65,0x3b,0x8a,0xd9,0xdc,0xff,0x5e,0x1c,0x39,0xf5, +0xaf,0xc5,0x91,0xb9,0x65,0xf2,0x54,0x91,0xaa,0xad,0x77,0xaa, +0x28,0xab,0x37,0xc4,0x46,0x49,0xcb,0xe9,0xf3,0xef,0x6f,0x90, +0x4a,0x9f,0xec,0x8a,0xd4,0xb2,0xc4,0x32,0x2d,0xd8,0xdc,0x8a, +0x56,0x5c,0x6c,0x79,0x74,0x45,0x64,0xb5,0x45,0xb4,0xb0,0x6f, +0x52,0xd0,0x52,0xab,0xa9,0xfc,0xaf,0x5f,0xb2,0xa0,0xd5,0x88, +0xcf,0x25,0x7b,0x78,0x75,0x91,0xe0,0x1a,0x78,0x47,0xf5,0x26, +0xb0,0x3e,0x70,0xc4,0x91,0x74,0x21,0x3a,0x3e,0x25,0x3f,0x33, +0xfd,0x33,0x7f,0xc2,0x73,0x22,0x36,0x6e,0xa1,0x18,0x63,0x01, +0x31,0x9c,0x37,0xeb,0x2f,0xa9,0x19,0x95,0xf3,0x6d,0xd4,0x56, +0x97,0xcc,0x38,0xe9,0x33,0x08,0x92,0x17,0xb4,0xf5,0x61,0xc2, +0x88,0x71,0xc7,0x20,0x0a,0x41,0xbf,0x63,0x10,0x69,0xd5,0x84, +0x20,0x18,0x80,0x41,0xff,0x65,0x89,0x0e,0xc3,0xd2,0x62,0x79, +0x3c,0x2a,0xbd,0x4d,0x3d,0x9c,0x14,0xdc,0xcf,0x7b,0x9d,0xfa, +0x2f,0xfe,0x08,0x0e,0xa6,0xea,0xb9,0x97,0xf0,0xe1,0x03,0xe3, +0x65,0x58,0xc4,0x89,0x13,0x8d,0xe9,0x6e,0x9f,0xe0,0x40,0xff, +0xed,0x05,0xbe,0x42,0xb1,0x32,0x35,0x33,0xad,0x98,0xc7,0x31, +0xe6,0x74,0x57,0x6e,0x60,0x5e,0x60,0xfa,0xa6,0x2d,0x42,0x6e, +0x60,0x7a,0x60,0x9a,0x3f,0x0f,0x9d,0x51,0x34,0x2f,0x26,0xf7, +0x42,0x66,0xec,0xf6,0x0a,0xc1,0x2a,0x60,0xc9,0x8e,0x85,0x07, +0x78,0x74,0x20,0x21,0xc7,0x43,0x4e,0x84,0x1c,0x8f,0x71,0x12, +0x3a,0xa2,0xaf,0x24,0x36,0x27,0x1e,0xa9,0x11,0x02,0xc2,0x7d, +0x23,0x7c,0x59,0x30,0x9d,0x42,0xd2,0xce,0xa6,0x9e,0x4b,0x3b, +0x9f,0x32,0xa3,0x6c,0xc9,0x75,0xb3,0x92,0x4a,0xc1,0xa4,0x71, +0xf3,0xcd,0xbd,0x4f,0x79,0xe9,0x18,0x1a,0xd1,0x58,0x07,0x8d, +0x4e,0xae,0x36,0x29,0xbd,0x32,0x52,0x37,0xf2,0xe2,0xe9,0xee, +0x07,0xda,0x18,0xe1,0xd8,0xc9,0x1d,0x9b,0xb9,0xd5,0xd1,0xd4, +0xb5,0xd0,0x55,0x78,0xd0,0x91,0x77,0xed,0xec,0x2f,0xfc,0x6d, +0xce,0xfd,0x98,0xc9,0x11,0x7f,0x9d,0x1d,0x47,0x23,0x0e,0x07, +0x8c,0x82,0xf9,0xb0,0x90,0xe2,0xb1,0x16,0x38,0x46,0x98,0x81, +0x76,0xd0,0x2e,0x73,0x66,0xd2,0xfd,0x77,0xcf,0xfb,0x62,0xba, +0x4e,0xb5,0xdb,0xa5,0xc6,0x82,0xfa,0xd4,0x06,0x2d,0x71,0x32, +0x4e,0xec,0x14,0xbf,0x34,0x35,0xe1,0x24,0x81,0xc1,0x4c,0x64, +0xde,0x99,0xbc,0x53,0x4a,0x5e,0x1c,0x32,0x9b,0x75,0xe6,0xd6, +0xff,0x3d,0xb8,0x23,0xcf,0x5a,0x14,0x28,0x6b,0x15,0x2d,0xbc, +0x54,0xd7,0xca,0x38,0x71,0xd6,0xf5,0xb4,0x7b,0xf1,0xf2,0xa8, +0xc6,0x24,0xea,0x2a,0xbe,0xad,0xc6,0xdc,0x4e,0x68,0xae,0xc5, +0xe6,0x16,0x4b,0x2b,0x4c,0x75,0x86,0x54,0x06,0x80,0x51,0xe8, +0x40,0x5d,0x21,0xca,0x14,0xcb,0x5d,0xd4,0x5a,0x35,0xd8,0xc4, +0x68,0xad,0x8a,0x14,0xee,0xca,0x54,0x24,0x29,0xe2,0x0a,0xb4, +0xca,0x7a,0xf4,0x9c,0xc4,0x3f,0x49,0xc4,0xde,0xd0,0xdd,0xfb, +0xf6,0xf2,0xa7,0x98,0x5f,0x5d,0x7e,0x5d,0xdf,0xb3,0xd0,0x51, +0xcc,0x5b,0x8f,0xbb,0x9d,0x19,0x0e,0x69,0x8f,0x23,0x09,0x76, +0x1a,0xcf,0xb8,0xca,0xc4,0x24,0xa6,0x57,0x3e,0xfd,0xb1,0x96, +0x48,0x3f,0xe0,0x1e,0x5a,0x09,0x26,0x60,0xcf,0x1c,0x30,0x42, +0xce,0x65,0x6d,0x4d,0x27,0xa0,0xd6,0xcf,0x04,0x8e,0x9a,0x53, +0xd5,0xce,0x42,0xff,0x8c,0xc0,0xa2,0x7c,0x61,0x47,0x8e,0xb7, +0xc2,0x2f,0x95,0xff,0x50,0xfc,0xff,0x27,0x4e,0x2a,0xf2,0xca, +0x72,0xea,0x7b,0x67,0xe2,0xc6,0xca,0xd3,0x96,0xcf,0x92,0xde, +0xf2,0xe2,0xe1,0x68,0x6a,0x61,0x84,0xce,0x57,0x2d,0x8d,0x70, +0xa1,0x2d,0x2c,0xb4,0x6c,0x6d,0x05,0x67,0xcb,0xb6,0x56,0x58, +0xdf,0xc4,0xa4,0x84,0xe4,0x86,0x5f,0x53,0xf1,0x47,0x70,0x92, +0x7e,0x64,0xde,0xe7,0xc4,0x94,0xe2,0xc7,0x4c,0x29,0x36,0x8f, +0xa3,0xf8,0xc9,0x7b,0xf8,0x84,0x63,0x07,0xef,0x61,0xe4,0x38, +0x22,0x25,0x61,0x1c,0xfd,0x0d,0x36,0x13,0x7b,0xc3,0x45,0xc6, +0x38,0xd0,0x33,0xdb,0x46,0xb8,0x99,0xd5,0x9e,0x5f,0x5f,0xc2, +0x83,0x8a,0xf3,0xdf,0xe0,0xe2,0xbe,0x6e,0x93,0x8b,0xd2,0x31, +0xc7,0x2d,0xdd,0xc7,0x53,0x28,0xdf,0x55,0x1e,0x54,0xbc,0x63, +0x95,0xdf,0xf4,0xed,0x38,0x68,0x7f,0xa2,0xa9,0x00,0x4d,0x95, +0x30,0x0f,0xfa,0x3c,0x81,0xd1,0x7c,0x19,0x5e,0x22,0xd9,0x59, +0xa9,0x39,0x49,0xd9,0x3c,0xa4,0x8e,0x69,0x83,0x99,0x3d,0x53, +0x71,0xe6,0x7f,0x7c,0xea,0x3f,0x18,0x92,0x9b,0x5d,0x94,0x25, +0x43,0x7e,0x9b,0xfa,0x53,0xa2,0x7a,0x90,0xfb,0x3a,0xe5,0x47, +0xbe,0x39,0x90,0xe2,0x43,0xb1,0x16,0x1e,0x12,0x6c,0x67,0xb4, +0x13,0xcd,0x5f,0x81,0x39,0xd7,0x32,0x87,0xbe,0x02,0xeb,0x39, +0x04,0x4f,0x39,0xd1,0x19,0x68,0xfe,0xb6,0x37,0x14,0x59,0xcf, +0x40,0x6b,0x0e,0x2b,0xa4,0x1f,0x69,0x1b,0x18,0x5b,0x34,0x8a, +0xfb,0xb0,0x54,0xda,0x47,0xe0,0x3b,0xcd,0xc6,0x36,0x30,0xb5, +0xb8,0xc8,0x3e,0x57,0x70,0xb8,0x13,0x4d,0xa8,0x11,0xe8,0x5c, +0xe5,0x1a,0x50,0x87,0x82,0xce,0x4d,0xd4,0x21,0x10,0xa4,0x69, +0x08,0x3a,0xd7,0xfe,0x3a,0xd3,0xcd,0xce,0x48,0xd9,0xce,0xf4, +0x2a,0x4e,0x31,0xe2,0x80,0xc0,0x14,0x7a,0x13,0xa7,0x18,0x70, +0x50,0x23,0xa7,0x5a,0x9f,0x62,0xc8,0x6c,0x19,0x78,0xcd,0x6e, +0x9c,0xb2,0x9a,0x1b,0xaa,0xfe,0xaa,0x98,0x82,0xfe,0x2f,0x4d, +0x5f,0xc0,0x8c,0xf7,0x97,0xc6,0xc1,0x54,0xe0,0x5a,0x70,0x00, +0x49,0xad,0x4f,0x6e,0x8d,0xa9,0x75,0x60,0xc8,0xec,0xb8,0xc7, +0x34,0xd8,0x9a,0xd7,0xe3,0x12,0x1b,0xe2,0xea,0x63,0x5b,0x19, +0x56,0xef,0x44,0xe2,0x85,0xc3,0xac,0xb1,0x0f,0xdf,0xc8,0x68, +0xe3,0x77,0xd0,0xf7,0x66,0xb5,0xc1,0x2d,0xbb,0x35,0x38,0x8a, +0xfd,0x67,0xe2,0xda,0x85,0x7d,0xdf,0x98,0xa0,0x0e,0x1a,0x83, +0x8e,0x11,0x4e,0x72,0x80,0x49,0x7b,0xc8,0x9e,0x13,0x7b,0x8f, +0xef,0xd7,0xc1,0x99,0x0e,0x30,0x81,0x0b,0x5e,0x63,0xef,0x3a, +0xc7,0x2a,0xcf,0x45,0xf8,0xba,0xad,0xaa,0x3e,0xb3,0xf4,0x5c, +0xd4,0xd9,0x13,0xe7,0x8e,0xc0,0x78,0xd4,0x16,0x0a,0x2a,0xf0, +0x33,0x18,0x16,0xc6,0xa2,0xca,0x5f,0xb3,0x25,0xe7,0xe3,0xce, +0x25,0x9c,0x4d,0xd4,0x82,0xf9,0x8c,0x0c,0x72,0xa7,0x12,0x4e, +0x25,0x26,0x6b,0xa7,0xc0,0xb8,0x06,0x1c,0x77,0x15,0x18,0xc7, +0xce,0xdb,0x1a,0x9d,0x22,0xa7,0x6e,0xd5,0x92,0xee,0x37,0x5d, +0x86,0x9c,0x4b,0xa4,0x27,0x53,0x5d,0x4f,0xb7,0xa2,0xb9,0x3d, +0x4e,0x5d,0xca,0x42,0xaf,0x83,0x90,0x92,0x93,0x56,0x9c,0xc6, +0xb0,0x22,0xb9,0x59,0x3d,0x91,0x64,0xde,0x49,0x7b,0x16,0xfb, +0x9a,0x87,0x33,0x63,0xe8,0x7a,0x1c,0x75,0x99,0xc0,0x37,0xf2, +0x54,0xda,0xd4,0x7f,0xe1,0x54,0x22,0xed,0xcb,0xa7,0x2f,0x67, +0xcf,0xe5,0x60,0xb4,0xe6,0xeb,0x97,0xb3,0x09,0x8b,0x9e,0xd3, +0x28,0xcc,0xf8,0x17,0xce,0x20,0xb6,0x03,0x50,0x7f,0x12,0xe8, +0x33,0x1c,0x92,0x27,0x34,0x7d,0x91,0xf9,0xce,0xe4,0xf9,0xac, +0x8f,0x1d,0x84,0x8c,0xbc,0xcc,0x92,0x4c,0x46,0x5c,0x33,0x5b, +0x18,0x6e,0xe6,0xdc,0xc9,0x90,0x47,0xc2,0x52,0x83,0xa9,0x03, +0x74,0x35,0x90,0x52,0x4d,0x07,0xb8,0xdb,0x40,0x3c,0x7a,0x3a, +0x29,0x8e,0xe0,0x3c,0xc3,0xcf,0x95,0xea,0xb6,0x92,0x2b,0xe7, +0xef,0xc7,0xdf,0x4a,0xdb,0x5d,0x2d,0x58,0xee,0x32,0x08,0x31, +0x3a,0xc4,0xbf,0x02,0x57,0x58,0x8e,0xae,0x37,0x21,0xa8,0x0e, +0xbb,0x2b,0xeb,0x80,0xbb,0x81,0x7d,0x6a,0xa0,0xcf,0x6d,0xe4, +0xea,0x61,0x16,0x96,0xa0,0x60,0x03,0x02,0x16,0xe3,0xac,0x06, +0xe0,0x6e,0xf6,0x7e,0x73,0x13,0xb9,0x06,0x77,0xac,0x91,0x5f, +0x60,0x9c,0x1f,0x86,0xd3,0xcd,0x70,0x80,0x4e,0x8d,0x5b,0xd5, +0xd7,0x69,0xef,0xa2,0x40,0x43,0xeb,0x21,0x46,0x70,0x5b,0x8f, +0x6f,0x3b,0xb1,0xf5,0x78,0xb4,0x8d,0xf0,0x26,0x12,0x74,0xe2, +0x1f,0xa5,0x1e,0xae,0x13,0xec,0x42,0xcd,0x22,0xd6,0x1f,0xe6, +0x7f,0x87,0xa5,0x35,0xb8,0xf4,0x31,0x6c,0x42,0x67,0xb2,0x2e, +0x65,0xcf,0x13,0x79,0xbb,0xc5,0x8a,0xe4,0x44,0x95,0xee,0x53, +0xe2,0xc0,0xc8,0xfb,0x52,0xb8,0x4a,0x51,0xf7,0xa6,0x9c,0xab, +0xc8,0xce,0x80,0xe2,0x98,0x9b,0x30,0x86,0x43,0x3b,0x24,0x74, +0x09,0xe3,0xfa,0xa7,0xb3,0x4f,0x66,0x9f,0xca,0xe1,0xc1,0x66, +0x09,0x7d,0x04,0x63,0x96,0x10,0x70,0xd6,0xc4,0x09,0x8f,0x40, +0x4e,0x4e,0xec,0xfe,0x8f,0x55,0x9e,0xa9,0x99,0xa9,0x8a,0xd4, +0x22,0x5e,0x3a,0xd5,0xaa,0xee,0x4f,0xf2,0x1f,0xe7,0x7e,0x97, +0xfc,0x2b,0x5f,0xbf,0x87,0xe2,0x4a,0x16,0x89,0x57,0x92,0x2e, +0x4d,0x76,0x90,0xcf,0x0e,0x18,0x5f,0x1d,0x41,0x9f,0xc0,0x92, +0x45,0x04,0x96,0x68,0x3e,0x81,0x15,0x8b,0x08,0x7e,0x87,0x0d, +0xb4,0x15,0x06,0xd7,0x60,0xa9,0x0b,0x10,0x4b,0x1c,0x0b,0xd3, +0xd5,0x03,0x1a,0x7b,0x16,0xe3,0x56,0x16,0x55,0xf6,0xa2,0x8e, +0xfd,0x14,0x9d,0xda,0x4d,0x97,0x7e,0x4d,0x05,0xe1,0x34,0xac, +0xd3,0xba,0x84,0x37,0xb8,0x5d,0xc7,0x76,0x1d,0xdf,0x75,0x3c, +0xd2,0x51,0x78,0x16,0xf3,0x3c,0xee,0xca,0x05,0x7e,0x7e,0xa3, +0xa8,0xd7,0x50,0x43,0x60,0x25,0x36,0xd1,0xda,0xc7,0xa9,0xdf, +0x46,0xbd,0xe7,0xeb,0x1a,0xd1,0x89,0x8b,0x52,0x44,0x2a,0xcf, +0x2a,0xed,0x63,0x84,0xdd,0x38,0x7c,0xeb,0x6c,0xfb,0xe5,0x72, +0x12,0xba,0x74,0x39,0xb7,0x59,0xb4,0x71,0x8a,0x99,0xca,0xca, +0xcf,0xcd,0x6d,0xa3,0x85,0x8f,0xca,0x49,0x68,0x2d,0xac,0x2a, +0x2d,0xa8,0xca,0x77,0xaf,0xf2,0x6c,0xf6,0x51,0xd5,0x0b,0x56, +0x05,0xee,0x25,0x7e,0x55,0x7c,0x1a,0x28,0xe9,0xa1,0x85,0x07, +0x96,0xfb,0x18,0xfa,0x5c,0xdd,0x77,0xef,0xe8,0x73,0xa6,0xc2, +0x77,0x50,0x43,0xd4,0xbc,0x46,0x40,0x13,0xfb,0x7f,0x38,0xc2, +0xfe,0x03,0x40,0x73,0x2d,0xe7,0x75,0xc8,0xf5,0xb0,0xf3,0xe1, +0xde,0x11,0xdb,0xbf,0x41,0x6d,0xda,0x5f,0x63,0x4e,0xf9,0xb5, +0x8a,0x56,0x5e,0x6a,0x68,0x53,0x2f,0x23,0x59,0xd7,0xd2,0xee, +0x25,0x7c,0xc5,0x8b,0xff,0x83,0xe3,0xe8,0xb8,0x66,0x46,0xa5, +0x16,0x92,0xbc,0xf4,0xac,0xcc,0xb4,0x1c,0xd7,0x1c,0x21,0x78, +0xdb,0xf6,0x1d,0x7e,0x3b,0x8b,0xb6,0x0a,0x38,0xe2,0x77,0xcb, +0xd1,0x8c,0x2b,0x14,0x65,0x07,0xe6,0x6c,0xcf,0xda,0x92,0xae, +0xb5,0xc1,0x2f,0x37,0x38,0x6b,0x67,0x7a,0xa0,0x16,0xce,0xc6, +0xc9,0x4d,0xef,0x39,0xf1,0xac,0x07,0x95,0xdc,0x71,0xb2,0xe8, +0xce,0xd9,0xfe,0x4a,0x4d,0x11,0x3a,0x09,0xb8,0x49,0xdb,0xe8, +0x45,0x28,0xab,0xc2,0xb2,0x3a,0xc8,0x00,0x63,0xe9,0x39,0xf3, +0xbf,0x24,0x27,0xcc,0x77,0x83,0x7c,0x3b,0xec,0x70,0x55,0xcf, +0xad,0x26,0x52,0x1f,0x28,0xa5,0x13,0x71,0xd3,0x4f,0x04,0x12, +0x26,0xd2,0x9f,0xc0,0x6f,0x22,0xc1,0x61,0xe7,0x69,0x6e,0x7a, +0x5a,0x66,0x52,0x86,0x47,0xb2,0xb0,0x37,0x68,0x67,0xf0,0xb6, +0x5d,0x3c,0x5e,0xa8,0xa0,0x59,0x3b,0xd3,0x82,0x13,0x76,0x95, +0xa5,0x08,0x7b,0xd3,0x77,0x66,0x06,0xa5,0xf0,0xf0,0xad,0xd4, +0x8f,0xe6,0xfb,0xe6,0x6f,0xc8,0xd8,0xd4,0x94,0x23,0x6c,0x2f, +0xf3,0xae,0x0c,0xc8,0xe5,0xa5,0x36,0x1c,0x43,0xab,0x0b,0x4b, +0x2a,0xb2,0xca,0x1c,0x33,0x84,0x20,0xef,0xcd,0x5e,0x6e,0xfe, +0xbc,0xf8,0xf9,0x23,0x9a,0xec,0x9b,0xec,0x1a,0xeb,0xd3,0x1c, +0x2f,0x0f,0x0b,0x54,0xef,0x51,0xf2,0xe8,0x1f,0x4a,0xa3,0xfc, +0x22,0x5d,0xcf,0x7a,0xb6,0xc6,0x08,0x47,0x8b,0xc3,0xab,0xc2, +0x0a,0xf8,0xa1,0x7f,0xf4,0xd9,0x48,0xcb,0x33,0xd3,0x59,0xe4, +0xf0,0x21,0xc6,0x89,0x1a,0xb8,0x07,0x3f,0x21,0xce,0xfb,0x63, +0xea,0x74,0xd5,0x81,0x6b,0x7b,0x42,0x88,0x9e,0x6a,0xeb,0x63, +0x9d,0x9e,0x8f,0x19,0x23,0x58,0x0b,0x73,0xda,0x60,0xb6,0xbc, +0x90,0x26,0x6b,0x1d,0xe6,0x12,0x4c,0xb1,0xc6,0x31,0xb8,0x00, +0x47,0xeb,0x0c,0xfd,0xc3,0x40,0x9d,0x4c,0xff,0x1c,0x66,0x02, +0x27,0xd0,0x81,0xc3,0x13,0xd6,0xf8,0x29,0x5a,0xe2,0x74,0x9d, +0x3a,0x07,0x0d,0x70,0x82,0x85,0x57,0x61,0x2c,0x64,0x6a,0x83, +0x03,0x1c,0xec,0x19,0x4a,0xbe,0xac,0xde,0xf2,0x9d,0x0e,0x70, +0xdc,0xa5,0xec,0xcc,0x16,0x5d,0x70,0x24,0xc6,0x09,0x1a,0x8c, +0x4e,0x7f,0x44,0xd6,0xee,0x8f,0xbd,0xa1,0x2b,0xf6,0x80,0x92, +0x0c,0x55,0xff,0x96,0x4c,0x71,0x3e,0xe7,0x11,0x76,0xa1,0x94, +0xd1,0x43,0xd8,0x26,0xfa,0xe2,0x3b,0x4b,0x28,0xc5,0x71,0x98, +0x65,0x0d,0x59,0x38,0x4b,0xfa,0x13,0x66,0x41,0x74,0x33,0x46, +0xc3,0x08,0xf2,0x7d,0x34,0x90,0x94,0xc7,0x0a,0xff,0x66,0x61, +0x81,0xff,0xe8,0xdd,0xa8,0x15,0xc6,0x4b,0xb6,0xe0,0x4e,0x0e, +0xe2,0x34,0x97,0xb9,0x18,0xbc,0x58,0x65,0x21,0x40,0xe8,0x93, +0x6b,0xc0,0x27,0xca,0x49,0xbb,0xcd,0x31,0x8a,0x5b,0x9e,0xb3, +0xfd,0x91,0x0e,0x2c,0xe6,0xea,0xd3,0xd2,0x18,0xf9,0x9c,0x4f, +0x8c,0x93,0x35,0x86,0xaa,0xd7,0xa4,0x51,0x8f,0xd0,0xd8,0x12, +0x56,0x1e,0x98,0x09,0x57,0x48,0xb1,0x6f,0x85,0x5f,0x9d,0x7f, +0x69,0x83,0x80,0x1f,0x3d,0x9c,0xff,0xcc,0xe0,0x37,0x1e,0xbf, +0x35,0x87,0x36,0xae,0xd0,0xae,0xc6,0xba,0xc3,0x96,0x97,0x1e, +0xe3,0x75,0xc6,0x5e,0x59,0x33,0x39,0xac,0xc6,0xe0,0x15,0x0a, +0xf6,0x88,0x90,0x07,0x77,0x7e,0x48,0x85,0x19,0x3c,0x63,0x4e, +0x9b,0xb9,0x75,0xd9,0xdb,0x1e,0xe8,0x80,0x21,0x57,0x93,0x99, +0x5e,0xa3,0x0b,0x3a,0xc4,0x38,0x45,0x03,0x97,0x10,0xe9,0xae, +0xfa,0x34,0xb5,0x9a,0xb9,0x70,0xfe,0x58,0xfd,0x72,0x07,0x01, +0xfa,0x3e,0x78,0xf1,0xa6,0xed,0x7b,0x5e,0xd4,0x41,0x16,0x8e, +0x9c,0x25,0x37,0x70,0x66,0xf5,0x46,0xf1,0x1a,0xc5,0x2a,0xae, +0xa1,0xa8,0xb9,0x39,0xbf,0x9e,0xaf,0xc6,0x1f,0x48,0x7c,0x7a, +0x7c,0x7a,0x6c,0x86,0x79,0x8a,0xb0,0x16,0x3f,0xfe,0x62,0x1c, +0xea,0x2c,0xcb,0xb5,0x16,0x72,0x13,0xb3,0x93,0xb2,0x92,0x78, +0x3c,0x06,0x0d,0x64,0x03,0x4e,0x41,0x6e,0x2e,0x1e,0x35,0xcf, +0x32,0x13,0x20,0xf9,0x3a,0xd0,0xdf,0xab,0xc0,0x88,0x49,0x5a, +0x0e,0x43,0xc4,0x19,0xd4,0xd7,0xdd,0xc2,0xd1,0xd2,0x8b,0xc7, +0x52,0xae,0xa1,0xac,0xb2,0xaa,0xa4,0x86,0xc7,0x41,0x72,0x3e, +0xbf,0x48,0x1b,0xc6,0x7d,0x36,0x1e,0xd9,0xac,0x83,0x27,0x38, +0xe8,0xd4,0x3c,0x57,0x7c,0xa6,0xbc,0x52,0xfb,0x22,0xe4,0xe1, +0x4a,0x82,0x4b,0x59,0x48,0xac,0xde,0xd8,0x6c,0x5d,0xea,0x56, +0x55,0x2e,0xf8,0x16,0x1b,0x75,0xb9,0x15,0xf3,0x8c,0x46,0x9e, +0xa6,0xe8,0xc5,0xad,0xd9,0x95,0x7c,0x4b,0x17,0x66,0x9b,0xe0, +0x62,0x32,0xb1,0xd4,0xe7,0x27,0x1d,0xd8,0xf0,0xd7,0xc6,0x38, +0x13,0x88,0x65,0x82,0xc6,0xd0,0x3f,0x74,0x8e,0x52,0x63,0x2e, +0xf0,0xb0,0xbc,0x34,0x34,0xed,0x3d,0x64,0xe0,0x12,0xe8,0x03, +0x1b,0x5b,0x70,0x23,0xf4,0xb1,0xc4,0x3e,0x1f,0xde,0x43,0xee, +0x83,0x8b,0x31,0xe3,0x25,0x39,0x86,0xda,0x3e,0xa3,0xf1,0xa3, +0x59,0x95,0xce,0x02,0x8c,0x78,0x5f,0x2e,0x2f,0x4d,0x9d,0xcc, +0xbf,0xc0,0x5c,0xce,0x38,0x6d,0x67,0xbb,0x4e,0x37,0x57,0x9c, +0x2c,0xe7,0x38,0xf9,0x8c,0xd8,0x26,0x69,0x48,0x96,0x36,0xd4, +0x67,0xef,0xa6,0x7d,0x9e,0xfb,0x79,0x38,0xf9,0x14,0xd2,0x71, +0x2a,0xbb,0xab,0x71,0x0b,0x1a,0xbf,0xb3,0x1c,0x8f,0x86,0x56, +0x60,0xc8,0xee,0x39,0x05,0xd3,0x5f,0x93,0xa3,0x38,0x32,0x60, +0xc2,0xd4,0xe9,0xe5,0xce,0xc2,0x2f,0x3f,0x17,0xc3,0xf0,0x73, +0x30,0x9e,0xbf,0x8d,0xe9,0x5c,0x50,0xc4,0x8e,0x88,0x1d,0x87, +0x12,0xac,0x84,0xaf,0x73,0xee,0xa8,0xba,0x4b,0x78,0x51,0x53, +0xf4,0x66,0xd6,0x85,0x2a,0xd6,0xf7,0xe8,0x72,0x9c,0xe2,0x3c, +0x3c,0x09,0xf3,0x58,0x5c,0x29,0x56,0x9f,0xa1,0x77,0xcc,0x57, +0xe1,0x4a,0x07,0x71,0x4e,0x03,0x81,0x62,0x4d,0xf9,0x83,0x89, +0x83,0x68,0xd2,0x40,0x7a,0xc2,0x70,0x22,0x0d,0x55,0xed,0xcf, +0xdb,0x9b,0xe5,0xc2,0x94,0x7f,0x60,0xa2,0xbf,0xac,0xfc,0xa3, +0x52,0xff,0x3a,0xe7,0xbc,0x53,0x48,0x0a,0x4c,0x90,0xcf,0xe1, +0x85,0x30,0x9a,0xac,0x62,0x42,0x2a,0xdf,0x2e,0x51,0x08,0xf3, +0xd9,0xe3,0x15,0xec,0xc9,0xe3,0x39,0x7b,0x71,0x55,0x23,0x07, +0xbf,0x6b,0xa6,0xfe,0xef,0x6f,0x76,0xb0,0x6f,0x92,0xec,0x45, +0xdb,0x46,0x4e,0x0a,0x90,0xcc,0xe8,0xe6,0x1d,0x1e,0xdb,0xdd, +0x82,0x78,0xd0,0x7d,0x0e,0x19,0x12,0x27,0xb7,0x51,0xc4,0x38, +0x0f,0x03,0x3d,0xb3,0x02,0x57,0xe1,0xdb,0xee,0xfa,0xd7,0xd1, +0x30,0x90,0x7f,0x85,0x7a,0x5c,0x60,0xc8,0xf6,0xd0,0xc0,0xf0, +0x4c,0x7b,0xe1,0x71,0xfe,0xaf,0x2d,0x37,0x1b,0x78,0x71,0x1c, +0xf6,0xa5,0x26,0xdc,0xb6,0x43,0xe7,0x58,0xa3,0x9b,0xfe,0xca, +0xae,0xd5,0xc2,0x8c,0xd7,0x24,0x02,0xfb,0x33,0xdd,0x3b,0xd8, +0x24,0xcf,0x51,0x80,0xd1,0xb7,0xdb,0xd8,0xe5,0x9f,0xf2,0x4f, +0x98,0x6e,0xb0,0xca,0x0e,0xbe,0xc4,0x9a,0xb7,0x2c,0x2e,0xa1, +0x50,0x17,0x3e,0x26,0xf6,0x29,0x1a,0x52,0x02,0x84,0x53,0x8c, +0xef,0x82,0x78,0x4e,0xf4,0x37,0xa1,0x98,0xdf,0x05,0xf9,0xf2, +0x6a,0xc8,0x3e,0xd4,0x00,0xe3,0x6f,0x12,0xf5,0x76,0x4d,0x03, +0xcc,0xbf,0x49,0x86,0xfe,0x61,0xaa,0x2e,0xa2,0x7f,0x8e,0x36, +0x13,0xe7,0xe2,0x30,0x69,0x48,0xcf,0x92,0x4e,0x75,0x5f,0xb8, +0x29,0xbd,0xeb,0x12,0xdf,0xc1,0x33,0xa9,0x0a,0x17,0xf4,0x2e, +0x1b,0xd3,0xe4,0x7a,0x77,0xac,0x12,0x9f,0x31,0x35,0x31,0x4c, +0x5c,0x45,0xa4,0xff,0xc1,0x4c,0x26,0xbb,0x1c,0xba,0x9d,0xb8, +0x99,0xdb,0x2d,0xe7,0x30,0x49,0xeb,0xf4,0xe4,0x76,0x4a,0xd9, +0xb9,0x2e,0xad,0x48,0xee,0x9c,0x49,0xc2,0xc6,0xa7,0xfa,0x8a, +0x5a,0x61,0xe6,0xa3,0x3d,0x0d,0xd0,0x4f,0x5b,0x0c,0xc5,0x08, +0xfa,0xd7,0xf1,0xa3,0xde,0x6b,0xc8,0xff,0x8f,0x6b,0xf8,0xa1, +0x62,0xba,0xfa,0x1e,0x95,0xf7,0x68,0x8a,0xe1,0xd6,0x2e,0xc7, +0x81,0x86,0xe8,0x62,0x98,0xcb,0xec,0x3f,0xea,0x6b,0xa0,0xaf, +0x2a,0x61,0x00,0x13,0xf2,0x55,0x38,0x00,0x3e,0x9f,0x03,0x49, +0xb3,0x72,0xda,0x05,0x3c,0xff,0x14,0xe9,0x57,0x66,0xff,0xe2, +0x71,0x17,0x23,0xc5,0x96,0xe2,0xd8,0x56,0xc2,0xbc,0x89,0x06, +0x4c,0xf5,0x5d,0x65,0x36,0xaf,0x71,0x51,0xf5,0x84,0x62,0x1c, +0xda,0x9e,0x21,0x6c,0x02,0xce,0xe9,0xf7,0x8d,0x9d,0xb5,0x37, +0x8b,0xef,0xab,0xbe,0xe3,0x61,0x4c,0x0c,0xdd,0x32,0xcb,0x7b, +0x8d,0xe9,0x9c,0xe6,0x79,0xb5,0x93,0x2b,0x70,0x70,0x5b,0x86, +0xe0,0x0e,0x03,0xec,0x7f,0xf3,0xe8,0xaa,0xbb,0x55,0x72,0x4f, +0xf9,0x92,0xef,0x71,0x97,0x0a,0xa9,0x18,0x02,0xa1,0xd2,0x12, +0x1c,0x29,0x6f,0x81,0xf8,0x9b,0xec,0xf1,0x75,0xba,0xe2,0x06, +0x54,0x4b,0xe5,0x04,0x14,0x20,0x51,0x47,0xa5,0x71,0xbe,0x53, +0x5a,0x80,0xab,0x50,0x1f,0x7c,0xc5,0xa7,0xce,0x8f,0xcf,0x61, +0xb1,0x8a,0x9d,0x2b,0x60,0xe7,0x5c,0xd8,0xb9,0x6b,0xde,0x35, +0xfe,0x2c,0x50,0xfd,0xa0,0xae,0xa2,0xa6,0xd0,0x42,0x9a,0xa6, +0xbc,0x18,0x03,0x23,0xbe,0xac,0x92,0x71,0xe7,0xeb,0xf9,0x3f, +0xae,0x83,0xa1,0xbc,0x34,0x39,0x90,0xda,0x8c,0xd5,0x9b,0x32, +0x76,0x61,0xad,0x0c,0x1a,0x5f,0x3f,0xf9,0xa5,0x45,0xce,0x94, +0x6e,0x8d,0xc9,0xb4,0x5d,0xba,0x6c,0xfe,0x94,0xec,0x5a,0xba, +0x4d,0xdf,0x67,0x09,0x2f,0xc6,0x73,0x47,0xd6,0x46,0xac,0xd8, +0xeb,0xc8,0x7b,0x87,0xec,0xde,0x61,0x32,0x0a,0xf7,0x71,0x29, +0x66,0x1a,0xe0,0xc5,0xbd,0x29,0xce,0x6e,0x49,0xd3,0xcd,0xbe, +0x1e,0xf7,0xee,0x0c,0x33,0x21,0x29,0x84,0x4b,0x6f,0x49,0x6e, +0x4d,0x68,0xe7,0x87,0xde,0x14,0x7f,0xa6,0xef,0x23,0xa1,0x4f, +0xcc,0xab,0x44,0xde,0xae,0x03,0x4e,0x9b,0xd9,0x63,0x95,0x13, +0x54,0x39,0x90,0x99,0x07,0xb0,0x4f,0x18,0xf6,0x39,0xc2,0xab, +0xdb,0xcd,0x68,0x55,0x5c,0x92,0x4a,0xb7,0x86,0x58,0xc4,0x6b, +0x98,0xe2,0x6e,0xe2,0x73,0xe8,0x6c,0xae,0x6e,0x1e,0x81,0x7e, +0xd1,0xd0,0x37,0xed,0xc7,0xa2,0x6d,0x95,0xc2,0x3c,0xdf,0x2f, +0xf7,0x62,0x9f,0x10,0xfe,0x89,0x19,0x2e,0x20,0xd6,0x99,0xbb, +0xba,0x74,0x1a,0xa4,0xe9,0x14,0x3c,0x6b,0xd0,0xb3,0x1b,0x56, +0x42,0x74,0x8f,0x3b,0x43,0xe9,0xe5,0xab,0x7b,0x13,0xa7,0xeb, +0x63,0x8a,0xd3,0x1f,0x3a,0x75,0x98,0xc6,0x61,0x20,0xbc,0x65, +0x46,0xd7,0xc9,0x8c,0xae,0x4d,0x1e,0x03,0x52,0x30,0x09,0xf4, +0xca,0x9d,0x9a,0x30,0x3b,0x24,0x70,0x5b,0x13,0x14,0x26,0xa8, +0xe0,0xde,0xb9,0xd2,0xd5,0x78,0xaa,0x9b,0xc0,0x29,0x1c,0x48, +0xf5,0xf1,0xd4,0x6d,0x82,0xcd,0xac,0xda,0x20,0xa4,0x42,0xdf, +0xa2,0x07,0xc5,0x01,0x55,0xc2,0x12,0xef,0xc9,0x01,0x28,0xec, +0xe4,0xc5,0xda,0x12,0xfa,0x4b,0x30,0xf0,0xbe,0x3f,0xf9,0x64, +0x35,0x0a,0x93,0x95,0xf8,0x91,0x72,0xac,0x3c,0x65,0xbb,0x5c, +0xbd,0x89,0xaa,0x27,0xf4,0x58,0xe3,0x11,0x2e,0xc5,0x50,0x03, +0x3c,0xb9,0xb6,0xac,0xf4,0x7a,0x5d,0xf5,0x99,0x9e,0xc2,0x9e, +0x1f,0x6e,0x90,0xa1,0x5f,0xaf,0xa4,0x57,0xd4,0x0d,0xea,0x75, +0x3d,0x3e,0x18,0xc4,0x25,0xb0,0xd6,0xda,0xc0,0x55,0x67,0xc8, +0x59,0x3a,0x12,0x7a,0x3a,0x89,0x7a,0x8c,0x74,0x91,0x9a,0x5d, +0xd0,0xc0,0x81,0x58,0x41,0x3c,0x0f,0xc4,0x96,0xe9,0xc2,0x64, +0xf8,0x13,0xea,0x25,0x3d,0xc9,0x8d,0xac,0x4d,0x97,0x11,0xbe, +0x96,0xab,0x4d,0x4f,0xac,0xd2,0x9d,0x08,0xe7,0x29,0x36,0x83, +0x29,0x34,0x73,0x43,0xff,0xe8,0x2f,0x1a,0x50,0x51,0x03,0x19, +0xf0,0x90,0xcd,0x27,0x7d,0x4f,0xf8,0xeb,0xa0,0x06,0xfb,0x78, +0x1d,0xb3,0x39,0x9f,0x93,0x7e,0x27,0x02,0x74,0xa6,0x5b,0xbc, +0xe5,0x0e,0xa1,0x61,0x30,0xf6,0xb7,0xc4,0x41,0xcd,0x9b,0x84, +0x2e,0xf8,0x2c,0x13,0x86,0x44,0x82,0xa5,0x3c,0xb1,0xde,0x8f, +0x69,0x98,0xa4,0xde,0xed,0x46,0x6a,0x32,0xe4,0xd0,0x81,0xd0, +0x8f,0x84,0xa3,0x19,0x73,0x46,0x13,0xe4,0x9a,0x3c,0x85,0x9b, +0x20,0xe4,0x03,0x1f,0x03,0xce,0x0c,0x91,0xd9,0x8f,0xe7,0xf4, +0xfe,0x58,0xfb,0xaf,0x38,0x83,0x4f,0xdb,0x48,0x4f,0x8c,0xe6, +0x29,0xc5,0x49,0x55,0x81,0x36,0x6c,0x61,0x58,0x7b,0x9d,0x40, +0xa8,0xe6,0x29,0xe5,0xc9,0x82,0x42,0x6d,0xf0,0x05,0x3b,0xf6, +0x99,0x45,0x56,0xc8,0xa1,0xa2,0x3e,0x7e,0x0f,0x9a,0x66,0xa8, +0x89,0x5f,0x49,0xfa,0xb3,0x2d,0x5f,0x63,0x55,0x17,0x54,0x89, +0xef,0x71,0x33,0xee,0x21,0x09,0xe6,0x1a,0xe0,0xc8,0x35,0x67, +0x30,0x2f,0x06,0x9b,0xd7,0xad,0x44,0x0a,0x05,0x7f,0x8a,0xc9, +0x2c,0xea,0x27,0x73,0xf0,0x2d,0xce,0xa6,0x58,0xc0,0x8e,0x0b, +0x38,0xfc,0x16,0x7d,0xe5,0x05,0x81,0xc9,0xf2,0x82,0xc0,0x87, +0x9a,0x50,0xc0,0x8e,0x0b,0xb8,0xa1,0x6f,0xe5,0x26,0xbd,0x08, +0xae,0xdc,0x51,0x9c,0x6d,0xbe,0x02,0x3f,0x35,0x28,0xb0,0x17, +0x60,0xcc,0xdd,0x5b,0xbf,0x9e,0x85,0x55,0x3c,0x0c,0x64,0xe4, +0xc0,0x38,0x7b,0xd7,0x65,0x1d,0x18,0xc5,0x95,0x26,0x27,0x57, +0xe8,0x3e,0x21,0xb6,0x17,0x34,0x26,0xe3,0x70,0xe2,0x1b,0x1e, +0xa3,0x60,0xf8,0x05,0x67,0x7a,0xb6,0xe2,0x06,0x92,0xc8,0xfa, +0x62,0x3d,0x6b,0x5c,0x79,0x15,0x6c,0x66,0x4f,0x2b,0x81,0x8d, +0xd2,0x34,0x8a,0x3d,0x1d,0x0f,0xe0,0x2d,0x14,0x13,0x7c,0x2b, +0x2f,0x12,0x5e,0x05,0x4a,0x5c,0x45,0xe4,0x6d,0xa4,0x1e,0x51, +0xb3,0x95,0x28,0xe1,0x0d,0x75,0x3e,0xdc,0x90,0x78,0xce,0x0c, +0x05,0x8a,0x8d,0x4f,0xa1,0x91,0x13,0x39,0x26,0xe9,0x2f,0x3f, +0x85,0xcb,0x1c,0x03,0x54,0x4d,0x3a,0x17,0x1b,0x5f,0x12,0xf8, +0x43,0x13,0x2e,0xcf,0xc5,0xcb,0x1c,0xb6,0x4a,0xdd,0x54,0x9c, +0x29,0xb6,0xe1,0xbf,0x70,0x8b,0xec,0xbd,0xe0,0xc0,0xd5,0xa5, +0xcb,0x9b,0xf0,0x7d,0xda,0xb3,0x46,0xda,0x48,0x60,0x04,0xbc, +0xa1,0xf6,0xa2,0x7e,0x23,0xc1,0xd5,0x03,0x1a,0x25,0x7d,0x7b, +0xd6,0x78,0xcf,0x61,0x32,0x65,0x0c,0xe7,0xce,0x0d,0x71,0x51, +0x23,0x9e,0xbc,0x0b,0xb6,0xf5,0x68,0xdb,0x0d,0xdb,0xea,0x71, +0xdb,0x03,0xd3,0x65,0x58,0x2e,0xff,0xe7,0xee,0x08,0xee,0xab, +0x71,0xad,0x23,0xac,0x5d,0x89,0xfb,0xed,0xc5,0xa9,0x6b,0xb1, +0x0d,0x4f,0x60,0x3f,0x7b,0xe8,0x87,0x2b,0xba,0x60,0x05,0x7b, +0x5c,0x5f,0xf9,0x71,0xf6,0x1a,0x60,0xff,0xa1,0x93,0xdf,0x42, +0x1f,0xf6,0x88,0x1b,0x62,0x0b,0x33,0xf6,0x72,0x66,0xec,0xe5, +0xf8,0x11,0x5d,0x89,0xe5,0x77,0x09,0x10,0xbc,0x4e,0xf1,0xe8, +0x6d,0x38,0xca,0x41,0xb7,0x3e,0xc5,0x0b,0xb7,0xe1,0x02,0x87, +0xdd,0x28,0x0f,0x25,0x1f,0xbd,0x4f,0xa0,0x45,0x13,0x2e,0x2c, +0xc7,0x0b,0x4c,0x34,0x5e,0x63,0xc4,0x02,0x8f,0x75,0x41,0x4d, +0x4f,0x2c,0x5e,0xec,0x82,0x33,0x44,0x7c,0x62,0x46,0xa5,0x0c, +0x27,0x31,0x83,0x83,0x81,0x3d,0xac,0xe5,0x02,0x38,0xaf,0xf0, +0xc8,0x22,0xdd,0x9f,0xe1,0x24,0x78,0xa1,0x0f,0x29,0xc9,0x29, +0x50,0xa6,0x2b,0xf9,0x0a,0xec,0x21,0xc9,0xa9,0x89,0xa9,0x09, +0xa9,0x1e,0xb1,0x82,0xc8,0xd7,0xb1,0x2b,0x40,0x8b,0xd3,0x9f, +0x31,0x7d,0x25,0xce,0x5c,0x9d,0xe7,0x20,0xb0,0x60,0x95,0x98, +0x97,0xc8,0xe3,0x72,0x48,0x22,0xb6,0xfa,0xa3,0x9d,0x70,0xbb, +0x5f,0x0a,0xa3,0x3a,0x47,0x0b,0x61,0x44,0x67,0x1b,0x70,0xfc, +0x25,0xec,0xcf,0x19,0x66,0xed,0xbc,0xa1,0x03,0x7b,0xb9,0xaa, +0x94,0x84,0x32,0xdd,0x47,0xc4,0x2c,0x59,0x03,0x03,0xe0,0x15, +0xdd,0xbe,0x75,0xf3,0x36,0xaf,0x40,0x1e,0x9f,0x73,0x25,0x59, +0xf9,0x39,0xca,0x5c,0xfe,0x0b,0x39,0x0b,0xd5,0x59,0xee,0x98, +0xc7,0xe1,0xcd,0x21,0x7e,0xf2,0xcc,0x9e,0xd8,0x0d,0x7d,0x29, +0x6b,0x8b,0x22,0x12,0x9d,0x7f,0xbe,0xe8,0x4c,0x19,0xf3,0xd6, +0xa9,0x10,0x49,0xc1,0x48,0xbd,0x1e,0x8d,0xae,0xc3,0xa9,0x9e, +0x6e,0x3c,0x25,0x6f,0x36,0xa7,0x0e,0xa3,0xb8,0xb4,0x0b,0x76, +0xf4,0xbc,0xc1,0x6d,0x5d,0xa0,0x47,0xd4,0xfb,0x7a,0x0e,0x7d, +0xa8,0x50,0x0c,0x8b,0x60,0xe6,0xac,0x46,0xe7,0x31,0x99,0x34, +0x95,0x36,0x34,0xf4,0xbe,0xa1,0xf8,0x94,0xc4,0xa7,0xc6,0xa5, +0xc6,0xa6,0x9a,0x26,0x0a,0x6b,0x50,0xe3,0xcb,0x69,0x38,0x7b, +0x6e,0x91,0x83,0x90,0x9b,0x90,0x9d,0x28,0x13,0x26,0x3f,0xc8, +0x23,0x4e,0x38,0x04,0xfb,0x2d,0xc7,0x10,0xfb,0x74,0xb9,0x2e, +0x4d,0xf0,0xd9,0xf3,0x16,0x58,0xc2,0xa8,0x96,0x23,0xb7,0x4e, +0x19,0xcc,0xea,0x12,0xc4,0xea,0x92,0x52,0xa6,0xfb,0xae,0xb7, +0x2e,0xfb,0xc5,0x7d,0xd4,0xc7,0xd5,0xc1,0xdd,0xc6,0x4b,0x4e, +0x14,0xd7,0x58,0x5a,0x55,0x51,0x52,0xcd,0xe3,0x30,0x34,0xa0, +0x70,0x8a,0x3b,0x61,0x7d,0xc4,0x21,0xd4,0x8d,0x67,0x48,0x2b, +0x5e,0x67,0x86,0x81,0x93,0x51,0x49,0xa2,0xab,0xce,0x37,0x9c, +0x6a,0xe6,0xa1,0x0d,0xbf,0xa5,0x5e,0x45,0x36,0xc5,0xee,0x19, +0x9b,0x3d,0x85,0x9a,0xed,0x4d,0x9e,0x45,0xbe,0x2c,0x6a,0xb9, +0x88,0xf7,0x68,0x0b,0x3e,0x82,0x7e,0xea,0x9d,0x8c,0x88,0x19, +0x3e,0x37,0xc3,0x23,0x38,0xc0,0x06,0x1a,0xc9,0x4e,0x7b,0x1f, +0x07,0x67,0x17,0xfb,0x32,0x9b,0x62,0x87,0x3c,0x5f,0x77,0xa1, +0x66,0x4b,0xc3,0xe6,0x7a,0x2f,0x2b,0xe7,0xd5,0x1b,0x16,0xf8, +0x66,0xd9,0x09,0x2f,0x0b,0x1e,0xd5,0x5d,0x6d,0xa9,0xf0,0x29, +0xf3,0x56,0xf9,0x15,0xd7,0x08,0x7e,0xca,0x4d,0x2a,0xcf,0xfc, +0xd6,0xb6,0xca,0x6b,0x59,0x37,0xf8,0x2a,0xb4,0xfd,0x15,0x8c, +0x54,0x9d,0x60,0xd7,0xf3,0x0e,0xed,0xda,0xb7,0x12,0x75,0xa8, +0x74,0x93,0x4a,0xb3,0x39,0xa7,0x7d,0xf1,0x75,0xba,0xf0,0xe2, +0x65,0xb3,0xb4,0xca,0x1a,0x38,0x4b,0x82,0x56,0x5e,0xf3,0x26, +0x4d,0xd1,0x29,0x77,0xd2,0x00,0x02,0x03,0x2a,0xa1,0x3f,0x6c, +0xd0,0x6e,0xfc,0x0d,0xff,0x45,0x56,0xaa,0xfc,0x9e,0xe9,0x88, +0x0b,0xe4,0x4c,0x20,0xe5,0xba,0x0c,0x70,0xcc,0x64,0x3e,0xfc, +0xbb,0x3a,0x94,0xe2,0xe7,0x5d,0x60,0xdd,0xf3,0x03,0x5a,0x77, +0xc1,0xe7,0x44,0xbc,0x27,0xad,0xa5,0x8f,0x1a,0xae,0xb5,0x76, +0x76,0xb8,0x94,0x0a,0xd6,0xd6,0xa6,0x76,0xab,0x9d,0xbd,0xef, +0x07,0x3f,0x0c,0x7f,0xc4,0x58,0x75,0x93,0xf4,0xff,0x11,0xf6, +0x16,0xe0,0x55,0x5c,0x5b,0xdf,0x78,0x5b,0x9a,0x99,0xa1,0x40, +0x28,0xb4,0x1b,0x26,0x09,0x3d,0xc1,0xbd,0xb8,0x6b,0x02,0x11, +0xe2,0xee,0x0e,0x11,0x12,0x62,0x44,0x90,0x10,0x21,0x81,0xe0, +0x10,0xe2,0xee,0xee,0x2e,0xc4,0x3d,0x24,0xc1,0x42,0x29,0x5a, +0xa8,0x42,0x5b,0x6a,0xb7,0xb7,0xb4,0x6b,0x4e,0xd7,0x9c,0xfb, +0x7e,0x7b,0xd2,0xde,0xf7,0xbd,0xef,0xf7,0xff,0x9e,0xe7,0x5f, +0x9e,0x1e,0x36,0x33,0x67,0xf6,0xec,0xbd,0xf4,0xb7,0xf6,0xd9, +0x7b,0x2d,0xb4,0x86,0x18,0x46,0x53,0x07,0x3f,0x34,0xc3,0x95, +0x9e,0x05,0x16,0xfc,0x0f,0xc5,0xdf,0x56,0x3f,0xbd,0x51,0x1c, +0x54,0x10,0x98,0x1b,0x70,0x28,0xc0,0xf9,0xa8,0x4d,0xd0,0x89, +0xe2,0x13,0x85,0x27,0xf2,0xed,0x03,0xf8,0x9c,0xd0,0xac,0xd0, +0xac,0x10,0xeb,0x10,0xd3,0xe3,0x06,0x27,0x8b,0x2d,0xf9,0xdb, +0xb9,0x37,0xf3,0x07,0x8b,0x32,0x42,0x32,0x8e,0x66,0x04,0x76, +0x95,0xf1,0x11,0xc5,0x11,0x05,0xe1,0x05,0x5d,0x45,0x6d,0x25, +0x0d,0x65,0xd9,0x47,0x32,0x7c,0x52,0xbc,0xa5,0x03,0xed,0x6b, +0xf7,0xa0,0xbe,0x05,0xfd,0x32,0x68,0x0f,0xc2,0x8a,0x07,0x30, +0xf5,0x25,0x17,0x7f,0xe4,0xda,0x91,0x23,0xaa,0x3b,0xfc,0xfd, +0x36,0xcb,0x16,0x32,0x59,0x66,0x4a,0xaf,0x18,0x98,0xd5,0xde, +0x02,0xb3,0x60,0x93,0x2e,0x2c,0xc2,0x29,0xbf,0xab,0xd7,0x14, +0x55,0x96,0x16,0x57,0x70,0x9d,0x4c,0x31,0x86,0x50,0xc3,0x73, +0x02,0x7c,0x71,0x4b,0x6b,0x27,0x8f,0x53,0x3e,0xdf,0xfe,0xda, +0xe2,0x1f,0x9c,0xf2,0x7d,0xe1,0x4f,0x42,0x8d,0xaf,0x3c,0x18, +0xe7,0x8d,0x82,0xb9,0xe2,0x17,0x46,0x7e,0x4a,0xb4,0x25,0x70, +0x5f,0xda,0x6a,0x10,0xb3,0x03,0x4f,0xd8,0xc3,0x89,0x8d,0x62, +0xe2,0xd7,0x10,0xd0,0x89,0x01,0x13,0xec,0xb3,0xc4,0x17,0xe9, +0xf7,0xf3,0x82,0xda,0x79,0x9d,0xd0,0x45,0xe1,0xab,0xce,0x70, +0xd4,0xde,0xaf,0x62,0x8d,0x76,0x2d,0xb6,0x46,0xe5,0x83,0xc5, +0xb6,0xfc,0x27,0xc5,0xb7,0xca,0xfb,0x6b,0x39,0xe1,0x29,0x73, +0xd1,0xf0,0xfc,0xf6,0x18,0x57,0xce,0xfb,0xec,0xa9,0x70,0x57, +0xb5,0x85,0x4c,0x9a,0xb5,0xd2,0x4f,0xcc,0x27,0x55,0x79,0x77, +0xd3,0xd4,0x53,0x86,0xe2,0xbf,0xb9,0xf2,0x3b,0x27,0x7e,0xc2, +0x14,0x17,0x16,0x94,0xe4,0x94,0x71,0xc2,0xdb,0x38,0x44,0x82, +0x7a,0x02,0xdb,0xfd,0x5a,0xed,0xc3,0xf8,0x32,0x97,0x62,0xc7, +0x02,0x0b,0x0e,0x03,0x60,0x0e,0xc9,0xb7,0xca,0x33,0xcb,0x34, +0x1c,0xca,0xe4,0xc3,0x6e,0x06,0x8f,0x04,0x77,0x73,0xe2,0x3c, +0x0c,0x23,0xdd,0xc3,0xed,0x4f,0xcb,0xee,0x58,0xe7,0xf3,0x01, +0x06,0xae,0xda,0xd6,0x66,0x1c,0x9c,0x07,0x4d,0x92,0x6a,0x91, +0xb2,0x2f,0x5e,0x6f,0x24,0x91,0x3f,0x33,0x11,0x35,0x11,0xd9, +0x47,0xb5,0x68,0x4c,0x4e,0x88,0xf3,0x40,0x1b,0x5c,0x75,0x1e, +0x6a,0x03,0xf7,0x9a,0x6e,0x50,0x51,0xbc,0x41,0x95,0xee,0xc3, +0xac,0xfc,0x7c,0x07,0x41,0xa7,0x36,0x33,0x67,0xbc,0xda,0x66, +0xe1,0x8c,0x86,0x13,0xf2,0xd3,0xcc,0x53,0xc5,0x42,0x82,0x0b, +0x6b,0xd7,0xb6,0x1a,0xb7,0x71,0x70,0xa3,0x4b,0x8c,0x60,0xd2, +0x32,0x53,0xb2,0x92,0xb2,0x39,0xf8,0x01,0xce,0x2a,0xb6,0xe2, +0x59,0xc8,0x63,0x4e,0x9f,0x8c,0x0a,0x0b,0x3f,0xc5,0xe1,0x8f, +0x76,0xd0,0xc2,0xe8,0xdb,0x7d,0xec,0x86,0xaa,0x87,0x73,0x29, +0x78,0x49,0xbf,0x91,0xd9,0x4c,0x75,0x6a,0xc3,0x20,0x2c,0x06, +0x17,0xdc,0x3d,0x04,0xbb,0x21,0x74,0x3d,0xce,0x60,0xd3,0x5c, +0x94,0x40,0x89,0x69,0x48,0xa3,0xd1,0xd4,0x8f,0x6c,0xe3,0xa9, +0x96,0x88,0x8e,0x48,0xfa,0x2d,0xc1,0x9d,0xd8,0x8b,0x9d,0x9d, +0xac,0xd0,0xf9,0x31,0xb1,0x11,0x3b,0x7b,0x58,0xe8,0xc2,0x70, +0x62,0x66,0x84,0xa6,0x4c,0x7f,0x69,0x47,0x45,0x5d,0x0d,0x07, +0x7b,0x99,0x3a,0x9f,0xf6,0x23,0x43,0x14,0x44,0x1f,0x62,0x94, +0x85,0x31,0x61,0x94,0xe8,0xdd,0x5a,0xf1,0xe9,0xea,0x71,0x57, +0x1b,0xfe,0x27,0xbd,0x6f,0x74,0x26,0x74,0x39,0x4c,0x12,0xbb, +0x08,0xd8,0xfd,0x48,0xf5,0x7e,0x23,0xbc,0x03,0x1b,0xec,0x6e, +0xf0,0x54,0x8f,0xb6,0xa0,0x16,0x2e,0x43,0xf3,0x75,0x34,0x90, +0x9d,0x2a,0xcc,0x26,0xd4,0x2f,0x5c,0x83,0xfd,0xfa,0xb8,0x1f, +0x13,0x4c,0x21,0x01,0x0f,0xb0,0x52,0xc1,0xe8,0x48,0x19,0x96, +0x98,0x50,0x17,0xe6,0x8f,0x2a,0x6b,0x96,0xa1,0xe9,0x82,0x5a, +0x63,0x1e,0xac,0x61,0x2a,0x30,0x30,0x2f,0x5e,0xca,0xc1,0xc2, +0xa4,0xe2,0x9c,0xef,0x70,0x3a,0x1c,0xc4,0x0f,0xa5,0xbc,0xcb, +0x66,0xa0,0xb4,0xf6,0x87,0x00,0x98,0xcb,0xc1,0x9d,0x11,0x46, +0xa1,0x07,0x41,0xc4,0x79,0xd4,0xec,0x9e,0xee,0x98,0x93,0x1b, +0x3f,0x66,0x3c,0xa8,0xd7,0xa9,0xc7,0x09,0x9b,0xeb,0x09,0x18, +0x63,0x00,0x1a,0x31,0x97,0xd2,0x2e,0xa7,0xa5,0xa9,0x8a,0x6b, +0x75,0x89,0x1b,0x4e,0xdb,0x8f,0x8b,0x35,0x57,0xf6,0x3a,0xf3, +0x8f,0x7e,0x9f,0x80,0x65,0x37,0x60,0xe6,0x64,0x81,0xd4,0xf7, +0x88,0xf3,0xb8,0xd9,0x84,0xee,0xb8,0x23,0x7d,0xdc,0x68,0x50, +0xaf,0x4b,0x97,0x13,0x46,0xc5,0x5b,0xa4,0x06,0x76,0x57,0x83, +0x77,0x2a,0x6c,0xe7,0xc4,0x59,0x4c,0xd2,0x60,0xe2,0x60,0x7c, +0x2f,0x27,0xe8,0x0d,0x2b,0xd6,0x9a,0xc2,0x0e,0x1a,0x5d,0x6e, +0x3e,0x88,0x87,0x5c,0x70,0x35,0x27,0x6c,0x64,0xa2,0x0e,0x44, +0x1d,0x88,0x34,0xa1,0xe8,0xcd,0x54,0x7e,0x64,0x98,0x11,0x4b, +0x28,0xe2,0xc8,0xfe,0x24,0xeb,0xb3,0x8c,0xe7,0x52,0xb9,0x9e, +0x58,0x83,0xd3,0x5b,0x23,0x36,0x71,0x62,0xfd,0x1b,0xe2,0x8a, +0xd3,0xb5,0x70,0xc9,0x3e,0x69,0x00,0x0f,0xff,0xa0,0x03,0x68, +0x83,0xf7,0x39,0x65,0xf9,0x7c,0x0a,0x96,0xf5,0x91,0x82,0x2b, +0xf1,0xf4,0xcd,0xfb,0xe0,0x88,0xfd,0xb7,0xa0,0x1f,0x3c,0xb4, +0xc6,0x28,0xe2,0x2e,0x62,0xc4,0x0f,0x9c,0x88,0xcb,0x4d,0xf3, +0x3b,0x07,0x46,0x9d,0x5c,0xf9,0x51,0xd3,0x01,0xc3,0x0e,0x1a, +0x27,0xef,0x90,0x52,0x84,0x0c,0x82,0x13,0x52,0xdf,0x5b,0x0c, +0x83,0x04,0x07,0xd1,0x13,0x28,0x18,0xd8,0x85,0x1e,0x74,0x92, +0x53,0xf7,0xe3,0x42,0xcd,0xd5,0x3d,0xce,0xfc,0xe3,0x37,0x9f, +0xc0,0xe2,0x36,0x8a,0x52,0x95,0xe5,0xa1,0x94,0xf2,0xcf,0x1f, +0x3f,0x7e,0xd9,0xf3,0xc2,0xba,0x89,0xb7,0xdf,0xa1,0xbf,0x43, +0x53,0x8b,0x73,0xfa,0xc7,0xf1,0x7f,0xfc,0xa6,0xfa,0xb5,0xb1, +0xe2,0x11,0x2e,0x97,0x0a,0x8f,0xc1,0xcc,0xbf,0xb3,0x13,0x5d, +0x4e,0x60,0xb3,0x90,0xbf,0x83,0xab,0xc0,0x0a,0x2d,0x9b,0x87, +0xf8,0xc5,0x3f,0x6a,0x7c,0x6f,0xf3,0x3d,0x27,0x1e,0x07,0x1f, +0x72,0xf0,0x96,0xf5,0x84,0xc1,0x1d,0x07,0x0f,0x7e,0xd8,0xa0, +0xe7,0x40,0x9b,0x16,0xf7,0xa8,0x93,0x48,0xf5,0xa3,0x82,0xd0, +0x52,0x0b,0xd5,0x90,0xe0,0x9c,0x76,0x1a,0x32,0xca,0x40,0xf6, +0x08,0x36,0x96,0x80,0x1f,0xd7,0x21,0x55,0x35,0xbc,0x4e,0x3c, +0x50,0x59,0x1f,0x97,0xe8,0xae,0xec,0x76,0xe3,0xef,0xff,0x31, +0x0e,0xcb,0x9b,0xa4,0x89,0x43,0xb5,0xfc,0x1d,0xe2,0x70,0xd3, +0xe4,0x8e,0xd6,0xa8,0xb3,0x0b,0x7f,0xdb,0x64,0xc4,0xb0,0x5b, +0x8f,0x93,0x2f,0x11,0x1f,0x91,0xc5,0x8c,0xd7,0xe9,0xa4,0x16, +0x75,0x0a,0x27,0x16,0x0a,0x4b,0xc5,0x1b,0xe2,0x52,0x50,0x63, +0x2f,0xa2,0x8d,0x13,0xce,0x42,0xeb,0x8f,0xa5,0xdc,0xab,0x3e, +0x3f,0x8f,0xc0,0xea,0x2b,0xb4,0x7f,0x58,0x8c,0xbf,0x32,0x1a, +0xc5,0x52,0xfd,0xcf,0xe9,0x4c,0x6b,0x66,0x66,0x93,0x94,0x47, +0xc7,0x2c,0x5b,0x69,0xbf,0x90,0x41,0xb0,0x59,0xdc,0x06,0xcd, +0x52,0xb2,0xe5,0xdf,0x89,0x33,0x4e,0xd5,0xc0,0x45,0x7b,0x56, +0xf7,0x38,0xf1,0x4f,0xdf,0x3c,0x84,0xc5,0x1d,0x93,0x54,0xf9, +0x95,0x3a,0xe6,0x8f,0x99,0x6c,0x13,0x29,0x11,0x6b,0x6f,0x76, +0x56,0x9f,0xba,0x7c,0xd4,0x88,0x15,0x7f,0xa2,0xd0,0xc9,0x6d, +0xdc,0xfa,0x9e,0xfe,0x2d,0xc7,0x43,0xfc,0xb0,0x51,0xaf,0x5e, +0x9b,0x0e,0x47,0xb5,0x67,0x0b,0x39,0x8d,0x6b,0xbc,0x71,0xf6, +0x6e,0x9c,0x1e,0x9f,0xc3,0x9b,0x95,0x78,0xe2,0x74,0x43,0x5c, +0xa8,0xb7,0x5a,0xa5,0xd7,0x65,0xf4,0xc7,0x21,0x98,0xd3,0x08, +0xac,0x4a,0xb5,0xcd,0xd0,0xf3,0xfa,0x2f,0x0b,0xbf,0x57,0x81, +0x79,0xcc,0xd9,0x75,0x61,0x5b,0xfd,0xf7,0xf8,0x54,0x79,0x56, +0x7a,0x97,0xf8,0xd9,0xf3,0x35,0x01,0x4d,0x9e,0x55,0x5e,0xce, +0xab,0x0d,0xb6,0x6c,0xde,0xdb,0x6a,0x27,0x6d,0x8f,0xdd,0xf3, +0x12,0xf4,0xf3,0xa0,0x94,0x3a,0x37,0x03,0x36,0xa9,0x3d,0xa1, +0x33,0xae,0x9b,0x03,0xeb,0x01,0xf1,0x2d,0x0b,0x46,0xd8,0x58, +0x4f,0x14,0x1f,0x49,0xa9,0x64,0x94,0xa1,0x45,0x93,0x8c,0x4d, +0x08,0x71,0xda,0x63,0xf2,0xff,0x52,0xcc,0x60,0x3c,0xd1,0x8d, +0xb8,0xdd,0xb2,0xbe,0x6f,0x70,0xdb,0xc1,0xfd,0x2f,0x16,0x68, +0x73,0xb0,0x0a,0x4c,0x88,0x10,0xa7,0xd0,0x13,0xe3,0x18,0xc1, +0x4e,0x28,0x22,0xb8,0x0f,0x66,0x9b,0xe1,0x6c,0xdc,0x6d,0x05, +0xbb,0xf1,0x03,0xda,0xc8,0x81,0x7b,0x90,0x83,0x3c,0x7c,0x00, +0xfb,0x18,0x85,0xbb,0xf8,0x90,0xdc,0xfb,0x63,0x14,0x56,0x34, +0xc1,0x4c,0xb3,0x12,0xde,0x13,0x67,0x18,0xe0,0x62,0xbd,0x95, +0x9c,0xe0,0x07,0xd6,0x04,0xb6,0x50,0x01,0xdc,0x42,0x3d,0xfb, +0x07,0x72,0x7f,0x02,0x6f,0x1b,0x50,0x08,0xd0,0x6c,0x26,0x5f, +0x44,0xa1,0xeb,0x76,0x9c,0x4b,0x9c,0x47,0xcc,0xef,0xe8,0x8c, +0x3a,0xbb,0xf2,0x63,0x66,0x83,0x06,0x9d,0x12,0xb3,0x4a,0x88, +0x98,0x87,0x45,0x70,0x0c,0x27,0x70,0xc5,0x64,0x72,0xaf,0xd9, +0x7f,0xc9,0x10,0x8c,0x40,0x24,0x6b,0x24,0x61,0xd3,0x4d,0xe2, +0x12,0x8a,0x41,0xd1,0x04,0x57,0x11,0x17,0x7c,0x6f,0x3f,0x2e, +0xd0,0x58,0xdd,0xed,0xc2,0x3f,0xfe,0xed,0x53,0x58,0x24,0x89, +0x26,0x2c,0xde,0x44,0x3c,0x77,0x5a,0x6b,0x6c,0xd0,0x69,0x71, +0xe2,0xbf,0xfe,0x64,0xf4,0xf3,0xa6,0xaf,0x39,0xb8,0x1c,0x4d, +0x6e,0x69,0x0d,0xee,0xe9,0xde,0xd6,0xdd,0xc0,0xdb,0xbd,0x30, +0x7d,0xa8,0x37,0x41,0x99,0xf5,0x96,0x3c,0x83,0xdc,0x31,0x3a, +0x80,0xe3,0x36,0x72,0xd3,0x1e,0x56,0x61,0x81,0xc6,0xe4,0xd0, +0x5d,0x9b,0x07,0xfa,0xf7,0x1c,0x3c,0xf9,0x61,0xbd,0x2e,0x9d, +0x36,0x4d,0x0e,0xde,0x46,0x5b,0x22,0xbc,0x84,0x09,0xf1,0x25, +0x33,0x28,0xfd,0x72,0x1c,0x22,0x04,0x61,0x08,0x2b,0x2e,0x04, +0x43,0x29,0x03,0xda,0x2d,0x58,0xc0,0x62,0xca,0x72,0x32,0x08, +0xae,0xe6,0xac,0x18,0x4f,0x91,0x9c,0x27,0x2a,0x1b,0xe3,0x62, +0xfd,0x95,0x3d,0x6e,0xfc,0xdd,0x3f,0x6e,0xc2,0x8a,0x06,0x6a, +0x11,0xe4,0xf3,0x3f,0x26,0x5d,0xe2,0x6b,0x3b,0x56,0xfe,0xa1, +0x09,0x51,0xe8,0xd8,0xc2,0x04,0xc5,0xce,0x6a,0x4c,0xaa,0x8d, +0x12,0x4c,0x63,0xda,0x72,0x73,0x69,0xa4,0xb1,0x1a,0x6e,0xb1, +0x62,0x76,0x20,0x31,0x77,0x3c,0xe0,0xbe,0xdd,0xbb,0xdc,0x96, +0xff,0xa6,0xe9,0x76,0xd3,0x08,0x65,0x5f,0x7e,0x2c,0xb9,0xe7, +0x39,0xe1,0x34,0xe8,0x50,0xdb,0xc6,0x9b,0xb5,0x6b,0xb5,0x1d, +0xa8,0xa5,0x03,0x2f,0x2a,0x24,0x8e,0xe1,0x29,0x14,0x2b,0xdb, +0x8b,0xe1,0x34,0xee,0xc0,0x2b,0x6e,0x14,0x8b,0xcc,0xc7,0xa5, +0xb2,0x3e,0x27,0x25,0xf8,0x18,0x76,0x37,0xc3,0x5a,0xc8,0x50, +0x05,0x2f,0xf8,0x43,0xb1,0xf2,0xaf,0xd5,0xbc,0x3f,0x98,0xb6, +0xfc,0xdc,0x66,0x75,0x38,0xc6,0x1a,0x66,0x2a,0x61,0x2c,0x85, +0xd1,0xfb,0xe5,0x0c,0xd9,0xcf,0xa2,0x47,0xf4,0x55,0x7b,0x38, +0x94,0xa2,0x74,0x84,0x35,0xcf,0x3b,0xf1,0x48,0x06,0x0f,0x99, +0xc6,0x8c,0xb4,0x3a,0xf5,0x0e,0xd6,0x22,0x43,0xc9,0x10,0x27, +0xd8,0x23,0x31,0xf1,0xc5,0x52,0x00,0x58,0x95,0x7e,0xa1,0x03, +0xcb,0x23,0x94,0xee,0x09,0xca,0x6c,0xf8,0xd1,0xb0,0x30,0xdf, +0xe0,0x46,0x4f,0xbe,0xbe,0xb2,0xaa,0x31,0xbb,0x99,0x6b,0x16, +0xd7,0x8c,0xc2,0xcb,0x1e,0x7c,0xd9,0x27,0x25,0xc7,0x7a,0x8d, +0x16,0x2c,0x9e,0x0e,0xc3,0x2d,0x07,0x50,0x49,0xd6,0xe6,0xa8, +0xf4,0x10,0xe6,0x16,0x52,0xfb,0x7d,0x46,0x15,0xd4,0x59,0x21, +0x4b,0xa1,0x44,0xf0,0xbd,0x2d,0x65,0x03,0x46,0xea,0xed,0xfd, +0x55,0x77,0xb3,0x9e,0x71,0xf5,0xa8,0xcd,0xa6,0x14,0x25,0x15, +0xc7,0x17,0xdb,0x26,0xf3,0x21,0xab,0x2d,0xd6,0xef,0x31,0xaf, +0x70,0xe1,0xcb,0x0a,0x4a,0xcb,0x0a,0x2b,0x72,0xed,0x0b,0x5d, +0xcb,0xbd,0x6c,0xec,0xf5,0x3c,0x77,0x05,0x16,0xdb,0xf3,0x4f, +0x4b,0xef,0x37,0x0d,0xf6,0x71,0x46,0x13,0xaf,0x0f,0xc3,0x3c, +0x35,0xb8,0xce,0xa4,0xf6,0x29,0xe9,0x8c,0x93,0xda,0x74,0x3a, +0xe0,0x9f,0x59,0xbb,0x0c,0x25,0x64,0x1c,0xd8,0x63,0xb1,0xd2, +0x56,0x19,0x27,0x3c,0xc8,0xe2,0xfc,0x28,0xdb,0x3d,0x86,0xb2, +0x16,0xf7,0x4f,0xc7,0xf2,0x07,0xe3,0x60,0xa6,0xca,0x8f,0xb8, +0x89,0xb1,0xcf,0x0b,0xeb,0x91,0xe1,0x7f,0x51,0xbb,0x13,0x61, +0x1a,0x64,0x73,0xd8,0xc5,0xb7,0x21,0xb8,0xe3,0x44,0x7f,0x42, +0x1a,0xaf,0xfc,0xa7,0xea,0x15,0xe2,0xd9,0x76,0xe2,0x37,0xb8, +0xa5,0x0a,0x5f,0xd0,0x28,0x76,0x84,0xc5,0x9c,0x10,0x54,0xd6, +0xc3,0x69,0xb2,0x1e,0x47,0xa5,0x07,0xa0,0x56,0x0c,0x4b,0xa1, +0x5c,0x15,0x2e,0x0b,0xdf,0x20,0x8d,0x49,0xee,0x15,0xe1,0x9c, +0x61,0x2b,0x59,0xdd,0x91,0x86,0x8c,0xf8,0xde,0x5c,0xb0,0xe4, +0xed,0x8a,0x95,0xf0,0x00,0xc4,0x51,0xbc,0x77,0x12,0xf6,0x9b, +0x50,0x6f,0xe4,0x6f,0x01,0x07,0xd9,0x60,0xe4,0x37,0xe2,0x5b, +0xb8,0x10,0x55,0x1a,0xa9,0x19,0x53,0x06,0xe6,0xeb,0xdf,0x92, +0x41,0x89,0x4b,0x14,0xb7,0x0c,0x09,0x5b,0x24,0x2f,0xc4,0x3e, +0xdd,0x02,0x2a,0xf8,0x61,0x53,0x07,0x8f,0xcb,0x61,0xe1,0x96, +0x1f,0x83,0x60,0x0e,0x35,0x64,0xfa,0x70,0x9f,0x82,0x15,0x64, +0x0a,0x1b,0xf3,0xdb,0xf2,0x06,0x2d,0xb2,0x79,0x17,0xe4,0xf6, +0xcf,0x5f,0xb4,0xb2,0xc9,0x89,0xbf,0xd1,0x5c,0xdd,0x58,0x5c, +0xc3,0x09,0xab,0xd3,0x08,0x56,0x9a,0x43,0x25,0x35,0x92,0x57, +0x2d,0x85,0xc7,0xfd,0x98,0x07,0x6a,0x93,0xd9,0x3e,0x68,0x34, +0xf9,0x32,0xf9,0xf3,0xcc,0x89,0x3c,0xbf,0x6e,0x1e,0x55,0x3c, +0xd0,0xe0,0x24,0x3a,0x9e,0x4f,0xb5,0xe2,0x1f,0x5f,0x79,0x7c, +0xed,0x41,0x3c,0x07,0x83,0x8a,0x83,0x04,0x79,0xc6,0xe3,0x4c, +0x52,0xb5,0x3a,0x84,0x8a,0xd6,0x34,0xde,0xf1,0xb2,0x42,0x0b, +0x3d,0x19,0xed,0xcd,0xea,0xf6,0xe0,0x17,0xf1,0xb0,0x54,0x05, +0x9e,0xa2,0x3e,0xa3,0x57,0x1c,0x7a,0x4b,0x06,0x2b,0x98,0x1b, +0x19,0x79,0xcd,0xea,0xbf,0xb1,0x26,0x79,0x4a,0xca,0xc2,0xfc, +0xbf,0xc8,0x14,0x36,0x49,0xa6,0x6f,0x14,0xee,0x38,0x4e,0xc9, +0x74,0xec,0x3f,0xc9,0x54,0xf8,0x17,0x99,0xe2,0x84,0xef,0xb0, +0x89,0x92,0xa9,0xe0,0xff,0x4b,0x26,0xd1,0x48,0xc8,0x24,0xd1, +0x41,0xe1,0xfe,0xe1,0x47,0x39,0xdc,0x86,0xcd,0xc2,0x6e,0x68, +0xa6,0x81,0xa2,0xb4,0xee,0x99,0x94,0x2f,0x55,0x91,0x34,0x21, +0x13,0x30,0xaa,0xcd,0xe2,0x28,0x4e,0x23,0xf7,0x61,0x54,0x8b, +0x1d,0xc3,0x4e,0xd2,0x83,0xd6,0x4f,0xc0,0xb3,0x47,0xf4,0xb6, +0x01,0x87,0xdd,0x68,0x68,0x03,0x86,0x9b,0x31,0xc6,0x4a,0x68, +0xea,0xc3,0x4b,0x5f,0x52,0xf3,0xf2,0x99,0xbc,0x9a,0x28,0x02, +0x15,0xbb,0xe4,0x81,0xba,0x8a,0x37,0x77,0xef,0xca,0x77,0xe9, +0xde,0x95,0xbf,0xa1,0x72,0xee,0x0b,0xea,0x64,0x01,0x93,0x6e, +0xad,0xf4,0x2d,0xd3,0x28,0x01,0x5e,0xc1,0x9e,0xfd,0xa3,0x01, +0xd8,0x91,0x47,0xe3,0x5c,0xbb,0x62,0xa5,0xa5,0x30,0xc2,0xea, +0xb9,0xac,0x70,0x5a,0xe3,0xc7,0x09,0x6a,0xe2,0xcf,0x44,0xe1, +0x23,0xc8,0x4d,0x14,0x47,0x46,0x06,0xe4,0x3e,0x16,0x23,0x72, +0x1f,0x13,0x46,0xb1,0x4c,0x74,0x20,0xe0,0x26,0xac,0x44,0x37, +0x46,0x50,0x11,0x63,0x48,0x4f,0x7b,0x63,0x4f,0xe5,0x60,0xb1, +0x7b,0x81,0x67,0x96,0x6f,0x53,0x1d,0x7f,0xbc,0xc6,0xbf,0xcd, +0xb7,0xb5,0xe6,0x49,0xce,0x8b,0xc4,0xaf,0xb8,0x1a,0x0c,0xb3, +0x03,0x0d,0xf6,0x9c,0x49,0x84,0x71,0x88,0xd9,0xe1,0x8e,0xc3, +0xad,0x81,0x65,0x07,0x0f,0xf3,0x15,0x3e,0xcd,0xd6,0x8d,0xe6, +0xbe,0xc6,0xae,0x16,0x56,0xce,0x1c,0xb6,0x7e,0x47,0x60,0xf8, +0x1b,0x1c,0x66,0x95,0xff,0xb4,0x05,0x37,0xe2,0x98,0xec,0x9c, +0xe2,0x9a,0xca,0x65,0x02,0xb9,0x06,0x2b,0x60,0xb5,0xea,0x6f, +0x8a,0xcb,0x06,0x30,0x62,0xc8,0x6a,0x51,0x27,0x6f,0x2a,0x33, +0xec,0x34,0x1c,0xd4,0x9f,0x70,0x71,0xe1,0x1f,0xee,0xbc,0xaf, +0xff,0xc0,0xda,0x01,0xb7,0x2e,0x43,0x06,0xd7,0x2c,0x6e,0xb1, +0xe6,0x61,0xe3,0x1f,0xbf,0xc1,0xfb,0xbd,0xb0,0xf5,0x37,0x5d, +0x78,0xcb,0x09,0x94,0x3d,0x62,0x0f,0xf3,0x8b,0x8e,0x3b,0xf9, +0xe3,0x34,0x35,0x9c,0xcb,0x64,0xe9,0x29,0xc1,0xfb,0x0c,0xec, +0xec,0x1e,0x82,0x0f,0x0b,0xd5,0xaf,0x26,0x5f,0x4d,0xba,0x92, +0xdc,0x18,0xdd,0x14,0xdd,0x12,0xcd,0x89,0x71,0x90,0x4d,0xb2, +0xee,0x27,0x3e,0xf9,0x52,0x75,0x0c,0xee,0xef,0x63,0xf1,0xc3, +0x0b,0x38,0x37,0x82,0xb2,0x0f,0x67,0xd4,0x2f,0x6a,0x5f,0x7a, +0x97,0x4a,0xdf,0xaf,0x72,0x33,0x32,0x5e,0x30,0x5a,0x3c,0x54, +0x79,0xa4,0x87,0xc7,0xb9,0x5a,0xb8,0xdc,0x19,0x3f,0x3e,0x9a, +0x66,0xca,0xdf,0x49,0xbd,0x97,0x71,0x27,0x4f,0x5a,0x56,0x0b, +0x33,0x84,0x93,0x6c,0x34,0xee,0x37,0xc6,0x77,0x70,0x09,0xce, +0x6c,0xa3,0x51,0xff,0x1a,0x98,0x3b,0x01,0xf3,0x52,0xc0,0x92, +0x03,0xfb,0x31,0xca,0x4f,0x21,0x46,0xb4,0x20,0xe8,0x32,0x99, +0x04,0x44,0x97,0xe9,0xc9,0xcb,0xeb,0x55,0x97,0x77,0xe8,0xb1, +0x18,0x6f,0x43,0x14,0xca,0xb7,0xe4,0xca,0xd4,0x15,0x7d,0x2e, +0x37,0x22,0x30,0xc7,0x08,0xe7,0xa0,0x8d,0x19,0xd8,0xe0,0x74, +0x56,0x4a,0x46,0xe4,0x27,0x43,0x1f,0x53,0xf0,0x60,0xc2,0x70, +0x85,0xe5,0x4a,0x5c,0x85,0x8b,0xa5,0x35,0x63,0x25,0x78,0xfb, +0xe6,0xcb,0x9a,0x57,0x71,0x49,0xd7,0xaf,0x26,0x9c,0x85,0x50, +0x0c,0xe5,0x9b,0xdb,0xd0,0x07,0xbc,0x23,0xd2,0x22,0xae,0x84, +0x45,0xa8,0x44,0x9f,0x39,0x1f,0x97,0x52,0x93,0x58,0x17,0xd7, +0xac,0x02,0x85,0xc3,0xc6,0x50,0xc6,0xc0,0x2d,0x85,0x2e,0x41, +0x3d,0x26,0xcb,0x50,0x09,0xd6,0x4b,0xd9,0x70,0x7a,0xd4,0xe5, +0x5d,0x06,0x2c,0x06,0xd0,0xb7,0x93,0x51,0x39,0x61,0xf1,0x4f, +0x54,0x25,0xb0,0x10,0xfd,0x71,0x31,0x73,0xa5,0xe2,0x4a,0x55, +0xbd,0xaa,0x32,0x68,0xca,0x1f,0x93,0x13,0x28,0xb3,0x47,0xf5, +0xbd,0x0b,0xda,0x5c,0xf9,0xee,0x07,0xcd,0xdf,0x94,0x7e,0xcb, +0xdd,0x67,0x02,0x71,0xd7,0x2e,0x6a,0xda,0xde,0x42,0xe5,0x56, +0x17,0x1e,0xde,0x03,0xf5,0xe7,0x70,0xa0,0x14,0x0c,0xb8,0x7b, +0x4c,0x00,0xe6,0xad,0xc6,0x68,0x5c,0x8a,0xdb,0xda,0xe8,0x9d, +0x75,0xa0,0xf3,0x33,0x5c,0x29,0x86,0x46,0xae,0x7f,0x2b,0x83, +0xfb,0x4f,0x62,0x58,0x28,0xbe,0x2d,0x73,0x8a,0x39,0x16,0x66, +0xa2,0xb6,0x8f,0xc9,0x30,0x56,0x9a,0x60,0x9e,0x36,0x94,0x3f, +0xcb,0x56,0x2f,0x86,0x69,0x19,0x10,0x03,0x07,0x54,0x61,0x2e, +0xfe,0xce,0x26,0xd5,0xc6,0xd7,0x5e,0xa7,0x2a,0xfd,0x46,0x31, +0x46,0x70,0x27,0x23,0xe5,0x75,0x5c,0x28,0x79,0x3d,0x3a,0xe4, +0x6e,0x23,0x16,0xed,0xec,0x88,0x42,0xed,0xa6,0x5c,0x8d,0x4a, +0xb3,0xbd,0x3c,0x94,0xc0,0x52,0x5b,0x06,0x47,0xbc,0xd0,0x18, +0xa7,0xa2,0xae,0xec,0xc8,0x6b,0x3b,0x98,0xe6,0xf1,0xc8,0x3e, +0x98,0xcf,0x77,0x2a,0x31,0x28,0x34,0x30,0x0d,0x37,0x8a,0x34, +0x38,0x5d,0xf2,0x45,0x19,0x30,0x99,0x3f,0x73,0x70,0x7c,0x08, +0x75,0xe1,0x00,0xac,0x19,0xc6,0x35,0xa0,0x61,0x82,0x1a,0xb8, +0xde,0x14,0xd6,0xe3,0x01,0xa9,0x5e,0x24,0x61,0xc2,0x96,0xf9, +0xe2,0x0c,0xbf,0x8d,0xa1,0xe7,0x43,0x2f,0x84,0x5c,0x48,0x31, +0xe4,0x61,0x6a,0x0e,0xbc,0x5d,0xf0,0x4b,0x69,0xd2,0xd1,0xa4, +0xe0,0x84,0x90,0x96,0x3c,0xfe,0x42,0xec,0xf9,0x73,0xe7,0x63, +0x7b,0x1d,0x78,0x58,0x04,0x2e,0x2d,0x10,0x08,0xcf,0x55,0x3b, +0xc1,0x7a,0x3d,0x8b,0x9a,0xa7,0xd1,0xf6,0x04,0xae,0x96,0xad, +0x8b,0x3a,0x7a,0x4c,0x43,0x8d,0x22,0x1e,0x43,0xa5,0x97,0xcc, +0x1f,0x8d,0x4d,0x40,0x32,0xd5,0x73,0x61,0x5d,0x0a,0xd8,0xc3, +0x7e,0x55,0x58,0x26,0x1e,0xa1,0x9a,0xf9,0xed,0x75,0x29,0x15, +0x4c,0xa6,0x91,0x04,0x07,0x3b,0x73,0x26,0x27,0x65,0xc2,0x2a, +0x62,0x82,0x89,0x38,0xc5,0xc2,0x62,0x40,0xb4,0x1d,0x16,0x6c, +0xbf,0x12,0xd7,0xf6,0x09,0x6b,0xbf,0x9e,0xfc,0x7c,0x29,0xce, +0x32,0x62,0x33,0xa4,0x14,0xa4,0xad,0xb9,0xb9,0x6d,0xea,0xc2, +0x7b,0x3d,0x03,0x36,0xc2,0x14,0xf6,0xfb,0x20,0xa2,0x58,0x30, +0x2c,0x5f,0xc0,0x8a,0xcf,0x7c,0xc9,0x57,0x38,0xbe,0x89,0x81, +0x05,0x30,0x4e,0xbe,0xc6,0xf1,0x8d,0x0c,0x2c,0xa4,0xad,0x97, +0x38,0xbe,0x9e,0x51,0x96,0x3f,0x8a,0x27,0x68,0x36,0xc9,0xf5, +0xed,0x4c,0x77,0xde,0x24,0xd7,0xf5,0x59,0xf1,0xca,0x12,0x72, +0x3b,0x75,0x2c,0xa3,0x33,0x23,0xa0,0x9f,0x97,0x7e,0x41,0xd7, +0x0a,0xc0,0x19,0x67,0xd2,0xcc,0xf9,0xde,0xb8,0xdb,0x89,0x77, +0x52,0x38,0xdc,0x89,0x1e,0x66,0xe0,0x81,0xbb,0x71,0xa7,0x38, +0xef,0xe6,0x5d,0x78,0x05,0x8f,0x71,0x37,0x45,0x68,0xde,0x43, +0xe8,0x2d,0x01,0xe2,0x13,0x44,0x31,0x7b,0x4c,0x3e,0x9b,0x15, +0xaf,0x2a,0x3c,0x08,0x78,0x40,0x39,0x7a,0x50,0x66,0xd4,0xc9, +0xf7,0x52,0x6b,0x7f,0x85,0x4d,0x2e,0x4f,0xac,0xbc,0x5e,0x6d, +0x9a,0xc8,0xc7,0x7a,0x9c,0x39,0x1c,0xe5,0xcb,0xe1,0x5e,0x0b, +0x58,0xc2,0x78,0x19,0x59,0xd9,0xed,0x71,0x2a,0xb3,0xe1,0xbf, +0x1b,0xba,0x73,0xa7,0xe5,0x0b,0xae,0x87,0xa9,0xdf,0xf5,0x40, +0xf3,0xb5,0x79,0x45,0x0f,0xaf,0xd1,0x6a,0xdc,0xef,0x39,0xcc, +0x09,0x6e,0x8a,0xed,0x04,0x8d,0x27,0x07,0xbb,0xf9,0xdf,0x83, +0xa5,0x22,0x7a,0x8c,0x8a,0xe8,0x07,0x63,0xf2,0x0f,0x58,0xb1, +0x12,0xc7,0x09,0xb4,0x0c,0x60,0x0b,0x93,0x84,0xf6,0x24,0xdc, +0x3e,0xc8,0x28,0xc4,0x89,0x83,0x6f,0x98,0x4b,0x5e,0xe7,0xdd, +0xce,0x1d,0xe4,0xbc,0x63,0x23,0xa3,0x9c,0xd5,0x70,0x06,0x23, +0x2d,0xe2,0x4d,0x63,0xee,0x97,0x14,0x0c,0x25,0xab,0x27,0xf7, +0xc5,0xdd,0xbc,0xf2,0x39,0x87,0x63,0x4c,0x7a,0x45,0x46,0x43, +0x52,0x05,0x07,0x4f,0x07,0xc5,0xb3,0xe6,0x8c,0xf2,0x73,0xc1, +0x9b,0x7c,0xdb,0xf0,0xbc,0xe3,0xc1,0xc8,0xf0,0xa1,0x41,0xd7, +0x1e,0xb7,0xfa,0x4e,0xde,0xae,0xc1,0xaa,0xd1,0xa2,0xbe,0xe3, +0x46,0x5b,0x4f,0xd3,0xb0,0x6d,0x15,0xef,0x66,0xea,0x62,0xe3, +0xe0,0xac,0xd7,0xaa,0xdb,0xa4,0x57,0xe3,0xe5,0xcc,0x8f,0x1f, +0x1e,0x77,0xbf,0x79,0x50,0xdf,0x46,0xd3,0x75,0xcb,0x61,0x4e, +0x5e,0x25,0xa6,0x12,0x1a,0xbc,0x49,0x83,0xdd,0xf6,0x3f,0x94, +0xc5,0xb0,0x7f,0x0f,0x16,0x3f,0x17,0x0b,0xc9,0xb9,0xaf,0xc0, +0xb9,0x1f,0x9d,0x61,0xae,0x31,0xce,0xc5,0x63,0x96,0x70,0x84, +0x39,0xb1,0x79,0xff,0x3a,0x9c,0xbf,0xae,0x82,0x02,0x54,0xd5, +0x2f,0xc7,0x1e,0x27,0x3c,0xe7,0x12,0xf0,0xab,0x9b,0xd0,0xc8, +0xc4,0x5f,0xbd,0x72,0xfd,0x9c,0x0c,0x76,0xe2,0x8e,0x86,0x76, +0xdc,0x0c,0xeb,0xa3,0x52,0x69,0xd4,0x76,0x5a,0x45,0x59,0x38, +0x2a,0xcc,0x93,0x4a,0xd3,0xb8,0x7f,0x3e,0x84,0x6f,0x33,0xf9, +0x9d,0x85,0xa3,0xe9,0x7d,0x96,0x59,0x7c,0x84,0x45,0x88,0x4e, +0xa0,0x39,0x87,0xc7,0xcc,0x3e,0x43,0x5b,0x26,0x6a,0xad,0xd9, +0x2b,0x36,0x16,0xf5,0x7d,0xd7,0x9a,0xad,0x6b,0x77,0xe0,0x6f, +0xfe,0xd4,0x08,0x4a,0x09,0xe0,0xcc,0xc1,0xbb,0xe2,0xea,0x21, +0x61,0x35,0xb0,0x0c,0xe6,0x0b,0x6f,0x91,0xb0,0x1b,0xc1,0x9d, +0xc1,0x6d,0x76,0x01,0x7c,0x91,0x4b,0xbe,0x63,0xb6,0x13,0x27, +0xef,0x17,0xef,0x90,0xc0,0xec,0xc0,0xdc,0xa3,0xb9,0x5c,0xba, +0x94,0x8a,0x5a,0x0b,0x36,0xaa,0xc2,0x22,0xf1,0x90,0x39,0xec, +0xb4,0x62,0x77,0x5c,0xd8,0x77,0x56,0x5f,0xe6,0xde,0xe7,0x35, +0xe4,0x33,0x6c,0xe7,0xc3,0xb7,0xee,0xe9,0xd4,0xec,0xd3,0x0e, +0xc4,0x35,0x16,0x38,0x6d,0x3e,0xce,0x6c,0xb2,0xe1,0x7f,0x83, +0x19,0x23,0x30,0xb3,0x12,0x96,0x0e,0xe9,0x8c,0x19,0x8c,0x5b, +0x5e,0x08,0xe5,0x37,0xc6,0x04,0x1f,0xd7,0x56,0x5b,0x24,0x21, +0xfe,0x9f,0x98,0xd7,0xf5,0xb5,0xf0,0x76,0x86,0x7a,0x4e,0x78, +0x4e,0x44,0x0e,0x0d,0x81,0x6b,0xe0,0x9f,0x24,0xed,0xcb,0xeb, +0xdf,0xff,0xae,0xda,0x0b,0x3a,0x54,0x67,0x96,0xc4,0xe2,0xfa, +0x28,0x54,0x93,0x19,0x0e,0x98,0x8c,0x59,0xde,0xe3,0x44,0xcf, +0xf3,0x24,0x8e,0x05,0x57,0x98,0x82,0xee,0x54,0x4b,0xbe,0xa6, +0x72,0xab,0x35,0x49,0xdd,0x55,0xff,0xb6,0x56,0x86,0x2c,0x96, +0xee,0x24,0x43,0x62,0x9a,0x19,0x2b,0x3c,0x2e,0x23,0x8a,0xb9, +0xa3,0xf2,0xb9,0xac,0xd8,0x6b,0x48,0x82,0x0d,0x8e,0x18,0x3a, +0x18,0xb4,0xea,0x57,0xeb,0x96,0xe9,0xf4,0x16,0xf2,0x81,0xf7, +0x0e,0xdf,0xf4,0x6d,0xaf,0x6e,0xaf,0x1e,0x29,0xba,0xcd,0xc1, +0xac,0x1c,0x7a,0xff,0xb0,0x9e,0x93,0x51,0xab,0x5e,0xcd,0x81, +0x52,0xdd,0xde,0x22,0x3e,0xf0,0x8e,0xd7,0xad,0x23,0x2d,0x75, +0x9d,0x95,0x43,0x45,0x77,0x38,0x20,0x39,0x24,0xc8,0xd0,0x83, +0xde,0x6f,0xd7,0xab,0x3e,0x50,0xae,0xd3,0x53,0xc6,0xfb,0x4e, +0x78,0x8d,0xfa,0x36,0xd5,0xb7,0x57,0x0d,0x95,0x8c,0x73,0x78, +0x54,0x74,0x23,0x70,0x64,0x48,0x0c,0x37,0x03,0x2f,0xb4,0x62, +0x76,0x9f,0xdd,0x15,0xbb,0xfb,0xdc,0x75,0x53,0x1a,0x5f,0xa4, +0xc0,0xfe,0x6c,0xd8,0x51,0x78,0x61,0x90,0xd7,0x8c,0xd6,0x88, +0xd1,0x38,0x4b,0xe3,0xef,0x59,0x57,0x89,0x68,0xc7,0x84,0xc4, +0xa4,0x14,0xa9,0xc3,0xf5,0x37,0x50,0x8f,0xa6,0xbf,0xc1,0xf1, +0x41,0x3c,0xfe,0xab,0xe1,0x12,0x0c,0x32,0x87,0xa0,0x45,0xb8, +0x0f,0xeb,0xe1,0x2d,0xf6,0x1c,0xaa,0x39,0xae,0xc6,0xa9,0xbb, +0x5a,0x2c,0x79,0x98,0xfd,0xba,0x0f,0x98,0x04,0x58,0xcb,0x7d, +0x83,0x69,0x8c,0x59,0x71,0xe0,0x2d,0x99,0x60,0xc9,0x74,0x65, +0x67,0xb5,0xaa,0xff,0x2e,0xe5,0xa5,0xd9,0x77,0x98,0xb4,0xe6, +0xe7,0xb4,0xa8,0xcb,0x77,0x1a,0x29,0xf6,0xe2,0x36,0x36,0xdd, +0x4c,0xc9,0x42,0x6e,0x4d,0xc4,0xae,0x11,0xa1,0x8b,0xa5,0x9e, +0xa7,0x82,0x50,0x6c,0xd5,0x37,0xb9,0x31,0xa4,0x8e,0xc6,0xb9, +0xab,0x30,0xcc,0x02,0xc2,0x56,0xa1,0x15,0x66,0x80,0x1e,0x1b, +0xb8,0x79,0xd7,0x06,0x7c,0x7f,0x6b,0xad,0x0d,0x0f,0xfc,0xb7, +0x37,0x9f,0xc4,0x7f,0x46,0xa5,0xed,0xd5,0x30,0x95,0xb6,0xc4, +0xb8,0xcb,0x92,0xb4,0x6d,0xc4,0xed,0xcd,0xad,0xb8,0x1e,0x36, +0x45,0xa5,0x9e,0x8e,0x3b,0x7d,0x5a,0x25,0x32,0x52,0x29,0xf6, +0x31,0x35,0x56,0x19,0x68,0xff,0x03,0x44,0x0e,0x60,0xe4,0x0f, +0x8c,0x70,0x55,0x71,0x8f,0xa0,0xc6,0x24,0x2b,0x96,0x51,0x2b, +0x3c,0xc9,0x0a,0x6a,0x85,0x5d,0x6d,0x89,0x82,0x97,0x4e,0xae, +0x8a,0xdb,0x31,0x96,0xe0,0x5a,0x9c,0x07,0x6b,0xa5,0x64,0x0c, +0x6b,0xa5,0x40,0x60,0x2d,0x2c,0x60,0x94,0x1f,0x08,0x31,0x04, +0x66,0xd4,0x0f,0xd5,0x35,0x36,0x26,0xc6,0xc7,0x5d,0x4d,0x8b, +0xa5,0x7e,0x6a,0x0a,0x5f,0xda,0x85,0x76,0x3f,0x9d,0x4c,0x3a, +0x23,0x09,0x77,0xd4,0xe9,0x73,0xd7,0x52,0xb2,0x12,0x73,0xae, +0x17,0xa8,0xc0,0xb1,0x5e,0x0c,0x4c,0x61,0x3e,0x35,0xd9,0x82, +0xfe,0xd6,0xe0,0xc5,0x1e,0xd3,0xd6,0xf6,0xc0,0x79,0x6e,0x9c, +0xbc,0x56,0xac,0x23,0xa8,0x39,0xf9,0xfa,0xe5,0xff,0xf1,0xfa, +0x83,0xff,0x7e,0x3d,0x9e,0x46,0x05,0x11,0xb7,0xe2,0xca,0xc9, +0x23,0x2b,0x33,0x98,0xae,0x82,0xfc,0x4e,0x75,0x61,0xf9,0xcd, +0x5e,0xb1,0xd6,0x9a,0x6d,0xa1,0x06,0x65,0x78,0xe0,0x36,0x84, +0xc2,0x59,0x16,0x43,0xa5,0xa4,0x45,0x32,0xd8,0x83,0x32,0x2a, +0x5f,0xdf,0xc4,0xff,0xbf,0x7a,0xbd,0x25,0x65,0x90,0xfe,0x46, +0xdc,0x87,0xdf,0x3c,0x66,0x83,0xb4,0xed,0x8c,0xf7,0xd9,0x55, +0xb9,0xf0,0x0d,0xa5,0x55,0x15,0xa5,0xd5,0xdc,0x57,0x8c,0xd3, +0x3a,0xdd,0x3d,0x6b,0x8c,0xab,0x9d,0xf9,0x7f,0x4e,0x3c,0xfb, +0xae,0x17,0xa6,0x70,0xcf,0x18,0x47,0x5c,0xb2,0x8b,0xba,0xfc, +0xb9,0x2b,0xeb,0xa8,0xbb,0x9b,0xf7,0xdb,0x4b,0x98,0xde,0x03, +0x1a,0xd4,0xb6,0x5d,0x5a,0x78,0x7e,0xc3,0xe9,0xed,0x9c,0x7d, +0xec,0xa9,0x30,0x7b,0xb5,0xb5,0x4c,0xba,0x8d,0xd2,0x2b,0xe6, +0xd3,0xf2,0x92,0x87,0xc9,0xea,0x69,0xaf,0xe2,0x5e,0x5d,0x81, +0x2d,0x1c,0xfe,0x8b,0xc9,0x28,0x4a,0x2d,0x49,0x2e,0xe5,0x84, +0x25,0x30,0xf2,0xef,0xc9,0x84,0x86,0x90,0x8d,0x78,0xfb,0x6b, +0x16,0x6e,0xa3,0x8c,0x7c,0x8c,0xb7,0xbf,0xa7,0x43,0xdd,0x26, +0x0f,0x27,0x05,0xc5,0xb9,0xa5,0x59,0x45,0xa6,0x79,0xfc,0xf1, +0x23,0x47,0x7d,0x7c,0x0f,0x73,0xd8,0xcc,0x0c,0xe6,0x9e,0x2c, +0x0f,0x2e,0x0f,0xcd,0x57,0x31,0x0f,0x29,0x0c,0xcc,0x0b,0xc9, +0xf0,0x57,0xc1,0xab,0x36,0x7f,0xd2,0x77,0x63,0x99,0xb8,0x8d, +0x64,0xd8,0x29,0x51,0x1e,0xb4,0x66,0x65,0xb4,0xd2,0x50,0xd1, +0x08,0xef,0xb1,0x22,0xb1,0x21,0xad,0x59,0xd2,0xf6,0xb8,0x3e, +0x71,0xb6,0xa8,0x34,0x02,0x9f,0x52,0x2e,0xe7,0xe0,0x0c,0x36, +0x83,0x06,0x49,0xc5,0x30,0x9d,0x8c,0xc0,0x69,0x13,0x86,0xa2, +0x4d,0x9e,0xd8,0x16,0x98,0xe4,0x5b,0xa7,0x87,0x1e,0xe4,0x07, +0xc2,0x07,0x8e,0x75,0x07,0x73,0x79,0x3a,0xc4,0xbe,0xd0,0x38, +0xdf,0xea,0xaf,0x4b,0x83,0xc7,0xba,0x82,0xb8,0x6e,0x34,0x24, +0x87,0x17,0x2d,0x74,0x45,0xbf,0x40,0x69,0x4d,0xbc,0xb4,0xe2, +0xfb,0x2f,0x6a,0xa4,0xba,0xc4,0x4f,0x98,0x8b,0xf6,0xe7,0x0f, +0x46,0x7b,0x73,0x5e,0xd1,0x91,0x91,0xba,0x6a,0xb8,0x84,0xc9, +0xb2,0x94,0x06,0xf2,0xb2,0xaa,0x78,0x38,0x43,0x3d,0xad,0x33, +0xe1,0xfe,0xd5,0x47,0x9c,0xa2,0xca,0x9a,0x51,0x16,0x8e,0xcb, +0x9b,0x09,0x12,0x5c,0x02,0x5b,0x4c,0x71,0x0b,0xaa,0x03,0xb1, +0x40,0x3d,0xc1,0x41,0x3a,0xf7,0x37,0x22,0x55,0x44,0x3a,0x30, +0xc9,0x9c,0x75,0xff,0x01,0x55,0xfc,0x25,0xa8,0x32,0x46,0xa1, +0x8a,0x62,0x0e,0x1e,0x23,0x56,0x42,0x56,0x1f,0x2b,0x7a,0xe1, +0xfb,0x04,0x5d,0x85,0xad,0xe0,0xca,0xa2,0x88,0xab,0xc9,0x2f, +0xd0,0xbb,0x8c,0xb5,0xc7,0xa3,0xa4,0xb0,0x39,0xaf,0x33,0xbd, +0xd1,0xbc,0x80,0x8f,0x72,0x0c,0xd0,0x0b,0xb2,0x5b,0x1a,0xb1, +0x30,0x6a,0xcd,0xd9,0x64,0xaa,0xb6,0xbb,0x32,0xc1,0xa3,0x0c, +0x56,0x94,0x9f,0xeb,0xe3,0x6d,0xa3,0xcd,0x62,0x4c,0x62,0x38, +0x5c,0x9c,0x45,0x4e,0xb6,0x85,0x74,0x86,0x34,0x5a,0x07,0xf1, +0x05,0x6e,0x85,0x76,0x99,0x52,0x05,0x00,0x51,0x1e,0x4d,0x1e, +0x25,0x3d,0x48,0xb9,0x9d,0x1e,0x48,0x41,0x1f,0x7f,0x04,0x77, +0x84,0xe3,0x9e,0xf3,0x69,0xd6,0xfc,0xc4,0xd5,0xfb,0x71,0xf7, +0x12,0xb8,0xb5,0x98,0x62,0x0d,0x29,0x34,0x76,0xc4,0xe9,0xc8, +0xe3,0x34,0x9c,0xb7,0x52,0x56,0x6b,0x0b,0x1f,0xfd,0xe3,0xc1, +0xc3,0x8c,0xef,0x55,0x12,0xf0,0xee,0x20,0xa4,0x32,0x89,0xd7, +0x27,0xb5,0xcc,0x09,0x4d,0x5a,0x5b,0xd0,0x01,0xf4,0xc3,0xd3, +0x63,0xae,0x9e,0x8e,0x56,0x89,0x88,0x54,0x3a,0x2b,0xbc,0x0f, +0xf9,0xbd,0x98,0xcf,0x08,0x17,0x14,0x6a,0x54,0x7b,0x26,0xf1, +0xc0,0x5c,0x29,0xc3,0xb0,0x84,0x07,0x8c,0x59,0xd4,0xa5,0x20, +0x47,0x36,0x22,0x97,0xb1,0x0a,0x2d,0xf1,0x3a,0x69,0x4d,0x6d, +0xc9,0x68,0xc8,0xe6,0x0c,0xfb,0x60,0xd8,0xca,0x00,0x67,0xdb, +0xc0,0x6c,0x2d,0xd6,0xe5,0xb8,0x43,0x98,0x7d,0x24,0x27,0x0c, +0xc1,0x41,0xe2,0xe1,0xe7,0x75,0xcc,0xed,0x24,0xf7,0x8b,0x15, +0x86,0xb3,0x8e,0x39,0xa1,0x9d,0xb2,0x7b,0x4c,0x53,0x7a,0x46, +0xa3,0xfa,0x4d,0x69,0x53,0xd5,0x6e,0x73,0x36,0xf8,0x6c,0x62, +0x8e,0xfa,0x3d,0xb6,0xb7,0xa0,0xa3,0xb8,0xad,0x92,0x4e,0x2e, +0x48,0x78,0x4d,0x5e,0x81,0xeb,0xba,0xfe,0x57,0x30,0xad,0x17, +0xa7,0x7d,0x67,0xb9,0x06,0x5d,0xa5,0x0f,0x65,0x6b,0x50,0x5e, +0xc7,0xca,0x77,0x8b,0x52,0x49,0x98,0x49,0x06,0xac,0xf8,0x0f, +0xed,0x38,0x24,0xe9,0xdc,0xa8,0xa4,0xf2,0x6b,0x71,0x19,0x09, +0xd0,0xd2,0xdc,0x86,0xeb,0xb5,0xa4,0xd2,0xf4,0x8b,0xee,0x7d, +0xf7,0x22,0xff,0x15,0x97,0xc0,0xe4,0xad,0xff,0x69,0x27,0xa8, +0x6b,0x97,0xf5,0xf1,0xa8,0x7e,0xfb,0xe3,0xaf,0x82,0xef,0x71, +0xa8,0x8d,0x0d,0x04,0x5a,0xfb,0xb1,0x95,0xb9,0x28,0x1e,0x21, +0xfd,0x20,0x42,0xad,0xb8,0x0d,0x5f,0xb1,0xa0,0x90,0xce,0x7c, +0x6a,0x50,0xd3,0xa5,0xc1,0x4a,0x59,0xfa,0x96,0x91,0xe0,0x92, +0xa0,0xd2,0x90,0xfc,0x82,0xdc,0xb2,0xea,0xec,0x52,0xab,0x1c, +0x3e,0xc4,0xe7,0x88,0xa7,0x8f,0x7f,0xb5,0x4f,0x85,0x57,0xa9, +0x27,0x07,0x91,0x25,0x24,0xb8,0x34,0xb8,0xe4,0x3f,0xee,0x07, +0xfb,0xf8,0x7a,0x1e,0xf6,0xaf,0xf5,0x2e,0xf3,0x2e,0xf7,0xe0, +0x20,0xa2,0x98,0xde,0x3f,0x4a,0x9f,0x2f,0x9a,0xbc,0x6f,0x29, +0x3d,0xef,0xf3,0x1f,0xcf,0x3f,0x57,0x30,0x93,0x58,0xd2,0xf0, +0x6f,0x2c,0xd9,0xfb,0xd7,0x94,0x24,0x2c,0xa9,0x7a,0x53,0xae, +0xca,0xe2,0x26,0xd1,0x87,0xc0,0x1d,0x2a,0x50,0x77,0xc0,0x69, +0x3f,0x46,0xda,0x82,0x0f,0xeb,0xa5,0xa7,0x69,0x8d,0x4a,0x56, +0xa5,0xf6,0x3c,0xbc,0x3f,0xf6,0xc9,0x48,0xea,0x23,0x6a,0x3d, +0x23,0x6f,0xc2,0x4e,0x26,0xe1,0xfa,0xd5,0xb8,0x0b,0x32,0x30, +0xc5,0x59,0x15,0x5d,0xa8,0x09,0x53,0x4e,0xa6,0x9c,0xb9,0x1c, +0x19,0xae,0x12,0x7d,0x5a,0x29,0x76,0x0c,0xa2,0xbb,0x31,0xfa, +0x13,0xc6,0x0c,0xf4,0x29,0xcc,0x7b,0x41,0x4d,0x66,0xff,0x36, +0xf2,0x02,0x56,0x6d,0xa3,0x26,0xcb,0x91,0x6c,0xc1,0x65,0x5f, +0xb0,0xe0,0x3c,0x07,0x56,0x6d,0xc1,0x55,0x14,0x9d,0xbd,0x8c, +0xff,0x7f,0x0c,0x4a,0x91,0x23,0x19,0x51,0x3f,0x21,0x16,0xfc, +0x70,0xf5,0x0b,0xd8,0xdb,0x2d,0x56,0xda,0xc2,0xf6,0x6d,0xac, +0xa0,0xfb,0xe6,0xef,0xc1,0x8a,0x46,0x0b,0xc9,0x8b,0x6f,0x68, +0x97,0x8b,0x1c,0x09,0xce,0x5c,0x0f,0x33,0x59,0x88,0xc4,0x99, +0x64,0x1d,0xcc,0x7c,0xc5,0xf4,0xd2,0x06,0xcc,0xfc,0x01,0x67, +0xb2,0x4d,0xb4,0x25,0x7a,0xda,0x0a,0x9e,0x0c,0xa6,0x4b,0xe5, +0xa0,0xdc,0x16,0xb3,0x19,0x16,0x4a,0xcf,0xfe,0x4e,0x63,0x6d, +0x49,0x07,0x2a,0xd6,0xda,0xb2,0xc2,0x8c,0x7d,0xa4,0xc1,0xb5, +0xd6,0xa1,0xca,0xe6,0x46,0x3d,0x7f,0xb8,0xcf,0xbb,0xf5,0x50, +0x33,0x87,0x13,0x97,0x88,0xbf,0xcd,0x41,0x1b,0xd7,0x43,0x4d, +0x6e,0xfc,0x8d,0xd6,0xb6,0xe1,0xb2,0x7e,0x2a,0x34,0x37,0xa8, +0x7b,0xf1,0xdb,0x4b,0x91,0xff,0x5f,0x09,0x05,0xd5,0xef,0x7d, +0xff,0x2c,0xef,0x27,0x2e,0x9e,0xc9,0x5d,0xf1,0x6a,0x2f,0x2c, +0xda,0x57,0x3e,0xc0,0xe3,0xe2,0x89,0x5d,0x8f,0xfd,0x9e,0x70, +0x42,0xd8,0xff,0x8f,0xcf,0xc0,0x18,0x3c,0x42,0xba,0xb1,0xc6, +0x96,0xfd,0x03,0x7b,0x08,0x84,0xa1,0xa7,0x74,0x84,0x2d,0x64, +0x0e,0x6d,0xf9,0xd2,0xd6,0x02,0x89,0x78,0xaa,0x0b,0x41,0x95, +0x15,0xa6,0xce,0x41,0x55,0x7c,0x9b,0xb6,0x6e,0x21,0x90,0xf3, +0xd7,0x94,0x92,0x8b,0x13,0xea,0xbb,0x54,0x33,0x8d,0x83,0xd9, +0xed,0xe1,0x4e,0x1a,0xc6,0x32,0xcd,0x2f,0x63,0x52,0xa2,0xaf, +0x9c,0x8e,0x51,0x89,0x3a,0x23,0xe5,0x2f,0x2d,0x4d,0xa8,0xeb, +0xa0,0x77,0x4f,0xb0,0x6b,0x8f,0x59,0xad,0xdf,0x2a,0x6b,0x70, +0xe9,0xef,0xa9,0x6c,0xcb,0xaa,0x57,0xb9,0x96,0x70,0xed,0x52, +0xdc,0x39,0x98,0x8a,0xf3,0xf8,0x89,0x9e,0x9a,0x96,0xbc,0xc6, +0x6b,0xf1,0xd7,0x2e,0xc7,0xc5,0xfe,0x8e,0x1f,0xf2,0x8d,0x8d, +0x2b,0x81,0x8b,0x4e,0x8b,0xbe,0x1a,0x15,0xa3,0x22,0x2d,0x56, +0x37,0x93,0xb4,0xd5,0xb7,0xf5,0xdf,0xec,0x29,0xeb,0xe5,0x97, +0x4e,0x98,0x4d,0x84,0x3e,0xe1,0xf6,0x33,0x21,0x1a,0xa6,0x7b, +0x91,0xd1,0x2c,0xa7,0x71,0xa6,0xd2,0x83,0xfb,0x0f,0x33,0x7e, +0xe0,0xe4,0x2e,0x0a,0x63,0x12,0x98,0x1b,0x98,0x7f,0xb4,0x40, +0x82,0x4e,0x89,0xb0,0x1f,0x36,0xa8,0x82,0x4c,0xb4,0x36,0x07, +0x3d,0x4b,0x0a,0x9d,0xf6,0x9f,0xd3,0x93,0x79,0xf6,0x1d,0x19, +0xf4,0x1f,0xb6,0x3b,0xc2,0x37,0xee,0x6e,0xd7,0xe8,0xd2,0x0e, +0xc1,0x55,0x8e,0x38,0x75,0x13,0xbe,0x67,0xf2,0x13,0x7f,0x26, +0xfd,0xf4,0xd5,0xa8,0x33,0xa7,0xcf,0x48,0x49,0x57,0x93,0x4a, +0xaf,0xd7,0x77,0xaa,0x66,0x98,0xf9,0xb1,0x7b,0x4e,0xbb,0xd8, +0x5b,0xc8,0x1c,0x9e,0x9c,0x49,0x8b,0x92,0xec,0x44,0x8c,0x34, +0xa5,0xc4,0xb2,0x78,0x3a,0xa5,0x0c,0x33,0x3a,0xa5,0x53,0x26, +0x3a,0x3b,0x64,0x4d,0xae,0x4d,0x3d,0x85,0x6d,0xe9,0x8d,0x2a, +0x57,0xa5,0xba,0xdc,0xe7,0xbe,0xc2,0x8f,0xf8,0xde,0x8e,0xf2, +0x1b,0x59,0x4d,0x74,0x8a,0x17,0xe3,0x62,0x1f,0xe2,0xfb,0x7c, +0x4d,0x65,0xa5,0xc7,0xd7,0xf0,0x5e,0x37,0x28,0x97,0xc2,0x12, +0x95,0x6e,0x83,0x3e,0xd3,0x7e,0xeb,0xf3,0xde,0xfc,0xd6,0x33, +0x21,0x27,0xf4,0xd5,0xd6,0x49,0xe0,0xec,0x4b,0xe6,0xdb,0x9a, +0x7a,0x98,0x92,0xa6,0x9e,0x7d,0x2a,0x3b,0x3c,0x3b,0x82,0xc3, +0x04,0xf8,0x89,0xa4,0x7c,0x75,0xfd,0x87,0x3f,0x28,0x38,0x5b, +0xb3,0x99,0x82,0xb3,0x73,0xb8,0xe6,0x34,0xaa,0xc8,0x2c,0x7b, +0x6d,0x86,0x1d,0xc7,0x38,0xb1,0x1a,0x82,0x89,0x2d,0x04,0x75, +0xb3,0xa8,0x8e,0xbf,0x11,0x88,0x42,0x4d,0x8c,0x62,0xc1,0x17, +0xa2,0x08,0x46,0x81,0x0e,0x44,0xb1,0x58,0x40,0x45,0x71,0x81, +0x86,0x94,0x7c,0xd3,0x77,0x32,0x49,0xf0,0xb3,0xc9,0xd4,0xc0, +0x55,0x94,0x9c,0x19,0x2b,0x3f,0xd1,0x85,0xf7,0x76,0x49,0x46, +0x81,0x7b,0x60,0xf8,0x49,0xc8,0x5f,0x04,0x35,0xd4,0xc0,0x69, +0x93,0x04,0x9d,0xfa,0xc9,0xa3,0x87,0x99,0x3f,0x72,0x10,0xa4, +0x43,0x40,0x8f,0x86,0x72,0xf7,0x3d,0xd1,0x08,0x57,0xa0,0xb9, +0xcc,0xe0,0x97,0x98,0x8c,0xd3,0x57,0x29,0x6b,0x4f,0x9f,0xf9, +0x8b,0x4a,0x75,0x5d,0xaa,0xe9,0x66,0x01,0xec,0xee,0x28,0x67, +0x6b,0x0b,0x99,0xdd,0xd3,0x33,0xa9,0xa7,0x25,0x9e,0x45,0xff, +0x7d,0xb7,0xbe,0x83,0xde,0x3d,0x49,0xa9,0x64,0xaa,0xb5,0x43, +0xd6,0xe8,0xd2,0xd2,0x53,0x34,0x49,0x25,0x89,0xcf,0xe7,0x5e, +0x52,0x2a,0x0d,0x74,0x96,0xb7,0x65,0x37,0x5d,0x8b,0xbf,0x4a, +0x05,0xe1,0x29,0xce,0xe6,0xab,0xca,0x6b,0xdd,0x95,0x68,0x50, +0xe3,0xd9,0x0c,0xc1,0xf0,0x50,0xb5,0x0b,0x66,0x6e,0x61,0xd1, +0x3c,0x16,0xed,0x4e,0xe1,0x5a,0xd9,0xf6,0x33,0xc7,0xc3,0x8c, +0xd4,0x36,0x48,0xb1,0xe7,0x73,0xe6,0x15,0x05,0xb2,0xef,0xa5, +0xaa,0x67,0xc2,0xde,0x04,0x8a,0x8d,0x8c,0x24,0x36,0x6b,0xb0, +0xe3,0xa8,0x41,0xce,0xe0,0x87,0xc7,0x96,0xba,0xac,0x6c,0xf7, +0xe5,0x3b,0xde,0xe4,0x03,0x9b,0x28,0xa5,0x0c,0xb0,0x8b,0xa3, +0x84,0x0a,0xa7,0x84,0x5a,0xf2,0x17,0xa1,0x74,0x25,0x42,0x85, +0xfc,0x45,0x28,0x43,0x89,0x50,0x15,0x0e,0x04,0xd5,0xa9,0x95, +0xa4,0x57,0x51,0x9d,0x80,0xfa,0xe7,0xa8,0x3e,0x99,0x41,0xb7, +0x99,0x24,0xef,0xbc,0x61,0x0c,0xd3,0xd6,0x57,0x50,0x42,0x31, +0xcf,0x5d,0xef,0x84,0xdd,0xa4,0x84,0x3a,0xa1,0xed,0xa0,0x83, +0x33,0x36,0x55,0x52,0x42,0xbd,0xf7,0xf5,0xf0,0xad,0xd4,0xef, +0x38,0xf9,0x41,0x49,0xf2,0x72,0x02,0xf3,0x8e,0xe6,0xff,0x5b, +0xf2,0x28,0x68,0x9f,0x2f,0xba,0x98,0x83,0x96,0x05,0xbb,0xf3, +0x82,0x16,0x05,0xed,0x1e,0xbd,0xde,0x83,0x7e,0x43,0xb6,0x47, +0xf8,0xa6,0x3d,0x1d,0xfb,0x7a,0x74,0x8e,0xe2,0x12,0x6b,0x64, +0xd6,0xe2,0xbb,0xa8,0x0c,0x6a,0x7c,0x54,0x7a,0xe4,0xb5,0x53, +0x51,0x51,0x31,0xfc,0x85,0xb8,0x94,0xe2,0xc4,0x8a,0x6b,0x95, +0x2a,0xb0,0x19,0x4e,0xe0,0xc6,0xef,0x7e,0xee,0xc6,0x38,0xdb, +0xef,0xd6,0xe0,0x06,0x3c,0x41,0x1d,0xef,0xe9,0x35,0x56,0x7b, +0x91,0xdb,0x5e,0x61,0xc3,0x7f,0x7b,0xbb,0x7b,0xb4,0x7c,0xe8, +0x5a,0x42,0xdc,0x15,0xaa,0x42,0x8b,0x71,0x03,0x9f,0x99,0xdd, +0xe0,0xf0,0x1b,0x4c,0x1b,0x85,0x99,0x55,0xb0,0x5c,0x65,0x40, +0x77,0xd8,0xe8,0xa6,0xe5,0x85,0x40,0x7e,0x73,0x4c,0xc8,0x71, +0x1d,0xb5,0x95,0x92,0x80,0x7d,0xc7,0x7c,0x5f,0x5b,0x07,0xef, +0xa4,0xa9,0xe7,0x9c,0xca,0x8e,0xc8,0xa1,0x02,0x56,0x48,0xd1, +0x7f,0xfa,0x97,0xd7,0xbf,0x7b,0xa3,0xda,0x0f,0x3b,0x37,0x4e, +0xa2,0xff,0x75,0xa7,0x51,0x55,0x66,0xd2,0x6f,0x3e,0x6a,0x73, +0x87,0x13,0x4d,0x32,0x28,0x18,0x58,0x0c,0x84,0x85,0x4d,0x48, +0x08,0x90,0xdf,0xa5,0x23,0x31,0xf2,0x63,0xf2,0x34,0x32,0x66, +0x6a,0x88,0x3a,0xb6,0x82,0x76,0x37,0xab,0x48,0x15,0x0f,0x13, +0xe8,0xa5,0x74,0xeb,0x66,0xae,0x15,0x5e,0x29,0xbc,0x52,0xc0, +0x41,0x15,0x45,0xe5,0x14,0x74,0x32,0xab,0xce,0xad,0xd6,0x5b, +0x2d,0xeb,0x70,0x6e,0x1e,0xcb,0xbb,0x95,0x34,0xae,0x02,0x27, +0xe1,0x82,0x94,0x38,0x2c,0x10,0xa6,0xb0,0x42,0x04,0xa5,0x73, +0x54,0xc5,0xf1,0xfa,0xf0,0x3c,0xdb,0xe3,0x7c,0x66,0x48,0x8e, +0x67,0x4a,0x00,0x07,0x5f,0x9f,0x21,0x28,0x63,0x72,0x2b,0xb2, +0xab,0xd3,0x2a,0xad,0xb3,0xf8,0xa8,0xc3,0x61,0x9e,0x41,0x6e, +0x1c,0xa6,0xda,0x82,0xe9,0x76,0xdc,0x6d,0x03,0xbb,0x91,0x1b, +0x06,0x0e,0x8c,0x7a,0xd0,0xe8,0x39,0x1c,0x64,0xc4,0x6a,0x43, +0x82,0x1f,0xa2,0xb9,0x54,0x52,0xc0,0x1b,0x3b,0x89,0x17,0x4e, +0x5d,0x6d,0x87,0x7e,0x87,0x73,0xcd,0x79,0xc8,0xad,0x7d,0xf9, +0x7d,0x35,0xe5,0x3d,0xdc,0xf3,0x66,0x82,0x2e,0xd9,0x44,0x7b, +0xcb,0xdc,0xa3,0x4f,0x44,0x9a,0xff,0x1b,0xfd,0xa8,0x33,0x9f, +0xd7,0x97,0x8c,0xa6,0xab,0xa7,0xf6,0x5c,0xed,0x1e,0x57,0xed, +0x52,0x5c,0xb7,0xa2,0xc1,0xb2,0xb2,0xfc,0x12,0x91,0xea,0x4d, +0xe7,0x5a,0x0b,0x4f,0x7a,0x59,0x08,0x50,0xc4,0x4a,0xb9,0x29, +0xa4,0xa5,0x8e,0x59,0xff,0xb3,0x2a,0x80,0x7b,0xed,0x89,0x62, +0xfe,0x88,0x7c,0x3e,0x8b,0x9f,0xee,0x24,0xa7,0x0e,0x9f,0xf0, +0x0f,0x0e,0xac,0x0b,0xe0,0x4b,0xca,0x73,0xcb,0xb3,0xea,0x38, +0xf4,0x3f,0x4b,0x0a,0x02,0x72,0x02,0xb2,0x7c,0x1a,0x8a,0xf9, +0x53,0x95,0xa1,0x95,0xa1,0x25,0x1c,0x5c,0xc0,0x6d,0x24,0x33, +0x30,0xc3,0x2f,0xcd,0x2f,0x20,0xc6,0x2f,0xc6,0xef,0x2c,0x07, +0xcb,0xd8,0xae,0x94,0xee,0x9c,0xa6,0xdc,0xc0,0x66,0xde,0x25, +0xd4,0xfc,0x98,0xc1,0x69,0xe9,0x64,0xc9,0xd1,0x73,0xc9,0xf6, +0x43,0x29,0x23,0xd9,0xfd,0x39,0x2a,0xd7,0xc3,0xe3,0xc3,0xaf, +0x47,0xb4,0x16,0xf2,0xc7,0x07,0x7c,0xef,0xfa,0x77,0x70,0xf8, +0x8f,0x1c,0xe2,0x74,0xc1,0xe2,0xdc,0x21,0xd9,0x89,0x8b,0x31, +0xb1,0xa1,0x6a,0x1e,0x4c,0x8a,0x9d,0xd2,0x0d,0xa6,0x29,0x33, +0xb7,0x31,0x5e,0x3d,0xa1,0xeb,0xea,0x93,0x27,0xaa,0xe8,0x65, +0xdf,0xcb,0x5c,0x58,0x77,0xd4,0xce,0xce,0xb1,0xe6,0x20,0x3f, +0x3e,0x52,0x7c,0x2b,0xee,0x37,0x0e,0x36,0x9e,0x23,0x78,0xaa, +0x0f,0x4e,0xb1,0x34,0xc8,0xe9,0x27,0x23,0x96,0xbb,0xd9,0xa5, +0x27,0x3e,0xde,0xb2,0x4e,0xd6,0xe2,0xd1,0xd6,0x59,0xda,0x93, +0xd5,0xa3,0x42,0xa3,0x83,0x55,0x03,0xc2,0x62,0x0b,0x0a,0x33, +0x3f,0xc5,0x8f,0x48,0xbc,0x74,0x7e,0xa4,0x94,0x83,0xf1,0xcd, +0x93,0x7b,0x38,0x68,0x98,0x35,0xc3,0x14,0x67,0xe0,0x5c,0x0b, +0x78,0x30,0xc0,0x2a,0x02,0xae,0x13,0x78,0xd7,0x8a,0x8a,0xec, +0x54,0x2b,0x68,0xea,0x63,0xc1,0x4e,0xa4,0x0e,0xdc,0xc6,0x10, +0xdf,0x46,0x75,0x4d,0x59,0x05,0x45,0xb7,0xeb,0x9e,0x3d,0x00, +0x55,0xf0,0x55,0x15,0x7c,0xcd,0x24,0xab,0xb4,0x9b,0x5c,0x44, +0xa3,0xe8,0x45,0x01,0x9b,0xfa,0xc2,0xf8,0xb2,0x57,0x69,0xc0, +0x5c,0x05,0x63,0x29,0x4f,0xcd,0x7b,0xc4,0x3d,0xc6,0x3d,0xe6, +0xe0,0x19,0xee,0x6a,0xe5,0x95,0x9a,0x3a,0xd5,0x02,0x98,0xd9, +0xbf,0x81,0xcd,0xee,0xcf,0x7f,0x98,0x7a,0xdb,0x26,0x9d,0x8f, +0xd2,0x39,0xb9,0x27,0xd4,0x80,0xc3,0x2d,0x96,0x30,0x2b,0x98, +0x39,0x78,0xc9,0xe3,0xa2,0x8f,0xcc,0xe5,0x8c,0x4b,0xac,0xf3, +0xb9,0x04,0x73,0xbe,0xf1,0x3a,0xfd,0x93,0x10,0xb1,0xc1,0x4f, +0xcf,0x48,0xaf,0xc5,0x8d,0xbf,0xff,0xb4,0xfa,0x59,0x3a,0xb0, +0x2d,0x49,0x2d,0xc9,0xcd,0xa9,0x1c,0x6a,0xc0,0x75,0x12,0x33, +0x18,0x39,0x10,0xde,0x63,0x1f,0xc6,0x67,0xda,0xa4,0x5a,0x27, +0x99,0x71,0xf2,0x17,0xee,0x64,0x03,0x93,0x3d,0x92,0xf9,0x49, +0xca,0x6d,0xeb,0x0c,0xfe,0xb4,0xc6,0x29,0xcd,0xe3,0xb4,0x77, +0x0b,0x0b,0x98,0x87,0xab,0x70,0xba,0x05,0x4c,0xc7,0x73,0x43, +0x70,0x0e,0x66,0x0f,0xe0,0x6c,0x58,0x25,0xed,0x6d,0x77,0xf8, +0x9e,0x9c,0xe9,0x8f,0xb8,0x7b,0xaa,0xd3,0x36,0x9c,0xcf,0xb0, +0x4b,0xd3,0x4b,0xb4,0x9c,0xdc,0xb8,0xed,0xf3,0xf7,0xe4,0x95, +0xac,0xa0,0xaa,0x8f,0x15,0xae,0xc4,0xfc,0x4d,0x1c,0xda,0x45, +0xd7,0x00,0x2b,0xd6,0x64,0x12,0x1a,0x0d,0x3f,0xf2,0xc1,0x00, +0x54,0xc3,0x4d,0xb2,0x16,0x67,0x25,0x58,0x04,0xda,0x0d,0xd4, +0x90,0xfd,0xac,0x3a,0xfe,0xd2,0x93,0xc5,0xc8,0xb3,0x18,0x7d, +0x12,0xb7,0xc8,0xcc,0x62,0x23,0xa3,0x6d,0xd5,0x5c,0xa4,0x53, +0xd6,0x6d,0xcc,0x44,0x75,0xc9,0xab,0x64,0xf5,0x1c,0xd0,0x8e, +0x87,0x70,0x88,0x50,0xfd,0x1a,0xcb,0xad,0xd8,0x08,0xd1,0x8e, +0x78,0x44,0x7b,0x9c,0x71,0x9f,0x24,0x50,0x75,0xbd,0x6a,0x11, +0x4c,0xeb,0xdf,0x44,0x09,0x94,0xf7,0x88,0x12,0x88,0x4e,0x41, +0xfb,0xe4,0x9e,0x63,0xfa,0x1c,0xae,0xb7,0x84,0x19,0x81,0x94, +0x40,0x9e,0x17,0xbd,0x65,0xae,0x67,0x5d,0x63,0x5d,0xcf,0x25, +0x98,0xf1,0x0d,0xd7,0x1b,0xe2,0xeb,0x13,0xa2,0xd6,0xf9,0x1f, +0x30,0x3e,0xd0,0x7c,0x90,0xbf,0xf7,0xac,0xfa,0xb3,0x34,0xe0, +0x9a,0x93,0x9a,0x53,0x1a,0xa5,0x45,0x24,0x48,0x20,0x31,0x43, +0x91,0x03,0x11,0xbd,0x94,0x40,0x19,0xd6,0xa9,0x56,0x12,0x81, +0xbe,0x3c,0x44,0xb6,0x53,0x02,0x65,0x7c,0x92,0x7c,0xc7,0x3a, +0x9d,0x8f,0xd6,0x08,0xd7,0x3c,0x49,0x09,0xa4,0x65,0x01,0xef, +0x53,0x02,0xbd,0x63,0x01,0xef,0xfc,0x45,0x20,0x6e,0x00,0xa5, +0x9f,0xdd,0x08,0x83,0x86,0xdf,0x91,0xb3,0xfd,0x91,0xf7,0x4e, +0x75,0xda,0x45,0xf0,0xe9,0xb6,0x69,0x7a,0xf1,0x16,0x94,0x40, +0xee,0x72,0x5b,0x92,0x5a,0x9f,0xd4,0x90,0x50,0x6f,0x96,0xc1, +0x9f,0x40,0xd6,0x05,0x39,0xed,0xb5,0xcd,0xd6,0x7c,0x5a,0x56, +0x6a,0x76,0x4a,0x36,0x27,0xee,0x18,0xfe,0x14,0x76,0x81,0x88, +0x81,0x6c,0x41,0x43,0x4e,0x73,0x66,0x33,0x07,0xc9,0x0c,0xc6, +0x9f,0x45,0xcf,0xf0,0xf9,0x32,0xa3,0x98,0x53,0x61,0x7a,0x6a, +0x38,0x65,0xf2,0xd7,0xb4,0x77,0x99,0xcf,0x1a,0xab,0x7f,0x4e, +0xa3,0xb6,0x7d,0x66,0x02,0x38,0x48,0x8b,0xf8,0xee,0x30,0x8b, +0x18,0xa3,0x39,0xbe,0x6d,0x0a,0x6f,0x33,0xe7,0xb1,0xc3,0x9e, +0x4a,0xf3,0x14,0x5c,0xd4,0xe6,0x48,0x41,0x20,0x6c,0xec,0x01, +0x87,0x38,0xe8,0xa3,0x4a,0xc5,0xe0,0xf9,0x73,0xb8,0x35,0x72, +0x89,0xcc,0xe8,0x4c,0xe4,0x29,0x0b,0xa9,0x64,0xa2,0x89,0xd2, +0xd7,0xcc,0x67,0xe5,0x75,0x2f,0x92,0xd5,0x33,0xe0,0xbd,0xeb, +0xb0,0x1a,0xee,0xaa,0xa2,0x3b,0x23,0xee,0xc4,0x3d,0x04,0xaf, +0xe3,0x3b,0x70,0x9d,0xda,0x33,0x53,0xf9,0xa7,0xc4,0x88,0x76, +0xfe,0x81,0x09,0x7c,0x40,0x3b,0x6f,0x73,0xc0,0xdd,0x8b,0x71, +0x91,0xb4,0x7c,0xfd,0x1e,0x6c,0xea,0x01,0x9b,0x38,0xe8,0xe7, +0x60,0x33,0x83,0x67,0x62,0x71,0x7b,0xd4,0x52,0x99,0xe1,0x99, +0x88,0x53,0xa6,0x34,0x7c,0xcc,0x34,0x56,0xfa,0x96,0xf9,0xbc, +0xa2,0xee,0x0b,0xa9,0x6f,0x36,0x0e,0x3e,0x96,0xfa,0x0e,0x62, +0xc4,0x73,0xff,0x20,0xb1,0xa8,0x72,0x78,0x1d,0xbe,0xbf,0xbf, +0xd2,0x96,0x87,0x65,0x5f,0xd4,0x02,0x97,0x08,0x4b,0xa5,0xd3, +0xd9,0x5b,0x2f,0x68,0xc4,0x58,0xca,0x3c,0x62,0xa5,0x12,0x46, +0xeb,0x24,0xf6,0x7f,0xc7,0xdc,0xae,0x28,0x1a,0x4f,0x51,0x4f, +0x1a,0x8b,0xfb,0x12,0x16,0xa8,0x8a,0xdb,0x4c,0x99,0x57,0x8a, +0x61,0x72,0x1b,0xc6,0x00,0x45,0x4e,0xdc,0xcd,0xc2,0xb8,0xa0, +0x44,0xf0,0x22,0x5e,0x85,0x8b,0xd4,0x3e,0x5d,0x93,0xbf,0x4f, +0x86,0xd0,0x1e,0xe6,0x1b,0xe1,0x7c,0x74,0x30,0x03,0x07,0xdc, +0x8c,0x56,0x66,0x82,0xf9,0x10,0x5a,0xc0,0x66,0x56,0x58,0x05, +0x76,0xc4,0x84,0x4e,0x64,0x9a,0x29,0x4c,0x93,0xa8,0xe4,0x8c, +0x9a,0x8b,0x71,0x71,0xfb,0xe4,0xca,0xf4,0xa6,0x0e,0xb0,0xff, +0x0f,0x22,0x6d,0xa3,0x13,0xf9,0x8b,0x48,0x9b,0x25,0x22,0x7d, +0x41,0x89,0x54,0xfb,0x79,0xb2,0x7a,0x3a,0x4c,0xbd,0x4e,0x39, +0x3c,0x31,0x49,0xa4,0xfb,0x0a,0x27,0x32,0x0e,0x5f,0x51,0xfc, +0xad,0x2e,0x2a,0xb3,0xf0,0x25,0x7c,0x4a,0xd0,0x11,0x8b,0x26, +0xf7,0x84,0x2f,0x10,0xf4,0xc8,0xc4,0xf2,0x6f,0xd6,0xc1,0xbb, +0xba,0xf5,0x9d,0xfc,0xa2,0x71,0x8d,0xfb,0xe6,0x9f,0x72,0x10, +0x30,0x80,0xa9,0x8c,0x7f,0x6b,0x48,0xdb,0xb1,0x56,0x0e,0x56, +0xf6,0x63,0x21,0x93,0xd9,0x9d,0xda,0x93,0xd4,0x6b,0x12,0xcf, +0x47,0x5b,0x47,0x5a,0x9e,0xb4,0xe2,0xd0,0x88,0xa9,0xa9,0xad, +0x68,0x28,0x6a,0xb0,0x2f,0xe7,0x6d,0xb6,0x6b,0xe9,0x6d,0x36, +0x6b,0x74,0xe2,0x9b,0x4a,0x9a,0x6b,0xea,0x1b,0x38,0x07,0xd8, +0xc3,0x9e,0x74,0x0e,0x71,0xf1,0x77,0xe1,0xb0,0xda,0x02,0xce, +0x30,0xc6,0x9a,0xdb,0xb5,0xf0,0x5d,0xc3,0x3a,0x3b,0xbe,0xbb, +0xa2,0xad,0xa2,0xb1,0x8a,0xb3,0x02,0x2b,0xd6,0x17,0x67,0x7e, +0x6c,0x8c,0x9a,0x36,0x45,0x34,0xc2,0x35,0xed,0x07,0xee,0xf3, +0x2a,0x69,0x87,0x7b,0x38,0x73,0xc9,0xf4,0x82,0xf1,0x69,0x67, +0xee,0x60,0x74,0x48,0x84,0x99,0x1a,0xaa,0x30,0x19,0x66,0xd2, +0xaf,0x0b,0x2f,0x5b,0x8a,0x1f,0x66,0xa8,0xa7,0x0e,0x5e,0x7f, +0xf2,0x93,0x2a,0x0d,0xcf,0xaf,0x64,0x5c,0xc9,0xc8,0x54,0xbd, +0x65,0x68,0xcc,0x9e,0xbc,0x74,0xea,0xd2,0x29,0x19,0x3a,0x30, +0x63,0x3d,0xdd,0xbd,0x4d,0x03,0x9c,0xd0,0x05,0x7b,0xc9,0xbe, +0x2f,0x34,0xee,0x6b,0x8c,0xb9,0x7a,0xf1,0x8f,0x0f,0xdc,0x3d, +0xf0,0x78,0x3d,0x87,0x5f,0x0e,0x93,0x5c,0xe7,0x02,0x97,0x62, +0x3a,0x22,0x77,0xa6,0xa4,0x25,0xaf,0x2d,0xab,0x8d,0x53,0x96, +0xbb,0x50,0x81,0x91,0xe8,0xfc,0x81,0xe9,0xa4,0xc0,0xe4,0xbb, +0xe2,0xae,0x55,0xa8,0x76,0x61,0x80,0x3f,0x10,0xad,0x1b,0xa3, +0x4b,0xad,0xbb,0x09,0xd8,0x0c,0x8a,0x66,0xe6,0x60,0x86,0xd6, +0xac,0xf6,0x59,0xad,0x58,0xed,0xc9,0xb5,0xa9,0xad,0x29,0xb0, +0x31,0x1b,0x56,0x16,0xc6,0x44,0x46,0x47,0x46,0x47,0xb5,0x39, +0xf0,0x40,0x60,0x63,0x1f,0x38,0x5c,0xff,0x9b,0x2d,0xe7,0x62, +0xa9,0xec,0x2e,0x9e,0x64,0x8b,0x25,0x15,0x0f,0xca,0x96,0x97, +0xcc,0x67,0x65,0x92,0xec,0x66,0xc2,0x34,0x49,0x76,0xef,0x48, +0x6c,0x51,0xac,0x85,0x4d,0xc4,0x4c,0xf0,0x1e,0x62,0xf1,0x5b, +0xd1,0x8d,0x04,0x4d,0x1c,0x19,0xf1,0x6f,0xaf,0xea,0xa8,0x18, +0x29,0xb8,0x6d,0x99,0xcd,0x87,0xea,0xfb,0x19,0xb8,0x1a,0x35, +0x1a,0x94,0x1f,0x28,0xd1,0xa6,0x42,0x2b,0xcc,0x23,0xc7,0xf4, +0x7d,0xf4,0x0e,0x1a,0x37,0x1a,0x54,0xe8,0x16,0xeb,0xf6,0x14, +0xf2,0x41,0x77,0x7d,0x6e,0xf9,0x35,0xd7,0x74,0x96,0x0d,0x17, +0xde,0xe1,0x60,0x4a,0x36,0x09,0x35,0xf0,0x3e,0x70,0xd0,0xa4, +0x59,0xbf,0x42,0xaf,0x44,0xbb,0xbb,0x98,0x0f,0xb8,0xef,0x3d, +0x16,0xd0,0x54,0xd3,0x5e,0x3e,0x5c,0x74,0x8b,0xea,0xf4,0x43, +0xf9,0x21,0x02,0xac,0x09,0xb2,0x78,0xd8,0x52,0x38,0xd6,0xcf, +0x52,0x5c,0xc3,0x4c,0x2a,0xcb,0x54,0x53,0x98,0xca,0x9c,0xc3, +0x4e,0x1b,0x1a,0x2d,0x4e,0xa3,0x9a,0x48,0x67,0xa3,0x02,0x1b, +0xfb,0xc1,0xfe,0xba,0xa4,0x2d,0x6b,0x19,0x8c,0xa5,0xb3,0x89, +0xf8,0x6b,0x36,0xe6,0x6a,0xab,0x25,0x6d,0xf9,0x9e,0x79,0x5e, +0x51,0xf7,0xf9,0xa4,0x26,0xc6,0x53,0x6d,0xb9,0xad,0x8a,0xbe, +0x0c,0xfa,0x59,0x10,0x71,0x11,0x5e,0x86,0xbd,0xf8,0x7a,0x09, +0x93,0x6d,0xaa,0xf4,0x98,0xe9,0xca,0xca,0xa6,0x91,0xd0,0x57, +0xb0,0x8b,0x35,0x05,0x2b,0x0a,0x07,0xb0,0x1a,0x64,0x2c,0x9c, +0xc2,0x1a,0x52,0x66,0x56,0xb2,0x3f,0xc7,0xb4,0xaf,0x88,0x3f, +0xd1,0xe7,0xf7,0x30,0x60,0x90,0xc3,0xb6,0xf3,0xe4,0xf8,0x66, +0xdf,0x5d,0xd6,0xda,0xed,0x9e,0xfc,0xe0,0xe3,0xea,0x6f,0x72, +0xbf,0xe5,0xa4,0xdd,0x79,0xdd,0x44,0x71,0x18,0x87,0xe4,0x87, +0x19,0x23,0xd0,0x21,0xe2,0x4f,0x0f,0x85,0x9f,0x18,0xf1,0x27, +0x9c,0x45,0x84,0x9f,0x76,0x8b,0x3f,0x31,0x42,0xc2,0xc7,0xc4, +0x64,0x29,0xae,0xb6,0x84,0x55,0xcc,0x19,0xdc,0x6c,0xb6,0x1a, +0xf9,0xbd,0x54,0xc4,0x60,0xe9,0x17,0xb7,0x61,0x5a,0x12,0xe8, +0x70,0xb0,0x9a,0xf9,0xf8,0xfc,0x8e,0xa8,0x7d,0x32,0xfb,0x98, +0xa3,0x91,0x16,0x6a,0x1f,0x33,0xe9,0xe6,0x54,0x51,0x5f,0x34, +0x55,0xdc,0x4f,0x55,0x4f,0x7f,0x15,0xf7,0x19,0x2c,0xa7,0xbe, +0x96,0x41,0x2f,0x3a,0x22,0xc7,0x28,0x25,0xe1,0x3d,0x7c,0x2d, +0x6a,0xb1,0x07,0x62,0x52,0x2c,0x41,0x25,0x1b,0xac,0xca,0x61, +0x56,0x95,0x0a,0x4e,0x11,0xde,0x21,0x3b,0x31,0xf4,0x19,0x0b, +0xa1,0x34,0xca,0xdb,0x82,0xa1,0x5f,0x48,0x2d,0x15,0xb2,0x97, +0xd5,0x8a,0xd8,0x1d,0xb9,0xf7,0x34,0x07,0x0c,0xc5,0x97,0xef, +0x0a,0xde,0xe4,0x45,0x77,0x4b,0x43,0x69,0x43,0x52,0x72,0xfc, +0xc5,0xe4,0x33,0xb0,0x0b,0x09,0x5f,0xd9,0x58,0x71,0xe8,0x9b, +0xae,0xee,0xa6,0x8a,0x26,0x95,0xc4,0x94,0xf8,0x4b,0xf4,0xaa, +0x16,0xaa,0xf2,0xf5,0x37,0x70,0x37,0xcc,0x8a,0x4a,0x8a,0x8e, +0x8b,0x8a,0x54,0x39,0x1d,0x15,0x7b,0x4d,0xa9,0xb0,0x3d,0xa9, +0xe9,0xae,0x6a,0x87,0x89,0x1d,0x8b,0xb3,0x9c,0x8c,0x70,0xe9, +0x1e,0x19,0xae,0xa3,0x31,0x53,0x22,0x8d,0x52,0xfe,0x5a,0xc4, +0x53,0x2a,0xb8,0x91,0xd4,0x7c,0x9f,0x7e,0xc3,0x9e,0xc5,0x0f, +0x1d,0x4d,0xf1,0xa3,0x5d,0x32,0x79,0x0e,0xb4,0x92,0x48,0xc7, +0x10,0x2b,0x3f,0xd7,0x9e,0xa3,0x7c,0xc5,0x8d,0xe2,0x9b,0x29, +0x1d,0x9c,0x18,0x94,0x4a,0x22,0x9d,0x43,0xec,0x7d,0xdd,0xbb, +0xfd,0xf9,0xca,0xd6,0xc2,0xfe,0xf4,0x1b,0xdc,0xc3,0x4c,0x12, +0xe3,0x78,0xc2,0xca,0xcf,0xb9,0xf7,0x18,0x5f,0xde,0x9e,0x3f, +0x96,0xd8,0xce,0x89,0xa1,0x89,0x24,0xda,0x2e,0xd8,0xc2,0xc7, +0xb5,0x3b,0x80,0xaf,0x6e,0x2f,0x9b,0x48,0xec,0xe0,0xac,0xc4, +0x78,0x02,0x53,0xe4,0xc1,0x38,0x65,0x0c,0x76,0x28,0xfe,0x81, +0x3b,0x58,0x41,0xe3,0x09,0x31,0xdc,0xc9,0x9c,0xb9,0x7c,0xe6, +0xd2,0x59,0x19,0x8e,0x5a,0x40,0x0f,0xe3,0x8b,0x6f,0x2d,0x30, +0x46,0x07,0xeb,0x22,0x8a,0xca,0x7c,0xfb,0x61,0xf6,0xe7,0xd5, +0x30,0x9f,0x83,0x9b,0x8c,0xc7,0x05,0x83,0x18,0x47,0x99,0x2b, +0x55,0x58,0x7d,0x35,0x5c,0x21,0x51,0x19,0x64,0xcc,0x2f,0xad, +0x45,0xcf,0xd2,0xd5,0x93,0x87,0xae,0x4d,0x7c,0xa9,0x2a,0xbe, +0x25,0x25,0xa0,0x48,0x4a,0x52,0x55,0x86,0x31,0xa1,0x97,0xda, +0xa2,0x7d,0xed,0xb8,0x6f,0x0c,0x6c,0xda,0xd1,0x66,0xdc,0xc2, +0x00,0xad,0x1c,0xc1,0xca,0x10,0xf7,0x3b,0xc2,0x7e,0x03,0x74, +0x77,0x10,0x02,0x3a,0x58,0x30,0x86,0xf2,0x49,0x3f,0xa1,0x6c, +0x0a,0xca,0xcc,0x05,0xac,0x73,0xc3,0x5d,0x6b,0x70,0xa1,0x5b, +0x89,0x4e,0xed,0xa1,0xcc,0x80,0x83,0x7c,0x47,0xe8,0x27,0xee, +0x0d,0xfe,0x99,0xc5,0x7c,0x93,0x3b,0x4c,0x81,0xcd,0xed,0x60, +0x4b,0x6d,0xbb,0x8a,0x24,0xad,0x54,0xf7,0x24,0x93,0x68,0x78, +0x36,0xe2,0x94,0x99,0xda,0x26,0x49,0xf7,0xbe,0xfa,0x5b,0x5a, +0x29,0xb8,0x90,0x74,0x6f,0x62,0x52,0x5a,0x8f,0xa2,0x39,0x11, +0x17,0x8b,0xac,0xb0,0x98,0xb1,0x85,0xc7,0xc4,0x0c,0x3b,0x87, +0x58,0xe8,0x5c,0x44,0x0c,0xb1,0x73,0x8c,0x36,0xf0,0x6d,0x62, +0x80,0x9d,0xe3,0xec,0x5e,0x2c,0x24,0xf7,0x4a,0x26,0x5a,0x9b, +0xea,0x7d,0x1a,0x78,0x4f,0x1f,0x2d,0x57,0xa3,0x10,0xaa,0x4b, +0x36,0xf2,0x65,0x24,0xb4,0x24,0xb8,0x34,0x34,0x3f,0x3f,0xb7, +0xb4,0x3a,0xab,0xd4,0x3a,0x87,0x0f,0xf5,0xf1,0xf3,0x3c,0xe2, +0x5f,0xe5,0x53,0xe6,0x55,0xe2,0xc9,0x41,0x70,0x09,0x09,0x29, +0x0d,0x29,0xf9,0xbf,0xee,0xfb,0xf8,0x57,0x7b,0x97,0x7a,0x97, +0x7a,0xd0,0x60,0xac,0x98,0xde,0x97,0x9e,0x2f,0xf8,0x9f,0xfb, +0xbe,0xff,0xf1,0x7c,0x2c,0x38,0x51,0xbb,0x64,0xb6,0xdc,0xf4, +0x67,0xe6,0x22,0xb6,0x1f,0x42,0xad,0x4d,0xb8,0xb8,0xc3,0x89, +0xff,0x01,0x36,0x35,0x83,0xe3,0x35,0xe8,0xe5,0x40,0x8d,0xc1, +0x2b,0xe7,0x70,0x0b,0x9d,0xa9,0xf1,0xd9,0xc8,0x70,0x6b,0xb5, +0xbd,0xd2,0x0e,0xf3,0x47,0xcc,0x93,0xb2,0x5a,0x6a,0x65,0x28, +0x4a,0x88,0x83,0x95,0xf0,0xa9,0x2a,0x5a,0x33,0xf8,0x2b,0xe5, +0x6c,0x98,0xb4,0x82,0x12,0x11,0x7d,0x9a,0x8f,0xbd,0x09,0x21, +0xdd,0x18,0xf2,0x09,0xd8,0x50,0x67,0x60,0x86,0x77,0xc0,0x62, +0x3f,0x1e,0xb5,0x05,0x47,0xc6,0xdb,0x50,0xdb,0x6a,0x81,0x95, +0x74,0x9e,0x83,0x1b,0xbd,0x33,0x9c,0xfa,0x90,0x4b,0xc0,0x88, +0x61,0xd8,0xcd,0xd0,0xa8,0xe4,0xfa,0x05,0x19,0x15,0xdc,0x99, +0x95,0x1d,0x4a,0x58,0x2c,0x1c,0xa2,0x7a,0xfc,0x82,0x72,0xb7, +0x57,0x5a,0x76,0x59,0xb8,0x8d,0x45,0x1b,0x47,0xb2,0x19,0x65, +0x5f,0xb2,0x60,0x31,0x07,0x16,0x6e,0xc6,0x85,0x8c,0xb2,0xf0, +0xbb,0xdc,0x80,0x64,0x36,0xa7,0xb5,0x26,0xdd,0x30,0x4b,0xe5, +0x83,0x70,0xb6,0x35,0xbe,0xa3,0xb1,0xa7,0xc5,0x95,0x6f,0x6a, +0xad,0xe9,0x29,0x1d,0xe2,0x04,0x76,0x88,0x11,0x7f,0xdb,0x47, +0x3a,0xd9,0xa2,0xd0,0x8a,0x90,0xba,0xa0,0x72,0x1a,0x90,0xbd, +0x37,0x71,0x70,0x38,0xb8,0x8b,0x33,0x64,0x82,0xad,0xec,0x8c, +0x70,0x86,0x76,0x89,0x15,0xdf,0x5c,0x5c,0x53,0x54,0x56,0xc4, +0x39,0xb0,0x3f,0x82,0x2e,0x49,0x75,0x2a,0x39,0xd4,0xe1,0xca, +0xa1,0x3e,0xd3,0xd1,0x5c,0xd6,0x9c,0xd2,0xc6,0x09,0xf3,0x31, +0x52,0x2a,0xc1,0xbd,0xd7,0x82,0xfa,0x9a,0x58,0xd4,0xd4,0xc6, +0x45,0xb8,0x7c,0x59,0x03,0x1d,0xff,0x46,0x78,0xe7,0x29,0x6c, +0x9f,0xdc,0xf2,0xbe,0x85,0xc1,0x39,0xb1,0x38,0x35,0x6a,0xa7, +0xcc,0xfa,0xcc,0xc9,0x48,0x63,0xb5,0x35,0x4c,0x86,0xb9,0xd2, +0x6b,0xe6,0x69,0x63,0xf5,0x93,0x14,0xf5,0xb4,0x97,0xf1,0xd4, +0x9b,0x5a,0xa8,0x62,0x30,0x4c,0x67,0xb0,0x48,0x0c,0x27,0x58, +0xf5,0x00,0x72,0x7b,0x31,0x77,0x02,0x12,0xa1,0x19,0x6f,0x2b, +0x66,0x0f,0xfd,0x08,0x55,0xcc,0x0e,0x61,0x27,0x41,0x87,0xbb, +0xe0,0x40,0xd1,0x24,0x4e,0x25,0xe0,0xa0,0x4d,0x7d,0x8d,0xb2, +0xdc,0x9f,0xba,0x0e,0x53,0x34,0x5b,0x6b,0xfa,0x2d,0x13,0x8b, +0xed,0xa6,0x78,0x00,0x3f,0x40,0xbe,0x9a,0x42,0x8d,0x55,0xb0, +0x6e,0x04,0x5c,0xe3,0xa1,0x87,0x03,0x55,0x06,0x2f,0x9c,0xc5, +0xcd,0x11,0x0b,0x64,0xc6,0x67,0x22,0xc3,0x6d,0xa5,0xf7,0x9b, +0x50,0xa8,0xf1,0xa4,0xa4,0xf6,0x79,0x8a,0x7a,0x16,0xbc,0x2f, +0x89,0xe3,0x2d,0x55,0xb4,0x62,0xc4,0x6d,0xb8,0x99,0xe4,0x6c, +0xfe,0xda,0x0e,0xd4,0x4c,0x8b,0xfa,0x79,0x9c,0xd1,0xb1,0xa7, +0xd5,0x67,0xbc,0xa3,0xe8,0x46,0x75,0x6d,0xb3,0x77,0x25,0xef, +0xe5,0xee,0xec,0xe3,0x18,0x9c,0x79,0x8c,0x77,0xa0,0xe3,0x0a, +0xb0,0x83,0x6d,0x78,0xbd,0x99,0xf1,0x35,0xd0,0x71,0xc0,0x59, +0x2e,0x79,0xf4,0x95,0xaa,0x5d,0xcf,0x7b,0xf3,0xbf,0xe2,0x20, +0xfa,0x2c,0x81,0xcf,0xf0,0x84,0x1d,0x68,0x60,0x05,0x6b,0x0c, +0xb9,0xc4,0xcf,0xcb,0xcd,0xd7,0x31,0xa8,0xd4,0x9d,0xef,0x28, +0x69,0xad,0xaa,0x6e,0xe0,0xb0,0xb1,0x8c,0xf8,0x79,0xbb,0x1c, +0x76,0x0a,0x29,0x77,0xe7,0xdb,0x8b,0xdb,0xaa,0xab,0x1a,0xb9, +0xa0,0x0d,0xe4,0x90,0x93,0xd3,0x61,0x4b,0xff,0xb2,0x83,0x7c, +0x7f,0x65,0x4f,0x7d,0x63,0x97,0xb4,0x0f,0xc9,0x9d,0x18,0xee, +0xdf,0xee,0xbc,0x32,0x30,0xcf,0x8e,0xff,0xb5,0xfc,0xeb,0xce, +0xfb,0x8f,0x39,0x8a,0xb2,0xaa,0x08,0x2c,0x6c,0x84,0x77,0xc7, +0xbe,0xf8,0xf1,0x60,0x03,0xbf,0x77,0xe3,0x12,0x53,0x5c,0x78, +0x90,0x13,0xd6,0xbf,0x21,0x2b,0x28,0x86,0x9b,0xb5,0x13,0xcd, +0xed,0xf3,0xad,0x78,0xb0,0xef,0x06,0xd5,0xaf,0x7f,0x05,0x86, +0x5a,0x70,0x3b,0x4a,0xa4,0xff,0xd6,0xe2,0x49,0x1c,0xb3,0x77, +0x09,0x2e,0x95,0x0a,0xfd,0xbe,0x0b,0x9b,0x3b,0x26,0x95,0x96, +0x83,0x8f,0xff,0x97,0xd2,0x9a,0xff,0xa5,0xb4,0x5f,0xfe,0xb7, +0xd2,0x72,0x7f,0xe3,0x18,0x1f,0x46,0xb1,0x52,0x2c,0x24,0xb0, +0xf2,0x2a,0xe8,0xa6,0xc2,0x8a,0xec,0x73,0x6d,0xbc,0xde,0x59, +0xed,0x73,0xfb,0xcf,0x71,0xb7,0x27,0x0d,0xc9,0xa8,0xb4,0xed, +0x07,0x4d,0x87,0xc0,0xb3,0x1d,0x3d,0x6f,0xb1,0xb7,0xe3,0xc7, +0x93,0x06,0x92,0x4f,0xb6,0xf3,0xf8,0x6e,0xa8,0x54,0x3b,0x75, +0xfe,0xb9,0x64,0x47,0x7e,0xf0,0xea,0xf8,0xb5,0xf1,0x78,0xce, +0x04,0xbd,0x1d,0xc1,0xdb,0x0c,0x4d,0xf1,0x0c,0x98,0x1a,0xa1, +0x83,0x23,0x38,0xe8,0xb0,0x9a,0x17,0x34,0x2f,0xe8,0x5e,0xe2, +0xc0,0x57,0x98,0x29,0x6d,0xb6,0x9e,0x07,0x2b,0x58,0xea,0xf6, +0x57,0x10,0x58,0x01,0x1f,0xe1,0x0a,0x16,0xfb,0x61,0x3a,0xc9, +0xf6,0xcd,0x76,0x4f,0xf3,0x6c,0xcc,0xe6,0x23,0xea,0x4f,0xd5, +0x1d,0xaf,0xe4,0xe8,0x17,0x3e,0x24,0x79,0x35,0x59,0x6d,0x49, +0x55,0xee,0x69,0xfc,0x69,0xef,0xb0,0x43,0xc7,0x7c,0xb8,0xa7, +0xf8,0x15,0xc9,0xf1,0xcf,0xf1,0x48,0xf7,0x6c,0xc9,0xe5,0xc3, +0x1a,0x8e,0xd7,0x1d,0x2b,0xe1,0x50,0x3d,0x90,0xa4,0xf9,0x64, +0xd8,0x27,0x39,0x75,0xa4,0xf1,0xd1,0x6d,0x27,0xbb,0xc3,0x2b, +0x68,0xd0,0x8e,0xfb,0x48,0x49,0x53,0xe9,0xad,0xf4,0x2e,0xc7, +0x4c,0x3e,0xdc,0x29,0xd0,0x2c,0xc0,0x9d,0x83,0x6d,0x40,0x48, +0xa2,0x6b,0xa2,0xf1,0x35,0xa7,0xde,0x24,0xfe,0xfc,0x8d,0x98, +0x91,0xd3,0x2d,0x94,0x90,0x11,0x94,0x90,0x74,0xbc,0x4b,0x4c, +0x7f,0xa5,0x06,0xa1,0xc5,0x03,0x0f,0xec,0x41,0x59,0x93,0x0d, +0xff,0x2d,0x6c,0x6c,0x04,0xe7,0xab,0x92,0xac,0xbd,0xcf,0x60, +0xdc,0x5f,0x06,0xc1,0xe4,0x6c,0x54,0xb8,0x9d,0x9a,0x96,0xf4, +0x33,0xed,0x04,0xf3,0xa8,0xb4,0xe6,0x79,0x12,0x35,0x08,0xef, +0xc5,0xc1,0x72,0x78,0xac,0x4a,0x15,0x48,0xb1,0x94,0xc2,0x0e, +0xbc,0xc6,0x62,0x57,0x24,0x2e,0x75,0x45,0x5e,0xd6,0xe1,0xa6, +0xd4,0x0e,0xcb,0x32,0x60,0x07,0x0c,0xa8,0x82,0xa3,0x60,0xd3, +0xcd,0x62,0x31,0x06,0x91,0xf6,0x9f,0x1c,0xbb,0xda,0xff,0xd9, +0xbe,0xb8,0xcb,0xce,0x6e,0x05,0xfd,0x7f,0xb1,0xe3,0x3f,0x1d, +0x59,0x28,0xc3,0x46,0x02,0xa9,0xf8,0x07,0xa6,0xc2,0x1a,0x2b, +0x0a,0xdd,0xc7,0xfa,0x20,0x03,0xa6,0x2f,0x65,0xbd,0xcf,0x7b, +0x9f,0xf7,0xbd,0x70,0xdd,0x99,0xbf,0x1d,0xff,0x20,0x75,0x20, +0xed,0x5a,0xc4,0xb5,0x88,0xab,0x91,0x8d,0x29,0xfc,0xd9,0xc6, +0x53,0x03,0x91,0xd5,0x1e,0xd1,0xfc,0xf5,0x53,0xf1,0xa7,0xe2, +0xc2,0x22,0x2f,0x44,0x5c,0x88,0xb8,0xc8,0x7d,0x07,0x33,0xd0, +0x71,0x2d,0x9b,0xe2,0xa4,0xf4,0x9c,0xa9,0x4f,0xcb,0xa8,0x53, +0x87,0x73,0xa8,0xd9,0xc7,0xda,0xc3,0x6a,0xb2,0xe4,0xd6,0xaf, +0x4c,0xa7,0x3e,0xb9,0xf5,0xb3,0x3e,0x8b,0xd7,0x0e,0x92,0x5f, +0x75,0x96,0x30,0xb0,0xea,0x1e,0xf9,0x59,0x67,0x39,0x23,0x65, +0x8d,0xda,0x4c,0xfa,0x61,0x89,0x65,0x7f,0x3f,0x7c,0xd8,0x81, +0x1f,0x4a,0x99,0x3a,0x96,0x48,0x1f,0xb3,0x1c,0x60,0x96,0x25, +0x4b,0x81,0xdf,0xa6,0x49,0xab,0x69,0xf2,0x33,0xf5,0x18,0x0d, +0x6e,0xa8,0xb9,0x06,0x17,0x70,0xd5,0xb8,0x83,0x9a,0x83,0x36, +0xdc,0xfe,0x60,0xf2,0xf3,0x13,0xd0,0x6f,0x47,0x0d,0x36,0xb3, +0x20,0xbd,0x20,0x29,0xc7,0x2a,0x83,0xa7,0x3e,0xcb,0xef,0x44, +0x20,0x47,0x61,0x66,0x4a,0x76,0x72,0x6e,0x6a,0xa9,0x5d,0x26, +0x7f,0x54,0xdf,0x69,0xb7,0x99,0x49,0xcd,0x21,0x3e,0x2d,0x3d, +0x3d,0x2b,0x2d,0x9b,0x46,0xec,0x7d,0x3d,0xf0,0x27,0x7b,0xc3, +0x09,0xde,0x86,0x4d,0xed,0xe0,0x40,0xed,0xaf,0x0a,0xcc,0x67, +0xf0,0x22,0x8d,0x50,0xfe,0x02,0xdf,0xe1,0x56,0x6a,0xdb,0x25, +0xa1,0xfd,0x8c,0x79,0x5a,0x5e,0xfb,0x22,0x89,0xe2,0xa2,0xa9, +0x71,0x54,0x68,0x3f,0x51,0x45,0x47,0x86,0x5a,0x59,0x0d,0x02, +0xfb,0xf0,0x10,0xee,0x63,0x05,0xd7,0x39,0xb4,0xe5,0x41,0x5b, +0x6b,0xe1,0x43,0xb2,0x0d,0xdf,0x7a,0xc1,0x82,0x38,0x67,0x1b, +0x4e,0x79,0xc1,0x52,0x10,0xf2,0x1d,0xf9,0x04,0x96,0xee,0x67, +0x71,0x29,0xbe,0x47,0x1e,0xc0,0xd2,0x7d,0xac,0xf3,0xbb,0xbb, +0x70,0xe9,0x53,0x8a,0x2e,0xee,0xca,0xcd,0x49,0x56,0x4b,0x7a, +0x6b,0x4a,0xab,0x7e,0x2a,0x7f,0x18,0x57,0x6e,0xc7,0x95,0x38, +0x13,0x3f,0xec,0x72,0xe0,0x9f,0xbc,0x18,0x7d,0xd9,0xf6,0x9a, +0x13,0x0a,0x98,0x4b,0x58,0x1f,0x86,0x3b,0x8f,0x6f,0xe3,0x6c, +0x22,0x03,0x82,0x0c,0xd5,0xd0,0x9c,0x91,0x2a,0xda,0x1f,0x60, +0x5e,0x75,0xd4,0x7d,0x96,0xaf,0x5e,0xf6,0x6b,0x1a,0x38,0xc2, +0x43,0xea,0x7f,0x3b,0xe4,0x36,0x24,0xa7,0x25,0xa3,0x25,0xb5, +0xc5,0x30,0x85,0x77,0x95,0x0e,0xd0,0x2f,0xc4,0x19,0x2b,0x5a, +0xed,0xf9,0x67,0xb7,0xc7,0xbe,0x6a,0xff,0x8e,0x83,0xf5,0x4c, +0xe8,0x9e,0x00,0x1d,0x6f,0x23,0x8f,0x5c,0x8f,0x1c,0xaf,0x6c, +0x6f,0x07,0xbe,0xfe,0x44,0xc3,0xf1,0x86,0x63,0xc6,0xab,0x76, +0xef,0x5e,0xa5,0xdd,0x6a,0xc7,0xff,0xe3,0xe1,0xf3,0x2f,0xc7, +0xff,0xd9,0xe7,0xdb,0xeb,0xdb,0x7d,0xc4,0x04,0x99,0xdd,0x6b, +0x56,0xec,0x69,0xb7,0xe3,0x7f,0x79,0xfe,0xd9,0x4f,0xa3,0x34, +0xb6,0xf5,0xea,0x3a,0xdc,0xec,0x5d,0xdb,0xcd,0xbb,0xd4,0x58, +0xd7,0x99,0xd5,0x75,0xbc,0xa9,0x85,0xe9,0x85,0x20,0xe3,0x40, +0x85,0x0e,0xb0,0xed,0x24,0x5a,0x9e,0xd8,0xcc,0xd9,0x9c,0xf6, +0xf6,0x33,0xfc,0x77,0x31,0x55,0x55,0xe6,0x55,0x67,0xdd,0x67, +0x79,0xea,0x25,0x6f,0x32,0x20,0x02,0xc6,0x55,0x51,0x14,0x3f, +0x20,0x76,0x15,0xd6,0xe5,0x36,0x65,0xf5,0xf7,0x2b,0x9e,0x14, +0x7d,0xc3,0xc1,0x26,0x26,0x04,0xdf,0xf7,0xc1,0xb7,0x5d,0x57, +0x53,0xd7,0x3b,0x28,0xf7,0x27,0x69,0x35,0x29,0x35,0x89,0xb5, +0x74,0xf8,0x94,0x14,0x7b,0xf0,0x7d,0x4a,0x8a,0xb7,0x9b,0x6d, +0xf8,0xaf,0x9f,0xde,0xfe,0xaa,0xed,0x7b,0x4e,0x78,0xc2,0xe0, +0x9d,0x28,0x74,0x38,0xb9,0x43,0x66,0x10,0x1e,0x14,0x62,0x20, +0xbd,0x28,0xcd,0x5c,0x2a,0x25,0xf3,0x79,0x4b,0xf5,0x37,0xf9, +0xea,0x85,0xaf,0x53,0xe9,0x8b,0x7e,0x52,0x55,0x30,0x62,0x15, +0xb9,0xd5,0x3a,0xd2,0xdb,0x3d,0x72,0xc3,0xb5,0xd9,0xb9,0x46, +0xca,0xb9,0xe7,0xd5,0xe2,0x72,0xc3,0xb1,0xb5,0x65,0xa8,0x76, +0xbc,0xf4,0xbe,0x55,0x3e,0x7f,0xd4,0xf0,0x88,0xa9,0x87,0x8d, +0x75,0xbb,0x4d,0xb3,0x6b,0xf9,0x61,0x57,0xbe,0xcd,0xb7,0xc7, +0xad,0xdb,0xd1,0xde,0xd4,0xdc,0xce,0x80,0x5a,0xbd,0xe5,0x90, +0x4e,0xf0,0xbf,0xc4,0xdd,0xc2,0x14,0x13,0xf1,0xcc,0xc8,0x84, +0x70,0x52,0xd8,0x4e,0x39,0x35,0x20,0xf7,0x21,0xe9,0xb5,0x29, +0xb5,0x89,0xf5,0xff,0xf7,0xf0,0x5a,0xea,0xeb,0x9a,0xaa,0x9a, +0x39,0xb1,0x60,0xf8,0xa9,0x60,0x29,0xf8,0x89,0xe1,0x6c,0x51, +0x4d,0x7e,0x5d,0x76,0x1d,0x27,0xe5,0x1e,0xba,0x15,0x85,0x76, +0xff,0x33,0xe0,0x8f,0x26,0x07,0xac,0xfe,0xf7,0x80,0x0b,0x5e, +0xa7,0x41,0x38,0xbc,0x56,0x15,0xaf,0x8a,0x2c,0xc1,0x6d,0xd4, +0x65,0x6c,0x63,0x06,0x70,0x35,0xa1,0x8d,0xdd,0x52,0x25,0xcd, +0x50,0x3b,0x82,0x3b,0xe9,0xf5,0x9d,0x2c,0x04,0xce,0xa1,0x97, +0x76,0xe2,0x6e,0xaa,0x2a,0x15,0xf2,0x58,0x92,0x5c,0x9a,0x54, +0x96,0x50,0x6a,0x94,0x4c,0x07,0x32,0x6f,0x1f,0xaa,0x2e,0xde, +0x5e,0x6b,0xc5,0x97,0x14,0x14,0x15,0x15,0x94,0x70,0x90,0xbf, +0x1b,0x2f,0x8b,0xd1,0x43,0xb0,0x93,0x9a,0xb0,0x6d,0x43,0xd4, +0xea,0x38,0x48,0x95,0xba,0x98,0x54,0x07,0xa5,0x37,0x4c,0x51, +0x46,0x7c,0x5a,0x92,0x7a,0x8a,0x8b,0x52,0x2b,0xf3,0xa8,0xaa, +0xec,0x69,0x86,0x7a,0x36,0x30,0x89,0x10,0x2c,0xbc,0xaf,0x8a, +0x0e,0x8a,0x78,0x72,0xe5,0xfa,0x95,0xf8,0x04,0x55,0x41,0x1b, +0x93,0x9f,0x40,0x7b,0x17,0xb6,0xff,0x6c,0xb6,0x1c,0xc3,0xd8, +0xb2,0xa6,0xa2,0xb6,0xbc,0x1b,0x9c,0xf0,0x2b,0x83,0x0d,0x67, +0xf1,0xd4,0x29,0x7c,0x5f,0x66,0x73,0xf6,0xe4,0xc9,0x83,0x6a, +0x78,0x4e,0xfe,0x11,0xe9,0x3b,0xde,0x16,0xda,0x12,0x58,0xd6, +0xc2,0xbb,0x16,0x3b,0x15,0xd8,0xe4,0x70,0xb8,0x42,0x54,0x26, +0x68,0xf6,0x35,0x98,0x31,0x43,0x52,0x6a,0x0c,0x87,0x8d,0xac, +0x68,0x2e,0xe5,0xac,0x5a,0x2b,0xe5,0xac,0xba,0xfc,0x2d,0x75, +0xb3,0x6b,0x25,0x37,0x0b,0x95,0xf2,0x4b,0x24,0xb9,0x24,0xb1, +0x38,0xa1,0xe4,0x7f,0xcf,0xa3,0xa3,0xb1,0xb9,0xb3,0xa6,0x97, +0x13,0xba,0x3b,0xc4,0x3c,0x26,0xad,0x20,0xb5,0x28,0xa5,0x90, +0x13,0x7e,0x61,0xb0,0xe9,0x2c,0x46,0x9c,0xc2,0x59,0x7f,0xbf, +0xdb,0x40,0xd2,0xca,0xce,0xff,0x3d,0x0b,0xa2,0xaa,0xf0,0x13, +0x57,0x12,0xe1,0x1c,0x68,0x88,0xe7,0x98,0x11,0x9c,0x4d,0x9e, +0x09,0xca,0x3b,0x59,0x31,0x7c,0x3e,0xc1,0xd7,0x23,0xbd,0x42, +0xb5,0xb4,0xe7,0xfa,0x73,0x9c,0x4e,0xf0,0xe0,0xa7,0x70,0x90, +0x19,0xd2,0x24,0x9f,0x82,0xb7,0x26,0x8b,0x85,0x2e,0x64,0x17, +0x1e,0x7c,0xca,0x42,0xd6,0x1c,0xf0,0xde,0x85,0xde,0x8c,0xf2, +0x9f,0xd3,0xae,0x13,0x0c,0x67,0x2c,0xa2,0x52,0x47,0xa5,0x93, +0xdd,0xb6,0xd0,0x84,0x31,0x6c,0x6e,0x4d,0x76,0x5d,0x46,0x03, +0x07,0x85,0x0c,0x6a,0x5d,0x5a,0x79,0x76,0x8b,0xcc,0xe0,0x5c, +0xe4,0x71,0x47,0x35,0x1d,0x26,0xd5,0x52,0x69,0x9c,0x79,0x50, +0x53,0xfd,0x43,0xa2,0x7a,0xe2,0x8f,0x57,0xff,0x09,0xa1,0xaa, +0x38,0xc6,0x24,0x55,0x24,0x56,0x26,0x54,0x5a,0x64,0xf2,0xa1, +0xf8,0xd6,0xa1,0x65,0x26,0x3b,0x6e,0x38,0xf3,0x09,0xc9,0x09, +0xc9,0xf1,0xc9,0x9c,0xe8,0xc1,0x2e,0xcd,0x0f,0xfc,0x55,0x06, +0x47,0x99,0xce,0x9c,0x9c,0x0e,0x75,0x60,0x59,0xf3,0x2c,0x25, +0x71,0x8b,0x50,0x49,0xfa,0xf1,0x30,0x9b,0x54,0x91,0x50,0x15, +0x57,0x6b,0x71,0x9d,0x3f,0xe7,0x71,0xf6,0x70,0xf4,0x11,0x0e, +0x17,0x5b,0x52,0x17,0xeb,0x67,0xe8,0x6c,0xa3,0xe7,0x50,0xe1, +0xc8,0x3f,0x19,0x19,0xbc,0x5b,0xf3,0x9c,0x6b,0x63,0x2a,0x76, +0x8f,0x69,0x3c,0x32,0xaf,0x6a,0xe7,0x0d,0x5b,0xad,0x87,0xfc, +0x6f,0x4a,0xfb,0x1d,0x83,0x09,0x9c,0xef,0xc7,0xf3,0x8c,0xf0, +0xf2,0x3c,0x41,0x5d,0x5c,0x00,0xba,0xac,0x48,0x9d,0x34,0x89, +0xb2,0x0f,0x31,0x3e,0xe1,0x24,0xd5,0xf3,0xf4,0x3a,0xef,0x14, +0x7b,0x48,0xe6,0x7d,0x2e,0x2a,0xca,0x55,0x6d,0x89,0x04,0xe7, +0xff,0xc1,0xdc,0x29,0xca,0x1f,0x4a,0x56,0x4f,0xea,0x89,0xbb, +0x75,0xe5,0x39,0x87,0x09,0x4c,0x6a,0x45,0x6a,0x43,0x12,0x75, +0x80,0xb9,0x03,0xe2,0x4e,0x0b,0x0a,0x87,0x1a,0x6a,0x89,0x68, +0xcd,0x68,0x1e,0xcb,0xfa,0x54,0x1d,0xe2,0x58,0x08,0x19,0x85, +0x13,0xbf,0xc0,0x8a,0x9f,0x0f,0x51,0x30,0x23,0x5b,0x83,0xfe, +0x2b,0xd1,0xcd,0x82,0x13,0xa6,0xeb,0x28,0x1c,0xd8,0xc5,0x2d, +0x1e,0xff,0x94,0x09,0x8e,0xd2,0x21,0xc0,0x3e,0x75,0xf0,0x64, +0xf5,0xa4,0xa3,0xdd,0x4b,0xe4,0x8e,0x64,0x5c,0x51,0xa7,0x78, +0x71,0xf7,0x13,0xf9,0xd1,0x71,0xc5,0x51,0xf9,0x1c,0xaa,0x4c, +0xdb,0xe5,0x11,0x44,0x9e,0x3d,0xa4,0xf8,0xfc,0x5f,0xec,0xed, +0x31,0x79,0xf9,0x90,0xa2,0x9c,0x11,0x34,0x21,0x88,0x40,0x9e, +0xb0,0x50,0x7c,0x21,0x2e,0x84,0x14,0x34,0x1a,0x61,0x4c,0x84, +0xf5,0x04,0xed,0x81,0x03,0x7b,0xca,0xcc,0xc9,0x5a,0x15,0xee, +0xc8,0xb1,0x98,0x67,0x43,0x50,0x99,0x5e,0x57,0x66,0x21,0x65, +0xce,0x7f,0xd7,0x49,0xdb,0x28,0x75,0x59,0x32,0xa4,0x78,0xf5, +0x2f,0x6e,0xfc,0x86,0xbc,0x76,0x48,0x51,0xcb,0x40,0xdb,0x03, +0x22,0x1c,0xef,0x41,0x57,0x78,0x07,0x74,0xba,0x50,0xe7,0x97, +0xbf,0x3f,0x6d,0x7a,0xa8,0x0d,0xcd,0xad,0xc8,0xaa,0x49,0x2a, +0xb0,0xca,0xe4,0xa3,0x03,0x8e,0x1d,0x0c,0xf2,0xe2,0xa4,0x35, +0xe7,0x8a,0xf4,0x8a,0xe4,0x22,0x9b,0x1c,0xde,0x7b,0x8d,0xde, +0xa2,0x03,0x3a,0xad,0x9e,0x7c,0x76,0x76,0x6e,0x71,0x5e,0x39, +0x67,0x01,0xd3,0xc8,0xa1,0x2a,0x93,0x46,0xc7,0x02,0x6f,0x47, +0xbe,0xe3,0xe8,0x80,0x4f,0x8b,0x17,0x07,0x4b,0x97,0x90,0x5f, +0x60,0xe7,0x32,0x16,0x87,0x0e,0x12,0xd7,0x3a,0xab,0x3a,0xeb, +0x62,0x5f,0x27,0xbe,0xf7,0x68,0xe7,0xe1,0x0e,0x1a,0x06,0xec, +0x36,0xf8,0xfb,0xe6,0xe7,0x69,0xc4,0x73,0xaf,0xb5,0x86,0x85, +0xc5,0x0d,0x77,0x7e,0x78,0xbc,0xf7,0x71,0xed,0x63,0x0e,0xe8, +0xbb,0xa4,0x6c,0xd1,0x3b,0xf1,0x1d,0x4a,0x8a,0xe5,0xf2,0x18, +0x22,0x6f,0xee,0x53,0xfc,0xf6,0xaf,0xf7,0x46,0xdb,0xe5,0xdd, +0x7d,0x8a,0x6e,0x46,0xd8,0x2f,0xc4,0x90,0x16,0xc8,0x07,0x82, +0xf9,0xad,0x16,0x2e,0x98,0x81,0x04,0x32,0x5c,0xf1,0x85,0x93, +0xdc,0xfb,0x06,0x2b,0xfe,0x04,0x73,0x08,0x1c,0x74,0xc6,0x83, +0x8c,0x10,0x30,0x07,0xbd,0xdb,0xc0,0x9b,0x11,0xd3,0x30,0x80, +0x60,0x9d,0xd0,0x07,0x75,0xac,0x78,0x71,0x27,0xa9,0x13,0xcc, +0x3c,0x59,0xd1,0x6c,0xd7,0xbf,0x1b,0xdb,0x49,0xa3,0x60,0x76, +0x88,0x15,0xbb,0x70,0x0d,0x79,0x9a,0xfa,0x43,0xe1,0x27,0x65, +0x81,0x8d,0xfc,0xbe,0xa3,0x5b,0x8e,0xed,0x88,0xe2,0xe4,0x36, +0xe7,0xc9,0xd6,0x92,0x4d,0x05,0x3b,0xd3,0x82,0x0e,0xf1,0x9f, +0x87,0x7f,0x19,0xf2,0x22,0x90,0x53,0xfe,0xf3,0x80,0xbc,0x95, +0x28,0x7e,0xa5,0xa4,0xec,0x90,0xb7,0x0d,0x29,0xda,0xe4,0xee, +0xf2,0x7a,0x46,0x71,0x0a,0x4f,0x13,0xd0,0xed,0x86,0xb5,0xed, +0x85,0x5f,0x71,0x09,0x4c,0xf1,0x66,0xd8,0x64,0x03,0x5a,0x4e, +0xd9,0x83,0x3c,0xea,0xb4,0xe0,0x82,0x6e,0xcf,0xbb,0x9c,0x29, +0xe3,0x4f,0xe5,0xce,0x1e,0x0f,0x38,0x72,0x60,0x63,0x49,0x04, +0xa6,0x4b,0x64,0x18,0x8a,0xb2,0x9a,0xa5,0x33,0x2f,0x49,0x68, +0xcc,0x0a,0xbf,0xcc,0xa1,0xad,0x6c,0xda,0xc2,0x5a,0x90,0x11, +0x58,0xb5,0x1e,0x57,0x31,0xf0,0xd5,0x4b,0x02,0x1b,0xd7,0xe3, +0x46,0x46,0x5c,0x83,0xc5,0x64,0xa8,0xa8,0xb5,0xb4,0xb6,0x26, +0x3e,0xfe,0xea,0xe5,0x84,0xf3,0x30,0x6f,0x13,0x5f,0x79,0x03, +0x67,0x3c,0x89,0x8e,0x3f,0x73,0x99,0x06,0xcd,0x31,0x31,0xe7, +0xae,0x2a,0x65,0x14,0x24,0x56,0x97,0xa9,0x9a,0x32,0x86,0xee, +0x2e,0xf8,0xb6,0x93,0x4c,0xf8,0xc0,0x85,0xb4,0x15,0xde,0x28, +0xab,0xac,0x4c,0x4c,0xbc,0x7e,0x21,0xfe,0x3c,0x2c,0xdc,0xc4, +0x57,0xb4,0xe3,0xac,0x47,0xa7,0x13,0xce,0x5c,0xa1,0xcf,0x4c, +0x56,0x62,0x4a,0xcb,0xbf,0x5e,0x53,0x4a,0x9f,0xd1,0x0b,0xf1, +0xc7,0x29,0xe6,0x32,0xe5,0x3f,0x37,0xcb,0x9d,0xa8,0x60,0xfe, +0xc3,0xe0,0x17,0xf1,0x19,0xbb,0xb0,0xc5,0x0b,0x66,0xc8,0x84, +0x4f,0xc7,0xc5,0xc7,0x8c,0xd6,0xf1,0xe2,0x21,0x75,0xe1,0x01, +0x65,0xcd,0x86,0xed,0x64,0x50,0x5e,0x3f,0xa4,0x68,0x90,0x3b, +0xca,0x0b,0x86,0x14,0x5f,0xfd,0x6b,0x2a,0x2b,0xdf,0x2b,0xe4, +0x10,0x88,0x10,0x35,0x31,0x82,0x1d,0xa1,0xd1,0x0b,0x8c,0xd1, +0xe0,0x60,0x8c,0x81,0xe9,0xd4,0xb7,0x41,0x26,0x36,0x61,0x26, +0x2b,0x9f,0x3f,0x87,0xb6,0x3a,0x68,0x0b,0xfb,0xc0,0x9b,0x80, +0x36,0x6e,0x44,0x6d,0x06,0x04,0xd8,0x48,0xc0,0x90,0xb6,0x0d, +0x19,0xe5,0xaf,0xe1,0x3b,0x02,0x1e,0x8f,0x7f,0x7a,0x55,0x02, +0xcb,0x39,0x88,0xa7,0x86,0x51,0xbb,0xf4,0xe4,0x6d,0x19,0xbc, +0xcb,0xb4,0xe4,0xa4,0xf4,0x49,0xe9,0xdd,0x4d,0xb3,0x94,0x70, +0xd5,0x52,0xf6,0x70,0xcc,0xf5,0x7a,0x75,0x38,0x8d,0x63,0xec, +0x95,0x54,0x29,0x1d,0xe2,0x73,0x83,0xdd,0x6c,0xc4,0x5f,0xa7, +0x92,0x6a,0x4c,0xa0,0x84,0x09,0xc2,0xe9,0xdb,0x75,0xd0,0x72, +0x3f,0x27,0x78,0x49,0xbf,0x1d,0xea,0xeb,0xa1,0xbe,0xb8,0xda, +0x44,0x58,0x8d,0x79,0xb7,0xa9,0x2a,0xed,0x1a,0x61,0x95,0xe5, +0xcf,0x04,0x37,0x22,0xbc,0xa3,0x2f,0xbe,0x83,0x51,0xf0,0xc6, +0x00,0xdf,0x60,0x28,0x7b,0x25,0xeb,0x72,0x56,0x96,0x2a,0xdc, +0xd6,0xa7,0xfd,0x9e,0xb8,0x7c,0xf2,0x52,0x98,0x0c,0xd5,0x0d, +0xe1,0x23,0x26,0x1a,0xf5,0xbc,0x90,0x5b,0x8b,0xb3,0x07,0x5c, +0xf9,0xd7,0x30,0xaf,0x19,0xd4,0x92,0xc1,0x86,0x83,0xe3,0xe2, +0xf6,0x71,0x61,0x3b,0x44,0x89,0x1e,0xb7,0x04,0x0f,0x60,0xc7, +0xa8,0x4d,0x78,0x28,0x0c,0x10,0xc8,0x35,0xc0,0x5c,0xbc,0x0c, +0x69,0x46,0x98,0x86,0x61,0x7f,0xfd,0x6b,0x86,0x09,0xcc,0x10, +0x6f,0x8f,0x7f,0x26,0xd4,0xee,0x18,0x17,0x6e,0xc3,0xf4,0x11, +0x56,0x8c,0x36,0x21,0xa2,0x06,0x86,0x09,0x1a,0x2c,0xb4,0x89, +0x1a,0x44,0xd0,0x80,0xcb,0xa2,0x06,0xab,0x2c,0xe4,0x0b,0x26, +0x04,0x74,0x04,0xd9,0xb0,0x28,0x83,0xf5,0xfa,0xb8,0x5e,0x9c, +0x69,0x2a,0xcc,0x44,0x1d,0x16,0xda,0x57,0x11,0xd8,0xae,0x8f, +0xdb,0xc5,0xf7,0x26,0xff,0x42,0x3b,0x63,0xb0,0x61,0x63,0x70, +0x91,0xf5,0x66,0xe4,0x37,0x37,0xd1,0x98,0xe8,0xe3,0x5f,0x07, +0x40,0x29,0x09,0x3e,0xa6,0x56,0x07,0xc5,0x5b,0x20,0x82,0xd5, +0x4d,0x46,0xea,0xef,0x2d,0x22,0x4c,0x13,0x0c,0xf4,0x44,0x65, +0x1c,0x85,0x37,0xa2,0xa5,0x91,0x30,0x1b,0x5b,0x10,0xc5,0x23, +0xb7,0x85,0x35,0x70,0x43,0x9c,0x25,0xb8,0xdf,0x14,0xa5,0x18, +0x36,0x0f,0xf6,0x92,0x5f,0x84,0xd5,0x3d,0x78,0xf9,0x25,0xf8, +0x77,0xa1,0xff,0x57,0x93,0x9f,0x5f,0xc0,0x85,0x1e,0x3c,0xc5, +0x66,0x97,0x67,0x94,0xa4,0x55,0x5b,0x24,0xf3,0xe1,0x1e,0xa7, +0xfc,0xa4,0x5c,0x76,0xfb,0x98,0xec,0x8a,0x8c,0xf2,0x94,0x72, +0xcb,0x74,0xde,0x6d,0x99,0xd6,0xf2,0x65,0xdb,0xea,0xa5,0x43, +0x05,0x65,0xa5,0xa5,0x95,0x1c,0x7e,0xf6,0xf3,0x32,0x71,0x83, +0x85,0xb0,0x01,0xcd,0xc6,0xc1,0x4c,0xd8,0x37,0xc0,0x2a,0xf6, +0x0a,0xd9,0xc4,0xad,0xc3,0xaa,0xc7,0xb2,0xc9,0x95,0x86,0x5c, +0x2e,0x37,0x5c,0xdb,0xad,0x29,0x9e,0xa8,0x22,0x5b,0xd0,0xfd, +0x21,0x9b,0x90,0xac,0x74,0x96,0xa2,0xef,0xaf,0xc0,0x7d,0x13, +0x2b,0xce,0xaf,0x21,0xae,0x9a,0x7a,0x1b,0x34,0x74,0xdb,0xdd, +0xf8,0x87,0x9f,0x8e,0x7d,0x71,0xe3,0x39,0x07,0xbf,0x5a,0x93, +0xf5,0xe8,0xfe,0x92,0x12,0xa7,0x40,0xfe,0x80,0xe8,0xa2,0x8a, +0xb8,0xc8,0xf0,0x4f,0x66,0x4c,0xdc,0xc8,0x5c,0xc7,0x76,0x72, +0x0e,0xb4,0x74,0x15,0x8b,0xee,0x0a,0x7a,0x4c,0x4a,0x5c,0x5c, +0x4a,0xac,0x0c,0x1e,0xa2,0x51,0xed,0x30,0x52,0xd8,0x7b,0x32, +0x25,0xe6,0x42,0x4c,0xa4,0x0a,0x45,0x93,0x3a,0x44,0x5e,0x25, +0x48,0x95,0x6d,0x63,0x58,0x69,0xb7,0x74,0x00,0xd3,0x91,0x9f, +0x7f,0x43,0x5d,0xf8,0xa7,0x18,0xa7,0x78,0x4d,0x65,0xe1,0x9f, +0xf2,0xc7,0x04,0xdd,0x9c,0x30,0x26,0x14,0x6b,0x2e,0x70,0x18, +0xc2,0x62,0x6b,0x30,0xae,0xdf,0x87,0xef,0xc8,0xfa,0x6c,0x95, +0x9e,0xc2,0xac,0x32,0x8a,0x16,0x3e,0x55,0x95,0x47,0x8c,0x28, +0x22,0xfe,0x60,0xe0,0xca,0x35,0xb8,0x5a,0x00,0x56,0x2d,0xdc, +0x0e,0xfc,0x9e,0x88,0x67,0xc4,0xf7,0x98,0x0d,0x55,0x81,0xdf, +0xc8,0x84,0xdd,0x4c,0x47,0x5e,0xce,0x0d,0x75,0x98,0xcd,0x1a, +0xe5,0x52,0x29,0x15,0xf7,0xb3,0xf6,0x31,0x59,0x2d,0xea,0x70, +0x4b,0x78,0x07,0xb7,0x50,0x07,0x96,0x66,0xa6,0x04,0x56,0x4c, +0x67,0x5e,0x56,0xab,0xba,0x54,0xbf,0xef,0x13,0x12,0x80,0x96, +0xd6,0x38,0x1f,0xdf,0xc1,0xd9,0xcd,0xb6,0xfc,0x8b,0xef,0xfb, +0x7e,0xab,0x81,0xa9,0x1c,0x68,0x33,0x91,0xc8,0x84,0x2e,0x71, +0x5d,0xe5,0xda,0xec,0x52,0xe7,0x54,0xe3,0xe1,0xc0,0x77,0x78, +0xb6,0x1f,0xea,0x70,0xb4,0x5a,0xba,0x6b,0x0d,0x72,0xeb,0x1a, +0x2c,0x79,0x88,0x07,0xe7,0x5f,0x20,0xb8,0x94,0x86,0x92,0xcd, +0x78,0x8c,0x4d,0x6e,0x4a,0x6c,0x89,0x6f,0xa5,0x00,0xe7,0x5f, +0x73,0xc9,0x2d,0x79,0x39,0x04,0x88,0x7d,0xb8,0x7c,0x72,0xff, +0x0f,0xa1,0x8e,0x54,0xaa,0x35,0x26,0xc7,0x5f,0x59,0xe5,0xcf, +0x84,0x36,0x02,0xb2,0x27,0x0f,0x3e,0xcd,0xfe,0x96,0x1a,0xa9, +0x8c,0x6d,0xa3,0x7a,0xa0,0xac,0x59,0xdd,0xc7,0xe3,0xcc,0x7b, +0x26,0x77,0x8f,0xdf,0xe3,0x0e,0x30,0x21,0xda,0x86,0x3b,0x71, +0x91,0x06,0x27,0xbc,0x56,0xec,0x20,0xf2,0x0e,0x70,0x12,0x27, +0x50,0xc6,0x4a,0x1d,0x4d,0x63,0xda,0x73,0xa4,0x1a,0x93,0x53, +0xf1,0x99,0xe2,0x77,0x56,0x4c,0x16,0xa8,0x56,0x2f,0xfc,0xea, +0xc9,0x83,0xec,0x9f,0x69,0x57,0x59,0x6b,0x3f,0xdd,0x03,0xef, +0x6b,0x54,0x52,0xc7,0xa7,0x7c,0x5f,0xf3,0xf9,0xb1,0x07,0xb4, +0xab,0xa0,0xbd,0x07,0x76,0xe2,0xd2,0xad,0xdc,0x6b,0xd1,0x80, +0xdc,0x1c,0x85,0x4a,0xf8,0x16,0xbf,0x63,0x6e,0x9a,0x13,0x08, +0xc0,0x50,0x0c,0xa0,0xd2,0xe6,0x04,0x3b,0x48,0xa6,0xb5,0x12, +0xac,0x66,0xbe,0x2e,0x2c,0xbe,0x93,0xa8,0x7e,0xad,0xf2,0x4a, +0xed,0x3d,0xd5,0x6e,0xbb,0x61,0xa7,0x3b,0x1e,0xb4,0xa7,0x85, +0x37,0x35,0x6f,0x59,0xde,0xe5,0xe0,0xe8,0x00,0x66,0x32,0x01, +0x4d,0xa1,0x4d,0xc7,0x9a,0x39,0xd8,0xd9,0xcb,0x54,0xfa,0x55, +0xfa,0x54,0x7b,0xb6,0x34,0xf3,0x5a,0x8f,0xf7,0xdf,0xda,0x37, +0xe8,0xe6,0xc9,0x37,0xfa,0xd4,0xf9,0xd4,0x53,0x37,0x55,0xcb, +0x64,0xb4,0xa7,0x74,0x24,0x75,0x9a,0xc6,0xf3,0xd1,0xf6,0x51, +0xb6,0x27,0xed,0x38,0x6a,0x3e,0xaa,0x2b,0x2b,0x6b,0x8b,0x6b, +0x1d,0x2b,0x78,0x6b,0x4d,0x2d,0x93,0x2d,0x36,0x75,0x4e,0x7c, +0x73,0x51,0x73,0x55,0x63,0x1d,0x67,0x0d,0x7b,0xd9,0x93,0x6e, +0xa1,0x07,0xfd,0x0f,0xd2,0x27,0x2d,0xe0,0x2c,0x63,0xac,0xb5, +0x5d,0x17,0x95,0x8c,0xab,0x2c,0xf9,0x4f,0x9a,0x46,0x5a,0xbb, +0xdb,0x38,0xbc,0xc8,0xa2,0x52,0x71,0x00,0xbc,0x2f,0x13,0xe6, +0x31,0xad,0xb9,0x99,0x14,0x8f,0x30,0xac,0x31,0x65,0xec,0x7c, +0x71,0x16,0xbb,0x3e,0x3a,0xe5,0x85,0x3a,0x58,0x0a,0xef,0xb0, +0x3e,0x97,0x82,0xce,0x07,0xcb,0xfc,0xcf,0x47,0x47,0xd8,0xaa, +0x69,0x09,0xbe,0x24,0xfb,0x60,0x81,0x5b,0xf1,0x41,0x29,0xd7, +0xa3,0x54,0x98,0x3b,0xb3,0x99,0x43,0x17,0xbc,0x41,0x1a,0xeb, +0xaa,0xeb,0xca,0x28,0x44,0x2a,0x67,0xca,0xdc,0x2b,0x3d,0x6a, +0xbd,0x38,0xc9,0xbf,0x15,0x11,0xe9,0x24,0x4f,0xda,0x31,0xb4, +0xdd,0x86,0x8b,0x64,0x83,0x56,0x4a,0xdf,0xc1,0xd6,0x42,0x08, +0x82,0x1c,0x55,0x98,0x2b,0x77,0x1f,0x65,0x95,0xff,0xd4,0x95, +0x87,0x91,0x21,0xc5,0x38,0xba,0xb0,0x58,0x1a,0x89,0xf6,0x5a, +0xa8,0x2e,0xeb,0xb3,0x57,0x7a,0x02,0x1b,0xb2,0xe8,0xd7,0x4a, +0x55,0x61,0x15,0x0b,0x67,0x35,0x49,0x95,0x7f,0x8b,0x63,0xbe, +0x57,0x73,0x0d,0x7f,0xb4,0xee,0x60,0xab,0x4f,0x29,0x27,0xcc, +0xbb,0x48,0x4c,0xf7,0x2e,0xdb,0xbd,0xd0,0xb5,0xd0,0x9c,0xff, +0xfd,0x06,0xbc,0xf3,0xc5,0x1d,0x0a,0x60,0x5e,0x52,0xd8,0x87, +0xdb,0x7a,0x19,0x98,0x62,0x82,0x6f,0xb1,0x16,0x38,0xd3,0x1c, +0x66,0x50,0xf3,0x71,0xd2,0x15,0x17,0x50,0xc4,0xfe,0xc1,0x0d, +0x5b,0x1e,0x3e,0x84,0x39,0xdd,0xb0,0x31,0x05,0x52,0x39,0xd8, +0xc1,0xd4,0xa2,0x2f,0x81,0xd9,0x5d,0x30,0xe3,0xf9,0xe7,0x3f, +0xba,0x37,0xf1,0xbb,0x36,0x23,0xb3,0x03,0x67,0x38,0x71,0xce, +0x78,0x9f,0x78,0x44,0xa6,0xd4,0xa8,0x0b,0xef,0x9a,0x88,0xd3, +0x58,0xed,0x9a,0xa0,0x7b,0x32,0xf8,0x2f,0xa6,0x29,0x3d,0xb3, +0x59,0x1d,0xe6,0xb0,0x16,0xd4,0x40,0xaf,0x60,0xf1,0xd6,0x1d, +0x02,0x2b,0x3b,0x60,0xde,0xe7,0xaf,0x7e,0xa0,0x0f,0xaf,0xdf, +0x80,0x1f,0xec,0xc2,0x85,0xd2,0x2e,0x38,0x4e,0x2a,0xb5,0xda, +0x75,0x0a,0xf7,0xe9,0xe2,0x3c,0x59,0xb7,0x15,0x9d,0xcc,0xfa, +0x2c,0x1a,0xa7,0x0d,0xaa,0xc2,0x6a,0x79,0x6a,0xbf,0xe2,0x53, +0x56,0xf8,0x5c,0xd1,0x46,0x32,0x2c,0x94,0xa8,0xdd,0x6d,0xcb, +0xce,0xa5,0x32,0xb7,0xce,0x44,0x41,0xb1,0xea,0x17,0xf2,0x65, +0x44,0x4c,0x83,0x71,0x21,0x8d,0x7d,0x1d,0x4a,0xc4,0xd4,0x11, +0x21,0x95,0x45,0x6f,0x9c,0x4b,0xd0,0x86,0x02,0x17,0x06,0xaf, +0xbd,0xfb,0x77,0xc3,0x06,0x57,0x12,0xb0,0xa1,0x4a,0x65,0xc3, +0xc0,0x42,0x64,0x48,0xb5,0x4f,0x9f,0x71,0xa5,0x5d,0x5b,0x3d, +0xef,0xdd,0x69,0x3d,0xec,0x55,0xcd,0x61,0x15,0x9a,0x92,0x91, +0x96,0x81,0xd1,0xca,0x4e,0xa7,0x2a,0xde,0xd7,0xc1,0xda,0xc2, +0xdc,0x9d,0x3a,0x76,0x6d,0xf9,0x19,0xd2,0xa7,0x18,0x45,0x77, +0x16,0x4b,0xc2,0xd1,0x7a,0x3f,0x1d,0x5d,0x8f,0x95,0xd2,0x33, +0x58,0x97,0x05,0xfe,0x50,0xab,0x0a,0x6b,0x59,0x79,0x8e,0x82, +0xc6,0x3f,0x4c,0xea,0x92,0x9c,0x8d,0xc5,0x4f,0x6b,0x47,0xdb, +0xda,0x7a,0xb8,0x3a,0x91,0x63,0xb3,0x32,0x33,0xb3,0xd3,0xb3, +0x39,0xf8,0x11,0x9e,0x62,0x27,0x93,0x94,0x9d,0x98,0x95,0x90, +0xc3,0xc1,0x17,0x5d,0x0a,0x6d,0x3b,0x68,0x67,0x62,0x4f,0x9c, +0x09,0x3b,0x73,0x92,0x43,0x1f,0x7c,0x0a,0x5b,0x19,0x13,0xbd, +0x8d,0xb6,0x0b,0xbc,0x8b,0x1d,0xf9,0xae,0xac,0x8e,0x82,0xb6, +0x92,0x06,0xef,0x4e,0xdf,0xc1,0xa3,0x2b,0xfd,0x70,0x6a,0x28, +0x7e,0x18,0x93,0x6e,0xc7,0xc3,0xba,0x74,0x50,0x2d,0x81,0x77, +0x1a,0xff,0x41,0xdd,0x6e,0x20,0x7c,0x74,0x8a,0x22,0x22,0x61, +0x84,0xc2,0xcc,0x0e,0xc1,0x9a,0x11,0xa9,0xad,0x20,0x5d,0x82, +0xb5,0x1d,0xeb,0xf6,0xae,0x8d,0x68,0xdd,0xc3,0x8e,0xa3,0x3d, +0xb9,0x22,0xfd,0xa7,0x0e,0xdf,0x31,0x9e,0x5e,0xa6,0xde,0x7b, +0xfd,0x74,0x4a,0xcc,0x2a,0x5d,0x1a,0x28,0x99,0xa7,0x50,0x9c, +0x82,0xc9,0x2c,0x56,0x44,0xe2,0xfa,0x03,0x38,0x57,0xd6,0x6d, +0xa7,0xf4,0x10,0x96,0x65,0x82,0x01,0x34,0xa8,0x82,0x83,0xbc, +0x70,0x88,0x15,0xe7,0x8a,0x6f,0x11,0x2b,0x0c,0xda,0xc6,0x5c, +0x2b,0xbd,0x52,0x5e,0xad,0x0a,0x66,0xb0,0xb9,0x6f,0x29,0x9b, +0xd3,0x94,0xd3,0x9d,0xd1,0x6d,0x99,0xca,0x47,0x59,0x1d,0xb3, +0x0e,0x76,0xe0,0x30,0xd0,0x0a,0xb6,0xa3,0x11,0xe3,0x75,0xf1, +0xc8,0x85,0x00,0xd9,0x1e,0x08,0xb2,0xc2,0x22,0x0a,0xbb,0x8f, +0xad,0x75,0xb2,0xdb,0x63,0x53,0x67,0xcf,0x7f,0x7b,0xa7,0xfb, +0x56,0x1e,0x4c,0xe1,0x60,0x31,0x83,0x8e,0xc2,0x76,0x12,0xd9, +0x70,0xb2,0xe5,0x78,0x9d,0xed,0x09,0x3e,0xf7,0x70,0xb6,0x63, +0xca,0x61,0x4e,0xf0,0xa3,0x31,0x8e,0x12,0x13,0xa3,0x1f,0xbc, +0xcf,0xcf,0xb4,0x33,0x88,0xaf,0xba,0x5b,0xf4,0x65,0xca,0x33, +0xae,0x01,0x13,0xd8,0xa4,0xa6,0xf8,0xa6,0xeb,0x0d,0x76,0x49, +0x7c,0x24,0x4e,0xf3,0x45,0x15,0x9b,0x75,0x2d,0xee,0x7c,0xc5, +0x48,0xc1,0x44,0xf6,0x7d,0xae,0x95,0x46,0x74,0xb8,0xc0,0x0c, +0x39,0x2a,0x9c,0x33,0x64,0x0d,0x8e,0x30,0x1d,0xa6,0x8c,0xfc, +0x18,0xf7,0x87,0x4a,0x3c,0x13,0xb7,0x68,0x70,0x05,0xbc,0x8b, +0xef,0x56,0xf6,0xf0,0x38,0x0b,0xa6,0x9b,0x03,0x8d,0x1b,0x55, +0x95,0xff,0xd4,0x97,0x47,0x91,0x01,0xc5,0x1d,0xe9,0x58,0x5a, +0x49,0x04,0x3a,0x6a,0x53,0xfe,0xf5,0xda,0x51,0xe9,0xda,0x98, +0x06,0x47,0xa1,0x52,0x52,0x15,0x61,0x0b,0xce,0x23,0x26,0x2f, +0x2c,0xb7,0xe1,0x46,0xfa,0x61,0x61,0x3b,0x20,0x72,0x9a,0x36, +0xc2,0xb2,0x1e,0x13,0x81,0x1b,0x61,0x7e,0xa0,0xd1,0x0f,0xcc, +0x63,0x5f,0x26,0xfe,0x90,0x7b,0xab,0x38,0xb0,0x8f,0xd7,0x0a, +0x58,0x12,0x82,0x6f,0xc7,0x52,0x3d,0x66,0x31,0xe0,0x14,0xaa, +0xe8,0x2d,0x94,0x75,0xb8,0xdc,0x06,0xb6,0x00,0xd4,0xae,0xc1, +0x21,0x15,0xe0,0x44,0xe7,0x21,0xc1,0xf9,0xdb,0x21,0x46,0xf1, +0x7e,0x05,0xf9,0x06,0x36,0x6e,0x90,0x0e,0xad,0xca,0xfe,0xdd, +0xb2,0xa7,0xa8,0x6d,0x15,0x45,0x6d,0x38,0x15,0xf3,0xc9,0xe8, +0x8d,0xbe,0xdb,0xf5,0xa3,0x8e,0xe5,0xfc,0x11,0x0b,0x2b,0x43, +0xb3,0x43,0x1c,0x14,0xc0,0x07,0xa4,0xfa,0x70,0xb9,0x57,0xf1, +0xa1,0xd6,0x5a,0xde,0xbf,0x29,0xa0,0xca,0xbb,0x8a,0x72,0xec, +0x3d,0x89,0x63,0x87,0x58,0x2c,0x8f,0x44,0x27,0x5d,0x94,0xc9, +0x7a,0x6d,0x94,0x1e,0xc1,0xc6,0x54,0x3a,0x7a,0x2a,0x7d,0xeb, +0xe4,0x69,0x03,0x2c,0xce,0x51,0xcc,0x23,0x03,0xff,0xac,0x90, +0x92,0x7f,0x7f,0xc8,0xb5,0xf4,0xe0,0x09,0x26,0xa3,0x29,0xad, +0x33,0xa1,0xdd,0x26,0x99,0x3f,0x85,0x6f,0x1f,0xc4,0xa9,0x46, +0x6b,0xb8,0x71,0x5c,0x0b,0x29,0x96,0x98,0x82,0xeb,0xc4,0xdc, +0x01,0x21,0x00,0x12,0xc4,0xb5,0x3b,0xd9,0x34,0x3b,0xa5,0x7b, +0x4c,0x43,0x46,0x56,0x83,0xba,0xf0,0x3e,0x5b,0xe1,0x98,0x5b, +0x96,0x5d,0x9e,0x55,0xab,0x92,0xb2,0xba,0x78,0x63,0xd3,0x76, +0x37,0x1d,0x4b,0x63,0x5d,0xeb,0x1a,0x3b,0x7e,0xbc,0xb7,0x77, +0xb8,0xe5,0x76,0xbd,0x41,0xa7,0xe9,0xb0,0x45,0x55,0x2f,0x6f, +0xdc,0x6f,0x3f,0xec,0x79,0x8b,0x43,0x77,0xf8,0x89,0x1c,0x1f, +0xf6,0x7c,0xec,0xdf,0xee,0x14,0xcc,0x97,0x39,0xd6,0xed,0xca, +0x32,0xe5,0xb0,0x00,0x0e,0x92,0x30,0xe3,0xc3,0xda,0x87,0x1d, +0xda,0x7c,0xf8,0xba,0x81,0xaa,0x7b,0x79,0x77,0x39,0x21,0x0d, +0x37,0x90,0x58,0x7c,0x2b,0x64,0xf5,0xa1,0xad,0xee,0x5f,0x1e, +0xfb,0x21,0xf6,0x0d,0x27,0x7e,0x84,0x46,0x04,0xfb,0xba,0x46, +0x28,0xaa,0x8f,0x65,0xa9,0x4e,0xda,0x52,0x60,0x3b,0x22,0x15, +0xb2,0xff,0x73,0x5f,0x14,0xd1,0x81,0x4d,0xab,0x61,0xdf,0x16, +0xe0,0x2d,0x8f,0xf0,0x3d,0x3b,0x86,0x16,0xf7,0x2e,0xc0,0x35, +0x47,0xd1,0xfd,0x18,0xba,0x46,0xfe,0x0a,0x76,0x40,0xc3,0x94, +0xdb,0x70,0xec,0x40,0x16,0x6f,0x88,0xc7,0x71,0x3a,0x0e,0xa0, +0x12,0x1e,0xf2,0xbb,0xe8,0x77,0xd1,0xff,0x52,0x82,0x01,0x0f, +0x97,0x52,0xa1,0xbb,0x10,0x7c,0xea,0xb2,0x3d,0x33,0x3d,0x33, +0x24,0x7b,0xaa,0x22,0x5f,0x41,0xc0,0x37,0x1e,0x02,0x12,0xc0, +0x24,0x3b,0x2f,0x2c,0x37,0x2c,0xe7,0x64,0x73,0x05,0x6f,0xd2, +0xaf,0x39,0xa8,0x79,0xc3,0xe3,0x08,0x5f,0x7e,0xac,0xfc,0x78, +0x59,0x28,0x2a,0x9d,0x41,0xe5,0x73,0xf8,0xc1,0x85,0xea,0x8a, +0x9a,0xfa,0xf2,0x7a,0xcb,0x5c,0xfe,0xc8,0x21,0x27,0x47,0x07, +0x37,0xd7,0x4b,0xae,0x97,0x5d,0x2f,0x71,0x82,0x16,0x5e,0x23, +0xbf,0xc6,0xc1,0x5b,0x09,0xdf,0x66,0xa6,0x87,0xa5,0x9d,0x4c, +0x3d,0xd9,0x56,0xcc,0x7b,0xf4,0x39,0xf5,0xdb,0x75,0xb8,0x05, +0xf3,0xb9,0xc7,0x72,0x8e,0xe5,0x84,0x1a,0x9d,0x39,0x70,0x5e, +0xf7,0x42,0x49,0x6d,0xe9,0x8d,0xa2,0x1b,0x36,0xd9,0x7c,0xb0, +0xb3,0xaf,0xcd,0x21,0x5b,0x2e,0x2c,0xec,0x52,0x98,0xda,0xd5, +0x70,0x25,0x1b,0xe6,0xe2,0x85,0x8b,0x17,0x2f,0x5c,0x08,0x68, +0xf6,0x6a,0xf5,0xa9,0x75,0x0b,0xe1,0xb3,0x4e,0x64,0x1d,0xcb, +0x0c,0xb5,0x3c,0x63,0x72,0xce,0xe4,0x42,0x69,0x55,0x79,0x4b, +0x71,0xb3,0x75,0x36,0x7f,0xd4,0xe5,0xb0,0x9d,0xbb,0x93,0xee, +0x05,0x3e,0xde,0x06,0xde,0x8d,0x07,0xe5,0xa4,0x7f,0x66,0xab, +0xc4,0x9f,0x4e,0x88,0x4e,0x88,0xd6,0xb1,0x42,0xc6,0x15,0x1d, +0x3c,0xb3,0xcd,0x79,0x88,0xeb,0x05,0xbe,0xbf,0xe7,0x27,0xea, +0x61,0x7b,0x57,0xc0,0x7c,0x2b,0x48,0xb5,0xca,0x1e,0xe0,0xd1, +0xb3,0x11,0x67,0xdd,0xd0,0x1a,0xe4,0x22,0xd6,0x92,0x75,0x46, +0x38,0xed,0x20,0x2e,0x3b,0x9a,0x63,0xc3,0xc3,0xa2,0x12,0x78, +0xbf,0x11,0xde,0xfa,0x94,0x13,0x3f,0xc6,0x0a,0x4a,0x88,0x4a, +0x30,0xbd,0x09,0x4b,0x7f,0x77,0xaf,0xe7,0x51,0x65,0x2d,0xee, +0x35,0xc5,0xa3,0xbe,0xdc,0x59,0xb4,0x22,0xd0,0x54,0x0e,0xe7, +0x9e,0x82,0x05,0xa8,0xba,0x34,0xf3,0xa8,0x49,0x83,0x44,0xaf, +0xfd,0x38,0xe2,0x4d,0x09,0x98,0x2f,0xf7,0x23,0xb9,0x01,0x39, +0xfe,0x59,0x47,0x7a,0xf3,0xf8,0x88,0xc2,0xf0,0xfc,0x53,0xf9, +0xd4,0xe5,0x76,0x62,0x13,0x93,0x9c,0x99,0x94,0x95,0x90,0x45, +0x43,0xc2,0x23,0x46,0xf6,0xe6,0x3a,0x0e,0xcd,0xee,0x7c,0x5d, +0x49,0x75,0x45,0x69,0x15,0x27,0x28,0xed,0x20,0x85,0x45,0x79, +0x25,0xd9,0x65,0xdc,0x6b,0x26,0x87,0x3e,0x9b,0x7d,0xa4,0x9b, +0x3e,0x5b,0x14,0x91,0x7f,0x2a,0x8f,0x03,0xd3,0x4e,0xbc,0xcf, +0x24,0x66,0x25,0x66,0xc5,0x67,0x59,0xa7,0xf1,0x21,0xe6,0xde, +0xe6,0x0e,0x0e,0x9c,0x60,0x27,0x55,0xad,0x13,0xab,0xd8,0xf4, +0x9c,0xd4,0x9c,0xe4,0x3c,0x4e,0x98,0x09,0x13,0x8a,0x95,0x38, +0x01,0x41,0xcc,0xe9,0x63,0x91,0xc7,0xc3,0xa9,0xad,0x1c,0xb4, +0x87,0x78,0xc6,0xcc,0x79,0x9b,0x37,0x7e,0x78,0x24,0xdf,0x9e, +0x87,0x15,0x75,0xbf,0xf6,0x4e,0x4c,0x70,0x70,0x99,0xb9,0xa7, +0xf7,0x9b,0x1d,0xac,0xf6,0xce,0xed,0xe0,0x91,0x94,0x6c,0xaf, +0xb6,0x68,0xe2,0x26,0x84,0xd9,0xc4,0x51,0xac,0x6b,0x67,0x85, +0xba,0x8d,0xc4,0x4e,0xac,0xeb,0xa2,0x8d,0x75,0xc4,0x46,0xac, +0xeb,0x61,0x61,0x3d,0x5e,0x26,0x66,0xda,0xdb,0x74,0x3f,0xb6, +0x6e,0x70,0xe3,0xbf,0xea,0xfe,0xe6,0xd1,0x18,0x8d,0x31,0x4d, +0x2c,0x48,0x69,0x68,0x59,0x60,0x59,0xc0,0xfe,0xd3,0x9b,0x62, +0xd6,0x9d,0x6b,0xec,0x6e,0xbc,0x53,0xd2,0x6f,0x9f,0xce,0x07, +0x9a,0x38,0xee,0xb7,0x33,0xe5,0x2e,0xf9,0x07,0x5c,0xf2,0x57, +0x8b,0xb7,0x87,0x55,0x71,0xb0,0x3e,0x03,0x3e,0xc8,0x53,0xc9, +0x0c,0xcb,0x38,0x95,0x76,0xaa,0xa9,0x8a,0xb7,0x1b,0xd4,0x1f, +0x33,0x6f,0x91,0x34,0x15,0xee,0x13,0x61,0x76,0xbb,0xb4,0x95, +0x76,0x6e,0x1b,0xce,0x7d,0x0c,0x7c,0x0a,0x53,0xe6,0x9b,0x9e, +0x9d,0x9a,0x9d,0x9c,0xa5,0x82,0xf5,0x82,0x7a,0x3b,0x6e,0x79, +0x01,0xb2,0x16,0x94,0x3d,0x9d,0xfc,0x7c,0x02,0x6b,0x6e,0xe0, +0x52,0x36,0xb3,0x24,0xb5,0x34,0xa9,0x50,0x4a,0x3a,0xea,0x1b, +0xee,0x1b,0xe6,0xcf,0x21,0xcb,0xa4,0x14,0xa4,0x94,0xa4,0x94, +0xdb,0xa4,0xf1,0x81,0x9b,0xbd,0xb4,0xac,0xb5,0xb9,0x54,0xe4, +0x1f,0xc1,0xb2,0x76,0x54,0xa7,0x5f,0x4e,0x2b,0x4d,0x2c,0xb4, +0xa1,0x5f,0x3e,0x12,0xe1,0x1b,0x16,0xc0,0xe1,0x3b,0xd2,0x97, +0x8b,0x93,0xcb,0x6d,0xd3,0x78,0xbf,0xf5,0xee,0x9a,0xa6,0x1a, +0x14,0x6f,0x67,0xe4,0xa4,0xe5,0x24,0x67,0x71,0x7d,0x69,0xe4, +0x11,0xcc,0xdc,0xcb,0xc2,0xe0,0x45,0xf2,0x04,0x66,0xef,0x96, +0xe2,0xd9,0xe9,0xe4,0x31,0xcc,0xdc,0x33,0x79,0xe9,0x29,0xcc, +0xde,0x25,0x5d,0x9a,0x4d,0x5e,0xc0,0xcc,0x6d,0xf4,0xd2,0x9c, +0x17,0x30,0x9b,0xfe,0x1d,0x20,0x7e,0x48,0x50,0x2d,0x0d,0xdf, +0xca,0x59,0x53,0xf4,0xa6,0xfd,0xd9,0x50,0xcf,0x18,0xd7,0xad, +0x38,0x6a,0x2d,0x9f,0xc7,0x5a,0x5b,0xef,0x76,0x58,0xe0,0xb1, +0xba,0x6a,0x4f,0xcb,0xde,0x5e,0x47,0x2f,0xfe,0x96,0xc3,0x9d, +0x43,0x8f,0x7c,0x96,0x06,0xa0,0xf2,0x09,0x5c,0x1c,0x93,0x6d, +0xc6,0xc3,0xee,0x14,0x58,0x5a,0x06,0xd3,0x9b,0xe0,0x2d,0x4f, +0x20,0x47,0x61,0xe7,0x49,0xea,0x40,0x4d,0xc3,0x09,0x2e,0xce, +0xc4,0x69,0xd9,0x0b,0x4b,0x61,0x5a,0xf7,0xb7,0xb7,0xba,0x1f, +0x71,0xed,0xf8,0xec,0x57,0x41,0x49,0x50,0xc3,0x01,0x6b,0x38, +0x8b,0x53,0xf0,0xa4,0x0d,0x9c,0xc4,0x19,0x38,0x2c,0xcc,0x33, +0x16,0xe7,0x61,0x33,0xcc,0x00,0xbf,0x1e,0xf4,0xfb,0x91,0x7d, +0x90,0xfc,0x47,0xd1,0x50,0xa1,0x77,0x27,0x6f,0x74,0x14,0xa7, +0x07,0x6e,0x89,0xe6,0x44,0x25,0x78,0xb3,0x44,0x54,0xb6,0x90, +0x6f,0x67,0x8d,0xf4,0x37,0xd8,0xa2,0xd2,0xa1,0xd5,0x55,0x5b, +0x5a,0xb6,0x8e,0xd8,0x1d,0xe6,0x6f,0xdb,0x3c,0x72,0x7b,0xe1, +0xbd,0xc0,0x1f,0x95,0x8f,0xe3,0x47,0x91,0x39,0xa6,0x3c,0x6c, +0x4e,0x87,0x15,0xe5,0xf0,0x41,0x0b,0x7c,0xe4,0x0c,0xab,0x8e, +0xc2,0xea,0x53,0x94,0x45,0x1b,0xe4,0x6d,0x04,0xab,0xe4,0xfb, +0xa0,0x8a,0x35,0x41,0x8e,0x88,0xe3,0xb7,0x85,0x71,0xa9,0xc4, +0x05,0x43,0x84,0xf1,0x03,0xe2,0x38,0x83,0x4b,0x17,0x12,0x34, +0x97,0xff,0x0c,0xe6,0xac,0xf8,0xd2,0x91,0xac,0x42,0xb7,0x1f, +0x58,0xc1,0x73,0x15,0x41,0x97,0x1f,0xc0,0x85,0x19,0x5e,0x45, +0x7e,0x00,0xef,0x55,0xec,0x67,0xf8,0x23,0xc1,0x45,0x89,0xc8, +0xa6,0xaf,0xc8,0xfd,0xa3,0xf1,0x45,0x57,0xf7,0x20,0xd7,0xae, +0x30,0xb7,0x11,0xfe,0x64,0xcd,0x1d,0xb7,0x1f,0xc2,0xb7,0x7d, +0x37,0x14,0x69,0x56,0x6b,0xb7,0xb8,0xfa,0xf0,0x83,0x9e,0x43, +0x7e,0xb7,0x8e,0xae,0x3c,0x8e,0x6c,0x38,0xaa,0x9e,0xcd,0xa6, +0x10,0x7d,0x63,0x12,0x2c,0x2a,0x80,0xe9,0xd5,0xc0,0xfa,0x80, +0xfa,0x31,0x30,0x88,0xa2,0xa3,0x72,0xa2,0xf8,0xf0,0x5a,0x62, +0xdc,0xe5,0xf8,0x33,0x3f,0xe2,0x5c,0xbe,0xad,0x7a,0x15,0xcc, +0x89,0x4e,0x8f,0xba,0x1c,0x15,0xa3,0x72,0x5a,0x2a,0x99,0x9c, +0xd9,0x9d,0x38,0x0c,0xef,0xaa,0x82,0x92,0x15,0x4e,0x67,0x51, +0x3f,0x70,0x35,0xbe,0xb3,0x40,0x56,0xeb,0x72,0x7b,0xbc,0x76, +0x24,0x77,0x40,0x45,0xf8,0x3a,0x86,0xc4,0x49,0x09,0x65,0xcf, +0x00,0x87,0xdb,0xf8,0xb6,0x2a,0x54,0x82,0xad,0xd1,0x19,0xd1, +0x57,0x23,0x63,0x54,0x22,0xa5,0xe0,0x3f,0xa7,0x2f,0xfe,0x26, +0x70,0x93,0x8f,0x2b,0xb3,0x78,0x20,0x78,0x0d,0xb2,0x8b,0x64, +0xd5,0x4e,0xe3,0x43,0x8d,0xc3,0xb9,0x3d,0x2a,0xe2,0x56,0x50, +0x10,0x57,0x88,0x68,0x61,0x71,0xd0,0x98,0x44,0xed,0x0a,0xb7, +0x0a,0x34,0x6f,0x0e,0xe4,0xcb,0x47,0xb3,0xee,0xa7,0x3e,0xe4, +0x84,0xc1,0x24,0x12,0xb1,0x2b,0xd4,0x38,0xd0,0xaa,0x33,0x84, +0x2f,0x1b,0xcd,0xbf,0x9f,0xf6,0x90,0xc3,0xea,0xeb,0xe4,0xc2, +0xee,0x53,0x07,0x42,0xcc,0xda,0x82,0xf8,0x92,0x7b,0x99,0x4f, +0xae,0x3d,0xe2,0x14,0x73,0xe2,0xc8,0xf9,0xdd,0x11,0x7a,0xc1, +0x66,0x1d,0x41,0x7c,0xf1,0xbd,0x74,0xe9,0x1a,0x04,0x9f,0x20, +0xce,0x50,0xd0,0xc6,0xe2,0xb5,0x0d,0xf4,0x0d,0x27,0xe8,0x1b, +0xe6,0xbc,0xdb,0x82,0x27,0x5c,0xa5,0x3d,0xe4,0x5e,0x04,0xb6, +0x60,0x34,0x6e,0x61,0xc1,0x04,0xa6,0x91,0xbd,0xf8,0xd1,0x23, +0x56,0xd8,0x8e,0x1a,0x44,0x11,0x61,0x23,0x5f,0xce,0x98,0x9a, +0x6e,0x73,0xc4,0xb7,0xbc,0x56,0x57,0x6c,0x6f,0xda,0xd1,0xe7, +0xe4,0xc9,0xdf,0x72,0xba,0xef,0xf1,0xd8,0x77,0xd1,0x51,0x54, +0x0e,0xc3,0xf9,0xa7,0xa5,0x3a,0x89,0x3b,0xd3,0x60,0x79,0x31, +0xcc,0x6c,0x84,0x99,0xee,0x30,0x3f,0x18,0xb6,0x9e,0xca,0xa2, +0x26,0x70,0x41,0x1a,0x32,0x59,0xcb,0x8b,0xe0,0x9d,0xb6,0xcf, +0x07,0xfb,0xee,0x72,0xca,0x82,0x97,0xbc,0x80,0x98,0x40,0x8a, +0xc2,0x15,0x9d,0x59,0x69,0x8b,0xf8,0x1e,0xe6,0x66,0x4e,0xee, +0x88,0xba,0xdc,0x04,0xd6,0x8f,0xb0,0x8a,0x56,0x45,0x3c,0x79, +0x03,0x99,0xf2,0x79,0xf8,0x54,0x11,0xcb,0x42,0xa6,0x94,0x97, +0xda,0x51,0x28,0x05,0x47,0x1a,0x86,0x68,0xcb,0x03,0x08,0xac, +0xb3,0x65,0xf0,0xb1,0x11,0x9a,0xa2,0x13,0x1a,0xcb,0xda,0x6d, +0x94,0x28,0xe2,0x73,0x1d,0x87,0x80,0xc9,0xc3,0x98,0x1e,0x6b, +0x59,0xdc,0x1b,0x85,0xd6,0xc7,0x71,0x95,0x6c,0x4d,0x94,0x6f, +0xe8,0x1e,0xb5,0xe5,0xd2,0x61,0xcc,0xd7,0x0c,0xbc,0xd3,0xda, +0x0c,0x73,0xb3,0xd4,0x73,0x61,0x6d,0x2a,0xd8,0x82,0x86,0x2a, +0xac,0x14,0xcf,0xb2,0x56,0x8a,0xf5,0x84,0xbe,0xa8,0x47,0x11, +0x3b,0xfa,0x86,0x15,0xbe,0x7e,0x17,0xb4,0xc4,0x72,0xd4,0x62, +0xa4,0x21,0x96,0x12,0x33,0xe8,0x60,0x45,0xe3,0x52,0x5c,0x03, +0x6f,0xa1,0xab,0xac,0xb7,0x5d,0x69,0x31,0xd8,0x07,0x83,0x4c, +0x08,0x50,0x15,0x4d,0x14,0x2a,0x44,0xce,0x61,0x9f,0xe2,0xa8, +0xf4,0xdc,0xdd,0x77,0x41,0x5b,0x4c,0x96,0x56,0x47,0xa2,0xb0, +0x98,0x80,0x1a,0x68,0xf5,0x82,0x76,0x9c,0x30,0xdd,0xe8,0x2a, +0x7f,0x01,0xe5,0x0e,0xb8,0x15,0xe7,0xe0,0x76,0x4e,0x59,0x6e, +0x23,0x61,0x86,0x6b,0xa6,0x60,0x88,0xab,0x19,0x4c,0x33,0x46, +0x15,0x8a,0x33,0x03,0x64,0x6d,0x56,0xa0,0x0b,0xa6,0xf7,0x61, +0x6e,0x32,0xe8,0xab,0x24,0x30,0x29,0xa8,0x7f,0x1f,0x79,0xd0, +0x40,0xe3,0xa6,0x21,0x1e,0x5d,0xc0,0xc7,0x10,0x54,0x20,0x4d, +0x55,0x31,0x05,0x74,0x88,0xc2,0x6b,0xf4,0x0d,0x84,0x0b,0xff, +0x62,0x31,0x9c,0xc6,0x66,0x7b,0xc5,0x2b,0xb8,0x97,0x51,0x96, +0x7b,0x0b,0xd4,0x4f,0x57,0xc1,0xe1,0x11,0x31,0xdc,0x04,0x0e, +0x53,0xc0,0x7c,0xda,0x08,0x4e,0x8b,0x04,0x77,0x4f,0x12,0x77, +0x11,0xd3,0x9f,0x9d,0xdb,0xab,0x2e,0x4c,0x83,0x93,0xa3,0xac, +0xa2,0x57,0xdc,0x4d,0x89,0x1b,0x29,0x9f,0x8d,0x9d,0x8a,0x53, +0x2c,0x44,0xc1,0x56,0x82,0x9a,0x42,0x2e,0x68,0xd2,0x7e,0x8e, +0xc0,0x2d,0x02,0xd7,0xe0,0xc8,0x10,0x1e,0x01,0x1f,0x23,0x3a, +0x36,0xc2,0xa6,0xf6,0x24,0xf5,0x24,0xf4,0x98,0x26,0x52,0xc0, +0x32,0xdb,0x17,0x95,0x69,0x28,0xd2,0xe3,0xc3,0x97,0xf5,0x14, +0x0c,0x66,0x0f,0x71,0xb0,0x04,0xaf,0x61,0xb2,0x29,0x24,0xe3, +0xb3,0x51,0x78,0x06,0x67,0x86,0x19,0xc5,0x3d,0xec,0xa0,0xbd, +0xfb,0x53,0x8a,0x56,0x48,0xac,0xf3,0x87,0x2d,0x04,0x37,0x08, +0x95,0xb0,0x81,0xf6,0x7e,0x4f,0x08,0x26,0x90,0x01,0xef,0x0e, +0x8a,0xa5,0xe6,0x20,0xc7,0x0c,0x2c,0x60,0x33,0xfb,0xf3,0xbe, +0x4d,0xea,0xe3,0x0c,0x99,0x28,0xdd,0xa3,0x4b,0x02,0x37,0x71, +0x30,0xc1,0xb8,0x21,0x8b,0x1f,0xe3,0x3c,0x74,0x5e,0x5c,0x4e, +0x5d,0xaa,0x2b,0x4c,0x01,0x4d,0x58,0x90,0x0d,0x84,0x4b,0xa0, +0x26,0xc8,0x65,0xf2,0x60,0xa7,0x3e,0xd3,0x2e,0xc5,0xed,0xc2, +0x26,0xf8,0x60,0x80,0x55,0xfc,0x17,0xb4,0x12,0x45,0xec,0xc8, +0x1b,0x70,0xa7,0x96,0x10,0xdd,0x2d,0x08,0xac,0x10,0x2b,0x71, +0x05,0x65,0x61,0x86,0x10,0x47,0xfe,0x0f,0x5d,0x6f,0x01,0x9e, +0xc5,0xf1,0xae,0x0f,0x43,0x49,0x76,0x17,0x28,0xde,0x09,0x9b, +0x00,0x49,0xb0,0xe2,0xc1,0x09,0x09,0x12,0x34,0x58,0xdc,0xdd, +0xdd,0x43,0x12,0x20,0x48,0x12,0x08,0x04,0x29,0x16,0x77,0x77, +0x77,0x77,0xc7,0xa5,0xd0,0x42,0x81,0x42,0x0b,0x14,0x6d,0x69, +0x69,0x29,0xcf,0xbe,0x7d,0xf6,0xed,0xf7,0xcd,0xc2,0xef,0x9c, +0xff,0xff,0x7c,0xd7,0x77,0xae,0x5c,0x57,0x32,0xaf,0x64,0x77, +0xe6,0xd1,0xfb,0x9e,0x9d,0x79,0x06,0x76,0xb3,0xb0,0x21,0x1d, +0x66,0x94,0x7c,0x68,0xf4,0xed,0xe2,0x67,0xb9,0xa2,0x72,0x00, +0x3a,0xd2,0x9c,0x75,0x91,0xc5,0x8b,0xbe,0xa8,0xbe,0x1a,0xa7, +0xa8,0x76,0xda,0xbd,0x80,0x69,0x55,0xa0,0x71,0x01,0xa2,0x95, +0xc1,0x5d,0xcc,0xb9,0x22,0xe4,0x80,0xf6,0x00,0x23,0xbe,0x12, +0x47,0x4a,0x2a,0xae,0x90,0x07,0x5f,0xfa,0xac,0xe2,0x95,0x62, +0x12,0xc5,0x88,0xe3,0x65,0xeb,0x64,0x5b,0x09,0x2c,0xde,0x83, +0x8b,0x31,0xc4,0x48,0x68,0x1a,0x62,0xe5,0xef,0x5e,0x7d,0xee, +0x81,0xbb,0xd4,0x03,0x77,0xda,0x83,0x85,0xb4,0x07,0x0b,0x19, +0xd9,0x09,0xb4,0x20,0xe6,0x4c,0xc0,0xb1,0xf8,0x12,0x35,0x21, +0x02,0xaf,0x23,0xcb,0xa2,0x63,0x10,0xf2,0xc8,0xcf,0x52,0x6d, +0xb4,0x56,0x84,0xb9,0x30,0xa6,0x12,0x96,0x81,0x8f,0xca,0x10, +0x18,0x89,0x3b,0x59,0xdd,0xa2,0xd0,0x1b,0xaa,0x7d,0x94,0xb8, +0xa7,0xb7,0xa9,0x81,0xc3,0xa7,0x2a,0x54,0xff,0x4c,0x3b,0x41, +0x16,0x31,0x7e,0x11,0x49,0xd5,0x6a,0xb2,0x62,0x43,0x79,0x31, +0xbb,0xbe,0x24,0xf0,0x7b,0xd5,0x27,0xff,0x29,0x00,0x72,0x94, +0x35,0xce,0x53,0xc4,0x18,0x69,0xf7,0xcf,0x11,0x97,0x23,0x0e, +0x11,0x1c,0x8c,0x67,0x3b,0x86,0x9b,0x1f,0xe6,0x5c,0xe5,0x5a, +0xb1,0xdd,0x14,0xc2,0xd9,0x50,0x63,0x0f,0x7d,0x3b,0x33,0x0e, +0x97,0xb3,0x76,0x91,0xd6,0x47,0xad,0x8f,0x25,0xef,0xe6,0x5b, +0x13,0x5b,0x13,0x9b,0x92,0x38,0xfc,0x83,0xf6,0x86,0x0a,0xf3, +0x39,0xd3,0x9b,0x9e,0xde,0xab,0x06,0x1f,0xd9,0xf6,0xd4,0xe6, +0xb4,0xba,0x34,0x4e,0xac,0x16,0x67,0x90,0xbf,0x61,0x9b,0x4c, +0x03,0x23,0xe4,0x29,0x2c,0x6c,0x97,0x54,0x38,0x56,0xe8,0x86, +0xb1,0x54,0xa2,0xd3,0x05,0x47,0x02,0x1b,0x13,0x60,0x4d,0x0a, +0xcc,0xc8,0x4c,0x0d,0x4a,0x0d,0x4a,0x09,0xec,0x2e,0xe3,0xad, +0xfe,0x36,0x7c,0x67,0xf2,0x93,0x8d,0x1f,0x5f,0x6e,0x57,0x6e, +0x59,0x66,0xb6,0x34,0x52,0xfd,0x28,0x8e,0x3a,0xd1,0xf1,0xbc, +0xe1,0x5d,0xf9,0x47,0xc3,0x0c,0xde,0x0f,0x47,0x3a,0xe2,0x48, +0xe3,0x05,0x3b,0x4f,0xf1,0xde,0xa2,0xba,0xe4,0x6d,0x79,0x92, +0xb4,0x58,0xe1,0xb9,0x02,0x2c,0xa2,0x82,0x5a,0xc4,0xc8,0x62, +0x51,0x8b,0x6c,0x62,0xbc,0x23,0x13,0xaa,0xd4,0xe0,0xbd,0x01, +0xca,0xd8,0x1d,0xa5,0x41,0x37,0x54,0x1f,0x33,0x4d,0x69,0xd9, +0x4d,0x6a,0xb0,0x89,0x35,0xcd,0x51,0x14,0xa7,0x00,0x4d,0x01, +0x7b,0xf4,0xe7,0xa3,0xd6,0x46,0xd5,0x0a,0x73,0x45,0xd8,0xfa, +0xf4,0x01,0x8c,0x07,0x27,0x95,0x56,0x43,0x76,0xbc,0x6c,0xe7, +0x27,0xc7,0x32,0x03,0x33,0xea,0x52,0xe1,0x72,0xdd,0x61,0xd9, +0x38,0xd8,0xc0,0x9c,0x94,0x4e,0x65,0x63,0x69,0x1e,0x1b,0x53, +0x6d,0xc8,0xff,0x0e,0x63,0x1b,0x5e,0xc4,0xc2,0x64,0x8a,0xce, +0x2e,0xe2,0xd8,0x86,0xd5,0xbf,0xe1,0x94,0x2a,0xea,0x5e,0x5f, +0xc0,0x64,0x37,0x18,0x71,0x12,0xc6,0x70,0xd4,0x9b,0xba,0x71, +0x93,0xb4,0x2c,0x0c,0xe6,0x31,0xad,0x39,0x39,0xad,0xd2,0xd9, +0xcf,0x87,0x68,0x22,0x16,0xdf,0x50,0x93,0xb6,0xa1,0xdd,0x4e, +0x94,0x4c,0xda,0x16,0x56,0x13,0x54,0x17,0x2a,0x40,0x9d,0xca, +0xe3,0x01,0xbd,0xad,0x11,0x6c,0x61,0x73,0x91,0xed,0xc1,0xf1, +0x8f,0x67,0xb5,0x77,0xf2,0x2b,0x40,0xc1,0xe9,0x43,0x18,0xa8, +0x70,0x72,0x3f,0x1f,0x6a,0x15,0x43,0x1f,0xc0,0x91,0x5a,0x05, +0xe8,0x46,0x90,0x40,0x1c,0x6d,0x8e,0x0a,0xeb,0xd7,0xb4,0xdb, +0xf2,0x4f,0x5e,0x0d,0xc0,0xb8,0x52,0xda,0x19,0x71,0xcf,0x3e, +0x02,0x73,0xa9,0x10,0xe6,0x32,0xc2,0x46,0x70,0x25,0x47,0xd1, +0xc0,0x00,0xc7,0xe0,0xca,0x59,0x95,0x52,0xa9,0x2f,0x60,0x6f, +0xc2,0x9c,0x24,0x70,0xe6,0x40,0x8f,0x39,0x83,0x73,0x8e,0xce, +0x3c,0xa2,0xc7,0x99,0x44,0x1e,0x38,0x62,0x3a,0x0d,0xc7,0x32, +0x19,0x46,0xd2,0xe2,0xd5,0x7b,0xf5,0x85,0xf7,0x33,0xd5,0xb2, +0x1e,0x27,0x02,0x73,0x16,0xec,0x38,0x71,0x8d,0x09,0xed,0xd6, +0xb0,0x10,0x4a,0x5e,0x0f,0xde,0xba,0xd1,0xf9,0x03,0x07,0x1b, +0x06,0x44,0xed,0x97,0xfa,0x4b,0xc5,0x85,0x26,0xb0,0x90,0xe9, +0xd6,0xbe,0xb3,0xf3,0x37,0xd3,0xb9,0x8e,0x48,0xbc,0x70,0x65, +0x60,0xa6,0x1e,0x0f,0xbb,0xca,0x61,0x6e,0x0b,0xb0,0x83,0xc0, +0x99,0xc3,0x7c,0x67,0x30,0xf4,0xce,0xa4,0x42,0x59,0x5b,0x82, +0x7c,0xd5,0xcc,0x66,0x8e,0x06,0x32,0x47,0x62,0xbf,0x6b,0x97, +0xc9,0x32,0x5b,0x8d,0x36,0xdd,0x01,0x9b,0x1b,0x9c,0x99,0xfc, +0x34,0xe9,0x12,0xea,0xac,0xae,0x0a,0x13,0xe5,0xcb,0xc5,0x89, +0xac,0xf0,0x1e,0xee,0x11,0xf4,0x15,0xeb,0xc0,0x97,0x72,0x84, +0x99,0xc2,0x32,0x22,0x8c,0x13,0xb7,0xe3,0x5d,0x16,0x5d,0xfd, +0xa8,0x7f,0x10,0x9c,0xa1,0xda,0x62,0x0f,0x93,0x40,0xbd,0x15, +0x56,0x9f,0x07,0x3d,0x65,0x58,0xc2,0x64,0xa1,0xde,0x6d,0xdc, +0x08,0x33,0x71,0x6a,0x2d,0x65,0x84,0xe3,0xe1,0x8b,0x1d,0x30, +0xef,0x10,0x6c,0xe3,0xc4,0x0f,0xd8,0x44,0x20,0x8a,0xca,0xb9, +0x8b,0x06,0x63,0x86,0xc6,0x4a,0x07,0x82,0xa9,0x78,0x1d,0x52, +0x29,0xa3,0x13,0xdb,0x09,0x6e,0x15,0x4a,0x61,0xab,0x14,0x47, +0x64,0x21,0x64,0x43,0x95,0x7a,0x25,0x2a,0xe4,0x1c,0x34,0xe3, +0x3f,0xee,0xff,0xe8,0xf3,0xc0,0x8b,0x4a,0xfb,0x19,0x91,0x1f, +0x1a,0xfc,0x00,0xbb,0x65,0x93,0x69,0x2e,0x36,0x23,0x30,0x49, +0xcc,0xc7,0x49,0x8c,0x4c,0x05,0xc6,0x91,0x6b,0x57,0x2f,0x3d, +0x6d,0x7b,0x6c,0x5b,0xc6,0x3b,0xae,0xb3,0xda,0x6a,0x62,0xcc, +0xb9,0x3c,0x0f,0xff,0xe5,0x17,0x15,0xc9,0x5e,0x4c,0xc4,0xfb, +0x38,0x86,0x49,0x33,0x55,0xfc,0x8b,0x69,0x90,0xb6,0x46,0x0a, +0x5b,0xe2,0xd8,0x14,0xfc,0xb2,0x07,0x27,0xd2,0x34,0xb8,0xb4, +0xa6,0x9d,0xd7,0xbe,0x67,0x78,0xcf,0xf1,0x3e,0x27,0xae,0x85, +0xc5,0xc4,0x1c,0x96,0xb3,0xc1,0x38,0x7b,0xf7,0x1c,0x9c,0xa8, +0x55,0x6e,0xc7,0x83,0xd2,0x73,0x0a,0xd0,0x4a,0x60,0x33,0xd7, +0xcc,0x8e,0x17,0x46,0xcb,0xca,0x89,0xa1,0x60,0x2a,0xf7,0x47, +0x23,0x36,0xdd,0x40,0xda,0x6c,0xdf,0x9e,0x93,0xd3,0xae,0x26, +0x73,0xbf,0x43,0x33,0xda,0x80,0x3c,0x8d,0xda,0x90,0x25,0x1d, +0x5b,0xac,0x64,0x43,0x96,0x92,0x0d,0xcd,0xa0,0x36,0x34,0x83, +0x81,0xa5,0xf8,0x15,0x11,0xf7,0x0f,0x3d,0x03,0x7f,0x41,0x8d, +0x45,0x7f,0x7c,0x41,0xa0,0x12,0x56,0x60,0x25,0x35,0xea,0xc9, +0xc2,0x2c,0x32,0x7b,0x55,0x61,0xfb,0x0e,0xb5,0xdb,0x37,0xda, +0x7f,0x28,0x78,0x41,0x59,0x76,0x24,0x9b,0x9a,0x9f,0x94,0x9f, +0x58,0x60,0x9a,0xc9,0x3b,0xcd,0x59,0xa7,0x31,0x67,0x5b,0xb5, +0x1d,0xdf,0x58,0x5a,0x5b,0x56,0x5e,0x51,0x68,0x54,0x6e,0x55, +0xef,0xbc,0xc7,0x56,0xcb,0x65,0x8e,0x5b,0x3e,0x35,0x9e,0x11, +0x75,0xbf,0xb4,0xdf,0xe9,0xe7,0x8c,0xef,0xbf,0xf7,0x01,0xe5, +0x69,0x30,0xc4,0xa4,0x0f,0x2a,0x8a,0x7a,0xfd,0xe4,0x79,0x5f, +0x7f,0x57,0x59,0x7b,0x6c,0xfc,0xc5,0xb3,0x71,0x27,0xc0,0x18, +0x97,0xf3,0xf5,0x1d,0xa8,0x0b,0xf3,0x0e,0xa7,0x44,0x9f,0xf9, +0xb4,0xd8,0xef,0xe4,0x79,0xc5,0xcc,0xaa,0x84,0x86,0x6b,0x2a, +0x3d,0x7a,0xfa,0x2c,0x72,0x06,0xbb,0x51,0x59,0x4b,0x15,0x13, +0x69,0x0e,0x8e,0x8b,0x8f,0x4d,0x88,0x8d,0xe7,0xc0,0x89,0xd9, +0xbb,0xc5,0xd5,0xc0,0xd8,0xdc,0xb1,0xc9,0xa7,0x3f,0xf4,0x2a, +0x17,0x29,0x8f,0x24,0xed,0x42,0xbf,0xed,0x55,0x78,0x2f,0xdf, +0x8a,0xef,0x59,0xd9,0x28,0x1a,0x90,0x51,0x5f,0xec,0x07,0x7d, +0x6a,0x12,0x86,0xe6,0xc4,0xfb,0x83,0x1d,0x4c,0xb6,0x7f,0x61, +0x19,0xcc,0x17,0x5a,0x14,0xee,0xc9,0xdf,0xbd,0xe8,0xc8,0xdc, +0x88,0xd9,0x47,0xff,0x80,0x2f,0xa9,0xfb,0x9a,0xbd,0x00,0x5d, +0xb3,0x32,0xde,0x61,0xb1,0xc1,0xcc,0xdd,0x0b,0xbc,0xdb,0x3c, +0x5b,0x3d,0x9b,0x86,0x7f,0xea,0xfa,0xa5,0xf6,0x31,0x07,0x19, +0x03,0x98,0x04,0xaa,0x52,0xf1,0xfe,0x48,0x13,0x08,0x61,0x7c, +0xb6,0x38,0x6d,0xb2,0xd7,0x3b,0x90,0x13,0x9e,0x73,0x20,0xcb, +0xd9,0x99,0xff,0x76,0xf3,0xdd,0xd5,0xd7,0x35,0xec,0x76,0xd8, +0xe9,0x3b,0xda,0x38,0x9f,0x74,0x3a,0xe5,0x74,0x2a,0xce,0x90, +0x87,0xdd,0xe9,0x52,0xbd,0x27,0xcd,0xc2,0xc4,0x80,0x84,0xc0, +0x84,0x20,0x4e,0x3e,0x2c,0x7b,0x4a,0xe4,0xc1,0x34,0x32,0x7b, +0xc9,0x38,0x16,0xbd,0x68,0x64,0x5e,0x22,0x26,0xe3,0x12,0x66, +0xfc,0x3f,0xe6,0x6e,0xc4,0x04,0xd6,0x79,0x81,0x2b,0x1c,0x52, +0x01,0x1b,0x36,0x2f,0x36,0xf7,0x62,0x4e,0xac,0x77,0x0f,0x8f, +0xe3,0x3c,0xd1,0x3a,0x10,0x77,0x45,0x73,0x78,0x80,0xc5,0xb0, +0x40,0x69,0xae,0x6f,0xae,0x6a,0xb7,0xbd,0xe2,0x0b,0x58,0x57, +0x0c,0x1e,0x70,0x5c,0x05,0x36,0xb0,0x6d,0xe7,0xdb,0x2f,0xb4, +0x5f,0xe4,0xe4,0x7b,0x58,0xfd,0x28,0xbd,0xa3,0x36,0x31,0x89, +0x86,0xfc,0xab,0x14,0x58,0x54,0xf4,0xac,0x38,0x2e,0x20,0x36, +0xe0,0xe2,0xde,0xae,0x4c,0xfe,0xd0,0x83,0x40,0x18,0xb9,0xff, +0x9a,0xd5,0x11,0x3e,0xc9,0x3b,0xc9,0x39,0xc9,0x31,0xf0,0x98, +0xcf,0x71,0xaf,0x68,0x4e,0xb6,0x83,0xed,0x8c,0xed,0x48,0x68, +0x4d,0xe0,0x50,0x9b,0xc5,0xe2,0x1a,0xf4,0xbc,0x8c,0xba,0xaa, +0xe2,0x0f,0x10,0x24,0xa5,0x9a,0x6f,0xe4,0xc1,0x83,0x34,0x2e, +0xde,0x56,0x80,0xa9,0x62,0x2a,0x4e,0xa5,0x9e,0xbc,0x18,0x16, +0x91,0x4b,0x0f,0x40,0x13,0x07,0x86,0x61,0x00,0x74,0xd6,0x0f, +0xcb,0xd4,0xc5,0x64,0x86,0x06,0xd0,0x22,0x6a,0x4f,0x14,0xfa, +0xe3,0x45,0x6a,0x4f,0x42,0x87,0x50,0x4a,0x50,0x93,0x52,0x70, +0x4d,0x66,0x18,0xad,0x09,0x6d,0xe8,0xa0,0x35,0x2b,0xfe,0x2c, +0x72,0x04,0xa7,0x53,0x33,0x9b,0xce,0xc0,0x3f,0x18,0x44,0xd0, +0x8d,0x7e,0xc9,0x8d,0x85,0x10,0x25,0xfa,0xb9,0x9b,0x84,0x1c, +0x84,0x1a,0xc1,0x93,0x98,0x45,0x9a,0x1e,0x35,0x3a,0xc6,0xc1, +0x2e,0x58,0x3d,0x80,0xab,0x61,0x99,0x81,0x38,0x8f,0x75,0x8f, +0x71,0x8b,0x71,0x39,0xc9,0xc1,0x43,0x03,0xfc,0x99,0x0d,0x3c, +0x15,0x78,0x2a,0xe0,0x74,0xb2,0x01,0x0f,0x7a,0x19,0xa0,0x95, +0x0f,0xea,0x15,0x1c,0x3c,0x8d,0xa7,0x0e,0xc9,0x38,0x45,0xc5, +0xd7,0xab,0xc1,0x44,0xf6,0x55,0xce,0xef,0x75,0xdf,0xd6,0xf8, +0x76,0xf3,0x3b,0xdd,0xb5,0xfd,0x35,0xc3,0x38,0xd8,0xa1,0x2f, +0x7e,0xc1,0x6e,0xca,0x0b,0x7a,0xac,0x0a,0xdb,0xa8,0x23,0x64, +0xb7,0xab,0xbd,0x63,0x0d,0x33,0x14,0xe5,0x73,0xe5,0x23,0xa8, +0xb1,0x74,0x53,0x63,0x01,0xf9,0x26,0x04,0x56,0x36,0x02,0xba, +0x08,0x9a,0x89,0xdd,0x60,0x46,0x7d,0xc8,0x48,0x48,0x25,0x50, +0x87,0xbf,0x63,0x1d,0x2b,0x6b,0x55,0xa2,0xad,0xff,0x87,0xb6, +0xc4,0x49,0x70,0x88,0xc0,0x3e,0xdc,0x86,0xfb,0x18,0x41,0x1f, +0xb6,0x11,0x88,0xa1,0xed,0x18,0x46,0xcc,0x94,0xcf,0x20,0xb0, +0xe5,0xe7,0xc7,0xbf,0x81,0xb5,0xca,0x55,0xb8,0x86,0xf7,0xd8, +0x75,0x65,0xa1,0xf7,0x54,0x69,0xa2,0xea,0xce,0xcc,0x6b,0x51, +0xa3,0x7a,0xd2,0xcf,0x57,0x44,0x47,0x1c,0xc5,0xda,0x46,0x27, +0x51,0xd7,0x1e,0x2d,0x1a,0xe1,0x48,0x16,0xb5,0x1c,0x57,0xa1, +0xfe,0x1a,0xd5,0xf1,0x32,0x43,0xd9,0xf7,0xc4,0x10,0xe7,0xd2, +0xe0,0x72,0x69,0xf0,0x26,0xac,0xc6,0xec,0x61,0xc8,0x06,0xad, +0x1d,0xc3,0xc2,0x25,0x0c,0x63,0xc4,0x4b,0xf2,0x55,0x54,0xc4, +0xf6,0x54,0xc4,0x29,0x92,0xcb,0x3a,0x48,0x2e,0x3b,0x9b,0xca, +0x72,0x36,0x03,0x72,0x8c,0x21,0xb8,0x06,0xe8,0x0f,0x15,0xf7, +0x1a,0xa9,0xa0,0x97,0x16,0x05,0xcc,0xe2,0x54,0xa9,0xb6,0x17, +0x6e,0xc4,0x35,0x0c,0xec,0x85,0x8d,0x84,0xbe,0xb9,0x11,0xb5, +0xa8,0xa9,0x31,0x34,0x49,0x88,0xbb,0xe5,0x05,0x38,0xca,0x44, +0x36,0x72,0x60,0x2b,0x23,0x6f,0x92,0x45,0x7f,0xce,0x0c,0x4e, +0x34,0x33,0x08,0x81,0x18,0x40,0xf0,0x0a,0x58,0xc0,0x15,0x46, +0xbe,0xce,0x97,0xc0,0xd7,0x34,0x1b,0x7c,0xcd,0x08,0x8a,0xf0, +0xa5,0xa4,0xc8,0x2b,0x54,0x91,0xa6,0x0a,0x18,0x4a,0xbf,0x11, +0x4a,0x43,0xc2,0xb8,0x9f,0x88,0x57,0x83,0x77,0xad,0x4f,0x55, +0x2b,0x8c,0x2e,0x80,0xe9,0x34,0x13,0x73,0x8d,0xa8,0xce,0x26, +0xdd,0x48,0xb8,0x1a,0x37,0x68,0x74,0x81,0x3f,0x61,0x72,0x6c, +0x67,0x94,0x2e,0xb7,0xc0,0xf8,0x19,0x13,0x3e,0x3b,0x64,0x56, +0xe0,0x9a,0x16,0xf7,0x26,0xb7,0x46,0x67,0xcf,0x75,0x36,0x5b, +0x76,0xed,0xaa,0xb5,0xe1,0xaf,0xdf,0xec,0xfa,0xae,0xee,0xc7, +0x52,0xdf,0x12,0xef,0x52,0x0f,0x4e,0x18,0xbd,0x8b,0xe8,0xdd, +0xb1,0xfb,0xce,0xf3,0xc1,0x2d,0x98,0x5b,0x0b,0x9b,0x92,0x21, +0x84,0xeb,0xc0,0xe7,0xa6,0x50,0xc6,0x46,0xa1,0x61,0x20,0x7e, +0x6d,0x89,0x93,0x1d,0x60,0x72,0x28,0xa8,0x1f,0x01,0x2d,0xa3, +0x08,0x3e,0x15,0x0d,0xcb,0x70,0xf5,0x25,0x9c,0xed,0xa8,0x69, +0xb2,0x79,0xeb,0xd6,0x3a,0x7b,0xfe,0xfa,0xb5,0xde,0x5b,0xcd, +0xf7,0x6b,0x37,0xd1,0xe4,0xb0,0x93,0x93,0xb7,0xbd,0xa3,0xc0, +0x61,0xb5,0x6c,0x36,0x06,0xc8,0xcf,0xb1,0xa0,0x49,0x25,0x36, +0x53,0x68,0xfa,0x9b,0xa1,0x89,0x75,0x1e,0xc9,0x7b,0x92,0xf3, +0x3a,0xfd,0x0d,0xf7,0x86,0x39,0x86,0x64,0x3f,0x8e,0x71,0x53, +0x0f,0x28,0x09,0x28,0x0a,0x28,0x90,0x2a,0xc4,0x0d,0x11,0x34, +0x10,0x26,0xc2,0x41,0x78,0x68,0x88,0x79,0x34,0x33,0xbc,0xd4, +0xc3,0x97,0xb8,0x02,0xf2,0x8c,0xf0,0x21,0xf8,0x8b,0x13,0x71, +0x0b,0x54,0x1b,0x8a,0xab,0x2f,0x7d,0x2f,0x68,0x6f,0xba,0x2c, +0xac,0xd6,0x67,0xe4,0x5e,0xf8,0x03,0x55,0xcd,0x76,0xaa,0x9a, +0x48,0x49,0x35,0x3b,0x24,0xd5,0x8c,0x13,0x2a,0x61,0x1c,0x35, +0xe8,0x0c,0xd9,0x23,0xe2,0x84,0x9b,0x4d,0x51,0x65,0x0d,0x2a, +0x94,0x19,0xf1,0xa5,0xb5,0x45,0x4d,0x79,0xad,0x9c,0x38,0x3c, +0x2c,0x5b,0xcb,0x16,0x5e,0xcf,0xfb,0x2e,0xe7,0x11,0x47,0x0d, +0xcb,0x88,0x80,0xad,0x21,0xda,0x62,0x8c,0x11,0xc4,0x88,0xb7, +0xa9,0xf6,0xa4,0x0a,0x75,0xd3,0xa5,0xa2,0x0b,0x5d,0x6a,0xc2, +0xe5,0xd7,0x14,0xd3,0x0d,0x8b,0xff,0xd2,0x9b,0x98,0xd2,0x9b, +0x9c,0x93,0x6e,0x62,0x2a,0xdd,0x44,0x99,0xea,0x5f,0x99,0x11, +0x02,0xc5,0xf3,0xc4,0xef,0xa5,0xd3,0x5b,0x87,0x7b,0xd6,0x81, +0x7c,0xb3,0x4e,0xdd,0xf2,0xf2,0x45,0x94,0x4f,0x33,0x17,0x09, +0x76,0x33,0x46,0x91,0x29,0x57,0xd4,0x28,0xbd,0xb8,0x00,0xf5, +0x58,0xcc,0xe6,0x56,0x67,0xd7,0xa4,0xd7,0x49,0xb0,0x16,0x37, +0x9d,0x5e,0x10,0xad,0xa9,0xba,0xeb,0xc4,0x91,0x30,0xab,0x69, +0x1b,0x99,0x54,0x33,0xc5,0xdb,0xcc,0x0f,0xd5,0x35,0xbf,0x26, +0xa8,0x25,0xbc,0x3d,0xff,0x1e,0x42,0x54,0x10,0x98,0xa4,0xd2, +0x84,0xf2,0xf8,0x72,0x93,0x0c,0xde,0x17,0x27,0x59,0xa0,0xc2, +0xda,0xc5,0xad,0xf6,0x7c,0x4a,0x5a,0x72,0x7a,0x72,0x06,0x47, +0xe1,0xe1,0x9c,0xfc,0xc0,0xbf,0x54,0xa1,0x51,0xda,0x1b,0x46, +0xf1,0xe1,0x68,0xd6,0x98,0xba,0xd3,0x41,0xe4,0x69,0x27,0xfd, +0x69,0x27,0x4b,0xff,0x3f,0x70,0x5b,0x58,0x82,0xce,0x04,0x75, +0xd1,0x12,0x74,0xa9,0xd9,0xec,0x16,0xa2,0xa5,0xc5,0x38,0x61, +0xfd,0x18,0x06,0xd3,0xf5,0x28,0xba,0xf6,0x32,0xa5,0x3c,0x61, +0x31,0xc6,0x98,0x08,0x3d,0x03,0xac,0xbc,0x4d,0xf4,0xa2,0x97, +0xb1,0xa5,0x97,0x49,0x92,0x2e,0x63,0x27,0x8d,0x75,0x26,0x1d, +0xeb,0x4c,0x46,0x58,0x21,0x16,0xd1,0xa4,0x3c,0x80,0x51,0xa0, +0xa6,0x87,0x6a,0x9f,0x4a,0x58,0xe0,0x6e,0xcc,0x36,0x16,0x9e, +0x0e,0x62,0x0a,0x33,0x1e,0x14,0x64,0x4d,0xd2,0xa9,0xb2,0x2f, +0xa9,0x75,0x3e,0x94,0x4e,0x95,0x15,0xa4,0x53,0x65,0x9d,0xa4, +0xf5,0x64,0x5f,0x42,0x08,0xa5,0xc5,0x60,0xa1,0x44,0x5b,0xc7, +0x69,0xab,0x04,0x4d,0x49,0x8f,0xdc,0xc1,0x82,0x95,0x35,0x2f, +0x25,0xff,0x4e,0x34,0x03,0x5d,0x26,0xd2,0xf6,0x80,0x79,0x88, +0x0d,0x27,0x3c,0x63,0x4e,0x79,0xc7,0x78,0x44,0x79,0x71,0x3e, +0x51,0xe1,0x47,0x4d,0xa6,0xa1,0x17,0x23,0x9d,0x8e,0xe5,0xcc, +0x3c,0xaf,0xcc,0x1d,0xce,0x50,0x4b,0x6d,0x8f,0xff,0xee,0x5c, +0x2f,0x27,0x5e,0x67,0x92,0xcb,0x13,0xcb,0xe3,0x2b,0x38,0x99, +0x2a,0xf5,0x2a,0x2e,0x81,0xd8,0x17,0xbb,0xf6,0xf9,0x3f,0xba, +0xf5,0x57,0x3b,0x4c,0x29,0x85,0xc5,0xc6,0x99,0xfc,0x5e,0x54, +0xf2,0xc4,0x11,0x96,0x2b,0x02,0x3f,0x1c,0x84,0x69,0xa7,0x40, +0x8b,0x83,0xd8,0x41,0x8c,0x85,0x89,0x86,0x38,0x51,0xcc,0xc4, +0x03,0x0c,0x26,0x1e,0xc6,0xaf,0xf4,0x91,0x95,0x9e,0x12,0xde, +0x92,0x16,0xd0,0x2f,0x84,0x6c,0x15,0xd0,0x11,0x1c,0xd8,0xf3, +0x68,0x9c,0x87,0x2b,0xeb,0xf0,0x4b,0xbd,0x35,0x9a,0xbb,0x71, +0x84,0x75,0x95,0x09,0xff,0xae,0xfd,0xd1,0x95,0x6b,0x0f,0x2b, +0x36,0xd7,0x9b,0xb7,0xf9,0xd7,0xfa,0x35,0xa5,0xc4,0x75,0x17, +0x82,0x11,0x6f,0x59,0xa0,0x78,0x56,0xe8,0x23,0x2e,0x85,0xbb, +0x8a,0xad,0x53,0x02,0x9d,0xf9,0x9e,0x23,0xc3,0x41,0x8d,0xc1, +0x9c,0x7c,0x0c,0x6e,0x26,0xa6,0xf0,0x5d,0x3f,0x8b,0xc3,0xb8, +0x98,0xe0,0x3f,0xc3,0xf7,0x28,0xb5,0xaa,0x62,0x31,0x12,0x0f, +0x48,0x95,0x9a,0xb7,0x7e,0xaa,0xd4,0xac,0x22,0xd0,0xe8,0xb5, +0x3c,0x16,0x36,0x27,0x80,0x72,0x46,0x46,0x50,0x7a,0x50,0xea, +0xde,0xae,0x32,0xde,0xfe,0xc7,0xed,0xef,0x6d,0xae,0xda,0x06, +0xf0,0x05,0x3e,0x25,0xce,0x25,0x8e,0x9a,0xd1,0x5f,0x47,0xcf, +0x3b,0x59,0x77,0xad,0xed,0x75,0xe5,0x03,0x0e,0x6a,0x06,0xc4, +0x4e,0x13,0xb0,0x67,0x7c,0x74,0xac,0x16,0x38,0xed,0xe4,0xce, +0x04,0xef,0x3d,0xb3,0x77,0x1a,0x0e,0x42,0xe3,0xe7,0x08,0x62, +0x27,0x31,0x0e,0x3b,0x9a,0xd7,0x66,0x89,0x15,0x38,0x8b,0x11, +0x5a,0xe2,0xff,0xa3,0xad,0x05,0x7a,0xb8,0xe0,0xb3,0xb6,0x76, +0x62,0x9b,0x89,0x4c,0x61,0x00,0xb3,0x29,0x74,0xda,0x2e,0x95, +0x97,0x9a,0xa5,0x8f,0xb3,0x24,0xcd,0xf7,0x53,0xcd,0x7f,0xb8, +0xfb,0xf9,0x3a,0x0e,0xd2,0x75,0x1c,0xe8,0x75,0xe6,0xd0,0xeb, +0xcc,0x61,0x04,0x0d,0x61,0x0f,0x71,0x5b,0xbd,0x5b,0x5b,0xd3, +0xa0,0xda,0x9a,0x7f,0x76,0xeb,0xd6,0xe3,0x96,0x77,0x1c,0x4c, +0x3e,0x4a,0x6e,0x6e,0xbd,0xba,0xb6,0x67,0x79,0x7b,0x0d,0x6f, +0xfe,0x7c,0xf7,0xcf,0xba,0xb7,0xb8,0xad,0xd4,0x72,0xfa,0xaf, +0x37,0x3f,0xa8,0x78,0x65,0x5a,0xc0,0x07,0x68,0xba,0x6f,0xb5, +0x36,0xb0,0xbf,0xe4,0xfe,0x6d,0xc0,0x13,0xb3,0x60,0xbe,0x62, +0x69,0xd3,0x86,0xae,0xdd,0x3a,0x3a,0x0b,0x4d,0x71,0x82,0x53, +0x31,0x25,0x73,0x93,0x5b,0xff,0x18,0x7e,0xf4,0xe0,0xee,0xfa, +0x5f,0x8c,0x60,0x84,0x5d,0xd9,0x00,0x3f,0xab,0x79,0x55,0xbf, +0xee,0x77,0x34,0x04,0xb4,0x49,0xbc,0x33,0x09,0xa6,0x0c,0xe2, +0x14,0x70,0x35,0x44,0x57,0xd4,0xfb,0xfc,0x67,0xa2,0x31,0x4c, +0xc4,0x24,0x54,0x33,0x14,0x7e,0xa6,0x20,0xaa,0xf7,0x13,0xb7, +0x94,0x40,0x54,0x9c,0x64,0xa5,0xd6,0x92,0x95,0xaa,0x52,0x2b, +0x55,0x65,0xa0,0x16,0xe7,0x48,0x6b,0x12,0x92,0x50,0x8f,0x41, +0x03,0x71,0x12,0x79,0x76,0xe3,0xbb,0xe7,0x1d,0x4f,0xac,0x2a, +0x79,0x6b,0xcd,0x9d,0x3a,0x9a,0xbb,0x38,0x61,0x12,0xe8,0x93, +0x5b,0xbb,0x7e,0x58,0xd1,0xbd,0xa9,0xbd,0x81,0xb7,0xfc,0x6e, +0xe3,0xf3,0x6d,0xd7,0xe9,0x7d,0x47,0xd2,0x0c,0xe0,0xf1,0xf5, +0xfa,0x85,0x38,0x63,0x61,0x15,0x85,0x4c,0xd3,0xde,0x3f,0x79, +0x56,0x0a,0x63,0xb9,0x58,0xa6,0x18,0x99,0xdf,0x57,0x80,0xaa, +0x7a,0x65,0x3f,0x8f,0xca,0x7f,0x2c,0x7e,0xe1,0xf2,0x27,0x27, +0xb6,0xca,0x07,0xe9,0xed,0x3d,0x3e,0xd3,0x17,0x16,0x3c,0x25, +0x5f,0x5b,0x44,0x7d,0x6d,0x11,0x03,0x8e,0xd2,0xe9,0x3d,0x8f, +0x07,0xf1,0x31,0x73,0x56,0x7c,0x45,0x86,0xe1,0x27,0xc3,0x4b, +0xd4,0x71,0x6c,0xc4,0x15,0xac,0x30,0x03,0x04,0x82,0xc7,0xf0, +0x27,0x38,0x46,0xdd,0x90,0xc8,0x76,0x13,0xf0,0x61,0xf6,0x39, +0xba,0x1b,0x3b,0xda,0x77,0xf8,0xf2,0x03,0x57,0x6a,0xaf,0x16, +0x5e,0xe1,0x9a,0x45,0x2d,0x36,0xb9,0x20,0xb1,0x30,0xa1,0xc8, +0x34,0x8d,0xf7,0xd6,0xb0,0x5c,0xa3,0xb3,0xbd,0xcd,0x99,0x6f, +0x6e,0xae,0x69,0x2f,0xed,0xe2,0xfe,0xb2,0x60,0x70,0xb2,0xe6, +0x56,0x74,0xd9,0xa8,0x5a,0x62,0x02,0xe6,0x3f,0x3c,0xb8,0x9d, +0x09,0x0a,0xca,0x71,0x14,0x46,0xb3,0x3f,0x6f,0x06,0xe7,0x55, +0x54,0x8e,0xe8,0xf9,0xe4,0xeb,0xfb,0xa0,0xa4,0x22,0x5e,0x87, +0x31,0xc4,0x18,0xe2,0x07,0xd9,0x83,0xe8,0x45,0x74,0x1d,0x96, +0xba,0xcd,0xf3,0x2c,0x34,0xe0,0x7f,0xab,0x7d,0xda,0x74,0xaf, +0x9d,0x43,0x46,0xbc,0x46,0x3a,0x84,0x1e,0x9b,0xab,0xc2,0x08, +0xf9,0x26,0x71,0x84,0x94,0x7b,0x87,0xa5,0x83,0x37,0x7a,0xa4, +0x4d,0x56,0x82,0xbb,0x84,0xdd,0xa7,0xa1,0x80,0x1f,0x58,0xdc, +0x7a,0x1c,0x77,0x6d,0xc4,0x2f,0x55,0x7b,0x1d,0xee,0x83,0x4a, +0x32,0x2c,0x3b,0x0b,0x66,0xca,0x30,0x92,0xc1,0xbb,0xc5,0x34, +0xa9,0x4d,0x87,0x1b,0xd3,0x60,0x29,0x93,0x32,0xac,0x88,0x2b, +0x18,0xec,0x46,0x1e,0x46,0x43,0xf9,0x5e,0x35,0x08,0x10,0xa6, +0x11,0x71,0x1a,0xbc,0x17,0xa6,0xb1,0xe2,0x69,0x7c,0x4e,0xa8, +0x11,0x56,0x40,0x14,0x03,0x9e,0x58,0x4e,0xa0,0x1c,0x0e,0x62, +0x39,0xbb,0x1d,0x95,0x49,0x8b,0x59,0xcf,0x8a,0xd2,0x6d,0x3d, +0x45,0xbc,0xef,0x77,0x56,0x4f,0xec,0x2e,0x71,0xe8,0x75,0x92, +0x84,0xec,0xb0,0xde,0x60,0x66,0xd2,0xee,0xc6,0xf7,0x0c,0xf5, +0xfd,0x58,0xf2,0x80,0x93,0x8e,0x5a,0xa8,0x25,0xe2,0x53,0x53, +0x30,0xc0,0x25,0xb8,0x46,0xbe,0x70,0xf0,0x5b,0x61,0xcd,0xb6, +0x61,0xd9,0x42,0xd4,0x81,0x25,0xd4,0x19,0x28,0x9e,0x96,0x02, +0x96,0x01,0xd5,0xc5,0x69,0x09,0xff,0xe4,0x0b,0x37,0x29,0xb2, +0x7b,0x81,0x4b,0x58,0x71,0x8b,0xa8,0x41,0x90,0xd0,0x64,0x40, +0x18,0xd8,0x81,0xbb,0xc9,0x5f,0x94,0x38,0xad,0x3b,0xb2,0x7e, +0xfd,0xaa,0x06,0x47,0xfe,0xe9,0xdb,0x9c,0xd7,0x67,0xc1,0x90, +0x7b,0x81,0x11,0x8c,0x41,0xd6,0xc1,0x2b,0xaa,0x3f,0xe1,0x7a, +0x91,0x66,0xeb,0x57,0x10,0x48,0x82,0x4e,0xc4,0x17,0xaa,0xc1, +0x7e,0x18,0x85,0xa9,0xd2,0x29,0x24,0xb2,0x25,0x04,0x27,0x0f, +0xc1,0x6e,0x3c,0x07,0x8a,0xfa,0xa8,0x88,0x07,0x70,0xf7,0x10, +0x50,0x62,0x71,0x4d,0xfe,0xf5,0xff,0x05,0xbc,0x68,0xd2,0x5e, +0xfd,0x5f,0x08,0x4b,0x58,0x2b,0x37,0x27,0xae,0x47,0xa5,0x12, +0x82,0x8e,0x2c,0xdc,0x2c,0x3b,0x31,0x80,0x97,0xfd,0x14,0x61, +0x05,0xfb,0x20,0xfb,0xbb,0xfc,0x2b,0x85,0xfe,0xed,0x3c,0x7e, +0x69,0x87,0x4b,0x5d,0x71,0x49,0x68,0x86,0x39,0xdf,0x1b,0xdf, +0x97,0xd4,0x97,0xcc,0x49,0x4f,0x5e,0x7d,0xf6,0xc5,0x9a,0x80, +0x5b,0x8e,0x22,0xda,0xb3,0xba,0x85,0x41,0x37,0x55,0xc1,0x86, +0x69,0xcf,0xa6,0x80,0x09,0xa6,0x4b,0x21,0x1e,0xd7,0x52,0x10, +0x6d,0x24,0xe8,0x92,0x7e,0x34,0x60,0x6f,0xdf,0x1b,0xfe,0xb9, +0xf7,0x57,0x9b,0x32,0xde,0x00,0x47,0x6d,0x5d,0xb4,0x76,0x2d, +0xe5,0x6c,0x4b,0x60,0x43,0x3f,0x6e,0x00,0x75,0x03,0x54,0x47, +0x83,0xcf,0xf2,0x0a,0x35,0x85,0x72,0x46,0x73,0xcb,0x12,0x7d, +0x1c,0x69,0x5a,0x6e,0xc6,0x37,0xe5,0xd7,0xe7,0xd7,0x15,0x70, +0x18,0xc6,0x6e,0x2c,0xd8,0xfb,0x83,0x2a,0x24,0x33,0x5d,0x69, +0x19,0x34,0x83,0xcc,0x60,0x8d,0xb3,0x14,0x51,0x13,0x63,0x59, +0x9b,0xe8,0xa4,0x26,0xb5,0x27,0x2c,0x28,0xd7,0xc2,0xf4,0x4b, +0xbf,0x5e,0xf3,0xee,0xe0,0x97,0xeb,0xe3,0x18,0x33,0x9c,0xe8, +0xc5,0x81,0x02,0x3b,0xd8,0xd0,0xd3,0xdc,0xd1,0xc6,0x89,0xf7, +0xc4,0x99,0x74,0xe8,0x3b,0xe9,0xd0,0x8f,0x49,0x43,0xdf,0x25, +0x0d,0x7d,0x02,0x15,0xf4,0x04,0x1a,0x57,0xba,0xa4,0x55,0x56, +0x23,0xf0,0x3d,0x2a,0x8a,0x05,0xd7,0x04,0x7f,0x99,0x93,0x38, +0x1f,0xf5,0x3f,0x31,0xd4,0x95,0x4c,0x67,0x7e,0x0e,0xcd,0xa9, +0x26,0xa8,0xc8,0xee,0x81,0x76,0x69,0x47,0xf6,0x43,0xd4,0x43, +0x2d,0x68,0x67,0x61,0x3f,0x75,0x68,0xe0,0x21,0x13,0x79,0x56, +0xb4,0x44,0x2a,0xf1,0x81,0x2b,0xc3,0xf0,0xab,0x74,0xfe,0xdc, +0xaf,0x48,0x09,0x9c,0x3a,0x54,0x52,0x68,0x33,0x5e,0x28,0x92, +0xfd,0x48,0xec,0x17,0xe9,0x69,0x6d,0xd8,0x51,0x62,0xc6,0xff, +0xfc,0xfd,0xdd,0xdf,0xba,0xfe,0xe4,0x1a,0xc2,0xa9,0xa1,0xdf, +0x19,0x64,0xe5,0x5d,0xf2,0xdc,0xff,0x25,0x4d,0x43,0xe5,0x02, +0x62,0x3f,0x77,0x23,0x32,0x6b,0xb7,0x15,0x9a,0xf0,0x35,0x15, +0x15,0x35,0x05,0x15,0x9c,0x68,0x3e,0x20,0x64,0xb1,0x45,0x8d, +0x45,0x1d,0xf9,0xbd,0xdc,0x45,0x53,0xca,0x01,0x76,0x8a,0x61, +0xa8,0xc6,0x66,0x98,0x50,0xbc,0xc5,0xb4,0x64,0xe6,0xb4,0xa8, +0x09,0x7e,0x30,0x66,0x80,0xde,0xf6,0x77,0x61,0x2f,0x01,0x7b, +0x71,0x23,0x3a,0x09,0xea,0x6c,0x9a,0x8d,0x22,0x6c,0x90,0xd6, +0x54,0xb4,0xaa,0x41,0x0a,0x8c,0xee,0xfd,0x77,0x94,0xb9,0xcc, +0x00,0xf3,0x59,0x31,0xbd,0x95,0x62,0x9e,0xde,0x99,0xac,0x78, +0x88,0x86,0x20,0x33,0x99,0x21,0x3e,0x43,0x0f,0x36,0x9d,0x66, +0x2f,0x13,0x69,0x29,0x07,0x15,0xf3,0x03,0x50,0xea,0x63,0xf1, +0x5f,0x9c,0x4c,0x44,0x0d,0xcc,0xba,0x32,0x00,0xbf,0x33,0xfa, +0xdd,0x04,0x6b,0x3f,0x40,0x2d,0xcd,0x62,0xca,0xa7,0x88,0x67, +0x71,0x40,0x57,0xd8,0xad,0xc1,0x9f,0x6a,0x7e,0x29,0x7e,0x69, +0x95,0xc3,0x87,0xe9,0x04,0x6e,0x76,0xd9,0xb1,0xff,0xc7,0xc8, +0x77,0xc7,0x41,0x81,0x03,0xbb,0x3e,0x74,0x60,0x4e,0xb7,0x9c, +0x69,0xeb,0x50,0x01,0x25,0x13,0x24,0xac,0xcd,0x59,0xbb,0x73, +0xf6,0xaa,0xb8,0x18,0x8c,0x98,0xda,0xe4,0xea,0xd4,0xb2,0x34, +0xff,0x36,0x7e,0x03,0xcd,0x7a,0x7e,0x8b,0xc2,0xb3,0xad,0xf8, +0xc6,0xf8,0x96,0xa4,0x66,0x6a,0x57,0x3a,0xb8,0xd2,0x0c,0x56, +0xa2,0x23,0x6b,0x11,0x61,0x1e,0x65,0x11,0x9d,0x64,0xca,0x77, +0x24,0x74,0x25,0x76,0xa4,0x70,0x18,0x87,0x73,0xd8,0xf4,0xcf, +0xa3,0xcd,0x92,0x16,0xbf,0xa4,0xb2,0x4d,0xc9,0x0d,0x29,0xd5, +0x69,0xd1,0x5d,0xbc,0x57,0xa4,0x47,0xa4,0x6b,0x14,0x07,0x46, +0xa0,0xc1,0xc6,0xe3,0xf4,0x0c,0x1c,0x5f,0xb2,0xd0,0xd1,0xc8, +0xd4,0x7c,0xab,0x75,0x99,0x15,0x7f,0xad,0xad,0xa7,0xab,0xb9, +0xb7,0x40,0xaf,0xcc,0xb6,0x36,0xa0,0xce,0xaf,0x3e,0xe9,0x42, +0x7b,0x2a,0xb8,0xf0,0xd6,0x79,0x8a,0x59,0xc2,0x66,0x12,0x32, +0xec,0x7d,0xc5,0xbb,0xd3,0x21,0x80,0xaf,0xb6,0x2a,0xdf,0x93, +0x67,0xc8,0xc9,0x4f,0x89,0xbf,0x52,0xb9,0xac,0x97,0x69,0x63, +0x98,0xbc,0x80,0x85,0x0d,0x92,0x5a,0x14,0x84,0x6b,0xa0,0x40, +0x21,0xda,0x3a,0xa1,0x86,0xfc,0x5d,0xfc,0x4b,0xf5,0xc3,0xd6, +0xeb,0x5e,0x97,0xdd,0x7b,0x3d,0x2a,0xdb,0x79,0xdb,0x32,0xd3, +0x0a,0xe3,0xf2,0xee,0xaa,0xf6,0xfa,0xd6,0x16,0xa7,0x3a,0xde, +0xda,0xc6,0xd2,0xc9,0xc8,0x73,0x53,0xdd,0x86,0x6a,0xdd,0x02, +0x3f,0x7b,0xfe,0xda,0xde,0xeb,0xfe,0xd7,0x7c,0x77,0x78,0xe9, +0x04,0x2c,0x0b,0xe5,0x30,0x43,0xfc,0xfe,0x3f,0x2e,0xf8,0x7f, +0xb8,0xf4,0x67,0x17,0x94,0xad,0xa3,0xa1,0xa6,0x1f,0x7f,0x62, +0x29,0x43,0x2e,0x4c,0x2c,0x36,0x4d,0xe5,0xa3,0x7c,0x23,0xfc, +0x22,0x02,0x38,0xd4,0x35,0x85,0x05,0x8c,0xe3,0x7a,0x93,0x1d, +0xeb,0x77,0x53,0xc2,0x5c,0x98,0x9b,0x9d,0x9d,0x95,0xcd,0x61, +0xc1,0x20,0xb4,0x82,0x3a,0xbe,0x1c,0xa2,0xf0,0x65,0x11,0xee, +0x9d,0xcd,0x66,0x18,0x2b,0xfe,0x28,0x1d,0xc9,0x49,0xc9,0x43, +0x01,0xba,0xff,0x60,0xb4,0x01,0x95,0xd9,0xdc,0xe2,0xe2,0xfa, +0xe2,0x1e,0x9a,0x2c,0x04,0xd9,0x38,0x82,0xa7,0x98,0x62,0xe0, +0x14,0xa1,0xba,0x57,0xac,0x31,0x07,0x0b,0x26,0x10,0x39,0x45, +0x9c,0x69,0x4e,0x83,0x8d,0x3b,0xae,0x54,0x44,0xde,0x5c,0xb8, +0xd3,0xbb,0x9a,0x91,0xfb,0x53,0xc0,0xfb,0x01,0xac,0x68,0x17, +0xe3,0xa5,0x2e,0xda,0x48,0x5d,0x54,0xa3,0x5d,0x54,0x63,0x84, +0x22,0x9c,0x46,0x70,0x25,0xe5,0xf1,0xb5,0x40,0xff,0x81,0x93, +0xcf,0x24,0x03,0xf0,0xd6,0xe4,0x12,0xbc,0x15,0x3d,0xf0,0x2d, +0x2b,0x2c,0x80,0x06,0xa9,0x9a,0xd7,0x5b,0xa9,0x9a,0xd7,0x3f, +0x26,0x47,0x08,0xce,0x4b,0xc5,0x2f,0x0a,0x97,0x76,0x56,0xb7, +0xe4,0xf4,0x27,0xdd,0xe1,0xe0,0xa8,0xa0,0x8e,0xe1,0xef,0x21, +0xa7,0x5f,0x7c,0x6c,0x0a,0xc9,0x73,0x71,0xbf,0xa8,0x0e,0x01, +0xcc,0x31,0xe3,0x03,0xf6,0x7e,0xee,0x2e,0x25,0xee,0x95,0x1e, +0x8d,0x8e,0x5e,0x7c,0xb5,0x53,0x9d,0x67,0x93,0xbf,0x8d,0xdb, +0xb6,0xc0,0x85,0x81,0x79,0x16,0x3c,0x7c,0x51,0xf6,0xa8,0xaa, +0xbf,0xfd,0x2f,0x63,0x98,0xe4,0x0f,0x0b,0x8e,0x70,0xf2,0x91, +0xe0,0x21,0xcd,0xc2,0x9d,0x91,0x9f,0x90,0xd8,0xe6,0x2f,0x12, +0xdb,0xac,0xa4,0x6c,0x53,0x38,0x0c,0x94,0x46,0xae,0x87,0x31, +0xb0,0x9e,0x81,0x70,0x1c,0x43,0x28,0x16,0x1f,0x03,0x1b,0x19, +0x71,0x26,0xae,0x27,0xb0,0xde,0x86,0x09,0x3a,0xb3,0xf7,0x74, +0xa8,0x2a,0xe5,0x34,0x10,0xaa,0x74,0x2e,0xff,0x6c,0x61,0xb1, +0x4a,0x2b,0x6c,0xc4,0x89,0xd2,0xf4,0x1b,0xb8,0x91,0x32,0xf6, +0xc7,0x8a,0xbb,0x0d,0x5d,0x6d,0x94,0x90,0x74,0xb1,0xed,0xe5, +0xcd,0x95,0x0d,0x35,0x1c,0x84,0xf5,0xe2,0x46,0x66,0xf8,0x4a, +0xef,0xed,0xae,0x47,0x76,0x25,0xbc,0xc1,0x42,0xfd,0xf5,0xdb, +0x76,0x72,0xab,0xe8,0x65,0x37,0xf5,0xe0,0x26,0x18,0x69,0x8c, +0x23,0x71,0xbb,0x05,0x6c,0xc7,0x31,0xe8,0x6a,0x4e,0xb1,0xad, +0xd6,0xae,0x45,0xe6,0x38,0xce,0xb2,0xc0,0x86,0xef,0xcc,0x69, +0xc9,0x6d,0xca,0xa3,0x50,0x9d,0x71,0x0a,0x32,0x0a,0xdc,0x13, +0xc6,0xed,0xc6,0x2c,0x33,0xc8,0xa2,0xf1,0x4a,0x8b,0x4d,0x37, +0x95,0x26,0xb5,0xdb,0x32,0xb3,0xa9,0x9e,0x34,0x20,0xa7,0x8f, +0x95,0x5f,0xa1,0xd8,0xf2,0x03,0xe8,0xd1,0x41,0x9d,0x94,0x04, +0x6e,0x20,0x09,0x7c,0x0a,0x8d,0x4d,0x53,0x98,0xf1,0x6f,0xa5, +0x99,0xc1,0x46,0xf8,0x03,0x1a,0xd9,0x5f,0x95,0x68,0xe3,0x5f, +0xda,0x90,0x47,0xe0,0x11,0x02,0xdb,0xe1,0x00,0x6e,0x67,0xc1, +0x57,0x89,0xb6,0x62,0x68,0x2b,0x1b,0xd7,0x11,0xeb,0xb2,0xdd, +0x95,0x06,0x79,0x3e,0xf6,0xfc,0xd5,0xe0,0xcb,0xde,0x9d,0xbe, +0x1c,0x30,0x1b,0xc9,0xb0,0xa8,0x09,0xca,0x7b,0x50,0x59,0x9c, +0x6b,0x48,0x23,0xc1,0x5e,0x9c,0x84,0x53,0x74,0x30,0x49,0xbb, +0x70,0x0f,0x0f,0x1d,0xbf,0xbf,0xbb,0x93,0x07,0xb3,0x29,0x62, +0x28,0xc0,0xd9,0x30,0x66,0x2b,0xb4,0xcc,0x2b,0xb8,0xca,0x63, +0xfc,0x23,0x9c,0x75,0x2f,0x00,0x26,0x49,0x4f,0xd9,0x64,0x3e, +0x64,0x15,0x53,0xd6,0xe8,0x96,0xef,0x94,0x67,0x9f,0xa9,0xec, +0xe7,0xdc,0x76,0xa0,0x3e,0xac,0x26,0x44,0x19,0xb7,0xc3,0x08, +0x43,0x1c,0x81,0x27,0x4c,0xe0,0xc4,0x62,0x0c,0x91,0xf3,0x43, +0xf0,0x0d,0x4d,0xae,0x51,0x43,0x10,0x45,0xc1,0xe2,0x6e,0x1c, +0xc9,0xa4,0x9a,0x2a,0x3e,0x63,0x5a,0x73,0x28,0xd8,0x17,0xae, +0x61,0xe4,0x1b,0xc8,0x61,0xe5,0x43,0x72,0xf5,0xff,0x25,0xfb, +0x00,0xe0,0x75,0x42,0xa3,0xea,0x18,0xd0,0x62,0x86,0xa8,0xea, +0x68,0x63,0x2b,0x8e,0x61,0xc5,0xd9,0x96,0x12,0x0f,0x1d,0xfb, +0x49,0x67,0x30,0x96,0xd0,0x37,0xc7,0xa2,0x34,0x87,0x76,0x13, +0x62,0x09,0x2c,0x83,0x49,0xbd,0x98,0x46,0xbf,0xba,0xb7,0x07, +0xf7,0x02,0x03,0x67,0x7b,0xc5,0x46,0x73,0x38,0x8a,0x0c,0xfa, +0x59,0x80,0x1f,0xd5,0xc9,0x05,0x73,0x18,0xbf,0x8e,0x0d,0x3a, +0x13,0x2c,0xa9,0x9d,0xc2,0xdb,0x71,0xcc,0x81,0x05,0xd6,0xfa, +0x33,0xf5,0x6b,0x2c,0x79,0xe0,0x6e,0x5f,0xfa,0x31,0x57,0xaa, +0x2e,0xed,0x8d,0xf9,0x57,0x20,0x1f,0x54,0xfa,0x99,0x7f,0xc7, +0x09,0xf9,0x44,0x9e,0x36,0xf4,0x37,0xa5,0x12,0xcb,0x58,0xb4, +0xa5,0x70,0x72,0xa6,0xd8,0x83,0x94,0x45,0x6c,0xfa,0x89,0x50, +0x83,0x29,0x28,0x52,0x79,0x08,0x0e,0xb8,0x8c,0x06,0x57,0x53, +0x19,0x4b,0x19,0x58,0x3f,0xaa,0xc3,0x22,0x53,0x5c,0x84,0xd3, +0x4d,0xef,0xe3,0x28,0x06,0xa3,0x3d,0x51,0x0b,0x15,0x70,0xb6, +0x6a,0x83,0xf3,0x5f,0xa0,0xd2,0x0c,0x8b,0x93,0xc1,0x46,0x19, +0x14,0x19,0xd4,0x88,0xc1,0xb1,0x51,0xda,0xaa,0xb6,0x27,0x8e, +0x44,0x79,0x4e,0xa3,0x89,0xc5,0x54,0xb1,0x9b,0xb9,0x5a,0x92, +0x77,0x2f,0x51,0x2d,0xf9,0xc9,0x45,0x98,0x7a,0x16,0x3c,0x39, +0x5c,0xc7,0x9c,0xcd,0xf9,0x26,0x27,0x57,0x05,0xde,0x42,0x32, +0x49,0xc0,0x71,0xcd,0xf3,0x5e,0xe3,0xe8,0x9a,0x5e,0x5e,0x03, +0x14,0x5d,0x3e,0x84,0xc3,0x48,0x6e,0x3b,0x73,0x50,0x5a,0x74, +0x31,0x72,0x35,0x8e,0xac,0xb6,0xe0,0x5f,0x01,0x5b,0xfd,0x7b, +0x92,0x74,0xbe,0x50,0x14,0xcd,0xe9,0xb2,0xc9,0x18,0x28,0x3f, +0x34,0x40,0xdd,0xe1,0xa1,0xc2,0x47,0xb1,0x40,0x9d,0x11,0x1e, +0x40,0x12,0xe9,0x33,0xe9,0xd7,0x6d,0xdd,0xd6,0xd0,0xc4,0x3b, +0x7c,0x6b,0x7c,0xdb,0xb4,0x9f,0x5b,0x8c,0xad,0xe4,0xd5,0xc6, +0x87,0x9a,0xdf,0x6b,0xd4,0x75,0xf3,0x9b,0x9f,0x6b,0x3e,0x5b, +0xf6,0x2d,0x55,0xb1,0xbe,0x2c,0x92,0x0c,0x88,0xa5,0x78,0x84, +0xc5,0xb2,0x03,0xb8,0x65,0x29,0x6a,0xa8,0x76,0x3a,0x29,0xfe, +0x06,0xeb,0xf3,0xc0,0x4c,0x3a,0x29,0x6e,0x3b,0x8b,0x33,0xc5, +0x97,0x92,0xc7,0x25,0x4b,0x58,0xfb,0xd3,0xbc,0xf7,0x7f,0xe0, +0xfa,0x97,0xb0,0x84,0x08,0x9b,0xfa,0xd0,0x0a,0x26,0x82,0x4e, +0x0f,0x45,0x37,0x9c,0x29,0x72,0xb8,0xd4,0x02,0x96,0xe2,0x44, +0xdc,0xc6,0xc0,0x11,0xcc,0xa2,0xec,0xa1,0x87,0x52,0xe0,0xb1, +0xc6,0x54,0x73,0xba,0x16,0xa0,0x4b,0xf3,0x7c,0xb8,0xb9,0x70, +0xb4,0x17,0x5d,0x68,0x28,0x6d,0x87,0x4c,0xf2,0xae,0x6f,0x3e, +0xf5,0x82,0x51,0x7d,0x38,0x0a,0x34,0xfe,0xe8,0x43,0x57,0x26, +0xa9,0x2c,0xbe,0x22,0xae,0xdc,0x22,0x89,0x0f,0x5f,0xeb,0xbf, +0xd1,0xc1,0xb0,0xd1,0x89,0xcf,0x2d,0xcd,0xaa,0x4c,0xaf,0xe1, +0xee,0xa0,0x06,0xae,0x35,0x83,0xb5,0xe2,0x32,0x26,0xf4,0x44, +0xc8,0x89,0xd0,0x18,0x0e,0xde,0x9a,0x22,0xb0,0xc1,0x31,0x21, +0x31,0xfb,0x4e,0x25,0x19,0xf3,0x7f,0x64,0xc2,0xb2,0xba,0x3f, +0x6a,0x8e,0xf7,0xf0,0xbe,0x51,0xee,0x51,0x52,0x2a,0x98,0x8b, +0x0b,0x49,0xbf,0xac,0x03,0xc6,0x8a,0xbf,0xac,0x91,0xca,0xb5, +0xde,0x62,0xea,0x33,0xa4,0x75,0x85,0xd3,0xa5,0x99,0xf1,0x4b, +0xf2,0x74,0x6a,0x8e,0x9a,0xf4,0x45,0x90,0x64,0x8e,0x5a,0xd2, +0xa6,0xad,0x11,0x42,0x15,0x8c,0xa0,0x89,0x8d,0x17,0x76,0xd0, +0x17,0x8c,0xff,0xc9,0xd8,0x02,0x35,0x70,0x85,0xaf,0x70,0x62, +0x1f,0x75,0xf3,0x54,0x18,0x69,0x48,0x5d,0xfe,0x18,0x6e,0xef, +0xa7,0x23,0x66,0x0e,0xb0,0x38,0xdb,0x5d,0x1f,0x95,0xf4,0x54, +0x4b,0xac,0x14,0x61,0xfe,0xdd,0xb6,0x17,0xb0,0x54,0x25,0xeb, +0x15,0xfa,0xb3,0x26,0xd9,0x87,0xfa,0x54,0x61,0x22,0x53,0x97, +0x92,0x5a,0xaf,0xd6,0xc7,0x5a,0xa6,0x2b,0xca,0x2f,0x43,0x1a, +0x91,0x22,0x16,0xec,0x96,0xb8,0xca,0xe7,0x19,0xde,0x4a,0x69, +0x86,0xb7,0xb2,0x83,0xf4,0x89,0x8d,0x66,0x54,0x58,0x81,0x78, +0xc5,0x44,0xa6,0x34,0x80,0x79,0x10,0x48,0x6d,0x6c,0x50,0xd8, +0x4a,0xe0,0x41,0x27,0x3e,0x78,0x00,0x0f,0xba,0xf0,0xc1,0x3d, +0x80,0x6e,0x7c,0xc7,0xe4,0x15,0x65,0x97,0xa7,0x57,0xe8,0xa7, +0xf0,0x87,0x3c,0x43,0x3d,0x83,0x7c,0x38,0x3c,0xcc,0xe4,0x94, +0x66,0x96,0xa6,0x16,0x1b,0xa7,0xf3,0x36,0x0b,0xb7,0xae,0xc1, +0x2f,0xb4,0xab,0x6d,0xf9,0xb2,0xdc,0xf2,0xe2,0xd2,0x52,0x0e, +0xbf,0x95,0xc5,0xf5,0x88,0xa3,0x58,0x03,0xc8,0x20,0x58,0x72, +0x8b,0x89,0x8d,0x53,0x84,0x3c,0x06,0x4b,0xd0,0x85,0x3c,0x80, +0x92,0xf5,0xac,0xb5,0x82,0x26,0x96,0x3c,0x61,0xf7,0x8b,0xe7, +0x48,0x93,0xf0,0xca,0xe9,0x0a,0x74,0xc9,0x3d,0x68,0xf4,0x93, +0xcd,0x83,0x18,0x82,0xb3,0xc5,0x57,0x30,0x9b,0xf6,0x43,0x55, +0x58,0x41,0xba,0xeb,0x9a,0xeb,0xab,0x9a,0x0b,0x02,0x0b,0xfc, +0x0b,0x7c,0x6b,0xea,0xf9,0xe0,0x8a,0xe0,0xf2,0xa0,0xd2,0xca, +0x9e,0xbc,0xa1,0x94,0xeb,0x5c,0x13,0x66,0x59,0x80,0x07,0x1b, +0x65,0x77,0xd0,0x39,0xc4,0xcd,0xaf,0xcc,0xb7,0xd8,0xbb,0xd0, +0xdd,0x9d,0xaf,0x09,0xa8,0xf4,0x2f,0xf7,0xf1,0x71,0x71,0x76, +0xb7,0xf4,0xe4,0x04,0x73,0x58,0x41,0xbc,0xca,0x3d,0x8b,0x3d, +0xf3,0xbd,0xe9,0x47,0xc1,0xd5,0xfe,0x95,0xbe,0xee,0x2e,0x36, +0x6e,0xfa,0x9e,0x15,0xb6,0xfc,0xe5,0xfa,0xae,0x86,0x86,0xd6, +0x6a,0xcf,0x4a,0xf7,0x0a,0x97,0xda,0x46,0xde,0xbb,0xc1,0xab, +0xce,0xa3,0xba,0xae,0xbb,0x70,0x30,0x5d,0xba,0x76,0x81,0x05, +0xf8,0xb0,0x47,0xec,0xf7,0x3b,0x05,0xba,0x70,0x72,0x4d,0xf1, +0x77,0xaa,0x31,0x5d,0xaa,0xb1,0x28,0x49,0x63,0x3b,0xa5,0x00, +0x32,0x9e,0xc6,0xc9,0xf1,0x8c,0x30,0x41,0xbe,0x81,0x04,0x56, +0x05,0x96,0x07,0x96,0x55,0x0f,0xe7,0xdf,0x48,0xbd,0x4b,0xff, +0x35,0xc3,0x02,0x9c,0xd9,0x48,0x8b,0x70,0xeb,0xbd,0xf6,0x5e, +0x95,0x9e,0xe5,0x1e,0xc5,0xde,0x2e,0x7c,0xbd,0x5f,0x8d,0x4f, +0x95,0xa7,0x9b,0x99,0xb9,0xd5,0x56,0xdb,0x0a,0x1b,0xfe,0x4e, +0x47,0x7f,0x4f,0xf3,0x70,0x61,0x60,0xa1,0x5f,0xa1,0x37,0x07, +0x91,0x7f,0x91,0x8e,0xdb,0x65,0x0f,0x33,0x7f,0xfe,0x7c,0x5f, +0x6f,0xf6,0xf0,0xae,0x50,0x43,0x4f,0x33,0xcf,0x8e,0x80,0xee, +0xbd,0x3d,0x76,0x41,0x7c,0xa1,0x71,0xa5,0x61,0x83,0xa9,0x9b, +0x83,0xb5,0xcb,0x2e,0xf7,0x72,0x5b,0xfe,0x6a,0x6d,0x77,0x53, +0x63,0x5b,0x8d,0x43,0x93,0x4b,0xbb,0x67,0x55,0x27,0x6f,0x53, +0xe5,0x5c,0xef,0x29,0xed,0x24,0xdc,0x29,0x4d,0xf8,0x85,0x0a, +0x1c,0x1e,0x7b,0x09,0x29,0x7d,0x98,0xf2,0x8b,0x01,0x1e,0x45, +0x1b,0x91,0x03,0xaf,0x79,0x78,0xde,0x04,0xce,0xe3,0x92,0x4b, +0x14,0xf7,0xa6,0x0f,0x60,0x3a,0x23,0x76,0xe2,0x24,0x0a,0x34, +0x9c,0x65,0xcb,0x30,0x43,0x9e,0xc6,0x82,0x8b,0xf4,0x38,0x73, +0x9e,0xd0,0x0d,0xf3,0x18,0xe1,0x06,0x6e,0x21,0xb3,0xc5,0xf1, +0x7f,0xb1,0xb8,0x4c,0x41,0x18,0x8f,0x23,0xc5,0xf1,0x34,0xf0, +0xcd,0x94,0xf1,0xe4,0x02,0x7e,0xf9,0xe7,0x56,0xd0,0x5e,0x57, +0xda,0xc7,0xa3,0xe9,0x2f,0x9a,0x57,0x60,0xa1,0xca,0x87,0x3d, +0xb3,0x58,0x5c,0xb8,0x74,0x0b,0x6e,0xd4,0x56,0x2d,0x33,0x83, +0x59,0xdf,0x02,0xf3,0x40,0xaa,0x90,0x0e,0xc1,0xb0,0x90,0x1c, +0xb4,0xf2,0xda,0xee,0x6a,0xdd,0xe9,0xcb,0xd7,0x77,0xd5,0xdd, +0x4f,0xef,0xe2,0x44,0xeb,0x2c,0x72,0xc8,0xdc,0x7f,0xa7,0xbb, +0x65,0x67,0x00,0x5f,0xd3,0x53,0x79,0x37,0xbd,0x8f,0x43,0x43, +0x39,0x23,0x4d,0xe1,0xc6,0x7e,0x9e,0xc2,0xbd,0xa5,0x00,0x33, +0xc4,0x14,0x9c,0xc1,0x08,0xf5,0xb0,0x8f,0xec,0xc1,0xc9,0x0c, +0xae,0xc0,0x2f,0xd7,0xa2,0xf7,0x46,0xd5,0x62,0x63,0xd0,0xba, +0x0a,0x2b,0x7f,0x4a,0x84,0x99,0x94,0xc6,0xc5,0xe2,0x84,0xbf, +0xd7,0xc2,0x7a,0x4d,0xa9,0x2f,0x16,0x2f,0x57,0x3e,0x84,0x05, +0x2a,0x30,0x07,0xd7,0x12,0x7a,0xab,0x7b,0xe9,0xdd,0x16,0xf9, +0xfc,0xe7,0x9b,0x73,0xf8,0xc6,0x93,0x7c,0xbe,0x95,0x45,0x36, +0x7f,0xc8,0x42,0xba,0x39,0x95,0xd4,0x2b,0xca,0xe7,0xcf,0xb8, +0x9c,0x72,0x3e,0xee,0xc7,0xb9,0x1e,0x0b,0x96,0x0a,0x0e,0x4d, +0x64,0x52,0x8d,0x15,0x69,0xde,0xfb,0xa1,0xa5,0xf0,0x46,0x8a, +0x5a,0x42,0xd3,0xc5,0x81,0xb3,0xcf,0x39,0x69,0x59,0x4f,0x41, +0x2c,0xfd,0x31,0x48,0xe2,0xf7,0xe2,0x04,0x03,0x9c,0xb2,0x6c, +0x59,0x8b,0x2d,0x7f,0xf3,0x76,0xd7,0x93,0xaa,0x97,0x9c,0xa8, +0x27,0x5f,0x4f,0xad,0xc2,0x85,0x5a,0x45,0x96,0x64,0x15,0x6e, +0x12,0xb3,0x9d,0x4f,0x99,0xed,0x7c,0x46,0x58,0x28,0x4e,0xa0, +0xa9,0x1f,0x59,0xd4,0x34,0x03,0x4d,0xe4,0x45,0x86,0xe2,0x75, +0x8d,0x3e,0xd4,0x00,0x96,0x19,0x48,0xbb,0x9a,0xdf,0x56,0xe2, +0xdd,0xc9,0x5b,0xfa,0xee,0x0c,0xd2,0x39,0xcc,0x89,0x36,0x97, +0xba,0x05,0xc6,0xf2,0xb2,0xe0,0x8e,0x07,0x29,0x24,0x18,0x23, +0x6b,0x22,0x65,0x5f,0x03,0xb7,0x1a,0x96,0x68,0x96,0xf5,0xf0, +0xa8,0xf1,0xf3,0xdc,0xfb,0x0e,0x2f,0xb9,0x9d,0x8c,0xfb,0xda, +0xd5,0xda,0x38,0x6d,0x93,0x54,0xf8,0xeb,0xab,0xbb,0xbf,0x3f, +0x29,0xff,0x8d,0x13,0x1b,0x7d,0x3f,0xcf,0x42,0xfc,0xb7,0x67, +0x4f,0xa6,0x9e,0x3d,0x99,0x81,0x3f,0x84,0x89,0x04,0xaa,0x7b, +0xb0,0x9a,0x59,0x8a,0x3c,0x31,0x17,0x94,0xd9,0x20,0x47,0x57, +0x0b,0x0f,0xd7,0x16,0x77,0xbe,0xb5,0xa7,0xf3,0x46,0xd5,0x55, +0xae,0x85,0xc5,0x2b,0xe8,0x48,0xba,0xbc,0x86,0x2d,0x1b,0x9c, +0x6a,0x9b,0x78,0x97,0xc6,0x3d,0x9d,0x56,0x95,0x5c,0x1a,0xde, +0x23,0x5e,0xc7,0x63,0xab,0xd4,0xc0,0xda,0x08,0x9d,0xd8,0x9d, +0xc5,0x61,0x37,0x54,0x29,0x67,0x6d,0x4b,0x4b,0xa5,0x88,0x7c, +0x04,0x6b,0x46,0x89,0x8f,0x32,0x2b,0xaa,0x86,0x90,0xd6,0x1f, +0xca,0x7f,0x4e,0x7f,0x64,0x9e,0xce,0x1f,0xd9,0xe6,0xbf,0xc6, +0x7e,0x1b,0x27,0x9c,0x04,0x5b,0x52,0x67,0x5c,0xbf,0x32,0x7f, +0x2b,0xa5,0xa8,0x21,0x57,0x1d,0x7e,0xf5,0xe8,0xe3,0xc6,0x0b, +0xe3,0x28,0x88,0x30,0x16,0x6e,0x53,0xbe,0x31,0x92,0xba,0xc9, +0x67,0xb2,0x31,0xf8,0x39,0x92,0x2b,0xd3,0x48,0xae,0xcc,0xc8, +0x3a,0xf2,0x49,0x1f,0x46,0xbc,0x34,0x59,0x8a,0x0e,0x6c,0x6c, +0xd3,0x85,0xd6,0xf3,0x9d,0x9c,0x60,0x09,0x89,0x62,0x2c,0x4e, +0x67,0x30,0x35,0x18,0xe7,0xd0,0x5c,0xaf,0xae,0xda,0x6a,0x7b, +0xf5,0x49,0xed,0xd3,0xdc,0x8f,0xca,0xe0,0xca,0x1c,0x5e,0xb8, +0xdd,0x02,0x67,0x6c,0x29,0xa1,0xb9,0x54,0xe9,0xee,0xd3,0xe1, +0x8b,0x7f,0x52,0x14,0x91,0x30,0xf3,0x85,0x29,0x2c,0xda,0x50, +0xd4,0xcb,0xe3,0xfc,0xfb,0xda,0xdd,0x07,0xde,0x72,0x94,0x05, +0x9d,0x23,0xa2,0xb2,0x94,0xdb,0x72,0xf3,0x54,0x1e,0x0a,0x3c, +0x15,0xad,0x2a,0xe5,0xab,0xe6,0x57,0xdc,0xde,0x1c,0xf8,0x95, +0x03,0xae,0x0f,0x55,0xc0,0x8b,0x69,0x4e,0x6a,0x4e,0xa9,0x4d, +0x0b,0xee,0xe2,0x57,0x7b,0xe1,0xa8,0x90,0x45,0x11,0xa9,0x96, +0x7c,0xcd,0xc5,0xa6,0xb8,0xe6,0x44,0x0e,0xed,0x70,0x86,0x19, +0x7c,0xc9,0x86,0xa1,0x8a,0x89,0x54,0x75,0x1f,0xd5,0xaa,0x1d, +0xa5,0x95,0xc3,0xd3,0x5a,0x60,0x4c,0x0a,0x8c,0xe1,0xe2,0x44, +0xb7,0x3e,0xc1,0x2d,0x8e,0xc9,0xa6,0x94,0x62,0x0c,0xae,0x82, +0x44,0x54,0x2a,0xea,0xe6,0x91,0x5c,0x5e,0x71,0x43,0xfb,0x35, +0xd7,0xec,0x4e,0xe0,0xb4,0xf0,0x11,0x4f,0x33,0xe2,0x0d,0x69, +0xba,0x7d,0x03,0x1d,0xfb,0x3e,0xf9,0x89,0x01,0x46,0x76,0x9a, +0x0a,0x0a,0xa7,0x0a,0xa7,0x61,0x2a,0x23,0x9f,0x2a,0x55,0x68, +0x65,0x68,0xe4,0x67,0x18,0x89,0xac,0x26,0x4b,0x85,0xac,0x0a, +0x7f,0x2a,0x78,0x97,0xf1,0x88,0xc3,0xfb,0x4c,0x6c,0xf6,0xc5, +0xac,0x0b,0x99,0x26,0xe7,0xf9,0x83,0x9b,0x02,0x96,0xf9,0xae, +0xe2,0xe0,0x05,0x73,0x7c,0x6f,0x74,0xc8,0xf1,0x50,0x4e,0x54, +0xb0,0x02,0x6f,0xc6,0xc0,0x7c,0x8d,0xc3,0x22,0xff,0x5c,0x1b, +0xfe,0x5a,0xee,0xe5,0x92,0xde,0xaa,0x94,0xf0,0x94,0xfd,0x49, +0xfb,0x0d,0xec,0x57,0xd8,0xaf,0xf4,0xcf,0xb5,0xe6,0x5f,0x94, +0x3f,0x6f,0x1f,0x6c,0x4b,0x0c,0x4b,0x08,0x8d,0x0b,0xdd,0xaa, +0x37,0x8b,0x32,0x5f,0x8f,0x3c,0x2a,0xb2,0x2f,0x6a,0xdf,0x5f, +0xba,0x3e,0xc4,0x5d,0x0c,0x3d,0x17,0xb6,0x4f,0x65,0x47,0x78, +0x88,0xb1,0xea,0x06,0x86,0xd2,0xae,0xeb,0xcc,0xab,0x8a,0xa6, +0x0f,0x6f,0xec,0xe1,0xab,0xed,0xbf,0xa9,0x15,0x64,0xe7,0x66, +0x67,0xe6,0x72,0x85,0x4c,0x26,0x5a,0xdc,0xc5,0xcd,0xa0,0x8a, +0x6a,0x75,0x6d,0xbc,0xee,0x6d,0xab,0xbb,0x5e,0x0f,0xfb,0x1b, +0x86,0xfb,0xaa,0x5b,0x5c,0x6b,0x79,0x1f,0x07,0x4b,0x1b,0x7b, +0xaf,0xfd,0x83,0x11,0x97,0x62,0x6e,0x70,0xe0,0xc3,0xc8,0x87, +0x44,0xd3,0xff,0x7b,0x6e,0x41,0x47,0xf8,0x97,0x24,0x14,0x26, +0x55,0x25,0x51,0x34,0x9b,0xcb,0xc4,0xec,0x3d,0xe6,0x75,0xd4, +0x9d,0x13,0x93,0x45,0xfb,0xff,0x9a,0x66,0x18,0xff,0xcf,0x18, +0x99,0x09,0xc1,0x31,0xc3,0xb0,0x09,0x53,0x1e,0xed,0xd1,0xc6, +0xd3,0xb8,0x6d,0x10,0xc6,0xb3,0x38,0x20,0x37,0xa0,0xa1,0xc9, +0x54,0xb6,0x82,0x5a,0x4b,0x06,0x4b,0xb1,0x00,0x75,0x2b,0x15, +0xa1,0x0f,0x54,0x18,0xc1,0x02,0x9f,0x93,0xab,0xdd,0x6d,0x43, +0xe5,0xd7,0x28,0x5a,0x3e,0xc7,0x26,0x67,0x24,0x66,0x26,0x66, +0x58,0x16,0xf1,0xf6,0xab,0x74,0xb4,0xf1,0x0b,0x63,0x4a,0xb7, +0xea,0x72,0xaa,0x0b,0x2a,0x8a,0x4b,0x7d,0x6b,0x7c,0x9b,0xfd, +0x74,0x5d,0x56,0x7a,0xe0,0x48,0x9f,0x1c,0x13,0x1e,0x26,0x54, +0xbf,0x6b,0xfe,0xa1,0xeb,0x9e,0xdd,0x6b,0x47,0x50,0xf0,0x2c, +0x18,0xe0,0xe7,0x96,0xaf,0xad,0xd1,0xad,0xe3,0x28,0x9a,0x54, +0x26,0x49,0x49,0x89,0x49,0x09,0x49,0xd2,0x18,0x42,0xec,0x5d, +0x1d,0x8c,0x9d,0x6d,0x2a,0x5c,0x2b,0x7c,0x2a,0x39,0x77,0xf1, +0x0d,0x19,0x82,0xfb,0x46,0x43,0xf0,0x9d,0xa8,0x8f,0xdf,0xb1, +0xc2,0x64,0xc8,0x91,0xaa,0xf5,0xde,0x87,0xa5,0xac,0x74,0x6a, +0xcd,0x11,0x72,0xfb,0x52,0xe7,0xed,0xea,0x87,0x5c,0x0b,0xf6, +0xb0,0x69,0x45,0x29,0xc5,0x49,0x25,0x46,0x09,0xbc,0x87,0xc6, +0xee,0x15,0x8b,0xa5,0xa7,0x8b,0x15,0x05,0x65,0xc5,0xc5,0x65, +0xb5,0xb6,0xcd,0x8e,0xdd,0xce,0x3b,0xec,0xd6,0x38,0xaa,0xbb, +0x16,0x53,0xcf,0xe5,0x5a,0x5e,0xb6,0x7f,0xd7,0xf3,0xad,0xf5, +0x63,0xbb,0xdf,0x1c,0x69,0xe8,0x5a,0x5e,0xbf,0xb1,0x61,0x57, +0x33,0x27,0xbe,0x14,0xfd,0xfe,0xb7,0x39,0xb2,0xf3,0xf6,0x24, +0x23,0x4f,0x11,0xd2,0x18,0x7f,0x43,0x47,0x33,0x03,0x2b,0x93, +0x66,0xdb,0x36,0xb7,0x6e,0x2e,0x44,0x7e,0x88,0x5c,0x81,0x6e, +0xbd,0x4b,0xc2,0x54,0x51,0x4b,0x9c,0xca,0x82,0x08,0x4f,0x08, +0x7a,0x62,0x37,0x78,0x52,0x02,0xb4,0x52,0x16,0x4f,0x02,0x8b, +0x5c,0x8a,0x7c,0x33,0x7c,0x3c,0xf8,0xf2,0xf0,0xba,0xe0,0xd2, +0x40,0xee,0xa2,0x3c,0x88,0x78,0x34,0x07,0xde,0xdc,0xf7,0xac, +0xe7,0x7d,0x3d,0x4c,0x28,0x85,0x79,0x16,0x69,0x7c,0x18,0x72, +0x01,0xf3,0x3c,0xd7,0x1c,0x80,0x91,0xc7,0x60,0xea,0x19,0x0a, +0xc8,0xc1,0xa4,0x17,0x4d,0x80,0x31,0xa3,0x58,0xf6,0x9d,0xb4, +0x34,0xb9,0x31,0x04,0x97,0x6b,0x4b,0x0f,0xa3,0x9d,0x15,0x5f, +0xc3,0xd2,0x1c,0xd8,0x0a,0x94,0x4f,0x33,0xd0,0xcc,0x9e,0xc5, +0xad,0xa9,0xb8,0xba,0x18,0x89,0xc5,0xe2,0x9d,0x9b,0x56,0xeb, +0x57,0xda,0xf1,0xf7,0x06,0xae,0xdc,0xec,0xfe,0x31,0x67,0x5b, +0x91,0x49,0xa5,0x6b,0x95,0x73,0x6f,0xd2,0x85,0xde,0x4c,0x70, +0xe3,0xad,0xf2,0x14,0xe5,0x0a,0x4e,0x44,0x78,0x83,0xde,0x72, +0xd3,0x7e,0xea,0xfa,0x0d,0x0a,0x7f,0x8a,0x47,0xe6,0x30,0xf0, +0x23,0x20,0xb1,0x04,0xb7,0x6e,0x16,0xad,0x50,0x85,0x88,0x33, +0xbb,0x6f,0xc0,0x34,0x78,0xcc,0xe2,0x34,0x69,0xda,0xeb,0xc0, +0x63,0x3c,0x40,0x11,0x80,0x86,0x10,0x4a,0x84,0x44,0xb8,0x27, +0x26,0x32,0x98,0xff,0xe9,0xd1,0xdd,0x7f,0xcd,0xb5,0x0b,0xdd, +0xb2,0x19,0x04,0x37,0xbc,0x80,0x0d,0x4c,0xdf,0x32,0xf2,0x02, +0x74,0x97,0xb1,0xe2,0x4f,0x52,0x9d,0x87,0xcf,0xd3,0xef,0x00, +0x1a,0x64,0x31,0x6e,0x78,0x23,0x9d,0xa7,0x0e,0xba,0x8b,0x51, +0x97,0x41,0x2b,0xf1,0x37,0x0a,0xe3,0xe1,0x3d,0x7e,0x81,0xea, +0x6c,0x9a,0x85,0x22,0x70,0x4c,0x7b,0x66,0x46,0xab,0x9a,0xb0, +0x44,0x74,0x15,0x0f,0xb0,0xc2,0x42,0x00,0x82,0xef,0x1f,0xc2, +0x7b,0x06,0xdf,0x4b,0x75,0xf4,0xde,0x6b,0xe3,0x7b,0x69,0x57, +0x91,0x2c,0x93,0x5c,0xda,0x6d,0x20,0xb2,0x16,0xb2,0x2b,0x3d, +0x2c,0x1e,0x42,0x1d,0x52,0x50,0x9a,0x5b,0x9e,0x59,0x62,0x90, +0xcb,0x1f,0xf0,0x08,0x72,0xf5,0xf5,0xe4,0xc4,0x5a,0xd4,0x1f, +0x06,0x65,0x78,0xa6,0x85,0xe5,0xe8,0x77,0x19,0xb4,0xc1,0x1f, +0xf7,0x5c,0x85,0x3d,0x70,0x98,0xde,0x4b,0x89,0x49,0xb6,0xfa, +0x74,0x3a,0x4b,0x46,0x5a,0x9d,0x1a,0x2c,0xc7,0xf6,0x1f,0xe1, +0x2f,0x54,0x1e,0x06,0x7d,0x56,0xbc,0x55,0x48,0x22,0x8a,0x42, +0x6a,0xc3,0x73,0x2c,0x42,0xf8,0xcc,0xb0,0x3c,0xcf,0xe4,0x20, +0x0e,0x47,0xca,0xb7,0x92,0x46,0xe1,0x9d,0xf3,0x55,0xa8,0x97, +0x07,0x60,0x3d,0x2b,0xd3,0x80,0x08,0xca,0x81,0xc5,0x77,0xa0, +0x46,0x8d,0xae,0x47,0x76,0x97,0x98,0x60,0x27,0x0d,0x8c,0x76, +0x38,0x95,0xfe,0xac,0x55,0xad,0xb3,0x84,0xf1,0xb0,0xb4,0x16, +0xbe,0x38,0x0f,0x3b,0x68,0x56,0x3c,0x87,0x9b,0x2a,0x29,0x9e, +0x1d,0x81,0xab,0xea,0x68,0xea,0x18,0x0b,0x1b,0xdc,0x41,0x09, +0x12,0x54,0xf0,0x1b,0xfc,0x92,0x44,0xa7,0x45,0xc7,0x45,0x44, +0x1e,0x89,0xe0,0x4f,0xfe,0xf6,0xb1,0x4f,0x9d,0x72,0xd5,0x86, +0xd4,0xfa,0x8c,0xaa,0x6c,0xbf,0x56,0x7e,0xab,0xab,0xba,0xf7, +0xf2,0xf0,0x0c,0x6b,0xbe,0x2a,0xae,0x36,0xa1,0x2e,0x89,0xc3, +0x85,0xa8,0x6c,0x46,0x3d,0x31,0x72,0xb1,0x2b,0x4e,0x5e,0x8e, +0x5c,0xa5,0x21,0xff,0xfd,0xbb,0x8a,0xdf,0x68,0xa4,0x8d,0x13, +0x8f,0xf4,0x0a,0x96,0x52,0x0d,0xec,0xf3,0x31,0xaa,0x8f,0x71, +0x7d,0x7d,0xa3,0xa2,0x98,0x86,0xdf,0x50,0x77,0xd5,0x94,0x7d, +0x4d,0xd1,0xec,0x45,0x09,0xcd,0xae,0x96,0xd0,0x6c,0x0b,0x45, +0xb3,0xb2,0x65,0xbe,0x24,0x7a,0xc9,0xe1,0x59,0xc1,0x6b,0x3a, +0x42,0xf9,0xa2,0x17,0xe9,0x7f,0x25,0xfc,0xce,0x61,0x2d,0x36, +0x92,0xdc,0x9f,0x12,0x7f,0xbf,0xf0,0xc6,0x3a,0x85,0x3f,0xa9, +0x11,0xbd,0x34,0x6c,0x1d,0x4d,0xc8,0x6f,0xa4,0x92,0xc6,0xb3, +0x51,0x0f,0x76,0x18,0xe1,0x0e,0x1a,0x72,0x66,0x9b,0xa0,0x8d, +0x50,0x0c,0x36,0xac,0x3c,0x43,0x5e,0xf9,0x69,0x46,0x64,0x0e, +0x86,0xc9,0xcf,0xb3,0xb0,0x51,0xba,0xbc,0xa2,0xd0,0x44,0xd9, +0x8d,0xcc,0x9c,0x66,0x30,0xf1,0x5f,0x53,0x68,0x60,0xa2,0xbc, +0x0e,0x7b,0x1c,0xa4,0x98,0x34,0x48,0xdc,0x34,0x28,0x8c,0x86, +0x2f,0xf0,0xaf,0x3e,0xf8,0x0b,0x14,0x3e,0xff,0x19,0x83,0x7d, +0x5a,0x12,0xf5,0xb9,0xc9,0x34,0xa4,0x51,0x54,0x0c,0x88,0x75, +0x6c,0x7a,0x45,0x5a,0x4d,0x52,0x15,0x47,0x41,0xe9,0x78,0x99, +0x82,0x30,0x86,0x08,0x63,0x90,0x67,0xd3,0x0b,0x53,0x4a,0x13, +0xf3,0xcd,0x12,0xf9,0xe8,0xbd,0x07,0x3d,0x0e,0x04,0x72,0x9b, +0xe4,0x57,0xfa,0x60,0x26,0x84,0xf6,0x61,0xe8,0xbb,0x4f,0xbf, +0x7f,0x63,0xa0,0x54,0x34,0x23,0x83,0x9f,0x80,0xfd,0xcf,0xcb, +0xa5,0x92,0x1f,0xdf,0x31,0x8d,0x19,0x34,0x39,0xca,0x94,0x31, +0x92,0x15,0x7b,0x3f,0x2d,0x57,0x58,0x43,0x6d,0x34,0x50,0x72, +0xe3,0xb5,0x14,0xd8,0xab,0x0b,0x55,0x1f,0x19,0x78,0x7c,0x80, +0xa8,0xe3,0xf2,0x8f,0xd2,0x52,0xdd,0x15,0xd2,0x54,0xde,0x72, +0x18,0xc5,0x8e,0xff,0x53,0xd6,0x46,0xd0,0x16,0x7e,0x03,0x5b, +0xf6,0x99,0x12,0x6d,0xc8,0x69,0x43,0x1e,0x4c,0x89,0xc3,0x1f, +0x10,0xfa,0x35,0x85,0x13,0x4a,0x7f,0xc0,0xf1,0xaf,0x59,0xbc, +0x2e,0x16,0x90,0x7b,0xf0,0x06,0x5e,0x52,0x83,0x78,0x09,0x0f, +0x74,0xc4,0x65,0xe6,0xc2,0x32,0x9c,0x7f,0x19,0xe6,0x0b,0x9b, +0x7b,0x59,0x31,0x12,0xf2,0x09,0x66,0xbc,0x84,0x0c,0xe6,0xf2, +0x52,0xf2,0x12,0xca,0x97,0xb2,0xe2,0x7b,0x1b,0x02,0x19,0x1a, +0x98,0xc1,0xc0,0x83,0x57,0x04,0xca,0x35,0xb0,0x9c,0x8e,0x72, +0x93,0x2c,0x82,0xbc,0x32,0xd0,0xc0,0x63,0xa6,0x42,0x77,0x3f, +0x2b,0x6f,0x92,0xbb,0xd2,0xae,0x1a,0xd3,0xae,0x7e,0x23,0x75, +0xd5,0x58,0x12,0xeb,0x54,0x1a,0x97,0xa7,0x32,0xc2,0x05,0x74, +0x26,0x79,0x0d,0x39,0x9d,0xe9,0x6d,0x66,0x99,0xfc,0x21,0xab, +0x30,0x73,0x7f,0x2b,0x69,0x57,0xcd,0xa2,0xc1,0xb7,0x82,0xcd, +0xa2,0x21,0x1a,0x93,0xc4,0x2f,0x4a,0xc9,0x91,0xa6,0xfd,0x2d, +0x61,0xd5,0x96,0xfb,0xf8,0x3c,0xb7,0x6c,0x97,0x14,0x27,0xee, +0xf5,0x7c,0x32,0x07,0xdd,0xf0,0xcf,0x4b,0xd0,0x01,0xf3,0xf0, +0xe3,0x25,0xf8,0x08,0x6b,0x30,0x98,0x52,0xe9,0x34,0x23,0xc5, +0x3f,0xa4,0x83,0x11,0x5b,0xd4,0x20,0x0f,0x43,0xfe,0xa4,0xd1, +0xc9,0x54,0x16,0x44,0x49,0xc1,0x47,0x03,0x75,0x4c,0x37,0x85, +0x74,0xca,0x5b,0x23,0x29,0x8b,0x17,0x7e,0x16,0xb6,0x89,0xa9, +0xf8,0xa5,0xa4,0xa8,0x5f,0x99,0xb6,0xcc,0x4c,0x4a,0xdf,0x87, +0x31,0x0e,0x14,0xa0,0x84,0x95,0x5f,0x96,0x4b,0xf3,0x42,0x46, +0x9f,0xe7,0x5e,0xfe,0x67,0x67,0xfb,0xc4,0x4a,0x82,0x73,0xfe, +0x82,0x25,0x3d,0xb3,0x99,0xec,0xda,0xec,0xf6,0x94,0x7a,0xeb, +0x0c,0x3e,0xc2,0xe1,0x80,0x75,0x90,0x2d,0x87,0xe6,0x16,0x30, +0x7b,0x36,0x4e,0x37,0x87,0xe9,0x68,0x30,0x00,0x06,0xd2,0xd6, +0x8d,0x6e,0xf8,0x89,0x64,0x7a,0x65,0xba,0x25,0x79,0xb6,0x65, +0xf3,0x91,0xb5,0x07,0x1a,0x0e,0x96,0x53,0xf3,0x9b,0x27,0x8b, +0x23,0xb9,0xeb,0xa4,0x25,0x35,0x73,0x77,0x48,0x59,0x7c,0xde, +0x8d,0xc5,0x77,0xfd,0xae,0x70,0x78,0xd1,0x02,0x96,0x33,0x0e, +0x46,0x1b,0x1c,0x70,0xb4,0x5d,0x01,0x0d,0xdf,0xb3,0x87,0xfe, +0xba,0x5e,0xf0,0x8a,0x13,0x93,0xe4,0x47,0x69,0x87,0x0c,0xff, +0x47,0x87,0x94,0x68,0x87,0x94,0x18,0xa1,0x03,0x37,0x91,0x1e, +0xfc,0xde,0x82,0x85,0x6f,0x1c,0xc8,0xa1,0xa5,0x21,0x2b,0xbc, +0x57,0x56,0x69,0x94,0xe2,0x88,0xec,0xd9,0xdd,0x19,0xfc,0xfe, +0x0f,0x9e,0x30,0x3a,0xf8,0x7a,0xc1,0xa5,0xe2,0x37,0x59,0xef, +0xb9,0x67,0xf1,0x64,0xff,0xd2,0xc0,0x95,0x6e,0xab,0x1a,0x34, +0xaa,0x66,0x15,0xce,0x69,0xcf,0xe4,0xc3,0x7e,0x75,0x82,0x09, +0x81,0x57,0xcb,0x6e,0x96,0xfc,0x92,0xf3,0x86,0x13,0x8f,0x88, +0xdd,0x84,0x22,0xab,0xb9,0xe2,0x96,0xb5,0x6c,0x8a,0xf4,0xe4, +0xb3,0x2e,0x2d,0xbd,0x49,0x4d,0xd8,0x8b,0xf1,0x62,0xbb,0x34, +0x8d,0xf1,0x9e,0x04,0x55,0x7a,0x54,0xfb,0x14,0xf9,0x7b,0xf1, +0x15,0x01,0xd5,0x9e,0x05,0x3e,0x5c,0x09,0x4e,0x26,0x41,0xd5, +0x9e,0x55,0x5e,0xa5,0x7e,0x5e,0x7c,0xa5,0x7f,0x8d,0x47,0xa1, +0x17,0x85,0x61,0x1e,0xb2,0xef,0xc9,0x92,0x4f,0x33,0x9b,0x8b, +0x28,0x90,0xc9,0x02,0x96,0x0d,0xdf,0x64,0xb5,0x6a,0xf1,0xea, +0x52,0x33,0xfe,0xdd,0xcb,0xfa,0xef,0x63,0x7f,0xe4,0x62,0xf1, +0x6d,0x8f,0x74,0x94,0xc2,0x85,0xb3,0xd4,0xb1,0x81,0x1a,0x68, +0x7d,0x13,0x2a,0x80,0x46,0x74,0xf2,0xb1,0xf3,0x11,0x91,0xca, +0x51,0x51,0x8a,0x31,0xf7,0x60,0x3a,0x64,0xe1,0xf4,0xb7,0xb0, +0xba,0x0f,0x57,0xbf,0x66,0xe0,0xa3,0xfc,0x7b,0x9a,0x96,0xa5, +0x4d,0xf8,0x30,0x8a,0xe9,0x48,0xcb,0xec,0x56,0x93,0x5d,0x33, +0x61,0x71,0x81,0x05,0x91,0x4f,0xef,0xa7,0x78,0x54,0xae,0x26, +0xbf,0x48,0x65,0x34,0x93,0xca,0xc8,0x4a,0x92,0xd1,0x2c,0x58, +0x49,0x56,0x09,0x35,0x4f,0x19,0xb8,0x80,0xba,0x04,0xd7,0x6a, +0xc3,0x5a,0x96,0x06,0xca,0xb5,0x44,0x13,0xd6,0x3e,0xf9,0xb4, +0x38,0x30,0x86,0x3c,0xd6,0x5f,0x8b,0x89,0xe6,0xc2,0xb3,0x5e, +0xf6,0xdf,0xb1,0x59,0x44,0x7e,0x60,0x50,0x9a,0xa1,0x9e,0xc0, +0xa2,0xa9,0x29,0xa1,0x78,0x31,0x9b,0xe2,0x45,0x68,0x83,0x78, +0x22,0x04,0x83,0xa5,0x18,0xcc,0x0c,0xe1,0x5c,0xf2,0x06,0xfe, +0x59,0xcc,0xd2,0x78,0xa7,0x40,0xc4,0x9b,0xb8,0x99,0xc2,0x07, +0xc1,0x06,0xc7,0x0f,0x31,0xe2,0x92,0x1e,0x6a,0x15,0x7a,0x6b, +0x70,0x9d,0xb1,0x6a,0x81,0x89,0x22,0x98,0xdf,0xfa,0xf6,0x2f, +0xd8,0xa4,0x52,0x64,0xc4,0x0a,0x2c,0xf6,0x91,0xaf,0x99,0xe0, +0xe8,0x84,0x42,0x35,0xc8,0x36,0xc4,0x62,0xd6,0x24,0x37,0xa4, +0x5f,0x95,0x86,0x93,0xa6,0x0c,0x69,0x0f,0x23,0xcb,0x9a,0x4a, +0xeb,0x07,0x8d,0x28,0x07,0x16,0xbd,0x5e,0x0b,0xf3,0x28,0x3b, +0x0e,0x66,0x12,0x0b,0x12,0x8a,0xe3,0x8a,0xa5,0x73,0x39,0x02, +0x8f,0xfa,0x45,0xfa,0x73,0xb8,0x53,0x2c,0x11,0xf4,0x99,0x55, +0xa7,0x0d,0x4e,0xf8,0xaa,0x7a,0x1c,0x8b,0x8a,0x70,0x9a,0xb6, +0x4b,0x2a,0xec,0x70,0x95,0xb9,0x51,0x52,0x7c,0x23,0x59,0x2d, +0xbe,0xf9,0xc2,0x77,0xf0,0x95,0x8a,0x68,0xf0,0xab,0xe0,0xc5, +0xfc,0x3b,0x42,0x98,0xf1,0xff,0xbf,0xcc,0x71,0x87,0x90,0x4b, +0x70,0x12,0xbe,0x85,0x49,0x2c,0xfc,0x28,0x9f,0x4a,0xa2,0xea, +0x0f,0xf4,0x1e,0xac,0x72,0x8e,0xe0,0xd3,0x3c,0xb3,0x4d,0x12, +0xdd,0x38,0x51,0x09,0x19,0x52,0x75,0xa3,0xf4,0x7d,0xd2,0xb7, +0x96,0xc9,0x7c,0xe4,0x8e,0xa0,0x25,0x1e,0x06,0x1c,0xd4,0x83, +0x2b,0xc9,0x30,0x4f,0x31,0x8e,0xd7,0xef,0x4e,0xe1,0x8f,0x5d, +0x3e,0x32,0xb0,0xbf,0x9b,0xc3,0x95,0x11,0x24,0x61,0x6b,0xbc, +0xce,0x19,0xfd,0xbe,0x38,0xfe,0xf6,0xd1,0x9b,0x51,0xb7,0x55, +0xc7,0xff,0x63,0x40,0xb9,0x6f,0x37,0xd6,0xc1,0x17,0x70,0x58, +0xd0,0xc3,0x58,0x36,0x2d,0x2f,0xb9,0x30,0xa1,0xc0,0x30,0x99, +0x8f,0x0e,0x8c,0x08,0x08,0x0f,0xa0,0xd4,0x4b,0xd4,0x03,0x1f, +0x9a,0xa3,0x12,0x2d,0x21,0x9a,0x09,0xd1,0x59,0x63,0x8e,0x9a, +0x56,0x52,0x95,0x9f,0x75,0x7d,0xc0,0xdc,0x4e,0x7e,0x2b,0x9d, +0x6d,0xb8,0x94,0x12,0xbe,0x9d,0x26,0x79,0x34,0x99,0xac,0xef, +0xd1,0xec,0x09,0xbd,0xc7,0x89,0x3d,0xd4,0xc2,0x3e,0x80,0xbe, +0x4c,0x0d,0x4f,0xc9,0x4f,0x49,0xab,0x9d,0xa9,0xe9,0x7f,0x25, +0xd4,0xc0,0x57,0x8c,0xf0,0x78,0x2e,0x11,0xa7,0x3d,0x12,0xa6, +0x31,0xe2,0x34,0xf4,0x24,0x8f,0x85,0x69,0x6b,0x59,0x3b,0x85, +0xd5,0xe2,0xb4,0x9f,0x59,0xe8,0xc7,0x75,0xa4,0x6c,0x7f,0x59, +0x50,0x4e,0x50,0x63,0x19,0x1f,0x5a,0xe4,0x53,0x14,0x90,0x29, +0x3d,0xad,0x12,0x54,0x08,0x96,0x53,0x3c,0x71,0xa2,0x07,0x4f, +0xc0,0x48,0xa9,0xae,0xfb,0x2a,0x26,0xa7,0x22,0xa7,0x21,0xb9, +0xc4,0x8c,0x7a,0xa7,0x77,0x90,0x55,0x98,0x3b,0x87,0xff,0x5a, +0x40,0x3c,0x8e,0xc4,0x28,0x0b,0x88,0xa2,0xb0,0xe4,0xa2,0x19, +0xf0,0x4c,0x10,0x2a,0x69,0x53,0x4b,0x9e,0xbc,0xbc,0xd6,0x9a, +0xff,0xe5,0xc6,0x8d,0x67,0xcd,0xcf,0x39,0x4a,0xb3,0x36,0xe0, +0x09,0x53,0xa1,0xa8,0x1f,0xf7,0xc3,0x06,0x70,0xeb,0x15,0x97, +0x30,0xa9,0xd5,0x09,0xd5,0xb1,0x15,0x9c,0x30,0x97,0x11,0xc7, +0x08,0xcb,0xc8,0xc1,0xca,0xb0,0xea,0xfd,0xf9,0x96,0xc1,0x7c, +0xae,0x7f,0xb6,0x5f,0x9a,0x3f,0x27,0xf2,0xe2,0x3b,0xf2,0x5f, +0x5e,0x3c,0xc4,0xd0,0x54,0xf9,0xdf,0x6e,0x3c,0xfe,0x1f,0x8b, +0x10,0xb2,0x2a,0x55,0x2b,0x77,0x6b,0xf1,0x83,0xe6,0xbe,0xae, +0xf2,0x4e,0xae,0x01,0x7f,0x65,0x33,0x73,0xd3,0xf3,0x52,0xf3, +0x39,0xb8,0x2d,0x4c,0xc1,0x0b,0x4c,0x4a,0x41,0x52,0x41,0x22, +0x7d,0x95,0xd1,0x25,0xbe,0xb1,0x82,0x22,0xe6,0x58,0x48,0xe4, +0xde,0x23,0x7b,0x39,0xb4,0x10,0xa7,0xc0,0x64,0xc6,0x6e,0xcb, +0x66,0x03,0x2d,0xf7,0x42,0x7b,0xbe,0x36,0xa3,0x3a,0xb7,0xa2, +0xa8,0xd6,0xbd,0xd5,0xbb,0xc7,0x5f,0x27,0x60,0x71,0x08,0x2a, +0x46,0xa4,0x53,0x20,0xae,0x92,0x01,0x5f,0x94,0x3e,0xab,0x7b, +0xe4,0xf9,0x36,0xf0,0xe3,0x3e,0x4e,0xfe,0x41,0x5a,0x71,0x15, +0x4d,0x0d,0x7e,0x8f,0x54,0x52,0x7d,0xcf,0x27,0x2e,0x57,0x4e, +0xb9,0x9c,0xcc,0x41,0x98,0x4a,0xc4,0xe9,0xd7,0x85,0xe9,0x8c, +0x38,0x1d,0xb7,0x11,0xda,0xd8,0xc5,0x3a,0x28,0x6c,0x13,0xa7, +0x7f,0xcb,0x82,0x80,0x11,0xc4,0xcf,0xd3,0xd2,0x6d,0x93,0xe7, +0x9e,0x32,0xf3,0x5a,0xb7,0xc6,0x4f,0x22,0xfd,0x85,0x74,0xa1, +0x26,0xdb,0xd3,0xd2,0xd6,0xd9,0x34,0xe4,0x5c,0xca,0x9b,0x6f, +0x36,0x32,0xd4,0xb5,0xe6,0x34,0xee,0xc1,0xc6,0x4e,0xdc,0x78, +0xcb,0x44,0x17,0x57,0x5b,0xc3,0x6a,0x1d,0x34,0xb7,0x82,0x4c, +0x46,0xd3,0x76,0x91,0x07,0x32,0xde,0x59,0x76,0x7c,0x77,0x5a, +0x7b,0x46,0x6b,0x26,0xa7,0xc7,0x5a,0x66,0xef,0x1b,0x52,0x85, +0x2e,0xa6,0x31,0x33,0xbd,0x5e,0xad,0x87,0xb5,0x48,0x56,0xdc, +0x86,0x9d,0x6c,0x70,0x4c,0x6c,0x96,0x5a,0x1e,0x0b,0x93,0xd2, +0x60,0x66,0xe1,0x8b,0xca,0x90,0x66,0x7e,0x95,0x3f,0x4e,0x0a, +0xc2,0x71,0x87,0xb9,0x34,0x76,0xb8,0xa8,0xaf,0xb4,0xb3,0x8a, +0x13,0x1f,0x8b,0x57,0x3e,0x99,0xc6,0x74,0x6a,0x1a,0x27,0xfe, +0xdb,0x34,0x2a,0xa9,0x69,0x80,0x83,0xbc,0x85,0xf4,0x09,0x13, +0xcc,0xfa,0x84,0x51,0x34,0xaa,0x8d,0x62,0x05,0x5d,0x88,0x26, +0xe2,0x84,0xfb,0xc2,0x04,0x46,0x9c,0x40,0x2d,0x4a,0x98,0xa0, +0x29,0x4e,0xa0,0x52,0xb7,0x37,0x23,0x7e,0x97,0x9d,0xaf,0x3b, +0xf6,0xda,0x05,0xf0,0x69,0x07,0xd2,0xf7,0xa5,0x85,0x5a,0xc5, +0x98,0xc6,0x98,0x9c,0xe4,0x40,0x05,0xa2,0xe0,0x28,0x46,0x3e, +0x85,0xdc,0x5e,0x71,0x13,0x3b,0x54,0x58,0x57,0x56,0x40,0x99, +0x45,0xa1,0x04,0x18,0x26,0xa3,0x11,0x93,0x54,0x7d,0xa1,0xa1, +0x5d,0xa5,0xc2,0xc8,0x87,0xb5,0x38,0xe5,0x1a,0xe1,0xab,0x4a, +0xa9,0xf6,0x64,0x13,0xdc,0x01,0x5b,0x98,0xd0,0xfd,0x7e,0x07, +0x9d,0xc2,0x4b,0xdc,0x78,0x54,0x33,0x87,0x84,0x55,0x18,0x86, +0x47,0x21,0x14,0x55,0x99,0xa5,0x27,0x16,0x9d,0x5c,0x74,0x2a, +0xd6,0x94,0x07,0xfd,0x38,0xd8,0x9d,0x0c,0x5a,0x99,0xa9,0xa1, +0x29,0xa1,0x89,0x54,0x17,0xb9,0x77,0x29,0xe2,0xb0,0x92,0x99, +0x62,0xbc,0xbc,0x53,0x7a,0x0a,0xa1,0x29,0x3d,0x85,0x78,0x0a, +0x6a,0x0c,0xe8,0x89,0xf3,0x25,0x5a,0xaf,0x8c,0xeb,0x19,0xe1, +0x6b,0x25,0xdc,0x46,0x51,0xdf,0x36,0x1a,0xbb,0x50,0xf8,0x48, +0x5a,0x25,0x80,0xd7,0xcd,0x9a,0x26,0x2a,0xee,0xc6,0x57,0xac, +0x4b,0x64,0x5c,0xad,0x5a,0x2e,0x0b,0x4b,0xe3,0x60,0x5e,0x32, +0x4c,0xcd,0x0f,0x69,0xe7,0x51,0x31,0x14,0xe7,0x1f,0xc1,0xf9, +0x31,0xdc,0x55,0x23,0x9c,0xc9,0xee,0x28,0x0c,0xbb,0xad,0x2a, +0x2a,0x89,0xaf,0xe9,0xbd,0x36,0xc8,0x96,0x51,0x76,0x98,0xf6, +0xdf,0xe8,0xa6,0x8f,0x86,0x23,0xb0,0x17,0x5f,0x12,0x61,0x93, +0xb1,0x18,0x26,0x0c,0xf5,0xb0,0x1e,0xfd,0x44,0x50,0x10,0x55, +0x44,0x05,0x16,0x9e,0xc2,0x6d,0x62,0x86,0xe5,0x7d,0x2c,0x94, +0xcf,0x21,0xa6,0x58,0xde,0x4f,0x1b,0xb3,0x88,0x11,0x96,0x0f, +0x49,0xeb,0x3d,0x09,0x79,0x9c,0xff,0x53,0xed,0x70,0x93,0x57, +0x23,0x6f,0xe8,0xba,0xde,0x5b,0x3b,0x8c,0x13,0xc6,0x74,0x90, +0x3b,0xc1,0xf7,0x7d,0x1f,0x38,0x17,0x75,0xf2,0xdb,0xea,0x36, +0x54,0x6e,0xc8,0xa7,0x29,0x61,0x4b,0x3d,0x91,0xd9,0x08,0x49, +0xfd,0xe2,0xb7,0xff,0x8e,0x19,0xbe,0x22,0xe4,0x0e,0xb0,0xf2, +0xa1,0x50,0xaa,0xbd,0xad,0x54,0x7b,0x47,0x24,0xed,0x6d,0x97, +0xba,0x32,0x96,0x6a,0x6f,0x2c,0x03,0x79,0x1e,0x04,0x7d,0xe1, +0x4f,0xf0,0x65,0xb1,0x85,0x3a,0x32,0x8c,0x85,0x08,0x1c,0xcb, +0xe2,0x2c,0x71,0x26,0x81,0x7a,0x34,0xa4,0x38,0x15,0x0e,0x41, +0x3d,0xc1,0x7a,0xb0,0x84,0x7a,0x16,0x1b,0xad,0x09,0x1a,0xac, +0x02,0x03,0xa9,0x20,0xa4,0x01,0x01,0x83,0x37,0x68,0x40,0xd3, +0xbe,0x75,0x28,0x31,0xba,0xe2,0x78,0xd3,0xfb,0xfb,0x01,0xf8, +0x2a,0x0f,0xe6,0xc4,0xc2,0x5a,0xae,0x61,0x10,0xfd,0x99,0xa4, +0xf6,0xb8,0xce,0xd8,0x5e,0x8b,0x58,0xfe,0x08,0x4e,0x0d,0x42, +0x15,0x4b,0xe4,0xaa,0xac,0xf9,0xb4,0xb2,0xb4,0xba,0x94,0x86, +0x24,0x1c,0x93,0x8f,0x23,0x1b,0xe7,0x7a,0xe8,0x58,0xea,0x6e, +0xdb,0x5d,0x6a,0xc1,0xdf,0xb8,0xd2,0x75,0xa3,0xfe,0xdb,0xca, +0xed,0xcd,0x3b,0x7b,0xf7,0x70,0xe2,0x36,0xd9,0x34,0x02,0xa3, +0x60,0x5c,0x0f,0x8e,0xfb,0xdd,0x6c,0x1e,0x4e,0xb4,0x80,0x89, +0x52,0xc1,0x59,0x0b,0xf8,0x99,0x22,0x75,0x41,0xb4,0x22,0x32, +0x75,0x74,0x95,0x9f,0xe9,0xff,0x9b,0x15,0xde,0x28,0xfc,0x2a, +0xd6,0xd3,0x90,0xbb,0x57,0x30,0x21,0x27,0x50,0xed,0x10,0x8e, +0x75,0xc3,0x11,0xee,0x30,0x22,0x1c,0xbe,0x3c,0x0e,0xaa,0x1c, +0xf6,0x88,0x53,0xc8,0xf9,0xfc,0xb3,0x85,0x45,0x2a,0x69,0x60, +0xd5,0x83,0x33,0x7e,0x33,0x5d,0x80,0xea,0x16,0x3f,0xee,0x67, +0x71,0x85,0x93,0x26,0x7e,0x31,0x5f,0xb5,0xca,0xf1,0xc5,0xa3, +0xce,0xfb,0x39,0x7f,0x2a,0x53,0x1a,0x7a,0xc6,0xfe,0xa4,0xc9, +0x51,0x1b,0xce,0xe7,0x44,0xe4,0x51,0xef,0x69,0x3a,0xd2,0x91, +0x70,0xb7,0x99,0xeb,0x79,0x45,0x97,0x92,0xd4,0x12,0x06,0x63, +0xfb,0xcf,0xfd,0x46,0x01,0xc5,0x66,0xa1,0x86,0xdc,0x84,0xd3, +0xed,0x78,0xfa,0x0a,0xe4,0x76,0x62,0xee,0x6d,0xe3,0xed,0x98, +0x62,0x0d,0x29,0x7a,0x78,0xcc,0x16,0x8e,0xed,0xc0,0x34,0x1b, +0xe1,0x45,0x07,0x2b,0xbf,0x22,0xa6,0x50,0xf5,0xef,0xa0,0xd8, +0xf9,0xa8,0x84,0x9d,0x77,0x4a,0xbc,0x6f,0xbc,0xd0,0x0c,0xe3, +0x19,0x1a,0x5f,0x3b,0x88,0x78,0x86,0xc6,0xad,0x33,0x8c,0x11, +0x3c,0x20,0x86,0x22,0x19,0x66,0x05,0xa2,0xfe,0x7f,0x1a,0x7a, +0x22,0xb9,0x22,0x2d,0xd2,0x4e,0x22,0x6f,0xb3,0x9f,0xd7,0xf4, +0x56,0x7a,0x34,0xf0,0xf6,0x01,0x2b,0x7d,0x34,0xc2,0x39,0x61, +0x7c,0x05,0x79,0xb0,0xef,0x81,0xff,0x6d,0x9f,0x92,0x4e,0x5e, +0xb7,0x62,0x45,0xf9,0xb6,0x74,0xaa,0xf1,0xdf,0x84,0x1c,0x52, +0xd6,0x58,0xd0,0x9c,0xdd,0xce,0x41,0xd9,0x00,0x26,0x32,0x49, +0x95,0x09,0x35,0x71,0x0d,0xe6,0x89,0xfc,0x7e,0x64,0x3d,0xd6, +0x18,0x6f,0xe4,0x70,0xfc,0x2d,0x02,0xab,0xfb,0x51,0x11,0x16, +0x98,0xe2,0x02,0x9c,0x68,0x7a,0x8f,0xe2,0x31,0x8c,0xf6,0xc5, +0xe5,0x34,0xee,0xce,0x52,0xad,0xb7,0xa7,0xa9,0x64,0x46,0x3d, +0xcc,0x4b,0x04,0x7b,0xe5,0x37,0x0c,0x2e,0x8a,0xc1,0xd1,0xc7, +0xd6,0xab,0x5a,0x1d,0x8f,0x8c,0xf4,0xa2,0x62,0x48,0x37,0x52, +0xbc,0xc1,0x5c,0x29,0xce,0x7f,0x94,0xa4,0x96,0xf4,0xf8,0x02, +0x4c,0x01,0x4f,0x15,0x9a,0xe4,0xce,0x66,0x7d,0x93,0x95,0xa5, +0x82,0x4b,0xc5,0xaf,0xa5,0xe9,0x1f,0x17,0xf9,0x09,0x89,0x03, +0xbe,0x50,0x78,0x2b,0x56,0x2f,0x62,0x64,0xb7,0xef,0x90,0x5e, +0x5c,0x00,0x4b,0x41,0xa9,0x17,0x7d,0xd8,0xa4,0xb2,0x84,0xf2, +0xf8,0x32,0xab,0x04,0xfe,0xc0,0x3a,0x6f,0x2d,0x6b,0xc3,0x46, +0x4f,0x3e,0xbf,0x34,0xbb,0x32,0xa3,0x86,0xeb,0xa6,0xac,0x5b, +0xd5,0x1c,0xa6,0x31,0x11,0xea,0x26,0x6b,0x16,0xad,0xa9,0xb4, +0xe1,0xff,0x7e,0xdb,0xf2,0x28,0x1e,0x46,0x71,0xb1,0x4c,0x9c, +0x7a,0xf3,0xfa,0xdf,0xe7,0x55,0x75,0xf0,0x4b,0x7e,0xb1,0x7c, +0x18,0xf9,0x81,0x8a,0xbe,0x5f,0x36,0x96,0x3c,0x67,0x4e,0xec, +0x39,0xb0,0xc1,0x4f,0xb7,0x3d,0x8c,0xaf,0x7a,0x92,0xf1,0x28, +0xe1,0x1e,0xd7,0x8c,0x7e,0xec,0xc5,0xce,0xf3,0xdd,0xe7,0xba, +0xad,0x2e,0xf0,0x31,0xb8,0x60,0x1f,0xae,0x74,0x5f,0xd0,0xe2, +0xcb,0xe7,0x0f,0x67,0x3e,0x4c,0x7e,0xc6,0x15,0x51,0xa2,0x86, +0x17,0x5d,0x70,0x22,0x4e,0xc7,0x85,0xaa,0x55,0x56,0x14,0x77, +0x4e,0x6c,0x91,0x0e,0x17,0x5a,0xa5,0x2c,0xad,0x7b,0x5f,0x5c, +0x89,0xa3,0x3f,0x20,0x5f,0x35,0xc0,0xe3,0x04,0x58,0xe4,0x0b, +0x13,0xe0,0x9c,0x0a,0x66,0x60,0x34,0x89,0x4e,0x8c,0x8e,0x8d, +0x8a,0x92,0x48,0xd5,0xb7,0x30,0x91,0xe2,0xa3,0x89,0xaf,0x60, +0x5e,0x1f,0xce,0x7b,0x63,0xbd,0x18,0x17,0x9a,0xc1,0x42,0x0d, +0x9c,0x80,0x59,0x7f,0x32,0xfb,0x74,0xac,0x16,0x2e,0x5d,0x5a, +0x69,0xc9,0xbf,0xfe,0xb5,0xe9,0xd5,0x45,0xe9,0xe0,0xaa,0x8f, +0x5d,0xd0,0xc6,0xc4,0x9e,0x97,0xd0,0xd6,0x4b,0xfc,0xaa,0xa6, +0x59,0x51,0xbc,0x25,0xfb,0x92,0x48,0xd2,0x81,0x85,0x12,0x4a, +0x58,0x68,0x4e,0x3e,0x89,0x08,0x9e,0xc0,0xbf,0x04,0x35,0xb7, +0x81,0x26,0x0b,0x34,0x3d,0x93,0xad,0xa0,0x79,0x87,0x86,0x49, +0x63,0x99,0x09,0x4d,0xed,0x7d,0x4f,0x0d,0x57,0x61,0x05,0x06, +0xb2,0xd8,0x7b,0x10,0xa7,0xac,0xc3,0x99,0xaa,0xad,0x1e,0x8a, +0x4f,0xa5,0xfa,0xb5,0xea,0x30,0xac,0x02,0xeb,0x58,0x1c,0x2d, +0xde,0x27,0xb2,0x25,0x68,0x2a,0x4f,0xee,0xa3,0x4e,0x00,0x0a, +0x8f,0xc5,0xde,0xb5,0x8c,0xb0,0x53,0x18,0x4f,0x40,0xc1,0x06, +0x15,0x66,0x5a,0x7d,0x14,0xef,0xb5,0x09,0xf7,0x5e,0x75,0xb1, +0xb0,0x4b,0x09,0x14,0xac,0x51,0x61,0x96,0xd5,0xdf,0xe2,0xbd, +0x76,0x81,0xa2,0xbd,0x2e,0x56,0xac,0x41,0x6a,0x8f,0xa6,0xe1, +0x5f,0xdb,0x2c,0x55,0xad,0xf7,0x53,0x1c,0x00,0xc5,0xb4,0x0f, +0x60,0xad,0x52,0xe7,0xc0,0x82,0x8e,0x12,0x3e,0x69,0x81,0x27, +0x6c,0x9f,0x1b,0x41,0xc7,0x43,0x5f,0x9b,0x69,0xa9,0xd6,0xfa, +0x28,0x5e,0x7a,0x99,0x01,0x1c,0x55,0xbb,0xf4,0x85,0x33,0xa2, +0x2a,0x89,0x64,0x8e,0xc6,0x9c,0x4b,0x56,0x13,0x26,0x3a,0x88, +0x93,0x58,0x87,0xf4,0x88,0x3a,0xd5,0x74,0xa6,0x28,0x25,0xb9, +0x46,0x0d,0x56,0xb3,0x6e,0xd2,0x59,0xe1,0x31,0x4d,0x52,0x2c, +0x71,0xec,0x44,0xc7,0x1f,0x41,0x07,0x1e,0xa2,0xce,0x03,0xb0, +0xeb,0x46,0xbb,0x1f,0xcd,0xb5,0xd0,0xd4,0x12,0x4c,0xd7,0xa3, +0x36,0x3e,0x04,0x6d,0x2d,0x74,0xb0,0x06,0x07,0x29,0xe0,0x78, +0x53,0x87,0xf7,0x6b,0x76,0x6e,0x73,0xad,0x75,0x77,0xe7,0xeb, +0xdc,0x6b,0x1d,0xab,0x6c,0x39,0x71,0x2c,0x8c,0xfd,0x2c,0x38, +0x0d,0x49,0x70,0x1a,0xe6,0xe4,0x77,0xb1,0x7a,0x1e,0x03,0xef, +0xa0,0x8f,0x78,0xb5,0x39,0xb6,0x3b,0xd6,0x78,0xb9,0xf2,0x8d, +0x6e,0x0d,0x0e,0x75,0xd6,0x1c,0xa4,0xc2,0x74,0xb2,0x02,0x99, +0xe7,0x2c,0xd4,0x51,0x1e,0x36,0xf6,0x39,0x0d,0x6e,0x58,0x87, +0xd3,0x09,0x30,0x8b,0x91,0x61,0x60,0x9d,0xd2,0x1b,0x18,0xbb, +0x58,0x3a,0x1b,0xea,0x09,0xc1,0x59,0xce,0x7d,0xf0,0xa5,0x1a, +0xec,0xc0,0x99,0x66,0x3f,0xe1,0x44,0xea,0x69,0x7e,0xae,0x4b, +0xec,0x54,0xf3,0x0d,0x7e,0x6f,0xcd,0xeb,0x39,0xff,0x98,0x9a, +0xc5,0x92,0x0b,0xad,0xfa,0xb0,0x78,0x1a,0x7c,0xcb,0xc4,0x0f, +0x2a,0x8e,0x17,0xbe,0xa2,0x0a,0xb4,0x16,0x4a,0x3a,0xf1,0xcc, +0xf7,0x90,0xdd,0x85,0xd9,0x8f,0x8c,0xb4,0xf1,0x1b,0x2b,0xf8, +0x66,0x13,0x2b,0xee,0x15,0x45,0xea,0xe6,0x9b,0xa8,0x9b,0x1f, +0x94,0xdc,0x7c,0x8b,0xe4,0xe6,0x1c,0x75,0x73,0x8e,0x91,0x4d, +0xc6,0x7f,0x48,0x61,0x2f,0x10,0xf1,0x21,0x92,0xee,0x60,0x56, +0xf0,0xa7,0x5e,0xef,0x3d,0x20,0x78,0x33,0xe2,0x21,0xa4,0x01, +0x78,0xb7,0xf0,0x0d,0xec,0x66,0x45,0x63,0xe4,0xc9,0x8f,0x82, +0x92,0x16,0x8b,0x65,0xb8,0x80,0x44,0x95,0x1c,0xaa,0x3c,0x54, +0x68,0xbe,0x8f,0xcf,0x08,0x4e,0xf7,0x49,0x08,0xa4,0xee,0x7c, +0x8a,0x64,0x96,0xa5,0x97,0x25,0x16,0x9b,0x66,0xf1,0x91,0x5e, +0x87,0x3c,0x42,0x3c,0x38,0x71,0xb6,0xb9,0x6c,0x42,0xef,0xa7, +0x85,0x86,0xcd,0x04,0x0f,0xc3,0x33,0x38,0xcc,0xbe,0x50,0xa2, +0x8d,0x3f,0x69,0x43,0xee,0x84,0x3b,0x09,0xf5,0x50,0x3f,0x9c, +0xc2,0x82,0xbb,0x12,0x6d,0x51,0xfb,0x61,0xb1,0x1f,0x37,0x12, +0x41,0xa5,0x47,0x7e,0xdb,0x42,0x18,0x3b,0x4b,0x5c,0x61,0xf1, +0x8f,0x7a,0x8f,0xb8,0x85,0x41,0x14,0xd7,0x91,0x3e,0x08,0x36, +0x1b,0xa4,0x28,0xee,0x05,0xf6,0xb3,0xc2,0x51,0xa5,0x3e,0x88, +0x34,0x1b,0xa6,0x2f,0xff,0xa6,0x2f,0x71,0x29,0x9c,0x27,0x38, +0x13,0x83,0x61,0x26,0x2b,0x5b,0xae,0x44,0x5b,0x91,0x20,0x1d, +0x60,0x91,0x21,0xfb,0x9a,0x24,0x25,0xc6,0x9e,0x4a,0x3a,0x01, +0x9b,0x17,0xf0,0x85,0xf5,0x05,0xae,0x6f,0x6b,0x5b,0xca,0xab, +0xca,0x94,0x13,0x12,0x2e,0x9c,0x49,0x8a,0x86,0xed,0x73,0xf9, +0xca,0x66,0xd4,0x7a,0x7d,0x24,0x21,0xfa,0xec,0xd1,0xa3,0xca, +0x91,0x91,0x31,0xe7,0x15,0x73,0x4a,0x92,0xaa,0x5a,0x55,0x1a, +0x8c,0x9c,0xd9,0xb5,0x4e,0xf6,0xb8,0xd8,0x88,0xa6,0xf1,0x27, +0x87,0x13,0xa2,0x4f,0xd3,0xcf,0xa3,0x8e,0xd2,0xcf,0x73,0xcb, +0xe3,0xab,0xda,0x55,0x1a,0x8c,0x9d,0x58,0x4d,0x3b,0x47,0x9c, +0x6e,0xa2,0x5a,0x66,0xf5,0xa4,0xae,0xa5,0xb4,0xa8,0x58,0x59, +0x78,0x06,0xeb,0x49,0xa4,0xc7,0x41,0x97,0x10,0xbf,0xee,0x30, +0xbe,0xa0,0x3a,0xb3,0x29,0xb9,0x86,0x13,0xf7,0xa5,0x90,0x48, +0xf7,0x70,0xcf,0x50,0xef,0xee,0xfd,0x7c,0x5e,0x55,0x56,0x7d, +0x72,0x3d,0xf7,0x30,0x99,0x1c,0x71,0x0d,0x77,0xdb,0xeb,0xf3, +0xe9,0x6b,0xb9,0x6d,0xc9,0x75,0x9c,0x18,0x92,0x40,0xa2,0xdc, +0xf7,0xbb,0xed,0xf5,0xee,0x0a,0xe1,0xf3,0x2b,0xf2,0x3b,0x93, +0xea,0xa4,0xfa,0xf7,0xeb,0xc9,0x65,0x18,0x25,0xdb,0x8f,0xa3, +0x2e,0xc3,0x1a,0xf9,0x5f,0x8c,0x2c,0x10,0x87,0x08,0x98,0x89, +0xef,0xd0,0x0c,0x32,0xd8,0xe8,0xd0,0xe8,0xd0,0x28,0x0a,0xf6, +0x6e,0xe2,0x85,0xa1,0x3a,0xd9,0x57,0x6e,0x43,0x70,0x41,0x9c, +0xc8,0x24,0xe4,0x25,0xe4,0xc7,0x51,0x48,0xe8,0x07,0xb3,0xc9, +0x12,0x31,0xf4,0x35,0xbb,0x4e,0x1c,0x4b,0x60,0xa4,0xec,0x2b, +0x1c,0x49,0x25,0xf2,0xa3,0x50,0x4a,0xe0,0xab,0x64,0xf8,0x22, +0xed,0xcf,0xac,0xd3,0x5d,0xbc,0xe7,0x09,0xf7,0x13,0x6e,0x31, +0xdc,0x2b,0x18,0xd1,0x81,0x23,0x7e,0x32,0xc7,0x08,0x36,0xec, +0x54,0xd8,0xa9,0xd0,0xd3,0x1c,0x58,0x5b,0xa0,0x23,0x7b,0xe0, +0xcc,0xfe,0xd3,0xfb,0x4f,0x73,0xc2,0x83,0x24,0x82,0xa3,0x99, +0xe0,0xe3,0x71,0xd9,0x6a,0x57,0xd9,0x5b,0x59,0xd7,0x4b,0x7a, +0x4a,0x83,0x1b,0x79,0xdb,0x00,0x8b,0x50,0x83,0xfd,0xdc,0xef, +0x66,0xd4,0xfd,0xad,0x72,0xc3,0x7b,0x55,0x61,0x12,0x53,0x9f, +0x96,0x59,0xa3,0x76,0x8d,0xb5,0x4a,0x51,0x14,0x41,0x2c,0x92, +0x9e,0xcd,0x86,0xfe,0xd7,0xb3,0x59,0x50,0x10,0x0b,0x50,0x81, +0x91,0xb9,0x4a,0xeb,0x24,0xf2,0x99,0xf8,0x94,0xf8,0x94,0xb8, +0x54,0xcb,0x2c,0xde,0x61,0xe5,0xa6,0x6d,0xea,0xa6,0x25,0x76, +0x7c,0x7e,0x4a,0x5e,0x5a,0x4e,0x1a,0xb7,0x9d,0xc5,0xb9,0x4e, +0xeb,0x66,0xe9,0xa8,0x36,0x38,0x5c,0x6d,0x6d,0xea,0x2d,0xb8, +0xa2,0x2c,0x6c,0x5c,0x20,0x9d,0x2c,0x68,0xa1,0x08,0x6b,0x98, +0xf6,0x8c,0xcc,0x46,0x35,0x41,0x19,0x57,0xb3,0xe5,0x79,0x25, +0x45,0x39,0x85,0x9c,0x76,0x34,0xd9,0x17,0xea,0xb7,0xd7,0x77, +0xbf,0x74,0xf2,0x7a,0x41,0x4e,0x6e,0x5e,0x56,0x3e,0xf7,0x1b, +0x9a,0x12,0xd4,0x8e,0x65,0x6e,0x81,0x36,0xdb,0xb7,0x89,0x7c, +0x0f,0x5b,0x36,0xb1,0x18,0x6e,0x4f,0xb4,0x70,0x17,0x1b,0x5b, +0x78,0xb1,0xe8,0x5c,0x09,0x27,0xad,0xa4,0xdf,0xa2,0x85,0x5b, +0x28,0x74,0x0a,0x16,0xf2,0x08,0xe8,0xb1,0x3f,0x66,0x3e,0x2e, +0xee,0x2e,0xf7,0x69,0xe3,0x4d,0xfd,0x36,0x07,0xe1,0x17,0x21, +0x9c,0x54,0x3d,0x29,0x20,0x12,0xe7,0xb8,0xa2,0xa2,0xea,0xbe, +0xfa,0x80,0xb6,0xe0,0x72,0xab,0xbd,0x7c,0x99,0x6b,0xb1,0x75, +0xb6,0x73,0x53,0x3e,0x7f,0x32,0x32,0x26,0x2a,0x26,0xaa,0xdd, +0x9e,0xbf,0x0c,0x2a,0xe9,0xb0,0xe1,0x2c,0x9c,0xe5,0xde,0x89, +0x2d,0x03,0x42,0xcb,0xf7,0xbd,0x8c,0x38,0x1a,0x87,0x89,0x60, +0xdb,0xdd,0x6d,0x09,0x23,0x2c,0x70,0x04,0x4e,0xf9,0xf4,0xc7, +0xca,0xb2,0x4b,0xb4,0xb5,0xb2,0x84,0x67,0xdd,0x2c,0xca,0xd5, +0x09,0x75,0x45,0x2f,0xf9,0x45,0x09,0x19,0xfc,0xa1,0xf0,0x5e, +0x6c,0x9d,0xcb,0x08,0xcb,0x85,0x69,0x84,0x7e,0x97,0x83,0x29, +0x0c,0x6a,0x29,0x20,0x27,0xb5,0x59,0x98,0x82,0x5a,0x12,0x45, +0x9b,0x42,0x29,0x1a,0xaa,0x88,0xda,0x64,0xa0,0xf9,0xd6,0x93, +0x8a,0x61,0xeb,0x62,0x3e,0xd0,0x4c,0x77,0x83,0xa9,0x33,0x4d, +0xab,0x47,0x40,0x95,0xfa,0xb6,0x02,0xbc,0x43,0x85,0x37,0xa0, +0xd6,0x83,0x6a,0xbf,0x9b,0xce,0xc3,0xa9,0x16,0x30,0x75,0x31, +0xbd,0xf7,0x3b,0x18,0x31,0x13,0xa7,0x59,0xc2,0x34,0x5c,0xd3, +0x0f,0x6b,0x80,0xef,0x66,0x9b,0x05,0x9e,0x60,0xeb,0x11,0x9c, +0xb7,0x0b,0x89,0x6a,0xbb,0x47,0xdb,0xaf,0x79,0x7f,0x24,0xc0, +0x22,0x65,0xd0,0xc2,0x6c,0x64,0x99,0x74,0x63,0xc5,0xb7,0x4c, +0x53,0x6a,0x5a,0xb3,0x9a,0xac,0x16,0xb3,0x58,0xb1,0x51,0xfe, +0x88,0x5e,0x7c,0xbe,0xcc,0x01,0x1d,0xe5,0x97,0x58,0x59,0x8f, +0xf0,0x1b,0xc1,0x15,0xa0,0x07,0x2b,0x18,0xf9,0x22,0xb9,0x02, +0x59,0x22,0xbc,0xa7,0x4c,0xfc,0x39,0x1a,0x92,0x45,0xb8,0xed, +0x2d,0x0b,0xaf,0xd1,0x8f,0x9c,0xef,0x3b,0x3b,0x7c,0x4b,0x05, +0x56,0xa0,0x1e,0x23,0x7e,0x73,0x87,0xc0,0xb6,0x79,0x9f,0xb6, +0x65,0x6e,0x11,0x4e,0x92,0x8d,0xe6,0xf7,0xd1,0x62,0x9b,0xb9, +0xf0,0xb0,0xd7,0x14,0x2c,0x6e,0xf5,0xea,0xc2,0x9e,0xbe,0x5e, +0xd1,0x9a,0x49,0x2f,0x4c,0x2b,0x4e,0x2e,0xb2,0xce,0xe3,0xbd, +0x37,0x58,0x6d,0xd5,0x33,0x2b,0xb7,0xe3,0x73,0xb3,0x72,0xf3, +0x72,0x0a,0x38,0xfc,0x0b,0x58,0x1a,0x5a,0x07,0x3e,0xc0,0x46, +0x29,0xb4,0x6e,0xa4,0xa4,0x84,0x11,0xab,0x68,0xa0,0x14,0x74, +0x84,0x73,0x04,0xf7,0x6c,0x84,0x3d,0x2c,0x4c,0x55,0xba,0x4f, +0x5b,0x0c,0xfd,0x0b,0x7b,0x1e,0xe1,0x1e,0x16,0xb3,0xcc,0x09, +0x5a,0x6c,0x04,0x0b,0x16,0xdc,0xd0,0x82,0xd0,0xc6,0x7d,0xa6, +0x97,0x36,0xc0,0xe2,0x11,0x5a,0xb0,0x62,0x30,0xde,0x26,0x6d, +0x97,0x2a,0x1f,0x67,0xdd,0x34,0x4b,0xe3,0x0f,0xe8,0x7b,0x6f, +0xb1,0x37,0xe1,0x84,0x1c,0xd8,0x4a,0x4a,0xf5,0x4b,0x75,0x72, +0xb6,0x0f,0xa4,0xf1,0xfb,0x6e,0x07,0x3c,0xf0,0x1d,0xe6,0xd0, +0x21,0x88,0xe4,0x1a,0xa6,0xed,0x4c,0xdd,0x3e,0x94,0xc2,0x1f, +0xfe,0xf6,0xe0,0xcd,0xd0,0x01,0x0e,0x9d,0x8e,0x90,0x78,0x93, +0xb8,0xd5,0xe7,0x0c,0xae,0x24,0xf0,0x27,0xaf,0x1c,0x7f,0x72, +0xb4,0x8f,0x26,0xfc,0x65,0xb2,0x44,0x72,0x4d,0x7f,0x37,0x9e, +0xb1,0x12,0x6e,0x77,0xb1,0xf2,0x37,0xe5,0x9f,0x1f,0x77,0x6f, +0x93,0xfa,0xbc,0x8d,0xf6,0xf9,0x4b,0xb1,0x92,0xe2,0x18,0x41, +0x53,0xd8,0x48,0xa2,0x8a,0x0e,0x95,0x1c,0xce,0xb5,0xde,0xc7, +0xa7,0x87,0xa5,0x05,0x24,0x05,0x73,0x90,0x75,0x8a,0xa4,0x17, +0xa6,0x16,0xa6,0x94,0x58,0x65,0xf1,0x47,0xbc,0x0f,0xf9,0x84, +0xf9,0x70,0xa2,0xa2,0xa5,0xf0,0xbe,0x9b,0x11,0x7b,0xd4,0x09, +0x36,0x0a,0x67,0xa0,0x51,0x0a,0xbf,0x63,0xc8,0x2d,0x41,0x49, +0x97,0xa5,0x8c,0x7c,0x1c,0xb9,0x2b,0x28,0x6d,0x61,0xd5,0x71, +0x36,0xf1,0x2e,0xd6,0xab,0x75,0xca,0x09,0x70,0xe1,0x9b,0x42, +0x07,0xbd,0xaa,0x28,0xa1,0xfe,0x80,0x5f,0x92,0x86,0xbe,0x8a, +0x3b,0xd9,0xd7,0x2d,0x32,0xf8,0x70,0x43,0xdf,0x5d,0x6e,0x56, +0x9c,0x70,0x16,0xe6,0x92,0x6a,0xe7,0x96,0x4d,0x85,0x26,0xed, +0xa5,0xfc,0xde,0x7e,0xfb,0xbb,0x1e,0xcd,0x1c,0xc5,0x0e,0xeb, +0x89,0x6f,0x54,0x6c,0xa5,0x9a,0xb4,0xc8,0x7a,0x3a,0xbb,0x27, +0xef,0xc0,0x55,0x55,0xca,0x55,0x1a,0xa5,0xbd,0x54,0xf7,0xa4, +0xda,0x32,0x0b,0xd9,0xf1,0x02,0x27,0xf8,0x92,0xfb,0xd7,0x4a, +0x3b,0x62,0xbf,0xa3,0x88,0x21,0xa4,0x07,0x74,0x25,0xc4,0x70, +0x31,0x46,0xf5,0xd2,0x96,0xaa,0x2a,0xbd,0xef,0x8f,0x25,0x1f, +0x3f,0x13,0x75,0x4c,0xf9,0x58,0xb4,0x62,0x4c,0xfb,0xab,0x4e, +0x8d,0x37,0x16,0x8b,0x51,0xc9,0x9a,0xa6,0x94,0x03,0x86,0x2e, +0xc6,0xeb,0xf5,0x39,0x68,0x35,0x26,0x4f,0xee,0x14,0xb4,0xc7, +0xde,0xe3,0x62,0xd1,0xbf,0x07,0xfc,0x63,0x99,0xf8,0x9d,0x85, +0x56,0xbf,0xe8,0x94,0x36,0xf1,0xab,0xee,0x38,0x5e,0x3a,0x38, +0xcc,0xc1,0xa4,0x4e,0x9c,0x41,0xff,0x6f,0x99,0xf5,0x03,0xe6, +0xa0,0x9e,0xab,0xbe,0xe6,0x36,0x4e,0xcc,0x85,0xfc,0xcf,0xe2, +0xdb,0x23,0x89,0x6f,0xcf,0x7f,0x3f,0x53,0x94,0xa5,0x80,0x16, +0xe9,0x16,0xbf,0xb1,0x64,0x85,0xd6,0x35,0x44,0x7c,0x61,0x01, +0x39,0xe8,0x8f,0x5f,0x31,0xd2,0x02,0xc0,0x51,0x4c,0x63,0x56, +0x56,0xa3,0x1a,0x78,0x43,0x26,0x2b,0xba,0x79,0x10,0x3b,0x43, +0x03,0xeb,0x0d,0xce,0x95,0xb6,0xfc,0xc3,0xe6,0x9b,0x7d,0x1d, +0xd7,0x38,0x88,0x38,0x4d,0x06,0x2d,0x7b,0x2c,0x5a,0x4c,0x9a, +0xea,0x79,0x87,0x5e,0xcb,0x41,0xe3,0x76,0xaa,0xb6,0x45,0x42, +0x38,0x81,0x70,0x98,0x74,0xa5,0x43,0x0f,0xc6,0x63,0xf8,0xa0, +0x85,0x31,0x1e,0xb6,0x85,0xc3,0x9b,0x29,0x36,0x86,0xb4,0x8d, +0x9f,0xda,0x98,0x8a,0xc6,0xcc,0xd9,0x9c,0xb3,0x79,0xf9,0x2a, +0xf0,0x15,0xcc,0xb0,0x5a,0xa6,0xd3,0xc0,0xf4,0x59,0x5a,0xb0, +0x18,0x71,0x78,0xcd,0x0e,0x75,0xd5,0x26,0xf7,0xd2,0xd6,0x9c, +0x96,0xd4,0x4e,0xe5,0xf7,0xf8,0x55,0x17,0x6c,0xc5,0xd9,0xcc, +0x85,0xdc,0x0b,0xf9,0xe7,0x0a,0x38,0x0a,0x95,0xe2,0x7b,0x20, +0x1e,0x9c,0xb6,0xe1,0x2c,0xdc,0xda,0x05,0x5f,0xbd,0xc0,0x19, +0x3d,0x42,0xaa,0xc5,0xbc,0x65,0x2f,0xac,0x70,0x06,0xcc,0xda, +0x81,0x4e,0x8c,0xf8,0x48,0xe8,0xff,0x6c,0xdc,0x6b,0xa5,0xdd, +0x24,0xd5,0xd6,0x64,0x33,0x6e,0xfb,0x8e,0x15,0xf3,0x63,0x68, +0xc0,0xa6,0x56,0x3e,0x92,0x91,0x99,0x0a,0x6b,0xc9,0x46,0xdc, +0x76,0x9f,0xaa,0x22,0x94,0x02,0xae,0x1c,0xd7,0x1c,0xeb,0x34, +0xbb,0x8e,0x2c,0x3e,0xa2,0x36,0xbc,0x29,0x9c,0x92,0x4f,0xa6, +0x03,0xf7,0x30,0x49,0x85,0xf1,0x85,0xb1,0x85,0xe6,0x49,0x14, +0xb5,0xba,0x69,0x19,0x19,0x36,0xb8,0xf1,0xe5,0x95,0xc5,0xd2, +0xd6,0x09,0xb8,0xdd,0x41,0x12,0x8b,0xe2,0x8a,0x62,0x0b,0x2c, +0x12,0xf9,0xf0,0x8d,0x1e,0xab,0x8d,0x0d,0x5a,0xbc,0xf8,0xd2, +0xca,0xc2,0xc6,0x9c,0x16,0xae,0x89,0xc9,0x73,0x29,0x30,0xcf, +0xb0,0xeb,0xc8,0xe6,0x0f,0xd7,0xed,0x6f,0xd9,0x57,0xcb,0xc1, +0x98,0x0e,0x46,0x7e,0xf7,0xd3,0xac,0xac,0x0e,0x05,0xff,0xe1, +0xd2,0xe4,0xca,0x66,0x89,0x83,0xb1,0x42,0x0d,0xb0,0x8c,0x4c, +0x0f,0x0b,0x48,0x8f,0xf8,0x93,0x05,0xc4,0x8b,0x16,0xd8,0x6f, +0x2e,0x9b,0xdb,0x8b,0x1d,0x82,0x85,0x54,0x5c,0x36,0x8d,0x5c, +0x48,0x88,0x3d,0x73,0x31,0xfa,0x7b,0x64,0xf9,0xfa,0xea,0x2d, +0xa0,0x70,0x2c,0xf5,0x58,0x5c,0x44,0x84,0x72,0x74,0xf4,0x89, +0x73,0x8a,0xc9,0xd5,0x17,0x2a,0x2f,0xa9,0x34,0x9b,0x5b,0xb0, +0x73,0xf6,0x99,0xaf,0x5e,0xae,0x5a,0xe3,0xd2,0xde,0x51,0xd2, +0x90,0xd5,0xa0,0x4c,0x91,0xa5,0x07,0xa1,0xef,0x1e,0xb2,0xd2, +0x5e,0xa1,0x5a,0xeb,0xd6,0xd2,0x91,0x5f,0x93,0x55,0xaf,0x7c, +0x3e,0x21,0x8e,0x5e,0xe9,0x67,0x9c,0xc0,0x37,0xd4,0xae,0x81, +0xd1,0xc7,0x52,0x8e,0xfe,0xe7,0x4a,0xe7,0x15,0x13,0xab,0x2e, +0x54,0x0c,0xa9,0xb4,0x53,0x61,0xe8,0xc9,0x3a,0xa4,0x8d,0xe5, +0x7a,0x60,0xc7,0xca,0x1b,0xdd,0x3f,0x9b,0xcb,0xae,0x4f,0x9b, +0x35,0x91,0xa5,0xe1,0xea,0xc1,0x4c,0x56,0xbe,0x79,0x98,0xc0, +0x44,0x6a,0x38,0x13,0x19,0x38,0x2a,0x8c,0x26,0xe8,0x01,0xa7, +0xc0,0x83,0x85,0x1f,0xd1,0x83,0x80,0x07,0x55,0xab,0x07,0x8b, +0xc9,0xad,0x12,0xf8,0x53,0xa5,0xb8,0x0e,0x1e,0x51,0x08,0x87, +0x63,0x29,0x65,0xa7,0xed,0x60,0x1c,0x24,0x9d,0x58,0xf1,0xd4, +0x74,0x15,0x66,0x59,0x43,0x24,0x6b,0xbf,0x73,0x81,0x31,0x4e, +0xb7,0x28,0xb0,0xe4,0x61,0xd1,0x65,0x18,0x79,0x23,0xeb,0x19, +0x75,0x86,0xec,0x7e,0xc8,0x8e,0x63,0x32,0x57,0xfc,0xbe,0x1b, +0xa6,0xeb,0x17,0x74,0xf3,0x38,0xb1,0x4f,0xb3,0xd7,0xfe,0x26, +0xb5,0xaa,0x5a,0xd9,0x0f,0xc4,0xd8,0x00,0xad,0x2f,0x99,0x18, +0xa0,0x86,0x25,0x68,0xec,0x1e,0xb8,0x06,0xd6,0xbb,0x07,0xaf, +0xc1,0x9a,0x6e,0x5c,0xc3,0xc8,0x57,0xcb,0x8f,0xd3,0x1e,0xae, +0x93,0xcd,0xa7,0xa9,0x31,0x8e,0x85,0xf5,0x92,0x80,0x47,0x09, +0x6d,0xd4,0x84,0x85,0x31,0xb6,0x64,0x17,0xe6,0x59,0x0b,0xd0, +0x89,0x55,0xd7,0x59,0x8c,0xc3,0x9f,0x88,0xe0,0x04,0x6b,0x45, +0x27,0x66,0x08,0x39,0x4a,0xe6,0x5e,0xef,0x60,0x45,0x0d,0x31, +0x94,0xc0,0x23,0x21,0x10,0xb3,0x50,0x95,0x4d,0xb6,0x90,0x4e, +0xcd,0xfc,0x34,0x55,0x0d,0x03,0xe2,0x0b,0xe9,0xf8,0x8d,0x99, +0x50,0x42,0x30,0x6c,0xa0,0x07,0xce,0x03,0x4d,0x7a,0xe7,0x71, +0x22,0xb9,0x0f,0x66,0x1b,0x29,0xf9,0xe5,0x64,0xce,0x64,0x41, +0x3f,0x2c,0xc0,0xcc,0x3b,0x86,0x5b,0xf1,0x34,0x2e,0x18,0xf8, +0x8d,0xc5,0x66,0xb9,0x11,0xd5,0xf6,0x7a,0xca,0x8b,0xc2,0x24, +0xc6,0xbd,0x51,0x5a,0x07,0xa4,0x28,0x54,0x51,0xf2,0x2f,0xc4, +0x2c,0x24,0xfe,0x25,0x2e,0x15,0x2e,0xf9,0xde,0x3e,0x7c,0x5d, +0x70,0xbd,0x5f,0xb9,0x1f,0x87,0xc6,0x1e,0xc4,0x32,0xe3,0x70, +0xb7,0x2a,0x6c,0x64,0xaa,0x53,0xd3,0xaa,0xd4,0x06,0xa5,0x4c, +0xbf,0x09,0x17,0xb3,0x41,0x31,0x17,0x0b,0xd5,0xde,0x9b,0xb3, +0x9b,0x0f,0x91,0x03,0xb6,0xfe,0x76,0x9e,0xae,0x2d,0xfe,0x7c, +0x75,0x53,0x69,0x57,0x4e,0x0f,0x07,0x77,0xa3,0x49,0x85,0x5b, +0xb5,0x65,0xa9,0x7d,0x53,0x31,0xef,0xdf,0xe6,0xd1,0xe5,0x53, +0xcd,0x89,0xde,0xd2,0x16,0x97,0xaf,0xad,0x6d,0x85,0x7f,0xdb, +0xcd,0xe1,0x6b,0x16,0xff,0xb1,0x23,0xf3,0x67,0xbf,0x63,0x21, +0x61,0x3e,0x99,0xf5,0xee,0x03,0x03,0x1a,0xf3,0x89,0xfa,0xbb, +0x8f,0xd2,0xe1,0x09,0xe9,0x12,0xb0,0x5b,0xc9,0x66,0x98,0x4b, +0x27,0x51,0x36,0x4a,0xa7,0x9e,0xc3,0x34,0x38,0xd7,0x23,0x3e, +0xb7,0x60,0xc7,0xcb,0xb4,0x64,0x95,0x24,0x31,0x23,0x21,0x33, +0x2e,0xd3,0x38,0x8e,0x3f,0x71,0xf0,0xe8,0xbe,0x88,0x30,0x0e, +0x2d,0xf1,0xaa,0x10,0x0e,0x57,0x19,0x79,0x82,0x3c,0x8f,0x4a, +0x7a,0x8f,0x6c,0x26,0xc6,0xc8,0xbf,0x61,0x65,0xc9,0xb2,0x9d, +0x44,0x1c,0xd3,0x21,0x8c,0x61,0xc4,0xc7,0xe2,0x3d,0x82,0x93, +0x85,0x3a,0x98,0xcc,0x08,0x8f,0xe7,0xfd,0xd7,0xbb,0x63,0x56, +0x12,0x61,0x8c,0x99,0x38,0x86,0x59,0xbf,0x8c,0xe0,0x11,0xa1, +0x18,0x8e,0xb0,0xd8,0xb1,0x88,0xa0,0x6e,0x3f,0x8d,0x7b,0xfd, +0xa6,0xa4,0x1f,0xf6,0x98,0xb2,0x18,0xed,0x46,0x8c,0x51,0x77, +0x90,0x85,0x08,0x9a,0x6e,0x8c,0xa9,0xfb,0xe1,0x0f,0x8b,0x88, +0x35,0xac,0x65,0xc3,0xf5,0x77,0xb8,0xe0,0xd8,0xfd,0x59,0x56, +0x3c,0xa8,0xe5,0xff,0x3c,0x94,0xfb,0x82,0x83,0xb5,0xa8,0x73, +0x89,0xd2,0x8a,0x59,0x9d,0x94,0x30,0x4d,0x88,0x21,0x48,0xa4, +0xa5,0x81,0x54,0xd3,0xad,0x29,0x59,0xad,0x6a,0xb2,0x3b,0x66, +0x2c,0xc5,0xdc,0x48,0x2e,0xe5,0xb6,0xe4,0xb4,0xe6,0xc7,0xfa, +0xf2,0x8d,0xd9,0x47,0xfb,0x0f,0x3c,0x3a,0xd0,0xad,0xec,0x72, +0x28,0xc9,0x2f,0xc9,0x29,0xc1,0x59,0x39,0x2c,0x2a,0x34,0x32, +0xe4,0x68,0x34,0x58,0xf0,0x8d,0xf1,0xcd,0xa9,0x15,0x19,0x07, +0x1a,0x79,0xc7,0xfd,0x96,0xe1,0xe6,0xd1,0x89,0xf8,0x0d,0x1f, +0x19,0x13,0x71,0xf2,0xc8,0x49,0x0e,0xce,0xc5,0x90,0xb6,0xa1, +0xcc,0x6f,0x5f,0xab,0x64,0xf4,0xb3,0x67,0xb5,0x4e,0xe9,0x1f, +0xb7,0xe3,0x82,0x4f,0xc6,0x9c,0x38,0x30,0xcd,0x8d,0x49,0x72, +0x50,0x6c,0x64,0x2a,0x33,0x53,0x9a,0xe3,0xd5,0x12,0xba,0xce, +0x3d,0x84,0x09,0x2a,0x68,0xe7,0xd4,0x19,0xce,0xac,0x38,0x6c, +0xe9,0x61,0xab,0x2a,0x4e,0x15,0x3f,0x92,0x8f,0xa0,0x2a,0x3b, +0x86,0xe6,0xf2,0xdf,0x58,0xd9,0x0e,0xd9,0x63,0x22,0x5f,0xd0, +0x2d,0x5b,0xc0,0x8a,0xbf,0xcb,0x37,0x90,0x35,0x32,0xa5,0x9f, +0x18,0xb8,0x84,0x39,0x24,0xd9,0xe0,0x9a,0xfe,0x47,0xcb,0xfc, +0x36,0x5e,0xbd,0xd7,0xa4,0x3b,0xbc,0x9f,0x33,0x66,0x0e,0x19, +0xea,0x9a,0xe3,0x17,0xa6,0x05,0x76,0x3c,0x8c,0xea,0xbd,0x7b, +0x35,0xe9,0x1a,0x57,0x82,0x03,0x04,0x56,0xb6,0xe2,0xca,0xef, +0x5f,0xb7,0xe0,0x51,0x87,0x5f,0x36,0xa1,0xb6,0x3d,0x68,0xe3, +0x2a,0x66,0xe7,0x71,0xdd,0x13,0xdb,0x4f,0xc6,0x51,0xb1,0xac, +0x4c,0x82,0xe5,0x59,0x30,0x25,0xef,0x64,0x1b,0x6f,0x74,0x54, +0x2f,0x7a,0x77,0x34,0xf7,0x30,0x9b,0xe4,0x57,0x64,0x54,0xa4, +0x54,0xb9,0xd0,0x98,0xe6,0x13,0xee,0xb3,0xcf,0x9f,0xc3,0xe3, +0x57,0x49,0x81,0x6f,0x9e,0x7b,0xba,0x6f,0x7d,0x3e,0x7f,0xb8, +0x22,0xa4,0x21,0xa4,0x84,0x3a,0xd5,0xe2,0xa7,0x04,0x62,0x3a, +0x31,0xe6,0x26,0x03,0xf6,0x09,0x99,0x47,0x32,0x0e,0xa7,0x1f, +0x51,0x2e,0xaf,0xb1,0x6f,0x30,0x68,0x32,0xac,0x52,0x86,0x91, +0xe0,0x31,0x40,0x2d,0xbb,0xa6,0x0b,0x92,0x3a,0x31,0xa9,0xd7, +0xd0,0x1c,0xcf,0x58,0xc3,0x19,0x2b,0xcc,0xc3,0x05,0xfd,0xd4, +0xf1,0x55,0x99,0x20,0xbf,0xa0,0xe0,0x80,0x50,0xee,0x8c,0xa7, +0xe7,0x19,0xcf,0x69,0xb1,0xd6,0x4f,0xcf,0xfd,0x72,0xee,0xe9, +0x05,0x65,0x74,0x60,0x35,0x93,0x6d,0xba,0x7e,0x56,0x49,0x37, +0x3c,0xc4,0x2e,0x73,0xb7,0x47,0x45,0x2f,0xd5,0x3c,0x2b,0x18, +0x51,0xd5,0xd8,0x78,0xf1,0x27,0x4a,0xaf,0x56,0xc7,0x7e,0x6f, +0x0a,0xcc,0x34,0xb8,0xc4,0x24,0x76,0x2b,0x62,0x07,0x23,0x8e, +0x03,0x5e,0x9a,0xd1,0x09,0x92,0x9f,0x96,0x30,0xed,0x6b,0x05, +0x18,0x21,0xd6,0xe2,0x08,0x46,0x16,0x2b,0xcc,0x21,0xe2,0xc9, +0x4e,0xe1,0x24,0x23,0x1a,0xe1,0x32,0x32,0x0c,0x9a,0x86,0x2c, +0x84,0x0d,0x13,0x43,0xd4,0x19,0x66,0xcd,0x67,0x93,0x3d,0xa8, +0x79,0x95,0x05,0x7f,0x25,0xd0,0xd9,0x83,0x3a,0x0c,0x8c,0xb2, +0x27,0x7e,0xbe,0xb9,0x51,0x39,0x11,0x39,0x11,0xca,0x2b,0x4f, +0x2e,0x3c,0x35,0xf7,0x54,0x71,0x41,0x41,0x41,0x3e,0x1d,0xe7, +0x3f,0xe3,0xe1,0x5b,0x02,0x3e,0x03,0xb0,0x10,0x6b,0xfa,0xfe, +0xc7,0x60,0xcc,0xe8,0x60,0x16,0xf6,0xa1,0x0f,0xfb,0x35,0xc5, +0x5a,0x9f,0xfa,0x70,0x66,0xe0,0xef,0xff,0xf4,0xa1,0xee,0x73, +0x1f,0x66,0xd0,0x3e,0xf4,0x4a,0x7d,0x30,0xa1,0xbc,0xed,0x32, +0x68,0xea,0xb3,0xfd,0x4a,0x97,0x41,0x47,0x9f,0xb2,0x49,0x27, +0x1a,0x58,0x34,0xaf,0xb3,0x10,0x48,0xbb,0xb0,0x8b,0x76,0xe1, +0x1c,0x0d,0xe5,0x70,0xb8,0x1d,0x0f,0x3f,0x00,0x6f,0x26,0x2a, +0x2a,0x3c,0x22,0xe4,0x70,0xb5,0x37,0x5f,0x53,0x50,0x5e,0x9c, +0x59,0xca,0xd5,0x8b,0xff,0x5a,0x43,0x09,0xfa,0xb1,0x6b,0x93, +0x6d,0xbb,0x9f,0xaa,0x14,0x1a,0x06,0xb3,0x4b,0xa9,0x70,0x18, +0x4f,0xd5,0x5c,0x4b,0x18,0x59,0xd3,0x54,0x7f,0x41,0xe2,0x9e, +0xeb,0x2f,0xdc,0x30,0x00,0xa5,0x69,0xd0,0xf7,0x1f,0xe1,0x8c, +0x97,0xfd,0x0d,0x61,0x24,0x38,0xe6,0x62,0x91,0x54,0xbd,0xaf, +0xbe,0xb8,0xb9,0xb2,0xb6,0xc1,0xaf,0x91,0x0f,0xf2,0xf5,0x0e, +0xf0,0x0f,0xe3,0x60,0xbe,0x27,0x4c,0x80,0x45,0x9d,0xb8,0xe8, +0x91,0xb1,0x36,0xda,0x3d,0x32,0xd5,0xc6,0x99,0xd6,0x30,0x13, +0x27,0xb8,0xce,0x41,0x45,0x4b,0x50,0x5c,0xcc,0x7a,0xec,0xb5, +0xda,0xeb,0x7a,0x38,0xcb,0x92,0xaf,0xca,0xa8,0xcf,0xaa,0xcc, +0xe1,0xd4,0xfb,0x84,0x55,0x50,0x81,0x2f,0x59,0x9b,0xcc,0x83, +0x9d,0xaa,0x43,0x4c,0x75,0x52,0x4a,0xad,0xf4,0x70,0xc4,0x3e, +0x4d,0x11,0xa7,0xb2,0xf2,0x5b,0x42,0xe3,0xe7,0xdc,0xb9,0x5a, +0x42,0x09,0xab,0xcd,0xc9,0xdf,0x62,0xf5,0x4c,0x46,0x98,0x2f, +0xe4,0x13,0xb0,0xd3,0x41,0x3b,0x26,0x76,0x26,0xc1,0xef,0x41, +0x1f,0xbe,0x67,0x71,0x86,0x54,0xd9,0x23,0xf4,0x29,0x86,0xb2, +0xa0,0x84,0xa3,0x49,0x99,0x69,0xb5,0x76,0x8e,0x6e,0x6f,0x0e, +0x1f,0x76,0xd3,0xf3,0xa1,0x5f,0x2f,0x27,0x16,0x62,0x08,0x69, +0x18,0xac,0x7a,0x94,0x71,0xd5,0x92,0x22,0x42,0x53,0x5f,0x1d, +0x17,0x0b,0x4e,0x18,0x4d,0xd9,0x5c,0x8e,0x51,0xce,0x96,0x14, +0xdd,0xc1,0x64,0xfe,0xc8,0xb7,0x61,0xdf,0x85,0xf6,0x71,0xe8, +0x71,0x98,0x24,0xe9,0xc7,0xef,0x3c,0xbf,0x7d,0x38,0x9e,0x3f, +0x79,0xfb,0xd8,0xad,0x23,0x43,0xdc,0x78,0xb8,0x2e,0x3c,0x25, +0x47,0xf7,0x46,0x86,0x1c,0x09,0xf5,0x3c,0xe9,0x76,0xd2,0xe5, +0x54,0xff,0x40,0xff,0x8d,0xae,0x3b,0xce,0x25,0xfc,0x5e,0x8f, +0x40,0x8f,0x00,0xaf,0xc3,0xd9,0xd2,0x39,0x8d,0x55,0x75,0x55, +0x2d,0x25,0x6d,0x8e,0x85,0x7c,0x88,0xb3,0xaf,0x8b,0x8f,0x67, +0x54,0x72,0x54,0x4a,0x64,0xb2,0xa7,0x37,0xdf,0x6c,0x57,0xeb, +0x50,0xe5,0xb0,0x37,0x70,0x6f,0x50,0xc8,0x5e,0x2e,0x3c,0xfc, +0x4c,0xf8,0xb4,0x58,0xab,0x9b,0xe7,0x6f,0xc6,0x5e,0x4a,0x50, +0xb6,0xd2,0xd7,0xb5,0xd4,0xf4,0xa4,0xcc,0x08,0xa6,0x0d,0xfc, +0xf9,0x77,0x2f,0x28,0x73,0x11,0x70,0x96,0x38,0xc3,0x70,0x23, +0x0b,0x5e,0xe8,0x43,0x4a,0x5a,0x8b,0xfb,0xb3,0x2e,0x73,0x75, +0x78,0x5a,0x8c,0xe9,0x17,0x2c,0x61,0x32,0x7b,0xd8,0x2c,0xc0, +0xcc,0xd7,0x96,0xeb,0xb7,0x28,0x72,0x72,0x57,0xf1,0x8c,0x0e, +0xb7,0x51,0x75,0x62,0x32,0x6c,0x68,0x08,0xb8,0x52,0x5d,0x7c, +0xeb,0x92,0x67,0x8d,0x73,0xb3,0x1a,0xfa,0x50,0xb9,0x1c,0x6c, +0x84,0x20,0xb0,0xc6,0x22,0x51,0xa7,0xf7,0x1a,0x1c,0x6c,0xc0, +0x83,0x0d,0x70,0x90,0xd9,0x03,0xf6,0x94,0x35,0xd5,0x83,0x36, +0x83,0xda,0x1b,0x09,0x68,0x3b,0xa3,0x36,0xd3,0x83,0x07,0xc9, +0x89,0x7d,0x47,0x43,0x0f,0x05,0x71,0xf8,0x0c,0xff,0x19,0x86, +0x4b,0xb2,0x55,0x78,0x92,0x3a,0x75,0xaa,0xa5,0xb4,0xe9,0xb2, +0x2b,0x2b,0xb3,0x53,0x0d,0x4a,0x45,0x75,0x36,0x31,0x23,0x3e, +0x33,0xb1,0x90,0xa3,0x9f,0xad,0x27,0xe8,0x33,0xd8,0x0b,0x32, +0x58,0xc5,0xa2,0x0c,0x19,0x9a,0xb6,0xba,0x77,0x50,0xe6,0xf9, +0x37,0xcd,0xd8,0x22,0x07,0x17,0x05,0x8e,0xbd,0xa1,0x44,0x1b, +0x89,0xb4,0x21,0x7f,0xe1,0xfe,0x79,0xde,0x64,0xa5,0x94,0xba, +0x53,0xb6,0x13,0x5c,0x70,0x09,0x16,0x30,0x70,0xcf,0x80,0xa0, +0xc6,0x25,0xd0,0x60,0xe4,0x07,0x1d,0xc8,0x07,0xb1,0x7a,0x96, +0x04,0x9d,0x69,0x66,0x5a,0x70,0xf9,0xd3,0xa7,0xfa,0xf4,0xd3, +0xcb,0xf4,0x53,0xd1,0x4f,0x9d,0xc0,0x82,0x5d,0x48,0xdf,0xfb, +0xf6,0x3a,0x01,0x8d,0x5d,0xa8,0xc1,0xfc,0xba,0x92,0xd4,0xfb, +0x37,0x39,0x96,0x78,0x54,0xd6,0xf2,0x7b,0x2b,0x6c,0x5b,0xdc, +0xca,0x38,0xb4,0xc0,0xaf,0x49,0x6b,0x65,0x5d,0x43,0x71,0x8d, +0x47,0x19,0xbf,0xd7,0xdb,0xd9,0xc5,0x35,0xd0,0x37,0x9e,0xcf, +0x2b,0xda,0x97,0xeb,0x5d,0xba,0x37,0x53,0xd9,0xd7,0x27,0xf7, +0x50,0x61,0x68,0xf6,0x3e,0xe5,0x83,0x41,0x21,0x3e,0xfe,0x5e, +0x1c,0x1a,0xd8,0xc0,0x1c,0x26,0xd0,0xcf,0xcf,0xd7,0x37,0x60, +0xe8,0xe0,0xcd,0xfd,0xb7,0xf7,0xe9,0xf8,0x2c,0x0e,0x45,0x85, +0x88,0x74,0x1a,0xc2,0x94,0x33,0x80,0x2d,0x7b,0xd5,0xf1,0xa7, +0xef,0x1f,0xde,0x3f,0xf8,0x16,0xb5,0xf3,0xda,0x65,0x2b,0x8b, +0xd7,0x16,0xf6,0xd6,0x34,0xb7,0x56,0xf4,0x51,0x34,0xdb,0x21, +0x4e,0x66,0x72,0x8b,0xb3,0x8a,0xd3,0x72,0x39,0x74,0xf9,0x40, +0x42,0xbd,0x1d,0x1c,0xdd,0x02,0x2b,0xdc,0xf9,0x96,0x8a,0x86, +0xe6,0xc2,0x6a,0x0e,0x06,0x90,0xba,0xbe,0x83,0xa3,0xab,0xb1, +0xb7,0x61,0xa6,0x49,0xba,0x75,0x4a,0x6e,0x76,0x9e,0x54,0x30, +0x5d,0xaa,0xa2,0xd4,0x4d,0x50,0x87,0xc2,0x10,0x1d,0xf6,0x8e, +0x12,0x6d,0xfc,0x42,0x1b,0xf2,0x75,0x38,0x81,0x92,0x57,0x9f, +0x4d,0x2c,0xe8,0x29,0x7d,0x0f,0x21,0x9b,0x58,0xb9,0xef,0x12, +0x82,0xeb,0x58,0x8c,0x3a,0x88,0x63,0x8c,0x17,0xaa,0xb6,0xdb, +0x2a,0x5e,0x07,0xc5,0x1c,0x50,0x85,0xb3,0x2a,0xc0,0xca,0xb2, +0x28,0xb1,0x9c,0x2b,0x9e,0x26,0x03,0x8f,0x0a,0xde,0xc4,0x7f, +0xe0,0x86,0x3b,0xf1,0x1b,0x26,0xa1,0x38,0xbe,0x28,0xb6,0xd8, +0x32,0x91,0x0f,0x9d,0xeb,0xb7,0x7a,0xeb,0xaa,0x4a,0x67,0xbe, +0xa0,0x38,0xaf,0x32,0xab,0x3a,0x71,0x53,0xe1,0x8e,0x16,0x7d, +0x67,0x3b,0x53,0x67,0x1d,0xcf,0x12,0x5b,0xfe,0x7e,0xcd,0x50, +0x73,0x73,0x47,0xb3,0x5d,0x9f,0xd3,0x6d,0xb7,0xe2,0x2e,0x7e, +0x47,0xb5,0x45,0x9d,0x4b,0x2b,0x27,0x7e,0x05,0xcd,0xa4,0x07, +0x16,0xb5,0x23,0xd8,0xc2,0x02,0x0b,0x5c,0x6f,0x3b,0x80,0x43, +0xec,0x86,0x13,0x09,0x56,0x1f,0x12,0x61,0x44,0xf2,0x83,0x34, +0xe5,0xe5,0xbd,0xc2,0xaa,0xa1,0x76,0x16,0xce,0x1e,0x25,0xc7, +0x57,0xec,0x5f,0xef,0xb4,0xd3,0xe1,0x7a,0xe8,0xfd,0x98,0x97, +0x1c,0x06,0xb8,0x13,0x3d,0xdc,0x70,0x85,0x85,0x0d,0x38,0xf2, +0x73,0x0b,0x47,0x2a,0xc0,0x06,0x23,0xc6,0xfa,0x98,0x49,0xb4, +0xfe,0x71,0x3a,0xe2,0x49,0xb2,0x7e,0x82,0x0b,0xe1,0x07,0x58, +0xc8,0xfe,0xa4,0x44,0x1b,0xaf,0x68,0x43,0xbe,0x1b,0x47,0x90, +0x6b,0xe0,0xb5,0x9b,0x05,0x5b,0xa5,0x6b,0xb0,0x7f,0x37,0x8b, +0x8f,0x71,0x27,0x89,0x4b,0x8d,0x4d,0x8f,0x4d,0xe3,0x04,0xfd, +0xf6,0x7f,0xa7,0xda,0x0a,0xb3,0x99,0xe3,0x87,0x4e,0x1c,0x3e, +0x7e,0x84,0xc3,0x62,0xec,0x95,0xed,0x80,0x5e,0xc6,0x60,0x35, +0x11,0xaf,0x37,0x0a,0xd7,0x19,0x9c,0xac,0xf0,0xb9,0x21,0x5e, +0xd7,0x24,0xc2,0x75,0x07,0x91,0xbe,0xa5,0x8d,0x3a,0xa4,0xe8, +0x42,0xc1,0x85,0xbc,0x8b,0x1c,0x9a,0x0f,0xd4,0x81,0xaf,0x5b, +0x3f,0x78,0x63,0x34,0x3b,0x90,0xd6,0x91,0x39,0x58,0xe8,0x57, +0xc5,0xaf,0xf0,0x58,0x16,0x84,0x2a,0xfb,0xb9,0x7f,0xd6,0x9f, +0x26,0xf8,0x45,0xd5,0x82,0x42,0x1c,0x57,0x10,0xe4,0xce,0xbf, +0xdc,0x7f,0xe3,0xe0,0xd5,0x03,0x1c,0xf6,0xa1,0x77,0x7f,0x1d, +0x1c,0x72,0x1b,0x00,0x3b,0x26,0xef,0x78,0xde,0xf1,0xfc,0x68, +0x4e,0x1e,0xb7,0x98,0x3c,0x05,0xdf,0x55,0x2c,0x98,0x2b,0x3d, +0x85,0x43,0xab,0x28,0xba,0x9a,0x2f,0x18,0x11,0xd8,0x78,0x9c, +0x6d,0xcc,0x0e,0x6a,0x70,0x69,0x73,0xae,0x56,0xb6,0x0d,0xa9, +0xf7,0xa8,0x71,0x29,0x76,0x56,0x16,0x8b,0x99,0x9a,0xd6,0x82, +0xb6,0x94,0x16,0xd0,0x39,0x0b,0x3b,0x52,0x61,0x66,0x71,0x40, +0x33,0x8f,0xd3,0x83,0x70,0x73,0x24,0x9a,0x9f,0x39,0x6c,0xe4, +0xa5,0x6f,0x63,0xde,0xe0,0xc9,0xe7,0xe4,0x2b,0xe2,0x7a,0x16, +0x8f,0x89,0x2b,0x89,0x34,0x01,0xbb,0x00,0x5d,0x28,0x3a,0x14, +0x3e,0x0a,0xff,0x90,0x23,0x15,0xa1,0x35,0xc1,0x65,0x96,0x07, +0xf9,0x42,0x9f,0x6c,0xaf,0x34,0xca,0x0e,0xe7,0x8b,0xbb,0xc8, +0x22,0xa1,0xe3,0x2d,0x03,0x97,0xe9,0xd8,0xd6,0x22,0xf7,0x98, +0x05,0x2d,0x25,0x18,0xbd,0x16,0x47,0x33,0xb4,0xf1,0x18,0xc6, +0xac,0x65,0x4b,0x70,0x31,0xb9,0x63,0xb6,0x15,0x0d,0xac,0xc1, +0x00,0xfb,0x35,0xd8,0x14,0x0b,0xc5,0x1f,0x98,0xc6,0xb4,0x4c, +0x0a,0x9f,0x3a,0xef,0x74,0xb2,0xf8,0x33,0xc5,0xec,0x4d,0x78, +0xa4,0x03,0x82,0xe1,0x10,0x16,0x88,0x41,0x5d,0xd7,0x21,0xb2, +0x09,0x23,0x9b,0x59,0x0a,0x57,0x0e,0x50,0x4b,0xec,0x05,0x1d, +0x06,0x75,0x96,0x10,0xd0,0x31,0x95,0x32,0x56,0x7a,0x0a,0x29, +0xb5,0x2b,0xb4,0xcc,0x33,0x68,0xce,0xe3,0xf7,0x0d,0x06,0xf6, +0xf9,0xb5,0x52,0x0d,0xbe,0x16,0x28,0x37,0x53,0xa3,0x38,0x33, +0x0e,0x16,0x24,0x72,0x86,0x83,0x57,0xd9,0x8a,0xf3,0xa5,0xe7, +0x4a,0xce,0x9f,0x6a,0xe2,0x03,0x4f,0x07,0x9c,0xf2,0x3d,0x4d, +0xdd,0xfd,0x79,0x8b,0xf8,0xbb,0xc3,0x6b,0x2c,0x60,0xbd,0xce, +0x78,0x7f,0xe3,0x7b,0x86,0x43,0x7b,0x31,0x98,0x7c,0x62,0xc6, +0x18,0x41,0x11,0xa7,0xcc,0x43,0xb6,0x8b,0xe0,0xd0,0x20,0x0c, +0x31,0x62,0x83,0xf8,0x94,0xe0,0x97,0x42,0x25,0x50,0xa6,0xdc, +0x60,0x4b,0x41,0xd6,0x10,0x05,0x59,0x43,0x5f,0x13,0x73,0x76, +0x61,0x8c,0xfa,0x89,0xb9,0xa7,0xb8,0x9b,0x2c,0x4c,0x43,0x63, +0x82,0xad,0x0e,0xed,0xd8,0xcf,0xec,0x3b,0xbd,0xef,0x74,0xf8, +0x99,0x38,0x5b,0xfe,0x7a,0xec,0xb3,0xa4,0xeb,0x29,0xdc,0x9a, +0x2e,0x61,0x69,0x11,0x0b,0x0f,0x31,0x8b,0x58,0x1d,0x53,0x84, +0xe2,0xe6,0x16,0xec,0x74,0xa0,0xa0,0x84,0x0d,0x3f,0x73,0xf0, +0xf4,0xc1,0x33,0xb1,0x76,0xfc,0xf5,0x8b,0x3f,0xc4,0xdf,0x4d, +0xe6,0xb4,0x7b,0x9e,0xb3,0xfd,0xc9,0x8a,0x62,0x3e,0xc4,0xd0, +0xe0,0x34,0x7a,0x07,0x0b,0xbd,0x94,0x53,0xdf,0xa4,0x40,0x5a, +0x5c,0x83,0xba,0xe4,0x36,0x8c,0xde,0x4e,0xdf,0xba,0x4d,0xb6, +0xe3,0xb8,0xdb,0x2c,0x76,0xe2,0x17,0x04,0x46,0xeb,0x31,0x5e, +0x27,0x5c,0x62,0x5c,0x62,0x38,0xe8,0x7c,0x40,0x60,0xdc,0x2e, +0xc6,0x35,0xc6,0xe5,0x84,0xeb,0x49,0x0a,0x4c,0x7e,0x6f,0x21, +0xb0,0xe1,0x75,0xdf,0x12,0x58,0xf8,0xe9,0x17,0x28,0x0e,0xe0, +0x08,0x36,0xa7,0x33,0xbd,0x27,0xa1,0xd9,0x3a,0x89,0x8f,0xb2, +0x3f,0x68,0x1c,0x66,0xce,0x6d,0x67,0x32,0xda,0x93,0xdb,0x93, +0x7b,0x2d,0x93,0xf9,0xfd,0x73,0x1d,0x71,0xb6,0xed,0x8a,0x5a, +0x17,0xfe,0x62,0xe2,0xc5,0x84,0x0b,0x09,0x9c,0x78,0xb3,0xfb, +0x2a,0xa4,0xf6,0xb3,0xe2,0x71,0x99,0x31,0x79,0x6e,0xba,0x02, +0xe7,0x9a,0x01,0xf6,0xb1,0xe2,0xdd,0x36,0x22,0x8f,0xec,0x7b, +0x4a,0xfd,0x64,0x3e,0x8b,0x93,0xc4,0x3f,0x89,0xd0,0xf9,0xad, +0xd8,0xc9,0x0a,0x23,0xe0,0x15,0x39,0x79,0x4e,0x31,0x2e,0xef, +0x62,0x45,0x8b,0x4a,0xa1,0x65,0x10,0xbb,0x2d,0xc6,0xd5,0x7a, +0x97,0xaa,0xcb,0xc3,0x13,0x49,0xc7,0xce,0x46,0x45,0x2b,0x47, +0x1e,0xa3,0x4c,0x29,0x36,0xef,0x62,0x65,0xa3,0x4a,0x11,0xfd, +0x74,0xfd,0x31,0x7b,0x83,0xf5,0xaa,0x35,0xee,0x55,0xcd,0xd9, +0xb5,0xc9,0x55,0xca,0xe7,0x63,0xa5,0x83,0x87,0xdb,0x17,0xf3, +0x15,0x85,0xa5,0x01,0x85,0x95,0x59,0xe5,0xc9,0xa5,0xca,0xe7, +0xe2,0x2e,0x7c,0x73,0x2e,0xa6,0x63,0x36,0xdf,0x50,0x64,0xf7, +0xfb,0xf1,0xb4,0xe8,0x6f,0x8e,0x9d,0x50,0x86,0x85,0xfa,0x04, +0x16,0xfe,0x8c,0x0b,0xd9,0xd5,0x14,0xaa,0x7f,0x6e,0xe1,0xcd, +0xf5,0xe4,0xc4,0x0f,0x30,0xaf,0x1b,0xe7,0xfd,0x68,0xaa,0x85, +0x0b,0x2d,0x61,0x1a,0x13,0xa2,0x65,0xa8,0x85,0x9c,0x66,0x05, +0xe5,0x46,0x5f,0xbe,0x68,0xff,0x2e,0x5e,0xa2,0x46,0x1d,0x7d, +0x70,0x98,0x89,0x93,0x8e,0xee,0x55,0xfd,0x13,0xe7,0xd4,0xd5, +0xce,0x81,0x59,0xc7,0x92,0xa3,0x2f,0x44,0x46,0x29,0xc3,0x40, +0x2a,0xc1,0x0d,0xab,0x61,0x03,0xa5,0x70,0x22,0x5c,0x20,0x3f, +0x9f,0x87,0x71,0xf1,0x4f,0x93,0x63,0xa3,0x2e,0x1e,0xbd,0x70, +0xb4,0x3e,0x87,0xdf,0x5f,0x1f,0xd8,0x12,0x5a,0xc6,0xb5,0x41, +0x3e,0x52,0xe4,0x32,0xaf,0x03,0xe7,0xdd,0xb7,0xdc,0x88,0x73, +0x6d,0x60,0xae,0x3e,0x7e,0x85,0xf9,0x0f,0x99,0x88,0xbd,0x07, +0x03,0x0f,0x85,0x70,0x07,0xa8,0x4e,0xa7,0xb9,0xaf,0x21,0xc2, +0x24,0xfc,0xe2,0x11,0x4c,0xe8,0xc6,0x09,0x1f,0xad,0xd4,0x71, +0x8a,0x25,0x4c,0xd1,0x56,0x17,0x27,0x7d,0x5c,0x89,0xc4,0xe2, +0xff,0xe5,0xec,0x3d,0xa0,0xab,0x38,0x96,0x76,0x51,0x92,0x66, +0x86,0x24,0x83,0xa1,0x61,0x24,0x40,0x22,0xe7,0x9c,0x73,0xce, +0x42,0x39,0xe7,0x9c,0x51,0x40,0x80,0x72,0x40,0x12,0x0a,0x60, +0x82,0x72,0xce,0x59,0x42,0x61,0xa3,0x9c,0x73,0x04,0x93,0x0c, +0x98,0x60,0x6c,0x9c,0x0d,0xb6,0xc1,0x06,0x63,0xd7,0x6c,0x6a, +0x74,0xce,0xed,0x11,0xf6,0xf9,0xcf,0x7d,0xeb,0xbd,0xb7,0xee, +0xba,0x4b,0x6b,0x49,0xc3,0x30,0xb3,0xa7,0xbb,0xab,0xea,0xab, +0xef,0x9b,0xdd,0x5d,0x0d,0x34,0x49,0xb4,0xc3,0x6a,0x98,0xda, +0x89,0x53,0xbf,0x63,0xf1,0x4f,0xda,0x8b,0x77,0xa0,0x2a,0x5f, +0x81,0x06,0xc3,0x09,0x92,0x4a,0xda,0x48,0x36,0x09,0xed,0xdf, +0x30,0xc2,0x20,0x25,0x04,0x07,0x76,0xde,0x67,0x81,0x1c,0x20, +0xf7,0x9f,0x1d,0x60,0x45,0xaf,0x44,0x2a,0x81,0xb4,0x40,0x81, +0xaa,0x21,0x54,0x20,0xea,0xa0,0x30,0xc4,0xc0,0x39,0x63,0xb2, +0x67,0xe7,0x23,0x7a,0xcd,0x1e,0xf2,0xe8,0xd9,0x1e,0x56,0xac, +0x70,0x24,0xfd,0x38,0x5e,0x8b,0x81,0x51,0x30,0x9e,0x0c,0xe1, +0x78,0x75,0x46,0xd8,0x05,0xe3,0x88,0x8b,0x6f,0x42,0x48,0x52, +0x40,0x92,0xbf,0x92,0x69,0x94,0x6e,0x94,0xfe,0x85,0xd4,0x82, +0xd4,0xc2,0xc4,0x3c,0xee,0x21,0x4e,0x27,0xea,0xe8,0x67,0x02, +0x7e,0xb8,0x69,0x1d,0x9b,0x6c,0xa6,0xf0,0x39,0x53,0x93,0x96, +0x52,0xa3,0x0a,0x6b,0xee,0xb7,0x1e,0x18,0x62,0x31,0x01,0xd7, +0x90,0x0a,0xf7,0x72,0xbb,0x62,0x3b,0x59,0x19,0xef,0x79,0xdd, +0xb9,0xc6,0xa9,0x94,0xa3,0x72,0x5f,0xa8,0x20,0x56,0xac,0x43, +0x72,0x48,0x8b,0xca,0x75,0xa6,0x20,0x2d,0xb9,0x58,0x35,0x8f, +0xb5,0x4e,0x54,0x70,0x76,0x66,0x43,0xa2,0xaf,0x24,0xab,0x5e, +0xff,0xae,0x0e,0xe7,0xd4,0xc1,0xc4,0x5a,0x9c,0x58,0x7d,0xbd, +0x01,0xd4,0x2d,0xf3,0xd4,0x36,0x9b,0x7e,0x1d,0xc2,0xba,0x5c, +0x38,0x19,0xe9,0xa1,0xe2,0x9f,0xe6,0x9f,0x12,0x90,0xec,0x4a, +0x51,0x25,0x30,0xdf,0x27,0xcf,0xdb,0xdf,0xc4,0xdd,0xda,0xdc, +0x2a,0xba,0x92,0xb7,0x8f,0xb0,0x88,0x34,0x8b,0xe2,0x5a,0x61, +0x7c,0x2d,0x8e,0xef,0x30,0x32,0x44,0xce,0x06,0x38,0x03,0xd6, +0x2c,0xda,0x3c,0xda,0xfa,0xe2,0x55,0x2b,0xfe,0xd7,0xab,0xa0, +0x98,0xf8,0x63,0x6a,0xa5,0x23,0xdf,0xda,0x78,0xad,0x31,0xbb, +0x35,0xd7,0x3b,0xe7,0x4c,0x96,0x77,0x85,0x8c,0x3f,0x5d,0xe4, +0x59,0xe4,0x51,0xc8,0x25,0x56,0x5f,0xad,0x6f,0x51,0x4e,0x1a, +0x32,0x65,0xf1,0xa3,0xd8,0xbd,0x25,0xa6,0x2a,0xf9,0x36,0x9d, +0xb1,0x31,0x2d,0xa9,0x30,0x85,0xb7,0xca,0x3a,0x87,0xd3,0x15, +0xfc,0x0b,0x43,0x7b,0x60,0x9a,0xf2,0x3b,0x1c,0xf7,0xa9,0x7f, +0x3d,0xd0,0x38,0xb5,0x68,0xd2,0x33,0x47,0xf5,0x26,0x7d,0x73, +0x9a,0x3c,0x60,0xa7,0x95,0x93,0x2d,0x2a,0xd8,0x80,0x82,0x35, +0x12,0xeb,0x67,0x6c,0xa8,0xb5,0x5b,0x90,0x5a,0x70,0xba,0x15, +0xff,0x79,0x6a,0x6b,0x59,0xea,0x6d,0x0e,0xfb,0xc5,0x6b,0x54, +0xb0,0xcd,0x90,0x2f,0xc7,0x13,0x92,0x91,0x66,0x52,0x23,0xed, +0x16,0x3a,0x1e,0x33,0x72,0x75,0xb1,0x98,0x34,0x89,0x95,0xe6, +0x2c,0x4c,0x5d,0x41,0xbc,0x4e,0xba,0x3a,0xdb,0x3b,0x6c,0x8c, +0xe6,0x63,0x8d,0xe0,0x68,0x2c,0xd8,0x27,0xc1,0xfa,0x34,0x25, +0x2a,0x08,0x02,0xd3,0x02,0x6a,0xab,0x78,0xb3,0x46,0xf5,0x26, +0x5d,0x99,0x9d,0x2b,0x9f,0x1d,0x9c,0x13,0x94,0x1d,0xb8,0x34, +0x1c,0x27,0x9c,0x47,0x2e,0xea,0x5a,0x45,0x69,0x45,0x61,0x19, +0x27,0x2c,0x69,0x19,0x5e,0x63,0x4a,0xd5,0x98,0x8d,0x7c,0x1e, +0x31,0xab,0xb7,0xec,0x71,0xbe,0xc5,0xe1,0x21,0x7d,0x4a,0x2b, +0x72,0xac,0x8a,0xec,0x8b,0x5d,0x39,0xec,0x60,0x8a,0xca,0xf3, +0x64,0x39,0xf5,0xd6,0x85,0xbc,0xbb,0x9e,0xb3,0x85,0x8d,0x55, +0xb9,0x15,0x9f,0x92,0xa2,0x80,0xc5,0x20,0x40,0x39,0x1b,0x1b, +0x11,0x13,0x19,0x1b,0xc9,0x0d,0x4f,0x02,0x0d,0x32,0xcc,0x81, +0xa5,0x54,0x9b,0x26,0x61,0x78,0xb9,0xf4,0xc5,0xa2,0xf6,0xb0, +0x5f,0xfb,0x0b,0x16,0x5e,0x0b,0x27,0xc9,0x5c,0x98,0x4b,0xb5, +0xeb,0x6b,0x3f,0xf2,0x9d,0x28,0xdb,0xc0,0x08,0x11,0x60,0x4b, +0xc0,0xe1,0x1d,0x3a,0xb0,0x8d,0x33,0xc0,0x01,0xc6,0xd0,0x03, +0x33,0x38,0x41,0xce,0x59,0xf8,0x99,0xf9,0xd8,0x57,0x78,0xf3, +0xd9,0xd5,0xd9,0xad,0x29,0x8d,0x1c,0xae,0xc5,0xb1,0x24,0xb8, +0xc6,0xb7,0xd5,0xa7,0xda,0xf9,0x34,0x9f,0x63,0x97,0x6a,0x9d, +0x6e,0xc5,0xa1,0x63,0xf0,0x87,0x8f,0x9b,0x4b,0x91,0xef,0x2f, +0x5c,0x3e,0x97,0x81,0x62,0x6c,0x21,0x4d,0x10,0x60,0xde,0x29, +0x8c,0xc6,0x1f,0xc4,0xd1,0x2c,0xc8,0xe0,0x2e,0xcd,0x02,0x01, +0x5f,0xb1,0xe2,0x64,0xec,0x24,0x5d,0x5d,0x4d,0x9f,0x15,0xdd, +0xb6,0xa0,0x44,0x53,0xcd,0xe2,0xb8,0xa1,0x29,0x07,0xce,0xb0, +0x82,0x14,0x9b,0x17,0x6a,0x65,0x18,0x34,0x96,0xf2,0xfe,0x6d, +0x9e,0x03,0x1e,0x0d,0x9c,0xa0,0x6c,0x46,0xd6,0x62,0xc0,0x8f, +0xac,0xb4,0x07,0xc1,0x42,0x02,0x6b,0xc5,0x37,0x78,0x8e,0xc5, +0x5a,0x5f,0xd4,0xde,0x8d,0xcb,0x55,0xea,0x9d,0x14,0xbe,0x81, +0x5d,0x39,0xa0,0x03,0x03,0xca,0x8f,0x58,0x64,0xc4,0x02,0xa9, +0x87,0xba,0xc3,0x11,0xdd,0xef,0x58,0x79,0xb0,0x9c,0x90,0x43, +0xe2,0x79,0x8a,0x8d,0x57,0xcc,0xc8,0x57,0xa2,0x6c,0x2b,0x23, +0xf4,0x0b,0x86,0xc4,0x08,0x97,0xb5,0x33,0x98,0x07,0xb3,0x88, +0x0d,0xec,0xab,0x65,0x61,0xe1,0x0c,0x1b,0x38,0x5a,0xcb,0xe2, +0x63,0x9c,0x40,0x6a,0x71,0x9f,0x0d,0x2b,0x44,0xcc,0xa8,0xc5, +0xa3,0x36,0x2c,0xe5,0x63,0x6e,0x24,0x29,0x2d,0x21,0x3d,0x3e, +0x8d,0x83,0xbf,0x80,0x88,0xc9,0x48,0xfe,0x64,0x5c,0x0d,0x75, +0xf5,0xb5,0x1c,0x0a,0x6d,0xf8,0x8c,0x64,0xfa,0x93,0xca,0xe1, +0x47,0xb0,0x40,0x97,0x3d,0x1c,0x71,0x20,0x4a,0x2d,0x3a,0xd6, +0x82,0xa2,0x4b,0x1c,0xac,0x4f,0x7d,0x93,0x7e,0x35,0xf2,0x4a, +0xc4,0xd5,0x48,0xce,0x83,0x49,0xb5,0x50,0xb8,0xc5,0x74,0x15, +0x14,0xf5,0x51,0x65,0x7b,0x2b,0xee,0x3b,0x50,0x54,0x16,0x59, +0x98,0x43,0x0c,0xe6,0x75,0x52,0x26,0x39,0xc3,0x60,0x2e,0xfd, +0x93,0x3e,0xc3,0x00,0x47,0x77,0xb2,0x78,0x08,0x8f,0x11,0x6b, +0x9c,0xc6,0xa6,0xa7,0xa4,0xa6,0xa6,0x52,0x1a,0x31,0x0a,0xcf, +0x90,0x48,0xc7,0xf0,0x50,0x8f,0x0b,0x3e,0xe5,0x5e,0x15,0x67, +0x0b,0xb9,0x32,0x98,0x83,0x6b,0xea,0xe0,0x22,0xb3,0x33,0x62, +0x7d,0xb8,0xae,0x0a,0x95,0x79,0x0b,0xc8,0x2f,0x5a,0x2b,0x18, +0x58,0x34,0xa3,0x1f,0x46,0x69,0xb1,0x38,0xca,0x8e,0xbc,0x62, +0xfc,0x43,0xe3,0xc3,0xe3,0x43,0x13,0x42,0x94,0x5c,0xa3,0x1c, +0xa3,0xec,0x29,0xf6,0x0b,0x17,0x84,0x78,0x12,0xdd,0x5a,0x97, +0x50,0x1b,0x5f,0x99,0xa0,0x74,0xbe,0xde,0x39,0xdc,0x2e,0xcc, +0x36,0x5c,0x29,0xba,0xbd,0x32,0xb6,0x2a,0xb6,0x2a,0x4e,0xe9, +0x7c,0x9d,0xd3,0x79,0xe7,0x08,0xe7,0x48,0xa5,0xe8,0xd6,0x9a, +0xd8,0xea,0xd8,0xea,0x78,0xa5,0xf0,0x06,0x87,0xf3,0xf6,0x11, +0x0e,0x11,0x4a,0xd1,0x2d,0x46,0x51,0x57,0x8c,0xec,0x22,0xe9, +0xcf,0x05,0xa5,0x78,0x4b,0xd9,0x15,0xd9,0xd5,0xeb,0x57,0x95, +0x2e,0x1b,0x3b,0x46,0x3a,0x44,0x3a,0x44,0x2b,0xc5,0x5a,0x55, +0x5d,0xad,0xba,0x5a,0x19,0xa3,0x74,0xc5,0xc0,0x3c,0xcc,0xfc, +0xbc,0x75,0x94,0x52,0x9c,0x75,0x6d,0x4c,0x43,0x6c,0x43,0xbc, +0xd2,0x15,0x4b,0x05,0x38,0xa7,0x46,0x20,0xa4,0x11,0x43,0x6a, +0x9d,0x98,0xaf,0xbb,0x1a,0x6e,0x25,0xbd,0xe3,0x7e,0x66,0x8c, +0xa3,0x0c,0xce,0xbb,0xa8,0x78,0x44,0x84,0x84,0xbb,0xcd,0x3a, +0xc6,0x24,0x98,0x2a,0x3c,0x64,0x5a,0xf3,0xd2,0xeb,0x13,0x55, +0x93,0x9a,0x62,0xbe,0x7f,0xa8,0x8c,0x43,0xa6,0x6f,0x99,0xb0, +0xcd,0x2e,0xfa,0x3b,0xad,0x4a,0xac,0xf8,0x10,0x24,0x38,0xf7, +0x1b,0x83,0x4d,0x38,0xce,0x5c,0x3e,0xb9,0x09,0x8b,0x18,0xb1, +0x5f,0x24,0x44,0xfa,0xfe,0x72,0x3d,0x3a,0x0c,0xa7,0xb3,0xb0, +0x96,0x86,0xde,0x12,0xa1,0xef,0x37,0x06,0xea,0xc5,0xa5,0xc4, +0xd6,0xd7,0x7b,0xbf,0xbf,0x4a,0x8e,0x75,0x73,0x72,0x3e,0x65, +0xac,0x4a,0x57,0xaf,0x5e,0xb9,0x14,0x1b,0x75,0xd7,0x9c,0xcf, +0x29,0xcd,0x74,0xaf,0x4c,0xce,0x49,0xc9,0xca,0x52,0xba,0x1a, +0x73,0xe5,0x62,0x6c,0xf4,0x0f,0x66,0x7c,0x5e,0xcd,0x01,0xd9, +0xb9,0xd8,0xf0,0xe8,0xf0,0x50,0xa5,0x88,0xf0,0xc8,0x2b,0x0a, +0x09,0xa9,0x57,0x33,0xf3,0x95,0x0d,0x19,0xbb,0x80,0xb3,0xba, +0x01,0x2a,0xe6,0xd7,0x42,0xe2,0xc3,0xa4,0xff,0x3b,0x1f,0x1e, +0x7d,0x59,0x21,0x21,0xfd,0x6a,0x5a,0x81,0x32,0xae,0xc7,0x99, +0x04,0x38,0x3d,0x71,0x41,0x77,0x8d,0xe0,0x6c,0xd7,0x23,0xcc, +0xd7,0x45,0x8e,0x15,0x9d,0xad,0x88,0xe0,0x8c,0xab,0x45,0x67, +0x06,0x7e,0x7b,0x48,0xfe,0x8f,0x3e,0xc9,0x88,0xf9,0xbf,0x6c, +0xa9,0xe2,0x8b,0xbd,0xe4,0xce,0x3d,0xf9,0xf6,0x43,0x77,0xe4, +0x7f,0x0c,0x77,0x33,0x77,0xd4,0x89,0x7c,0xfb,0xf0,0xba,0xe1, +0xed,0x8c,0xe2,0xe3,0x5d,0xe4,0xe6,0x6d,0xb9,0xcd,0xd1,0x9b, +0xef,0x15,0x86,0xbf,0x65,0x6e,0x0e,0x47,0x13,0xb9,0x86,0xb4, +0x89,0x3b,0x2b,0x56,0x77,0x92,0x01,0x41,0x8f,0x29,0xa8,0xcf, +0x69,0x4c,0x6f,0x34,0xc8,0xe2,0x4d,0x70,0xd6,0xae,0x79,0xab, +0x0e,0x5e,0xd3,0xe1,0xeb,0xab,0x6a,0xeb,0xab,0x5a,0x38,0x61, +0x07,0xfe,0x46,0x6a,0xd3,0x33,0xa9,0x6a,0x5d,0x3c,0xb2,0x6e, +0x65,0x0b,0x2a,0xb2,0x2e,0x21,0x29,0xe5,0xaa,0xa0,0xc9,0x3e, +0x6d,0xfe,0x66,0xb0,0xa7,0xdb,0xbe,0x89,0x37,0x31,0x3c,0x66, +0x7a,0xc4,0x9a,0x83,0x53,0x9a,0x62,0x00,0x7b,0xb4,0xc8,0xeb, +0x96,0x8a,0x22,0xcc,0xdb,0x41,0xee,0xc9,0x6d,0x0e,0xdd,0x7c, +0xcf,0x0e,0x7f,0xfb,0x2f,0x96,0xbd,0x29,0xbf,0x45,0xe8,0x33, +0xd5,0x87,0x6d,0x98,0x1a,0xe9,0x7b,0xf3,0x15,0xb7,0x41,0xf9, +0xab,0xbc,0xb7,0x5c,0x1c,0x53,0xb0,0x04,0x54,0x76,0xc1,0xea, +0xbd,0x05,0xbd,0x3c,0xee,0x7a,0x34,0xef,0x73,0xfb,0xe7,0xdc, +0x71,0xc6,0x71,0xf3,0x92,0x6d,0xb8,0xf3,0x08,0x27,0x04,0xb8, +0x93,0x6e,0x6c,0xd7,0x63,0x41,0x45,0x9c,0x42,0x20,0x9a,0x6a, +0x46,0x45,0x9c,0xc2,0x26,0xea,0x2b,0xc0,0x18,0xa6,0x39,0x23, +0x83,0x52,0xc1,0x7d,0x62,0x85,0x1e,0x58,0x63,0x34,0xab,0xf8, +0xf9,0x0e,0x32,0x34,0x24,0x77,0x51,0x1f,0xa2,0xcf,0xfc,0x91, +0x19,0x1a,0x8e,0x25,0x72,0x63,0x38,0xcf,0x9e,0x9f,0x67,0xa5, +0x89,0xca,0x66,0xc5,0x54,0xf9,0x2c,0xef,0xee,0x7b,0x14,0x47, +0x35,0x28,0x4c,0xc2,0x35,0x8c,0x51,0xb6,0x4f,0xa7,0x0a,0x30, +0x4c,0x4d,0x7a,0x5a,0xa5,0xea,0x3d,0x56,0x3f,0x41,0x61,0xf7, +0x3c,0xf6,0x6c,0x74,0x6c,0x2e,0xed,0x2b,0x5c,0x1e,0x36,0x66, +0xc5,0x65,0x42,0x08,0xd9,0x8e,0xd9,0x86,0xa0,0x4b,0x71,0x85, +0x68,0xef,0xa4,0x49,0x52,0x45,0x66,0xf2,0x53,0xe7,0xe0,0x9d, +0xa2,0x6f,0x95,0x20,0x8e,0xb9,0xe8,0x1e,0xe5,0x10,0xe6,0xc6, +0xb9,0x86,0xf9,0x45,0xda,0xcf,0x42,0x45,0x26,0x81,0x0a,0xca, +0xf1,0xcc,0xc3,0xb2,0xac,0x9e,0x14,0xd5,0xc4,0x86,0xb8,0xfe, +0x4b,0xfd,0x1c,0x25,0x79,0x57,0xb2,0x2e,0x65,0xe7,0x28,0x27, +0xc2,0xbf,0x3b,0xf0,0xfa,0xb3,0xff,0x6e,0xe5,0xf8,0x91,0x56, +0x26,0x10,0xb9,0xb9,0xdc,0x65,0xd8,0x9c,0x1d,0x9e,0x07,0x97, +0x49,0x55,0x69,0x5d,0x55,0x55,0x1d,0x87,0x8f,0xfb,0x60,0x09, +0xb4,0x6c,0xc6,0xf9,0x6c,0xaa,0x91,0xb4,0xa0,0xaa,0x3e,0x3d, +0x53,0xa6,0x2a,0xb0,0xf8,0x88,0xcd,0x2c,0x48,0x2f,0x48,0x2b, +0xe2,0xe0,0xb7,0x4e,0x7c,0xc8,0x24,0xe6,0x27,0xe4,0xc7,0x17, +0xea,0xa6,0xf2,0xe1,0xee,0xe7,0xdc,0x83,0xdc,0x38,0x0c,0x32, +0x00,0x1b,0x46,0x7f,0xd5,0xae,0x75,0xab,0x8f,0x71,0x60,0xdf, +0x45,0xc9,0x61,0xcb,0x11,0x16,0x5b,0x8c,0x08,0xb4,0x1c,0xc6, +0x16,0x46,0xf1,0xc1,0x36,0xe9,0xe9,0xee,0xf4,0xe9,0x93,0x87, +0x7f,0xa6,0x4f,0x4f,0x21,0x72,0x6b,0xb9,0xfb,0xb0,0x35,0x8b, +0xcb,0x85,0xa9,0x04,0x16,0x60,0x3e,0x9b,0xf7,0x48,0x01,0x3e, +0x6b,0x13,0x1f,0x1a,0x83,0x09,0x73,0x66,0x8f,0x02,0xaa,0x18, +0x83,0x22,0xe3,0xb1,0x5a,0x01,0x37,0x1a,0xc9,0xa7,0x53,0x78, +0xdc,0xfc,0x82,0xac,0xc6,0x44,0xb6,0xf8,0x85,0x02,0x0c,0x89, +0x6b,0x09,0xd8,0x89,0x1e,0x68,0xc7,0x0a,0x9b,0x60,0x3d,0xc1, +0x51,0x88,0x30,0x8a,0x55,0x7c,0x40,0xfb,0x38,0x20,0x77,0xd7, +0x1c,0x7a,0x3f,0x71,0xe4,0x29,0xc9,0x44,0x6e,0x49,0x9f,0x62, +0xc9,0xe2,0x4b,0xe1,0x34,0x95,0x83,0x51,0x1d,0x18,0xf5,0x44, +0x73,0x17,0x06,0x18,0x42,0xc0,0x5e,0xac,0x34,0x90,0x2b,0x52, +0x88,0xd3,0xd1,0x25,0xa1,0x1e,0x5e,0x26,0xa7,0x9d,0x39,0x71, +0x8a,0x01,0x94,0xee,0x19,0xf9,0xdf,0x79,0x03,0x7f,0x4a,0x3b, +0x8a,0x44,0x3f,0x82,0x9a,0x4e,0x3c,0xca,0x64,0x16,0x65,0xd7, +0xa4,0x14,0x71,0x22,0x17,0x49,0xb2,0xce,0x16,0xda,0x26,0x7b, +0x75,0xe6,0xf0,0xc1,0x85,0xa7,0xaa,0x7d,0xf2,0x38,0xa9,0x6b, +0x03,0x43,0x72,0x2f,0xf5,0x81,0x91,0xae,0x0d,0x0c,0xa7,0x12, +0xb9,0xad,0xdc,0x6b,0xd8,0x96,0x1d,0x5e,0x07,0x96,0xa4,0xa9, +0xb4,0xb6,0xac,0x92,0x0a,0xe9,0x95,0xec,0xa1,0xbc,0x53,0x5f, +0xa9,0x40,0x06,0xd3,0x24,0xcd,0x02,0xee,0x65,0xf5,0x92,0x15, +0x76,0x60,0x26,0x6b,0x76,0x3e,0x89,0xd2,0x19,0x65,0x88,0x60, +0x03,0x3f,0xf1,0x8b,0xf2,0x56,0xf1,0x8b,0x0e,0x8e,0xf2,0x9c, +0xb5,0x9e,0x49,0x30,0x57,0xf8,0x96,0x19,0xcc,0x4f,0x6b,0x8e, +0x53,0xbd,0x9a,0x77,0xa9,0xf6,0x9a,0x72,0xb5,0x5d,0x93,0x63, +0x87,0x4b,0x59,0x23,0x7f,0xb0,0x4e,0xa7,0xd9,0xa2,0x93,0x83, +0x75,0x2d,0xa8,0xcf,0xf8,0x16,0x05,0x16,0x05,0x97,0x70,0xc0, +0xb6,0xa0,0x31,0x93,0x5c,0x9e,0x58,0x19,0x2f,0x33,0x48,0xe4, +0xc3,0x6c,0xcf,0xd9,0x05,0x3b,0x72,0xb8,0x80,0xc9,0x2f,0xc8, +0x2d,0xce,0x28,0xb6,0x2c,0xe4,0x9d,0x74,0x4d,0x4c,0x34,0x6c, +0x2a,0xec,0xf8,0x6b,0xb9,0x65,0x85,0xc5,0x25,0x9c,0x19,0x4c, +0x61,0x83,0xdc,0x03,0x3d,0xa5,0x2d,0xf6,0x6c,0x4c,0x61,0x17, +0x63,0x61,0xa8,0x65,0xb2,0xcb,0x9c,0x93,0x2f,0x02,0x19,0x31, +0xee,0x33,0x6d,0x31,0xa8,0xb1,0x77,0xe1,0x3b,0x6d,0x5b,0x4c, +0x3b,0x4f,0x70,0x18,0x73,0x8d,0x24,0x79,0xa4,0x7a,0xa4,0xd3, +0x8b,0x09,0x93,0x51,0x94,0x5a,0x94,0x4c,0x9f,0x39,0x91,0x62, +0x4f,0xc6,0x99,0xac,0x33,0xb9,0x67,0x39,0xbc,0xc9,0xe4,0x52, +0x3d,0x9e,0xf1,0x61,0x38,0x86,0x06,0xe5,0xee,0x1a,0xff,0x65, +0x69,0x2b,0x6a,0x03,0x2b,0x76,0x95,0x7c,0x1c,0x71,0x2f,0xb0, +0x2e,0x72,0xce,0x70,0x77,0xe3,0x2b,0x7d,0x2b,0xcf,0x56,0x78, +0x70,0x38,0x5d,0x54,0x24,0xb6,0x46,0xc6,0xd6,0x6a,0x8e,0x32, +0x73,0xbe,0xa7,0xa2,0xa5,0xb6,0xba,0x25,0xcf,0xa1,0xc8,0xe5, +0x9a,0x57,0x85,0x63,0x43,0xfa,0xd5,0xba,0x14,0xca,0x8e,0xcc, +0xb3,0x83,0x71,0xaa,0x6b,0xb6,0x47,0xd5,0xe9,0x46,0xa5,0x96, +0x7b,0x15,0xcf,0xf3,0x5f,0x19,0x65,0xf0,0xbe,0xdb,0xbc,0x0e, +0x39,0x6a,0x7a,0x3c,0xf1,0x7f,0x19,0xf5,0x92,0x03,0x87,0x4e, +0x74,0xf8,0x55,0x7f,0x39,0x0a,0x06,0x20,0x67,0xae,0xe2,0xa8, +0x6c,0x64,0xeb,0x57,0x72,0xa8,0x08,0xe1,0x04,0xb3,0xd0,0x1e, +0xb2,0x98,0x91,0x7a,0x09,0x0a,0xb8,0x59,0xe2,0xa6,0x61,0x68, +0x47,0x16,0x9e,0x41,0x36,0x08,0xc7,0x84,0xc7,0x6b,0xf3,0x30, +0x26,0x11,0x14,0x33,0x7e,0xf9,0xdb,0x92,0x83,0x72,0x2f,0x8d, +0x7f,0x2c,0x99,0x46,0xe4,0x76,0xd4,0x92,0x76,0x2c,0x2e,0x16, +0xae,0x91,0x77,0x54,0x89,0xc5,0x67,0xc5,0x65,0xc6,0xa4,0x8f, +0xbc,0x30,0x3f,0xef,0x1d,0x46,0xfb,0xbd,0xcc,0x02,0x66,0x30, +0x1e,0x9a,0x0a,0xb8,0xce,0x42,0x3e,0xa9,0x91,0xc1,0x55,0xd2, +0x8b,0xcb,0x34,0x36,0x21,0x33,0x31,0x27,0x21,0x87,0x83,0x3f, +0x44,0x65,0xd2,0x88,0x36,0xed,0xb0,0x15,0x16,0x8a,0xa7,0x71, +0x21,0x24,0x19,0x61,0xaf,0x45,0x2d,0x1b,0xe1,0x1a,0x2a,0x19, +0x08,0x1a,0xf7,0xf6,0x7e,0x0e,0xde,0x8d,0xe8,0x4d,0x89,0xf2, +0x68,0x30,0x22,0xba,0xa2,0x42,0x0f,0xeb,0x87,0x49,0x84,0x8a, +0x90,0xdc,0x2b,0x19,0x1c,0xd8,0xaa,0x33,0x8a,0xa0,0xb4,0x8d, +0xfc,0xa7,0x59,0xff,0x9a,0xcc,0x0e,0xc8,0x1f,0x11,0xa9,0x59, +0xc3,0x5e,0x8c,0xf0,0x93,0x90,0x29,0x55,0xd2,0xb4,0xc4,0x45, +0x6c,0xdf,0x6b,0x02,0xaf,0x0c,0xf0,0x15,0x23,0x1c,0x12,0xb7, +0x12,0x78,0x2a,0x66,0xe1,0x53,0xb6,0x1b,0x2a,0x88,0xb0,0xc6, +0x54,0x5c,0xc3,0x58,0x8d,0x13,0xd6,0x18,0xff,0xfd,0xd7,0x90, +0xfe,0x3d,0x84,0x7b,0xc9,0x83,0xb4,0xef,0xcb,0x9b,0xca,0xdc, +0x6a,0x79,0x53,0xf7,0x1d,0x9e,0x7b,0x03,0x38,0xe1,0x4d,0x14, +0xd1,0x2c,0xdd,0x52,0xac,0x95,0xe1,0x65,0xc5,0xdf,0xf0,0x7b, +0x7c,0x7a,0xc8,0xf5,0xc3,0xa8,0xf4,0xcb,0xbd,0xb4,0xfe,0x19, +0x95,0x0c,0x42,0x95,0xa7,0xd7,0xb0,0x03,0x2b,0xce,0x7b,0x48, +0x12,0xad,0x47,0xbe,0x5b,0x48,0x4e,0x2f,0x57,0xfd,0x09,0x96, +0x36,0xe2,0xd2,0x1b,0x6c,0xfe,0xa5,0xdc,0xcb,0xb9,0x97,0xd2, +0x02,0x52,0xfd,0x93,0xfc,0xab,0xf2,0xf8,0xb3,0x65,0x4e,0xd5, +0x27,0x4b,0xb8,0x42,0xb0,0xc5,0xb0,0x7a,0x68,0x69,0xc4,0x96, +0x66,0x7d,0x33,0xbc,0x66,0x01,0xd7,0xac,0xd0,0x0f,0x6d,0xc1, +0xdf,0x8a,0x89,0x5e,0xbe,0xe4,0xe2,0x9a,0x59,0x31,0x16,0xa0, +0x74,0x19,0xb6,0x5c,0x81,0x79,0xf1,0x4a,0x9a,0xa2,0xa1,0x85, +0x60,0x48,0xc5,0xdb,0x2a,0xc1,0x80,0x58,0xe2,0x61,0xaa,0xad, +0xfd,0x67,0x80,0xa6,0x25,0x6a,0x32,0xe8,0x6f,0x4f,0xe0,0xb0, +0x05,0x1e,0x66,0x84,0x4d,0x33,0x50,0xb3,0x11,0x34,0x99,0xc4, +0xcd,0xc4,0x23,0x40,0x22,0x97,0x31,0x11,0x4a,0xba,0x51,0x27, +0xa2,0x8f,0x45,0x73,0x75,0x2c,0x86,0xa3,0x17,0x91,0x79,0x57, +0xbb,0xd6,0xdb,0xd5,0x94,0xf2,0x36,0xd7,0xad,0xae,0x39,0xe4, +0x70,0xff,0x7f,0x63,0x29,0xdf,0x2b,0x2c,0x21,0x2d,0xd8,0xd8, +0x0e,0xee,0xb0,0x45,0x0c,0xc0,0x2d,0x60,0x6f,0x84,0x55,0xa6, +0x2c,0xf0,0xe0,0x46,0x04,0x76,0xbf,0xc8,0x32,0x82,0x81,0x18, +0x42,0xa0,0x57,0x2c,0xa4,0xd2,0xb8,0x0f,0x92,0x89,0xb0,0x0e, +0x5d,0xc4,0x75,0x0c,0xbc,0xac,0x23,0xa0,0x8c,0x79,0xa8,0xcc, +0x36,0xfd,0x44,0x1b,0x67,0x4c,0x1b,0xa7,0x28,0xe4,0xc8,0x6d, +0x89,0xb0,0xb2,0x53,0x5c,0x79,0x4f,0xed,0x90,0x38,0xdb,0x40, +0x98,0x8d,0x45,0xe2,0x06,0xfd,0xf7,0xf3,0xbb,0xc4,0x03,0x0c, +0xb6,0x53,0x01,0xed,0xc1,0x1e,0xb1,0x39,0xb9,0xc8,0x52,0xa5, +0xc4,0xbc,0x3f,0x5f,0x96,0x5f,0x5c,0xa0,0x14,0x47,0xc5,0x64, +0x52,0x04,0x4c,0x3f,0xc8,0x97,0xd5,0xe3,0x84,0x5b,0xa1,0x31, +0x61,0x9f,0x84,0x87,0x29,0x85,0x9e,0x1b,0xd9,0x32,0x2b,0xa9, +0xb0,0x41,0xb9,0x80,0x15,0x0e,0xce,0xa0,0xb7,0x59,0xbb,0xac, +0xb0,0x1e,0xb9,0xad,0x3c,0xaf,0xa8,0x50,0x29,0xfe,0xc3,0x6d, +0xb3,0xe9,0x6d,0x0d,0xf8,0xf1,0xa7,0xa1,0x31,0xa1,0xd2,0x6d, +0x61,0xe7,0x22,0x2e,0x2b,0xa4,0xe7,0x25,0x8e,0xdc,0x26,0x3e, +0xa0,0x58,0xd8,0x21,0xfc,0x61,0x78,0x53,0xd8,0x32,0xec,0x25, +0x6e,0x61,0xe5,0xeb,0x85,0xb1,0x04,0xd3,0xc4,0x3f,0x20,0x8d, +0x15,0x92,0xd0,0x99,0xc0,0x0e,0x71,0x17,0xee,0x60,0x85,0xd1, +0x54,0x95,0x1d,0xc5,0xfe,0xdb,0xec,0xff,0xb7,0xdd,0x87,0xa7, +0xc9,0xb7,0x13,0x5c,0x23,0xd4,0xc2,0x1a,0x56,0x54,0xb4,0x22, +0x87,0x91,0xb9,0xcb,0x42,0xc9,0x61,0x42,0xff,0xd2,0xbc,0xd6, +0x72,0x98,0xdc,0x05,0xee,0x30,0x2b,0x96,0x6c,0x26,0xe6,0xf2, +0x71,0x4d,0xac,0x68,0x25,0xce,0x22,0x54,0xf4,0x47,0xd9,0x5e, +0x88,0x33,0xe7,0x61,0x42,0x22,0xcc,0xce,0xfa,0x26,0x2b,0xb2, +0x89,0x37,0x0d,0xd5,0x09,0xd5,0x08,0xe3,0x7e,0x62,0x2b,0x32, +0x4a,0x73,0x0a,0x72,0x7b,0x16,0xbf,0x39,0x00,0x0b,0x2d,0xb2, +0x9a,0x79,0xad,0x0c,0xc3,0x5c,0xcb,0x92,0xda,0xec,0xc6,0x22, +0x59,0xb1,0x87,0x8c,0x77,0x74,0x33,0xf4,0x30,0x3e,0xeb,0x95, +0x73,0x36,0xdf,0xaf,0x90,0x03,0x5d,0x50,0x15,0x83,0x51,0x15, +0xb6,0x30,0xc6,0x2e,0x3b,0xdd,0xe6,0xfb,0xa5,0x99,0xf3,0xbd, +0x49,0xed,0xa9,0x8d,0x34,0x5a,0x7e,0x84,0xa3,0xc4,0x48,0x9c, +0xda,0x4e,0x25,0xf2,0x42,0xb8,0x44,0xcc,0x7d,0x4c,0xfd,0x4c, +0xfc,0x39,0xb8,0x0f,0xf3,0xfb,0x71,0x3e,0xa4,0xab,0x61,0x3a, +0xaa,0x6a,0x81,0x2a,0xbe,0x60,0x8d,0x03,0x8c,0x02,0x0d,0x82, +0x33,0x34,0x79,0x50,0xae,0x02,0xe6,0xfa,0x5f,0xcd,0x1c,0x54, +0x08,0xef,0x09,0x66,0x6b,0x81,0x19,0x2e,0x67,0x30,0xed,0x18, +0xa5,0x79,0x81,0xe8,0xa5,0xd2,0xa8,0x07,0xfa,0xa0,0xfd,0x05, +0x28,0x25,0xfd,0x5d,0xa5,0x5a,0xed,0x29,0xce,0x84,0x13,0xa8, +0x5d,0x4f,0x79,0x83,0x07,0xb8,0x1f,0x86,0x19,0x90,0xa6,0xac, +0x08,0xa9,0xc2,0x27,0x04,0x16,0x0f,0xe0,0x62,0xc8,0x57,0xc3, +0x7c,0x5c,0xa8,0x09,0x0b,0xf1,0x0d,0x43,0x1f,0x12,0xa8,0x17, +0x9c,0xa1,0xc1,0xc3,0x02,0x19,0x4c,0xba,0x0e,0x5c,0xeb,0xb9, +0x7e,0xde,0xc0,0xdb,0xc0,0x57,0xd7,0x8f,0x93,0x1f,0x10,0x28, +0x81,0x7f,0xa6,0x09,0x01,0xc3,0x35,0xb7,0x84,0x52,0x26,0x31, +0xf6,0x52,0xfc,0x79,0x15,0xf0,0x47,0xd3,0xda,0x0e,0xf4,0x07, +0xa3,0xc0,0xe4,0xd0,0x4b,0xd2,0xea,0x8d,0x50,0x85,0x08,0xf0, +0x82,0x1a,0x46,0x51,0xfe,0x47,0x17,0xc1,0xad,0xf2,0xdc,0x13, +0xc3,0xb9,0xb8,0x5e,0x00,0x8d,0x61,0xdf,0xc1,0xbb,0x02,0x39, +0x3c,0x28,0xf7,0xd3,0x60,0x86,0x39,0xdc,0x46,0x60,0x4a,0x1f, +0x4e,0x81,0x62,0x75,0x2c,0xc6,0x49,0xda,0x94,0x6b,0xbc,0x67, +0xac,0x02,0x2c,0x82,0xcc,0x82,0x33,0xb5,0xa8,0x06,0x90,0xbd, +0xae,0xfa,0xa5,0xf1,0x5c,0x1f,0x6f,0xeb,0x67,0xed,0x6f,0xe5, +0x3f,0x32,0xc9,0x75,0x98,0x80,0x06,0x13,0xbc,0xdf,0x63,0x8d, +0xcd,0xce,0x0e,0x0f,0xbe,0xf5,0xd7,0x92,0x77,0xc9,0x5f,0x70, +0xad,0xe2,0x4c,0x36,0xad,0x23,0xb1,0x3b,0xb6,0x87,0xc2,0x9c, +0x3f,0xce,0x71,0xc1,0xb1,0x9b,0x70,0x52,0x9b,0x3d,0x5f,0xd3, +0x53,0xd6,0x9f,0x37,0xc4,0xbd,0xc6,0x99,0x0c,0xba,0x1e,0xc0, +0x85,0xa8,0x81,0x8b,0x54,0xaa,0x34,0x61,0x03,0x28,0x3d,0x87, +0xa9,0x71,0xb0,0x8b,0x0e,0x4f,0x3c,0xee,0xf9,0x01,0xa7,0xc1, +0x76,0x24,0x15,0x83,0x3c,0x1a,0xc2,0xa2,0xdd,0xb0,0x10,0x5c, +0x94,0xb1,0x09,0x33,0x89,0xb9,0xaf,0xa9,0xaf,0x64,0x8d,0x6f, +0x41,0xb5,0x9f,0x9a,0xaf,0x58,0x8d,0x36,0x73,0x96,0x16,0xcc, +0x42,0x60,0x4d,0x03,0x8c,0x83,0x0c,0x83,0x24,0x6b,0x28,0xc9, +0x60,0xac,0x8c,0x5a,0x43,0x51,0xe0,0x21,0x8c,0x58,0xfa,0x9a, +0xfb,0x99,0xd1,0x5b,0x1e,0x83,0x4a,0x3f,0xaa,0x40,0xf6,0x09, +0xcc,0x46,0x65,0x2d,0x1a,0x6a,0xaf,0xe8,0x2d,0x26,0x81,0x86, +0x23,0x06,0x9c,0x51,0x05,0xa3,0x65,0x7f,0x50,0x03,0x8e,0x87, +0x67,0x1f,0x0a,0x5f,0xa7,0x81,0x4a,0xe9,0x9f,0xb5,0xae,0x1d, +0xfc,0x3c,0x5b,0x54,0x76,0x47,0xab,0xff,0x97,0xc2,0xd7,0x55, +0x7f,0x17,0xbe,0x76,0xf8,0x50,0xf8,0x7a,0x47,0x2f,0x0d,0xd8, +0x09,0xe0,0x41,0xac,0xfc,0x2c,0xfd,0x2c,0x46,0x1a,0x39,0xb3, +0x9f,0xda,0xb9,0xf8,0x04,0x6d,0xe4,0x34,0x2d,0x98,0x86,0x02, +0x6b,0x1e,0x60,0x16,0x64,0x12,0x94,0x41,0xc7,0x72,0xaa,0xec, +0x4f,0xd9,0x6f,0x4d,0x1c,0xbc,0x83,0x5c,0x02,0x86,0x03,0xb4, +0x9f,0xbf,0x1e,0x1f,0xee,0xc5,0x45,0xf2,0x83,0x6a,0xc3,0x07, +0x71,0xa3,0xa6,0x7c,0xee,0x00,0xba,0x53,0xdc,0x4e,0x10,0xa2, +0xfe,0xf6,0x89,0x91,0xce,0xce,0xd7,0x84,0xf9,0xf8,0x27,0x63, +0x1c,0x60,0x10,0xa8,0x3f,0xe2,0x13,0x73,0x64,0xc0,0xca,0x60, +0x4c,0x0b,0xf5,0x09,0x33,0x5f,0x13,0x5f,0x23,0x7f,0x4e,0xf0, +0x86,0x3f,0xc8,0xb9,0x94,0x73,0x97,0x03,0x83,0x83,0x83,0xf9, +0x88,0xcf,0x99,0xbc,0xc6,0xcc,0xd6,0xb4,0x56,0x0e,0xcc,0x7b, +0xc5,0x5a,0x1d,0x28,0x61,0xcc,0x71,0xd5,0x3c,0xdc,0x88,0xcb, +0x91,0xaf,0xd1,0xe7,0xbf,0x7c,0x78,0xff,0xcb,0xde,0x5f,0x38, +0xb1,0x6d,0x48,0xa8,0x60,0x13,0xe3,0x2e,0xc7,0x46,0xa8,0xc0, +0x29,0xbc,0xda,0xd8,0xa1,0xa0,0x28,0xff,0x4d,0xbe,0x87,0xc0, +0x3a,0x0d,0x5c,0x87,0x6d,0xb0,0x4e,0x1d,0xd7,0xad,0xd4,0xfa, +0x79,0x58,0x6f,0xe8,0x06,0xb4,0x9d,0x18,0x94,0xeb,0xfd,0xd6, +0xcf,0x0e,0x9b,0xe1,0x61,0xf2,0x5f,0x9d,0x1c,0x19,0x56,0x60, +0xa8,0x25,0x02,0x8d,0x46,0x86,0x75,0xa6,0x8c,0x0e,0xeb,0xbb, +0x66,0xea,0x31,0x16,0xd4,0x0a,0xa6,0x74,0x4c,0xe2,0x24,0x2d, +0x7e,0x11,0xda,0xf0,0x22,0x8b,0x6d,0xda,0x84,0x1e,0x94,0x61, +0x1b,0x1d,0xb7,0x6c,0x18,0x43,0x84,0xa9,0x9d,0xe2,0x54,0xe1, +0x98,0xb0,0xbd,0x5b,0xdc,0xfe,0x9a,0x01,0x12,0x47,0xc3,0xfc, +0xf7,0xf4,0x33,0x9d,0xbc,0x2b,0xda,0xe3,0xd5,0x08,0xac,0x9a, +0x95,0xac,0xa3,0x00,0x13,0x80,0xbb,0x7c,0x15,0xc6,0xa8,0xae, +0x10,0x97,0xeb,0x09,0xcb,0xc5,0x63,0xe2,0x68,0x03,0x61,0xf4, +0x7c,0x71,0x83,0xde,0xfb,0xb9,0xdd,0xe2,0x01,0x56,0x34,0x86, +0x50,0x72,0x2f,0xfd,0xeb,0xfc,0xbb,0x85,0xdc,0x86,0x3e,0xf8, +0x56,0xfb,0x00,0x9e,0x35,0x84,0xb3,0x87,0xd9,0x43,0xa7,0x56, +0x9e,0xda,0x17,0xc8,0x09,0x9f,0x97,0x90,0x03,0x25,0xde,0x77, +0x54,0x60,0x36,0xd3,0x98,0x9e,0x55,0xa3,0x7a,0x9f,0x35,0x4c, +0x55,0x58,0x8d,0xb3,0x58,0x9b,0xf0,0x04,0x99,0xea,0x10,0xfb, +0x55,0xc6,0xd3,0xc2,0x81,0x72,0xaf,0x66,0xde,0xc4,0xe3,0x80, +0xe7,0x9e,0x00,0x0e,0xc6,0x69,0xb3,0x8a,0xa0,0x0e,0x65,0x64, +0x50,0x18,0xcb,0x94,0x35,0x97,0xf6,0x14,0xdf,0xd5,0xc9,0xe6, +0x8d,0x71,0xfa,0x46,0x9c,0xb2,0x60,0x73,0xa5,0x1e,0x5f,0x5b, +0x71,0xbd,0xa6,0xa2,0x91,0x83,0x69,0xe7,0x09,0xb8,0x17,0xdd, +0x41,0xd5,0x77,0xf3,0x60,0x8a,0xa9,0x52,0xb3,0xcf,0xb5,0xd4, +0x84,0xfa,0x52,0x98,0xcd,0xeb,0x97,0xb8,0xe2,0x4a,0x1c,0xd3, +0xb8,0xe6,0x3b,0x75,0x98,0xa0,0x04,0xcf,0x6b,0x22,0x7b,0xf1, +0x0f,0xab,0xd3,0xbd,0x7e,0x37,0x43,0xef,0x28,0xa9,0x87,0x24, +0x1e,0xcf,0x38,0x91,0xa7,0xa3,0x84,0xe6,0x5e,0x0a,0x42,0x12, +0x85,0x4e,0xe3,0x5a,0x9d,0x2a,0xe3,0x02,0x47,0x5b,0xbe,0xc3, +0xb3,0xc7,0xbe,0xd9,0x96,0xc3,0x44,0x31,0x8d,0x80,0xd8,0x87, +0x22,0x4c,0x57,0xc3,0xe9,0xf8,0x8b,0x36,0xfc,0x82,0x2b,0xc4, +0x35,0x5a,0xef,0x67,0xf5,0x8b,0x7b,0x19,0xc5,0xf7,0x86,0x41, +0x64,0x5d,0xcd,0xfe,0x46,0xcd,0x8e,0x47,0xcf,0x7a,0x7e,0x2b, +0x87,0x29,0x5c,0x0b,0x3a,0x83,0x1e,0xa8,0xb3,0x61,0xd6,0xde, +0xc6,0x3e,0x8e,0x5d,0x67,0xf9,0x82,0x96,0xbc,0xbe,0xe4,0x2e, +0x7a,0xfe,0x12,0x8c,0x56,0xc7,0xd1,0x78,0x09,0x33,0x58,0x74, +0xf4,0xc4,0xf5,0xdb,0x70,0x82,0x4a,0x87,0xf9,0x17,0x30,0xad, +0x0a,0x96,0xc6,0x80,0x8b,0x92,0xa0,0xcc,0x78,0xae,0x34,0xdb, +0x7c,0xf8,0xc0,0xf1,0x4f,0xcd,0x1e,0xda,0x7f,0x61,0xe0,0xc6, +0xd7,0x6e,0x6a,0xdb,0x7d,0xfb,0xf0,0x09,0xfd,0x5d,0xe6,0x2b, +0xed,0x4b,0xb5,0xf8,0x57,0xb5,0xcf,0xdb,0xee,0x0d,0xdd,0xd4, +0x7d,0x62,0xf4,0xca,0x82,0xa3,0xd0,0x5f,0x4b,0x1c,0xfd,0x1c, +0xfc,0xed,0x02,0x24,0xe0,0x1c,0xd7,0x8b,0xe3,0xa0,0x58,0x13, +0x8b,0xe7,0xea,0xfc,0x85,0xc3,0xac,0x5d,0xa0,0x4d,0x90,0x75, +0xb0,0xb4,0x89,0xc6,0x18,0xd9,0x0f,0x95,0xdf,0x34,0x70,0xd0, +0x0c,0xf7,0x09,0xaa,0x4b,0x4d,0xa3,0x26,0x4f,0x96,0x3f,0x23, +0x66,0xa8,0xae,0x8e,0x73,0x57,0xe0,0xf8,0x6b,0x5a,0xbc,0xac, +0xb1,0xa2,0xbd,0xb8,0x9b,0x13,0x07,0x3f,0xd4,0x1b,0xcd,0x7f, +0x98,0xfd,0x8c,0xc3,0x9f,0xf0,0xf3,0xff,0x86,0xa4,0xc9,0xda, +0x30,0x19,0x91,0xb1,0x0c,0xfc,0x07,0x92,0x26,0xcb,0x7e,0xaf, +0xfa,0xb5,0x89,0x3a,0x98,0x8d,0xaf,0x95,0xbf,0xa5,0x3f,0x27, +0xe7,0x04,0x17,0x02,0xa6,0x1a,0x68,0x8a,0x51,0x5a,0x10,0x25, +0xde,0xc3,0x2d,0x6c,0x96,0xa6,0xb4,0xc3,0xd6,0xdf,0x05,0x4a, +0x7f,0xee,0x67,0x69,0xbe,0xdd,0xf3,0x77,0x15,0x52,0x23,0x0f, +0xbe,0x71,0x4f,0xcd,0xba,0xb2,0x7f,0xaa,0x90,0x0e,0x49,0x55, +0x48,0x6f,0xaa,0x82,0x21,0x24,0x41,0x0d,0x56,0xb2,0xb9,0x55, +0x59,0xb2,0x8c,0x6a,0x0e,0x9e,0x32,0xb8,0xf7,0xe2,0xf2,0xb0, +0xcd,0x2a,0xc7,0xce,0x4b,0x55,0x48,0x77,0x4a,0xf3,0x08,0x3e, +0x63,0xbe,0xa8,0xba,0xfe,0x2a,0x51,0x35,0xe1,0x97,0xcb,0xbf, +0xc3,0x69,0x65,0x71,0xd4,0xff,0x54,0x21,0x3d,0x89,0x53,0xf4, +0x71,0xec,0xf6,0xd5,0x8d,0x66,0x52,0x15,0xd2,0xb4,0xa4,0x74, +0xa9,0x0a,0xe9,0x82,0x91,0x2a,0xa4,0x1d,0xff,0x5b,0x15,0xd2, +0x19,0x34,0x54,0x61,0x7c,0x3f,0x8e,0xff,0x10,0x40,0x53,0xb5, +0x60,0x2a,0xca,0x19,0x8b,0x40,0xb3,0x40,0xd3,0x60,0x09,0x25, +0xa6,0xc9,0xde,0xc9,0xde,0x36,0xd1,0xd8,0xb6,0xf0,0xb1,0x90, +0xe2,0x47,0xb0,0x85,0x5f,0x08,0x1e,0x42,0x73,0x38,0x44,0x9d, +0xf2,0x57,0x48,0x25,0x76,0x7e,0x36,0x7e,0xd6,0x74,0xf4,0x6f, +0xc1,0xe4,0x5e,0x9c,0x0c,0xf1,0x1a,0x18,0x8f,0x13,0x74,0x60, +0x02,0x7e,0xcf,0x5a,0x05,0x5a,0x06,0x99,0x8f,0x8c,0xd2,0xf8, +0xaa,0x57,0xb2,0x17,0xd4,0x43,0x95,0xa0,0x8b,0xf8,0xe4,0xf8, +0x64,0xfb,0x64,0xd9,0x50,0x6e,0xa6,0xd5,0x77,0xa2,0xfb,0xb0, +0x8e,0x99,0x9a,0xed,0x7e,0x97,0x52,0x3d,0x1e,0x8c,0x5e,0x50, +0x96,0xa2,0xfc,0x17,0x9c,0x30,0xaa,0xe0,0x8d,0xd6,0x6b,0xef, +0x3e,0x72,0xdc,0xab,0xec,0x54,0xd9,0xa9,0x92,0xbe,0x5b,0xad, +0x9f,0x55,0xde,0x1e,0x59,0x31,0x90,0x07,0x0a,0x1a,0x94,0x01, +0x27,0xe8,0x40,0x24,0x73,0x52,0xd7,0x56,0xd7,0xc2,0x94,0x83, +0x07,0xf8,0x33,0x39,0x97,0x16,0x7a,0x25,0x20,0x2c,0xf8,0x3c, +0x1f,0x75,0xf5,0xce,0x8d,0x3b,0xdf,0x76,0x7c,0xaf,0x64,0x52, +0x8e,0x2a,0xe8,0x48,0xf3,0xdf,0x64,0x1c,0xc2,0x69,0x4a,0x85, +0x3a,0xb0,0x6e,0x00,0xe6,0x7c,0xf9,0xc3,0x63,0xa5,0x84,0xf8, +0xf8,0x0b,0xb1,0x61,0xb0,0x1e,0x4f,0xf1,0x6d,0x95,0x0a,0x8a, +0x20,0x50,0x66,0x64,0xeb,0x67,0x23,0xe5,0x13,0xf8,0x1e,0x3e, +0xea,0xc3,0x8f,0xfe,0x3b,0xfb,0xb0,0xff,0x93,0x7d,0x26,0xca, +0x7e,0xab,0xfa,0xb9,0x91,0x13,0x96,0x47,0x90,0x1b,0x75,0x37, +0xfb,0x6a,0x5a,0x6d,0xea,0x79,0x7b,0x13,0x6d,0x5d,0x4d,0x1b, +0xd7,0xde,0xb3,0x43,0xc1,0x9f,0x71,0xe0,0x2d,0xac,0x17,0x43, +0x86,0x1b,0x98,0xdd,0x41,0x29,0xda,0x30,0x2a,0x0b,0xd6,0x55, +0xbd,0x29,0x57,0x0a,0xeb,0x3e,0xee,0xb3,0xc9,0x7b,0xbb,0xbf, +0x92,0x30,0x09,0xe6,0xb2,0x55,0xa8,0xf3,0x25,0x2e,0x00,0x0b, +0x9c,0x5e,0xde,0xc9,0x6f,0xe9,0x3a,0xd1,0x63,0x3e,0xc4,0xdd, +0x91,0xf6,0x69,0x9b,0x2c,0x8e,0x83,0xc9,0xac,0x30,0x0e,0x0f, +0x10,0x9c,0x41,0x8f,0x67,0xd0,0xfc,0x9f,0x24,0xff,0x92,0x98, +0x2c,0x3f,0xb6,0x75,0xeb,0x71,0x3a,0x3e,0x3f,0xdc,0x7f,0xfc, +0xaa,0xeb,0x1d,0x87,0xbf,0xe1,0x0d,0xf2,0xa6,0x77,0x11,0xe4, +0x6b,0xd0,0x14,0x3d,0x46,0x07,0xc6,0xa0,0xc0,0xd8,0x06,0x5a, +0x07,0x59,0x8d,0x78,0xfa,0x38,0xd9,0x4f,0x95,0xdf,0x37,0x84, +0xf6,0xf1,0x0e,0x7e,0xf6,0xfe,0xb6,0x94,0x0d,0x2b,0xcb,0x15, +0x88,0x36,0x3c,0xef,0x63,0xc5,0x75,0xa8,0x46,0x4c,0x17,0x6d, +0x47,0x66,0xe3,0x81,0x42,0x5d,0xbe,0xa6,0xbc,0x52,0x56,0x58, +0xc1,0x89,0xfa,0x7d,0x42,0x06,0x5b,0x52,0x5b,0xdc,0x56,0xd0, +0xcd,0x25,0xe8,0x11,0x1d,0xd0,0x14,0xcf,0xe0,0x62,0xa9,0x9e, +0x1a,0x55,0xce,0xff,0x54,0xd5,0x9b,0xd2,0x4b,0xad,0xfd,0xee, +0xef,0x81,0xb2,0x1e,0x19,0xa8,0x31,0x7d,0x38,0xe6,0xc3,0x40, +0x4d,0xd0,0xa6,0xd6,0xc6,0xff,0xb2,0xf6,0x04,0x9a,0xa6,0x5f, +0x36,0x72,0xc9,0x50,0x48,0x60,0x73,0x2c,0x1c,0x4e,0x80,0x39, +0x19,0x19,0x9e,0x19,0x1e,0xa9,0x5e,0x6d,0xe5,0xbc,0xd9,0xb3, +0x03,0x6f,0x8d,0x6f,0x98,0xba,0xf1,0x05,0xae,0xa5,0xd6,0xa5, +0x96,0x1b,0xc3,0x17,0x9e,0x5f,0x10,0x59,0xfb,0x69,0xcb,0xcb, +0xaa,0xa7,0x1c,0x34,0xf4,0x8a,0x9f,0xea,0x80,0x2d,0xe3,0xb2, +0xd7,0x70,0x99,0xf9,0x11,0xee,0xe2,0xa9,0x53,0x17,0x4f,0xcd, +0x82,0x21,0xa9,0xd8,0x60,0x54,0x2f,0x46,0x7d,0x28,0x8d,0xea, +0xab,0x03,0xbe,0x78,0x14,0xbb,0x75,0xe4,0xd3,0x7b,0xb1,0x98, +0x06,0x32,0x0b,0xee,0xc4,0x9a,0x86,0x9f,0x94,0xf3,0xbe,0x83, +0x89,0xfd,0x38,0xf1,0x43,0xc3,0x3e,0x78,0x33,0x4b,0xbd,0x39, +0xc8,0x74,0x24,0xe7,0x4d,0x91,0xbd,0xad,0x7a,0x4d,0x73,0xde, +0x19,0xe1,0x2a,0x39,0xdb,0xed,0x32,0xe4,0xd2,0xa6,0xef,0xce, +0x57,0x18,0x96,0xe8,0xe5,0x69,0x73,0x90,0x87,0xcd,0x04,0x7c, +0x60,0x62,0x1f,0x2e,0x63,0x8b,0x5b,0x8b,0x6f,0xe5,0x7e,0xaa, +0x99,0xcb,0x9f,0x3d,0xe2,0xb6,0xcf,0x51,0x93,0xc3,0xe7,0xda, +0x30,0x13,0x8f,0x33,0x01,0x9f,0x04,0x5e,0x0c,0x52,0xc1,0x25, +0x5a,0xb0,0x80,0x09,0x44,0x62,0xbc,0x09,0xd9,0x15,0xf5,0x26, +0xf4,0x83,0xff,0xec,0x81,0x31,0x19,0xb0,0x90,0x03,0x35,0xfc, +0xd7,0x10,0xfc,0x0b,0x66,0xf4,0x33,0x22,0x33,0xe3,0x52,0xda, +0x27,0x69,0xe9,0xca,0x70,0x0c,0x0e,0xa1,0x0f,0xab,0x28,0x9f, +0x2f,0x5f,0x4e,0x20,0xb1,0x17,0x13,0x61,0x92,0x06,0xde,0x41, +0x5b,0x6d,0xe1,0xd3,0x3e,0xec,0x64,0xc4,0xd5,0xa7,0x29,0xc4, +0xf4,0x4b,0x10,0xf3,0x9f,0x4c,0xfd,0x9e,0x31,0xa7,0xad,0x36, +0x19,0x89,0x41,0xa5,0xeb,0x94,0x4e,0xc0,0xa8,0x16,0x6a,0x54, +0x63,0x6f,0x23,0x1f,0x03,0x3f,0x0e,0xde,0xc0,0x7c,0x22,0x4e, +0x1f,0x84,0x40,0x36,0x39,0xe6,0x6a,0x2a,0x25,0x5c,0x4e,0xc8, +0x96,0x75,0xa0,0x03,0x8c,0xf3,0x4b,0x0c,0x8b,0x0e,0x0d,0x56, +0x0a,0x0b,0xa6,0x84,0x4b,0x01,0x3a,0xfb,0xc4,0x4f,0xb5,0xe9, +0x08,0x4d,0x12,0x68,0xdf,0xd6,0xc4,0x81,0x5e,0x32,0xf0,0x69, +0x8d,0x87,0xf9,0xb6,0x32,0xe3,0xa7,0x47,0xbf,0x57,0xbf,0xa7, +0x64,0xe6,0x56,0xe6,0x54,0x6e,0x7d,0xcd,0x52,0x69,0x4b,0xf8, +0x82,0xf3,0x0b,0x23,0xea,0x3e,0xab,0x7c,0x52,0x78,0x57,0x27, +0x8d,0xf7,0x3a,0x64,0xb1,0xce,0x6c,0xcf,0x86,0x68,0xde,0x87, +0x8a,0x3f,0x3b,0x3f,0x5b,0x7f,0x9b,0x00,0xc9,0xe8,0x74,0x70, +0xe8,0xd8,0x6a,0xd0,0x56,0x72,0xda,0xc0,0x51,0xa3,0x5b,0x53, +0xa3,0x5b,0x04,0x49,0x8e,0xc7,0xc9,0x7e,0xa9,0xa2,0x21,0x2e, +0x3c,0x6a,0x20,0x3d,0x98,0x7b,0x85,0x85,0xb9,0x10,0xde,0x2d, +0x2e,0x63,0x13,0xf2,0x12,0xf2,0x62,0x73,0xf5,0xd3,0x78,0x9f, +0x63,0x36,0x5b,0xcc,0xb4,0xea,0x1d,0xf9,0x82,0x6b,0x79,0xb2, +0x9c,0xeb,0x1c,0xf0,0x38,0x97,0x89,0xc6,0x60,0x5d,0xf0,0x61, +0x4f,0xaf,0xd8,0xa4,0x86,0x1b,0x0e,0x94,0xe8,0xf3,0xb0,0xea, +0x21,0x70,0x4f,0xae,0x4a,0xd5,0x4d,0xa8,0x08,0xe6,0x40,0x71, +0x17,0x6c,0xdc,0x53,0xdc,0xcd,0xe3,0x96,0x87,0x6b,0x87,0x4e, +0xfd,0x4c,0x29,0xdf,0x79,0xe1,0x19,0x91,0x55,0x57,0x34,0x15, +0xb4,0x70,0x8d,0x98,0xcd,0x26,0xe5,0x25,0xe6,0xc7,0x17,0x68, +0x24,0xf3,0x27,0x57,0x1e,0x9c,0xbf,0x79,0x7f,0x9d,0x29,0x9f, +0x94,0x98,0x9c,0x94,0x24,0x95,0x10,0x60,0x71,0x63,0x20,0x2e, +0x5e,0x8b,0x73,0x54,0x3a,0xad,0xdb,0x9e,0x94,0x7e,0x93,0xf1, +0x8a,0xc6,0x20,0x65,0x7c,0x3a,0x23,0xe5,0x2d,0xb7,0x30,0xed, +0x99,0x59,0x6d,0xd2,0x2e,0xbb,0x62,0x0f,0x7e,0x2b,0x39,0x90, +0x9f,0x25,0xed,0xe4,0xc3,0x0f,0xb5,0x6c,0xd3,0xd5,0x29,0xcf, +0x1e,0x29,0x62,0xfb,0x0b,0x6b,0x19,0x60,0x1e,0xf4,0x01,0x0e, +0x3f,0xaa,0x7a,0x23,0x7b,0xd5,0xc4,0x09,0x4b,0x85,0x64,0xe2, +0xed,0xe0,0x64,0x6e,0x4f,0x93,0xe3,0x49,0xa6,0x5c,0x56,0x5a, +0x5b,0xd8,0xc8,0xe9,0x63,0x23,0x01,0x16,0x96,0x20,0xcb,0xf6, +0xcd,0xa0,0x07,0x6b,0xa4,0x4d,0x43,0x9c,0xf5,0xa5,0x8d,0xa2, +0xd7,0xb0,0x57,0xab,0xaf,0xd4,0x5c,0xaa,0xe7,0xc0,0x7a,0x06, +0x3d,0x4f,0x4f,0x50,0x66,0xe5,0x22,0x5c,0x24,0x30,0xba,0x17, +0x47,0x8f,0xa4,0xac,0x05,0x3a,0x7f,0xe0,0xbf,0x18,0xfb,0x40, +0xdb,0x20,0x9b,0xe0,0x4c,0x1d,0xfe,0x2f,0xd9,0x77,0x95,0x5f, +0x37,0x84,0xf6,0xf2,0x4e,0xfe,0x8e,0xfe,0xf6,0x01,0x9c,0xdc, +0x5f,0xe8,0x27,0x6b,0x98,0xd2,0x06,0x9b,0x7c,0xf3,0x1c,0xb3, +0x4c,0xa5,0x93,0x96,0x6d,0xbe,0x75,0x3e,0x35,0xa7,0x95,0x50, +0x17,0x46,0x69,0xe0,0x28,0xa4,0x08,0x57,0xb8,0x12,0xc3,0x86, +0xf9,0x01,0xb8,0x0c,0x47,0x30,0x74,0x00,0x42,0x41,0x1b,0xd5, +0x90,0x95,0x52,0xc5,0x4b,0xa6,0x59,0x2a,0xe4,0x2e,0xdc,0xc0, +0x2b,0x3f,0x43,0x35,0x8b,0xaf,0x31,0x9b,0xe0,0x11,0x4a,0x36, +0x8f,0x30,0x03,0x38,0x9e,0x66,0x00,0x7a,0xe9,0x78,0x56,0xdc, +0x6b,0x40,0xe8,0xad,0xe3,0xf1,0x08,0x03,0xe1,0x94,0x07,0x48, +0x27,0x91,0xba,0x0f,0x84,0x4a,0x35,0xa8,0x27,0xf7,0x53,0x78, +0x2f,0x3f,0x81,0xe5,0x38,0x43,0x0b,0x66,0xe0,0x30,0x43,0x73, +0x44,0xa0,0xf1,0x08,0xcd,0x9a,0x2e,0xfb,0x4b,0xca,0x12,0x7d, +0xbc,0xa5,0xaf,0x85,0x9f,0x59,0x80,0x24,0x43,0x6e,0x12,0x50, +0x8d,0x91,0x76,0x7f,0x19,0x27,0x73,0x6e,0xe5,0x71,0xb4,0x13, +0xce,0x09,0xc0,0xcd,0x51,0xc1,0xcb,0x5d,0x70,0xb4,0xf9,0x9e, +0x4e,0x5b,0xbe,0xe9,0xeb,0xb2,0xdf,0x92,0xbf,0xe2,0xa0,0xf2, +0x14,0xb9,0x7e,0xb0,0x74,0x57,0xce,0x9e,0x3e,0x2a,0xb3,0x1f, +0xb9,0x3c,0xb3,0xbb,0xcd,0x51,0xd4,0x3e,0x4f,0xce,0xdd,0x3a, +0xf3,0xd4,0xf3,0xb6,0x9e,0x1f,0x5f,0x70,0x38,0xeb,0x70,0xf2, +0x01,0x0e,0xf6,0xcf,0xa7,0xfa,0xf4,0x04,0x2a,0x8b,0x7b,0x74, +0x85,0x3d,0x78,0x83,0xea,0xbc,0x54,0xca,0xc6,0x96,0x33,0x4d, +0xd9,0x52,0xd1,0xc7,0x5e,0xe0,0x7a,0xa4,0xe2,0xb5,0xeb,0x48, +0x9b,0x79,0x93,0x76,0x95,0x5e,0x73,0x39,0xef,0xdc,0x6d,0xd6, +0x67,0x24,0x7d,0x4f,0x1d,0x24,0x84,0x11,0x98,0xd6,0x4f,0xad, +0x5a,0xa1,0x8e,0x15,0x1f,0x02,0xec,0xdf,0xcc,0x7f,0x53,0xe1, +0x77,0x94,0x0a,0xd3,0xe6,0x5b,0x51,0x10,0x31,0xa7,0x39,0x7c, +0xb3,0x7c,0x17,0xc1,0x59,0xe6,0xe8,0x6b,0x8b,0xc6,0xa1,0x69, +0x3a,0x34,0x35,0x25,0x41,0x68,0x1d,0xcc,0x6b,0xe1,0xf4,0x97, +0x10,0xd3,0x6d,0x1b,0x96,0x2c,0xd4,0x2c,0x37,0xe3,0xff,0xba, +0xf9,0xf2,0x5d,0xd7,0x77,0x1c,0xbe,0xba,0x4a,0x4a,0x6c,0x8a, +0x75,0xb3,0xcc,0xda,0x4a,0x79,0xff,0x7a,0xb7,0x3e,0x8f,0x6a, +0x6e,0x39,0x9e,0x26,0x3e,0x9d,0xd6,0x4f,0x5d,0x9a,0x8c,0x3c, +0xf9,0x0a,0xb3,0x9a,0x9d,0xd9,0x86,0x34,0x68,0x69,0x07,0x3e, +0x52,0xc3,0x8f,0xc4,0x25,0xba,0xc2,0x12,0x1a,0x42,0x7b,0xd8, +0x14,0x5d,0x05,0x58,0xc3,0x34,0xe5,0xa4,0x4b,0x95,0x09,0x46, +0x3a,0x10,0x85,0xd3,0x49,0xad,0x4d,0xa3,0x56,0xb9,0x76,0x53, +0x05,0x7f,0xb2,0xdb,0xf4,0xa6,0xed,0x75,0xea,0xf2,0x53,0xe1, +0x5f,0xe4,0x25,0x9c,0x03,0x07,0x3c,0xf7,0x0d,0x74,0x74,0x0d, +0x8b,0xfa,0xd0,0xb0,0x09,0x7d,0x69,0xbc,0xfb,0xae,0xc2,0x36, +0xfd,0xf7,0x5c,0x17,0x3b,0x1c,0x09,0x31,0x04,0x7c,0x41,0x05, +0x36,0x52,0x91,0x71,0x6e,0x1e,0x9e,0xc3,0xc5,0xb8,0x11,0x16, +0xa3,0x2f,0x03,0xdf,0x89,0x13,0x89,0x30,0xb1,0x47,0x9c,0xf8, +0xbd,0xfa,0x7a,0x7c,0xaf,0x0b,0xef,0x71,0x8a,0xb8,0x56,0xe7, +0xfd,0xac,0x5e,0x71,0x1f,0xc5,0x86,0x02,0xe1,0x3b,0xf2,0x03, +0xd8,0xaf,0xeb,0xff,0x01,0xd6,0x75,0xe3,0xba,0xd7,0x5a,0x4b, +0xd1,0xfe,0xb5,0xf6,0x52,0x5c,0xa3,0x07,0x6b,0xd6,0xb1,0x18, +0xb1,0x8e,0x9a,0xbe,0x8f,0x9a,0x7e,0x24,0xec,0xc7,0x6b,0xc3, +0x78,0xca,0x7f,0xa4,0xb0,0x37,0xff,0x3b,0xec,0x7f,0xad,0xfa, +0x49,0xca,0x37,0xff,0x80,0x44,0xa1,0xb0,0x9e,0xd8,0x21,0xa7, +0xbe,0x6a,0xdd,0xb6,0x32,0x63,0xbe,0xae,0xaa,0x5c,0x96,0x57, +0xce,0x89,0x9b,0x07,0x84,0x38,0x36,0x5b,0x96,0x55,0x9f,0x4e, +0x35,0xce,0x6b,0xb1,0x9f,0xe0,0x7c,0xc6,0x36,0x3c,0xe1,0xba, +0x2a,0xd8,0xb2,0xcf,0xab,0xbf,0x1b,0xb8,0x7b,0xdf,0xb6,0x9e, +0xd7,0x51,0xdf,0xab,0x77,0xd8,0x99,0x83,0x28,0x0d,0x31,0x8b, +0x3d,0x50,0x70,0xfa,0x81,0x0a,0xcc,0x65,0x5a,0x33,0x33,0x5b, +0x54,0x61,0x09,0xab,0x9f,0x4e,0x73,0xb5,0xa7,0xb4,0x2d,0xd0, +0xd8,0x5e,0x1c,0x3b,0xd2,0x9a,0x79,0x3a,0x7f,0x52,0x37,0xb4, +0xa3,0x21,0x33,0xc2,0xf2,0xde,0x55,0x7d,0x57,0xf9,0xa5,0x14, +0x32,0x2e,0x01,0x2e,0x01,0x4e,0x94,0x69,0xeb,0x08,0x1d,0xe4, +0x43,0x0d,0xe0,0x04,0x1d,0xe1,0xfb,0x5e,0x56,0xf4,0x5f,0x41, +0xac,0xd8,0xb9,0xa7,0x0d,0x70,0xf4,0x2a,0x15,0x99,0x69,0x4f, +0x63,0x75,0x5b,0x9e,0x4c,0x29,0x26,0x3e,0xf6,0x72,0x5c,0xf8, +0x9f,0xa8,0xc0,0x57,0x5e,0xaf,0xb2,0x69,0xaa,0xbb,0x56,0x9d, +0x5b,0xa5,0x74,0x25,0x2e,0xe6,0x72,0x7c,0x38,0xf5,0x93,0xe9, +0x7c,0x75,0x03,0xc5,0xbc,0x09,0x41,0x29,0xa1,0x9f,0x8c,0x6c, +0xe3,0x2d,0x6d,0x1e,0x56,0x15,0xdf,0x38,0xa0,0x5c,0xad,0x69, +0xc7,0x2e,0xf1,0x35,0x5c,0xb5,0x49,0x65,0xe5,0xeb,0x90,0xd4, +0x73,0x97,0x42,0x42,0x94,0x42,0xc3,0xa2,0x2e,0x2b,0xa4,0x95, +0xc7,0xb7,0xf5,0x28,0xd7,0xb3,0xb0,0x52,0x3c,0x4a,0x5e,0xa8, +0xaf,0xc6,0x64,0x1d,0x48,0x96,0x8a,0xb2,0x9c,0x84,0x7a,0x29, +0x8d,0x76,0x80,0x13,0x71,0x0b,0x70,0x0d,0x74,0x09,0xa4,0x88, +0xfa,0x43,0xef,0x3a,0x28,0xd6,0xc2,0xe2,0x85,0x3a,0x6f,0x29, +0x61,0xb5,0x0f,0xb4,0x0b,0xb2,0x0d,0xa2,0xd1,0xff,0x7b,0xd5, +0x57,0x95,0x4f,0xeb,0xb8,0x2a,0x61,0x2a,0xc1,0x5e,0x3f,0x9c, +0xa9,0x85,0x2a,0x2a,0xcd,0xb6,0xcd,0x30,0x2a,0xef,0x55,0x12, +0x2c,0x56,0x82,0xe5,0x58,0x84,0xe3,0x99,0x4c,0x75,0x1a,0xd8, +0x6d,0x49,0x39,0x6d,0xaa,0xf2,0x5a,0x4c,0x64,0xe1,0x19,0x5e, +0x23,0xd8,0x76,0x1e,0x89,0x3e,0x2e,0x50,0x69,0xb5,0xab,0x81, +0xd1,0x19,0xbf,0xc6,0x49,0x97,0xaf,0xa7,0x97,0x4f,0x64,0x32, +0xd4,0x15,0x5e,0x31,0x6d,0x29,0x1f,0x2e,0xcf,0x65,0x71,0x1a, +0x86,0x13,0x4a,0x45,0x8e,0x4b,0xfb,0x22,0xfc,0x80,0xc7,0x09, +0xae,0xa6,0xc7,0xab,0x19,0xd1,0x57,0xdc,0x4e,0xae,0x74,0x5d, +0x1a,0xbc,0xab,0x0c,0x0b,0xf0,0x04,0x03,0xc7,0x66,0x5c,0xfa, +0xf0,0xaf,0xd5,0xd2,0xbe,0xe1,0xd0,0x47,0xdb,0xef,0xea,0xef, +0x12,0xe8,0x4c,0xdb,0xff,0xe3,0x9b,0x9e,0x45,0x23,0xe8,0xb5, +0x4c,0xf7,0x95,0x38,0x8a,0x75,0x0c,0x72,0x08,0xb2,0x93,0xd0, +0xeb,0x77,0xd9,0x97,0x15,0x4f,0xeb,0x39,0x99,0xe0,0x45,0x1b, +0x24,0xf4,0x52,0x95,0xb5,0x17,0x46,0x81,0x75,0xf7,0xf0,0x18, +0x3d,0x30,0xc2,0x51,0x6c,0xcf,0x0c,0xfa,0xcf,0xd1,0xf4,0x00, +0xb7,0x19,0x10,0xd4,0xa3,0x4c,0x42,0x8f,0x85,0xe2,0x19,0xf4, +0x68,0xb4,0x74,0x54,0x8e,0x7a,0x04,0xa5,0xb2,0x4b,0x2c,0x83, +0xc6,0xe2,0x11,0x02,0xe9,0x9d,0x98,0xfe,0x97,0xe6,0x5c,0x4c, +0x31,0x80,0x14,0x9c,0x8d,0x2d,0x7a,0xf2,0xb9,0xdd,0x92,0x6c, +0x03,0x67,0x8a,0xa1,0xaf,0x7a,0x97,0x8d,0xb4,0x61,0xb1,0xce, +0xef,0xd4,0x1d,0x1c,0x02,0xed,0x3f,0x8c,0xe1,0xeb,0xaa,0x2f, +0x2b,0x1f,0xd5,0x51,0x77,0x70,0x0f,0x74,0x0b,0x3c,0x19,0xc4, +0xc9,0x67,0xca,0xa7,0x13,0xd1,0x12,0x1f,0x1d,0x15,0xfb,0x07, +0x84,0x18,0xc1,0x4d,0x3c,0x8c,0x9a,0x52,0xc9,0x04,0xd8,0x4b, +0x85,0x58,0x6e,0x83,0xaa,0x70,0xfa,0x18,0xab,0x49,0xd5,0xf0, +0x0a,0x74,0xc7,0x7d,0xd4,0xe1,0x73,0xa5,0xd9,0xe4,0xb9,0x52, +0x35,0xfc,0x4d,0xd2,0x26,0x71,0xf7,0x70,0x31,0xed,0x4c,0xd7, +0x0d,0x08,0x83,0x60,0x16,0xc3,0xf0,0x04,0x85,0x23,0xa0,0x78, +0x44,0x79,0xda,0x3a,0x61,0x33,0x11,0xac,0x21,0x49,0x34,0x65, +0x52,0xd2,0x93,0x33,0x92,0x32,0x39,0x21,0xa0,0x4d,0xb4,0x90, +0x76,0xa8,0xcd,0x8c,0xcb,0xd2,0x4d,0xe4,0x3d,0xf6,0xeb,0x6c, +0xdf,0xa7,0x59,0x69,0xce,0x97,0x16,0x96,0x94,0x14,0x5e,0xe3, +0xd6,0x88,0xfb,0x88,0x04,0xec,0x0e,0x81,0xd2,0x7b,0x81,0x51, +0x3d,0x38,0x0a,0xd2,0xb5,0x30,0x7d,0x81,0xee,0x1f,0xf8,0xfb, +0x88,0x17,0xd8,0x48,0x0e,0xfd,0xa7,0xec,0xdb,0xca,0xe7,0x0d, +0x9c,0xe0,0x2f,0xd5,0x28,0xf8,0xad,0x07,0x7e,0x63,0xf0,0xb7, +0x45,0x04,0x7e,0x53,0xc7,0xdf,0x18,0xc1,0x6f,0x31,0x19,0x1e, +0x65,0x0c,0x33,0x18,0x7b,0x6d,0x75,0xf5,0x3d,0xa6,0xd7,0x6c, +0xf8,0xfa,0xe2,0x9a,0xf2,0x8a,0x4a,0x0e,0xc6,0x33,0x66,0x87, +0x76,0xec,0xdf,0x6c,0x52,0x61,0xc1,0xbf,0x19,0xfa,0xe6,0xdb, +0xf6,0xef,0xb8,0x77,0x8c,0xfd,0xf6,0x63,0xeb,0x36,0x1d,0x95, +0x59,0xf1,0xaf,0x9f,0xde,0xff,0xad,0xee,0x0d,0xf7,0x80,0xb9, +0xa4,0x1f,0x65,0x18,0x66,0xc9,0xb9,0x44,0x04,0x9c,0x31,0x9b, +0xb5,0x5a,0x9a,0xcf,0xf7,0x9c,0xf9,0xec,0xfa,0xb5,0xae,0x44, +0xd5,0xc4,0xf6,0x98,0x47,0x3f,0x2b,0x8b,0x07,0x98,0xf4,0x9c, +0x94,0x9c,0xe4,0x1c,0x4e,0x38,0x44,0x07,0x7a,0x15,0x5c,0x21, +0x03,0xc2,0x2c,0xa6,0xa4,0xb5,0xa0,0x2f,0xef,0xa1,0x4e,0x3a, +0x6f,0x8b,0x64,0x1f,0x4e,0x59,0xbf,0xe9,0xba,0x21,0x5f,0x56, +0x5a,0x5c,0x59,0x48,0x45,0xca,0xa4,0x20,0x62,0x00,0xa9,0xac, +0x95,0xde,0x0a,0x13,0x54,0x35,0x1a,0x29,0x56,0xd2,0x0d,0x13, +0x06,0xd3,0x9f,0x71,0x71,0xe8,0x3d,0x04,0xde,0x71,0x4c,0xea, +0x2e,0x98,0xa1,0x0e,0xeb,0xb4,0xf2,0xba,0x78,0x9c,0xdf,0x81, +0xa3,0x5a,0xcd,0xba,0x39,0x28,0xe9,0xc4,0x1b,0x77,0x29,0xba, +0x19,0x8b,0xa9,0x68,0x0c,0x1e,0x87,0x19,0x7a,0x7c,0x92,0x2c, +0x17,0x55,0x7e,0x65,0x85,0x53,0xc3,0x1f,0x51,0x3a,0x31,0xfc, +0x87,0xfa,0x02,0xfc,0x55,0x17,0x7e,0xc5,0x71,0xff,0x00,0x17, +0x8c,0x63,0xff,0x2e,0x91,0x11,0xfc,0x52,0xd8,0x0a,0x41,0xe8, +0x2f,0x95,0xc8,0x28,0x8a,0x2b,0xd1,0xfc,0x9f,0x12,0x19,0x5a, +0x62,0xa9,0x60,0xc3,0x6c,0xba,0xa0,0x19,0xe1,0xa2,0xe2,0x10, +0x16,0x12,0x6c,0x39,0xeb,0x90,0x64,0xef,0x3b,0xcc,0xdd,0xd2, +0x91,0x12,0x19,0x8d,0x57,0x1f,0x48,0x25,0x32,0x6c,0x7f,0x15, +0x82,0x19,0xf1,0x15,0x6e,0x24,0x36,0x1f,0x5e,0x2b,0x51,0xa2, +0xf3,0xff,0x7c,0x09,0x45,0x39,0x80,0xe5,0x7f,0x5e,0x42,0xfd, +0x56,0xf5,0x0b,0x25,0x3a,0x56,0x42,0x9d,0xb4,0x2e,0x4b,0x94, +0x4a,0x67,0xbc,0x1a,0x9e,0x49,0x42,0x6a,0xa5,0xd2,0x19,0x96, +0x41,0x7c,0xba,0x53,0xb6,0x4e,0xa2,0x2d,0x27,0x2e,0x43,0x86, +0xc8,0x6e,0x95,0xbd,0x49,0xfe,0xcc,0x20,0x99,0x0f,0x3e,0xea, +0xb1,0xda,0x4e,0x83,0x83,0x2e,0xb0,0x21,0x19,0x7a,0x29,0xda, +0xf1,0x27,0x3a,0x53,0xf8,0xf0,0x9b,0x81,0x23,0xa5,0x33,0xb6, +0x07,0x93,0x84,0xfd,0x52,0xe9,0x8c,0xde,0x38,0xfe,0x6e,0xe8, +0xdd,0x90,0xcf,0x54,0x14,0x61,0x0c,0x4d,0x5a,0xcf,0x5b,0xea, +0xab,0x8a,0xab,0x12,0x13,0x63,0x2f,0x24,0x9e,0x87,0xdd,0x38, +0x99,0x2f,0xad,0x29,0xb1,0xfd,0xb1,0xb9,0xed,0xfa,0xb5,0x6a, +0xa5,0x84,0xc4,0x98,0x8b,0x89,0xe1,0x94,0x59,0x4e,0xa5,0xc2, +0x15,0x77,0xc1,0xf8,0x90,0x84,0xd0,0x2b,0xe7,0x42,0x94,0xce, +0x85,0x44,0x5c,0x51,0xc8,0xab,0x4d,0xa8,0x19,0x54,0x6e,0xd2, +0x32,0x63,0x51,0xc1,0x5c,0x07,0x97,0xee,0x57,0xc1,0x35,0x7f, +0xd1,0x0b,0x3e,0x39,0x17,0xaa,0x14,0x72,0x8e,0x42,0x58,0x5e, +0x5d,0x42,0xcd,0x4d,0xe5,0x26,0x4d,0x7a,0x01,0x6b,0xae,0x87, +0x2a,0xfb,0x55,0xe4,0x39,0xd4,0xf5,0x83,0x2c,0xbd,0x8d,0x3c, +0xec,0x3a,0xbc,0xf8,0x92,0xfa,0xfc,0x9e,0xe4,0x46,0x4e,0x3c, +0x93,0x4c,0x82,0xad,0xce,0x5a,0x78,0xd8,0xb7,0x9f,0xe2,0x4b, +0x6a,0xf3,0xda,0x53,0x1a,0xb8,0xc7,0xe9,0x24,0xd4,0xdc,0xd7, +0xd8,0xdd,0xa6,0xd3,0x9b,0x2f,0xae,0xcf,0xed,0x4f,0x90,0x2e, +0x8b,0x27,0xe7,0xcc,0xcf,0x18,0xba,0xd9,0xb6,0x7b,0xf2,0x65, +0xf5,0xc5,0x37,0x13,0x9a,0x28,0x61,0xc1,0x2f,0xc8,0xf0,0x6b, +0xdc,0x36,0x04,0xa3,0xe4,0xa7,0x70,0xd4,0x0d,0x86,0x0e,0xc8, +0x34,0x02,0xf2,0x7e,0x94,0x83,0x8a,0x1a,0x55,0x67,0x2f,0xb4, +0xe0,0x05,0x6e,0x13,0xd7,0x68,0xbe,0x9f,0x35,0x20,0xbd,0x46, +0x80,0x0e,0xe1,0x6b,0xd2,0x5b,0xdb,0xdc,0x50,0xdd,0xca,0x09, +0x51,0x6d,0xa2,0x3d,0x93,0x94,0x99,0x98,0x99,0x90,0x65,0x90, +0xc9,0xdb,0x6e,0x53,0x3b,0xb4,0xe1,0x04,0x97,0x03,0xa3,0x89, +0x51,0xb5,0x46,0xb9,0x6e,0xbe,0xbb,0x09,0xdf,0x7d,0x7a,0xc0, +0xa5,0xc3,0x9e,0x0b,0x9a,0x4b,0xf4,0x64,0xea,0x65,0x06,0xb9, +0x1e,0xc6,0x7c,0xf7,0x99,0xfe,0x93,0xdd,0x8e,0x9c,0x7c,0xc9, +0x19,0x72,0xb5,0xed,0x72,0xfb,0xe5,0x76,0x4e,0x3c,0xcd,0x44, +0x9a,0x87,0x1b,0x84,0x1a,0x70,0x0b,0x4d,0x5e,0x30,0xe7,0x0c, +0x82,0x0c,0x02,0x2c,0x38,0xc1,0x9a,0xb9,0x70,0x4e,0xc1,0x3d, +0xc2,0x37,0xc2,0x5e,0x52,0xd2,0xc6,0x0a,0x5f,0x31,0x03,0xd7, +0x72,0x06,0x53,0x54,0xaf,0xa4,0x2a,0x7c,0xdd,0xb2,0x8b,0x89, +0x29,0xbf,0x5a,0x71,0xa5,0x8a,0xfb,0xb1,0x95,0x11,0x57,0xde, +0x21,0x75,0x01,0xf5,0xa7,0xaf,0x9f,0x2a,0xab,0xe1,0x1d,0x0b, +0xcc,0xf3,0x1c,0x52,0x39,0x08,0x64,0x2e,0x3a,0x5f,0x70,0xba, +0xe0,0xc4,0x89,0x93,0x98,0xb8,0x9a,0xd8,0xaa,0x2b,0xc5,0x1c, +0x7c,0xcc,0xe0,0x5f,0x34,0x75,0x1b,0x6d,0x54,0xdf,0x7f,0x42, +0xa7,0xd6,0x9c,0xbf,0x7b,0xab,0xff,0x41,0xfb,0xf7,0x54,0xd0, +0x24,0x92,0x53,0x8e,0xb5,0xfe,0x8d,0x5e,0xd7,0xbd,0x94,0x30, +0x91,0x49,0xac,0x88,0xaf,0x8c,0xaf,0xe0,0x20,0xf3,0x04,0x71, +0xc8,0xb7,0xca,0xb3,0x4b,0xe7,0xe0,0x1c,0x13,0xed,0x14,0xe9, +0x14,0xe9,0xc2,0xe1,0x4c,0x06,0x7c,0xf0,0x02,0xe9,0x16,0xc7, +0xfc,0xaa,0xb9,0x1c,0xdf,0xe8,0x51,0xc2,0x20,0xae,0xd3,0x7d, +0x3f,0xab,0x47,0xdc,0xff,0x8e,0xe6,0x8d,0x1a,0x79,0x3a,0x31, +0x84,0x71,0xf3,0x71,0xb4,0x11,0x85,0xce,0x89,0x58,0x00,0x13, +0x81,0x6d,0x47,0xf6,0x2d,0xdb,0x96,0xda,0x92,0xd3,0x98,0xef, +0xd8,0xc8,0x5b,0x78,0xe9,0x7a,0x9d,0xf0,0xe7,0xf0,0x5f,0xc2, +0x0c,0xe1,0x23,0x9a,0x80,0xa8,0xae,0x58,0x86,0x16,0x8c,0x46, +0xb6,0xef,0xa0,0x4a,0x13,0x53,0x97,0x98,0x55,0xaf,0x0a,0x13, +0x59,0xa3,0x2c,0x05,0x5c,0x66,0xc7,0x7a,0x9d,0x8f,0x2b,0x50, +0x85,0x18,0x4c,0x5d,0xc0,0xe2,0x58,0x6f,0x3d,0x75,0x4d,0x95, +0x2a,0x0b,0x85,0xbb,0x77,0xca,0x1f,0xc1,0x24,0x65,0x78,0x31, +0x6c,0x49,0x76,0x57,0xa9,0xd5,0xeb,0xb7,0xdc,0x7e,0xd0,0xf8, +0x3c,0xef,0x5b,0xae,0x49,0x9c,0xa5,0x07,0x5f,0xb0,0x3e,0x6a, +0xf6,0x47,0x74,0x34,0x0c,0x7a,0xac,0x06,0x9c,0x86,0x0c,0x3d, +0xf9,0xea,0x23,0x8d,0xc7,0x7b,0xb5,0x74,0x8c,0x0e,0x59,0x6c, +0x71,0x29,0xd2,0xe7,0x7f,0x90,0x3d,0x6a,0x19,0xec,0xee,0x33, +0xbc,0x6b,0xf6,0x15,0xf5,0xff,0xc3,0xb0,0x90,0xe8,0x87,0x1c, +0x0b,0x39,0x1c,0xca,0xc1,0x32,0xd8,0xd5,0x45,0x9d,0x54,0x51, +0x93,0x72,0xdf,0x23,0xfa,0x94,0x64,0xae,0x67,0x0f,0x87,0x1e, +0x0e,0xd3,0x8a,0x48,0x90,0x04,0x4e,0x3a,0xe8,0x15,0xc3,0x84, +0x62,0x4e,0xf1,0xbd,0xbe,0x90,0x4a,0x28,0x6d,0x51,0x85,0xf9, +0xdd,0x38,0x1f,0xa6,0x6b,0xe3,0x74,0x5c,0xaa,0x07,0x4b,0x51, +0x15,0xf7,0xe8,0xc2,0x25,0x0a,0xfd,0xe7,0xf5,0xe0,0x3c,0xe5, +0x70,0x8b,0xa5,0x8d,0xbf,0x60,0x12,0x65,0x07,0x69,0x6d,0xaa, +0x50,0xf0,0xac,0x7b,0x3b,0xcc,0xfe,0x9a,0x1d,0x4e,0x6f,0x20, +0x3f,0x76,0xaf,0x85,0x02,0x6d,0x2c,0xd8,0xa4,0xf7,0x8d,0x38, +0x8a,0x71,0x0d,0x72,0x0e,0x76,0x0e,0xce,0xd0,0xe5,0x5f,0xca, +0x3e,0xaf,0xbc,0x5f,0x1b,0xd6,0xcb,0xbb,0x05,0xb8,0x05,0x9c, +0xa4,0xb0,0xab,0x8e,0xea,0xe4,0x31,0x6c,0x97,0xfb,0xa2,0xd7, +0x70,0x1f,0x0b,0xdb,0x85,0x60,0x42,0xd3,0x50,0x21,0x8c,0x61, +0x70,0x0c,0x3e,0x25,0x54,0x56,0xf7,0xe3,0x18,0x46,0x18,0xef, +0x4d,0xdc,0x1a,0x1d,0x5b,0x1c,0x64,0x56,0xce,0x7c,0x95,0x43, +0xb5,0x49,0x89,0x25,0x27,0x65,0x9d,0x4f,0x08,0x30,0xbd,0xc8, +0x40,0x91,0x26,0x4d,0xad,0x23,0x22,0x7c,0x98,0xa1,0x34,0xe4, +0x6f,0x11,0xce,0xc8,0x5e,0x56,0xfd,0xd8,0x48,0x53,0x8f,0xad, +0x9f,0xf4,0xa6,0x9a,0x83,0x8d,0xf2,0x8f,0x09,0xe6,0x08,0x1d, +0x90,0xc3,0x8a,0xb3,0x69,0xc6,0xdb,0x32,0x57,0x5a,0x4d,0x9f, +0x87,0x5b,0x08,0x45,0xfe,0x2d,0x30,0x8a,0xe9,0xa1,0x87,0xf4, +0x80,0xc5,0x2d,0x2c,0x9e,0x10,0xeb,0x08,0xac,0x87,0xd0,0x6e, +0x0c,0xa5,0x19,0x26,0xa5,0x5b,0xfc,0x49,0x0f,0x0a,0xa9,0xec, +0xdf,0x06,0x79,0x1a,0xa2,0xf2,0xe0,0x0d,0x21,0x4a,0xa2,0x11, +0x0f,0xc0,0x9f,0xfc,0x04,0x26,0x2d,0x68,0xd2,0x05,0x07,0x20, +0x56,0x5a,0x63,0x66,0xd9,0x82,0x96,0x37,0xb5,0xd5,0xd0,0xd6, +0x14,0x6c,0x8d,0xf0,0x00,0xc6,0xc2,0x01,0x7d,0x74,0x36,0x05, +0xe7,0x35,0x2c,0x55,0x80,0xe7,0x29,0x17,0x8a,0x7f,0x97,0xf9, +0x65,0xb9,0x5b,0x2b,0xbf,0xc9,0x79,0xae,0x3f,0xce,0x8e,0xe4, +0x70,0x23,0x8b,0x5c,0xd4,0xd2,0xe3,0x38,0x4a,0xa5,0xdd,0xbe, +0xff,0x8f,0xb4,0x3f,0x2e,0xbf,0x54,0x02,0x55,0xfc,0x72,0x10, +0xbe,0x84,0x49,0x5d,0x78,0x9f,0x11,0xc7,0x67,0x11,0x2d,0x9c, +0xd2,0xcf,0xc2,0x41,0x2d,0xd2,0x0f,0x53,0xb5,0x58,0x3c,0x64, +0x45,0x34,0x70,0xca,0x20,0x3d,0xa3,0x41,0x06,0x61,0xaa,0x06, +0x2b,0x68,0xe0,0x2b,0x09,0xa4,0x7f,0x51,0x5f,0xf1,0x01,0xa4, +0x39,0x71,0xad,0xf6,0xfb,0x59,0x7d,0x14,0xa4,0x39,0x56,0xb1, +0x0b,0xa2,0x09,0xec,0x8a,0x85,0x1d,0x69,0x30,0x37,0x33,0xba, +0x95,0x3f,0x71,0xfe,0xd0,0xf9,0x7d,0x91,0xdc,0x73,0xd0,0x6d, +0x43,0xdd,0x4f,0x61,0x3f,0x34,0x88,0x4b,0xb0,0x01,0xf6,0x1f, +0x47,0x03,0x63,0x30,0xd8,0xc0,0x1e,0x88,0xda,0x1f,0x75,0xe0, +0x02,0x27,0x0f,0x82,0x06,0xe2,0x5e,0x72,0xa3,0xae,0xbf,0x43, +0xd6,0xaa,0x54,0x2b,0x2a,0x1a,0x41,0x0f,0xeb,0xe1,0x62,0xe6, +0x60,0xe1,0xee,0x52,0xea,0x52,0xec,0x9a,0xef,0xe4,0xcc,0xd7, +0x3b,0xd7,0xdb,0x57,0xdb,0x71,0x68,0x68,0x00,0xfb,0x30,0x0a, +0xa7,0x31,0x29,0xfa,0xd2,0xbe,0x7a,0x0d,0xe9,0xd2,0x2c,0xd7, +0x30,0x98,0xc9,0xfa,0x38,0x79,0xb9,0xd8,0x3b,0xd4,0x39,0xf3, +0x4d,0xcd,0xb2,0xb6,0xbc,0x0e,0xae,0x9e,0x1d,0x3e,0xf0,0x13, +0xc1,0x09,0x0f,0x60,0x02,0xd3,0xbd,0x9f,0x3c,0x80,0x89,0xfb, +0x59,0xdc,0x6f,0x4e,0xf6,0xe0,0x84,0x47,0x2c,0xec,0x9b,0x01, +0x13,0xf7,0x50,0x9e,0x24,0xdc,0x14,0x8d,0x68,0x14,0x8e,0xfe, +0x42,0x73,0x07,0xfe,0xae,0x07,0xbf,0x2f,0xfc,0x27,0x0a,0xdf, +0xd2,0x61,0xb7,0xa1,0xa6,0x7f,0xdd,0xb3,0x74,0x84,0xb4,0xad, +0xd4,0xfd,0x59,0x1c,0xcd,0x38,0x05,0x39,0x06,0xd9,0x4b,0x2e, +0xf6,0xbb,0xec,0x59,0xe5,0x13,0x89,0x70,0x50,0x76,0x14,0x20, +0xb1,0xa3,0x79,0xf2,0xa9,0x64,0xf8,0x5f,0xbd,0x42,0x0d,0x18, +0xc3,0x73,0xf6,0x06,0x3e,0x97,0x36,0x25,0x70,0x47,0x55,0x26, +0x4d,0x67,0xa4,0x1e,0x9f,0x54,0x05,0x5d,0x7e,0x1d,0x93,0x59, +0x4c,0xc1,0xb9,0xe4,0x47,0x98,0xbf,0x96,0x85,0xfd,0x33,0x7e, +0x84,0x45,0x6b,0x59,0xd1,0x1a,0x17,0x90,0x9f,0x61,0xfe,0x4a, +0xe9,0xcc,0xcf,0xb0,0x68,0x25,0x2b,0x8e,0xc6,0x29,0x44,0x54, +0xe9,0x1a,0x00,0x17,0xf8,0x96,0x45,0x17,0x9c,0x47,0x25,0xc1, +0xc6,0x55,0x54,0xe3,0x52,0x5e,0xf2,0x1a,0x36,0x2e,0xa5,0x8d, +0x6b,0x83,0x28,0x4a,0x2d,0xdd,0x02,0x5d,0xe9,0xc3,0x1f,0xbd, +0xed,0x59,0x38,0x42,0x2a,0x28,0x35,0xa3,0xa4,0xc2,0x31,0xd0, +0x21,0xd0,0x2e,0x38,0x43,0xa2,0x45,0xcf,0x2a,0x1f,0xd5,0x4b, +0x12,0x6d,0x37,0xd9,0xc9,0xe2,0xec,0x88,0xcb,0x26,0xa0,0x1c, +0xab,0x60,0xc9,0xea,0xe5,0x79,0x0f,0xa8,0x80,0x36,0x53,0x9b, +0x9a,0x2a,0x53,0x6d,0x62,0x0d,0x53,0x28,0x73,0x3e,0xca,0xba, +0x87,0x26,0x14,0xa8,0xd6,0xd2,0x56,0xc4,0x5f,0x68,0xc1,0xbd, +0xe1,0x0a,0x8f,0x21,0x9a,0x3d,0x7f,0x32,0xc4,0x25,0xd0,0xa3, +0xcd,0x8f,0xcf,0x90,0xa5,0xd5,0xc7,0xd7,0x70,0xb5,0xd8,0x7d, +0x0f,0x12,0xdb,0x31,0xb1,0x5b,0x0b,0x0f,0xe2,0x19,0x34,0x60, +0x31,0xd4,0x0d,0xe7,0x1e,0xc6,0xc9,0x2a,0xad,0xb6,0x0a,0x0f, +0x60,0x56,0x05,0x6c,0x86,0x48,0x65,0x98,0xcf,0x82,0x20,0xa6, +0x12,0xaa,0x51,0xac,0xf5,0x71,0xed,0x16,0x38,0xac,0x87,0xf7, +0xf6,0xc3,0x3d,0x3d,0x3c,0xbc,0x1d,0xd6,0x1a,0xa0,0x35,0x28, +0xaf,0x43,0x7b,0x23,0xe1,0xf3,0x76,0xd4,0xa0,0xd9,0xc0,0x9a, +0x6a,0xec,0x57,0x3d,0xcb,0x46,0xfa,0xb0,0x42,0xf7,0x17,0x7c, +0xcb,0x38,0x05,0x3a,0x04,0xdb,0x4b,0x7d,0x78,0x23,0xfb,0xb2, +0xf2,0x8b,0x7a,0x89,0xe9,0xfb,0x3b,0x07,0x38,0x51,0x71,0x1c, +0x25,0xd8,0x92,0xa3,0xd5,0x07,0xbb,0x0c,0x87,0x38,0x4c,0x31, +0xa2,0x98,0xda,0xaa,0x75,0x47,0xef,0xb6,0x3d,0x27,0x3a,0xc3, +0x21,0x62,0xa3,0x6b,0x6c,0x7e,0xcc,0xbe,0xd4,0x94,0xbf,0x5b, +0xdb,0xd3,0x5e,0x7f,0x83,0x13,0x94,0xc5,0x48,0x02,0x5f,0xe2, +0xb1,0xbe,0xd7,0x8d,0xf8,0xde,0xe2,0xa5,0x36,0xee,0xc7,0x2f, +0x85,0x89,0xea,0xe2,0x22,0x43,0x61,0x91,0x54,0x67,0x9b,0xcd, +0x30,0x52,0x80,0x45,0x4c,0x63,0x5a,0x56,0x03,0x05,0xa2,0x91, +0xf9,0xae,0x43,0x2c,0x2e,0x14,0x66,0x12,0xed,0xe3,0x7d,0xac, +0xd1,0x22,0x72,0xde,0xd4,0xd9,0xef,0x44,0x40,0xba,0x15,0xff, +0x63,0x66,0x4d,0x6d,0xdc,0x2d,0xee,0x96,0x29,0x63,0x9f,0x11, +0x54,0xaf,0x02,0xac,0x99,0xb8,0x12,0x96,0x30,0xd0,0xab,0x45, +0x02,0x22,0xaf,0xa6,0xaa,0xd6,0x8e,0x44,0xcc,0xcc,0x71,0x46, +0xe2,0xca,0x76,0x36,0x1a,0x73,0x48,0xa3,0x57,0x8d,0xbb,0xcc, +0xe9,0x7a,0x1d,0xef,0x58,0x6e,0x59,0x6a,0x9d,0x37,0xb2,0x37, +0x81,0x35,0x11,0x9d,0xfa,0x85,0x4c,0x2c,0x66,0x53,0xf3,0x13, +0x0b,0xe2,0x72,0x29,0x83,0x09,0x3f,0x75,0xce,0x33,0xf0,0x14, +0x87,0x61,0x62,0x66,0xbf,0xe0,0x44,0x11,0x49,0xbc,0x4c,0x46, +0xbc,0x8a,0x0a,0xac,0x17,0xff,0xb8,0xdf,0x2a,0xdd,0x97,0xe2, +0x68,0xd6,0x29,0xd0,0x31,0xd8,0x41,0x72,0xbf,0xdf,0x46,0xdc, +0x8f,0x83,0xb7,0x10,0x49,0x62,0x2f,0x5f,0x8e,0x8d,0x52,0x81, +0x05,0x8b,0x8b,0x6a,0x50,0xe9,0xe7,0xa0,0xc4,0x88,0xcb,0xc1, +0x41,0x4a,0xe1,0x61,0x0a,0x51,0x55,0x70,0xa0,0x09,0x0f,0xc0, +0x64,0xa6,0x2b,0xb6,0x23,0xbe,0x35,0x31,0xa0,0x81,0x5f,0xee, +0x8d,0x93,0x42,0x70,0x5a,0x74,0xa2,0x39,0xdf,0x7a,0xb9,0xf9, +0x72,0x73,0x0c,0x87,0x9c,0xb4,0x72,0x6b,0x09,0x7b,0xca,0xd1, +0xd0,0x7a,0x93,0x4d,0xbe,0x05,0xff,0xb6,0xa3,0xae,0x3e,0xbe, +0x8b,0x92,0xb8,0xb5,0xed,0xcc,0x23,0x38,0x4b,0xf2,0x0a,0x33, +0xab,0x52,0xaf,0xd9,0x66,0xf1,0xc1,0x4e,0x3e,0x27,0xa5,0xb9, +0x17,0x6e,0x5d,0x24,0xeb,0x74,0xba,0x67,0x8a,0x67,0xb5,0x34, +0xa3,0xc4,0xaf,0xd4,0x2f,0x97,0x13,0x8e,0x8b,0x0e,0xa4,0x0b, +0x9b,0xef,0x68,0x1f,0xc1,0x6c,0x7d,0x48,0x60,0xdd,0x8f,0xac, +0xd4,0xc1,0xbd,0x16,0x79,0x54,0x4d,0xdb,0x0d,0xfc,0xf8,0x59, +0xd2,0x57,0x5c,0x1c,0x93,0xb8,0xf5,0xe7,0xc3,0x60,0xaa,0x91, +0xdf,0xc3,0xe3,0xde,0xa6,0x35,0xbd,0xee,0xb7,0xe9,0x78,0xac, +0x97,0x7f,0x42,0x9e,0x6a,0xed,0xc4,0x4a,0x43,0xf9,0xd8,0x0e, +0x76,0x78,0xa6,0xd8,0x40,0x4e,0x06,0x7c,0x50,0x1b,0xdf,0xff, +0xef,0x6f,0x4b,0x24,0xbd,0x64,0x1b,0x38,0xf2,0xb6,0xe4,0x6d, +0xd5,0x37,0xd4,0x21,0xb8,0x56,0x21,0x82,0xa0,0xb9,0xd0,0x04, +0xe6,0xac,0x38,0xc3,0x94,0xd0,0x54,0xf9,0x8e,0x85,0xc2,0xf9, +0x04,0xc7,0xbd,0xa3,0xb8,0xd0,0x31,0x9f,0xbc,0x03,0x76,0x3e, +0xab,0x25,0xee,0x27,0x8d,0x65,0x54,0x99,0x96,0xdb,0x54,0xf3, +0xee,0xae,0x96,0x0e,0xa6,0x27,0xed,0x6a,0xdc,0x1a,0xcf,0xb6, +0x73,0xb0,0x53,0x8b,0x22,0xe2,0x9e,0x7d,0x0b,0x4c,0x70,0x96, +0x47,0xa6,0x11,0x3f,0x90,0xd2,0x9d,0xd9,0x96,0xcf,0xe1,0x04, +0xd6,0x26,0xd2,0x3a,0xd2,0x3a,0x3a,0x41,0x8f,0x87,0x29,0x49, +0xa0,0x98,0xfd,0xa6,0x30,0xbc,0x93,0x37,0x0e,0xd1,0x0d,0xd1, +0x0c,0xe3,0x40,0x95,0xad,0xc8,0xbe,0x96,0x57,0x5c,0xd0,0x8b, +0x13,0x7e,0x5a,0x03,0x6b,0xf6,0x96,0xb4,0xf1,0x6a,0x65,0x06, +0xe5,0x96,0x32,0x4e,0x34,0x87,0x07,0xc4,0x18,0x6c,0xdb,0x24, +0x70,0x31,0x06,0xc7,0x36,0x56,0x9c,0x8e,0xeb,0x48,0x3b,0xda, +0x1a,0xb1,0xc2,0x94,0x76,0x62,0x04,0x8e,0xed,0xac,0xb4,0x7a, +0xdc,0x8a,0x40,0x69,0x1b,0x96,0x3e,0xd6,0xd9,0x8d,0xb9,0xc6, +0x90,0x8b,0x69,0xd8,0x68,0x28,0x57,0xea,0x90,0x96,0x9c,0x59, +0x74,0x92,0x3f,0x7b,0xe7,0x8d,0x74,0x7a,0x91,0xce,0x1b,0xfc, +0x37,0x43,0x25,0x56,0x90,0xad,0xd4,0xe9,0x77,0xb2,0x6f,0x2a, +0xbf,0x92,0xa2,0xc0,0xd9,0xdf,0x29,0xc0,0x81,0x46,0xc1,0x44, +0x9a,0x3c,0xf5,0xdd,0x18,0x75,0x9f,0xb3,0xfb,0xac,0x55,0x8a, +0xad,0xeb,0xf2,0x4a,0xf3,0xb3,0x0b,0xa4,0xf9,0x6e,0x9f,0xc4, +0x46,0xbd,0xda,0xc1,0x97,0xd5,0x6e,0xbc,0x7b,0x2e,0x31,0xec, +0x42,0xe8,0x39,0xa5,0xf3,0xd2,0x1e,0xd8,0x09,0xe9,0xb1,0x85, +0xe5,0xca,0x08,0xc5,0x44,0x4f,0xba,0xc9,0x6b,0x87,0xad,0x4a, +0x81,0x65,0x47,0x41,0x49,0x5e,0x56,0x91,0xd2,0xd5,0xd8,0xab, +0x17,0x63,0xa2,0x7e,0x3c,0xc0,0x97,0xd5,0xec,0x1c,0x0c,0x49, +0x08,0xff,0x24,0x2c,0x54,0x29,0x2c,0x74,0xe4,0xa6,0xf8,0x82, +0x4a,0x65,0xcd,0xe1,0x33,0xa4,0x5b,0x38,0xa6,0xd7,0x2b,0xec, +0x10,0x9b,0xc4,0x1d,0xac,0x70,0x4e,0x5a,0x61,0x9b,0x25,0x1e, +0x83,0x2c,0x16,0xfe,0x8d,0x4e,0xd2,0x6e,0x7a,0x4d,0xd2,0x4e, +0xd4,0xe7,0x81,0x25,0x47,0x51,0xf3,0x36,0xed,0x65,0xa5,0xfc, +0x19,0xd1,0x3d,0x8c,0x5a,0x77,0xe9,0xaf,0x0d,0x06,0xb0,0x41, +0xbd,0x67,0x08,0xb4,0xa4,0x5f,0x5b,0x3a,0x71,0x0b,0x23,0xde, +0x97,0xa4,0xd6,0x7f,0xa4,0x3d,0x8e,0xd6,0xa1,0x24,0x87,0xe6, +0xd4,0x40,0x9b,0xbf,0x73,0xea,0x58,0xd9,0x4f,0x95,0xdf,0xfd, +0xf3,0x62,0xdb,0x2e,0x90,0x93,0x2f,0x17,0x4e,0x13,0xdd,0x9d, +0x6a,0xc7,0x0e,0x6a,0x73,0x07,0x5f,0xc2,0xee,0x76,0xdc,0xfd, +0x44,0x67,0x17,0xaa,0x1b,0x81,0xfa,0x2a,0x3c,0x6d,0x08,0xe5, +0xcc,0x16,0x9d,0x95,0xa6,0xf3,0xad,0xf3,0x0d,0xf8,0xb2,0xb4, +0x6b,0xa9,0x45,0xa9,0x1c,0x7e,0xda,0xd7,0x0a,0x0f,0x4d,0xfa, +0xe1,0x4f,0xf6,0x72,0xf4,0x95,0xe8,0xcb,0x17,0xaa,0xaa,0x79, +0xcf,0x6b,0x4e,0xa5,0x27,0xf3,0x38,0x98,0xd8,0x81,0xea,0x4c, +0x57,0x4b,0x67,0x6f,0xeb,0x6d,0x0e,0xe7,0x61,0x0c,0x29,0xf0, +0x2b,0x3a,0x9b,0x77,0x96,0xc3,0x46,0xa6,0xa9,0xa0,0xa9,0xb4, +0x89,0xca,0xaa,0x51,0x0c,0x0e,0xa2,0x0f,0xf9,0x0e,0x1e,0x6e, +0x60,0xf1,0xa1,0x29,0x81,0x87,0x6b,0xf0,0x21,0xa3,0x28,0x8c, +0x15,0x42,0x49,0x5b,0x45,0x43,0x55,0x55,0x35,0xe7,0x28,0xe8, +0xd6,0xa3,0x55,0x2b,0xec,0xa9,0xc7,0x17,0x6c,0x7c,0x6a,0x1c, +0xfd,0xe1,0xe0,0x55,0x23,0x3e,0x65,0x62,0xd2,0x63,0xd3,0xaf, +0x66,0x68,0xc7,0xf1,0x91,0xbe,0xe7,0x7d,0xcf,0xfb,0xd1,0xc4, +0x6b,0x01,0x73,0x19,0xdb,0xdd,0x1a,0x6a,0xab,0xb5,0x39,0x5b, +0xaa,0x09,0xbc,0xd5,0x1d,0x35,0xed,0x0d,0xb9,0x41,0xa3,0x6a, +0x3d,0x03,0x65,0x9b,0x20,0x3f,0x2b,0x15,0x3d,0x26,0x4d,0x5f, +0xa1,0x95,0xb9,0x77,0xad,0xe6,0xce,0x6d,0xfb,0x0e,0x83,0x16, +0xd5,0xaa,0xf6,0xca,0x3b,0xb9,0x43,0x5c,0x3d,0xe6,0x0d,0x73, +0xfd,0xc2,0x7d,0x56,0xa8,0xa4,0x39,0x00,0x8f,0x31,0x59,0xd9, +0xe9,0x39,0x69,0x79,0x5c,0x20,0x4d,0x78,0xb8,0x45,0x7c,0x46, +0x04,0x85,0x4e,0x51,0xa1,0x25,0x0f,0xa6,0x40,0xeb,0x31,0x9a, +0x6c,0x92,0x2d,0x14,0x60,0x3a,0x53,0x9f,0x96,0x7e,0x5d,0x15, +0x2a,0xc5,0xf5,0xf8,0xfb,0x59,0x13,0x7c,0x67,0x00,0xef,0xf6, +0x89,0xeb,0xf5,0xdf,0xcf,0xea,0x12,0x0f,0xb0,0x70,0x5f,0x38, +0x48,0xb0,0xb5,0x0d,0x5a,0x19,0x6c,0x5d,0x4b,0xa0,0xd5,0x48, +0x5a,0xce,0x27,0x64,0x51,0x83,0x69,0x1e,0x15,0x37,0x1a,0xbe, +0x9f,0xdb,0x21,0x1e,0x64,0x44,0x82,0x6f,0x88,0xc7,0x05,0x8f, +0x0b,0xee,0x17,0x13,0x8c,0xf8,0x17,0xb1,0xdf,0x25,0xde,0x4d, +0xd4,0xd5,0xd8,0x6d,0x89,0x63,0x9c,0xf2,0x8d,0x79,0xd8,0xd5, +0xf3,0xf6,0xdb,0x7e,0x98,0x68,0x55,0xc4,0x87,0xf9,0x87,0x05, +0x84,0x06,0x5a,0x44,0x9a,0x47,0x98,0x45,0x0d,0x0e,0x75,0xdf, +0xe8,0x7c,0x6c,0x59,0xc4,0xbb,0x9a,0x3a,0x9a,0xdb,0x98,0xfb, +0xa6,0xfb,0x66,0xf8,0xa4,0x55,0xd5,0x94,0xd6,0x94,0x36,0x5b, +0x14,0xf2,0x5e,0x96,0x27,0x6d,0x9c,0xed,0x2d,0xca,0x79,0x57, +0xdb,0x7a,0x8f,0x4e,0xdb,0x06,0x5b,0x25,0x5f,0x5f,0x1f,0x1f, +0x1f,0x5f,0x4e,0x58,0x09,0x8d,0xc4,0x65,0xbf,0xe9,0xf1,0xfd, +0xda,0xe5,0x76,0x7c,0x4a,0x62,0x4a,0x72,0x0a,0xb5,0x5f,0x9e, +0xe0,0xd7,0x84,0x8e,0xf7,0x41,0xbb,0x01,0xb5,0x6f,0x8d,0xfc, +0xbe,0x09,0x8e,0x4d,0x68,0xce,0x66,0x14,0x26,0xe7,0xc5,0x67, +0x99,0xa4,0xf1,0xa1,0x5e,0x41,0xee,0xde,0xee,0x1c,0x2a,0x33, +0x69,0x79,0x29,0xb9,0x89,0x39,0xdc,0xf7,0x48,0x7b,0xb6,0x65, +0x90,0xb9,0x7c,0x45,0x01,0x36,0x31,0xb8,0x05,0xf7,0x93,0x5b, +0xb0,0xe5,0x18,0x1d,0x28,0xe4,0xc8,0x7d,0xd8,0x42,0x3b,0x6f, +0x8f,0x3a,0x34,0xdb,0x33,0x9f,0x69,0x1e,0xc4,0x3f,0xf5,0xe0, +0xcf,0x65,0xff,0x64,0xfb,0x57,0x34,0xa1,0x6e,0xa7,0x60,0x24, +0xcf,0xe8,0x18,0x7e,0x22,0xed,0x4e,0xa6,0x46,0x91,0xd2,0x64, +0x85,0x4a,0x87,0x95,0xc2,0x00,0x4c,0xc8,0xa2,0x59,0xec,0xb8, +0xb2,0x60,0x28,0xae,0x25,0x2f,0x5e,0xd4,0x7f,0x1a,0x0b,0x93, +0x28,0x9e,0xc5,0xe1,0xa4,0x96,0xa3,0x7f,0x2c,0xaf,0x6a,0xe6, +0x57,0x7c,0x7d,0xe2,0x51,0x28,0x4c,0xe4,0x60,0x79,0x1b,0xae, +0x80,0x45,0x3a,0xb8,0x08,0xe7,0x18,0xc3,0x6c,0x26,0x0c,0x39, +0xfd,0xbd,0xeb,0xb7,0x71,0xf8,0x0a,0x2a,0x08,0xdc,0x02,0x35, +0xbc,0xc5,0xc8,0xb5,0xd7,0x13,0xef,0x32,0xb7,0x0a,0xaf,0x3c, +0x07,0x37,0xbe,0xd8,0xb3,0xd0,0x3d,0xc7,0x85,0x13,0xa1,0x95, +0x5c,0x03,0x7b,0x57,0x16,0xed,0xf7,0x93,0x2a,0xb0,0x77,0x64, +0x8f,0xe0,0x9f,0xe4,0x7b,0xa6,0x2e,0x21,0xa3,0x54,0x15,0x82, +0x11,0xb0,0xae,0xfb,0x35,0x5c,0x30,0x5e,0xce,0xfe,0x0a,0x66, +0xc4,0x09,0x2f,0x54,0xb2,0xfb,0xc7,0xc1,0x05,0x3b,0xbc,0xc0, +0x08,0xff,0xc6,0x12,0xd2,0x29,0x8e,0x91,0xe8,0xcb,0x1b,0x03, +0x78,0xb3,0x5b,0x5c,0xa7,0xf7,0x7e,0x56,0xb7,0xb8,0x5f,0x2a, +0x22,0x10,0x20,0x5f,0x42,0xb6,0x77,0xc0,0x34,0x74,0x6b,0x04, +0xc3,0x06,0x34,0xac,0xd7,0x42,0x1e,0x8d,0x70,0x5a,0xd7,0x33, +0x56,0x3e,0x91,0x0e,0x84,0xde,0x53,0xd7,0xe7,0x01,0xcf,0xf5, +0x02,0xf9,0xec,0x55,0xb2,0x55,0x37,0xd7,0x9b,0x1b,0xe9,0x98, +0xee,0x37,0x2f,0x37,0xe4,0x1f,0xb4,0xf4,0xb7,0xb5,0x74,0x36, +0xe9,0xf5,0x19,0x7e,0x66,0x56,0xd1,0xc6,0x1f,0x68,0xd4,0x6d, +0xb3,0xe8,0xb8,0xff,0x73,0xed,0x1f,0xb9,0xf0,0x31,0xd7,0x24, +0xbd,0x54,0x6c,0x65,0x03,0x96,0x3a,0x6f,0xd0,0xda,0xc1,0x89, +0x5f,0xc1,0x0a,0x62,0x09,0xa5,0x0d,0x2c,0xc6,0x18,0x13,0x47, +0x7b,0x1d,0x67,0x3d,0x9f,0x3c,0x1b,0xbe,0x2f,0x6f,0xa0,0xaa, +0xba,0x81,0x82,0xf8,0x09,0x62,0x29,0xd3,0xa8,0xb4,0xca,0x3a, +0xed,0xc4,0x37,0x9f,0xe9,0x72,0x6e,0x74,0xe0,0xe0,0x3d,0xfe, +0x4c,0x4d,0xa0,0xf0,0x9d,0x15,0x4c,0x60,0xb3,0xc3,0x73,0xc2, +0x72,0xc3,0xb3,0x9b,0x78,0xe4,0xaa,0xd7,0x76,0x7a,0xf5,0x73, +0xfa,0xcc,0x69,0xad,0xf5,0x86,0x38,0xcd,0x32,0xd7,0x8c,0x2f, +0x4c,0xcc,0x4f,0xcc,0x4b,0x94,0x0a,0xa3,0x3c,0xdf,0x89,0xef, +0xf4,0xe0,0xdd,0x9a,0x7f,0xac,0xf5,0x13,0x8b,0xae,0xc2,0x42, +0x92,0xe4,0x50,0xe1,0xd2,0x71,0x92,0x43,0x33,0xa6,0xbd,0xac, +0xbc,0x3c,0x59,0xc6,0x21,0x8b,0x5e,0xe4,0x09,0x9c,0x97,0x56, +0x9c,0x8c,0x12,0xaa,0x89,0x09,0xf8,0x1e,0xc2,0x2c,0x13,0xb9, +0x42,0x2b,0xf6,0xde,0x83,0x18,0x98,0xd2,0xdb,0xaa,0x03,0x93, +0x31,0xa6,0x4b,0x4f,0x1f,0x7d,0x4d,0xc1,0x77,0x3f,0x66,0x9b, +0x40,0xf6,0x5e,0x16,0x23,0x11,0x49,0x4b,0x6b,0x45,0x77,0x76, +0xa7,0x45,0x36,0xef,0x6b,0xee,0xa4,0x6f,0x69,0x7b,0x25,0xfa, +0xc3,0xab,0x45,0xe9,0xbb,0xe6,0xb7,0xbd,0x0b,0x47,0x30,0x79, +0xa9,0xce,0x6b,0xfc,0x37,0x4b,0x19,0xe0,0x87,0x17,0x5f,0x6f, +0x65,0xcf,0x2b,0x9f,0xd5,0x87,0x75,0xf1,0x42,0x91,0x90,0x43, +0xf6,0xa3,0xc9,0x03,0x16,0x8d,0xc7,0x7d,0x0e,0x26,0x7b,0x59, +0x6f,0xb4,0x27,0x32,0xd3,0x42,0xab,0x62,0xad,0xd6,0x22,0xfe, +0xe4,0x80,0x67,0xbd,0x43,0x33,0xb7,0x1c,0x67,0x90,0xe0,0x06, +0xff,0xeb,0x7e,0x15,0xa6,0x01,0x7c,0x86,0x53,0x9a,0x7d,0xb2, +0x05,0x87,0x4c,0x12,0x89,0xac,0x0f,0xad,0x3d,0x57,0x65,0x1c, +0xc6,0x27,0xd9,0xc7,0xd9,0x5e,0xb5,0xe6,0xf0,0xf8,0x69,0x82, +0x06,0x5b,0x8c,0xe5,0xab,0xda,0xd4,0x80,0xd2,0xab,0x7f,0x9b, +0x12,0x5c,0xbc,0x04,0x16,0xb3,0xb0,0x8a,0xb2,0x3f,0x58,0xfc, +0x1a,0x17,0xb3,0x5d,0x33,0x60,0xf1,0x1b,0xfa,0x57,0x51,0xbe, +0x10,0x7e,0x95,0x0a,0x71,0x97,0x09,0xa7,0xa1,0x0c,0x5d,0xfb, +0xe1,0x42,0x8b,0xd8,0xc4,0x5c,0x2a,0xfb,0xa4,0xbc,0x42,0x79, +0x08,0x38,0x8a,0xb0,0x9f,0xc2,0x58,0x18,0xdb,0x8c,0x63,0x6f, +0xc1,0xe4,0x36,0xcc,0xbd,0xa5,0x71,0x0c,0xcb,0xd0,0x9f,0xc5, +0x0c,0x3f,0xdc,0xba,0x09,0x17,0xab,0xb4,0x98,0x3d,0x82,0xd9, +0x25,0xa0,0x12,0x0f,0x36,0x4a,0x10,0xc3,0xe0,0xbf,0x69,0xd4, +0x9c,0xf4,0x97,0xb2,0x30,0x07,0x5f,0xfd,0xdc,0xb3,0x12,0xb2, +0xb5,0x30,0x7b,0xad,0xee,0x8f,0x28,0xb0,0xce,0x41,0x4e,0xc1, +0x8e,0x12,0xfb,0x78,0x55,0xf5,0xa4,0xf2,0x11,0x65,0x1f,0x1e, +0x82,0x3f,0x41,0xee,0x16,0x70,0x4c,0xef,0x31,0x1a,0x6a,0xa6, +0x34,0xd4,0x4c,0x2d,0x08,0x98,0x1e,0x45,0x53,0xe6,0x31,0xde, +0x23,0xb8,0xe6,0x1e,0xac,0x61,0x3a,0x0f,0x91,0x7b,0xb0,0xe1, +0x10,0x8b,0x4e,0x16,0x74,0x90,0xd6,0x3c,0x90,0x4a,0x0d,0xc3, +0x86,0xfd,0xb8,0x81,0xa1,0xaa,0xcb,0x80,0x3c,0xcb,0xfd,0xba, +0xac,0xe7,0xba,0x73,0x23,0xaf,0xef,0xb4,0xd7,0x6d,0xbb,0x0f, +0x07,0xbf,0x5c,0x27,0x0f,0xce,0x3e,0x3e,0x79,0xcb,0xa9,0xa8, +0x95,0x3f,0x5e,0xbe,0xf3,0xda,0x41,0x69,0x16,0xdc,0x4e,0x79, +0x1f,0xc1,0xcb,0xf2,0x55,0x70,0x99,0x15,0x19,0x0b,0xa2,0x83, +0x21,0xbd,0x2c,0x34,0xeb,0x90,0x5e,0xb8,0xa2,0xc3,0xe2,0x90, +0x15,0xd1,0xc4,0x90,0x01,0x7a,0x46,0x93,0x0c,0xc0,0x15,0x4d, +0x16,0xaf,0x88,0x71,0x44,0x18,0x43,0xe5,0xf5,0x4f,0x14,0x5e, +0xb2,0xc4,0xd5,0x98,0xa1,0x0d,0x19,0xe2,0x6c,0xcc,0x12,0x66, +0xaf,0x19,0x91,0xdb,0x4b,0xff,0x89,0x14,0x06,0xab,0x04,0x67, +0x9a,0xb7,0xb8,0xdb,0x2c,0xec,0x3c,0x4a,0x6e,0xc3,0xc4,0xa3, +0x2c,0xd4,0xde,0xa6,0x67,0x3e,0xa6,0x67,0x0e,0x49,0x67,0xa6, +0x1f,0x65,0x87,0x3f,0xb6,0x26,0x87,0x90,0xbb,0x47,0xaf,0x91, +0xba,0x33,0xf1,0x10,0xbd,0x46,0x5a,0x35,0xf6,0x31,0x3d,0x73, +0x48,0x3a,0x33,0x5d,0xfa,0x8e,0x7c,0x00,0x7c,0x88,0xb3,0xbf, +0xb3,0xbf,0x23,0xf5,0x9a,0xaf,0x25,0x4e,0x9e,0xab,0x85,0xb9, +0x4b,0x75,0x5f,0xd3,0xc1,0x73,0x0c,0xb4,0x0f,0xfe,0xe0,0x35, +0x55,0xcf,0x25,0xfa,0x22,0x9f,0x21,0x7c,0x45,0xda,0x45,0xc0, +0x2a,0x16,0x4b,0xfc,0x70,0xcb,0x4e,0x9c,0xa6,0xd2,0xee,0xa4, +0xf0,0x0c,0x66,0xe7,0x80,0x1a,0x54,0x2a,0x43,0x20,0x0b,0x7d, +0xe2,0x16,0xd2,0x05,0x3e,0x75,0xe8,0xd3,0x09,0xb6,0xe0,0x29, +0x9a,0xa0,0x27,0x98,0x18,0xa0,0x8b,0x35,0xb8,0xe8,0x63,0xa0, +0x95,0x90,0x57,0xcf,0x62,0x33,0x7c,0x41,0x70,0x0e,0x2e,0x85, +0x39,0x2c,0x18,0xe3,0x1c,0x02,0x73,0x60,0x2d,0xce,0x61,0xd7, +0x26,0x90,0xc2,0xd2,0xec,0xf2,0xcc,0x4a,0xfb,0x1c,0x3e,0xc0, +0xc9,0xc7,0xf5,0x94,0x1b,0x87,0xc6,0x0f,0x48,0x81,0x73,0x86, +0x7b,0x9a,0x5b,0x55,0x36,0x1f,0x58,0xe6,0x7b,0xed,0x4c,0x19, +0x27,0xcc,0x10,0xbd,0x89,0x77,0xf5,0xa9,0xeb,0x1e,0xe5,0x36, +0x67,0xf8,0x12,0xc7,0x42,0x87,0x6c,0x4a,0xa4,0xdd,0x22,0x49, +0x65,0x79,0x49,0x6d,0x76,0x8d,0x6d,0x1e,0xef,0x6b,0x7b,0xca, +0xd9,0xd9,0x95,0x13,0x54,0x2f,0x91,0x73,0xe5,0x7e,0x32,0xff, +0x52,0x6b,0x5f,0x3e,0xe3,0x64,0x86,0x63,0xa2,0x2b,0x55,0xba, +0x5b,0x48,0x13,0x9e,0xbc,0x6b,0xc8,0x46,0x14,0x85,0x97,0x9e, +0x2b,0xb2,0x0a,0xe2,0x93,0xdc,0xe3,0x9d,0x62,0x4e,0xd6,0x26, +0xf3,0xba,0xe8,0x62,0x0e,0x2e,0x07,0x31,0xd5,0x4c,0xb8,0xdd, +0x8c,0x71,0x9f,0xfd,0xfd,0x2e,0xdc,0xd5,0xdf,0xf5,0x03,0xaf, +0xfd,0xa5,0x67,0xc5,0x08,0xaf,0x5d,0xad,0xfb,0x82,0xf2,0x5a, +0xe7,0xff,0xe1,0xb5,0x4f,0x2b,0x9e,0xd4,0x73,0xd7,0xe5,0x0b, +0x09,0x9e,0x11,0x06,0xe0,0x0c,0xab,0xb5,0x96,0x88,0xba,0xad, +0x82,0x2e,0x23,0xea,0xae,0x23,0x82,0xae,0xb1,0xa8,0xcb,0xc0, +0x06,0xec,0x21,0x32,0xb4,0xad,0x81,0x08,0x3c,0xd0,0x49,0x05, +0xf1,0x55,0x5b,0x3c,0xe9,0x00,0x27,0xd3,0xdb,0xdf,0x60,0x77, +0x17,0xd4,0x36,0x88,0xff,0xb6,0x84,0x32,0x7d,0x6c,0x5c,0xd4, +0x16,0xc0,0xee,0x19,0x07,0x76,0x32,0xb4,0x63,0xe0,0x2b,0x07, +0x02,0x27,0x65,0x78,0x92,0xa1,0x88,0x4a,0x48,0x9d,0xf8,0xc8, +0x9a,0x95,0x8f,0xde,0x40,0x1a,0x86,0x57,0x58,0xc2,0x1e,0xd6, +0xd7,0xfd,0x8c,0xbb,0x87,0xbb,0xcb,0x45,0xd7,0x4f,0xdc,0x2e, +0xc6,0x9a,0xf0,0xb0,0xe7,0x2a,0x78,0x24,0xc2,0xae,0xb4,0xb4, +0xc0,0xd4,0xc0,0xe4,0xa0,0xc6,0x02,0xde,0xbe,0xc6,0xa8,0xcd, +0xac,0xca,0xc2,0x87,0xcf,0x0c,0xca,0x08,0xc8,0x0c,0xc0,0xb1, +0xe1,0x38,0x3d,0x12,0x27,0x45,0xe5,0x97,0x64,0x97,0xa4,0x17, +0x51,0x2e,0x3b,0x4b,0x9e,0x4d,0x06,0x34,0x35,0xb1,0xda,0x54, +0xae,0xdc,0xc2,0x0e,0x6f,0x15,0x5b,0x89,0x67,0x80,0x47,0x90, +0xbb,0x14,0x47,0x3f,0x74,0xaf,0x83,0x6c,0x6d,0xcc,0xde,0xac, +0xf7,0x35,0xca,0x59,0xd7,0x20,0x97,0xa0,0x91,0xf7,0x14,0x3f, +0xca,0x1e,0x54,0xdc,0xab,0xe5,0x84,0x54,0x1c,0x4f,0xba,0x0b, +0x5b,0xca,0x65,0xe5,0xf6,0xd5,0xbc,0xb3,0xa3,0x81,0x8b,0xee, +0xa9,0x93,0xa5,0xa7,0x2b,0xcf,0x54,0x73,0x50,0xd6,0x82,0x1a, +0x77,0x61,0x4b,0x13,0x6e,0xf9,0x14,0x0e,0x36,0xe1,0xc1,0x21, +0x98,0x47,0xbb,0x9f,0x83,0x1b,0x1e,0xaa,0xa3,0xce,0xd0,0x2d, +0x7a,0x9c,0x8e,0x1b,0x60,0xa1,0x3a,0xee,0x32,0x87,0x5d,0xc7, +0x71,0x9d,0x39,0xac,0x3b,0x8c,0xc7,0x4c,0x21,0x8a,0xd1,0xb7, +0x44,0xc6,0x76,0x91,0x77,0xa6,0x29,0xdf,0x93,0xd2,0x9f,0xd1, +0x95,0xcb,0xcd,0x67,0x69,0x92,0x8e,0x34,0x8f,0x8a,0xa7,0x09, +0x9c,0x24,0xc3,0x9c,0x6c,0x60,0xf3,0xa9,0x46,0xd7,0x08,0x51, +0x0b,0x3d,0x16,0xca,0xc1,0x47,0x6c,0x6d,0x4e,0x65,0x41,0x41, +0x09,0x17,0xcf,0xdc,0xc6,0x19,0xdf,0x6f,0x82,0xbd,0x9a,0xf9, +0xed,0xfc,0xde,0x02,0xbd,0x62,0xab,0x6b,0x1c,0xc6,0x09,0xdf, +0x93,0x03,0xb8,0x95,0x12,0x11,0xef,0x19,0x07,0x70,0xe7,0x7d, +0x36,0x1f,0xcf,0x90,0xe3,0xa8,0xf3,0x29,0x0b,0x3a,0x38,0x96, +0x1c,0x46,0x9d,0xbb,0xd4,0xc4,0x2d,0x74,0x0c,0x7a,0xb4,0x75, +0xf1,0x90,0xa5,0xb0,0xb6,0x81,0x6d,0x90,0xbe,0x67,0x68,0x65, +0x8f,0x16,0x9d,0xb9,0xa3,0x02,0xa5,0x4c,0x75,0x46,0xda,0x75, +0xd5,0x06,0x56,0x37,0x45,0xa1,0x08,0x6f,0x37,0xc2,0xed,0x1a, +0xbc,0x5d,0x07,0xb7,0x6b,0xf1,0x76,0x2d,0x7c,0x01,0x33,0xf1, +0x59,0x0b,0xbc,0xa9,0xc3,0x37,0xbd,0xda,0xa8,0x09,0xcf,0x8c, +0x58,0xd1,0xa3,0x91,0xa4,0xe5,0xa5,0x16,0x25,0xe6,0x1b,0xa6, +0xf2,0xa1,0x9e,0x21,0xee,0x3e,0xae,0x1c,0x66,0x59,0x0a,0x07, +0x1a,0x18,0xcc,0xc9,0x25,0xe1,0x79,0xfe,0x25,0x21,0xa9,0x26, +0xfe,0x7c,0xaa,0x7f,0xda,0xa9,0x84,0xb3,0x94,0xd4,0x89,0xc7, +0xc8,0x1f,0x4c,0x63,0x56,0x3a,0x95,0x71,0xe5,0xf8,0x1e,0xdf, +0xf6,0xc2,0x24,0x88,0x3e,0x86,0x1f,0xb1,0xf0,0x11,0xc4,0x10, +0x13,0x8c,0x6e,0x65,0xd7,0x8c,0x83,0x68,0x43,0x8c,0x66,0xe4, +0x67,0x70,0x34,0xc1,0x24,0xc6,0x56,0xaa,0x9a,0x9a,0x00,0x37, +0xa4,0x7d,0xff,0x4e,0x51,0x2a,0x45,0xd3,0xd2,0xd7,0x9a,0x9b, +0x47,0x72,0xcd,0xc6,0x7f,0x72,0x0d,0x23,0xd5,0xb8,0x0d,0x23, +0xf8,0x09,0xfc,0x74,0x1c,0x7f,0xc2,0x50,0x0d,0x08,0x15,0xd7, +0xe2,0x19,0x4d,0x21,0x7d,0x00,0xfd,0x85,0xb5,0xf0,0x09,0x33, +0xdc,0x03,0x34,0xec,0xdc,0x68,0x7e,0x00,0x0f,0x9c,0x8d,0x57, +0xb4,0xbe,0xa3,0xea,0x6f,0xa7,0xef,0xe6,0xe3,0x4b,0x3b,0x6d, +0xf9,0x3b,0x30,0x36,0xef,0xd5,0x15,0x50,0xe3,0xde,0x88,0x2b, +0x06,0xdf,0xcf,0xd5,0xc0,0x4b,0x52,0x8d,0x3c,0x41,0x24,0x06, +0xf2,0x8c,0x4e,0x71,0xf4,0xf7,0xc2,0xe6,0x2e,0x71,0xf3,0xe7, +0xea,0x7b,0xc5,0xc5,0xfa,0xc2,0xe2,0xf5,0x2c,0x6c,0x13,0x2f, +0x11,0x88,0x04,0x4f,0x8c,0x04,0x06,0xa2,0x56,0x0f,0xc2,0xe2, +0x61,0x8a,0xf3,0x83,0x2f,0xc0,0x17,0x19,0xf4,0xa6,0xf1,0xef, +0x3d,0x1f,0x07,0x75,0xdf,0xf3,0x3d,0xf8,0x98,0x11,0x0f,0x43, +0x09,0x01,0x6f,0xd8,0x02,0x4b,0x71,0x0b,0x44,0xa2,0x22,0xcd, +0x63,0xab,0x29,0x12,0xac,0x46,0x6f,0xfa,0x90,0xb1,0xf2,0x59, +0xc4,0x50,0x9e,0xde,0x21,0x8e,0xba,0x27,0x6c,0xea,0x10,0x37, +0xdd,0xd2,0x3c,0x26,0x2e,0x34,0x14,0x16,0x1e,0x62,0x05,0x07, +0xea,0x6f,0xc3,0xbf,0xe2,0x92,0xfe,0x5f,0xe4,0x67,0x57,0x0c, +0x30,0xeb,0x0b,0xc9,0xf0,0x76,0x63,0xf9,0x76,0x06,0xf5,0x50, +0x4e,0x72,0x8a,0xb3,0xcb,0x32,0x4a,0xf5,0xb3,0xa4,0xed,0x06, +0x6c,0xce,0x48,0x2b,0x25,0x98,0xa6,0x2c,0xbf,0x72,0x9f,0x92, +0xd3,0x45,0x4a,0x42,0x00,0x68,0x0e,0x4f,0xa3,0x06,0x5a,0xc6, +0x18,0x9d,0x2d,0x71,0xc9,0xf4,0x4a,0xf5,0x50,0x42,0x99,0xc1, +0xfb,0x49,0x9d,0x0c,0x6a,0xc0,0x05,0xb2,0x41,0x4c,0xfe,0x8e, +0xba,0x81,0x87,0xf4,0x65,0xf7,0x7f,0xe6,0x67,0xe1,0x28,0x1d, +0x18,0xf5,0x37,0xbd,0xff,0x67,0x86,0xd6,0x8f,0x95,0xdf,0x4a, +0xf4,0xde,0xd1,0xcf,0x3e,0xc0,0x2e,0x80,0x13,0xf4,0x05,0x1d, +0x02,0xc7,0xbb,0xf0,0xf8,0x77,0x60,0xc3,0x84,0x78,0x84,0x78, +0x07,0x7b,0xb7,0x79,0xf0,0x99,0x25,0x19,0x65,0x69,0x2d,0x5c, +0xa3,0xf8,0xb3,0x1e,0x64,0xe3,0x65,0x76,0x5b,0x9c,0x7d,0xfd, +0x4f,0xca,0xad,0x5a,0x46,0xec,0x56,0x4f,0xcb,0x4d,0x46,0x2a, +0xe5,0x46,0xcf,0xda,0x72,0x6a,0xae,0x3c,0x50,0x8a,0x63,0xd6, +0xc6,0xdc,0xb0,0xfd,0x6b,0x16,0xdc,0x67,0x12,0x7b,0x14,0xb0, +0x85,0x41,0x4f,0xf1,0x0b,0x02,0xdb,0x84,0xd9,0x8b,0x51,0x8f, +0x4d,0xd5,0x53,0x80,0xe3,0x4c,0x5d,0x86,0x54,0xca,0x7c,0xa5, +0x98,0x2a,0x7a,0xb2,0x82,0x09,0xbc,0x26,0xe2,0xec,0x27,0x1f, +0x8a,0x1c,0x13,0x22,0xcc,0xde,0x25,0xce,0xfe,0x7b,0xc8,0x8c, +0xe4,0x19,0xed,0xe2,0xe8,0x87,0xc2,0x96,0x0e,0x71,0xcb,0x4d, +0x4d,0x35,0x71,0x89,0xa1,0xb0,0x64,0x1f,0x2b,0x38,0xe1,0x44, +0x32,0xfc,0x3b,0xae,0x1f,0x80,0x51,0x72,0x5f,0x1c,0x35,0xc0, +0x60,0x1f,0x56,0x48,0x96,0x32,0xc0,0xc8,0xa7,0x60,0xd1,0x32, +0x3c,0xdf,0x14,0x34,0x76,0x52,0x0b,0x19,0x80,0xf7,0x26,0x1c, +0xd2,0x7f,0xcf,0x77,0xe1,0x13,0x46,0x3c,0x04,0x41,0x92,0x85, +0x3e,0xa6,0x16,0xfa,0x18,0x22,0x97,0x50,0x03,0x29,0x51,0x03, +0x29,0x8d,0x18,0x68,0x86,0x7c,0x07,0x31,0x93,0x07,0x34,0xe3, +0xdb,0x6e,0x61,0x51,0x8b,0xb8,0xa8,0x5f,0x5d,0x4b,0x24,0xa6, +0x02,0xd1,0x63,0x05,0x55,0x4c,0x24,0xa5,0x25,0x55,0x1d,0x19, +0x75,0x5c,0xd5,0xbf,0xc6,0x98,0xcb,0x3b,0xd9,0x40,0x4f,0x6f, +0x4f,0xaf,0x33,0xdc,0xb0,0x3b,0x2a,0x12,0x79,0x71,0xa3,0xc8, +0xf4,0xc3,0x50,0xe3,0xf0,0x72,0x0b,0x68,0xd4,0x42,0x81,0x91, +0x53,0x16,0xf6,0x2f,0xfa,0x61,0x86,0x1a,0xd8,0x6d,0x0a,0xdd, +0x54,0xd4,0x4c,0x60,0x52,0x4d,0x14,0x5e,0x30,0x4d,0xf9,0xb9, +0x4d,0xaa,0xa0,0x08,0x63,0x5a,0x70,0xcc,0x20,0xd5,0x0c,0xc3, +0xe9,0xd8,0x4b,0x5a,0xe0,0x12,0x4d,0x15,0x7d,0x78,0x81,0x85, +0xcb,0x60,0x42,0x16,0xa2,0xde,0x5b,0x16,0x1e,0xeb,0x91,0x52, +0xef,0x4e,0x93,0x02,0xb7,0xba,0x2a,0xfe,0x54,0xb1,0x7e,0xbb, +0x7b,0x36,0xa7,0xf8,0x7e,0xff,0x05,0x82,0x1b,0x6e,0x22,0x79, +0xb8,0xf8,0x7b,0x18,0x05,0x63,0x1f,0x4a,0x9b,0xbd,0xed,0xe2, +0xda,0x44,0x25,0x36,0xab,0x36,0xad,0x3e,0xb9,0xee,0x68,0x32, +0x6f,0x8e,0x1b,0x96,0xe2,0x56,0xdc,0x84,0x1f,0x35,0x1b,0xf3, +0x37,0xdb,0xba,0x7b,0x9b,0x07,0x6a,0x17,0x0d,0xac,0x7b,0xba, +0x63,0xc9,0x46,0x9c,0xbe,0x0f,0xb7,0x1c,0xa9,0x54,0xe7,0x61, +0xc7,0x7d,0x50,0x7a,0xf2,0xee,0xe5,0x5f,0x2b,0x61,0xf6,0x0e, +0xd8,0x7a,0x84,0x43,0x2b,0xf9,0x11,0x62,0x8b,0xf3,0x8e,0x21, +0xb7,0x6c,0xc9,0xd6,0xe7,0x1a,0xbf,0xd8,0xc2,0x98,0xd4,0xdc, +0x94,0xdc,0x94,0x3c,0xfa,0xd0,0x7d,0xd1,0x04,0x37,0xf5,0x23, +0xb9,0xb7,0xe0,0x39,0x4c,0x00,0xf6,0x4b,0x98,0xdb,0x01,0xfb, +0xb8,0x16,0xfc,0x93,0xcd,0xa9,0xcb,0xa8,0x4f,0xad,0x3f,0x9e, +0xca,0x9f,0x5c,0x6a,0xb0,0x72,0xcf,0x26,0x97,0x21,0xf7,0xdb, +0x9e,0xf7,0x75,0x4e,0xf1,0xa5,0xdb,0x2b,0xf6,0xc9,0x0e,0x9b, +0x98,0x68,0x9b,0x1f,0xb7,0xaa,0x35,0xe0,0x87,0x6a,0xba,0x1b, +0x5a,0x5b,0x3a,0x37,0x0f,0xec,0xb9,0x7f,0x64,0xf1,0x56,0xfc, +0xf8,0x10,0xae,0x3d,0x71,0x4d,0x93,0x07,0x0a,0xa1,0xfc,0xe7, +0x7f,0xfd,0x08,0x63,0xd7,0xc0,0xac,0x3d,0xb0,0x43,0x9d,0x13, +0x7f,0x17,0x9a,0x49,0x75,0x43,0x65,0x73,0x49,0x0b,0x07,0x77, +0x19,0x53,0x5c,0xba,0x17,0x27,0xe3,0xa8,0x45,0xfb,0xee,0xa8, +0x3f,0x36,0xfc,0x96,0xb2,0x8e,0x69,0x42,0x29,0xe5,0x13,0x0c, +0x05,0xaf,0x30,0x07,0x43,0x1f,0x5c,0x7b,0x2a,0xcd,0x9c,0x07, +0x36,0xeb,0x66,0x56,0x6d,0x49,0x7c,0x4c,0xcc,0xa5,0xa4,0x68, +0x88,0x3a,0xc0,0x67,0xd4,0xa3,0xeb,0xa7,0x01,0x31,0x91,0x51, +0x61,0x54,0x6b,0x87,0x9f,0xbf,0x1c,0x9f,0x1a,0x93,0x7c,0x39, +0x45,0x09,0x6e,0x21,0x33,0x40,0xf1,0x39,0x8d,0x29,0xc9,0xcd, +0x2b,0xc8,0x2c,0xe0,0x64,0x54,0x27,0x26,0x27,0x27,0x52,0x81, +0xa3,0x93,0xc2,0x9f,0xd8,0xb7,0x59,0x1b,0xd7,0xea,0xe7,0x9a, +0xf3,0x05,0x09,0xf9,0x09,0xb9,0x09,0xdc,0x8b,0x46,0x52,0x95, +0x5d,0x9e,0x5b,0x4c,0xf5,0xe9,0x6d,0xc6,0xe7,0xcc,0x19,0x6f, +0x77,0x6f,0x4e,0x58,0x3c,0xec,0x48,0x70,0x6a,0x02,0x4e,0x4e, +0xc2,0xb1,0xf9,0xdf,0x5c,0xbb,0x5d,0xdb,0xd0,0xc6,0x5d,0x17, +0xb7,0xb0,0x79,0xe9,0xd9,0x19,0x59,0x59,0x9c,0xb0,0x11,0xca, +0x86,0xb5,0xb1,0x0c,0x1c,0x98,0x03,0xfa,0x3b,0x1c,0x71,0xa9, +0x3d,0xa5,0xcd,0x37,0xd3,0x7b,0xb2,0x5a,0x73,0x9a,0xec,0xbb, +0xdd,0x06,0x4e,0xe3,0xa8,0x33,0x38,0x2d,0x10,0x97,0x84,0x27, +0xeb,0xf3,0x70,0x20,0x11,0xd6,0xe5,0x02,0x15,0x18,0xbc,0x1d, +0x2c,0xf7,0x85,0xe5,0xa1,0x1c,0x2e,0x14,0xe2,0x88,0xf8,0xa4, +0x5a,0xa0,0x9e,0xfa,0x84,0x62,0x42,0x8d,0xf0,0xc4,0x96,0xb5, +0x1f,0x67,0x25,0x3e,0xa9,0x67,0x85,0x08,0x3c,0x4a,0x8c,0x1c, +0x0e,0x9f,0xdc,0x7c,0xfa,0x40,0xee,0xf1,0x52,0xdd,0x9a,0x91, +0x62,0xdf,0x97,0x09,0xaa,0x42,0xe7,0xf0,0x36,0x5d,0xe1,0xfd, +0x6a,0xf1,0x7b,0x7d,0xe1,0xfb,0xe5,0xc3,0x06,0xba,0x30,0xcc, +0x1c,0x5c,0x8c,0xdc,0x0e,0x5c,0xad,0x51,0x6a,0xc0,0x7f,0x5f, +0xf9,0x6d,0xcb,0xfd,0x7e,0x4e,0x98,0xc7,0x98,0xa9,0xed,0x3b, +0x8a,0xa3,0xb5,0xb5,0xbb,0xd4,0x9b,0xf5,0x65,0x66,0xb6,0x7c, +0xb7,0x7d,0xa7,0x75,0xbb,0xe9,0x6a,0x6b,0x64,0x9c,0x70,0xee, +0xd9,0x4c,0x2d,0x5e,0x58,0xf2,0x29,0xd8,0xc0,0xce,0x1f,0x61, +0x39,0xf5,0xa9,0x0d,0x6c,0x49,0x69,0x41,0x79,0x56,0x05,0x27, +0x78,0xd2,0xe0,0x88,0xa7,0xa1,0x88,0x21,0x7d,0xb0,0x8f,0x8d, +0xbf,0x7a,0x29,0x36,0x52,0x05,0xc6,0x6d,0xac,0xac,0x99,0xfb, +0x3c,0x38,0x31,0xec,0x93,0xd0,0x30,0xa5,0x90,0x10,0x85,0x88, +0xdb,0xb0,0xaa,0x0b,0x57,0xfd,0xa2,0xbd,0x02,0x4d,0xf4,0xe1, +0x08,0xe3,0x75,0x44,0xfd,0xd8,0x7c,0xf5,0x32,0x53,0x1e,0x26, +0xdd,0xaf,0xff,0x34,0xf1,0x3e,0x27,0x3f,0x51,0x49,0xba,0xd0, +0x55,0xba,0x60,0xa7,0x3e,0x2c,0x65,0xbd,0xd4,0xf4,0x4e,0xe0, +0x38,0xb5,0x52,0x33,0x9a,0xfd,0x1e,0x57,0xf4,0x27,0xdf,0xe5, +0xe2,0x30,0xb4,0x0f,0x42,0xe3,0x98,0xe4,0xc3,0xcd,0x5a,0x30, +0x63,0x57,0x69,0x0b,0x8f,0xa3,0x87,0x8e,0xde,0x70,0xbb,0xc5, +0xe1,0x6d,0x0c,0x20,0x07,0x97,0xe0,0xa4,0xed,0xb8,0x5d,0xab, +0xc4,0x90,0xff,0xb9,0xe2,0xc7,0xa6,0x87,0xbd,0x94,0x2d,0x31, +0x66,0xc7,0xf7,0x1d,0x9d,0xab,0xad,0xde,0x71,0xb8,0x51,0xeb, +0x9a,0xa5,0x2d,0x3f,0xe0,0xd4,0xe7,0xd0,0x6b,0xbe,0xdc,0x12, +0x27,0x3b,0xe2,0x12,0x9f,0x2c,0xda,0xa5,0x59,0x1d,0xe0,0x0e, +0xbb,0xde,0xc2,0x16,0xae,0x55,0x5c,0xcc,0xe6,0x17,0xe4,0x14, +0x66,0x48,0xec,0xc0,0x4d,0x98,0x48,0x52,0x72,0x92,0x72,0x12, +0x73,0xcd,0xb2,0xf8,0x5f,0x86,0x9e,0x3e,0x6f,0x86,0xd1,0x5c, +0x2d,0x9e,0x61,0x53,0x73,0x92,0x73,0x13,0x72,0xb5,0xd3,0x79, +0x87,0xad,0x07,0xf7,0xaf,0x34,0x2c,0x33,0xe2,0x07,0x2a,0xba, +0x1a,0xea,0x5b,0x39,0xd0,0x61,0x3c,0x74,0xed,0x4d,0xcc,0x6c, +0x5c,0xca,0x6c,0x4b,0xdd,0xb2,0x6d,0x6d,0xf8,0x12,0x9f,0x0a, +0x8f,0x32,0x37,0x0d,0xab,0xfd,0xce,0x9b,0xbd,0xf2,0xf5,0xf8, +0x3b,0xb9,0xb7,0x8a,0xfb,0x65,0x36,0x5b,0xf6,0xed,0x5c,0x66, +0x58,0x6a,0xcc,0xdf,0x95,0xf5,0xb5,0x36,0x76,0x71,0x60,0xc2, +0x9c,0x3a,0xe6,0xa8,0x63,0x66,0xe2,0x58,0x69,0x59,0xe9,0x9a, +0x6b,0x63,0xcd,0x97,0x9d,0xae,0x73,0xae,0x70,0x52,0x33,0xd8, +0x69,0xbd,0xc2,0xa9,0x48,0x97,0x07,0x8f,0x2f,0x60,0x09,0x4c, +0xb9,0x0b,0xb6,0x5c,0x2d,0x2b,0x46,0x0c,0x48,0x85,0xbe,0x67, +0x8a,0xe3,0x60,0xeb,0x3a,0xd4,0xd4,0x85,0x9d,0xac,0xe7,0x76, +0xcd,0x6d,0x2b,0xb7,0x55,0x18,0xf1,0xbf,0x7e,0xdb,0xf5,0x78, +0x64,0x89,0xff,0xfd,0x3e,0x88,0x67,0xe2,0xae,0x5e,0x8e,0x89, +0x50,0x81,0x79,0xb8,0x46,0xd6,0x88,0xca,0xb0,0x24,0x38,0xf5, +0xdc,0xa5,0xc0,0x20,0xa5,0xf0,0xf3,0x0a,0x11,0x0f,0x41,0xb3, +0x07,0x35,0x7f,0x60,0xf4,0x28,0xc1,0xc3,0xb1,0x7f,0xc0,0x58, +0xa6,0x73,0x01,0xf9,0x03,0x98,0x05,0x2c,0xee,0x30,0x22,0x38, +0x9a,0x8a,0x90,0xd1,0x2c,0x6c,0x9d,0x01,0x0c,0x3d,0x96,0xb6, +0x9e,0x3a,0x06,0x5f,0x91,0x81,0x05,0x30,0x80,0xcf,0x60,0xce, +0x71,0x4a,0x5e,0xe5,0xda,0x20,0x47,0x0f,0x36,0xf4,0x93,0xd0, +0x8b,0xa1,0x2a,0xe2,0x42,0x4d,0x61,0x16,0xe3,0x8e,0x53,0x17, +0x2c,0xc5,0x34,0x1c,0x57,0xaa,0xc1,0xc3,0x75,0xf8,0xf8,0x2d, +0x8c,0xcb,0x84,0x55,0x54,0x76,0xa7,0xe1,0xca,0xbf,0x90,0x85, +0xbb,0x38,0xa5,0x64,0x90,0xc7,0x6a,0x18,0x87,0xe3,0x5e,0xbb, +0xc2,0x54,0x2e,0x14,0x86,0x08,0xa4,0xe3,0x65,0x1a,0x6f,0x17, +0x13,0x3f,0x49,0x4c,0x54,0x56,0x7c,0xbf,0x43,0x20,0xe4,0xa6, +0xb8,0x1a,0x3e,0x61,0xa5,0x6f,0x9d,0x3e,0x2a,0x78,0x5d,0xe1, +0xde,0xc7,0x4b,0x73,0x80,0x2b,0xdd,0xb1,0x20,0x2a,0xf9,0x04, +0x4d,0x44,0x97,0x81,0x89,0x81,0x31,0x49,0x1c,0x9e,0x17,0xe7, +0xa8,0x09,0x4a,0xac,0x3f,0x4e,0xdd,0x82,0x1f,0x61,0x17,0xce, +0xaf,0xa2,0x80,0xf1,0x25,0x6c,0xba,0x01,0xb3,0x13,0x60,0x32, +0x17,0xcb,0x24,0xe1,0xe4,0x27,0xa8,0x02,0x5f,0xe2,0x86,0xca, +0x7e,0x1e,0xbb,0x61,0xde,0x0a,0x98,0x42,0x81,0x9d,0x46,0xc5, +0x71,0x41,0x20,0x83,0xa2,0x2b,0x9b,0xdb,0x96,0xd1,0x99,0xda, +0x73,0x3c,0x91,0xf7,0x57,0xf7,0xd5,0x3d,0x6d,0xc4,0xa1,0x5c, +0x03,0x1e,0x31,0xc7,0xe6,0x2e,0xd9,0x84,0xdb,0xb6,0x57,0xe8, +0xf0,0x70,0xe2,0x47,0x60,0xff,0x7a,0x08,0x4a,0xdc,0x1b,0xe6, +0x29,0x2a,0xc1,0x84,0x05,0x70,0x60,0xb5,0x54,0xe2,0x79,0xc5, +0x93,0x05,0x5f,0xed,0x86,0x71,0x1c,0xee,0xc0,0xb9,0x04,0x7d, +0xf1,0x89,0x06,0x3c,0xc1,0xc4,0x5b,0x90,0x08,0x2f,0x07,0xf1, +0x25,0xf8,0xb2,0x8a,0x9f,0x09,0xdb,0x08,0x1c,0xb8,0x01,0x0a, +0x5f,0x3e,0xfa,0x4b,0xaa,0x18,0xfa,0xc5,0x02,0xe0,0x76,0xc3, +0xee,0x63,0xd2,0xde,0x21,0x8b,0xba,0x97,0xf5,0xef,0x7d,0xc6, +0xc1,0x40,0x8f,0xe8,0xce,0x64,0x96,0xa7,0x57,0xa6,0xc8,0x34, +0x92,0x78,0x7f,0x2b,0x7f,0x7b,0x6f,0x27,0x0e,0x5f,0xe9,0x42, +0x3f,0x73,0x6c,0xfb,0x2a,0x75,0x5c,0xaf,0xcb,0xc9,0xa7,0x26, +0x91,0x6e,0xfc,0x97,0x1e,0x7b,0x10,0xd7,0x92,0x40,0x3d,0x5f, +0x75,0x4f,0x5d,0x4e,0xb8,0xcb,0x44,0xdb,0x44,0x3a,0x85,0xb9, +0x72,0x0e,0xa1,0xfe,0x81,0x5a,0xb3,0xf0,0x0c,0x23,0x6d,0x3b, +0xec,0xc6,0xbc,0x2c,0xa9,0xea,0x49,0x57,0x4d,0x6d,0x8f,0xed, +0xbe,0xfa,0x88,0x13,0x5b,0x99,0xb4,0xeb,0xc9,0xd5,0x89,0xd5, +0x9c,0x7c,0x6c,0xef,0x30,0xea,0x8c,0xac,0x16,0x5a,0x4f,0x84, +0xad,0xfd,0xe2,0xd6,0x77,0x6a,0xf3,0xc5,0xa5,0x5a,0xc2,0x52, +0x2c,0x65,0x70,0xf5,0x6a,0x94,0x16,0x81,0x4f,0x57,0x29,0xd2, +0x84,0x21,0x98,0xfa,0x02,0x98,0x0c,0x20,0x4a,0xb1,0x4c,0x26, +0x12,0xca,0x01,0xa4,0x1a,0x26,0x8a,0x45,0x03,0x3c,0x3e,0x82, +0xa9,0x38,0x06,0x58,0x58,0xad,0x8c,0x0f,0xa9,0xd3,0x58,0xb0, +0x38,0xd1,0x5b,0x8b,0x8e,0xfb,0x04,0x95,0x3a,0x8b,0x9b,0x83, +0xb2,0xb6,0xfc,0x46,0xa5,0xb8,0xe4,0xd8,0x0b,0x71,0xe1,0x30, +0x16,0x19,0xbe,0xa6,0x6e,0xc1,0x5f,0x41,0x69,0xe1,0x97,0x82, +0x42,0x94,0x42,0xce,0x45,0x5d,0x56,0xc8,0x68,0x8e,0x6d,0xed, +0x55,0x6e,0xa4,0x49,0x79,0x86,0x31,0x8b,0x8c,0x87,0xda,0xaa, +0x75,0x2a,0xb5,0x16,0x1d,0xed,0xc5,0xd7,0xf3,0x1b,0x94,0x62, +0x93,0x62,0x2f,0xc6,0x87,0xd3,0xcf,0x9f,0x41,0xef,0xc3,0x09, +0xf0,0x51,0x50,0x5a,0xd8,0x7f,0xee,0x4c,0xaf,0x8d,0x6b,0x1e, +0x1a,0xa9,0x29,0x98,0x23,0x0f,0x25,0x5f,0xab,0x6d,0x16,0x15, +0xb4,0xe5,0x03,0x7d,0x2c,0x7e,0x82,0xe7,0x48,0x69,0x5d,0x71, +0x73,0x61,0x8b,0x4e,0x1e,0x7f,0xca,0xc8,0x51,0xd3,0xd1,0x84, +0x13,0x4b,0xb5,0xe5,0xfb,0x45,0x5b,0x74,0x94,0xca,0xa4,0x82, +0x36,0xd3,0x9e,0x9d,0xd9,0xa2,0x2a,0x98,0x02,0xdf,0xc7,0x8a, +0x8f,0x9a,0x88,0xcf,0x75,0x8f,0x06,0xaf,0x6b,0xfa,0x9e,0x7c, +0xa1,0x4b,0xa1,0x75,0x8e,0x3d,0x07,0xb9,0x78,0x90,0x88,0xf3, +0xf0,0xd5,0x8d,0x27,0xf0,0x2d,0x73,0xa2,0x97,0x60,0x3e,0xac, +0x86,0x7c,0x8a,0x65,0x61,0x70,0x97,0xc0,0xdc,0x17,0x4d,0x6f, +0xaf,0xc0,0x5e,0x8e,0x66,0x84,0x04,0x5c,0x24,0xbd,0xee,0x83, +0x99,0x4c,0x7d,0x96,0xb4,0x30,0x37,0x06,0x3a,0x7a,0xc4,0x9d, +0x3f,0xab,0xad,0x14,0x57,0xe8,0xc2,0xa7,0xec,0x05,0x5c,0xe1, +0xba,0x03,0xf9,0xf5,0x5c,0x2c,0xe4,0x12,0xe7,0x63,0xe6,0x5a, +0xdb,0xf4,0x6b,0x2d,0xf8,0xe7,0xfd,0x9d,0xb7,0xca,0xef,0x72, +0x82,0x7d,0x38,0xb9,0xa5,0x73,0xf3,0x70,0xe7,0xde,0x26,0x19, +0xaf,0xff,0xf4,0xd0,0x5d,0x8d,0x4e,0x0e,0x8e,0x8b,0x7b,0x49, +0x9f,0xb8,0xed,0x3b,0xb5,0x0d,0xe2,0x32,0x6d,0x61,0x1e,0xeb, +0xba,0x0c,0xa7,0x51,0xa6,0xa9,0x99,0x47,0x53,0x6f,0xe3,0x93, +0x77,0x03,0xf9,0xd4,0x4f,0x63,0x99,0x42,0x4a,0x41,0x14,0x35, +0xa1,0x7e,0x57,0xee,0x10,0x8f,0x17,0x06,0x70,0xee,0xa0,0xc3, +0x2b,0x9a,0xe3,0xe6,0x41,0x35,0x19,0x84,0x32,0x50,0x63,0xa2, +0x96,0x58,0xeb,0xcc,0xb5,0xad,0x90,0xa6,0xb8,0xb6,0xb7,0x3e, +0x96,0xa6,0x65,0xbe,0xc6,0xb9,0x8c,0x6e,0x9e,0x6f,0xaf,0xca, +0x6f,0x4c,0x6d,0x6a,0xfa,0x75,0xd5,0xdb,0xac,0x51,0x9a,0xc2, +0x96,0x75,0xac,0x67,0x58,0x6c,0xa1,0x2a,0xcc,0x04,0x1b,0x2c, +0x1b,0x84,0xaf,0xf0,0x14,0xdb,0x50,0x5e,0x7d,0xbd,0x40,0xc6, +0xd5,0x89,0x2c,0x9b,0x99,0x93,0x91,0x93,0x96,0xab,0x95,0xc1, +0xef,0x5f,0xb6,0x6a,0x27,0x6e,0xdc,0x53,0x6c,0xc8,0xe7,0x25, +0xe5,0x26,0xe5,0x24,0x71,0x42,0x31,0xa8,0x10,0x77,0x67,0x5b, +0x17,0x4b,0xca,0x2a,0xff,0x60,0x9a,0x4b,0x6b,0xcb,0xab,0x28, +0xdc,0x0b,0x62,0x05,0x6d,0xfd,0xd6,0x44,0xf6,0x07,0xb5,0x75, +0x6c,0xa8,0xb8,0x54,0x5b,0x50,0x66,0x6d,0x37,0xe1,0xc7,0x7a, +0x78,0xce,0x30,0x8f,0x46,0x7f,0xfd,0x67,0x30,0xaa,0x2f,0x1f, +0xa6,0x8c,0x74,0x61,0x0a,0x4c,0xd5,0x86,0xba,0x83,0x39,0x34, +0xf6,0x83,0x3b,0x50,0xa5,0xdb,0xf2,0x1b,0x4e,0x71,0x48,0xb0, +0x24,0xa0,0xde,0x03,0x13,0x1e,0x3f,0x79,0xcb,0xc1,0x68,0xe6, +0xf9,0x52,0x98,0x7c,0x10,0x8e,0x69,0xe4,0xd3,0xe8,0x58,0xd3, +0xb6,0xb8,0x6b,0xd7,0xe7,0x1c,0x3c,0xea,0x12,0x5d,0x99,0xf4, +0xa2,0xd4,0xe2,0xe4,0x52,0xcd,0x24,0xaa,0x88,0x03,0x5c,0x7d, +0xdc,0x39,0x1c,0xd6,0x87,0x07,0xcc,0x91,0x5d,0x4b,0x75,0x71, +0x9b,0x31,0xcd,0xcf,0x06,0x44,0xfe,0xb2,0x5b,0x5c,0xfa,0x06, +0x2e,0x76,0xe1,0x45,0x69,0xfe,0x9c,0xa7,0x3e,0x78,0x2e,0x12, +0x67,0x32,0xf2,0x4f,0x31,0x9a,0xf4,0x88,0x13,0x7f,0x56,0x5f, +0xf9,0x61,0x4e,0xdd,0x84,0xff,0x4c,0x4d,0x99,0x40,0xf9,0xee, +0x05,0xf9,0x59,0x02,0x76,0x97,0x20,0x3a,0x0d,0xf6,0x54,0x79, +0xb6,0xf3,0x78,0xdc,0x11,0xa3,0xcf,0xa1,0xeb,0x45,0xaf,0x4d, +0xc6,0x6b,0x77,0x1f,0x68,0xb2,0xe1,0x3f,0xbb,0xdd,0xf6,0x4d, +0xe9,0x97,0x9c,0x70,0xc9,0x99,0x74,0xea,0xf4,0x1c,0xac,0x54, +0xeb,0x29,0xe3,0xed,0x6e,0x19,0xdc,0xd1,0xeb,0xe1,0xf0,0x14, +0xce,0x26,0xfe,0x75,0xa7,0x5a,0x4f,0x57,0x69,0x7b,0xf3,0xf9, +0xce,0x05,0x86,0x19,0x96,0x9c,0xb0,0x87,0x4a,0xff,0x3e,0x71, +0xd7,0x55,0xf6,0x77,0x16,0xc6,0xc4,0xc1,0xe8,0x84,0xdf,0x93, +0x32,0xce,0xa6,0x9f,0x4d,0x3f,0xdd,0x52,0xc5,0x1b,0xdf,0xd5, +0xbf,0xa9,0xde,0x67,0xe1,0xc2,0x17,0x78,0xe5,0x7b,0xe5,0x7b, +0xae,0x0e,0x9b,0x77,0x1e,0xc7,0x44,0x3c,0xec,0x79,0x74,0x67, +0xe0,0x86,0x91,0x8c,0x37,0xd6,0x3e,0xa6,0xb1,0x5f,0xd7,0xb5, +0xc8,0xb9,0xd0,0xb9,0xa0,0xa6,0xa2,0xb2,0xaa,0xb6,0xde,0xa8, +0x92,0x77,0xb1,0xb5,0xb7,0xb7,0x72,0xd2,0xac,0xe5,0x6d,0xac, +0x1e,0x9b,0xde,0xb4,0xb8,0x61,0xa4,0xe4,0xe6,0x3d,0x2f,0x12, +0x47,0x45,0x2f,0xba,0xa0,0x14,0xaf,0x03,0x93,0xaf,0xc0,0x8c, +0x18,0x20,0x71,0x4a,0xcb,0xd8,0x28,0x71,0x95,0xb6,0xa0,0xca, +0xda,0xee,0xc4,0x8f,0x4d,0xf1,0x9c,0x65,0x0e,0xc5,0xc1,0xba, +0x01,0x18,0xdb,0x91,0x0f,0xe3,0x47,0x2c,0x30,0x1e,0xa6,0x1b, +0x42,0xad,0x66,0x16,0x0d,0xe3,0x90,0x06,0x9c,0xd3,0x62,0xf9, +0x94,0x53,0x7c,0x0b,0x32,0x72,0xb7,0xaf,0x74,0x30,0xf6,0x07, +0xee,0x2d,0xea,0xf7,0x09,0x65,0xda,0xb8,0x02,0xd7,0xc3,0xc7, +0xda,0x78,0x04,0x4e,0x6e,0xc3,0x0c,0xbd,0xdf,0x99,0xc8,0x03, +0xde,0xb6,0xc7,0x74,0x38,0x61,0xca,0x1b,0xa2,0x2b,0x84,0xf5, +0xe0,0x29,0x30,0x82,0x88,0x5e,0x8c,0x80,0x35,0x9a,0xb8,0x06, +0x03,0x74,0x20,0x00,0x8d,0x58,0x68,0xc4,0x34,0xda,0xed,0x4d, +0x30,0x46,0x0d,0xc7,0x88,0x8b,0x24,0x4f,0x70,0xdc,0x81,0x1f, +0x1b,0x60,0xb8,0x69,0xae,0x16,0x0f,0xd5,0x37,0x60,0x74,0x77, +0x3e,0x8c,0x19,0x69,0xc7,0x18,0xf8,0x58,0x0f,0xae,0xab,0x65, +0xd3,0x76,0x84,0xb5,0xa0,0x4a,0xa7,0xed,0x17,0x12,0x43,0x91, +0x5b,0x90,0x76,0xf1,0x14,0x9b,0x91,0x9b,0x96,0x9f,0x5a,0xa0, +0x9d,0xc4,0xfb,0x9d,0xf4,0xf5,0x3c,0x7b,0x9a,0x43,0x34,0x82, +0x5e,0xe6,0xb0,0xc1,0x0a,0x7b,0x5c,0xed,0x9a,0x6d,0xc4,0xc3, +0x11,0x19,0x4c,0xe8,0xfd,0xea,0x0b,0x8e,0x06,0xe1,0x37,0xfb, +0x60,0x92,0x09,0x1c,0xb1,0xca,0x6a,0xe3,0x71,0x71,0xc5,0xf2, +0xca,0x3d,0xcd,0x1c,0x1c,0xc5,0x8d,0x44,0xd3,0xfc,0xb8,0xed, +0x21,0x07,0x0e,0x17,0x7d,0x01,0x31,0xed,0x18,0xf3,0x4c,0x73, +0x3b,0xe6,0x19,0x41,0xde,0x0e,0x91,0x31,0x10,0xec,0x18,0x9c, +0xa7,0x81,0x1b,0x8c,0xf1,0xb0,0x65,0x96,0x21,0x3f,0x94,0x3e, +0x98,0x31,0x90,0xc5,0x61,0xdb,0x50,0x9d,0x60,0x69,0x3d,0x04, +0x2f,0xd9,0xcc,0x90,0xf4,0x73,0x49,0xa1,0xb5,0x75,0xfc,0xc9, +0xfc,0xbd,0xed,0x46,0x45,0x1c,0xa8,0x75,0xa2,0x25,0xd3,0x5c, +0xdc,0x50,0x5a,0x47,0xc5,0xf4,0x06,0x3c,0x42,0x0a,0x03,0x64, +0x67,0x2a,0xce,0x72,0x54,0x77,0x3c,0x29,0xf9,0xfc,0xda,0x67, +0x55,0x1c,0x4d,0x9b,0xa2,0x16,0x7a,0x93,0xc7,0x82,0xe5,0x6e, +0x56,0xb4,0x34,0x22,0x82,0xe5,0x76,0xd1,0x92,0x66,0x4b,0x13, +0x39,0x47,0x93,0x68,0xe7,0xe6,0xee,0xdd,0x4f,0x28,0x9e,0xeb, +0xc3,0x67,0xcc,0xfd,0x83,0xdf,0x68,0xc0,0x58,0x43,0x6e,0x58, +0x19,0x7c,0xc8,0xf1,0x23,0xab,0x4e,0x2c,0x33,0x2b,0x33,0xe6, +0x7f,0x6f,0xfb,0xf5,0xd3,0x7b,0x0f,0x38,0xe1,0xfd,0xf0,0x47, +0xa4,0x53,0xdc,0x79,0x99,0x1d,0x82,0xaf,0xe1,0x37,0x4c,0x1d, +0x04,0xa5,0x16,0xd1,0xc2,0x14,0x3e,0xd6,0xc0,0x18,0xfc,0x0d, +0x3e,0x53,0x67,0x2f,0x88,0x2b,0x0d,0x84,0x39,0xac,0xcd,0x11, +0xfc,0xd8,0x12,0xcf,0x39,0x51,0xda,0x02,0xb5,0xad,0xc0,0x34, +0x17,0xfc,0x49,0x47,0xb6,0x68,0x1e,0xcc,0x34,0x83,0x1a,0x93, +0x4c,0x9a,0xe6,0xce,0x55,0xe2,0x9c,0x06,0x8b,0x3b,0xdc,0x65, +0x21,0x97,0x68,0xac,0x1c,0x64,0xf5,0x71,0x14,0x09,0xb5,0xb3, +0x72,0x5b,0x7c,0x3a,0x87,0x12,0xe1,0xc9,0xc5,0x5d,0x2d,0x89, +0x37,0xb8,0x5f,0x35,0x18,0xeb,0x2c,0xff,0x56,0x15,0xe0,0x98, +0xaa,0x94,0x94,0x12,0xd5,0x2a,0xd6,0x34,0x49,0xc1,0x6c,0x21, +0x7b,0xe6,0x7c,0x6c,0x8e,0x6a,0x3b,0x58,0xe2,0x5a,0xf1,0x05, +0xac,0x65,0x85,0x17,0x68,0x4e,0x0c,0xc5,0x17,0x1d,0xac,0xa2, +0xbc,0x4f,0x6e,0x4a,0x44,0xcb,0x21,0x21,0x51,0x9c,0xca,0xa6, +0xe5,0xa5,0x14,0xc5,0xe7,0x1f,0x4d,0xe0,0xc3,0x3d,0x83,0xdc, +0xfd,0x3d,0x39,0x1c,0x14,0x13,0x69,0x44,0x33,0xf0,0x12,0x1f, +0x92,0xd8,0x2b,0x97,0x62,0xa3,0x55,0xc0,0x19,0x15,0x8a,0x5a, +0xd1,0xea,0xaf,0xa0,0xb8,0xd0,0xe8,0xf0,0x10,0xa5,0xf0,0x10, +0x85,0xc8,0x5a,0x88,0x6e,0xc3,0x68,0x50,0x60,0xee,0xc7,0x7c, +0x16,0xff,0x59,0xd2,0xa9,0x26,0x1e,0xe7,0x9c,0xc1,0xb5,0x11, +0xb8,0x33,0x3a,0xd1,0x94,0xbf,0x73,0xe9,0xce,0xe5,0x3b,0x57, +0x38,0xca,0x37,0x02,0x8d,0xc1,0x82,0x75,0xb6,0x3a,0x61,0x8b, +0x93,0xcc,0x0a,0x29,0xb4,0xcd,0xec,0xbc,0xd7,0x9c,0x7a,0x9f, +0xb2,0x9a,0x15,0x7d,0xd2,0x0a,0x66,0x47,0x52,0x54,0x94,0x5b, +0x9a,0x5d,0x61,0x5e,0xc8,0xfb,0xbb,0x9c,0x71,0x3f,0xe5,0xc1, +0x61,0x73,0x13,0xc9,0x3d,0x9b,0xeb,0x91,0x76,0xa6,0x21,0x9f, +0x0f,0x2c,0x38,0x5b,0xec,0x9d,0xc3,0x09,0x6f,0x45,0x73,0x1a, +0xff,0xdb,0x2f,0xb3,0x03,0x6a,0x9a,0x74,0xf8,0x96,0xeb,0xd2, +0xe1,0xb3,0xdb,0x8d,0xd3,0x8c,0x31,0xd4,0x6a,0x24,0x42,0xfa, +0x61,0x6c,0x67,0x3e,0x28,0x8c,0x78,0xa6,0x02,0x4c,0x37,0x80, +0x5a,0x2d,0x29,0x42,0x42,0xeb,0x71,0x4e,0x9b,0xd5,0x63,0x4a, +0x00,0x9f,0xc9,0xfd,0x88,0xbb,0xab,0x9d,0x9b,0x91,0x97,0x67, +0xf9,0x99,0x7c,0xcf,0x3c,0xab,0x53,0x7c,0xe1,0x99,0xbc,0xd3, +0x79,0x1e,0xa7,0xc3,0xbc,0xc2,0x3c,0xce,0x7b,0x95,0x9f,0xcd, +0x3f,0x95,0x67,0x79,0x86,0xcf,0x3b,0x93,0xe3,0x9d,0x7d,0xca, +0x3a,0xd4,0xec,0xbc,0x51,0x64,0xa6,0x31,0x0f,0xe7,0xf3,0x60, +0xef,0x57,0x8f,0x81,0xe3,0xea,0x30,0x85,0x4d,0x4d,0x4e,0x49, +0x49,0x4e,0x35,0xce,0xe6,0xf5,0x74,0xb7,0x59,0xe3,0xc4,0x93, +0xf9,0x66,0xfc,0xa7,0x19,0x83,0x79,0x1d,0x65,0x9c,0x78,0x56, +0x3c,0x4b,0x3e,0xbd,0x97,0xd3,0x7f,0x15,0xc6,0x72,0xef,0x30, +0xb2,0x4f,0xf8,0x5c,0x1b,0x57,0xe1,0x4a,0x98,0xa9,0x8b,0xc7, +0xc0,0x6e,0x3b,0x5e,0x31,0xfc,0x9e,0x89,0x5e,0xe1,0x6f,0xac, +0xa1,0xc9,0xc9,0x15,0x9d,0xc9,0x9f,0x4c,0x63,0xba,0xb4,0xff, +0xd4,0xcc,0x17,0x6d,0xab,0x5f,0xeb,0x2c,0x15,0x97,0x19,0x0b, +0xcb,0xa8,0x6c,0xfc,0x98,0x45,0xfd,0x2f,0x49,0xe3,0xc9,0x8a, +0x93,0x32,0xeb,0x1a,0x19,0xef,0x58,0xe3,0x78,0xcd,0xa2,0x94, +0x13,0xb6,0xe2,0x35,0xd2,0x2d,0x6e,0xfc,0xea,0xd8,0x56,0x71, +0xa1,0x9e,0x14,0x94,0xbb,0x70,0xaa,0x29,0x9e,0xb7,0xcd,0xa1, +0x9e,0x23,0xeb,0x84,0x71,0xad,0xf9,0x94,0xbe,0x48,0x5d,0x1f, +0x07,0xc4,0x04,0xaa,0xf4,0xa5,0xae,0x87,0xd7,0x50,0x70,0xb0, +0x7b,0x32,0x32,0xcf,0xa7,0x8e,0xe0,0x8a,0x86,0x25,0x8d,0xbb, +0x07,0xa9,0xcc,0xea,0x14,0x1d,0x99,0xac,0xe2,0xf4,0x92,0xb4, +0x6b,0x5a,0x49,0xbc,0xaf,0x83,0x8f,0x8b,0xf4,0x8e,0x41,0x34, +0x80,0x9b,0xcc,0xe1,0xe3,0xcb,0x4d,0x71,0xbd,0x55,0xbe,0x11, +0x9f,0x1f,0x9b,0x17,0x97,0x1b,0xc7,0x89,0xda,0xec,0x86,0xb2, +0xd3,0x5f,0xa8,0xc8,0x0f,0xf5,0x0e,0x6f,0x66,0xcc,0x02,0xfe, +0x17,0x6d,0x6f,0x01,0x5d,0xd5,0xb5,0xfd,0x8d,0x02,0x25,0x7b, +0x6f,0x8a,0x14,0x0a,0x0b,0x76,0x42,0x9b,0x40,0x82,0x4b,0x0b, +0x14,0x09,0x16,0x3c,0xee,0xee,0x9e,0x13,0x77,0x21,0x09,0x16, +0x08,0x12,0x28,0x16,0x77,0x77,0x77,0x77,0x25,0x58,0x70,0xa8, +0x00,0x6d,0x69,0xa1,0x05,0x5a,0xda,0xde,0xca,0xdc,0xa7,0x73, +0xe7,0xde,0xb7,0x76,0xe8,0xbd,0xf7,0xfb,0xfe,0xdf,0x78,0x6f, +0xbc,0xf1,0xc6,0x78,0x83,0x8e,0x73,0x76,0x4f,0x72,0xb2,0xd7, +0x9a,0xfa,0xfb,0xcd,0xb5,0xf6,0x9a,0xa9,0x1d,0x2a,0x82,0xbb, +0x7c,0x06,0x5b,0x73,0xb4,0xee,0x58,0xe3,0x31,0x6e,0x7c,0xf6, +0x77,0x64,0xb0,0xaa,0xad,0xae,0xae,0x99,0x83,0xa9,0x4c,0x8b, +0x73,0x8f,0xe7,0x55,0x1f,0x8a,0xba,0x56,0x13,0xd4,0x16,0x76, +0x83,0x36,0x2b,0x2a,0xa0,0x22,0xf9,0x06,0xae,0x6d,0x62,0x51, +0x1f,0x5b,0x09,0xd8,0x61,0x2d,0xda,0xb1,0xf0,0x42,0xea,0x88, +0x6a,0x07,0xcd,0x60,0xc7,0x8a,0xaa,0xf6,0x44,0x15,0xf7,0xfd, +0x4e,0x3f,0x94,0xd6,0x8b,0xb5,0x55,0x29,0x32,0xd8,0x21,0x5f, +0x4e,0xd0,0x90,0x49,0xbf,0x9e,0x36,0x9a,0x38,0xa0,0x1f,0xcf, +0xc7,0x5a,0x1c,0xd5,0x3b,0x4c,0x29,0x2b,0x31,0x02,0x96,0x09, +0x56,0xf3,0x53,0xf5,0xde,0x36,0xe4,0x39,0x20,0x1b,0x70,0xb5, +0xdb,0xad,0xaf,0xb9,0x45,0xa7,0xc1,0x92,0xff,0xe6,0xce,0xd8, +0xfd,0xde,0xa7,0xed,0x5e,0x1d,0xee,0x9d,0xce,0x75,0xbd,0xbc, +0x4d,0x9b,0x6d,0xa3,0x7d,0xed,0x30,0xbc,0x53,0x0d,0x24,0x03, +0x36,0x51,0x64,0x26,0x3d,0xe9,0x5a,0x01,0x6e,0xc3,0xa2,0x87, +0x09,0x58,0x62,0x05,0xfa,0x1b,0x82,0xbf,0xe8,0x7e,0x5d,0x70, +0x87,0xb0,0x51,0x76,0xbc,0x9b,0x32,0xaf,0xb2,0xc7,0xc5,0x2f, +0xf2,0x5f,0x72,0xa0,0xc2,0x1c,0x45,0xc5,0x00,0x64,0xac,0x96, +0xb9,0x94,0xbb,0x95,0xb8,0x15,0x71,0xb3,0x04,0x03,0x69,0x3c, +0x36,0x4c,0xe6,0xb5,0xb4,0xd1,0xa4,0x01,0xbd,0x04,0xfe,0x04, +0x1d,0x4f,0x34,0x1d,0xcf,0x07,0x86,0x30,0x93,0x09,0x52,0xf3, +0x51,0xf5,0xda,0x3e,0xe2,0x39,0x2c,0x1b,0x71,0xb5,0xde,0xad, +0xa5,0xf5,0x89,0x34,0x9e,0x17,0x77,0xee,0xdd,0x1f,0x7c,0xda, +0xe9,0xd9,0xe5,0xd1,0x2d,0x8d,0xc7,0xaa,0xcd,0xa6,0xc1,0xb6, +0xf6,0x0a,0x4c,0xa9,0x85,0x79,0x99,0xb0,0x99,0xc6,0xa2,0x31, +0x92,0xd5,0x91,0xde,0x95,0xdc,0x65,0x94,0xc5,0x07,0x22,0x6f, +0x89,0x64,0xcf,0xd2,0x4e,0x27,0xbe,0xa1,0xbf,0xe6,0x6a,0xe9, +0x18,0x07,0xa9,0xc6,0x0c,0xce,0x3f,0x89,0xb6,0x91,0x38,0x4b, +0x79,0xdf,0xf1,0x30,0x4f,0xbd,0x85,0x14,0x05,0x64,0x19,0x28, +0xc0,0x7b,0xcc,0x2f,0x6d,0x7d,0xc0,0x64,0xa8,0x64,0xc3,0xbc, +0x24,0xb0,0x05,0xa2,0x04,0xd3,0xd9,0xf1,0x2c,0xfc,0x99,0x94, +0x7f,0x5e,0xf2,0x7d,0x11,0x1d,0xfe,0x0a,0xe6,0x08,0x2a,0xf9, +0xa3,0x82,0xd9,0x32,0xa7,0x0a,0xe7,0x12,0xe7,0x62,0x4e,0x18, +0xc7,0xa9,0xc4,0xe3,0xa9,0xf1,0x1f,0x16,0x0f,0xac,0x65,0x7c, +0xef,0xde,0x2b,0x8b,0xeb,0xd4,0x27,0xc2,0xf4,0x4c,0x82,0xb7, +0x98,0xec,0xeb,0x19,0x37,0x53,0xaf,0x99,0x26,0xf3,0xc7,0xf4, +0x0e,0x69,0x1e,0x3c,0xc0,0xe1,0x6e,0x53,0xf8,0x98,0x09,0x58, +0xe5,0xb9,0xda,0x55,0xfd,0x86,0xc3,0x55,0xfb,0x11,0x5b,0xc3, +0xbd,0xbb,0x0c,0xd7,0x58,0x54,0xdb,0xf0,0x6f,0x86,0x1e,0xdf, +0xb8,0xfe,0xe8,0x9e,0xc1,0x2d,0xdd,0xb1,0x03,0x2d,0xad,0xbc, +0xf6,0xdd,0xbd,0xb7,0xf7,0x8e,0x3e,0x82,0xc9,0xed,0xa0,0x98, +0x07,0x3b,0xb8,0x6f,0x98,0xf1,0xee,0x14,0x02,0x7e,0x52,0x11, +0xee,0x20,0x7e,0x80,0x69,0xc6,0x3f,0xb0,0x71,0xb8,0xed,0xe0, +0x46,0xad,0x15,0x7d,0x34,0xfb,0xc2,0xd4,0xc2,0x9f,0x2f,0x82, +0x0e,0xf7,0xe7,0xdf,0x45,0xb8,0x4f,0x19,0x61,0x8a,0x38,0x87, +0x58,0x35,0xdb,0x34,0x38,0x54,0x56,0x3f,0xa8,0xfc,0xae,0x84, +0x0e,0xde,0x90,0x89,0xc4,0x95,0xce,0x38,0x53,0x73,0x39,0x45, +0x45,0x09,0xf2,0x6f,0x88,0x3d,0x5a,0x6b,0xa2,0x32,0x4e,0x41, +0xae,0xde,0x82,0x2f,0x2f,0xaf,0xa8,0x2b,0x6b,0xe1,0xc4,0xfc, +0x51,0xf9,0x74,0xb6,0xe1,0xf3,0xaa,0xe7,0x05,0xbf,0x72,0x75, +0x01,0xc4,0x44,0x68,0x1e,0x66,0x7b,0xb1,0x9c,0x8c,0x8c,0xaf, +0x36,0x66,0xe5,0xdb,0xc4,0x3a,0xb2,0xa9,0x71,0x63,0xdd,0x27, +0x55,0xb7,0x47,0xda,0xee,0x94,0x52,0x58,0xfe,0xce,0xa0,0xb8, +0x94,0xc9,0x6f,0xca,0x69,0xca,0x6c,0x34,0xca,0xe1,0x0f,0x39, +0x85,0xdb,0x05,0xdb,0x72,0x28,0x33,0x03,0x4d,0xc6,0xdf,0xc6, +0xdb,0xc6,0xc3,0xfe,0x8b,0x90,0x07,0xc1,0xf7,0x82,0x77,0x38, +0xab,0xf9,0xe1,0x07,0x11,0x79,0x94,0x9f,0x6d,0x2c,0x82,0xe9, +0xcd,0xdf,0x0e,0xfd,0xec,0xfe,0xd2,0xf5,0x85,0x23,0x27,0x1e, +0x86,0x64,0x52,0x5a,0x5b,0xd2,0x58,0xd8,0xc2,0x41,0x12,0x13, +0xb4,0xd7,0xc9,0x40,0xd3,0x5a,0xa7,0x50,0x37,0x5f,0x2f,0xef, +0xff,0xed,0x30,0xe5,0x93,0x10,0x69,0xf4,0x8a,0x66,0x1d,0x0f, +0xa7,0x34,0xab,0xfc,0x2e,0x0c,0x0e,0x62,0xdd,0xcf,0x06,0xcb, +0xb1,0x18,0x77,0xb2,0xbb,0x4b,0x82,0x5f,0x28,0x0b,0xa9,0xe2, +0x21,0xa2,0xde,0xb8,0xb9,0x4e,0xbd,0xf2,0xea,0x40,0xd3,0x58, +0xf1,0xe7,0x1c,0x4c,0x1f,0x14,0x67,0x33,0x99,0xe5,0xe9,0x15, +0xa9,0x65,0x66,0x79,0xfc,0x11,0xef,0x48,0x8f,0x70,0x77,0x0e, +0x83,0xcc,0xa8,0x94,0xfc,0x6c,0x3d,0x6d,0x3c,0x1d,0x1f,0x86, +0xde,0x0e,0xbb,0x19,0xaa,0xe1,0xba,0xcc,0x1f,0x95,0x0e,0xe6, +0xd3,0x61,0x6f,0x28,0x80,0x69,0x8d,0xcf,0x86,0x7e,0xf4,0x78, +0xee,0xfe,0xdc,0x89,0x13,0xdd,0xe0,0x02,0x29,0xae,0x2a,0x69, +0x2c,0x6a,0xe2,0xe0,0x20,0x13,0x78,0xc0,0xcd,0xc4,0xd0,0xde, +0x38,0xdf,0x38,0xd7,0x24,0x87,0x0e,0xbb,0x0e,0x6c,0x48,0x2f, +0x30,0xe5,0xa0,0x98,0x4a,0x89,0x72,0x0b,0x6e,0x61,0x53,0x6f, +0xa4,0x5c,0x4d,0x1c,0x32,0xbc,0xcc,0x9f,0x34,0x8f,0xd1,0x39, +0x4a,0xcd,0x9b,0x31,0xfa,0x95,0x09,0x5f,0x12,0xa4,0xea,0xa7, +0xde,0xe3,0xd1,0xe5,0xd1,0xe9,0xe2,0xa2,0x61,0xb6,0x7f,0xb7, +0x4e,0xbd,0x35,0xff,0xf0,0xf6,0x95,0xfb,0x6d,0x4f,0xaa,0xfd, +0xaa,0x7c,0xaa,0x3d,0xeb,0xba,0x78,0x59,0x83,0xac,0xd6,0xab, +0x8a,0x83,0x10,0x28,0x27,0xb0,0x7c,0x18,0x97,0xc3,0xa0,0xe1, +0xf8,0x35,0xc6,0x3f,0xd6,0xff,0x64,0xe0,0xa9,0x74,0x7d,0xfe, +0x75,0x3e,0x30,0xb5,0x5f,0x36,0xc6,0x0e,0xf3,0x2e,0x07,0xad, +0xa2,0x2c,0xa3,0x39,0xe8,0x0c,0x25,0x5e,0xc7,0x93,0xab,0x54, +0xe0,0x0d,0xfb,0xd9,0xed,0x3b,0xdf,0x0c,0x3c,0x73,0x6a,0xe2, +0x9d,0xf6,0x58,0x6a,0xd1,0xc8,0x08,0x68,0x38,0xde,0xc0,0xea, +0x15,0x05,0x8f,0x29,0x53,0x1c,0xd9,0x94,0x95,0xdd,0xa8,0x02, +0x71,0xac,0x65,0x8e,0x02,0x66,0xb0,0xe3,0x89,0x70,0x8b,0x14, +0x3d,0x29,0xf8,0x21,0x8f,0xda,0x0a,0xc7,0xc4,0xe0,0x82,0x50, +0x9c,0xe6,0xa0,0xe6,0x55,0xee,0x5d,0xe2,0x55,0x4c,0xfd,0xf4, +0x13,0x60,0x88,0x67,0xb5,0x67,0xa5,0x57,0xf9,0x10,0x4c,0xad, +0x86,0x05,0xe9,0xd4,0xd5,0x5a,0x51,0x9b,0x4d,0xbb,0x9e,0x76, +0x25,0x71,0x70,0x22,0x90,0x1c,0x9b,0x08,0x24,0x73,0x8c,0x68, +0xaa,0x0f,0xa5,0x81,0xc4,0x67,0xdb,0xa0,0xac,0xdf,0xa3,0xd7, +0xd5,0x7e,0xb7,0xa1,0xd6,0x36,0xdd,0x7a,0x4b,0xfe,0xc9,0xed, +0x9b,0xf7,0xba,0x9f,0x54,0x07,0x54,0xfb,0x57,0xf9,0x70,0xff, +0x90,0x1f,0x21,0xe3,0x8c,0xa0,0x2e,0x67,0xa4,0xa3,0x55,0x4b, +0xa9,0x71,0x43,0x07,0xfa,0x49,0xa7,0x66,0xda,0x93,0xd2,0xc7, +0x45,0x13,0xe1,0x42,0x49,0x0a,0x17,0x81,0xc8,0x5a,0x2f,0x75, +0x2f,0x77,0x2f,0x75,0xa7,0xfe,0xb6,0xe4,0x63,0x02,0x47,0xe8, +0x2f,0x1e,0x61,0x45,0x5d,0x6c,0x24,0x42,0xef,0x15,0xb1,0x97, +0x52,0x10,0x03,0xf9,0xd7,0xe4,0xa4,0xe5,0x71,0xbd,0xa3,0xda, +0x1c,0x2a,0x18,0xfd,0xc2,0x84,0xab,0x05,0x2e,0xf6,0xdf,0xd6, +0xe9,0xd6,0xee,0xd2,0xee,0xe0,0xba,0xdf,0x52,0xe7,0x80,0x21, +0x95,0xec,0x9d,0x6b,0x03,0x63,0xad,0x0f,0x4b,0xfd,0x4b,0x7d, +0xcb,0xbc,0x1a,0xbb,0x79,0x9f,0x7a,0x9a,0x06,0x2a,0x87,0xe0, +0xdd,0x0a,0xf8,0x20,0x0d,0x76,0x52,0x35,0x6d,0x62,0x53,0xaf, +0x27,0x5f,0x49,0x1c,0xe0,0xe4,0xd6,0x28,0x10,0x2d,0xe6,0xe2, +0x77,0x17,0x9e,0x7f,0xae,0x74,0x4d,0x5c,0xc7,0x9e,0x5d,0x75, +0x12,0xdf,0x39,0x8e,0x53,0xb9,0xbd,0x66,0xb7,0x98,0x63,0x38, +0xfd,0x30,0xbe,0x1b,0xbd,0x82,0x13,0xe6,0x32,0xe7,0x4e,0x9c, +0x8d,0x3d,0x17,0xcb,0xd9,0xc7,0x46,0x86,0x9a,0x2f,0xc4,0x49, +0x4c,0x96,0x89,0xc2,0x1b,0xe6,0x49,0x7d,0xf9,0x67,0xe9,0x2a, +0x17,0xd3,0x2f,0x64,0x5e,0xc8,0xe2,0x9e,0x0e,0xee,0x62,0x92, +0x1e,0x27,0xfc,0x74,0xe9,0x17,0xee,0x0e,0x43,0xf1,0xfd,0x03, +0x12,0xc0,0xee,0x3a,0xbb,0x2d,0x6e,0x87,0x32,0x0e,0x31,0x89, +0x2f,0xe2,0x5f,0x5c,0x7a,0xca,0xf5,0x6e,0x25,0x6d,0xae,0x3d, +0x96,0x0d,0xb6,0x0d,0x8d,0xbc,0x47,0x87,0xe5,0x80,0x43,0x3d, +0x27,0x2e,0x12,0xdd,0x89,0x77,0x95,0x6f,0x85,0x6f,0x49,0xf1, +0x93,0x82,0x97,0x92,0x52,0x18,0x7a,0xe7,0x85,0xa1,0x38,0xdd, +0x66,0x11,0x07,0x17,0x3f,0x26,0x69,0x5f,0xa7,0xfe,0x98,0xf4, +0x13,0x0d,0xbf,0xcc,0x69,0xb5,0xd8,0x95,0x27,0x76,0x72,0xe6, +0xdf,0x12,0xaf,0x36,0xc3,0x6b,0x4e,0x75,0x1e,0xee,0x7c,0xbb, +0xdb,0x80,0x71,0x9d,0x1d,0x55,0xdb,0xe2,0x3b,0xc4,0xa9,0xc3, +0xa5,0xc5,0xbd,0xbe,0x03,0xb8,0x62,0x50,0x4a,0xa6,0x01,0xbb, +0x19,0x57,0xb0,0x29,0x63,0xc9,0xd7,0x12,0x46,0x8c,0x2f,0xf1, +0x27,0x4d,0x4f,0x68,0x1f,0xd3,0xe4,0x96,0x18,0xff,0xc0,0x1c, +0x5c,0x12,0xb2,0x38,0x60,0x4b,0x87,0xac,0xdd,0xbd,0xcd,0xd5, +0x63,0xbb,0xd5,0x5e,0x4d,0xed,0x3a,0x1b,0xfe,0xce,0x9d,0xfe, +0x87,0xcd,0x5f,0xd5,0xc9,0xea,0xdd,0x1b,0x9c,0x39,0x21,0x17, +0x8e,0x93,0x73,0x41,0x71,0xfe,0xa7,0xa2,0xb9,0x43,0xa7,0x4f, +0x9d,0x8a,0x58,0xa8,0x27,0x6d,0x39,0x1e,0x66,0x3a,0x72,0x73, +0xcb,0x92,0x54,0x92,0x4a,0xe2,0xab,0xce,0x3f,0xe7,0xb0,0xf8, +0x67,0x38,0x0b,0x0e,0x78,0xf6,0x1b,0xa8,0xeb,0xc7,0xba,0x27, +0xa6,0x5b,0x31,0xd1,0x02,0x12,0x37,0xe1,0x51,0x2b,0x38,0xba, +0x0a,0x43,0x98,0x53,0x06,0x87,0xf7,0x1c,0xd4,0xa4,0x91,0x98, +0x39,0x88,0xef,0x2c,0xfa,0x08,0xad,0x77,0x55,0x98,0xf2,0xb0, +0xfb,0x01,0xa8,0xfd,0x18,0x0f,0xf3,0x27,0xf6,0x1e,0xcc,0x81, +0x69,0x6b,0x61,0xcb,0xd6,0xca,0x61,0x1e,0x35,0xbf,0x5a,0xfb, +0x75,0x24,0x05,0xc5,0x62,0xcd,0x55,0x52,0xf8,0x34,0xef,0x87, +0xec,0x57,0xdc,0xaf,0xcc,0x71,0x24,0x07,0x71,0x9a,0xeb,0x62, +0xdf,0x32,0xbf,0x12,0xbf,0x22,0x4e,0x2e,0x83,0x93,0x64,0x15, +0x1a,0xfd,0xc8,0x9a,0xe2,0x4a,0xb2,0x1c,0xcd,0xd8,0xc4,0x9a, +0xf8,0xfa,0xcb,0x25,0x52,0x8d,0x57,0xa0,0xb4,0x75,0xcb,0x2b, +0xf8,0xa3,0x1f,0xff,0x78,0x2e,0x2c,0xee,0xc7,0xd3,0x4c,0x69, +0x65,0x7e,0x4d,0x46,0x85,0x69,0x1e,0x1f,0x25,0x0b,0x71,0xf1, +0x75,0xe3,0xb0,0x81,0xe9,0xcc,0x0d,0xad,0xf5,0x6b,0x8a,0xc8, +0x57,0xb4,0x0a,0x29,0xf7,0xce,0xf7,0xcb,0x09,0x50,0xc4,0x18, +0x0b,0x61,0xce,0x7a,0x7c,0x6e,0x01,0xcf,0xd7,0x88,0xcb,0x2d, +0x84,0x49,0x4c,0x84,0x5f,0x88,0x77,0xa0,0x37,0x87,0xcd,0x16, +0x70,0x8a,0x91,0xb9,0xb9,0xba,0x39,0xba,0x3f,0x88,0xfe,0x31, +0xfc,0x8f,0xe0,0xa5,0x9e,0x48,0x22,0x71,0xfb,0x89,0x4c,0x1a, +0x26,0xac,0x93,0x61,0x5d,0x39,0xcc,0x1c,0x86,0x69,0xfe,0x30, +0xc7,0x1b,0x58,0xaf,0xb2,0x5e,0x7e,0x51,0x05,0x4e,0x2a,0x5b, +0x56,0x7c,0xb3,0xa5,0x6f,0xa0,0xe1,0x36,0x07,0x3b,0xfb,0xc5, +0x6c,0xa6,0xb8,0xba,0xa0,0x2a,0xb7,0x92,0x13,0xac,0x19,0x3c, +0x89,0x6b,0x89,0xb3,0xbe,0xa5,0xdd,0x01,0xd9,0xba,0xfc,0xcd, +0x39,0xfb,0x33,0x2b,0x4a,0xcb,0x2a,0x4a,0x2b,0xa9,0xee,0xb4, +0x5e,0x11,0xc7,0x16,0xa7,0x06,0xe7,0xda,0x7e,0x98,0x5a,0x01, +0xf3,0xd3,0xa8,0xee,0x5a,0x70,0x37,0xf5,0xb8,0x54,0x9a,0xba, +0x0d,0x24,0x8f,0x8b,0xd1,0x3b,0x42,0x3d,0x6e,0x86,0xf1,0x9f, +0xd4,0xe1,0x02,0x16,0xfb,0x6e,0xeb,0x93,0xf5,0xca,0x7a,0xdc, +0x9c,0x76,0x19,0x6b,0xee,0xd0,0x69,0xb0,0xe2,0xbf,0xbc,0x7d, +0xed,0x7e,0xe7,0xd3,0x26,0xef,0x66,0x59,0xb3,0x2b,0x27,0x18, +0x09,0x8b,0x08,0x34,0xfd,0x3a,0x24,0x26,0x9b,0xc2,0x34,0x74, +0x60,0xfd,0x3f,0x0d,0x38,0x17,0xa8,0x2c,0x1d,0xf9,0xc0,0x53, +0x79,0x6e,0xf7,0x42,0x5e,0x15,0xdf,0x6d,0xa3,0xc0,0x97,0x03, +0xbe,0x01,0x56,0xa4,0x82,0x1e,0x07,0x7b,0x44,0x87,0x6b,0x82, +0x03,0xb0,0x23,0x0c,0xfe,0x32,0xff,0x7c,0xa5,0xb4,0xec,0x0e, +0x26,0xb0,0x13,0x9b,0xd8,0xf1,0x59,0x14,0x2c,0x97,0x3c,0x2e, +0xfc,0x5e,0x72,0xd4,0xd9,0xd4,0x34,0xf9,0x60,0x64,0xec,0x96, +0x78,0x94,0xcb,0x4a,0x3c,0x69,0x5e,0x87,0x4c,0xf0,0x22,0xd4, +0xe6,0x8a,0x80,0x4f,0x86,0x0d,0xd4,0xe6,0x96,0xb2,0x29,0xd7, +0x93,0xae,0x24,0x0c,0x52,0x9b,0x3b,0x65,0x79,0x42,0xef,0x98, +0x36,0xb7,0xd4,0xe4,0x7b,0xe6,0xa0,0x6a,0xc8,0xe2,0xc0,0xad, +0xed,0xb2,0x36,0x59,0xab,0xbb,0x6c,0xa7,0xf5,0x7e,0x2d,0x5d, +0x6a,0x73,0xb7,0x6f,0xf5,0xdd,0x6f,0x7a,0x52,0xe7,0x55,0xe7, +0x51,0xef,0x52,0xd7,0xc9,0x3b,0xb7,0xbb,0x36,0xb9,0xd7,0x71, +0x70,0x49,0x3e,0x8d,0x38,0xa0,0xa6,0x09,0xaa,0x6e,0xc1,0xa9, +0xd5,0x66,0x7c,0x79,0x53,0x49,0x7b,0x61,0x27,0x27,0x0e,0x0f, +0xcb,0xb7,0xbd,0x7d,0xc6,0xfd,0x0b,0x4e,0x20,0xe2,0x47,0xd2, +0xd3,0x80,0xcd,0x4c,0x5f,0x76,0x4f,0x41,0x7b,0xb1,0x7f,0x0f, +0xbf,0xc2,0x02,0xdf,0x95,0xe1,0xac,0x88,0x34,0x13,0xbe,0x33, +0xb1,0x2b,0xa5,0x4b,0xda,0x7c,0x83,0xbb,0x4d,0x60,0x37,0xbe, +0xc0,0xb5,0x46,0xc2,0xb4,0x2b,0xb8,0x91,0x62,0x26,0x2d,0x76, +0xfc,0x56,0x08,0x29,0x78,0x9a,0xff,0x32,0xeb,0x25,0xf7,0x33, +0x95,0xc7,0xbc,0x83,0xc8,0xb9,0xaa,0xf9,0x95,0xf8,0x17,0xfb, +0x4b,0x0d,0xfe,0x66,0xfc,0x48,0x3c,0x9a,0x64,0xf5,0x5e,0x35, +0x1d,0xc0,0x16,0x03,0x9f,0x02,0x1b,0xe9,0x9c,0x96,0xd3,0x80, +0x21,0xcd,0xc9,0xe8,0x3f,0x73,0x5a,0x62,0x4c,0xe7,0xa4,0x16, +0xb2,0x28,0x70,0x5b,0x87,0x34,0x27,0x37,0x0f,0x0d,0x9b,0xfd, +0x9a,0x6f,0xe7,0xd4,0x7f,0xbf,0xf1,0xcb,0x2a,0xdf,0x2a,0xef, +0x6a,0x0f,0x0e,0xb4,0x04,0x55,0x12,0xc9,0x5a,0x5b,0x68,0x5a, +0xe9,0x78,0x15,0xe8,0xf3,0x57,0xea,0x06,0x9b,0x5b,0x3b,0x8e, +0xa2,0xb9,0xd1,0x26,0x5c,0xbb,0x86,0xc2,0x01,0x30,0x00,0xf6, +0x16,0xbc,0x03,0x4d,0x4a,0x82,0xb2,0x09,0x0b,0xe5,0xe3,0x77, +0x88,0xfb,0x89,0x84,0x7a,0x15,0x78,0xc6,0xa6,0xc5,0x9f,0x4f, +0x3a,0xa1,0x0c,0x5b,0x50,0xbd,0xa1,0x03,0xb7,0xc2,0x96,0x63, +0xa9,0xb1,0x97,0x8f,0x1c,0x56,0x3c,0x7a,0x48,0xe1,0xb4,0xb0, +0xde,0x68,0xbc,0x81,0xd1,0xca,0x8f,0xb8,0xad,0x4c,0x35,0xd2, +0x92,0x25,0x35,0x11,0x59,0xcd,0x5a,0xe6,0x2a,0xe0,0x5e,0xf6, +0xb0,0xfc,0x0c,0xf1,0xd1,0xb4,0xdd,0x61,0xa2,0xdb,0xec,0xc6, +0x0f,0x5c,0x19,0xfe,0xbe,0xf6,0x0e,0x27,0xea,0xa3,0x31,0x09, +0xba,0xeb,0xf0,0xc4,0xf5,0xaa,0x8d,0x1f,0xdf,0xaa,0xdd,0xac, +0x51,0xb9,0x97,0xc3,0xa7,0xa8,0xf9,0xd6,0xcf,0x5e,0x72,0xbf, +0x48,0x72,0x88,0xa0,0x72,0x50,0xf5,0x2b,0xf5,0x2f,0xf1,0xa3, +0x72,0x80,0x6c,0xf0,0x26,0xed,0xc0,0xfe,0x47,0xad,0x6a,0xff, +0xbb,0x5a,0x63,0xb4,0xb9,0xe5,0x26,0xcf,0xa9,0x08,0x42,0x17, +0x05,0x6d,0x6b,0x97,0xb5,0xca,0x5a,0xdc,0x64,0x3b,0x6d,0xf6, +0x6b,0xeb,0xd4,0xd9,0xf2,0xb7,0x6e,0xf5,0x3e,0x68,0x7c,0x52, +0xe5,0x23,0x89,0xa0,0xb6,0x83,0xf7,0x68,0x96,0xd5,0x7b,0xd6, +0x70,0xf2,0xd9,0xe8,0x47,0xbc,0x4a,0x02,0x7b,0xc2,0x6f,0x0f, +0x7d,0x5d,0xf7,0xa2,0xe4,0x7b,0xeb,0x3c,0x3e,0x62,0x57,0xe0, +0x1e,0x37,0xcd,0xc8,0x27,0xc7,0x7e,0x3e,0x49,0x81,0x37,0xd8, +0xf4,0xa3,0x1d,0x73,0xb6,0xfd,0x5c,0x47,0x97,0x12,0xcc,0x37, +0xc3,0xf9,0xac,0xed,0x79,0xfb,0x0b,0x0e,0xca,0xb8,0x8a,0x66, +0xeb,0xfa,0xb4,0x9a,0x8c,0xf2,0x4c,0xff,0x76,0xfe,0x80,0xd7, +0x2a,0xbf,0x4d,0x51,0x94,0xfb,0x56,0x25,0xd4,0x26,0xd5,0xa4, +0x70,0xb8,0x03,0x89,0x05,0x10,0x74,0x63,0x9d,0x62,0x1c,0x8f, +0x3b,0x9d,0x4c,0x31,0xe3,0x1b,0x13,0x9b,0x92,0x9a,0xe8,0x4f, +0x2e,0xe2,0x0c,0x36,0xcb,0x54,0xe1,0x15,0xd3,0x96,0x93,0xd3, +0xae,0x02,0x29,0x6c,0x73,0x5a,0x63,0x7a,0x6d,0x66,0x6c,0x0f, +0xef,0x7d,0x54,0x76,0xd4,0xfd,0x98,0x74,0xa4,0xcd,0x1a,0x36, +0x11,0x3f,0xcc,0xc4,0x59,0xa5,0xab,0x9c,0x4d,0xcc,0xcd,0xf7, +0xdb,0x56,0x58,0xf3,0xd7,0x3b,0x7a,0xbb,0x5b,0xfa,0x0b,0xf5, +0xcb,0xed,0xeb,0x03,0xea,0xfd,0x9a,0x52,0x2e,0x75,0xa6,0x83, +0x0b,0x6f,0x53,0xa8,0x90,0x23,0xec,0x26,0x61,0x57,0x7c,0xae, +0x7b,0x77,0x39,0x05,0xf2,0xd5,0xd6,0x95,0x7a,0x05,0x46,0xdc, +0xf8,0x59,0x9a,0xd3,0x0a,0x9e,0xe6,0x49,0xe6,0xf4,0x23,0x15, +0xe3,0xdc,0x48,0xe4,0xdc,0xd4,0xfc,0x4b,0x02,0x8a,0x24,0x73, +0x82,0x5a,0x2a,0xc6,0x6e,0x60,0x4a,0x60,0x41,0x2a,0x7c,0x42, +0xbd,0x7a,0x1d,0x9b,0x7a,0x2d,0x89,0x7a,0xb5,0x11,0x45,0x08, +0x7f,0xe7,0xb1,0xc9,0xc6,0x3f,0xd1,0x3c,0x16,0xb4,0x28,0x60, +0x5b,0x97,0x67,0x87,0xac,0xd3,0xcd,0x4d,0xc3,0x7c,0xff,0x3e, +0x5d,0x9a,0xc7,0x1e,0xdc,0x1e,0xba,0xdf,0xf2,0xa4,0xd1,0xab, +0xd1,0xa3,0x49,0x72,0x0f,0xc7,0x76,0xa7,0x26,0x57,0xea,0x1e, +0x9b,0x84,0x67,0x04,0xc3,0x05,0x27,0x08,0xa7,0xb8,0x1f,0xf7, +0x48,0xcf,0x7a,0x7d,0x47,0x27,0x3a,0x6e,0x8e,0x3d,0x34,0xaf, +0xe7,0xff,0x90,0x4b,0xfd,0x74,0x0a,0xcd,0xeb,0x24,0x1c,0x59, +0x27,0x35,0xef,0x52,0x9f,0x62,0x9f,0x22,0x0e,0x9a,0xc4,0xd5, +0xe4,0x2a,0x38,0x0b,0xd3,0x26,0xba,0x70,0x66,0x4e,0x3c,0x85, +0xda,0x91,0x9d,0xdb,0xaa,0x22,0xc4,0x8a,0xa7,0xd9,0xab,0xb8, +0x9e,0xfc,0x26,0x4c,0x53,0x63,0xc5,0x69,0xf8,0x09,0xf9,0x5d, +0x98,0x26,0x31,0x88,0xe7,0x42,0x26,0xe9,0xcc,0xcf,0xec,0x55, +0x81,0x4b,0x26,0x98,0x8b,0x0b,0xd8,0x0c,0x2b,0x05,0xd4,0x85, +0x68,0x62,0x55,0x69,0x54,0x69,0x96,0xe7,0x6f,0xc7,0x8f,0x86, +0x8c,0x04,0x74,0xfb,0x71,0x72,0x75,0x54,0x26,0x26,0xbf,0x5a, +0xdc,0x33,0xbf,0x61,0x1f,0xc0,0x8f,0xec,0xeb,0xdc,0x3f,0xb0, +0x86,0x13,0x0f,0x40,0x0e,0xf1,0x50,0x37,0xdb,0xad,0x6f,0xd4, +0xee,0xc1,0xdf,0xbd,0x35,0xf8,0x55,0xdd,0x13,0x0e,0xd3,0x70, +0x2f,0xb1,0x2d,0xd7,0xab,0x34,0x2a,0xf0,0xb7,0xe5,0xaf,0x84, +0x5e,0x09,0x18,0xf0,0xe5,0xc0,0x0a,0x5d,0x09,0x7c,0x52,0x0c, +0x2b,0x07,0x60,0xf2,0x0f,0x3e,0x94,0x01,0xcf,0x5a,0x82,0xeb, +0xec,0xd0,0x24,0x22,0xdd,0x84,0xcf,0xbd,0x90,0x7b,0x31,0xf7, +0x62,0x64,0x70,0x58,0x60,0x48,0x00,0x87,0xdd,0x16,0x70,0x8e, +0xf1,0xf0,0x70,0x91,0xd9,0xcb,0x1e,0x1e,0x7a,0x1d,0xf1,0x7b, +0xc8,0x52,0x1f,0x9c,0x1f,0x85,0xdb,0x62,0xa5,0x90,0x6c,0x9b, +0x04,0x1b,0x4a,0x61,0xe6,0x00,0xbc,0x1b,0x08,0xb3,0x7d,0x81, +0xf3,0x29,0xed,0xe1,0x17,0x97,0x2f,0x2a,0x59,0x56,0x78,0xa3, +0xa9,0xa7,0xb7,0xe1,0x06,0x07,0x1a,0xfd,0x62,0x3a,0x93,0x57, +0x94,0x5d,0x98,0x59,0xc8,0x89,0x0b,0x63,0xc9,0xd7,0xf5,0xbf, +0x0c,0x5e,0xe9,0x09,0xec,0xe4,0xf7,0x99,0x7f,0x6c,0xab,0x2e, +0xe3,0xe4,0xf3,0x70,0x17,0x71,0x31,0xb6,0x74,0xd0,0xf4,0x5e, +0x97,0xb7,0x25,0x7b,0x5f,0x7a,0x45,0x49,0x79,0x59,0x69,0x39, +0xd5,0xe3,0xdd,0x1f,0x49,0x60,0x5d,0x70,0x75,0x70,0x65,0x2b, +0xcc,0xc8,0x87,0x0f,0x93,0x28,0xdc,0x6b,0xc4,0x39,0x6c,0xd2, +0x8d,0xc4,0x91,0xf8,0x41,0xd3,0x4b,0xfc,0x69,0xcb,0x58,0xbd, +0xe3,0xda,0xdc,0x27,0xa6,0x5f,0x32,0xd1,0xaa,0xe1,0x8b,0x42, +0xb7,0x35,0xb9,0xd5,0xb9,0xd5,0x39,0xfb,0xee,0x76,0xd6,0x34, +0xd1,0xaf,0xb3,0xe3,0x87,0xae,0xb7,0xde,0xaa,0x7e,0x94,0x1f, +0x98,0x1f,0x90,0xef,0xcb,0x09,0x5f,0x0a,0xbb,0x48,0xdb,0xcb, +0xca,0x5f,0xd2,0x3e,0xe7,0x7a,0x30,0xe1,0x9f,0x53,0x07,0xe5, +0x37,0x40,0x99,0x8d,0xd9,0xe5,0xbb,0xdc,0x71,0x35,0xd7,0xbb, +0xb7,0x69,0xc3,0x26,0x25,0x8d,0x08,0x7f,0x57,0x65,0x6b,0x26, +0xdd,0x44,0xa1,0x9f,0xb9,0x53,0x39,0xf8,0x8f,0x9f,0x5c,0xbe, +0xb5,0xb9,0xa7,0x22,0xee,0x87,0x5c,0xb2,0x8d,0x75,0xff,0xd4, +0xf3,0x9c,0x97,0xf2,0x7a,0xcb,0x6f,0x99,0xb3,0xbb,0x4f,0xeb, +0xc6,0x9a,0x72,0x3b,0x2d,0xee,0x30,0xe1,0x38,0x43,0xb6,0xc9, +0x68,0x47,0x8b,0x13,0x7f,0xe3,0x79,0xd3,0x2f,0x85,0xa0,0x2c, +0x3d,0x55,0x17,0xb7,0x39,0xce,0xe0,0xb4,0x0b,0x67,0x79,0xfa, +0x48,0xb4,0xeb,0x42,0x6d,0x26,0xcd,0x44,0xe1,0x16,0x73,0xb5, +0xb8,0xec,0x7e,0x92,0x4a,0x26,0xb0,0xf1,0x10,0x21,0x6c,0x57, +0xc2,0x2b,0x16,0x0c,0xac,0x45,0x33,0x72,0xbe,0xf6,0xd3,0xba, +0x06,0xa5,0x2f,0xde,0xb0,0x9a,0xe7,0xf4,0x8d,0x95,0x44,0x27, +0x0c,0x27,0xb9,0x5f,0xe7,0xbc,0xca,0x7c,0xc9,0x7d,0xc9,0x9c, +0xc0,0x79,0x87,0xf0,0x5d,0x4f,0x9c,0x14,0x52,0x16,0x5a,0x1c, +0x42,0xed,0xe9,0x75,0x08,0x49,0x18,0xb9,0x7c,0xe3,0xe2,0x7d, +0x1a,0x44,0xcf,0xed,0x39,0xa7,0x73,0xd6,0x94,0x9b,0x25,0x37, +0x91,0x5f,0x22,0x8f,0xcc,0x76,0xa1,0x0c,0x7f,0x15,0xc2,0xe1, +0x57,0x76,0xfc,0x7d,0xf1,0x26,0x35,0x7f,0xae,0x54,0x3a,0xc5, +0x49,0x02,0xc8,0x1f,0x51,0x80,0x9c,0x7c,0x35,0x61,0x88,0x9a, +0xff,0x29,0xf3,0xe3,0x12,0x40,0x5e,0x64,0xfc,0x9a,0x89,0x50, +0x0b,0x56,0x0d,0x50,0xef,0xf4,0x68,0x77,0x6f,0x77,0x76,0xd7, +0xb0,0xdc,0xbf,0x5f,0xb7,0xde,0x46,0xb2,0x98,0xfb,0xcd,0x8f, +0x6b,0xbd,0x6a,0x65,0x75,0xae,0x14,0x1f,0xbb,0xb6,0xba,0x37, +0x7a,0xd4,0x71,0xc2,0x3b,0xc2,0x56,0x82,0x6b,0xdf,0xc0,0x5a, +0x06,0xbc,0x57,0x10,0x5c,0xff,0x06,0xd6,0x33,0xe3,0x32,0x51, +0x85,0x86,0x32,0x6a,0xfa,0xaf,0xb8,0x3f,0xa9,0x0f,0x2e,0x08, +0xc7,0x69,0x4e,0x8b,0x7d,0xca,0x7d,0x4b,0x7d,0x8b,0x38,0x21, +0x9e,0x22,0x78,0x55,0x5c,0xfb,0xfb,0x44,0xcb,0xbe,0xf5,0xaa, +0xb8,0x9e,0x81,0x78,0x7c,0x9f,0x88,0x77,0x2c,0x60,0x29,0x73, +0xc4,0x2e,0xda,0x35,0xdc,0x96,0x83,0x7f,0x31,0x67,0xbd,0x4f, +0xbb,0xc7,0xca,0x38,0xef,0x13,0x87,0x62,0x1c,0x16,0xa2,0x22, +0x93,0x69,0xa6,0x00,0x84,0xb9,0x5f,0x56,0x74,0x2d,0x5d,0x25, +0xa5,0x2b,0xbe,0xef,0xd2,0x7d,0x0e,0x5f,0x32,0xc9,0xa5,0xc9, +0x65,0x49,0x65,0x74,0x18,0xcc,0x2c,0x61,0xd3,0x73,0xe2,0xd0, +0xee,0xdc,0xe8,0x5c,0xd7,0x03,0x0a,0x65,0x92,0x83,0x6f,0x7c, +0x8b,0x2d,0xaf,0x25,0x53,0x07,0x37,0xfc,0xaf,0x83,0xff,0x17, +0xa8,0x76,0x7b,0x76,0xc9,0xba,0xdc,0x5c,0xa8,0x83,0xef,0x96, +0x1c,0xfc,0xd1,0xed,0x91,0xfb,0x6d,0x4f,0x1b,0x3d,0x9b,0x3c, +0x9a,0x5d,0x38,0x18,0xa3,0xe3,0xbc,0x54,0x7e,0xa1,0xaa,0x46, +0x29,0x11,0xdc,0x84,0xd5,0xa2,0x4c,0x5c,0x0d,0x76,0x47,0x59, +0xef,0xb3,0xfe,0x67,0x02,0x94,0x31,0xda,0x02,0x82,0x18,0x5f, +0x7c,0x7f,0xfb,0x1e,0x5c,0x68,0x5a,0x6a,0xce,0xc3,0x8a,0xab, +0xaf,0x7f,0xa8,0x85,0xf5,0x1c,0x25,0x60,0xfb,0xcf,0x68,0x9d, +0x72,0x51,0xb6,0x8f,0x3d,0x72,0xd4,0x7a,0x21,0x72,0x13,0x4f, +0x6a,0x4c,0x62,0xbe,0x2e,0xad,0xb8,0x9b,0xac,0x92,0x38,0x7c, +0xe9,0xf3,0xf3,0xc0,0x70,0x58,0x03,0xcf,0x09,0xaa,0xc2,0x1c, +0x50,0x65,0x86,0x71,0x0e,0xa1,0x17,0xab,0xa8,0xfd,0x8e,0x3b, +0x62,0x27,0x29,0xa6,0x41,0x23,0xef,0x07,0x09,0x77,0xc6,0xe0, +0xfc,0x30,0x64,0x1c,0xd5,0x3c,0xcb,0xbc,0x4b,0xbc,0x0b,0x39, +0xe1,0x22,0xc4,0x11,0x94,0xbe,0x46,0x58,0xb0,0x9f,0x4f,0xbf, +0x41,0x70,0x15,0x45,0xe1,0xdd,0xd2,0xb6,0xa6,0xf7,0x98,0xe4, +0x5b,0x89,0xd7,0xe2,0x47,0x4c,0x2f,0xf2,0xa7,0x4d,0x63,0xb5, +0x8f,0x6b,0x72,0x9b,0x4c,0x3f,0x67,0x0e,0xa9,0x45,0x2c,0x0e, +0xd9,0xdc,0xe0,0x5a,0xe7,0x52,0xe7,0xe0,0xa7,0xe1,0xb2,0xdf, +0x54,0xbf,0xce,0x9e,0x1f,0xb8,0xd6,0x72,0xbb,0xfa,0x61,0xbe, +0x5f,0x81,0x6f,0xa1,0x67,0x43,0x3b,0xbf,0x05,0x98,0x56,0x78, +0x2f,0x0f,0x16,0x27,0xc2,0x76,0xc5,0x1a,0xd0,0x23,0xe3,0xff, +0x1c,0x94,0xdf,0xfc,0x9d,0xda,0x7f,0xc8,0x52,0xe7,0x8f,0xb8, +0xbe,0x3d,0xc5,0x9b,0xf7,0x29,0xe9,0x1f,0xf1,0x95,0x29,0x7b, +0x33,0xa9,0xa6,0x0a,0x35,0xcc,0x95,0x8a,0xb6,0x3f,0x9f,0xf9, +0x3e,0x76,0xba,0xa9,0x52,0xf3,0xa0,0xf2,0xcf,0xb4,0x97,0x5c, +0x33,0x5b,0x72,0x8e,0x58,0x42,0xe9,0xf8,0x71,0x5c,0xc6,0x4a, +0x8a,0xa2,0x59,0x30,0x37,0xa7,0x4d,0x45,0x1e,0xd5,0xdf,0xc7, +0x8a,0x1c,0x1a,0x10,0x31,0xb5,0xfb,0x31,0x2c,0x12,0x34,0xd9, +0xf1,0x0d,0xd8,0x42,0x72,0xbf,0xc9,0x7d,0x95,0xf1,0x8a,0xfb, +0x9c,0x89,0xc5,0xf9,0xd1,0xd2,0x1a,0xe7,0x3b,0xa1,0x15,0xa1, +0xd4,0x90,0x39,0xa1,0x94,0xf2,0x8c,0xa7,0xdf,0xe1,0x53,0xe9, +0x59,0x35,0xf0,0x20,0x7d,0xc0,0x94,0x01,0x9f,0x46,0x29,0x4f, +0x0b,0xaa,0xb3,0x69,0xff,0xd5,0x64,0xcc,0x84,0x26,0x59,0xa3, +0x7f,0x30,0x61,0x6f,0x35,0x29,0xeb,0xf2,0xe8,0x72,0x71,0xd9, +0x6d,0xa6,0xf9,0x56,0x93,0xb7,0x46,0xee,0xb5,0x3f,0xae,0xf7, +0xae,0x97,0x35,0x4a,0xc6,0xea,0xdc,0xea,0xda,0xe0,0x56,0xcb, +0xc1,0x71,0x21,0x81,0x80,0xe2,0x25,0x58,0x94,0x0b,0xb3,0x26, +0x0a,0xea,0x53,0xbd,0x71,0xe9,0x41,0xdc,0x78,0xe6,0xf0,0xf6, +0x90,0x75,0x6e,0xfb,0xfb,0x7c,0xf8,0xfa,0x07,0xc5,0x5f,0xa4, +0x52,0xac,0x58,0x1f,0x49,0xaa,0x2d,0x6a,0x75,0x0a,0x4c,0xfa, +0x4a,0xf8,0xb0,0x7e,0xd9,0x6d,0xcf,0x1e,0x0e,0x55,0xd1,0x99, +0x9c,0xee,0x3d,0x72,0x3b,0xba,0xcf,0x2c,0x86,0xcf,0xb4,0x4c, +0xd5,0xbb,0x64,0xca,0x89,0xd9,0xb8,0x9f,0x14,0x3f,0x7e,0xcb, +0xde,0xa6,0xbd,0x65,0x6f,0x9c,0xbd,0x9a,0x67,0xb9,0x57,0xa9, +0x37,0xb5,0xf5,0xe1,0x07,0xe4,0xb3,0xa4,0xfb,0x29,0x77,0x32, +0x83,0xe9,0xcd,0x94,0x02,0x70,0xcd,0x61,0x34,0x3d,0x95,0x62, +0xce,0x3f,0xb8,0x70,0xf7,0xd2,0x58,0x3c,0x87,0x1f,0xe1,0xa7, +0x66,0xf0,0xa9,0xf4,0xc0,0x8b,0x99,0x90,0x32,0x88,0x87,0x60, +0x3f,0xc4,0x0f,0x62,0xbc,0xd4,0xea,0xe2,0x09,0xf1,0x69,0xf0, +0xad,0xf5,0xaf,0xea,0x82,0x77,0x8b,0xe1,0x83,0x14,0x50,0xa7, +0x49,0x7f,0x19,0x9b,0x72,0x53,0x72,0x57,0x29,0xe9,0x53,0x77, +0x8d,0xd1,0xa2,0x58,0xee,0x05,0x13,0xa9,0x46,0xb1,0x9c,0x7a, +0xbb,0x5b,0x8b,0x5b,0x8b,0xb3,0x6c,0x97,0xcd,0x01,0x1d,0x5d, +0x9a,0xf4,0x6f,0xde,0xec,0xbd,0xdb,0xf8,0x45,0xa9,0x5f,0x89, +0x6f,0xa9,0x17,0x27,0xdc,0x93,0xf3,0xe4,0x93,0x2b,0xa0,0x86, +0xb9,0xbf,0x1a,0x2d,0xc5,0xf3,0xb8,0x64,0xf8,0x3b,0xb6,0x50, +0x87,0x1c,0xc6,0xf7,0xec,0x51,0x61,0xff,0x96,0x5a,0x3b,0x7e, +0xe0,0x56,0xd3,0xc3,0xe2,0x27,0x52,0xa6,0x3a,0xb9,0xe3,0xf0, +0xbe,0x10,0x9d,0xc0,0x4a,0x0a,0xc0,0x8a,0xfc,0x6c,0xf8,0xca, +0xc0,0xca,0xc0,0x32,0x4f,0xb7,0xad,0x46,0xfb,0xb6,0xe8,0xd5, +0x58,0xf1,0xa0,0x05,0xaa,0x4f,0x41,0x37,0x1d,0x0e,0x53,0x95, +0xac,0x64,0x13,0x4a,0x2f,0x97,0x5e,0x2a,0xe3,0xc4,0x05,0x94, +0x14,0x4a,0x20,0x8e,0x92,0x84,0x37,0x92,0xc7,0x47,0xe0,0x74, +0x97,0x45,0xfe,0x15,0x01,0xa5,0xfe,0xc5,0x9c,0x3c,0x17,0x1f, +0x11,0x5c,0xc0,0x04,0xc5,0xc6,0x97,0xaa,0x08,0xae,0xa0,0x88, +0x27,0x70,0x2a,0x9b,0x69,0xae,0xf0,0x83,0xb4,0xa3,0x9c,0x62, +0xa5,0x16,0x3c,0x2b,0xe6,0xb3,0x7a,0x79,0x51,0xd7,0x94,0x29, +0xf5,0x6c,0x4d,0x4f,0x6f,0x51,0x81,0x19,0xac,0x65,0xb6,0xc2, +0x2c,0x78,0x21,0x5f,0x44,0x50,0x85,0x49,0xb9,0x95,0xf4,0x96, +0x36,0x9d,0x32,0x39,0xa1,0x1d,0xa3,0xc9,0xad,0x32,0x79,0xc6, +0x44,0xa9,0x85,0xa9,0x06,0x6d,0x6e,0x76,0x6d,0x74,0x6a,0xb2, +0xf7,0xda,0x6d,0xaf,0x69,0xa0,0x5f,0x4f,0x53,0xd8,0xf5,0xce, +0x5b,0xf5,0x0f,0x0b,0xfd,0x8a,0x7c,0x8b,0x3c,0x1b,0x3a,0x79, +0xbf,0xc6,0xc0,0xba,0xc0,0xaa,0x6e,0x98,0x55,0x0c,0x8b,0x93, +0x41,0x83,0x93,0x33,0xe3,0xf3,0x88,0x75,0x8f,0xfb,0x90,0xdf, +0xf5,0x1e,0x78,0xb7,0x0c,0x96,0x26,0xc1,0x2e,0x1a,0xf2,0x9b, +0x29,0xf4,0x1e,0x1b,0x18,0x7f,0xc7,0xfc,0xea,0xf8,0x3c,0x36, +0xe2,0xcc,0xc1,0x33,0x07,0xe3,0x28,0x6a,0xfd,0x3c,0xf3,0xbb, +0xfc,0xbb,0xf9,0x1c,0xee,0x1b,0x92,0xab,0xc2,0x61,0xf6,0x14, +0xaa,0x1e,0xc4,0x19,0x9e,0x2b,0x3c,0x5f,0x85,0xc3,0xe4,0x68, +0x98,0x65,0x79,0x98,0xcf,0xc1,0xc5,0x15,0x38,0xaf,0x8b,0x9a, +0x91,0x96,0xb3,0xa9,0xa5,0x03,0x05,0x90,0x5d,0xad,0xcd,0xfd, +0xd5,0xd7,0x2a,0x8d,0x1a,0xcc,0xdb,0x6d,0x39,0xfc,0x51,0xbe, +0x86,0xa0,0x12,0x6c,0xa2,0xb3,0x12,0x1d,0xc5,0x9d,0xa4,0xe0, +0xab,0xbc,0xd7,0x59,0xaf,0xb8,0x1f,0xa8,0x84,0x94,0x0e,0xe2, +0x2c,0x57,0x9c,0x12,0x58,0x15,0x58,0x1e,0x54,0xca,0x09,0x8e, +0x20,0x23,0xb8,0x99,0xfe,0xee,0x66,0x16,0x7d,0xa7,0x82,0x12, +0xaa,0x33,0x1e,0x31,0xf6,0xc7,0x6c,0x63,0x28,0x04,0xd6,0x85, +0x3f,0x49,0x95,0xb0,0x64,0xb8,0x4b,0x0c,0xb4,0x7d,0x82,0xb7, +0x19,0xff,0xb3,0xbe,0x9f,0xfa,0x9e,0x4b,0xa0,0xba,0x50,0xb9, +0x04,0x5c,0x22,0x4c,0x4e,0xe3,0x2c,0x92,0xd8,0xc8,0xc0,0xb0, +0x40,0x69,0x37,0x66,0x87,0x05,0xc4,0x31,0x32,0x0f,0x67,0x77, +0x7b,0xd9,0x83,0x43,0xaf,0xc3,0xff,0x08,0x59,0xea,0x8d,0xf3, +0x68,0x4a,0x9e,0x60,0x49,0x36,0x49,0xb0,0xbe,0x14,0x66,0x0c, +0xc1,0xb4,0x00,0x98,0xed,0x03,0x8c,0x4f,0x69,0x2f,0xaf,0x5a, +0xbe,0xb8,0x94,0xa6,0xe4,0xe6,0xde,0xbe,0x86,0x9b,0x1c,0x6c, +0xef,0x17,0x53,0x98,0xbc,0xe2,0x9c,0xa2,0x4c,0x9a,0x54,0xb2, +0x20,0x98,0x38,0x77,0x7a,0x0e,0xf8,0x5f,0xb3,0x09,0xe0,0xcb, +0xf4,0x1b,0x8c,0x3a,0x2d,0x2c,0x9c,0xf4,0xdc,0xf7,0xfa,0x50, +0x54,0xf6,0x79,0xcd,0xad,0xe6,0x81,0xce,0x5e,0xbb,0x51,0x97, +0xdb,0xde,0xa5,0x7d,0xbc,0x5e,0xb9,0x79,0x9d,0x5d,0xeb,0xcd, +0x5b,0xad,0x8f,0x72,0x1e,0x73,0x1d,0x28,0x9a,0x43,0x37,0x1b, +0xa9,0x2b,0x33,0xb1,0xb6,0xe2,0xf0,0x19,0xcc,0x20,0x18,0x78, +0x1b,0x02,0x19,0x64,0xa7,0xee,0xc5,0xc0,0xfb,0x2c,0x4e,0x9f, +0x0a,0x81,0xfa,0x8c,0x4e,0xec,0xde,0xd3,0xdb,0xcf,0x70,0xc2, +0x65,0x8c,0x20,0xce,0x86,0x96,0x0e,0x5a,0x5e,0x34,0xcd,0xe7, +0xec,0x4b,0xaf,0x2c,0x2d,0x2f,0x97,0xd2,0xbc,0x60,0x06,0xc6, +0x14,0x4f,0x55,0xdd,0xeb,0xac,0xfb,0x8a,0x83,0xf3,0xc2,0x87, +0x78,0x96,0x49,0x2b,0x4f,0xa9,0x48,0xae,0x34,0x49,0xe4,0x4f, +0xf8,0x1f,0xf3,0x3e,0x24,0xe3,0x50,0x47,0xfc,0x10,0xf6,0x33, +0xbe,0x16,0x26,0x3e,0xab,0x83,0x39,0x5c,0x11,0x44,0x13,0x9c, +0x42,0x29,0xf0,0x6f,0xf1,0xdd,0xfa,0xff,0x67,0x7c,0xd7,0x29, +0xeb,0x70,0x75,0xdb,0x65,0xb1,0x7f,0xef,0xbf,0xf1,0x5d,0xeb, +0x93,0x86,0xff,0xe2,0x3b,0x67,0xfa,0xce,0x09,0x8c,0x10,0x4a, +0x90,0xc1,0x8f,0x80,0x91,0x3a,0xe6,0x30,0x04,0x18,0xd8,0x80, +0x0c,0x3b,0x1e,0x84,0xe7,0xfe,0x27,0xbe,0xe3,0x28,0xbe,0x2b, +0x7b,0x8b,0xef,0xfe,0x09,0x96,0x04,0x3e,0x62,0xce,0xd9,0x9f, +0x71,0x3b,0x41,0xb9,0xeb,0x22,0x06,0x6c,0xe7,0x27,0xd5,0x5c, +0x6a,0x3c,0xdf,0xce,0xd1,0xaf,0xcf,0x64,0xcc,0xe8,0x94,0x41, +0xd5,0x90,0x06,0x15,0xe9,0x81,0x01,0xb4,0x1b,0x05,0x3b,0x58, +0x36,0xc0,0xce,0x7a,0x2c,0xac,0x27,0x30,0xed,0xb3,0xe6,0xbb, +0x29,0x8f,0xb8,0x04,0x4c,0x1d,0x06,0x6b,0x46,0xda,0xa9,0x72, +0x4a,0xf9,0xcf,0x8f,0xeb,0x1b,0xd4,0x9e,0x1f,0x4b,0x39,0x2e, +0x6d,0x54,0x39,0x1a,0xa3,0x70,0xea,0x1e,0xac,0xea,0xc7,0x55, +0xbf,0x1b,0xab,0xa2,0xb5,0x05,0x4d,0x3a,0xa1,0x7b,0xf4,0x76, +0x2f,0xd1,0xe1,0x04,0x7d,0x67,0x02,0xe4,0x49,0xd5,0x8d,0xd4, +0xfb,0xf4,0xfb,0xe9,0xc3,0x90,0x9e,0xc0,0xa4,0xec,0x6d,0xd3, +0x85,0xf9,0x5b,0x2a,0xba,0x79,0x9c,0x34,0xa6,0x75,0x27,0xe0, +0x3e,0x07,0x96,0xfd,0xe8,0x2d,0x7d,0x75,0xab,0x05,0x2c,0x67, +0x42,0xf6,0x9b,0x6b,0xd2,0x30,0xc0,0x85,0x59,0x91,0x30,0x59, +0xa0,0x9b,0x8f,0x2b,0x87,0x6d,0xe6,0x70,0x96,0xf1,0x70,0x71, +0x71,0xb1,0x77,0x7d,0x14,0xfd,0x63,0xe8,0x9f,0x41,0x4b,0x3d, +0x70,0xfe,0x41,0xdc,0x79,0x3c,0xd3,0x94,0x5a,0x51,0x0a,0xac, +0xab,0x80,0x99,0x57,0xe0,0x5d,0x3f,0x98,0xed,0x09,0x9c,0x27, +0xe5,0xda,0x38,0xa9,0x0a,0x27,0x97,0x2f,0x2d,0x19,0x6b,0xef, +0x1f,0x6e,0xa4,0x37,0xd8,0x39,0x20,0x66,0x31,0xc5,0x35,0x85, +0xb5,0xb9,0x55,0x1c,0xc8,0x28,0x88,0x75,0xd6,0xb6,0xb0,0x3e, +0xe0,0xfe,0x71,0xc1,0xe6,0xdc,0xbd,0x99,0x55,0x15,0x15,0x55, +0x65,0xd5,0x9c,0x74,0xf8,0xd7,0x64,0x12,0x5a,0x1a,0x56,0x12, +0x5a,0xdc,0x0b,0xd3,0x4a,0xa5,0x30,0xb7,0x95,0x86,0xb9,0x35, +0x52,0x98,0x1b,0xa5,0x61,0x4e,0x2a,0xdb,0x1d,0xd7,0x39,0xa6, +0xc5,0x2d,0x36,0x7e,0x45,0x51,0x49,0x88,0xaa,0xbf,0x7a,0xb7, +0x5b,0xbb,0x5b,0xb3,0x8b,0xbb,0x86,0x95,0xa6,0xa6,0x84,0x4a, +0x6e,0x8d,0x0d,0xdc,0x69,0xfe,0x22,0x2f,0x2c,0x37,0x34,0x37, +0x84,0x7b,0x4d,0x01,0x32,0x5e,0x8c,0xc4,0x60,0x2d,0x5c,0xaa, +0xdc,0xed,0xae,0x70,0x0b,0xd4,0x4a,0xe0,0x22,0x24,0x2a,0x09, +0xee,0x70,0x4c,0xcc,0x61,0x20,0xda,0x9a,0xba,0x23,0xee,0x06, +0x25,0x16,0xa2,0x50,0x49,0x3a,0x7b,0x61,0x3f,0x2a,0xb1,0xe3, +0x81,0xd8,0x4f,0x0a,0xa9,0x26,0x73,0x5e,0x71,0x7f,0x50,0xd7, +0xe4,0xc3,0xf1,0x5d,0xa7,0xc5,0xfe,0xe5,0xbe,0x65,0x3e,0x25, +0x9c,0xb0,0x4e,0x5c,0x42,0x46,0x60,0xc8,0x78,0x48,0xb8,0x29, +0x6e,0x12,0x6f,0xb2,0x20,0x0a,0x9b,0x09,0x0e,0xfd,0x02,0x43, +0x0c,0x0e,0xe1,0x4a,0x02,0x43,0x4b,0x70,0x88,0xb1,0x9b,0x0a, +0x43,0x38,0x99,0x5e,0xcc,0x82,0xe7,0x3f,0x91,0xa0,0xaa,0xa0, +0xca,0xe0,0xb2,0x0e,0x29,0x72,0x2f,0x4c,0xa6,0x40,0xab,0x19, +0x55,0xd9,0x64,0x69,0x4a,0xc3,0x13,0x91,0xfb,0x84,0x14,0xb9, +0x97,0x9b,0x7c,0x47,0x23,0x77,0x28,0x8d,0xdc,0x1d,0x6e,0x2d, +0xee,0x4d,0xae,0xb2,0x9d,0xb6,0xfb,0x75,0x74,0x69,0x08,0xbb, +0x31,0xd6,0x73,0xb7,0xf1,0xcb,0x82,0x20,0xfa,0xcf,0x9f,0xfb, +0x59,0x7e,0x96,0x88,0x33,0x84,0x40,0x61,0x06,0x2b,0xaa,0x4b, +0x8f,0x14,0x97,0x09,0x93,0xb1,0x8c,0x45,0xdb,0xdf,0x48,0x62, +0xf2,0xa5,0xf3,0x29,0xb1,0xc0,0x6d,0xe2,0xcb,0x9b,0x71,0xca, +0x17,0x31,0x89,0x27,0x3f,0x3d,0x7e,0x4c,0xf1,0x84,0xf4,0x64, +0x7e,0x46,0x41,0x42,0x45,0x83,0x52,0x99,0x65,0x30,0xbb,0xcb, +0xd3,0x7b,0xa3,0x8d,0x72,0xb1,0x53,0x5f,0x59,0x43,0x45,0x4e, +0xbe,0xa2,0x78,0x12,0xb3,0xdf,0xb2,0xa3,0x57,0x13,0xec,0x88, +0xaa,0xf4,0x5d,0xb7,0xc5,0x01,0x65,0x01,0x25,0x52,0x9c,0xce, +0xac,0x24,0x62,0x1e,0xfe,0xb8,0xd9,0x52,0xbe,0xaa,0xcf,0x92, +0x11,0x59,0x68,0x23,0xd8,0xb6,0x1a,0xda,0xa4,0x27,0x04,0xda, +0x08,0xb4,0xfd,0x84,0x6d,0xd2,0xa9,0x1b,0x6d,0xff,0xa0,0xef, +0xb3,0xfe,0x9a,0x03,0xcb,0x08,0xa4,0xa0,0xef,0x0d,0x28,0xeb, +0xc2,0x4d,0x5f,0xc2,0xfc,0x4e,0x9c,0x7f,0x0f,0x96,0x77,0xe2, +0xf2,0x07,0x66,0x7b,0x70,0x87,0xf4,0xb2,0xdc,0x0e,0x96,0xef, +0x43,0xde,0x0e,0xf8,0xed,0xb8,0xc8,0x16,0xce,0xeb,0xa2,0x07, +0xa6,0x68,0x59,0xdf,0xc2,0x7d,0xc3,0xb0,0x8f,0x4e,0x84,0xc5, +0x0f,0xd9,0x0c,0x1b,0xa9,0xfd,0x60,0x4b,0x66,0x46,0xab,0xca, +0x1f,0x37,0x7b,0xd8,0xf1,0xc9,0xc2,0x79,0x42,0xdd,0x85,0x8a, +0xeb,0x6a,0xfc,0x90,0xc9,0x7f,0xc4,0xb5,0xd2,0xe4,0xdb,0x09, +0x71,0x05,0xa9,0xb7,0xb8,0x35,0xb9,0x36,0x3b,0x78,0xee,0xb6, +0xd3,0xd4,0x97,0x22,0xfe,0xd5,0xeb,0x5d,0xb7,0xeb,0x1f,0x95, +0xf8,0x95,0xf8,0x94,0xc8,0x68,0xc4,0xff,0x08,0xa6,0x76,0xc1, +0x8c,0x62,0x50,0x4e,0x86,0x6d,0x8a,0x82,0x1a,0x4c,0x21,0x13, +0xdb,0x8a,0x61,0x07,0xce,0x20,0xdb,0x71,0xc7,0x97,0xac,0x68, +0x84,0x95,0x52,0xaa,0x7a,0x95,0xf9,0x8a,0x7b,0x45,0x71,0x34, +0x1f,0x81,0x33,0x5c,0x71,0x72,0x00,0xcd,0x72,0x81,0x54,0xdd, +0xb1,0x6e,0x04,0x57,0x7f,0x06,0xab,0x99,0x21,0x0d,0xf2,0x19, +0xac,0xd7,0x60,0xd1,0xc7,0x8e,0x6c,0xc6,0xd5,0x5f,0x4f,0x3c, +0x5e,0xb0,0x7e,0x33,0x85,0xab,0xb3,0xe0,0xd5,0x17,0xc4,0xbf, +0x3e,0xa0,0x36,0xb0,0xb2,0x13,0x66,0x14,0x81,0x0a,0xbd,0x15, +0xd7,0x84,0x2a,0xec,0xff,0x7d,0x96,0x6a,0xa5,0x63,0x6e,0x74, +0xf4,0xd2,0xb0,0xdf,0xaf,0x27,0xa9,0xf8,0xea,0xcd,0xee,0xbb, +0xf5,0x5f,0x14,0xd2,0xfc,0x5a,0xe4,0xcd,0xc1,0x3d,0xa1,0x85, +0x40,0x18,0xa6,0x58,0x83,0x23,0xce,0xc6,0x1d,0xec,0xa9,0x7d, +0x31,0xdb,0x8e,0x1e,0xe0,0xc0,0x95,0x39,0x8f,0x6a,0x27,0xe8, +0x7f,0xfb,0x38,0xab,0x53,0x87,0x8e,0xdb,0x2f,0x34,0x62,0xd2, +0x2d,0x14,0xae,0x33,0xd7,0xca,0xf2,0xef,0xa5,0xa8,0xa4,0x7d, +0x9d,0x08,0x2a,0xe0,0xa2,0x84,0x36,0x4c,0x42,0x5d,0xc2,0xd0, +0xc5,0x0a,0x0e,0x4a,0x28,0x90,0x4c,0xa8,0xbd,0xdc,0x7f,0xb1, +0x86,0x03,0x53,0xfa,0x17,0x93,0xad,0xc1,0x9e,0xfe,0x45,0x43, +0x26,0xee,0xc0,0x71,0xf5,0x18,0xfa,0x17,0x43,0x18,0x54,0x89, +0x45,0xd5,0xe3,0x1a,0xca,0xd6,0x27,0xa3,0x62,0x9c,0x17,0xee, +0x67,0x32,0x2d,0x14,0xee,0x31,0xd7,0x2b,0x8a,0xee,0x27,0xab, +0xa4,0x7d,0x9b,0x00,0x8a,0xe0,0xac,0x34,0xde,0x47,0x5d,0x23, +0xff,0xab,0xbc,0x57,0x13,0x99,0xea,0x04,0x2e,0xa0,0x59,0xcf, +0x0d,0x27,0x07,0x56,0x50,0x01,0x51,0x23,0xd9,0xd6,0x4b,0x3c, +0x1c,0x2d,0xec,0xad,0x7d,0xca,0x5c,0xf9,0xfe,0xda,0xa1,0xee, +0x86,0x4e,0x0e,0x7f,0x2e,0x27,0x1e,0x0e,0x66,0x76,0x66,0xde, +0x15,0x6e,0xfc,0x60,0xed,0xd5,0xde,0xba,0x2e,0x0e,0xfa,0x68, +0xa8,0xb4,0x37,0xd6,0x36,0xd6,0x74,0x2d,0x75,0xe2,0xef,0xb6, +0xdc,0xbf,0xd1,0x31,0xca,0xe1,0x4f,0xa5,0xc4,0xce,0x44,0xc7, +0x48,0xd3,0xad,0xcc,0x99,0xbf,0xd7,0x7a,0x7f,0xac,0xe5,0x0a, +0x0d,0x02,0x45,0x94,0x93,0x77,0x49,0x9c,0x9c,0x4f,0xa1,0x31, +0x5b,0x72,0x7f,0xa9,0xba,0x93,0xf8,0xb6,0xba,0x73,0x5c,0xaa, +0xee,0xfc,0x4d,0x4a,0x68,0xc8,0xee,0xf4,0x6c,0x97,0xb5,0xbb, +0xb9,0xef,0xb4,0x3a,0xb0,0x5f,0x47,0x22,0x25,0xb7,0x07,0x28, +0x25,0xaf,0xf7,0xaa,0xf7,0xa0,0xb0,0xbf,0x8b,0x77,0x6a,0x77, +0x91,0x28,0xb9,0xdc,0x14,0x8f,0x91,0xf5,0xb9,0x1a,0x85,0x9a, +0x95,0x5f,0xf6,0x5e,0xbd,0xd9,0xf4,0x98,0x6b,0xc7,0x80,0x37, +0x70,0x88,0x92,0x6d,0x03,0x2b,0x98,0xa7,0x8a,0xf3,0x6c,0x60, +0x1e,0x35,0xbe,0xbd,0x02,0x6f,0x26,0xf2,0xb8,0x8b,0x46,0xf4, +0x99,0xdd,0x38,0xf3,0x67,0xb6,0x29,0x61,0x38,0xbb,0x26,0x3f, +0xb0,0x8d,0x77,0x0b,0xd1,0x3b,0x68,0x7a,0x82,0xc3,0x3f,0x20, +0x62,0x05,0x26,0x9a,0x0b,0x0e,0xac,0x87,0x9e,0x89,0xe5,0x5e, +0x67,0xed,0x06,0xe3,0x2e,0x8b,0xab,0x4e,0x5e,0x7c,0x97,0xc9, +0x80,0xfd,0xa8,0xdb,0x5e,0x9f,0x4d,0x21,0xab,0xa3,0xb3,0x69, +0x62,0x55,0xc8,0xff,0xb9,0xf2,0x69,0xcb,0x63,0x97,0x17,0x7e, +0xff,0x08,0xe5,0xc6,0x6f,0x08,0x6b,0x26,0xf8,0x4f,0xce,0x4b, +0xee,0x77,0xa9,0x64,0x1a,0x81,0xac,0xb3,0x1a,0x65,0x3f,0xc5, +0xbe,0x52,0x0d,0xe2,0x9f,0xf7,0x89,0x4f,0xa3,0x6f,0xad,0x5f, +0x55,0x3f,0x4c,0x2f,0x87,0x0f,0x53,0x27,0x6a,0xe0,0x1f,0xff, +0x1f,0x4c,0x0c,0x27,0x19,0xff,0x38,0x41,0xc5,0xfc,0xd5,0x3b, +0x5c,0x5b,0x5d,0xda,0xec,0xdd,0xf7,0x5a,0x69,0x6b,0xe9,0xd3, +0x59,0x8f,0x5d,0xef,0xbf,0xdd,0xfc,0xa8,0xd4,0xaf,0xcc,0xbb, +0xcc,0x93,0x13,0x7e,0x94,0xe7,0x12,0xf1,0x9c,0x78,0x52,0x30, +0x60,0x70,0xfa,0x29,0x83,0xe3,0xe6,0xca,0xc6,0xc7,0xc3,0x0e, +0x99,0x2e,0x5c,0xc7,0x64,0x98,0x28,0x7c,0xc9,0x3c,0x69,0x2b, +0x7f,0x96,0xa5,0x92,0x7e,0xef,0xd2,0x1d,0x50,0x57,0x42,0xf7, +0x37,0x60,0xd4,0x8d,0x46,0x2f,0xc1,0xa8,0x47,0x7a,0xf5,0x60, +0x44,0xa3,0xb5,0xe4,0x25,0x1c,0x58,0x2b,0x75,0xb8,0x58,0xfa, +0xf6,0x4a,0x2c,0xa2,0xe4,0xb3,0xf0,0x69,0xc1,0x4b,0x4a,0xdf, +0x28,0x71,0x89,0xc1,0x85,0x61,0x38,0xc3,0x01,0x27,0xf9,0x54, +0xf9,0x55,0xf8,0x95,0x70,0xf0,0x5b,0x33,0x79,0x03,0x07,0x56, +0xb0,0xb0,0x1d,0x8f,0x93,0x98,0xee,0xa8,0xa1,0xa8,0x46,0xe7, +0x43,0x7c,0x96,0x73,0xb6,0x55,0x8a,0x15,0x67,0x69,0x4d,0x62, +0x6f,0x46,0x7d,0x11,0x3d,0x6c,0x77,0x84,0xcf,0x32,0x4e,0xd7, +0x4d,0xd1,0xe0,0x30,0xeb,0x00,0xa9,0xf8,0x2c,0xff,0xc7,0x94, +0x5f,0x2c,0x12,0xf8,0x98,0x8f,0x42,0xd7,0xfa,0xef,0xa5,0xd4, +0x1f,0xce,0x93,0x14,0x8d,0xf8,0x4f,0x2e,0x6f,0x1c,0x48,0xe6, +0xcf,0x7c,0x76,0xe2,0xb7,0x98,0xdb,0x54,0x34,0xbf,0xbd,0x24, +0x7e,0x75,0xfe,0xd5,0x01,0x15,0x7d,0xf0,0x6e,0xa9,0x24,0x9a, +0xed,0x6f,0xed,0xe1,0x46,0xd2,0x5b,0xd4,0x4b,0xd3,0x81,0xee, +0x7f,0xd2,0x41,0xf0,0xe2,0x80,0xad,0x1d,0x6e,0x6d,0xae,0xad, +0x8e,0xee,0x7b,0xac,0x35,0xdf,0x4a,0xe6,0x46,0xdf,0xed,0xe6, +0xcf,0x8a,0x03,0x4a,0xfc,0x8a,0x7d,0x38,0x39,0x91,0x32,0x77, +0xd2,0x4b,0xf0,0xe9,0x41,0x9f,0xaf,0xe0,0xd3,0x3e,0xf1,0x8a, +0x25,0x0d,0x58,0x51,0x38,0x0d,0xf6,0x99,0xe1,0xbe,0x75,0x56, +0xdf,0x32,0x87,0x37,0x1c,0x54,0xf7,0x5e,0xc7,0x09,0x87,0x18, +0x8b,0x33,0x07,0x4e,0xd8,0x29,0xbb,0x9d,0x8c,0x3a,0xe6,0x22, +0x9d,0xf0,0x62,0xa1,0x70,0x83,0x79,0x50,0x59,0x72,0x2b,0x55, +0x25,0x65,0xf4,0xe2,0x9d,0xdf,0x94,0x44,0x1f,0x26,0xb1,0x34, +0xb1,0x24,0x81,0x52,0x94,0xf5,0x3d,0xe2,0x52,0xe6,0x72,0x71, +0x7c,0xf1,0x25,0x1a,0x2e,0xf6,0x33,0xe3,0xb7,0x51,0x55,0xca, +0x1e,0x2f,0xff,0xce,0x1e,0x8a,0x61,0x38,0xdd,0x71,0x91,0x5f, +0xa5,0x5f,0x19,0x95,0x95,0xdc,0x1c,0x13,0xc9,0x91,0xba,0x88, +0xe6,0xc8,0x4a,0xc7,0x08,0x3e,0xdb,0x37,0xcf,0x25,0xd5,0x83, +0x13,0x37,0xe3,0x5c,0xd2,0xf3,0xb8,0xf4,0x71,0xda,0x03,0xab, +0x74,0xfe,0xc8,0xfe,0x80,0xdd,0x76,0xfb,0x39,0xa0,0x99,0x9e, +0xe4,0xd8,0x64,0x99,0xa5,0x1a,0xf5,0x66,0xf3,0x47,0x87,0xa3, +0x07,0xc2,0x29,0xe5,0xd8,0x12,0x45,0x52,0xb4,0x13,0xf7,0x5c, +0xd0,0x1d,0x48,0xe5,0xe3,0xc6,0x4e,0xdc,0x3d,0x7a,0x53,0x12, +0x92,0x5c,0x85,0xe0,0x32,0xe6,0x7f,0x2e,0x25,0x2c,0x7b,0x4b, +0x05,0x54,0x03,0x37,0xb7,0xb9,0xb7,0x50,0xa1,0xc8,0x34,0x6c, +0xf6,0xeb,0xe8,0xd5,0xd9,0xf0,0x37,0xc7,0x28,0x15,0xf8,0xb2, +0xc2,0xbb,0xc2,0xb3,0xd2,0xbd,0xbe,0x93,0x97,0xb5,0x7a,0x35, +0xf8,0xd4,0x76,0xc1,0xf4,0x12,0xf8,0x30,0x99,0xe6,0x5b,0x98, +0x21,0x8e,0x11,0xb9,0xbd,0xe0,0x3f,0x20,0x96,0xfd,0xf3,0xdd, +0x91,0x6b,0x42,0xe4,0x20,0x2b,0x2e,0x92,0xcf,0x25,0xe8,0x0b, +0x0f,0xc1,0x97,0xc5,0x1c,0xdc,0x2e,0xb5,0xb8,0x95,0xe1,0x74, +0x76,0x5c,0x87,0x9a,0x86,0x14,0x3c,0x69,0x6c,0x90,0x8a,0xb5, +0xbc,0x84,0xf3,0x71,0x92,0x7f,0x85,0x7f,0x69,0x00,0x95,0xc6, +0x55,0xa9,0x70,0xd4,0x8c,0xbb,0xb1,0x99,0x05,0x6f,0x68,0x26, +0x14,0x58,0x6b,0x41,0x33,0x8b,0xb9,0x34,0xef,0x1a,0x6b,0x80, +0xb1,0x04,0xa0,0x28,0xa0,0x33,0xfe,0x0a,0x8d,0x29,0xc5,0xc9, +0x9d,0xa8,0x54,0x4b,0x25,0xcd,0xb7,0x7e,0xbf,0xec,0xff,0xa8, +0x54,0xff,0xaf,0x55,0xdd,0x56,0x59,0x9b,0x9b,0x4c,0xc3,0xfa, +0x6d,0x55,0xf7,0xce,0xed,0xbe,0xfb,0x4d,0x8f,0xa5,0x4a,0x75, +0xc3,0xbf,0x2b,0xd5,0x6e,0x14,0xaa,0xf5,0x08,0x01,0xa4,0xb4, +0xaa,0xa4,0x33,0xbb,0xde,0xaa,0x90,0x8f,0x72,0x0f,0x71,0x0e, +0xf0,0x6d,0x0d,0xe0,0xf1,0x3d,0xf8,0xc8,0x88,0x52,0x2d,0x8e, +0x69,0x2d,0x89,0xac,0xf3,0xe9,0x0a,0x2a,0x55,0xb4,0x97,0x16, +0xa3,0x5c,0x73,0x3c,0x14,0x71,0x2e,0x1e,0x18,0x82,0x39,0x82, +0x29,0xce,0x19,0x81,0x03,0xcc,0xf8,0x00,0xc2,0xbf,0x8b,0xb0, +0x7f,0x17,0xa3,0x59,0xa9,0x08,0xeb,0x27,0x15,0xa3,0xe5,0x5e, +0x89,0x04,0x02,0xc4,0xb9,0x18,0x00,0x1b,0xd6,0xa3,0x1f,0x36, +0x0e,0x43,0x0c,0xc5,0x72,0x15,0xc3,0x50,0x01,0x3b,0x71,0x17, +0xbe,0xcb,0x66,0x5b,0x29,0xfc,0xcc,0xb4,0xa5,0x67,0x52,0xfe, +0xe2,0x8b,0x91,0xcf,0x59,0x98,0x02,0x3b,0x08,0xbe,0x8b,0xf9, +0xd2,0x76,0xae,0xbf,0x5c,0xc3,0x88,0xe1,0x03,0xc7,0xbb,0x3e, +0x0f,0x46,0x60,0x41,0x11,0x2c,0x8e,0x87,0x55,0x5c,0xd3,0x08, +0x3a,0x33,0x29,0x3d,0x49,0x7d,0x09,0xfd,0x16,0xd2,0x21,0xd3, +0x0b,0x82,0x71,0x99,0xe1,0x62,0x8e,0xe2,0xff,0xd9,0xaf,0x61, +0x59,0x1f,0x2e,0xfb,0xd5,0x6a,0x29,0xaa,0x5a,0x82,0xea,0x6a, +0x9c,0x8e,0x25,0xbf,0xb0,0xd1,0x7b,0x1d,0x57,0xef,0xda,0x58, +0x65,0xc9,0x3f,0x7e,0x5d,0xf1,0xf8,0xd2,0x18,0x45,0x78,0x4f, +0x7b,0xa1,0x81,0x49,0xb8,0x78,0xfe,0xd2,0x29,0xe5,0xef,0x71, +0x69,0x5b,0xdd,0x4a,0x58,0x16,0x9b,0x7a,0xe2,0xfc,0xd1,0x18, +0xc5,0x98,0x13,0x0a,0xa7,0x1f,0xc1,0x6c,0x98,0xc3,0x94,0x39, +0x67,0x95,0x64,0x54,0xa4,0x57,0x29,0x26,0xab,0xe5,0xaf,0xaa, +0x5b,0xeb,0xae,0x61,0xb9,0x77,0xaf,0x66,0xb5,0x39,0x3f,0x36, +0xd6,0x7b,0xbb,0xf1,0x7e,0xcd,0xbe,0x36,0xcd,0x41,0x2d,0x6e, +0x7c,0x16,0xec,0x25,0x81,0xf5,0xc1,0x35,0x21,0x95,0x8d,0x30, +0x33,0x07,0x3e,0x4c,0x84,0x8d,0x34,0xab,0x71,0x6c,0xd2,0x8d, +0x84,0x91,0xcb,0x03,0x66,0x17,0xf9,0x33,0x56,0x27,0xf5,0x4e, +0xe8,0x70,0xea,0xa6,0x0f,0x99,0x43,0xaa,0x11,0x8b,0xc2,0xb6, +0x52,0x4e,0xed,0x5e,0xe3,0xe2,0xbf,0xcb,0xed,0x80,0x99,0x5e, +0xad,0x3d,0x3f,0x70,0xbd,0xf9,0x76,0xc5,0xa3,0xfc,0xc0,0x3c, +0x7f,0xa9,0xa6,0xf6,0xb3,0x70,0x9d,0x9c,0xc2,0x39,0xd1,0xc8, +0xb9,0x2e,0xf2,0xfa,0xed,0x30,0x4c,0x3d,0x09,0x3c,0x37,0x3e, +0x13,0x9b,0x29,0xfb,0xcf,0x7e,0x49,0xd9,0xff,0x5d,0xca,0xfe, +0xdf,0x3f,0x82,0xef,0xfa,0xe0,0xa4,0xb0,0x92,0xb0,0xe2,0xb0, +0x42,0x0e,0xbe,0x07,0x3f,0x82,0x9a,0x07,0x40,0x93,0x85,0x59, +0xd2,0xa9,0xcc,0x9a,0x0f,0x51,0x93,0x1a,0xca,0x6f,0x0f,0x88, +0x57,0x33,0x65,0xc3,0x35,0x1d,0x30,0xbd,0x08,0x3e,0x48,0xa6, +0x5c,0x78,0x22,0xdd,0xde,0x4c,0xfa,0x37,0x44,0x88,0xfd,0x2f, +0x44,0x08,0x93,0x20,0x82,0x7b,0xb3,0x5b,0x93,0x93,0xd7,0x2e, +0xbb,0xfd,0x7a,0x7a,0x34,0xdd,0x5e,0x93,0xd2,0xed,0xe7,0x54, +0xe3,0xde,0xe5,0x1e,0xdc,0x43,0x69,0x07,0x78,0x98,0x50,0x46, +0xf3,0xa3,0xfa,0x63,0xb0,0xed,0x13,0x5f,0x5b,0x82,0xd9,0x36, +0xb6,0x77,0xfe,0xe3,0x3f,0xb6,0xb1,0xb8,0xc1,0x96,0xe0,0x5c, +0x35,0x98,0xcb,0x42,0xc6,0x7c,0x9c,0xbb,0x58,0xba,0xc8,0xa5, +0xde,0x8a,0x93,0x61,0x2e,0x4c,0x66,0xc6,0xa3,0x70,0x84,0xa6, +0xc6,0xfc,0x97,0x99,0x6f,0x53,0x23,0x85,0x4f,0xd3,0xdd,0x17, +0x05,0x94,0x07,0x4a,0x7d,0xad,0xe4,0x25,0x83,0x44,0x4c,0xb3, +0x16,0xd2,0x98,0x56,0x0d,0x22,0xbe,0xb6,0x82,0x22,0x94,0xe1, +0x3c,0x26,0xc3,0x52,0x81,0x7e,0xb3,0x2d,0x3b,0x9f,0x1a,0x85, +0xad,0x74,0x76,0x8b,0xbb,0x8c,0xb8,0x9b,0xeb,0x18,0x18,0xc8, +0xaa,0xed,0xf8,0xab,0x4d,0xf7,0x6e,0x36,0x5d,0xe5,0xe0,0x50, +0x1c,0xe9,0x76,0xbe,0x73,0xa0,0xc5,0xbc,0xb9,0x89,0x97,0xb5, +0xef,0x7e,0x64,0xd3,0x48,0xfd,0xfc,0xb1,0x7c,0x05,0xc1,0x85, +0x4c,0xf2,0xf5,0xc4,0xb7,0x4e,0x71,0x9a,0x3a,0xc5,0x71,0x6d, +0x6e,0xb5,0xc9,0x37,0x14,0x55,0x84,0x2e,0x0a,0xde,0xd6,0x2a, +0x6b,0x92,0x35,0xbb,0x79,0xed,0xb4,0xdf,0xa7,0x3b,0x01,0x1c, +0x6f,0x75,0xdd,0xaf,0x7f,0x5c,0xed,0x55,0x23,0xab,0x75,0xa9, +0xeb,0xe0,0x5d,0xdb,0xdd,0x9b,0x3d,0xea,0xda,0x80,0x2b,0x00, +0xc5,0x24,0xd8,0xc0,0x5d,0x07,0x23,0xf2,0x4f,0xae,0x5f,0xb8, +0x0a,0xba,0x70,0x8f,0x1d,0xc0,0x7b,0x04,0x0c,0xc4,0x53,0x38, +0x9d,0x29,0xb8,0x9c,0x9c,0x51,0xa2,0x24,0x10,0x3c,0x8d,0x0b, +0x59,0x9c,0x1b,0xb3,0xdd,0x4a,0x5d,0xb9,0xc5,0xb7,0x66,0x30, +0xbb,0x3f,0xf9,0xaa,0x22,0xac,0x58,0xb2,0x84,0x49,0x93,0x7a, +0x70,0x24,0xc4,0x9f,0x3f,0x1f,0xaf,0x92,0x6e,0xa6,0xf0,0x0b, +0xd3,0x92,0x2d,0x15,0x77,0xba,0xf0,0x24,0x8b,0x94,0xc9,0x92, +0x67,0x30,0x6f,0x23,0x0b,0x5b,0xe6,0x3f,0x83,0x05,0x1b,0x59, +0x71,0x1b,0x7e,0x48,0x5e,0xc0,0xbc,0x75,0xd2,0x27,0x2f,0x60, +0xc1,0x3a,0x76,0xfc,0x30,0xba,0x50,0xa9,0xe5,0xbe,0xcc,0x7c, +0xc9,0xbd,0xa0,0x52,0x7b,0x3f,0x12,0x39,0x99,0x6a,0x40,0x49, +0x50,0x51,0x60,0x01,0x27,0xfc,0x16,0x48,0xe1,0xde,0x43,0x58, +0xc4,0xa0,0x1a,0x5a,0x91,0x8b,0x8f,0x14,0x60,0xd1,0x2e,0x0a, +0xb1,0x86,0xe4,0x6a,0x44,0xea,0xe8,0x72,0x33,0x91,0xea,0x58, +0x2a,0xe8,0x52,0x1d,0x9f,0xd0,0xe2,0x36,0xbe,0xad,0x69,0x2d, +0x0a,0x51,0x6f,0x70,0xab,0x73,0xa9,0x73,0xf4,0xdb,0xe5,0x72, +0x60,0xa2,0xa6,0x35,0x78,0xad,0xe5,0x76,0x15,0x25,0xfe,0x05, +0x3e,0x45,0x5e,0x0d,0xed,0xbc,0x5f,0x53,0x60,0x7d,0x60,0x4d, +0x2b,0xcc,0xcc,0x83,0x45,0x89,0x34,0xc8,0x75,0x82,0x39,0xf9, +0x27,0x3b,0x44,0x27,0x6f,0x0d,0x77,0xd9,0x1b,0x78,0x97,0x80, +0xa3,0x18,0x87,0x33,0x98,0x14,0x4b,0x85,0x5f,0x99,0x8e,0xec, +0x0c,0x3a,0x9f,0x5e,0x4c,0x63,0x31,0x9d,0xce,0xe7,0x1b,0x58, +0xbc,0x89,0x85,0x7d,0xf3,0xbf,0x81,0xe5,0x9b,0x58,0xd1,0x6d, +0x62,0x3e,0x8b,0xd7,0x49,0x9f,0xbc,0x80,0xe5,0x74,0x3e,0xa7, +0xd1,0x9b,0xe4,0x7d,0x9d,0xf3,0x3a,0xe3,0xe5,0x44,0x09,0x8b, +0x44,0xe3,0x0c,0x2f,0x9c,0x12,0x52,0x11,0x4a,0x79,0x0c,0x27, +0x0f,0xa7,0xe0,0x63,0xf3,0x7d,0x83,0x87,0x61,0x0f,0x38,0x58, +0xda,0x85,0xea,0x3f,0x9b,0x2f,0xc7,0x8d,0xb6,0xa0,0xca,0x44, +0xec,0x34,0xd9,0xb1,0x5e,0x83,0x3a,0xca,0xf3,0x27,0x9d,0x9f, +0x25,0x7c,0x4d,0x9d,0x77,0xb4,0x0f,0x46,0x13,0x98,0xa4,0x6d, +0x5d,0x9a,0xdf,0x6e,0xa3,0x0a,0xbf,0x44,0x03,0xe2,0x5b,0x7d, +0x49,0x6b,0x3c,0x4d,0x14,0x1c,0x27,0xd3,0x80,0x18,0x3f,0x28, +0x99,0xb8,0x65,0xac,0xb4,0xc6,0x23,0x21,0xca,0xc8,0xbf,0x75, +0xdf,0x2c,0x6b,0x71,0xf3,0xdc,0x69,0xbf,0x5f,0x47,0x67,0x42, +0xf7,0x3d,0x13,0xba,0xaf,0x7d,0xab,0x7b,0x97,0x09,0xdd,0x73, +0x72,0x63,0xe1,0x13,0xd2,0x8d,0xd7,0xd9,0x8c,0xe2,0xd4,0xe2, +0xa4,0xd2,0xaf,0x12,0x1e,0x27,0xdf,0x4b,0x97,0xb6,0xb4,0x29, +0x85,0x48,0x9d,0x23,0xf7,0xc6,0xa5,0xd8,0xf0,0x37,0x2e,0x8c, +0x5d,0x18,0xbb,0x74,0x3c,0xe4,0x68,0xf0,0xe1,0x50,0x0e,0x1d, +0x6c,0x60,0x2b,0x63,0x6f,0xa4,0x6f,0xb5,0xdb,0xb9,0xcc,0x86, +0xaf,0x2f,0xa8,0x2d,0xa9,0x2e,0x93,0xfa,0x87,0x7c,0x01,0x84, +0xad,0xf5,0x6b,0x08,0x6a,0x0a,0x2d,0xee,0xe2,0x77,0x37,0x1f, +0x18,0x70,0x19,0xe0,0x0c,0xe6,0x67,0x86,0xe4,0x84,0x16,0xd0, +0x6f,0x05,0x33,0x79,0x05,0xb9,0x85,0xd9,0xc5,0x9c,0x78,0x08, +0xbb,0x25,0xec,0x28,0xa9,0xfa,0x7b,0xaa,0xea,0xb9,0x51,0xc8, +0x7a,0x50,0x55,0x07,0x4c,0xa8,0x7a,0xd7,0x2b,0xf2,0x14,0xfc, +0xd4,0x59,0x1c,0x13,0xe3,0x08,0xfc,0x28,0x7c,0x82,0x95,0x38, +0x47,0x5a,0xc5,0xa0,0x0e,0xd2,0x92,0x95,0xd7,0xac,0x02,0x77, +0xc5,0x32,0x51,0x99,0xa5,0xb8,0x96,0x32,0x8f,0x43,0xfd,0x3d, +0x60,0x05,0xda,0x2c,0x5a,0x53,0x95,0x7c,0x0b,0xaa,0x9f,0xd0, +0x48,0xb0,0x55,0xfe,0x35,0x91,0x44,0x41,0x73,0xc3,0xdf,0x84, +0x60,0x51,0xd0,0xb6,0x66,0x97,0x06,0xe7,0x46,0x3b,0xaf,0x03, +0x0e,0x3a,0x86,0x46,0x54,0x14,0x23,0xa3,0x9d,0xd7,0xeb,0xee, +0xbe,0x2d,0xed,0x37,0x76,0xf2,0x41,0xb5,0xc1,0xd5,0x21,0x15, +0xbd,0x30,0xb3,0x18,0x16,0xa5,0x50,0xa8,0xd5,0x8c,0x8b,0x26, +0xc4,0x9a,0x30,0xc8,0xc1,0x0a,0x77,0x82,0x4e,0xf0,0x29,0x38, +0xb1,0x23,0xf3,0xe9,0x45,0x3c,0xbd,0x10,0xcf,0xe3,0x3a,0x02, +0x93,0x41,0x05,0x27,0x4f,0x34,0xc4,0x9c,0x0c,0x4b,0xe9,0xd5, +0xf8,0x3a,0x71,0x35,0x09,0xac,0x0a,0x2a,0x0f,0x2a,0xa5,0xd9, +0xef,0x35,0x9d,0xdd,0x2b,0xa9,0x86,0x13,0x81,0x33,0x9d,0x71, +0x32,0x27,0x78,0x52,0x72,0xf1,0x05,0x44,0xc3,0xf7,0x62,0x3c, +0x7e,0x0f,0x21,0x3b,0xb0,0xc8,0x9c,0x7a,0xff,0x87,0x43,0xf0, +0x21,0x54,0x0d,0xb0,0xf8,0x1c,0x4a,0x09,0x6e,0x7d,0x49,0x25, +0x3b,0x24,0x81,0xad,0xdd,0x14,0x62,0x29,0xdb,0x12,0xd8,0xba, +0x0a,0xb7,0x32,0x10,0xf2,0x23,0x81,0xdd,0xab,0x70,0x37,0x33, +0x4b,0x1e,0x2e,0xcf,0x22,0xa3,0x26,0x86,0xa8,0x69,0x2d,0xec, +0xeb,0x61,0x0b,0xc5,0xc7,0xa4,0x4f,0xac,0x60,0x8b,0xca,0x0a, +0xca,0x73,0x4a,0x82,0xe3,0x79,0x70,0xc5,0x6e,0xf6,0x62,0xc1, +0xf9,0xfc,0xf3,0xf9,0x1c,0x54,0x82,0x13,0x3e,0xc3,0xe5,0xcc, +0x47,0xa7,0xd7,0xe9,0xac,0x53,0xee,0x70,0x6c,0xbe,0x92,0x77, +0x3d,0xe9,0xaa,0x22,0x9d,0x45,0x22,0x7b,0x30,0x28,0x34,0x30, +0x28,0x80,0xc3,0x21,0x4b,0xb8,0xcc,0xc8,0xbc,0x5c,0x3d,0x1d, +0xbd,0x1f,0x1c,0x7e,0x15,0xf9,0x7b,0x98,0x9a,0x3f,0xd2,0x24, +0xa3,0x71,0x32,0xd3,0x9c,0x07,0xe7,0x44,0xd8,0x54,0x02,0xb3, +0xfb,0x60,0x56,0x10,0x10,0x3f,0x98,0xe1,0x57,0xda,0xc3,0xe3, +0xe4,0x12,0x9c,0x52,0xac,0x56,0x70,0xa3,0xbe,0xa7,0xb3,0x61, +0x84,0x13,0xe7,0x09,0xb7,0x89,0x2a,0x06,0xfe,0xce,0x0a,0x51, +0xa8,0x48,0x62,0xca,0x0e,0xd6,0x1d,0xc9,0xb5,0x39,0xc8,0x67, +0x84,0x67,0x7b,0xa5,0x04,0x71,0x2b,0x71,0x21,0xb1,0x96,0x7a, +0xb3,0x0e,0x53,0x29,0xe9,0xf7,0xa0,0xfe,0xe7,0xe0,0xd2,0x8d, +0x1f,0xb0,0xb9,0x65,0x59,0x55,0x69,0xe5,0x56,0x59,0xfc,0x51, +0x9f,0x43,0x9e,0x21,0x6e,0x1c,0xa6,0xda,0x80,0xf1,0x4e,0x46, +0x74,0x59,0x4a,0x60,0x26,0x98,0xe2,0x4c,0x16,0x16,0xe0,0x0d, +0xf2,0x71,0xee,0xe6,0xac,0xbd,0x69,0xe5,0x85,0xa5,0x25,0x25, +0x14,0x54,0x7e,0xc5,0x38,0x59,0x58,0xba,0x68,0xfa,0x72,0xb3, +0xe4,0xf3,0x6f,0x12,0xbf,0x66,0xbf,0x86,0x80,0xba,0x66,0x98, +0x93,0x03,0x4b,0xce,0xc3,0x0e,0xae,0x0e,0xdf,0x63,0x13,0xc6, +0x2e,0x5d,0xb9,0x38,0x6c,0x79,0x81,0x3f,0x6b,0x76,0x5a,0x2f, +0x56,0x9b,0x3b,0x60,0x7e,0x9d,0x39,0x8a,0x93,0xa2,0x70,0x72, +0xc4,0xe6,0x06,0xd7,0x7a,0xd7,0x3a,0xc7,0x00,0x0d,0xd7,0x03, +0xe6,0xfa,0x75,0xae,0x7c,0xdf,0xd5,0xa6,0x5b,0x15,0x0f,0x8b, +0x7c,0x8b,0xbc,0x8b,0x65,0x9c,0xf8,0x9e,0x30,0x97,0x80,0x82, +0xa0,0x82,0x45,0xa2,0x0a,0x4c,0xf2,0x65,0xa2,0x3e,0x8d,0x3a, +0x17,0xad,0x2c,0x9d,0xa5,0xa0,0xc8,0x1c,0xc6,0x95,0xb6,0x1f, +0xef,0x3c,0x50,0xe5,0xc6,0x7f,0xfb,0x78,0xf0,0xf7,0x4c,0x1a, +0x29,0xbe,0x64,0xce,0x6d,0x39,0xb3,0xfe,0xa4,0x31,0xe7,0x72, +0xea,0x68,0x8c,0xd7,0x42,0x4b,0x26,0xd5,0x46,0xa1,0x9f,0x19, +0x2c,0xce,0xbd,0x99,0xa4,0x92,0xf4,0xf9,0xe5,0x3f,0x80,0x53, +0xa2,0x51,0xfd,0x7c,0xf6,0xa7,0x39,0x39,0x4a,0xc2,0x77,0x66, +0xe4,0x7c,0xf6,0x79,0x7a,0x55,0x06,0x1c,0xbd,0x41,0x15,0xbd, +0x81,0x42,0x00,0x1b,0xf9,0x69,0xe4,0xb9,0x28,0x65,0x7c,0xcf, +0x06,0xde,0x65,0x0e,0xe1,0x32,0x8b,0x35,0xeb,0x34,0x29,0x59, +0xfa,0xe9,0xee,0x4d,0x78,0x27,0x87,0x5a,0xe0,0xd3,0x89,0x3b, +0xc4,0xd2,0x3b,0x9c,0x3e,0x72,0xdc,0x6b,0xa1,0x05,0x93,0x66, +0xad,0x30,0x40,0xef,0x90,0xf3,0xef,0x3b,0x4c,0x53,0x1a,0x4f, +0x83,0x51,0x62,0x08,0x73,0x46,0x99,0x8e,0x89,0xc5,0x81,0x31, +0xea,0x27,0x42,0xe8,0x7c,0x1d,0x98,0x73,0xf3,0xef,0x4f,0xee, +0xd0,0x4f,0x44,0x6b,0xbc,0x49,0x72,0xbf,0xcd,0xfe,0x29,0xe5, +0x0d,0x0d,0x44,0x71,0xa8,0x7c,0x04,0xdf,0xf3,0xc1,0x77,0xa4, +0xda,0x03,0x0d,0x44,0x98,0x02,0x79,0x04,0x17,0x18,0xc2,0x02, +0x16,0x26,0xcd,0x1f,0xc3,0x05,0xda,0x8c,0xd0,0x02,0x0b,0xe8, +0x47,0x3a,0xd2,0x47,0x0a,0xf3,0xef,0xe0,0x02,0xe9,0x54,0xc6, +0x5b,0x77,0x89,0x7f,0xb3,0x5f,0xa3,0x7f,0x5d,0x23,0xcc,0xca, +0x86,0x45,0x17,0xa8,0x0c,0xea,0xf0,0x1d,0x9a,0xf6,0xe3,0x47, +0x2e,0x0d,0x5a,0x5d,0xe2,0xcf,0x98,0x9f,0xd4,0xa7,0x69,0x7f, +0x93,0x05,0x8d,0xbc,0xd2,0x52,0x9a,0x7a,0xbd,0x5b,0x9d,0x24, +0xec,0xed,0xae,0xfb,0xcc,0xf5,0xea,0xdd,0xf8,0xfe,0x6b,0x13, +0xc2,0xf6,0x2b,0xf4,0x2e,0x92,0x71,0x72,0x5d,0x39,0x43,0x70, +0x1f,0x93,0x7c,0x35,0x71,0xf4,0xf2,0x90,0xc5,0x65,0xfe,0xb4, +0xe9,0x49,0xfd,0xe3,0xba,0xdc,0x2a,0x8b,0x6f,0x99,0xa8,0xa5, +0xa1,0x4b,0x82,0x3f,0xa9,0x77,0xae,0x73,0xac,0xb5,0xf7,0xda, +0xe5,0xa4,0x69,0x69,0x54,0xef,0xcc,0xf7,0x5e,0x69,0xbd,0x59, +0x73,0xaf,0xde,0xaa,0xd6,0xa2,0xda,0xac,0xa9,0x85,0x77,0xbf, +0xe2,0x3c,0xea,0x3a,0xd0,0x03,0xb3,0xcb,0x61,0x51,0x32,0xac, +0xe7,0x1a,0x19,0x31,0x90,0x42,0x4e,0x78,0x8f,0x4a,0xb7,0x8b, +0x4a,0x77,0x66,0x30,0x13,0xf1,0x69,0xe4,0xd9,0x48,0x65,0x5c, +0x60,0x07,0xf3,0x98,0x68,0x5c,0x65,0xf6,0xd1,0x12,0xed,0x0a, +0x67,0xca,0xc0,0x1e,0xdc,0xfc,0x23,0x1b,0xf6,0x70,0xdf,0x32, +0xe7,0x36,0x9d,0x5d,0x1b,0x63,0xc8,0xb9,0x9f,0x3c,0x76,0xd2, +0x6b,0xa1,0x39,0x93,0x6e,0xad,0xd0,0xcb,0xf4,0x55,0xe6,0x8d, +0x25,0xa9,0xa4,0xdc,0xbf,0xf4,0xdd,0x79,0xf8,0x80,0xc3,0x0f, +0x99,0xf3,0x39,0x9f,0xe6,0xe6,0x2a,0x59,0xc1,0x25,0x72,0x00, +0x66,0xdd,0x61,0x7a,0x70,0x16,0x81,0x59,0xf7,0x70,0x16,0x2b, +0xda,0xe3,0x55,0x92,0xff,0x2c,0xf7,0x87,0xf4,0xd7,0xdc,0x4d, +0x2a,0x54,0xfe,0x08,0xce,0xf0,0x5b,0x14,0x5c,0x1e,0x52,0x1a, +0x56,0xc4,0xc9,0xb5,0x68,0x18,0xa8,0x09,0xa9,0x08,0x2b,0x29, +0xf8,0x86,0x86,0x81,0xd7,0xdc,0x73,0xe6,0xa4,0x14,0x4c,0xe7, +0x38,0xe3,0x54,0x0e,0xff,0x82,0xbf,0xa8,0x74,0x0f,0x48,0xd2, +0x9d,0x39,0xff,0x1e,0x2e,0xd8,0xc7,0xcc,0xfa,0x8b,0x93,0xdb, +0x92,0x95,0x03,0xb0,0x1c,0xe3,0xa5,0x8d,0xde,0xa7,0x70,0x79, +0xff,0x4f,0xac,0xf5,0xf8,0xfb,0xc4,0xb9,0xc3,0xad,0xd9,0xbd, +0xbe,0x1d,0xb8,0x42,0x29,0xda,0x6f,0x7c,0xbb,0xa2,0xff,0xbf, +0xd6,0x3c,0x8e,0x69,0x4d,0xac,0xe8,0xbf,0x2d,0x11,0xb5,0xc9, +0x5a,0x3d,0x5a,0x5d,0x65,0x3b,0x6c,0xf6,0x69,0x6b,0x4b,0x2b, +0xfa,0xb7,0x7b,0x1f,0x34,0x3e,0xad,0xf3,0xac,0xf5,0xa8,0x77, +0xe6,0x1e,0x37,0x10,0x21,0x00,0xfe,0x85,0xe5,0xcc,0xd3,0xa2, +0x9f,0x9b,0x5e,0x5f,0xf1,0xab,0xe3,0x8d,0x3d,0x75,0x7d,0x0f, +0x04,0x73,0x7f,0xc2,0xbe,0x76,0xf1,0x03,0x07,0xd8,0x82,0x73, +0xd9,0x8d,0x01,0x6b,0xc3,0x56,0x44,0xa6,0xd9,0xf1,0x45,0x97, +0x0b,0x2e,0xe7,0x5f,0xe6,0xb0,0xdf,0xea,0x2d,0x90,0x7f,0xbb, +0x4c,0x3e,0x2f,0x12,0xa7,0xb9,0xa9,0xfa,0x97,0x4e,0xec,0xba, +0x80,0x2a,0x98,0x45,0x86,0xca,0x7a,0x6b,0x5b,0x1a,0x7d,0xaa, +0x79,0x2f,0x6f,0x6b,0x99,0x49,0x20,0xf7,0x0b,0x6e,0x24,0x57, +0xe1,0x5f,0x06,0x2c,0xfe,0x4b,0x95,0x5c,0x83,0x7f,0xe9,0xd3, +0x0b,0x9c,0x42,0x6e,0xc1,0xbf,0xb4,0x58,0xf1,0x1c,0x85,0xf5, +0x8f,0x72,0x61,0x52,0xdd,0xb5,0x6a,0x9f,0x46,0xde,0x3e,0x78, +0x9d,0xf7,0x47,0x11,0x9c,0xf0,0x4e,0x35,0xf9,0x22,0xfa,0x3b, +0xaf,0x5b,0x3e,0xc5,0x9d,0xfc,0x81,0xca,0x75,0x35,0x7b,0x33, +0xa8,0x77,0x6f,0x91,0x57,0x93,0xe4,0xac,0xa4,0xec,0x84,0x6c, +0x63,0xa9,0x7b,0xd4,0xf1,0x88,0x63,0xe1,0x1c,0xda,0xe0,0x75, +0xe1,0x08,0x5c,0x67,0xc4,0x81,0x71,0x0b,0xe2,0x57,0xef,0x5f, +0x13,0x58,0xd9,0x0b,0x33,0x4a,0x41,0xf9,0x2d,0x03,0x5c,0xf1, +0xf7,0x7e,0x8f,0xff,0x32,0x03,0x35,0x69,0xdf,0x94,0x5a,0x30, +0x65,0x06,0x6d,0x6e,0xcd,0x2e,0x2d,0x0e,0xb2,0x7d,0xb6,0x3a, +0xba,0x86,0x94,0x19,0x5c,0xbf,0xd6,0x33,0xd6,0x70,0xbf,0x38, +0xa0,0xd8,0xb7,0xc4,0x8b,0x13,0xea,0xe5,0x6b,0x88,0x38,0xb3, +0x4b,0x98,0xc9,0xe0,0x87,0x53,0xdf,0x5e,0x8c,0x7b,0xe0,0xb7, +0x13,0x33,0xcf,0x91,0xf6,0x59,0xc4,0xa0,0x62,0x04,0xce,0x70, +0xa4,0x14,0xa6,0xca,0x5f,0xaa,0xff,0xc0,0x8f,0xf0,0x29,0x11, +0x66,0x9a,0x8b,0x33,0x99,0xed,0xeb,0x08,0x1e,0x11,0x2a,0xe1, +0x08,0x8b,0x3d,0xd2,0xde,0xdf,0x41,0xd0,0x66,0x06,0xcd,0xc8, +0x20,0x18,0x98,0xb1,0x78,0xca,0x9d,0x98,0xa0,0xf6,0x30,0x0b, +0x31,0xf3,0xc1,0xc0,0x04,0x29,0xf5,0x7e,0xbc,0x9a,0xd8,0xc0, +0x36,0x36,0xd2,0x60,0xaf,0x0b,0xce,0x89,0xcc,0xb1,0xe6,0x61, +0x69,0xc1,0x8b,0x2b,0x05,0x2f,0x38,0xd8,0x86,0xbb,0xae,0xc0, +0x2e,0x58,0x22,0x9d,0x35,0xdb,0x2f,0x61,0xba,0xf7,0x28,0xa6, +0x4b,0xb8,0xf2,0xf7,0x3a,0xf5,0x49,0x09,0xd3,0x4d,0xc0,0x9a, +0x89,0x75,0xea,0x46,0x97,0x5a,0x97,0x1a,0x07,0xbf,0xbd,0xae, +0xda,0x66,0x86,0x14,0xd6,0xf4,0x8f,0x36,0xdf,0xa8,0xbc,0x9b, +0x1d,0x92,0x1d,0x94,0x1d,0x48,0x61,0x8d,0xf6,0xab,0x36,0x78, +0x2f,0x1f,0x16,0x25,0xc1,0x76,0x45,0x88,0x13,0xa7,0x90,0xd8, +0x94,0xd8,0xcb,0x31,0x31,0x31,0xc7,0xf8,0x53,0x0f,0x80,0xa3, +0x39,0x87,0xfb,0x01,0xf8,0x3e,0xe4,0x5f,0x59,0xad,0x41,0xde, +0x12,0xf8,0x8f,0x90,0xc1,0xa2,0x9f,0x99,0xe8,0xbd,0xae,0x1b, +0xd5,0x37,0x94,0x9a,0xf2,0x4f,0x5e,0x54,0xdc,0x4c,0xf8,0x8a, +0x8b,0xc7,0xa7,0x7d,0x94,0x36,0xc4,0x5f,0x90,0xda,0xeb,0x3e, +0xc3,0x79,0x75,0x6d,0x0a,0xf9,0x82,0x2e,0xf9,0xbe,0xb9,0xf9, +0x6a,0xca,0x13,0xee,0x0d,0x73,0x4e,0x16,0xe7,0x76,0x3a,0x94, +0x8b,0x38,0x73,0xfc,0x84,0xcf,0x42,0x7d,0x09,0xfe,0xdd,0x60, +0x7a,0x0b,0xd2,0x9b,0x92,0x54,0x12,0x2b,0x2f,0xb6,0x9e,0x7f, +0x45,0xad,0xc7,0xf6,0x25,0x13,0x6b,0xe4,0xe7,0xa8,0xe1,0xc9, +0x89,0xa9,0x58,0x4f,0xf2,0xbe,0x99,0x58,0x98,0xfe,0x4c,0x02, +0xc5,0x87,0x70,0xa6,0x0c,0xa7,0x84,0xbd,0x5d,0xd1,0x83,0x6f, +0xc1,0x87,0xa0,0x86,0x3e,0x68,0xb0,0xa0,0x83,0x1a,0x44,0x07, +0x34,0x6e,0x32,0xc2,0x54,0xd1,0x80,0x08,0x3a,0x34,0x20,0xeb, +0xb0,0x10,0x24,0x28,0x91,0x6d,0xb8,0xe3,0xb1,0x54,0xa3,0x9b, +0x4b,0xb6,0xe2,0x8e,0x27,0xd2,0xd5,0x3c,0xb2,0x11,0x77,0x3c, +0x63,0x7f,0xa6,0x86,0xd5,0xe2,0xd9,0xee,0x5c,0xef,0x50,0x4f, +0x91,0x71,0xab,0x53,0xb3,0x43,0x0d,0x87,0x71,0xb8,0x85,0x0c, +0x56,0xf6,0xb4,0xd5,0x75,0x7a,0xd4,0xf0,0x32,0x27,0x47,0x77, +0x0b,0x7f,0x6a,0x58,0xed,0xfd,0xa4,0xb7,0xb8,0xbd,0xb2,0xa6, +0xca,0xa3,0x9e,0xf7,0xf3,0xb2,0xf1,0xb1,0x0a,0x0e,0x2c,0x0f, +0xab,0x39,0xd8,0xc0,0x41,0x4a,0x27,0xee,0xba,0x05,0x2b,0xdb, +0x71,0xe5,0x0d,0xd8,0xd4,0x8e,0x9b,0xae,0xc3,0x7c,0xca,0xdb, +0x2e,0xe3,0x86,0xdb,0x7a,0xa8,0x7d,0xfd,0x1a,0xbd,0xfe,0x14, +0x37,0x00,0xaf,0x87,0x1f,0x3b,0xc0,0xc7,0xba,0xb8,0xc4,0x01, +0x96,0x68,0xe1,0x76,0x3b,0x88,0x62,0xac,0x1c,0x97,0x78,0xac, +0x0e,0x97,0x58,0x51,0x70,0x55,0x3b,0xcc,0x2c,0x90,0x24,0xbf, +0x95,0x6b,0xc4,0xf7,0x29,0x84,0x48,0x18,0x8d,0x1f,0xf8,0xef, +0x4e,0x83,0x0d,0xa6,0x8f,0x99,0x28,0xca,0x8a,0x42,0xb6,0x49, +0x8b,0xad,0xf5,0x8e,0xbe,0x7b,0x9d,0xb5,0x4c,0x0d,0xeb,0xec, +0xf8,0xc1,0xab,0x2d,0x37,0xab,0xef,0xe7,0x07,0x14,0xf8,0x15, +0x78,0x57,0x35,0xf0,0x19,0xee,0xfd,0x69,0x83,0xd9,0x3d,0xf9, +0x8a,0x8b,0x58,0xe7,0xd3,0xf4,0xdf,0xc4,0xb1,0x09,0xb3,0x52, +0x61,0x5e,0x2e,0x4c,0x2e,0x88,0xeb,0xe2,0x4d,0x8f,0x19,0x1e, +0x37,0x38,0xce,0xc1,0xfb,0x6c,0x7d,0x5e,0x55,0x61,0x61,0x19, +0x97,0xc0,0x8c,0xe0,0xdc,0xaf,0x37,0xc2,0x26,0xc3,0xa2,0x2e, +0xfe,0x40,0xb1,0x55,0xa9,0x6b,0x15,0x87,0x2a,0x72,0xef,0x89, +0x43,0x21,0xf2,0xec,0x84,0xdf,0x3a,0x59,0x71,0x0e,0x45,0x48, +0xfb,0x70,0xf5,0x3d,0x56,0xb0,0x9c,0xbf,0x0f,0x3f,0xba,0xc7, +0x8a,0xcf,0xf1,0xce,0xbf,0x75,0xf2,0x58,0xd2,0x09,0x85,0xa8, +0x1e,0x38,0x39,0xa4,0x3c,0xb4,0x54,0x5a,0x65,0xfd,0xeb,0x7b, +0xa2,0x8b,0xda,0x37,0x58,0xd0,0xc6,0x77,0x88,0x16,0x6a,0xdf, +0xa2,0xd0,0xea,0xf9,0x3d,0xe2,0xd1,0xe9,0xd5,0xe2,0xd3,0x50, +0x0f,0xd3,0xb3,0xe1,0x83,0x84,0x09,0x04,0xca,0xb2,0x49,0x63, +0x09,0xa3,0x97,0x87,0x25,0xf6,0x67,0x76,0x52,0x97,0x02,0xf0, +0x6d,0xa6,0x0f,0x98,0xc3,0xaa,0x07,0x17,0x87,0x6e,0xa9,0xf7, +0xa8,0xf3,0xa8,0x75,0x0b,0xd8,0xe6,0xba,0xdb,0x54,0xbb,0xd6, +0x81,0x1f,0xbc,0xd5,0x72,0xbf,0xf2,0x49,0xb9,0x57,0xb9,0x47, +0x85,0x0b,0x45,0xf5,0x9e,0xc4,0xbf,0x3e,0xb4,0x2f,0x6a,0xac, +0xeb,0xbb,0xca,0x5f,0x0b,0x61,0xaa,0x7d,0x26,0x1f,0xf5,0x71, +0xd8,0x56,0x9f,0xbd,0xd1,0x2f,0x62,0x61,0xca,0x59,0x78,0x9f, +0x03,0xf5,0x6e,0x54,0x87,0x18,0x2b,0x8c,0x11,0xd7,0xdb,0x00, +0xb7,0x75,0x91,0xdd,0x9f,0x3b,0x70,0xb2,0x3d,0x4c,0x56,0xc7, +0xa9,0x76,0x30,0x15,0x27,0x33,0x0e,0xb1,0x0e,0xa7,0x9c,0x4e, +0x27,0x59,0xf2,0xa0,0x94,0x0d,0x4b,0x4a,0x61,0x7a,0x8d,0x9f, +0x8f,0xa7,0x9f,0x73,0x60,0x99,0x23,0x7f,0xbb,0x73,0x60,0xb0, +0xe5,0x5a,0x8e,0x49,0x91,0x5d,0x85,0x77,0xb9,0x57,0x73,0xfc, +0xe5,0xbe,0x0c,0xd8,0xc5,0x3b,0x66,0x2b,0x88,0x47,0x84,0x06, +0x72,0x39,0xf1,0xd2,0xb9,0xf8,0x93,0x9f,0xaf,0xe3,0xdb,0xea, +0x73,0x0b,0x32,0x0b,0x2e,0x27,0xc5,0xd3,0xff,0xbd,0xb1,0x95, +0xaf,0xab,0xd0,0x7b,0x7c,0x32,0xe9,0xf8,0x85,0x98,0x58,0xc5, +0x13,0x27,0xe3,0x2e,0x2a,0x24,0xe6,0x5f,0xac,0x28,0x52,0x2a, +0xb6,0x0d,0x62,0xad,0x4f,0x05,0xd9,0x3a,0x29,0x3b,0xf7,0x9c, +0x48,0x3e,0x7e,0xe1,0x78,0xac,0xe2,0xc9,0x53,0x67,0x2e,0x2a, +0x24,0xe5,0x5e,0x2a,0xcb,0xa7,0x3f,0x0d,0x66,0x6d,0x62,0x3c, +0xf6,0x9b,0x2a,0x97,0x3a,0x37,0xd7,0xe4,0x96,0x66,0x14,0x2a, +0x0a,0xf1,0x36,0x24,0xb4,0xdb,0x63,0xd4,0xa7,0xd1,0x35,0x88, +0xaf,0x92,0xd5,0xea,0x17,0x59,0x73,0xe3,0xb9,0x94,0x19,0xe6, +0x7e,0x93,0xf5,0x2a,0xfd,0x15,0x77,0x87,0xe6,0x84,0xd9,0x94, +0xd8,0xfa,0x2d,0x92,0x58,0x6d,0x18,0x05,0xbe,0x5a,0x10,0x4e, +0xc4,0x40,0xd6,0xf0,0x98,0x82,0x70,0x88,0x85,0x50,0x51,0x9b, +0x78,0x1d,0x97,0x9d,0xf0,0x88,0xe5,0x7e,0xf8,0xa3,0x73,0xf1, +0xa3,0x9f,0xdb,0x97,0x3f,0xf8,0xad,0x43,0xed,0x0b,0x50,0x64, +0x2f,0xe0,0xe2,0x54,0x5c,0x5c,0x8a,0x6c,0x54,0x40,0x44,0x60, +0x58,0x30,0xe5,0x04,0x8f,0xde,0x90,0xa0,0x9a,0xa0,0xaa,0xe0, +0x0a,0xca,0x7d,0x0b,0x41,0x39,0x69,0x82,0xfb,0x2e,0x64,0x93, +0x27,0xb8,0xaf,0xe9,0x7f,0xb8,0xef,0x1a,0x93,0xaf,0xa5,0x52, +0xf3,0xe2,0x60,0xf5,0x56,0xb7,0x46,0xb7,0x06,0x27,0xef,0x5d, +0x0e,0xfb,0xf5,0xf5,0xa8,0xf9,0x5d,0xbd,0xd1,0x79,0xa7,0xee, +0xf3,0xfc,0xa0,0x82,0x80,0x7c,0x3f,0x4e,0x50,0x96,0x5b,0x10, +0x88,0xeb,0x14,0x2b,0xed,0xe0,0x88,0x31,0x66,0xa2,0x5a,0xff, +0x21,0xd0,0x68,0xc7,0x9d,0x37,0xc1,0x1d,0xcf,0x0e,0xc3,0x59, +0x08,0xd4,0x41,0x2d,0x07,0xd0,0xce,0x1c,0x00,0x35,0x2c,0x65, +0xc4,0x41,0x51,0xe1,0x2d,0x73,0x7b,0x45,0x33,0x1d,0x35,0xa3, +0x48,0xca,0x77,0x71,0x52,0x50,0x79,0x70,0x29,0x25,0xbc,0xd0, +0x02,0xcb,0x88,0x03,0xec,0x6e,0x67,0xe1,0x43,0x07,0x02,0xba, +0xed,0xa8,0xcb,0xa0,0x1d,0x56,0x90,0x53,0xd7,0x61,0x72,0x27, +0x4e,0x7e,0x6c,0xb1,0x0d,0x67,0xd9,0xfd,0xc1,0x44,0x6f,0x75, +0xd6,0xfa,0x78,0x6b,0x95,0x3d,0xff,0xec,0x8b,0xea,0xeb,0x09, +0x9f,0x51,0xde,0x53,0xdd,0x0f,0x9f,0x32,0xf1,0x97,0xcf,0x5f, +0x3c,0xa5,0x7c,0x07,0xe7,0xb5,0x96,0xef,0x87,0xf7,0x63,0xd3, +0x63,0x2e,0x46,0xc7,0x28,0xc2,0x01,0xac,0xa1,0x1c,0x68,0x87, +0xe3,0x80,0x60,0x8a,0xe5,0xa2,0x29,0x0b,0x21,0xf0,0x84,0xe0, +0x8e,0xdb,0xb0,0x83,0xc1,0x1d,0xc8,0x12,0xd8,0xa1,0x89,0x3b, +0x18,0x87,0xa9,0xb0,0x63,0x37,0x7d,0x9f,0xf5,0xd7,0x6e,0xe9, +0x10,0x8d,0x19,0x81,0xf8,0x41,0x28,0x2e,0x3e,0xc8,0xdd,0x65, +0x41,0x6d,0x08,0xe6,0x3e,0xbb,0xf5,0x9a,0xeb,0x1d,0x3f,0x69, +0x20,0x5f,0xc5,0x1a,0xee,0x47,0xee,0x00,0xaa,0xd8,0x71,0x14, +0x76,0xe2,0xa2,0x68,0x54,0x3b,0x8a,0x2a,0xa7,0x2e,0xe9,0xf2, +0x92,0x85,0xab,0xa5,0x81,0x4a,0x96,0xd4,0x9e,0xe7,0x08,0x9b, +0xa1,0xaf,0x00,0x6e,0xcc,0x60,0x41,0xfe,0x80,0x0a,0x7c,0xc3, +0xc2,0xd2,0x5c,0x50,0x2e,0x82,0x19,0x65,0xdc,0xac,0x3b,0xf0, +0x86,0xc0,0xb1,0x7f,0x7c,0x0d,0x8b,0x2e,0x51,0x8f,0x80,0x74, +0xe6,0x98,0x55,0xb4,0xd9,0x61,0x07,0x8e,0x4e,0xc0,0xfe,0x9c, +0xe3,0x09,0x47,0x65,0xd7,0x93,0xd1,0x87,0x9c,0x17,0x6e,0x65, +0xb2,0x2c,0x14,0xae,0x32,0xdf,0x54,0xe5,0x7f,0x9d,0xae,0x92, +0xd8,0x75,0xf1,0xce,0xb9,0x47,0x1c,0x46,0x33,0x29,0x0d,0x29, +0xcd,0x09,0xd5,0x5c,0xd3,0x38,0x6b,0x06,0x31,0xec,0x69,0x5c, +0xbd,0x53,0x0d,0xdd,0xd6,0x71,0xc2,0x29,0x5c,0x46,0x5a,0xd8, +0x5b,0xd5,0x9f,0x77,0xb6,0x0d,0x72,0x7d,0xe2,0x7e,0x33,0xf8, +0x85,0xf5,0xf4,0xd4,0xf6,0xd0,0xf2,0xe3,0xf6,0x8a,0x1b,0x4d, +0x85,0x8d,0xe8,0x84,0x3a,0x6c,0x96,0xb9,0x02,0xe5,0x0c,0xad, +0x39,0x99,0x4d,0x2a,0xe0,0x20,0xac,0x91,0x4e,0x6c,0xbd,0x20, +0xb7,0x9c,0x78,0x24,0xf0,0x64,0x3e,0xec,0xea,0x09,0xea,0xe7, +0x2d,0x51,0x17,0xe3,0xa2,0xd0,0x77,0x61,0xc8,0x1a,0x9b,0x25, +0x1a,0xdb,0x7b,0xdd,0xf9,0x3b,0x0f,0xba,0x5e,0x95,0xbf,0xe0, +0x84,0x73,0xbe,0xa4,0x5f,0x77,0x60,0x6b,0xed,0xee,0x81,0x0a, +0xde,0xed,0x91,0xd5,0x97,0x66,0x37,0x38,0x3c,0x81,0xbb,0xc9, +0xa1,0xbe,0xb0,0xe1,0xb0,0x66,0x93,0x28,0xbe,0xc0,0xa9,0xc0, +0x2c,0xdd,0x92,0x06,0xb3,0x10,0xf2,0xa2,0xee,0x79,0xd7,0xe8, +0x08,0x37,0x20,0x8e,0x9a,0x0a,0x81,0xac,0xb9,0xeb,0x0e,0x4f, +0x75,0x3f,0x6e,0xa7,0xb8,0xc9,0x58,0xd8,0x84,0x66,0x68,0xc3, +0x66,0x9b,0x28,0x80,0x0e,0xd3,0x92,0x93,0xd9,0xae,0x02,0x46, +0xc2,0x07,0x23,0xe2,0x07,0x13,0x8f,0xba,0x3e,0x24,0xfa,0x1b, +0xc5,0xd5,0x66,0xc2,0xea,0x8f,0x45,0x06,0xcd,0x47,0xe1,0x03, +0xb9,0x1e,0x7e,0x30,0x0a,0xe6,0xe2,0xbc,0xef,0x85,0xed,0x83, +0xe2,0x76,0x26,0x51,0x8c,0x26,0x5f,0x95,0xfd,0xd6,0x3f,0x34, +0xc8,0x75,0x8b,0x23,0x16,0x82,0x0f,0x6b,0xeb,0xad,0xee,0xbe, +0x25,0x88,0xdb,0x2d,0x7e,0x62,0x46,0xe9,0xdf,0x4e,0x34,0x62, +0xb3,0xcd,0x14,0x60,0x03,0xd3,0x97,0x97,0xdb,0xab,0x02,0x6b, +0x85,0x4f,0x06,0x45,0xca,0xf3,0x1e,0x0a,0x0b,0xc8,0x4f,0xe5, +0x5f,0x56,0x5f,0x6f,0xea,0x09,0xeb,0x0e,0xed,0x08,0xae,0x69, +0xe3,0x1d,0xf3,0xe9,0xbf,0xdc,0xa1,0xce,0xc6,0xa1,0xc2,0x7b, +0x5c,0x0b,0x7a,0xb3,0x19,0x25,0x69,0xa5,0x69,0xe5,0x26,0x49, +0xfc,0x11,0x9f,0xc3,0xfe,0xd1,0x7e,0x1c,0xae,0xb3,0x86,0xb9, +0x4c,0xb8,0x67,0xb0,0x87,0xbf,0x4b,0x5f,0x44,0xcf,0xc1,0xee, +0x70,0x0b,0x7f,0xad,0x60,0xf5,0x50,0x4e,0x88,0x0e,0x22,0xf7, +0xca,0xae,0x56,0xf6,0xd6,0x8e,0x38,0xdc,0x72,0xfb,0xd2,0xb3, +0xb4,0x8b,0xdf,0x5b,0x61,0x50,0x6b,0xd1,0x78,0x77,0xb8,0x6b, +0xac,0xe2,0x0b,0xae,0x45,0x5c,0x65,0x05,0xaf,0xd8,0x20,0x63, +0x67,0x4b,0x23,0x7b,0xeb,0x36,0xb7,0x6e,0xdf,0x7e,0xdb,0x60, +0xbe,0xda,0xb8,0xd9,0xba,0xcb,0xc1,0xce,0xcf,0x34,0x40,0x37, +0x84,0xc3,0xcf,0x61,0x09,0xc9,0x2b,0xcb,0xad,0xc8,0xa9,0xe2, +0x40,0x8b,0x09,0x33,0x91,0xd9,0x5b,0xb8,0x39,0xe6,0x3a,0x67, +0xc9,0xa4,0xee,0xd3,0xe2,0x1c,0xf2,0x6d,0xc1,0x9f,0xed,0xd7, +0x5a,0xb9,0x5e,0xf1,0x07,0x2b,0xe1,0x24,0x6b,0x1d,0xb4,0xd9, +0x67,0x73,0x38,0x67,0x22,0x6e,0x32,0xa7,0x02,0x5c,0x8e,0x06, +0x2c,0x35,0x0e,0xd8,0xcc,0xf4,0x64,0x67,0xb4,0xa8,0x80,0x9a, +0xb0,0x6c,0x40,0x5c,0x46,0x05,0x38,0x9b,0x82,0x13,0x08,0x67, +0x7c,0x27,0x7a,0x10,0xbd,0xed,0x68,0xe4,0xe6,0xcc,0x5f,0x33, +0x1a,0xd6,0x1f,0x38,0x60,0x6a,0xa7,0xe7,0xb6,0xd7,0xbb,0xc2, +0x8c,0x07,0xab,0x57,0xc0,0xc3,0xc2,0x3f,0xc0,0xd0,0xa6,0x9a, +0xb7,0x5e,0x6f,0xaa,0xa1,0xa5,0x13,0x52,0x19,0x54,0x19,0x54, +0x3e,0x7c,0xa3,0xfb,0x7f,0x74,0x34,0x8a,0x65,0x12,0xf0,0x32, +0x71,0x3f,0xe2,0x74,0xd4,0xfe,0x28,0x07,0x33,0xd9,0xfe,0x2b, +0x9d,0x5f,0x16,0xdc,0xe0,0xda,0xf0,0x9e,0x19,0x5c,0x62,0x43, +0x8c,0x5d,0x0d,0xad,0x2d,0xa8,0x98,0x58,0xeb,0x63,0x16,0x31, +0xe6,0x27,0x52,0x74,0xf8,0x9e,0xe4,0x9e,0x94,0x8e,0x54,0x0e, +0x7f,0xc1,0xd9,0x6c,0xa6,0x91,0xc2,0x8f,0xcc,0x40,0x66,0x26, +0xb5,0xff,0x3f,0xd8,0xee,0xb4,0xf6,0x8c,0xc6,0x0c,0x4e,0xd8, +0x8c,0xe7,0x48,0x4c,0xe6,0xf1,0x0b,0xff,0x69,0x8b,0x74,0xf3, +0xdb,0xbe,0x6f,0x15,0x6d,0xaa,0x50,0x09,0x3d,0x70,0x3e,0xce, +0xc6,0x7e,0x7c,0x5f,0x6a,0x8b,0xb4,0x76,0x14,0x94,0x1e,0x7f, +0xfb,0x9f,0xb6,0x48,0xeb,0x31,0x68,0xa2,0x2d,0xd2,0x5f,0xb3, +0x13,0x68,0x7c,0x98,0x7a,0x18,0x4c,0xc0,0x42,0x09,0x96,0xe1, +0x1e,0x30,0x36,0x42,0x63,0x64,0x0c,0x81,0x61,0xb7,0xc5,0x1d, +0x38,0xa9,0xa7,0x1c,0x5a,0x12,0x5c,0xea,0x5f,0xe6,0xe2,0xc4, +0x37,0xb9,0xd4,0xb9,0x57,0xb9,0x87,0xe0,0x02,0xdb,0x35,0xeb, +0x36,0x35,0x98,0xf2,0x2f,0x9e,0xf5,0xfd,0x52,0x0e,0xb3,0xca, +0xdc,0x4b,0xdc,0x8b,0x5c,0x9b,0x5b,0x79,0xcf,0x21,0xef,0x4e, +0x8f,0x4e,0x2e,0xed,0xe9,0xe5,0x17,0xbf,0x2a,0xc1,0xd4,0x55, +0x0c,0x6a,0x66,0xa2,0x7b,0x1f,0xce,0x51,0x2e,0x34,0xba,0x77, +0x21,0xe1,0x61,0x2e,0x38,0xf2,0x36,0x25,0x0a,0xe3,0x93,0x85, +0x7c,0xf2,0xb5,0xf1,0x66,0x34,0xb2,0x14,0xf4,0xfb,0x58,0x0f, +0xe4,0x88,0xf8,0x0e,0x3a,0x08,0xef,0x30,0x26,0xb0,0x8a,0xac, +0xc0,0xcb,0x6f,0x58,0x4a,0xd2,0xdf,0x27,0xe6,0xa7,0x0c,0x4f, +0xe9,0x9f,0xe6,0x8a,0xd8,0x5b,0x25,0xd7,0xdb,0x6a,0x1a,0xb9, +0x76,0x71,0x95,0x25,0xdc,0x67,0x03,0x83,0xcd,0x02,0xcc,0x22, +0x38,0x13,0xf6,0xc0,0xe9,0x7d,0x71,0x3a,0x67,0x2f,0x99,0xf3, +0x37,0x2e,0xde,0xb9,0x74,0x3b,0x9e,0x43,0x45,0x64,0xd8,0x0c, +0x73,0x69,0xeb,0x6a,0xb6,0xd4,0x29,0x84,0xb0,0xd7,0xe3,0x69, +0xfa,0x4f,0xa0,0xb0,0xe3,0x63,0xf9,0x79,0x92,0x93,0x93,0x93, +0x97,0x9e,0x63,0x57,0xc4,0x47,0x05,0x87,0x06,0xf8,0x52,0xe6, +0x7d,0x91,0x29,0xcb,0x0c,0x2f,0x0d,0x2e,0x3a,0x98,0xa5,0xe8, +0x10,0x9c,0x17,0x99,0x17,0x91,0x75,0x50,0x11,0xf3,0xad,0x20, +0x92,0xf1,0xf3,0xf0,0xf0,0x74,0xf3,0x39,0x9c,0x76,0x38,0xf5, +0x50,0x9a,0xcc,0x93,0xef,0x71,0x6b,0x75,0x6f,0x72,0x0f,0x3d, +0x18,0x1a,0x19,0x12,0xe9,0x1f,0xe7,0x77,0xce,0xef,0x6c,0x22, +0x45,0x8e,0x8b,0x93,0x41,0x21,0x0d,0xa6,0x65,0x26,0x1d,0x4a, +0x8a,0x4e,0x3c,0xd4,0x52,0xc0,0x5f,0x38,0x26,0x95,0x3d,0xa7, +0xa4,0x82,0x42,0xa6,0x62,0x4a,0x64,0xca,0xc1,0xa4,0xa8,0xb6, +0x02,0x3e,0x78,0xc0,0xee,0x9e,0x6f,0x83,0x4b,0x28,0x9f,0x11, +0x99,0x19,0x96,0x11,0x6a,0x7a,0x52,0xf7,0xa4,0xf6,0xe9,0x87, +0x57,0xee,0x8c,0x8d,0xdc,0x74,0xad,0xe2,0x9d,0x6d,0x1d,0xec, +0x6d,0x1c,0xa3,0xb3,0xa2,0x33,0xa2,0x33,0x5b,0xea,0x5a,0xdb, +0xcb,0xea,0xfc,0x0b,0x78,0x88,0xe9,0x65,0xf0,0x9f,0xb8,0x89, +0x1c,0x4e,0x3f,0x94,0x16,0xfd,0xef,0x01,0x34,0xbb,0x86,0x1d, +0x0c,0xa3,0x03,0x08,0x3f,0x17,0x7e,0x36,0xfc,0xdc,0xa5,0x40, +0x3e,0xa4,0xdb,0x6d,0x24,0xb8,0xca,0x39,0x94,0x4f,0x8b,0xce, +0x88,0x48,0x0f,0xb7,0x3c,0x65,0x74,0xca,0xe0,0xd4,0x83,0x91, +0xdb,0x37,0xe9,0x5f,0xae,0xe4,0x9d,0xed,0x1c,0x1d,0x6c,0x9d, +0xad,0x3b,0xf9,0x96,0xda,0xb6,0xf6,0xf2,0x5a,0xbf,0x02,0x5e, +0x58,0xc4,0xf8,0x7a,0xc8,0x3c,0xdc,0x7d,0x38,0x1b,0x71,0x1b, +0xf9,0x21,0x17,0xde,0x6d,0xb8,0xde,0xc4,0xf5,0x8c,0x73,0x36, +0x42,0x3e,0x6b,0x11,0xb6,0x21,0x64,0x5d,0x14,0x67,0x26,0x6e, +0xb6,0xa2,0x06,0xc5,0x4a,0x3d,0x57,0x6c,0x14,0x60,0x05,0xd3, +0x95,0x9d,0xde,0xac,0x02,0x93,0x85,0x35,0xbd,0xe2,0x1a,0x1a, +0xd9,0xf2,0xe4,0x9f,0x11,0x2b,0xff,0x6d,0xa1,0xba,0x47,0x38, +0xb1,0x97,0x3d,0x72,0xe6,0xf0,0x99,0x23,0x71,0xa9,0x26,0xfc, +0x8d,0xec,0x1b,0x45,0x83,0xc5,0x41,0x38,0xd9,0x6c,0x9f,0x86, +0x56,0x03,0xe5,0x79,0xd3,0x40,0xe1,0x21,0xbc,0x0f,0x47,0x94, +0xa0,0xd3,0x0a,0x3b,0x59,0xa7,0x38,0xf7,0x33,0x5e,0xca,0xbe, +0x87,0xdd,0x0f,0xb9,0x1e,0xe1,0x84,0xd3,0x6c,0x4f,0xea,0xa3, +0x82,0xae,0x32,0x9a,0xe9,0x0c,0xc9,0x67,0xf1,0x3f,0x65,0x7d, +0x56,0x1a,0xd0,0xce,0xef,0x09,0x59,0x1e,0xb5,0xf6,0xd4,0xf1, +0x7d,0xc1,0x6b,0x7c,0xf5,0xdb,0x3d,0xf9,0xaa,0x9b,0x45,0xdf, +0x25,0x5d,0xa3,0x18,0x76,0xbc,0x83,0xc8,0x87,0x60,0xb6,0xf8, +0x60,0x03,0x9b,0x66,0xaa,0x30,0xc6,0x34,0xe6,0xe6,0x36,0xaa, +0xc8,0x59,0x8c,0x1c,0x97,0xb3,0x42,0xb9,0xbc,0x94,0xe4,0x58, +0x15,0x6c,0x4f,0x35,0xee,0xc8,0xe1,0x8f,0x0e,0x85,0x3f,0x8e, +0xe8,0xe6,0x96,0xa3,0x1e,0x39,0xd3,0x15,0x3b,0x76,0xbc,0xd3, +0x3e,0x86,0x4f,0xb2,0x4d,0xd0,0xbb,0x68,0xc5,0xd1,0x2c,0xaa, +0x48,0x8e,0xf4,0x87,0xdc,0x0b,0xe9,0x76,0x8f,0xe0,0x0b,0xac, +0x0a,0xf7,0x67,0x5a,0x72,0x78,0x28,0x83,0xc4,0x0c,0x84,0x3c, +0x08,0xe9,0x72,0x3b,0xc8,0x17,0xd8,0xe4,0xef,0xc9,0xb0,0xe4, +0x04,0x41,0x9f,0x74,0xd7,0xf7,0xf4,0x54,0x0e,0x73,0xad,0x38, +0x6c,0x0d,0x27,0xd8,0x00,0x77,0x57,0x67,0x2b,0x6f,0x4e,0x0f, +0xd7,0x5b,0x51,0x9f,0x09,0x47,0x05,0x36,0xd3,0x42,0xe1,0x2b, +0xa6,0x2b,0x37,0xbb,0x4b,0x05,0xbc,0xe0,0xa3,0x5e,0xfc,0x88, +0x86,0x89,0xf7,0x29,0x65,0xe8,0xcc,0x6a,0xc9,0x6b,0x2c,0x2a, +0x8b,0x2e,0x8b,0x2c,0x3d,0x58,0x5e,0xcd,0x87,0x66,0x07,0x67, +0x05,0x67,0x14,0x66,0x17,0xe4,0xe4,0xe5,0x7a,0x57,0xf0,0xa1, +0x61,0x21,0xe1,0x41,0x51,0x9e,0xb9,0x9e,0x59,0xbe,0xe9,0x81, +0x5e,0x7c,0xd9,0xd1,0xf2,0x23,0xe5,0xd1,0x3e,0x91,0x9e,0x87, +0xdc,0x8e,0x72,0x42,0x3c,0x56,0x13,0xe9,0xc4,0x18,0x75,0x53, +0x36,0x1b,0x5e,0x28,0xe0,0x71,0x7b,0xd0,0x64,0xe2,0xf4,0x14, +0x70,0x9b,0x23,0x6c,0x61,0xe2,0x74,0x14,0xa4,0x63,0x44,0x37, +0x30,0x67,0xf6,0x2b,0x8c,0xb3,0x4c,0xdc,0x5d,0x05,0x58,0xdd, +0x86,0x1f,0x31,0x71,0x37,0x15,0x60,0x7d,0x1b,0x7e,0xc2,0x9c, +0xed,0x6d,0x4f,0xfa,0x22,0xa7,0x25,0x57,0x31,0xa4,0xd9,0x32, +0x7c,0x7f,0xd4,0xae,0xa3,0x8a,0xe9,0x78,0x5b,0xc1,0x08,0xd5, +0x47,0x80,0x61,0x84,0xf7,0xe1,0x7d,0x52,0x1e,0x59,0x76,0xb0, +0x34,0x82,0x8e,0x2a,0x24,0x87,0x8e,0x2a,0xab,0x30,0xab,0x20, +0x37,0x2f,0xd7,0xb7,0x92,0x0f,0x0d,0x0d,0x8e,0x08,0x8c,0xf4, +0xce,0xf5,0xce,0xf6,0xcb,0x08,0xf0,0xe2,0x4b,0x8f,0x96,0x1d, +0x2e,0x3b,0xe4,0x75,0x50,0x76,0xc8,0xed,0x48,0xbe,0x1b,0xdf, +0x95,0xd5,0x9a,0xd7,0x54,0xcc,0xe5,0x89,0xef,0x91,0x52,0xf6, +0x45,0x3e,0x4c,0x69,0x1e,0x6e,0xe1,0x3a,0xc4,0xef,0x6c,0x85, +0x13,0xac,0x49,0xc0,0x8e,0xd0,0x4d,0x91,0x9c,0xa1,0xa8,0x6e, +0x2d,0xa8,0xd3,0x38,0x63,0xc8,0x66,0x58,0x2b,0x80,0x06,0xd3, +0x99,0x21,0xed,0x0c,0x9b,0x2d,0x6c,0xe8,0x91,0x8e,0xae,0x50, +0x23,0xa0,0x55,0x02,0x8b,0x2a,0xe9,0x57,0x61,0xb2,0x0b,0xa8, +0xf8,0x82,0x66,0x50,0x6e,0x3f,0x8f,0x1f,0x17,0xe0,0xcc,0xa2, +0x55,0x15,0xdf,0x34,0xdf,0xe8,0xed,0xbe,0xc1,0xc1,0xf6,0x01, +0x71,0xf3,0x0b,0x83,0x75,0xe2,0x32,0x73,0x0a,0x21,0x7a,0x74, +0x6f,0x58,0x3d,0x73,0x5e,0xe1,0x8b,0xb3,0x43,0x70,0x5d,0x04, +0x27,0x5f,0x08,0x27,0x88,0xad,0xb9,0xbe,0xf3,0x16,0xcf,0xcd, +0x35,0xfa,0x2d,0xb6,0x83,0x1c,0x1c,0x12,0x5d,0xc9,0xd3,0xd2, +0xef,0x7b,0x06,0xda,0x69,0x5e,0xae,0x32,0x13,0xf4,0x59,0xa7, +0x80,0xdd,0xde,0x3b,0x43,0xb9,0x03,0xd2,0xd3,0xb9,0xab,0x50, +0x0d,0xb5,0xd8,0x6c,0x9a,0x97,0x57,0x32,0x7d,0xf9,0x52,0xca, +0x7a,0x5f,0x50,0x1d,0x14,0xa5,0xdd,0xd9,0xa3,0x42,0x2e,0x69, +0xc7,0x3d,0xf7,0xc1,0x17,0xd3,0x87,0x20,0x1d,0xa2,0xf6,0xa2, +0xb1,0x03,0x18,0x67,0x0d,0xc2,0x6a,0xac,0x1f,0x83,0xa4,0x6e, +0xb1,0xcf,0x06,0xce,0x68,0x63,0x01,0xae,0x1e,0x88,0x66,0xb7, +0x9b,0x11,0xff,0xa3,0x3e,0x47,0x3d,0x69,0xa0,0x9e,0xc7,0x36, +0x8d,0xd6,0x3d,0xc9,0x1c,0xe5,0xda,0xf1,0xb2,0x39,0x98,0xb1, +0x51,0xc6,0x3e,0xfa,0x6e,0xa6,0x1c,0x6e,0x66,0xdd,0x63,0x5c, +0x63,0x5c,0x63,0x53,0x75,0xf9,0xfa,0xa4,0xda,0xe4,0x9a,0x64, +0x0e,0xff,0xb1,0x9c,0xcd,0x30,0x51,0x78,0xc8,0xf4,0x65,0x64, +0xf4,0xa9,0x00,0xb2,0x0d,0x69,0xb5,0xe9,0x15,0x34,0x05,0x9d, +0x4b,0x94,0x6e,0xed,0xc0,0x0a,0x67,0xe7,0xb7,0xd3,0xbb,0xb2, +0x70,0x76,0x0f,0xa1,0xce,0x07,0x85,0x4c,0x4c,0xd8,0xb1,0xb0, +0xa3,0x61,0x1c,0xba,0x63,0xef,0x10,0x5c,0x84,0xc9,0x78,0xbc, +0x1f,0x8e,0xc3,0x3b,0x6f,0xdf,0x78,0x34,0xda,0xc9,0xa4,0x59, +0x29,0x5c,0x67,0x9a,0x26,0x3a,0xb9,0x47,0xe3,0x30,0x9b,0x9a, +0x9f,0x5a,0x98,0x52,0xc0,0x81,0xd4,0xcf,0xb2,0x40,0xae,0x4c, +0x34,0x71,0x9b,0xc8,0xe1,0x99,0x31,0xd0,0x92,0xeb,0xa3,0xd6, +0x18,0x9c,0x11,0x15,0xe9,0x4f,0xf2,0xe5,0x8f,0x88,0x0e,0xce, +0x11,0x79,0xf4,0xbf,0x06,0xeb,0xe5,0x41,0xb8,0xfe,0x1a,0xf8, +0x8b,0x2b,0x18,0x5c,0x33,0xae,0x4f,0x74,0x22,0xb3,0x46,0xa4, +0x76,0xf5,0x60,0x51,0x05,0x4e,0x23,0xb0,0xf0,0x8e,0x0f,0xd5, +0xca,0x5c,0x2d,0xb4,0x32,0xc7,0xfd,0x7e,0x1c,0xc4,0xea,0x88, +0xee,0xec,0x27,0xf5,0x3e,0xaf,0x95,0x05,0x77,0xa6,0x3b,0x2b, +0x97,0xaa,0x54,0x8f,0xd5,0xcd,0x56,0x40,0xc7,0xbf,0x41,0x85, +0xde,0x6a,0x51,0x11,0x8d,0xae,0x00,0x2f,0x8f,0x40,0xfe,0x0a, +0x18,0x89,0x2b,0x19,0x68,0x12,0x9f,0x10,0xf8,0x14,0x8b,0x61, +0x26,0xf4,0xf5,0x8f,0x6f,0x1e,0x5f,0x72,0xad,0x53,0xbe,0x6c, +0x10,0x7f,0x86,0xf9,0xac,0x01,0x65,0xec,0x78,0x81,0xfe,0xe0, +0x02,0x83,0x17,0xf0,0x16,0x81,0xc5,0x42,0x0e,0x2e,0x66,0xb1, +0xd8,0x92,0x50,0xdb,0xb9,0x20,0x35,0xc1,0x93,0xff,0x25,0xd7, +0x24,0xa8,0x70,0x05,0x76,0x8a,0xab,0xbf,0x35,0xf8,0x44,0x5c, +0x88,0x3b,0xaf,0x80,0x02,0x2b,0xbc,0x12,0xff,0x22,0x5d,0xc5, +0x3d,0x8d,0x2d,0x0d,0x8e,0xb5,0xbc,0xa7,0xcc,0xde,0xc3,0xc8, +0xd7,0xb6,0xc9,0xa3,0xd3,0x77,0x84,0x83,0x97,0x7d,0xe3,0xba, +0xcc,0xa5,0x1b,0xe7,0x1f,0x3d,0x57,0x92,0xcf,0x90,0xae,0xc5, +0xd9,0x31,0x4b,0xb6,0xa2,0x8a,0x72,0xb7,0xe3,0xe0,0xeb,0x92, +0xef,0xd2,0x60,0xa9,0x22,0x2c,0xc0,0x44,0x06,0x67,0x1e,0x4b, +0x36,0x01,0x95,0x74,0x50,0xcc,0xfd,0x2d,0x5b,0xf1,0x64,0x9f, +0xfe,0x71,0xdd,0xe3,0x9a,0xb1,0x8a,0x70,0xfe,0x67,0xf6,0x1b, +0xdc,0x01,0xb3,0x57,0x82,0x9d,0x61,0x69,0x37,0xbf,0xb9,0x54, +0xab,0xdc,0xbc,0x8e,0xa3,0xe1,0x6e,0x26,0x11,0xdb,0xad,0x85, +0x76,0xe6,0xef,0x41,0x29,0x8e,0xd0,0x09,0xae,0x92,0x0c,0x54, +0x09,0x8d,0x46,0x28,0x05,0x90,0x1f,0x1f,0xd7,0x21,0xe8,0xc7, +0xc8,0x4e,0x24,0x55,0xaa,0xc0,0x4e,0x38,0x0d,0x71,0x18,0xc7, +0xb6,0x57,0xb7,0x34,0x16,0x37,0xd2,0xc0,0xf1,0x94,0x4d,0xcb, +0x4a,0xcb,0x4a,0xc9,0x36,0xce,0xe2,0xf7,0x2d,0x5d,0xbb,0x05, +0xd7,0xef,0xa8,0xb2,0xe1,0xcb,0x33,0x4a,0x33,0x4b,0x32,0x39, +0x74,0x82,0x6c,0xd6,0x4a,0x0d,0x27,0xed,0xc1,0x20,0xfb,0x02, +0x13,0x1e,0xa2,0x7b,0x40,0xe9,0xe9,0x08,0xac,0xe4,0x7a,0x50, +0x87,0x31,0x2e,0x0a,0xbe,0xae,0x0c,0x87,0x99,0xd6,0x6c,0x1a, +0xe5,0xfe,0xc1,0x1a,0xe7,0x28,0xe0,0x21,0xe1,0x00,0xf1,0x97, +0x39,0x79,0xda,0xfb,0x72,0xd8,0xce,0xb4,0x55,0x35,0xd6,0xd4, +0xd4,0x71,0x38,0x1d,0xd7,0x53,0x92,0xc0,0x9c,0xb5,0x3e,0x65, +0x7f,0xd4,0x85,0xc3,0x50,0x46,0x18,0x81,0x45,0x04,0x17,0x61, +0x39,0x9b,0xd2,0x1c,0xdf,0x7e,0xa1,0x97,0x5a,0x07,0x95,0xb3, +0x57,0xb5,0x65,0xbd,0x7b,0x81,0xa7,0x07,0xdf,0x1a,0xd4,0xe3, +0x5e,0xe1,0xc7,0xcd,0x12,0xec,0x84,0x3c,0x32,0x80,0x0f,0x61, +0xba,0x3c,0x04,0xa7,0x5f,0x83,0x7d,0xe2,0xea,0xc7,0x06,0xdb, +0xa8,0xb0,0x4d,0xaf,0xba,0xd1,0x69,0xad,0x26,0x68,0xf2,0x1d, +0xec,0xe8,0xc6,0x1d,0x5f,0x99,0x62,0x28,0x4e,0xb1,0x82,0x3a, +0x26,0xd4,0xce,0xd3,0xd1,0xde,0xd9,0xb6,0xc1,0xba,0xd6,0xb9, +0x58,0xe6,0xc6,0xb7,0x04,0x77,0x78,0xb7,0xcb,0xcc,0x5c,0x34, +0x65,0xdb,0xfc,0x8a,0x2d,0xf9,0x67,0x55,0x0f,0x9b,0xaf,0xf5, +0xb4,0x78,0x34,0x7b,0xd4,0x7a,0x36,0x35,0xf3,0xde,0xd5,0xae, +0xf5,0xce,0xb5,0x43,0xfd,0x6d,0xa3,0x95,0x37,0xb9,0x73,0x14, +0x75,0x89,0x7b,0x18,0xfb,0x13,0x49,0x14,0x93,0xf6,0xff,0x38, +0x28,0x6a,0x99,0x01,0xe3,0xc6,0xe2,0x56,0xd9,0xc7,0x2b,0xd7, +0x2a,0xb7,0xd8,0x29,0xc0,0x94,0x3f,0x5b,0x60,0x12,0xe8,0x2b, +0x35,0xfe,0x82,0x37,0xd9,0xbd,0xc5,0x41,0x0f,0x94,0x05,0x03, +0xa6,0x23,0x2b,0x97,0x1a,0xfa,0x54,0xa9,0x6f,0xa5,0x64,0x6c, +0x8f,0x88,0xde,0x32,0x91,0xe0,0x81,0x51,0x98,0x29,0xf7,0xc3, +0x99,0xa3,0x70,0x40,0x5c,0xca,0xc0,0x63,0xf1,0x19,0xe9,0xc5, +0x0a,0x98,0x02,0x15,0x6f,0xdf,0x86,0xfb,0xb0,0x8d,0x2d,0xa8, +0xcc,0xae,0xca,0x6e,0xd5,0x4f,0xe5,0xa3,0xed,0xa3,0xbc,0x83, +0xdd,0x38,0x0c,0x64,0x72,0xaa,0xb3,0x6a,0x33,0xeb,0x0c,0x33, +0x79,0x1b,0x9c,0xb3,0x57,0x0d,0x67,0xae,0xac,0x31,0xe7,0x9b, +0x6b,0xea,0x6a,0xaa,0xea,0x39,0xd1,0xec,0x6a,0xb7,0xfc,0xfd, +0x41,0x7c,0x04,0x2c,0x6b,0x08,0x9f,0x11,0x9c,0x82,0x09,0xdf, +0xb3,0xa9,0xd9,0x0a,0xc7,0xb0,0x88,0xd0,0x3f,0x99,0x80,0x53, +0x58,0xab,0xa9,0x34,0x1d,0x26,0xd0,0x5f,0x98,0x25,0x97,0xcb, +0x6d,0x08,0x4e,0x1e,0x85,0xcd,0xe2,0xea,0x7b,0x06,0xfb,0xa8, +0xcc,0x36,0x8f,0xc2,0x64,0x56,0xae,0xae,0x49,0x44,0x01,0x4b, +0x04,0x81,0x31,0x86,0x4d,0x44,0x8c,0xbd,0x26,0xc4,0x32,0x62, +0x2c,0x4e,0x21,0x42,0xac,0xae,0x18,0xcb,0x40,0xaf,0xb8,0x82, +0x1c,0xfd,0x09,0x9e,0x77,0xe3,0xf3,0x6f,0x05,0xe5,0xbe,0xf1, +0x3f,0x2d,0x85,0x8f,0xf1,0x28,0x83,0x8a,0x09,0xda,0x55,0xdf, +0x2b,0x75,0xe9,0x38,0xb0,0xbb,0x02,0xbd,0x70,0x91,0xbd,0x72, +0x91,0x05,0xcc,0xeb,0xa8,0xaa,0x4e,0x91,0x0e,0xb5,0xc3,0x49, +0x05,0xcf,0x43,0xc1,0x7e,0xa1,0xc0,0x30,0xc9,0x7d,0x0a,0xd2, +0xbd,0xf5,0xc9,0x92,0x61,0x58,0x2f,0xae,0xf8,0xda,0x60,0x33, +0x75,0xe9,0xf5,0xc3,0xff,0x60,0xdb,0xb1,0x80,0xc0,0x5a,0x53, +0x74,0x06,0x8b,0x35,0x98,0x69,0xf5,0xeb,0x61,0x76,0x55,0x90, +0x86,0xb6,0xb6,0x72,0xa3,0xb3,0xc2,0x67,0x9f,0x57,0x3f,0x87, +0x99,0x4a,0xc9,0xbf,0xe1,0xc0,0x90,0xdc,0xd6,0x14,0x65,0xac, +0x7c,0x06,0xbe,0x47,0xfa,0xf1,0x3c,0xf5,0x41,0x0a,0xc9,0xdc, +0x7f,0x37,0x51,0x45,0x63,0x4b,0x30,0xc6,0x99,0x18,0x6a,0x01, +0x36,0xac,0xef,0x56,0xdd,0xcd,0x38,0x67,0x63,0xad,0x2d,0x0f, +0x6a,0x30,0xa9,0xed,0x76,0xd6,0x2b,0x4a,0x01,0xdf,0x0c,0xc3, +0x9b,0x04,0x26,0x6b,0x6d,0xe7,0x2e,0xd8,0xb0,0xb4,0xba,0x8b, +0xc7,0x0f,0xbf,0xd2,0x7c,0xe6,0xf7,0x94,0x02,0xaa,0xe7,0x42, +0x38,0x41,0x2f,0x26,0xff,0x85,0x02,0x44,0x55,0x36,0xc1,0x0a, +0x71,0xd5,0x53,0x03,0x75,0xea,0x1d,0xea,0xc3,0xf0,0x8e,0x3c, +0x7a,0x97,0xa8,0x67,0x4d,0x03,0x79,0xf8,0x3a,0x05,0x7c,0xd7, +0xf6,0x0f,0x26,0x10,0x39,0x05,0x9c,0x63,0x2d,0x54,0xf7,0x2c, +0x63,0xc6,0x37,0xc1,0x14,0x02,0xcb,0x4c,0xd1,0x06,0xcc,0xd7, +0x60,0xba,0xd5,0x2f,0x74,0xd0,0xc1,0x1a,0x5a,0xda,0xca,0xcd, +0xd2,0xa0,0x2b,0x27,0x06,0xfd,0x8f,0xff,0x0c,0x5a,0x08,0x8f, +0x27,0xc8,0xa1,0x15,0x5b,0x0a,0x9c,0xc2,0x4a,0xf1,0x22,0xa9, +0x87,0x1e,0x8f,0x11,0xc8,0x15,0x3f,0xc1,0x5c,0x16,0x04,0x69, +0x25,0x7a,0x2e,0xf6,0xc0,0xdc,0x89,0xe8,0xe1,0x4d,0xd6,0x5c, +0x81,0xc5,0xe2,0xea,0x5b,0x06,0x5a,0x54,0x37,0x8b,0xaf,0xbc, +0x62,0xe5,0x2b,0x51,0x95,0xc4,0x57,0x5d,0xae,0xbc,0x58,0xc6, +0x89,0x4f,0x99,0x33,0x7e,0xa7,0xfd,0x4e,0x51,0x2f,0xda,0xe0, +0x44,0x33,0xc3,0x49,0x9f,0x13,0xde,0x27,0x7c,0x38,0xe1,0x3b, +0x26,0xa1,0x2a,0xb1,0x3a,0x9e,0x72,0x86,0x5d,0xad,0x8c,0x18, +0xd6,0x4b,0xce,0x1d,0x8a,0x8b,0x8a,0x8b,0xe2,0xd0,0x85,0xb9, +0x98,0x7d,0x31,0xeb,0x42,0x16,0x07,0x97,0xac,0x08,0xbd,0xcc, +0xbe,0x90,0xc9,0x81,0x0f,0x13,0x6b,0xa5,0x80,0x65,0x4e,0xe4, +0x8c,0xb4,0x03,0x39,0x9a,0x43,0x0f,0x26,0x3e,0xe7,0x72,0xce, +0xa5,0x5c,0x0e,0xce,0x9b,0x90,0x4b,0x59,0x97,0x73,0x2f,0xe6, +0x71,0xe0,0xcd,0x1c,0x31,0x51,0x10,0xdb,0xd7,0x11,0x7c,0x2d, +0xdf,0x0c,0xaf,0x59,0xc3,0x15,0x44,0xec,0x1e,0x10,0xba,0x19, +0xfc,0x68,0xaa,0xd8,0x3d,0x44,0x2f,0xc4,0xee,0x15,0x44,0xe8, +0x36,0x16,0xe9,0x47,0xab,0xa5,0x45,0x74,0xc5,0x6c,0x98,0x5c, +0xf9,0x79,0x95,0x5f,0x2b,0xbf,0xc3,0x7f,0x45,0x10,0xf2,0x51, +0x9c,0xd0,0x59,0x42,0xfe,0x11,0x09,0xd3,0x02,0x7e,0xf1,0x2b, +0xea,0xe5,0x57,0x94,0xe2,0x8c,0x92,0xc5,0xb9,0x54,0xf2,0xff, +0x94,0x5b,0x91,0x2d,0x43,0xf0,0x81,0xb8,0xf6,0x33,0x23,0x0d, +0xf1,0x43,0x5c,0x33,0xf4,0x33,0xdb,0x85,0x55,0x04,0x36,0x98, +0xa1,0x3b,0x6c,0xff,0x08,0x63,0xac,0xbe,0x89,0x60,0x57,0x87, +0xed,0x34,0xd5,0x56,0x6e,0x72,0x55,0xb8,0x26,0xc9,0x74,0xba, +0x52,0xe6,0x4b,0x1c,0x19,0x94,0x7b,0x9b,0x61,0x18,0x0b,0x2b, +0xfc,0x88,0xb0,0xe3,0xd7,0xaf,0xbb,0x36,0xbf,0x11,0x37,0xdb, +0xc3,0xb8,0x95,0xb8,0xc2,0x56,0x58,0x61,0x2e,0xbe,0xc3,0x08, +0x29,0xa2,0x3f,0xd9,0x96,0xb1,0x2f,0xc7,0xa0,0xe4,0x66,0x53, +0x57,0x6f,0xc9,0x35,0x2e,0xab,0x1f,0x3e,0x14,0xab,0xf0,0xc3, +0xfe,0x60,0x61,0x0a,0xeb,0x63,0xe3,0xe8,0x6e,0xe4,0x6b,0x5e, +0x6e,0x5f,0xeb,0xd6,0xe2,0xe2,0xcf,0xd7,0xba,0x34,0x79,0x75, +0x06,0xe8,0x87,0xee,0x89,0xfc,0xe4,0x70,0x96,0x35,0xff,0x4b, +0xd6,0xf3,0xa2,0x87,0xb5,0x0f,0x3d,0xbf,0x09,0x7e,0x13,0xc5, +0x19,0xc1,0x28,0x11,0x35,0x6e,0x08,0x1a,0xcc,0x2c,0x78,0x22, +0x3c,0x23,0x36,0xc3,0xdd,0xe0,0x29,0xbd,0xf8,0x66,0x8c,0x50, +0x1b,0xfe,0xdb,0x7d,0xd6,0x8f,0x1c,0x66,0xe5,0x51,0xdd,0x04, +0x7d,0x3a,0x4c,0xec,0xd1,0x53,0x7a,0xb1,0xbb,0x2d,0x8f,0x64, +0xee,0x8a,0x5f,0x90,0x5e,0x71,0xf3,0x0d,0x18,0x85,0xa2,0xf1, +0x55,0x58,0x04,0x6d,0xba,0xe2,0x32,0x2b,0x41,0x89,0x95,0x1d, +0xc0,0x39,0x4e,0x78,0xd4,0x2b,0x97,0x86,0xcd,0x8a,0x4e,0x60, +0x3a,0x0a,0x7f,0x95,0x4e,0x9e,0x58,0x0a,0xc4,0x1e,0x2a,0xed, +0xb2,0x87,0x79,0x3c,0x5a,0x83,0x1f,0xb4,0xba,0xde,0xe1,0xe0, +0x28,0x54,0x12,0xb1,0xee,0x8a,0x50,0x47,0x3d,0x69,0xaa,0x9e, +0x58,0x77,0x9d,0xe6,0xad,0xbf,0x04,0x45,0x32,0x56,0x70,0xbd, +0xf4,0x6a,0x73,0x48,0x23,0xaf,0xeb,0x6a,0x10,0xb8,0x33,0x24, +0x39,0x8c,0xf7,0xcd,0x8b,0xcc,0x3d,0x92,0xc7,0x19,0x83,0x19, +0x7e,0x73,0x45,0x1e,0x69,0x84,0x7f,0xda,0xc0,0x10,0x46,0x0d, +0xc3,0xa7,0xbd,0xa0,0x26,0xae,0x1e,0x33,0xd0,0xa6,0x43,0x55, +0xeb,0x8a,0x82,0x06,0xdc,0xd8,0xca,0x38,0x5a,0x7c,0x6c,0x85, +0x19,0x66,0x74,0xc2,0x70,0xeb,0xde,0xfd,0xee,0xaa,0xaf,0xb8, +0x04,0xa6,0x4a,0xfd,0x3b,0x6b,0xb8,0xb5,0x2f,0xbb,0x87,0xc7, +0x9d,0x35,0x4b,0xab,0x75,0xab,0x39,0x1c,0x05,0x5f,0xa2,0xef, +0xa5,0x1f,0xbc,0x29,0x32,0xdb,0x91,0xff,0x3c,0xe7,0x7e,0xe9, +0xad,0x26,0x0e,0xac,0xd6,0x91,0x2f,0x73,0x1f,0x96,0xde,0x69, +0x0e,0xa9,0xe7,0xf5,0x64,0xba,0xc1,0x1b,0x0e,0x72,0xe2,0x22, +0x5c,0x43,0xde,0x94,0x7c,0x57,0xf9,0xcd,0x10,0xfd,0x70,0xab, +0xad,0x86,0x17,0x4e,0x0a,0xe1,0x04,0xab,0xdd,0x64,0x9d,0x39, +0xce,0x90,0xe1,0x92,0x30,0xe9,0x1c,0x90,0x45,0xf9,0xf0,0x7e, +0xdd,0x1f,0x37,0xa5,0x4e,0x53,0xf1,0x04,0x7c,0x4a,0xc1,0x64, +0x08,0x96,0xfe,0xe4,0x51,0xcf,0xa3,0xe2,0x66,0xdc,0x6d,0x8e, +0x81,0x41,0x5c,0x2c,0x45,0xbd,0xd0,0x54,0x0a,0xa7,0xee,0x81, +0x29,0xbc,0xef,0xda,0xcc,0xe3,0x5e,0x64,0xd0,0x5b,0x0b,0x87, +0xa5,0xa0,0x9f,0x2b,0xff,0x92,0x18,0x6c,0xa1,0xf3,0x50,0xbf, +0x4a,0xfd,0x33,0x0c,0xdf,0xb9,0x0a,0xea,0xe2,0x6a,0x06,0xda, +0xc5,0x3d,0x84,0x4e,0xb6,0xdb,0x06,0x62,0x77,0xe3,0x11,0x5b, +0x38,0xb2,0x5d,0x4c,0xfb,0x12,0x82,0xbb,0x30,0xf8,0x26,0xfb, +0x2c,0xe1,0x51,0xda,0xfd,0xbc,0xb0,0x0e,0x7e,0x7b,0xc4,0xba, +0xc3,0xcb,0x4f,0x72,0xd8,0x02,0x9b,0x59,0xfd,0xfd,0x4b,0xac, +0xf0,0x7d,0x8f,0x22,0x0b,0xfe,0x51,0xf1,0xed,0x8a,0xe1,0x7a, +0x4e,0xb8,0xca,0x9c,0xd3,0x3e,0xad,0xf3,0xb6,0xc1,0xd8,0x51, +0xd7,0x85,0xcb,0x98,0x74,0x4b,0x85,0xef,0x99,0x7b,0x95,0x85, +0xd7,0x52,0x55,0x52,0xfa,0xe2,0x9f,0x5c,0xf8,0x83,0x13,0xfb, +0x99,0xc2,0xbc,0xbc,0x82,0xac,0x42,0x0e,0x7e,0xc3,0x26,0x12, +0xda,0xe3,0xdf,0xe5,0xdf,0x60,0x1f,0xc1,0x97,0xb9,0x96,0xd8, +0x17,0x5a,0x72,0xe2,0xc0,0x16,0xd2,0x7f,0xa5,0xfd,0x41,0xc9, +0x98,0x55,0x21,0x1f,0x64,0xe0,0xa4,0x69,0x61,0xca,0x09,0x3c, +0xec,0x21,0x05,0x36,0x79,0xa6,0x19,0x26,0x83,0xd9,0x7c,0xf4, +0x50,0xf8,0x60,0x48,0x27,0x87,0x76,0x61,0x24,0xd5,0x22,0x49, +0x27,0x5e,0x6b,0x24,0x81,0x3f,0x75,0x2b,0xe6,0xe6,0xd1,0xbe, +0x89,0xbe,0x1a,0xd6,0x64,0xf5,0x08,0x2c,0x13,0x57,0x3c,0x31, +0xd8,0x4a,0x23,0xe3,0xb2,0x91,0xd7,0xac,0x7c,0xb7,0x35,0x19, +0x9f,0x89,0xdb,0xe5,0x33,0x19,0xd1,0x00,0xde,0x23,0x3b,0xf0, +0x83,0x2f,0x58,0x30,0x9d,0x0f,0x1f,0xd0,0x2b,0x86,0x5e,0x7c, +0x01,0x8b,0x77,0xb0,0xe3,0x46,0x2b,0x89,0xcd,0x5f,0x53,0xba, +0x59,0x51,0x13,0x73,0xc8,0x7d,0x7c,0x07,0xe6,0x6d,0x87,0x08, +0xbb,0xbc,0x0e,0x7e,0x4d,0xee,0xee,0x42,0xa3,0xb2,0x2b,0xf9, +0x03,0xa5,0xdd,0x35,0xee,0x94,0xd2,0x7b,0x1a,0xfa,0xeb,0x84, +0xb8,0x14,0xfb,0x94,0x07,0xd6,0x70,0x90,0x0c,0x5b,0xc6,0x55, +0x70,0x0b,0x9c,0x62,0xb6,0x38,0xe2,0x7b,0x32,0xdc,0x12,0x9a, +0x65,0xc7,0x7f,0x91,0x7a,0x2f,0xf3,0x46,0x1e,0xa7,0xc1,0x7a, +0x9e,0xf1,0x88,0x73,0x8f,0x4b,0xa6,0xf6,0xb1,0x3d,0x1d,0x96, +0x64,0xc3,0xcc,0xc2,0x53,0xed,0xfc,0xf6,0xa3,0x9f,0x1c,0x5b, +0x15,0xc3,0xbd,0x60,0xc7,0x8a,0x07,0xcb,0x5a,0x2a,0xa4,0x4d, +0xfb,0xd3,0xc8,0x3e,0xb1,0xe2,0x1e,0xe5,0x54,0xc9,0xf2,0xf7, +0x88,0x29,0x2e,0x74,0x86,0x85,0x7a,0xac,0x61,0x9c,0xe1,0x59, +0xe3,0x73,0xf1,0x0e,0x3c,0x2c,0xbf,0x0c,0x4b,0x93,0x5e,0x27, +0x9d,0x69,0xe6,0x6d,0xcf,0x58,0xc6,0x59,0xc6,0x71,0xa3,0xf0, +0x7e,0x0b,0xbe,0x3f,0x04,0x2b,0x5b,0xf0,0x59,0x9f,0x3c,0xc6, +0x0a,0xab,0xd8,0xcb,0xc9,0x97,0x93,0x2e,0x25,0x3b,0x66,0xf1, +0x51,0x6e,0x01,0xee,0x9e,0xde,0x0d,0x81,0xbc,0xa3,0x33,0x58, +0xed,0x41,0xa6,0xcb,0xea,0x63,0x41,0xe9,0x7b,0x0b,0x5b,0xe4, +0x1e,0x80,0x7b,0x0b,0xba,0xf7,0xc2,0x96,0xf4,0x56,0x98,0x2b, +0xae,0xb9,0x61,0xa4,0x2b,0x7e,0x80,0x73,0x7b,0x0f,0x33,0x82, +0x9a,0x35,0xc9,0xcc,0xcc,0xcc,0x4e,0xcb,0xe6,0xfe,0x61,0xc5, +0xc0,0x6e,0xb1,0x81,0xc0,0xab,0x71,0x0d,0xa4,0x41,0xf3,0x1d, +0x88,0x23,0xe2,0x68,0x9f,0x30,0xca,0x88,0xa3,0xab,0x89,0x30, +0x6a,0x2e,0x8e,0x32,0xce,0x53,0x85,0x51,0x13,0xfa,0x8e,0xcb, +0x70,0x2f,0x91,0x4a,0xbd,0x93,0x2b,0x3f,0x7b,0x1b,0xad,0x96, +0x07,0xe1,0x02,0x1a,0xad,0x3a,0x4a,0xc8,0x6f,0x91,0xc0,0xd1, +0x68,0x55,0xfc,0x77,0xb4,0x52,0xa5,0xd1,0xea,0xff,0xe3,0xe4, +0x34,0xb0,0x89,0x4d,0xcc,0x48,0xcc,0x88,0xcf,0x70,0x4c,0xe7, +0xc3,0xac,0xbc,0xec,0x9c,0xdc,0xea,0x7c,0xf8,0xbc,0xdc,0xdc, +0x82,0xec,0x62,0x0e,0xa6,0xe3,0x8a,0xcd,0x4c,0xaa,0x83,0xc2, +0x1d,0xa6,0x21,0x3b,0xa5,0x55,0x05,0x54,0x60,0x45,0x53,0xef, +0xff,0x36,0x3b,0x56,0x5e,0x87,0x06,0x24,0xa8,0x35,0xa0,0x5d, +0xd6,0xe2,0x12,0xcc,0x57,0xba,0x94,0xbb,0x94,0xd8,0x52,0x2e, +0x09,0x6b,0x49,0x84,0x83,0xb7,0xa3,0x9b,0xac,0xc1,0x8f,0xaf, +0xaf,0x6b,0xea,0xcf,0xa7,0x28,0x29,0x5c,0xcc,0xfc,0xff,0x63, +0xe6,0x82,0xfa,0x05,0x12,0x7e,0x3c,0x45,0x6a,0xbc,0xf5,0x27, +0xd4,0xa3,0xfe,0x6f,0xe0,0x3b,0x84,0xbe,0xbf,0x1a,0x2c,0x45, +0x5f,0x53,0xf0,0x55,0xc3,0x5d,0x58,0xff,0x27,0x7b,0x1a,0x17, +0xca,0x56,0x21,0xbb,0xa3,0xd9,0x92,0x87,0x39,0xaf,0x5a,0x81, +0x89,0x87,0x8f,0xb9,0xc7,0x98,0xc6,0x98,0x94,0x04,0x5d,0x57, +0x16,0xbc,0xa4,0x56,0xe2,0xad,0x2a,0x7f,0xb0,0x46,0x19,0x34, +0x7f,0xb2,0xde,0xf2,0xfb,0x44,0x1f,0x75,0xb0,0xcc,0x14,0xca, +0x44,0x2b,0xdc,0x28,0x3d,0xe7,0x08,0x4b,0x99,0xd6,0x5c,0x8a, +0xce,0x05,0xd3,0x5f,0x86,0x96,0xb1,0xa2,0x06,0xa5,0xb9,0xb8, +0x0f,0xdb,0x61,0x1f,0x2b,0x8c,0xa1,0x33,0x09,0xb9,0xe6,0xfe, +0xc0,0x7d,0xd8,0xca,0x9f,0x6f,0x32,0xaa,0xdf,0x53,0x60,0x44, +0x87,0xb5,0x54,0x98,0x47,0x20,0xa3,0x13,0xb4,0xe0,0xbd,0x17, +0xa0,0xc1,0xb5,0x60,0x26,0x9b,0x99,0x9d,0x4e,0xb1,0x2a,0xf5, +0x3d,0xb3,0xed,0xaa,0x3b,0x71,0xa6,0x43,0x91,0x15,0x7f,0xbf, +0xf4,0xb3,0xf6,0xab,0x54,0x38,0x71,0x4c,0xa0,0xa3,0xcc,0xc5, +0x5e,0x26,0xab,0x75,0xaa,0xf5,0x2c,0xf4,0x90,0xf1,0xd5,0x07, +0x5b,0x3c,0xab,0xbd,0xc2,0x0f,0x87,0x1c,0x09,0x3e,0xe6,0x5f, +0xe5,0x54,0xef,0x59,0x20,0xf3,0xe0,0x2b,0x23,0x6a,0xfd,0x4b, +0x02,0x4c,0xc2,0x74,0xa2,0xf6,0x1e,0xe3,0x28,0xc2,0x58,0x4a, +0xc0,0xdf,0x18,0x4b,0xc1,0x06,0x3f,0xc0,0x70,0xe3,0xcf,0xd9, +0xb3,0xb8,0x3b,0x7a,0x93,0xe9,0x9a,0x3e,0x77,0x7e,0x04,0x26, +0xe5,0xbe,0xb9,0x08,0x06,0xdc,0xb7,0xff,0x39,0x11,0x59,0x78, +0x8a,0xb1,0x94,0x0e,0xe8,0xe3,0x62,0x71,0xa9,0xb9,0xb0,0x14, +0xbb,0x70,0xdf,0x44,0xbf,0xd7,0x8f,0x98,0xee,0xdc,0xec,0x0e, +0x15,0x68,0x82,0x49,0x03,0xac,0x78,0x19,0x3f,0x20,0xdd,0x6e, +0xa3,0x3a,0x35,0x76,0xad,0x75,0xbc,0x77,0xb7,0xc1,0x35,0xcb, +0x66,0xea,0xfa,0xc1,0xb0,0x83,0xfc,0xc0,0xc2,0xac,0xa4,0xf4, +0xc3,0xe9,0x87,0x33,0xa2,0x15,0x9b,0xab,0x5c,0xda,0xdc,0x1a, +0x6c,0x6b,0x14,0xfb,0xa1,0x14,0x5f,0x8f,0x0a,0xdb,0xbb,0xc5, +0xed,0x0f,0x8d,0x76,0x8b,0xcb,0x6d,0x84,0xe5,0x86,0xf8,0x88, +0x0e,0xe9,0xd1,0x2e,0x06,0xe7,0xc5,0xe1,0xc2,0x73,0x48,0xce, +0x5d,0xb2,0xe2,0xc1,0xe2,0x02,0x78,0x5d,0x02,0xcb,0x64,0x6e, +0xbd,0xf8,0x97,0x95,0xf0,0x17,0xce,0x43,0x73,0x36,0xcb,0x46, +0x81,0x82,0x97,0xf6,0x02,0xe9,0xf4,0xdc,0x29,0xe0,0xd9,0xcb, +0x8a,0x91,0x82,0x16,0xd1,0xc6,0xf4,0x31,0x56,0x78,0xa3,0x4d, +0xb0,0x7a,0x0c,0xaa,0x19,0xf1,0x0d,0x4e,0x25,0x90,0xae,0x89, +0xe9,0x0c,0x3c,0xb8,0x4d,0xa0,0x5a,0x13,0xab,0x19,0xc8,0xb6, +0x27,0xbe,0x91,0xb9,0x47,0xb3,0x8f,0x64,0x1d,0x56,0xfc,0xe4, +0xd4,0xaa,0x33,0x4b,0xe2,0xb8,0x07,0x2c,0x0e,0xe3,0x75,0x72, +0x25,0x60,0xd8,0x77,0xc0,0xad,0xa6,0x85,0x37,0xaf,0x33,0xac, +0x31,0x91,0xce,0x0c,0x99,0x27,0x9f,0x44,0xc0,0xd7,0x02,0x7d, +0xf7,0x4e,0xbc,0xe2,0x26,0x73,0x21,0x66,0x80,0x85,0xc7,0x39, +0x04,0xac,0x0c,0xd1,0x0a,0x63,0x4d,0x20,0x56,0xfc,0x1c,0xd7, +0xb1,0xd9,0x46,0xd2,0x43,0x95,0xdd,0xb9,0xb9,0xdd,0x2a,0xc2, +0xad,0x97,0xc3,0xac,0xe8,0x0b,0x07,0x48,0xa4,0x75,0xa8,0xb5, +0xbf,0x53,0x4b,0x30,0x5f,0xd6,0x5e,0xda,0x93,0x3b,0xc0,0xa1, +0x1c,0xe7,0x91,0xa8,0xee,0xe0,0xbe,0x90,0x66,0x87,0x70,0xbe, +0xd8,0xa5,0xc8,0x36,0xdb,0x8a,0x03,0x0b,0x31,0x94,0x80,0x7e, +0x1f,0xea,0xc3,0x6c,0x70,0xe8,0xc7,0xf7,0x98,0xfc,0xe6,0xdc, +0x9e,0xb4,0x56,0xeb,0x2c,0xfe,0xa8,0x5d,0x84,0xb9,0x74,0x4e, +0x65,0x83,0x05,0x38,0xe1,0x6c,0xd4,0xb6,0x04,0x6d,0x5c,0xce, +0xec,0x3e,0xb5,0xeb,0xd4,0xde,0xb8,0x44,0x53,0x1e,0x76,0x26, +0x81,0x6e,0x36,0x6c,0x2a,0x88,0x1b,0xe0,0xf7,0x1c,0xdf,0x7e, +0x62,0x7b,0x2c,0xb7,0x49,0x50,0x25,0x47,0xda,0x0e,0x76,0x44, +0x56,0xdb,0x1d,0xe4,0xb3,0x3d,0xf3,0x9c,0x52,0x5d,0x38,0xa1, +0x0d,0x5d,0x89,0xef,0x6b,0x97,0x57,0x8e,0x9f,0x59,0x07,0xf2, +0x2d,0xbb,0x9a,0x3e,0xae,0x58,0xc5,0xcd,0xfa,0x6b,0x89,0x5c, +0x9d,0x86,0x5f,0xa6,0xa4,0x3b,0xaf,0x2b,0xb3,0xd5,0x30,0x87, +0xb7,0x47,0x25,0x75,0x6a,0x0b,0x53,0x70,0x4a,0xa7,0x13,0x3f, +0x3c,0xd4,0x7b,0xb7,0xf5,0x1e,0x07,0x9f,0x8a,0x80,0xe6,0x52, +0x6b,0x53,0xd8,0xca,0xf4,0x14,0xe4,0xd3,0xc9,0xfd,0x04,0x02, +0x8b,0xe1,0x68,0x42,0x6e,0xa3,0xc2,0x75,0x9c,0x3b,0x82,0x2a, +0x57,0xcb,0x79,0x53,0x50,0xd4,0x84,0x85,0x5a,0x7f,0x72,0xa2, +0x7b,0x2c,0x71,0xc6,0xb9,0xda,0x38,0x5d,0x0d,0xdf,0xe9,0x75, +0xe6,0x7f,0x07,0xee,0x21,0xf0,0xad,0xa0,0x44,0x65,0xb9,0x04, +0x56,0x92,0x83,0x27,0xe2,0xa9,0xb7,0xcd,0x85,0x77,0x7a,0x8c, +0x01,0x87,0x7a,0x4c,0xef,0x9a,0xed,0x47,0x6b,0xfa,0x62,0x68, +0x3d,0x8a,0xa8,0x69,0x5d,0x2b,0xce,0x1f,0x1a,0x84,0x1f,0xfa, +0xf0,0x07,0x28,0x7f,0xc0,0xae,0x3d,0xea,0x68,0x62,0xa7,0x5c, +0xed,0x72,0x6b,0x28,0xe7,0xfa,0x05,0x98,0xa4,0x38,0x40,0xd3, +0x82,0x43,0x5e,0x78,0xab,0xf2,0x30,0x53,0x96,0x9a,0x5a,0xa6, +0xf2,0x23,0xeb,0x90,0xaa,0xa0,0xc6,0xc2,0xb9,0xff,0x8b,0xb5, +0xf7,0x8e,0x8e,0xe2,0xd8,0xbe,0x46,0x31,0x30,0xdd,0x6d,0x6c, +0x63,0x0c,0x14,0x6e,0xc4,0xf5,0x0c,0x32,0x22,0x67,0x0c,0x98, +0x9c,0x41,0x08,0xe5,0x34,0xca,0x59,0x48,0x42,0x11,0x21,0x94, +0x05,0x42,0x02,0x21,0xa2,0x90,0x84,0x72,0xce,0x39,0xe7,0x9c, +0x85,0x10,0x39,0x83,0x0d,0x36,0x38,0x61,0x63,0x92,0xe3,0x3d, +0x3d,0x3e,0x3d,0xbe,0xaf,0x1a,0x7c,0xdf,0xef,0x5b,0xdf,0xfb, +0xd6,0x5b,0xef,0x8f,0x87,0x16,0x9a,0xd2,0xcc,0x74,0x77,0xd5, +0xa9,0x53,0xfb,0xec,0xdd,0xe1,0x9c,0x9b,0xa4,0xa5,0x28,0x9f, +0xae,0xaf,0x4e,0x43,0xb1,0x4f,0x93,0xcd,0xa2,0x53,0xf1,0x1f, +0xd0,0x27,0x41,0xf0,0x8e,0x2b,0x4c,0xb6,0x7b,0xad,0x0c,0xe4, +0x5b,0xe7,0xd5,0xe3,0xd4,0x02,0xe9,0xce,0x82,0x9f,0xe0,0xdf, +0x24,0x12,0xdf,0xf7,0xc7,0x89,0x16,0x8b,0x7b,0xf7,0xf1,0x7d, +0xaf,0x2a,0xe0,0x5f,0xa9,0x30,0x99,0xc3,0xcc,0xe5,0x04,0x2d, +0x1f,0x83,0x25,0xa5,0xfc,0xe3,0x57,0xa3,0xe5,0x13,0x16,0x2c, +0x71,0x06,0x59,0x86,0x96,0x4f,0x59,0xf8,0x55,0x82,0x1f,0x87, +0x07,0xf0,0x31,0x4c,0xb9,0x0e,0x86,0xe6,0x05,0xbc,0x1e,0x0d, +0xdc,0x2c,0x8e,0x47,0xab,0xed,0x9c,0x24,0xe1,0xa7,0x90,0x26, +0x16,0xe6,0xea,0xa0,0x16,0xeb,0x20,0xce,0x32,0x10,0x34,0xd9, +0x43,0x98,0xbb,0x1e,0xb7,0xe2,0x65,0xd4,0xaa,0x31,0xe0,0xe1, +0x31,0x2c,0xfb,0x01,0xac,0x32,0xa0,0x8d,0x13,0x56,0x51,0x8c, +0xca,0x10,0xff,0x43,0x0c,0xc2,0x53,0x06,0x14,0x02,0xbb,0x47, +0x9c,0xc4,0xae,0xac,0xf1,0xfe,0x56,0x0e,0xce,0xd4,0xbc,0x79, +0x3d,0x0a,0x70,0x64,0xf5,0x29,0x8e,0x84,0x49,0xe5,0xe6,0x85, +0x32,0x02,0xf3,0x86,0x61,0xfa,0xab,0x47,0x4f,0xed,0x1b,0xf9, +0xdd,0x9b,0xf0,0xbd,0xa5,0xa8,0x69,0xca,0xb5,0xa1,0xe7,0x5b, +0xdf,0xdb,0x65,0x0c,0xbb,0xd8,0x58,0x2c,0xdf,0x8b,0xbb,0x71, +0x29,0x2e,0xee,0xb0,0xe1,0x61,0x05,0x2c,0xef,0x02,0x83,0x73, +0x70,0x9d,0x03,0x7b,0x26,0x17,0x3e,0x26,0x9e,0xf5,0xca,0x76, +0x9b,0x2a,0x27,0x17,0xbe,0xc3,0xab,0xcf,0xae,0xc6,0x95,0x2b, +0x16,0x39,0x02,0x6b,0x07,0x61,0x0d,0x8c,0x7f,0x0e,0xe3,0x1d, +0x9b,0xf8,0xd5,0xf3,0x71,0x31,0x8e,0xc3,0x75,0xe6,0x9c,0x23, +0xfe,0x4e,0xdc,0x0f,0xa7,0x55,0x2a,0x04,0x3b,0x43,0xd1,0x87, +0xd5,0xab,0x0a,0x18,0x91,0x0b,0xb6,0x4c,0x7b,0xbe,0xb4,0xc0, +0x67,0xb1,0x86,0xd9,0x32,0xdc,0xc0,0x8a,0x5a,0xdd,0x04,0x94, +0x17,0x41,0x07,0xde,0x7d,0x0e,0xef,0xd0,0xed,0x57,0x2d,0xc0, +0x4d,0x94,0xc3,0x28,0x0d,0xb8,0x89,0xaf,0xf6,0x90,0xc7,0x30, +0xa5,0x06,0x3e,0x83,0x53,0x1a,0x82,0x6a,0xe5,0x75,0x61,0xb6, +0x3a,0x8a,0x8a,0x61,0x3c,0xeb,0x83,0x8a,0x8d,0xc8,0xca,0x61, +0x87,0xea,0x20,0x11,0x54,0xa8,0x14,0x55,0x54,0xb3,0xbf,0x16, +0xda,0x08,0x1c,0x57,0x47,0x19,0xc1,0x13,0xd4,0x15,0x35,0x0d, +0x05,0x4d,0x7d,0xd6,0xe6,0x84,0xe3,0x31,0x37,0x39,0x7e,0x61, +0x04,0x97,0x18,0x57,0x64,0x97,0xe9,0xe3,0x96,0x9d,0x15,0x86, +0x14,0x00,0xbe,0xfc,0xf3,0x7e,0x13,0x2c,0xe2,0xe0,0xe2,0xd6, +0x2b,0x70,0xff,0xf9,0x08,0x83,0xab,0x40,0x97,0xa0,0x2e,0x36, +0x82,0x2e,0x1b,0x2d,0xee,0x24,0x09,0xf5,0x71,0xcd,0x1d,0x1a, +0x97,0xa0,0x11,0x4d,0xd8,0x89,0x7f,0xcd,0x52,0xb5,0x12,0x75, +0x3e,0x66,0x30,0x38,0xbc,0x1f,0x67,0x6a,0xcf,0x94,0xf7,0x9a, +0xca,0xbe,0x82,0xe9,0x45,0xb0,0x0c,0xee,0x69,0xa8,0x9c,0x18, +0x5d,0xb0,0x23,0x38,0x4b,0xad,0x49,0x47,0xa5,0xd2,0x57,0x07, +0x10,0xdc,0xc1,0x78,0x44,0xa5,0x54,0x28,0x60,0x3d,0xfb,0xbc, +0xee,0x97,0x0b,0xf7,0xaf,0xec,0xeb,0xe2,0xb7,0xeb,0x6f,0xb4, +0x5d,0xe1,0xc6,0x81,0xab,0xbe,0x68,0xc1,0xea,0x96,0x05,0x5e, +0x79,0x53,0x8c,0x2d,0x2b,0xab,0x5e,0x01,0x5a,0x92,0xe6,0x15, +0x2b,0x7e,0x21,0x60,0xd9,0x8f,0x96,0xb0,0x56,0x5f,0xf4,0x64, +0xf6,0x1e,0x77,0x8d,0x75,0x8e,0x4d,0xa4,0x94,0x77,0x7e,0x16, +0x4c,0xca,0x81,0x71,0xa5,0xb1,0xfd,0xbc,0x6e,0x84,0xf6,0xe1, +0x2d,0x47,0x68,0x80,0xfd,0x58,0xe8,0x25,0x78,0xed,0x00,0xce, +0xd1,0x99,0x29,0xef,0x33,0x93,0x7d,0x09,0x8a,0x02,0x58,0x08, +0x4f,0x68,0x5f,0xe0,0x8c,0x3a,0x9f,0xb9,0x8c,0x26,0x04,0x78, +0x95,0x26,0xf2,0x2c,0x76,0x63,0x10,0x55,0xd1,0x16,0xb0,0x13, +0xe7,0xe1,0x67,0x16,0x02,0x55,0xcf,0xeb,0x61,0x1e,0xe8,0xf6, +0xa2,0x2e,0x4c,0x31,0x62,0xd0,0x57,0xf4,0x22,0xc2,0x7a,0x7d, +0xb1,0x6e,0xf4,0xa2,0x70,0xd2,0x70,0x54,0xa8,0xd5,0x17,0xd7, +0xff,0x77,0xc4,0xd9,0x78,0x8c,0xc1,0xfe,0x03,0xb8,0x6a,0x07, +0x4e,0x94,0xf7,0x29,0x65,0x8f,0x60,0x6e,0x31,0x6c,0x90,0x86, +0x6c,0x47,0x87,0xbc,0x87,0xe0,0x47,0xea,0x4f,0xe0,0x23,0x56, +0x15,0x2b,0x06,0x51,0x8d,0xf9,0x23,0x78,0x18,0xa2,0x07,0xde, +0x33,0x87,0x56,0xd6,0x62,0x01,0x8e,0xdb,0x8a,0xeb,0x76,0x96, +0x19,0xf1,0x60,0xf0,0x18,0xc6,0x3c,0x2c,0x97,0xb2,0xc5,0xe1, +0x95,0x11,0xb8,0x92,0xc8,0x94,0xe3,0x3b,0x7f,0x6c,0x00,0x83, +0x95,0x25,0x94,0xb9,0x7f,0x7e,0x1b,0xc7,0xde,0xb3,0x7c,0xc6, +0xc1,0xfb,0x77,0x48,0x4b,0x57,0x6d,0x7f,0xe5,0x90,0x79,0x11, +0xef,0x6b,0xee,0x66,0xee,0x64,0xc3,0xe1,0xf9,0x33,0xc4,0xa7, +0x67,0x6f,0xbf,0x4b,0x9b,0x95,0x0f,0xdf,0x6c,0x57,0x63,0x51, +0x61,0xc1,0x4d,0xfc,0x41,0x97,0x3c,0x81,0xb9,0x05,0x34,0x92, +0x7d,0x43,0xbb,0x01,0xee,0xea,0x4c,0x74,0x67,0xf0,0x07,0x7f, +0x9c,0xbf,0x15,0x3f,0x90,0xc3,0x6a,0x55,0x1c,0x51,0x29,0xe6, +0xa9,0x15,0x8c,0x6a,0xbd,0x78,0x91,0x08,0xbb,0xc5,0x2f,0xc4, +0xdd,0xec,0x88,0x30,0x8d,0x08,0x4e,0x9b,0x44,0x27,0xc6,0x7a, +0xfc,0xff,0xbc,0x7e,0x4e,0x5f,0x81,0xd9,0x46,0x36,0xb9,0x2e, +0xda,0xb7,0x20,0xa2,0xd0,0x9c,0x7f,0x91,0xfd,0x67,0xdd,0xc3, +0x16,0x4e,0x30,0xb5,0x26,0xab,0x1b,0x97,0x56,0x2e,0xcf,0xf3, +0xb4,0xe1,0x5f,0xf8,0x3f,0xf5,0x7d,0xe8,0x42,0xd1,0x6d,0xa1, +0xaa,0x83,0xa8,0x8b,0xd0,0x9b,0xc1,0x47,0xc1,0xb8,0x74,0x33, +0xbe,0x2f,0x19,0xfe,0x6b,0xf8,0x24,0x1f,0x16,0x0b,0xe3,0x35, +0x54,0x6e,0x8c,0x3e,0xac,0x22,0x9a,0xea,0x79,0x7f,0xb2,0x4d, +0xe2,0x2e,0xf2,0x55,0xff,0xad,0xdb,0xfd,0x3f,0xd8,0x95,0xf3, +0x36,0x6b,0x77,0xed,0xda,0x64,0xcb,0xa9,0xce,0x88,0x53,0xc8, +0xea,0xbc,0x9d,0x25,0x86,0x55,0x37,0x07,0xfa,0xaf,0x54,0xdd, +0xa7,0xab,0xce,0xe0,0x35,0x04,0xf5,0x62,0xd0,0x6f,0x86,0x5a, +0xe8,0x61,0x01,0x1e,0x73,0xd1,0xdc,0x82,0xea,0x2d,0x5f,0x23, +0x5b,0xa5,0x81,0xa3,0x71,0xa3,0x5d,0xc7,0xde,0x3e,0x3b,0x6f, +0xbe,0xce,0xa2,0xcd,0xa6,0xdf,0x49,0xd7,0x6d,0x93,0xdf,0xca, +0xe0,0x3c,0x53,0xfe,0x65,0xc1,0x77,0x35,0x77,0x3b,0xae,0x3b, +0x3e,0xf2,0x78,0xe1,0xcf,0x89,0xb9,0x82,0x13,0xd1,0x59,0xbc, +0x61,0xe3,0x72,0xb3,0x0a,0x6b,0xbe,0xb6,0xa0,0xba,0xa4,0xaa, +0x8c,0xc3,0xbc,0x41,0xb8,0xcf,0x56,0x56,0x97,0xd7,0x15,0x37, +0x50,0x4f,0xf9,0x97,0xaa,0x8d,0x60,0x34,0x8b,0xf7,0xf7,0xe3, +0xbc,0x1d,0x38,0x56,0xde,0x63,0x2e,0xfb,0x06,0x66,0x16,0xc1, +0x7a,0x78,0x2c,0xd9,0x2f,0x92,0x51,0xdb,0xa1,0x36,0x81,0x0f, +0x55,0x9f,0xe0,0x87,0xec,0x42,0x71,0x11,0x81,0x59,0xb0,0xb5, +0x9f,0x7a,0x7d,0x61,0x4d,0x5e,0x5d,0x5e,0xbb,0x5e,0x01,0x1f, +0x6a,0x79,0xc0,0xd6,0xd7,0x91,0x13,0x57,0x98,0xc3,0xea,0x9d, +0x8c,0xff,0xa9,0x80,0xd8,0x83,0x72,0x34,0x91,0x12,0x70,0xfb, +0xaf,0x36,0x31,0x99,0x6b,0x5b,0x63,0xce,0xc3,0x7b,0x43,0x57, +0xbe,0x28,0x86,0x31,0x1c,0x44,0xbc,0xad,0x4c,0x6f,0xd7,0xcf, +0x88,0xb6,0x10,0x4c,0x22,0x2a,0x0f,0x34,0xfa,0xd7,0x18,0x06, +0xf0,0x65,0x6e,0x05,0x6e,0xe9,0xde,0x5c,0x15,0x3a,0x91,0xb8, +0x82,0x33,0x45,0xc5,0x1a,0x37,0xc0,0x17,0x67,0xb1,0x52,0xd0, +0xe8,0x26,0xea,0x42,0x34,0x64,0x44,0xe6,0x20,0x2e,0xdd,0x89, +0x13,0xe4,0x3d,0x36,0xd4,0xac,0xf3,0x73,0x60,0xbd,0xf0,0xbe, +0x86,0xca,0x9d,0x31,0x04,0x0d,0xb2,0x56,0xbd,0xf0,0x2b,0x16, +0x62,0x44,0x47,0x02,0xef,0x31,0x4d,0x19,0x19,0x55,0x8a,0x61, +0x78,0xd4,0x81,0x8f,0x12,0xd9,0xaf,0x72,0x5e,0xd4,0xd6,0x17, +0x73,0xd5,0xe2,0x59,0x3b,0x61,0x06,0xeb,0x16,0xb9,0x27,0xd8, +0xf0,0x08,0xe7,0x89,0xd7,0x6d,0xe1,0xba,0x3e,0x4e,0x61,0x61, +0x1a,0xda,0x12,0x87,0x18,0x9b,0xe3,0xd6,0xc7,0xb9,0x02,0xb6, +0x33,0x67,0xa0,0xa6,0xbc,0x90,0x6b,0xc0,0x8b,0x76,0x10,0xc2, +0xfa,0x87,0x58,0x07,0x7b,0x45,0x72,0xb6,0xac,0xc9,0x71,0x93, +0x58,0xb3,0x93,0x49,0x76,0x7c,0xef,0xd9,0xfe,0x73,0xfd,0xe7, +0xb8,0x85,0x8b,0xd8,0x54,0x1b,0xd9,0x43,0xa6,0x29,0x33,0xa3, +0x59,0xf1,0x23,0xdb,0x7d,0xae,0x33,0xbe,0x2d,0x9e,0x83,0x90, +0x2a,0x92,0xcd,0xf6,0xe6,0x77,0x55,0xd7,0x94,0x71,0xb5,0x78, +0xd7,0x0e,0x8e,0xb2,0xfb,0x82,0x5d,0x83,0xf6,0x46,0x72,0x2e, +0x6f,0x8a,0x70,0xcc,0xc6,0xb1,0x6c,0x8a,0x8d,0xec,0x25,0x5d, +0xd4,0x74,0xbb,0x9f,0x60,0x7b,0x3b,0x1d,0xde,0x5c,0x55,0x0f, +0x51,0x57,0xe0,0x12,0x06,0x55,0xe1,0xa8,0xbd,0x1b,0xb5,0xe4, +0xdd,0x4a,0xd9,0x1d,0x58,0x9f,0x4d,0x87,0x37,0x4b,0x43,0xb5, +0x9f,0x31,0xfe,0x93,0x18,0xab,0x3f,0x1f,0x66,0x85,0x05,0x94, +0xc4,0x99,0xa3,0xbc,0x9f,0xc1,0xdf,0x60,0x32,0x71,0x81,0xd3, +0x8d,0x2c,0x2c,0x9a,0xe6,0x02,0xc9,0x8d,0xac,0xb8,0x18,0x65, +0xa4,0x11,0x4f,0xbb,0xb0,0x2a,0xad,0x69,0x8d,0x98,0xec,0xc2, +0x62,0x12,0xfa,0x92,0xf4,0xf4,0xd4,0xcc,0xd4,0x4c,0x4e,0x08, +0x82,0xe9,0xea,0xa5,0x38,0x1d,0x3e,0x64,0x9c,0xad,0x4c,0x9c, +0xd6,0x7a,0x16,0x3a,0xf2,0x3d,0x85,0xad,0x45,0xb5,0x65,0x1c, +0x2c,0xb2,0x44,0x5f,0x9c,0x0a,0xbe,0x26,0xcc,0xe2,0xd8,0x79, +0x27,0xb4,0x4e,0x24,0xdb,0xf2,0xa0,0x4c,0x04,0xdd,0x24,0x58, +0x91,0x19,0x7f,0x3c,0x3e,0x26,0x3e,0x86,0x0b,0x63,0x92,0x6d, +0x64,0xf7,0x99,0xd1,0xc2,0xe2,0x0b,0x49,0x8a,0xa4,0xeb,0x09, +0x7f,0xc2,0x38,0x0d,0xf1,0x30,0x28,0x88,0x12,0xe7,0xf7,0xb1, +0x60,0x33,0x0d,0xe6,0x29,0x71,0x9e,0xf4,0x8c,0x6c,0x1f,0xac, +0x56,0xb2,0xe7,0x51,0x20,0xce,0x31,0x87,0x8e,0xec,0x9b,0x11, +0xc3,0x24,0x9e,0x3b,0x50,0xe9,0x5e,0xe3,0x53,0x38,0xdd,0x25, +0xf8,0x7c,0x4c,0xd2,0xb1,0xa4,0xa3,0xd3,0x2d,0x63,0xcd,0x4f, +0x98,0x9e,0xe0,0x06,0x20,0x10,0xa6,0x62,0x60,0x0f,0x3c,0x61, +0x77,0x1e,0xc7,0xb1,0x47,0xed,0xe4,0x22,0x0b,0x33,0x88,0x0d, +0xae,0xeb,0x64,0x85,0x19,0x36,0x04,0xb7,0x76,0xc2,0x56,0x0a, +0xd9,0xb7,0x00,0x08,0xf6,0x08,0x01,0xda,0x62,0x00,0xb6,0x0b, +0x1a,0x3a,0xa2,0x15,0xa8,0x98,0x23,0xa8,0xb5,0xfa,0x73,0x0c, +0xd0,0x2d,0xd1,0xe3,0x21,0xea,0x3a,0x8c,0x97,0xae,0xad,0xed, +0xe4,0xa0,0x77,0xf3,0x55,0xa1,0x58,0x87,0x99,0x08,0x97,0x5e, +0x10,0x55,0xa0,0xae,0x3a,0x50,0x53,0xf8,0xcb,0x40,0x1d,0x7d, +0xe9,0x1e,0x3c,0x55,0x7d,0x6e,0x20,0xfe,0xc5,0x0a,0xce,0x2b, +0x24,0xe0,0xb5,0x3f,0x92,0xd6,0xaa,0x50,0x25,0xe9,0xaa,0x33, +0xd9,0x75,0xa5,0xde,0x8f,0xe4,0xa0,0xc3,0x74,0x65,0xe7,0x75, +0x2b,0x40,0xc9,0x1a,0x14,0xc8,0x26,0xaa,0xfa,0x55,0xa5,0xf4, +0x6b,0xd8,0x0c,0x5e,0xba,0x94,0x7e,0x95,0xc2,0x0e,0x3d,0x8c, +0x50,0x1d,0x87,0x08,0x56,0x5d,0x26,0xce,0x21,0xf0,0x25,0x13, +0x81,0x36,0x73,0xe6,0x62,0xe4,0x8a,0x0a,0x1a,0x68,0x33,0x9f, +0x53,0x2e,0xf8,0xaf,0x0c,0xf0,0xe1,0xe0,0x07,0x06,0xdf,0x3f, +0xaa,0x19,0xb6,0x5d,0x6e,0x7c,0x28,0x28,0x78,0xd1,0x0c,0x24, +0x4c,0x8e,0x9e,0x0c,0xa6,0x30,0xc0,0xb6,0xd4,0x7f,0x95,0xab, +0xc8,0xfd,0x26,0x09,0xde,0x85,0x6d,0x1a,0xea,0x26,0x66,0xa2, +0xf0,0xa7,0x6a,0x0f,0xc9,0x6a,0x4e,0x6f,0x4b,0xeb,0x30,0x4c, +0xe5,0xf7,0xe1,0x34,0xeb,0x39,0x1b,0x66,0xb5,0xdb,0xf3,0x4d, +0x7d,0x35,0x43,0xe5,0x97,0x38,0x81,0xbb,0xc8,0xa8,0x57,0x8b, +0x74,0x18,0x21,0x86,0xea,0x90,0x55,0x82,0x68,0xac,0x8e,0xba, +0x78,0x17,0x9a,0x55,0x9f,0x1b,0x8b,0xd4,0x4e,0x25,0x4b,0xc9, +0x9e,0xe0,0xac,0xda,0x86,0xea,0xd6,0xaa,0x1a,0xc5,0x85,0xcb, +0x94,0xdb,0x4c,0xfd,0xfd,0x67,0xae,0x4b,0xe4,0x8c,0xa0,0x82, +0xdd,0xa2,0x4d,0x63,0xab,0xcc,0xd4,0x80,0xb3,0x56,0xba,0x99, +0x58,0x6a,0xe8,0x36,0xbb,0xbc,0x94,0xc3,0x59,0xa6,0x3d,0x5b, +0xca,0xda,0xa3,0xc3,0x9a,0x64,0xc9,0xd0,0x91,0x9d,0xa8,0xba, +0xa8,0x6a,0x27,0x38,0x03,0xbb,0x61,0x8d,0x3e,0xae,0xc1,0x1a, +0x98,0xa1,0x8f,0xc6,0xaa,0x04,0x30,0x66,0x6f,0xaa,0x2f,0x10, +0xcd,0xec,0x45,0x15,0x6b,0x1b,0x9f,0x5e,0xbc,0x7e,0xa7,0xfe, +0x09,0xd7,0x81,0xda,0x6c,0x61,0x67,0x56,0x57,0x4a,0x1f,0xd7, +0xaa,0x9e,0x6d,0x06,0x26,0xfe,0x2c,0x2a,0x95,0xa8,0x85,0x3b, +0x51,0x53,0xde,0x6e,0x0d,0xfc,0xef,0xb7,0x61,0x42,0x39,0x28, +0xa6,0xa7,0x31,0x6d,0x9b,0xef,0x6c,0x7d,0x66,0xb0,0xda,0x79, +0xae,0x37,0x32,0xc1,0x45,0x14,0xd9,0x3f,0x2a,0x00,0xa6,0xe1, +0x79,0xef,0x4f,0x16,0x30,0xc6,0x05,0x26,0x04,0x71,0xe2,0x37, +0x42,0x0f,0x81,0x6f,0x98,0x48,0xeb,0x08,0xbb,0x83,0x0e,0x1c, +0xb6,0x30,0xf1,0xb5,0x67,0xeb,0x1b,0x34,0x04,0x6b,0x5c,0x4f, +0x5c,0x76,0xea,0x1b,0xae,0xb5,0x5e,0xdd,0xa3,0x7d,0xd1,0xfa, +0x1a,0x85,0x53,0x46,0x10,0x08,0x98,0xe9,0xa3,0x9c,0x76,0x72, +0x83,0x3e,0x6e,0xa0,0x9d,0x94,0xeb,0xa3,0x19,0x7c,0xc9,0xea, +0xaf,0x45,0x76,0x27,0x86,0xed,0x2a,0xa4,0xb1,0x2f,0xe1,0x2b, +0x20,0x5f,0xb6,0xc3,0x58,0x2e,0x91,0x69,0xc7,0xb1,0x20,0xdf, +0x08,0xe9,0x6b,0x0a,0x69,0xd8,0x38,0x74,0x03,0x27,0xdf,0xd4, +0xfd,0x8a,0xc3,0x18,0x3c,0x4f,0x04,0xad,0x41,0x51,0x8b,0x11, +0x1c,0x31,0x80,0xd8,0xe9,0xad,0xd6,0xda,0xb9,0xad,0xdf,0x8d, +0x7f,0xf8,0xed,0x8f,0xc0,0x8c,0x7e,0xc3,0xb5,0xa9,0xcd,0x4d, +0x29,0xf5,0x79,0x5f,0x35,0x48,0x4c,0x21,0x8f,0xbd,0xba,0x15, +0xb8,0xd5,0xc0,0x38,0x96,0xf4,0xf3,0x28,0x6b,0xc5,0x31,0x77, +0xb6,0x7e,0xcb,0xe1,0x1f,0x21,0x64,0xe7,0xc6,0x59,0xdb,0x50, +0xe6,0x54,0x41,0xb5,0x01,0xd3,0x0e,0x63,0x1e,0xdc,0x7d,0xc4, +0x09,0xef,0xa2,0x2e,0x39,0x65,0x1e,0x6b,0x1b,0xed,0xc2,0xd9, +0x47,0x05,0x47,0x5a,0xcc,0xc0,0x8f,0xa5,0xc7,0xf6,0xe8,0x32, +0x7b,0xd8,0x50,0x78,0x2d,0x53,0x91,0xd6,0x17,0x7f,0xe1,0x0c, +0xc5,0x3c,0xf1,0xb1,0x19,0xb8,0x33,0x41,0x28,0x9b,0xb5,0x03, +0x7d,0x1d,0xf2,0xcd,0x78,0xf0,0x69,0x85,0x39,0x8f,0xf3,0xa9, +0xa8,0x6b,0x10,0x2b,0x08,0xc4,0xeb,0x60,0x3c,0x16,0x82,0x8d, +0x1e,0x5e,0xba,0xd4,0xa7,0x1a,0xab,0xbc,0x0c,0x97,0x74,0xd1, +0xe6,0xcd,0x24,0xb5,0xfe,0x9f,0x27,0x69,0x50,0x4c,0x27,0x43, +0x62,0x3a,0x5b,0xdc,0x50,0xd8,0x90,0x5b,0xc7,0x09,0xc6,0xc3, +0x6a,0xd1,0x18,0x44,0x26,0xc8,0xed,0xc0,0x5e,0x5f,0x29,0x37, +0x9b,0x09,0xc4,0x32,0x7b,0x6d,0x1c,0x6d,0x6c,0x6c,0xef,0x07, +0xbf,0xf6,0x83,0x77,0xbc,0x66,0xdb,0xe3,0xb4,0x00,0xdc,0x28, +0x15,0x4f,0x05,0xf3,0x34,0x58,0x52,0x03,0x13,0xae,0xc1,0xbb, +0x1e,0x30,0xd1,0x05,0x18,0xe7,0xf2,0x3e,0x1e,0xc7,0xd4,0xe3, +0x3b,0x35,0x5a,0x15,0x37,0xfb,0x06,0xae,0x37,0x3e,0x91,0xee, +0x36,0xd1,0x27,0x4b,0x4b,0x56,0x17,0x6c,0xcf,0xa9,0xae,0xad, +0x6c,0xa8,0x68,0xe2,0xe0,0x2e,0xe3,0xb8,0xc1,0xcc,0x70,0x87, +0x1d,0xd5,0x57,0x7e,0xaa,0x87,0xc4,0x10,0xb5,0xd1,0x50,0x1d, +0x34,0x3c,0x02,0x8f,0x0c,0x87,0x54,0x41,0x68,0xc9,0x88,0x2e, +0xe2,0x25,0xea,0xb1,0x46,0xea,0x90,0x0d,0x82,0x68,0xa2,0x8e, +0x1e,0xb9,0x0b,0xc5,0xaa,0x35,0x26,0x92,0xc7,0x3e,0x80,0x2c, +0x42,0xf1,0xe7,0x14,0x4c,0x67,0x06,0xf1,0x14,0xa1,0x0d,0x4d, +0x3c,0xc5,0xe2,0xd7,0x66,0x04,0xa6,0x63,0x36,0x4e,0x67,0xc0, +0x18,0xb2,0xa9,0xda,0xa3,0x6d,0x4d,0x66,0xe2,0x5f,0x1f,0xa4, +0x10,0xc3,0x97,0xfb,0x40,0x11,0x01,0x5e,0x1c,0xac,0x1b,0xc2, +0x8d,0x4c,0xec,0xb5,0x93,0xf7,0xbe,0xd2,0x18,0x4e,0x1e,0x4c, +0xef,0xca,0xf4,0xeb,0xe1,0x67,0x7b,0x49,0x0f,0x7a,0xaf,0x89, +0xe6,0xd4,0x2c,0x1b,0x16,0x1b,0x1e,0x1b,0x76,0x22,0xcd,0x90, +0x7f,0x92,0xfb,0xac,0xe4,0x46,0x49,0xd4,0x00,0xef,0x18,0x6e, +0x1d,0x61,0x75,0x98,0x83,0x21,0x58,0xca,0x66,0x61,0x44,0x23, +0xae,0xb8,0xf1,0x69,0x99,0xcd,0x60,0x52,0xc2,0xe5,0x2c,0x70, +0xe1,0x2d,0xf2,0x65,0xea,0xf7,0xa8,0x28,0x7a,0xb3,0xb6,0xd6, +0x49,0x3d,0x8d,0x1a,0xb9,0x03,0x15,0xff,0xf4,0xd4,0x5d,0x25, +0x23,0x1d,0x71,0x5d,0xf1,0x5d,0x89,0x67,0x36,0x9d,0xdd,0x11, +0xa7,0xc3,0xe1,0x42,0x06,0x4c,0xc5,0x2b,0xe4,0x22,0xb6,0x18, +0xd0,0x29,0xb1,0x57,0xe9,0x92,0xac,0xd6,0xf4,0xce,0xe4,0x4e, +0xbd,0x64,0xfe,0x88,0x45,0x84,0x45,0x98,0x1d,0x87,0x4b,0xd4, +0x29,0xa3,0x37,0x60,0x60,0xd7,0xa8,0x2a,0x85,0x51,0xcf,0x10, +0x5f,0xbe,0xdd,0xf7,0xfa,0xff,0xee,0xbb,0xec,0x9f,0x7d,0xdb, +0x01,0xe5,0x9f,0xe7,0x60,0x00,0xcf,0xb1,0x38,0x80,0xdf,0x12, +0x28,0xa7,0xed,0x72,0x76,0x22,0x64,0xfc,0x44,0x54,0xa1,0x46, +0xea,0xd0,0xcd,0x82,0xda,0x54,0x1d,0x7d,0xe1,0x2e,0xe4,0xa8, +0xd6,0x98,0x8a,0x6a,0x56,0x98,0x02,0x01,0x44,0xd8,0x04,0x7e, +0xc3,0x62,0x84,0x31,0xb8,0x50,0x19,0x1f,0x6c,0x00,0xc1,0xf8, +0xf5,0x28,0x7c,0x0d,0x91,0x17,0xd9,0x80,0x1f,0x48,0xe0,0x57, +0xf6,0x7f,0xb8,0xde,0xb5,0x0c,0xe1,0xeb,0x37,0x37,0xe3,0x3b, +0x85,0xeb,0x38,0xfc,0x1a,0x6a,0x49,0xc8,0x1a,0x8f,0xc5,0x4e, +0x1b,0x7a,0xa8,0xf2,0x7a,0x58,0xfb,0x7b,0xee,0x13,0x1a,0xe4, +0x7f,0x52,0x59,0x13,0xf1,0xf7,0x4d,0x2a,0x3f,0x23,0xb5,0xdf, +0x16,0xe1,0x77,0x53,0x75,0xf0,0x85,0x3b,0x90,0xa5,0x5a,0xc2, +0x0a,0xe1,0x6a,0x1b,0xa2,0x73,0xc9,0xf5,0x55,0x28,0x2c,0xe4, +0x40,0x39,0x80,0xb6,0x4c,0x6c,0xe7,0xc9,0xde,0x53,0xc3,0x1c, +0xac,0x85,0x72,0xd1,0x40,0x5d,0xcf,0xf8,0x1e,0xf5,0x3b,0x16, +0x70,0x3c,0xc5,0x98,0xff,0x2e,0x17,0x3e,0x69,0xbe,0x5f,0x7e, +0x6c,0x90,0x5a,0xd8,0x28,0xd8,0x30,0x4c,0xba,0x89,0x6c,0x33, +0x9b,0x87,0x9b,0x3a,0xf0,0xfd,0x07,0xda,0x35,0x5e,0xcd,0xa9, +0x89,0xfd,0xc5,0xa0,0xcd,0x5b,0xe7,0xcb,0x4c,0x84,0x19,0x04, +0xef,0x50,0x2a,0x78,0x87,0xc1,0x3b,0x74,0xd9,0xc1,0x72,0xe6, +0x8c,0xe9,0x59,0x65,0xbc,0x35,0x87,0x6b,0x29,0xfc,0xe9,0x0b, +0xa9,0x04,0xe4,0x89,0xb0,0x32,0x0d,0x26,0x67,0xa5,0x06,0xa7, +0x04,0xa5,0x04,0xf5,0x57,0xf2,0xd6,0xdf,0x9b,0x3e,0x31,0xbb, +0x65,0xe5,0xc5,0x97,0xbb,0x96,0x3b,0x94,0xdb,0xad,0x39,0xb2, +0x24,0x7a,0x41,0x4c,0xdb,0xdd,0xda,0x47,0x15,0xdf,0x1b,0x65, +0xf2,0xbe,0x2b,0x9c,0x16,0x2b,0xd7,0x85,0x9c,0x0a,0x3d,0x1d, +0x72,0x8a,0xc3,0xcd,0xe2,0x76,0xa2,0xd2,0x36,0x56,0x6b,0x6f, +0x13,0x2e,0x9b,0xaa,0xed,0x2f,0x7c,0x07,0xa9,0x2a,0xc6,0x54, +0xbc,0xcc,0x0a,0x89,0xa0,0x43,0xe0,0x33,0x7d,0xfc,0x0c,0x37, +0xc0,0x22,0x03,0x5c,0x84,0x1f,0x9a,0xc0,0x44,0xf6,0x28,0x4e, +0xb3,0x5b,0xab,0xb5,0xa5,0xd1,0x8a,0x87,0x71,0x8f,0x87,0xfe, +0x4c,0x86,0xb9,0x1c,0x6c,0xc4,0x67,0xa3,0xf0,0x0c,0x38,0xe9, +0xc1,0xff,0x86,0x9f,0x89,0x2a,0xd8,0x40,0x1d,0xbc,0x5c,0xc0, +0xb7,0x60,0xdb,0x2d,0x81,0x2d,0xb2,0xc2,0x1d,0x61,0x80,0x60, +0x28,0xec,0x36,0x14,0xb7,0xe2,0x1c,0xd1,0xe7,0xc2,0x08,0x54, +0x18,0x5e,0x10,0x7c,0xd0,0x04,0xcc,0x21,0x94,0x11,0xdf,0x17, +0xbb,0x08,0x75,0xb4,0x0a,0x1c,0xa2,0xb1,0x5c,0x26,0xfc,0x41, +0x45,0xba,0x3e,0x6a,0x62,0x17,0x6c,0xd1,0xc3,0x2d,0x58,0x0d, +0x9a,0xfa,0x68,0x01,0xdf,0xb3,0xfa,0x6b,0x90,0xd3,0xc6,0xa3, +0x3a,0x52,0xf5,0xdb,0xf8,0x7b,0x30,0xed,0x4e,0x07,0xc5,0x85, +0x44,0xa6,0x13,0xc7,0x80,0x7c,0x3b,0xa4,0x6f,0xce,0x1f,0xe2, +0xf1,0xf8,0x55,0x9c,0x7a,0x43,0x9f,0x42,0x56,0x2e,0x66,0x10, +0xc1,0x6d,0x40,0x74,0x63,0x5c,0x44,0x3f,0xd2,0x2e,0x74,0xd8, +0x5d,0x82,0x47,0xea,0xcf,0xf1,0x11,0x2b,0x08,0x50,0x4c,0x70, +0x8b,0xd8,0x01,0x5b,0xe8,0xe1,0x4c,0x84,0xf3,0x04,0x8f,0x83, +0x26,0xf8,0x0f,0xa0,0x3f,0xf0,0x06,0xc8,0xa3,0xab,0x19,0xb8, +0xd2,0xc3,0x47,0x98,0xc2,0x9f,0x14,0x38,0x9f,0x9b,0xc2,0x73, +0x2c,0xc0,0xd5,0x4c,0x96,0x89,0x0c,0x66,0x32,0x6d,0xb9,0xb9, +0x6d,0x0a,0xc8,0x00,0xd9,0x20,0xca,0x40,0x4e,0x8d,0xa2,0x36, +0xc1,0xe7,0x44,0xe5,0x66,0xac,0x76,0xdb,0x29,0xfc,0x6c,0xa6, +0xf6,0xa1,0x3e,0x11,0xa7,0xd2,0x32,0x13,0x7f,0x66,0x61,0xfd, +0x6d,0x52,0xbf,0xb7,0xcd,0xac,0xc2,0xae,0xad,0x96,0xf7,0xec, +0x74,0xe8,0x73,0xa1,0x54,0x51,0x75,0x5b,0xd5,0x49,0x70,0x22, +0x5e,0x84,0xf9,0xfa,0x38,0x1f,0xdb,0x61,0xa2,0x3e,0xee,0x50, +0xd1,0x00,0xc9,0x06,0xa8,0x87,0x88,0x49,0x89,0x5d,0x8d,0x7b, +0xd7,0x68,0x77,0xef,0x70,0xfb,0x15,0xdb,0x6a,0xde,0xc5,0xcc, +0xd6,0xc2,0xd8,0x26,0xa0,0x27,0xf4,0x62,0xd4,0x3d,0x1a,0x9b, +0x07,0x71,0x98,0x39,0xd1,0x7c,0xb2,0xbd,0x5b,0x63,0x50,0xdf, +0x84,0xb5,0x3e,0x6b,0x17,0xe7,0x24,0xc7,0x70,0xe0,0x98,0x91, +0xa4,0xbe,0xe4,0xa6,0x54,0xdf,0x1e,0x7e,0xc9,0x7e,0x5c,0x1c, +0x82,0x73,0x62,0x52,0xcd,0xf8,0xcb,0x71,0x57,0xe3,0x2f,0x9d, +0xe7,0x66,0xe2,0x61,0x53,0x38,0x8c,0xff,0x62,0x37,0x46,0xae, +0x8b,0xda,0x1e,0x93,0x6c,0xca,0xdf,0x4f,0xbc,0x97,0x74,0x33, +0x45,0x4a,0xbd,0x63,0xc4,0x4a,0xf5,0xdf,0xb7,0x32,0xcd,0xb9, +0xb9,0xcd,0x0a,0x58,0xc1,0x5e,0x4e,0xbd,0x90,0xda,0x93,0x16, +0xd3,0xc7,0xdb,0x1e,0x31,0x8a,0x7c,0x73,0x0f,0x2e,0x44,0xb1, +0xa9,0xcb,0xf2,0xb7,0x56,0x18,0xed,0xb2,0x59,0xeb,0xbc,0xc0, +0xbb,0xd8,0x84,0x7f,0x55,0xf9,0xb8,0xf9,0x76,0x4f,0xbd,0x45, +0xe7,0xde,0x61,0xbf,0x3e,0x9f,0xba,0xe4,0xa4,0xe1,0x3c,0x98, +0xc5,0x9b,0xe7,0xcb,0x70,0x97,0x30,0x9f,0xb4,0x7a,0x74,0x39, +0xd5,0xdb,0xb6,0x35,0xf0,0x7b,0x5b,0x2d,0xdb,0xed,0x6b,0xe8, +0x70,0xed,0x54,0x73,0x09,0xc4,0x0e,0x60,0x2c,0x4c,0x36,0xc2, +0xc9,0xe8,0x6f,0x06,0xfe,0x78,0x9c,0x0a,0x4f,0xb3,0x99,0xe8, +0x8d,0x9f,0xca,0x6b,0x4c,0x41,0x17,0x26,0xdf,0x81,0x31,0x09, +0x30,0x7d,0x7a,0x22,0x13,0x8f,0x53,0x1e,0xa0,0x94,0x5e,0x64, +0x72,0xdd,0x00,0x8f,0x06,0xa0,0xb5,0xe7,0x77,0xb0,0xd4,0x10, +0x9d,0xf0,0x0e,0x51,0x85,0x99,0xa8,0xc3,0xb4,0x85,0xbf,0xcd, +0xd4,0xd1,0xc3,0x77,0xe1,0x94,0x6a,0x8d,0x99,0xf8,0x37,0x0b, +0x5b,0x84,0xe3,0x44,0x8f,0x5d,0x14,0x61,0xbc,0x63,0xb9,0xbc, +0xde,0xb6,0xba,0xb5,0xfa,0x42,0x6a,0xf5,0xf4,0x73,0xa9,0x09, +0x27,0xe3,0xa3,0xfa,0x71,0x1c,0xdf,0x58,0x6d,0x02,0x4c,0x4c, +0x5a,0xf4,0xe9,0xe8,0x63,0xd3,0x0f,0x1d,0x39,0x71,0x56,0x96, +0x54,0x1d,0x57,0x35,0xa8,0x71,0x81,0x85,0xd4,0x69,0xfa,0xec, +0xa2,0xc3,0x16,0x86,0xeb,0xe4,0xb5,0xb6,0x15,0x0d,0x25,0x7d, +0x29,0x65,0x74,0xb3,0xf8,0x93,0xf1,0xd1,0x37,0x70,0x2a,0xdf, +0x58,0xb7,0x13,0x26,0x1f,0x4b,0x8b,0x3e,0x2b,0x95,0xc4,0x89, +0xa2,0x9b,0x25,0x56,0xc7,0x55,0x0e,0x6b,0x0c,0x53,0x98,0x79, +0xac,0x72,0x20,0xe2,0xdf,0xdb,0x54,0x61,0xc6,0xea,0xb0,0xed, +0x6f,0x7a,0x43,0xa1,0x26,0x51,0xb5,0x86,0x15,0xee,0xa9,0xfd, +0x08,0x6a,0x64,0xcd,0x2e,0x59,0xdd,0x5d,0xd5,0x96,0x3b,0x90, +0x74,0x9b,0x03,0x6f,0x41,0x81,0xae,0xbf,0xc1,0xa9,0x01,0xb1, +0xc6,0x0c,0x0e,0x6b,0xa1,0x93,0xa8,0x00,0x2b,0xe6,0xa8,0x49, +0x98,0x83,0xdf,0x5e,0xb7,0x52,0xcf,0x2a,0xcf,0x46,0x7b,0x4f, +0xbe,0xca,0xa9,0xd6,0xbd,0xd1,0xdb,0xce,0x75,0x8f,0xf7,0x32, +0xdf,0x42,0x4b,0xfe,0xd7,0xaa,0x7b,0x35,0xbd,0x9d,0x3f,0x9b, +0x02,0xeb,0x09,0x33,0xc2,0x39,0xec,0x12,0x9a,0x08,0xce,0x85, +0x09,0x52,0x45,0x6c,0x57,0x9c,0x40,0x70,0x01,0x6d,0x2f,0x60, +0x10,0xa4,0x87,0x92,0xe7,0x2a,0x99,0x03,0xa7,0x02,0x4e,0x05, +0xca,0x71,0x36,0x03,0x0e,0xd3,0xce,0x14,0x9e,0x29,0x2a,0xd1, +0xe8,0x84,0x05,0x38,0x89,0xba,0xb6,0x8d,0x70,0x8d,0xf8,0xdc, +0x37,0xf9,0xdd,0xf2,0xb6,0xad,0x2f,0xdf,0xbe,0xa7,0x77,0x41, +0xf9,0x36,0x0e,0xf5,0xa0,0xdc,0x08,0xcb,0x71,0x3b,0xd3,0x7b, +0xbb,0xf9,0xfb,0xbc,0x2f,0x2d,0x0b,0xf8,0xe0,0x4d,0xf6,0x0b, +0x8c,0xb6,0xb5,0xb8,0xf2,0x19,0xb9,0x32,0xf5,0x84,0x61,0x88, +0x84,0x21,0x5c,0x85,0x8b,0xd9,0x1c,0x1a,0x85,0xa7,0x31,0xad, +0xb9,0xf9,0xcd,0x0a,0xa1,0x9d,0x8d,0x8b,0x39,0x4b,0x7f,0x38, +0xf5,0x5c,0xd1,0x90,0xe2,0xac,0xb1,0x3a,0x74,0xdb,0x7f,0x71, +0x36,0xf5,0x1f,0x9c,0x4d,0x87,0x0e,0x82,0x43,0xc0,0xbd,0xcd, +0x0b,0xb2,0x49,0xba,0xf6,0xf1,0x9e,0x94,0x0f,0xe4,0x2f,0x13, +0xb8,0x41,0xd4,0x5e,0xc3,0xc2,0x53,0x48,0xc5,0x07,0x4c,0x6a, +0x4e,0x72,0xde,0xf9,0x1c,0x0e,0x7e,0x87,0x29,0x86,0x9b,0xb1, +0xef,0xa9,0xe1,0x32,0xac,0xbb,0x6f,0x80,0x53,0xe0,0x17,0x26, +0x3a,0x24,0x2a,0xf8,0x70,0x30,0x87,0x39,0x62,0xb0,0x6a,0x0b, +0x73,0xca,0xf9,0xa4,0x2b,0x65,0x05,0xfb,0x8e,0x85,0x1f,0x71, +0x9e,0xb1,0x81,0xc9,0xb2,0x94,0xdd,0x61,0x1e,0x94,0x96,0x0c, +0xa5,0x2a,0x92,0xbb,0xce,0x0e,0x9d,0x7d,0xc0,0xa9,0xb7,0x5d, +0x56,0x79,0x31,0x68,0x05,0x99,0x44,0x2c,0x19,0x10,0x4a,0x18, +0xb1,0x04,0x57,0x92,0x61,0xa1,0xc4,0x98,0x55,0x6b,0x89,0x87, +0x48,0x6f,0x6f,0xcb,0xb5,0xa2,0x01,0x93,0x02,0xfe,0x80,0x99, +0x8b,0xb9,0x85,0x05,0xf7,0xe6,0x2a,0x7e,0x91,0x7b,0xb6,0x73, +0xa6,0x6d,0x7f,0x36,0x1f,0xde,0x11,0xd0,0x12,0x58,0xc1,0xa1, +0x53,0x30,0xc9,0x75,0xc8,0xb0,0x4c,0xb2,0xbc,0x98,0xca,0x47, +0x75,0x85,0xf6,0x04,0x35,0x73,0xb8,0x3f,0x8a,0xa4,0xd8,0x9f, +0x37,0x38,0x63,0x76,0x25,0x9e,0x3f,0x71,0x21,0x7a,0x30,0xa2, +0x9d,0xc2,0x7f,0xf1,0xb3,0xb7,0x21,0x69,0xcd,0xdb,0x90,0x74, +0x17,0xaa,0x55,0x9f,0xbf,0x09,0x49,0xe1,0xaa,0x40,0xb2,0x6f, +0x85,0x9e,0x96,0xb6,0x51,0xbd,0x03,0x7f,0xff,0xe6,0x0d,0x78, +0xb7,0xf2,0x1b,0x0e,0x6e,0x61,0x08,0x71,0xbe,0xb3,0xe3,0x4f, +0xb3,0x5b,0xf6,0xde,0x7c,0xff,0xf6,0x6b,0xb3,0x5b,0x37,0x72, +0x18,0x07,0x63,0x88,0x1b,0x15,0xed,0x9a,0x38,0x79,0x51,0x25, +0xa5,0x41,0xfc,0x9f,0x0f,0x9e,0x95,0xfc,0x53,0x81,0x63,0xe2, +0x9d,0x95,0xf0,0x29,0xca,0x24,0x1e,0x31,0xe5,0xe5,0x96,0x5f, +0xdc,0x28,0x1f,0xc3,0xcf,0xa8,0x4f,0x0d,0x40,0x92,0xd9,0x05, +0x61,0xa1,0x38,0x41,0x5c,0xc8,0xc2,0x75,0xf8,0x83,0x50,0x3a, +0x96,0x04,0x31,0x6f,0xa8,0xcd,0xa0,0x74,0x05,0xb7,0x1b,0x66, +0xea,0xe3,0x4c,0x4a,0x6d,0x38,0x7d,0xdc,0x48,0xa9,0xcd,0x46, +0xf6,0xa6,0xa8,0xa0,0x08,0xf7,0x02,0x14,0x7d,0xea,0x2f,0x94, +0xa0,0x58,0x80,0x5b,0xcc,0x60,0xcb,0x5c,0x54,0x28,0x85,0x49, +0x9f,0xbd,0x3d,0x13,0x3c,0x6b,0x04,0x66,0x09,0xab,0x07,0xc4, +0xd5,0xdf,0x09,0x9a,0x7d,0xa8,0x78,0x0d,0x5b,0x18,0x2a,0x47, +0x16,0x91,0x05,0xa8,0xf3,0x82,0x6a,0xc0,0x05,0xe4,0x05,0x58, +0x2f,0x60,0x45,0x5d,0x4a,0x2e,0x74,0xe6,0xa2,0x0e,0x03,0x31, +0xd3,0x5e,0x83,0xf5,0x5c,0x56,0x4a,0x48,0x45,0xa3,0xe0,0xe5, +0xad,0xff,0x13,0x37,0x0c,0x29,0xe2,0xa5,0xa8,0x18,0x56,0xb8, +0xd4,0x40,0xf9,0x54,0x0c,0x86,0xb3,0x58,0x15,0x89,0xba,0x7b, +0x70,0x91,0xbc,0xcf,0x45,0x76,0x03,0xd6,0x65,0xd2,0xa0,0xdd, +0xa0,0x41,0x11,0xae,0x4a,0xe4,0x89,0xf0,0x49,0x3f,0xd2,0xc5, +0x05,0x8b,0xfb,0x70,0x31,0x4c,0x30,0xc3,0x09,0x38,0x53,0x09, +0x33,0x29,0x32,0xac,0x62,0xc0,0x07,0xb3,0x08,0x2c,0xeb,0xc5, +0x65,0xf0,0x9e,0x09,0xf5,0x9d,0x65,0x16,0xb0,0x0c,0x67,0xa1, +0xa3,0xb9,0x60,0xd6,0x4f,0xa5,0xab,0x34,0xde,0x3e,0x42,0x89, +0x79,0x37,0x68,0xe8,0xa3,0x06,0x1d,0xef,0x38,0xca,0xe8,0xe8, +0x78,0xd7,0xb0,0xea,0x82,0xbf,0x27,0x90,0x51,0xe1,0x99,0x6a, +0x0d,0x75,0x81,0x0d,0x52,0x4e,0x0f,0x98,0xcd,0x74,0xe7,0x64, +0x4b,0x27,0x75,0xd5,0x4d,0x2c,0x38,0xcd,0x21,0x85,0x3e,0x25, +0x6e,0xd9,0xee,0xbd,0xa5,0x7c,0x48,0x9d,0x5f,0x43,0x60,0x09, +0x27,0x30,0x98,0x48,0x8c,0x71,0x01,0xce,0x07,0x77,0x48,0x93, +0x8a,0x67,0x17,0xd7,0x15,0x34,0xe6,0xd6,0x9b,0x17,0xf2,0x41, +0xb6,0xde,0xd6,0x5e,0x8e,0x1c,0x3e,0x52,0xc2,0x09,0x74,0x47, +0x39,0x2c,0x30,0xc6,0xbc,0xe1,0x2b,0xc2,0x6c,0xa9,0x9c,0xb3, +0x70,0x9b,0x7c,0x0d,0x22,0x2c,0x35,0xd0,0xc2,0x1e,0x98,0xa4, +0x8f,0x93,0xb0,0xf6,0x37,0x03,0x5c,0x0a,0x2f,0xd7,0x88,0xac, +0xb9,0x6a,0xa4,0x9f,0x15,0xdb,0x70,0x1d,0x09,0xab,0xf4,0x6b, +0x0a,0x28,0xb5,0x0c,0xe0,0x0b,0x7d,0x8b,0xdc,0x73,0x3c,0x38, +0x61,0xdc,0x51,0x52,0x5c,0x55,0x5c,0x9f,0x57,0x63,0x46,0xf7, +0xef,0xe2,0x65,0xb5,0xcf,0x85,0x13,0xdb,0xcd,0x54,0xbb,0xf1, +0x5b,0x74,0x65,0x32,0xcd,0xa4,0x32,0x38,0x9d,0x39,0x59,0x1d, +0x0a,0xf8,0x02,0xa6,0x0c,0x48,0x79,0xa9,0x27,0x13,0xaa,0x47, +0x73,0x2e,0x0d,0xc3,0x2b,0x46,0xbf,0x97,0x60,0xdd,0xef,0x50, +0x47,0x2d,0x10,0x29,0x68,0x93,0xc1,0xe0,0x2b,0xc1,0xf7,0x42, +0xf2,0x06,0x79,0x8c,0x1e,0xc2,0xa9,0x97,0x74,0x69,0x64,0xf8, +0x05,0x76,0x53,0x1d,0x4e,0x0d,0xb3,0x44,0x9f,0xc2,0x7a,0x0d, +0x4c,0xd1,0xc7,0xdd,0x54,0x21,0xe8,0x6d,0x46,0x56,0x1f,0x8f, +0x98,0xe6,0x99,0xf0,0xf7,0x72,0x2f,0xe7,0x0c,0xe4,0x71,0xce, +0xb0,0x17,0xdf,0xc5,0xbf,0x95,0xf0,0x37,0xfa,0x88,0xb3,0xcc, +0xfe,0x7a,0x67,0x40,0x5c,0x01,0x3e,0xc2,0x07,0x7d,0xe2,0x07, +0x54,0x57,0x05,0xb0,0x18,0x0f,0xbe,0xa4,0x4a,0xfb,0xa6,0x05, +0xbc,0x6b,0xc7,0x89,0x74,0xda,0xc7,0xb7,0x5f,0xed,0xad,0xbc, +0xce,0xe1,0x80,0xa8,0x4d,0x1a,0x6c,0x6b,0x6c,0x4a,0x2c,0x07, +0xca,0x79,0xbf,0x2e,0xc7,0x11,0x4f,0xca,0x98,0x3d,0x71,0x37, +0xa9,0x6b,0xac,0x1b,0x29,0xea,0x54,0x96,0xf2,0x01,0xb6,0x6e, +0x66,0x7b,0x9d,0xe8,0x3a,0xb9,0x2d,0x39,0xc8,0xdf,0xda,0x6f, +0xf0,0x7a,0xb7,0xf0,0xb7,0xf9,0x1b,0xbc,0x3e,0x4e,0x11,0xf2, +0xee,0x0b,0x82,0xc1,0x2c,0x66,0x1f,0x43,0xed,0x1d,0xb8,0x41, +0xde,0xe9,0x44,0xb9,0x4d,0x06,0xe8,0x9e,0x81,0x96,0xe9,0xc2, +0x62,0x38,0xc6,0xd0,0x01,0x1b,0x53,0x46,0x03,0xbf,0xa1,0x9c, +0xba,0xca,0x73,0x82,0x93,0xe1,0x28,0x2c,0x91,0x9e,0x90,0x30, +0x98,0x0d,0xfb,0x2d,0x70,0xff,0x22,0x30,0x50,0xe2,0x11,0x98, +0x87,0x47,0xf1,0x7d,0xd0,0x53,0x62,0x4d,0x7f,0x27,0x74,0xdb, +0xf4,0x41,0x8d,0x92,0x9a,0xe6,0x92,0x6a,0x80,0x68,0x61,0x2f, +0x4c,0xd1,0xa3,0x96,0xa8,0xfd,0x4d,0x1f,0x97,0xaa,0x92,0x29, +0x77,0x75,0x40,0x77,0xa2,0xde,0x84,0xa3,0xaa,0x4d,0x8c,0x1e, +0x25,0x35,0x62,0xdf,0x17,0x42,0x1f,0x23,0xf6,0x51,0xfb,0x0a, +0x7d,0x6b,0xc4,0x3e,0x46,0x35,0x03,0xff,0x24,0x18,0xc0,0xb8, +0x47,0x9d,0xab,0x52,0x5c,0x63,0x81,0xc9,0x06,0xb6,0xf8,0x69, +0x9d,0x77,0x27,0xbf,0xd2,0x7d,0xd1,0xc1,0x99,0xe1,0xdc,0xaf, +0xfa,0x18,0xc6,0x9a,0xe6,0xed,0xbf,0x2e,0x87,0x13,0x52,0xb1, +0xc3,0x26,0xc5,0x13,0xd6,0x20,0x4b,0xa6,0x9e,0x91,0x47,0xe0, +0x6c,0x2f,0x9e,0x7d,0x68,0x80,0xe7,0x19,0xf7,0x13,0x1e,0xb1, +0x1e,0x6f,0xce,0xed,0x2f,0xca,0x80,0x4f,0xf3,0x61,0x5a,0xf1, +0xd1,0x6e,0x7e,0x53,0xc4,0x8a,0xc3,0xcb,0x8e,0x70,0xff,0x2f, +0x3a,0x11,0x07,0xd4,0x59,0xe4,0xdf,0x30,0xda,0x87,0xa3,0xbf, +0xfe,0xf3,0xfb,0xd1,0x00,0x5e,0x63,0xb3,0x8a,0xd2,0x0a,0xb3, +0xeb,0x8d,0xb2,0xf9,0x10,0x87,0x43,0xfe,0x01,0x1e,0x9c,0x54, +0x3b,0xaa,0x24,0xa3,0x2c,0xa3,0x42,0x2f,0x87,0x37,0xc5,0x0f, +0xb5,0xd7,0xe0,0x07,0xcb,0x1a,0xcc,0xf9,0x86,0xf2,0xea,0xf2, +0xf2,0x72,0x4e,0x5c,0x7f,0xb9,0x5b,0xb5,0x6e,0x90,0x15,0xe7, +0x0b,0xab,0xc8,0x6c,0x2c,0xbe,0xc7,0xe6,0x96,0xc8,0x82,0x31, +0x99,0xfc,0x0a,0xc5,0xb3,0x59,0xe5,0xf8,0x99,0x58,0xfc,0x6f, +0xaa,0xce,0x9a,0x55,0xfe,0x04,0xa6,0x24,0xc0,0x8c,0x2c,0x60, +0x2a,0xfd,0x3a,0x78,0x7c,0xc7,0x57,0x7a,0x1e,0x60,0x76,0x4c, +0xc4,0xe6,0xfd,0x9b,0xf7,0x99,0x77,0xb9,0xf3,0x55,0xc3,0xc5, +0xd7,0xd3,0xaf,0x72,0x58,0xae,0x9e,0xfa,0xbf,0x71,0xe9,0xec, +0x7f,0x30,0x3e,0x48,0x35,0x9e,0x94,0x5b,0x94,0x1a,0xe4,0x98, +0xf6,0x14,0xf0,0x21,0x03,0xbe,0x23,0xde,0xdd,0x1c,0x85,0x9e, +0x0d,0xe4,0x68,0xe7,0xe1,0xbe,0x43,0xcd,0xca,0x23,0x7c,0xba, +0x7d,0xb2,0x65,0xa2,0x0d,0x07,0x61,0x54,0xfb,0xc0,0x67,0xa2, +0xa9,0x25,0xe8,0xe0,0x18,0xb4,0xb3,0x00,0x3b,0x64,0x70,0x8f, +0x05,0xec,0xc1,0x65,0x38,0x9d,0x4d,0xa3,0xb1,0x45,0xc6,0xb4, +0xe7,0xe4,0xb5,0x2a,0x60,0x3e,0x2c,0x36,0x19,0x80,0x80,0xde, +0x5e,0x76,0x26,0x45,0x47,0xfa,0xe5,0xc5,0x30,0x86,0xc5,0x92, +0xf1,0x20,0x25,0x01,0x65,0x28,0xe2,0x9c,0xa1,0xfc,0x2a,0xdc, +0x44,0x1d,0x6e,0x28,0xfc,0x87,0x3a,0xd3,0xd0,0x1d,0x08,0x55, +0xad,0x35,0x17,0xff,0xc3,0xfe,0x49,0x89,0x3d,0x7c,0xd0,0x79, +0xe5,0x56,0xda,0x2b,0xee,0xf7,0x4f,0x19,0xe3,0xc2,0x43,0x03, +0xf2,0x7f,0x33,0x35,0x99,0x19,0xb5,0x8a,0xcb,0x52,0x3d,0xa5, +0x0d,0xf3,0xd9,0x80,0xa3,0xe7,0x0a,0x15,0x2f,0x61,0x5b,0x3f, +0xc6,0xff,0x02,0x01,0x7d,0x18,0xf0,0xcc,0x64,0x31,0x7a,0x28, +0xc1,0x63,0x0e,0x1e,0x35,0x87,0x65,0x6c,0xe4,0x3a,0x0b,0x3b, +0x2d,0x57,0x4e,0xb8,0x25,0x7e,0x42,0x56,0xe7,0x6d,0x29,0xdb, +0xd3,0x70,0xa3,0xb7,0xf7,0x62,0xf9,0x75,0xae,0x95,0x6a,0x8a, +0xf4,0x82,0xb4,0xa2,0x94,0x62,0xab,0x2c,0xde,0x6d,0xc5,0xd6, +0xf5,0xf8,0x8e,0x59,0xb1,0x35,0xdf,0x92,0xdf,0x50,0x5c,0x55, +0x56,0x65,0x5f,0xef,0xd2,0xba,0x6f,0x9b,0xcb,0x0a,0xef,0xb9, +0x21,0x39,0x66,0x52,0xee,0x9b,0x57,0x75,0x0f,0xbb,0x6e,0xdb, +0x3e,0x71,0x7f,0xe9,0xcf,0x89,0x13,0x61,0x98,0xa4,0xa4,0xc9, +0xe0,0x34,0xe3,0xa7,0xb4,0xb7,0x35,0x72,0xb1,0xae,0x75,0x6a, +0xf6,0xe8,0xa2,0x62,0x7c,0x92,0x4a,0x4e,0x24,0x17,0x18,0x8f, +0x23,0xf0,0x2f,0x7d,0xfc,0x17,0xb6,0xc1,0x78,0xea,0x10,0xf0, +0x23,0x4b,0x17,0x2a,0xc5,0xee,0x10,0x63,0xba,0x50,0xbf,0x29, +0xbc,0x5d,0x70,0xa1,0x98,0xb3,0x12,0xf4,0xba,0xd8,0x8b,0x07, +0xee,0x1e,0xfc,0x2e,0x40,0x5a,0xe9,0xe1,0x17,0x70,0x8a,0xb4, +0xd2,0x31,0x11,0x77,0x12,0x18,0xd3,0x71,0xb9,0xb7,0xe2,0x3a, +0xa5,0xbe,0x15,0xda,0x37,0x2c,0x40,0x66,0xcb,0x89,0x59,0x62, +0x3b,0x01,0x17,0x58,0x87,0xc6,0x17,0xde,0x64,0xc9,0x7e,0xf3, +0x22,0x9d,0x8b,0x1e,0xcf,0xa6,0x5b,0xcb,0x9e,0x4b,0x37,0x8e, +0x36,0x28,0xe0,0x2f,0xf5,0x31,0x71,0x2d,0x0b,0xc1,0x90,0x4c, +0x70,0x1d,0x8c,0x87,0x75,0xcc,0x85,0x69,0xf4,0xcb,0xe3,0xa9, +0x36,0x84,0x90,0x69,0xf4,0x8d,0x9d,0xf4,0xfb,0x13,0x21,0xee, +0xc7,0xb7,0x64,0x4b,0xe7,0xbf,0x8b,0xf7,0x98,0x6a,0x8d,0xb9, +0x44,0xb6,0x6e,0xab,0xc2,0x88,0xeb,0xea,0x2d,0xab,0xf1,0x93, +0x75,0x15,0x4a,0x1e,0xc8,0xa3,0xa7,0xdf,0x54,0xbc,0xa4,0xdd, +0x28,0x9f,0xf7,0xc3,0x66,0xf8,0x74,0x45,0x05,0x95,0xfb,0x5a, +0x4f,0xb6,0xdc,0x77,0xfc,0x8e,0x43,0x13,0x1c,0x22,0x70,0xa7, +0x1f,0xef,0x30,0xfb,0xd4,0x73,0x08,0x14,0xfc,0x88,0xe7,0x7a, +0xe1,0xdc,0xd3,0x37,0xbf,0x7f,0x46,0xcb,0x5d,0x6c,0xaa,0xb1, +0x6c,0x90,0x69,0xce,0xcc,0x6e,0x51,0x08,0x7a,0x62,0x34,0x95, +0xe1,0x30,0x17,0xee,0x91,0xa5,0xa0,0xf9,0x23,0x03,0xb3,0x50, +0x93,0x2c,0x03,0xcd,0xa7,0x0c,0xcc,0xa5,0xad,0x45,0xa0,0xf9, +0x33,0x23,0xf1,0xe6,0x1e,0x82,0x32,0xca,0x9b,0xe5,0xd2,0xe9, +0x8c,0x76,0x90,0xe9,0xe3,0x3a,0xca,0x9b,0xa5,0x94,0x15,0xf8, +0x2b,0x81,0x39,0xcc,0x21,0x6b,0x6f,0x6d,0x57,0x8b,0x4e,0x2f, +0xbe,0x71,0xa4,0xfe,0x8b,0xbc,0x3b,0x74,0x0a,0xaf,0xb0,0xc9, +0x65,0x89,0xe5,0x09,0x65,0x66,0x29,0x7c,0x20,0xd5,0xee,0xef, +0x68,0xaf,0x6a,0x71,0xe2,0xdb,0x2f,0x54,0x5f,0x2a,0xba,0xcc, +0x8d,0xa2,0x8c,0xc1,0xed,0xeb,0x16,0xe1,0xf2,0x39,0xf2,0x6a, +0x33,0x2a,0xb2,0xd8,0xde,0x47,0x29,0xa0,0x41,0x39,0x68,0x0a, +0x6a,0x34,0xad,0x87,0x55,0xc8,0xd5,0x50,0xc3,0xcf,0x79,0xbd, +0xf9,0x67,0xd8,0xae,0x81,0x81,0xa0,0x41,0x36,0x81,0xcc,0x98, +0xf6,0xc0,0x0a,0x64,0x46,0x28,0xdb,0x6a,0x76,0x57,0x3c,0x45, +0x85,0xcc,0x79,0xc1,0xe0,0x01,0x83,0x4f,0xf0,0x33,0xea,0xed, +0x60,0x85,0x9f,0xb1,0x68,0x45,0x03,0x3f,0x6c,0xa7,0xed,0xed, +0xd4,0x96,0x1e,0xd2,0xd9,0x87,0x08,0xe1,0x1e,0x44,0xb0,0x62, +0xba,0x74,0x33,0xd2,0x87,0x82,0x0d,0x7e,0xc8,0xaa,0x15,0xf8, +0x1e,0xc1,0xa3,0xc2,0x38,0x38,0xca,0x3e,0xc3,0xa3,0x44,0x20, +0x70,0x54,0x24,0x8c,0x38,0x5b,0x5a,0x35,0x1f,0xc3,0x19,0xfc, +0x98,0x05,0x8f,0x69,0xb4,0x95,0x43,0x5b,0xf8,0x14,0x2b,0x09, +0x58,0xef,0x41,0x6b,0x2c,0x80,0x95,0xba,0x58,0x76,0x79,0x44, +0x35,0xc6,0xf0,0x32,0x94,0xe9,0xe2,0x4a,0x7a,0x88,0x73,0xbf, +0x12,0xd5,0x7e,0x13,0xf5,0x7e,0x1d,0xe1,0x0f,0x33,0x75,0x08, +0x9d,0xae,0x58,0xd5,0x12,0x33,0xf1,0x0f,0x56,0x98,0x0e,0x54, +0x1e,0xdb,0x0b,0xe3,0x44,0x4b,0x71,0x1c,0x58,0xac,0x46,0x6f, +0x71,0xe3,0xa0,0xc0,0xc1,0x4a,0x5c,0xc9,0xd8,0xc7,0x38,0xc4, +0xba,0x9e,0x48,0xa2,0x62,0xe0,0xfc,0xaf,0x69,0x8f,0x73,0x12, +0x82,0xe2,0xe9,0x4f,0x73,0x26,0x1f,0x71,0x39,0xe8,0x4e,0xd0, +0x80,0xf3,0x61,0x3e,0x29,0x20,0xc9,0x2f,0xc9,0x27,0xe0,0xb8, +0x7f,0xec,0xfe,0x58,0x0e,0x16,0xc1,0x7a,0x1c,0xa6,0xcb,0x56, +0xca,0x6c,0xfa,0x0e,0xd3,0x2e,0x65,0x69,0xa6,0x28,0xed,0xcf, +0x9a,0x01,0xd5,0x32,0x8a,0x7f,0x83,0x82,0x19,0x98,0x49,0x71, +0x6c,0xee,0x4c,0x16,0x9f,0x59,0x13,0x50,0xd0,0x20,0xad,0x60, +0x40,0x09,0xe3,0x28,0x43,0xa5,0xed,0xb9,0x54,0x1b,0xc6,0x3e, +0xa5,0x8b,0xd8,0xf4,0x7f,0x59,0xc4,0x21,0xaa,0xb5,0x4a,0xba, +0x88,0x61,0x92,0x10,0x4e,0xf0,0x44,0x34,0x06,0x9a,0xe2,0x6c, +0x79,0xa7,0xb3,0x6c,0x08,0x66,0x65,0x43,0x21,0x44,0x6a,0x08, +0x06,0x10,0x29,0x9e,0x60,0x60,0xff,0x9b,0x9c,0x75,0xab,0xa5, +0x9c,0x75,0xbe,0x6f,0x73,0xd6,0xad,0x43,0x0d,0x16,0x7b,0xd4, +0xc6,0xe4,0x02,0xd4,0x19,0x0d,0x0a,0x57,0xc5,0x99,0x52,0x5a, +0xba,0x9f,0xa4,0xb4,0x74,0x75,0xbf,0xd0,0x38,0x89,0x75,0x52, +0x5a,0xba,0x3a,0x2d,0xac,0x93,0xd2,0xd2,0xd5,0xe1,0x3b,0xb4, +0x31,0xf1,0xaf,0xc5,0x0f,0x88,0x4f,0xb3,0x7b,0x87,0x4f,0xb9, +0xc7,0x41,0x3e,0xfd,0x50,0x46,0x58,0x5a,0xa8,0x73,0x8c,0x53, +0xac,0x4d,0x6c,0x61,0x4d,0x4e,0x7d,0x6e,0x8b,0x6d,0x06,0x1f, +0x62,0x1f,0x68,0xef,0xe9,0x10,0x71,0x2a,0xe2,0x74,0xf8,0xa9, +0x44,0x3b,0xfe,0xe7,0x84,0x07,0x09,0x8f,0x33,0xce,0x1f,0x49, +0x8c,0x4c,0x8c,0x8a,0x8f,0xa3,0xb8,0x9b,0xc1,0x3a,0x44,0xa6, +0x35,0x52,0x06,0x0f,0xed,0xf0,0x85,0xc8,0xb2,0x99,0x45,0xa9, +0xc5,0x49,0x85,0x1c,0xfc,0x1b,0x56,0x1b,0xd0,0x63,0xf4,0x00, +0xaf,0x4f,0xd5,0x63,0x0d,0xbc,0xa3,0x4f,0x7b,0xfb,0x8a,0x39, +0x7a,0x30,0xf2,0x40,0xf8,0x7e,0x0e,0xdb,0xf1,0x0b,0xb0,0x61, +0x8e,0xe0,0x47,0xfa,0xdb,0xd0,0x65,0x7b,0x89,0x39,0x0f,0x9e, +0xb7,0xbf,0xff,0x51,0xca,0xe3,0x0e,0x32,0x74,0x60,0xb6,0x17, +0xfb,0x7f,0x21,0x87,0x12,0xba,0x44,0xb3,0x1b,0x14,0xad,0xac, +0x45,0xaa,0x4c,0xdc,0x21,0x50,0xe7,0x28,0xf8,0x0e,0x0a,0x98, +0xa1,0xcf,0xc8,0x77,0x50,0x45,0x9d,0xea,0x07,0x5b,0xb2,0x0c, +0x0b,0x9e,0xb2,0xf0,0x70,0x1a,0x54,0x2d,0xc3,0x2a,0xba,0x20, +0x46,0x55,0xc3,0x14,0xed,0x7b,0xe0,0x43,0x7d,0xfc,0x10,0x6b, +0x7f,0x35,0xc0,0x25,0x34,0xa6,0x2c,0x61,0x51,0x14,0xa9,0x0f, +0x09,0xbd,0x28,0xdc,0x10,0xb4,0x7a,0xf1,0x18,0x53,0x54,0x92, +0x5b,0x96,0x51,0x62,0x9a,0xcb,0x87,0x79,0x05,0xb8,0x79,0x4b, +0x65,0x04,0x98,0xd6,0xec,0x83,0x15,0xbe,0x35,0x41,0x39,0xd3, +0xad,0x02,0x4a,0xfd,0x72,0xfd,0xb3,0x0f,0x4c,0xc7,0x43,0x16, +0xc2,0x94,0x5d,0xf8,0x93,0x05,0xfc,0xb4,0x4d,0x9c,0x6f,0x01, +0x7e,0x8c,0xf3,0xcc,0xad,0x2b,0x71,0xd2,0x96,0x46,0x3b,0x1e, +0x26,0x3d,0xfc,0xe6,0x59,0x17,0x68,0x72,0xc2,0xef,0xbd,0xe2, +0x5a,0x46,0x98,0x84,0x7b,0x48,0x8f,0xf8,0x83,0x25,0x1c,0xa7, +0x24,0xed,0xb5,0x52,0x15,0xdc,0x87,0x5f,0xc3,0x7b,0xd4,0x13, +0x63,0xfe,0x99,0x63,0x23,0xe1,0x3f,0xca,0x37,0x73,0x7c,0xf0, +0x9f,0x39,0x7e,0x2a,0x1c,0x26,0x54,0xf7,0x9d,0xb2,0x04,0x13, +0x2a,0x7d,0x97,0xb1,0x31,0x3b,0x8f,0xac,0x8f,0xdc,0xc9,0x81, +0x39,0x73,0x06,0xe7,0x45,0xe3,0xec,0xe8,0xed,0x9c,0xe5,0xf1, +0xf0,0x68,0xbb,0x19,0xe6,0x52,0xfd,0xbe,0x61,0xe6,0x62,0x59, +0xfe,0xed,0x64,0x45,0xea,0x37,0x52,0x82,0xb7,0xbd,0x1a,0xa8, +0x27,0x25,0x78,0x1b,0x8c,0x2b,0xe7,0x20,0x0d,0x3f,0x24,0x09, +0x35,0xf1,0xfd,0x71,0xd5,0x1c,0xec,0xa2,0x7b,0x3c,0x69,0x09, +0x46,0x74,0x8f,0xdb,0x98,0x13,0xda,0xd1,0xeb,0x22,0x77,0x70, +0xb0,0x97,0xc1,0x4f,0x8f,0xe1,0xec,0x37,0x09,0xde,0xc2,0xa2, +0x1c,0x67,0xe8,0x49,0x3b,0xbc,0xca,0x8c,0x56,0x14,0xde,0xa5, +0x3b,0xfc,0x36,0x91,0x7a,0x0f,0xdd,0xe1,0xb4,0x35,0xc4,0xc3, +0xde,0xd2,0xda,0x5a,0x4a,0xe1,0xd6,0x5b,0xdf,0xd7,0x5d,0xd7, +0xc9,0xe1,0xe3,0x72,0xe2,0x66,0x6b,0x61,0x65,0xee,0x51,0xb1, +0x97,0xef,0xaf,0xbb,0xd0,0x57,0xd3,0xc5,0x41,0x35,0xd5,0x5b, +0x0e,0x86,0x7a,0x46,0x7b,0x9c,0xcb,0x1c,0xf9,0xab,0xcd,0x37, +0xae,0xb5,0x5e,0xe4,0xf0,0xeb,0x12,0xe2,0x60,0xa4,0x67,0xb8, +0xc7,0xb9,0xdc,0x99,0xbf,0xde,0x76,0xfd,0x6a,0x93,0x94,0xc2, +0x2d,0xee,0x9f,0xa1,0xeb,0xbd,0x71,0xef,0xe1,0x3b,0x70,0xe8, +0x6d,0x8c,0x82,0x9d,0x16,0x52,0x6a,0x29,0x9b,0x01,0x31,0xf9, +0xef,0x09,0xc3,0x97,0x04,0x37,0x1a,0xa6,0x3f,0x7a,0x9b,0x5a, +0xea,0x92,0x94,0x5a,0xea,0xfc,0xdb,0xd4,0x52,0x36,0xf8,0x1e, +0x8b,0x1f,0x88,0x9a,0x52,0xf2,0xa8,0xb5,0x52,0xf2,0x28,0x87, +0xb7,0xc9,0xa3,0xb6,0x4a,0xc9,0xa3,0x52,0xac,0x08,0x1a,0x6f, +0xa7,0x74,0x01,0x1c,0x25,0x82,0x64,0xfc,0x25,0x1a,0x53,0xf2, +0x7f,0x97,0x92,0x61,0x2d,0xbc,0x04,0x1f,0xe9,0xe3,0x47,0xd8, +0x29,0x71,0x50,0x55,0x39,0xe5,0x3b,0xe2,0x17,0x6a,0x37,0x72, +0x15,0x76,0x40,0x3b,0xee,0x18,0x01,0xcb,0x6e,0xb4,0xbc,0x66, +0xba,0x1b,0x1d,0xad,0xc0,0xd1,0x10,0xb7,0x50,0xd8,0xdc,0xa2, +0x83,0xae,0x96,0x54,0x48,0xbe,0x3b,0x48,0x09,0x9f,0x45,0x0f, +0x4b,0x0f,0xde,0x46,0xa4,0x07,0xf6,0xa7,0x25,0xc3,0x98,0x82, +0x87,0x65,0x3e,0x5d,0xfc,0x8a,0x7d,0x38,0x26,0x0c,0x17,0x46, +0x72,0x68,0xcb,0xa2,0x76,0x18,0x32,0x06,0x38,0x56,0xde,0xed, +0x32,0x0a,0x4c,0x01,0x4c,0x88,0x83,0x5d,0xd3,0x41,0x2e,0x2e, +0x18,0x11,0x16,0xc0,0xe4,0x7e,0x46,0xad,0x93,0x43,0xb6,0xe2, +0xbb,0x77,0x59,0x68,0xdb,0x4a,0xf0,0x83,0xbb,0xf0,0x01,0x83, +0x6d,0xf8,0x3e,0x81,0x77,0x37,0xe1,0xbb,0x0c,0x6c,0x7e,0x40, +0x23,0xf4,0x26,0xfc,0x40,0x2a,0xd6,0x48,0x2d,0x74,0xc4,0x54, +0x7d,0xc4,0x50,0x35,0x5e,0xa9,0x8e,0xa5,0xce,0x11,0xa4,0xda, +0xa4,0x54,0x8f,0x67,0x85,0x39,0xaa,0xcf,0xc9,0x1d,0x83,0x6d, +0x18,0xad,0x14,0xda,0xfb,0x58,0x5c,0x84,0x5b,0x49,0x56,0x79, +0x46,0x65,0x5a,0x8d,0x32,0x87,0x8f,0xf4,0x08,0x73,0x0e,0x74, +0xe1,0xf0,0x77,0x73,0xe1,0x56,0x3f,0x23,0xca,0xf2,0x48,0x64, +0x75,0x58,0x75,0x78,0xb1,0x65,0x10,0x9f,0xe5,0x9f,0xb1,0x2f, +0xcd,0x8b,0x13,0xc6,0x8a,0x9f,0x53,0xa9,0x29,0xfa,0x50,0xe9, +0xe9,0xb4,0x15,0xe3,0x2c,0x20,0x0e,0xa7,0x5d,0x00,0x02,0x19, +0x7d,0x98,0x41,0xbb,0x35,0x1f,0x12,0x68,0x07,0x81,0xb6,0x00, +0x27,0x91,0x4d,0x08,0x0f,0xa8,0xed,0xf4,0x54,0xef,0x91,0x47, +0xe0,0xdf,0x83,0xfe,0x0f,0x4c,0x36,0xa1,0x8b,0x25,0xb8,0xac, +0xc3,0xc3,0x16,0x42,0x63,0x2f,0x05,0xe6,0xc7,0x44,0xfd,0xae, +0xa1,0x2a,0xc6,0x54,0x1d,0x63,0xa4,0x7a,0x57,0xa9,0x3e,0xf3, +0xc6,0x8d,0xb7,0xb3,0x30,0x28,0xbe,0x43,0xfc,0x62,0xbd,0x63, +0x3d,0x4f,0x70,0x8f,0x7e,0xea,0x5a,0xf2,0xc8,0x7c,0xdd,0x1c, +0xeb,0x5f,0x56,0xb2,0xae,0x27,0x5c,0x4e,0xb8,0x9e,0x8c,0x57, +0xf2,0x3f,0x25,0x3e,0x3f,0x7f,0x27,0x8d,0xcb,0x0f,0x23,0x50, +0xdc,0x8d,0xec,0xb7,0xbf,0x75,0x69,0x3d,0x32,0x5b,0xb7,0xc0, +0xfa,0xc5,0x4a,0x2d,0x86,0xb2,0xa1,0x67,0x64,0x11,0xe3,0x1d, +0x9d,0x58,0xae,0x00,0x4d,0x30,0xea,0x13,0x6f,0x29,0x61,0x35, +0x7b,0x44,0x6b,0xa7,0x15,0x4e,0x73,0xcf,0xa7,0x90,0xb0,0xba, +0xf5,0xce,0xbd,0x14,0x2a,0x04,0xe1,0x1d,0x9c,0xc3,0xe8,0xe4, +0x06,0x5d,0x91,0xff,0xc2,0xb4,0x66,0x65,0xb6,0x2a,0x5e,0xb0, +0xe6,0x52,0x1a,0xe0,0xb3,0xff,0xf8,0x97,0xce,0x5b,0xff,0xba, +0x0b,0x47,0xa5,0x98,0xfc,0x1f,0x56,0xc5,0x0b,0x9f,0x10,0xe7, +0x72,0x8f,0x72,0x9f,0x8a,0xfa,0x8a,0xca,0x9a,0xd2,0xda,0xbd, +0xd5,0x7c,0xc0,0x3e,0x0f,0xf7,0x7d,0xbe,0xe1,0x79,0x11,0x79, +0x91,0xf9,0x0d,0x55,0xd5,0xf5,0x45,0xf5,0x7b,0xab,0xf8,0x20, +0x4f,0x5f,0x0f,0x4f,0xdf,0x88,0x9a,0x23,0xb5,0xc7,0xea,0x2c, +0x8e,0xf0,0x85,0xc8,0xdf,0x42,0x1e,0xd6,0xe2,0x04,0x0e,0x3b, +0x84,0x71,0x04,0xf5,0xa4,0x87,0x07,0xa3,0x9c,0x42,0x9c,0xfc, +0x9c,0xf7,0x97,0xb9,0x55,0xf9,0xe4,0x7b,0xb9,0xf2,0x65,0x41, +0xf5,0xee,0xa5,0x3e,0xbe,0x1e,0x1e,0x9e,0x4e,0xde,0x15,0x14, +0x07,0xde,0xfd,0xfe,0x3e,0xbc,0x53,0x02,0xef,0x71,0xf3,0x31, +0x9d,0x40,0x52,0x2f,0x26,0x31,0x1b,0xf1,0x53,0x82,0x7e,0xc2, +0x72,0xf0,0x63,0xf1,0x2f,0xdc,0x28,0xf9,0xf2,0x00,0xf5,0x65, +0xbb,0x1d,0xe4,0xb0,0x5d,0xa0,0xd1,0x01,0x1b,0x29,0x1d,0xaf, +0x90,0xdf,0x8f,0x9b,0x98,0xbc,0xa6,0xdc,0xde,0xb4,0x26,0x0e, +0xbd,0xb5,0x48,0x54,0x5d,0x68,0x4f,0x68,0xb5,0x65,0x30,0x9f, +0xe5,0x91,0x63,0x99,0xe4,0x4e,0x19,0xb2,0xa1,0x90,0x43,0xae, +0x80,0x77,0x17,0x7a,0x8f,0x42,0x64,0x27,0x2a,0xd8,0xec,0x82, +0xac,0xe2,0xb4,0x62,0xab,0x3c,0x3e,0xc2,0x3b,0x68,0x5f,0xa0, +0x37,0x87,0xdb,0x99,0xce,0xc2,0xb0,0xe2,0xe0,0x82,0xe0,0xfc, +0xe9,0x36,0x01,0x79,0x01,0xd9,0x81,0x19,0x14,0xb4,0xb4,0x6c, +0x20,0x44,0x1f,0xdd,0xad,0xc1,0x7d,0x0f,0xc6,0x5a,0x0b,0x2d, +0x5d,0x8c,0xda,0x5c,0x5c,0x4b,0x54,0xfe,0xa6,0x6a,0x7f,0x23, +0xe1,0x4f,0xa5,0x3a,0xe4,0xcd,0xec,0x2d,0x55,0x8a,0x7f,0xb2, +0xc2,0x4b,0x94,0x11,0x9f,0xfc,0x03,0xa5,0x41,0xd5,0x0d,0xf5, +0x55,0x8d,0xa5,0x0d,0x2e,0x15,0x7c,0x80,0xc7,0xfe,0x7d,0x9e, +0x5e,0x11,0xd5,0x91,0x0d,0x47,0x5b,0x39,0x29,0x23,0xa0,0x05, +0x73,0xbc,0xe5,0x44,0x7b,0x8f,0x86,0x29,0x63,0x15,0x67,0x97, +0xe0,0x20,0xc7,0x8f,0x6e,0x31,0x15,0x09,0x65,0x09,0x05,0xe7, +0x83,0x3a,0x78,0xc3,0xe0,0x65,0x87,0x37,0x9c,0x4c,0xb3,0xe6, +0x2b,0xce,0x54,0xc7,0x55,0x9f,0xa3,0x8c,0x6d,0x92,0x25,0x4c, +0x5a,0xce,0xee,0x3d,0xe6,0x72,0xdc,0x31,0x36,0xd1,0x8a,0x6f, +0x3c,0x57,0x1f,0x5f,0x9b,0xc0,0xe1,0xd8,0x45,0x12,0xeb,0x7a, +0xc4,0xd4,0xe4,0x65,0xd4,0x2b,0x80,0x63,0x1b,0x13,0x6b,0x93, +0xca,0x93,0xa2,0xbb,0x78,0xdf,0xa3,0x5e,0x47,0xdd,0x8f,0x71, +0x0f,0x61,0x3a,0x9b,0x62,0x92,0x65,0x91,0x6f,0xef,0xe2,0x69, +0xeb,0x6d,0xba,0xbf,0xd4,0x8e,0xef,0x2b,0x6e,0xaf,0x68,0xaa, +0xc9,0xf3,0x2c,0xf4,0x2b,0x39,0x58,0xef,0xd1,0x9c,0x94,0xd8, +0x9c,0x07,0x1f,0xf0,0xf6,0x79,0xb2,0xb3,0x70,0x88,0x78,0x54, +0xee,0x2d,0x74,0x2e,0xdc,0xe7,0xce,0xd7,0x1f,0x6c,0x38,0xd0, +0xb0,0x8f,0xda,0x6b,0xb5,0xaa,0x8d,0x14,0x2e,0xfb,0x6d,0x33, +0xfc,0x6b,0xa3,0x74,0xbe,0x40,0xe3,0xde,0xf2,0x5b,0x6e,0x8f, +0xb8,0x5d,0xcc,0xbe,0x0d,0x1b,0x37,0xa0,0x62,0x6b,0xb9,0x05, +0x0f,0x1a,0xf7,0x9f,0x7e,0x59,0xf2,0x8c,0x13,0x97,0xab,0x0d, +0xde,0xf2,0x83,0x9d,0xff,0xe5,0x07,0x71,0x6f,0xf9,0x01,0x58, +0x08,0xf1,0x44,0x09,0x57,0xe8,0x9a,0x33,0x44,0x15,0x81,0x50, +0x74,0xc3,0x50,0x16,0xb2,0x21,0x54,0x3a,0x57,0xeb,0x0b,0xa1, +0x2c,0x3e,0xb0,0xa5,0xba,0x65,0x26,0xcc,0x60,0x21,0x0b,0x67, +0x10,0x98,0x01,0x2c,0xce,0x60,0xcd,0xf0,0x08,0x89,0x3d,0x2b, +0xcb,0xa8,0x3a,0x57,0xd3,0xae,0x51,0x6e,0xe6,0xce,0x6e,0x0a, +0xb2,0xde,0xa2,0x27,0x5f,0xfb,0xe4,0x48,0x6a,0xcc,0xc9,0xc8, +0xe8,0xe9,0x47,0xa2,0x63,0xe3,0x64,0x19,0x35,0xf1,0xb5,0x6d, +0x1a,0x65,0xf4,0xd3,0xcf,0x3d,0x0d,0x97,0xec,0x92,0x57,0xda, +0xf6,0x36,0xd5,0x37,0x15,0x36,0x4c,0x3f,0x77,0x3e,0xfe,0x4c, +0xe2,0x31,0x98,0x88,0x1f,0xf2,0x43,0x0d,0x0d,0xcd,0x85,0x8d, +0xf1,0xe7,0xe3,0x4f,0x27,0x1c,0x83,0xf1,0x38,0x91,0xaf,0x6d, +0xfe,0x14,0xd8,0xa8,0x94,0x63,0x67,0x8e,0x44,0x4d,0x97,0x0a, +0xfb,0x0d,0x92,0x45,0x78,0x0b,0x38,0x03,0xa4,0xfa,0xf3,0x67, +0x03,0x9c,0xa7,0x6a,0x85,0x79,0xac,0x7a,0x2a,0x1a,0x90,0x83, +0x4e,0x07,0x5c,0x7d,0x3d,0x82,0xea,0x0f,0xd4,0xfb,0xd5,0xdb, +0xf9,0xf1,0x95,0x8e,0xa5,0x8e,0xf9,0x0e,0x9e,0xfb,0x3c,0x7c, +0x5d,0xfd,0x2b,0xed,0xf9,0xba,0xa2,0xca,0x92,0xf2,0xf2,0x74, +0xf7,0x54,0xf7,0xa4,0xbd,0x76,0xfa,0x16,0x76,0x7b,0x1c,0x2b, +0x1c,0xf8,0x91,0x86,0xf6,0xd6,0xfa,0x2e,0x2e,0xde,0x25,0xce, +0xc9,0x51,0x43,0xf3,0x8c,0xaf,0xaf,0xf6,0x8c,0x3d,0x6f,0x9f, +0xfd,0x79,0xde,0xda,0x0a,0xb3,0xe1,0xa3,0x83,0x30,0xce,0xe6, +0x0f,0x45,0x4d,0x73,0x45,0x47,0x59,0x1f,0xa7,0xfa,0x14,0x83, +0x49,0x17,0x2e,0x04,0x4b,0x53,0xb4,0xc4,0x09,0xd6,0xf0,0x2e, +0x1b,0x8b,0xb3,0xdd,0x91,0x8a,0xa9,0x69,0x1c,0x68,0x63,0x21, +0xc6,0xf6,0xb7,0x83,0x1d,0x7b,0xea,0xe4,0xc9,0x53,0xa7,0x4e, +0xb6,0xd8,0xf3,0x54,0xad,0x4c,0x29,0xff,0x23,0x1e,0x64,0x94, +0x0f,0x9f,0xc3,0xb1,0x15,0x5a,0x74,0x25,0x7f,0xdc,0xdc,0xca, +0xe3,0x07,0xf0,0xa9,0x07,0x30,0xc7,0x61,0x89,0xf4,0x74,0xca, +0x11,0x82,0x25,0xd6,0x34,0xd8,0x43,0x68,0x21,0x29,0x77,0x2c, +0xb2,0xc9,0xb3,0x68,0x29,0xe4,0x83,0xfa,0x7c,0x7b,0xf6,0xd7, +0x71,0xe2,0xdd,0x99,0xc4,0x0a,0xbe,0xed,0x66,0xb1,0x17,0xdf, +0x21,0xd6,0x90,0xd7,0xc5,0xe2,0xd2,0xf1,0x5d,0x98,0x67,0xcd, +0xf6,0xa1,0x1f,0xf9,0x05,0x3e,0x9f,0x43,0xa1,0xeb,0x81,0x6a, +0x88,0x2c,0xc7,0x6b,0xf0,0xce,0x1b,0xca,0xf1,0x83,0x01,0x7e, +0xaa,0xaa,0x85,0x4f,0x59,0xb1,0x51,0xf4,0x23,0x30,0x39,0xfb, +0xf7,0x82,0x6f,0x6b,0xbe,0xf4,0x7e,0x1a,0xf8,0x4b,0x70,0x76, +0x07,0xbf,0x2e,0x7d,0x73,0xf6,0xae,0x82,0x0b,0x15,0x3d,0xf5, +0x6d,0x9d,0x94,0x0e,0xdf,0x66,0x33,0xb2,0x52,0xb3,0x53,0x72, +0x2c,0x52,0x78,0xe7,0x3d,0x3b,0x8c,0x97,0x3b,0x95,0x3a,0xf2, +0xf5,0x39,0x35,0xf9,0x95,0x85,0x35,0x9e,0x4d,0x7e,0x6d,0x07, +0xb7,0x07,0x7c,0x16,0x8a,0xef,0x1c,0xe6,0x84,0x6b,0x78,0x8f, +0x74,0xa2,0xef,0x2d,0x38,0xd1,0x89,0x27,0x6e,0xc1,0xa2,0x4e, +0xfc,0xcb,0x06,0xe6,0xed,0x40,0x2d,0x36,0x39,0x3b,0x39,0xfb, +0x7c,0xb6,0x79,0x06,0x1f,0xa4,0xdc,0x6b,0x6e,0xe8,0xc0,0x9d, +0x49,0x3a,0x93,0x9c,0xac,0x71,0xc3,0xbb,0xcb,0xf2,0xaa,0xbc, +0xfe,0x62,0xd5,0xc3,0xac,0x9b,0x5c,0x23,0x66,0xab,0x77,0x0f, +0xab,0xa6,0xc1,0x1c,0x36,0xdc,0xc8,0x77,0x9b,0xfd,0x4e,0x6e, +0x40,0xbb,0xd2,0x46,0x57,0x43,0x19,0xe0,0x6f,0x28,0x77,0x62, +0xd2,0x4d,0x65,0x8d,0xcc,0x95,0xae,0xc2,0x9b,0x69,0x8a,0x0a, +0xb7,0xca,0x82,0x92,0xd2,0x82,0xb2,0xe9,0xb0,0x73,0x07,0x3a, +0xdb,0x80,0xf3,0x26,0x6c,0xb5,0x14,0xa0,0x07,0x33,0x28,0xa3, +0xde,0x48,0x29,0xc3,0x19,0xe9,0x9f,0x02,0xda,0x18,0x57,0x0f, +0x5b,0x1f,0x43,0x7f,0xe3,0x42,0xab,0x32,0xe7,0x5a,0xea,0xfd, +0xf7,0xa8,0x67,0x2c,0xc7,0x2b,0x6f,0x6d,0xd0,0xf5,0xc6,0x06, +0x95,0xd4,0x06,0xea,0x0a,0xbc,0x49,0xf4,0x0b,0x83,0x2e,0xc9, +0xc1,0x9f,0x69,0xca,0x48,0x6f,0xa2,0x74,0xca,0x2c,0x85,0xea, +0x04,0x77,0xd6,0xe7,0x48,0x7c,0xa5,0x22,0x87,0xfd,0x25,0xfd, +0x97,0x82,0x87,0x79,0x41,0xed,0xbc,0x5e,0xd8,0x9c,0x03,0x0b, +0x0e,0x73,0xd7,0x4c,0x58,0xd5,0xc7,0x62,0x34,0x79,0xf3,0x50, +0x0e,0xac,0x86,0x4f,0x98,0x50,0x5f,0xdf,0x7d,0x5e,0x07,0x9a, +0xbc,0xf8,0xa6,0xda,0xc6,0xce,0xdc,0x76,0xae,0x09,0xe7,0xb0, +0x91,0x29,0x87,0x52,0x23,0x52,0x2f,0x36,0xf7,0xb6,0xd4,0xf5, +0x72,0x0d,0x22,0x6f,0x0d,0xd7,0x58,0x3f,0x6f,0xa7,0x7d,0x36, +0xde,0xee,0x25,0xae,0x45,0x9e,0x39,0xee,0xee,0x7c,0xb7,0xef, +0x90,0x7b,0x87,0x3b,0x87,0xd1,0x96,0x54,0xe7,0x3e,0x67,0xb6, +0x64,0x1e,0x1c,0x78,0xa1,0xf1,0x9b,0xe9,0x2c,0x76,0x7e,0xa8, +0xe3,0x0a,0x23,0x79,0x85,0xed,0x8d,0xae,0xe2,0xe6,0x78,0xe9, +0xd9,0x93,0xb9,0xe7,0x47,0xec,0x61,0xc2,0x0c,0x30,0x66,0x92, +0x07,0x65,0xe8,0xcc,0x88,0x1b,0x5f,0x92,0xa8,0xc4,0xa8,0x33, +0x51,0x51,0x87,0x22,0xf8,0xe3,0xe7,0x92,0xb2,0x12,0xb2,0xce, +0xe5,0x4e,0x87,0x5d,0xdd,0xb8,0x99,0x39,0x93,0x7c,0x3a,0x25, +0x45,0x63,0x54,0x4a,0xa2,0x96,0xc6,0x26,0x65,0x25,0xd2,0xcf, +0xac,0x32,0xf8,0x60,0x93,0xbd,0x66,0x56,0x0e,0x75,0x6e,0x7c, +0x71,0x41,0x61,0x71,0x6e,0x19,0xf7,0x9d,0x3e,0x73,0xe4,0xf4, +0x91,0x53,0x51,0x72,0x34,0xb1,0x02,0x1d,0x26,0x70,0xb3,0x31, +0x95,0x3a,0xa6,0x65,0xb6,0xfc,0xcb,0xee,0xfe,0xf6,0x8a,0xae, +0x73,0x89,0xf1,0xa7,0x13,0x8f,0xc3,0x27,0xb3,0xf8,0xea,0x0e, +0x1a,0x48,0x82,0x60,0x1a,0x51,0x99,0x99,0xab,0xcd,0xcc,0x84, +0x07,0x16,0xea,0xc8,0x41,0x18,0x0b,0xfb,0x54,0x1f,0x29,0xc5, +0x07,0xac,0x6a,0xea,0x28,0x49,0x15,0x9e,0xc8,0x70,0xb1,0xf2, +0x39,0x73,0x02,0x67,0xcb,0x16,0x59,0x3c,0x63,0x4e,0xe2,0x4c, +0xd9,0x52,0x8b,0xa7,0xf4,0xef,0x39,0x32,0x9c,0x24,0x2c,0x99, +0xf9,0x1a,0xde,0xeb,0xc7,0xf7,0x1e,0x58,0x60,0x2d,0x75,0xf0, +0xbf,0x4c,0xa0,0xdf,0x1a,0xfb,0x71,0x2a,0x73,0x12,0xe6,0xc8, +0x7e,0xe8,0x5d,0x46,0x5f,0x35,0x65,0x3f,0xf5,0x2e,0xa1,0xaf, +0x1f,0xd7,0x27,0x57,0xa4,0x56,0x65,0x4d,0x3f,0xd8,0xe5,0x16, +0xe4,0x18,0x6e,0x1e,0x3d,0xfd,0xbc,0x78,0x51,0xe6,0x64,0x2e, +0xbc,0xa6,0x71,0xfc,0x21,0x16,0x92,0xaf,0xeb,0x1f,0x0c,0xf6, +0x5d,0x70,0x6c,0xe4,0xed,0x95,0x9b,0x94,0x1b,0x3c,0x39,0x61, +0xe2,0xcf,0xe4,0xa6,0xeb,0x5d,0xb3,0x8b,0x66,0xf5,0x5d,0xbc, +0x51,0xdf,0xc6,0x7e,0xed,0x3a,0xaa,0x99,0x17,0x41,0x22,0xc1, +0xcf,0x98,0x92,0xec,0xa2,0xfc,0xfc,0x42,0xae,0x02,0x4f,0xb1, +0xa9,0xa9,0x29,0x69,0xe7,0x53,0xf7,0x26,0xf3,0x75,0x09,0xb5, +0x89,0x55,0x09,0x31,0x8d,0xbc,0x45,0xb4,0xe1,0x51,0x83,0x63, +0xdc,0x05,0x58,0xd9,0x80,0x2b,0x9b,0xc1,0x1a,0xdf,0x67,0x5d, +0xb3,0x82,0xeb,0xe5,0x30,0x8d,0x69,0x4e,0x4f,0xaa,0x53,0xd4, +0xb3,0xf6,0xa9,0x32,0x33,0x9c,0xc8,0x86,0xc5,0x24,0xe5,0x2a, +0xb2,0xd9,0xe1,0xc4,0x9b,0xa9,0xc3,0xd9,0xc1,0xb5,0xbc,0xd5, +0x21,0x83,0x23,0x66,0xc7,0xb8,0x6e,0x58,0x07,0x04,0x57,0xb1, +0xc5,0xd9,0x45,0x79,0xb9,0xf9,0x5c,0x29,0x26,0xd1,0x83,0xa4, +0xa6,0x25,0xa7,0x51,0xe9,0xef,0x6c,0xa7,0x6f,0xbd,0xcb,0xab, +0x7c,0x2f,0x1f,0x77,0xf6,0xdc,0x99,0xb8,0xb3,0x1c,0xca,0x4a, +0xe9,0x32,0x08,0x39,0x19,0x7a,0x32,0xe4,0x54,0xbc,0x2d,0xdf, +0x7d,0xae,0x37,0xa1,0xe7,0xbc,0xbb,0x83,0x9e,0xf5,0x0e,0xef, +0xff,0xe5,0x4b,0x93,0xc0,0x9c,0xf5,0xda,0xb6,0xcd,0x0d,0xe7, +0x7a,0xe5,0xd9,0xf0,0xb0,0xb8,0xe6,0xe7,0x8e,0x7a,0xe9,0xbe, +0x9d,0xe3,0x8c,0x7a,0x65,0xd0,0xff,0xf9,0x64,0x86,0x60,0xab, +0x9a,0x47,0xc2,0x23,0x02,0xc3,0xbc,0x43,0x38,0x3c,0xc2,0x94, +0x64,0x14,0x65,0x15,0xe6,0x70,0xe6,0x38,0x93,0x74,0x09,0x1a, +0xd6,0x2c,0x75,0xf4,0x41,0x12,0x16,0x7e,0x20,0xd8,0x37,0x94, +0xc3,0x10,0xa6,0x2c,0xb3,0x24,0x87,0x7e,0x6c,0xb0,0x98,0xc0, +0x4a,0xe6,0x54,0xe0,0xc9,0xa0,0x58,0xfa,0xf6,0x62,0x06,0x9c, +0xa7,0x9d,0xcb,0x89,0xcb,0x95,0xd2,0xa3,0x6d,0x34,0x60,0xe6, +0x6e,0x25,0x79,0x61,0xc5,0x3e,0x39,0x07,0x1a,0x0b,0xf9,0xb0, +0x42,0xdf,0xd2,0xa0,0x1c,0xee,0x4f,0xe9,0x02,0xc2,0x32,0x26, +0xec,0x44,0x42,0xae,0xe2,0x81,0x72,0x39,0xeb,0x9a,0x1a,0xd6, +0x20,0x87,0x4d,0x4c,0x63,0x7a,0x72,0xad,0xa2,0x9f,0xb5,0x4b, +0x96,0x49,0x08,0x73,0x91,0x2c,0xa5,0x08,0x33,0xce,0x80,0x4a, +0xb7,0x9e,0x1f,0x0d,0x50,0x8b,0x22,0x8c,0x16,0xbb,0x40,0x7d, +0x9d,0x78,0x44,0xc5,0xd7,0x28,0x20,0x01,0xd6,0xc0,0x28,0x7a, +0xb2,0xe9,0x39,0xc9,0x39,0x49,0x39,0xe6,0x69,0x7c,0x74,0x60, +0x64,0x40,0x58,0x00,0x87,0xb3,0x71,0xf4,0x01,0xf5,0x98,0x39, +0x9e,0x9f,0xe1,0x87,0x2b,0x1a,0x9c,0x79,0x98,0xfa,0x73,0x2b, +0x8c,0x3f,0x03,0xcb,0xb9,0x1b,0x98,0xc8,0xe8,0xe5,0x1d,0xb8, +0x25,0x55,0xff,0x6b,0x4e,0xcb,0xac,0x53,0x74,0xb2,0xd6,0x99, +0x32,0x6d,0x56,0x0c,0x3e,0x46,0x3c,0xb3,0xf7,0x65,0x7b,0x66, +0x35,0xd4,0x96,0xb6,0x66,0xf5,0x71,0x5f,0x77,0x60,0x0a,0x93, +0x5e,0x94,0x5a,0x94,0x92,0xc7,0x15,0xbd,0x64,0x92,0xe2,0x4f, +0x49,0x65,0x6a,0x3f,0xd9,0x58,0xd8,0x8a,0x53,0x6f,0x47,0x9c, +0x8f,0x39,0x13,0x1d,0x39,0x3d,0xea,0x90,0x2c,0xb6,0x0f,0xb6, +0x77,0xe0,0xf6,0x2b,0xcc,0x60,0x62,0x7f,0x72,0x6b,0xc6,0xc1, +0x56,0x7e,0x81,0x0f,0x6a,0x1e,0xc1,0x77,0x4f,0xa4,0xd2,0x49, +0x39,0x33,0x10,0x37,0x10,0xcf,0x19,0xa1,0xb9,0x2d,0x6c,0x66, +0xbd,0xac,0x94,0xae,0x0b,0x1d,0x8a,0x6c,0xf9,0x5f,0x3a,0xfb, +0xdb,0x33,0x6f,0x71,0x89,0xb8,0x94,0x39,0x90,0x10,0x75,0x30, +0xdc,0x37,0xd4,0x6b,0x3a,0x7e,0x64,0xfb,0x82,0xae,0xf9,0x10, +0xbf,0x90,0x80,0x8e,0x90,0xf6,0xe0,0xb6,0x20,0xc7,0x00,0x93, +0xc0,0x6d,0xc1,0x79,0x0e,0xfc,0x93,0x82,0x6b,0x25,0xbd,0xd5, +0x8d,0x21,0x0d,0x41,0xb5,0x41,0x1c,0xd4,0x0b,0xaf,0xc9,0x7a, +0x9c,0xfc,0x90,0x05,0xed,0xf5,0xe4,0x21,0x4c,0x5b,0xcf,0xa2, +0xae,0x1d,0x59,0x89,0x93,0xbf,0xa5,0xef,0xac,0x24,0xdf,0xc2, +0xb4,0x95,0xac,0xef,0x46,0x72,0xc4,0x21,0xd8,0x2c,0xc4,0xd9, +0xef,0x04,0x9f,0xec,0xd0,0x15,0x7f,0x39,0xa5,0x35,0x79,0x7a, +0xdc,0xb1,0xb3,0xc7,0xce,0xc6,0xd4,0xe4,0xf0,0x87,0x1a,0x0e, +0xb4,0x86,0x96,0x7a,0x87,0xf0,0x49,0x11,0x29,0x21,0xc9,0x41, +0x07,0xa9,0xae,0xde,0x7f,0x22,0xab,0x29,0xab,0x3d,0xb9,0x81, +0x53,0x4b,0xb7,0xac,0xa6,0xe7,0xa4,0xe5,0xa5,0xe5,0x71,0x30, +0x97,0x39,0xe4,0x18,0xe0,0xe1,0xea,0xed,0x92,0xe3,0x9a,0xe5, +0x9d,0xca,0x49,0xf3,0x31,0x4c,0xd6,0xe2,0xb5,0x57,0x86,0xf3, +0xb0,0xf7,0x2b,0x03,0xd4,0xa0,0xb3,0xa1,0xc1,0x8a,0x1e,0x78, +0x96,0x58,0x61,0xb8,0x54,0x0c,0x38,0x47,0x91,0xc5,0xfe,0x92, +0xf0,0x67,0xfa,0xb3,0xdc,0xc0,0x7a,0x7e,0x7d,0xe8,0xac,0x43, +0x8b,0x62,0xb8,0x2e,0x83,0x4f,0x59,0xdb,0x9c,0xa0,0x3e,0x39, +0xc4,0x33,0x75,0x69,0x19,0xa5,0x8a,0x3a,0x56,0xf0,0xbe,0x4c, +0x44,0x1d,0x2b,0x30,0x63,0x8e,0x06,0x44,0xf9,0x47,0x1e,0xe0, +0x70,0xb2,0xb8,0x12,0x44,0x61,0x25,0xe5,0x56,0x29,0x45,0x49, +0x45,0xe7,0x8b,0x38,0x30,0x62,0xf0,0x25,0x5a,0x93,0xfb,0x70, +0x7a,0x33,0x2b,0xbe,0x27,0x65,0xe8,0x6f,0xc5,0x0e,0x6c,0x65, +0x4d,0x9c,0x09,0x5c,0x33,0x41,0x51,0xd0,0x69,0x67,0x37,0x50, +0xc1,0xe0,0x88,0xca,0x16,0x56,0xe0,0x70,0xce,0x3f,0x5f,0xdd, +0x78,0x85,0x38,0xa0,0xb2,0x95,0x05,0xe5,0x5a,0x62,0x83,0xca, +0x4e,0xfa,0xd9,0x4c,0xf2,0x25,0x9c,0xde,0xc0,0xe2,0x97,0xe8, +0x4c,0x46,0x4b,0x07,0x1b,0x5a,0x5a,0x5d,0x2b,0x79,0x17,0x57, +0x4b,0x0f,0x7d,0x7f,0x0e,0x8a,0x2e,0x93,0x2e,0xbf,0x11,0x97, +0x0e,0xd7,0x9a,0x66,0xde,0xae,0xce,0xa8,0xce,0xba,0x84,0x53, +0x07,0xe1,0x02,0x72,0xa9,0xf0,0x4a,0x43,0x53,0x9d,0x7b,0x35, +0xef,0xee,0xa3,0xef,0xae,0x17,0xc8,0x41,0x73,0x07,0x69,0x0d, +0xe9,0xf2,0x69,0xf0,0x2b,0x6b,0xe3,0x3d,0x8a,0xcd,0xca,0x9d, +0xb2,0xb8,0x89,0x2f,0x85,0x1a,0x72,0x2a,0x38,0xe8,0x54,0xf0, +0x8c,0xf3,0x56,0x2d,0x67,0x5b,0xe2,0x5a,0xe2,0xa6,0x63,0x69, +0x2f,0x54,0xb1,0x25,0x71,0x25,0xe7,0x4a,0xcf,0x25,0x84,0xc7, +0x87,0x9f,0x0b,0x6f,0xce,0xe0,0x23,0xba,0x02,0x87,0x02,0x5a, +0xf6,0x46,0xf0,0x49,0x21,0x49,0x21,0xe7,0x83,0x9c,0x8f,0x3b, +0xc5,0x3a,0x9e,0xec,0xee,0xe8,0x18,0xee,0xbd,0xed,0x5c,0xce, +0x1f,0xd8,0xeb,0xeb,0xea,0xb9,0xf7,0x70,0x56,0x44,0x4e,0x44, +0x76,0x75,0x5d,0x55,0x4b,0x45,0x97,0x53,0x29,0x7f,0xc0,0xd1, +0xc7,0xd9,0xd3,0xfd,0x70,0xc6,0xe1,0xb4,0xe8,0x24,0x0f,0x0f, +0xbe,0xde,0xad,0xd9,0xa2,0xd2,0x29,0x34,0x38,0x24,0x24,0x24, +0x94,0x13,0x5a,0x40,0x87,0xd4,0xba,0x37,0x5a,0x55,0xb8,0xd0, +0xbf,0x43,0x82,0x43,0xb9,0xd0,0x90,0x53,0xa1,0xb4,0x0f,0xcd, +0x67,0x9b,0xe2,0x9a,0xa5,0x3e,0xf4,0xd1,0x3e,0x94,0xc5,0x95, +0x9f,0x2b,0x8f,0x97,0xfa,0x10,0x1f,0xde,0x92,0xce,0x87,0x77, +0x1d,0x1c,0x3c,0xd0,0xe2,0x1a,0xc1,0x27,0x87,0x26,0x05,0x9f, +0x0f,0x71,0x8c,0x71,0x88,0xb5,0x3f,0xd1,0xdb,0xd9,0x3d,0x34, +0x74,0x87,0xf6,0xc1,0xcf,0xd5,0xd3,0xd9,0xdd,0x95,0xf6,0x21, +0x3b,0x22,0xa7,0xb6,0xae,0xa6,0xb5,0xa6,0xd7,0xa9,0x98,0xf7, +0x73,0xf0,0x74,0xf2,0x70,0x8f,0xc8,0x8c,0x4c,0x8f,0x4a,0xf6, +0xf0,0xe4,0xb1,0xde,0x12,0x5a,0x19,0xcc,0x85,0x05,0xc4,0x06, +0x8e,0x77,0xb2,0x78,0x02,0xed,0x69,0xeb,0x24,0x6d,0xcd,0x1f, +0xdf,0x89,0x27,0x6d,0x58,0x9c,0xb0,0x97,0xe4,0x9b,0xa6,0x9b, +0x65,0x18,0x74,0xa4,0xf2,0x87,0x46,0x42,0x47,0x42,0x7b,0x38, +0xf4,0x38,0x41,0xa2,0x4c,0xc2,0x75,0x02,0xcc,0x3b,0x42,0xf8, +0x92,0xcb,0x69,0x97,0x92,0x47,0x38,0x95,0xf3,0x09,0x52,0x68, +0x98,0x65,0x9e,0xa3,0xd3,0x99,0xc5,0x87,0x5e,0x0e,0x1a,0x3a, +0xd8,0xcf,0xa1,0x2f,0x9a,0x91,0xe2,0xd1,0xac,0x8b,0xc9,0x43, +0xb6,0x49,0xfc,0x11,0xb3,0x50,0xdd,0x00,0x0b,0x2e,0x6c,0x2f, +0xa1,0xb2,0x3a,0x0e,0x8d,0x58,0xb0,0x06,0x4d,0x4a,0xc2,0xe6, +0xfc,0xcc,0xbe,0xc6,0x9f,0x68,0x98,0xd4,0xc5,0x0d,0x98,0x0d, +0x72,0x03,0x3c,0x77,0x71,0x48,0xf8,0xc3,0xe4,0x12,0x9c,0xd3, +0x43,0x39,0x2b,0x9d,0x9c,0x1b,0x25,0xba,0x38,0xf2,0xa5,0xee, +0x06,0x6c,0xbf,0x6c,0x88,0xef,0xa8,0x8a,0xe1,0x1d,0x56,0xd4, +0xc6,0xf9,0x04,0x9f,0x51,0x99,0xf1,0x8c,0x11,0xb6,0x00,0x4f, +0xf0,0x35,0x6d,0xbf,0x66,0xc4,0xb0,0x1f,0x89,0x05,0x06,0xf4, +0xb2,0xaa,0x4f,0xa6,0x59,0x60,0x68,0x2f,0x0b,0xbf,0xa0,0x06, +0x51,0xdf,0x63,0xb0,0xfa,0x30,0x8e,0xd5,0x45,0x22,0xef,0xb2, +0x96,0x5d,0x81,0x49,0x05,0x94,0x95,0x25,0x68,0xa8,0x32,0x18, +0x94,0x8b,0xe3,0x48,0xd7,0x68,0xed,0xed,0xf4,0x2f,0xb9,0xce, +0x4e,0x3c,0xcc,0x24,0x15,0x25,0x14,0xc5,0x17,0x58,0x9e,0xe7, +0x83,0x97,0x3b,0xcf,0xd6,0xd1,0xae,0xdf,0xcb,0x17,0x16,0xe6, +0x95,0x67,0x57,0x66,0xd9,0x15,0x3b,0x54,0xb8,0xd8,0xdb,0x9a, +0xba,0xee,0xf1,0xaa,0xb0,0xe1,0x2f,0x55,0x0d,0x37,0x77,0xf5, +0xb4,0xdb,0x0c,0x38,0x8e,0x7a,0x54,0x76,0xf0,0x7a,0xd5,0xca, +0x06,0x87,0x76,0x0e,0x9d,0x21,0x90,0xe0,0xee,0x7e,0x58,0xd3, +0x8c,0x7f,0x3b,0x81,0xa6,0x39,0xea,0x39,0x5c,0xc3,0x73,0x8c, +0xff,0x49,0xff,0x53,0xfe,0xa7,0x12,0x6c,0xf9,0x7f,0x27,0xfe, +0x71,0xfe,0x55,0x1a,0xa7,0x3d,0x00,0x3f,0x8f,0xb0,0xcf,0xd2, +0x48,0x5c,0xc2,0xd9,0xc4,0xb8,0x04,0x0e,0xe6,0x33,0x11,0x7b, +0xf6,0x1b,0xef,0xb5,0xde,0xd7,0xe6,0xdf,0x1d,0x36,0xcc,0x89, +0x9f,0x18,0x90,0x4e,0xd0,0xa3,0xf6,0xd7,0x5b,0x4c,0x7a,0x41, +0xcf,0x82,0x36,0x9c,0x08,0xe8,0xd9,0x31,0x86,0xc7,0x0c,0x62, +0xf4,0x62,0xe9,0xd2,0xe5,0xdd,0x88,0x09,0x68,0x2d,0x06,0xe3, +0x5d,0xff,0xfe,0x02,0xc6,0x7e,0x09,0x1b,0x3a,0xe0,0x43,0xdd, +0x7c,0xde,0x16,0xa7,0x6d,0xc5,0xa5,0x8b,0x50,0xfe,0x1d,0x6a, +0x7e,0x87,0x3b,0x87,0x70,0x0e,0x87,0xfe,0x05,0x74,0x52,0xff, +0xb5,0x9c,0x7e,0x15,0xd8,0xdb,0x30,0xe6,0x2e,0xac,0x6b,0x83, +0xa9,0xba,0x79,0xbc,0x0b,0x7e,0xb4,0x15,0x3f,0x5f,0x81,0x33, +0xbe,0xc5,0x59,0x5f,0xe1,0xae,0x5e,0xd4,0xe2,0x54,0xe3,0x6b, +0x88,0x2e,0xcc,0x5a,0x4e,0x69,0x13,0x8c,0xbd,0xf7,0xc7,0x23, +0x58,0xdf,0x0e,0x1f,0xea,0x15,0xf2,0x8e,0x38,0x75,0x3d,0x7e, +0xb6,0x14,0xf9,0xef,0x71,0xd6,0xf7,0xb8,0x6d,0x14,0x35,0x69, +0x00,0xdd,0xb3,0x9f,0x8c,0x88,0x1b,0x55,0xbb,0x85,0x4f,0x46, +0xd4,0x0f,0x0c,0x85,0x89,0xea,0xdd,0xe2,0x12,0x43,0xb6,0x0b, +0xb6,0x91,0xcb,0x23,0x4d,0x3d,0x85,0x5d,0xf1,0xc9,0x89,0xa7, +0x28,0xfd,0x9e,0x8a,0x4b,0xf8,0xf6,0x66,0xfc,0x08,0xe6,0x1e, +0xca,0x3c,0x76,0x3a,0x22,0x52,0x62,0xf1,0x67,0x65,0xf9,0x03, +0x67,0xba,0x2f,0x69,0xc0,0x7b,0xc6,0x52,0xee,0xa0,0xf7,0x43, +0xb4,0x51,0x03,0x27,0xcb,0x85,0x66,0x3b,0x72,0xe9,0x62,0x5d, +0x4f,0x49,0x7b,0x62,0x6a,0xe2,0xe9,0xc4,0x68,0xba,0xed,0x72, +0x69,0xdb,0xc9,0xb0,0xf0,0x70,0x66,0xf4,0xe9,0x43,0x74,0xdb, +0xa8,0x37,0xdb,0x9e,0xed,0xf9,0x9f,0x6d,0x43,0x77,0xe3,0x74, +0xba,0xed,0x44,0xd5,0xb5,0x2a,0x22,0x26,0x30,0xb3,0x02,0xb3, +0x7f,0x53,0xc0,0x39,0x95,0x5c,0xe0,0xd5,0xe1,0xfa,0xaa,0xb5, +0x98,0x25,0x3e,0x82,0x6d,0xbb,0xc5,0xd3,0x2c,0x92,0x16,0x57, +0x20,0x72,0x21,0x9d,0x19,0x78,0x93,0x8b,0xc8,0x88,0xdd,0x93, +0x4e,0x69,0x8b,0xb3,0xca,0x95,0x4a,0xfa,0x73,0x70,0x32,0x1b, +0xcc,0x6a,0xfd,0x46,0x78,0x34,0x70,0xc5,0x23,0x21,0x78,0x35, +0x96,0x43,0x57,0x16,0xaf,0xf8,0xe3,0xca,0xcd,0x28,0x93,0xf7, +0x5b,0xca,0x9e,0x00,0x5f,0x02,0x2b,0xe1,0x85,0x86,0xea,0xf0, +0xb0,0xfa,0x30,0x03,0x4e,0xe2,0x7f,0x88,0x43,0x64,0x76,0x83, +0x02,0xa6,0x08,0xc5,0x50,0x27,0x7e,0x27,0xae,0x60,0x57,0xd7, +0xee,0x7f,0x2c,0x17,0xf6,0x31,0x6d,0xb9,0x59,0xad,0x0a,0xaa, +0x6e,0x0c,0xb3,0x64,0xb8,0x94,0xc5,0x6f,0xe0,0xa8,0x54,0xbf, +0x7a,0x2b,0xd8,0x30,0x17,0xa5,0x32,0x76,0x5b,0xc1,0x05,0xb7, +0x52,0xe7,0x7e,0x2e,0x68,0x11,0x9c,0xd0,0xb0,0xee,0x82,0xed, +0x63,0x0e,0x86,0xfa,0xf1,0x11,0x13,0x59,0x7d,0xac,0xee,0x44, +0xd3,0x2f,0x09,0x2f,0x52,0x7f,0xca,0xf1,0xee,0xe2,0xf7,0xa1, +0x1e,0x5a,0x44,0x63,0xfb,0x0c,0x71,0x3c,0xeb,0x75,0xdc,0xf3, +0xb8,0x47,0x6c,0x8a,0x19,0x0f,0x2b,0xf3,0x60,0x76,0x29,0x90, +0xfa,0xe8,0x6e,0x7e,0x59,0xc0,0xca,0x90,0x85,0xe1,0x1c,0x2c, +0x80,0xaf,0xd8,0x6e,0x1c,0xf7,0x62,0x23,0x68,0x3a,0xb4,0x46, +0x94,0xa5,0x25,0x34,0x64,0x03,0xcb,0x2b,0xf3,0x64,0xea,0xf9, +0xe0,0x45,0x5e,0x9d,0x79,0x71,0xe6,0x59,0xfc,0x59,0xd7,0x44, +0xf7,0x64,0x4f,0x0e,0x47,0x19,0x38,0x8d,0xb1,0x64,0x1e,0xde, +0xc3,0xd1,0x51,0x1a,0x73,0xd3,0xf0,0xca,0x65,0xb8,0x02,0x35, +0xb8,0x03,0xb7,0xbf,0xb9,0x6f,0x63,0x1e,0xd3,0x9b,0x9f,0xd3, +0xa7,0x00,0x6f,0x7c,0xf1,0x8a,0xf6,0xf2,0xbe,0x74,0x2f,0xf9, +0x16,0xa5,0x6a,0xec,0x66,0xb5,0xa3,0xb9,0xca,0x71,0xbd,0x7a, +0xac,0x52,0xb5,0x05,0xa6,0xc3,0x98,0x7e,0x1c,0xc3,0xa8,0xf5, +0x45,0x23,0xa9,0xc4,0xd6,0xbd,0x05,0xd8,0x84,0x85,0xa3,0x54, +0xdd,0x05,0x61,0xe5,0x28,0x54,0x42,0x1c,0xce,0xc1,0xe5,0x52, +0xd6,0x0d,0x50,0x30,0x5d,0x19,0xe9,0x9d,0x0a,0x30,0xc5,0x2b, +0x2f,0xe0,0x27,0xfc,0x68,0x14,0xb4,0xd5,0xdf,0xa3,0x36,0x3b, +0xf1,0x2f,0x1d,0xf8,0x8d,0x0c,0xa3,0x1f,0x7b,0x2a,0xeb,0x74, +0x56,0xb6,0x06,0x68,0x82,0xdd,0x10,0xda,0xc1,0x4e,0x43,0xdc, +0x89,0x63,0xd9,0xe4,0x96,0x84,0x96,0x73,0xf5,0x66,0x29,0x7c, +0xf4,0x42,0x1f,0x9c,0xec,0xb0,0xa1,0x63,0x2f,0x5f,0xd0,0x94, +0xd3,0x9b,0xd1,0xcf,0xc1,0x24,0xd4,0x64,0x42,0x4f,0x87,0x49, +0xa9,0x46,0x6d,0x8d,0x41,0xc9,0x04,0xe1,0xcc,0x5d,0x38,0x1e, +0xb7,0xe3,0x7b,0x95,0xa6,0x3c,0xec,0x86,0x49,0x4f,0xe0,0x93, +0xb3,0x30,0xeb,0x4d,0xd9,0x55,0xc5,0x35,0xfc,0x04,0xe6,0xe3, +0x54,0xe9,0xb6,0x0f,0x4d,0x78,0x4f,0x07,0xde,0x09,0x06,0x2d, +0x0e,0xef,0x48,0x0f,0x8e,0xcf,0x86,0x95,0x46,0xb8,0x12,0x67, +0x8a,0x37,0x86,0x84,0xd4,0xaf,0xd5,0xda,0x17,0x54,0xda,0xdf, +0x89,0x46,0xba,0x4c,0x86,0xa1,0xac,0x89,0xe9,0xcc,0xca,0xea, +0x54,0x4c,0x54,0x59,0x08,0xfe,0xe4,0x82,0xf9,0x4d,0xbb,0x87, +0x6e,0xe5,0x3d,0xfc,0xd6,0x2a,0xdd,0x66,0xf3,0xce,0xfb,0xd7, +0xfa,0xbf,0x2c,0xff,0x8e,0x6b,0x17,0xb5,0xcc,0xe0,0x6b,0xf6, +0x80,0xb6,0x83,0xbe,0x9e,0xb9,0x6d,0xb7,0xdb,0xa0,0xdf,0x05, +0x8b,0xfd,0x7c,0x85,0x6e,0x83,0x71,0xa7,0x85,0xb5,0x87,0x89, +0x8f,0xce,0x01,0xbb,0x42,0xbb,0x42,0xfb,0xfc,0xa1,0x81,0xc6, +0x6b,0x45,0x0f,0xb9,0x4e,0xb4,0x65,0xd3,0x4a,0x53,0xcb,0x52, +0xca,0x8d,0xcf,0xf3,0x87,0x3d,0x0f,0x7b,0x1f,0xf2,0xe6,0xf0, +0x73,0x33,0x98,0xc1,0x1c,0xb4,0xf7,0xb3,0xf3,0xb0,0xe8,0x0d, +0xea,0x0e,0xec,0x0c,0x34,0x77,0xd7,0xf1,0x59,0x77,0xa0,0xd8, +0x92,0xff,0xb9,0xe2,0x7e,0xdd,0x68,0x47,0xef,0x81,0xee,0xfd, +0x1d,0xfb,0xb9,0x55,0xff,0xdb,0x5c,0x55,0xff,0xdf,0x73,0x35, +0xff,0x7f,0xe6,0xea,0x31,0x7b,0xb3,0xf4,0x62,0x55,0x6f,0x3d, +0x27,0x66,0xbf,0x22,0xf9,0x35,0x05,0x8d,0xf9,0x2d,0x1c,0xac, +0x62,0x02,0xb4,0xdd,0xcd,0x2c,0xed,0x1c,0x73,0x5c,0xb3,0x3d, +0xd2,0x39,0x4a,0xaf,0xe6,0x93,0x62,0x07,0x99,0x39,0x33,0x51, +0xc8,0x13,0x34,0x08,0xdc,0x05,0x11,0x5f,0x33,0x19,0x65,0x29, +0x15,0xe7,0x8b,0xf7,0x24,0xf3,0xc7,0xf6,0x1f,0xda,0x1b,0x41, +0xfb,0x55,0x82,0x22,0xf4,0xcf,0xa1,0x21,0xfb,0xc6,0x65,0x48, +0xa5,0x87,0xbb,0x70,0x15,0x2e,0xc0,0x30,0xee,0xc1,0x9d,0x8c, +0x74,0xd4,0x45,0xf4,0xa8,0x52,0x8a,0x8e,0x00,0x51,0xc6,0x42, +0x32,0x8c,0x12,0x71,0xf8,0xb9,0x30,0xcc,0xe0,0x82,0xf1,0xf3, +0xc5,0xe1,0x97,0x74,0x66,0xf5,0x54,0x41,0x14,0x09,0x9f,0x1b, +0x2f,0x5c,0x40,0xff,0xe3,0x4c,0xfa,0x6b,0x91,0xd4,0x58,0xa5, +0x84,0xcf,0x98,0x98,0x2d,0xde,0xd6,0xb3,0x4d,0xea,0x28,0x7d, +0x95,0x5d,0x6f,0xbc,0x78,0xfe,0x35,0xf7,0x1c,0x77,0x43,0x12, +0xec,0x7e,0xa1,0xc9,0x18,0x64,0x87,0x5f,0x96,0xff,0x40,0xc9, +0x75,0x4e,0xad,0x62,0x94,0xb5,0x4a,0x93,0x6d,0x58,0xcd,0xfa, +0xc6,0x9c,0x2b,0x55,0xbc,0x96,0x8a,0xc3,0x97,0x23,0x21,0x40, +0x60,0x26,0x12,0x56,0xdc,0x8c,0x57,0x09,0x7c,0x02,0x5f,0x52, +0x26,0x59,0x8d,0x8d,0xa3,0x10,0x01,0x7e,0xd8,0x74,0x19,0x9a, +0xe0,0x24,0x7e,0x26,0x95,0x3e,0x31,0x93,0x01,0xc3,0xf4,0x48, +0x17,0xea,0xa9,0x6e,0x1a,0x81,0x71,0xf0,0x0a,0x3f,0x19,0x05, +0xa5,0xfa,0x17,0x54,0x52,0x97,0x4e,0xea,0x20,0xb0,0x1e,0xd6, +0x0c,0xe0,0x1a,0xba,0x72,0x3e,0x1f,0xc0,0xcf,0x61,0x3e,0x18, +0x0c,0x53,0x93,0x16,0x76,0xe4,0xf5,0xa7,0x36,0x9b,0xa5,0xf3, +0x87,0x6c,0x03,0x4d,0xfc,0x94,0x1c,0x7e,0xcc,0xe4,0x75,0x66, +0x75,0xa6,0x77,0x9b,0x67,0xf2,0x1e,0xf8,0x9e,0x21,0xca,0x37, +0xcf,0xa3,0x3d,0xcf,0x2d,0xcd,0x2e,0x4e,0x2f,0xe6,0xc4,0xa7, +0x43,0x97,0x85,0xf9,0xc3,0xac,0xfa,0xb8,0x74,0x53,0xf2,0x2a, +0x1a,0x4d,0xa8,0x23,0xa5,0x3d,0x7a,0xe3,0x48,0xdf,0x8a,0xc6, +0x7a,0x6c,0xba,0x21,0xd5,0xa4,0x5d,0x99,0xd4,0x91,0x84,0x63, +0x38,0x0b,0x56,0xb1,0xd0,0x82,0x22,0xa1,0x07,0x5b,0x84,0xf3, +0xa5,0x13,0x92,0x14,0xd5,0x17,0xd0,0xf6,0x02,0xd6,0x6c,0x3c, +0xae,0xc7,0x45,0xb0,0x9e,0x9d,0x28,0x68,0xaa,0x56,0x13,0xea, +0xb2,0x6b,0x4d,0x70,0x2d,0x7e,0x2c,0xde,0x1d,0x14,0xb2,0xef, +0xa9,0xf5,0x87,0x54,0xfa,0x8f,0x44,0xa5,0x31,0x43,0x77,0x58, +0xcb,0x74,0x66,0x4a,0xd7,0xf3,0x29,0x9b,0x82,0x9d,0xdd,0xb8, +0xf3,0xdf,0x4c,0xcb,0xb9,0xa6,0xb8,0xea,0xf8,0xd4,0xd0,0xd4, +0x90,0xe4,0xd0,0xc6,0x52,0xde,0x6b,0xc0,0x71,0xd8,0xad,0x75, +0xef,0x7e,0x3e,0x23,0x34,0x23,0x38,0x23,0xc8,0xfc,0xb8,0xce, +0xf1,0xdd,0x27,0xf2,0x9a,0x0a,0xba,0x33,0x9b,0x39,0x08,0xed, +0x12,0x77,0x30,0x67,0x8a,0x4f,0x17,0x97,0x68,0x08,0xab,0xe8, +0xfc,0xed,0xc7,0xfd,0x0c,0xa6,0x44,0xa2,0x8f,0x2e,0x2e,0x91, +0x77,0xba,0x0e,0xc1,0xb4,0x7c,0x30,0x4c,0x80,0xfd,0xd3,0x29, +0x5d,0x0c,0x77,0x0e,0xb4,0xf6,0xb7,0xe7,0x4e,0x05,0x49,0x8c, +0x28,0xce,0xb2,0xf7,0xec,0x50,0xdc,0x60,0xdc,0x74,0x2d,0xdc, +0x68,0x05,0x1b,0x71,0x22,0xda,0x5a,0x0a,0x76,0x3d,0x68,0xcf, +0x02,0xa7,0x8a,0x25,0xf8,0x01,0xfe,0x05,0x1f,0xd0,0x99,0x9f, +0xa2,0x1a,0x4f,0x60,0x0e,0xfa,0xb2,0x89,0x05,0x89,0x05,0x09, +0xf9,0x52,0x26,0xd2,0x80,0xa3,0x07,0x8e,0xfa,0x73,0xb8,0xc0, +0x0a,0x34,0x98,0x48,0xaf,0x48,0xea,0xfa,0x1c,0x12,0x4b,0x21, +0xbb,0x87,0x51,0x1f,0x93,0x8a,0x73,0xad,0x42,0x5e,0xbc,0x31, +0x28,0xa4,0xdd,0x57,0x6b,0x0f,0xab,0xb4,0x1f,0x89,0xc6,0x46, +0x92,0xe1,0xea,0xde,0x8e,0x53,0x88,0xa1,0xc6,0x58,0xc5,0x0a, +0xb7,0x90,0x21,0x0b,0xd1,0x8d,0x4d,0xab,0x4c,0xad,0x4c,0xa9, +0xe4,0x60,0xac,0xfa,0x5d,0xf2,0x12,0xd6,0xf4,0xe0,0x9a,0xbb, +0x20,0x07,0x2b,0x4a,0x09,0xac,0x20,0x7a,0x2b,0x66,0x59,0x42, +0xd6,0x7c,0x8a,0xdc,0x09,0x79,0x09,0x79,0xf1,0x05,0x46,0xe7, +0xf8,0xa3,0xce,0x87,0x5d,0xc2,0x5d,0x39,0x68,0x44,0xaa,0xe3, +0x28,0x0f,0xed,0x61,0x70,0xac,0xc0,0x90,0x05,0x78,0xe3,0x05, +0x35,0xf6,0x52,0xc9,0xd8,0xb3,0x60,0xad,0x31,0x35,0xb6,0x5c, +0xbc,0x3b,0x24,0x64,0x3f,0x52,0xeb,0x0f,0xab,0xf4,0xbf,0x15, +0x95,0x7a,0x4c,0xba,0xd1,0xdb,0xd9,0xa3,0xc6,0x1e,0x14,0x76, +0x92,0xef,0x21,0x66,0x00,0x63,0xbe,0x37,0xc0,0x43,0xb8,0x55, +0x3c,0x29,0x68,0x0b,0x27,0x59,0x43,0x9c,0x47,0xf0,0xe6,0x33, +0xb8,0xc9,0x60,0xcc,0x78,0xbc,0xf9,0xb3,0xd4,0xb8,0x89,0x73, +0x09,0xdc,0x9c,0x8b,0xb4,0x29,0xc7,0x18,0xf2,0x6d,0xf9,0x93, +0xce,0xe1,0x6e,0xb7,0x46,0xde,0xd8,0x6e,0xb3,0xd3,0xca,0xfd, +0x9c,0x20,0xbb,0x45,0x2e,0x79,0x5e,0x75,0x1a,0xb1,0xa9,0xed, +0xe4,0x8d,0x5b,0xf7,0xb4,0xee,0xaa,0xe0,0x26,0x82,0x83,0xea, +0x21,0xa1,0x5d,0x98,0x22,0xde,0x1d,0x10,0x72,0x6e,0xab,0x0d, +0x86,0x54,0x06,0x0f,0x44,0x4b,0x33,0x36,0xcd,0x48,0x56,0xcd, +0x74,0x66,0x64,0x52,0x07,0x3a,0x25,0x9d,0x55,0x65,0x05,0xa5, +0x9a,0x23,0x2f,0x60,0x27,0x7c,0xd9,0x05,0x1b,0xc5,0x33,0xb8, +0xb1,0x0b,0xbf,0x84,0x4d,0x0b,0xf0,0x80,0x74,0x32,0x94,0xdd, +0x24,0x18,0x10,0x71,0xda,0x73,0x61,0x1a,0x83,0x4f,0xf1,0x38, +0x79,0x0e,0x2d,0x0b,0x59,0x9b,0xf1,0x73,0xb0,0xe5,0x17,0xf6, +0x53,0xb1,0x9a,0xdc,0x6c,0xbb,0x7e,0xad,0xf5,0x92,0x63,0x15, +0xef,0x62,0xb2,0x73,0xb7,0xee,0x5e,0x0e,0x5e,0xc1,0x87,0xa4, +0xdf,0xfe,0x96,0x76,0xbb,0x69,0x63,0x13,0x6f,0xd7,0xb7,0xe3, +0x9a,0x59,0x1b,0xed,0x8c,0xb6,0xd4,0x99,0x75,0x38,0x56,0xbc, +0xd3,0x27,0xe4,0x0e,0xa9,0x0d,0x07,0x54,0x86,0xa3,0xa2,0xb5, +0x83,0x74,0x65,0xb5,0x90,0xe9,0x48,0x4f,0x6f,0x57,0x08,0x67, +0x91,0x85,0x75,0x2c,0x6c,0xfb,0x7b,0x01,0x19,0xbc,0x24,0x2c, +0xd4,0x1b,0xfc,0xeb,0x5d,0x31,0x93,0x19,0xb4,0x20,0xc2,0x42, +0xb5,0xb3,0xb8,0x90,0x11,0x26,0xab,0x18,0x12,0x5c,0xe8,0x53, +0x7c,0x30,0x73,0xbf,0x1f,0x5f,0x10,0x56,0xee,0x97,0x7b,0x90, +0x3b,0x24,0x9e,0x24,0x21,0x95,0xd2,0x99,0xe2,0x96,0x9f,0x0b, +0x7e,0x49,0xff,0xda,0x39,0x99,0x8f,0xda,0x15,0xbe,0xd9,0x77, +0x0b,0x17,0xf1,0xe8,0xc4,0x0f,0x2f,0x34,0x80,0x6b,0x43,0xee, +0x37,0x07,0x2d,0x34,0xb7,0x7f,0x73,0x01,0x67,0x42,0x02,0x72, +0xc5,0xf3,0x02,0x6c,0x7c,0xec,0x5c,0x9d,0xaa,0x3c,0xf9,0x8a, +0xea,0xe2,0xfa,0xfc,0xc6,0xe4,0xfd,0x69,0xfe,0x19,0x07,0x8b, +0x9d,0x1a,0x52,0xe3,0x3b,0xd2,0xe1,0x13,0xde,0x83,0x86,0xd8, +0xab,0x87,0x09,0x68,0x41,0x2c,0x6a,0x31,0xad,0x68,0x4b,0x60, +0xf9,0x10,0x8d,0x3c,0x17,0x36,0x11,0xab,0x90,0xad,0x81,0x26, +0x91,0xc9,0xb6,0xfc,0x60,0xfa,0xbd,0xfc,0xae,0x02,0x3a,0x32, +0xa5,0xea,0xa6,0x64,0xe6,0x89,0xe2,0xdd,0x7e,0x21,0xe7,0xba, +0xda,0x60,0x50,0x65,0x70,0x57,0xb4,0x54,0x4a,0x66,0xae,0x90, +0xcc,0x4c,0xdd,0xed,0x34,0x4e,0xa5,0x66,0x06,0xff,0x60,0x82, +0x25,0xc2,0x56,0x28,0x91,0xd4,0x0a,0x43,0x6e,0xc0,0xdd,0x5d, +0x2c,0xde,0x45,0x8e,0xdc,0x86,0xbb,0xdb,0x59,0xf1,0x33,0x1a, +0xb8,0xf5,0x85,0x14,0xd0,0x67,0xc5,0x31,0x8e,0x64,0xde,0xfc, +0x57,0x2c,0xc4,0xcd,0x23,0xb3,0x5f,0xfd,0xca,0x74,0xcf,0x23, +0xaf,0x60,0xec,0x3c,0xf6,0x06,0xfe,0x4d,0x3e,0xcf,0xda,0x95, +0x67,0x52,0xf8,0x45,0xdb,0x60,0x5f,0xfd,0x10,0xd7,0x24,0x1e, +0xb4,0x16,0x96,0xb0,0x6e,0x4e,0x16,0x4e,0x3b,0xdc,0x0d,0x2a, +0x6d,0x6b,0x1d,0x1b,0xec,0x7d,0xf9,0x46,0xd7,0x16,0x8f,0x3e, +0x6f,0xbd,0x03,0x9b,0x02,0x97,0x86,0x67,0x59,0xf1,0x30,0x26, +0xe7,0x87,0xb2,0x7b,0xd5,0x57,0xbd,0xbe,0xda,0xff,0xc7,0x41, +0xda,0x61,0x1d,0xd5,0x3d,0xa9,0x78,0xdd,0x58,0xf1,0x7a,0x9f, +0x90,0x31,0xa4,0xd6,0x19,0x50,0xe9,0x5c,0x12,0xcd,0xed,0xa5, +0x0e,0x17,0xd0,0xa9,0xc8,0xa0,0x53,0x71,0x82,0x4e,0xc5,0x6a, +0x56,0x35,0x4f,0xfd,0x84,0xec,0xaf,0x0b,0xea,0x8a,0x18,0x69, +0xb9,0x5f,0xf5,0x6d,0xc9,0x4b,0x9b,0x7c,0x3e,0x64,0x4b,0xc0, +0x6e,0x3f,0xc3,0xc8,0x3b,0xc7,0x9e,0x9c,0x78,0xce,0xc1,0x9a, +0x5e,0x5c,0xcb,0x9c,0x6c,0x3f,0xdd,0xd9,0xa3,0x01,0xeb,0xcc, +0x71,0x1d,0x6b,0x75,0xda,0xfa,0x8c,0x9d,0x1c,0x27,0x33,0x19, +0x4d,0xe9,0xed,0xc9,0xad,0x16,0x69,0x7c,0x94,0xed,0x21,0xab, +0x30,0x5b,0x4e,0x7a,0xdc,0x0c,0x99,0x73,0x38,0x35,0x19,0xc7, +0xe6,0x2d,0x73,0xda,0x6d,0x65,0xac,0x67,0x59,0x6d,0xcf,0x0f, +0xb4,0xb7,0x77,0x37,0x0c,0x65,0xd8,0xe5,0xba,0x16,0x7a,0x95, +0x3b,0x0f,0x24,0x24,0x5c,0xcc,0x84,0x1d,0xbc,0x75,0x91,0x0c, +0x5f,0x08,0x9d,0xe4,0x95,0x72,0x1e,0x7e,0x60,0x09,0x9d,0x3d, +0xd4,0x12,0xb8,0x90,0x84,0xd1,0x21,0x78,0x8d,0xd8,0x07,0xf2, +0xe5,0xa6,0x95,0x9f,0x65,0xeb,0x70,0xe2,0x47,0x47,0x48,0x74, +0xed,0xa1,0xf6,0x88,0x5a,0x9b,0x10,0x3e,0xdd,0x33,0xd3,0x2e, +0xc9,0x8d,0xb3,0xc5,0x0f,0x89,0xe8,0xd2,0x3b,0x0a,0xe6,0xc2, +0x6c,0x16,0xcd,0x71,0x0b,0x81,0x89,0x14,0xdd,0x27,0xb2,0x38, +0x53,0xba,0xa0,0x3d,0x95,0xb6,0xa7,0xb2,0x13,0xc1,0xe8,0xad, +0x3b,0xbe,0x27,0xde,0xa1,0x6b,0xe3,0xf2,0x9b,0x49,0xbb,0x25, +0x5a,0x5a,0x49,0x36,0x28,0x63,0x3a,0x32,0x32,0xde,0x4c,0xda, +0x47,0xd4,0x1d,0x05,0x2b,0x3d,0x72,0xc9,0x40,0x0f,0x0f,0x5b, +0x09,0x2d,0xdd,0x2c,0x22,0x6a,0x92,0xe8,0xb2,0x43,0x35,0x87, +0x0b,0xad,0x82,0xf8,0xb4,0x80,0xf4,0x7d,0x49,0xbe,0x1c,0xa4, +0x9d,0x20,0x19,0x65,0xe9,0x95,0x29,0x15,0x96,0xd9,0x7c,0x94, +0x77,0x98,0x53,0x90,0x1b,0x87,0x3f,0x58,0x0a,0x03,0x3d,0xcc, +0x41,0xb1,0x9c,0xf4,0xe1,0xc9,0x9b,0xe0,0x07,0x7d,0x62,0x20, +0xf6,0x81,0xeb,0x4e,0x0c,0x53,0x42,0xd8,0x26,0x8c,0x97,0xae, +0x11,0x61,0xde,0x03,0xd6,0x5c,0x78,0x8f,0x6c,0xc2,0x25,0x0f, +0x58,0x70,0x95,0x4a,0x58,0xad,0xde,0xc4,0x8a,0x0c,0xf5,0xb7, +0x25,0xeb,0x71,0x09,0x03,0xae,0xd3,0x1e,0xc2,0x6a,0x0a,0xe0, +0xaa,0x42,0xc1,0x8b,0xb4,0x0f,0x56,0x5e,0x2b,0xfc,0x9e,0xbb, +0xdc,0x8b,0xb9,0x4c,0x5a,0x45,0x6a,0x45,0x52,0xb9,0x79,0x0a, +0xef,0xb3,0xc0,0xee,0xf3,0xad,0x5b,0x1b,0x5d,0xf8,0x82,0x82, +0xdc,0xa2,0xec,0xe2,0x42,0xf3,0x0a,0xeb,0x7a,0x47,0x3b,0x07, +0x23,0xf7,0x8d,0x1e,0xa5,0xd6,0xfc,0xc3,0xba,0xcb,0x0d,0xdd, +0x1d,0xbd,0x36,0x97,0x1c,0xef,0xbb,0x96,0x77,0xf2,0xdb,0xea, +0x0c,0x9a,0xac,0xdb,0xa4,0x3b,0xc6,0xa9,0xab,0xc5,0xad,0x64, +0xd3,0xed,0x64,0xd7,0x98,0xb6,0xcc,0xac,0x16,0x05,0x34,0xa0, +0x3e,0x6c,0x32,0xc3,0x4d,0x68,0x2c,0x8e,0x1b,0x82,0x9b,0x6c, +0x3d,0x05,0xd1,0x03,0xce,0xce,0x36,0x8e,0x3e,0x8d,0xee,0x7c, +0x5b,0x55,0x53,0x57,0x51,0x2b,0x07,0xc3,0x9f,0x91,0xbd,0xed, +0x9e,0xd5,0xf6,0x35,0x7b,0x3d,0xf9,0x56,0xf7,0x5a,0xb7,0x6a, +0x47,0x0e,0x5e,0x26,0x91,0x10,0x6d,0x7f,0x53,0x37,0x5b,0xe7, +0x0e,0xef,0xbe,0x83,0x17,0x13,0x92,0x79,0xd1,0x01,0x69,0x28, +0xb4,0x84,0xad,0x68,0xc9,0x74,0xd3,0xf0,0xfa,0xe4,0xf9,0x6a, +0x16,0xde,0xc7,0xe9,0x64,0x17,0x3e,0xc6,0xe4,0x11,0x70,0x80, +0x42,0x4c,0x19,0x81,0x14,0x68,0x47,0x4d,0xdc,0xc2,0x66,0x50, +0x3a,0x37,0x97,0x86,0xd5,0xac,0x1e,0x05,0xe8,0xe0,0x9f,0x37, +0xe8,0xec,0x5c,0x56,0x4d,0x25,0x5f,0xc0,0xce,0x5e,0xdc,0x79, +0xd9,0x58,0x17,0xd7,0x5b,0xc0,0xfa,0x8d,0x68,0x65,0x21,0x58, +0x50,0xf1,0xf5,0x3b,0x28,0x89,0x21,0xb2,0x98,0xad,0x84,0x6c, +0xec,0xc4,0xcd,0x6f,0x0a,0x76,0x2c,0x60,0xba,0xb2,0x32,0xe8, +0xe6,0x35,0x2f,0xfa,0x16,0xb0,0x38,0x8d,0x12,0x51,0xb7,0x6e, +0xd7,0x4e,0xfb,0x66,0x27,0x6f,0xbe,0xc5,0xa9,0xd5,0xb2,0xc2, +0x8e,0xc3,0x0d,0xfa,0xc4,0xe0,0xe8,0xce,0x63,0xdb,0x62,0xb8, +0x07,0xa0,0xdd,0x8b,0xda,0xb7,0x8c,0x77,0xbc,0x79,0x02,0x72, +0x1d,0xbb,0xfb,0xb8,0x76,0xec,0x9e,0x13,0x89,0x94,0x03,0x2f, +0x4e,0x86,0x75,0x29,0xa0,0xc8,0xe7,0x4c,0x3d,0xfe,0x3f,0xf7, +0x55,0x30,0x50,0x79,0x93,0x61,0x71,0xa2,0x31,0x2c,0xc6,0x4a, +0xdc,0x6c,0x00,0x9b,0x45,0x97,0xcb,0x82,0x0b,0x6c,0xbb,0x88, +0xdb,0xa0,0x92,0x15,0x3c,0xb1,0x82,0x40,0x05,0x18,0x0d,0x8b, +0x5b,0xa5,0x7b,0x5c,0x2a,0xd0,0xda,0x00,0xac,0x45,0xd7,0xcb, +0x82,0x2b,0x38,0x5e,0xa4,0x13,0x6b,0x07,0xdf,0x13,0x38,0x02, +0xb6,0x23,0x78,0x84,0xad,0x1d,0xa8,0xbf,0x51,0x7a,0x45,0xbf, +0x80,0xf7,0xda,0xee,0xb6,0xcd,0x76,0x37,0x27,0xa6,0x18,0x82, +0x27,0x7a,0x51,0x2a,0x7a,0xca,0x10,0x62,0xd8,0x30,0x9c,0xb3, +0x6d,0x13,0x2e,0x5c,0xdb,0x60,0xce,0xc3,0x8e,0x17,0xf7,0xfe, +0xcc,0x82,0x65,0x1c,0x9d,0xb7,0xdf,0xae,0xc0,0x6f,0x10,0x31, +0xc2,0x88,0x7d,0xf0,0x9c,0x78,0x5c,0x74,0x1f,0xd8,0xdb,0x69, +0xea,0xcd,0x37,0x58,0xd6,0x19,0x57,0x98,0x70,0x35,0x78,0x89, +0x64,0xb1,0xd4,0xfd,0x6a,0xe8,0xfe,0x27,0xfe,0xb5,0xd1,0x9f, +0x18,0x81,0x6c,0x29,0x68,0xed,0xf8,0x4e,0xe9,0xce,0x37,0xd8, +0xb6,0xed,0x69,0xda,0x85,0x1a,0x07,0x71,0x67,0x28,0x6e,0x8f, +0x04,0x5d,0x58,0x06,0x3b,0x20,0x00,0xc6,0xc3,0x26,0x93,0x06, +0x5e,0x77,0xf6,0x4a,0xe4,0x16,0xe0,0x38,0xfb,0x76,0xd3,0x3e, +0x93,0xce,0x9f,0x5e,0x7d,0x0b,0xec,0x55,0x18,0x6b,0x54,0xc3, +0x9b,0xce,0x5b,0x86,0x13,0x97,0x2f,0x72,0xa9,0xda,0x5b,0xee, +0x9d,0xef,0x6c,0xcd,0x3f,0xdb,0x0e,0xd3,0x34,0x9f,0x2e,0xdc, +0xbe,0x7e,0xe3,0x96,0x8d,0x7a,0xf6,0x27,0x1c,0x4e,0x3a,0x9d, +0x3c,0xaf,0xcf,0x43,0x78,0x0a,0x0c,0x14,0x81,0x67,0x43,0x9e, +0x5b,0xae,0x7b,0xd6,0x3e,0x6e,0xa2,0x70,0x45,0xf5,0x25,0xd9, +0xb9,0x43,0x9c,0x8c,0x6e,0x0c,0xb6,0x86,0xe3,0xb2,0x3d,0xc8, +0xcb,0xfb,0x6c,0x64,0x37,0x61,0x61,0x36,0xe5,0xd7,0x5d,0x1a, +0xb0,0x42,0x95,0xdb,0x2b,0x7e,0xcc,0xe2,0x3e,0x9c,0x43,0x50, +0xd3,0x12,0x34,0x31,0x75,0x90,0x32,0xc5,0x8f,0x7b,0xf0,0xe3, +0xab,0xa6,0x0c,0xbc,0xd6,0x21,0xc8,0x5b,0x02,0x8f,0x49,0x43, +0x94,0xda,0x6d,0xed,0xc1,0xad,0x57,0x4d,0x18,0x51,0x29,0xbe, +0x4f,0x9a,0x2e,0xa6,0x5c,0xfd,0x59,0xc3,0x82,0x59,0x1e,0x6d, +0xe9,0x62,0x2e,0x87,0x6b,0x60,0x41,0x2c,0x71,0x45,0x0f,0xf3, +0xd2,0x8b,0x14,0x77,0xa6,0x5d,0x3c,0xf5,0x88,0xb3,0x60,0x36, +0x47,0x29,0xf7,0x3b,0xc9,0xe1,0x76,0x3a,0x89,0x3c,0x11,0x9f, +0xaa,0x80,0x99,0x96,0xb8,0x90,0x75,0xcf,0x88,0xa8,0x93,0x77, +0x31,0xc5,0xc9,0x29,0xe5,0x8a,0x9b,0xac,0x43,0x86,0x6c,0x1d, +0x8b,0xda,0x18,0x4d,0x0a,0x03,0xca,0x7c,0xca,0xdc,0x17,0x1e, +0xc2,0x31,0x91,0x38,0x21,0xfa,0x87,0x6b,0x3f,0xfe,0xf0,0xc5, +0xf7,0x56,0x15,0xbc,0xa5,0x81,0x81,0x81,0xae,0xf9,0xfe,0x6c, +0xaf,0xbc,0x7d,0xb9,0x9d,0x6d,0xdd,0x83,0x2d,0x83,0xf4,0x4d, +0x17,0x13,0x0b,0x73,0x0b,0xfb,0xfd,0x99,0x7e,0x99,0x7e,0x19, +0xee,0xb6,0xfc,0x17,0x4e,0x0f,0x6d,0x2e,0xb8,0x78,0x1d,0xf0, +0x3a,0xe8,0x15,0xb4,0xe7,0xc4,0xee,0x13,0xbb,0x4e,0x9d,0xa7, +0xf3,0x75,0x3e,0x11,0x42,0x73,0x40,0xbb,0x2c,0xe7,0x40,0xb6, +0x7f,0xd6,0xfe,0xce,0x2a,0xde,0xe4,0x1b,0x9d,0x2f,0xcc,0x7b, +0xa8,0x55,0xae,0x52,0x34,0xde,0x8e,0x0c,0xbe,0xc6,0x55,0x0c, +0xc6,0x1e,0x44,0xbd,0xcf,0x71,0x96,0x7c,0xc0,0x4c,0xf6,0x13, +0x7c,0x5e,0x06,0x1e,0x70,0x46,0xe3,0x37,0xd5,0xbe,0x11,0xf1, +0x7d,0xea,0x69,0xd7,0x55,0x27,0xc8,0x37,0x3b,0x56,0x89,0x1f, +0xa0,0x17,0x8b,0x59,0xc1,0xb8,0x5a,0x87,0x6a,0xd4,0x21,0x4b, +0xd9,0x6d,0xd0,0xcc,0x03,0x43,0x28,0xd7,0x80,0xe5,0xaa,0xd3, +0x83,0xac,0xe8,0x84,0x76,0x24,0xb8,0xd1,0xaf,0xd5,0xa7,0xc6, +0xe4,0x00,0x5f,0xe5,0x5a,0xe4,0x94,0x4b,0xa3,0xb2,0x1e,0x0d, +0x1d,0x54,0x52,0x35,0x0c,0x62,0x03,0x4c,0x80,0xdb,0x03,0xe8, +0xcc,0x96,0xd6,0x15,0xb5,0x14,0xf6,0xe8,0xe6,0xf2,0x81,0x16, +0x7e,0x16,0xee,0xb6,0x9c,0xb8,0xcc,0x8c,0x52,0xf9,0x09,0x58, +0x65,0x0a,0x55,0xf8,0x11,0xfe,0x64,0x42,0x85,0x95,0xc1,0x25, +0x30,0x80,0x67,0x43,0x94,0xd9,0x8f,0xa8,0x1e,0x91,0x9d,0xeb, +0xc5,0x89,0x78,0x8a,0xc1,0xf8,0x30,0x5c,0xab,0x8f,0xef,0x4a, +0x0a,0xf6,0x06,0xcc,0xc8,0x06,0x23,0xc8,0xd0,0x00,0x53,0xd5, +0xf9,0x01,0xf1,0x23,0x16,0x14,0xea,0x04,0x92,0x4e,0xa9,0x32, +0xcf,0xb4,0x66,0x67,0xb7,0x2a,0x54,0x1f,0x19,0xaa,0x79,0x56, +0x7c,0x48,0x29,0x9c,0x18,0x05,0x43,0x42,0x14,0xfb,0x2a,0x88, +0x88,0xd1,0x23,0x42,0x34,0x8b,0x5e,0x14,0xac,0xd1,0xec,0x47, +0x30,0x63,0xf0,0xf0,0xf8,0x7f,0x1a,0x66,0xf8,0x29,0x01,0xb3, +0x4f,0xd1,0x8c,0x59,0x88,0xe7,0xc9,0xd5,0xba,0x2b,0x57,0x2a, +0x5a,0xad,0xaa,0x78,0x3f,0x57,0x63,0x43,0xfd,0x7d,0x1c,0xe4, +0xbd,0x22,0x4d,0xfb,0x86,0xf4,0xaa,0xec,0x5b,0x6a,0xf9,0x7d, +0xad,0x7a,0xa3,0x4e,0xd5,0xd4,0x86,0xa3,0x92,0x67,0xad,0xa1, +0x9e,0x15,0xc5,0xe0,0xa9,0x30,0xdc,0x68,0x88,0x1f,0x48,0x9e, +0x75,0x1d,0x3e,0xcd,0x05,0x25,0x35,0x21,0x65,0x1f,0xd9,0xc3, +0xe2,0x74,0x16,0x15,0xa2,0x16,0x89,0x79,0x0d,0x7c,0x3f,0xe5, +0x3d,0xf3,0x4d,0x70,0x3e,0xce,0x31,0xa7,0xfc,0x31,0x02,0x39, +0x53,0xe4,0x28,0xa8,0x8c,0x6b,0xb6,0xe1,0x5f,0x3f,0x6b,0x7d, +0x15,0xff,0x0b,0x97,0x28,0x6a,0x0f,0x09,0x9a,0xcc,0xf9,0x84, +0xd3,0xe7,0x8e,0xc9,0x5f,0xe0,0xec,0x96,0x9a,0xb9,0x30,0x37, +0x3a,0xfd,0xe8,0xd9,0xf0,0x23,0xd3,0xc1,0x55,0xd4,0x27,0x43, +0xe0,0x65,0x32,0xa4,0xda,0x8c,0x5f,0xa9,0x37,0xb3,0x50,0x24, +0x1c,0x95,0x6e,0x92,0xe0,0xc1,0x8b,0xa1,0x83,0x32,0x20,0xe0, +0x85,0x3c,0x5d,0xb8,0xe6,0xe3,0x69,0xe3,0x53,0xda,0x98,0xf8, +0xd7,0x2e,0x95,0x23,0xe9,0x17,0x27,0xdc,0xd2,0xde,0x21,0x4e, +0xc3,0x43,0x2c,0xd6,0x87,0xe0,0x32,0x43,0x9c,0x20,0xef,0xb5, +0x92,0x5d,0xa3,0x90,0x43,0x17,0x40,0xab,0x06,0xec,0x62,0x55, +0x99,0xea,0x10,0x82,0x93,0xd2,0x16,0xe6,0x6c,0x2a,0xb8,0x57, +0x7b,0xb1,0xa5,0xb3,0x8f,0xab,0x13,0x27,0xb3,0x19,0x99,0x19, +0x99,0xe9,0xd9,0x1c,0x88,0x30,0x88,0x3d,0x4c,0x72,0x66,0x52, +0xf6,0xf9,0x4c,0x0e,0x7e,0xee,0x55,0xbb,0x5a,0xc0,0x0d,0xe6, +0x68,0x78,0x74,0x68,0x54,0x38,0x87,0x81,0x38,0x08,0xcb,0x19, +0x53,0x7d,0x6d,0x5b,0x1c,0xe3,0x5a,0x60,0xcb,0xf7,0xe6,0x74, +0x16,0xb6,0x94,0x36,0x7a,0xb4,0x7a,0x0f,0xf8,0x2d,0xf5,0xc3, +0x71,0xc1,0x38,0x2d,0x3a,0xc3,0x92,0x87,0x65,0x69,0x30,0xad, +0xe8,0x8f,0xfa,0x1f,0xf6,0x01,0xe3,0x0f,0x4b,0x23,0x38,0x54, +0x08,0x0d,0x34,0x68,0x36,0x0a,0x2e,0x8c,0xe8,0x82,0x93,0x08, +0x6d,0xb8,0xb0,0x0e,0xe3,0x1d,0x45,0x97,0x16,0x56,0x58,0x8e, +0x86,0xc4,0x79,0x9f,0xa9,0xe7,0x8e,0xfd,0xba,0xc5,0x56,0x95, +0xf6,0xb5,0xd4,0xdc,0x17,0x54,0x99,0xe4,0xed,0x40,0xce,0xb0, +0xd8,0x1c,0x8a,0x33,0xa5,0x81,0x74,0x5b,0xd3,0x95,0x3c,0x2b, +0x9b,0x4a,0x20,0x3a,0x10,0x63,0x55,0x49,0x3f,0x2b,0x8e,0xe2, +0x72,0x92,0x9c,0x9b,0x54,0x90,0x90,0xab,0x3c,0xcf,0x1f,0xf3, +0x3f,0x1a,0x78,0xe4,0x20,0xa7,0x89,0x97,0x60,0x08,0x2e,0x31, +0x02,0xa7,0x66,0x88,0x31,0x13,0x7c,0x34,0xb9,0x40,0x01,0x87, +0x0f,0xb0,0xf1,0x39,0xf1,0xb9,0x52,0xee,0xac,0xd9,0x7d,0xf8, +0x2f,0x26,0xf9,0x4a,0xfc,0xed,0xb3,0x5f,0x72,0xff,0xee,0x43, +0x51,0x09,0x16,0xcc,0xc9,0x75,0xc7,0x77,0x44,0xe9,0xd2,0x09, +0x62,0x52,0x87,0xa5,0x22,0x6a,0xa6,0x67,0xf8,0xa3,0x1b,0x0e, +0x6d,0x0a,0xdd,0xc8,0xc1,0x56,0xc6,0x0b,0xe7,0xed,0xd1,0x42, +0x6e,0x49,0xb3,0x2d,0xff,0xcd,0xad,0x91,0x87,0x8d,0xcf,0x39, +0x5c,0xc1,0x9a,0x17,0x06,0xf6,0xc8,0xaf,0x32,0x35,0xe9,0xe9, +0x8d,0x8a,0x7f,0xb3,0x56,0x99,0x32,0x71,0x8b,0xc0,0x52,0x57, +0xfb,0xea,0xad,0x87,0x51,0xc9,0x67,0xb6,0x9a,0x7a,0x18,0x95, +0x71,0xd1,0x84,0xce,0xfb,0x0a,0xd6,0xf7,0x68,0x6a,0xa9,0xe2, +0x1a,0xfb,0x55,0xce,0xeb,0xea,0x1b,0xf5,0xfe,0x5d,0xfc,0x1e, +0xf7,0xd5,0x5e,0x5b,0x42,0xb9,0x3f,0x8c,0x31,0x92,0xd5,0x2f, +0x0c,0x1a,0x96,0x2e,0x3b,0x34,0x64,0x66,0x34,0x28,0xa8,0x10, +0xfd,0xff,0x67,0xfc,0x1f,0x50,0x1e,0x5f,0x93,0x96,0x5a,0xa7, +0x78,0xc2,0x5a,0x65,0xc9,0xe6,0x7a,0xb2,0x21,0x47,0x13,0x0b, +0x15,0x60,0x26,0x2d,0xee,0x05,0x51,0x56,0xdb,0x4c,0xe5,0xad, +0x0e,0xb2,0x1b,0x7d,0x25,0xb7,0x60,0x92,0xc6,0xaf,0xb8,0x88, +0xb1,0x28,0x0c,0xed,0x95,0x8b,0x33,0x60,0x1c,0x1d,0xc6,0xe3, +0xff,0x19,0xc6,0x0a,0x3a,0x0c,0xd5,0x06,0x91,0x25,0x7a,0x05, +0xa6,0x15,0xb6,0x0d,0x7d,0x43,0x4d,0x37,0x0b,0xbf,0xe0,0x5a, +0xf1,0x17,0x25,0xd4,0xb2,0x41,0x86,0x5e,0x4a,0x47,0x7b,0xa7, +0xe6,0x7d,0x5d,0xfe,0x83,0x56,0xfb,0xf9,0x32,0xc3,0x5a,0x65, +0x9b,0x9d,0xed,0x5e,0x13,0x6f,0x9d,0x83,0xa5,0x4a,0xfe,0x66, +0xe1,0x68,0x4d,0x6f,0x7b,0xaf,0xe3,0x45,0x8f,0x5b,0x7e,0x9c, +0xb8,0x01,0xee,0x92,0xff,0x97,0x51,0x9b,0x67,0xc8,0xfe,0x9f, +0x86,0xe2,0x24,0x58,0xc8,0x25,0x57,0xb5,0x75,0xc4,0xf7,0x31, +0x8c,0xc5,0xb6,0x20,0x5c,0xa1,0x8f,0xef,0xc9,0xfb,0x24,0x5c, +0xa0,0xa0,0xb4,0x1b,0x7a,0x35,0x60,0x87,0x2a,0x93,0xda,0x62, +0x29,0xbe,0x22,0x70,0x0c,0xaf,0x5b,0x41,0x32,0x7a,0xd6,0xb3, +0xf6,0x96,0xf3,0xdd,0x70,0xa7,0x7b,0x16,0x85,0x46,0xfd,0x46, +0x98,0xda,0x5e,0xf5,0x05,0x97,0xc0,0x54,0xee,0x80,0x55,0xc6, +0xb0,0xc7,0x2d,0xbb,0x9f,0x47,0xa7,0x46,0xfc,0xa8,0xcb,0xfd, +0x22,0x07,0x57,0xe0,0x18,0xc1,0xaf,0xad,0xa0,0x08,0x4f,0x0d, +0x33,0x78,0x19,0xde,0x25,0x77,0x72,0x6f,0x94,0xf5,0x56,0x07, +0x34,0xf2,0xb6,0x3e,0xdb,0xfd,0x76,0x84,0x70,0xf8,0xc2,0x8c, +0xdc,0xcb,0xb9,0x55,0xd1,0x5f,0x7d,0xa0,0x89,0xbe,0xb7,0xcd, +0x77,0x4b,0x08,0x27,0xbc,0x3a,0x43,0x4c,0xdc,0x76,0x7b,0x6d, +0x0a,0x2c,0xb0,0xe3,0xbf,0x2c,0xbc,0x5a,0x3d,0x5c,0xcf,0x89, +0xbf,0x51,0xb8,0xf9,0xa1,0xf8,0x8b,0x9a,0xab,0x6d,0xfe,0x4d, +0xbc,0x8e,0xe3,0x36,0xcf,0x15,0x81,0xdc,0xa0,0x14,0x9f,0xe7, +0xe4,0x83,0xbc,0xff,0xc1,0x88,0x67,0x3d,0xbf,0xdd,0x14,0xa7, +0xd8,0xe0,0xbc,0x40,0x2e,0x1f,0x97,0x50,0x0e,0x53,0x00,0xeb, +0x47,0xe1,0xfd,0xef,0xa9,0xd2,0xc2,0x71,0x6b,0xf0,0x73,0x23, +0x34,0x0d,0xe2,0xce,0xe3,0x66,0x02,0x59,0x85,0xe0,0x79,0x1f, +0x96,0x02,0xeb,0xd4,0xcc,0xe3,0x1c,0x1c,0x8b,0x94,0xd8,0xa5, +0x07,0x52,0x72,0x1d,0xa2,0x9a,0x4f,0x6c,0x40,0x0b,0x65,0xc2, +0xa7,0x20,0x83,0xb5,0x9d,0xb8,0xf6,0x06,0xec,0xea,0x16,0x99, +0xcb,0xda,0xba,0xe2,0x74,0x3c,0xce,0x62,0xd1,0x41,0x5c,0x61, +0x84,0x1f,0xc9,0xbb,0x25,0x7c,0x9a,0x5d,0x48,0x55,0x57,0x0d, +0xc5,0x4e,0x30,0xdd,0xc5,0xc2,0x4f,0xd3,0xb0,0xe6,0x06,0xd4, +0x30,0x58,0x83,0xef,0x12,0xa8,0xd9,0x83,0x35,0x8c,0x90,0xb9, +0x88,0xa8,0x43,0x6c,0xe0,0xb1,0x1e,0x96,0x60,0x95,0xf0,0x1f, +0x8a,0xcc,0x8d,0x97,0xe0,0x77,0xe9,0xee,0xf3,0x9d,0x04,0xbd, +0xaf,0x82,0x37,0x33,0xac,0x43,0xae,0x42,0xa8,0x0e,0x8b,0x8d, +0x76,0x34,0x90,0x78,0xdf,0x66,0xa1,0x64,0x1a,0x84,0x6e,0xc7, +0x50,0x86,0x02,0xa2,0x31,0xf9,0x23,0xe7,0x65,0xc9,0x9d,0x1a, +0x8f,0x66,0x7e,0xa7,0xd7,0x67,0x07,0x3e,0x3d,0xc4,0x09,0xae, +0xc5,0xe4,0x59,0xc8,0xd3,0x83,0x8f,0x3c,0x4b,0x3a,0xf8,0xb5, +0x95,0x8b,0x4a,0x3f,0x4b,0x7d,0x13,0x9b,0x13,0xc8,0x03,0x6d, +0x29,0x8b,0xdc,0x39,0x16,0x2b,0xc3,0x50,0x61,0x84,0x9c,0xf4, +0x58,0xfa,0x75,0x50,0x64,0xd3,0x61,0x76,0x6b,0x80,0xb9,0xaa, +0xac,0x9f,0xc5,0xbf,0x51,0x87,0xe8,0x3f,0x36,0xfd,0x1c,0xe7, +0xd3,0x5f,0xfa,0x96,0xa3,0xf8,0x6a,0xa3,0x85,0x30,0xbb,0x57, +0x1f,0x5e,0x8d,0x32,0xaf,0x16,0x50,0xae,0xcd,0x3e,0x4b,0xfa, +0x3e,0xff,0x46,0xf1,0xfe,0x1e,0x7e,0x9b,0xef,0xe2,0x40,0xe4, +0x8e,0x72,0xa8,0xcd,0x62,0x78,0x98,0x74,0xcb,0x30,0x23,0xef, +0x74,0x18,0x85,0x89,0x85,0x30,0x29,0x0e,0xdc,0xa7,0xc3,0x07, +0xa2,0xcd,0xb0,0x60,0xf3,0xd3,0x20,0xa3,0x9e,0x9c,0x41,0xbe, +0x82,0xf9,0x6b,0x59,0x0a,0xc8,0xd3,0xfe,0xdb,0xb2,0x21,0x30, +0x7f,0x15,0xce,0x67,0xf0,0x03,0xcc,0x21,0x17,0x3b,0xbb,0xfa, +0x1a,0xaf,0xd8,0x55,0xf0,0x6e,0xfa,0x36,0xd6,0xa6,0xce,0x1c, +0xe4,0xc0,0x7b,0xa4,0xc6,0xad,0xcc,0xad,0xd4,0xbe,0xa5,0x9a, +0xf7,0xed,0xf0,0xae,0xf5,0xaa,0x7e,0x33,0x8a,0xf3,0xe4,0xde, +0xae,0x2d,0x74,0x14,0x09,0x2c,0x66,0x84,0xe1,0x32,0xe3,0xff, +0x8e,0x42,0x33,0x0b,0xb6,0x41,0x99,0x06,0x58,0xa8,0xca,0xe9, +0x28,0xfe,0xc0,0xb5,0x04,0xd7,0xdf,0x31,0xde,0x86,0xeb,0xac, +0x60,0xdd,0x26,0x5c,0x66,0x25,0xb0,0xdd,0xb8,0xfc,0x01,0xac, +0x67,0xa0,0xd4,0x8b,0xc0,0x42,0x43,0x5c,0x88,0x56,0xa6,0x60, +0x25,0x7a,0xe0,0x1c,0x36,0xd9,0x54,0x06,0xff,0x62,0x5a,0xb2, +0x32,0x9b,0x15,0x82,0xdb,0x57,0x83,0x2c,0xea,0xe3,0x9f,0x24, +0x74,0xd4,0xe3,0x89,0xdb,0x75,0xab,0x00,0xbe,0x56,0xb7,0xe6, +0xb3,0x5c,0x5d,0x4e,0x0c,0x91,0xce,0xd3,0x5b,0xc3,0xd7,0x60, +0xcd,0x62,0x21,0xce,0x27,0xaf,0xc1,0x63,0x2e,0x8b,0xb3,0x70, +0x0f,0x89,0x68,0x0c,0x6e,0x09,0xae,0xb6,0x08,0xe2,0x73,0x3c, +0xf3,0xec,0xd3,0xdc,0x38,0xb0,0x4c,0x23,0xe9,0xd5,0x29,0x8d, +0x49,0xd5,0x26,0xe9,0x7c,0xb4,0x53,0x84,0x75,0xa8,0xeb,0xca, +0xa8,0x45,0xd1,0xcb,0x62,0x12,0x4c,0x78,0x58,0x95,0x0a,0x9b, +0x73,0x60,0x42,0x6e,0xcc,0x20,0xbf,0x2f,0x66,0xef,0x71,0x97, +0x18,0x3a,0xac,0x8b,0xaa,0x72,0x32,0xa2,0x63,0x28,0x12,0xdc, +0xc7,0xe2,0x95,0x60,0xdc,0x20,0x0d,0xab,0xc7,0x56,0x76,0x15, +0x3e,0xc9,0x03,0x33,0xb8,0xaa,0x01,0x6b,0x54,0xd9,0xdd,0xec, +0x71,0x91,0xf6,0x40,0xd5,0x05,0x77,0x5a,0xf1,0x4e,0x3b,0xf4, +0xc2,0x31,0xf5,0x47,0x78,0x0c,0x6a,0xec,0xb0,0xdb,0x01,0xba, +0xad,0xf1,0xa1,0x1d,0xf8,0x32,0xa1,0xae,0x46,0x01,0xa8,0x88, +0xc9,0xb6,0xe3,0x61,0x61,0xc2,0x37,0x8d,0x85,0x37,0x38,0x98, +0xeb,0xce,0xd8,0x64,0x44,0x0c,0xc9,0xe9,0xe0,0x6b,0x53,0x53, +0x4b,0x14,0x25,0xac,0x55,0xaa,0x6c,0x1f,0x25,0x47,0xfe,0xc7, +0x13,0xf3,0x14,0x25,0x90,0xcc,0x8a,0xcb,0x81,0xaa,0xa5,0xa0, +0x7e,0x08,0x62,0x06,0xcd,0x49,0x3f,0xc4,0x9a,0xb3,0x62,0xbe, +0x13,0x81,0x20,0x53,0x0c,0x62,0xa0,0x66,0x90,0x40,0xac,0x29, +0xc6,0x32,0x27,0xc4,0x4d,0x04,0x9e,0x74,0xe2,0x93,0xa7,0xc6, +0xcb,0x70,0xc4,0x06,0x46,0xb6,0xe1,0xef,0x56,0xaa,0x5c,0xea, +0xfc,0x6f,0xe8,0x43,0x1e,0x19,0xdd,0xa5,0x2f,0x4e,0x41,0x1b, +0x16,0x1f,0x87,0xe3,0x7c,0x23,0x7c,0x5f,0xde,0x6b,0x41,0x71, +0x42,0x2b,0x13,0x36,0xc3,0xf7,0x1a,0x30,0x5b,0x95,0x3b,0xc0, +0xa6,0xe2,0x4b,0x62,0x96,0x63,0x97,0xbb,0x37,0xaf,0xa5,0xac, +0xb1,0xa9,0xaa,0xde,0xa9,0x92,0xf7,0x76,0x71,0x70,0xb6,0xf5, +0x0e,0x4e,0x0f,0x4d,0x0f,0x4f,0x6f,0x2a,0x69,0xac,0x2b,0xad, +0x74,0xae,0xe0,0x0f,0xf8,0xba,0xba,0xbb,0x06,0x04,0x95,0x84, +0x95,0x46,0x54,0x9a,0x45,0xf0,0x4d,0x2b,0xfa,0x76,0x00,0x43, +0x43,0x84,0x61,0x20,0xb3,0x25,0xd8,0xc5,0xc4,0x47,0x5e,0x63, +0x77,0xb9,0xb6,0xb4,0xf5,0xdc,0xe3,0xe9,0xaf,0x37,0x33,0xce, +0xf9,0x07,0x3b,0xe5,0x83,0x4c,0x65,0x6a,0x6a,0x85,0xa2,0x83, +0xb5,0x49,0x95,0x29,0x5d,0xd9,0xd0,0xa3,0xe7,0xb3,0x14,0xbf, +0xb2,0x75,0x21,0xcd,0xa1,0xdd,0xa1,0x9c,0xb8,0x47,0xaa,0x55, +0xa0,0x8b,0x1f,0xb0,0x0f,0x3a,0x3a,0x87,0x2a,0x6e,0x72,0x6d, +0x18,0x6e,0x05,0x9b,0xd8,0x10,0xf7,0xfd,0x5e,0x6e,0xbe,0xee, +0x15,0xa6,0x0d,0x16,0x25,0x3e,0xee,0x7c,0x4b,0x40,0xaf,0x47, +0xad,0xb7,0x53,0x80,0x45,0xd0,0x9e,0xe0,0x1c,0x0b,0xbe,0x24, +0xa9,0x28,0xa9,0x30,0x89,0x83,0x15,0x2b,0x29,0x08,0x9f,0x30, +0x3e,0x66,0x1c,0xb6,0x87,0xa3,0x0b,0xd2,0xe3,0xb8,0x63,0xcc, +0x3e,0xb9,0x5f,0x6c,0x58,0xb8,0xdb,0x0c,0x9c,0xc2,0xa4,0x98, +0x4b,0x5c,0x68,0xb0,0xac,0xa8,0x37,0x55,0x91,0xd2,0x15,0xd7, +0x7e,0xe6,0x1b,0x29,0xa3,0x64,0x7c,0xd9,0xb9,0xd2,0xb8,0x12, +0x4e,0xb8,0xe7,0x44,0xf0,0x77,0x4b,0xa8,0x66,0x0e,0x3a,0x78, +0xb8,0xd9,0x7b,0xb9,0x94,0x78,0x56,0xfa,0xd4,0x3b,0x7b,0xf3, +0x25,0xee,0x15,0x5e,0xb5,0x7e,0xf6,0x07,0x95,0x21,0xfa,0x87, +0x72,0x95,0xfc,0xad,0xcc,0x2b,0xc5,0x83,0xd5,0x83,0x9e,0x37, +0x0e,0x7c,0x1b,0x9a,0xd5,0xcd,0x6f,0xcb,0x34,0xce,0xb1,0x2e, +0x1a,0x68,0x69,0xee,0x2d,0x1a,0x7a,0x03,0xc2,0x19,0xe4,0xda, +0xce,0xdd,0x14,0x60,0x62,0x59,0xec,0x0b,0xc1,0x8f,0xcd,0x70, +0xa2,0xbc,0xdf,0x5a,0xf6,0x7f,0xd1,0xf6,0xd6,0xe1,0x59,0x5c, +0x5d,0xfb,0x28,0x94,0x66,0x66,0x0a,0x2d,0x2f,0x2d,0xdd,0x74, +0x92,0xf4,0x4d,0x70,0x28,0xee,0xc1,0x21,0x38,0x71,0x77,0xf7, +0x10,0x82,0x84,0x28,0x49,0x88,0x40,0x82,0x14,0xe2,0xee,0xee, +0xee,0xee,0x4a,0xb0,0xd0,0x02,0x85,0x22,0x2d,0xd4,0xa9,0x01, +0xa5,0x6b,0x1e,0xd6,0x3c,0xfd,0xce,0x9e,0x40,0xfb,0xbe,0xbf, +0xf3,0x9d,0x3f,0xce,0xf9,0xe3,0x5c,0xb9,0xae,0x64,0xf2,0xcc, +0x33,0xb3,0xf7,0x5e,0x7b,0xc9,0x7d,0x6f,0x5b,0xa3,0xa0,0x92, +0x0d,0xcb,0x61,0x4c,0x89,0xf2,0xdd,0xfc,0x3e,0x76,0x21,0x3a, +0x93,0xbb,0xdd,0x62,0x27,0x93,0x91,0x97,0x9e,0x9f,0x52,0x60, +0x9c,0xc9,0x3b,0xee,0xd4,0xd3,0xd8,0x61,0x59,0x6e,0xc1,0x97, +0x64,0x17,0xe5,0x16,0xe4,0x73,0x14,0x05,0x4d,0x36,0x85,0xc9, +0xb8,0x7c,0xa9,0xa9,0xcc,0xb3,0x7b,0x2d,0x2c,0x7f,0xd9,0x3d, +0x87,0x15,0x67,0xc2,0x02,0x82,0x0b,0xe6,0xc0,0x02,0x16,0xd6, +0xcc,0x82,0x49,0xb8,0x00,0x27,0x31,0xb0,0x6e,0x16,0x2c,0x00, +0x16,0x29,0xc9,0xfe,0xd2,0x94,0xe0,0xf2,0x39,0xb0,0x9c,0x85, +0x2c,0x5c,0x4e,0x70,0x12,0x2d,0x71,0x12,0xd3,0x4d,0x2f,0xe9, +0x05,0x8b,0xcb,0xd9,0x48,0x54,0x20,0xd5,0x16,0x0d,0x07,0x2a, +0x34,0xfa,0xf2,0xf9,0x43,0xa3,0x76,0xd7,0x5d,0x5a,0x38,0x51, +0x40,0x07,0x32,0xd4,0xd3,0x7a,0x23,0x7f,0xcc,0x38,0x8b,0x3f, +0xa1,0x6f,0xa3,0x65,0x60,0xc1,0x09,0x07,0x60,0x29,0xc9,0x37, +0xc9,0xd6,0x4a,0xd3,0x19,0x4c,0xe6,0x03,0x47,0xbd,0xc7,0x4e, +0x74,0x72,0xe8,0x1f,0x4a,0x52,0x4d,0x12,0x34,0xa3,0xb4,0x87, +0xe3,0xf8,0xc8,0xb1,0xd0,0xb1,0x60,0x09,0x35,0x5f,0xa6,0x2d, +0xbe,0xbe,0x6f,0xbf,0xf8,0x31,0x46,0xb0,0x98,0x17,0x8c,0x1b, +0x0d,0x28,0xe4,0xa3,0x2e,0xf5,0x8a,0xa4,0x4e,0x07,0x25,0x2c, +0xac,0x27,0x2b,0xa3,0x61,0x67,0x1b,0xaa,0x12,0xdc,0xca,0xc4, +0x65,0xc6,0x65,0xc6,0x66,0x99,0x26,0xf3,0x47,0x57,0x99,0x6d, +0xdb,0xa3,0x57,0xe6,0xc4,0xc7,0xc5,0xc6,0xc7,0xc6,0xc5,0x4d, +0xa4,0x99,0xd8,0xe7,0x8b,0x8c,0xf5,0x36,0x95,0x16,0xa7,0x8a, +0x81,0xec,0xeb,0xc9,0xdf,0x28,0x82,0x37,0x2e,0x41,0x8e,0x49, +0x31,0x51,0xf8,0x4d,0x3a,0x58,0x84,0x5a,0x7d,0xf4,0x4a,0xb6, +0xa0,0xb0,0xa8,0x3a,0xa3,0x9c,0xa3,0xf7,0x66,0x92,0x44,0x73, +0x85,0x71,0x66,0x20,0x2f,0xbb,0x35,0x51,0x35,0xa1,0x21,0xb6, +0xe7,0xd2,0x6d,0x0e,0x9f,0x9b,0xd3,0x36,0x07,0xef,0x75,0xb4, +0xde,0xe9,0x5a,0x65,0xc1,0x7f,0xdd,0xde,0x79,0x23,0xf5,0x11, +0x07,0x33,0x99,0x0b,0x47,0xa8,0x09,0x1f,0xe1,0x8e,0x47,0x86, +0x85,0x52,0x65,0x78,0x01,0xef,0x91,0x93,0x47,0x4e,0x1c,0x3e, +0x7a,0x94,0x16,0xcc,0xe4,0x15,0x65,0x97,0x64,0x96,0x73,0x25, +0x14,0x08,0x6c,0xfe,0xf3,0x3e,0xd3,0x35,0x9b,0xfc,0xf9,0x60, +0x36,0x0b,0x83,0xe8,0x48,0x60,0x12,0xa8,0x76,0xa2,0xea,0xf7, +0x06,0x2b,0x77,0xb2,0x71,0x79,0x31,0x05,0xd1,0xf9,0x16,0x89, +0x7c,0xc8,0xee,0xe3,0x1a,0xce,0x7a,0xad,0x3e,0x7c,0x66,0x41, +0x5a,0x49,0x4a,0x39,0xf7,0x3d,0x4e,0xc2,0x8d,0xe6,0xb0,0x11, +0xd5,0x07,0x40,0x1d,0x96,0x75,0x32,0xe2,0x63,0x58,0x47,0x50, +0x61,0x3d,0x1b,0x55,0x75,0xb1,0xe6,0x62,0x03,0x07,0xfc,0xac, +0x07,0xa8,0x20,0xed,0xbe,0x1e,0xa2,0xd6,0x37,0x76,0x50,0x93, +0x7a,0x10,0x2f,0x16,0x3b,0x03,0x70,0x83,0x11,0xa5,0x0e,0x14, +0xb1,0x5c,0x86,0x25,0xd9,0xa0,0x01,0x7d,0x4a,0xb0,0x53,0x96, +0xd5,0xc9,0xe2,0x73,0xda,0x55,0x4d,0xda,0x76,0xf8,0x95,0xa5, +0xec,0x68,0x3b,0xab,0xb5,0x92,0x88,0xcf,0x30,0x5b,0x78,0xc6, +0x18,0xc2,0x09,0x82,0xfb,0x29,0x7e,0xdf,0xcf,0x0a,0x4b,0x71, +0x3e,0x81,0x29,0xf8,0x25,0x4e,0x61,0xa1,0xf8,0x36,0x71,0xc1, +0x13,0x35,0xac,0x10,0x82,0x7f,0x90,0x76,0x84,0x1e,0xf6,0xb7, +0xe8,0x9f,0xe2,0x7e,0x4c,0x3a,0xd1,0xca,0xa3,0x86,0x0f,0x6a, +0x9c,0xc5,0xe8,0xf3,0xc9,0x96,0xfc,0xaf,0x17,0xbf,0xbf,0xf4, +0x4d,0x14,0x67,0x86,0x4f,0x2d,0xa1,0x97,0x35,0x34,0x9e,0xe3, +0x8a,0x6b,0x9c,0xb2,0x29,0x12,0xdd,0xd6,0x0c,0x4a,0x5d,0xe5, +0xf7,0xb8,0x38,0xd4,0x1e,0x04,0xed,0x38,0xa6,0x7c,0x07,0x28, +0x1a,0xc3,0x0e,0xdb,0x8c,0x2e,0x1e,0xd7,0x35,0xcc,0xaf,0x36, +0xea,0x9e,0x80,0x9b,0x8f,0xc9,0x01,0x2d,0xf1,0x1d,0x74,0x64, +0xf0,0x33,0x3f,0x54,0x3b,0x48,0x95,0xbb,0xcd,0x5a,0xe1,0x2e, +0xcc,0xcd,0x81,0x7d,0xf0,0x40,0x89,0xb2,0xd6,0x5f,0x69,0x94, +0xc8,0xc1,0xdd,0x94,0x3a,0xfa,0xe3,0x4a,0xed,0x85,0x2a,0x2d, +0xf6,0xd4,0xe7,0x4f,0xcd,0x87,0x9d,0x70,0x5c,0x09,0x08,0x18, +0x53,0x9f,0xb3,0xee,0xcc,0x25,0x47,0x58,0x13,0xa7,0x70,0x86, +0xb5,0xcf,0xf6,0xef,0x54,0xa1,0x16,0x57,0x93,0x9c,0x52,0xa4, +0x5a,0xcc,0x9a,0x27,0x2a,0xb8,0x62,0x1a,0x7b,0x3c,0x22,0x2a, +0x4b,0x35,0x8e,0x85,0xd0,0xc4,0xf3,0xf5,0x78,0x2a,0x4c,0xa1, +0x05,0xc6,0xd8,0x10,0xbf,0xc0,0x10,0x9f,0xc0,0x46,0x2f,0xbe, +0x38,0xb7,0xb0,0x3c,0xa5,0x90,0xab,0xc3,0x67,0xf5,0x50,0xdd, +0x88,0xd5,0x75,0x02,0xd3,0x2d,0xaa,0xb0,0xa8,0x25,0xfe,0x0f, +0x11,0x82,0x29,0x1f,0x08,0x66,0xc0,0x73,0x23,0x8d,0x29,0x4d, +0xd4,0x8b,0xb6,0xdb,0x91,0x26,0xd8,0x69,0xc7,0xe2,0x31,0x67, +0x62,0x85,0x5b,0xda,0x58,0xf0,0x98,0x05,0x3b,0xad,0x70,0x27, +0x83,0x4d,0x5b,0x08,0x12,0x6d,0x6b,0xd9,0xf2,0x56,0x2d,0x20, +0xac,0x38,0xdd,0x9e,0xac,0xc3,0x49,0x8f,0xa9,0x59,0x49,0xab, +0x32,0x26,0xaf,0x63,0x3b,0x67,0x51,0x96,0xbd,0x8e,0x42,0xcc, +0x56,0x59,0x16,0xb9,0x71,0x70,0x9f,0xf8,0xbe,0x94,0xb4,0xb3, +0x32,0x10,0xb7,0x48,0x16,0xdd,0x6d,0x4d,0x2d,0x7a,0x6e,0x1a, +0xd5,0xef,0x96,0x09,0x88,0xd9,0xcd,0xe2,0x7b,0xf2,0x33,0xd2, +0x4a,0xc7,0x49,0x9d,0xd4,0xec,0x3e,0x78,0xd9,0x39,0x07,0x3e, +0x80,0x19,0x9d,0xc8,0xb2,0xd9,0x55,0xa9,0xf5,0xc9,0x95,0x16, +0x49,0x7c,0x88,0xa3,0xbf,0xad,0x8f,0x2b,0xb7,0x92,0x49,0xaf, +0x4d,0xad,0x4d,0xae,0xb3,0x4c,0xe6,0x0f,0xcf,0xb5,0x9c,0xa7, +0xb5,0xad,0xcc,0x9a,0xaa,0x51,0x46,0x41,0x7a,0x21,0x27,0xc6, +0xf5,0x76,0x41,0x55,0x37,0x2b,0x9f,0x25,0x38,0x13,0xdf,0x4a, +0x9f,0x4a,0xff,0xbc,0x9c,0xbc,0xfc,0xea,0xcc,0x72,0xf3,0x74, +0x3e,0xc0,0xfd,0xa8,0xc3,0x11,0x8f,0x42,0xf7,0x02,0xd7,0x5c, +0xca,0x21,0xa7,0x83,0x07,0x09,0x70,0x3f,0xe2,0x78,0xc4,0x43, +0xca,0xde,0x9e,0xeb,0xd2,0x95,0xc1,0xfb,0x56,0x78,0x57,0xfa, +0x49,0xdf,0xaf,0xca,0x2a,0xe7,0x6e,0xa5,0x13,0x7f,0x77,0x4f, +0x07,0xcf,0xc3,0xc5,0xee,0x45,0xae,0x79,0x4e,0x9d,0x94,0x59, +0x56,0x78,0x57,0x48,0xaf,0x2b,0xac,0xca,0xae,0xe4,0xe0,0x6d, +0x6c,0x20,0xf0,0xc1,0xaf,0xf8,0x01,0x8b,0x97,0xa4,0xed,0xc0, +0xd8,0x8b,0x8b,0x58,0xb8,0xf0,0x8c,0x18,0xa0,0xc1,0x00,0x2b, +0xa8,0x4a,0xb3,0x0f,0x13,0xb7,0x45,0x6f,0xf4,0x20,0x9e,0xe1, +0xf1,0xa5,0xaa,0x23,0xd0,0x05,0xdb,0xf0,0x25,0x9e,0x66,0xf5, +0xf3,0xfd,0x86,0x55,0x20,0x92,0xa9,0x4e,0x4b,0xa9,0x54,0xbd, +0xc1,0x1a,0x27,0x2b,0x6c,0x65,0x51,0x1d,0xe6,0x91,0x65,0xf7, +0x7f,0x62,0x7a,0x36,0x93,0xfb,0x4f,0x37,0x53,0x7d,0xcc,0x25, +0xa8,0xbc,0x18,0x94,0xa9,0x04,0x5b,0x64,0x15,0xe4,0xf2,0x5e, +0x2d,0xca,0x96,0xf3,0x59,0x4c,0x09,0xc3,0xd5,0xba,0x48,0x24, +0x0f,0x71,0x15,0xe6,0x25,0xc3,0x1e,0x28,0x52,0x82,0x63,0xb2, +0x72,0x2a,0xc1,0x73,0x1b,0x89,0x11,0x1e,0xb0,0x84,0x83,0x5a, +0xb8,0x19,0x4d,0x04,0x25,0x30,0xc1,0xed,0x97,0xc1,0xb0,0x1d, +0x0d,0xfb,0x58,0x71,0xf0,0x04,0xb1,0xac,0xc7,0x66,0x36,0xe8, +0x42,0xe0,0xa7,0x41,0x17,0xa2,0xad,0xf9,0xbb,0x31,0xb7,0x63, +0x6f,0xc6,0x71,0xa2,0x4a,0xb7,0xcc,0xb6,0xba,0x9d,0x5d,0x6b, +0x49,0x34,0x71,0xd6,0x98,0x74,0xa6,0xd0,0xa4,0x37,0x57,0xdd, +0xf8,0x31,0x79,0x79,0x65,0x0e,0xdb,0x3a,0x4b,0xfa,0x0d,0xcc, +0x4b,0x32,0x67,0xff,0x4b,0x56,0xcc,0xdc,0x46,0x60,0x96,0x0e, +0xe3,0x70,0x56,0x5a,0x52,0xc1,0x81,0x8f,0x29,0x31,0x17,0x34, +0x3b,0x59,0xf9,0x47,0x68,0x43,0xee,0x34,0xef,0xb8,0xf9,0xa8, +0x19,0x6d,0x6d,0x6f,0xec,0x39,0x68,0x7b,0x75,0x2d,0x73,0xf8, +0xac,0xc7,0x39,0x8f,0xf3,0x71,0xd6,0xfc,0xfd,0xd8,0xbb,0xc9, +0x63,0xa9,0x17,0x9a,0xf8,0x63,0x91,0x47,0x23,0x8f,0x9c,0x95, +0xb6,0x4e,0x1a,0x92,0x3a,0xef,0x16,0xb7,0xb2,0xc3,0x25,0x15, +0xbc,0x67,0x99,0x45,0xad,0x73,0x36,0x97,0x82,0x31,0xc4,0x37, +0x32,0x36,0x53,0x15,0x56,0x98,0xe3,0x46,0xaa,0xdd,0x7e,0x6d, +0x2a,0xc0,0x31,0xb5,0x69,0x69,0x35,0xaa,0xb7,0x58,0xeb,0x14, +0x85,0x55,0x6c,0x15,0xac,0x21,0x65,0xa6,0xc5,0x07,0xd2,0x75, +0x9a,0x73,0xf8,0x93,0x83,0x47,0x6f,0x1c,0xee,0xe2,0xc4,0xb7, +0xd0,0x92,0x54,0x0f,0xe5,0x5e,0x4e,0x1e,0xb2,0x4b,0xe6,0x4f, +0x19,0xf8,0x19,0xb8,0x1a,0x51,0x63,0x1b,0x94,0xe5,0x92,0xf1, +0xbd,0x7b,0x29,0xb7,0xa1,0x58,0xa3,0x2f,0x04,0x37,0xea,0xe2, +0x0c,0x95,0x2e,0x73,0x2a,0x36,0xd5,0x14,0xca,0xa5,0x0b,0x94, +0xc0,0x4c,0x52,0xbc,0x68,0xdc,0x4c,0xd0,0xf2,0xb6,0xd1,0x4e, +0xd4,0x30,0x07,0x8d,0x5d,0xb8,0x05,0x03,0x84,0xf9,0x10,0x80, +0xfb,0x3e,0x07,0x4b,0x46,0x7e,0xf6,0x3b,0x62,0xde,0x2a,0x16, +0xb3,0x27,0xce,0x9d,0x38,0x77,0xfc,0x7c,0xbc,0x21,0xff,0x20, +0xe9,0x76,0xda,0x78,0x26,0x87,0x1f,0xf5,0xca,0xb6,0xd7,0x76, +0xb2,0x2b,0xcd,0x09,0x2a,0xce,0x06,0x45,0x16,0x6a,0xb0,0x9d, +0x80,0xe2,0x55,0x54,0x64,0xdb,0x67,0xbd,0xfe,0x0b,0x53,0x41, +0x91,0xde,0xdd,0x4b,0xef,0x8a,0x9f,0xf8,0xbe,0xf9,0x9e,0x30, +0x15,0xdd,0x49,0xad,0x77,0x93,0x73,0x89,0x7b,0x45,0x35,0x7f, +0xa4,0xd2,0xb6,0xc6,0x39,0x8f,0x13,0x97,0x44,0x92,0x3f,0x91, +0x67,0xdc,0xc3,0xdd,0x4e,0x3b,0x9f,0xe1,0x84,0x05,0x4b,0x88, +0x5f,0x44,0x6c,0x96,0x2a,0xa8,0x9b,0xa2,0x1e,0xeb,0x94,0xed, +0xdf,0xa4,0x02,0xef,0x30,0x55,0xe9,0xa9,0x55,0xaa,0x8f,0x58, +0xcb,0x54,0x85,0xc5,0x6c,0x1d,0xa8,0x93,0x2a,0x83,0x92,0xed, +0xa9,0x9a,0x6d,0xb9,0x7c,0xe0,0x98,0xc7,0xbd,0x43,0xbd,0x1c, +0x8a,0x78,0x8c,0x54,0x8c,0x16,0x7c,0x99,0x78,0x99,0x1a,0x47, +0xa8,0x8e,0xdf,0x6e,0x57,0xe9,0x74,0xcc,0x5b,0x29,0x34,0xe4, +0x2d,0xad,0x1b,0xdf,0xa7,0x7a,0xfd,0x59,0x1d,0x4c,0x4b,0x85, +0xf7,0xb8,0x7a,0x3c,0xc1,0x5e,0x1d,0xfb,0xe6,0xa7,0xc1,0x07, +0x5c,0x3b,0x8e,0x1b,0x42,0x38,0xab,0xb3,0x65,0xe5,0xb2,0x03, +0xfa,0x9c,0x31,0x7c,0xca,0x9e,0x5a,0xe8,0xb1,0xd4,0x78,0xa3, +0xed,0xf0,0xe1,0x2f,0x8e,0x7d,0x63,0xe0,0xcf,0x97,0x2e,0xae, +0x5d,0xdb,0xbb,0xc7,0xd1,0xdc,0xdc,0x56,0xc7,0xa5,0xda,0x88, +0x1f,0xad,0xeb,0x6a,0x6b,0xea,0xe5,0xb6,0xdf,0x83,0x49,0xd6, +0xb0,0x4a,0x59,0x78,0x9b,0x49,0xbd,0xac,0x30,0x5d,0xb6,0x45, +0xb6,0x9b,0xc0,0x62,0x5d,0x5c,0x8c,0x27,0xc5,0x5e,0x21,0x5f, +0xa0,0xd0,0xf4,0x6b,0x39,0x75,0x11,0x6a,0x73,0xdb,0xbf,0xdc, +0xa5,0xda,0xf5,0x73,0x29,0x30,0x29,0xf0,0x3e,0x2d,0xd8,0x94, +0xed,0x19,0x1d,0x7f,0xd2,0xf7,0x35,0x2d,0x38,0x8b,0x72,0x05, +0xd6,0x78,0xd3,0x9e,0xb5,0x46,0x52,0xc1,0xae,0x6c,0xe8,0x02, +0xef,0x55,0x4e,0xdb,0x9c,0x86,0x8e,0x8d,0x7b,0xdf,0x35,0x0a, +0xe0,0x0b,0x57,0x55,0x6e,0xe8,0xde,0xeb,0x6a,0x68,0x6d,0x69, +0xe8,0x58,0x65,0xcc,0x0f,0x34,0xb4,0x75,0xd5,0x0d,0x72,0x1b, +0xbf,0x04,0xd6,0x14,0xb6,0x29,0x0b,0x53,0x99,0xd4,0x11,0x05, +0xfc,0x49,0xd8,0x4f,0xa8,0xed,0x18,0x52,0xfa,0x3c,0x28,0xa5, +0x6b,0x34,0x84,0xbd,0x68,0xc8,0x62,0x88,0x19,0x41,0x27,0xfa, +0xb9,0x13,0x0b,0x81,0xb3,0xe8,0x47,0x4e,0xb8,0x97,0x99,0x2e, +0xf3,0x10,0xec,0x08,0xfc,0x75,0x80,0x42,0xff,0xcf,0x4a,0x59, +0xf8,0xea,0x00,0x7e,0xcd,0x1e,0xc1,0x63,0x5a,0xe0,0xc9,0x86, +0xa0,0xb1,0x21,0x32,0xb8,0x70,0x7e,0xab,0x29,0x0f,0x6a,0x30, +0x6d,0x18,0x14,0x93,0x81,0xe2,0xdb,0xdb,0xa2,0xd5,0x35,0xc1, +0x0a,0x8e,0x5e,0x66,0xa6,0x83,0x8f,0x10,0x4c,0xac,0xce,0x5b, +0x7e,0x6a,0x71,0x21,0x5a,0x97,0x87,0xb8,0x58,0x08,0x4c,0x03, +0xa7,0xfc,0xc2,0xa3,0x45,0x47,0x0a,0x0f,0xb7,0xd7,0xf2,0x3b, +0x1f,0xee,0xb8,0xb3,0xe1,0x0b,0x1b,0x37,0xbe,0xda,0xbd,0xea, +0x50,0x95,0x3b,0x7e,0x14,0x8c,0x2a,0x61,0xb8,0x2c,0xb2,0x6b, +0xa8,0xe3,0x46,0xfd,0x18,0x27,0x84,0xf6,0x8b,0xeb,0x7f,0xd4, +0x5c,0x2e,0x2e,0x30,0x84,0x71,0xc6,0xfe,0xa0,0xb9,0x86,0x9e, +0x26,0x27,0xf8,0xa3,0x17,0x81,0x19,0x5a,0x38,0x03,0x4b,0xf2, +0xd9,0x9f,0xb5,0x3e,0x61,0xbd,0x31,0x5e,0x1f,0x2e,0xb1,0x27, +0x17,0xe8,0x6a,0xe2,0x0a,0xed,0x0a,0x0a,0xa3,0x77,0xdf,0xba, +0xf1,0x30,0x13,0x3e,0x94,0x36,0xc5,0x94,0x5f,0x86,0x72,0x38, +0x3d,0x48,0xeb,0x32,0x19,0x6e,0x90,0x7b,0x23,0x25,0xdd,0xd1, +0xdf,0x70,0xdf,0xe2,0xa6,0x11,0xc1,0x47,0x07,0xff,0x8d,0x6b, +0xe1,0x1d,0x7d,0xdc,0x0a,0x9e,0xdb,0x31,0xd3,0x0c,0xa6,0x32, +0xe7,0xf6,0xfa,0xba,0xee,0x32,0x91,0x92,0xd1,0x1f,0x25,0xda, +0xb8,0x08,0x7d,0x0d,0xc0,0x17,0xb5,0xd0,0xd9,0x40,0x08,0x1b, +0x40,0x2f,0xd0,0x82,0xc8,0x01,0x8c,0x64,0xf6,0xe0,0x2b,0x69, +0x2f,0x7b,0x01,0x30,0x3a,0x54,0x00,0x17,0x0c,0xa4,0xd1,0xd9, +0x2d,0xda,0x06,0xf8,0xa1,0x5d,0xb9,0x11,0x0f,0x4b,0x7a,0xc6, +0xef,0x65,0x3c,0xe7,0xa0,0x04,0xfd,0x46,0xc1,0x0f,0xce,0x0e, +0xe0,0x59,0x6a,0x90,0xd3,0x65,0x17,0x85,0x17,0x24,0x6b,0x20, +0xf7,0x76,0xea,0x08,0x27,0xe6,0x31,0xd1,0x69,0x31,0xa9,0x51, +0x29,0x7a,0x51,0x7c,0x80,0xde,0x89,0x03,0x9e,0x7a,0x9c,0xd0, +0xcc,0x44,0x9e,0x8c,0x08,0x38,0x13,0xc0,0xc9,0xe7,0xd8,0xc8, +0x54,0x99,0x63,0x47,0x3c,0x3c,0x5d,0x3c,0x4f,0x25,0x9d,0x4a, +0x0c,0x4e,0xf2,0x38,0xcc,0x37,0x1e,0xaa,0xf2,0xac,0x3a,0x14, +0x14,0x16,0x1c,0x16,0x14,0xce,0x5d,0x38,0xe4,0x7e,0xc1,0x5d, +0x39,0xc6,0x6e,0xf4,0xe2,0xe0,0xa5,0xc1,0x28,0x45,0x7c,0xd7, +0xe6,0x20,0x5e,0x4c,0x67,0x3b,0xf5,0x2d,0xd9,0x00,0xcc,0xb7, +0x82,0x34,0xd6,0xdf,0xd2,0xd4,0x0d,0x67,0x1f,0xcd,0x35,0xa7, +0x3d,0x53,0x3e,0x36,0x94,0x33,0xce,0x41,0x02,0x2e,0x1f,0xa4, +0x90,0x2c,0xba,0x0d,0xa3,0xbb,0x1b,0xe0,0xdf,0x4c,0x7b,0x54, +0x47,0x74,0x57,0x6c,0x62,0x50,0x62,0x50,0x7c,0x70,0x5d,0x3e, +0x65,0x51,0x1e,0xcd,0x6e,0x75,0x2e,0xde,0x7c,0x6a,0x50,0xea, +0xc9,0xe4,0x93,0x86,0x11,0xfa,0x67,0x75,0xce,0x77,0x57,0x0d, +0xb6,0xf5,0x75,0xba,0x55,0xf0,0x4e,0xce,0xb6,0xce,0x16,0xae, +0xf6,0x75,0x7c,0x6d,0x49,0x45,0x79,0x49,0xc9,0xa1,0x62,0x1e, +0xa2,0x5b,0x18,0xb9,0xde,0x53,0x12,0x97,0x11,0x97,0x15,0x97, +0xc9,0x09,0x1e,0x4c,0x64,0x60,0xa4,0x7f,0xa4,0x3f,0xad,0xbe, +0x98,0x45,0x5e,0x0e,0xf6,0xb4,0x27,0x8f,0xd1,0xc0,0xbe,0xbd, +0x07,0xde,0x66,0x12,0xa2,0x2e,0xc6,0x45,0xaa,0xc0,0xcc,0xd5, +0x65,0xb5,0xf8,0xaf,0xc7,0xa1,0xf1,0xa7,0x3f,0x0d,0x0f,0x53, +0x0c,0x0d,0x51,0x88,0xa0,0xf1,0xb2,0x19,0xb7,0xc0,0x47,0x26, +0xf8,0x11,0x1a,0xd9,0x82,0x1a,0xe3,0x62,0x61,0x66,0xbf,0xda, +0x8a,0x13,0x94,0x61,0x8c,0xf8,0xb8,0x1f,0x3b,0x74,0xf8,0x48, +0xcd,0x51,0xbe,0xa2,0xa4,0xb0,0x32,0xaf,0x92,0x13,0xc9,0x05, +0x52,0x74,0xa4,0xc0,0x3d,0xcb,0xb3,0x21,0x9f,0x46,0x9e,0x13, +0x15,0xc7,0x8a,0x39,0xd9,0xc7,0x98,0x43,0x6a,0x8f,0xb5,0x3a, +0x14,0x79,0x54,0x97,0xf3,0x87,0xaa,0xed,0xab,0x9d,0x8a,0x38, +0x3c,0x1c,0x49,0x8e,0xb8,0xb9,0x79,0x5a,0x1e,0xab,0x70,0xe5, +0x5b,0x4b,0xea,0x2b,0x4a,0x6a,0xb8,0xff,0x4f,0xe2,0x7f,0x35, +0xfb,0xff,0xc7,0xb6,0x51,0x2f,0xae,0x4b,0x5e,0x37,0xc9,0xa9, +0x88,0x7f,0xdd,0x48,0x0e,0x57,0x5c,0x20,0xaf,0x9b,0xe4,0xe8, +0xc5,0xbf,0x6e,0x24,0x27,0xab,0x3f,0x4f,0x4c,0x8a,0x2d,0xaa, +0x5d,0x28,0x0a,0xde,0x6f,0x07,0x4b,0x98,0x0a,0xfb,0x66,0xf7, +0xcb,0xae,0xd2,0x09,0x57,0xca,0x24,0xc5,0x4e,0xe1,0x0a,0xd3, +0x53,0x9c,0xd2,0x93,0xa8,0x1a,0x57,0x75,0xa9,0x6d,0x50,0x09, +0xc7,0x98,0xd2,0xbc,0xa2,0xa2,0xec,0x32,0xb7,0x62,0xfe,0xa8, +0x83,0xbd,0xab,0xe9,0xe1,0x12,0x17,0x3e,0x3d,0x31,0x2d,0x29, +0x2d,0x89,0x73,0x7c,0xc2,0x06,0xe9,0xb9,0xd8,0xe1,0xb4,0x23, +0xd9,0xb6,0x3c,0xcc,0x2c,0xef,0x1f,0xc8,0xfe,0x9a,0x83,0x0f, +0x28,0x3c,0xbd,0xe8,0x19,0xe1,0xc5,0x1d,0x89,0x08,0x8e,0x38, +0xaa,0x8c,0xca,0xd6,0xe4,0x00,0x5e,0x62,0x2f,0xc6,0x7e,0x1a, +0x13,0xab,0x24,0xe9,0x92,0xbf,0xa4,0x4b,0xa9,0x6c,0x80,0x95, +0x89,0x2b,0xaa,0x1e,0x93,0x74,0x69,0x43,0xf9,0x95,0xc1,0x6c, +0xaa,0x4b,0x89,0xb8,0x6c,0x10,0x96,0x4d,0xe8,0xd2,0x35,0xaa, +0xd9,0xbf,0x24,0x13,0xdc,0x7e,0x0f,0x19,0xd0,0x72,0x81,0x0b, +0xc2,0xe2,0x34,0xfe,0xdc,0xa8,0xb8,0x3c,0x48,0xe1,0x5c,0xdd, +0xf9,0xba,0x06,0x25,0x98,0xb9,0x1f,0x3f,0x64,0x1d,0x2e,0x39, +0x46,0x39,0xa9,0x88,0x4b,0x82,0xa2,0xb4,0x85,0x95,0x69,0x75, +0xd4,0x76,0x3e,0x44,0x1b,0xd8,0xad,0xa6,0xd8,0x7e,0xbc,0x2f, +0x2e,0xf6,0x72,0x0e,0x58,0xf3,0x3a,0x79,0x0a,0x27,0x05,0x03, +0x62,0xdf,0xba,0xe9,0x9a,0x51,0xb9,0x83,0x35,0xdf,0xe3,0x76, +0x4f,0xa3,0xd1,0x82,0x9b,0x7e,0x5f,0x70,0x24,0xd7,0xeb,0x46, +0x3a,0xfb,0x86,0x9b,0x1c,0x1b,0x1c,0xea,0x1c,0xea,0x1a,0x78, +0xc7,0x46,0xbb,0x06,0xdb,0xfa,0xba,0x8e,0xea,0xbe,0xf2,0x51, +0xf3,0x22,0xde,0x53,0xef,0x90,0x99,0xab,0xb5,0x65,0x83,0x79, +0x1d,0x95,0x96,0x23,0xdf,0xe9,0xda,0xe9,0xd8,0x61,0x6f,0x66, +0x68,0x68,0x73,0xd0,0x89,0x93,0x7d,0x25,0x26,0x90,0xb5,0x7f, +0x38,0x41,0x60,0x24,0x44,0x73,0x60,0x3a,0x88,0xa6,0x60,0xa4, +0x87,0x46,0x58,0xa4,0x0f,0x45,0x4c,0x0c,0xc6,0xd6,0x63,0xea, +0x0b,0x54,0xa8,0x76,0xee,0x4d,0x8d,0xe9,0xce,0x03,0x5f,0xde, +0x38,0x4f,0x21,0x83,0x96,0x78,0xb4,0xcd,0xb9,0xcb,0xbd,0xda, +0xee,0x10,0x5f,0xe1,0x56,0x67,0x52,0x64,0xcd,0x89,0x7d,0xe2, +0x52,0x12,0x96,0x12,0x72,0xe9,0x54,0x68,0xd8,0x69,0x3e,0xf2, +0x01,0xcc,0xed,0xc5,0xb9,0x40,0xb1,0x0b,0xc1,0x9d,0xc6,0xb0, +0x81,0x09,0x5c,0x67,0xb0,0x7c,0xf6,0xca,0x0a,0x2b,0xfe,0xf7, +0xc7,0x4d,0x9f,0xc5,0x4a,0x98,0xf6,0xcb,0x01,0x68,0x63,0x62, +0xa3,0x2e,0x45,0x47,0xa8,0xfc,0x81,0x4b,0xea,0xeb,0x15,0x60, +0x1d,0x24,0x93,0x07,0x7d,0x18,0x60,0xf4,0x2d,0x5e,0x61,0xec, +0xc2,0x6d,0x4f,0xdb,0x47,0x24,0x1b,0xf0,0x2f,0x29,0xe1,0x2f, +0xbc,0x5f,0x78,0xba,0x97,0x77,0x09,0xb5,0x0f,0xb5,0x95,0x36, +0xe1,0x0f,0x01,0x90,0x70,0xcd,0x33,0x0e,0x21,0x2e,0x9c,0x75, +0x50,0xc0,0x49,0x4d,0x65,0xb4,0x65,0xa4,0xa4,0x77,0x86,0xcc, +0xf7,0xcd,0xc5,0xb7,0x72,0x54,0xd3,0xfb,0x93,0x46,0x62,0x60, +0x12,0x27,0xd7,0x62,0x52,0xea,0x93,0xba,0x12,0x5a,0x38,0xd9, +0x34,0x88,0x96,0x3b,0xe8,0xc9,0xe6,0xa0,0x92,0xfc,0x2d,0x26, +0x78,0x83,0xf7,0xf2,0xe3,0xea,0x9c,0xbe,0x38,0x9b,0xbc,0x9a, +0x3b,0xf2,0xd7,0x5c,0xca,0x01,0x4e,0x09,0x17,0x89,0x63,0xa6, +0x63,0x86,0x53,0x5a,0x77,0x5b,0x55,0x5f,0xce,0x15,0xae,0x01, +0x9d,0xd8,0x94,0xbc,0x94,0x82,0xe4,0x42,0xa3,0x24,0x3e,0xf8, +0x48,0xf0,0xd1,0x40,0x4a,0x4b,0xd6,0x98,0xc3,0x87,0x8c,0xb7, +0xeb,0x71,0x17,0x0f,0xc7,0x81,0x80,0x5e,0xbf,0x6e,0x3f,0x43, +0x8f,0x7d,0xc7,0x37,0x78,0xe7,0x99,0xf3,0xcf,0x4b,0x1e,0x54, +0x5d,0x6e,0x92,0x16,0x1e,0x37,0xfb,0x72,0xd0,0x07,0x93,0xc9, +0x78,0x4f,0xc7,0xe5,0x8a,0x2f,0xb8,0x26,0x51,0xc5,0x1c,0x1e, +0xb2,0xee,0xda,0x0e,0x56,0x06,0x8e,0xd6,0x4d,0xce,0xad,0x6e, +0x5d,0x96,0xc7,0xf9,0x6a,0xe3,0x5a,0xab,0x16,0x3b,0x5b,0x2f, +0x33,0x6f,0x6d,0xef,0x42,0x33,0xfe,0x7a,0xc1,0x60,0x51,0x47, +0x69,0xbf,0xcd,0x55,0x87,0xaf,0x5c,0x8a,0x3a,0xf8,0x1d,0xe5, +0xba,0xd5,0xe6,0x75,0x9c,0xf8,0xc5,0x10,0xc9,0xa1,0x34,0x28, +0xab,0x8c,0x83,0xbd,0x8c,0x8f,0x89,0xbb,0x8d,0x85,0x8b,0x65, +0xa6,0x4d,0x86,0x53,0x0a,0x35,0x6c,0x51,0x91,0x80,0xae,0x5c, +0xdb,0x58,0x36,0x7d,0x8b,0xf8,0x2b,0x1b,0xae,0x13,0xb8,0xdb, +0x47,0x97,0x93,0x6d,0x62,0xfc,0xce,0x1f,0x3f,0x73,0x5c,0xc5, +0x2d,0xdc,0xff,0x82,0x95,0x32,0x1a,0x30,0xd2,0xb2,0x1c,0x6d, +0xe6,0x8b,0xea,0xec,0x81,0x14,0xd5,0x84,0xfa,0xe8,0xee,0x2e, +0x25,0xf9,0x42,0x26,0xa1,0x8c,0x92,0xa6,0x22,0x6e,0xfa,0x2b, +0x1d,0xd8,0x4d,0xbc,0xce,0x1e,0x3b,0x77,0xf4,0x2c,0x27,0x8c, +0xdf,0x1b,0x10,0xfb,0x0c,0xbe,0x14,0x91,0x3d,0x72,0xee,0xe8, +0x05,0x0a,0x4c,0xf4,0x78,0x98,0x1a,0x0f,0xab,0xd2,0x41,0x85, +0x62,0x13,0xf5,0x51,0x38,0xc8,0x3e,0x4a,0x56,0x10,0x9f,0x4a, +0x6b,0x98,0x6a,0xb0,0x57,0x1f,0x22,0x70,0x1b,0x1e,0x62,0x23, +0x57,0x05,0x2f,0xf6,0x5b,0xc1,0x41,0x12,0xb3,0x35,0x42,0x2d, +0xcc,0x40,0xc5,0x22,0x3c,0x28,0xd8,0x56,0x62,0xf6,0xe9,0xda, +0x0a,0xf0,0x3e,0x73,0xa3,0xb4,0xf0,0x6e,0x8a,0x6a,0xf2,0xe7, +0x71,0x3f,0x5f,0x04,0xc2,0xe1,0x25,0x26,0xb1,0x2b,0xe9,0x4a, +0x54,0x37,0x27,0x5b,0x7b,0x8b,0x60,0x31,0xac,0x80,0x62,0x06, +0x9d,0xdf,0xc6,0x0d,0xf4,0x7a,0x03,0x8b,0x9e,0x6f,0x43,0x31, +0xae,0x64,0xd6,0x84,0x2e,0x0d,0x5b,0x7d,0x9a,0x9b,0x4e,0x89, +0xde,0x0f,0x24,0xbe,0x2b,0xe1,0xaa,0x94,0xa6,0x65,0x09,0x2d, +0xd5,0xcb,0x00,0xb6,0xe0,0x76,0x5c,0xcc,0x9c,0x5d,0x12,0xbe, +0x3c,0x70,0x25,0x07,0x9a,0xcc,0xc6,0x48,0xb5,0x30,0x5d,0x15, +0x9b,0x33,0xa7,0x42,0x9c,0x95,0x57,0x33,0x69,0x3a,0x0a,0x4f, +0x98,0x91,0xc2,0x82,0xcf,0x93,0x54,0x93,0x6e,0xc5,0xfe,0x2e, +0x95,0x39,0x0e,0xfa,0x04,0x5b,0xfc,0x51,0x49,0x13,0x55,0x54, +0xda,0xed,0xda,0xff,0xcc,0xff,0x25,0x09,0xe6,0x2a,0xc2,0x7c, +0xcc,0xc3,0xa9,0x4c,0xba,0x8e,0xc2,0x2f,0x4c,0x4b,0x5a,0x76, +0xa7,0xaa,0xac,0x10,0x2f,0xb2,0x70,0x07,0x29,0x48,0x6e,0x0e, +0xc6,0x59,0x06,0xa8,0xaa,0xd2,0x65,0xdf,0x00,0x93,0xb2,0x9f, +0x26,0xc0,0x1c,0x45,0x58,0x8e,0xd9,0x94,0x95,0x66,0x68,0x2b, +0x3c,0xfb,0xe7,0xeb,0xa9,0x2c,0xf5,0x5d,0xa7,0x08,0x7e,0x0c, +0x7b,0xe1,0x63,0x06,0x1e,0x4b,0x83,0x8e,0x8b,0x28,0x7a,0x5e, +0xc4,0x88,0x47,0xc4,0xe5,0xe4,0x52,0xf7,0xa5,0xc1,0xab,0x4a, +0xf0,0x31,0xee,0xa1,0x96,0x7f,0x9e,0xfe,0x7b,0x71,0xe8,0x9a, +0x12,0xc5,0xf5,0xfb,0x68,0xb0,0x45,0x59,0x28,0x11,0x5c,0xb1, +0x12,0x55,0x27,0x4e,0x38,0x99,0xc1,0x34,0xa5,0xe7,0x35,0xaa, +0x42,0xde,0x8d,0x1e,0xf1,0x07,0xf6,0x10,0xb6,0x48,0x22,0xce, +0xd5,0x07,0xd7,0x89,0xac,0x82,0x91,0x2b,0x42,0x96,0xf8,0x53, +0x11,0x07,0x30,0x17,0x36,0xd3,0xd6,0xea,0x73,0x56,0xa7,0x83, +0x4f,0xd9,0x2b,0xe3,0xdb,0x4c,0x1a,0x95,0xf1,0x5b,0xcc,0xd5, +0x92,0xc2,0x3b,0xc9,0x54,0xc6,0xb1,0xbf,0x4e,0xc8,0xf8,0x18, +0x95,0x71,0xc2,0x95,0x68,0x2a,0xb2,0x12,0xa0,0x48,0xc6,0x0a, +0x6a,0xc1,0x8a,0xc5,0x93,0xb8,0x8c,0xbc,0x84,0x7d,0x14,0x74, +0x6b,0xe0,0x11,0x82,0x0f,0x70,0x1d,0x9b,0x61,0xa8,0x00,0x73, +0x98,0x96,0xf4,0xbc,0x66,0x55,0xb8,0x29,0x95,0x6c,0xc2,0xf6, +0x68,0x10,0x4c,0xed,0xef,0x86,0x40,0x70,0x66,0x31,0x10,0xd7, +0x11,0x60,0x29,0xd4,0x61,0xd9,0xe9,0xf0,0x4c,0xd6,0x28,0xe5, +0x97,0x8f,0x07,0x5b,0x76,0x54,0xca,0x2f,0x9f,0x46,0x2f,0xe4, +0xef,0xbf,0xae,0x69,0xa8,0x01,0x1c,0xa0,0xdd,0xb2,0x8e,0x3d, +0xbb,0x2c,0x6c,0xe9,0x49,0xda,0x2d,0xe6,0xcc,0xa6,0xd7,0xdd, +0x72,0xfa,0xd4,0x29,0x27,0xe5,0x25,0x52,0xb7,0xfc,0xc4,0x8c, +0x16,0x15,0xdc,0x4a,0x96,0xba,0xe5,0xb7,0x89,0x6a,0xea,0x33, +0x52,0xcf,0x52,0x55,0x80,0x62,0xf8,0x58,0xca,0x52,0xbf,0x48, +0xca,0x52,0xbf,0x4d,0xca,0x52,0xbf,0x9c,0x5e,0xa1,0xab,0x98, +0x4f,0xee,0xc1,0x19,0xf8,0x5e,0x2c,0xc4,0xef,0x21,0x68,0x2b, +0xd6,0x1a,0x41,0xed,0xeb,0x3c,0xf4,0x2d,0x7d,0x2c,0x3e,0x93, +0xf2,0xd0,0xef,0xfa,0x01,0x76,0x31,0x03,0x2b,0xc8,0x0f,0xa0, +0xb1,0x82,0x15,0x57,0x53,0x86,0xb4,0x6b,0x09,0xee,0x62,0x20, +0xf0,0x67,0x02,0x1a,0x4b,0x50,0x83,0x99,0xfe,0xca,0x46,0xb8, +0x43,0xac,0x07,0xf5,0x47,0x6d,0xeb,0x1c,0x3d,0xf8,0x62,0xaf, +0x2a,0xf7,0x32,0x77,0x0e,0x3d,0x41,0x11,0xba,0x7b,0xe5,0xbc, +0x31,0xd4,0xa3,0x22,0x6a,0x31,0xa5,0x95,0x05,0x55,0x99,0xe5, +0x96,0x39,0xfc,0x21,0x43,0x73,0x3d,0x5d,0xdb,0x0a,0x5b,0x3e, +0x25,0x51,0x41,0x14,0xfb,0x64,0xff,0x02,0x5b,0xf1,0xaf,0x5e, +0xe1,0x2f,0x70,0x11,0x87,0x67,0x4b,0x6b,0xdc,0x1e,0x31,0xed, +0xe9,0x59,0x1d,0xaa,0x42,0x13,0x1b,0x7d,0x36,0x3a,0x32,0x2a, +0x92,0x93,0xcf,0x3f,0x44,0xe8,0x5b,0xfc,0x0c,0x60,0x07,0xaa, +0xe3,0x32,0xf6,0xec,0xd2,0xb0,0xa5,0x81,0xb4,0xb3,0xf4,0x99, +0x0b,0x6a,0x91,0xeb,0xc3,0x75,0x39,0xaa,0x9a,0xa7,0x1c,0x95, +0x57,0x4a,0x32,0xf8,0x96,0xca,0xa0,0xf0,0x56,0x92,0x6a,0xf2, +0xed,0x98,0x67,0x17,0x61,0x16,0x87,0x07,0xa9,0x0c,0xe2,0xaf, +0x49,0x32,0xf8,0x0c,0x4f,0x93,0xfc,0x82,0xbc,0xb2,0xdc,0x8a, +0x74,0xdf,0x34,0xdf,0x54,0xdf,0xb2,0x72,0x3e,0x28,0xf7,0x64, +0xbe,0x7f,0x7e,0x5e,0x7d,0x56,0x7d,0x4a,0x95,0x63,0x26,0x1f, +0xea,0x19,0x74,0xc8,0xff,0x90,0x5f,0x9e,0x7f,0x4e,0x40,0xa6, +0xa7,0x07,0x9f,0xed,0x9f,0x73,0x22,0xf7,0xb8,0xb7,0xdb,0xf1, +0x43,0xc7,0xbd,0x38,0x68,0x71,0xa7,0x4f,0xe7,0x97,0xe5,0x56, +0x66,0xf8,0xa4,0xfb,0xa4,0xfa,0x51,0xfe,0x13,0x9c,0x13,0x30, +0xf1,0x74,0x76,0x43,0x72,0x95,0x13,0x7d,0xfa,0x70,0xa0,0xbb, +0xff,0x21,0xdf,0x7c,0x9f,0xbc,0x80,0xcc,0x23,0x87,0xe9,0xd3, +0x79,0xc7,0xf3,0x8e,0x7a,0xbb,0x7b,0x1d,0x3a,0x7e,0x82,0xc3, +0xb7,0x03,0x48,0xa8,0x67,0xa0,0xbb,0xdf,0x21,0xff,0x3c,0xbf, +0x5c,0x7a,0x9f,0xbe,0xdd,0x2f,0xe7,0x44,0x8e,0x97,0xb7,0xeb, +0x31,0xfa,0xf6,0xf2,0x43,0x7c,0x41,0x61,0x41,0x59,0x5e,0x65, +0xa6,0x77,0x86,0x77,0x9a,0x4f,0x09,0xad,0x59,0x9e,0x7f,0xa1, +0x5f,0x61,0x5e,0x5d,0x36,0xad,0x19,0x07,0x31,0xa8,0x4b,0x68, +0x69,0x05,0xfe,0xf9,0xf9,0xf5,0x39,0x0d,0x29,0xd5,0xb4,0xb4, +0x10,0x5a,0x9a,0xaf,0xbb,0x5f,0xbe,0x6f,0xde,0x49,0xa9,0xae, +0x59,0xfe,0xb9,0x5e,0xb4,0x34,0xb7,0xe3,0x87,0x8f,0x7b,0x55, +0xb8,0xf3,0x13,0x35,0xad,0x78,0x5d,0x53,0xea,0xcd,0x3f,0x94, +0x05,0x93,0xca,0xa3,0x75,0xce,0x25,0x1e,0x01,0x41,0xfe,0xf4, +0x87,0x0b,0x08,0xb8,0xe0,0xaf,0x1c,0x6b,0xdb,0x74,0xb1,0xfe, +0x52,0x03,0x85,0x6f,0xe6,0x9d,0x60,0xcd,0x96,0x46,0x95,0x46, +0x97,0x45,0xc7,0x86,0xc4,0x86,0xc6,0x86,0xd6,0x65,0xf1,0xbe, +0x75,0x47,0x1b,0x8f,0x55,0xb8,0xfb,0xf1,0x49,0xa7,0x12,0x82, +0x13,0x83,0x1d,0x22,0x1c,0xcf,0xd9,0x9f,0xef,0xa8,0x69,0x6b, +0xe9,0x19,0xa0,0x01,0xfe,0xd8,0xe1,0x43,0x87,0xdc,0x3c,0x42, +0x52,0x4e,0x51,0xb0,0x56,0x59,0x52,0x5e,0x59,0x5a,0xe7,0x5c, +0xc0,0x7b,0xb9,0x79,0xba,0x1f,0xf2,0x0c,0x4e,0x39,0x95,0x14, +0x16,0x7f,0xf4,0x28,0x7f,0x09,0xab,0x6d,0xa1,0x9a,0x15,0xef, +0xe3,0x12,0xd2,0x74,0xb1,0xf1,0x52,0x53,0x14,0xf7,0x4f,0x49, +0x51,0xa5,0x31,0x69,0x87,0xf8,0xba,0xcc,0x80,0x7a,0xaf,0xe6, +0xe3,0x95,0x8a,0xee,0x01,0x14,0x06,0x06,0x26,0x04,0x2a,0xda, +0x47,0xda,0x9f,0xb3,0x3d,0xd7,0x56,0xdb,0xd2,0xd2,0xd5,0x4f, +0x8b,0xf1,0xf2,0xf4,0xf4,0x38,0xe4,0x11,0x9a,0x12,0x9c,0x1a, +0x9c,0x52,0x5e,0x52,0x5a,0x51,0x54,0xe7,0x92,0xcf,0x7b,0x1f, +0x3a,0xe2,0xee,0x39,0x51,0x4c,0x78,0x3c,0x05,0xa6,0xd5,0xb4, +0x61,0xa5,0x1e,0xfe,0x81,0xf4,0x27,0x88,0xf3,0xf7,0xa3,0x0d, +0x83,0x47,0xe0,0x47,0xec,0x21,0xb4,0x91,0xc5,0x30,0x5c,0x45, +0xaf,0xc2,0xe8,0xd5,0xbb,0x6f,0x37,0x62,0x98,0x3d,0x8b,0x6f, +0x1f,0x25,0xd9,0xf6,0x29,0x8e,0xe9,0x56,0x2d,0xa9,0x7c,0x50, +0x5b,0x40,0x93,0x7f,0x2d,0x27,0x94,0x04,0x90,0x7c,0xbb,0x0c, +0xfb,0x2c,0xab,0x96,0x4c,0xde,0xaf,0xd5,0xb7,0xd9,0xb7,0x8e, +0x93,0x67,0x5d,0x20,0x61,0x76,0x27,0xad,0xbc,0x1c,0x5b,0x4f, +0xf2,0x45,0xad,0xa9,0x2d,0x89,0xcd,0x9c,0x90,0x47,0x71,0x4f, +0x51,0x73,0x46,0x73,0x6a,0xb3,0x4d,0x32,0x1f,0x62,0xef,0x67, +0x73,0xc2,0x99,0x0b,0x72,0x95,0x96,0x06,0x9e,0x45,0x29,0x81, +0xd9,0x1f,0x94,0x83,0xcf,0x1b,0x63,0x85,0xdd,0xd8,0x4b,0x60, +0xad,0x3c,0xc2,0x4c,0x76,0xc0,0x40,0xbe,0x88,0x0d,0x33,0x0b, +0xd4,0xf4,0xb1,0xe0,0x64,0xbe,0x4c,0xe0,0x79,0x0a,0xe3,0x54, +0x3c,0xc3,0x4f,0x5e,0xb4,0x56,0xc6,0x70,0x26,0xcd,0x54,0x01, +0x82,0x99,0xdb,0x15,0x19,0xed,0x29,0xaa,0x71,0x65,0xd1,0x0d, +0xed,0x4a,0x72,0x7b,0x26,0x3e,0x3f,0x26,0x3d,0x5a,0xca,0x58, +0x91,0x25,0xe8,0x50,0xe7,0x70,0xbd,0xf9,0xbb,0x68,0x78,0x9b, +0x83,0x35,0x68,0x83,0x8a,0x4c,0x2a,0x7d,0x62,0x3a,0xd3,0x90, +0x29,0x1d,0xd1,0x6d,0x49,0x0d,0x4c,0xdc,0x76,0x5b,0x6b,0xa7, +0xb8,0xd4,0x18,0xae,0xb1,0xe7,0x56,0x1d,0xd9,0x37,0x5b,0x93, +0x0b,0xa4,0x14,0xdd,0xd5,0xd4,0xd2,0x5a,0xcd,0xb1,0xda,0x8a, +0xff,0xaa,0x65,0xb0,0xab,0xb2,0x97,0x13,0x6c,0xce,0x90,0xeb, +0x76,0xd7,0x4d,0x06,0x0d,0x1a,0x1a,0x78,0xdd,0x91,0x5d,0x3d, +0x9a,0x75,0xdc,0x63,0x51,0x93,0x80,0xbe,0xdc,0xc1,0x48,0x36, +0x6f,0x8b,0x7c,0x0a,0x1b,0xae,0xf5,0x3a,0xbc,0xe9,0x49,0x1b, +0xa4,0x68,0x7c,0xe3,0x68,0x7c,0x3b,0x6f,0xa9,0x8c,0x56,0x13, +0xe7,0x2d,0x99,0xd2,0xf8,0x96,0x35,0x98,0xa2,0x9a,0xd8,0x18, +0xdd,0xd9,0xa3,0x24,0xdf,0xc6,0x24,0x94,0xc7,0x16,0x4a,0xf1, +0x4d,0x66,0x56,0x4f,0xba,0x40,0xbf,0x07,0xa2,0x73,0x40,0x93, +0x13,0x03,0x98,0xa4,0xfe,0x84,0xbe,0xd8,0x2e,0xed,0x68,0xde, +0x0f,0x97,0x99,0x60,0x90,0x1e,0xee,0xe3,0x84,0x14,0x26,0x60, +0x8b,0xff,0x36,0xbf,0x7d,0x9c,0xf8,0x50,0xfb,0xd5,0x07,0xa3, +0x8c,0x7c,0x1b,0xd4,0x92,0xfc,0x2f,0x0a,0x7e,0xcf,0x79,0xc6, +0x09,0x5b,0x98,0xd0,0x2d,0x01,0x8b,0x7d,0x17,0xd2,0x58,0x79, +0x50,0x88,0x23,0xe8,0xce,0x94,0xde,0x2d,0x79,0x96,0xf9,0x80, +0x13,0xfd,0x99,0xcc,0xcb,0x3a,0x51,0x7e,0xdb,0x3c,0xd6,0xdb, +0xaf,0x51,0x14,0xa2,0x99,0xd3,0x5e,0x61,0xf4,0x87,0x93,0x4f, +0x32,0x85,0x97,0xcc,0x6e,0xcb,0xd9,0x56,0xb8,0xee,0x50,0x8e, +0x31,0x0f,0x4c,0xe1,0x2f,0x95,0xf7,0x5b,0x33,0x03,0xd2,0x4f, +0xa6,0xf9,0xaf,0x37,0xc2,0x7f,0x19,0xe0,0x5a,0xa7,0x3c,0x4a, +0x83,0x56,0x36,0xc0,0xac,0xe1,0x6f,0x2f,0xa7,0x7a,0x27,0x7b, +0x27,0x78,0xaf,0xd8,0x83,0xcb,0xb6,0xa1,0x8e,0x99,0x74,0x16, +0xaa,0xf1,0x20,0xfc,0x7b,0xfc,0xe9,0x2d,0x2e,0xc6,0x2b,0xea, +0xb8,0x97,0xd2,0x36,0x3f,0x9f,0xbd,0x2a,0x73,0x99,0x54,0x63, +0x85,0x5f,0x99,0xe7,0x75,0x75,0xd4,0x1d,0xb3,0xc6,0x30,0x65, +0xf1,0x53,0xd5,0xdc,0xb4,0x9c,0xf4,0xcc,0x0c,0x6e,0x88,0xe9, +0x46,0x87,0x5f,0x50,0x05,0x0e,0xe3,0xec,0xea,0x4e,0x7e,0xc9, +0xe5,0xbd,0x43,0x26,0x63,0xb7,0x5a,0xc6,0xba,0x06,0x7a,0xec, +0xeb,0x79,0x63,0xd3,0x03,0xa6,0x1a,0x8e,0x8e,0xc3,0x47,0xaf, +0xfa,0x7d,0xc1,0xc1,0x53,0x46,0xbe,0x06,0xf6,0x92,0xe4,0xa2, +0xa4,0x92,0xa4,0x32,0x4e,0xd8,0xc1,0x9c,0x39,0x76,0xfa,0x48, +0xf8,0x61,0x6e,0xfa,0x28,0x65,0xbc,0x63,0x31,0x63,0x31,0x97, +0x63,0xb9,0x9d,0x03,0xf7,0xd9,0xde,0xd8,0xee,0xd8,0xae,0xb8, +0x73,0x5d,0xbc,0x45,0x84,0x69,0xa4,0x49,0x24,0x77,0x1f,0xe6, +0x75,0xe2,0xbc,0x2f,0x60,0x7d,0x17,0xae,0x1f,0x35,0xd0,0xc6, +0x3d,0x66,0xb0,0x67,0x3b,0xaa,0x99,0x83,0xda,0x3a,0xf6,0x60, +0xc4,0x81,0xc8,0x83,0x67,0x39,0xd9,0x0e,0x64,0xc8,0x03,0xb0, +0xea,0x46,0xab,0x07,0xb0,0xbd,0x03,0xb7,0xdf,0x05,0x9d,0x2e, +0xd4,0x91,0xbe,0xbd,0xd3,0x0c,0x76,0x6e,0xc3,0x35,0x16,0xb0, +0x66,0x13,0x6a,0x9a,0x82,0xe6,0x26,0x16,0x36,0x4b,0x49,0x78, +0x96,0xca,0x6d,0x8d,0x64,0xaa,0x4b,0xe5,0x5e,0x86,0x32,0xaf, +0xd9,0xf2,0xa5,0x46,0xb2,0xa5,0xe6,0x63,0xe0,0x06,0x93,0xfb, +0xd9,0xe9,0xb2,0x0a,0xe1,0x19,0xc9,0xe9,0xcf,0xb9,0x99,0xdc, +0x47,0x41,0x10,0x13,0x93,0x4e,0x75,0x2e,0x5d,0xf7,0x12,0x7f, +0x52,0xf7,0x84,0x96,0x44,0x46,0x9e,0x4a,0x64,0xe4,0xe4,0x99, +0x40,0x4e,0xbe,0xd1,0xe6,0xd5,0x0c,0x4a,0x46,0xac,0x7f,0x20, +0x71,0x69,0xb1,0x69,0xb1,0xe9,0x9c,0x90,0xcd,0x9c,0x0d,0x3e, +0x1b,0x18,0x19,0xc8,0xc1,0x76,0xea,0x97,0xe4,0x7f,0xe0,0x47, +0x23,0x5f,0xcb,0x4e,0xae,0x1f,0x61,0x92,0xb1,0x9c,0xb4,0x89, +0x5b,0xda,0x61,0x1c,0xbc,0xe4,0x1b,0x29,0x5b,0xed,0xb5,0x14, +0x97,0x5a,0x09,0xd3,0x58,0x7d,0x4b,0x29,0x83,0x90,0xb3,0xa7, +0xb4,0x18,0xd0,0xbb,0x1a,0x16,0x34,0x16,0x7e,0x4e,0xe1,0xe9, +0xa6,0x41,0xd8,0x14,0xc7,0x14,0xee,0x82,0xf5,0xf6,0xe0,0xe3, +0x9a,0xd6,0xc9,0xe3,0xa1,0x32,0x9c,0x59,0xad,0xd3,0xce,0xad, +0xa6,0xf6,0x8b,0x11,0x1d,0x10,0xc1,0x0c,0x5a,0x90,0x0e,0x48, +0xb0,0x60,0xc5,0x6e,0x27,0x02,0x11,0xa6,0x18,0xc1,0x40,0x77, +0x37,0x81,0x04,0x53,0x4c,0xa0,0xb0,0xdf,0x49,0x46,0x21,0xce, +0x3c,0x9c,0x8a,0x96,0x1b,0xf1,0xa2,0x45,0xbe,0x16,0x0f,0x31, +0x1d,0x70,0xf4,0x29,0x8d,0x5f,0xef,0x72,0x79,0xb8,0x93,0xe0, +0x4a,0x5c,0x88,0x21,0x73,0x31,0xc7,0x22,0x57,0x83,0x87,0xdc, +0x1e,0x1a,0x5b,0xdf,0x82,0xd5,0xb0,0x82,0xcb,0x46,0x6b,0x8a, +0x9a,0x51,0x83,0x02,0x14,0x06,0xdb,0x4d,0xf2,0x35,0x79,0xe8, +0xeb,0x85,0x66,0xf8,0x10,0xb6,0x82,0x36,0x35,0xbd,0x78,0xd9, +0x6d,0xb2,0x02,0x5d,0x0c,0xc1,0x65,0x1e,0x9a,0x1b,0x09,0xe6, +0x7d,0x68,0xfa,0x02,0x5c,0xfa,0xd1,0xe5,0x07,0x56,0xa8,0x3b, +0x4f,0x76,0x2c,0x9e,0xbb,0x09,0x67,0xe8,0x55,0xea,0xf3,0xf0, +0xe1,0x28,0xb0,0x3f,0xde,0x7b,0xc6,0x1d,0xc1,0xe3,0x64,0xeb, +0x22,0x9c,0xba,0x18,0x67,0x69,0x56,0xea,0xf0,0x30,0xfb,0x36, +0x50,0x70,0xf5,0xe0,0x39,0x27,0xff,0x76,0x2d,0x41,0x1f,0x61, +0x31,0xf8,0xb0,0xf8,0x54,0x9a,0xba,0xe5,0xa0,0x1a,0x39,0x56, +0xf0,0xcd,0x27,0x6b,0xf0,0x5d,0x54,0xc1,0xe9,0xf8,0x89,0x7a, +0x2d,0x7d,0x62,0xc9,0x5d,0x58,0x04,0xb3,0x7e,0x84,0x8f,0x38, +0xf1,0x1e,0xfa,0x93,0xfc,0xd6,0xfc,0xa1,0x8c,0x36,0xdd,0x1c, +0x3e,0xc0,0xc0,0x6b,0xff,0x51,0x03,0x0a,0x50,0xc2,0xd4,0x22, +0x12,0x28,0x62,0x5c,0x94,0x04,0x86,0x79,0xa0,0x58,0x72,0xb6, +0x9f,0xb7,0x3f,0x6d,0x7d,0xda,0xf2,0x0c,0x87,0x73,0xd2,0x49, +0x50,0xdb,0x89,0x31,0xaf,0x66,0x23,0x1f,0xbe,0xd0,0x3a,0x5f, +0x3b,0xcd,0x86,0x5a,0xe6,0x0e,0xd9,0x35,0x42,0x45,0x33,0x0d, +0x0d,0xe7,0xa3,0xad,0x49,0x1e,0x6d,0xa2,0xc3,0x00,0x58,0xbc, +0x00,0x25,0xe0,0xb9,0x4a,0xdc,0x4e,0x28,0xb2,0x7a,0x1f,0x93, +0x71,0x0e,0xfa,0x1b,0xe4,0x6a,0xf1,0xcf,0x8a,0x5e,0x36,0xfe, +0xde,0xc9,0x89,0xeb,0x6f,0x08,0xe6,0xec,0xf3,0x81,0xef,0xaf, +0xdc,0xbc,0x46,0xe5,0x50,0x23,0x7b,0x48,0xf4,0xe6,0x6f,0xde, +0xb0,0xf8,0x60,0xb5,0x29,0xff,0xe2,0xb3,0xaf,0x9f,0x5e,0xa5, +0x98,0x5f,0x90,0xa1,0x05,0x19,0xc4,0x4a,0xe9,0x74,0x9d,0x75, +0x98,0xae,0x0f,0xeb,0x76,0xb3,0x98,0x71,0x14,0xd5,0x70,0x29, +0xce,0x57,0x69,0xb3,0x04,0x02,0xa4,0x1d,0xe6,0xa7,0x80,0xbd, +0x22,0x5c,0x60,0x50,0xf9,0xfc,0xba,0xb0,0xed,0x2a,0xdb,0xc3, +0x7c,0xbd,0xf7,0x2a,0xe3,0xe4,0x09,0x40,0xa5,0xc0,0x7c,0xdf, +0xd0,0xf9,0x38,0x51,0x35,0xf9,0x87,0xa8,0xef,0xc0,0x42,0x09, +0x87,0x27,0x56,0x6f,0x17,0x2b,0xdd,0x66,0x31,0xfd,0x34,0xd1, +0x9d,0xff,0x09,0xb2,0x73,0x76,0x57,0x18,0xf1,0x5d,0xd5,0xf5, +0x55,0x65,0x55,0x9c,0xa8,0x33,0x22,0xc4,0xb1,0x95,0x0d,0x15, +0xed,0xd4,0x97,0x4d,0x87,0x12,0xd9,0x13,0xa2,0x3f,0x7f,0xeb, +0x86,0xa5,0x07,0x68,0xa5,0x7e,0xff,0xfc,0xd1,0xd3,0x2b,0x52, +0xa5,0xa6,0x88,0x15,0x04,0xfc,0x06,0xd0,0x0f,0x82,0xe1,0xfc, +0x10,0x9e,0x07,0x27,0x2d,0x74,0xc2,0xf9,0x4c,0x5a,0x47,0x72, +0x67,0x42,0xa7,0x41,0x32,0xef,0x8d,0x1f,0x38,0x21,0xa3,0x35, +0xaf,0xc3,0x89,0x2f,0xef,0x29,0xe8,0xcd,0xee,0xe7,0x60,0x23, +0x06,0x63,0x90,0x01,0x04,0x51,0x31,0x74,0xea,0xc9,0x26,0x0f, +0x61,0x2a,0x23,0x2e,0x12,0x68,0x93,0xe7,0x2d,0x45,0x6e,0xfe, +0xae,0x0a,0x63,0xbe,0xb3,0xba,0xa6,0xba,0x8c,0x32,0x7f,0xc3, +0x11,0x21,0x95,0xad,0x68,0xac,0x68,0x2f,0xef,0xa1,0x35,0x68, +0xa4,0x62,0xd1,0x99,0xbf,0x71,0xc3,0xc2,0x83,0x55,0x26,0xfc, +0xcb,0xcf,0x9e,0x3c,0xbd,0x21,0xd5,0xa0,0xe2,0x34,0x11,0x1d, +0xe5,0x05,0x4b,0x0d,0x64,0xff,0x1a,0xd8,0xc1,0x68,0x0a,0xa5, +0x04,0x9f,0x80,0x09,0x3c,0x61,0xc4,0x18,0x9c,0x4d,0xb4,0xe7, +0x2d,0xa2,0xba,0x36,0x59,0x6a,0x56,0x4f,0x4d,0x43,0x55,0x39, +0x6d,0x96,0xee,0x88,0x10,0x4b,0x9b,0x55,0xd9,0x5e,0xd5,0xcb, +0xc1,0x7b,0xd2,0x42,0x00,0x73,0x78,0x82,0xe6,0xac,0xe1,0xdb, +0xe8,0x4d,0x1f,0xf5,0x9e,0x48,0xe0,0xfd,0x90,0x18,0x2f,0xd8, +0xa3,0xb6,0xe6,0x40,0x8d,0x19,0xff,0xe3,0xe7,0x5f,0xfc,0x3c, +0xf4,0x92,0x13,0x0e,0x4a,0x6b,0x19,0x34,0x20,0x01,0x35,0x60, +0x8a,0x1e,0x4e,0xc1,0x69,0xaf,0xff,0xec,0x32,0x80,0x5d,0xb8, +0x00,0xd5,0x98,0xc8,0x75,0xe1,0x1b,0x83,0x3e,0xe1,0x40,0x87, +0x09,0xc2,0x0f,0x2d,0x76,0xe2,0xcc,0x1d,0x95,0x66,0x3c,0xa8, +0x3c,0x1a,0xfe,0x2e,0x13,0x28,0x74,0x7c,0x1f,0x1f,0x0c,0x01, +0xa5,0x8f,0x7e,0x8c,0xf3,0x79,0xb3,0xc8,0xa3,0x2a,0x6e,0x67, +0x42,0xc2,0x1c,0x94,0x2d,0x99,0x64,0x3d,0x85,0x5a,0x66,0xbc, +0xa6,0x78,0x30,0x41,0x35,0xae,0xf1,0xd2,0x67,0x5d,0x4a,0x6d, +0x68,0xc3,0xea,0x81,0x40,0xe8,0x4b,0xa7,0x49,0x93,0x6f,0x7d, +0xb8,0x80,0xe0,0x0c,0x58,0x40,0xc1,0xb4,0xf8,0x93,0x2e,0x31, +0x59,0xb8,0x06,0xa7,0x2e,0xdb,0x4d,0xa5,0xd4,0x52,0x55,0x59, +0x55,0x4c,0xa5,0xa4,0x3d,0x24,0x24,0xb2,0x65,0x4d,0x65,0xed, +0x25,0xdd,0xdc,0x20,0xe6,0x91,0xf8,0xbe,0xd8,0x9e,0xe8,0x0e, +0x0e,0x26,0x2d,0x63,0x7c,0x3e,0xf5,0xbb,0xe0,0xa7,0x32,0x34, +0xeb,0x62,0xd6,0xa7,0xd9,0x39,0x4a,0x3f,0xc3,0x34,0x5c,0x4d, +0x9b,0x17,0x3b,0xd1,0xbc,0x5d,0x6a,0xab,0x0f,0x54,0x9b,0xf1, +0x4f,0x3f,0xbf,0xfb,0x74,0xf8,0x4f,0xae,0xed,0xaf,0x77,0xc9, +0xe8,0xb8,0x60,0xb0,0x77,0x54,0xf6,0x3f,0xe2,0x35,0x66,0xd4, +0x80,0x08,0x06,0xf2,0xfd,0xa2,0x01,0xf3,0x0d,0xfc,0x9b,0x40, +0xaa,0xb0,0x95,0xf6,0x12,0x86,0x9c,0x21,0xc6,0x0b,0x57,0xe3, +0xd4,0x25,0x52,0xf1,0xad,0x55,0x55,0xaf,0x8b,0x1f,0x16,0x92, +0xd8,0xf2,0xc6,0xb2,0x8e,0x92,0x4e,0x0e,0x4e,0xe3,0xb7,0x04, +0x6e,0x52,0xc8,0x7b,0x93,0x96,0x93,0x4e,0xcb,0x31,0xa2,0xe5, +0xac,0x92,0x54,0xe6,0xe7,0x5b,0xf7,0x9e,0x0e,0x53,0x31,0xea, +0xcb,0x17,0x93,0x2b,0x0d,0x57,0x07,0x1b,0xda,0x1d,0x9a,0x79, +0x47,0x4b,0x5d,0x03,0x6d,0x47,0xb7,0x01,0x9f,0xd1,0xa0,0x9b, +0x1c,0x84,0x09,0x6b,0xc4,0x58,0x79,0x13,0x73,0x38,0xe2,0x48, +0xa4,0xd7,0xd9,0x14,0x6a,0xe7,0x0a,0x59,0xb0,0xa9,0x06,0x26, +0x55,0x84,0xf7,0xf1,0x07,0xfc,0x57,0xf9,0xa8,0x9d,0xe4,0x84, +0x69,0xb0,0x90,0xad,0x43,0x83,0xaf,0x70,0x1e,0x38,0xe3,0x87, +0x15,0x3d,0xfc,0xba,0x5e,0x8d,0x3e,0xcb,0xcb,0xdc,0x67,0xc2, +0xf7,0x04,0xdf,0x15,0x3f,0x84,0x77,0x59,0x0a,0xd9,0xe7,0xd0, +0x06,0xae,0xc2,0x77,0x3e,0x79,0x5d,0xd1,0xea,0xbf,0x2b,0x9a, +0x40,0x2b,0x5a,0xde,0x41,0xe5,0x24,0x9c,0x8f,0xa0,0xa6,0x48, +0xbf,0xfd,0x11,0xad,0xe7,0xa7,0xb4,0x9e,0x26,0x0b,0xf6,0xbe, +0xe9,0xee,0x5b,0x77,0x9e,0x0e,0xbe,0xe4,0x52,0x4f,0x11,0x49, +0xa3,0x58,0xf1,0xec,0x06,0xe2,0xa3,0x6f,0xb7,0xcd,0xf4,0x60, +0x9b,0x66,0xf3,0x86,0xb2,0xdd,0xbd,0xf9,0xfc,0xd1,0x6b,0x56, +0x5f,0x1d,0x6a,0xae,0x6e,0x69,0xbd,0x9b,0x37,0xc2,0x81,0x4a, +0x16,0xf1,0xd2,0xb1,0xdf,0x61,0x7a,0xb0,0x5d,0xb3,0x55,0xad, +0x64,0x6f,0x7f,0x21,0xef,0x79,0xcd,0xe6,0xbe,0x4b,0x53,0x43, +0x47,0xfd,0xcd,0xa2,0x31,0x0e,0x66,0x67,0x10,0x6f,0x43,0x8b, +0x4d,0xd6,0x3a,0xdd,0xfb,0x5b,0x36,0x97,0xee,0xef,0x2d,0xe5, +0xdd,0xc7,0xad,0xee,0xb8,0x37,0x54,0x37,0xb7,0xde,0x2e,0x18, +0xe0,0xe4,0xd3,0x36,0xbe,0xee,0xd2,0xe5,0x52,0x55,0xeb,0xcb, +0xcb,0x4a,0x0b,0xcb,0x38,0x71,0xd7,0xb0,0x70,0x81,0xad,0x6a, +0xad,0xe8,0x29,0xeb,0xe3,0xe0,0x27,0xf1,0x1d,0x02,0x45,0x03, +0xe2,0x73,0x03,0xc8,0x45,0x43,0x1c,0xd7,0x97,0xad,0x1f,0xc4, +0x56,0x4a,0xb6,0x2e,0xfe,0x3f,0xa8,0x29,0xd8,0xad,0x22,0x29, +0x95,0x89,0x95,0x71,0x15,0x7a,0x49,0xbc,0x17,0x2a,0x68,0xe3, +0xb4,0xb5,0xcb,0x9b,0xcc,0xf8,0xac,0xec,0x8c,0xdc,0x8c,0x5c, +0x4e,0xf4,0x1a,0xb9,0x03,0xb9,0x82,0x06,0x0e,0xb2,0xb9,0x95, +0xd9,0xd5,0x19,0x35,0x9c,0xf0,0x8e,0x1a,0x83,0xd3,0x23,0xd0, +0x3b,0x00,0xa7,0xab,0x6c,0x0b,0x3d,0x66,0xbf,0x47,0x99,0xf2, +0xd0,0x0c,0x3d,0x05,0x98,0xc7,0xc0,0xe4,0xca,0x21,0x78,0x37, +0x43,0x35,0x03,0xde,0x8b,0x05,0x2f,0xf8,0x40,0x09,0xe6,0xb0, +0xf2,0xd9,0xc8,0xfd,0x97,0x12,0xd6,0x95,0xd1,0x1a,0x97,0x72, +0xe2,0xce,0x21,0xe1,0x2c,0xad,0x71,0x55,0x6f,0xf9,0x00,0x07, +0xcf,0xd1,0x95,0xa0,0xb3,0x74,0x8e,0x11,0x25,0xc1,0x34,0x5a, +0xd1,0x9e,0x9a,0x87,0xce,0x8c,0x94,0x0e,0xec,0x21,0x31,0x5c, +0xa0,0xbe,0x61,0x95,0xe4,0xd9,0x7e,0xfe,0xfc,0xcb,0x9f,0x47, +0x5e,0x72,0x5d,0xe2,0x74,0xd2,0xdd,0x53,0xd7,0x53,0xd0,0x15, +0x15,0x13,0xfd,0x69,0x4c,0x24,0xbc,0x83,0x4a,0x7c,0x6d,0x6d, +0xad,0x53,0x6b,0x6b,0x49,0x43,0x5e,0x9b,0xe2,0xa5,0x98,0x98, +0x8b,0x31,0x11,0xf0,0x01,0x2e,0xe4,0x9b,0x9a,0xf0,0x3d,0x50, +0x0d,0x4d,0x0e,0x3d,0x1f,0x1e,0xae,0x18,0x12,0x1a,0x19,0xa5, +0x90,0xd1,0x1c,0xdb,0xf1,0x99,0x52,0x8b,0x8e,0x0d,0x8b,0x53, +0x4e,0x1d,0x5c,0x32,0x5f,0x65,0x0e,0xbc,0x4b,0xef,0x5f,0x0c, +0x09,0x55,0x0c,0x0d,0xa3,0xf7,0xb3,0xda,0x63,0x3b,0xaf,0x29, +0xb5,0xe8,0xd2,0xfb,0x53,0x7d,0x0f,0xa2,0x02,0x4e,0x53,0xb1, +0x86,0xf7,0xa9,0x56,0xae,0x94,0x94,0xa3,0xf2,0xb5,0x16,0x97, +0xfc,0xb7,0x72,0x94,0x52,0xd2,0xf2,0x27,0x3e,0x27,0x10,0xd5, +0x8f,0x51,0xb0,0x4a,0x47,0xdc,0xc5,0xa0,0x42,0xa2,0xcd,0x55, +0x50,0x51,0x82,0x79,0xda,0x38,0x97,0x45,0xe5,0x23,0x56,0xc8, +0x1d,0x54,0x29,0x33,0x86,0x49,0x97,0x8b,0x7a,0x62,0x1f,0x2a, +0xc6,0x31,0xab,0x12,0xdb,0xb6,0xc0,0x3a,0x65,0x18,0x62,0x92, +0x06,0x14,0xb0,0x9e,0xb6,0xd4,0x8f,0xb6,0xd4,0x72,0xa1,0xa6, +0xda,0xe6,0x03,0x35,0xe6,0xfc,0xe3,0x5b,0xe3,0x3f,0x77,0xff, +0xc1,0x09,0x2b,0xe5,0x0d,0x24,0x04,0x6c,0x21,0xa2,0x17,0x23, +0x60,0x27,0x94,0xf4,0x61,0x09,0xcc,0x9f,0xd8,0x0b,0x22,0x1d, +0xb6,0xf7,0x04,0x17,0x42,0x91,0x2e,0x16,0xe1,0x07,0x46,0xf0, +0x95,0xb8,0x89,0x59,0x5c,0x68,0xf1,0x08,0xb6,0x28,0x8d,0x6a, +0xeb,0xb0,0xa8,0x69,0xbe,0x03,0x27,0x99,0xa8,0x94,0xea,0xff, +0xd9,0xd7,0x70,0x35,0x1e,0xde,0x91,0x32,0x84,0x4e,0x4d,0xbc, +0xba,0x0c,0xb6,0x28,0x43,0x1e,0x93,0x34,0xa4,0x20,0x77,0x15, +0xbe,0x21,0x56,0x8b,0x36,0xe1,0xb4,0x75,0xbb,0x2a,0x4d,0xf8, +0xba,0x4a,0x4a,0xfd,0x2a,0x38,0x51,0x73,0x48,0x48,0x61,0x4b, +0x9a,0x8a,0x3b,0x0a,0x3a,0xb9,0xbf,0x15,0x7d,0x42,0x61,0xcc, +0xa9,0xc2,0xdc,0x79,0x4a,0x15,0x26,0x1d,0x67,0x10,0x7d,0x38, +0x48,0x63,0xca,0x5e,0x03,0xd8,0xbb,0x8d,0xf5,0xff,0xd4,0xff, +0xfc,0x49,0x95,0x83,0x27,0x36,0xf8,0xed,0x0f,0x4d,0xd1,0xe3, +0xaf,0xa4,0x7c,0x9e,0x39,0x9a,0xe7,0x8f,0x9c,0xb1,0x26,0x2a, +0xec,0xad,0xb4,0xa4,0x00,0xef,0x3b,0xea,0xf9,0xe1,0xb0,0x92, +0x70,0x46,0x17,0xa9,0x7b,0x3a,0x27,0x1e,0x26,0xa0,0x05,0x16, +0x03,0x68,0x01,0xea,0xe0,0x36,0x88,0x6e,0xb0,0x40,0xf7,0xaf, +0xb9,0xc3,0x10,0x0a,0x1e,0x03,0xac,0xfc,0x80,0xa0,0xf8,0x46, +0x5b,0x76,0x55,0x98,0xf2,0x35,0x25,0xa5,0x25,0x05,0xc5,0x9c, +0xb8,0x75,0x50,0x08,0x67,0x6b,0xda,0xaa,0xfb,0x2b,0x86,0x68, +0xcc,0x54,0x96,0x2d,0x21,0x30,0xd0,0x8f,0x03,0xf0,0x81,0x2e, +0x7e,0x80,0xb5,0x86,0x94,0x0f,0xc7,0x33,0xa8,0x8a,0x33,0xf1, +0x63,0x34,0x43,0x4e,0xa5,0xd2,0x94,0xbe,0x7a,0xd2,0xef,0xbf, +0x53,0x20,0xa1,0x18,0x87,0xe2,0x30,0x88,0x71,0x4c,0x3c,0x4e, +0x7e,0x3a,0x0f,0xd4,0xe7,0x54,0x75,0xf3,0xb4,0xe4,0xa9,0x54, +0x31,0x14,0x61,0xb6,0x92,0xb8,0x85,0x42,0x3e,0xcb,0x85,0x5a, +0x1b,0xb7,0xec,0xaf,0x35,0xe7,0xbf,0xbe,0x7d,0xfd,0xe7,0xee, +0x17,0x9c,0x33,0x3a,0x11,0x9b,0xc5,0x9b,0xf0,0xdd,0x0d,0x92, +0x68,0xaa,0xcb,0x8b,0xcb,0xf3,0xa9,0x8d,0xed,0x1d,0x14,0xe2, +0xd9,0xb2,0x96,0x92,0xae,0xc2,0x2e,0xee,0xbb,0x02,0xe2,0xcc, +0xe2,0x5b,0xbe,0x3b,0x36,0xaf,0x56,0x69,0xb1,0x6d,0xeb,0x2b, +0xed,0x4f,0xed,0x50,0x8c,0x8a,0x8b,0xba,0x18,0x15,0x71,0x0b, +0xe7,0xf0,0x6d,0x55,0x7b,0x40,0x29,0x3c,0x3d,0x24,0x2a,0x38, +0x4c,0x31,0x3c,0xe2,0x6c,0x94,0x42,0x62,0x4d,0x74,0x43,0xb7, +0x52,0x39,0x0b,0x3f,0xce,0x72,0x61,0x67,0xfb,0x1f,0xd8,0xbe, +0x52,0xa5,0xc5,0xba,0x7d,0x28,0xb7,0x23,0xbd,0x45,0x7a,0xec, +0xd3,0xa8,0x88,0xaf,0x70,0x3d,0x7d,0x6c,0x13,0xac,0xa0,0x8f, +0x5d,0x0a,0x0c,0x51,0x3c,0x3d,0xf1,0x58,0x6d,0x74,0xa3,0xf4, +0xd8,0x74,0xd9,0x74,0x59,0x0c,0x49,0xc8,0x4b,0xc8,0x8f,0x2d, +0xd0,0x4a,0xe4,0x23,0xbd,0xc2,0x8e,0x84,0x1c,0xe5,0xd0,0x1d, +0x7f,0x15,0x6a,0xe0,0x57,0x46,0xae,0x72,0x97,0xda,0xf5,0x6e, +0xea,0x9f,0xa9,0x5d,0xff,0x44,0xed,0x9a,0xfa,0x4d,0x6a,0x15, +0x26,0xe4,0x5b,0x41,0x6d,0x35,0x2b,0x8e,0x9f,0xa2,0x12,0xa5, +0x5e,0x78,0xa9,0x64,0x7f,0x8d,0x15,0x15,0xe5,0x45,0xe5,0x9c, +0xb8,0x6f,0x48,0xb8,0xc4,0x56,0x36,0x57,0x74,0x97,0xf5,0x72, +0xbf,0xe3,0x24,0xf2,0x93,0xa0,0xb6,0x4c,0x3a,0x34,0xe7,0x4f, +0x02,0xd1,0xbd,0x18,0x0d,0x93,0xa1,0xb8,0x4f,0xfc,0xc3,0x08, +0xf2,0x71,0x32,0x46,0x18,0x43,0x04,0x35,0x85,0x5a,0x43,0xd9, +0xbf,0xfb,0xb1,0x8f,0x99,0xfe,0x4a,0x17,0x1c,0x48,0x2f,0xd6, +0xc3,0x47,0x90,0xd4,0x23,0xbe,0xc7,0xc6,0x24,0xc4,0x26,0x44, +0x27,0xc0,0xda,0xab,0x30,0xed,0xf1,0xb5,0xdf,0xb9,0x7a,0xec, +0x62,0x73,0x33,0xb3,0xb2,0x53,0xb3,0x8c,0x72,0x79,0x8d,0x5d, +0xb3,0x75,0x71,0xa6,0x4b,0x9e,0x25,0x7f,0x3d,0xfb,0xb3,0xb2, +0xd1,0x1a,0x0e,0x5a,0x19,0x67,0x1b,0x53,0x5b,0x0d,0x27,0xf7, +0x5a,0xa7,0xda,0xc3,0x79,0x4e,0x9e,0x7c,0xa1,0x4f,0xad,0x63, +0x89,0xdb,0x89,0x53,0xc7,0x42,0x8e,0x86,0xb8,0x37,0xba,0x56, +0x1e,0x2e,0xb2,0xf3,0xe4,0x0b,0x7c,0xab,0x9c,0x4b,0xdc,0x0c, +0xfd,0xb4,0x4f,0xee,0x0b,0xca,0x31,0xe5,0xfb,0x53,0x7a,0xd2, +0x3a,0x32,0xdc,0x2c,0x4c,0x2d,0x2c,0x5d,0x1b,0x9d,0xf9,0xa6, +0x8a,0xa6,0xa6,0xea,0x56,0xee,0x47,0x8a,0x8e,0x1a,0x8d,0xa1, +0x11,0xf7,0xa0,0x1e,0x7c,0xa4,0x8b,0xa1,0xc3,0x9d,0x82,0x86, +0x39,0x55,0x25,0x5d,0x7a,0x43,0x0f,0xf6,0x30,0xe2,0x6a,0xd9, +0x8c,0x09,0x97,0xf7,0x8f,0x68,0xa8,0x06,0xbb,0xa0,0xe3,0x6b, +0x81,0x4c,0x38,0xa4,0x86,0xf2,0xf2,0x09,0x81,0xec,0x1d,0xfe, +0x8f,0x40,0xa4,0xbd,0xb9,0x8f,0x88,0xed,0x42,0xc3,0x8d,0xea, +0xfb,0xeb,0xcc,0xf9,0x7b,0x77,0x46,0x7f,0x6e,0x7b,0xce,0xc9, +0xcc,0xe4,0x0f,0x88,0xc6,0x35,0xab,0x11,0xd7,0x2b,0x57,0xe0, +0xc3,0x02,0x98,0x13,0x07,0x07,0xb8,0xc6,0x41,0x3c,0xca,0xa4, +0xf7,0xa4,0xf4,0xc4,0xb7,0x1b,0xc6,0xf1,0x3e,0xf8,0x9e,0x2b, +0x7e,0xbc,0x1d,0xdf,0xe7,0xa0,0x1f,0x15,0xd9,0xf8,0xdc,0xc4, +0xf2,0x98,0x6c,0xa3,0x78,0x3e,0xc2,0x33,0xdc,0x33,0xdc,0x87, +0x9b,0x8f,0x23,0xc0,0xae,0xc2,0x75,0x26,0x3f,0x58,0x33,0xf8, +0xa1,0xfb,0xda,0xcd,0xbb,0x54,0xaa,0xad,0x6e,0xdd,0xa8,0xbb, +0x97,0xf6,0x54,0x91,0xba,0x4f,0xa3,0xf3,0x76,0x67,0xdd,0x55, +0x0e,0x45,0x86,0x84,0xba,0x2b,0x6f,0x63,0x52,0x8c,0x15,0x6e, +0x31,0xc3,0x25,0xf9,0x03,0x71,0xaa,0x71,0x2d,0x97,0x7a,0x9e, +0x2b,0xa1,0x29,0x73,0x31,0xe5,0xd3,0x94,0x54,0xa5,0x56,0x08, +0xeb,0xc1,0xad,0xdf,0xc1,0x3b,0x6c,0x58,0x50,0x83,0x43,0x4e, +0x69,0x4e,0x6d,0x56,0xa3,0x62,0x32,0x92,0xfc,0xb9,0xad,0x9f, +0x38,0xef,0x37,0xd1,0xda,0xad,0x41,0x01,0xcf,0xb5,0xcb,0xdd, +0xa3,0x0d,0x57,0x6a,0x34,0xdb,0xb4,0x47,0x34,0x38,0xf1,0x91, +0xcc,0x84,0x3c,0x04,0x9d,0x8d,0x2c,0x68,0x07,0x90,0xa8,0x78, +0x05,0x50,0x61,0x22,0x70,0x65,0x00,0xbe,0x67,0x3d,0xdb,0xe1, +0xf7,0x00,0x60,0x43,0x60,0x2d,0x27,0x9e,0x39,0x4f,0x1c,0x96, +0xec,0xc0,0xe9,0xdb,0xd4,0xab,0x4c,0xf9,0xa2,0xa2,0xdc,0xc2, +0xac,0x22,0x4e,0xdc,0x30,0x40,0x1d,0x75,0x65,0x67,0x71,0x5f, +0x61,0x3f,0xf7,0xd9,0x5a,0xf2,0x35,0xe8,0xac,0xa7,0x21,0x30, +0x46,0x9d,0xbc,0x9a,0xad,0xf5,0xd7,0x6c,0x56,0xf6,0x81,0xcc, +0x9a,0x80,0xa9,0x16,0x9a,0xe2,0x4b,0x5d,0x78,0x29,0x7e,0x8e, +0x26,0xac,0x94,0xde,0x64,0xeb,0x9b,0x04,0x74,0x57,0x61,0xe6, +0x30,0x2b,0x5f,0x9e,0x40,0x0a,0xb5,0x8a,0xd6,0x65,0x6c,0xed, +0xcb,0xe6,0xfd,0xee,0x1d,0x7d,0x7c,0xf4,0x32,0x87,0xe7,0xf1, +0x16,0x29,0x7a,0x9c,0xfe,0x22,0xe6,0x0f,0x2a,0xb8,0xc8,0x79, +0x41,0xcb,0x8e,0x6c,0xe0,0x04,0xc4,0x55,0xc4,0xf9,0x07,0x8b, +0x1f,0x4c,0xef,0x98,0x79,0xf0,0x1d,0xbb,0xda,0x57,0xd5,0x2e, +0xa3,0xbd,0x91,0x23,0x95,0xa6,0x49,0x4b,0x83,0x2b,0xc2,0x5d, +0x0a,0xaa,0x58,0xd8,0x96,0x06,0x2a,0xa5,0x2f,0x1b,0x3c,0xba, +0xf9,0x39,0x8e,0xa8,0x74,0x04,0xed,0x02,0x38,0x8c,0x61,0x31, +0xc6,0x03,0x67,0xaf,0xc7,0x99,0x2a,0x9d,0x56,0xdf,0x81,0x72, +0x35,0xac,0x88,0x86,0xd3,0x8a,0xe0,0x22,0xe6,0x5c,0x16,0x72, +0x60,0xcb,0x00,0x23,0x16,0xeb,0x92,0x80,0xdb,0xc7,0x1e,0x1e, +0x1f,0x36,0xf7,0xe3,0x0b,0x75,0x0a,0x36,0xa6,0xed,0xe4,0xb0, +0x68,0x33,0x29,0x7d,0x92,0xf9,0x47,0xec,0x0b,0x83,0x78,0xfe, +0xcc,0xbc,0xc0,0xa5,0x87,0xd5,0xa4,0x23,0xde,0x85,0x29,0x04, +0x32,0xc0,0x73,0x58,0x54,0x65,0x53,0x9b,0x52,0x5a,0x12,0xdb, +0x74,0x92,0xf9,0x63,0xc8,0xdb,0xa0,0xc2,0x81,0x05,0x61,0x7d, +0xc1,0xa3,0x81,0x2d,0x96,0xfe,0x7c,0x9a,0x45,0xea,0x81,0x38, +0xdd,0xae,0x4c,0xbe,0xc1,0xa9,0x61,0xb8,0x62,0xac,0x68,0x5c, +0x11,0x3e,0xc6,0x0c,0x2c,0xd7,0x85,0x72,0xf1,0x83,0x31,0xe1, +0x03,0x88,0x1c,0x66,0xe4,0x1a,0xa2,0xf6,0x9b,0xda,0xe3,0x24, +0x41,0x8d,0x96,0x95,0xf1,0x47,0xdc,0xdf,0x65,0x79,0xd0,0xb2, +0xe0,0xac,0xd4,0x3a,0x6d,0x49,0x96,0x59,0xc2,0xa7,0x64,0x23, +0x93,0x08,0x33,0x13,0xe0,0xfd,0x38,0x98,0xca,0x89,0x59,0x7a, +0x54,0x90,0xe1,0x8b,0x42,0xe7,0x86,0xcc,0xe1,0x70,0x9f,0x2e, +0xec,0x60,0x4e,0xe1,0xbb,0x41,0xf8,0x5e,0x20,0xbe,0xc3,0xa1, +0xb2,0xae,0x4c,0x61,0x18,0x59,0x26,0x09,0xb8,0x24,0x78,0x2f, +0x01,0xde,0xe3,0x9e,0x30,0xf8,0xbe,0xc0,0x92,0xb3,0xeb,0x4f, +0xe3,0xe4,0x70,0xe4,0x38,0x0c,0x66,0xca,0x61,0x4c,0x01,0xbf, +0x5d,0x4a,0x72,0x8c,0xb2,0xb7,0x27,0xef,0xef,0xcd,0xe2,0x83, +0xaf,0x7b,0x7f,0xe1,0xdb,0x47,0x6f,0xe1,0x75,0x2a,0xfe,0xd4, +0xe7,0xd1,0x7f,0x18,0xc5,0xf2,0x67,0xe7,0x9f,0x5a,0x76,0x54, +0x8d,0x13,0xc2,0x51,0x20,0x69,0xf0,0x4e,0x1a,0xbc,0x97,0x42, +0xc9,0x19,0x84,0x32,0x61,0xf8,0x6e,0x28,0xbe,0x1f,0x86,0x0a, +0x54,0x26,0x72,0xea,0x2a,0x87,0x21,0x8c,0x46,0x39,0x35,0x6d, +0x4a,0x23,0x4e,0x60,0xd8,0x08,0xec,0x87,0x0d,0xcc,0x39,0x1c, +0xdd,0x8d,0xfb,0xd1,0x11,0x3f,0xa9,0xa3,0xb4,0x3d,0x10,0x76, +0x8c,0x83,0x6b,0x34,0x5c,0xe6,0xc0,0x80,0x91,0x4f,0x95,0xef, +0x79,0xd3,0xb8,0xbb,0x32,0x0b,0x92,0xab,0x99,0xb5,0x21,0x69, +0x6b,0x4f,0x3a,0x1f,0x7c,0xd7,0xf7,0xb1,0xcf,0x18,0x87,0xc7, +0x71,0x68,0x42,0x07,0x68,0x25,0x24,0x1d,0x08,0x96,0x74,0x40, +0xf6,0x27,0xfe,0x0f,0x59,0xc6,0x38,0x87,0xc5,0xb5,0xa8,0x0a, +0xef,0xe9,0x8a,0x8a,0xac,0x7a,0xc1,0xf1,0xeb,0x2a,0xbf,0x33, +0xed,0xa9,0xd9,0xed,0xaa,0xb0,0x93,0x35,0xc9,0x52,0x98,0xfe, +0x4a,0x5d,0xc8,0x21,0x83,0xa2,0x3b,0x9b,0xd3,0x94,0xd1,0x96, +0xd4,0x09,0x1f,0x25,0xc3,0x7b,0x59,0x4f,0x8b,0x8e,0xf5,0xf2, +0xfa,0xd4,0x2d,0x96,0x9d,0xc2,0x18,0xe5,0x24,0x7d,0x05,0x60, +0x61,0x5a,0x54,0x3c,0x28,0xa8,0x9e,0xb2,0x3c,0x69,0xe3,0xe3, +0xc0,0xe1,0x2f,0xfa,0x30,0xc2,0x1c,0x58,0x35,0x6f,0x27,0xaa, +0xa9,0x4b,0x68,0x7b,0xf7,0x03,0x78,0xf7,0xfb,0x3b,0xf0,0x0e, +0x75,0x97,0xcc,0x23,0x9c,0x0e,0xb3,0x97,0xc0,0xaa,0xbd,0x25, +0x34,0x42,0xec,0xbb,0xb7,0xf4,0x8e,0xc6,0x03,0x0e,0xff,0x12, +0x8b,0x49,0xfa,0xc4,0x8e,0xde,0xf6,0x5c,0x5a,0xba,0xf0,0xae, +0x16,0xad,0x0f,0xf4,0x43,0x12,0x19,0xd9,0xd2,0xbd,0xb1,0x7d, +0x71,0x4f,0x09,0x6f,0xfe,0x9b,0xe9,0x3d,0x2d,0xfa,0xd5,0x43, +0xae,0xa4,0x71,0x5d,0xc5,0xb6,0xb2,0x79,0xfd,0x99,0xfc,0xa1, +0x3f,0x0f,0x7d,0x61,0xf7,0x98,0xc3,0x07,0x17,0x88,0xdb,0x5a, +0xf3,0xcd,0xeb,0xf7,0xb5,0xda,0xf1,0xdf,0xdf,0xef,0x7c,0x52, +0xf3,0x1d,0xed,0xef,0x0a,0xd9,0x27,0x04,0x9f,0x09,0xb7,0xe1, +0x19,0x3e,0x62,0xe3,0xb3,0xe3,0x72,0xe2,0x72,0x38,0x61,0x7e, +0x87,0x38,0x8b,0x89,0xcb,0x8b,0xc9,0x8d,0xc9,0xd5,0x8b,0xe7, +0xcf,0x7a,0x9f,0x91,0x46,0x77,0x44,0x33,0x0b,0xe1,0x20,0x73, +0xda,0xe7,0x8c,0xef,0x69,0x7f,0xe9,0xbc,0xea,0x65,0x44,0x98, +0xa5,0x25,0x1e,0x90,0x7d,0xd9,0xc9,0x8a,0x3f,0xc1,0x30,0xe9, +0x15,0xac,0x8c,0x59,0xdb,0xb7,0x8d,0x44,0xab,0x3e,0x76,0xf1, +0xdb,0x82,0x95,0x9e,0x68,0xc5,0x40,0x19,0xe6,0x12,0xb3,0x7a, +0xd3,0x4a,0xe3,0x52,0x37,0x3b,0xbe,0xcb,0xb3,0xdf,0xb5,0xcd, +0x89,0x83,0x2d,0x9f,0x93,0x61,0xab,0xcb,0xba,0x4d,0xfa,0xad, +0xf5,0xbc,0xe5,0x88,0x6e,0xbf,0x6e,0x3b,0x27,0xb7,0x44,0x67, +0x32,0xde,0xd7,0x31,0x52,0x3a,0x64,0x51,0xc2,0x1f,0x33,0xb3, +0xd0,0xd1,0xb0,0xe6,0x40,0x76,0x8e,0x38,0x87,0xc6,0x56,0xa9, +0xc2,0x54,0x1d,0x9c,0xca,0xee,0xcc,0xf7,0xff,0x52,0x05,0x3a, +0x99,0x8e,0x94,0xac,0x46,0xd5,0xeb,0x52,0x7a,0xf9,0x65,0x13, +0x87,0xf0,0x3f,0x27,0xa8,0xd0,0x8a,0x6f,0xdd,0xda,0xf5,0x0d, +0xad,0x96,0x21,0x14,0x32,0xd7,0xb6,0xc2,0x3b,0x1b,0x81,0xb1, +0xe5,0xe4,0x1c,0x9c,0x25,0xfb,0xb7,0x2e,0xd8,0x89,0x93,0xed, +0xa4,0xd3,0xe0,0xdf,0x6a,0x7b,0x79,0xf7,0xb3,0x87,0x9c,0xb0, +0x85,0x6a,0x56,0xca,0x40,0xf4,0xf0,0x44,0xde,0x9b,0x7b,0x46, +0x70,0x98,0xf1,0x45,0x0e,0x27,0xed,0x46,0x5f,0x3b,0x69,0xb0, +0xc7,0xbb,0x09,0x3e,0xf9,0x3a,0x0f,0x56,0x73,0x10,0xce,0x5c, +0x30,0x3a,0x6f,0x11,0xee,0xc0,0x59,0x87,0xf9,0x04,0x99,0x48, +0x13,0x28,0xd2,0xd4,0xcd,0x54,0xe6,0x5e,0x73,0xde,0xf5,0x34, +0x55,0xfc,0x83,0x42,0xf5,0x21,0xe7,0x51,0xcb,0x6e,0x8b,0x86, +0x66,0xde,0xb0,0x5b,0xaf,0x59,0xb7,0x8e,0x33,0xa3,0x5a,0x64, +0x13,0x1a,0x5f,0xaf,0x2a,0xb1,0x49,0x17,0x76,0x4b,0x91,0xcf, +0x03,0x15,0x90,0x36,0x2b,0xe7,0x34,0xaa,0x3e,0x67,0x75,0x72, +0x14,0xf0,0x23,0x76,0x00,0xec,0xc8,0xc8,0xbe,0xc1,0x6d,0x4d, +0x6a,0xdd,0x95,0xbc,0xd5,0x37,0x06,0xb7,0x75,0xaf,0x73,0x72, +0x53,0xca,0x7e,0xc6,0xef,0xb4,0x7c,0x5d,0x74,0xcf,0x24,0x8f, +0x3f,0xbe,0xcb,0x5a,0x4d,0xf3,0x20,0xd5,0x73,0x3b,0xd9,0x3e, +0x52,0x67,0x5e,0x67,0x54,0xa3,0x3f,0x27,0x08,0x67,0x9d,0xc2, +0xe9,0xa7,0x7b,0x7f,0xe9,0x82,0x77,0x6b,0x61,0x8a,0x6e,0x16, +0xef,0x82,0x0a,0x5a,0xa8,0xa2,0xbb,0x70,0xcf,0x39,0x3e,0x56, +0x17,0xd4,0xe2,0xe1,0x50,0x26,0xac,0x2a,0x50,0xcc,0x38,0x2a, +0xed,0xec,0xa1,0xaf,0xd6,0xfd,0x63,0xef,0x1f,0x7b,0xbe,0xe1, +0xc4,0x74,0x79,0xdd,0x1b,0x0f,0xf9,0x8b,0x2c,0x8a,0xa4,0xd9, +0x64,0x68,0x26,0x18,0xf5,0xe6,0xf0,0x61,0xbd,0xfe,0x63,0x27, +0x5b,0x38,0x8c,0x44,0x39,0x29,0x7e,0x92,0xf6,0xfc,0x8d,0xf3, +0x9b,0x50,0x7c,0x61,0x8b,0x68,0x40,0x46,0x84,0x69,0x3a,0x97, +0x85,0xd5,0xe2,0x39,0x71,0x35,0x2b,0x1c,0x04,0x19,0xc1,0x33, +0xe2,0x34,0x38,0x43,0xa5,0xae,0x2d,0x9b,0x4d,0x06,0xf0,0x1b, +0x36,0xa9,0x2e,0xb1,0x21,0xae,0x91,0xba,0xa3,0xd3,0xd6,0x61, +0x36,0xa7,0xec,0x38,0xb4,0x35,0x00,0x6d,0xc6,0x14,0xe7,0x6f, +0xc6,0xf7,0x71,0xda,0xdc,0x06,0x73,0xbe,0xbe,0xa6,0xba,0xb6, +0xbc,0x9e,0x13,0xd7,0x0f,0x0b,0xe7,0xd8,0x96,0xf1,0xea,0xdb, +0x45,0xf7,0x39,0x91,0x91,0x1f,0xa2,0x15,0xd2,0x95,0x9c,0xa8, +0x85,0x50,0x49,0x5e,0xbb,0x01,0xcb,0x00,0x3e,0xdb,0x28,0x67, +0x7b,0xd2,0x3e,0x0e,0x4f,0x2e,0x25,0x85,0x8f,0x53,0x24,0x4b, +0x8c,0xa1,0xee,0x20,0x74,0xd9,0x31,0x35,0x4e,0xe6,0x6f,0x49, +0x40,0x6d,0x00,0xd5,0xe0,0xb0,0x36,0x1e,0xc6,0xd5,0x06,0xb0, +0x1a,0xbb,0x29,0xec,0x13,0x76,0x0e,0xa0,0x3e,0xc5,0xac,0x67, +0xb6,0x92,0x57,0x4b,0xb4,0xff,0x5a,0xc2,0xca,0xd2,0x64,0xf6, +0x04,0x2b,0xc0,0x4a,0x0b,0xad,0x90,0x8a,0x25,0x96,0x1a,0xb6, +0x87,0x78,0x60,0xf4,0x73,0x61,0xc6,0xae,0x51,0xe1,0x00,0xfa, +0xc2,0x71,0xa8,0x60,0xe4,0x5b,0x6f,0x90,0x2c,0xe3,0xec,0x9d, +0x49,0xfb,0x7b,0xb3,0xf9,0x53,0xd7,0x7c,0x6e,0xfb,0xf5,0xd2, +0x62,0xf1,0x73,0x52,0xf8,0x24,0xe5,0x8f,0x98,0x3f,0xa9,0x1b, +0x8a,0x9c,0x1b,0xb2,0xe4,0xd8,0x7a,0x4e,0xd8,0x88,0x57,0x08, +0x7c,0x2a,0xcc,0xc0,0x4f,0xd9,0xe9,0x42,0x8c,0xcc,0x92,0xa4, +0x35,0x24,0x35,0x24,0xd4,0xe9,0x24,0xf1,0x27,0xe6,0xdb,0xe0, +0x14,0xcd,0x55,0x67,0xda,0x83,0xfb,0x4f,0xd5,0x5b,0xf8,0xf3, +0xc9,0x0e,0xc9,0xfa,0x71,0x66,0x6d,0x99,0xfc,0xa9,0x80,0x53, +0x81,0xc1,0x81,0x2d,0x66,0x7c,0x6e,0x41,0x4e,0x71,0x16,0x25, +0x18,0xbb,0x2e,0x3f,0x80,0x8b,0xf0,0x8a,0x12,0x97,0xc2,0xfa, +0xdc,0xe6,0xac,0x66,0x4e,0x60,0x76,0x33,0x38,0x23,0x02,0x3d, +0x03,0xf0,0x1d,0x95,0x6d,0x21,0x27,0x1c,0x76,0x29,0xe3,0x3c, +0x46,0xca,0xd0,0xa9,0xca,0xc0,0x5b,0x95,0x03,0xaf,0x89,0x0b, +0x17,0x07,0x47,0x24,0xe2,0xc2,0xb3,0xf2,0xed,0xf2,0xc2,0x37, +0xbe,0x6b,0xb5,0xb0,0xf9,0x7f,0xf9,0x4a,0xd9,0x3b,0xbf,0x10, +0xda,0x8d,0xda,0x10,0x29,0x0d,0x00,0xfc,0xed,0xc2,0xc1,0xee, +0xd5,0x24,0x22,0x45,0xa2,0xfc,0x50,0x5c,0xb1,0x05,0x57,0xa9, +0x74,0x5a,0xdf,0x83,0xb5,0x79,0xb0,0xe6,0x22,0x94,0x29,0x0a, +0x1e,0x50,0xc3,0x88,0x87,0xd0,0x8f,0xc0,0x76,0x61,0x29,0x6e, +0x67,0xc5,0x63,0xcb,0x48,0xc8,0x88,0xcf,0x4d,0xff,0x4e,0xda, +0x94,0x4c,0xb3,0xac,0xbd,0x49,0xda,0x1c,0x9e,0x46,0x85,0x09, +0xd5,0xf8,0x3f,0x7c,0xe2,0xf7,0xd2,0x52,0x92,0x93,0x8c,0x6d, +0x78,0x42,0x8b,0x2a,0xbc,0xcf,0x3e,0xaf,0x86,0x8f,0xc7,0x1f, +0x8c,0xb9,0xb4,0xf3,0xea,0xba,0xc8,0x69,0x2f,0x3f,0xc4,0x81, +0xa3,0x8e,0x38,0x9b,0xdd,0x58,0x72,0xec,0x91,0x0a,0x1c,0x63, +0x3a,0x32,0x73,0x1b,0x55,0x61,0x13,0x6b,0x98,0xa9,0x30,0x5d, +0xd0,0x90,0xed,0x20,0xa2,0xf2,0xd8,0xaf,0xc2,0xbf,0xfb,0xc4, +0x7f,0x7f,0x3f,0xf1,0xfb,0x5b,0xc1,0x60,0x40,0xfc,0x89,0x4d, +0x2b,0x4c,0x29,0x4a,0x2e,0xd2,0xcd,0xe0,0x0d,0xf0,0xa3,0x25, +0x38,0x0d,0xf9,0x65,0x0d,0x96,0xfc,0x0f,0x37,0xee,0x3e,0x18, +0x7a,0xc2,0xc1,0x5b,0xa2,0x1e,0x19,0x74,0x1e,0xb5,0xea,0xb6, +0xac,0x6f,0xa2,0x96,0xa6,0xdf,0xac,0x5b,0x4b,0x2d,0xad,0xfe, +0xff,0x85,0xa5,0xd9,0x90,0x91,0xfd,0xd4,0xd2,0x36,0x4a,0x96, +0xf6,0xc4,0xe0,0xd6,0x6b,0x4b,0xcb,0x9d,0xb0,0xb4,0xe2,0x7b, +0xc6,0x6f,0x2c,0x4d,0x83,0x9b,0x2e,0xa8,0x53,0x54,0xe2,0xef, +0x74,0xcc,0xd5,0xc3,0xdd,0x21,0xc9,0x31,0xd1,0x2d,0xfe,0xb8, +0x39,0x5f,0x76,0xa6,0xec,0x74,0xc5,0x69,0x4d,0x93,0x6d,0xb6, +0xeb,0xdc,0x4b,0x28,0x64,0xab,0xf9,0xa9,0xef,0xf6,0xcd,0xf6, +0xe0,0x8e,0xc0,0xd6,0x93,0xd6,0x76,0xfa,0x4e,0xbb,0x5c,0x2a, +0xcc,0xf9,0xaf,0x5a,0xae,0xb5,0xf5,0xf4,0xd6,0x06,0x55,0x05, +0x55,0x04,0x16,0xf5,0xf2,0x47,0x53,0x0e,0xa7,0x78,0x24,0xb7, +0x0c,0x54,0x8e,0x15,0xdc,0xe6,0x80,0xa3,0xf4,0xeb,0x9c,0x46, +0xa8,0xb6,0x8a,0x49,0xb8,0xa7,0xbf,0xa6,0x32,0x72,0x4c,0xa6, +0x81,0xc2,0xaf,0xcc,0x8b,0xf6,0xea,0x47,0x29,0xaa,0x49,0x9f, +0x45,0x5f,0xbf,0x00,0x1b,0x39,0xf1,0x3e,0x93,0x9a,0x93,0x92, +0x93,0x94,0xa7,0x9f,0xc1,0x5b,0xad,0xdb,0xb5,0x03,0xf9,0xfd, +0x94,0x6d,0x3c,0x68,0xba,0xdc,0xde,0xd9,0x27,0xed,0x96,0xdc, +0x45,0xac,0x32,0x2c,0xd2,0x2d,0x53,0x2b,0xeb,0x8a,0x1b,0xb3, +0x5b,0xa5,0xb3,0x2c,0x7c,0xb4,0x0e,0xeb,0x5b,0x9b,0x70,0xc8, +0x63,0x26,0x19,0x71,0x18,0x33,0xef,0x35,0xa5,0xfe,0x47,0xbf, +0x4f,0xb7,0x4d,0xbb,0x81,0xb3,0xc4,0x51,0x62,0x1d,0x92,0x40, +0x25,0x7e,0x46,0x13,0xcf,0xb2,0x9b,0x8b,0xbd,0x69,0x27,0x94, +0x31,0xed,0x19,0x39,0x4d,0xaa,0xc0,0xb2,0xda,0x54,0x2c,0xf3, +0xd9,0x41,0x08,0x20,0x23,0x3b,0x07,0x36,0x34,0xad,0xec,0xad, +0xe0,0xad,0x7e,0x36,0xbc,0xaf,0x73,0x5b,0x12,0x4b,0x13,0x19, +0x7f,0xd8,0xfc,0x63,0xd1,0x63,0xc3,0x6c,0xde,0x6b,0x8b,0xcd, +0x4a,0xcd,0xdd,0x12,0xed,0xfa,0x07,0x10,0xe8,0x41,0x2a,0x11, +0x44,0xd1,0x56,0x14,0xd9,0x31,0xa1,0x87,0xc0,0x23,0x74,0xc5, +0x47,0xcc,0x62,0x75,0x12,0x34,0x7e,0xe2,0xae,0x77,0x3f,0xd5, +0x9a,0x5c,0x83,0xdc,0x6d,0x29,0x7b,0x29,0x9a,0x5a,0x45,0x8a, +0x5e,0x2b,0x0d,0x35,0x23,0xaa,0xa1,0x47,0x68,0x34,0xb7,0x78, +0x29,0x3d,0xe1,0x4b,0x9f,0x10,0x6c,0xb0,0x81,0x8c,0x88,0x3f, +0x49,0x99,0xaa,0xd6,0xc8,0x34,0x49,0x56,0x73,0x6a,0x7b,0x72, +0x9b,0x46,0x12,0x1f,0x62,0x1a,0x68,0x1a,0x60,0xcd,0xa1,0xa6, +0x3c,0xe9,0xf2,0x0d,0xe1,0xed,0x7d,0x63,0x52,0xa6,0xaa,0x65, +0xf2,0xc4,0x37,0x88,0xe5,0x3b,0x99,0x0d,0xc9,0xd3,0xc9,0xdd, +0x94,0xb2,0x93,0x22,0x87,0xc0,0xdb,0xde,0x0f,0x4e,0x0c,0x73, +0x18,0x86,0x63,0xa4,0xf8,0x71,0x1a,0x05,0x6e,0x54,0x41,0x23, +0xe6,0x05,0x2f,0x95,0xca,0x32,0xce,0xa6,0x0c,0x58,0x78,0x1b, +0xa3,0x58,0xf1,0x6d,0xfc,0x9a,0x40,0x31,0xbd,0x2e,0xa6,0xa5, +0x05,0x08,0xee,0x84,0xa2,0x84,0x78,0xdc,0x0f,0x53,0x8c,0x5e, +0x8f,0x82,0x49,0x7f,0xa4,0xe4,0x1d,0xb8,0x08,0xd7,0x30,0x21, +0x3d,0x81,0xfd,0x41,0x8d,0x14,0x4b,0x65,0x98,0x67,0xee,0x4d, +0xd0,0x6a,0x4a,0xe3,0x23,0xd4,0x4f,0xef,0x3e,0xb5,0x41,0x9a, +0xd2,0xa6,0xde,0xd7,0x5c,0x1d,0x67,0x6c,0xaf,0xb4,0xe0,0x41, +0xf9,0xe1,0xd0,0xf7,0xe9,0xaf,0xc7,0xc5,0x1e,0xf6,0xc1,0x43, +0x98,0xeb,0xcb,0x38,0x9d,0xb7,0x8a,0x38,0xaa,0xe2,0x1e,0x11, +0x12,0xe2,0xa0,0x6c,0xc5,0x24,0x1b,0x28,0x54,0x33,0xe3,0x55, +0xc5,0x03,0x09,0xaa,0x71,0x4d,0x97,0xae,0x75,0x29,0xb5,0xa3, +0x25,0x2b,0xc6,0x8a,0xe4,0x8d,0xd7,0x13,0x92,0x64,0x81,0x84, +0x16,0x39,0x0d,0x16,0xb1,0xd0,0x85,0x8b,0xa4,0x31,0xb2,0x45, +0x30,0x83,0x91,0xa7,0x52,0x0f,0x94,0xff,0x38,0xe5,0x79,0xd4, +0x1f,0xc6,0x13,0x9e,0x6f,0xf9,0x71,0x5a,0xf8,0x73,0x43,0x12, +0x27,0x0d,0x8b,0x75,0x72,0x30,0x69,0x29,0xe3,0xf3,0xa9,0xef, +0x05,0x7f,0x95,0xbe,0x37,0xc3,0x62,0xbf,0xc0,0x34,0x5c,0x43, +0x8d,0x3e,0xe5,0x6f,0x54,0x2a,0xf8,0x0a,0x4a,0x52,0x3a,0xae, +0x84,0x41,0x71,0x50,0x1f,0x22,0xc5,0xed,0x98,0xad,0x03,0xd9, +0xf8,0xf0,0x32,0xad,0x67,0xc9,0x08,0x7b,0xe8,0x27,0x72,0xfc, +0x4b,0x93,0x17,0xd6,0x9f,0x99,0xf9,0xf0,0xcd,0xea,0x1d,0x73, +0x4a,0x36,0x73,0xe2,0x7b,0x50,0x49,0x7c,0xb7,0x38,0x2c,0x37, +0xdf,0xd6,0xed,0xc1,0x77,0x7d,0xd9,0xf8,0x7b,0xde,0xd7,0x1c, +0x5e,0x8c,0x20,0x19,0xd6,0x99,0x9a,0x89,0x86,0x7d,0xb9,0x7c, +0x48,0x9f,0xdf,0x98,0x7f,0x2b,0x87,0xb1,0x38,0x4e,0x4a,0x9e, +0xa4,0xbf,0x98,0x80,0xa7,0x11,0xf3,0x82,0x96,0x7a,0x52,0xc8, +0xf8,0x6a,0x96,0x30,0x99,0xc0,0x08,0xf5,0xab,0x1b,0xb4,0x71, +0x03,0x7a,0xe0,0x88,0x89,0x01,0x24,0xb2,0x47,0xf0,0xc3,0x75, +0x4b,0x70,0xdf,0x82,0x0a,0x3d,0x1e,0xb4,0x61,0x0a,0x65,0xdd, +0x33,0xe3,0x40,0x89,0x8b,0x63,0x12,0x71,0xd6,0xf7,0xb4,0xe1, +0x3b,0xf0,0x5f,0xd5,0x43,0x3c,0xae,0x80,0x49,0xeb,0xbe,0x3f, +0x02,0x33,0x39,0x28,0x1a,0x60,0xe4,0x6e,0xa2,0x26,0x6d,0x86, +0x0e,0x6d,0xc6,0x23,0xea,0xc4,0xb3,0x0c,0x32,0xb7,0x25,0xee, +0xed,0xc9,0xe0,0x43,0xc6,0x7d,0xef,0xfa,0x0d,0x50,0x54,0x43, +0x3b,0xbb,0x80,0x4a,0xe7,0x9f,0xb8,0x70,0x9c,0x76,0xb6,0x1a, +0x5c,0x22,0xb0,0x12,0x2d,0x99,0x80,0x0b,0x13,0x47,0xe1,0x2c, +0x67,0xc0,0x13,0xa2,0x09,0x6c,0xc2,0x68,0x54,0x63,0x2e,0x64, +0x5c,0xc8,0xc8,0x54,0x9a,0x0e,0xe7,0xd5,0xdf,0xbc,0x58,0x36, +0x55,0xd6,0x49,0xb6,0x54,0xe1,0x5b,0x95,0xf8,0x4e,0x4e,0xa0, +0x21,0x0f,0x53,0xfc,0x60,0xca,0xa1,0x2f,0xdd,0x38,0x71,0x13, +0xee,0x27,0x61,0x7d,0x01,0x57,0x4e,0xb6,0x5a,0xf8,0xf1,0x69, +0xd6,0x19,0x9a,0xf1,0x06,0x1c,0x55,0x58,0x25,0xaa,0xcb,0xa9, +0x52,0x6c,0x94,0xbc,0x6d,0xf0,0x84,0xb7,0xf5,0xd2,0x27,0xd7, +0xc7,0xc6,0xbe,0xee,0x7c,0x68,0x51,0xc1,0x5b,0x6f,0x36,0x52, +0xd7,0xd1,0xe7,0x6c,0xbf,0xf5,0xff,0xe6,0x5b,0x25,0x8c,0x33, +0x02,0x13,0xf1,0x36,0xce,0x98,0x38,0x1e,0xe6,0x2d,0xa6,0x21, +0x23,0xb3,0x51,0x55,0xd8,0x1b,0xc7,0xa6,0xe2,0x7b,0x03,0x38, +0x13,0x76,0xe1,0xca,0x9a,0x0e,0x7e,0xfd,0x6d,0xcd,0x2f,0xac, +0xef,0x70,0xa2,0x36,0x2c,0x21,0xc6,0xb0,0x95,0x3d,0x86,0x73, +0x0f,0x2e,0x9a,0xb3,0xa1,0xca,0x8a,0x07,0xe6,0xfb,0x2f,0xe1, +0xbd,0x12,0xd8,0xc1,0x35,0xb3,0xd2,0xc9,0x34,0x48,0x7e,0x82, +0x5f,0xfb,0xf0,0xd7,0x1b,0x9a,0xfb,0xf0,0xa1,0x11,0x3c,0x5c, +0x26,0xce,0x31,0x94,0xfd,0xd5,0xcf,0x8a,0xab,0xf1,0x06,0x79, +0x06,0x42,0x1f,0x0a,0xb7,0x35,0x77,0xe2,0x0f,0x46,0xf0,0xc3, +0x02,0x71,0xa5,0xe1,0x2b,0xa5,0x7e,0xe9,0x3c,0x38,0x03,0x62, +0xda,0x62,0x52,0x63,0x58,0xe1,0x62,0xcf,0xf7,0xb8,0x0f,0x38, +0x76,0xd8,0x73,0xa8,0xb1,0x8b,0x38,0x84,0xc6,0xd5,0xa8,0x4a, +0xc9,0xc6,0x96,0xb3,0xdb,0x0b,0xfc,0x28,0x92,0x6a,0x62,0x3a, +0x52,0xb3,0x1b,0x55,0xef,0xb3,0xba,0xd9,0x0a,0x38,0x99,0xba, +0xca,0x15,0x64,0xd8,0x68,0xf8,0x60,0xd3,0x81,0xf6,0x1a,0xde, +0xfa,0xa6,0xde,0x65,0xdd,0x3e,0x4e,0x6e,0x82,0x27,0xc9,0xf8, +0x68,0xdb,0xcd,0x92,0xab,0x66,0x45,0xfc,0x71,0x5d,0xcb,0x7d, +0x1a,0x26,0x9c,0x34,0x06,0xfb,0x80,0xd8,0xe1,0x5b,0xea,0xc8, +0xce,0x5f,0x51,0x67,0xc9,0xd7,0x57,0x57,0x35,0x14,0xd7,0x72, +0x38,0x3e,0x22,0xcc,0x63,0x8b,0x9b,0x72,0x5b,0x0a,0x29,0xde, +0xce,0xc5,0x4b,0x04,0xeb,0x0d,0xa1,0x1e,0x77,0x60,0xac,0x91, +0xf0,0xb8,0x0f,0x8b,0x60,0x07,0x0c,0xf6,0xe3,0x20,0xac,0x64, +0xbe,0x49,0xfd,0x2a,0xf3,0x56,0xbe,0x67,0x27,0x8f,0x4b,0xad, +0xd1,0xc8,0x0b,0xf5,0xce,0x24,0x1b,0xf1,0x77,0x2f,0xdd,0x8f, +0xbb,0x97,0xc0,0xf5,0x88,0x23,0xc4,0xa8,0xcb,0xa0,0x51,0xaf, +0xc6,0xd9,0x8e,0x1f,0x70,0x19,0xb1,0xee,0xb4,0xa2,0x2e,0x01, +0xdf,0x23,0x76,0x21,0xf1,0x75,0xaa,0x52,0xb2,0x45,0x13,0x76, +0x6b,0x91,0xef,0x7d,0xc9,0xd7,0x77,0xa4,0x65,0x37,0xa9,0x3e, +0x65,0x75,0x73,0xa4,0x14,0xf3,0xfd,0x40,0x11,0x8b,0xe6,0xe0, +0x8e,0xa6,0xad,0x5d,0x55,0xbc,0xd5,0x23,0x83,0x9b,0xba,0x57, +0x38,0xb9,0x11,0x26,0x93,0xf1,0xcf,0x5a,0x1e,0x14,0xdf,0x36, +0xc9,0xe7,0xbd,0xf6,0x59,0x6d,0xd1,0xd4,0xe6,0xa4,0x05,0xa2, +0xc1,0xe4,0xd6,0x48,0xf7,0x8d,0xda,0xfb,0x5c,0x2b,0x5e,0xa7, +0xa1,0x27,0xb5,0x38,0xa9,0x44,0x37,0x81,0x77,0x5e,0xad,0xa9, +0xb6,0x72,0x7f,0xb5,0x15,0x5f,0x9a,0x5b,0x5c,0x50,0x58,0x54, +0x6f,0xd1,0x66,0xdb,0x67,0xbf,0xcb,0x72,0x85,0x2d,0xbe,0xe3, +0x58,0x44,0x91,0xe1,0x87,0xad,0xbf,0x75,0x7c,0xd9,0x77,0xc7, +0xec,0x5b,0xab,0x3f,0x6c,0x4b,0xfa,0xf9,0xa5,0x75,0x1b,0x1b, +0xf6,0x36,0x73,0x62,0xb0,0x38,0xfc,0x77,0xc8,0xfd,0x55,0x76, +0x92,0xc4,0xc6,0xc5,0xc6,0xc7,0xc4,0x71,0xd4,0xeb,0x7a,0xe8, +0x5a,0x1b,0x69,0x9a,0xe9,0x36,0x9b,0xb7,0xd9,0xf5,0x50,0x4e, +0x18,0x20,0x41,0x0e,0xf5,0xe4,0x03,0x3d,0x59,0xfc,0xa9,0xab, +0x3e,0xb7,0x7d,0xe9,0x67,0xfe,0x12,0xe4,0x78,0xad,0xd2,0x92, +0x7e,0x85,0x48,0x50,0x47,0xb0,0x15,0x75,0xc8,0x18,0xdc,0xd1, +0x1c,0x15,0x3e,0x12,0x0d,0xc5,0x8f,0x58,0x81,0xba,0x4e,0x82, +0x2e,0x78,0x07,0x5c,0x26,0x46,0xc0,0xef,0x13,0x1b,0x64,0x76, +0xa3,0xc2,0xfc,0xe5,0xb5,0x16,0x7c,0x43,0x2d,0x95,0x7e,0x3d, +0x87,0xd7,0x86,0x85,0x8f,0xd9,0xc2,0xe6,0x82,0xb6,0xfc,0x51, +0x0e,0x0a,0xf1,0x30,0xc1,0x7b,0xc3,0x70,0x2f,0x8e,0x4d,0xc7, +0xb7,0x7f,0xdc,0x04,0x5b,0xe6,0xd5,0xf4,0xf2,0xb8,0xfd,0xf7, +0xe5,0x4f,0xdc,0x1e,0x73,0x90,0x33,0x80,0x4d,0x30,0x5b,0x07, +0x67,0x63,0x9e,0x01,0x5c,0x64,0xdc,0xd6,0xac,0xdd,0x80,0xeb, +0x16,0xd5,0x52,0x12,0xb2,0xec,0xb7,0x1f,0x1f,0xa5,0xc1,0x64, +0x0e,0x97,0xe2,0x9f,0x64,0xc0,0x79,0xc4,0xaa,0xcb,0xaa,0xa1, +0x89,0x37,0xea,0xd2,0x6f,0xd2,0xab,0xe5,0x4c,0xb1,0x97,0xd8, +0x4e,0x44,0x5c,0x33,0x2d,0xea,0xd0,0xb6,0x4d,0x44,0xdc,0x2a, +0xda,0x0b,0x34,0xe2,0xfe,0x32,0xd1,0x0b,0x33,0x69,0x2f,0x98, +0x92,0x91,0x83,0xb4,0x17,0x36,0x4b,0xbd,0xf0,0x95,0xe1,0xe7, +0x3a,0x57,0xa5,0x5e,0x48,0x27,0xe3,0x9f,0xb7,0x3c,0x2a,0xbe, +0x43,0x7b,0xe1,0xf8,0x1e,0xeb,0xcd,0x9a,0x5a,0x34,0xe2,0x16, +0xca,0x8e,0x92,0xb4,0xf2,0xe4,0xf2,0xf8,0x0a,0xc3,0x34,0xfe, +0xc8,0x9c,0x03,0x73,0x36,0x6d,0x0e,0xaf,0x09,0xaf,0x0e,0x2b, +0xb5,0x3c,0xc9,0xa7,0x9b,0xa4,0xef,0x8a,0x3f,0xd8,0x9d,0xc9, +0x9f,0xcb,0x3e,0x9b,0x7b,0x36,0xa7,0xc0,0x83,0xef,0xe9,0x6a, +0x1f,0xad,0xbb,0xc6,0x81,0x7c,0x09,0x83,0x1f,0x9c,0x45,0x8f, +0x60,0x9c,0xae,0xb2,0x31,0xdc,0xeb,0xf0,0x3e,0x65,0x9c,0xc5, +0xa4,0x1b,0x28,0x50,0xd6,0xf4,0xa2,0xb5,0x07,0xde,0x4d,0x52, +0x4d,0x81,0x19,0xd1,0xe0,0x0e,0x33,0x95,0x60,0x19,0x2b,0xdf, +0x2d,0x6f,0x7d,0xd3,0x37,0x1b,0x28,0x70,0x2a,0x78,0x92,0xfa, +0xec,0xff,0x10,0xb5,0x3d,0x35,0xfa,0xfa,0x96,0x9a,0xde,0xd2, +0x81,0x02,0x97,0x3c,0xe7,0x6c,0xd7,0xda,0x2a,0xde,0xb7,0xe1, +0x68,0xb3,0x67,0x73,0xe9,0x58,0xfe,0xd5,0xf4,0x51,0xab,0x1c, +0x3e,0xd8,0xd8,0xcf,0xd0,0xdb,0xd8,0xa3,0xd1,0xa3,0xfe,0x48, +0xa5,0x9b,0x0b,0x5f,0xee,0x52,0x6d,0x5d,0x69,0xee,0xa1,0xed, +0x62,0x60,0x47,0x19,0x4a,0x36,0xdc,0x24,0xe2,0x34,0x2c,0x86, +0x67,0x86,0x62,0xe0,0xe0,0x23,0x78,0x20,0xa8,0x53,0xc3,0x9d, +0x26,0x1c,0x21,0xf0,0x51,0x2d,0x4c,0xbe,0x9c,0x03,0xef,0x4b, +0x67,0xe6,0x3b,0x9e,0x75,0x3e,0xe3,0xae,0x72,0x38,0x22,0xd0, +0x8f,0x92,0x88,0xf9,0xd2,0xc4,0x31,0x28,0x32,0x77,0x1b,0x72, +0x28,0x89,0x48,0x6c,0xbd,0xd4,0x7c,0xf1,0x07,0x0e,0xf3,0xbe, +0xd2,0xde,0x80,0x5e,0x46,0xe0,0xc9,0xf8,0xae,0xdb,0x6a,0x81, +0xd3,0xdc,0x38,0xe4,0xc4,0xdf,0xfe,0x56,0x2b,0x75,0xa1,0x96, +0x84,0x5d,0x39,0x79,0x3b,0xa0,0xd7,0x8a,0xca,0xc6,0x38,0x4d, +0x3d,0xe1,0x20,0x87,0xae,0x0b,0xfe,0x03,0x04,0x23,0x69,0x7b, +0x24,0xd2,0xbc,0xee,0x1a,0x31,0x58,0xb7,0xc6,0xf8,0x1b,0x26, +0x12,0x57,0x1d,0x5e,0x71,0x60,0x73,0xa3,0x35,0xff,0xc5,0x4f, +0xd5,0xc0,0x45,0xc3,0x26,0xee,0x29,0x73,0x71,0xe5,0xd9,0x95, +0x61,0x7a,0x9c,0xe3,0x99,0xd0,0x40,0x27,0x65,0x13,0x26,0x55, +0x5f,0xa1,0x9b,0x19,0xa8,0x28,0x1b,0x49,0x54,0x4d,0xbc,0x1a, +0xf3,0xfb,0x05,0x58,0xc6,0xe1,0x32,0x06,0x1e,0xcf,0x7a,0x6c, +0xb0,0x6e,0x95,0xf1,0xb7,0xec,0x59,0x5c,0xe9,0xb6,0x6a,0x97, +0x1a,0x7d,0xc7,0xd7,0x4f,0x6b,0x80,0x95,0xde,0xf1,0x82,0xbe, +0xe3,0x9c,0xf4,0x0e,0x87,0x33,0x21,0x41,0x4e,0xca,0xfb,0xa4, +0x77,0x5c,0x66,0xae,0x94,0x95,0x5e,0xa6,0xef,0xb8,0x16,0xf5, +0xab,0xf4,0x8e,0xe9,0x10,0xf8,0x0f,0x68,0x50,0xfd,0x8e,0x94, +0x83,0x59,0x11,0x78,0x27,0x52,0xa7,0x86,0x2f,0x99,0xb8,0x96, +0xd8,0x96,0x58,0x8a,0x7f,0x15,0x07,0x45,0xd4,0x07,0x35,0xc6, +0x1b,0x1d,0x1d,0xf0,0xd0,0x01,0x34,0xea,0xf7,0xe5,0xdb,0x61, +0x76,0x15,0x2c,0x2f,0x92,0x12,0x9a,0xb7,0x31,0x67,0x70,0xc6, +0x31,0x3c,0xe1,0x81,0xfa,0x9c,0x68,0xa8,0x2f,0x9b,0x3d,0xc8, +0x88,0x0f,0x05,0x75,0x12,0x78,0xcb,0xeb,0xe1,0x89,0x61,0xca, +0x14,0xf2,0x74,0xf3,0x36,0xa6,0xec,0xe4,0x30,0x74,0xab,0x84, +0xd8,0x9f,0x45,0xbf,0xfc,0x0f,0x53,0x10,0x92,0xbe,0x20,0xc3, +0xae,0xb7,0x0d,0x3b,0x2d,0x2a,0xda,0x79,0xd3,0x8e,0xdd,0x3d, +0xba,0xd5,0xdc,0x1e,0xf4,0x25,0x97,0x9d,0x6f,0xeb,0x75,0x99, +0x55,0xb5,0xf1,0xc6,0x3d,0xea,0x7d,0xda,0xb5,0xb4,0x9a,0xa7, +0xff,0xa9,0xa6,0xc7,0xe7,0xe4,0x13,0xc6,0xf3,0x4c,0x6c,0xb9, +0x2a,0xbc,0x04,0x8d,0x41,0x2c,0x13,0x66,0xe9,0x8b,0xb3,0xf0, +0x92,0x3e,0x55,0xa1,0xf3,0x68,0x63,0x83,0x93,0xf1,0x13,0x9c, +0x4c,0xad,0x0d,0xd4,0x60,0x7a,0x17,0xfc,0x3b,0x5a,0x5a,0x34, +0x3e,0x4b,0x9c,0xc4,0xe8,0x14,0xf9,0x0c,0xa8,0xfc,0xc9,0x34, +0x67,0x64,0x52,0x78,0xb5,0x5f,0xc2,0xb8,0x5e,0xc2,0x0d,0x72, +0x78,0x93,0xdd,0x26,0xa3,0x3d,0x1d,0x87,0xf9,0xde,0xeb,0x1d, +0xdf,0x94,0x3f,0xe2,0x44,0x65,0xb4,0x25,0x47,0x3e,0x33,0xff, +0xc9,0x69,0xc8,0xd4,0x93,0x6f,0xd2,0x6c,0x59,0x53,0xae,0xce, +0xe1,0x54,0x0b,0x42,0x99,0xc7,0x1d,0x9f,0xde,0x09,0xe6,0x93, +0xbd,0x23,0x79,0x3f,0x87,0xa7,0x96,0xd0,0x3e,0x4d,0xa1,0xe1, +0xe6,0x3f,0x7d,0x3a,0x5d,0x10,0x84,0x4e,0x92,0x85,0xdc,0xd7, +0xea,0x60,0xbf,0xae,0x6c,0x80,0x47,0xd7,0x47,0x0b,0xef,0x02, +0x51,0x1a,0x87,0x43,0xac,0xaf,0xad,0xb3,0xbe,0xad,0x75,0x87, +0x07,0x3f,0x70,0xb9,0x76,0x8c,0xfa,0xdd,0x66,0x71,0x13,0x9b, +0x5c,0x90,0x58,0x98,0x50,0x44,0x6d,0xca,0x7d,0x85,0xe9,0x86, +0x1d,0x7b,0xdb,0xec,0xf9,0xe6,0xe6,0x9a,0xf6,0xd2,0x2e,0xee, +0xc5,0x5e,0x06,0xdf,0x57,0xdb,0x89,0x0e,0xdb,0x55,0x4a,0x8c, +0xc0,0xf8,0xde,0xbd,0xf1,0x4c,0x78,0x5b,0x51,0x2c,0x05,0x07, +0xa2,0x0f,0xf1,0x83,0xec,0x49,0xf4,0x21,0xfb,0x6c,0x57,0x3a, +0x2e,0x72,0x2d,0xd0,0xe5,0x7f,0xa9,0xfd,0xb6,0xe9,0x4e,0x07, +0xf7,0x35,0x25,0xe6,0x43,0x4e,0x94,0xe3,0x9a,0x4b,0x1c,0xb7, +0x47,0xaf,0x85,0x72,0x5c,0x73,0xbc,0xf7,0x06,0x79,0xbb,0x68, +0xa1,0xdb,0x1b,0xe4,0x5d,0x29,0xf9,0x81,0xa6,0x37,0xc8,0x9b, +0xa7,0xe1,0xc4,0x91,0x72,0xdc,0x81,0x2d,0x4d,0x1b,0x28,0xf2, +0xb6,0xfe,0xd6,0xe0,0x8e,0xee,0x0d,0xc9,0x0f,0x14,0x92,0x1b, +0x5f,0xb4,0x3c,0x2e,0xfa,0xd2,0x38,0x97,0x3f,0xb1,0xcb,0x7a, +0xbd,0xc6,0x41,0x69,0xc1,0xa3,0xb4,0x88,0xa3,0x12,0xe6,0x42, +0x7c,0x3f,0xc6,0xc3,0x47,0x3a,0xf8,0x91,0x94,0x1b,0x32,0x08, +0xe7,0x62,0x22,0x13,0xde,0x1b,0x38,0x1c,0xd4,0x2c,0x1d,0x96, +0x63,0x9d,0x46,0x03,0x72,0x7b,0x06,0x6f,0x2d,0x2c,0xc0,0x8f, +0x45,0x65,0x03,0x41,0x19,0x73,0x70,0x2f,0x9b,0xa1,0xaf,0x00, +0xab,0xdf,0x64,0x8d,0x4c,0x05,0x4a,0x4a,0x09,0x7c,0x0c,0xaa, +0xac,0xdc,0x56,0xcc,0xff,0x2f,0xbb,0xa7,0x3a,0xf2,0xfc,0xbf, +0xd9,0xa4,0x30,0x07,0x75,0x48,0x93,0x4b,0xa7,0x61,0xa5,0x75, +0x73,0x2d,0xef,0xd6,0x6e,0xd6,0x67,0x5f,0x2d,0x41,0x19,0x99, +0x06,0xc1,0x0c,0x26,0xb7,0x25,0xab,0x3d,0xa9,0x91,0x32,0xbc, +0x60,0x4b,0x7f,0xb3,0x13,0x34,0xfc,0x58,0xc9,0x37,0x98,0xea, +0xc9,0x3e,0x1a,0xd2,0x61,0xe4,0x1b,0x97,0xbf,0xc1,0x70,0xf7, +0x64,0xd6,0x24,0x43,0x3f,0x63,0x5b,0xc2,0x9e,0xee,0x74,0x3e, +0x74,0xdc,0xff,0x9e,0xff,0x20,0xfd,0x22,0x0e,0x92,0xbc,0xc7, +0xc9,0xcf,0x26,0xf0,0xdb,0xb9,0xf9,0x61,0xcb,0xbd,0x28,0x95, +0x0e,0x85,0x5c,0x22,0x8a,0x9f,0x08,0x22,0x0b,0x2b,0x45,0x91, +0x62,0xe8,0x5f,0x28,0x84,0x1e,0x98,0x25,0x88,0xcf,0xe8,0xdf, +0xe9,0x42,0xaa,0xcc,0x95,0xa4,0x56,0x4c,0xcc,0x7a,0x25,0xf3, +0xde,0x8b,0x4c,0x17,0xed,0xda,0xd0,0x68,0xca,0x27,0x26,0x27, +0x24,0x25,0x24,0xd3,0xd8,0x32,0x72,0x07,0x52,0x05,0x0d,0x1c, +0x60,0xf3,0x2a,0x73,0xab,0x33,0x6b,0x38,0x61,0xb2,0x1a,0x83, +0xff,0xfa,0x67,0xce,0xeb,0xb8,0xc3,0xde,0x09,0xea,0xa8,0xa7, +0x00,0xff,0x66,0x60,0x52,0xc5,0x10,0x4c,0x93,0xa8,0xe3,0xf4, +0xff,0xcc,0x79,0x6d,0x91,0xd7,0xbe,0x61,0xff,0x0f,0x69,0x95, +0xb3,0xf4,0x29,0xa8,0xda,0x2d,0x81,0xaa,0x9b,0x7e,0x5f,0xfa, +0x0e,0x4a,0xc3,0x5e,0xa3,0x13,0x6e,0x24,0xe6,0x6f,0xb4,0x2e, +0x21,0x1c,0x3e,0x8a,0xa0,0x0d,0x28,0x81,0x0d,0x83,0x36,0xd2, +0x1c,0x98,0x0d,0xce,0x43,0x1b,0xca,0xb2,0x4f,0xfe,0x03,0xa3, +0x8a,0x04,0xb9,0xc4,0xb2,0xf7,0x32,0x8f,0x52,0xee,0xa7,0x5f, +0xcb,0xf2,0xa4,0xd1,0xe5,0x63,0x37,0x34,0x3a,0x86,0xfb,0x43, +0x53,0x75,0xf9,0xf1,0xe8,0x7b,0xf1,0xf7,0x12,0x39,0xdc,0x8a, +0x61,0xba,0x10,0x86,0xfb,0xf0,0xa8,0x38,0xe3,0xf2,0x88,0x30, +0x4b,0xe7,0x32,0x25,0xd2,0x27,0x61,0x1f,0x54,0xb0,0x72,0x13, +0xd8,0x48,0x72,0xb4,0xb2,0xd7,0x27,0x6f,0xed,0xce,0xe0,0x83, +0xef,0xfa,0x7c,0x2d,0x0d,0xc2,0xb9,0xe1,0x75,0x52,0xf8,0xf5, +0x3f,0xd4,0x3f,0x64,0x02,0xe2,0x6d,0xc7,0xdb,0x52,0xa2,0x9d, +0x59,0x68,0x43,0xc3,0xdf,0xa9,0xbf,0xab,0x00,0xc9,0xb3,0x64, +0x97,0x05,0x75,0x79,0x08,0xee,0x64,0xd3,0xf5,0xa5,0x23,0x75, +0xba,0x52,0xb2,0x5a,0x55,0x65,0xd5,0x62,0xd3,0x5f,0x93,0xd9, +0x93,0x42,0x17,0x09,0x1d,0xf5,0x1f,0x3f,0xd9,0x45,0xad,0x2b, +0xdd,0x2c,0x63,0x6f,0x02,0xa5,0xb3,0xae,0x94,0xce,0x16,0x3c, +0x4e,0x7e,0xad,0x0a,0xe7,0x28,0xbc,0x3e,0x46,0xbb,0x47,0x1b, +0x5c,0x08,0x50,0x7c,0xf2,0x98,0xf9,0x49,0xec,0x24,0xd7,0xc1, +0x12,0xc6,0x91,0x42,0x75,0xb6,0x97,0x06,0x5d,0x58,0x80,0x4e, +0xb8,0x60,0xe2,0x94,0x40,0x0a,0x72,0xa7,0x82,0xac,0x1f,0x65, +0xf0,0xb6,0x30,0xbf,0x1f,0x2f,0xb2,0x65,0x35,0x79,0x8d,0x19, +0xd5,0x7a,0x39,0xbc,0xbf,0xfd,0x71,0x4b,0x37,0xca,0x5b,0x6a, +0x99,0xae,0x3c,0xaf,0x86,0x43,0xed,0xbe,0xf9,0x8a,0x26,0xc7, +0xca,0x9c,0xf2,0x5d,0x73,0xdc,0x15,0x31,0xd2,0x50,0xf8,0x10, +0xdf,0xc6,0x1f,0x0d,0xe1,0x47,0x9c,0x2a,0x2e,0x31,0x7c,0x35, +0xa3,0x9f,0xc1,0x11,0xb4,0x22,0xaf,0xc7,0x8b,0x9c,0x6c,0x79, +0x69,0x04,0xa9,0xc7,0x82,0x43,0x1d,0x7c,0x9f,0xd8,0x86,0xfc, +0xdf,0xac,0x6a,0x82,0xcf,0xfe,0xb7,0x55,0xd9,0x4b,0x23,0x47, +0x5b,0x5f,0x8f,0x1c,0x7d,0x6b,0x78,0x4b,0xe7,0x86,0x44,0xdc, +0xf2,0x25,0x3e,0xfb,0xf8,0xef,0x91,0xa3,0x0d,0xd2,0xc8,0x11, +0x04,0x4b,0x72,0xd2,0x93,0xe4,0xe4,0x2b,0x53,0x25,0xc2,0x79, +0xf0,0x15,0xcf,0x33,0x82,0xa6,0x09,0xc1,0x69,0x14,0xf1,0x4f, +0x63,0xe7,0x52,0xba,0x17,0x72,0xdd,0xef,0x8e,0x7f,0x3f,0x15, +0x50,0xa6,0x51,0xe6,0x8e,0x44,0xea,0x7e,0x3c,0x96,0x49,0x00, +0xfb,0x45,0xf4,0x0b,0xe3,0x7f,0x42,0x24,0xfc,0x02,0xb3,0x88, +0x38,0x3e,0x0a,0xb6,0x82,0x1a,0x65,0x9c,0xbb,0x26,0x92,0x14, +0xad,0x92,0x72,0x8b,0xb5,0xa8,0x0a,0xa1,0xac,0x16,0xae,0x26, +0xa2,0xda,0x0b,0x41,0x8d,0x11,0xd5,0xe8,0xa5,0xa0,0x36,0x47, +0x54,0x93,0x86,0x63,0xfe,0x19,0x84,0x38,0xf2,0x6a,0x32,0xc1, +0xdf,0x85,0x73,0xf0,0x3b,0xab,0x8b,0x0b,0x89,0x38,0xe3,0x47, +0x61,0x06,0x23,0x5e,0xc6,0x49,0x84,0xb2,0xac,0x3d,0x09,0xda, +0x94,0xcc,0x85,0x8c,0xfa,0xdf,0xf4,0x97,0xf6,0xcd,0xe2,0x35, +0x0a,0x86,0xfe,0x6b,0x68,0x43,0xb2,0xd4,0x4d,0x10,0x4e,0x84, +0x19,0x4b,0xc4,0x19,0x0c,0x1c,0xc6,0xbb,0x04,0x66,0x42,0x4c, +0xaf,0xd8,0x6b,0x0c,0xe7,0x70,0x26,0x16,0x1b,0x41,0x31,0xda, +0x8c,0x80,0x0d,0x54,0xf5,0x51,0xd5,0x08,0xfb,0x47,0x3b,0x33, +0xc1,0x82,0xf4,0x6d,0x92,0x4d,0x16,0x8f,0xc8,0x27,0xaf,0x35, +0x62,0x85,0xf3,0x42,0x26,0xc1,0x97,0xcf,0xe0,0x25,0x23,0xee, +0xc6,0x3e,0x12,0x78,0xfb,0x84,0x14,0x46,0x28,0x63,0xd5,0xcd, +0xdb,0x24,0x85,0x91,0x53,0x5b,0xdf,0xb4,0x7b,0xa2,0xe0,0xd0, +0x37,0x05,0xfb,0x12,0x78,0xb9,0x80,0x06,0x2d,0x78,0x29,0xed, +0x12,0x7e,0xf9,0x3b,0x7d,0x1c,0xa5,0x4b,0x78,0x39,0x9b,0x7e, +0x8a,0x8a,0x98,0x44,0x1e,0x57,0xfc,0xd8,0x37,0xd4,0xed,0xda, +0xc4,0x1b,0x5b,0x2e,0x35,0xd9,0x72,0x84,0x13,0x66,0x7f,0x45, +0x3e,0x3b,0xf4,0x87,0xde,0xa8,0x4d,0x65,0x27,0xaf,0xdd,0x38, +0x77,0x78,0x4f,0x29,0xed,0x0b,0xf7,0x7f,0xfa,0xc2,0xea,0x2c, +0x19,0xbc,0x2c,0x58,0x6a,0x0d,0xbf,0x7a,0x4b,0x1c,0x67,0x06, +0xe5,0x17,0x89,0xcc,0x58,0xb0,0x94,0x1b,0xb3,0x98,0x2c,0xac, +0x27,0xe2,0x94,0x3e,0x61,0x4a,0x1c,0x1b,0xb7,0xb6,0x7a,0xe3, +0x4f,0xb3,0xeb,0xdb,0xf8,0x95,0x3f,0x18,0xff,0xe6,0xff,0x80, +0x83,0x4f,0x7a,0x70,0x1b,0xcc,0x33,0xa2,0x46,0xa8,0x66,0x02, +0xf3,0x98,0x93,0x9b,0x4c,0xe6,0xad,0x5a,0x5d,0x6f,0xc5,0xff, +0xf4,0xbc,0xf2,0xeb,0x98,0x6f,0x39,0x71,0x12,0xe8,0x91,0x0c, +0x93,0x74,0xf5,0x84,0x03,0xd4,0x94,0xc2,0xae,0xfa,0xdf,0x0e, +0xa0,0xd0,0xd2,0x1e,0xaf,0xfc,0x2f,0x5f,0x34,0xfd,0x15,0x0f, +0x4d,0x04,0x6a,0x31,0xec,0x57,0xa8,0xe8,0xc7,0x8a,0x3f,0xf5, +0x66,0x63,0xae,0x21,0xe4,0x2e,0xa6,0x44,0x47,0x5a,0x91,0x6c, +0xb3,0x7c,0xf6,0x12,0x9c,0xbf,0xbb,0xcc,0x98,0x22,0xc1,0x2f, +0x5f,0xfc,0x52,0x0c,0x53,0xb8,0x38,0xfc,0x7e,0x10,0xbe,0x8f, +0x63,0x0a,0xf0,0xad,0xef,0x56,0xc1,0xec,0xb5,0xe5,0x3d,0x3c, +0x2a,0xde,0x5f,0xf1,0x83,0x3d,0x2d,0xd7,0x56,0x9c,0x44,0x1b, +0xa6,0x2f,0x35,0x6c,0xbf,0x50,0x4a,0x42,0xaf,0xfb,0xdd,0xf5, +0xef,0xa3,0x08,0x25,0xd3,0x28,0x63,0x7b,0xe2,0x3e,0x0e,0x1d, +0x57,0xfc,0x2f,0x36,0x2b,0x5c,0x81,0xe5,0x52,0xe6,0xfa,0x6d, +0xb0,0x87,0x6a,0x26,0xee,0x21,0xb0,0x07,0xf6,0xe3,0x1e,0x76, +0xfa,0x2b,0x13,0x1a,0x38,0xdd,0x6e,0x69,0x3e,0x37,0xb8,0x69, +0x75,0x98,0xef,0xd1,0x18,0x58,0x56,0xb5,0x87,0x52,0x3e,0x28, +0xd5,0xc1,0x52,0xb4,0x65,0x06,0x6f,0x76,0x7d,0x97,0x77,0xc7, +0x2c,0x9f,0xf7,0xde,0x65,0xbc,0x58,0x63,0x6f,0xa3,0x3d,0x1f, +0x1b,0x1b,0x13,0x17,0x1b,0xc7,0xc9,0xa7,0x0d,0x43,0x08,0xc8, +0xa5,0x39,0x60,0x36,0x8b,0x7a,0xc1,0x15,0x4c,0x4b,0x96,0x94, +0x52,0xb5,0x9d,0x4d,0xf0,0x57,0x90,0x6f,0x14,0xe1,0x8d,0x4e, +0xfc,0x20,0x73,0x24,0x13,0x51,0x76,0x5f,0x6f,0x36,0x1f,0x7c, +0xcd,0xfb,0x0b,0xdf,0x5e,0x0e,0xfd,0xa8,0xbb,0x29,0xf8,0x8f, +0xc6,0x4d,0x28,0xbc,0xac,0x33,0x8b,0xa0,0x1c,0xde,0x01,0x39, +0x83,0x72,0x69,0xf9,0x95,0x1c,0xa7,0xa2,0x9c,0xea,0xf4,0xaf, +0xc2,0x23,0xd2,0x76,0x71,0x28,0x6a,0x34,0x2a,0x7c,0xbd,0x89, +0x1e,0xbe,0x6b,0x26,0x25,0x5a,0xff,0xf7,0xe8,0x95,0x2f,0xe3, +0xe1,0xad,0xca,0x4b,0x95,0x51,0x95,0x97,0xa4,0xcd,0xd9,0x07, +0x72,0xbd,0xaf,0xaa,0xc0,0x74,0xa6,0x51,0x82,0x04,0x37,0x59, +0xe3,0x2c,0x85,0x4f,0x90,0x65,0x3d,0xc2,0x13,0x2a,0x54,0xe1, +0x3d,0xb6,0x39,0xa6,0x31,0xba,0x26,0x26,0x35,0x30,0xe5,0x64, +0x4a,0x60,0x4b,0x35,0x6f,0x30,0xbe,0xeb,0x8b,0x03,0xfd,0x76, +0x1e,0x7c,0xad,0x47,0x9d,0x53,0xad,0xc3,0xca,0x50,0x7c,0xf7, +0x34,0x4e,0x3e,0xdb,0x30,0x58,0x3d,0x56,0x3c,0x6c,0x98,0xc5, +0x7b,0x1e,0xb4,0xdf,0x63,0x7e,0x80,0x3b,0x72,0xec,0x82,0x97, +0x32,0x4e,0x95,0xbb,0x90,0x57,0x4b,0x74,0xff,0x5a,0xc2,0x7e, +0x25,0x73,0x21,0xa9,0x66,0xe9,0xbb,0xe3,0xb5,0x28,0x42,0x0e, +0x1f,0x0d,0xf8,0x2c,0xb0,0x8b,0x0a,0x1b,0xaf,0x92,0xbc,0x6f, +0x92,0x9f,0x47,0xc1,0x24,0xa9,0xc3,0xe7,0x86,0x2d,0xf5,0x5a, +0xcf,0xbd,0x5a,0x27,0x2a,0x92,0x05,0x25,0x1b,0xaa,0xf6,0x34, +0xdc,0xee,0xeb,0xbd,0x5c,0x7f,0x8b,0x6b,0xc2,0xcb,0x6c,0x4e, +0x51,0x56,0x49,0x5a,0x99,0x7e,0x26,0x6f,0xb1,0x7c,0xc3,0x7a, +0x54,0xdc,0x5f,0x66,0xc5,0x77,0x14,0xb4,0x94,0xd4,0x97,0xd5, +0x59,0xb7,0xd8,0xf5,0x38,0x6d,0xb3,0xff,0xc4,0x15,0x3f,0x38, +0x92,0x4d,0xb5,0x60,0x4e,0x39,0xbc,0xd5,0xf0,0xb8,0xeb,0x9e, +0xc5,0x8f,0x0e,0xc0,0xb8,0x73,0xe2,0x01,0xf8,0x92,0xc4,0x44, +0x47,0xc7,0xc4,0xc4,0x70,0xd4,0x37,0xb9,0x19,0x5b,0x5a,0x1c, +0xb0,0x35,0xa8,0xb3,0x6c,0xb6,0x97,0xa6,0xe8,0xc3,0xff,0x36, +0x7a,0x21,0x09,0x6a,0x48,0x01,0xfb,0x79,0xcd,0xd5,0xa6,0xde, +0x6e,0x2e,0x77,0x90,0x92,0xf1,0x58,0x98,0x02,0x89,0xfd,0x98, +0x08,0x0a,0x3a,0xa8,0x80,0x51,0x86,0x10,0x85,0x53,0xf0,0x02, +0x6e,0xea,0xf5,0x80,0x3f,0x59,0x3b,0x77,0x03,0x4f,0xdd,0x63, +0x9c,0x21,0x66,0x18,0x41,0x06,0xae,0xc7,0x35,0xac,0x34,0xcf, +0xa1,0x42,0xc3,0x7a,0x7a,0xb3,0x2a,0xac,0x82,0xcc,0x3e,0x56, +0xbe,0x4f,0xd8,0x47,0x32,0xcc,0x32,0xf6,0x24,0x68,0x51,0x8f, +0x11,0x3a,0xea,0x77,0x53,0x3a,0x85,0xdb,0x8b,0x7a,0x0c,0x8a, +0xe9,0x9f,0x47,0xfd,0x97,0xc3,0x92,0x7d,0xdd,0x4c,0x44,0xed, +0x6f,0x04,0x6d,0x66,0xfa,0xab,0x25,0xc2,0x67,0x04,0x2d,0x98, +0xba,0xc6,0x9a,0xce,0xc2,0x36,0xae,0x05,0x33,0xd8,0xa4,0x9c, +0xc4,0x9c,0x84,0x5c,0xbd,0x0c,0xde,0x69,0xd9,0xae,0x95,0xab, +0xf6,0x35,0x58,0xf3,0x49,0x09,0x0a,0x98,0x01,0x87,0x59,0x27, +0x5c,0xba,0x60,0x3d,0xee,0x39,0x58,0x64,0xc0,0x83,0xc5,0x2d, +0x50,0x80,0x49,0xf5,0xb0,0x8f,0x83,0x74,0x46,0xae,0x89,0xb2, +0xbf,0x07,0x6e,0xee,0xc9,0xb2,0x88,0xb7,0xbd,0xb3,0x95,0x83, +0x23,0x87,0x81,0x4c,0x63,0x6d,0x6d,0x53,0x45,0x3b,0x87,0xfa, +0x18,0x4f,0x42,0x3f,0xf3,0xfb,0xd2,0x7f,0xd0,0x3a,0x88,0xcf, +0xd4,0xcb,0xd8,0x9a,0xb0,0x9b,0x43,0x53,0x35,0x6a,0x7e,0x49, +0xaf,0xcd,0xef,0xfc,0x1b,0x28,0xb0,0x80,0x92,0x6c,0xd8,0xb3, +0x83,0x71,0x3a,0xef,0x1a,0x79,0x48,0xe5,0x75,0x5e,0xc0,0x98, +0xca,0x4b,0x35,0x75,0x4a,0xb7,0x40,0x1f,0xb5,0xd8,0x3a,0xfc, +0x9a,0xe0,0x4c,0xc6,0x33,0x34,0xb1,0x44,0x15,0x4c,0x75,0xd0, +0x85,0x35,0x2e,0x38,0x3e,0xa4,0x02,0xca,0x4c,0xbb,0x74,0xc2, +0x1f,0x0d,0xe7,0x26,0xe9,0x52,0x92,0x89,0x7f,0x62,0xa0,0x9f, +0x34,0xc4,0x1b,0x2b,0xf8,0x42,0x2c,0x2b,0x6e,0x94,0x4e,0x7d, +0x5c,0x08,0x32,0x5c,0xc8,0x8a,0xdd,0x4d,0x24,0xd5,0x3a,0xfd, +0x60,0xbc,0x3e,0x15,0x56,0xd8,0x40,0xc0,0xd5,0xc0,0x36,0x49, +0x58,0xd7,0xff,0xd7,0xf0,0x89,0x8c,0xa2,0x12,0x22,0xaa,0x33, +0x16,0x61,0x49,0x14,0x40,0xa9,0x0a,0xb1,0x50,0x2e,0x5e,0x15, +0xb7,0xb0,0x5b,0x4a,0x8e,0x7d,0xa3,0x22,0x6c,0x63,0xda,0x32, +0x33,0x69,0xb1,0xd3,0x58,0xdd,0x4c,0x05,0xec,0x92,0x56,0xf7, +0xab,0xa3,0x01,0xa8,0x4b,0x87,0x1b,0x4e,0x1c,0xe0,0x6c,0x21, +0x1d,0xe0,0x0c,0x76,0xea,0x6f,0xbc,0x80,0x30,0x45,0x08,0x24, +0x67,0x9f,0x82,0xca,0x00,0x4a,0x87,0x73,0x34,0xa5,0x36,0x64, +0xd4,0x64,0x7b,0x76,0xf0,0x5b,0xec,0x90,0x75,0x5b,0x16,0x94, +0x66,0xc2,0xd7,0xc5,0x35,0x27,0x34,0xa7,0x70,0xb8,0x04,0x17, +0x1b,0x80,0x0a,0x7b,0x7a,0xa5,0x19,0x2a,0x2e,0x40,0xa6,0x5c, +0x9b,0x7f,0xfc,0x53,0x1d,0x4c,0x89,0xfb,0x81,0x8b,0x15,0x7d, +0x07,0x04,0x13,0x26,0x3e,0xea,0x62,0x74,0x84,0xca,0x53,0x54, +0x6f,0x6c,0x59,0x02,0x5b,0x4e,0xa7,0x9e,0x8e,0x3d,0x15,0xaa, +0x08,0xdf,0x88,0x1b,0x09,0xce,0x65,0x32,0xb4,0xa4,0x35,0xcd, +0xad,0xe9,0x19,0x34,0xdc,0x5f,0xd3,0x63,0x71,0xaf,0x1d,0x91, +0x2f,0x1a,0x94,0x2d,0x62,0xc5,0x42,0x54,0x26,0x69,0x06,0x69, +0xdb,0x62,0xf7,0x74,0xa5,0xf2,0xe1,0xe3,0x81,0xf7,0x4e,0x52, +0x88,0x73,0x10,0x6f,0x92,0xdc,0xc7,0x09,0xbf,0x5f,0x7a,0x69, +0x1a,0x4d,0xbb,0xe2,0xf4,0x8a,0x13,0xd4,0x13,0xca,0xf6,0x0b, +0x1e,0xe4,0xce,0x60,0xff,0x78,0xf9,0x57,0xdc,0x2f,0xbd,0x58, +0xff,0x9b,0xce,0x22,0x2c,0x37,0x7e,0xca,0x94,0x6d,0x1c,0xd8, +0x7d,0x5b,0x6f,0xbb,0xed,0x72,0xb7,0xd9,0xc7,0xb2,0xa9,0x2a, +0x4c,0x2b,0xfd,0xa3,0xf1,0x71,0xef,0x63,0xc3,0x97,0x0e,0xa0, +0x70,0x2c,0x77,0x90,0x9f,0x53,0xb8,0xb2,0x72,0x3b,0x25,0xfd, +0x0e,0x62,0xe3,0xdf,0xd3,0xce,0x53,0x64,0x17,0xc8,0xe1,0xdd, +0x66,0x7a,0xfb,0x2c,0xf6,0x75,0x98,0x0d,0x7b,0xde,0xe4,0x70, +0x06,0xba,0x13,0x4a,0xf1,0x6f,0xf9,0xf5,0x58,0xf8,0xf3,0x59, +0x26,0xd9,0xea,0x49,0x94,0xaf,0x9d,0x9c,0xf7,0x9a,0xab,0xfc, +0x37,0xff,0xdc,0x24,0xea,0x91,0x11,0xe1,0x7d,0x9d,0x11,0x81, +0x13,0x2f,0x88,0x1c,0x4b,0xd1,0xc8,0x38,0x41,0x2b,0xf1,0x7d, +0xea,0x8c,0xa7,0xcb,0xa6,0xc1,0x67,0xe4,0x0f,0x88,0x85,0x13, +0x18,0xfb,0x0c,0xc6,0x7a,0xff,0x62,0x8d,0xa1,0x63,0x01,0x9e, +0xc6,0x13,0x70,0x7a,0x2e,0xf6,0x1a,0xbf,0x7a,0xbf,0x97,0x95, +0x27,0x41,0x29,0x81,0x70,0x58,0x0e,0x2b,0x71,0x39,0xc4,0xe2, +0x7b,0x18,0x8b,0xab,0x70,0x25,0xac,0xc2,0x70,0x46,0x30,0xc3, +0x9f,0x88,0x49,0x9b,0x51,0xbd,0x7e,0x95,0x8b,0x1d,0xdf,0xe7, +0x36,0x64,0xd7,0x69,0xc3,0xa1,0xd6,0x32,0x62,0x1f,0x1a,0x5f, +0xa3,0x0a,0x3b,0xb4,0x29,0x72,0xda,0x56,0xe8,0x77,0x5f,0x05, +0x1a,0xa8,0x7e,0x65,0x37,0xaa,0x3e,0x99,0x18,0x0b,0xe2,0x28, +0xcc,0xd8,0x41,0x86,0xf5,0x86,0xf7,0x34,0xed,0xea,0xa8,0xe1, +0xad,0xbe,0xd0,0xbf,0xa6,0x3b,0x24,0x8d,0x05,0x9d,0x23,0x37, +0xae,0xb5,0xdd,0x29,0x1e,0x37,0x2b,0xe4,0x8f,0x6b,0x5a,0xa9, +0x6b,0xe8,0x53,0x9b,0xf7,0xd9,0x44,0x5e,0x2d,0xd6,0xfd,0x6b, +0xb1,0xc4,0x51,0x77,0x11,0x98,0x77,0xed,0xf7,0x1b,0x85,0x8f, +0x69,0xd0,0xd8,0x3b,0x08,0x7b,0xe3,0x98,0xe2,0xb5,0x4f,0x74, +0x61,0xee,0xde,0xc2,0x2e,0x1e,0x67,0x8d,0x6c,0xea,0xb6,0xbe, +0xcd,0xc1,0xa5,0x1e,0xac,0x7a,0xce,0x3c,0x89,0x7f,0x94,0x74, +0x3b,0xd5,0xb7,0x87,0xf7,0xa4,0xaa,0x60,0x12,0x84,0xba,0xca, +0x89,0xc6,0x0a,0xf7,0xbe,0x8c,0x8a,0xb9,0xab,0xfa,0x09,0xa6, +0x9b,0x40,0x20,0x6b,0xb1,0x7d,0xb9,0x2e,0xce,0x34,0xe4,0xf4, +0xe1,0x1c,0xb5,0xfb,0xcc,0xdd,0x09,0x9a,0x3d,0x99,0x7c,0xe8, +0x98,0xdf,0x67,0x01,0xdd,0x1c,0x1e,0xc3,0xcf,0xa8,0xdd,0x27, +0xbf,0x88,0xfe,0x53,0x8a,0x2c,0xf3,0x42,0x96,0x1e,0x5f,0xcf, +0xc9,0x66,0xe3,0x5a,0x72,0xa5,0x78,0xbc,0xa1,0xb9,0x95,0x6b, +0x10,0x8d,0xcd,0x40,0x60,0x3d,0x8e,0xeb,0x7b,0x1a,0xfa,0x73, +0xc6,0x38,0x6a,0x02,0xa3,0xf8,0x31,0xf5,0x2b,0xd2,0x71,0x88, +0x2a,0x54,0xab,0xd3,0xa8,0xb6,0xcf,0x82,0x8a,0x1e,0xac,0x60, +0xa7,0xf7,0x81,0x17,0x81,0xec,0x8b,0xd0,0x72,0x09,0x02,0x33, +0x33,0xfd,0x32,0x7d,0x33,0xbc,0xdb,0x4a,0x79,0xe7,0x2e,0xb3, +0x3e,0xd3,0x56,0xeb,0xa3,0x7c,0xa3,0xfd,0xe6,0xc8,0xe5,0xe7, +0xe6,0x9f,0x57,0x7c,0x08,0x0f,0xa0,0x05,0x1f,0x5c,0x15,0xb6, +0x75,0x8b,0xdb,0x86,0x75,0x75,0xc5,0x65,0xa6,0xc2,0xb2,0x83, +0x78,0x0d,0x5b,0xe0,0x9a,0x1a,0xa5,0x89,0x1f,0xe1,0x9c,0x4f, +0x71,0xb6,0xb2,0xb0,0x0a,0x92,0x08,0xc6,0xdc,0x84,0x18,0x06, +0xee,0xef,0x21,0x98,0x73,0x13,0x72,0x18,0xf1,0x0b,0x9c,0x4a, +0x20,0x66,0x07,0xd2,0x0f,0xaf,0xdc,0x21,0x90,0xb3,0x03,0x73, +0x98,0x5f,0x69,0x84,0x36,0x6b,0x34,0xad,0x31,0x2a,0x73,0xb5, +0xe7,0xbb,0x3d,0xfa,0x9d,0xda,0x1d,0x39,0x50,0xbb,0x4d,0x86, +0xcd,0x46,0xb4,0x9a,0xb4,0xda,0x6a,0x79,0xab,0x6b,0x7a,0x43, +0xba,0xdd,0x9c,0xa8,0x84,0x07,0x88,0x53,0x68,0x5c,0xb5,0x2a, +0x28,0xeb,0xa0,0x32,0xbb,0x23,0x5f,0xea,0xb3,0xe6,0xd7,0xe3, +0x77,0xb7,0x58,0xbd,0x6c,0x85,0xf9,0xac,0xf8,0xcc,0x91,0x8c, +0x0f,0xb5,0x5f,0x2d,0x19,0xb5,0x28,0xe6,0x8f,0x19,0x59,0x6a, +0x68,0x98,0x53,0x1d,0x0f,0x12,0x0e,0x90,0xce,0xed,0x57,0xf6, +0x7d,0xae,0x53,0xd9,0xc1,0xeb,0x37,0x99,0xf4,0xda,0x8e,0x70, +0x30,0xa3,0x0f,0xd7,0x31,0xde,0x0d,0x7e,0x4d,0xa7,0x5a,0x39, +0x50,0xe8,0xa5,0xc1,0x35,0xa5,0x2d,0xb9,0x2b,0xa1,0xcf,0x30, +0x81,0x0f,0xd7,0x3f,0x65,0x1c,0x68,0xce,0xa1,0xaa,0x31,0xbc, +0xcb,0x04,0x58,0xf9,0xda,0x9d,0xa0,0x7e,0x6e,0xa9,0x11,0xb0, +0x8c,0xd5,0x41,0x43,0xc3,0x83,0xd6,0x35,0x96,0x7c,0x7d,0x59, +0x6d,0x65,0x65,0x35,0x87,0xc5,0xec,0xc6,0x02,0xef,0x27,0x2a, +0x50,0xc7,0xb4,0x65,0xa7,0xb5,0xab,0x7e,0xcb,0xea,0xa6,0x2b, +0x50,0xa0,0xdb,0xc8,0xda,0x84,0x25,0x77,0xaa,0x82,0x1b,0x14, +0xb3,0xe7,0x3d,0x2f,0x38,0x47,0x9c,0xe0,0xfc,0xce,0x06,0x86, +0xfb,0x2a,0xe3,0x3b,0x13,0x5b,0x11,0x26,0x31,0xfd,0x25,0xd9, +0x6d,0x09,0xaa,0x49,0x9d,0x17,0x87,0x2f,0x76,0x70,0xe2,0x6c, +0xa6,0xbc,0xb2,0xa4,0xa6,0xa8,0x81,0xc3,0x1a,0x31,0xee,0x6f, +0x3a,0x7e,0x49,0x66,0x45,0x5c,0xae,0x6a,0x3f,0xb2,0x6d,0xb6, +0xf6,0xe4,0x3b,0xcc,0x7b,0x76,0xd4,0xee,0xe1,0x44,0x4d,0x8a, +0xc7,0x4e,0x68,0x3b,0x68,0x9b,0x58,0xd7,0xdb,0xf3,0x03,0x3d, +0x2d,0x57,0x8a,0xbe,0xe0,0x70,0x21,0x25,0x5c,0xa7,0xbb,0x02, +0x47,0x82,0xa5,0x61,0xfb,0x64,0xfb,0x54,0x9d,0x38,0x53,0x89, +0x44,0xcc,0x79,0x63,0x69,0xc6,0xaf,0x59,0xb4,0x14,0x15,0x38, +0x88,0x23,0x49,0x36,0x19,0x76,0xb9,0xf6,0x1c,0xae,0x61,0x72, +0xeb,0xb3,0x9a,0xd2,0xdb,0xa8,0xfe,0x9e,0xfb,0x7b,0xde,0x50, +0x08,0x95,0xb5,0x92,0xd7,0xd1,0x29,0xc6,0x40,0xb8,0x37,0xc0, +0xca,0x57,0x6c,0x25,0x59,0xc6,0x39,0x3b,0x92,0x0e,0xbc,0x99, +0x22,0x94,0x00,0x43,0x88,0xb4,0x50,0xe4,0x9b,0xd4,0x3f,0x62, +0xfe,0x94,0xc6,0x83,0xe7,0x9e,0x5a,0x72,0x74,0x3d,0x27,0x98, +0xf5,0x90,0xe8,0xf8,0xd8,0x4b,0x71,0xa7,0x5f,0xa0,0x02,0x5f, +0x59,0x5b,0xed,0xd0,0xd2,0x58,0x5e,0x97,0x53,0xad,0x18,0x15, +0x17,0x73,0x31,0xfe,0x34,0xcc,0xc0,0x99,0x7c,0x5d,0x13,0x72, +0x30,0x35,0x38,0x25,0xec,0x62,0x68,0x88,0x62,0x58,0x78,0x64, +0x94,0x42,0x7a,0x55,0x7c,0xcb,0xb0,0x52,0xbd,0xae,0x23,0xfb, +0x89,0xbf,0xc9,0xaa,0xf5,0x2a,0x2b,0x7e,0x0d,0x49,0x0d,0xfd, +0x34,0x24,0x54,0x31,0x4c,0x3a,0xdd,0x3f,0xb5,0x32,0xbe,0xa3, +0x5f,0xa9,0x59,0xcf,0x96,0x9d,0xe3,0x6d,0x82,0x93,0x96,0xab, +0xd4,0x58,0xf6,0xb5,0xd4,0x75,0xe4,0xd5,0x2a,0x82,0x0e,0x7a, +0x91,0xef,0x75,0x56,0x62,0x8e,0x01,0xe4,0xa0,0xe7,0x08,0x78, +0x42,0xed,0x00,0x75,0xc2,0x91,0x3b,0xc8,0xab,0xf9,0x5a,0x7f, +0xcd,0x67,0x65,0xce,0xc2,0x79,0x62,0xc1,0x38,0x9e,0x91,0xa8, +0x44,0x12,0x1e,0x7f,0xa1,0x33,0x0f,0x57,0x19,0xc0,0x0a,0x36, +0x0c,0x95,0x0c,0xb6,0xa3,0x82,0x4e,0xb5,0x21,0x0f,0x8a,0xb7, +0x47,0x7f,0x4c,0x84,0xb5,0x1c,0xac,0x47,0x0f,0x66,0x5f,0xbe, +0xcf,0x0d,0x95,0x7e,0xa6,0x3d,0x83,0xf6,0x23,0x28,0xb3,0x86, +0x59,0x0a,0x72,0x85,0x11,0x92,0x63,0x94,0xb3,0xfd,0x35,0x58, +0xba,0xee,0xfd,0x85,0x4f,0x1f,0x87,0xe1,0xd4,0xe8,0x8a,0x9e, +0xa4,0xbd,0x88,0x79,0x49,0xdb,0x1e,0x39,0xef,0xd4,0xc4,0x5c, +0xcb,0xcd,0x36,0x69,0xcd,0x7c,0xb6,0x2e,0x64,0x63,0xe1,0x65, +0x28,0x84,0xea,0x61,0xac,0x86,0x95,0xd2,0x09,0xd8,0x82,0x2d, +0x19,0xeb,0xd4,0x84,0x0f,0xd1,0xff,0x06,0x54,0x74,0x63,0xc5, +0x7d,0x83,0xcd,0x18,0x67,0x0a,0x71,0xfb,0xf0,0xb8,0x05,0x1c, +0xdf,0x4a,0xc9,0x7d,0x48,0x6f,0xe0,0x40,0x50,0x13,0xa5,0x1f, +0x19,0xa6,0x19,0x7b,0x12,0x35,0x5b,0xd3,0xf9,0x20,0x48,0xda, +0x28,0xdd,0xd6,0x62,0x83,0xbd,0x03,0x8e,0xfb,0x1f,0xe7,0xd0, +0xc4,0x8c,0x22,0xba,0xa3,0x6e,0x87,0xdd,0x3c,0xdc,0xaf,0xf8, +0x5d,0xf5,0x1d,0xf3,0xdd,0xed,0xb1,0xca,0x0f,0xdf,0x0e,0x93, +0xf2,0x02,0xab,0xa4,0xc1,0xa4,0xe2,0x87,0xed,0x8f,0x3c,0x1f, +0x1c,0xbe,0x7d,0xb8,0xb4,0x9b,0xdf,0x53,0xbc,0xab,0x68,0x6f, +0x7e,0x67,0x7d,0x5d,0x57,0xc9,0x28,0x07,0x6c,0x17,0x8a,0x4c, +0x66,0x61,0x7a,0x41,0x6a,0xbe,0xb4,0x13,0x52,0xfe,0x89,0xb8, +0xe0,0x4d,0xd4,0xdc,0x28,0x6c,0xf9,0xdf,0x81,0xb0,0x05,0x8e, +0x93,0xad,0xa8,0x7e,0x8f,0x3a,0x32,0x24,0x64,0x23,0xaa,0x3f, +0x64,0x7f,0xa3,0x00,0xff,0x98,0xb1,0xb3,0x9d,0x99,0xbb,0x5e, +0x96,0x61,0xa6,0x79,0x5a,0x6e,0x7e,0x6e,0x51,0x6e,0xb1,0x34, +0xbe,0x25,0x29,0x8d,0x0e,0x55,0x1a,0x30,0x13,0xfe,0x20,0x58, +0x1d,0x8e,0xab,0x2c,0x71,0xb6,0x4a,0xaf,0xbb,0x42,0x0f,0x2c, +0x4f,0x80,0x1d,0xd0,0xa8,0x04,0xfe,0xc2,0x01,0x79,0x02,0xce, +0x9b,0xa0,0xa6,0xef,0x33,0x6d,0xa9,0xb9,0xed,0xaa,0xb2,0x2e, +0xb1,0x8b,0xfd,0x49,0x54,0x22,0xb0,0x74,0x75,0xef,0xb7,0xb0, +0xaa,0x0b,0x57,0xfd,0x01,0x8b,0x3a,0x71,0xd1,0x0f,0xc6,0x2b, +0x70,0xae,0x39,0xcc,0x9d,0x8b,0x4b,0x19,0xb4,0x83,0xdd,0x24, +0xdd,0x5c,0x02,0x77,0xd4,0xe1,0x85,0x5f,0xf6,0xbf,0x79,0x92, +0x02,0x9d,0xc3,0x34,0x84,0xbd,0x71,0x78,0x92,0xde,0x85,0x4a, +0x0e,0x4f,0x70,0xd6,0x20,0xd8,0xdb,0x7f,0x15,0x7c,0x20,0x84, +0x45,0x1f,0x29,0xb5,0xad,0x32,0x6c,0xa3,0xfe,0x61,0x3a,0xc4, +0xfe,0xa3,0xd5,0xb7,0xc0,0x9c,0x0c,0x57,0x8d,0xb4,0xb6,0xb7, +0x39,0xd6,0xf3,0xd6,0xe6,0x86,0x0e,0xba,0x87,0x3d,0x3a,0xbd, +0x7b,0x4f,0x0e,0x71,0xd0,0xd4,0x27,0x9a,0x7c,0x2f,0x28,0x75, +0x8b,0x4a,0x5f,0x09,0x4a,0x3d,0xd2,0x6f,0xb5,0x5e,0xd1,0x5b, +0xdc,0xb4,0xd8,0xe8,0x57,0xbc,0xc7,0x38,0x9d,0x71,0x8a,0x70, +0x3e,0x9b,0xa4,0xc7,0xc3,0xbb,0xe9,0xa0,0x54,0xfa,0x67,0x75, +0x78,0x3f,0x6f,0xe8,0xaf,0x79,0xf2,0x60,0x30,0x07,0xd7,0x7e, +0x63,0x5b,0x70,0xc7,0x2f,0xa8,0x0a,0xbb,0x96,0x56,0xb6,0xf3, +0x5b,0x9a,0x74,0x3b,0xad,0xfb,0x39,0xf1,0x2d,0xf8,0x93,0x04, +0xdd,0x38,0x71,0xd7,0xbb,0xcf,0xdc,0x8f,0xcf,0x35,0xcc,0xdd, +0x96,0x42,0x39,0x40,0xfc,0x6c,0x52,0xfc,0x4d,0xfa,0x4b,0xaa, +0x34,0x71,0x7c,0xc4,0xdc,0xe0,0x4f,0x3c,0x37,0x48,0x51,0x43, +0xfd,0xef,0xf9,0x7f,0x9d,0x59,0x43,0x94,0xc5,0x1b,0xcb,0x4f, +0xe1,0x27,0x4c,0x3a,0x85,0xef,0x1f,0x32,0x1d,0xe9,0x59,0x6d, +0xaa,0xb2,0x2a,0xf1,0x0a,0x0b,0x3c,0xe5,0xeb,0x59,0xee,0xf9, +0x46,0xa9,0x0e,0x6d,0xf9,0x7c,0x50,0xfd,0x89,0x5e,0xff,0x4a, +0xae,0x9d,0x92,0x74,0xd7,0xf0,0x98,0x46,0x55,0xf8,0x10,0x32, +0xba,0xf0,0xdf,0x2f,0x61,0x75,0xf7,0x42,0xb6,0xa0,0xbd,0x70, +0x34,0xa5,0xc1,0x3c,0x83,0x0f,0xb6,0x3a,0xb2,0xf7,0x88,0x19, +0x87,0x0e,0xa6,0xb0,0x6c,0x0e,0xce,0x42,0x73,0x66,0x6f,0x65, +0xc8,0xb8,0x0a,0x1c,0xed,0x61,0xc4,0x66,0x8a,0x4e,0xd2,0xcd, +0xd2,0xf7,0x4c,0xc0,0xe6,0xb0,0xd1,0x80,0x09,0xc9,0x4a,0xb0, +0x39,0xff,0x6f,0x9c,0xf6,0x37,0x4d,0x82,0x53,0x5b,0xdf,0x40, +0x6d,0xb0,0x7a,0x35,0x95,0x88,0xef,0x0a,0x61,0xc2,0xbb,0xac, +0x78,0x10,0xef,0x11,0x28,0x11,0x66,0x60,0x09,0x8b,0x0e,0xcf, +0x49,0x42,0x62,0xf4,0xc5,0xa4,0xd3,0xf0,0xde,0x7a,0xbe,0xb4, +0x19,0xd9,0xbb,0x21,0xf1,0x11,0x9f,0x86,0x51,0xeb,0x0e,0x95, +0xf2,0xf3,0xe5,0xc5,0x95,0xd6,0x2b,0x95,0x98,0x1c,0x67,0xb7, +0x39,0x1e,0x5a,0x63,0xa1,0x52,0x68,0xd3,0x57,0x52,0x5f,0x9a, +0x93,0xa7,0x88,0x31,0xab,0xc9,0xe9,0x81,0x80,0x6b,0x41,0x6d, +0x54,0xef,0x53,0xad,0xd2,0x0e,0xc4,0xe9,0x73,0xe8,0x4c,0x35, +0xae,0xe0,0x9b,0x94,0xbf,0x7b,0x77,0x62,0xe1,0x81,0xec,0x45, +0x08,0x11,0x3b,0xf0,0x67,0x1d,0x13,0xd9,0xea,0x1e,0x43,0x46, +0x54,0x82,0x16,0x82,0x2d,0xf3,0xa0,0x85,0xa5,0x36,0xdb,0x42, +0xa0,0xe5,0x25,0xb6,0xb0,0x03,0xb3,0xa0,0x05,0xa6,0xd0,0x8b, +0xe9,0x10,0xf4,0x0f,0x26,0xd4,0x97,0xfd,0x0f,0xc1,0x50,0xb8, +0x08,0xa1,0xec,0x8d,0x59,0xf4,0x22,0x86,0x5e,0x88,0xf1,0xd2, +0x30,0x8e,0x0a,0x28,0xa1,0x0a,0x0b,0x07,0x67,0xd1,0x2b,0x15, +0x7a,0x25,0xca,0xca,0x48,0x9a,0x65,0xda,0xfe,0x78,0x3d,0x49, +0xd5,0x86,0x02,0xae,0x07,0xb6,0x4b,0xb3,0x6c,0xd7,0xa8,0x40, +0xa4,0x41,0x92,0xff,0xb0,0xb6,0x57,0x93,0xae,0x90,0x1e,0xb1, +0xd9,0x84,0x15,0xbe,0xda,0x4c,0xe4,0xef,0x9b,0x50,0x40,0x1a, +0x64,0x1b,0x60,0xe9,0x6d,0xce,0x09,0x9b,0x99,0xf3,0x0e,0x91, +0x96,0xa7,0x3d,0x38,0x8f,0xf0,0xe0,0x10,0x1b,0x65,0x54,0x64, +0xb2,0x4c,0xa4,0xfd,0x1a,0x8f,0x4b,0x8a,0xfa,0x92,0x55,0x13, +0x9b,0xe3,0xc6,0x2f,0xdd,0xe2,0xc4,0x79,0x4c,0x62,0x61,0x52, +0x79,0x62,0x39,0x27,0xc1,0x72,0x38,0x2f,0xbb,0x4f,0xcc,0xf6, +0xed,0xd6,0xdc,0x6c,0x59,0x61,0xc1,0x7f,0xd7,0x77,0xfb,0x7a, +0x37,0x05,0x06,0x17,0xb6,0x12,0xdb,0x6a,0xa3,0x46,0xe3,0x72, +0x17,0x5b,0xbe,0xcf,0xbd,0xd3,0x85,0x06,0xc3,0xc7,0xf0,0x2e, +0x31,0x84,0xaf,0xfa,0xa5,0x7c,0xce,0x1f,0x13,0xf3,0xbd,0x6a, +0x5b,0x3e,0xd1,0xa7,0x4f,0x34,0x15,0x55,0x14,0x16,0x17,0x72, +0xd2,0x69,0xc7,0xc3,0x6c,0x59,0x49,0x51,0x69,0x41,0x35,0x07, +0x86,0xbb,0x88,0x43,0x8d,0x4e,0xad,0x69,0x89,0xb3,0x1d,0xdf, +0x75,0x78,0xc4,0xb9,0xc9,0x85,0x83,0x85,0xe8,0x39,0x71,0xb0, +0x2b,0x61,0xba,0x52,0xa5,0x01,0xda,0x02,0xf8,0xa0,0x5f,0x9c, +0x67,0x08,0xae,0x58,0xc6,0xfe,0x5f,0xa4,0xbd,0x07,0x74,0x15, +0x47,0xd6,0x35,0xea,0x80,0xba,0x1b,0x8f,0x8d,0xc7,0xa1,0x70, +0x0b,0x6c,0x89,0x6c,0x72,0xce,0x51,0x48,0x48,0x80,0x72,0x0e, +0x57,0xf7,0x2a,0x67,0x09,0x84,0x10,0x28,0x82,0x12,0x08,0x01, +0x46,0x28,0xe7,0x9c,0x73,0x96,0xae,0x72,0x8e,0x64,0x44,0x32, +0x06,0x8c,0x31,0xce,0xd8,0x33,0x63,0x1b,0xdb,0xa7,0xe5,0xd3, +0x9a,0xef,0xaf,0x16,0x61,0x66,0xbe,0x79,0xeb,0x7f,0xeb,0xad, +0x67,0xd6,0x6a,0x95,0xfb,0xea,0xb6,0xba,0xbb,0x4e,0x9d,0xb3, +0xf7,0x39,0xbb,0xaa,0xc4,0x55,0xa6,0xe4,0xe1,0xe5,0x87,0xf7, +0x07,0x6f,0xb9,0xb4,0xf0,0xe6,0x3a,0x5b,0xb6,0x6f,0x36,0x94, +0xf6,0x85,0x58,0x46,0xac,0xdb,0x2c,0x1a,0xa7,0x8a,0x67,0xfd, +0x9e,0x43,0x4e,0x9d,0x0e,0x1c,0xee,0x5b,0xf0,0xbc,0x78,0xb6, +0xc4,0x10,0x97,0x3e,0x2f,0x9e,0x35,0x3f,0x0b,0xbe,0xf7,0xa7, +0x00,0xd3,0x2b,0x14,0x30,0xad,0x22,0x23,0xe6,0xa3,0xfb,0x5a, +0x9e,0x15,0xcf,0x4c,0x2e,0x1a,0x0f,0x72,0x93,0x66,0x18,0x3a, +0x55,0x3c,0x2b,0xbb,0x6c,0x53,0xca,0xfb,0x19,0xcb,0xa7,0x8a, +0x67,0x13,0xe4,0xa5,0x7a,0xd6,0x20,0x85,0x8f,0x3e,0x1c,0x79, +0x30,0xc2,0x97,0x43,0x17,0xfc,0xbb,0x50,0x2c,0xa9,0x67,0xb7, +0x4c,0xde,0x7b,0x31,0x32,0x0a,0x26,0x74,0xc9,0x37,0xc2,0xf2, +0x35,0xac,0xf8,0x6d,0x09,0xc9,0x31,0xcb,0xa1,0x8c,0x9a,0xb2, +0xfb,0x70,0x89,0x63,0x0f,0x72,0xe8,0x20,0xb1,0xbd,0xff,0x4d, +0x2f,0xe6,0xfe,0x46,0x9e,0x08,0xcb,0x97,0xb3,0x14,0xf1,0xfe, +0x41,0xe0,0x74,0x1f,0x9e,0x86,0xd7,0x20,0xbf,0x5f,0xfc,0xce, +0x02,0x72,0xf0,0x35,0x0c,0xb7,0x84,0x70,0x64,0xb0,0xd9,0x7c, +0x82,0x1f,0xc0,0x0e,0x66,0xc6,0x65,0xf8,0x94,0x0c,0x14,0x77, +0x95,0x28,0xcb,0x38,0x74,0x87,0x33,0xac,0x8f,0x5b,0xef,0x94, +0x44,0x4b,0xb5,0x41,0x69,0xdb,0x60,0x5b,0x65,0x53,0xae,0x0a, +0xd7,0xc0,0x93,0x51,0xfa,0x76,0xfa,0xf5,0xfb,0x55,0x74,0xf3, +0x73,0x3a,0xb4,0x94,0xe6,0x14,0x33,0xf8,0xf6,0x60,0x11,0x13, +0x9c,0x17,0x9a,0x7f,0xac,0x80,0x46,0xd5,0x2e,0x71,0x3b,0x93, +0x9c,0x9b,0x94,0x97,0x98,0xc7,0x09,0xfb,0x7a,0xc4,0xcd,0x4c, +0x7c,0x6e,0x5c,0x6e,0x5c,0x9e,0x29,0x35,0x9e,0x80,0x53,0x01, +0xd1,0x01,0x1c,0x4e,0x58,0xc3,0xf7,0xcc,0xc9,0xc0,0xa8,0xc0, +0xc8,0x20,0x0e,0xab,0x64,0x70,0x9e,0x39,0x7e,0x34,0x24,0x20, +0x38,0x90,0xc3,0x5c,0x6b,0x7a,0x7d,0x13,0x1b,0x0d,0xf9,0x52, +0x27,0x8e,0xbe,0x80,0x78,0x92,0x71,0x34,0x33,0x20,0x8b,0x7e, +0xe0,0xcb,0x64,0xe5,0x65,0xe6,0xa7,0xd1,0xeb,0xfb,0x21,0x43, +0xf2,0x02,0xf3,0x83,0x8a,0x82,0x29,0xfb,0x64,0x0a,0x73,0xf2, +0x73,0x73,0xf3,0xb8,0xdd,0xb8,0x85,0xc2,0x66,0x3b,0x43,0x56, +0xb4,0xb3,0x23,0x82,0x9d,0xbe,0x68,0xc7,0x08,0x7e,0x14,0x61, +0x8d,0xda,0x5e,0x30,0x6a,0x7d,0xae,0x2b,0x1b,0x32,0xea,0x90, +0x74,0x65,0x2e,0x64,0xbc,0xbf,0xeb,0x42,0xc5,0xf0,0xff,0x37, +0x5d,0x19,0xf8,0xbc,0x48,0xd9,0x08,0x6f,0x0a,0x61,0xe4,0x44, +0xe6,0x89,0xc4,0xb0,0xf0,0x63,0x61,0x7c,0xcc,0x4f,0xc0,0x0d, +0xd0,0x50,0xbe,0x8d,0x69,0xcd,0x50,0x66,0xd7,0xe7,0x1f,0xe8, +0xe4,0xb7,0x3b,0x20,0xe3,0xb5,0x22,0x34,0xcb,0x8a,0xaf,0x4f, +0x6c,0x49,0x56,0xa6,0x4a,0xe4,0xe6,0x2f,0x6c,0x54,0x4d,0x54, +0x55,0x54,0xa9,0x3c,0x94,0xcf,0x31,0xcd,0xd9,0x9e,0xb2,0x87, +0xf6,0xdc,0xe9,0xdc,0x98,0xdc,0x98,0x3c,0xee,0x09,0x13,0xb6, +0xd4,0x1e,0xdf,0x59,0x8e,0xd3,0x6b,0x8c,0xf9,0xcf,0xff,0x5e, +0xfb,0x74,0x6a,0xe9,0xde,0xf0,0x01,0x89,0xf3,0xc4,0x9d,0x3b, +0x1f,0xad,0xf6,0x2d,0xee,0x6c,0x56,0xaa,0x80,0x96,0xf0,0x19, +0x31,0xc1,0x5e,0x06,0x33,0x6c,0x90,0xe0,0x1c,0xdc,0xac,0xd6, +0x6c,0x05,0x1f,0xc0,0xea,0xc6,0xdf,0xe3,0x40,0x4f,0x35,0x81, +0x39,0x8f,0x5a,0x75,0xf8,0x0a,0x70,0xb8,0xb1,0xb9,0x8f,0xc7, +0xf7,0x60,0x97,0x23,0xbc,0x07,0xc9,0xb3,0x7e,0x83,0xa5,0x24, +0x6a,0x79,0xc8,0xbc,0x43,0x1b,0xbb,0x8f,0xf0,0xe5,0xdf,0x65, +0x3f,0x4d,0xf9,0x3b,0x87,0x23,0xa8,0x24,0x45,0x8f,0x52,0xff, +0x11,0xff,0xc4,0x2a,0x9d,0x8f,0x59,0x15,0xb5,0xd2,0x7f,0x1b, +0x27,0xa6,0x9a,0x90,0x82,0x2f,0x53,0xa8,0x01,0x59,0x4a,0x7e, +0xef,0xc4,0x0a,0x7f,0x49,0xff,0x19,0xfc,0x52,0x46,0xa5,0xf5, +0xe7,0x34,0x69,0xa6,0x9c,0x2e,0xec,0x35,0xc2,0xbd,0xa8,0x01, +0xf3,0x4d,0x51,0x26,0x94,0x80,0x8c,0x6d,0xc1,0x16,0x22,0xfe, +0xca,0x44,0x0e,0x86,0x8e,0x85,0xb6,0x4f,0x09,0x4f,0xb3,0x74, +0x92,0x0d,0x9b,0x33,0x79,0x77,0x68,0x62,0x23,0x3c,0x42,0xdd, +0x42,0xbd,0x68,0xff,0x89,0x1a,0xc3,0xc2,0x74,0x78,0x15,0x9f, +0x0e,0xc0,0x53,0xea,0xa1,0xa6,0x7e,0xbc,0x81,0x03,0x5b,0x98, +0x6c,0x33,0x95,0x6b,0x4c,0x53,0x66,0x06,0x05,0x27,0x88,0x0d, +0x6c,0x76,0x75,0x46,0x7d,0x6a,0x2d,0x07,0x05,0xcc,0xe4,0x24, +0xbe,0x46,0x4a,0x5e,0x78,0xc1,0xe7,0xf2,0xab,0xe7,0x79,0xcc, +0x29,0xbf,0xe6,0xfe,0xe7,0x6b,0x52,0x26,0x31,0x0b,0x7e,0x66, +0x45,0x27,0xfc,0x98,0xfc,0x24,0x2c,0x5e,0xca,0x8a,0x0f,0xc2, +0x49,0x8e,0x65,0xee,0xee,0x94,0xfd,0xd4,0x85,0x85,0x5f,0x0e, +0xb8,0x13,0xd4,0x27,0x6d,0xba,0x75,0x75,0x2a,0xc0,0xbf,0x4c, +0x3c,0x49,0x79,0xde,0x25,0xa0,0x4e,0x7e,0x16,0x16,0x2f,0x62, +0x71,0x8b,0x38,0x83,0xc0,0xd1,0x5e,0x3c,0xfa,0x33,0x24,0xf4, +0x63,0xc2,0xd7,0x26,0x6b,0x71,0x25,0x93,0x56,0x9c,0x5a,0x92, +0x54,0x6c,0x95,0xcd,0xfb,0xef,0xb2,0xdb,0x6d,0xa4,0xdf,0xea, +0xce,0x97,0x55,0x94,0xd4,0x16,0xd4,0x73,0xa0,0xbf,0x08,0x0f, +0x59,0xc1,0x21,0xa4,0xb6,0x6b,0x21,0x08,0xfd,0x58,0xc6,0xcc, +0x98,0xf8,0x1f,0x41,0x49,0x4a,0x86,0x60,0x27,0xe6,0x7c,0x6f, +0xb4,0x12,0x53,0x70,0xe7,0xa0,0x1f,0x8b,0x9a,0x93,0xaf,0xbc, +0x48,0x40,0x9a,0x4d,0x6c,0x24,0xa2,0xfb,0x63,0xc1,0x9d,0x11, +0xff,0x69,0x4f,0x72,0xcc,0xb3,0x35,0x52,0xf6,0x4a,0x37,0x78, +0x35,0xf0,0xd3,0xa0,0x7e,0x29,0x9c,0xbf,0x50,0x32,0x58,0xbc, +0x4c,0x73,0x4f,0xfc,0x80,0x69,0x04,0x50,0x0c,0x47,0x64,0x05, +0x2d,0x18,0x21,0x8b,0x45,0xee,0xef,0xd2,0x26,0x70,0x4b,0xc9, +0x02,0x91,0xfb,0x95,0xc5,0xb9,0x38,0x46,0x26,0x66,0x8e,0x4d, +0xce,0xa4,0x7f,0x7f,0xbd,0xe0,0x4a,0xb2,0xc3,0xb2,0xc3,0x33, +0xc3,0x6b,0xda,0xf9,0x63,0xa9,0xc7,0xd2,0x42,0xd2,0x5a,0x47, +0xaa,0xaf,0x16,0xde,0xe6,0x86,0x0d,0x18,0x8b,0x53,0x5a,0x27, +0x6d,0xd5,0x2c,0xa2,0x8e,0x50,0x7f,0xbc,0x89,0xc9,0xb2,0x54, +0xb9,0xc9,0x3c,0xa8,0xab,0x78,0x94,0xa6,0x9e,0x3c,0x7a,0xfe, +0xfe,0xcd,0x59,0x9f,0x8b,0x73,0xd8,0x8c,0xfc,0xd4,0xfc,0xa4, +0x7c,0x9b,0x5c,0xfe,0xe0,0x7e,0x03,0xed,0x1d,0xe6,0xd5,0x76, +0x7c,0x4b,0x45,0x43,0x4d,0x15,0xf5,0xa3,0xaf,0x31,0x21,0xde, +0x47,0x0f,0xf8,0xfb,0x06,0xa6,0x06,0xa6,0x04,0x26,0x7b,0x3b, +0xf2,0xd9,0x51,0x39,0x51,0xd9,0x91,0x8e,0x2e,0x36,0x9e,0x26, +0x07,0x4a,0x6d,0xf9,0x2b,0xb5,0x43,0x4d,0x9d,0x9d,0xe5,0x21, +0xe5,0xc1,0xa5,0x41,0x76,0x32,0x13,0x85,0x96,0x53,0xa5,0x2d, +0x7f,0xa7,0xe5,0x62,0x4f,0xdf,0x08,0x27,0xee,0x11,0xeb,0x5e, +0xa4,0x80,0x16,0x4e,0xac,0x24,0x15,0xb5,0x25,0x8d,0x05,0x4a, +0xee,0x3b,0x26,0xd0,0xd8,0xd7,0xcc,0xd9,0xd2,0x2f,0xfb,0x50, +0xce,0xc1,0x2c,0x0e,0x8f,0xac,0x21,0x27,0xbb,0x43,0x47,0x9f, +0x63,0xf6,0x74,0x63,0x09,0xb3,0x7b,0x4a,0x42,0x8b,0xff,0x5d, +0xcd,0x4c,0x30,0x22,0x83,0xde,0xe3,0xd6,0xed,0x76,0xb5,0xad, +0xbc,0x55,0xe7,0xfe,0x76,0xcb,0x4a,0x0e,0x3c,0xd7,0x91,0xd6, +0xdd,0x9d,0xf3,0xca,0xd7,0xf6,0x96,0xf0,0x3e,0x8f,0xed,0x7f, +0xa6,0x9c,0x52,0x4c,0xa0,0x6f,0xa6,0xef,0x41,0xf5,0xef,0x19, +0xdf,0x98,0x25,0xf1,0xe1,0x9b,0x5d,0x17,0xca,0xf7,0x73,0x70, +0xed,0x24,0x1d,0xe5,0xa9,0x8d,0xea,0xe0,0x62,0x88,0x47,0xd8, +0x7d,0xe5,0xfe,0x97,0xd4,0x60,0x0d,0xd3,0x9a,0x99,0x25,0x51, +0x3f,0xd6,0x3c,0x43,0x05,0x17,0xd3,0x71,0xee,0xf8,0x62,0x9c, +0x4f,0xb8,0xdd,0x22,0x38,0x97,0x91,0xea,0x49,0x6f,0x3d,0x4f, +0x2d,0xdc,0x30,0x66,0xc5,0x7a,0x1f,0x22,0xfe,0x0f,0xf4,0x08, +0xff,0xc3,0x7e,0x1e,0x4e,0x26,0x57,0x0c,0x4f,0xac,0x60,0xd1, +0x0a,0x77,0x13,0x34,0x02,0x1e,0x8c,0x18,0xfc,0x3b,0x4e,0x23, +0x99,0x36,0x19,0x5a,0x89,0xfa,0x74,0x88,0x9f,0xb8,0x10,0x32, +0x95,0x8a,0xb3,0xc4,0x21,0x52,0xf0,0x38,0xf5,0xe7,0x73,0xcf, +0x12,0x0e,0x51,0x2b,0x8e,0xd0,0x87,0x69,0xb9,0xf2,0xf2,0x4b, +0x46,0xa8,0x4f,0xc0,0x08,0x17,0xa2,0x11,0xa3,0x41,0x39,0x60, +0x7f,0x6f,0xcf,0x83,0xf2,0x1b,0x36,0xe5,0xfc,0x61,0x5d,0xab, +0x6d,0x32,0x3b,0x8e,0xd2,0xf9,0xb5,0xa4,0x4e,0xd6,0xba,0xb3, +0xd4,0xb4,0xa3,0x96,0x3f,0xdc,0x6f,0x7b,0xcf,0x9d,0x52,0x15, +0xa1,0x4a,0x38,0x48,0x0e,0x8d,0xbb,0xdc,0x3c,0xd4,0x54,0xd5, +0x5e,0x7f,0xa9,0x78,0xd4,0x22,0x8f,0xf7,0x37,0x75,0xd5,0x91, +0xeb,0x37,0x1b,0x36,0x6f,0x2f,0xd5,0xa1,0x86,0x5a,0x45,0x12, +0x8e,0xf5,0x97,0xfa,0x8d,0xb9,0x5e,0x3e,0xd8,0xa0,0x5a,0xdf, +0x55,0x33,0x5c,0x32,0x66,0x91,0xcf,0xfb,0x1b,0xba,0xea,0xc9, +0xf4,0xab,0x15,0x35,0x26,0x45,0x96,0xce,0x49,0x7c,0x98,0x6f, +0xf0,0x01,0x7f,0x6f,0x0e,0x8d,0xc4,0xe8,0xe1,0x3e,0x41,0xd3, +0x72,0x58,0x88,0xc6,0x36,0x26,0x23,0x2f,0x9d,0x9a,0x04,0x07, +0x59,0x67,0xc9,0xc1,0xab,0x2e,0x57,0xbd,0x95,0x35,0xad,0xf5, +0x17,0x4b,0x87,0xcd,0x0b,0xf9,0xc3,0xa6,0x4e,0xda,0x76,0x46, +0x6d,0xba,0xad,0x3b,0xcb,0xf4,0xb8,0xc9,0xf7,0xc5,0xd2,0xe7, +0x1e,0xe2,0x87,0x09,0x2f,0x92,0x6b,0x46,0x39,0x82,0xb6,0xa4, +0xe4,0x1e,0x3f,0x72,0x37,0x80,0x86,0xa5,0xe0,0xe7,0x12,0xca, +0x7f,0x1f,0xc3,0xc2,0x3c,0x7c,0x4c,0xe0,0x91,0xa0,0x89,0x8f, +0x58,0x71,0x5a,0x16,0x19,0xa9,0x1e,0x6e,0xea,0x51,0xb6,0x7a, +0xb4,0xb8,0xd5,0x7a,0xd4,0x2b,0x79,0xef,0x6a,0xa7,0x5a,0x87, +0x9a,0x96,0xa6,0xda,0xe6,0xd2,0x26,0xbb,0x32,0xfe,0xb0,0x9b, +0xbb,0xb3,0x93,0xab,0xa2,0x46,0x5e,0xed,0x54,0xe2,0xe9,0xc0, +0x37,0xfa,0x2b,0x7d,0x94,0xde,0xb6,0xce,0x96,0x6e,0x56,0x87, +0xb8,0x19,0x3d,0x10,0x4d,0x1e,0x66,0x3d,0x2d,0xbd,0x5b,0x1a, +0xd9,0xc9,0x3b,0x85,0xd9,0x86,0xc9,0xc2,0x39,0x58,0x4b,0xb9, +0x4d,0xde,0xea,0xc6,0xbd,0x63,0x0e,0x4d,0xbe,0x35,0xb1,0xa9, +0xed,0x95,0x32,0xfe,0x4e,0xf3,0x85,0xe6,0xae,0xce,0x1e,0xab, +0x8b,0xf6,0x9f,0xda,0x57,0xf4,0xf1,0x9a,0xcd,0x86,0x4d,0xb6, +0x1d,0xfd,0xd7,0x6a,0x1f,0x64,0xc3,0xab,0xdc,0xa5,0x7e,0xac, +0x65,0xd2,0x2b,0x53,0x2b,0x13,0x2b,0xcd,0x53,0x78,0xdf,0xf9, +0xf2,0x55,0x5a,0xdb,0x5a,0xdc,0xf8,0xb2,0xca,0x82,0xaa,0xbc, +0x9a,0xdc,0x1d,0x55,0x7a,0x6d,0x66,0x0a,0x3b,0x13,0x57,0x0d, +0xb7,0xdc,0xef,0x78,0x45,0x61,0xc0,0x02,0xeb,0x7a,0xaf,0x81, +0xe0,0x3b,0xaa,0x30,0xa7,0x1b,0x97,0x32,0x31,0x25,0x67,0x4a, +0xcf,0x56,0x70,0x14,0x69,0x9b,0x8b,0x44,0x3c,0xc9,0xf8,0x9f, +0xf2,0x3f,0x75,0x34,0x86,0x13,0xe6,0x0b,0xd4,0x5d,0x16,0x7f, +0x0f,0xc5,0x0c,0x0c,0x62,0x3b,0xb1,0x1f,0xf2,0xb9,0x16,0xf2, +0x0d,0x07,0x3a,0xcc,0xb1,0xb5,0x87,0x74,0xec,0x4d,0x39,0xf1, +0xe6,0x55,0xf2,0x10,0xd4,0xd9,0x73,0x07,0x63,0x7d,0xe3,0xfc, +0x38,0x60,0xf0,0x11,0x19,0x70,0x1b,0xb5,0xeb,0x56,0x34,0x29, +0x79,0x8b,0x2e,0xf3,0x16,0x93,0x3a,0xce,0x1c,0xcf,0xfe,0xbf, +0xaa,0x5c,0x86,0xc0,0x90,0x8c,0xea,0x8d,0x68,0x2a,0x77,0x74, +0xd7,0xf2,0xf2,0xcf,0x4d,0xc7,0x8d,0x2e,0x49,0x75,0xd5,0x24, +0x32,0x7e,0xa3,0xed,0x41,0xf9,0x6d,0xcb,0x62,0xde,0x4f,0x47, +0xbe,0x5d,0xcf,0x90,0x9b,0xf1,0xa7,0x3c,0x80,0xac,0xca,0xd9, +0x50,0xac,0x51,0xf5,0x40,0x79,0xa9,0xa7,0x79,0x98,0x6b,0x46, +0x60,0x0b,0x8a,0xf2,0x4b,0xb2,0x4b,0x38,0x68,0x82,0x2b,0xa2, +0x3f,0x93,0x53,0x98,0x5d,0x9c,0x59,0xca,0x09,0x47,0x06,0x45, +0x1b,0x26,0x99,0x46,0xf0,0x84,0x3c,0xe3,0x2c,0x3e,0xd4,0xd8, +0x6a,0x89,0xa1,0x79,0x8b,0x1d,0x9f,0x9e,0x96,0x9e,0x91,0x9e, +0xc9,0xe1,0x10,0xa8,0xb2,0x8a,0xbd,0x1b,0xb5,0x97,0x2b,0xca, +0xec,0xf8,0xfa,0xdc,0xba,0x82,0x9a,0x92,0x7a,0xa7,0x76,0x8f, +0x5e,0x9f,0x2d,0x5e,0xcb,0xfd,0xe6,0x05,0xe5,0x5b,0xf2,0x30, +0x3d,0x1f,0xa6,0x55,0xff,0xa8,0x7c,0xec,0xf4,0x8b,0x0f,0xbc, +0xee,0xcf,0x4d,0x3a,0xc6,0xbe,0x44,0xa3,0x42,0x1b,0x09,0xbf, +0x14,0x78,0x33,0xa8,0x57,0xaa,0x33,0x59,0xe5,0x68,0xa5,0xe8, +0x71,0xe8,0x8f,0xaf,0x3c,0x97,0xbd,0xfc,0x1b,0x43,0x6f,0x03, +0x5f,0xb2,0x5d,0x7c,0xe5,0x1e,0x2b,0xbc,0x22,0x31,0x30,0xf1, +0x95,0x87,0x2c,0xfc,0x0d,0x33,0x88,0xbd,0xa3,0x85,0x9b,0xae, +0x97,0x7e,0xb5,0x55,0xbd,0x5b,0x0b,0x1d,0x06,0x66,0xd0,0x4b, +0x12,0x9b,0x63,0xeb,0xce,0x75,0xd0,0x3b,0x63,0x62,0x73,0xce, +0xe5,0x9c,0xcb,0xe5,0xa0,0x17,0x22,0xb0,0xa7,0x99,0x79,0x7c, +0x1e,0xe6,0x24,0x7c,0x5e,0x78,0xa0,0x95,0x5f,0x7d,0x74,0x6e, +0x34,0xce,0x39,0xcd,0xa1,0x29,0x8b,0x6a,0xb1,0xc8,0xe8,0xce, +0xa3,0xfc,0xac,0xa2,0x37,0xab,0x37,0xb9,0x4f,0x15,0xe2,0x99, +0xb3,0x87,0xcf,0x06,0x9f,0x3a,0xc2,0xf9,0x9d,0x3a,0x1e,0xe5, +0x2a,0x2d,0x86,0x22,0x53,0xf9,0x96,0xb9,0x5a,0x56,0xdc,0x99, +0xac,0x0e,0x9f,0x09,0xb6,0x64,0x3e,0x6b,0x97,0x17,0xd2,0xae, +0x76,0x81,0x69,0x4a,0xcf,0xa9,0x57,0xbf,0xca,0xda,0x64,0xaa, +0xac,0xb5,0x60,0x43,0xa3,0xe3,0x32,0xd5,0x61,0x29,0xc6,0xb1, +0x4b,0x4f,0xc9,0xb7,0x59,0xa9,0xd5,0x3b,0x8e,0x77,0x95,0x75, +0x9d,0xff,0x5a,0x15,0x83,0x70,0x36,0xc1,0x98,0x6e,0x88,0x61, +0xa4,0x85,0x1d,0x48,0x1f,0xc4,0x50,0xac,0x3c,0x80,0xe7,0xc8, +0xbe,0x1c,0xa3,0x42,0xf3,0xb2,0xe1,0xe6,0xce,0xee,0xba,0x51, +0xae,0x5d,0x5c,0x64,0x0d,0x8f,0x59,0x6f,0x07,0x27,0x67,0x0b, +0x4f,0x59,0xa5,0x7d,0xad,0x73,0xb3,0xb3,0x27,0x5f,0xe7,0xda, +0xe8,0xd5,0xe6,0x23,0x3b,0x62,0x1a,0xbc,0xef,0x78,0xbe,0x15, +0x7f,0x37,0xeb,0x7a,0xf1,0x68,0xf5,0x05,0x8f,0xf1,0x83,0x9f, +0x1f,0xe6,0xc4,0x64,0x27,0xf2,0x4c,0xc4,0xd5,0xa0,0xe4,0x29, +0x32,0xad,0x37,0xab,0xe6,0x8c,0xf0,0x38,0x71,0x9e,0x02,0xa4, +0xcb,0x0c,0x71,0xf9,0x7f,0xaa,0xb9,0xee,0x4f,0x99,0xc9,0xff, +0x52,0x73,0xc9,0x29,0x20,0xfd,0x37,0x35,0xd7,0x78,0xf9,0x15, +0x0a,0x48,0x0f,0x19,0x3f,0x53,0x73,0xfd,0x69,0x34,0x61,0x4d, +0x06,0x44,0x37,0x36,0x39,0x3f,0xb1,0x20,0xb1,0xd0,0x2c,0x83, +0x3f,0xb4,0xdc,0x6e,0xab,0x8e,0x66,0x9b,0x13,0xdf,0xd2,0x53, +0xdb,0x5d,0x4a,0xa3,0x55,0xc2,0x64,0xe1,0x8b,0xfa,0xd5,0x5e, +0xa1,0x46,0x2a,0xf3,0xdc,0x0d,0x1a,0x90,0xa0,0x8d,0x59,0xce, +0xae,0x64,0x4a,0xf1,0x64,0xcb,0xa6,0xa0,0x68,0xec,0x33,0x24, +0x11,0xb5,0xc2,0x9f,0x12,0x86,0x37,0x21,0x8d,0x88,0x47,0x2d, +0x85,0xa3,0xcc,0x29,0xf1,0x06,0x71,0xf9,0x32,0x9a,0x8e,0x98, +0xdd,0xb3,0x9e,0x88,0x59,0x96,0x82,0xa3,0x1b,0x8b,0x3a,0x29, +0xb8,0x41,0xb9,0x56,0xad,0xd4,0xec,0x6a,0x52,0xc2,0xe5,0x6c, +0xd0,0xe6,0xad,0x0b,0x55,0xf0,0x17,0x23,0x12,0xdd,0x03,0x7e, +0x3d,0xe8,0x07,0x5b,0xcc,0x70,0x0b,0x1e,0xb4,0x06,0x63,0xc6, +0x5d,0x7b,0xb7,0xe5,0x5c,0xeb,0x72,0x5b,0x1e,0xde,0xbb,0x74, +0x7d,0x38,0x43,0x5a,0xa5,0x2a,0x64,0x10,0x76,0x32,0xa9,0x71, +0x9f,0x24,0x45,0xab,0x81,0x29,0xce,0xae,0x52,0xa2,0x01,0xcc, +0x0c,0x4b,0x8e,0x8a,0x0d,0x3f,0xae,0x8a,0x33,0x40,0x8d,0xf8, +0xb5,0x78,0x34,0xfb,0x54,0x39,0x1e,0xe0,0xab,0x3d,0xab,0x5c, +0x4a,0x9c,0x38,0x68,0x85,0x05,0xe4,0xb0,0x93,0xa7,0xa3,0xd7, +0x81,0x66,0x1f,0xbe,0xaa,0xaa,0xbe,0xb5,0xa4,0x99,0x9b,0x71, +0x77,0x82,0x23,0x96,0xc2,0xf2,0x3e,0xd4,0xfa,0x1c,0x64,0x7d, +0x28,0xbb,0x61,0xb4,0x07,0x6d,0x2d,0xc1,0x76,0x0b,0x0b,0xd5, +0x86,0xe4,0x59,0xcf,0x72,0x30,0x77,0x3e,0xf3,0x7f,0x33,0x85, +0xd8,0xe7,0xa6,0x20,0xb8,0x51,0x27,0xf7,0xff,0xb7,0xb3,0x3f, +0x81,0xbf,0x92,0x5e,0x58,0x2d,0xae,0xc7,0xd5,0xbd,0x0a,0xb8, +0xcc,0x9c,0x1a,0x20,0x38,0xf0,0x03,0x0c,0x30,0x20,0xa7,0xee, +0xc2,0xa2,0xc3,0xbc,0xd9,0xa4,0x8e,0xd2,0x9b,0x41,0xf7,0x11, +0x7b,0x29,0x93,0xab,0xb7,0x85,0x38,0x44,0x48,0xee,0x62,0x9f, +0x01,0xea,0xb2,0x3b,0x4a,0x24,0x77,0xd1,0x28,0xb9,0x8b,0x16, +0xf5,0xef,0xa6,0xec,0xe0,0x2d,0x6a,0x07,0x3a,0x64,0xd4,0x70, +0x54,0x4b,0xa9,0xd1,0x55,0xc7,0xcb,0xef,0x99,0x5e,0x33,0xbc, +0x20,0xd9,0x41,0x2c,0x19,0xbf,0xde,0xfe,0x59,0xd9,0x4d,0x2b, +0xea,0x2e,0xf6,0xcb,0x77,0xe9,0x1a,0x53,0x3b,0xf8,0xf0,0x1c, +0xc1,0xc5,0x8c,0x63,0x44,0x5a,0x87,0x3a,0xf4,0x80,0xb3,0xa0, +0x4a,0x49,0x52,0x7a,0x55,0x5a,0x65,0x52,0x85,0x49,0x32,0x1f, +0xe5,0x1d,0xe1,0x71,0xcc,0x83,0x43,0x1b,0x51,0x15,0xde,0x64, +0xa2,0x71,0xaf,0x01,0xe5,0x13,0x8b,0xd7,0xd6,0x4b,0x0b,0x17, +0xc2,0x6b,0xa3,0x74,0xd0,0x81,0x01,0xf7,0x08,0x47,0x98,0x1d, +0xc5,0x07,0xef,0xaa,0xc1,0x7a,0xa6,0x31,0x27,0xb7,0x89,0xa2, +0x69,0xd3,0x0c,0x95,0xc9,0xb5,0xb8,0xfe,0x05,0x28,0xd0,0x9d, +0x48,0x26,0x38,0x0d,0xf7,0xc0,0x34,0x16,0x8e,0xd3,0xc8,0x09, +0xd3,0x40,0x1f,0xa7,0xb1,0xe2,0x09,0x7c,0x9b,0x84,0x5f,0x0b, +0xfa,0x34,0x50,0x2a,0x46,0xe7,0x9a,0x67,0xef,0x92,0xaa,0x87, +0x07,0x57,0xfe,0x77,0x35,0xf8,0x2e,0x6c,0x26,0xf8,0x26,0xbd, +0xc0,0x9b,0xd2,0x05,0xde,0x24,0xf0,0x26,0xbd,0xc0,0x9b,0xac, +0x89,0x06,0x89,0x34,0x0e,0xd9,0x73,0xd4,0xfc,0xd0,0x69,0x3e, +0xd1,0x7a,0x28,0xf1,0x52,0xea,0x40,0x86,0x6a,0xaa,0x87,0xb2, +0xe0,0x58,0xc7,0xc1,0xdb,0x01,0xcd,0xaa,0xce,0xc1,0x29,0x47, +0xd3,0x3d,0xd3,0x3d,0x55,0xa5,0x45,0x49,0x0f,0xc6,0xe4,0xf6, +0x67,0x8c,0xa6,0x0e,0x4c,0xad,0xb5,0xf5,0x94,0x74,0x59,0xc2, +0x87,0xa8,0xfb,0x18,0x82,0xba,0x30,0xe8,0x33,0x76,0x38,0x75, +0x2c,0xb3,0x3b,0xf7,0x60,0x1b,0xaf,0xe1,0x8b,0xd3,0xfc,0x37, +0x9d,0xc8,0x90,0xf3,0x79,0xb1,0xf9,0xe7,0x0b,0xce,0x73,0x3a, +0xf8,0xe6,0x3f,0xd8,0xd2,0xc4,0x92,0xa4,0xc2,0xe4,0x43,0x4a, +0x7e,0xb7,0xef,0x82,0x90,0x35,0x51,0xa9,0xb6,0x7c,0x7b,0x5c, +0x5f,0x52,0x5f,0x0a,0xb7,0x1e,0x8d,0x64,0x60,0xb4,0x1e,0xb5, +0xe4,0xa0,0xb5,0x16,0x2d,0x64,0x60,0xb1,0x02,0xb5,0x14,0x34, +0x32,0x1d,0xd2,0xd2,0xdc,0xb6,0x48,0xb7,0x4a,0xc6,0xc3,0x8c, +0xcf,0x7b,0x3f,0x4f,0xbe,0x4a,0xed,0x37,0x65,0x80,0xb2,0xf6, +0x37,0xb1,0xad,0x1f,0x52,0x12,0x99,0x34,0xcd,0xd1,0xdd,0xf0, +0xfe,0xb6,0xb2,0x5e,0x7e,0xf1,0xd8,0xe6,0xdb,0x3e,0x94,0x08, +0xaf,0x87,0x39,0xcc,0xa4,0xbe,0xa8,0x49,0xe3,0xac,0x29,0x8d, +0xb3,0xf7,0x27,0xdc,0x49,0x8a,0x22,0x4d,0x37,0xce,0x8c,0x22, +0x8c,0xe8,0x81,0xe3,0x97,0xc3,0xdb,0x39,0xb4,0xa0,0x00,0xb2, +0xe0,0xab,0x94,0x5f,0x63,0xff,0xa0,0x63,0xee,0xcc,0xbc,0xa8, +0xe5,0x47,0xd6,0x73,0x13,0xef,0x40,0x2a,0x59,0x8f,0x6f,0x3e, +0x96,0xf6,0x2e,0x9a,0x25,0xad,0x15,0xf1,0x35,0x0b,0x03,0x6b, +0x09,0xbe,0xff,0x35,0xbc,0xcf,0xe0,0x00,0xaa,0xd1,0xd7,0xb5, +0x02,0xdf,0x64,0x40,0xf3,0x07,0x02,0xef,0xaf,0xc0,0xf7,0x29, +0x15,0xdf,0x33,0x71,0x8a,0x48,0xec,0x2c,0x20,0x2a,0x20,0xcc, +0x5f,0x8a,0xdf,0xc5,0x90,0x8f,0x6f,0x20,0xcf,0xa4,0x59,0x49, +0x92,0xba,0xee,0xcc,0x9c,0x36,0xf5,0x3f,0x20,0x11,0x8a,0x51, +0xc9,0xa6,0xe6,0x27,0x17,0x26,0x52,0x4a,0xf6,0x73,0xff,0xe4, +0x00,0xce,0x63,0xd0,0x84,0xb2,0x49,0x9d,0xb9,0x6a,0x7d,0x1e, +0x2a,0x77,0x61,0x46,0x06,0x85,0x36,0xc6,0xb3,0x84,0x5f,0x37, +0x10,0xd1,0x65,0x4c,0x70,0x61,0x44,0x17,0xd4,0x24,0x97,0x05, +0x17,0x5d,0x56,0x7c,0x88,0xd1,0xe4,0x5e,0xdd,0x8d,0xee,0xbe, +0x41,0xe7,0x3a,0xde,0xda,0x6a,0xaf,0xfd,0x2e,0x4f,0x4e,0x48, +0xfb,0x8a,0x5c,0x73,0xbb,0x67,0xd9,0xaf,0xa8,0x6f,0xe5,0xcd, +0x3a,0x36,0x0f,0xea,0x57,0x72,0xa8,0x44,0x1f,0x32,0xe8,0x31, +0xea,0xd8,0x6d,0xdf,0xd8,0xca,0x5b,0xb4,0x9b,0x35,0x99,0xd4, +0x70,0xa6,0x18,0x25,0xd5,0x2b,0x1a,0xa6,0xea,0x15,0xbb,0x9f, +0xd7,0x2b,0x94,0x2f,0xeb,0x15,0xd4,0xca,0xa7,0x53,0x2b,0xdf, +0x49,0xc6,0x8c,0xc7,0xb4,0x9f,0xd7,0x2b,0x8c,0xaf,0x18,0x8e, +0x48,0xd4,0x2f,0x86,0x8c,0x5f,0xed,0xb8,0x53,0x7e,0xc3,0x4a, +0xaa,0x57,0xd8,0xee,0xd6,0x35,0xa5,0xf4,0xfb,0x0f,0xe1,0x0f, +0xd2,0x91,0x93,0xd9,0xa4,0xde,0xc7,0x9a,0xa4,0xa8,0xec,0x17, +0xdf,0x64,0x1d,0xc3,0x12,0x9a,0xd4,0xf3,0x59,0xd8,0x9e,0x08, +0xeb,0x53,0x61,0x5e,0xb1,0x7f,0x17,0x8f,0xef,0xf8,0xe3,0x86, +0xe3,0xb8,0x3e,0x86,0xbb,0x60,0x8c,0x73,0xd8,0xbd,0x25,0x47, +0xc6,0xd5,0x30,0x65,0x52,0xe3,0x39,0x35,0x7f,0x44,0x7b,0x24, +0x5d,0x91,0xa1,0x9b,0x60,0x4a,0x21,0xfd,0x89,0xc1,0xd0,0x2b, +0xc7,0xda,0x25,0x6d,0xc9,0x54,0x86,0xee,0x45,0x1e,0xe9,0x59, +0xb1,0xfb,0x4d,0x0c,0x26,0xc2,0x2e,0x23,0xf1,0xa8,0xf0,0xb4, +0x9f,0x75,0x1e,0x22,0xc2,0xab,0xe2,0x0e,0xf1,0x55,0x56,0x78, +0x1d,0xae,0x12,0x4b,0xbc,0xd8,0xc7,0xc2,0xc5,0x85,0xc4,0x02, +0x2f,0xf6,0xd3,0xc6,0x7c,0x62,0x8a,0x17,0x87,0x58,0x0c,0x11, +0x67,0x92,0xaf,0x0b,0xbf,0x6b,0xb8,0xac,0xf4,0x68,0xe1,0x75, +0x5d,0x37,0x78,0xae,0x3f,0xca,0x09,0x8b,0xdb,0xc9,0xdd,0xc3, +0x5f,0x78,0x3f,0x72,0x2a,0xe9,0xe5,0x77,0x36,0x6c,0xaa,0xde, +0x28,0xed,0xe3,0x96,0x2e,0x0c,0x11,0xb7,0x33,0x5e,0xa7,0x0e, +0xaa,0xcd,0x9d,0xa2,0x67,0xb0,0x98,0xf1,0xd3,0xb5,0xb2,0x5b, +0x61,0x57,0x6d,0xc3,0xff,0xde,0x77,0xe1,0x42,0x39,0x05,0x20, +0x96,0x20,0x33,0xa5,0x34,0xee,0xaf,0x4c,0x42,0x65,0x6c,0x75, +0xfd,0xac,0xef,0xc1,0x79,0x90,0xa2,0x88,0xe2,0xba,0x82,0xc6, +0xf4,0x1a,0x8b,0x6c,0x3e,0xd4,0xc5,0xdf,0xce,0xc7,0x91,0xc3, +0x45,0x4c,0x67,0x61,0x68,0xbd,0x7f,0x43,0x40,0x99,0xaa,0xd5, +0xe1,0x7c,0xbf,0x22,0xe7,0x4c,0x0f,0x55,0x9c,0x69,0x06,0xce, +0x0c,0x9c,0x11,0x17,0x93,0xc1,0x0b,0xb5,0x17,0xf2,0xae,0x73, +0x10,0x89,0x6f,0x51,0x0c,0x24,0x15,0x67,0x67,0x32,0xed,0xd9, +0xd9,0x4a,0x75,0xc1,0x17,0x1f,0xa2,0x06,0x8b,0xf3,0x0e,0x2f, +0x5e,0xb6,0x54,0x4d,0xf8,0x10,0xfe,0x24,0xe8,0xf5,0x13,0x78, +0x31,0x78,0x04,0xe3,0x48,0x7c,0xd5,0xf9,0xea,0x58,0xca,0x29, +0xbc,0x16,0x31,0xe2,0x0e,0xac,0x21,0x03,0xae,0x23,0xf2,0x6e, +0x79,0x73,0x0b,0x6f,0xd9,0x6d,0xde,0x6a,0xd2,0xc0,0x59,0x62, +0xce,0x73,0xc9,0x8b,0x83,0x01,0x3a,0x53,0xc0,0x23,0x49,0x5e, +0x2a,0x9f,0x4d,0xe1,0xf8,0x85,0x35,0xcc,0x53,0x41,0xc2,0x0e, +0x82,0x35,0x19,0xdd,0x37,0xbc,0xab,0x65,0x6b,0x4f,0x0d,0xaf, +0xf8,0xd2,0xec,0xa6,0xf1,0x55,0x6e,0xd2,0x10,0xb3,0xc8,0xf5, +0xdb,0x6d,0x5f,0x94,0x7e,0x66,0x49,0x01,0xea,0x1e,0xc5,0x66, +0x5d,0x3d,0x8a,0x0c,0x7e,0x9e,0xb8,0x47,0xdc,0x0c,0x36,0x19, +0xe2,0xfb,0x56,0xc5,0x96,0x7c,0x4b,0x4e,0x13,0x85,0x2a,0x9c, +0x1c,0xea,0x3b,0xb1,0x96,0xbd,0xd8,0xd0,0xd5,0x5a,0xd0,0xcb, +0x25,0x32,0x75,0x1b,0xe0,0x83,0x7d,0x30,0xcf,0xac,0xb8,0x9f, +0xc7,0x25,0x43,0x73,0xc6,0x6c,0x6f,0x50,0xda,0xf2,0xcf,0x05, +0x2f,0xe0,0x8a,0x99,0xd0,0x41,0xc2,0x2f,0x06,0x48,0x70,0x25, +0x48,0x82,0x2b,0x7b,0x24,0xb8,0x72,0x04,0x5f,0xfd,0x6f,0xb8, +0x72,0x1f,0x64,0x44,0x0c,0xda,0xc0,0xe0,0xc1,0x20,0x5c,0xb7, +0x05,0x67,0xab,0xb5,0xd9,0x8d,0x3d,0x5b,0xff,0x96,0xa8,0x0a, +0xfb,0x18,0x13,0xd0,0x26,0xe2,0xb4,0x46,0xa6,0x41,0xa0,0xfe, +0x6d,0x3a,0x3a,0x92,0xd8,0x92,0x73,0xa5,0xe7,0xca,0x38,0x41, +0x65,0x2b,0x83,0x43,0xe2,0x2c,0xd2,0x0e,0xf7,0x14,0x23,0x50, +0x2e,0x1a,0x62,0x39,0x2b,0xbc,0x07,0x47,0x08,0xbe,0x87,0xf7, +0xe0,0x3d,0xca,0x49,0x26,0xa4,0x9d,0x87,0xde,0x18,0xba,0x03, +0xc6,0x3b,0x87,0xee,0x82,0x8c,0x32,0xe9,0x37,0x30,0xf9,0x1a, +0x28,0x7b,0x37,0xb0,0xa5,0xad,0xce,0xf9,0xd6,0x39,0x0e,0xe9, +0xaa,0x07,0xed,0x94,0x61,0xdd,0xc1,0x4d,0x81,0xaa,0xa8,0x78, +0x62,0xb2,0x1c,0xeb,0xac,0xa0,0x6e,0x2f,0x23,0xbe,0x39,0x69, +0xf6,0x52,0x22,0xe0,0x2d,0x49,0x04,0xa4,0x5c,0x67,0xf6,0x4b, +0x89,0x80,0x0b,0xb5,0xd1,0xa2,0xaf,0x53,0xff,0x53,0x22,0x20, +0x5c,0x02,0x57,0xa2,0x81,0xc6,0x77,0x58,0x38,0xa3,0x41,0xee, +0xd0,0xbf,0xc7,0x8a,0x46,0x32,0x02,0xc6,0xbb,0xd0,0x98,0xf6, +0xfe,0xcc,0x4f,0x41,0xb6,0x8b,0x3d,0x80,0x5a,0x84,0xc6,0x47, +0xd1,0xc3,0x52,0xf0,0xc0,0x35,0xb8,0x9f,0xcd,0x35,0xff,0x97, +0xee,0xee,0x63,0x78,0xbf,0x8f,0x15,0x3b,0x91,0x21,0xbd,0x87, +0xba,0xbd,0xda,0xbc,0x6a,0x5a,0x79,0x79,0x8d,0x75,0x95,0x6d, +0x11,0x37,0xe3,0xcb,0x89,0x62,0x72,0xf9,0xc0,0x98,0xe7,0x90, +0x53,0x75,0x07,0x6f,0xd1,0xac,0xd3,0x60,0x48,0xdf,0xc0,0x11, +0xf1,0x00,0xc1,0x0f,0x87,0xe1,0x43,0x70,0x5d,0x89,0x1f,0xb0, +0xe9,0x32,0x15,0x78,0x95,0xe9,0xcb,0x2a,0xa4,0x97,0x12,0x31, +0x98,0x1d,0xa9,0xb9,0xd2,0xd6,0xd1,0xce,0x29,0xc5,0x34,0x6b, +0x61,0x07,0xeb,0xec,0x65,0xe1,0x25,0x3f,0x64,0x53,0x65,0x59, +0xe9,0x94,0xeb,0xe9,0xcc,0xd7,0x87,0xb4,0xf8,0x37,0x1d,0xe6, +0x30,0x5a,0xdc,0x35,0x0a,0x73,0x19,0xfc,0x00,0xec,0x89,0x71, +0x8b,0x6e,0xbd,0x5e,0x85,0x87,0x8c,0xbf,0xea,0x33,0xe8,0x7d, +0x45,0xc1,0x09,0xaf,0xa5,0x13,0x54,0x8c,0x83,0x82,0x19,0xd6, +0x26,0xe3,0xe0,0xaa,0xcd,0x8a,0x1e,0x72,0x02,0x0a,0x4d,0x54, +0x30,0x90,0x76,0x8b,0x80,0xab,0x26,0xba,0x32,0xe2,0x30,0xca, +0xc9,0xe5,0xd1,0xcb,0x5f,0x28,0x6f,0xc9,0xaa,0x79,0xfb,0x3d, +0xba,0x9b,0x0d,0x2c,0x39,0xe1,0x6d,0x5b,0xd2,0xe7,0x31,0xec, +0xd8,0xe9,0x40,0x61,0xb9,0x55,0xbb,0x45,0xa3,0x59,0x0d,0x27, +0x55,0xf7,0x9d,0xa6,0x2a,0xa6,0xeb,0x0c,0x70,0x3d,0xbb,0xb3, +0x24,0x80,0xe2,0xad,0x26,0x8a,0xb7,0xa8,0x95,0x3e,0x9c,0x4a, +0x00,0x4e,0xa3,0x56,0xba,0x91,0x8c,0x9a,0x8e,0xee,0x6d,0xd1, +0xa6,0x1e,0x48,0x71,0xdb,0xe4,0x92,0xd1,0x30,0x37,0x69,0x8a, +0x11,0x64,0xfc,0x52,0xfb,0xad,0xb2,0xab,0x12,0xde,0x32,0x90, +0xef,0xd1,0x33,0xa7,0xa3,0xd6,0x5d,0x62,0x9c,0xa6,0x12,0xe3, +0x6c,0x82,0x21,0xd2,0x8f,0xbd,0x3f,0x41,0x0e,0xe4,0xa0,0xce, +0x3f,0xc0,0xbd,0x7f,0xf2,0x7d,0x0b,0x70,0xf8,0x18,0x77,0x62, +0x0e,0x9c,0x5b,0x8a,0xad,0x16,0x90,0xca,0xba,0xec,0x5a,0xa5, +0x8d,0xab,0xb4,0x4b,0x2d,0x78,0xd8,0x7e,0xef,0xe9,0xe7,0xe9, +0x3f,0xd1,0x00,0xd2,0x39,0x0a,0x9d,0x09,0x4c,0xc6,0xf2,0xef, +0x77,0x81,0xe6,0xfa,0x72,0x6a,0xc8,0xab,0x6e,0xad,0xbd,0xe6, +0x72,0x87,0x3b,0x2b,0xa4,0x93,0x8f,0x91,0xfd,0x07,0x8b,0xd1, +0xd8,0x47,0xc2,0x6f,0x05,0x7c,0x1e,0x38,0xaa,0x08,0xe5,0x73, +0x8d,0x72,0xb6,0xa6,0xec,0xe6,0xd0,0x7a,0xdb,0x7f,0xe1,0x34, +0x21,0x54,0x5a,0x38,0x69,0x03,0x32,0xd2,0xae,0xac,0xf5,0xb8, +0x81,0x20,0x0b,0x1b,0x80,0x65,0x06,0x68,0x93,0x36,0xde,0x42, +0x69,0x82,0x75,0xc0,0xcb,0x5c,0xd8,0x7b,0x82,0x31,0xf9,0xfb, +0x23,0xb0,0xd8,0xf8,0xe4,0xdb,0x1e,0x6c,0x10,0x8f,0x43,0x73, +0x0f,0xdb,0xa1,0x4f,0x3a,0xea,0x1b,0x9b,0x2a,0x95,0xd5,0x76, +0xcd,0x8e,0x9d,0x2e,0x15,0xfd,0xbc,0xac,0xc1,0xb9,0xd1,0xa7, +0xb5,0xf3,0x41,0xe9,0x0f,0x59,0x30,0x8d,0x6b,0xc3,0x74,0x73, +0x70,0x64,0xc3,0x37,0x07,0xec,0x72,0xdf,0xe7,0x79,0xe1,0xe8, +0xb5,0xd0,0xbb,0xb6,0x81,0x7c,0xce,0xba,0xb2,0xed,0xca,0x3d, +0x3e,0x0e,0xae,0xce,0xb6,0x14,0x56,0x6c,0x10,0xe6,0x93,0xe5, +0xeb,0x9e,0xb0,0xb8,0x1a,0xa7,0x93,0x2c,0x9b,0xec,0x3d,0x53, +0xc5,0x8f,0xc8,0x0b,0x41,0x53,0x2a,0x0f,0x2f,0xbc,0x30,0x25, +0xdb,0xfb,0x0f,0xd7,0xda,0x01,0x67,0xc9,0x72,0xdc,0xfd,0x84, +0xfd,0x0a,0x17,0x90,0xc5,0xeb,0xfe,0xce,0x0a,0xf1,0xf8,0x80, +0x0c,0x60,0xec,0x2f,0x86,0x0b,0xf1,0xa4,0x39,0x9c,0xc4,0xd9, +0xd8,0x6c,0x36,0xc1,0x0e,0x62,0xa5,0xb4,0xba,0xfa,0x9f,0x4b, +0xe1,0x0e,0x81,0x59,0x2d,0x5d,0x8e,0xf0,0x01,0x7a,0x7e,0x0a, +0x9f,0x74,0x63,0xc1,0x67,0x86,0x3b,0x30,0x0f,0xf3,0x59,0xf4, +0x3d,0x86,0xab,0x77,0xe3,0x6a,0xb5,0x4e,0xb7,0xdb,0xb0,0xba, +0x00,0x36,0xc6,0x82,0x87,0x2a,0x44,0x6e,0x9c,0x0a,0xe9,0xf8, +0x04,0x5f,0x63,0xd2,0xad,0x54,0x7e,0x60,0x5a,0xb2,0xb3,0x9a, +0xd5,0xc1,0x27,0x91,0xcd,0xdc,0x7e,0x77,0x2d,0x10,0x8d,0xe2, +0x3e,0x5e,0xbf,0xd6,0x5c,0xe9,0xd0,0xda,0x5d,0xd7,0xde,0x5c, +0xdf,0xe4,0xdc,0xc8,0xbb,0x3b,0x3a,0xb8,0xda,0xba,0x73,0x6e, +0x1d,0x01,0x1d,0x2d,0xb3,0xd2,0x59,0xd1,0x4f,0x2a,0x39,0x3d, +0x2b,0x23,0x9c,0x9e,0xa8,0x22,0x10,0xb9,0x0b,0x0d,0x65,0x60, +0xb8,0x05,0x23,0x19,0x0d,0x7b,0x12,0x75,0x2d,0xf8,0x6e,0xc8, +0x20,0xc5,0xd1,0x59,0x66,0x99,0xbb,0x92,0x28,0xe0,0xb1,0x5c, +0x42,0x47,0x27,0x7d,0x4c,0x89,0x3b,0x9f,0x9e,0x17,0x21,0x0d, +0xce,0x89,0x1b,0x30,0x87,0xe0,0xc6,0xcf,0x61,0x23,0x35,0xf5, +0x69,0x1b,0x71,0xe3,0x23,0x16,0x55,0x30,0x97,0xf8,0x54,0xb9, +0x54,0x3b,0x95,0xba,0xb9,0xf0,0x4d,0xbe,0xcd,0x1e,0x95,0xde, +0x5c,0xf1,0x09,0x22,0xb7,0xd9,0x67,0xad,0xe1,0x5a,0x6e,0xcd, +0x7f,0xde,0x76,0xb1,0xa7,0xbb,0x87,0x5a,0xda,0x95,0x89,0xb7, +0x08,0x6c,0x8c,0x07,0x8f,0x1c,0x58,0x98,0x5b,0x18,0x50,0x10, +0x90,0x1f,0xd0,0x50,0xc3,0x1b,0x0f,0xed,0x1d,0xd2,0xea,0xf4, +0xf0,0xe6,0x4b,0x82,0x4b,0x82,0x4a,0x02,0x36,0x46,0xce,0x8f, +0x5a,0x78,0xb2,0xae,0xad,0xb6,0xaf,0xa8,0x49,0x56,0xc4,0x1f, +0xb6,0xb3,0xdb,0x27,0x37,0x77,0x3d,0xe3,0x76,0xc6,0xe3,0x2c, +0xb7,0x6e,0xf2,0xf4,0xf3,0x90,0xf7,0xc5,0x84,0x07,0x49,0x72, +0x4d,0x36,0x8f,0x93,0xf7,0xe6,0xf0,0x31,0x6d,0xe1,0x83,0x91, +0x0d,0x1c,0x3a,0xe1,0xf8,0x7f,0x95,0x4e,0x26,0xde,0xbd,0x47, +0xee,0x25,0xdc,0x4e,0x1e,0x4f,0x4b,0x09,0x49,0x0a,0x49,0x3a, +0xa6,0x2c,0xe6,0x7d,0x7b,0x9d,0x2e,0x7b,0xb4,0xba,0x1e,0xe1, +0xb3,0x8e,0x66,0x1d,0xce,0xf2,0xb3,0x3b,0xa9,0x38,0x25,0x8b, +0x29,0xaa,0x2f,0xee,0xcc,0xeb,0x90,0x65,0xf1,0x41,0x36,0x07, +0x4c,0xbd,0xed,0xb8,0xb3,0xe1,0xe1,0x67,0xc3,0x66,0x9f,0x3b, +0xa1,0xe2,0xc2,0xf8,0x2b,0x7d,0x95,0xfe,0xd5,0xce,0x47,0xf9, +0xcc,0xa3,0x99,0x47,0x32,0xfd,0x5d,0xa2,0x1d,0x62,0xec,0x4e, +0x15,0xd4,0x14,0x34,0xe5,0x36,0xdb,0xe6,0xf0,0xc1,0xf6,0xbe, +0xd6,0x07,0x1c,0x42,0xcf,0x86,0x9e,0x09,0x39,0x9b,0x68,0xcb, +0x7f,0x9d,0xf4,0x75,0xf2,0x9d,0x8c,0xcc,0x83,0xbc,0x83,0x62, +0x93,0x3b,0xce,0xf7,0xce,0xb7,0xe1,0x61,0x57,0x13,0x70,0xfd, +0x59,0x5f,0x70,0x09,0x4c,0xd6,0x26,0x78,0xdf,0x10,0x76,0x3b, +0x14,0xf5,0xf1,0xb8,0xa8,0x66,0x49,0x93,0xa2,0x87,0x0b,0x5f, +0x46,0xb6,0x99,0xce,0x75,0x44,0xee,0x48,0x9e,0x82,0x87,0xd7, +0x0b,0xe1,0xf5,0x96,0xef,0x2e,0x71,0x37,0xbc,0xc9,0xc7,0x9b, +0x91,0x98,0xe1,0x66,0xcf,0x7c,0x39,0x0f,0x4b,0xcb,0x61,0xfe, +0x30,0xb0,0x4f,0x38,0x71,0x09,0xde,0x24,0x70,0xa4,0x11,0x56, +0xdc,0x81,0x05,0x30,0xc3,0xb5,0x99,0xc7,0x99,0xf8,0x3a,0x2e, +0xd4,0xc0,0x20,0x57,0xfa,0x86,0xc7,0xa1,0x8b,0x80,0xbc,0x1b, +0xe5,0x83,0xa0,0x0d,0xb9,0xa8,0xdd,0x0f,0x8e,0xdd,0xe8,0x78, +0xcd,0x64,0x2f,0xba,0xda,0x80,0xab,0x05,0x6a,0x63,0x2e,0x68, +0x9b,0xa1,0xb7,0x0d,0x78,0xaf,0x1e,0x66,0xe0,0x8e,0x90,0x46, +0x60,0x7a,0xf2,0xef,0x79,0x0f,0x6a,0x7d,0xba,0xf9,0x8d,0xee, +0x73,0x82,0x70,0x4e,0x34,0x87,0xda,0xec,0x82,0x53,0xf8,0xd6, +0x7e,0x9c,0xa6,0xd6,0xe3,0x3a,0x06,0xaf,0x65,0xc2,0xdb,0xe7, +0xbf,0x57,0x05,0x75,0xfc,0xf1,0x02,0xfc,0x08,0x33,0xfa,0xf1, +0x53,0x46,0x7c,0x2b,0x97,0x18,0xe0,0xbb,0x17,0x58,0xd0,0x31, +0x20,0x17,0xe0,0x3d,0x03,0x16,0xf7,0xda,0x11,0x5d,0x7c,0xf7, +0x32,0x3d,0xa3,0x4b,0x2e,0xc3,0x7b,0xba,0xd2,0x1a,0xa2,0x8f, +0x88,0x75,0x9b,0x55,0xc3,0xcb,0x99,0x3f,0x1d,0x34,0xb0,0xef, +0xdb,0xf0,0x9c,0x2b,0x7e,0x6c,0x88,0x8b,0xff,0xb3,0x78,0x71, +0x4f,0x52,0x0e,0xcc,0xa1,0xae,0x6b,0xb9,0x54,0xbb,0xd0,0x55, +0xee,0xeb,0x68,0xe0,0x15,0xe3,0x26,0x17,0x8c,0x07,0xa4,0xda, +0x45,0x10,0x19,0x1f,0xa3,0x54,0xf1,0xf2,0x14,0x55,0x94,0xef, +0xd5,0xb5,0xa2,0x8f,0x2b,0x7b,0xe1,0xba,0xe0,0x27,0x70,0x24, +0x8f,0xe1,0x2f,0xc2,0x3b,0xf8,0x97,0xcf,0x61,0x7e,0x1f,0xce, +0xff,0x87,0xe5,0xc7,0x38,0xd7,0x12,0xe6,0x6e,0xc1,0x37,0xc4, +0x77,0xe0,0x8d,0xf5,0xb8,0xc8,0x12,0x16,0xe1,0xf2,0x3e,0x58, +0x0e,0xb3,0xfa,0xd8,0xdf,0x04,0x8a,0x3d,0xf7,0xb3,0x8f,0x52, +0x1f,0x15,0xf5,0x97,0x1c,0xe8,0xe5,0x0d,0x0f,0xac,0xf0,0x5f, +0x1e,0xce,0x61,0x36,0x8b,0x9e,0xc7,0x71,0xbf,0x2d,0xaa,0xaa, +0x75,0xbb,0x76,0xc1,0x47,0x39,0xb0,0xeb,0x1c,0x44,0xaa,0xfe, +0x2c,0x36,0x0d,0x08,0x4d,0xf7,0x07,0x99,0xc9,0x70,0x98,0x41, +0x32,0xcc,0xd3,0x77,0x27,0xec,0xed,0xc9,0xe4,0x4f,0x5c,0x09, +0xfd,0xf4,0x18,0xe5,0xa3,0x3a,0xd4,0x1f,0xe4,0x7f,0x99,0xfc, +0xcb,0xb9,0xdf,0xac,0xe2,0xf8,0xb3,0x0b,0x4e,0xac,0x3c,0x3a, +0x95,0xde,0xdd,0x4f,0x50,0x45,0x07,0x54,0x58,0xca,0x09,0x55, +0x88,0x36,0xa8,0x8c,0x33,0x68,0x8a,0x9b,0xc8,0x75,0x9c,0xae, +0xc3,0x50,0x9e,0x30,0x9d,0x8c,0xe3,0x74,0x6d,0x0a,0x79,0xe3, +0x27,0x1e,0x12,0x2b,0x1d,0x2d,0xfd,0xf5,0x36,0x55,0xb6,0xfc, +0x37,0xbd,0x0f,0x6e,0xf4,0xdd,0xe4,0x7a,0xa9,0xab,0x1e,0xac, +0x6f,0xa8,0x2b,0xaa,0x8e,0x4f,0x88,0x8b,0x4b,0x3a,0x09,0xd3, +0x96,0xf2,0xb5,0x2d,0x15,0x8e,0x2d,0x65,0xb5,0xd5,0x85,0xd5, +0xaa,0x09,0x09,0x71,0xe7,0x93,0xa2,0x41,0x15,0x5f,0xe7,0xeb, +0x95,0x38,0xe3,0x97,0xf0,0x94,0xa8,0x4f,0x22,0xa5,0x35,0xb3, +0xa3,0xcf,0xab,0x64,0x54,0x24,0x57,0x28,0x67,0x95,0x19,0xfb, +0xb1,0x5a,0x87,0xe4,0xeb,0x8c,0xd4,0x96,0x7c,0x11,0x91,0x1c, +0x7d,0x8e,0x7e,0x1a,0x16,0x76,0x4a,0xfa,0x34,0xe9,0xf9,0xa7, +0x7b,0x0e,0xcb,0xf1,0x55,0x4d,0x35,0x9c,0x2f,0xce,0x20,0xa3, +0x30,0xc8,0x54,0x96,0x95,0x57,0x14,0x55,0x38,0xd6,0xf3,0x26, +0x5a,0x9b,0xb4,0x96,0x5a,0x54,0xca,0xf8,0xba,0xfc,0xba,0xa2, +0x9a,0x52,0x0e,0xd2,0x96,0x93,0xad,0x89,0x1d,0x86,0xb0,0x6e, +0x36,0x0c,0x31,0x49,0x03,0x2a,0xd8,0x01,0x6f,0x43,0x62,0x1f, +0x26,0x7e,0x69,0x8c,0xe9,0xd2,0x8a,0x3e,0x5e,0x03,0xff,0x98, +0xd5,0x65,0x62,0xc9,0x2e,0x74,0x71,0x5b,0x24,0x57,0x2b,0xb5, +0x7e,0xda,0x59,0xd1,0x16,0x7f,0x4d,0x35,0x0e,0x4d,0x49,0x9f, +0xfb,0xb0,0x7d,0xa7,0x1d,0x85,0x58,0x56,0x9d,0x96,0xcd,0xa6, +0x75,0x9c,0x19,0xa6,0x3f,0x87,0xcf,0x3a,0x06,0xb8,0xf7,0x39, +0x49,0xac,0x7d,0x06,0x9f,0xbf,0x9d,0x82,0xcf,0x6f,0x52,0x0b, +0xd0,0x26,0x23,0x06,0xc3,0x7b,0x5a,0x76,0x77,0xd7,0xf2,0x8a, +0x7b,0x66,0x57,0x8d,0xc7,0x24,0x88,0x75,0x96,0x8c,0x5f,0x6b, +0xfb,0xac,0xec,0x86,0x44,0x12,0x75,0x15,0x53,0x24,0x11,0xfc, +0xa5,0xfa,0x80,0x89,0x54,0x58,0xd6,0x17,0x22,0x88,0xa0,0x8e, +0xe5,0x52,0x66,0xfc,0x47,0xf6,0x7b,0xf8,0x91,0x40,0x20,0xfe, +0x38,0x48,0x4f,0xd5,0x31,0x65,0x78,0x98,0x0c,0x57,0x0e,0x37, +0x29,0xdb,0xbc,0x1a,0x78,0x07,0x47,0x6b,0x57,0x23,0x5f,0x0e, +0x37,0xfe,0x46,0xec,0x14,0xb6,0x2e,0x86,0xde,0x65,0xf6,0xfc, +0x58,0x75,0x5f,0x73,0x7b,0x27,0x87,0x39,0xe6,0x24,0xc3,0x26, +0x53,0x3b,0xd1,0x40,0xaa,0x3f,0x8e,0x85,0xdc,0x08,0xed,0x96, +0x0a,0xb2,0x57,0x25,0x1d,0xe3,0xd3,0xf3,0x7f,0xfc,0x0b,0xa3, +0x4c,0xa8,0xdf,0x22,0x17,0x6a,0x2e,0xb6,0x76,0xf6,0x7a,0x34, +0xf0,0xb6,0xb6,0x16,0x2e,0xfb,0x69,0xd0,0x58,0xf2,0x3b,0xb1, +0xb6,0x36,0x77,0xdc,0xe7,0x5a,0xa1,0xe0,0x2f,0xd6,0x5d,0xea, +0xea,0x1e,0xe0,0x9e,0x50,0x4a,0x78,0xfc,0x40,0xe8,0xa1,0x40, +0x3f,0x0a,0x76,0x44,0xcd,0xd1,0x5e,0x61,0x83,0xd5,0x98,0xa0, +0x89,0xf9,0x4c,0x56,0x9e,0xb4,0x70,0x34,0x87,0xf1,0x18,0x48, +0xfe,0x10,0x36,0xcc,0x61,0xc5,0x0d,0xd6,0x44,0xd8,0x80,0x9c, +0xb8,0x81,0x99,0x21,0x68,0x0a,0x1b,0x89,0x60,0x0c,0xa9,0xa2, +0x2e,0x93,0x9e,0x95,0x96,0x9d,0x9a,0xc3,0x09,0x5e,0xdd,0xa2, +0x21,0x93,0x9c,0x93,0x94,0x93,0x98,0x2b,0x65,0x09,0x35,0x4d, +0xb7,0xee,0x36,0xaa,0x55,0xf0,0x15,0x25,0xe5,0xe5,0x25,0x55, +0x1c,0x7a,0x4f,0x86,0xbe,0x28,0xd4,0x99,0x09,0x29,0xe4,0xd8, +0x9d,0x23,0x0f,0x8f,0x8e,0xc9,0x43,0xf8,0x7c,0xa3,0xfc,0x4d, +0x69,0x1a,0x94,0x0e,0x68,0x3d,0x2f,0xcf,0x59,0x3e,0x73,0x8d, +0x34,0xd6,0x4e,0x94,0x83,0x13,0xc1,0x87,0x83,0xf0,0x90,0xc1, +0x87,0x0b,0x09,0x3c,0x34,0xc0,0x87,0x8c,0xe0,0xb1,0x88,0x4c, +0xbe,0x62,0x03,0x3c,0xe3,0x6c,0x6a,0x68,0xb8,0xd3,0xae,0xca, +0x89,0x57,0x96,0x34,0x56,0x56,0xd7,0x48,0xcb,0x40,0xc8,0xf6, +0x6e,0xd6,0x5a,0x2b,0xaf,0xb1,0xe3,0xff,0x18,0xfb,0xfa,0x51, +0xdf,0x97,0xdc,0x6f,0x8c,0xf3,0xd6,0x3d,0x6b,0x56,0xeb,0xd6, +0xdb,0xf3,0xbf,0x7d,0x76,0xf7,0x1f,0x6d,0xbf,0x70,0x37,0x99, +0x73,0x16,0x31,0x56,0x51,0xf6,0x9c,0x57,0x74,0xe8,0x11,0xf9, +0xec,0x95,0x92,0xc6,0xe6,0x0b,0xe6,0x46,0x43,0x55,0x7f,0x8a, +0x7a,0x4a,0x4f,0xfc,0xa7,0x4f,0x66,0x89,0x5a,0x4c,0x76,0x7e, +0x46,0x7e,0x5a,0x3e,0x27,0x68,0x51,0xe3,0x77,0xdb,0x41,0xfe, +0x5c,0x6c,0xfa,0xcf,0xc5,0xac,0xd0,0x3d,0x11,0x41,0x90,0xa0, +0xdc,0x1a,0xe4,0xeb,0x06,0xbe,0x02,0xcb,0x1e,0xb4,0x04,0x02, +0xdb,0x7a,0x70,0x1b,0x30,0xe6,0xc8,0xac,0x64,0x53,0xa9,0xe9, +0xc6,0x97,0x5a,0xa5,0xf1,0x61,0x3a,0x07,0x77,0x38,0x1a,0xb6, +0x1d,0xe0,0x73,0x4a,0xb2,0x2a,0xd3,0x29,0x4f,0x53,0xc9,0x25, +0xde,0x6d,0x8e,0xed,0x4e,0x0d,0xae,0xee,0x7c,0x8b,0x73,0x83, +0x5d,0x8d,0x9c,0xc3,0xe9,0xe8,0x40,0x22,0x6e,0x07,0x7d,0x1e, +0x24,0x21,0x8e,0x6c,0x8a,0x38,0x92,0x29,0xe2,0x30,0xdf,0x4c, +0x0a,0xbf,0x4a,0x7d,0x1a,0xfb,0xbb,0xf4,0x16,0xe6,0x47,0x2d, +0xf3,0xdf,0x20,0xe9,0xed,0x19,0xe2,0xd9,0x69,0xdf,0xed,0x5c, +0xef,0xe6,0xce,0x37,0xba,0x34,0xcb,0x6b,0x6d,0x38,0xe1,0x98, +0xb4,0x40,0x5d,0x89,0xf8,0x0a,0x96,0xb0,0x0f,0xd6,0x13,0x9c, +0x65,0x7f,0x0f,0xde,0x52,0x87,0xb5,0xb8,0xd4,0xea,0xbb,0xb9, +0x2c,0x72,0x07,0xf5,0x16,0x29,0xd4,0x4a,0xac,0x7e,0xee,0x2e, +0xe9,0x3f,0xff,0x95,0x6a,0x02,0xb3,0x22,0x6e,0x68,0x07,0xcc, +0x9d,0x0d,0x77,0x99,0xd4,0x61,0x95,0x39,0x70,0x89,0xa0,0x26, +0xc6,0x81,0x26,0x0d,0xf3,0x1c,0xe4,0x93,0x3a,0x79,0x63,0xb9, +0x57,0xbb,0x5b,0xab,0x4b,0xad,0xea,0x08,0x54,0x63,0xf2,0x08, +0xf4,0x76,0x63,0xef,0x1d,0x53,0x0d,0xac,0xb3,0x81,0x3a,0x63, +0x3c,0x8d,0xd5,0x70,0x56,0x87,0x39,0xbd,0x74,0xc9,0x99,0x35, +0xb3,0xe3,0x2c,0x40,0x2b,0x0e,0x0e,0x27,0xc0,0xce,0x54,0xd5, +0xc9,0xc5,0xf8,0xe4,0x65,0xc0,0x73,0x21,0x59,0x56,0x14,0x3f, +0xeb,0xf5,0x65,0xf3,0x91,0x17,0x83,0x6e,0x86,0xf4,0x4a,0x01, +0xef,0xca,0x7f,0x4f,0xef,0x18,0x85,0x68,0xa2,0x83,0x26,0xd7, +0x59,0x88,0xd1,0x21,0xd7,0xc1,0x56,0x87,0x15,0x0d,0xed,0x08, +0x98,0x68,0xa1,0x09,0x03,0x31,0x33,0x6f,0x82,0xad,0x16,0x1b, +0x21,0x27,0x5e,0x47,0xd2,0x22,0xd2,0xc2,0xd2,0xc2,0x55,0x0d, +0x63,0xf4,0xce,0xec,0x3f,0xcd,0x5d,0x63,0xe1,0x35,0xfc,0x88, +0x18,0x8b,0x26,0x56,0x82,0x09,0xce,0xc1,0x5d,0x6c,0x36,0x85, +0xd4,0x4b,0x98,0xb6,0xdc,0x1c,0x8a,0x32,0x3e,0x84,0x8f,0x7a, +0xf1,0xa3,0x11,0x69,0xa6,0xe7,0x5a,0xd2,0xea,0xa5,0xf4,0x68, +0x72,0x6a,0x6c,0xe4,0x9d,0x9b,0xec,0x1b,0xec,0xcb,0xe9,0x30, +0x54,0xbc,0x50,0x5c,0x4e,0xcc,0xfa,0x53,0x9d,0x98,0xa3,0xd9, +0xf6,0x42,0xdc,0xf8,0x80,0xe9,0x4d,0xee,0x4a,0x6d,0xcb,0x38, +0xd2,0xc1,0xaf,0xf5,0xc5,0x57,0x43,0xf1,0xdd,0xa8,0x14,0x19, +0xdf,0x79,0xbe,0x23,0xbe,0x35,0x9e,0xd3,0xc4,0x1d,0xd6,0xb0, +0x43,0x1b,0x17,0xe0,0x38,0x2c,0xd8,0x8d,0x1b,0x6c,0x60,0xc3, +0x6a,0xd6,0x28,0xda,0xe8,0x94,0x51,0x4c,0x9c,0x15,0x0f,0x7c, +0x32,0xcc,0xcc,0x80,0x37,0xf2,0x4e,0x9f,0x8c,0x89,0x3e,0x7d, +0x52,0xe9,0xc8,0x7f,0x01,0xeb,0x4b,0xc0,0xec,0x1c,0x5c,0xe4, +0xa8,0xb5,0x26,0x9c,0xc4,0x2d,0x51,0x4b,0xd4,0x4c,0x4f,0x46, +0x85,0xd8,0xcd,0xb6,0x67,0x32,0x8d,0x54,0x5a,0x99,0x1b,0x05, +0xb5,0x0f,0x92,0xd4,0x53,0x81,0x4d,0x80,0x45,0xf0,0x60,0x16, +0xaa,0x33,0xe2,0xcd,0x78,0x92,0xac,0x48,0xd6,0x8d,0x33,0xeb, +0xce,0xe0,0x63,0x06,0xc3,0xaf,0x44,0x50,0x5a,0xac,0x85,0x17, +0x49,0xfe,0xe3,0xa4,0x9f,0x9f,0xfb,0xea,0x93,0x92,0xaf,0x9e, +0x78,0x95,0x22,0x35,0xeb,0x13,0x16,0x27,0xcc,0xa3,0xb9,0x47, +0xb0,0xaa,0x1b,0x57,0xdd,0x86,0x25,0x30,0x8e,0x4b,0xc6,0x61, +0xe3,0xa1,0x7b,0xec,0x59,0xcc,0x0f,0x40,0x6d,0x53,0xe4,0x29, +0xf2,0x13,0x42,0xc8,0xc6,0xd5,0x8f,0x58,0x98,0x3f,0xf3,0xc7, +0x8d,0xcb,0x18,0x2b,0x05,0x59,0xb3,0xfa,0x1b,0x16,0x4e,0xac, +0x21,0xcb,0xbe,0xf9,0x91,0x5a,0xf3,0x46,0x48,0x25,0x42,0xf4, +0x44,0x42,0xef,0xe4,0x15,0xf1,0x6f,0x13,0xd7,0x7a,0x59,0xb1, +0x45,0xd8,0x43,0x70,0xa7,0x1c,0x76,0xda,0x0e,0x74,0xc2,0x51, +0xe9,0x60,0xd0,0x81,0x06,0x8d,0xe6,0x2e,0x78,0xb4,0xd1,0x9c, +0x11,0xca,0xd0,0x8d,0x74,0x88,0xcb,0xd9,0xd4,0xac,0x94,0xec, +0xa4,0x6c,0x59,0x3a,0x1f,0x19,0x10,0x16,0x10,0x12,0xc0,0xe1, +0x29,0x39,0xc8,0x18,0x0b,0x99,0x96,0xfd,0x3a,0xaf,0x62,0x5b, +0xbe,0x33,0xaf,0xb5,0xb0,0x91,0x7a,0x8b,0x57,0x84,0x10,0xd8, +0x22,0xae,0x62,0x73,0xb2,0xb2,0xb3,0x32,0xb3,0xb9,0xbd,0xb8, +0x83,0xdc,0x11,0x38,0xca,0x77,0x57,0x50,0x4e,0x60,0xdd,0x62, +0x59,0x6b,0x5e,0xe9,0xee,0xc0,0xf7,0xf9,0x0c,0xb9,0x4a,0xd2, +0xbd,0xcd,0xf7,0xc8,0xa8,0xf5,0x05,0x83,0x56,0x83,0xf6,0x46, +0x5e,0x7e,0xc5,0x68,0xc4,0xa8,0x9b,0x13,0xd5,0x50,0xfb,0xb9, +0x74,0x8f,0x37,0x44,0x55,0x76,0x57,0xb1,0x54,0x6c,0xee,0x78, +0x16,0x80,0x6f,0x4a,0x01,0x78,0x11,0x2b,0xfe,0xe1,0x4c,0x6e, +0x0c,0x75,0x5e,0x7e,0x26,0xdd,0xb3,0xb0,0xd5,0xd3,0x95,0xd1, +0x2e,0x3e,0xf8,0x52,0x81,0x62,0x3d,0x11,0x4d,0xf0,0x08,0xb5, +0xb3,0x23,0xb8,0xfb,0x01,0xb8,0xf5,0x4d,0xbe,0x6d,0x09,0x0e, +0x5b,0xd9,0xbe,0x99,0x0f,0x80,0xdd,0xca,0xd2,0x31,0x63,0x49, +0xa2,0x2e,0x84,0xdc,0x3c,0xd6,0x4b,0xdd,0x4f,0x86,0x75,0xa6, +0x56,0xa2,0x3e,0x87,0x46,0xc8,0x92,0x02,0x69,0xe4,0x3d,0xcb, +0x0f,0x45,0x4e,0x8d,0xbc,0xe3,0x40,0x79,0xd1,0xbb,0xa8,0x02, +0xef,0xb2,0x50,0x33,0x93,0xb6,0x58,0xa9,0xd5,0x80,0xef,0x12, +0x9c,0x0e,0xef,0x52,0x7f,0xd3,0x86,0xb1,0x44,0x6c,0xb5,0x12, +0x5a,0x99,0xce,0x5d,0x53,0x32,0x8f,0x46,0x74,0x45,0xd5,0xa9, +0xd5,0xd0,0x55,0x98,0xf6,0xdc,0x02,0xa5,0x3a,0xc8,0x40,0xc9, +0x8a,0x31,0x9e,0xc4,0xd1,0x74,0x8f,0xfe,0x5e,0xd7,0x1a,0xca, +0xb9,0x5a,0x3e,0xbd,0xd2,0x7e,0x91,0x83,0xa4,0x33,0x64,0xc0, +0xee,0x96,0x76,0x87,0x79,0xb3,0x92,0x77,0xee,0xd8,0x7e,0xc7, +0xbc,0x65,0x2a,0xb7,0x9c,0x4c,0xb0,0xe2,0xa6,0x91,0x16,0x36, +0xe1,0x27,0x0c,0xd6,0x84,0xe0,0x02,0x73,0x9c,0xab,0xd6,0xe7, +0xa6,0x32,0x02,0x2b,0x73,0x60,0x25,0xd4,0xcf,0x82,0x24,0x5d, +0x74,0xb6,0x03,0x67,0x13,0xea,0xb0,0xb7,0xf6,0xd1,0x53,0xab, +0x50,0xbd,0x1f,0xd4,0x61,0xdb,0xaa,0xf9,0x4c,0x86,0x2d,0x75, +0x66,0xad,0x99,0x19,0xad,0xea,0xf0,0x2b,0x1e,0x1a,0x06,0x6f, +0x78,0xad,0xa5,0xcd,0xf1,0x37,0xf4,0x1e,0x86,0x14,0x76,0x32, +0x68,0xb2,0xfa,0x45,0x5a,0xba,0x66,0xe2,0x30,0xb1,0x07,0x67, +0x43,0x4c,0x82,0x4d,0x90,0x64,0xc2,0xe2,0x7d,0xb4,0x26,0x27, +0xae,0x84,0x7c,0x1a,0xda,0xaf,0x38,0xc6,0x67,0x9a,0x67,0xec, +0x4e,0xdc,0x47,0x71,0xc3,0x12,0x52,0xf0,0x38,0xe5,0xe7,0x29, +0xfe,0xf3,0xbc,0x2a,0x37,0x71,0x15,0x8c,0x08,0x6e,0x1a,0x83, +0x4d,0x0c,0x6e,0xc2,0x5d,0x14,0x49,0x6d,0xd2,0x65,0xf1,0x00, +0x7a,0x11,0x5c,0x75,0x09,0x56,0x31,0xe0,0xa7,0x47,0x70,0xdb, +0x25,0xd8,0x46,0xb9,0x35,0xbe,0x4a,0x60,0xd5,0x3e,0xa4,0x27, +0x5d,0xaf,0x52,0x47,0xb9,0x0f,0xb7,0x51,0x0b,0x54,0x99,0xd0, +0x22,0xf6,0x13,0x59,0xad,0xe2,0x2b,0xdd,0xc2,0x9a,0x76,0x71, +0xcd,0xa0,0x9e,0x99,0x38,0x47,0x21,0xcc,0xb1,0x61,0xc1,0x0d, +0xab,0x49,0x6a,0x4e,0x6a,0x6e,0x72,0x0e,0x47,0x9f,0x67,0xfe, +0xe4,0x36,0x9c,0x0f,0xb3,0x98,0xd4,0xe0,0xd4,0xa0,0xa4,0x60, +0x0e,0x2b,0x15,0x7f,0xaa,0xb5,0x33,0xb8,0x1b,0x56,0x12,0x53, +0x71,0x70,0x88,0x15,0x36,0x2c,0x26,0x27,0x42,0x22,0x82,0xc2, +0x82,0x38,0x3c,0xc8,0x9c,0xc8,0x8d,0xc8,0x8d,0xc8,0x96,0x66, +0x67,0x51,0xf8,0xbf,0x74,0xc2,0x0b,0x96,0xb2,0x93,0x2b,0xe7, +0x93,0x51,0xe1,0x57,0x23,0x16,0x0d,0x71,0x19,0xb1,0x69,0xb2, +0xae,0x7a,0xb6,0xaa,0xce,0xc1,0x01,0xf7,0x0e,0x37,0x0e,0xb6, +0x3f,0x24,0xa3,0x8a,0x8b,0xa6,0x4a,0xb3,0xb6,0x26,0x5e,0x3e, +0x62,0xd4,0x6f,0xd4,0xce,0x4d,0xca,0xd1,0x9e,0xdc,0xe8,0xeb, +0x1a,0xa9,0x18,0xb2,0xad,0xe0,0x7d,0x6d,0x64,0x26,0xba,0xf6, +0x1c,0x08,0x31,0xc4,0x35,0x52,0x52,0x3f,0x4c,0x33,0xa4,0xc4, +0x55,0xa3,0x28,0xf8,0x9e,0x1a,0xf4,0x3c,0x53,0x3f,0x5c,0x96, +0xd4,0x0f,0x2b,0x29,0xe3,0xfb,0x52,0x58,0x44,0x92,0xe2,0x62, +0xa5,0x04,0xfb,0x02,0x7c,0xb5,0xba,0x15,0xe7,0xfc,0x7e,0x3c, +0xf5,0xc4,0x99,0x13,0x14,0xd4,0x1c,0x53,0x89,0x86,0x6c,0x70, +0xea,0x43,0xa7,0x87,0x26,0x9b,0xf1,0x88,0x25,0xb5,0xca,0xb7, +0x19,0xe4,0x37,0xec,0xc2,0xa5,0xeb,0xd5,0xaa,0x65,0xf0,0xd1, +0xa3,0xb6,0xee,0x8c,0x4f,0x55,0x13,0xd1,0x9f,0x02,0x5e,0x07, +0x41,0x95,0xbe,0x33,0x26,0x12,0x59,0xeb,0xe5,0x94,0x8f,0x7d, +0xd8,0x61,0xcf,0xc3,0x1c,0xf8,0xb8,0xea,0xcb,0x04,0x4a,0x0c, +0x13,0x99,0x04,0x64,0x1b,0xd7,0xc0,0x7c,0xfc,0xb8,0xad,0x8b, +0xc7,0x8f,0x60,0x96,0xe9,0x8f,0x11,0xf0,0x06,0x07,0x16,0x83, +0x68,0x05,0x3b,0x8d,0x28,0x0d,0x5e,0xc3,0x08,0xef,0x0e,0x93, +0xa3,0xd5,0x1e,0xcd,0xde,0xe5,0x4e,0xde,0x7c,0xad,0x57,0xa5, +0x5b,0x81,0x07,0x45,0xa7,0xbe,0xc4,0xda,0x8b,0x31,0x0a,0xf0, +0x36,0x71,0x54,0xab,0x71,0xae,0x2c,0x2a,0x28,0xc8,0x2e,0x55, +0x8d,0x4b,0x8c,0x3b,0x17,0x7f,0xea,0x82,0x39,0x5f,0xdd,0x60, +0xd6,0x15,0x95,0x14,0xfd,0xc9,0x89,0x13,0xaa,0xe1,0xc7,0x29, +0x04,0x4b,0xc9,0x8f,0x2b,0x2e,0x9d,0x05,0x0d,0xf5,0xc4,0xfa, +0x00,0x63,0x1e,0xec,0x23,0x73,0x51,0xab,0x75,0x2b,0xc9,0xcf, +0xce,0xcd,0x2c,0x54,0x8d,0x4b,0x88,0x8b,0x4d,0x38,0xf5,0xf5, +0x56,0xbe,0xa6,0x71,0xfb,0xcd,0xa8,0xa4,0xc8,0x73,0xf4,0x4b, +0x61,0x61,0x31,0x71,0x2a,0x49,0xb9,0xe7,0xe9,0x97,0xbc,0xc4, +0x5d,0xa4,0xcf,0x6b,0xd8,0xb9,0xd3,0xb1,0x51,0xc9,0x4b,0xb3, +0xea,0x4d,0xab,0x39,0xa8,0x5f,0x4c,0x46,0x2d,0x46,0xf7,0x2b, +0xf7,0x77,0x36,0xf0,0x72,0x8a,0x97,0x8d,0xfa,0x39,0x51,0x15, +0x4d,0x24,0x91,0x10,0x1d,0xe6,0x0b,0x0d,0x71,0xa1,0x84,0xb3, +0x1f,0xbc,0xac,0xc9,0x7c,0x26,0xe5,0x08,0xe6,0xb2,0xe2,0xcf, +0x2e,0xe4,0xc6,0x58,0xc7,0xf5,0x67,0x90,0xda,0xc4,0x76,0xaf, +0x9e,0x35,0x37,0xe3,0x5b,0x21,0x8c,0xe0,0x61,0x00,0x38,0x8c, +0x4b,0x7f,0x04,0xcd,0x7e,0xd4,0xfc,0x9d,0xed,0x4f,0xed,0x4d, +0x6f,0xcb,0x3c,0xdc,0xc9,0x7f,0xec,0x83,0xaa,0xfe,0x38,0x23, +0x2a,0xcd,0x8a,0xef,0x3a,0x3f,0x90,0x38,0x90,0xcc,0x2d,0x43, +0x23,0x0b,0x30,0x5a,0xc6,0x82,0x33,0x68,0x90,0x6f,0xc4,0x0f, +0xe0,0x0b,0xe1,0x83,0xaf,0xfb,0xd7,0x02,0x67,0x84,0x92,0x84, +0x47,0xfa,0xb1,0x86,0x81,0x49,0xa4,0x36,0xed,0x0e,0xaa,0xe0, +0xce,0xa0,0xbb,0x24,0x0b,0x74,0xc7,0xc5,0xe8,0xce,0x88,0xc6, +0x51,0xd2,0x1c,0xb6,0x70,0x7c,0x83,0x6d,0x44,0x86,0x0c,0xb9, +0x8f,0xda,0xf7,0x28,0x9a,0x5a,0x79,0xf3,0x4e,0xd3,0x66,0x13, +0x09,0x29,0x26,0x4b,0xe5,0x04,0x8a,0x14,0x0d,0x0c,0xd0,0x48, +0x42,0x8a,0x9f,0x4f,0xa5,0x39,0xa4,0xea,0xe3,0xf7,0x53,0xf3, +0xcf,0x66,0xb0,0xc3,0xa0,0x4b,0x46,0xf5,0xc7,0x34,0x95,0xbb, +0xba,0xeb,0x78,0xf9,0x03,0x93,0xeb,0x52,0x39,0x41,0x86,0x09, +0xe4,0xfa,0x8d,0x8e,0x7b,0x65,0xb7,0x24,0xa4,0xb8,0x4f,0xbe, +0x53,0xd7,0xf0,0x3f,0x24,0x7e,0x6b,0x84,0x4a,0x22,0x9b,0xe0, +0xba,0xb0,0x6e,0x1c,0xc2,0xa0,0x4c,0x2c,0xc2,0x32,0x08,0xd3, +0x66,0x21,0x1c,0x7a,0xc9,0x7e,0x71,0xf5,0x15,0x69,0x03,0xf3, +0x57,0x49,0x96,0x2c,0x4b,0x27,0xc9,0x50,0x62,0xfd,0xa3,0xc1, +0xe3,0x21,0x5d,0x92,0x46,0xe2,0xe6,0x7f,0xb2,0xfe,0x43,0x34, +0x72,0x0c,0x40,0x35,0xd1,0x12,0x57,0xdf,0x64,0x05,0x17,0xec, +0x22,0x62,0x3a,0xea,0x40,0x08,0xea,0x22,0xcf,0xe4,0x58,0xa8, +0x3c,0x65,0x3a,0x0b,0x72,0x3a,0xd5,0x61,0x27,0x04,0xb0,0x26, +0x30,0x93,0x6c,0x11,0x17,0x7c,0xce,0xb6,0xd2,0xf8,0xe9,0xa6, +0x30,0x95,0x6f,0x76,0xab,0xb0,0xe5,0xbf,0x6c,0xbe,0xd8,0xdb, +0xdc,0xcf,0x81,0xff,0x49,0x72,0xd1,0x6e,0x40,0xd6,0x6e,0xdd, +0xd4,0xc2,0xcb,0xbb,0xcc,0xba,0xf4,0xa8,0xaf,0x9a,0x90,0x43, +0x1c,0xf9,0x0d,0xbc,0x7b,0xd1,0xfb,0x67,0xf0,0xe8,0x45,0x8f, +0x9f,0x21,0xac,0x0f,0x83,0xd9,0xc2,0xba,0xdc,0xe6,0xb4,0x1a, +0xf3,0x34,0x3e,0xdc,0x23,0x40,0x7e,0xc8,0x89,0x43,0x4d,0x26, +0xa3,0x32,0xbd,0x21,0xad,0xd9,0x22,0x83,0x3f,0xb2,0x5c,0x86, +0x6f,0x1b,0xad,0x89,0xe8,0x0a,0xeb,0x3a,0xde,0x28,0x0f,0xe6, +0xb3,0x2d,0xb2,0xa5,0x39,0x58,0x39,0xfc,0x99,0xac,0xd3,0x59, +0x31,0xd9,0x75,0x0e,0x7c,0x3a,0x85,0x9d,0x69,0x45,0x1c,0xfe, +0x22,0xb4,0xf4,0xb3,0x93,0xde,0xf8,0xd9,0x8b,0x3c,0xe3,0xc0, +0xc4,0xdb,0xe4,0x67,0x30,0xa0,0xde,0xff,0x2a,0x7a,0xfc,0x87, +0x58,0x65,0x6a,0xca,0xa3,0x5e,0xf3,0xb3,0x4f,0xad,0xa6,0xcd, +0x43,0x83,0xdf,0x58,0x7c,0x5d,0xd4,0x24,0xed,0x17,0x9b,0x3e, +0xcf,0xb9,0x6c,0x96,0xc7,0x87,0x9a,0x3a,0x6f,0xb5,0x37,0xe5, +0x84,0x78,0xd8,0x41,0x2a,0x4c,0x6b,0xb7,0x15,0xef,0xe9,0xaf, +0xe0,0x0f,0xdf,0x70,0xbd,0xe7,0x43,0x31,0x8a,0xe2,0x30,0xc9, +0xb5,0x2a,0xdf,0x96,0xb1,0x77,0x2c,0x93,0x0f,0x1e,0x3f,0x78, +0x3f,0x80,0xc2,0x6c,0x79,0x38,0xc9,0x30,0xce,0xde,0x96,0xa0, +0x3b,0x9a,0xcc,0x9f,0xbc,0x16,0xfa,0x20,0x44,0x5a,0x56,0x30, +0xe8,0x65,0x07,0x69,0x48,0x82,0x41,0x7b,0x48,0x03,0x7b,0xf6, +0xa2,0xb4,0x8d,0x44,0x2e,0x6d,0x88,0x15,0xb8,0x5a,0xda,0x00, +0x62,0xd9,0xcb,0x0d,0x20,0xd6,0xd2,0xd6,0xe4,0x2b,0xa7,0x48, +0xa6,0x2c,0x4b,0x3b,0xc9,0x50,0x9a,0x78,0x44,0x3b,0x4a,0x02, +0xec,0x6e,0x38,0x26,0x09,0x06,0xff,0x85,0x8a,0xfc,0xa6,0x42, +0x7c,0x2c,0xb9,0x07,0x31,0xf0,0x9d,0x58,0x83,0xdf,0x41,0xc4, +0x76,0xec,0x35,0x07,0x8a,0x68,0x86,0xe1,0x23,0xe8,0x1a,0x60, +0xf1,0x0f,0x69,0x2e,0x89,0xf6,0xf7,0xa0,0xcd,0x0c,0x4b,0x3b, +0x45,0x18,0xac,0x64,0xc5,0xcd,0x32,0x02,0xda,0x4b,0x51,0x9b, +0x81,0xf0,0x9f,0x08,0x18,0x2c,0x45,0x49,0x29,0xb8,0x0c,0xec, +0xa9,0xd3,0x93,0x31,0xe5,0x3d,0x85,0x3d,0x79,0x17,0x4d,0xb3, +0x79,0x17,0x64,0xf4,0x90,0x5d,0xbb,0xba,0x45,0xc6,0x57,0x56, +0x16,0x55,0xe5,0x55,0x71,0x13,0x8d,0xad,0xa4,0x1b,0x4d,0xa9, +0xb7,0xee,0xc4,0x55,0x97,0x8d,0x74,0x71,0xbf,0x74,0x58,0x68, +0x0b,0x0b,0xf5,0xd0,0xca,0xe6,0x9a,0x23,0x8b,0x6f,0x1e,0x59, +0xb8,0x67,0x9d,0x9a,0x52,0xa1,0xf2,0xe0,0xb7,0x72,0x3a,0x00, +0xde,0x9f,0xd5,0xc1,0xc2,0x05,0x8a,0x42,0xf5,0x70,0xff,0x25, +0x16,0x12,0xc5,0x2c,0xf2,0x05,0x53,0x95,0x91,0x53,0xad,0x0e, +0x17,0x45,0x0f,0x9c,0x18,0x84,0x69,0xb0,0x78,0x61,0xff,0x2f, +0xb0,0x52,0x6b,0x23,0x8b,0x6f,0xc3,0x01,0x82,0x8b,0xfb,0x61, +0x31,0xd3,0x2f,0xed,0x24,0xbb,0xd2,0x82,0x45,0xc1,0x9e,0xc0, +0x62,0x53,0x5c,0xcc,0x80,0xdd,0x10,0x81,0x95,0xa6,0xb8,0x92, +0xc1,0x2c,0x74,0x22,0xdd,0x5e,0x03,0x2e,0x6d,0xce,0x4d,0xcd, +0xbc,0x4c,0x69,0x53,0x6f,0x59,0xc5,0xe9,0xd3,0x30,0xf2,0x2c, +0xf6,0x7f,0x64,0x88,0x1f,0xd1,0xd8,0x2f,0x91,0xef,0xc6,0x67, +0x4e,0xe1,0x8e,0xe4,0x6a,0x17,0xb0,0x03,0x30,0x97,0x8c,0x58, +0x8d,0x1a,0xb4,0x48,0x72,0x7f,0xc5,0x15,0xd3,0x11,0xe3,0x5e, +0x89,0x7a,0x1d,0x24,0xe3,0xc3,0x1d,0x57,0xcb,0x2f,0xd8,0x94, +0xf1,0x7e,0x66,0xcf,0xb4,0xfc,0x50,0x3a,0xb1,0x89,0x58,0xf5, +0x18,0xb7,0xee,0x57,0x3a,0xdb,0xf1,0x23,0xee,0xe3,0x56,0xdd, +0x36,0xdc,0x04,0x83,0xf7,0x89,0xcf,0x89,0xa8,0x28,0x97,0xd9, +0xda,0x4c,0xba,0xb5,0xca,0x6d,0xe6,0x72,0x41,0x45,0x5f,0x9a, +0x7a,0x5a,0x6f,0x5c,0xff,0xb9,0x1b,0x1c,0x16,0x5f,0x81,0xc3, +0x9d,0x78,0xf8,0xc2,0xd4,0x71,0x0c,0xce,0x75,0x8b,0xb7,0x45, +0x22,0xd4,0x31,0x67,0x1d,0x63,0x9c,0x23,0xdd,0x38,0x4c,0x10, +0x64,0xc4,0x10,0xdd,0xc7,0x58,0xea,0x22,0x5e,0x25,0x06,0xe8, +0x7e,0x41,0x6a,0xbd,0x46,0xf6,0xa3,0x3b,0x1d,0x96,0xab,0x4e, +0x10,0xeb,0xad,0x5b,0x36,0x6a,0x19,0x2b,0x6d,0xf9,0x1b,0x63, +0xf7,0x1f,0xf7,0x3f,0xe6,0x84,0xd5,0xf8,0x0a,0xc9,0xf3,0xce, +0x71,0x4b,0x77,0xeb,0x2e,0xe0,0x8f,0x35,0x04,0xd5,0x05,0x56, +0x70,0xe2,0x9a,0x48,0x12,0x2c,0x3f,0x60,0xea,0xa2,0x18,0xf0, +0xe6,0x1b,0x7a,0xca,0x47,0x73,0xe8,0x18,0x33,0x8c,0x21,0xd9, +0x6e,0x19,0xb2,0x14,0x87,0xfe,0x4c,0x3e,0xb2,0x39,0xb4,0x3b, +0xb8,0x9e,0x43,0xc3,0x63,0x24,0xc5,0x31,0x49,0x16,0x6f,0x35, +0x9c,0xcc,0x9f,0xea,0x88,0xec,0x8b,0x68,0xe1,0xe0,0x03,0x2c, +0x22,0x36,0xad,0xd6,0x8d,0xe6,0x52,0xd6,0xa2,0xc7,0x6b,0xd0, +0xa9,0xdd,0x91,0xc3,0x3d,0x3b,0x9f,0x67,0x2d,0x9e,0x49,0x2e, +0xa7,0xe6,0x3b,0x34,0xfc,0xa7,0xe4,0xf2,0x59,0xda,0x62,0x44, +0xb7,0x65,0xbf,0x24,0xb9,0xbc,0x6e,0x3a,0x95,0xb6,0x30,0xa0, +0xec,0x6e,0x7c,0xac,0x7d,0xfc,0x99,0xe4,0xd2,0xc4,0x56,0x47, +0x4f,0x4a,0x5b,0xd8,0xbf,0x40,0xcb,0xb0,0xff,0x4f,0x15,0xf2, +0x4f,0x76,0x58,0xb8,0x40,0x1d,0xe8,0x0d,0xf6,0x1a,0xde,0x20, +0xe0,0x29,0x9e,0xd2,0x64,0xf2,0x94,0x66,0x45,0x36,0x15,0x8e, +0x75,0xaa,0x3d,0x83,0xb5,0x57,0xd3,0x3e,0xe5,0xae,0x77,0xa3, +0xde,0xe7,0x26,0x5b,0x50,0xdb,0xe6,0x1a,0x93,0xa9,0x51,0xbb, +0xbf,0xd7,0x54,0xe1,0x6a,0xe6,0xb3,0xff,0x70,0x91,0x39,0x7f, +0xa3,0xfc,0x42,0x5d,0x4f,0x6b,0xb3,0x7b,0x87,0x77,0xdf,0xa1, +0x14,0x0b,0xfe,0x5b,0xa6,0x35,0x2b,0xa7,0x51,0x7d,0x62,0x80, +0x32,0x17,0x2c,0x43,0x55,0xf2,0x05,0xac,0xdc,0xc4,0x82,0xe6, +0xcc,0x2f,0x60,0xc3,0x26,0x76,0x72,0x8e,0x3f,0xc9,0xb4,0xc8, +0xd4,0x48,0xdc,0xdf,0x9b,0xc9,0x47,0x5d,0x09,0xb9,0x43,0x47, +0x1e,0x9a,0x52,0x82,0xfb,0xbf,0x71,0x08,0x88,0x74,0x2c,0x7f, +0x03,0x2b,0xd7,0x48,0x5f,0xfd,0x06,0x36,0xac,0x61,0x71,0x33, +0xb5,0x9e,0x48,0x03,0x5f,0x4b,0x27,0x3b,0xc7,0xf6,0x83,0x7d, +0x61,0x63,0x9c,0x44,0x53,0x63,0xc8,0x4e,0x8b,0xbb,0x68,0xb9, +0xc7,0x42,0xb8,0xdf,0x6f,0x06,0x96,0xd7,0xfb,0x75,0x40,0x6f, +0xa0,0x5f,0xb4,0x61,0xb2,0x4a,0x32,0xcb,0xd2,0x4a,0x6d,0x0a, +0x79,0xcf,0x1d,0xd6,0x5a,0xfa,0xe6,0x55,0x72,0xbe,0x20,0xb7, +0xa0,0x30,0x9f,0x62,0x58,0xb7,0xc9,0x03,0x2f,0x66,0xaf,0x7d, +0x3c,0x71,0x9a,0xa0,0xde,0x4e,0xd0,0x63,0xe1,0x83,0x99,0x77, +0x69,0x8b,0xa1,0x3f,0x41,0xef,0x01,0xea,0xb1,0xe2,0xe7,0xd4, +0x12,0x33,0x5f,0x88,0xa3,0xa3,0x2e,0x04,0xdd,0x90,0x0a,0x06, +0x8e,0x38,0xfa,0x9f,0x34,0x56,0x22,0x3c,0x65,0x9f,0x11,0xb4, +0xdc,0x09,0x96,0x2c,0xb8,0x50,0xe8,0x49,0x1b,0x77,0x99,0x7e, +0xda,0x00,0xcb,0x07,0x68,0xc9,0x8a,0x47,0x71,0x9c,0x74,0x8e, +0xd5,0x7c,0x9e,0x7b,0xdd,0x3c,0x93,0x0f,0x32,0xf0,0xd4,0x54, +0x50,0x4f,0x55,0x04,0x5a,0xa4,0x42,0xbf,0x42,0x23,0x5f,0x7b, +0x28,0x93,0x0f,0x18,0x3f,0xf0,0x99,0xcf,0x18,0x87,0xf6,0xbe, +0xa4,0xc0,0x28,0x73,0x7f,0x86,0xf6,0x48,0x1a,0x7f,0xec,0x66, +0xc8,0x35,0xff,0x21,0x0e,0x1d,0x8e,0x93,0x44,0xd3,0xc4,0xf5, +0xe7,0x0d,0x2f,0x52,0x0b,0xb9,0x14,0xfd,0x45,0xc4,0x00,0xed, +0xbf,0xf0,0x97,0x72,0x7b,0x43,0xe1,0x4f,0x62,0x05,0x31,0x3b, +0xb1,0xce,0x6a,0x62,0x7a,0x2f,0xb6,0xdc,0x85,0xd8,0x5e,0x8c, +0xbd,0x0d,0xa9,0x20,0x13,0x47,0x50,0x06,0x9f,0xec,0x66,0xb7, +0xc2,0x51,0x32,0x0f,0xa7,0xfd,0xc6,0xc2,0xe6,0x99,0xc0,0xcd, +0x43,0x8e,0x81,0xed,0x33,0x7f,0x83,0xb7,0xe6,0xb1,0xe2,0x4f, +0x27,0xc8,0x33,0xc5,0x75,0x5f,0x2e,0xff,0x4c,0x83,0x2d,0x01, +0xac,0x9b,0xff,0x25,0xbd,0x16,0xd2,0x71,0x1a,0x09,0xaf,0x0a, +0xa9,0x0f,0x29,0xb5,0x0d,0xe4,0xb3,0x0e,0x65,0xbb,0xa7,0xf9, +0x70,0x82,0x35,0x7d,0x77,0x46,0x4c,0x76,0x45,0x4e,0x43,0x5a, +0xb9,0x45,0x36,0x1f,0xe1,0x1d,0xa0,0x08,0x74,0xa7,0x00,0xdf, +0x0a,0x5a,0xb6,0x62,0xac,0x15,0xc4,0xe2,0x3b,0x43,0xf0,0x0e, +0x24,0xf5,0x62,0xd2,0x03,0x8a,0xf0,0x67,0x4c,0xc0,0x84,0x23, +0x11,0x3d,0x46,0x84,0x1c,0xa9,0x90,0x5e,0x94,0x52,0x9c,0x5c, +0x60,0x94,0xc4,0x9f,0xf0,0x0b,0x3f,0x74,0xcc,0x8f,0xc3,0x93, +0x62,0xce,0x88,0xe0,0xc1,0xa0,0xcd,0x64,0xd5,0x8b,0xc9,0x73, +0xf1,0x82,0x37,0x49,0x88,0x8d,0x4d,0x88,0x51,0x83,0x85,0x0b, +0x4b,0x9b,0xf1,0xc3,0x27,0xc7,0x53,0x4e,0x9e,0x0f,0x3f,0xa6, +0x7a,0x32,0x4a,0x25,0xa6,0x0e,0xb4,0xdb,0x51,0x1b,0xde,0x62, +0x06,0x12,0x7a,0x93,0xba,0x52,0x42,0x5b,0xf9,0x25,0x01,0xf8, +0x56,0x18,0x92,0x33,0xa9,0x72,0xbe,0x2b,0x96,0xb2,0xbc,0x38, +0x0e,0x59,0xdc,0xae,0x80,0x25,0xac,0x9f,0xbb,0x95,0xe3,0x3a, +0xa7,0x22,0x05,0xff,0xb4,0x4f,0xa9,0x4c,0xea,0xe7,0x12,0x71, +0x75,0x2f,0x23,0x6a,0x02,0x92,0x6c,0xd3,0x97,0x0b,0x16,0x04, +0xde,0x0b,0x1e,0xe4,0xd0,0x18,0x2f,0x53,0x7a,0x96,0xf2,0x42, +0xa9,0x76,0x62,0xe5,0x11,0xea,0xbb,0x4d,0x61,0x11,0x29,0x28, +0xc9,0xad,0xcb,0xa8,0x72,0xce,0xe5,0x8f,0x7b,0x04,0xf9,0x04, +0x1d,0xe2,0xf0,0x50,0x3f,0xc9,0xf5,0xcf,0xf6,0x4d,0xf7,0x6b, +0xc8,0xe7,0xc3,0x4a,0x82,0xcb,0x83,0x0b,0x39,0xc1,0x50,0x74, +0x23,0xfd,0xd8,0x2d,0xe5,0x3b,0x5b,0x2d,0xa0,0x9a,0x3d,0xb0, +0x77,0x85,0x29,0x6a,0xd9,0x17,0x9a,0xf0,0xe0,0x36,0xfa,0xdd, +0x8d,0xd4,0x87,0x14,0xe3,0xa5,0x6e,0x7e,0xa2,0x03,0xf6,0x86, +0x85,0x43,0x3c,0x6a,0xb6,0xad,0x1c,0x3a,0x70,0x95,0xd2,0x02, +0x3d,0x4a,0xae,0x7b,0xc5,0xf7,0xc7,0xf7,0x6a,0x8b,0x04,0x8f, +0xb1,0x58,0x17,0x88,0x6b,0x8c,0xf1,0x6d,0xb5,0x3e,0x99,0xca, +0x15,0x58,0x98,0x07,0xda,0xa0,0x9c,0x05,0xfb,0x58,0x68,0x17, +0x8f,0x12,0xc1,0xbb,0x03,0xe5,0xd7,0x40,0xab,0x15,0xb5,0x2e, +0x81,0x66,0x2b,0x6a,0x5e,0x02,0x8b,0x0e,0xd4,0x67,0xd2,0x0a, +0x92,0x0b,0x93,0x0b,0xad,0x53,0xf8,0x48,0xbf,0xc8,0x43,0xa1, +0x87,0x39,0x5c,0xca,0xa4,0x16,0xa6,0x14,0x26,0x15,0x5a,0xa4, +0xf1,0x5e,0xcb,0x2d,0xd7,0xed,0xd6,0x29,0x33,0xe7,0x2b,0xca, +0xcb,0x6a,0x4a,0xa8,0xe3,0xf9,0xcb,0x1d,0x92,0xdf,0x90,0xdb, +0x98,0xd9,0x44,0x3f,0xf4,0x58,0x6a,0xb2,0x6a,0xa7,0x76,0xb1, +0x39,0x5f,0x59,0x5e,0x51,0x53,0x46,0x3f,0x4c,0x1b,0x60,0x61, +0x37,0xd4,0x93,0x4b,0xb0,0x49,0x8f,0xa5,0x2c,0xe0,0x95,0x97, +0xad,0x69,0xe4,0x1a,0x6c,0xda,0xcb,0xe6,0xe2,0x56,0x62,0xdb, +0xb0,0xbf,0xc9,0xa2,0xd0,0xcd,0x95,0x1f,0x38,0x72,0xc5,0xa9, +0xdd,0x95,0x43,0x8d,0xd5,0xe4,0x60,0x54,0x52,0xa9,0x3a,0x6c, +0x32,0xa1,0xdc,0xdd,0xaa,0xf8,0xd0,0x45,0x35,0x88,0x67,0x9a, +0x32,0x32,0xeb,0xd5,0x1f,0xb1,0x16,0x99,0x2a,0x1f,0xb3,0x55, +0xb0,0x85,0xf4,0x9a,0xf5,0x6b,0x36,0x6a,0x74,0x56,0xf2,0x4e, +0x37,0xac,0x6e,0x59,0x0c,0x72,0xe2,0xaf,0x18,0x49,0xae,0x5c, +0xeb,0xbe,0x5b,0x72,0xc9,0xba,0x90,0xf7,0xd5,0xb3,0xd3,0x31, +0x34,0xa1,0xd8,0x63,0xcd,0xc4,0x27,0xe4,0x9e,0xf1,0x76,0x54, +0x5a,0x4d,0xbc,0xd7,0xcb,0x4e,0x06,0x4c,0xde,0xfe,0xb7,0x34, +0x44,0xba,0x22,0x5d,0x37,0xc1,0xac,0x2f,0x7b,0xaa,0xd4,0x7c, +0xbc,0x8d,0xbb,0x16,0x4e,0x50,0x4e,0xe9,0xa0,0x9c,0x9d,0xbc, +0x8b,0xfd,0xff,0xad,0x02,0x3f,0x01,0x11,0x64,0x3e,0x32,0x4f, +0x29,0x2d,0x9a,0x4f,0x90,0x7d,0x0a,0x2c,0xd3,0x37,0x9f,0x3c, +0x85,0xbf,0xcc,0x67,0x0d,0x25,0x18,0x51,0xa1,0xac,0xaf,0xae, +0x76,0x6a,0xe0,0x0f,0xf8,0xd8,0xb9,0xca,0x0e,0x38,0x37,0xf9, +0xb4,0x1d,0xe9,0xe1,0x60,0x9b,0x31,0xae,0x63,0x77,0xec,0x9e, +0x23,0x43,0x35,0xdf,0x6c,0x6b,0xfe,0x42,0xfa,0x50,0x4e,0x2f, +0x05,0x2e,0xd3,0x59,0xc7,0x53,0x0e,0xa7,0x1c,0x4e,0x27,0x9b, +0xf1,0xf0,0x5e,0x2a,0xfc,0x35,0xef,0xb7,0x92,0x13,0x7d,0xbc, +0x75,0xb8,0x49,0x84,0x41,0x24,0x07,0x6a,0x6c,0x6d,0x7e,0x75, +0x61,0x79,0xc9,0x08,0xbe,0xf9,0xc3,0x6a,0x58,0xaf,0x51,0xd6, +0xcd,0xeb,0x56,0x9a,0x57,0xdb,0xd5,0x73,0xa2,0x07,0xdc,0x22, +0x36,0xe0,0xd1,0xcd,0x82,0xf6,0x4c,0x1b,0xf0,0xe9,0x66,0xc5, +0x8f,0x70,0x0d,0xe9,0x41,0x0f,0x6b,0x56,0x50,0xed,0x21,0xd6, +0xe0,0xd3,0xc3,0xce,0x10,0xae,0x4c,0x64,0x11,0x9c,0xcf,0x24, +0x14,0x24,0x14,0xc4,0x15,0x58,0x27,0xf2,0x01,0x4b,0x5d,0xd7, +0xdb,0x18,0xd4,0x78,0xf0,0xb8,0x95,0x45,0x8d,0xe3,0x38,0x6f, +0x1f,0x7e,0xa0,0xd6,0xe4,0xd2,0x70,0xbb,0xe8,0x66,0xc6,0xf7, +0xaa,0x60,0x89,0xdb,0xf1,0x55,0x69,0xfd,0x9c,0xaf,0x99,0xa6, +0xac,0x5c,0xa5,0xba,0xf0,0xc7,0x0e,0x36,0xb7,0xb6,0xa0,0x2b, +0xb5,0x85,0x13,0xb9,0xc9,0x8e,0xe7,0xd9,0x69,0x21,0x5a,0xb8, +0x41,0xbe,0x1b,0x69,0xb9,0x9b,0x24,0x2d,0x1c,0xfb,0x3a,0x63, +0x75,0xca,0xe8,0x84,0xbb,0x9a,0x4f,0x74,0x44,0xa4,0xc7,0x6c, +0x7d,0x29,0x43,0x36,0xc2,0x0c,0x96,0xe5,0x0d,0xa6,0xa8,0x27, +0x77,0xc7,0x8f,0xc6,0xfe,0xc6,0xe1,0x0d,0x9b,0xbf,0x33,0xd1, +0x4b,0x3c,0x8c,0xf7,0x28,0xb8,0x45,0xb0,0x8b,0x44,0xb8,0x07, +0x28,0x02,0xdc,0x39,0x7c,0x9d,0x29,0xac,0xcd,0x6b,0xca,0x52, +0x72,0xf8,0x40,0xe4,0x48,0xde,0xe3,0xe4,0xff,0xc8,0x62,0x40, +0xfe,0xdf,0xc8,0xc9,0xb1,0xd0,0x1b,0xc7,0xbb,0xed,0x8e,0xf1, +0x69,0x36,0xe9,0xda,0x09,0xfa,0x1c,0xe8,0xbb,0x10,0x3d,0x58, +0x70,0x89,0xe9,0x94,0xb6,0x9c,0x5e,0x70,0x0d,0x17,0xb0,0x50, +0x81,0x61,0x84,0xf2,0xbf,0xf7,0xfb,0xf0,0x7d,0x78,0xc7,0x0c, +0xdf,0xd9,0xc7,0x26,0x56,0xc5,0x57,0xc5,0xd5,0xd8,0x24,0xf2, +0x91,0x9b,0x82,0x77,0xfa,0xec,0x6d,0x3d,0xc8,0x67,0x54,0xa5, +0x55,0xa7,0xd4,0x72,0xf7,0x51,0x1d,0xe7,0x5b,0x50,0x42,0x64, +0x3f,0x08,0xf6,0xf0,0x51,0x3f,0x23,0x96,0x82,0x21,0xc1,0x95, +0x5a,0x6c,0x7c,0x7b,0x6c,0xf7,0xb9,0x61,0x0e,0xa6,0xcd,0xbc, +0x86,0x2b,0xf7,0x32,0x33,0xfa,0x40,0x8f,0xc0,0x56,0x29,0x69, +0x05,0xaa,0x59,0xa7,0x5a,0x78,0x93,0x68,0xbd,0x98,0xbd,0xa7, +0xb8,0x5e,0xd0,0x69,0x45,0x9d,0x0e,0x90,0xb7,0xa3,0x5c,0x09, +0x66,0xa0,0x8e,0x66,0x4d,0xf0,0xe6,0xa3,0x3f,0xda,0xe7,0xf4, +0x9a,0x59,0xa1,0x2e,0x3d,0x2c,0x51,0xfc,0x6d,0x23,0xbc,0xe1, +0x8c,0x06,0x48,0x71,0xbe,0x03,0xda,0x2a,0xc0,0x56,0x8e,0xba, +0xf6,0xa0,0x6b,0xce,0x6a,0xc6,0xec,0x3a,0xad,0x71,0x86,0x13, +0x4e,0x0a,0x1b,0x08,0xbc,0xc3,0x9c,0x42,0x5b,0x57,0x9c,0xb6, +0x68,0x6e,0xbb,0x23,0x4f,0xd1,0xdf,0xb4,0x66,0x98,0x13,0x0f, +0xce,0x1c,0xcc,0x67,0x70,0xc5,0xa9,0x79,0x61,0x7b,0xd5,0x6c, +0xa2,0xc2,0x4f,0x58,0xcf,0xde,0xc6,0x64,0x99,0xa9,0x3c,0x60, +0x2e,0xd6,0x94,0x8c,0xa4,0xa9,0xe7,0x7e,0x9b,0x08,0xaf,0x9f, +0x01,0x3a,0x3a,0xec,0x60,0xa6,0x29,0xce,0xc4,0x77,0x19,0x5c, +0x5e,0x4b,0x1c,0x50,0x57,0xc9,0xee,0xc3,0xed,0x04,0x88,0x25, +0x12,0x06,0x6e,0xcd,0xc4,0xd9,0x7d,0x30,0x9b,0xf1,0x10,0x97, +0x93,0x5e,0x9f,0x01,0xd7,0x0e,0x97,0x86,0x16,0xde,0xa6,0xc5, +0xba,0xce,0xa2,0x92,0x83,0xda,0x2d,0x64,0xc4,0x66,0xcc,0x40, +0x69,0xd4,0x4e,0x01,0xd1,0x65,0xe3,0x61,0xe3,0x2e,0x69,0xfe, +0xe3,0x6e,0xe2,0x1c,0x99,0x40,0x81,0xd4,0xfb,0x86,0xf8,0x3e, +0xbb,0x6b,0x4a,0xb1,0xdf,0x26,0xe1,0x81,0x66,0xf5,0x9b,0xac, +0x51,0xae,0xca,0x62,0x56,0xfc,0x87,0x13,0x19,0x1f,0xea,0xb8, +0x54,0x31,0x2a,0x09,0xfd,0x2d,0x6c,0xf5,0x75,0x6d,0xa5,0x74, +0xf5,0xcb,0x85,0x17,0xa2,0xfe,0x64,0x08,0x2a,0x04,0x2f,0x50, +0xb0,0xe2,0x2a,0x5c,0x49,0x7e,0x87,0xdf,0xe6,0xb2,0x53,0x42, +0x71,0x1a,0xc5,0xb2,0x03,0xd9,0xa8,0x8e,0xb0,0x9e,0xf0,0x06, +0x8a,0xe1,0xd3,0xed,0x32,0xe8,0x68,0xeb,0xcc,0xe2,0x71,0x35, +0x8b,0xa7,0x52,0xa6,0xf2,0x7d,0xb1,0xff,0x16,0xfe,0xfe,0x9c, +0x77,0x48,0xfa,0x4a,0x35,0xba,0xb0,0xf8,0x57,0xd8,0x28,0x6d, +0xaa,0xba,0x0a,0x38,0x56,0x38,0x37,0x93,0xb6,0x76,0xd1,0x16, +0x9c,0xa4,0x83,0xb2,0x1b,0xfb,0x1e,0x9b,0xac,0xc7,0x26,0x1b, +0x48,0x64,0x6d,0xf7,0x2e,0x36,0xc1,0x77,0x2d,0x4b,0x2c,0x79, +0x98,0x7f,0x11,0xa6,0x5d,0xcf,0xfd,0x9a,0x4b,0xc0,0x82,0x61, +0x28,0x48,0x64,0x72,0x57,0xff,0xb1,0x0f,0x16,0xeb,0x17,0xf7, +0xf1,0xf8,0xc1,0xe0,0x8a,0x01,0xdb,0x6b,0xd4,0x39,0x9a,0x4c, +0xac,0x27,0xe8,0xc7,0x94,0x14,0x17,0x97,0x67,0x97,0x73,0x75, +0x58,0xc8,0x26,0x67,0x24,0xa5,0x27,0x66,0x58,0xe7,0xf0,0x9e, +0xba,0x3b,0x36,0xce,0x35,0xaa,0xb2,0xe7,0xe9,0x89,0xe4,0xb4, +0x24,0x8e,0x8e,0x58,0xf4,0x0d,0xc6,0x79,0x96,0xf8,0x8e,0x5a, +0x97,0xac,0x17,0xde,0xc9,0x03,0xf5,0x78,0x58,0xad,0x2a,0x14, +0xb4,0x89,0xf9,0xcc,0xb9,0xc2,0x4f,0x0a,0x8b,0x66,0xc1,0x46, +0x1a,0x11,0x82,0x1c,0xe4,0x47,0x77,0x86,0xe5,0xca,0xf9,0x5f, +0x73,0x46,0x5a,0x0b,0x2e,0x72,0x77,0x6c,0x18,0xf7,0xec,0xc0, +0x56,0x35,0xf8,0x0b,0x53,0x97,0x99,0x5a,0xa5,0x5e,0xcb,0xca, +0xd2,0x55,0x64,0xcb,0xd8,0xa0,0xa8,0x84,0x02,0xf5,0x3a,0x90, +0xb1,0x93,0xc7,0xa7,0x94,0x04,0x53,0x99,0xfe,0xdb,0x13,0x97, +0xc9,0xb1,0x23,0x87,0xfd,0x0e,0xfa,0x73,0x18,0xce,0x94,0x15, +0x15,0x15,0x51,0x58,0x21,0xae,0x12,0xe7,0x90,0xfc,0x7f,0x29, +0x90,0x4e,0x48,0x0a,0x24,0x30,0x81,0x7c,0xa9,0x5c,0xa3,0xf1, +0xbc,0x5c,0x73,0xec,0xee,0xb1,0x7e,0x69,0x1d,0x6d,0x17,0xd2, +0x2a,0xae,0xb5,0x67,0x8f,0xa1,0x3a,0xb1,0x17,0x0c,0x5b,0x59, +0x9c,0x35,0xad,0x55,0x34,0xb4,0x67,0xbb,0xf0,0x2c,0x69,0x82, +0xef,0x9d,0x47,0xc0,0x5a,0x94,0x23,0x75,0x0c,0x73,0x1f,0x13, +0xfc,0xfe,0x0a,0x7c,0xcf,0xcc,0x18,0x87,0x2f,0xc8,0xf8,0x4f, +0xd9,0x9f,0xc5,0x5d,0xa6,0xe1,0xeb,0x9b,0x1e,0xb8,0xcb,0x24, +0x9d,0xff,0x24,0x2e,0x5a,0xed,0x26,0xbe,0xd1,0x54,0xae,0x01, +0x6f,0x46,0x65,0x46,0x9f,0x0f,0x8f,0x52,0x0d,0x8b,0x54,0x89, +0xb9,0xf4,0x7b,0xef,0x5c,0x78,0x87,0xbe,0x03,0x64,0xad,0x9e, +0x32,0xc1,0xcb,0x3d,0x56,0x69,0x2d,0xe3,0x84,0xdf,0xcd,0xc9, +0x57,0xf0,0x7a,0xc1,0x67,0x09,0x37,0xe9,0x05,0x7e,0xec,0x81, +0x1f,0x13,0x99,0xf8,0x3d,0x05,0x7b,0x1e,0xa2,0x4a,0x93,0x92, +0xdf,0xfe,0xd4,0xe6,0x9b,0xd0,0x27,0x1c,0xfc,0xb5,0x17,0x67, +0xc3,0x3b,0x56,0xf4,0xab,0xaf,0x5a,0xfd,0x8d,0x39,0xb6,0x58, +0xbe,0x92,0xe2,0x5b,0x0e,0x39,0x90,0x11,0x4c,0x59,0xca,0x66, +0xd9,0xaa,0xdc,0x61,0x1a,0x73,0xd2,0x5b,0xd4,0x21,0xe3,0x01, +0x7b,0xdc,0x3b,0xd0,0xcf,0xdf,0xb7,0xe9,0x10,0x5f,0x51,0x57, +0xda,0x94,0xd9,0xc6,0xb5,0xcc,0x65,0x0f,0x15,0xb5,0x35,0xd6, +0x36,0x97,0x2a,0x55,0x5b,0xb0,0xc3,0x06,0x42,0xd8,0xa0,0x43, +0xbe,0xbe,0x1e,0x07,0x7d,0x0b,0x7c,0xf3,0xfc,0xb2,0xbc,0xdc, +0xf9,0xda,0x80,0xfa,0x43,0xf5,0x07,0x39,0xdc,0x62,0x03,0xef, +0x31,0x7e,0x7a,0x56,0xfb,0xf1,0x8d,0xe5,0xd5,0x4e,0x3c,0x70, +0x3f,0x8e,0xde,0x4a,0xf9,0x92,0xb3,0x41,0x51,0x92,0x3b,0x39, +0xf4,0xd8,0x49,0x72,0xa7,0x0e,0xb3,0x26,0x93,0x5a,0xce,0x14, +0x3f,0x21,0x8e,0xe1,0x12,0x0b,0xd7,0x36,0x40,0x9d,0xe7,0x2c, +0xbc,0xf9,0x99,0xa8,0xef,0xdb,0x29,0x49,0xcc,0x5f,0x28,0x0b, +0xdf,0x43,0x46,0x0d,0xc7,0xf6,0x28,0x35,0xba,0xeb,0x79,0xdb, +0xcf,0x4c,0xae,0x19,0x8e,0x49,0x2c,0xfc,0x1c,0x19,0xbf,0xd6, +0xf1,0x59,0xd9,0x0d,0xeb,0x12,0xfe,0xd0,0x7e,0xb9,0x86,0x54, +0xaf,0x79,0x30,0xd1,0x46,0xd0,0x7a,0xe2,0x1e,0x58,0xb3,0xe2, +0xa7,0x32,0xb2,0x14,0x6d,0x7f,0x62,0x05,0x9b,0xa5,0x04,0x6d, +0x7e,0x02,0x1b,0x66,0x78,0x29,0xf9,0x09,0x9c,0x97,0xb2,0xf8, +0xd1,0xe4,0x5b,0xe4,0x0f,0xb0,0xec,0x45,0xcb,0x9f,0xa6,0x8e, +0x3f,0x80,0x6b,0x3f,0xca,0xd8,0xfc,0xca,0xac,0xaa,0x94,0x32, +0x0a,0xe3,0x8e,0x7b,0x84,0xb8,0xfb,0x7b,0x48,0x2a,0xa1,0xcc, +0xaa,0xb4,0xca,0x94,0x32,0xd3,0x4c,0xde,0x19,0x67,0xec,0xc5, +0xe9,0x5b,0x57,0xb4,0x3a,0xf3,0xc5,0x65,0xc5,0xd5,0x85,0x75, +0x9c,0x38,0x73,0xa4,0x5d,0xb0,0xa4,0x2c,0x57,0xe3,0x63,0x32, +0xa1,0x66,0x3c,0xa9,0xc6,0x82,0x91,0x60,0x4c,0x8e,0xb5,0x06, +0x74,0x07,0xd6,0xd9,0x05,0xf2,0xb9,0x6e,0x79,0xd6,0x19,0x0e, +0xd2,0x9a,0xb2,0x1f,0x93,0xca,0x7b,0x05,0x30,0x3d,0xf9,0xa1, +0x65,0x02,0x7f,0x62,0xb3,0x3f,0xbe,0x72,0x60,0x17,0x37,0xf1, +0x0a,0xb8,0x90,0x15,0xa8,0x79,0x9f,0x8d,0x8d,0x3f,0x1f,0x17, +0x1b,0xcf,0x9d,0xc4,0x18,0x7a,0x77,0x9a,0x4b,0x29,0x05,0x9e, +0x83,0x9a,0x7f,0xb0,0xff,0x96,0x11,0x15,0x4e,0x4e,0x7c,0x4d, +0xc6,0x0d,0xb5,0xb1,0xd6,0x6a,0x42,0xb5,0x97,0x75,0x5c,0x4a, +0xc4,0x01,0x1c,0x13,0x06,0x98,0xc9,0xf5,0xd0,0x30,0xa5,0x7a, +0x49,0xd4,0xef,0xfb,0x97,0xea,0xc5,0x91,0xc2,0xfc,0xc2,0xaf, +0xd2,0x9e,0xe5,0x42,0x4f,0x3f,0xcb,0x85,0x4e,0x5c,0x85,0x34, +0x82,0x1e,0xa2,0x29,0x78,0xb0,0xc2,0x34,0x69,0x95,0x0f,0x1e, +0x3b,0x90,0x67,0x21,0xe6,0x7b,0xea,0xa3,0x2c,0xfa,0x58,0x61, +0xbb,0xb8,0x98,0x8e,0xe2,0x9e,0x6b,0xec,0x8f,0xf1,0xdf,0x26, +0x3d,0x48,0x0d,0xee,0xe6,0xfd,0x71,0x07,0x5a,0x9e,0x40,0x8f, +0xd9,0xc9,0xd6,0x2a,0x5f,0x7e,0x19,0x1b,0xf7,0x85,0xba,0x2e, +0x76,0xdb,0x40,0x06,0x2b,0x37,0x59,0x69,0x87,0x73,0xec,0x0a, +0xad,0x79,0xd8,0x36,0xf4,0xb7,0xfe,0x82,0x2f,0xa8,0xc5,0x1d, +0x18,0x86,0x03,0x89,0x4c,0xde,0xf6,0x7f,0x18,0xc3,0x7a,0xd3, +0xc2,0x5e,0x1e,0xdf,0x6d,0x5d,0xd2,0x66,0x3b,0x4c,0x7d,0x92, +0xdb,0xcb,0x12,0xda,0xc7,0xc2,0xdf,0x49,0x3b,0xee,0xbd,0x05, +0x7e,0x98,0x31,0x0c,0x19,0x10,0xa1,0x89,0x56,0x0a,0xb0,0xca, +0xa2,0xd4,0x06,0xdb,0xae,0x40,0x66,0x8f,0x78,0xc5,0x1a,0x62, +0xf7,0x63,0x39,0x2e,0x1f,0x08,0x65,0x71,0x11,0xbc,0x47,0xb2, +0x4c,0xb3,0x28,0x80,0xeb,0xc9,0xe2,0x23,0xc7,0x83,0xee,0x85, +0x0c,0x49,0x4b,0x4f,0x8c,0xff,0xd7,0x30,0x14,0x72,0x3a,0xa5, +0xeb,0x2a,0x58,0x21,0x6d,0x66,0x3b,0xbd,0x24,0x2b,0x2d,0x91, +0x3f,0xc9,0xd8,0x40,0x21,0x13,0x71,0x24,0x9c,0xfe,0x93,0x94, +0x40,0xbd,0x43,0x70,0x1e,0x5e,0xc1,0xc8,0x7e,0x88,0x84,0xd7, +0x9f,0xfd,0xf8,0x00,0x8d,0x76,0x48,0xe1,0xf1,0x22,0xd3,0x9c, +0x9d,0xdd,0xac,0x0e,0x21,0x38,0xc4,0xa6,0x15,0xa4,0x15,0xa5, +0x16,0x72,0xd0,0x45,0x01,0x6d,0xf3,0xc4,0x3d,0x62,0x6a,0x84, +0xf9,0xa3,0xf4,0xa0,0x26,0x07,0xb5,0x05,0xb0,0xd9,0x1a,0x6b, +0x45,0x66,0x00,0xee,0x40,0x20,0x5e,0xea,0x83,0x4b,0x10,0x86, +0x55,0xc8,0x33,0x29,0xb6,0xd2,0xf6,0x99,0x0d,0x99,0xd2,0x9e, +0x73,0xb7,0xb0,0xa5,0x07,0xb6,0xfc,0x0a,0x2b,0x3b,0x70,0x25, +0x3b,0xe9,0x9e,0x48,0x06,0xfd,0xc6,0xdc,0xba,0x5c,0xea,0x3a, +0x78,0x79,0xbd,0x41,0xa3,0x49,0x29,0x07,0xff,0xb3,0x90,0x40, +0xbe,0x29,0xe6,0x33,0x78,0x6c,0x11,0xb1,0xae,0xd5,0xaf,0x35, +0x2e,0xf1,0xb2,0xe1,0x47,0xfd,0x2e,0x7a,0xf4,0x78,0x72,0xb0, +0x97,0xda,0xf5,0x60,0x6b,0x41,0x45,0x6c,0x33,0x05,0x93,0xe7, +0x5c,0x73,0x7c,0x06,0x1c,0x8b,0x94,0xbc,0x71,0x53,0x68,0x7d, +0xdb,0xac,0xee,0x05,0x8e,0x3d,0x51,0xac,0x7d,0x80,0x8b,0xa1, +0x93,0x1a,0x0c,0xdb,0x93,0x11,0x65,0x41,0xe5,0x79,0xe9,0xf7, +0xce,0x3b,0x67,0xfa,0x0e,0x3a,0xd0,0xdf,0x33,0x6a,0x3e,0x5e, +0xaf,0x9c,0xd5,0x33,0xc7,0xb1,0x3f,0x92,0x75,0x3c,0xea,0xac, +0xe7,0xa4,0x26,0x8e,0x2e,0x20,0xb7,0x2e,0x8d,0xdd,0x6d,0xb9, +0xa9,0xa8,0xe6,0x1d,0x75,0xcc,0x74,0x34,0x8c,0x38,0x81,0xdf, +0x42,0x7a,0xbc,0x06,0x9c,0xdb,0x1d,0x9b,0x68,0x20,0x6a,0xb5, +0x6e,0xb0,0x90,0x54,0xd6,0xe1,0xff,0x9d,0xd1,0x6b,0x78,0x91, +0xd1,0x33,0x96,0x32,0x7a,0x03,0xb0,0x84,0x8c,0x58,0x50,0x0a, +0xaa,0xfb,0x8c,0x82,0x8e,0x19,0xf7,0x4b,0xe4,0xfd,0x28,0xb9, +0x31,0xd6,0x7e,0xbd,0xec,0x92,0x4c,0x4a,0xf3,0xc9,0xf7,0x4d, +0x55,0xce,0xcd,0xa5,0x40,0x64,0x26,0x61,0x93,0xb7,0xe0,0x01, +0x89,0x4a,0x3d,0x19,0x1f,0x11,0x11,0x11,0xce,0x47,0xdf,0x82, +0x37,0xa1,0x88,0x82,0x27,0xf8,0xb0,0x9f,0xe2,0x7d,0xcb,0xe5, +0x38,0xc7,0x02,0xe6,0xac,0xc0,0xb7,0xb0,0xe8,0x77,0x26,0x48, +0xd3,0x61,0xe3,0x86,0xb5,0x65,0xa6,0xfc,0x97,0xdf,0x56,0x5f, +0x4d,0xfe,0x82,0x06,0x8d,0x47,0xfd,0xd0,0xc8,0x24,0xc4,0x7e, +0x72,0xfe,0x94,0xda,0x77,0xf8,0x5e,0x43,0x9b,0x4a,0xa1,0xa0, +0x4b,0x7e,0x6a,0x51,0x8e,0x52,0xa4,0xfd,0x07,0x73,0xd6,0xfd, +0xb4,0xcb,0x29,0x7f,0xee,0x68,0x4c,0x64,0x94,0xe7,0xec,0xfd, +0x4c,0xba,0x42,0xe5,0x2a,0xd3,0x5f,0x94,0xd1,0x92,0xac,0x9e, +0x54,0x79,0x5e,0x19,0xfb,0x84,0xc3,0xcf,0x64,0xf0,0x2a,0x13, +0x69,0xec,0x63,0xb7,0xd5,0x83,0x13,0xe7,0x55,0x93,0x64,0xdb, +0x94,0xfd,0xe7,0x4d,0xa4,0x6a,0xcd,0x50,0xf8,0xb5,0x08,0xca, +0x86,0x76,0xe1,0x45,0x92,0xfb,0xa2,0x5a,0x43,0x61,0x4e,0xc0, +0x46,0x35,0x81,0x07,0x0d,0x82,0xdb,0xf7,0xc2,0x76,0xa9,0xb0, +0xbe,0x9d,0xe8,0xc0,0xf6,0xeb,0x8c,0x30,0x53,0xd4,0x23,0xc2, +0x7e,0x6c,0x14,0xf7,0xb3,0x70,0x5c,0x50,0x25,0xdb,0x70,0xdf, +0x7d,0x16,0xf6,0xe1,0x7b,0x64,0x2b,0xee,0x7b,0x20,0xb5,0xde, +0x27,0x1b,0x70,0xdf,0x97,0xec,0x1f,0x68,0x4c,0xda,0xdd,0x3b, +0x1d,0x9b,0x15,0xf5,0x4a,0xde,0x45,0x29,0x6f,0x96,0xd5,0x72, +0x98,0x82,0x9b,0xc8,0x70,0xe5,0x40,0x5b,0x63,0xa7,0x6b,0x1d, +0xef,0x62,0x6f,0xeb,0x62,0x7a,0x90,0xbe,0x23,0xd7,0xad,0xe4, +0xcf,0x95,0xa6,0xff,0x5c,0xc9,0x4e,0x44,0xdf,0x22,0xde,0xf5, +0x87,0xfb,0x82,0xae,0xf4,0x7c,0x5d,0xf3,0x4b,0x31,0xa8,0x48, +0x32,0x91,0x95,0x47,0x36,0xbb,0xef,0x0e,0xfe,0x36,0x4a,0x02, +0x18,0xef,0x73,0xb0,0xbb,0x1b,0x77,0x43,0x84,0x25,0x46,0x88, +0x3a,0x4c,0x74,0x71,0x74,0x61,0x74,0x9e,0x3c,0x94,0x4f,0xb7, +0xca,0xd4,0x4a,0xd0,0xa7,0xf4,0xe6,0x74,0x41,0x4c,0x51,0x0c, +0xb5,0x5a,0x76,0x0b,0x72,0xb6,0xc0,0x6d,0xc7,0xe9,0x72,0x98, +0xbe,0x19,0xdf,0xb2,0x85,0xb7,0xe6,0x30,0x26,0x51,0x26,0x27, +0xcd,0xa2,0x93,0x69,0x38,0x5e,0x9a,0x0d,0x6b,0x4a,0x41,0xad, +0xc1,0xdb,0xcb,0xd5,0xc7,0xce,0xb7,0xdc,0x8e,0xbf,0xd5,0x39, +0x34,0xd8,0x76,0x31,0xcf,0xb4,0x44,0x5e,0xe5,0x59,0xe3,0xa6, +0x4c,0x8c,0xeb,0xcb,0x80,0x1d,0xbc,0x22,0x57,0x45,0x4c,0x15, +0x5a,0x48,0x7c,0x72,0xfc,0xd9,0x84,0x93,0x5f,0xac,0xe0,0xdb, +0x1b,0xf3,0x0a,0x72,0x8b,0xe9,0xff,0x7e,0x92,0x78,0x62,0x7c, +0x23,0x5f,0x57,0xbd,0xf7,0x41,0x54,0xca,0xc9,0x73,0xe1,0x27, +0x9e,0xed,0xb0,0x92,0x9c,0x7f,0xbe,0xaa,0x68,0x56,0x91,0xf5, +0x61,0xd6,0xfa,0x94,0x9f,0xa5,0x42,0xcd,0xb6,0x3f,0x2a,0x25, +0xf2,0x93,0xc8,0x93,0xaa,0x27,0xa2,0x4f,0xd3,0x4f,0xf3,0xce, +0x97,0x15,0xcc,0x2a,0xb2,0xf1,0x67,0x6d,0x22,0xdd,0x34,0x4c, +0xd4,0xca,0x1d,0x5a,0xeb,0xf2,0x4b,0x33,0x8b,0x55,0x85,0x1a, +0x19,0xf1,0xeb,0x76,0x1a,0x75,0x6f,0x74,0x3e,0xc8,0xd7,0xb9, +0x35,0x18,0x95,0xda,0x70,0x93,0x23,0xd8,0x48,0x0a,0xbe,0x4e, +0x7d,0x1a,0x0b,0xaf,0x48,0xde,0x6b,0x6e,0xd4,0x32,0x7f,0x3a, +0xc0,0x13,0x40,0x9f,0x88,0x07,0xd9,0x80,0x98,0xa3,0x31,0x01, +0xa7,0x39,0x21,0x98,0x76,0x82,0xb8,0x8f,0xb8,0x46,0xba,0x44, +0x39,0x9f,0xe0,0xbe,0x87,0x69,0x9d,0x38,0xed,0x53,0x0a,0xfa, +0x6e,0xc3,0xeb,0x1d,0xf8,0xfa,0x3d,0x98,0xcb,0xc6,0xe2,0xa2, +0x74,0x54,0x2f,0xc7,0x69,0x41,0x07,0x02,0x7c,0x0f,0xfb,0xd1, +0xb7,0xed,0xfd,0xf2,0x6d,0x47,0xdd,0x20,0x3e,0x75,0x87,0x7b, +0x03,0xaf,0xf5,0x7c,0x55,0xfd,0x6b,0x19,0xbc,0x65,0x93,0xc5, +0x07,0x2c,0xf1,0xdf,0xe4,0xb1,0x3b,0xf0,0xfb,0x08,0x60,0xcf, +0xc0,0x6c,0x0e,0xb4,0xba,0x51,0x0b,0xfc,0x2d,0xd1,0x1f,0xad, +0xbf,0x87,0xa5,0x9d,0xb8,0xf4,0x73,0xf3,0x2d,0xb8,0xca,0x16, +0x56,0xad,0x44,0x03,0xe6,0x74,0x6e,0x4c,0x4e,0x4c,0x96,0x22, +0x84,0x4f,0x56,0xa4,0xe8,0xc5,0x99,0xd2,0xd7,0x7f,0x26,0xff, +0x74,0xc1,0xe9,0x02,0x0e,0xb8,0xcd,0xa8,0xa2,0x00,0x95,0xcd, +0xc8,0xd9,0x01,0xb7,0x01,0x67,0x28,0x60,0x06,0x4e,0x63,0xe4, +0x27,0x15,0x27,0xed,0x4e,0xa5,0xd0,0xf7,0x3f,0x2f,0x17,0x56, +0x56,0xc0,0xbb,0x8d,0xa7,0x3a,0x79,0xb7,0x48,0x97,0x48,0xa7, +0x48,0xee,0x09,0x4c,0x6b,0xc7,0x69,0xf7,0x9f,0xb6,0xce,0xbf, +0xfb,0x47,0xdb,0x9c,0xfb,0x94,0x60,0xc4,0xe2,0xaa,0x2c,0x9c, +0x5f,0x81,0xd3,0xec,0xf6,0x18,0x19,0x6f,0xb2,0xa2,0x9d,0xf4, +0x69,0xe7,0xf0,0x40,0xdb,0x85,0x7c,0x93,0x12,0x79,0xa5,0x57, +0xb5,0x7b,0x6b,0x72,0x7c,0x4f,0x36,0x68,0xf0,0xf2,0x02,0x95, +0x2c,0xe1,0x14,0xf1,0xeb,0x72,0xe9,0x75,0x6b,0x74,0x3e,0x40, +0x5f,0x60,0xbd,0x45,0x89,0x9c,0x9b,0x1c,0xc2,0x76,0x49,0xf3, +0xf8,0xdb,0x73,0xcd,0xe3,0xdc,0xc8,0xa9,0x17,0x18,0x8f,0x35, +0xe4,0xe8,0xa9,0xa3,0x31,0xd2,0xd4,0x9d,0xf0,0x2b,0xec,0x8c, +0x89,0x04,0xa1,0x99,0xc4,0xcd,0x1b,0xd2,0x80,0x57,0xb7,0x55, +0x76,0xf0,0xf8,0xd7,0x6f,0xac,0x6e,0xc2,0x86,0x59,0xfd,0x14, +0xcf,0x85,0x59,0x1f,0x31,0x3a,0x6c,0xd7,0x71,0x84,0xaf,0x1c, +0x2a,0xba,0x95,0x3a,0xc0,0xb5,0x52,0x44,0x96,0x50,0x14,0x5f, +0x74,0xbe,0xd8,0x2a,0x91,0x0f,0xdb,0x78,0x78,0x93,0x5c,0xaf, +0xd3,0x97,0x2f,0x6e,0xc8,0x6f,0xcd,0xec,0xe2,0xc6,0x2c,0x18, +0x5c,0xb7,0x77,0x17,0x2e,0x5c,0xa7,0x56,0x29,0x83,0x77,0x1f, +0xdc,0xba,0x97,0xf8,0x8b,0xea,0xe4,0xce,0x5f,0x88,0x2d,0x3c, +0xee,0xc4,0x79,0xd7,0x61,0x77,0x27,0xee,0xbe,0x61,0xba,0x07, +0xb7,0xda,0xc2,0x56,0x1d,0x16,0xd2,0xe0,0x35,0x62,0x05,0xea, +0xbd,0xec,0x29,0x34,0x22,0x6e,0x5e,0xba,0x0e,0x56,0x47,0x8a, +0x65,0x7c,0x5f,0xf1,0xb5,0xf6,0x06,0x1a,0x51,0xef,0x26,0x13, +0x54,0xed,0x3f,0x08,0x45,0xe5,0xfd,0xa0,0xca,0x9a,0x23,0x4b, +0xb0,0xe0,0x2a,0x14,0x30,0x90,0x80,0x66,0xa4,0xcd,0x67,0xc0, +0xbe,0xce,0xa5,0xa6,0x85,0x77,0x6f,0x30,0x57,0xda,0x95,0x73, +0xe2,0xbd,0x10,0x3a,0x4e,0xe1,0x26,0x1d,0xa8,0x98,0x83,0x7f, +0x25,0xf7,0xc1,0x63,0x1b,0x0b,0xf7,0x51,0x41,0x0e,0x46,0x26, +0x95,0xab,0x4b,0x15,0x36,0x6f,0xd6,0xa8,0x38,0x60,0x44,0x0d, +0x38,0x46,0x99,0x91,0x49,0x41,0xcd,0xeb,0xac,0x75,0xae,0x0a, +0xce,0x66,0xdb,0xc1,0x97,0x54,0x98,0x54,0xad,0xc8,0xd3,0xec, +0x2f,0xe2,0x83,0x2e,0xbb,0x3d,0x3d,0xd8,0x4f,0xfd,0x03,0xc6, +0x91,0xf2,0xab,0x85,0x3f,0xa4,0xde,0xb1,0x4e,0xe7,0x23,0xf6, +0x1d,0x5d,0xed,0xab,0xcf,0xcd,0xcd,0x26,0x69,0xa5,0x69,0xb5, +0x49,0x15,0x36,0x19,0x7c,0xa4,0x5b,0xb8,0x63,0xa8,0xfb,0x8e, +0xf0,0xed,0x51,0x5a,0xd1,0x89,0x34,0xf4,0xcd,0x48,0x85,0xa5, +0xf9,0x30,0xad,0x30,0xba,0x8b,0xf7,0x8e,0xf6,0x8c,0xf6,0x3c, +0xc5,0xa1,0x6a,0x1a,0x39,0x51,0x1c,0xd2,0x72,0xbc,0xd4,0x26, +0x88,0xcf,0xf0,0xcd,0x72,0x4e,0xa2,0x86,0x37,0x51,0x3f,0xf1, +0x80,0x98,0xed,0x47,0xc7,0x2b,0xf4,0x20,0xed,0x57,0x69,0x35, +0xd8,0x0b,0x8e,0xd2,0x61,0x53,0x37,0x6e,0x62,0xc4,0x9b,0x93, +0x5f,0xbf,0xc8,0x4b,0xef,0x14,0xc6,0x09,0xe5,0xbc,0x57,0x8f, +0xb7,0xcb,0x43,0xf8,0x34,0x79,0x86,0x6e,0xa2,0xa9,0xa4,0x7c, +0xe7,0xff,0x4b,0x74,0xf6,0xe7,0x5b,0x58,0x4a,0x23,0x5e,0xe0, +0xa7,0x10,0x38,0x75,0x3c,0xdf,0x81,0x51,0x6c,0x46,0x5e,0x46, +0x49,0x7a,0x89,0x59,0x26,0x1f,0x76,0x30,0xe4,0x60,0x20,0x45, +0x61,0x06,0x4c,0x7a,0x61,0x7a,0x61,0x4a,0x91,0x6d,0x0e,0x0f, +0xdb,0x61,0x17,0xa6,0xe2,0xae,0xc7,0x8c,0xf7,0x2e,0xe3,0x9d, +0x1a,0x06,0x35,0x0a,0xbe,0xb8,0xa0,0xb0,0x30,0xbf,0x90,0x43, +0x1c,0x6e,0x11,0xb2,0xba,0x91,0xe2,0x3d,0x4f,0xa1,0x83,0x50, +0x44,0x9f,0x0d,0xbb,0x58,0xf1,0x15,0x07,0xb2,0x11,0x97,0x3f, +0x62,0x61,0x78,0x23,0x79,0x04,0x6b,0x36,0xb2,0xa2,0x0e,0x26, +0x92,0x4f,0x41,0xb1,0x8b,0x45,0x05,0xce,0x78,0xd6,0x52,0x4c, +0xdb,0x8a,0x8a,0x07,0x14,0xa9,0x78,0xfd,0x6b,0xbd,0x37,0x69, +0x16,0xed,0x4f,0x10,0x07,0x3f,0xb1,0x03,0x33,0x69,0x23,0x83, +0x36,0xc4,0xd7,0x3e,0x26,0xb8,0x6c,0x08,0x96,0x31,0x70,0xcd, +0x94,0xe0,0xfa,0x21,0x58,0xcf,0xe0,0x35,0x5c,0x45,0x4f,0x0e, +0x4f,0x9d,0x34,0xa1,0x27,0x87,0xe9,0x49,0xb1,0x81,0x76,0x73, +0xe4,0xa5,0xe0,0x5b,0xc1,0x7d,0xf2,0xa9,0x25,0x71,0xb5,0xa4, +0x65,0x5f,0x6d,0xe7,0xfc,0xd7,0xf3,0x0b,0x7f,0x05,0x05,0x81, +0x65,0xfa,0x48,0xbf,0x3d,0x72,0x91,0xc0,0x7a,0x7d,0x5c,0xcf, +0xf8,0x89,0x9b,0x08,0x04,0xb5,0x61,0xd0,0x4d,0x08,0x68,0xc3, +0x80,0x71,0x48,0xe8,0xc0,0x33,0x4c,0x66,0x41,0x2a,0x7d,0x05, +0xb4,0x47,0xa3,0xfc,0x8e,0xfb,0x06,0xf8,0x72,0xb8,0x87,0x99, +0xca,0x4d,0x95,0xd8,0xa4,0xf3,0x5e,0x2b,0x6d,0x76,0x6d,0xd1, +0xaa,0x90,0xf3,0x25,0x85,0x45,0xc5,0x05,0xa5,0x94,0x17,0x0f, +0x35,0x51,0x2c,0x41,0xed,0x1d,0xe3,0x20,0x8a,0x8c,0x83,0xb5, +0x36,0x8b,0xd6,0x38,0x9d,0xdc,0x04,0x6b,0x2d,0xd6,0x6e,0xda, +0x2e,0xb4,0xfe,0x94,0x3e,0xed,0xa1,0x97,0x95,0xea,0x68,0xe1, +0x26,0x71,0x3d,0xeb,0xfe,0x89,0xe7,0xd9,0xf3,0x72,0x1e,0x16, +0x9f,0x07,0xe3,0x24,0xd8,0x90,0xc2,0x19,0x0d,0x5f,0x62,0x6b, +0x63,0x6b,0x62,0x2b,0xcf,0x9f,0x6e,0xe5,0x0f,0x9c,0xf1,0x3e, +0xed,0x71,0x86,0x83,0xf8,0x9f,0xda,0x26,0x3f,0xb4,0xfb,0x99, +0x1d,0x32,0x21,0xc3,0xf0,0x95,0x09,0x2b,0xb6,0x59,0x90,0x54, +0xbb,0x34,0xfd,0x04,0xb3,0xde,0x1c,0x3e,0xba,0x3f,0xf4,0x72, +0x78,0x1b,0x07,0x5b,0x75,0x9f,0x7d,0x38,0x69,0x81,0x19,0x53, +0x4a,0x92,0x29,0x51,0xd0,0x8b,0x7a,0xf6,0x36,0xe9,0xa9,0xbf, +0xb2,0x64,0xe6,0x46,0xe3,0x1b,0xd1,0xf8,0xfa,0x69,0x0e,0x16, +0xe3,0x5b,0x04,0xaf,0xda,0xf5,0xe0,0x20,0x73,0xe4,0x4c,0xc0, +0x99,0xc0,0xb3,0x89,0x32,0x7e,0x3c,0xf1,0xc7,0xd4,0x9b,0xe9, +0xdc,0xc6,0x3e,0x61,0x55,0x39,0x0b,0xbf,0x61,0x0e,0x09,0x3e, +0x1d,0x14,0x13,0x48,0x7f,0xbb,0xac,0xab,0x0d,0x6f,0xdb,0x55, +0x51,0x94,0x13,0x74,0x36,0xf8,0x4c,0xf0,0xd9,0x04,0x39,0x7f, +0x23,0xfe,0x51,0xd2,0xbd,0x34,0x6e,0x6b,0xff,0x37,0xec,0x85, +0x34,0x15,0xf1,0x0a,0x44,0x93,0x6b,0x30,0x73,0x2f,0x0b,0x9f, +0x52,0xce,0x7a,0x8d,0x72,0x56,0xd1,0x06,0xb5,0xc9,0x75,0x98, +0x49,0xc7,0xee,0xa7,0xd7,0x89,0x36,0xce,0x1e,0x67,0xf1,0x06, +0xbe,0x46,0x60,0xa6,0x01,0xe3,0x7a,0x52,0x11,0xad,0x38,0xc5, +0xc1,0x8d,0xfb,0x04,0x66,0xeb,0x32,0xf6,0xd1,0x8a,0x68,0xbb, +0x18,0x6e,0xc6,0x0f,0x42,0x23,0x09,0x3c,0x1b,0xf8,0x49,0xe0, +0xd9,0x24,0x19,0xdf,0x1a,0xab,0x3c,0x2f,0x6d,0x6b,0x5c,0xd0, +0x0b,0xa5,0x6c,0xe9,0xf9,0xb2,0xb8,0xb2,0xb8,0x84,0xd0,0xf8, +0xd0,0xf8,0x63,0xcd,0x14,0x66,0x77,0x1d,0x19,0xf0,0x57,0xba, +0x1e,0xe3,0x93,0x83,0x93,0x03,0x93,0x02,0x9d,0x4e,0x39,0xc4, +0x38,0x9c,0xee,0xea,0xe8,0x18,0xea,0xbb,0xe1,0x5c,0xc1,0x1f, +0x76,0x3b,0xe0,0xe2,0xe9,0x1a,0x9e,0x7d,0x2c,0x27,0x34,0xa7, +0xa6,0xae,0xba,0xa5,0xaa,0xcb,0xb1,0x8c,0x3f,0xec,0xe8,0xe3, +0xe4,0xe5,0x1e,0x96,0x19,0x96,0x1e,0x95,0xec,0xe1,0xc9,0x37, +0xb8,0xb5,0x58,0x57,0x3b,0x07,0x05,0x06,0x05,0x06,0x06,0x73, +0x42,0x27,0xec,0x25,0x75,0x6e,0x4d,0xb6,0x95,0x2e,0x41,0xf4, +0xbf,0xc0,0x10,0xfa,0x94,0x9f,0x04,0x49,0x37,0xa1,0x8c,0x6d, +0x39,0xdf,0x22,0xdd,0x44,0x1f,0xbd,0x09,0x69,0x17,0xe7,0x8a, +0xf8,0x67,0x37,0xd1,0x92,0xc1,0x1f,0xeb,0x3c,0x32,0xe0,0xa7, +0x74,0x0d,0xe5,0x4b,0xcd,0xed,0xa3,0xed,0x63,0x14,0xa7,0x55, +0xfb,0x3a,0xba,0x07,0x87,0x6e,0x3a,0x55,0xf0,0xbe,0x2e,0x5e, +0xce,0x6e,0xce,0x61,0x39,0xf4,0x0e,0x72,0x1b,0xea,0x6a,0x95, +0xb5,0x3d,0x8e,0x25,0xbc,0xaf,0x83,0xa7,0xa3,0x87,0xfb,0xf1, +0xac,0xb0,0x8c,0xc8,0x14,0x77,0x2f,0x1e,0x1b,0x65,0xd0,0xce, +0x60,0x01,0x7c,0x4c,0x5d,0x5e,0x4c,0x27,0x8b,0x67,0x50,0x46, +0x5b,0x9f,0xd0,0xd6,0x62,0x1a,0x96,0x3e,0xb1,0x65,0x03,0xd1, +0x82,0x1c,0x1f,0x09,0x1e,0x09,0xea,0x92,0x47,0xf0,0xf9,0xe6, +0x99,0x96,0x99,0x46,0xd2,0xe6,0xdf,0xda,0x24,0xd2,0x34,0x54, +0xcf,0xdf,0xa2,0x23,0x98,0x2f,0xbd,0x90,0x7e,0x21,0x65,0x84, +0x9b,0x70,0x3f,0x43,0x8a,0x8d,0xb3,0x2d,0x73,0x74,0x29,0x1b, +0x0f,0xbe,0x14,0x30,0x78,0xb4,0x4f,0x5a,0xf9,0xc9,0x84,0x94, +0x8c,0x66,0x8d,0xa6,0x0e,0xc9,0x93,0xf8,0x08,0xcb,0x60,0x7d, +0x7f,0x2b,0x0e,0xf3,0x61,0x31,0x41,0x03,0x3a,0xca,0x0c,0x58, +0x94,0xe3,0x1c,0xf2,0x03,0x2c,0x5e,0xc1,0x76,0xa3,0x26,0x91, +0xb5,0x5a,0x51,0x2c,0xe7,0xea,0xc4,0xf7,0x7a,0x0e,0x4c,0xc9, +0x21,0xf7,0x6c,0x91,0x0a,0x0b,0x14,0xd4,0x2d,0x36,0x78,0x26, +0x87,0xfc,0x17,0xa8,0xbb,0x27,0x15,0x16,0x24,0x39,0xe4,0xb2, +0x7f,0xab,0x2b,0x8c,0x9b,0x5e,0x90,0x40,0x9d,0x01,0x06,0x48, +0x75,0x85,0xeb,0xcf,0xeb,0x0a,0x72,0x1d,0x09,0xd4,0x4d,0xfc, +0x3d,0x91,0x7c,0x5c,0xbf,0x65,0x48,0xff,0xce,0x4f,0x9f,0xdd, +0xfb,0xfe,0x22,0xbc,0x6a,0x56,0xcb,0x1b,0x2f,0xd4,0x5a,0xbf, +0x46,0xcb,0xec,0x4b,0xf7,0xdf,0x8e,0xc1,0x5f,0x05,0x9f,0x6c, +0xfe,0xf4,0x98,0x78,0x28,0x44,0xe5,0x4c,0xe5,0xd9,0xea,0xea, +0x59,0xf0,0xee,0x5e,0x7c,0x8f,0xf5,0x3c,0xe7,0x15,0xeb,0xad, +0x86,0xdf,0x85,0x9f,0x37,0x84,0x27,0x69,0x39,0x38,0xb7,0x05, +0xa7,0x5f,0x58,0xa1,0x4a,0xc9,0x14,0x2e,0x30,0x44,0x5d,0x45, +0xb1,0x1e,0x0f,0xfb,0x5a,0x61,0xf9,0x15,0x78,0xe7,0xab,0xab, +0x5b,0x1f,0x19,0xfe,0xdd,0x65,0xe4,0x70,0x5b,0x6a,0xc2,0xd5, +0x1c,0x30,0xe4,0x8d,0x8a,0x54,0xf6,0x0b,0x07,0x89,0x53,0xd3, +0xe6,0x8b,0x66,0x95,0xce,0x76,0x7c,0x9f,0xf7,0x7d,0xa3,0x56, +0x7b,0x7a,0x2b,0x42,0x36,0xb1,0x2c,0xb7,0xea,0x73,0xb8,0x7b, +0xfb,0xa7,0x01,0x50,0xa9,0x81,0x77,0x4c,0x73,0xf9,0x83,0xf8, +0x8a,0x62,0x89,0xc1,0x46,0x87,0x9f,0x0e,0xc0,0xbb,0x27,0x60, +0x25,0x07,0x5f,0x8f,0xe2,0xb7,0x79,0x0c,0xa8,0xe9,0xa2,0x1a, +0x1b,0x28,0xce,0x93,0x76,0xb5,0x8f,0xf0,0x8c,0xf4,0x8a,0x2a, +0xd0,0xe7,0x61,0x49,0x2b,0xac,0x1e,0x83,0xd7,0x46,0x82,0xc6, +0x78,0x1d,0xf7,0xb5,0x2e,0xcb,0x3d,0x39,0x21,0x05,0xbe,0x62, +0x93,0x71,0x4f,0x03,0x2e,0xec,0xc7,0xd7,0xf5,0x34,0x77,0x18, +0xae,0x92,0x57,0x9b,0xf3,0xdf,0xb6,0xdf,0x1d,0xbd,0x7c,0xa3, +0x7d,0x57,0xbf,0xc5,0xa0,0x77,0xf3,0x21,0x65,0x7a,0x62,0x6f, +0x29,0xd8,0xf0,0x16,0xe5,0x2a,0x41,0x42,0x0a,0x31,0xaf,0xd6, +0xac,0xda,0x9b,0x77,0x48,0xce,0x5f,0x0f,0xb8,0xee,0x33,0xe4, +0x25,0x6d,0xd4,0x94,0x4a,0x4c,0x6a,0x2d,0x2e,0x3a,0x7d,0x73, +0xfb,0xab,0xc1,0xa7,0xf5,0x30,0xdd,0x38,0x8f,0xf7,0xf9,0xd8, +0x6e,0xad,0xf1,0x2e,0xcf,0x27,0x47,0xe1,0x8d,0x93,0x30,0x87, +0x83,0xab,0xa3,0x78,0xbd,0x98,0x01,0x55,0x3d,0x54,0x65,0x0f, +0x8b,0x9a,0x52,0x42,0xf8,0xd8,0x51,0x7c,0x6f,0xff,0xc7,0x6a, +0x7d,0xb6,0x2a,0xb7,0x61,0x7a,0x09,0x2c,0x81,0xe8,0x59,0xa0, +0x21,0xbc,0xce,0x26,0xe1,0x96,0x0a,0x9c,0xad,0x9c,0xb3,0x61, +0x35,0xbe,0xa6,0x8d,0x1f,0xc9,0x8a,0x8c,0x79,0x98,0xdd,0x05, +0xd3,0x6e,0x7c,0xf3,0x4d,0xc7,0xaa,0x61,0xbd,0x0b,0x1e,0xed, +0x7e,0x35,0xa9,0x89,0xbd,0x25,0x60,0xca,0x9b,0x57,0xa8,0x1c, +0x17,0xf2,0x89,0x45,0xcd,0x9e,0xea,0xfd,0x79,0x07,0xe4,0xfc, +0xb5,0xa3,0x57,0x7d,0x06,0x3d,0x39,0x7c,0x48,0xdd,0xa2,0xc6, +0xf8,0x86,0x4b,0x9a,0xad,0xce,0x0a,0xfe,0xa6,0xfd,0x57,0xfb, +0x6e,0xec,0x91,0x6e,0x33,0x4d,0xba,0xcd,0x4b,0x8e,0xdf,0xde, +0x7e,0x3c,0xf8,0x6b,0x2d,0xbc,0x61,0x96,0xcf,0xfb,0x2c,0xb6, +0x5b,0xf7,0xec,0x36,0xb9,0x93,0xf0,0xd1,0xff,0xe3,0x6d,0x06, +0xfb,0xe3,0xfb,0x7b,0x17,0xa9,0x0d,0xc9,0x9e,0xdd,0xe6,0x32, +0x38,0xf1,0xe2,0x36,0x57,0x55,0xe0,0x87,0xad,0xf8,0xea,0x9a, +0x65,0xc8,0x6a,0xe2,0x5c,0x59,0xb9,0x09,0x0f,0xaa,0xed,0x30, +0xfd,0xd6,0x93,0x27,0xed,0x2b,0x07,0xf7,0x8d,0x79,0x34,0xfb, +0xb6,0xa4,0xff,0x5f,0xef,0x53,0x14,0xf0,0x16,0x31,0x80,0x9a, +0x0b,0xec,0x0c,0x61,0xe7,0xc4,0x56,0x52,0x61,0x59,0x6b,0xdf, +0xe4,0x86,0xef,0x39,0xe3,0x0a,0x3f,0xd4,0x0e,0xc9,0xa1,0x0f, +0xbe,0x37,0x0b,0x76,0xd5,0xc0,0xbc,0xae,0xeb,0xb6,0x0f,0xbc, +0xbf,0x09,0xe8,0x0a,0x2f,0x4b,0x4c,0x6d,0xaa,0x81,0xb7,0x78, +0xab,0x22,0x37,0xe4,0x35,0xb3,0xb5,0x8b,0xf4,0x1b,0x54,0x3f, +0xab,0xbe,0xda,0xd8,0xd3,0xea,0xd4,0xc8,0x9b,0xca,0xb5,0x5d, +0x37,0xf9,0xb8,0x56,0x7a,0xd6,0x1f,0xec,0x10,0xb4,0xf3,0xf9, +0x33,0x83,0x68,0x14,0x55,0xd6,0xe8,0x9a,0x67,0x54,0xea,0x90, +0xae,0x7a,0xc0,0xb9,0x2b,0xb4,0xcb,0xbf,0x21,0x48,0x15,0x73, +0xc3,0xc2,0xca,0xc3,0xab,0x22,0xeb,0x54,0x0d,0xa2,0x92,0xbd, +0x52,0x0f,0xa4,0xf9,0xaa,0xe2,0x83,0xd0,0xf3,0x66,0x2a,0x13, +0x0b,0x70,0x84,0xb8,0x16,0x18,0x56,0xda,0x67,0xfa,0x38,0xf3, +0xbd,0x41,0xbd,0xbe,0x8d,0x47,0x38,0x58,0x87,0x5f,0x12,0xad, +0x3c,0xed,0x32,0x03,0xe5,0xfd,0xba,0x6b,0xca,0xde,0x6e,0xfb, +0x46,0xde,0xcc,0x5a,0xc7,0x71,0x8b,0xa7,0x6b,0x8d,0xa7,0xd2, +0xb7,0x4f,0xd8,0x43,0xff,0xd0,0x90,0x28,0x0f,0x08,0xab,0x0a, +0xaf,0x8b,0x6a,0x54,0x35,0x8c,0x4a,0x76,0x4f,0xf1,0x4c,0xf3, +0x51,0xc5,0xdf,0x42,0xce,0x9b,0x08,0xd3,0x73,0xca,0x8c,0x6a, +0x6d,0x9a,0x9d,0x54,0x91,0x57,0xe0,0xfa,0x83,0x68,0x10,0x9c, +0x6b,0xc0,0x83,0x7e,0x0e,0x68,0xd7,0xc3,0xa2,0xc1,0xab,0x56, +0x9f,0x79,0x3c,0xf6,0xef,0x3d,0x56,0x92,0x98,0xde,0xd2,0x00, +0xef,0xf2,0xd6,0xa5,0x2a,0x33,0x60,0xf5,0x04,0x0d,0x8e,0x93, +0x13,0x3a,0x30,0x89,0xbf,0xb2,0xa9,0x79,0xc9,0xf9,0x49,0x79, +0x9c,0xb0,0xb1,0xf3,0x9f,0x9c,0xad,0xf0,0x31,0x73,0x32,0x30, +0x32,0x20,0x22,0x90,0x43,0x9f,0xf9,0x64,0x48,0xb8,0x6c,0x4a, +0x23,0x94,0x89,0x78,0x79,0x98,0x5d,0x30,0x4d,0xb8,0x6c,0x20, +0x5e,0x66,0x84,0xbe,0x39,0xc4,0x36,0xc7,0x24,0xcf,0x3a,0xd5, +0xd7,0x99,0x1f,0x3c,0x3e,0x18,0xdc,0x16,0xc4,0xc1,0xc7,0x98, +0x4d,0xf6,0xa6,0xec,0x28,0xd8,0xdd,0x70,0xb3,0x74,0xb4,0xa2, +0xa3,0xca,0xbe,0x9e,0xb7,0xf4,0xdc,0xef,0xb3,0xd3,0xcf,0xa5, +0xc4,0xad,0xd2,0xab,0x5e,0xd0,0xcf,0xe5,0x4f,0x77,0x8b,0xbe, +0x81,0x81,0x65,0x21,0x55,0xc7,0x6b,0x55,0x8d,0x22,0xd3,0xbc, +0x33,0x0f,0x66,0x1f,0x52,0xc5,0xef,0x8f,0xc5,0x5a,0x0b,0x6c, +0x56,0xb5,0x03,0xf5,0xb9,0xf4,0x81,0x3e,0x70,0xc3,0x75,0x7e, +0xa8,0x7f,0x3c,0xdf,0x8c,0x07,0x93,0x74,0xd0,0xa9,0x81,0x05, +0x1d,0xf7,0xe4,0x8f,0x0f,0x7c,0x15,0xda,0x17,0x59,0x9e,0x98, +0xd8,0x98,0x07,0x6f,0xf2,0x36,0xf9,0xf4,0x09,0xb6,0x09,0x1f, +0x91,0x05,0xb8,0xf6,0x02,0xbc,0x3a,0x71,0x6c,0xf1,0x05,0x58, +0xbc,0x04,0x2e,0xe1,0x37,0x4c,0x6a,0x6e,0x4a,0x5e,0x52,0x2e, +0x27,0xac,0xed,0xfa,0xa7,0x8a,0x4c,0x58,0xc4,0x9c,0x0c,0x8a, +0x0c,0x8c,0x08,0xe2,0x30,0x97,0x19,0x5b,0x48,0x06,0x84,0x16, +0x73,0x56,0x6c,0x59,0x40,0x86,0x85,0x16,0x1a,0x28,0x5b,0xec, +0x88,0xd0,0x62,0x28,0xb6,0x30,0xc2,0x39,0x7c,0x5d,0x7a,0xa2, +0x5c,0x9b,0x14,0x5f,0x97,0xa9,0x27,0x6a,0x0f,0xe6,0xc0,0x00, +0x73,0x89,0x4e,0xca,0x8e,0x7c,0x8d,0x86,0xdb,0x65,0x17,0xaa, +0x3a,0x6b,0x15,0xb5,0xbc,0xa5,0xdb,0x3e,0x9f,0xed,0x87,0x5c, +0x8a,0xa7,0x9e,0xe8,0x8d,0x1c,0xfe,0x4c,0x8f,0xb8,0x2a,0x28, +0xa0,0x22,0xb8,0xe6,0x58,0x3d,0xed,0xe7,0x0c,0xcf,0x2c,0xef, +0x9c,0x83,0xaa,0x98,0x17,0x76,0xde,0x0a,0x7a,0x33,0xaa,0x1d, +0x9f,0x3d,0xd1,0x4c,0x37,0x5c,0x7b,0x18,0xf5,0x8e,0x49,0x4f, +0x64,0x9c,0x01,0x7b,0xaa,0xe9,0x13,0x3d,0xb0,0xfd,0xfa,0xc0, +0xd7,0xc7,0x7b,0x4f,0x94,0xc5,0x25,0x36,0x16,0x50,0x53,0x9b, +0xda,0xfe,0xec,0xfd,0x48,0xe2,0x58,0xed,0xd1,0xef,0x7b,0x73, +0xe8,0xdb,0xa6,0x5f,0xcb,0x7f,0xb7,0xce,0xe7,0x8f,0xae,0xf3, +0xde,0x68,0xbf,0xe3,0xc8,0x17,0x21,0xbf,0x44,0xc1,0x5f,0x20, +0x30,0x87,0x8f,0x19,0xc0,0xc0,0x10,0x95,0x98,0x6b,0x67,0x6e, +0x7f,0x36,0xab,0xc6,0xc4,0x83,0xdd,0x1e,0xbb,0x3b,0x6e,0x8f, +0x1a,0xfe,0x35,0x2a,0xde,0x0c,0xde,0x4e,0x49,0xc3,0x05,0x05, +0xf8,0x76,0xcd,0x12,0x55,0x85,0xae,0xb9,0xf1,0x5e,0x19,0xd7, +0x29,0xae,0x86,0xf2,0x9f,0xd9,0xb3,0xab,0xc2,0x1c,0x76,0x5a, +0xd7,0x39,0xf2,0x8f,0x87,0xf3,0x2e,0xc6,0xfe,0xc1,0xdd,0xc4, +0x59,0x8c,0xbc,0x38,0xa0,0x43,0xed,0x32,0x53,0x99,0x9e,0x56, +0xa5,0xfe,0x1d,0x2b,0x4b,0x53,0x59,0x44,0x03,0x4a,0x44,0x52, +0x91,0x3a,0xbc,0x0d,0x1f,0xf4,0xee,0x85,0x3f,0xaf,0xf4,0xee, +0xbf,0x61,0xb2,0x07,0xcf,0xd1,0xc3,0x1e,0xab,0x1b,0xf8,0xe7, +0x56,0x2b,0xa5,0x48,0x46,0x06,0x85,0xd5,0xe7,0xd8,0x5a,0xc5, +0x85,0x8e,0xde,0xfe,0xd6,0x11,0xd5,0x72,0x83,0x1a,0x59,0x8b, +0x77,0x93,0x57,0x7b,0x66,0xfc,0x40,0x06,0x68,0xf3,0x16,0x05, +0x2a,0xb1,0x82,0x3f,0x71,0xeb,0x95,0xf7,0x39,0xb4,0x38,0xbb, +0xf3,0x4a,0x97,0x76,0xb3,0x3a,0x6b,0x4e,0xdc,0x17,0x47,0xf0, +0xdc,0x43,0x38,0xc7,0xa0,0xea,0xb4,0x8d,0x78,0x8e,0xa2,0xbf, +0x73,0x38,0x9b,0xac,0xc1,0x73,0xdf,0x48,0x42,0xd3,0x93,0xc4, +0xad,0xcc,0xbb,0xd3,0xef,0xca,0xf0,0x57,0x6d,0xf0,0x4a,0x1d, +0xf0,0xe6,0x34,0x16,0xe2,0x34,0x8f,0x55,0x76,0x3b,0xfd,0xbe, +0x0f,0x81,0xbf,0x44,0xc3,0x7c,0x0e,0xa2,0x7a,0xf1,0x04,0x73, +0x36,0xe7,0x93,0xdc,0xdc,0x59,0xb0,0xd9,0x08,0xd7,0xb3,0x14, +0x05,0x9c,0x0b,0x54,0xc3,0xe6,0xaf,0xc0,0xa7,0x1b,0x7d,0xbe, +0x30,0xda,0x84,0xee,0x36,0xe0,0xbe,0x0e,0x33,0xac,0x84,0x3f, +0x98,0x44,0xdc,0x5e,0x80,0xf3,0x1a,0xf0,0x55,0x4f,0xb9,0xb3, +0xb3,0xc2,0x93,0x4b,0x43,0x9b,0x6f,0x61,0x7f,0x27,0xee,0x7f, +0xf4,0xfc,0xa8,0xe8,0x46,0x7d,0x36,0xbb,0x28,0xbd,0x34,0xbd, +0xd2,0x22,0x9d,0x3f,0xee,0x71,0xec,0xc0,0xd1,0x03,0x9c,0xb4, +0xe3,0x6d,0x59,0x7a,0x59,0x4a,0xb1,0x55,0x2e,0x7f,0x60,0xa3, +0xc1,0x86,0x9d,0x66,0xc5,0xa6,0x7c,0x49,0x5e,0x71,0x51,0x61, +0x29,0x27,0x2e,0x18,0xea,0x07,0x64,0x6b,0x65,0x97,0x9b,0x06, +0x3a,0x3b,0x46,0x54,0x4b,0x8d,0x6b,0xec,0x1a,0x7d,0x6a,0xbc, +0x5a,0xd2,0x92,0xfb,0x4b,0x61,0x0b,0x2f,0x2b,0x57,0x49,0x15, +0x12,0x89,0x47,0x9b,0x75,0xaf,0xac,0xc6,0xd9,0x93,0xef,0xf0, +0xec,0xb1,0xae,0xb1,0xe3,0x26,0xf7,0xe3,0x8f,0x14,0xe6,0x6e, +0xda,0x28,0x15,0xc1,0x54,0x5f,0xb6,0xd4,0xc9,0xb7,0xb0,0x69, +0x35,0x7d,0xf6,0x59,0x91,0x44,0xd1,0xe0,0x76,0xc9,0xf7,0xeb, +0xe1,0x87,0x2d,0xdf,0x56,0xff,0x60,0x95,0xcf,0xfb,0xed,0xf4, +0xd2,0x74,0xdc,0x17,0x72,0x37,0xec,0x9b,0x13,0x4f,0xc1,0x37, +0x5b,0xea,0xf0,0x83,0xcf,0x3a,0xfc,0xde,0xac,0x1a,0x53,0x4f, +0x76,0x5b,0xac,0x06,0xed,0xf0,0xe5,0x27,0xe3,0xcd,0x7f,0x48, +0x4c,0xc6,0x77,0xb3,0xf1,0xb5,0x92,0xd5,0xaa,0xfa,0x9b,0xb7, +0xed,0x59,0x60,0x5a,0x63,0xc3,0xff,0x38,0xf0,0xe9,0x95,0xb1, +0xdb,0xe5,0xdb,0x1b,0x8c,0x3a,0x5c,0x9b,0xbc,0x3a,0x32,0xe3, +0x68,0xb7,0x68,0xf1,0x96,0x85,0x2a,0xe7,0x85,0xc3,0xc4,0xa3, +0xd7,0xae,0xdf,0x51,0xe9,0xec,0xc1,0x37,0x3b,0xb7,0x99,0x56, +0xd3,0x6e,0xe9,0xc7,0x85,0xa4,0x60,0xc3,0x4f,0xd6,0x30,0xdf, +0xa4,0x78,0x80,0x47,0xd5,0xae,0x8d,0xed,0x9e,0x57,0x3a,0x8a, +0x3b,0xaa,0xeb,0x9a,0x3d,0xab,0x79,0x0f,0x37,0x3b,0x2f,0xf9, +0x91,0xbc,0x43,0xbc,0x09,0x73,0xfa,0xa4,0x0a,0xf4,0x61,0x80, +0x35,0xec,0xc4,0xa4,0x3e,0xd6,0x43,0x57,0xc3,0x16,0x55,0xed, +0xa5,0xd5,0x0a,0xe6,0x76,0x7f,0xdb,0x57,0xf4,0x98,0x83,0x88, +0x53,0xd2,0xa6,0x44,0x91,0xd6,0xb0,0x1f,0xab,0x59,0x7d,0x28, +0x20,0x3e,0x1e,0x76,0xde,0x32,0xff,0x32,0x27,0xbe,0xab,0x94, +0x5e,0xae,0x91,0xc3,0xae,0x0a,0xe2,0xe3,0xa9,0xf0,0xb4,0x3d, +0x52,0x4e,0xcf,0x95,0xb4,0xd7,0xd4,0x36,0x72,0x47,0x37,0x10, +0x47,0xb9,0xcc,0xcd,0xf4,0x00,0xfd,0xb5,0xa1,0xaa,0x81,0xc6, +0x96,0x1e,0x0e,0xde,0x46,0x0f,0xb2,0x57,0x6b,0x9d,0xfd,0xfc, +0x43,0xb9,0x36,0x3c,0xbc,0x5a,0xfe,0xa4,0xf3,0xce,0x67,0x14, +0x5e,0x51,0x92,0x09,0x2b,0x1a,0xe1,0xad,0x4b,0xdf,0xfc,0x83, +0xba,0xe0,0x6d,0x6b,0xf0,0x35,0x63,0x5c,0xe1,0xc4,0x09,0x26, +0xf0,0x0a,0x99,0x8b,0x1c,0xce,0xde,0x8a,0x8e,0x32,0x69,0x99, +0x5d,0xef,0x6e,0x58,0xf0,0x0d,0xbc,0x06,0x7f,0xe1,0x66,0xfc, +0xf9,0x41,0x24,0x91,0xd7,0xb9,0x8e,0x1c,0xb8,0x3f,0xf2,0xb8, +0xf5,0x49,0xf5,0x3f,0xe8,0x70,0x3a,0xb4,0xd9,0x73,0xbb,0x42, +0xeb,0xc8,0x83,0xd0,0x9f,0xa2,0xe0,0x75,0x88,0x98,0x1a,0x4e, +0x11,0xc1,0x2a,0xa7,0xae,0x4b,0xc3,0xa9,0x76,0x6a,0x38,0xed, +0x8a,0xdf,0xa3,0xb6,0x29,0x3a,0xde,0xfc,0x61,0x42,0x1a,0xaa, +0xe6,0xe3,0xf4,0xca,0x15,0xaa,0x66,0xbb,0x75,0x74,0xd7,0x5b, +0xd6,0xda,0xf0,0x0f,0x7a,0x2e,0x8f,0x0d,0x5c,0xad,0xd4,0x6a, +0x34,0xeb,0xf0,0x68,0xf6,0x6a,0xcf,0x8a,0x1b,0xc8,0x04,0x1d, +0xde,0xa2,0x50,0xe5,0x2c,0x7d,0xbb,0xae,0x7d,0xb6,0xbd,0x8a, +0x66,0x17,0x37,0xbe,0xcd,0xb5,0xc3,0xbc,0xc1,0x9a,0x9b,0xec, +0xa0,0xa0,0x11,0x1d,0xc1,0x07,0x1c,0x25,0xc6,0xe2,0x08,0x87, +0x68,0x43,0xdc,0x8f,0xab,0xc9,0xef,0xf0,0xda,0x5c,0x16,0xd6, +0xcd,0xfc,0x1d,0xd8,0xb9,0xec,0x15,0xb1,0x96,0xe0,0xb1,0xfb, +0x60,0x0b,0x4f,0x45,0x2b,0x7c,0x0a,0x16,0xdb,0x30,0xd2,0x1c, +0x22,0x71,0xce,0x08,0xcc,0x81,0x63,0x0c,0xb6,0xc0,0xb7,0x04, +0x3f,0xfa,0x11,0x3e,0x62,0x06,0x97,0x91,0x1f,0x61,0xde,0x32, +0x16,0x65,0x32,0xb2,0x08,0x3f,0xfa,0x99,0x05,0x8b,0x99,0x30, +0x6f,0x11,0xce,0x63,0x66,0x40,0xdb,0xc4,0x07,0x44,0x87,0xc5, +0x57,0x4f,0x9e,0x57,0xfc,0x9e,0xa8,0x12,0xc0,0x9a,0x16,0x07, +0x5e,0x50,0x83,0x77,0x18,0x65,0x76,0x56,0xa3,0x7a,0x05,0x6b, +0x93,0xae,0x62,0x45,0xd9,0xe9,0xe1,0xa8,0x84,0x62,0xf5,0x22, +0x16,0x66,0x26,0x9d,0x69,0xc7,0xf7,0x4f,0xa8,0x5c,0x01,0x1b, +0x36,0x32,0x20,0xc4,0xff,0x68,0x50,0x9b,0x2f,0x5f,0x5e,0x55, +0x54,0x97,0x5a,0xc3,0x35,0xe0,0xd9,0x21,0xf0,0x6a,0x47,0x2f, +0xa5,0x31,0x2e,0x42,0x3b,0x3c,0xce,0xe2,0xe1,0x08,0x9c,0x6d, +0x8d,0x1f,0xa8,0x75,0x3a,0xa8,0x0c,0xc1,0xc7,0x69,0xb0,0x1a, +0x82,0x66,0x51,0x80,0x38,0x11,0x31,0x39,0x97,0xb8,0xd5,0x1e, +0x18,0x38,0x72,0xbb,0xef,0xfb,0xda,0xa7,0x45,0xbf,0x59,0x65, +0xf3,0xc1,0x9b,0xfc,0xb6,0xba,0xed,0x0e,0x79,0x10,0xfe,0xb7, +0x93,0xc0,0x80,0x75,0x16,0x1f,0xd3,0x8f,0x56,0xa1,0x2a,0xa7, +0xaf,0x9f,0xbd,0x75,0x6f,0x56,0x95,0x99,0xb7,0x64,0xbe,0xe7, +0xb5,0xd5,0x50,0x25,0x2a,0xde,0x02,0x5e,0x4f,0x4e,0xc2,0xf9, +0xd9,0xf8,0x56,0xc9,0x32,0x55,0xbb,0x3d,0xa6,0xfa,0x9a,0xd6, +0xf5,0xb6,0xfc,0xe5,0x8e,0xde,0xc1,0xd6,0x0b,0x85,0xfa,0x15, +0xb6,0x75,0x5e,0xf5,0x1e,0xdd,0x19,0x71,0x83,0xe9,0xa0,0xc1, +0x5b,0x15,0xaa,0x24,0x0a,0x87,0xc8,0xc1,0x3e,0xa7,0x41,0xb7, +0x56,0x27,0x2f,0xbe,0xde,0xa9,0xc9,0xb8,0xcc,0x8a,0x9b,0xd4, +0xc7,0x53,0xc4,0x56,0x58,0xde,0xc9,0x8a,0x6f,0x2f,0x23,0xb8, +0x16,0x7e,0x85,0xb5,0x2c,0xf6,0xe0,0x34,0x72,0x05,0xce,0xee, +0x67,0x3f,0xc3,0x0f,0x89,0xdf,0x29,0xa7,0x93,0xb6,0xd1,0x99, +0xc5,0xe9,0xff,0x87,0xb5,0xb7,0x80,0xae,0xea,0xda,0xda,0x86, +0x0b,0xe5,0xec,0xbd,0x91,0x86,0x42,0x59,0xb0,0x13,0xda,0x84, +0xe2,0x14,0x87,0x42,0x71,0x0b,0x1a,0xe2,0xee,0x46,0x5c,0x08, +0x21,0x21,0xee,0x38,0xc5,0x12,0xa2,0x27,0xee,0xee,0xee,0x2e, +0x78,0xb1,0x22,0x85,0x96,0x16,0x68,0x29,0x15,0x2a,0xf4,0xce, +0x9d,0x3b,0x37,0xf7,0xfe,0x6b,0x9f,0x13,0xda,0xde,0xf7,0x7d, +0xc7,0xf7,0xfe,0xdf,0x18,0x1f,0x19,0x83,0x64,0x6c,0xc8,0x3e, +0x4b,0xe6,0x9c,0xcf,0xf3,0xcc,0x25,0xb3,0x20,0x21,0xcf,0x3a, +0x9d,0x8f,0x74,0x0b,0x74,0x0d,0xf0,0x5c,0x12,0x35,0x2b,0x66, +0xef,0xc9,0x0b,0xd4,0xc0,0xde,0x3d,0x0f,0xfb,0xf3,0xbf,0xcb, +0xe0,0xf0,0x5c,0x0d,0x89,0x28,0x0e,0x29,0x09,0xce,0xb3,0x3d, +0xc4,0xa7,0x1f,0x4c,0xf3,0x4e,0xf2,0xa6,0x06,0x34,0x29,0x8c, +0xb8,0x54,0x7a,0xf7,0xfa,0xdf,0xa7,0xfd,0xfb,0x8d,0xf6,0x2f, +0x9d,0x0f,0x5a,0x73,0x70,0xbd,0xeb,0xb6,0xd0,0x2f,0xa2,0x68, +0xff,0x64,0x60,0xa2,0xe8,0x9f,0x71,0x98,0xec,0xc4,0x35,0xa9, +0x7f,0x95,0x46,0xae,0xec,0x86,0xd3,0x8a,0xfe,0xbd,0x2d,0xf5, +0x6f,0x14,0xed,0xdf,0xec,0x54,0x7c,0x27,0x6f,0xa1,0xaa,0xdd, +0x0e,0x63,0x9d,0x9d,0xe6,0x5c,0x1d,0xda,0x3d,0x02,0xed,0x56, +0xd4,0x7e,0x00,0xda,0x2d,0xa8,0x7d,0x1f,0x6c,0x5b,0x51,0x87, +0x4d,0xc9,0x4e,0x2e,0x48,0xcc,0xa7,0xa3,0x17,0xed,0x15,0xee, +0x15,0x40,0xe3,0xd0,0x2c,0x26,0x25,0x2f,0x25,0x3f,0x29,0xdf, +0x3c,0x9d,0xf7,0xdc,0x62,0xb5,0x41,0x47,0xbb,0xc4,0x82,0x97, +0xa7,0xa5,0xa4,0x27,0xa7,0x71,0xf8,0xcf,0x9e,0x26,0x61,0x0e, +0x8d,0xc0,0xd7,0x5a,0x7b,0xfa,0x9a,0x2e,0xab,0xe6,0xec,0x2d, +0xb2,0xac,0x70,0xaf,0x72,0xed,0x4c,0x3a,0xd7,0x97,0x0c,0x5b, +0x79,0xb3,0x6c,0x59,0xbc,0x10,0x44,0x7c,0xba,0x1c,0xfb,0x5d, +0x9a,0x1c,0xe8,0x48,0x39,0xd4,0xea,0x15,0x98,0x72,0xe2,0x33, +0x7c,0x97,0x40,0x1f,0x86,0x5a,0x80,0x26,0xc6,0xb1,0xf0,0x45, +0x04,0x81,0x1b,0x78,0xd4,0x82,0x62,0x5c,0x26,0xf5,0xd7,0x73, +0xc4,0xd5,0xcd,0xce,0xcb,0xfc,0x50,0xa1,0x03,0xdf,0x9e,0xdb, +0x5e,0x51,0x55,0xc9,0x61,0x77,0x39,0x71,0x77,0x73,0xf0,0xb2, +0xf2,0x2f,0xb4,0x97,0xfc,0xb5,0xb2,0xbc,0x92,0x83,0x99,0xe8, +0x4a,0x3a,0x0b,0xbb,0xab,0xaa,0x6b,0xdd,0xcb,0x79,0x27,0x27, +0x6b,0x4f,0x53,0x5f,0x0e,0xa7,0x3c,0x27,0xf6,0xd6,0x76,0x2e, +0x06,0x5e,0xc5,0xf6,0x7c,0x4f,0x69,0x47,0x7d,0x43,0x3b,0x67, +0x8a,0x37,0xc9,0x7d,0x58,0xb1,0x91,0xc5,0x15,0x38,0x99,0x3c, +0x80,0x15,0x1b,0x58,0xab,0x31,0x6b,0x71,0xc5,0x23,0x56,0xe5, +0xda,0x70,0x04,0xf9,0xe7,0xe8,0xde,0x7f,0x8d,0x66,0x86,0xaf, +0xe1,0x6c,0xf2,0xfa,0x53,0x34,0x65,0xd0,0x21,0x10,0x67,0x6e, +0x44,0xa2,0xde,0x61,0xf6,0x18,0x66,0xe5,0xc0,0xc7,0xa7,0xc1, +0x56,0x75,0x58,0x87,0xd1,0xe9,0x21,0xaf,0x27,0xfe,0x63,0x78, +0x22,0x23,0x66,0xbf,0xde,0x4c,0xc0,0x11,0x66,0xa0,0x6e,0x2f, +0xe8,0xbe,0xf9,0xb6,0x00,0xe7,0x2f,0x60,0x13,0xcd,0x65,0x0f, +0x99,0xfa,0xdc,0xec,0x3a,0x0d,0x61,0xcc,0xeb,0x79,0xa2,0x16, +0x0b,0x96,0xd2,0x7a,0xc4,0x0c,0x78,0x0f,0x66,0x30,0xbd,0x53, +0xe9,0xff,0x7d,0x0f,0x67,0x50,0x4b,0x9c,0x4a,0x1f,0x2c,0xa0, +0x9a,0x41,0x45,0xd8,0x27,0xac,0x25,0x16,0x41,0xc6,0xc1,0xc6, +0xa1,0x1c,0x04,0xc3,0xda,0x01,0x5c,0x0b,0x7b,0xf7,0xe2,0x5e, +0xd4,0xd5,0x07,0x5d,0xfc,0x94,0xdd,0x1d,0xbc,0x2b,0x54,0x3b, +0x32,0x51,0x97,0x1f,0x48,0xba,0x2c,0xbf,0x4c,0x07,0xbc,0x0a, +0x37,0xb2,0xe9,0xda,0x32,0x98,0xc9,0xf4,0xa4,0x67,0x74,0x6b, +0x40,0x13,0x3b,0x90,0xde,0x9f,0xd1,0x9d,0xcd,0x09,0x8b,0x51, +0x24,0xe8,0xc3,0x58,0x46,0xa4,0x34,0x6b,0x0c,0xcb,0xb5,0x5e, +0x67,0xb3,0x6b,0x8a,0x3d,0xbe,0x56,0x87,0x83,0x4c,0x47,0x46, +0x76,0xa7,0x06,0x58,0xb1,0x3a,0xd9,0x94,0xa7,0x58,0x0c,0x7f, +0x4e,0x50,0x0b,0x3f,0x32,0x80,0x8f,0xe8,0xfb,0x8d,0x43,0x4c, +0xc2,0xcc,0xa2,0x12,0xf4,0xf8,0xb6,0xa4,0x8e,0x94,0x8e,0x54, +0x0e,0x2b,0xf0,0x7d,0x36,0x4d,0x47,0x06,0x63,0x98,0x8e,0x34, +0xa9,0x14,0x6a,0x3b,0x5b,0x93,0x52,0x23,0xaf,0x4e,0x8d,0xee, +0xe5,0xdd,0xc3,0x5d,0xc3,0x5d,0x23,0x38,0x08,0x04,0xbe,0x1f, +0x79,0xd0,0x62,0x05,0x7d,0x71,0x0a,0x81,0x62,0x88,0x1c,0x14, +0x53,0xf4,0xc0,0x1b,0x8b,0x31,0x4a,0x17,0xa2,0x44,0xa7,0x2b, +0x82,0x13,0xc4,0x0e,0xd1,0xce,0xcd,0x15,0x56,0x12,0xc7,0x10, +0xbb,0x50,0xdb,0x30,0xe9,0xb7,0x3e,0xe8,0xc7,0x0f,0x40,0x8b, +0x4a,0x21,0x5c,0x69,0x40,0x19,0xe6,0x29,0xd6,0x20,0xd8,0x20, +0xdc,0x38,0x32,0x51,0x8f,0xef,0x4c,0xec,0x96,0x77,0x2b,0x3e, +0x7c,0x0e,0x9b,0xae,0x23,0x55,0xe2,0xec,0x4a,0xcb,0x6c,0xd7, +0x80,0x16,0xb6,0x35,0xb5,0x25,0xbd,0x39,0x83,0xeb,0x14,0xb7, +0x92,0xab,0x8f,0xe0,0xd6,0xda,0xab,0xc3,0xd7,0x45,0x33,0xe6, +0xaa,0x3e,0x81,0x5b,0xaf,0x59,0xbc,0xc5,0x48,0x9f,0xb1,0x82, +0xec,0x0b,0xb1,0x0f,0xb3,0x0f,0xe7,0x20,0x00,0xa6,0x0f,0xe0, +0x74,0xd8,0xa3,0x83,0x7b,0x70,0xb5,0x3e,0xac,0xa6,0x9f,0xa1, +0x1f,0xa2,0x1f,0x66,0x24,0x7d,0x46,0x57,0x52,0x4f,0x4a,0x0f, +0x1d,0xc0,0x4a,0x9c,0xa7,0xe8,0xa0,0x0a,0xd3,0x99,0x2e,0x7d, +0x46,0x2b,0xdb,0x2c,0x6f,0x4e,0x6b,0xcc,0xe0,0xa0,0x01,0x90, +0x40,0xc4,0xa0,0x58,0xa8,0x07,0x61,0xaf,0xd7,0x61,0xa6,0xae, +0xf0,0x68,0x08,0x63,0xe9,0x47,0xbc,0x4f,0xbb,0xe1,0x10,0x4c, +0xbb,0xa1,0x98,0x23,0x59,0x3f,0xca,0x94,0xdd,0x58,0x60,0x40, +0x27,0xf1,0x34,0x6b,0x12,0x62,0x1c,0x6e,0xae,0x1c,0xc3,0xf6, +0x64,0x69,0x0c,0xcb,0x69,0x70,0x93,0x3e,0xe2,0xed,0x91,0x31, +0x6c,0x65,0x5b,0xd3,0x68,0x37,0x32,0x39,0x68,0xc4,0x9d,0xd2, +0x56,0x5d,0x8d,0x3b,0xb0,0xad,0x00,0x22,0xb9,0x36,0xb1,0x47, +0x5f,0x88,0x60,0x0f,0xa2,0xa3,0x2e,0x2e,0xc7,0xb7,0x70,0xf2, +0x22,0x18,0xa7,0x0b,0xb3,0x5c,0x41,0x5b,0xef,0x10,0x5f,0x83, +0x86,0x57,0x71,0xc9,0x6f,0xf8,0xde,0x96,0xad,0x4b,0xb4,0x51, +0x66,0x58,0x4e,0xd5,0x9c,0x6c,0xf0,0xc7,0xeb,0x0f,0xbe,0xb8, +0xbd,0xf1,0xe9,0xee,0x7f,0xe8,0x97,0x0f,0xf1,0xb3,0x7a,0x57, +0x5f,0xda,0x79,0x8b,0x6b,0x80,0x76,0x62,0x7f,0x49,0xe7,0x86, +0x65,0x93,0xa3,0x3d,0xdf,0x6a,0x7b,0x71,0x6b,0xa3,0x0e,0xa7, +0x22,0xb0,0xc2,0x2a,0xb2,0x2f,0xd8,0x8e,0xb6,0x5b,0x6a,0x35, +0xd3,0x87,0x0c,0xec,0xd5,0xa5,0x96,0xa5,0x66,0x08,0x6a,0x78, +0x96,0xb5,0x08,0xb5,0x0c,0xb7,0x8e,0x4a,0x34,0xe0,0x1b,0x13, +0x9b,0x92,0x9b,0xe5,0x1c,0x96,0xa1,0x0a,0x9b,0xaa,0x23,0xfb, +0x99,0x69,0x4f,0xcf,0x6c,0xd1,0x80,0x36,0xb6,0x25,0xad,0x25, +0xa3,0x29,0x8b,0x13,0x1e,0xe1,0x29,0xe2,0x23,0x3f,0x90,0xe6, +0x9b,0xce,0xa5,0xc2,0x47,0x09,0xb0,0x0b,0x96,0xa9,0xc1,0x62, +0x31,0xd1,0x00,0xd6,0x9b,0xb2,0xeb,0x4e,0x68,0xc6,0xec,0x51, +0xb7,0xe9,0x75,0xe8,0xdf,0x37,0x64,0xe1,0xca,0xb7,0x6d,0xee, +0xd9,0x3a,0xb8,0xd3,0x03,0x17,0x6b,0xe2,0x38,0xd4,0xc0,0x49, +0x75,0xc6,0x3c,0x7c,0x00,0x93,0xee,0xc2,0xc4,0x5a,0x98,0x77, +0x6b,0xd3,0xfd,0x1d,0x0f,0x0d,0xb8,0x53,0xec,0xe2,0x28,0xdf, +0x43,0x1b,0xa6,0xe3,0x14,0x26,0x5d,0x57,0xba,0x95,0xeb,0x65, +0x63,0xc5,0xef,0xe9,0x1a,0x99,0x11,0xf4,0x2b,0x8a,0xc3,0xaf, +0x40,0x20,0xf2,0xaf,0x62,0x9f,0xff,0xae,0xd6,0x09,0x7e,0x14, +0x5f,0x66,0x1f,0xc6,0xd5,0xe1,0xf8,0x81,0xfa,0x86,0xc1,0xad, +0x9f,0xed,0xbc,0xc7,0xa9,0xc0,0x2b,0x61,0x09,0x71,0x0d,0x75, +0x0a,0x75,0xa2,0x33,0x1e,0x02,0xef,0xf4,0xe1,0x3b,0xb0,0x57, +0x8f,0x76,0x6c,0x8a,0x21,0x4c,0xc1,0x73,0xac,0x55,0x98,0x75, +0xb8,0xad,0xd4,0xb1,0xfa,0xc4,0x86,0xe4,0xc6,0x14,0xa9,0x63, +0x63,0xd9,0x54,0x5d,0xd9,0xf7,0x4c,0x5b,0x7a,0x66,0xb3,0xd4, +0xb1,0xfa,0xd4,0xba,0xb4,0xba,0x0c,0xae,0x1c,0xf6,0x13,0x4c, +0x88,0x42,0xb3,0x4f,0xf0,0x63,0xf5,0xae,0x7d,0xb2,0x6f,0x60, +0x47,0x2a,0xd8,0x42,0xb1,0x1a,0xe5,0xf2,0x47,0xfa,0xc5,0x6e, +0x16,0xd2,0x5f,0x37,0x12,0xbb,0xf0,0xa4,0x46,0x0d,0xe1,0x3c, +0x1c,0xc6,0x74,0x5c,0xc8,0xa6,0x18,0x4a,0xb7,0x4e,0xb6,0xe4, +0x48,0x23,0x74,0x15,0x45,0xf1,0x06,0xbb,0xa9,0x72,0xff,0x4d, +0x75,0xd8,0xcf,0x74,0xe4,0xe6,0x50,0x27,0x5b,0xc1,0xea,0xa7, +0xc9,0xd0,0x84,0x55,0x81,0x7f,0x09,0x8b,0x89,0x5b,0x98,0x73, +0x98,0x33,0xf5,0x98,0x20,0x18,0xdf,0x87,0xe3,0x95,0xc3,0x3f, +0xd3,0x90,0x06,0xae,0x33,0xac,0x59,0xa8,0x59,0xb8,0x65,0x64, +0x82,0x3e,0xdf,0x9c,0xd8,0x96,0xd2,0xaa,0x30,0x1a,0x22,0x19, +0xcd,0x1f,0x4c,0x7b,0x9a,0xf4,0xf2,0x76,0xb6,0x2e,0xa5,0x2e, +0xad,0x36,0x8d,0x83,0xeb,0x59,0x04,0x82,0x07,0x31,0x18,0x1a, +0x21,0x7e,0x50,0xbc,0xa6,0x07,0x67,0xb1,0x11,0xfd,0xf4,0xc0, +0x0f,0x9f,0x61,0xb1,0xae,0xf0,0xfb,0x10,0x15,0x13,0x52,0xb5, +0xbe,0x49,0x04,0x4a,0xd1,0x03,0x34,0x75,0x51,0x13,0xad,0x0c, +0xc0,0x0a,0xb5,0xd8,0x88,0x4f,0x23,0x4e,0x45,0xa8,0xa3,0xa7, +0x3e,0x38,0x31,0x07,0xf1,0xfd,0xb5,0x0b,0x29,0xd9,0x1b,0x55, +0xa1,0x2f,0xa5,0x49,0xc7,0xfe,0x04,0x93,0xce,0xc1,0x54,0x65, +0xe1,0xbe,0xaf,0x69,0xe3,0x36,0x2a,0x0b,0xf7,0xad,0x04,0xd9, +0xda,0xe7,0x07,0xa5,0xb5,0x81,0xec,0x01,0x46,0xfc,0xb6,0x80, +0x28,0xbc,0x3e,0x52,0xf2,0x2d,0xd2,0x4f,0xfd,0x43,0x4b,0x87, +0x1a,0xfe,0x42,0x03,0x58,0xa8,0x08,0x1e,0xc6,0x6f,0x82,0x47, +0xe7,0x48,0xf0,0xf8,0x40,0x61,0xf8,0x32,0xa6,0x23,0x5d,0x19, +0x3c,0x6a,0x15,0xc1,0x83,0x83,0x01,0x38,0x4b,0x29,0x13,0xfa, +0xe2,0x22,0xe6,0x54,0xf2,0xa7,0xc9,0xc9,0x6a,0x2a,0xc2,0x0a, +0xe1,0x13,0x62,0x13,0x64,0x19,0x6c,0x11,0x2a,0x0d,0xd0,0xd4, +0x7e,0x9c,0xaa,0x7c,0xf9,0x0a,0x03,0x58,0x41,0x5f,0x6e,0x10, +0x62,0x10,0x6e,0x22,0x39,0x6e,0x47,0x62,0x77,0x4a,0xb7,0x62, +0x80,0x66,0x2b,0x5e,0x3e,0x7e,0xc4,0x71,0x9b,0xd9,0xae,0xf4, +0xae,0x8c,0x76,0x1a,0xf9,0x1c,0xc5,0xb1,0x64,0x4f,0x85,0xd1, +0x65,0xdb,0xaf,0x6e,0x7f,0x3e,0xf4,0x55,0xe7,0x73,0xcb,0x32, +0xde,0x76,0x9d,0xe9,0xe6,0xdd,0x3b,0xdc,0x1e,0xfa,0xfe,0x10, +0xf2,0x0a,0x1e,0xe5,0xf0,0xc7,0xfb,0xf1,0x6b,0x3f,0x59,0xcc, +0xcd,0xe3,0x77,0xee,0xaa,0xd5,0xeb,0xd8,0xb1,0x9b,0xcf,0x6d, +0x89,0xd7,0x54,0xc7,0xc5,0x51,0xe7,0x0c,0x60,0x79,0x62,0x06, +0x4e,0x28,0xc1,0xb7,0x1b,0x96,0xa8,0x6e,0xd2,0x5c,0xaa,0x85, +0x32,0xe3,0x32,0x43,0x4a,0xf6,0xfa,0xbe,0xbd,0x7c,0xff,0x56, +0xeb,0xea,0xc1,0x3d,0xb7,0x9c,0xdb,0x7c,0xab,0x32,0xa5,0xd5, +0x08,0x23,0xde,0x30,0x4f,0x16,0x28,0x04,0x12,0xfd,0xce,0x3d, +0x8d,0x5a,0x65,0xee,0xb6,0xfc,0x45,0x8f,0xab,0x76,0x83,0xe6, +0x0a,0x6f,0x5b,0x4a,0x5c,0x42,0x9d,0xc2,0xf6,0x85,0x4b,0xbd, +0x51,0xeb,0x47,0x35,0x65,0x6f,0xe6,0x19,0x50,0x29,0x2a,0xc5, +0x08,0xd3,0x70,0x73,0x69,0xba,0x5b,0x13,0xdb,0x53,0xda,0x15, +0xbd,0x51,0x55,0xf4,0x66,0x94,0x34,0x54,0x6d,0x52,0x8c,0x68, +0x90,0x53,0xbb,0x4c,0xe7,0x84,0x49,0x30,0x95,0x84,0xa4,0x07, +0x66,0x04,0x64,0xdc,0xe9,0xbe,0xf7,0xa0,0xf9,0x21,0x95,0x4d, +0x81,0x06,0xc2,0x47,0xac,0xa3,0x9e,0xbe,0x9e,0xb6,0x8d,0x4d, +0xad,0x65,0x8d,0x7d,0xb1,0xab,0x03,0x3f,0x64,0xff,0xb9,0xee, +0xa0,0x21,0x87,0xed,0x06,0x70,0x42,0xdc,0x84,0x9a,0x8a,0x52, +0x41,0x8b,0x99,0xb6,0x8c,0x8c,0x36,0x0d,0x61,0x15,0x8d,0xf6, +0xbe,0x5a,0xf6,0x9a,0xd6,0x26,0x6d,0x5e,0x7c,0xef,0xf5,0xf6, +0xc7,0x79,0x0f,0xb8,0x56,0x6a,0x94,0x3f,0x0a,0x1f,0x13,0x8f, +0x50,0xb7,0x30,0x57,0xda,0x4a,0xbf,0x91,0x98,0xa0,0xf7,0x26, +0x26,0x9c,0x62,0x2d,0x42,0x2c,0x43,0xad,0x23,0xa5,0x98,0x90, +0xd4,0x94,0xd2,0x9c,0x2a,0xa1,0x8d,0x8a,0xe4,0x3a,0xbf,0x30, +0xad,0x69,0xd2,0x85,0x10,0xbd,0x6c,0x4d,0x6a,0x75,0x5a,0x15, +0x6d,0xe4,0x39,0x61,0x0a,0xc9,0x89,0xcd,0x8a,0xcd,0x88,0x73, +0xef,0xe3,0x71,0xbc,0x0d,0xda,0x04,0xe1,0x96,0x13,0x1c,0x52, +0x3d,0x91,0x13,0x80,0x16,0x9b,0xa5,0xaa,0xb4,0x56,0xd4,0xa3, +0xf6,0x64,0xc3,0x21,0x48,0x57,0x7b,0xc5,0x36,0x9c,0x6e,0x39, +0xdb,0x7a,0x8e,0x7b,0x9d,0x79,0x71,0x38,0x9f,0x6d,0x8d,0x6d, +0x89,0x6b,0xbc,0xc0,0xe1,0x04,0x16,0xb3,0xf3,0xf1,0xe8,0x23, +0xdc,0xab,0xde,0xd9,0x2c,0xdb,0x08,0x9b,0x03,0xc1,0x17,0x3e, +0xa5,0xb6,0xb1,0x4c,0x58,0x4d,0x6c,0x83,0xad,0x83,0x2d,0x15, +0xb6,0xb1,0xa0,0x1f,0x17,0xfc,0x57,0xdb,0x08,0x33,0x89,0x92, +0x6c,0x23,0xa9,0x3b,0xb9,0x3b,0x4d,0x32,0xbc,0xd9,0x0a,0xe0, +0x18,0xcb,0x74,0xa5,0x67,0x76,0x48,0xa8,0xd8,0x91,0xd6,0x91, +0xd1,0x46,0x83,0x57,0xf1,0x5c,0x82,0xe3,0x83,0x64,0xc2,0xd3, +0xbd,0xe2,0xcf,0xac,0x38,0x5d,0x3b,0x5e,0x47,0x98,0x7c,0x49, +0x86,0x27,0x2e,0x03,0xe5,0x1d,0x93,0xb3,0x64,0x78,0x5c,0x98, +0x47,0xb4,0x06,0xd7,0x0f,0xed,0x6c,0x72,0xb6,0xe1,0xaf,0xd9, +0x3e,0xd0,0xbd,0xaa,0xc7,0x25,0xa0,0x0d,0xd1,0xba,0xa4,0x39, +0xa8,0xd9,0xbe,0xcf,0x8e,0xff,0xcc,0xfc,0xb6,0xee,0x55,0xe9, +0xde,0x35,0xd9,0xb0,0x19,0xf1,0x68,0xd0,0x1b,0x70,0x2d,0xb4, +0x71,0xe5,0xab,0xbc,0x2f,0x6a,0x17,0x39,0x71,0xab,0xc5,0x44, +0x72,0x03,0x46,0x97,0xc3,0x3b,0x99,0x30,0xd9,0x20,0x99,0x0f, +0xc1,0xb1,0xde,0x33,0x0d,0x16,0x69,0xc2,0x28,0x5f,0x98,0x70, +0x1a,0xde,0xe5,0xf2,0xe1,0xc5,0x10,0xbe,0x00,0xbd,0xbd,0xa8, +0x87,0xd3,0x74,0x61,0x9a,0x2f,0x8b,0xbe,0xbb,0x51,0x1b,0x8d, +0x70,0x8d,0x7a,0xa3,0x19,0xac,0x86,0xb9,0xf7,0x61,0xc7,0x19, +0x98,0xa1,0x1a,0xc7,0x9c,0xd5,0x2c,0xfa,0x78,0xe0,0x63,0x1b, +0x3d,0x3d,0xc3,0x0d,0x26,0xd5,0xa6,0xfc,0xfd,0xae,0xa1,0xbe, +0x96,0x8b,0x5d,0x7b,0x3f,0xd3,0x7d,0x6a,0x52,0xd5,0xcb,0x2f, +0xeb,0xdc,0xd1,0x6f,0x76,0x89,0x32,0x2e,0x48,0x91,0xc0,0x28, +0xc4,0x26,0xec,0x3f,0xdd,0xe6,0xef,0x60,0x24,0x19,0x5a,0x1b, +0x35,0xb4,0xff,0x02,0x46,0x0a,0x43,0x6b,0x61,0xdb,0xd2,0x5a, +0x25,0x30,0x52,0x11,0x16,0x4a,0xa3,0x1c,0xa4,0x1c,0xe5,0x60, +0x98,0xdc,0x8f,0x93,0x95,0xb8,0x36,0xdf,0x00,0xe6,0xd3,0x10, +0x65,0x12,0x6a,0x12,0x46,0x71,0x8d,0xda,0x6c,0x52,0x47,0xb2, +0xd2,0x66,0xd5,0xfe,0xc3,0x66,0x5b,0xa4,0x51,0xce,0xa4,0xa3, +0x0c,0x69,0x82,0x2b,0xa1,0xb3,0x83,0x86,0x06,0x42,0x41,0x3f, +0x16,0x32,0xc7,0x29,0x64,0x1c,0x85,0xc5,0x5a,0xaf,0xe7,0x5d, +0x11,0x9c,0x99,0xf8,0xd8,0x33,0x71,0x47,0xd4,0xe1,0x10,0x5a, +0xd7,0xb6,0xa3,0x1f,0x58,0x44,0x26,0x46,0x9d,0x8e,0x88,0x52, +0x55,0x11,0x3e,0x1c,0xe1,0x07,0x76,0x0a,0x7e,0xa0,0xde,0x8f, +0xea,0xca,0xbe,0x2c,0x33,0x80,0x65,0x74,0x9a,0x0d,0x43,0x0c, +0x47,0x42,0x40,0x52,0x57,0x4a,0x97,0x22,0xbe,0xcc,0x54,0x34, +0x60,0xec,0x48,0x08,0x50,0xf2,0x83,0x26,0x8a,0xdd,0x5f,0xc2, +0x4a,0x12,0x95,0x1c,0x79,0x26,0x3c,0x22,0x3c,0x82,0x3f,0x76, +0x4f,0x51,0xea,0x2b,0xa5,0x95,0x03,0xdb,0x3e,0xb1,0xde,0x10, +0x8a,0x18,0x6b,0x5c,0x86,0xa3,0x68,0xf4,0x5b,0x86,0xef,0xd7, +0x9a,0xf2,0xdf,0xdc,0xfb,0xfc,0xf1,0xe0,0x4b,0x4e,0xec,0xb8, +0x28,0x94,0xb3,0x09,0x71,0x67,0x62,0x8f,0xaa,0x83,0x2f,0x9e, +0x6b,0xea,0x94,0xa9,0x0c,0x4f,0xfa,0x9d,0x84,0x3c,0xf2,0xfd, +0x87,0xf7,0x57,0x56,0x01,0x7c,0xaa,0xa5,0xdc,0x38,0xc9,0xc4, +0x3a,0x44,0x8a,0x45,0x0f,0x41,0xe3,0x73,0xd0,0x6b,0x87,0xf9, +0x66,0x39,0xbc,0xff,0x0e,0x9f,0xcd,0x9e,0x5b,0x82,0xca,0x02, +0xca,0x02,0x4b,0xeb,0xbe,0xae,0xfa,0xa3,0xf8,0xa5,0x69,0x26, +0x7f,0x68,0x95,0xc7,0x12,0xd7,0xf5,0xe1,0x99,0xe1,0xe9,0x11, +0xa9,0x2e,0x76,0x7c,0xab,0x76,0xef,0xda,0x86,0x0d,0xae,0x6b, +0xf6,0x6d,0xd8,0xb7,0x3b,0xf8,0x78,0xc8,0x89,0x90,0x13,0x89, +0xfa,0xfc,0xb7,0xe9,0x30,0xba,0xe4,0x9b,0xd2,0xf3,0x87,0xce, +0x05,0x9c,0x0b,0xe4,0xb0,0x10,0x3e,0x27,0x5e,0x61,0x1e,0xe1, +0x1e,0x14,0x23,0x42,0xbe,0xec,0x5b,0x03,0xda,0xfa,0xd4,0x34, +0xde,0x32,0x84,0xb7,0xf0,0x3c,0xeb,0x18,0xb6,0x2f,0xc2,0x29, +0x9a,0x3a,0x63,0x65,0x42,0x55,0x52,0x25,0xc5,0xb1,0x92,0xf9, +0x12,0x3e,0x3f,0x60,0x9a,0x15,0x35,0x7f,0x3b,0xd8,0x4a,0x79, +0x45,0x6a,0x45,0x1a,0x55,0x9d,0x34,0x20,0x19,0xa3,0xc1,0x22, +0xa3,0x17,0xcc,0x29,0xac,0xf1,0x46,0xdd,0x99,0x38,0xb3,0xde, +0x96,0x07,0x16,0x56,0x94,0x81,0xc3,0x69,0x68,0xe3,0xfe,0x60, +0xf0,0x7c,0x0c,0x2e,0x8b,0x9a,0xa1,0x6e,0x74,0x34,0x34,0xc8, +0x72,0xba,0x2e,0x23,0xd7,0x97,0x0d,0x30,0x9f,0x17,0x57,0x3e, +0x8c,0xd7,0x48,0x81,0x77,0xe2,0x60,0x31,0x5c,0x53,0xc3,0x4f, +0x18,0x95,0xe1,0x5f,0x87,0xb7,0x10,0x58,0xa6,0x43,0x07,0xaa, +0x1e,0x96,0xe9,0xe2,0xb2,0x35,0xfa,0x5f,0xbe,0x36,0x19,0xba, +0x04,0xf5,0xda,0x17,0x87,0x4d,0x7e,0x1c,0x90,0x2e,0x7d,0xca, +0xa7,0x7c,0xcb,0x21,0x54,0xe2,0x5b,0x61,0x4f,0xfb,0x57,0x80, +0x8e,0x2e,0xea,0xe0,0x0c,0x03,0xca,0x6d,0xcf,0xb3,0xe6,0x14, +0xd5,0xac,0xa2,0x14,0xa8,0xd6,0x92,0xdc,0x2a,0x97,0x4c,0xe6, +0x3d,0xa9,0xd1,0x7f,0x30,0x6d,0x69,0x19,0xcd,0x52,0xa3,0x9b, +0x53,0x9b,0xd2,0x25,0xb2,0x35,0x25,0x9b,0xc0,0xa7,0x50,0x4f, +0x67,0x19,0xeb,0x0d,0x08,0xfd,0xa1,0x04,0xeb,0xa9,0x72,0xfc, +0x49,0x58,0x44,0x51,0xd3,0x35,0xcc,0x45,0x81,0xed,0xb2,0x3e, +0x4a,0xb5,0x14,0x01,0x8a,0x18,0x02,0x51,0x60,0xbb,0x95,0x12, +0xdb,0x1b,0x24,0x6c,0x57,0xbc,0x7f,0x1c,0x9b,0xa6,0x2b,0x7b, +0x41,0xdf,0x2f,0x61,0x3b,0x05,0x1c,0x79,0x4d,0x6a,0x4d,0x3a, +0x07,0x4f,0x05,0x7f,0xa2,0x83,0x73,0x30,0x48,0x1c,0x1a,0xf8, +0x8c,0x82,0x5b,0xd6,0x45,0xc8,0x82,0xad,0x3b,0x07,0x85,0x21, +0x0c,0x67,0x74,0xd1,0x9b,0xe0,0x26,0xea,0x7c,0x9b,0x98,0x41, +0x5c,0x4d,0xe8,0x0f,0xdb,0xa4,0xc8,0x15,0x61,0x42,0x70,0x23, +0x7d,0xbe,0x91,0x85,0x90,0xa9,0xf4,0xd1,0x46,0xdc,0xc6,0xa8, +0xdc,0x15,0xe6,0x90,0x1f,0xf3,0xef,0x97,0x0d,0xd5,0x75,0xfa, +0xb7,0x1d,0x6c,0xf1,0x2b,0x6e,0xe6,0xed,0xb2,0xed,0xb2,0xec, +0x32,0xfa,0xdb,0xab,0x87,0xb2,0x6f,0x53,0x11,0x65,0xc3,0x26, +0xe5,0x4a,0xb7,0xcc,0x1a,0x5e,0xe0,0x23,0xf6,0x47,0x1e,0x08, +0x3f,0xc0,0x49,0xc7,0x70,0xd5,0x18,0xff,0x7d,0x07,0x1c,0xdd, +0x6d,0x3b,0x83,0xda,0x82,0x5a,0x02,0x4d,0xbc,0xb4,0x0e,0xae, +0x0f,0xe0,0x84,0xe0,0x83,0xe4,0xb3,0x82,0xc1,0x92,0x8e,0x8a, +0x7e,0x9b,0x6b,0x4e,0x0f,0xdc,0xf3,0xdb,0x79,0xcd,0x22,0xdd, +0x0a,0xb3,0x9a,0x5b,0x43,0xed,0x37,0x8a,0xee,0x73,0xb5,0xe2, +0x4c,0x0b,0x78,0xcc,0xfa,0xe8,0xd9,0x9b,0x18,0x58,0x5b,0x35, +0x38,0xb5,0x79,0x75,0x59,0xfa,0xf2,0xe5,0x86,0xb5,0x16,0xad, +0x36,0xd6,0xde,0x26,0x3e,0x7b,0x0f,0x72,0x78,0x1f,0xa6,0x93, +0xec,0x92,0xec,0xf2,0xec,0x6a,0x0e,0x36,0x30,0xfe,0xba,0xce, +0x96,0x26,0x8e,0xf6,0x19,0x8e,0xa9,0x6e,0xc9,0x1c,0xfc,0x43, +0xf4,0x27,0xb7,0x85,0x71,0x5d,0xe2,0xb8,0xcf,0x58,0x98,0x74, +0x1e,0xc6,0xc7,0x7d,0x93,0x10,0xd0,0xc1,0x07,0xa0,0x2e,0x36, +0x1e,0xc5,0x43,0xd3,0xe3,0x4d,0x65,0x3f,0x00,0x73,0xe6,0x2c, +0x8c,0xd1,0xd8,0x2d,0xbe,0x6b,0x2a,0xbc,0xbb,0x4d,0x5c,0x6f, +0x22,0xac,0x5f,0x89,0x86,0x8a,0x0a,0x1a,0xdb,0x99,0xfa,0x74, +0x79,0x95,0xc6,0x33,0x61,0x45,0x37,0x65,0xef,0x36,0xc3,0x77, +0x89,0xde,0x3a,0x64,0x75,0xf0,0xa4,0x89,0xa2,0x62,0x4a,0xd1, +0xf3,0xe2,0xcf,0xca,0x38,0x73,0xb8,0xd7,0xcc,0xde,0xf4,0x7a, +0xee,0x03,0x63,0x7d,0x32,0x69,0xf0,0x3f,0xdb,0x85,0x93,0x2f, +0xeb,0x7d,0x21,0xed,0x39,0x5f,0x45,0x3e,0xaf,0x6a,0xad,0xcf, +0xef,0xa2,0xac,0x22,0xdf,0xb4,0xdd,0xe1,0x81,0x0b,0x27,0x3a, +0x61,0x06,0x19,0xe6,0x60,0xed,0x6b,0x8e,0xe9,0x47,0x96,0x5c, +0x11,0xe2,0xa9,0x28,0xfa,0x10,0x0b,0x48,0x27,0xfe,0xeb,0x12, +0x0b,0x13,0xcf,0xc1,0xb8,0xd8,0xaf,0xe3,0x03,0xda,0xf9,0x20, +0x6a,0xf9,0x75,0xc7,0xf0,0xa0,0xb4,0x0b,0xeb,0x05,0xc8,0x4e, +0x9f,0x85,0xb7,0x35,0x74,0x45,0x99,0x99,0x20,0xdb,0x23,0xae, +0x36,0x11,0x56,0xaf,0x43,0xa3,0xbf,0xb7,0xf1,0x4b,0x61,0x51, +0xb7,0xb8,0xe8,0x2a,0x6d,0xe6,0x64,0x89,0x0e,0x86,0x39,0x87, +0x3b,0x45,0x48,0x24,0x65,0x5c,0x3f,0x8e,0xfb,0x1b,0x56,0x9c, +0x52,0x62,0x85,0x42,0x64,0xd0,0x20,0xd2,0xad,0x10,0x00,0x4a, +0xac,0x18,0x4f,0xa3,0x58,0x46,0xbb,0x82,0x0f,0xa6,0xd4,0xa5, +0x52,0xa6,0x25,0x0c,0xc1,0x3a,0x22,0x3a,0xc3,0x66,0x06,0xb6, +0x26,0xc0,0xbc,0x32,0x78,0xa7,0xc1,0xad,0x93,0x47,0xd6,0x01, +0x57,0x79,0xa2,0x11,0x65,0xa6,0x79,0x2c,0x7a,0x1f,0xc2,0x75, +0xeb,0x51,0x45,0xbd,0xd5,0xf6,0x09,0x4c,0xcf,0x07,0x9d,0xd3, +0xe0,0xab,0x0a,0x21,0x68,0xcf,0x98,0xe5,0x9b,0xe5,0x58,0x65, +0x1e,0x34,0xe3,0x07,0x0e,0x0e,0xfa,0xf4,0xef,0xe7,0x30,0x7b, +0x10,0xa2,0xd9,0x0e,0x9f,0xf6,0xfd,0x2d,0x5e,0x05,0x1d,0xbc, +0x79,0xb9,0x6e,0xa5,0x76,0x19,0x07,0x91,0xa0,0xc9,0x8e,0x6c, +0x05,0x0d,0x60,0x0a,0x72,0xf3,0x8a,0xd3,0xa5,0xad,0xa0,0xc5, +0x7f,0x6d,0x05,0xf5,0xd0,0xdd,0xb6,0xe1,0x23,0x7d,0x6e,0x39, +0xe8,0x1b,0xa0,0xbe,0x74,0x63,0x7f,0x02,0xe3,0x1c,0xee,0x12, +0xe1,0x1a,0x9d,0x68,0xc8,0x97,0x25,0x94,0x27,0x95,0x25,0x71, +0x58,0xba,0x8c,0x95,0xeb,0xca,0x6e,0x33,0x4d,0xa9,0x59,0x75, +0x1a,0xd0,0xc3,0x16,0x27,0xd3,0x2f,0x79,0x4c,0x37,0xef,0x1b, +0x79,0x20,0xc2,0x27,0x8a,0x83,0x88,0xef,0x8b,0xd8,0x34,0xbf, +0xc4,0xb8,0xc4,0xd8,0x84,0x38,0x55,0x5c,0xce,0xe2,0xfe,0x83, +0x38,0x6b,0x2f,0xbe,0xa7,0xde,0x66,0x71,0x09,0x26,0xe7,0xc2, +0x8c,0x38,0x58,0xaa,0x2a,0x54,0x34,0x89,0x65,0xcc,0xe9,0xdc, +0x4f,0x73,0x73,0xd5,0xe0,0x63,0x58,0xca,0x06,0xd8,0x5b,0x1d, +0xda,0x18,0x99,0x66,0xc5,0xff,0x23,0x6d,0xb0,0x29,0xfb,0x12, +0x77,0xff,0xcd,0x66,0xd2,0x89,0x4c,0x65,0xaa,0x62,0x33,0xa9, +0x45,0xb2,0xcc,0x6a,0x3e,0x1b,0x18,0x73,0x5e,0xda,0x4c,0x6a, +0xc7,0x22,0x65,0xdf,0x24,0xcc,0xdf,0xf7,0xc0,0x7e,0x7f,0x0e, +0x8f,0xbe,0xd9,0x41,0x2a,0xcc,0xc0,0x01,0xd2,0x28,0x6e,0xb2, +0x63,0x43,0x15,0xfb,0x42,0xad,0x46,0xf6,0x85,0x5a,0xd9,0xb1, +0xed,0x8a,0x7d,0xa1,0xaf,0x14,0xfb,0x42,0xdd,0xa5,0x7d,0xa1, +0x4b,0xbe,0x21,0xf8,0xea,0x2a,0xbc,0xa2,0x9e,0xef,0x2e,0xe9, +0xd2,0x3d,0xb8,0x46,0x1f,0xd6,0xd0,0x59,0xd3,0x0b,0xd1,0x7b, +0x23,0xdb,0x7a,0x53,0x7a,0x15,0xb3,0xb6,0x40,0x11,0xfa,0x27, +0x8e,0x20,0x7c,0x0b,0xdb,0x24,0x6f,0x4a,0x6d,0x48,0x8f,0xea, +0xe5,0x9d,0x42,0x1d,0xc3,0x1d,0x14,0xea,0x6f,0xe1,0x00,0x2e, +0x84,0x3d,0xec,0xf0,0x3a,0xdc,0x45,0x30,0x0b,0x76,0xea,0x8a, +0x5b,0x71,0x8b,0xe8,0x3d,0x38,0x00,0x4f,0xf4,0x2f,0x0a,0xde, +0xe8,0x0f,0x66,0x52,0xcd,0x16,0x1d,0xb1,0x9d,0x40,0x2f,0x3c, +0xc1,0x5e,0x6a,0x3e,0x0b,0xe1,0x5b,0x62,0x17,0x69,0x1d,0x65, +0x15,0xc3,0x9d,0x96,0x7f,0x2a,0x4f,0x55,0x83,0xf7,0x61,0xda, +0x00,0x4e,0x03,0x3d,0xb6,0x2b,0x41,0x3a,0xb0,0x79,0xa0,0x93, +0x9f,0xe9,0x81,0x2a,0xc1,0x38,0x3e,0x26,0xcd,0x90,0x6f,0x3e, +0xd7,0x76,0xbe,0x2d,0x8e,0xc3,0xed,0xb8,0x48,0x1f,0x16,0xa1, +0x06,0x1b,0x7c,0x2a,0xf8,0x54,0x88,0xba,0x61,0x8c,0xc1,0x11, +0xfd,0x63,0x71,0xb4,0xbd,0xe7,0xbb,0xe3,0xba,0x2e,0x84,0xcc, +0xb5,0x5f,0xbb,0xf9,0x93,0x76,0x5b,0xfe,0xcb,0xe7,0xed,0x3f, +0xa7,0xc3,0xb4,0xce,0x84,0x8e,0xc4,0x66,0xea,0x9f,0x7d,0x5b, +0x09,0xcc,0x06,0xcf,0x5e,0xf4,0x04,0x0d,0x70,0xeb,0x45,0x37, +0xfa,0x2d,0xac,0x5f,0x92,0x52,0x07,0xa8,0x5a,0xb2,0x32,0xa2, +0xac,0x5d,0x03,0xed,0x8c,0xc0,0x0e,0x67,0xe3,0x09,0x4a,0xec, +0xd0,0xff,0x22,0xf8,0x43,0x54,0x3f,0xa5,0x6e,0x3b,0xa5,0xf1, +0xd9,0x8b,0xaa,0x86,0xa0,0x4a,0xd5,0x9b,0xe5,0xdf,0xd5,0x5b, +0x93,0x22,0x10,0xbe,0x23,0x31,0xb5,0x9f,0x24,0xf9,0xa0,0x08, +0x84,0x94,0x77,0xcb,0xab,0xd2,0xa2,0x7b,0x78,0x8f,0x30,0x37, +0x85,0x6c,0x0f,0x1e,0x11,0x21,0xac,0x60,0x2c,0x7e,0x43,0x60, +0x0b,0x1c,0x1b,0xc0,0x63,0x30,0xac,0x83,0xc3,0x78,0x4c,0x1f, +0x8e,0xe1,0x16,0x4c,0xd3,0x87,0x34,0x94,0x5f,0x04,0x39,0x64, +0x0d,0xb0,0x5e,0xd0,0x4b,0x7c,0x9e,0x38,0x3f,0xb3,0x7d,0x68, +0x76,0x80,0x6f,0x5c,0x53,0xb5,0x24,0x7f,0x15,0x27,0x8e,0x85, +0x6a,0x12,0xb8,0xd6,0x63,0x99,0xd9,0xd6,0x36,0x67,0xbe,0xeb, +0x51,0xd5,0xb3,0xcc,0xe7,0x94,0x47,0x9c,0x1b,0x7e,0x48,0x1c, +0x71,0xb5,0x29,0x4e,0xde,0x38,0xa3,0x44,0x9f,0xcf,0x2d,0xc9, +0xae,0xcc,0xa8,0xe2,0xc4,0xa1,0xa1,0xe1,0xb5,0x6c,0xc1,0x95, +0xdc,0x3b,0x59,0x34,0x38,0x1c,0x10,0x3f,0x26,0x9e,0xe1,0xee, +0x11,0x6e,0x0a,0x39,0xa4,0xa8,0xe7,0xa9,0x08,0xec,0x1f,0x18, +0xc2,0x07,0x94,0xb6,0x98,0x87,0x58,0x84,0x59,0x49,0xfd,0x69, +0xa2,0xe3,0xd4,0xa2,0xe0,0x1a,0x93,0xa4,0xf9,0xfe,0xe5,0x4f, +0x39,0x54,0x9d,0x52,0x25,0xaf,0x4c,0xe5,0x84,0xb3,0x50,0x45, +0xc0,0x4a,0x07,0xad,0xf0,0x9c,0x3e,0x9c,0x13,0x6f,0xe0,0x7a, +0x36,0x43,0x4f,0xca,0x87,0xb4,0xa7,0xa7,0x75,0x68,0x08,0x17, +0x7f,0x1e,0x60,0xd1,0x4f,0xdc,0x4c,0xbc,0xbe,0xb3,0xfb,0xc1, +0xe6,0xae,0xb9,0x0f,0xdf,0xb4,0xb9,0x6e,0x79,0xe9,0x42,0xee, +0x7f,0x2b,0x13,0xff,0x31,0x73,0x6c,0x65,0xcc,0xba,0xb0,0x05, +0xff,0x8f,0x8a,0xc2,0xeb,0x3f,0x25,0xd4,0x1b,0x23,0x0f,0x50, +0x6f,0x0c,0x7a,0xd9,0x37,0x4f,0x89,0xec,0x6f,0x1b,0xc2,0xdb, +0x14,0xc5,0x1c,0xc2,0x1c,0x23,0xf6,0x49,0x9d,0xad,0x4a,0xac, +0x4e,0xaa,0xa2,0xc8,0x5e,0x3a,0x97,0x95,0xeb,0xc8,0x1e,0x31, +0x2d,0x52,0x4d,0x48,0xe8,0x66,0x8b,0x93,0x8a,0x52,0x8a,0x53, +0xa4,0xed,0x1f,0x77,0xff,0xa7,0x72,0xf2,0xe2,0x41,0xfc,0xe7, +0xff,0x5e,0x3a,0xfe,0x7b,0x61,0x01,0xf1,0xa2,0xd4,0xc2,0x23, +0x52,0x1a,0xf1,0x31,0x7d,0x38,0x46,0x39,0xe2,0xef,0x1b,0xc2, +0xfb,0x94,0xdd,0x59,0x84,0x5a,0x84,0x5b,0x45,0x2a,0x47,0x3c, +0xa5,0x59,0x61,0x41,0xef,0x2a,0x47,0x5c,0x09,0xa5,0x94,0x5f, +0xa4,0x54,0xa6,0x54,0xd0,0x11,0x7f,0x09,0xaa,0x44,0x93,0x39, +0xfb,0xf4,0xcc,0xd3,0x7b,0x6a,0x57,0x44,0x13,0xf6,0xc4,0x47, +0x47,0xf0,0xed,0x68,0x1c,0xc3,0xad,0x35,0xbc,0xcb,0x44,0xe0, +0x84,0x30,0x1c,0x1b,0x3c,0x9f,0x13,0xd6,0x32,0xa7,0x0e,0x9f, +0x3c,0x7c,0xea,0x08,0x67,0x79,0x38,0xc8,0x5f,0x7f,0x3a,0xbe, +0xab,0xb8,0x73,0x7b,0x0c,0xf3,0xa4,0xa6,0xe8,0x81,0x5c,0xe3, +0x6c,0xca,0x19,0xf9,0x99,0x54,0xee,0x69,0xdf,0x3a,0x26,0xfe, +0x61,0xdc,0x4f,0xe7,0x5e,0x72,0x9f,0x33,0x94,0xba,0xde,0x21, +0xfb,0xd9,0x2d,0x27,0xd7,0x9d,0xd8,0xa0,0x8e,0xdf,0x31,0x17, +0xbe,0x8d,0x7b,0x76,0xee,0x4b,0xee,0xd2,0x1a,0xd2,0xe6,0xd0, +0x6d,0x5e,0x6f,0x55,0x5b,0xcf,0xdb,0x37,0x1b,0x77,0x59,0xd6, +0x50,0x40,0x15,0xbb,0x48,0xf2,0xe3,0xa4,0x1f,0x12,0x7e,0xe2, +0xe0,0x07,0xe6,0xd8,0xac,0xc3,0x0b,0x62,0x36,0x71,0x3b,0xbf, +0x25,0xce,0x4d,0x5a,0x83,0x56,0x95,0xce,0x8e,0x7c,0x9b,0xf3, +0x80,0x61,0x9d,0x74,0x34,0xa0,0x82,0xf2,0xf9,0xfd,0xe1,0xde, +0xe1,0xde,0xd4,0xd0,0x42,0x1f,0xf5,0xae,0x05,0x1d,0x7d,0xd4, +0x59,0x60,0xf4,0x13,0xc6,0xb1,0x2e,0xca,0x40,0x6a,0x44,0x03, +0x69,0x59,0x62,0x59,0x32,0x87,0xc5,0xcb,0xa5,0x71,0xbf,0x29, +0x31,0xaa,0x3a,0x69,0xdc,0xcb,0x52,0x4a,0xe5,0x65,0x54,0xad, +0x0e,0x63,0x1a,0xf9,0x06,0xa6,0x56,0xc3,0x92,0x33,0x70,0x9a, +0x7b,0xc5,0xe0,0xbc,0x23,0xb8,0x2a,0x6a,0xa5,0xba,0xe9,0x91, +0x90,0x18,0xc7,0xe9,0x16,0xd2,0x1d,0x9a,0x5d,0xcc,0xb5,0xa2, +0xdc,0x47,0xf1,0x1a,0x49,0x3f,0xc4,0xd1,0xe0,0x69,0xa3,0x86, +0xab,0x60,0x8d,0x31,0xae,0x59,0x61,0xfa,0x94,0x39,0x89,0xa1, +0x9e,0x38,0x73,0x03,0x8e,0xe7,0xa0,0x0e,0xa7,0x10,0x3c,0xc5, +0xd8,0x46,0x5d,0x68,0xd5,0x10,0x7e,0xc3,0xe5,0xb0,0xd9,0x18, +0x37,0x6f,0x32,0xbe,0xc7,0x9e,0xc2,0x6a,0x27,0x74,0xa6,0x94, +0x74,0x66,0xbd,0x1d,0x0f,0x63,0x61,0x49,0x03,0x1c,0x3c,0x03, +0x7d,0xdc,0x4b,0xb1,0x87,0xd9,0x5c,0x70,0xe0,0xae,0x3a,0x9c, +0x61,0xea,0xd2,0xd3,0x1a,0x34,0x9e,0xb2,0x66,0x52,0x65,0xb8, +0x17,0x52,0x36,0x21,0xd4,0x45,0xc9,0x8b,0x5e,0xf5,0xcd,0x54, +0x4e,0xe5,0x7b,0x86,0xf0,0x1e,0xb5,0x27,0xeb,0x50,0xeb,0x88, +0x3f,0x33,0x1e,0x0d,0x8a,0x8c,0x07,0x37,0x92,0xf1,0x50,0xc8, +0xb6,0x0e,0xca,0x8a,0x6a,0x15,0xac,0xe8,0x0e,0x7c,0x46,0x60, +0x0d,0x8d,0xb2,0x78,0x4c,0x57,0xb8,0x39,0xc4,0xa2,0xc5,0xeb, +0xf7,0x48,0x2b,0xac,0xa8,0x06,0xad,0x3c,0xd8,0xa8,0x95,0xc2, +0x1f,0xc4,0xdd,0xce,0xa8,0x6d,0x89,0x2b,0x39,0xfc,0x65,0xef, +0x30,0x77,0x99,0x11,0x55,0xbe,0x26,0xc1,0xb0,0x6a,0x3f,0x2c, +0x70,0x81,0x77,0xf4,0x0e,0xf1,0x95,0x48,0x0a,0xf0,0xc3,0x0c, +0xfa,0x1f,0x54,0x86,0x5d,0x85,0x70,0x72,0x6b,0xb0,0xeb,0xb3, +0xea,0x47,0x5c,0x33,0x5e,0x1d,0x29,0xb7,0xae,0x1b,0xcf,0xef, +0x5b,0xb4,0x63,0xf9,0x8c,0xad,0xe5,0xd6,0x7c,0x6d,0x61,0x55, +0x71,0x59,0x79,0xad,0x65,0x8b,0x6d,0x8f,0xfd,0x2e,0xdb,0x4f, +0xf6,0xcd,0x71,0x29,0x34,0xe1,0x61,0x4c,0xfd,0x77,0x4d,0x77, +0x3a,0x3f,0x37,0x7f,0x62,0x33,0x52,0x6d,0x7d,0x9d,0xa2,0xda, +0xfa,0xbb,0xab,0x89,0x77,0x84,0x67,0xa4,0x27,0x35,0xd7,0x40, +0xc9,0x63,0x14,0xd9,0x92,0x19,0x86,0x94,0x57,0x9e,0x96,0x78, +0x65,0x98,0x65,0x54,0xa2,0xc4,0x2b,0x5b,0x53,0x5a,0x14,0x4a, +0x40,0xc1,0x2b,0x5f,0x31,0x6d,0xe9,0x19,0x34,0x3c,0x74,0xb2, +0x15,0xc9,0x15,0x29,0xe5,0x72,0x0e,0xd6,0xc1,0x6d,0x12,0x1b, +0x77,0x3e,0x4e,0x2a,0xd4,0x5e,0xcc,0x78,0xea,0xda,0x18,0x6b, +0x5b,0xe8,0x35,0x5a,0xb4,0x3a,0x74,0x71,0x07,0x5e,0x87,0x91, +0xcb,0x70,0x5b,0x51,0x7e,0x5d,0x5f,0x2a,0xbf,0x3e,0x59,0x59, +0x7e,0xfd,0xb6,0x54,0x7e,0x5d,0x18,0x45,0x69,0x84,0x73,0x88, +0x63,0xa8,0x84,0x24,0xe1,0xca,0x50,0xa9,0xab,0x47,0x79,0x93, +0xc2,0x5d,0x62,0xa9,0xbb,0x98,0x47,0x58,0x4b,0x2d,0x90,0x02, +0x94,0xe4,0x2e,0x15,0x92,0xbb,0xe8,0xfe,0xe9,0x2e,0xed,0x6c, +0x63,0x6a,0x63,0x5a,0x43,0x06,0x27,0x7c,0x0e,0x5f,0x12,0x4c, +0x84,0xc5,0x3a,0xb8,0x18,0x4f,0x18,0xd1,0x18,0xbe,0x16,0x23, +0x8c,0x84,0xb2,0x5e,0x3c,0x02,0x6b,0x21,0x91,0x11,0x9d,0x5f, +0x9b,0xd1,0x66,0x0c,0xef,0x1d,0x12,0x26,0x8a,0x7e,0xe2,0x44, +0x56,0x58,0x0d,0xf7,0x08,0xda,0xe3,0x30,0xd8,0xb3,0x2a,0xc3, +0x8d,0x70,0x95,0x40,0x02,0x4c,0x1d,0xa0,0xce,0xe1,0xa8,0x87, +0x8e,0xa8,0xa7,0xfc,0x36,0x59,0x1f,0x26,0x63,0x02,0xce,0xd4, +0x13,0xbe,0x1f,0x64,0xc5,0x3f,0x7e,0x24,0xae,0xa1,0xce,0x61, +0x4e,0x61,0x12,0x4b,0x66,0xfb,0x90,0xfd,0x5b,0x06,0xec,0x2c, +0x6b,0x15,0xfa,0x67,0x06,0xac,0x71,0xc4,0x1e,0x14,0x19,0xb0, +0x37,0x2c,0xb9,0x8d,0xad,0x4b,0xad,0x4f,0xab,0xa5,0xf6,0x60, +0x0f,0x9e,0xd2,0x85,0xf5,0x09,0xa8,0xc7,0xa0,0x81,0xf8,0x1e, +0x79,0x76,0xfd,0xf3,0x27,0xed,0x5f,0x99,0x97,0xf3,0xe6,0x6b, +0x77,0x6d,0x5a,0xa5,0xc5,0x09,0xd3,0x60,0x2f,0xb9,0xa1,0xf5, +0x60,0x45,0xd7,0xd6,0x96,0x5a,0xde,0xec,0xce,0xc6,0xa7,0x9a, +0x57,0xa5,0x0b,0xe8,0x14,0xa1,0xc5,0x53,0xa1,0x5b,0x82,0x7f, +0xec,0xfb,0x08,0xb4,0xf5,0x68,0x74,0x63,0x0d,0x81,0xa5,0xd6, +0x68,0x1f,0x66,0x1f,0xe1,0x28,0x7d,0x7a,0x75,0x62,0x4d,0x52, +0x8d,0x14,0xdd,0x66,0x4a,0x53,0xf5,0x15,0xd3,0x9a,0x96,0xd5, +0xa8,0x98,0xaa,0x94,0x0a,0x39,0xd5,0x2d,0x70,0xe3,0x22,0xb9, +0x75,0xfd,0xda,0xf7,0xb5,0x8f,0x6d,0x0b,0x78,0xe7,0xcd,0x5a, +0x4b,0x76,0xeb,0x71,0xf0,0x0b,0xe6,0x98,0x82,0x2b,0xca,0xd8, +0xfd,0x69,0x0e,0xeb,0x76,0x2d,0xde,0xa9,0xa7,0x5a,0x6d,0x7f, +0x65,0x68,0xe8,0x8b,0xc6,0xfb,0xaa,0xe2,0x0f,0xb8,0x95,0x95, +0x0a,0xc2,0x2f,0x65,0xea,0x32,0x33,0x1b,0x35,0x04,0x63,0xb6, +0x1c,0x3a,0x09,0x04,0xbf,0x3e,0x86,0x3a,0x8a,0x4a,0xf1,0x6b, +0x99,0x06,0xe9,0x1f,0x86,0xeb,0xb0,0x8e,0x85,0x5d,0xe2,0x3b, +0xc4,0x66,0xf9,0x8e,0xb9,0x5b,0x74,0xab,0xed,0xf8,0x07,0xb7, +0x6e,0xff,0xd6,0xfc,0x9c,0x13,0xb3,0xb1,0x9d,0x3c,0xb9,0x77, +0xfb,0x65,0xcb,0xb7,0xb6,0x45,0xbc,0xf5,0xf2,0x6d,0x8b,0x36, +0xec,0xa6,0xdd,0xf9,0x4d,0xf8,0x88,0x8a,0x0e,0x17,0x45,0xaa, +0x2e,0x1c,0x26,0xf7,0x51,0x1d,0xac,0x98,0x7a,0xde,0x10,0x78, +0x3a,0xf5,0x14,0x6b,0x23,0x6c,0xa4,0xa9,0x6f,0x18,0xc1,0xda, +0x0a,0x9c,0xa0,0xc4,0xda,0xbf,0x44,0x07,0x75,0x2f,0xda,0xa3, +0x7b,0x30,0x9b,0xc0,0x22,0x88,0xea,0xc5,0x28,0x78,0x5f,0x1b, +0xdf,0x47,0x5f,0x23,0xaa,0x2b,0x17,0x49,0x85,0xc7,0x6e,0xf7, +0xb1,0x98,0x82,0xdd,0x04,0x4e,0xf5,0xe1,0x29,0xd0,0xd0,0xa6, +0x38,0x1f,0x6a,0x08,0xa1,0x94,0xf1,0x14,0xeb,0x0b,0x30,0x80, +0xb9,0x94,0x02,0x3d,0x12,0x3e,0x21,0x31,0xb7,0xaf,0x25,0x5d, +0x4a,0xe9,0x4b,0x57,0x0d,0x6e,0xb1,0x0c,0xd3,0x0b,0xdf,0x13, +0xa9,0x1a,0x73,0xe3,0x4a,0xc2,0xc5,0xe4,0xce,0x54,0xd5,0xd0, +0x16,0xdb,0x70,0xfd,0x48,0xad,0x68,0xd5,0xc3,0x57,0xae,0xc4, +0x5f,0x4c,0xea,0x94,0xab,0x06,0xb7,0xda,0x46,0x18,0x44,0xed, +0x8d,0x51,0x3d,0x7c,0x59,0xff,0xf8,0x85,0x5d,0x46,0x47,0x74, +0x8f,0xe9,0x9f,0x50,0x4d,0xb2,0xe8,0x3d,0xdb,0x7f,0xbe,0x2f, +0x4e,0xf5,0xc2,0x1e,0xed,0xc3,0x7b,0x8e,0x68,0x1d,0x57,0x4d, +0xb4,0xb8,0x78,0xee,0x72,0xec,0xa5,0x78,0xd5,0xf8,0xed,0x3b, +0xa2,0xb7,0x1c,0xde,0x72,0x5c,0x35,0xd9,0xfc,0xe6,0xf9,0x5b, +0x71,0x37,0x12,0xe9,0x13,0x19,0x9c,0x8a,0x27,0x30,0xf7,0x65, +0xe3,0x8f,0xb1,0xc0,0x73,0xb0,0x88,0x31,0x38,0xa1,0x15,0xa5, +0xab,0x6e,0x1a,0x13,0x1c,0xa8,0x3d,0x7d,0x3d,0x23,0x37,0x95, +0x7d,0xce,0x7c,0x57,0x56,0x7b,0x39,0x49,0x23,0xe5,0xde,0x99, +0x7b,0xaf,0xd4,0xc4,0xa5,0xa6,0xf0,0x21,0x73,0x14,0x27,0x39, +0x6c,0xc3,0x29,0x2b,0xb9,0x01,0xfc,0x9a,0x7c,0x2e,0x8c,0xeb, +0x14,0xc7,0xdd,0x66,0x61,0xca,0x79,0x98,0x18,0xf7,0x34,0x91, +0x4a,0x0e,0x7f,0x34,0xc2,0x8e,0xa3,0x18,0x3a,0x3d,0xc1,0x54, +0xf6,0x33,0x70,0x54,0x72,0xb0,0x1a,0x3b,0xc4,0x77,0xcd,0x84, +0x77,0xb7,0x88,0xeb,0x8d,0x85,0xf5,0xcb,0x28,0x9d,0x4f,0xfd, +0x8b,0xce,0x3f,0x17,0x56,0x48,0x95,0x7e,0x29,0xab,0x27,0xee, +0xa1,0xae,0xe1,0x52,0x7e,0x2a,0xe4,0xdb,0xde,0x65,0x4a,0xc3, +0x1a,0x6f,0x44,0x21,0xed,0x3c,0x6b,0x17,0x66,0x17,0xe1,0x10, +0x95,0x60,0xc0,0xd7,0x24,0xd6,0x25,0xd5,0x4a,0x86,0x85,0x6f, +0x49,0xf3,0xf0,0x8d,0x94,0x9d,0x6a,0x94,0xc2,0x5c,0x8d,0xbc, +0x26,0xad,0x9a,0x9a,0x75,0x3c,0x06,0x13,0x54,0x91,0xce,0x13, +0xfe,0xaa,0xac,0x09,0x28,0x7c,0x10,0xc7,0xc6,0xe3,0xfc,0x7b, +0x14,0x40,0x77,0xe2,0xfc,0xba,0x76,0x7e,0xd9,0xcd,0xdd,0x37, +0xac,0x6f,0x3f,0xbc,0xde,0x33,0xd0,0x71,0xd3,0xae,0x8a,0x37, +0xdf,0x6a,0x69,0xa6,0xa9,0xb7,0xbf,0x37,0x68,0x20,0xea,0xd2, +0xa3,0x9a,0xbb,0x5d,0x9d,0x97,0xb9,0x26,0x31,0xd7,0x58,0xd0, +0x62,0xad,0xed,0x75,0x1c,0x97,0xbb,0x71,0x36,0x86,0x04,0x83, +0x4d,0x60,0x23,0x13,0x42,0xa9,0x01,0x4e,0xc0,0x59,0x38,0xa6, +0xd6,0x86,0x87,0x95,0x30,0xa5,0x13,0x66,0x64,0xc0,0x47,0x9c, +0xb0,0x4c,0xec,0x27,0xbd,0xaf,0x3f,0x36,0x62,0xa5,0x60,0xbd, +0x95,0x78,0x84,0x78,0x84,0xb8,0x51,0xf7,0xf4,0x85,0xa9,0x7d, +0xd4,0x95,0x8d,0x74,0xe9,0x78,0xa8,0x1b,0x82,0x3a,0x15,0xbc, +0xe6,0x81,0xe6,0xc1,0x56,0x11,0x52,0x28,0xa1,0x4c,0xa7,0x25, +0x83,0xc3,0x56,0x9c,0xac,0xe0,0xb6,0x6f,0x31,0xcd,0xd2,0xe1, +0x47,0xb8,0xc3,0x4a,0x49,0xb6,0xca,0x4c,0x1a,0xc1,0xe0,0x15, +0x49,0xac,0x4a,0xa8,0x8e,0xab,0xd1,0x8b,0xe7,0x0f,0xdb,0x47, +0xef,0x8b,0xdc,0xc7,0xa1,0xb9,0x01,0x68,0x32,0x76,0xc8,0xee, +0x9a,0xbd,0x78,0x41,0xb5,0x31,0x5f,0x5e,0x51,0x5c,0x55,0x58, +0xcf,0x89,0x11,0x83,0xc2,0x6d,0xb6,0xb8,0xb3,0xa0,0x3f,0x7b, +0x88,0x83,0xdf,0xfa,0x19,0x5c,0x2a,0x4e,0x20,0xed,0x0d,0xad, +0x97,0xb3,0x3a,0x68,0x78,0xbe,0x69,0x04,0xe7,0xd8,0x80,0x7d, +0xf6,0xa6,0xb6,0xee,0xdc,0xa9,0x2d,0xb8,0xde,0x10,0xd6,0xe3, +0x09,0x1c,0x27,0x9d,0xf2,0x7b,0xc9,0x34,0xa6,0x4a,0x9e,0x19, +0x09,0x4b,0xfa,0x50,0xba,0x25,0xe6,0x2b,0x69,0x16,0xc2,0x94, +0x59,0xc2,0x10,0x18,0xd3,0x4b,0x99,0x83,0x62,0x1e,0xde,0x31, +0x82,0x77,0xe8,0x3c,0xd8,0xd2,0x79,0xb0,0x97,0xe6,0xa1,0x96, +0xce,0x43,0x9d,0x62,0x1e,0x46,0x4b,0xf3,0xf0,0x64,0x04,0x6e, +0x14,0xdc,0x33,0x95,0xce,0x43,0xb3,0x60,0x4a,0x65,0x8e,0x90, +0x08,0x01,0xac,0x68,0x8e,0x5b,0x08,0x8c,0x17,0x54,0x71,0x3c, +0x2b,0x7a,0xd3,0x08,0x78,0x11,0x6c,0x85,0x1d,0x38,0x0d,0xb7, +0x4b,0x85,0x63,0x60,0xb9,0x54,0x77,0xba,0x59,0x43,0x88,0x14, +0x7b,0xd8,0x8b,0xb8,0x9c,0xfc,0x2e,0xec,0x98,0xc5,0x8a,0x3b, +0xf0,0x63,0xf2,0x87,0xb0,0xe3,0x43,0x1a,0x16,0xe7,0x0e,0xcf, +0x21,0xd0,0xd0,0x8f,0x0d,0x30,0x49,0x1b,0x27,0x61,0xb2,0x01, +0x24,0x63,0x34,0x83,0x16,0xbb,0x3f,0xc4,0x0b,0xa8,0xa1,0x5e, +0xa6,0x07,0xae,0xf0,0xce,0x2f,0x20,0x3b,0x0f,0xea,0xaa,0xd2, +0xfd,0x33,0x6a,0xcf,0xf1,0x6d,0x30,0xc1,0xf7,0xaa,0x06,0x79, +0xaa,0x52,0x66,0x6d,0x7f,0x09,0x56,0x6a,0xf8,0x43,0x28,0xf1, +0x0c,0x73,0x0f,0x73,0xa7,0x6e,0x1e,0xf9,0xaa,0x77,0x26,0xe8, +0xe9,0xa3,0x1e,0x8e,0x32,0x82,0x51,0x98,0xc0,0x3a,0x86,0x3b, +0x4a,0xd9,0x16,0x43,0x29,0xdb,0x92,0xa8,0xe0,0x64,0xf3,0xa4, +0xa8,0xf5,0x85,0xc4,0x0d,0xea,0x35,0xa0,0x8b,0xad,0x92,0x57, +0xa5,0x56,0xa6,0x71,0x5f,0xc2,0x49,0xa2,0xcb,0xce,0x0d,0xb4, +0x5c,0xbf,0x5c,0xbd,0xc6,0xaa,0xa6,0xa1,0x76,0x40,0x5e,0xa1, +0x7a,0x2e,0xe1,0xc2,0xa7,0xe7,0xa3,0xaf,0xe0,0x04,0xbe,0xb1, +0x72,0x37,0x4c,0x38,0x9c,0x12,0x73,0x3a,0x22,0x46,0x35,0x22, +0xe6,0xc4,0x19,0x59,0x62,0xc9,0x99,0xe2,0x1e,0xb5,0x21,0x16, +0x06,0xa7,0x9a,0xb0,0x38,0x2a,0xc8,0x76,0xf7,0x3a,0xfa,0x7b, +0x15,0xf5,0xc5,0xcd,0xc9,0xa5,0xaa,0xe7,0x13,0xce,0x7f,0x1a, +0x17,0xf3,0x04,0x55,0xf9,0x86,0xea,0x8f,0x61,0x6a,0x4c,0xf2, +0xe1,0x33,0xe1,0x31,0xaa,0x91,0xd1,0xd2,0x69,0x82,0xd2,0x73, +0xa5,0x97,0xd4,0x24,0x9f,0xf8,0x41,0x58,0x48,0xfe,0xe2,0xf0, +0x7f,0xf1,0xb8,0x69,0x86,0x30,0x4d,0xa1,0x04,0xac,0xc2,0x6d, +0x94,0x29,0x91,0xa6,0x91,0x94,0xc8,0x04,0x09,0x98,0x7e,0xfc, +0x33,0x3a,0x55,0xa7,0xd4,0xa4,0x56,0xa5,0x71,0xdd,0x82,0x99, +0x54,0x66,0x27,0x52,0x51,0xb0,0x7b,0x1e,0x11,0xd9,0x17,0x02, +0xcb,0x88,0x2c,0xce,0x25,0x02,0xbb,0x40,0x64,0x19,0x70,0xc3, +0x7b,0x52,0x19,0xee,0x53,0xdd,0x62,0xbd,0x09,0xc4,0xe0,0x7b, +0x98,0x6d,0x0c,0xd9,0xca,0x32,0xdc,0x85,0xb4,0x21,0xc3,0x1f, +0x53,0x60,0xbb,0x0e,0x9f,0x0a,0x63,0xd1,0xdc,0x0c,0xd4,0x67, +0xa1,0x86,0x39,0x68,0x20,0xc5,0x0d,0x61,0xaa,0x81,0x38,0x15, +0x75,0x40,0x06,0xd3,0x3a,0x70,0xda,0x0f,0x6c,0xd3,0x85,0x4b, +0xe9,0x55,0x39,0x3e,0xcd,0xbc,0x9d,0xef,0xae,0x40,0xdd,0x18, +0x0e,0x5f,0xc1,0xd1,0x5d,0x2c,0x36,0xde,0xa1,0xf8,0xee,0x15, +0x21,0xe1,0x7b,0xd0,0x4f,0xbd,0x0b,0x94,0x26,0xf5,0xae,0x11, +0xbc,0x4b,0x3b,0x61,0x13,0x6a,0x13,0x6e,0x27,0x75,0xa2,0x2e, +0xb1,0x3e,0xb9,0x5e,0x81,0x58,0x32,0xc9,0xa4,0xbe,0x1b,0x71, +0x6d,0x09,0x34,0xca,0xe5,0x14,0xdf,0x87,0x59,0x51,0x46,0x16, +0x65,0xac,0xcd,0xdd,0x56,0xf2,0xb8,0xf3,0xea,0xd5,0xc6,0x87, +0xd4,0x4f,0x07,0x4d,0x84,0x08,0xd6,0x5e,0x4b,0xc7,0x74,0x83, +0xe3,0xf6,0x6a,0xed,0x36,0xbd,0x8b,0xf6,0x2e,0x7c,0x97,0x41, +0xbf,0xcd,0x65,0xe7,0x8d,0x1e,0xcb,0x0e,0xce,0x0d,0x49,0x35, +0xe2,0xe1,0x9d,0xac,0x3f,0x4a,0x9f,0x35,0x7e,0x2d,0xed,0x99, +0x1c,0xed,0x47,0x43,0xbe,0xa8,0x5c,0x43,0x0a,0x93,0xd6,0x90, +0x82,0xe1,0xdd,0x3e,0x1a,0x18,0x14,0x83,0xaa,0x70,0xd1,0x33, +0x94,0x6f,0x98,0x4b,0xe4,0x98,0xba,0x68,0x52,0x4b,0x72,0x8b, +0x62,0x71,0x4c,0xe1,0xa2,0xbf,0x8e,0xc8,0x91,0x36,0xb6,0x5e, +0xae,0x40,0xd0,0x36,0xc1,0x98,0x88,0xb3,0x85,0x10,0x61,0x36, +0x1d,0xd4,0xcd,0x44,0x1c,0x0d,0xe3,0x84,0xd1,0x8c,0x38,0x9a, +0xfe,0x2c,0x8c,0xc6,0x89,0xe2,0x68,0x69,0x58,0x4b,0x08,0x84, +0x77,0x63,0x38,0x4c,0xd1,0xc1,0x29,0x78,0xca,0x04,0x4e,0x51, +0xfe,0x55,0x62,0x2c,0xbc,0xec,0xc1,0x54,0x1a,0xf5,0x2f,0x51, +0xc2,0xfa,0x26,0x09,0x18,0xf9,0x6b,0xef,0x1c,0x85,0x59,0xce, +0x30,0xfa,0x07,0x35,0xca,0x7d,0xd4,0x28,0x9d,0x95,0x46,0x59, +0x99,0x54,0x49,0x09,0x6b,0xe9,0x02,0xc9,0x28,0xef,0x4b,0x42, +0x41,0x61,0x94,0x95,0x72,0x25,0x94,0xbe,0x10,0xa6,0x90,0x3f, +0x74,0x3e,0xc4,0x02,0xe9,0x62,0x5c,0x16,0xf5,0x44,0x41,0x3a, +0x24,0xd9,0x0a,0x53,0x32,0x41,0x83,0x6b,0xc0,0x48,0x36,0xbe, +0x28,0x8e,0x7e,0x99,0x24,0xf2,0x5e,0xf8,0x9e,0x15,0x4e,0x5c, +0x82,0xa3,0x2b,0xcd,0xf9,0xac,0xfc,0xcc,0xc2,0xf4,0x82,0x92, +0x1d,0x95,0x3a,0x4d,0x86,0x66,0x86,0x7b,0xcc,0x37,0xd8,0x17, +0x9b,0xf2,0x5f,0xb6,0x5c,0xeb,0xee,0x19,0xe8,0xd1,0xbf,0x6e, +0xf6,0x95,0x55,0x51,0x0f,0xbf,0xbe,0x41,0xab,0xcd,0xa4,0x97, +0xc3,0x36,0x21,0x99,0x78,0xe0,0x7b,0x06,0x38,0x69,0xf1,0x8c, +0x72,0x13,0xbe,0xac,0xa6,0xa0,0x36,0xa7,0x96,0x13,0xd7,0xf5, +0x09,0x29,0x6c,0xe1,0x40,0xce,0x50,0xfa,0x35,0xee,0x31,0x26, +0x92,0xac,0x9a,0x8c,0x3a,0x79,0x1d,0x07,0x46,0x54,0x43,0xb1, +0x0e,0xf8,0xf6,0xd6,0x8f,0xac,0x06,0x5c,0xae,0x7a,0xdf,0xe3, +0xfa,0x9a,0x48,0xbe,0x53,0x9e,0x55,0x86,0x6d,0x53,0x11,0x1f, +0x52,0xef,0xd3,0xe1,0x5b,0x43,0x85,0xe3,0x68,0x21,0x96,0x00, +0x5f,0x7a,0xb9,0xa2,0xae,0x2c,0x29,0x21,0xf6,0xd3,0x94,0xa3, +0x50,0x3c,0x9b,0x2f,0xec,0xc1,0x33,0xdf,0x87,0xc4,0x46,0x1d, +0x3b,0x4c,0x5d,0x28,0xf4,0xc8,0xd9,0xa4,0x8c,0x84,0xac,0xf3, +0x79,0xaa,0x90,0xda,0x8d,0x89,0xf7,0xb5,0x37,0xe2,0x49,0x6a, +0x9c,0x4c,0xa0,0xee,0x76,0x27,0x5c,0xe1,0xc4,0x79,0xe2,0xca, +0x3f,0x99,0x48,0x88,0x34,0x78,0x0a,0x9d,0x35,0xd6,0x08,0xc6, +0xd2,0x40,0x65,0x4f,0x03,0x95,0xa3,0x12,0x30,0x6a,0x92,0x6a, +0xa5,0x59,0x9c,0x21,0x19,0xd5,0xd7,0x4c,0xcb,0x9f,0x46,0x55, +0x29,0x2f,0x4f,0xe5,0x2e,0xc0,0x14,0x62,0x28,0x78,0x8b,0x1b, +0x68,0xf4,0x93,0x1b,0x48,0x85,0x64,0x3b,0x92,0xf2,0x6a,0x34, +0x84,0xd5,0x5f,0xf7,0xb1,0xe2,0x6d,0x9c,0x49,0xf0,0xda,0xc0, +0x4d,0xc8,0x82,0xe3,0x2c,0x66,0xa1,0x21,0x81,0x0f,0xc0,0x19, +0x3f,0xa0,0x0e,0x51,0x21,0x88,0xe4,0x17,0xe6,0xc8,0xde,0xe0, +0x0d,0xde,0xdb,0xdb,0xfc,0xf9,0x8a,0xc7,0xa9,0x8f,0xe3,0xef, +0x73,0x8d,0x94,0xaf,0xc6,0x76,0x9e,0xeb,0x3e,0xdb,0x6d,0x74, +0x9e,0x3f,0x86,0x93,0xc2,0xf0,0x1d,0x9f,0xb9,0x5c,0x3d,0x06, +0xc1,0x16,0xf6,0x51,0xea,0xc3,0xfc,0xa1,0x52,0x8f,0x76,0x7e, +0x87,0xeb,0x7a,0xbf,0x05,0x81,0x1c,0x15,0x25,0x98,0x12,0x86, +0x33,0xf4,0x70,0xb2,0x7a,0xab,0xfd,0x25,0x78,0x3f,0x13,0x3e, +0x3a,0x0d,0xe9,0xaa,0x3f,0x89,0x4d,0xfd,0x42,0xd3,0x75,0xe6, +0x48,0xc0,0xd1,0x80,0xc3,0x41,0xad,0xde,0x7c,0xc1,0xd5,0xcc, +0x2f,0x92,0xbf,0xa1,0xef,0x1e,0xc5,0xe0,0x71,0x4b,0x9c,0x83, +0xef,0xe2,0x87,0xea,0x15,0x46,0xc0,0x82,0x5a,0x9d,0x22,0x7f, +0xab,0x1a,0x4b,0xa3,0xde,0x62,0xa9,0x1a,0xe9,0x78,0xd4,0x28, +0xe9,0xe5,0x91,0x87,0x25,0x8e,0xf0,0x3e,0x1c,0x56,0x13,0xcf, +0x7f,0x48,0x0e,0x44,0xf8,0x44,0xf8,0x50,0xc7,0x0b,0xf9,0xa6, +0xf7,0x63,0xd0,0x31,0xf8,0x4b,0x10,0x39,0x47,0xba,0x45,0xfd, +0x0f,0x82,0xa8,0x69,0x44,0x10,0x95,0x50,0x19,0x5a,0x22,0xa7, +0xfe,0xd2,0x25,0xcc,0x20,0x3e,0x91,0x3e,0x91,0xfb,0x15,0xd9, +0xa5,0xbe,0xc5,0xa0,0xaf,0x87,0xfa,0x4a,0xc6,0x17,0xff,0x86, +0xf1,0x19,0xf2,0x35,0x09,0xd5,0x0a,0xc6,0x57,0xae,0x60,0x7c, +0xdf,0xd0,0xd7,0x64,0xd6,0x4b,0xab,0x46,0x25,0xc9,0xa5,0xc9, +0x25,0x54,0xcf,0x66,0xa1,0x39,0xe9,0x85,0x71,0x25,0x30,0x27, +0x1e,0x36,0x72,0x1d,0x78,0x11,0x38,0x78,0xd2,0xf3,0x7a,0x91, +0xf1,0xd5,0xd7,0xef,0xb0,0xee,0x47,0x3d,0x8e,0x79,0x1c,0x4b, +0x36,0xe0,0x7f,0x4e,0x83,0x51,0xd9,0x5f,0x65,0x73,0xb8,0xb3, +0x7f,0x78,0x26,0x45,0xad,0x23,0x38,0xf3,0x10,0x4e,0x70,0x9a, +0xeb,0xf4,0xc2,0xef,0x1f,0x41,0x30,0xd1,0x38,0x8c,0xcf,0xc2, +0x99,0xa5,0x38,0xb9,0x0b,0x47,0xbb,0xec,0xb2,0x31,0x34,0xb0, +0xa9,0xb0,0xe0,0xbb,0x1b,0x9b,0x7a,0xaa,0x2e,0x57,0xe8,0xd6, +0x1b,0xb7,0x5b,0x54,0x74,0xf2,0xc6,0x9d,0x0e,0x7d,0xee,0x57, +0x38,0xcc,0x15,0xb4,0xa8,0x80,0x86,0x55,0x30,0x8f,0x41,0xcf, +0x31,0xf8,0x09,0xfd,0xf9,0x13,0x16,0xbd,0xc6,0x80,0xa4,0xf7, +0x1d,0xa3,0xcc,0xa3,0x8c,0xa3,0x69,0xe7,0x1a,0x85,0x99,0xc4, +0x2f,0xca,0x2f,0xea,0x60,0x34,0x95,0x1e,0xcf,0xfb,0x96,0x28, +0x8d,0x48,0x66,0x08,0x32,0x1a,0x9a,0x1c,0x42,0x1d,0xde,0xd0, +0xd9,0xea,0xe4,0x6a,0x29,0x34,0xcd,0x96,0x3a,0xf7,0xe5,0x88, +0x58,0xef,0x61,0x0b,0x13,0x0b,0x92,0x0b,0x93,0xb9,0xe1,0x39, +0xb7,0xc9,0x3c,0x98,0x73,0xb7,0x1b,0x73,0x61,0x0a,0xf3,0x2c, +0xfe,0xab,0xa4,0x07,0x69,0xbe,0x1d,0x3c,0xce,0xf1,0x44,0xad, +0x50,0xdc,0x7f,0x22,0xd9,0x84,0x7f,0x7c,0xe6,0xe1,0xd9,0x7b, +0xb1,0x1c,0x4e,0xc4,0x54,0x93,0xbb,0x38,0x67,0x91,0xf1,0x0b, +0x5c,0xba,0xd9,0x18,0x52,0x91,0x60,0x87,0xd1,0xb0,0x5a,0x2f, +0xd6,0x00,0x81,0xdc,0x9e,0xcd,0xb0,0xf4,0x25,0x4b,0xe5,0x80, +0x35,0xa1,0xf3,0x4c,0x60,0x0e,0x0b,0x46,0x48,0xd1,0x6f,0x0e, +0x7c,0x80,0x73,0x58,0xb4,0x32,0x96,0x0a,0xb3,0x12,0x58,0x2a, +0x3d,0x5e,0x4a,0xbf,0xd3,0xc7,0x4b,0x59,0x95,0xef,0x85,0x01, +0x82,0x9f,0xd0,0xc1,0x85,0x0f,0x71,0x56,0x3f,0xcc,0x82,0xb9, +0x3b,0xd6,0xb0,0x17,0xec,0x65,0x0f,0x98,0x8a,0x34,0x79,0x85, +0x06,0xbc,0x85,0xb6,0x83,0x10,0xdc,0x82,0xc1,0x57,0xc0,0xb6, +0x19,0x6d,0xbb,0x0d,0x4c,0xe6,0xb3,0x17,0x52,0x62,0xe5,0xb1, +0x29,0x56,0x29,0x7c,0xa0,0x9d,0x8b,0x99,0xad,0x63,0xbd,0x17, +0x6f,0x65,0x0d,0x91,0x7a,0x8c,0xd0,0x8a,0x1b,0x48,0x5d,0x66, +0x7a,0x9d,0x86,0x30,0x4e,0x5f,0x7c,0x97,0xbe,0x3e,0xd9,0x54, +0xa6,0x25,0x2c,0x25,0x58,0x3b,0x00,0xb5,0xac,0xf8,0x0d,0xbe, +0x4f,0xb2,0x32,0x33,0xb2,0x53,0x73,0x38,0x20,0x5a,0x0c,0x9c, +0x10,0x7b,0xc9,0x20,0x88,0x1d,0x28,0xf6,0xb2,0x30,0xf9,0x1c, +0x4c,0x38,0xff,0xe4,0x42,0x60,0x3b,0x1f,0x42,0x2d,0xa4,0xe5, +0x38,0x06,0x4a,0x19,0xdd,0x9f,0x80,0x39,0x7d,0x16,0x18,0x0d, +0x63,0x71,0x8c,0xb9,0x30,0x46,0x4f,0xdc,0x68,0x2a,0x6c,0xdc, +0x2a,0x65,0x9d,0x4d,0x65,0x94,0xcc,0x50,0x0a,0x58,0xa9,0x71, +0x57,0x58,0xd9,0xc5,0x4a,0xc9,0xa4,0x60,0x92,0x56,0x94,0x5c, +0x18,0x5f,0x60,0x98,0xc1,0x1f,0xd8,0x64,0xb4,0x61,0x9b,0x0e, +0x57,0xbc,0x44,0x19,0x9d,0x15,0x84,0xfc,0x34,0x6b,0x15,0x62, +0x19,0xa6,0x4c,0x7e,0x25,0x51,0xc8,0x4b,0x95,0x92,0x83,0x0a, +0x42,0xfe,0x92,0x69,0x4d,0xcd,0x68,0x92,0xe6,0xa4,0x20,0x91, +0x7e,0x25,0x45,0xf7,0xf0,0xfe,0xd1,0x7e,0xd1,0x7e,0x31,0x1c, +0x04,0x3c,0xcf,0x66,0x2b,0xad,0x2a,0x4b,0x2b,0xaa,0x8b,0xeb, +0x54,0x85,0xe9,0x33,0x18,0x9c,0x72,0x1c,0x3d,0x42,0x71,0x9c, +0xfa,0xc6,0x28,0x7f,0xe7,0x6d,0xf4,0x41,0x9a,0xbe,0xec,0x5b, +0x06,0x46,0xd7,0xf7,0xc1,0xf8,0x64,0x0d,0x39,0xa8,0x9c,0x07, +0x37,0x78,0x4f,0x0d,0x56,0x53,0x80,0x14,0xcd,0x89,0x11,0x8d, +0xdc,0x32,0xd8,0x0b,0x66,0x5d,0x68,0x46,0x9d,0x6e,0x4f,0x17, +0x76,0x30,0x09,0xd9,0x71,0x59,0xb1,0x59,0xd6,0xc9,0x7c,0x90, +0xb1,0xcb,0x26,0x13,0xe3,0x5a,0x67,0x3e,0xaf,0x30,0xa7,0x2c, +0xa3,0x9c,0xfb,0x06,0x59,0xb4,0x36,0x05,0x6b,0xda,0xe2,0x51, +0x30,0xc5,0x08,0xcf,0xf6,0x5e,0x87,0x27,0x8c,0xca,0xf0,0x6a, +0x08,0x25,0x10,0x4d,0xf1,0xf3,0xec,0xb7,0x50,0xd0,0x83,0x05, +0xcf,0x74,0x31,0x0a,0x9d,0xc5,0xb1,0x70,0x70,0x2e,0x66,0x19, +0x41,0x16,0x2e,0x1e,0x82,0xc5,0x50,0xda,0x8b,0xa5,0x0c,0xde, +0x83,0x12,0xe5,0x7a,0x32,0xe5,0x90,0x11,0x30,0xa1,0x0f,0x27, +0x28,0x35,0xc9,0x64,0x43,0xaa,0x03,0xe3,0x58,0xeb,0x30,0xeb, +0x08,0x3b,0x49,0x93,0xd4,0x25,0x36,0x24,0x29,0x25,0x1e,0xab, +0x94,0xfc,0xad,0x23,0x1c,0xac,0x81,0x4a,0xbc,0x3a,0x2a,0x47, +0x23,0xc0,0x9c,0xcc,0x12,0x67,0xfd,0xce,0xe2,0xb2,0x31,0xc2, +0x2c,0x1c,0x2d,0xce,0xa2,0x2d,0xd9,0x06,0x27,0xa8,0x70,0xea, +0xc5,0x60,0xd0,0x07,0xcb,0xb6,0x01,0xda,0xd4,0xac,0xdf,0xf4, +0x66,0x63,0x32,0x5a,0x0f,0x58,0x82,0x8b,0xe8,0xc7,0xe0,0x5b, +0x19,0x96,0xf7,0x60,0x99,0xda,0x63,0xbd,0x55,0x2c,0xce,0xb1, +0xd9,0x81,0xa3,0xf7,0xaa,0x17,0x1a,0xff,0x71,0xa5,0xfe,0x6a, +0xdc,0xaf,0x94,0x60,0xe1,0xcc,0xa4,0x5b,0x3b,0x60,0xf1,0x74, +0x2a,0xb1,0xe3,0xfb,0x64,0x58,0xc2,0x88,0x32,0x61,0xb6,0x44, +0xae,0xc2,0xdd,0xc3,0xff,0x4e,0xae,0xde,0x36,0x82,0xb7,0x69, +0x80,0x50,0x24,0xbc,0x24,0x1c,0xa3,0x54,0x36,0xa9,0x4a,0xc2, +0xb1,0x39,0x92,0x0f,0x3d,0x1a,0x59,0xca,0xea,0x64,0xab,0x52, +0x2a,0x25,0x72,0x25,0x74,0xd3,0xc6,0x8a,0x6e,0xf0,0xbe,0xe0, +0xc6,0xa8,0x08,0x3f,0x0c,0xdf,0x27,0x07,0x96,0xad,0x98,0x8d, +0xcb,0x57,0x15,0x9b,0xf1,0x30,0xff,0xeb,0x5f,0x7f,0x28,0x84, +0xd1,0x5c,0x1c,0x53,0x80,0x6f,0xc1,0x98,0x05,0xb0,0x6c,0x65, +0x71,0x37,0x8f,0x9f,0x3c,0x59,0xf8,0xd2,0xeb,0x3b,0x0e,0x51, +0xdc,0xa1,0xe0,0x17,0x5e,0x12,0xbf,0xf8,0xa3,0xf7,0xc3,0xff, +0x03,0xbf,0x50,0x90,0x24,0x46,0x22,0x49,0xdf,0x8d,0x0c,0x57, +0x27,0x5b,0x9e,0x5c,0x2e,0x2f,0x93,0x73,0xd4,0xcb,0x5c,0x89, +0x09,0x3c,0xe9,0x66,0xc5,0xa9,0xe2,0x2f,0xe4,0x36,0xec,0x16, +0xd4,0x30,0x42,0xdc,0xc7,0xc2,0x6b,0x47,0x22,0x98,0xc3,0x0c, +0x6c,0x5e,0xc4,0xca,0x8d,0x29,0x04,0xd7,0xa6,0x65,0xd0,0x10, +0xf9,0x1c,0xcf,0x88,0xa7,0x59,0x9c,0x2c,0x58,0x10,0xac,0xc3, +0xf7,0xa0,0x8e,0x95,0x00,0x9d,0xaa,0xe3,0xb0,0x11,0x4c,0x52, +0xa8,0xe3,0xff,0x79,0x55,0xaf,0x52,0x91,0xfb,0x53,0xae,0xea, +0x51,0x48,0x1f,0x19,0x0a,0xaa,0x8e,0xa5,0x55,0xbd,0x6f,0xc5, +0x8d,0x84,0x72,0x35,0x23,0x81,0x0a,0xfa,0xd7,0xff,0x66,0xe1, +0xba,0x10,0x49,0xc0,0x52,0x5c,0x43,0x09,0x73,0x8a,0x81,0xa4, +0x81,0xdb,0xd2,0x52,0x5b,0x35,0x86,0x6b,0x28,0x4b,0x40,0x15, +0x33,0xa9,0xf8,0x8e,0x9a,0x54,0x7c,0xe7,0xaa,0xb2,0xf8,0xce, +0x4c,0x1c,0xc3,0xe2,0x1d,0x73,0x82,0x63,0xe9,0xe3,0xb1,0xd2, +0xe3,0xb1,0x04,0xc6,0xd2,0xc7,0x63,0x15,0x9b,0x00,0x24,0xee, +0xe3,0x1c,0xea,0xac,0xa0,0xf7,0xca,0xa4,0xb0,0x3e,0xb5,0xd5, +0x49,0x86,0x30,0x49,0xca,0x26,0x85,0xfd,0x35,0x56,0x49,0x0d, +0x0a,0xee,0xc3,0x48,0xa6,0xf5,0xed,0xdf,0xb2,0x07,0x75,0x12, +0xf7,0x11,0x8c,0xc7,0x18,0x08,0x4f,0xfb,0xd9,0xe3,0xe2,0xcf, +0xa4,0x07,0x8f,0x7f,0x67,0xb0,0x14,0x9d,0xd9,0xd8,0x86,0x73, +0xcd,0x67,0xda,0x39,0xc1,0x0d,0x12,0xc4,0x1c,0x7c,0x9f,0xc1, +0x64,0x5f,0x9c,0x8d,0xa3,0x71,0x86,0x7a,0x93,0xd5,0xd5,0xaf, +0x6a,0xbe,0xc9,0xfe,0x43,0x15,0xbc,0x98,0xd0,0x8f,0x34,0xcd, +0x70,0xa6,0x66,0xa1,0x29,0x0f,0x6a,0xb7,0xbe,0x1b,0x3c,0xf7, +0x2b,0x9d,0xd5,0xf8,0x0f,0x5f,0x98,0xc0,0xb2,0x8d,0x05,0x74, +0x4e,0x97,0xdc,0xff,0xa4,0x23,0xe8,0x05,0x07,0xf3,0xe0,0x0c, +0x11,0xe7,0x33,0xa7,0xb3,0x3e,0xcd,0xce,0x51,0x7b,0x28,0xcc, +0x63,0x55,0xfe,0xa9,0x2f,0x24,0x11,0x5c,0xce,0x14,0x3c,0xce, +0x7b,0x99,0xfe,0x90,0xc3,0xef,0x99,0xd8,0xcc,0xf3,0x19,0xe7, +0xd2,0x0c,0xce,0xf2,0x21,0x9b,0xbd,0x97,0x79,0xae,0xe2,0x00, +0x98,0x23,0x07,0x0f,0xfb,0x1d,0xf6,0xe7,0xc4,0xd9,0xe6,0x70, +0x98,0xd1,0xb7,0x5c,0x67,0xbf,0xdc,0x3b,0xa6,0x9d,0xf7,0x88, +0x70,0x8b,0x74,0xa3,0xc6,0x71,0x74,0x24,0xb9,0xa3,0x4f,0xbd, +0x49,0xd1,0xe5,0x24,0xd6,0x26,0xdc,0x3a,0xca,0x2e,0x9a,0x12, +0x85,0xfa,0x04,0x29,0x85,0x46,0x71,0x90,0x7a,0x53,0xda,0x5f, +0x5d,0x6e,0x60,0x8b,0x13,0x8a,0x12,0x8a,0x12,0x33,0x1c,0xf8, +0xcf,0xb2,0xaf,0x15,0xf7,0x55,0xa6,0x04,0x27,0x07,0x26,0x06, +0xee,0xb6,0xfa,0xc8,0x7a,0xbe,0x77,0x96,0x39,0xff,0x6b,0xd9, +0xcb,0xf6,0x4b,0x6d,0x89,0xfe,0xf1,0xfe,0x17,0xfc,0x3e,0xd9, +0x83,0x2a,0x5a,0x38,0xcd,0x39,0x47,0xba,0x7d,0xb7,0x16,0x26, +0x5c,0xbd,0x7b,0x91,0x3b,0xe7,0x7f,0xd6,0x3f,0x40,0x6d,0x67, +0xb0,0x9f,0xbe,0xfa,0x5a,0xa9,0xca,0xca,0x0d,0xe6,0x45,0x59, +0xe3,0xab,0x1f,0x2c,0x61,0x8a,0xe6,0x8f,0x1a,0x79,0x19,0xd9, +0x34,0x96,0x72,0x05,0x4c,0x26,0x9a,0x3d,0xc0,0x6d,0x30,0x1b, +0x35,0x6a,0x5a,0x79,0xcd,0xcf,0x4c,0x6e,0xbb,0x3c,0xec,0xab, +0xbb,0xdc,0x5b,0xdd,0xbc,0xaf,0x86,0x77,0xb3,0x31,0x34,0xb7, +0x72,0x0b,0xe8,0x8f,0xb8,0x78,0xe4,0x1a,0x05,0x29,0x46,0xf4, +0x86,0xcd,0x24,0x3e,0x2f,0xb1,0x22,0xb1,0x8a,0x83,0x6a,0xe6, +0xd8,0xc1,0x18,0xb7,0x68,0x17,0x0a,0x65,0x2f,0xa9,0xf4,0xfc, +0x29,0x17,0x98,0x92,0xc7,0x65,0x47,0x3a,0x79,0x93,0x80,0xbd, +0x81,0xda,0x21,0x1c,0xc5,0x08,0xcd,0x6e,0xd4,0x04,0xd6,0x00, +0xbf,0x65,0x0f,0x1d,0x0b,0x38,0x16,0x70,0x9c,0x13,0xae,0xe5, +0x11,0x24,0x8c,0x67,0xd4,0x85,0x52,0x8d,0x87,0xec,0x9d,0xbc, +0x2f,0xeb,0x07,0xeb,0xdc,0x9b,0x78,0x0b,0x97,0xed,0xae,0x3a, +0x87,0x38,0x98,0x6f,0x80,0x6d,0xac,0x56,0x76,0xe0,0x15,0x75, +0x78,0x9f,0x69,0x90,0x6e,0x6a,0xfd,0x41,0x3a,0x53,0x2a,0x0e, +0xa1,0x0f,0x95,0x86,0x6f,0xd6,0x67,0x47,0xf7,0xe1,0x68,0x65, +0x64,0x7e,0x63,0x3b,0xa1,0x36,0x11,0x23,0xb6,0xd3,0x30,0xc2, +0xe3,0x19,0x25,0x8f,0x7f,0x93,0x89,0xac,0x91,0xd7,0x4a,0xd2, +0x10,0x72,0x80,0x25,0x31,0x1e,0x11,0x1e,0xc1,0xee,0x1c,0x6a, +0x8b,0xfa,0x03,0x17,0x85,0x69,0x3a,0x83,0x82,0x3e,0x26,0x30, +0xc9,0x85,0x89,0xc5,0x09,0xc5,0x9c,0xa2,0xd0,0x0c,0x8c,0x16, +0xa6,0x51,0x71,0x29,0x4e,0xc3,0x35,0xd4,0xac,0xe9,0xcf,0x63, +0xa8,0x09,0x4c,0x87,0x24,0x02,0xbf,0xe0,0xa9,0x6f,0xa0,0xb9, +0x1b,0x9b,0x25,0xb3,0x6b,0x32,0x81,0xa6,0x8f,0x31,0x1a,0x7f, +0x01,0x37,0xd6,0x7e,0xf5,0x82,0x4f,0xf0,0x83,0x6d,0xa5,0xe6, +0x3c,0x7c,0x70,0x17,0xde,0x7a,0x96,0xf9,0x1b,0x17,0x87,0xd7, +0x7b,0xe1,0x7a,0x2c,0x93,0x35,0xff,0xd7,0xe5,0x30,0x6b,0x6d, +0x29,0x45,0x65,0x8d,0xfb,0x8b,0x1e,0xd9,0x7d,0xc5,0x89,0x13, +0x61,0x26,0xd9,0x1f,0xae,0x8c,0x1a,0x11,0x92,0x2a,0x51,0x84, +0xad,0xb7,0x8c,0xa8,0xaf,0xc6,0x4b,0xbe,0x1a,0xe9,0x14,0xa5, +0xd4,0x84,0x4a,0xfa,0xfd,0xd7,0x0a,0x7c,0xbd,0x44,0x8f,0x14, +0x41,0x23,0x95,0x83,0x1a,0x70,0x26,0x78,0x0a,0xf7,0xc0,0x29, +0x16,0x0e,0xe3,0x29,0x02,0xa7,0x40,0x0f,0x4f,0xb1,0xe2,0x74, +0xd0,0x21,0x45,0xb6,0x39,0xe6,0x19,0x46,0xcd,0x99,0x7c,0x70, +0xaf,0x6f,0xd7,0xfe,0x66,0x1a,0x1d,0x51,0x93,0x94,0xb4,0xe6, +0x76,0xa7,0xf5,0x58,0xa7,0xf3,0x61,0xa6,0x7e,0x66,0xde,0x36, +0x74,0xe2,0x96,0x4b,0xcb,0x3b,0xda,0x38,0xc1,0x08,0x26,0xd0, +0x71,0xb4,0x0b,0xb3,0x0d,0x77,0x18,0x91,0xd8,0xc9,0xb5,0x8a, +0x71,0x1c,0xa5,0x94,0xd8,0xad,0xa9,0x12,0x75,0xed,0x62,0xcb, +0x92,0x4b,0x53,0x4a,0xe5,0xd1,0xdd,0xbc,0x4f,0xc4,0xfe,0x48, +0x6f,0xda,0xfa,0x60,0x85,0xa6,0x62,0x87,0xc3,0xc5,0x79,0xc4, +0xa4,0xca,0xbe,0xda,0xad,0xae,0xa9,0xa0,0xb2,0xb8,0xac,0xc2, +0xb5,0x9a,0xf7,0xf2,0x70,0xf6,0x74,0xf4,0x0b,0xc9,0x0d,0xcf, +0x8d,0xcc,0xef,0x2c,0x69,0xad,0x2f,0xab,0x71,0xac,0xe4,0xf7, +0xbb,0xed,0x73,0xb1,0xf7,0x89,0xa8,0x3c,0x5c,0x79,0xb4,0xca, +0xf0,0x30,0x9f,0x83,0xf3,0xaf,0xe3,0x42,0xda,0x6c,0x55,0x4e, +0xbc,0x7b,0x56,0xca,0x62,0x8d,0xb9,0x01,0x53,0xf2,0x60,0x1a, +0xd7,0x82,0xbe,0xa6,0x14,0x06,0xa3,0xcc,0x02,0xcd,0xbd,0x2d, +0xf7,0x17,0xb9,0x94,0x78,0xe6,0xb8,0xef,0xe3,0x8b,0x02,0x6a, +0xdd,0x4a,0x3c,0x3c,0x1c,0xec,0xf7,0x99,0xba,0x48,0xb7,0x42, +0x3a,0x10,0xa9,0x20,0xc7,0x4c,0x98,0xdd,0x83,0x4f,0x8d,0x41, +0x15,0x67,0x62,0xb2,0x11,0x9c,0x61,0xfd,0xe7,0xad,0xd8,0x8c, +0xab,0x14,0x55,0x4e,0x36,0xdf,0xfb,0xf9,0xbb,0x14,0x78,0x8b, +0x7a,0x7a,0x2a,0x8e,0xfa,0x69,0x25,0x6c,0x5f,0x2f,0xb9,0xfa, +0xaa,0x9b,0x8b,0x3e,0xf7,0x7b,0x49,0x07,0xe0,0x96,0x30,0x9f, +0xca,0x5c,0xf7,0x70,0xb7,0xff,0x05,0x40,0xaa,0x92,0xaa,0xff, +0x06,0x20,0x4a,0x12,0xd6,0x29,0xad,0x0e,0xa5,0x51,0x8d,0x2b, +0x64,0x4a,0x22,0x77,0x16,0x9a,0xc0,0x2e,0x7d,0xdc,0x45,0x27, +0x44,0x51,0xdd,0xb6,0x09,0x2c,0xd9,0x46,0xac,0x27,0xaf,0xa7, +0x18,0x41,0x27,0x13,0xe9,0x1e,0xe6,0x12,0xe2,0xc1,0x61,0x90, +0xb8,0x55,0x2a,0x65,0xcb,0xe2,0xef,0xbd,0xf0,0x3b,0xd5,0x0b, +0x8a,0x6f,0xef,0x62,0xcf,0x2a,0x29,0x27,0x72,0x9b,0xa9,0x93, +0xcb,0x15,0xa5,0x6c,0x5b,0xd9,0xd4,0xb2,0x94,0xca,0xa4,0x0a, +0x0e,0xca,0xa9,0x58,0xbb,0x48,0x61,0x4e,0x1a,0x71,0x89,0x07, +0x87,0x3d,0xeb,0x5d,0x0e,0x7a,0x7a,0xb4,0x95,0x8a,0x59,0x8b, +0x53,0xce,0x9a,0x14,0x46,0x6a,0x13,0x94,0xb3,0x56,0x2e,0xcd, +0x9a,0x8e,0xec,0x19,0x35,0x98,0xcc,0x06,0x89,0x08,0x97,0x26, +0x95,0xa6,0x50,0x22,0x3c,0x3c,0x1e,0xdf,0x23,0x5d,0xd8,0x7c, +0x8f,0xad,0x3a,0x2d,0x97,0x57,0xab,0xc1,0x56,0x58,0xc1,0x1e, +0x70,0x70,0xb5,0xb7,0x71,0x6a,0x74,0xe3,0x7b,0xda,0x5a,0x06, +0x8a,0x87,0x14,0x1b,0x0b,0x5c,0x33,0xee,0x94,0x5e,0xab,0x6e, +0x6a,0x52,0xad,0x17,0xfd,0xcd,0x84,0x29,0xac,0xf3,0x01,0x0b, +0x5f,0x7d,0x3f,0xab,0x1c,0x8b,0x1c,0xa7,0x54,0x2f,0x07,0xbe, +0x31,0xa4,0xfb,0x60,0xfb,0x41,0x0e,0x0b,0xcc,0x21,0x93,0x31, +0x35,0x5c,0x65,0x83,0xd3,0xcd,0x73,0x68,0x4c,0x5d,0x7d,0xe9, +0x69,0x4f,0xe1,0x63,0x6a,0xf7,0x5b,0xf0,0x3d,0x46,0x6e,0x2e, +0x1b,0xd8,0x84,0xb9,0xa6,0x70,0x8c,0x71,0xdc,0xbe,0xce,0x04, +0xe7,0xec,0x2d,0xa2,0x82,0x78,0xe5,0xed,0xfb,0x03,0xb9,0x3f, +0x72,0xb1,0x58,0x7c,0x11,0x8a,0xe3,0x98,0xec,0x45,0x0f,0x75, +0x61,0xa3,0x66,0x11,0x15,0x0e,0x8b,0x2f,0xad,0xe9,0xb6,0xbf, +0x49,0x67,0xe4,0x81,0x72,0x01,0x29,0x5c,0x5a,0x40,0x0a,0xfe, +0xbe,0x77,0xf1,0xdf,0x10,0xf5,0x1c,0x6b,0x13,0xf6,0xbf,0x29, +0xf6,0x4a,0x8a,0xe9,0x15,0xd4,0x39,0x9e,0x81,0x15,0x81,0xca, +0x5e,0xac,0x84,0x49,0xcc,0x8b,0xa4,0x67,0xa9,0xd7,0x33,0xfc, +0xbb,0x78,0x9c,0xe2,0x82,0x31,0xfb,0x71,0xf3,0xf1,0x0b,0x26, +0xfc,0x9d,0x33,0x5f,0xc6,0x3e,0x8a,0xe7,0x70,0x9c,0x82,0x04, +0x89,0x72,0xdc,0x0b,0x2b,0x14,0xd7,0xa4,0x83,0x2a,0xdb,0x16, +0xd7,0x91,0xd8,0x90,0x16,0xd4,0xce,0x1b,0x05,0x68,0x85,0xeb, +0x9d,0xe0,0xc4,0xe3,0x7d,0x3d,0xc2,0x4e,0xe3,0x01,0x21,0x09, +0x5d,0x4d,0x60,0x11,0x35,0xb3,0x39,0x66,0x30,0x07,0x57,0xa0, +0x94,0x77,0x6b,0xa3,0x26,0xe4,0x1d,0xee,0x45,0xdd,0xf9,0xff, +0x08,0xbc,0x89,0x95,0x0a,0x0e,0xf2,0x66,0x3b,0xcd,0x1b,0x13, +0x2a,0x4f,0x29,0x4f,0xa5,0x62,0xb0,0x9c,0xce,0xf0,0x6b,0x86, +0xf5,0x39,0xe2,0x73,0x74,0xff,0x31,0xb9,0x3e,0xff,0x34,0xf3, +0x49,0xee,0x97,0x05,0x1c,0x9a,0xf6,0x0f,0x5f,0xeb,0xec,0xc2, +0x7f,0x98,0xb2,0xc2,0x25,0xcc,0x21,0x8d,0xdf,0x97,0xfe,0x94, +0xf1,0x90,0x6b,0xc7,0xfc,0x7f,0x8d,0x1e,0x18,0xbe,0x04,0x4b, +0xd8,0xa0,0xcd,0x9e,0x0b,0xad,0xe7,0x73,0x03,0xdb,0x5a,0xd6, +0xae,0x55,0xdb,0x1e,0xee,0xae,0xad,0x6e,0xc6,0xa4,0xe8,0xc9, +0x3a,0x98,0xaf,0x2b,0x2f,0x7d,0xff,0x93,0xed,0x03,0xa3,0x5b, +0x1a,0xa2,0x05,0xbc,0x25,0xed,0x36,0x99,0x86,0xab,0x59,0xb3, +0x31,0xb8,0x1a,0xa7,0x49,0xfc,0xd2,0x63,0x0c,0x7d,0x30,0x97, +0xb1,0x0f,0xb7,0xa3,0xb1,0x53,0x2a,0x3e,0x22,0x34,0x13,0x58, +0xd9,0x0b,0x63,0xaf,0x15,0xbd,0xa0,0xde,0x92,0xbb,0x0e,0x54, +0x76,0xc0,0xea,0x3d,0xf9,0xd4,0x5b,0x56,0x5f,0xc6,0xb7,0xee, +0xb8,0x5f,0xe2,0x30,0xdb,0x14,0xb6,0x30,0x16,0x06,0x9f,0xd8, +0xe3,0x24,0x3b,0xae,0x7e,0x81,0x62,0x91,0x6b,0xbe,0xd1,0xcf, +0x18,0xcb,0x3a,0x87,0xb9,0x44,0xba,0x46,0xbd,0xd9,0x2d,0x20, +0x61,0xd9,0x32,0x49,0xd3,0xdd,0xfa,0x33,0x91,0x55,0x9c,0x52, +0x94,0x52,0x2c,0x8f,0xe9,0xe2,0x7d,0x23,0x94,0xeb,0x93,0xc1, +0xdf,0xb1,0xc2,0x79,0x4b,0xa2,0xe8,0x1b,0xe4,0x5b,0x93,0x90, +0x65,0x07,0x56,0x38,0xad,0xac,0x59,0x52,0x3e,0x23,0x67,0x66, +0x57,0x1a,0xef,0xff,0x87,0x13,0x70,0x3e,0x57,0x0b,0x86,0x4a, +0x5f,0x64,0xfe,0xc2,0xfd,0x7c,0x81,0x1c,0x5a,0xe6,0xb5,0xd2, +0x7e,0x55,0xd3,0xe2,0xea,0x99,0x85,0xb3,0x3a,0x33,0x78,0xdf, +0x1f,0x6d,0x60,0xa2,0xd7,0xe5,0xf2,0xeb,0x65,0xcf,0x72,0xbe, +0xe7,0xc4,0x5a,0xb1,0x83,0x08,0x47,0x61,0xa3,0xb8,0x65,0x21, +0x9b,0x62,0x2c,0x7b,0xc8,0xd4,0xa5,0xa6,0x36,0x68,0x08,0xbe, +0x58,0x29,0xb6,0xb0,0xe0,0x01,0xbf,0x12,0xef,0x72,0xfb,0x4a, +0x97,0x02,0x6f,0x17,0xbe,0x7a,0x7f,0x9d,0x6b,0x91,0x3b,0x57, +0x84,0x93,0x88,0x57,0x85,0x63,0xd5,0xbe,0x62,0x2f,0x67,0xbe, +0xc6,0xab,0xde,0xa5,0xd8,0x4d,0xba,0x62,0x1c,0xf6,0xd1,0x26, +0x15,0x03,0x0f,0x67,0xba,0xc4,0xb7,0xd8,0xd8,0xf8,0xf3,0x09, +0xe7,0xe3,0xa5,0xd3,0xb3,0xcc,0xd7,0x97,0x5f,0x52,0xe7,0xa8, +0x67,0xb3,0xd2,0x33,0x32,0x93,0x33,0x8c,0xb3,0x78,0xdd,0xed, +0x73,0xf4,0x70,0xa2,0x73,0x8e,0x15,0x7f,0x25,0xf3,0x7a,0xc9, +0x40,0x25,0x07,0xb5,0x8c,0xb3,0xad,0xa5,0xbd,0xb6,0x93,0x7b, +0xb5,0x73,0xa5,0x77,0xde,0x3e,0x2f,0xbe,0xe0,0x50,0xf5,0xbe, +0x22,0xf7,0x83,0x11,0xb4,0xcf,0x51,0xee,0xf5,0x6e,0x65,0xde, +0x05,0x0e,0xde,0x7c,0x5e,0x40,0xb9,0x73,0xa1,0x9b,0x69,0x90, +0x5e,0xf0,0x9e,0xb0,0x4c,0x33,0xbe,0x3b,0xb9,0x23,0xb5,0x35, +0xd5,0xdd,0xca,0xc2,0xca,0xc6,0xb5,0xde,0x89,0xaf,0x2b,0xab, +0x6b,0xa8,0x68,0xe6,0x9e,0x21,0x8f,0xa5,0xa6,0x50,0x8a,0x3b, +0x70,0x37,0x4c,0xd3,0xc3,0xa8,0xc1,0x76,0x61,0xad,0xc5,0x20, +0x44,0xe9,0xe1,0x34,0xfa,0x64,0x07,0x43,0x95,0x9a,0xa5,0x22, +0x07,0x21,0x65,0xb6,0x82,0x7f,0xee,0x9d,0xff,0xb7,0x64,0xe9, +0x39,0x29,0x59,0x1a,0xfe,0x57,0xb2,0x54,0xc1,0xa6,0x14,0xc9, +0xd2,0xa7,0x7f,0xcb,0x6c,0x55,0xc8,0xa9,0x9f,0xa8,0xfc,0x73, +0x8f,0xf0,0x21,0x69,0xc3,0x9a,0x2b,0xa0,0xdf,0x82,0xfa,0x7d, +0x8a,0xbf,0xfb,0xc1,0x69,0xfb,0x00,0x8c,0x17,0x17,0x49,0x35, +0xba,0xde,0xc7,0xf1,0x03,0x37,0xc1,0xd2,0x00,0x77,0x5a,0xc3, +0x4e,0x43,0xc5,0xdf,0x5a,0x58,0x68,0x09,0x47,0x58,0x6b,0xcb, +0x1d,0x8e,0xf8,0x9e,0x63,0x81,0x25,0xa5,0x1c,0x8d,0x3f,0x0f, +0x0e,0xde,0xe5,0x20,0x9d,0xb9,0xb6,0xe9,0x57,0x5d,0x98,0x6c, +0x9f,0xdb,0xce,0xe3,0xbb,0x0d,0xbb,0xab,0xcd,0xdb,0xb9,0xd9, +0x70,0x97,0x18,0xe0,0x81,0x7e,0x16,0x0e,0xcc,0x24,0x86,0x78, +0xa0,0x8f,0xfe,0x30,0x8b,0x68,0xe1,0x81,0x2b,0xac,0x60,0x81, +0x4f,0x49,0x3b,0xf6,0x5e,0x64,0xfb,0xce,0x75,0x9d,0xab,0x3d, +0x4f,0xe5,0xdb,0xa2,0x08,0x5c,0x78,0x0c,0x65,0x27,0xe3,0xcc, +0xf9,0xd6,0xd3,0x7d,0x67,0xfa,0xce,0x70,0xfa,0x78,0xd9,0x02, +0x2e,0x6b,0x8b,0x33,0x4c,0x84,0x19,0x9b,0xff,0x53,0xbc,0xdd, +0x17,0xa6,0x76,0x8b,0x53,0x2f,0x51,0x74,0x1e,0x07,0xf3,0x08, +0x24,0x62,0xd8,0x65,0x68,0xef,0xc0,0xed,0xf7,0x61,0x56,0x1b, +0xce,0xba,0x01,0xab,0xdb,0x71,0xf5,0x6d,0x83,0x6d,0xb8,0xf3, +0xb6,0xe1,0x36,0x45,0x91,0x82,0x1d,0x38,0xdb,0x12,0x66,0x6f, +0xc4,0x55,0xe6,0x50,0xb8,0x17,0x03,0x30,0x51,0xd3,0xf4,0x16, +0x6e,0x1b,0x84,0x6d,0xc2,0x0c,0x94,0xe1,0x47,0xac,0xdc,0x42, +0x06,0xd3,0x99,0xc6,0x54,0xca,0x3c,0x5e,0xdd,0xec,0x62,0x5f, +0x4f,0x83,0x84,0xbf,0x92,0xb7,0x8a,0xc0,0xfb,0x27,0x3c,0x24, +0xb0,0x0e,0xe1,0xff,0x1d,0x1e,0xd2,0x14,0xfa,0x22,0x55,0x8a, +0xbb,0x7f,0x26,0x6f,0x85,0x0f,0x84,0xb7,0xc9,0x0e,0xdc,0x79, +0x83,0x85,0x9d,0x38,0x9e,0x6c,0xc4,0x9d,0xf7,0xd9,0x3e,0xbc, +0x45,0x70,0xdd,0x5d,0x58,0xc7,0xf4,0x6f,0x26,0x77,0x61,0xcb, +0x66,0x16,0x43,0x2c,0xc9,0x1a,0x5c,0xf7,0x25,0x0b,0xfe,0x53, +0x61,0xcb,0x1a,0xdc,0xc2,0xa8,0xfc,0x53,0x57,0x50,0x23,0x58, +0x06,0x0c,0x1c,0xeb,0xc2,0x63,0x30,0x0a,0x72,0xba,0x70,0x15, +0x93,0x55,0x96,0x55,0x97,0x54,0x64,0x9c,0xc9,0x47,0xba,0x1f, +0x30,0x3f,0xe4,0xcc,0x89,0x6f,0x99,0x42,0x3c,0x8e,0xc2,0x68, +0x53,0x88,0x46,0x06,0x63,0x8d,0x81,0x67,0x0e,0xe0,0xd4,0x75, +0xa8,0x8a,0xef,0x2d,0xaf,0xb6,0xe0,0x9f,0x5d,0xbb,0xfe,0xa4, +0xf1,0x29,0x07,0x6b,0x71,0x23,0x1e,0x37,0x12,0x8a,0x7b,0x31, +0x08,0x36,0x82,0x73,0xb7,0xb8,0x8c,0x49,0xa9,0x8c,0xaf,0x8c, +0x2d,0xe3,0x84,0xf9,0x8c,0x38,0x41,0x58,0x46,0x42,0xca,0xfd, +0x2b,0x03,0x73,0xcd,0x7c,0xf9,0x6c,0xef,0x2c,0x2f,0xb9,0xb7, +0x74,0xd7,0xd5,0x2d,0x29,0x49,0x18,0xa1,0x58,0x71,0xfb,0xb5, +0x6f,0xce,0xff,0xdd,0x8a,0x5b,0xa5,0x72,0xc5,0x4d,0x05,0x06, +0x69,0x84,0x7c,0x43,0x77,0x82,0xff,0x33,0x5d,0x46,0x5f,0x13, +0xfa,0xf7,0x74,0x99,0xf4,0x1a,0x45,0xba,0xec,0xf1,0x9f,0x96, +0x4a,0x23,0x64,0x8a,0x44,0x77,0xea,0x20,0x40,0x2a,0x0a,0x53, +0x68,0x06,0xfb,0x71,0x32,0x6a,0xb1,0x47,0xb7,0x46,0xae,0x0d, +0xdf,0xc1,0x81,0x1f,0x73,0x1a,0xa7,0xc7,0xe0,0x87,0xd1,0xdb, +0x39,0xd3,0xa3,0xa1,0x51,0x56,0xd3,0x77,0x30,0x54,0x2a,0xdd, +0x64,0xae,0x16,0xe5,0xdc,0x4a,0xd2,0x48,0xf9,0xea,0x02,0xa8, +0x4b,0x69,0x78,0x0f,0x26,0xae,0xfa,0x42,0xef,0xd9,0x32,0x0e, +0x9a,0x29,0x0c,0xc6,0x56,0xc5,0x76,0x9f,0xa5,0x2e,0xeb,0x40, +0xdf,0x98,0x6f,0x06,0x9e,0xf4,0x8d,0xd6,0xcc,0x71,0xcd,0xe8, +0x4f,0x22,0xe9,0x1b,0x63,0x18,0x54,0x3b,0x8a,0x1f,0x44,0x6d, +0x54,0xb7,0x38,0x12,0x14,0x69,0x2f,0x2d,0x47,0x19,0xcb,0xbe, +0x60,0xae,0x94,0xe5,0xdd,0x4e,0xd4,0x48,0x7e,0x16,0x07,0xd3, +0xc0,0x42,0x0d,0x35,0xd6,0x11,0x47,0x5b,0x03,0x5b,0x43,0xaf, +0x42,0x07,0x7e,0xb0,0x7c,0xa8,0xb5,0xbe,0x85,0x13,0x8b,0x70, +0x26,0xb9,0x53,0x79,0xbf,0xb7,0xa3,0xc3,0xad,0x94,0x37,0xb7, +0xdc,0x6e,0xa1,0xe9,0xc1,0x09,0x6d,0xd1,0xc4,0xcc,0x40,0xd3, +0x60,0x8b,0x63,0x81,0x3d,0x7f,0xaf,0xfe,0xc1,0xe5,0xf6,0x21, +0x4e,0x1c,0x55,0x44,0xf4,0x74,0x57,0xeb,0xac,0x70,0xc8,0xb3, +0xe5,0xbf,0x6b,0x7a,0x71,0xb3,0xef,0x12,0x1d,0xa7,0xe7,0x23, +0x2b,0x82,0x12,0xcd,0x8d,0x50,0xee,0x93,0x56,0xe8,0x05,0x15, +0x43,0x50,0xc1,0x0b,0xd4,0xa9,0x6d,0xdf,0xac,0x80,0xd4,0x2b, +0x56,0x40,0xca,0xf0,0x6d,0x25,0xd0,0xb7,0x2a,0x56,0x52,0x14, +0x0b,0xee,0x69,0xd2,0x82,0xfb,0x05,0x21,0x84,0x38,0x6b,0x7f, +0xa2,0x8b,0xef,0x29,0x4b,0x17,0xd6,0x65,0x2a,0x4a,0x17,0x96, +0xb7,0x62,0xd9,0x9b,0xd2,0x85,0xb1,0x4c,0xe5,0x6a,0x98,0xba, +0x0b,0x34,0x8c,0xf3,0x3b,0x79,0x9c,0xd7,0xff,0xe1,0x90,0xf5, +0x4d,0x0e,0x6c,0x30,0x9f,0x88,0x7e,0x38,0x87,0xc1,0x95,0xc1, +0xca,0x32,0x84,0xcd,0xb6,0x17,0x7f,0x29,0x06,0x95,0x24,0x18, +0xab,0x2a,0x6c,0x55,0x94,0x21,0xc4,0x7f,0xdf,0x87,0x7f,0x33, +0xe2,0xdb,0xe8,0x48,0xce,0x14,0x9e,0x2e,0x38,0x9d,0xcf,0xc1, +0xbf,0xd7,0x31,0xd8,0xa9,0x28,0x42,0x78,0xc7,0xa6,0x1f,0x0a, +0xc5,0xdd,0x58,0xc8,0x0a,0x2a,0x70,0x88,0xe0,0x14,0xbc,0x03, +0x53,0x28,0x48,0x26,0x0a,0xaa,0x24,0xf4,0x70,0xc8,0x91,0x90, +0x23,0xd4,0x04,0x7e,0xe9,0x9d,0xab,0x70,0xa4,0x0f,0x8d,0xfe, +0xa0,0xfc,0x45,0xda,0xbd,0xae,0xe4,0xbb,0x89,0x95,0xc9,0x15, +0xb4,0x5b,0x15,0x1f,0x29,0x21,0xb2,0x29,0x55,0xca,0xe3,0x0d, +0xb0,0x03,0x05,0x32,0x1a,0x8f,0x57,0x13,0xe7,0x53,0x2e,0x7f, +0xdd,0x05,0x62,0x70,0x01,0x56,0x27,0x70,0x7a,0x03,0x97,0xd9, +0xca,0x33,0x65,0xff,0xfd,0x2e,0x10,0x0d,0xdb,0x5f,0xd9,0x5e, +0xe9,0x2e,0x90,0x67,0x06,0x2c,0x3e,0x9b,0xfb,0xe6,0x07,0x7b, +0x02,0xcf,0x14,0x37,0x7c,0x4c,0x50,0xde,0xf0,0xf1,0x91,0x74, +0xc3,0xc7,0x67,0x23,0x37,0x7c,0x1c,0x52,0xde,0xf0,0x71,0x33, +0xee,0xa7,0xc4,0x5b,0x29,0xdc,0xaa,0x4e,0x61,0x69,0x31,0x0b, +0x7f,0xfc,0x97,0x1b,0x3e,0x3e,0xff,0xef,0x37,0x7c,0x7c,0x21, +0xdd,0xf0,0xf1,0x94,0xcd,0x3e,0x97,0x79,0x2e,0xf3,0x3c,0x27, +0x7e,0xa6,0xb8,0xe5,0x83,0xdf,0xc5,0xc2,0xbd,0xa9,0xf8,0xfe, +0x75,0xaa,0x64,0x44,0x6b,0xc5,0x2d,0x1f,0xfc,0x4e,0xfa,0xe8, +0x33,0xb2,0x13,0xdf,0xff,0x8c,0xc5,0xdb,0xd2,0x2d,0x1f,0xbc, +0x0e,0xe3,0x74,0xd4,0x5a,0x71,0xcb,0xc7,0xed,0x07,0x04,0xde, +0xd7,0x62,0x6c,0x47,0x6e,0xf9,0xf8,0xa7,0x1e,0x0d,0xcb,0x62, +0xe8,0x0d,0x61,0x2d,0x74,0x60,0x38,0x13,0x9f,0x13,0x9f,0x17, +0x97,0xa7,0x1f,0xcf,0x1f,0xf5,0x8d,0xde,0x1f,0x75,0x80,0x43, +0x5d,0xb1,0x56,0x70,0x62,0x16,0x9f,0x34,0x3d,0xec,0xa1,0xee, +0x11,0x13,0x11,0x6e,0x37,0xdd,0x10,0x56,0x18,0xe2,0xdb,0xd4, +0x64,0xe6,0x19,0xe2,0x3c,0x2a,0x90,0xde,0x36,0x44,0xa7,0xbe, +0x26,0xf8,0x8c,0x49,0x34,0xa7,0xb6,0x7b,0xb3,0xa0,0x70,0x28, +0x45,0x23,0xa1,0xe1,0xec,0x65,0x50,0x57,0x13,0x5d,0x6e,0x0b, +0xa1,0x8c,0xf8,0xcb,0x10,0xf1,0x08,0xa7,0xd4,0x57,0xda,0xfa, +0x30,0x22,0xaa,0xfe,0xbe,0xf9,0x21,0xc4,0x2c,0xcc,0x4a,0xb2, +0x36,0xc5,0xe6,0x87,0xbf,0x36,0xd5,0xbe,0xfa,0xdb,0xde,0xa8, +0x6a,0xc5,0xde,0x28,0x37,0xe1,0x2d,0xb2,0x0d,0x5f,0xdf,0x66, +0xe1,0x35,0x1d,0xce,0x4d,0xf8,0xfa,0x1e,0x2b,0x11,0xeb,0xb9, +0x0a,0xca,0xea,0x2d,0x6d,0x45,0x02,0xb6,0x17,0x59,0x65,0xf0, +0x50,0x31,0xa2,0xb6,0x2c,0x01,0x94,0xad,0x12,0xa0,0xea,0xa8, +0xd4,0xf8,0xd3,0x96,0x75,0x25,0x5b,0x1e,0x49,0x8d,0x28,0xa5, +0x06,0x77,0x4b,0x70,0x24,0x78,0x4d,0x88,0x84,0x6b,0xd2,0xca, +0xdc,0x34,0xf2,0x48,0x18,0xb7,0x96,0x15,0xc7,0xe1,0x74,0xf2, +0x8d,0x30,0xee,0x63,0x16,0xf3,0xa5,0xf5,0x8f,0x69,0xa8,0x22, +0xc1,0xc2,0x4b,0xa6,0x29,0x23,0xb5,0x51,0x43,0xd0,0xc4,0x24, +0x73,0x16,0x9a,0xa6,0x82,0x97,0xc8,0xe3,0x44,0xe9,0x0e,0xba, +0x5f,0x99,0xe6,0x74,0xe5,0xbf,0xe4,0xb3,0xf0,0xd1,0x16,0x62, +0x6f,0x61,0x62,0x67,0xe4,0x55,0x64,0xc3,0x0f,0x54,0x0d,0xb4, +0xd6,0xb5,0x73,0x62,0x10,0x6a,0x90,0x8b,0x15,0x97,0xba,0x1a, +0x5a,0x3c,0xaa,0x79,0x5b,0x4b,0x3d,0x6b,0x03,0x6f,0x0e,0xb4, +0x0e,0x10,0x73,0xc3,0xed,0xc6,0x3b,0x5c,0xf3,0xac,0xf9,0xcf, +0x6b,0x6e,0xf7,0x77,0x0d,0x71,0x50,0x5a,0x41,0xcc,0x8d,0xf6, +0x9a,0xec,0xf5,0xc8,0xb7,0xe6,0x3f,0xab,0xfe,0xac,0xb7,0x6d, +0x80,0x3a,0xee,0xaf,0x52,0x89,0xcd,0xf1,0x7d,0x77,0xc1,0x48, +0x2a,0xb1,0x69,0xbb,0x79,0x40,0x18,0x8f,0xc9,0xd7,0xa1,0xa5, +0x73,0x25,0x5b,0xd0,0xe8,0x98,0x65,0x9e,0x61,0x9f,0xa4,0xba, +0xdf,0xb6,0x71,0xa4,0xc4,0xa6,0x9d,0x54,0x62,0xb3,0xce,0x0c, +0xea,0x76,0x31,0xd8,0x80,0x07,0x95,0xe4,0x51,0x52,0x82,0x3f, +0xf6,0x7e,0xf4,0xa7,0x5f,0x48,0xcb,0x30,0xfb,0x22,0x9d,0x95, +0x3a,0xb0,0x42,0xa9,0x03,0x15,0x7e,0x71,0xef,0x4f,0x4a,0x45, +0x03,0xa3,0x42,0x07,0x96,0x43,0x20,0xd9,0x82,0x46,0x9f,0xb3, +0x70,0x5a,0xaa,0xb8,0x69,0xbb,0x85,0x15,0x4d,0x2d,0x09,0x18, +0x6d,0x46,0x23,0x06,0x4e,0x4f,0xbd,0x4b,0x1b,0xc4,0x7a,0x8d, +0x54,0xdc,0xf4,0x31,0x15,0x7c,0x70,0x39,0xee,0x65,0xd3,0x8d, +0x65,0xf0,0xf1,0x9f,0x15,0x37,0xa7,0x76,0xb1,0x62,0xb7,0x54, +0x71,0xd3,0xa7,0xdd,0xb3,0x59,0xaa,0xb8,0x69,0x55,0x6e,0x5e, +0x62,0x99,0xc7,0xa9,0x0c,0x1b,0xe4,0x11,0x90,0x41,0x68,0x07, +0x86,0xfe,0x0e,0x41,0x1d,0x18,0xf4,0x1b,0x9c,0xec,0xc4,0x08, +0x36,0xb3,0x2c,0xb5,0x22,0xb9,0xd2,0x38,0x9e,0x8f,0x74,0x0d, +0x75,0xf2,0x77,0xe6,0xd0,0x8d,0x49,0x2d,0x96,0x97,0x26,0x57, +0x9a,0xa6,0xf0,0x07,0x36,0x3a,0x6d,0x35,0xd2,0x3a,0x15,0xcf, +0x7b,0xbe,0x59,0x5f,0xfa,0xad,0x77,0xf6,0xdf,0x24,0xae,0xb4, +0xec,0xb9,0xef,0xcd,0xb2,0xa7,0x92,0x15,0x97,0xfe,0xc5,0x8a, +0x95,0x2b,0x4c,0x12,0x8b,0x4f,0x3b,0x9e,0xc5,0x67,0x79,0xc8, +0xd3,0x92,0x52,0x13,0xe4,0xaa,0xa2,0x63,0x6f,0xab,0x90,0xdd, +0xcd,0x6e,0x1d,0xce,0x22,0x38,0x15,0xdd,0x61,0xb5,0x01,0x65, +0xb2,0xd6,0xd2,0xc5,0xb0,0xda,0xc2,0x23,0x2a,0x41,0xc5,0xf3, +0xa2,0x03,0xf9,0x0d,0xbc,0x66,0xb3,0xe8,0x85,0x4b,0xc9,0xef, +0xe0,0x35,0x8b,0x35,0x1f,0x43,0x51,0xdd,0x0b,0x64,0xd4,0x1e, +0x27,0x0b,0xff,0x26,0xf2,0xb0,0xf4,0x80,0xc4,0x20,0x0e,0xc7, +0xdb,0x82,0xa5,0x09,0x6a,0xda,0x82,0xa6,0x76,0xff,0x25,0xd8, +0xdc,0x84,0x9b,0xbb,0xc1,0xb0,0x09,0x65,0x8c,0x3c,0x3d,0x29, +0x33,0x21,0xc3,0x32,0x95,0x07,0xd2,0x84,0xa6,0xdd,0xb0,0xa1, +0x09,0x37,0x74,0x19,0x98,0xe2,0x3a,0x5b,0xa0,0x12,0xc6,0xd1, +0x16,0x26,0x33,0xf0,0xd2,0x88,0x14,0x87,0x16,0x85,0x14,0x06, +0x1d,0xb2,0x73,0x77,0x36,0x76,0xac,0x76,0xe4,0x7b,0xea,0xaa, +0x1a,0xf2,0xda,0x4b,0x0e,0x15,0xf9,0x15,0x1d,0x2c,0xad,0xe3, +0x3d,0x8b,0xdc,0xf3,0xdd,0x72,0x93,0xeb,0xe2,0x9a,0xcf,0x76, +0x73,0x3f,0x52,0x70,0x9a,0x1c,0x8f,0xa3,0xbb,0xf7,0x16,0xbb, +0x34,0x9f,0x49,0x6a,0x2b,0x82,0xb1,0xbc,0x6d,0xce,0x7e,0x7c, +0x57,0xe6,0x34,0x14,0x79,0x1f,0xf6,0xa8,0xe1,0xa2,0x78,0xe6, +0x6b,0xe3,0xc5,0xec,0x29,0x1c,0x6d,0x01,0xa3,0xd8,0x53,0xf6, +0xc7,0x5c,0x0f,0x7b,0x1e,0x94,0x1f,0x4c,0x39,0x98,0xcc,0x89, +0x8c,0x11,0x69,0x4a,0x8f,0x4c,0x0f,0xc9,0x0e,0x95,0xab,0x82, +0x09,0x13,0xe5,0x17,0xe1,0x7f,0xc8,0x97,0x13,0x6e,0x8b,0xef, +0x93,0x0e,0xf1,0xad,0x01,0x65,0xda,0x3b,0xf6,0xc9,0x85,0x80, +0x76,0x3e,0x18,0xf5,0xb1,0x59,0x91,0xf6,0x36,0xfb,0x33,0xed, +0x6d,0x28,0xb2,0xe6,0x02,0xab,0x2d,0x6e,0x33,0x15,0xb6,0x6d, +0xfa,0x4f,0xe6,0xf4,0x40,0x58,0xd3,0x25,0xae,0xa1,0xcc,0x09, +0x7e,0x1a,0x9e,0x49,0xb0,0x14,0x4e,0xef,0x60,0x4f,0x7c,0x34, +0xff,0xd4,0xb2,0xe9,0x67,0x4d,0x60,0xfb,0x59,0x38,0x14,0x07, +0x5b,0x12,0x55,0xa5,0xd2,0x57,0xee,0x6f,0x4a,0x5f,0x95,0x62, +0xe2,0x20,0xf4,0xb4,0x63,0x8f,0x54,0xfa,0xaa,0xc6,0x02,0x6a, +0xf4,0x18,0x2c,0xc1,0xb3,0x0a,0xf3,0x55,0x90,0xd0,0xdf,0xfa, +0x66,0xff,0x6d,0xc3,0xe1,0xf9,0x37,0xf2,0xf9,0xbf,0x6e,0x38, +0x7c,0x28,0xc1,0x55,0xc3,0x1b,0x03,0xa6,0xda,0x07,0x72,0x29, +0xcb,0xda,0x85,0x46,0xd7,0x59,0x38,0xb1,0x8b,0x86,0x4e,0xdb, +0x5d,0xac,0x68,0x68,0x4b,0x0d,0x58,0x53,0x32,0xe0,0x13,0x53, +0x6f,0x81,0xad,0x26,0x7b,0x78,0x06,0xd1,0x3d,0xb1,0xe7,0xc4, +0xee,0x93,0xdc,0x75,0x30,0x62,0xa5,0xf2,0x57,0xc9,0x11,0x89, +0x11,0xaa,0xeb,0x36,0x11,0x7d,0xd1,0xdd,0x4c,0x70,0xc7,0x19, +0xb8,0x55,0x51,0xf3,0x6a,0xe1,0x9f,0x35,0xaf,0xd4,0x3b,0x51, +0x7d,0x80,0x15,0x57,0x8d,0xd4,0xbc,0xaa,0x53,0xd6,0xbc,0xb2, +0xad,0x52,0xd4,0xbc,0x5a,0x3a,0xfc,0x05,0xa1,0x06,0x39,0xc6, +0x08,0xc6,0x50,0x0c,0x72,0x08,0x73,0x08,0x57,0x34,0xb5,0x7a, +0xa4,0xa9,0xe5,0x73,0x94,0x5c,0x46,0x89,0x41,0xfd,0x6c,0x6e, +0x42,0x5e,0x62,0x6e,0x62,0x4c,0x0f,0x1f,0x10,0x1d,0x10,0x73, +0x28,0x86,0x83,0xd0,0x2f,0x7a,0xd7,0x83,0x1e,0x2b,0x4c,0xa4, +0x0c,0x16,0xfa,0x30,0xc7,0x12,0xbc,0x30,0xbd,0x91,0xf5,0xd2, +0x5e,0x63,0x83,0x5b,0x6d,0x33,0x8d,0x79,0xf8,0xb8,0x01,0xb8, +0x81,0xcc,0x27,0x54,0x4b,0x65,0xac,0x84,0x0f,0xf4,0x60,0x83, +0x4d,0x56,0x0f,0x8f,0x7a,0x2d,0xb3,0xbb,0xbc,0xaf,0x73,0x90, +0xe9,0x4c,0xe0,0x05,0x96,0x59,0x42,0x00,0x36,0xb3,0x5a,0x50, +0x49,0xec,0xdd,0xb4,0xbd,0x76,0xf9,0xe6,0x3a,0xf0,0x57,0xf2, +0xaf,0x97,0xb5,0xd4,0x70,0xf8,0x53,0x19,0xd9,0xe7,0xb2,0xd7, +0x45,0x5b,0x7a,0x76,0x29,0xff,0x4a,0x75,0x73,0x9d,0x84,0x57, +0xae,0xe4,0x56,0xde,0xe5,0xca,0xce,0x06,0x9f,0x6a,0xde,0xc2, +0x69,0x8f,0xeb,0x6e,0x7f,0x0e,0x67,0x3e,0x22,0xa6,0xd6,0x5a, +0x4e,0x9a,0xfb,0xf3,0x6d,0xf8,0xdb,0x25,0x9f,0xd5,0x75,0x77, +0x70,0x54,0x2c,0xfb,0x93,0xad,0x5a,0xb3,0xed,0x70,0xbc,0x4f, +0x26,0x05,0xcc,0x09,0xc5,0x30,0xaa,0xe5,0x8b,0xcf,0xb8,0x3b, +0xae,0x64,0xd6,0x42,0x54,0x31,0xc3,0xcd,0xfb,0xb2,0x2d,0x78, +0x58,0x57,0x03,0xef,0xf7,0xc3,0xa8,0xdf,0x39,0x71,0x11,0x7e, +0x4d,0xc9,0x55,0x1d,0x6c,0xfb,0x12,0xa6,0xc2,0xe4,0x7d,0xd5, +0x3c,0x25,0x44,0xe3,0x71,0xfd,0x26,0x3c,0xe0,0xc8,0xa9,0x08, +0x65,0xc3,0xcb,0x49,0x69,0x6a,0x49,0x66,0x41,0x76,0x56,0x70, +0x56,0x70,0x7a,0x70,0x61,0x19,0x1f,0x92,0x16,0x94,0x1a,0x98, +0x9a,0x99,0x99,0x9e,0x29,0xcf,0xf2,0xc8,0xe1,0x43,0x03,0x42, +0x02,0x03,0x83,0xfd,0xd2,0x0e,0xa6,0xf9,0x25,0x1f,0xf4,0xe2, +0xb3,0x23,0xb3,0xc3,0xb2,0x43,0x0f,0x06,0xfb,0x86,0xfa,0x44, +0x72,0xc2,0x7b,0xaf,0x9d,0x08,0x4e,0x66,0xf6,0x47,0xc7,0x16, +0x69,0x0c,0xc2,0xc7,0xd0,0xd0,0x0d,0xef,0x5a,0xb3,0x49,0x70, +0x43,0x86,0xbb,0xec,0x60,0x22,0x73,0x52,0x47,0x86,0x2a,0x0e, +0x30,0x81,0x39,0xa9,0x27,0xc3,0xf1,0x0e,0x30,0x96,0x39,0xb9, +0x5b,0x26,0x9a,0x32,0x27,0xaf,0xc9,0xe0,0xed,0x7a,0xea,0x97, +0x27,0x07,0x65,0xc0,0xd6,0x23,0xc7,0x9c,0xec,0xa9,0x8c,0xed, +0x4c,0xa8,0x48,0x53,0x0d,0xa8,0xb5,0x0d,0x34,0x8e,0x32,0x3e, +0xa6,0x9a,0x80,0xbd,0x32,0x47,0x7c,0xb7,0x13,0x1b,0x60,0x31, +0x13,0x6a,0xae,0xe7,0x8a,0x6b,0x82,0xd2,0x4d,0x79,0x30,0xca, +0xbb,0xd5,0x2f,0xa7,0x8a,0x44,0xa6,0xc7,0x68,0x67,0xfb,0xdd, +0x50,0x87,0x77,0x28,0xad,0x4f,0x6b,0xd0,0xe8,0x61,0xcd,0xe4, +0xb2,0xd7,0x6f,0xc3,0xd7,0xc4,0x2f,0xf2,0x60,0xd4,0x41,0x49, +0x88,0xfe,0xd0,0xbb,0x50,0xb1,0x3a,0x39,0xd7,0xe8,0x17,0x6a, +0xb5,0xd2,0xd9,0x49,0x17,0xc9,0x14,0xca,0xa9,0x92,0x2d,0x97, +0x52,0xe5,0x4b,0x24,0x53,0xb8,0x4d,0x59,0xbd,0x32,0xfd,0x56, +0x98,0x5c,0x90,0x5c,0x98,0x42,0x49,0x16,0xac,0x22,0x25,0xa9, +0x25,0x19,0x05,0xd9,0xd9,0x74,0x50,0x32,0x82,0x0b,0x4b,0xf9, +0xe0,0xb4,0xa0,0x34,0x3a,0x28,0x19,0x23,0x83,0x12,0x16,0x10, +0x1c,0x18,0x14,0xec,0x9b,0xe1,0x9b,0x76,0x50,0xee,0xe7,0xc9, +0x67,0x47,0xe4,0x84,0xe6,0x84,0xd0,0x41,0x09,0xf3,0x89,0xe0, +0x70,0x15,0xce,0x22,0x5d,0x42,0x99,0x29,0x2b,0x06,0x2d,0x23, +0xad,0xc2,0x36,0x2b,0x56,0xdc,0xb6,0x9c,0xb4,0x09,0xdb,0x2c, +0x59,0xc7,0x31,0xa6,0xe2,0xb6,0x2e,0xea,0x9b,0xcd,0xc2,0x3c, +0xe2,0x13,0xee,0x1d,0xa1,0xc8,0xb4,0x3d,0xe9,0x5b,0xa9,0x74, +0xaf,0x51,0x86,0x30,0x4a,0x91,0x5a,0x70,0x7c,0x93,0x5a,0xa8, +0x4a,0xfa,0x2f,0x7b,0x47,0x14,0xee,0x55,0x9a,0x5c,0x26,0xa7, +0x08,0xea,0x8f,0x84,0x98,0xc1,0xbf,0x3b,0x2d,0x04,0xfb,0xce, +0x4e,0xb3,0xdf,0x4c,0x67,0xe3,0x3c,0xfa,0x97,0xb9,0x59,0x87, +0x68,0xcf,0x0a,0xea,0x30,0x40,0x68,0xf0,0x7c,0x94,0xf6,0x65, +0x51,0x67,0xa9,0x47,0x0b,0x6f,0xe4,0xb5,0xf5,0x00,0x8e,0xf6, +0xe3,0x50,0xce,0xa2,0x77,0x38,0xce,0x76,0xc4,0x31,0xea,0x87, +0x6a,0xf6,0xb7,0xfa,0x96,0x99,0xfb,0xf2,0xc5,0xce,0x45,0x66, +0x99,0x0e,0x8d,0x79,0xfc,0xb1,0x88,0x63,0x91,0x47,0x23,0x5b, +0xac,0xf9,0xcb,0xa0,0x96,0x09,0x1b,0x4e,0xc3,0x19,0xee,0x67, +0xb1,0xa9,0x4f,0x68,0xfa,0xbc,0x9b,0x11,0x37,0x56,0x48,0x8b, +0x9f,0xe3,0xa5,0xc5,0xcf,0x79,0x58,0x23,0x1d,0x3c,0x9e,0x87, +0xe3,0x58,0x9c,0x47,0x21,0x69,0x1e,0x4e,0x42,0xfa,0x78,0x12, +0xb6,0x93,0xfe,0xc6,0x6b,0x8f,0x4b,0x07,0x2c,0x0b,0x79,0x1f, +0x93,0x3d,0x1b,0x0c,0x1d,0x28,0xd2,0x7c,0x38,0x3c,0x81,0x7c, +0x01,0xb1,0x9d,0x18,0x7b,0xd7,0x60,0x33,0x1e,0x36,0x83,0xc3, +0xeb,0x31,0xd7,0x54,0xf8,0x17,0x95,0x61,0xef,0x62,0x10,0x95, +0x61,0x6e,0x61,0xd2,0x32,0x4f,0xd4,0xf7,0x3d,0x8b,0x41,0x5f, +0x1f,0xf5,0xe7,0x1a,0xff,0x82,0x89,0xac,0x73,0xb8,0x53,0xa4, +0xe2,0x98,0x02,0x9d,0xae,0xc4,0x72,0x09,0x4a,0x96,0x48,0x3c, +0xe2,0xf6,0xc8,0xee,0x5a,0x85,0x08,0x4b,0xa3,0x22,0x0c,0x48, +0x28,0xb1,0x3d,0x6e,0x7d,0xc2,0xfa,0xe4,0x79,0x6a,0x1d,0x6f, +0xc7,0xbd,0x8a,0x7f,0x9c,0x7c,0xb2,0x9d,0xf7,0x38,0xee,0x72, +0xdc,0xe9,0x38,0xf7,0x08,0x46,0xb7,0xe3,0xe8,0x07,0x46,0x1b, +0x70,0x82,0x05,0x4c,0x60,0xc1,0x18,0x3f,0x20,0x70,0xa9,0x1d, +0x55,0xbf,0x81,0x09,0xed,0x38,0xe1,0x81,0xe1,0x06,0x64,0x2c, +0x80,0xf9,0x58,0x2a,0x77,0x9f,0x81,0x2f,0xa4,0x6d,0x5e,0x9e, +0x31,0x17,0x4a,0x34,0xe0,0x03,0xf0,0xee,0x7e,0x3d,0xc3,0x04, +0x0c,0xd8,0xf0,0xd9,0x6b,0x2c,0x71,0x89,0x7b,0xb6,0x74,0xbf, +0x4d,0xdd,0x93,0xbb,0x49,0x30,0x89,0x83,0xf7,0xf0,0x43,0x66, +0x57,0xd6,0xa1,0xeb,0xea,0xf0,0x1e,0x6d,0x8f,0xbc,0x49,0xe3, +0x47,0xd6,0x28,0x5d,0x26,0xad,0x6b,0x8f,0xcc,0xab,0x94,0x32, +0xba,0xdf,0xbb,0x51,0x91,0x48,0x99,0x6d,0xf4,0x1b,0xc6,0xb2, +0x4e,0xe1,0x4e,0x4a,0xf3,0xab,0xa0,0xe6,0x57,0x21,0x25,0x52, +0x16,0x4b,0x41,0xf3,0xf3,0x3f,0x51,0x7f,0x64,0xb7,0xf0,0xf0, +0x1c,0xd0,0x25,0xd6,0x39,0xfb,0xf2,0xdc,0xf3,0xea,0x0a,0xab, +0xca,0x4a,0xca,0x9c,0x2b,0x78,0x6f,0x0f,0x07,0x57,0xc7,0x03, +0x01,0x19,0xc1,0xe9,0xa1,0x99,0xf5,0x85,0x95,0x65,0x85,0xa5, +0xce,0xe5,0xbc,0x9f,0x8f,0x9b,0x87,0x93,0x6f,0x50,0x71,0x78, +0x71,0x74,0x89,0x59,0x24,0x5f,0x82,0xec,0x13,0x4a,0x12,0x2d, +0xe7,0x73,0x62,0x2f,0x26,0x90,0xd8,0xa2,0xd8,0x96,0xb3,0xc5, +0x1c,0x6c,0x02,0x7b,0x5c,0xcf,0xfc,0x76,0xa5,0xef,0x76,0xf1, +0x17,0x5c,0xa3,0x74,0x8d,0xcc,0x02,0x36,0xc2,0xc3,0xdf,0xd5, +0xd9,0xd5,0x33,0xdf,0xb6,0xd8,0x2d,0xc3,0x73,0x1f,0x5f,0x1a, +0x5c,0xe7,0x5b,0xe2,0xe7,0x76,0xc0,0xde,0xd7,0xc4,0x97,0x46, +0x9a,0xec,0x84,0xcc,0xc4,0x8c,0x44,0xce,0x1b,0x66,0x7e,0x88, +0x9f,0xb0,0x87,0xb7,0x47,0xef,0x8c,0xd0,0xe2,0xc0,0x90,0x39, +0xa9,0x7f,0xdc,0xe6,0x88,0x03,0xe7,0x7c,0x34,0x32,0xc6,0x79, +0xfa,0x2a,0x26,0x49,0x62,0x9f,0xd7,0x72,0x32,0x2e,0x26,0x69, +0xc4,0xb7,0xc7,0xde,0x3c,0xfd,0x9c,0x6b,0xe9,0x25,0x97,0x3b, +0x32,0xba,0x1e,0xa9,0x65,0x3e,0xa7,0x9c,0xcf,0x34,0x3b,0xb4, +0x45,0xbd,0x8e,0xa9,0x48,0x4a,0xa9,0xd4,0xb8,0xc2,0xda,0xc9, +0x65,0xab,0x3d,0x59,0xff,0x63,0xe7,0xb3,0x35,0x60,0x29,0x5a, +0xee,0x65,0xf7,0xc4,0x38,0x1a,0x39,0xa8,0xc3,0x03,0x3d,0x82, +0x43,0xd6,0x70,0x9a,0x09,0xb1,0xf4,0xb1,0xdb,0xe7,0xec,0x54, +0xe1,0x5d,0xed,0xd7,0x60,0xe3,0xc3,0xe7,0xd9,0x95,0x3a,0xd6, +0xba,0x38,0x7a,0x5b,0xf8,0xea,0x1e,0xca,0xb6,0xe4,0xaf,0xe5, +0xf5,0x15,0xb7,0x54,0xb5,0x3a,0xf7,0x79,0x5e,0xf1,0xcb,0x69, +0xe7,0xf5,0xb3,0x2d,0x0a,0xec,0x4b,0xda,0xdb,0x2a,0xfa,0x33, +0xaf,0x51,0x03,0x7b,0x41,0xa9,0x64,0x61,0x50,0x61,0x68,0x7e, +0x78,0x5e,0x2b,0x6f,0x97,0x65,0x5d,0x64,0x5f,0x5e,0x51,0x58, +0x54,0x52,0x58,0xe1,0x50,0xc5,0xfb,0xba,0x7a,0x7a,0x7a,0xf8, +0xb8,0x54,0x78,0xd6,0x06,0xd5,0x73,0x70,0xa2,0x1b,0xaf,0x30, +0xf1,0xf9,0x17,0x8a,0x62,0x4b,0x8c,0x2e,0xf0,0x47,0xdd,0x63, +0xbc,0xa2,0xf7,0x73,0x98,0x6c,0x02,0x51,0x8c,0x9f,0xad,0xb7, +0x93,0x8b,0xdb,0x81,0x72,0xe7,0x4a,0xef,0x02,0x47,0x27,0xbe, +0xd4,0xa7,0xd2,0x35,0xd7,0xcb,0xd5,0xc7,0xd1,0xd7,0xc6,0xb7, +0xd0,0x9c,0x2f,0xce,0x28,0x4c,0x2f,0xc8,0xe0,0xf0,0x3c,0x55, +0x52,0x3e,0x38,0x87,0x95,0xf6,0xa2,0xbf,0xc3,0x74,0xa7,0x64, +0xb5,0x6a,0x80,0x13,0x35,0x12,0xb1,0x17,0xf4,0x25,0x5a,0xac, +0x9c,0xf9,0x97,0xbd,0xf3,0x14,0x81,0x67,0xa6,0xd1,0x2b,0xea, +0xcf,0xfb,0xc2,0x9c,0xa4,0x6d,0x37,0x74,0xe6,0x13,0x2b,0x15, +0x33,0x5f,0xb2,0x50,0x9a,0xf9,0xbb,0x7f,0xa6,0x0a,0x29,0x1f, +0x4e,0x29,0x55,0xa4,0x36,0x7f,0x25,0x19,0xe6,0x35,0xe6,0xcd, +0xb6,0x1c,0x1e,0x61,0xea,0xea,0x2a,0x5a,0x0a,0x06,0x38,0xea, +0x6b,0xd5,0xe4,0x1b,0x78,0xf2,0x31,0x6b,0x31,0xe6,0x23,0x7c, +0xf2,0x23,0x9b,0x82,0x5b,0x89,0xb9,0xee,0x66,0xdd,0xad,0x4e, +0xa5,0xa6,0xfc,0xad,0xfa,0x2f,0xaf,0xf4,0x52,0xd4,0x09,0x3a, +0x49,0xba,0xad,0x2e,0x6a,0xb7,0xea,0x36,0x34,0xf3,0xb6,0xbd, +0xdb,0x6f,0x58,0xd6,0x50,0x28,0x2c,0x13,0x66,0x91,0x83,0x91, +0xbe,0x91,0xbe,0x51,0x23,0x99,0x24,0xa9,0x4d,0xb3,0x8c,0x7e, +0xa7,0x6d,0x72,0xfa,0xab,0x4d,0x15,0xca,0x36,0x2d,0x52,0x5a, +0x63,0xcb,0x48,0x30,0x2c,0x4a,0x2e,0x4c,0x2e,0x4a,0xe1,0x6a, +0x41,0x95,0xf4,0x37,0x54,0xd6,0xe7,0xd5,0xc4,0xc6,0xc7,0x9e, +0xbe,0x10,0x03,0x32,0x7c,0x87,0xaf,0xaa,0xc6,0x51,0xc0,0x45, +0x27,0x1e,0x39,0x13,0x19,0xa5,0x1a,0x1d,0x73,0xec,0xac,0x2c, +0xbd,0xf6,0x42,0xcb,0x03,0xb5,0x4a,0x13,0x0f,0x16,0x55,0x7d, +0x75,0x91,0x5d,0xad,0x2e,0xf8,0x7e,0x41,0xce,0x4b,0xbf,0x72, +0x18,0xd4,0x70,0x32,0x5f,0x56,0x87,0x93,0x61,0x7c,0x54,0xe2, +0xd1,0x33,0x91,0x91,0xaa,0xd1,0xd1,0xc7,0xce,0xc9,0xd2,0x6a, +0xe2,0x5b,0xef,0x2b,0x7f,0x85,0x3f,0xa4,0x8f,0xdc,0x0a,0xf5, +0x32,0xfb,0xbe,0x86,0x0a,0xfa,0x49,0xaa,0xf0,0x2e,0x38,0x90, +0x23,0xe6,0x11,0x16,0x41,0x8e,0x0d,0x41,0x7c,0x66,0x4b,0x72, +0x57,0x5c,0x3b,0x87,0x05,0xf1,0xe4,0xa8,0x79,0x84,0x61,0x90, +0x7d,0x43,0x38,0x9f,0xd9,0x9c,0xd4,0x1f,0xd7,0xcd,0xe1,0x82, +0x58,0x72,0xd4,0xec,0xb0,0x55,0xb0,0x4d,0x63,0x04,0x9f,0xde, +0x16,0xdf,0x11,0xdb,0xc1,0x61,0xca,0x79,0x72,0xd4,0x32,0xca, +0x3c,0xc8,0xb6,0x3e,0x94,0xfe,0xbf,0xc4,0x5e,0xfa,0xcc,0x57, +0x8c,0xa5,0x64,0x57,0x48,0x45,0xd9,0x20,0xac,0x7d,0x3d,0x19, +0xd7,0xb2,0x70,0xe3,0x2a,0xd1,0xd3,0x66,0xa2,0x3f,0x8d,0x3e, +0x15,0xa3,0x8e,0x5e,0x26,0xe0,0xc4,0xf8,0xcd,0xdc,0xb0,0x07, +0xb7,0x58,0x4a,0x08,0x6f,0xd8,0xf6,0xf3,0xf3,0x02,0x50,0xe5, +0xc0,0x93,0xb1,0x38,0x66,0x18,0x65,0xa9,0x6e,0x17,0x13,0x1a, +0x69,0x31,0x1d,0xd5,0xa5,0x3d,0xa0,0x30,0x9d,0xf9,0xa2,0x30, +0xfb,0x86,0x5c,0x23,0xe5,0x62,0xec,0xbd,0xd3,0x4f,0x39,0xcc, +0x63,0x4e,0xc7,0x7f,0x9a,0x90,0xa0,0xa6,0x02,0x3f,0xc2,0x01, +0xd2,0xf5,0x2a,0x89,0x8a,0x5a,0x75,0xb5,0xef,0xa0,0x97,0x3d, +0x8b,0x4c,0xea,0xbc,0x92,0xb5,0x5e,0x4e,0x4e,0x2e,0x96,0x6e, +0xe5,0x0e,0x7c,0x43,0x49,0x65,0x69,0x71,0x45,0xb6,0x7d,0x81, +0x4b,0x99,0x77,0x95,0x7b,0x4d,0xfc,0xf9,0x6e,0x39,0xac,0xe0, +0x2d,0x33,0xc3,0x70,0xad,0x67,0xb1,0x6f,0x75,0x40,0xb3,0x6a, +0xc7,0xad,0x92,0x2f,0xb2,0x1f,0x5b,0xa6,0xf1,0x21,0x9a,0x7e, +0xda,0xae,0x06,0x01,0x9f,0x45,0x3d,0x3a,0xf9,0x9c,0x03,0xe3, +0x2e,0x1d,0xa6,0xa4,0x6a,0x7f,0x8e,0x4b,0xb6,0x87,0x5c,0xd5, +0xc3,0xa9,0x38,0xbc,0xd2,0xaf,0x90,0x0a,0x8e,0x89,0x2f,0x4c, +0x16,0xa1,0x80,0xf3,0x19,0x54,0x89,0xc4,0x09,0x36,0x2b,0xd5, +0x0f,0x83,0x06,0xf1,0x8d,0x38,0xa0,0xdc,0x9c,0xf3,0xa2,0x77, +0x91,0x62,0xc6,0xe7,0x19,0xbd,0x54,0x24,0x72,0x9d,0x95,0x89, +0xdc,0xf2,0xc4,0xb2,0x44,0x05,0xfc,0x2d,0x95,0x50,0xe5,0xe6, +0x9f,0x33,0x5e,0x9c,0x5c,0x9c,0x52,0x2c,0xe7,0x60,0x19,0x94, +0x11,0x0b,0xd8,0xdf,0xce,0xe2,0x3e,0x7c,0x8b,0xa0,0x23,0x98, +0x83,0x23,0x8b,0xf3,0x71,0x19,0xf9,0xc7,0x2f,0x33,0x58,0x98, +0x80,0x4e,0xc4,0xb0,0x61,0x6f,0xa5,0x7e,0xbe,0x17,0x55,0x59, +0x07,0xae,0xbb,0x74,0x3a,0x4a,0x95,0x17,0x16,0x92,0xce,0x6b, +0xa5,0x5f,0xa7,0xde,0x36,0x49,0xe6,0x23,0x76,0x78,0x6e,0xb3, +0xd0,0xe1,0x84,0x22,0xd8,0x4c,0xea,0x0c,0x6a,0x37,0xe4,0xeb, +0x75,0x17,0xf2,0xde,0xd7,0x1c,0x6f,0x3a,0x0e,0x48,0x47,0xc0, +0x2d,0x89,0xeb,0x91,0xd8,0x72,0x0d,0x98,0x6b,0x88,0x2b,0x59, +0xfd,0xac,0x43,0x97,0xd5,0xc1,0x4e,0x99,0xd5,0xfd,0x81,0x35, +0x95,0xcb,0x90,0x63,0x55,0x84,0x7b,0xc3,0x6a,0x84,0xca,0x7a, +0xfe,0xc8,0x59,0x7b,0x20,0xb1,0xb2,0x83,0xac,0x43,0xc6,0x81, +0x16,0x75,0x08,0x66,0xea,0x93,0x93,0xca,0x35,0x2a,0x59,0x93, +0x64,0x99,0x39,0x3a,0xb3,0x87,0x0e,0xc7,0x65,0x69,0xe4,0xb1, +0xa0,0x17,0x7f,0xb2,0x11,0x75,0x62,0x64,0x3d,0x10,0xcb,0x1e, +0x3e,0x14,0x75,0x28,0x3a,0xa4,0x3d,0x88,0x97,0xe7,0xc9,0xcb, +0xe3,0x4b,0xb8,0x4a,0xbc,0xd4,0x0e,0xb9,0x4d,0x98,0xdb,0xa5, +0x4b,0x3b,0xe1,0x83,0xd4,0xde,0xbc,0xc2,0x70,0xb9,0x16,0xaa, +0xab,0xb7,0xd9,0xca,0x3e,0x83,0x79,0x19,0xb0,0x05,0x4e,0xaa, +0x01,0x95,0x9c,0x6f,0xe1,0x09,0x4a,0x7a,0x95,0x99,0xd7,0x88, +0xff,0x61,0xcd,0x28,0x72,0x5f,0xd4,0xff,0xbc,0xe9,0x40,0x31, +0x7e,0x15,0x4a,0xd2,0x2b,0x9c,0xc7,0x6d,0xa4,0xa9,0xa0,0xb5, +0xbe,0xa6,0xc9,0xa9,0x8a,0x77,0xb5,0xdf,0xe7,0xba,0xef,0x60, +0x50,0x63,0x44,0xf3,0xd1,0x56,0x0e,0x76,0x37,0x89,0x61,0xb6, +0xb0,0x89,0xb1,0x72,0xdf,0xe9,0xb5,0x5e,0x2a,0x2c,0xde,0x9a, +0xda,0x9a,0xd1,0x90,0x93,0x14,0x95,0x10,0x15,0x1f,0x69,0xb1, +0x4f,0xd3,0x79,0xfd,0xc1,0x4c,0x2b,0xfe,0x7e,0xc1,0x17,0x0d, +0x1d,0xf5,0x09,0xa1,0xf1,0x21,0x71,0xc1,0xbb,0xf4,0x57,0x58, +0x20,0xb7,0x4f,0x2a,0x57,0x2e,0xab,0x7b,0xde,0x35,0xd4,0xc3, +0x9d,0x0f,0x3c,0x13,0x10,0xa8,0x66,0x14,0x1a,0x6e,0xa1,0xbe, +0x8d,0x49,0xb6,0x92,0x5d,0x65,0x1e,0x17,0x54,0x7d,0xf9,0xdc, +0xfa,0xc5,0x8e,0x1b,0x1a,0x39,0xf2,0xac,0xb4,0xf4,0x0c,0x2e, +0x9b,0xc9,0xc4,0x59,0xb7,0x71,0x3e,0x4c,0x9c,0x57,0x56,0xcf, +0x1b,0xb6,0xda,0xf4,0xb8,0x0f,0x29,0xb2,0x75,0xf3,0xc8,0x9f, +0xca,0xed,0xcb,0xde,0x35,0xff,0x7f,0x94,0xdb,0x17,0x52,0xce, +0x53,0xd1,0x3d,0xa5,0x72,0x93,0xce,0x66,0x07,0x13,0x07,0xad, +0x05,0x46,0x38,0xdb,0x4c,0xba,0xc9,0x7e,0x7a,0x1b,0x8c,0xeb, +0xaf,0xfe,0x92,0x8b,0x65,0xca,0xd7,0xc1,0x82,0xbd,0x30,0xdf, +0x24,0xa7,0x83,0xc7,0x85,0xbd,0x38,0xa9,0xd7,0xea,0x06,0xa7, +0x8b,0x36,0x04,0xb5,0x2d,0x85,0x2d,0x6d,0x68,0x70,0xc7,0x98, +0xc1,0x0f,0xf0,0x0e,0xb9,0x98,0x35,0x94,0xdb,0x9b,0xdf,0xe9, +0xd7,0xe6,0x57,0x15,0x94,0x5f,0xc3,0x7b,0xa5,0x3a,0x65,0x3a, +0xa6,0x57,0x65,0x96,0x67,0x15,0x65,0xbb,0x97,0xf2,0x5e,0xfe, +0x0e,0x7e,0xd6,0x7e,0xa6,0xb9,0x66,0x59,0xce,0x49,0x07,0x5c, +0xf9,0xf2,0xc8,0xda,0xd0,0xfa,0x60,0xab,0x43,0x16,0x41,0x56, +0xe1,0x9c,0x60,0x37,0x9b,0x80,0xbf,0x01,0x6a,0x8a,0x6b,0x40, +0xd3,0x10,0xfd,0xc1,0x87,0x3d,0x16,0x78,0x34,0xe0,0xe8,0x21, +0x0e,0x43,0xf1,0xe9,0x20,0x54,0xc3,0x12,0x26,0xcc,0x26,0xc4, +0x26,0xd8,0xf1,0xe0,0x49,0xbf,0x93,0x01,0xa7,0xe2,0xcd,0xf8, +0x6f,0x2f,0xc0,0x64,0xf9,0xf3,0x94,0xc4,0xc0,0x84,0xc0,0x0b, +0x21,0x8d,0x39,0xfc,0xc1,0x4e,0x87,0x1b,0xee,0x4d,0x8e,0x41, +0x7c,0x4a,0xa0,0xdc,0x4f,0x7e,0xd0,0xea,0x88,0xe1,0x51,0xa3, +0xa3,0xa9,0xb5,0xa9,0x8d,0x29,0x0d,0x8a,0x7d,0xde,0x38,0x56, +0x5a,0xe0,0x7a,0x25,0x6d,0xc7,0xa8,0xd6,0x80,0x02,0xec,0x62, +0x63,0xb3,0x63,0xb3,0xce,0x67,0x52,0x94,0x59,0x34,0x7c,0x81, +0xdc,0xd1,0xdb,0x8a,0xb9,0x16,0xc2,0x3f,0xdb,0xd9,0xd7,0xe3, +0xf0,0xdf,0x8a,0x1d,0x2a,0xd2,0x09,0xb4,0x88,0x7f,0xf4,0xce, +0x50,0x2e,0xdd,0xc9,0x8c,0x68,0x84,0x94,0x8c,0xc5,0x5e,0x99, +0x41,0xae,0xa6,0xc6,0xa2,0xc8,0x20,0xbf,0xd9,0xe5,0xf5,0x66, +0x87,0x8a,0xbc,0x5a,0xca,0x20,0xd7,0xc3,0x4d,0x82,0x03,0x42, +0x3d,0x50,0x39,0x13,0x8e,0x29,0x04,0xbc,0x84,0xed,0xe8,0xc5, +0x8a,0x0c,0x6c,0x23,0x28,0x1d,0x2a,0x24,0x2c,0xc6,0xae,0x20, +0x6d,0x60,0x67,0xc9,0xc2,0x4a,0xdc,0x4b,0x44,0x39,0xc6,0x09, +0x72,0xc6,0x00,0x16,0x11,0x71,0x6e,0xaf,0x30,0x97,0x11,0xe7, +0xce,0x23,0xc2,0x5c,0x1d,0x71,0x2e,0x43,0x85,0xd2,0x32,0x32, +0x3c,0xa7,0xf3,0xf5,0x1c,0xc5,0xc2,0xe2,0x1c,0x22,0x81,0x91, +0x94,0x7e,0x08,0x97,0xb6,0xaf,0x28,0xe6,0x5a,0xd1,0xba,0x0b, +0x52,0xeb,0xc2,0xdf,0xb4,0x2e,0x59,0x6a,0xdd,0x9b,0x3d,0x68, +0x6f,0x08,0x66,0x79,0x4a,0x59,0x8a,0xb4,0x7b,0xe5,0xe7,0x41, +0x72,0x0f,0x4e,0x74,0xe0,0x89,0xbb,0x10,0x0b,0xe6,0x62,0x1b, +0x9a,0xc3,0x71,0xca,0xe0,0xcc,0xe1,0xf0,0x26,0x2c,0x35,0x13, +0xfe,0xdd,0xc9,0xd2,0x99,0xf8,0x07,0x99,0x89,0xa3,0x5e,0xb1, +0xb0,0x6a,0x2a,0x8c,0x99,0x89,0x63,0x18,0x58,0x3b,0xf5,0x15, +0x8c,0x9b,0xc9,0xe2,0x80,0x38,0x4f,0x51,0x1e,0x2b,0xb4,0xc0, +0x32,0x90,0x4f,0x3b,0x90,0xaa,0x28,0x8f,0x65,0x70,0x82,0x1a, +0x84,0x54,0x1e,0xab,0x26,0xa9,0xc8,0x24,0x95,0x8f,0xf2,0x0c, +0x54,0x94,0xc7,0xe2,0xcd,0xa0,0x7a,0x1d,0x9e,0x34,0x83,0x93, +0xd4,0x70,0x60,0x12,0x9c,0xed,0xc4,0xb3,0x0f,0xa1,0x9e,0x51, +0x11,0x86,0xcf,0x11,0x5c,0x60,0xdf,0x0d,0x2a,0x1a,0xa0,0x8b, +0x3c,0x1b,0xdd,0x41,0x59,0x76,0x98,0x4f,0xb8,0x2a,0xf8,0x7d, +0xd5,0xf3,0x89,0xe2,0x58,0xeb,0x42,0xe3,0x1f,0xf0,0x1c,0xeb, +0x12,0xea,0x1a,0xe6,0x26,0x65,0xad,0x4b,0x13,0x29,0x93,0xa2, +0xf1,0xad,0x6a,0x85,0xc4,0x17,0x6f,0x31,0x0d,0xa9,0x99,0x35, +0x1a,0x70,0x9d,0xcd,0x4f,0x2e,0x90,0xe7,0xcb,0x39,0xdb,0xc7, +0x38,0x95,0xc5,0x31,0xfb,0x9d,0x96,0xda,0xa8,0xe7,0xe9,0x7c, +0xdf,0x9e,0xd7,0x70,0xee,0xa9,0x6a,0x2c,0xb3,0x28,0xae,0x49, +0x07,0x96,0x4f,0x87,0x3f,0x14,0x3b,0x90,0x8e,0x0c,0x4f,0x24, +0xb7,0xc1,0xb2,0x1d,0x2d,0xef,0x19,0x6e,0x42,0x3d,0x0b,0xd0, +0xdb,0x86,0x07,0xcc,0x85,0x4f,0x3b,0x58,0xf1,0xf4,0x45,0xe2, +0xd5,0xe0,0xd4,0xbc,0xaf,0xca,0xd9,0x91,0xaf,0x76,0xae,0x72, +0x28,0xb7,0xe6,0xf2,0x51,0x93,0x78,0x36,0x38,0xb4,0x3a,0x96, +0xbb,0x38,0xf2,0x35,0x2e,0x35,0x0e,0x95,0x56,0x1c,0x7c,0x08, +0x1c,0xc9,0xf6,0xcc,0x70,0x4f,0xf1,0x69,0xa1,0x2a,0xaa,0x38, +0xb8,0xec,0x10,0x65,0x63,0x33,0xc5,0xad,0x04,0x82,0xda,0x31, +0xe8,0x21,0x98,0xb6,0xa1,0xe9,0x7d,0x70,0xeb,0x40,0x35,0x26, +0xb3,0x38,0xbd,0x32,0xb5,0xdc,0x22,0x83,0x0f,0x75,0x0d,0x70, +0xf0,0x75,0xe4,0xb0,0xc2,0x1c,0x1c,0x36,0xa2,0xae,0x25,0xe8, +0xae,0x43,0x4f,0x0b,0xf0,0x44,0xa6,0x9f,0x51,0x19,0x0e,0x18, +0x2e,0x20,0x3d,0x06,0xc6,0xb8,0xcb,0x4a,0xd8,0xd1,0xca,0xbe, +0x4e,0x11,0x09,0x81,0x1e,0x3a,0x28,0xdd,0xcc,0xd9,0xf4,0xd3, +0xf4,0x8b,0x83,0x4a,0xd8,0x89,0x4f,0xf1,0x5d,0x66,0xcd,0xb1, +0x4d,0x5a,0x6b,0xd5,0x1b,0xed,0x1b,0xba,0xb3,0x06,0xe2,0xfb, +0x54,0x21,0x1c,0x4c,0xc8,0x2a,0xf4,0xfb,0x9a,0x15,0x42,0x70, +0x0c,0x89,0xce,0x0b,0x2c,0x8d,0x48,0xb5,0x0a,0xa6,0x3e,0x90, +0xb6,0x3f,0xd1,0x9f,0x5b,0x88,0xe3,0x88,0x25,0x6c,0x58,0xd6, +0xff,0x2d,0xe8,0xb4,0xa1,0xce,0x65,0x70,0x6c,0x93,0x6e,0x13, +0xc9,0x4b,0x2b,0x4c,0xca,0xb5,0x4c,0xe5,0x23,0xf7,0x87,0x7a, +0xfb,0xbb,0x73,0x98,0x61,0x09,0x06,0x7b,0x19,0xcc,0x4d,0x23, +0x0b,0xd0,0xfc,0x27,0x16,0x3e,0x17,0x37,0x93,0xab,0xc2,0xa4, +0x0e,0x71,0xd2,0x25,0x16,0xa6,0x9e,0x83,0x49,0x71,0xdf,0xc6, +0x07,0x4a,0x07,0xaf,0xcd,0xb0,0xe7,0x18,0x46,0x4a,0xf9,0x8a, +0x5f,0x60,0xfc,0xe9,0xb3,0x30,0x56,0x43,0x57,0xe4,0xcd,0x05, +0x7e,0x8f,0xb8,0xcd,0x44,0xd8,0xf6,0xdf,0x0e,0x5e,0xaf,0xe9, +0xa6,0x82,0xe8,0xa6,0xb0,0x58,0xda,0xe4,0x14,0x26,0xc5,0x26, +0xff,0x27,0xbd,0x23,0x82,0x48,0x91,0x53,0x3c,0xcd,0xda,0x86, +0xda,0x86,0xd9,0x4b,0x67,0x0b,0x6b,0x13,0xeb,0x52,0xea,0x14, +0x1b,0xf4,0xde,0x56,0x6e,0x21,0x6a,0x49,0xcd,0x68,0x94,0x54, +0xbc,0xe2,0xee,0x02,0x3a,0x00,0xdf,0x0b,0x1a,0x04,0x92,0xba, +0xc4,0x21,0x53,0x38,0xb5,0x13,0x73,0x71,0x79,0xd7,0x41,0xd0, +0xec,0xc0,0xad,0x0f,0xa8,0x88,0xaf,0x1f,0x80,0x7a,0x08,0xde, +0x80,0x3a,0xe6,0xa0,0x97,0xd7,0x03,0xcb,0xb1,0x86,0xc1,0x6a, +0xec,0x24,0xb0,0xb7,0x03,0xf7,0x32,0xf0,0xc8,0x9c,0x28,0x8a, +0x9b,0x33,0xd8,0x22,0xc6,0x93,0x4e,0xc1,0xd0,0x6c,0x40,0xe0, +0xc5,0x01,0x91,0x67,0xe1,0x0c,0x7c,0x4a,0xd0,0xf8,0x3b,0x30, +0x66,0xfa,0x96,0x92,0xef,0xc0,0x72,0x29,0x8b,0x17,0xac,0xe9, +0x28,0x18,0xd3,0x51,0x38,0x33,0x15,0x2c,0x17,0xa0,0x25,0x75, +0xb9,0x2c,0x41,0x9d,0x1c,0x8a,0xf2,0x8b,0xf6,0x8f,0xa6,0x6c, +0xeb,0x5e,0xef,0x26,0x45,0x8a,0x5f,0xc2,0xde,0x38,0xaa,0x65, +0x9c,0x23,0xde,0x60,0x6f,0x92,0x42,0xcb,0x28,0xb0,0xf7,0x8e, +0x74,0xe4,0xba,0x56,0x03,0xfa,0xd8,0xfc,0xa4,0x82,0xa4,0xfc, +0x64,0xae,0x58,0x70,0x25,0xff,0x62,0xfb,0x84,0x67,0xb0,0x1f, +0x1a,0xd8,0xeb,0xd8,0x40,0xc0,0x4f,0x2c,0xa4,0x9a,0x24,0xc1, +0x54,0x06,0xa3,0x99,0x26,0x39,0xd5,0xb9,0xc3,0x3d,0x58,0xce, +0x62,0x0d,0xbe,0x43,0xee,0xc0,0xda,0xad,0x52,0x1d,0xc0,0x3b, +0xb0,0x69,0x2b,0x2b,0xc6,0xe2,0x44,0x72,0x1f,0xd6,0x6e,0x94, +0x9e,0xdc,0x87,0x4d,0x1b,0x59,0x1c,0x2d,0xb2,0x24,0xeb,0x70, +0xd6,0xe1,0xec,0xa3,0x59,0x6d,0xfc,0xee,0x34,0xed,0x02,0xd3, +0xd2,0xe6,0xca,0xea,0xba,0x9c,0x26,0xae,0x02,0x2d,0xd8,0xb8, +0xa4,0xd8,0xa4,0xf3,0x89,0x36,0x19,0x7c,0x80,0x89,0xf1,0xae, +0x1d,0x36,0xa5,0x8e,0x7c,0x41,0x66,0x5e,0x76,0x76,0x4e,0x86, +0x7f,0xce,0xa1,0xa2,0x43,0x06,0xee,0xbb,0x7c,0x76,0x07,0x67, +0x58,0xf2,0xd9,0xb1,0x39,0x17,0xb2,0x2f,0x70,0xe8,0xdf,0xd5, +0x02,0x87,0x59,0xf4,0x13,0xd4,0xc8,0x19,0xfa,0xe7,0xf4,0x19, +0x0e,0x56,0x31,0x81,0xde,0xfb,0x7d,0x5c,0x7d,0x3d,0x72,0x7d, +0x0a,0x02,0x0b,0x38,0x3b,0xb4,0x23,0x8d,0xe9,0xf5,0xd9,0x35, +0x79,0xd5,0x7e,0xf5,0x87,0x9a,0x83,0x38,0xf4,0x43,0x0d,0xf2, +0x1c,0x74,0x97,0xb0,0x2a,0xff,0xdc,0x2b,0x6c,0x22,0xad,0x5b, +0xd8,0x74,0xb8,0x2f,0xc3,0x93,0x36,0xa0,0xcf,0x1c,0xd7,0x96, +0xe1,0x0e,0x3b,0xd0,0x64,0x4e,0xe8,0xc9,0x70,0x8b,0x1d,0x6c, +0x64,0x8e,0xef,0x92,0xa1,0x1b,0xa5,0xd7,0x2b,0xaf,0xc0,0xc6, +0x66,0xdc,0xd8,0x62,0x8a,0xf6,0x34,0xe4,0x2d,0x9d,0x09,0x13, +0x4c,0x71,0x02,0xba,0x33,0x27,0xae,0xca,0x60,0x59,0x23,0xae, +0x60,0x4e,0x0c,0xc9,0x60,0x55,0x23,0x7e,0xc2,0x9c,0x6c,0x1d, +0x88,0xbb,0x99,0xd8,0x95,0xa9,0xea,0xdf,0xa8,0x17,0xb8,0x25, +0x7c,0xed,0x11,0x55,0x39,0xf6,0xc9,0xd6,0x5a,0x41,0x02,0xa3, +0xbb,0x77,0x8d,0x39,0x8e,0xdb,0x57,0x60,0xc5,0xc3,0x87,0x6d, +0xbf,0xdc,0xbe,0xf8,0x90,0x83,0x73,0xcc,0xa5,0xf5,0xbf,0x6c, +0x83,0xd9,0x16,0xf9,0xad,0x3c,0x4e,0xa8,0x5f,0xdb,0xae,0x73, +0x49,0x2a,0x2b,0x19,0x4d,0x3a,0xb0,0xf5,0x33,0xb6,0xed,0x5c, +0xcb,0xf9,0x8a,0xf3,0x01,0xed,0xfc,0xea,0x30,0x7c,0xff,0xd8, +0x1c,0x69,0x99,0xb2,0xf1,0x74,0xc7,0x99,0x8e,0xb3,0xdc,0x1e, +0xec,0x35,0x87,0xde,0x1d,0x8a,0x65,0xca,0xb5,0xff,0x69,0xbc, +0x5f,0x09,0xd3,0xba,0xc5,0x69,0x37,0x58,0xe5,0x62,0x6b,0xfb, +0x66,0x36,0x15,0x44,0x19,0x1e,0xb5,0x04,0x6d,0xe6,0x04,0xed, +0x8d,0xa6,0x35,0x6c,0x65,0x4e,0x6c,0x97,0x49,0x85,0xc6,0x37, +0x30,0x27,0x36,0xca,0xd0,0x03,0xfc,0x71,0xc5,0x65,0xd8,0xd0, +0x8a,0x1b,0x3a,0x8c,0xd1,0x15,0x56,0xe0,0xf6,0x05,0xf0,0x01, +0x15,0xa5,0xe8,0xca,0x9c,0xb8,0x4f,0xfb,0xd7,0x82,0x2b,0x99, +0x13,0x37,0x65,0xb0,0xba,0x05,0xd7,0x30,0x27,0x06,0xfa,0xe3, +0x6f,0x24,0xb5,0x65,0xa9,0x1e,0x6a,0x34,0x0a,0xd8,0x1c,0xb6, +0x3e,0x5a,0x35,0x0d,0x5f,0xc8,0xd6,0x59,0x50,0xb9,0x64,0xa2, +0xfb,0xb1,0x19,0x8e,0x77,0xcd,0x33,0xe3,0x61,0x76,0xdb,0x4f, +0xd7,0x2e,0x3d,0xe6,0xe0,0x2c,0x73,0x75,0xcd,0x6f,0xbb,0x60, +0xb1,0xa5,0x54,0x46,0x66,0x4c,0xe9,0x47,0xed,0x5a,0x57,0xb9, +0xfb,0x14,0x32,0x3a,0xf1,0xe4,0x53,0x9d,0x15,0x18,0x6c,0x06, +0xc1,0x2b,0xc4,0x49,0xa6,0xc2,0x24,0x9c,0x7b,0x11,0xe6,0x0a, +0x33,0xbb,0xc4,0x99,0x4f,0x59,0x95,0xe1,0xc5,0x34,0xc0,0xde, +0xd3,0xde,0x84,0x39,0xa6,0xc3,0x32,0xaa,0xc8,0x67,0xe1,0xbf, +0x94,0x4b,0x7a,0x12,0x49,0x90,0x34,0x83,0x04,0x1c,0x92,0x8e, +0x91,0xf2,0xd6,0x4e,0xca,0xe3,0x03,0x15,0x09,0x4a,0x1d,0x53, +0xaa,0xd0,0x31,0xf7,0x47,0x12,0x28,0x0a,0xd8,0x90,0x14,0xac, +0x30,0x17,0xfe,0x20,0xc1,0x6e,0x81,0xbe,0x3e,0xbe,0x15,0xde, +0x7c,0x79,0x71,0x7a,0x7e,0x46,0x25,0x45,0xe8,0xc3,0x24,0xdf, +0x37,0xd3,0x37,0xc3,0xbb,0xaa,0x80,0x0f,0x2e,0xf2,0x2f,0xf6, +0xcf,0xe5,0xe0,0xda,0x3c,0x92,0x9f,0x90,0x9b,0x90,0x95,0x78, +0xa0,0x8e,0x37,0xf7,0xd9,0xe9,0xbf,0x39,0x9c,0x43,0x1b,0x36, +0xea,0x64,0xd4,0xa9,0xa8,0x93,0x09,0x56,0x7c,0x4f,0x7c,0xbf, +0xbc,0x3d,0xf5,0x58,0x13,0xef,0x7b,0xd8,0xe7,0x88,0xf7,0x11, +0x0e,0x96,0xb2,0x69,0xe7,0xd2,0xcf,0xa7,0x9d,0x4f,0x5b,0x52, +0xb1,0x61,0x40,0xa7,0xba,0x9e,0x37,0xe9,0xf2,0xbc,0x19,0xfe, +0x25,0x27,0x16,0xe3,0x59,0x72,0x63,0x28,0xff,0xda,0xd9,0x7f, +0x70,0x43,0x8c,0xd5,0x09,0xad,0x63,0x5e,0xea,0xfe,0x27,0x0e, +0x1f,0xf5,0x9d,0x6e,0xcf,0x24,0x59,0xca,0x3a,0x99,0x46,0xca, +0xd1,0xe2,0x34,0x62,0x3b,0xce,0xdc,0x79,0xa8,0x86,0xfb,0xad, +0xbb,0x98,0x93,0x8b,0xfd,0x2c,0x8c,0xac,0x39,0xe8,0x02,0x6d, +0x82,0x27,0xba,0xe1,0x04,0x8b,0x06,0x38,0x48,0x52,0xd8,0x56, +0x43,0x2b,0x16,0x3f,0x0c,0x5e,0xb9,0x64,0x39,0x8d,0x9f,0x6d, +0x6d,0x25,0x6d,0xe9,0x5d,0xaa,0xc2,0xdb,0x38,0x7f,0x40,0x58, +0xa8,0xaf,0xc3,0xe0,0x1f,0x38,0x93,0xc4,0x16,0x9e,0x2d,0x3a, +0x5d,0xc2,0xc1,0x0f,0x2b,0xa9,0xd7,0xe7,0x09,0x3c,0xf1,0x8f, +0x52,0xee,0x0a,0x3e,0x2c,0x8d,0x97,0xb1,0x3e,0x1a,0x4b,0x1a, +0x4b,0x2e,0x29,0xfe,0x48,0xa5,0xc6,0x4a,0xa0,0x2a,0x8b,0x8e, +0x57,0xf9,0x42,0x65,0x32,0xbc,0x31,0x35,0x93,0x7a,0xfd,0x20, +0x5b,0x90,0x98,0x9f,0x58,0x90,0xcc,0x35,0xd1,0xe1,0xb2,0x15, +0x1e,0x35,0x61,0x46,0x27,0xb4,0xb4,0x60,0x4b,0x8f,0x9e,0x31, +0x56,0x58,0x43,0x85,0x19,0x0b,0xf5,0x2b,0x88,0x98,0x88,0xb3, +0x84,0x44,0xc6,0xe0,0x25,0x31,0x14,0x67,0xf7,0xb1,0x10,0x22, +0xc6,0x10,0xc8,0x6f,0xc1,0xfc,0x01,0xe6,0xda,0x99,0x2b,0x67, +0xfb,0xce,0xa6,0x46,0xca,0x23,0x93,0xa3,0xea,0x0b,0x78,0xc7, +0x0a,0xe3,0x6a,0x8b,0x22,0xeb,0x00,0x3e,0x2d,0x3a,0x2d,0x32, +0x2d,0x6a,0xd5,0x89,0x79,0x27,0xe6,0x9d,0x2c,0xcc,0x2e,0xcc, +0xce,0xcd,0xe1,0xe0,0x66,0x5e,0x0d,0x8c,0x7e,0x3d,0x0a,0x47, +0x57,0x1f,0x84,0xe5,0xcc,0xa1,0x43,0x3e,0x7e,0x9e,0x87,0x38, +0x6f,0xaf,0x53,0xfb,0xa7,0xc7,0xda,0x3e,0x3c,0xfd,0xf8,0xcc, +0xa3,0x33,0xaa,0x86,0x58,0x64,0x0d,0x45,0x3a,0x78,0xc7,0x6a, +0x78,0x4f,0x2b,0x5e,0x61,0x21,0x88,0xb2,0x13,0x31,0xae,0x45, +0x88,0xa3,0xe0,0x63,0x3f,0xbc,0x93,0xd4,0x58,0xd4,0x18,0x57, +0x19,0x7c,0x18,0x86,0x53,0x23,0x50,0xe5,0x70,0xf7,0x4f,0x1d, +0x30,0xa1,0x1a,0xde,0xd6,0xcb,0xe0,0x5d,0x50,0xa6,0x8d,0xea, +0x7a,0x73,0x0f,0x9d,0xf4,0xff,0x34,0xe0,0x54,0xac,0x1e,0x0f, +0x1f,0x5f,0x00,0xf7,0x74,0x58,0x9a,0x97,0xe6,0x93,0x4a,0xbf, +0x3a,0xcb,0x79,0xbd,0x57,0x3b,0x5e,0x6d,0x7f,0xca,0x89,0xeb, +0xf1,0x26,0xf1,0x0c,0xf7,0x08,0x77,0x57,0x1c,0x23,0x9f,0xd4, +0x87,0x93,0xfe,0x76,0xfc,0xe8,0x8c,0xb4,0x17,0xfb,0x7f,0x39, +0x7e,0xa4,0xd8,0xdb,0x9b,0xca,0xfd,0x26,0x6a,0x92,0x21,0x61, +0xbc,0xee,0x25,0x61,0xb9,0x78,0x42,0x5c,0xce,0x0a,0x7b,0x60, +0x98,0xe0,0x11,0x71,0x3c,0x1c,0xa1,0x70,0xf2,0x6c,0x78,0x23, +0xb1,0x11,0xee,0x34,0x63,0xc6,0x10,0x34,0x35,0x63,0x53,0x9f, +0xa1,0x21,0x16,0xd8,0x40,0x81,0x2e,0x2b,0x9a,0xc0,0x0a,0x32, +0x72,0x15,0x86,0x74,0x60,0xe1,0x6f,0x57,0x61,0x48,0x44,0x68, +0x99,0x32,0xc7,0xd4,0x98,0x96,0x59,0x27,0xc5,0x65,0x1a,0x95, +0x93,0x0a,0x92,0x63,0xba,0x79,0x3a,0xc5,0x74,0x92,0x29,0x97, +0x7a,0xd8,0xb3,0x0e,0xf4,0xd9,0xff,0x8f,0xb6,0xb7,0x8e,0xae, +0x22,0x7b,0xf6,0x47,0xb1,0x74,0x37,0x30,0x30,0xba,0x99,0x4e, +0x80,0x04,0x77,0x77,0xb7,0xa0,0x09,0xc4,0xdd,0x85,0xb8,0x13, +0x77,0x92,0xe0,0x16,0x77,0xf7,0xe4,0xc4,0xdd,0x3d,0x24,0x21, +0xb8,0xc3,0xa0,0xf3,0x05,0x06,0xc6,0x9d,0xea,0x33,0xd5,0xb9, +0xdf,0xb7,0x3b,0xcc,0x7c,0xef,0xfd,0xbd,0xfb,0xde,0x5a,0xef, +0x9f,0xc7,0x59,0xeb,0xa4,0x39,0xb6,0xab,0x6a,0x97,0x7c,0x6a, +0xf7,0xde,0x55,0x30,0x0f,0x05,0x62,0x09,0xe7,0x34,0x50,0x66, +0x2e,0x9f,0xd0,0x82,0x0d,0x43,0x70,0xac,0x8c,0xad,0xf0,0xcf, +0x2f,0x4d,0x97,0x25,0x97,0x2b,0xd6,0x8d,0x4c,0x37,0x15,0x5e, +0xb2,0x51,0x41,0xc7,0xfd,0x83,0x83,0xb8,0x68,0xbc,0x4d,0x86, +0x5f,0xb6,0x8f,0x2c,0x30,0x11,0xd2,0x0e,0xa3,0xa7,0x19,0x78, +0xa2,0xd2,0x02,0x36,0xcd,0x90,0xe6,0x0e,0x0d,0x19,0x19,0xd4, +0x72,0x3e,0xff,0xb6,0x95,0x15,0x1f,0x61,0x20,0x69,0x84,0xfd, +0x60,0x84,0x41,0x18,0xc5,0xc2,0x01,0xd0,0x23,0x0b,0xf0,0xf3, +0x5f,0x58,0x08,0xd3,0x26,0xa5,0x7e,0x15,0xae,0xb9,0xc7,0xaa, +0xcb,0x78,0x9f,0x22,0xa7,0x52,0x57,0x0a,0x46,0xff,0x9a,0x20, +0x37,0x21,0x4b,0xfb,0x60,0x3e,0x16,0x3d,0xd5,0xdc,0x82,0x49, +0x38,0xbf,0xef,0x7b,0x76,0x16,0x96,0x92,0x63,0xc1,0xc7,0x42, +0xbc,0x42,0x38,0xb0,0x79,0xd3,0xbf,0xfa,0x7f,0xac,0xd9,0x47, +0xb0,0xd6,0xfe,0x36,0x81,0xb6,0xa1,0xd2,0x9a,0x7d,0xca,0x68, +0xc9,0x2d,0x6c,0x1a,0x5d,0xb3,0x7f,0xf9,0xb7,0x32,0x3e,0x66, +0x4b,0xd2,0x8b,0x33,0x4b,0x32,0xb9,0x6f,0xf0,0x06,0x11,0xa2, +0x85,0x31,0xd8,0xc2,0xbc,0x2e,0xf8,0xa3,0xf6,0xb7,0x41,0xd7, +0x5a,0x5e,0xcd,0x4e,0xd5,0x65,0x87,0x07,0x07,0xe3,0x40,0xaf, +0x45,0xdc,0x66,0x0e,0x7b,0xf1,0x0b,0x76,0xb5,0xc7,0x52,0x9f, +0x45,0x81,0xa9,0xa6,0x7c,0x61,0x0c,0xb5,0xc9,0x68,0xee,0x77, +0x70,0x20,0x76,0x8e,0xba,0x0e,0x47,0x3c,0x0a,0xad,0xf9,0xa1, +0x92,0xbe,0xaa,0x96,0x7a,0x6e,0x2b,0xfa,0x92,0x61,0x61,0xe6, +0x61,0x56,0x9c,0x39,0xe7,0x9f,0x0b,0x1c,0x47,0x6e,0x0a,0x33, +0x0f,0xb0,0x62,0x2d,0x6a,0x93,0x97,0xd9,0xc0,0x56,0x5f,0xaf, +0x70,0x6e,0xe0,0x8d,0x3c,0x17,0x39,0x2d,0xf4,0xe3,0x04,0x95, +0x72,0xf2,0x3c,0xe8,0x47,0xc7,0x7b,0x2e,0x05,0x6d,0xfc,0xae, +0xf2,0x85,0x95,0xdb,0xd3,0xb8,0xa9,0x42,0x98,0x70,0x81,0xf4, +0x3e,0x05,0x25,0xb6,0xc8,0xbd,0xac,0xa8,0xa0,0x34,0xab,0x5c, +0x51,0xba,0xe3,0x9d,0xcc,0x44,0x27,0x46,0x27,0x5e,0x4a,0xb4, +0x88,0xe3,0x03,0x75,0x8f,0x59,0x99,0xda,0x72,0xf1,0x5b,0x7a, +0xdf,0xb5,0xa0,0x0c,0x7f,0x03,0x59,0x33,0x8b,0x8d,0x0b,0x3e, +0x1c,0xdc,0x97,0x52,0xe1,0x07,0x7d,0xbb,0xfe,0xb3,0xf8,0xf1, +0x61,0x29,0xee,0x1f,0xc3,0x4c,0x96,0x6e,0x4c,0x7f,0x58,0xfc, +0x78,0xf8,0x1f,0x47,0x56,0xfe,0xc1,0x91,0xc1,0x4c,0x61,0x0d, +0xd1,0xdb,0xd4,0xcb,0x42,0xdf,0x72,0x02,0x45,0x4d,0x58,0xc4, +0xa0,0x8a,0xd4,0x09,0x79,0xd3,0x10,0x2b,0xbc,0x40,0x6b,0x02, +0x5b,0xf1,0x05,0x6e,0x65,0xbf,0x83,0xa9,0x64,0xbb,0xf1,0x63, +0xaa,0x15,0xd3,0x46,0xff,0x2c,0x9c,0xb6,0x5d,0xff,0x31,0x2b, +0x2e,0xf2,0x25,0x7a,0x1b,0x7b,0x59,0xa1,0x5e,0xbc,0x41,0xf0, +0x53,0xe6,0x68,0x54,0x6c,0xb1,0x4a,0x2f,0x6c,0x86,0xb7,0x62, +0x1d,0xbe,0x85,0xf9,0x6c,0xb0,0xc1,0x6e,0x3b,0x5c,0x72,0x3c, +0x59,0x9f,0x87,0x45,0x29,0x30,0xa5,0x29,0xf7,0x27,0x0e,0x26, +0x68,0x33,0x7a,0xd9,0x5e,0xb7,0x94,0x61,0x36,0x53,0x97,0x96, +0x5e,0xa7,0x72,0x8d,0xd5,0xcb,0x50,0x38,0x08,0x6d,0xc4,0x50, +0xdc,0xd6,0xc5,0x0a,0xdb,0x96,0x10,0x23,0x71,0x5b,0x27,0xbd, +0x58,0x4a,0xf4,0xc4,0x6d,0xbd,0x34,0x55,0xb6,0x94,0xdb,0x92, +0x4c,0x97,0x4c,0xbb,0x34,0xc7,0xe6,0x2c,0x3e,0xbc,0x24,0xb4, +0x34,0xb4,0x88,0x83,0xa9,0x1d,0xa8,0xcb,0x24,0xe6,0xc4,0xd3, +0xdc,0x45,0x2f,0x91,0xf7,0xdf,0x67,0xbb,0x4f,0x5b,0xbf,0xd6, +0x8e,0x2f,0x93,0x95,0x54,0xe7,0xd5,0x71,0xf0,0xb4,0x83,0xc4, +0xe7,0xc4,0xe5,0x46,0xe7,0xe8,0x25,0xf0,0x41,0xfb,0x1c,0x54, +0xf5,0xf5,0x1a,0x1d,0x78,0x59,0x59,0x61,0x4d,0x4e,0x1d,0xd7, +0xc7,0xe4,0x38,0x4b,0xe5,0x7f,0xda,0x72,0xf8,0xb0,0xa2,0xe0, +0xf2,0xe0,0x62,0x0e,0xb8,0x0e,0x66,0xa4,0xff,0x1a,0xf9,0xff, +0xbe,0x90,0x9e,0x5c,0x92,0x5a,0x9c,0x1a,0xd1,0xc3,0x7b,0x87, +0x7b,0x85,0x8f,0xae,0xc4,0xbf,0xee,0x5b,0x03,0x47,0x58,0xf0, +0x47,0x3f,0x92,0xef,0x9e,0xeb,0x9e,0xe5,0xdc,0x9a,0xc3,0x07, +0x54,0xf8,0xca,0xbc,0x4a,0xa8,0x0b,0x3e,0x47,0x02,0x6c,0xbc, +0xac,0x5c,0x1c,0xa4,0x1d,0xd6,0xf2,0xa5,0x9d,0x68,0xc6,0x14, +0xc9,0xb2,0x6b,0x32,0xab,0xb8,0x35,0x23,0x13,0x49,0x8a,0xa1, +0x84,0x7c,0x1a,0x33,0xb3,0xea,0x54,0x84,0xad,0xba,0xe2,0x1e, +0x56,0xf4,0xd1,0x20,0xb0,0x03,0xd4,0x70,0xfc,0x5a,0x36,0xc9, +0x98,0x8e,0x5a,0x97,0x91,0x51,0xa3,0x22,0xac,0xc3,0x7a,0xd1, +0x87,0x15,0x14,0x04,0x57,0x82,0x6f,0x7a,0xe0,0x0d,0x8b,0x5a, +0xf8,0x11,0x41,0xb5,0xaf,0x40,0x8d,0x41,0x35,0xfc,0x82,0x80, +0xda,0x46,0x54,0xa3,0x8e,0x6c,0x3e,0xfc,0x40,0xd0,0x0e,0x4b, +0x05,0x4f,0x28,0x45,0xe7,0x01,0x38,0xd3,0x26,0x36,0x31,0x17, +0x64,0xe7,0xcb,0x2a,0x94,0x86,0x81,0xc3,0xf1,0x30,0x0c,0xe3, +0x47,0xfb,0x21,0x5d,0x87,0x29,0x1d,0x98,0x73,0x5d,0xe3,0x10, +0x96,0x4a,0x45,0xfc,0xd3,0x83,0x71,0xf3,0x66,0x9c,0xaf,0xdc, +0x66,0x76,0x0f,0x66,0x14,0x81,0x4a,0x1c,0xd8,0x28,0x52,0x4c, +0x81,0x7f,0x9c,0xfd,0xef,0x1d,0xbf,0xff,0xdc,0xe7,0xc5,0x71, +0xba,0x30,0x4e,0xda,0xf1,0x1b,0x3a,0x5a,0x99,0xe3,0xc3,0x46, +0xa2,0xd1,0xa4,0x7a,0x81,0x24,0xa9,0xa7,0xff,0xbd,0xe3,0xf7, +0xef,0x2d,0x30,0x76,0x70,0x95,0x20,0x77,0x1d,0x38,0xa6,0xff, +0x10,0xb9,0x0e,0xc6,0x87,0x58,0x34,0xb6,0x20,0x60,0x7c,0x10, +0x8d,0x99,0x87,0xd4,0x7d,0xe0,0x8a,0xdb,0x34,0xb7,0xed,0xde, +0x47,0x6e,0xc3,0xda,0x7d,0x2c,0x3a,0x5a,0x92,0xdd,0xb8,0xe2, +0x3e,0x0b,0xb6,0xd3,0x60,0xed,0x6e,0x0a,0x19,0xb0,0x0f,0x0d, +0xc8,0x93,0xdc,0x97,0xb2,0xde,0x5a,0xa7,0x26,0x5e,0xdf,0x69, +0xb7,0xeb,0x16,0x7f,0x8a,0x86,0x6b,0xc9,0x5d,0x9f,0x47,0xae, +0xd7,0x1d,0x8b,0xda,0x78,0xf5,0x8a,0xad,0x65,0xfb,0x72,0xa8, +0x31,0xcd,0x93,0xf7,0x10,0x6b,0xf6,0x68,0xbe,0x97,0x8e,0x9d, +0x89,0xb9,0xad,0xe2,0x61,0x38,0xa2,0x83,0x47,0xd6,0xe8,0xbe, +0xc6,0x78,0xc6,0x89,0x7a,0x65,0x67,0xa9,0xa0,0x45,0x69,0x62, +0x69,0x52,0x69,0x32,0x87,0xa5,0x9b,0x25,0x77,0x38,0x2c,0x1d, +0xe8,0xad,0x1b,0x3d,0x07,0x93,0x52,0x44,0x27,0x36,0xb2,0x9b, +0x4e,0xac,0xf7,0xe8,0xc4,0x06,0xdd,0x6d,0x62,0xf3,0xdc,0x5a, +0xeb,0x1b,0xba,0x8b,0x87,0x14,0x61,0x0d,0x53,0x6c,0xd0,0x60, +0xd4,0x6a,0x55,0xd6,0xc4,0x9b,0xd7,0x59,0x0c,0xb8,0xf5,0x72, +0x50,0x8c,0x6f,0x48,0xed,0xf7,0x25,0xbf,0xa4,0x7e,0xc5,0xb5, +0xa3,0xdf,0xc8,0xbf,0xfb,0xe4,0x57,0x60,0x1c,0x7b,0x7c,0xa7, +0xdb,0x62,0xfb,0x85,0x5c,0xdb,0xde,0xba,0x35,0x2b,0x95,0xd4, +0xc3,0xfc,0x4c,0x95,0xed,0x18,0x2a,0x97,0x6a,0xe6,0x71,0x41, +0xf7,0xbb,0x3f,0x6c,0x9f,0x99,0xdc,0x52,0x11,0x27,0x89,0x73, +0xc9,0xc9,0x4b,0x71,0xa9,0x31,0x69,0xd1,0xe9,0x8a,0x52,0x62, +0xb2,0x9f,0xb9,0x90,0x78,0x3e,0x29,0x49,0xa9,0x14,0x56,0xc3, +0x1b,0x9c,0x34,0x70,0xb5,0x09,0x63,0x2c,0x07,0xb5,0x70,0x22, +0xbe,0x81,0x65,0x96,0xec,0xc9,0xf3,0x27,0xcf,0x9d,0x54,0xc6, +0x83,0x26,0xb0,0x93,0xf1,0x3d,0xa4,0x69,0x89,0xe3,0x2d,0xf3, +0x4c,0x78,0x18,0xd7,0xdc,0xd1,0x50,0xd9,0x1c,0x1b,0x17,0x7d, +0x3e,0xee,0x14,0xec,0xc3,0xc9,0x7c,0x49,0x13,0xae,0xfb,0x33, +0x54,0x6a,0xc3,0x15,0xae,0x18,0x23,0x34,0x12,0x2d,0x9b,0x01, +0xd6,0x72,0x3e,0x39,0x6d,0x16,0xe4,0x7d,0xf4,0x58,0xae,0x1d, +0xdf,0x51,0x51,0x58,0x15,0x73,0x95,0x6b,0xb0,0x60,0xac,0x52, +0x43,0x9b,0x95,0x3b,0x8d,0x31,0x15,0x96,0x31,0xe0,0xac,0x46, +0x82,0x4e,0x47,0x67,0xab,0xd4,0xdf,0x54,0x63,0xf1,0xcb,0x09, +0x86,0x98,0xda,0xc5,0x4a,0x98,0x7f,0x16,0x91,0xd6,0x9b,0x24, +0xcc,0x1f,0x20,0x1d,0x30,0xff,0x5f,0xb7,0x9b,0x74,0xfe,0x63, +0x25,0x65,0xff,0x6d,0x25,0xf5,0xd2,0xe6,0xdd,0xc2,0xa4,0x02, +0x09,0xf3,0x77,0x09,0xb6,0x04,0x9d,0x85,0xef,0xc0,0x99,0x15, +0x37,0x9b,0x11,0x9c,0x82,0x53,0x61,0x0a,0x0b,0x5d,0xd2,0x06, +0x96,0x8f,0x61,0x0a,0x7c,0xcc,0xf4,0xd2,0x4b,0x7a,0xc1,0xe3, +0x14,0x56,0x64,0x71,0x06,0x49,0xf7,0xcb,0xf4,0xcc,0xf0,0xb4, +0x39,0xa9,0x7d,0x42,0xfb,0x74,0x61,0x73,0xd1,0x40,0x46,0xbb, +0x7e,0x1a,0x75,0x81,0x2e,0x07,0x3c,0x4c,0xb9,0x73,0xa1,0xa1, +0xe7,0xc2,0xa7,0xc7,0x99,0xbc,0x8c,0x86,0xc9,0x49,0xf7,0x52, +0x14,0x13,0x42,0xe2,0x42,0xe2,0xc2,0x1a,0x0b,0x79,0xaf,0x2e, +0xfb,0x01,0xbb,0x0e,0x4e,0x18,0x93,0x48,0x0c,0xbc,0xf6,0x7a, +0x6a,0x06,0x71,0xdf,0xe8,0xa3,0x3e,0xab,0x93,0xe7,0x3d,0xa4, +0x0c,0xb3,0x98,0xba,0xf4,0xb4,0x1a,0x95,0xeb,0xac,0x51,0xba, +0xc2,0x7a,0x9c,0xc9,0x8e,0x76,0x2c,0x6e,0x67,0x87,0x33,0x9e, +0x95,0x5e,0x2f,0xe1,0xc4,0x1f,0x71,0x0f,0x11,0x67,0x76,0xd2, +0x94,0x76,0xd7,0x86,0x45,0x6c,0x8a,0x29,0x85,0x7c,0xcd,0xa3, +0xdb,0x99,0x9f,0xb3,0xe8,0x33,0x87,0x0c,0xc1,0x2e,0x0d,0x16, +0x7e,0xa0,0xb6,0x8d,0x2a,0x8c,0x47,0x64,0x7c,0xa1,0xca,0x3d, +0xf6,0x5a,0xfa,0xd7,0x25,0xb7,0xca,0x3c,0x9b,0x79,0x7d,0x8f, +0x9d,0x9e,0x87,0x83,0xb9,0x5f,0xf4,0x30,0x80,0xd5,0xce,0xf5, +0x19,0x50,0x86,0xb9,0x4c,0x43,0x7a,0x6a,0x8d,0xca,0x4b,0x69, +0x30,0x31,0xe5,0x09,0xa1,0xdf,0x96,0xf6,0xc4,0x09,0x44,0xbe, +0x8a,0xb4,0x66,0xd6,0xe5,0x54,0xe5,0xe7,0x07,0xe5,0x07,0xe6, +0x04,0xf9,0xf9,0x7a,0xfb,0x79,0xf9,0x7b,0x64,0x79,0x66,0x7a, +0xa7,0x3a,0x3b,0xf2,0x79,0x61,0x79,0x21,0xf9,0x41,0xae,0x01, +0x8e,0x01,0xf6,0xc1,0x25,0x36,0x7c,0x53,0x76,0x4d,0x6e,0x45, +0x7e,0xb1,0x7f,0xa1,0x5f,0xbe,0x5f,0x79,0x25,0xef,0x93,0xed, +0x9d,0xe5,0x9d,0x59,0x90,0x9d,0x97,0x93,0x9b,0xeb,0x91,0xc7, +0xcb,0x64,0xbe,0x99,0xde,0x59,0xc7,0x32,0x15,0x73,0x33,0x72, +0xb2,0xb2,0xb3,0x1c,0x64,0xbc,0x9f,0x9f,0x8f,0xbf,0x77,0x90, +0x6b,0xb6,0x6b,0xa6,0x57,0xaa,0xab,0x13,0x5f,0x10,0x56,0x18, +0x5c,0x18,0xe4,0xe2,0xef,0x18,0x74,0x34,0x8c,0xc3,0x06,0x34, +0x26,0xdf,0xde,0x2d,0xaa,0x8b,0xef,0xe4,0xe2,0xd0,0xa0,0x03, +0x96,0x8c,0xd6,0x18,0x3c,0xa9,0xfc,0x6c,0x6f,0x59,0xc5,0xc6, +0xbb,0x11,0xf1,0x27,0x2e,0x44,0x46,0x2a,0x1e,0x3f,0xae,0x70, +0xb2,0x0f,0xc6,0xb7,0xe0,0xf8,0xaf,0x8c,0xb7,0xe1,0x32,0x73, +0x98,0xc1,0x04,0x18,0x9b,0x19,0xad,0xd7,0xe4,0x84,0x1f,0xdd, +0xc9,0xfd,0xfe,0xbc,0x96,0xb8,0x0e,0xfa,0x75,0x93,0x0e,0x30, +0x89,0x63,0x62,0x8d,0x2b,0xcc,0x5f,0x6a,0x95,0x36,0xf1,0xaa, +0xcd,0x06,0x5d,0x7e,0x9d,0x1c,0x4c,0x6b,0xc1,0x05,0xd2,0xf7, +0x3e,0x37,0x87,0x09,0x4c,0xa0,0x91,0xad,0xf1,0x5e,0x23,0x0e, +0x10,0x87,0x09,0x2e,0xaa,0x59,0xdc,0xb0,0xbb,0x9f,0x83,0xc1, +0x4e,0xd1,0x97,0x49,0xc9,0x4e,0xce,0x4e,0xca,0xd5,0x4e,0xe2, +0x43,0x3c,0x43,0xbc,0x83,0x7d,0x39,0x7c,0x6f,0x04,0x43,0xcc, +0x41,0xf5,0x65,0x56,0xb8,0xde,0x5e,0x5a,0x05,0x64,0x0b,0xdf, +0x54,0xde,0x6e,0x89,0x71,0xe0,0x1b,0x2e,0xb4,0x5f,0x6c,0xbf, +0xc8,0xe9,0x60,0xaf,0x09,0xf4,0x6a,0x88,0x4b,0x0c,0x85,0x25, +0x7b,0xfe,0xcf,0xad,0x00,0x0f,0x84,0x59,0x5d,0xe2,0xac,0x21, +0x68,0x6d,0xc7,0xd6,0x41,0xb6,0xf5,0x52,0xe3,0xa5,0x8a,0xe8, +0xc0,0x26,0xfe,0x91,0xd1,0x0f,0xb6,0x30,0xcd,0x91,0x13,0x5f, +0x03,0x47,0x4a,0x72,0x8a,0xf2,0xf3,0x0a,0x39,0x50,0x62,0x72, +0xfc,0x73,0x03,0x0b,0x02,0x77,0x46,0xa2,0xc2,0xe9,0x95,0x67, +0xb9,0xa9,0xd0,0x23,0x4c,0x23,0x27,0x4e,0x9c,0x3b,0x31,0x3d, +0x46,0xbf,0x27,0xe6,0x51,0x52,0x7f,0x9a,0x62,0x74,0x70,0x74, +0xc8,0xa5,0xd0,0xe6,0x34,0x3e,0xb2,0x56,0x01,0x34,0x99,0x68, +0xdb,0xbe,0x98,0xe7,0xc9,0x97,0x47,0x5f,0x0f,0xbe,0x14,0xd2, +0x9a,0xc6,0x87,0x5f,0xf6,0x7d,0xe0,0xdf,0x69,0x11,0xcc,0x27, +0x7a,0x26,0xb8,0x25,0xb8,0xbb,0x9d,0x70,0x38,0xe9,0x70,0xba, +0xf3,0x41,0xcf,0x2f,0xb5,0x3f,0x59,0xe4,0xf1,0xc1,0x96,0xbe, +0x26,0xc7,0x4c,0x1d,0x07,0xf9,0xaa,0x1b,0xe5,0x4f,0xb3,0x7b, +0xcc,0x73,0xf9,0x60,0x43,0x8f,0x43,0xee,0xda,0x51,0xa9,0x91, +0xc9,0x51,0xc9,0xc7,0xbc,0xf9,0xfb,0x2b,0xd9,0xd4,0xd2,0x24, +0x59,0x7c,0xb1,0x69,0x32,0x7f,0xc2,0x25,0xdc,0x31,0xc8,0x89, +0xd3,0xc2,0x9f,0x99,0xe3,0xf5,0xe1,0x0d,0x61,0x65,0x96,0xf4, +0x57,0xdd,0x13,0x5d,0x12,0x5c,0xdd,0x4e,0x38,0x9e,0x72,0x3a, +0xd5,0xf6,0xa8,0xfd,0x97,0xda,0x5f,0x2d,0xa5,0x5f,0xf5,0x37, +0xf5,0x31,0x8d,0xc8,0x3a,0x9e,0x7d,0x3c,0xab,0xe2,0x46,0xe9, +0xd3,0x8c,0x1e,0xab,0x1c,0x3e,0xdc,0xdc,0x63,0x9f,0xa7,0x56, +0x54,0x0a,0x7d,0x24,0xd9,0x39,0xf1,0x32,0x8b,0x9a,0xc3,0x45, +0xfa,0xbe,0x56,0x3e,0xb6,0xbe,0xce,0x9c,0x65,0x2c,0x09,0x8a, +0x0a,0x8c,0x0c,0x8c,0xe2,0xc0,0xef,0x7e,0xdf,0xee,0xd1,0x3b, +0x74,0x52,0x96,0x1e,0x2d,0x6d,0x75,0x0e,0xfd,0xc7,0x62,0x53, +0xca,0xff,0x57,0x96,0x3e,0xc0,0xe6,0x24,0xe4,0x24,0xe5,0x24, +0x72,0xc2,0x5c,0xb8,0x48,0xe6,0x80,0xc2,0x1f,0x0c,0x4c,0x47, +0x53,0xe2,0x6d,0xe3,0x7d,0xd4,0xd7,0x35,0xe8,0x2c,0x0f,0x89, +0x6c,0xb1,0x55,0x85,0x5e,0x81,0x39,0x87,0x27,0x6a,0xc8,0x1f, +0x38,0x79,0x0e,0x23,0x7c,0x84,0x6e,0xa4,0x1b,0x3b,0x9e,0x68, +0x6e,0xc5,0x4a,0x03,0xfa,0x01,0xc7,0xbd,0x38,0x4e,0x1b,0xa7, +0x1f,0x29,0xd2,0xe3,0x61,0xce,0x4d,0xf8,0xe8,0x5a,0xc2,0x5b, +0xaa,0x33,0x69,0x83,0x90,0x16,0xc7,0x24,0x2c,0x83,0x69,0xea, +0xb0,0xe8,0x50,0x51,0x2f,0x8f,0x73,0x87,0x90,0x1d,0xb0,0x97, +0xb6,0xcd,0x57,0x49,0x47,0x04,0x42,0x3f,0xdc,0x58,0x3a,0xfe, +0xb6,0x77,0xe5,0xe8,0x92,0x97,0x74,0xd6,0x33,0x99,0x75,0x08, +0x73,0x08,0x77,0x94,0x08,0x2e,0x4b,0x2c,0x4b,0x2a,0xa3,0xfe, +0x5a,0xb6,0x56,0xf2,0xd7,0xb7,0xfe,0x26,0xb8,0x97,0x2d,0x4b, +0x29,0x4b,0x93,0x6e,0x2c,0xbd,0x17,0xf6,0x91,0x41,0x4d,0x4d, +0xac,0x30,0x95,0x7f,0xdc,0xc6,0xe2,0xc2,0x11,0x67,0xd2,0x53, +0xd4,0x5a,0x56,0x5d,0x6e,0x57,0xcb,0x3b,0x3b,0x18,0x38,0xe9, +0x7b,0xb9,0xc9,0x7c,0x2a,0x7c,0x29,0x32,0xc8,0x6f,0xc3,0x43, +0xb7,0x60,0x4d,0x8b,0x94,0xa5,0xee,0x6a,0xc1,0x5d,0x57,0x41, +0x99,0x26,0xa9,0x19,0xb8,0xe6,0xae,0x3a,0x6a,0x5e,0xbd,0x46, +0xaf,0x13,0x71,0x0d,0xcc,0x52,0xc7,0xcd,0xe6,0xb0,0x59,0x1d, +0x97,0x9b,0xc3,0xf2,0xfd,0xb8,0xcf,0x14,0xa2,0x18,0x3d,0x0b, +0xe4,0x6c,0xe7,0xf8,0x66,0x9a,0xf2,0x03,0xa9,0x43,0x99,0x7d, +0x79,0xdc,0x6c,0xd6,0xe2,0xa4,0xf9,0x29,0x8b,0xd3,0x52,0x25, +0xfa,0xcf,0x93,0xa5,0xfb,0xc9,0x4c,0xfe,0x99,0x76,0x5e,0x33, +0xfc,0xf0,0x71,0x35,0x9a,0x2c,0x7d,0xc2,0xd6,0xe5,0x54,0x14, +0x14,0x14,0x73,0xf1,0xcc,0x35,0x24,0xff,0x5a,0x07,0xdb,0x35, +0xf3,0x3b,0xf8,0xdd,0x85,0xfa,0xc5,0xd6,0x65,0x1c,0x5e,0x12, +0x5e,0x13,0x55,0x5c,0x77,0x97,0x15,0x5c,0xa7,0xa9,0xe2,0xa6, +0xbb,0x6c,0x1e,0xc5,0x92,0x12,0x09,0x2c,0xd0,0xe8,0x4a,0xf6, +0xa3,0xe6,0x2d,0x9a,0xbb,0xaa,0x0b,0x9b,0x09,0xf8,0x34,0xa2, +0x4f,0x13,0x78,0x37,0xa2,0x77,0x13,0xc4,0x34,0xe1,0x69,0x26, +0x29,0x2d,0x31,0x3d,0x3e,0xcd,0x38,0x91,0x87,0x04,0x98,0xaa, +0xbd,0x0b,0x1d,0xbf,0xd7,0x5e,0x8a,0x16,0x0f,0x74,0x71,0xea, +0x4b,0xc6,0x4d,0x5b,0x4f,0xf5,0x90,0x49,0x8d,0x2d,0x5f,0x92, +0x9f,0x95,0x95,0x96,0xcd,0xa1,0x83,0x70,0xb3,0x19,0x33,0x58, +0x91,0xab,0x1d,0x5d,0x7f,0x72,0xa1,0x52,0xf6,0x1d,0xdd,0x74, +0xad,0xf5,0x4f,0xa5,0x90,0x8b,0xac,0x54,0x51,0xf4,0xef,0xe3, +0x33,0x75,0xa9,0x75,0xa3,0x15,0x5b,0xfe,0xa9,0x14,0x92,0xfe, +0xe1,0x20,0x86,0xb4,0x1f,0x56,0x5a,0x1c,0x7f,0x0b,0xdf,0x90, +0xa8,0xc0,0xe3,0xfe,0x61,0x81,0x1c,0xee,0xa6,0x84,0x24,0xa4, +0x26,0xa4,0x9b,0x26,0xf1,0x27,0x71,0x1e,0x69,0x02,0x13,0x4b, +0x16,0x4d,0xd6,0x7d,0xb8,0xb0,0x9a,0x60,0x8a,0x26,0x6d,0xac, +0xa3,0x78,0x8e,0xc0,0x5d,0x98,0xc9,0x46,0xd8,0x3a,0x1c,0xdb, +0x16,0x98,0x61,0xc1,0xff,0x5e,0xd4,0x52,0x93,0x34,0xcc,0xdd, +0xb5,0x64,0x8e,0x66,0x84,0xb4,0x29,0xdf,0xa7,0x30,0x30,0xa9, +0x42,0x25,0x87,0x35,0x49,0x50,0x70,0xde,0xcd,0x86,0x9d,0x8a, +0x4e,0x53,0xa9,0x86,0xd5,0x98,0x89,0x63,0x59,0x0a,0x8d,0xbe, +0x65,0xea,0xb3,0x32,0xa5,0x7d,0x2c,0xe2,0x73,0x71,0x3c,0x05, +0x9e,0xd2,0x21,0xdf,0xc3,0xdd,0xed,0x10,0x0a,0xd3,0x59,0x0c, +0x5d,0x49,0x3a,0xe0,0x80,0x31,0x0d,0x53,0x0f,0x85,0xf5,0xe4, +0x4e,0x7b,0x43,0x6b,0x4e,0x45,0x4c,0x42,0xec,0xf9,0xb8,0x13, +0x30,0x66,0x1e,0x5f,0x56,0x5d,0x78,0xf4,0x4d,0x5b,0x7d,0x43, +0xec,0x15,0xc5,0x58,0x26,0x6e,0x6f,0xa7,0xf5,0xb7,0x86,0x79, +0xcd,0xfc,0xe6,0x16,0x93,0xf2,0x90,0x3e,0x0e,0x48,0x0b,0x2a, +0xdd,0x80,0x2f,0x5b,0xf0,0xcb,0xdb,0x86,0xfb,0x90,0x35,0x07, +0xf6,0x20,0x7e,0x44,0x9f,0x99,0x70,0x13,0x1b,0x97,0xcd,0xe6, +0xf3,0xbf,0xe5,0x8f,0x27,0x46,0x5d,0x38,0x7e,0xfc,0xc4,0x49, +0xfe,0xd4,0xa5,0xd8,0xa4,0xe8,0xe4,0x4b,0x29,0x8a,0x30,0xa5, +0x05,0x15,0x98,0x0b,0x29,0xe7,0x53,0xd3,0x95,0xf2,0x61,0x4c, +0x0b,0x8e,0xb9,0x6d,0xb0,0x6f,0xb6,0xf9,0x9f,0xbe,0x6c,0xf0, +0xf9,0x90,0xb3,0xa1,0xca,0xc8,0x99,0xbf,0x67,0x82,0x8d,0xec, +0xad,0x37,0x68,0x71,0x29,0x3a,0xff,0xd9,0x5e,0x14,0xf6,0xb4, +0x6f,0xcb,0xff,0x89,0x9a,0x42,0xac,0x3f,0x9c,0x93,0xfa,0x3f, +0x51,0xd3,0xb3,0xbf,0xcf,0x7f,0xf7,0xfe,0xe7,0x4e,0xcb,0x3d, +0xac,0x22,0xc2,0x44,0x31,0x4d,0x9c,0xc8,0x0a,0x36,0xf0,0x84, +0x1c,0x11,0x97,0x5c,0x61,0x85,0x25,0xb3,0xfe,0xb9,0x98,0x4d, +0x0e,0x88,0x4b,0x6e,0xb2,0xb8,0x5c,0x5a,0x59,0x57,0xc8,0xf9, +0xb9,0x7a,0xa8,0xd6,0xa6,0x86,0x57,0x77,0x5a,0xe5,0x3c,0x2f, +0x98,0x13,0xd6,0x54,0x92,0x9f,0xbd,0xbe,0xf6,0x7e,0xe6,0x50, +0xda,0xc6,0x6f,0xab,0x58,0x59,0xba,0x3c,0x8b,0x9b,0x2a,0x7f, +0x59,0x43,0x60,0xcf,0xcf,0xdd,0x0b,0x61,0xe5,0x4f,0xdd,0x8b, +0x60,0x05,0x8c,0xed,0x9d,0xcd,0x66,0x75,0x64,0xf4,0x27,0xb5, +0x1a,0x25,0xf1,0x11,0xa6,0x81,0x1a,0x7e,0xba,0xdc,0x36,0x26, +0xa3,0x23,0xb9,0x3d,0xa9,0xdf,0x20,0x99,0xf7,0x43,0xd6,0x1e, +0x3f,0x35,0xc4,0x31,0x5c,0x27,0x4e,0x1f,0x7e,0x07,0x63,0x6f, +0x34,0x1f,0x94,0x04,0x36,0x8d,0x3e,0x69,0x5a,0x0c,0xe2,0xd8, +0xd7,0x87,0x51,0x11,0xd5,0x41,0x51,0x6d,0x74,0x7f,0x7a,0x20, +0x1b,0x78,0x2e,0xe8,0x6c,0xb0,0x32,0x2e,0x35,0xa1,0x00,0xdf, +0x6f,0x9f,0xb1,0xf9,0x06,0xbd,0x12,0x73,0xfe,0xd5,0x40,0x63, +0x7b,0x5e,0x4d,0x4c,0x7c,0xf4,0xb9,0xe8,0xd3,0x30,0x0b,0xa7, +0xf3,0x15,0x0d,0xf8,0x25,0x7c,0x12,0x91,0x70,0xe2,0xe2,0x68, +0xdc,0xa1,0x12,0x4e,0x89,0x49,0xbd,0x44,0x61,0xd0,0x9a,0x76, +0x5c,0xc2,0x5c,0x48,0xbb,0x90,0x91,0xa9,0x94,0x05,0xb3,0xda, +0x71,0xd6,0x35,0x98,0xfe,0x13,0x5b,0xe2,0x9e,0x90,0x95,0x90, +0x1d,0x9f,0xa5,0x28,0x3e,0xe8,0xba,0x0a,0x19,0x3d,0xec,0x88, +0x3d,0x00,0x09,0x88,0x08,0x88,0x0c,0xa0,0x86,0x16,0xf0,0xac, +0x77,0x33,0x68,0xe8,0xa0,0xc6,0x06,0xbd,0x97,0x18,0xc7,0x4a, +0x07,0x49,0x5d,0x24,0x90,0x27,0x9d,0x40,0x2c,0x96,0x40,0xde, +0x76,0xa9,0xfc,0xe3,0xa0,0x04,0xf2,0x6a,0xa5,0xb5,0xd4,0xdc, +0x24,0xfa,0x48,0xe6,0xe0,0x82,0x40,0xc8,0x11,0x9c,0x76,0x85, +0x85,0x17,0x18,0x43,0x60,0xc5,0xb7,0xb8,0x82,0x15,0x5d,0x2a, +0xc8,0xf3,0xd5,0x9b,0xa8,0xe3,0x9b,0xf6,0xe6,0xc5,0x6a,0x96, +0xba,0x83,0x65,0x04,0x56,0x7e,0x8b,0x2b,0x59,0x83,0x09,0xb8, +0x67,0x39,0xec,0x61,0xa7,0xb6,0x09,0xed,0xa4,0xe9,0x42,0xe3, +0xc5,0xa6,0x4b,0x1c,0x5a,0x76,0x80,0x2d,0x5b,0x7a,0x49,0x76, +0x49,0x16,0x93,0xe6,0xc4,0xd7,0x64,0x06,0xd5,0x1d,0x6b,0xf6, +0xaa,0x54,0x74,0x0a,0x4c,0x0c,0x91,0x6e,0x6f,0x29,0x5a,0x9d, +0xb2,0x3a,0x63,0x71,0xb6,0xad,0xba,0xb9,0xb5,0xab,0xdf,0xa1, +0x98,0x3f,0xe6,0xea,0xe6,0xe2,0xec,0x12,0x9e,0x12,0x9a,0x1a, +0x92,0x5a,0x5e,0x52,0x5a,0x59,0x52,0x6b,0x57,0xc0,0xfb,0x38, +0xba,0x39,0xb9,0xba,0xd9,0xcb,0x78,0x17,0xd7,0x2a,0x8f,0xfa, +0xa3,0xa5,0xce,0x8a,0x01,0xc1,0xf4,0x11,0xc2,0xf9,0x07,0x9c, +0xf3,0x9f,0x2e,0xfc,0x00,0x0b,0x48,0xa5,0x7b,0xad,0x5d,0xa9, +0x73,0x60,0x48,0x40,0x88,0x7f,0x08,0x77,0x2e,0x30,0xe0,0x7c, +0xc0,0xf4,0x38,0x8b,0xc6,0x0b,0xf5,0x17,0x1b,0x2e,0x29,0x7e, +0xa0,0x41,0x76,0xa9,0xf4,0x52,0x59,0x4c,0x5c,0x78,0x6c,0x78, +0xcc,0xf1,0xda,0x2c,0xde,0xbf,0xce,0xa3,0xd1,0xb3,0xdc,0x29, +0x80,0x4f,0x0c,0xa3,0x94,0x84,0x58,0x9f,0xb2,0x3e,0x63,0x75, +0xb6,0xa3,0xba,0xad,0xa5,0xe7,0x32,0x25,0xc3,0xc3,0xd5,0xd9, +0xc9,0x91,0x92,0x11,0x92,0x16,0x9a,0x5a,0x59,0x52,0x56,0x29, +0xab,0xa3,0x64,0x78,0x39,0xb8,0x3a,0x39,0xb9,0x85,0xa6,0x84, +0x26,0x45,0xc4,0x7b,0x78,0xf0,0x17,0xb0,0xde,0x12,0xea,0x59, +0xcc,0x80,0x8f,0x89,0x35,0x44,0x35,0xb0,0x78,0x12,0xd7,0xd1, +0xab,0xd3,0xf4,0x6a,0xca,0x84,0x06,0x3c,0x6d,0xcd,0xa2,0x82, +0x3b,0xc9,0xb6,0x4a,0xb5,0x49,0x37,0x6d,0x96,0xda,0xe5,0x05, +0x36,0x05,0xd4,0x72,0x42,0x6d,0x20,0xc9,0xb7,0xcc,0xb0,0xca, +0x32,0x6d,0xce,0xe0,0x03,0xda,0xfc,0x9a,0x7d,0x6b,0xb9,0x91, +0x3a,0x5c,0x4a,0x8a,0x5a,0x53,0x5b,0x93,0x9a,0xcd,0x93,0xf8, +0x48,0xab,0x40,0x13,0x6f,0x5b,0x4e,0x3e,0x25,0x88,0x14,0x35, +0x67,0x34,0xa7,0x36,0x9b,0x27,0xf3,0xe1,0x56,0xfe,0xe6,0xf4, +0xb5,0x10,0x07,0x02,0x8b,0xf1,0x1c,0x2e,0x66,0xc1,0x10,0xc6, +0x90,0x83,0xb8,0xe0,0x06,0x2b,0x78,0xe0,0x80,0xb4,0x65,0xb0, +0xf7,0x9f,0x93,0xf2,0x71,0xfe,0x1d,0x7c,0x30,0x6a,0xff,0xbd, +0x65,0xf0,0xbf,0x4f,0xca,0xeb,0x8f,0x6e,0x19,0xd4,0x16,0xf7, +0x18,0x0a,0x7b,0xfe,0x17,0x4e,0xd8,0xd4,0x25,0x6e,0x92,0x8a, +0x42,0x76,0x08,0x5f,0x90,0x74,0xd7,0xa2,0xac,0x9c,0xf4,0x8c, +0x74,0x45,0xb4,0x10,0x6e,0x34,0x62,0x76,0x03,0x04,0xd7,0x61, +0x70,0xfd,0xe8,0x73,0x2d,0x24,0x35,0xe2,0x79,0x36,0x51,0xf2, +0x6b,0x19,0x6e,0x71,0x3c,0x9c,0x81,0x7c,0xac,0xc2,0xfc,0x6c, +0x26,0x22,0xf0,0x78,0x90,0xe4,0xf4,0xf6,0x31,0x49,0xa9,0x89, +0xa9,0x49,0xe9,0xd6,0x09,0x3c,0xac,0xa4,0x6f,0x16,0x22,0xf5, +0x04,0x8c,0x87,0x99,0xb1,0xe1,0x41,0xcb,0xb3,0x89,0xbc,0x67, +0x88,0x3b,0x0d,0x65,0xd4,0xc5,0x4a,0x47,0x2e,0xfe,0x39,0x64, +0x74,0x89,0xb5,0x0b,0xb6,0xff,0xb0,0x3e,0x5e,0x9e,0x54,0x91, +0x5c,0x9e,0xfa,0x61,0x1d,0x46,0x3a,0x64,0xf4,0xa1,0x70,0xc4, +0x00,0x2b,0xa3,0x61,0x4c,0x46,0xfd,0x6b,0xa2,0xb0,0x91,0xd8, +0xe2,0xc1,0x3a,0x56,0x88,0x99,0x66,0x8b,0x3a,0x75,0x2c,0x2a, +0xef,0xf8,0xdf,0x2f,0xd8,0xe0,0xc1,0x7a,0xe9,0x05,0x1b,0xd4, +0xa1,0x53,0x94,0x87,0xce,0xa4,0x16,0xac,0x8e,0xb2,0x68,0xb5, +0x85,0xd4,0x83,0x95,0x0d,0xbd,0xd8,0x4c,0x1a,0xc0,0xca,0x9a, +0x85,0xd7,0x28,0x23,0xab,0x92,0xb7,0x26,0xef,0x49,0x7f,0x54, +0x3c,0x5c,0xd5,0xda,0xcc,0x35,0x8b,0x2f,0x2d,0x84,0x44,0xd6, +0xdc,0xe9,0x90,0xdb,0x3a,0xef,0xdd,0xd9,0x07,0x0b,0xd4,0xcb, +0x9d,0x5c,0xf8,0x2e,0xaf,0x4e,0xdf,0xee,0x80,0x9d,0x41,0x6b, +0xc2,0x16,0x46,0x26,0x99,0xf3,0xf0,0x65,0x2a,0x28,0x64,0x7e, +0x57,0xf8,0xce,0xeb,0x97,0x40,0x98,0x14,0xca,0x4d,0xfd,0xeb, +0x70,0x12,0xc1,0x85,0xd5,0x38,0xa5,0x6e,0x6e,0x27,0x4c,0x7d, +0xf6,0xf2,0xc7,0xbe,0x3f,0xb8,0x6e,0xfc,0x1a,0x56,0x09,0x8b, +0x07,0xc5,0xc5,0x30,0xe7,0x00,0xfe,0x85,0xdf,0x6a,0xc8,0x97, +0xb2,0xba,0x6b,0x36,0x6f,0x42,0x85,0xfd,0x4b,0xfb,0x37,0xdf, +0xd9,0xf1,0xd6,0xc0,0x8e,0x7f,0xb0,0xe6,0xf1,0xde,0x37,0xda, +0x38,0x46,0x0f,0xbf,0xb4,0xc2,0x35,0x1e,0x79,0xea,0x3c,0xec, +0x2f,0x83,0x05,0x5d,0x40,0x73,0x41,0xf6,0x30,0x28,0x99,0xc1, +0x36,0x6b,0xe9,0x28,0x4f,0x0c,0xc1,0xb5,0x3d,0xf8,0xe9,0x95, +0xc5,0xf7,0x7f,0xfd,0xf5,0x06,0x4c,0x2b,0x85,0x9d,0x1c,0xac, +0x1f,0x16,0xbf,0x65,0xf2,0xbb,0x32,0x7b,0x52,0x7b,0x8e,0x24, +0xf1,0xa6,0xb8,0x67,0x0d,0x2e,0xc2,0xe9,0x38,0xb5,0xc9,0x94, +0xbf,0x7a,0xb9,0xe7,0x6a,0xf3,0xad,0x5a,0xfc,0xf2,0x26,0x8e, +0xff,0x6d,0xd9,0x9c,0x8d,0xa8,0xac,0x89,0x3b,0x0c,0x8a,0x8f, +0xd0,0x5f,0xef,0x83,0x05,0x37,0x61,0xfc,0xbb,0xdf,0x37,0x83, +0xd2,0x7e,0xd8,0xaa,0xcd,0xa1,0x9f,0x7c,0x2e,0x71,0xc7,0xd5, +0x1a,0xc8,0xae,0x5a,0x83,0x63,0x7e,0x38,0x08,0x93,0xec,0x61, +0x01,0xf5,0x84,0x21,0x60,0x4d,0x5e,0xc2,0x17,0x75,0x30,0x33, +0x95,0xfe,0xff,0xee,0x10,0xfe,0xc4,0xa4,0x77,0xa6,0x74,0x25, +0x74,0x68,0x27,0xf2,0x5e,0x38,0xd3,0x1c,0x55,0xd6,0xe2,0x47, +0x1c,0x9d,0x61,0x36,0xff,0x69,0xc1,0x2f,0xc9,0xf7,0x39,0x68, +0x1c,0x10,0x6d,0xb4,0x60,0x2c,0x13,0xba,0xce,0x15,0x3f,0x72, +0x98,0xc5,0x41,0xb3,0x35,0xb3,0x28,0x72,0x6e,0xd0,0x2e,0x65, +0xab,0x88,0x63,0xee,0x66,0xd3,0x51,0x51,0x4a,0xf2,0x40,0x81, +0x79,0xdd,0x54,0xf7,0x28,0x5d,0x25,0xfb,0x87,0xb8,0xdf,0x61, +0xb2,0x52,0x0d,0x5b,0x65,0x29,0xab,0x2f,0x6e,0x2b,0xe8,0x56, +0xcc,0x46,0x85,0xea,0x59,0xc3,0xf3,0x34,0xb7,0x6f,0xdd,0x85, +0x63,0x55,0xcb,0x35,0xf9,0xf7,0xf7,0x9e,0x3d,0x1a,0x7e,0xd2, +0xbf,0xed,0xde,0x8e,0x6f,0x77,0x57,0x0e,0xf2,0xcb,0xef,0xa9, +0xde,0xd7,0x7f,0xc4,0x3d,0x14,0x56,0x92,0x30,0xfc,0xd4,0x15, +0x27,0xed,0xc7,0x71,0x47,0x60,0x8c,0x33,0x70,0x21,0x40,0x28, +0xc9,0x01,0x60,0x49,0x49,0x26,0x75,0xa0,0x9c,0x42,0x49,0xbe, +0x37,0x84,0xbf,0x31,0x19,0xa3,0x24,0x6b,0x51,0xcd,0xc3,0x79, +0x46,0x38,0x6f,0x29,0x7e,0x56,0x6f,0xcc,0x57,0x34,0x95,0x75, +0x17,0xf7,0x67,0x21,0x53,0x83,0x63,0xaf,0xcd,0xd3,0xde,0xb1, +0x7d,0xd7,0x9c,0xbd,0x15,0x9a,0xfc,0x6f,0xf7,0x9e,0x3c,0x1c, +0xfa,0x8a,0x8e,0xb6,0xeb,0xc3,0x68,0x77,0xe9,0x68,0x0f,0x39, +0xf1,0xab,0x53,0x44,0x68,0x39,0x2c,0xde,0x60,0x0f,0xfb,0xe7, +0x1c,0x86,0x82,0xef,0x15,0x30,0x63,0xf8,0xaf,0x59,0x87,0xc5, +0x27,0xac,0x10,0x26,0x8c,0x25,0xe1,0xf8,0x99,0x8b,0x44,0xc9, +0x78,0x75,0x18,0xeb,0x24,0x51,0x32,0x8d,0x82,0x36,0x6f,0xf9, +0x33,0xe2,0x88,0xfb,0x0e,0xe3,0x9a,0xf5,0xa8,0x50,0xab,0xc3, +0xcb,0x6a,0x0b,0x9b,0x73,0xdb,0x38,0xb1,0x76,0x50,0xbe,0x92, +0x2d,0xbc,0x9b,0xf7,0x34,0xfd,0x19,0x27,0x18,0x8f,0x4c,0x20, +0xaf,0x80,0xaa,0xe4,0xa8,0x84,0x1f,0x0e,0x89,0x63,0x28,0xb9, +0xa9,0xff,0x90,0x3b,0xcb,0x18,0x95,0x97,0xe3,0xc7,0xf5,0x46, +0x7c,0x59,0x43,0x69,0x7b,0x61,0x4f,0x0e,0xb2,0x75,0x38,0xf6, +0xc6,0x5c,0xcd,0xed,0x5b,0x76,0x53,0xe9,0x54,0x48,0xd2,0x79, +0x41,0xa5,0x33,0xb8,0xf5,0xe1,0xce,0x1f,0x77,0x57,0x0c,0xf2, +0x4b,0xee,0xee,0xba,0xaf,0xfb,0x88,0x43,0xc0,0xc3,0x44,0xbe, +0x55,0x6b,0x64,0x2b,0x2b,0x44,0x08,0xef,0x24,0x49,0x39,0xe3, +0x24,0x55,0x9c,0x70,0x10,0xc6,0x3a,0xc2,0xc4,0xe0,0x51,0x49, +0x9d,0x05,0x5b,0xf2,0x14,0x3e,0xab,0x86,0x19,0xa9,0xb0,0x90, +0xbb,0x31,0x84,0x0f,0xe9,0xe4,0x26,0x77,0x25,0x74,0x6a,0x27, +0xf0,0xc7,0x70,0xae,0x09,0x2e,0x58,0x8d,0x9f,0x71,0xc2,0x14, +0x91,0x19,0x69,0x1e,0x7c,0x0e,0xc3,0x30,0xcc,0x16,0x39,0x57, +0xb7,0x55,0xf4,0x17,0x5f,0x51,0xcc,0xc4,0xf1,0x15,0xb3,0x2f, +0x2f,0xd4,0xda,0xba,0x6d,0x74,0x96,0xb4,0xf8,0x3f,0xef,0x3d, +0x7d,0x78,0xe5,0x69,0xf7,0xb6,0x5b,0x3b,0x5e,0xef,0xae,0x18, +0xe0,0xd7,0xdc,0x3f,0x70,0xdf,0xf8,0x31,0x37,0x32,0x0e,0x72, +0x08,0xe4,0xfd,0x84,0x79,0x6c,0xdf,0x34,0xc8,0xfb,0x85,0xfe, +0x15,0x0e,0xc2,0x6c,0x72,0x1c,0x3f,0x73,0x43,0x4e,0x1d,0xc7, +0xe8,0xbc,0x77,0x07,0x46,0x9a,0x38,0x31,0x48,0x3c,0x46,0xa0, +0xf2,0x27,0xac,0x94,0x3e,0x59,0xf9,0x0b,0xfd,0x3b,0x55,0x1e, +0x0b,0x36,0xe4,0x31,0x7c,0x4e,0x29,0x4c,0x86,0x45,0xdc,0xd5, +0x41,0x1c,0x92,0x28,0xec,0x8e,0x97,0x28,0xf4,0xc6,0x79,0xe6, +0xb8,0x64,0x2d,0x7e,0x52,0x67,0xc2,0x97,0xd6,0x17,0xb5,0x17, +0xf4,0x64,0xe0,0xd8,0xb2,0x79,0xbd,0x8b,0x74,0xb6,0xee,0xa4, +0x53,0x49,0x49,0xfa,0xf5,0xee,0xa3,0x87,0x03,0x4f,0xbb,0xb6, +0x5d,0xdf,0xf9,0x72,0x77,0xe5,0x65,0x7e,0xdd,0x7d,0xb5,0x07, +0xa6,0x8f,0x38,0xd1,0x48,0x88,0x23,0xf0,0xb1,0x06,0x7e,0x8c, +0x86,0xda,0x82,0xde,0x65,0xd6,0x07,0x2f,0x11,0xf7,0xce,0xa3, +0xc3,0x76,0x6d,0xa6,0x2e,0x7c,0xad,0x51,0xad,0x7a,0x89,0x01, +0x87,0xf1,0x60,0x44,0xbc,0x76,0x5b,0xee,0xdc,0x7f,0xa4,0xc6, +0x84,0x7f,0x78,0xbb,0xe3,0x65,0xe9,0x4b,0x4e,0x78,0x97,0x2a, +0x11,0xee,0x81,0x13,0x35,0xa8,0xb1,0xbe,0xf7,0x04,0x26,0x8c, +0xce,0x33,0x6e,0x10,0xfb,0x89,0xe5,0xb0,0x75,0xbf,0x65,0xb7, +0xec,0x72,0xd1,0xb5,0xbc,0x7b,0x3a,0xd9,0x7c,0xa0,0x86,0xaf, +0xde,0x31,0x63,0xfb,0x86,0xa3,0x0d,0x56,0x8d,0xd6,0xd6,0x7c, +0xab,0x69,0x83,0x79,0x9d,0xa9,0xf6,0xf2,0xdd,0x3b,0x17,0x1f, +0xa8,0x36,0xe4,0xbf,0xbd,0xf5,0xe8,0xe1,0x95,0x1f,0x6a,0x8d, +0x6b,0x8c,0x6a,0xb4,0xe9,0x34,0x24,0x52,0x26,0x1f,0xc1,0xe7, +0x55,0x30,0x33,0x99,0x4e,0xc3,0x95,0x41,0xec,0x66,0x52,0x47, +0x99,0xd4,0x49,0xa0,0xd0,0x62,0x86,0x2d,0xce,0xdb,0x8e,0x13, +0xeb,0x8c,0xf9,0xbc,0xca,0x9c,0xfa,0xec,0xa6,0xf4,0x59,0x65, +0xf3,0xbb,0x16,0xeb,0x51,0x1e,0xe7,0x4a,0x3c,0xfe,0x72,0xf7, +0x21,0xe5,0xb1,0x63,0xdb,0xb5,0x9d,0xcf,0x25,0x1e,0x37,0x3c, +0x50,0xbf,0x6f,0x46,0x79,0xb4,0x10,0x3e,0x26,0xbf,0x81,0x46, +0x37,0x6a,0x7c,0xab,0xb1,0x1c,0xf7,0x1b,0xc0,0xfe,0x79,0x68, +0xad,0x2f,0x78,0xf4,0xb0,0x70,0xa3,0x4c,0x62,0xc2,0x13,0x39, +0xca,0x84,0xc1,0x9f,0x5e,0x1f,0x98,0x10,0xb7,0x8b,0x93,0x48, +0xb4,0xec,0x42,0xf9,0x85,0x0a,0x6a,0xb1,0xbd,0x68,0xf3,0xab, +0xc6,0x7c,0xb4,0xd0,0x93,0xf6,0xea,0xe2,0x6a,0x37,0x1c,0xb7, +0x62,0x49,0x93,0x05,0x7f,0xe7,0x61,0xed,0xf3,0xcc,0x9f,0x38, +0x70,0x64,0x4c,0xce,0x5a,0x9c,0x76,0x56,0x36,0x3f,0x19,0x12, +0x62,0x39,0x7d,0x19,0x93,0xa6,0xaf,0xf0,0x0d,0x73,0xb5,0xa6, +0xf8,0x4e,0x82,0x4a,0x6c,0xfb,0xc5,0xae,0xef,0x94,0xa6,0xca, +0x33,0xa9,0xdf,0x78,0x00,0x9f,0x57,0xc0,0xcc,0x24,0x3a,0x71, +0x83,0x83,0x58,0x4b,0x79,0x4a,0xfa,0xc0,0x53,0x00,0x7e,0xe9, +0x80,0xb3,0xf6,0x21,0x23,0xdd,0x78,0xd3,0xfb,0x0e,0xfc,0xfb, +0xd0,0x5f,0x02,0xe7,0xde,0xba,0xe0,0xbd,0x0c,0x35,0x30,0x9d, +0x02,0x08,0xaf,0x0d,0x3b,0xa9,0x63,0x59,0x5f,0x65,0x44,0xb3, +0x86,0xb7,0x03,0x8f,0x62,0x9e,0xd0,0xfc,0xe8,0xcd,0x65,0xa8, +0x63,0xe2,0x63,0xce,0xc7,0x9c,0x52,0x96,0xaa,0xd6,0xd4,0x37, +0xe1,0x74,0x98,0x15,0x9e,0x1c,0x11,0x7d,0xfc,0xb8,0x62,0x58, +0x98,0xc2,0x89,0x47,0xa0,0x47,0xfd,0x8e,0xcc,0x36,0xb7,0x22, +0xbb,0x36,0xb3,0x51,0x31,0x7d,0x76,0xe9,0xc2,0xf6,0xa5,0x06, +0x5b,0x77,0xef,0x5a,0x28,0x09,0xea,0x87,0xbb,0xf7,0x1f,0xf4, +0x3d,0x69,0xdb,0x7e,0x65,0xe7,0x93,0x3d,0x15,0xfd,0xfc,0xe6, +0x07,0x9a,0xf7,0xcd,0x1f,0x71,0x43,0xc2,0x2a,0x12,0x81,0x9f, +0x79,0x21,0x4d,0xa1,0xc7,0x18,0xbd,0xf7,0x06,0x85,0x70,0x49, +0x1a,0xd3,0x36,0x12,0x5c,0x85,0xd3,0x60,0x15,0x0b,0x5a,0xb8, +0x8a,0xc0,0x2a,0x98,0x81,0xab,0x68,0x68,0x2c,0x95,0xd7,0x93, +0x94,0xf5,0x37,0x55,0x41,0x61,0x77,0x59,0x0f,0x8f,0x1f,0x7d, +0x65,0x7c,0xf5,0xd8,0x2d,0x6e,0x3f,0xe3,0xbd,0x47,0x7f,0x37, +0x7e,0xbc,0xa9,0xc2,0x80,0x87,0x49,0x4f,0xaf,0x3e,0x4c,0x7f, +0xcb,0xc9,0x35,0x46,0xae,0x92,0x75,0xed,0x87,0x5a,0xf5,0x3b, +0x9e,0xbe,0xb8,0xfc,0x4b,0x3e,0x4c,0xe4,0x3a,0xd0,0x10,0x96, +0x83,0x6f,0x1f,0xfa,0xc2,0x12,0x4d,0x44,0xd4,0xd4,0x15,0xa6, +0xb2,0xde,0x8b,0x4c,0x37,0xee,0xdf,0xab,0x75,0xcd,0xfa,0xae, +0xed,0x6b,0x03,0x6f,0xbe,0x7e,0x79,0xdb,0xb6,0x2b,0xfb,0xd4, +0x74,0xb7,0x9b,0xae,0xb2,0x96,0xe9,0xf2,0xdf,0x34,0x3e,0xef, +0xbe,0x33,0x7c,0x59,0xe7,0x8e,0xd1,0xbf,0x8c,0x38,0xd1,0x4a, +0x08,0x24,0xb8,0x0b,0xa6,0x48,0x67,0xc7,0x2a,0x75,0x28,0x4a, +0x9e,0x82,0xea,0x7a,0xa0,0x8e,0xef,0x97,0x31,0x19,0x9a,0x0a, +0xd7,0x99,0x8e,0x6c,0xa9,0x7f,0xc1,0x0f,0xb0,0x8b,0xc5,0xc9, +0x5b,0x49,0xe1,0x91,0xfc,0xd5,0x69,0x07,0x7b,0x0a,0xf8,0x90, +0x61,0x8f,0xb7,0xde,0x43,0x1c,0x96,0x44,0x91,0x90,0xb5,0xde, +0x9b,0x8d,0xb7,0xb7,0xd9,0xf1,0x5d,0xaf,0x8a,0xdf,0xa4,0xff, +0xf0,0x3f,0x95,0x6f,0xd4,0xc2,0xa8,0xf2,0xf5,0x30,0x69,0xd4, +0x07,0xc4,0x77,0x8d,0x2a,0xdf,0x97,0x8e,0xc8,0x6f,0x9f,0x45, +0x67,0x21,0x57,0x96,0x53,0x99,0x59,0x9b,0x8e,0x13,0xca,0xe6, +0xf4,0x2c,0xd0,0xdb,0xf6,0xb7,0xf2,0xfd,0x2c,0x19,0xd8,0x57, +0x1d,0xdb,0xa9,0xf2,0xed,0x91,0x94,0xef,0xfe,0x07,0xe5,0xb3, +0xa6,0x0e,0x27,0x6d,0xd3,0xfd,0xdd,0x3f,0x1f,0x2c,0xef,0xe5, +0xe7,0x5d,0x57,0xbf,0xe7,0x73,0x85,0xca,0xc8,0x53,0x4d,0x63, +0x13,0xce,0xdb,0x50,0xae,0xcf,0x03,0xff,0xf8,0xab,0x37,0x99, +0xff,0xe2,0x84,0x52,0x3c,0xf2,0x41,0x17,0x27,0x6a,0xcc,0xfa, +0x8f,0x2a,0xe2,0x38,0xb4,0x27,0x54,0x54,0x93,0xa5,0x0a,0x6a, +0xc3,0x52,0x09,0x88,0xc9,0xe8,0xac,0x0b,0xce,0xf8,0x07,0x32, +0x4c,0xa6,0x54,0x01,0xaa,0x35,0x2f,0xaf,0x55,0xe2,0xd3,0x90, +0x0d,0x46,0xca,0x53,0xa7,0xfb,0x23,0x8f,0x2e,0x43,0x6f,0xbe, +0xc8,0xa0,0x50,0x35,0x43,0x87,0xc3,0x61,0x30,0x21,0xfe,0xeb, +0xdc,0xb6,0x6a,0xef,0x6c,0xb6,0xe5,0x87,0x9f,0x55,0xbe,0x93, +0xea,0x49,0xcb,0xb3,0x69,0x56,0xf4,0x00,0xbe,0xac,0x00,0x95, +0x44,0x6a,0x65,0x43,0x83,0xd8,0x42,0x19,0x4d,0xa2,0x8c,0xea, +0x4a,0x8c,0x2a,0x3a,0xa0,0xf2,0x4e,0x9c,0x50,0x6d,0xcc,0xe7, +0x96,0x65,0x57,0x65,0xd6,0xa5,0xe3,0xf8,0xb2,0xb9,0x3d,0x0b, +0x4d,0x76,0xa9,0xef,0x5d,0x77,0x80,0xbb,0xc4,0x0a,0xad,0xa8, +0x09,0x6d,0xda,0xd8,0x86,0x87,0x45,0x1c,0x10,0xfa,0xe0,0x9a, +0x18,0x85,0x93,0xa4,0xa2,0x2d,0xbf,0x31,0xa5,0x59,0x89,0x05, +0x71,0x2a,0x45,0x66,0xaf,0xee,0xdc,0xbc,0xd7,0xf5,0x48,0xb1, +0x7d,0xe7,0x95,0x3d,0x5f,0xa9,0x52,0x15,0xdb,0x72,0x4f,0xe3, +0x9e,0xf9,0x03,0x0e,0x2f,0x0a,0xca,0xc4,0xff,0x96,0xc3,0x7d, +0x87,0xeb,0x86,0x5e,0x7c,0xcd,0x7e,0x99,0x6a,0xce,0x5e,0xa9, +0x21,0x51,0x18,0xf1,0xd8,0xe4,0xae,0x66,0x71,0xa8,0xcb,0x91, +0x6f,0xba,0x53,0xfd,0xb0,0xe0,0x05,0x27,0xff,0x14,0x37,0x91, +0x48,0x49,0x1b,0x27,0x69,0xe3,0x78,0x03,0x18,0xe3,0x05,0x6c, +0x38,0xf0,0x9c,0x68,0x26,0xad,0xaa,0xc9,0x29,0xaa,0x9f,0x0d, +0x2d,0x2c,0xce,0xc6,0x53,0x04,0x74,0x5f,0x4b,0xa7,0xd3,0xff, +0x37,0x57,0xcd,0x92,0x9d,0xfd,0x87,0x2b,0xe7,0x7f,0xb8,0xca, +0x91,0x65,0x55,0x66,0xd6,0xa4,0x53,0x07,0x39,0xb7,0x7b,0xb1, +0xe9,0x6e,0xb5,0xbd,0xeb,0x0f,0x70,0x17,0x59,0x61,0x00,0xb5, +0xa0,0x4a,0x9b,0x82,0xb7,0xc3,0x23,0xec,0x80,0x70,0x03,0x3e, +0x15,0x1b,0x2f,0x0b,0x8d,0x30,0x4d,0xbc,0xb4,0x46,0xe2,0xed, +0x11,0x53,0x9a,0x91,0x98,0x17,0xab,0x52,0x68,0xf1,0xff,0xce, +0xdb,0x62,0xe2,0x7b,0xc3,0xe9,0x9e,0xe3,0x35,0x83,0x63,0x7c, +0xf5,0x01,0x99,0x6a,0xde,0x7e,0x0e,0x9f,0x43,0x08,0xf1,0xdc, +0xec,0xa9,0x65,0x79,0xa4,0xd3,0x81,0x6f,0xb8,0x51,0x7e,0xbb, +0xe0,0x39,0x27,0xff,0x0c,0x77,0xfd,0x3f,0xf1,0x86,0x8e,0xa2, +0x1b,0x89,0x7c,0xe9,0x0e,0xac,0xef,0x0d,0xb3,0x40,0x3e,0xe7, +0x40,0x31,0x4e,0x4c,0x5a,0xc7,0xa1,0xe1,0x19,0x92,0xf7,0x26, +0x0d,0x26,0xc4,0x7c,0x65,0x14,0xc7,0x9f,0x51,0x0d,0x5b,0xe8, +0xbd,0x4c,0xda,0xbc,0x26,0xdd,0xa6,0xd6,0xda,0x81,0x96,0x86, +0x82,0x6b,0x97,0xd4,0x4a,0x89,0x90,0x7b,0xff,0xea,0xfa,0x3d, +0x1b,0x26,0x71,0x6d,0xb8,0x1b,0x96,0x82,0x59,0x1f,0x9a,0xc1, +0x22,0x2d,0x1a,0xfe,0x76,0xe8,0xc2,0x5b,0x36,0x60,0x89,0xf5, +0x06,0xcd,0x3d,0x06,0x37,0xec,0xef,0x3b,0xbd,0xa2,0xd6,0x55, +0xb5,0xac,0x71,0xf3,0x65,0x55,0x1d,0xed,0xfd,0x26,0xdb,0x6d, +0xa8,0x1e,0x3e,0xaa,0xbf,0xdb,0x35,0x34,0xdc,0xad,0x73,0xc5, +0xe8,0x91,0x69,0x65,0x0f,0xbf,0xbd,0x55,0xb3,0xcd,0xa4,0x93, +0xc3,0xc7,0x42,0x01,0xa1,0xca,0xa6,0x09,0x7f,0x30,0xda,0xa0, +0x4c,0xd6,0x62,0xc4,0x2b,0xd6,0x76,0x64,0x1b,0x11,0xf6,0xc0, +0x3d,0x14,0x69,0xd2,0x9f,0xaa,0xaf,0xf0,0x96,0x69,0x4a,0xcd, +0x68,0x51,0x11,0x16,0x8a,0xfb,0x44,0x3f,0x16,0x58,0x61,0x1c, +0xc1,0x9a,0xf6,0x41,0x4a,0x81,0x2f,0x8b,0x4b,0x71,0x1f,0x81, +0x69,0xbf,0xe2,0x34,0x3a,0x41,0xa5,0x60,0x4a,0xee,0xc1,0xb4, +0x32,0x98,0x95,0x48,0xed,0xab,0x7f,0x10,0x4b,0x99,0x14,0xc9, +0x11,0x76,0xe9,0xc4,0x53,0x47,0x48,0xd5,0x6e,0x1e,0x4d,0xac, +0xb9,0x34,0x34,0xef,0x00,0x7d,0x60,0xda,0x5a,0x4c,0xa9,0x59, +0xeb,0xf7,0x68,0xeb,0xa3,0x0e,0x8e,0x33,0x33,0x6f,0x45,0x06, +0x74,0x8c,0xd1,0x14,0xd7,0x82,0x16,0x1b,0xee,0x1b,0xec,0x13, +0xe8,0xcd,0x49,0x8b,0xdb,0xb3,0x18,0x2f,0x37,0x0f,0x37,0x37, +0x8f,0x81,0x80,0x3e,0xbf,0x4e,0x3f,0x6d,0x77,0x55,0xbf,0x0d, +0x11,0x69,0xd2,0xc6,0xf7,0xb4,0xaf,0x8b,0x6f,0xd6,0xf7,0x7a, +0x75,0x7a,0xb6,0x78,0xc9,0x3a,0x79,0xeb,0x3c,0xab,0x5c,0x8b, +0xec,0xb6,0xba,0xca,0xd6,0xa2,0x1e,0xee,0x79,0x3b,0x56,0x30, +0x19,0xf9,0xa9,0x79,0xc9,0xb9,0x1c,0x98,0xc3,0x74,0xa6,0xca, +0x22,0xbb,0x2c,0xab,0x3a,0xa3,0x5e,0x31,0x7d,0x56,0xe9,0x82, +0x8e,0x25,0xa6,0x3b,0xd4,0x76,0xaf,0xdd,0x57,0xa1,0xc3,0xbf, +0xb8,0x7d,0xed,0x5e,0xe7,0xc3,0x96,0x5d,0x03,0x7b,0x1e,0xec, +0xad,0xe8,0xe3,0xb7,0xdf,0xd3,0xbe,0x6b,0x49,0x11,0x50,0x92, +0xe0,0x41,0x50,0x71,0x18,0x14,0x99,0xcb,0x87,0xc9,0x30,0xcc, +0x38,0xcc,0xe2,0x13,0x73,0x02,0x8a,0x07,0x29,0xa2,0x03,0xdd, +0x1b,0x04,0x66,0x1c,0xc4,0x19,0x8c,0x10,0xdf,0x47,0xa2,0xf0, +0xb3,0x63,0x38,0x49,0x0f,0xc7,0x1b,0xc3,0x18,0xef,0xbf,0x55, +0x58,0x05,0x4d,0xc8,0x7e,0x9c,0x73,0x8b,0x05,0xb3,0xfd,0xe4, +0x16,0xcc,0xdb,0xcf,0xea,0xe2,0x46,0xe2,0x63,0xe5,0x74,0xd4, +0xdc,0xd9,0x26,0xc3,0x3a,0xdd,0x2a,0x35,0x27,0x37,0x27,0x2f, +0x2b,0x8f,0x5a,0x6a,0x25,0x18,0xd3,0x4f,0x7c,0x29,0x83,0x59, +0x09,0xb0,0x98,0xeb,0x1d,0xc4,0xac,0x0f,0xb1,0xa3,0x4b,0x37, +0x9e,0xf7,0xc5,0x85,0x96,0xb8,0x76,0x23,0x7e,0x52,0x6b,0xc2, +0x97,0x34,0x14,0x76,0xe4,0xf5,0xa6,0xe2,0xd8,0x92,0x79,0xed, +0x8b,0x2d,0x76,0x6a,0xaa,0x6e,0x3d,0xb0,0xfd,0x4f,0x3e,0x32, +0x35,0xe2,0x62,0x78,0x64,0x78,0x14,0x7f,0xfa,0x92,0x42,0x62, +0x51,0x6c,0x75,0x87,0x52,0x9a,0x96,0x17,0xbb,0x25,0xcc,0x42, +0x4d,0x4b,0xf9,0xc8,0xf3,0xc8,0xe4,0xe3,0x97,0x8e,0x47,0x28, +0x46,0x44,0xd2,0x77,0x13,0x4a,0x62,0xab,0xdb,0xe8,0xbb,0x81, +0xec,0x8a,0x00,0xdd,0xad,0x9b,0x94,0xeb,0x2c,0xdb,0xbb,0x8a, +0x9b,0xd3,0xeb,0x14,0x2f,0xc6,0x5e,0x3a,0x1f,0x7d,0xea,0x77, +0x9c,0xc9,0x0f,0x77,0x94,0x37,0x67,0xd5,0x5d,0x8a,0xbd,0x78, +0x2e,0xe6,0xd4,0x5b,0xfc,0x9c,0x2f,0x2f,0x2f,0x31,0xff,0xea, +0xd6,0x95,0xbb,0xad,0x0f,0x15,0x9b,0x76,0xf5,0xa9,0xde,0xd9, +0x57,0xd9,0xcb,0xef,0xbe,0xa7,0x7b,0xd7,0xfa,0x01,0x27,0x86, +0x09,0xbf,0x90,0x8c,0xc5,0xcf,0xf6,0x00,0xbf,0xb3,0xb4,0x97, +0x47,0xfe,0xee,0xde,0x07,0x9e,0x8f,0xb9,0x7d,0x8c,0xe7,0xce, +0xbd,0x3b,0xf0,0x4b,0xd5,0x52,0xea,0xf7,0xbe,0xb8,0xfd,0xf2, +0x71,0xe6,0x8f,0x9c,0xd0,0x44,0xc1,0xd9,0x09,0xfc,0xcc,0x1b, +0x27,0x19,0xe2,0x78,0xd3,0xf7,0x3e,0xc0,0x1e,0x07,0x45,0x4e, +0x8c,0x3d,0x45,0x8c,0x20,0xb1,0x93,0xc5,0x75,0xf8,0x1b,0x81, +0x10,0x34,0xc4,0x10,0x16,0xce,0x52,0x63,0xc2,0x10,0x30,0x83, +0x10,0x16,0xbb,0x4d,0x09,0xce,0x5c,0x01,0x33,0x59,0x38,0x23, +0x9d,0x60,0x98,0xf9,0xc3,0x68,0xc5,0xc0,0x02,0x21,0x9d,0x34, +0xb6,0xca,0x2e,0x67,0xdf,0xe7,0x6e,0x76,0x60,0x1e,0x93,0x5c, +0x90,0x58,0x98,0x50,0x60,0x9c,0xc4,0xbb,0x6f,0x30,0xdf,0x73, +0xf0,0x70,0x95,0x1d,0x9f,0x9b,0x93,0x9d,0x93,0x91,0x9b,0x67, +0x2e,0xb3,0xa9,0xb5,0xb7,0x70,0xd4,0x76,0xdb,0x7b,0xac,0xd0, +0x84,0x7f,0x54,0x32,0x5c,0xde,0xd1,0xd0,0x63,0x73,0xcd,0xf1, +0xa1,0x4b,0x61,0x1b,0xbf,0xb7,0x54,0x43,0x66,0x5c,0xcd,0x8d, +0xe8,0xe1,0x0c,0xd2,0x0b,0xc9,0x34,0xc2,0x9e,0xed,0xa0,0x83, +0xd3,0x04,0x70,0x3d,0x93,0x6a,0xad,0x70,0x8d,0x69,0x4e,0x97, +0xce,0x5d,0x85,0x46,0xb1,0x15,0xe5,0x56,0xf5,0x0e,0xc5,0x26, +0x32,0x45,0x67,0xc7,0x66,0x97,0x2a,0x8f,0x1a,0x3b,0x45,0xdc, +0x0a,0x73,0xb4,0x71,0x0e,0x6e,0x67,0xda,0x4a,0xea,0xab,0x4a, +0x6a,0x8f,0x96,0xf2,0x1e,0xf6,0x56,0x8e,0xa6,0x1e,0xa5,0x4e, +0x7c,0x24,0x23,0x5c,0xb9,0x48,0xa4,0xbd,0x42,0xd2,0x6e,0xa1, +0xdd,0x4c,0x90,0x8e,0x97,0xa9,0xbd,0xad,0x55,0x9d,0x73,0xb3, +0x5f,0x0f,0x87,0xdd,0x0b,0x49,0x8e,0x6b,0xba,0x43,0xea,0xd1, +0xc6,0x4c,0x3e,0xac,0x21,0xa0,0xc2,0x4f,0x26,0xb5,0xfc,0xd8, +0x48,0x72,0x9b,0xb3,0xfa,0xe3,0x5a,0x2c,0x12,0xf9,0x28,0xf3, +0x00,0x03,0x3f,0x2b,0x0e,0x54,0x70,0x2b,0x31,0xde,0xbf,0xcf, +0x12,0x27,0x5b,0xe6,0x99,0xf1,0xc3,0x79,0x43,0x25,0x9d,0xd5, +0xd2,0x79,0x04,0x0f,0x0b,0x3b,0x5b,0x03,0x67,0xcf,0x02,0xe7, +0x52,0xe7,0x42,0x6b,0x57,0xbe,0xf4,0x58,0x89,0x57,0xb1,0x97, +0xae,0xc7,0x3e,0xef,0x8d,0x01,0xb9,0x14,0x3c,0x04,0xf7,0xc0, +0xcc,0x6f,0xfa,0xe1,0x4b,0xae,0x06,0x6d,0xd8,0x1c,0x2a,0x84, +0xd4,0x02,0x4e,0x78,0xdc,0xf9,0x5f,0x63,0x8c,0x18,0x41,0xc0, +0x41,0x62,0x15,0x9e,0x58,0xa9,0x72,0x85,0xfd,0x3d,0xe7,0xe7, +0x92,0xaf,0x1b,0xdd,0x9a,0xf9,0xed,0x47,0x37,0x1d,0x5b,0xe4, +0xcf,0x01,0xa3,0x85,0x61,0xac,0x7a,0xbe,0xdb,0x53,0x65,0x30, +0x60,0x9a,0x72,0xb2,0xea,0x55,0x5e,0xb0,0x5a,0x39,0x0a,0x52, +0xa9,0xa0,0x4e,0x21,0x8b,0x34,0x5e,0x68,0xbc,0xd8,0x18,0xcd, +0x61,0x48,0x07,0x1c,0x67,0x4b,0x2e,0x15,0x5f,0x2a,0x8d,0x49, +0x3b,0xca,0xd7,0xa5,0x07,0x37,0x79,0xb7,0x1f,0xab,0x55,0x74, +0x08,0x4a,0x0c,0x4a,0x08,0x4a,0x08,0x54,0xb4,0x3e,0x69,0x7d, +0xc6,0xf2,0x4c,0x5b,0x43,0x4b,0x57,0xd7,0xb0,0x7d,0x31,0x7f, +0xcc,0xc9,0xcd,0xd1,0xd9,0x29,0x3c,0x2d,0x34,0x3d,0x24,0xad, +0xbc,0xac,0xb4,0xb6,0xb4,0xf1,0x68,0x21,0xef,0x6d,0xe7,0x6e, +0xef,0xe2,0x1c,0x96,0x1a,0x96,0x14,0x99,0xe0,0xec,0xc2,0x57, +0xb9,0xd4,0x5b,0xca,0xec,0x03,0x02,0x03,0x82,0x02,0x82,0xb9, +0x73,0x01,0xfe,0xd2,0xf2,0xc6,0x77,0xb0,0x81,0x54,0xba,0xd6, +0x5a,0x96,0x3a,0x04,0x06,0xf9,0x4b,0xaf,0x07,0x06,0x9c,0x0b, +0x9c,0x1e,0x67,0xde,0x70,0xa1,0xfe,0x62,0xfd,0x25,0x45,0x0c, +0xee,0x1a,0x25,0xa3,0x34,0xba,0x34,0x3a,0x2e,0x2c,0x36,0x34, +0x26,0xac,0x2e,0x83,0x0f,0x6c,0xf2,0x6a,0xf5,0xaa,0x71,0x08, +0xe4,0x13,0x43,0x28,0x31,0xc1,0xd6,0x27,0xad,0xce,0x58,0x9d, +0xe9,0x6c,0x68,0xeb,0xec,0xbd,0x6a,0x57,0xcc,0x7b,0x3a,0x3a, +0x3b,0x38,0x38,0x52,0x4a,0x32,0x42,0xd2,0x2a,0xcb,0xcb,0x6b, +0xcb,0x9a,0x8e,0x16,0xf0,0x9e,0x76,0xae,0x76,0x4e,0xce,0xa1, +0xa9,0x61,0x29,0x11,0x09,0x1e,0x1e,0xfc,0x45,0xac,0x33,0x07, +0x9a,0x4b,0xa7,0x03,0x21,0x16,0x10,0xd9,0xcc,0xe2,0x09,0xdc, +0x46,0x2c,0xe1,0x64,0x13,0x8b,0x5f,0x4c,0x68,0xc2,0x93,0x96, +0x2c,0x32,0x16,0x24,0xdb,0x24,0xd5,0x3c,0x5d,0xbf,0x25,0x85, +0x0f,0xe9,0x0e,0xec,0x0c,0x68,0xe2,0x84,0x9a,0x20,0x92,0x6f, +0x9c,0x61,0x9a,0xa5,0xd7,0x42,0xa9,0xe8,0xf5,0x6b,0xf7,0x6d, +0xe1,0x46,0x6a,0x71,0x07,0x29,0xea,0x49,0xed,0x4e,0xec,0x32, +0x4f,0xe4,0x23,0x4d,0x02,0x75,0xbd,0xcd,0x39,0xf9,0x47,0xc1, +0xa4,0xa8,0x2b,0xbd,0x2b,0xa5,0x83,0xbe,0x76,0xdc,0xcc,0x5f, +0xdf,0xdb,0x92,0x0b,0x39,0x4e,0x60,0x25,0x9e,0xc3,0x95,0x2c, +0x18,0xc0,0x04,0xea,0x31,0xe6,0xdd,0xa2,0x39,0x3c,0xc6,0x91, +0x6e,0xf1,0x35,0x9b,0x91,0x99,0x9a,0x95,0x9c,0xad,0x97,0xc1, +0x1b,0xef,0x58,0xbc,0x17,0x89,0x61,0x99,0x25,0x3f,0x94,0xdf, +0x2f,0x6b,0xaf,0xec,0xb0,0xb8,0x66,0xf3,0xc4,0x71,0xb6,0x3b, +0x7e,0xe9,0x8f,0xeb,0x82,0xa4,0xa6,0xbd,0x6a,0x99,0xb0,0xac, +0x18,0xa6,0x34,0x00,0x6b,0x03,0x2a,0x6e,0xb0,0x21,0x28,0xb3, +0x9b,0x47,0x95,0x34,0x9c,0x9c,0xb7,0xb8,0xf8,0x45,0xed,0xb5, +0xf6,0xe6,0x41,0x6e,0xcf,0x34,0x53,0x23,0x35,0xdb,0xf5,0x2e, +0x4b,0xaa,0xf6,0xd4,0x1b,0xb4,0x70,0x53,0x05,0x6d,0x79,0x16, +0x41,0x13,0x26,0x2e,0x2b,0x2e,0x2b,0x36,0x5b,0x27,0x8e,0x77, +0x99,0xaf,0xb3,0x6a,0xa3,0x6a,0x95,0x15,0x9f,0x94,0x90,0x98, +0x90,0x98,0xc8,0xe1,0x76,0x16,0x37,0x44,0xe2,0x02,0x23,0xfc, +0x58,0xb9,0xc3,0xa6,0xe8,0x76,0xe6,0xbd,0xc4,0x77,0x8a,0x50, +0x8e,0x9b,0x70,0xb6,0x54,0x41,0x00,0x3e,0x62,0x1a,0xb3,0xa4, +0x12,0xe2,0xdf,0x20,0xc7,0x96,0x54,0xcb,0xfa,0xd2,0x9b,0x39, +0x21,0x46,0x74,0x27,0x8b,0xa4,0x4e,0x61,0x47,0xc4,0x5f,0x58, +0xcc,0x30,0x4e,0xd2,0x80,0xd8,0x0e,0x05,0x3c,0x7d,0x05,0xe2, +0xd9,0xf7,0x54,0x9f,0xac,0x85,0x19,0xc4,0xf8,0xea,0xe1,0x6b, +0x7a,0xed,0xd6,0xb6,0x7c,0x9f,0xd1,0x15,0xb5,0x8e,0x23,0x1c, +0xfe,0x0b,0x76,0x91,0x60,0x5b,0x77,0x63,0x97,0xa3,0x1c,0x6e, +0x61,0x2a,0x6a,0x4b,0x9a,0xf2,0x5a,0xb8,0x7a,0xbc,0x41,0xe6, +0x82,0xe2,0xef,0x4c,0x37,0x2a,0x52,0xaf,0x0b,0x13,0x50,0x91, +0x85,0x9e,0x03,0xc4,0xe8,0x86,0xce,0x55,0xcd,0x3e,0xab,0xa3, +0xfc,0x80,0x4e,0x9f,0x7a,0xe7,0x41,0x4e,0xdc,0xdc,0x4f,0x70, +0x31,0x8e,0x63,0xa3,0x9b,0x2f,0xb4,0x5f,0xe8,0xe5,0x60,0xf5, +0x34,0xfa,0xd9,0xc5,0x38,0x81,0x99,0x2a,0xc8,0xe4,0x16,0xa4, +0xf3,0xf0,0x2d,0x9d,0xfd,0x18,0x4a,0x9f,0xf6,0x1b,0xdd,0xc2, +0xf7,0xdb,0x8d,0xea,0xc5,0xcf,0x2f,0xf7,0x09,0xd3,0xbb,0xc5, +0xe9,0x50,0xf4,0x8e,0x5d,0x11,0x6a,0xb5,0xd7,0x44,0xb9,0xd2, +0xfa,0x59,0x5f,0xf6,0xd5,0x8b,0xef,0x15,0x6f,0x50,0xe7,0x6e, +0x96,0xef,0xdb,0xa2,0xdc,0xc7,0xc8,0x92,0x53,0x4a,0x55,0xde, +0xb1,0xa6,0xc9,0x0a,0x0b,0xec,0x58,0xff,0x88,0xb8,0x02,0xa9, +0x8d,0xf6,0xa7,0x9d,0x87,0xe0,0x3d,0x2b,0x84,0x88,0xc6,0x64, +0x55,0xa0,0x82,0xf0,0x4a,0x43,0xfc,0x99,0xc5,0x18,0x23,0xca, +0xe6,0x49,0x89,0xcd,0x21,0x48,0x60,0x7f,0xca,0x56,0x40,0x2d, +0x81,0x27,0x16,0xd7,0xf5,0x6e,0x18,0x77,0x58,0xd9,0xf1,0x9d, +0x06,0xbd,0x07,0x1b,0x0f,0x73,0x78,0xff,0x09,0xc1,0xd0,0x67, +0x10,0xca,0x20,0x3f,0x61,0x13,0x86,0x3e,0x67,0x85,0xdb,0x78, +0x86,0x58,0xdc,0x32,0xbe,0xae,0x37,0x60,0x61,0xcf,0xf7,0x68, +0x76,0x1c,0x6a,0x3e,0xc0,0x61,0x2b,0x2c,0x22,0x6b,0x30,0xf4, +0x35,0x3b,0x55,0x68,0x92,0x4a,0xbb,0xaa,0xb1,0xb0,0x3a,0x1d, +0xa6,0x95,0xfc,0x54,0xe7,0xd2,0xc9,0x2f,0xb2,0xc3,0xcf,0xdc, +0x51,0x37,0x80,0x26,0x6c,0x2c,0x46,0xfb,0xa3,0xca,0x01,0x24, +0xca,0x5d,0x16,0xf7,0x41,0x39,0x17,0xd6,0x5e,0x84,0x50,0x45, +0x30,0x10,0xf3,0x86,0x85,0x3c,0x58,0xd1,0xcf,0x88,0x05,0x10, +0x4a,0x2e,0x8b,0x93,0xb4,0x61,0x16,0xcd,0xf9,0xd6,0x18,0xe0, +0xcc,0x55,0x14,0xe5,0x1d,0xe6,0x0b,0x65,0x34,0x0e,0x56,0x70, +0xe2,0xde,0xc1,0xc7,0x60,0x21,0x78,0xa3,0x31,0x5b,0xfa,0x28, +0xf7,0x49,0xea,0x1b,0x6e,0xef,0xc8,0x2a,0x22,0x8c,0x81,0xb9, +0xe2,0x18,0x56,0xea,0xd7,0x79,0xed,0xef,0x3b,0x61,0x16,0x57, +0xa2,0x2f,0x27,0xb4,0x26,0x28,0x5e,0xa4,0xa1,0xe4,0x62,0x44, +0x43,0x2a,0x1f,0x55,0x17,0xd6,0x14,0x5a,0x65,0x13,0xc6,0xc7, +0x84,0xc4,0x06,0xc5,0x04,0x79,0x9f,0xf6,0x3c,0xed,0x7e,0xa6, +0xb1,0xaf,0xa2,0xaf,0xb4,0xcf,0x36,0x9f,0x0f,0x71,0xf5,0x77, +0xf2,0x75,0x8a,0x4c,0x8a,0x48,0x89,0x4c,0x2e,0xa8,0x2a,0x68, +0x4e,0x2b,0xb7,0xc9,0xe1,0x43,0x9d,0x03,0x1c,0x7d,0x5d,0x4e, +0xc4,0x9f,0x8c,0x3b,0x11,0xe7,0xe2,0xca,0x97,0xb8,0x16,0x39, +0x17,0xd9,0x85,0xfa,0xd3,0x47,0x20,0x87,0xee,0xe7,0x48,0xe4, +0xb9,0xa8,0xf3,0x91,0xe7,0x62,0x2d,0xf9,0xc1,0x98,0xfe,0x84, +0xe6,0x84,0x58,0x67,0xbe,0x3e,0xe5,0x64,0x4d,0x44,0x63,0x78, +0xad,0xa2,0x4d,0x78,0x4c,0x48,0x4c,0x50,0x74,0x90,0xa2,0xef, +0xe9,0x63,0x67,0xbc,0xce,0x34,0xf6,0x96,0xf7,0xc9,0xfa,0x6d, +0xf3,0xf8,0x50,0xf7,0x00,0x17,0x7f,0x97,0xa8,0xa4,0xc8,0xc4, +0xa8,0xa4,0xfc,0xca,0x82,0x96,0xd4,0x72,0x9b,0x2c,0x3e,0xcc, +0x35,0xc0,0xc1,0xcf,0xd5,0x3f,0x9b,0x77,0x71,0x29,0xf2,0x28, +0x72,0x2d,0x72,0x50,0x0c,0xf6,0xa5,0x0f,0x7f,0x4e,0x38,0x67, +0x4a,0xe0,0x10,0xfb,0x3e,0xe3,0xc7,0xe2,0x9b,0x95,0xce,0x6d, +0xfc,0x3e,0xa7,0x55,0x9e,0x38,0xc3,0x97,0xc3,0x24,0x16,0x2f, +0x06,0xe3,0x22,0x3d,0x9c,0xaa,0xdc,0x61,0x3e,0x2c,0x2d,0x0d, +0x6c,0xb9,0x00,0x27,0x14,0x29,0x26,0xac,0x1a,0x14,0xaa,0x7e, +0xee,0x65,0x46,0x1e,0x89,0x7e,0x44,0xf8,0x52,0x30,0xeb,0x12, +0xcd,0xe0,0x67,0xed,0xff,0x22,0x97,0x2f,0x0b,0x9b,0xba,0x59, +0x71,0x6e,0x1b,0x19,0x88,0xe9,0x8b,0x6f,0x4a,0xbc,0x18,0x71, +0x31,0xe2,0x42,0x44,0x7d,0x22,0x7f,0xb2,0x26,0xb2,0x29,0xbc, +0xd6,0x36,0x82,0x8f,0x09,0x8e,0x0e,0x8c,0x0e,0xf4,0x3d,0xed, +0x4d,0xe9,0x6d,0xba,0x5c,0x76,0xb9,0x74,0xc0,0x36,0x97,0x0f, +0xf3,0x08,0x74,0x0d,0x90,0xe8,0x4d,0x8a,0x48,0xcc,0xaf,0xcc, +0x6b,0x4c,0x93,0xd9,0x52,0xb9,0xb8,0x04,0x38,0xf9,0xbb,0x05, +0xa7,0xf2,0x2e,0xae,0xc5,0x9e,0x85,0xee,0x85,0x4e,0x8a,0xc1, +0xc7,0x82,0xbc,0x03,0x7d,0x4f,0x50,0x79,0x44,0x9d,0xe3,0xc0, +0xdb,0x8a,0x0c,0x46,0xf7,0xc7,0xb7,0x24,0x5c,0x8c,0xbc,0x10, +0x71,0x31,0xb2,0x3e,0x99,0x3f,0x59,0x1b,0xd1,0x1c,0x56,0x7d, +0xf4,0x38,0x4f,0x65,0x12,0x18,0x1d,0xe0,0x73,0xda,0xf3,0x8c, +0xc7,0x99,0x86,0xde,0xaa,0xc1,0xd2,0xfe,0xa3,0x54,0xf8,0x6e, +0x01,0x4e,0x7e,0x54,0xf8,0x91,0xc9,0x11,0x49,0x54,0xf8,0x4d, +0xe9,0x65,0x74,0xe4,0x10,0x67,0x7f,0x47,0x5f,0xd7,0x13,0x71, +0x27,0xe2,0x4f,0xc4,0xba,0x3a,0xf1,0x25,0xee,0xc5,0x2e,0x45, +0x0e,0x21,0xbe,0x21,0xfe,0x21,0xfe,0xdc,0x89,0xa8,0x73,0x51, +0xd3,0xa7,0xfe,0x35,0x17,0xca,0x09,0xa4,0x8b,0x8b,0xd8,0x8c, +0xea,0xf4,0x9a,0x94,0x5a,0x4e,0x98,0x39,0x20,0x4e,0x66,0x92, +0x6a,0x12,0x6a,0xe2,0xaa,0xb4,0x52,0xf8,0xc0,0xb9,0x56,0x48, +0xb4,0x96,0xb6,0x59,0xf1,0x31,0xf1,0x31,0x09,0x31,0x09,0x1c, +0xba,0x98,0x6b,0xb5,0x60,0xfb,0x00,0xb4,0xc3,0x55,0x3c,0x86, +0x9b,0x46,0x7b,0x7a,0xce,0x65,0x9a,0x73,0x32,0xda,0x54,0xc0, +0xb9,0x71,0x80,0x1d,0x39,0x0e,0x3f,0xd1,0x98,0x3e,0x48,0xf3, +0xb7,0x45,0xd2,0x11,0x94,0x6d,0x9a,0x30,0x76,0x35,0x83,0x61, +0x3e,0x78,0x78,0x25,0x2e,0x52,0x6e,0xb7,0x7a,0x06,0xd3,0xcb, +0x61,0x6d,0x3c,0x98,0x2a,0xc2,0x97,0x0c,0xae,0x3d,0x8d,0xe3, +0x8f,0x6f,0x55,0x36,0x3c,0x11,0x16,0x62,0x3b,0x7d,0x3b,0x93, +0x71,0x44,0xe1,0x36,0x73,0xa3,0xb4,0xf4,0x59,0xb2,0x4a,0xf2, +0xbf,0x62,0xe0,0x13,0x70,0x51,0x42,0x6d,0xe6,0x42,0xee,0xf9, +0xbc,0x7c,0x25,0xc1,0xf2,0x30,0x41,0x6b,0xfc,0x04,0xac,0x59, +0x50,0x9b,0x06,0xd2,0x35,0x61,0xa6,0xfe,0xa5,0x2e,0x5f,0x4b, +0x7a,0x45,0x86,0x4d,0x2d,0x4f,0xaa,0x88,0xaf,0xd4,0x4f,0xe6, +0xfd,0xe7,0xeb,0xaf,0xda,0xa9,0x51,0x6b,0xc9,0x37,0x54,0x55, +0x36,0x15,0xb7,0x73,0xf8,0x9b,0x05,0x01,0x97,0x41,0x5c,0xf9, +0x81,0xa0,0x1d,0x9a,0x30,0xfe,0x03,0x41,0xea,0xcb,0x71,0x31, +0x25,0xe8,0x39,0xcc,0x28,0x87,0x35,0x09,0x12,0x41,0x4a,0x94, +0xa0,0x53,0x38,0x3e,0xe2,0x03,0x41,0x36,0xd3,0xb7,0x49,0x04, +0xdd,0x61,0x6e,0xfe,0x87,0xa0,0x8f,0x25,0x82,0xf4,0x98,0x0b, +0x79,0x12,0x41,0xf2,0xd3,0x2e,0x04,0xc3,0xa4,0x10,0xca,0xa0, +0xb7,0x1e,0x78,0xd3,0x84,0x4e,0x4b,0x9c,0x7e,0x19,0xde,0x50, +0x1d,0x9a,0x34,0x20,0x48,0xc5,0x64,0x73,0x37,0x33,0x29,0x7a, +0x0a,0x57,0x3f,0xd4,0xd1,0x87,0x3b,0x68,0x0e,0xe3,0x20,0x8c, +0x1a,0x59,0x8e,0x3c,0x82,0x7c,0xad,0xbe,0x5e,0x9c,0xac,0x23, +0x7f,0xd0,0xcf,0x1a,0x61,0x2c,0x59,0x73,0x15,0x16,0x60,0x16, +0x5b,0x5c,0x59,0x50,0x9f,0x59,0xae,0x99,0xcd,0xfb,0x59,0x79, +0x9a,0x51,0xbf,0x28,0x16,0xe2,0x82,0xab,0xaf,0x19,0x38,0xf1, +0x35,0x09,0xaa,0xf0,0x68,0xf0,0xcf,0xd3,0x09,0xe0,0x73,0x3d, +0x0a,0x6c,0xd2,0x5c,0x39,0xf9,0x34,0x34,0x20,0xa2,0xea,0xf7, +0xea,0x4b,0xc5,0x55,0xda,0x50,0xc3,0x9c,0xc4,0xd5,0x07,0x37, +0xa3,0xed,0xf2,0x32,0x1a,0x16,0x56,0xde,0x7c,0x75,0xaf,0xe1, +0x67,0x4e,0x98,0xc3,0x9c,0x35,0x3f,0x6d,0x19,0xe9,0xcc,0x39, +0x47,0x06,0x44,0xe8,0x4d,0xc7,0xfd,0xa3,0xf5,0x2f,0xb7,0x32, +0xdf,0xc9,0xf2,0xfb,0xd3,0x55,0x92,0x5b,0x62,0x07,0x2e,0x7e, +0xcb,0x89,0x7a,0x4c,0x5c,0xf1,0xa5,0x92,0x8b,0x65,0x9c,0xd0, +0x4d,0x9d,0xe7,0x7e,0x21,0x8e,0xb4,0x35,0xd7,0xf5,0xca,0x86, +0x38,0x61,0x41,0xaf,0x38,0x85,0x49,0x29,0x4f,0xa4,0x92,0xd5, +0x4b,0xe6,0x8f,0xe1,0x78,0x9d,0x39,0xdb,0x54,0x29,0x72,0xb9, +0xff,0xff,0x8f,0x44,0x85,0x72,0xb1,0x9e,0x58,0x46,0x24,0x34, +0xaa,0xbc,0x67,0xa1,0xa0,0xe1,0x44,0x0f,0x66,0xda,0x2a,0x00, +0xc7,0xc2,0x85,0xda,0xa8,0x6e,0x3c,0x61,0xaf,0xf0,0x27,0xfb, +0x24,0xf3,0x6e,0xee,0x50,0x81,0x77,0x27,0xbf,0xd0,0x06,0xe7, +0xdb,0xe1,0xca,0xa0,0x24,0x7d,0x5e,0xea,0x88,0xd9,0x9c,0xc0, +0xcd,0x65,0x51,0xcb,0x3d,0xde,0x00,0x0e,0x16,0x4b,0xc7,0xaa, +0xd0,0xd0,0x2d,0x56,0x0f,0xb4,0x4b,0x14,0xe6,0xb0,0xaa,0x25, +0x1e,0xf7,0x95,0x29,0xd7,0x4d,0xe9,0x14,0xdf,0xbc,0x61,0x75, +0x33,0x46,0xf1,0x8d,0x70,0x50,0x38,0x4d,0xda,0xda,0xea,0x2f, +0xcb,0x86,0x39,0x61,0x6e,0x9f,0x38,0x91,0x49,0xa9,0x48,0xaa, +0x8c,0xaf,0xd2,0x4e,0xe6,0xbd,0x71,0xaa,0xd6,0xbc,0xcd,0xbb, +0x38,0x3c,0xf2,0x92,0x80,0xcf,0x20,0x6e,0x80,0x45,0x47,0x28, +0xa3,0xbb,0x35,0x61,0xc2,0xdf,0x8c,0x2e,0x1b,0x65,0xf4,0xe5, +0x7f,0x33,0x3a,0xf3,0x6f,0x5d,0xde,0xa6,0x6c,0x30,0xca,0xe8, +0x16,0x89,0xd1,0x7b,0xff,0x77,0x46,0x0d,0xff,0x61,0xb4,0x00, +0x7f,0xa4,0xb9,0x6d,0x0f,0xea,0xc2,0x46,0x70,0xee,0x45,0x67, +0x50,0xd2,0x44,0xa5,0xb9,0x4c,0x72,0x69,0x82,0x2c,0xb6,0xcc, +0x30,0x95,0x0f,0x58,0x66,0xb3,0xe5,0xb0,0x66,0x93,0x3d,0x5f, +0x2a,0x2b,0xaa,0xc9,0x6d,0xe0,0xa8,0xba,0x6f,0x44,0x3d,0x7d, +0xd0,0x43,0x6d,0x8c,0xd2,0x13,0xb2,0x7b,0xd1,0x67,0x34,0xce, +0x85,0x91,0xa4,0xc2,0x84,0xa2,0xf8,0x42,0xbd,0x54,0xde,0x7d, +0xb6,0xe1,0xc2,0x1d,0x3b,0x1b,0x6c,0xf8,0xd6,0xf6,0xba,0x2b, +0x65,0xd7,0x38,0xc1,0xa4,0x87,0x19,0x49,0xc2,0x8f,0x08,0x18, +0x0c,0xe2,0x2c,0x58,0xa4,0x29,0x9d,0x6a,0xd3,0xfc,0x95,0x32, +0x10,0xee,0x87,0x47,0xd6,0xe1,0x02,0xe5,0x36,0xab,0xc7,0xa0, +0x24,0x83,0x75,0x09,0x60,0xae,0x08,0x1c,0x83,0xeb,0x4e,0x23, +0x43,0x67,0xca,0xe8,0x44,0x78,0x88,0xdd,0x74,0x55,0x26,0x43, +0x83,0x6a,0xee,0xb5,0xe2,0xd2,0xa7,0xc9,0x2a,0x49,0xa3,0xc6, +0xe8,0xa6,0x84,0x7b,0x24,0x06,0x72,0xf3,0x95,0xc0,0x1d,0x1d, +0x08,0x2c,0xbd,0x04,0x9b,0xe2,0x61,0x46,0x4a,0x9a,0x7f,0x9a, +0x7f,0xaa,0x5f,0x43,0x05,0x6f,0x73,0xd9,0xbc,0xcf,0xa8,0xc3, +0xda,0x85,0xcf,0x0a,0xc8,0x0c,0xc8,0xf0,0xdf,0x72,0x72,0xf5, +0xa9,0x55,0x67,0x64,0x75,0x79,0x8d,0x39,0xcd,0x1c,0x5c,0xed, +0xc6,0xe3,0x8f,0x8f,0x6c,0x47,0x0b,0x03,0xf8,0x84,0xf1,0xb5, +0xf0,0xb2,0x76,0xb6,0xe2,0x3c,0x3c,0xce,0x79,0x4c,0x17,0xec, +0xc5,0x85,0xe4,0x58,0x54,0x4c,0x91,0x0a,0x94,0x6b,0x63,0x05, +0x7b,0x28,0x3b,0xe0,0xb2,0x72,0x13,0xd3,0x9c,0x26,0xdd,0xec, +0xfd,0x82,0x35,0xc8,0x52,0xc0,0xe5,0xac,0x18,0x72,0x88,0xbc, +0xfc,0xa6,0x12,0xa6,0x5d,0x80,0x95,0x9c,0x0e,0x73,0x0e,0x95, +0x3d,0x90,0xd9,0xba,0x89,0x83,0x21,0x77,0x02,0xff,0xd6,0xc1, +0x7f,0x8f,0xd6,0x37,0xdd,0x40,0x3a,0xf0,0x1c,0x8c,0x65,0x9f, +0xc5,0x3c,0x49,0xb8,0x91,0xe4,0xdd,0xce,0xe3,0x44,0x1f,0x5c, +0x1b,0x89,0xab,0x2f,0xa4,0xe7,0xa5,0xe6,0xa5,0x50,0x50,0xac, +0xde,0x2b,0xae,0x62,0x92,0x8b,0x12,0x8b,0xe3,0x0a,0x75,0x92, +0xf8,0x63,0x4b,0x75,0xe6,0xef,0x3a,0x58,0x67,0xc3,0x17,0xe4, +0xe5,0x15,0xe5,0x94,0x26,0x59,0xf3,0xdd,0x97,0x2f,0x5c,0xba, +0xac,0x32,0x1b,0xc3,0x8d,0xc1,0x80,0xb5,0xb3,0x38,0x64,0x37, +0xcb,0x2a,0xcf,0x94,0x87,0x49,0xed,0x8f,0x1a,0x8b,0xbe,0xe2, +0xe2,0xf0,0x8b,0x1e,0xf8,0x22,0x8e,0x29,0xd8,0xf9,0xb5,0x19, +0x4c,0x34,0xcb,0x6f,0xe5,0x71,0x4c,0xe3,0xfe,0x9a,0xa3,0xcd, +0x9c,0xd8,0x05,0x47,0x09,0x18,0x0d,0xa2,0xca,0x07,0x51,0x6f, +0xd0,0xfc,0x53,0xd2,0x15,0x5f,0x3c,0xb2,0x1a,0x17,0x52,0x51, +0x3f,0x85,0xe9,0x32,0x58,0x9b,0x00,0x66,0x8a,0x94,0x7b,0xc9, +0x28,0x14,0x3e,0x88,0x3a,0xf8,0xe8,0xf4,0x5d,0x4c,0xba,0x86, +0xc2,0x4d,0xe6,0x7a,0x49,0xe9,0xd3,0xa4,0xbf,0xfd,0x9e,0xab, +0x12,0xaa,0xfd,0xe3,0x66,0x26,0xed,0x20,0xb9,0x45,0x39,0x65, +0x69,0x32,0x8b,0x5c,0x3e,0xdc,0xd3,0xc7,0xd1,0x9f,0xe6,0xc6, +0xad,0x4d,0x24,0x3d,0x30,0xc7,0x33,0xc5,0xbb,0x81,0x06,0xc4, +0x82,0x80,0xa2,0xa0,0x4c,0x2e,0x7c,0xe4,0x4b,0xd2,0x01,0xcf, +0x8c,0xbb,0xe1,0xad,0x78,0x00,0xdf,0xb2,0xa0,0x0d,0x9e,0x04, +0x67,0xdc,0x81,0x19,0x4c,0xc7,0x5e,0x72,0x07,0xe6,0xee,0x65, +0x51,0xdf,0x92,0xec,0xc0,0x19,0x8f,0x58,0xd0,0x98,0x06,0x73, +0x77,0xe0,0x5c,0xea,0x3f,0x0f,0x08,0xc3,0x54,0x66,0xb1,0xa0, +0xcc,0x3e,0x8a,0xbf,0x9f,0x74,0x35,0xcd,0xb3,0x8d,0xc7,0x69, +0xae,0xb8,0x3f,0x14,0x37,0x9e,0x4d,0x31,0xe4,0x6f,0x5c,0xb8, +0x1f,0x7d,0x2f,0x96,0x43,0x1e,0xcf,0x19,0x83,0x33,0x6b,0xa9, +0xbe,0xd5,0x62,0x8e,0x49,0x21,0xcd,0xf1,0x98,0xfe,0xaf,0xdb, +0x4b,0x7e,0xe4,0x62,0xf1,0x50,0x1f,0x1c,0x8a,0x63,0x8a,0x96, +0xbf,0x32,0x83,0x8f,0x34,0x0a,0x7a,0xf9,0x25,0xad,0x6b,0x9a, +0xcd,0x86,0x39,0x31,0x7f,0x88,0x80,0xce,0x00,0xce,0xfe,0x20, +0x8e,0x79,0x5a,0xdf,0x53,0x71,0x1c,0xf7,0x47,0xad,0x4d,0x38, +0x97,0x9a,0xce,0x7d,0x50,0x2c,0x81,0x0d,0xf1,0x54,0xf3,0x7e, +0x67,0x70,0xfd,0x69,0x64,0x8f,0x6f,0x51,0x36,0x39,0x79,0x3c, +0xc4,0x61,0xfa,0x41,0x49,0xf1,0x06,0x99,0xe1,0x42,0xd9,0x57, +0x49,0xa3,0x8a,0xf7,0x29,0xb8,0x2b,0xe1,0xfa,0x51,0x69,0xe4, +0x29,0x09,0x7f,0xdd,0x21,0x85,0x15,0x85,0x4d,0x69,0xd5,0xc6, +0xd9,0x7c,0x98,0x93,0xa7,0x99,0xb7,0x1b,0x87,0x43,0xd7,0x48, +0xa6,0x4f,0x9e,0x7d,0x8a,0x7b,0x07,0x8d,0xac,0xa5,0x3e,0x35, +0x81,0x79,0xdc,0xf1,0x91,0x1e,0xd2,0x07,0xdf,0xe9,0x0e,0x08, +0x3b,0x44,0x6b,0x71,0x07,0x0b,0xa6,0x90,0x4f,0x50,0xe5,0x0f, +0x50,0x61,0xfa,0xe7,0x90,0x3f,0x60,0xc1,0x1c,0x16,0x2d,0x4d, +0x08,0xb2,0x74,0xbe,0x58,0x56,0x6a,0x2a,0xbf,0x80,0x5e,0x2f, +0xa0,0x02,0xd9,0x23,0xb8,0x11,0x71,0x37,0x13,0x5d,0x79,0xb1, +0xba,0x46,0x09,0x66,0x08,0x9f,0x0d,0x8d,0x34,0x6a,0xc0,0x7b, +0x9c,0xcd,0xda,0x9f,0x75,0x3c,0xed,0xac,0x2c,0xf2,0x1a,0xc2, +0xc7,0xcc,0x51,0x54,0x47,0x05,0x54,0xc4,0x88,0x79,0x15,0x5a, +0x3c,0x4d,0x23,0x27,0x52,0x03,0x5f,0x56,0x0b,0x76,0x9c,0xa0, +0xc6,0xe8,0x8b,0xf3,0x08,0xfa,0x32,0x07,0x42,0x52,0xae,0xa8, +0x40,0x8c,0x1a,0x66,0xb3,0xab,0x2b,0x5d,0xfe,0x54,0x06,0x0f, +0xa6,0x33,0x2f,0xb7,0x43,0x05,0xd4,0x59,0x8d,0x2c,0x05,0x69, +0x20,0x5b,0x22,0x6e,0x63,0xa2,0x6b,0x2e,0xd6,0xd6,0x2b,0x81, +0xb2,0x30,0x65,0x74,0x20,0xc4,0xb9,0xac,0xed,0x59,0xfb,0xd3, +0x0e,0xca,0xd8,0xc0,0xa4,0x77,0xa7,0x5d,0x4d,0x68,0x53,0xbf, +0xc8,0x1f,0xd7,0xf4,0x5e,0xe3,0xb5,0x8d,0x83,0x7f,0xd3,0x81, +0xf7,0xd3,0x81,0xbf,0xc0,0x93,0x73,0x2b,0xb4,0x79,0xc8,0x00, +0x0e,0xa6,0xc2,0x92,0x3a,0xb0,0xe0,0x84,0xfd,0x74,0x60,0x25, +0x82,0x9e,0x7f,0x0f,0x1c,0xa1,0x86,0x31,0xec,0xea,0x1a,0x97, +0xef,0x94,0xc1,0x9b,0xe9,0x18,0x1d,0xf8,0x08,0xab,0x91,0xa6, +0x30,0x15,0x96,0xca,0x1b,0x08,0x8a,0x72,0x0d,0x10,0x59,0x35, +0x5c,0x41,0xc4,0xeb,0xbf,0x08,0xd7,0x19,0xf1,0x3a,0x2e,0x25, +0xc2,0xf5,0xb9,0xe2,0x75,0x06,0x86,0xf1,0x36,0x01,0x4e,0xf8, +0xa8,0x7f,0xa4,0x51,0x07,0x44,0xe4,0xc4,0x15,0x3a,0xc2,0x0a, +0xd4,0xbf,0x0e,0xfa,0xc2,0x8e,0x7e,0x6a,0x67,0xbb,0xa1,0x80, +0x02,0xcc,0x0d,0xbf,0xc0,0x2b,0x81,0x1b,0xb1,0x12,0x39,0xb8, +0xbb,0x40,0x9c,0xaf,0x2d,0x28,0xb0,0x7a,0x2b,0x71,0xbc,0x2a, +0x1e,0xdb,0x5a,0x44,0x49,0xbb,0xf0,0xfd,0x0f,0x57,0xeb,0x61, +0x32,0x35,0x99,0x87,0x57,0xe0,0x61,0x1c,0x53,0x87,0x93,0x41, +0x41,0x1d,0x2e,0x2d,0x2d,0xec,0xe7,0xd1,0xff,0x29,0x7e,0x74, +0x57,0xe7,0x2d,0x07,0x51,0x02,0x4b,0xc4,0xaf,0xff,0x10,0xbe, +0x66,0x70,0xf5,0x84,0xd9,0xe2,0xd7,0x7f,0xb2,0x53,0x61,0x85, +0xbc,0x99,0xe0,0x63,0xb9,0x1a,0x3c,0x66,0x8f,0xd0,0xfc,0x5f, +0xbc,0xf9,0x42,0xb8,0xc9,0x88,0x37,0x71,0x3a,0x11,0x6e,0xae, +0x17,0x6f,0x32,0x72,0x1d,0xfc,0x83,0xc6,0xfc,0x99,0xc9,0xec, +0x77,0xc2,0xf2,0xde,0x91,0xf7,0x7a,0xc2,0xcc,0x65,0x6c,0xb8, +0x38,0x45,0x0f,0xfe,0xcd,0x1e,0x5d,0x87,0x9f,0xeb,0x61,0x94, +0x41,0x9e,0x06,0x0f,0x2d,0x77,0x61,0x4c,0x7f,0x3e,0x7c,0xca, +0xc5,0x32,0x85,0xf8,0x29,0x7c,0xa6,0x03,0x4d,0xaa,0x39,0x43, +0x3c,0x1e,0xef,0x46,0x95,0x5e,0xcb,0x7f,0x71,0x53,0x61,0x95, +0x34,0xd2,0x0d,0xb9,0x09,0xdc,0xa0,0x23,0x7d,0x49,0xc4,0x17, +0x5f,0x09,0x2f,0x18,0xf1,0x05,0x4e,0x23,0xc2,0x8b,0x2d,0xe2, +0x0b,0x66,0x09,0x86,0x13,0x9c,0x17,0x30,0x4b,0x73,0x95,0x72, +0x97,0x95,0xc2,0xcd,0x3f,0xb3,0x81,0x85,0xcd,0x4a,0x9d,0xf2, +0x98,0xbe,0x91,0xeb,0xac,0xe0,0xbe,0x92,0x1c,0x54,0x65,0x70, +0xf2,0xba,0x3d,0x78,0x62,0xb7,0x72,0x81,0x36,0x98,0x5f,0x81, +0x8f,0x1e,0xa6,0xc0,0x78,0xc5,0x38,0x26,0x05,0xc7,0xc3,0xc7, +0x3b,0xc0,0xe2,0x48,0xce,0x20,0x8f,0x91,0xf7,0x56,0xdc,0x85, +0x8f,0x94,0xa6,0xc2,0x62,0x79,0x13,0xc1,0x9f,0xe5,0x7a,0xf0, +0x33,0x7b,0x58,0x6a,0x23,0xf2,0xf0,0xad,0xf0,0x90,0x11,0x1f, +0xe2,0x7c,0x22,0x3c,0x5c,0x2e,0x3e,0x64,0xe4,0xc7,0x45,0xaa, +0xa5,0x9b,0x0a,0x90,0xc8,0xe6,0xd5,0xfd,0xdc,0x77,0xef,0x66, +0xd7,0x63,0x0e,0x56,0xf6,0x89,0x1b,0xbe,0x51,0x5f,0x25,0x2e, +0xd2,0x85,0x05,0x4c,0xf7,0xf6,0xfb,0x07,0x7e,0xd5,0x9d,0x6f, +0x8b,0x9f,0xbb,0xe0,0x7a,0x9f,0x6c,0xaa,0x7b,0xfb,0x8b,0x61, +0x6e,0x1d,0xb0,0xdd,0xc0,0x1a,0xc0,0x7c,0x5b,0x38,0xe8,0xc1, +0xa1,0x3f,0x08,0xc4,0x68,0xff,0x01,0x9d,0xa5,0x66,0x4b,0x5a, +0xf7,0xf5,0x1b,0xdd,0xe2,0xa6,0xfe,0xb5,0x4d,0xbe,0x8a,0xf4, +0x89,0xab,0x60,0x9c,0x3a,0x8e,0x13,0x67,0xe9,0x0a,0x63,0x58, +0xa3,0x9d,0xa8,0xb8,0x11,0x2d,0xf6,0x4b,0x73,0xe5,0xf3,0x35, +0x4c,0x7f,0x52,0xf0,0x9e,0xce,0x55,0xc4,0x55,0x88,0xa0,0xee, +0x0d,0xc7,0xc2,0xc2,0x2d,0x10,0xb8,0xa9,0xf0,0x32,0x8f,0x56, +0xb7,0x70,0xde,0x0b,0xfd,0x87,0x1c,0x3e,0x1d,0x09,0x22,0xfd, +0x42,0x83,0xce,0xb0,0x60,0x38,0xb2,0x4e,0x34,0x64,0x85,0x3f, +0xa1,0x8a,0x88,0x0d,0xa0,0x20,0x34,0x30,0x62,0x03,0x6e,0x21, +0x42,0x03,0x4e,0x14,0x1b,0x98,0xa9,0x0f,0xe5,0x8d,0x64,0xe4, +0xcd,0xf0,0x5b,0x30,0x93,0x9f,0x65,0x9f,0x4f,0xa3,0x7a,0x88, +0xf9,0xc7,0x71,0xd5,0x4e,0x5c,0xa1,0xdc,0x6e,0xfe,0x10,0x56, +0xe7,0xc2,0xba,0x0b,0x50,0xa6,0x28,0x1c,0x81,0x2a,0x66,0x84, +0xc7,0x17,0x04,0xe7,0x42,0x09,0x85,0x91,0x60,0x25,0x35,0xba, +0xd9,0x21,0x4c,0xc5,0x1d,0x6c,0xa1,0x78,0x8d,0xa0,0x1d,0x63, +0x13,0x91,0xd0,0x24,0x05,0x81,0xef,0xaa,0x60,0xda,0xed,0x07, +0xc3,0xf6,0xad,0xfc,0x01,0x6d,0x1c,0x73,0x64,0x9d,0x13,0x07, +0x47,0x35,0xc5,0x39,0xec,0xe6,0x62,0xcf,0xa7,0xca,0x60,0xce, +0xb4,0x65,0xe4,0xd2,0x60,0xb1,0x99,0xd5,0xcb,0x54,0x18,0x89, +0x02,0x1a,0x12,0xe6,0xe2,0x4d,0xc9,0xbf,0xdd,0xa5,0x33,0xac, +0x2d,0x68,0x5e,0x66,0x6f,0x04,0x91,0x91,0x2f,0xe0,0x9d,0xfc, +0x0b,0x16,0xcb,0xb1,0x92,0x86,0x75,0xf0,0x40,0x1f,0x16,0x07, +0xc5,0x4f,0xc8,0xa1,0x56,0xfd,0x47,0xce,0x3f,0xf4,0xf7,0x0f, +0xdc,0x69,0x7e,0x6e,0x5e,0xc9,0xdb,0xef,0x31,0xd1,0x30,0x35, +0xe1,0x42,0xfb,0x4e,0x5c,0xb9,0xaa,0xd4,0x83,0x35,0xda,0xe0, +0x23,0x7e,0x83,0x3c,0x9b,0xae,0x2d,0xf5,0x3d,0xad,0x4b,0xcf, +0xaa,0x51,0x11,0x14,0xe2,0xd8,0x14,0x34,0x85,0x65,0x78,0x58, +0x58,0x69,0x94,0x75,0x85,0x47,0x83,0x1c,0x9c,0xd4,0xb1,0xec, +0x1a,0x27,0xc6,0x50,0xfc,0xab,0x0d,0x73,0xd8,0x10,0x9c,0xab, +0x87,0xd3,0x97,0xae,0xa8,0xa0,0xbe,0x72,0xec,0xef,0xd7,0x61, +0x45,0x2a,0x1c,0xe2,0x9a,0x58,0x61,0x36,0x66,0x11,0x38,0x45, +0x07,0x3f,0x45,0x35,0xfd,0x0b,0x79,0x1b,0xc1,0xab,0xf2,0x30, +0xb8,0x4a,0xf5,0x61,0x1a,0x19,0x19,0xfb,0x58,0x3e,0x96,0x19, +0x19,0x8b,0x5f,0x10,0xf9,0xd8,0xad,0x23,0x63,0x19,0x48,0xda, +0x49,0x56,0xba,0x4a,0xcb,0x8c,0x9f,0x87,0x71,0x98,0xce,0x6a, +0x84,0xa7,0xe9,0xc1,0x84,0x7c,0xf8,0x48,0xf6,0xae,0x52,0xd1, +0x7d,0xde,0x3a,0x33,0xdc,0x66,0x27,0xd5,0xac,0x8d,0xe8,0xfe, +0xf6,0x7b,0xd0,0x51,0x7a,0xa4,0xbd,0x83,0x0d,0x39,0x17,0x7a, +0x2e,0x4c,0xf9,0xb0,0xcf,0x66,0x9f,0x4d,0x01,0x1c,0x98,0xb3, +0x30,0x26,0x19,0xc6,0xe7,0xff,0x58,0xc6,0xdd,0x13,0x4f,0x90, +0x2b,0x82,0x19,0x04,0x60,0x1d,0x6e,0x60,0x24,0xdc,0x3e,0x9b, +0xe9,0xc8,0x4c,0xa7,0xb8,0xfd,0x35,0xfe,0x4e,0x69,0x59,0x2b, +0xd1,0x72,0x57,0xbe,0x0b,0xee,0x52,0x5b,0x50,0x22,0xe2,0xe5, +0xa7,0xc2,0x65,0x46,0xbc,0x4c,0xcd,0x42,0xb8,0xbc,0x49,0xbc, +0xcc,0xc8,0x3d,0xf1,0x00,0xe9,0xfd,0xaf,0xe9,0x7a,0x10,0xc1, +0xea,0xed,0xde,0x65,0x81,0xe3,0xac,0x65,0xa6,0x7c,0x4f,0x4e, +0x73,0x6e,0x6d,0x01,0x07,0xda,0xcc,0x11,0xd5,0x15,0x06,0x38, +0xd7,0xa4,0xc4,0x88,0x87,0x1d,0x03,0xbf,0xdf,0xbe,0xf5,0x3d, +0x07,0x1b,0x19,0x83,0x45,0xcb,0x37,0xe2,0x22,0xf5,0x4a,0x63, +0x1e,0xb6,0x3f,0xfa,0xed,0xb7,0x5e,0x98,0xc8,0xc1,0xe7,0x01, +0x8c,0xfa,0x69,0x9b,0x70,0x2b,0x65,0xf3,0x30,0xf7,0xf0,0xfd, +0xd3,0xe9,0x2c,0x49,0x05,0x8f,0x26,0x33,0x30,0xa9,0x36,0xff, +0x76,0xb6,0x4a,0x7a,0xef,0xa5,0x87,0x8f,0x94,0x64,0xe2,0x5f, +0x6c,0x51,0x61,0x5e,0x49,0x76,0x39,0x37,0x55,0xfe,0x4e,0xe0, +0xc8,0xea,0x21,0x98,0x23,0x2a,0xde,0x81,0x17,0x30,0x34,0x62, +0x82,0x43,0x70,0x73,0xaf,0x38,0x11,0xe7,0x0c,0xbd,0x61,0xe5, +0x4a,0xd0,0x4b,0xc4,0x97,0x8f,0x85,0x97,0x0c,0x7e,0x3e,0x61, +0x9b,0xf8,0xf2,0x2b,0x56,0xee,0x29,0xee,0x22,0xdd,0x62,0x32, +0x5b,0x54,0x5e,0x50,0x9e,0x2d,0xd3,0x4e,0xe1,0x7d,0x9c,0xdc, +0xec,0x1c,0xed,0x38,0xac,0x35,0x80,0x70,0xc6,0xc1,0xd1,0xd6, +0xc1,0xd2,0xf1,0x5e,0xc8,0x77,0xfe,0xbf,0xf9,0x2c,0xa4,0xd2, +0x0d,0xc6,0x8d,0x51,0x69,0x7a,0x3c,0x18,0xc6,0xc3,0xaa,0x22, +0xf8,0xa8,0x1b,0x26,0x7a,0xc2,0xc7,0xae,0xc0,0x48,0xbd,0x67, +0xe7,0x16,0xcf,0x2d,0x58,0x94,0x37,0x5c,0xdb,0xd9,0x5e,0x3b, +0xc8,0x61,0x18,0x9d,0xa4,0x55,0xd9,0x9b,0x32,0x55,0x53,0x4b, +0xf2,0x8b,0x8b,0x0a,0x8b,0x38,0x78,0xcc,0x58,0xe9,0x19,0x5a, +0x1f,0x74,0xa6,0x26,0xa6,0x7c,0x8e,0xac,0x64,0xdc,0x4e,0xc6, +0xca,0x54,0xe0,0x3d,0xec,0x19,0xc0,0x1c,0x81,0x68,0x8b,0x04, +0xcf,0x68,0xc1,0x62,0xf6,0x2c,0x5a,0x58,0xe3,0x58,0x9c,0x8b, +0x63,0x6b,0x4c,0x78,0x58,0x0d,0x53,0xdb,0x61,0xc6,0x25,0x70, +0xe0,0xe0,0x33,0x71,0x1c,0xa3,0x59,0xe4,0xd7,0xab,0xfc,0xeb, +0x07,0x78,0x0a,0x07,0x47,0x55,0x38,0x1e,0x73,0xc8,0x5b,0x30, +0x95,0x67,0x62,0xda,0x88,0x9c,0x95,0xb7,0xc8,0x9f,0x12,0xf7, +0x2d,0xd6,0x9b,0x0c,0xf6,0xb6,0xbb,0xf2,0x5d,0xb7,0x5a,0xdf, +0xc8,0x5e,0x70,0xe2,0x54,0xb4,0x21,0x1e,0xf7,0xcc,0xbe,0xb3, +0x1b,0x30,0x74,0xe3,0xeb,0x0f,0x37,0xae,0x96,0xed,0xe6,0x30, +0x40,0x2a,0xe1,0x0c,0x35,0xd4,0x98,0xe8,0x60,0xef,0x24,0x33, +0xf8,0x4a,0x32,0x83,0xdb,0xd4,0x0c,0xf4,0xe5,0xbf,0xf6,0xb0, +0x23,0x06,0x7b,0x49,0xb0,0xa9,0xab,0xaa,0x8b,0xfe,0xa1,0x33, +0x7c,0x9c,0x21,0x28,0xc4,0x82,0x42,0x3c,0x8c,0x49,0x53,0x8c, +0x0f,0x49,0x08,0x49,0x08,0x6e,0xcf,0xe7,0x6d,0xee,0xd8,0xf5, +0x18,0xf5,0x5b,0x1d,0xe3,0x0b,0xdd,0x72,0x3c,0x72,0x5c,0xb5, +0x4f,0x68,0x9e,0x3a,0x72,0xaa,0xa8,0xad,0x60,0x20,0xbd,0x95, +0x83,0xff,0xca,0xa0,0xdf,0x76,0x51,0x75,0xd2,0xe3,0xce,0x05, +0x48,0x3b,0x92,0xe2,0x0c,0x80,0x8b,0x01,0x26,0x01,0xc6,0xfe, +0xf3,0x0b,0x9d,0xf9,0xbc,0xf5,0x3d,0xbb,0x1e,0xc3,0x01,0x73, +0x2f,0xfa,0x0b,0x79,0x6e,0x39,0xae,0x1a,0x27,0xd4,0x4f,0x1e, +0x3c,0x55,0xdc,0x56,0x3c,0x48,0x7f,0x61,0x64,0x3a,0x5e,0x21, +0x7f,0x29,0xf5,0xfc,0x97,0x12,0x03,0xfb,0xc5,0x32,0xd2,0x23, +0x34,0xea,0x5f,0x13,0xd6,0x8f,0x6c,0x12,0xd7,0xb3,0x02,0x40, +0x3a,0x11,0x1b,0x7f,0x12,0x1a,0x19,0xb1,0x11,0x97,0x11,0xa1, +0x71,0x81,0xd8,0xc8,0x4c,0x85,0x05,0xf2,0x16,0x82,0xbf,0xc8, +0x2d,0xe0,0x17,0x56,0x1d,0x17,0xd1,0xb9,0x7e,0x47,0xe7,0x5a, +0x7c,0x29,0x79,0xcd,0x97,0xcb,0xc4,0x97,0x0c,0x6c,0x44,0x63, +0xe2,0x7b,0xce,0xff,0x5c,0x80,0xf2,0x56,0x7b,0x9c,0xe8,0x88, +0x13,0x7c,0xb2,0xb5,0xf9,0x9f,0x0b,0xfe,0x28,0x7f,0x58,0xe1, +0x85,0x93,0xb7,0xd8,0xa3,0xa5,0x4e,0xa1,0x0e,0x0f,0xa5,0x0f, +0xbe,0xba,0x27,0x15,0x3f,0x18,0x73,0x84,0x15,0x92,0xc5,0xf5, +0x04,0x5d,0x19,0xc7,0xb0,0x84,0x5a,0x15,0xf8,0x88,0x4d,0x8e, +0xbe,0x94,0x74,0x5a,0x19,0x72,0xd6,0xe7,0x74,0x63,0xfc,0x73, +0xdf,0xb8,0x93,0xa7,0xa3,0x42,0x14,0x4f,0x84,0x29,0x9c,0x04, +0xa7,0x23,0xe2,0x54,0x46,0xb5,0xd8,0xfb,0xae,0x14,0xbf,0x3b, +0xd2,0x32,0x9b,0x54,0xfa,0x59,0xed,0x34,0x05,0x94,0x6a,0x48, +0x3e,0xac,0xbc,0x55,0x3f,0xd0,0xe4,0xd0,0xc8,0xeb,0x5a,0xed, +0xb7,0xdb,0xe3,0xc8,0xe1,0x9b,0x73,0xc4,0xa0,0x6a,0x7b,0x93, +0x9a,0xcc,0xc9,0x92,0xbf,0xe1,0x74,0xdf,0xa6,0xd7,0x9e,0x9b, +0x2a,0xac,0x14,0xaa,0x09,0x8c,0x2b,0x7a,0x57,0xf5,0xbc,0xf5, +0xa6,0xc3,0x55,0xbb,0x5e,0x87,0x8a,0x36,0xde,0x44,0xa6,0x53, +0xae,0x25,0xeb,0xae,0xec,0xa8,0x6b,0x6d,0xb6,0xaa,0xe3,0x0d, +0x8c,0x0d,0xac,0x34,0x1c,0xb6,0xd7,0x6d,0xad,0x54,0x2d,0x74, +0x31,0xe7,0x6f,0x1c,0xbb,0xed,0x76,0xdd,0x65,0x9f,0xe3,0x76, +0x8f,0xe5,0x3e,0x9c,0x70,0x15,0xd7,0x93,0x3e,0xfc,0x8e,0x4d, +0xca,0x4f,0x2a,0x4c,0x2c,0xd6,0x49,0xe3,0xc3,0x9d,0xc3,0x5c, +0x43,0xdc,0x39,0xdc,0xa0,0x0b,0x3c,0x63,0xbe,0x43,0xfb,0xd0, +0x36,0x75,0x4e,0xb8,0x83,0xe9,0x23,0xb7,0x25,0x97,0x0b,0xab, +0xd9,0x72,0xcb,0xc2,0xdc,0x9c,0xac,0xac,0x6c,0x45,0x2c,0x1a, +0x80,0x56,0x58,0x88,0x6f,0x07,0xe1,0x2d,0xac,0x41,0x6f,0x1c, +0xc3,0x66,0xe8,0x28,0x7c,0xcd,0xb4,0x64,0x64,0xb4,0xa8,0x40, +0x01,0xba,0x7e,0xa5,0xb9,0x0d,0x95,0xd9,0xdc,0xa2,0xd2,0x3a, +0x59,0x0f,0x87,0x57,0x9a,0x25,0xe5,0xc9,0xfe,0xa0,0x3c,0x0f, +0x24,0xe5,0xe9,0x97,0x94,0x47,0xc8,0x11,0xf4,0x89,0xf0,0x59, +0xab,0xf8,0x59,0x2b,0xbc,0xf8,0xe5,0xdb,0x96,0xe5,0x3f,0xe1, +0x8b,0xce,0x23,0x46,0xf8,0x8d,0x19,0x7c,0x63,0x28,0xae,0x34, +0x17,0x56,0xea,0xe1,0x37,0xe6,0xf0,0x8d,0x99,0x38,0xc1,0x4c, +0x98,0x60,0x2c,0xae,0x33,0xf9,0x6b,0x56,0xbb,0xb8,0x87,0x81, +0x5c,0xf8,0x9e,0x18,0x62,0x6e,0x17,0x0b,0xb9,0x8b,0x89,0x1e, +0xe6,0xf6,0xb2,0xe2,0x18,0xf1,0x15,0x91,0x6f,0x87,0x8b,0x23, +0xdb,0x19,0xf9,0x98,0x05,0xd4,0xcb,0x74,0x8d,0x7a,0x99,0x45, +0xd4,0xc9,0x18,0x4a,0x4e,0xc6,0x1b,0x97,0x93,0xce,0xff,0x9a, +0x65,0xc4,0x4e,0x95,0xcb,0xe5,0x53,0x08,0x9e,0x60,0x8a,0x81, +0x53,0x00,0x59,0x8f,0x58,0xac,0x0f,0x3a,0x8c,0x27,0x72,0x0a, +0xa8,0xa2,0x0f,0x9f,0x31,0xf6,0xb8,0x56,0x01,0xa7,0xe9,0x09, +0x57,0x7b,0x37,0x30,0x23,0xee,0x62,0x30,0x35,0x17,0x1b,0x6a, +0x2e,0x39,0xd4,0x5c,0xc0,0x4e,0x28,0x24,0xb8,0x18,0xaa,0x61, +0x31,0x23,0xe4,0xe0,0x56,0x82,0x6b,0x31,0x98,0xad,0x81,0xb5, +0x0a,0xa2,0x8f,0x14,0x60,0x16,0x53,0x9b,0xa0,0xef,0x8c,0xc3, +0x95,0xa4,0x1f,0x5e,0xeb,0x5c,0x81,0xef,0x45,0x2b,0xfc,0x9e, +0x15,0xe6,0x40,0x3d,0x41,0x55,0x7c,0x2d,0xb5,0x99,0x96,0x1b, +0xcb,0x09,0x81,0x63,0x7d,0x78,0x0c,0xe6,0x68,0xe0,0x1c,0xfc, +0x84,0x49,0xa9,0x49,0xaa,0x89,0xaf,0xd1,0x4d,0xe1,0xfd,0x97, +0x3b,0x2c,0xd5,0xdb,0xd1,0xee,0xc8,0x17,0x54,0xe5,0xd6,0x67, +0xd2,0xdc,0x6c,0x3e,0x2e,0xc3,0x68,0x1d,0x88,0xc6,0x71,0x43, +0x34,0xbf,0x97,0x7a,0x14,0x52,0x34,0x25,0xa6,0x50,0x8a,0xec, +0xe5,0xbe,0x58,0x38,0x72,0x9b,0x05,0x27,0x21,0x9a,0xe0,0x32, +0xc8,0x82,0x65,0x0c,0xfd,0x30,0x4d,0x9f,0x97,0x51,0xd1,0x2e, +0x93,0x76,0x4c,0x9b,0x91,0x61,0x78,0x7c,0x78,0x48,0x60,0x45, +0x1d,0x91,0x65,0x05,0x02,0x93,0x29,0xf6,0x01,0x23,0xea,0x58, +0xa4,0xea,0x6e,0x54,0xf1,0x4b,0xe5,0x07,0xa1,0x94,0xd5,0x44, +0x86,0x88,0xb7,0xaf,0x0a,0xb7,0x19,0xf1,0x36,0x4e,0x20,0xc2, +0xed,0x43,0xe2,0x6d,0x06,0x6a,0x44,0x45,0xf2,0x16,0x67,0xc2, +0xc7,0x3b,0xc1,0xdd,0x2c,0xbf,0x9d,0x5f,0x97,0xb5,0x3f,0x57, +0xb7,0xa8,0x35,0xa7,0xb5,0xbc,0xae,0xdc,0xb2,0x82,0x77,0x70, +0x31,0x73,0xd2,0xf4,0x34,0x94,0xd9,0xd6,0x38,0xb5,0x70,0x30, +0xd2,0x31,0x12,0xc4,0x5c,0xac,0xbe,0x50,0x5b,0xa7,0x74,0x45, +0x6e,0xd7,0x31,0x92,0xbb,0x80,0xc5,0xf5,0x27,0x71,0xf2,0x66, +0x9c,0xa4,0xdc,0x6a,0xd3,0xf7,0xa4,0xf0,0xeb,0xa4,0xef,0x15, +0x61,0x05,0x1a,0x30,0xd6,0xa7,0xa5,0x45,0xf4,0x78,0x1a,0xb9, +0xe6,0x24,0xc1,0x9c,0x0c,0x18,0x9b,0x7e,0xaa,0x83,0x3f,0x14, +0xb9,0x37,0x4a,0xf5,0x04,0x07,0x5a,0xac,0x60,0x07,0x9b,0x89, +0xf8,0xbd,0xa9,0xf0,0x3d,0x33,0x55,0xfe,0xd7,0x39,0x62,0x9e, +0x6d,0x55,0x60,0x5f,0x31,0xd0,0xdb,0x32,0x54,0x75,0xd3,0xb8, +0x90,0x77,0x3a,0x6c,0xa3,0xab,0x6f,0x6c,0xd3,0xed,0x76,0x2b, +0x9c,0xc6,0x80,0x3b,0x3d,0xf8,0x80,0x39,0x97,0x7a,0x3e,0x35, +0x55,0x69,0x00,0xa2,0xe1,0xe6,0x88,0x23,0xde,0x14,0x56,0x1a, +0xb0,0x41,0xe7,0x43,0x2e,0x04,0x2b,0x8b,0x7b,0xf6,0x33,0xb8, +0xdd,0x7f,0xb1,0xda,0x46,0xe5,0x76,0x8b,0x8e,0x5b,0x34,0xd7, +0x7c,0xaf,0x08,0x21,0x8c,0xd9,0x59,0xbb,0x28,0x27,0x65,0xa7, +0xa8,0xa0,0x70,0x9b,0xe9,0x38,0x56,0xaa,0x43,0xf3,0x23,0x73, +0xb7,0xa6,0x60,0x28,0x59,0x25,0xa1,0xed,0x52,0xc7,0xb9,0xd7, +0x1c,0xd6,0x33,0x17,0x72,0x2f,0xd0,0xec,0x48,0x26,0x4c,0x64, +0x93,0x71,0x7c,0xe5,0xa6,0xf6,0xc3,0xba,0x36,0x87,0x1c,0x37, +0xbb,0x17,0x1b,0xf2,0x2f,0x64,0x77,0x6a,0x07,0x9a,0xeb,0xec, +0x5a,0xdd,0x3b,0xfd,0xea,0xfd,0x9a,0x13,0x62,0x5b,0xb3,0x60, +0x36,0xaf,0x9b,0xa7,0xb0,0x59,0xc8,0x23,0xe2,0x8f,0x5f,0x09, +0x3f,0x32,0x48,0x26,0x6c,0x16,0x7f,0x7c,0xc6,0xca,0x67,0xa3, +0x3e,0xb1,0x2d,0xb0,0xca,0xb2,0x4e,0x75,0xb1,0xe3,0x9b,0x83, +0x1a,0x02,0x6a,0xbc,0x47,0x8f,0x03,0x94,0x93,0xde,0xf8,0xee, +0x84,0xd6,0xc4,0x93,0x9d,0xbc,0x79,0x94,0x71,0x94,0x41,0x14, +0xf7,0x03,0x2c,0xec,0xc2,0x85,0xef,0x34,0x57,0xa0,0x9a,0x21, +0xa8,0xcd,0x65,0x8f,0x44,0x49,0x6e,0x2d,0x41,0x8f,0x1f,0x8e, +0xb9,0x12,0x3b,0x10,0xcf,0x51,0xf7,0x3e,0x9d,0x4d,0x35,0x54, +0x80,0xf1,0x4c,0x77,0x46,0x56,0xbb,0x0a,0xb5,0x23,0x2b,0x72, +0x31,0xeb,0x7c,0x76,0xb6,0x52,0x19,0x0b,0x2a,0xd1,0x30,0x36, +0x15,0xc6,0x14,0xbb,0x77,0xf0,0x38,0xc5,0x7d,0x5e,0x24,0x6e, +0x3a,0xc3,0x6d,0x64,0xf1,0xcb,0xd0,0x5d,0x4b,0xd7,0x28,0x37, +0x9b,0xdf,0xbf,0x5b,0x76,0x27,0xe5,0xa9,0x22,0xec,0xc7,0x63, +0x43,0x70,0x0c,0x16,0xf6,0x32,0x23,0x8e,0x23,0x76,0xa4,0x5b, +0x68,0x35,0x18,0x16,0x16,0x51,0xef,0xb8,0x88,0x15,0xe4,0x90, +0x48,0xc4,0xd6,0x6f,0x85,0x56,0x46,0x6c,0x95,0x1a,0xcf,0xb5, +0x2e,0x16,0x5b,0xa9,0x71,0x0e,0x08,0xf6,0x24,0x2a,0x23,0xea, +0x7c,0x78,0x64,0x58,0x24,0x7f,0x1a,0x3e,0x83,0x71,0x7d,0x38, +0x0e,0x34,0xf5,0x50,0x13,0xbf,0xd0,0x85,0x29,0x4c,0x04,0x7e, +0x6a,0x83,0x8a,0xeb,0xf1,0x93,0xd2,0x23,0xfc,0x7d,0x18,0x5f, +0xfa,0xeb,0xa5,0xb7,0x5c,0x9c,0x98,0xd7,0x2b,0x5c,0x62,0x62, +0x2f,0x5d,0xb8,0x78,0x4a,0xf9,0x2e,0xae,0xa8,0xab,0x52,0x78, +0x25,0xa5,0xaf,0x6a,0xec,0x8b,0xd4,0xa7,0x79,0x7d,0xc5,0x6e, +0x5d,0xbc,0xba,0xeb,0xda,0x63,0x4b,0x29,0xe8,0xa8,0x64,0xd1, +0x37,0x00,0x17,0x6b,0xe0,0x97,0xca,0xad,0xd6,0x0a,0xd7,0x60, +0x56,0x01,0xec,0x82,0x60,0xa5,0x9f,0xc4,0xda,0x3e,0xa1,0xf6, +0x71,0x1f,0x33,0x32,0x28,0xbe,0x26,0xef,0x60,0x9b,0x3c,0x0b, +0x03,0x47,0x90,0x85,0xdd,0x42,0x11,0xcd,0xaa,0xa0,0x16,0x58, +0x86,0x26,0x54,0x34,0x02,0xb1,0xf8,0x14,0x59,0xaa,0xcc,0xf3, +0x3e,0x60,0x6d,0x8b,0x7f,0xb0,0xf6,0xab,0xaf,0x84,0x57,0x8c, +0xf8,0x4a,0xc2,0xda,0xaf,0xb6,0x88,0xaf,0x18,0x9c,0x8f,0xb3, +0x89,0x3e,0x0c,0xad,0xc7,0x06,0x7d,0x68,0x60,0x7d,0xce,0xfa, +0x9e,0x0a,0x50,0x9e,0x17,0xb8,0xe8,0x38,0x4e,0x8c,0x4c,0xd0, +0xe5,0x7f,0x4e,0xf8,0x29,0xf5,0xeb,0x34,0x47,0x93,0xbd,0x8e, +0x38,0xc3,0x39,0x97,0x46,0xeb,0x93,0x83,0x77,0x5e,0xc2,0x32, +0x25,0x38,0xaf,0xa9,0xcd,0x42,0x1c,0xb6,0x90,0x1f,0xa0,0xbb, +0x07,0xbb,0xff,0x05,0x77,0x7b,0xf0,0xee,0x80,0x86,0x28,0x1b, +0x82,0x2f,0xe0,0xb9,0xd4,0x04,0x70,0x96,0xbc,0x8b,0xa0,0x97, +0xdc,0x0e,0xbc,0x58,0x9d,0x35,0x44,0xfc,0xbd,0x45,0xf8,0x9d, +0x11,0x7f,0x5f,0x47,0x84,0xdf,0x4d,0xc4,0xdf,0x19,0x78,0x24, +0x5e,0xa1,0x89,0xf3,0x03,0x08,0xc3,0x07,0x1d,0x50,0xdd,0x84, +0xd5,0x1d,0xf0,0xfd,0xda,0x41,0x50,0x1a,0x79,0x8d,0x4a,0x83, +0xaf,0xe0,0x89,0x31,0xe6,0x58,0x42,0x8e,0x31,0x0e,0x62,0x18, +0x0c,0x1a,0x8b,0x4b,0x4d,0x85,0xa5,0x8b,0x2f,0xff,0x28,0x6c, +0x6d,0x63,0x45,0x5f,0xd0,0x26,0x78,0xbe,0x13,0xce,0x33,0x70, +0xcf,0x88,0x60,0x5a,0x27,0xa4,0x31,0xe2,0xd5,0x95,0x04,0xce, +0xeb,0x23,0x7d,0xed,0x72,0x0f,0x81,0x34,0x7d,0x4c,0xa3,0xb3, +0xd4,0x2e,0xfc,0x44,0x5e,0x83,0xd5,0x9a,0xde,0xd7,0x30,0xad, +0x07,0xa7,0xbd,0xd1,0x5b,0x8d,0x56,0x6f,0x74,0x56,0xe3,0x14, +0x7d,0x98,0xb2,0x86,0x15,0x37,0x82,0x39,0x19,0xf9,0xe6,0xca, +0x5b,0xd0,0x94,0x9f,0x63,0xb5,0xf1,0x25,0x41,0x9e,0x22,0x62, +0x9e,0x91,0xef,0x16,0x4b,0x48,0xcf,0x21,0x88,0xc7,0xa3,0xa0, +0xa0,0x43,0x13,0x3f,0x13,0x8c,0xdf,0xaf,0x0f,0x89,0xac,0xeb, +0xa2,0xb9,0xaa,0xb8,0xf3,0x80,0x8c,0xda,0xa8,0xee,0x93,0xdf, +0x9f,0xa5,0x49,0x89,0x16,0x93,0x8c,0x93,0x5e,0xed,0x81,0x43, +0xab,0xcb,0xba,0x79,0x5c,0x79,0x7f,0xe9,0x0d,0x8f,0x9f,0x38, +0xb4,0x85,0x78,0x02,0xb3,0x51,0x8b,0x09,0xa3,0x19,0x2c,0xfc, +0x32,0x0d,0x97,0xa4,0x30,0xa0,0x05,0x4b,0xd8,0x91,0x43,0xfa, +0x04,0x78,0x8a,0x92,0x79,0x3a,0x39,0xca,0x66,0xd4,0x5b,0xe9, +0xc8,0xcf,0x61,0xcc,0xc8,0x37,0xac,0x80,0xb0,0x92,0x3c,0x05, +0x67,0x78,0x85,0xce,0x8f,0x40,0x33,0xb7,0x1f,0x0e,0x8a,0x65, +0x78,0xb0,0xcf,0x17,0xf6,0xed,0x40,0x1b,0x7c,0x05,0x36,0x5b, +0x30,0xd1,0x10,0x12,0x71,0xda,0x65,0x98,0x06,0x59,0x5d,0xac, +0x78,0x56,0xae,0x48,0x84,0x2d,0xf3,0x51,0xf3,0x96,0xf6,0x7e, +0xdc,0xc7,0xa0,0x06,0x1e,0x24,0xa8,0x44,0x39,0xa0,0x51,0xfe, +0xdf,0xe2,0x18,0xea,0x8c,0xdf,0x52,0x5f,0x0c,0xce,0x2b,0x09, +0xae,0x7a,0x0b,0xab,0x98,0x11,0x53,0x2d,0x02,0x4a,0x74,0x6c, +0xfa,0xfe,0x2f,0x10,0x4e,0x5d,0xf2,0x22,0xea,0x91,0xc1,0xf6, +0x27,0x02,0xab,0x16,0xe1,0x2a,0x9a,0x85,0x8f,0x15,0x1a,0x49, +0x61,0x3f,0xec,0xc0,0xf3,0x92,0xc5,0x45,0xe1,0x8e,0x3e,0x2f, +0xa9,0xc6,0xca,0xaf,0x94,0x4c,0x23,0x79,0x22,0x26,0x8d,0xfc, +0xca,0x82,0x99,0x90,0x4b,0x70,0x16,0x54,0xc0,0x2c,0x46,0xf8, +0x41,0x4a,0xa7,0x54,0x5f,0x09,0xaa,0x4c,0xa6,0xf8,0x88,0x00, +0x8a,0xf6,0x88,0xac,0xb0,0x04,0x06,0xc8,0x22,0xfc,0xf9,0x27, +0x16,0x7f,0x3f,0x43,0x60,0x16,0x3e,0xc0,0x59,0x0c,0xcd,0x7b, +0x55,0xc9,0x5c,0xfc,0xf9,0x77,0x16,0x27,0xe3,0x10,0x4d,0xf4, +0x06,0x69,0xa2,0x47,0x25,0xe0,0x39,0xfa,0xd3,0xbe,0xf4,0xa7, +0xa9,0xbf,0x46,0xf9,0x6d,0x82,0x1d,0x82,0x03,0x74,0xb0,0xe2, +0x0a,0xfc,0x98,0x3c,0x84,0x3f,0x76,0xb2,0xe2,0x35,0x34,0x95, +0x06,0xcc,0xa6,0x03,0x82,0x2b,0x1a,0x52,0x19,0xfd,0xb1,0x85, +0x85,0xf1,0x92,0x6b,0xee,0x33,0xa4,0x08,0xd6,0xee,0x88,0xb6, +0xf1,0x6e,0xab,0x12,0x73,0xbe,0x3e,0xbf,0xb2,0x50,0x56,0xc2, +0xc1,0x38,0xc6,0x74,0xfb,0x21,0xb5,0x85,0x3a,0xf4,0x25,0x18, +0x7b,0xf5,0xc9,0xd3,0xde,0x5f,0xb8,0xdf,0x18,0x0b,0x9c,0xa8, +0xba,0x12,0x27,0xef,0x28,0xa3,0x2f,0x7e,0xfe,0xf2,0xf9,0x2f, +0xed,0xb0,0x80,0x1b,0x62,0xb6,0x9d,0xd9,0x1b,0x79,0x44,0xd9, +0x30,0x2a,0x34,0x4c,0x7b,0xfa,0x46,0x26,0xdd,0x58,0xe1,0x21, +0xf3,0x75,0x59,0xc1,0x8b,0x24,0x95,0xf8,0x3b,0xd1,0x77,0x2f, +0xc0,0x27,0x9c,0x38,0x9f,0xc9,0xca,0x4d,0x2f,0x48,0x2b,0xe4, +0x84,0x8f,0xa9,0xd5,0xd5,0x4a,0xfc,0xf4,0x53,0x7e,0xa6,0xca, +0xb7,0x81,0x23,0x55,0x7e,0x53,0x78,0xdc,0x05,0xdb,0xc5,0x2e, +0xdc,0xde,0x4d,0x03,0x88,0xce,0x12,0x4c,0xd5,0x17,0xde,0x51, +0xc0,0x77,0x19,0x73,0x29,0x67,0xfb,0xe5,0x7e,0x18,0x35,0x72, +0x87,0x95,0x57,0xcb,0x4d,0x89,0x78,0xe8,0x3b,0xe1,0x10,0x23, +0xfe,0x85,0x5d,0x52,0x57,0xf4,0x6c,0xf8,0x84,0x81,0x40,0xb4, +0x23,0xdf,0xc1,0xd7,0xcb,0x58,0x93,0x09,0x0b,0xf1,0xeb,0x9f, +0x59,0xfc,0x53,0x9d,0xc0,0x27,0x74,0x00,0xfa,0x5e,0x14,0x6e, +0x27,0x8f,0x1b,0x1f,0xde,0xe8,0x1c,0xb6,0xaa,0xe4,0x2d,0x74, +0xb6,0xab,0xa9,0xda,0x71,0xc2,0xa7,0x30,0x89,0x0c,0x59,0x3d, +0xdb,0xdf,0xa5,0x5f,0xdb,0xc8,0x1b,0x76,0x6d,0xba,0xa9,0xd9, +0x48,0x1d,0x67,0xad,0xbc,0x98,0x24,0xa6,0x26,0xa4,0xc7,0xa5, +0xe9,0x26,0xf3,0x51,0x41,0xc7,0x03,0x82,0xfd,0x38,0x54,0x41, +0x67,0x61,0x26,0x38,0x33,0xc2,0x6e,0xf1,0x53,0xb2,0x91,0x71, +0x3f,0x15,0x27,0x53,0x79,0xa3,0xc7,0xc6,0xa5,0xc6,0xa4,0x46, +0xa7,0x71,0x52,0x01,0x16,0x63,0xe6,0x42,0xf2,0x85,0xe4,0x14, +0xa5,0x6f,0x40,0xb3,0x5d,0xdc,0x64,0x02,0xfb,0x57,0xb2,0xe1, +0xe7,0xe8,0x43,0x79,0x1e,0x13,0x57,0x10,0x53,0x1c,0x53,0xae, +0x1d,0xc7,0x9f,0x30,0x39,0x6e,0x1e,0x6c,0xc6,0xc1,0x36,0xc6, +0x7b,0xb7,0xa6,0x3e,0x8e,0x37,0x2e,0x30,0xe6,0x7f,0x6b,0xba, +0x73,0xa5,0xea,0x31,0xb7,0x90,0xd5,0xcc,0x0c,0xe9,0x57,0xfe, +0x81,0xa9,0x49,0x49,0x2f,0x57,0xb9,0xc9,0x1a,0xa7,0x29,0x8c, +0x24,0x52,0xa1,0x34,0x40,0xbd,0x35,0x8b,0xf5,0xeb,0x49,0x33, +0xd4,0x5b,0xb0,0x49,0x98,0x42,0x9a,0x93,0x32,0x2b,0x54,0xea, +0x59,0xdd,0x64,0x05,0x2d,0x8c,0x65,0xdd,0x23,0xe3,0xca,0x54, +0x92,0x58,0x18,0x1b,0x0f,0x1f,0x65,0x7d,0x93,0x1f,0xd8,0xc8, +0x6f,0xf2,0xc6,0x8f,0x03,0x96,0x9e,0xe0,0xda,0x34,0x66,0xb3, +0x87,0xf3,0x03,0x86,0x94,0xe5,0x3b,0xb0,0x97,0x40,0xec,0xc8, +0x11,0xfa,0x71,0xf9,0x27,0xb0,0x84,0x88,0xf7,0x7a,0x84,0x7b, +0x8c,0x78,0x8f,0x3a,0xe0,0x7b,0xfa,0xe2,0x3d,0x46,0x1e,0x44, +0x61,0xc4,0x07,0xc4,0x02,0xd5,0xf2,0xfd,0xc4,0xb8,0x6b,0xdf, +0x65,0xbd,0x6a,0x5b,0x4b,0xbe,0xdf,0xee,0x96,0x76,0x87,0x21, +0xf7,0x07,0xac,0x22,0x98,0x22,0x74,0x40,0x0a,0xab,0x35,0x87, +0x88,0x07,0xfb,0x85,0x83,0x8c,0x78,0x70,0x1e,0x11,0x0e,0x6a, +0x88,0x07,0x19,0x5c,0xba,0x80,0x18,0x77,0xee,0xa5,0xdf,0xb0, +0xb3,0xe4,0x7b,0x8f,0xde,0xd0,0xed,0x36,0xe0,0xee,0x51,0x71, +0xe7,0x67,0x15,0xe4,0xe5,0x15,0x72,0x98,0x24,0x3c,0x6e,0xc7, +0xe4,0xdb,0x10,0xdc,0x8a,0xc1,0x83,0x7f,0x3f,0xc7,0xb6,0xe3, +0x19,0x36,0x25,0x33,0x39,0x37,0x3e,0x5d,0x33,0x89,0x8f,0xf2, +0x0b,0x3d,0x16,0x4a,0x85,0xac,0xca,0x24,0x67,0x25,0x66,0x25, +0x64,0xea,0xa6,0xf2,0x8e,0x3b,0x0f,0x6f,0xde,0x63,0xc0,0x09, +0xe3,0xcb,0x08,0xda,0xf4,0x33,0x17,0xa4,0x7f,0x4a,0x60,0xc5, +0xe0,0x21,0x71,0x19,0x75,0x2c,0x6b,0xfa,0x61,0xa2,0x0a,0x1c, +0xc1,0x43,0xda,0x30,0x09,0x3f,0x61,0x97,0xbb,0x1b,0x2e,0xb5, +0x50,0xce,0xd7,0x7a,0xd9,0xd0,0xd8,0x73,0xf1,0xbe,0x62,0x1c, +0xb3,0x2e,0xfe,0x99,0x2a,0xac,0x9f,0x2e,0x5c,0x64,0x12,0xaf, +0x28,0x88,0x75,0x70,0x92,0x0c,0x82,0x8d,0x26,0x4b,0x2d,0x7f, +0x22,0xb9,0x0d,0x36,0xfb,0xa4,0x6e,0xa6,0xf2,0xc9,0x54,0xf9, +0xa3,0x3a,0x31,0x8a,0xa6,0x9c,0xe8,0x6b,0x04,0xbe,0x5b,0x30, +0xde,0x50,0x78,0xde,0xc5,0x8e,0x8c,0xc0,0x2e,0x32,0xf2,0xd7, +0xe0,0x5b,0xd8,0x23,0xcf,0x62,0x75,0xf0,0x5b,0x82,0x93,0x69, +0x3a,0x32,0x99,0xf9,0x41,0xf4,0x20,0xbf,0xc5,0xfd,0x9a,0xf0, +0x55,0xf2,0xd9,0x0e,0xde,0xf5,0xb4,0xd3,0x69,0xfb,0xd3,0xdc, +0xf3,0xdf,0xda,0xe7,0x3d,0xd1,0xdb,0x8a,0x13,0x4c,0x60,0xc2, +0x5a,0xd6,0xfa,0x8c,0xc5,0x19,0xab,0xb3,0x1c,0x5c,0xb7,0x21, +0xd0,0xda,0x81,0x9f,0xfe,0x0b,0x14,0xda,0x51,0xe1,0x89,0xee, +0xd6,0x59,0x26,0xef,0xd7,0xa1,0x02,0x23,0xe6,0x50,0xdc,0x34, +0x99,0x46,0x93,0xc9,0x8c,0x3c,0x7d,0x2d,0xc1,0xf1,0x8c,0x6b, +0x24,0xd5,0x24,0x50,0x01,0xeb,0xee,0x91,0x31,0x06,0xb0,0x9f, +0x0d,0x9f,0xb7,0xdb,0x18,0x95,0x9d,0xa4,0xe8,0xb0,0xb3,0xe1, +0xf1,0x83,0xd1,0xe2,0x95,0x93,0x29,0x82,0x3d,0x98,0xed,0x7b, +0x43,0x19,0x38,0xa6,0x39,0x23,0xbd,0x49,0xe5,0x07,0x29,0xc1, +0x9a,0xfa,0x97,0xb5,0x37,0xd1,0xbc,0x6e,0x79,0xc3,0xf9,0xee, +0x20,0x90,0x7c,0x98,0x17,0x0b,0x5b,0xb9,0xba,0x3e,0x74,0x60, +0x92,0x3a,0x12,0xba,0x63,0x7b,0xf4,0x62,0xf9,0x30,0x54,0x74, +0x45,0x65,0x43,0x9c,0x5c,0x65,0xc0,0xa7,0x16,0xa7,0x94,0x25, +0x57,0x24,0xe1,0xf8,0xbc,0x05,0x35,0xcb,0x8f,0xee,0xd4,0xdf, +0xb7,0x5b,0xad,0xc2,0x88,0xbf,0x79,0xb5,0xfb,0x7a,0xdd,0xed, +0xca,0x7d,0xcd,0x87,0xfa,0xd4,0x38,0x71,0x8b,0xfc,0x3a,0x79, +0xa5,0xb7,0x16,0x97,0x18,0xc2,0xef,0xd4,0x25,0x96,0x8d,0x14, +0xd2,0xb0,0xb8,0x8a,0x9a,0x9d,0xeb,0xc8,0x5d,0x16,0xd6,0x09, +0x31,0x64,0x1e,0xe4,0xfc,0xc6,0x08,0x73,0xe6,0x10,0xac,0x40, +0x53,0xa8,0x60,0xe0,0x2c,0x68,0x92,0x93,0x38,0x2b,0x08,0xa7, +0x5a,0xe1,0x18,0xfb,0xf7,0x41,0xf0,0x51,0x24,0xcc,0xe5,0x70, +0x97,0x03,0x99,0x87,0x3b,0x7f,0x63,0xb1,0x88,0x6a,0xc2,0x6f, +0x38,0x30,0x8f,0x11,0xda,0x7f,0x26,0x46,0x91,0x06,0x51,0x06, +0x27,0xb8,0x52,0xb6,0xb3,0xb4,0xa5,0xba,0xb8,0x86,0x6b,0xc5, +0x9b,0x26,0x70,0x96,0xf5,0xf6,0xb1,0x74,0xb1,0xf2,0xe6,0x8e, +0xb0,0xfa,0x27,0x0d,0x4f,0x1a,0x9f,0x8a,0x31,0xe2,0xdb,0x62, +0x3a,0x63,0xbb,0xe2,0x38,0x9c,0x21,0x35,0xcb,0xd0,0x57,0x78, +0xcd,0x8c,0x76,0x23,0x04,0x65,0xb6,0x37,0xbe,0x87,0x62,0x1a, +0x9a,0x4f,0x17,0x0a,0x9e,0xa4,0xa9,0x47,0x76,0x3d,0xe7,0x25, +0x77,0xa3,0x0b,0x73,0x98,0x54,0x59,0x92,0x2c,0x51,0x26,0x35, +0x38,0x5d,0x68,0xba,0x61,0xff,0x9e,0x3a,0x3b,0x3e,0x37,0x2f, +0x3b,0x3f,0xb3,0x20,0xd7,0x50,0x66,0x5e,0x6b,0x6b,0x66,0xa5, +0xe5,0xb4,0xc7,0xb5,0xc4,0x98,0x7f,0x5c,0x3e,0x5c,0xd3,0xd1, +0xda,0x6d,0x7e,0xd5,0xf6,0x81,0x43,0x49,0x3b,0xaf,0x5a,0xa1, +0x51,0x63,0xd2,0xc0,0x89,0xb6,0x38,0x87,0x80,0x8c,0x86,0x92, +0xb0,0x0d,0x6c,0xaa,0xc5,0x7f,0x76,0xd0,0xe4,0xa1,0x3a,0xec, +0xd2,0xc6,0x5d,0xa8,0x8d,0xbf,0xf6,0x41,0x17,0xcc,0x40,0x19, +0xbb,0x5e,0x08,0x21,0x1e,0x56,0x96,0xe6,0x66,0xee,0x55,0xf6, +0x7c,0x67,0x79,0x53,0x5b,0x09,0xc5,0xa5,0x97,0x57,0x11,0xab, +0x36,0xa7,0x0a,0x93,0x6a,0x07,0x17,0xbe,0xd5,0xbe,0xda,0xb1, +0x96,0x1a,0xf9,0x8b,0x44,0x12,0x7c,0xc8,0x4b,0xdf,0xce,0xdc, +0xba,0xd9,0xa5,0xcb,0x7f,0x20,0x36,0x91,0xc7,0x6b,0xf8,0x05, +0xc9,0x71,0xcc,0xb0,0x4d,0xb5,0x6a,0x4a,0xe7,0xc3,0xda,0x02, +0x6a,0xfc,0x2a,0x38,0xd4,0x38,0x49,0xa2,0x0c,0x03,0xb4,0xfd, +0xcc,0x5a,0x82,0xf9,0xdc,0x8e,0xac,0xe1,0xb8,0x4e,0xce,0x67, +0x64,0x12,0x69,0x13,0x3a,0x4d,0x87,0xe0,0xb7,0x91,0x4d,0xf8, +0x9b,0x14,0xcd,0x7c,0x89,0xd8,0x79,0x4f,0xe8,0x64,0xc4,0x4e, +0xea,0xca,0x85,0xce,0x5d,0x62,0x27,0x8d,0xc8,0x83,0xf2,0xcf, +0xc8,0x4d,0xd8,0x7b,0x60,0xe0,0x26,0x2c,0xe8,0xc2,0x05,0xcf, +0xb4,0x36,0xe3,0xde,0x67,0xda,0x9b,0x71,0xa5,0x21,0xac,0x3c, +0xc0,0x8a,0x0a,0x23,0x87,0xe8,0xfc,0xed,0xa4,0xf3,0x17,0x22, +0xcd,0xdf,0x5e,0x3a,0x7f,0x38,0x11,0x72,0x60,0x22,0x23,0xd7, +0xc7,0x52,0xb2,0x04,0x26,0xdc,0xef,0x14,0xaf,0x1a,0x3d,0xc5, +0x09,0x0b,0x8c,0x7e,0x41,0x6e,0x8b,0x11,0xc4,0x2f,0x93,0x4e, +0x3d,0x56,0xe2,0x9a,0x01,0x58,0x03,0xe9,0xdd,0x98,0xfe,0x1d, +0xc4,0x75,0xee,0x02,0xee,0x07,0x86,0x86,0xcc,0x8d,0x52,0x97, +0xb9,0x49,0x52,0x97,0xb9,0x7d,0x1f,0xba,0xcc,0x4d,0xc1,0x09, +0xec,0xc8,0x4a,0x0b,0x02,0x13,0x71,0x00,0x27,0x32,0x42,0x30, +0x74,0x13,0xe4,0xe8,0x47,0x38,0xe9,0x23,0x1c,0x01,0x8e,0x7e, +0x84,0xa3,0xb6,0xf6,0xb3,0x60,0x4d,0x8a,0x02,0x0a,0x83,0x0b, +0x42,0xf3,0xdb,0x78,0xeb,0x5c,0x8b,0x12,0x9b,0xca,0x8a,0xe2, +0x62,0x59,0x51,0xa5,0x55,0x15,0xef,0xed,0xe0,0xe6,0xea,0xea, +0xe9,0x58,0xe9,0x5e,0x2b,0xd5,0xfb,0x0c,0xee,0xc2,0x6e,0x26, +0xa1,0x48,0xaa,0xf7,0xa9,0x17,0xc7,0x9f,0x74,0x8a,0x1a,0xad, +0xf7,0xe9,0x6a,0x08,0x06,0x8c,0xaf,0x85,0xc7,0x51,0x47,0x07, +0xcf,0x0a,0x87,0x2a,0xf7,0x22,0xdb,0xa3,0xbc,0xcc,0xa3,0xd2, +0x3e,0xdf,0xd5,0xc9,0xe3,0xa8,0xa7,0xa5,0x57,0xb1,0x31,0x5f, +0x92,0x55,0x94,0x55,0x90,0xc5,0x61,0x2c,0xe8,0xa2,0x07,0x85, +0x09,0x34,0x47,0xa4,0xf0,0xed,0x43,0xbd,0x4f,0x5b,0x38,0xc8, +0x8e,0x38,0xe3,0x89,0xff,0x11,0x43,0x40,0x4d,0xca,0x66,0x3e, +0x04,0x0e,0x61,0xbe,0x09,0xc9,0x34,0xac,0x36,0x6e,0x32,0xe7, +0x30,0x88,0xa9,0x6b,0x28,0x6f,0x2d,0x18,0x90,0x54,0xaf,0x96, +0xfc,0x0b,0x6e,0xad,0x63,0x47,0xd6,0xa5,0xfc,0x13,0x46,0xe4, +0xeb,0xa8,0x27,0x59,0x8c,0xb7,0x7e,0xa4,0x8e,0x78,0x37,0xb1, +0xd0,0x54,0xd7,0x54,0xb3,0x2d,0x37,0xe0,0x87,0x1b,0x6f,0x5f, +0x6d,0xbf,0xc1,0x81,0xeb,0x39,0xd2,0x69,0x3a,0xa8,0xde,0xac, +0xd9,0xd0,0xcc,0x5b,0xf7,0x1e,0xb8,0x6d,0x56,0xc7,0x4d,0xfd, +0xeb,0x63,0xf9,0x43,0x22,0x35,0x01,0x35,0x0b,0x44,0xc3,0xd3, +0xc9,0x86,0x14,0xeb,0xc4,0x82,0x6d,0x26,0xac,0xae,0xe0,0x46, +0x4a,0x46,0x7a,0x29,0x49,0xaa,0x94,0xa4,0x70,0x29,0xac,0x0d, +0x0a,0x5f,0x91,0xa5,0xbd,0x34,0xd5,0x55,0x61,0x4b,0x6b,0x4b, +0x5b,0x72,0x9b,0x8d,0x72,0x78,0x5f,0x0b,0x27,0x4d,0x1b,0x73, +0x4e,0x9c,0x85,0x0b,0x7b,0xbf,0x67,0x70,0xf1,0x2e,0x82,0x53, +0x28,0xd1,0x53,0x18,0x61,0x3b,0x0d,0xd9,0xc7,0x2b,0xfd,0x1a, +0x83,0xa4,0x62,0x6d,0xe9,0xee,0xd9,0x36,0x49,0x2e,0x1c,0x7e, +0x99,0x49,0xc2,0xca,0x03,0x2a,0x83,0xf3,0x8c,0x03,0xf8,0x74, +0xaf,0x4c,0xc7,0x64,0x37,0x0e,0xae,0xe1,0x5c,0x62,0x5a,0x68, +0x95,0x67,0x9c,0xe5,0x65,0xc7,0xb7,0xfb,0x76,0x1d,0xab,0x3d, +0xc6,0x61,0x7b,0x1f,0xf1,0xd3,0x70,0xd2,0xb6,0xb7,0x69,0x72, +0xe6,0xeb,0xda,0xab,0x6f,0xe4,0x0c,0x73,0xf0,0xe6,0x38,0xa9, +0x31,0xaf,0xd0,0x29,0xd2,0x6e,0xc9,0xe7,0x3d,0xfb,0x1c,0x2e, +0xdb,0xb5,0x70,0xbf,0x8b,0xb1,0x64,0x75,0xd6,0x86,0x82,0x9d, +0xe5,0x77,0xea,0x07,0xda,0x6a,0xfb,0xb9,0x5a,0x7c,0xcb,0xe6, +0x16,0x64,0x15,0xa5,0x17,0x71,0xb0,0x8e,0xa9,0x4e,0x4d,0xa9, +0x56,0xb9,0xce,0x1a,0x27,0x2a,0x6c,0xc7,0x9d,0xec,0xb1,0xa8, +0x98,0x42,0x95,0x57,0x06,0x8b,0x58,0xfb,0xc4,0x80,0x82,0x28, +0x65,0xcb,0x7d,0xfb,0xd4,0x16,0x1a,0x14,0x5b,0xf0,0xd5,0x59, +0x95,0xf9,0x65,0x05,0xf5,0xb6,0x2d,0x4e,0x9d,0x6e,0x5b,0x9c, +0x96,0x79,0xcd,0x0d,0xce,0x32,0xe0,0xdf,0x67,0x82,0x42,0xf9, +0x4f,0xad,0xff,0xb2,0xfe,0xc9,0xf5,0x8f,0x63,0xdc,0x48,0xbf, +0x70,0x81,0x50,0x65,0x19,0xc0,0x29,0x8c,0x7c,0xf3,0x4d,0x62, +0x6f,0x63,0x64,0x7f,0xc4,0x55,0x43,0xa6,0x5f,0x6d,0x5d,0xcf, +0x4d,0x15,0x7a,0xe5,0xab,0x49,0x27,0x68,0x18,0xf5,0x77,0xc2, +0xd2,0x4e,0x5c,0x7a,0x5d,0xe7,0x10,0x6a,0x48,0x4f,0xf3,0x8d, +0x60,0xbe,0x11,0x2b,0x32,0x23,0x87,0xa9,0x1c,0xd5,0xa8,0x1c, +0x4f,0x4b,0x53,0xab,0x21,0x4d,0xed,0xe7,0x54,0x4a,0x9f,0x33, +0xf2,0x09,0x78,0x96,0xf4,0x02,0x4f,0x61,0x0f,0xdf,0xeb,0x2e, +0x58,0x30,0xe7,0xda,0x88,0x68,0x76,0x4d,0x30,0x63,0x46,0x22, +0x71,0x3d,0x81,0xcf,0xe9,0xb4,0xd2,0x4f,0x6d,0x69,0x26,0xcd, +0x65,0xad,0xf5,0x35,0x2d,0x76,0xd5,0xbc,0x83,0xb9,0xa5,0xbd, +0x83,0x97,0x6f,0x4b,0x48,0x7b,0x78,0x37,0x07,0xd6,0x1d,0xe2, +0x15,0x63,0xd0,0x67,0x74,0x8f,0xee,0x72,0x59,0xe1,0x95,0x69, +0xc6,0xdf,0xce,0xbe,0x51,0xdc,0x5f,0x91,0x14,0x96,0x14,0x9a, +0x10,0x7a,0xd8,0x6c,0xa5,0xe5,0x2a,0xf7,0x1c,0x53,0xfe,0xfb, +0xf2,0xb7,0xed,0x57,0x5a,0x12,0x02,0x13,0x02,0x62,0x03,0xb6, +0xaa,0xa1,0x82,0x06,0x4e,0x3e,0x9a,0x63,0xc2,0xc3,0xd4,0x3a, +0x98,0x70,0xf5,0xce,0x20,0x77,0x29,0xf8,0x62,0x70,0xb0,0x92, +0x56,0x88,0xaf,0xbe,0xf2,0x4e,0x86,0xfa,0xb3,0x3b,0xcc,0x53, +0x59,0xfd,0xdb,0xd7,0x46,0x7f,0x68,0xdc,0x52,0x49,0x4b,0x4e, +0x4b,0x4e,0x49,0xe6,0xea,0x19,0x19,0xae,0xa5,0x39,0x3d,0xcc, +0x9a,0x5f,0xd6,0xce,0x1f,0xe8,0x30,0xee,0xb5,0x1f,0xa2,0x6e, +0x6e,0x35,0xfc,0x48,0xd0,0x1c,0x65,0x82,0x05,0xc8,0xd0,0xe6, +0x32,0x84,0xb7,0x89,0xf9,0xcc,0x85,0xd2,0x0f,0xc5,0x2f,0x26, +0xd0,0x24,0xa9,0x0b,0xc6,0xfd,0xd1,0x36,0xe7,0x3a,0xb0,0x1d, +0x98,0x28,0x95,0xbe,0xc8,0xc2,0x30,0x16,0x53,0xc2,0x70,0xc7, +0x5e,0x9c,0xaf,0xdc,0x61,0x39,0x0c,0x33,0x72,0x40,0x39,0x16, +0x8e,0x2a,0xc2,0x29,0x46,0x7c,0x27,0xf5,0xb6,0xba,0x3b,0xf8, +0x0e,0x36,0xc9,0xfd,0x58,0x3d,0xa4,0x8a,0x39,0x9e,0xba,0x83, +0xf1,0x0c,0x74,0xad,0xa6,0xb6,0x7d,0x1d,0x26,0x30,0x7d,0x52, +0x35,0x0b,0xcd,0x43,0x2c,0x6a,0x52,0xb3,0xd6,0x3c,0x88,0x9a, +0x0c,0x45,0xa1,0x1f,0x11,0x0a,0x10,0x07,0x68,0xb0,0x12,0x2a, +0x61,0x1c,0xc1,0x85,0x77,0x60,0x21,0xd3,0x29,0xdd,0x8f,0x5b, +0xb6,0x97,0x45,0x4b,0xa9,0xb4,0xc5,0xc2,0xfb,0x2c,0x98,0x4c, +0x83,0x65,0xbb,0x71,0x19,0x83,0x0d,0x14,0x56,0x3e,0xca,0x7b, +0x2a,0xeb,0xae,0x73,0x6c,0xe2,0x8d,0x1c,0xf6,0xba,0xee,0xf0, +0xe3,0xe0,0x49,0x3d,0xb9,0xe5,0x73,0xcf,0xf5,0x8a,0x7d,0x71, +0x3b,0xaf,0x51,0xbe,0xb3,0xfc,0x60,0x2e,0xb5,0x8d,0x23,0xf2, +0xd9,0xa4,0x1f,0xcf,0xc3,0xa7,0x9a,0xf8,0x29,0x06,0x21,0x4d, +0x26,0xa3,0x02,0x50,0x73,0x2f,0x6e,0x50,0xee,0x72,0x54,0x78, +0x00,0xfb,0xf2,0xc0,0x04,0xce,0x2b,0xbd,0x67,0xc5,0x79,0x30, +0x8d,0x8c,0xdc,0xa1,0xb9,0x85,0x1e,0x25,0x5c,0x5b,0x22,0x7c, +0x06,0x9d,0xdf,0x19,0x8c,0x7c,0xe7,0x48,0x32,0x71,0x07,0xde, +0x10,0xb6,0x5b,0x82,0x82,0x96,0x0f,0x5f,0xb4,0x57,0xb6,0xac, +0x68,0xf9,0xb6,0xa0,0x95,0x21,0xcb,0xc3,0xbb,0x60,0x71,0x3d, +0x18,0x96,0xc0,0x61,0xb5,0x44,0xde,0x1b,0xd5,0x2c,0xd0,0x4a, +0x1f,0xd7,0x7a,0x9d,0xf1,0x3c,0xeb,0x75,0x36,0x51,0x8d,0x87, +0x79,0x69,0xb0,0x3c,0x1f,0x26,0x95,0x24,0x38,0x26,0x38,0xc5, +0x39,0x73,0x23,0x17,0x04,0x0f,0x42,0x3d,0x7c,0x3f,0xce,0xa0, +0x78,0x74,0x85,0x50,0x4f,0x06,0xe0,0x6c,0x0b,0x9e,0xed,0x85, +0xdc,0x56,0xdc,0xc0,0x66,0xe6,0xa6,0x15,0xa4,0xe6,0xeb,0x67, +0xf1,0xa1,0x9e,0x01,0xce,0xbe,0x6e,0x1c,0xaa,0x33,0x2d,0xd9, +0xa1,0x79,0xfe,0x85,0x81,0xd9,0x8a,0x86,0x3e,0x59,0xbe,0xe9, +0x3e,0xa9,0x7e,0x8a,0xb8,0xcb,0x0c,0x52,0xf4,0xf0,0x84,0x39, +0x9c,0xd0,0xc2,0x22,0x33,0x81,0xe6,0xb9,0x23,0x5d,0xe2,0x2d, +0xea,0x84,0xe7,0x53,0xe5,0xb4,0x92,0x9c,0xf0,0x62,0xea,0x84, +0x57,0x40,0xce,0x3b,0x46,0xbe,0x69,0x24,0x91,0xb8,0xe7,0x78, +0x55,0xfa,0xb5,0xd4,0xf5,0x94,0x0f,0x97,0xdc,0xb1,0xc8,0xe3, +0x7d,0x74,0x8f,0x19,0xb9,0x5a,0x84,0x74,0x44,0x0c,0x9e,0xba, +0xc9,0x81,0x7a,0x2b,0x1e,0x29,0x60,0x6e,0x19,0xa8,0xb1,0xee, +0xb8,0xb7,0x9d,0x6d,0x8e,0x6e,0x8a,0xad,0x88,0x0b,0xa8,0xe7, +0x37,0x06,0xaf,0x38,0x81,0x53,0x4e,0x27,0x58,0xf1,0xd5,0x17, +0x5b,0x2f,0xb6,0x47,0x73,0x16,0xb8,0xdd,0x0c,0xe6,0xb3,0x9e, +0xc7,0xcc,0xfc,0xb6,0xfb,0x65,0x98,0xf3,0xdf,0x96,0xd6,0x67, +0x65,0x75,0x73,0x31,0xf3,0xbb,0x06,0x99,0xe8,0x8b,0x17,0x2f, +0x9d,0x55,0x86,0x4f,0x35,0xf2,0x1a,0x90,0xeb,0x0f,0x8f,0x3d, +0x79,0xf6,0x44,0x94,0x62,0x54,0x84,0xc2,0xe9,0x02,0x38,0xc0, +0xc4,0xae,0x4f,0xdf,0x91,0xaf,0xe6,0x7c,0xd4,0xce,0xd1,0xdc, +0xb5,0xd4,0x82,0xaf,0x2f,0xae,0x2a,0x2f,0xaf,0xce,0xb3,0x2c, +0x72,0x94,0xf9,0x56,0x7a,0x55,0x26,0xc6,0x34,0x64,0xc1,0x02, +0xde,0x32,0x57,0x21,0x1e,0xaa,0x88,0x7b,0x96,0x43,0x86,0x43, +0xaa,0x97,0x03,0x5f,0x15,0x52,0x19,0x5c,0x1a,0xc0,0x8d,0x24, +0xb7,0x91,0x77,0x38,0xb0,0x82,0x11,0x1a,0x33,0x48,0x33,0x7e, +0x6b,0x71,0x97,0x0d,0xf3,0x0c,0x76,0x0b,0x72,0x97,0xfa,0x00, +0x69,0x9c,0x3e,0xee,0xe3,0x3c,0x7d,0xae,0xb4,0x1b,0xf5,0x07, +0xa6,0xa9,0x30,0xb3,0x22,0x51,0x25,0xbe,0x20,0xa6,0xe3,0x62, +0x23,0x87,0x26,0x4c,0x6c,0x6a,0x1c,0x7d,0x50,0xb3,0xce,0x15, +0x6e,0x90,0x46,0xb8,0x0b,0x36,0x23,0xfb,0xd0,0x06,0x2e,0x5b, +0x89,0x2b,0xac,0xfe,0xe2,0x1b,0x59,0xdc,0x0a,0x9b,0x88,0x78, +0xad,0x49,0xb8,0xc6,0x6c,0x99,0x60,0x2e,0x5e,0x6b,0x61,0xa1, +0x53,0xbc,0x47,0x1e,0x6f,0x86,0x99,0x5b,0xe0,0xa8,0x43,0x4e, +0x0b,0xbf,0x25,0x65,0xdf,0xff,0xc5,0xd9,0x7b,0x07,0x44,0x91, +0x2d,0x6d,0xe3,0xa6,0xe9,0x6e,0x13,0x26,0x5a,0x1b,0x74,0x67, +0xcc,0x60,0x56,0xcc,0x8a,0x39,0x81,0x12,0x87,0x0c,0x12,0x05, +0x13,0x98,0xb3,0x20,0x19,0x74,0x15,0x25,0x09,0x48,0x8e,0x4a, +0xce,0x19,0xc9,0x43,0x10,0x73,0xde,0x35,0xaf,0xab,0xeb,0xba, +0xeb,0xba,0xba,0xba,0x5a,0xcd,0xad,0xe6,0xbd,0xbf,0xd3,0x33, +0xb8,0xee,0xbd,0xef,0xfb,0x7e,0xdf,0xfd,0x7e,0xfe,0x81,0x83, +0xe0,0x4c,0xf5,0x39,0x75,0x9e,0x7a,0x9e,0x3a,0x75,0xea,0x24, +0xc9,0xd3,0x6a,0x92,0xcb,0x52,0x8a,0xcf,0x6f,0xcf,0xe1,0xa0, +0x57,0x05,0x86,0x54,0x83,0x4d,0x09,0xda,0x54,0xc0,0xfe,0x32, +0xdc,0x5f,0x06,0x8b,0x08,0x69,0xfa,0x99,0xd0,0x36,0xc6,0x05, +0x2f,0x95,0x41,0x7f,0xf2,0xdd,0x13,0xf2,0xdd,0x74,0x17,0xdc, +0xe2,0x02,0x5b,0x9c,0xd0,0xc0,0x15,0x0c,0xec,0xd1,0xc7,0x09, +0x7e,0xa7,0x56,0x6d,0x1e,0xbb,0x0b,0x97,0x1f,0x8c,0xb7,0xe1, +0xde,0x9f,0x7b,0x99,0x7c,0xef,0x3c,0xb3,0x8e,0x76,0x3a,0xee, +0x78,0xc2,0xfe,0x44,0xb4,0x0d,0x07,0xda,0xd1,0x20,0x4b,0x00, +0x3a,0x29,0xa8,0x9a,0x5b,0xef,0xb7,0xd2,0x5f,0x37,0x80,0x79, +0x46,0x97,0x26,0xe4,0x25,0x5e,0x48,0x66,0x74,0xe1,0x25,0xbb, +0x11,0x77,0xd6,0xd0,0x9d,0x7d,0x87,0x6f,0xc4,0xc3,0x35,0xf4, +0x25,0x5c,0xc8,0x3a,0xe1,0xa5,0x0a,0x1a,0x2e,0x2d,0x64,0xed, +0xf1,0x12,0x31,0xfb,0x23,0xce,0x61,0x1d,0x53,0xb7,0xa6,0xef, +0xca,0x60,0x88,0xbe,0x76,0xd9,0x63,0xbf,0xdf,0xf2,0x00,0x51, +0x18,0x8c,0x3e,0x7b,0xfd,0x41,0xe7,0xa0,0x25,0xd7,0x3b,0x5f, +0x74,0x45,0x51,0xd7,0xbb,0xac,0x59,0xa8,0xe5,0xcb,0xda,0x85, +0x32,0xa8,0xec,0x1c,0xd4,0x35,0x92,0x04,0xcc,0x7f,0xfa,0xb3, +0xf3,0x33,0xf5,0x2b,0xac,0x9b,0x9b,0x72,0x6b,0x0b,0xcb,0xcb, +0x1d,0x4b,0xb8,0x4d,0xae,0x1b,0xb7,0x59,0xed,0xdc,0x5b,0x78, +0xa8,0xf4,0x68,0x05,0x03,0xa5,0xfc,0x22,0x7c,0x0b,0xc3,0x0d, +0x70,0x38,0xde,0x17,0x16,0x11,0x31,0x95,0x68,0x91,0x6e,0x9b, +0xed,0x88,0xe3,0xd6,0xe1,0x1a,0x57,0x12,0x6a,0xe2,0x0d,0x38, +0xb0,0x4d,0x04,0xd3,0x4a,0x98,0xfe,0x7d,0x93,0xe1,0x4d,0xbb, +0x17,0xee,0x0d,0xfb,0xaa,0x22,0xc3,0x2f,0x27,0xc0,0x42,0xce, +0x3c,0x5d,0x82,0x4d,0xfc,0x1b,0xf6,0xb2,0xe7,0x9d,0x9d,0x8a, +0x1d,0xe7,0x2f,0x72,0xe6,0xb9,0xcb,0xb2,0x8d,0xe3,0x18,0x5c, +0x4c,0x14,0x6f,0x88,0xe3,0x19,0xe7,0x50,0x17,0x06,0x53,0x08, +0x78,0xf2,0x1f,0x71,0x18,0x8b,0xd9,0xd4,0xf1,0xb2,0x6f,0xcb, +0x4f,0x56,0x32,0x50,0x44,0x09,0x1f,0xc9,0xaf,0xc0,0x05,0x2a, +0xdc,0xfe,0xac,0x63,0xb4,0x33,0x43,0x42,0x35,0xfc,0x73,0xb8, +0x4f,0x79,0x40,0x65,0x20,0xe1,0x40,0xe9,0x4a,0x15,0x2e,0xf0, +0x13,0xd9,0x94,0x8c,0xc4,0xf3,0xf1,0x99,0x0c,0xbf,0x1c,0x1e, +0x76,0x2d,0xc7,0x87,0x60,0x4c,0x19,0xcd,0x9c,0xb6,0x16,0x47, +0x1b,0x67,0x5b,0x72,0xaf,0xcb,0xef,0x55,0xb5,0x35,0x30,0x7c, +0xd6,0x76,0x4a,0x27,0x78,0x81,0xd7,0x3a,0xe9,0x3a,0xaf,0xc3, +0x47,0x57,0x8f,0x94,0x8b,0x65,0x99,0x05,0x14,0xd0,0x85,0xe9, +0xbf,0xa7,0xc9,0x12,0xbe,0x0b,0x7b,0x03,0x3d,0x35,0xaf,0xd0, +0xa8,0x06,0x29,0xac,0xd0,0xfa,0x8c,0x6f,0xa5,0x70,0x54,0x9f, +0xb9,0x42,0xeb,0x73,0x1a,0x1e,0x11,0xc9,0x67,0x74,0x84,0xd2, +0xdb,0xb9,0x15,0xe7,0xd8,0x4b,0xd3,0x2c,0x7f,0xc8,0x68,0x48, +0x2f,0xcc,0xd4,0x88,0x8a,0x8c,0x38,0x75,0x2e,0x08,0x96,0x2f, +0xe6,0xb2,0x6b,0x51,0xe7,0xae,0x57,0x44,0xa0,0xf2,0x02,0x79, +0xaf,0xc0,0x33,0x92,0xa4,0x8c,0xe8,0xcc,0x12,0x4d,0x6c,0x44, +0x4f,0x16,0x4c,0x0c,0xb1,0xb2,0xe3,0x22,0xbf,0xa3,0x99,0x8c, +0xf2,0xc7,0x16,0x16,0xe7,0x11,0x15,0xe8,0x0c,0x8f,0x4d,0x31, +0x03,0xb5,0xe0,0x17,0x23,0xfc,0x05,0xa5,0x90,0x61,0x8a,0x8f, +0xc1,0x5a,0x18,0x82,0x53,0xa1,0xd8,0x44,0x98,0xdb,0x76,0x8f, +0xef,0xbf,0xa2,0x9d,0x9f,0x6b,0x4c,0x75,0x9d,0x84,0x75,0x2c, +0x36,0x1e,0xc5,0x09,0xb6,0x28,0x91,0x36,0xba,0x14,0xfd,0x9c, +0xf4,0x6b,0x24,0x4c,0xd1,0x80,0x31,0x18,0x3b,0x56,0xac,0x80, +0x78,0x44,0x55,0x27,0xa5,0xd4,0xca,0x3a,0x0b,0x31,0x44,0x6c, +0x5d,0x7f,0x42,0xc4,0x29,0x63,0x82,0x53,0x28,0x13,0x56,0xb2, +0xa7,0x9b,0x43,0x3a,0x6e,0x6b,0x12,0x88,0x31,0xa1,0xc4,0xca, +0x79,0x0d,0xf6,0x52,0x4d,0x53,0x73,0x45,0xab,0x53,0x31,0xe7, +0x6a,0x6e,0x6b,0x25,0x77,0xd8,0xd9,0x74,0xa4,0xd5,0xef,0x12, +0x11,0x93,0xfc,0x30,0xb4,0x7e,0x6f,0x3a,0x11,0x0d,0xba,0x76, +0x51,0x7b,0x82,0x76,0x07,0xef,0x0c,0x8e,0x91,0x73,0x30,0x34, +0xfd,0xd7,0x74,0xe8,0x59,0x10,0xd0,0xcc,0xad,0x3b,0x68,0xec, +0xb9,0xc1,0x8b,0x81,0x17,0x84,0x68,0xa5,0xe2,0xac,0xa7,0x38, +0x0b,0x56,0x22,0x5d,0x54,0xc7,0x2d,0xab,0x35,0x6b,0x74,0x69, +0x65,0xba,0x96,0xf1,0x52,0x16,0x5b,0x8e,0xe0,0x04,0x0b,0xa4, +0xa5,0x4d,0x2e,0xa5,0xaf,0x93,0x7f,0x89,0x12,0xcd,0xd4,0xc1, +0x73,0x48,0x51,0xca,0xcb,0x7d,0x54,0x76,0x16,0x60,0x32,0x0d, +0x9b,0x45,0x3b,0xa7,0x12,0x3b,0xa7,0x52,0x7c,0xf6,0x7a,0x16, +0x7b,0xe0,0x1d,0xe8,0x41,0xc3,0x1d,0x12,0x20,0x91,0x22,0xaf, +0x29,0x12,0x61,0xd1,0x89,0x3d,0xa3,0x32,0x7f,0xaa,0x68,0xfe, +0x3f,0x5c,0x20,0x90,0x45,0xf5,0xaa,0x99,0x4d,0x72,0xc2,0x7b, +0xa2,0x2e,0xa2,0x29,0x89,0x23,0x8b,0x2f,0xe2,0xe2,0x5b,0xc6, +0x6b,0x84,0x99,0xe4,0x0b,0x2e,0xb6,0x83,0xc5,0x98,0x82,0x26, +0x62,0x6f,0x47,0xf9,0xba,0x59,0xe6,0x38,0xdc,0x21,0xc3,0x9a, +0xbb,0x9e,0x7e,0x39,0x47,0x51,0x74,0x02,0x97,0x1c,0x72,0xc0, +0xbe,0x13,0xab,0x9c,0xb8,0xcb,0x8a,0xe2,0x8a,0xb4,0x7a,0x86, +0x5f,0x3f,0x97,0xbc,0xed,0x39,0x1b,0x09,0x2c,0xa2,0x9a,0x63, +0x93,0x8a,0x64,0x50,0x4a,0x2b,0x36,0x5f,0xde,0x71,0x6d,0x1f, +0x83,0xc7,0xf9,0x7d,0xac,0x30,0x53,0xc1,0xcf,0xa4,0x26,0xf4, +0x31,0x11,0x66,0xb6,0xd1,0xfc,0xcc,0xb1,0xac,0x91,0x30,0xf3, +0x12,0x9d,0x80,0x6b,0xd8,0xb4,0x94,0x94,0xb4,0xc4,0x74,0x06, +0xc2,0xa8,0xc4,0x7d,0xc9,0xfb,0xd3,0x0e,0x8a,0xad,0xad,0x7b, +0xb1,0x21,0x49,0xa7,0x52,0x52,0x35,0xf9,0x29,0x86,0x94,0xb0, +0x08,0x7b,0xb3,0x61,0xc9,0x67,0x52,0xce,0xa4,0x33,0xfc,0x8c, +0xf5,0x84,0x34,0x5f,0x25,0x64,0xa2,0x0e,0xf4,0x6c,0x5a,0xea, +0x40,0xbb,0x01,0xb5,0x45,0x1e,0xa1,0x27,0x7e,0x19,0x63,0x05, +0x63,0x6c,0x68,0x61,0x09,0x4e,0x64,0xb1,0xd9,0x0b,0x27,0x6e, +0xc4,0x3e,0xd2,0x06,0x97,0xc2,0x9f,0x13,0x7f,0x89,0x84,0x69, +0x1a,0xa0,0x81,0x71,0x13,0xa9,0x38,0x23,0xf1,0xd6,0x9f,0x44, +0xd5,0x14,0x07,0xd2,0x44,0x81,0x92,0xa1,0x53,0x07,0x13,0x50, +0xa7,0xf8,0xcf,0x84,0x6a,0x34,0x11,0xaa,0x51,0xaf,0xa4,0x1a, +0xa6,0x4a,0xaa,0x61,0x7c,0x95,0x27,0x5e,0x73,0x18,0xd3,0xbe, +0x4c,0xbe,0x3a,0x79,0x4c,0xbe,0x08,0x27,0xb3,0x95,0x79,0xd5, +0xa5,0x4a,0xbe,0xb1,0xd5,0xde,0x69,0xf3,0xd6,0x3d,0x07,0xab, +0xbd,0xea,0x7c,0x09,0xdf,0xb0,0xab,0x13,0x2e,0xda,0x80,0x09, +0x65,0xbe,0x69,0xa5,0xfb,0x8c,0x3d,0x49,0x76,0xdc,0xf5,0x94, +0xab,0x99,0x4d,0x79,0x31,0x3e,0x51,0xc7,0xa2,0xbc,0x0c,0xed, +0x75,0x1c,0x67,0xef,0x4c,0xb6,0xe3,0x7e,0xc9,0x7b,0x59,0x7b, +0xa9,0xfa,0xec,0xe1,0xb3,0x47,0xc2,0x0f,0xeb,0xea,0x63,0x2f, +0x63,0xec,0xeb,0x9a,0x6a,0xc7,0x41,0xff,0x52,0xe8,0x75,0xf5, +0x66,0x1b,0x73,0xe6,0xe8,0xe9,0xa3,0x9e,0x9a,0xa6,0x5e,0xfb, +0x2d,0xa4,0x2b,0xa8,0x78,0x4b,0xc9,0x4d,0xea,0x71,0x76,0xd9, +0xcf,0x2f,0xac,0x3f,0x1b,0xab,0xf8,0x46,0x8c,0xc8,0x37,0xb2, +0x71,0xf6,0xf7,0x38,0x19,0x46,0x89,0x7c,0x43,0xaf,0xce,0xae, +0x79,0x0b,0xe1,0x1b,0x7c,0x5c,0x67,0x28,0x7b,0xdb,0x7c,0x35, +0x0e,0xb2,0x82,0x96,0x06,0x1a,0x62,0xbb,0xe2,0x09,0x95,0xa2, +0xb6,0x06,0x45,0x14,0xca,0x1e,0x81,0xc5,0x45,0xb4,0xb8,0x03, +0xf2,0x1a,0x94,0xdf,0x56,0xbe,0xbe,0x0d,0x0e,0xb0,0x1e,0x1d, +0x6f,0x82,0xc7,0x45,0xf4,0xb8,0x6e,0x8e,0x5e,0xe0,0x32,0x17, +0x9d,0x85,0x23,0xf4,0xea,0xa4,0x03,0x77,0xa5,0x30,0x94,0x2a, +0x49,0x88,0x57,0x36,0x29,0x8a,0x95,0x74,0xb5,0xf2,0x4e,0x2c, +0x76,0x78,0xa3,0xb6,0x2b,0xf6,0x94,0xd6,0x6f,0xca,0x7a,0x19, +0xf7,0x6b,0x38,0xcc,0xd4,0xf8,0x88,0x89,0x73,0xa9,0x78,0x13, +0xc9,0x25,0xb1,0xe3,0xe3,0x45,0x59,0x67,0x11,0x3a,0xd3,0x30, +0x8d,0x8c,0xaa,0x16,0xc8,0xdf,0x51,0xd0,0x21,0x67,0xfd,0xac, +0x3c,0xed,0x8e,0xd8,0x32,0xb8,0xca,0x06,0x6e,0xd5,0xcd,0xa4, +0x12,0x2b,0xcf,0xd5,0x46,0x57,0x32,0x38,0x86,0xcc,0xb2,0x7f, +0x85,0x4f,0xa9,0x77,0xb1,0xfd,0x31,0xee,0xdc,0xe6,0xe8,0x4d, +0x67,0x09,0x1e,0x65,0xe0,0x71,0x36,0x44,0x11,0x72,0xf9,0x8e, +0xe6,0x3b,0xf1,0xc2,0x9a,0xa5,0xc2,0x37,0x2c,0x58,0x12,0xaf, +0xd7,0x98,0x4e,0x13,0xdf,0x7a,0x44,0x15,0xc7,0x27,0x16,0xc9, +0x78,0x39,0x26,0x09,0x67,0x69,0xd8,0xca,0xab,0xb1,0xa8,0xf3, +0x0c,0x74,0x28,0xd4,0x11,0xeb,0xb4,0x75,0xe6,0xa0,0x0e,0x71, +0x8f,0xa4,0xce,0xd3,0x2c,0x3f,0xa0,0xae,0xab,0xc8,0x06,0x04, +0x0b,0x41,0x03,0x37,0xb6,0xc1,0x34,0x78,0x8a,0x16,0xed,0x60, +0x01,0xbf,0xe3,0xb4,0x36,0xd8,0x28,0x4c,0xa2,0xf0,0xe9,0x2c, +0xd6,0x01,0x36,0x57,0xd1,0xa0,0x37,0xdc,0x01,0xf6,0x57,0xd1, +0x82,0x36,0x6a,0x92,0x28,0xb8,0xd9,0x81,0xe6,0xff,0x31,0xbc, +0x0a,0xf7,0x3b,0xd0,0xa1,0x64,0xc9,0x60,0x8f,0xa0,0x55,0xdb, +0x97,0x4b,0x53,0x70,0x7f,0x0d,0xac,0x87,0xb1,0xb8,0xbe,0x0a, +0x06,0x3d,0xfb,0xa5,0x7c,0x5a,0xa5,0xb9,0x23,0x1a,0xd4,0x5a, +0xd8,0x4e,0x72,0x7e,0x3b,0x1f,0xfa,0x39,0xe0,0x2a,0x1c,0x0b, +0xab,0x36,0xe2,0x0e,0x47,0xd8,0xb1,0xb4,0xe1,0x7b,0xd8,0x46, +0x07,0x7a,0xf9,0x7b,0xfa,0x79,0xd6,0x79,0x70,0xc5,0x37,0x52, +0x9a,0x63,0xae,0x32,0xb0,0x13,0x07,0xa3,0x16,0x25,0x5e,0x8a, +0xc8,0x52,0x15,0x09,0xb1,0x15,0x32,0x7e,0x39,0xde,0xa5,0x21, +0x1e,0x47,0xb0,0xe8,0xfa,0x14,0x5c,0x29,0xc1,0xc1,0x97,0x04, +0x1d,0x83,0x6a,0x9a,0x5f,0x29,0x5e,0x07,0x77,0x21,0x24,0x2b, +0x24,0x97,0x01,0xd7,0xd9,0x54,0x97,0x71,0x11,0x61,0xd6,0x86, +0x84,0x58,0x43,0xd3,0x70,0x54,0xef,0x20,0xae,0x2a,0x3e,0xe4, +0x7d,0x56,0x0f,0x75,0x85,0x71,0x46,0xfc,0xb8,0xae,0xc5,0xd7, +0x3b,0x17,0xf3,0x8b,0x2e,0x09,0x8b,0x28,0xf8,0xa5,0x91,0x35, +0x2f,0x5e,0x52,0xb1,0x21,0xc3,0xdd,0x86,0xeb,0xd8,0xfb,0xd0, +0xb9,0xc9,0x95,0x11,0x3e,0x60,0x3e,0x8b,0x96,0x8e,0xd3,0xb0, +0x1f,0x99,0xb9,0x6a,0x5b,0x09,0x8c,0x82,0xa1,0xd5,0x44,0xfd, +0x6d,0xd1,0x84,0xa1,0xfa,0x34,0x7f,0x5b,0xd8,0xca,0x6e,0xf7, +0x8f,0xcf,0x95,0xf1,0x0b,0xd6,0x0b,0xab,0xe8,0x75,0x39,0x3b, +0x6f,0x48,0x9f,0x53,0xe5,0xca,0x2e,0x27,0x2b,0x68,0xb3,0x78, +0x09,0x9a,0xd2,0x62,0xa8,0x0f,0x66,0xa1,0x1c,0x37,0xe2,0x18, +0x4a,0xbc,0x89,0x61,0x10,0xc1,0x1f,0x71,0xfb,0x2e,0x14,0x3f, +0x81,0x1a,0xaf,0xdb,0x22,0xe8,0xfe,0xa1,0x3f,0x41,0x98,0x2a, +0xe7,0xa7,0xa2,0x1a,0x3e,0xc4,0xbb,0x57,0x20,0x01,0xe2,0xa6, +0xd1,0xa8,0x89,0x32,0x12,0xe2,0x4a,0x50,0x5d,0x9a,0x2b,0x27, +0xff,0x34,0xf4,0x8f,0x37,0xc9,0xd0,0x43,0x23,0x02,0x85,0x6b, +0x20,0x44,0x50,0x29,0xd8,0x03,0xfa,0x4e,0x81,0x44,0x54,0xcf, +0x69,0xe5,0xb0,0x0c,0x58,0x9c,0x06,0xea,0x30,0x4a,0x53,0xed, +0x05,0xdf,0x8f,0x85,0x3d,0x2f,0x9f,0x82,0x7a,0x18,0xcc,0x60, +0xe0,0x04,0x15,0xe0,0xec,0xb5,0xf1,0xb0,0x15,0x03,0x21,0x94, +0xc7,0x49,0xa7,0xa0,0xad,0xd2,0x9d,0x41,0xbe,0x9e,0x36,0x23, +0x71,0xba,0xf2,0x30,0x80,0x8c,0x7a,0x93,0x9a,0xab,0x38,0x2b, +0x8b,0xa8,0x08,0x69,0xbb,0xa3,0x89,0x47,0xa8,0xe8,0xfc,0xc8, +0x9c,0x88,0x3c,0xa6,0x46,0xf8,0x28,0x07,0x5f,0x3a,0x18,0xc7, +0xac,0x9a,0x8e,0x76,0xf3,0x98,0x7f,0x30,0x38,0x9f,0x6d,0x11, +0xe6,0xc3,0x20,0x43,0x1c,0x24,0x4c,0x94,0xf3,0x14,0x6d,0x3e, +0x0b,0x7b,0xaf,0xc1,0x7d,0x4b,0x94,0xc5,0x42,0xbf,0xbc,0xed, +0x28,0x83,0xbe,0x4c,0x04,0xde,0xec,0x80,0x9b,0x62,0xb1,0x50, +0x5f,0xa0,0x0c,0x21,0x74,0x6a,0x06,0x31,0xee,0xd0,0x43,0x1c, +0x70,0xcb,0xf4,0x27,0x12,0xfc,0x7f,0xe0,0xdd,0x58,0xbf,0xb8, +0x80,0xd3,0xde,0xbe,0xde,0xde,0x5c,0x10,0x68,0xc2,0xc4,0x56, +0x9c,0x08,0xa6,0xc6,0x68,0x8a,0x0b,0x4d,0x61,0x06,0xe5,0x85, +0x43,0x1d,0xf0,0x1b,0x02,0xbc,0xa3,0xcb,0xed,0xb8,0x9f,0x81, +0x2a,0x84,0x9e,0x11,0x7f,0x30,0x11,0x42,0x59,0x3b,0x1f,0x46, +0x85,0x9f,0x39,0x75,0x26,0x58,0xfa,0x01,0xe7,0x94,0x95,0x49, +0x20,0x89,0xf7,0x61,0x31,0xc2,0x04,0x4c,0x70,0x0a,0x85,0xb1, +0x86,0xc8,0x11,0xe1,0xbb,0x5b,0x5a,0x65,0x41,0x5c,0xcd,0xe4, +0x1e,0x70,0xd1,0xb0,0x5e,0x23,0x82,0x8a,0xc6,0xf5,0x77,0x91, +0x83,0x55,0x68,0x5c,0x4e,0xcc,0x70,0x05,0xf7,0xf5,0xc0,0x41, +0xac,0xa6,0x1a,0x3c,0xe5,0x37,0x8b,0x76,0x9c,0xf1,0xf6,0x39, +0xe6,0x43,0xec,0x18,0x0e,0xe3,0x5b,0xb0,0xfb,0x6e,0xb0,0x05, +0x72,0x98,0x46,0xec,0x18,0xec,0x48,0x44,0x70,0x1f,0x94,0x12, +0x3b,0x7e,0x02,0x49,0x21,0xf4,0x88,0x78,0x47,0xec,0x28,0x6c, +0xe3,0x4f,0x53,0x11,0x67,0x4e,0x86,0x1e,0x97,0xfe,0x89,0xba, +0xe5,0xc4,0x8e,0x13,0x7c,0x3a,0x6b,0x80,0x66,0x38,0xc3,0x98, +0x98,0x1f,0x84,0x95,0x6b,0x70,0x19,0xce,0xc6,0x09,0xe5,0xd6, +0x1c,0xac,0x83,0x79,0xb7,0xc1,0x2e,0x1c,0xea,0x18,0xb1,0xab, +0xdf,0xd1,0x40,0x5c,0xe8,0x35,0x56,0xba,0xc1,0xdf,0xeb,0xc8, +0x86,0x91,0xc8,0x28,0x9b,0x0b,0xf4,0xa5,0x5e,0xe6,0x94,0x3c, +0x8f,0x91,0x25,0x42,0xff,0x70,0x98,0x05,0x0a,0x4d,0xfc,0x96, +0xb0,0x88,0x9f,0x55,0x83,0x24,0x1a,0xa7,0x1a,0xa4,0xa9,0xad, +0x24,0x42,0x99,0x1a,0x91,0x41,0x5a,0x6e,0x0a,0xf3,0x88,0x71, +0x43,0x36,0x92,0x41,0xea,0x8f,0x63,0x2b,0x88,0xfa,0x02,0xa6, +0x18,0x7a,0x45,0x7c,0x24,0xc6,0x55,0x5d,0xe2,0x43,0x45,0xe3, +0xce,0x1c,0x97,0x42,0x4f,0x9c,0x53,0x5e,0x2e,0xf1,0xe4,0xe7, +0xb1,0x30,0xd3,0x9a,0xc2,0xef,0x4d,0xd1,0x84,0x18,0x69,0x2c, +0xad,0xb5,0x96,0x80,0x0b,0x38,0xb5,0xc3,0x2e,0x78,0xa2,0x59, +0x0b,0x6e,0x33,0x68,0x5c,0xe6,0x83,0x96,0x87,0x70,0x8a,0x74, +0xba,0xcf,0x8e,0x03,0x4b,0x46,0x6a,0x53,0x89,0x06,0x92,0x37, +0x14,0x61,0x95,0xe5,0x30,0x22,0x41,0x96,0x0c,0x33,0x62,0xc0, +0x1a,0x96,0x6b,0xc2,0x64,0x41,0x6c,0x55,0x5a,0xc0,0x3b,0xb2, +0x41,0x30,0x02,0xa6,0xb6,0x88,0x41,0x53,0xec,0x21,0x3f,0x4f, +0x4e,0x42,0x67,0xf7,0x78,0xf5,0x56,0x8e,0xd7,0x4b,0xe5,0x78, +0x85,0xff,0x4e,0x4c,0x2a,0x68,0x57,0x8d,0x17,0x31,0xe9,0x3d, +0xea,0x94,0x96,0x4d,0x86,0xc9,0xfe,0xca,0xe9,0xd7,0xe0,0x67, +0x1d,0x60,0x21,0x1b,0x0e,0xb7,0x0b,0x21,0xc6,0xb0,0x05,0xb3, +0xd1,0xcf,0x08,0xfc,0x04,0xd7,0xab,0xbc,0x2b,0x9c,0xbc,0x44, +0x3e,0xe8,0xa0,0x78,0x31,0x96,0x29,0x2e,0x31,0x85,0xd9,0x34, +0x79,0x60,0x7b,0x94,0x62,0x5f,0x1c,0x5d,0x61,0xcb,0xfd,0x02, +0x4c,0x11,0xf1,0x8a,0x0f,0xe4,0xdd,0x2b,0xba,0xbd,0x22,0x34, +0x58,0xfa,0x89,0x78,0x45,0xf9,0x78,0x98,0xaa,0x72,0x2e,0x8d, +0x63,0xe2,0xce,0xbf,0x26,0xcc,0x6e,0xc5,0xd9,0x60,0x4a,0xf1, +0xbf,0x76,0xb5,0xb3,0x18,0x47,0x99,0x78,0xc7,0xb4,0xca,0xe0, +0x1e,0xf0,0xfc,0x30,0xc1,0xdc,0x98,0x57,0xc7,0x78,0xec,0x14, +0x64,0xf4,0x82,0x82,0x6d,0xcf,0xa4,0x84,0xd8,0xd5,0xc5,0x27, +0xd4,0xc9,0x60,0x0d,0x6d,0x9c,0x20,0x11,0x2f,0xc1,0xb4,0x24, +0x93,0xe0,0x1f,0xda,0x3d,0x09,0x13,0x60,0x66,0x2b,0xce,0x04, +0x63,0x43,0xf2,0xc4,0x6b,0x4c,0x49,0xa0,0xf6,0x44,0xb5,0x8d, +0x38,0x12,0x07,0x29,0x27,0xe1,0x1d,0xf4,0x25,0xc1,0x47,0x65, +0x53,0x07,0x7f,0xac,0xdb,0x53,0x81,0xc1,0x79,0x15,0xc4,0x45, +0x92,0xc5,0xbe,0x4f,0x7b,0xda,0x84,0xd3,0x26,0xb0,0xab,0x4b, +0x17,0xa3,0x8c,0xf9,0x96,0x76,0xf4,0xa7,0xc4,0x06,0x26,0x0e, +0xac,0x68,0xe6,0xe8,0x56,0x1c,0xad,0x9a,0xdf,0x95,0xa6,0x30, +0xff,0xcb,0xfc,0x0e,0x54,0xbe,0xf5,0x5b,0x60,0x4a,0xc8,0x5b, +0xff,0x49,0xde,0xba,0xfa,0x6f,0xf3,0xdb,0x5b,0x9c,0xdf,0xd1, +0x30,0xd5,0x57,0xe9,0x27,0x1a,0xfc,0x55,0x61,0x37,0x8b,0x03, +0x1f,0xcc,0x05,0x6b,0x37,0xf0,0x85,0x4b,0x69,0xdc,0xf1,0x76, +0xbc,0xb6,0x4f,0xe2,0x7f,0xeb,0xf8,0xdd,0xbb,0x9a,0x6d,0x86, +0xc6,0xf4,0xca,0xb0,0x15,0x67,0x57,0x49,0x71,0x9c,0x6f,0x98, +0x31,0x4c,0x8c,0x2e,0xc5,0x6f,0x5f,0xe1,0x4e,0xf8,0x66,0xb6, +0x46,0xc9,0xae,0x86,0x33,0x61,0x97,0x12,0x61,0x0f,0x67,0x96, +0x2e,0xf1,0xe2,0xad,0x58,0xeb,0x7a,0xc3,0x1a,0x79,0x81,0x9b, +0x03,0xd7,0xba,0xb5,0xc3,0xf6,0xa2,0x2d,0x59,0xb4,0xe9,0x4a, +0x33,0x47,0x02,0x51,0xab,0x2c,0x98,0x9a,0x10,0x33,0xa7,0xcb, +0x61,0x02,0x75,0x0c,0x87,0x3a,0xe1,0x98,0x31,0x38,0xb2,0xcc, +0x96,0xfb,0x01,0xfa,0xe4,0x7d,0x0e,0xef,0x5e,0x21,0x61,0xdd, +0x46,0xbe,0xc6,0xd9,0xa5,0xa5,0xb3,0x60,0xca,0x97,0x19,0x7f, +0x20,0x96,0x6c,0x68,0x75,0xa6,0x19,0x76,0xa5,0xe1,0x68,0xbe, +0xd3,0xb8,0xeb,0x48,0xfb,0x4d,0xf8,0x63,0x6d,0x7b,0xe7,0x51, +0x63,0x4a,0xbc,0x70,0x7b,0x33,0xab,0x7c,0x1a,0x11,0x1a,0x02, +0x81,0x84,0xa4,0x56,0xd4,0x51,0xb9,0xd8,0x52,0xe2,0x04,0x64, +0x54,0x06,0xd9,0x13,0x17,0xeb,0x8b,0x32,0x32,0x2a,0xbf,0x00, +0x5d,0x04,0x3d,0x22,0x45,0x68,0x28,0x11,0x5d,0x4c,0xe5,0x04, +0x64,0x54,0x16,0x93,0x01,0xe7,0xe3,0xf9,0x45,0x6c,0xab,0x70, +0xc5,0x14,0x74,0x66,0xd2,0x58,0x6e,0x43,0x90,0x61,0x06,0xce, +0x96,0xd6,0x39,0xc0,0x30,0xd0,0xbc,0x02,0xfa,0x29,0xb0,0x5f, +0x03,0x4e,0x53,0xa8,0xe5,0x83,0xe3,0x3c,0xa7,0x4b,0x4d,0xfd, +0x0e,0x1e,0xd6,0x1b,0x49,0x04,0x3e,0xe1,0x37,0x20,0xa1,0x7e, +0x2a,0xcd,0x7d,0x19,0x4b,0x74,0x4f,0xcf,0x73,0x20,0x83,0xcd, +0x9a,0x78,0x99,0x3a,0x5d,0x1c,0x52,0x5c,0xaa,0xf9,0x13,0x71, +0xca,0x27,0x2a,0xd8,0xf8,0x02,0x5f,0x23,0x40,0xb3,0x05,0x35, +0x55,0x36,0xce,0xff,0x9f,0x60,0xa3,0xe0,0x0b,0x6c,0x7c,0x5d, +0x06,0xef,0x50,0x47,0x84,0xaf,0x82,0x36,0x16,0xb6,0xb4,0xe1, +0x16,0xa8,0x02,0xbf,0x76,0x21,0xdb,0x18,0xbc,0xb0,0x0a,0x9d, +0x4d,0xc0,0x19,0x5f,0xe1,0x59,0x63,0xfe,0x72,0x3b,0x9e,0x24, +0x44,0x53,0x0e,0xc8,0xe2,0x8e,0x57,0xa8,0xf1,0x9b,0xd5,0xef, +0x0c,0x3f,0xb4,0x55,0x98,0x09,0xea,0x7a,0xa8,0x2e,0x8c,0x31, +0xe5,0x7b,0x53,0x36,0xda,0x38,0x64,0x1a,0x6e,0x9d,0x99,0x43, +0xe4,0xce,0x91,0x3f,0x61,0xd8,0xbb,0x74,0x18,0x40,0x3e,0xab, +0xe7,0x55,0xbe,0x67,0x04,0x95,0x8e,0x03,0x40,0x43,0x0b,0xfc, +0xc7,0x30,0xb8,0x72,0x0a,0x5b,0xb3,0xb0,0x6a,0x7e,0xe1,0xa4, +0xab,0x99,0x9c,0xeb,0x7b,0xbb,0xe7,0x1b,0x6f,0x33,0x5d,0x46, +0x58,0xc3,0xde,0x7c,0x59,0xfb,0x53,0xf6,0x4b,0xa3,0x34,0xce, +0x63,0xbe,0xed,0x6c,0x7d,0x5d,0x86,0x0f,0x83,0xbd,0xec,0x85, +0x05,0x69,0x73,0xe3,0xa6,0xdd,0x8a,0xe3,0x0e,0xbf,0xdd,0xfb, +0x7c,0xd7,0x03,0x06,0x93,0xbd,0xd8,0xd8,0xd9,0x67,0x17,0x87, +0x4e,0xba,0x1e,0xc9,0x05,0xbf,0xf3,0x7f,0xea,0xf9,0x84,0x51, +0xbb,0xc6,0x73,0x2c,0x1c,0xf9,0x01,0xd8,0xc7,0xb9,0x20,0x21, +0x90,0xef,0xd3,0x01,0x3e,0x11,0x54,0x3e,0x4a,0x60,0xfc,0x22, +0x38,0x3c,0x27,0xb3,0x89,0x40,0xfe,0x13,0x54,0x7f,0x64,0xfe, +0x88,0xe1,0xfb,0x28,0x84,0xb1,0xbf,0x19,0x4c,0x16,0x46,0x98, +0x01,0x4f,0x59,0x2f,0xc2,0xfe,0x8b,0x70,0xef,0x52,0x06,0x5a, +0xcd,0x59,0x33,0x68,0xa7,0xdb,0xd6,0xbe,0x58,0x09,0x83,0x0d, +0x72,0xea,0x39,0xec,0xd7,0x3e,0xff,0xda,0x9a,0x67,0x84,0xc1, +0x7a,0xb3,0xf2,0x95,0xf3,0xd6,0x8d,0x35,0xcb,0x27,0x10,0xda, +0xb3,0xfd,0xc7,0x3b,0xed,0x0f,0x18,0x38,0x43,0xb4,0x64,0xe1, +0xf6,0x66,0xcb,0x7a,0x4b,0x1c,0xe8,0x2b,0x5e,0xb3,0x3b,0x2d, +0xb0,0xf5,0xbb,0x2b,0xbf,0xe5,0xdd,0x36,0x4b,0xe1,0x5c,0x16, +0xe8,0x4f,0x58,0xb3,0xc0,0xe9,0x5b,0x87,0x6f,0x37,0x9e,0x0c, +0x37,0xe2,0xe0,0x54,0x14,0xb8,0xc6,0x81,0x5b,0x52,0xfa,0xde, +0x94,0x7d,0xf1,0x87,0xea,0x8b,0xb9,0x35,0x4f,0x48,0x30,0x62, +0xd6,0xb6,0x33,0x22,0x7c,0xa9,0x56,0xdc,0xf4,0x56,0x9c,0xae, +0x0a,0x3b,0xf3,0x4d,0x95,0xf3,0x36,0xd4,0x91,0x00,0x8c,0x84, +0xcc,0x9b,0x2d,0xf7,0x0a,0x28,0x71,0xde,0x44,0xdf,0x2a,0xfd, +0x1a,0x76,0xfe,0xc0,0xd9,0x65,0x65,0xda,0x22,0xc0,0x04,0x9e, +0x3e,0x46,0x9c,0x79,0x4f,0x2c,0xeb,0x99,0x78,0x38,0xf1,0x50, +0xd2,0xdd,0xe6,0x7b,0x0f,0xaa,0x9f,0x30,0x17,0x85,0xdd,0xa6, +0xfc,0x78,0x7a,0x93,0xb1,0x89,0x89,0xa1,0xbd,0x7d,0xa9,0x5d, +0xb1,0x73,0xf6,0x56,0x17,0xae,0xcd,0xf9,0x9e,0x41,0xbb,0x9c, +0xc1,0x2c,0x39,0xec,0x13,0x96,0xe1,0x32,0x2a,0xc1,0x44,0x02, +0x93,0xa9,0xda,0xc4,0xa4,0x5a,0x19,0x3f,0x0f,0x2c,0xe9,0x7d, +0xeb,0x9d,0x56,0xd9,0x5b,0xd4,0x7a,0x70,0xcd,0x37,0x2e,0x3e, +0xcb,0x78,0xc4,0xd4,0x10,0x65,0xd6,0x17,0x76,0xb1,0x55,0x69, +0xa9,0x95,0x32,0xbe,0xc6,0x40,0x68,0x40,0x35,0xb1,0xa3,0x34, +0xba,0xc3,0x49,0xd6,0x3f,0x3e,0x20,0x84,0xb8,0x9e,0x0f,0x17, +0x4c,0xc2,0x98,0x86,0x02,0x35,0x54,0x11,0x6b,0xaa,0x19,0x8c, +0xa5,0xbc,0x71,0xb0,0x13,0x8e,0x1e,0x8f,0x1a,0x64,0x35,0x3e, +0x81,0x5e,0xb9,0x9f,0x23,0x7e,0x23,0x0f,0x90,0xdd,0xa6,0xac, +0x12,0x38,0x75,0x3a,0x58,0xfa,0x0a,0x67,0x95,0x96,0x4a,0xf8, +0xde,0xfc,0x68,0xb6,0x79,0x52,0x2d,0x0e,0xcb,0xc1,0x5e,0x8a, +0x4c,0x6e,0xe7,0x67,0x1b,0x18,0x2a,0xff,0x9d,0x11,0x46,0x0a, +0x43,0xd8,0x1b,0xef,0x4a,0x60,0x54,0x3c,0x0c,0x35,0x8a,0xe2, +0x3c,0x71,0x80,0x3b,0xf6,0xd7,0x9b,0xc2,0x78,0x09,0x6e,0x2c, +0xa4,0xdf,0x06,0x5d,0x60,0xdf,0x80,0xa9,0x45,0x26,0x37,0x1f, +0x57,0xe0,0x2c,0xb2,0x0c,0xe3,0xf4,0xc9,0x78,0xb6,0xf2,0xae, +0xac,0x7f,0x5c,0x60,0x88,0xb7,0x9f,0xb7,0x18,0x47,0x47,0xc1, +0xa0,0x66,0x1c,0x04,0x72,0x53,0x94,0xe3,0x44,0x73,0xf8,0x86, +0x58,0x35,0xcc,0x19,0xc7,0x6a,0xa3,0x46,0xa9,0x1d,0xf7,0x10, +0x7a,0xe6,0x7c,0x0a,0x7f,0x4b,0xac,0xca,0x6d,0xe5,0xc3,0x89, +0x55,0xe2,0x72,0x78,0x8e,0xb3,0x4b,0xc8,0x72,0xd8,0xc8,0x1f, +0x63,0x4d,0x60,0x29,0x11,0x74,0x34,0x79,0xe0,0x27,0x63,0x2f, +0xd6,0x71,0x73,0xa0,0x8f,0xd3,0x9f,0x07,0x41,0x93,0x11,0xa4, +0xc2,0x54,0xf6,0xc9,0x6b,0x05,0x0c,0xcc,0x22,0xa6,0xa6,0x72, +0xbb,0xb1,0xaf,0x05,0xf6,0x59,0x32,0x8f,0x01,0x07,0x39,0xeb, +0x8f,0x46,0x26,0x24,0x12,0xea,0x8c,0xcb,0x37,0xe7,0x60,0x25, +0xd0,0x37,0x60,0x7c,0x14,0x38,0x33,0xa0,0x47,0x9d,0xc4,0xf1, +0x7e,0x63,0xbc,0x0d,0x18,0xb9,0xcf,0xe1,0x63,0x66,0x23,0x91, +0x56,0x0e,0x7d,0x4f,0xea,0x7e,0xe9,0xf9,0xef,0x13,0x64,0x49, +0x4f,0xa2,0x81,0x86,0x8d,0x9a,0xc2,0x0c,0x39,0x81,0x9e,0x9f, +0xbe,0xb2,0x01,0x6f,0x25,0x1b,0x18,0xde,0x8a,0xc3,0xc1,0xd8, +0xe8,0x6f,0xd0,0xe3,0x40,0xb0,0xbe,0x1f,0x89,0x3f,0x76,0xdc, +0xaf,0x22,0xf4,0xa8,0x58,0x49,0xe9,0x25,0x15,0xf4,0x88,0x58, +0xdf,0x03,0x75,0x08,0x1d,0xe0,0xa3,0xa0,0x81,0x6d,0x45,0x1f, +0x98,0x6b,0x80,0x73,0x71,0xa7,0x29,0x0c,0x37,0xa0,0x31,0x75, +0x27,0xe1,0x04,0x53,0x71,0x8c,0xb4,0x6a,0x23,0x81,0xb5,0xa1, +0x75,0x30,0x31,0x56,0x4c,0x49,0x3a,0x10,0x61,0xfc,0xed,0x4c, +0xff,0x25,0xd2,0x65,0xfe,0x87,0x0f,0x1b,0x8c,0x24,0x74,0xcc, +0x98,0x04,0xde,0x67,0x25,0x95,0xaf,0xa2,0x64,0x51,0x3f,0x9d, +0xf9,0x05,0xec,0x35,0x31,0x96,0x0a,0xc9,0x3a,0x95,0x9d,0xa3, +0x79,0x45,0xd9,0x16,0xef,0x2f,0xf0,0x51,0x71,0x96,0x71,0x2d, +0x38,0x4e,0x05,0x3e,0xb3,0xe5,0x30,0x49,0x04,0x1f,0x27,0x12, +0x36,0x7a,0xe2,0x28,0xe2,0xc4,0x3f,0x42,0x9f,0x82,0xee,0x18, +0x9c,0xff,0x15,0x7c,0xfe,0xc0,0xc5,0x65,0xa5,0x12,0x7f,0x7e, +0x19,0xcb,0x17,0xb7,0x0a,0xc5,0x54,0xb3,0xb8,0x1f,0x3e,0x86, +0xc6,0x23,0xfb,0x70,0xc4,0x4c,0x1c,0x26,0xad,0x75,0xbe,0xf3, +0xae,0x10,0x7a,0xc5,0xc1,0x04,0x0d,0x78,0xa1,0x7b,0x85,0x97, +0x52,0x1b,0x30,0x9a,0xc5,0x67,0xca,0xaa,0xa3,0x32,0xcd,0x67, +0xf0,0x98,0x16,0x6b,0x6b,0xdc,0x88,0x27,0x06,0x86,0x74,0xdb, +0xc1,0x81,0xba,0x82,0xa8,0x40,0xa5,0x27,0x4e,0x11,0x3d,0xf1, +0x98,0xd2,0x13,0x27,0x10,0x4f,0xb4,0x23,0x9e,0xd8,0x33,0xf7, +0x73,0xf8,0xdf,0x3d,0x91,0x8c,0xd5,0x4f,0x38,0xab,0x84,0x78, +0xa2,0x33,0x7c,0x43,0xb4,0xc6,0x06,0x61,0x00,0x5a,0xd1,0x21, +0xc9,0xa7,0x52,0x52,0x34,0x61,0x23,0x5d,0x9b,0x58,0x95,0x5c, +0x98,0xb2,0xb3,0x81,0x5b,0x69,0x8f,0xea,0x4e,0x5a,0x87,0xe2, +0xcd,0xb8,0xa2,0x88,0xf2,0x98,0xf2,0x73,0x0c,0xae,0xa3,0x0f, +0x9e,0x3a,0x74,0xf2,0x90,0x14,0xbf,0x31,0x05,0x0d,0xf2,0x29, +0x2b,0xad,0x51,0x9d,0xf8,0xe1,0xa0,0x1a,0x7b,0x0e,0x86,0xc2, +0xc8,0x16,0x18,0x17,0x0f,0x16,0x0c,0xd8,0x0a,0x1e,0x57,0x78, +0x0f,0x60,0x5a,0xc9,0xc4,0x5e,0x11,0x99,0x54,0x42,0xe0,0x19, +0x6f,0x3f,0x1f,0x3f,0x12,0x53,0x86,0xc2,0x68,0x05,0x89,0xb4, +0xc6,0xa6,0x2a,0x53,0xc7,0x10,0xf7,0x1c,0xa2,0x34,0x95,0x53, +0x99,0x9a,0xf3,0x29,0x42,0x74,0xcf,0xec,0xd6,0xbf,0x4c,0x85, +0x7e,0xb8,0xad,0xb2,0x48,0xc2,0x6b,0x83,0x01,0x0b,0x65,0x7f, +0xb6,0x08,0xa9,0x72,0x18,0x80,0xf6,0xf4,0x8e,0x53,0x3b,0x4f, +0xee,0x92,0xa2,0xcc,0x84,0xf8,0xb8,0x3f,0x2e,0xf4,0x40,0x76, +0x3c,0x0e,0xaa,0x76,0xe0,0x80,0x08,0x84,0x42,0x98,0x10,0x05, +0xfa,0x0c,0xac,0x15,0xec,0x2f,0xf3,0xf6,0xd0,0xaf,0x8d,0x42, +0x7e,0x78,0x48,0xee,0xa9,0xbc,0x7c,0x4d,0x30,0x85,0x95,0x58, +0x46,0xc6,0x30,0x93,0x18,0x16,0x10,0x17,0x78,0xca,0xc7,0xcf, +0xc7,0x57,0xa4,0x78,0xbf,0x36,0x4e,0x05,0x13,0x33,0xc2,0xd1, +0x86,0x5a,0x42,0x3f,0xca,0x07,0x87,0x6e,0xc6,0x09,0xaa,0xe6, +0x01,0xd7,0x3e,0xa4,0x7f,0x08,0x7b,0x45,0xac,0x4a,0x50,0x90, +0xe8,0xaf,0xb2,0xea,0x3a,0xce,0x2c,0x2a,0x91,0x7c,0xcf,0xc7, +0xb2,0x68,0xbc,0xd6,0xf4,0x26,0xfd,0x2d,0xe6,0x6f,0x46,0xf9, +0x7c,0x1c,0xaf,0xa4,0x47,0x3a,0xa5,0xe0,0x71,0x1a,0x2a,0x98, +0xb7,0x14,0xfa,0x07,0xe1,0x32,0xef,0x31,0x52,0xe3,0x20,0x9f, +0x63,0x1b,0x47,0x9a,0x53,0xf1,0xa6,0x92,0x46,0xea,0xde,0xf9, +0xdc,0xa7,0x67,0x65,0xe7,0xc4,0x06,0x6c,0xb3,0xa1,0x55,0x93, +0xe0,0xa0,0x31,0x05,0xae,0xff,0x35,0x9a,0x6d,0x7d,0x08,0x43, +0x75,0x5b,0x3b,0x9f,0x62,0x30,0xd5,0xda,0x65,0xc5,0x76,0xca, +0x60,0x68,0x97,0x8c,0xd8,0x9a,0x4a,0x28,0x9f,0x08,0x38,0xfd, +0x15,0xd8,0xff,0xff,0x19,0x70,0x66,0xc3,0x24,0x15,0x6a,0x69, +0x7c,0x84,0xbb,0xac,0x31,0xaf,0xd7,0xb5,0x03,0x0d,0xc4,0x6e, +0x94,0x30,0x97,0xaa,0x49,0x15,0x45,0xaf,0xdb,0xad,0x76,0x5a, +0x88,0x42,0x67,0x56,0x38,0xd8,0xfa,0x23,0xd1,0xa5,0x32,0x1a, +0xb7,0xe0,0x2b,0x16,0xf2,0x61,0x2a,0xe6,0x93,0x8f,0x6f,0x11, +0xe7,0xf0,0xef,0xee,0x36,0x44,0x81,0x43,0x54,0x73,0x38,0xd9, +0x0c,0x46,0x77,0xcf,0xe1,0x44,0xe5,0x1c,0x3e,0x56,0xce,0xa1, +0x68,0x47,0xd6,0xd7,0x39,0x7c,0x85,0x73,0x89,0xbb,0x35,0xf1, +0x07,0x58,0x6c,0xe2,0x9d,0xa0,0x89,0x16,0xc6,0x63,0x08,0x0b, +0x56,0xf0,0x33,0x71,0x3c,0x61,0x2d,0xee,0x64,0x09,0x5a,0xf8, +0xe3,0x0c,0x03,0x64,0x50,0x6f,0x45,0xa6,0x9c,0x03,0x87,0xe7, +0x37,0x41,0x23,0x16,0x36,0x30,0xb0,0xe5,0x10,0xa5,0x7b,0x7c, +0x9c,0xcf,0x06,0xa9,0x73,0xc0,0x91,0x23,0xeb,0x47,0x4e,0x16, +0x87,0xf0,0x3d,0xf5,0x34,0x3f,0xf7,0xde,0x39,0xd9,0xb9,0xdb, +0x61,0xd0,0xeb,0xad,0x66,0x93,0x10,0x45,0x30,0xbb,0x0b,0x88, +0xc4,0x7b,0x83,0x1f,0x7f,0xe1,0x57,0x2a,0x84,0x95,0xef,0x8c, +0xb5,0x04,0x1d,0x33,0x5e,0x67,0x1a,0xbe,0xc0,0x37,0xd0,0x42, +0xdb,0xe8,0x20,0xa3,0x8f,0x5e,0x8b,0xc5,0x22,0x56,0xff,0x17, +0xa0,0x71,0x23,0x03,0x18,0x12,0x37,0x6b,0xdb,0xa1,0x56,0x3c, +0xda,0xc0,0xc0,0x94,0x75,0xe0,0xa7,0x23,0x4a,0x25,0xaf,0x47, +0x38,0xfc,0x9a,0xe5,0x4b,0x66,0x16,0x54,0xb0,0xe8,0x8f,0xe7, +0xc1,0x9f,0xee,0xec,0x85,0xfe,0x2c,0x96,0x83,0x3f,0x94,0x53, +0x82,0xc2,0x82,0x2d,0x76,0x28,0x30,0xcb,0xb0,0xbd,0x78,0x81, +0xdb,0x5b,0xef,0xd6,0xba,0xb5,0x82,0x81,0x1f,0xd1,0x90,0xad, +0xaa,0x2c,0x69,0xbf,0xd0,0x60,0x9b,0xc5,0xed,0xb1,0x72,0x93, +0xbb,0xb8,0x30,0xe2,0xcd,0xd7,0xdd,0x70,0xe1,0xa3,0x1c,0xb7, +0x11,0x30,0xa2,0x05,0x47,0xa8,0xe6,0x6f,0xa6,0x1c,0x26,0x8a, +0x70,0xe1,0x8c,0xd2,0xd1,0x84,0xbe,0xd9,0x71,0xcf,0xa1,0x77, +0xfe,0x67,0x15,0x34,0xb7,0xfd,0x05,0x16,0xbf,0x8a,0x84,0x5d, +0x92,0x4a,0x86,0x5f,0xd8,0xc6,0x6f,0xe1,0xb7,0x11,0x99,0x2f, +0xcc,0x64,0x81,0x87,0xd7,0xc8,0xd3,0x24,0x56,0x8e,0x60,0xaf, +0x2c,0xbc,0x83,0xfd,0xea,0x27,0xd4,0x15,0x70,0x36,0xef,0x97, +0x43,0xbf,0xf5,0x8f,0x18,0xa1,0x0f,0x3e,0x67,0x1f,0x3d,0xba, +0x0f,0xc3,0x8b,0xde,0x58,0x9f,0xe7,0xb6,0xea,0xac,0xc1,0x01, +0x4b,0x74,0x89,0x35,0x3e,0xfc,0x16,0xe2,0x44,0x43,0xa0,0x6f, +0x13,0x89,0xc5,0x26,0x72,0xe2,0xe9,0xea,0x16,0x30,0x40,0xf4, +0x74,0x37,0x1c,0x37,0x17,0x87,0x10,0x4f,0xbf,0xf1,0x21,0xe3, +0xa3,0xd2,0xd3,0x13,0x5b,0xf8,0xa8,0x6e,0x1f,0x7a,0x84,0xab, +0x8a,0x8b,0x97,0x80,0x6e,0x40,0x3c,0x59,0x2b,0xfe,0x1a,0x9d, +0x86,0x10,0x47,0x44,0x68,0x6b,0xd7,0x7f,0xb5,0xb7,0xf0,0x91, +0xad,0x42,0x64,0xa7,0x9c,0x7e,0xd8,0x25,0x63,0x1f,0x97,0x7c, +0xdf,0x71,0xf9,0x71,0x9d,0x5e,0x9b,0xf1,0x35,0x8b,0x92,0x7a, +0x6e,0x95,0xc2,0xb4,0xd5,0xf6,0x6a,0xe5,0x8d,0xfc,0x07,0xc9, +0x3f,0x32,0x55,0xb8,0x89,0x8e,0xc9,0x15,0x4f,0x40,0x9a,0x9d, +0xe3,0x76,0xe1,0x60,0x5b,0xed,0x45,0xba,0x65,0x4e,0x5c,0x5d, +0x43,0x69,0x5b,0xf6,0x55,0xb1,0xc4,0xdd,0x06,0x8d,0x88,0xe0, +0x94,0xe2,0x8c,0x65,0x8c,0x1a,0x7f,0xa9,0xd3,0x8e,0x8d,0x2b, +0x8d,0x2e,0x8b,0x2c,0x31,0x8e,0x21,0x91,0x66,0x88,0x1c,0xd5, +0x75,0x27,0x57,0x5a,0x71,0x49,0xe9,0x49,0x17,0x12,0x32,0x19, +0x41,0xaf,0xfd,0x21,0xb8,0x83,0x80,0xe7,0xe9,0x8c,0xb2,0xd4, +0x8a,0xa4,0x2a,0x06,0xee,0xe8,0x52,0xa8,0x1e,0x84,0x2e,0x47, +0xb1,0xbf,0x74,0x89,0xef,0x41,0xd7,0x75,0x23,0x71,0x98,0x78, +0x02,0x0a,0x06,0x52,0x7f,0x66,0x2b,0xa0,0x7f,0x3c,0xe1,0x92, +0xfd,0x23,0x60,0x33,0xb0,0x9a,0x30,0x4a,0xbc,0x43,0xb4,0x88, +0x30,0x90,0x85,0x20,0x6d,0x45,0xa9,0x8a,0x81,0x2c,0x36,0x85, +0x59,0x5f,0x84,0x2f,0xa3,0x14,0xbe,0xaf,0x81,0xfa,0x22,0x71, +0xca,0xdb,0xf9,0x3d,0xdd,0xa1,0xf2,0x4f,0x51,0xf8,0x4e,0x54, +0x4a,0x1c,0x25,0xe5,0x1f,0x71,0x81,0x15,0x1b,0x10,0xc0,0x49, +0xfa,0x2f,0x3d,0x4b,0x62,0xc3,0x31,0x15,0x31,0x1d,0xdb,0x82, +0x63,0x55,0xb1,0x81,0xe8,0xd9,0xe9,0xe2,0x64,0x3b,0x10,0x62, +0x2a,0x51,0x12,0xd3,0x57,0x2a,0x3d,0xfb,0x9e,0xbc,0x7d,0xd1, +0xd7,0xd8,0xf0,0x81,0x10,0x9c,0x72,0x09,0x6f,0xcf,0x7b,0xb2, +0xc2,0x8c,0xae,0x8c,0xe9,0x72,0xfe,0x66,0xcb,0x3a,0xca,0x80, +0xcf,0x66,0xb1,0x98,0x2c,0x96,0x62,0x0a,0x8b,0x05,0x73,0x16, +0x6c,0xa1,0x18,0x6d,0x69,0xf3,0x3e,0x78,0x80,0xfc,0xf3,0x01, +0x5a,0xed,0x1f,0xc6,0x9d,0x6b,0x59,0x41,0x8d,0x4a,0xac,0x48, +0xa8,0x8e,0xab,0x35,0x8a,0xe3,0x1c,0x71,0xb2,0x01,0xf6,0x5e, +0xb7,0xac,0xca,0x96,0x2b,0xad,0x29,0x69,0xcd,0xbf,0xc1,0xd4, +0x76,0x59,0x5c,0x86,0x70,0x48,0x6d,0xc5,0x54,0x58,0x02,0xa9, +0x6d,0xe4,0xaf,0x45,0x50,0x43,0x75,0x4d,0xc2,0xe5,0x4a,0x32, +0x36,0xb6,0x95,0xd8,0xfa,0xff,0x43,0xde,0x8e,0xf9,0x6b,0x2c, +0xd4,0xe0,0xc7,0xee,0x10,0x7e,0x4c,0xc5,0xcc,0x87,0x83,0x4e, +0x8b,0xa8,0x1e,0xc4,0x10,0xbe,0x58,0xae,0x1c,0xdf,0x41,0xaa, +0xf1,0x95,0x7d,0x1d,0x5f,0x71,0x00,0x8a,0xff,0x16,0xc2,0x7b, +0xe1,0x62,0x31,0x84,0x27,0xe2,0x7a,0xd6,0x21,0xdf,0xa2,0x40, +0x9e,0xc7,0x40,0x30,0x4c,0x69,0x11,0xa6,0x81,0x2e,0x0d,0x93, +0x62,0x80,0xcb,0xfd,0x54,0xb6,0xad,0x9e,0x9b,0xb0,0x09,0xc7, +0xb9,0xa3,0xae,0x0f,0x83,0xe1,0x34,0xfa,0x1d,0xc2,0x45,0x2b, +0x71,0xa0,0xb4,0xd6,0xfe,0x01,0x70,0xe9,0xa0,0x77,0x1a,0xbc, +0x35,0xc0,0x16,0xdd,0x28,0x87,0x0c,0x87,0x54,0x97,0xa4,0x7d, +0x56,0x5c,0xc3,0xde,0x86,0x3d,0xf5,0x3b,0x19,0x4c,0x69,0x87, +0x63,0x74,0xd5,0xee,0xca,0x5d,0x65,0x3b,0x18,0xb5,0x7f,0xf4, +0x8b,0x64,0xf5,0xdf,0xbb,0xc2,0x98,0xa3,0xb0,0x8d,0x01,0xfd, +0x16,0x34,0xa4,0x8e,0x5f,0xff,0xf6,0xde,0x63,0xcd,0x2b,0xd1, +0xed,0xb1,0x4d,0x09,0x3b,0x09,0x1f,0xee,0xb5,0x1d,0xc7,0x1e, +0x40,0xfd,0x00,0xa6,0xab,0x27,0xbd,0x27,0x78,0x4f,0xf0,0xde, +0xe3,0xe7,0x8c,0xb9,0xf7,0xc9,0xd0,0xe7,0xc2,0xe3,0x4c,0x3f, +0x05,0x67,0xe7,0x65,0xee,0x65,0xe6,0xcd,0x40,0x3d,0xac,0xa0, +0x93,0xd1,0xb3,0x0a,0xe7,0x7c,0x37,0x3a,0xc7,0x5e,0x71,0x36, +0xec,0x4a,0x22,0xb8,0x72,0x96,0x69,0x12,0xe1,0x01,0x1c,0xff, +0x57,0xbe,0xa0,0xdd,0x82,0xaa,0x0b,0x72,0x50,0x47,0x0e,0xda, +0x2a,0xb1,0xd2,0x0d,0x00,0x3f,0x8a,0x00,0x10,0x21,0xb2,0x85, +0xbc,0xb6,0xbf,0x29,0x76,0x91,0x2d,0x40,0x1f,0x7e,0x26,0xdb, +0x78,0xa6,0x39,0xac,0x29,0x22,0x64,0xd9,0xe9,0xd5,0xa1,0xfa, +0x0c,0x2e,0xa1,0x60,0x9b,0x70,0x95,0xbd,0x84,0xbf,0x1a,0x11, +0xe8,0xfb,0xd0,0xca,0xe2,0x0a,0x7e,0x30,0xec,0x80,0xc7,0xc6, +0xe2,0x25,0x56,0xf0,0xda,0x10,0x5f,0xa3,0x16,0xa4,0x8b,0x1b, +0x09,0xce,0xc2,0x60,0x9c,0x0b,0x45,0xc6,0xc2,0xdc,0xf6,0x7b, +0xfc,0xe8,0x15,0x97,0xf8,0xb9,0x46,0x94,0xf0,0x1e,0xfa,0x2a, +0x23,0xca,0x57,0x24,0x1f,0x67,0x06,0x9a,0x24,0xa4,0x0f,0xd9, +0x84,0x63,0xa6,0xe0,0x70,0x42,0x16,0xbf,0xfb,0x9c,0xfd,0x67, +0xf8,0xaf,0xc4,0x9e,0x0c,0x11,0xc8,0x89,0x3d,0xa7,0x8f,0x4b, +0x9f,0xa2,0x4e,0x71,0xa9,0xae,0x18,0x50,0x02,0x4f,0x79,0xfb, +0x69,0xa8,0xf1,0xdf,0x10,0xf6,0xd9,0x7c,0xb9,0xea,0x76,0x01, +0x51,0x08,0x3f,0x52,0xb8,0xec,0xa4,0x96,0xff,0x7c,0xa9,0x5e, +0xc0,0xb1,0x43,0x56,0x23,0x17,0x53,0xb1,0x66,0x92,0x7b,0xd4, +0xc3,0xc2,0xc2,0xb7,0x84,0x4d,0xbd,0x39,0xfd,0x01,0xf6,0x69, +0x0a,0x0c,0x25,0x96,0xc9,0x44,0xe6,0x99,0xc6,0x73,0xdb,0x71, +0xa8,0x19,0x52,0xf3,0xa6,0x32,0x8b,0xad,0x94,0xda,0x96,0x6b, +0x41,0x0e,0x4c,0x4d,0x89,0x0f,0x4e,0x91,0x2b,0x89,0xc1,0x30, +0x25,0x31,0xd0,0xfc,0x12,0xdc,0x54,0x4c,0xea,0x2b,0x6f,0xfd, +0x49,0xd4,0xb6,0x73,0xbe,0x6a,0xdb,0xb7,0x84,0x26,0x63,0x11, +0x65,0xec,0x73,0xee,0x8a,0x8c,0xac,0x96,0xa3,0x50,0x8a,0xa5, +0xc2,0x61,0x7a,0x5c,0xda,0xae,0x4f,0x62,0x6a,0xa1,0x36,0x29, +0xb9,0x46,0x06,0x7d,0x69,0xd3,0x04,0x09,0x6e,0x10,0x45,0xdd, +0x1a,0x5c,0x01,0x6b,0x68,0x35,0x3e,0xb3,0xf3,0x09,0xeb,0x84, +0xeb,0xe4,0x62,0x7f,0x4a,0x26,0xc7,0x84,0xcb,0x2b,0xcf,0xaa, +0xc9,0xa8,0x67,0x84,0xb6,0xf6,0x4e,0x5d,0x3a,0xe3,0x6a,0xea, +0xbd,0xe4,0x87,0x0c,0xbe,0x10,0x7a,0x2b,0x8d,0x1c,0xd2,0x2c, +0x8e,0x97,0x9c,0x8c,0x97,0xd4,0x1c,0x58,0x62,0xe4,0x50,0x57, +0x1c,0x3b,0x1d,0xd5,0x09,0x78,0xde,0xfb,0x94,0xf9,0x67,0xf8, +0x2f,0x62,0x5d,0x70,0x8b,0x6a,0xbc,0x88,0x8d,0xd7,0x91,0x2b, +0x28,0x33,0x02,0x35,0x7f,0x91,0x68,0x10,0x1b,0x7f,0x87,0x45, +0x2c,0xd8,0x19,0xa3,0x1d,0x7a,0x9b,0x82,0xb7,0x70,0x1b,0x75, +0xe8,0x44,0x63,0x09,0x70,0x54,0x5d,0x62,0x42,0xbd,0x8c,0xbf, +0xfc,0xb2,0x95,0x46,0x47,0x61,0x39,0xbb,0xe3,0xb5,0xf3,0x1b, +0xc7,0xfb,0x36,0x7b,0xb8,0x8a,0x65,0x25,0xb3,0x72,0xa6,0x10, +0xf4,0x7e,0xa0,0x5c,0x5d,0x81,0x5f,0xe1,0x85,0x69,0x21,0x41, +0x4b,0xe9,0x4a,0xf3,0xe4,0x30,0xe5,0x0b,0xf5,0xec,0x8d,0xdf, +0x28,0xd3,0x3f,0x7d,0xbe,0xe8,0xde,0x82,0xb6,0x7f,0xd7,0xbd, +0x99,0xf0,0x89,0x15,0x5b,0x71,0x2f,0xc4,0xed,0xc6,0x7c,0x42, +0x3b,0x8d,0x7a,0x5d,0x43,0xd9,0x4a,0xd0,0xc9,0x07,0x83,0x34, +0xd0,0xdd,0x10,0xcb,0x1d,0x40,0xbd,0x2d,0x68,0xe4,0x84,0x3a, +0x0c,0xde,0x30,0xe0,0xef,0x5c,0xa6,0xf0,0xb7,0x1f,0x58,0x2f, +0x98,0xb7,0x07,0xa6,0x78,0xc0,0x00,0xe3,0x83,0x5c,0x2e,0xb2, +0x69,0x38,0x2e,0x1e,0xe7,0x10,0xbb,0x6e,0xa8,0xb8,0xc1,0x17, +0x17,0x27,0x7a,0x5c,0x21,0xea,0x71,0xd1,0xae,0xe9,0x66,0x30, +0xbe,0x9b,0xa3,0x8c,0x55,0x72,0x94,0x67,0x4a,0x8e,0x22,0xc6, +0xb8,0x9c,0xaf,0x54,0xf4,0x37,0x5c,0x2c,0x8a,0xa2,0x3a,0x7c, +0xcb,0x5a,0xc2,0x82,0xed,0xe0,0x08,0x3e,0x9a,0xe0,0x48,0xa7, +0x86,0x25,0x87,0x25,0x85,0x6f,0x6b,0xe0,0x90,0xda,0x8a,0xeb, +0x77,0xe1,0x52,0x7f,0x06,0x8f,0xd1,0xb8,0xeb,0x00,0xba,0xc8, +0x51,0x2a,0x1e,0x25,0xbc,0x0c,0x3a,0xa9,0xb0,0x4b,0xfc,0xed, +0x55,0x74,0xe5,0x99,0xca,0xd0,0xaa,0x30,0xa6,0xcb,0x80,0xb6, +0xf4,0xb5,0x0a,0x70,0x09,0x8e,0x32,0xe6,0x1e,0x11,0xb4,0xb8, +0xf0,0xf0,0x7c,0xc2,0x42,0xae,0x2e,0xd1,0xf3,0xc1,0x5e,0xe8, +0x71,0xe8,0x8a,0x86,0xad,0x77,0xd4,0xb6,0x28,0xe7,0x68,0x47, +0x8d,0xbd,0x81,0x3b,0x03,0x3c,0x02,0x99,0x4e,0x3d,0xba,0x2a, +0xbc,0x2a,0xb2,0x2c,0x92,0x41,0x5d,0x1a,0x33,0x0b,0x70,0x5b, +0x1b,0xae,0x94,0xaa,0x41,0x90,0x52,0xa3,0x7e,0xf3,0x5b,0xd3, +0x64,0x90,0x9b,0x11,0x21,0x35,0xdc,0x02,0xd4,0x48,0xa0,0x54, +0x77,0xc3,0x09,0xb3,0x71,0x18,0x99,0xeb,0x9b,0x1f,0xcf,0xff, +0x19,0xf6,0x5a,0x9c,0x6b,0x05,0x1f,0xd1,0xed,0x8f,0x77,0x70, +0x4e,0x51,0xc9,0x5a,0x98,0x2a,0x92,0x4a,0xb2,0x36,0x80,0x88, +0x6d,0xd6,0x65,0xc3,0x74,0x53,0xfc,0xc6,0x2c,0xdd,0x96,0xf0, +0xe3,0x06,0xa0,0x3b,0x0a,0x1f,0x31,0xe1,0x54,0xde,0x62,0x90, +0xea,0x83,0xcc,0x54,0xbc,0xf7,0x52,0xfb,0x12,0xf6,0x6c,0x76, +0xb8,0x25,0x6e,0x7e,0x6e,0x63,0x21,0xb5,0x1a,0x53,0x29,0x7e, +0x3c,0xbe,0x63,0x21,0x4c,0xc8,0xc0,0x30,0x1a,0x7c,0xc0,0x95, +0xc5,0x05,0xb8,0x1e,0x16,0xd0,0xfc,0xe2,0xe1,0xe4,0x95,0x9c, +0xbc,0x42,0x07,0x2b,0x36,0x7b,0x57,0xb6,0x7b,0xaa,0x47,0x7e, +0x36,0x77,0xf8,0xc2,0xb6,0xa2,0x1d,0x17,0x18,0x38,0x8e,0x83, +0xd8,0xdc,0xdc,0xec,0xa2,0xa4,0x9c,0x4d,0x69,0x9c,0xe7,0x6e, +0x0f,0x57,0x8f,0x5d,0x0c,0x86,0x08,0x81,0x6c,0x2d,0x3f,0xc0, +0xb6,0x09,0xde,0x08,0x87,0xc5,0xf3,0x19,0x2b,0xa1,0x96,0x5d, +0x21,0x0c,0xb8,0x47,0xf3,0x03,0x70,0x20,0xbb,0x44,0x18,0xf0, +0x80,0x84,0xae,0x66,0x7e,0x04,0x0b,0xab,0x60,0x45,0x33,0x59, +0x11,0x43,0x60,0x69,0x93,0x30,0xc1,0x02,0x96,0xe0,0x10,0x94, +0x9b,0x83,0x1c,0x57,0xd1,0xfc,0xd9,0xe1,0xe4,0xa7,0x76,0x44, +0xa9,0x90,0x9f,0xae,0x6d,0x12,0x74,0x2c,0x08,0x85,0x1e,0x82, +0xfa,0xe6,0xa0,0x4f,0x7e,0x0a,0xa1,0xd8,0x43,0x3c,0xc9,0xfa, +0xd9,0x70,0xb4,0x78,0x80,0x95,0xa2,0xcd,0xa6,0x61,0xef,0x15, +0xb8,0x6f,0x61,0xa6,0x98,0x93,0x7e,0xfb,0xdb,0xb5,0x32,0x31, +0x27,0x82,0x4f,0x3a,0xe0,0x89,0x98,0x93,0x1e,0x00,0x7d,0xf4, +0x21,0x54,0xfb,0x02,0x21,0x5a,0x47,0x9e,0x62,0xff,0x7b,0xa6, +0xbf,0x10,0x27,0x5a,0xde,0x79,0x9f,0x25,0x7c,0x64,0x98,0x25, +0xf4,0xa7,0x55,0xcc,0x7b,0x5e,0x37,0xf3,0xce,0xf8,0x57,0xe6, +0x4d,0xf8,0xc8,0x4d,0x9c,0x59,0x58,0xb2,0x1e,0xb4,0x55,0xdc, +0x5d,0xc3,0xc7,0x57,0x99,0x66,0xa4,0x1b,0x91,0x06,0x13,0x0a, +0xb6,0xe8,0xb0,0x7c,0xb4,0x42,0xb8,0xf3,0x5f,0xbd,0x2f,0x5d, +0xe2,0x13,0x14,0x42,0x02,0x55,0x07,0x3d,0x59,0xde,0x44,0x34, +0x7e,0x05,0x2c,0x69,0xc2,0x25,0xa0,0x03,0xa6,0xcd,0xc2,0x32, +0x73,0x58,0x8b,0x3a,0x38,0xc7,0x02,0xe6,0x10,0x31,0x6d,0x48, +0x84,0x4a,0x0e,0xa1,0x47,0x81,0x71,0x01,0x27,0x7d,0xfc,0xbc, +0x7d,0x89,0xba,0x1f,0x09,0x92,0x66,0x94,0x80,0x5c,0x4e,0xa6, +0x7f,0x84,0x39,0x0c,0xa2,0x7c,0x51,0x7d,0x13,0x4e,0x98,0xa3, +0x5c,0xea,0x37,0xff,0x24,0xd3,0x2f,0x2e,0xf5,0x0c,0x91,0x27, +0xa9,0xa0,0xf1,0x3a,0x6a,0x17,0x12,0xa8,0xde,0xc6,0x2f,0x61, +0xbb,0x4e,0xe1,0x22,0x3a,0xde,0x4c,0x42,0x10,0xbe,0x4c,0x6c, +0xf3,0xd3,0x59,0x85,0x51,0x96,0x34,0x54,0x0e,0x87,0x3d,0xe4, +0x47,0x6b,0x29,0xf1,0x47,0x3a,0xaa,0x0e,0x40,0xe4,0x47,0xb9, +0x34,0x68,0xe1,0x00,0x76,0xcb,0x12,0x83,0xe9,0x1b,0x8c,0x8b, +0x9d,0xb9,0x1b,0x37,0xae,0xfc,0x5a,0xf2,0x8c,0x11,0xbc,0x31, +0x91,0xbd,0x73,0xf3,0xda,0x9b,0xf2,0x17,0xf6,0xe7,0xb9,0x4d, +0x0b,0xd7,0x4f,0xd5,0x33,0x66,0xf8,0x33,0xc1,0xac,0xe3,0x4c, +0x3d,0xad,0xd5,0x86,0x45,0x8e,0xdc,0xf7,0x77,0x6f,0x7d,0xa8, +0xf8,0x85,0xc1,0xce,0x00,0xd6,0x61,0x96,0xfe,0xd4,0x65,0x7a, +0x85,0x8e,0xdc,0x0f,0xdf,0x5f,0x7b,0x57,0xf5,0x33,0x61,0x51, +0xeb,0x3a,0x1d,0xd9,0xa3,0xf2,0x5d,0x16,0x76,0x56,0x5b,0x73, +0x5c,0x73,0xb7,0xa6,0xb9,0xba,0x72,0x05,0xfb,0x0a,0x76,0x15, +0x6d,0xb3,0x76,0x58,0xeb,0x3c,0xcb,0xa5,0x88,0x78,0xa4,0xe7, +0xa7,0x8f,0x62,0x3b,0xc0,0x69,0x4c,0x29,0xba,0xd0,0x51,0xc9, +0x67,0x53,0x23,0x53,0xe5,0xe7,0x38,0xb7,0x49,0x1b,0x96,0x60, +0xcf,0x35,0x45,0xf6,0xdc,0xfd,0xba,0x96,0xc6,0xb2,0x4b,0x0c, +0x98,0xe2,0x26,0xd6,0x02,0xca,0x50,0xd2,0x46,0xb4,0xd5,0x8c, +0x26,0xc2,0x77,0x96,0xc1,0xb8,0x26,0x1c,0xf7,0xc1,0x64,0x3c, +0x1a,0xe0,0x01,0x1a,0x0c,0x86,0x13,0x50,0x5c,0x06,0x43,0x28, +0x70,0x10,0x8c,0x09,0x39,0x9c,0xf3,0xda,0x70,0xba,0x30,0x4e, +0xce,0xf7,0xa2,0xcd,0x16,0x62,0x6f,0x03,0xdc,0xb9,0x56,0x64, +0xdd,0xdf,0x3e,0x7b,0xd7,0x52,0x0a,0xbd,0x88,0x2f,0x54,0x74, +0x40,0x85,0xe8,0x0b,0xbd,0x80,0x92,0x43,0xc8,0xbc,0x8c,0x16, +0x0e,0xf7,0xdf,0xc2,0xfe,0x97,0x4d,0x9f,0x90,0xb0,0xbc,0xa2, +0x73,0x0d,0xab,0xc0,0x02,0x3a,0xea,0xc2,0xd9,0xac,0xc8,0x6c, +0x42,0x01,0xfd,0xb7,0xfa,0xb9,0xfb,0x78,0x30,0x68,0x6b,0x06, +0xcb,0x28,0xa7,0x45,0x1b,0xd6,0x4e,0x35,0xca,0xb3,0xe1,0xaa, +0x73,0x4a,0x72,0xf3,0xf3,0x19,0x7b,0x28,0xbd,0x48,0x17,0x6d, +0xad,0x70,0xaf,0xdc,0x95,0x5b,0xcf,0xcd,0x50,0x2c,0xb9,0xe9, +0xf2,0x58,0x1c,0x3a,0x4f,0x56,0x4c,0x85,0xf4,0x6f,0x26,0x7a, +0xe9,0xdf,0x53,0x21,0x93,0xbe,0xa4,0x42,0xb2,0x3f,0x29,0x65, +0x71,0x8e,0x2a,0xa4,0x88,0x58,0xf4,0x03,0xea,0x94,0x94,0x2e, +0x54,0x26,0xc8,0x43,0x88,0x6f,0x41,0xc4,0x15,0xb6,0xaa,0xa6, +0xa0,0x3e,0xb3,0x85,0x69,0xa0,0x52,0x2c,0x4a,0x2d,0xeb,0xec, +0x18,0xac,0xc0,0x2d,0xac,0xb7,0xe5,0x11,0xb3,0xbd,0x66,0x0c, +0x59,0xe1,0x5b,0x82,0x8c,0x03,0xf6,0x4a,0xf7,0x06,0x1e,0xf2, +0x72,0x1b,0x89,0x23,0xa9,0x04,0x33,0x31,0x7f,0x79,0xab,0x34, +0xad,0x2a,0x5e,0x16,0x5b,0x11,0xd6,0xf1,0xbb,0x26,0x3e,0xa7, +0x62,0x72,0x63,0x4a,0x23,0x8b,0x19,0xe8,0x54,0x08,0xe7,0xcc, +0xc4,0x94,0x22,0x5f,0xc7,0xe2,0x44,0xaa,0xbe,0xa5,0xe6,0x6a, +0xd5,0x1d,0xeb,0x1c,0xce,0x62,0xb6,0xf9,0x0a,0x23,0x03,0x66, +0x22,0x0c,0x80,0x35,0x4d,0xb8,0x06,0x7a,0x1a,0x63,0x4f,0x5c, +0x63,0x01,0x84,0xb8,0xe3,0x6e,0x0b,0xf8,0x8e,0x9a,0xbe,0x08, +0x7b,0xad,0xc7,0xb1,0xc6,0x17,0x2c,0xb9,0xa6,0xb4,0xba,0x8c, +0xea,0x0c,0x2f,0xc7,0xc3,0x76,0x07,0xec,0x19,0xbe,0x37,0x75, +0xd2,0xf9,0xb8,0x55,0xc0,0x76,0xc6,0x35,0xe0,0xb0,0x97,0xfd, +0x48,0xf1,0x9e,0x54,0x53,0x09,0xac,0xa1,0xee,0x14,0xa4,0xb7, +0xc6,0xc9,0x62,0x6b,0x43,0x9b,0x42,0xa0,0x07,0x83,0x6f,0xa9, +0xb8,0x82,0xd8,0xc2,0x68,0x62,0xc2,0xdb,0x26,0xac,0xa2,0xaa, +0xf3,0x2a,0x0a,0x4a,0x4a,0x88,0x4c,0xa7,0xba,0xa6,0x04,0x13, +0x0d,0x1c,0x70,0x8a,0x04,0x15,0x1f,0x2e,0xf8,0x4f,0xe8,0xa7, +0xc0,0x7e,0x7f,0x63,0x03,0xde,0xe2,0xb1,0x97,0xd1,0x53,0x70, +0x04,0x19,0xaf,0xef,0x3f,0x67,0x7f,0x0a,0x13,0xd9,0xc0,0xf9, +0x56,0x3e,0x87,0x8a,0x08,0x15,0x5d,0xfe,0x21,0x4e,0x2a,0x2e, +0x93,0x74,0xeb,0x9c,0xd8,0xbf,0x72,0xb2,0x04,0xeb,0x5a,0x70, +0xe8,0xff,0xae,0x73,0xf2,0x54,0x31,0xe0,0x6f,0x3a,0xe7,0x67, +0x9c,0x5c,0x52,0x26,0x39,0x01,0x3d,0x58,0x98,0x1e,0x0e,0x4b, +0xce,0xc2,0xf0,0x84,0xf8,0xdd,0x71,0xbb,0x63,0xf7,0xd6,0x65, +0x73,0x0e,0x4f,0xf5,0xfe,0xb0,0xbb,0x62,0xbb,0x93,0x4b,0x77, +0xcf,0x72,0xca,0x72,0x5c,0x18,0x30,0x29,0x60,0x52,0x70,0xf1, +0xd5,0xaa,0x5f,0xf3,0x1f,0x32,0x90,0xdd,0x22,0x14,0xc9,0xc1, +0x92,0xf2,0x58,0x66,0x3b,0xc9,0x69,0x1d,0x73,0x72,0xef,0xde, +0x93,0xfb,0x46,0x42,0x2d,0xd6,0xb0,0xe0,0xd9,0x82,0x9e,0x30, +0xc9,0x00,0x27,0xa1,0xbb,0x1c,0xdc,0x51,0x0f,0x33,0xe5,0xfc, +0x9b,0x16,0x8c,0xa5,0x44,0x3d,0xfb,0xb7,0x94,0x59,0x30,0xf1, +0x13,0xb5,0x66,0x54,0x03,0xb9,0x09,0xf1,0x93,0x09,0xe6,0x30, +0x8a,0x20,0xfd,0xbf,0xa5,0xcc,0xc2,0x7e,0x53,0xc5,0xac,0xf0, +0x6e,0x0c,0x52,0xa5,0xcc,0x4e,0x12,0x0e,0x05,0x4b,0x22,0x61, +0xa9,0x58,0xa4,0x93,0xb0,0x37,0x61,0x5f,0xdc,0xfe,0x8b,0x05, +0x9c,0xdd,0xdd,0x0d,0x4f,0xcd,0xae,0xda,0x6f,0xe7,0x2e,0x78, +0x64,0x6e,0xbd,0xb0,0x65,0x7a,0xc0,0xc4,0xc0,0x71,0xc1,0xb9, +0x8d,0xb9,0x1d,0x99,0xd7,0x88,0x52,0x69,0xc6,0xb3,0x9f,0x8d, +0x47,0xe3,0x31,0x73,0x58,0x48,0xed,0xda,0xb0,0x6d,0xc3,0x16, +0xb3,0xc5,0x27,0xb8,0x97,0x38,0x84,0x45,0xf3,0x6d,0x24,0x78, +0x0f,0xd1,0x96,0x96,0xd9,0x8b,0x3b,0x9c,0xbd,0x4b,0x09,0x5b, +0xdc,0xa4,0x99,0x6e,0x4a,0x93,0x35,0x65,0xc0,0xf2,0x06,0x26, +0x82,0x01,0x0d,0x75,0x65,0xac,0x0d,0xb5,0x2f,0x30,0x2c,0x5d, +0xc6,0x53,0xc6,0x82,0x1a,0x6d,0x92,0x7a,0xb8,0x45,0xda,0x4e, +0x95,0x25,0x24,0x54,0xc8,0x60,0xb9,0xd8,0x95,0x45,0xad,0xb3, +0x6f,0xe7,0x36,0x36,0xba,0xe8,0x6c,0x71,0x64,0x89,0xd1,0x59, +0x2e,0xd0,0xc9,0xcf,0xc5,0xc7,0x95,0x41,0x3b,0x53,0x22,0xb0, +0xdd,0x26,0x58,0xcc,0x58,0xae,0x53,0x68,0xc1,0x25,0xa5,0x25, +0xa4,0xc7,0x9f,0x67,0x84,0x43,0x6d,0xfc,0x35,0x3a,0xa7,0x39, +0xb3,0x2d,0xed,0x0a,0x03,0x1f,0x5b,0xa9,0x2e,0x7d,0x4c,0x56, +0xb1,0x1c,0xf1,0x96,0xbd,0x7f,0xdf,0x66,0x18,0xab,0xdc,0x66, +0x78,0xf6,0x9f,0x6c,0x33,0xa4,0xa0,0x1a,0x5b,0x57,0x79,0xf1, +0x4a,0x6a,0x3d,0x53,0x8d,0xf7,0xcc,0x20,0x9c,0x3e,0xb8,0xc9, +0xc9,0xd2,0x7e,0x1b,0x73,0x72,0x39,0xea,0xca,0x41,0x17,0x4f, +0x60,0x3f,0x11,0x05,0xdf,0x89,0xbb,0xee,0x95,0x32,0x12,0xe5, +0x66,0xb4,0xe0,0x0c,0xc2,0xc5,0x26,0xf2,0xa5,0x2c,0x4c,0x8b, +0x80,0x85,0xe7,0x40,0x3d,0x31,0x6e,0x5f,0xdc,0xbe,0x73,0xfb, +0x6b,0xb2,0x38,0x87,0x07,0x86,0x3f,0x99,0x5d,0x77,0xd8,0xc9, +0x65,0x6e,0xcb,0xde,0x94,0xe9,0xbc,0xc0,0x6f,0xb2,0x9f,0x76, +0x50,0xf5,0xed,0xd2,0xc7,0x39,0x37,0xcd,0x13,0x39,0x8f,0x95, +0x36,0xd3,0xac,0x96,0xad,0x3d,0xc1,0xe9,0x10,0x3d,0xfc,0x2f, +0x59,0x31,0x46,0x21,0x52,0x24,0xd1,0x9d,0x27,0x99,0x81,0xac, +0x3b,0x4d,0xa1,0x85,0x5c,0xe9,0xff,0x92,0xa6,0x78,0xa1,0xcc, +0x8a,0x41,0x2b,0x89,0xa4,0x30,0x05,0xf6,0x37,0xe1,0x7e,0x18, +0x62,0x42,0x22,0xdd,0x70,0x51,0xbd,0xe6,0x46,0x8a,0xd5,0xdd, +0x47,0x56,0x6f,0x9d,0xed,0x68,0x78,0xd1,0x83,0x4b,0xca,0x4c, +0xc8,0x89,0x23,0xf2,0x64,0x2a,0x4e,0xc1,0xe3,0xe6,0x24,0xfa, +0xee,0x68,0x23,0xf4,0xfb,0x78,0x33,0x71,0x2f,0x85,0xd2,0xbd, +0x02,0xbe,0xba,0x97,0x54,0x41,0x84,0xa6,0xd2,0xbd,0x26,0xa9, +0xd2,0x25,0xc4,0xbd,0xc6,0x4c,0xc0,0x91,0xa5,0x62,0xca,0xab, +0x57,0x8e,0x4a,0xf6,0xe7,0x8b,0xee,0xa5,0x0a,0x25,0x2f,0x89, +0x7b,0x11,0x3b,0x02,0xf8,0x24,0x56,0x18,0x8a,0x47,0x4c,0x78, +0x27,0x94,0x09,0xa6,0xa6,0xbc,0x29,0x4e,0x12,0x8e,0x99,0xf0, +0xc7,0x36,0x5c,0xe1,0x33,0xf0,0x18,0x3f,0x94,0x06,0xab,0xed, +0xec,0xce,0x59,0x8e,0xd3,0xed,0x57,0xd6,0x7a,0x70,0xb5,0xdf, +0x57,0xbf,0xc9,0xfe,0x89,0x11,0x06,0xa1,0x2f,0xbb,0xe3,0x99, +0xcb,0x6f,0x8e,0xf7,0xad,0x77,0x73,0x95,0x4b,0x8b,0x75,0xb2, +0x66,0x33,0x6a,0x9d,0xa7,0xf8,0x27,0x6c,0x5e,0x71,0x6e,0x75, +0xda,0x45,0x22,0xc7,0xcf,0xd0,0x51,0x69,0x67,0xd3,0x23,0x33, +0x0c,0x63,0xb8,0x5d,0xd3,0xf4,0xc6,0x2e,0x5c,0x49,0x38,0x63, +0x74,0x54,0x34,0xf9,0xc3,0xe0,0x38,0x1a,0x17,0x7b,0xa1,0xd6, +0x0c,0x42,0xb2,0x1a,0x37,0xd5,0x7d,0x9f,0xf3,0x43,0xfc,0xef, +0x1a,0xc0,0x93,0x31,0xd4,0x53,0x82,0xcb,0x34,0xaa,0x3e,0x31, +0xb1,0x4e,0xc6,0xdf,0xa7,0x85,0x3f,0x08,0x83,0xf0,0xff,0xaa, +0x6e,0xbe,0x30,0x78,0xd1,0x6d,0xa6,0xca,0x61,0x5c,0xb7,0xdb, +0x8c,0x57,0x2e,0xfb,0xa7,0x84,0xfa,0x7d,0xd9,0x90,0x6c,0xfb, +0x8b,0xc2,0xbf,0x12,0xfd,0x46,0xc2,0xf7,0x15,0xbb,0xde,0x6e, +0xf6,0x70,0xd8,0xbc,0x89,0x41,0x07,0x2a,0xa7,0x30,0xab,0x2c, +0xa3,0x8a,0xb1,0xc1,0x2a,0x16,0x68,0xf8,0x06,0x69,0xba,0x65, +0x38,0x79,0x31,0x91,0xbc,0x40,0x47,0x4b,0x16,0x07,0xe3,0x04, +0x3a,0xb4,0xe4,0x4c,0x59,0x48,0x25,0x03,0x96,0x62,0xcf,0x91, +0xc1,0x62,0xcf,0x11,0x65,0x92,0xea,0xaf,0xd9,0x0f,0xfe,0x6b, +0xf6,0x45,0x10,0x9a,0x60,0x46,0x16,0xb5,0x0a,0xcc,0xb4,0x09, +0x98,0xd9,0x92,0x45,0xdd,0x83,0x80,0xff,0x1b,0x62,0xcc,0x85, +0xaf,0xc9,0xb2,0xe7,0xca,0xd9,0x2f,0x27,0xe2,0x1b,0xff,0xe0, +0xdd,0xe1,0x0f,0xda,0x04,0xb5,0x58,0xfc,0xf4,0x2b,0x7c,0x12, +0x6f,0xf1,0x9c,0xc8,0xc2,0x27,0x6d,0xfc,0x44,0x81,0x23,0x7e, +0xcf,0x82,0x3a,0xf8,0x34,0x09,0xc9,0x16,0x70,0x18,0xd5,0x31, +0xca,0x02,0xa2,0xd0,0xa1,0x1d,0x1c,0x20,0xbe,0x89,0x68,0xb1, +0x17,0x50,0xc1,0x1e,0x0d,0x0e,0x38,0xbe,0x73,0x24,0xf1,0xf1, +0x28,0xb2,0x98,0x87,0x50,0x8d,0x89,0xf1,0x25,0x51,0xb2,0x88, +0xcc,0xd3,0x05,0x59,0x9a,0x5d,0x96,0xad,0x9d,0x47,0x2e,0x76, +0x1d,0x51,0xf0,0x48,0x9c,0xe6,0x19,0x75,0x36,0xf9,0x6c,0x72, +0x44,0x8a,0x3e,0x59,0xaa,0xfb,0xfc,0xf6,0xfb,0xee,0x67,0x30, +0x5b,0xb0,0xed,0xb4,0xa6,0x4e,0xfa,0x9c,0xf4,0x3f,0xe1,0xc7, +0xcc,0xe6,0x37,0xb0,0x96,0x42,0x5d,0x23,0xcd,0xd7,0x4d,0x61, +0xcd,0x84,0x3a,0x05,0xdd,0x79,0x40,0xf0,0x61,0x9b,0x84,0x05, +0xcf,0x8d,0xe6,0x0a,0xda,0x16,0x7c,0x4f,0x9a,0x28,0x26,0xca, +0x15,0xdd,0x9c,0x92,0xcc,0x39,0x38,0xd1,0x0c,0x3d,0x4a,0xca, +0x5f,0x92,0x10,0xeb,0x76,0x09,0xdc,0xc2,0xa9,0x72,0x1d,0x50, +0x73,0x85,0x53,0xe6,0x89,0xcd,0x1c,0xba,0x97,0xe3,0xc0,0x52, +0xe3,0x56,0xe2,0x0a,0x56,0xe2,0xb1,0xdc,0xfd,0x0a,0xe2,0xdd, +0xff,0xc3,0xb1,0xdc,0xa9,0xe6,0x4b,0x2e,0x6e,0xe5,0xce,0x17, +0xa6,0x28,0x8f,0xe5,0x4e,0xfc,0x97,0x63,0xb9,0x21,0x2d,0x18, +0x42,0x09,0x06,0x3b,0x58,0x71,0x71,0x0d,0x53,0xe0,0xb0,0xff, +0x97,0x1c,0xe0,0x4b,0x71,0x78,0xe7,0xc1,0x24,0x55,0x22,0x51, +0x03,0xbc,0x84,0x1a,0xf6,0x32,0x3c,0x52,0x1e,0xdb,0x35,0x17, +0x8f,0xed,0x8e,0x10,0x8f,0xed,0x3e,0x02,0x6b,0x78,0x44,0xa9, +0xf1,0xf3,0xa0,0x93,0x85,0x01,0x97,0x9a,0xef,0x47,0x7c,0xca, +0x3e,0x9d,0x7d,0x3a,0xeb,0x0c,0x83,0x43,0xe8,0x0d,0x29,0xfb, +0x3b,0xa4,0x40,0x51,0xe5,0xf1,0x09,0xe5,0xb2,0xbb,0xb4,0x65, +0xa2,0x64,0xd2,0x18,0xf1,0xea,0xb1,0x1c,0x19,0x0c,0xa5,0xcb, +0x42,0x4b,0xc2,0xf2,0xc2,0x62,0x8f,0xc6,0x1c,0x8d,0xf1,0xac, +0x2a,0xe0,0x2c,0x6f,0xaf,0xfd,0xde,0x40,0xe1,0xe4,0xce,0x15, +0xb8,0x17,0xbb,0x16,0xb8,0x2c,0xf0,0xc3,0x9e,0x01,0xda,0xc7, +0x4b,0x5a,0xf3,0x2e,0x9f,0xbf,0x44,0x40,0x63,0x97,0x9e,0xdb, +0x1a,0x5b,0x7d,0x65,0xc0,0x38,0x30,0x32,0xcc,0xac,0xfc,0x74, +0xfd,0xe9,0xe6,0x50,0x8d,0x80,0x85,0xce,0x66,0xe3,0xec,0x18, +0xed,0x66,0x65,0x78,0xf0,0xf1,0xf5,0xf6,0x55,0xee,0xa8,0xd0, +0xcd,0x84,0x5c,0x2a,0x99,0xa0,0x52,0xf4,0x91,0xf0,0xb0,0x09, +0xc7,0x4d,0xc7,0xe1,0xa2,0xe8,0xfb,0x9c,0xf5,0xa7,0x32,0x2c, +0x5e,0x68,0x51,0x2d,0xdf,0x33,0x62,0x58,0x9c,0x5d,0x4c,0xbc, +0xfa,0x0d,0xfe,0xcc,0x4e,0xca,0x5e,0x58,0xb0,0xb6,0xec,0x6e, +0x73,0xc3,0x95,0x92,0xbb,0x4c,0x05,0x36,0xd0,0xc9,0x17,0x12, +0xb3,0xe2,0x72,0xe4,0x09,0xdc,0xc6,0x99,0x4b,0x17,0xe2,0x00, +0xfd,0x5c,0x7b,0xae,0x2c,0xad,0x38,0x23,0x3f,0xb3,0xc4,0xbe, +0xd2,0xa9,0xde,0x6d,0xb9,0xd3,0x94,0x2d,0xa8,0xb6,0x23,0xd9, +0x92,0x83,0x51,0xb9,0x9f,0xcb,0x9f,0xd6,0x7f,0x67,0xfb,0xca, +0x19,0x7a,0x6e,0x63,0x84,0x05,0xf0,0x90,0x0d,0x23,0x7f,0x42, +0xc3,0x18,0x38,0x4f,0x6d,0xb7,0xb4,0xb7,0x59,0xef,0x68,0x56, +0xb2,0xb1,0x72,0x53,0x2d,0x21,0x7b,0x96,0x9d,0x4e,0x2c,0xac, +0x0e,0x03,0xfd,0x54,0x50,0x2f,0xdb,0xda,0xc8,0x21,0xeb,0x8c, +0xeb,0x0f,0xa0,0xed,0x09,0x06,0x8d,0x69,0xbc,0x7b,0x14,0x47, +0xeb,0xe2,0x34,0x69,0x83,0xe3,0x8f,0xb0,0x34,0x0e,0x56,0x84, +0x40,0xad,0x06,0x1f,0xd2,0x2c,0x84,0x50,0x84,0xfa,0xce,0x60, +0x55,0x7a,0xc5,0xc7,0x47,0x59,0xe7,0x30,0xb0,0x19,0x07,0x82, +0xb1,0x19,0x99,0x55,0x4e,0x24,0xbd,0xde,0xca,0xe4,0xe0,0x1c, +0x1c,0xda,0xad,0x79,0xc2,0xc5,0x73,0xaf,0xc9,0x2a,0x32,0x2e, +0x3e,0xea,0x0d,0xd4,0x12,0x49,0x6f,0x29,0x3e,0x66,0x1d,0xbc, +0xce,0xd6,0xc9,0x60,0x34,0x7c,0x80,0x62,0x61,0xb2,0xb0,0x86, +0x5e,0x94,0xb9,0xf7,0xa1,0x14,0xb2,0xa8,0x8a,0xb8,0x84,0x32, +0x19,0xf4,0xa0,0xad,0xe2,0x24,0x38,0x94,0xc6,0xad,0xfc,0x4a, +0x16,0xd7,0xe1,0x20,0x58,0x47,0xc2,0xd9,0x70,0xf2,0x6a,0x30, +0x79,0xa5,0xc6,0x9f,0xeb,0x1c,0xc5,0xe6,0xda,0x96,0x39,0xd4, +0x6e,0x5a,0xeb,0xb0,0x60,0xdb,0xac,0x43,0xa9,0x16,0xdc,0xef, +0x69,0x3f,0x97,0x3d,0x68,0xbc,0x6b,0xfb,0xa3,0xeb,0xdb,0x7d, +0xa9,0xcd,0xdc,0xec,0x94,0x25,0xb9,0x7a,0xa5,0xd7,0x9b,0x1b, +0xae,0xe6,0xdd,0x66,0x6e,0x35,0x63,0x27,0x15,0x9b,0x16,0x9d, +0x76,0x36,0xd5,0x34,0x96,0x73,0x5f,0xb0,0x5a,0x67,0xb6,0x79, +0x81,0x2d,0x97,0x9f,0x9a,0x97,0x95,0x9d,0x43,0x64,0x2b,0x58, +0xb0,0x3b,0x70,0x8d,0x1c,0x67,0xeb,0x62,0x9f,0x62,0x39,0x97, +0x59,0x9c,0x5a,0x99,0x5c,0xcd,0x10,0xe8,0xe9,0x9c,0x4d,0xa7, +0xdd,0x4e,0x7a,0x18,0xf7,0x94,0xe1,0x49,0x8c,0x63,0x77,0x99, +0x6e,0xb4,0x30,0xb5,0x37,0x2f,0x73,0xb8,0xb8,0xad,0x39,0x34, +0x2c,0x34,0xf4,0x4c,0x18,0x83,0x6e,0xc2,0xef,0x2c,0xff,0xab, +0xa9,0xf0,0x2b,0xdd,0x39,0x09,0x58,0xb6,0x09,0x23,0x7f,0x93, +0x4f,0x46,0x5f,0x0b,0xb0,0xa1,0xdd,0x16,0xeb,0xea,0x63,0x5f, +0x83,0x2c,0x0b,0x0e,0xfa,0x5f,0x7f,0xf7,0x2c,0x91,0xe0,0x36, +0xd6,0x2b,0xa0,0x3e,0x82,0x4a,0x98,0xf4,0x7a,0x29,0x0c,0x58, +0x29,0x76,0x7a,0xef,0x7f,0x7d,0xf9,0x65,0xb7,0x07,0x44,0xd5, +0x9c,0xe1,0xf7,0x13,0x45,0x11,0xf4,0xad,0x8f,0xbf,0x8f,0x1f, +0x41,0xa4,0x01,0x6f,0x1b,0x26,0x81,0x89,0x39,0xd1,0x39,0xbd, +0xad,0x3e,0x12,0x39,0x31,0x6c,0x2b,0x6a,0xaf,0xc6,0xfe,0x84, +0x89,0x2b,0x7e,0x4f,0x7e,0x1f,0xfa,0x23,0x19,0xd9,0xb3,0xcd, +0x7c,0x72,0x37,0x1a,0x55,0xe3,0xe8,0xfc,0x12,0x09,0xdf,0x0e, +0xc3,0xd9,0xda,0xd7,0xb9,0xef,0xe3,0xbe,0x67,0xea,0x31,0xa9, +0xeb,0x9f,0xad,0x9d,0x97,0x41,0x8b,0xf6,0x5e,0xea,0xae,0x65, +0x37,0x85,0x69,0x5a,0x59,0x39,0x6b,0xae,0xe6,0x92,0xfd,0x3b, +0x9d,0xa4,0x96,0x62,0x25,0x91,0x82,0xba,0x9b,0xd7,0xfc,0xe1, +0x37,0xc7,0x17,0x16,0x77,0x64,0x82,0x05,0x24,0xb3,0x8b,0x68, +0xd7,0x53,0x9b,0x4f,0x6e,0x95,0x4e,0xb1,0xfa,0x85,0x3a,0xb1, +0x32,0x78,0x7d,0x80,0x9c,0x99,0x67,0xf5,0x1d,0xb5,0x1f,0x07, +0xb8,0xce,0x31,0xd0,0x2d,0x77,0xe2,0x6e,0xbd,0xac,0xf8,0x90, +0x01,0xdf,0x30,0x30,0x8c,0x3a,0x31,0xff,0x84,0x41,0xb0,0x33, +0x63,0x16,0xe4,0xe9,0xe9,0x34,0x72,0xb5,0x98,0xbb,0xb9,0x43, +0x5d,0xbd,0x90,0xf5,0x5d,0x94,0x2c,0x0e,0xfa,0x85,0xc3,0x5e, +0x7e,0x8e,0x26,0x7e,0x67,0x49,0x11,0xbd,0x64,0xce,0x86,0x14, +0x9e,0x2a,0x2a,0xd1,0x7c,0xf4,0x99,0x5e,0x7b,0x6a,0xc3,0x49, +0x13,0x29,0x09,0x91,0xa7,0xd8,0xc8,0xb6,0xb0,0x2b,0x67,0xee, +0x30,0xd0,0x93,0x3a,0xb9,0xe2,0xe4,0x86,0x6f,0xe5,0x64,0x00, +0xb2,0x08,0x24,0x07,0xc6,0xfb,0x9f,0xf4,0xed,0xde,0x62,0xe9, +0x56,0x69,0x66,0xdd,0x52,0x8f,0xfa,0x3f,0x49,0x3d,0x31,0x0e, +0x5e,0xc5,0x49,0xa2,0x77,0x25,0xe0,0x58,0xd6,0x0c,0x7e,0x56, +0xe0,0x38,0x88,0x84,0x99,0x0a,0x9c,0x09,0xfb,0xe8,0x8b,0x71, +0x55,0x49,0x65,0xc9,0x3b,0xeb,0xb9,0xb9,0x8e,0xd8,0x67,0x0b, +0x4a,0x0e,0xc6,0x5a,0x72,0x95,0x91,0x55,0x51,0x95,0xe7,0x18, +0x74,0x16,0x77,0x96,0xa6,0x60,0x24,0x1d,0x82,0xab,0x59,0x1c, +0xb4,0xb4,0xe8,0x9a,0x8d,0xac,0xfa,0xb7,0x78,0xe8,0x15,0x01, +0xa3,0x99,0x12,0x1c,0x4b,0x37,0x5c,0x6b,0xfb,0x78,0xe1,0x01, +0x89,0x83,0x9b,0x2d,0x40,0x9b,0xde,0xbd,0x4e,0xae,0xa5,0xbf, +0x94,0xd9,0x08,0xb3,0xe9,0xe3,0x63,0x7c,0x74,0x3c,0x74,0xf7, +0x34,0x7b,0xdd,0xf0,0xfd,0xce,0xfc,0x18,0x17,0x3b,0x29,0x6d, +0x7e,0xc9,0xfa,0xdd,0x76,0x9b,0x1d,0x6c,0x9d,0x88,0x1e,0xaa, +0xa9,0x28,0xaa,0xcc,0xac,0x62,0xd6,0xb5,0xbf,0x74,0x05,0x8d, +0x91,0xb0,0x8d,0x8a,0x6b,0x91,0xa8,0xf1,0x03,0x3a,0x97,0xb0, +0x0e,0x7c,0x49,0x15,0x9e,0xbe,0x04,0x19,0xd5,0x98,0xd1,0x62, +0x26,0xc7,0x18,0x7b,0x88,0x31,0xa2,0xf1,0x15,0xba,0x88,0xab, +0xeb,0xa4,0x8f,0xbf,0x52,0x52,0x0e,0xfd,0xb5,0x69,0xaa,0x0a, +0x46,0xd4,0x2d,0x60,0xa0,0x2a,0x9f,0x30,0x51,0xb5,0xb6,0x6e, +0x7c,0x3c,0xff,0x31,0xb4,0x3b,0x77,0x94,0xd8,0xfd,0xf4,0xd7, +0x71,0x4a,0x61,0x89,0xa4,0x0a,0xa6,0xb0,0x8e,0x70,0xd4,0x10, +0xa3,0x1d,0xf8,0x87,0x55,0x98,0xd2,0x01,0x2e,0xb9,0x74,0xde, +0xe1,0xd4,0xec,0xb8,0xec,0xe8,0x5c,0x8d,0x52,0xa1,0x73,0x23, +0xdf,0x48,0x07,0x1e,0xf5,0x3d,0x74,0xec,0x28,0x13,0x26,0xde, +0x1b,0xfc,0xb0,0x4e,0xf8,0x87,0x0d,0x7f,0xc0,0x00,0x1d,0x36, +0x82,0x03,0x6a,0x4e,0xa1,0xe3,0xac,0x25,0xdf,0x8b,0x90,0x49, +0x56,0xe1,0xb0,0x17,0x35,0xb4,0x50,0xac,0xbc,0x37,0x78,0x11, +0x58,0xe3,0x0e,0xf1,0xde,0xe0,0xc5,0xca,0x7b,0x83,0x99,0xf7, +0x34,0x78,0x98,0xb3,0x59,0x07,0x72,0x3c,0x92,0xf7,0x14,0xe5, +0x70,0x07,0x2f,0x78,0x64,0xef,0x4c,0x21,0x73,0x78,0x59,0x59, +0x09,0xa5,0xe4,0xca,0x22,0xb7,0xd7,0x80,0x11,0x0a,0x71,0x0f, +0xe3,0x3f,0xc3,0x7d,0x11,0x22,0x9e,0xa1,0x16,0xe1,0xca,0xbc, +0x16,0xac,0x20,0xa4,0xaa,0x49,0x58,0x0e,0x33,0x28,0x18,0x13, +0x03,0x93,0x33,0xa0,0x57,0xbe,0x47,0x3d,0x87,0xbd,0xb7,0xe1, +0xdc,0xbd,0x38,0xdb,0x97,0x11,0x4e,0xce,0x35,0xe3,0x9f,0x28, +0x70,0x2e,0x6d,0x0c,0x41,0x2c,0x06,0xe1,0x0e,0x08,0xa2,0x91, +0x13,0x1e,0xb2,0x0f,0x2e,0x3d,0xfa,0xa9,0xf2,0xd6,0xc6,0x5c, +0xce,0x61,0xed,0xf2,0xf9,0xcb,0x2d,0x18,0x7e,0x28,0xe8,0xb2, +0x1d,0x26,0x77,0x74,0x2a,0xf4,0xab,0x8a,0x39,0xc7,0xab,0x2b, +0x5e,0x19,0x2b,0x88,0xa9,0x6d,0x44,0xc1,0xfb,0xc7,0x05,0x7e, +0xcd,0xb6,0x7e,0x65,0x00,0x53,0xcd,0x94,0x7c,0xe4,0xeb,0x76, +0xd9,0x53,0x65,0x46,0xb1,0x7b,0xbb,0xec,0x4b,0x4e,0xfb,0x25, +0xce,0x28,0x2d,0x93,0x64,0x83,0x09,0x5b,0x7a,0xb9,0xf0,0xc7, +0xb8,0xcb,0x30,0x2a,0x14,0x66,0x26,0xc2,0xe0,0xfc,0xdd,0xc4, +0xce,0x01,0x1e,0x38,0xfd,0x10,0xce,0x3b,0xe1,0xb9,0xca,0x75, +0xf2,0x26,0xa2,0xc4,0x2d,0x60,0x3a,0x9b,0x6f,0x91,0xbf,0x32, +0xd5,0xb8,0x21,0x83,0xdb,0xdf,0xb6,0xf5,0xde,0xb6,0x7a,0x06, +0x67,0x11,0x8f,0x0b,0xa8,0x3d,0x7a,0xc9,0xab,0xc2,0xca,0x87, +0x8b,0xb7,0x8b,0x31,0x8f,0xb4,0x62,0xca,0xf0,0x10,0xfb,0xa4, +0xf4,0x41,0x4b,0xa5,0x82,0xa9,0x14,0x5c,0x2c,0xf8,0x81,0xb4, +0xcb,0x66,0x93,0x4d,0xba,0x5b,0x98,0xf5,0x18,0x6b,0x06,0xb1, +0x64,0x16,0x16,0x2b,0x4f,0x8b,0x8d,0xee,0xbe,0x94,0xc1,0x09, +0xce,0x2a,0xf0,0x2c,0xad,0xf6,0x1d,0xbf,0x96,0x85,0xfe,0x77, +0x2b,0xae,0x47,0xdf,0x21,0x30,0x13,0xd4,0x42,0x18,0x7c,0x44, +0x68,0x48,0xb8,0x58,0x63,0x33,0xbb,0xb0,0x74,0xcc,0x0f,0xde, +0x51,0x7e,0xa7,0xfc,0xfd,0x35,0xbc,0x7d,0x25,0x41,0x37,0x60, +0x5a,0x23,0x4e,0xfb,0xdd,0x54,0x1b,0x6d,0x2d,0x61,0x1d,0xb5, +0x6f,0x8d,0xc1,0xba,0xb1,0x06,0x0c,0x6f,0x42,0xa2,0xc2,0xf0, +0x87,0xf9,0x97,0x62,0x6e,0x91,0x37,0x38,0xd1,0x0a,0x27,0x22, +0xa8,0xe8,0xd5,0x35,0xc6,0x30,0x62,0x71,0x76,0x2d,0x87,0xbd, +0x2e,0xeb,0x5d,0xdd,0x79,0x83,0x01,0xab,0x46,0x74,0xff,0xdd, +0x44,0x1b,0x17,0x5b,0x82,0x36,0xb5,0x57,0xdf,0x62,0x03,0x4a, +0xf4,0x19,0xf8,0x4e,0x38,0xc6,0xda,0x05,0x46,0x97,0xcb,0xe0, +0x8a,0xb0,0x57,0x9f,0xc6,0x39,0x6e,0xcb,0x71,0xe9,0x02,0x69, +0xbe,0xb9,0x04,0x96,0x3e,0xb9,0xf1,0x16,0xf4,0x34,0xd3,0xe0, +0x03,0x26,0xd1,0x4b,0x33,0x0f,0xde,0x91,0x92,0xb5,0x5c,0x1d, +0x27,0x5e,0xbc,0x34,0x81,0x36,0x4e,0x97,0xe0,0x2a,0x5a,0x88, +0x06,0x3d,0xf6,0x8e,0x63,0x87,0x43,0x9b,0x65,0x59,0x2d,0x67, +0xdc,0x60,0x54,0xb9,0x4a,0x3c,0xda,0x9c,0xa8,0x2c,0x5d,0xe3, +0x60,0xb8,0x42,0xdc,0xdc,0x37,0x51,0x11,0xf3,0xd1,0x62,0xd6, +0xd9,0x59,0xe9,0x43,0xa5,0xdd,0x7b,0xc0,0xca,0x89,0xc9,0xfa, +0x9a,0x23,0xfc,0x11,0xa7,0x97,0x94,0xcd,0x87,0x09,0xe2,0x3e, +0xa6,0x98,0x46,0xa5,0xb1,0x3f,0x1b,0x5b,0x1e,0x57,0x13,0x53, +0x46,0xcc,0x87,0x7b,0x82,0x25,0xde,0x03,0x33,0xca,0xd7,0xc5, +0xcb,0xde,0xcb,0x89,0xc1,0x0d,0xc2,0xd2,0x8e,0x6b,0xfc,0x18, +0xfd,0x0e,0x7e,0x29,0xa5,0xc5,0x8f,0x66,0x71,0x0b,0xa1,0x15, +0x5b,0x68,0xf7,0x2e,0x13,0x16,0x42,0xf8,0x31,0x18,0x22,0x8e, +0xed,0x32,0x32,0xb6,0xf7,0x2a,0x6e,0x44,0xdf,0x23,0x43,0x13, +0xd2,0x02,0x46,0x54,0x64,0xe8,0x29,0x71,0x6c,0x7b,0xcd,0x2a, +0x2e,0x1d,0xfd,0xa3,0x4f,0x94,0x5f,0x88,0x1f,0x19,0x5b,0x1f, +0x49,0xd0,0x4d,0x98,0xd6,0x84,0xd3,0xc4,0x72,0x78,0x5b,0x0b, +0x32,0xb6,0x7b,0x57,0x1b,0xac,0x19,0xb7,0xa1,0x7b,0x6c,0x1f, +0xe5,0x77,0xc4,0xdc,0x26,0x6f,0x70,0xa6,0x15,0xce,0x28,0xc7, +0xd6,0x10,0x86,0x2f,0xca,0x21,0x63,0xdb,0xf3,0xca,0xba,0x6b, +0x3b,0x6f,0x11,0xe3,0x9a,0xd0,0xfd,0xbd,0xc9,0x44,0x5c,0x6c, +0x21,0x8e,0xed,0x3a,0x73,0x7d,0x94,0xe8,0x89,0xfd,0xfe,0x58, +0xa1,0xef,0x65,0xd8,0x41,0x47,0x9d,0x39,0x1d,0x7d,0x42,0x0a, +0x9f,0x51,0x2d,0xbd,0x19,0x5f,0x43,0xbf,0x03,0x91,0x81,0xdf, +0x06,0x78,0x6a,0xf8,0x7b,0x4a,0x82,0x40,0x8d,0x5f,0xd8,0xf6, +0x5f,0xac,0x09,0x61,0xb6,0x95,0xfc,0xd6,0x2f,0x41,0xda,0x57, +0xe9,0xd7,0x4a,0x3e,0xa2,0x4c,0x42,0x7f,0x63,0x0e,0xea,0xdd, +0x49,0xe8,0x99,0xa8,0x5e,0x62,0xc7,0xdd,0xfd,0xf3,0xc2,0x9f, +0xe1,0x62,0x62,0x32,0xb5,0xe5,0xaf,0xac,0xc6,0xf7,0x38,0xab, +0x98,0x84,0x92,0x89,0xe3,0x59,0x98,0x0c,0x1f,0x71,0x32,0xac, +0x00,0x3d,0x85,0xf0,0xdc,0x0c,0x56,0x93,0xf8,0x2f,0xc3,0x8f, +0x20,0x43,0x2b,0xb4,0x35,0xe3,0xbb,0x14,0x68,0x44,0xe1,0x55, +0xde,0x87,0x05,0x19,0x1c,0x06,0x09,0x1e,0x26,0x28,0x1a,0x44, +0xf4,0xcd,0x19,0x94,0xc0,0x19,0x94,0x51,0x6a,0x9d,0x73,0x3b, +0x83,0xd9,0xb8,0x0b,0x31,0x59,0x11,0xe7,0x0d,0xcf,0x72,0x01, +0xbb,0xbc,0x3d,0x8e,0xb8,0x33,0xb8,0x4c,0x18,0xc0,0xef,0xe3, +0x07,0x50,0x42,0x27,0x96,0xff,0x6b,0x81,0xcc,0xd7,0xb2,0x84, +0xff,0x36,0xcf,0x04,0x2b,0x72,0xff,0x75,0x9e,0x4f,0x77,0x73, +0x44,0x09,0x61,0x9a,0x39,0x2c,0xf9,0xd2,0x89,0xbd,0x68,0xec, +0xc4,0x45,0xe2,0x39,0xce,0x4e,0xb1,0x1d,0xe9,0x01,0x61,0x0d, +0x6b,0x1b,0x10,0x5e,0x2b,0x83,0xc1,0x34,0x3f,0xac,0x2a,0xa8, +0x59,0x18,0xe8,0x28,0x79,0xbf,0x01,0x7b,0xd0,0x38,0xf9,0x48, +0xb8,0x19,0x8c,0x4f,0x90,0xe0,0x30,0x7a,0x69,0xd6,0xfe,0x47, +0x52,0x08,0xa3,0xca,0x13,0xc5,0x0a,0xdf,0x81,0xb4,0x3c,0x51, +0x82,0x13,0x69,0x35,0x68,0xef,0x96,0x65,0x3e,0x7e,0x62,0xb2, +0x83,0xc8,0x15,0x5a,0x21,0xd2,0x3a,0x31,0x3b,0xa4,0x6d,0x06, +0x52,0x51,0x96,0xb9,0xe0,0x98,0x89,0x44,0xf5,0xdb,0x12,0xeb, +0x7a,0xfd,0xf7,0x42,0x99,0x1f,0x95,0xb2,0x8c,0x0f,0x86,0x74, +0xf6,0x5a,0xa3,0x3e,0x2c,0x13,0x76,0x59,0xc0,0x54,0xea,0xdb, +0x4d,0x27,0x5c,0x83,0xdd,0x18,0x9c,0x6e,0x09,0x5a,0x54,0x90, +0x8b,0xff,0x26,0x3f,0xa2,0xb7,0x7b,0x59,0xfe,0x4a,0x6d,0xc1, +0xde,0x66,0xe3,0x16,0x4e,0x21,0xe8,0x5e,0x5e,0x9f,0xd7,0x90, +0x5a,0xce,0x60,0x56,0xfb,0x0d,0xb8,0xb5,0xee,0x12,0xaf,0x2e, +0x0c,0xa1,0x63,0xf3,0xce,0x15,0xc6,0x14,0x33,0x70,0x9f,0x32, +0x81,0x37,0x2c,0xf6,0xc5,0x1d,0x74,0x58,0x51,0x68,0xc9,0x69, +0xe2,0xd1,0x2e,0xb8,0x94,0xc5,0x01,0x78,0x9a,0x8e,0x2a,0x8a, +0x2c,0x8d,0xa8,0x60,0x20,0x18,0x5f,0xb2,0xe8,0x84,0xb7,0xc0, +0x89,0xe8,0x8b,0x35,0x9d,0x81,0xec,0x0b,0xc3,0xd9,0x18,0x6e, +0xc1,0x7f,0xd7,0x44,0x77,0xcd,0xc0,0xb2,0xbf,0x3b,0xc7,0x37, +0x40,0x37,0x7d,0x21,0xab,0x9a,0x62,0x8f,0x1f,0x1f,0x31,0x6d, +0x39,0x5e,0x07,0x59,0x62,0xc7,0xed,0x4f,0x17,0xfe,0x4a,0x5b, +0x7e,0x21,0xab,0xf7,0x50,0x47,0x74,0x8e,0x5c,0xb8,0xcb,0x0a, +0x9b,0xd0,0x85,0xdf,0x44,0x19,0xc1,0x4c,0x76,0x0c,0xfe,0xfa, +0x89,0x06,0x67,0x41,0x9b,0xcd,0xa4,0xbf,0x3b,0xff,0xa8,0xe0, +0xd2,0x45,0x82,0x5d,0x09,0x56,0xfc,0x2c,0xda,0x7e,0x8f,0xd9, +0x81,0x75,0x87,0x18,0x23,0x2c,0xb2,0x82,0x22,0x94,0x92,0xb5, +0x1e,0x2f,0x17,0x55,0xe1,0xc5,0xc4,0xa4,0x8b,0x32,0xa2,0x8b, +0x12,0x1b,0x88,0x8d,0xe7,0x61,0x2b,0x7b,0x71,0x47,0xd3,0x9e, +0xd6,0x83,0x19,0x75,0x84,0x8c,0xd6,0x2c,0x6e,0x34,0xed,0x60, +0xe0,0x4c,0x03,0x9a,0x40,0x1b,0xe8,0x35,0xa0,0xde,0xf7,0x46, +0x4b,0x85,0xa9,0xe4,0x0b,0xea,0x59,0x81,0x1e,0xb6,0xa1,0x89, +0x15,0x9c,0xa6,0x4c,0x0d,0x16,0x58,0xe0,0x10,0xc7,0xf3,0xd6, +0x5c,0x5b,0x4a,0xe3,0xf9,0x8b,0x39,0x8c,0x23,0xb8,0xd1,0x16, +0xfa,0xe3,0x1c,0xd0,0xde,0x3a,0x8d,0xa8,0x1b,0xcf,0xab,0x6f, +0xab,0x8a,0x88,0xf9,0x78,0xec,0x12,0x1c,0x0b,0xa7,0x8a,0xa6, +0x81,0xc4,0x01,0x8e,0xad,0x4f,0x25,0x9c,0xcb,0xa9,0x1e,0x25, +0x35,0xa6,0x57,0x19,0x38,0x48,0x2d,0xe2,0xdd,0x59,0x61,0xea, +0x55,0x7e,0x2a,0x85,0x74,0x9f,0x75,0xc2,0xd4,0x1b,0x34,0x3f, +0x15,0xfb,0xb1,0x2b,0x85,0xa9,0x77,0x69,0xf8,0x81,0x70,0xbe, +0x62,0xfb,0x6a,0x97,0xa6,0x2d,0x0c,0x1e,0x7f,0x6d,0x34,0x1d, +0x8f,0x50,0x75,0x05,0x55,0xa5,0xc5,0x17,0x09,0x89,0xce,0xee, +0xf4,0x62,0x63,0x32,0xa3,0x32,0x23,0x2e,0x98,0x27,0x70,0x7b, +0xb5,0x4d,0x27,0x2c,0x9c,0x9d,0x6f,0xc5,0x9d,0x8b,0x3d,0x17, +0x17,0x13,0x17,0xef,0x9e,0xe8,0x7a,0x6e,0x6b,0x4d,0x1a,0xe7, +0x59,0xb3,0xaf,0xe1,0x48,0x6e,0x4a,0x76,0x62,0x76,0x42,0x0e, +0x03,0x5d,0x13,0x29,0x1c,0x16,0x8c,0x7b,0xbd,0x70,0x90,0x74, +0xb9,0x9f,0xe7,0xe6,0xb5,0x23,0xa7,0x88,0x35,0x4e,0x0f,0xa9, +0x0f,0x45,0xcd,0xd0,0x37,0x86,0x30,0xa7,0x21,0x11,0xb0,0x1b, +0xd4,0x35,0x61,0x16,0xdd,0xd5,0x1b,0xaf,0x28,0xe5,0xb2,0x8f, +0x2a,0x3c,0x2d,0x02,0x4a,0x21,0x5e,0xd9,0xf1,0x7f,0xf7,0xbf, +0xbd,0xff,0xe2,0x7f,0x90,0x1f,0xce,0xfa,0xc6,0xfa,0x9f,0xf6, +0xf6,0x11,0x27,0xfc,0x3e,0x58,0x37,0xa2,0x35,0x78,0x99,0xa3, +0x17,0xba,0x58,0x82,0x25,0xb5,0x73,0xfa,0x82,0x79,0x13,0xe6, +0xe5,0x59,0x71,0x7f,0xbc,0x78,0xfc,0x83,0x48,0x2a,0x51,0xd1, +0x04,0x67,0xa9,0xf0,0xd0,0xd3,0x61,0x81,0x52,0xb2,0xd2,0x97, +0x94,0x15,0x49,0x36,0xf0,0x27,0xd8,0x23,0xf6,0x5b,0x37,0x78, +0x38,0x56,0xef,0xe0,0x72,0xca,0x0b,0x6f,0x24,0xd7,0x13,0x70, +0x7e,0x0b,0xdf,0xb2,0x3e,0xe7,0x7c,0xcf,0x1c,0xf3,0xf3,0xf1, +0x27,0xf6,0x15,0x7d,0x44,0x1b,0x63,0x2a,0xca,0x4a,0x52,0x4d, +0x55,0x24,0x88,0xc5,0xf4,0xc7,0x71,0xce,0xef,0xb0,0xba,0x09, +0x57,0x7f,0x30,0x1e,0x8f,0x06,0x16,0x60,0xa0,0x8d,0x33,0xf1, +0x96,0x02,0xe2,0xdf,0x61,0x7f,0x1a,0x47,0x2f,0x44,0x35,0xec, +0x37,0x47,0x5a,0x6c,0xf5,0xe1,0xe9,0xc5,0x1f,0x42,0xef,0x6b, +0x44,0xe0,0x77,0xed,0x50,0xa8,0x84,0xa0,0xe3,0x52,0xd0,0xc0, +0x71,0x65,0x15,0x12,0xc8,0xe5,0x67,0x8b,0xc7,0x6c,0x9d,0xd7, +0x51,0x31,0x56,0x92,0x26,0xaa,0x32,0x5e,0x7c,0xe3,0x33,0xb8, +0xee,0x1d,0x38,0x37,0xa1,0xb3,0xf8,0xc6,0xa6,0x16,0x60,0xaa, +0x85,0x8b,0xf0,0x26,0x79,0x63,0xe8,0x85,0x03,0x68,0x1c,0x33, +0x19,0x35,0x51,0x7b,0xba,0xb4,0xc0,0x0a,0x34,0x5f,0x76,0xbc, +0x89,0xf8,0x81,0xbc,0xf5,0xd3,0x76,0x78,0x1a,0x41,0x85,0x2f, +0x6a,0x9a,0x0b,0x94,0x76,0x29,0xf1,0xb1,0x91,0xd0,0x73,0x2e, +0xf4,0x03,0x99,0xa6,0x1a,0x78,0x2a,0x83,0x8c,0xe6,0x6f,0x8d, +0x93,0x55,0x54,0x73,0x48,0x77,0x3d,0x8f,0x1b,0x4e,0x58,0xa0, +0xa4,0x9a,0x57,0xff,0x48,0xff,0x18,0xf6,0x13,0x19,0xdb,0xf8, +0xaf,0xf5,0x3c,0x57,0x44,0xb2,0x65,0x04,0xe3,0x54,0x74,0x4d, +0x03,0x24,0x42,0x19,0xdb,0x7e,0x8b,0x37,0x5b,0xd3,0xde,0xf9, +0x4f,0xe1,0x0a,0xd5,0x6e,0xc9,0xf2,0x66,0x5d,0xc6,0x82,0x19, +0x05,0x27,0xe1,0x37,0x16,0x46,0xd4,0x13,0x12,0x34,0x13,0x26, +0x37,0xe0,0x7b,0x2b,0x18,0x47,0xc6,0x61,0xb0,0x35,0x0c,0x46, +0x4b,0x9c,0x6a,0xcd,0xf7,0xac,0x47,0x1d,0xaa,0x08,0xb4,0xd8, +0x14,0xf7,0x0c,0x8b,0x98,0xed,0x15,0x29,0x9c,0x77,0xfe,0xde, +0x86,0x03,0x79,0x8c,0xda,0x3f,0xf4,0x88,0xf0,0xde,0x7a,0xcd, +0xf0,0x89,0xf5,0x45,0x27,0x0f,0xae,0xc1,0xee,0xd2,0xbc,0x3c, +0x3d,0xa6,0xab,0x2f,0x8e,0x21,0x6e,0x11,0xf4,0x65,0x01,0x6b, +0x7c,0x6a,0x1a,0xa3,0xb2,0xfb,0x6b,0x75,0xc6,0x78,0x15,0x45, +0xbe,0x2e,0x52,0x64,0x51,0x80,0x25,0x7e,0xb5,0xfb,0xa6,0xb2, +0x0e,0x09,0x46,0xf3,0xe7,0xd8,0xfd,0xab,0xed,0x57,0x9b,0xdb, +0x14,0xbb,0x71,0xad,0x8a,0x8b,0x77,0x33,0x1f,0x32,0xfc,0x3c, +0x61,0x10,0xdb,0x88,0xb3,0xe9,0x43,0xe5,0x9e,0x55,0x7e,0x35, +0xcc,0xe7,0x46,0xb4,0xa2,0xce,0xd6,0x44,0xd4,0x85,0x35,0x99, +0x87,0x71,0xc1,0x66,0x01,0x56,0x7e,0x76,0x0c,0x8e,0x12,0x3b, +0x09,0x7b,0xdb,0x1e,0x75,0x3c,0xec,0xc2,0xe0,0x3c,0x4b,0xd0, +0xa0,0x1c,0x57,0x99,0x1a,0x2f,0xb7,0xca,0xb3,0xe3,0x7e,0xba, +0x72,0xe3,0xbb,0xba,0x9f,0x19,0xd8,0x40,0xd5,0xcc,0xe9,0x58, +0x72,0xc3,0xb4,0xb0,0x9a,0x33,0xad,0xb1,0xbc,0xb4,0xe9,0x26, +0x83,0xbb,0x1a,0xd9,0xc4,0xb2,0xb8,0xaa,0x18,0x02,0x0b,0xd4, +0x59,0xfb,0x38,0x87,0x24,0x27,0x66,0x21,0x8e,0x60,0xcd,0x57, +0x51,0x62,0xef,0xf5,0x00,0x29,0x6a,0x59,0x82,0x8c,0xda,0x37, +0x7e,0xf1,0x2a,0x9c,0x68,0x27,0xb6,0xba,0x9d,0xd5,0xf0,0xf6, +0x97,0xf3,0x30,0x82,0x81,0xa5,0xd4,0x49,0xcb,0x13,0xe6,0x01, +0xb6,0xcc,0xc6,0x40,0x6f,0xdf,0x8d,0x23,0xc7,0x50,0xe7,0xac, +0x24,0x9f,0xa8,0x6b,0x79,0x49,0xdf,0xc5,0xc8,0xce,0x5e,0x3a, +0x73,0x33,0xe4,0x57,0x06,0xf7,0x52,0x21,0x11,0xa7,0x22,0x22, +0x34,0xc5,0x9a,0x15,0x27,0x32,0x97,0x1a,0x1f,0x1b,0xc7,0xa9, +0x94,0xd3,0x60,0x4b,0x60,0x54,0xb2,0x61,0xe2,0x42,0x1c,0x44, +0xe2,0xdd,0x95,0xf7,0xdd,0xb5,0x59,0xf1,0xcd,0x7f,0xab,0xcd, +0x9a,0x53,0x54,0xbc,0x1e,0xa6,0x05,0xc4,0x93,0xb9,0xf4,0xd3, +0x00,0x35,0x32,0x97,0xad,0x9d,0x57,0xf8,0x35,0x5d,0xc7,0x70, +0x22,0x95,0x68,0x24,0x1e,0xff,0xa8,0x8d,0x4b,0xaa,0x91,0x75, +0x16,0x08,0x35,0x34,0x3f,0x5f,0xe8,0xcf,0x5a,0x61,0xd2,0x5a, +0x78,0x06,0x5a,0x0d,0x33,0xa8,0xd4,0xaa,0x0b,0x97,0x62,0x4a, +0x6d,0xe3,0x38,0x2f,0xa7,0xbd,0xfa,0x7b,0xac,0x18,0xb4,0xb3, +0x02,0x2d,0x7c,0xb6,0x0e,0x92,0x2c,0x85,0xa1,0x8d,0x57,0x20, +0x90,0xc2,0x52,0xfe,0x16,0x9b,0xec,0x9e,0x6e,0x71,0xce,0xad, +0x3a,0x85,0x3b,0x56,0xb2,0xb7,0xe9,0x70,0x2e,0x99,0x5d,0x4d, +0x7e,0x1d,0x3b,0x96,0xda,0x71,0x3c,0x3c,0x43,0x3c,0xf1,0x3f, +0x04,0x07,0x37,0x93,0x00,0x1b,0x05,0xbd,0x8c,0xb1,0x17,0x7a, +0xe3,0xea,0x66,0x18,0x0c,0x7d,0x0e,0xd1,0x38,0x76,0xb3,0x21, +0xb2,0x1b,0xa4,0x59,0xd6,0x12,0x98,0x78,0xaf,0xe6,0x27,0x98, +0xa1,0x99,0xfc,0x0a,0x77,0xd2,0x66,0xc9,0x9e,0xcd,0x52,0xa2, +0x0a,0x4a,0xce,0xc5,0x96,0xc8,0x9a,0x69,0xab,0x78,0x89,0x00, +0xce,0x6c,0x40,0xfc,0x5f,0xda,0x5c,0x03,0x7a,0x35,0x8b,0x4d, +0xa9,0xfe,0xaf,0x61,0xff,0xcb,0xde,0x33,0x09,0xfb,0xc4,0x35, +0xf8,0x2b,0x3a,0x6c,0xb3,0x50,0x60,0x0e,0x47,0x71,0x37,0x16, +0x99,0xf1,0xbc,0x02,0x93,0x60,0xb7,0xf2,0xea,0xce,0x7f,0xab, +0x21,0xfc,0x5a,0x0a,0xf0,0xb7,0x7c,0xd9,0x24,0x65,0xbe,0xec, +0xc1,0xd7,0x7c,0xd9,0xd7,0x84,0xce,0x73,0x9c,0x43,0xe0,0xa8, +0x94,0xf7,0x66,0x85,0x3e,0xfc,0x11,0xbe,0x0f,0x6d,0x8c,0xb3, +0x58,0xa1,0xe7,0x9f,0x7c,0x4f,0x4a,0xe8,0x89,0x33,0x59,0xbe, +0x27,0xf6,0x14,0x7a,0x52,0xd1,0x48,0x82,0xf9,0x94,0x46,0x9c, +0x02,0x43,0x8d,0x85,0x81,0xd4,0xae,0xe0,0x9d,0xc1,0xbb,0x8f, +0xc7,0x98,0x73,0x7f,0xc4,0x7f,0x3a,0xff,0x32,0x3b,0xb0,0x81, +0xb3,0xf5,0xb2,0xf0,0x32,0xf7,0x61,0xf8,0xc9,0x07,0x59,0xec, +0x43,0x6d,0x0f,0x0a,0xcb,0x91,0xc1,0x18,0xfa,0xe6,0xf9,0xc7, +0xa5,0xf5,0x85,0x1e,0xd5,0x9c,0xd3,0x76,0xfd,0x6d,0x46,0xfb, +0x19,0xf1,0x1e,0xb4,0xcf,0xf4,0xba,0x2c,0xcf,0x0e,0x29,0xf4, +0xa1,0xaa,0x63,0x53,0x8b,0x64,0x30,0x9c,0xb6,0x4a,0x95,0xa8, +0xfd,0x63,0x30,0xaf,0xc5,0xae,0x2f,0xdf,0xa4,0xd8,0xff,0x88, +0x81,0xd5,0xf5,0x68,0x4c,0x05,0x16,0x9d,0x28,0x3b,0x59,0x7d, +0x3d,0xf2,0x6a,0x94,0x22,0x66,0x2f,0x01,0x07,0xb5,0x7d,0x38, +0xe3,0x28,0xae,0xf7,0x67,0x04,0x75,0xda,0xf3,0x84,0xe7,0xb7, +0x9e,0x27,0x62,0xcc,0xb8,0x77,0x89,0x20,0xc9,0x7c,0x98,0xe5, +0xd7,0xc0,0x99,0x1d,0x59,0x7f,0x44,0xcf,0x8b,0x21,0x4a,0xc8, +0x91,0xce,0x98,0x58,0xb7,0xea,0x89,0x4d,0xd1,0xee,0xfc,0x98, +0xf0,0xaa,0x38,0x60,0x38,0xdb,0x34,0x49,0x57,0xbf,0x05,0xc4, +0x07,0x27,0xfe,0xc7,0xb5,0x1b,0xde,0xdd,0xe3,0xa3,0xac,0xdd, +0x98,0x04,0x73,0x94,0x05,0x32,0xbe,0x1a,0xb0,0x9d,0xb0,0x9a, +0xf6,0xd0,0x8e,0xb0,0xf6,0xf0,0x10,0xa7,0x50,0xd7,0x30,0x12, +0x81,0xcc,0xa9,0xc8,0x2e,0x2b,0xb6,0x0e,0x5e,0xd9,0xb4,0xf1, +0x13,0x05,0x3b,0x61,0x22,0xcd,0x8f,0x86,0x08,0x16,0x5f,0xbd, +0x85,0x57,0x14,0x51,0x8f,0x5a,0x2c,0xbc,0x1a,0x8f,0xaf,0x28, +0xb1,0x68,0xda,0xed,0x8b,0x2f,0xf8,0x2a,0x27,0x6b,0x50,0x03, +0x05,0x6b,0x13,0x32,0x36,0x66,0x6d,0xca,0xdb,0xaa,0xb1,0x64, +0x87,0xce,0xc1,0xb1,0x5e,0x62,0xd2,0x88,0x4a,0x78,0x9b,0xf1, +0x43,0xa1,0xc2,0xfe,0xba,0xc7,0x77,0x5e,0x65,0x81,0x29,0xe7, +0xc2,0x8a,0x63,0xa0,0x17,0x67,0x93,0x4a,0x7c,0xc5,0x38,0xc6, +0x32,0x75,0x63,0x9e,0x46,0x6b,0x76,0x63,0x61,0x4d,0x85,0x5b, +0x31,0x67,0xe7,0x64,0xbe,0xc5,0x60,0xe7,0x8e,0xcc,0xdd,0x05, +0xfb,0xcb,0xe1,0x5d,0x2e,0x17,0xd4,0x20,0xf4,0xd9,0xe6,0x59, +0xe4,0x59,0xe6,0x5d,0xa5,0x21,0xf7,0x8b,0x71,0x8e,0xdb,0x14, +0xbf,0x45,0x03,0x17,0x78,0x45,0xd8,0x48,0xc4,0xa2,0x43,0xd1, +0xed,0x34,0xcd,0x61,0x88,0xb8,0xfa,0x5c,0x71,0x9c,0x8e,0x52, +0xb6,0xde,0xfe,0xf3,0xc2,0x47,0xe5,0x36,0x78,0x4a,0xcb,0x5f, +0x29,0xa1,0x87,0xb8,0x48,0x24,0x14,0x2e,0xbc,0x17,0xeb,0x18, +0xbb,0x3e,0xc9,0x22,0x6a,0xaf,0x3d,0xa7,0xf0,0xb9,0x79,0xa4, +0xe4,0x18,0x13,0x2b,0xa8,0xb3,0x96,0x89,0x7a,0xf1,0x86,0x51, +0x7b,0x09,0x0a,0xfb,0xdf,0x38,0x5a,0x7f,0x94,0x81,0x3e,0xf8, +0x94,0x5d,0x9f,0x60,0x72,0xc1,0xaa,0xb4,0xa3,0x44,0x51,0x5d, +0xd3,0xe8,0x98,0xcf,0x6d,0xb4,0x32,0x77,0xdc,0xb0,0x79,0x7b, +0xde,0x8e,0x92,0xbd,0x35,0x7c,0xcf,0x02,0xd1,0x34,0x76,0xb3, +0x57,0xc1,0xb1,0x12,0xdf,0x72,0x0d,0x33,0xff,0xa8,0x4d,0xe7, +0x36,0xc7,0x6e,0xd5,0xc0,0xd5,0x47,0xc3,0x49,0xc0,0x4b,0xca, +0xb4,0xc8,0xdd,0x58,0xec,0xaa,0x31,0x75,0x23,0xf6,0x72,0xc7, +0x81,0x07,0x93,0x08,0xd8,0xb0,0xa9,0xd0,0xbf,0xe8,0x8f,0xa6, +0x0e,0xab,0xdb,0x5b,0x1e,0x1d,0x2a,0xf3,0x4d,0x8d,0x0f,0x2d, +0x8e,0x85,0xa1,0x9c,0x4d,0xba,0x44,0x0d,0x2a,0x88,0x48,0x54, +0x8d,0xa4,0x52,0x93,0x73,0xd0,0xa7,0x19,0xfb,0xa8,0xf8,0xd2, +0x28,0x73,0x18,0x26,0x26,0xf7,0x5c,0x71,0xfc,0x4c,0x25,0x5f, +0xba,0xf3,0x29,0x53,0x95,0xdc,0x3b,0xaf,0x2a,0x87,0x13,0x55, +0xf9,0x03,0x9c,0x27,0x3e,0x5e,0x34,0xe8,0xb3,0x45,0x6d,0x44, +0x43,0x47,0x40,0x0f,0x63,0xec,0x81,0x7e,0x68,0xdd,0xba,0x99, +0xe6,0xd7,0x34,0xb3,0xc2,0x6a,0x42,0xdd,0x57,0x53,0xdf,0x61, +0x35,0x2b,0x5c,0x97,0x43,0x20,0xde,0x47,0xa9,0x72,0xc7,0xb7, +0x1f,0x55,0x9d,0x94,0x44,0x18,0xe9,0x35,0x48,0xa5,0x71,0xf5, +0x42,0xb6,0x66,0x65,0xa9,0x4e,0xe1,0xec,0xe6,0xf3,0xdc,0xd6, +0x9f,0x1c,0x9f,0xdb,0xdd,0x63,0xf0,0x1f,0xc7,0xd9,0xed,0x73, +0x1d,0x17,0x1b,0xac,0xad,0x76,0xe6,0xae,0xde,0xaf,0xfb,0x35, +0xf7,0x47,0xc2,0x4a,0x4e,0xf1,0x0a,0xb6,0x35,0x5b,0x51,0x58, +0x5b,0x56,0xee,0x5e,0xb6,0x2d,0xcf,0xa3,0xb0,0x8c,0xf3,0xc8, +0x72,0xcd,0x75,0xc9,0x2e,0x29,0xcc,0x2b,0xce,0x28,0x76,0xcc, +0xe2,0xf6,0xb8,0x6d,0xdf,0xb2,0x79,0xab,0x5d,0x81,0x6d,0xce, +0xa6,0x34,0x77,0x67,0xae,0xf8,0x40,0xe5,0xce,0x2a,0x0f,0x87, +0x2d,0x36,0xee,0xe6,0x7b,0x18,0x12,0x92,0x06,0xb1,0x81,0x71, +0xfe,0xa7,0x7c,0x7c,0x95,0x8e,0xd3,0xaf,0x1b,0x44,0xc4,0x04, +0xdf,0x08,0x73,0x65,0x51,0xc3,0xd7,0x04,0xdf,0x8d,0x8f,0x64, +0x36,0xc5,0xf8,0x92,0xa4,0xe0,0x93,0x88,0xd6,0x14,0x19,0xf9, +0x75,0xd4,0x2e,0x2a,0x95,0x64,0xad,0x62,0x61,0x48,0xc3,0xdd, +0xbb,0x89,0xbf,0x30,0x20,0x19,0x47,0xd9,0x24,0x1f,0x6e,0x91, +0x42,0x5f,0xaa,0x2a,0x2e,0xae,0x4a,0xd6,0x42,0x5b,0xc6,0x4a, +0x74,0xb1,0x0f,0xbd,0x2f,0x30,0x2c,0x51,0xf6,0x96,0x48,0x8c, +0x97,0xc6,0x58,0x24,0x68,0x41,0x91,0x29,0xbe,0x24,0x0b,0xd9, +0x6b,0x8d,0x91,0x39,0xf6,0x74,0x61,0x3a,0x25,0xf8,0x8a,0x1d, +0x77,0x6e,0x7e,0xda,0xda,0xec,0x87,0xd5,0x97,0x5b,0xca,0xaf, +0x11,0x61,0x7c,0x93,0x4e,0x4c,0x8e,0x4f,0x89,0x4b,0xdd,0x98, +0xce,0x99,0xce,0x9b,0xbd,0x06,0x99,0x8d,0xe7,0xed,0xb8,0xf2, +0xc4,0xb2,0x94,0xa2,0xf3,0xf9,0xae,0xe5,0x6e,0x75,0xdb,0x17, +0xbb,0x4f,0xd9,0x87,0xbd,0xbd,0xe2,0xcc,0x38,0x18,0x9a,0x00, +0xbd,0x73,0x5e,0x57,0x3e,0x72,0xfe,0x7d,0x3b,0x0c,0xf2,0x64, +0x04,0x23,0x48,0x61,0x13,0xe3,0x24,0x50,0x45,0x6d,0xb2,0x31, +0x73,0x5c,0xbd,0xc5,0x24,0xcf,0xa1,0xc4,0x95,0x88,0xcc,0x4e, +0x1d,0xfe,0x34,0x8b,0x33,0x41,0x0b,0x58,0x05,0xb2,0xc0,0x9a, +0xe2,0x0f,0x38,0xda,0x1c,0xa6,0x09,0x0e,0x33,0xc5,0xed,0xd9, +0x6b,0x84,0xa9,0x26,0x5c,0x94,0x11,0xf9,0x3e,0x8e,0x16,0xb4, +0xe2,0x08,0x77,0xee,0x0e,0xbd,0xc1,0xa0,0x09,0xbd,0x1b,0xb1, +0xb7,0x2a,0xf8,0x0e,0xb2,0x14,0xaf,0x2e,0x57,0x06,0x9a,0x45, +0xca,0x40,0x73,0x59,0x0c,0x34,0x22,0x69,0x88,0xfb,0x5a,0x8a, +0x70,0x55,0x2c,0x45,0x90,0x74,0x0e,0xc3,0xe7,0xac,0xe9,0x5d, +0xc7,0xfb,0xdb,0x9f,0x5e,0x83,0x71,0xf9,0xb0,0x24,0x1a,0xdc, +0x98,0x6a,0xac,0x35,0x87,0x00,0xda,0x0f,0x57,0xed,0xc3,0xd1, +0x1b,0x71,0xc0,0x16,0x60,0x0e,0x03,0xe7,0x03,0x3a,0xe6,0x3e, +0x5c,0x2c,0xea,0x9f,0xc7,0x69,0xb5,0x38,0xd2,0x71,0xae,0xc9, +0xb2,0x25,0xab,0xf2,0x2c,0xb8,0x3b,0xd7,0x5b,0xef,0x54,0x3d, +0x29,0xd0,0xad,0x5c,0xd9,0xbc,0x96,0xc1,0x73,0xe0,0xce,0xfa, +0x3c,0x38,0xfc,0xe3,0x81,0x7b,0x76,0x9e,0x5c,0xca,0xf2,0xa4, +0x59,0x31,0x0b,0x18,0x8c,0x86,0x73,0xac,0x0f,0xf6,0xdb,0x33, +0xc6,0x45,0xa7,0x7a,0x33,0x57,0xf1,0xf6,0x02,0xf4,0x3b,0x07, +0x83,0xc8,0xe3,0x1a,0x76,0xfa,0xb2,0xaf,0x8c,0x66,0xa2,0x8f, +0x19,0x5f,0xa6,0xa0,0xbb,0x86,0x13,0xb8,0x55,0xee,0x6d,0xaa, +0x60,0x5d,0xbd,0x5b,0x83,0xfd,0xdf,0x61,0x3d,0xb2,0x7b,0xfd, +0x3e,0x42,0xed,0xe2,0x32,0x09,0x7f,0x1f,0x56,0xb1,0xb8,0x84, +0x4a,0xab,0x49,0x52,0xc4,0x54,0x99,0xc7,0x73,0xde,0x16,0x87, +0xcd,0x76,0x5b,0x30,0xf8,0x8b,0x19,0xf8,0x53,0x47,0x36,0x1d, +0x70,0xda,0xe3,0xc8,0x88,0x17,0xe7,0x8d,0xa2,0x76,0x3b,0xef, +0x74,0xf1,0x70,0xbb,0xbc,0xfb,0xea,0xce,0x6b,0xee,0x6b,0x5c, +0x66,0xef,0x1e,0xed,0x99,0x44,0xa6,0x8b,0x4d,0x7e,0x5f,0xf0, +0xbd,0xe2,0xbe,0xdb,0x3d,0xb7,0x6b,0x9b,0xf3,0x1b,0xb9,0xf5, +0xf9,0xeb,0xf2,0xf5,0x72,0x9b,0x1a,0x4a,0xaf,0x66,0x3e,0x66, +0x7e,0x56,0xe0,0x0f,0x54,0x7a,0x79,0x6a,0x85,0xb8,0xc5,0x90, +0x4a,0xe1,0x7f,0xbd,0x60,0x7d,0x2a,0x0f,0xd7,0x1e,0x2a,0xb1, +0x3e,0xc8,0x25,0x6f,0x4a,0xb0,0x8f,0x71,0x62,0xe0,0x1c,0x86, +0xb3,0x7b,0xd7,0xb8,0xca,0xad,0x1c,0x4d,0x2e,0x98,0x67,0xd8, +0xa5,0xa4,0x65,0xa7,0xe5,0xa7,0xe4,0x13,0x9a,0x3a,0xaa,0x73, +0x3e,0x8b,0xda,0x6d,0x1f,0x20,0x99,0x9e,0x8e,0x2e,0x16,0x68, +0xb9,0x5b,0x7a,0xce,0x0a,0xce,0x96,0x7e,0xac,0x4b,0xbe,0x4a, +0x98,0x61,0xbf,0x76,0xe8,0x17,0x41,0xa5,0xac,0x87,0x9e,0x36, +0x90,0xb8,0x29,0xb6,0x81,0x43,0xe7,0x0b,0xb8,0xa5,0xe9,0xb5, +0x26,0x14,0xad,0x9f,0x46,0xc5,0x3a,0x4a,0x1e,0x50,0xd5,0x71, +0xc9,0x25,0xb2,0x5f,0xf1,0x4d,0x03,0x3f,0xaf,0x56,0x98,0xd7, +0x61,0x6c,0x28,0x4c,0xb4,0xe5,0x27,0x5a,0xd1,0xed,0xc2,0x6e, +0x16,0x6a,0x17,0x63,0x2f,0x2a,0xce,0x41,0xf2,0x0b,0xf9,0xb5, +0xa4,0x52,0x19,0x51,0xc1,0x7c,0x0b,0x3f,0xaf,0x4e,0x98,0xd7, +0x6e,0x6c,0x2c,0x4c,0xb4,0xe1,0x27,0xca,0xf1,0x35,0x2e,0x6d, +0x87,0x41,0x90,0xe7,0x4f,0x8f,0xc6,0x1d,0xa6,0xb8,0xd1,0x5d, +0x9a,0x68,0x09,0xe7,0x6a,0x80,0xaa,0x4f,0x14,0x69,0xaf,0xbc, +0x1d,0xe4,0x11,0x54,0xc2,0x72,0xe0,0xac,0x21,0x7a,0x63,0x52, +0x23,0x87,0xae,0x39,0x78,0xa0,0xed,0xb3,0xa6,0x58,0x68,0xe3, +0xfa,0x75,0x72,0x82,0x89,0x58,0x53,0xae,0xc6,0xff,0x70,0xe3, +0x59,0x44,0x9f,0xc7,0x38,0x49,0xdc,0x5a,0x90,0xe2,0x24,0xb6, +0xbd,0xba,0xf9,0x62,0x75,0x93,0x4b,0x31,0xe7,0x60,0x65,0x66, +0x69,0xee,0xca,0x6c,0xab,0x3a,0x54,0x59,0xaa,0x59,0x47,0xc2, +0x8c,0xce,0x95,0xc6,0x0d,0x30,0x1d,0xb7,0x3f,0x34,0xd1,0xc5, +0x6d,0x56,0xb0,0x6d,0x02,0x06,0x58,0x42,0xc0,0x18,0xe5,0x6b, +0x61,0x12,0xb2,0x74,0x9c,0x5c,0xf2,0x91,0x18,0x9b,0x50,0x2f, +0x83,0x43,0x11,0x74,0xfc,0xfc,0x17,0x0b,0x60,0xe4,0x1c,0x32, +0x49,0xcb,0xab,0xf4,0xeb,0x6d,0xeb,0x99,0xeb,0x7c,0x0e,0x3b, +0x01,0x67,0xfd,0x41,0xc3,0x2c,0x9c,0x41,0xa4,0xe0,0xac,0x4f, +0x34,0x91,0xa3,0x57,0xd9,0x2d,0x45,0xb6,0x95,0x76,0xf9,0x5b, +0x5c,0xb8,0xea,0xad,0x17,0x5d,0x4a,0x36,0x31,0x79,0x27,0x59, +0xa3,0x0d,0x8b,0x0d,0xe7,0x3a,0xe4,0xda,0x70,0xaf,0xea,0x9f, +0x5c,0xbd,0x74,0x95,0xe0,0x55,0x2c,0x44,0xb2,0x27,0xce,0x9c, +0x2d,0x0b,0xaf,0x3c,0x53,0xae,0x21,0x16,0x60,0xf4,0x83,0x1d, +0xd0,0xb3,0x09,0xad,0xa9,0xb3,0xa5,0x11,0x65,0x61,0x65,0x56, +0xd1,0x9c,0x17,0xf6,0xde,0xab,0xed,0xba,0xa2,0xcc,0x91,0x4b, +0x2b,0x4f,0xbc,0x18,0x27,0xee,0x11,0xef,0x10,0x29,0xcd,0x28, +0x2a,0x08,0x87,0x6f,0x42,0x0d,0x1c,0x8d,0xe3,0x73,0x48,0x30, +0xeb,0x0f,0x83,0xcb,0xfe,0x4c,0xb9,0x79,0x3a,0x3c,0x34,0xe4, +0x4c,0x20,0xf4,0x40,0xf1,0x3a,0x9a,0x31,0x60,0x1f,0x90,0xe0, +0x7f,0xd2,0xd7,0x5f,0x03,0x23,0xc1,0x85,0x55,0x52,0x3c,0x7f, +0x15,0x71,0x56,0x92,0xc4,0x6e,0xc2,0xdf,0xb7,0x3b,0xb7,0xfc, +0xbf,0x10,0x7e,0x65,0xc7,0xce,0x85,0x45,0xc5,0x12,0x78,0x29, +0x0c,0x67,0x9b,0x1f,0xc1,0xa8,0xc5,0xcd,0x9d,0x4f,0xf0,0x24, +0xd5,0xdc,0x65,0xc1,0x76,0x7e,0x03,0xa3,0xba,0xc4,0xcb,0xf2, +0x0c,0xc0,0x93,0x85,0x7d,0x3c,0x83,0x5e,0x3f,0x43,0x68,0x33, +0x86,0xfe,0x64,0x4c,0x60,0xde,0x5c,0x60,0xc0,0x5e,0x0b,0x23, +0xcd,0x20,0x12,0xa7,0xb7,0xc3,0x74,0x88,0x51,0x60,0x0c,0x25, +0x0c,0x84,0xe7,0x7f,0xaf,0xf4,0xfc,0xfb,0x5e,0xe8,0x4c,0x39, +0x68,0x89,0xc5,0xc5,0x4e,0x38,0x7a,0x34,0x8e,0x2a,0xb3,0xe5, +0x9e,0x43,0x9f,0x7c,0xe8,0xa1,0xdc,0x43,0x2f,0xfa,0xba,0x87, +0xfe,0x2b,0xce,0x29,0x25,0xeb,0xce,0x1c,0x7c,0xd9,0xf1,0x42, +0x8f,0x0f,0x34,0xce,0xe8,0xc3,0xf7,0x20,0x0c,0xaa,0x07,0xa5, +0xd6,0xf9,0xb1,0x73,0x18,0x8b,0x13,0x2e,0x81,0x2d,0x6e,0xa6, +0x0b,0xb3,0x0a,0x2b,0xd2,0x0b,0xac,0xb2,0xb8,0x7d,0x5b,0xdd, +0x5d,0x5d,0xb7,0x57,0xec,0xe4,0x70,0x03,0x8c,0x35,0xc4,0xb1, +0x02,0x8b,0xb6,0x1d,0x30,0x81,0x02,0x93,0x67,0xac,0x47,0x99, +0x47,0x81,0x7b,0x96,0xad,0x3b,0x57,0xe0,0x91,0xbd,0x2d,0xcb, +0x8d,0xe9,0x9c,0x22,0x04,0x12,0x1a,0x38,0xf7,0x39,0x44,0xc0, +0x7e,0xa1,0x1e,0xf7,0x83,0xff,0x5c,0x61,0xbc,0x39,0xdf,0x8b, +0x96,0xaf,0xc2,0xde,0x56,0xe8,0x61,0x9a,0x46,0xd6,0xec,0xb7, +0xb7,0xff,0xa8,0x2b,0x23,0x66,0x61,0x44,0x07,0x44,0x84,0x53, +0x65,0x5a,0xd0,0xcf,0x06,0x4e,0xad,0x4e,0x55,0x70,0xb8,0xa7, +0x15,0x07,0x34,0x98,0xdc,0x61,0x60,0x2e,0x5c,0x63,0x71,0x80, +0xa0,0x07,0x03,0x08,0x87,0xbc,0x26,0xfa,0x73,0x7c,0xc0,0x97, +0xb3,0x47,0x9a,0x44,0xb0,0xa4,0xbb,0x42,0xdf,0xbb,0x2f,0x9e, +0x64,0xbd,0xd6,0x08,0xa7,0xb2,0x26,0x41,0xaf,0x79,0xa0,0x35, +0x57,0xec,0xa5,0xa9,0xfd,0x7c,0xca,0x7d,0xa7,0x9f,0x99,0x75, +0xd4,0x36,0xdd,0x65,0xcb,0x90,0x59,0xc5,0x14,0xe3,0xc0,0xaf, +0x7b,0xc5,0xf4,0xff,0xbe,0x57,0xfc,0x75,0x7c,0xc4,0x3a,0xc1, +0x4f,0x10,0xc6,0x42,0x5a,0x23,0xa6,0x51,0xb3,0x70,0x38,0x6b, +0xc9,0xf7,0xa3,0xf7,0x38,0xb9,0x59,0x6c,0x76,0xad,0xda,0xcc, +0x55,0x36,0x5c,0xbc,0x9e,0xd7,0xc1,0x54,0xd1,0x58,0x8f,0x8e, +0x6c,0xed,0xd6,0x76,0xeb,0x52,0xa7,0xa2,0x0a,0xce,0xa5,0xdc, +0xb0,0xd6,0x36,0x8f,0x89,0xc3,0xef,0xd9,0xed,0x81,0xe1,0xf9, +0x32,0xb0,0x33,0x45,0x17,0x5a,0x3f,0xf3,0xe0,0x15,0x29,0x19, +0xac,0x6a,0x31,0x84,0x41,0x4f,0xda,0x22,0x51,0x82,0x1a,0xb4, +0xd0,0xef,0x00,0x5b,0xf5,0x7d,0xf6,0x8f,0x71,0x8f,0x2c,0xe3, +0xb8,0x63,0x6b,0x76,0xcd,0x73,0x5c,0xc5,0xf0,0x7b,0xc0,0x9e, +0x2d,0x32,0x29,0x9e,0x9d,0xb6,0xaa,0xfe,0x02,0x77,0xe0,0x8a, +0xd3,0x6f,0xdb,0x9a,0x08,0xec,0xea,0x77,0xee,0x63,0xff,0x34, +0x1e,0x8b,0xd1,0xb8,0x85,0xc6,0xfc,0xfd,0xa8,0x6d,0x81,0xea, +0xd2,0x3a,0x07,0xc9,0x15,0x98,0x9a,0x02,0xb3,0xa1,0x52,0x13, +0x66,0xf0,0x89,0x04,0x8f,0x17,0x62,0xba,0x72,0x0f,0xa0,0x9b, +0xb9,0x49,0xbb,0xf3,0x33,0x62,0x55,0x21,0x2b,0xee,0x02,0xf8, +0xa2,0xba,0xab,0x58,0x56,0x36,0x4c,0xb5,0x0b,0xf0,0xdf,0xaa, +0x0a,0xaf,0xaa,0x76,0xd8,0xc2,0xe1,0x3e,0xbb,0x0b,0xfb,0x39, +0x8c,0x5f,0x3b,0x29,0xcd,0x90,0x3b,0x5f,0x98,0x9c,0x13,0x97, +0x4d,0x62,0x60,0x2b,0x5f,0x4b,0x27,0x57,0xc7,0x56,0x25,0xdd, +0x60,0xe0,0x5b,0x9c,0xc3,0x82,0x8e,0x29,0xea,0xa0,0x9d,0x05, +0xd8,0x09,0xcb,0x71,0x24,0x9d,0x68,0x2e,0x21,0x64,0xb9,0x3c, +0x25,0xbe,0x52,0xc6,0x2f,0xbe,0xd1,0x44,0xe3,0x2a,0xbc,0xcb, +0xee,0xba,0xe9,0x76,0x7d,0x7b,0xbd,0x83,0x3b,0x57,0x68,0x51, +0xbc,0x3e,0x73,0x2d,0x59,0xb3,0x97,0x3b,0x57,0xb0,0x87,0x1b, +0x77,0xb5,0xee,0x2a,0xb7,0xde,0xc3,0x5d,0x70,0xba,0x60,0x9e, +0x68,0xc9,0xc0,0x89,0x15,0x2c,0x58,0x36,0xa3,0x11,0x95,0x75, +0x31,0xb3,0x3d,0xed,0xba,0x3c,0x89,0x3b,0xb0,0x6e,0xc7,0xba, +0x2d,0xa6,0x0c,0xbe,0x32,0x87,0x15,0xc2,0x6d,0x74,0x32,0xeb, +0xa4,0x15,0x68,0x4f,0x09,0x47,0x78,0xeb,0x7f,0x39,0x49,0xf3, +0x47,0xe3,0x84,0xff,0xb7,0x93,0x34,0x24,0x88,0xc2,0x3f,0x21, +0x8d,0x15,0x6e,0x8f,0xe1,0x6f,0xd3,0x44,0x2c,0xf5,0x63,0x8b, +0xc7,0x5d,0xc0,0x61,0x09,0x38,0xbc,0x31,0x99,0x3b,0x0c,0x23, +0x76,0xc3,0x10,0xb7,0xcf,0x0c,0xbf,0x8e,0x2c,0xd6,0x52,0xe8, +0x91,0x0f,0xe3,0x13,0x40,0xcd,0x22,0x86,0x3b,0x8a,0xfd,0x3c, +0x70,0xfc,0xa6,0x09,0x24,0x2a,0x84,0x28,0x45,0xff,0xdf,0x35, +0xd2,0x7f,0x44,0x56,0xef,0xe0,0x14,0xb1,0x66,0x73,0xdc,0x97, +0x9a,0x4d,0x43,0x22,0x15,0x79,0x5f,0x58,0xc3,0x0f,0x43,0x9f, +0xae,0x7f,0xd2,0x70,0x91,0xf7,0x65,0xc1,0x40,0x58,0x88,0x0b, +0xa8,0x73,0xa6,0xe2,0x2d,0x5d,0xb5,0xf1,0xf1,0x44,0x37,0x96, +0x62,0x10,0x8d,0x8c,0x95,0xd8,0x8f,0x4e,0x4d,0xec,0x47,0x57, +0xad,0xea,0x47,0x47,0xbe,0xa7,0xb1,0xd1,0x5a,0xec,0x41,0xa7, +0x26,0xf6,0xa0,0xab,0x56,0xf5,0xa0,0x63,0xc5,0x1e,0x74,0x90, +0xfb,0xd7,0x79,0x23,0x25,0xf1,0xfc,0x17,0x9d,0xdf,0x9f,0xb8, +0xc1,0xff,0x41,0xe7,0x9f,0xfe,0xa2,0xf3,0x0f,0x8e,0x65,0xcd, +0x3a,0x19,0x85,0x11,0xef,0x8f,0x33,0x40,0xdd,0x0c,0xd5,0xa7, +0x83,0xba,0x39,0xaa,0xe3,0x24,0xc1,0x9f,0x86,0x49,0x04,0x79, +0xa7,0x83,0xe1,0x6b,0xaa,0x79,0xf8,0x6b,0x34,0x9c,0x4e,0xc1, +0xa4,0xe1,0x60,0xf8,0x16,0x0d,0x69,0x41,0x86,0x91,0x2c,0x38, +0xbc,0x46,0x07,0x1a,0xb4,0x87,0x4f,0x27,0xaf,0x28,0xc5,0xf0, +0xb7,0xe8,0x30,0x89,0xda,0x8e,0x6a,0xec,0x43,0xfb,0x7b,0x26, +0x1d,0x86,0x15,0x95,0x9c,0x61,0xc7,0xe2,0xf6,0x15,0x95,0x8c, +0x30,0x11,0xb7,0xb0,0x2f,0xaa,0x1e,0x5d,0x56,0x74,0x6c,0x2c, +0xe5,0x2c,0x8d,0x57,0x99,0xce,0x11,0xcf,0xb2,0xe4,0xf0,0xee, +0x5f,0xfd,0x38,0x18,0xd4,0x95,0xe6,0xff,0xdb,0x21,0x92,0x79, +0xca,0x43,0x24,0xd7,0xff,0x87,0x43,0x24,0xed,0xf8,0x4d,0x01, +0x89,0x5b,0x05,0x84,0x02,0xe2,0x28,0x2a,0x7e,0x83,0x78,0xee, +0xbe,0x4a,0x6c,0xa0,0xde,0x79,0xdb,0x84,0x16,0x82,0xf1,0x11, +0xeb,0xf5,0xad,0xd7,0x49,0xcf,0x93,0xe1,0x72,0xee,0x63,0xd4, +0x6f,0xd1,0xcf,0x12,0x22,0x0f,0x46,0x1e,0x0a,0x3f,0x7c,0x31, +0x8b,0xdb,0xf1,0xcc,0xfe,0x37,0xd7,0xcb,0x8e,0x3b,0xb9,0xd4, +0x2d,0xe9,0xb6,0x69,0xd6,0x56,0x01,0x16,0x41,0xf2,0xa0,0xf4, +0xab,0xe9,0xcf,0x13,0x9f,0x30,0xb0,0xb4,0x19,0x5f,0x8a,0x17, +0x79,0x1f,0x59,0xb8,0x67,0xf6,0xee,0x75,0x0c,0xbc,0x83,0x5c, +0xb6,0x6b,0x6a,0x4b,0xe7,0x54,0x1a,0xbf,0x15,0x1a,0x58,0x90, +0x35,0xa3,0x0c,0xc6,0xca,0x71,0x2c,0xca,0xcc,0x41,0x46,0x7c, +0xd9,0xcc,0xdf,0x24,0xc0,0x30,0x28,0xca,0x88,0x03,0xed,0x64, +0x60,0x92,0x60,0x40,0xde,0xf1,0x66,0xce,0xda,0xdb,0xca,0xd7, +0xd2,0x9f,0x3c,0x63,0xa8,0x32,0xdb,0xc0,0xa9,0x2a,0x3f,0xff, +0x45,0x68,0xbb,0xe1,0xd8,0x19,0xdd,0x42,0x3b,0x53,0xb5,0x44, +0xff,0x26,0xb4,0x9f,0xe2,0x92,0x92,0x92,0x45,0x30,0x57,0x2c, +0x8a,0x17,0xf3,0x0d,0x9f,0xe1,0x9f,0xac,0xf3,0x1c,0xdd,0xf9, +0xa8,0xbd,0x28,0x9b,0x84,0xb1,0x6f,0x1e,0xbe,0xfd,0x31,0x9f, +0xa0,0x2a,0x95,0x37,0xe1,0xf7,0x65,0x30,0x69,0xb6,0x78,0xe3, +0xeb,0xd4,0x67,0x0b,0xbf,0xb3,0xff,0x89,0x41,0x3b,0x54,0xb0, +0xf0,0xba,0x09,0x5f,0x53,0x6e,0x5d,0x44,0xed,0xa5,0xbd,0xc3, +0xd0,0x46,0x08,0x7d,0xaf,0xfc,0xfa,0x01,0xad,0x56,0xd2,0x31, +0x26,0x92,0x76,0xaa,0x22,0x21,0x89,0x2c,0x60,0x7d,0x21,0x4d, +0x38,0x47,0x62,0x32,0x7c,0xc7,0x6a,0x81,0xec,0x1d,0x45,0x42, +0xbc,0x8c,0x9d,0x08,0xb2,0xf7,0x14,0xcc,0x24,0xaf,0xc6,0x83, +0xec,0x03,0x51,0x8a,0xc9,0x4a,0x37,0x0b,0xfa,0xe2,0x66,0xff, +0xc6,0x69,0xff,0x35,0x79,0xf2,0xbf,0x73,0xda,0xe2,0x70,0xf6, +0xda,0x83,0xd2,0x1f,0x93,0xa1,0x17,0x03,0x06,0x94,0x9f,0xdb, +0xd1,0xad,0x7b,0xdd,0xdd,0xd3,0xdd,0xd3,0xdc,0x93,0xb7,0xb9, +0x70,0x39,0x87,0x72,0xf6,0x67,0xef,0x77,0xdb,0x66,0xbb,0x6b, +0xc3,0x81,0xf3,0x36,0xdc,0xf5,0x74,0x45,0x7e,0x65,0xc5,0x85, +0x03,0xe9,0x07,0xd2,0x0e,0x16,0x56,0x70,0x07,0x92,0xf7,0xa6, +0xec,0x49,0xc9,0x2d,0x4b,0xab,0x89,0xad,0x63,0x60,0x3c,0x75, +0xd2,0x3c,0xd8,0x30,0xd0,0x9e,0xd9,0x16,0xe4,0xe3,0xbb,0x79, +0xa4,0x3e,0x15,0x63,0x21,0xb9,0x45,0xb5,0x9f,0xbf,0xd0,0x12, +0x25,0x3b,0xdb,0x18,0x76,0x33,0xe4,0x33,0x83,0x5a,0x54,0x42, +0x55,0x7c,0xc3,0x59,0x05,0x23,0x9c,0x10,0x01,0xe3,0x38,0x2e, +0xdf,0x86,0x3d,0xe6,0x8c,0x63,0x60,0x25,0x14,0xb2,0xa1,0xb9, +0xa7,0xf3,0x42,0x0a,0x19,0x88,0xa6,0x02,0xdc,0xfd,0xb6,0x7b, +0x6f,0x61,0x60,0x11,0x76,0xb1,0x42,0x0e,0xe6,0xcf,0xb7,0xec, +0x5c,0xd6,0xb8,0x5e,0x0c,0xbd,0x47,0x58,0x3c,0xa2,0x05,0x47, +0x68,0x32,0x0e,0x47,0x58,0x38,0xf2,0x1e,0x8f,0xd0,0x8a,0xe1, +0x70,0xe4,0x13,0xf9,0x5b,0x8d,0xef,0xc1,0xaf,0x60,0xdf,0xa4, +0x13,0xed,0xf0,0x38,0x2f,0xa8,0x81,0xb3,0x3a,0x64,0x78,0xc8, +0x88,0xa8,0xce,0xe9,0xa0,0xdb,0x88,0xba,0xc0,0x98,0xe2,0x2b, +0xfa,0x60,0xf0,0xc1,0xe0,0x43,0xc7,0x19,0xbe,0x2e,0x83,0xc5, +0x41,0x94,0xbb,0x5f,0x64,0xae,0xec,0x09,0x7d,0x27,0xe3,0x51, +0x79,0x6b,0xd9,0xf6,0x4a,0xce,0xce,0x6d,0xed,0x36,0xe3,0x03, +0x0c,0x68,0xc9,0xb1,0x96,0x5e,0x9f,0x72,0xe8,0xaa,0x94,0xb8, +0x44,0x55,0x6c,0xac,0xd8,0x05,0xd5,0x3a,0x51,0xd2,0x25,0xc5, +0xc5,0x4a,0xa7,0x51,0xd6,0x9a,0x2a,0x9d,0x86,0xf8,0xda,0x70, +0xd1,0x69,0x36,0xe1,0x98,0xe9,0x4a,0x1d,0x79,0xff,0x53,0xe6, +0x27,0xe5,0xc9,0x80,0xf4,0xaf,0x4e,0xf3,0x0c,0x17,0x97,0x94, +0x2c,0x84,0xd9,0x01,0xaa,0x2d,0x2d,0xe8,0x3a,0xc1,0xfa,0x6f, +0xf7,0x76,0x3f,0xba,0x8d,0xc1,0x75,0x82,0x49,0x6b,0x07,0xdf, +0xdf,0xb0,0x9d,0x37,0xc1,0xd3,0x54,0xcc,0x85,0xe8,0x9c,0xa8, +0x2c,0x06,0x77,0x61,0x28,0x0b,0xbd,0xf9,0xfe,0xd8,0x9b,0x16, +0xfa,0xe3,0x7c,0x82,0x37,0xe4,0xb5,0x78,0x07,0x5b,0x04,0x3f, +0x85,0x05,0x3b,0x18,0xa0,0xc0,0x01,0xb0,0xc2,0x0c,0x57,0x60, +0x7f,0x33,0xe8,0x8f,0x76,0xda,0x82,0xbc,0xf9,0x06,0x6c,0xe4, +0xd5,0x68,0x41,0xbd,0x41,0x4c,0x88,0xbe,0x6a,0x9c,0xa9,0x4a, +0xa2,0x0d,0xb4,0x04,0x89,0x08,0x38,0xc4,0x0f,0x16,0xa3,0x1a, +0xb1,0xaf,0xe3,0x7d,0xda,0x87,0xb0,0x97,0xc4,0xbe,0xd8,0xaf, +0x49,0xb4,0xcb,0xa2,0x1f,0x18,0x83,0x96,0x8a,0x61,0x69,0xf0, +0xfa,0x0a,0x16,0x6b,0x8f,0xe2,0x37,0x46,0xa8,0x26,0xad,0xda, +0x58,0xf3,0x73,0xfa,0xbb,0x68,0xd0,0x12,0x3b,0x3a,0x25,0x92, +0x31,0x4b,0x30,0x91,0xfc,0x41,0x5d,0x8c,0x4d,0xac,0x17,0xdb, +0x12,0x25,0xd2,0xb0,0x09,0x8f,0xb3,0x38,0x59,0x6c,0x91,0x4d, +0xe1,0x74,0x65,0xe7,0xa9,0xd3,0x1d,0xb7,0x34,0x61,0xb2,0xd8, +0xce,0xcf,0x03,0xbd,0x59,0x48,0x81,0x09,0x98,0x42,0x40,0xf1, +0x82,0xb2,0x42,0x20,0xe0,0x8b,0x3c,0xd5,0x84,0x3e,0x8d,0x44, +0x8d,0xff,0x47,0xa9,0xbe,0xd0,0xaf,0xde,0x0a,0xbb,0x7f,0x17, +0xcb,0x58,0x23,0x94,0x87,0x87,0x8f,0xbf,0x15,0xe9,0x66,0x4f, +0xd0,0xa5,0xca,0x63,0x4b,0x13,0x0a,0x93,0x77,0x5c,0xe4,0x56, +0x38,0x63,0xcf,0x6d,0x33,0x3c,0x13,0xac,0xb8,0x82,0x88,0xd2, +0xb3,0xa5,0x31,0x0c,0x4e,0x11,0x83,0x6f,0x3f,0xda,0x67,0xaa, +0x0b,0x0e,0x9d,0x89,0x7d,0xf3,0x8d,0xb9,0xef,0xde,0xe5,0xff, +0x1e,0x26,0x1e,0xf7,0xf2,0x6e,0xe2,0x2d,0xa9,0x48,0x42,0x39, +0x83,0xa4,0x3f,0xa0,0x6e,0x69,0xb9,0x04,0x16,0xf3,0xdf,0xb3, +0x72,0xac,0xa7,0x30,0xd6,0x0e,0x87,0x13,0x7a,0xba,0x40,0x5a, +0x6a,0x05,0x83,0x61,0x66,0x31,0xf4,0x08,0x05,0x3d,0xc2,0x73, +0xce,0xe0,0x8a,0x7c,0xf2,0x89,0xbd,0x70,0x5e,0x09,0x61,0x3a, +0x03,0x61,0xa9,0x2b,0xb0,0x70,0x56,0xf3,0x37,0x98,0xc4,0x06, +0x4c,0xf5,0x1a,0xbb,0x67,0xde,0xc5,0xfd,0x5c,0xe6,0xcf,0xf1, +0x1f,0xcf,0xfe,0x2e,0x96,0x0f,0x57,0xb0,0x69,0xcf,0xa3,0xde, +0x85,0xfe,0x6a,0x13,0xc3,0x1d,0x9f,0xe1,0x3f,0xfd,0xc0,0x62, +0x82,0x3c,0x79,0xaa,0xfc,0xce,0x49,0x6f,0x7f,0x1f,0x55,0x56, +0x82,0x69,0x42,0xe6,0x3f,0xc0,0xd7,0x2f,0xab,0xf6,0x36,0xce, +0x25,0xe1,0xa1,0x94,0x3f,0xc6,0xa2,0x03,0x1f,0x05,0x0e,0xb4, +0x60,0x8b,0xd3,0xd8,0x0f,0xbc,0x74,0x3c,0x0d,0xbd,0x09,0x12, +0x2e,0x0f,0x92,0xf0,0x03,0x6f,0xd6,0x0b,0xef,0xac,0x6f,0x09, +0x13,0xe9,0xc9,0x27,0xc2,0xac,0x40,0x2b,0x14,0x2c,0xa2,0x60, +0x46,0xb4,0xc6,0x98,0x4b,0xd0,0x8b,0xce,0x3a,0x73,0xfe,0x74, +0xfa,0x69,0x06,0x47,0xc3,0x03,0x16,0xdf,0xbc,0x81,0x37,0x14, +0x6a,0xf5,0x99,0x86,0x6f,0x7e,0xa1,0x71,0x42,0x1f,0x78,0xa3, +0x43,0x8d,0x0d,0xc4,0x41,0x41,0x48,0x07,0x13,0x63,0x81,0x9f, +0xc0,0x16,0x84,0x16,0x87,0x95,0x84,0x33,0x33,0x9a,0xdf,0xd3, +0xa5,0x11,0x25,0x91,0x39,0x91,0x41,0xf5,0xdc,0x8e,0xc0,0x2d, +0x81,0x6e,0x81,0xcc,0x9b,0x77,0xb5,0x5a,0x3f,0x43,0xef,0x7a, +0xec,0x7d,0xdf,0x7c,0x39,0xf6,0xb6,0x86,0xde,0x33,0xc6,0xd9, +0x7e,0x1c,0x4b,0xbb,0x04,0x39,0x07,0xbb,0x1d,0x67,0x96,0x9d, +0x25,0x4f,0x1a,0x24,0x3e,0xa9,0x58,0x14,0x33,0xea,0x8f,0xa6, +0x09,0x2a,0x36,0x34,0xc0,0x42,0xe9,0x95,0xac,0x1b,0x4e,0xd4, +0xc5,0xc1,0xc5,0xb6,0xdc,0xe5,0x3f,0xd2,0x3e,0x84,0xbe,0x52, +0x85,0xc1,0x88,0xee,0xe7,0xbc,0x8e,0x8b,0x8a,0x8a,0x24,0x3c, +0xcb,0x13,0x0d,0xb8,0x64,0xdb,0xac,0x35,0xba,0xd2,0x72,0x27, +0xc9,0xc3,0x37,0xa5,0x1f,0x41,0x5f,0x33,0xeb,0xb5,0x31,0x3d, +0xef,0xe4,0x1c,0xbf,0x75,0x52,0xe7,0x60,0x4f,0x9f,0xcd,0x23, +0x37,0x50,0xb1,0xe6,0x92,0x0e,0xaa,0x23,0x3b,0xed,0xda,0x59, +0x59,0xcc,0xc3,0xd3,0xbf,0xbf,0xd6,0x7c,0x8f,0x99,0x56,0xd7, +0x69,0x38,0x26,0x28,0xd8,0x66,0x2c,0x8c,0xa5,0x6f,0x19,0xad, +0x21,0xcc,0x33,0xdd,0x1c,0xe2,0xe8,0xbd,0x33,0xe6,0x9b,0xe2, +0x82,0x75,0xe2,0xd9,0x53,0x9b,0x1f,0xef,0xdd,0x8c,0xfe,0xcc, +0x84,0x53,0x51,0xd8,0xe3,0x91,0x1e,0x38,0xea,0x88,0x87,0x15, +0x16,0xdd,0x9a,0xd5,0xb2,0xfb,0x15,0x21,0x7e,0x95,0xb0,0x92, +0x6d,0xa8,0x69,0x6a,0x2d,0x55,0xb8,0x14,0x70,0x6e,0x96,0x96, +0x72,0x07,0x17,0xc6,0xad,0x7d,0xdf,0x95,0x36,0xcd,0x44,0xd8, +0x08,0x6f,0xf1,0x10,0x1d,0x95,0x1e,0x99,0x11,0x9e,0x6e,0x7a, +0x96,0x0b,0xde,0xef,0xe7,0xe1,0xbb,0x8b,0x41,0x23,0x7c,0x0b, +0xee,0x82,0x2e,0x4a,0xc4,0xb3,0xab,0x2f,0xa8,0xfa,0x78,0x51, +0x79,0x25,0x44,0xd0,0xd1,0xd8,0xe3,0x25,0x01,0xe7,0x21,0x73, +0x73,0x1a,0x38,0x83,0x72,0xe3,0xe6,0x8d,0xed,0x8c,0x10,0x08, +0xed,0xdd,0xb5,0xc9,0xc4,0x97,0x83,0x45,0x0d,0xd4,0x82,0x83, +0x55,0x44,0x79,0x8a,0x5c,0x79,0xe6,0x77,0x98,0xb2,0x88,0xe1, +0xdf,0x8e,0x45,0xb5,0xf1,0xa9,0xdd,0xc0,0xf2,0x93,0xaa,0xa6, +0xd2,0x8e,0x57,0x67,0xa7,0xe3,0xe7,0xd7,0x34,0x7c,0xc6,0xb1, +0xec,0x44,0xfc,0xfc,0x9e,0x9e,0x8a,0x67,0x58,0x6b,0x98,0x4c, +0xef,0xd1,0xd6,0xd7,0x1e,0xad,0x9f,0x6f,0xc7,0x01,0x7d,0xf7, +0x09,0x0c,0x16,0x6f,0xf7,0x2a,0x53,0x1e,0x6e,0xf7,0x61,0xfd, +0x62,0x03,0x43,0x8e,0xf9,0x1c,0x3b,0x46,0x3e,0x59,0x02,0x6a, +0x2d,0x84,0xc6,0x28,0xcf,0x47,0xce,0x55,0x35,0x98,0x19,0xea, +0x88,0x32,0x65,0x83,0x19,0x5b,0xee,0xa5,0xb2,0x43,0x43,0xf8, +0x7b,0x55,0xf7,0x8f,0x9c,0xee,0xcf,0x7e,0x8c,0x03,0x8b,0x2a, +0x25,0x7c,0x0b,0x0c,0x66,0x9b,0x70,0x01,0xad,0xb8,0x5a,0x7b, +0xb7,0xfc,0xa9,0xcd,0x79,0x6e,0xe3,0x34,0xd3,0x85,0x7a,0xab, +0x19,0x7d,0xa2,0x9a,0x67,0x35,0xe2,0xac,0x8f,0x26,0xe3,0x50, +0xd7,0x12,0x74,0x71,0x10,0x3a,0x5a,0xc0,0x05,0x6a,0xd6,0x82, +0x09,0xfa,0x28,0xb1,0xc8,0xb4,0xe6,0x32,0x63,0xcf,0xc7,0x9d, +0x8f,0x63,0x84,0x7e,0xad,0x0a,0x68,0x30,0x6b,0xe3,0x8d,0xe9, +0x28,0xbf,0xa2,0x62,0x8f,0x42,0xa7,0xa2,0x4d,0xd9,0x1a,0x6e, +0x9b,0x0b,0x76,0xe7,0xef,0xc8,0xf1,0xd0,0xc0,0x1a,0xaa,0xb5, +0xac,0xb1,0xea,0x62,0x2d,0x83,0x3b,0xb1,0x51,0x64,0x5e,0x0d, +0x22,0xf3,0x6a,0xb0,0x64,0xc9,0x8b,0x81,0xd8,0x40,0xa9,0xfd, +0xc3,0x0c,0x5e,0xb3,0x93,0xf8,0x1e,0x3f,0x34,0xce,0x7b,0x6a, +0xbc,0x00,0x8b,0x9f,0x9a,0x2e,0x98,0x6f,0xf9,0x4c,0xe8,0x31, +0xcb,0xa2,0x48,0xe8,0xd5,0xda,0xca,0x1f,0x6c,0x11,0x0e,0x42, +0x28,0x0c,0xa5,0x8e,0x2f,0xf6,0xb0,0x5f,0xee,0x92,0xe7,0xc4, +0xbd,0xa8,0x2d,0x69,0x0b,0xfb,0x83,0x79,0x8c,0xfd,0x28,0x87, +0xc4,0xa3,0x55,0xd2,0x0f,0x54,0x7e,0x42,0x6c,0x9e,0xec,0x36, +0x6d,0x7b,0x4e,0xb2,0x70,0x36,0x7d,0x24,0x30,0x2c,0x59,0xf6, +0x09,0xd6,0xd1,0x5d,0x16,0xb0,0x94,0x15,0x79,0xbc,0x7a,0x33, +0xaa,0xab,0xf2,0x86,0x4a,0xbc,0x57,0x15,0x05,0x4e,0xc3,0x11, +0x04,0xa9,0xee,0x8b,0x45,0x81,0x62,0x5a,0x25,0xf3,0xeb,0x3e, +0xeb,0x0d,0x1c,0x55,0x58,0x66,0x00,0x43,0x03,0x94,0x47,0x4c, +0x34,0xf8,0x1c,0x98,0xcc,0x62,0xf1,0x73,0xf1,0x50,0xe7,0x37, +0x7d,0xe6,0x61,0xf1,0x0f,0x34,0x14,0xe3,0x28,0x76,0x26,0x16, +0xbf,0x22,0x73,0x11,0xa1,0x3c,0x80,0xf4,0xa5,0x30,0xfd,0x3f, +0xfe,0x90,0x47,0x62,0xe5,0xe1,0x52,0x98,0x1c,0xa0,0x3a,0xbf, +0xc0,0xaf,0x84,0x2c,0x56,0xdc,0xe5,0x3c,0x66,0xc6,0x57,0x28, +0x68,0x9c,0x8b,0x07,0xd9,0xd4,0xb2,0x94,0xba,0xf8,0x1a,0xf3, +0x44,0xce,0xd3,0xea,0xa0,0xe5,0x0e,0x6b,0x06,0x9f,0xe1,0x94, +0xd6,0x37,0xbc,0xe9,0x94,0x36,0x98,0x42,0xa1,0x90,0xcd,0x1e, +0xab,0x38,0x5c,0x75,0xa0,0xd0,0xea,0x20,0x97,0xe6,0x9a,0xe4, +0x72,0xce,0x89,0xf9,0x59,0x9b,0x1d,0x8f,0x4e,0xf8,0xa1,0x1d, +0x6a,0x61,0x3c,0x7e,0xbe,0x44,0xe8,0xcd,0x6c,0xdc,0x43,0x28, +0x6d,0xbc,0x89,0xd8,0x5b,0x33,0x99,0x50,0x13,0x48,0xc7,0xdd, +0x1f,0x68,0xf1,0x60,0x43,0x0c,0x8b,0x33,0xa8,0x0b,0x3f,0x64, +0xbc,0x4b,0x78,0xcc,0xe0,0x4b,0x2a,0x3c,0x39,0x2c,0x29,0x34, +0xc1,0xf4,0x0c,0x77,0x74,0xf9,0x8e,0x19,0xee,0x73,0x19,0xf8, +0x48,0x05,0xee,0x0d,0xd8,0x17,0xb0,0x9f,0x11,0xa4,0xd6,0xe0, +0x43,0x19,0x5a,0xce,0x71,0x9c,0xe2,0x61,0x06,0x03,0xb9,0x6e, +0x66,0x2c,0x66,0x45,0xc6,0xfe,0x2d,0x94,0xfe,0xb7,0x1c,0xe5, +0xcd,0x8f,0xe7,0x55,0x24,0x3e,0xb9,0x85,0x3f,0xfe,0x57,0x99, +0xd8,0x98,0xec,0xbc,0x58,0xf7,0x1b,0xa9,0xd7,0xb2,0x15,0x05, +0x1a,0xb1,0x47,0xce,0x1d,0x8a,0x3e,0xa4,0x67,0xa7,0xbd,0x51, +0xcb,0x23,0xc5,0x86,0xfb,0x98,0xf7,0xae,0xfe,0x4a,0x6d,0xf4, +0xfe,0xb3,0xfb,0x22,0xf7,0xcd,0xd5,0x43,0x75,0x7d,0x1c,0xe5, +0x96,0x6a,0xc5,0x81,0xb4,0x0c,0x86,0x5e,0x7f,0x70,0x99,0x09, +0xdd,0x77,0xe6,0xc0,0x01,0xcd,0xb5,0x27,0x8f,0xec,0x33,0x1d, +0xb9,0x88,0x8a,0x37,0x97,0xdc,0xa4,0x7e,0xc9,0xab,0xfc,0xf8, +0x9b,0x1d,0xa8,0xaf,0xfc,0x4d,0x96,0x91,0x94,0x9a,0x9c,0x94, +0xca,0x64,0x52,0x49,0x68,0xf5,0x00,0x57,0x02,0x21,0x92,0x25, +0x17,0xb9,0xd5,0x37,0x2d,0xef,0x6e,0x7e,0xdc,0x5a,0xd6,0xa1, +0x28,0xaa,0xde,0x54,0xc2,0x6d,0xb5,0x37,0xb7,0xd9,0xb8,0xf5, +0x60,0x8b,0x77,0x47,0xd0,0x75,0xb1,0xf9,0xa8,0xb0,0x05,0x96, +0xb1,0x67,0x33,0x62,0x0a,0xa3,0x8b,0x18,0xc8,0xa3,0x82,0xf7, +0xfa,0x6f,0xf5,0x73,0x23,0xb8,0x19,0xcd,0x6f,0x62,0x83,0xc4, +0xe4,0x85,0x8a,0x9a,0x7d,0x23,0xee,0x50,0xca,0xcd,0xc9,0xdc, +0xf6,0xb7,0x84,0xde,0x22,0xf4,0x91,0x50,0xb7,0x14,0x07,0x11, +0xe8,0xbb,0x44,0x02,0x72,0xa8,0x48,0xcc,0x12,0x9a,0x09,0xf4, +0xa9,0x8a,0xc2,0xdb,0x70,0x7a,0x41,0x89,0xa4,0x73,0x24,0x99, +0xd2,0x66,0x1c,0x0b,0x46,0x66,0x04,0x56,0xc8,0xf0,0xf4,0x23, +0x00,0x26,0xdb,0x8c,0xda,0xda,0xb8,0xa0,0xd0,0x9a,0x7b,0x05, +0xd3,0xd2,0xa0,0x5f,0x04,0x59,0xd1,0x11,0x42,0x47,0x13,0xdf, +0x41,0xfe,0x33,0xf6,0x3f,0x8f,0xfd,0xef,0xe2,0x94,0xb2,0x7a, +0x6e,0x21,0xcc,0x75,0x04,0xed,0x63,0x30,0x92,0xc1,0xf2,0x39, +0xac,0x5f,0xbc,0x6f,0xbc,0x4f,0x42,0x9d,0xa2,0xe6,0x7e,0xda, +0x75,0xa6,0x1a,0x2f,0xda,0x80,0x3f,0x7d,0xd0,0x6a,0x9b,0x85, +0x8b,0xfd,0xae,0x82,0x9d,0x79,0xbb,0x33,0x37,0xbb,0x73,0x95, +0xf6,0xd5,0x16,0xc5,0xe6,0x0c,0x2e,0xb0,0x06,0x8e,0x3a,0x86, +0x12,0x73,0xb2,0x62,0xfb,0x63,0xdf,0xdc,0xff,0x8f,0xb2,0xaf, +0x80,0xaf,0xe2,0x4a,0xdb,0xa7,0x2d,0x77,0x66,0x16,0x2b,0xdb, +0xed,0x49,0x27,0xd0,0x26,0x14,0x2d,0x2e,0xc5,0x2d,0x40,0x70, +0x49,0x42,0xdc,0xdd,0xdd,0x9d,0x38,0x09,0x12,0xe2,0xee,0xee, +0xee,0x42,0x3c,0x04,0x82,0x3b,0xa5,0x2d,0xa5,0xae,0xb4,0x05, +0x2a,0xef,0x64,0xdf,0x61,0xbf,0xff,0x99,0x9b,0x20,0xbb,0xfb, +0xfd,0xfe,0xbb,0x1f,0xf7,0xc7,0xcd,0xdc,0x99,0x64,0xee,0xcc, +0x9c,0x73,0xde,0xf7,0x79,0x5e,0xa5,0xcf,0x8f,0x05,0xa6,0x03, +0x26,0x25,0xfd,0xc1,0x25,0x8a,0x4a,0x54,0xb0,0xa5,0xeb,0xca, +0x7e,0x62,0x5a,0xb3,0xf3,0x9b,0x95,0x05,0xeb,0x87,0x6c,0x84, +0x96,0xd7,0x2e,0x0f,0xbd,0x0e,0x5f,0xbe,0xf2,0x62,0xd1,0x83, +0xf4,0x8b,0x94,0x93,0x4f,0xd4,0x5b,0xc8,0x7e,0xc1,0x12,0xf9, +0x89,0x3c,0x74,0x09,0x98,0x12,0x49,0xc5,0x85,0xc9,0xa9,0xda, +0xf3,0x3c,0xf4,0xd2,0x09,0x15,0xf7,0x92,0x27,0xde,0xa5,0xa2, +0xbf,0x51,0x56,0x2b,0x68,0x90,0x67,0x6f,0xb0,0xae,0x51,0x2e, +0x51,0x2e,0xc7,0xb3,0x8e,0xf2,0x5f,0xe6,0x7f,0x51,0xf4,0x49, +0x19,0x87,0x3a,0xc3,0x63,0x97,0xdb,0xfa,0xf1,0x73,0x5d,0x56, +0xa8,0xc0,0x22,0xd2,0xf2,0x7d,0xc5,0xaf,0x39,0x9f,0x70,0x3d, +0x18,0xf7,0x8f,0xd7,0x86,0xc7,0x2e,0xc2,0x6c,0x36,0x50,0xc5, +0x75,0xb1,0xf9,0xe2,0xfe,0x5d,0xed,0x1b,0x4e,0x6d,0xe2,0xf6, +0x84,0x39,0x68,0x28,0x99,0x32,0x19,0x1a,0xb2,0x0e,0xe6,0xd3, +0x9a,0xd1,0xef,0x7f,0xb1,0xbc,0xaf,0x77,0x47,0x59,0xdc,0x24, +0x25,0xa0,0xac,0x87,0xe9,0xb8,0x9e,0xd5,0x9f,0x8c,0xeb,0xa9, +0x26,0x5f,0xcf,0xa2,0xa3,0x54,0x67,0x7c,0x11,0x63,0x15,0x62, +0x15,0x66,0x19,0xc6,0x49,0xb9,0x81,0x52,0x2d,0x06,0xc5,0x3f, +0x07,0xe6,0xfc,0x17,0x49,0xf4,0xf1,0x2f,0x62,0xf9,0x96,0xd4, +0x37,0x1d,0x86,0xb9,0x13,0x49,0x6b,0xc2,0x1c,0xe8,0x21,0x85, +0x9b,0x81,0xd9,0x0b,0x4b,0xf6,0x97,0x51,0xcc,0xb0,0xec,0xca, +0x07,0xb7,0x9d,0x2e,0x72,0x98,0xaa,0x0b,0xeb,0x19,0x63,0x8d, +0xad,0x66,0xc8,0x9a,0x96,0x50,0xee,0xf0,0xfe,0xf0,0x1f,0x97, +0xcb,0x7e,0xe0,0x60,0x07,0x7a,0x53,0x89,0xfa,0xb9,0x0e,0x0b, +0xc9,0xa6,0x24,0x68,0xa5,0xe7,0x1a,0xfb,0x0f,0xeb,0x57,0x54, +0xcd,0x29,0x98,0xdb,0x97,0xc3,0xfb,0xfe,0x61,0x0b,0x9c,0xc7, +0x95,0x92,0x0b,0x95,0x3f,0xe6,0x3d,0xe6,0xbe,0x4d,0x21,0xbe, +0x2b,0xdd,0x3e,0xb4,0x5a,0xdb,0xba,0xa2,0x6e,0x6e,0xd9,0xbc, +0x9e,0x3c,0xde,0xeb,0x91,0x39,0xbc,0xe9,0x7a,0xa9,0xfa,0x5a, +0xe5,0x37,0x05,0x3f,0x70,0x62,0x9c,0xd8,0x4b,0x84,0x18,0x58, +0x2e,0xee,0xfa,0x90,0xa5,0x0a,0xf2,0x36,0xd3,0x9c,0x95,0xdd, +0xa6,0x2c,0x78,0x62,0xb6,0xd8,0xcd,0x52,0x0d,0xf6,0x84,0xb8, +0xd5,0x5a,0xd7,0x3b,0x94,0xb9,0xd8,0xf3,0x75,0x2e,0x0d,0x76, +0xa5,0x8e,0x5c,0x05,0xbe,0x45,0xdc,0xea,0x6d,0xea,0xed,0x2a, +0x9d,0xed,0xf8,0x7a,0x97,0x46,0x9b,0x32,0x7b,0x4e,0x1a,0x4f, +0x4a,0x08,0x73,0xe4,0x2e,0xa9,0x70,0x3a,0x9e,0x33,0x61,0xda, +0x20,0x05,0xa0,0xff,0x39,0x74,0x38,0xf5,0x45,0xae,0xd5,0xc1, +0xe6,0x06,0x59,0xb5,0x54,0x13,0xbe,0x42,0xa8,0x86,0x0a,0x56, +0x9c,0x4e,0x09,0xf5,0xce,0x05,0xb0,0x93,0x05,0xa9,0xba,0xf9, +0x7c,0xd8,0xf9,0x94,0x19,0xa0,0x1b,0xb0,0x13,0x5e,0xc3,0x9d, +0xec,0xe7,0x52,0x13,0xaa,0xa2,0x2f,0x8e,0xac,0xc3,0x58,0x1d, +0xd8,0xc8,0x44,0xa2,0xc1,0x0a,0x7c,0x1d,0x15,0x54,0xeb,0x74, +0xf8,0x3f,0xce,0x3f,0xfc,0xba,0x05,0xfe,0xc6,0x41,0x36,0x73, +0x4a,0xff,0xf8,0xc1,0x48,0x2b,0xce,0x2e,0xd2,0x3f,0xd8,0x4a, +0x6a,0x8b,0x97,0xa1,0x2d,0x83,0x85,0xcc,0xa5,0xda,0x8a,0xfe, +0x74,0xe5,0xf4,0xfe,0x84,0xdb,0x12,0xdf,0xb8,0xc4,0x24,0x56, +0x27,0xd4,0xc5,0xd2,0xc5,0x09,0x94,0x30,0xf5,0x0a,0xd6,0x74, +0x5e,0x46,0xc4,0x86,0x86,0x4d,0x64,0x6b,0x30,0x83,0xcf,0xc3, +0x32,0xde,0xd7,0xa6,0xd3,0x7e,0x5c,0xe6,0x2e,0x95,0x1b,0xcc, +0xef,0x4a,0x06,0x73,0xb9,0xd0,0xad,0x38,0xf7,0x22,0x19,0xe8, +0x81,0x94,0x13,0x2d,0x13,0x6a,0xb4,0x09,0x3c,0x46,0xff,0xaf, +0xa0,0xa0,0x1f,0x0b,0xbe,0xd5,0x5c,0x85,0x29,0xba,0x90,0xf2, +0x21,0xba,0xe3,0x63,0xd0,0x67,0x2d,0x37,0x2e,0x5b,0x87,0xef, +0xee,0xac,0x32,0xa0,0x74,0xf0,0xde,0xe3,0xef,0x0b,0x7f,0xe1, +0x12,0xf1,0xca,0x10,0x5c,0x49,0x64,0xf2,0x96,0x7e,0xbb,0x0a, +0x14,0x36,0xd6,0xf4,0xf0,0xf8,0xf6,0x27,0xeb,0x3e,0xb3,0x7e, +0xc0,0x6d,0xa6,0x73,0x03,0x4f,0xe2,0x66,0x38,0xc9,0x82,0x07, +0x9e,0x24,0x70,0x12,0xb6,0xe3,0x49,0x16,0x9f,0xc1,0x11,0x52, +0x62,0x5a,0x68,0x90,0xa3,0xd5,0x91,0xcb,0x07,0x0e,0x79,0xf7, +0x7b,0x74,0x48,0x75,0x19,0x77,0x92,0x8a,0xb3,0x85,0x03,0x59, +0x03,0xc6,0xd9,0x7c,0x88,0xae,0xaf,0x9e,0xbb,0x09,0xc5,0x28, +0x5b,0x60,0x19,0x81,0x13,0x03,0x78,0x82,0x6a,0xb8,0x8b,0xf1, +0x17,0x12,0xfa,0x13,0xb2,0xfc,0x33,0xe9,0xab,0xb9,0x86,0xd7, +0xbb,0x69,0x30,0xa2,0x35,0x68,0xe5,0xc4,0x97,0x7a,0x94,0xb8, +0x17,0xbb,0x6d,0x8c,0x5a,0x12,0xbd,0x34,0xa6,0xb2,0xa7,0xac, +0xbf,0x78,0x90,0x83,0xcc,0xf2,0x73,0xb0,0x1f,0xd3,0x7f,0x52, +0x5f,0x8a,0x91,0xb8,0x7f,0xd8,0x8d,0xb2,0x74,0x1f,0x3d,0x37, +0x2d,0x07,0x3d,0xee,0x94,0x8b,0xcb,0x29,0xd7,0xd9,0x89,0x3a, +0xb7,0xcf,0x7c,0x12,0x77,0x3f,0x5e,0x91,0xca,0x81,0x63,0x3a, +0x70,0x0c,0x17,0x62,0xae,0x8e,0xf0,0x68,0x00,0xe9,0xe8,0x29, +0xd3,0x75,0x11,0x91,0x7d,0xfc,0xa5,0x8b,0xf2,0x5f,0x3c,0x4d, +0x21,0x13,0x4b,0xe4,0x2d,0xaa,0xbb,0xa4,0xf5,0x9d,0x38,0xe1, +0x69,0x7a,0xbe,0xbe,0xef,0x8d,0xfb,0x0d,0xf3,0xa1,0x96,0x88, +0x47,0x9e,0x0a,0x52,0x4a,0x66,0x83,0x10,0x20,0x9d,0x92,0x62, +0xc5,0x10,0x09,0x2b,0x32,0x40,0xe7,0x03,0x33,0x8e,0x16,0xdf, +0xd1,0xa1,0x53,0x2c,0xf4,0x55,0xdb,0x99,0x64,0xdd,0x91,0x73, +0xac,0x21,0xa1,0x7c,0x62,0xd5,0x7d,0x82,0xbb,0x9a,0xe8,0x29, +0x7f,0x58,0x4b,0x86,0xb0,0xfe,0x09,0x14,0xf6,0x8b,0x36,0x10, +0x0c,0x1c,0xae,0x84,0x4c,0x58,0xf9,0xdb,0xc0,0xbc,0x3f,0xb4, +0xde,0xc7,0xa5,0x7f,0xe8,0xbc,0x8f,0xdc,0x1f,0x9a,0xef,0xaf, +0xd7,0xf9,0x1c,0x1b,0x41,0x67,0x01,0x66,0x69,0xc1,0x71,0xd6, +0x6e,0xd7,0xdc,0x9d,0xb8,0xe0,0x70,0xb9,0x0e,0x0f,0x0b,0x2e, +0x01,0xf3,0x69,0x26,0x1d,0x74,0x6c,0x18,0x81,0x86,0x44,0x26, +0x63,0x19,0x4c,0xdb,0x05,0x0b,0xf6,0x4a,0x35,0xb6,0x94,0x2f, +0xe2,0x1b,0x37,0xac,0x6e,0x73,0x4f,0xe1,0x5b,0x82,0x4b,0x7f, +0xa7,0x2a,0x54,0xe2,0x34,0x56,0x94,0xd3,0xbc,0x88,0xfa,0x7d, +0xef,0xe9,0xc0,0xfc,0xf1,0x6b,0x9e,0xa9,0x23,0xb7,0x4b,0x53, +0x84,0xbb,0x60,0x93,0x5c,0x52,0x5c,0x7a,0x5a,0xf2,0x34,0x7e, +0x62,0x59,0x24,0x4d,0x5c,0xf3,0x15,0x5c,0x5d,0xdf,0x28,0x6b, +0x17,0xc2,0x89,0x38,0x4d,0x08,0x16,0xa6,0xb1,0xe2,0x1e,0xfc, +0x98,0x40,0x85,0x30,0x9d,0x3e,0x64,0xb4,0x78,0x4a,0x52,0xd2, +0xe2,0x63,0xd3,0x22,0x60,0xda,0x7a,0xbe,0xb2,0x0d,0x99,0xfb, +0x61,0xc9,0x51,0xa7,0xc3,0x43,0x15,0x23,0xc2,0xa2,0xe3,0x64, +0x59,0x45,0x49,0x95,0xcd,0xb3,0x2a,0x74,0x3d,0xd8,0xed,0xd6, +0x0e,0x6b,0x0c,0x95,0xca,0x4c,0x07,0x2b,0x9a,0xaa,0xf2,0x0b, +0x15,0xa1,0x0d,0x83,0x89,0xd8,0x82,0x8f,0xd4,0x75,0xc7,0x3e, +0xe8,0xd7,0x62,0xc4,0xb7,0xa1,0x83,0x60,0xc7,0x02,0xe8,0x60, +0xa9,0x32,0xef,0x20,0xd0,0xf1,0x14,0x3b,0xa4,0x34,0x9b,0x0e, +0xba,0xd4,0x24,0x61,0x3d,0x49,0x28,0x23,0x0f,0xdb,0xda,0xab, +0xcb,0xab,0x53,0x53,0x13,0x4f,0xa4,0x45,0xc1,0x8e,0x39,0x7c, +0x79,0x53,0x99,0xf5,0x0f,0x2d,0x5d,0x75,0xb5,0xb5,0x8a,0x29, +0xa9,0xf1,0xa7,0xd2,0x22,0xa5,0x36,0x0c,0x7c,0x7d,0x07,0x6e, +0x79,0x7a,0x2c,0x25,0xf2,0x4c,0x58,0x98,0x62,0x68,0x28,0xbd, +0x88,0xc2,0xda,0xd4,0xc6,0xbe,0x59,0x6d,0x1a,0x66,0xec,0x52, +0x53,0x7d,0x5c,0x72,0x48,0x09,0x57,0xfe,0x10,0x92,0x1c,0x7e, +0x2a,0x3c,0x5c,0x31,0x2c,0x5c,0x3a,0x5e,0x9f,0xdc,0x30,0x38, +0xab,0xed,0xa8,0x19,0xbb,0xd8,0xd8,0x08,0xdf,0x3b,0xa4,0x34, +0x56,0x00,0xe1,0x24,0xd4,0xca,0xdf,0xd4,0xc3,0xa1,0xcf,0x8b, +0x2f,0x6b,0x2a,0x38,0x9b,0xd6,0xcc,0x89,0xbe,0x19,0x74,0x9f, +0x9f,0x95,0xa7,0x5d,0xaf,0x37,0x5f,0xda,0x58,0xd0,0x9e,0xde, +0xca,0x7d,0x9c,0x49,0x42,0x2d,0xfc,0xcd,0x3c,0x6c,0xfb,0x7c, +0xe9,0xaf,0x15,0xf6,0xa5,0xb6,0x70,0xa2,0x77,0x2a,0x09,0xb3, +0xf0,0x31,0x75,0xb7,0xed,0xf5,0xe4,0xcb,0x1a,0x4a,0x87,0xe9, +0xbe,0x31,0x3f,0x6c,0x27,0xcf,0xbe,0xc7,0x55,0xa3,0xbf,0x8e, +0x39,0x2d,0xba,0xc8,0xa4,0xcd,0x23,0xc3,0xe2,0x9a,0x5f,0x8e, +0x7c,0x20,0xbe,0xaf,0x29,0xbc,0xc6,0x6a,0xaf,0xc3,0xd7,0xf7, +0xa3,0xdb,0x8e,0x32,0x8a,0xf4,0x4f,0x7c,0xf3,0xf3,0xf9,0x66, +0x60,0xe8,0xd0,0x9e,0x1b,0x85,0x73,0x49,0x4c,0x13,0x9d,0x5e, +0x32,0x75,0x88,0x5d,0x2d,0x4f,0x49,0xbd,0x8b,0x53,0xae,0x1e, +0xfd,0x42,0xea,0x4a,0xa9,0x80,0xb3,0x18,0xcb,0xd0,0xb4,0x6e, +0x65,0xe8,0x03,0x6d,0x41,0x11,0x33,0xd9,0x8c,0xea,0xf4,0xaa, +0xe4,0x2a,0xcd,0x64,0x3e,0xc2,0x29,0xcc,0xfe,0x98,0x3d,0x87, +0x87,0x45,0x45,0xaa,0xc4,0x8f,0xe3,0xbe,0xa3,0x38,0x19,0xdf, +0xfb,0xb0,0x5e,0x8b,0x87,0x8d,0xf0,0xfa,0x10,0xcc,0x49,0x84, +0x23,0xdc,0x27,0x78,0x81,0xd9,0x5e,0xec,0x76,0x4f,0x09,0xe6, +0x33,0xcd,0x39,0x79,0xcd,0xca,0xd7,0x58,0xed,0x4c,0x99,0xf8, +0x58,0x98,0x41,0x79,0x6b,0xc4,0x99,0x17,0xa2,0x87,0x1b,0xa4, +0xac,0xef,0xbf,0x73,0x07,0x9d,0x19,0x0f,0xc1,0x90,0x97,0xee, +0x8a,0x11,0x66,0x4a,0xa6,0xc8,0xf5,0x92,0x29,0xd2,0x75,0xdc, +0x14,0xb9,0x4d,0x02,0xc4,0x3e,0xfa,0x84,0xc2,0x61,0xaa,0xd0, +0xa4,0xdd,0xd3,0x09,0x4c,0xa7,0xbb,0xa7,0xb3,0x7a,0x3b,0x49, +0xa4,0x46,0xd0,0x1e,0x3f,0x6d,0xcf,0x13,0x7c,0x92,0x7e,0x7f, +0xd2,0x48,0x5a,0x6f,0xa6,0x62,0x42,0x48,0x5c,0x68,0x5c,0x78, +0x5b,0x01,0x1f,0xdc,0xe5,0x7e,0xdb,0xaf,0xd5,0x3a,0x80,0x4f, +0xf1,0xc9,0x70,0x4c,0x77,0xf0,0x8c,0x76,0x8f,0x71,0x8f,0xc9, +0xed,0x4f,0x3f,0x9f,0x3a,0x48,0x05,0xcb,0x2f,0x52,0xf3,0x5d, +0x25,0x3c,0x02,0xaa,0x6a,0xa8,0x8a,0x5b,0x41,0x49,0x1d,0xb5, +0xa9,0xf0,0xd6,0x66,0x9f,0xfd,0x0d,0xbf,0xfd,0x27,0x06,0xfb, +0xdf,0xd9,0x07,0x9f,0xf3,0xd7,0x3b,0xe3,0xde,0x18,0x9f,0xc9, +0x5a,0xc2,0x77,0x43,0xac,0xd8,0x49,0x91,0x30,0x7a,0x0b,0x27, +0xc0,0x9b,0x15,0x0f,0x4b,0xed,0x06,0xa7,0x09,0x6f,0xe2,0x34, +0x76,0x37,0x5a,0x93,0xe2,0xfa,0xa2,0xce,0xec,0x16,0xf5,0x3c, +0x3e,0xc8,0xc4,0x4b,0xcf,0xd5,0x8c,0x13,0x65,0xda,0x63,0xb2, +0x41,0x46,0x9c,0x52,0x44,0x42,0x9a,0x03,0xdb,0x7d,0xeb,0x8e, +0x06,0xf0,0x79,0xb6,0x39,0x96,0xe9,0x92,0xd1,0x32,0x75,0x02, +0x46,0x4f,0x91,0xdc,0x50,0x72,0x18,0x3d,0x57,0x1b,0x14,0x25, +0x0e,0xf5,0x42,0xa4,0xdf,0x83,0x49,0x15,0xe3,0x3e,0xd0,0x8a, +0x97,0x11,0xb3,0x9f,0xe0,0x0a,0x09,0x47,0x2f,0x8c,0x94,0xfb, +0xea,0x14,0x85,0x55,0x02,0x43,0x8e,0x6c,0xc0,0x34,0x6d,0xe1, +0xeb,0x41,0x2c,0x61,0xf0,0x14,0x5e,0x25,0xc2,0x21,0x30,0x14, +0x0f,0x31,0xe7,0x71,0x11,0xf9,0x11,0x6e,0x2e,0x63,0xc5,0xc9, +0xe2,0x4d,0x22,0x2c,0x15,0x36,0xe0,0x97,0xa8,0xcc,0x66,0xab, +0x4b,0x0e,0xff,0xae,0x9c,0xbc,0x4e,0x65,0xe1,0x6f,0x62,0x8d, +0x68,0xc1,0xc2,0x2c,0x29,0xce,0xb3,0x60,0x70,0x14,0xac,0xc0, +0x92,0x45,0x2b,0x5c,0x49,0x9e,0xc2,0xd2,0xf9,0x74,0xb1,0xd5, +0xcb,0x35,0xd0,0xc4,0xa3,0xa3,0x97,0xfb,0xfb,0xc0,0xdc,0x71, +0x81,0xc1,0xeb,0xc0,0xcc,0x09,0x21,0x37,0x51,0x76,0xe0,0x15, +0x21,0xf7,0xdc,0x41,0xf0,0x11,0x6e,0x69,0xa4,0x8f,0xee,0x16, +0x8c,0x91,0xaf,0x21,0xb1,0x5f,0xec,0xd1,0x85,0xe3,0x6b,0xf0, +0x8c,0xae,0xf0,0xb0,0x9f,0x35,0xc5,0xa9,0x44,0x4c,0x11,0x77, +0x0b,0x29,0x8c,0xa6,0xf0,0x16,0xd9,0x2e,0xce,0xfb,0x88,0x15, +0xe6,0x51,0x75,0xbe,0x43,0x9c,0x77,0x57,0xda,0x9a,0x49,0x36, +0x88,0xf3,0x1e,0xb2,0x70,0x02,0x35,0xc8,0x43,0x9b,0x07,0x46, +0x97,0x4d,0xaa,0x3b,0xf9,0x43,0x6d,0xeb,0x7b,0x37,0xd6,0x70, +0x22,0x4f,0x9f,0xfc,0xc3,0xca,0xef,0xfb,0x46,0xba,0x1c,0x5a, +0x78,0x35,0xd3,0x0f,0x8d,0xb6,0xbb,0xcb,0xb3,0x5a,0x2c,0x89, +0x14,0x84,0x3c,0x73,0x90,0xf2,0x52,0x39,0x48,0x97,0xc7,0x4d, +0x8c,0x1b,0x49,0x57,0xc9,0x2f,0xf3,0xd6,0x2b,0xd1,0x48,0xcf, +0x11,0xd0,0xd7,0x78,0xa8,0xb9,0xf1,0x43,0xd8,0x1d,0x29,0x85, +0x1c,0x85,0x2b,0x8e,0x4d,0x86,0x07,0x44,0x54,0xc3,0x58,0x55, +0xdc,0x34,0x0c,0xac,0x60,0x87,0xec,0x39,0xd8,0xb4,0x8f,0xd1, +0x04,0x03,0xb2,0x9b,0xb2,0xba,0xb7,0xa8,0xee,0x30,0x60,0x61, +0x33,0x1a,0x90,0x4f,0x60,0xfd,0x16,0x16,0xef,0x3d,0x63,0x09, +0xec,0x83,0x9b,0x54,0xe7,0xaf,0x62,0x73,0xf4,0x64,0xa0,0xc4, +0xb4,0xe4,0xe4,0xb5,0x28,0x0b,0xdb,0xc5,0xdd,0xe2,0x69,0x56, +0x98,0x0a,0xff,0x43,0xf0,0xe6,0xd7,0x70,0x93,0xc1,0x9b,0x74, +0xf6,0xc0,0xcd,0xd5,0x78,0x93,0xf2,0x40,0x35,0x61,0x16,0x7d, +0xe8,0x14,0xad,0x06,0xf5,0x61,0x10,0xbc,0x06,0x69,0xfd,0x94, +0xa0,0x14,0xd6,0x14,0x34,0xa7,0x55,0xea,0xe4,0xf3,0xa1,0x0e, +0x1e,0xfa,0xde,0x36,0x1c,0x3e,0xd1,0x85,0x53,0xf8,0x1a,0xfa, +0xe9,0x81,0x1f,0xb2,0x18,0xad,0x43,0xef,0xc7,0x03,0x15,0xb6, +0xa0,0x22,0xce,0x58,0xd5,0x68,0xc0,0x7f,0x75,0xed,0xf2,0x57, +0x6d,0x5f,0x71,0xb0,0x1a,0xb7,0x61,0x88,0xb6,0x90,0x32,0x88, +0x2e,0xb0,0x0d,0x8c,0x06,0x44,0x25,0x26,0xa3,0x3e,0xb5,0x3e, +0xa1,0x96,0x13,0xde,0x61,0xf0,0x99,0xb0,0x92,0x04,0xd6,0xfa, +0xd4,0xfb,0x17,0xeb,0x79,0xf0,0x85,0x2e,0xf9,0xce,0x99,0xce, +0x1c,0x9d,0x29,0xe9,0x13,0x1e,0xdf,0xf1,0xb1,0x85,0xb7,0x06, +0xf1,0xad,0xf1,0xa9,0x28,0xb7,0x2d,0x8f,0xa3,0x8b,0x95,0xf2, +0x5c,0xb2,0xdb,0x7f,0x54,0xfc,0xf1,0xaf,0xb9,0x64,0xf7,0xf1, +0xc3,0x86,0x66,0xd9,0x8c,0xb1,0x11,0xf0,0x23,0x0d,0x81,0xcd, +0xc1,0xad,0x21,0xa5,0x67,0x79,0x9c,0xd9,0xb0,0xb5,0x55,0xb3, +0x97,0x83,0xe4,0x1e,0xec,0xb8,0x05,0xba,0x5d,0xa8,0x7b,0x1d, +0x5c,0x6b,0x3a,0xe1,0x5d,0x71,0xd9,0x2d,0x75,0x55,0xf1,0x5d, +0x7c,0xb7,0xc3,0x11,0x6c,0xf7,0xe2,0x11,0x63,0x38,0xa2,0x8a, +0x0d,0x06,0x90,0xc0,0x68,0xe9,0x6f,0x33,0xc7,0x19,0xb6,0x65, +0x86,0x7c,0x5b,0x46,0x53,0x76,0x43,0x0e,0xa7,0x0f,0x27,0x58, +0x9d,0xbd,0xf3,0x8c,0xd0,0x54,0xbb,0x88,0x6a,0xb9,0xc0,0xab, +0x3f,0x77,0x37,0x48,0x4a,0x2e,0xfa,0x02,0x44,0x27,0x32,0x0d, +0x4b,0x61,0xb2,0x11,0x04,0xef,0x2f,0xa2,0x4a,0xce,0x72,0x00, +0x65,0x3d,0x5a,0xd7,0x38,0xc8,0x60,0x9e,0xed,0x97,0x12,0x74, +0x8d,0x76,0xa2,0x11,0x03,0x69,0x0a,0x77,0xc0,0x73,0x27,0x7b, +0x9e,0xfe,0xb0,0xde,0xc9,0x62,0x81,0x09,0xd9,0x8b,0x9e,0xd7, +0x59,0xf0,0x44,0x8e,0xa8,0xa2,0xe7,0x2d,0x16,0x62,0x70,0x06, +0x39,0xab,0x37,0x6a,0x76,0x87,0xca,0xc7,0xd6,0x9f,0xd5,0x16, +0x63,0x19,0x73,0xbb,0xee,0x7c,0x7b,0x77,0x1f,0x9d,0x46,0xe1, +0x63,0xc1,0xc4,0xbf,0xce,0xab,0xce,0xb3,0xdc,0xc4,0x83,0xaf, +0xb0,0xcb,0xf3,0xca,0xb7,0xe5,0x6e,0xe0,0x32,0xe2,0x77,0xca, +0xff,0x54,0xa0,0x12,0x95,0xc3,0x6f,0x68,0x53,0xc9,0xb5,0x86, +0x09,0xd0,0xb3,0xb4,0x59,0x61,0x55,0x65,0xc8,0xc3,0x1b,0x3d, +0x67,0xfb,0xf3,0xef,0x71,0x70,0x18,0xd6,0x6b,0xe3,0x1b,0x38, +0x9d,0x39,0x93,0x1f,0x9b,0x5f,0x34,0xeb,0x1b,0x30,0xee,0xc5, +0xbf,0xb2,0x25,0x35,0x45,0x8d,0x39,0xb5,0xfa,0xf9,0x7c,0x80, +0xb5,0xa7,0xb9,0x93,0x39,0x87,0x95,0xfa,0x60,0xc9,0x8c,0xad, +0x17,0x0d,0xa4,0x9e,0xdd,0xf7,0xd8,0xec,0x90,0xe6,0xfe,0xa2, +0xde,0x8c,0x21,0x45,0x88,0x5e,0x80,0x73,0x99,0x5c,0x7d,0xa9, +0xc9,0xe4,0xd9,0x7c,0xa9,0x08,0xe4,0x3c,0xfc,0x0e,0x97,0xb2, +0xf8,0xd7,0xe0,0x1d,0x07,0xd6,0x2b,0xe5,0x1c,0x93,0x19,0xae, +0x15,0x95,0xb5,0xe0,0x19,0xa3,0xb5,0x03,0xdf,0xd0,0x44,0xc7, +0x23,0xc5,0x54,0x53,0xc4,0x7c,0xf4,0xb8,0xaf,0xf9,0x77,0xfa, +0x78,0x0a,0x47,0xa1,0x30,0x91,0x69,0x99,0x0b,0xac,0x1e,0x9c, +0xda,0x5e,0x34,0xc4,0xa3,0xfb,0x28,0x4e,0x19,0xd6,0xa0,0x17, +0xd6,0x2f,0x58,0x10,0xf4,0xff,0x18,0xfc,0x19,0x0c,0x41,0x5b, +0x12,0x57,0x72,0xa6,0x34,0xb6,0x82,0x03,0xff,0x2d,0x74,0x1e, +0xaa,0x0b,0xef,0x13,0xd1,0xeb,0x86,0xb0,0x06,0x7a,0x31,0x80, +0x49,0x29,0x4a,0x29,0x49,0x2a,0x51,0x4f,0xe1,0x8f,0x7b,0x44, +0xb8,0x86,0xb9,0x4b,0xda,0xa3,0x59,0x30,0x61,0x16,0x9c,0x34, +0x8e,0x72,0x52,0x72,0x8c,0x38,0x16,0x62,0x3e,0x5b,0x07,0xd6, +0x68,0xd2,0xb9,0xfe,0x06,0x2c,0xd4,0xa2,0x28,0x6b,0x12,0xbc, +0xae,0x89,0x56,0xc3,0x1d,0x70,0x81,0x49,0xd3,0x93,0x7d,0xcc, +0xdc,0x28,0x2f,0xbf,0x90,0xa1,0x9c,0xda,0x16,0x77,0x09,0x94, +0x66,0x89,0xa6,0xb7,0x05,0x2f,0xe6,0xd9,0x42,0x98,0xfa,0x3c, +0xb2,0x69,0x3c,0xa0,0x6f,0xc6,0x10,0xce,0x18,0x5f,0xa1,0x73, +0xb5,0xe4,0xe5,0xfa,0xde,0xb2,0xc2,0x39,0xcb,0x90,0x48,0x52, +0xef,0xcf,0x8a,0x89,0xda,0x3e,0x2f,0x2d,0xd2,0x0f,0xc6,0xd3, +0x04,0x0c,0x85,0x79,0x64,0x17,0xfe,0x79,0x5b,0x32,0x1c,0x4d, +0x27,0xdb,0xf1,0xcf,0x8f,0xa8,0x88,0xea,0x1a,0x0f,0x16,0x1c, +0xa7,0xe8,0x92,0x9f,0x6d,0x3c,0x4f,0xf0,0xbf,0xae,0x83,0xf3, +0xb1,0xfc,0xdc,0x3d,0x42,0x04,0xc1,0xab,0x82,0x0b,0x5c,0x65, +0xc5,0x0f,0xf1,0x1d,0xf2,0x19,0x8c,0x6d,0x94,0x22,0xfc,0x67, +0x93,0x2f,0x61,0x6c,0x2d,0x8b,0xd9,0xa8,0x42,0xa8,0xd4,0xe1, +0xa4,0x16,0xa0,0x3f,0x32,0x1d,0xb9,0x92,0xdb,0x52,0x15,0xcf, +0xe8,0xb3,0x50,0xa7,0x00,0x96,0xf4,0xc8,0x14,0x86,0x1e,0x79, +0xf4,0xe2,0x48,0x16,0x0b,0x73,0x77,0x10,0x2b,0x43,0x5d,0x53, +0x5d,0xe7,0x0a,0x53,0x7e,0xa8,0x7e,0xf8,0x6c,0x53,0x0f,0x87, +0xdf,0xd4,0x10,0x73,0x43,0x4d,0x63,0x2d,0x97,0x72,0x13,0xfe, +0x7c,0xfd,0xf9,0xbe,0x96,0x6e,0xee,0x18,0xfe,0x85,0x18,0x1e, +0xdd,0xa7,0xb3,0xdf,0xae,0xd4,0x98,0xbf,0xd1,0x74,0x73,0xa4, +0xe7,0x02,0x07,0x05,0xb5,0xc4,0x50,0xeb,0x88,0x8e,0xba,0x23, +0xdd,0x77,0xa5,0xe9,0xf2,0x50,0xf7,0x08,0x37,0xe3,0x7b,0xb8, +0x48,0x3a,0x6e,0x14,0x8c,0x26,0x7f,0x73,0x3f,0xe1,0x6e,0xe2, +0xbd,0x54,0x3a,0x34,0x0b,0xd9,0x0c,0x63,0xd9,0x43,0x2a,0x6d, +0xb2,0x9a,0x95,0xe1,0x10,0x9b,0x1d,0x97,0x7d,0x26,0x3b,0xee, +0x54,0x07,0x1f,0x74,0x32,0xf8,0x64,0xd0,0x09,0x8e,0x82,0xf3, +0x25,0x6c,0x72,0x5e,0x72,0x7e,0x42,0x81,0x6e,0x32,0x7f,0xdc, +0x2b,0xca,0x3b,0xdc,0x97,0xc3,0xbf,0x2d,0x66,0x6c,0x4f,0x3b, +0x9e,0x72,0x55,0xda,0x7c,0x22,0xc1,0xf0,0x56,0x5c,0x94,0x6a, +0xa0,0xbe,0xa5,0x86,0xe2,0x98,0x93,0xb0,0x96,0xec,0x66,0xad, +0x32,0x03,0xbb,0x94,0x2e,0x33,0x4d,0x19,0xd9,0xb5,0xca,0xc3, +0xac,0x5e,0xa6,0x4c,0x45,0x9f,0x0d,0x3e,0x7e,0x26,0x5b,0x19, +0x58,0x8c,0x63,0x55,0x62,0xcc,0xd6,0x5a,0x2a,0x55,0x59,0x7e, +0xd2,0x54,0xda,0x19,0x77,0x55,0x51,0x34,0xb6,0x23,0xe0,0x8d, +0x6f,0x33,0x3b,0x23,0x76,0x45,0x6f,0x8b,0xe6,0x62,0x8b,0x4f, +0x97,0x96,0xcf,0xea,0x2c,0x25,0xe5,0x3e,0xd5,0xce,0x85,0xee, +0xf5,0x55,0xbc,0x7b,0x8d,0x5b,0xb1,0x5b,0x11,0x37,0xb6,0x4b, +0x4c,0xa2,0x73,0x7d,0xed,0x7d,0xf6,0x6a,0xc6,0x68,0xc1,0x50, +0xc9,0x25,0xc7,0x7b,0x1e,0x3f,0xfa,0x65,0x9f,0xe5,0x77,0x66, +0x1f,0xce,0xd7,0x2c,0x19,0xad,0xef,0x69,0xaf,0x3e,0xcb,0x75, +0x8b,0xef,0x1a,0xc0,0x27,0xac,0xb3,0x9d,0x99,0xfd,0x51,0x17, +0x93,0x52,0x8b,0x2a,0xcb,0x06,0x1b,0x47,0xbe,0xd6,0xa9,0xce, +0xb5,0xd9,0xd3,0x24,0x40,0x37,0x48,0x2d,0x2c,0xcb,0x9a,0x37, +0x5e,0x2f,0xce,0xd3,0x12,0x5e,0x63,0x34,0x77,0x22,0x5d,0x86, +0x4e,0xea,0xf2,0x15,0x70,0xf7,0x69,0x6f,0xf3,0x53,0xba,0x02, +0xb2,0x47,0x21,0x9b,0xae,0x80,0xf9,0x40,0x45,0xc8,0xe9,0x1d, +0xf2,0x15,0x70,0x1e,0xa7,0x0d,0x1d,0xbd,0x43,0x99,0x15,0xa8, +0x93,0x3e,0x98,0xa2,0x47,0x51,0xf0,0xba,0xf1,0x92,0x2e,0xd3, +0x74,0x41,0x36,0x5e,0xd2,0x65,0xe1,0x56,0x9c,0x21,0x59,0x75, +0x25,0xd3,0x86,0xdc,0xd7,0xf0,0xd2,0xe7,0xf4,0xd2,0xd7,0x20, +0x61,0x7d,0xa9,0xa4,0x8b,0xe4,0xb8,0x9a,0xd4,0x4f,0xa7,0xbd, +0x06,0x03,0xa6,0x9b,0x88,0x50,0x3a,0x28,0x7e,0xfe,0x8f,0xa9, +0x23,0xc3,0x42,0xcd,0xa0,0x58,0xc3,0x50,0x28,0x44,0xbe,0x7a, +0xd0,0xf8,0x18,0x74,0x67,0x41,0x95,0xe6,0x1c,0x54,0xd2,0x05, +0xa5,0x39,0xf8,0x8e,0x1e,0xbc,0xc3,0x9e,0xb2,0x3b,0xe1,0x1c, +0xe3,0x66,0x7a,0xcc,0x24,0x4c,0x37,0x3c,0x4d,0x9f,0x6f,0x4f, +0x6e,0x4e,0x6b,0x4c,0x0f,0x54,0x77,0x35,0x33,0xb1,0xe4,0xe0, +0xb8,0x23,0x19,0x86,0x25,0xe3,0xc1,0xa8,0x53,0xe1,0xdd,0x3e, +0x7c,0x17,0x64,0xb0,0xa4,0x1f,0x97,0xfc,0x29,0x95,0x20,0xcd, +0xa0,0x6a,0x38,0xea,0x65,0x3c,0xc9,0xac,0x5f,0xfb,0x17,0xbd, +0xe2,0x2f,0xa1,0xf7,0x60,0x27,0xf7,0x97,0x4c,0xdc,0xc3,0xff, +0xea,0x2f,0x91,0x95,0xc0,0x27,0x12,0x9d,0xbd,0x0d,0x15,0xb8, +0xff,0x29,0xd8,0xf4,0x3f,0x9b,0xa1,0x0b,0x46,0xf3,0xd9,0x41, +0x85,0xa7,0xc0,0xcd,0x67,0x51,0x85,0x02,0xb2,0x5d,0xc8,0xc2, +0x2e,0x16,0x9a,0x70,0x17,0x41,0xc9,0xc5,0xc5,0x51,0xbe,0xb9, +0x8b,0xd0,0x8d,0x37,0x71,0x17,0x8b,0x76,0xab,0x89,0x9a,0x3e, +0x83,0xab,0x16,0xec,0x41,0xcb,0x1d,0x4a,0x65,0xda,0xa0,0x71, +0xeb,0xb7,0x5b,0xd9,0x30,0x43,0x31,0x89,0xc9,0xc6,0x19,0x4f, +0x54,0xe1,0xa8,0x6a,0x29,0xc5,0xa6,0xe6,0xb7,0x17,0xdc,0x80, +0x55,0xb3,0x60,0x05,0x5d,0x31,0x67,0x7b,0x5b,0xae,0x94,0x5e, +0xd2,0x2b,0xe6,0x3d,0x0f,0xdb,0x6a,0x18,0x18,0x70,0xe2,0x5c, +0x5d,0x32,0x7c,0xae,0xfd,0x66,0xd1,0x0d,0xbd,0x02,0xde,0xef, +0xb0,0xc5,0x7e,0x6d,0x5d,0x2a,0x6f,0x1b,0x25,0x90,0xf1,0xd2, +0xfd,0xfc,0x1e,0xa5,0x3f,0xe3,0x6a,0xe8,0xff,0x03,0x32,0x86, +0x5f,0xb0,0x92,0xdb,0xb8,0xa6,0xa1,0x49,0x56,0x4d,0x17,0x87, +0x38,0x65,0xf8,0x3e,0xa8,0x6e,0x1b,0xba,0x0f,0x6a,0xdb,0x86, +0x85,0x29,0x18,0x7d,0x0d,0xca,0xfa,0x36,0xb3,0xe5,0x6d,0xd6, +0x05,0x86,0x79,0x96,0xe9,0x8a,0xae,0x66,0xad,0x21,0x5d,0x01, +0x8d,0x7e,0x8a,0xa8,0xf9,0xa3,0xe6,0x32,0x2c,0xd0,0x83,0x82, +0x7d,0x8c,0xe1,0xe4,0x1d,0xa8,0x7a,0x97,0x2a,0xe1,0x1d,0xe4, +0x2e,0xa8,0xed,0x60,0xc5,0x75,0x46,0x04,0x54,0x55,0x50,0x95, +0x81,0x20,0x85,0x7b,0xa0,0xa6,0xc2,0xba,0xe3,0x6e,0x72,0x43, +0x63,0x8f,0x78,0x44,0x57,0x38,0x82,0x6b,0x50,0x85,0xcd,0xa3, +0xc4,0x7d,0x11,0xd3,0x9e,0x9f,0xdf,0xae,0x0c,0x8b,0x61,0x7a, +0x3f,0x2b,0x16,0xa0,0x8c,0x9c,0x75,0xeb,0x76,0x6a,0x77,0xa8, +0x6d,0xe3,0x4d,0xeb,0x0c,0xab,0x8d,0x8b,0xa5,0x6e,0x99,0x92, +0x64,0x7a,0x25,0x7c,0xfe,0x95,0x08,0x00,0xb9,0x19,0x62,0x1c, +0x79,0x7e,0x38,0x61,0x86,0x28,0xfb,0x5d,0xee,0x58,0xcf,0x7f, +0x89,0x4b,0xee,0xe0,0x6a,0xaa,0x60,0xe1,0x7a,0x24,0x01,0x73, +0xb8,0x3f,0x00,0xdb,0xc4,0x2b,0xb8,0x6d,0x40,0x6a,0x1f,0xbd, +0x04,0x0b,0x74,0x04,0x18,0xc0,0x3a,0x06,0x8c,0x04,0x35,0x22, +0xea,0xfd,0x28,0xe8,0x31,0xe2,0x5c,0x8c,0x22,0x3f,0xc0,0xcf, +0xcb,0xe5,0x4d,0x3e,0x7f,0xfe,0x95,0x45,0x4e,0xac,0x23,0x9f, +0xb4,0xdd,0xbf,0xd2,0x77,0xc9,0xa2,0x8e,0x37,0xd1,0xda,0x7c, +0x60,0xa7,0x2d,0x27,0xcc,0x06,0x8e,0x8c,0x9a,0x7f,0xbe,0x6f, +0x40,0xa7,0xb1,0x9d,0xd7,0xed,0x5d,0x77,0xed,0x88,0x94,0xfe, +0xd6,0x31,0x1e,0xfe,0xf5,0x7c,0x0c,0xde,0x1d,0xaf,0x26,0x26, +0x37,0x35,0x3c,0x07,0x03,0xd6,0x2f,0xc1,0x40,0xf9,0x04,0x18, +0x38,0xf7,0xa2,0x2e,0xc4,0x38,0x18,0x80,0x8f,0x84,0x03,0xe4, +0x2b,0xf5,0x0f,0x31,0x5c,0x5b,0x68,0x1d,0x64,0x11,0x28,0x4c, +0x0b,0xad,0x0f,0x6c,0x08,0xac,0xd2,0xf3,0xe1,0x73,0x9d,0xb2, +0xed,0xd3,0xec,0x38,0x80,0x43,0x64,0xf1,0x08,0x2c,0xc3,0x95, +0x6c,0x5e,0x43,0x4e,0x73,0x7a,0x8b,0x14,0xc1,0x67,0x1a,0x64, +0xe6,0x69,0xca,0xe1,0x0f,0xb8,0xec,0xdc,0xcf,0x8c,0x70,0x12, +0x35,0xc9,0x20,0xa6,0x48,0x31,0x2c,0x67,0xb4,0x61,0xbe,0x27, +0x8b,0x73,0xf4,0x56,0xe0,0x92,0x6d,0x4a,0xb5,0xfa,0x30,0xfd, +0xca,0xe5,0x8f,0x4b,0x7f,0x51,0x84,0x1c,0xe6,0xa4,0xd1,0x09, +0x9d,0x28,0x17,0xce,0x25,0x32,0x24,0xd2,0x4a,0xaa,0xaa,0x98, +0x7d,0x54,0x46,0xb9,0xfc,0xb5,0xf2,0xe2,0xa1,0x0c,0xe5,0x94, +0xd6,0x84,0xa1,0xd8,0xdf,0x39,0xbc,0xce,0xc4,0xe5,0xc7,0x16, +0x14,0xce,0x2a,0x61,0x67,0x8c,0xc1,0x98,0x26,0x41,0x66,0x18, +0x36,0x61,0xf4,0x97,0xea,0x6b,0x31,0x50,0x42,0x77,0x0c,0x8b, +0xab,0x31,0x42,0x5e,0x68,0xe6,0xf9,0x9d,0xff,0x39,0x38,0xe7, +0xff,0x74,0xdf,0x8b,0xa5,0xfb,0xd6,0x82,0xbb,0xc4,0x7a,0xbb, +0xb6,0xe6,0x3a,0xe3,0x72,0x43,0xfe,0xab,0x9e,0x8b,0x57,0x3a, +0xbf,0xe4,0x9e,0x86,0x92,0x6b,0x5a,0xe7,0xd5,0x2e,0x6d,0x6d, +0x6e,0xe4,0x0f,0xdf,0xdb,0x7b,0xed,0x40,0x0f,0x07,0x1e,0xe2, +0x54,0x82,0x1f,0xdc,0x5b,0xf6,0xd0,0xe1,0x6b,0x4e,0x93,0x71, +0x5c,0xb3,0x66,0x1d,0x2e,0xd9,0x5d,0xa2,0xc7,0x17,0xa7,0x17, +0xa5,0x17,0xa6,0x73,0xf8,0xd5,0xc8,0x79,0xe8,0x51,0x1f,0x81, +0xaf,0xd9,0xc2,0x90,0xe2,0xd0,0x92,0x10,0x4e,0x74,0xe8,0x22, +0x4f,0x46,0xaf,0xde,0xc8,0xfd,0x88,0x93,0x02,0xf7,0xae,0xee, +0xf9,0xe3,0x10,0x87,0x3f,0xea,0x12,0xe8,0xc1,0xbd,0xd8,0xc3, +0xcc,0x18,0x53,0x1a,0x8b,0x24,0xb7,0x99,0x93,0x28,0xf3,0xd9, +0x66,0x72,0xd0,0x6f,0xd4,0xf5,0x9a,0x57,0x97,0xb1,0x2f,0x9f, +0xed,0x94,0x65,0x9f,0x65,0x63,0x17,0x68,0x1d,0x68,0x1d,0x1c, +0x01,0x61,0xfc,0xf9,0xb4,0x1b,0xb9,0xfd,0xa5,0x6e,0xdd,0xbc, +0x96,0x87,0x8a,0xef,0xa6,0x90,0x0c,0xec,0xe3,0x4d,0x83,0x73, +0xb5,0xae,0x17,0xdf,0xaf,0xb9,0x52,0xa7,0x98,0xab,0x9b,0x93, +0x5c,0x6f,0x7b,0xe7,0xf3,0x9a,0x3f,0xe3,0x60,0x9e,0xe2,0x37, +0xcc,0x86,0xe3,0xab,0x22,0x8c,0x94,0x9c,0x8e,0x07,0x87,0xd9, +0xcd,0xd6,0x67,0xd2,0x74,0x64,0x7d,0xcc,0xa5,0x92,0xa2,0xee, +0x14,0xe5,0xcc,0xeb,0x09,0x4f,0x40,0x61,0x16,0x05,0x4b,0xe2, +0x42,0xfc,0x07,0xc5,0xda,0x4b,0xe1,0x8d,0x41,0x0a,0x04,0x5e, +0xfa,0x96,0x8f,0xfd,0x93,0xb6,0xad,0x78,0xa1,0x6d,0x83,0x27, +0x28,0xc1,0x67,0xb8,0x59,0x0a,0x48,0x58,0x13,0x31,0x8e,0xb5, +0xc1,0x40,0x2c,0x26,0x67,0x85,0xbf,0x19,0x8e,0x08,0x06,0x62, +0x8c,0x48,0x61,0xb5,0x1b,0x54,0x13,0x8a,0xae,0xde,0x84,0xf5, +0xcc,0x90,0x54,0xec,0xe4,0x4d,0x3a,0x5e,0x6f,0xb2,0xe8,0x61, +0x48,0x50,0x81,0xee,0x57,0xa0,0x7c,0x51,0x81,0xee,0x52,0xc0, +0x4d,0xf4,0xe6,0xb7,0x8d,0xc5,0x11,0x29,0x55,0x2b,0x56,0x4f, +0xb8,0xd2,0xc7,0x3e,0x53,0xc1,0x21,0x79,0xe5,0xc0,0xc9,0x43, +0x38,0xf9,0x95,0xb8,0x52,0x79,0xe5,0xc0,0x7f,0x8a,0x2b,0x9d, +0x28,0x16,0xf4,0x3c,0x5d,0xe0,0xa1,0x94,0xdb,0xb7,0x69,0xbc, +0x16,0xad,0x94,0xc3,0x19,0xf7,0x0b,0x29,0x68,0xc8,0x6d,0xce, +0x6c,0xd4,0xcb,0xe7,0x43,0xac,0xfd,0xf4,0x3d,0xe8,0xd4,0x14, +0x75,0x84,0x1f,0x07,0x18,0x51,0xa1,0x94,0x84,0xd5,0x07,0xb4, +0xf8,0x57,0xe9,0xfa,0xf3,0x79,0xce,0xd9,0x56,0xe9,0xb6,0x1c, +0x85,0xe5,0xef,0x10,0x71,0xc5,0xd0,0x28,0xac,0xdb,0xcb,0xaa, +0x17,0xda,0x7e,0xaa,0x04,0xdb,0x99,0x36,0xa9,0xee,0xcd,0x63, +0xd6,0x30,0x53,0x06,0xdf,0xb1,0x14,0xe6,0x92,0x25,0xb8,0xee, +0x91,0xfc,0xda,0xb7,0x2e,0xc1,0xad,0x0c,0xba,0x1a,0x10,0x58, +0xb7,0x10,0xd7,0x31,0x82,0x82,0x02,0x6e,0x7d,0x0c,0x74,0xd7, +0x54,0xcc,0x26,0x76,0x21,0xa9,0x75,0xca,0x57,0xc1,0x43,0xee, +0x3d,0x4f,0x1c,0x0b,0x22,0x3f,0xe9,0x2d,0xc5,0x45,0x86,0xf0, +0xe8,0x2c,0x2b,0x2e,0xc0,0x5a,0x49,0x09,0x3c,0xcf,0xd9,0x7f, +0xf7,0xbb,0xbe,0x95,0x70,0x54,0x1b,0x29,0xa9,0xd7,0xfb,0x5d, +0x8a,0xd5,0xb2,0xc7,0x0f,0x76,0xe1,0xb4,0x46,0x29,0x67,0xbf, +0xe0,0x49,0xfc,0x57,0xf4,0x16,0xd3,0x07,0x5f,0x58,0x02,0xa9, +0x5e,0xa9,0x6b,0x94,0x09,0x0a,0x82,0x3b,0x79,0x86,0x03,0x63, +0xe7,0x61,0x31,0x1b,0xbc,0xcb,0x6e,0x9e,0xe9,0x42,0x6e,0x50, +0xb5,0x63,0xcd,0x86,0x59,0x7b,0xbd,0xdd,0x4d,0x94,0xf4,0x99, +0x0c,0x1d,0xd9,0x39,0xe6,0x46,0x6d,0xfb,0xd3,0xef,0x4d,0xbe, +0xd1,0xbf,0xa6,0xdc,0xf6,0x53,0xdd,0x6f,0x79,0x9f,0x71,0xed, +0x94,0xe3,0xe0,0x66,0x82,0x6d,0x68,0x09,0x6d,0x8c,0x3e,0xac, +0x27,0x38,0x05,0x35,0x60,0x0a,0x0b,0x45,0xa2,0x22,0x31,0x3b, +0x6e,0x10,0xad,0x17,0xcd,0x55,0xb0,0x7d,0x55,0x5d,0x0d,0x25, +0x75,0x5c,0x2b,0x5e,0x33,0x81,0xd3,0xac,0xa7,0xa7,0xa5,0x8b, +0xb9,0x0f,0xa7,0xc5,0xaa,0x45,0x1f,0x8e,0x39,0x7a,0x32,0xde, +0x80,0x1f,0x8a,0x1b,0x8d,0x3f,0x9f,0xc8,0xe1,0x5c,0xca,0xf4, +0x29,0x58,0x7a,0xc2,0xb4,0x66,0x67,0xb7,0x29,0xc3,0x1c,0xb6, +0x3f,0xa1,0x37,0xb1,0x2d,0x89,0x72,0xf8,0xbf,0xc2,0xd7,0xe4, +0xeb,0x94,0xaf,0xb3,0xee,0x64,0x27,0x7b,0x25,0x79,0x27,0x79, +0xb7,0x67,0xf3,0x81,0xd7,0xdc,0x3f,0xf2,0x1c,0x32,0x0d,0xe2, +0xd3,0x5d,0xd3,0x5c,0xd3,0x5c,0x4c,0x22,0x8c,0xa3,0x8c,0x8e, +0x5f,0x7f,0x78,0xf5,0x69,0xdf,0x13,0x33,0xaa,0x57,0x8c,0xdc, +0x0c,0x5d,0x8c,0xf4,0x2f,0xf2,0x0d,0xfd,0xf5,0xd7,0xcb,0x46, +0x4d,0x0a,0x79,0x6f,0x2d,0x67,0x75,0x07,0xbd,0x63,0xd9,0xc7, +0x32,0x43,0x32,0x1d,0xac,0xf8,0x76,0xb3,0x2e,0xed,0x66,0x3d, +0x67,0x53,0x27,0x73,0x7b,0xcb,0x90,0x93,0xa1,0xa7,0x42,0x4e, +0x71,0x14,0x3c,0x4e,0x65,0xb3,0xab,0x33,0xaa,0x93,0x2b,0xf5, +0x93,0xf9,0x08,0x87,0x30,0x27,0x7f,0x3b,0x6e,0xad,0x38,0x19, +0xd2,0x93,0x19,0xf1,0xba,0x29,0xf9,0x2a,0xf5,0x9b,0xcc,0xbb, +0xd9,0x05,0x7b,0xf9,0xf6,0xec,0xf1,0x2f,0x57,0x34,0x0d,0x4a, +0x77,0x4d,0x77,0x4d,0x75,0x56,0x34,0x89,0x34,0x8e,0x32,0x3c, +0x7e,0xe3,0xe1,0xd5,0xdf,0xfa,0x1e,0x4b,0xdf,0x6e,0xe8,0x66, +0xe4,0x62,0x14,0x58,0x10,0x58,0x18,0x90,0xdf,0x38,0x50,0x77, +0xbd,0xfc,0x02,0xbd,0x00,0x2f,0x6d,0x67,0x35,0x07,0xfd,0x90, +0xac,0x17,0x17,0xd0,0x49,0x2f,0xc0,0xc5,0xd4,0xd1,0xdc,0xde, +0xc2,0xe6,0x04,0x2f,0x94,0x02,0x55,0xb4,0xab,0xe1,0x75,0x58, +0xcd,0x50,0xd1,0xb3,0x8a,0x50,0xe6,0xc6,0xe1,0x6a,0x46,0xc8, +0x44,0x17,0x09,0x21,0x7d,0x7e,0x64,0x1c,0xdf,0xb0,0x12,0xbe, +0xd1,0x92,0xf0,0x8d,0x16,0xc5,0x37,0x77,0x9e,0xf6,0xc9,0xf1, +0x4d,0xce,0x28,0xe4,0x8c,0xe3,0x1b,0xbd,0xe7,0xf8,0xe6,0xc2, +0x38,0xbe,0x99,0x01,0x81,0x82,0x09,0x9d,0xfc,0x4a,0x3f,0x0d, +0x2c,0x1d,0x67,0xe8,0x6f,0xea,0xc8,0x83,0x14,0x24,0x93,0xde, +0xe6,0x71,0x93,0xde,0x93,0xe2,0xdf,0xfe,0xd5,0xa4,0x77,0x1e, +0x3f,0xa8,0x6f,0xd2,0x04,0xe5,0xa8,0x9c,0xc8,0x53,0xd2,0xcc, +0x57,0x29,0x25,0x57,0x4a,0xae,0x36,0x77,0xb7,0xb9,0x35,0xf0, +0x46,0x56,0x7b,0xad,0x0e,0x79,0xe7,0x39,0xf2,0xfa,0x30,0x8c, +0x69,0x86,0x60,0x81,0x79,0xdd,0x8c,0xcb,0x91,0x6d,0xc6,0xb8, +0xce,0x2c,0x9f,0xd2,0xb2,0xe5,0x6d,0x7f,0x8c,0xe4,0x7f,0x29, +0x89,0xa5,0x75,0xf0,0x96,0x1a,0x7c,0x68,0x5c,0x30,0xc8,0xe3, +0xe6,0x8e,0xa5,0xbd,0x8e,0x17,0x39,0x38,0xe9,0x4a,0xe0,0x47, +0x2c,0x34,0x04,0x27,0xec,0x64,0x0f,0x43,0x3d,0xb1,0xb4,0xd7, +0x70,0x3a,0xe8,0x51,0x62,0xc9,0x8f,0x96,0x5e,0xaa,0xed,0x68, +0xe6,0xf0,0xf3,0x2a,0x62,0x63,0xab,0x6e,0xab,0xe6,0x51,0x62, +0xc1,0x9f,0x2f,0xbb,0xd0,0xd8,0xde,0xca,0x05,0xad,0x25,0xfa, +0x26,0x6a,0xd6,0x7b,0x5d,0xca,0x4c,0xf9,0x1b,0x55,0x97,0x5b, +0x7a,0x29,0x8f,0x9c,0x89,0xbe,0x64,0xcf,0xc1,0xa5,0xe6,0xc8, +0xb8,0xe5,0x1b,0xf3,0xc0,0x56,0x3e,0xe9,0xba,0x77,0x9d,0xbb, +0x66,0x43,0x96,0xac,0x40,0x4e,0x17,0xd7,0x5b,0x15,0x1a,0xf0, +0xb0,0xba,0x19,0xc8,0xb9,0xdf,0x1e,0x73,0xe2,0x3b,0xf8,0x90, +0x80,0x73,0x2b,0x6c,0x7c,0x40,0x05,0xc7,0x0c,0xab,0x46,0x9e, +0xae,0x2a,0x0e,0xd7,0xa8,0xa0,0xb5,0x25,0x9d,0x5e,0xe7,0xc6, +0x4c,0x08,0x28,0xf5,0xa1,0xd2,0x5d,0xb5,0x1d,0x18,0x4e,0xdf, +0xe6,0xea,0xfd,0x8e,0x7f,0x81,0x85,0xfb,0xd1,0x9f,0x4e,0x67, +0x7f,0x55,0x4c,0xa0,0x74,0x74,0x2b,0x86,0x19,0x42,0xd8,0x06, +0x6c,0xd5,0x19,0x7b,0x7b,0x00,0x3b,0x1e,0x42,0xcc,0x59,0x8c, +0xf9,0x18,0xca,0x7b,0xb0,0xfc,0x16,0x1c,0x07,0x0d,0x3c,0x7e, +0x15,0x56,0x30,0x62,0x99,0xbc,0xa2,0x53,0x64,0x6c,0x58,0x58, +0xe8,0xbf,0xd2,0x0e,0x45,0x6d,0x39,0x6c,0x91,0x7c,0x46,0xe3, +0xca,0xfd,0xc6,0xef,0x13,0xd9,0x0b,0xaf,0x28,0xf7,0xbb,0x38, +0x87,0x2a,0x0e,0x61,0xae,0xf0,0x26,0xd9,0x83,0xe1,0x37,0xd8, +0x4d,0x78,0x8c,0xc0,0x96,0xd5,0xb8,0x85,0x11,0x96,0x28,0xe0, +0xfe,0x6f,0x60,0x3f,0x95,0x6f,0xed,0x63,0x9f,0x12,0xed,0x03, +0xa8,0x77,0x85,0xbe,0xad,0x34,0x80,0x95,0x7a,0x83,0x7d,0xa0, +0x27,0xbd,0xad,0xea,0xc1,0x55,0x8c,0x98,0x84,0xcd,0x24,0x32, +0x73,0x82,0x56,0x45,0x03,0xfb,0x64,0x70,0xc1,0xbf,0xa9,0xae, +0x89,0x5a,0x30,0xaf,0xa8,0xae,0x8a,0x89,0x2b,0xb8,0x8e,0xca, +0x0d,0x2d,0x32,0x61,0x94,0x8a,0x9d,0x4e,0xb4,0xbf,0x07,0xf6, +0xf4,0xfd,0x2e,0x84,0x74,0xa1,0x07,0x9b,0x91,0x9f,0x51,0x9a, +0x51,0xaa,0x93,0xcd,0x87,0xba,0x06,0x39,0xfb,0xb9,0x71,0xb8, +0x9b,0xc9,0x28,0x4e,0x2f,0x4e,0x2d,0x36,0xce,0xe6,0x61,0x05, +0xa8,0xe0,0x69,0x54,0xf9,0x86,0x71,0x51,0xd1,0xdc,0xb6,0xfb, +0x48,0x9d,0x29,0x5f,0x5c,0x58,0x50,0x94,0x5f,0x4c,0x65,0xe4, +0x70,0xab,0x10,0xd4,0x83,0x27,0x1f,0xb0,0xd6,0x42,0x27,0x41, +0x15,0x48,0x04,0x15,0x16,0x9f,0x9a,0x93,0xf5,0x38,0xef,0x73, +0x16,0x3a,0xd6,0x93,0xcf,0xe1,0x83,0xf5,0xac,0xb8,0x08,0x13, +0x29,0xd8,0x52,0xdf,0xc1,0xd2,0x87,0x35,0x83,0xdc,0x03,0x75, +0x15,0xd6,0x64,0xf2,0x26,0x54,0x7f,0x20,0xf5,0x9e,0x86,0xe9, +0x04,0x46,0x20,0x08,0xbe,0xc2,0x78,0x36,0xa3,0x38,0xb5,0x34, +0xb1,0x48,0x23,0x95,0x8f,0xf6,0x0a,0x73,0x09,0x76,0xe5,0x50, +0x1b,0xbf,0x02,0x47,0x1c,0xc1,0x66,0x3d,0x68,0xc6,0x85,0x23, +0xb0,0x10,0x9a,0xfa,0x98,0x67,0x9b,0xe1,0x11,0x91,0xdb,0xc3, +0x9e,0xa7,0xa3,0xc9,0xfb,0x0c,0xc8,0xc7,0x62,0xb6,0x36,0xbc, +0x35,0x61,0xdf,0x5f,0x3d,0x11,0x6a,0x59,0xfe,0x6f,0xa1,0x96, +0x77,0x29,0x05,0xa4,0x63,0x11,0x2e,0x28,0x91,0x35,0xe2,0xac, +0xaf,0x59,0x61,0x16,0xce,0x21,0x2b,0xc4,0x59,0xdf,0xb3,0xaa, +0x68,0x4f,0x0c,0xe0,0x70,0x0f,0x0b,0x4f,0x0d,0x48,0x0f,0x1a, +0x19,0xb0,0xf8,0x78,0x1f,0xdd,0x63,0x44,0xf7,0xfc,0x5d,0xda, +0xe3,0x60,0x40,0x05,0x35,0x8e,0x25,0x4b,0xce,0xe5,0xe4,0xa2, +0xa4,0xa2,0x84,0x22,0xc3,0x24,0xde,0x73,0xbe,0xe9,0x8a,0x3d, +0x2a,0xb5,0x36,0x7c,0x72,0x4a,0x72,0x4a,0x52,0x0a,0x47,0x31, +0x23,0xea,0x1c,0xc3,0x99,0x9a,0x38,0x49,0xa9,0xc1,0xac,0xf1, +0x56,0xe1,0x9d,0xb4,0xaf,0x15,0xc1,0x0a,0xd7,0xe2,0xeb,0x52, +0x31,0x93,0xaf,0x99,0xe6,0x9c,0xfc,0x36,0x65,0xe1,0xdb,0xf5, +0x6c,0x61,0x43,0x49,0x5f,0x5a,0x1b,0x87,0x88,0xb9,0xe4,0x78, +0xb6,0xe4,0x8e,0x97,0xcb,0x7a,0xa5,0xcf,0xfa,0x36,0x8e,0xfb, +0x63,0x29,0xb5,0x9f,0x24,0xf9,0x63,0xed,0xf0,0x83,0x1d,0x38, +0x9d,0x0a,0xfb,0x73,0xbf,0x16,0x3e,0x91,0x93,0x96,0xac,0xc1, +0xf1,0x3c,0x09,0x3a,0xb2,0x43,0xe3,0xfe,0xd8,0xf9,0x2a,0xe4, +0xc0,0x31,0x99,0xf0,0x44,0x5b,0x7c,0xc6,0xe2,0x4e,0xbb,0x24, +0x1d,0xd8,0x5c,0x2f,0xc3,0xf0,0x41,0x38,0xc3,0xde,0xc8,0x92, +0xe1,0x72,0x61,0x0b,0x71,0x1a,0xb6,0x19,0xb1,0x69,0xb7,0x70, +0xe2,0x9b,0x8c,0x1b,0x8e,0x56,0x69,0x72,0x68,0x0f,0x73,0x48, +0x98,0x9d,0x8f,0xa1,0xa7,0x0d,0x47,0x79,0x5d,0x59,0x63,0x61, +0x6b,0x6e,0x1b,0x57,0x86,0x97,0x88,0x2a,0x28,0xdd,0x62,0xba, +0x51,0x89,0x2e,0xa0,0xbb,0xa8,0xc4,0x82,0x8f,0x26,0x71,0xbe, +0xe0,0x30,0x64,0x39,0x68,0xe9,0xc0,0x37,0xeb,0xd6,0x68,0x54, +0x1d,0xe1,0xf0,0x5c,0x3b,0xc1,0x15,0xdb,0xd8,0xf8,0xae,0xd8, +0xde,0xd8,0x21,0x0e,0xa6,0x29,0xdc,0xc5,0x15,0x3b,0x28,0x7d, +0xb9,0x03,0x65,0xe4,0x3e,0x18,0x76,0xa1,0x61,0x0f,0x25,0x13, +0x11,0xb8,0xab,0x1b,0x4c,0xbb,0xd0,0xf4,0x1c,0x9d,0xab,0x96, +0xc6,0x60,0x69,0x44,0x89,0x47,0x04,0xec,0x32,0x40,0x7b,0x63, +0xb0,0xdf,0xc6,0x42,0x4f,0x36,0x19,0x7c,0x92,0xf3,0x24,0xfe, +0x3e,0x07,0x4a,0xd8,0x7b,0x1e,0x7a,0x61,0x6a,0x3f,0x5e,0xff, +0x83,0x91,0x7a,0xe8,0xe4,0x3c,0xac,0x74,0xed,0xe1,0x3f,0x74, +0x9a,0x13,0x8c,0xfc,0x71,0x0e,0xdf,0x65,0x3f,0x88,0x99,0x77, +0x08,0x39,0x25,0x3c,0x09,0xd7,0x89,0x0e,0xce,0x18,0xa0,0x0c, +0x46,0x87,0x0c,0xc0,0x4c,0x1d,0x16,0x77,0x5b,0x11,0x4d,0x9c, +0x31,0x4c,0xf7,0x68,0x52,0x72,0x35,0x53,0x93,0x15,0x8e,0xe3, +0x75,0x32,0x28,0xae,0xbd,0xa7,0xa6,0x22,0xce,0xd7,0x86,0xff, +0x61,0x35,0xf7,0xe3,0x1b,0xc6,0x68,0xaf,0x5f,0x48,0x85,0x6c, +0xf4,0xe5,0xdf,0x3b,0x5b,0x24,0x2b,0x53,0xf8,0x05,0x08,0xa7, +0x42,0x96,0xf2,0x30,0x13,0x38,0x79,0xb0,0x80,0x0a,0x59,0xe7, +0x5e,0x9c,0xd6,0xa5,0x7e,0x95,0x0a,0xd9,0x6c,0x21,0x8a,0x44, +0x65,0x4a,0x3a,0x58,0x5a,0x71,0x7f,0x7c,0xc1,0x54,0xea,0x7c, +0x7c,0xeb,0xc6,0x2f,0xdd,0x7f,0x28,0x1a,0x94,0x98,0x2d,0x56, +0xdf,0xa4,0x7a,0x50,0xb1,0x67,0xed,0x38,0x35,0xfb,0x37,0x7a, +0xf9,0x6a,0x28,0x5b,0xdd,0x84,0xf1,0xa1,0x1d,0xa7,0xd5,0xb4, +0xc8,0x20,0xe3,0x7b,0xd2,0xd6,0x57,0xda,0x9e,0x59,0x1f,0x27, +0x6f,0x55,0xf3,0x1d,0xbe,0xc5,0xb7,0x75,0x97,0x76,0x64,0x54, +0xc5,0x25,0xc6,0x9f,0x8e,0x8b,0xf9,0x1a,0x67,0xf1,0xad,0xf5, +0x14,0x14,0x85,0x67,0x86,0xc7,0x86,0x47,0x2a,0x86,0x85,0xc7, +0xc4,0xc9,0xd2,0x1b,0x12,0x1b,0x6f,0xcd,0x3a,0xab,0x63,0xc8, +0x2e,0x8d,0x30,0x34,0x3e,0xa8,0x64,0x74,0x25,0x22,0x3d,0x2c, +0x3e,0x2c,0x8c,0x1e,0x3d,0x21,0x1d,0x4d,0xea,0xbe,0x40,0x8f, +0x1a,0xb3,0x38,0x29,0x50,0x63,0xf3,0x07,0x4a,0x6e,0xbf,0x10, +0x53,0x9c,0xb4,0x11,0xa7,0x6f,0xde,0x5e,0xac,0xc1,0x37,0xd4, +0xd6,0x34,0x95,0x36,0x70,0xe2,0x21,0x3a,0x69,0xd8,0x8a,0xf6, +0xf2,0xc1,0xd2,0x0b,0x1c,0x9c,0x91,0x8a,0xbb,0x4a,0x15,0x25, +0x60,0xab,0xb6,0x68,0xc0,0xa8,0x56,0xba,0xde,0x85,0xd7,0x66, +0x49,0x18,0x43,0x9d,0x45,0x05,0x2f,0xcd,0x2d,0xea,0x4a,0xa5, +0xea,0xf7,0x2f,0x14,0xf4,0xc5,0x7f,0xa3,0x98,0xc8,0x2c,0x4c, +0xec,0xdd,0x0c,0x0b,0x67,0xc3,0x7b,0x4c,0xfa,0x90,0x0c,0x17, +0x30,0x11,0x11,0xa7,0x63,0x23,0x94,0x67,0x8c,0x7d,0x38,0x16, +0x4d,0xa8,0x16,0xc3,0x5c,0x5d,0x41,0xe8,0x67,0x9f,0x6d,0xc0, +0x9c,0x89,0x22,0x00,0x72,0x78,0x3d,0x69,0x3c,0xa9,0xed,0x3f, +0xaf,0xcd,0xf2,0x17,0xbe,0xf5,0x55,0x92,0xe9,0xe7,0x28,0x7a, +0x90,0xd1,0x86,0xb3,0x2d,0x0d,0x4d,0x56,0x2d,0xbc,0x83,0x8d, +0x81,0xa5,0xa6,0xbd,0x73,0x87,0x6f,0xf7,0xb1,0xb3,0x1c,0x1c, +0x81,0x05,0xb7,0x7a,0x55,0x61,0x8e,0x68,0x8b,0x73,0x54,0xf5, +0x6f,0xe1,0x02,0x58,0xc5,0x1c,0x3e,0xb8,0x4a,0x17,0xa7,0x3b, +0x16,0xea,0xf0,0xc3,0xd9,0x7d,0x05,0x9d,0x25,0x1c,0xae,0x63, +0xcd,0xa3,0x2c,0x8e,0x5b,0x44,0xa7,0xd3,0xa1,0x9e,0x9e,0x0d, +0x7f,0x2d,0x85,0xd7,0xcb,0xa3,0x06,0x79,0x9d,0x63,0x1a,0xc7, +0xd4,0x42,0x39,0x50,0x67,0x5b,0x2a,0xea,0x6b,0x2a,0x1b,0xeb, +0x70,0xce,0xf7,0x38,0x1b,0xd6,0x2f,0xa9,0xed,0xe3,0xf7,0xb4, +0x6a,0x75,0x99,0xf7,0x72,0xa5,0xc2,0x5b,0x04,0x7f,0xfd,0x06, +0x7e,0x65,0xf0,0xfd,0xc9,0xcb,0xf0,0xd7,0x1f,0x59,0x89,0x90, +0x9b,0x12,0x89,0x25,0xc9,0x1d,0xcb,0x72,0x91,0x2b,0xf7,0x8a, +0xc8,0xf3,0xe4,0xe7,0x2e,0x46,0x7e,0x02,0x69,0xfe,0xf9,0x4f, +0x55,0x3c,0xcf,0xbc,0xac,0xe2,0x19,0x29,0xaf,0xc1,0xa7,0x08, +0x3a,0xe2,0x2e,0x32,0x66,0x28,0x78,0x0e,0x89,0xb5,0xff,0x98, +0x32,0x72,0x51,0x38,0x36,0xcc,0x8a,0xf3,0xc7,0xe8,0xf7,0x39, +0xc1,0xc7,0xe0,0xc4,0x62,0x21,0x6e,0x21,0x30,0x15,0xec,0xa5, +0x34,0x76,0x22,0xbe,0x4f,0xa0,0x05,0xa5,0x16,0x11,0xe0,0x04, +0x2d,0x04,0x5b,0xe0,0x00,0xb4,0xb0,0x58,0x64,0x40,0x50,0x63, +0x1b,0x68,0xb0,0x54,0x32,0x6a,0x10,0xd0,0xf8,0x1c,0x35,0x58, +0xa9,0x9e,0x49,0xf8,0xf3,0x14,0x94,0x08,0x3e,0xfa,0xe9,0x2f, +0xfd,0x1f,0x8c,0x07,0x34,0x4c,0xd7,0x05,0x66,0x22,0x76,0xf1, +0x5f,0x23,0x2c,0x87,0x84,0xea,0x89,0xcb,0xbc,0x8b,0xfb,0x1a, +0x1b,0x64,0x42,0x1f,0xde,0x21,0xee,0xb5,0xbe,0xbd,0x81,0x37, +0x86,0x61,0x4a,0x3d,0x28,0xe5,0xc3,0x4a,0xed,0x1c,0x3e,0x18, +0xdf,0xf4,0xc6,0x37,0xac,0x17,0x73,0xc1,0xbf,0x47,0xc0,0x6c, +0xa9,0xf9,0xd7,0xb6,0x7e,0xdc,0x06,0x53,0x35,0x71,0xaa,0x38, +0x05,0xf7,0x32,0xd8,0x1c,0x80,0x2b,0xf7,0xa2,0x82,0x52,0x97, +0xd5,0x08,0xbc,0x51,0x0a,0x7c,0x32,0x68,0x28,0xc2,0xdb,0x88, +0xeb,0x99,0x0c,0x7d,0xd9,0x75,0x2a,0xec,0x24,0x6b,0x15,0xc0, +0xd4,0x3e,0xe4,0xbf,0x02,0x59,0x0f,0xca,0xee,0xeb,0xa0,0x33, +0xca,0xd8,0xd8,0x96,0xd8,0xf6,0xce,0x59,0x54,0x71,0xdf,0x60, +0xd1,0x29,0x03,0x37,0x95,0xe1,0x0c,0x25,0x9b,0x3d,0xc6,0x47, +0xd4,0x75,0x9a,0x8c,0xf9,0xb3,0x9d,0xad,0x7d,0xf5,0xe7,0xb2, +0x0d,0x0a,0xac,0x8a,0x9d,0x6b,0xcd,0xfb,0xe3,0x13,0x47,0x0a, +0xc1,0x84,0xd7,0x2b,0x93,0xe5,0x52,0x55,0xe3,0x56,0x6a,0x5b, +0xea,0x9c,0x63,0x6f,0xcd,0xd7,0x04,0x34,0x78,0x94,0x7a,0x4a, +0x75,0x56,0xbe,0x20,0x61,0xa3,0x81,0xa3,0x01,0x03,0xc6,0x81, +0x7c,0xae,0x76,0xe6,0xfe,0xb4,0xc3,0x1c,0xda,0x81,0x01,0x39, +0xbe,0x35,0x70,0x83,0xcb,0xc1,0x6e,0x4f,0xbe,0xf2,0x56,0xee, +0x57,0x09,0x9f,0x71,0x52,0x79,0xaf,0xd7,0x88,0x57,0x8b,0x47, +0x83,0x67,0x79,0x69,0x59,0x45,0x4b,0x7e,0xbd,0x76,0x06,0xef, +0x67,0xeb,0x6a,0x66,0x67,0x57,0x6b,0x5d,0x66,0x59,0x66,0x42, +0x97,0x45,0x09,0xf1,0x68,0x71,0xaf,0x77,0xa7,0x87,0x4b,0xeb, +0x8a,0x1a,0xe8,0x71,0x1f,0x5b,0x37,0x6b,0x2b,0x9b,0x26,0xdb, +0x6a,0xb3,0x32,0x33,0x0e,0x4e,0x97,0x10,0xf7,0x66,0xe7,0x7a, +0x8f,0x92,0xc2,0xc2,0xaa,0xa6,0xc2,0x3a,0xfa,0x84,0xfc,0xec, +0xec,0x4c,0x1c,0x9d,0x9a,0xad,0x1b,0x4c,0x4b,0xad,0x38,0xf1, +0x1e,0x55,0x26,0xaf,0x50,0xeb,0xff,0xa0,0x9d,0xca,0x7e,0x4b, +0x7c,0x55,0x3b,0xc9,0xcd,0x00,0xcb,0xa5,0x64,0xe9,0x9f,0x71, +0x03,0xd5,0x37,0x8d,0x37,0x20,0x14,0x46,0xc4,0x54,0x1c,0x01, +0xaf,0x3d,0x58,0x6c,0x00,0x21,0xac,0xd9,0xde,0x15,0x46,0xf8, +0x96,0x61,0x91,0x3e,0x0f,0xef,0x0d,0xc0,0x94,0xcb,0x59,0xdf, +0x50,0x21,0x16,0x30,0x08,0x01,0x49,0x4c,0xf6,0x6a,0x98,0x7c, +0x18,0xe6,0x6a,0x4a,0xe5,0x9c,0x15,0x7b,0xd7,0x74,0x5b,0x5c, +0xe3,0x56,0x41,0x1f,0xc1,0xad,0x1f,0x53,0xc2,0x31,0xb0,0x95, +0x7c,0x0c,0x07,0xb6,0xb2,0x18,0x6a,0x44,0x36,0xe2,0xd6,0xcf, +0x58,0xf0,0x54,0x80,0x03,0x1b,0xf1,0x00,0x95,0xd8,0xb5,0x82, +0xd7,0xab,0x7e,0x9f,0xe9,0x30,0x75,0x40,0x2a,0x57,0xfb,0xa2, +0xe0,0x74,0xd8,0xab,0x46,0x99,0x57,0x52,0x43,0x0a,0x27,0x56, +0xed,0x4d,0x79,0x82,0x77,0x13,0x7c,0x4c,0xb0,0x06,0x02,0xf7, +0xb0,0x27,0x56,0xad,0x3a,0xb5,0x7e,0x76,0x9c,0x0e,0x6c,0x8c, +0x07,0x9b,0x44,0x58,0x93,0xa6,0x98,0x1e,0x94,0x1e,0x98,0x16, +0xd4,0x54,0xc1,0x3b,0x75,0xd9,0xb5,0xdb,0xd6,0x73,0x23,0x50, +0x83,0x51,0x23,0x50,0x7d,0x16,0xab,0xef,0x6a,0xee,0xc0,0x1c, +0x43,0xc8,0xd1,0x60,0xce,0x18,0x93,0xbd,0xb8,0xeb,0x3a,0x0b, +0x7e,0x7b,0xc9,0x75,0x38,0xb2,0x97,0x15,0x57,0x99,0x12,0xd8, +0xa5,0x8a,0xbb,0x18,0xf0,0x53,0xb8,0x05,0x47,0x54,0xd9,0xf0, +0x39,0x44,0xfb,0x84,0xfa,0x09,0xf5,0x93,0xdc,0x35,0xd8,0xcd, +0xda,0x7b,0xa7,0x85,0xa5,0x87,0xa4,0x85,0x28,0x6e,0xdf,0x4e, +0x8e,0x8a,0x7b,0xf5,0x84,0xbd,0x38,0x4f,0x72,0xca,0xe8,0xc8, +0x60,0x16,0xd3,0x91,0x27,0x15,0x9a,0x52,0x06,0x85,0x3e,0x54, +0x38,0xc7,0x8a,0x8a,0xb8,0x9a,0xb4,0x3a,0xb5,0xd8,0x35,0x59, +0x37,0x36,0xf2,0x36,0x4d,0xe6,0x0d,0x16,0x15,0xdc,0x8c,0x5b, +0xf0,0x8c,0x7c,0xfe,0x5d,0xc5,0x6d,0xa9,0xc0,0x05,0x7e,0x3f, +0x08,0xb5,0x4c,0x52,0x42,0x6c,0xc2,0x71,0xa5,0x2f,0x90,0x6b, +0xae,0x5e,0x03,0x53,0xa2,0x52,0x23,0xe3,0xa8,0x04,0x0e,0x0a, +0x95,0x51,0x18,0xf8,0x7a,0x1f,0xbe,0x0e,0xd3,0xb5,0x71,0x3a, +0xce,0xd3,0xa3,0x0f,0x25,0x70,0x9d,0xe5,0xc6,0x75,0x6b,0x39, +0xe1,0x91,0x3b,0xb9,0xfb,0x45,0xde,0xf5,0xc4,0x6f,0xc7,0x4f, +0xf1,0x7d,0x12,0x13,0xbf,0xae,0x75,0xc3,0xfd,0xb5,0x4d,0xed, +0xfc,0xce,0x4f,0x8e,0x7e,0x1d,0xf8,0x29,0x07,0x6f,0xf7,0xe1, +0x22,0x98,0xae,0x4e,0xff,0x72,0xb2,0xde,0x0f,0x4c,0xc8,0x36, +0xab,0x4d,0xbb,0x36,0x70,0x68,0x01,0xf3,0x49,0x6b,0x49,0x4b, +0x6d,0x43,0x63,0x99,0x67,0xa9,0x67,0xb1,0x67,0x5d,0x23,0xef, +0x55,0xe2,0x5e,0xe2,0x56,0x52,0x56,0x55,0x5c,0x93,0x5f,0x6b, +0x5e,0xc1,0xfb,0x3b,0xfa,0x38,0x79,0xba,0xd8,0x57,0xd8,0x97, +0x3a,0x17,0x38,0xd9,0xf2,0x35,0xbe,0xb5,0x1e,0x35,0x6e,0x0e, +0xf6,0xd6,0x2e,0x96,0x5e,0x1c,0x58,0x79,0x10,0x5f,0x47,0x2f, +0x67,0x37,0x57,0xb7,0x12,0xb7,0x22,0xaf,0x5c,0x07,0x3b,0xbe, +0x34,0xa0,0xcc,0xa7,0xcc,0xcb,0xd6,0xde,0xc2,0xc5,0xd4,0xab, +0xd2,0x9c,0xef,0x2e,0x6b,0xaf,0x6e,0x6e,0xac,0x70,0x2b,0x77, +0x2d,0x76,0xaf,0xaf,0xe7,0xbd,0xca,0x5c,0xcb,0x5d,0xcb,0xcb, +0x2a,0x4a,0xaa,0x0b,0x6b,0x39,0xf8,0x46,0x9c,0x46,0x09,0xc8, +0xba,0x38,0xf6,0xe7,0x43,0x8b,0xd9,0x13,0xe2,0x02,0x2d,0x41, +0x91,0xb5,0xdd,0x80,0x6f,0xe9,0x63,0x94,0x71,0xa1,0x3a,0x0f, +0x2d,0x17,0xe1,0xf5,0x81,0x62,0x98,0xca,0x49,0x3d,0x49,0xa6, +0xc2,0xdf,0x74,0xa0,0xf9,0x70,0xfe,0x79,0x1e,0x23,0xba,0x50, +0xa9,0xd7,0xe2,0x21,0x37,0xe3,0xef,0x33,0xc6,0xb4,0x08,0xbe, +0x3f,0x02,0xba,0x58,0x24,0x29,0x80,0x0c,0xd4,0x3d,0x07,0xef, +0xb3,0x98,0x04,0xef,0x4c,0x98,0x5b,0x27,0xb3,0xe3,0xa6,0xca, +0x17,0xfa,0xf0,0x89,0x3c,0xc4,0x9f,0xea,0xc3,0xca,0x89,0xb9, +0x7e,0x11,0x57,0xd5,0x35,0x69,0xc8,0xcd,0xad,0x54,0xc7,0x2a, +0x86,0x84,0xcb,0xa8,0xca,0xf8,0xbd,0x7f,0x2e,0x68,0x30,0x42, +0x3c,0x46,0x11,0x87,0x6a,0xc3,0x3a,0xb3,0x22,0x3b,0x2b,0xbe, +0xc3,0xeb,0xac,0x5d,0x8d,0x0b,0xf7,0x19,0x26,0x93,0xb6,0x9c, +0xec,0x26,0xe5,0x7b,0xf2,0x92,0x8b,0xb8,0x81,0x3d,0x16,0x76, +0x26,0x3e,0x52,0x19,0xde,0xb8,0xfa,0xf0,0xcb,0x91,0xaf,0x4c, +0xaa,0x79,0x9d,0x4d,0x3b,0xb7,0x2f,0x51,0xe3,0x24,0xe1,0x67, +0xcd,0x86,0xb2,0x86,0x9e,0x3a,0x3e,0xea,0x41,0xf9,0xfa,0xfc, +0x48,0xf6,0x40,0xc1,0xd9,0x62,0x2e,0x30,0xbb,0x2c,0xa2,0x6d, +0x36,0x58,0x80,0x17,0x69,0xd0,0xab,0x3b,0x5c,0xbc,0xa7,0xb7, +0x8c,0x77,0xbf,0xea,0x70,0xd1,0x7a,0x90,0x13,0xb5,0x4f,0x91, +0x60,0x6d,0x4f,0x5d,0x73,0x83,0x2e,0x27,0xbe,0xfb,0x42,0xe9, +0x85,0x8c,0x7e,0x0e,0x6c,0xc5,0x58,0x02,0xbe,0x6a,0xe8,0x8b, +0xfb,0x41,0x4f,0x1d,0x07,0xce,0xf7,0x0b,0x3b,0x74,0x2f,0xc0, +0x05,0x35,0x34,0x65,0x67,0xfc,0xfd,0xcd,0x31,0x33,0x82,0x93, +0xcf,0xc1,0x06,0x2c,0xa3,0x18,0x03,0xb3,0x71,0xc3,0x30,0xbd, +0x69,0xfc,0x00,0x7d,0xc8,0xf8,0x1d,0xc9,0x83,0x45,0x26,0xfd, +0xd4,0xbf,0xf4,0x05,0x46,0x98,0xcc,0xfc,0x57,0xcf,0x44,0x26, +0x28,0x43,0x0d,0x71,0x2c,0x35,0xaa,0xb4,0xce,0x73,0xb4,0xe2, +0x5b,0x7d,0x3b,0x5c,0xaa,0xa8,0x9c,0xbb,0x8c,0x27,0xc8,0x68, +0xd6,0x50,0x41,0x5f,0x31,0x17,0x91,0x59,0x10,0x5d,0x3e,0x9b, +0xd2,0x86,0xc6,0xcc,0xcc,0x5a,0xe5,0x6b,0x92,0xed,0x7e,0x0b, +0xaa,0xb2,0x8f,0x47,0x3e,0xba,0xdd,0x7b,0xdb,0xbc,0x8a,0xd7, +0xdf,0xb9,0x7d,0xcf,0x22,0x1d,0x0e,0xd6,0x69,0xe1,0x87,0x6c, +0x58,0x6c,0x78,0x6c,0xa4,0x92,0x81,0xb7,0x8e,0xbf,0x7a,0x30, +0x27,0xfc,0x4f,0x1b,0x71,0xbd,0x60,0x37,0x64,0x75,0xd6,0xd4, +0x95,0x6f,0x34,0x6e,0xd0,0x2a,0x3b,0xcc,0x89,0x41,0xa0,0x4b, +0xfc,0x8c,0x5c,0x4c,0x8d,0xcd,0xda,0xec,0xf9,0xfe,0x9e,0xea, +0x81,0x9c,0x2e,0x4e,0x08,0x7e,0x26,0x23,0x6e,0x3d,0x96,0x23, +0x56,0xed,0x66,0xae,0x7c,0x7a,0x48,0x7a,0x70,0x7a,0x90,0x66, +0x94,0x3a,0xe5,0xf7,0xdc,0x23,0x38,0x4d,0xc7,0xfd,0x74,0xaf, +0x86,0x3e,0x46,0xa2,0x2e,0x44,0x2e,0x64,0x17,0x1f,0x9f,0x1f, +0x33,0xff,0x44,0x32,0x55,0xb7,0x46,0x49,0xa0,0x99,0x0e,0x07, +0xf2,0x33,0x7d,0xd3,0xfd,0x52,0x03,0x38,0x31,0x9c,0xb2,0x7c, +0x38,0xbc,0x18,0x0f,0x33,0x82,0xea,0xcf,0x64,0x31,0x6a,0xfe, +0x4c,0x71,0xff,0x36,0xe1,0x34,0xb9,0x0d,0xa1,0x67,0x31,0xf4, +0x1a,0xe4,0x9e,0xc5,0xcd,0x6c,0x41,0x61,0x4e,0x71,0x6e,0x99, +0x41,0x09,0xef,0xe7,0xe0,0xe5,0xe4,0xe6,0xc4,0xe1,0x23,0x43, +0x48,0xd8,0x87,0x9e,0x86,0xe0,0xb9,0x0b,0x33,0x0c,0x84,0x6f, +0x7a,0x18,0x71,0x1a,0xe4,0x13,0xff,0x72,0xbf,0x82,0x80,0x5c, +0x7d,0x4f,0x3e,0xcf,0xbf,0xc0,0x2b,0xcb,0x8b,0xc3,0xe3,0x58, +0xf3,0xcf,0x05,0x09,0xfe,0xcb,0xe8,0xaf,0xf8,0x17,0x5e,0x6b, +0x79,0xb4,0xcf,0xd1,0x01,0xb2,0xb3,0x62,0x4e,0xc9,0xfc,0xcc, +0x63,0x46,0xfc,0x2f,0xc7,0x60,0x92,0xcf,0x1d,0x17,0x2e,0x0c, +0x8f,0x90,0xa1,0xb6,0x91,0xf3,0x2d,0x7d,0xd6,0xb5,0xbc,0xad, +0xfe,0xe1,0x23,0x3a,0x56,0xe6,0xdd,0xfe,0x3d,0xb1,0x83,0x1c, +0xa6,0x1b,0x81,0x31,0x56,0xe1,0xbb,0x4c,0x96,0xbe,0x0c,0x58, +0xa6,0x27,0x2b,0xb3,0x57,0x19,0xd4,0x92,0xd8,0xc4,0x9d,0x0f, +0x54,0x60,0xd3,0xae,0x92,0xb3,0xfc,0x96,0xfa,0x23,0x0d,0xa6, +0x8d,0x1c,0xba,0xdf,0x23,0xe8,0x6d,0x0c,0x9b,0x18,0x3f,0xb5, +0x3d,0xfa,0x8b,0x6d,0x8a,0x4c,0x79,0x78,0xab,0xfb,0xee,0xcd, +0x22,0x29,0x9c,0xe3,0x2f,0x63,0x93,0xc8,0xdd,0xde,0x1d,0xf0, +0x06,0xfa,0x0e,0x6b,0x68,0xa2,0x1b,0xbe,0xb1,0xdb,0x7b,0x23, +0x1c,0xd5,0xc2,0xa3,0xcf,0x15,0xf7,0xdb,0x72,0xc5,0x2d,0xe5, +0x62,0x8d,0x3e,0x29,0x7a,0x9a,0xf0,0x4a,0x10,0xfa,0xf8,0x5c, +0x59,0x5d,0xdf,0xa8,0x0e,0x8b,0x23,0xe5,0x76,0x22,0xc5,0x50, +0x69,0xfd,0xbc,0xfb,0x53,0xf1,0x39,0xe4,0xc0,0xf3,0x10,0x86, +0xe3,0x26,0xb0,0x66,0x8e,0xf9,0x04,0x78,0xfb,0xd3,0xb9,0xe3, +0x60,0x00,0xdb,0x19,0x0f,0x67,0x17,0xfa,0x0f,0xd4,0x8c,0x78, +0x55,0xef,0xd5,0xc7,0x70,0x72,0x64,0x96,0x1e,0x0f,0x0b,0xd3, +0xe0,0x8d,0xa2,0x2f,0x9a,0xbf,0xf3,0xfc,0xd2,0xf3,0x13,0xcf, +0x92,0x5e,0x7e,0x57,0xc1,0x8e,0x7c,0xd5,0xbc,0xde,0x9a,0xe6, +0xd6,0x9a,0x5e,0xee,0xb7,0x1e,0x71,0x32,0x93,0x57,0x9c,0x5d, +0x9c,0x59,0xc8,0x41,0x36,0x6c,0xc2,0x13,0x97,0x20,0x80,0xc1, +0x3a,0xd8,0x44,0x70,0xfb,0x35,0x7a,0xca,0xfe,0x7d,0x84,0x8a, +0xe2,0x7d,0xac,0x38,0x8f,0xb2,0xed,0xed,0xbb,0x70,0x3b,0x03, +0x5e,0xb7,0x09,0xec,0xde,0x45,0x59,0xa4,0x2e,0xae,0x24,0x3b, +0xf1,0xe0,0x1d,0x56,0xd8,0xb2,0x93,0x0a,0x85,0x3b,0x74,0x5d, +0xab,0xd1,0x65,0xed,0x6c,0x6a,0x69,0xaf,0xe3,0x86,0x5b,0x5b, +0xf9,0xfc,0xfc,0xfc,0xa2,0xfc,0x22,0xfa,0x24,0x0c,0x5c,0x88, +0xf6,0x35,0x8b,0xeb,0x2e,0x77,0x86,0x40,0xb1,0x18,0x16,0x26, +0xc1,0x06,0xae,0x76,0x08,0xf5,0x98,0xd4,0xee,0xe4,0xfe,0xc4, +0x3e,0xed,0x44,0x0a,0x43,0x94,0xdc,0x71,0xbe,0x16,0xce,0xac, +0xd2,0xe0,0xb3,0x6b,0xb2,0x9a,0x33,0x5b,0xd3,0x71,0x52,0xe1, +0xc2,0xfa,0x65,0xf6,0x2a,0x46,0xbb,0x0f,0xee,0xaf,0x35,0xe2, +0x47,0x2e,0x76,0x5e,0xae,0xbf,0x5e,0xbd,0xb7,0xe5,0x40,0xef, +0x61,0xee,0xd9,0x72,0xa1,0x79,0x3c,0xba,0x7f,0x9c,0x52,0xcd, +0xfa,0xa4,0x7f,0xcb,0x38,0x22,0x9a,0xf6,0xd2,0x87,0xf2,0x72, +0x11,0xca,0x43,0x5c,0x5f,0xf1,0x03,0x9d,0xc3,0x0f,0xe8,0x22, +0x84,0x1f,0xe0,0x02,0xc1,0xf9,0x30,0x05,0xde,0xe9,0xc3,0x0b, +0x7a,0x30,0x1d,0xa7,0xa0,0xb2,0x5e,0x87,0x98,0xcc,0xf8,0xc5, +0xf8,0x9d,0xf4,0x3f,0x91,0xa2,0xc3,0x7f,0x9a,0xfe,0x59,0xee, +0xfd,0x7c,0x0e,0xdf,0x19,0x1c,0x9b,0xd7,0xc5,0x82,0x55,0x2b, +0x39,0x8e,0xb3,0x83,0x70,0xba,0x2d,0xbe,0x6e,0x0f,0xaf,0x05, +0xc3,0xd4,0x08,0x50,0xe2,0xf0,0x53,0xdc,0x24,0x99,0x36,0xdf, +0x93,0x4c,0x9b,0xef,0xa1,0x2a,0x81,0x99,0x74,0x7b,0x26,0xdd, +0x36,0x20,0xd2,0x06,0x63,0x1a,0x6a,0x12,0x6e,0x12,0x49,0x1f, +0xc3,0x5b,0x63,0xbb,0x49,0x42,0x73,0x7c,0x73,0x9c,0x14,0x77, +0xc4,0x9c,0xb0,0x8a,0xb1,0x8a,0xb6,0xe2,0x54,0xac,0x17,0xbc, +0x92,0xa6,0x39,0x5e,0xac,0x71,0x9d,0x7c,0x3e,0x5f,0x7d,0x1e, +0x83,0x5c,0x38,0xf4,0xa2,0x2c,0xc4,0x6d,0xdc,0xd0,0xd0,0xb8, +0x07,0x56,0x45,0x65,0x47,0x9c,0x0e,0x0b,0x97,0x8a,0xf2,0x49, +0x20,0xe4,0xf5,0xce,0x8b,0x4c,0x34,0x05,0xc4,0xc7,0x2d,0x38, +0xc1,0x97,0x49,0x6c,0x4d,0x6c,0x4d,0x68,0xe5,0x2e,0x77,0x31, +0xf8,0xd1,0x5d,0x72,0xd2,0xf3,0xa4,0xc7,0x09,0x4f,0xc9,0x2c, +0x25,0x39,0x8a,0xcf,0x94,0x70,0x60,0xaa,0x42,0x9e,0x6f,0x6e, +0x62,0x9e,0x1f,0xf6,0x34,0x21,0x31,0xee,0x27,0xdc,0x63,0xdc, +0x39,0x5c,0xc3,0xa4,0x7f,0x2a,0x03,0xc3,0xcd,0x24,0xbe,0x2c, +0xae,0x2c,0xbe,0x4c,0xfa,0xad,0xd0,0xcd,0x32,0x71,0xf7,0x1c, +0x22,0xbe,0x29,0x44,0x09,0x6f,0xb2,0xda,0xf8,0x3a,0x11,0x15, +0x2e,0x0b,0x0a,0x0c,0xee,0x9e,0x2c,0x2a,0x5c,0xa1,0x1b,0xa2, +0x02,0xbe,0x41,0x04,0x85,0xfd,0xa2,0x02,0x03,0xb1,0xef,0x93, +0x2b,0xbe,0x3f,0xda,0xdc,0xb2,0x2f,0xeb,0xe0,0xf7,0xd7,0x2c, +0x6e,0xde,0x9f,0xc7,0x89,0x33,0x50,0x99,0x7c,0x5c,0xf8,0xa8, +0x65,0xb0,0xc1,0xa1,0x91,0xd7,0x77,0x5a,0x65,0xb3,0xdd,0x9f, +0x93,0x02,0xef,0xac,0xa5,0x5e,0x08,0xff,0xee,0x2c,0x7a,0x1e, +0x76,0xf7,0xb2,0x11,0xc6,0xef,0xa5,0xff,0xe6,0x2c,0xba,0x25, +0x77,0x16,0xe5,0xc3,0x7d,0x62,0x20,0x9c,0xef,0xc1,0xcc,0xdb, +0x50,0xda,0x83,0xa5,0x1f,0x69,0x6e,0xc7,0x34,0x03,0x48,0xdb, +0xc5,0xa2,0xdb,0x7c,0x82,0xbb,0x85,0x33,0x14,0x4a,0x88,0xda, +0xf8,0x36,0xf9,0x44,0x98,0xb5,0x85,0xc5,0x4a,0x7c,0x93,0x84, +0x95,0x06,0x97,0x05,0xe7,0xeb,0xf9,0xf1,0x59,0xbe,0x99,0x1e, +0x69,0x1e,0x1c,0x94,0x9d,0x22,0x99,0xc5,0x19,0xe5,0xa9,0x25, +0x5a,0xd9,0x7c,0xb8,0x73,0x88,0x6b,0x80,0x23,0x27,0x2a,0xe8, +0x09,0x42,0x1f,0x23,0x9e,0xc2,0x9f,0x48,0xbd,0x30,0xdf,0x6e, +0x04,0x02,0xc5,0x6c,0x0c,0x64,0x05,0x73,0x38,0x40,0x96,0x89, +0xf3,0x25,0xe6,0x50,0x29,0x58,0xbd,0x9a,0x1a,0xfe,0xde,0x2b, +0x81,0x83,0x6f,0xe9,0xc8,0x0b,0x8f,0x4a,0x16,0xbb,0x0d,0xf2, +0x58,0xc4,0x2b,0x4f,0x4b,0xc6,0x2d,0x76,0x05,0x2f,0x57,0xf8, +0x35,0xba,0xc2,0x9b,0x64,0xdd,0x42,0x24,0xc1,0x76,0x21,0x01, +0xda,0x59,0x51,0x0f,0xa7,0x92,0x9b,0x82,0x12,0xbd,0x62,0x25, +0x9c,0x49,0x3e,0x12,0x94,0xb6,0xb3,0xc0,0xe0,0x64,0x22,0xfe, +0x61,0xd0,0x20,0x4e,0x62,0xfc,0x4e,0xfa,0x9d,0xf0,0x3b,0x99, +0xa2,0xc7,0x7f,0x97,0xfe,0x4d,0xf6,0xcd,0x1c,0xee,0xfd,0x7e, +0xc1,0x9f,0x22,0x6c,0x31,0x4b,0x82,0x7f,0x1f,0x6c,0x65,0x21, +0x15,0x13,0x49,0xdb,0xe5,0xca,0xbb,0x69,0x9f,0x72,0xcd,0x98, +0x6c,0x04,0xa6,0x6c,0x98,0x9a,0x8f,0xa6,0x93,0xbe,0x4b,0x87, +0x77,0x8f,0xff,0x79,0x63,0x3f,0xbe,0x70,0x5f,0xb9,0x46,0xa3, +0xae,0xa3,0x85,0xa5,0xad,0xb1,0x6b,0xb5,0x19,0xdf,0x51,0xd1, +0xda,0x58,0xd7,0x56,0x67,0xd5,0x62,0xdb,0x6d,0x5f,0xd9,0xc9, +0x1b,0xd4,0x5b,0xd5,0x39,0x51,0xb1,0x96,0x0a,0x96,0x64,0x13, +0x7e,0xf0,0x80,0x12,0x95,0xc9,0xf0,0xc1,0x0e,0xc6,0x2c,0x5c, +0x3f,0x42,0x37,0x8a,0x8e,0xd8,0xae,0x71,0x77,0xab,0x14,0x49, +0xcd,0x3e,0x8f,0xa4,0x7e,0x1e,0x69,0xf9,0xbc,0xa6,0x47,0xcb, +0x84,0xec,0xbd,0x8e,0xcb,0xeb,0x9b,0x0f,0xc2,0xfc,0x89,0xa4, +0x57,0xa9,0x83,0xc6,0x4f,0x30,0x65,0x00,0xa7,0x48,0xde,0xd6, +0xdd,0xce,0x04,0x1f,0x0b,0x6e,0xf0,0x98,0x3d,0x2a,0x35,0xa2, +0x7f,0xf6,0x3d,0x3c,0x63,0xf0,0x19,0xce,0x27,0xf0,0xec,0x03, +0x7c,0xc6,0x68,0x8b,0xf7,0x49,0x3f,0x2c,0xd3,0x1d,0x10,0x6c, +0x30,0x5d,0xb4,0x61,0xe1,0xb2,0xc2,0x60,0x3f,0xac,0xd1,0x1d, +0xa2,0x9f,0x0b,0x99,0x39,0x74,0x95,0xe1,0x32,0xba,0xe6,0x96, +0x31,0x70,0x1b,0x29,0xc3,0x5a,0x03,0x6f,0xc1,0x1a,0x29,0xe7, +0x6b,0x27,0x81,0x65,0x38,0x1b,0xe9,0xfe,0xab,0xc0,0x13,0x58, +0x83,0xbc,0xd4,0xec,0x1c,0x72,0xa4,0x12,0xb9,0x39,0x54,0x8c, +0x86,0xcb,0x95,0xf6,0x14,0x39,0x83,0xfa,0x8f,0x3e,0xd7,0xfc, +0x17,0x82,0x78,0x09,0x1d,0xa6,0x22,0x58,0x4f,0x40,0xab,0x48, +0xe6,0xcf,0x1e,0x2c,0x75,0x1b,0x55,0x82,0x18,0xa6,0x23,0x27, +0xa3,0x41,0x79,0x90,0xd5,0x4f,0x97,0xed,0xc3,0x48,0xd6,0x2e, +0x3c,0xbd,0x59,0x39,0x97,0x85,0x2b,0x8d,0x31,0x5d,0x38,0x6a, +0x2b,0x1b,0x61,0xa1,0xb6,0x36,0xba,0x03,0x2b,0x1c,0x64,0xe7, +0xd8,0x9f,0xb2,0xbe,0xce,0x19,0xcd,0xf1,0x6f,0xe7,0x17,0xb8, +0xa0,0x91,0x13,0x6e,0x0f,0x4d,0x32,0xe5,0x87,0xe3,0x47,0x93, +0xce,0x27,0x71,0x9a,0x2c,0x6a,0x79,0x27,0x9a,0xc1,0x91,0x42, +0x99,0x06,0x8b,0x06,0x5e,0x32,0xe1,0x9a,0x78,0x99,0x6c,0x66, +0x1c,0x22,0x52,0x1a,0x94,0x47,0x59,0x58,0x99,0x1f,0xdd,0x85, +0x4b,0xfc,0x65,0x57,0x58,0x50,0xce,0x3d,0xde,0x89,0x8a,0x01, +0xb2,0x51,0xb6,0x3d,0xa5,0x39,0xad,0x3a,0x3d,0xa0,0x85,0x57, +0xf3,0x5a,0xe4,0xbb,0x2c,0x2a,0xc5,0x8c,0xaf,0x8a,0xab,0x8e, +0xaf,0x4e,0xe4,0xe8,0x29,0x98,0xe0,0x04,0x13,0x78,0x2d,0x53, +0x76,0x88,0xc5,0x69,0xc1,0xf1,0x46,0xc0,0x65,0xc9,0xf6,0xb3, +0x47,0x8a,0xbc,0x47,0x94,0xbe,0x61,0x9a,0x33,0xe9,0x25,0x5f, +0x62,0x8d,0x32,0x64,0xe2,0xea,0xed,0xc4,0x21,0x32,0xa5,0x46, +0xf9,0x32,0x0b,0xf3,0xa4,0xaf,0x50,0xf2,0xa7,0xe7,0x85,0xb7, +0x72,0xa3,0x3b,0x71,0x7a,0xa0,0xec,0x02,0xdb,0x94,0x5a,0x9f, +0x56,0x91,0x1a,0xd4,0xca,0x6b,0xfb,0xae,0xf2,0x5e,0x1f,0x9e, +0x6a,0xca,0x97,0xc6,0x97,0x25,0x94,0x25,0x70,0x5a,0xec,0x5c, +0xfa,0x0d,0xbf,0x66,0xca,0x8e,0xb0,0xf8,0x66,0x60,0xa2,0x11, +0xfc,0x25,0x5b,0x76,0x80,0x55,0x97,0xbe,0xe0,0x01,0x05,0x2c, +0xe3,0x5f,0x90,0x2e,0x53,0xa1,0x18,0x4a,0x6b,0x2c,0x81,0xa0, +0x2b,0x93,0x50,0x94,0x50,0x1c,0x57,0x64,0x90,0xc8,0x9f,0xf0, +0x88,0xf6,0x8c,0xf2,0xe4,0xe6,0x1b,0x7d,0xcd,0xb8,0x7e,0x68, +0xbc,0xe5,0x90,0x7a,0x99,0x31,0x5f,0x90,0x9f,0x5f,0x98,0x5b, +0xcc,0x99,0xc3,0x17,0xdd,0xf8,0xee,0x57,0x30,0xb3,0x13,0x8f, +0x4b,0x65,0xe3,0x8b,0x92,0x8a,0x39,0x08,0x66,0x9e,0x05,0x60, +0x86,0x64,0x0a,0xff,0xbe,0x6f,0xc5,0xff,0xd5,0x68,0xa6,0x0b, +0xf3,0xc7,0x5d,0x2c,0x8a,0xf0,0x39,0x7c,0x45,0x30,0xf0,0x1f, +0xaf,0xf5,0x8d,0x5d,0x83,0x99,0x4c,0xe4,0x61,0x47,0x7c,0xc3, +0x64,0x15,0xd7,0xb3,0xb3,0x6a,0xb5,0xea,0x2c,0xb5,0x60,0x27, +0x73,0x25,0x1b,0x26,0x55,0x53,0xd6,0xc2,0x5c,0xae,0xea,0xf8, +0xf3,0x2b,0x87,0x07,0xa6,0x57,0x94,0x9b,0xee,0xd6,0xc1,0xa4, +0xcc,0xaf,0x39,0x30,0xc3,0x58,0x82,0x73,0x98,0xfc,0xf2,0xbc, +0x8a,0xec,0x2a,0xee,0x73,0xba,0x18,0x9f,0x51,0x71,0x7f,0x10, +0x9c,0xf1,0x4d,0x64,0xd9,0x4c,0x43,0xd9,0x4f,0x4c,0x5b,0x56, +0x56,0xab,0xb2,0xb0,0x06,0xef,0x88,0x3e,0x2c,0x14,0xc0,0x18, +0x41,0xe7,0x7b,0xe0,0xcc,0x50,0x1e,0xfc,0x26,0x01,0xe7,0xcd, +0xe8,0x2c,0x2f,0x1b,0xaf,0xf3,0xbc,0x0c,0x96,0x24,0x2a,0x16, +0x81,0x6c,0x48,0x4a,0xfe,0xfd,0xcf,0xf5,0x52,0x42,0x26,0xac, +0x4b,0x9f,0xe3,0x6a,0x29,0xc8,0xf8,0x26,0x1c,0x26,0x66,0x15, +0xb6,0x95,0xce,0x55,0xcd,0xd5,0xb5,0x75,0x15,0x0d,0x14,0xbb, +0x78,0x38,0xd8,0xd9,0xda,0xb9,0x04,0x14,0x04,0x17,0x86,0x14, +0xb6,0xd4,0xd4,0x35,0x95,0x35,0x58,0xd7,0xf0,0x3e,0x4e,0xce, +0x76,0xf6,0xae,0x41,0x75,0x61,0xf5,0x91,0x0d,0x7a,0x61,0x7c, +0x31,0x2a,0xde,0x43,0x1e,0x76,0xe2,0x14,0x4e,0xb4,0x80,0x25, +0xc4,0xd9,0xde,0xd6,0xd1,0xd4,0xb9,0xda,0x98,0x87,0x19,0xdf, +0x3c,0x80,0xd7,0x2a,0x28,0x15,0xe8,0x44,0x6d,0x7d,0x98,0xc5, +0x86,0x59,0xf8,0x99,0xbb,0x58,0xba,0x56,0x58,0xd5,0x38,0x17, +0x3a,0xd9,0xf0,0x95,0x3e,0xcd,0xf6,0x15,0x2e,0x5c,0xd7,0x1a, +0x02,0x45,0x7d,0x58,0xc4,0x6c,0xc6,0x79,0x74,0x44,0x85,0xbd, +0xe0,0xca,0x8a,0xd3,0x71,0x2b,0xa1,0xea,0xf3,0x0e,0x4e,0x61, +0xf5,0x76,0x93,0x50,0x63,0x6f,0x4d,0x77,0x43,0x0e,0x6f,0xeb, +0x0a,0xe7,0xfa,0x71,0x0f,0x53,0xd0,0x52,0xd0,0x97,0xd1,0xc2, +0xa1,0xdf,0x02,0x12,0x51,0xef,0xdf,0x17,0x50,0xa3,0xef,0xcb, +0xe7,0x38,0xe4,0xe9,0xa7,0xda,0x4f,0x84,0x09,0xbc,0x2a,0xf9, +0xbf,0x1f,0x58,0xf1,0xcf,0x61,0x02,0x54,0x6e,0xae,0xf9,0xff, +0x85,0x09,0x50,0x54,0x07,0xe7,0x05,0x4b,0x72,0xf1,0xc8,0x61, +0x2a,0xee,0x85,0x1f,0x7a,0x58,0xdc,0x8c,0x1b,0x49,0x4e,0x45, +0x56,0x75,0x7a,0xa5,0x7e,0x1e,0x1f,0xe6,0x12,0x60,0xee,0x6d, +0xcb,0x21,0xea,0x0b,0x3f,0xf5,0x32,0xe2,0xf2,0x22,0x12,0x5e, +0x71,0xac,0xf6,0x58,0xb1,0x81,0x2f,0x9f,0xe9,0x95,0xe5,0x90, +0xe2,0xc6,0x09,0x7b,0xc4,0x3a,0xd2,0x8f,0x45,0x37,0xe1,0x38, +0x0c,0x88,0x05,0x38,0x00,0xfe,0xbb,0x31,0x41,0x17,0x12,0x54, +0xb0,0x52,0x67,0x8c,0x1d,0xc0,0xee,0x7b,0xac,0xb6,0x30,0x8d, +0xa8,0xe0,0x8e,0x7b,0x94,0xb4,0xaa,0x90,0x7b,0x70,0x48,0x85, +0x15,0x57,0x18,0x11,0xd8,0xb1,0x05,0x77,0x48,0xa4,0xf5,0x13, +0x38,0xb4,0x85,0xc2,0xdd,0x4d,0x63,0x53,0xc9,0xa7,0x70,0xac, +0x17,0x8f,0x7d,0x74,0x74,0x3b,0xba,0xe9,0x83,0xdb,0x66,0xc9, +0x8b,0x79,0xa3,0x8f,0x7d,0xb6,0x0c,0xb7,0xbc,0x2c,0x9b,0xf9, +0x3c,0x48,0xfb,0x5f,0x4a,0x33,0xbf,0xd4,0xf6,0xf1,0x13,0xc1, +0x8c,0x49,0x2f,0xac,0xfa,0x92,0x86,0x83,0xe6,0x7a,0xe2,0x1a, +0xe3,0x10,0x63,0x7f,0x82,0x7b,0xf0,0xcb,0xd9,0x0f,0x3e,0xd1, +0xde,0x82,0x93,0x0c,0x61,0xd2,0x87,0xac,0xe5,0x09,0xf3,0x13, +0x16,0x27,0x13,0x74,0xf9,0x5f,0x93,0x7e,0x4d,0xf9,0x28,0x9d, +0x2b,0x0a,0x22,0xd0,0xdc,0x83,0xd3,0xbf,0x84,0xd7,0xce,0xe2, +0x6b,0x9f,0x68,0x6d,0x99,0x67,0xf8,0x9b,0x64,0x96,0x86,0x13, +0xf8,0x23,0x79,0x9f,0x71,0x8e,0x48,0xaa,0x92,0x28,0xb3,0x71, +0xbf,0xf8,0x44,0x17,0x76,0xb0,0xa1,0xf3,0x77,0x1a,0xe0,0x1c, +0x87,0x42,0x6d,0x1e,0x76,0xb4,0x7e,0x7c,0x37,0x1d,0xfe,0xca, +0x01,0x87,0xf3,0x98,0xfd,0xf9,0x3e,0x57,0x94,0xe0,0x0d,0x2a, +0xde,0xb2,0xa5,0xe4,0x63,0xed,0x5c,0xd9,0x8c,0xb1,0xd0,0xb1, +0x55,0xf4,0xb6,0xb5,0x70,0xc7,0x6a,0xd8,0xa1,0x89,0x3b,0xd0, +0x50,0x47,0x78,0x32,0xc0,0x3e,0xdb,0x81,0x16,0x54,0xae,0xbe, +0xa8,0xbc,0xfd,0xde,0x0f,0x03,0xcb,0xc7,0x57,0xe9,0xf4,0x89, +0x2c,0xcb,0x57,0x00,0x6e,0xf1,0x78,0x0c,0x7a,0x9e,0x94,0x6a, +0x34,0x9e,0x55,0x2b,0x07,0xb8,0x32,0x50,0x15,0xde,0x21,0x01, +0xcd,0xde,0x5d,0x6e,0x0d,0x26,0x9e,0x7c,0x89,0x4d,0x91,0x45, +0x2e,0x85,0x31,0x8b,0x61,0x11,0x09,0xb6,0x72,0x37,0xf3,0xb4, +0xe9,0x74,0xe7,0x4b,0xeb,0xca,0x7b,0xb2,0x5b,0xb8,0xa6,0x67, +0x8b,0x48,0x1f,0x56,0x9d,0x61,0xbf,0x85,0x98,0x5e,0x8c,0xf9, +0x12,0xb2,0x7b,0x71,0x2d,0x9b,0x57,0x95,0xd7,0x9a,0x51,0xaf, +0x9d,0xc3,0x1f,0xb3,0xf0,0x37,0xf7,0xb4,0xe4,0xf0,0x67,0x7d, +0x38,0xb9,0x16,0x7d,0xf5,0xc1,0x77,0x15,0x73,0x12,0x33,0xf5, +0x20,0x9e,0x75,0xdd,0xb3,0x4a,0x1f,0xf7,0x18,0x16,0x50,0x02, +0x63,0x70,0xee,0xf1,0x48,0xd6,0x6f,0x5c,0x12,0x93,0xb9,0xe8, +0xa9,0x06,0x1c,0x39,0x52,0x38,0xcc,0xe3,0xa6,0xfe,0x15,0xdd, +0x2e,0xd7,0x38,0x7c,0x03,0x44,0x12,0x5a,0x15,0xd4,0x1c,0x50, +0xa1,0xe3,0xcf,0xe7,0x38,0x67,0xdb,0xa7,0x3b,0x50,0xd8,0x76, +0x54,0x78,0x97,0x88,0x1e,0x37,0x85,0xd5,0x30,0x88,0xe1,0x4c, +0xea,0x8b,0x98,0x3a,0xcf,0x70,0x57,0x29,0xeb,0x52,0x55,0xec, +0x10,0x8c,0x99,0x9d,0x31,0x7a,0x91,0x66,0x4a,0xf6,0x51,0xc7, +0x82,0xcc,0x67,0xef,0x65,0xd2,0xb5,0x64,0xd7,0x99,0xab,0x15, +0x65,0x17,0xd2,0x95,0xd3,0x47,0xe2,0xaf,0x00,0x3b,0x4b,0x34, +0xbe,0x23,0x78,0x30,0xcf,0x16,0xc3,0x8c,0x89,0xb4,0xcb,0xd0, +0xf1,0x2e,0xca,0xe3,0xad,0x83,0xa4,0x19,0x31,0x47,0x1b,0xde, +0x99,0x08,0x19,0x7e,0x99,0x79,0x97,0xf8,0x22,0xf3,0xee,0x79, +0xc4,0xb0,0x3c,0x09,0xc4,0x4c,0x58,0x48,0xe7,0xe5,0xef,0x74, +0x5e,0xfe,0x4e,0x61,0xc2,0x56,0xfc,0xfd,0x63,0x16,0xd2,0xc4, +0x95,0x24,0xc7,0x39,0x5f,0x27,0xcd,0xa6,0x2d,0x97,0x0f,0x69, +0xf4,0xeb,0x0f,0xa8,0xe4,0xc4,0x99,0x98,0x44,0x3a,0x6e,0x94, +0x7f,0x99,0x7e,0x4b,0x3f,0x9d,0x0f,0x39,0xe0,0xb1,0xd5,0xf4, +0x10,0x07,0x4d,0x94,0x0e,0x66,0x1b,0x66,0x1d,0x4d,0xd5,0x3a, +0x9b,0xc1,0x87,0x0d,0x05,0x0e,0x07,0x76,0x73,0xb8,0xe2,0x18, +0x49,0x3b,0x90,0xb4,0xf3,0x8c,0x5a,0x7f,0x32,0x7f,0xe2,0x6a, +0xc4,0xd5,0x90,0x2b,0xf4,0xd6,0x35,0xc6,0xd6,0x12,0xb4,0x60, +0x8a,0x8b,0x8b,0x2a,0x73,0x2a,0xb8,0x7a,0x3c,0xcd,0x26,0x67, +0x26,0x67,0x24,0x66,0x18,0xe5,0xf2,0xf6,0x87,0x54,0x3e,0x5c, +0xa7,0x5d,0x69,0xce,0x57,0x17,0xc8,0x70,0x31,0x8b,0xae,0x96, +0x52,0x1a,0xfa,0x2c,0xa5,0x0e,0xed,0xaf,0xe1,0xed,0x46,0x98, +0x9b,0x0e,0x2b,0x14,0x05,0xff,0x0e,0x0a,0x74,0x63,0x4b,0x63, +0x4b,0xcb,0x66,0xc1,0x0a,0x98,0xcd,0x06,0x59,0x58,0x7a,0xa9, +0x06,0x15,0x98,0xf0,0x3f,0x14,0xf4,0x75,0xe4,0x8e,0x72,0xd7, +0x74,0x19,0x87,0x1c,0xbf,0x36,0xa5,0xdf,0x99,0xba,0xcc,0xb4, +0x6a,0xe5,0x3a,0xd6,0x38,0x43,0x66,0xb0,0x91,0xf5,0x8f,0x48, +0x2c,0x50,0x6e,0x82,0xfd,0xec,0xb3,0xdd,0xb8,0xfe,0x79,0x1a, +0x6f,0xd8,0x78,0x25,0xa3,0x01,0xa9,0x92,0x91,0x84,0xb0,0x66, +0xe8,0x50,0x0e,0x25,0x9f,0x62,0x13,0x3e,0xd1,0x8b,0x92,0x4f, +0xf4,0xdb,0x71,0x0c,0xf2,0x3c,0x91,0xf7,0x92,0x7c,0x8a,0x09, +0x6b,0x05,0x55,0x72,0xcc,0xdb,0xdb,0xc3,0x83,0x52,0x4a,0x07, +0xa6,0xb8,0xa8,0xa8,0x24,0x9f,0xa2,0x5f,0xc0,0x11,0xd2,0x2e, +0xfe,0xc5,0x8c,0xf5,0xa1,0xe8,0xd4,0x4c,0x58,0xd6,0xce,0xe2, +0xec,0xc9,0xed,0xe2,0x32,0x33,0xb6,0x1b,0x4f,0x92,0x66,0x18, +0xb5,0x1a,0x06,0x7d,0x71,0x13,0xea,0xb3,0xc2,0xa4,0x2f,0x08, +0x8e,0x5e,0x85,0x51,0x46,0xaa,0xec,0x26,0x0f,0xa3,0x1e,0x97, +0xe4,0xd1,0x30,0xfb,0x4f,0x67,0xe1,0x87,0x3e,0x54,0x65,0xb2, +0xcb,0xb2,0xca,0x32,0xaa,0xf4,0x73,0xf9,0x63,0x0e,0x41,0xf6, +0xde,0x0e,0x1c,0xfe,0xbd,0x96,0x4e,0xa8,0xff,0x5c,0xf1,0xed, +0x79,0xf4,0xc9,0xa7,0xb8,0x95,0x0a,0x78,0x18,0x12,0x1c,0xc8, +0x15,0xb5,0x03,0x18,0xa3,0x2f,0x8c,0xf6,0xb2,0x22,0x8b,0x8a, +0x24,0xb4,0x3c,0xb8,0x32,0xb8,0xc0,0xc0,0x8f,0xcf,0xf6,0xc9, +0x72,0x49,0xa3,0x08,0x7d,0x32,0xca,0x08,0x76,0x09,0x11,0xd0, +0xc5,0x8a,0x07,0x71,0x1a,0xb9,0x21,0xcc,0xdc,0xc3,0xd2,0xb1, +0x9e,0x49,0xee,0x09,0x33,0x55,0xd8,0x05,0x38,0x97,0x38,0x94, +0xab,0x37,0x58,0x14,0xb8,0x58,0xf2,0x6d,0x3e,0x83,0x76,0x75, +0xae,0x94,0x71,0xd3,0xdf,0x6b,0x1e,0xac,0xb9,0x95,0x77,0x45, +0x2f,0x97,0x0f,0x50,0x73,0x3a,0x60,0xad,0xc7,0x09,0xe1,0x74, +0x95,0xd5,0x9b,0xb7,0xed,0x28,0x3d,0xda,0x5d,0xc9,0x7b,0x0e, +0x99,0xde,0xb1,0xeb,0xa0,0xe0,0x0f,0x55,0x88,0x73,0x58,0x42, +0xad,0x32,0xfc,0x4d,0x1d,0x95,0xd8,0xc3,0x45,0x7e,0x17,0x95, +0x60,0x1b,0xd3,0x9a,0x93,0xd3,0xaa,0xfc,0x91,0xd4,0xfc,0x67, +0x31,0x3b,0x43,0xe8,0x16,0x9a,0x48,0x69,0x69,0x61,0x79,0x7e, +0x79,0x91,0x6e,0x95,0x61,0xa3,0xb9,0x89,0xa5,0xba,0xc3,0x76, +0xc7,0x32,0x43,0xfe,0x93,0xba,0x4b,0x0d,0xbd,0x1d,0x7d,0x86, +0x17,0x2d,0xee,0xda,0x94,0x9d,0xe5,0x55,0xeb,0x35,0x9a,0x8c, +0xdb,0xba,0x06,0x6a,0xaf,0x14,0x7f,0xc1,0x0d,0xf6,0x61,0x01, +0x93,0x59,0x99,0x56,0x95,0x52,0xa9,0x93,0xc6,0x3b,0x2f,0x36, +0x5e,0xbf,0x6b,0x07,0x87,0x4f,0xfe,0x24,0x81,0x87,0xcc,0xf6, +0x1e,0xd4,0x6e,0xb4,0xe2,0x0b,0x73,0x0b,0x8a,0xf2,0x8a,0x39, +0x9c,0x0d,0xfe,0xb0,0x12,0x1d,0xd8,0xb4,0xec,0xd4,0xec,0xe4, +0x6c,0x29,0x24,0x78,0xcf,0x89,0x03,0xd1,0x36,0x4a,0x56,0xc7, +0x83,0x43,0x4d,0x66,0x9b,0x32,0xd9,0x06,0xb2,0x7a,0xe6,0x6e, +0x75,0xdd,0xa5,0x64,0xe5,0xa4,0xde,0x33,0x77,0x7e,0x9d,0x85, +0x9d,0x4c,0x42,0x46,0x7c,0x7a,0x5c,0x3a,0x57,0xd2,0x03,0x33, +0x0d,0xfa,0x7b,0xe0,0xbd,0x6e,0x7c,0xef,0x82,0xae,0x1a,0xce, +0x94,0xde,0x66,0x1b,0xc1,0x6c,0x73,0x66,0x4c,0x49,0xc1,0x6f, +0xbf,0xbb,0xae,0xb5,0x89,0x45,0xb7,0xd3,0x80,0xcf,0x28,0x17, +0x1b,0x7b,0xfa,0x74,0xec,0x2c,0xfc,0x1e,0x0f,0x93,0xfd,0xc8, +0x5f,0x65,0xc7,0x4e,0xe1,0x20,0x19,0x12,0xd7,0x3f,0x38,0xb2, +0x49,0xb2,0x99,0xfd,0x4b,0xd5,0xa2,0x5b,0x4f,0xcf,0xb6,0x3c, +0xe6,0x92,0x30,0x79,0x14,0x92,0x13,0x99,0x96,0x85,0x30,0xc5, +0x10,0x62,0x55,0xa5,0xaa,0x45,0xee,0x52,0xd5,0x22,0xf5,0x5b, +0x74,0xc1,0x18,0x7b,0x12,0x8d,0x2b,0xe6,0x17,0x1c,0x2f,0x9d, +0x07,0x85,0x42,0x98,0x97,0x08,0xfb,0xb9,0xc6,0x61,0x34,0x60, +0xb2,0xfa,0xd3,0xfa,0x92,0xbb,0x75,0x92,0x78,0x7f,0xe4,0x9c, +0x90,0xec,0xc5,0x99,0x1c,0xb4,0x53,0xc2,0x98,0x52,0x94,0x52, +0x1d,0x9f,0xaf,0x93,0xc8,0x1f,0x77,0x8d,0x70,0x89,0xf4,0xe1, +0x96,0xe2,0x85,0x3f,0x57,0xe1,0x42,0xbd,0x87,0x16,0x0c,0xbe, +0xe3,0xb2,0x4a,0x65,0x97,0x52,0xbd,0xc9,0xf5,0xeb,0x75,0x9f, +0x64,0x3c,0x52,0xa4,0xd2,0x41,0xe7,0xa4,0x69,0x8c,0xbd,0x92, +0x7d,0x4c,0x58,0x84,0xe3,0x6c,0x55,0x29,0xbe,0xe3,0x2a,0x73, +0xbe,0xb4,0x68,0x38,0x49,0x39,0xb1,0x33,0xae,0xff,0xb7,0x59, +0x78,0x90,0x89,0xcd,0x3c,0x9d,0x95,0x35,0xab,0x15,0xdc,0xfa, +0x70,0xe5,0xb7,0x4f,0xd8,0x13,0xc7,0x63,0xa2,0x62,0x8e,0xb7, +0x58,0xf1,0xf9,0x95,0x79,0xf5,0x39,0x4d,0xa9,0xf8,0x56,0xe1, +0xfc,0xb6,0xc5,0x0e,0xfb,0x8c,0x0e,0x1f,0x3a,0x54,0xaf,0xcf, +0x8f,0x5c,0xe8,0xbc,0x50,0x7f,0xb1,0xe6,0x48,0x9b,0xfa,0xc0, +0x21,0xee,0x99,0x0a,0x1d,0x52,0x39,0x60,0x8a,0x0c,0x93,0x32, +0xed,0x66,0x3d,0xea,0x5b,0x02,0x1a,0x3a,0x14,0x24,0xbf,0xae, +0xf7,0x74,0xa2,0x8f,0xc4,0x1e,0x9c,0xd2,0x60,0xc8,0x0f,0x3e, +0xca,0x7f,0x12,0xff,0x05,0x9d,0xbd,0xc9,0x03,0x42,0xc2,0x84, +0xaa,0x1a,0xc0,0xd5,0x75,0x0d,0xb2,0x9f,0xe1,0x32,0xf9,0x1c, +0xb6,0xaf,0x67,0x61,0xbb,0x37,0x89,0x4d,0x38,0x43,0x5f,0x1c, +0x4c,0x63,0xa2,0x71,0x79,0x10,0xce,0xb0,0xc4,0xd7,0x6c,0x1e, +0x07,0x01,0x13,0x01,0x2b,0x38,0xfc,0x7e,0x0e,0xf9,0x12,0xb6, +0xaf,0x65,0x25,0x12,0x68,0x23,0x95,0x0e,0x3c,0x13,0x1a,0x3a, +0xd1,0x1b,0x44,0xc6,0xe4,0xdb,0xc2,0xbc,0xbb,0xbf,0x7e,0x54, +0xf1,0x48,0x31,0x89,0x29,0x5d,0x01,0x6f,0xec,0x80,0x05,0xdb, +0x2b,0x07,0x78,0x9c,0x77,0x67,0xc9,0x0d,0xcb,0x07,0xdc,0x3e, +0xc6,0x6e,0xfb,0x26,0x15,0x9c,0xab,0xca,0xd5,0x48,0x05,0xca, +0x9f,0xa7,0x7e,0xb1,0xff,0x96,0xc0,0xfb,0x32,0xf5,0x4b,0xae, +0x6f,0xae,0x8d,0xb7,0xce,0x7b,0x0f,0x5a,0x28,0x7f,0xf9,0x6a, +0x80,0x45,0x63,0xfc,0x3b,0x81,0x00,0xf4,0xc1,0x00,0x16,0xea, +0xe5,0xe5,0x3d,0x20,0x14,0x02,0x58,0xfc,0xc5,0x90,0x50,0xe2, +0x30,0x15,0x78,0x16,0xea,0x90,0xd2,0x08,0x1e,0xe8,0x67,0x76, +0x3f,0x46,0x92,0x98,0x38,0x59,0x4e,0x5d,0x42,0x6d,0xd7,0xac, +0x4a,0x4d,0x3b,0x76,0x9b,0x97,0xf1,0xda,0x83,0x4a,0xcb,0xbf, +0x08,0x4b,0x95,0x2c,0x11,0x8a,0x61,0x11,0xd2,0xd1,0xfa,0xc4, +0xfa,0x0e,0xf9,0xd1,0xf5,0x0e,0x5a,0x73,0xf7,0x28,0x55,0x19, +0x0e,0x37,0xb7,0x34,0x96,0xb5,0x28,0x26,0x26,0xc5,0xc7,0x26, +0x47,0xc1,0xbb,0x38,0x8d,0x1f,0x6d,0x6a,0x6b,0x29,0x6b,0x4e, +0x48,0x4a,0x38,0x9d,0x14,0x05,0x6f,0xd1,0x1d,0x0d,0xed,0xf4, +0xcb,0x26,0x87,0xa7,0x46,0x49,0xd9,0xd4,0x33,0xc6,0x56,0x49, +0x6d,0x56,0x2a,0x7b,0xb0,0x52,0xe2,0xb2,0x85,0x06,0x50,0x88, +0x59,0xd8,0xa1,0x37,0xa6,0xd8,0x87,0x67,0x19,0xf1,0x48,0xbc, +0x94,0x16,0x2e,0x99,0x51,0xe5,0x8a,0xf6,0x2f,0xba,0xf0,0xfa, +0x04,0x1c,0xde,0x2e,0x27,0x30,0xe7,0x1f,0x17,0x8e,0x1b,0x3c, +0xb2,0x07,0x5f,0x48,0xc1,0xf3,0x74,0x70,0x1a,0xb5,0x24,0x4b, +0xd2,0x71,0x79,0x91,0x8d,0x5f,0xc0,0x85,0xe8,0xb8,0x30,0x47, +0xfc,0x7c,0x76,0x5a,0x28,0x95,0x5b,0xb4,0x16,0x55,0x16,0xe7, +0x97,0x28,0xc6,0x27,0xc4,0x9d,0x4e,0x8c,0xf9,0x79,0x0b,0x5f, +0xd5,0xb2,0xf6,0x7a,0x58,0x6a,0xc4,0xc9,0xf0,0x30,0xc5,0xa8, +0x88,0xe8,0x38,0x59,0x4a,0x76,0x62,0x69,0xcd,0x2c,0x84,0x72, +0xa2,0x2d,0xfd,0x91,0xe7,0x16,0x2b,0xa5,0x12,0xb3,0xbe,0x92, +0x8a,0xa2,0xbc,0x32,0xc5,0xf8,0xc4,0xf8,0x53,0x09,0x31,0xdf, +0xaa,0xf2,0x55,0xcd,0x5b,0x2f,0x84,0xa6,0x44,0x9e,0x8e,0x08, +0x57,0x8c,0x08,0x97,0xff,0x51,0x72,0x49,0xdd,0x2c,0xf5,0x67, +0xde,0x64,0x50,0x38,0xa0,0x3d,0x2c,0x6c,0x11,0x3b,0xc5,0x2d, +0xac,0x10,0x26,0xfc,0x85,0x60,0x9e,0x78,0x00,0xf2,0x58,0xf8, +0x1f,0xb4,0x27,0xb0,0x1e,0x3b,0x91,0xce,0x97,0x28,0x60,0xe9, +0x1a,0x54,0xbf,0x4a,0xe1,0x54,0xe0,0x58,0x36,0x39,0xaf,0xa1, +0x8e,0x07,0xf5,0x85,0xc3,0xbd,0x6c,0xac,0x78,0x85,0x0c,0x8a, +0x1b,0x3e,0x57,0x03,0x23,0x3c,0xc7,0xc6,0x15,0x9e,0x29,0x8c, +0x2d,0x94,0x54,0x98,0x31,0xfe,0x88,0x0b,0x98,0x95,0x31,0xab, +0xf7,0xaf,0x56,0xea,0x32,0x6d,0xbb,0x90,0x7f,0x29,0xf5,0xa2, +0x22,0x9a,0xc3,0x39,0x55,0x71,0xa1,0xb6,0x20,0x63,0x35,0x77, +0xe0,0x64,0x1d,0x74,0x95,0xc7,0x14,0x9f,0xbc,0xf3,0xb4,0xb7, +0x45,0x8a,0xb9,0xc9,0x1a,0x85,0xac,0x44,0xa6,0x75,0x3e,0xfc, +0x45,0x1f,0xce,0xec,0x94,0x96,0xae,0xe7,0x05,0x9c,0x3e,0xa8, +0x71,0x87,0xc3,0xcd,0x42,0x3f,0x99,0x8f,0xbe,0x4f,0x25,0xc7, +0xb2,0x02,0x09,0xad,0xf0,0xab,0x3f,0x96,0x67,0xe0,0xcf,0x67, +0xf9,0xe4,0xda,0xa7,0x79,0x70,0x8b,0xa8,0x18,0xd6,0xa3,0xf0, +0xf9,0xb5,0x11,0x78,0x0d,0x34,0xfa,0x50,0xe3,0x1e,0xd8,0xf4, +0xa0,0x32,0x9b,0x5f,0x91,0x5b,0x95,0x5e,0xa9,0x97,0xc3,0x87, +0x3a,0x04,0x3a,0x7a,0x5a,0x71,0x98,0x6b,0x00,0xda,0x2a,0x8c, +0xe8,0xb2,0x48,0x42,0xc6,0x06,0x14,0x19,0xcf,0x00,0x61,0x6c, +0x1d,0xe9,0x85,0x12,0xfd,0x91,0x5e,0xc8,0xef,0xc3,0xfc,0x8b, +0x1a,0x87,0xb1,0x44,0x7a,0x8b,0xa7,0xc8,0x84,0xaa,0x96,0x77, +0x0e,0x13,0x3c,0x64,0x2c,0x1c,0xee,0x42,0xe3,0x5e,0x4d,0x06, +0xd2,0xc5,0x4c,0xa9,0xef,0xd2,0x55,0x35,0xd8,0x82,0xe7,0xd9, +0xb8,0xec,0xd8,0xac,0xd8,0x2c,0x0e,0x5a,0xe9,0x73,0xfa,0x11, +0x5f,0x63,0xb6,0x47,0xef,0x3d,0xb8,0x43,0xa9,0xcd,0xa2,0xad, +0xa7,0x60,0x30,0xb5,0x5f,0x11,0x37,0xc0,0x85,0x83,0x13,0xfd, +0x99,0x34,0x50,0x66,0x8d,0xb6,0x66,0xf2,0xfe,0x4c,0x43,0x30, +0xa9,0x59,0xde,0x9f,0xc9,0xee,0x02,0xd8,0xc9,0xfb,0x33,0x4d, +0xb7,0x82,0x58,0x2d,0x79,0x7f,0xa6,0xf6,0xf1,0xfe,0x4c,0xb8, +0x4d,0xd0,0x27,0x3b,0x31,0xe0,0x0e,0x2b,0x84,0x2f,0x24,0xe1, +0x85,0x01,0xe5,0x21,0x99,0x46,0x81,0x7c,0x66,0x40,0xb6,0x67, +0xaa,0x2f,0x07,0x3f,0x9d,0x24,0xa8,0xc8,0xe4,0x14,0x64,0x17, +0xa7,0x15,0x18,0x67,0xf1,0xa1,0x1e,0x41,0x1e,0x3e,0x54,0x8b, +0x94,0x19,0x83,0x0e,0x45,0x81,0x46,0x14,0x02,0x0f,0x7f,0x02, +0x47,0xbb,0xf1,0xe8,0x10,0xd8,0x32,0xcf,0x42,0x28,0xd3,0xf9, +0x0c,0xcc,0x37,0xd2,0xbb,0x2d,0x96,0xdb,0x44,0x5e,0x6a,0xec, +0x17,0x85,0x37,0xa6,0x4f,0xe8,0x6b,0x9b,0x7f,0x87,0x84,0x2f, +0xf5,0xf5,0x04,0x24,0x8c,0xf9,0x92,0x7c,0xf1,0xf0,0x0a,0xdb, +0xe4,0x52,0xdc,0x92,0xdb,0x94,0xd5,0xac,0x08,0x5a,0x43,0xb8, +0x8b,0x49,0x6f,0x4d,0x69,0x4d,0xea,0xd4,0x4e,0xe6,0x83,0x97, +0xfa,0x6d,0xd7,0x5f,0xc6,0x3d,0xde,0xf0,0xe9,0x6f,0xbd,0x38, +0x24,0xea,0xc3,0x48,0x2f,0x8b,0xeb,0xe0,0x29,0xd9,0xbc,0xea, +0x53,0x16,0x54,0xf1,0x1d,0xb2,0x11,0x55,0x3f,0x63,0xbf,0xa5, +0x83,0xb6,0x6e,0xd5,0x17,0xac,0x70,0xca,0x95,0x60,0x90,0x16, +0x04,0x31,0x0e,0xf8,0x16,0x11,0xcf,0x60,0xf5,0x36,0xdd,0xb1, +0xbf,0xf5,0x6b,0x31,0x28,0x80,0x1f,0x41,0xbf,0x95,0xe0,0x27, +0xf5,0xc6,0xf4,0x23,0xe0,0xf7,0x1d,0xfa,0xb1,0x83,0x0a,0xe0, +0xf7,0x88,0xfe,0x9c,0x01,0xce,0x82,0xb9,0x94,0x83,0xfd,0x43, +0xff,0xf2,0x71,0x6b,0x01,0x5d,0x6c,0xaf,0x49,0x92,0xd0,0x0e, +0x17,0xaa,0xc8,0xa3,0xf3,0x46,0x7e,0x29,0x7c,0x22,0xb7,0x16, +0xa4,0x0f,0xbe,0x90,0x84,0x23,0xb8,0x4a,0x5a,0x6c,0x8b,0x26, +0x16,0x1b,0x6c,0xa5,0xe2,0x46,0x18,0xee,0x15,0xc5,0x7f,0x4c, +0x1f,0xea,0x16,0xce,0xf7,0x8a,0xe7,0x19,0xb8,0x24,0x9c,0x20, +0x6d,0xa0,0x0d,0x73,0x51,0xbb,0x56,0xcf,0x01,0x0f,0xe0,0x5c, +0x38,0x60,0x8e,0x41,0xa6,0x42,0x71,0x07,0x2b,0x6e,0x85,0xf7, +0x09,0xbc,0xad,0x83,0x6f,0x33,0x70,0x53,0x01,0x95,0x06,0x40, +0x89,0x11,0x19,0xf4,0x21,0x58,0x27,0x6c,0x81,0x3a,0x0a,0x09, +0xb6,0x92,0x3a,0xb8,0x69,0xcf,0xe2,0xcd,0x6d,0xa4,0x1e,0x6e, +0xda,0xd1,0x8d,0xcd,0xa4,0x09,0x6e,0x5a,0x4b,0xed,0xee,0x37, +0x91,0xdb,0x59,0x57,0x8a,0x87,0x2a,0x3d,0x9b,0x79,0x6d,0x77, +0x35,0x5f,0xd5,0x60,0x4e,0x48,0x53,0x38,0x5a,0xb2,0xaf,0xe8, +0x40,0x96,0x8f,0x39,0x7f,0x2d,0xe8,0x9a,0xd7,0x80,0x07,0xe5, +0x5f,0x25,0x92,0x4f,0xf0,0x65,0xcb,0x98,0x19,0x3f,0x0f,0x2c, +0x1e,0x1f,0xa5,0xbf,0xea,0xc8,0x6b,0xa9,0x11,0x79,0x15,0x73, +0x09,0x55,0x5d,0x96,0x92,0x47,0xbf,0x1f,0xb7,0x5b,0x15,0x4d, +0xdc,0xe2,0xe8,0x78,0xc3,0x9c,0x26,0x98,0x4b,0xe0,0x63,0x29, +0x30,0xcc,0x19,0x2b,0x59,0x41,0xe6,0x23,0x65,0x26,0x57,0x1b, +0x82,0x0f,0xf6,0xb1,0x2a,0xd0,0x45,0x2c,0x6c,0x74,0x1d,0x0e, +0xbb,0x97,0x58,0xf0,0x17,0xca,0x46,0x1a,0xda,0x5a,0x39,0xfc, +0xa1,0x96,0x98,0x5b,0xe8,0xd9,0x1d,0x76,0x2b,0x35,0xe7,0x47, +0x2b,0x86,0x9b,0x3b,0xda,0x39,0xd8,0xff,0x4c,0x9b,0x6a,0x02, +0x8f,0x2e,0xf4,0x78,0x30,0xf1,0x7e,0xaa,0x1b,0x23,0xd9,0x9c, +0xe2,0xec,0xca,0xb4,0x32,0xfd,0x4c,0x7e,0xb4,0x7c,0xb8,0xa5, +0xa3,0xd5,0xb9,0x91,0x37,0x34,0x39,0x64,0x79,0xc0,0xa3,0xc4, +0x84,0xcf,0x4c,0x8c,0x70,0x0d,0x76,0xf1,0x75,0x52,0xc4,0xc3, +0x4c,0x56,0x69,0x66,0x79,0x7a,0xb9,0x41,0x16,0xef,0xb0,0x59, +0x77,0xd3,0xae,0x7d,0x15,0x26,0x7c,0x71,0x91,0x3c,0x7e,0x49, +0x9c,0x76,0xae,0x4d,0x48,0xe8,0x61,0xc5,0x1f,0x04,0x43,0x72, +0xab,0xee,0xda,0xd9,0x81,0x61,0xe7,0x06,0x5e,0x5b,0xe7,0xb0, +0xa9,0xaa,0xa3,0x44,0x73,0xc2,0xc9,0x03,0x30,0xd8,0xc4,0xa2, +0x01,0x92,0xf1,0x2d,0xe3,0xc9,0x6b,0xd1,0xe0,0x4b,0x76,0xc6, +0xdf,0xd9,0x31,0x0b,0xb2,0x78,0x18,0x16,0x63,0xf1,0x2d,0x75, +0x55,0x8c,0xc5,0xc5,0xc3,0x3f,0xb3,0xb8,0x08,0x13,0xa4,0x72, +0x57,0xcf,0x67,0xf5,0xac,0xc7,0xfd,0x0b,0xff,0x0f,0x05,0x5c, +0x2f,0xe2,0xb2,0x7a,0xca,0xdd,0x57,0x41,0x0f,0x71,0xa9,0xb0, +0xa8,0xb6,0x2c,0x71,0x70,0xe0,0x9b,0x3c,0x5b,0x9c,0xaa,0x9d, +0x39,0xd4,0xb6,0x23,0x7a,0x39,0x41,0xfd,0x4a,0xb0,0x8b,0x62, +0xe0,0xec,0x3a,0xe5,0x61,0x56,0x3f,0x43,0xb6,0x13,0x57,0xb2, +0xee,0xd1,0x09,0xa5,0xca,0x4f,0xb4,0xd9,0x9d,0x41,0xc4,0xdf, +0xd8,0xd9,0xd8,0xd6,0xb2,0xc3,0x85,0x6f,0x68,0xab,0xea,0x2d, +0xe8,0xe7,0xe0,0x7e,0x24,0xa9,0xb5,0x6e,0xd0,0xab,0x30,0x69, +0x2f,0xe7,0x9d,0xbb,0x6c,0x7a,0x1d,0xeb,0x39,0xd1,0x1d,0x2d, +0x09,0xce,0xd7,0x37,0x1c,0xe3,0xce,0x6a,0xc3,0x7c,0x56,0x9c, +0x64,0x4c,0x96,0xbc,0xff,0x88,0x85,0xcc,0x25,0x64,0xce,0xa3, +0x3f,0x19,0x58,0xbd,0x84,0xe0,0x6b,0x8f,0xe8,0x04,0x46,0x27, +0xcc,0x22,0xf8,0x3e,0x95,0xba,0xb9,0x3a,0x52,0xad,0xb9,0xd6, +0xdc,0xbc,0x16,0x65,0x98,0x0d,0x49,0xfd,0xe2,0x2f,0xba,0xf2, +0x07,0x60,0x48,0x96,0x0c,0xc2,0x42,0xcc,0xfa,0x54,0x9d,0x12, +0x59,0x5c,0x38,0xf8,0x88,0xc5,0x77,0xf1,0x94,0x44,0xd8,0x9f, +0xa3,0xde,0xf7,0xa4,0xbc,0x4b,0x39,0xb6,0x55,0xd4,0x91,0xd7, +0xbf,0x7b,0xdb,0x7a,0xbc,0xfb,0x83,0x91,0x14,0x20,0xf7,0xa2, +0xfb,0x43,0xd2,0x0b,0xb7,0xb7,0x44,0xd8,0xcf,0x61,0x1c,0x11, +0x82,0xa9,0xd8,0x6f,0x64,0xbe,0x28,0x79,0xda,0xf2,0xcb,0x08, +0x1d,0xd5,0x23,0xb6,0xfb,0x9c,0x76,0xb9,0x73,0x54,0xaa,0x1e, +0xea,0x14,0x97,0x98,0xc0,0x36,0x7c,0x9b,0x5d,0xef,0xb6,0xda, +0x67,0x65,0x60,0x86,0x11,0x9f,0x1b,0x9f,0x13,0x97,0x1d,0xcf, +0x3d,0x06,0x3b,0x62,0x67,0xaf,0x63,0xab,0xee,0x56,0x6a,0xc9, +0x8f,0x54,0xf6,0xd7,0xb5,0xb7,0x70,0xdb,0xe9,0x82,0x18,0x15, +0xa6,0x1d,0x61,0xc5,0x69,0x73,0xc9,0x45,0x61,0xda,0x61,0xba, +0x81,0xaf,0x93,0x6b,0xc2,0xb4,0x7d,0xac,0x18,0x8f,0x47,0xc9, +0xfd,0x02,0x78,0xbd,0xe1,0x62,0xad,0x43,0x0b,0x6f,0xe4,0xbe, +0xd2,0x61,0xb9,0x2f,0x27,0xb0,0x35,0xe4,0xe3,0xa0,0x6f,0xed, +0xae,0x3b,0x95,0x74,0xf3,0x7b,0xaa,0x97,0xd7,0xed,0xca,0x9a, +0x30,0x41,0xbf,0xda,0xd7,0x42,0x7e,0x5f,0x5a,0xff,0x74,0x5f, +0x0b,0xd6,0xc8,0x4b,0xb2,0xdd,0xf8,0x5f,0x92,0x22,0x27,0x0c, +0x11,0xd6,0x00,0x54,0xc2,0x1f,0xd1,0x1f,0xee,0x85,0x25,0xbd, +0xb8,0xe4,0x8a,0xe6,0x01,0x3c,0x22,0xbd,0x6d,0xd2,0x87,0x4d, +0x54,0xc2,0x4f,0xc7,0x2d,0x64,0x10,0x78,0xf1,0x3c,0xf2,0x83, +0xae,0x82,0x01,0x73,0xaa,0x9b,0x88,0x7a,0x97,0x04,0x3d,0x66, +0x8f,0xb8,0x81,0x74,0xd4,0x74,0x36,0x37,0x76,0x5a,0x37,0xf0, +0xf6,0x26,0x16,0xb6,0xb6,0x1e,0xbe,0x9d,0x41,0x3d,0x61,0x74, +0x84,0x4d,0x7b,0xc4,0x8b,0x06,0x60,0xc0,0x68,0x58,0x6d,0x75, +0x5a,0xe8,0x91,0x6b,0xcc,0xdf,0xc9,0xbf,0x55,0x3e,0x52,0x9b, +0x16,0x92,0x7e,0x2c,0x35,0xf8,0x80,0xc9,0x12,0xb3,0x25,0xae, +0xf9,0x46,0xfc,0x6f,0x35,0x8f,0xce,0x5e,0xec,0x4c,0x0d,0x48, +0xf1,0x4f,0x0c,0xd8,0x74,0x00,0xa7,0xa8,0x51,0x8e,0x51,0x68, +0x44,0xe1,0x4a,0x33,0x4c,0xbd,0x7c,0xf3,0x3c,0x17,0x1f,0x70, +0x26,0x30,0x70,0x96,0x66,0xb0,0xb7,0xb6,0xd2,0x46,0x26,0x5b, +0x57,0x76,0x9f,0x79,0x50,0xd5,0xf2,0xed,0xd7,0x7a,0xbf,0x1f, +0xbe,0xa1,0x9c,0x93,0x96,0x9d,0x91,0x99,0xc1,0xb5,0x30,0x95, +0xf8,0xe1,0x7d,0x5c,0x02,0x4a,0x0b,0x6a,0xce,0xf2,0xfb,0x7a, +0x0c,0x07,0xed,0x2e,0x70,0x33,0x84,0x3c,0x7a,0x4b,0xf1,0x81, +0xf1,0x81,0x71,0x81,0x9d,0x39,0x7c,0xf0,0x75,0xff,0xab,0xde, +0xc3,0x66,0x01,0x7c,0xba,0x5b,0xaa,0x53,0x8a,0x93,0xed,0x71, +0xeb,0x68,0xab,0x98,0xe1,0xcf,0x46,0x41,0x36,0x08,0x9c,0x71, +0x19,0xef,0xa5,0xe5,0xaa,0xe1,0xa2,0x15,0x58,0x10,0x58,0x10, +0x50,0x50,0x7b,0xbe,0xfa,0x56,0xe9,0x15,0xc3,0x42,0xde,0xe7, +0xb0,0xfb,0x21,0x57,0x9d,0x90,0xf4,0xb0,0x8c,0xd0,0x34,0x27, +0x73,0xbe,0xcd,0xa2,0xd3,0xb0,0x49,0xcf,0xdd,0xd8,0xdd,0xdc, +0xcb,0xde,0xe8,0x04,0x6f,0x0d,0x14,0x6b,0x1e,0x8f,0x09,0x8d, +0x92,0x7c,0x18,0x31,0xdf,0xdd,0xee,0xdb,0x05,0x9a,0x3a,0xa8, +0x39,0x47,0xef,0x57,0x26,0x02,0x89,0x3d,0x2e,0xde,0x2b,0x6f, +0x59,0xd6,0xff,0x73,0xde,0x78,0xcb,0xb2,0xb4,0x01,0x61,0x70, +0x62,0x32,0x75,0xe2,0xa2,0xa2,0xd2,0x38,0x47,0xa9,0x17,0x77, +0x7b,0x82,0xa2,0xb8,0x7a,0x40,0xd8,0xc8,0xe6,0x9d,0xc9,0x8b, +0xcb,0x8d,0xe7,0x20,0x1d,0x18,0x92,0x8c,0x5b,0xeb,0x71,0xef, +0x9f,0x38,0xbf,0xfe,0x2c,0xaf,0x7f,0xcd,0xf1,0xa6,0xef,0x9d, +0xe6,0xa6,0x86,0xb6,0xb2,0x56,0xfb,0x5a,0xde,0xc7,0xc6,0xd5, +0xce,0xd9,0x39,0x74,0xf8,0xf8,0xb9,0x93,0xe7,0x39,0x98,0xd5, +0x8e,0x93,0x99,0xe2,0x07,0x45,0x3f,0x67,0x7d,0xca,0xa1,0x1d, +0x93,0x90,0x1f,0x9f,0x17,0x9f,0xab,0x1b,0xc7,0x1f,0xdb,0xed, +0xb1,0xc6,0xf9,0x43,0xa9,0xc9,0x47,0x94,0x27,0x7d,0x79,0x73, +0xe8,0x6a,0x46,0x27,0x83,0x93,0x89,0x85,0xb5,0xb1,0x5b,0xb1, +0x15,0x5f,0x9c,0x55,0x9c,0x5b,0x54,0x90,0x1c,0x94,0x14,0x98, +0x14,0x60,0x6f,0x65,0x64,0x6e,0xe8,0x52,0x6c,0xce,0x77,0x56, +0xb5,0x37,0xd5,0x35,0x27,0x7b,0x27,0x7a,0x25,0x78,0x1b,0x1f, +0xdd,0x7e,0x70,0xa7,0x75,0x91,0x09,0x7f,0xb9,0xfe,0xe6,0xb9, +0x9e,0x73,0x5c,0x9c,0x57,0xac,0x8f,0xaf,0x14,0x96,0x6d,0xa8, +0x64,0xc4,0x64,0x1a,0xc8,0xba,0x99,0x5b,0xd5,0xed,0xbf,0x9e, +0x51,0x8e,0xfd,0xce,0x1e,0x14,0xf5,0x7f,0xcb,0xc9,0xcf,0xca, +0xcf,0x28,0xe4,0x3e,0x80,0x75,0x24,0xa5,0x34,0xbd,0x3e,0xb5, +0x91,0x83,0x75,0x4c,0xb4,0x47,0xa4,0x5d,0x84,0x0d,0x87,0x0f, +0xc5,0x29,0x24,0x55,0x33,0x69,0x5f,0xc2,0xa1,0xee,0x4c,0xfe, +0xe4,0xf9,0xb0,0x5b,0x61,0x03,0x1c,0x3a,0x63,0x03,0x29,0xbd, +0x9f,0xf9,0x24,0xfe,0x27,0xa3,0x04,0x3e,0x66,0xed,0xb1,0x0f, +0x3d,0xb7,0xbe,0x6c,0x6f,0x2d,0x55,0x34,0x63,0xff,0x53,0xf3, +0x02,0x79,0x45,0xb3,0x23,0xff,0xda,0xde,0x7a,0xbc,0x2c,0x1a, +0x03,0x1b,0x5d,0x08,0xde,0x17,0xa2,0xe0,0xbe,0xe4,0x2f,0x51, +0x22,0xb8,0xe9,0x1b,0xd8,0xc4,0xf4,0xaf,0x26,0xdf,0xc0,0xb6, +0xd5,0x2c,0x7a,0x1a,0x93,0x15,0xb8,0xe9,0x7b,0x79,0x04,0xfc, +0xb6,0x15,0xb8,0x8d,0xc1,0x74,0xf1,0x11,0x39,0x07,0x6b,0x8f, +0x9e,0x15,0x82,0xe9,0x76,0x30,0x0b,0x17,0x14,0xce,0x9e,0x83, +0x0d,0xf2,0xcf,0x99,0x0c,0x9a,0xa3,0x1a,0x45,0xdc,0x73,0x06, +0x98,0x6e,0x9c,0x43,0x60,0xce,0x39,0x9c,0xc3,0x82,0x99,0x82, +0x16,0xcc,0x19,0x62,0xba,0xe4,0x7b,0xce,0xd3,0x3d,0xe2,0x5a, +0x13,0x82,0x4b,0x75,0x60,0x29,0xfb,0x44,0xe1,0x1c,0x2e,0x3d, +0xca,0x40,0x26,0x2c,0x25,0xf2,0x1e,0x6b,0xec,0x53,0x85,0xf3, +0xb8,0x54,0x9d,0x92,0xef,0xef,0xe1,0x73,0xd2,0x9b,0x78,0x2d, +0xad,0x3f,0x23,0x2e,0x28,0x3e,0x38,0xee,0x58,0x7b,0x16,0x7f, +0x22,0xfd,0x64,0x46,0x4c,0x26,0x07,0x3b,0x98,0x78,0x9b,0xbe, +0x84,0x3b,0x69,0x43,0x99,0x8a,0xf4,0x58,0x50,0x5c,0x70,0x47, +0x16,0x1f,0x76,0xce,0xf7,0xae,0x7f,0xaf,0x79,0x10,0x9f,0xe2, +0x96,0xe2,0x92,0xe2,0xec,0x76,0xdc,0x29,0xda,0x31,0xa6,0xfb, +0x6e,0xef,0xd3,0xfa,0x5f,0xcd,0x8b,0xf8,0x20,0x13,0x5f,0x03, +0x6f,0xc3,0x88,0xbc,0xb0,0xfc,0xf0,0xbc,0xda,0xeb,0x55,0x0f, +0xf3,0x06,0x4d,0x0b,0xf8,0x60,0x3d,0x8f,0x7d,0xee,0x1a,0x91, +0x99,0x51,0x19,0x91,0x69,0xde,0x3e,0xfc,0x9d,0xf5,0x6c,0x56, +0x55,0x6a,0x55,0x4a,0xb9,0x49,0x1a,0x1f,0xe5,0x1c,0x62,0x1f, +0x64,0xcf,0xe9,0xe0,0x63,0x26,0xac,0x25,0xb4,0x35,0xb4,0xda, +0xfc,0x18,0x9f,0xea,0x92,0xea,0x94,0xec,0xe4,0x7e,0xdc,0xf9, +0xb8,0x53,0x4c,0xe7,0x47,0x9d,0x4f,0xea,0x9f,0x58,0x14,0xf2, +0xc1,0xa6,0x7e,0x86,0xbe,0x46,0xae,0x43,0x7c,0xcd,0xf5,0x8a, +0x87,0x39,0x83,0xe6,0xf9,0x7c,0x98,0x91,0xc7,0x6e,0x0f,0xf5, +0xc8,0xcc,0xc8,0xf4,0xa8,0x74,0x3b,0x07,0xbe,0xdc,0xb4,0xfe, +0x60,0x89,0x8e,0xaf,0xa5,0x9f,0xb5,0x9f,0x13,0x17,0x15,0x79, +0x2a,0x6a,0x76,0xbc,0xc5,0x51,0x98,0x21,0xf7,0x74,0xcb,0x3d, +0xbd,0xc7,0x41,0x41,0x32,0x89,0xca,0x55,0x8c,0xc2,0x78,0xfd, +0x56,0xc9,0xd9,0xb2,0x56,0xee,0x6c,0xb9,0xfe,0xf4,0x9f,0xb8, +0x8d,0x7c,0x3c,0x3f,0xc3,0xfd,0x4d,0x14,0x38,0x3d,0x84,0x6e, +0xb2,0x02,0xd8,0xef,0x19,0xf8,0x2b,0x9a,0x11,0x5f,0x4b,0x1f, +0x1b,0x3f,0x67,0xee,0x54,0x74,0xf4,0xe9,0xe8,0xd9,0x90,0xc8, +0x96,0x5a,0x54,0x6a,0x17,0x9a,0xd2,0xe9,0xdc,0x42,0xbe,0xc7, +0xe9,0x2b,0x18,0xf8,0x05,0x9d,0x48,0x1f,0x96,0x7f,0xaa,0xb9, +0x19,0x13,0xf5,0xc0,0x9f,0x75,0xdc,0xb3,0xf0,0x28,0xfe,0x4d, +0xad,0x4c,0x87,0x07,0xc5,0xab,0xf0,0xfa,0x68,0xca,0x77,0x12, +0x68,0x1e,0x86,0xac,0x24,0x26,0x75,0x39,0xb0,0x6a,0xa0,0x74, +0x40,0x2a,0x47,0xc1,0x5f,0x98,0x3b,0x6c,0x7b,0x93,0x9b,0x31, +0xf6,0xee,0x58,0x04,0xc9,0x28,0x4f,0x2b,0x4b,0x2e,0xd7,0xcd, +0xe0,0x23,0xec,0xc3,0x5c,0x83,0x9c,0xb8,0xcd,0xe2,0x14,0x48, +0x15,0xa6,0x30,0x62,0x10,0x36,0x4a,0x15,0x4f,0x4e,0x87,0x8d, +0x97,0x1d,0x98,0xf5,0x7f,0x8d,0x95,0xba,0x29,0xaf,0x09,0x2f, +0xf4,0x0a,0x4e,0xc4,0x5d,0xc7,0x4a,0xcb,0xd4,0xac,0xd1,0x96, +0xef,0xec,0x6a,0x1b,0xae,0x1e,0xe6,0x44,0x53,0x9c,0x46,0xec, +0x07,0x2c,0x7b,0xad,0x9a,0x2c,0xed,0xa9,0x68,0x69,0xd5,0xab, +0xd6,0xe1,0x20,0x97,0x32,0xb8,0x15,0x20,0x83,0x15,0x92,0xc5, +0xf3,0x3a,0xb1,0x19,0x31,0x3a,0xa7,0xdf,0x45,0x8f,0xf7,0x1a, +0x76,0x68,0x36,0x1f,0xe1,0xc4,0x66,0x85,0xde,0xfe,0xe6,0x73, +0x95,0xe7,0xac,0x2b,0x79,0x27,0x0d,0x5b,0x3d,0x43,0x23,0x0e, +0xbc,0x60,0x25,0x81,0x15,0x38,0x15,0x57,0x30,0xc2,0xbb,0x68, +0x43,0x06,0xb0,0xf9,0x0b,0xcd,0x75,0x58,0xaa,0x03,0x91,0xac, +0xb5,0xea,0xce,0xa3,0xb8,0x72,0xaf,0xd4,0x56,0x64,0xdb,0xfd, +0xbb,0xa3,0xc5,0x52,0x14,0x51,0xcd,0x39,0xa8,0x49,0x62,0x4a, +0x96,0xde,0x3a,0x04,0xdb,0xb6,0x94,0xf7,0xf3,0xb8,0xea,0xce, +0xce,0x21,0x1b,0xca,0xfc,0xc1,0x49,0x5e,0xd4,0x73,0xd6,0x8f, +0x7d,0xcb,0xc6,0x49,0xf3,0x78,0x22,0xc7,0xdf,0xe4,0x89,0x1c, +0x53,0xc7,0x13,0x39,0x1e,0xcb,0x13,0x39,0x52,0x27,0x48,0x33, +0x55,0x1f,0x83,0x12,0x54,0xd4,0x85,0x45,0x51,0x52,0x3c,0x49, +0xa4,0xe2,0x53,0xf8,0x86,0xfc,0x83,0x1d,0x12,0xee,0x80,0x05, +0x8c,0xb0,0x57,0x71,0x84,0x80,0x93,0x98,0x8a,0x33,0xa4,0xee, +0x38,0x94,0xe5,0xb5,0x67,0x67,0x75,0x28,0x8f,0xf5,0x61,0x29, +0x8b,0x25,0x72,0xd4,0xb2,0x64,0x13,0x0b,0x7b,0x14,0x1e,0xc0, +0xda,0x4d,0x2c,0x7d,0xd8,0xef,0x90,0x2f,0x60,0xc9,0x3a,0x69, +0xcf,0x17,0xb0,0x76,0x1d,0x8b,0xa7,0xf0,0x5b,0x92,0x5c,0x90, +0x5c,0x9c,0x90,0xcf,0x81,0x02,0xec,0xc1,0x7e,0xdc,0x03,0x1c, +0x13,0xe3,0x17,0xe9,0x19,0xe9,0xc7,0x21,0x83,0xd1,0xfd,0xfd, +0x94,0xf4,0x1e,0x65,0x54,0xc1,0x90,0xac,0x46,0x9d,0x6f,0xd8, +0x00,0xfc,0x91,0xfc,0x0a,0x01,0x8b,0xe4,0x01,0x87,0xe3,0x20, +0x7e,0xc2,0xb1,0xa9,0x24,0x21,0xe0,0xe7,0x25,0xa4,0x26,0x8f, +0x1b,0xdd,0x16,0x6d,0xfb,0x5f,0x4a,0x48,0x8d,0xc3,0x9d,0x0b, +0x72,0x10,0x3f,0xc6,0x09,0xfb,0x49,0xaf,0xf8,0x13,0xba,0xb0, +0x58,0x11,0x8d,0x1a,0x9b,0x71,0xb9,0x52,0x8f,0xb9,0xec,0x0b, +0xd8,0x99,0x08,0x26,0xd0,0x38,0x0b,0x28,0x1b,0xdc,0x41,0xe5, +0x18,0xfd,0x2b,0x83,0x34,0xb3,0xbb,0xfb,0x4b,0xdb,0xf8,0xbd, +0x23,0x8e,0xfd,0xa1,0x5d,0xdc,0xb7,0x5d,0x0b,0x1e,0x32,0x55, +0x49,0xe5,0xc9,0xa5,0xa9,0xfe,0xed,0xbc,0x8e,0xaf,0x4a,0xf0, +0xb6,0xe8,0x14,0x13,0xbe,0xfc,0x4c,0x79,0x5c,0x59,0x3c,0xb7, +0x63,0x95,0xf1,0x27,0x6c,0x88,0x99,0x93,0xce,0x1e,0x8d,0x32, +0x33,0xfe,0xf6,0xb5,0xac,0xd6,0x84,0x1e,0xa9,0x13,0xed,0x59, +0x06,0x4f,0xc1,0x2e,0x92,0x10,0x17,0x1b,0x1f,0xad,0xd4,0xb3, +0xb7,0xaa,0xc2,0xe0,0x5a,0x64,0xda,0x71,0x29,0xc0,0x2b,0x3c, +0x52,0x16,0x73,0xf6,0xb3,0xae,0x8d,0x9f,0x33,0x15,0x89,0x65, +0xc9,0x25,0x29,0xf2,0x93,0xee,0x38,0xa6,0x32,0x7e,0xd2,0x0a, +0xf9,0x49,0x97,0x18,0x7f,0xc1,0x86,0x18,0x3b,0x68,0xee,0xd3, +0x2c,0x37,0xe3,0xaf,0x8e,0xe6,0x75,0x26,0x0e,0x8d,0x9f,0x14, +0x3e,0xc2,0x05,0xa4,0x17,0x75,0x1e,0x69,0x63,0x3c,0xb2,0x60, +0xa7,0x8d,0x76,0x1f,0xe8,0x09,0x43,0x7d,0x18,0xfa,0x94,0x95, +0xca,0xa0,0xfe,0x13,0xdb,0xf9,0xa7,0x07,0xf5,0xc6,0x38,0x2f, +0x7f,0xf1,0xa0,0x0a,0xc7,0x71,0xe1,0x3f,0x3f,0xa8,0xba,0x46, +0x59,0x93,0x10,0x41,0x44,0x16,0x62,0x05,0x96,0xbd,0xac,0x40, +0x37,0x12,0xe9,0x86,0x28,0xc3,0x49,0x04,0x17,0xc8,0xeb,0x6c, +0xdf,0x38,0x42,0x70,0xc9,0xa8,0x54,0xe3,0xf2,0x06,0x6e,0xa3, +0x3b,0x2f,0xca,0x77,0x52,0xd6,0xb8,0xe4,0x22,0xdd,0x29,0x5a, +0x52,0x01,0xba,0x60,0x3f,0xe5,0xc2,0x70,0xf9,0x2a,0x81,0x25, +0xfb,0x71,0x09,0xf3,0xd3,0x5a,0xd2,0xe8,0xd2,0x6a,0x56,0x61, +0x5b,0xdb,0xc8,0x7b,0x55,0x1b,0x77,0xda,0x54,0x72,0xa8,0x45, +0x6f,0xa3,0xa3,0xb6,0xb1,0xa5,0xac,0xc1,0xb6,0x8a,0xf7,0x76, +0xb0,0xb0,0xb4,0x71,0x73,0x4a,0xe6,0x8b,0x4a,0x7d,0x0b,0x1d, +0x2a,0x3d,0x73,0x15,0x9d,0x1c,0x0b,0x03,0xcb,0xbc,0xf3,0xfc, +0x14,0x03,0xdd,0xbc,0x9c,0x5c,0xed,0x39,0x34,0x34,0x82,0xd5, +0x8c,0x9b,0xb3,0xb3,0x93,0x93,0xcb,0x48,0xe0,0x55,0xbf,0xeb, +0xbe,0x3b,0x1d,0x57,0x78,0xe3,0xeb,0x21,0xd9,0xfa,0x3c,0x28, +0xe4,0x80,0xac,0xea,0xdb,0xb3,0xbf,0x3a,0xfd,0x62,0xff,0x91, +0x73,0x59,0x37,0xbf,0xa5,0x6a,0x7d,0xf9,0xe6,0xd2,0x81,0x86, +0xf6,0xce,0x9a,0x21,0x0e,0xa6,0x76,0x8b,0x53,0x99,0xc2,0xf2, +0xbc,0xf2,0xcc,0x42,0x0e,0xcd,0x7f,0x27,0xde,0x0e,0xe6,0x66, +0xd6,0x6e,0x35,0xb6,0x7c,0x7b,0x4d,0x73,0x7b,0x69,0x3d,0x07, +0x03,0x68,0x42,0x5c,0x4c,0xcc,0xad,0x8e,0x3a,0xaa,0xe7,0x6a, +0x65,0x1b,0x66,0x14,0xe6,0x17,0x95,0x14,0x95,0x51,0x71,0x12, +0x2b,0x6c,0x20,0xad,0x9b,0xce,0x1f,0xb9,0xaa,0x5f,0xd9,0xc1, +0x1f,0xee,0x34,0x3b,0xeb,0x3a,0xc8,0xc1,0xdb,0xdd,0x16,0x4c, +0x3c,0x3c,0x96,0xe1,0x66,0x63,0x4a,0x20,0x4f,0x1d,0x94,0xe1, +0xeb,0x26,0x74,0x35,0x9c,0xda,0x47,0x37,0x4c,0xa5,0x8d,0xed, +0x32,0xfc,0x00,0x7c,0xe7,0xf6,0x03,0xdb,0x8e,0x6c,0xa7,0x11, +0xaa,0xff,0x8e,0x07,0x35,0x40,0xc9,0x04,0x95,0x50,0x89,0x39, +0xf9,0x91,0xec,0x97,0x8e,0x45,0xcc,0xa9,0x6b,0xb2,0xc7,0x9d, +0x0b,0x98,0x53,0x43,0xcd,0xc9,0xb5,0x19,0xf5,0xd9,0x8a,0x3e, +0xad,0x56,0xfe,0xa6,0xc7,0xb4,0xc3,0x15,0x93,0xf0,0x53,0x99, +0x8b,0x11,0x4c,0x62,0x5c,0xd4,0x75,0x74,0x8f,0x98,0x55,0x99, +0xf2,0xd7,0xfb,0x2f,0x9f,0xa7,0xdc,0x19,0xa3,0x3e,0xa2,0x80, +0x57,0xb2,0x86,0x49,0x80,0xf7,0xe9,0x3f,0x87,0x79,0x85,0xfd, +0x87,0x50,0xf0,0x61,0x5c,0x24,0x85,0x79,0x75,0xe2,0x52,0xd2, +0x83,0x76,0x17,0xd9,0x96,0x84,0xa6,0xa4,0xea,0x24,0x9f,0x0e, +0x7e,0x57,0x10,0x4e,0x0e,0x5d,0x7f,0x32,0xcd,0x88,0xaf,0x3d, +0xd3,0x78,0xa6,0x29,0x9e,0xd3,0x44,0x53,0x03,0x30,0x3d,0x88, +0xd9,0x06,0x90,0x3d,0x07,0x17,0xb2,0x59,0x86,0x32,0x50,0x60, +0x5a,0x72,0xb3,0x5a,0x94,0x7f,0x85,0x86,0x1e,0x6c,0xb8,0x4c, +0x11,0xb9,0x2a,0xcc,0x93,0x6c,0x02,0xd7,0xd4,0x60,0x19,0x8e, +0xf4,0x40,0x03,0xfd,0xb1,0x8e,0x4d,0xca,0x4a,0xc8,0x88,0xcf, +0xe4,0x3a,0x47,0x61,0xf0,0x48,0xa7,0x01,0x1e,0x31,0x16,0x0e, +0x75,0xa1,0x41,0xbf,0xd9,0x08,0x24,0xf7,0x61,0xf2,0x15,0x8d, +0x03,0x38,0x28,0xbd,0x45,0xea,0x41,0xa4,0x3e,0x63,0x19,0x1f, +0xed,0x17,0x15,0x10,0xe9,0xaf,0x88,0x33,0x70,0x0c,0xfe,0x47, +0x6e,0x33,0x78,0x9d,0xd1,0xd0,0x40,0x99,0x25,0xda,0x99,0xe5, +0x6b,0xf3,0x70,0x72,0xe8,0xcf,0x96,0x56,0x29,0xda,0xd4,0xf1, +0x02,0x38,0x26,0x32,0xad,0xab,0x61,0xba,0x25,0xc4,0x6a,0xe5, +0x0d,0xf2,0xe8,0xdc,0x8e,0xd3,0x5b,0xd4,0x46,0x38,0xdc,0x25, +0x4c,0xa6,0x44,0xfa,0x12,0x25,0xd2,0xa0,0xe9,0x4c,0x32,0xfd, +0xb3,0xdd,0xd3,0x7d,0xba,0x72,0xf8,0xb0,0x62,0xff,0xca,0xd0, +0x2c,0x0e,0x1e,0x7c,0x48,0x50,0x81,0xc9,0x2e,0xcc,0x29,0x4b, +0x2b,0x34,0xca,0xe6,0x43,0xdd,0x02,0x5d,0x7c,0x5d,0x39,0x2c, +0x37,0x96,0xa2,0xeb,0x54,0x8c,0x41,0x65,0xfb,0xf0,0x47,0xa0, +0xd6,0x85,0x6a,0xe7,0xc1,0x8a,0x79,0xd6,0x88,0xd3,0xc9,0x55, +0x88,0xdb,0x4f,0x57,0xd1,0x31,0xc1,0x91,0xca,0xce,0x37,0xe5, +0x95,0x63,0xff,0x63,0xd7,0xd6,0xcc,0x09,0x8d,0x77,0x4d,0x2a, +0x55,0x7d,0x80,0x22,0x18,0x79,0x1c,0x90,0xa2,0xa0,0x02,0x45, +0x04,0x32,0xfa,0xc5,0x4b,0xba,0x70,0x66,0x3f,0x16,0xe2,0xf2, +0x7e,0x0f,0xa9,0x4d,0x8f,0xea,0x3d,0x70,0xc2,0xa6,0x73,0x94, +0xac,0xfa,0xaa,0xa0,0x9a,0x3e,0xa8,0x97,0x0e,0xc2,0x72,0xac, +0x63,0xb0,0x82,0x32,0x1a,0x7d,0xd8,0xdb,0xcb,0x82,0x92,0x82, +0x3e,0x1c,0xed,0x65,0xc5,0x33,0x62,0x2a,0xe9,0xbe,0x6a,0x74, +0x56,0x98,0x85,0x1b,0xc5,0x59,0x2c,0xa4,0x28,0x74,0x5f,0x97, +0x7f,0xda,0x2c,0x7d,0xca,0x50,0xe8,0xbe,0x6b,0xd4,0x4b,0x3f, +0xed,0xa6,0x9f,0x70,0x48,0xaa,0xb2,0x72,0x6a,0x3f,0x9c,0x62, +0xa1,0x52,0x01,0x4f,0xed,0x95,0x36,0x9a,0xe9,0xc6,0x0e,0xba, +0x31,0xe3,0xac,0x90,0x4a,0xda,0xce,0xd0,0x57,0x1c,0x87,0xa1, +0xbd,0x10,0xc5,0x52,0x29,0x13,0x5f,0x19,0x9f,0x65,0xc5,0x37, +0xe7,0x04,0xb5,0x7b,0xf5,0x78,0x36,0x29,0xda,0x05,0xa6,0x06, +0xa6,0x04,0xa4,0x04,0x28,0x5a,0x44,0x5b,0x9c,0x30,0x3b,0xd1, +0xdd,0xd6,0xd9,0xdb,0x77,0xc9,0xa6,0x9c,0xf7,0x74,0x70,0xb1, +0x77,0x74,0x08,0xcd,0x3c,0x96,0x1d,0x9c,0x5d,0x53,0x53,0xd5, +0x58,0xd9,0x66,0x45,0xf1,0xb5,0x8d,0x8b,0x8d,0x93,0x63,0x48, +0x66,0x48,0x7a,0x44,0xb2,0xa3,0x13,0xdf,0xe0,0xd4,0x6c,0x5a, +0x6d,0xe7,0x1f,0x40,0x5f,0x41,0xdc,0x29,0x3f,0xbf,0x53,0x7e, +0xb3,0x85,0x9f,0x61,0x03,0xa9,0x77,0x6a,0x32,0xaf,0xb4,0x0d, +0x08,0xf4,0x0f,0xa4,0xfb,0xfd,0x03,0x4e,0xf9,0xcf,0x4e,0x32, +0x6e,0x3d,0xd3,0x7a,0xa6,0x25,0x4e,0x11,0x43,0xfb,0xe8,0x65, +0x54,0xd2,0xcb,0xa8,0x8a,0x4f,0x0c,0x49,0x3c,0x96,0x10,0xd2, +0x92,0xc3,0x07,0xb4,0x79,0x9c,0xf5,0x68,0xb4,0x0b,0xe0,0x53, +0x83,0x52,0x83,0x52,0x02,0x2d,0xa2,0xcd,0x63,0xcc,0x4e,0xf6, +0xb6,0x76,0xf7,0x0e,0x5e,0xa6,0x57,0xe2,0x6e,0xef,0x68,0x67, +0x67,0x17,0x92,0x75,0x2c,0x27,0x38,0xbb,0xbe,0xa6,0xa6,0xa9, +0xa6,0xdd,0xaa,0x94,0x77,0xb7,0x71,0xb2,0x76,0x70,0x3c,0x96, +0x19,0x92,0x11,0x9e,0xe2,0xea,0xc6,0x63,0x8b,0x09,0xb4,0x30, +0x98,0x03,0x3c,0x31,0x85,0xa8,0x0e,0x16,0xa3,0x71,0x17,0x31, +0x83,0x98,0x76,0x16,0xdf,0x99,0xdc,0x81,0x31,0xa6,0x2c,0xb2, +0x56,0xa4,0xc0,0x30,0xd3,0x38,0x4b,0xa7,0x2b,0x83,0x0f,0x1e, +0x08,0xe8,0xf5,0x6f,0xe7,0xd0,0xfa,0x04,0x09,0x37,0x08,0xd4, +0xf2,0x32,0xee,0x0c,0xe0,0xcb,0x06,0x33,0xfb,0x53,0xfb,0xb8, +0x31,0xbd,0x93,0xa4,0x58,0x3f,0xc7,0x28,0x4f,0x8b,0xf2,0x8d, +0x80,0x41,0xdf,0x1e,0x9f,0x4e,0x0e,0x1d,0xa9,0xbc,0x2b,0xeb, +0xcf,0xee,0xcb,0xe8,0xa1,0xe8,0x2b,0xd4,0xc8,0x5f,0xdb,0xcb, +0x8c,0x0b,0xf2,0x26,0xb0,0x0e,0x4f,0xd3,0x05,0x00,0xfa,0xf0, +0x17,0xb2,0x13,0x17,0xde,0x61,0x85,0x24,0x4c,0xa3,0x0b,0x64, +0xe5,0x25,0xb5,0x43,0xa2,0xb2,0x0e,0xfc,0x9d,0xd5,0x3a,0x48, +0x85,0x04,0xda,0x18,0x4a,0xb9,0x20,0x11,0x17,0x7f,0xef,0x68, +0x96,0xda,0xf9,0x05,0x5d,0x80,0xa0,0x44,0xa6,0x79,0x39,0x4c, +0x31,0x85,0xe8,0xc3,0x52,0x82,0x9b,0x63,0x0f,0x4e,0xed,0x3c, +0x7a,0x99,0x6a,0xef,0xa2,0x7f,0x89,0xe4,0x91,0xfb,0xa3,0xb5, +0xc7,0x8b,0x69,0x71,0xe3,0x56,0xab,0x17,0xc5,0xb4,0x8a,0xc7, +0xab,0xa6,0xe7,0x0f,0xbe,0x52,0x3c,0x5f,0x6e,0xb5,0xd2,0x07, +0x0d,0x72,0xee,0x36,0xf0,0x6c,0x89,0x7b,0x55,0x59,0x71,0x65, +0x5e,0x8d,0x22,0x64,0x74,0x61,0x04,0x13,0x9f,0x1a,0x47,0x5f, +0xa6,0x49,0x7c,0xa0,0x96,0xb7,0x95,0x89,0x35,0x17,0xbf,0x6b, +0xe8,0x61,0x3b,0xe6,0xe0,0x53,0xc8,0xa1,0x0f,0x6a,0x16,0x64, +0x11,0xad,0x6d,0x43,0x2c,0x34,0x2e,0x27,0x90,0xda,0x8e,0xa9, +0x0c,0xce,0x32,0x24,0x87,0x71,0xe9,0x45,0x56,0x38,0x8b,0x56, +0x04,0xb6,0xe2,0x65,0xdc,0xca,0x7e,0x0d,0x7f,0x25,0x9b,0x4c, +0x1f,0xb0,0xa0,0xa8,0x20,0xff,0xf1,0xae,0xc2,0x26,0xc3,0x07, +0xac,0x38,0xd3,0x9b,0x1c,0xdd,0x7a,0x8e,0x15,0x12,0xc4,0xeb, +0x04,0x19,0xc6,0x2e,0x2a,0xb1,0x5c,0x79,0x18,0x56,0xc3,0x77, +0x62,0x26,0x7e,0x07,0xca,0x6c,0x98,0x9e,0x8a,0x0d,0xae,0x3d, +0x96,0xa1,0xcb,0xc3,0xf2,0x2c,0x98,0xd1,0x9a,0xff,0x2b,0xf7, +0x54,0x8d,0xd1,0xce,0xf7,0x92,0xd7,0x97,0x6e,0xce,0xa2,0x72, +0xe6,0x02,0xab,0x93,0x23,0xd3,0x80,0x01,0xa2,0x2b,0xce,0xef, +0x67,0x85,0xf9,0x4b,0x9e,0x6f,0x2c,0x25,0x47,0xc5,0xf9,0xe7, +0xd8,0x19,0xd7,0x85,0x0a,0xf2,0xed,0x85,0xc2,0xfa,0x94,0x41, +0xfa,0x14,0x55,0x7a,0x28,0x15,0x4a,0x49,0x88,0x4d,0x88,0x56, +0xba,0xb7,0xb3,0xa2,0x5a,0xb6,0x1e,0x4a,0xae,0xb2,0x85,0x2e, +0xe7,0xba,0x8a,0x9a,0x13,0x3b,0xa9,0x38,0xdd,0xd9,0x0b,0x3b, +0x93,0x98,0x24,0x83,0x0a,0xdb,0x9f,0x0f,0x55,0xb6,0xf3,0xcb, +0x46,0x2c,0xda,0xfc,0xdb,0x38,0x50,0xec,0xc0,0x0f,0xee,0xe8, +0xef,0x9c,0x6b,0xfa,0x0d,0x13,0x6c,0xe9,0x62,0xa2,0x65,0xc1, +0xe5,0x98,0x6a,0xef,0x7d,0x04,0x7f,0x6d,0xc1,0xbf,0x5e,0xfa, +0xa3,0x19,0x75,0xd8,0xa4,0xcc,0x84,0xcc,0x84,0x0c,0x8b,0x74, +0x3e,0xd4,0xce,0xd3,0xd2,0xcd,0x89,0x2b,0x5d,0x7a,0xc7,0x60, +0x27,0xbe,0x67,0x0a,0x7f,0x65,0x03,0xf4,0xcd,0x8c,0x37,0xe9, +0x71,0x70,0x1f,0x14,0x48,0x76,0x76,0x56,0x5e,0x46,0x3e,0x77, +0xe1,0x10,0xce,0xb4,0x84,0x99,0x4b,0x0e,0x0d,0x9a,0x46,0x30, +0xdb,0x6f,0x47,0x25,0x45,0x9d,0x8e,0x3a,0xae,0x18,0x46,0x91, +0xf3,0xf0,0x8f,0x4c,0x85,0x78,0x8a,0xa4,0xa7,0x07,0x67,0x79, +0xe7,0x04,0xa4,0x2a,0x7a,0x7a,0x66,0x44,0x66,0x85,0x65,0x84, +0x2b,0xe2,0x3e,0xd8,0x64,0xd4,0x07,0x87,0x99,0xe0,0xe0,0xdc, +0xb0,0x82,0x63,0x99,0xa1,0x8a,0x25,0x25,0x61,0x29,0xc7,0x52, +0x43,0x92,0x15,0x85,0xbe,0xf7,0x47,0x61,0xf9,0x3f,0xa6,0xe2, +0x72,0xca,0x33,0x84,0xc3,0x60,0x6f,0x84,0x3b,0x18,0xdc,0xf8, +0x05,0xa9,0xf7,0xac,0x73,0x2f,0xf7,0x2a,0x2d,0xe7,0xdd,0x8a, +0x1c,0x4b,0x1c,0x8a,0x2b,0x4b,0x4a,0x4b,0xf2,0x0b,0x9d,0x8b, +0x79,0x7f,0x1f,0x77,0x4f,0x67,0x0f,0xdb,0x52,0xbb,0x22,0x97, +0x1c,0x4f,0x77,0xbe,0x22,0xb0,0xd6,0xa7,0xce,0xcb,0xce,0xdd, +0xca,0xd3,0xda,0xb7,0xc4,0x85,0x6f,0x2e,0x68,0xab,0x68,0xaa, +0xe4,0x20,0x4d,0x97,0x3c,0x28,0xfb,0xa8,0xed,0xea,0x80,0x6b, +0x3b,0xaf,0xa6,0xa7,0x62,0xb1,0xc1,0x83,0x13,0x17,0xd5,0x11, +0xfa,0xed,0xc1,0x59,0x21,0x25,0x25,0x7c,0x50,0x86,0x6f,0x56, +0x50,0x2a,0x55,0x88,0xa6,0x24,0x28,0xd3,0x2b,0x27,0x20,0xcd, +0xdb,0x83,0xcf,0x0f,0x29,0x09,0xc8,0x08,0xe5,0x84,0x77,0x72, +0x88,0xca,0xde,0x05,0x5a,0xc8,0x3a,0x97,0x18,0xf2,0x20,0xab, +0x79,0x32,0xf0,0xf9,0x5d,0x0e,0x3b,0xa4,0x9c,0x48,0xa5,0x3a, +0x98,0x76,0xf9,0xf1,0x77,0x8e,0xed,0xfc,0xea,0x0d,0xf8,0xe6, +0x3e,0x7c,0xdf,0x81,0xc3,0xdf,0xce,0x10,0xf3,0xc8,0xa4,0x7a, +0xe5,0x7c,0x16,0xde,0x4e,0x86,0x19,0x39,0xbf,0x95,0xfa,0x77, +0xf3,0xcb,0xdd,0xf1,0x6f,0x01,0xc8,0x44,0x71,0x23,0x6a,0xf8, +0x2e,0xbb,0xaf,0x28,0xe4,0x63,0x25,0x28,0x63,0x3a,0xf3,0x52, +0xda,0x95,0xfb,0x58,0xf5,0x2c,0x99,0x2a,0x2b,0xd5,0x99,0x3c, +0x21,0x31,0xf1,0x13,0xa1,0x91,0x52,0x28,0xe5,0xcf,0x0f,0xfa, +0x36,0xc1,0x51,0x1d,0x3c,0x8a,0x93,0xf4,0x1e,0x33,0xe1,0x52, +0x22,0x32,0x65,0xe2,0x92,0xd3,0x67,0xe0,0x51,0xde,0x13,0x39, +0x13,0xa7,0xf8,0xb5,0x63,0x02,0xa1,0xf7,0xe2,0xca,0xda,0x26, +0x19,0xbc,0x03,0x57,0xc9,0xc0,0x0f,0x3a,0x5d,0x03,0x5f,0x76, +0xae,0xbd,0x6c,0x7c,0x70,0x39,0xfd,0xbf,0xca,0xe4,0x5b,0x1d, +0x3a,0x7d,0x9f,0xed,0x20,0x3e,0x8c,0x4f,0x64,0x62,0xa5,0x32, +0x38,0x0f,0x08,0x17,0x30,0x49,0xbc,0xd0,0xcb,0x9e,0xc0,0xff, +0xc7,0xd8,0x5b,0x80,0x67,0x71,0x6d,0x6d,0xc3,0xd8,0x33,0x33, +0x40,0x81,0x52,0xba,0xe9,0x24,0x40,0x82,0xbb,0x6b,0x70,0x12, +0x20,0x09,0x71,0x77,0x77,0x25,0x84,0xe0,0x41,0x02,0x21,0x58, +0x81,0xb8,0x1b,0x71,0x37,0xe2,0xee,0x4a,0x80,0xe0,0x52,0xa0, +0x42,0x4f,0x0b,0xa5,0x2d,0x14,0xe9,0x9a,0xa7,0x6b,0x72,0xfa, +0xef,0x09,0xf4,0x7d,0xcf,0xff,0x7d,0xe7,0xbf,0xae,0x1f,0xae, +0xab,0xd9,0xcd,0xf3,0x30,0x7b,0xc9,0xbd,0xd6,0xba,0xd7,0xcc, +0x9e,0xbd,0xd9,0x7d,0x2a,0xfa,0x9a,0x5c,0x39,0x4e,0x78,0x06, +0x6c,0x15,0xb2,0x0f,0x87,0xfe,0x7b,0x1f,0xbe,0xa8,0xc1,0x09, +0x6c,0x5c,0x46,0x4c,0x56,0x44,0xaa,0x4d,0x1c,0x1f,0xec,0x7f, +0xc2,0xf7,0xe8,0x1e,0x6e,0x35,0x13,0x95,0x12,0x93,0x11,0x9d, +0x63,0x93,0xc0,0xef,0xdf,0xe1,0xbc,0x4e,0x6f,0x5b,0x9e,0x13, +0x9f,0x9a,0x9e,0x94,0x15,0x9f,0xc5,0xe1,0x6f,0xf5,0x55,0x90, +0xc4,0x86,0x84,0x94,0x3a,0xdd,0xbd,0x5b,0xf4,0x67,0x28,0x28, +0x29,0xd4,0xe2,0x3e,0x46,0x37,0x37,0xb0,0x4e,0x29,0x8b,0x29, +0x88,0x4b,0x2c,0x57,0xfe,0x83,0x75,0x48,0x94,0x59,0xca,0xbf, +0x92,0x0e,0x3a,0x5d,0x0c,0x9f,0xb1,0x78,0x05,0x0b,0x08,0x6c, +0xc6,0x05,0xb8,0x99,0x85,0xef,0x68,0xfb,0x8a,0x8b,0xe8,0x68, +0x1b,0x10,0xb2,0x52,0xef,0x47,0x16,0xce,0x4c,0x5e,0xa9,0x43, +0x7f,0xfc,0x76,0x58,0xda,0xd0,0x6c,0xb1,0xb4,0xa1,0xd9,0x62, +0x89,0x72,0x49,0x8b,0xcd,0x08,0x8b,0x7f,0xe2,0x0a,0x72,0xff, +0xf7,0x6d,0xec,0x7c,0xda,0x7c,0x3c,0xfc,0x7d,0x0b,0xeb,0x30, +0x4a,0x65,0xfe,0x33,0x76,0xbc,0x7c,0xaf,0xf0,0x6f,0x02,0xb3, +0x99,0x13,0xaa,0xfe,0x4b,0xdd,0x36,0x36,0xee,0xe1,0x6b,0x7e, +0xcb,0x7a,0x17,0xfb,0x94,0x6b,0xc0,0xef,0xd9,0xe8,0xe6,0x88, +0xd6,0xd0,0x76,0xe3,0x08,0x3e,0x78,0xde,0xb1,0x55,0xbe,0x6b, +0xdd,0xfb,0x6d,0x6e,0xdb,0xf4,0x59,0xfb,0xf2,0x99,0x9e,0xd9, +0xce,0x19,0x2e,0xda,0xc1,0x6b,0x42,0xd6,0x9f,0x29,0xed,0x2e, +0xbc,0x9b,0x3b,0x60,0x9c,0xc1,0x07,0xec,0xb2,0x5d,0xe8,0xa0, +0xb9,0xf3,0x1c,0x1f,0x65,0xf0,0x3e,0x1c,0x74,0x63,0xde,0x25, +0x2a,0xd0,0x22,0x71,0x24,0x32,0xb0,0x34,0x9b,0x0f,0xf2,0x39, +0xe6,0x1b,0xe8,0xd3,0xe8,0xc5,0x17,0xf4,0xa4,0xf7,0x26,0x5d, +0xe7,0xbe,0x43,0x65,0x06,0xbd,0x8c,0x28,0xc7,0x59,0x83,0x73, +0x94,0x8a,0xf5,0x41,0x19,0xa6,0xf5,0x03,0x1b,0x06,0x9b,0x15, +0xa4,0xcd,0x58,0xb7,0xde,0xc5,0xb1,0x30,0x13,0xbf,0x2a,0xe8, +0xe6,0x71,0x3d,0xcc,0xd1,0xa1,0x1f,0x7b,0x2a,0x8a,0x9b,0xf1, +0x57,0x72,0xf6,0x52,0x54,0x6a,0x44,0xfa,0xe5,0x3c,0x05,0x70, +0x6f,0x45,0x57,0x98,0x00,0xdb,0x5a,0xb0,0x97,0x49,0xc8,0x89, +0xcd,0x8a,0xc8,0x30,0x49,0xe6,0xf7,0xeb,0xd8,0x6f,0x36,0x30, +0xaa,0x70,0xe2,0xb3,0xb3,0x32,0x0b,0xae,0x14,0x70,0x30,0x1c, +0x27,0xa0,0xbf,0x29,0xf8,0x30,0x87,0x17,0x6b,0xa8,0x21,0xd9, +0x95,0x63,0xca,0xbf,0x6c,0x7c,0xd0,0x57,0x75,0x3b,0x22,0x3a, +0xe2,0x5c,0xf8,0xe9,0xd7,0x28,0xe3,0xab,0xcb,0x17,0xfd,0x79, +0x2c,0x21,0xf8,0xeb,0xe3,0x41,0x0a,0xe3,0xe5,0xbb,0x85,0xbf, +0x09,0xcc,0x67,0x82,0xb6,0xed,0xa5,0xc6,0x68,0x90,0x8c,0x91, +0xf9,0x2e,0xf6,0x19,0x57,0x8f,0x0f,0xff,0xd7,0x18,0xc7,0x51, +0x65,0x37,0x92,0x8d,0x38,0xb7,0x9e,0x92,0xc2,0x6f,0xf2,0x9f, +0x5d,0xf9,0x9e,0xbb,0x83,0xd3,0x19,0x34,0xb1,0x42,0x1e,0xbf, +0xc4,0xc9,0x4a,0x97,0x23,0x2e,0x46,0x46,0x2b,0xc2,0x15,0xdc, +0xf0,0xdc,0x70,0x15,0x0e,0x67,0x4b,0xcb,0x0b,0xaa,0xb3,0xaa, +0x39,0x70,0x6b,0xc1,0x5d,0x4c,0x6c,0x66,0x4c,0x66,0x54,0xa6, +0x69,0xb2,0x64,0x13,0x9f,0x40,0x1f,0x0e,0x35,0xa5,0x13,0xa5, +0x1d,0x75,0x8c,0xf5,0xd4,0xcd,0x0b,0xad,0xf8,0xd4,0x84,0xd4, +0xa4,0xe4,0x24,0x0e,0xcb,0x3b,0xa1,0xf8,0x37,0x7c,0xd1,0x09, +0x2f,0x60,0x18,0xfa,0x6c,0x63,0x13,0x4c,0x65,0x5d,0x4c,0x4c, +0xd4,0xa5,0xcb,0x51,0xca,0x07,0x0f,0x53,0x83,0xcd,0x80,0x29, +0x37,0x61,0x4c,0x18,0x6c,0xfa,0x68,0xb0,0x07,0xf8,0x19,0xcc, +0xc2,0xc9,0x92,0xc1,0x36,0xc0,0xec,0x5d,0xf4,0x63,0x0f,0xc5, +0xc1,0xd9,0xbd,0xe4,0x76,0xda,0xf3,0xca,0xc7,0x0d,0x6d,0xde, +0x4d,0x5e,0x15,0xbe,0x05,0xb5,0xbc,0x7b,0xb6,0x43,0x8e,0x4d, +0x4e,0x4b,0x49,0x5d,0x59,0x41,0x89,0x63,0x19,0xef,0xe6,0x64, +0xe9,0x6c,0xec,0xa6,0x51,0xb6,0xb3,0xc8,0x28,0xcd,0xcf,0x86, +0x6f,0x3a,0xd0,0xe5,0xd7,0xe9,0xad,0xe9,0xba,0xdd,0x4b,0xeb, +0x00,0xad,0x2a,0x7f,0x09,0xf5,0xa4,0xba,0xba,0xb4,0x3e,0xaf, +0x89,0xfb,0x53,0x93,0xc1,0x2f,0x36,0x6f,0x47,0x93,0xcd,0x4a, +0xb9,0xc6,0xa0,0xf9,0xe8,0xfe,0xad,0x44,0x18,0x45,0x67,0x4e, +0x41,0xf6,0x3b,0x55,0x70,0x5c,0x95,0xdf,0xc5,0xa3,0xfb,0x77, +0x73,0xef,0xc3,0x64,0xc5,0x1b,0xe0,0xc1,0x1e,0xb0,0x77,0x33, +0xb4,0xb3,0x6d,0xf2,0xe6,0x3b,0xfa,0xca,0xae,0x65,0xf5,0x71, +0xd5,0xe2,0x66,0x36,0x36,0x33,0x3a,0x2b,0x2a,0xdb,0x38,0x81, +0xf7,0x5c,0x6a,0xb1,0x76,0xeb,0x4e,0x2e,0x1e,0x16,0x10,0xf3, +0x22,0xf5,0x62,0x9d,0x34,0x1f,0x6b,0xbe,0x67,0xdf,0x2d,0xaf, +0x76,0x77,0x6e,0xcf,0x5c,0x62,0x5a,0xa8,0x56,0xa0,0x93,0xee, +0x47,0x2b,0xd5,0xfe,0x6b,0xbb,0x7b,0xdd,0xb8,0xf6,0xbd,0x44, +0x5d,0x73,0xad,0xde,0x7a,0xfb,0x02,0x4b,0xfe,0x87,0xc6,0x5f, +0x6e,0xb4,0xf5,0x72,0xb8,0x0b,0x69,0x4f,0x51,0x3c,0xd7,0xf8, +0xaf,0x29,0xed,0xd3,0xa5,0x47,0x0a,0x87,0x4d,0x08,0x1e,0xc4, +0x05,0xd2,0x73,0x10,0x39,0x1e,0x24,0xd2,0x08,0x16,0x30,0x5d, +0x43,0x8f,0x44,0x60,0x85,0xf4,0x2c,0x44,0x1e,0x2c,0xf9,0x55, +0x81,0x09,0x52,0x0d,0x58,0xe2,0xbe,0xa1,0xde,0x9f,0xaf,0xfe, +0x3d,0xfd,0xed,0x90,0x5f,0x7b,0xd8,0xd8,0xa6,0x88,0xd6,0xb0, +0x4e,0x93,0x70,0xfe,0x24,0x4e,0xde,0x3b,0x5d,0x67,0x66,0xbd, +0x17,0x9f,0x53,0x7f,0xa5,0x21,0xb1,0x89,0x7b,0x88,0x33,0x29, +0x4a,0x4d,0x70,0x2a,0x2e,0xf9,0x88,0x52,0x05,0x98,0xd6,0x03, +0x94,0xce,0x4b,0x46,0x0f,0xc7,0xad,0x37,0x69,0x47,0x35,0x15, +0x15,0xf2,0xa9,0xd1,0x57,0xc0,0x3c,0x43,0x98,0x2a,0x19,0x7d, +0x6d,0x02,0x81,0xe1,0x35,0x0d,0xa5,0x85,0x65,0x11,0x11,0x61, +0x5f,0x47,0x87,0xc0,0xba,0xd9,0x7c,0x5e,0x2d,0xce,0xf8,0x29, +0x30,0x5a,0xda,0xc1,0x5f,0xe1,0xc4,0xc9,0x33,0x97,0xa3,0x92, +0x22,0x92,0x43,0xd3,0x14,0xc0,0xbc,0x19,0x8d,0xc2,0x98,0x27, +0xb4,0x65,0xd7,0x37,0x87,0x5d,0xec,0x11,0x75,0x3d,0x57,0x1c, +0x63,0xc3,0x09,0xde,0xdb,0x88,0xe8,0x6b,0x06,0x72,0x51,0x05, +0x15,0xa4,0x53,0xf1,0xde,0x33,0x8d,0x57,0xae,0xd4,0x2b,0x0b, +0x8b,0x3a,0x58,0x51,0x83,0x46,0x74,0x6f,0x6b,0x3f,0x18,0xc2, +0x39,0x96,0x26,0x3a,0x53,0x02,0xb3,0xa8,0x10,0xb3,0xa8,0x8e, +0x4e,0x92,0x8e,0xab,0x29,0x76,0xff,0x27,0x90,0x3f,0x61,0xf7, +0x9b,0xff,0xc4,0xee,0x9a,0xdd,0x38,0x69,0x2b,0xce,0xa2,0xd8, +0xad,0x7c,0x94,0xf7,0x4d,0xea,0x33,0xae,0x8f,0xf6,0x19,0xe8, +0xa5,0x83,0xd3,0x71,0xcb,0x47,0x2d,0xe7,0xc2,0x94,0xbb,0x30, +0xf6,0x7f,0x62,0xf1,0x09,0x4e,0x80,0x05,0x48,0x0a,0x7b,0x78, +0x54,0x83,0x59,0x3b,0x61,0xa6,0x14,0x8b,0x06,0x70,0x97,0xa4, +0xee,0xec,0x34,0x04,0x76,0xbb,0xf4,0x68,0x7b,0xe2,0x2d,0xbb, +0x2e,0xff,0x46,0x4e,0x97,0xd9,0x6b,0x6a,0xaa,0x8b,0x93,0xd5, +0xa5,0x5b,0x30,0x9f,0x0d,0xdc,0xee,0x4d,0xb9,0xcf,0xbd,0x41, +0x0d,0x52,0x87,0x16,0x36,0x94,0x69,0x8a,0x95,0x04,0xab,0x1f, +0x40,0x4d,0x23,0xd6,0xdc,0x83,0x02,0xb8,0x8a,0xff,0x1a,0x9c, +0xd8,0xf9,0x1b,0x54,0x33,0x1a,0x82,0x0a,0xc1,0x80,0x3b,0x10, +0xc0,0x60,0x00,0x8e,0x26,0x10,0xa0,0x8a,0x01,0xcc,0x78,0xf9, +0x29,0x49,0x21,0x42,0x15,0x0a,0x58,0xea,0xb6,0xa1,0xc1,0x9f, +0x2a,0x94,0xfe,0x51,0xa1,0x7e,0x36,0xa6,0x39,0xa2,0x25,0xb4, +0xc3,0x24,0x82,0x3f,0x81,0xf3,0xfc,0x71,0x8c,0x3a,0x4e,0xac, +0xf7,0xe4,0x8b,0xaf,0x65,0xf5,0x27,0xdf,0xe4,0x9e,0x48,0x6e, +0x73,0x35,0xc7,0x29,0x38,0x1b,0x67,0x28,0x85,0xc5,0x86,0xc6, +0x5f,0x4a,0xe2,0xe2,0xdf,0x86,0x03,0x03,0x73,0x14,0xf1,0x19, +0x13,0x97,0x1d,0x93,0x1d,0x4d,0xeb,0x5b,0x04,0xdc,0x17,0x95, +0xf1,0xfe,0x13,0x66,0xcf,0x06,0x47,0xf5,0x1d,0xbb,0x4a,0xec, +0xf9,0x88,0x70,0xe9,0x0f,0x87,0xb9,0xad,0xad,0x10,0x56,0x8f, +0x61,0x60,0xed,0xc3,0xa6,0x67,0xa6,0x64,0x27,0xe7,0x72,0xd0, +0xce,0x20,0x73,0x66,0xd1,0x89,0x95,0x4a,0x96,0x21,0x47,0x8f, +0x3b,0x4d,0x59,0xc0,0x24,0x59,0xc8,0x9e,0x30,0x35,0x05,0x71, +0x05,0x29,0xca,0x05,0x26,0xc0,0xc3,0xb4,0x6e,0x90,0x85,0x0e, +0x19,0x6d,0x08,0x1a,0x94,0x34,0x20,0x2f,0xc5,0xe3,0x32,0x98, +0x63,0x08,0xd3,0xa8,0xd1,0xf0,0x2e,0x18,0x13,0x2c,0xfd,0x1e, +0x4a,0x29,0x47,0x1a,0xb5,0x1c,0x4b,0x7f,0x62,0x61,0x0c,0x76, +0x12,0x7f,0x56,0xcb,0xcf,0x4e,0xc5,0x44,0x29,0xcb,0xb1,0xa9, +0xa8,0xb4,0x34,0x39,0x4f,0x21,0x94,0xb6,0x61,0x61,0x67,0xde, +0xcf,0xe7,0x0b,0xcb,0x96,0xfc,0x74,0x2a,0x2a,0xe8,0x7c,0xf0, +0xa7,0x17,0x6d,0xe3,0xb3,0x2f,0x67,0xe6,0x2b,0x66,0x51,0x5f, +0x1f,0x92,0x4c,0xa3,0xcc,0x9c,0x90,0x4c,0xf3,0x31,0x4f,0x65, +0x7c,0x34,0xcd,0xfd,0x8f,0x78,0xee,0xa0,0xbe,0x0e,0xc2,0x29, +0x7b,0x71,0xe4,0x2e,0x1c,0xd9,0xe0,0xc5,0xe7,0x35,0xa7,0xb7, +0x26,0x75,0x70,0xcf,0x70,0x06,0x83,0x66,0x36,0x38,0x19,0x3f, +0xc7,0xaf,0x94,0x84,0x1d,0xb8,0xc2,0xf4,0x35,0x4e,0x5d,0x62, +0xf6,0x92,0xe6,0x61,0x45,0x21,0x0a,0x4c,0x5a,0xd1,0x04,0x3e, +0x67,0xef,0x46,0xdf,0x8a,0x6d,0x8f,0xdf,0xd3,0xc4,0xe3,0x58, +0x3f,0xd4,0x3a,0x80,0x0a,0x67,0x12,0x4c,0xf8,0xb6,0x4b,0x37, +0xc2,0x6e,0x46,0x72,0xd2,0x21,0xdc,0xa6,0xe0,0x2b,0x46,0xe1, +0x57,0xb0,0x46,0xea,0x79,0x14,0xd8,0xfc,0xf0,0xb2,0xe8,0xab, +0xf1,0x01,0x4d,0xbc,0xfd,0x11,0x93,0x63,0x0e,0x21,0x9c,0x18, +0xdb,0x79,0x0b,0x3e,0xb0,0x81,0x47,0x8b,0xf4,0xa9,0xe2,0xd3, +0xfa,0x80,0x09,0xfb,0xc7,0x2e,0xb7,0xa8,0x5d,0xa6,0x7f,0x0c, +0x99,0x35,0x30,0x57,0x6f,0xc8,0x2e,0xe3,0xe5,0xe1,0xf2,0x61, +0x04,0x3e,0x63,0x4e,0x6e,0xdb,0xb7,0xc4,0x43,0x8a,0xce,0xca, +0xdf,0xd3,0xde,0xc6,0x7c,0xcb,0xd5,0x61,0x25,0x1b,0xdb,0x18, +0xd9,0x1a,0xd6,0x65,0x26,0x45,0x27,0xb7,0x7f,0x81,0xc9,0x72, +0x0e,0x67,0x3e,0x85,0x8d,0x8d,0xb8,0xf1,0x01,0xd3,0x18,0xdd, +0x10,0x5f,0x73,0xc5,0xaf,0x96,0xd7,0xf1,0x5d,0x7f,0x74,0x6b, +0x70,0x5a,0x14,0xbf,0xbb,0x5a,0x77,0xf7,0x9a,0xc3,0x5b,0x83, +0x15,0x62,0xac,0x4b,0x2e,0x57,0x44,0x54,0x44,0x29,0xa8,0xe0, +0x7c,0x4b,0x98,0xbf,0x1e,0x79,0x6b,0xe0,0x55,0x70,0xa9,0x15, +0x2c,0x5d,0x23,0x8d,0x19,0xf6,0xf0,0x16,0xeb,0xed,0xaa,0xfa, +0x25,0x16,0xfc,0xa3,0x81,0xdc,0xae,0xc8,0x5b,0x94,0x1a,0x9e, +0x6e,0x81,0xb6,0x37,0xd8,0xd6,0x42,0x8b,0x45,0xf8,0xa5,0x0b, +0xa1,0x67,0x95,0x5e,0x4c,0xaf,0xa8,0x5c,0xfe,0xee,0x54,0xcc, +0x29,0xe9,0x45,0xe7,0xc0,0x63,0xb2,0x33,0xed,0xb0,0x14,0x14, +0x6b,0x1b,0xa4,0xfe,0x3d,0xf7,0x50,0x46,0x59,0x72,0x79,0x42, +0x85,0xc2,0x5d,0x9c,0x43,0xa3,0xc7,0x02,0x15,0x29,0xd8,0xe6, +0x28,0x51,0x85,0xbf,0x04,0xa5,0x56,0x18,0xf9,0x31,0x31,0x87, +0xe1,0xd6,0x1e,0x1c,0x09,0x93,0x71,0x8a,0xa4,0xf0,0x42,0x98, +0x6f,0x4e,0x53,0x88,0x87,0xa2,0x98,0x06,0xf5,0x24,0x3e,0x34, +0x4e,0x5a,0xf2,0x63,0xcd,0x27,0x5e,0x4a,0xba,0x98,0x78,0x99, +0xd3,0x98,0xcb,0xbe,0xb1,0x24,0xeb,0xe7,0x3e,0x65,0xdf,0xe0, +0x64,0xa2,0x32,0xf7,0x19,0x0b,0x4b,0x27,0xbf,0x51,0x99,0xcb, +0x50,0xa9,0xc9,0x9b,0x35,0x73,0x19,0xfa,0xbf,0xdf,0xbf,0x59, +0x43,0x7d,0x7f,0x4e,0xb2,0xd6,0xe7,0xd4,0x5a,0x01,0x1f,0xad, +0x55,0x45,0x73,0xd9,0x90,0xb5,0xea,0xd8,0xa8,0xe6,0xb0,0xd6, +0xd0,0x0e,0xd3,0x70,0xfe,0x14,0x2e,0xdc,0x87,0x9f,0xe9,0xe1, +0xa4,0x7a,0x6f,0xbe,0xe0,0x7a,0xda,0x8d,0xc4,0x5b,0xdc,0x0d, +0x9c,0xcd,0xa0,0xb9,0x23,0xa5,0x03,0x63,0xa9,0xef,0x53,0x45, +0x65,0xb9,0xb9,0x40,0xda,0x45,0xfd,0x7f,0x0f,0xef,0xee,0xa4, +0x4d,0xc7,0xb9,0x73,0x54,0xf8,0xc9,0xa0,0xd4,0x2e,0x09,0xbf, +0xf9,0xa3,0xf0,0xd7,0x69,0x82,0x9b,0x8c,0xfc,0x47,0xe1,0xe7, +0x18,0xd1,0x04,0x47,0x51,0x1c,0x77,0x81,0x80,0x23,0x5e,0x45, +0x47,0x16,0x02,0x41,0x3a,0xf9,0x4e,0xed,0x03,0xdb,0x2f,0xc6, +0x11,0x68,0xa5,0xbc,0xa4,0x95,0x85,0x97,0x93,0xe9,0x68,0x09, +0x1d,0xad,0x81,0x4b,0x04,0x2d,0x8d,0xa5,0x1d,0x2a,0xbf,0x9e, +0x8c,0x96,0x06,0x74,0x30,0x5e,0x1e,0x23,0x09,0xcf,0x0e,0xb9, +0xda,0x73,0x43,0xdd,0x7f,0xb8,0xba,0xf8,0x63,0x92,0x92,0x84, +0x0f,0xc2,0xc5,0x7b,0x70,0xec,0x76,0x9c,0x5c,0xeb,0xc1,0x97, +0xdd,0xcc,0x1e,0x48,0xb9,0xcb,0xdd,0x44,0x6a,0x08,0x27,0x6b, +0x54,0xa0,0xd0,0x55,0x52,0x12,0x46,0xe1,0x41,0x2b,0xd8,0x81, +0xcf,0x66,0xb0,0x31,0xd6,0xb2,0x57,0x4c,0x66,0x42,0x64,0x72, +0xb8,0x72,0x86,0x23,0x4c,0x94,0x8c,0x3f,0x22,0xf4,0x7f,0x8d, +0x3f,0x0a,0xbe,0xf8,0x88,0xb6,0x39,0x30,0xc7,0x0c,0xa6,0x48, +0xc6,0xff,0x01,0x96,0x12,0x38,0x53,0xcb,0xe4,0x1d,0x2c,0x3c, +0x54,0x72,0x38,0xab,0x99,0x5f,0x50,0xbd,0xf2,0xda,0xde,0x0e, +0x4e,0x87,0xf1,0x37,0x5c,0xaf,0x8f,0xc4,0x34,0xd3,0x9c,0xaf, +0x4a,0xa9,0x48,0x2d,0x49,0xe3,0x80,0xd0,0xd6,0x30,0xca,0xa6, +0xd2,0xa9,0xd3,0x85,0xc3,0x40,0xa6,0xaf,0xbc,0xa6,0x2a,0x82, +0xd6,0x71,0x23,0x91,0x10,0x58,0x2b,0xce,0x96,0x56,0x7e,0xfc, +0x06,0x2c,0xd1,0xc0,0xca,0x9b,0xec,0x63,0xf4,0x25,0xf8,0x6c, +0x16,0x1b,0x6d,0x2d,0x7b,0xcd,0x14,0x47,0x27,0x94,0x2a,0x0b, +0x63,0xf1,0xa8,0x15,0x2b,0x28,0x1c,0x25,0xae,0x2e,0xe6,0x2e, +0xe6,0xfe,0x99,0x0e,0x7c,0x5b,0x7e,0x7b,0x79,0x49,0x39,0x87, +0x75,0x05,0xc4,0xdd,0xc5,0xda,0xdd,0xda,0x3f,0xc7,0x81,0x6f, +0xca,0x6d,0x28,0x2f,0xb9,0xca,0xc1,0xa9,0x25,0xc4,0xd1,0xc6, +0xd0,0xce,0xcc,0x2f,0xc3,0x9e,0xef,0x2c,0xe8,0xac,0xa9,0x6e, +0xe4,0xb0,0xa2,0x80,0x38,0x3b,0x1a,0xdb,0x9a,0xef,0xce,0xb2, +0xe7,0x5b,0xf3,0xbb,0x1b,0xae,0xd6,0x70,0xe3,0xe5,0x91,0x92, +0x09,0xc7,0x48,0x69,0xf1,0xff,0xf0,0x7f,0x15,0x1b,0xd9,0x1c, +0xde,0x7a,0xf9,0xa3,0xff,0x17,0x1c,0xc0,0xf1,0x86,0xf8,0x05, +0x57,0xc5,0xda,0xc4,0xca,0x76,0xe1,0x17,0xec,0xee,0x93,0xd1, +0x79,0xca,0x39,0x2c,0x2c,0x88,0x3b,0x5b,0x8b,0x73,0x82,0x64, +0x77,0x40,0x97,0x0d,0xd9,0x17,0x72,0xf8,0x44,0x40,0xe3,0x7e, +0x3e,0xa1,0x30,0x36,0x2f,0xa2,0x88,0x2b,0xc1,0xb3,0x7d,0x10, +0x58,0x8f,0x81,0x1d,0x86,0xb8,0x89,0xe6,0x04,0x07,0x16,0x3d, +0x4e,0xe3,0x2a,0x33,0x54,0x50,0xaa,0x77,0x94,0x75,0xc1,0xf4, +0x68,0x58,0x07,0x67,0x15,0x33,0xd9,0x0f,0x51,0xb2,0x83,0xac, +0x49,0x9a,0x57,0x9b,0x12,0xcd,0x42,0xc5,0xf1,0x71,0x85,0x17, +0x95,0x6b,0x7c,0x0b,0x6e,0xa6,0x0d,0x24,0xdc,0x55,0xb8,0x2d, +0xf9,0xca,0xcc,0x99,0x52,0x21,0x8e,0x92,0xa1,0x73,0x65,0x01, +0xa7,0x3d,0x82,0x5d,0x82,0x15,0x6e,0xbc,0x85,0x00,0x2b,0xd4, +0x30,0x05,0x37,0x4b,0xfc,0x96,0x3d,0x74,0xee,0xd0,0xd9,0x83, +0xe7,0x38,0x78,0x69,0x89,0x6e,0x66,0xa0,0x61,0x85,0x01,0x7f, +0x2c,0x66,0x2d,0x82,0x2d,0x42,0x1c,0xce,0x86,0xd3,0x6e,0x6f, +0x7c,0x0c,0x6c,0x2f,0x7e,0x9e,0x1e,0xb0,0x97,0xa7,0xa8,0xfc, +0xe2,0x93,0x57,0x3f,0xa1,0xb2,0x0f,0x65,0xff,0xe1,0x55,0x93, +0x8f,0x5e,0xfd,0x0b,0x16,0x93,0x0f,0x5b,0x98,0x19,0xc1,0xb2, +0xf1,0xf2,0xf3,0xff,0x04,0xc8,0xff,0x99,0x4e,0x8a,0x3e,0x05, +0xc8,0x50,0x3a,0x59,0x14,0x80,0xe3,0xb4,0x91,0xd4,0x79,0xf1, +0x45,0x37,0xd2,0x07,0x92,0xee,0x70,0x1d,0x52,0x28,0xbb,0x5a, +0xd2,0x50,0x9e,0x4e,0xeb,0x86,0xc6,0x6f,0xa7,0xe2,0x83,0x2e, +0x05,0x9d,0x52,0x38,0x11,0x4c,0x33,0x6f,0x74,0x76,0x58,0x59, +0x83,0x62,0x82,0xe1,0x1e,0x76,0xe3,0x71,0x7b,0x03,0x43,0x25, +0xe3,0x27,0xc1,0xb1,0x41,0x17,0x83,0x68,0x5e,0x1e,0xfa,0x34, +0x27,0xac,0xb4,0x9e,0x7e,0x7a,0x98,0x5d,0x76,0xd8,0x70,0xeb, +0x7a,0xa5,0x72,0xfb,0xda,0xe6,0xec,0x9a,0x84,0x72,0x85,0x4b, +0x43,0x9b,0x28,0xfc,0x8a,0xd3,0xf8,0xae,0x86,0x82,0x9a,0xe4, +0x8a,0xcb,0xb4,0xf3,0x08,0x3d,0xf3,0x1d,0x7e,0xc1,0xe7,0xe7, +0x66,0x38,0x50,0x78,0x29,0x75,0xc0,0xc8,0xff,0x51,0xac,0x1f, +0x19,0x1a,0x6e,0x0a,0x9f,0xc2,0xcd,0x78,0x88,0x4f,0x88,0xce, +0xf0,0x98,0x24,0x2d,0x7a,0xa8,0x0e,0x63,0x54,0x73,0x69,0xd3, +0xcf,0xdd,0xd4,0xbc,0xed,0xff,0x88,0xdb,0xc1,0xf8,0x6f,0x53, +0xdf,0x82,0x5f,0xaa,0xe5,0xd1,0x4a,0xfb,0xc5,0xed,0xa7,0x0f, +0x93,0x7f,0xe3,0x68,0x4e,0x37,0x20,0xe6,0x10,0xda,0xcc,0xe2, +0x72,0x7c,0x47,0xe0,0x18,0x9a,0xe0,0x31,0x69,0x6d,0xd2,0x31, +0x82,0xc7,0xc0,0x12,0x8e,0xb1,0xd8,0x60,0x4d,0x70,0xda,0x4a, +0x98,0xc6,0x42,0x30,0x4e,0x23,0x30,0xed,0x25,0x4a,0x47,0x38, +0x86,0xc9,0x87,0x13,0x18,0xcb,0x9c,0xdc,0xba,0x7f,0x89,0xe7, +0xfa,0xba,0xbd,0x7c,0xc5,0xef,0xa9,0x6f,0x63,0xbe,0xe3,0x6a, +0x31,0x99,0x8d,0x6e,0x0a,0x6f,0x0d,0xed,0x34,0x97,0x62,0x72, +0x4e,0x00,0x72,0x5a,0x38,0x21,0x0c,0x1e,0xf2,0x48,0x2c,0xee, +0x33,0xe7,0x71,0x92,0x6c,0xab,0xa5,0xf4,0x73,0x86,0x4c,0xd5, +0xf2,0x1e,0x73,0x0e,0x17,0xca,0x16,0x09,0xcc,0xd2,0xf7,0x6f, +0x9a,0xe6,0xfe,0x64,0x89,0xf5,0x2f,0xf0,0xbe,0x1d,0x64,0x5a, +0x61,0xe6,0x3c,0xe6,0x3c,0x2c,0x94,0x3d,0x6c,0xdc,0xcc,0x5c, +0x80,0x19,0xb2,0xc7,0x8d,0x1b,0xe9,0x4f,0x2e,0x2d,0xbc,0x26, +0xb9,0x20,0x55,0xc1,0xb7,0xda,0x63,0xbf,0xc5,0x61,0xb7,0x93, +0x0a,0x11,0x62,0xa5,0xcc,0xde,0x5c,0x68,0x68,0xd6,0xa5,0xfc, +0xea,0x68,0xb9,0x6f,0x49,0x7f,0xd6,0x8d,0xa4,0x5b,0x0a,0x0d, +0x38,0x8f,0x41,0x4f,0x0b,0x5a,0xcb,0x67,0xe1,0x6c,0xa5,0x8f, +0x58,0x68,0xfb,0x0f,0x2c,0xf4,0x52,0x2c,0x4c,0xfa,0x68,0xb2, +0x79,0x30,0xd7,0x0c,0x14,0x25,0x93,0xad,0x12,0x87,0x93,0x7a, +0xa7,0x2a,0xfb,0x52,0xeb,0xea,0x6a,0xde,0xad,0xc6,0xb1,0xda, +0xba,0x82,0xc3,0x07,0x78,0x88,0xdc,0x6e,0xee,0xbd,0x51,0xd3, +0x6f,0x77,0x95,0x77,0x31,0xd0,0xd6,0xd0,0xb4,0xa1,0xb1,0x94, +0x22,0x41,0x65,0xd8,0xc7,0x74,0xb4,0xbe,0x5e,0x52,0xfd,0xca, +0x47,0xa8,0xe4,0x50,0xd5,0x23,0x3e,0xaa,0x7e,0x12,0x15,0x02, +0x70,0x84,0x1e,0x0e,0xe3,0x60,0x11,0x7a,0x50,0x12,0xe4,0x91, +0xca,0xd6,0xf8,0xe4,0x36,0xa5,0xb5,0x24,0xb6,0x29,0xdc,0x92, +0x04,0x74,0xb1,0xa7,0x69,0xe9,0x4b,0x9c,0xae,0x94,0x8e,0xba, +0x8f,0x61,0x53,0x35,0x6e,0xba,0x07,0x9b,0x6a,0x70,0xd3,0x1d, +0xe9,0x7e,0xe1,0x0e,0x36,0x31,0x3d,0x3e,0x23,0x2a,0xd9,0x34, +0x9e,0x3f,0xb9,0xff,0xa8,0xef,0xa1,0x3d,0x1c,0x4e,0x65,0x62, +0x92,0xa3,0x53,0x63,0xb3,0x2d,0x93,0x78,0x7f,0x2d,0xeb,0x2d, +0x06,0x7a,0xc5,0xce,0x7c,0x7c,0x7c,0x7c,0x52,0x7c,0x2a,0x87, +0x6f,0x5b,0x9b,0x85,0x49,0x6c,0x8e,0x15,0x8c,0x07,0xe5,0x06, +0xe9,0xec,0xa4,0x4f,0xb9,0xac,0x03,0x87,0xc3,0xf8,0x8f,0x85, +0x64,0x3a,0xcc,0xb3,0xa4,0x84,0x83,0x6a,0xda,0x00,0x36,0xa4, +0x0d,0x16,0x98,0xb4,0xb7,0xc1,0x57,0xf5,0xf8,0x55,0xbf,0xb1, +0x16,0x2e,0xe8,0x37,0xd1,0xc2,0x2f,0xad,0xe1,0x4b,0x13,0x16, +0x46,0xa0,0x2d,0x01,0x35,0x74,0x47,0x35,0x16,0xd6,0xc2,0x97, +0x44,0x05,0x47,0xd2,0xb2,0x12,0xa9,0x42,0x9e,0x01,0xa3,0xc2, +0xe2,0x33,0x8c,0x26,0x77,0x60,0xe1,0x76,0x16,0x17,0xe2,0x58, +0x72,0x0f,0x16,0xaa,0xb2,0xf6,0xa3,0x36,0xe1,0xc2,0xc7,0xb4, +0xb1,0x2e,0x82,0xad,0x04,0x26,0x36,0xe1,0xc4,0xdf,0xe1,0x33, +0x30,0xc5,0x2b,0xd7,0x21,0x1c,0x28,0x47,0x64,0x62,0x52,0xe3, +0xb2,0x23,0xaf,0xe8,0x47,0xf0,0xa7,0xf7,0x9f,0xd8,0x7d,0x22, +0x80,0xc3,0x61,0xa2,0x3e,0xcc,0xc6,0x1a,0x66,0x77,0xc8,0xee, +0x33,0x7e,0x67,0x38,0x38,0x6b,0x8c,0x61,0xac,0x73,0x48,0xb4, +0x31,0x8c,0x4f,0x86,0xcd,0x25,0x6f,0x73,0x14,0x42,0x9a,0x1d, +0x82,0x4c,0x8e,0xeb,0x9f,0x50,0x10,0xfe,0x94,0x87,0x12,0x71, +0xb1,0x39,0xbc,0xdd,0x2e,0x4e,0xb1,0x10,0xa6,0x6c,0xc1,0xb7, +0xe6,0x02,0xed,0x4d,0x6f,0x37,0xef,0x60,0xc4,0xb6,0x62,0xb2, +0x0a,0x6d,0x9e,0xb3,0xe0,0x8d,0x97,0xc8,0x42,0xf4,0xfe,0x55, +0x5a,0x61,0x67,0x46,0x79,0x7e,0x1b,0x9c,0x03,0x16,0x7b,0xda, +0xa1,0x07,0xc6,0xa1,0xe9,0x46,0x36,0xc5,0x5c,0xd6,0xce,0x54, +0xa4,0x24,0x57,0x28,0xc3,0xbe,0x46,0x58,0x2d,0x7e,0x8d,0xab, +0x59,0xf0,0x8f,0x23,0xb8,0xf1,0x15,0x6c,0x64,0xda,0x17,0x91, +0x57,0xb0,0x75,0x11,0x3b,0xfe,0x2f,0x4d,0xf9,0x15,0xf2,0x6f, +0x99,0xbe,0xc0,0x32,0x5a,0xa8,0x81,0xd3,0x70,0x04,0xae,0xdd, +0x56,0x6c,0xc8,0xff,0x56,0xf7,0x73,0xcf,0xbd,0xa7,0x9c,0xa0, +0xc0,0x78,0xcd,0x30,0x58,0xb8,0x74,0xfd,0xce,0xb6,0xc5,0x03, +0x6a,0x15,0x0e,0x76,0x7c,0x9f,0xdb,0x4f,0xda,0xf7,0xf4,0x16, +0x69,0xe0,0x17,0xc6,0xb8,0xce,0x35,0x5b,0x9b,0x17,0xc6,0xfe, +0x0b,0x02,0xc0,0x6a,0x00,0x72,0xb8,0x06,0x71,0x05,0x5b,0xd2, +0x98,0xdb,0x99,0xd6,0xcf,0x49,0x7b,0xee,0x0b,0xfe,0x82,0x26, +0xe9,0xbb,0x53,0xf9,0x6d,0xf6,0x2b,0x0e,0x82,0x98,0x0b,0x0e, +0xe7,0x6c,0x82,0xdd,0x39,0xa7,0x53,0x47,0x8f,0x99,0x4f,0x99, +0xc5,0xc4,0x1b,0xc8,0x7e,0x67,0xee,0x56,0xe6,0xde,0x88,0x53, +0x8e,0xac,0x8c,0xb8,0x79,0xf1,0x27,0xda,0xcd,0x31,0x61,0x39, +0x61,0x79,0xa1,0x79,0xba,0xd1,0xfc,0x11,0x9c,0xe7,0x80,0x63, +0xd7,0x2d,0xe5,0xd0,0x06,0xc6,0x91,0xa8,0x9a,0x88,0xba,0xd0, +0x5a,0x0e,0xbc,0xdb,0x45,0x1a,0xf0,0x5f,0x32,0xc7,0x70,0xbd, +0x0d,0x2e,0x5d,0x8a,0x0c,0xed,0x61,0xaf,0x3d,0xaa,0xf9,0x35, +0xe7,0x3d,0x07,0xcb,0x98,0xe0,0x55,0x47,0x36,0xf8,0x6f,0x73, +0x2f,0x71,0x29,0x74,0xce,0xf3,0xb0,0xe3,0xeb,0x3c,0x2a,0xdd, +0x4a,0x9d,0xec,0xe6,0x6a,0xad,0x5c,0xb9,0xb1,0xc2,0x96,0x87, +0x9d,0xb0,0xf6,0x47,0xb0,0xce,0x82,0x34,0xae,0x86,0x15,0x0a, +0x06,0x47,0x11,0x95,0x5c,0xb5,0x12,0xed,0x9a,0x07,0xbd,0x6d, +0xf7,0x0b,0x7e,0xe0,0xea,0x45,0x67,0x43,0xe1,0x2b,0xd6,0x6f, +0x97,0x8d,0x81,0x96,0xa5,0x49,0xb5,0x55,0x93,0x7d,0x87,0x85, +0x23,0x5f,0x63,0x5c,0x6f,0xd5,0xec,0xb0,0xcd,0x76,0xa9,0x1b, +0x8e,0xf0,0xbf,0xa2,0xc7,0xc3,0x84,0xfc,0x77,0x55,0xcf,0xda, +0xee,0x9a,0x3f,0x71,0xfc,0x45,0x7a,0x6d,0x40,0x5f,0x98,0x40, +0xba,0xf0,0x3c,0x24,0xb2,0x37,0x93,0xaf,0xa7,0xb5,0x64,0xfb, +0xb6,0xf0,0xd2,0xc9,0x26,0xdb,0x9c,0x71,0xc6,0xe1,0x78,0x43, +0xbe,0x2d,0x62,0x20,0xf6,0x76,0x22,0x87,0x5f,0xa3,0xae,0x01, +0x68,0xb3,0x27,0x70,0xa1,0x06,0x0e,0xc3,0xb5,0x38,0xaf,0x82, +0x26,0xef,0xf9,0x30,0xfd,0x31,0x7c,0x7e,0x09,0x58,0x4e,0x42, +0xae,0x74,0x5a,0x10,0xac,0xc4,0x39,0x15,0xf4,0x0a,0x5b,0x61, +0xc1,0x76,0x18,0x76,0x1c,0xe6,0x73,0xe2,0x6e,0x38,0x40,0xa2, +0x3f,0x69,0xef,0xd6,0x2e,0xce,0xf8,0x6f,0xda,0xe7,0x0e,0x69, +0x7f,0x6a,0x55,0xe0,0x86,0x3d,0xaa,0xee,0xc5,0x2e,0x85,0x2e, +0xf9,0x1e,0xb6,0x7c,0x2d,0xd5,0xbe,0xcc,0xc9,0x6e,0x9e,0xd6, +0x8a,0x15,0x9b,0x2a,0x6c,0x86,0xb4,0xff,0x17,0x58,0x67,0x0f, +0x69,0x3f,0x5e,0x3e,0x53,0x5e,0x48,0x72,0xe6,0xbc,0x5a,0x04, +0x4b,0x70,0x58,0x09,0xcd,0x97,0xf3,0xde,0x2e,0xfa,0xc5,0xe5, +0x25,0xa7,0xc1,0x78,0xad,0xd5,0x58,0x86,0x13,0x97,0x97,0x98, +0xf3,0xf0,0xf9,0xcf,0x03,0xdf,0x67,0xbf,0xa1,0xc2,0xeb,0x92, +0x36,0xfc,0xc5,0xe4,0x03,0x15,0x7f,0x8b,0x1b,0xae,0xdc,0x84, +0x6c,0xa5,0x0b,0xdf,0xf6,0x4d,0xe9,0x9b,0x74,0x18,0xce,0xc1, +0x04,0x26,0x64,0xed,0xf1,0xcd,0x07,0x55,0x7d,0x73,0xbd,0x73, +0xbd,0xb3,0xbc,0x1d,0xf8,0xab,0x3e,0x25,0x9e,0x05,0xee,0xae, +0x33,0x8c,0x97,0x6c,0x51,0xa9,0x74,0xe0,0x61,0x11,0x6c,0xba, +0x0b,0xf6,0x29,0x90,0xc8,0x55,0xe3,0x66,0x36,0xb2,0x26,0xac, +0xf6,0x72,0x2d,0x27,0x1c,0x42,0x05,0xa2,0xb5,0x11,0x47,0x6e, +0xc6,0x11,0x76,0x99,0xd2,0x11,0x30,0x0d,0x30,0xea,0xc1,0xfd, +0x9f,0x39,0xec,0x17,0x37,0x12,0x58,0xd4,0x0d,0x4b,0xde,0xfe, +0x01,0x9f,0x3b,0x96,0xf2,0xab,0xa6,0xe3,0xfc,0x99,0xb8,0xd8, +0x88,0x52,0xcf,0x74,0x02,0xd6,0xfd,0x60,0x4a,0xe9,0xcb,0x17, +0xb0,0xce,0xae,0x8c,0x47,0x06,0xe7,0xa1,0x1e,0x7e,0x81,0x16, +0x06,0xd4,0x15,0x33,0x05,0x9a,0x9e,0x7b,0xd0,0x1c,0xd6,0x18, +0xd0,0x92,0xac,0x83,0x3d,0xba,0x46,0x10,0xc4,0xfa,0xe3,0xe4, +0x35,0xf3,0xd1,0x64,0x41,0xb6,0x01,0x0f,0xa6,0xef,0x60,0x14, +0x70,0x91,0x30,0x87,0x1a,0x3c,0x16,0xc9,0xb7,0xd4,0xe0,0x53, +0x70,0x4c,0x69,0x07,0x6d,0xcc,0x60,0xd8,0xc6,0x9f,0xf6,0xc0, +0x64,0x0e,0x4e,0x76,0x30,0x83,0x41,0x10,0x42,0x11,0x17,0x56, +0x2b,0xd9,0xdc,0xa0,0x1d,0xd1,0x98,0x32,0xb1,0x63,0xb8,0xc9, +0x19,0x97,0xaf,0x45,0xa6,0xd2,0x99,0xef,0x7a,0x5c,0xfe,0x3a, +0xf3,0x4f,0x0e,0xa6,0x32,0xa7,0xd7,0x1c,0xdb,0xb8,0x4f,0xd5, +0xbb,0xc0,0x23,0xdf,0x3d,0xdb,0xcb,0x9e,0xaf,0xf4,0xbe,0xea, +0x5e,0xe4,0xea,0x3c,0x5b,0x7f,0x99,0xca,0xfa,0x4a,0x7b,0x9e, +0x26,0x93,0xf5,0x8f,0xc1,0x36,0x0d,0x52,0xb8,0x6a,0x16,0x14, +0x63,0x08,0xad,0xc7,0x8e,0x4c,0xe0,0x85,0xc0,0x0b,0x47,0x95, +0xf0,0x73,0x06,0x74,0xa5,0xf3,0x67,0xa7,0x62,0x18,0x2a,0x32, +0x17,0x12,0x2e,0x24,0x26,0x2a,0x8e,0x17,0x8a,0xe5,0xee,0x04, +0xbe,0x0c,0x85,0xf9,0xc9,0x30,0xa6,0xc8,0xaf,0x91,0xaa,0xe8, +0x8b,0x73,0x0f,0xe2,0x92,0xb3,0xc7,0xb6,0xbb,0x2d,0x72,0xd6, +0x6f,0x72,0xe5,0xaf,0x5e,0x2b,0xfa,0x21,0xbe,0x8f,0x43,0x36, +0x95,0xb2,0xd2,0xe1,0x54,0x34,0xf6,0xa3,0x68,0xeb,0x86,0x44, +0xeb,0xfc,0x24,0xda,0x94,0x4f,0xa2,0xf9,0x50,0xd1,0x3c,0xb2, +0x3d,0x25,0xd1,0xca,0xdc,0x8b,0xdd,0x9c,0x67,0xe9,0x2f,0x5d, +0xbf,0x5e,0xf2,0xca,0x1a,0x49,0x34,0xbb,0x2b,0x90,0x4c,0xbd, +0xb2,0x8b,0xfd,0xa4,0xad,0xf0,0xca,0x89,0xe4,0x9b,0x16,0xaa, +0x5e,0xd1,0x6f,0xca,0xe0,0xf7,0x77,0x79,0xdd,0xf7,0x6e,0xe2, +0x28,0x5b,0xdd,0x49,0x4e,0x37,0x04,0xf6,0x1e,0xab,0x32,0x3f, +0xc1,0x27,0xd8,0xc4,0x18,0x45,0x9a,0x73,0xe5,0x78,0x80,0x3c, +0x2c,0xbf,0xdf,0x56,0xd9,0xc1,0x55,0x8b,0x3a,0x66,0x94,0x17, +0x3b,0xbb,0x1a,0x3b,0x6f,0x73,0xa7,0x95,0xef,0x6b,0x13,0xf8, +0x1a,0x77,0xd3,0x64,0x93,0x64,0x24,0x03,0x9e,0x69,0x4c,0x4d, +0x6d,0x54,0x06,0x47,0x38,0xd3,0x86,0x67,0xd8,0xf1,0xc2,0x46, +0xf9,0x54,0xda,0x89,0xc7,0xa7,0x5b,0x67,0x3b,0x16,0xb8,0x2b, +0x68,0xf8,0x6d,0x39,0xb0,0xf2,0x68,0x8a,0x39,0xff,0x2a,0xf1, +0xbb,0xcc,0xfb,0x45,0x4d,0xf6,0xdd,0xbb,0x6f,0x1e,0xad,0x38, +0x95,0x16,0x17,0x5a,0x16,0x03,0x23,0x78,0xab,0xd4,0x20,0xfc, +0xdc,0x34,0xc6,0x3a,0xcd,0xbe,0x50,0xa1,0x2d,0xaf,0xa1,0xa4, +0xba,0xca,0xad,0x94,0xb7,0x73,0xb0,0x74,0x37,0xdc,0xed,0x97, +0xb7,0xb7,0xe4,0x40,0x15,0xdc,0xce,0xe7,0x43,0x9a,0xf0,0xb9, +0xf7,0xb1,0xd2,0xe3,0x15,0x27,0x6b,0x14,0x4c,0x82,0xa3,0x1d, +0x62,0x9d,0xe3,0x5d,0x15,0x90,0x9c,0x90,0x09,0x6b,0x7e,0x21, +0xce,0x09,0xfa,0xc9,0x56,0xd1,0xfb,0xec,0xf8,0x86,0xa0,0x6b, +0x87,0x4b,0x8e,0x72,0xe2,0x2b,0x9c,0x49,0x22,0x6b,0xc3,0xeb, +0x43,0xeb,0x38,0x69,0xb9,0xa9,0x68,0x0c,0xa3,0x98,0xe3,0xb8, +0xd5,0x05,0x57,0xaa,0x50,0x58,0x3b,0xf3,0x1d,0x8f,0xaf,0xbe, +0xc9,0x04,0x5a,0xc2,0x14,0x98,0xd3,0xab,0x8f,0x6f,0xdc,0xb7, +0xcd,0xbb,0xc0,0x93,0x1a,0x90,0xfa,0xb6,0x42,0x32,0xa0,0xab, +0xf3,0x4c,0x83,0x25,0xeb,0x55,0x24,0xdf,0xae,0x86,0x4d,0x8f, +0xc0,0xe1,0x0a,0xa4,0x52,0xdf,0x0a,0x9a,0x78,0x9e,0x58,0x26, +0xeb,0x26,0x1a,0x45,0xef,0xb7,0xe6,0xbb,0x4f,0xf5,0x06,0xd6, +0x1d,0xe6,0x7e,0xc1,0xef,0x88,0x6e,0xb2,0x71,0xae,0x75,0x55, +0x6f,0x59,0x5b,0x75,0x4d,0x93,0x63,0x01,0x6f,0x67,0x65,0xe6, +0xa0,0xef,0xbe,0xbb,0xd0,0xff,0xea,0xfe,0x5a,0xf8,0xbe,0x90, +0x0f,0x69,0xc6,0x37,0x9e,0xc7,0x8a,0x83,0xae,0x9e,0xaa,0x54, +0x30,0x3e,0x15,0xe5,0x1c,0xe3,0x1a,0xe7,0xa1,0x80,0x2a,0x81, +0x11,0x66,0xa0,0x9e,0x9c,0x6e,0x96,0x6b,0x5b,0xe8,0xa2,0xb0, +0xd4,0x1a,0x87,0x7b,0xe0,0x84,0x7d,0x89,0x34,0x48,0x26,0x65, +0xc2,0xe8,0xab,0x7f,0xb4,0xb6,0x9b,0xde,0x70,0x7d,0x78,0xa0, +0xe2,0xc4,0x95,0xa4,0xd0,0xd2,0x38,0xf8,0x82,0xb7,0x4c,0xa3, +0x6c,0xce,0x51,0xbe,0x97,0xbc,0x37,0x98,0x89,0xee,0xc6,0x42, +0x50,0x3b,0x2b,0x9e,0x8a,0xa2,0xf0,0xf8,0xc2,0x18,0xc6,0x51, +0x78,0x6c,0x74,0xc0,0x65,0x2b,0x69,0xb6,0x70,0xe6,0x7b,0x1f, +0x55,0xfe,0x9e,0xfd,0x41,0x3a,0x49,0xf3,0xf4,0xea,0xc0,0x8d, +0x01,0xdb,0x3c,0x8b,0xdc,0x0a,0xdd,0x72,0x3c,0xed,0xf8,0x6a, +0xaf,0x72,0xb7,0x12,0x17,0x87,0xd9,0xba,0x2b,0xd6,0x6c,0xa8, +0xb4,0xe3,0x61,0x13,0xa8,0x7c,0x07,0x36,0xe9,0x92,0x76,0x68, +0x44,0xe1,0x11,0x2e,0x25,0x20,0xa1,0x03,0xcb,0x48,0x46,0xc7, +0x95,0xeb,0xf1,0xdd,0xc6,0x49,0xfc,0x31,0x8d,0x7d,0x1a,0x7e, +0xda,0x1c,0xb6,0x18,0x09,0x71,0x1d,0x0c,0x3e,0x29,0x21,0x27, +0x1b,0x0f,0xf7,0xec,0x6f,0x34,0x3d,0xcc,0x5f,0x31,0x4b,0x36, +0x8a,0xb6,0xe4,0xbc,0xc5,0x16,0x72,0x0d,0xda,0xb4,0x7b,0x84, +0x89,0xe2,0x06,0x71,0x22,0x0b,0x83,0xd2,0xf6,0x32,0xce,0xd8, +0x06,0xce,0x14,0x0a,0xf6,0xf2,0x7a,0xe9,0x80,0x41,0x55,0xb0, +0x63,0x07,0x57,0xd1,0x0a,0x4c,0x27,0x19,0x8a,0x38,0xb5,0x76, +0xfc,0xc3,0x98,0x12,0x77,0x2a,0xb7,0x13,0x2e,0x5f,0x33,0x24, +0x77,0xd7,0xa3,0x8a,0xd7,0x59,0x14,0xd6,0xca,0x12,0xac,0x37, +0x04,0xa8,0x7a,0x17,0xba,0xe7,0xbb,0xe7,0x50,0x58,0x57,0x79, +0x5d,0xa5,0x19,0xcf,0x69,0xb6,0xde,0xf2,0x75,0x43,0x11,0xa7, +0x02,0x2a,0x4f,0xc0,0x2e,0x9d,0xc2,0xba,0x86,0x05,0xa6,0x96, +0xfc,0x09,0x37,0xa6,0xb3,0xa2,0xa2,0xf4,0x72,0xb5,0x89,0xe0, +0x26,0x98,0xb0,0x06,0xf8,0x15,0xc1,0x37,0x4f,0xe1,0x0d,0x83, +0x64,0xd4,0x5a,0x7c,0xf3,0x1d,0x8b,0xfc,0x28,0x78,0xb3,0x02, +0xe9,0x2f,0x26,0xe1,0x1e,0xf2,0x20,0xfd,0x45,0x7d,0x6b,0xb5, +0x47,0x05,0x6f,0xec,0xbc,0xd6,0x41,0xed,0x20,0x27,0x8c,0x6a, +0x21,0xb7,0xfd,0x7f,0xb6,0xed,0xf3,0xcc,0x6c,0xe6,0x8d,0x0a, +0x56,0x54,0x6e,0xc9,0xe4,0xc6,0x0b,0xd3,0x85,0x6f,0x48,0x56, +0x66,0x66,0x6e,0x5a,0x01,0x87,0xa1,0xc2,0x0a,0x88,0x16,0x97, +0xb0,0x31,0x49,0x31,0x49,0xd1,0xc9,0x9c,0xb0,0xab,0x51,0x5c, +0xce,0x44,0x25,0x47,0xa4,0x84,0x27,0x9b,0x46,0xf3,0x01,0x3b, +0x2c,0xd7,0x6a,0xe9,0x71,0xb8,0xe1,0x30,0x89,0xf8,0x98,0xfa, +0x40,0xad,0x0d,0x9f,0x9a,0xbc,0x61,0x4e,0xe0,0x56,0x4f,0x5c, +0xb5,0x15,0xd9,0x0a,0x57,0xbe,0xe5,0x9b,0xe2,0x3f,0xd2,0xa4, +0xf3,0x51,0x47,0xd3,0x6c,0x7a,0x62,0xf3,0x21,0x35,0xbf,0x1c, +0xdf,0x5c,0x9f,0x0c,0x9a,0x4d,0xcb,0x7c,0x8b,0xbc,0xf2,0x3d, +0xdc,0xa7,0x9b,0x2e,0xde,0xb6,0xae,0xca,0x91,0x87,0xb9,0xb0, +0x79,0x00,0x1c,0x92,0x20,0x5e,0x82,0x9d,0xb7,0x07,0xc1,0xd6, +0x76,0x68,0x65,0xb0,0x75,0x0e,0x6d,0x2c,0xf5,0xb0,0x95,0x11, +0xd4,0xe6,0x12,0xf1,0x8e,0x25,0x8c,0x63,0x5c,0x4d,0x0d,0x4c, +0x77,0xb8,0xe6,0x39,0xf2,0x65,0x57,0x8a,0xb2,0xf2,0x73,0x38, +0x18,0xce,0x58,0xea,0xa9,0x68,0xaf,0x74,0xcc,0xa7,0xfe,0x1d, +0xd9,0xf6,0xfc,0x41,0xdb,0x13,0xee,0x35,0x63,0xbd,0x7e,0xfd, +0xb2,0xf9,0xfa,0x25,0xd4,0x74,0xb2,0x3b,0xcf,0xdf,0x34,0xbd, +0xe7,0x7a,0x19,0xd3,0xb3,0x26,0xc1,0x0e,0x4a,0x9e,0x21,0x81, +0x07,0x6d,0xa6,0xac,0x97,0x36,0x49,0xbf,0xcf,0x0c,0x94,0xe4, +0xb7,0x45,0x2b,0x47,0x35,0x86,0x3d,0x78,0xa5,0x28,0xce,0x66, +0x92,0x52,0x13,0xd2,0x62,0xaf,0x70,0xc2,0x0c,0x5a,0xe3,0xd7, +0xca,0xc7,0x12,0x4b,0xe1,0x7c,0x23,0x06,0xde,0x87,0xd0,0x26, +0x0c,0x7d,0x66,0xa8,0x82,0x47,0x2d,0xe0,0xe8,0x36,0x56,0xd4, +0xf6,0x24,0x11,0xb5,0x61,0xf5,0x97,0x69,0xac,0xad,0x68,0xc3, +0x5e,0x93,0xdf,0xa8,0xce,0x6a,0x5e,0xb8,0x46,0x15,0xb9,0x4a, +0x57,0xbe,0xe9,0x49,0xd1,0xdb,0x2b,0x92,0xce,0x32,0xe6,0xcc, +0xda,0xa0,0x4d,0x87,0xd4,0xf6,0x64,0xfb,0xe6,0xfa,0x4a,0x3a, +0x97,0x0e,0xe9,0xec,0x81,0xc3,0xcd,0x16,0xa9,0xae,0xae,0x72, +0xe2,0x61,0x16,0x6c,0xbb,0x01,0x4e,0x89,0x52,0x09,0x61,0x85, +0x52,0x3c,0x42,0xb2,0x5a,0xe1,0x4b,0xb1,0x0e,0xbf,0x6c,0xf2, +0x67,0x05,0xdd,0x06,0x22,0x6a,0x76,0x08,0x9a,0x8c,0x68,0x8b, +0x6b,0x08,0xee,0x12,0xfc,0x60,0x17,0x2b,0xae,0xa5,0x7e,0x7e, +0x02,0xe2,0x06,0x16,0xe3,0x70,0x21,0x09,0xca,0x3b,0x5a,0x14, +0x98,0x69,0x76,0x80,0x4f,0xdc,0x9b,0xe8,0x15,0xb5,0x9b,0x83, +0xc4,0x73,0x24,0x39,0x3f,0x21,0x3f,0x3a,0xd7,0x24,0x99,0x0f, +0xf2,0x0c,0x74,0xdb,0xe7,0xca,0x89,0xca,0xa6,0xf2,0x61,0xad, +0x54,0xa3,0xc5,0xf2,0x4a,0x0a,0x4c,0xda,0xb5,0xdb,0xb1,0x6d, +0x93,0xe9,0xe0,0x94,0x84,0x50,0x3f,0x4a,0xb2,0x3e,0xd5,0x2e, +0x58,0xde,0x86,0x37,0x4d,0xde,0x49,0x0e,0x74,0xc7,0x95,0x9b, +0x29,0x40,0xa5,0x72,0x58,0xf2,0xb1,0x1c,0x8e,0x1b,0x72,0xe0, +0x41,0xd5,0xdd,0xff,0x5b,0x0e,0x8b,0x69,0x39,0x74,0x9b,0x61, +0xb2,0x64,0xcb,0x90,0x03,0x17,0xc0,0xa6,0xdb,0xe0,0x90,0x02, +0x09,0x54,0x97,0x9f,0xcb,0x08,0x8c,0x80,0x2f,0x71,0x04,0x0b, +0x2b,0x26,0xd3,0x91,0x22,0x1d,0xa1,0x9e,0x98,0x41,0x1e,0x83, +0x27,0xbc,0x10,0xf7,0xe0,0x0b,0x70,0xde,0x84,0xd5,0x26,0x50, +0x8d,0xd3,0xda,0x61,0x1a,0xc4,0xb7,0xb1,0x78,0x0b,0x72,0x08, +0x2e,0xfa,0x05,0x16,0x31,0xed,0x8b,0xc9,0x2f,0xb0,0x7c,0x31, +0x8b,0x7f,0x5b,0xd3,0x8a,0xb9,0x00,0x17,0x31,0xe0,0xfc,0x1b, +0x81,0xe5,0x0b,0x70,0x39,0x33,0xfe,0xaf,0x31,0x72,0x2b,0xb2, +0xa0,0x15,0xe6,0xe2,0xc5,0xa7,0xfa,0xeb,0xf1,0x04,0xce,0x6d, +0xf9,0x8d,0xc5,0x28,0x64,0xfe,0x07,0x86,0xf3,0xda,0xb0,0xc5, +0xe4,0x77,0xaa,0xc5,0x36,0x2f,0x5c,0xa5,0x3a,0x04,0xc3,0xe6, +0x27,0x45,0x1f,0x61,0x48,0x5d,0xb2,0xee,0xc4,0xe6,0xc3,0x14, +0x86,0xbb,0x73,0x7c,0x32,0x7c,0x3e,0xba,0x24,0xcf,0xd3,0x03, +0x87,0x99,0x2d,0x56,0x5d,0xfb,0xd1,0x25,0x9b,0x6f,0x80,0x63, +0x12,0xc4,0x51,0x35,0x7e,0x14,0x73,0x89,0xe0,0x4a,0x79,0x68, +0x16,0xf3,0x34,0xf3,0x75,0xc5,0x8b,0x6e,0x9f,0x52,0xde,0xc8, +0x5d,0xc7,0x47,0x7d,0x0f,0x07,0xc3,0x60,0x6b,0x8d,0x38,0xc9, +0x0e,0x56,0xe1,0x24,0x76,0xdd,0xee,0x15,0xfb,0x96,0x1c,0x8e, +0xb3,0xe6,0xd3,0x42,0x53,0x43,0x53,0xc2,0xb8,0x43,0xb7,0x48, +0x7b,0x6e,0x63,0x49,0x65,0x85,0x77,0x11,0xef,0xe9,0x61,0xe9, +0x66,0xe4,0xc7,0xfd,0x8e,0xab,0x49,0x2f,0xd0,0x96,0x1b,0x61, +0x26,0xe9,0x03,0xd0,0x91,0xb6,0xa4,0x1e,0x41,0x6e,0x02,0x68, +0xb0,0xe2,0x45,0xd4,0x27,0x0f,0x52,0xff,0x2c,0xed,0x2f,0xf2, +0xbc,0xca,0xdb,0xf8,0xaf,0xf0,0x5c,0x76,0x80,0x13,0x46,0x14, +0x91,0xc7,0x47,0x9e,0xbb,0xdf,0xf4,0xce,0xaa,0xe7,0xd5,0x0b, +0x96,0x97,0x6c,0x8f,0xa7,0x5c,0x40,0xf9,0x14,0xf1,0x29,0x0b, +0x68,0x39,0x74,0xa3,0xf1,0xc7,0xc2,0x3f,0x32,0x60,0x94,0x75, +0x22,0x7f,0x78,0xd9,0x3e,0x15,0x4f,0xb5,0xc3,0x3f,0x07,0xc3, +0x88,0xf3,0xf0,0x05,0x37,0x74,0x73,0x0c,0x82,0xcc,0x31,0x48, +0x5c,0x6f,0x09,0x9f,0xad,0x9f,0x6e,0xfd,0xe7,0x26,0x1c,0x6e, +0x03,0xc3,0x55,0x70,0x94,0x35,0x8c,0x9a,0xc9,0x68,0x07,0x69, +0x07,0xeb,0x86,0x44,0x51,0x9e,0xb6,0x34,0x19,0xd6,0xe6,0xc0, +0xf4,0x52,0x6f,0x2f,0x37,0x1f,0x07,0xbf,0x5c,0x3b,0x7e,0xa0, +0xae,0xad,0xad,0xaa,0x37,0xd5,0x38,0xd3,0xb6,0x90,0x56,0xd7, +0xca,0xf0,0xb0,0x96,0x04,0xd8,0xca,0xdb,0x25,0xcb,0xc4,0x10, +0xa1,0x9c,0x84,0x45,0x86,0x7e,0x1d,0x7e,0xfa,0x9b,0x65,0x7c, +0x4d,0x59,0x6a,0x7a,0x52,0x7a,0x58,0x54,0xf8,0xd7,0xe1,0xc1, +0x37,0x54,0xf8,0x92,0x02,0xad,0x27,0xc1,0x51,0xa7,0x2e,0xd1, +0x6e,0xf8,0xd4,0x69,0xda,0x0d,0x47,0xa5,0x5d,0xce,0xcf,0x54, +0xcc,0xb4,0xf2,0x67,0x2d,0x42,0xf6,0x58,0xda,0x2b,0xd9,0x35, +0x07,0x47,0x07,0x49,0xf7,0xd0,0x4e,0x87,0x48,0x9f,0xa6,0x86, +0xe6,0xa6,0x29,0x66,0x5a,0xee,0x65,0x2d,0x83,0x5c,0xb7,0x1b, +0x29,0xe5,0x3a,0x54,0x16,0x5f,0xc9,0x49,0xc8,0x50,0x10,0x12, +0x2c,0xc9,0xde,0x26,0x97,0x6e,0xcf,0x72,0x67,0x3f,0xbe,0xd0, +0xad,0x54,0x37,0xcb,0x92,0x1b,0xdc,0x7f,0x80,0xd0,0x02,0x5e, +0x7f,0x89,0x46,0xda,0xf4,0x56,0x4c,0x33,0x7d,0xc4,0x9c,0x44, +0x8d,0x00,0x5c,0xaf,0x87,0xa3,0x2b,0x3d,0xf8,0xca,0xa7,0xd9, +0x1f,0x92,0x80,0xe1,0xbe,0x67,0xce,0xa9,0x9c,0xda,0x72,0x6c, +0xc7,0x81,0xf4,0x7d,0xe9,0x01,0xa9,0xbe,0x4e,0x7c,0xc1,0x9e, +0x6c,0xbf,0x2c,0x1f,0x3f,0x64,0xed,0xe6,0xea,0x2c,0xaf,0x76, +0xe5,0x69,0x0f,0xb3,0xb3,0x05,0x3c,0xa2,0x21,0x86,0xab,0x62, +0x21,0x4a,0x97,0x88,0x3e,0xac,0x2e,0xad,0xa4,0x87,0x58,0x38, +0x20,0x6a,0x12,0xf7,0x53,0xae,0xa7,0x5c,0x82,0xb9,0x9f,0x61, +0x58,0x3d,0x0e,0x7b,0xf0,0xb6,0x76,0xf6,0xbd,0x3f,0xeb,0x28, +0x85,0x9d,0xca,0x5e,0xc2,0x95,0x31,0x38,0x35,0x7b,0xfa,0x11, +0xbf,0x83,0xfe,0xfb,0xf6,0x4a,0x5c,0xec,0x14,0xd9,0x5d,0xbc, +0x97,0xda,0xbf,0xe1,0x5f,0x05,0x6f,0xb3,0x61,0x9c,0x55,0x22, +0x7f,0x70,0xc1,0xbe,0x75,0x5e,0xaa,0x87,0x5e,0x9e,0x04,0xf6, +0x3c,0x28,0x70,0xb0,0xa9,0x11,0x37,0x41,0x80,0x39,0x06,0xa0, +0xee,0xcf,0x30,0xa3,0x1e,0x67,0x3c,0x33,0x55,0xc1,0x79,0xd6, +0x30,0x6f,0x19,0xee,0xb0,0x84,0x31,0xeb,0x66,0xd8,0x7e,0x50, +0xc1,0xe1,0xb6,0x30,0x7c,0x1d,0xb2,0xd6,0xb4,0xb3,0x19,0xc1, +0xd8,0x05,0xdb,0x87,0xd8,0x87,0x44,0x4b,0xe7,0x2d,0xa6,0xc0, +0xfc,0x5c,0x18,0x5f,0x7e,0xa6,0x9e,0x77,0x3f,0xe9,0x7a,0xd2, +0xe5,0x24,0xf7,0xf2,0x7d,0xdd,0xcc,0x47,0xbf,0xd6,0x2c,0x7c, +0xf8,0xa6,0x76,0xee,0x37,0x30,0x99,0x4a,0xb4,0x20,0x1e,0xe7, +0xe6,0x21,0xe7,0xb0,0xd3,0x48,0x7f,0x83,0x79,0x9e,0x1d,0x7f, +0xbb,0x5e,0x72,0xda,0x15,0xc3,0x4c,0xeb,0x7c,0xcf,0x7c,0xaf, +0xaa,0x88,0xb0,0xa6,0x24,0x50,0xe5,0xad,0xd3,0x64,0x49,0xc2, +0x59,0xb2,0xb7,0xde,0xad,0x99,0x1a,0xd4,0x97,0x2f,0x72,0x2b, +0x32,0xcd,0xb4,0xe1,0xc4,0x6f,0x60,0x24,0x69,0xc5,0x0c,0xd3, +0x27,0x6c,0x10,0x6a,0xec,0x45,0x15,0x5d,0x1c,0x5d,0xe1,0xc1, +0x57,0x3f,0xcd,0x79,0x2f,0x19,0xf2,0x5f,0xcc,0x59,0x95,0x53, +0x9b,0x8f,0x6d,0xdf,0x97,0x11,0x90,0xb1,0x37,0x75,0xb7,0x64, +0xc8,0x9c,0xdd,0xd9,0x3e,0xbe,0xc8,0xd0,0x6e,0x63,0x85,0x64, +0xc8,0xcf,0x61,0x47,0x2b,0xb8,0xc5,0xd0,0xf0,0xa8,0xc2,0x29, +0x6c,0xf8,0x47,0xdf,0x08,0xe3,0x06,0x97,0x91,0x03,0x67,0x0e, +0x9c,0x3d,0x70,0x96,0x13,0x4e,0xf4,0xd1,0x1a,0x38,0x28,0x3f, +0x4e,0x50,0x8f,0xd5,0xcb,0xda,0x73,0x5d,0x09,0x66,0x32,0x8d, +0x89,0xc9,0xb5,0xca,0x1f,0x58,0xdd,0x24,0x19,0x7e,0x85,0x5f, +0xb1,0xee,0x21,0x71,0x05,0xca,0x10,0x28,0xce,0x66,0x2f,0xe0, +0x92,0x7d,0x4b,0xd0,0xc9,0x3c,0x93,0xb2,0x58,0xab,0xe6,0xde, +0xd7,0xe1,0xb4,0x35,0x10,0xde,0x0e,0x1e,0x22,0xb8,0x22,0x07, +0xc7,0xe5,0xcf,0xa9,0x04,0xee,0xc6,0xd3,0x27,0x4d,0xdf,0x73, +0xad,0x83,0xfa,0xfa,0xc2,0xdf,0xac,0xe9,0xf6,0x4d,0x1a,0xd3, +0x4d,0x56,0xd6,0xa8,0xb6,0xab,0xdd,0xb3,0x74,0xe5,0x6f,0xaa, +0xdf,0x34,0x7e,0x64,0x3b,0xd7,0x11,0x27,0x78,0xe2,0xbc,0x83, +0x52,0x1b,0xb3,0x31,0x1d,0xa6,0x57,0x02,0xd3,0x06,0x32,0x53, +0x98,0xea,0x0a,0xda,0x3e,0xdc,0x78,0x58,0x0c,0xb1,0xe4,0x62, +0xf6,0xd7,0x39,0x39,0x8a,0x50,0x0e,0x8f,0xb1,0xbc,0x9d,0x81, +0x61,0x51,0x30,0x26,0xe3,0x69,0x8e,0x7b,0x03,0xbf,0x61,0x37, +0x7e,0xb5,0x07,0xb9,0x33,0x9c,0xb8,0x93,0xc5,0x19,0xc1,0xc8, +0x59,0xe1,0x38,0xa5,0x46,0xd7,0xe2,0x1f,0x93,0x7e,0x89,0xf8, +0x5d,0x01,0x8e,0x31,0x17,0xac,0xcf,0x68,0x9e,0x72,0xe0,0x9c, +0x83,0x8f,0x9e,0xb0,0x9c,0xb2,0x82,0x49,0x30,0x94,0x3d,0x65, +0xee,0x17,0x66,0xdc,0x89,0x57,0x8e,0x69,0x8f,0xf8,0xe6,0xd2, +0x73,0xae,0x15,0xb6,0x90,0x5b,0x37,0x8b,0x1e,0xc0,0x67,0x8a, +0x9d,0xb0,0x14,0x6d,0x59,0xdd,0xd4,0x43,0x3d,0x4a,0x75,0x4c, +0x65,0x4c,0x4a,0x95,0x32,0x8c,0x65,0x2d,0x52,0x64,0xb8,0xc0, +0x89,0xdd,0x1b,0x1c,0x91,0xa5,0x0c,0xa1,0x98,0x3c,0x9b,0xc5, +0x91,0xfb,0x8d,0x75,0xf4,0x95,0xb6,0xc0,0x6c,0xb2,0x06,0x03, +0xbf,0x67,0x21,0x70,0xe8,0x50,0xd3,0xc0,0x9f,0x58,0x79,0x89, +0xf8,0x35,0xd9,0x5c,0xbc,0xab,0xda,0xa4,0x7e,0xe0,0x6e,0xed, +0xb3,0x8c,0x1f,0xb8,0x5a,0x69,0x7f,0xd0,0x1f,0xd8,0x83,0xda, +0x2e,0x9a,0x86,0xba,0x26,0xed,0xf6,0xdd,0xee,0xbd,0x16,0x7e, +0xfc,0x55,0x8d,0x5a,0xed,0x0e,0x03,0x43,0x0b,0x55,0xbb,0x55, +0x5e,0xd9,0xa6,0xfc,0x2f,0xa5,0x8f,0xeb,0xaf,0xb5,0x77,0x99, +0xdd,0xb2,0xf9,0xce,0x99,0x1b,0x7f,0x4b,0x10,0x89,0x85,0x30, +0xa9,0x09,0xd7,0x7c,0x07,0x86,0x4d,0x68,0xf8,0xd4,0x68,0x3d, +0x1a,0x58,0x80,0xc1,0x5a,0x56,0x98,0x04,0x94,0xa6,0xce,0x45, +0x7b,0x46,0x2f,0xf5,0x50,0xb7,0x52,0x0d,0x53,0xf1,0x9f,0x32, +0xba,0xb0,0x01,0xa7,0xc3,0xa9,0x8c,0x61,0x18,0x3d,0x8b,0xca, +0x78,0xc0,0xd8,0x40,0x5f,0xa9,0xc4,0x5e,0x76,0x63,0xa0,0xe0, +0x3e,0xd5,0x0d,0x6d,0xf0,0x01,0x69,0x03,0x05,0x71,0x13,0x2a, +0xb4,0x7b,0xc3,0x75,0xe6,0x7c,0x03,0xc1,0xde,0xeb,0xd0,0xcb, +0x08,0x45,0xa2,0x1f,0xd9,0x56,0xa2,0x5b,0x6d,0xd6,0x70,0xfd, +0x6e,0xe5,0xb3,0xf4,0xef,0xb9,0x3a,0xf1,0x33,0x63,0xe8,0x67, +0x0f,0xe9,0xb8,0x6b,0x9a,0xea,0x5b,0xb4,0x3a,0x77,0x7b,0xf5, +0x98,0xfb,0xf3,0xa5,0x1a,0x55,0x5a,0xad,0x06,0x46,0x16,0xdb, +0x6d,0x87,0x84,0x7e,0x59,0xfa,0xb0,0xbe,0xa7,0xbd,0xdd,0xfc, +0xba,0xf5,0x13,0x67,0x4e,0x5c,0x0e,0xfa,0xc4,0xed,0x88,0x63, +0xa0,0xc3,0x51,0x0e,0xdc,0x31,0x46,0x83,0x55,0xd9,0xbf,0x7e, +0xfb,0x76,0xa5,0x1a,0x7b,0xd9,0xed,0x87,0xc5,0x3f,0xfd,0xa6, +0x98,0x0f,0xb3,0x71,0x27,0x7b,0xe0,0xf4,0x81,0x33,0x87,0xce, +0xc4,0x1a,0xf1,0xf7,0x52,0x7f,0x2a,0xbc,0x5d,0x44,0x23,0x52, +0x7b,0x3f,0x51,0x2d,0xd5,0xad,0x32,0x6f,0xe8,0xa7,0x53,0xa7, +0x49,0x53,0xb3,0x26,0xd0,0xcd,0x1e,0xd6,0xf6,0xd8,0x65,0xaa, +0x67,0x35,0x34,0xb5,0x85,0x34,0x75,0xa5,0x56,0x8b,0x81,0xa5, +0xad,0x9e,0x93,0xaa,0x37,0xd7,0x22,0x0e,0x97,0x9b,0x0b,0xe3, +0xda,0xc5,0x9d,0xff,0x1e,0xde,0xd9,0x09,0x72,0x76,0xff,0xa9, +0x6c,0xb3,0x9f,0x4b,0x1f,0xd4,0x77,0xb7,0x2b,0xb4,0x99,0xf5, +0xdb,0x7c,0x43,0xc5,0x51,0x12,0x2e,0x91,0xeb,0x03,0x79,0x0f, +0x60,0xac,0x62,0x17,0xcc,0x40,0x07,0x56,0x3f,0xe5,0x60,0xb7, +0x52,0xd5,0x27,0x83,0x7d,0xc6,0x5a,0x52,0x83,0x2d,0x74,0xa3, +0x06,0x8b,0xc8,0x54,0x86,0x70,0x0c,0xa3,0x06,0x1b,0x75,0xd0, +0xc4,0x48,0x5f,0x09,0x9b,0xc0,0x99,0xa0,0x23,0x24,0x80,0xa3, +0x74,0x7e,0xd5,0x72,0x42,0x2b,0x05,0xed,0x45,0xd9,0x45,0xe2, +0x32,0x02,0xed,0x38,0x0d,0xdb,0x59,0x50,0x85,0x76,0x82,0xed, +0x30,0x1d,0xda,0x59,0xf4,0xb7,0x20,0x68,0x6b,0x03,0xb6,0x2c, +0x6c,0x93,0xee,0xd6,0xd8,0x36,0x50,0x00,0x49,0x27,0x32,0x05, +0x10,0x9a,0x19,0x2e,0x3f,0xbe,0xf8,0xe4,0x91,0xe2,0xb7,0x83, +0x0b,0xd9,0xf3,0x4b,0x4f,0x23,0xcd,0x7d,0x2c,0x87,0xe3,0x8c, +0x86,0x76,0xd3,0x1e,0x77,0x0c,0xc7,0x06,0x2e,0xe1,0xe4,0x2c, +0x73,0xee,0xb0,0xcc,0xe6,0xd4,0x91,0x3d,0xba,0x53,0x50,0x81, +0x49,0x30,0x90,0xc1,0x58,0xe6,0xd7,0x92,0xa2,0xa7,0x89,0xca, +0xe1,0xc5,0x32,0x98,0xd8,0x81,0xa3,0x99,0xe8,0xc7,0x11,0xaf, +0x42,0xff,0x90,0x8a,0x9f,0xe8,0x0b,0x0f,0xc8,0xf9,0x35,0x67, +0x96,0x87,0xac,0xe4,0x30,0x98,0x89,0x7a,0x15,0xfe,0xcb,0xe5, +0xfb,0x9c,0x50,0xe4,0x46,0xb6,0x5f,0xd8,0x74,0x6e,0xb3,0x12, +0x86,0x32,0xe1,0x3f,0x86,0xfd,0x18,0xfa,0x9c,0x83,0xd3,0x0c, +0xde,0xa5,0x0e,0x0f,0x5e,0x70,0x6a,0x49,0xd0,0x5a,0x0e,0xcf, +0x31,0x31,0x77,0x63,0x5f,0x47,0xbd,0xe3,0x20,0x1b,0xf3,0x48, +0xcc,0xf3,0xa8,0x17,0x11,0xaf,0x38,0x08,0x67,0xce,0xcc,0x39, +0xbd,0xe0,0xe4,0x16,0xca,0x1c,0x9d,0x61,0x2e,0x31,0x65,0xc2, +0x3b,0x43,0xbb,0x2f,0x0f,0x70,0xf5,0x8d,0xb6,0xcc,0xa5,0x6b, +0x17,0xef,0x7e,0xa7,0x88,0xd7,0x99,0x94,0xdc,0xa4,0xfc,0xf8, +0x02,0x0e,0xca,0x5a,0x31,0x89,0x89,0xce,0x8a,0xa0,0x7f,0x4d, +0x62,0xf8,0x03,0x6b,0x3d,0x36,0x9a,0x69,0x94,0xda,0xf2,0x51, +0x31,0x91,0xf4,0xef,0xb9,0x9d,0xe7,0xd4,0x4f,0x6f,0xe7,0x4c, +0x2c,0x9b,0x98,0x60,0xd5,0x93,0x9b,0x8f,0xad,0xe6,0xa0,0x92, +0x39,0x7f,0xea,0x42,0xf0,0x85,0x53,0x9c,0xf1,0xe9,0x13,0x81, +0xb6,0x53,0x56,0x32,0x49,0x66,0xb2,0x6f,0x99,0x9b,0xb9,0xd9, +0x0f,0xa3,0x95,0xc3,0xeb,0x64,0xdd,0x4c,0x0a,0xfc,0x44,0x60, +0x4e,0x24,0x28,0x45,0x83,0x2c,0xb1,0x4c,0x83,0x6f,0xcc,0x77, +0xbe,0x67,0xf6,0xd4,0xba,0x57,0xc1,0xd6,0x37,0xdd,0x27,0xc3, +0x23,0xcd,0x5d,0x61,0x5b,0xf0,0xfa,0xd3,0x6b,0xce,0x64,0xb7, +0xe6,0x5c,0x4b,0xbb,0xc6,0x41,0x4a,0x2b,0xba,0xc3,0x30,0x03, +0x1c,0x86,0xc6,0xa6,0xb4,0x91,0x0c,0xd0,0xde,0xad,0xbd,0xdb, +0x48,0xeb,0x1c,0x3f,0xfb,0x06,0xd1,0xba,0x60,0x7c,0xde,0x5c, +0x09,0xfd,0x98,0xb0,0xf6,0xcb,0x1d,0x97,0xba,0xb9,0x2a,0x2b, +0x52,0xe0,0x5d,0xe0,0x72,0xc5,0xa3,0xa4,0x80,0xdf,0x5f,0xe8, +0x5d,0xe1,0x95,0xc7,0x09,0x47,0xc5,0x6f,0x89,0xa0,0x67,0x2c, +0xea,0xb1,0x38,0x4e,0x58,0x41,0xd0,0xf2,0xc0,0x8c,0x0d,0x73, +0x94,0x6a,0x9d,0x64,0x3f,0xc0,0xa8,0x4c,0x98,0x00,0xee,0x8a, +0x39,0xc6,0xac,0x30,0x4a,0x9c,0x4b,0x3c,0x98,0x43,0x21,0xa1, +0x29,0xca,0xc2,0x04,0x23,0x71,0x12,0x6b,0x94,0x72,0xa4,0x45, +0xa9,0x82,0xa9,0x48,0x4c,0xa2,0xc0,0xd9,0xc4,0x9a,0x25,0xc9, +0x06,0x8b,0xbd,0x48,0x74,0x7f,0x44,0x4f,0x78,0x0f,0x07,0x7b, +0x99,0x73,0xea,0x67,0xf5,0x4f,0x1b,0x72,0xb4,0x68,0x4f,0x25, +0xc5,0x6e,0x05,0x8e,0xe9,0xae,0x45,0x45,0xfc,0xbe,0x52,0xaf, +0x6a,0x0f,0x0a,0x6f,0x61,0x8f,0xf0,0x9c,0x54,0x25,0xa7,0x55, +0x28,0xc3,0x2e,0x6d,0x34,0xc4,0xb5,0xd2,0x69,0xa4,0xf2,0x51, +0xa9,0x64,0xc3,0xfd,0x2d,0xdd,0xcb,0xba,0x5c,0x9c,0xf8,0x57, +0x5a,0xf7,0x4c,0x1e,0x6c,0xe3,0xc4,0x0f,0x70,0x82,0x18,0x6f, +0xdb,0xae,0x87,0x23,0xf5,0x8b,0x6d,0xf8,0xf7,0xed,0x2f,0x9e, +0xb4,0x3f,0xe4,0x04,0x06,0x87,0x13,0x5c,0x86,0x63,0xd0,0xd5, +0x19,0xbb,0x7c,0xe2,0x2c,0x78,0x78,0x54,0x00,0x6e,0x75,0xb0, +0x0a,0xc6,0x70,0xa0,0x25,0xaa,0x11,0xd1,0xc8,0x4b,0xf6,0x0d, +0x2b,0x28,0x16,0x9c,0x69,0x11,0x89,0x8f,0xec,0x01,0x2b,0x6d, +0x49,0xcb,0xa4,0xfe,0x96,0xe1,0xdf,0xc0,0xa3,0x8e,0x1d,0x86, +0x78,0x61,0xf8,0xe1,0x68,0x0b,0xfe,0x75,0xe4,0x9b,0xe8,0x5f, +0x63,0x39,0x35,0x16,0x5f,0xfa,0x85,0x99,0xc2,0x8f,0x39,0xb2, +0x8d,0xac,0xc8,0xec,0x09,0x33,0x15,0x86,0x67,0xcb,0xcc,0xd8, +0x4d,0xf9,0x7b,0xee,0x28,0xc1,0x2f,0x4c,0x7d,0x72,0x6c,0xb3, +0xf2,0x35,0x56,0x37,0x56,0xb6,0x16,0xff,0xc5,0xba,0x1f,0x8f, +0x2b,0x57,0x6e,0x67,0x05,0xf3,0x42,0xd9,0x78,0x41,0xda,0x4c, +0x16,0xce,0x88,0x97,0x70,0x12,0x93,0x64,0x2c,0xad,0x08,0x2f, +0x4f,0xba,0x42,0xd5,0x7a,0x11,0xc9,0x46,0xe0,0x88,0x1f,0x70, +0x04,0x4c,0xc1,0x11,0x85,0x6d,0xbc,0x46,0xbb,0x41,0x87,0x6d, +0x77,0x73,0x53,0x4b,0x5f,0x69,0xaf,0x4d,0x09,0xef,0x6d,0x6c, +0x6b,0x60,0x61,0xe3,0xd2,0xbf,0x6f,0xe0,0xc2,0x43,0x0e,0x22, +0xdb,0x30,0x12,0x66,0x1b,0xe1,0x6c,0x3c,0xc3,0x08,0x97,0xdb, +0x89,0x5b,0x91,0x55,0x81,0x83,0xb4,0xfd,0x64,0x75,0x40,0xa3, +0x77,0xb1,0x17,0x27,0xf6,0x0d,0x5a,0x10,0xfb,0x63,0xb1,0x95, +0xca,0x94,0xda,0x82,0x56,0xd1,0xe9,0x0e,0xdc,0xee,0x2d,0x93, +0x4e,0x92,0x59,0x95,0x43,0xc7,0x8b,0xf7,0xc8,0x60,0x03,0xdb, +0x93,0xd4,0x9e,0x5a,0x71,0xc5,0xbf,0x8d,0x57,0x75,0x40,0x45, +0x77,0x9c,0x70,0x24,0xc9,0x98,0x2f,0x8f,0xa8,0x88,0xac,0x88, +0xe2,0xa8,0x7d,0x71,0xf6,0xde,0x68,0x23,0x50,0xcc,0x90,0x49, +0x07,0xcd,0x2c,0xf5,0x8b,0x34,0x84,0xb9,0xd9,0x32,0xb4,0x61, +0x55,0x0b,0xfc,0x1e,0x28,0x09,0x3f,0x33,0xe5,0xa9,0x89,0x15, +0xca,0x7f,0xb2,0x86,0x69,0x32,0x24,0xac,0xe8,0x2f,0x54,0x92, +0x2a,0x87,0x72,0xcb,0x22,0xd3,0xea,0xab,0xbc,0x77,0xa3,0x5d, +0x8b,0x53,0x25,0xb7,0x4b,0xd4,0x20,0x3f,0xb4,0x3c,0xed,0x6b, +0xef,0xf5,0x6d,0xe2,0x0d,0x75,0x37,0x69,0xaf,0xb6,0xa1,0x8e, +0xbc,0x22,0x7f,0x40,0xb4,0x75,0xc4,0xf9,0xe6,0x7f,0x7d,0xd6, +0x2c,0xaa,0x30,0x28,0x60,0x0a,0x91,0x2f,0x81,0xad,0x83,0x4b, +0x98,0x3e,0xfc,0x8c,0x0c,0x08,0x25,0xea,0xec,0x20,0xc1,0x7c, +0x02,0x93,0xe5,0x47,0x70,0x52,0x2f,0xa8,0x0f,0xfe,0x89,0xbb, +0x58,0xf9,0x7b,0x1c,0x4f,0x44,0x1d,0x2f,0x59,0x1f,0x2b,0x30, +0xf9,0x67,0x1a,0xc4,0xe1,0xbe,0xb2,0x6e,0xda,0x01,0xc6,0xc2, +0xb0,0xf8,0x97,0x29,0x7e,0x35,0x3c,0x6e,0xf2,0x44,0xdf,0x83, +0x78,0xe8,0x78,0xb4,0x15,0xff,0x5d,0xd8,0xb7,0x11,0x4f,0x23, +0x38,0x43,0x16,0x6f,0xfa,0x87,0x5a,0xc2,0xb5,0x2c,0x19,0xa5, +0x99,0x83,0x7b,0xc2,0x2c,0x40,0xc8,0x96,0x39,0xb0,0xda,0x79, +0x07,0x6f,0x2b,0xc1,0x4b,0xea,0xa4,0xe8,0x1a,0xe5,0x6e,0x56, +0x2f,0x4e,0xb6,0x15,0x9f,0xb3,0xee,0x27,0x62,0x8a,0x94,0x8b, +0x59,0xc1,0xa0,0x48,0x36,0xfe,0x7b,0xe1,0x3c,0x81,0x9f,0xae, +0xc8,0xf6,0xb0,0xda,0x99,0x87,0x6f,0x2a,0xc1,0xf7,0x14,0xb6, +0x71,0x95,0xca,0xe5,0xac,0x71,0xbc,0x4c,0x1f,0x6f,0xb3,0xae, +0xc1,0x91,0x85,0xca,0xe9,0xac,0xb0,0x39,0xeb,0x5c,0xbd,0xb8, +0xc1,0x5f,0xd6,0x4f,0x2b,0x4a,0x06,0x1d,0x7e,0x1e,0x20,0xeb, +0x64,0x61,0x6c,0x2c,0x70,0x89,0xaf,0xd3,0x0e,0x54,0xf1,0x68, +0xe2,0x82,0x17,0x0e,0xe0,0xc9,0x90,0x68,0x6b,0xfe,0xe7,0xcb, +0xbf,0x85,0xfd,0x16,0x29,0x6d,0x14,0xd5,0x77,0x28,0xd4,0x1a, +0xba,0x52,0x64,0x5a,0x2c,0xfe,0x72,0x40,0x46,0x99,0x57,0x17, +0xf1,0x0a,0x89,0xc8,0x96,0xb6,0x89,0xb2,0x4d,0x3a,0x57,0x8f, +0x56,0x47,0x64,0x77,0x59,0xd8,0x95,0x70,0xae,0x0e,0xd5,0x8f, +0xca,0x6e,0xb2,0x9d,0x91,0x6d,0xd1,0x75,0xf1,0x07,0x6a,0xf8, +0x65,0x7b,0x71,0x5c,0x20,0x4e,0x96,0xae,0x46,0x19,0xfe,0xe5, +0x9a,0x30,0x8e,0x5e,0x62,0xd9,0xf1,0x30,0x6b,0x58,0x18,0x27, +0xdb,0xce,0xa2,0xda,0xd1,0x50,0x2b,0xd8,0x92,0x40,0xb5,0x35, +0x48,0x3b,0xd4,0xab,0x44,0x63,0x7b,0x48,0xec,0x3a,0xd6,0x22, +0x5e,0xb6,0x8b,0x15,0xac,0x27,0xe3,0x0c,0xc6,0x5b,0x9a,0xa9, +0x87,0xf2,0xbd,0xe4,0xb3,0x0d,0xb8,0xf7,0x88,0x6c,0x40,0x9a, +0xf4,0x7c,0x3d,0x5a,0x07,0xca,0xae,0xb3,0x7d,0x51,0xdd,0x71, +0x4d,0x89,0x01,0x95,0xfc,0xd2,0x3d,0xf8,0xe5,0x61,0x54,0x3c, +0x1d,0x6b,0xcb,0xd7,0x5c,0xaa,0x0d,0xa5,0x33,0x69,0xb3,0xb8, +0xf0,0x04,0xbd,0xfc,0xdc,0x58,0x99,0x3a,0x8b,0xeb,0x8f,0xd3, +0xe1,0x9a,0x38,0x69,0xa6,0x2b,0xd2,0x4c,0xf3,0xff,0x99,0xc9, +0x3c,0x5e,0x36,0x5e,0x3e,0x45,0x78,0x4a,0xc2,0xc2,0x2f,0x7f, +0x1d,0x75,0x06,0x42,0x70,0x3a,0x9f,0xdf,0x8c,0x7b,0xe1,0xcb, +0xa3,0x51,0xa7,0xce,0x9d,0x0a,0x52,0x38,0x29,0x1d,0xfb,0x99, +0x9c,0x1f,0x57,0x7b,0x57,0xf1,0x8e,0x3e,0x95,0x59,0xd9,0xc8, +0x1c,0xd7,0x6f,0x53,0xca,0x31,0x85,0x31,0xad,0xb5,0x57,0xcb, +0x1b,0x15,0x20,0x43,0xdc,0x43,0xd0,0x01,0xbe,0x38,0x16,0x15, +0x72,0xe6,0x84,0xf4,0x42,0xfe,0x99,0x4b,0xb2,0xc4,0xac,0x84, +0xca,0xa7,0x8a,0x3f,0xe8,0xaf,0xa0,0xdc,0x64,0x97,0x15,0xae, +0x57,0x53,0xca,0x35,0x81,0x71,0xed,0xad,0x57,0x4b,0xeb,0x15, +0x42,0xc3,0xc2,0xbf,0x8e,0x38,0x0b,0xfb,0x51,0x89,0x0f,0x8f, +0x91,0x69,0x8a,0x3f,0xb0,0xf6,0xc7,0x25,0xe4,0x3b,0xb0,0xb0, +0x39,0x3f,0xa4,0x13,0xd7,0xf9,0x0e,0x21,0x7f,0x49,0x76,0x48, +0x3b,0xce,0xf3,0x97,0xc1,0x16,0xb6,0x2b,0xa9,0x35,0xe5,0x6a, +0xb2,0x84,0x7c,0x37,0x54,0x74,0xc4,0xf1,0x47,0x12,0x8d,0xf9, +0xca,0x88,0xea,0xa8,0xca,0x18,0x0e,0xd7,0xb3,0xb8,0xc0,0x3f, +0xca,0x18,0xa6,0x67,0x0e,0x21,0x7f,0xf5,0xee,0x28,0x43,0x58, +0x94,0x23,0x43,0x3b,0x09,0xf9,0xf7,0x95,0x84,0x5f,0x3e,0x22, +0xff,0x36,0x6b,0x93,0x20,0x73,0x90,0x7b,0x92,0x63,0x76,0x5e, +0x3b,0xbc,0x1d,0x5a,0xf7,0xf0,0x05,0x35,0x05,0xb7,0x93,0x9a, +0x38,0x71,0x5b,0x3c,0x39,0x61,0xb1,0x5b,0xdb,0xd3,0xa9,0xc1, +0x87,0x2f,0xae,0x2e,0xbc,0x13,0xd7,0xc1,0x41,0xb9,0x38,0x40, +0x8a,0xeb,0x8b,0xee,0xc6,0x37,0x18,0xa7,0xf0,0x27,0xec,0x3d, +0xd5,0x3c,0xed,0x38,0xbc,0xe7,0x43,0xca,0x6a,0xe8,0xe7,0x6d, +0x26,0xf1,0xfc,0x09,0xeb,0xdd,0xda,0x6e,0x0e,0x34,0x3c,0x7a, +0xe5,0x3f,0x90,0x1d,0x3b,0xc4,0xcf,0xd1,0x97,0xc1,0xb6,0xc3, +0xb8,0x4c,0x07,0xbf,0x50,0x6a,0xb6,0x91,0xdd,0x82,0xf9,0x29, +0xb0,0x15,0xae,0x29,0xc2,0x7a,0x79,0x6a,0xb3,0xc8,0xb3,0xe8, +0x86,0x0a,0x04,0x67,0x5a,0xc3,0x4c,0xf4,0x6f,0x05,0xff,0xa1, +0xc7,0x1e,0x1d,0xa6,0x0c,0xbc,0x36,0x22,0xa8,0x60,0x0d,0x0a, +0xe8,0x46,0xe9,0x29,0x6c,0xaf,0xc7,0xed,0xf4,0xb7,0xa2,0x05, +0x3e,0x25,0x95,0xad,0xb1,0x7d,0xb7,0x15,0xcd,0x99,0x5d,0xc1, +0xb6,0x8e,0x36,0x4a,0xd0,0x0f,0xab,0x88,0x05,0x2e,0x6c,0x62, +0xbe,0xf5,0x21,0x25,0x95,0x89,0xd7,0xef,0x2a,0x5a,0x30,0x1a, +0x47,0x2d,0x3d,0x3d,0x95,0xe0,0x69,0x29,0x39,0x71,0x26,0x34, +0x56,0xf9,0x77,0x0b,0x1c,0xc9,0x7a,0x26,0x1e,0x2b,0x55,0x6a, +0x60,0xb2,0xa3,0x63,0x0a,0x94,0xeb,0x59,0xe7,0x78,0x99,0x1e, +0x9b,0x8f,0x1d,0x44,0x9c,0x72,0x48,0x76,0x8d,0x85,0x3f,0x52, +0x29,0x74,0x5e,0x1f,0x94,0x75,0xb0,0xc0,0x45,0xbd,0x8b,0xfb, +0x29,0x61,0x6f,0x1d,0x8f,0x4b,0xfc,0xd0,0xe2,0x30,0x7e,0x7d, +0x3a,0xc6,0x9a,0xff,0xee,0xf2,0x93,0xd0,0xfb,0x61,0x9c,0x09, +0x8b,0x19,0x81,0x14,0xf4,0xa9,0x09,0xd2,0x76,0x63,0x1d,0x47, +0x2f,0x5b,0x41,0x6b,0xbc,0xcc,0x9a,0xdd,0x95,0xb9,0x9f,0x46, +0x57,0x19,0x53,0x11,0x1f,0x5f,0xa6,0xdc,0xca,0x9a,0x26,0xc8, +0x76,0x60,0x11,0xeb,0x1d,0x1c,0x25,0xcd,0x25,0x4c,0x4d,0x91, +0x8d,0x87,0xdb,0xf2,0x70,0x72,0xc7,0x78,0x3b,0x7a,0x59,0x0b, +0x27,0xea,0x59,0x08,0x1b,0x3c,0x4d,0xec,0x4f,0xc7,0xd5,0x29, +0x83,0x15,0x0b,0x3e,0xb9,0xa7,0xbb,0xd0,0xd5,0x4f,0x06,0x2b, +0x59,0xb0,0xc8,0xa1,0xae,0x36,0xa2,0x89,0x6d,0x29,0xdb,0x97, +0x7c,0x2d,0xa3,0x2d,0xd7,0xb7,0x99,0x5f,0x46,0x39,0xac,0x27, +0xb2,0x07,0xe3,0x8c,0xf9,0xfc,0xb0,0xe2,0x88,0x92,0x48,0x0e, +0xe7,0xb1,0x38,0xe9,0x70,0x84,0x21,0x7c,0x46,0x29,0x38,0x05, +0xd3,0xb4,0x43,0x74,0x3c,0x99,0x8e,0xad,0xd8,0xcd,0xa9,0x9e, +0x77,0x94,0x5e,0x31,0x4d,0xb1,0xa9,0x4d,0xca,0xb0,0x4c,0xaa, +0x4f,0xa8,0xcd,0x0e,0xd6,0xca,0xe7,0x10,0xac,0x17,0xf4,0xa1, +0x5e,0xba,0xcb,0x74,0x99,0x80,0x23,0xfc,0x0b,0x29,0xa3,0x29, +0x86,0x4d,0x04,0xbf,0x84,0x7d,0xf0,0x25,0x8b,0x3b,0x56,0x90, +0x66,0x20,0xe6,0x2c,0x4c,0xc7,0x2d,0x44,0x5c,0x88,0xd9,0xc2, +0x42,0xc6,0x14,0xd6,0x10,0x6c,0xba,0x0e,0x4d,0x0c,0x36,0xd1, +0xfe,0x16,0x9a,0xd4,0x91,0x0e,0x87,0xe1,0x3a,0x02,0xcb,0x42, +0xc1,0x33,0x01,0x16,0xa4,0x9e,0x6f,0xe4,0x71,0xd1,0x41,0x74, +0x3f,0x86,0xcb,0xcf,0x52,0x76,0xee,0x09,0x32,0x62,0x7a,0x30, +0xf9,0x96,0xb2,0x30,0x1f,0xa2,0xbb,0x90,0xc0,0x16,0x03,0xdc, +0x82,0x5f,0x89,0x81,0xec,0xaa,0x12,0x8f,0x67,0x4a,0x60,0xd3, +0xc5,0x08,0x87,0x68,0x7b,0xbf,0xe3,0x9a,0xe3,0xef,0x07,0x61, +0x21,0x07,0x4e,0x6d,0xe8,0xc1,0x9c,0xa9,0x3f,0xdf,0x7c,0xa1, +0x93,0x83,0x1d,0x90,0x27,0xba,0x0f,0x96,0x31,0xbe,0xc1,0x7e, +0x21,0x7b,0xcf,0xc4,0x18,0xf0,0x2f,0x52,0x61,0x76,0xe5,0x93, +0xfc,0xd3,0x1d,0xbc,0xcd,0x11,0xad,0x03,0x5a,0x87,0x39,0xa8, +0xa6,0xcd,0x76,0x06,0x6e,0x6d,0xc2,0x71,0x4f,0x35,0x4a,0x7d, +0xcb,0x63,0x23,0xdb,0xb2,0x40,0x53,0xba,0xb7,0x68,0x20,0x50, +0x28,0xbd,0x82,0x8d,0xf0,0x8a,0xc1,0x57,0xb8,0x97,0xc0,0x66, +0xe6,0xa2,0xf1,0x65,0xb3,0x30,0x2b,0x0e,0xd5,0x99,0xf1,0x7f, +0xcd,0x95,0x2f,0x27,0x5d,0x83,0x63,0xd8,0xf8,0xdc,0x98,0xbc, +0xc8,0x1c,0xdd,0x38,0xde,0x03,0xc7,0x6e,0xc2,0x11,0xab,0x36, +0x57,0x5a,0xf3,0x3d,0xcd,0x6d,0xb7,0xaa,0xee,0x71,0x82,0x7c, +0x16,0x19,0xfc,0xdc,0x48,0xfe,0x39,0x73,0x46,0x0c,0x27,0xdb, +0x1f,0xee,0x87,0x51,0xa0,0xa8,0xf8,0x70,0x70,0xbd,0xbe,0xf0, +0x97,0x1b,0x8b,0x9f,0xe7,0xe1,0xb4,0x27,0xeb,0x94,0x2a,0x1c, +0x1a,0xe3,0x22,0xdb,0x33,0x41,0x8b,0x37,0xce,0x96,0x8d,0xff, +0x6b,0xb9,0xdc,0x96,0xb4,0x0e,0x7e,0xc6,0xc6,0x5c,0x89,0x4e, +0x8b,0xbc,0xa2,0x17,0xcf,0x3b,0x4e,0xdf,0xb6,0x78,0xe6,0xce, +0x0a,0x4b,0xfe,0x6e,0x73,0xef,0x8d,0xda,0xdb,0x9c,0xf0,0xf3, +0x26,0x32,0x38,0xc1,0x4c,0x3e,0x81,0x29,0x12,0x9f,0x13,0x83, +0x9e,0x83,0xb0,0x04,0xda,0x15,0x07,0xad,0x4c,0xe5,0xd3,0x18, +0x8c,0xcb,0xc1,0xcd,0x7d,0x5a,0x4a,0x05,0x36,0x7d,0x91,0xe1, +0x3d,0xc9,0x60,0xcc,0x5b,0xa4,0xc9,0x06,0x59,0x30,0x25,0xe6, +0xb0,0x97,0xcd,0x33,0x1c,0x30,0x80,0xe1,0x96,0xd9,0xd4,0xc2, +0xa3,0x1a,0x8c,0x9a,0x3d,0x6f,0x72,0x34,0xe9,0x12,0x6b,0x35, +0x5d,0xcb,0xcd,0xae,0x85,0xd6,0x7c,0x51,0x72,0xe1,0x95,0xfc, +0x4c,0xce,0x06,0x78,0x36,0x60,0xd1,0x36,0x1d,0x54,0xb6,0xcd, +0xa2,0x4d,0xe7,0xf2,0xa6,0xe7,0xdf,0xe5,0xc0,0x38,0x0e,0x76, +0x31,0x17,0x74,0xce,0xd9,0x9c,0xf6,0xe4,0xbc,0x86,0xce,0x5b, +0x9a,0x2e,0x9d,0xb7,0xf4,0x81,0xe9,0xcf,0x49,0xeb,0x88,0x51, +0x8e,0xaa,0x0d,0x6d,0xbf,0x08,0xa3,0x68,0x98,0x33,0x65,0x05, +0xc5,0xa5,0xd9,0x95,0x9c,0xa4,0x88,0xdd,0x3f,0x8a,0x5c,0x19, +0x52,0xc4,0x69,0x96,0xea,0xd2,0x19,0x9a,0xe5,0x36,0xfc,0xdd, +0xba,0x9e,0x6b,0x75,0x03,0x9c,0xf0,0x72,0x17,0x19,0x1c,0x67, +0x2e,0x1f,0xc7,0x14,0x8a,0x6f,0x89,0xde,0xa3,0xa3,0xa0,0x04, +0x8f,0x14,0x07,0xcd,0xcd,0xe5,0x53,0x18,0x2c,0x4c,0xc7,0xe5, +0xd7,0x36,0x28,0xe5,0x58,0x5e,0x8f,0x08,0x6b,0x4f,0x82,0xed, +0xbc,0x15,0x55,0xc4,0x0b,0x2f,0x92,0x16,0x61,0x9b,0x55,0x9b, +0x10,0x24,0x16,0x8b,0xa7,0x59,0xe1,0xa0,0x40,0x03,0xfb,0x95, +0xb8,0x0d,0x5e,0xb1,0xb0,0x07,0xf5,0xc8,0x99,0xcb,0x11,0x09, +0x61,0x09,0xa1,0x49,0x0a,0xb0,0xba,0x1e,0x97,0xc6,0x30,0xed, +0xe6,0x86,0xec,0x29,0x9c,0x4f,0xf3,0x01,0x7b,0x44,0xc7,0xc6, +0x63,0x95,0x4b,0xba,0x3d,0x7f,0x3b,0xaf,0xa9,0x38,0xbf,0x3e, +0xec,0x92,0xb4,0xb7,0x07,0xcc,0xc7,0x61,0x7c,0x6e,0x05,0x2a, +0xbf,0x3e,0x11,0x15,0x7c,0xf6,0x64,0x90,0xc2,0xf8,0xbf,0x56, +0xc9,0x4d,0xa9,0xd8,0x5f,0x48,0x6b,0x75,0x33,0xa2,0x32,0xf4, +0xe3,0x79,0x7b,0x1c,0xae,0xb6,0x78,0x96,0x5a,0x85,0x0d,0x7f, +0xab,0xa9,0xfb,0x5a,0x0d,0x95,0xfb,0xd7,0xcd,0x64,0x70,0xa2, +0x99,0x7c,0x22,0x93,0x2f,0x3e,0x21,0x06,0x4f,0x8e,0xc0,0x34, +0xa8,0x54,0x1c,0x74,0x34,0x95,0xcf,0x66,0x30,0x34,0x1b,0x57, +0x5e,0xdb,0xa2,0x94,0x63,0x47,0x1d,0xd0,0x9a,0x06,0xa6,0x92, +0x03,0xc4,0x40,0x73,0x12,0xd2,0x0d,0x75,0xcd,0x58,0x07,0xeb, +0x0c,0x70,0x1d,0x36,0x9a,0x43,0x3a,0xe3,0xa8,0xb6,0x5a,0x1f, +0x97,0xea,0x48,0x4f,0x81,0x56,0xdf,0xfc,0xe3,0x56,0xa2,0xf4, +0x7e,0xca,0xe5,0x2e,0x6a,0xe6,0x88,0xb0,0x8b,0xe1,0xe7,0x94, +0x20,0x11,0x97,0x16,0x36,0x50,0x42,0x33,0xf7,0x58,0x64,0xd0, +0x85,0x13,0xc7,0xa4,0xcd,0x16,0xe2,0xc8,0x1e,0x17,0x17,0x3b, +0x67,0xef,0x1a,0x77,0xbe,0x3c,0xbf,0xaa,0x25,0xa7,0x82,0x13, +0x65,0x2b,0xc9,0x9e,0xab,0x4e,0xb5,0xbe,0xb9,0xb6,0x5e,0x7c, +0xe1,0xee,0x72,0xfb,0x4c,0x17,0x6e,0xbc,0x5c,0x13,0x3c,0xc8, +0xb3,0xd6,0xfe,0xa6,0x5b,0x0f,0x6d,0x2a,0x78,0xfd,0x9d,0x3b, +0x8c,0xd7,0x98,0x73,0x5b,0x9e,0xda,0x7f,0xf7,0x4c,0x31,0x41, +0xd8,0xd8,0x29,0x6e,0x84,0xe5,0xc2,0xa8,0xf6,0xc1,0x6c,0x63, +0xf8,0x13,0x97,0x8b,0x8b,0x0d,0x85,0xc5,0x62,0xb2,0xf4,0xc6, +0xbc,0xa1,0x74,0x22,0x6c,0xc3,0x95,0x94,0x06,0x65,0x18,0x8c, +0x60,0x93,0x70,0x12,0x4c,0x42,0x45,0xb8,0x84,0x8a,0x25,0x2d, +0xfc,0x8c,0xb6,0x65,0xbd,0x3b,0xfa,0xb9,0xc1,0xe1,0xa0,0x46, +0x8c,0xe1,0x1c,0xeb,0x82,0xcc,0xba,0x59,0xb8,0x78,0x6d,0x99, +0x15,0xed,0xaa,0x7f,0x79,0x03,0x93,0x0b,0x61,0x3a,0x57,0xc5, +0x8e,0x97,0xbf,0x6e,0x23,0x68,0x2a,0xbf,0xa2,0x35,0x78,0x05, +0xf5,0x85,0x0f,0x3a,0x83,0x07,0xfb,0x06,0x04,0x43,0xf5,0x6b, +0xf2,0x43,0xda,0xcc,0xe0,0x65,0x60,0xc9,0x6d,0xaf,0x1b,0x2e, +0xdd,0xf6,0x05,0xcd,0xbc,0x61,0xd5,0xf6,0xaa,0x9d,0xf9,0x1c, +0xac,0x11,0x47,0x11,0xdd,0xba,0x8d,0x75,0x5b,0x8a,0x7c,0xcc, +0xf9,0x47,0xee,0xb7,0x1d,0x06,0xac,0x39,0x5c,0x21,0x06,0x90, +0xa7,0x7f,0x0c,0xc0,0x57,0x95,0x7f,0x1a,0x67,0x51,0x17,0x8c, +0xd0,0x43,0x76,0xfd,0x22,0x9a,0x0f,0x9e,0xcb,0xad,0x89,0x5e, +0xad,0x6a,0xb5,0x5a,0x81,0xaf,0x19,0x7f,0xcf,0x73,0xc0,0xa9, +0xcf,0x8e,0x83,0x17,0xe8,0x44,0x20,0xbf,0x17,0xf3,0xe1,0xfa, +0x2e,0xbc,0x8e,0x29,0xba,0x90,0x22,0x6e,0xc4,0x46,0x5d,0xf9, +0x8a,0x5e,0xec,0x62,0x44,0x99,0xa0,0x47,0x0c,0xab,0xb6,0xd5, +0x6c,0x2f,0xa0,0x33,0xdc,0xf1,0xbc,0xe9,0x74,0xcd,0x8e,0x0b, +0xa1,0xac,0xea,0x9f,0xcb,0x36,0xda,0xf1,0x9f,0xe6,0xa2,0x13, +0x34,0xcb,0x7d,0x89,0x45,0x99,0x5e,0xa9,0x7e,0x2e,0xfd,0x72, +0xaf,0x4f,0xbb,0x67,0x8b,0x2b,0x27,0x28,0x63,0x3b,0x81,0xf0, +0x6e,0x0c,0x87,0x2a,0x28,0xec,0x19,0x1c,0xa6,0x07,0x39,0x58, +0x85,0x17,0xf4,0xe1,0x02,0xfe,0x0b,0xfb,0xf5,0xe4,0x2b,0x7a, +0xb0,0x86,0x11,0x3f,0x17,0x54,0x89,0x7e,0xcd,0xe6,0xfa,0x6d, +0x85,0xbe,0x16,0xfc,0x3d,0xf7,0x5b,0x0e,0xd7,0x6d,0xb8,0x40, +0x64,0xa5,0x79,0x0c,0x90,0xdd,0xb0,0xb0,0xd1,0x9e,0x7f,0xf2, +0xf6,0x26,0x7c,0x55,0xfe,0xe1,0xff,0x4b,0x11,0x15,0x5c,0x41, +0x40,0x8b,0x05,0x93,0x04,0x58,0x9c,0x07,0x9f,0x55,0x7b,0xb7, +0xf0,0x38,0xc6,0x11,0x17,0xfa,0xe2,0xe1,0x23,0x1c,0x86,0xb2, +0x18,0xe6,0x8d,0x53,0x57,0xe1,0x57,0x4a,0x4d,0xb6,0x2f,0x61, +0x5a,0x09,0x2c,0x0a,0x85,0x13,0x0a,0x70,0x4a,0x4c,0xec,0x17, +0x12,0xc1,0xb8,0x93,0x19,0xdc,0xe0,0x41,0x25,0xd8,0x54,0xb7, +0xad,0x90,0x0a,0xff,0xc0,0xfd,0x96,0xe3,0x0d,0x1b,0xee,0xe8, +0x47,0x09,0xfe,0x6f,0x4d,0x2b,0xe4,0xee,0xc4,0xb2,0xdc,0xf0, +0xaa,0x61,0x9e,0xaf,0x35,0xdf,0xed,0xd5,0xec,0xde,0xe4,0xc4, +0x09,0xf9,0x83,0x33,0x48,0x31,0x6c,0x2e,0x04,0xcf,0x58,0xd8, +0xc0,0xe1,0x5f,0x4c,0x54,0x67,0x64,0x47,0x78,0x0b,0x27,0x2c, +0xeb,0x1c,0x9c,0x60,0x08,0xab,0x98,0x23,0xb8,0xda,0x05,0x5d, +0x1c,0x70,0x09,0x27,0x28,0x32,0x41,0x9a,0x27,0x34,0x8f,0xeb, +0x71,0xa2,0xb3,0xa1,0x7c,0x97,0x34,0xbb,0xa0,0x43,0x8c,0x6a, +0xb7,0x35,0xed,0x28,0xf6,0xb1,0xe6,0x6f,0xb9,0xde,0xb0,0xeb, +0xb3,0xe2,0xc0,0x0d,0x95,0x49,0xf2,0xdd,0xa4,0xa7,0xf1,0x4f, +0x39,0x68,0x66,0x42,0xb4,0x83,0xd6,0x1e,0x5f,0xc5,0x89,0xf5, +0xd9,0xc4,0x05,0x47,0x9a,0x22,0xa7,0xba,0xa0,0xde,0x89,0x7f, +0xf0,0xbe,0x07,0xf8,0x12,0x6a,0x16,0xb9,0x91,0xa0,0x46,0xe0, +0x40,0x37,0x1e,0x80,0x5f,0x77,0x0d,0x76,0xa0,0x8a,0x7c,0xc7, +0xae,0xc1,0x1d,0x38,0x5f,0x5f,0xae,0x4b,0xad,0xcf,0x88,0x9c, +0x5c,0x83,0x18,0xd4,0xaa,0xd5,0xec,0x28,0xf4,0xb1,0xe0,0xef, +0xb8,0xdf,0x70,0xea,0xb5,0xe1,0xf6,0xa0,0x01,0x31,0xae,0x56, +0xad,0xdd,0x59,0x44,0x7f,0x37,0xe0,0x7e,0xc3,0xb1,0xc7,0x96, +0x3b,0x85,0x63,0x88,0x23,0x8e,0x30,0x42,0x6e,0xd3,0xc2,0x46, +0x07,0xfe,0x9b,0xb7,0xfd,0xc0,0x5f,0x95,0xcc,0x7e,0x53,0x6e, +0x48,0x4c,0xeb,0x35,0xea,0x77,0x95,0x78,0x5a,0xf3,0x37,0x29, +0x12,0xbb,0xac,0x38,0x21,0x35,0x8d,0x2c,0xec,0xc2,0xb1,0xcd, +0x38,0xbc,0xc8,0xdf,0x8c,0x07,0xd6,0x15,0x64,0xe6,0x2f,0x0d, +0x39,0xbb,0xc1,0xd5,0xa4,0x35,0x49,0x7a,0x90,0xe7,0x4e,0x1b, +0x7c,0x19,0x9e,0xc6,0x49,0xac,0xc3,0x89,0x98,0x06,0x65,0xa1, +0x7f,0x97,0x38,0xc0,0x6e,0xc8,0xf7,0x78,0xaa,0x84,0xff,0x12, +0xc2,0x89,0x59,0xfd,0xf6,0x16,0x8d,0x32,0x0f,0x6b,0xfe,0x86, +0x73,0xbf,0x75,0x97,0x25,0x27,0x77,0xa1,0x89,0x6a,0x2f,0x4c, +0x75,0x86,0x99,0xe6,0x30,0xc1,0x68,0x3f,0xdf,0x8c,0xa4,0x14, +0xa7,0x66,0xa3,0x02,0x27,0xb6,0x7a,0x92,0x36,0x98,0x90,0x05, +0xcb,0x63,0x61,0x99,0x5e,0x14,0x7f,0x42,0x5a,0x69,0x34,0xc3, +0x1c,0xc7,0x72,0xa8,0x41,0x51,0x7c,0xfb,0xcf,0x56,0x98,0x92, +0xff,0xce,0x28,0x8d,0xf7,0x94,0x4e,0x7c,0x19,0xad,0x3e,0x5f, +0x7a,0xda,0x2e,0xd7,0x21,0xd8,0x0a,0xca,0x5a,0xa8,0x8c,0x45, +0x86,0x50,0x84,0x8a,0x18,0x21,0xee,0xed,0x13,0xd6,0x83,0xb1, +0x98,0xd2,0x2f,0xa4,0x80,0x23,0x02,0xce,0x67,0xa4,0xf8,0xfd, +0x92,0xa9,0x4b,0x49,0xa9,0xa3,0xc5,0x12,0xd3,0x40,0x11,0x5a, +0xd9,0x41,0x80,0x79,0xa4,0xc3,0xa3,0xde,0xb5,0xc1,0xa1,0xb8, +0x9e,0xb7,0xad,0x34,0xa9,0x34,0x2d,0xe0,0xd6,0x63,0x19,0xb9, +0xe6,0x7c,0xcd,0xba,0xdd,0xaa,0xac,0x8e,0x37,0xaf,0xdb,0xd9, +0xa2,0x55,0xca,0x65,0x0d,0x2e,0x20,0xb7,0x61,0x58,0x33,0x28, +0xe6,0xbd,0x37,0xba,0xc2,0x4b,0x9b,0x88,0xe2,0x68,0x8d,0x79, +0xd4,0x62,0xf7,0xe4,0x26,0xc4,0xb8,0x6e,0x67,0x9d,0x46,0xb1, +0x97,0x15,0x75,0x6a,0x9f,0x43,0xb7,0x35,0x07,0xa7,0x60,0x3e, +0x31,0xa0,0x5c,0x32,0x13,0x47,0xf7,0xe0,0x98,0x57,0x33,0xea, +0x9a,0xf9,0xb9,0x30,0xca,0xf2,0x8d,0x1f,0x4c,0xe1,0x44,0x4b, +0x71,0x21,0xf9,0xf9,0xe7,0x7e,0x18,0x5b,0x0a,0x13,0x0d,0x32, +0xe9,0xb5,0x38,0x3d,0x1c,0xb5,0x72,0x1d,0x77,0x26,0x8e,0x18, +0xd7,0xab,0x36,0xed,0x2c,0xa1,0x17,0x1a,0x70,0xbd,0x61,0xd3, +0x43,0xd1,0x91,0xbb,0x97,0x04,0xe1,0x2e,0x75,0xfc,0x0c,0xd5, +0x67,0x16,0x19,0xf2,0x60,0x09,0xec,0x23,0x98,0x1f,0x0b,0xb6, +0x1c,0xf8,0x31,0x17,0x50,0xe9,0x04,0xca,0x8e,0xea,0x71,0xc6, +0xc7,0xf6,0x1f,0x35,0x9e,0x82,0xf3,0x98,0x24,0x7d,0x19,0xe5, +0xef,0xdf,0x96,0x67,0x3e,0x4e,0x55,0x4e,0xff,0x3e,0x06,0x64, +0x17,0xc1,0x9a,0x13,0x0f,0x18,0x30,0xb8,0x61,0x1d,0x71,0xc3, +0x91,0x16,0x38,0x5a,0x6d,0x41,0xa3,0x23,0x7f,0xff,0x43,0x27, +0x28,0x14,0x51,0x87,0xbf,0x96,0xa7,0x90,0x3b,0xbe,0x37,0xdd, +0xbb,0x5d,0xf2,0x5a,0x78,0x83,0x8a,0x1d,0xa5,0x3b,0x72,0x38, +0x38,0xf7,0x6f,0x25,0xd2,0xff,0x44,0x58,0xbc,0xe1,0xba,0xfc, +0xad,0x58,0xc2,0x08,0xbe,0xf8,0x8e,0x88,0x8b,0xa1,0x46,0x58, +0xcc,0x88,0x8d,0x18,0x49,0xb4,0xab,0xd7,0x57,0x6d,0xca,0xf7, +0x33,0xe5,0x1f,0x7b,0xde,0x73,0xbd,0x45,0x45,0xd9,0xee,0x48, +0x84,0xc5,0xd8,0x2f,0x2e,0x66,0xf0,0x67,0xfc,0x8a,0x3c,0x7f, +0xfd,0x10,0x26,0xd7,0xff,0x69,0x92,0xc3,0x5b,0xe2,0x70,0x0d, +0x64,0x56,0x2d,0xe6,0x24,0x4a,0x66,0x43,0x8c,0x6b,0x34,0xaa, +0x34,0x0b,0xbd,0x29,0x0c,0x3d,0x7a,0x9d,0xbb,0xec,0x38,0xc1, +0x4c,0xbc,0x48,0x9e,0xff,0xde,0x0b,0x63,0x4a,0x41,0x99,0x6b, +0x10,0x0f,0x81,0x86,0x10,0xdd,0x25,0xde,0xc1,0x5c,0x16,0x2f, +0xfa,0xa3,0xca,0x22,0x5c,0xa0,0xd4,0xec,0xf4,0x1a,0x56,0xe5, +0xc1,0x86,0x4b,0x10,0xa5,0x20,0x2c,0x67,0x76,0xe3,0x30,0xf3, +0xf9,0x5b,0x56,0xea,0x3d,0xb0,0xfe,0xce,0xf9,0xa5,0xd1,0x6e, +0xbe,0x7a,0x6e,0xd3,0x8a,0x1b,0x1b,0x76,0x6a,0xac,0xd6,0x9b, +0x69,0x91,0x6f,0xc0,0xc3,0xb0,0xd6,0x9f,0x7a,0xef,0xdf,0xed, +0xd7,0x78,0xa4,0xfb,0xab,0x41,0x7e,0x07,0xbf,0xac,0x45,0xb5, +0x4b,0xef,0x3a,0x27,0xda,0x41,0x27,0x0d,0xbd,0x2d,0x8d,0xdb, +0x8b,0xe9,0xec,0x77,0xdc,0x06,0xec,0x69,0xe8,0x1d,0xc0,0x51, +0xc4,0x19,0x47,0x18,0x23,0xb7,0x45,0x0a,0x82,0x47,0xef,0xae, +0x01,0x5f,0x2a,0x05,0xc1,0x6b,0xc1,0x80,0xdc,0xb9,0xde,0xfe, +0xed,0xd5,0x17,0x1c,0xdc,0x64,0xce,0x3b,0x9e,0xb1,0x39,0xe9, +0xc9,0x39,0x05,0x1d,0x3e,0x66,0x38,0x05,0x67,0x4b,0x2b,0x54, +0x60,0x2a,0xf3,0xb4,0x3a,0x7b,0x20,0x49,0x39,0xa6,0x32,0xb2, +0x5f,0x5a,0xa2,0x82,0x4c,0x54,0x4e,0x64,0x6e,0x78,0x9e,0x4e, +0x2c,0xef,0x8f,0x93,0x34,0x71,0xca,0xfc,0x95,0x5c,0x06,0x78, +0x13,0xc3,0xda,0xed,0x34,0xee,0xa4,0x29,0xdd,0xfb,0x1d,0x7b, +0xa4,0x74,0x67,0x46,0x7f,0xb7,0x55,0x12,0xc3,0x92,0xbf,0xe3, +0x7a,0x53,0x12,0x43,0xee,0x22,0xee,0x20,0xb3,0x33,0x97,0x17, +0x6f,0xa8,0xf9,0xb9,0x6f,0xe0,0x51,0xdd,0x4f,0x5c,0xbd,0x78, +0xdf,0x50,0x08,0x61,0xed,0xb7,0xeb,0xea,0x6c,0xb0,0xd8,0x5e, +0xab,0xd3,0x66,0xdc,0x67,0xe9,0xc4,0xb7,0xe9,0x76,0x9a,0xf7, +0xdb,0xad,0xb1,0x9f,0xe5,0x81,0x9f,0xef,0x95,0x4e,0x72,0x98, +0x9e,0x07,0xa3,0x2b,0x7e,0x69,0xfd,0xd1,0xfc,0xad,0x33,0x4c, +0xf0,0xe6,0x06,0x9d,0x84,0xf1,0x92,0x3e,0x26,0x54,0x9f,0x05, +0x4d,0x8e,0xfc,0xc3,0x77,0x7d,0x1f,0xf5,0xf9,0x6b,0x97,0xf0, +0x9c,0x74,0x62,0x07,0xe8,0x6b,0xa3,0x3e,0x96,0x19,0x42,0x16, +0xbb,0x57,0xda,0x1f,0x62,0x3a,0x9a,0xe3,0xa6,0x2a,0xa9,0xbe, +0xc2,0x8c,0xc7,0x30,0x2c,0x13,0x54,0xb8,0x08,0xf1,0xee,0x35, +0xe1,0x6e,0x04,0x93,0x8d,0xab,0x7f,0xc4,0x11,0xb0,0x18,0x67, +0x55,0xd1,0x14,0xab,0x0d,0x9b,0x16,0x81,0xf2,0x1e,0x98,0xcb, +0xe1,0x20,0x7c,0x4e,0xac,0x2a,0x0d,0xaa,0x0c,0x0a,0x3d,0xad, +0xf8,0x1e,0x8f,0x16,0x97,0x66,0x7b,0xee,0x24,0x5a,0x11,0xeb, +0xaa,0x5d,0x0d,0x7a,0xc5,0x34,0x67,0x74,0xb9,0x75,0xdb,0x35, +0xd3,0x3e,0x65,0x84,0x78,0x84,0xdc,0xf9,0xb3,0x1d,0x14,0xf3, +0xdf,0x1b,0xa7,0x51,0xf2,0x37,0xd2,0x0a,0x47,0xef,0x9c,0x2f, +0xed,0xba,0x42,0x13,0xbb,0x79,0xb5,0x4e,0x8d,0x4e,0x21,0x85, +0xf9,0x35,0xf7,0x4e,0xa7,0x36,0x8a,0x83,0x97,0xd2,0x56,0x6b, +0xe3,0x7a,0x70,0x1c,0x1c,0xd7,0xc5,0xe3,0xb8,0xe2,0xe3,0x8f, +0x69,0x70,0x5c,0x0b,0x8f,0xcf,0xd7,0xfb,0x5d,0xfc,0xa3,0xff, +0x9e,0x10,0xd3,0x23,0xc6,0x08,0x5e,0x30,0x0d,0xbb,0xa0,0x88, +0x19,0xac,0x87,0xfb,0xe4,0xba,0x6b,0xbf,0x6d,0xa7,0x55,0x49, +0x03,0x6f,0x56,0xbb,0xa3,0x51,0xb3,0x94,0x93,0x5b,0x63,0x9f, +0x74,0x28,0xdf,0x79,0x58,0xc1,0x0c,0xaa,0x8a,0x2f,0xc8,0xbd, +0x0f,0x1d,0xa0,0x58,0xf8,0xde,0x38,0x9d,0x77,0xc7,0x91,0x96, +0x38,0x7a,0xfb,0x02,0x69,0x2b,0x76,0x81,0x32,0xeb,0x6e,0x3c, +0x07,0x6b,0x75,0x70,0x2d,0x1e,0xc3,0xee,0x8d,0x06,0xd0,0xc2, +0xfa,0xe2,0xa4,0xe5,0x8b,0x50,0x7d,0x76,0x11,0xc5,0x90,0x21, +0x30,0x30,0x02,0xf8,0x08,0x98,0xcc,0x45,0x30,0x31,0x38,0xf9, +0x57,0xfc,0x0c,0x0c,0xf1,0x8b,0x92,0x6e,0x1e,0x37,0xfd,0xb9, +0xec,0x67,0x6f,0xe9,0x41,0x51,0x43,0x17,0x33,0x38,0x05,0x7e, +0x23,0x66,0x35,0xbb,0xaa,0xb5,0x0b,0xbd,0x2c,0xf9,0xeb,0xee, +0xdd,0xce,0xed,0xb4,0x46,0x29,0xd9,0x10,0xd8,0x8a,0xe6,0xcc, +0xa1,0x0b,0x87,0xcf,0x1f,0x51,0xc2,0x4d,0x0c,0x1c,0x87,0x4b, +0xb4,0x6a,0xe1,0x25,0xd4,0x60,0xce,0x27,0x5d,0x48,0x4e,0x51, +0x14,0x3f,0xc0,0x44,0x32,0xe0,0x7a,0xdd,0xae,0xcb,0x9a,0x0a, +0x6f,0x5a,0xab,0xda,0xa8,0x51,0xcc,0x65,0x0f,0xce,0x27,0xf7, +0x3f,0x74,0xd3,0xb0,0x94,0xe4,0x75,0xc3,0x11,0x66,0xc8,0xa9, +0x51,0x83,0x7d,0x2f,0xcf,0x26,0x7d,0x6e,0xad,0xce,0xad,0x76, +0x85,0x75,0xbc,0x65,0xb5,0x6e,0xb5,0x5e,0x21,0x27,0x7f,0xfe, +0x6f,0x86,0x1c,0x82,0xe9,0xd6,0x70,0xca,0x1d,0xc6,0x9b,0xee, +0xe7,0xd3,0xd7,0xe4,0xa1,0x72,0x1a,0x7e,0xa1,0x75,0x64,0x6b, +0xe0,0xd6,0x13,0xd5,0x70,0xb0,0x04,0x7e,0x4a,0x85,0xbd,0x3a, +0x11,0xfc,0x61,0x3c,0xe4,0x86,0xef,0x6d,0x31,0x60,0xdf,0xb9, +0x7d,0xe7,0xf6,0x9f,0x8f,0xd2,0xe6,0x61,0x74,0x3c,0x7c,0x95, +0xf5,0x26,0x37,0xdc,0x2b,0xd4,0x27,0xd4,0x8f,0x13,0x6b,0x84, +0xe5,0x24,0xa2,0x2d,0xe2,0xee,0xa5,0x16,0x4a,0x62,0xa1,0x14, +0x69,0x6f,0x63,0x8e,0x9b,0x29,0x89,0x3f,0xb7,0xf0,0xe4,0xcc, +0xa3,0x4b,0x39,0x30,0x67,0x2e,0x6c,0x0c,0x5e,0x75,0xd2,0x80, +0xb3,0x0a,0x0e,0x3a,0xe1,0x30,0x65,0x1e,0x13,0xaf,0x27,0xfb, +0x9d,0xb9,0x95,0x95,0xfd,0x38,0x56,0x39,0xf6,0x59,0xe4,0xeb, +0x8b,0x30,0x9a,0xc3,0x06,0x09,0x18,0x35,0x1a,0x0d,0xba,0x25, +0x5e,0xb6,0x7c,0xaf,0x6b,0x8f,0x6d,0xab,0x2d,0x87,0x63,0xc5, +0x43,0xe4,0xee,0x9f,0x6d,0xa0,0x58,0xf0,0xde,0xf4,0x0a,0x05, +0xc1,0x28,0x2b,0xe4,0xd4,0x25,0x1f,0x68,0x4a,0x67,0x23,0x75, +0x82,0x8d,0x16,0xda,0x60,0xa1,0x3e,0x14,0xa2,0x3f,0x9e,0x10, +0x35,0xfb,0xee,0x0a,0xeb,0xd5,0xfa,0x04,0x4d,0xfc,0x9a,0xf6, +0xa6,0xb4,0x5e,0x7e,0x09,0xb3,0x88,0x59,0x85,0x76,0xb9,0x76, +0x3e,0x2d,0xd7,0xfd,0x5e,0x5d,0x6e,0xed,0x4e,0xdc,0x79,0xb4, +0x23,0x86,0x35,0xdb,0xea,0x76,0x48,0x74,0xe8,0xb6,0xc7,0x0d, +0x87,0x3e,0x3a,0xcf,0x0c,0xf1,0x20,0xf9,0x54,0xc3,0x4c,0x32, +0x79,0x5a,0xd8,0x0c,0xa5,0xc2,0xc6,0x81,0xfc,0x1e,0x81,0xaf, +0x85,0xf5,0xf8,0x35,0x3b,0xfe,0xa5,0x3c,0x8b,0xb4,0x79,0xd6, +0xb9,0xd5,0x3a,0xd3,0x44,0x6f,0x7f,0xd5,0xac,0xdc,0xac,0x80, +0x83,0x0d,0xff,0x9e,0x42,0x7a,0x9f,0x09,0x97,0x54,0xfa,0xe4, +0xef,0x06,0xc7,0x30,0xbd,0x86,0x04,0x14,0x69,0x0e,0x73,0x38, +0xb0,0x78,0xc1,0x4c,0xa5,0x5a,0x3b,0xd9,0x07,0x18,0x9f,0xfb, +0x01,0xfc,0x15,0x7f,0x81,0x51,0xa2,0x22,0xab,0x51,0x78,0xb8, +0x59,0x09,0x46,0xa1,0x81,0x78,0x89,0x11,0x96,0xc2,0xd7,0xc4, +0x37,0x28,0xaa,0x4c,0x59,0x60,0x60,0xaa,0xb8,0x86,0x15,0xdf, +0xc3,0x5c,0x6a,0x80,0x5d,0x8d,0xba,0x25,0x9e,0x36,0x7c,0x37, +0x35,0x40,0x8b,0x0d,0x87,0x0c,0x15,0x6c,0xa8,0x66,0xe5,0xbd, +0x37,0xb9,0x42,0x6b,0xd6,0xa8,0x4f,0x35,0xeb,0x31,0x95,0xa6, +0xdb,0xbd,0xd9,0xb9,0xc9,0x9e,0x02,0xc0,0xaa,0xca,0xb0,0xca, +0x90,0x3a,0xb5,0xcd,0x9d,0x88,0x7f,0x0d,0xfe,0xdd,0xdb,0x2b, +0x1c,0xd3,0xed,0x63,0xc4,0x06,0x18,0x43,0xe4,0x86,0xc2,0xb1, +0x41,0x43,0x56,0xdc,0xd6,0x47,0x60,0x12,0x8c,0xac,0x7a,0x11, +0x01,0xd3,0x28,0x26,0x23,0x51,0xb1,0x7a,0x05,0x65,0x9f,0xa3, +0x4b,0x9b,0x79,0x1a,0x25,0x32,0x0b,0x18,0x0f,0x6b,0x14,0x81, +0xd7,0x45,0xda,0xe3,0xaf,0xb1,0x40,0x82,0x53,0x67,0x28,0x89, +0xc3,0x85,0xa9,0xe4,0x9a,0x4b,0x9f,0x4d,0x9b,0x55,0x59,0x3d, +0x6f,0x51,0xab,0xde,0xfc,0x4f,0x1d,0xfb,0x28,0x90,0xf1,0x95, +0xff,0x28,0xa2,0xff,0x95,0x6f,0xc9,0x95,0x71,0x16,0x11,0x43, +0x41,0x95,0x01,0xd3,0x28,0x58,0x51,0x04,0x5f,0x55,0x7b,0xd0, +0x09,0x27,0x3a,0xe0,0x76,0x6f,0x74,0x09,0xe2,0x30,0x93,0x45, +0x9f,0x7d,0xb8,0x61,0x0d,0x4e,0x50,0x6a,0xb0,0x7f,0x01,0x53, +0x72,0x40,0xe7,0x22,0xec,0x56,0x80,0x70,0xb4,0x66,0x8c,0xb2, +0x8d,0x32,0xcc,0x53,0xfd,0xcd,0xf9,0x6b,0xfe,0xfd,0x7e,0x7d, +0xbe,0x1c,0xa6,0xf7,0xc0,0x69,0xb6,0xdd,0xaf,0xd5,0xb7,0xc9, +0x3b,0xb7,0x89,0x37,0x29,0xda,0x55,0xa2,0x5e,0xc4,0xc1,0x61, +0x30,0x65,0x07,0x57,0x45,0xfd,0xff,0xa7,0x65,0xdf,0xca,0x2d, +0x89,0x3e,0xa5,0x38,0xdb,0x0b,0x7c,0x69,0xcf,0x47,0x29,0x0e, +0x05,0x80,0x70,0x07,0x66,0x13,0xf1,0xe4,0x60,0xc6,0x4c,0x43, +0xf9,0x86,0xce,0x8d,0x8c,0x96,0x90,0x4b,0xf0,0x6f,0x30,0x83, +0xbf,0x19,0x31,0x0b,0x8b,0x28,0x25,0xda,0x5c,0xaf,0x26,0xd1, +0x9f,0x7b,0xee,0x03,0x0e,0xfd,0xb4,0x3e,0x5b,0x4b,0x2f,0xca, +0x58,0xc1,0xdf,0xb4,0x83,0x17,0x1f,0x5c,0x26,0x0e,0x38,0xd2, +0x10,0xd9,0x8d,0x0b,0x1b,0x24,0x2a,0x74,0x63,0x88,0x0a,0x09, +0x69,0x5e,0x04,0x03,0xe8,0x45,0x02,0x28,0x69,0x9f,0x21,0xbf, +0x4f,0x74,0x70,0x2c,0x46,0xa3,0x6d,0x0f,0xcc,0x10,0x7c,0x70, +0x46,0x0f,0xd8,0x4a,0xa7,0xe7,0xf6,0xdd,0x20,0x37,0x3c,0x7b, +0x5c,0x3a,0x1c,0x0a,0x9b,0x78,0xd3,0x2a,0xcd,0x0a,0x2d,0x0a, +0xaa,0xa5,0xe2,0x08,0x62,0x54,0xb3,0xad,0x7e,0x28,0xef,0xdf, +0x72,0xbf,0xe9,0x40,0x39,0x18,0xf4,0x89,0x4b,0x89,0xfe,0xf1, +0xb8,0x1e,0x65,0x58,0xc0,0xc2,0xea,0x0e,0x98,0xf3,0xe8,0xe5, +0x03,0xd7,0x7a,0x7e,0x83,0x26,0x4e,0xdd,0x8a,0xb3,0xcd,0x29, +0x63,0xd0,0x13,0x9d,0xd9,0xa5,0xf9,0xbb,0x7f,0x54,0x82,0x76, +0xa6,0x21,0xfd,0x0a,0x6d,0x32,0xd6,0xb2,0x06,0x94,0x55,0x19, +0xb3,0x83,0xa7,0xb7,0x93,0xc7,0xef,0x28,0xba,0xcb,0x3e,0x18, +0x67,0xf0,0x4e,0x43,0xb4,0x6d,0xf3,0x42,0x6e,0xfc,0x2b,0x79, +0x2a,0xb9,0xef,0x79,0x8b,0x7a,0xaa,0xb0,0x85,0xd7,0xab,0x51, +0xad,0x56,0x2d,0xe0,0xe4,0xfd,0xd2,0xfe,0xf8,0x37,0x40,0x4d, +0x47,0xdc,0x8a,0x0e,0xe2,0xee,0xbe,0x2e,0x61,0xbe,0xc1,0x35, +0x61,0x37,0x26,0x81,0x05,0xdc,0x60,0x06,0x97,0xd2,0x44,0xab, +0x57,0xb3,0x91,0x9a,0xda,0xdb,0x94,0x7f,0xe0,0x71,0x5b,0x32, +0x35,0x68,0x89,0x32,0x02,0xad,0x94,0x14,0x51,0x42,0x24,0x15, +0xc5,0x67,0x7f,0xdc,0x92,0x8c,0x6d,0x28,0x75,0x16,0xc3,0x75, +0x91,0x55,0xa1,0x93,0xbd,0x90,0x67,0x92,0x5e,0xf7,0x16,0x97, +0x16,0x89,0x28,0x59,0x56,0xe9,0xd3,0x0a,0xc0,0x81,0xe5,0xbf, +0x95,0xc9,0xb5,0x7b,0x82,0xa3,0xea,0x35,0xf9,0x5f,0xe2,0xf7, +0x0c,0xc4,0xa2,0x9c,0xa0,0x39,0x34,0xd1,0x94,0xd1,0x87,0x4d, +0x84,0x0e,0xec,0xb1,0x89,0x1d,0x6c,0x84,0x61,0xe4,0xba,0x4b, +0xbf,0x4d,0xa7,0x25,0x05,0xa2,0x69,0xdd,0xf6,0x66,0x9a,0xab, +0x85,0x70,0xa4,0x06,0xbe,0x4f,0xbf,0x7d,0x9f,0x85,0x98,0xc9, +0xf4,0x8b,0xf7,0xd1,0x9e,0x11,0x2b,0x71,0xe2,0xc7,0xb2,0x51, +0x20,0x95,0x0d,0x9a,0xb5,0xa9,0xa7,0x76,0x48,0xf8,0xec,0x94, +0xbb,0xd2,0x5c,0xa0,0x5b,0xae,0x9b,0x4f,0xad,0x7a,0xcd,0xab, +0xc3,0xad,0xd5,0x91,0x13,0xe6,0x0d,0xce,0x22,0xaa,0x16,0xb1, +0x05,0x9e,0xca,0xb0,0xe6,0x05,0x6c,0x84,0xb9,0xf7,0x60,0x0b, +0xd7,0x88,0xa9,0x60,0xce,0xbe,0x8e,0xff,0x2d,0xf9,0x49,0xba, +0xb4,0xf0,0x72,0x95,0x33,0xfa,0xfb,0xa1,0xd5,0xc9,0x78,0x03, +0xfe,0xe1,0xe5,0xe7,0x11,0xcf,0x63,0x38,0x5a,0x05,0x93,0xf5, +0x85,0x64,0x76,0x1b,0x2e,0xc0,0x85,0x38,0x0e,0xa7,0x6e,0xe1, +0x4e,0xe4,0x9f,0x29,0x6f,0x54,0xfc,0x51,0x77,0x0d,0x8b,0x5f, +0x9a,0xea,0x2e,0xd8,0xa5,0x54,0x62,0xfa,0xb4,0xbb,0xb5,0x23, +0xfc,0x9d,0x42,0x04,0x83,0xa3,0x2e,0x75,0x6f,0x02,0xd5,0x29, +0x50,0xc8,0x44,0x76,0xcb,0x06,0xd5,0x05,0x4b,0xca,0xa7,0xd5, +0xea,0xd5,0x25,0xff,0xde,0x74,0xbf,0xe1,0xd0,0x6d,0xcb,0x05, +0x51,0x3c,0x39,0xfd,0x2f,0x95,0x78,0x2c,0x95,0xde,0x32,0x89, +0x4a,0x74,0xc8,0x2d,0x88,0x45,0x8d,0x76,0xad,0x6e,0x11,0xad, +0x8d,0xd7,0x5c,0x3b,0x9c,0xda,0x28,0x5a,0x57,0x61,0x0d,0x09, +0xa9,0x3f,0xdb,0x74,0xa1,0x83,0xb2,0x38,0xc8,0x17,0xfb,0x06, +0xcb,0x18,0xaf,0xd3,0xde,0x21,0x7e,0x67,0x63,0x74,0x79,0x60, +0x52,0x61,0x5b,0xf5,0x1f,0xc5,0xa7,0xbb,0x78,0xed,0x03,0xab, +0x03,0xd6,0x1e,0x94,0xee,0xc1,0x9c,0x61,0xf3,0x71,0xcb,0x0d, +0x1c,0xf7,0x6e,0x47,0xc5,0x9e,0xd2,0xf8,0xa8,0xce,0x6c,0xd0, +0xe2,0xcd,0xd3,0xfc,0xd0,0x7a,0xd9,0x0d,0xe3,0xdf,0xfd,0x61, +0xae,0x02,0x44,0x74,0x32,0x38,0x06,0x3c,0x89,0xa8,0x03,0x2a, +0x82,0x0e,0x23,0x76,0x60,0x05,0xe5,0xdd,0x6a,0xcd,0xea,0x65, +0x9e,0x12,0xef,0xbe,0x2e,0xf1,0x6e,0x58,0x41,0x1b,0x4c,0xf0, +0x67,0x2e,0x99,0x5c,0x36,0x8f,0xb0,0xe2,0xf0,0x18,0x83,0xfa, +0xbb,0x88,0xe7,0x90,0x91,0x77,0xce,0x6f,0x72,0xe2,0xef,0x48, +0xb9,0x3a,0xff,0x3d,0x95,0xfb,0x89,0xdc,0x9c,0x12,0x95,0x1d, +0x1f,0xc9,0xcb,0x6d,0xf7,0xeb,0x12,0x79,0x81,0x0f,0xf8,0x92, +0x08,0x5b,0xa0,0xa0,0x53,0x7c,0x6b,0x08,0x89,0xe2,0x16,0xac, +0xd6,0x83,0x6a,0x7c,0x76,0x0d,0x9e,0x41,0x5b,0x0f,0xeb,0xf2, +0x1b,0xf1,0x7b,0x64,0xf8,0xde,0xf2,0xb6,0xf9,0x5e,0xbe,0x5e, +0xad,0x75,0x56,0xc1,0x06,0x4e,0x5c,0x08,0x85,0x24,0x60,0xb3, +0xfd,0x62,0x93,0x2d,0x2d,0x5e,0x7c,0xdb,0xe3,0xda,0xd7,0x59, +0xdf,0x73,0xa2,0xfb,0x6c,0xf2,0x91,0xfa,0x14,0x37,0xf2,0x1f, +0xc9,0x10,0x97,0x3b,0x38,0x8f,0x7c,0xe2,0x2b,0x14,0xe2,0xff, +0x90,0x18,0x2a,0xc7,0x7d,0xea,0x76,0xa3,0x4a,0x8d,0x72,0x8d, +0x3c,0x9a,0x96,0x06,0xbc,0xaf,0xb9,0x75,0x39,0x72,0xdf,0x01, +0x4f,0x06,0xff,0xbe,0x39,0x20,0x2c,0x50,0xbf,0x29,0xff,0x9b, +0xd5,0xc0,0x73,0x44,0x5c,0x00,0xda,0xc2,0x02,0x46,0xec,0xc2, +0x0c,0xa2,0x5b,0xb3,0xa9,0x96,0x66,0x12,0x33,0x09,0xde,0x4e, +0x14,0xde,0xc2,0xcf,0xb3,0xff,0xf9,0x7c,0xf0,0xa4,0xd8,0xf5, +0x11,0xdd,0x55,0x7f,0x9a,0x64,0xf1,0x76,0x38,0x42,0x42,0xf7, +0x22,0x4e,0x98,0x06,0xd9,0x44,0x58,0x80,0x56,0xe2,0x02,0x66, +0xbc,0xfc,0x6f,0x88,0x21,0x17,0xfc,0xcf,0xfa,0x84,0x1c,0xe1, +0x02,0x43,0x82,0x43,0x0e,0x4e,0xd9,0x21,0x6d,0xdc,0x75,0x8d, +0x69,0xba,0x92,0x92,0x13,0xa5,0x1c,0x99,0x15,0x59,0x7a,0xf1, +0x5f,0xb4,0xe0,0xfd,0x0e,0xa9,0x14,0xb5,0xa9,0xdf,0x42,0x6f, +0x1b,0xf6,0x3e,0x35,0x58,0x8f,0x85,0x26,0x50,0xb8,0x0e,0xa3, +0xcc,0x20,0x6a,0x21,0x9e,0x67,0x4e,0xeb,0x05,0x6e,0x3d,0xa0, +0xce,0xc1,0x55,0xe6,0x00,0x8e,0xc4,0x11,0xcb,0xd1,0x6a,0x5b, +0x2e,0xe5,0x16,0x6a,0x77,0x60,0xc1,0xeb,0xb0,0x21,0x66,0x11, +0x81,0x5f,0x00,0xbf,0x00,0xd4,0x37,0xe7,0x75,0xf1,0x68,0xf1, +0x64,0xce,0xf7,0x87,0x60,0x04,0x87,0x7f,0x0b,0x8e,0xc4,0xae, +0xc2,0xb4,0xc2,0xac,0x80,0x3a,0xae,0xdd,0xa3,0xce,0xb5,0xce, +0x89,0xcb,0x40,0x1f,0x62,0x4e,0x6d,0xaa,0x59,0xe6,0x61,0xc3, +0x5f,0x77,0xee,0xb7,0xea,0xb4,0xe0,0x04,0x11,0x96,0x90,0x85, +0xe8,0xf4,0x2b,0x6b,0x80,0x0b,0xc9,0x7c,0xf4,0x64,0x23,0x8b, +0x23,0x4a,0xc3,0xb2,0x39,0x34,0xc2,0xe1,0xe4,0x9f,0x06,0xa5, +0xc9,0x99,0xff,0xa7,0x6d,0xa1,0xd6,0xbc,0x20,0xff,0x96,0x98, +0xcd,0xd9,0xb1,0x6e,0x95,0x66,0xa9,0x05,0xff,0xe2,0xde,0x83, +0x57,0x9d,0x1f,0x38,0x68,0x9a,0x47,0xcc,0xaa,0x74,0x2b,0x75, +0x0a,0xbd,0x25,0x3e,0xd6,0xe1,0xd2,0xe6,0xc0,0xdd,0x84,0xb1, +0xc4,0x10,0x6e,0x76,0x4a,0x47,0x71,0xab,0x13,0xf3,0x39,0x2b, +0x71,0xcc,0x12,0xb5,0x42,0x33,0xfe,0x6a,0x7e,0x7e,0x7e,0x56, +0x1e,0x27,0x6e,0xef,0x12,0x2e,0xb2,0xc5,0x35,0x45,0x2d,0x79, +0xed,0x1c,0xed,0xf1,0x47,0x12,0x8b,0x2a,0xf5,0x7a,0xed,0x22, +0x7a,0x81,0x5e,0xf7,0x3e,0x7b,0x4a,0xe8,0x06,0x60,0x34,0xbd, +0x80,0x96,0x78,0x00,0xe7,0xb0,0x09,0xfa,0x52,0xdf,0x55,0x9d, +0x7a,0xa5,0x46,0x59,0xd8,0x03,0x63,0x3b,0x59,0xb1,0x51,0xfc, +0x9d,0x3c,0x78,0xdf,0x05,0x0a,0xc5,0xef,0x4d,0xd2,0x79,0x57, +0x1c,0x29,0x51,0x1d,0xea,0x6d,0x21,0x50,0xee,0x47,0xa4,0x13, +0x9d,0xa3,0x0a,0x0c,0x12,0x69,0x5f,0x34,0x6c,0x23,0xb2,0x4b, +0xd6,0x97,0x5b,0xf1,0x9d,0xcd,0x6d,0x7d,0x55,0x03,0x9c,0x30, +0x77,0x21,0x83,0xe3,0xce,0xa2,0xcf,0x31,0x1c,0xa7,0xb4,0x36, +0x68,0x8f,0x97,0xea,0x14,0x9c,0x3b,0x74,0x5e,0xbc,0x02,0x03, +0x23,0x1b,0xda,0xe1,0xf3,0x38,0xe5,0x38,0x18,0x13,0x0a,0x5e, +0x30,0x51,0x11,0x16,0xb3,0xa2,0xb0,0x8f,0x98,0xd5,0xee,0xaa, +0xd1,0x2e,0xa2,0x54,0xf3,0xba,0x5b,0x97,0x53,0x3b,0xed,0x55, +0x36,0x89,0xae,0xa4,0xa6,0xaa,0xb2,0xb9,0xb8,0x3d,0xc7,0x2d, +0xdb,0x2d,0xdd,0xbd,0xbc,0x84,0x0f,0x28,0xf7,0xa9,0xf2,0xaa, +0x2a,0xec,0xcd,0xba,0x96,0xdc,0x6b,0x95,0xce,0x07,0x9a,0xec, +0x33,0xda,0x63,0xe6,0x5e,0xe9,0x7e,0xd5,0xab,0xd0,0xcd,0x95, +0x2f,0xf6,0x28,0xb7,0x2b,0xb3,0xf1,0xd0,0x77,0x34,0xb5,0x71, +0xe0,0x70,0x3e,0x04,0x12,0x8b,0x6a,0x8d,0x06,0x9d,0x62,0x4a, +0x80,0x7b,0xdd,0x7a,0xed,0xa4,0x80,0x0e,0x84,0xc9,0x44,0x1c, +0x8b,0xd7,0xe1,0x95,0x81,0x78,0xb0,0xe7,0x3b,0x81,0x11,0xd4, +0xd8,0xc1,0x25,0xe2,0x5f,0xff,0x9d,0x80,0x4e,0x92,0x6b,0x11, +0x2c,0x65,0xd2,0x6b,0x92,0xeb,0xe2,0xaa,0x74,0x62,0xf8,0xa3, +0xd6,0x87,0x2c,0xf6,0x52,0xb2,0xe0,0x3d,0xb8,0x76,0xb3,0x81, +0xdc,0xb2,0x4b,0x9b,0x11,0x7f,0xa7,0x5f,0xb1,0xaa,0x32,0xa0, +0xb4,0x80,0x82,0xa0,0xdb,0xbd,0xc5,0xb9,0xc9,0x81,0x83,0x60, +0x1f,0x22,0xe2,0x74,0x01,0x59,0xd8,0x20,0x22,0x11,0x10,0x86, +0x89,0xc8,0x76,0x4d,0xa6,0x83,0x51,0x74,0x20,0xde,0x16,0x74, +0x89,0x45,0xed,0xce,0x26,0xed,0x52,0x0f,0x29,0xd5,0x48,0x75, +0x9f,0x3b,0x48,0x7d,0xe3,0x31,0x54,0xe4,0x3f,0xc5,0x77,0xeb, +0xa7,0xf8,0x7e,0x20,0x1c,0x26,0xb0,0xe8,0x8f,0x57,0xdf,0x5e, +0x85,0x09,0x5c,0x38,0x53,0x8c,0xa3,0x41,0xb6,0x12,0x56,0x4f, +0x2f,0xea,0xe0,0x71,0xe9,0x1b,0x1c,0xf6,0xa3,0xe5,0x07,0x4e, +0x93,0xb1,0x9b,0xbd,0x62,0x19,0x2e,0x9b,0xcf,0x5d,0x85,0x8d, +0xff,0x57,0x2b,0xe3,0x8e,0x3a,0xc4,0xbc,0x52,0xbd,0x56,0xab, +0x90,0xb6,0x32,0xd7,0x3c,0xfa,0x1c,0x3a,0x1c,0x38,0xe1,0x9b, +0x72,0xd2,0x25,0x4e,0x30,0x60,0xcf,0x88,0xc5,0xa4,0x5b,0x98, +0xaa,0xdf,0x27,0xac,0x10,0x13,0xc4,0x15,0x2c,0xc6,0x46,0xff, +0xb7,0xf8,0x16,0x46,0x43,0x1b,0x11,0xa6,0x52,0xee,0x37,0x95, +0x19,0xff,0xd7,0xe4,0x0b,0x04,0xc7,0xd0,0x44,0x18,0x56,0xac, +0x0c,0x6f,0xc1,0xa9,0x13,0xfb,0x85,0xaf,0x0c,0xc5,0xaf,0xb0, +0xd1,0x10,0xcc,0xd8,0x73,0x68,0x63,0x82,0x23,0x50,0x0d,0x87, +0x15,0x59,0xf2,0x60,0x0c,0x63,0xfb,0x60,0x5a,0x28,0x78,0x70, +0x30,0x17,0xff,0x62,0xb4,0xb2,0xf6,0x5d,0x53,0x82,0xf1,0x4c, +0x6d,0x52,0x52,0x8d,0x32,0x68,0xb0,0xc6,0xc9,0x32,0xf1,0x2f, +0xe1,0x1c,0xb1,0xab,0x35,0xaa,0x37,0x29,0x75,0xb3,0xe3,0x3b, +0x9d,0xeb,0x1d,0x1a,0x69,0xab,0x35,0x12,0x38,0xe2,0xb9,0xde, +0x7a,0xa3,0xee,0x8e,0x46,0x2f,0xbe,0xeb,0x66,0xfb,0x0f,0xc5, +0xdf,0x52,0x34,0xa3,0x35,0xf1,0xba,0x63,0xf8,0xd2,0xb6,0xcb, +0xdc,0x87,0x6f,0xd0,0x6e,0x5a,0x59,0xa6,0xc6,0xa1,0x99,0x0e, +0xb1,0x6b,0xd0,0x6a,0xd7,0xaf,0x70,0xa5,0xff,0xda,0xb1,0xcb, +0xbc,0xd1,0x9c,0x9b,0x29,0xfa,0x90,0x3e,0x18,0x51,0x05,0xd3, +0xd2,0xde,0x19,0x26,0xd3,0x46,0x6f,0x94,0x3b,0x8e,0xd5,0x9f, +0x3b,0xb4,0xde,0xff,0x33,0xd2,0x41,0xdd,0xaf,0x09,0xa5,0x9d, +0x58,0x0a,0x9b,0xf4,0x70,0x13,0x4e,0x67,0x13,0x2b,0xe2,0x2a, +0xa2,0x2a,0x4d,0xe2,0xe8,0x37,0x47,0x5a,0xcf,0xd4,0xdc,0x50, +0xe3,0xca,0x17,0x95,0xe7,0xd6,0x67,0x36,0x73,0xb0,0x1e,0x35, +0xb1,0xd9,0x08,0x72,0x19,0x5b,0x5a,0x7e,0x46,0x22,0x8b,0x0b, +0x17,0x95,0x9a,0x4a,0x2b,0xc3,0x47,0xfc,0x0a,0xc3,0xb2,0x69, +0x7f,0x11,0x21,0xae,0xe8,0x11,0x56,0x44,0x30,0x59,0x38,0xe9, +0xf9,0x1c,0xd8,0x8c,0x5c,0x49,0x2b,0x8f,0xcb,0xfe,0x98,0x0d, +0x32,0x7b,0x18,0xc3,0x89,0x32,0x78,0x4e,0x51,0xa8,0x5b,0xa3, +0x27,0x35,0x51,0x7d,0xee,0x6d,0xb4,0x3b,0xe0,0x4e,0xa1,0x05, +0xc5,0x8c,0x66,0xa3,0xae,0xd4,0x86,0x75,0xbb,0xf5,0xda,0xb6, +0x48,0x75,0x89,0x23,0xff,0xf4,0x5e,0x43,0xfe,0x6f,0xff,0xe8, +0x7f,0xe1,0x90,0xdc,0x9d,0xc4,0x15,0xc5,0x14,0x45,0x14,0xea, +0xc7,0x50,0xf9,0x18,0x75,0x9c,0xb8,0x68,0x51,0xb5,0x05,0x9f, +0x9e,0x9e,0x9e,0x95,0x9a,0xcd,0x89,0xfb,0x7b,0x1f,0x40,0xa9, +0xa0,0x85,0x0f,0xd8,0x8c,0xa2,0xd4,0x92,0x64,0x5a,0xaf,0xa7, +0xaf,0x63,0x70,0x6c,0x08,0xee,0x3f,0x84,0xe3,0x95,0x36,0x05, +0xed,0x76,0x50,0x9b,0x82,0xcb,0x99,0x24,0xda,0x0b,0x2f,0x66, +0x60,0x54,0x71,0x37,0x8c,0x4b,0x56,0x4e,0x82,0xcf,0xc2,0x61, +0xaf,0x14,0x7b,0x33,0x58,0xf1,0xf7,0x40,0x62,0x52,0xab,0x51, +0xbb,0x4b,0x8a,0xbd,0x9b,0xae,0x3d,0x4e,0x5d,0x36,0x9c,0x0f, +0xea,0xd3,0xe6,0x51,0xb3,0x4e,0xb7,0x98,0xf6,0x4b,0x3d,0x1e, +0x3d,0xf6,0x2d,0xb4,0xf5,0x33,0xb4,0x20,0xb8,0x0f,0x14,0x61, +0x1f,0x83,0xfb,0xe8,0xe7,0xb0,0x0f,0x67,0x21,0x1d,0xff,0x88, +0xa7,0xc9,0xa7,0xbb,0x14,0x43,0xed,0xd0,0xc7,0x5b,0x17,0x54, +0xf2,0xa3,0x60,0x41,0x5a,0x80,0xcb,0x83,0x29,0xd2,0x1d,0xb8, +0x2a,0x5c,0xc3,0xc6,0x5d,0x8f,0xee,0x8b,0xec,0xd4,0x0b,0xe3, +0x4f,0x1b,0x05,0xed,0x3a,0xae,0xce,0xe1,0x48,0x83,0xd7,0xcc, +0xfe,0x59,0xfe,0x33,0x7d,0xd6,0x35,0xb8,0xd4,0x3b,0xd7,0xd9, +0x3b,0x6d,0x35,0xd9,0xb1,0x5d,0xab,0x8c,0xd2,0xc5,0x1b,0x1d, +0x77,0x6a,0x9e,0x14,0x79,0x16,0xbb,0x95,0x38,0x5f,0x6d,0xe0, +0x9d,0xaa,0x5c,0xcb,0xdd,0x4a,0x38,0xdc,0x27,0xc4,0x12,0xbb, +0x2a,0xb3,0x6a,0xd3,0x62,0x2f,0x3b,0xbe,0xdd,0xad,0xd6,0xa9, +0xde,0x9e,0x13,0x16,0x0d,0xee,0x27,0x3d,0xf7,0x61,0xc3,0xb6, +0x5e,0xf9,0x2f,0x58,0xc9,0xf4,0x18,0x10,0xd8,0x30,0xb8,0x10, +0x37,0x30,0x08,0x90,0x44,0x32,0x9f,0xa6,0xbf,0xbc,0xf2,0x0b, +0x37,0x74,0xd2,0x85,0x62,0x00,0x8e,0xb1,0x9d,0xe1,0x99,0xef, +0x99,0xeb,0x45,0xb3,0x6f,0x37,0xec,0x27,0x9d,0xce,0x5d,0x96, +0x4d,0x56,0x65,0xd5,0xbc,0x6d,0x9d,0x56,0x8b,0xfe,0x55,0x2e, +0x83,0xb2,0xee,0xeb,0x30,0xbc,0x0e,0xa6,0x66,0xbe,0x33,0x49, +0xe1,0x77,0xa3,0xcc,0x19,0x47,0xeb,0xcc,0x93,0x58,0x55,0x16, +0x69,0xf7,0xa8,0x77,0xab,0x77,0xa4,0x7d,0x80,0x6d,0xb9,0x69, +0x85,0x29,0xa5,0x70,0x37,0xdd,0xc9,0xe0,0x72,0x23,0xd8,0x8d, +0x8b,0xd1,0x70,0x70,0x61,0xf7,0x5d,0x21,0x50,0xad,0x57,0xbe, +0x10,0x2d,0x61,0x31,0x1c,0x64,0x44,0x45,0x5c,0x4c,0x60,0xf1, +0x1f,0x48,0xd3,0xdb,0x3a,0x1c,0x47,0x6c,0xaa,0xb4,0x1a,0xf5, +0x8b,0x69,0xc4,0x77,0xba,0x75,0xdb,0x36,0xd1,0xfe,0x73,0x03, +0xc8,0xa4,0xf7,0xbe,0xcf,0xe1,0x96,0x80,0xcd,0x2b,0x54,0x2a, +0x6d,0xf9,0x37,0xaf,0xf2,0x7f,0xb9,0x0c,0x7a,0xdc,0x1f,0xd4, +0xac,0x3a,0x19,0x87,0xfb,0x95,0xfe,0xc4,0x2d,0x62,0x20,0x23, +0x50,0x53,0x93,0x3d,0xd2,0x73,0x5d,0xf0,0x85,0x29,0x18,0xca, +0x0e,0x4a,0xe7,0x06,0xff,0xb7,0xde,0x40,0x0e,0x17,0x09,0x2e, +0x66,0x92,0xa9,0xaf,0x3f,0x67,0x5a,0x92,0x93,0x5a,0x95,0xe5, +0xbd,0x7a,0xec,0x60,0x82,0x0d,0xe9,0x74,0x6b,0x70,0x69,0x74, +0x28,0xaa,0xe5,0x6d,0x2a,0x8d,0xab,0x4c,0x28,0x9b,0x4f,0x5c, +0x41,0x82,0x70,0x95,0x3b,0x7e,0xb9,0x01,0x27,0x94,0x18,0xf3, +0x1d,0x4f,0x4b,0xbf,0xcf,0xa4,0x56,0x52,0x64,0x4e,0x2f,0x3f, +0xa2,0xe2,0xb7,0xd5,0xab,0xc0,0x3d,0xdf,0x33,0xc7,0xc7,0x92, +0x2f,0xf6,0xab,0x70,0x2f,0x74,0xb7,0x5b,0xa4,0xbd,0x76,0xed, +0x96,0x2a,0x2b,0x1e,0xd4,0x61,0xcb,0x73,0xd0,0x4a,0x83,0x1c, +0xae,0x06,0xb5,0xd8,0xa8,0xba,0x88,0x86,0xd0,0x26,0x0e,0x4c, +0xa4,0xa5,0xf8,0xb4,0xd5,0x2a,0x23,0x83,0xd3,0x7a,0xe4,0xd3, +0x58,0x31,0x02,0x07,0x88,0x5d,0xb5,0x4e,0xa3,0x81,0xd4,0x64, +0xb6,0xbb,0x75,0xda,0x34,0xd8,0xd1,0xa8,0x3c,0x42,0x6e,0x49, +0x25,0x6e,0x4a,0xce,0x3b,0xd3,0x54,0xde,0x5b,0x2a,0x7c,0x63, +0x76,0x49,0x62,0xff,0x29,0xec,0x25,0x05,0xdd,0xe0,0x8c,0x75, +0x30,0x46,0x0f,0xc7,0x60,0x2a,0x3a,0x77,0x79,0xb3,0x5b,0x20, +0x84,0xd8,0x54,0x18,0x57,0x18,0x17,0xd0,0x04,0xde,0xe5,0xd9, +0xe8,0xda,0x40,0x89,0xa4,0x1c,0xa7,0x12,0xf1,0x0c,0x7c,0x21, +0x9c,0x61,0xc4,0x5f,0xd0,0x86,0x56,0x0d,0x89,0xa4,0xd2,0x38, +0x1a,0xa2,0xad,0x34,0x71,0x38,0x5b,0x92,0xc1,0x45,0x46,0x60, +0xcc,0x9c,0xc1,0xb5,0xc6,0xf3,0x70,0x93,0x66,0xb6,0x19,0x0f, +0x06,0x0f,0x6e,0xc2,0xe7,0x61,0xa0,0x25,0x9d,0x6f,0x9d,0xca, +0xec,0xcc,0xf6,0xbf,0xad,0x04,0x2c,0x53,0x91,0x9c,0x58,0xa9, +0x0c,0xab,0x58,0xa3,0x24,0x19,0xee,0x9c,0xc1,0xba,0x9c,0xa4, +0x4d,0x22,0xc4,0x82,0x37,0x3b,0x18,0x78,0x8e,0xfc,0xc3,0x68, +0xff,0x09,0xc6,0x82,0xf7,0xff,0x71,0x0b,0x51,0xbd,0xd8,0xfb, +0xd3,0x2d,0x44,0x1b,0xee,0xfe,0x26,0x22,0x14,0xc0,0x01,0xb1, +0x80,0x11,0xbc,0x4d,0x69,0x5e,0x14,0x17,0xc3,0x18,0x96,0x22, +0xa2,0x92,0x7e,0xf3,0xd3,0x3d,0xc2,0x5b,0xae,0xd7,0x6d,0x7b, +0x2c,0xb9,0xb7,0xdf,0x13,0xf1,0x56,0x1f,0xd8,0x09,0x96,0xf8, +0x15,0xaa,0xb3,0xd2,0xf2,0x90,0x35,0x4c,0x4d,0x4a,0x1a,0x2d, +0xb7,0x27,0x58,0x6d,0x5c,0x41,0x44,0xcb,0x77,0x82,0x25,0x33, +0x78,0x4e,0x8c,0xa0,0x11,0xd5,0x35,0x14,0x51,0x69,0x52,0x44, +0x99,0x0f,0x55,0x5d,0xf8,0x00,0x7d,0x44,0xb0,0x9c,0x2e,0x5a, +0xd2,0x14,0x3c,0x4c,0xbe,0x96,0xe0,0xc4,0x2e,0xd0,0xc4,0xab, +0x1f,0xf4,0x67,0x60,0x3a,0x6a,0x76,0xc1,0x44,0x56,0xa5,0x8a, +0x58,0x56,0x1a,0x54,0x1a,0x14,0x78,0x0d,0xdd,0xf3,0x71,0x6d, +0xa6,0xc5,0xa8,0x86,0xa6,0xff,0xc8,0xaa,0xb0,0xea,0xd0,0x6a, +0xfd,0x08,0xfe,0xac,0x4d,0x88,0x6d,0xb0,0x1d,0x87,0x26,0x46, +0xb0,0x8b,0x71,0x46,0x8d,0x6d,0xb8,0x9a,0x66,0xb5,0x89,0x94, +0x09,0x03,0xb5,0xcd,0x37,0xa0,0x5e,0x01,0xc6,0x9c,0xb0,0xba, +0x83,0x19,0xd4,0x3f,0x4c,0xf3,0x96,0x7a,0x83,0x96,0x24,0x7f, +0x9f,0x5b,0x9f,0x5d,0x3b,0xe5,0x67,0xb9,0xb4,0xa5,0xcf,0x72, +0xcc,0x33,0xca,0x31,0x58,0x1f,0xb8,0xea,0xf8,0x8a,0xa0,0x9a, +0x17,0x55,0x30,0x2e,0x1f,0xc6,0x1a,0xc6,0xf1,0x7e,0x28,0xb3, +0x41,0x05,0x93,0xe9,0x3e,0xe7,0xbc,0xcf,0xf9,0x9c,0x8f,0xd4, +0xe6,0x61,0x61,0x02,0x2c,0x4f,0x07,0x85,0xec,0x38,0xbf,0x58, +0xbf,0x18,0xff,0xe6,0x6c,0xde,0xf9,0x0f,0x3d,0xe0,0x6c,0x1f, +0x71,0xe2,0xcf,0x9d,0xe4,0x9f,0x22,0xdb,0xe8,0xc8,0xdf,0xa3, +0xb9,0x83,0x56,0x5e,0x6a,0xdd,0x76,0xe1,0x3b,0xd2,0x78,0xb1, +0xef,0xd2,0x8d,0xd0,0x93,0xab,0x8d,0x0d,0xf0,0x4b,0x8b,0x3c, +0xea,0xba,0x39,0x3d,0x03,0x4f,0xa2,0x60,0x64,0xd9,0xa5,0xb2, +0xcb,0x65,0x97,0x38,0x1c,0xcd,0xaa,0xa7,0x07,0x0c,0x28,0x51, +0xa0,0x56,0x27,0x25,0x57,0x2b,0x0f,0xb0,0x26,0x29,0xb2,0x85, +0x48,0x58,0xcf,0x53,0xd1,0xb4,0x18,0x8d,0x66,0x1b,0x42,0x6b, +0xc3,0x2a,0xc2,0x12,0x02,0x13,0x8e,0xc4,0x1f,0xa9,0xbe,0xca, +0xeb,0x0d,0x6c,0x7a,0xa8,0xd6,0xee,0xe0,0xc9,0x57,0x78,0x57, +0xb9,0x94,0x3b,0xcf,0x0f,0xc2,0xc9,0xc1,0x38,0xfa,0x6c,0x75, +0x67,0x59,0x6f,0x5e,0xb7,0x51,0x2a,0xef,0xa5,0x65,0xbf,0xd3, +0x4c,0x93,0xbb,0xe0,0xed,0xfb,0xf5,0x9e,0x29,0x69,0xd7,0x68, +0x22,0x54,0xaf,0xd1,0x2c,0xa2,0x49,0x6f,0xc0,0xad,0x57,0x4a, +0x84,0x27,0x91,0xb6,0x10,0x75,0xdb,0x1a,0x77,0x48,0x66,0xb8, +0xed,0x7a,0xc3,0xb6,0x97,0x42,0xcc,0x55,0xd4,0x24,0x38,0x2c, +0x67,0x45,0xd1,0xd6,0x8a,0xc7,0xad,0xed,0xd7,0xaa,0xee,0x73, +0xd5,0xf8,0x3d,0x9b,0x9e,0x9b,0x92,0x97,0x58,0x60,0x98,0xc4, +0x5b,0x2f,0x5f,0xb7,0x16,0x89,0x66,0x9e,0x15,0x5f,0x93,0x51, +0x91,0x55,0x9a,0x53,0x65,0x5d,0xef,0xd0,0xe1,0xb2,0xd1,0x69, +0xae,0x07,0x4e,0xf2,0x4b,0xa5,0xc5,0x63,0x76,0x3e,0xc8,0xca, +0xff,0xd5,0xf4,0xad,0xd5,0x1b,0x67,0x18,0xef,0xc5,0x0d,0xba, +0x09,0x13,0x88,0x0b,0x8e,0x30,0x97,0x9e,0x21,0x50,0x83,0x3c, +0x78,0xdf,0x2d,0x11,0x2e,0x0e,0x2c,0x7c,0x49,0x58,0x68,0x18, +0xfd,0xc3,0x41,0x17,0xe3,0x66,0x62,0x61,0xb9,0xc3,0x4e,0xa7, +0xdc,0xac,0xc6,0xb6,0x89,0x86,0x8c,0xa2,0x5c,0x7a,0x63,0xa0, +0x13,0x5b,0x61,0xa2,0x36,0x4e,0xc4,0x68,0x43,0x88,0xc6,0x93, +0x0c,0x5a,0xec,0x9c,0x81,0xd9,0xa8,0xac,0x54,0xa0,0x07,0x07, +0x60,0x1c,0x0c,0x07,0x59,0x18,0x28,0x0f,0xed,0x49,0x30,0xe5, +0x15,0x0e,0x07,0x07,0x24,0x25,0x3d,0x3c,0x86,0xc0,0xac,0xed, +0xbf,0x83,0xb5,0x22,0xbe,0x80,0xab,0xc4,0xbc,0x56,0xbb,0x56, +0x47,0xaa,0x44,0xfd,0xae,0x1d,0x8e,0x6d,0x36,0x43,0xf7,0x6d, +0xfe,0xdf,0xcf,0x01,0x2c,0xa4,0x7e,0x44,0x9f,0xe8,0xb1,0x73, +0x0e,0xd8,0xa8,0xac,0x50,0x2a,0xb7,0x2e,0xaf,0xaa,0xec,0x4a, +0x28,0x56,0x08,0x8d,0x8e,0xfc,0x3a,0xfc,0xe4,0x4d,0x1c,0xcf, +0x57,0x97,0xaa,0xc3,0xb8,0xe0,0xf8,0x53,0x17,0x8f,0x9e,0x52, +0x38,0x71,0xea,0xdc,0x25,0x59,0x4c,0xfe,0xe5,0xdc,0x56,0xc5, +0x5e,0x16,0x6e,0x4f,0x36,0x97,0x96,0x0c,0x3a,0xa8,0xaf,0xa7, +0xff,0xae,0xa4,0x2a,0xaf,0x26,0x3e,0x5f,0x21,0x2c,0x3a,0xec, +0x62,0xc4,0xa9,0x17,0xa8,0xc8,0x57,0x97,0x2d,0x83,0xc9,0xa7, +0xe2,0x83,0x2f,0x1d,0x3b,0xa9,0x70,0x5c,0xfa,0x77,0xd1,0x85, +0x61,0x05,0x7d,0x8a,0x6d,0xec,0x20,0x87,0xb5,0xe4,0x9f,0xc4, +0x46,0x43,0xf0,0x53,0xb6,0xa3,0x55,0xa5,0x47,0x58,0x4c,0x3c, +0x03,0xdd,0x8f,0xba,0x1d,0xe3,0x20,0x10,0x98,0x76,0x64,0x40, +0x47,0x1f,0x75,0x70,0x9c,0x31,0x8c,0xc3,0x30,0xd6,0xee,0xa8, +0xfd,0x71,0x87,0xa0,0x68,0x43,0xbe,0x3c,0xa6,0x22,0xb6,0x22, +0x9e,0xc3,0x02,0x1c,0xc1,0x26,0xea,0xc9,0x9e,0x33,0xf5,0xc9, +0xa9,0x94,0x72,0x34,0xb2,0xe5,0x09,0x57,0x93,0xca,0x92,0x39, +0x6c,0x81,0x77,0xc4,0xba,0xd6,0xb0,0xd6,0xb0,0xc4,0xd3,0x8e, +0xef,0x76,0x69,0x72,0x6c,0xa6,0x08,0xdf,0x82,0x33,0x08,0xe8, +0xb2,0x30,0x3c,0xe9,0xf7,0xdc,0x81,0x62,0xaf,0x7a,0x7e,0x87, +0xe7,0x32,0x3f,0x54,0x3e,0xc0,0x61,0x02,0x8b,0xa1,0x87,0x71, +0x81,0x1e,0x7e,0xae,0xd4,0x60,0x7b,0x13,0xa6,0xa5,0xc0,0xfa, +0x8b,0x70,0x4e,0x01,0x14,0xc4,0xf2,0x2e,0xa1,0xfc,0x6d,0x1b, +0xf3,0xef,0x05,0x05,0xe4,0x9a,0x63,0xaf,0x45,0xbb,0x79,0x59, +0x0d,0x6f,0xd1,0xa0,0xde,0xa6,0x55,0x3e,0x54,0x4e,0x6e,0xc0, +0xf0,0x7a,0x98,0x92,0xf5,0x9e,0x96,0x13,0x5f,0x1c,0xe5,0x84, +0x63,0xb4,0xa5,0x87,0x11,0xb9,0x72,0x53,0x62,0x5b,0x63,0x5c, +0x67,0x52,0xe2,0x69,0xcf,0x77,0x38,0xd7,0x3b,0x36,0xda,0x48, +0x4b,0xef,0x02,0x88,0x25,0xe3,0x75,0x2a,0xa6,0x48,0x19,0x04, +0x43,0x51,0xc6,0x6a,0x67,0xf8,0x5f,0x57,0x82,0xdc,0x4e,0x5c, +0x09,0x09,0xb0,0xac,0x03,0x97,0x81,0x27,0xd3,0x98,0x58,0x9f, +0x54,0x93,0xea,0xd3,0xcc,0xcf,0xb7,0x95,0x8e,0xc4,0x53,0x38, +0x90,0x60,0xc2,0x77,0x46,0x77,0xc5,0xb6,0x27,0x70,0x07,0x06, +0xd5,0x09,0x4e,0x59,0x57,0x7e,0xdb,0x44,0xb9,0xe5,0x55,0x0a, +0x0c,0x8f,0x04,0x45,0xae,0x02,0x57,0xb2,0x9d,0xfd,0xd7,0xfe, +0xc8,0x7b,0x44,0x51,0x7a,0xc8,0x14,0xd6,0xb1,0x3e,0x1a,0xba, +0x0b,0xb6,0x6f,0xe5,0xac,0x41,0x9d,0x3d,0x33,0xe7,0xe8,0x2a, +0xb7,0x4d,0x7e,0x6d,0x47,0xae,0x1f,0xbf,0x6f,0x72,0x84,0x4f, +0x5a,0x9a,0xb1,0xe1,0xaa,0xb6,0xa7,0x85,0x9d,0x8d,0xbe,0x5d, +0x29,0x2d,0x54,0xb5,0x35,0x75,0xc5,0x0d,0x9c,0x6a,0xff,0x2f, +0x8e,0x30,0x67,0x0a,0x9c,0x63,0x12,0x3a,0x64,0x83,0x7b,0x04, +0x0b,0xe2,0x58,0xab,0xd7,0x6c,0x7c,0xd5,0xdd,0x9e,0x6f,0x75, +0x6e,0xb7,0xaa,0xb5,0xe1,0x8e,0x20,0x43,0x76,0xe3,0x28,0x17, +0x1c,0xa3,0x37,0xb7,0xc1,0x8d,0xef,0x87,0x11,0xb5,0x30,0x35, +0xfd,0x1d,0x85,0xe9,0x78,0xb8,0x4b,0x60,0x0a,0x24,0xc1,0x19, +0x5c,0xcd,0xa6,0x97,0x66,0x34,0x24,0x96,0x18,0x5e,0xe1,0x0f, +0xdb,0x05,0x58,0xec,0xa6,0x3c,0xfa,0xad,0x09,0x84,0xa1,0x02, +0x9e,0x62,0x42,0x54,0x83,0x56,0xed,0x57,0xe1,0xe0,0x32,0x63, +0xbb,0x71,0xe9,0x46,0x54,0xde,0x5e,0x60,0x4c,0x13,0xc8,0x13, +0x18,0xf1,0x32,0x5c,0xda,0x14,0xee,0x6e,0x37,0xfc,0x0c,0xfb, +0x99,0x8b,0xde,0xe7,0x74,0x4f,0xbb,0x73,0x2e,0xa7,0x4f,0x06, +0x39,0x4f,0x59,0xc8,0x24,0x1b,0xcb,0x1e,0x32,0x03,0x45,0x29, +0x0f,0xe2,0x95,0xa3,0x9a,0x43,0x6f,0x5c,0xa0,0x99,0xe5,0x4b, +0x61,0x3e,0x39,0x74,0xd5,0xb7,0xfe,0x40,0x96,0xe9,0x5e,0x3e, +0x6d,0x77,0xae,0x6d,0xe2,0xff,0x43,0xd7,0x77,0x80,0x45,0x75, +0x6d,0x6d,0x5f,0x0b,0xe7,0x1c,0x35,0x21,0x46,0xdd,0xc9,0x41, +0x13,0xb0,0xf7,0x12,0x7b,0xef,0x0d,0x94,0xce,0x0c,0x30,0x30, +0x0c,0xbd,0x77,0xb1,0x77,0x2c,0x58,0xae,0x05,0x10,0x91,0x0e, +0xd2,0x04,0xe9,0x03,0x0c,0x0c,0x6d,0x18,0x3a,0x68,0x34,0xc6, +0xd8,0x62,0x62,0xaa,0xa9,0x26,0x31,0xc6,0x64,0x9d,0xc9,0x3a, +0x73,0xbf,0x7f,0x1f,0x30,0xf9,0xee,0x7d,0xbe,0xfb,0x3f,0x3e, +0xcf,0xcc,0x38,0x73,0x98,0x39,0x67,0x9f,0xbd,0xd7,0x7a,0xdf, +0xb5,0xde,0xb5,0x76,0x20,0x27,0xbe,0xf5,0x39,0xb9,0xe1,0xd7, +0xee,0xd9,0xe6,0x56,0xd1,0xc0,0xbb,0x36,0x5a,0x37,0xda,0x54, +0x70,0x06,0x37,0x74,0x22,0x28,0xed,0x44,0x61,0xc6,0x8a,0x4f, +0xe7,0x92,0x1b,0x3e,0x7d,0x6e,0x6d,0xae,0x6a,0x2d,0xaf,0x68, +0xdc,0xdc,0xb6,0x4d,0xcd,0x09,0x27,0xe9,0x3c,0xc0,0x71,0xe8, +0xc9,0x26,0x55,0x5d,0xee,0x3d,0x57,0xce,0x61,0x8d,0x98,0x49, +0x6e,0xc3,0xa0,0x66,0x18,0x57,0xf8,0x1b,0xb5,0x1b,0x61,0x38, +0xc4,0x8b,0x3a,0x2f,0xe9,0x4e,0xf6,0x19,0x56,0x13,0x95,0xf0, +0x43,0x3d,0x16,0xf5,0x40,0x7b,0x03,0xb6,0xb7,0x3b,0x3a,0x61, +0x9d,0x12,0xea,0x6c,0x59,0xec,0x29,0x21,0xde,0xb5,0x6e,0x75, +0x8a,0xb2,0x20,0x15,0xaf,0x0b,0xd0,0xf8,0xd6,0x51,0x5a,0xe2, +0x40,0x81,0x5e,0xb7,0x77,0xb7,0x4b,0xab,0x4b,0x75,0x1d,0xef, +0xde,0x64,0xd9,0x6e,0x5b,0xc3,0xc1,0x09,0x1c,0x4a,0x54,0x70, +0xd9,0x16,0x35,0x1e,0x86,0x77,0xb4,0xa8,0xef,0x81,0xfd,0x25, +0x6c,0xf9,0xee,0xfc,0xeb,0x19,0xc5,0x29,0x65,0x66,0xd5,0xc6, +0x75,0xee,0x86,0x21,0xec,0x89,0xfd,0x47,0xf7,0xee,0xdf,0xcf, +0x19,0x4f,0x89,0x0d,0x84,0x0e,0x71,0x9d,0x34,0xc4,0x4e,0x99, +0x7c,0x14,0x0e,0xf5,0x97,0x06,0x9e,0x33,0x34,0x82,0x0b,0xe9, +0xfb,0xba,0xd9,0xb8,0x46,0x21,0x94,0x5b,0xe3,0x7e,0x25,0xec, +0xc7,0xb1,0x93,0xd8,0x34,0x17,0x93,0xcf,0x19,0x4d,0x7a,0x06, +0x75,0x75,0xa3,0x7f,0x6a,0xa0,0x70,0x0f,0xf7,0x11,0x0d,0xd8, +0x80,0x2b,0x1e,0xc3,0xe3,0x2c,0xd8,0x82,0x8c,0x4c,0x45,0xb3, +0xe7,0x2c,0x9c,0xb2,0x27,0x25,0xbb,0x2b,0xc2,0x72,0x77,0x54, +0x94,0xf2,0x31,0x85,0x81,0xc5,0xa1,0xd9,0xf4,0xea,0x1a,0x0c, +0x9e,0x14,0x09,0xda,0x49,0xfc,0x66,0x20,0x8d,0xd0,0xe2,0xc9, +0x7d,0x02,0xef,0x12,0x71,0x8a,0xd0,0x26,0x4c,0x61,0x6d,0x70, +0x2d,0x11,0xb7,0xc0,0x30,0x61,0x0b,0x63,0xac,0xa0,0x86,0xe3, +0x86,0x5f,0x9f,0x47,0xbb,0x7b,0x55,0x23,0xef,0xa2,0xdd,0xdc, +0xbc,0xad,0x92,0x83,0xc7,0xfb,0x89,0xb0,0x05,0x4d,0xc5,0x2d, +0x0c,0xfc,0x53,0x52,0xfd,0xe5,0xb5,0x61,0x1e,0x8c,0xde,0x8e, +0xa3,0xb1,0x48,0x06,0x45,0xb8,0x14,0x6f,0x3a,0x19,0xd6,0xb4, +0x4b,0xc9,0xed,0xba,0x15,0xe4,0xee,0x40,0x04,0x7a,0x20,0x69, +0xf8,0x2a,0x0d,0x61,0xd8,0x78,0x9c,0x04,0x1e,0x4e,0xa8,0xb3, +0xf8,0x9a,0x5a,0xb4,0x07,0x6c,0xee,0xfe,0xbc,0x83,0x79,0x87, +0x0a,0x74,0xfc,0xe4,0xae,0x45,0xf7,0x95,0x14,0xb1,0x44,0xeb, +0xf1,0x39,0x73,0xa5,0x28,0xf9,0x7a,0x52,0xa9,0xd3,0x65,0x3e, +0x36,0xf0,0x70,0xd0,0xc1,0x50,0x0e,0x8f,0xcb,0x21,0x90,0x91, +0x2f,0x58,0xb5,0x1e,0x47,0x6c,0x2b,0x72,0xe6,0x0b,0xd2,0xf2, +0xd2,0x73,0xd3,0x39,0x71,0x5c,0xe7,0x2d,0x58,0x36,0x9d,0xdd, +0x54,0x2e,0xe9,0x92,0xec,0x99,0xd6,0xd4,0xb4,0x16,0x0b,0x30, +0x65,0x5d,0x28,0x00,0xa0,0x28,0xed,0x17,0xc3,0x6e,0xa2,0xac, +0x92,0x57,0xc8,0x8b,0x28,0x51,0x6a,0x0f,0x6d,0x0e,0x6e,0x08, +0xe0,0x84,0x85,0x49,0xa4,0x64,0xbd,0x6e,0x7b,0x9f,0x8c,0xc3, +0x75,0x3f,0xdb,0x4f,0xc7,0x55,0xcc,0x07,0x1d,0xba,0xde,0xea, +0x7b,0xd2,0x96,0xb2,0x01,0xc4,0x5d,0xbd,0xbd,0xce,0xae,0x84, +0xfa,0x8b,0xce,0x90,0x1e,0xef,0x16,0x1f,0x0e,0x7c,0x16,0x93, +0x17,0xb0,0x6c,0x32,0x0b,0x7b,0x5e,0x90,0xc9,0xb8,0xea,0x05, +0x2b,0x96,0x53,0x6f,0xfe,0xf0,0xb7,0x5e,0x30,0xab,0x90,0xf0, +0xb1,0x5f,0x3f,0xa3,0x5a,0x4b,0x19,0xd5,0x60,0xb8,0x4d,0x60, +0x19,0x65,0x4a,0xcb,0x18,0x88,0x81,0xc1,0x52,0x0b,0xc1,0xc1, +0xf4,0xdb,0x4d,0x05,0x15,0x1c,0x21,0xa7,0x2e,0x5c,0x2e,0x4d, +0xac,0xb8,0x58,0x6b,0x06,0x8b,0xdb,0x71,0x7e,0x39,0x03,0xa3, +0x61,0x5a,0xfb,0x14,0x36,0xbf,0xad,0xf8,0xe3,0xb4,0x3e,0x79, +0x1a,0xbf,0xdf,0x2a,0x6a,0x59,0x98,0x35,0x87,0xf6,0x4e,0x30, +0x11,0x2d,0x98,0x9d,0xb8,0xc0,0x09,0xe6,0xb2,0xfb,0x71,0xe2, +0xf6,0xf1,0xd4,0x9f,0x8f,0xd6,0xb8,0xf3,0x9f,0x7c,0x7d,0x17, +0x86,0xe6,0x7d,0x7c,0x21,0x29,0xe1,0x6c,0xfc,0x49,0x58,0x8c, +0x32,0xbe,0xae,0x96,0xda,0x8f,0xed,0x47,0x52,0x0f,0x9d,0x3b, +0x7c,0xd4,0x4c,0x2e,0xac,0x27,0x07,0x74,0x11,0x1f,0xec,0xa8, +0x51,0xc4,0xf0,0xf9,0xde,0xc5,0x96,0x69,0xae,0xdc,0x7b,0xb7, +0x06,0xf0,0x56,0x69,0xa8,0x92,0xef,0x0c,0x1a,0xc0,0x5b,0xa2, +0x71,0x2e,0xc1,0x59,0x4c,0x86,0x8d,0x09,0x8c,0x62,0x1a,0xb3, +0xb3,0x75,0x16,0x86,0x16,0x3b,0x16,0xd7,0xb9,0x11,0xe3,0xf8, +0x2e,0xc3,0x78,0x56,0x8c,0xc5,0x5b,0x44,0xa1,0xdd,0xda,0xbc, +0x5d,0x42,0x7a,0x7d,0xfe,0xbd,0x4a,0xfd,0x80,0x56,0x20,0x68, +0x20,0x58,0x35,0xa3,0xe9,0xdf,0x83,0x55,0x37,0xa4,0xe6,0xe7, +0xc9,0x2c,0xbe,0xbf,0x03,0x37,0xae,0xc2,0xd1,0xe6,0xcd,0xbe, +0x26,0x5f,0xc0,0xf8,0x02,0x90,0xc1,0xfd,0xb1,0x70,0x85,0x15, +0xce,0xff,0x6b,0x12,0xe9,0xfa,0x73,0x92,0x3d,0x23,0xfe,0x84, +0x84,0x78,0xd5,0x3b,0x37,0xb8,0x56,0x04,0x48,0x66,0xa6,0xce, +0xbb,0x81,0xda,0xc7,0xc5,0xf8,0x35,0x39,0xf9,0x18,0x5c,0xf5, +0xe8,0x2a,0xfc,0xc3,0x51,0xfc,0x07,0x3a,0xc8,0x61,0x39,0x13, +0x45,0x17,0x22,0x25,0x67,0xa3,0x91,0xad,0x74,0xe5,0xe1,0x1d, +0x18,0xd3,0x01,0x43,0x12,0xc1,0x94,0x32,0xb3,0x15,0x1d,0xf0, +0x9c,0x49,0xbc,0x78,0x2e,0xfe,0x84,0x39,0xcc,0xc1,0x93,0xf5, +0x55,0xf8,0x1e,0xc4,0x1d,0x4b,0x3d,0x7c,0x81,0x0e,0x00,0xbc, +0x21,0x38,0x92,0xdd,0xcb,0x02,0xa7,0x07,0x6e,0x69,0xdc,0xc1, +0x57,0xdd,0xab,0x7c,0x7e,0xf5,0x53,0x0e,0x9b,0xf0,0x30,0xd9, +0xf3,0x45,0xe0,0xf3,0xa8,0x3e,0xc5,0x2e,0xbe,0x68,0x7b,0xe9, +0xb4,0x9c,0x25,0x1c,0x9e,0x77,0x25,0x5e,0x0d,0xd6,0xed,0x4e, +0x35,0x7e,0x9e,0x7c,0x9b,0x77,0x87,0x4b,0x83,0x2b,0x17,0x36, +0x91,0xec,0xc0,0xa1,0x41,0x38,0xc2,0x61,0x8a,0x2e,0x80,0xef, +0x85,0xa1,0x35,0xf0,0x6e,0xce,0x0b,0xce,0xf4,0x91,0xe1,0x1a, +0xd1,0xfb,0xd7,0xf9,0x35,0xa8,0x2a,0xb5,0xbc,0x97,0xc6,0xa5, +0xde,0x85,0x62,0xed,0x59,0x0b,0x08,0x64,0x33,0x87,0x1d,0xa3, +0x57,0xed,0xa6,0xae,0xd4,0x94,0xc1,0xc9,0x67,0xf1,0xed,0xe3, +0x2b,0xcd,0x65,0x71,0x47,0x8f,0x06,0x8d,0x73,0x91,0x4a,0xf4, +0x5a,0x99,0xf6,0xa2,0x82,0xcf,0x13,0x2d,0x2e,0x94,0x9d,0xaf, +0x39,0xa7,0xe5,0x2e,0x5e,0x38,0x1f,0x7f,0xd2,0x1c,0xde,0xc3, +0x75,0x35,0x6a,0x9c,0x05,0x4b,0x0f,0xa5,0xc5,0x9e,0x3b,0x74, +0xc4,0xec,0xd8,0x71,0x93,0x93,0xcc,0xf9,0x07,0xff,0x7c,0xfa, +0xcb,0xd8,0xa9,0x4c,0x4a,0x59,0x9a,0x2e,0xb5,0x99,0x13,0x06, +0x75,0x18,0xb7,0x32,0x4f,0x8c,0xe7,0x88,0xf0,0xad,0xbd,0xd1, +0xbd,0xab,0x4b,0xc8,0xb6,0xef,0x36,0xb8,0xdb,0x89,0xdf,0xb2, +0xc6,0xbb,0x42,0x22,0x69,0xf5,0xed,0x70,0x6b,0x70,0xaf,0xa1, +0x67,0x53,0x6f,0xd3,0xea,0xa4,0xe6,0x0c,0xaf,0x51,0x48,0xa3, +0x6b,0x6c,0xb9,0x51,0xd6,0xaa,0x2a,0xe1,0x43,0xe4,0xce,0xdb, +0xbc,0x7c,0x39,0x7c,0xf3,0x14,0xf1,0x6a,0xa7,0xac,0xa4,0xd6, +0x2f,0x88,0xd7,0xaa,0xea,0x94,0x1a,0x07,0x0e,0xff,0x81,0xc9, +0xa4,0x43,0xdb,0x73,0xb3,0xe1,0x23,0x9f,0x32,0xde,0xc3,0xd2, +0xde,0x4a,0xe6,0x47,0xdd,0x20,0xc6,0x4b,0xc6,0xa7,0x1e,0xde, +0xc9,0xfb,0xcd,0x31,0x8b,0xc2,0x3e,0xc9,0xea,0xdb,0x50,0x6a, +0x0d,0xd7,0xc0,0x9d,0x38,0x19,0x56,0xb7,0xe3,0x70,0xc1,0x57, +0xda,0x41,0x71,0x84,0x0d,0x8e,0xc0,0xdb,0xfd,0x4f,0x53,0xe4, +0xbf,0x8a,0xbe,0x2c,0x8e,0x10,0x32,0x89,0xaa,0x9f,0x3a,0xf5, +0x07,0xcc,0x24,0x32,0xc5,0x09,0xd7,0x70,0x24,0xa1,0x87,0xb1, +0x70,0x9b,0x11,0x93,0xd1,0x93,0xb8,0x36,0x6c,0xd2,0x6d,0xab, +0x0c,0x52,0xf2,0x03,0x89,0x7d,0x4e,0x68,0x7a,0x42,0x41,0x35, +0x3d,0x82,0x82,0xea,0x75,0x43,0xe1,0x36,0xbe,0x81,0xb7,0x19, +0x4c,0x7b,0x21,0xa1,0x03,0x0f,0x8a,0x0e,0xfa,0x03,0x67,0xaf, +0xd0,0x41,0x3a,0x22,0xf9,0xa3,0xfe,0x0b,0xcd,0x07,0x3d,0x3e, +0x8d,0xbc,0x83,0xcb,0x3c,0xb7,0xc9,0xbe,0x9c,0xb0,0xe2,0x29, +0xf9,0xc2,0xe7,0xb9,0xe2,0xa1,0xac,0xbc,0x95,0x5f,0xd7,0x3c, +0xb1,0x6d,0x79,0x05,0x3d,0xd9,0x1e,0xca,0x38,0x60,0xe1,0x37, +0xf4,0x67,0x4d,0x0a,0x61,0x08,0x97,0xc8,0x5c,0xa3,0xe8,0x68, +0x14,0x0e,0x85,0xc5,0xb3,0x4a,0xda,0x79,0xdc,0xf0,0x7c,0xca, +0xb3,0x80,0xdf,0xb9,0xb5,0x4c,0xf0,0x84,0xf9,0xd3,0x70,0xc3, +0x4c,0xae,0x06,0x56,0x12,0x79,0xa3,0x55,0x93,0x55,0x45,0x88, +0x92,0x97,0x74,0x3f,0x94,0x6a,0xe0,0xb1,0x09,0xa4,0xcf,0xbf, +0xc7,0xbd,0xcd,0xbd,0x42,0xcb,0xbb,0x69,0xb7,0xea,0xb6,0x57, +0x72,0x86,0x2f,0xb1,0x97,0xb4,0x63,0x25,0x98,0x81,0xb5,0x5e, +0x5c,0x21,0x87,0x4d,0xd4,0xcb,0xa4,0x38,0x41,0x0a,0x45,0xe8, +0xbd,0x8e,0x86,0x75,0x52,0xec,0x21,0x97,0x15,0x4b,0xf1,0xa5, +0x44,0x85,0x5a,0x61,0x6c,0xd1,0x4b,0x4a,0x85,0x06,0x2e,0x65, +0xeb,0x74,0xce,0xe0,0xfe,0x11,0xa9,0x6e,0xae,0xba,0x99,0xab, +0x77,0x2d,0xe4,0x77,0xca,0x83,0x6d,0x7d,0x14,0x9c,0x38,0x18, +0xc6,0x92,0x4a,0x8f,0x72,0xfb,0x42,0xa7,0xe6,0x22,0x3e,0xba, +0x3d,0xb0,0x3b,0x50,0x3b,0xc0,0x47,0x3b,0x03,0x9b,0x02,0x9a, +0xbc,0x25,0x39,0x44,0x8d,0x53,0xad,0xac,0x84,0x03,0xab,0x7f, +0x59,0x90,0xde,0x3b,0xc2,0x91,0xcd,0xbd,0x86,0xff,0x11,0x91, +0xe9,0x95,0x11,0xe1,0x88,0x71,0xbb,0x78,0x84,0x11,0xb6,0x0b, +0x05,0x04,0x57,0xc1,0x28,0x47,0x1c,0x85,0xcb,0x9c,0xa9,0xd9, +0x19,0x83,0xa6,0x98,0x05,0x5d,0x90,0x85,0xa3,0x61,0x0c,0xac, +0x62,0x44,0x9d,0x35,0x51,0xd4,0x5b,0x36,0xdb,0x54,0x50,0xd4, +0xd7,0x23,0x65,0x05,0x95,0x1c,0xb4,0xe3,0x01,0x02,0x4b,0x41, +0x86,0x4b,0x59,0xf1,0x0f,0xbc,0x48,0xfa,0xa3,0x52,0xc5,0x52, +0xbc,0x7f,0x20,0x14,0xdd,0x9f,0x8f,0xfa,0x42,0xe8,0x25,0x30, +0x2c,0x1f,0x86,0x54,0xfe,0x54,0xf7,0x65,0xc8,0x27,0x81,0x77, +0x03,0xae,0x35,0xf1,0xb6,0xd7,0xb7,0x16,0x6f,0xba,0xd6,0x7d, +0x5d,0x5f,0xaa,0x2d,0xf5,0xae,0xe6,0x9d,0xfd,0xac,0x03,0x36, +0x05,0x2f,0xbe,0xbe,0xa0,0x68,0x41,0x6e,0x84,0x92,0xbf,0xb7, +0xe7,0xfe,0xce,0x0f,0x77,0x2c,0x0d,0x9a,0x17,0x39,0x7b,0x2f, +0x87,0x11,0xb0,0x86,0xf4,0xf8,0xb7,0xfa,0xb4,0x7a,0xd0,0x71, +0x54,0xd4,0xdb,0x69,0xed,0xca,0x39,0xc3,0xfb,0x74,0x1c,0xc5, +0x11,0xcc,0xe5,0xc2,0xa4,0xc2,0xc4,0x22,0xc7,0x54,0xfe,0x78, +0x70,0x6c,0xe8,0x91,0x30,0x0e,0x77,0xca,0x41,0xc9,0xb8,0x4f, +0xdf,0xb0,0x74,0xfc,0xca,0x4a,0x25,0xdf,0x54,0x5d,0x57,0x53, +0xa5,0xe1,0xd0,0xd8,0x09,0x6b,0xe0,0xcb,0x69,0xb8,0x9c,0x4d, +0x91,0x9b,0xc0,0x2c,0x46,0x93,0x99,0xa9,0xb1,0x10,0xc6,0x89, +0x1c,0x9b,0x5e,0x90,0x5a,0x90,0x52,0x28,0x95,0xba,0xfe,0x6b, +0xd2,0xc7,0xa4,0xc7,0xaf,0xc7,0xbd,0x55,0x12,0x8b,0xb8,0xd3, +0xdb,0x65,0x53,0xc9,0x09,0x0b,0xf0,0x53,0xf2,0x11,0x7c,0xb9, +0x81,0x35,0x06,0xe0,0xe7,0xe4,0x03,0xf8,0x47,0x0b,0x8c,0x2b, +0xfa,0x8d,0x92,0xea,0x50,0x1c,0xaa,0xc2,0x61,0x96,0xd3,0x39, +0x61,0x3b,0xc4,0x11,0x7a,0x04,0x7e,0xc9,0x98,0x1a,0x46,0x1b, +0x42,0x08,0x98,0xd8,0xa0,0x09,0x16,0x3a,0x18,0xc6,0x74,0xb2, +0xc6,0x6f,0xba,0x48,0x57,0xa0,0xce,0xb7,0xd9,0xb3,0xa2,0x91, +0x77,0xd7,0x38,0xd4,0x39,0x96,0x72,0xd0,0x29,0xce,0x27,0xf1, +0x97,0x12,0xce,0x5f,0x3a,0x0e,0x23,0x70,0x38,0x5f,0xa9,0xa9, +0x52,0xe9,0x34,0x15,0xea,0x3c,0xb5,0xd9,0xc5,0xc4,0xf8,0x73, +0xf4,0xdd,0x89,0x38,0x86,0x57,0xd7,0xe3,0x58,0x18,0x7e,0x28, +0x25,0x56,0x6a,0x96,0x17,0x1b,0xdb,0xbf,0x29,0x59,0x92,0xb6, +0x73,0x6c,0xa5,0x4d,0x00,0x3b,0x6d,0x97,0x7c,0xc2,0x42,0x73, +0x1c,0xf4,0x92,0x7e,0x7c,0xee,0xc8,0x91,0x81,0x8f,0xd3,0xcb, +0x92,0x5a,0xf4,0x63,0xab,0x6d,0xe8,0x3a,0x1a,0x14,0xed,0x82, +0xaf,0xcf,0x31,0xaf,0x54,0xf4,0x6a,0xeb,0x9a,0xf3,0xd5,0x66, +0x68,0xab,0x25,0xca,0xba,0xed,0x4d,0x76,0x52,0x3c,0xb1,0xd3, +0xbf,0xcb,0xa3,0xc5,0x83,0x1b,0x2f,0xee,0xfd,0xaf,0x32,0x18, +0xe1,0x0b,0x88,0x22,0xdf,0xd9,0xcc,0x45,0xad,0x3d,0x68,0x31, +0xa4,0x17,0x42,0xe0,0x7e,0x17,0x6b,0x2a,0xec,0x19,0xd8,0xe0, +0xed,0xdc,0x91,0xa3,0xfd,0xbd,0x75,0xcd,0xfe,0x68,0x1b,0x3f, +0xb0,0x69,0x1b,0x2f,0x83,0x37,0x5e,0xed,0x02,0xf0,0xd7,0xa6, +0x6d,0x85,0x2f,0x07,0x7a,0xeb,0xfe,0xef,0xa6,0x6d,0x1f,0xe1, +0xfc,0xca,0x6a,0x13,0x6c,0x13,0x26,0x50,0xc0,0xe3,0xaa,0x71, +0x2d,0x0b,0xf4,0xe0,0xf5,0x01,0x1a,0x3f,0xad,0x27,0x67,0x38, +0x86,0x57,0x88,0x35,0x8c,0x8c,0x84,0x51,0x47,0x61,0x0a,0x87, +0x72,0x07,0x98,0xc4,0x5c,0xc6,0xe1,0xe5,0x38,0xab,0x13,0x07, +0x71,0xf8,0xe4,0x14,0xa9,0xfb,0xbd,0x18,0xde,0x4e,0x83,0x51, +0xb2,0x64,0xfe,0x20,0xbe,0x16,0x85,0xaf,0x79,0xcf,0xa3,0x80, +0xab,0x91,0x28,0x9b,0x2c,0xdb,0x6c,0xd5,0x01,0x2a,0xbe,0xcb, +0xbb,0x47,0xa1,0x73,0xe5,0x84,0xaf,0x71,0x04,0x29,0xd8,0x78, +0x75,0x55,0xf6,0x4a,0x87,0x23,0x1b,0x0e,0xaf,0x3c,0xaa,0x91, +0x94,0x15,0xb3,0xae,0xc3,0x62,0x9b,0x34,0x3e,0x02,0xd7,0xfa, +0xe3,0x7c,0x15,0x4e,0x5b,0x7e,0x8c,0xbf,0x62,0x03,0x66,0x19, +0xf0,0x76,0xf6,0x2f,0x39,0x66,0x09,0x3b,0x12,0x76,0xc4,0xef, +0xe8,0xcc,0xe0,0x23,0x61,0x6c,0x08,0xbc,0xe9,0x03,0x83,0x38, +0xe3,0x19,0xf1,0x75,0x29,0xc8,0xa3,0x95,0x6c,0x98,0x53,0x36, +0xfd,0xcb,0xa1,0xbe,0x38,0xdc,0x7a,0x6a,0xbf,0xfe,0xe2,0x06, +0x71,0x7e,0xba,0xfd,0xa9,0xd5,0x07,0xaa,0x10,0xfe,0xc6,0xe6, +0x9e,0x25,0x2d,0x0b,0x38,0x4c,0x85,0x26,0x7b,0xea,0x18,0x92, +0x98,0x07,0xf7,0xba,0xbe,0xaf,0xf9,0xd2,0x25,0x8f,0xf7,0x5d, +0xe2,0xb8,0x70,0xf5,0xc6,0x1a,0x6f,0x5e,0x7c,0xd1,0x2b,0x34, +0x0b,0x61,0x62,0x14,0x2e,0x63,0x25,0x17,0x39,0x8d,0xa9,0xcf, +0x94,0xe8,0x7c,0x01,0x6b,0x6c,0x87,0x73,0xa4,0x37,0x50,0xef, +0xa7,0xf3,0x2c,0x6f,0xfa,0x3b,0x0d,0x67,0x2a,0x0e,0xfa,0x77, +0x01,0x46,0x8f,0x24,0xc0,0x80,0x4b,0x01,0x04,0x7f,0x69,0xbf, +0x0f,0x3b,0x21,0x9f,0xc5,0x9d,0x18,0x4e,0x60,0x09,0xac,0xc6, +0x25,0xac,0xf8,0x15,0x1e,0xfc,0x2b,0xc5,0xe6,0xd8,0xaf,0xcc, +0xf8,0x2b,0xc5,0xf6,0x95,0x50,0x49,0xaa,0x3b,0xca,0x6e,0x66, +0xdd,0x82,0x55,0x09,0xb0,0x32,0x1d,0xa6,0xf6,0xf7,0x9a,0xb0, +0x08,0xc5,0x75,0x07,0xd0,0x21,0x6e,0xef,0xda,0xc0,0xf5,0xde, +0x72,0x2e,0x1e,0xa6,0x10,0xa5,0xda,0xa9,0x5a,0x76,0x9d,0x72, +0xd7,0xce,0xe0,0xe6,0xc0,0x26,0x1f,0x4e,0x28,0xab,0x24,0x6a, +0x97,0x72,0xc7,0x02,0x99,0xbe,0x90,0x8f,0x6e,0x0d,0xe8,0xf4, +0x6d,0xe6,0x70,0x33,0x2e,0x26,0xb1,0xf5,0x07,0x9a,0xf6,0xa9, +0x9d,0x0e,0xf3,0x19,0x9e,0x29,0x9e,0x49,0x14,0x9b,0x3f,0x7b, +0xaf,0x9f,0xff,0x6f,0x97,0xc4,0x52,0xbd,0x12,0xff,0xf7,0xe0, +0x0c,0xb3,0x95,0xd4,0x68,0x8a,0x1d,0xce,0x70,0x64,0x02,0x6a, +0x9d,0xe9,0xfc,0x19,0x82,0xb1,0x2e,0x10,0x8b,0x0b,0x70,0x15, +0x9b,0xea,0x20,0x5d,0x7e,0x53,0xb6,0x44,0xb2,0x66,0x81,0x97, +0x4d,0x17,0xec,0xba,0xd9,0xca,0xe2,0xc8,0xdf,0xc9,0x04,0xf4, +0xfa,0x9d,0xc5,0xdc,0xa1,0x30,0x84,0xf2,0xcf,0x21,0xac,0x31, +0x04,0x0b,0xc8,0x2b,0xd2,0x3f,0x10,0x6e,0x77,0x7d,0x15,0x6e, +0x1f,0x21,0xa8,0xc8,0xdd,0xe6,0x8d,0x30,0x06,0xff,0x79,0x07, +0xba,0x75,0xd8,0x2d,0x6d,0x79,0x51,0xee,0x02,0xe5,0x9b,0xf1, +0x8c,0x1b,0x9c,0x59,0x85,0xb7,0x14,0x70,0x6b,0xb9,0xf4,0x3a, +0x94,0x39,0x18,0xb3,0x37,0x7a,0x77,0x14,0x87,0xc1,0x2e,0xb0, +0x9a,0x09,0x0f,0x0e,0x0d,0x0a,0x0e,0xf9,0x60,0xef,0x07,0x7b, +0x6e,0xef,0x5a,0x19,0x32,0x75,0x2f,0x8e,0x8c,0xcd,0xa4,0x3c, +0x7b,0x4e,0x0a,0x8c,0x28,0xfa,0xa6,0xf9,0xdb,0xf0,0xaf,0x42, +0x3f,0x09,0x2b,0xd2,0xf1,0x6b,0xaf,0xad,0x2a,0x58,0x97,0xd7, +0x5a,0x5d,0xd3,0x54,0xd2,0xc3,0xc1,0x1b,0x3a,0x71,0x34,0x93, +0x5d,0x90,0x59,0x98,0x96,0xc7,0x41,0x0e,0x23,0x3e,0x17,0xde, +0x21,0x1e,0x35,0xb2,0x1a,0x99,0xe4,0x9d,0x3a,0x82,0x9a,0xfc, +0xe9,0x70,0xa1,0xd7,0x50,0xf7,0xba,0x6d,0x4d,0xaf,0xc2,0x76, +0x3d,0x2a,0xba,0xb0,0x0c,0xff,0x80,0x55,0x64,0x15,0x3a,0x7e, +0xcc,0x82,0x23,0xc5,0x28,0xcb,0xd1,0xf1,0x53,0x56,0xac,0x10, +0x73,0xc8,0xab,0x90,0xfd,0xdf,0x8a,0x37,0x0a,0x5e,0x0d,0x2e, +0x10,0x43,0x22,0x9c,0xbd,0xbd,0xe5,0xc1,0xd6,0xd9,0x76,0x19, +0xce,0x69,0xb9,0xb9,0x79,0x85,0x52,0x13,0x7d,0x21,0x89,0x2e, +0xb7,0x63,0x19,0xc7,0xcf,0x1f,0x3e,0x76,0x28,0x96,0x3f,0x25, +0x75,0x44,0xe9,0xc4,0x51,0x60,0xeb,0x88,0xb6,0x38,0xd9,0xa1, +0x7f,0xa7,0x69,0x53,0x4f,0x1c,0x37,0x03,0xc7,0x94,0xcb,0xf8, +0xcf,0xc0,0xa4,0xec,0xf9,0x85,0x6f,0x06,0x36,0x22,0x3d,0xcf, +0x24,0x5c,0x38,0x77,0x5e,0xda,0x4a,0x64,0x71,0x4d,0xa5,0x09, +0xea,0x85,0x89,0xc4,0xad,0xdf,0x64,0x52,0xf4,0x45,0x8d,0xa8, +0x77,0x2b,0x85,0x49,0x5b,0x71,0x1c,0x81,0xcd,0xec,0x4f,0xa9, +0xdf,0xe6,0xf7,0x5c,0x0b,0xd7,0xf3,0x5b,0x43,0xa6,0xc6,0xe0, +0x90,0xc3,0x94,0x0b,0xd3,0xf9,0xb5,0x07,0x67,0xd8,0xe0,0x38, +0xf3,0x46,0xef,0x5b,0x30,0x29,0x1f,0x56,0x9f,0x83,0x03,0x66, +0x30,0x4c,0xac,0xea,0x14,0xaa,0xbe,0xe9,0x64,0x8c,0x2e,0x96, +0xc4,0xad,0xc1,0x52,0x67,0x53,0x15,0xec,0x41,0x39,0x71,0x8f, +0x5b,0xab,0x3b,0xb7,0x13,0x87,0x10,0x6a,0x0d,0x3d,0x71,0xd8, +0xb6,0x69,0x4d,0x7e,0x3c,0xb5,0x91,0x94,0x04,0x5d,0x93,0xa8, +0x78,0xbc,0x61,0x3a,0x29,0x50,0x5d,0xf7,0x2d,0x0b,0x5e,0x12, +0x36,0x6d,0x17,0x72,0x07,0xb3,0x9d,0x79,0x18,0x9d,0x01,0xff, +0x28,0xf8,0xb6,0xb2,0x57,0xf9,0x61,0xe8,0x93,0x83,0xd5,0x27, +0x72,0x52,0xe3,0xab,0x52,0x60,0x30,0xaf,0xb8,0x7a,0x08,0x47, +0x6f,0x4b,0x75,0xbc,0xea,0x5a,0x66,0xd6,0x5b,0xac,0x2f,0x6f, +0xd6,0xf8,0x57,0xf1,0xae,0x5e,0x0e,0x81,0x96,0xe1,0x61,0x45, +0x91,0x65,0xd1,0xd5,0x02,0x53,0xca,0x9f,0x6c,0x15,0xdf,0x0d, +0xda,0x5b,0xb1,0xbf,0xe6,0x40,0xbd,0x99,0x63,0x6c,0xaa,0x77, +0xba,0x5f,0x66,0xa0,0x19,0xda,0xed,0x4f,0x74,0x36,0x11,0xce, +0xc1,0x1c,0xa2,0x4c,0xdd,0x92,0xe5,0x78,0x39,0x5a,0xc9,0x77, +0x1f,0xfe,0x68,0x7f,0xcd,0x21,0x4e,0x3c,0x1c,0x43,0xdc,0xaa, +0x1d,0xd5,0x0e,0xd7,0x29,0x02,0xef,0x0e,0x69,0x0d,0x68,0xf6, +0xe5,0x4e,0xa1,0x07,0x51,0xd4,0x6e,0x6d,0xb0,0x96,0xa2,0x38, +0xbd,0x81,0xbd,0x5e,0x6d,0x9e,0x9c,0xf0,0x91,0x23,0x91,0x65, +0x6d,0x4c,0xb7,0x4a,0x8a,0xa6,0xf6,0x2b,0xf6,0xa3,0xfd,0xad, +0x07,0x38,0xea,0xed,0x3f,0x25,0x5b,0x33,0x6c,0x0a,0x9c,0xd4, +0x7d,0x55,0xed,0xda,0xa6,0x36,0x55,0x39,0xef,0x2e,0x77,0x50, +0x59,0x05,0x04,0x96,0x86,0x54,0x47,0x34,0x08,0xe3,0x2a,0xf8, +0x93,0x3a,0xf1,0x3d,0xff,0xfd,0xe5,0x07,0xab,0x0e,0xd7,0x9a, +0x39,0x1e,0xbb,0xe2,0x9b,0x12,0x90,0x1e,0x6c,0x86,0xdb,0xe8, +0xf9,0x80,0x47,0x56,0xb1,0xac,0x42,0x59,0xe3,0x67,0x36,0xc3, +0x03,0x87,0x86,0xa1,0xe9,0x5e,0x69,0xdb,0xe2,0xb1,0x39,0xf0, +0x5a,0xf9,0x4b,0xfd,0x4d,0xc5,0xfd,0xa0,0x27,0x7b,0x6a,0x62, +0xaf,0xa6,0xc5,0xab,0xa9,0x59,0xe3,0x5d,0xf3,0x4d,0x8c,0x3a, +0x74,0x26,0xaf,0x02,0x3b,0x4e,0x52,0x26,0x4d,0x12,0x0d,0xad, +0xa7,0x93,0xde,0x80,0xc2,0x51,0x52,0xd5,0x05,0x6e,0x78,0xfd, +0x0f,0xbb,0xf1,0x98,0x8a,0x6e,0x9d,0xfe,0xec,0x02,0x88,0xa0, +0x8b,0xcf,0xb6,0xde,0x56,0xca,0x45,0xf7,0x05,0xb4,0xf9,0xe8, +0x55,0x9c,0xf0,0x2b,0x05,0xd5,0xe2,0x4e,0x18,0x25,0xec,0x64, +0x8c,0x1f,0xe2,0x28,0x32,0x20,0xd1,0xa4,0xbe,0x4c,0xde,0x1f, +0xac,0xe1,0xfe,0xfc,0x07,0x46,0x11,0xe3,0x24,0x07,0x68,0xc6, +0x0f,0x25,0xc4,0xee,0x24,0xb5,0x6f,0xd1,0x66,0x66,0x6a,0x2d, +0xa0,0x0f,0x9a,0xa8,0xab,0x12,0x47,0xff,0x37,0x07,0x6e,0x70, +0x85,0x4b,0xa4,0x75,0x63,0xfd,0xb2,0xda,0xf9,0x6d,0xd7,0x79, +0x9f,0xaf,0xdd,0x9e,0xc8,0xef,0x72,0xe2,0x1b,0x67,0x48,0xc0, +0x72,0xb7,0xd5,0x9b,0xb7,0xd6,0xab,0xf8,0xbb,0x1f,0xb5,0x7f, +0x53,0xf1,0x39,0xbd,0xdf,0x93,0x0c,0x2c,0x81,0xa0,0x76,0x9c, +0x01,0xb3,0x1c,0x71,0x16,0x4e,0x75,0x7a,0x82,0xc3,0x18,0xdc, +0xbf,0x1b,0x17,0x2e,0xc1,0x19,0xe6,0x5a,0xcf,0xc7,0x30,0xe1, +0x1a,0xcc,0x4a,0x04,0x07,0x33,0x09,0xe4,0xce,0x8a,0xc3,0x61, +0x47,0x97,0x9b,0x2b,0x4f,0x1c,0x38,0xe2,0x3f,0x6e,0x3b,0x93, +0xe1,0x40,0x41,0xee,0xad,0xeb,0x05,0x0f,0x24,0x29,0x52,0x02, +0xbc,0x71,0x0e,0xa8,0x37,0xdf,0xd2,0xce,0xa0,0x19,0xa8,0x88, +0x77,0x95,0x5b,0xb5,0xfb,0x75,0x0a,0xfa,0x74,0x41,0xb5,0x81, +0x1a,0x3f,0x4e,0xa8,0x02,0x86,0x24,0xe3,0xc8,0xc6,0xa9,0xbf, +0xe2,0xf0,0x2a,0x3d,0x3f,0x05,0x58,0xd5,0x6f,0x7b,0xc0,0x84, +0xdb,0xc2,0xec,0x45,0x13,0x15,0x0e,0x9a,0x8d,0x83,0x2b,0xe5, +0xfc,0x73,0x18,0x56,0xfd,0xeb,0x15,0x18,0xc9,0x89,0x19,0xf8, +0x88,0x78,0xd4,0x6d,0x6f,0x76,0xa8,0x0c,0x54,0xf2,0x1d,0xfe, +0x5d,0xca,0x26,0x0f,0x4e,0xd8,0x53,0x48,0xba,0x9c,0x7a,0xb6, +0x36,0x6f,0xaa,0xd5,0xf0,0x6e,0x77,0xad,0xef,0xd8,0xe9,0x39, +0xb1,0x04,0xed,0xe8,0x6c,0x1e,0xe2,0x89,0xc3,0x2d,0xa7,0x53, +0xe4,0x78,0xe7,0xaf,0xd9,0x2c,0xbc,0xb6,0x90,0xfc,0xba,0xf6, +0xab,0xa5,0x4f,0xe6,0x56,0xe9,0xf8,0x15,0x4f,0xe7,0x7d,0x39, +0x55,0xda,0x2f,0xe6,0x9a,0xd0,0x42,0x9c,0xc0,0x89,0x3d,0xf6, +0x9e,0x9b,0x0f,0x4e,0xf3,0x93,0x76,0x98,0x5d,0x5a,0x7b,0xbb, +0x2f,0x99,0xb2,0x0b,0x98,0x84,0x43,0x19,0xab,0xc2,0xdd,0xb7, +0xcc,0xa9,0x7f,0xac,0xcd,0xcc,0xd0,0x58,0xf4,0xb1,0x8e,0xa9, +0x26,0xcb,0x70,0x04,0x1b,0x7e,0x34,0xb1,0xdc,0xe2,0x05,0x44, +0xb6,0xe3,0x47,0xf0,0x06,0x94,0xb5,0x61,0xd9,0x1f,0x36,0xe3, +0xf1,0xa2,0x0c,0x2e,0xe2,0x1b,0x2c,0xaa,0x61,0x29,0xf1,0xa8, +0x95,0xd7,0x38,0x97,0xbe,0x4a,0x1b,0x37,0x7a,0x71,0xe7,0xd0, +0x8b,0x9e,0xfe,0x36,0xe9,0xf4,0xa9,0xed,0x09,0xe8,0x52,0x36, +0xd3,0xd3,0x5f,0x81,0xf9,0x04,0xea,0xda,0xb0,0x0e,0xcc,0x6d, +0xd0,0x1c,0x33,0x65,0x90,0x89,0x53,0xf1,0xa1,0xa3,0xc1,0xa5, +0x03,0xef,0x31,0xe2,0x66,0x68,0x93,0x92,0xc7,0x12,0x4a,0x99, +0x36,0x70,0x25,0xfd,0x91,0x75,0x7a,0x9f,0xba,0x29,0xcb,0x52, +0xcc,0x9f,0xbb,0x14,0x37,0xae,0xbc,0x26,0xe3,0x61,0xe1,0x03, +0xe0,0xbe,0xac,0xfb,0x83,0x82,0xdc,0xea,0xf1,0x60,0xba,0x0a, +0x56,0x2f,0x93,0x3a,0xec,0x6d,0x7c,0x32,0xf5,0xa1,0xfc,0x3b, +0x0e,0x7f,0xa2,0x53,0xc9,0xa3,0xce,0x49,0x2b,0x2b,0xa7,0x3e, +0xbb,0xd3,0xaf,0xd1,0x87,0x8e,0x1c,0x7a,0xd3,0x35,0xaf,0xf7, +0xa3,0xc4,0x41,0x59,0xdd,0x4f,0x1c,0x74,0x4e,0x55,0x1c,0x3c, +0xdc,0x46,0x84,0x49,0xed,0xe2,0x24,0xc6,0xdd,0x38,0x83,0x40, +0x0e,0x8c,0xc4,0xf3,0x1d,0x70,0x5e,0x7a,0xea,0xa4,0x4f,0xa3, +0x50,0xb6,0x94,0xbd,0x62,0x67,0x72,0x87,0xa9,0xcf,0x92,0x12, +0xc8,0x9b,0x44,0x10,0x93,0x59,0xb0,0x86,0x07,0x04,0x47,0xc2, +0x38,0x18,0xc9,0x80,0x15,0xb5,0x4b,0x7f,0xbd,0xb6,0x96,0x5e, +0x8f,0xa2,0xaf,0x47,0x31,0xc6,0x7d,0xa2,0xf3,0xab,0xa4,0xcb, +0x2b,0x4e,0x31,0xc4,0x67,0xc0,0x1f,0x1b,0xac,0x9b,0x28,0x45, +0x86,0xa8,0x0e,0x8c,0x82,0xe9,0xd2,0x78,0x46,0xd2,0xa7,0xb3, +0x5d,0x78,0x80,0xbd,0xa6,0xcd,0xd3,0xa7,0x56,0x3b,0xa4,0xf3, +0xfb,0x95,0xd1,0x4e,0x41,0xce,0x1c,0x6e,0x63,0x0a,0x1a,0xb2, +0x1b,0xd2,0x1b,0x65,0x39,0xbc,0x12,0xc7,0x6c,0xc1,0x31,0x73, +0x26,0x55,0xb9,0xf2,0x85,0xd7,0x0b,0xca,0x72,0x4a,0x39,0xf1, +0x45,0xf7,0x0d,0x21,0xa7,0x9b,0x35,0xf2,0x86,0x39,0xc4,0xb9, +0x6e,0xbb,0x66,0x7b,0x09,0x65,0xf8,0x37,0x83,0xba,0x7c,0xa9, +0x71,0x80,0xb9,0xe8,0x48,0xe8,0xf7,0xfa,0xe2,0x74,0x56,0x9c, +0x90,0x40,0x3c,0xd4,0x36,0x75,0x0e,0x12,0xa5,0x6f,0x0f,0xee, +0xf4,0x69,0xf2,0xe5,0x60,0x37,0x2e,0xfa,0xfb,0xf3,0x12,0xfc, +0x8a,0xf4,0x6b,0xbc,0xcb,0x5f,0x91,0xf9,0x81,0x65,0x2c,0x7c, +0x0a,0x47,0x09,0x2e,0x43,0x5f,0x58,0xc6,0x9a,0x3e,0x31,0xe4, +0x91,0x5b,0x41,0xdd,0x7e,0x1d,0x9e,0xa5,0x4d,0xbc,0xbc,0xce, +0x4a,0x63,0x45,0xa1,0xb9,0x37,0x02,0x11,0x7e,0x80,0x47,0xe2, +0x0f,0x0c,0xc5,0xdc,0xef,0x12,0xf4,0x7f,0x0a,0xfe,0x4c,0xbb, +0xb4,0x5b,0x57,0xd4,0x7c,0x16,0x8b,0xa4,0xdd,0xba,0xfc,0xbf, +0x63,0x21,0xf3,0x2d,0x88,0x9a,0x8b,0x51,0x8c,0xf8,0x73,0xe6, +0x7f,0x68,0x2f,0x9a,0x36,0x56,0x70,0xf0,0xad,0x71,0x3e,0x81, +0x0d,0xc2,0x72,0x1c,0x84,0x8b,0xd9,0x34,0x67,0x13,0x78,0x97, +0x52,0xf2,0x0c,0xad,0x85,0x30,0x47,0x2c,0x17,0xf7,0xb2,0x42, +0x0c,0x00,0x11,0x97,0x3f,0x12,0x96,0x33,0xc6,0x28,0x71,0x25, +0x79,0xf4,0x5b,0xaf,0x94,0xc7,0x95,0x49,0x79,0xdc,0x21,0x32, +0x64,0xd7,0xce,0xe0,0x40,0x84,0x04,0x22,0x2c,0x5f,0x21,0x2e, +0x67,0x4c,0xa1,0xc2,0xa0,0xa0,0x98,0xdf,0xae,0xde,0x4e,0x32, +0x33,0x3d,0x01,0x7a,0x8a,0xc0,0xb9,0x9b,0x11,0x04,0x9b,0x84, +0xa7,0xd0,0x84,0xdb,0x61,0x10,0x44,0xb6,0x19,0x67,0xca,0x20, +0x10,0x07,0xb1,0xed,0x6f,0xd1,0xff,0x8e,0xa0,0x2f,0x8c,0x26, +0x4b,0x49,0x9f,0x5f,0xaf,0x7b,0xbf,0x56,0x4d,0xa1,0xdd,0x22, +0xb1,0x1e,0x61,0xe1,0x01,0x82,0x8e,0xf8,0x1a,0x38,0xb2,0xd0, +0xf8,0x96,0xb4,0xb1,0x8e,0xf4,0xaa,0x95,0x8e,0x2b,0xbd,0xdd, +0x8e,0xf4,0x76,0x63,0xb0,0xb8,0x95,0x40,0xa9,0x1e,0x4b,0xff, +0xb0,0x1d,0x8f,0x85,0x72,0x28,0xc4,0x71,0xf8,0xbe,0xcc,0x60, +0xd9,0x86,0x1f,0x32,0x62,0xd1,0xba,0xff,0xae,0xd8,0x16,0xf2, +0x85,0x87,0xe4,0x25,0xc8,0x27,0x76,0xbf,0x84,0x55,0x7a,0x5c, +0xf5,0xcc,0x6e,0x26,0xca,0x9f,0xd9,0xcf,0xc4,0x85,0x72,0x58, +0x38,0x91,0x15,0x47,0x80,0x37,0x69,0x0f,0x6e,0x0c,0x6c,0xf0, +0x2d,0x6b,0xe2,0x55,0x6a,0xb9,0x5a,0x7e,0x9d,0x03,0x5e,0x1c, +0x4a,0x5c,0xea,0xb6,0x48,0xf1,0x08,0x6a,0x3b,0xfd,0xfb,0x54, +0x6d,0x4a,0xee,0x1e,0x8c,0x20,0x8e,0x42,0xa2,0xb8,0x0f,0x03, +0x59,0x49,0x84,0x20,0x67,0xb4,0x59,0x99,0x0d,0x16,0xc2,0x8e, +0x2f,0x3b,0x58,0xf1,0x47,0x9c,0x4e,0xf0,0x7f,0x7a,0x3f,0x81, +0x7c,0x28,0x97,0x36,0x6d,0xda,0x43,0x60,0x1d,0x04,0xe0,0x3a, +0x56,0x94,0x5e,0x7f,0xf4,0x47,0x07,0x98,0x95,0xbc,0x94,0x5d, +0x1d,0xd0,0x05,0x70,0x9b,0xfa,0x75,0xec,0xb0,0x9d,0xb4,0x29, +0x04,0x16,0x3d,0x59,0x75,0x45,0x79,0xed,0xb5,0x1a,0x4e,0x23, +0x75,0x52,0xcc,0xba,0x9c,0x95,0x94,0x6d,0x9f,0xcc,0xfb,0xbd, +0xb7,0x6a,0xe1,0x74,0x6b,0xb5,0x8a,0xcf,0xcb,0x30,0xc1,0xcf, +0x6d,0x65,0xd0,0xc0,0x86,0xce,0x43,0xc6,0x05,0xd7,0x3a,0x5c, +0xb5,0xe7,0x61,0x9e,0x1e,0x56,0xdf,0x4d,0x80,0x37,0x39,0x29, +0x2c,0xff,0x3a,0x58,0xd8,0xc0,0xba,0xad,0xf9,0x5d,0x94,0x74, +0xde,0x98,0xd4,0x18,0xf1,0x94,0x43,0x41,0xb8,0x46,0x14,0x1a, +0x5b,0x4d,0x7f,0xca,0xb8,0x37,0xb0,0xcd,0x4f,0x4f,0x3d,0x98, +0x4f,0x2b,0xd9,0x11,0x18,0xe8,0xef,0x13,0xc4,0xe1,0x41,0xa6, +0xaa,0xb4,0xac,0xa2,0xa8,0x9a,0xc3,0xa3,0x94,0x8c,0xff,0x47, +0x92,0x86,0x5e,0x2b,0x58,0xc1,0x78,0x02,0xaf,0x33,0xa7,0x67, +0xc4,0x28,0x96,0xc9,0x4a,0xdd,0xf8,0x1f,0x6f,0x96,0xdd,0xba, +0x00,0xaf,0x71,0x5f,0x51,0x63,0xed,0x94,0xbd,0xab,0xdd,0xfc, +0x37,0x1c,0x89,0xca,0xf3,0xcc,0x17,0x76,0x8b,0xd9,0x33,0x68, +0xc3,0xd2,0x29,0xb1,0x81,0x84,0x9c,0x4c,0x2e,0xb1,0xf8,0x95, +0xae,0xe5,0x29,0xac,0x71,0x34,0x0e,0xfe,0xaf,0xf9,0x99,0x3f, +0x9d,0xa2,0xc9,0xaa,0xec,0xd5,0x45,0x1b,0x2b,0xee,0x36,0x75, +0x76,0xa9,0xdf,0xe7,0xea,0xc4,0x79,0x6c,0xd2,0xf5,0x4b,0x25, +0x89,0xe5,0x9c,0x40,0xd9,0xee,0x26,0xe6,0xe2,0xf5,0x0b,0x25, +0xe7,0xca,0x38,0x61,0x72,0x6b,0x0c,0x53,0x97,0x1f,0xdd,0xe8, +0xdd,0x1d,0x50,0x6b,0xa6,0x8c,0x2a,0xf3,0x51,0x3b,0x14,0xb8, +0x99,0x89,0x35,0x4c,0x75,0x4b,0x49,0x77,0xa6,0x5e,0x92,0x88, +0x6f,0x48,0x01,0xf3,0x6b,0x3b,0x74,0x3c,0x8e,0x8d,0xc6,0x0d, +0x47,0x51,0x76,0x7a,0xb7,0x65,0xc0,0x46,0x6f,0xb7,0xda,0x50, +0xfe,0x90,0x33,0x4c,0x61,0xce,0x06,0x9f,0x0e,0x3d,0x45,0x1d, +0xc4,0x32,0x39,0xbc,0xc7,0x04,0xe1,0x96,0xa5,0x38,0x82,0xce, +0x98,0xa1,0x74,0x4c,0x7f,0x7e,0x72,0xf7,0x8b,0xa6,0xdf,0x6a, +0x14,0x6d,0x1e,0x37,0x7c,0xd6,0xfa,0x2f,0x8c,0x98,0xbb,0x2f, +0x47,0xce,0xff,0x9e,0xf3,0xbc,0xe2,0x8b,0xc6,0xc7,0x9e,0x4f, +0x03,0xbf,0xdf,0xc1,0x19,0xdf,0x34,0x54,0x13,0xd7,0x5a,0xdb, +0x5a,0x5b,0x69,0x15,0xf7,0x05,0xb5,0xf9,0xeb,0xbd,0x38,0x61, +0xae,0x33,0x39,0x52,0xbd,0xab,0x61,0x4f,0x99,0xec,0x20,0x9f, +0x1d,0x90,0xe3,0x71,0x85,0xa2,0xbb,0xe7,0xd4,0x08,0xc9,0x1a, +0xd6,0x37,0x6f,0xae,0x08,0x96,0x92,0x74,0xb7,0x3c,0x7a,0xdc, +0x38,0x8a,0x94,0x88,0x7f,0x7f,0x32,0x66,0xc3,0xf4,0x7e,0xfd, +0x7d,0xbf,0xd0,0x97,0x13,0x5a,0xe4,0x24,0xc0,0xc5,0x55,0x65, +0xe7,0x6f,0xa5,0x76,0xa8,0x57,0x4a,0x29,0x18,0xd6,0x90,0x40, +0x2e,0xe7,0x26,0xe5,0x27,0xe4,0x59,0x5f,0xe6,0x4f,0xc6,0xc4, +0x86,0x1f,0x89,0xa4,0x64,0x16,0x7f,0x16,0x1a,0xe1,0x67,0x46, +0x7c,0xe4,0x40,0xe4,0x5a,0x4b,0xed,0x36,0x29,0xab,0x7e,0x2b, +0xa0,0xdb,0xbb,0x83,0xde,0x9a,0x51,0x01,0xe4,0xa9,0xb0,0x7e, +0x3e,0x2b,0x76,0xe1,0x52,0x22,0x6f,0x5c,0xaf,0xdb,0x5c,0x29, +0x55,0x10,0xf8,0xbd,0xaf,0xec,0x56,0x70,0xb0,0xfa,0x06,0xf9, +0x5e,0x58,0x3f,0x87,0x45,0x19,0xb5,0x15,0x90,0xa4,0xc7,0x24, +0xba,0xe4,0x4a,0xdb,0xc4,0x7f,0x49,0x81,0xd2,0x41,0x78,0x56, +0x0e,0x67,0x29,0xf1,0xbc,0xeb,0x64,0xd8,0xdc,0x8e,0x3d,0x92, +0xfd,0x6f,0xfa,0xcf,0xdb,0xd4,0xf1,0x2a,0x8d,0xa6,0x36,0x78, +0x12,0x65,0xad,0xa3,0xc6,0xa9,0x34,0x44,0xc9,0x77,0x05,0x36, +0xfb,0x35,0xd1,0xcb,0x1f,0x27,0x76,0x93,0x27,0x70,0x0e,0xbe, +0xc2,0x73,0x0f,0x61,0x57,0x6e,0x07,0x58,0x8a,0x02,0x5a,0xb6, +0xef,0x84,0x90,0x35,0x78,0x02,0xbf,0x82,0x13,0xcb,0xf0,0xa1, +0x0b,0x3c,0xc4,0x31,0xdd,0x30,0x06,0x7a,0x74,0xac,0xf8,0xd0, +0x30,0x8e,0x08,0xc7,0xa7,0x62,0xcc,0x6d,0xbb,0xad,0x18,0xc4, +0xd0,0xf1,0xb7,0x1f,0x50,0xcd,0x56,0x0e,0xa8,0x66,0x95,0x12, +0xd2,0x1c,0x1a,0x42,0xd0,0xea,0x1b,0xb0,0x62,0xe0,0xdc,0x7b, +0x04,0xed,0xbf,0x01,0x7b,0x46,0x5c,0x8f,0x16,0x04,0xac,0x66, +0x22,0x7d,0xf3,0xe4,0x33,0x02,0x74,0xb9,0xd2,0x37,0xd5,0xd8, +0x21,0xad,0xf1,0xd6,0x7e,0xf4,0x21,0xad,0xf1,0xa1,0x1e,0xaf, +0xc2,0x07,0x3a,0xc1,0x85,0xc0,0xca,0x1b,0xcf,0x6e,0xa7,0x7f, +0xc3,0x25,0xa0,0x6b,0x37,0xb8,0x26,0x30,0x69,0xf3,0x7e,0xb7, +0x81,0xb5,0x56,0xf9,0x7a,0x1e,0xa7,0xb7,0x8d,0xef,0xf1,0xfc, +0x80,0x93,0x6c,0x47,0xc7,0x57,0x76,0x0b,0x51,0x2d,0x87,0x74, +0xc6,0x7b,0xf3,0x0c,0x6b,0x9c,0x2e,0xe7,0x2e,0x81,0x3f,0xf1, +0xac,0x95,0x6b,0x9c,0x4b,0x29,0x74,0x68,0x0f,0xd4,0xfa,0x51, +0x57,0x7a,0x15,0xc3,0x88,0x6b,0xd3,0xa6,0x36,0xab,0x6a,0x8a, +0x04,0x6e,0xfa,0xdc,0x50,0xb4,0xbb,0x70,0xf0,0x6e,0x05,0x11, +0xb7,0xe1,0x70,0x27,0x83,0x67,0xfb,0x0c,0x61,0x1b,0x2b,0xda, +0xe0,0x14,0xf2,0x9d,0x30,0x6a,0x2e,0x2b,0x0a,0xf1,0xe4,0xaf, +0x58,0xbe,0xce,0x8f,0xff,0x2b,0xc2,0xcf,0xc1,0x7a,0x7c,0x8b, +0xde,0x8d,0x51,0x73,0x58,0x71,0x14,0xb5,0x0f,0x3f,0x09,0xa3, +0x66,0xb0,0x92,0x2a,0xcb,0x9d,0x78,0x6b,0x5c,0xeb,0x5c,0xcb, +0x83,0x54,0x7c,0xab,0x7f,0x9d,0x5f,0xbd,0x4a,0xda,0x21,0xfe, +0x3c,0x39,0x96,0x76,0x3c,0xfe,0xf0,0xd1,0x83,0x87,0xf9,0x53, +0x3f,0xc2,0xa8,0x36,0xea,0xd7,0x56,0x30,0x0d,0xa9,0xda,0x4c, +0x75,0x76,0x78,0x33,0xbf,0xc4,0x13,0x4d,0x83,0xa7,0x1f,0x4a, +0x77,0xe6,0xab,0x13,0xeb,0x93,0x1a,0xae,0x70,0x14,0x3a,0xcd, +0x95,0xc1,0x24,0xf6,0xf0,0x0c,0x77,0x1c,0x39,0x95,0x32,0x61, +0x3b,0xfe,0xcb,0xe7,0x6a,0x18,0x14,0xff,0x13,0x85,0xf8,0x47, +0xdb,0x05,0x39,0x73,0xe9,0xe2,0xb9,0x0b,0x27,0xcd,0x7f,0xc6, +0x75,0xb5,0xf5,0x26,0x60,0x27,0x7c,0x4c,0xec,0xb0,0x95,0xc1, +0x74,0x17,0x1c,0x85,0x33,0x71,0x99,0xb9,0xc6,0x05,0xc6,0xc3, +0x7b,0x35,0x2f,0x2e,0x82,0x9d,0x59,0x02,0x73,0x01,0xb7,0xaa, +0x27,0xd3,0x95,0xbb,0x4c,0x2a,0x00,0x78,0x07,0xd6,0xa9,0x28, +0xe6,0x48,0x1e,0x0b,0x2c,0xcc,0x22,0xb1,0xb3,0xf7,0x4f,0x0c, +0x5f,0xd2,0xb2,0x93,0x2f,0xf9,0x36,0xf3,0xb7,0xcb,0xbf,0x70, +0xf8,0x31,0x6a,0x49,0xc1,0x17,0xc9,0xbf,0xc4,0xff,0xe0,0x9c, +0xca,0x9f,0x9a,0x1b,0x3b,0x2f,0x7a,0x25,0x87,0x5f,0x69,0x89, +0x67,0x83,0x75,0x9b,0x83,0x3a,0xc0,0x93,0x6f,0xf7,0xe9,0x74, +0x6d,0x74,0xe3,0xa2,0x71,0x10,0xf9,0x2b,0xaf,0xd0,0xdc,0x9f, +0xd0,0xa9,0x1b,0x48,0xe8,0xfc,0xe9,0x08,0x07,0x48,0x3b,0xde, +0xfd,0x05,0xda,0xf4,0x62,0x0a,0x1c,0x81,0x37,0x71,0x01,0x68, +0x61,0x01,0x70,0x6d,0xc8,0xfd,0xe6,0x38,0x09,0xb7,0x4a,0x0f, +0x6f,0xfe,0x66,0x3f,0x69,0xbd,0xec,0x1e,0xd6,0x42,0xd0,0x34, +0xec,0x73,0x82,0x6a,0xd6,0x7f,0x03,0xf5,0x93,0xb8,0xdc,0xba, +0x80,0xe2,0x91,0xc5,0x7d,0xf0,0xf6,0xc7,0x99,0xbf,0x70,0x89, +0x58,0xd1,0x05,0x15,0x89,0x4c,0xc6,0x0c,0x98,0xb0,0x0e,0x16, +0x6d,0xcf,0xa7,0xa8,0x64,0x76,0x17,0xbe,0xf5,0xa1,0xd7,0x7d, +0x4e,0x1c,0x27,0x44,0x10,0x8f,0x7a,0x59,0x83,0xac,0x22,0x50, +0xd5,0x9f,0x1f,0x6b,0xa2,0xd3,0xad,0x69,0x3e,0xc1,0xad,0x7f, +0xc0,0x56,0x46,0x2c,0xc6,0x9d,0x44,0xd9,0x68,0xd9,0x6e,0x5b, +0x2d,0x85,0x07,0x7c,0xba,0x5d,0x74,0xae,0x52,0x25,0x43,0xf8, +0xdf,0x89,0x11,0x8a,0x23,0x06,0x2e,0x40,0x8a,0x4d,0x1a,0x12, +0x60,0x23,0xe9,0xae,0x7b,0xbf,0xb3,0x51,0xef,0x53,0xcd,0x7b, +0x38,0x5b,0xda,0xca,0x7d,0x39,0x55,0x77,0xd4,0x8d,0x9e,0xb1, +0x59,0x10,0x0b,0xcf,0x30,0x97,0x4d,0xca,0x4b,0x2a,0x48,0xc8, +0xb3,0x4b,0xe2,0xe3,0x76,0xc6,0x86,0x1d,0x89,0x90,0x16,0xf2, +0x33,0x48,0x10,0x57,0xe1,0x68,0x26,0xdd,0xde,0xe4,0x37,0xa6, +0x25,0x23,0xa3,0xc5,0x02,0xf2,0x12,0xd9,0x14,0x64,0xc0,0x04, +0x59,0x98,0xb8,0xec,0x7a,0x1b,0xbf,0xae,0x66,0x53,0x9b,0xbc, +0x8b,0x13,0x15,0x42,0x29,0x91,0xd7,0x5b,0xd5,0x6d,0x93,0xea, +0x0b,0x6e,0x05,0x76,0xfb,0x76,0x50,0xc0,0xae,0x6f,0x26,0xf3, +0xc5,0x0d,0x4f,0x59,0x7c,0x9b,0x9a,0x69,0xa7,0x86,0x75,0x2d, +0xfd,0x66,0xe6,0x55,0x12,0x59,0xf8,0x0e,0x16,0x92,0x19,0xe2, +0x86,0x9f,0xd8,0x19,0x78,0x8e,0x38,0x83,0x25,0x1b,0x3a,0x6d, +0xcd,0x74,0x7c,0xd3,0xba,0x44,0xc1,0x83,0xd9,0x07,0xbf,0xc0, +0xc8,0x22,0x20,0x9c,0x86,0xc5,0x2f,0x76,0xbd,0x32,0x47,0xeb, +0x67,0x34,0x7b,0xf1,0x0f,0x7e,0xef,0x17,0xe3,0xd1,0x4b,0xfa, +0x42,0xea,0x72,0x36,0x09,0x7d,0x60,0xab,0x3d,0x6e,0x45,0x17, +0x98,0xe4,0x88,0x6e,0xc2,0x5d,0x70,0x63,0x8d,0x2d,0x07,0x48, +0x57,0x60,0x8b,0xa4,0x58,0xff,0xdf,0x98,0xd4,0x08,0x71,0xc8, +0x7f,0x86,0x88,0x28,0xc0,0x34,0x1c,0xf8,0x9e,0x18,0x97,0x38, +0xc2,0x6d,0xe6,0x48,0xf0,0x81,0xc0,0xfd,0x21,0x1c,0x9e,0x14, +0xd7,0x77,0x09,0xc3,0xe1,0x0d,0x7c,0xd9,0x01,0x2f,0xe9,0xad, +0xed,0x7f,0x1a,0x8b,0x6d,0x73,0x99,0x74,0x47,0x93,0x8f,0x99, +0xda,0xf4,0xb4,0x1a,0x0b,0xf8,0x13,0x6f,0xb2,0x19,0xa5,0x69, +0x15,0x57,0xca,0x38,0x68,0x61,0x8c,0x4f,0xc5,0xcc,0xff,0xee, +0xbd,0x0d,0x66,0x86,0xc7,0x64,0xfb,0x72,0xac,0x97,0x1b,0xe6, +0xe8,0xb1,0x97,0x11,0x5b,0x8a,0x49,0x87,0x7f,0x83,0x6f,0xa3, +0x07,0xe5,0x2c,0x1e,0x75,0xf2,0x7a,0x39,0xfd,0x82,0x83,0xa2, +0x39,0x11,0xb2,0x41,0x25,0x66,0x33,0xf8,0xe1,0x7b,0xa4,0xdb, +0xa7,0x5b,0xa1,0x53,0x50,0xcc,0xa9,0x6c,0xb0,0x6c,0xb3,0x51, +0x73,0xf0,0xd3,0x04,0xf2,0x8b,0x30,0x7e,0x1a,0x2b,0x06,0x62, +0x1a,0x51,0x52,0x00,0xed,0x80,0xcb,0x59,0xa9,0x76,0x6a,0xe2, +0xab,0xce,0x94,0x5b,0x61,0x57,0x43,0x1f,0x4c,0x36,0xce,0xc1, +0xc9,0xac,0xf0,0x53,0x22,0x11,0xcb,0x9f,0x08,0xe5,0x8c,0xb1, +0x48,0x1c,0xf3,0xb7,0x8e,0xc7,0x49,0x4a,0xbc,0x0e,0xf1,0xc5, +0xe1,0xdb,0xa5,0x30,0x75,0xba,0x41,0x49,0x3c,0x35,0x2e,0x1a, +0x17,0x49,0x42,0xa4,0x0f,0xa8,0xf3,0x6d,0xf0,0x94,0xea,0x2e, +0xbf,0x27,0x7e,0x47,0xbc,0x8f,0x7a,0xc5,0x72,0xe7,0xf3,0xcf, +0xe5,0x17,0x4a,0xcb,0x67,0x58,0x3b,0x0e,0x03,0x57,0x56,0x7b, +0xb9,0x2e,0xb9,0x32,0x65,0x47,0x2b,0xbf,0x3a,0x7c,0xfc,0xfe, +0x19,0xb1,0x69,0x4e,0x7c,0xd9,0x85,0xca,0xf8,0x8a,0x04,0x0e, +0xad,0xf1,0x4d,0x27,0x3a,0x48,0xc3,0xd9,0xf0,0xb3,0x91,0xa7, +0x23,0xcd,0x3d,0x8e,0xbb,0x9f,0x54,0xc6,0x5d,0xb2,0xe3,0x6b, +0xe2,0x35,0x09,0xb5,0x97,0xf6,0x4d,0xf6,0x5b,0x6e,0xb5,0x55, +0xa3,0xe2,0x1f,0x3e,0xd1,0xfe,0x9c,0x09,0x63,0x1a,0x2f,0x37, +0xa4,0xd4,0xa6,0x72,0x10,0xb5,0x9d,0xc0,0x64,0x98,0xde,0x8e, +0xd3,0xc1,0x02,0xa6,0xb4,0xe3,0x14,0xfa,0xb4,0xb8,0x53,0xe4, +0x1c,0x60,0x16,0x5a,0xe0,0x38,0x27,0x18,0x47,0x9f,0xcc,0x9d, +0xc0,0x1c,0x27,0xe3,0x06,0x07,0xd8,0x80,0xbb,0xba,0x61,0x17, +0x2c,0xeb,0x64,0xff,0x35,0x13,0x7e,0x26,0x7a,0xdf,0x0e,0x37, +0xad,0x52,0x5d,0x47,0x41,0xb9,0x94,0x82,0xe5,0x72,0x8d,0x33, +0xe9,0x75,0x0e,0xd6,0xc2,0xb8,0xbc,0xdf,0xe4,0x59,0xaf,0x42, +0x59,0x36,0xd2,0xe8,0xbb,0x43,0x24,0xd1,0xe4,0x5f,0xd5,0x58, +0x08,0xad,0xf6,0x62,0xe7,0x2c,0x69,0xd0,0xc4,0x16,0xe1,0x26, +0xd1,0x05,0x69,0x02,0xea,0x7d,0xca,0x29,0xac,0xaf,0x76,0xab, +0x56,0xd0,0xa9,0xb1,0x20,0x9c,0x18,0x7f,0xec,0xb8,0x05,0xeb, +0x0d,0x45,0xac,0x1c,0x8f,0x13,0x0a,0x49,0xac,0x29,0x7e,0x10, +0x92,0xf1,0x19,0xd9,0x07,0x83,0x83,0x61,0xb4,0xdf,0xaf,0x2e, +0x7b,0xf9,0xaa,0xa9,0xa5,0xf8,0x76,0x26,0x9a,0x70,0xd8,0x0e, +0x06,0x12,0x8b,0x23,0x77,0x22,0xf1,0x9a,0xd1,0x12,0xc6,0xd7, +0xff,0x5a,0x20,0x35,0x4c,0xe7,0x39,0x71,0x13,0x66,0x4a,0xa2, +0x9f,0x16,0x87,0xca,0x60,0x15,0xdf,0xe6,0xdf,0xe9,0x4e,0xa9, +0x04,0x5c,0x9e,0xf7,0xd7,0x37,0x3e,0x14,0x9f,0x10,0x08,0x7c, +0x0c,0x23,0xe1,0xed,0x5e,0x70,0x74,0xc9,0xe6,0x1d,0x71,0x13, +0x0e,0x46,0x06,0x55,0x6b,0x39,0x71,0xbe,0xea,0xef,0xf4,0xaa, +0x4c,0x4a,0xaf,0x0e,0xa5,0x26,0x79,0xdb,0x74,0x0e,0x6a,0x40, +0x47,0xd1,0x0c,0xaa,0xf0,0x75,0xc6,0xf4,0x1b,0x43,0x21,0xe9, +0xf5,0x6f,0xf5,0xd1,0x29,0x2b,0x1a,0x78,0xb7,0x57,0x81,0xe2, +0xbb,0x81,0xc4,0x38,0xcf,0x11,0xee,0x31,0x47,0x7c,0xf7,0x79, +0xec,0xa5,0x4e,0xfd,0xa8,0x71,0x63,0xd7,0x2d,0x21,0xda,0xb2, +0xcb,0xb0,0x11,0x1b,0x99,0x8c,0xea,0x4c,0x6d,0x4a,0x0d,0x07, +0x15,0xcc,0xbf,0x66,0xa0,0x13,0xe9,0xf2,0xeb,0x76,0x6f,0x51, +0xd2,0x09,0xa8,0xac,0xdf,0xd6,0x62,0x57,0xc5,0x09,0x4b,0xfd, +0x89,0x98,0x80,0x83,0x85,0x04,0x16,0x56,0xa0,0x19,0x01,0x33, +0xb0,0x40,0x33,0xb6,0x5d,0x7c,0x8d,0x08,0x09,0xc0,0x89,0x09, +0x2c,0xde,0x00,0xa7,0xbf,0xde,0x16,0xbf,0xc0,0xae,0x57,0x41, +0xe2,0xc2,0x97,0x4e,0xfd,0xa7,0xe9,0x29,0xd1,0x2f,0xce,0x30, +0x06,0xa8,0x27,0x34,0x47,0x0b,0x30,0x67,0x4d,0x85,0x3f,0xe1, +0x34,0x71,0x3d,0x2e,0x3b,0xee,0x74,0x92,0xbb,0xca,0xd6,0xab, +0xd5,0xf5,0xd7,0xb4,0x5c,0x69,0x2d,0xcc,0xc3,0x69,0xbf,0xc3, +0xbc,0x56,0x9c,0x07,0x9c,0x03,0x72,0xf8,0xde,0x09,0xd6,0xa7, +0xd6,0xbd,0xd6,0xad,0x3c,0xd8,0x8b,0xd7,0xf9,0xd7,0xf8,0xd5, +0x79,0x96,0x6b,0x78,0x4f,0x78,0x6f,0x02,0x4e,0xc3,0x79,0x5a, +0x4f,0x70,0x66,0xa3,0x83,0x02,0x03,0x03,0xc3,0xb8,0xb3,0x2a, +0x46,0x7e,0x52,0x7e,0xca,0xe5,0x74,0xbc,0x33,0xdf,0x72,0x41, +0x17,0xaf,0x8b,0xe7,0x70,0x3d,0x32,0x6c,0xba,0xb3,0xc9,0xb7, +0x8c,0x36,0x23,0xb5,0xd1,0x02,0xd6,0xb2,0x1d,0x89,0xed,0x89, +0x2d,0x49,0x1c,0x4c,0x35,0xbc,0x4d,0xec,0x71,0xfb,0x7c,0xa7, +0xa7,0xcc,0x69,0xbc,0xed,0x85,0x5b,0xf0,0x0d,0x1c,0xab,0xf5, +0xe0,0x29,0xa2,0x98,0xde,0x0c,0x6e,0x17,0xe0,0x31,0xf7,0x07, +0x83,0x89,0x27,0x70,0xe9,0x51,0x1c,0x64,0x6e,0x73,0xf2,0xd0, +0x21,0xaf,0x71,0x1b,0xa5,0x6e,0x5f,0x1f,0x30,0x1f,0x14,0x17, +0x7f,0x75,0xd9,0x22,0x05,0x86,0x25,0xc2,0x7c,0x78,0x38,0x16, +0x57,0x4a,0x6e,0xdb,0x91,0xf8,0x69,0x1c,0x75,0x2e,0x55,0x41, +0x5e,0x7c,0xa3,0x9f,0xde,0xad,0x96,0xda,0xb5,0xa1,0x27,0x08, +0x9e,0xf8,0x09,0x4e,0x30,0xa2,0x9b,0x78,0x8f,0xdc,0x78,0x65, +0x70,0xe5,0x99,0x92,0x06,0x88,0x1a,0x5c,0x3b,0x69,0xf6,0xb5, +0x18,0x1c,0x08,0x4c,0x6d,0xc5,0xa9,0x9f,0xd8,0xaf,0xc0,0x6b, +0xd2,0xc3,0x44,0x67,0x98,0x88,0xe3,0x61,0xc9,0x62,0x2c,0x11, +0x1b,0x3a,0x85,0xe3,0xb0,0x53,0xdc,0xd3,0x2e,0xec,0xa1,0x16, +0x60,0x0d,0xbe,0xc5,0x64,0xc8,0xa8,0x8d,0x6d,0xce,0xa4,0x2b, +0x5a,0x08,0xc0,0xea,0x2f,0x60,0x15,0x6b,0xf4,0x86,0x9d,0xa4, +0x2d,0x58,0x13,0xac,0xf5,0x2d,0x6f,0xe2,0x3d,0xd5,0x6e,0x95, +0x2e,0xd7,0x39,0xc3,0x50,0xe4,0xc9,0x02,0xbc,0xf6,0x35,0x8b, +0xd1,0x78,0x4c,0x4a,0x58,0xb4,0x58,0x0f,0x24,0x2c,0x7a,0x3d, +0x24,0xec,0x6b,0xef,0x45,0xdc,0xb4,0x01,0xac,0xcd,0x4e,0x27, +0x3b,0x99,0xf9,0x35,0xd7,0xf6,0x8e,0xcc,0xba,0x0b,0x2d,0xd4, +0x47,0x9e,0x57,0xa4,0xf8,0xe8,0x1c,0x0b,0x74,0xbc,0x43,0xf7, +0xd1,0x96,0xfb,0x63,0x6f,0xb3,0x10,0x8f,0x0b,0xc8,0x79,0xd7, +0x74,0x2f,0xbd,0x03,0x7d,0xd7,0xae,0xf7,0x70,0xcb,0xc3,0xb1, +0xb7,0xa7,0xba,0x35,0x05,0xb1,0xb6,0x7b,0x9d,0x6c,0x65,0xe6, +0x45,0xae,0xed,0xed,0x29,0x9a,0x0b,0xcd,0x66,0xc6,0x77,0xb1, +0xec,0xbf,0x85,0xf6,0x4c,0xbf,0xa5,0x93,0xb1,0xc7,0x5f,0xe7, +0xa3,0x53,0x55,0xf6,0x4f,0xc6,0x7a,0x07,0x0a,0x7c,0xf7,0x6e, +0x23,0x05,0xcb,0x80,0x6c,0x79,0x05,0x5e,0xd6,0xf6,0x21,0x73, +0x3f,0xa0,0x8f,0xc3,0x62,0x6a,0xe0,0x19,0xb9,0xfd,0x3c,0x2f, +0xb4,0xf0,0xc8,0xa5,0x2e,0x70,0x65,0x3b,0x8c,0xba,0x55,0xfc, +0x23,0x07,0x32,0xea,0xc7,0xf4,0xe2,0x30,0x39,0x8b,0x1b,0x96, +0x13,0x65,0xbd,0x95,0xce,0x4e,0x8a,0x00,0x74,0xf9,0x77,0xbb, +0x4b,0x6a,0x94,0x33,0x9f,0x92,0xbd,0xef,0x45,0x2e,0xf0,0x59, +0x58,0x33,0xb7,0x7c,0x42,0xfe,0x04,0x7d,0x26,0x1f,0xf3,0xbb, +0x2f,0xb0,0x61,0xef,0x17,0xf7,0x94,0x7c,0x7f,0xf5,0x39,0xf7, +0x32,0x89,0xc4,0xbc,0x17,0xba,0x50,0xb5,0xb8,0x61,0x8e,0x7a, +0xe2,0xf5,0x89,0xba,0x6c,0x3e,0xfa,0x99,0x1b,0xbc,0x11,0x7a, +0xa3,0xfc,0x76,0xf9,0xd7,0x79,0xdf,0x73,0xe2,0x1d,0xb1,0x99, +0x08,0x27,0x60,0x9b,0xb8,0x66,0x8a,0xd4,0x51,0xe9,0x4b,0x6a, +0xc2,0xd3,0xa9,0x45,0x88,0xc4,0x16,0x51,0xcb,0xc2,0x6e,0x78, +0x4e,0x42,0xca,0x55,0x15,0xbe,0xd7,0x22,0xfc,0xf8,0xea,0xf0, +0xba,0xc0,0xeb,0xc1,0x9c,0x68,0x86,0x7a,0x29,0x35,0xd5,0x9f, +0x07,0x71,0x94,0xf2,0x20,0x43,0x54,0x52,0xac,0x84,0x13,0x82, +0xe1,0x1d,0x12,0x52,0xa1,0xaa,0xf4,0x2e,0x0e,0xf7,0xe5,0x6b, +0xc2,0xea,0x03,0x4a,0x83,0xa8,0x39,0xcd,0x30,0x78,0x10,0xef, +0x5a,0x45,0x9d,0xa2,0x2c,0xd8,0x93,0x4e,0x63,0x8d,0x5f,0x3d, +0x35,0xa7,0xf3,0x3d,0x09,0xf8,0x76,0xe0,0x54,0x98,0x61,0x8f, +0x33,0xd0,0xc2,0xf1,0x31,0x0e,0x67,0x70,0x5f,0x0c,0x2e,0x9f, +0x8b,0xd3,0xcd,0xeb,0x54,0x9f,0xc3,0xf8,0x32,0x98,0x9d,0x04, +0x32,0x33,0x6a,0x15,0x70,0x46,0x1c,0x72,0xc7,0x57,0x9a,0x2b, +0x4e,0x1e,0x38,0x1c,0x38,0xce,0x5e,0x2a,0x8c,0x6d,0x62,0x6e, +0x5e,0x2f,0x78,0x7c,0xd9,0xe2,0xf2,0xe7,0x09,0x30,0x1a,0xfc, +0xc6,0xe2,0x16,0xe6,0x5c,0xd6,0x3f,0xb3,0xb2,0xc7,0x0a,0xb7, +0x28,0x55,0xc1,0x78,0x26,0x55,0x9d,0x5c,0x93,0x54,0x6f,0x7f, +0x85,0xce,0xb8,0x51,0x41,0x73,0x37,0xce,0x6f,0x08,0xe0,0xab, +0x1a,0x8b,0x9a,0xf2,0xf4,0x1c,0x14,0x32,0xc6,0x40,0xdc,0x44, +0xbc,0xea,0xed,0x5a,0xfb,0x15,0x2a,0x52,0xfa,0x53,0xeb,0xce, +0x09,0x2f,0x28,0xe7,0x6e,0x64,0x5b,0x6a,0x1a,0xf5,0x05,0x8d, +0x94,0xad,0x35,0xca,0x20,0x86,0x8d,0x0a,0x08,0x08,0x72,0x0f, +0xe4,0x36,0xe1,0x44,0x47,0x3a,0x37,0xf7,0x4a,0x4b,0xca,0xc1, +0xe4,0x1b,0x46,0x9b,0x9d,0x4d,0x97,0x54,0x04,0x2c,0xea,0x60, +0x8d,0xf9,0x79,0x24,0xf2,0x3f,0x84,0x2d,0xfd,0x89,0x4f,0x4a, +0x4d,0xa5,0x6d,0xbc,0x67,0xe3,0x5a,0x19,0xac,0x9d,0x85,0x53, +0x30,0x13,0x46,0xb3,0x7b,0xd6,0xc9,0x16,0x4e,0x5e,0x78,0xdd, +0x89,0x87,0x41,0xdf,0xd7,0x3e,0x4a,0xfc,0x8c,0xa2,0xd9,0x9f, +0xdb,0xa0,0x5a,0x8a,0xd7,0x5e,0x8c,0x33,0x07,0x53,0x5c,0x5a, +0x53,0x4f,0xe9,0xf0,0xc2,0xe3,0xc9,0xc7,0x2e,0x1e,0x3e,0x6c, +0x76,0xf4,0xa8,0x49,0xdc,0x03,0x98,0x06,0x99,0x38,0xed,0x47, +0xd8,0xd8,0x86,0x1b,0x7f,0x60,0x84,0xb7,0x8c,0xf7,0x09,0x4e, +0x93,0x00,0x07,0x8c,0x62,0x9a,0xd2,0x32,0x74,0x16,0x86,0x9b, +0xf6,0xac,0x71,0x10,0x8e,0x20,0xbe,0x35,0xee,0x1a,0x65,0x59, +0x90,0x27,0xdf,0x12,0x50,0xed,0xa7,0xa1,0x80,0xfe,0x38,0x0c, +0x21,0xc6,0xb1,0x9d,0x86,0xb1,0xac,0x31,0x14,0xf7,0x91,0x56, +0xdf,0x76,0x45,0xbd,0xb2,0x5a,0xc3,0x7b,0x6b,0x6d,0x5b,0x65, +0xd4,0x73,0x82,0x1d,0xc1,0xc5,0xef,0xc1,0x62,0x16,0x8e,0xe1, +0x62,0x32,0x17,0x16,0x7f,0xc7,0x88,0x3b,0xc4,0x9f,0xa5,0xf5, +0xaa,0x91,0xd6,0xab,0xec,0x95,0x72,0x64,0x84,0xb4,0x5e,0xe1, +0x81,0xa0,0x27,0xcd,0xed,0x35,0xf7,0xaf,0x76,0xc1,0xbc,0xf3, +0xb0,0x3e,0x0d,0xde,0xbe,0x16,0xde,0xc0,0xe3,0xa8,0x1d,0xb8, +0xe6,0x10,0x6e,0x39,0x13,0xb3,0x59,0xb5,0xdc,0xc3,0x8d,0x4b, +0x87,0xd7,0xa5,0x9a,0xd2,0x1a,0x07,0x49,0x5f,0xd8,0x1d,0xd4, +0xea,0xdf,0xe2,0xcd,0x09,0x99,0xdd,0xa4,0x42,0x55,0x67,0x59, +0xe0,0xdc,0x5c,0xc0,0x47,0xb5,0xa9,0xfa,0x02,0xea,0xa8,0x6d, +0xc3,0x79,0xe4,0x98,0x66,0x5f,0xeb,0x7e,0xb5,0xf3,0x11,0x3e, +0xdd,0x37,0x5d,0x9e,0xe4,0xcb,0xc1,0x63,0x71,0x0b,0x69,0x45, +0x5d,0x02,0xfb,0x8c,0xfd,0xf8,0xe2,0xc3,0xf8,0x1b,0x97,0x52, +0x77,0xa7,0xec,0xb9,0xb2,0x47,0x5b,0xc4,0xfb,0xdc,0x54,0xbc, +0xef,0xd9,0xa0,0x8a,0xe6,0xb3,0x76,0xe7,0x44,0xe7,0x44,0xad, +0x3c,0x31,0x29,0x6e,0xca,0x99,0xaf,0x74,0xcf,0x1e,0x74,0x75, +0x79,0x54,0xf2,0xbe,0x9e,0x56,0xb2,0x2d,0x6e,0xbb,0x73,0x62, +0x72,0x76,0xe6,0x94,0x17,0x56,0x5e,0xbf,0x56,0xec,0x53,0xc5, +0x47,0x45,0xf8,0x07,0x05,0x44,0xef,0x4f,0xdd,0x9f,0x72,0x20, +0x39,0xc0,0x8f,0x6f,0x0a,0xea,0x74,0xaf,0xf7,0x88,0xde,0x17, +0x7d,0x60,0xc7,0x61,0xee,0xac,0xc2,0xfd,0x9f,0xde,0xe3,0x12, +0x64,0x8f,0xce,0x3d,0x3b,0xff,0xec,0xa2,0xd9,0x6c,0xf6,0x24, +0x36,0x39,0x43,0x15,0x1b,0xba,0x7c,0x82,0x07,0x2e,0x73,0xbd, +0x4a,0x17,0xe0,0xfa,0x76,0x30,0xef,0xb9,0x04,0x83,0x28,0x07, +0x4f,0x1a,0x0f,0x6f,0x38,0x82,0xa3,0xad,0xb4,0xd7,0xe4,0xb6, +0x8e,0x59,0x35,0x11,0x8f,0x39,0xf1,0x0d,0xe8,0x96,0x88,0xe1, +0x00,0x3f,0xbb,0xed,0x77,0x4b,0xe2,0x67,0x38,0x4e,0x8c,0xfa, +0x2b,0x6f,0xe1,0xf8,0xef,0x65,0x02,0xd0,0x08,0x46,0x02,0xce, +0x97,0xc0,0x23,0x09,0x96,0x5e,0xc9,0xde,0x93,0xb9,0x27,0x7d, +0x9f,0xa6,0x8a,0xf7,0xd0,0x6f,0xb8,0xb3,0xb5,0xc9,0xdb,0x9f, +0x2f,0xdc,0x5b,0xb8,0x2b,0x7f,0xe7,0xa4,0x13,0xc8,0xd2,0x99, +0x1e,0x57,0xa3,0x2d,0xd3,0x16,0xd4,0x71,0xc2,0x9b,0x7a,0x6c, +0xff,0x16,0x32,0xf4,0x98,0xf1,0xc8,0x76,0x35,0x26,0xc8,0x21, +0x61,0x1e,0x85,0x4a,0xe0,0xc5,0x44,0x79,0x07,0xb8,0x7b,0xb8, +0xcf,0x3a,0xcd,0x9f,0x01,0x3d,0x51,0xd4,0xd8,0xd5,0xd8,0x5d, +0x0f,0x53,0xf0,0x3d,0xc1,0x6d,0x01,0x3a,0x1f,0x2e,0x1e,0x7d, +0x89,0xac,0x7e,0x43,0x73,0x7f,0x0d,0xfb,0xed,0x80,0xf7,0x55, +0xdd,0xee,0xfd,0xea,0x2b,0xbf,0xfe,0xd2,0x8c,0xf5,0x33,0x9b, +0xbc,0xf9,0x57,0xe1,0x29,0xce,0x30,0x3a,0x97,0x88,0x1f,0x63, +0xfd,0x7c,0xb9,0x21,0x4a,0x6f,0xc7,0x88,0xf3,0x80,0xfa,0xf6, +0xe3,0x38,0x18,0x8e,0xb3,0xb0,0x9a,0xfa,0x79,0x38,0x0e,0x0c, +0x1e,0x67,0xbb,0xde,0xa2,0x2f,0x86,0xd1,0x17,0xa6,0x50,0x67, +0x70,0x26,0xae,0x5a,0x1b,0x6d,0x7f,0x76,0xaa,0xcf,0xbf,0xcd, +0x47,0xaf,0xe4,0x0c,0x9b,0xc5,0x37,0x09,0xea,0xc0,0x01,0x12, +0xe1,0x6b,0xb1,0x03,0xbf,0x86,0xd3,0x14,0x83,0xd5,0xca,0xc0, +0x9a,0x39,0x86,0x83,0xad,0x36,0xe2,0x3c,0xeb,0x42,0x3a,0x9e, +0xd6,0xf7,0xef,0xfd,0x7c,0x49,0xaa,0xb6,0x7d,0x97,0xb2,0xbd, +0xcd,0x79,0xbb,0xee,0x98,0xff,0xc1,0xd4,0x67,0xa6,0xd7,0x5b, +0x00,0xcb,0xca,0xb2,0x4d,0x70,0xc2,0x14,0x36,0x30,0x36,0xb1, +0xdc,0x02,0xb6,0x83,0x37,0x3b,0x41,0xb0,0x26,0xe2,0xf6,0xa7, +0xc2,0x76,0x06,0x2d,0x86,0xce,0x14,0xb7,0x3f,0x63,0x91,0xc7, +0x45,0xc4,0xb9,0x69,0xe3,0xff,0xd6,0xcd,0x74,0xb8,0x72,0x60, +0x71,0x99,0x5c,0x0f,0x56,0xbb,0xe6,0x04,0xd6,0x95,0xf0,0x7b, +0x2a,0x7c,0x75,0x61,0x14,0xad,0x08,0xb8,0x90,0x54,0x56,0x56, +0xe9,0xaf,0xd6,0xb8,0x17,0xf2,0x7b,0x7c,0x03,0x14,0x41,0x01, +0x9c,0x98,0xbf,0xfb,0x55,0x24,0x74,0xeb,0xab,0x48,0x68,0x7f, +0x62,0x9d,0x33,0x7d,0x6a,0xb8,0x46,0xda,0xfd,0xb5,0x3e,0x0d, +0xaa,0x2a,0x2d,0xaf,0xaa,0x73,0xae,0x77,0x2e,0xe7,0x60,0xdd, +0xbf,0x26,0x91,0xce,0x1e,0x21,0xc9,0xb6,0xfb,0x4f,0xd6,0x38, +0x9c,0xe9,0x34,0x5e,0x26,0x06,0x2f,0x21,0xc9,0xe8,0xc5,0x8a, +0x1e,0xc0,0x91,0x47,0x65,0x4f,0x9a,0x3b,0x74,0xdc,0x85,0xdd, +0xe7,0xf7,0xec,0x1d,0xbb,0x61,0xef,0xae,0xed,0xe6,0x0e,0xcc, +0x15,0x57,0x93,0x1e,0xe6,0x69,0x79,0xc3,0x2f,0x55,0x27,0x34, +0x47,0xeb,0x2d,0xce,0x26,0x52,0x7e,0x16,0x47,0x51,0xc9,0x1a, +0xbe,0xb6,0x0c,0x4d,0x61,0x4d,0x6c,0xca,0xd1,0xf3,0x07,0x8f, +0x9a,0x1d,0xa4,0x4b,0x9a,0x39,0x9d,0x7c,0xea,0xca,0xa9,0xe4, +0xb6,0xf2,0x5b,0xad,0x35,0xf5,0xfe,0x6a,0x3e,0xc0,0xcb,0x51, +0xe9,0x1a,0x7a,0xb8,0xf8,0x40,0xf1,0xfe,0x82,0xc2,0xbc,0xbc, +0xfc,0xac,0x7c,0x0e,0x66,0x35,0x89,0xe6,0x6e,0xb0,0x8e,0x09, +0x72,0x5f,0x29,0x5b,0x1a,0x9e,0xe7,0xce,0xd7,0x65,0x34,0x14, +0xd4,0x16,0x5f,0xd9,0x9b,0xbc,0xe7,0xf2,0x6e,0x57,0x9f,0xf5, +0x2a,0xeb,0x5d,0xf9,0x74,0x7d,0xe5,0xdf,0xad,0x6d,0xa9,0xbe, +0xb4,0x3b,0x71,0x77,0xfc,0x6e,0x7b,0x87,0x45,0xf2,0x25,0x41, +0x1c,0x7e,0x0f,0x2f,0x48,0x87,0x4f,0x97,0xa2,0x59,0xc2,0xc8, +0xaa,0x86,0x6d,0x7a,0x7b,0x49,0xb2,0xde,0x0f,0x01,0xff,0x53, +0x91,0xd1,0x9f,0xcd,0x1c,0x21,0xa4,0x93,0xb2,0x4e,0x50,0x60, +0xc7,0x37,0x76,0xef,0x61,0x23,0x2a,0x3a,0x83,0xd9,0x6d,0xe0, +0x46,0x54,0xfd,0xd1,0xe7,0x7e,0xca,0xdc,0xe8,0xdf,0xe0,0xc5, +0x19,0xde,0x9e,0x4d,0xf0,0xf4,0x37,0x36,0xef,0xe1,0x11,0x30, +0x15,0xaa,0x18,0x23,0xc1,0x03,0x12,0x5b,0xf8,0x8f,0x70,0xb4, +0x21,0x76,0x23,0xc1,0x20,0x26,0xa7,0x3a,0xaf,0x23,0xad,0xc1, +0x3e,0x95,0x3f,0xe8,0xbc,0xcb,0x3e,0xc6,0x83,0x13,0x67,0xca, +0xa1,0x9d,0x62,0x8c,0x1c,0x19,0xe4,0xa0,0x4b,0x1f,0xb8,0x40, +0x45,0x1b,0x56,0x50,0x0a,0x7a,0x93,0x11,0x97,0x3f,0x26,0x07, +0xb5,0x7b,0x1b,0xf7,0x56,0xca,0xf6,0xf3,0x59,0x7e,0x99,0xca, +0x54,0x2f,0x4e,0x7c,0x4d,0x5c,0xf9,0x5f,0xdd,0x8b,0xe9,0x13, +0x7a,0xaf,0xba,0xfd,0x74,0xde,0x2d,0xca,0x7e,0x7f,0xea,0xd0, +0x60,0x5f,0xce,0x09,0xff,0xc0,0x5b,0x04,0x2d,0xd9,0xb0,0xd3, +0xf4,0xdf,0x99,0x24,0x17,0x1e,0x46,0x24,0xfd,0x96,0xfe,0x55, +0x56,0x5c,0x13,0xef,0x7e,0xcc,0xe9,0x98,0xdd,0x71,0xca,0xd3, +0x81,0x61,0xaf,0x23,0xf7,0xcb,0x22,0x58,0xe0,0x9a,0xaf,0xe3, +0xad,0xb3,0x9c,0xf3,0x7c,0x8a,0x6a,0x72,0x34,0x85,0xe5,0xd7, +0x03,0xcb,0xf9,0xa0,0x10,0x55,0xa4,0xd7,0x9e,0xc8,0x6b,0x7b, +0x4a,0x8e,0x54,0x72,0x70,0xb8,0x59,0xec,0x66,0xce,0x15,0x9f, +0x2b,0x29,0x19,0xfb,0x54,0xe8,0xd0,0x89,0x46,0xca,0x19,0x70, +0xea,0x41,0x34,0x75,0x98,0x6a,0xde,0x12,0xa8,0xb9,0x9f,0xf3, +0x75,0xd2,0xcf,0x66,0x42,0x06,0xac,0x21,0xa2,0x8f,0xab,0xe0, +0xc3,0x18,0x7f,0x5f,0x48,0x7a,0x7c,0x7a,0xdc,0x5a,0x15,0x55, +0xf5,0xbc,0x7b,0xa3,0xa5,0xde,0x5a,0xcd,0xe5,0xd3,0xd1,0xbe, +0x05,0x83,0x9a,0x60,0x5c,0x81,0x94,0x3b,0x0e,0xc7,0xa1,0xde, +0x38,0x6c,0x3b,0x45,0x80,0x6e,0xf0,0x3e,0x59,0x27,0xee,0x92, +0x0b,0xbb,0x70,0x0d,0xce,0x60,0xd3,0x65,0xfd,0x3d,0x2c,0x32, +0xd3,0xe8,0x12,0x58,0x0e,0x13,0xf5,0x38,0xf1,0x3e,0x2b,0x2e, +0x40,0x6b,0x8a,0xbf,0x1b,0xfc,0x6a,0xbc,0xd5,0x6a,0xde,0xb7, +0xc6,0xad,0xc6,0xb5,0x94,0xba,0x92,0xe7,0x10,0x46,0xa0,0xc3, +0x19,0x2f,0xce,0x63,0xcf,0xe5,0x9f,0x2b,0x2c,0x1a,0x0b,0x71, +0xb0,0xa2,0x6d,0x02,0x5b,0xd0,0x5c,0xfc,0x7e,0x7a,0xbb,0x63, +0x3a,0x7f,0x40,0x1e,0xb5,0x36,0xdc,0x81,0xc3,0x70,0x19,0x2c, +0xc6,0x38,0x26,0xe2,0x6c,0xd4,0xd9,0x1d,0xe6,0x4b,0xe0,0xa2, +0x0b,0x76,0x80,0x19,0x73,0x78,0x42,0xd0,0xa6,0x25,0x9b,0xaa, +0x3d,0xf8,0xa7,0x9f,0xd4,0x3e,0x4c,0x83,0x77,0x38,0x71,0xa4, +0x70,0x87,0x34,0x07,0x54,0xfb,0x6b,0xbc,0x2a,0xea,0xe9,0xcf, +0x28,0x6b,0xdd,0x29,0xd3,0xaa,0xc1,0x59,0xe4,0x50,0x4b,0x4c, +0xc7,0x6e,0x8d,0xf3,0x1e,0x3e,0xc7,0x2b,0xd7,0x31,0x8d,0xae, +0xb0,0x2e,0x0a,0xa7,0xb0,0x6a,0x3f,0xbe,0xb5,0x08,0x67,0x99, +0x37,0x07,0x74,0xfe,0x56,0xf4,0x43,0x2a,0x8c,0x35,0xa3,0xf6, +0xe1,0x12,0xbe,0xc9,0xa4,0xdb,0x98,0xfc,0xc1,0x34,0xa5,0x64, +0xb7,0x58,0x18,0x8a,0xb1,0x88,0x85,0x30,0x3c,0x4d,0x70,0x21, +0xd8,0xc3,0x42,0xc6,0xf8,0x16,0x56,0x12,0x9f,0x3a,0x87,0x16, +0x97,0x2a,0xea,0x64,0x9b,0xfd,0xf4,0xee,0x1a,0x0f,0x4e,0x48, +0x9d,0x48,0x2e,0xb6,0x9f,0xef,0xbb,0x3b,0x16,0x16,0xa2,0x13, +0x63,0x4c,0x16,0x47,0xbe,0xd2,0x0a,0xf5,0xbb,0x9b,0xc8,0xbf, +0x84,0x8a,0xa6,0xc2,0x23,0xc3,0xc7,0xc4,0x7d,0xd3,0x04,0x2b, +0x5c,0xe4,0x9c,0x27,0xe7,0x7b,0x73,0xba,0xf3,0x5a,0x8a,0x38, +0x15,0x74,0x36,0xb0,0xad,0x91,0xdd,0x3b,0xfa,0x76,0x49,0xe0, +0x69,0x41,0x07,0x32,0xdd,0xae,0x77,0x39,0x7c,0x49,0x4f,0xd2, +0x4d,0x6b,0x4b,0xd1,0x7e,0xa8,0x54,0xb0,0xde,0xea,0xdd,0x4a, +0x69,0x85,0xff,0x65,0x72,0xb3,0xb2,0x45,0x93,0xdf,0xca,0x25, +0x30,0x57,0x5d,0xdb,0x3d,0xef,0xfa,0x73,0xe2,0x39,0x8c,0x20, +0xae,0x8d,0x9b,0xda,0x2c,0xd5,0x94,0xda,0xdd,0xf4,0xe9,0x53, +0x50,0x23,0x62,0x18,0x05,0xf3,0x29,0xc2,0x5f,0xc2,0x60,0xe4, +0x6e,0x5c,0xb0,0x04,0xc7,0x9a,0xd7,0x2b,0xfb,0x7e,0x2c,0x01, +0x36,0x15,0x88,0x99,0xe0,0xcd,0xd8,0xc3,0x66,0x22,0xbe,0x53, +0xcd,0x54,0x0a,0xef,0xb0,0xe2,0x44,0xf4,0x26,0xe7,0x0b,0xce, +0x17,0x9e,0x2b,0xe4,0x84,0x77,0x57,0x32,0x46,0x67,0xf1,0xf5, +0x57,0x70,0xff,0xda,0x4b,0xca,0xae,0x06,0xb2,0xa0,0x56,0x14, +0x0b,0xad,0x73,0x21,0x5a,0x78,0xe1,0xd1,0x05,0x45,0x94,0x98, +0x16,0xb1,0xc2,0x6c,0x8a,0x55,0x71,0x34,0xbe,0xa0,0x30,0xc0, +0xf4,0x4f,0xe7,0x9d,0x64,0x52,0xe6,0x82,0xbc,0x55,0x25,0xdf, +0xea,0xee,0xbe,0xdf,0xfc,0x29,0x57,0x8f,0x97,0x84,0x4a,0x3b, +0xb1,0x12,0x5b,0x64,0x42,0x29,0xeb,0x66,0xb5,0xc5,0x79,0x89, +0xf7,0x2a,0xf5,0x96,0x26,0xcb,0x3e,0x6f,0x3f,0xbe,0xd3,0xb1, +0xcf,0xe3,0xb6,0xff,0xd2,0x90,0x19,0x31,0x38,0x68,0x7f,0x9a, +0x23,0x0f,0x6f,0xe7,0x00,0x5b,0xf2,0xac,0xee,0x07,0xaf,0xdf, +0xc3,0xe1,0xf5,0x18,0xce,0xf8,0xbd,0xe1,0x0f,0xd2,0x7f,0xd1, +0x4a,0x4a,0xe7,0xdd,0xea,0x6d,0xb5,0x74,0x5d,0xc0,0x65,0x4a, +0x6f,0xa5,0x7d,0xfe,0x5a,0x70,0xca,0x77,0x6c,0xf3,0xa5,0xdb, +0x59,0x9a,0xdc,0x88,0x06,0x5e,0x11,0xb5,0x7e,0xaf,0x65,0x2c, +0x1d,0x30,0xf0,0x6f,0x95,0xba,0xaf,0xde,0x23,0x2e,0x30,0x67, +0x32,0xce,0x73,0xa5,0xd4,0x83,0xa5,0x43,0x0d,0x51,0xc2,0x70, +0xd6,0xb8,0x9c,0x72,0x18,0x55,0xdd,0xf6,0x96,0x57,0xa9,0xb2, +0x4e,0x77,0xba,0xb8,0x27,0x89,0x7b,0xfe,0xbe,0xd0,0x01,0x75, +0xab,0xe7,0xc0,0xaa,0x14,0xac,0x0c,0xe1,0x04,0xd6,0x5d,0x84, +0x85,0xe9,0x30,0xb9,0x3c,0xaa,0x95,0x47,0x8b,0x20,0x5c,0x72, +0x08,0x15,0x67,0x0e,0xac,0x08,0x99,0xe2,0x65,0xa5,0x0f,0xe2, +0x6b,0x3f,0xb8,0xfe,0x4d,0xda,0x2d,0x0e,0x7f,0x6c,0x23,0x7d, +0x81,0xed,0xbe,0x7a,0x15,0x85,0xeb,0xae,0x75,0xd6,0xfd,0xdd, +0x0f,0xa6,0xe1,0x18,0x52,0x6d,0x5b,0x6a,0x55,0x60,0xa5,0x2f, +0xe0,0x23,0x6f,0x05,0xbd,0xef,0xdb,0x29,0x81,0x03,0x27,0x72, +0x58,0xb7,0xb3,0x6f,0x87,0xd6,0x79,0x3f,0x9f,0xa7,0xc8,0x76, +0x4c,0x91,0x71,0xf8,0x3f,0x4e,0xc4,0xa5,0x7e,0x4b,0xf3,0x36, +0x29,0x44,0x72,0x23,0xa0,0xcf,0x43,0x2a,0x37,0xf8,0xd7,0x21, +0x8a,0x86,0xd0,0xd3,0x19,0x3c,0x71,0x99,0x28,0x87,0x65,0xe0, +0xd4,0x8a,0x4e,0x30,0x81,0xbd,0x79,0xf9,0xa3,0xf4,0xae,0x82, +0xb0,0x66,0xde,0x3a,0x6a,0xf9,0xde,0x15,0xb1,0x9c,0x98,0xd9, +0xdd,0x2b,0xc8,0x6d,0xba,0x85,0x52,0xcc,0x95,0xb1,0xe2,0x35, +0x31,0x88,0xdc,0x93,0xc2,0xf6,0xff,0xe6,0xa7,0x37,0x49,0x05, +0x49,0x43,0xe1,0x2c,0xc9,0xcb,0xbc,0x9a,0x95,0x93,0x55,0x15, +0xa6,0x0e,0x2c,0x0e,0xae,0xaa,0xe1,0x43,0xca,0xfd,0xcb,0x02, +0xaf,0x95,0x94,0x5e,0xab,0xc8,0xa3,0x98,0x49,0xc1,0xe4,0xfa, +0x15,0x06,0x14,0x07,0x47,0x85,0xf8,0x07,0xfb,0x47,0x55,0xf8, +0xf0,0x95,0x85,0x95,0xe5,0xc5,0xa5,0x59,0xfb,0xb2,0xf6,0x67, +0x1f,0x28,0x6d,0xe1,0x1d,0x6a,0xdd,0x9a,0xfd,0x3a,0x39,0x18, +0xd3,0x8a,0x0b,0x99,0x3d,0xea,0x03,0x35,0xb1,0xf5,0xdc,0xaf, +0x3a,0x94,0x31,0xc9,0xda,0x4b,0x2d,0xf1,0x6d,0x2e,0xf1,0xfc, +0x49,0x87,0x63,0x2e,0x47,0x94,0x1c,0x8e,0x76,0x01,0x13,0xe6, +0xa0,0xc7,0x7e,0x9f,0xdd,0xfe,0x1c,0xae,0x75,0x86,0x77,0x19, +0x1f,0x07,0x57,0x85,0x35,0xbd,0xa8,0x9f,0x01,0x48,0x50,0xaf, +0xc3,0x63,0xb7,0x7a,0xaf,0x08,0xbe,0x49,0xd9,0xb1,0xa2,0xc4, +0x9a,0x13,0x67,0x50,0xb2,0x1e,0xb9,0x49,0xb9,0xd5,0xd1,0xa3, +0xca,0x97,0xef,0x6e,0x6d,0xba,0x73,0xfd,0x63,0x4e,0xb4,0xc1, +0x06,0x82,0x4d,0x07,0x71,0xaa,0x0a,0x87,0x98,0xeb,0x7c,0xca, +0xbf,0xc9,0xf8,0x31,0x11,0x66,0x9b,0xc1,0x9b,0x98,0x36,0x93, +0x49,0xb7,0x35,0xb9,0x2b,0x65,0xda,0x9a,0x2c,0x0c,0x15,0x78, +0x80,0x85,0x4d,0xd2,0xda,0x7c,0x8d,0xae,0xcd,0xd7,0x18,0x61, +0x11,0x9a,0x92,0x24,0xaf,0x54,0xef,0x4c,0x5f,0x0e,0x2d,0x98, +0xac,0xaa,0xf4,0xda,0xd4,0x7a,0x4e,0x3c,0x8c,0xbd,0xe4,0x7c, +0xdb,0xb9,0xde,0x0f,0xc7,0xc2,0x6b,0xd4,0x49,0x0b,0xcb,0x71, +0x19,0x89,0x83,0xdd,0xf6,0x22,0x4f,0xf9,0x57,0x8a,0x93,0x09, +0x3d,0x61,0x6d,0x86,0xd4,0xf5,0x77,0x14,0x7b,0x39,0xfe,0x62, +0xd2,0x09,0x73,0x08,0xc2,0x85,0xe5,0x0d,0x18,0x0c,0x73,0x0f, +0x5d,0x3e,0x76,0x36,0xf6,0x90,0x19,0xce,0x3d,0x45,0x14,0xae, +0xeb,0xdd,0x2c,0x23,0xf2,0x5c,0xf8,0x7b,0x65,0x0f,0x74,0x2d, +0x7a,0xea,0x65,0x46,0x0a,0x48,0x30,0xba,0x43,0xe6,0x88,0x72, +0x37,0x90,0xaf,0xc7,0xd3,0xbd,0x0c,0xcc,0x10,0xee,0xe9,0xb1, +0xe1,0x89,0xdd,0x32,0x2c,0x97,0xba,0xe9,0x95,0xee,0xc2,0x15, +0x56,0x38,0xc1,0x5c,0xe7,0x7f,0x03,0x26,0xe6,0xc1,0xbc,0x04, +0x08,0x37,0x83,0x33,0xab,0x51,0xe1,0x06,0x0a,0xfb,0xb6,0x2e, +0x88,0x86,0xd1,0xbd,0x2d,0x36,0x8c,0xf8,0x07,0x44,0x13,0x0f, +0x8d,0x4c,0x23,0x2b,0xa3,0xce,0xa9,0x23,0xa0,0xc9,0xaf,0x49, +0xd5,0x9f,0xcf,0xff,0x8f,0xe9,0xda,0x44,0x7d,0xd1,0x1b,0x30, +0x83,0xac,0xc7,0x95,0xf7,0x58,0xf4,0x1c,0xfa,0x08,0x56,0xae, +0x66,0x8d,0xef,0xd8,0x92,0x81,0x59,0x6b,0x35,0xad,0xe5,0xdf, +0x44,0x0a,0x70,0x18,0x91,0xb4,0x81,0x20,0xeb,0x82,0x36,0x31, +0x1c,0xdb,0x58,0x61,0x01,0x5c,0x20,0x38,0x11,0x05,0x98,0xc8, +0x4a,0xad,0x6e,0x86,0x12,0x71,0x44,0xe7,0x3d,0xf0,0x5e,0xdd, +0xf9,0x08,0xc2,0xd7,0x77,0x09,0x23,0xb0,0xe8,0x36,0xbc,0xdf, +0x3a,0x87,0x2d,0xac,0xf7,0xca,0x96,0x67,0xab,0xae,0x98,0x45, +0xa8,0xb4,0x87,0xf5,0xfb,0x6a,0x76,0x9b,0x61,0xd8,0x0f,0x0e, +0xb3,0xb1,0xcb,0x19,0xba,0xb6,0x32,0xd8,0xfb,0x25,0xf1,0xac, +0x73,0xd5,0x38,0x4b,0x59,0xd3,0x76,0x4a,0x7b,0x1a,0x3d,0x38, +0x74,0x46,0x13,0xea,0x9d,0xbb,0x07,0xbc,0xb3,0xc7,0x80,0x77, +0x16,0xfe,0xb9,0x8b,0xac,0x45,0xef,0x07,0x2c,0xa4,0xaf,0x25, +0x0f,0x20,0x7c,0x2d,0x2b,0xee,0x74,0x23,0xf4,0xf7,0xd0,0x9b, +0x81,0xf4,0xb7,0xe8,0x8f,0xd2,0x93,0x8f,0x13,0xad,0xfe,0x72, +0xe1,0x2f,0x06,0x04,0x49,0x03,0x2e,0xdc,0x70,0x05,0x76,0x93, +0x0f,0xed,0x36,0x89,0x71,0x72,0x21,0x0e,0xe7,0xa1,0x2b,0x9b, +0x45,0xef,0xd3,0x3a,0xa6,0xbe,0x5f,0x65,0x33,0x15,0xde,0xd5, +0xb3,0xe2,0x13,0xe4,0x48,0x5b,0xa4,0x2e,0xac,0x31,0xa4,0x54, +0xcb,0x2b,0x4a,0x9d,0xaf,0xbb,0xe4,0xf6,0x97,0x87,0x1c,0x27, +0x5f,0xd9,0x2c,0xc4,0x02,0x27,0xc3,0xa0,0x76,0xd6,0xf8,0x49, +0xb9,0xa4,0xb0,0xf3,0xd6,0xf5,0xfb,0x56,0xad,0x9d,0x64,0x43, +0x04,0x0b,0x8c,0x27,0x47,0xca,0xf7,0x56,0xee,0x2d,0x72,0x8e, +0xe1,0x73,0xc2,0x33,0x83,0x92,0x83,0x38,0x61,0x9e,0x35,0x99, +0xd6,0x05,0x73,0x71,0x33,0x9b,0x5d,0x99,0xa1,0x4e,0x55,0xcb, +0x32,0xf8,0x43,0x9e,0x7b,0xbd,0xa2,0x55,0x9c,0x38,0x1e,0xe7, +0x76,0xfd,0xc2,0xe0,0x7d,0x3d,0xe9,0xf4,0xeb,0x72,0x6f,0x56, +0xaa,0x1b,0x78,0x8f,0xfa,0xed,0x52,0x10,0xc5,0x20,0xa0,0x96, +0xb4,0x61,0xcb,0xef,0x36,0x13,0xa4,0xcd,0x0e,0x56,0xed,0x66, +0x71,0xbc,0xdb,0x42,0x9c,0xb3,0xd4,0xbc,0xdc,0x19,0x46,0xdc, +0xba,0xf1,0xa0,0xf0,0x99,0x19,0xdc,0x61,0xce,0x78,0x9e,0x72, +0x39,0x11,0xc9,0x85,0x1e,0x8f,0x3d,0xe6,0x3e,0x0e,0x67,0xf7, +0xd3,0x9c,0x19,0xcc,0x9d,0xa2,0xdc,0x9e,0x34,0x8b,0xcb,0xb5, +0x17,0x5b,0xcf,0xff,0xc2,0x89,0x26,0xcc,0x85,0xab,0xe7,0xf2, +0xf2,0xc6,0xe6,0xb0,0xe2,0x12,0xd1,0x44,0x0a,0x09,0x35,0x49, +0x21,0x21,0xa7,0xff,0x50,0xdc,0x17,0x1b,0xdc,0x88,0xa7,0x46, +0x5e,0xef,0x22,0x0d,0x7e,0x9b,0xbf,0xd6,0xb7,0x81,0xfa,0x1e, +0x73,0xfc,0x9d,0xc0,0x01,0x78,0xd4,0x09,0xab,0x8c,0xc3,0x71, +0x55,0x27,0x3e,0x82,0xa8,0x19,0xd8,0x2a,0x37,0xac,0xd6,0xe3, +0x87,0x0c,0xec,0x13,0x6c,0x89,0x78,0xe9,0x47,0xe1,0x12,0x23, +0x2a,0xf0,0x04,0xf9,0x4e,0xb0,0x98,0xcb,0x8a,0x35,0xb6,0xc4, +0xad,0x79,0x4b,0xc7,0x76,0x29,0x88,0xdc,0xeb,0xdd,0xeb,0xa2, +0x77,0xe6,0x84,0x4f,0x3b,0xc8,0x34,0xd1,0xe2,0x17,0x16,0xbb, +0xc5,0x3c,0xf2,0x57,0x25,0xc3,0xbf,0x2b,0x5d,0xe1,0xa0,0x82, +0x3c,0xad,0xfd,0xe2,0x46,0xf7,0x4d,0xef,0x2a,0xde,0xd5,0xe9, +0x3d,0xab,0x65,0x81,0x9c,0xb0,0x99,0xb2,0xb1,0x3b,0xde,0x3f, +0x59,0x76,0x3b,0xd3,0x11,0xb6,0x6b,0x9a,0x7e,0x67,0x8b,0x9a, +0x1a,0x9c,0x89,0x42,0x3e,0xa9,0x4f,0x4f,0xaf,0xb6,0x78,0xc0, +0x3a,0xa5,0x99,0xcc,0x43,0x25,0xeb,0x7b,0x24,0xb1,0xde,0xa2, +0x8e,0xfd,0x2e,0x0d,0x86,0xe5,0x7f,0x5a,0x1a,0xad,0xe3,0x37, +0x86,0x4d,0x88,0x59,0x78,0x90,0xfb,0xc5,0x16,0x83,0xd9,0xad, +0x05,0x3b,0x3e,0x34,0x87,0xbb,0xc0,0x12,0x31,0x4b,0x98,0x2c, +0x64,0xa1,0x27,0x9b,0x5e,0x9e,0x5c,0x71,0x99,0x7a,0x6f,0x55, +0x9b,0x18,0x2c,0x03,0x7f,0xe6,0x68,0xc8,0x91,0xa0,0xfd,0x01, +0xdc,0x2a,0x9c,0x43,0x9e,0x83,0x7a,0x2a,0x8b,0xa2,0xb8,0x82, +0x32,0x15,0x55,0x4f,0x68,0x9f,0xae,0xb6,0xa5,0xbb,0xa2,0xc3, +0xbb,0x94,0x0f,0x96,0xf9,0xb8,0xa9,0x7c,0xb9,0x9d,0x6d,0x47, +0x5a,0x6b,0xc6,0xea,0x9c,0xc4,0x58,0x4a,0x6c,0x33,0xe4,0x26, +0x3f,0x31,0xd5,0x69,0x59,0x75,0x16,0x50,0x91,0xc8,0x26,0x6c, +0xac,0x9b,0xf8,0x6c,0x21,0x27,0x8c,0x17,0x16,0x93,0xc9,0xa8, +0x7e,0xc1,0x8a,0xa9,0x2e,0xd4,0x57,0x0c,0x61,0x8f,0xcc,0xf1, +0x41,0x66,0xe3,0x8a,0x6a,0x1f,0xfe,0xe3,0xef,0x1b,0xe1,0xcd, +0x64,0x8a,0xe8,0x2b,0x59,0xf8,0x7d,0x0a,0x01,0x35,0x0e,0x41, +0x35,0x33,0x8b,0xce,0x99,0xfb,0xea,0xae,0xc6,0x26,0x6a,0xe5, +0x79,0x2f,0x85,0x9d,0x6a,0x4b,0x08,0x07,0x1f,0x3c,0x25,0xfa, +0xe0,0x3b,0xce,0x2d,0x6e,0x15,0x75,0xbc,0x5b,0xc3,0xd6,0x46, +0x59,0x39,0xbd,0xf4,0x5b,0x2f,0x08,0xc6,0xfc,0x02,0xbb,0xdb, +0x70,0xf7,0xcf,0x10,0x29,0x4c,0xc4,0xf1,0x4c,0xea,0xd5,0xb4, +0xc2,0xe4,0xeb,0xf2,0x64,0xfe,0x68,0xe8,0xbe,0xd0,0x7d,0x51, +0xdc,0x7a,0xe3,0x47,0xed,0x30,0x0a,0x62,0x18,0xf1,0x90,0x61, +0x17,0x69,0x0d,0xae,0x0f,0xaa,0xf7,0xa3,0x73,0xd8,0x4b,0xad, +0x50,0xbb,0x16,0x73,0x06,0x8d,0xf1,0x09,0xf1,0x66,0x76,0x1c, +0xbb,0x54,0x6c,0x01,0xd5,0x51,0x6c,0x66,0x37,0x25,0xc5,0xed, +0x68,0xc2,0x64,0x3d,0x4d,0x7a,0x7e,0x1e,0x38,0xee,0x41,0x3b, +0xb6,0xe1,0xff,0x28,0x9c,0x60,0x2b,0xe3,0x89,0xf3,0x97,0xe1, +0x08,0xca,0xc3,0xf9,0x2a,0x69,0x23,0x94,0x17,0x8f,0x7f,0xd3, +0xc1,0xeb,0x1c,0xee,0x66,0xb7,0x5d,0xdd,0xd5,0x6e,0xae,0x61, +0x2a,0xd2,0x33,0xe8,0x85,0xbf,0xce,0xaa,0x32,0x4d,0x30,0x44, +0x78,0x46,0x60,0x18,0x73,0x16,0x5f,0x3b,0x3e,0x7d,0xef,0x42, +0x6e,0x01,0x83,0x8e,0x90,0x27,0x29,0x8c,0x97,0xc1,0x70,0x76, +0x3c,0xc6,0x12,0x49,0xf0,0x65,0x5b,0x29,0xa5,0xce,0x02,0xba, +0x3d,0x74,0x14,0x6a,0x74,0x83,0x09,0x41,0x53,0xfa,0xb9,0x29, +0x8b,0x97,0xc4,0x1f,0x5e,0x55,0x5e,0xfe,0x26,0x7f,0xd5,0x26, +0x86,0xdb,0x2a,0x55,0x29,0xe4,0x18,0x3e,0x21,0x8e,0xdb,0x30, +0xe2,0x26,0x7d,0x58,0xe2,0x0a,0x4b,0x5c,0x3a,0x74,0x10,0x21, +0x3d,0xac,0x6f,0xc1,0xf5,0x8c,0x48,0xc1,0xb3,0x52,0xeb,0xd8, +0xe8,0x24,0x65,0x33,0x3a,0x7d,0x9b,0xbd,0x9a,0xdd,0x39,0xc3, +0x5c,0xb1,0x87,0x68,0xf1,0xd8,0x03,0x38,0xd6,0xff,0x98,0xda, +0x80,0xe7,0xd8,0xd4,0xac,0xb4,0xc2,0x94,0x7c,0x8a,0xf9,0x0e, +0x87,0xef,0x8b,0xd8,0x1d,0xc9,0x51,0x18,0x95,0x9a,0x7b,0x25, +0x37,0x39,0xd7,0x3d,0x93,0x87,0x15,0xb0,0x16,0xf3,0x71,0xed, +0x0b,0x26,0x78,0xbd,0xfd,0x9a,0xd5,0x36,0xe5,0x1e,0x7c,0x41, +0x4e,0x6e,0x6e,0xce,0x55,0x0e,0xff,0xec,0xaa,0x15,0xca,0x9b, +0x31,0xff,0x13,0xd6,0x5f,0xd0,0x12,0x5c,0x0b,0xc5,0x40,0x0d, +0xcd,0x28,0x2f,0xb2,0x14,0x97,0x7d,0xc6,0xc2,0xfd,0xa5,0xe4, +0x33,0x58,0xbd,0x94,0x15,0xc1,0x86,0x78,0x34,0x5a,0xb5,0xdb, +0x49,0xa2,0xca,0x4e,0x9f,0x2e,0xd7,0x16,0x8a,0x01,0x55,0x38, +0x8d,0x1a,0x26,0x7f,0x7a,0x7c,0x1a,0x3e,0xfe,0xbf,0xf9,0x13, +0x8a,0xd7,0x40,0x84,0x95,0x03,0x87,0x78,0x0c,0x5d,0x81,0xfe, +0x9f,0x50,0xc3,0x59,0x68,0xf0,0x22,0xee,0xb5,0x0e,0xb5,0x8e, +0x03,0x65,0xef,0x2d,0x7e,0xcd,0x5e,0x5c,0xd9,0xb7,0xc4,0xb0, +0x56,0x67,0x5c,0xcb,0xd4,0x8f,0x27,0xb8,0x89,0xc5,0xa2,0x70, +0x5c,0xb5,0x0a,0x87,0x9b,0x37,0xf9,0x99,0x7c,0x01,0xe3,0xae, +0xc3,0x5a,0x68,0x1a,0x2b,0x68,0x61,0x23,0x23,0x6a,0x71,0x14, +0x79,0x20,0x1c,0xa1,0x3f,0xf9,0x27,0x0e,0xa3,0x94,0x73,0xcb, +0x40,0x29,0x7c,0x9f,0x7f,0x9f,0xb2,0x9d,0x0e,0xcc,0xbc,0xdb, +0x44,0xdc,0x82,0x0b,0x84,0x2d,0x8c,0x23,0x0c,0x26,0xd6,0xf8, +0x51,0x1f,0x8b,0x37,0x28,0x08,0x0c,0xfe,0xbf,0xf5,0xf1,0x90, +0x88,0x1a,0x12,0x76,0x2c,0xa9,0xc0,0xe2,0xae,0xe0,0x01,0x96, +0xe2,0x65,0x4c,0x62,0xad,0x8b,0x77,0xf5,0x99,0x0b,0xe3,0x98, +0x9a,0xac,0xf4,0x3a,0x8b,0x6e,0xa9,0xeb,0xec,0x0a,0x16,0x33, +0x60,0x1e,0xc1,0x35,0x9f,0xc3,0x1a,0xa6,0x6d,0x09,0xf9,0x1c, +0x36,0x2c,0x61,0x4d,0x0d,0x5d,0x20,0x12,0xa8,0x02,0xb3,0x0e, +0x3c,0xc5,0x26,0xd5,0x26,0x68,0xe2,0xeb,0xe4,0x89,0xfc,0x21, +0x1c,0x17,0x82,0x63,0x1c,0xe7,0xd5,0xfb,0xf2,0x65,0x5d,0x05, +0x1f,0x64,0xdf,0xe3,0x6e,0x60,0x15,0xae,0x74,0x80,0x95,0xe2, +0xeb,0x5d,0xc2,0xeb,0x30,0xb5,0x93,0x31,0x6e,0x83,0x5f,0x29, +0x3f,0x72,0xaa,0x77,0x92,0x72,0x08,0x9d,0xfe,0x4d,0x3e,0xcd, +0x2a,0xae,0x1d,0x2c,0x88,0x13,0xe4,0xb4,0xb3,0x74,0x56,0x4e, +0x20,0x8e,0xf0,0x59,0x07,0x4b,0xaf,0x73,0x88,0x54,0x61,0xec, +0xd6,0xe2,0x5e,0x55,0xc7,0x2b,0xb5,0xdb,0x5a,0xa9,0xb1,0x84, +0x98,0x8d,0xf4,0xb8,0x14,0x7a,0x9c,0xd3,0xd0,0x36,0x4c,0x91, +0xb1,0xe8,0x2e,0x4e,0x94,0x0c,0x5d,0xa3,0x64,0xe8,0xe4,0x92, +0xa1,0x33,0x19,0xa0,0x14,0xd0,0xa6,0x24,0x7a,0xf0,0x81,0x7c, +0x4c,0xc5,0x8f,0x59,0xf0,0x95,0xa6,0xe9,0x22,0x9c,0x0d,0x8b, +0xe8,0xa9,0x4f,0x31,0x9c,0x22,0x9f,0xd9,0x2c,0x45,0xb5,0xdc, +0x30,0x56,0xcf,0x1a,0x67,0x07,0x10,0x45,0x8d,0x7d,0xad,0x5d, +0x49,0xa8,0x54,0xa4,0xa3,0xf7,0xd7,0x79,0x73,0x06,0x33,0x71, +0x0a,0x09,0x08,0x70,0xf2,0xda,0x1e,0x1c,0x51,0xb1,0x4b,0x7d, +0x90,0xc2,0x1b,0x1b,0x50,0x32,0xb9,0x07,0xf2,0x0f,0x15,0x1c, +0x2e,0x6a,0xe3,0x97,0x55,0x6e,0xed,0xf2,0xfa,0x80,0xc3,0x3c, +0x67,0x88,0x65,0xb2,0x23,0xf2,0x23,0xae,0x47,0x71,0xe2,0xbb, +0x4c,0xf1,0xb5,0xfc,0xe2,0xcc,0x62,0xcf,0x72,0xde,0xdf,0xde, +0xd6,0x61,0x45,0x60,0x89,0x33,0x9f,0x77,0x25,0x37,0x35,0x27, +0x8d,0x43,0x05,0xac,0x63,0xb7,0xcb,0xde,0xf3,0x40,0xd3,0x88, +0x6c,0x8a,0xd9,0xd3,0xda,0xb2,0x1a,0x73,0x29,0xbe,0x60,0x3d, +0x4e,0x28,0x4f,0xaa,0xe2,0x92,0x9d,0x78,0x49,0x73,0x3b,0x2e, +0x1f,0x86,0xe6,0x1f,0xd7,0xf3,0xb2,0xc3,0xdb,0x8f,0x58,0x1d, +0xe1,0x60,0x09,0x5b,0x5b,0x50,0x51,0x5c,0x5c,0xa6,0xc1,0x51, +0xcf,0x71,0x24,0xac,0x5a,0x5c,0xd6,0xc6,0xaf,0xab,0xb4,0xd7, +0x28,0xb5,0xb7,0xaa,0xf4,0xb5,0x35,0x55,0x9c,0x71,0x23,0xc4, +0x12,0xe7,0xfa,0x4d,0xcd,0x56,0xe5,0x21,0x52,0x09,0xe2,0x0d, +0x55,0x27,0x05,0x49,0x8f,0xd4,0x04,0xcd,0xc5,0xe1,0x60,0xce, +0xe2,0x57,0x62,0x66,0x7f,0x79,0xf9,0xd8,0xb2,0x97,0x03,0xc5, +0xb0,0xae,0xc8,0x49,0x51,0x17,0xc3,0x67,0x86,0x7d,0x24,0x3c, +0xd4,0x27,0xdc,0x39,0x3a,0xba,0x6c,0x67,0x5e,0x54,0x9e,0xe7, +0x4e,0xbe,0x60,0x47,0xde,0x8e,0xdc,0x88,0x9d,0xc7,0x76,0x1c, +0x8f,0x3a,0xbe,0xa3,0x6c,0x57,0x7e,0x74,0xae,0x6a,0x0f,0x9f, +0xbb,0x33,0x27,0x26,0x27,0xd2,0xeb,0x98,0xf2,0x84,0x6b,0x5c, +0xa6,0x92,0x87,0x13,0xb9,0xb0,0xee,0x93,0x87,0x60,0xc2,0xd5, +0x61,0x32,0x9b,0x91,0x92,0x96,0x92,0x92,0xe6,0x92,0xc1,0xcb, +0x5c,0x96,0xfb,0xe2,0x88,0xc8,0x7c,0x15,0xdf,0x95,0xd6,0x9e, +0xdd,0x94,0xcf,0x89,0x11,0xa2,0x3d,0xe9,0xbe,0x59,0x7c,0xf3, +0xfc,0x97,0xdc,0x6f,0x18,0xd9,0x21,0x54,0x3a,0xe2,0x24,0x9c, +0x03,0xa3,0x1d,0x71,0x0b,0x04,0xac,0xc3,0x78,0x97,0x6f,0x98, +0xb3,0xb6,0x7b,0x6c,0x6c,0xed,0x39,0xc3,0xeb,0xc1,0xe4,0x05, +0xa3,0xcd,0xca,0xd0,0x5a,0xfc,0xf2,0x7d,0xcb,0x9c,0x2f,0xec, +0x17,0x8b,0x53,0x5d,0x85,0xa9,0xc8,0xe0,0x48,0x36,0xf2,0x32, +0x09,0x2c,0xf5,0xbf,0xe6,0x91,0x17,0x14,0xcc,0xd7,0x45,0x56, +0xec,0x50,0x07,0x72,0x7d,0xa8,0x22,0x0f,0xa5,0x6d,0x18,0x9a, +0xbc,0xaa,0x78,0x3b,0xc5,0x5a,0xc5,0x92,0x00,0xce,0xb1,0x2e, +0xa4,0xb9,0x6d,0x6c,0xb9,0x0d,0x3e,0xc7,0x77,0xd8,0x4c,0xb9, +0x09,0x30,0x8c,0x36,0x5b,0x92,0xee,0x29,0x13,0xd9,0xbc,0xf1, +0x30,0x71,0x3d,0xec,0xb0,0xcc,0xa7,0xe8,0x7b,0x50,0xc9,0xcc, +0xaa,0x0d,0x75,0x1c,0x66,0x02,0x25,0x6e,0x5f,0xb8,0x40,0x36, +0xa3,0x5c,0x39,0x73,0x3b,0xce,0x56,0x5e,0xa3,0xe4,0x78,0x53, +0x27,0x8c,0xf8,0x4e,0xfd,0xa2,0xbf,0xf7,0xe7,0x6b,0x44,0x92, +0x06,0x47,0x64,0xc2,0xf4,0xac,0xdc,0xdd,0xb9,0xbb,0x73,0x76, +0x57,0x96,0xf1,0xb6,0x9d,0x5b,0x3a,0x36,0x34,0x07,0x86,0xf2, +0x85,0xfb,0xae,0xed,0x2e,0xdc,0xbd,0x30,0x76,0x7c,0xec,0x84, +0x13,0x95,0xda,0xca,0xd6,0xfc,0x1a,0x45,0x3e,0xbf,0xc3,0x43, +0x69,0xe9,0xee,0xe8,0x7b,0xc6,0xff,0x4c,0xc0,0x59,0x2e,0xab, +0xe8,0xff,0xe6,0x33,0x09,0x86,0x93,0x4f,0x13,0xee,0x27,0xdd, +0xbd,0x92,0xbc,0x3f,0x69,0xff,0xa5,0x03,0x9a,0x7c,0x3e,0xa2, +0xd5,0xfb,0x66,0xa0,0xd6,0x7f,0x27,0x9f,0xbe,0x2b,0x23,0x3a, +0x23,0x4a,0x79,0xd2,0xfd,0xa4,0xeb,0xa9,0x82,0xca,0xfc,0xc6, +0xec,0x46,0x69,0xcb,0x18,0x45,0xb8,0x43,0xb0,0x8a,0x3b,0x7b, +0xe4,0xf0,0xd9,0xc3,0xe3,0xce,0x9d,0x30,0xf1,0x61,0x62,0x34, +0x91,0x9a,0x1d,0xa5,0xbe,0xbb,0xf9,0xb4,0x5d,0xe9,0x31,0x69, +0x3b,0x7c,0x4e,0x7a,0xc5,0x29,0x4f,0x5d,0x2d,0xcb,0xad,0xc9, +0xae,0x71,0xcb,0xe4,0xf7,0x7a,0x46,0xb8,0x84,0x7b,0xed,0x3f, +0x7b,0xe0,0xcc,0xfe,0xb3,0x09,0xee,0xfc,0x37,0x97,0xbe,0x4d, +0x7a,0x98,0x9a,0x10,0x1b,0x1f,0x1b,0x7f,0x4c,0xe5,0xbe,0x28, +0x10,0xa7,0x84,0xe5,0x28,0x78,0x58,0xaf,0x86,0xd7,0xdb,0xd2, +0xbf,0xa0,0xbc,0x2f,0x7d,0x31,0x8c,0xb5,0x81,0xcd,0x5e,0x79, +0x94,0x2d,0xce,0x28,0x9d,0x52,0xa3,0xd4,0x71,0xe2,0xc4,0x6c, +0x7a,0xe2,0x9b,0x9a,0x2c,0xa5,0xa6,0x1f,0xb7,0x02,0x6e,0xf6, +0xcf,0xa6,0x15,0x5b,0xc8,0x72,0x07,0x1c,0xec,0x8d,0xc3,0x77, +0x65,0x79,0x50,0xff,0x70,0x15,0xd8,0xda,0x1f,0x6e,0x72,0xe2, +0x63,0x71,0x38,0x79,0x95,0x50,0x1d,0xd0,0x64,0xf6,0x67,0x59, +0x25,0x45,0x64,0x0b,0x99,0xb4,0x14,0xcd,0x9c,0x70,0x75,0x68, +0x8e,0x3b,0x0f,0x73,0xaf,0xc1,0xb4,0x0e,0x78,0xed,0x47,0x4e, +0x5c,0x8c,0x77,0x09,0xec,0xab,0x84,0xf9,0xf7,0x60,0x06,0xbc, +0xe9,0x5f,0xc3,0xe3,0x38,0x34,0xc1,0xe9,0xeb,0xf1,0x70,0x00, +0x9d,0x91,0x35,0x74,0xd4,0x7f,0x62,0x4e,0x6e,0xdf,0xbd,0x2a, +0x6c,0x4b,0xd3,0x2e,0xbe,0xfc,0xb3,0xac,0x4f,0x2e,0x3f,0xa0, +0xd3,0x2c,0x96,0x4d,0x68,0xbe,0xa0,0x3b,0xdf,0x22,0x8f,0xe7, +0xe3,0x70,0xc6,0x4e,0x5c,0xe0,0x3b,0x43,0x1b,0xcc,0x17,0xf4, +0x64,0x7f,0x92,0xf2,0x15,0x57,0x46,0xd1,0x37,0x5e,0x74,0x45, +0x9e,0xce,0xae,0x89,0x12,0x60,0x32,0x85,0x37,0x5a,0x60,0x78, +0x12,0x2c,0x31,0x4b,0x60,0x12,0x70,0xae,0x1a,0x5f,0x87,0xa1, +0xf8,0x56,0x79,0x27,0x8f,0x6f,0xc3,0xac,0x60,0x78,0x03,0xce, +0x8d,0xc5,0x26,0xea,0xa7,0x8e,0x5d,0x3e,0x91,0x70,0xf4,0xe8, +0xa1,0xc3,0xfc,0xa9,0x3b,0x30,0x16,0x32,0x70,0xec,0x77,0xb0, +0xa8,0x0d,0x17,0xfd,0xe0,0x32,0x1b,0x97,0xec,0x61,0xbc,0xaa, +0x5d,0x6b,0x15,0x25,0xc1,0x2a,0x0a,0x4e,0xb5,0x7e,0x0d,0x9e, +0x45,0x15,0xfc,0x5e,0x58,0x32,0x17,0xcd,0xa8,0x21,0x34,0x61, +0x77,0xae,0x96,0xcd,0x9a,0x31,0xb7,0x4c,0xce,0x3f,0xff,0xa9, +0xf1,0xc7,0x84,0xcf,0xb9,0x44,0x44,0x1d,0x34,0x33,0x09,0xe7, +0xa5,0x48,0xf5,0xaf,0x68,0x56,0x55,0x67,0x22,0x0e,0x81,0x47, +0x44,0x52,0xfe,0x39,0x56,0x05,0xa9,0x78,0xbd,0x5f,0xa7,0x1b, +0x05,0x59,0xd4,0x06,0x99,0x52,0x1b,0xb4,0x82,0x9a,0x20,0x08, +0xc1,0x45,0x84,0xbe,0xf8,0x84,0x41,0xa0,0x27,0x33,0x50,0xd9, +0x6a,0x3d,0xad,0xc9,0x9f,0xbf,0xf5,0x2a,0xed,0x4a,0xa9,0xc1, +0x74,0xa1,0x84,0xd0,0x9b,0xde,0xbf,0x79,0xc8,0x10,0x60,0x5b, +0x91,0x7d,0x21,0x9b,0xbc,0xf2,0x77,0xf9,0xf8,0xa9,0x7f,0x38, +0x4f,0x58,0x9f,0xce,0x7e,0x29,0x5f,0xc4,0x1e,0x98,0xe3,0xfc, +0x35,0x7b,0x78,0x43,0xa0,0xcb,0x36,0xef,0x4a,0x0f,0xfe,0x7e, +0x8b,0xe6,0x76,0xca,0xf7,0xdc,0xc7,0xb8,0x19,0xfc,0x60,0xf3, +0x63,0x1c,0xca,0xd8,0xe6,0xec,0x69,0x31,0x6f,0xa2,0xd8,0x25, +0x5d,0x6d,0x71,0x87,0x75,0x4b,0x35,0x31,0x4e,0xfe,0x96,0xa8, +0x6a,0x9c,0x35,0xf2,0xd2,0x60,0x29,0x82,0xd5,0xaf,0x9f,0x84, +0x4f,0x71,0x38,0x81,0x31,0xcf,0x71,0x0c,0x2b,0x2e,0x5e,0xf4, +0xef,0x7c,0xa1,0x5f,0x09,0x0a,0x13,0x90,0x5a,0xff,0xca,0x2e, +0x48,0xa2,0x3c,0xe9,0x66,0x37,0xdc,0x04,0x5b,0x74,0xa0,0xa8, +0x28,0x45,0x6e,0xf2,0x8c,0xae,0x5b,0x09,0x4c,0xfb,0x74,0x82, +0x95,0x71,0x0a,0x5a,0xb1,0x50,0x9f,0x4b,0xf0,0xf0,0xef,0x70, +0x98,0xe9,0x9e,0x40,0x7e,0x87,0xb3,0x13,0x58,0x63,0x21,0xbe, +0x24,0x7f,0x31,0x0a,0x27,0xa9,0x71,0xc1,0x50,0xaf,0xfe,0xac, +0x9f,0x29,0x5c,0x96,0x92,0xc9,0xb5,0xae,0x75,0x2e,0x65,0x21, +0x5e,0x7c,0x7f,0xdd,0x97,0x27,0x07,0x7b,0x3e,0x21,0xb8,0x0e, +0xd7,0xb0,0xa7,0x67,0x1d,0x9f,0x74,0x64,0x2e,0x07,0x8e,0xcc, +0x99,0x95,0x71,0x8b,0x62,0xed,0x38,0xcf,0x13,0x47,0x0e,0x7a, +0x8f,0xa3,0xd7,0x94,0x6a,0x6b,0xf2,0x3b,0x73,0xa7,0xe0,0xda, +0xfd,0x64,0x8b,0x94,0x4f,0xe3,0x7f,0x3e,0x07,0xc3,0x39,0xb4, +0x66,0x12,0xf4,0xf1,0xf7,0x2f,0xe8,0x39,0xd8,0x00,0xe5,0x78, +0x42,0xc6,0x08,0x0f,0x8c,0x23,0x48,0x63,0x65,0x9d,0xa6,0xaa, +0xd1,0xaf,0x92,0x0f,0x55,0xf9,0xfb,0xa9,0x82,0x77,0xe9,0x0e, +0xb4,0x1f,0xef,0xe6,0xc0,0x5e,0x87,0x9d,0xdf,0x41,0x66,0x33, +0x66,0x7e,0xf9,0xea,0xb1,0xb6,0x05,0x7f,0x16,0x97,0x58,0xb9, +0xbc,0x8f,0x5f,0x31,0x51,0x27,0xa2,0x4e,0x46,0x9d,0xba,0x2c, +0xe3,0xbf,0xce,0x7c,0x7a,0xed,0x6e,0xc9,0x31,0x1d,0x1f,0x7c, +0xd0,0xef,0xa0,0x0f,0x35,0xc7,0x77,0xfb,0xd8,0xab,0xb8,0xfc, +0x0e,0x4e,0x00,0x6e,0x7c,0x75,0x03,0xef,0x52,0xef,0xd3,0x12, +0xd6,0xc6,0x19,0x5b,0x84,0x2d,0x44,0xef,0xd7,0xee,0xd6,0x20, +0xf9,0xa9,0xfe,0xcc,0x72,0x15,0x97,0xdb,0xdf,0x09,0x63,0x20, +0xb3,0xec,0x9c,0xf9,0x6f,0x99,0x65,0xf8,0xc4,0xf0,0x29,0x89, +0xc1,0x4d,0x2a,0x5c,0xbc,0x0d,0x87,0x54,0x3a,0xf2,0x39,0xe5, +0x19,0xd5,0x69,0xb5,0x9c,0x98,0xd7,0x6e,0x58,0xc9,0x66,0x7d, +0x98,0xfa,0x30,0xf9,0x63,0x0e,0x82,0xd1,0x8e,0x14,0x7a,0x95, +0xfb,0xd4,0x04,0x38,0x7b,0x6d,0x0b,0x5e,0x1b,0x7d,0xd5,0x95, +0xff,0xf4,0xda,0x87,0xea,0x6e,0x5d,0x87,0xc7,0x6d,0xbf,0xfb, +0xe1,0xb9,0x3a,0x7e,0x4b,0x81,0x6d,0xa9,0xbc,0xa6,0xb1,0xb9, +0xaa,0xab,0xe0,0x16,0xd7,0xad,0xc3,0x0a,0xe6,0x4a,0x5e,0x72, +0xfe,0xa5,0x3c,0x97,0x2b,0x7c,0xc4,0x72,0xf9,0x8a,0xad,0xb2, +0x12,0x15,0x9f,0x97,0x9d,0x9b,0x97,0x93,0xcf,0xe1,0xf7,0xef, +0x13,0x5f,0x8d,0x7b,0x5d,0x7f,0xae,0xb4,0xc5,0xbf,0xc6,0x57, +0x43,0x87,0x39,0xde,0xb8,0x82,0x18,0x3c,0x64,0x46,0x0f,0x56, +0x58,0x44,0x6f,0xc3,0x2e,0xe7,0x30,0x77,0x5f,0x1f,0x2f,0x75, +0x60,0x5d,0x78,0xe3,0xa5,0x64,0x5e,0x94,0x42,0xdc,0xfe,0x1a, +0x99,0xce,0xad,0x2a,0xd0,0x9b,0xd7,0xfa,0xe9,0x14,0x35,0x2a, +0xce,0x90,0x8d,0x6b,0x09,0xe5,0xeb,0xcf,0x9c,0x66,0xa2,0xa5, +0x0b,0xcc,0x67,0x77,0xae,0x94,0x6f,0x98,0xb4,0xaa,0xc8,0x8d, +0x7f,0xf9,0xb1,0xee,0xa3,0x2b,0x5f,0x73,0x09,0xa8,0x6e,0x03, +0x75,0x22,0x93,0xb1,0x50,0xbb,0xe5,0xe5,0xd2,0xd2,0x26,0x7e, +0xd2,0x67,0x2e,0x1f,0x46,0x3d,0xe4,0x8c,0x96,0x78,0x9b,0xf4, +0xc1,0x90,0x5a,0x78,0x27,0xe7,0x37,0x79,0x06,0x1f,0x8d,0x26, +0x81,0x38,0xdc,0x5e,0x92,0x96,0x98,0x0b,0x67,0xc9,0x3d,0xc8, +0x6a,0xc2,0xac,0x0f,0xa0,0xa9,0x09,0xed,0xd9,0x9c,0x9c,0xcc, +0xdc,0xcc,0x42,0x45,0x01,0xbf,0x3b,0x28,0x26,0x2c,0x22,0x8c, +0x13,0x47,0xbb,0x41,0xf9,0x16,0x8c,0x77,0x83,0xf8,0xf5,0xa8, +0x51,0x18,0x26,0x35,0x33,0xe2,0x52,0xc8,0x21,0x7b,0xae,0xed, +0xb9,0xba,0x2f,0xd3,0x39,0x9a,0xcf,0xde,0x7b,0x75,0x67,0x5a, +0x0c,0x87,0x76,0xbb,0x88,0xa2,0xda,0x5e,0x6d,0x5f,0x1c,0xea, +0xca,0xf7,0x84,0xea,0xa5,0x2e,0xc6,0x94,0xde,0x3a,0x6b,0x36, +0x37,0x58,0x49,0x5a,0xf6,0x9b,0x81,0x37,0xbd,0x24,0x33,0x7c, +0xd3,0x9e,0xac,0x29,0xc2,0x61,0x79,0x38,0x28,0xf5,0xb0,0x3b, +0xff,0xf2,0x10,0x0c,0xdb,0xf5,0x30,0x9c,0x3b,0x88,0xdb,0x49, +0x4f,0xed,0xcd,0xae,0xfa,0x56,0xbf,0x0a,0xde,0xd3,0x79,0xd3, +0x36,0x59,0x80,0x67,0xe3,0x9e,0x96,0x73,0xed,0xd4,0xc3,0xbb, +0x41,0x00,0x96,0xe0,0x44,0x26,0xcd,0xd5,0x04,0x4c,0x99,0xe6, +0xf4,0xd4,0x16,0x0b,0x70,0xa4,0x2c,0x60,0xd5,0xf7,0xab,0x61, +0xcd,0xe6,0xfc,0x26,0x7e,0x71,0x85,0x55,0xa5,0x9b,0x9a,0x13, +0xd5,0xb0,0xe6,0x55,0x5f,0xd2,0xb5,0x03,0x7d,0x49,0x7b,0xc1, +0xac,0x92,0x82,0xac,0x94,0x2d,0x04,0xe3,0xdc,0x61,0x1b,0xb3, +0xd3,0x76,0xb5,0xf3,0xc4,0xc0,0xab,0xd4,0x88,0x8e,0xd3,0x7e, +0x76,0x2f,0xff,0x0b,0x7a,0xfd,0x84,0x02,0x5f,0x9b,0x35,0xa8, +0x97,0x19,0x96,0xb7,0xe1,0x2d,0x46,0x6c,0xbb,0x2a,0x41,0xf9, +0x80,0x7a,0xdf,0x8a,0x46,0x9e,0x1a,0x21,0xb5,0x6b,0x09,0x07, +0x4f,0xc5,0xd7,0x48,0x57,0x6e,0xf7,0xf5,0xb6,0x32,0x4d,0x74, +0x6d,0x64,0x75,0x64,0x59,0x0d,0x1f,0x9c,0xef,0x9f,0xef,0x9f, +0xab,0xbe,0x56,0x5e,0x54,0x58,0xe8,0x5f,0xce,0x87,0x86,0x06, +0x84,0x7b,0x47,0xba,0x16,0x2b,0x0a,0x95,0xd2,0x7e,0x5c,0xb5, +0x7b,0x34,0x3b,0x6b,0x63,0x3c,0xa2,0x15,0x31,0xf2,0x3d,0x9c, +0xe0,0x23,0x2d,0xee,0x3c,0x3b,0x0c,0x17,0x2d,0x21,0xdc,0x1e, +0xf3,0xe0,0x18,0x1b,0x17,0x73,0x62,0xc7,0x89,0x28,0x0e,0xe3, +0xc5,0x71,0xdd,0xf0,0x35,0xc5,0x94,0x07,0x5c,0xf7,0xca,0x77, +0x2b,0x22,0xcf,0x44,0x9d,0xdd,0x71,0xf6,0x92,0x03,0xff,0x47, +0x22,0x8c,0x4b,0xfd,0x39,0xe3,0xf2,0xbe,0xa4,0x7d,0x97,0xf6, +0x37,0x17,0xf2,0x61,0x3d,0xde,0xb7,0x02,0x5b,0x3c,0xa2,0xf8, +0xf4,0x98,0xcc,0xe8,0xf4,0x28,0xf9,0x71,0x9b,0x13,0x36,0x71, +0xd9,0xcd,0x99,0x2d,0xe9,0x4d,0x1c,0xe4,0xe0,0x55,0x1c,0xc5, +0xa4,0x39,0x9a,0xfc,0xc1,0x34,0xa7,0x65,0x51,0xa7,0xfb,0x01, +0xbe,0xcf,0x5e,0x2a,0x4c,0xc8,0x4f,0xc8,0xa3,0xb4,0xf7,0x53, +0xa2,0xaa,0xb5,0x69,0x72,0x94,0xd2,0xcc,0x6d,0x01,0x9d,0x1e, +0x8d,0x9e,0xdc,0x34,0xf1,0xc0,0xdf,0xd5,0x7b,0x03,0x92,0x17, +0xd5,0x80,0xe4,0xe5,0xcf,0x6d,0x86,0xa3,0x04,0x6f,0x3f,0xb5, +0xc5,0x58,0x3c,0x6f,0x5c,0xd9,0xd9,0x23,0xec,0xb5,0xef,0x36, +0x2c,0xc7,0xfa,0xef,0xe0,0x36,0x63,0xfc,0xf1,0x6b,0x72,0x37, +0xf0,0x7d,0xef,0x5e,0x8f,0x92,0x26,0xde,0x5e,0xbb,0xb1,0x7e, +0x53,0x29,0x07,0x33,0xc4,0x21,0xc4,0x41,0xbb,0xae,0x71,0x63, +0x59,0x98,0x82,0xbf,0x1b,0x78,0xdb,0xb3,0x4f,0xc9,0xc1,0x44, +0x71,0x24,0x11,0x92,0x84,0xbd,0x62,0x12,0x8b,0xf6,0xc2,0x74, +0x12,0x79,0x3d,0xb0,0x24,0xe4,0xaa,0xd4,0xe0,0x6a,0x47,0x59, +0x78,0x61,0x18,0x87,0x3e,0xf8,0x88,0x7c,0xd4,0x7c,0xbb,0xb3, +0xf7,0x83,0x16,0xd7,0x46,0xb9,0xd6,0x49,0x5d,0xc3,0x2b,0xdb, +0x14,0x7a,0x97,0x96,0x86,0xce,0xba,0x9b,0x55,0x1f,0x2a,0x0b, +0xf8,0xc0,0xad,0xbe,0xb6,0x9e,0x72,0x07,0xbd,0xbd,0xce,0x56, +0x1b,0xe8,0xcb,0xf7,0x29,0xbb,0x5c,0x3b,0xe4,0x76,0x96,0x96, +0x4e,0xeb,0xdd,0x38,0xf8,0x12,0x7c,0x48,0x69,0xd4,0xf5,0xd0, +0xbc,0xd0,0x2a,0x35,0x1f,0x5d,0x1a,0x5a,0x1a,0x9e,0xc7,0xe1, +0x99,0x19,0x24,0xba,0x38,0xa8,0x24,0xf4,0xaa,0x7f,0x20,0x5f, +0xba,0xa3,0x2c,0xac,0x20,0x9c,0x13,0xc7,0x61,0x1d,0xf9,0x58, +0x6a,0xb6,0xab,0x96,0x44,0xc4,0x3e,0x38,0xc4,0x11,0xd9,0x35, +0x33,0x39,0x21,0x13,0x96,0xd3,0x2f,0x28,0x09,0xce,0x0f,0xa9, +0xae,0xe4,0xa3,0x4b,0x42,0x2b,0xc2,0xf2,0xe9,0x4c,0x78,0x8d, +0xba,0xbf,0xc7,0x70,0x55,0x87,0x57,0x1f,0xd8,0xad,0xc5,0x44, +0x17,0x48,0x5c,0x89,0x1a,0x67,0xc3,0x94,0x56,0xd6,0x38,0xf5, +0x23,0xa2,0xaa,0x97,0x35,0xc8,0x25,0xfa,0xd3,0xee,0xdb,0xe8, +0xdd,0xa8,0xe4,0x2e,0xa2,0x37,0x51,0x35,0x6c,0x6b,0x77,0xa8, +0xf6,0x57,0xf1,0x1d,0xde,0x9d,0xae,0xcd,0x0a,0x0e,0xbc,0xd7, +0x11,0xf7,0xd3,0xae,0xa7,0x5d,0xcf,0xc4,0xcb,0x79,0x78,0xed, +0x12,0x0c,0xb9,0xf4,0x4d,0xca,0x99,0x66,0x3e,0xf0,0x94,0xef, +0x29,0xef,0x53,0xdc,0x13,0x18,0xd1,0x8c,0x23,0x1e,0x39,0xae, +0x46,0xa2,0x00,0xc2,0x82,0x27,0x9a,0x13,0xf8,0xb4,0x05,0x27, +0x7e,0x09,0x63,0x9a,0x71,0xcc,0x23,0x87,0xd5,0xf8,0x86,0x02, +0xde,0x58,0x84,0x84,0x11,0xb7,0x85,0x92,0x57,0xe9,0xcd,0xa9, +0x2d,0xfd,0x89,0x5b,0x0d,0xbc,0x9b,0xfb,0x82,0x92,0x2e,0xac, +0x27,0xf8,0x2e,0x13,0x7a,0xec,0x52,0x89,0x05,0x8c,0x83,0x43, +0x6d,0xc6,0x6d,0x32,0xf0,0x62,0x0f,0x4d,0x5a,0xe1,0x8e,0x33, +0x43,0x73,0x1c,0x79,0xb0,0x55,0x7f,0xfe,0x30,0x15,0xde,0xe4, +0xe0,0x1d,0x34,0x67,0xb6,0xe4,0xec,0xbc,0x63,0x0e,0x13,0x18, +0x6d,0x46,0x5a,0xbd,0xc5,0x33,0xd6,0x31,0xd3,0xc4,0x14,0xae, +0x1a,0xec,0xe8,0x99,0xcb,0x9a,0xe4,0x55,0x81,0x5e,0x7c,0xbb, +0x77,0x83,0x67,0x93,0x1b,0x67,0xb0,0x81,0x99,0xc4,0xc8,0xa2, +0x25,0x83,0x75,0x07,0x30,0x7a,0xae,0xd4,0x0e,0xd9,0xcb,0xe4, +0x33,0x98,0x70,0x1d,0x3c,0x41,0x1c,0x2b,0xbc,0xcf,0xd8,0xc3, +0x18,0xb2,0x46,0x4c,0x7c,0xc8,0xe2,0x48,0xec,0x20,0x5e,0x4d, +0xd6,0x1d,0x4e,0xb5,0xfe,0xd4,0x69,0x78,0x75,0x38,0x37,0xb8, +0x72,0x42,0xc2,0x69,0x02,0x17,0x1b,0xf1,0x62,0x22,0xa3,0x4b, +0xf9,0xac,0x42,0x53,0xcc,0xa9,0xc5,0x75,0x4a,0xf8,0x98,0xf5, +0x3d,0xe0,0xb6,0x5f,0x75,0x8c,0x0b,0xc4,0x8b,0xee,0x52,0xc0, +0x7f,0x0c,0x7b,0xc5,0x5d,0x8a,0xd4,0xd5,0xa7,0xa5,0xd4,0x5a, +0x88,0x35,0x4e,0xd4,0x10,0x9b,0x84,0xe0,0x08,0x47,0xe9,0x22, +0x7b,0x60,0xa8,0x1a,0xcc,0xb3,0x5e,0x70,0xc2,0xff,0xe0,0x1c, +0x92,0xc5,0x56,0x67,0x97,0xe7,0x5e,0x2b,0xe6,0x34,0x98,0xe2, +0x0e,0x4e,0x6c,0xcc,0xfe,0xb0,0x7d,0x21,0x87,0x39,0x3f,0xe4, +0xdc,0x80,0x9b,0xb2,0x88,0x4d,0x56,0x98,0xdc,0x63,0xd4,0x19, +0xa9,0x6a,0x8b,0x9f,0x81,0x34,0xb1,0x78,0x3f,0x89,0x84,0xc7, +0xf9,0xc6,0x79,0xc7,0x71,0xf9,0x6c,0x45,0x66,0x6d,0x7e,0x71, +0x31,0x57,0x8b,0x29,0x4a,0x70,0x60,0xa3,0xf7,0x05,0xef,0x8d, +0x38,0xca,0xb9,0xb2,0xee,0x71,0xca,0xb8,0xc0,0x33,0x09,0x6e, +0x7c,0xd9,0xf9,0xfa,0x8b,0xda,0x04,0x6e,0xfe,0x3a,0xe9,0x5b, +0xda,0xe9,0xc9,0xa4,0x55,0x5b,0x7c,0xc3,0x6a,0xe2,0x6b,0x12, +0x8a,0xe2,0x29,0xf7,0xf7,0x17,0x96,0x12,0xa8,0x05,0x93,0x66, +0x1c,0xfa,0x40,0xb6,0x16,0xcd,0x15,0x60,0x81,0xb5,0xac,0x30, +0xfc,0x1c,0x81,0x1a,0x58,0xdc,0x8c,0x8b,0x1e,0x38,0xad,0xc5, +0x37,0x15,0x30,0x0a,0x6b,0x58,0x31,0x18,0xf4,0x44,0x55,0x2d, +0x75,0x79,0xa5,0x4c,0xb2,0x2d,0xa8,0x21,0xb0,0xc1,0x87,0xfb, +0x10,0x2f,0x92,0x96,0x1b,0x69,0xf7,0x7e,0x1f,0xeb,0xca,0x4c, +0x3f,0xea,0xa0,0x94,0x99,0x43,0x1f,0x04,0x11,0x05,0x6e,0x6d, +0x66,0xb4,0x96,0x44,0xdf,0x97,0xf9,0xf8,0x05,0xfd,0x68,0xde, +0x41,0x2b,0xa5,0xb3,0x39,0xbc,0x28,0x22,0x07,0x98,0x23,0xa7, +0x2e,0xa6,0x58,0xc0,0x72,0x17,0xdc,0xc0,0xfa,0x67,0x1c,0xaa, +0x35,0xcf,0x65,0x4a,0x53,0x52,0x2a,0x2d,0x3e,0x63,0x3d,0xd3, +0x4d,0x8c,0xab,0xd1,0x94,0x28,0x35,0xd6,0x4d,0xf6,0x52,0x1d, +0x57,0x47,0x60,0x97,0x47,0xb3,0xa7,0x94,0xa9,0x5c,0x43,0x69, +0x7f,0xe4,0xf4,0xad,0x9b,0xcd,0xb5,0x3e,0x1a,0x4d,0x51,0x7b, +0xc6,0x4d,0x33,0xc1,0x79,0x06,0xba,0x30,0x52,0x0d,0xe9,0x66, +0xa6,0x21,0x93,0xd2,0x47,0x61,0x9c,0xa8,0x65,0x85,0x43,0xf8, +0x26,0x11,0x37,0xde,0x15,0x36,0x32,0xc6,0xd7,0xc2,0xfe,0x5b, +0x5b,0x12,0xfa,0x65,0x93,0xc8,0x85,0xdc,0x0b,0x79,0xe7,0xf2, +0x39,0x61,0xd3,0x46,0x46,0xaa,0x1c,0x39,0x49,0x0c,0xef,0xe9, +0xb1,0x02,0x46,0xc2,0x71,0x3d,0x1e,0x87,0xc1,0x76,0x58,0x83, +0xe3,0x61,0x87,0x3d,0xee,0xa0,0xc6,0xa6,0x18,0xc6,0x13,0xb7, +0x66,0xdb,0x56,0x7b,0x49,0x74,0xd9,0xe3,0xa5,0x53,0xea,0x9d, +0xb9,0xc3,0xa8,0xa0,0xf3,0x62,0x7b,0xa7,0x63,0x8d,0x1f,0x9d, +0x57,0x5e,0x1d,0x72,0x69,0x5e,0x30,0x74,0xa9,0x47,0x9e,0x88, +0x38,0x1e,0x79,0x92,0x83,0xb5,0xdf,0xb6,0xce,0x83,0x05,0x0e, +0xe2,0x78,0x76,0xe3,0x41,0x13,0xf8,0xd6,0x09,0x7f,0x65,0xa3, +0x4e,0x45,0xc6,0x45,0x9d,0xbe,0x4c,0xa7,0x2d,0x9b,0x09,0xc3, +0xf3,0x60,0x18,0xb5,0x29,0xc7,0xc1,0x99,0xc0,0x90,0x56,0x1c, +0x02,0xab,0x1c,0xc4,0xf5,0xab,0x40,0x74,0x44,0x71,0x93,0x5c, +0x98,0xac,0xc7,0x71,0x8c,0x71,0x3c,0x68,0xe8,0x9c,0x19,0x2a, +0xcd,0x19,0xa9,0x72,0x7d,0x60,0xce,0x64,0x4b,0x9c,0xe1,0xb4, +0xc1,0x83,0xf8,0xd5,0xa8,0xea,0x54,0xe5,0x92,0xd6,0xc7,0xbf, +0xd2,0xaf,0xc6,0x93,0xeb,0xc0,0x4a,0xf2,0xf2,0x53,0x1d,0x0c, +0xbd,0x04,0x6b,0xb9,0xcf,0x98,0xf5,0x27,0xe7,0x9f,0xb0,0x35, +0xf7,0x3f,0x75,0xf8,0x44,0xf8,0x38,0x05,0x93,0xec,0x62,0xa2, +0x67,0x74,0x57,0xf3,0xba,0x92,0x2c,0x92,0x1f,0xc6,0x7f,0x0d, +0x6f,0x8e,0xc5,0xbb,0x2e,0x30,0x86,0x89,0xc3,0x79,0x1e,0x73, +0x66,0xae,0xe3,0x84,0xe9,0x81,0x04,0x06,0x7d,0xd2,0x06,0x83, +0x2f,0xc1,0x6a,0xee,0x4b,0x66,0x69,0xdc,0xb2,0xe3,0xce,0xe6, +0xfe,0x27,0x63,0x8f,0x04,0x8d,0x73,0x93,0xfe,0x5a,0xcb,0xdc, +0xc8,0xb9,0xda,0x71,0xd9,0x22,0xb9,0x2f,0xf1,0x47,0x78,0x67, +0x2c,0xfe,0xe4,0x02,0xd3,0xe8,0x5f,0xcf,0x72,0x9b,0x3d,0x6d, +0x23,0xd7,0x01,0xa5,0xe4,0xb0,0xfd,0x2e,0x59,0xa0,0x47,0x6d, +0x28,0x5f,0xd5,0x9a,0xd7,0x95,0x76,0x83,0x13,0x57,0x24,0x93, +0x83,0xf6,0x31,0x72,0x5f,0x8f,0xea,0x30,0x5e,0xd3,0x52,0x28, +0xbd,0x87,0xaf,0xe1,0x2e,0x12,0x52,0xeb,0xda,0xa2,0xaa,0x0a, +0xf0,0xe2,0x6b,0xfc,0x9b,0xdc,0xca,0x3d,0x39,0xc3,0x7c,0xfa, +0x26,0xb0,0x7a,0x64,0x61,0xb2,0xa3,0xf8,0xf6,0x4a,0x78,0xe2, +0x84,0x4f,0xac,0x98,0x53,0x6d,0x93,0x76,0x9a,0xc0,0x8a,0xdf, +0xf5,0x13,0x60,0x9c,0x5c,0x1c,0xcc,0xae,0x39,0x64,0x02,0xf7, +0x9d,0xf1,0x33,0x36,0x32,0x2e,0x22,0x2e,0xf2,0xd4,0x15,0xca, +0x61,0x5f,0xcb,0x84,0x61,0xb9,0xc0,0x15,0x72,0x94,0xc0,0xb5, +0xe1,0xdb,0xac,0x71,0x21,0x68,0xff,0x1e,0xb0,0xe6,0xc0,0xff, +0x5d,0x64,0xfd,0x7d,0x8a,0x3b,0x82,0x1a,0xfd,0x1a,0xbd,0x2b, +0xfe,0x6e,0x48,0x0f,0x07,0xe8,0xcc,0x55,0x50,0xfb,0x38,0xfc, +0x51,0xf3,0x6a,0x60,0xc4,0x54,0x85,0xe0,0xb1,0x5d,0x4c,0x57, +0x08,0xe9,0x5b,0x59,0x63,0x76,0x30,0xb9,0xe9,0x7b,0xc3,0xad, +0x53,0xaa,0xd9,0x72,0x69,0xdc,0xd8,0x6a,0x55,0xc5,0x19,0xbe, +0x92,0x08,0x85,0x17,0x36,0xa0,0x17,0x1b,0xd4,0x4b,0x02,0x4e, +0xfa,0xc7,0xf9,0xc5,0x71,0x7f,0xc0,0xe0,0x46,0x2c,0x73,0x07, +0x06,0x4d,0x58,0x65,0x9c,0xc7,0x29,0xd5,0xe9,0x44,0x17,0xfe, +0x97,0xc4,0xdf,0x52,0x9e,0x67,0x72,0x70,0x15,0x26,0x90,0x09, +0x68,0xf5,0x3b,0x4b,0xe9,0xcb,0xc9,0xff,0xaa,0xbc,0x34,0xfc, +0x13,0x22,0x49,0x9b,0xad,0x4c,0xf4,0x76,0x16,0xbc,0x71,0x0e, +0x4e,0x63,0xd3,0x5e,0x25,0x23,0x33,0x1b,0x2c,0x60,0x12,0xcc, +0x6e,0x65,0xc5,0xae,0xf1,0xa4,0x31,0xa8,0x36,0xa0,0xd2,0xb7, +0x46,0xcd,0x07,0xaa,0x55,0x6a,0x8f,0x12,0xba,0x6e,0xbf,0x10, +0x3e,0x25,0x8d,0xc8,0x64,0xb0,0x9f,0x80,0x49,0x03,0x9a,0xf4, +0xc8,0x6d,0x91,0x28,0x81,0x2c,0x67,0x0f,0x2c,0x61,0xe3,0x73, +0xe3,0x73,0xcf,0xe7,0x70,0x4a,0x26,0xce,0x3f,0xd6,0xeb,0x70, +0x30,0x07,0x93,0x98,0x83,0xcb,0xdc,0x9d,0x96,0xb8,0x15,0x2b, +0xf9,0x5f,0x3a,0xdb,0xef,0xa5,0xbf,0x90,0x1a,0x9a,0xb1,0x24, +0xce,0xff,0x58,0xff,0xc7,0x6f,0x33,0x47,0xd6,0x04,0xb9,0xad, +0x71,0x3b,0x5d,0xc3,0x47,0x1e,0x8f,0x3c,0x21,0x4d,0xdf,0x37, +0x5d,0x28,0xb7,0x75,0x39,0x76,0xc9,0xad,0xeb,0xb2,0x2e,0xb9, +0x2d,0xdd,0xac,0x58,0xf9,0x5b,0x6f,0xc3,0x87,0xa9,0xcf,0xcd, +0x60,0x6a,0x23,0x45,0x27,0xe7,0x92,0xfe,0x99,0x74,0x79,0xec, +0x1d,0x30,0x6b,0x40,0x33,0xe9,0xa7,0x47,0x2b,0x61,0xf4,0x26, +0xf6,0xd8,0x3f,0x8f,0x9d,0x3d,0x66,0xbe,0x81,0x89,0xcf,0xbd, +0x98,0x7b,0x21,0x87,0x13,0x5f,0x7e,0x2e,0x95,0xbd,0xfb,0x37, +0x4b,0x65,0xef,0xca,0xda,0x81,0xb2,0x77,0x73,0x71,0xf0,0xff, +0xe9,0xae,0x66,0xd8,0x7e,0x92,0x04,0x32,0xfb,0x4f,0x25,0x66, +0x59,0x00,0x27,0xc7,0x77,0xd9,0xe0,0xcc,0x7d,0x25,0xe6,0x37, +0x98,0xa2,0x94,0xd4,0x52,0x8b,0x07,0xac,0x2a,0xc5,0x44,0x4c, +0x10,0x3f,0x26,0x0d,0x82,0xa5,0xb2,0x57,0x98,0x2a,0xb6,0x8b, +0x53,0x59,0x3c,0x94,0xfa,0x57,0x57,0xb5,0x81,0xe1,0x1c,0xe8, +0xaa,0x66,0xb8,0x0a,0x0a,0x22,0x5a,0xfe,0x24,0xed,0x50,0x6c, +0x89,0xd3,0x88,0x60,0x39,0x49,0xb4,0x64,0x4c,0x85,0x5d,0x82, +0x03,0xd9,0x1f,0xb7,0x2f,0x6e,0xdf,0xa9,0x14,0x77,0xbe,0x2f, +0x5d,0x9f,0xd5,0x9a,0x77,0x42,0xcb,0xef,0x8c,0x8d,0x39,0x1e, +0x73,0x8c,0x83,0xd7,0xba,0x1b,0x71,0xf0,0x93,0xfe,0x9d,0x56, +0x1f,0x39,0xaf,0xb6,0x67,0x13,0x72,0xe2,0x73,0x2e,0x64,0x29, +0x2f,0xf3,0xc7,0x9d,0x77,0xc9,0x43,0x7c,0x6a,0x23,0xf8,0xd4, +0x8c,0xe4,0xec,0xcb,0x39,0xdc,0xa3,0x65,0x38,0xdb,0xfd,0x6b, +0xe6,0xf4,0xaa,0x20,0xab,0xf9,0x4e,0xd7,0x3d,0xf9,0x17,0xb7, +0x6a,0x3e,0xb9,0xf8,0x8c,0xeb,0x63,0x04,0x1b,0x4a,0x5a,0x02, +0x99,0x03,0x27,0x2f,0x66,0x58,0xc0,0xd8,0xef,0xe9,0x10,0x3d, +0xe9,0xdf,0x06,0xea,0x91,0x6c,0xb5,0x2d,0x9b,0xd8,0xff,0x75, +0xee,0xc9,0xfc,0x31,0xe7,0xdd,0x2e,0x21,0x3e,0x9a,0x50,0x3e, +0x65,0xe0,0xeb,0x1e,0x2f,0xc3,0xf1,0xee,0x8f,0x99,0x53,0x2b, +0x83,0x5d,0x36,0x7b,0x97,0xaa,0xf8,0x27,0xad,0xd5,0xf7,0x2e, +0x7e,0xcb,0x75,0x52,0x9f,0xe7,0x9e,0xbd,0xbf,0xde,0xbc,0x86, +0x29,0x97,0xac,0xf5,0x3d,0x56,0x95,0x66,0x62,0x9c,0x40,0x2d, +0x85,0xb2,0xc6,0xa9,0xd6,0xa9,0x24,0x44,0xb2,0x8b,0xfd,0x1d, +0x3f,0x2e,0xa1,0x87,0x34,0x98,0x03,0xb6,0x92,0x0e,0xa6,0xaa, +0x59,0xc5,0x81,0x93,0x78,0x82,0xb4,0x0a,0x9e,0xce,0xbd,0xc2, +0x12,0xf1,0x81,0xb8,0x84,0xc5,0x13,0x97,0xff,0xdb,0x0e,0x0f, +0x86,0x16,0x08,0x21,0xa2,0xf7,0x2f,0x82,0x37,0x23,0x7a,0xe3, +0x6c,0x22,0x78,0x4f,0x10,0xbd,0x19,0xc9,0x63,0x2a,0x89,0x97, +0xc6,0x55,0xd2,0xdc,0x7a,0xf6,0xd3,0xa4,0x7a,0x4f,0x2e,0xf9, +0x2b,0x02,0x07,0x36,0xa3,0x33,0xca,0x0c,0xa6,0x20,0x43,0xb7, +0x3b,0x10,0xdb,0x6a,0x74,0x63,0x40,0x8d,0x6f,0x50,0x70,0x65, +0xb6,0x99,0x42,0x1f,0x25,0x99,0x81,0xef,0xfe,0xc4,0xc2,0xa3, +0xb7,0x66,0xa0,0x19,0x7d,0xfe,0x74,0x06,0xc1,0x89,0x3f,0xc1, +0x44,0xc6,0xd8,0xb5,0x88,0xb4,0xfa,0x49,0xad,0x87,0xd4,0x1a, +0xca,0x57,0xec,0x24,0x25,0xac,0xa1,0x4d,0x74,0x21,0x50,0x2d, +0x7e,0x89,0xd5,0x90,0x64,0x89,0x37,0xe5,0x70,0x73,0x42,0xf7, +0xef,0xf0,0x8d,0x1e,0xbf,0xb9,0xc5,0x42,0x18,0xac,0x25,0x62, +0xc4,0x2d,0x21,0x82,0x31,0x46,0x8b,0xf2,0xff,0x94,0xcc,0x9a, +0xf8,0xf5,0x13,0x1b,0x7a,0x9f,0x9b,0xc8,0x06,0x31,0xe2,0x23, +0xd6,0xf4,0x4f,0xef,0x9d,0x64,0xfb,0x47,0xca,0x0f,0x03,0xef, +0xf5,0x02,0x5f,0x00,0x13,0x12,0x61,0x26,0x57,0xd7,0x85,0x51, +0xcc,0x95,0x96,0xcb,0xfa,0xc4,0x56,0x59,0x22,0x7f,0x00,0x4d, +0xa3,0xd1,0x4c,0x3e,0x9e,0x4b,0x45,0xa3,0x0c,0xbe,0x61,0xcf, +0xfe,0xf3,0xec,0x3f,0x2d,0x2a,0xdc,0xb2,0x4b,0x32,0x2b,0x32, +0xd4,0x66,0xc9,0x13,0xf3,0xa6,0x55,0xcf,0xf6,0x5d,0x23,0xdf, +0xb8,0x7e,0x4b,0xb9,0x8c,0xbf,0x7d,0xab,0xf5,0x4e,0xed,0x47, +0x95,0x1b,0x1b,0x36,0x77,0x6f,0xe5,0xc4,0x37,0xfe,0x1c,0x4e, +0xd0,0x65,0x19,0xc4,0xc8,0x31,0x66,0x05,0xb8,0x38,0xe3,0x19, +0x78,0x08,0x67,0x58,0xfc,0x7a,0x0a,0xc5,0x48,0x4e,0xf5,0x72, +0xa9,0x1d,0x55,0x87,0x7f,0x83,0x4f,0x93,0x92,0x33,0x0c,0xf5, +0x24,0x27,0xf1,0xcd,0xbd,0x38,0xdc,0x0b,0x07,0xf9,0xfd,0xbe, +0x1f,0x4c,0x8e,0x83,0x19,0x27,0xee,0xc2,0x15,0xaf,0xc4,0xef, +0x81,0x9e,0x7c,0xb7,0x77,0xb7,0x6b,0x2b,0x75,0x14,0x4b,0xf1, +0x73,0xe2,0x79,0x4c,0x76,0xcc,0xf1,0x38,0x07,0x83,0xc1,0xbc, +0x19,0xcd,0x9f,0xc1,0x74,0x1d,0x1a,0x5c,0x60,0xd6,0x4c,0xc9, +0x05,0x9b,0xe3,0x30,0xd6,0xe1,0xa4,0xfd,0x29,0x97,0x33,0x97, +0xa8,0x99,0x1b,0x91,0x08,0x0b,0xb2,0x5e,0xe4,0x73,0x62,0xf9, +0xbc,0xff,0x8f,0x7e,0xd8,0xd4,0x90,0x4e,0x6e,0x58,0x6f,0x47, +0xb5,0xc2,0x30,0xb1,0x99,0x35,0xce,0xb1,0xa7,0x30,0xd8,0xb9, +0xf6,0xdf,0x2b,0x2d,0x84,0x14,0x27,0x92,0x59,0x94,0x5e,0x92, +0x72,0x5d,0x91,0xc5,0x1f,0x0e,0xdb,0xed,0x15,0x13,0xc0,0x89, +0xcb,0x5c,0x0d,0x6b,0x5a,0x18,0x51,0x96,0x47,0x8e,0x5e,0x3b, +0x58,0x76,0x30,0xcf,0x6d,0x37,0x9f,0xb6,0x23,0x2d,0xe4,0x72, +0x24,0x27,0x2e,0xb6,0x22,0x52,0x52,0xbe,0xdd,0x55,0x2d,0xf5, +0x61,0xda,0xdc,0x66,0x45,0x6f,0xda,0x53,0x31,0x83,0xb4,0x62, +0xe3,0x87,0x90,0x0e,0x6d,0xe2,0x4d,0x6c,0x83,0x73,0x9b,0xb0, +0xc8,0x19,0x8a,0xd6,0x61,0x87,0xcc,0xb0,0xbe,0x0d,0x1f,0xde, +0x67,0x1d,0x85,0xd7,0xc9,0x5a,0x74,0x7a,0xc0,0xc2,0x39,0x29, +0x83,0xe6,0xb5,0x96,0x15,0x5d,0xdd,0x09,0x38,0xad,0x44,0x27, +0x06,0xce,0xbd,0xf5,0x18,0xbc,0x56,0xb2,0xc6,0x68,0xca,0xcf, +0xfe,0xa2,0xe8,0x7f,0x27,0xb0,0xa5,0x64,0xd1,0x9f,0xab,0x84, +0x3e,0xd2,0x82,0xed,0xc0,0xb3,0xdf,0x5e,0xfa,0xfa,0xca,0xc7, +0xe9,0xd1,0x2d,0x3c,0x2e,0x0c,0x45,0xff,0x83,0xe8,0x7a,0x36, +0x45,0xce,0x7f,0xfa,0xd5,0xc5,0x84,0xaf,0x2c,0x70,0x34,0x6a, +0x5c,0x21,0x81,0x95,0x59,0x4e,0x53,0xe1,0xeb,0x5e,0x05,0xd4, +0x9f,0xf2,0x2d,0x30,0xb4,0x99,0x92,0x9f,0x04,0xdc,0xd6,0x05, +0xdb,0x12,0x98,0xd2,0xa9,0x30,0xcc,0x0d,0x26,0x38,0xe5,0x77, +0xf2,0xc8,0xd4,0xa2,0x89,0xd6,0xf1,0x7d,0x4e,0x34,0x85,0x59, +0x92,0x20,0xae,0xf6,0x2f,0x41,0x9c,0x9f,0xce,0x9b,0x13,0x32, +0x3c,0x48,0x61,0x69,0xa1,0x26,0xbd,0x42,0x96,0xc3,0x1f,0x0a, +0x8e,0x54,0xed,0x88,0xe0,0xf0,0x65,0x37,0xc9,0xd8,0x95,0x17, +0x98,0x12,0xa9,0xcf,0xe5,0x0f,0x5f,0x8b,0xa9,0xdc,0x9b,0x2b, +0x69,0x78,0x33,0x89,0xa2,0xce,0x72,0xa0,0x41,0x6d,0x4f,0x40, +0xaf,0x4a,0xef,0xc1,0xc1,0x7a,0x31,0x8e,0xb4,0x0b,0x5b,0x9c, +0xba,0x85,0xb5,0x62,0x8b,0xb8,0x96,0xc5,0xfd,0xa9,0xe4,0xde, +0x1f,0xed,0x52,0x32,0xfb,0xef,0xde,0xb4,0x9b,0xa6,0x73,0x42, +0x0e,0x84,0x11,0xb4,0x7e,0x09,0xd6,0x4c,0xe7,0x44,0xf2,0x12, +0x64,0x13,0x59,0xbc,0xa0,0x20,0xc8,0xa0,0x35,0x30,0x2c,0xc4, +0xbd,0x45,0x97,0x14,0x83,0x32,0xba,0xf6,0xae,0x0b,0xf7,0x89, +0x4c,0xf8,0x47,0x1b,0xce,0xfd,0x15,0x56,0xb4,0xe3,0x8a,0x9f, +0x1d,0xa7,0xe3,0x72,0x27,0x58,0x3e,0x85,0xc5,0x8d,0x60,0xf1, +0x4a,0x0b,0x24,0x35,0x69,0x94,0x22,0x29,0xf4,0xec,0x03,0xf0, +0x6d,0xf2,0xf3,0xfb,0x5f,0xfd,0xd0,0xf9,0xb3,0x6b,0x29,0xef, +0x38,0x73,0xf5,0xd2,0xd9,0xb6,0x9c,0x38,0x1b,0xc7,0x10,0x65, +0x3d,0xb5,0xb0,0x95,0xf4,0xc8,0x4e,0xff,0x2e,0xa5,0xce,0x83, +0x13,0x62,0xe8,0x34,0x84,0xc1,0x8f,0xbe,0x83,0x21,0x3d,0xbf, +0xba,0x5c,0xe7,0xed,0xa7,0xcd,0x9f,0x3c,0xdd,0x92,0xc3,0x3f, +0xc1,0x9c,0x60,0x14,0x7c,0x06,0x51,0x2c,0x16,0xe0,0x6a,0x02, +0xc3,0x21,0x0c,0x87,0xb3,0x62,0x08,0x7e,0x3b,0xd0,0xfe,0x71, +0xa0,0xe7,0xc9,0xab,0xd2,0x55,0x6a,0x34,0x04,0xb8,0x4f,0xb6, +0xe1,0xb0,0x69,0xf8,0x06,0x0e,0x5f,0x5b,0xe9,0xc2,0xc3,0xf0, +0xc7,0x30,0x04,0x46,0x7d,0x00,0x6f,0x73,0xf8,0x19,0x06,0x90, +0x88,0x13,0x21,0x27,0x83,0x4f,0x66,0xd7,0x65,0xb5,0xa6,0xd6, +0x49,0xf9,0x48,0x97,0x3d,0x36,0xbb,0xe4,0xab,0x8e,0x2c,0x8f, +0xdd,0x24,0xa9,0xed,0xc1,0x34,0x19,0xe6,0xe5,0xbe,0x2c,0xe0, +0x30,0xa2,0x85,0x1c,0xa9,0xdd,0xd9,0xb5,0xa7,0xc6,0x75,0x17, +0x7f,0xd5,0x3b,0xc7,0x31,0xc5,0x87,0x33,0xfd,0xda,0x50,0x4c, +0xba,0x02,0x9b,0xfc,0x9a,0x3d,0xaf,0xd7,0xf1,0x03,0x45,0x51, +0x9c,0xe1,0xa3,0x70,0x62,0x9c,0xe6,0x0c,0xd1,0x2b,0x31,0x04, +0x8f,0x40,0xc8,0x72,0x74,0x15,0xd7,0x74,0x75,0x0a,0xfb,0x1d, +0xba,0x84,0x35,0x28,0xfb,0x94,0x1a,0x8b,0x23,0x18,0xf6,0x18, +0x76,0x30,0xe2,0x48,0x71,0x02,0x11,0x26,0xfc,0x22,0x4e,0x60, +0xf1,0x36,0x64,0x13,0x98,0x8f,0xe3,0x70,0x3e,0x23,0x14,0xbd, +0x85,0x0b,0x29,0x79,0x58,0xc8,0x18,0xbf,0xdc,0x42,0x6e,0xf8, +0xf5,0xba,0xb7,0xbb,0x95,0xd6,0xf2,0xae,0x0d,0x5b,0x74,0xdb, +0xaa,0x38,0xe8,0x10,0x27,0x49,0xbb,0xe1,0x06,0xe1,0x3f,0x24, +0x71,0xdd,0x3f,0x20,0x94,0xbe,0x30,0x26,0x62,0xca,0xab,0x02, +0xa8,0xa2,0x97,0x6e,0x59,0xd4,0x64,0x9a,0x50,0x93,0x69,0x35, +0x93,0x83,0x07,0x3d,0x14,0xac,0xd1,0x83,0x87,0x48,0x07,0x0f, +0xa1,0x07,0x0f,0xa1,0xf6,0x67,0x2a,0xac,0x22,0x30,0x4a,0x5f, +0x2f,0x07,0x53,0x5c,0x77,0x03,0x82,0x1a,0x31,0xa8,0x89,0xed, +0xb9,0xd4,0x91,0xda,0x90,0x16,0x5d,0xc3,0xdb,0xef,0x59,0xb8, +0x7f,0xe1,0x89,0x74,0x6f,0x3e,0x29,0xe9,0xdc,0xb9,0x24,0x0b, +0xaf,0xff,0xc7,0xd6,0x57,0x40,0xc7,0x71,0x64,0x6b,0x3b,0xb6, +0xd5,0xdd,0x21,0x3b,0x89,0x53,0x4e,0xc9,0x8e,0x25,0x33,0xc6, +0x14,0x33,0x33,0x8a,0x59,0x23,0x69,0x46,0xcc,0x8c,0x16,0xa3, +0x65,0x8a,0x98,0x99,0x99,0x99,0x46,0xcc,0x60,0xe6,0xc4,0x76, +0xd8,0x0e,0x6d,0x18,0xaa,0x27,0xb7,0xb5,0xef,0xaf,0x96,0xed, +0xdd,0x7d,0xff,0xdb,0xe3,0x73,0xe4,0x39,0x33,0xd3,0xd3,0x55, +0x5d,0xb7,0xbe,0xfb,0x7d,0x55,0xb7,0xee,0x05,0xa5,0x6b,0x6c, +0x51,0x62,0x61,0x52,0x5e,0xb2,0x67,0x33,0x36,0xf0,0xd9,0x1d, +0xb8,0xe7,0x7c,0x96,0x05,0x6e,0x8c,0x6b,0x4a,0x6c,0x48,0xe2, +0x0c,0xe1,0x04,0xd9,0xcc,0x2b,0x7a,0x60,0x64,0x4a,0x4b,0x0d, +0x86,0xe1,0x12,0x0b,0xb5,0x1e,0xb0,0xeb,0x30,0x2c,0x50,0xe9, +0xb6,0xfa,0x94,0x2c,0x2d,0x21,0xc7,0x63,0x48,0xb3,0x32,0x39, +0xa1,0x06,0xd8,0x9c,0xe0,0x03,0xf0,0xa1,0x8c,0x7c,0xb8,0x07, +0x54,0xcc,0xc9,0x1c,0xc6,0x47,0x5b,0x4f,0x07,0x66,0xab,0x57, +0x9b,0xd1,0x31,0xb9,0xd5,0x3f,0x95,0xf8,0x90,0x4b,0x82,0xa0, +0x3e,0xf2,0x11,0x51,0x82,0x8f,0xfa,0x49,0x50,0x32,0x93,0x71, +0x60,0x48,0x87,0xbc,0x71,0xb8,0x5a,0x8e,0x41,0xe9,0xba,0xce, +0x90,0xd7,0x10,0x27,0x24,0xf3,0xad,0x62,0x0e,0x90,0x76,0x63, +0x31,0xe9,0xd9,0x80,0xed,0x4c,0x0e,0x90,0x64,0x3a,0x8a,0xe6, +0x9d,0xea,0x03,0x3a,0x62,0x44,0xee,0xa0,0xd5,0x88,0x44,0x6e, +0xca,0xf1,0x11,0x64,0x2e,0x52,0x03,0xb1,0xca,0xa0,0x12,0xcc, +0x42,0x07,0x40,0xe9,0x63,0x96,0x34,0x1c,0xa0,0x94,0xfc,0x63, +0xf2,0x1a,0x33,0x7d,0x0c,0xd8,0x7f,0x45,0xde,0xf6,0xfc,0x47, +0xe4,0x2d,0xf9,0x39,0x15,0x11,0xa5,0x3d,0xa0,0xc4,0x90,0xbd, +0x4f,0xa8,0x6d,0xed,0x81,0xd7,0x98,0x79,0x8a,0xaf,0x78,0x6b, +0x54,0x19,0x50,0x19,0x58,0x1e,0x5a,0x42,0xb9,0x58,0xbe,0x49, +0xb9,0xb4,0xa6,0xa1,0xbc,0xb2,0xaa,0xa2,0xde,0xa2,0x11,0xbb, +0xdb,0x3a,0x39,0x39,0xb8,0x5b,0xd5,0x3b,0x34,0xfb,0xb6,0x71, +0x62,0xc0,0xe5,0xe7,0x4c,0x6a,0x69,0x72,0x45,0x52,0x95,0x5e, +0x32,0x3e,0xef,0x18,0xe9,0x2c,0x9e,0xda,0x8b,0x35,0x20,0x3e, +0x8c,0xa7,0xd4,0xc9,0xc6,0xca,0xc1,0xbd,0xce,0xa6,0xde,0xb9, +0xdc,0xd2,0x06,0xd7,0xb8,0xd7,0xdb,0x97,0x38,0xdb,0x7a,0x58, +0x78,0x49,0x3c,0x2b,0x8c,0x70,0x55,0x5e,0x65,0x6e,0x79,0x2e, +0x07,0x09,0xc4,0x15,0xdc,0x61,0x23,0xfb,0xbc,0x48,0xd1,0x40, +0x66,0x81,0x5c,0x95,0xd8,0x10,0x73,0x31,0xab,0xf3,0x25,0x64, +0xd1,0x6a,0xf4,0x32,0xf9,0x49,0x87,0xd8,0x71,0x1e,0x55,0xa2, +0x3c,0xe3,0x66,0x09,0xf5,0xa1,0x90,0xc0,0xb4,0x35,0x37,0x74, +0x55,0x8c,0x72,0xf0,0x33,0x84,0x21,0xf3,0x76,0x71,0x69,0x55, +0xfc,0xe6,0x8b,0xa5,0x55,0xbf,0x4b,0xe8,0x0b,0xf2,0xcf,0x1d, +0xac,0xf1,0xdc,0x0d,0xf0,0xcf,0x1f,0x58,0xb8,0xa0,0x85,0xdc, +0x66,0x0e,0x42,0xab,0xad,0xee,0x9b,0x59,0x54,0xed,0x9c,0x59, +0x54,0x25,0x16,0x1b,0x91,0x81,0xe6,0x3e,0x8d,0x03,0x36,0xd5, +0x86,0xf8,0x41,0xeb,0x57,0x57,0x47,0x6e,0x70,0xe4,0xa3,0xcb, +0x68,0xd8,0xec,0xba,0x5a,0xaf,0x56,0x5b,0x27,0x36,0x1d,0x3a, +0x74,0xcb,0xa8,0x91,0x02,0xf8,0xaf,0x0a,0x4b,0x24,0x38,0x8c, +0xf1,0xb9,0x20,0x67,0x33,0x8a,0x53,0x4b,0x53,0x0a,0x35,0x93, +0x71,0x94,0x67,0x98,0x7b,0x88,0x27,0x07,0x69,0x42,0xee,0x28, +0xef,0xc0,0xec,0x8e,0xfd,0x77,0x06,0x73,0xaa,0xbd,0x66,0x12, +0x32,0x29,0x43,0x05,0x4a,0x8c,0x8d,0x4b,0xbc,0xa8,0x42,0x3e, +0x5c,0x59,0xda,0x06,0x6b,0xbe,0x0f,0x49,0x89,0x8a,0x0b,0x0b, +0x56,0x3e,0x1f,0xa9,0x74,0xb1,0x9e,0xe8,0x75,0x82,0x1e,0x79, +0x93,0x19,0x4d,0x1c,0x4a,0xe9,0x4f,0x0d,0x6a,0xc3,0xcb,0xfd, +0x00,0x85,0xc1,0x92,0xcb,0xa9,0x66,0xb8,0x3f,0xb6,0x2f,0xae, +0x37,0x9e,0x03,0x0e,0xce,0x4a,0xc9,0x2e,0xd6,0xdd,0x5e,0xcf, +0x6a,0x83,0x65,0x91,0x14,0x93,0xb9,0x7d,0xdd,0xed,0x29,0x83, +0xd4,0x78,0xb6,0xf4,0x31,0x4f,0x88,0x0f,0x2a,0x2e,0xcd,0xaf, +0xcf,0xaa,0xb2,0xca,0xc7,0xc1,0x8e,0x7e,0xce,0xe7,0x68,0x73, +0x42,0xfa,0x50,0xbe,0x4f,0xae,0x7b,0xa6,0x67,0x53,0x21,0x0e, +0x29,0xf1,0xaf,0xf4,0x2f,0xe4,0x20,0x10,0x56,0x21,0xd3,0x8e, +0xd3,0xbd,0x1a,0xf5,0x0e,0x33,0x07,0x0e,0x4d,0xfb,0xc5,0x44, +0x83,0x4a,0xff,0x37,0x61,0x7a,0xc5,0x1f,0x9c,0x42,0x1b,0x54, +0xd0,0x00,0xdc,0x4e,0x66,0xc7,0xb4,0xb5,0xd8,0x28,0x98,0x32, +0x20,0xdd,0xac,0xfd,0xa9,0x35,0x7a,0x70,0x5a,0x26,0x1e,0xb9, +0xf5,0x9b,0xfa,0xf1,0x5e,0xfa,0x97,0x5c,0x12,0x93,0xbe,0xfd, +0x97,0xa3,0xc4,0x55,0xbd,0x68,0x18,0xc3,0xe9,0xce,0x75,0x43, +0x0e,0xd7,0x29,0xed,0xed,0x23,0xa1,0x88,0xf0,0x30,0xe7,0x47, +0xb2,0xa4,0x17,0x96,0xfc,0xa4,0xbf,0x16,0xde,0x33,0x26,0xef, +0xad,0x83,0xd9,0xc0,0x93,0xd9,0x2b,0x60,0x95,0x31,0x59,0x05, +0x5b,0x07,0xc9,0x56,0xb2,0xa6,0x17,0xd6,0xfc,0xce,0x92,0x8d, +0xa4,0x0c,0xfd,0xf0,0xd9,0xd8,0x2f,0x49,0x3f,0x88,0xd1,0xc3, +0x9b,0xaf,0xaf,0xff,0x69,0x5b,0xf5,0x20,0x5e,0xf5,0x95,0xd6, +0x57,0x21,0xdf,0x72,0x27,0x98,0xf0,0x0f,0x24,0x1f,0xac,0xd9, +0xcd,0xc1,0x3d,0xf2,0x01,0xb2,0x6c,0x91,0xb4,0x49,0x6a,0x29, +0xe9,0xe9,0xb7,0x6b,0xb5,0xe9,0xb0,0xe0,0xb2,0xc0,0x06,0x59, +0xb6,0x6b,0xf7,0xe9,0x37,0x3a,0x98,0xe3,0x3e,0x9b,0x21,0xd3, +0x0e,0x33,0x8e,0xdc,0x20,0x6f,0xa1,0x55,0x70,0xf8,0x57,0x96, +0xbf,0xaa,0x86,0x06,0x21,0x5d,0xff,0x17,0x38,0x05,0xeb,0xf4, +0xc8,0x3a,0xb8,0x37,0x42,0xee,0x91,0x6d,0x43,0x14,0x6c,0x4e, +0xb1,0x82,0xc3,0x4e,0x44,0x0e,0xc3,0x1c,0x38,0xcc,0x40,0x24, +0xfc,0xf2,0xef,0xb5,0xd9,0x17,0x59,0x8a,0x9f,0xaf,0xcd,0x0e, +0x2b,0xb4,0x91,0xb1,0x5c,0xad,0x7b,0xe6,0xa1,0x4d,0x59,0x0f, +0x59,0x0c,0x49,0x38,0xf2,0xba,0xb8,0xf7,0x29,0xe3,0x3d,0x89, +0x8c,0x15,0x76,0xc2,0x26,0xf4,0x27,0x81,0x65,0xec,0x74,0xe2, +0x72,0x34,0x6a,0x33,0x6a,0xda,0x6b,0xda,0xd4,0x29,0xee,0x4d, +0xf6,0x89,0x7b,0x93,0x51,0x26,0x08,0x6c,0x48,0x1e,0xb1,0x61, +0xc9,0xdf,0xb4,0xa9,0xc4,0x06,0x1a,0xc1,0x86,0x85,0x86,0x2e, +0x2a,0xa6,0x28,0xf8,0xb1,0x2c,0xe1,0x29,0xc7,0x07,0xd1,0x75, +0xd0,0xd7,0x97,0xa0,0x9f,0xba,0xd6,0xd1,0x2f,0x74,0x77,0x40, +0xab,0x31,0x49,0x66,0x4d,0x4e,0x2e,0xd3,0x81,0x15,0x86,0x25, +0x86,0x98,0x6c,0x9f,0x20,0xaf,0xdf,0x2c,0x78,0x46,0x87,0xbc, +0x70,0x98,0x14,0x26,0x31,0xf9,0x9b,0xc9,0x9c,0xd3,0x64,0xbd, +0x86,0xb8,0x87,0xb5,0x78,0x68,0xe3,0xa0,0xe4,0x06,0x27,0xdc, +0x87,0xfc,0x7f,0x05,0x78,0x3c,0xf7,0xd9,0x96,0x2f,0x02,0x3c, +0x4a,0x14,0xb2,0x17,0x53,0xc9,0x71,0xe6,0x8c,0x96,0x38,0x95, +0x6e,0x82,0x32,0x32,0x22,0x85,0x87,0x60,0xd4,0x50,0x71,0xa0, +0x1f,0x6e,0x3d,0x20,0x15,0x7d,0x50,0x71,0x9f,0x34,0x10,0x89, +0x00,0x20,0x21,0xa5,0x87,0xd9,0xad,0xc4,0x17,0xad,0x80,0x77, +0xe9,0x10,0x9d,0x5d,0x48,0xde,0x5b,0x01,0xef,0x31,0x44,0x63, +0xe1,0xef,0x64,0xc9,0x0a,0x76,0x7a,0x6c,0xf9,0x4c,0x3e,0x03, +0xb9,0x59,0x53,0x07,0x36,0x9f,0xd9,0xd5,0xe0,0xf8,0xb3,0xf0, +0x2d,0x0a,0xad,0x0e,0xa8,0x0b,0x2c,0x33,0x39,0x87,0x73,0x3c, +0x72,0x1c,0x32,0x5c,0x38,0x3e,0xf4,0x02,0x02,0x6b,0x26,0xb7, +0x22,0xaf,0x39,0xbd,0xc2,0x20,0x17,0x87,0x39,0xfa,0x98,0xf9, +0x39,0x70,0xc2,0x7e,0x43,0x72,0x75,0x1f,0x94,0x19,0x92,0x32, +0x78,0x7b,0x84,0xbc,0x4d,0xea,0xfa,0xa1,0xee,0x11,0xb9,0xcf, +0x4c,0x7f,0x0f,0x97,0xd1,0xf5,0xff,0x4c,0x18,0xfd,0x7c,0x1f, +0x84,0x12,0x0f,0x6d,0xc5,0x76,0x04,0x81,0x4c,0x59,0x71,0x69, +0x55,0x6e,0x39,0x57,0x0f,0xcd,0x6c,0x4a,0x66,0x4a,0x46,0x52, +0xa6,0x71,0x2e,0xb6,0x55,0xdb,0xbb,0x7d,0x85,0x76,0xa5,0x0c, +0x37,0x15,0x8b,0x89,0x07,0xc1,0xcd,0x01,0x56,0x1e,0x00,0xa4, +0x22,0x37,0x7e,0x40,0xde,0xad,0x26,0xcb,0x52,0xc9,0x26,0x65, +0xbe,0xbf,0x43,0xe8,0x61,0x62,0x8a,0x3f,0x2a,0x29,0x59,0x44, +0x6d,0x6f,0x07,0xeb,0x67,0x61,0xec,0xb7,0x37,0x2c,0xc7,0x14, +0x93,0xd9,0xd9,0x93,0xed,0x45,0x53,0xdc,0x23,0x13,0xc6,0x2e, +0xe7,0x5c,0xa7,0x0a,0x59,0xc0,0x34,0x64,0xa7,0x55,0xab,0xd6, +0xb1,0xc6,0x19,0x4a,0xa6,0x2b,0xd9,0x73,0x91,0x09,0x45,0xaa, +0x75,0x74,0x0c,0xa7,0x0f,0x7e,0x87,0x2c,0x5a,0x8c,0x5a,0x8c, +0x44,0xd2,0x36,0x60,0xdf,0x69,0xdb,0x49,0xa7,0xb7,0xff,0x7d, +0x14,0xe4,0xeb,0xe9,0xee,0xea,0x43,0x51,0x8f,0x29,0x2f,0x2a, +0x29,0x11,0xd7,0xd7,0x3d,0xa0,0x45,0xcc,0xfb,0x32,0xa0,0xde, +0x68,0x6f,0x86,0xc7,0xad,0x27,0x4c,0xfa,0x4d,0x38,0xc5,0xe6, +0x72,0xd4,0x2e,0x68,0x98,0xb3,0x90,0x00,0x4b,0xfe,0xf7,0x21, +0x59,0xca,0xb3,0xde,0x17,0x0f,0xc9,0x1e,0xcf,0x43,0xe6,0xbc, +0x6b,0x3b,0x0b,0x8b,0xe7,0xb6,0x0b,0xae,0xe6,0x6c,0x2f,0x5c, +0x41,0xcd,0xfc,0x5c,0xeb,0x31,0x3a,0x26,0x81,0x20,0x61,0xf9, +0x83,0x5f,0x22,0x61,0xee,0x35,0x7e,0xee,0x4c,0xea,0xac,0xf7, +0xd0,0xc7,0xa4,0xb9,0x07,0x9a,0xc5,0x72,0xaf,0xe5,0x12,0x52, +0x7e,0x80,0x85,0xf6,0x27,0xc8,0xa4,0x49,0x2c,0xdc,0xe7,0x6c, +0x8c,0xc7,0x9c,0xfb,0xed,0x7b,0x6d,0x38,0x7e,0xe4,0x20,0x7a, +0xa8,0x77,0x10,0x06,0x1f,0xea,0x1f,0x84,0xf9,0xc6,0x64,0xfe, +0x89,0xc1,0x5b,0x64,0xf0,0xc4,0x10,0xd5,0x04,0xbd,0xec,0xf4, +0x51,0xca,0x4e,0x0c,0x3a,0x8e,0xca,0x4f,0x89,0x2b,0xe2,0x37, +0xec,0xaf,0x99,0x8f,0x52,0x96,0xbc,0x8a,0x4e,0x07,0x7e,0xbe, +0xd0,0x21,0xcc,0x67,0xf9,0x50,0x52,0x8c,0x84,0x13,0x63,0xfc, +0x09,0x46,0x20,0x6b,0xff,0xcf,0x62,0x76,0xfd,0x9f,0x1c,0x99, +0x9f,0x8d,0xf8,0x13,0x9a,0xc2,0x09,0x46,0x3a,0x97,0x3f,0x71, +0x92,0xfe,0x4f,0x6a,0xe0,0x15,0x74,0xdf,0xf7,0x27,0xfb,0x87, +0x0e,0x65,0xbd,0xf8,0x78,0xd5,0xca,0x86,0x43,0x54,0x68,0x9e, +0x84,0xa5,0xe8,0xa7,0xc2,0xdf,0xeb,0xa7,0x9a,0x1c,0x5b,0xb0, +0xa6,0xe3,0x46,0x97,0x75,0xfe,0x2f,0x2c,0x93,0x52,0xa6,0xf6, +0xe7,0x3c,0xd8,0xae,0xcb,0xa6,0xcb,0x82,0x23,0x7d,0xb0,0x0c, +0xf5,0x80,0x74,0x92,0x5c,0x81,0x93,0xa3,0xe4,0x24,0x49,0x53, +0x07,0x27,0x09,0x71,0xce,0x1a,0xa2,0x53,0xf8,0xc6,0x14,0xa9, +0xed,0x13,0xfe,0x32,0x22,0x45,0x6a,0x30,0x08,0xeb,0x06,0x83, +0xd9,0x6d,0xea,0xe2,0xfe,0x54,0x9f,0x6e,0x83,0x1d,0xfd,0x05, +0x31,0x9e,0x8d,0x42,0xc0,0xa7,0x0b,0x7b,0xc0,0x9c,0x3e,0xaf, +0x29,0xfa,0xbf,0x8b,0x84,0x5d,0x51,0x84,0x9c,0xf4,0x57,0x1a, +0x80,0xa6,0xac,0x40,0x1f,0x5f,0xcf,0x1d,0xca,0xeb,0xca,0xe7, +0x6c,0xc8,0xc7,0x2d,0xac,0xdc,0x7f,0xd4,0xff,0x86,0xbf,0x78, +0x52,0x41,0x57,0xbe,0xac,0xdb,0x71,0x90,0x83,0xfd,0xb0,0x1c, +0xdd,0xae,0x69,0xaf,0xcf,0x6b,0xa2,0x60,0x94,0x67,0x2d,0x77, +0x78,0xe0,0xc4,0x4d,0xab,0xc2,0xff,0xbc,0x98,0x59,0xa5,0xff, +0x0e,0x9d,0x3a,0xbb,0x86,0xe3,0x43,0xc8,0x2e,0x04,0x8e,0x63, +0xc4,0x91,0x5c,0xa0,0x28,0xbd,0x99,0x4d,0x33,0x52,0x22,0xaa, +0x4c,0xa7,0x18,0x28,0x41,0x3e,0x14,0xbe,0x97,0xb0,0xf3,0x14, +0x6f,0x2b,0xe2,0xd1,0x43,0xf5,0x83,0xd0,0x6e,0xa0,0xd8,0x36, +0xc0,0x4e,0xef,0x32,0x13,0xfb,0xfb,0x92,0xf7,0x77,0xcd,0xf0, +0x7e,0x83,0x2a,0xe4,0xef,0xe8,0xeb,0xe5,0xea,0x51,0xeb,0x82, +0xeb,0x2b,0xf3,0x4b,0x0a,0x1a,0x38,0x50,0xd5,0x44,0xfe,0x15, +0x5e,0x15,0xde,0x45,0xb6,0x6e,0xb8,0xdc,0xab,0xd0,0x33,0xdf, +0x95,0x23,0x43,0xc9,0xa8,0x3c,0xb5,0x2c,0xb5,0x28,0xdd,0xb3, +0x15,0xeb,0xbb,0x1d,0xf2,0xde,0x1b,0xc2,0x81,0x09,0xeb,0x70, +0x21,0xd5,0x74,0x24,0x65,0x32,0xab,0x3f,0x5b,0xf9,0x42,0xa7, +0x7b,0x94,0x73,0x94,0xf3,0x79,0x65,0xb2,0x81,0xcd,0x8f,0xcf, +0x4f,0xc8,0x4f,0xcc,0xd9,0xdc,0xb4,0xff,0xaa,0x66,0x63,0x1b, +0xd6,0xea,0x73,0xb8,0x15,0xf4,0x44,0x8c,0x5a,0x54,0x43,0xe9, +0x12,0xa5,0x11,0xa6,0x33,0xa7,0xb0,0x35,0x49,0x35,0xa9,0x2f, +0xf6,0xce,0xc3,0x45,0x10,0x62,0x36,0xca,0x5c,0xda,0xec,0x69, +0xa2,0x29,0xad,0x93,0xe1,0xfb,0x63,0x15,0xd7,0xe3,0xff,0xe0, +0x6e,0x30,0xb2,0xcb,0xea,0x17,0x5c,0x54,0x7c,0x2e,0x46,0x45, +0xbb,0x2d,0x06,0xf5,0x31,0x0a,0x21,0x5a,0xdd,0xfa,0xf5,0xd4, +0xa2,0xfb,0xed,0x86,0xa4,0xa2,0x37,0x7e,0x87,0xd2,0x75,0xb8, +0x34,0x48,0x28,0x07,0x92,0xc2,0x18,0x9a,0xd0,0xa6,0xfc,0x7a, +0x6e,0xc0,0x8e,0x55,0x9b,0x55,0x3a,0xcc,0xfb,0x7b,0x6b,0xba, +0xf3,0x7b,0x94,0x79,0x55,0x58,0x33,0xc6,0x6f,0xd0,0xd2,0x60, +0xa6,0x35,0xfe,0x95,0x11,0xae,0xec,0xf9,0xb6,0xdf,0x0b,0x4d, +0xc1,0x2b,0x91,0xf5,0x28,0xa9,0x22,0xae,0x22,0xa6,0x8a,0xe3, +0xe7,0x7e,0x48,0x39,0xb6,0x5c,0x61,0x42,0x99,0xbc,0x56,0x87, +0x56,0x8d,0x8b,0x8c,0x32,0xf9,0x7e,0xab,0x7e,0x19,0x77,0x8f, +0x92,0x6b,0x68,0xe1,0x3b,0x49,0x0b,0x2b,0x44,0xc2,0xeb,0xe8, +0x0e,0x7f,0xe6,0x18,0x2b,0x9c,0x81,0x79,0xe8,0x01,0x7f,0x86, +0x6a,0x98,0xbb,0x6b,0x66,0xbc,0x9b,0x7a,0x83,0xf3,0x4c,0xa6, +0x25,0xe9,0x80,0x29,0xa7,0xd8,0x06,0x31,0x28,0x21,0x38,0x21, +0x38,0x3e,0xa4,0x23,0x0b,0x87,0xc8,0xbd,0x6f,0xf8,0x74,0x9a, +0x07,0xe1,0x54,0xbf,0x54,0xef,0x14,0x4f,0xcb,0xf3,0x26,0xd1, +0x92,0x0b,0xe3,0xb7,0x86,0xee,0x77,0x3d,0xb2,0x28,0xc3,0x6e, +0xc6,0x0e,0x46,0xd6,0x92,0xe0,0xdc,0xc0,0xbc,0xc0,0xdc,0xba, +0xd6,0xaa,0x8e,0xd2,0x2e,0xf3,0x52,0xec,0x6b,0xe1,0x66,0xe1, +0x6c,0x6b,0x57,0x8f,0xed,0x1d,0x9a,0x6d,0xba,0x4c,0x1b,0xa5, +0xca,0xfe,0xbe,0xfe,0x7e,0xe7,0xfc,0x8c,0x2f,0xe1,0xb0,0xa6, +0xa0,0xb6,0xe0,0x6a,0xcb,0x40,0xf1,0xd7,0xbc,0x92,0x3d,0x6d, +0x2f,0x58,0x5e,0x30,0xbf,0x38,0x7e,0x7d,0xe0,0x7e,0xf7,0xc7, +0xf4,0xd7,0xdc,0x4d,0x1c,0x24,0xb6,0xa6,0x41,0xf4,0xd7,0x02, +0x72,0xeb,0x5a,0x2a,0x5a,0x4b,0x3b,0xcd,0x4b,0xb0,0xaf,0xb5, +0x87,0xa5,0xb3,0x7d,0x58,0x7a,0x68,0x7a,0x78,0xaa,0xbd,0x03, +0x6e,0xb5,0xeb,0x30,0x6d,0x90,0x9d,0xf3,0x39,0xe7,0xeb,0xeb, +0xeb,0x79,0xd9,0xf3,0x8a,0xf7,0x95,0x04,0x09,0x7e,0x9a,0xf0, +0x67,0xca,0xd7,0x59,0xf1,0xb4,0xc5,0x71,0xa1,0xcd,0x19,0xf8, +0xab,0xc4,0x5f,0x52,0x3f,0xcf,0xe2,0xa6,0x8f,0x13,0x65,0xe4, +0x28,0x9e,0xf1,0xe7,0x4e,0xad,0x95,0xcf,0xf8,0xe9,0x99,0x93, +0xff,0x5c,0x2b,0x4c,0xa3,0x8e,0xde,0xe6,0xeb,0x05,0x23,0xc6, +0x59,0xd8,0xcf,0xc4,0x5e,0x47,0x6a,0xc2,0xf1,0x57,0xc9,0x72, +0x54,0x6d,0x54,0xae,0x55,0xac,0x3b,0x90,0x83,0xbd,0x07,0xdd, +0xc6,0x1c,0x7b,0x39,0x70,0x3f,0x87,0x4a,0x0c,0x73,0x35,0x33, +0x8d,0x07,0x33,0x71,0xf0,0xa0,0xdf,0x88,0x37,0x7d,0xcf,0x33, +0x0c,0x65,0x18,0xa7,0x9e,0x4e,0x30,0x1b,0x4d,0xc5,0x51,0xbd, +0xe1,0x53,0xc1,0x3d,0x14,0x66,0x59,0x85,0x32,0x82,0xf7,0x46, +0xc8,0x29,0xb8,0xd1,0x4d,0xf2,0xbb,0x20,0xbf,0x5f,0x0b,0xd6, +0x41,0x3c,0x9c,0x1a,0x22,0xef,0xb1,0x7b,0x6e,0x22,0xc3,0x36, +0xf5,0x36,0x0d,0x31,0x8c,0x61,0xca,0x61,0xc4,0x66,0x40,0xc6, +0x91,0x03,0x27,0x91,0x29,0xff,0x81,0x9c,0xa5,0x72,0x13,0x23, +0x83,0xce,0x63,0x3d,0xa7,0x44,0xfd,0x75,0xc3,0xee,0xaa,0x74, +0x94,0x0e,0x81,0xc7,0x45,0xa4,0xd1,0xa1,0x51,0x7b,0xa4,0xd2, +0xd9,0x1a,0xdf,0x77,0x1e,0x73,0x9a,0x94,0x72,0x82,0x1a,0x1d, +0x6f,0x3d,0x73,0x0d,0xc7,0x03,0xbe,0xc5,0x52,0xfc,0x59,0xe9, +0x78,0xe3,0x64,0x37,0xc7,0x6b,0x80,0x26,0x02,0x8d,0x9b,0x7b, +0xaf,0x5a,0x4c,0x72,0xda,0x8c,0xd5,0x99,0x3d,0x9a,0xa0,0x7d, +0xa2,0xc8,0x18,0x17,0x25,0x17,0xa4,0x14,0xa4,0x70,0xf0,0xfb, +0xe0,0x00,0xff,0xbe,0xc1,0x30,0xf9,0x83,0xcd,0x8f,0x2c,0x88, +0x2c,0x8c,0xe4,0x04,0x8d,0x6f,0xd0,0x44,0x73,0x5b,0x5b,0x6e, +0xf3,0xcc,0x4c,0x6d,0xb3,0xbc,0x6a,0xc5,0x4d,0xaf,0x13,0xd6, +0xff,0x2b,0xd5,0x7b,0xd1,0xcb,0x54,0xef,0x54,0xde,0x2d,0x20, +0x19,0x68,0x98,0x7f,0x5f,0x97,0x95,0xcd,0xd5,0x11,0xde,0x1f, +0x61,0x57,0xce,0xe5,0xdf,0x57,0x17,0x6b,0x6f,0x90,0x3c,0x85, +0x14,0x99,0xb7,0x1a,0xb6,0x19,0xd5,0x3a,0x88,0x34,0xb3,0xd3, +0x5a,0x3c,0xc0,0x11,0xb0,0x0d,0x19,0x8d,0xa9,0x4d,0x48,0x1b, +0x2c,0x9d,0x70,0x95,0x77,0xbd,0x53,0xad,0x23,0x47,0x95,0x0d, +0x26,0x8f,0x06,0xa7,0xb5,0xf4,0x09,0xed,0x28,0x98,0x31,0xd5, +0x35,0xe5,0x75,0x79,0xd5,0x92,0x42,0x6c,0xa7,0xab,0xaf,0x7b, +0xc6,0xbc,0x56,0x8a,0xb3,0xd2,0x94,0x04,0x61,0x48,0x31,0x8f, +0xf8,0x09,0xc2,0x20,0x2f,0x90,0x50,0x61,0x84,0x0a,0xb5,0x6c, +0x3d,0xa5,0x6f,0x98,0xee,0xdc,0xbc,0x1e,0x55,0xbe,0x85,0x4d, +0xb8,0x10,0x4f,0xff,0x71,0xff,0x7c,0x37,0x19,0x0d,0x59,0x8f, +0x9a,0xf6,0x88,0x64,0x41,0xd6,0xa1,0xd6,0xaf,0x4d,0xc9,0xc2, +0x3d,0xf8,0x04,0x95,0x96,0x94,0x55,0x15,0xd7,0xe6,0xfa,0xe5, +0xf8,0x66,0xf9,0x55,0xd7,0xe2,0xa0,0x42,0xff,0xa2,0x73,0xc5, +0x25,0x4d,0x85,0xcd,0x19,0x75,0x56,0x05,0x38,0xcc,0x25,0xc0, +0xd1,0xcf,0xd1,0xb7,0xd8,0xaf,0xe8,0x5c,0xae,0x8b,0x23,0x2e, +0xf0,0x2f,0xf6,0x2e,0xf2,0xf4,0xb2,0x77,0x77,0x76,0xf7,0xe6, +0xc8,0x4d,0x7b,0x54,0x56,0x52,0x56,0x5d,0x52,0x9b,0xe7,0x9b, +0xe3,0x93,0x75,0xae,0xb2,0x16,0x87,0xe4,0x9f,0x2b,0xf1,0x2b, +0x2e,0x69,0x2e,0x68,0xce,0xac,0xb3,0x9e,0xb9,0xda,0xc1,0xd7, +0xc1,0xa7,0xd4,0xbb,0xf8,0x5c,0xae,0xab,0x13,0x2e,0x08,0x28, +0xf1,0x2c,0x75,0xf7,0x74,0x98,0xb9,0x5a,0x68,0x16,0xd8,0xe7, +0x99,0xb5,0xff,0x75,0xc0,0xdb,0x72,0x26,0xb3,0x36,0xef,0x46, +0xae,0xa3,0x30,0x17,0x7f,0xf1,0xbe,0x45,0xbe,0x85,0xfe,0x79, +0xae,0xf4,0xbe,0xe7,0x8a,0x7c,0x0a,0xbd,0xbc,0x1c,0xdc,0x9c, +0xdc,0xbd,0xab,0x1d,0x70,0x79,0x49,0x79,0x75,0x49,0x5d,0xbe, +0x77,0x9e,0x77,0x8e,0x6f,0x65,0x0d,0x0e,0x2a,0xf2,0x2b,0xf5, +0x2d,0x2d,0xa5,0x6d,0xce,0xac,0xe3,0xa8,0x7f,0xd7,0x42,0xc1, +0x05,0xfe,0xb4,0x1d,0x65,0xcd,0x45,0xad,0xb4,0x1d,0xf9,0x38, +0xd4,0xc5,0xdf,0xde,0xc7,0xd1,0xa7,0xc4,0xa7,0x38,0x20,0x87, +0xf6,0x22,0x2f,0xa0,0xd8,0xab,0xc4,0xdd,0xd3,0x91,0xb6,0xc3, +0xa7,0xd6,0x1e,0x97,0x16,0x97,0x55,0x89,0x7d,0xc8,0xa5,0x7d, +0xe0,0xc4,0xbc,0xfc,0x96,0x68,0xdd,0x08,0x59,0x0f,0xfd,0xb7, +0xb5,0x8e,0x43,0x09,0xac,0x1f,0xf9,0x91,0xdd,0x7a,0x85,0xba, +0x61,0xe3,0x56,0xe3,0x1a,0x67,0x0b,0x0a,0x45,0xed,0xb6,0x9d, +0xd4,0x67,0x7c,0x72,0x09,0xb5,0x7a,0x76,0x3a,0xd5,0xba,0xd4, +0x36,0x62,0xe7,0x0a,0x59,0x8d,0x39,0xf5,0xc2,0x6f,0xc1,0x56, +0x64,0x98,0x13,0x34,0xa0,0x42,0x8c,0x99,0x86,0xcc,0xac,0x46, +0xd5,0x41,0xd6,0x28,0x43,0xe9,0x28,0x9c,0x60,0x3d,0x2e,0x24, +0x94,0xaa,0xfe,0xac,0xcb,0x1e,0x08,0x43,0x7e,0x66,0x8e,0x52, +0x6b,0xab,0x0e,0x67,0xdc,0xdc,0x56,0xdb,0x5b,0xdc,0xcf,0x11, +0x3e,0x02,0xd5,0xdb,0x50,0x0a,0x2f,0x6d,0xab,0xc0,0x4e,0x72, +0xab,0x3e,0x87,0x7a,0x6e,0xba,0x75,0x0b,0x1a,0xa1,0xba,0xa2, +0xc7,0xb4,0xa1,0x0d,0x4b,0x3b,0x67,0x86,0x4b,0x31,0x06,0xbb, +0x90,0x70,0x1b,0x96,0xea,0x9b,0x28,0x4e,0x74,0x6b,0x31,0xc2, +0xca,0x6f,0xd1,0x26,0x78,0xf3,0x5b,0x96,0x74,0x6e,0x42,0x30, +0xef,0x5b,0x32,0x8f,0x21,0x47,0xe9,0xab,0xb7,0xbe,0x25,0x6f, +0x31,0xd3,0x81,0x82,0xd1,0x8b,0x98,0xb4,0x52,0x91,0x61,0xce, +0x1c,0x73,0x79,0x4d,0x8d,0x1a,0xa6,0x9c,0xd0,0xef,0x2c,0xa5, +0x4d,0xca,0xd1,0x57,0xa2,0x02,0xb8,0x35,0x37,0xaf,0x45,0xdc, +0x47,0xab,0xef,0x9f,0x5e,0x6d,0x48,0xbd,0x07,0x50,0x24,0xfc, +0x60,0x84,0x12,0xe6,0x9e,0x47,0x5a,0xfb,0xa0,0x12,0x56,0x0d, +0x7f,0xcf,0x9e,0x48,0x99,0xc9,0xab,0x67,0xf0,0x3c,0xaf,0x9e, +0x7c,0x26,0xad,0xf0,0xff,0xec,0x47,0x47,0x6d,0x0e,0x38,0xed, +0xf2,0xe0,0xa8,0xe6,0xb5,0xeb,0x14,0xcc,0xa5,0x44,0x0f,0x10, +0xbb,0xc1,0x7d,0x95,0xef,0x52,0xff,0x4c,0x13,0x5c,0x14,0x5f, +0x98,0x50,0x48,0xa5,0xc4,0x08,0xdf,0xc2,0xbf,0x02,0xe3,0xec, +0xb7,0x25,0x64,0x76,0x23,0x99,0x3d,0xc6,0x4d,0x2f,0xd8,0x8c, +0xa8,0xd0,0xfe,0x57,0xc0,0xa0,0xe9,0xa0,0x29,0x47,0x22,0xc8, +0x01,0x64,0xe3,0xa0,0x61,0x7f,0xc6,0xbd,0xd4,0x12,0x5f,0x2b, +0x1f,0xab,0xef,0x69,0xe1,0x76,0x80,0x37,0x9a,0xe4,0x0f,0xa9, +0xb3,0xd3,0xf3,0xfc,0xfe,0xeb,0x96,0xcd,0x06,0x35,0x34,0xc5, +0x1f,0x52,0x63,0x85,0x43,0x30,0x1b,0xdd,0xe0,0x0f,0x51,0x8a, +0x7d,0x1f,0xf4,0xd0,0xb7,0x05,0xe4,0xcd,0xc6,0x9b,0x35,0xce, +0xed,0x58,0xcf,0x63,0xa9,0xc3,0x52,0x3f,0x8e,0xdf,0x53,0x8d, +0xbe,0x0c,0x24,0xb3,0x1c,0x3f,0x76,0x2a,0xee,0xc1,0xfb,0x6a, +0x60,0x76,0xed,0x9e,0x2c,0x2a,0x1b,0xde,0x52,0x7c,0x45,0xb5, +0xc8,0x59,0x29,0x2c,0xdf,0x0d,0xef,0x35,0x1a,0xe1,0x9a,0x9e, +0xa2,0xee,0x9c,0x76,0x4e,0x18,0x18,0x56,0x18,0xb1,0x39,0x13, +0x39,0x37,0xd2,0xef,0x88,0x85,0xb8,0x0e,0x21,0x72,0xd4,0x18, +0x8e,0xee,0x9d,0xf9,0x0b,0xbb,0x4d,0xf8,0xdc,0x6e,0x76,0xfa, +0x50,0x07,0x32,0x6d,0xd7,0xe9,0xd0,0xae,0x75,0x31,0xa7,0xd2, +0xa6,0xd7,0xba,0x4f,0xca,0x29,0x16,0x90,0xad,0x28,0xd4,0xc6, +0x5b,0xea,0x6b,0xdf,0xe2,0x83,0xa9,0x39,0xb6,0x67,0xb7,0x70, +0x20,0xac,0x46,0x81,0x6d,0xbe,0x6d,0xbe,0xb5,0x16,0xde,0xb8, +0xd8,0x3e,0xdf,0x2a,0xd7,0x82,0xfb,0x1d,0x0e,0xa3,0x90,0x7a, +0xff,0xa6,0xc0,0x32,0x73,0x3f,0x9c,0xe7,0x96,0x6b,0x9b,0xee, +0xcc,0xf1,0x2c,0x7c,0x81,0xfa,0x21,0xf4,0x2b,0x22,0xeb,0x05, +0xd9,0x63,0xe2,0xd1,0x0b,0xaa,0x6c,0x5e,0x55,0x4e,0x73,0x56, +0x93,0x69,0x0e,0x0e,0xb5,0x38,0x67,0xee,0x63,0xcd,0x41,0xaf, +0x31,0x71,0xdc,0x0b,0xc6,0xc6,0xc4,0x78,0x1b,0xf8,0x19,0x12, +0x7b,0xc6,0xff,0xe4,0x29,0x23,0x58,0xa8,0x59,0x4c,0x39,0xe5, +0x8a,0x9b,0xf7,0xc7,0xb2,0xbf,0xa3,0xc8,0x94,0xb5,0xf9,0x13, +0x0d,0xb2,0xea,0x24,0xed,0x2a,0x2c,0x1a,0x3f,0xd1,0xeb,0x4f, +0x89,0x7a,0x0a,0xb9,0x49,0x0d,0x58,0xf4,0xa5,0x4e,0x32,0x6a, +0xc0,0x83,0xb2,0x2e,0x73,0x6e,0x9d,0x10,0x2a,0x3a,0xc7,0x99, +0x94,0x63,0x86,0xf9,0x2f,0xd2,0xa5,0x8a,0xc5,0x3c,0xf8,0x0c, +0xc5,0x56,0xd4,0x43,0xec,0x25,0x23,0x3d,0x64,0x7f,0x1f,0xec, +0x9f,0xd2,0x51,0x03,0x7b,0xf1,0xcf,0x4e,0x23,0xb2,0x53,0xc2, +0xc2,0xde,0x46,0xea,0xf7,0xb4,0x3b,0x75,0xea,0x66,0x54,0x5d, +0x9f,0x55,0x1f,0x25,0x70,0xb3,0x60,0x3b,0x1a,0x22,0xca,0xd3, +0x73,0x40,0x79,0xc8,0x4d,0x0c,0xd1,0xfe,0x9f,0x60,0x4a,0x47, +0x4f,0x0d,0xa8,0x35,0x51,0xe7,0x3d,0x41,0xe9,0xe8,0x80,0x84, +0xb2,0x3c,0x32,0x1b,0x09,0x89,0x53,0x7c,0x22,0xb3,0x4b,0xd8, +0x8d,0x7a,0xaa,0x7a,0x5a,0x9b,0x3b,0xad,0x1b,0xb0,0x8d,0x99, +0xa9,0x9d,0xb5,0x87,0x57,0x57,0x60,0x4f,0xe8,0x00,0x47,0x02, +0x7b,0xa6,0x91,0x84,0x84,0x32,0x6a,0x36,0xbb,0x5c,0x61,0x96, +0x17,0x65,0xcb,0x4f,0xf2,0x3f,0x29,0x9f,0xaa,0xa3,0x4e,0x2c, +0x24,0x35,0xe4,0xb8,0xd9,0x4a,0xd9,0x72,0xd7,0x7c,0xda,0xdd, +0xb9,0xb5,0x7f,0xf6,0x5e,0xef,0x4c,0xf5,0x4f,0x09,0x48,0xf2, +0xdf,0x76,0x1a,0x16,0x68,0xc0,0x22,0x1b,0x31,0xb8,0x6c,0x49, +0x33,0x79,0xf7,0xc6,0xc7,0x13,0x5c,0x5c,0x60,0x6c,0x50,0xd0, +0x22,0xcd,0x40,0x5f,0x3d,0x95,0x1d,0x4c,0xb6,0x81,0xd2,0x63, +0xe6,0xf3,0xda,0x96,0x6f,0xbf,0x36,0xfc,0xed,0xcc,0x2d,0xd5, +0x9c,0xd4,0xac,0xf4,0xcc,0x34,0xae,0x83,0xa9,0x86,0xed,0x5f, +0xc1,0x6a,0xb2,0x75,0x75,0x4d,0x37,0x3e,0x24,0xd7,0x1f,0xb0, +0xa2,0xe6,0x79,0x02,0x02,0xd1,0x4b,0x82,0xfc,0xbf,0xf2,0xc4, +0xff,0xfd,0x06,0xf9,0x1a,0x91,0xd2,0x61,0x2a,0xa3,0xe4,0x0f, +0x34,0x0e,0x41,0x13,0xd5,0x94,0x50,0x4a,0x5e,0x63,0x4d,0x74, +0x8f,0x18,0xad,0xb4,0x29,0x35,0xc4,0xc3,0xc5,0xf2,0xb2,0xd6, +0x4a,0x8e,0x97,0x30,0x57,0x34,0x2f,0x9e,0x8c,0x32,0xe6,0xac, +0xa3,0x03,0x23,0xcc,0x17,0x6f,0x61,0x32,0x0d,0x94,0x3e,0x67, +0xee,0xd7,0x14,0x8f,0xa7,0xa9,0xa6,0x4f,0xc4,0x5d,0x8f,0x25, +0xf3,0x38,0xc1,0x94,0x29,0x2e,0xcc,0x2f,0xca,0x2b,0xe6,0xa0, +0x9c,0x7f,0x1b,0x49,0x5b,0xf5,0x5b,0xf4,0xc5,0x74,0x3f,0xc3, +0xf6,0x33,0xf3,0x8b,0x10,0x90,0x22,0x39,0x9c,0xbc,0xcd,0x5e, +0x4b,0xb8,0x9a,0x31,0x5a,0xec,0xd5,0x89,0xb5,0xbd,0x0e,0x07, +0xef,0xb8,0xc2,0x7d,0xc2,0x97,0x9c,0x82,0x78,0x09,0x31,0xdc, +0x0f,0xea,0xa6,0x44,0x7d,0xb7,0xb0,0xfd,0x53,0x16,0x3e,0x0c, +0xa7,0x73,0xea,0x44,0xdf,0x59,0xf1,0xf0,0xe5,0x94,0xcd,0xa4, +0x29,0x15,0x8d,0x30,0x5f,0xf0,0xfc,0xd7,0x82,0xd5,0xf3,0x8a, +0x98,0x2f,0x52,0x14,0x7f,0x48,0xb4,0x51,0x9e,0x4b,0x81,0x34, +0xd3,0xb6,0xbb,0x04,0x07,0x36,0x9d,0x6b,0x3f,0x57,0x21,0x9e, +0x55,0x49,0x41,0x63,0x1f,0xd7,0x3e,0xca,0xb9,0x2d,0xc6,0xf1, +0x9d,0x74,0x39,0xa1,0x75,0x84,0x23,0x8f,0x88,0x1e,0xca,0x37, +0xc9,0x36,0xca,0xd4,0xec,0xcb,0xc3,0x21,0xc3,0x41,0xdd,0x3e, +0x7d,0x1c,0xec,0x0b,0x44,0x69,0x67,0x12,0x0f,0xc7,0x6b,0x0d, +0xa6,0xe2,0x0b,0xe3,0x51,0xf7,0xc2,0xae,0xd2,0x67,0x33,0x5b, +0x61,0x86,0x56,0x8d,0x90,0x8d,0xd0,0xf7,0x89,0xc6,0x7e,0x68, +0x81,0x4d,0x43,0xbf,0xb1,0xfb,0x28,0x6a,0xce,0x24,0xd0,0x16, +0x17,0x49,0x6c,0x3b,0xac,0xc5,0x5c,0xb2,0x7e,0xc2,0x2c,0x04, +0xeb,0x3a,0xb6,0xb6,0x99,0x77,0x71,0xa4,0xb8,0x1b,0x6e,0x91, +0x57,0x99,0xc7,0x89,0x1f,0x27,0xdd,0x4a,0x75,0x97,0x63,0xc0, +0xe7,0xe0,0x44,0x38,0x1c,0xb8,0x9c,0x6a,0x82,0x6f,0xc6,0xdc, +0x8a,0xbb,0x45,0xf1,0x83,0x81,0x61,0x13,0x92,0xce,0x9a,0x9b, +0x6e,0x95,0xc2,0x2a,0xf3,0x5c,0x53,0x5c,0x98,0x58,0x90,0x94, +0x97,0xc4,0xc1,0xcf,0x83,0xfd,0xbc,0x86,0xe1,0x30,0xf9,0x89, +0xcd,0x8b,0xce,0x8b,0x2e,0x88,0xe6,0xe0,0x2c,0x89,0x40,0x15, +0x95,0x65,0xf5,0x39,0xd5,0x92,0x62,0x1c,0xe4,0xe2,0x66,0xe7, +0xe1,0xc9,0x4d,0xef,0xa9,0x9b,0x49,0xb9,0xd1,0x65,0xda,0x42, +0x75,0x63,0xe7,0x4c,0x02,0x6d,0x72,0xdb,0x11,0x15,0x79,0x17, +0x7a,0xe4,0x78,0xcb,0x8b,0x71,0x48,0x89,0x77,0xa5,0x4f,0x11, +0x77,0x18,0x26,0x10,0x99,0xd7,0x71,0xa3,0x3b,0x73,0x88,0x4a, +0x5e,0x51,0x21,0x26,0x31,0x99,0x7a,0x37,0x4c,0xc8,0x02,0x19, +0x37,0x1d,0x0d,0x3f,0xff,0xf7,0x83,0x04,0xdf,0x13,0x35,0xf4, +0x09,0xd1,0xd9,0xcf,0x0e,0x2d,0xfc,0x84,0x18,0xef,0xa7,0x42, +0x4b,0x86,0x76,0x80,0xce,0x17,0x2c,0xb9,0xbc,0x90,0x18,0xef, +0x00,0x63,0x46,0x4c,0xa2,0xb2,0x11,0xe5,0x99,0x15,0x5b,0x96, +0x39,0x48,0xbd,0x8c,0xfc,0xb5,0x83,0xb2,0x4d,0xf0,0x54,0xf6, +0x48,0xd1,0x40,0x65,0xbd,0x7d,0x8b,0x47,0x7b,0x50,0x5b,0x50, +0x71,0x42,0x62,0x5b,0xc6,0x37,0xd8,0x22,0x3f,0x74,0x85,0x4d, +0x86,0x5d,0xa1,0x53,0x95,0x72,0x5b,0x79,0x73,0x5d,0x43,0xab, +0x43,0x0d,0xb6,0xb3,0xb6,0x71,0xb2,0x70,0xf7,0xae,0x38,0x57, +0x17,0xd8,0x42,0x12,0x2a,0x70,0xb4,0x1c,0xb2,0xdd,0xc3,0xeb, +0x23,0x9b,0xa3,0xdb,0x95,0x8d,0xa2,0x12,0x2c,0x53,0x6c,0xd2, +0xed,0x94,0x0f,0x47,0x25,0x49,0x94,0x48,0x17,0x59,0x82,0x1c, +0xb2,0x8d,0x72,0x2d,0x53,0x02,0xac,0x71,0x73,0xe4,0x80,0x7f, +0x6d,0x30,0x27,0x7c,0x6d,0x8b,0x6c,0x5a,0xa4,0x6d,0x66,0x75, +0x4e,0x96,0xb8,0xdb,0xb6,0xc9,0xa6,0xd5,0x82,0x9b,0x10,0x2b, +0xfa,0xbd,0x4b,0x52,0x14,0xef,0xb2,0x60,0x01,0x46,0x48,0xdc, +0x4e,0x84,0x15,0x2c,0x24,0xc2,0x3a,0x64,0xdd,0xae,0x3b,0x60, +0xd8,0xe4,0x40,0xbf,0x6b,0x3d,0x20,0x69,0xa3,0xaa,0x66,0xe9, +0x15,0x44,0x96,0xd1,0xcf,0x97,0xb1,0xfc,0x02,0x4d,0xe4,0x98, +0xa3,0x9d,0x6f,0x91,0xe6,0x6d,0x8b,0x5b,0x23,0xa6,0x7c,0x6b, +0x02,0xb9,0x6b,0xf0,0x04,0x59,0x66,0xdb,0x95,0x3a,0xd7,0x74, +0x36,0xb7,0x74,0x35,0x0d,0xda,0x54,0x61,0x07,0x63,0x1b,0x73, +0x99,0x8d,0x47,0xa3,0x4f,0x47,0x40,0x0f,0x29,0xac,0xc4,0x17, +0x7b,0xa0,0xd6,0x35,0xa2,0x21,0xaa,0x29,0xba,0x45,0xd9,0x38, +0x22,0xc1,0x26,0xc9,0x2e,0xd5,0x4e,0xf9,0xd4,0xf9,0x78,0xa3, +0x47,0x29,0x05,0xda,0xe5,0x06,0x35,0x32,0x65,0x23,0x5b,0x6d, +0xe7,0xd3,0x1e,0xa5,0xa6,0xf8,0x66,0xc5,0x78,0xdd,0x60,0x6b, +0xad,0x5d,0xa3,0x47,0x6b,0x60,0x6b,0x60,0xe5,0xe5,0x84,0x8e, +0x4c,0xf2,0x2a,0xb6,0x2c,0x52,0x12,0x9e,0xfd,0x88,0xc8,0x07, +0xb4,0x15,0x54,0x67,0x8f,0x7f,0x85,0x66,0x22,0xb7,0x5e,0xd7, +0x59,0xd3,0x65,0x8f,0x5f,0xc6,0x73,0x71,0xe9,0xf0,0x37,0x1a, +0x1e,0x92,0xdf,0x2c,0x9f,0x32,0x2b,0xc7,0x1e,0x1a,0x32,0x75, +0x03,0x63,0x8e,0x84,0x51,0xf9,0x58,0x6e,0x55,0x26,0xc9,0x37, +0xea,0xa9,0xc0,0x7e,0xbd,0x6e,0xbd,0xee,0x4d,0x54,0xff,0x75, +0xcc,0xa4,0xcc,0xd3,0x6e,0xd7,0xaa,0x75,0x96,0xe1,0x09,0xdb, +0x3e,0xeb,0x7e,0x8a,0xdc,0xa7,0xe1,0x4f,0xd4,0x05,0x56,0xf7, +0xc8,0x99,0x2e,0x38,0x73,0x93,0x7a,0xc3,0x4c,0x61,0x08,0x32, +0xc9,0x3b,0x27,0xe1,0xa0,0x19,0x39,0x78,0x04,0x8c,0xc4,0x28, +0x0a,0x2b,0x8b,0xe3,0x76,0x9b,0x1c,0x4a,0xa5,0xb8,0x33,0xb7, +0xad,0xa0,0xa9,0xa8,0xca,0xb7,0xd2,0xa7,0xca,0xa3,0xa9,0x01, +0xbb,0x16,0xb9,0x15,0xb8,0xe5,0x57,0x14,0x96,0x14,0xe7,0x16, +0x73,0xd4,0xf1,0x67,0xfb,0x16,0x9c,0x2b,0x39,0xe7,0xe1,0xe9, +0xe2,0x6b,0xe3,0xd3,0x60,0x8f,0x5b,0x8b,0x6b,0x4a,0xcb,0x4b, +0x5b,0x3c,0xbb,0x7c,0xe4,0xfe,0x25,0x9d,0x78,0x73,0xdd,0xc9, +0x46,0xab,0x56,0x6e,0x88,0x97,0x20,0x4d,0x41,0x73,0x9c,0xe5, +0x35,0x97,0xa1,0xb3,0x82,0xe6,0x55,0x16,0x96,0x80,0xbe,0x98, +0x01,0xb3,0x5b,0x5b,0x5c,0xa2,0x1f,0x16,0x33,0xfc,0xc8,0x38, +0xfe,0x1c,0x59,0x80,0x4e,0x82,0xfa,0x4d,0x96,0xa8,0x03,0x87, +0x8e,0x80,0xfa,0x3d,0x16,0x26,0x60,0x21,0x7a,0x9e,0x7f,0xeb, +0xf4,0x3a,0xf9,0x7f,0x9c,0x96,0xe6,0xdf,0x81,0x53,0xe8,0x22, +0x39,0xa0,0x0d,0x6d,0xb0,0x82,0xc9,0x96,0x88,0xb1,0x62,0x9d, +0xb9,0x19,0x9d,0xaa,0x9f,0xb3,0x29,0x71,0x31,0x29,0x17,0x55, +0x48,0x3a,0xb0,0x65,0xdd,0x10,0x4b,0x66,0x05,0x25,0x45,0xc5, +0x44,0x85,0x2b,0xc3,0xaa,0x18,0x74,0x54,0x7a,0xc8,0x6d,0xbd, +0x6b,0xb1,0x04,0x3f,0xab,0xfa,0xba,0xe1,0x6e,0x37,0xc5,0xff, +0x22,0x45,0x1a,0x0a,0xa8,0xf4,0xaa,0x0c,0xcc,0x35,0xf2,0xc5, +0x45,0x5e,0x79,0xde,0xd9,0x9e,0x1c,0xbf,0x5e,0xf8,0x16,0x45, +0x86,0x47,0x84,0x87,0x47,0x70,0xc4,0x99,0x2d,0x0f,0xac,0x0c, +0xaa,0x0d,0x2e,0xec,0xc4,0x1b,0x5a,0x4f,0xc8,0x8d,0x87,0x39, +0xca,0x00,0xe0,0xce,0x04,0x29,0xed,0x80,0xd2,0x11,0x32,0xd0, +0x09,0x3a,0x4c,0x7e,0x59,0x5e,0x75,0x66,0x85,0x41,0x36,0x0e, +0xb6,0xf7,0x75,0xf0,0x74,0xe2,0x84,0xb7,0xa4,0xa4,0x4c,0x07, +0x62,0x64,0x24,0x46,0x03,0x3a,0xa5,0x44,0x8d,0x31,0xd4,0x3e, +0x64,0xb4,0xc6,0xae,0xc0,0x0c,0x37,0x64,0xd5,0xe4,0x54,0xe5, +0x72,0xf0,0x07,0xeb,0x78,0xd1,0xe1,0xa2,0xfd,0xa5,0x24,0x63, +0x4c,0x54,0xe8,0xe0,0x17,0xfc,0x5a,0x7c,0xa1,0x13,0xeb,0x86, +0x9d,0x0e,0x3d,0x12,0xce,0x91,0x77,0xc9,0x46,0xf6,0xc6,0xca, +0x3f,0xcf,0x12,0x03,0xd7,0x5c,0x39,0x3e,0x92,0xa6,0x93,0x29, +0xcd,0x1d,0xac,0xec,0x6a,0x6a,0x68,0xe6,0xa6,0xe7,0xf0,0x9f, +0x22,0x13,0x3a,0xa8,0x3a,0x33,0xee,0xd8,0x4e,0xcc,0xe9,0xc1, +0x45,0x83,0x15,0x32,0xe9,0xa4,0xfa,0xac,0xd1,0xd9,0x1c,0x8b, +0x69,0xc3,0xa9,0x3e,0x23,0x1b,0x8f,0xa3,0x6b,0xcd,0xbd,0x9d, +0x4d,0x94,0x75,0x6d,0x66,0x9a,0x8c,0x7a,0xa4,0xd7,0xac,0x38, +0xe0,0xe4,0xa8,0x0d,0x02,0x2d,0x58,0x32,0x00,0x4b,0x90,0xf0, +0x86,0x9c,0x7f,0x83,0x99,0x16,0xeb,0xb4,0xbe,0xdc,0xeb,0x30, +0x12,0xf7,0x3a,0x94,0xc4,0xbd,0x8e,0x75,0x9c,0xc2,0x9f,0x44, +0x23,0x63,0xe1,0x8d,0x5e,0x96,0x3f,0xb2,0x09,0x39,0xbb,0x5a, +0xb9,0x99,0x79,0x59,0x15,0xb9,0x96,0x7b,0xd7,0x50,0x10,0x9c, +0x17,0x83,0x60,0xf9,0xcc,0xa9,0xa8,0x37,0x98,0x9e,0x8c,0xfc, +0x4e,0x55,0xc5,0x75,0x5d,0xca,0x5e,0xe0,0x2d,0x64,0xd9,0x26, +0xe9,0x90,0xcc,0xe4,0x89,0xb1,0x69,0xb3,0xee,0x90,0x71,0x25, +0x94,0xa7,0xdc,0x28,0xe8,0x2f,0x1a,0x28,0x8e,0x0b,0x8f,0x0b, +0x8f,0x8d,0x6c,0xcb,0xc3,0xa1,0xbd,0x9e,0x9f,0xf9,0x75,0x5b, +0x07,0xe1,0x34,0xf7,0x4c,0x8b,0x74,0x6b,0xcf,0x50,0x8f,0x70, +0xd7,0xf0,0x28,0x62,0x88,0x3b,0x93,0x7b,0xb2,0x1b,0x72,0xcf, +0xb5,0x61,0x33,0x3f,0xed,0x00,0xed,0xa8,0x54,0x88,0xc5,0x96, +0x61,0x4a,0xa4,0xe8,0x12,0xea,0x1b,0x2a,0xbc,0xfd,0xfd,0xa2, +0xcc,0x6b,0x6c,0xcc,0xae,0x8b,0x5a,0xd1,0x96,0x9c,0x27,0x15, +0xce,0xbe,0x8b,0x65,0x4c,0xba,0x99,0x52,0x17,0xd3,0x90,0x9f, +0xd9,0x96,0xac,0x9a,0xda,0x17,0xf7,0xe8,0x0a,0x75,0x37,0xe0, +0x2e,0x1d,0x09,0x66,0x3e,0xf4,0x37,0xb6,0x92,0xaa,0x90,0x62, +0xe2,0x87,0xa6,0x97,0x0f,0x28,0x96,0xb3,0xc2,0x75,0x78,0x88, +0xac,0x3a,0xb4,0xe8,0xb4,0xb7,0xb7,0xc0,0xbd,0xd6,0x83,0x92, +0x76,0xfa,0x94,0xae,0x41,0x34,0x22,0xc7,0x3a,0xe1,0xd8,0xfd, +0x3f,0xdb,0x99,0xe2,0xd0,0xd2,0x90,0x8a,0xb0,0x42,0x8a,0xce, +0x6c,0xef,0xe9,0x6e,0xbf,0x29,0x4e,0x87,0xf1,0x3b,0xbb,0x47, +0x1f,0x5e,0x35,0x2a,0x32,0xc3,0xb5,0x99,0x55,0xd9,0xe5,0xd9, +0x9c,0xf9,0x1f,0x87,0xe1,0x8c,0x94,0x9c,0x81,0xed,0xec,0xf1, +0xe8,0x63,0x17,0x8e,0x5e,0x4c,0x32,0xc2,0xe4,0x60,0x1a,0xd9, +0x93,0x45,0x16,0x17,0x5d,0x94,0x63,0xb5,0xc8,0x93,0x91,0xc7, +0xcf,0x73,0x7e,0xbc,0x05,0x4a,0x95,0x74,0x9a,0xdd,0xa0,0x0f, +0x3d,0x95,0xb9,0xd1,0x22,0xef,0x4c,0xed,0xe5,0x84,0x37,0x85, +0x56,0x34,0x35,0x33,0x93,0x0b,0xc5,0xc8,0x4c,0x0f,0x50,0xb2, +0x9b,0x89,0xcc,0xe4,0x9b,0x6f,0xa0,0xe2,0xea,0xdc,0xda,0x8c, +0x1a,0x2a,0x44,0x42,0x9d,0xfd,0x9d,0x7c,0x5d,0x38,0x48,0xbb, +0x8a,0x4a,0x5c,0x4a,0x6d,0x73,0x9c,0x9b,0x4a,0x71,0x60,0x8d, +0x67,0x93,0x57,0x05,0x35,0xd8,0x2e,0x05,0x46,0xda,0x2c,0xac, +0x8d,0x8a,0xb3,0x20,0xab,0x92,0x95,0x02,0x59,0xb3,0xec,0x73, +0x43,0x2a,0x24,0x8b,0xa9,0xcd,0xcc,0xac,0x55,0xad,0x66,0xf5, +0xd3,0x95,0x24,0x10,0xc9,0xfa,0x44,0x27,0x15,0xa8,0xe6,0xb0, +0xc4,0x36,0xed,0x52,0x1b,0x58,0x85,0x2b,0x0d,0x91,0x52,0x36, +0xda,0x2b,0xdc,0x33,0x2a,0x60,0x20,0x14,0xa7,0x96,0xa6,0xd7, +0x25,0x55,0x71,0x0d,0xf0,0x78,0x80,0xc8,0x3b,0x41,0xde,0xad, +0x41,0x45,0xe8,0x79,0xb0,0x63,0x21,0xe0,0x1c,0x7c,0x78,0x06, +0xb0,0x4a,0xaf,0xbd,0xd2,0x5d,0xb2,0xae,0x80,0xec,0x22,0x17, +0x17,0x91,0x5d,0xec,0x8e,0xbb,0xd4,0x69,0x8b,0xe1,0x0b,0x94, +0x14,0x8b,0x01,0x0d,0xd4,0x69,0x8b,0x85,0x97,0xfe,0x4f,0x91, +0x38,0x9f,0xcb,0x08,0xa2,0xe9,0x3c,0x8e,0x66,0xa1,0x68,0x1d, +0x82,0x6d,0x43,0x94,0x74,0xf7,0xe9,0x51,0xb6,0xb4,0x4b,0x8f, +0x9d,0x5e,0x17,0xf8,0xdf,0x98,0x2d,0xbf,0xe8,0x12,0xd2,0x82, +0x6d,0x63,0x2c,0xb1,0x5f,0x48,0x76,0x69,0xc1,0x2e,0xe6,0x36, +0xcc,0x47,0x36,0x65,0xda,0x95,0x66,0xd9,0x5e,0x56,0xb8,0xd3, +0x7f,0xd0,0xb3,0xcd,0x95,0xbb,0x39,0x82,0x9a,0xa4,0x1d,0x47, +0x8b,0x0d,0xe4,0x65,0xd8,0xbb,0xdf,0xec,0xbe,0x4d,0x3b,0x07, +0x91,0xb0,0x11,0xb9,0x45,0xa5,0x94,0xa9,0x12,0x4e,0x64,0xe3, +0x46,0xf9,0x7e,0xa3,0x2a,0xe4,0x00,0xd3,0x9e,0x9e,0x57,0xa7, +0x3a,0xc9,0x1a,0x64,0x2a,0xed,0x65,0x85,0x37,0xf4,0x51,0x63, +0x6f,0xd5,0xf5,0xfc,0xeb,0x92,0x2c,0x1c,0xa0,0xe9,0xa2,0x69, +0x67,0x42,0x4d,0x77,0x93,0x42,0x09,0x75,0x09,0xc5,0xac,0x75, +0x78,0x52,0xa9,0x6a,0x1d,0xff,0xb5,0x1c,0xa6,0x06,0x34,0x0c, +0xa0,0x76,0x3b,0xab,0x5b,0xe4,0x7f,0x4f,0x05,0xe6,0x3f,0x41, +0x56,0xed,0x92,0x4e,0x93,0x7a,0x7b,0xd1,0x86,0x5b,0xad,0x3a, +0xa4,0x5c,0x01,0xb8,0x21,0x59,0xcf,0x99,0x11,0xad,0x56,0x3b, +0x4b,0x3c,0x62,0x3e,0x6a,0xd8,0x6b,0xc0,0x29,0x4e,0xd6,0x21, +0xb2,0x4a,0x78,0x00,0xab,0x58,0x3e,0xe7,0x57,0xa4,0x2d,0x58, +0x8d,0xb2,0x24,0x49,0xb0,0x40,0x55,0x37,0xb2,0xef,0x27,0x3c, +0xe6,0xea,0xb6,0xb0,0xf1,0x45,0x71,0x25,0x71,0x25,0x66,0x09, +0xf8,0xb2,0xc7,0x45,0xcf,0x8b,0x5e,0x9c,0xb6,0xac,0x87,0x09, +0xd3,0x09,0x32,0xf4,0x97,0x55,0xf8,0x55,0xf8,0x94,0xfa,0x78, +0x5b,0x39,0xd9,0x5b,0xb8,0xd6,0x58,0xe3,0xb6,0xda,0xda,0xc6, +0xd2,0xb6,0xac,0xe0,0xcc,0x90,0x8c,0x90,0xaa,0x46,0x1c,0x94, +0x15,0x90,0x1d,0x98,0xc5,0x91,0xab,0x6b,0x51,0x28,0x13,0x1a, +0x1d,0x9f,0xaf,0xca,0x2f,0x01,0x43,0x50,0x61,0x41,0x39,0x62, +0x87,0xf1,0x36,0x95,0x4e,0x97,0x9e,0xaf,0x33,0xbe,0x8b,0x25, +0xef,0x28,0x17,0x99,0xe4,0x1a,0x65,0x1a,0x34,0xe6,0xe3,0xf5, +0xac,0x51,0x6e,0x58,0xa3,0x4a,0x29,0x53,0x9d,0x91,0xd1,0xa4, +0x4a,0x96,0xb2,0xe6,0x79,0x4a,0xd3,0x6b,0x09,0x65,0x20,0xef, +0xfb,0xef,0xd0,0x3b,0xa0,0xd2,0xea,0xd8,0x30,0x54,0x38,0x94, +0x76,0x53,0xf9,0x5b,0x78,0xf3,0x08,0x93,0x24,0x53,0xba,0x4e, +0x2d,0x26,0xbb,0x46,0x95,0xdf,0x0a,0x27,0x59,0xb2,0x10,0xde, +0x46,0xbb,0x3f,0xf9,0x94,0x21,0x7f,0x51,0x79,0x91,0xc9,0xfe, +0xf0,0x2d,0x5c,0x60,0x83,0xfb,0xfd,0x7b,0x7c,0xbb,0xb9,0xe9, +0x77,0x5a,0xc4,0xea,0x21,0x8e,0xd4,0x0f,0x89,0x7b,0x5b,0x13, +0x64,0x6e,0x33,0x59,0x92,0xff,0x1b,0x47,0x1e,0x00,0x46,0x59, +0x4d,0x99,0xf2,0xb4,0x01,0xae,0x8f,0xb9,0xa0,0x16,0xaa,0xe1, +0xad,0xc7,0x41,0x41,0x2d,0x8a,0x2d,0x89,0x29,0x8b,0xa9,0xe0, +0x3e,0xdd,0xcb,0xcc,0xe3,0xd7,0x1f,0x40,0x64,0x2b,0x61,0x06, +0x80,0xf9,0xe9,0x67,0xf2,0xf7,0x9a,0x6f,0xc8,0xeb,0xfd,0xf0, +0xfa,0x6f,0x92,0x95,0x30,0xc7,0x90,0xcc,0xd9,0xbc,0x16,0xfe, +0xfe,0x69,0x2d,0xbc,0x65,0x40,0xa8,0x96,0x64,0x89,0x9e,0x62, +0x0e,0xfa,0xf9,0xf6,0xed,0x67,0x99,0x5f,0x53,0x62,0x9f,0xbd, +0xe5,0xe3,0xed,0x7f,0x1c,0xad,0x1a,0xc4,0x30,0xfb,0xee,0xc9, +0xc7,0x7e,0x4f,0xb8,0xd3,0x4c,0xe0,0x5e,0x8d,0xed,0xf0,0xca, +0x51,0x8e,0xf2,0x50,0x0e,0x59,0xb5,0x99,0xb7,0x98,0x36,0x38, +0x59,0xe3,0x1e,0xeb,0x7a,0xbb,0x76,0xe9,0xcc,0xa6,0x9d,0x5d, +0xbb,0xc1,0x80,0x49,0x93,0x3d,0x35,0x1a,0xeb,0x5e,0x49,0xb3, +0x94,0x23,0x0b,0xc9,0x9b,0x88,0x6c,0x5e,0x0d,0x9b,0x19,0xfe, +0x15,0xe1,0x0a,0x6a,0xc8,0xca,0x69,0x56,0xe5,0xdb,0xe0,0xb0, +0x29,0x99,0x2f,0xc4,0xc0,0x6c,0x36,0xc3,0x58,0x89,0x0c,0x2e, +0x6c,0xce,0xce,0x6e,0x11,0xdf,0x56,0x33,0x25,0x98,0xbe,0x3d, +0x97,0xcd,0x34,0x56,0x02,0x1f,0xf2,0x14,0x35,0xb5,0x36,0x8f, +0x16,0x0d,0x5b,0x15,0x61,0x1f,0x03,0x3b,0x7d,0x5b,0x3b,0x8e, +0xc4,0x3b,0xa0,0xc6,0x96,0x96,0xf1,0xe2,0x21,0xfa,0x9e,0xaf, +0xa1,0xad,0xbe,0xad,0x0d,0x27,0x9c,0x7c,0x42,0x6f,0xb1,0x94, +0xde,0x02,0xec,0xe0,0x57,0x34,0x13,0x70,0xf5,0x7e,0xde,0xef, +0x46,0xd9,0xd8,0x1b,0x18,0x47,0x78,0x4d,0x6f,0x35,0xa7,0x70, +0x7e,0x86,0x9a,0xdb,0x9a,0xc6,0x8a,0x47,0xac,0x4b,0xb0,0x8f, +0xbe,0xad,0xae,0x8d,0x3d,0x07,0xa7,0x6c,0x50,0x4b,0x6b,0xe3, +0x58,0xc9,0x88,0x15,0x7d,0xcf,0xc0,0x56,0xc7,0xc6,0x81,0xce, +0x6d,0x17,0xc5,0x23,0xe4,0xa9,0xe7,0x26,0x71,0x91,0xfa,0xca, +0x3d,0x3a,0x5d,0x3a,0xa4,0x2e,0xb8,0xde,0xb0,0xc2,0xb0,0xd0, +0xd0,0xc9,0xd2,0xd6,0xce,0xca,0xa9,0xdc,0x10,0x37,0x55,0xd7, +0xd7,0x55,0x37,0x64,0xc9,0xd2,0xcc,0x92,0x25,0x26,0x3b,0x0c, +0xb4,0x8e,0x50,0x62,0x81,0x6f,0xf4,0xcb,0x87,0x5b,0x6f,0x72, +0x71,0x56,0xb1,0xe6,0xd2,0x45,0x70,0x22,0xc6,0xd3,0xfc,0xe4, +0x62,0x03,0x26,0x5b,0x5d,0xa9,0x8f,0xf9,0xb2,0x67,0x94,0xf8, +0x92,0x2d,0xe7,0xc8,0x7b,0xe6,0xe4,0x35,0xd5,0xa6,0x81,0xba, +0xb1,0xea,0x5b,0x1c,0xaf,0x0d,0xa3,0xa8,0x0f,0x96,0xb3,0x3d, +0x37,0xda,0xee,0xd7,0x7f,0x21,0x29,0xc4,0x81,0x96,0xe7,0xac, +0xfd,0x6c,0xb9,0x36,0x98,0x47,0x66,0xe9,0xc3,0x2c,0xc0,0xc6, +0x04,0xc3,0x7c,0x38,0x6c,0x44,0x5c,0xd9,0xd3,0x47,0x0e,0x6a, +0xec,0x31,0xae,0x94,0xe2,0xfc,0x8c,0xbc,0xcc,0xbc,0x4c,0x4e, +0x78,0x7f,0x68,0x88,0xb8,0xea,0x0d,0xf3,0x67,0xd9,0x98,0x2b, +0xb1,0x97,0x63,0x2e,0x37,0xd6,0x63,0xcf,0x3a,0xfb,0x46,0xfb, +0x4a,0x5b,0x47,0x5c,0xe5,0x59,0xe1,0x52,0xea,0xcc,0x41,0x1c, +0xd3,0xd3,0xda,0xd1,0xd1,0x2c,0xe7,0x84,0x4a,0xe2,0x8c,0xac, +0x9b,0xcc,0x5a,0xa4,0x35,0x8e,0x32,0xdc,0x6d,0xdf,0x6c,0xd7, +0x6a,0xc5,0xf1,0x49,0x89,0xe2,0xa9,0x46,0x2f,0x73,0x77,0x2b, +0x57,0x5b,0xce,0x91,0x11,0x02,0xd7,0xa3,0xe7,0x29,0xe2,0x5e, +0x54,0xe9,0x12,0xcb,0xe7,0x9c,0x00,0x07,0x31,0x6b,0x80,0x2b, +0x30,0xec,0xf4,0xa6,0x1f,0xd1,0xcb,0x60,0x8f,0x6e,0x5b,0xfc, +0x72,0x33,0x49,0x3c,0x15,0xbc,0x10,0xd1,0x6f,0xcc,0x07,0x57, +0x66,0x1e,0x29,0x52,0x58,0x52,0xe1,0x27,0x69,0x95,0xd4,0x38, +0x48,0x71,0x9f,0x5d,0xbb,0x6d,0xbb,0x25,0xa7,0x90,0x3d,0x42, +0xbd,0xd3,0x8b,0xc1,0x89,0x85,0x82,0xcb,0x60,0xb4,0x1d,0xb6, +0xa8,0xf4,0x9a,0x2b,0x3d,0x23,0x27,0x12,0x88,0x35,0xa9,0x5a, +0x44,0x76,0xb3,0x44,0x02,0xf7,0x51,0x42,0x6c,0x4c,0xc2,0x05, +0x95,0xc1,0xd3,0x35,0xe5,0xfa,0x37,0x22,0xd2,0xa2,0xe3,0xc2, +0xa3,0xc4,0xea,0x35,0x17,0x7b,0x9e,0xca,0xb7,0x7e,0xc6,0x54, +0x25,0x56,0x26,0x97,0xa6,0x04,0x74,0x60,0x6d,0xdf,0x3d,0x21, +0x7b,0x2e,0xa4,0x48,0x71,0x55,0x6c,0x75,0x5c,0x65,0x02,0x77, +0x78,0xa9,0xe9,0x0f,0x6c,0xb0,0x99,0xbd,0xde,0x11,0xdd,0x0a, +0x0b,0x7c,0x77,0xa2,0xb0,0x23,0x51,0x24,0xd4,0x36,0xbd,0x0c, +0xc9,0x27,0x36,0x28,0x89,0x49,0x32,0x4a,0xb7,0xfc,0xf4,0x54, +0x59,0x1b,0x3e,0x32,0x62,0xdb,0x1f,0x22,0xe7,0x7e,0x16,0xa3, +0xac,0x98,0x9a,0xa4,0xaa,0xe4,0xf2,0x54,0xff,0x76,0xac,0xed, +0xb7,0x27,0x78,0xa7,0xf8,0x7b,0xd5,0xb1,0x55,0x71,0x95,0xf1, +0xdc,0x91,0x55,0xa6,0xcf,0xd8,0x60,0x73,0x07,0x83,0x43,0xda, +0xe5,0x16,0xf8,0xd1,0xcd,0x9c,0xe6,0x84,0xde,0xe7,0xbf,0x27, +0x3c,0x24,0x16,0xc8,0xbc,0x43,0xbd,0x4f,0xb7,0xe1,0xf9,0x26, +0xac,0xa9,0x5c,0xac,0x5b,0xc4,0x20,0xd7,0xe7,0x9b,0xae,0xe2, +0x46,0xc7,0xf3,0x7d,0x9d,0xd2,0xdf,0x39,0xc5,0x06,0x38,0x40, +0x87,0xd7,0xe9,0x5b,0x3d,0x88,0x85,0x05,0xc4,0x5e,0x1f,0xec, +0x97,0x19,0xf2,0xbf,0xf4,0x43,0xc6,0xef,0xec,0x3c,0xbe,0x59, +0xb1,0x14,0xe9,0xb3,0xb0,0x2d,0x32,0xce,0x9a,0x6c,0x49,0x56, +0x72,0x64,0xad,0xb3,0x02,0x86,0x55,0x48,0x0e,0x45,0x83,0xb4, +0x5a,0xd5,0x4a,0x56,0x3f,0x43,0xc9,0x0c,0xa2,0x58,0xaf,0xe8, +0xc4,0x6c,0xea,0x4d,0x88,0x53,0xda,0xe5,0x16,0x70,0x08,0x57, +0xea,0x23,0xf5,0xd4,0x7f,0x44,0x78,0x47,0x9c,0x1b,0x08,0xc6, +0xe9,0xa5,0xe9,0xf5,0x49,0xd5,0x5c,0x2d,0x7c,0xdb,0x47,0x86, +0xda,0x60,0xa8,0x5b,0x13,0x56,0x42,0x12,0x84,0xb2,0x60,0x1f, +0x04,0x1b,0x0e,0x83,0x8a,0xca,0x80,0xbd,0xd2,0xc7,0x64,0x63, +0x1e,0xd9,0x43,0x02,0x16,0x91,0x53,0xec,0xbe,0x11,0x31,0xa2, +0xaa,0xc3,0xb8,0xce,0x9e,0x4a,0x72,0x9b,0x76,0xeb,0x4e,0x19, +0x97,0x0f,0x4e,0x62,0xc9,0x8c,0x61,0x4d,0xb1,0x12,0xee,0xa8, +0xc5,0xb8,0x51,0xaf,0x11,0xa7,0x98,0x19,0xf3,0x10,0x21,0x0c, +0x42,0x58,0xe2,0x4a,0x49,0x3e,0xec,0x1e,0x22,0xbb,0x99,0x7e, +0xd1,0x83,0xec,0xa5,0x1e,0xe4,0x43,0x8f,0xff,0x1a,0x26,0xcd, +0xab,0x24,0x22,0x5d,0xd8,0x3d,0x4c,0xaf,0x59,0x48,0xf6,0xea, +0xc2,0x5e,0x86,0x84,0xed,0x41,0x42,0x1e,0xec,0xd0,0x94,0x2a, +0x98,0x4e,0x0b,0x46,0x98,0x43,0x5e,0x45,0xf0,0xea,0x4a,0xf2, +0x2a,0x4b,0x55,0xdb,0xab,0xd4,0xf6,0x7e,0x87,0x57,0xd9,0xee, +0x85,0xe4,0x55,0xf2,0x0a,0x7d,0x31,0x8f,0xff,0x48,0xb1,0x0b, +0x8d,0x12,0x47,0xed,0xa1,0x51,0xa2,0x26,0x07,0xb5,0x11,0x3d, +0x1d,0x70,0x14,0xff,0x1c,0x34,0x25,0x07,0xa9,0xb3,0x3d,0xda, +0x20,0x9e,0xe0,0x6e,0x37,0xac,0x75,0x94,0xe2,0x41,0xbb,0x4e, +0x6b,0x39,0x25,0xab,0x4b,0xa1,0x1c,0x91,0xac,0xbf,0xae,0x77, +0x9c,0xfe,0x19,0xb2,0x86,0x0d,0x74,0x21,0xd5,0x9c,0xa4,0xea, +0xc1,0x2d,0x19,0xb9,0xa5,0x3e,0xf3,0x1a,0xac,0xc0,0x9f,0x89, +0xeb,0x53,0x22,0xdb,0x09,0x67,0x74,0x0c,0x66,0x3d,0x30,0xa4, +0x18,0x81,0xbd,0xd7,0x9f,0xdc,0xaf,0xd2,0x66,0x5d,0x59,0x5f, +0xd8,0x9c,0xdd,0xae,0x4c,0x96,0xae,0xec,0x23,0x6b,0xe0,0x24, +0x93,0x90,0x17,0x9f,0x17,0x97,0x2f,0x26,0x00,0x70,0x1d,0xa0, +0x3d,0x0f,0xd3,0x81,0x3d,0xb0,0xa6,0xff,0x37,0x32,0x17,0xd8, +0x41,0xfe,0xac,0xfe,0x7e,0x60,0xef,0x18,0x02,0x47,0xf6,0x1b, +0x41,0x18,0x43,0x2c,0xf8,0x0f,0x91,0x1e,0x58,0x0c,0xb1,0xc2, +0x22,0x58,0x86,0xc4,0x5a,0xb0,0xda,0x4d,0x62,0xde,0x51,0xab, +0x31,0x13,0xb1,0x18,0xf1,0x9b,0x9f,0x23,0x75,0xb0,0x98,0x64, +0x05,0x09,0x95,0x3c,0x2f,0xb7,0xf8,0x7a,0xfe,0xf3,0xa8,0x13, +0xf1,0x54,0x58,0x20,0xfb,0x66,0xcb,0x56,0x8b,0x5a,0x8a,0xa0, +0x1d,0xb6,0x75,0xb6,0x4d,0x74,0xaa,0x54,0x6c,0x44,0xce,0x3d, +0xba,0x53,0x36,0x4d,0x76,0x6e,0xb8,0xd8,0xbb,0xc2,0xa9,0xcc, +0x89,0x83,0x03,0x44,0x85,0x44,0xf4,0x0a,0x99,0xc6,0xc4,0x1f, +0x54,0x60,0x2d,0x53,0x52,0x53,0x54,0x9b,0x59,0x69,0x59,0x88, +0x3d,0xf4,0xcd,0x34,0x8d,0xcd,0xab,0x6d,0x70,0x56,0xa6,0xd2, +0xf4,0xec,0x5e,0xc5,0x02,0xb2,0x65,0x7a,0x6e,0xb7,0x62,0x2e, +0xd9,0x21,0xdc,0xdc,0xc5,0xa6,0x1a,0x29,0xdd,0x60,0xda,0x32, +0xc4,0xb2,0x36,0x83,0x6c,0x72,0x98,0x92,0x50,0xea,0x20,0x1e, +0xca,0x3e,0x69,0x40,0x16,0xc0,0x29,0x3a,0xa1,0x2f,0xad,0x3d, +0xbf,0x39,0x6c,0x0b,0x47,0x54,0x99,0x2b,0xbb,0xa3,0xb7,0x47, +0x6a,0x70,0xa6,0xd1,0x61,0x61,0xd6,0x8b,0x8f,0x32,0x69,0x06, +0x4a,0xf7,0x98,0xf1,0xf2,0xd2,0x87,0xa9,0xaa,0xa9,0x4f,0x12, +0xff,0x41,0x5e,0x5b,0x04,0xca,0x4c,0x42,0x5f,0xc2,0xcd,0xd8, +0x01,0xee,0x43,0x09,0x72,0x68,0x35,0xea,0x93,0x8a,0x08,0xdf, +0x66,0xd3,0x23,0x69,0x30,0xe7,0xf8,0x05,0xb0,0x06,0xe5,0x96, +0xe4,0x56,0xe6,0x54,0xcd,0xe4,0x23,0xf2,0xaf,0xa8,0xc1,0x61, +0x85,0x21,0x45,0xc1,0xc5,0xb9,0x8d,0x59,0x4d,0x29,0x75,0xf6, +0xd9,0x38,0xd2,0x3d,0xdc,0x25,0xcc,0x35,0xb8,0x20,0x28,0x3f, +0x24,0xc7,0xc3,0x09,0xe7,0x9c,0xcb,0xf1,0xce,0xf1,0x0a,0x74, +0x38,0xe7,0x74,0xce,0x93,0xca,0x26,0x17,0x94,0x57,0x22,0x16, +0xc2,0xcc,0x38,0x97,0xee,0x47,0xaf,0xae,0xc6,0x61,0x45,0x21, +0xc5,0x81,0x25,0xb9,0x8d,0x99,0x8d,0x29,0x75,0x76,0x19,0xf8, +0xbc,0x7b,0xb8,0x5b,0x98,0x5b,0x70,0x7e,0x30,0xbd,0xda,0xdd, +0x99,0x5e,0x9d,0xeb,0x93,0xe3,0x19,0x60,0xef,0xe7,0xe8,0xe7, +0xc1,0x4d,0xbf,0x46,0x79,0xf3,0x7f,0x03,0x7c,0xfe,0x31,0xb9, +0x8d,0xa2,0xdc,0xc2,0x5d,0x42,0xe9,0x7d,0xe9,0xb5,0x39,0x9e, +0x33,0xf7,0xf5,0xc9,0xf1,0xf6,0x17,0xaf,0xf4,0xac,0x72,0xc3, +0xe2,0x5d,0x73,0xaa,0x33,0xfc,0xe8,0x5d,0xcf,0x95,0x3f,0xbf, +0x6b,0x90,0x78,0xd7,0xe6,0xd4,0x7a,0x8e,0x58,0x83,0x26,0x0a, +0x2b,0x0c,0x2e,0x09,0x2e,0xce,0x69,0xca,0x6a,0x4a,0x6d,0xb0, +0xcf,0xc0,0xf4,0xd7,0x5c,0x9f,0xff,0x1a,0x6d,0x87,0x13,0xce, +0xf6,0xcf,0xa5,0xbd,0xa0,0xed,0x70,0xf2,0xf3,0xac,0x16,0x7f, +0x2d,0xb7,0x22,0xbb,0x4a,0xec,0x43,0xda,0x39,0xb1,0xd8,0x52, +0x39,0xea,0x71,0x68,0xb1,0x6f,0xb3,0xae,0xeb,0xc2,0x56,0x8d, +0x66,0xcd,0xa6,0xd5,0x1c,0xd9,0xe0,0x8d,0xfe,0xf9,0xc6,0x10, +0xff,0x8c,0x04,0x90,0x2e,0xf6,0x36,0x74,0x89,0xd3,0xac,0x62, +0x17,0x53,0x50,0xab,0x59,0xaf,0xdb,0xe4,0x26,0x5a,0x22,0x71, +0x82,0xa3,0x9d,0xc4,0xa4,0x1d,0x4c,0xc6,0x24,0x5a,0x60,0x60, +0x4e,0x0c,0xa4,0x70,0x10,0x9c,0xc8,0xfb,0x8c,0x93,0x81,0xa6, +0xd9,0x21,0xcb,0x72,0x33,0xfc,0x79,0xdf,0xed,0xfe,0x8c,0x47, +0x14,0x92,0x24,0x3d,0x44,0x92,0xc4,0xa4,0x6b,0x0d,0x9a,0xdc, +0x92,0x65,0xca,0xf0,0x27,0x4c,0x47,0x5e,0x2e,0x55,0x00,0x03, +0xd0,0xc6,0x42,0xbf,0xb8,0x69,0x44,0x4e,0x1c,0x62,0xc9,0xb1, +0x85,0x0f,0x88,0xb8,0x79,0x54,0x09,0xef,0xa0,0x47,0xe4,0xc4, +0x3e,0xf1,0x9d,0x47,0xe4,0xcc,0x3e,0x76,0x1a,0x6d,0x45,0x56, +0x2d,0xba,0x72,0xa3,0x7a,0x3a,0xa1,0xba,0xed,0x07,0xa4,0x6d, +0x96,0xe2,0x81,0x4d,0x96,0x72,0x15,0xea,0x81,0xde,0x67,0xc9, +0x21,0x78,0x1f,0x89,0xb5,0xd1,0xe0,0x7d,0x76,0x7a,0x09,0x25, +0xe8,0x2f,0x37,0xde,0x0d,0xfe,0x23,0xd9,0x26,0xbf,0x87,0x8c, +0xa2,0x2c,0xef,0x6c,0xc7,0x74,0xb7,0xda,0x2c,0x1c,0x5e,0x11, +0x54,0x17,0x54,0xc2,0xd1,0x2b,0x5f,0x41,0x39,0x85,0xa5,0xed, +0x29,0xe5,0x4e,0x59,0x38,0xc2,0xdd,0xcb,0x3a,0xd8,0x97,0x32, +0x3e,0x0b,0x1f,0xa4,0x7b,0xd7,0xf2,0x96,0xcb,0x9d,0x21,0xa2, +0x5c,0x44,0x96,0x27,0x92,0x0d,0x5c,0xc3,0x28,0x18,0x8a,0x11, +0x92,0x7d,0x49,0x83,0x86,0x49,0xd8,0x1f,0xde,0x77,0x83,0x95, +0x27,0x97,0x71,0xf5,0x70,0x00,0x02,0xc9,0x01,0xb2,0x89,0xcd, +0x75,0x2b,0xab,0x2f,0x6c,0xc9,0x6f,0x57,0x4e,0x86,0x39,0x05, +0x2b,0x1a,0xd7,0xda,0x1f,0x94,0x1c,0x3b,0x7d,0xaa,0xce,0x00, +0x8f,0x5f,0x95,0xdf,0x68,0xb8,0x5d,0x7d,0xa2,0xf5,0x54,0xdf, +0x19,0x6e,0x7a,0xbf,0x62,0x1e,0xfa,0xe3,0xfe,0xad,0x8f,0x33, +0x9e,0x51,0xd6,0x92,0xb1,0x65,0xea,0xe4,0x5f,0x07,0xca,0x27, +0xf0,0xfa,0xeb,0xda,0xe3,0x94,0xb4,0x1c,0x60,0xfc,0x76,0x68, +0xa9,0xaf,0x39,0xc5,0x95,0x7d,0x23,0xa6,0x71,0xa5,0x00,0xe8, +0x60,0x8e,0x07,0x9f,0x03,0xa0,0x62,0xb9,0x19,0xba,0x00,0x6f, +0x07,0x01,0x67,0x0b,0xb3,0x9c,0x7f,0x0f,0x26,0x73,0xa3,0xc5, +0x70,0xc9,0x1d,0xd1,0xc8,0x88,0xd8,0xf5,0xb1,0xf0,0x09,0x6c, +0x42,0x16,0x9d,0x9a,0xfd,0x2f,0x9d,0xa2,0xa4,0x8b,0xaa,0x95, +0x40,0xb1,0x4a,0x73,0x20,0x05,0x87,0x40,0x96,0x70,0xe4,0x2c, +0x82,0x45,0x67,0xc8,0x22,0x96,0x58,0xc1,0x22,0x44,0x16,0xdd, +0x82,0x45,0xac,0xb0,0x25,0xea,0x05,0x46,0x6a,0xae,0xe9,0xfe, +0x8f,0x5c,0xc8,0xfc,0x3c,0xd0,0x45,0x17,0x92,0x23,0x3f,0x8a, +0xbe,0x18,0x14,0x86,0x2f,0xc4,0x29,0x25,0x97,0x27,0x34,0xc8, +0x17,0xe5,0x6b,0x7a,0xb0,0x87,0x43,0x8c,0xcd,0x75,0x54,0x34, +0xbe,0xb8,0x90,0x14,0x19,0x1b,0x75,0x5e,0x39,0x38,0xf4,0x62, +0x9c,0x52,0x6a,0x45,0x62,0x73,0x3b,0xfd,0xd4,0x87,0xdd,0xe8, +0x74,0xfa,0xc8,0x11,0x95,0x56,0x2b,0x79,0x57,0x95,0x3c,0xb7, +0x59,0x39,0x3e,0x99,0xba,0xca,0xf3,0x3f,0xc3,0xfb,0x78,0xa0, +0xb7,0xb4,0x39,0xaf,0x29,0x3e,0x29,0xee,0x52,0xdc,0xc5,0xbe, +0x63,0xb8,0xad,0x5e,0x69,0x1e,0xc9,0x52,0x18,0x21,0x8b,0x76, +0xa3,0x4e,0x23,0xf1,0xe8,0xcc,0x80,0x4d,0xbb,0x15,0x75,0xe4, +0x72,0xb2,0x06,0x99,0x92,0x71,0x39,0xdb,0xb4,0xd0,0x94,0xdc, +0x97,0xb3,0x56,0xd3,0xe3,0x08,0xde,0x63,0x6c,0x23,0x13,0x9a, +0x54,0x87,0xd9,0xa9,0xc4,0x87,0x99,0xb7,0x0b,0xfc,0xdb,0xb0, +0xee,0xb9,0x13,0x61,0x67,0xce,0x73,0x4f,0x89,0x05,0xd9,0x0f, +0x16,0x77,0x88,0x5f,0x17,0xdc,0x6e,0xef,0x22,0xdc,0x2d,0xa0, +0x3d,0x98,0x7d,0x97,0x0a,0x57,0xb2,0x15,0xea,0xe1,0x3d,0x3d, +0xf2,0x1e,0xd4,0xc1,0x56,0x39,0xe1,0xee,0x00,0xc5,0xff,0xd9, +0x77,0x80,0xeb,0x32,0x87,0x4e,0x58,0xc0,0xc2,0xa6,0x50,0xd8, +0x7c,0x0a,0xe6,0xaa,0x74,0x98,0xf7,0x7c,0x5d,0xf4,0x7b,0x2a, +0x99,0xab,0xfc,0x10,0xa2,0x18,0xf7,0xcb,0x6e,0x57,0xdc,0x2f, +0xa7,0x18,0xe0,0x6f,0x92,0xc8,0xd2,0xcc,0x47,0xf9,0xd1,0x72, +0x6c,0x14,0xae,0x11,0xa5,0x16,0xcd,0xfd,0x45,0x0e,0x77,0xc0, +0xe1,0x27,0xd4,0xf0,0xcd,0xd8,0xd3,0x79,0x01,0x8f,0x55,0xa8, +0x94,0x6d,0xcd,0xcd,0xae,0x56,0xfd,0x94,0x95,0x64,0x28,0x4d, +0xaf,0xe3,0x19,0x64,0x21,0x57,0x1b,0xd2,0x15,0xcf,0xfc,0x0c, +0x5a,0x8d,0x18,0xc9,0x25,0x1c,0xa9,0x0e,0x44,0xb0,0xf2,0x0e, +0x59,0xc9,0x10,0xc3,0x63,0x54,0x00,0xdf,0x21,0xcb,0x19,0x4a, +0xcc,0x59,0x44,0xe1,0x9a,0x8d,0x2d,0xfb,0xa8,0x2c,0xa6,0x9c, +0x23,0xc6,0x0b,0xc9,0xf2,0x3d,0x54,0x1c,0x93,0x1f,0x16,0xc2, +0xfa,0x27,0x64,0x3d,0x33,0xad,0x2f,0x45,0xcf,0xcb,0xba,0x6b, +0x8b,0xe1,0x51,0x93,0x64,0xee,0xf3,0xa5,0x9c,0x79,0x8a,0x53, +0x0a,0x2f,0x54,0xed,0x56,0xe1,0x52,0x61,0x1f,0x18,0x10,0xe0, +0xef,0x1f,0xc4,0x5d,0x09,0x0d,0xfd,0x28,0x74,0x71,0x82,0x45, +0x6d,0x6c,0x7d,0x6c,0x6d,0x9c,0x32,0x58,0x77,0x10,0x07,0xb6, +0x24,0xae,0x38,0xae,0x30,0x3e,0x3e,0x34,0x2e,0x34,0x2e,0xac, +0x2e,0x1d,0x87,0x77,0x04,0xb7,0x9f,0x6b,0x76,0x0c,0xc1,0xc9, +0x41,0xc9,0x01,0x49,0xfe,0xf6,0xd1,0x36,0x17,0xad,0x2e,0x0f, +0x0d,0xf4,0x4c,0xd5,0x0d,0x3b,0x15,0x63,0x5f,0x3b,0x37,0x6b, +0x67,0xdb,0xb0,0x8c,0xb0,0xac,0xd0,0xcc,0xca,0x9a,0xd2,0xfa, +0xfc,0x46,0xfb,0x42,0xec,0x6f,0xe3,0xeb,0xe2,0xe9,0xe2,0x56, +0x86,0x3d,0x5d,0x95,0x92,0xc1,0xc9,0x8a,0x38,0xb1,0xc2,0x1c, +0x4d,0x14,0xe0,0xe7,0x7f,0x2e,0x30,0x90,0x0b,0x0c,0xb8,0x12, +0xb8,0x38,0xc1,0xbc,0x26,0xb6,0x2e,0xae,0x8e,0xde,0xd3,0xa6, +0x8d,0x7e,0x4c,0x75,0x4b,0x3c,0xbd,0x67,0x58,0x5c,0xd8,0xcc, +0x3d,0x23,0x9a,0x43,0x5a,0x02,0xea,0x9c,0xc2,0x70,0x52,0x68, +0x62,0x70,0x42,0xb0,0x4b,0xb4,0xe3,0x45,0xfb,0x4b,0xdd,0xdd, +0xad,0x83,0x35,0x83,0x4e,0x45,0x38,0xd0,0xcd,0xcb,0xc1,0xc3, +0x29,0x22,0x3d,0x3c,0x23,0x2c,0xbd,0xbc,0xb6,0xa8,0x2e,0xa7, +0xd6,0x3e,0x1f,0x87,0xb8,0xfa,0x39,0x79,0xb9,0x7a,0x15,0x62, +0x4f,0x97,0x72,0xaf,0x1a,0xc7,0x12,0x57,0xe5,0x6d,0x37,0x5e, +0x64,0xdf,0x74,0xb2,0xc4,0xfd,0xb6,0xad,0x33,0xd9,0x37,0xdb, +0xc8,0x0e,0x64,0x4d,0x34,0x9a,0x59,0x38,0x0d,0xfb,0xe8,0xab, +0xe3,0xcd,0xac,0x60,0x04,0x52,0xaa,0xc0,0x74,0x7b,0x0d,0x1b, +0x1d,0x2d,0x71,0xb7,0xcd,0x80,0x49,0xbb,0x4c,0x8c,0x06,0x78, +0x13,0x35,0xc3,0x71,0x6b,0x76,0x8d,0x2d,0xca,0x36,0x4f,0x95, +0xa5,0x18,0x37,0xd3,0x66,0xf5,0x85,0x75,0x04,0xb7,0x72,0xfc, +0xf1,0x50,0x94,0x2f,0x4b,0x97,0xa5,0x1a,0xb5,0x64,0xe2,0xb0, +0xde,0xd0,0x0e,0xff,0x0e,0x6e,0x7a,0xf1,0x45,0x14,0x65,0x12, +0x62,0xe6,0x63,0xde,0xe8,0x87,0x8b,0xba,0xb3,0x7a,0x92,0xfb, +0x39,0xfe,0x30,0xac,0x44,0xc5,0x1d,0x99,0xdd,0x29,0xdd,0xd6, +0xc9,0xf8,0xbc,0x45,0xb0,0x99,0x8f,0x25,0x17,0xee,0x4d,0x65, +0x1c,0xa8,0x53,0x19,0x47,0x56,0x92,0x57,0xd0,0xd1,0x15,0x77, +0x59,0xfe,0x15,0xe8,0x41,0x64,0xf5,0x34,0x63,0xc6,0xdf,0x30, +0x14,0xba,0xd9,0x0b,0xb2,0x10,0xdd,0x40,0x13,0x8e,0xff,0x8b, +0xb9,0x12,0x74,0x25,0xe8,0x62,0x00,0xe7,0x1a,0x1d,0x76,0xd1, +0x6e,0x31,0x5c,0x64,0xd2,0x24,0x4a,0x24,0x8a,0x99,0x2c,0xcf, +0x6b,0x4f,0x55,0x4d,0x2c,0x8d,0xaf,0x8e,0x19,0xe7,0x84,0x6f, +0x99,0xa4,0xc2,0xf8,0xec,0xb8,0x3c,0x0e,0x62,0x20,0xf0,0x5f, +0x39,0xc5,0x0c,0x73,0x5e,0xa6,0x9c,0x5d,0xcb,0xcd,0x7b,0x40, +0xbe,0x42,0x44,0x31,0x48,0x52,0xc8,0x02,0xb2,0x8a,0x18,0x70, +0xad,0x40,0xd8,0x82,0xdc,0xfc,0xdc,0xdc,0x5c,0xbd,0x7a,0xbc, +0x7b,0x1b,0xac,0xde,0x0d,0x1a,0x7a,0x25,0xda,0x98,0x28,0xd5, +0x92,0xd9,0xbd,0x4f,0x47,0x39,0xf2,0x39,0x63,0x29,0xd1,0x97, +0x9e,0xb6,0xb2,0x69,0x32,0x6c,0x33,0xaf,0x34,0x75,0xc2,0xcd, +0xee,0xbd,0xe6,0x4d,0x76,0xb6,0xfe,0x56,0x01,0xe6,0x41,0x76, +0x4d,0x92,0x4e,0xeb,0x0a,0x89,0x0b,0xae,0xf5,0xea,0xb0,0xac, +0xb3,0xdb,0xeb,0xb5,0xd9,0x6f,0x45,0x10,0xc7,0x3b,0x64,0xa1, +0x33,0x2b,0x18,0xd8,0x00,0x6f,0xed,0x81,0xb6,0x1d,0x2a,0x25, +0xea,0x44,0xfe,0xfd,0xcf,0x37,0x8b,0x89,0xaa,0x72,0x22,0x53, +0x0a,0xaa,0xe4,0xb5,0x93,0xa4,0xe3,0x83,0xe2,0x49,0x0c,0xcd, +0x5f,0xc0,0x8a,0x27,0x64,0xc3,0x22,0x72,0x14,0x56,0x23,0x79, +0x4f,0xdf,0x9d,0xda,0x6b,0x3a,0xe5,0xd8,0x55,0xd3,0xe4,0xb4, +0xc4,0x88,0x13,0x24,0x26,0xa8,0x4b,0x3e,0xfc,0xb0,0xe6,0xba, +0x4e,0x11,0x76,0xd3,0x92,0x9c,0x34,0x34,0xa0,0x96,0xcb,0x11, +0x77,0xd4,0x5e,0x54,0xd8,0xae,0xca,0x77,0xa9,0x0b,0x7d,0xf0, +0x16,0x9b,0xab,0xa9,0x04,0x01,0x15,0x28,0x22,0x33,0x2c,0x36, +0x4c,0x3c,0xe8,0x7d,0x21,0x36,0x7d,0x24,0x69,0x30,0xee,0xa6, +0xf2,0xad,0xc9,0x9e,0x91,0xce,0xdb,0x56,0xad,0xd8,0x56,0xd3, +0xc6,0x44,0x66,0xce,0xd5,0xb3,0xa4,0x4b,0x0b,0x06,0x58,0xc8, +0xb6,0x87,0x79,0xb0,0x02,0x4e,0xa9,0x74,0x49,0xbf,0x24,0xb3, +0x3a,0xbe,0x2e,0xfb,0x46,0x39,0x36,0x29,0xee,0xa3,0x84,0x68, +0x82,0xe0,0x00,0xee,0xea,0x50,0x22,0xbf,0x28,0x66,0xa3,0xa1, +0x75,0xdd,0xf0,0x4e,0x0d,0xcc,0x1e,0xa2,0x0d,0xfa,0xcb,0x98, +0xbc,0xad,0xf3,0x33,0x27,0xac,0x10,0xf6,0xa1,0x9b,0x64,0x4e, +0x33,0x59,0x9f,0x4d,0x96,0x6b,0xa5,0xe1,0x20,0x78,0xdf,0x11, +0x94,0x4f,0xc1,0x2c,0x0e,0x1a,0x49,0x0f,0xba,0x0c,0xaf,0x84, +0x6d,0x72,0xdc,0x3b,0xe0,0x8d,0xeb,0xbf,0xc9,0xf8,0x2d,0x96, +0xbc,0xc2,0x11,0xb7,0x69,0x0b,0x44,0x4a,0x6e,0x92,0x83,0x04, +0xfd,0x83,0xe8,0x18,0x56,0xe0,0x1d,0x70,0x04,0xb6,0xc1,0xab, +0x90,0x7d,0x96,0xf2,0xa1,0x9f,0x14,0xeb,0x90,0x87,0x91,0xab, +0x85,0xb3,0x0d,0x97,0xce,0x12,0xb9,0x36,0x0c,0xb1,0x90,0xe3, +0x48,0x75,0x05,0x86,0xe3,0x2a,0x9d,0xb2,0x4f,0x7e,0x6f,0xf9, +0xaa,0xe4,0xa9,0x72,0x6c,0x62,0xdc,0x47,0xf1,0xd1,0x3f,0xc3, +0x4e,0x2c,0x6f,0xdd,0x40,0x36,0x45,0x64,0x86,0xc7,0x86,0x45, +0x50,0xbc,0xbc,0x10,0x97,0x39,0x95,0x3c,0x11,0xfb,0x44,0xb9, +0x7f,0xa4,0x65,0xb0,0x61,0x8a,0x4b,0x99,0x3e,0x8b,0x46,0x15, +0x13,0xfc,0xe6,0xe9,0x70,0xd8,0xc8,0x64,0xe8,0x88,0x95,0x4f, +0xba,0xb2,0x0a,0xa8,0x83,0xac,0x17,0x4a,0x59,0x98,0x84,0x2d, +0x62,0x0b,0xc3,0x37,0xba,0xec,0xeb,0xf3,0xc6,0xb5,0xdf,0xa4, +0xcd,0xb4,0x90,0x5f,0x2d,0x41,0xc2,0x85,0xc1,0xfb,0xe4,0x38, +0xbf,0x8f,0x85,0xe3,0x02,0x83,0xc8,0x4d,0x32,0x0f,0x6e,0xb2, +0xf3,0xc8,0x43,0xc5,0x1a,0xe4,0x65,0xe4,0x61,0xee,0x66,0xc3, +0x65,0xb2,0xa4,0x5b,0x07,0x46,0x58,0xc8,0x75,0xa1,0xad,0x9b, +0x0f,0xc7,0x54,0x3a,0x2d,0xee,0xfd,0xd6,0xf4,0x75,0xa1,0xd8, +0xba,0xf8,0x8f,0xe2,0xa2,0x6f,0xc3,0x72,0xdc,0xd5,0x72,0x9a, +0x2c,0x3a,0x9f,0x15,0x12,0x23,0xb6,0x2e,0xec,0x62,0x6c,0xfa, +0x64,0xd2,0x78,0xdc,0x23,0x65,0xf9,0x68,0xd3,0x70,0xed,0x55, +0x2e,0x7e,0x5a,0x8d,0xb6,0x6e,0x92,0xcc,0x67,0x2e,0xc3,0x1e, +0xef,0x53,0xbb,0x35,0x9a,0x64,0xf8,0x9b,0x7b,0xd5,0x0f,0x63, +0x89,0x0e,0xf7,0x19,0x58,0x32,0x3a,0xf9,0x3e,0x13,0x2a,0x3f, +0x08,0xd6,0xb0,0x8b,0x49,0xd7,0x55,0x22,0x6b,0x99,0xb6,0x82, +0x1c,0xb9,0xaa,0xa2,0x51,0x18,0x61,0xf9,0x2d,0xd0,0x82,0xbc, +0xa2,0x92,0x4b,0x54,0x89,0x29,0x79,0x13,0x82,0xd9,0xe9,0x0a, +0xa2,0x4c,0xfb,0x32,0x3b,0xe2,0x03,0xf7,0xfd,0xbd,0xde,0xb8, +0xea,0x9b,0xb4,0xdf,0x63,0xc4,0xbe,0xbc,0x03,0xa9,0x48,0x98, +0x37,0xf8,0x90,0x58,0x12,0x3a,0xce,0x96,0x10,0x8b,0x88,0x09, +0x59,0x07,0x26,0x94,0x6a,0xaf,0x56,0x7c,0x80,0xac,0xb5,0x6c, +0x4c,0xa4,0x16,0x5c,0x39,0x35,0x04,0x4d,0xe8,0x7f,0x61,0x08, +0x6b,0x44,0x43,0x30,0xfb,0xfc,0xf7,0xce,0x2f,0xcb,0x9e,0x29, +0xc7,0x25,0xce,0xd8,0xc1,0x0a,0x30,0xc4,0xdd,0x1d,0xd4,0x52, +0x35,0xc2,0x33,0x23,0x62,0x42,0x23,0x94,0x83,0x42,0x2f,0xc6, +0x66,0x4d,0x24,0x8f,0xc5,0xdf,0x57,0xbe,0x3d,0xd9,0x33,0xdc, +0x75,0x8b,0xbb,0x23,0x5c,0x45,0xe4,0x04,0xbf,0x82,0x7c,0x2f, +0xac,0x20,0xfb,0xf9,0xa3,0xa3,0x42,0xc4,0xb4,0x62,0x72,0x92, +0x57,0x1b,0x63,0xa7,0x7f,0xe1,0xbf,0x41,0x97,0xe0,0x95,0xd0, +0x8d,0x33,0xb6,0xd0,0xf0,0x4d,0xc6,0xef,0xb1,0x64,0x16,0xa7, +0xd0,0x05,0x4a,0x36,0x9e,0x12,0x3f,0xf2,0x94,0x99,0xf7,0xb7, +0x96,0xe2,0x08,0x12,0xe6,0x32,0x39,0x6d,0xd9,0x9d,0x99,0x5d, +0x9a,0x39,0x58,0x0a,0x3b,0xcf,0xc0,0xdb,0x7b,0xd7,0x76,0x9a, +0xe0,0xde,0xc9,0x8e,0xfb,0x4d,0x9f,0x71,0xed,0xd3,0x06,0x53, +0x24,0x91,0x64,0x8d,0x42,0x16,0x25,0x06,0x99,0x23,0x90,0x49, +0xf6,0x92,0x26,0x66,0xfa,0x98,0xf0,0x36,0xba,0x10,0x97,0x73, +0x37,0xe9,0x46,0xec,0x33,0xe5,0xeb,0xa3,0xdd,0xfd,0x1d,0x53, +0x56,0xed,0xd8,0x56,0xcf,0x4e,0x66,0x6e,0xc5,0x91,0x4a,0x0d, +0xe8,0xa5,0x3d,0xb3,0xa5,0x3d,0xdb,0x04,0xa7,0x55,0xba,0x4c, +0xbf,0x27,0xb3,0xe5,0x4f,0x2b,0xbe,0xa3,0x26,0x1e,0x2f,0xd6, +0xb8,0x3d,0x06,0x46,0xb8,0xab,0x13,0x0e,0x12,0xcd,0xb0,0x8c, +0xf0,0xb8,0xb0,0x70,0x65,0x50,0xe3,0x17,0xd1,0xd6,0xce,0x0a, +0xd9,0x64,0xbf,0x67,0xd0,0x1b,0x37,0x7d,0x93,0xf5,0x9b,0xf8, +0x2c,0xe7,0x11,0x85,0x62,0x3b,0xf2,0x34,0xf4,0x30,0x77,0xb1, +0xe6,0xe2,0x5e,0x0e,0x7f,0x8e,0x0b,0xbc,0x05,0x6f,0xc3,0x51, +0x95,0x4e,0xf3,0xfb,0x74,0xf8,0x8b,0x9e,0x2a,0xc7,0xd0,0xe1, +0x8f,0x8f,0xfe,0x1a,0x3e,0xa4,0xc3,0xbf,0x93,0xac,0x8f,0x14, +0xa7,0xa1,0x38,0xfc,0x17,0x62,0x33,0xaf,0x27,0x4e,0xc6,0x7d, +0xa9,0xdc,0x33,0xda,0x3c,0x54,0x77,0x8d,0xe3,0x07,0xc8,0x2e, +0x24,0x3c,0xd5,0x22,0xe5,0xb0,0x04,0x42,0xa7,0x77,0x8d,0x2b, +0x66,0x91,0x23,0xd4,0x14,0xc4,0x03,0xb3,0xc0,0x2c,0x2b,0x37, +0xc4,0x7f,0xfd,0xdc,0xf2,0x45,0xf2,0xef,0x62,0xb4,0xe8,0xca, +0x81,0x9d,0xdf,0x6d,0x2c,0x1f,0xc4,0xab,0x7e,0x30,0x20,0xec, +0x25,0xf2,0xae,0x18,0xf0,0xdf,0x0a,0x7b,0x98,0xdc,0x99,0x94, +0xf6,0x5d,0x79,0xf9,0x2d,0xaa,0xfc,0x0f,0x10,0x4a,0x96,0x90, +0x34,0x76,0xfa,0xcb,0x6d,0x33,0x96,0xb0,0xd1,0x4d,0xb4,0xea, +0x97,0x96,0x30,0xef,0x6f,0xa5,0x44,0x04,0x23,0x8c,0x66,0x58, +0xfa,0x55,0x55,0x62,0x40,0xe2,0x48,0x33,0xc8,0xd9,0xc2,0xfa, +0xfc,0x86,0xdc,0x26,0x8e,0xfc,0x83,0x81,0x03,0x97,0xd7,0x46, +0xee,0x54,0x39,0x1d,0x15,0xe2,0x67,0xb8,0x78,0xaf,0x98,0xd8, +0xed,0x3e,0xf3,0xb8,0xbe,0xf1,0xc7,0x54,0xd5,0xb4,0x1f,0x62, +0x7f,0x25,0x5e,0x8b,0x84,0xb7,0x99,0xb4,0xca,0xd4,0xea,0x64, +0xb1,0x54,0xbd,0x13,0x2c,0xd0,0x05,0x66,0xfb,0x86,0x0e,0x33, +0x5c,0x5c,0x56,0x50,0x9e,0x5f,0xc1,0x09,0x36,0xec,0x8a,0x62, +0xb7,0x3f,0x55,0x48,0x0f,0x23,0xcf,0xa5,0x13,0x8c,0x0a,0x3c, +0x9d,0x1c,0xa5,0xe9,0x77,0x7f,0x40,0xd4,0xea,0x6f,0x26,0x4e, +0xc6,0x7e,0xa1,0x3c,0x35,0x29,0x1f,0x6d,0xbf,0x65,0xd9,0x82, +0x1d,0xb4,0xec,0x25,0x96,0xa2,0xc3,0x99,0x99,0xdd,0xd9,0xe2, +0xec,0x5e,0x0c,0x27,0x54,0xba,0x64,0x5f,0x90,0xd9,0xad,0xcf, +0x4a,0xbe,0x9d,0xc1,0x9e,0xf8,0x68,0xb2,0x58,0xc4,0x9e,0x36, +0x78,0x8f,0xec,0x08,0x7f,0x31,0x30,0x87,0xe9,0xc0,0xd0,0xae, +0x85,0x6f,0x74,0xde,0xd7,0x2f,0x4e,0xd8,0x74,0xda,0xb5,0x59, +0xf4,0x41,0x52,0x92,0x0a,0xc7,0xc1,0x80,0x1c,0xa7,0x73,0xd4, +0x89,0x5c,0x40,0x17,0x62,0x93,0x47,0x13,0x06,0x62,0x6f,0x2a, +0xf7,0x4c,0xb5,0x4c,0xd4,0xde,0xb6,0x6e,0xc0,0x9e,0x7a,0xee, +0x26,0xae,0x16,0x5c,0x09,0x4b,0x7a,0xf4,0x60,0x9c,0x85,0x3c, +0x77,0x7a,0xd7,0x39,0x70,0x98,0xce,0xda,0xbb,0xe4,0x95,0xfa, +0x6f,0xf2,0xbe,0x51,0x8e,0x99,0xb9,0xeb,0xb7,0xb0,0x1e,0x77, +0x36,0x6d,0x21,0x2b,0x22,0x33,0xc2,0xe3,0xc5,0x7a,0xbf,0xcb, +0xe0,0x31,0x1a,0xbb,0xc5,0x9f,0x3a,0x31,0xa6,0xf8,0x1f,0xa1, +0x8f,0x19,0x33,0x40,0xfc,0xa9,0x69,0x0d,0xe1,0x14,0xc3,0xab, +0xf2,0x3b,0xd1,0x30,0xac,0x23,0x87,0x74,0xe0,0x10,0xac,0xd7, +0x25,0x6b,0xd9,0x08,0x50,0x92,0xad,0x58,0xb3,0xa5,0xde,0x18, +0xff,0xfc,0x5d,0xcb,0xaf,0x09,0xbf,0x88,0xa5,0x7a,0xd6,0xb6, +0x6e,0xfc,0x65,0x6d,0xbd,0x1c,0xaf,0xfe,0x4e,0xf6,0x4b,0x38, +0x99,0xc3,0x09,0xbf,0x92,0x93,0xe8,0x0a,0xcc,0x89,0xfa,0xc0, +0x73,0x7f,0x8f,0x0f,0x2e,0x7f,0x96,0x42,0x3b,0x31,0x9b,0x5a, +0xd7,0x19,0x62,0x82,0x26,0x78,0x17,0x26,0xbf,0x35,0xb7,0x2b, +0xff,0xaa,0x56,0x16,0xb6,0x85,0x85,0xa7,0xe1,0xb5,0xd5,0x4b, +0xdb,0x4c,0x70,0x5b,0x67,0x6d,0x47,0x69,0x0b,0xc7,0xaf,0x11, +0x5e,0x41,0x63,0xe4,0x9f,0x62,0xdd,0xd9,0xb9,0x3f,0x6e,0x24, +0x2b,0x96,0x36,0xf6,0x63,0xd8,0x4c,0x66,0xaf,0xfa,0xc5,0xee, +0x77,0x8e,0x14,0x8f,0x42,0x1b,0x59,0x27,0x2e,0x21,0xe7,0x6b, +0x93,0x18,0xc6,0x6e,0xd9,0xc6,0x95,0xb0,0x61,0x69,0xb3,0x04, +0x93,0xa5,0x7f,0x3c,0xfb,0xa1,0x98,0xde,0x25,0x89,0x21,0x87, +0x85,0x2d,0xa8,0xfd,0x74,0xeb,0xc9,0xda,0xbd,0x13,0xe5,0xd8, +0xee,0x53,0xe9,0x6d,0x8b,0x11,0x31,0x4f,0xc1,0x47,0xe8,0xea, +0xdd,0x8e,0xfb,0x15,0x77,0xa9,0x67,0x71,0x3d,0x29,0x3b,0xae, +0x7e,0x86,0xe3,0x2f,0xd3,0x86,0x96,0x9c,0x2a,0x3c,0x9e,0x75, +0xe8,0x7a,0x26,0x0e,0x78,0xe4,0x7d,0xcb,0xe3,0x2a,0x07,0x39, +0xc1,0x28,0xe3,0x58,0xca,0xd9,0xf8,0x3d,0x57,0x93,0xf1,0x85, +0x27,0x91,0x37,0x83,0xc5,0x50,0x68,0x17,0xf2,0x18,0x89,0x99, +0xba,0x0c,0xc4,0xcd,0x9f,0xee,0x9c,0xdc,0x56,0x55,0xe2,0x90, +0xc4,0x96,0x02,0x22,0x9a,0xf0,0x2e,0x39,0xb4,0xbf,0x46,0x4c, +0x41,0xd3,0x0d,0x73,0xae,0xed,0xbb,0xf3,0x5d,0xe3,0x6f,0xa3, +0x8f,0xa6,0xac,0xdb,0xf1,0xde,0xb3,0xab,0x75,0xd6,0xd9,0x38, +0xd7,0x79,0xd7,0x87,0xd5,0xff,0xd8,0xf4,0xeb,0xe0,0x83,0x71, +0x4e,0x3e,0xfd,0xbe,0x1e,0xdf,0xcc,0x9e,0x90,0x1d,0xb6,0x5f, +0xe3,0xc0,0x09,0x2a,0xc2,0x41,0x44,0x36,0x3c,0x21,0xef,0x92, +0xd7,0x06,0xc9,0x2a,0xae,0x1d,0x9e,0x1a,0x90,0x52,0xd6,0x10, +0x18,0x50,0x5a,0x07,0x4b,0x4e,0x70,0x8a,0x2b,0x1b,0xd0,0x90, +0xf0,0x87,0x1e,0xcb,0xdf,0x3f,0x8d,0xda,0x8c,0x5a,0xf5,0x6a, +0xd4,0x47,0x2b,0xb0,0xfd,0x55,0xd9,0xb0,0x25,0x25,0x1d,0x76, +0x20,0x43,0x93,0xa3,0xed,0xa3,0x15,0xa3,0xfa,0xb4,0x4b,0x86, +0xe6,0xba,0x9a,0x46,0x1c,0x9f,0x41,0x16,0xa3,0x12,0xc3,0x02, +0xdd,0x2c,0xad,0xa9,0x0c,0x1c,0x38,0xe5,0x3b,0xe4,0xd1,0xcb, +0x41,0x59,0x08,0xca,0xd0,0x4d,0x31,0x4c,0x38,0x3b,0x49,0xbb, +0x74,0x2d,0x62,0x30,0xb8,0x9f,0x7a,0x55,0x3f,0x3e,0x14,0xdd, +0x1e,0xef,0xb9,0x55,0xff,0x88,0xde,0xb8,0x8f,0xcd,0x2a,0xcb, +0xa8,0x48,0xab,0xd0,0x4e,0xc1,0x36,0xeb,0x4f,0x6d,0x5e,0x7e, +0xa8,0xce,0x0c,0x37,0x55,0x34,0x54,0x57,0xd7,0x35,0x9a,0xb6, +0x9b,0xf7,0x59,0x9e,0x34,0xd9,0x26,0xa3,0xf2,0xbe,0xc2,0x10, +0x93,0x37,0x3a,0xbf,0xeb,0xbe,0x3f,0x78,0xdb,0xf8,0x89,0xf4, +0x1f,0xe6,0x95,0x03,0xf8,0xc3,0xe6,0x83,0x2d,0x67,0x3a,0x38, +0x21,0x12,0xe2,0x28,0x44,0x65,0xdd,0x4b,0xba,0x1e,0xfb,0x83, +0x72,0xff,0x50,0x6b,0x7f,0xc3,0x84,0x75,0x2b,0x76,0x37,0x76, +0xb5,0x70,0xb2,0xe5,0x48,0xa9,0x16,0x0c,0xd2,0x99,0xe0,0x40, +0x6d,0x52,0x55,0x9c,0x09,0xd2,0x2f,0xc8,0xac,0xb6,0xa7,0x25, +0xdf,0xcc,0xa0,0x2f,0x9d,0x09,0xcb,0xe0,0x0c,0x96,0xb7,0xc3, +0x12,0x72,0x38,0xfc,0xb9,0xab,0x23,0xcd,0xfc,0x36,0x94,0x98, +0x94,0x90,0x9c,0x90,0xc4,0x91,0x4c,0xc6,0x55,0xdb,0x42,0x5f, +0xd3,0x48,0xb7,0xdd,0x4c,0x6e,0xd3,0xc7,0x09,0xe6,0x7e,0x22, +0xd6,0x86,0x6d,0x74,0xde,0x4b,0x27,0x49,0x1d,0xc5,0xda,0x19, +0x4f,0xf0,0xf6,0xb4,0x0d,0x9a,0x24,0xdd,0xea,0xe3,0x3c,0x16, +0x76,0x0a,0x98,0x25,0x0a,0xf2,0x39,0x02,0x07,0xe8,0xa6,0xb4, +0x76,0xde,0xdf,0xa7,0xf9,0x22,0x24,0x1c,0xf8,0x9a,0xfc,0xd8, +0x0f,0x3f,0x3e,0xe1,0x57,0x0d,0x4e,0x7f,0xa5,0xcf,0xbf,0x0b, +0x3e,0xa0,0x41,0xf6,0x6b,0xc0,0x7e,0xd8,0xa9,0x4f,0xce,0x32, +0xfe,0x5b,0xdd,0xd7,0x39,0x6e,0xe3,0x14,0x7a,0xcc,0x65,0xad, +0x0b,0x3a,0x51,0xb6,0x9c,0x55,0xa4,0x6f,0x84,0xc9,0xe2,0xb5, +0xe2,0xb8,0xff,0xc4,0x3c,0x6c,0x2c,0xb8,0x93,0xa9,0x9a,0xda, +0x9f,0xf8,0x28,0xf6,0x29,0x37,0x7d,0x98,0x49,0x29,0x4b,0xad, +0x48,0xae,0xe4,0x14,0xb3,0xfa,0x85,0x5f,0x99,0xa4,0xb2,0xc4, +0xb2,0xc4,0x72,0x4e,0xb1,0x84,0x01,0x3d,0xe1,0x18,0xf2,0xec, +0x73,0x6d,0x73,0x6a,0x96,0x50,0x74,0xb2,0x29,0x97,0x96,0x48, +0x38,0x88,0x22,0xf3,0x50,0xb1,0x49,0xa1,0x7e,0x8e,0xde,0x78, +0x0e,0x0e,0x18,0xf2,0x1e,0xf4,0xe8,0xe2,0x84,0x7d,0xe0,0x86, +0x06,0x46,0x3a,0xef,0x94,0x4d,0xea,0x14,0x63,0x4f,0x5d,0x8b, +0xd3,0x86,0xfa,0x1c,0x49,0x23,0xdb,0x50,0xba,0x71,0xfa,0x89, +0x04,0x75,0x6a,0x80,0xd1,0x13,0x21,0xb7,0x82,0xc5,0x9a,0x4a, +0xf6,0xbc,0x1c,0xdd,0xef,0x19,0x1a,0xae,0x99,0x98,0x29,0xa9, +0x95,0x55,0x90,0x51,0x98,0x5a,0xa8,0x93,0x8e,0x6d,0x0f,0xef, +0xd9,0xf9,0x81,0x76,0x85,0x14,0x57,0xe7,0x57,0x17,0x55,0x96, +0x54,0x39,0x35,0xba,0xb6,0xb9,0x1d,0xb5,0xdd,0xe6,0xbc,0xda, +0xbb,0x80,0x0e,0x16,0x53,0xf1,0x73,0xd3,0x93,0x8e,0x07,0x96, +0x4f,0xed,0xfe,0x72,0x2e,0xea,0xc3,0x9b,0x4a,0xf7,0x57,0x9f, +0xaa,0x13,0x63,0x78,0xfb,0x51,0x44,0x06,0xa5,0xdb,0xcf,0xd9, +0x53,0xc6,0x9d,0xa4,0x9b,0xb1,0xdf,0x2b,0x8f,0x4f,0x74,0x8e, +0xb4,0xdc,0xb4,0x6a,0xc1,0x4e,0x3a,0x0e,0xa6,0x36,0x16,0x1c, +0x29,0xf9,0x37,0x3b,0x51,0x9e,0x61,0x27,0x9f,0x93,0x57,0x5a, +0x9f,0x15,0xbf,0xe4,0x4e,0x3f,0xc3,0x32,0x0a,0x5f,0x4a,0x64, +0x0b,0x3f,0x86,0xca,0x2a,0x94,0xc8,0x45,0xc6,0xd5,0xdc,0xc4, +0xfc,0xac,0xb5,0xa4,0xca,0xb2,0xc6,0x91,0xde,0x45,0xea,0xf4, +0x1c,0xcb,0x5e,0x90,0x8f,0xe7,0x58,0xa6,0x08,0x10,0x24,0xa8, +0x17,0x0c,0x1f,0x11,0xb7,0x3e,0x70,0xbb,0xab,0x7d,0x14,0x3c, +0x8d,0xc4,0x13,0x47,0x52,0x63,0x22,0xdd,0x0e,0x57,0x0c,0xc9, +0x15,0x78,0x67,0x94,0xbc,0x43,0x2e,0xf4,0xc3,0x85,0x2f,0x29, +0xda,0x55,0x90,0x44,0xda,0x54,0x11,0x1d,0x43,0xa8,0x98,0x8c, +0x4d,0x19,0x4e,0xe8,0x8b,0xbb,0xaa,0x3c,0x38,0xd1,0x36,0xda, +0x70,0xcb,0xba,0x09,0xbb,0xe9,0xb9,0x9a,0x3a,0x5a,0x72,0xb5, +0xff,0x85,0xac,0x3c,0x22,0xaf,0x34,0x7d,0x53,0xf8,0x1c,0xf6, +0xa8,0x17,0x7c,0x95,0x92,0xa9,0xae,0x16,0xa5,0x38,0x85,0x01, +0x75,0xc2,0x7c,0x2c,0x3f,0x97,0xd5,0x84,0xad,0x48,0x78,0xf7, +0x0f,0xfe,0x5d,0x66,0xfa,0xa3,0x55,0xff,0x8b,0x5b,0xa4,0xce, +0x58,0x14,0xb9,0x6f,0x8c,0xa8,0x8d,0xbc,0x22,0xbc,0xcb,0xa4, +0x41,0x35,0x22,0xdb,0x07,0x60,0x3b,0x79,0x47,0x4b,0x78,0x83, +0x71,0x8d,0x76,0xbb,0xe8,0x26,0x1e,0x8b,0xfe,0x2b,0x9b,0xcc, +0x2e,0xfd,0xae,0xea,0x7c,0x2f,0x36,0x0c,0xd2,0x0d,0xd1,0x09, +0xe5,0xf8,0x83,0xe7,0x10,0xbc,0xce,0x38,0x44,0x27,0x54,0x8b, +0x3b,0x23,0x77,0x4b,0x3e,0x6f,0xee,0xaf,0x77,0xe9,0xc2,0x32, +0xa7,0xe3,0x8e,0x6a,0x3e,0x1c,0x59,0xaf,0x05,0x7f,0xb1,0xa7, +0xca,0x83,0xa6,0x54,0xc8,0x9b,0x4c,0x67,0x56,0x61,0x83,0x2a, +0x59,0xc8,0x1a,0x14,0x52,0x41,0x1b,0x41,0x02,0xd0,0xc5,0xb8, +0x8c,0xd1,0xa4,0xe1,0xf8,0xbb,0xca,0xd7,0xaf,0x75,0x8d,0x76, +0xdc,0xa5,0xae,0xc4,0x5e,0xc3,0x4e,0x62,0x29,0x13,0x89,0x6c, +0xbf,0xf6,0x0c,0xac,0x3b,0x53,0x2f,0xff,0xbe,0xe8,0xe5,0x65, +0x9f,0xfc,0xd1,0xfa,0x75,0xf1,0xd7,0x22,0x55,0x8c,0xa1,0x33, +0x68,0x3e,0x68,0x52,0xae,0x08,0xaf,0x91,0x93,0x22,0x59,0xa4, +0xfc,0x85,0x3f,0xcb,0x47,0xa0,0xdf,0xb5,0x56,0x40,0x88,0x1e, +0x5f,0x4b,0x87,0x71,0x13,0x54,0xa0,0x92,0xa1,0xc2,0x6b,0x59, +0xe3,0x7a,0x39,0x38,0xe8,0x94,0xef,0x29,0x57,0x35,0x0e,0x9e, +0xe9,0xf2,0xd7,0x87,0x19,0x80,0x06,0x14,0xde,0xe3,0x3f,0xe6, +0xd3,0x63,0xe0,0x8f,0x0b,0x8d,0xf2,0x74,0xd3,0x24,0x9c,0x60, +0x48,0x0e,0x8a,0xb3,0x2c,0xfc,0x03,0x17,0xd1,0x15,0xd5,0xd0, +0xe1,0x9b,0x61,0xb7,0xfc,0xb4,0x03,0x9a,0x22,0x9f,0xa9,0x4d, +0xf0,0x6f,0x0b,0x12,0xe1,0x6d,0x96,0x5f,0x4c,0x3e,0x46,0x94, +0x77,0x7d,0x46,0x2c,0xe9,0x68,0x55,0x92,0x68,0x44,0xf9,0x00, +0x1d,0xad,0xe0,0x30,0x7c,0x31,0x36,0xe3,0x46,0xd2,0x54,0xec, +0x97,0xca,0x4d,0xed,0xd5,0xad,0x15,0x1d,0xd5,0x76,0x38,0x29, +0x21,0x29,0x31,0x29,0x91,0x83,0xd6,0x21,0x52,0xf3,0x07,0x7b, +0x79,0x8d,0xaf,0xc9,0x51,0x83,0x6a,0x33,0xfc,0xf9,0xf5,0x8a, +0x49,0xb1,0x12,0xdb,0x27,0xf0,0x26,0x63,0x98,0xe7,0x33,0xa0, +0xf2,0xd5,0xee,0x61,0xf2,0x19,0x1c,0x63,0xea,0xea,0xab,0x5a, +0x4b,0x5a,0xa8,0x64,0x49,0x99,0x29,0x22,0x97,0x9c,0x4f,0x2d, +0xde,0x61,0x87,0xda,0xde,0xbd,0x6a,0x89,0x29,0x89,0xa9,0x09, +0xa9,0xd6,0xcd,0xd8,0xc3,0xd0,0x55,0xea,0x6c,0xc5,0xc5,0x50, +0x2e,0xfd,0x9c,0xae,0x38,0xd3,0xe1,0x5f,0x40,0x0d,0xa0,0xcb, +0xfc,0xe1,0x1f,0x33,0x74,0xe5,0x85,0xb3,0x9d,0x45,0x9d,0xad, +0xbc,0x45,0x89,0xe7,0x14,0x6f,0x23,0x5f,0x7b,0x47,0x3b,0x3b, +0x07,0x0e,0x9c,0x98,0xda,0x9a,0xca,0xfa,0xb2,0x26,0x6a,0xab, +0x27,0x5e,0x52,0x0a,0x6a,0x00,0xd5,0x2f,0x28,0x85,0xe2,0x7d, +0x08,0x45,0xce,0xd1,0x69,0x95,0xaa,0x7f,0xd1,0xcb,0xd7,0xb2, +0xbf,0x42,0x30,0x1a,0x84,0xca,0x64,0xf6,0x33,0xed,0xdd,0x6c, +0x24,0x14,0xe9,0x93,0x74,0xd6,0x61,0x0b,0xcc,0x35,0x80,0x43, +0x92,0x7c,0x4d,0x4c,0x76,0xf6,0x91,0xed,0x37,0x33,0xc8,0xc2, +0x99,0x02,0x76,0xaf,0x92,0x79,0x67,0xc9,0xd6,0x93,0x62,0x01, +0xbb,0x0f,0x26,0x36,0x76,0xbb,0x7f,0x41,0xdd,0x48,0x38,0xbf, +0x10,0x91,0xc8,0x65,0x62,0x59,0xdb,0x01,0x61,0x9f,0xf0,0x0b, +0x7f,0x7c,0x00,0x16,0x11,0x65,0x96,0x0f,0x02,0x5d,0xd4,0x9e, +0x97,0xd3,0x22,0x5a,0x83,0x6e,0x8e,0x12,0xac,0x05,0x2b,0x56, +0x16,0x9a,0xda,0xa1,0x4a,0xd4,0x49,0x2f,0x99,0x02,0x85,0x90, +0xc8,0x1e,0xae,0xf6,0xb9,0xa3,0x02,0x8f,0xf9,0x1e,0x04,0xc7, +0xfe,0x04,0x95,0xe5,0xa0,0x06,0x5a,0xfc,0x79,0x56,0x61,0x7c, +0x05,0x81,0x94,0x02,0x8c,0x94,0x85,0x5f,0x85,0x35,0x94,0xcb, +0x1b,0x53,0x2a,0xcf,0xcb,0xc1,0x06,0x75,0xa8,0xb7,0x9d,0xad, +0x3d,0x34,0x51,0x81,0x6d,0x3f,0x96,0x5e,0x37,0x1f,0xe0,0xa6, +0x2d,0x69,0x7f,0xae,0xde,0xec,0xba,0x55,0x71,0x53,0x97,0xba, +0x0c,0x35,0xb3,0xd3,0x1a,0x1a,0x1c,0x9f,0x4e,0xf6,0xa2,0x12, +0xb5,0xa2,0xd3,0x59,0xc7,0xae,0x51,0x2f,0xf8,0xc0,0xe7,0x9a, +0xfb,0x18,0x07,0x25,0xd4,0x65,0x9c,0x4e,0x51,0x4f,0x38,0x34, +0x45,0x5d,0xc6,0xc7,0x91,0x53,0x41,0x93,0xd4,0x81,0x1b,0x28, +0xfa,0x91,0xae,0x98,0xca,0xc3,0xcc,0x0d,0x16,0x68,0x2d,0x57, +0x69,0x33,0x51,0xba,0x4e,0x5e,0xad,0x27,0x2a,0xc4,0x63,0x11, +0x69,0x16,0xe6,0x23,0xb2,0xec,0x7b,0x12,0xf0,0x01,0xc1,0x64, +0xce,0x00,0x7c,0x2e,0xfc,0x45,0xbe,0x1f,0x60,0xc9,0xd7,0x64, +0x3e,0x32,0xca,0x54,0xa2,0xb8,0xbf,0x9a,0xb5,0x0d,0x4d,0x6d, +0x52,0x25,0xc6,0x24,0x88,0x5c,0x83,0x66,0x2a,0x50,0xb4,0xab, +0xbd,0x46,0x55,0xc8,0x0e,0xa6,0x21,0x3b,0xaf,0x46,0x55,0x48, +0xe2,0x5f,0x47,0x30,0x97,0x5e,0x3d,0x97,0xe1,0x4f,0x5f,0x42, +0x60,0x06,0xc7,0x88,0x19,0x2b,0xbc,0x0a,0xa3,0x88,0x3e,0x31, +0x1b,0x78,0x9b,0xdd,0x60,0x84,0x60,0x19,0xfd,0xca,0x32,0x96, +0x37,0x84,0x6c,0xd4,0xae,0xd3,0xaa,0x51,0x73,0x6c,0x9c,0x7a, +0xf9,0x7b,0xb2,0x49,0x8b,0x5e,0x6e,0xda,0x18,0xbc,0xd0,0xd4, +0xd5,0xf6,0xeb,0x15,0x57,0xf5,0x68,0xff,0x34,0x65,0xea,0x9a, +0x3a,0x1c,0x9f,0x48,0x36,0xa3,0x62,0xcd,0x42,0xf5,0xac,0x53, +0x62,0xff,0x6e,0xfb,0x4c,0x7a,0x0c,0x73,0x50,0x48,0xfb,0xa7, +0x96,0xa2,0x1d,0x7f,0x4c,0xec,0xdf,0xdd,0xc8,0xf1,0xa0,0x31, +0x4a,0x20,0x31,0x79,0x88,0xb2,0xbf,0x4a,0x22,0xca,0x3f,0x2c, +0x22,0xaf,0x08,0x4a,0x6c,0x7a,0x49,0x6a,0x49,0x72,0x89,0x6e, +0x06,0x76,0xdd,0x7c,0x76,0xd5,0x91,0xd3,0xcd,0x32,0xdc,0xd5, +0xde,0x3e,0x5c,0x37,0xce,0x91,0xaf,0x35,0x98,0xdd,0xe7,0xe1, +0xcd,0xd0,0xed,0x2a,0x86,0x51,0x9e,0x7e,0x3a,0x62,0xee,0xaa, +0x6c,0x3d,0xa5,0x5f,0x98,0x6f,0x9b,0xea,0x1f,0x66,0xa9,0x0a, +0x2d,0x2b,0x11,0xff,0x09,0xe4,0x09,0x9f,0xb0,0xc4,0x46,0x9c, +0x1e,0xeb,0x88,0x8c,0xac,0xa3,0xcc,0x04,0x3e,0x40,0x10,0x4f, +0x4a,0x49,0x3c,0x0b,0xae,0x60,0x8a,0xc8,0x1a,0xb2,0x03,0xd6, +0xb0,0x42,0xdd,0x0f,0x88,0x4a,0x16,0x57,0x58,0xc7,0xf0,0x3c, +0x2c,0x44,0xed,0x6a,0x6d,0xa7,0x6b,0xf7,0x8f,0x53,0x4f,0xff, +0x48,0x7a,0xd3,0x7c,0x88,0x9b,0xd6,0x83,0xf3,0xe8,0xea,0xed, +0x8e,0x3b,0x15,0x77,0x74,0x0b,0xb1,0xeb,0x19,0xe9,0x09,0x0d, +0x75,0x8e,0x8f,0x27,0x87,0x51,0xc9,0x99,0xc2,0x93,0x59,0x87, +0x45,0xf2,0xf2,0xb1,0xf7,0x4d,0x8f,0x09,0x0e,0x0a,0x42,0x50, +0xe6,0x89,0x64,0xb5,0x84,0xfd,0x62,0xb7,0x1e,0x45,0x5e,0x0f, +0xbe,0x4a,0x87,0x6d,0x16,0x9f,0x83,0x3e,0x6b,0xef,0xa8,0x29, +0xab,0x49,0x4d,0x4d,0xbc,0x9c,0x76,0x5e,0x3c,0x2d,0x85,0xcb, +0x9b,0xca,0x6c,0xbe,0x6b,0x93,0xd7,0xd5,0xd4,0x2b,0xa7,0xa4, +0xc6,0x8b,0xef,0x9e,0x00,0x0e,0xd7,0x77,0xc0,0xbe,0xbf,0x42, +0x53,0x22,0x63,0xc3,0xc3,0x95,0xc3,0xc2,0x2e,0xc4,0x29,0x15, +0xd6,0xa7,0x36,0x0e,0x2e,0x6a,0xd7,0x96,0xb1,0xab,0x65,0x86, +0xb0,0xfe,0x8c,0x0a,0x6c,0xfe,0x31,0x34,0x39,0xe2,0xa3,0x08, +0xfa,0x79,0x04,0xfd,0xbc,0xa8,0x31,0xb9,0x71,0x78,0xe6,0xf3, +0x55,0x52,0x63,0x58,0x72,0x5a,0x45,0x51,0x40,0x3e,0x42,0xa1, +0x96,0xe7,0xa4,0x9e,0xf6,0x14,0xf5,0xcb,0x9a,0x0b,0x7b,0xd3, +0x5b,0x39,0xc1,0x2f,0x1d,0x85,0x59,0x9f,0xb3,0xf4,0x10,0xdf, +0x2b,0x6d,0x2a,0xec,0xcc,0x68,0xe5,0x3e,0xce,0x42,0x61,0x16, +0xfe,0x52,0x0f,0xdb,0x7e,0x3f,0xf1,0x6b,0x03,0xa9,0xf4,0x6b, +0xbe,0x29,0x28,0xc2,0xc2,0x57,0xea,0x66,0xdb,0xeb,0x89,0x2b, +0x9a,0x4a,0x47,0x52,0xdb,0x38,0xc5,0x01,0xf8,0x07,0x82,0x05, +0x13,0x44,0x63,0xfa,0x17,0xd0,0x98,0x20,0x0b,0x58,0xc5,0x39, +0xc1,0x0e,0x9d,0xb8,0xea,0xff,0x07,0xb1,0x59,0x24,0xfc,0x8f, +0x1e,0x3f,0xcc,0xc4,0xc0,0x9e,0x42,0x78,0xf7,0xd1,0xe9,0x26, +0xfb,0xae,0xb4,0x94,0xce,0x6a,0xb2,0x47,0xac,0x2c,0x2c,0x94, +0xfe,0x8c,0x60,0x36,0x94,0xe8,0x93,0x12,0x38,0x38,0x46,0xd5, +0x78,0xfc,0x20,0x7d,0xf6,0xb3,0xd9,0x79,0x8a,0x35,0xff,0xaa, +0x4f,0xa8,0x91,0x8a,0x2f,0x78,0x47,0xb8,0x86,0xbb,0x73,0xd4, +0xd8,0x7e,0xe2,0x13,0xc8,0x4f,0xcc,0xf4,0x7c,0x21,0xff,0x05, +0x84,0xcd,0x38,0x9c,0x8c,0x9b,0x89,0x53,0xb1,0x5f,0x2b,0x8f, +0x4d,0xb6,0x8f,0x37,0xdf,0xb1,0x6a,0xc2,0xce,0x5a,0x4e,0x12, +0x3b,0xca,0xed,0x3b,0xff,0x7f,0x77,0xf3,0xe0,0x8f,0xa6,0xa7, +0x85,0x2f,0xd1,0xe6,0x57,0xd8,0x85,0xbb,0x9a,0x95,0xbe,0xe2, +0xab,0xd1,0x53,0x1e,0x6f,0x65,0xa7,0x53,0x4b,0xff,0x9b,0x83, +0x79,0x0c,0x87,0xd1,0x0f,0x3c,0xde,0xc0,0xc2,0x41,0x31,0x4b, +0x6f,0x48,0x3f,0x84,0x90,0xd9,0x24,0x65,0x40,0x18,0x34,0x20, +0xe7,0x69,0xe3,0x7d,0x0d,0x89,0x2f,0x65,0x83,0xbd,0xfa,0x0a, +0x8a,0x3b,0xb5,0x8c,0x88,0xaf,0x31,0xa2,0xe3,0x8e,0x0f,0x0b, +0x0b,0xa5,0xf8,0x1a,0x97,0xfe,0x49,0xc2,0x9d,0x18,0x32,0x47, +0xb9,0x7b,0x54,0xac,0x7a,0x6e,0xd3,0x8c,0x3d,0x0d,0xdd,0x65, +0xae,0x36,0x1c,0x89,0xd5,0x81,0x49,0x16,0xf2,0x5d,0xa9,0xb3, +0x78,0x9b,0x8a,0xdd,0x4e,0x8b,0xc7,0x64,0x4e,0xf3,0xb7,0x05, +0xcf,0x68,0xf3,0x62,0xa9,0x33,0x7c,0x0a,0x4b,0x70,0x27,0xc5, +0xc2,0x67,0xb0,0x1a,0x1d,0x2b,0x38,0x5e,0xa1,0xd6,0x30,0xd5, +0x3d,0x30,0x5a,0x77,0x83,0x6b,0x13,0x38,0x36,0xa9,0x2a,0xb1, +0x26,0xa1,0x8e,0xe3,0x57,0xf7,0x09,0x4b,0x99,0xb8,0xaa,0xd8, +0x1a,0xb1,0x72,0xe5,0xdc,0x3e,0x77,0xa6,0xab,0xd4,0x47,0x6e, +0x33,0xe6,0xd8,0xaa,0x2c,0xf5,0xae,0x31,0xaf,0xd7,0x29,0x96, +0x28,0x0b,0x97,0x98,0xc6,0xfe,0xca,0xf1,0xec,0x7e,0xb2,0x21, +0x8e,0xec,0x48,0x27,0xef,0x94,0x8a,0x95,0x2b,0xe7,0x7b,0xc3, +0x8e,0x30,0x38,0x7e,0xd9,0xff,0xb4,0xd3,0x31,0x1b,0xe3,0x56, +0x67,0x1c,0x60,0x44,0x94,0x99,0x2b,0x8e,0x97,0x9d,0x2e,0xb9, +0x70,0x62,0xb8,0xeb,0x16,0xc6,0x13,0x4e,0xa9,0xc3,0x9b,0xcb, +0x61,0x76,0x93,0x14,0x7f,0xfc,0x78,0xf0,0x8b,0x86,0xdf,0x1b, +0x4c,0xe4,0xb2,0x41,0xeb,0xd3,0x76,0x87,0xdc,0xf6,0x9f,0x2b, +0x34,0xc0,0xcf,0x8a,0xbe,0xa8,0x7b,0xd0,0x75,0xdb,0xe2,0xb1, +0xfd,0xe7,0x9e,0x1c,0x84,0x29,0xd4,0x50,0x78,0xcb,0xb9,0x6e, +0xff,0x3a,0x83,0x10,0x9c,0x6f,0x9b,0x67,0x9a,0x6a,0xc9,0x09, +0x53,0x7d,0xf4,0x91,0xce,0x89,0x7c,0x0e,0xd9,0x2f,0x55,0xa0, +0x42,0x4b,0xd8,0x89,0x9c,0x0c,0xa5,0x32,0x03,0x3b,0x9d,0x26, +0x31,0x8d,0x1b,0xb5,0x7f,0x2f,0xe2,0x47,0x45,0x5a,0xe6,0x64, +0xd2,0x44,0xdc,0x63,0xe5,0xb1,0xa9,0x8e,0x89,0xff,0x1c,0xc8, +0x82,0xff,0xc2,0x1c,0x6e,0xff,0xdc,0xf8,0x65,0xd1,0x57,0xa2, +0xce,0xa5,0x9e,0xf5,0x17,0x50,0xa7,0x7e,0x63,0x1d,0x39,0x16, +0x95,0x15,0x1e,0x13,0x1a,0xa9,0x4c,0xce,0xf0,0xe3,0x08,0x7a, +0x79,0x5f,0xd2,0xcb,0x0a,0xfb,0x61,0x3e,0x7a,0xc0,0xcf,0x3e, +0xc4,0x4e,0xc7,0x39,0xff,0x97,0xd5,0x09,0xf2,0xfd,0x66,0xf4, +0x98,0x9f,0xbd,0x57,0x3c,0xca,0xcb,0x22,0xe1,0xae,0x31,0x79, +0x9b,0xb1,0x3a,0x75,0xd6,0x70,0x97,0xac,0xdc,0x0c,0xf7,0x94, +0xb5,0x54,0xd6,0xd7,0x70,0x84,0x63,0xcc,0x0e,0x9e,0x55,0x5b, +0xa7,0x5b,0x61,0x86,0xff,0x9a,0xfa,0xe4,0xd1,0xe0,0x2f,0xdc, +0x1f,0x8c,0x39,0x70,0xc7,0xb7,0xc0,0x6b,0x07,0xab,0xa5,0x98, +0xbc,0xf3,0xd9,0xe3,0x5f,0xba,0xa9,0x3c,0x98,0x64,0x0e,0x5c, +0x3a,0x19,0xa1,0xae,0x62,0x78,0x3e,0x38,0x54,0x6b,0xf1,0x0e, +0x31,0x12,0xed,0x13,0xe6,0xcb,0x9a,0xd2,0xcf,0xd2,0x54,0x53, +0xee,0xc4,0xdd,0x8a,0x21,0xf3,0x39,0x61,0x0b,0x93,0x57,0x94, +0x5d,0x9c,0x5d,0xc6,0xf1,0x8b,0x98,0x79,0x7c,0x3e,0x71,0x43, +0xfc,0xbc,0x6e,0x61,0xde,0x38,0x79,0x42,0x2e,0xc3,0x93,0x09, +0xfe,0xc3,0x6e,0xe1,0xc3,0x9b,0x0c,0x79,0x2d,0x89,0x28,0xa5, +0xff,0x92,0xe3,0xd9,0x89,0x9d,0xc1,0x0a,0xc2,0x23,0x20,0x63, +0xb1,0xb8,0xba,0x38,0x9b,0xcc,0x8e,0x4d,0xf8,0x43,0xf5,0x8c, +0xb0,0xd2,0x84,0x5f,0xa9,0x01,0x37,0xe0,0x32,0xb9,0xa1,0x29, +0xcc,0x32,0xe1,0x67,0xa9,0x0b,0x9b,0x8d,0xff,0x7e,0xb7,0x57, +0x38,0xc0,0xc2,0x4d,0x9e,0x45,0x24,0x05,0x36,0x40,0x0a,0xc3, +0x7f,0xba,0x10,0x8a,0xc8,0x06,0x52,0xc4,0x08,0xa9,0xb6,0xa8, +0xdc,0xad,0xc4,0xae,0xc0,0xbe,0xb5,0x02,0xfb,0x34,0x79,0xd5, +0x79,0x54,0x70,0xe4,0x2e,0x55,0xad,0xa5,0x65,0x55,0xad,0x45, +0x2d,0xd2,0x62,0x7c,0xce,0xd6,0xc3,0xc1,0xd5,0x99,0x23,0xa7, +0x41,0x40,0xcd,0xb6,0xcd,0x96,0xd5,0xa6,0x43,0x95,0xd8,0x51, +0x6e,0xd1,0x66,0x5d,0x2d,0x4a,0x99,0x0f,0xd1,0x58,0x7b,0x6b, +0x67,0x69,0x87,0x51,0x21,0xf6,0xb0,0xb1,0xb0,0xd2,0xb5,0xe6, +0xf8,0x94,0xef,0x50,0xb1,0x75,0xbe,0x65,0x96,0x6c,0x9c,0x2a, +0x19,0xb9,0x5f,0xab,0x57,0xe3,0x8c,0x92,0xc9,0xb4,0x48,0xb6, +0x49,0x30,0x99,0xa0,0xdc,0xb8,0x3b,0xb2,0x35,0x48,0x8c,0x3d, +0x4c,0x24,0xe1,0x28,0x4a,0x9c,0xb1,0x11,0xc1,0xe1,0x94,0x74, +0xa4,0x5d,0x4b,0x1c,0x8f,0xfd,0x54,0xb9,0x6b,0xa2,0x71,0xbc, +0xe6,0xa6,0x55,0x03,0xf6,0x31,0xf0,0x34,0xf3,0xb0,0xe2,0x12, +0x67,0x94,0xf1,0x04,0x1d,0x68,0x77,0x78,0x0b,0x66,0x89,0xca, +0xd8,0xf2,0xda,0xef,0x75,0x5f,0xe7,0x3e,0xa7,0x50,0x71,0xd1, +0x8f,0x61,0x07,0xee,0x6c,0x54,0x2a,0xe6,0xe3,0x11,0xc4,0x90, +0x18,0x7d,0x28,0x30,0x25,0x05,0x5a,0xd0,0x61,0xa2,0x78,0xbf, +0x1b,0x7a,0xc7,0x48,0xad,0x1c,0x6a,0x07,0x49,0x26,0x89,0x81, +0xcc,0x21,0x31,0xa3,0x5d,0xf7,0x55,0xf6,0x1f,0x49,0xdf,0xa7, +0xdc,0x4b,0xf3,0xed,0xc4,0xb0,0xcc,0x0f,0xce,0x07,0xc1,0x9e, +0x98,0x54,0x13,0x7c,0xed,0xd3,0xb8,0x84,0xcf,0x55,0x35,0x21, +0xc7,0x84,0xe4,0xe8,0xb1,0x42,0xc5,0xb0,0x68,0xa6,0x51,0x1f, +0x78,0xef,0xef,0xf6,0xc1,0x65,0x2f,0xc4,0x30,0xef,0xb3,0x1a, +0x51,0x46,0xa6,0x47,0x36,0xb1,0x24,0x16,0x36,0x21,0xb2,0x89, +0x58,0xc2,0x26,0x16,0xde,0x49,0x45,0x65,0xa5,0xd5,0x2d,0x05, +0xcd,0xb6,0xa5,0xf8,0x9c,0x9d,0x9b,0xbd,0x0b,0x9d,0x30,0xf1, +0xf7,0x50,0x99,0x5b,0xa9,0x7d,0xbe,0x43,0x53,0x29,0xf6,0x69, +0xf4,0xae,0xf5,0x28,0xe7,0x60,0xa1,0xf0,0x1b,0x6a,0xe8,0xa8, +0x1e,0xc9,0x95,0x1b,0x15,0xe0,0x00,0x0b,0x27,0x43,0x7b,0x4b, +0x8e,0x2f,0x26,0x6f,0xa0,0x52,0xab,0x32,0xad,0x4c,0xd9,0x58, +0x2e,0x0e,0xec,0x72,0x1f,0xf1,0x68,0xe1,0xc0,0xde,0x0b,0xe5, +0x58,0x66,0x1b,0xa6,0x9a,0x8d,0xa6,0xe3,0x70,0x79,0xc0,0x60, +0x40,0x33,0x07,0x36,0xa1,0x28,0xc5,0x32,0x51,0x37,0x4e,0x36, +0x9e,0x82,0x2f,0x76,0x46,0x8c,0x46,0x34,0x70,0x22,0x2a,0x5e, +0x41,0x59,0xc5,0x19,0x65,0x29,0x25,0x5a,0xe9,0x38,0xd2,0x3d, +0xd8,0x25,0xd0,0x8d,0x83,0xb3,0x82,0x3d,0x25,0x2d,0xf6,0xcc, +0xf4,0xab,0x42,0x3a,0x8a,0x14,0x81,0x67,0xa6,0x98,0x67,0x5c, +0xda,0x70,0xd2,0x50,0xdc,0x2d,0xe5,0xc1,0xb1,0xd6,0xe1,0xc6, +0xeb,0x94,0x85,0xb9,0xe9,0xbb,0xca,0x1c,0xad,0x44,0x1a,0x2e, +0xd7,0x86,0xe1,0x19,0x16,0xf6,0x16,0xa0,0x19,0x16,0xf6,0xc9, +0x9f,0xcd,0x5f,0x17,0x3d,0x9b,0x79,0xc6,0x09,0xe7,0x9f,0x50, +0xc9,0x20,0x6f,0x55,0xe2,0x43,0xf8,0x24,0x24,0xbc,0xfa,0x25, +0xff,0x2a,0x33,0x9d,0xac,0x25,0x2e,0x51,0x46,0x7c,0xe0,0x2a, +0xaa,0x04,0x91,0x79,0x89,0x34,0x53,0x61,0x06,0x3b,0xe9,0x17, +0xbe,0xa6,0x5f,0xa0,0xfe,0x5f,0x05,0xf1,0xaf,0x6e,0x11,0x5e, +0x65,0xc8,0x20,0x1c,0x42,0xc6,0xad,0xfa,0x0d,0xfa,0xa5,0x8e, +0x96,0x78,0xc8,0x6d,0xc8,0xae,0xcb,0x92,0x7b,0xf4,0x18,0x35, +0x9e,0xad,0xde,0x5b,0xbc,0xbd,0xbf,0x18,0xfb,0x7c,0xea,0xfc, +0xc8,0xfa,0x3a,0x27,0x78,0x42,0x0e,0x6a,0xfe,0xac,0xe8,0x9b, +0xb4,0x5b,0x86,0x59,0x38,0xf4,0xb0,0xf7,0x4e,0xfb,0xe3,0x1c, +0xc9,0x3d,0x8f,0xdc,0x42,0xd3,0x28,0x2d,0x3f,0xae,0x03,0x3a, +0xac,0x46,0xb9,0xef,0xa4,0x0a,0x39,0xc8,0xb4,0xe5,0xe4,0x50, +0x4a,0xc2,0xb1,0x86,0xd9,0x4a,0xb0,0x88,0x32,0xd8,0x12,0x72, +0xf9,0x85,0xde,0x10,0x19,0x6c,0x1c,0x35,0xa6,0x09,0x6a,0x4c, +0xed,0x43,0x0d,0x83,0x95,0x13,0x14,0x60,0x7d,0x4d,0x7c,0x2c, +0x3d,0xed,0x44,0xba,0xd9,0xad,0x0b,0xa3,0x2f,0x56,0xc7,0xde, +0x9c,0x59,0x1d,0x7b,0x40,0x66,0x35,0x3d,0x2d,0x78,0xf6,0x92, +0x90,0xcf,0x86,0xfd,0xa2,0xde,0x20,0x3d,0xfc,0x5d,0xf4,0x15, +0x49,0x1d,0x10,0x46,0x0c,0xc8,0xe5,0x6d,0x54,0xe1,0xf0,0x5f, +0xf4,0xb3,0xff,0x64,0x42,0x5e,0xc0,0xc5,0xbe,0x3e,0x1f,0x5c, +0xf9,0xec,0xb9,0x3f,0x50,0x14,0xaf,0x46,0x42,0x8e,0x70,0x82, +0xcf,0x61,0x74,0xf9,0x05,0xe8,0xa0,0xb0,0xfe,0x21,0xcb,0xaf, +0x87,0x77,0xd0,0x61,0x61,0xfd,0x7d,0xf1,0xd5,0x5b,0x68,0x97, +0xb0,0xfe,0x33,0x96,0x9a,0xa0,0x36,0xfa,0xdc,0xf6,0x33,0xd3, +0xab,0xd2,0xea,0x4e,0xac,0xd6,0xb6,0xbd,0x77,0x57,0x0d,0x27, +0xa8,0x50,0x67,0xf2,0x45,0xe5,0xb7,0x7d,0xe3,0x5d,0x0e,0x2d, +0x58,0x53,0xb6,0xd5,0xf4,0x80,0x27,0x1d,0xd6,0x69,0xc5,0xc7, +0x48,0x6b,0x29,0x44,0x19,0x90,0x28,0xb8,0x0a,0xbb,0x99,0x1c, +0x23,0x25,0xb2,0x92,0x69,0xcb,0xcf,0x6b,0x56,0x25,0x23,0x5f, +0x0c,0xec,0x60,0x85,0x66,0xaa,0xdc,0x01,0x1f,0x65,0x33,0x4c, +0x95,0x86,0x98,0x96,0xdc,0xec,0x7a,0x55,0xf2,0x2e,0x39,0xdc, +0x21,0xa8,0xb2,0x09,0xad,0x71,0x1d,0x3d,0x8b,0xf8,0x39,0x64, +0xb9,0x70,0x04,0x96,0x33,0xa0,0xec,0xbf,0x41,0x72,0x40,0xa5, +0xd3,0xac,0xa6,0xa7,0x70,0x28,0xf3,0x9a,0x32,0x79,0x40,0x2a, +0x91,0x04,0xc6,0x7a,0x58,0x7e,0x02,0x6a,0x91,0x77,0xb7,0xe3, +0xa0,0x43,0x8b,0x85,0x0b,0xae,0xb7,0xa8,0x35,0x2c,0x34,0xe1, +0x60,0x1f,0x65,0x28,0xf0,0xc4,0x9c,0x3c,0x61,0xa0,0x0f,0xde, +0x44,0x81,0xd6,0x9e,0xf6,0x76,0x8e,0x4d,0xce,0xb8,0xb9,0xa1, +0xbc,0x3d,0xb7,0x8d,0x23,0x7b,0xc2,0x50,0x85,0x47,0x95,0x75, +0x9e,0x73,0x4b,0x15,0x3e,0x57,0xed,0xda,0xe4,0x52,0xc6,0xf5, +0xc0,0x3a,0xa4,0xa6,0xcb,0x50,0xd3,0x99,0x7f,0x12,0x9a,0xcf, +0xaa,0x14,0x6a,0x91,0xe6,0xdb,0x7f,0x8e,0x16,0x93,0xb7,0x66, +0xf6,0x11,0xde,0x22,0xf3,0xb5,0x49,0xe3,0xb1,0xc2,0x71,0x0c, +0x4d,0x57,0x61,0xd9,0x4d,0x82,0x16,0x91,0xb8,0x42,0xe4,0x61, +0x68,0x23,0x35,0xb1,0xea,0xb3,0xc6,0xbd,0x6d,0x2d,0xbd,0xe5, +0x83,0xdc,0xb4,0x32,0x1c,0x40,0x83,0x9d,0x1d,0x63,0xa5,0xa3, +0xfa,0xe5,0xd8,0x53,0xdf,0xca,0xc0,0x40,0x46,0xe9,0x9d,0x09, +0x71,0x42,0xfb,0xbb,0xd5,0xfb,0x24,0xc3,0x23,0x8f,0x9b,0xbe, +0x2b,0xf8,0x93,0x9b,0x1c,0x84,0x21,0x26,0xb3,0x31,0xa3,0x39, +0xb5,0x55,0x3d,0x0d,0xbb,0x81,0xb2,0xf1,0x7a,0xb5,0xe3,0x69, +0xa1,0x18,0x4e,0xdd,0x23,0x7a,0x3d,0xa0,0x77,0x9b,0x1c,0xe9, +0x81,0x23,0x57,0x35,0xcf,0xc2,0x7e,0x09,0xd9,0x7f,0x1c,0x2c, +0x24,0xc4,0xe2,0x08,0x68,0x19,0x93,0x79,0xcc,0x05,0x78,0xcb, +0xe6,0xe8,0xf2,0x43,0xd4,0x7d,0xdd,0x1f,0xea,0x1e,0x29,0x79, +0x42,0x81,0x8d,0xb9,0x62,0x73,0xd1,0x31,0xca,0x97,0xf3,0x8b, +0x8a,0x0c,0x73,0x5d,0xbc,0x8d,0xc9,0x30,0x51,0xfa,0x9c,0x19, +0x29,0x2a,0x69,0x4a,0x57,0x4d,0xab,0x4d,0xbe,0x36,0xb9,0x08, +0x02,0x99,0xf8,0xa2,0xd8,0xe2,0x98,0x52,0x8e,0x24,0x74,0x30, +0xa5,0xae,0x45,0xa5,0x85,0x95,0xf9,0xb5,0xca,0xc5,0x47,0xeb, +0x4f,0x76,0xa9,0x99,0xe8,0x9e,0x35,0xd9,0x69,0x59,0xad,0x87, +0x3f,0x6d,0xb9,0xd1,0x3f,0x38,0x3e,0xa8,0x7e,0x4d,0xef,0xa1, +0x19,0xb7,0x82,0x8f,0x42,0xfe,0xdb,0x5d,0x0f,0x4a,0x4f,0x1b, +0xdf,0x76,0x7a,0xe8,0xff,0x29,0x47,0x16,0x09,0x95,0xa8,0x4d, +0xb7,0x55,0xb3,0xf6,0xe4,0x68,0x39,0x76,0xb8,0x2d,0x9d,0xb0, +0xec,0xe6,0xa6,0x8d,0xc0,0x05,0x4d,0x4e,0x76,0x5c,0x2d,0x9f, +0xd2,0x2b,0xc4,0x6e,0x3a,0x32,0x0d,0x4d,0x5d,0x8e,0xb2,0x99, +0xf5,0xa8,0x58,0xbb,0x50,0x33,0xeb,0xcc,0x55,0x4a,0x10,0x6f, +0xfa,0x8e,0x7b,0x0c,0x51,0xde,0x1b,0x8c,0x32,0x34,0x52,0x74, +0x13,0x4e,0x4c,0x26,0xe1,0x0b,0x77,0x22,0x47,0x83,0x46,0x28, +0x80,0xfe,0xa9,0xe8,0x42,0x70,0x98,0x75,0xa8,0x76,0xd7,0x72, +0x93,0x38,0xc9,0x94,0x4b,0xff,0x63,0x11,0xf1,0x2d,0x98,0x03, +0x87,0xa8,0x4f,0xbc,0x41,0xa1,0x32,0xef,0x6b,0x2a,0xa6,0xc5, +0xa5,0xff,0xcf,0x45,0x7a,0xd3,0xb8,0x87,0x6c,0x8d,0x12,0x17, +0x11,0x22,0x94,0x83,0xc3,0x2f,0xc6,0xa6,0x8e,0x27,0x0e,0xc7, +0xde,0x57,0xee,0x9d,0x68,0x11,0x89,0xc4,0xf4,0xd9,0x41,0x7e, +0x92,0x98,0x90,0xdb,0xec,0x28,0xdc,0x46,0x44,0x26,0x5c,0x84, +0x05,0x4c,0x96,0xbe,0xd2,0x9f,0x4c,0x7b,0x6e,0x5e,0x87,0xaa, +0xa2,0x1b,0xd2,0x58,0x48,0x85,0x45,0xe8,0x4b,0xb2,0x72,0x3b, +0x4b,0xf6,0x2d,0xfc,0x92,0xac,0xdd,0xce,0x4e,0xd7,0x7a,0x8a, +0x2b,0x87,0x91,0x1f,0x78,0xbd,0x5c,0x39,0x24,0xb3,0x17,0x91, +0xba,0xa5,0xe8,0x29,0x59,0xb9,0x55,0xfc,0xd6,0x53,0xb2,0x76, +0x2b,0xbb,0x11,0x94,0x10,0x64,0x81,0x32,0x03,0xef,0x86,0xed, +0x35,0xd8,0xad,0xd2,0xea,0xd4,0x30,0x94,0x37,0x90,0x3a,0xa9, +0x4c,0xf6,0xaf,0x5c,0xc6,0x64,0x48,0x95,0x9e,0x31,0x0d,0x39, +0x99,0x75,0xaa,0x46,0x24,0x17,0xc1,0xb6,0x7b,0x64,0x1b,0x03, +0xbb,0xc0,0x10,0xd1,0x27,0x5f,0x12,0x53,0xc6,0x91,0x6d,0x87, +0x28,0x91,0x7a,0x5d,0xb1,0x11,0x99,0x29,0xe2,0xbb,0xe0,0xef, +0x71,0x7e,0xa3,0x5c,0xd8,0x78,0x43,0xed,0x94,0xb0,0xc4,0x94, +0x5f,0xa2,0xc9,0x12,0x5b,0x18,0x44,0x69,0xb9,0x29,0xb9,0xc9, +0x79,0x1c,0x51,0x25,0x6b,0xa6,0xb7,0xc3,0x1a,0xb2,0x90,0x49, +0x0d,0x48,0xf5,0x4f,0x0e,0xe0,0xa0,0xd2,0xe4,0xef,0xe5,0xdd, +0x0c,0x50,0x69,0x87,0x74,0x85,0xf6,0x61,0x96,0xff,0x60,0x15, +0x3a,0x1f,0x10,0x19,0x10,0xe1,0xcf,0x81,0x37,0x13,0x95,0x17, +0x99,0x17,0x91,0xc3,0x81,0x33,0x6c,0x40,0xb0,0x59,0x21,0x23, +0x9b,0xd9,0xe9,0x25,0x4b,0xd1,0x28,0xff,0x48,0x9b,0x0d,0xdf, +0x88,0x5a,0x2c,0x5a,0x4c,0x6b,0xf4,0x47,0x2a,0xb1,0xfd,0xa0, +0x79,0xb7,0x55,0x03,0x37,0xed,0x0e,0xc7,0xd0,0x44,0x4f,0x5b, +0x6f,0x79,0x8f,0x61,0x11,0x76,0x93,0x99,0x9b,0x6a,0x9b,0x73, +0x7c,0x0e,0x99,0x83,0x8a,0xa4,0x05,0xa6,0x59,0xc6,0x93,0x99, +0x38,0x70,0xc0,0xb7,0xcb,0xab,0x8d,0xde,0x97,0x0a,0x16,0xd3, +0x64,0x59,0xa2,0xbe,0xe8,0xf9,0x86,0x22,0xbb,0x82,0xda,0xc5, +0xe0,0x1a,0xea,0xf9,0x2e,0xc4,0xa6,0x89,0x4f,0xfe,0xae,0x72, +0x9f,0xf8,0xe4,0x6f,0x5a,0x37,0x62,0x0f,0x7d,0x77,0xa9,0x8b, +0x25,0x57,0xfc,0x12,0xa3,0x72,0x5d,0xe9,0x28,0xbe,0x0e,0x47, +0x28,0x46,0xdd,0xfb,0xb3,0xe1,0x69,0xc1,0x4b,0x92,0xfa,0x33, +0xec,0xa6,0x24,0x75,0x3d,0xd9,0x1a,0x49,0xf1,0x2e,0x34,0x42, +0x59,0xe1,0x40,0x2a,0x10,0xe8,0x30,0x57,0x7a,0xae,0xf4,0x0d, +0x2c,0x22,0x9b,0xf4,0x60,0x23,0x6b,0x10,0x63,0x18,0x23,0x51, +0xa1,0xcf,0x3a,0xb7,0x25,0xab,0x33,0xb5,0xc3,0x28,0x03,0x47, +0x98,0x05,0x19,0xfb,0x9b,0x71,0x60,0x68,0xc4,0x2f,0xa0,0x32, +0xf7,0xed,0x0c,0x98,0x53,0xb4,0xd5,0xfc,0x94,0x81,0xf6,0x19, +0xa3,0x5a,0x19,0x1e,0x95,0x77,0xf7,0xb5,0x8d,0xe6,0x1a,0x17, +0x5b,0x56,0x38,0xd7,0xdb,0x76,0x27,0x26,0x8e,0xe4,0x90,0x53, +0x58,0x52,0x1a,0x08,0x06,0x2e,0xb5,0xde,0x3d,0x01,0x13,0xca, +0x5d,0x1f,0x37,0x7c,0x51,0xfd,0xa3,0x49,0x31,0xf6,0x3e,0xe0, +0x7e,0xd2,0x49,0x3d,0xe4,0x5e,0xe4,0x17,0x17,0x7f,0xe0,0x88, +0x26,0x23,0x1c,0x20,0x39,0xe8,0x47,0xc3,0x75,0xb0,0xc8,0x98, +0xdc,0xe9,0x65,0x49,0x01,0x2c,0x43,0xfe,0x93,0x76,0x4f,0x9c, +0x07,0x64,0x94,0x51,0x19,0xd6,0xef,0xcc,0x57,0xa7,0x04,0xc7, +0x1f,0x45,0x34,0x84,0x74,0x06,0xd5,0x9b,0xf8,0xe3,0x2c,0xa7, +0x6c,0x93,0x14,0xaa,0xe2,0x7f,0x27,0x4a,0xd4,0x6a,0xa8,0x78, +0xf7,0xd8,0xd7,0xfb,0x6f,0x30,0x25,0x97,0x20,0x02,0x09,0x16, +0x03,0xe3,0xc4,0x9a,0x5f,0xc1,0x82,0xb5,0x78,0xe0,0xec,0x4d, +0xb2,0x09,0xde,0x14,0x97,0x42,0x4e,0x20,0x8a,0x71,0x9b,0xe0, +0x5d,0x0a,0xf8,0xe9,0x24,0x40,0x64,0x0f,0xb1,0x61,0x91,0x33, +0x80,0x9f,0x31,0x95,0x38,0x19,0xf7,0xb9,0x72,0xe7,0x70,0xc3, +0x60,0xf5,0x24,0xe7,0xc0,0xff,0xd5,0x0f,0x8d,0x8f,0x48,0x6c, +0x1f,0xc4,0x3e,0xd0,0x39,0x04,0x61,0x46,0x24,0x6c,0x1f,0xe4, +0xb0,0xf6,0xb5,0x5e,0x06,0x1e,0x66,0x6e,0x96,0xca,0x59,0x2c, +0x19,0xd0,0x85,0xab,0x94,0x6b,0x7b,0x88,0x69,0x7a,0xe0,0x04, +0x9d,0x2a,0x37,0x7f,0x6b,0x78,0x9a,0xf7,0xe5,0x0b,0x56,0x71, +0x97,0xb2,0x0a,0xaa,0x04,0x20,0x99,0xbf,0xfe,0xdc,0xb4,0x3d, +0x44,0x82,0x58,0xf1,0xcd,0x73,0x1e,0x40,0xac,0x04,0x0e,0x91, +0x59,0x49,0x7f,0xa4,0x7c,0x2a,0xe6,0xf3,0x74,0xbe,0x68,0x7f, +0xd1,0xe6,0x22,0xf7,0x84,0xcc,0xea,0x81,0x59,0x9f,0xe8,0xed, +0x87,0x57,0x25,0xe4,0xd5,0xed,0xac,0xf9,0x45,0xe9,0x25,0xe9, +0x65,0x8e,0x7c,0x62,0x85,0xc8,0x48,0x0f,0xbc,0xf7,0x25,0x79, +0xad,0x07,0x5e,0x13,0x3f,0x9f,0x2b,0x21,0x73,0xb7,0xc3,0x6b, +0x0c,0xc9,0x84,0xef,0xc5,0x75,0x27,0x97,0xc8,0xe4,0x2a,0x55, +0xb2,0x84,0x38,0x0d,0x4c,0x63,0x03,0xa2,0xc9,0x86,0xae,0x3c, +0x62,0x02,0xcb,0x1c,0x0b,0xf5,0x30,0x39,0xd2,0xfa,0xf8,0x41, +0x1a,0x79,0x8b,0x23,0x6f,0xc3,0x32,0xe6,0x54,0x81,0xef,0x0d, +0x15,0xf2,0x16,0xd3,0xf1,0x3c,0x7d,0xa7,0x5e,0xae,0xd2,0xbc, +0xbf,0xcd,0xbd,0x91,0xe6,0x35,0xd9,0x75,0xa7,0x3b,0xe3,0x04, +0x15,0x93,0x15,0x49,0x64,0x1f,0xd7,0x3c,0x0c,0x4e,0x4c,0x5a, +0x4f,0x4a,0x7f,0xe2,0x80,0x7e,0x22,0x0e,0x05,0x65,0x67,0x50, +0x31,0x82,0xd7,0xeb,0x0c,0x71,0x66,0x79,0x66,0x75,0x7a,0x6d, +0x3a,0xcc,0x29,0x5c,0xdd,0xfc,0x81,0xf5,0x61,0xfd,0x13,0x87, +0xcf,0xd6,0x1a,0xe3,0x9b,0x53,0x03,0xd7,0x5a,0x6e,0xd5,0x9d, +0xe8,0x38,0x33,0x7c,0x96,0x13,0x0e,0x29,0xae,0xa1,0xaf,0xf4, +0xb7,0xc1,0x07,0x46,0x84,0xf4,0xb1,0x99,0x42,0x2d,0x32,0x8a, +0x34,0x8c,0x32,0x38,0xcf,0x95,0xb3,0xbd,0x55,0x5d,0x8d,0x15, +0x8d,0x5c,0x17,0xdc,0x31,0x21,0x31,0xac,0xb7,0xb7,0xcc,0xc5, +0xc2,0x9b,0xd3,0x60,0x0d,0xa2,0x0d,0xa2,0x25,0x17,0xe2,0x9d, +0xb1,0xe1,0x5f,0x51,0x99,0x33,0x36,0x29,0x22,0x0b,0xf5,0xc1, +0x63,0xd4,0x07,0xb7,0x8d,0x37,0x8e,0x55,0xdd,0xb0,0x6e,0xc0, +0x7e,0x46,0xde,0x32,0xcf,0xff,0x24,0x74,0x1e,0xd4,0xbe,0x5f, +0x99,0x21,0x74,0xd7,0x7f,0xaf,0x9d,0x41,0xa9,0x19,0x17,0xfc, +0x00,0xb6,0x52,0x94,0x0a,0x2b,0xee,0x4a,0x90,0x27,0xf6,0x24, +0x29,0xc3,0x62,0x98,0x23,0x96,0x1f,0x7b,0xca,0xb4,0xe4,0xe7, +0xb6,0x88,0x15,0x69,0x07,0x93,0x87,0x92,0xfb,0x53,0x38,0xe1, +0x2f,0x3e,0x50,0xe4,0x68,0xe7,0x29,0xec,0xfc,0x27,0x47,0xbb, +0x1c,0x81,0xa0,0x01,0x4c,0x49,0x03,0x43,0x62,0x89,0x26,0x8a, +0x06,0xd5,0x00,0x98,0x67,0x01,0xb3,0x6c,0xff,0x0a,0x24,0x6f, +0x44,0x92,0xe5,0x1c,0x1c,0xb5,0x47,0xab,0xe0,0xc8,0xaf,0xec, +0xbc,0xbf,0xb5,0xf8,0x9b,0xa8,0x07,0x2a,0xc9,0x62,0xf6,0xb3, +0xe4,0xc7,0xe9,0xb7,0xb3,0x3c,0x7b,0x30,0xac,0x74,0x01,0x83, +0x60,0x38,0x75,0x39,0xc3,0x10,0xdf,0x8b,0x79,0x1c,0xff,0x28, +0x91,0xf2,0x36,0xc8,0x97,0x90,0x60,0xd6,0xe4,0xcc,0x56,0x73, +0x98,0x2b,0x2d,0xa5,0xc3,0x32,0x7f,0xe0,0xc7,0x9e,0x9a,0x5f, +0xc4,0x6c,0x5a,0x23,0x62,0x36,0xad,0xca,0xf5,0xbf,0x9a,0x90, +0x85,0x3a,0x25,0xc3,0x78,0x79,0xc7,0x9a,0x76,0xa3,0xab,0x9c, +0x10,0x04,0x5f,0xd0,0x39,0x9e,0x7e,0x27,0xf1,0x7a,0xec,0xf7, +0xca,0x6d,0xd4,0x2c,0xab,0x9e,0xf3,0x10,0x6f,0x4b,0x4f,0x5b, +0x8e,0x94,0x3d,0x9f,0xe1,0xa2,0x76,0x79,0xe3,0x25,0x0b,0x69, +0x9c,0x61,0x21,0x33,0x53,0xfc,0x37,0xd8,0x4e,0xad,0x6f,0x0d, +0xd9,0x18,0xf9,0x1c,0xa8,0xf9,0xeb,0xfc,0x9b,0xa8,0xb4,0xa6, +0xac,0x2d,0xab,0xc1,0x28,0x1f,0x87,0x38,0xb9,0x4b,0xbd,0x5d, +0x39,0x2a,0x0c,0x50,0xae,0x6f,0x91,0x5d,0x86,0x7b,0x5f,0x21, +0x0e,0xa9,0xf0,0x69,0xf4,0x2f,0xe2,0x84,0xd5,0x9b,0x9f,0xab, +0x2b,0xf7,0xe7,0x73,0xea,0x85,0x9e,0x79,0x38,0x6d,0x89,0x86, +0xf8,0xf7,0xf4,0xc6,0xf8,0x83,0x42,0x9c,0x70,0x90,0xa5,0x08, +0x54,0x8c,0x60,0xe7,0x1f,0x64,0x27,0x33,0x2c,0xa6,0xdb,0xda, +0xbf,0x9c,0x05,0xdf,0x99,0x74,0x5b,0x3b,0xc5,0x74,0x5b,0xee, +0x0b,0xc9,0x7e,0xfa,0x7a,0x3f,0x33,0x4f,0xf1,0x27,0x6f,0x81, +0x4a,0xfc,0x4b,0x82,0x8a,0x43,0x4a,0xe4,0xd8,0xaa,0xc8,0xbc, +0xc2,0xba,0xbe,0xa6,0xbc,0xbc,0xb2,0xb4,0xce,0xb2,0x1e,0xfb, +0x38,0xb8,0xb9,0xb8,0x78,0x38,0xd5,0xb9,0x37,0x06,0xb4,0x72, +0xc4,0xab,0x0f,0xda,0x99,0x94,0xb2,0xa4,0x8a,0xc4,0x2a,0x83, +0x24,0x1c,0xed,0x78,0xde,0x25,0x82,0x32,0xd1,0x48,0x23,0xe2, +0xca,0xf8,0xc9,0x3c,0x6c,0x9c,0x1c,0x3c,0x6a,0x1c,0xeb,0xdd, +0x4a,0x5d,0x5c,0xb1,0x7b,0x85,0x9b,0x81,0x8b,0xd4,0xd1,0x5a, +0x39,0xf1,0x5f,0x3b,0xe9,0x4e,0xf4,0x41,0xbc,0x37,0xb3,0x56, +0xfd,0x05,0x99,0xdb,0xfa,0x4d,0xf1,0xb7,0x2f,0x14,0x2f,0x79, +0x1d,0xd6,0xe1,0xce,0x36,0x60,0xc9,0xb2,0x17,0x7b,0x6d,0x21, +0xa1,0x17,0x62,0x53,0xaf,0x26,0x8e,0xc6,0x7e,0xac,0xdc,0x37, +0xd8,0x32,0x50,0x3f,0x5e,0xea,0x59,0xee,0x9a,0xef,0xe9,0xe4, +0x6e,0xe7,0x61,0xe9,0x59,0x2e,0xc1,0xe5,0x79,0xa5,0x79,0xc5, +0x79,0x1c,0x24,0x11,0x75,0x70,0x03,0x15,0x36,0x47,0x57,0x89, +0xcc,0x61,0x06,0xb2,0xc4,0xbc,0x46,0x56,0xe4,0x08,0x0b,0x12, +0x6a,0x35,0x39,0xc6,0xf5,0xc6,0xad,0x52,0x11,0xf9,0x1b,0x5b, +0xab,0xe5,0xc5,0x23,0x9c,0xd0,0x6d,0xfc,0x7c,0xc7,0x7d,0x86, +0xce,0xd6,0x7c,0x93,0x3e,0xb3,0xb3,0xca,0xcf,0x85,0x10,0x4a, +0x02,0x87,0xb6,0xb1,0x26,0x73,0xd7,0xc2,0xd0,0x4f,0x6c,0x0a, +0x1c,0x41,0x52,0xad,0x93,0x1a,0xa7,0x6c,0xaa,0x8d,0xf0,0xb5, +0xd6,0x07,0xd7,0x7a,0xae,0x73,0xc4,0xfa,0x32,0xea,0x31,0x1d, +0x56,0x6f,0xd7,0x6a,0x6d,0xc7,0x56,0x83,0x67,0x6e,0x49,0x9b, +0x29,0x7f,0xfb,0x5b,0x61,0x85,0x04,0xc7,0x11,0x3e,0x07,0x0a, +0xd8,0x8c,0xe2,0xb4,0xd2,0x94,0x42,0xad,0x7f,0x67,0x2b,0xf2, +0x17,0x72,0x86,0x79,0x47,0x06,0x8e,0x08,0x22,0x86,0x89,0xf2, +0x34,0x38,0x82,0x2a,0xa0,0xd4,0x91,0xc4,0xc1,0xd8,0xdb,0xca, +0xfd,0xd7,0xda,0xa7,0xea,0xef,0x51,0x05,0xe4,0xae,0xe5,0x2a, +0x71,0x9e,0x59,0x44,0x1e,0xd4,0x83,0xeb,0x14,0xab,0x3c,0xe9, +0x53,0x9a,0x2b,0x3e,0x25,0xcb,0x1b,0x7f,0xd4,0x3d,0xcb,0xfd, +0xea,0x05,0x56,0xfd,0x00,0x27,0x71,0x57,0x93,0x12,0x11,0x43, +0x46,0x12,0x63,0x62,0xc4,0x4c,0x47,0x4b,0xd6,0x94,0x35,0xc3, +0xbb,0xdf,0x85,0xa6,0x46,0xc5,0x87,0xbf,0xcc,0x74,0xb4,0xaf, +0x83,0x52,0xbb,0x79,0x4c,0x5f,0x62,0x4f,0x72,0x97,0x98,0xe9, +0x68,0xa3,0x1f,0x70,0x61,0x30,0xff,0x52,0xaa,0x14,0x77,0xc5, +0x76,0xc6,0x75,0xcc,0x64,0x3a,0xda,0x26,0x23,0x4b,0x59,0x6f, +0x7b,0x89,0xe5,0x2e,0xcb,0x12,0x73,0xfc,0x53,0x5f,0x53,0x5b, +0x72,0x3f,0x97,0x04,0x9b,0x7b,0x19,0xe1,0x1f,0x44,0x31,0x23, +0x89,0x36,0xcc,0x78,0x79,0x3a,0xdd,0xfe,0x98,0x21,0xbf,0xaf, +0x00,0x42,0x85,0x65,0xb9,0xf5,0x99,0xd5,0xd6,0xb9,0x38,0xd4, +0xd1,0x5f,0x2c,0x85,0x03,0xf6,0x83,0x28,0xd7,0x3b,0xdb,0x3d, +0xc3,0xb3,0x31,0x1f,0x87,0x96,0x06,0x56,0x06,0x16,0x71,0xfc, +0x3e,0xc1,0x0e,0xf5,0x43,0xc3,0x0d,0x9d,0x53,0x10,0x6b,0x48, +0xa2,0x58,0xb7,0xd3,0x5b,0x75,0x60,0x9f,0xb4,0x58,0x17,0x13, +0xb3,0xf1,0xaf,0x6e,0xa5,0x7e,0xc6,0x25,0x31,0xa9,0xbb,0xff, +0x1f,0x6f,0xef,0x19,0x1e,0x47,0xb1,0xad,0x8d,0x62,0xe3,0xe9, +0x6e,0x47,0xd8,0x40,0x99,0x96,0x0c,0x92,0x6d,0xc0,0x38,0xe7, +0x8c,0x6d,0x39,0x47,0xc5,0x51,0x1a,0x49,0x33,0xca,0x39,0xe7, +0x9c,0xe5,0x8c,0x64,0xe5,0x1c,0xad,0x9c,0x73,0xce,0x39,0x38, +0x27,0x6c,0x83,0x6d,0x82,0x01,0xc3,0xc6,0x04,0xb3,0xc1,0xac, +0xd6,0x5e,0xa3,0xb3,0x6f,0xb5,0x04,0xfb,0xec,0xf3,0xdd,0xf3, +0xf3,0xde,0xef,0x91,0x1f,0x4f,0x3d,0x3d,0x9a,0xd1,0xaa,0x55, +0x6b,0xbd,0xeb,0x7d,0xbb,0xaa,0xab,0xbe,0x3b,0x02,0x06,0xda, +0x45,0x43,0x3c,0xee,0xee,0xdc,0x3c,0xec,0x71,0x83,0x56,0xcb, +0x8f,0xa7,0x75,0xa2,0x08,0x2b,0x61,0x91,0xfc,0xd9,0xbf,0x08, +0x4b,0xd3,0x58,0xdd,0x68,0xd9,0x75,0x0a,0x2b,0x81,0xa6,0xfe, +0x16,0xbe,0xb6,0x5c,0x3e,0x85,0x15,0x03,0x11,0x56,0xf2,0x28, +0xac,0x2c,0xa7,0xdc,0xa7,0x9d,0xca,0xc4,0xea,0xff,0x96,0x89, +0x0f,0x71,0x0b,0xdf,0x59,0x2f,0x81,0xd5,0x74,0x60,0x8c,0xee, +0x22,0x77,0xc4,0xe4,0x36,0x85,0x9f,0xdd,0xf0,0xfa,0xcd,0x9e, +0x63,0x30,0x9b,0xad,0x48,0x2e,0xcf,0x28,0xcb,0x77,0x6a,0xe3, +0x5d,0xfd,0x1c,0x42,0x6c,0xa2,0x39,0xe5,0x3c,0x28,0x15,0xd4, +0x59,0x98,0xaf,0x20,0xcf,0xd0,0x89,0x91,0x66,0x05,0x0d,0xa9, +0x15,0x31,0x0d,0x29,0xe2,0x81,0x62,0x8b,0x58,0x45,0x9e,0x04, +0x37,0x04,0xb2,0x81,0x67,0x12,0xf2,0xd5,0x21,0x17,0x8d,0x28, +0x42,0x21,0x1b,0x22,0x73,0xd2,0x56,0x6b,0xb0,0x95,0x74,0xdc, +0xcf,0xb9,0x0b,0x9c,0xea,0x94,0xba,0x42,0x2c,0x6f,0x31,0x6b, +0xa8,0x82,0xf4,0xe3,0x4b,0xbf,0x4d,0x9e,0x71,0x97,0x16,0x25, +0x82,0x9d,0x77,0x2b,0x3f,0xcf,0x7e,0xca,0x75,0x60,0xa5,0x21, +0xb8,0xb3,0x91,0x5a,0x3e,0x9a,0x8e,0x7a,0xce,0x7d,0x9e,0x43, +0x7e,0xa3,0x46,0x7e,0x7c,0xd9,0xe1,0xaa,0x13,0xcd,0xba,0xd6, +0x86,0x32,0xb9,0xae,0x53,0xb9,0x09,0x3f,0x51,0xd7,0xd7,0xd1, +0x36,0xd0,0x6c,0xd2,0x6d,0x3e,0x66,0x5d,0xd9,0xc7,0xeb,0x36, +0x98,0xb5,0xdb,0xf4,0x70,0x28,0x73,0x20,0xd6,0x11,0x16,0x91, +0x8a,0x48,0x4a,0x8c,0x80,0xeb,0x47,0x0e,0x16,0x1a,0x50,0x41, +0x33,0xdf,0x88,0x66,0x8c,0x06,0xab,0x88,0x36,0x8b,0x31,0x3d, +0x9d,0x42,0x3d,0xfb,0xb7,0x7c,0x78,0xa5,0xe8,0xfb,0x2a,0xea, +0xc6,0x04,0x38,0x4d,0x66,0x78,0xdf,0xb4,0xdc,0x4e,0xbf,0x97, +0x70,0x3d,0xee,0xb9,0x4a,0xdf,0xb5,0xe6,0x2b,0xb5,0x77,0x69, +0xb0,0x79,0xea,0x79,0xc8,0x5c,0x2c,0x38,0xa8,0xfc,0x3f,0xc5, +0xf6,0x74,0xa8,0x7d,0xf3,0xe7,0x2c,0xf4,0x57,0x14,0x98,0xa8, +0xd8,0x06,0x75,0x01,0x88,0x53,0xbb,0x6d,0x83,0x75,0x8d,0x83, +0x2d,0xdf,0xec,0x50,0x6f,0x57,0x6b,0xc9,0x09,0x79,0xe1,0xc4, +0xa8,0x5d,0x7e,0xdd,0x77,0x98,0x43,0x4b,0x63,0xd8,0xcf,0xe4, +0x28,0x06,0x0e,0x74,0x59,0x72,0xca,0x5d,0x17,0x48,0x7f,0x67, +0xf7,0xfd,0xdc,0x3e,0xf3,0x02,0xde,0xd7,0xc8,0xde,0xc0,0x8c, +0x92,0x25,0x33,0xa5,0x19,0x69,0x68,0xa4,0xca,0x60,0x45,0x64, +0xc6,0xe9,0x84,0xb0,0x08,0x95,0x70,0xf1,0xb0,0xd1,0x73,0xd9, +0x67,0xb3,0xce,0x66,0xf7,0x57,0x4d,0xf4,0xd5,0x35,0xdb,0xd7, +0xf1,0xae,0x36,0x86,0x16,0x0a,0xd7,0xf0,0xaa,0x90,0x8a,0xe0, +0xd2,0xc2,0x9c,0xfc,0xbc,0x9c,0x7c,0xee,0x87,0x2e,0xec,0x36, +0x83,0x77,0x19,0x7d,0xf9,0x1e,0x8b,0xfd,0xee,0x45,0xe6,0x7c, +0x57,0x7e,0x5f,0x49,0x67,0x55,0x6a,0x48,0x4a,0x50,0x72,0x90, +0x81,0xfc,0x23,0xf9,0x01,0xb7,0x62,0x53,0xfe,0x4e,0xd5,0xa3, +0x9e,0xfe,0xb6,0x14,0x9f,0x64,0xaf,0x44,0x4f,0x2d,0xbd,0x55, +0x5a,0x9b,0xec,0x4b,0x4c,0xf9,0xaf,0x1a,0xbe,0x1b,0x1b,0xea, +0xe3,0x2e,0x79,0xc7,0x79,0x7a,0xaa,0x4a,0x43,0x1c,0x4f,0xa9, +0x9d,0x62,0x32,0x65,0x92,0x51,0xe6,0x79,0x69,0xdf,0x4f,0xb1, +0xea,0xb1,0xad,0xa7,0x5b,0xcf,0x54,0x5d,0x48,0x8a,0xbf,0x94, +0x70,0x86,0x9b,0xf2,0x82,0xeb,0xff,0x8b,0xfe,0x07,0x83,0x2d, +0xa4,0xd5,0xa9,0xd5,0xaa,0xc1,0xa2,0xae,0x91,0xb7,0x6f,0x37, +0x6f,0xb1,0xaa,0xe6,0x7e,0xc7,0x60,0xca,0x19,0x0d,0x7f,0x42, +0x86,0xc1,0xd9,0x2e,0x26,0x6b,0xa5,0x6a,0x15,0x06,0x5f,0x0c, +0x54,0x77,0x26,0x3e,0xa6,0xda,0x67,0x45,0xea,0x2d,0x43,0xe0, +0x97,0xc0,0x0d,0x26,0x79,0x48,0x82,0x57,0x19,0x5c,0xa6,0x7f, +0x03,0x16,0xa9,0x8b,0x0f,0x72,0xbc,0x49,0x64,0x82,0x6f,0x2f, +0xba,0xdc,0x03,0xdd,0x1e,0xd4,0x15,0xb7,0x08,0x3a,0x6a,0x02, +0x47,0x0f,0xb2,0xca,0xbd,0xca,0x15,0x24,0x7a,0x7a,0x32,0x68, +0x3a,0xde,0x33,0x3f,0x49,0xb8,0x1d,0xf7,0xab,0x4a,0xfb,0x58, +0xfd,0x70,0xd5,0x75,0x9b,0x46,0xde,0x97,0x96,0x51,0x4f,0x1b, +0x0e,0x2e,0x4f,0x53,0xfd,0x5c,0x77,0x3a,0x50,0xcc,0xf4,0x7a, +0x81,0xdb,0xbf,0xd5,0x89,0x45,0x74,0xa6,0x82,0xdc,0xc0,0x0f, +0xa6,0x31,0x61,0x9d,0xf0,0x33,0x71,0x6b,0xb5,0xed,0xb0,0xab, +0xb3,0xb3,0xe1,0xeb,0xed,0xeb,0x2d,0xab,0xe5,0x9c,0x72,0x76, +0xb8,0xa8,0x62,0x63,0xd6,0x7a,0x7d,0x34,0x4d,0xd7,0x53,0xa7, +0x23,0x13,0xcc,0xb7,0x92,0x1a,0xe7,0x6a,0xdb,0x4a,0xcb,0xfa, +0x16,0xde,0xa3,0xd1,0xb1,0xd5,0xb1,0x8a,0x13,0x16,0x28,0xf5, +0x09,0xb8,0xf6,0xa0,0xeb,0x63,0xd0,0xea,0x46,0xad,0x4f,0xc5, +0xe7,0xf1,0xdf,0x62,0xf2,0x2a,0x73,0xeb,0xb2,0xab,0x4d,0xf2, +0xf8,0x10,0x87,0x00,0x2b,0x6f,0x6b,0x0e,0x0b,0x64,0x60,0xbc, +0x17,0x8f,0x98,0xc2,0x91,0xdd,0xd3,0x6a,0x0b,0x99,0x61,0xca, +0xb5,0x85,0x5c,0x52,0xe0,0x92,0xeb,0x94,0xe1,0xd1,0x59,0xc8, +0x87,0x55,0x04,0x55,0xf9,0x57,0x70,0x55,0xca,0x3b,0x04,0x3f, +0xb0,0x1e,0xa0,0x3e,0x00,0x2d,0x7c,0xdf,0xe0,0x0b,0x24,0x2c, +0xce,0xf1,0xb0,0xdb,0xa4,0x50,0x2b,0xd6,0xfc,0xbe,0xb7,0xb0, +0xe5,0xd2,0x37,0x2a,0x49,0xcc,0xda,0xc4,0x36,0x2d,0xd8,0xb0, +0x04,0xbe,0x60,0x52,0x86,0x25,0x8b,0x20,0x19,0xa2,0xc8,0x0c, +0xd7,0x9d,0x76,0x48,0xda,0x58,0xe2,0x10,0xe5,0xcd,0xbd,0x57, +0x9a,0xc7,0xeb,0x6e,0x73,0x90,0xa4,0x81,0xde,0x66,0xe0,0x7d, +0x04,0xd3,0x4d,0x85,0xdf,0xbb,0xb1,0xeb,0x36,0x5c,0x80,0xd7, +0x07,0xbb,0x0d,0x60,0x21,0x5e,0xe8,0x37,0x34,0x42,0x2f,0x33, +0xf0,0x3a,0x88,0xe9,0xce,0x8c,0x4b,0xb9,0x87,0xae,0x3b,0x05, +0x54,0x95,0xf2,0xff,0x71,0x4b,0x69,0xf6,0x9f,0x0c,0x64,0x46, +0x27,0x25,0xc6,0x53,0xac,0xf8,0x0a,0x77,0x89,0xce,0x13,0x92, +0x27,0x57,0x92,0x83,0xa8,0x7f,0x8f,0x55,0x7e,0xb1,0x7e,0x26, +0x1a,0xfe,0x82,0xbe,0x19,0xa6,0x51,0xf5,0x01,0x79,0x00,0xfa, +0x1a,0xac,0xd2,0x07,0x27,0x49,0x47,0x77,0xf5,0x60,0x5e,0xbf, +0x79,0x1e,0x1f,0xa4,0x70,0x32,0xb4,0xb2,0xe1,0x84,0xf3,0xc0, +0x90,0x3a,0xb3,0x62,0xcb,0x52,0xdd,0xee,0x12,0xde,0x6d,0xd4, +0xab,0xcd,0xa1,0x93,0x5b,0x87,0x6f,0x93,0xf0,0xf6,0xe0,0xc6, +0xe0,0x6a,0xb3,0x50,0x3e,0xdb,0x31,0xdb,0x36,0xcd,0x9c,0xc3, +0xd9,0x69,0xe4,0x6c,0x5b,0x74,0x73,0x44,0xad,0x59,0x34,0x9f, +0x6a,0x97,0x68,0x9b,0x60,0xc9,0xe1,0x51,0x1f,0x82,0xc6,0xbb, +0xc4,0x7b,0x58,0xda,0x60,0xcc,0x22,0xc8,0x09,0xae,0x5c,0x03, +0x2b,0x59,0x58,0x85,0x2b,0x09,0xac,0x7c,0x8e,0x2b,0xd9,0xbe, +0xc5,0xb0,0xf2,0x67,0xfa,0xba,0x68,0x0c,0xfe,0x4e,0xbe,0xab, +0x79,0xda,0x35,0x3e,0xc8,0xc5,0x05,0xc4,0x06,0x06,0xa9,0xea, +0x05,0x84,0xca,0xd5,0xf4,0xc4,0xf3,0x11,0xfa,0x98,0x87,0x95, +0xf5,0x5f,0x14,0x5f,0x28,0x3e,0x5f,0xa4,0x7e,0x31,0x21,0x3e, +0x2e,0xfe,0x1c,0x70,0xf8,0x0a,0x5f,0xdf,0x86,0x73,0x7e,0x0d, +0x4f,0x8f,0x8a,0x8d,0x8c,0x50,0x89,0x08,0x93,0x9c,0x66,0xce, +0x67,0x9f,0xcb,0x3e,0x93,0xd5,0x51,0xda,0xd7,0x54,0xd7,0xe0, +0xd8,0xc0,0x3b,0xd9,0x9b,0xda,0x39,0xfa,0x87,0x97,0x06,0x95, +0xf9,0x55,0x5c,0xce,0xc9,0xcf,0xa5,0x89,0x07,0x1b,0x7b,0x95, +0xbb,0x65,0x60,0xce,0x18,0x9a,0x1d,0xb0,0xdf,0xee,0x93,0x67, +0xc6,0xf7,0x67,0x0f,0x95,0x74,0x57,0x66,0x84,0xa6,0x86,0xa5, +0x84,0x1a,0x58,0x1e,0xb4,0xdf,0xe5,0x9d,0x67,0xca,0x3f,0x28, +0x79,0xd4,0x34,0xd4,0x99,0x12,0x98,0x18,0x94,0x10,0x74,0x4a, +0x77,0x93,0x62,0xb5,0x13,0x27,0xd8,0x3c,0x22,0x9f,0x16,0x7f, +0xd6,0x38,0xdc,0x99,0x4c,0x2f,0xc7,0x07,0x9e,0x94,0x6e,0x33, +0x5f,0xe3,0x7c,0xd9,0x94,0x7f,0x5a,0xf9,0x65,0xfb,0x04,0xb5, +0x39,0x38,0x36,0x28,0x58,0x55,0x3b,0x28,0xc8,0x48,0xb4,0xd9, +0x54,0x32,0xc6,0x3c,0xa8,0x6c,0xfa,0xf2,0x4f,0x9b,0xe3,0x2f, +0xc5,0x27,0x9c,0x85,0x37,0x71,0xbe,0x68,0xf3,0xdf,0x40,0x12, +0x9e,0x16,0x73,0x29,0x22,0x5c,0x34,0xfa,0x0c,0x73,0x3e,0xf3, +0x5c,0xd6,0xb9,0xcc,0xde,0xb2,0xb1,0x96,0xe6,0x26,0xc7,0x46, +0xde,0xc6,0xce,0xc8,0xd6,0xd2,0x27,0xbc,0xfc,0x4f,0xa3,0xf3, +0xb2,0xa9,0xd1,0x87,0x7b,0x95,0x87,0x68,0x6c,0x32,0x06,0xa6, +0xbb,0xed,0xb6,0xf9,0xe4,0xca,0xf9,0xe1,0x9c,0x91,0xe2,0x9e, +0xca,0xf4,0xd0,0xd4,0x50,0x6a,0xb4,0xc5,0x41,0x87,0x6d,0xde, +0x5c,0x0b,0xea,0x90,0x53,0xc6,0x0c,0xbe,0x8f,0xaf,0xef,0xc1, +0xc6,0x3d,0x6a,0xc5,0x5a,0xd0,0xf2,0xf4,0xd7,0x1b,0x85,0xa0, +0x3a,0x7d,0xf3,0x42,0x15,0xe6,0x1f,0x87,0xa6,0x2d,0x85,0x57, +0x78,0xac,0xff,0x0c,0x97,0x7f,0x06,0xef,0xab,0x82,0x2d,0x6e, +0x26,0xdd,0xcd,0x5d,0x43,0x15,0x5d,0x86,0x95,0xbc,0x9b,0x42, +0xae,0x2f,0x77,0xe4,0x94,0x09,0xfa,0xf4,0x5a,0xef,0x48,0x79, +0xb7,0x7e,0x39,0xef,0xa1,0x30,0xd5,0x37,0x75,0x98,0xbe,0x89, +0x1d,0x24,0xd2,0x40,0x5a,0xb3,0x2e,0xdd,0x9b,0x5e,0x5f,0x57, +0x7d,0x8d,0xe6,0xb0,0x8f,0x89,0x97,0x85,0x87,0x0d,0x57,0x31, +0xad,0x42,0xae,0xd2,0xca,0xee,0x8e,0x8b,0x68,0x6d,0x3f,0x4a, +0x89,0xe0,0xbd,0x97,0x8d,0xdf,0xe6,0x7f,0xfd,0xd7,0xdd,0x28, +0x0e,0xf5,0xf8,0xae,0x26,0x94,0xc0,0x89,0x19,0x44,0x50,0x81, +0xb7,0x85,0x6b,0xc4,0x14,0xac,0x0e,0xa1,0x91,0x1c,0x8c,0xf6, +0xa3,0x9d,0x19,0xe4,0x43,0x1b,0x5b,0xb3,0xd8,0x14,0xdc,0x0f, +0xa1,0xb5,0x1c,0xac,0xf7,0x8b,0xe9,0x50,0x4d,0xaf,0x4d,0xfd, +0x03,0xb7,0xfd,0xcf,0xbb,0x55,0xd3,0x79,0x2e,0x7c,0x3a,0x35, +0x97,0xca,0x77,0x71,0x0f,0xce,0xcf,0xc1,0xb1,0x53,0xfc,0x3f, +0xb2,0x0b,0x83,0xd8,0xec,0xa2,0xec,0x8a,0xd4,0x12,0xfd,0x4c, +0x3e,0xca,0x3d,0xd8,0xc5,0xcf,0x99,0xc3,0xfd,0x4c,0x66,0x49, +0x7a,0x49,0x5a,0xa9,0x49,0x36,0xef,0xbc,0x53,0x6f,0xdb,0x81, +0xe3,0x75,0xe6,0x7c,0x51,0xd1,0xe5,0xe2,0xfc,0x62,0x4e,0xf9, +0xda,0x48,0x9b,0x10,0xd1,0xcb,0x2a,0x23,0xa8,0x56,0xff,0x1c, +0x74,0x77,0xb2,0xa8,0x8b,0x8b,0x67,0x5a,0x66,0x54,0xd9,0xe8, +0x8a,0x4b,0x00,0x9e,0x09,0x84,0x9c,0x8e,0xb9,0x78,0x7a,0x49, +0x82,0x51,0x5f,0xc2,0xbd,0xd4,0x81,0x4c,0x95,0xf8,0xd0,0x4b, +0xa1,0x97,0xc2,0xda,0xb2,0xf8,0xf3,0xe9,0x17,0x32,0xce,0x65, +0xd2,0xe1,0x61,0xe2,0x6d,0xfb,0x13,0x1e,0xa6,0x0f,0x65,0xaa, +0x5c,0x0a,0x89,0x0f,0xb9,0x14,0xda,0x91,0xc5,0x47,0x8c,0x04, +0xdc,0x0f,0xe8,0xb5,0x0c,0xe1,0x53,0x3c,0x52,0xdc,0x93,0x5d, +0x3d,0xce,0x38,0x9f,0x71,0x3e,0xd7,0x7d,0xbf,0xf7,0xd7,0xfa, +0x5f,0x2c,0x0b,0xf9,0x10,0x73,0x3f,0x13,0x5f,0xd3,0xa8,0xfc, +0xc8,0xfc,0xc8,0xbc,0xda,0x5b,0x55,0x4f,0x72,0x07,0xcd,0x2f, +0xf3,0xa1,0xc6,0x9e,0xc7,0x3d,0x75,0x7d,0xeb,0x79,0x1f,0x5f, +0xc9,0xfd,0xad,0x6c,0x56,0x45,0x6a,0x65,0x4a,0x99,0x22,0x9d, +0x8f,0x71,0x8d,0x70,0x0c,0x71,0xe4,0xf4,0xf1,0x17,0x26,0xaa, +0x39,0xa2,0x25,0xbc,0xca,0x32,0x94,0x4f,0x75,0x4b,0x75,0x49, +0x76,0xf1,0x3c,0xe3,0x7c,0xd6,0xe5,0x6c,0xc7,0xc3,0xce,0x5f, +0xeb,0x7f,0xb5,0xa2,0x5f,0x60,0x1e,0x60,0xea,0x27,0x8f,0xce, +0x8d,0xca,0x8b,0xcc,0xab,0xbe,0x59,0xf1,0x45,0xf6,0xa0,0x55, +0x3e,0x1f,0x21,0xf7,0x3a,0xec,0xa9,0x13,0x93,0x79,0x3a,0x3d, +0x26,0xdd,0xc1,0x89,0x2f,0x33,0xaf,0x3f,0x59,0x6c,0x18,0x60, +0xe5,0x67,0x1b,0xe0,0xc2,0x7d,0x84,0x6a,0x33,0x90,0x14,0x19, +0x26,0x16,0xd3,0xe4,0xe1,0xf8,0xbe,0xb8,0x6b,0x54,0xea,0xd4, +0x8f,0x54,0x5c,0xa7,0x52,0x3e,0x40,0xe6,0x6b,0xe1,0x6d,0xcb, +0x55,0xfe,0x0f,0xa0,0x99,0x91,0x3a,0x77,0x61,0x16,0xad,0xa7, +0xdf,0xfd,0xb9,0x54,0xf4,0x67,0xdc,0x3c,0x5d,0x4f,0x1f,0x09, +0x91,0x64,0x0d,0x30,0xcf,0x19,0x25,0x18,0xfe,0x1f,0x48,0x03, +0xb3,0x55,0x27,0x0f,0xe3,0x07,0xc4,0xcf,0xda,0xd7,0x2e,0xc0, +0x95,0xbb,0x78,0xe6,0xec,0xc7,0x67,0x97,0x40,0x12,0x5b,0x6a, +0x59,0x69,0x58,0x48,0x39,0xac,0x6f,0x33,0x79,0x8e,0x0b,0xd7, +0x30,0xf0,0x12,0x5d,0x48,0x1f,0x56,0x3f,0xd2,0xfb,0x08,0x53, +0x8d,0xa9,0x5a,0x71,0x3e,0xfc,0xbe,0x1e,0x2e,0xd6,0x2e,0x33, +0xe4,0x41,0xf5,0x26,0x48,0x26,0x52,0xbe,0xa3,0x44,0x2e,0x6b, +0x04,0xb2,0x92,0x98,0x94,0x75,0xb0,0x40,0x0b,0x96,0x9e,0x28, +0x1d,0xe0,0x71,0xc9,0xf8,0xd2,0x11,0xfb,0x3b,0xdc,0x22,0xe1, +0xf1,0xe4,0x32,0xa2,0xc7,0xe2,0x92,0x98,0x4b,0x36,0xc0,0x27, +0x4b,0x5c,0x59,0x8b,0xac,0xe0,0x21,0x35,0xf0,0x62,0x6a,0x32, +0xd2,0xab,0xd5,0xab,0x59,0xa3,0x0c,0x89,0x29,0xca,0x59,0xdf, +0x33,0x89,0xb9,0xea,0x14,0x42,0xb5,0xd2,0x2e,0x34,0xe1,0xa9, +0x48,0xc9,0x20,0x9c,0x63,0xcf,0x7a,0x47,0x79,0x45,0x07,0xf6, +0x86,0xf1,0x69,0x25,0xe9,0xf5,0x89,0x95,0x5c,0x35,0xf6,0xf4, +0x43,0x5e,0x2b,0xe6,0x75,0xe9,0xd0,0xb4,0xf2,0xa6,0xd1,0x85, +0x6e,0x61,0xb8,0xe5,0xb8,0xf8,0xdc,0xb0,0xb3,0xe4,0x0e,0xac, +0xcc,0x86,0x5d,0x10,0xa9,0x0a,0x47,0x59,0xdc,0xa6,0xdc,0x20, +0xd2,0x92,0xf8,0x88,0x7f,0x7b,0xb2,0x3f,0xee,0x06,0xe5,0xc0, +0x2d,0x57,0xea,0x3e,0xb1,0xaa,0xe7,0xbd,0x74,0xdd,0x65,0xff, +0xc9,0x81,0x0b,0x44,0x0e,0x3c,0x4b,0x9c,0xee,0xb1,0xba,0x03, +0xb3,0x6b,0xbf,0xcf,0xf9,0x8b,0x99,0x5c,0x43,0x15,0xbe,0xa3, +0x51,0x82,0xb1,0x42,0xe9,0xff,0x2c,0xdc,0xbf,0xc3,0x2c,0xd5, +0xc9,0x3c,0xa5,0x91,0xf8,0x3c,0xcb,0x21,0xf1,0xb1,0x31,0x3d, +0xf1,0xb1,0x31,0xb5,0x21,0x50,0x63,0xba,0xc5,0xc7,0xc6,0x96, +0xe9,0xb3,0x28,0xb5,0x21,0x52,0x54,0x1b,0x66,0x41,0x67,0x31, +0x2c,0x93,0x52,0xa1,0x0d,0xd6,0x3b,0x89,0xd2,0x1a,0xb7,0x4a, +0x15,0xc2,0x50,0x87,0x0d,0x83,0x9f,0x01,0x47,0x90,0xdb,0x06, +0x1c,0x0b,0xaa,0x48,0xa5,0x3f,0xf7,0x14,0x39,0xb6,0x73,0x31, +0x70,0xdf,0xd1,0xd7,0x45,0xd0,0x39,0xb9,0x86,0x78,0xeb,0x7a, +0xca,0xdc,0xcd,0xc5,0x95,0x7c,0x43,0x86,0x78,0x8b,0x5a,0xea, +0x8d,0xaf,0x7d,0x20,0x6a,0x3b,0xeb,0x2b,0xbf,0x57,0x3f,0xcb, +0x12,0x53,0x3a,0x8e,0xa6,0xf4,0x3d,0xdc,0xce,0x77,0xd4,0x1d, +0x81,0x8d,0x33,0x53,0x1f,0x2a,0x61,0x91,0xe7,0x2e,0xa5,0x8c, +0x27,0x0c,0xc5,0x3d,0x50,0xe9,0xbe,0xd1,0x74,0xb5,0xe6,0x3e, +0x77,0x09,0x4e,0x92,0xff,0x5a,0x30,0x20,0x3c,0x03,0x4b,0xe8, +0x64,0xaf,0x8b,0x4f,0xe2,0xd8,0x28,0xcb,0x0e,0x30,0xf9,0x55, +0xba,0xf5,0xf2,0x66,0xaf,0x76,0x15,0x58,0x04,0x8e,0xb8,0xae, +0x13,0x0e,0xb5,0xe1,0xa1,0x51,0x33,0x5d,0xd4,0xb0,0x00,0x0d, +0x39,0xae,0x42,0x47,0x98,0xcb,0xb8,0x19,0x1a,0x29,0x8e,0x5a, +0x95,0x2b,0xf8,0x87,0xbd,0x63,0x83,0xa9,0xf7,0xb8,0x64,0x34, +0xea,0x02,0xa3,0x64,0x26,0x55,0xda,0x6a,0x7a,0xdd,0x2c,0xc3, +0x82,0xbf,0xcd,0xb4,0xe5,0x64,0x77,0xa8,0x4f,0x0e,0x61,0x26, +0x8b,0x85,0xd3,0x4f,0xe2,0xac,0xd3,0x60,0x61,0xcf,0xe2,0x07, +0xb0,0x51,0x83,0x9d,0x6a,0xb1,0xa0,0xa4,0x75,0xce,0xe9,0xb5, +0xbe,0xa2,0xf7,0x8a,0x9f,0x25,0xff,0x2e,0xde,0xc9,0x2b,0xd9, +0x43,0x1e,0xc3,0xba,0xdd,0xe2,0x6f,0x3d,0x86,0x8d,0xbb,0x69, +0x3c,0xe3,0xc7,0x04,0xdf,0x7d,0x0f,0xde,0x65,0x61,0x2d,0xbe, +0x4b,0xe0,0x5d,0x78,0x05,0xdf,0x65,0xb5,0xd3,0x49,0x76,0xe1, +0xe5,0xf6,0xe4,0x52,0xe7,0x4c,0x3e,0xc6,0xc3,0xdf,0x26,0xd4, +0x87,0xc3,0x35,0x0f,0x48,0x86,0x4f,0xa6,0x63,0x8a,0x7b,0x35, +0xbd,0x56,0x16,0x5e,0x1f,0x5e,0x24,0x6e,0x8f,0x22,0xe4,0x11, +0x8d,0x21,0x60,0x2c,0xd9,0x4c,0xc8,0x96,0xa0,0xb5,0x1d,0x6c, +0x60,0xce,0x9b,0x48,0x70,0xb5,0x13,0xac,0x62,0xce,0x1b,0x49, +0x70,0x85,0x33,0xbc,0xcf,0x5c,0x30,0x90,0xe0,0x31,0x28,0xc6, +0x47,0x58,0x8c,0x47,0x99,0x0b,0x83,0x12,0x58,0x51,0x8d,0x2b, +0x99,0xf3,0xbd,0x12,0x58,0x53,0x83,0x6b,0x99,0x0b,0x35,0x83, +0xc9,0x23,0x19,0xad,0xd9,0x2a,0x81,0x4d,0xd2,0x80,0x93,0x61, +0xc7,0xa3,0x55,0xd2,0xf1,0x8c,0x84,0x72,0x8f,0xc1,0x07,0x8c, +0x60,0xfc,0x09,0xf9,0x0d,0x75,0x6b,0xc0,0xb4,0x1c,0x4d,0x6b, +0x21,0x0c,0xa3,0x31,0x8c,0xc6,0xd0,0xca,0xfb,0x44,0x81,0x2b, +0x3b,0xd8,0x6f,0xd1,0x99,0xe0,0xdb,0xad,0xc6,0x96,0xb8,0xd9, +0x9e,0x92,0x49,0x0f,0x57,0x4d,0x87,0x0f,0xdc,0x73,0xad,0x78, +0xe0,0x6a,0xc7,0x1b,0x33,0x3a,0xa9,0xac,0x9f,0xdf,0xf7,0x80, +0xa1,0x10,0x9c,0x78,0x5e,0xed,0x47,0xe3,0xc2,0xba,0xf5,0x5d, +0x91,0x09,0xa7,0x2f,0x9e,0x89,0x51,0x89,0x89,0x90,0x9c,0x6b, +0x82,0xb7,0x19,0x08,0x0f,0x26,0x89,0x4c,0xae,0xde,0x7d,0xaf, +0x7f,0xb8,0x66,0xb5,0xf0,0x1b,0x4a,0xf7,0x97,0x7b,0xd4,0x70, +0xb0,0xa2,0x1e,0xf7,0x88,0xdf,0xba,0xc2,0x1e,0xfe,0xc6,0xf8, +0xbb,0x9a,0xb9,0x1f,0xf6,0xca,0xb7,0xe3,0x9f,0xd4,0x34,0x17, +0x67,0x74,0xd1,0xe4,0x9b,0xdf,0xc3,0x40,0xc4,0x01,0xd2,0xae, +0x74,0x63,0x33,0x73,0xd2,0x72,0x52,0x73,0x2c,0x29,0x85,0xf2, +0x0c,0xf6,0x0d,0x08,0xe0,0xf0,0x77,0x73,0xe8,0x62,0x8e,0x5b, +0xad,0xf3,0xc2,0xa5,0x3e,0x59,0x0a,0x1e,0x0e,0x55,0xc0,0x9c, +0x9e,0x3b,0x23,0x1c,0xec,0x65,0xca,0x3c,0xeb,0xbd,0xbb,0xfd, +0xfc,0xdc,0x3c,0xdc,0x6d,0xdc,0x9a,0xbc,0xf8,0xa6,0xaa,0x8a, +0xaa,0xc2,0xea,0xee,0xc0,0xb1,0x90,0x7b,0x61,0xd9,0x6d,0x3c, +0x92,0xa2,0x35,0xa5,0x9a,0x1d,0x1c,0x2e,0xf5,0x20,0xfa,0x1e, +0xcc,0x9a,0x53,0x3a,0xd8,0xe3,0xa4,0x96,0x65,0x0a,0xa9,0xb5, +0x2f,0x9a,0x33,0x7e,0xa7,0x35,0x2c,0x67,0x39,0x10,0x6b,0x48, +0x73,0xca,0xee,0xe2,0x71,0xb8,0x66,0xe3,0xe8,0x8f,0xaa,0xa8, +0x17,0x4e,0x7c,0xac,0x5d,0x9c,0x64,0x2e,0x35,0x6e,0x7c,0x4f, +0x55,0x5d,0x43,0x51,0x27,0xad,0x55,0xb1,0x93,0x9e,0x04,0x6c, +0x63,0xe1,0x4c,0x36,0x68,0x34,0x78,0xf6,0xf3,0x76,0x78,0x12, +0xcf,0x87,0xa3,0xcb,0x12,0xef,0x6d,0x26,0x1b,0xf7,0x1d,0xea, +0xb6,0xe4,0xef,0xdc,0xe8,0xf9,0xaa,0xe2,0x09,0x27,0x9c,0xf1, +0x21,0x43,0x3a,0x43,0x07,0xea,0x8e,0x0d,0x56,0xf1,0x36,0xb7, +0x0c,0xee,0xea,0x8f,0x70,0x18,0x4e,0x6b,0x62,0x48,0x97,0x4f, +0xaf,0x6f,0xa3,0x34,0x84,0x2f,0xb4,0x29,0x94,0x65,0x9a,0x71, +0xf0,0x03,0x52,0xfe,0xb8,0x77,0x6a,0xb7,0x01,0x74,0x21,0xa3, +0xdc,0x20,0x15,0xc4,0x93,0xbb,0x1f,0x1a,0xc0,0x43,0xfc,0x10, +0x8f,0xb2,0x59,0x54,0x9b,0xaf,0x63,0x7a,0x0b,0x2f,0xf7,0xa8, +0x03,0x0f,0x29,0x66,0x57,0xc0,0xfd,0xb7,0x61,0x16,0xf7,0x50, +0xe2,0x44,0x39,0x6d,0x32,0x30,0x2c,0x36,0xce,0x01,0x16,0x92, +0x91,0x65,0x17,0x09,0xf6,0x93,0x71,0xa4,0x38,0xe9,0x72,0x72, +0x7e,0x8a,0x73,0x0f,0xbf,0xd6,0x1e,0xd7,0xfa,0xe2,0x96,0x33, +0x1c,0x46,0xb0,0x98,0x10,0x83,0xba,0x9a,0xc8,0xa9,0x75,0xe9, +0x4b,0x6e,0xc3,0x3b,0xe9,0xa0,0x0f,0xa5,0xaa,0x60,0xc8,0x56, +0xc4,0xd5,0xc4,0xd5,0x5e,0xe2,0xa6,0x6a,0x47,0x27,0x5b,0xd8, +0xea,0x84,0xea,0x84,0xaa,0x24,0x0e,0x0f,0xb3,0x4a,0x8f,0xef, +0x71,0x2b,0xbc,0x54,0x7b,0xc2,0x64,0x8c,0x49,0xf0,0x15,0x06, +0x9b,0xb7,0xc0,0x62,0x41,0x53,0x5d,0x38,0x88,0xff,0x22,0x18, +0xc6,0xb8,0x86,0x25,0x55,0x89,0xcb,0xd7,0xc7,0xe1,0x47,0xe5, +0x6c,0x65,0x37,0x6b,0x54,0xec,0x32,0xae,0x06,0x71,0x4c,0x4b, +0x76,0x4e,0xbb,0x3a,0x2c,0x60,0xa5,0x59,0x12,0xca,0x6d,0xdf, +0x26,0x18,0xbd,0x0a,0xa2,0x59,0x48,0x5a,0x8c,0xd1,0x1f,0xd0, +0xc6,0x22,0xb8,0x30,0xe9,0x4f,0x40,0x11,0x07,0xd1,0xe9,0x70, +0xa2,0xd1,0xbd,0x77,0xda,0x7f,0x31,0x51,0xe8,0xba,0xc4,0x53, +0x43,0xbe,0xed,0xc0,0x91,0x5e,0x2b,0xfe,0xc6,0xad,0xee,0x27, +0xa5,0x37,0x38,0xe1,0x6c,0x24,0x19,0xd6,0xea,0xdb,0x5f,0x7b, +0x6c,0xa0,0x92,0xb7,0xbd,0x23,0xbb,0x67,0x38,0xca,0x61,0x28, +0xbe,0x47,0x42,0x5b,0xbc,0x3b,0x7d,0xab,0x74,0x03,0xf8,0x42, +0xd7,0x42,0x79,0x96,0x35,0x27,0x18,0x2b,0x95,0x04,0xe7,0xe6, +0xaf,0x2c,0xda,0x5a,0xf5,0xd3,0xe0,0x9d,0xab,0xd5,0x57,0xb9, +0x76,0xe5,0xc7,0x6c,0x4a,0x65,0x62,0x65,0x42,0x35,0x27,0xdc, +0x18,0x52,0x4e,0x30,0xb1,0x39,0xb1,0x39,0x39,0xaa,0x2d,0x82, +0xf1,0xe0,0xd4,0xfb,0x06,0xb0,0xdc,0x8a,0x0d,0xbe,0x48,0x7f, +0xd4,0x30,0x51,0x1f,0x3e,0x66,0x3c,0x51,0x63,0x3d,0xbe,0x89, +0xef,0xe1,0x2b,0xad,0x66,0xfc,0xcb,0xfb,0x0f,0xbf,0xed,0xfa, +0x7d,0x48,0x7a,0x5d,0x7e,0xc7,0x7e,0xa7,0xcb,0x0a,0x2f,0x5c, +0x18,0x9c,0x47,0x25,0xe2,0x3b,0xb9,0xb0,0xb0,0xf6,0xe7,0x76, +0x78,0x55,0x0e,0x0b,0xdd,0x60,0xa1,0x3f,0x87,0x9b,0x61,0x9c, +0xd8,0xc8,0x34,0x65,0x1b,0x2d,0x76,0x35,0x1c,0xe9,0x3c,0x39, +0xce,0x2d,0x9a,0x44,0x41,0x8f,0x6c,0x64,0xd2,0x6b,0x93,0xea, +0x13,0xeb,0xb9,0x8e,0xa9,0x85,0x6c,0x65,0x67,0x71,0x77,0x4e, +0x3b,0x07,0xc6,0x10,0x93,0xd1,0x00,0x47,0xd4,0xdd,0x7a,0x24, +0xf6,0x78,0x54,0x9c,0x94,0x76,0x5c,0xe2,0xb1,0xdd,0x74,0xd3, +0xfe,0x63,0xed,0x72,0xbe,0xa4,0xb8,0xb8,0xa2,0xa0,0x82,0xc3, +0x75,0x2c,0xba,0x07,0xe0,0x82,0x65,0x22,0xfe,0x5b,0x3c,0xfc, +0xb1,0xf6,0x79,0x16,0x30,0x2a,0x93,0x3c,0x73,0x41,0xff,0xec, +0xb1,0x08,0x63,0xce,0x2c,0x32,0x34,0xf0,0xc8,0x92,0xd5,0x4c, +0x8e,0x81,0xe4,0x7b,0xe6,0xe7,0xd2,0xb2,0x2f,0x72,0xd5,0xb3, +0x6e,0x25,0x7e,0x17,0xfb,0x98,0xdb,0xc5,0xa4,0x37,0xa6,0xb6, +0xd0,0x3f,0x49,0x69,0xd8,0x7d,0x32,0x7a,0x6a,0x60,0x5f,0xdd, +0xe1,0x81,0x0a,0xde,0xe6,0x13,0xc3,0x07,0xfa,0xe3,0x1c,0x86, +0xe0,0x5b,0x24,0xac,0xd1,0xb7,0xc5,0xaf,0x52,0xcf,0x9f,0xbf, +0xec,0x5e,0x60,0x91,0x65,0xcf,0xc1,0x39,0x2d,0x72,0xce,0x39, +0xda,0x21,0xd2,0x85,0x53,0x46,0xbe,0x60,0x84,0x4f,0x71,0x03, +0x39,0xe7,0x16,0x65,0x13,0x41,0x29,0xda,0x30,0x73,0xa9,0x3a, +0xb6,0x36,0xb6,0x9e,0x13,0x2c,0xd1,0x9e,0x14,0xd8,0x66,0xdb, +0x66,0x59,0x74,0xe6,0xf1,0x61,0x8d,0x41,0xcd,0x7e,0x0d,0x1c, +0x1e,0xf4,0x27,0xf9,0x06,0x79,0xba,0x19,0x9a,0x83,0x59,0x7c, +0xe8,0xed,0xa0,0x6e,0x9f,0x01,0x0e,0x9f,0x61,0x1c,0xe9,0xf8, +0xa4,0xe2,0xf3,0xcc,0x07,0x06,0x19,0x7c,0xd0,0x47,0x2e,0xfb, +0xac,0x74,0xc4,0x73,0x03,0xe5,0x24,0xf7,0x68,0xda,0xb1,0xe4, +0x83,0x23,0xa9,0x7c,0xcc,0xdd,0xd0,0x7b,0xc1,0x57,0xb8,0x45, +0xdf,0x0b,0x27,0x09,0x1c,0x6d,0x85,0xe5,0xdd,0x40,0x6e,0xc1, +0x2c,0x13,0x78,0x55,0x0a,0x92,0x13,0x35,0x83,0xfc,0x8a,0xd1, +0x0f,0xfb,0x56,0xb5,0xdf,0x6b,0xbf,0xdd,0x77,0xe7,0x8a,0x59, +0x2b,0xaf,0x71,0x4c,0x43,0x7f,0x87,0x1c,0xdf,0x19,0xc5,0xc5, +0x1d,0x38,0xaf,0xca,0xcd,0x80,0x87,0x39,0x6e,0xc0,0xd8,0x00, +0x67,0x82,0x12,0x03,0x24,0xd6,0xb8,0xd1,0x81,0xfb,0x27,0xa7, +0x8c,0x27,0xb8,0xb9,0x0a,0x55,0xfb,0xf1,0xd5,0x87,0x8f,0xef, +0xdd,0xfc,0xa6,0xfb,0x37,0x9d,0x52,0xde,0xec,0xc3,0x53,0x3b, +0xf6,0x1c,0xdb,0x75,0xe3,0xc4,0xe7,0xc6,0x3f,0xeb,0xba,0xf1, +0xfd,0x2b,0x6e,0x6f,0xfb,0xe2,0x10,0xce,0xfa,0x08,0x55,0x8d, +0x70,0xa3,0x5b,0xa1,0x26,0x0f,0x3b,0xca,0x61,0xc5,0x04,0x2c, +0xfc,0x0e,0x16,0x6d,0x82,0x15,0xda,0xb0,0xcd,0x85,0x5b,0xf4, +0xa9,0xf0,0x0e,0xb9,0xd1,0x71,0xeb,0xda,0xf8,0x27,0x6d,0x76, +0x2d,0x36,0x0d,0xd6,0x2d,0xdd,0xbc,0x4d,0x8b,0x65,0x93,0x45, +0x43,0xcb,0x48,0xfd,0x44,0xc9,0x84,0x61,0x29,0xef,0x23,0x75, +0xd2,0xb3,0x31,0x34,0x69,0x96,0x35,0x98,0x54,0x5b,0x99,0xf3, +0xdd,0x4e,0xfd,0xb6,0x7d,0x16,0xd2,0x63,0x27,0x74,0x8e,0x9b, +0x73,0x93,0xdf,0x02,0x12,0xe5,0xd2,0xa9,0xe2,0x2d,0x52,0xa1, +0x6b,0xf8,0x38,0xa3,0x25,0x54,0x10,0x2c,0xa6,0xe3,0x5e,0xcc, +0x60,0xb1,0xd2,0x40,0x7c,0x6e,0xa3,0x18,0x4d,0x59,0x65,0xdc, +0x87,0xa4,0xfd,0x5a,0xfd,0xcd,0xa2,0xeb,0xf4,0xfb,0xfc,0xb4, +0x9c,0x4e,0x59,0xe9,0x18,0xb7,0x1a,0xb5,0xc8,0x6a,0xad,0xcd, +0xf9,0x1e,0x87,0x21,0xcb,0x01,0xb9,0xf6,0x9e,0x43,0x47,0x8f, +0x9a,0x37,0xc9,0xf8,0x5b,0x1d,0xf7,0x3f,0xb9,0xfa,0x45,0x8b, +0x5d,0xa3,0x6d,0x8d,0x1d,0xb5,0xc5,0xa1,0xd1,0xba,0xc9,0xb2, +0x81,0x13,0xe2,0xda,0x09,0xfa,0xd1,0x6f,0xf6,0x63,0x17,0x4d, +0x4a,0x85,0x47,0x44,0xf9,0x36,0xc4,0x9c,0xc0,0x7e,0xc1,0x04, +0x37,0x2b,0x07,0xb5,0xc1,0x95,0x39,0x8b,0xbb,0x2d,0x4f,0xe2, +0xc6,0x43,0xb5,0xba,0x3c,0xec,0x79,0x30,0xfe,0x3c,0x09,0xa4, +0x1c,0x94,0x29,0x17,0xde,0xf8,0xe7,0xd2,0xe3,0xcc,0x22,0x50, +0x13,0xbe,0x20,0xe0,0xa5,0x83,0x55,0x10,0x80,0x6a,0x98,0xa1, +0xfb,0x7d,0x34,0x8b,0xaf,0x85,0xa2,0x44,0x63,0xfa,0xb8,0x79, +0xc9,0x23,0x78,0x3d,0x0f,0xde,0xa0,0xec,0xfd,0xd2,0x1f,0xca, +0x0d,0xe3,0xff,0x5c,0xad,0x8d,0x09,0xec,0xe4,0x3b,0x09,0x64, +0x18,0x2f,0x82,0x8e,0x26,0xea,0x60,0x80,0x14,0xdc,0xd9,0x00, +0x5c,0x71,0x1c,0x97,0xe3,0x4e,0xdc,0xd5,0x6a,0x42,0x79,0x13, +0x2c,0x19,0x81,0x59,0xb9,0xb0,0x8c,0x4b,0x52,0x76,0x5f,0x11, +0xba,0x93,0x98,0x7c,0x54,0xbf,0xb6,0x14,0x5e,0x47,0xf5,0xf6, +0x1e,0x1e,0xd7,0xc2,0xee,0x7d,0xb0,0xdc,0x1f,0x3e,0xa0,0x09, +0xb2,0x69,0xd2,0x8a,0x40,0x71,0x37,0x16,0x3f,0x94,0xee,0x9b, +0x5e,0x43,0x80,0x39,0x58,0x2a,0x9b,0x9c,0xdd,0x8b,0x6d,0x8c, +0xb2,0x05,0x54,0x08,0x78,0xeb,0x51,0xd3,0xf6,0xa3,0x3a,0x9a, +0xe8,0x5d,0xa7,0xa0,0xb5,0x20,0x06,0x17,0x18,0x2c,0x53,0xeb, +0xb7,0x93,0x8c,0xc0,0xfc,0x34,0x20,0xb0,0x5c,0x35,0xf1,0xae, +0x72,0xc3,0xd8,0x3f,0x57,0xeb,0x60,0x22,0x2b,0xfc,0xf4,0x0b, +0x31,0x74,0x63,0xb4,0x02,0xfd,0x0e,0x5a,0xa9,0x95,0x59,0x35, +0x17,0x56,0x14,0xe5,0x15,0xab,0xc4,0x27,0x5c,0xfa,0x38,0xf1, +0xdc,0x8f,0x7b,0xf8,0xca,0xa6,0x6d,0xb7,0x22,0x53,0x62,0x2e, +0x44,0x45,0xaa,0xc4,0xc4,0x9c,0xbd,0x24,0x49,0xc9,0x4e,0x2c, +0xa9,0x56,0xc5,0x7f,0x94,0xcd,0x7c,0xc8,0xfb,0x23,0x1b,0xb5, +0x12,0x8b,0x9e,0xe2,0xf2,0xc2,0xbc,0xd2,0xe9,0x0f,0x25,0x9c, +0xfb,0xf6,0x20,0xfd,0xd0,0xde,0x89,0x88,0x94,0x98,0x8b,0xd1, +0x51,0x2a,0xd1,0xd1,0xe7,0xe2,0x24,0xc9,0xd9,0xc9,0x25,0x35, +0xaa,0x7a,0x53,0x3e,0x64,0x50,0x38,0x60,0x30,0x2c,0x7c,0xa4, +0x6c,0x54,0x7e,0xc4,0x0a,0xc1,0xc2,0x5c,0x82,0x79,0xca,0x83, +0x90,0xc7,0x82,0x80,0x4e,0x04,0x76,0x60,0x13,0xee,0x60,0x21, +0x9c,0x72,0xa0,0xe3,0x78,0xf2,0x06,0x85,0xe2,0xe1,0xc9,0x0f, +0x49,0x91,0x59,0xa9,0x75,0x95,0xe3,0x51,0x8f,0x8f,0xfc,0x37, +0x84,0xe6,0x19,0xf3,0xbf,0xe4,0x7c,0x5d,0xf4,0xb0,0xa6,0xd7, +0x72,0xdc,0xfd,0x56,0x68,0x4b,0x74,0x41,0x46,0x42,0x43,0x1a, +0xcc,0xe2,0x4d,0x0a,0x22,0xf1,0x75,0xc3,0x74,0x93,0x02,0x8b, +0x2a,0x95,0xc1,0x8a,0xee,0xda,0xf6,0x56,0xfb,0x7a,0xde,0xdc, +0x52,0xe6,0xa8,0xeb,0xee,0x51,0xee,0x5d,0xeb,0xd7,0x02,0x0f, +0xaa,0xf8,0x33,0xbd,0xf8,0xbd,0x73,0x68,0x7d,0x78,0x53,0x64, +0xbb,0x8a,0x7e,0x74,0xaa,0x55,0xba,0x4d,0x96,0x83,0x0a,0x6e, +0x0c,0x4d,0x32,0x96,0x64,0xe2,0x87,0x64,0x68,0x3f,0xd4,0xe9, +0x61,0xdd,0x52,0xc8,0xd5,0xc5,0x4a,0x16,0xcb,0x23,0x71,0xb7, +0x01,0xbe,0xa9,0xd6,0x2b,0x6f,0x7b,0x99,0x07,0x0b,0x92,0x60, +0x93,0x0a,0x10,0x2a,0x48,0x84,0xe3,0xa8,0xc5,0xc4,0xb6,0xc4, +0xb6,0x75,0xaa,0x4e,0x6e,0x84,0x6e,0x62,0x95,0xa5,0x9d,0x6b, +0x92,0xe2,0x63,0xce,0xf7,0x46,0x5e,0x0f,0xaa,0x0b,0xe3,0xb2, +0x94,0x6f,0x10,0xd3,0x5c,0xcd,0x6c,0x69,0x8a,0xaf,0x19,0x3f, +0x16,0x7d,0x25,0xa4,0x2b,0x98,0xfb,0x11,0x1f,0x13,0xbd,0x6c, +0xe3,0x62,0x45,0xfd,0x70,0x63,0x4f,0x57,0xdb,0xa0,0x65,0x35, +0x6f,0x69,0x68,0x62,0x2e,0xb5,0x73,0xaa,0x71,0x6f,0xf1,0xe9, +0x86,0x67,0x35,0xfc,0x99,0x3e,0x04,0xc7,0xb0,0xda,0xc8,0x86, +0xa8,0x16,0x15,0x83,0xe8,0x14,0xdb,0x34,0xfb,0x0c,0x47,0x15, +0x5c,0x1b,0x9a,0x64,0x04,0xbb,0x73,0x4a,0xa5,0xd5,0x26,0x0d, +0x56,0x2a,0xfb,0xac,0xb6,0xba,0xad,0xf2,0x2f,0x30,0xe2,0x7f, +0xbf,0xfc,0x43,0xed,0x93,0xee,0x41,0xf9,0x15,0xa7,0x3b,0x81, +0xcd,0x91,0x97,0xb3,0xe3,0x1b,0x32,0xe0,0x0d,0xde,0xe4,0xb2, +0x64,0x91,0xb0,0x74,0x52,0x93,0x98,0x0b,0xb5,0xed,0x18,0xd7, +0x01,0xa5,0x1d,0x58,0xda,0xab,0x2f,0xc3,0x0c,0x05,0x64,0x28, +0x44,0x16,0xa6,0x20,0x83,0x46,0x50,0x2f,0xc5,0xfa,0x35,0x90, +0x27,0xc5,0x2a,0x16,0xcb,0xa2,0x70,0xb7,0x29,0xbe,0xa1,0xd6, +0x6d,0xd6,0xf4,0x32,0x07,0x16,0x26,0xc2,0x56,0x15,0x90,0x28, +0xdf,0x1c,0x12,0x4e,0xe2,0x47,0x4c,0x6c,0x73,0x6c,0x5b,0x87, +0x2a,0x44,0x88,0x9c,0x54,0x2e,0xf4,0x8b,0x8b,0x2d,0xe3,0x70, +0x23,0x01,0x09,0x2c,0x65,0xa3,0x1d,0x5d,0x23,0x76,0x44,0x65, +0x59,0xf2,0xbf,0xa4,0x77,0x56,0xa4,0x8d,0x70,0xa3,0x0e,0x8c, +0x5d,0x4e,0x44,0xbb,0xda,0x63,0xa6,0x36,0x3d,0xbd,0x54,0x3d, +0x9f,0xb5,0x4c,0x95,0xb8,0xed,0x64,0x45,0xd2,0xa9,0x5e,0x0b, +0x1b,0x50,0xc2,0x96,0xec,0x20,0xca,0x0b,0x78,0x4d,0xb8,0xc0, +0xe8,0x43,0x01,0x31,0x57,0xaa,0xb6,0xb3,0x82,0xea,0x56,0xa2, +0x50,0xaa,0x76,0x4c,0x37,0x4c,0x94,0xaa,0x3d,0xe2,0x6a,0x97, +0x55,0xe4,0xb6,0xdf,0xd7,0x4e,0x23,0xae,0x25,0x9d,0xbc,0x61, +0xf9,0xfa,0xda,0x63,0x79,0x9c,0x72,0x0e,0xd5,0x7c,0xcf,0x0a, +0x1e,0xd7,0x76,0xd5,0x39,0xd7,0xf3,0xb6,0x6e,0x5b,0x9c,0xb6, +0x07,0x53,0x76,0x37,0x3f,0x85,0x9c,0xfa,0xc5,0x0e,0x96,0x05, +0x83,0x13,0x07,0x47,0x86,0xf1,0x04,0x73,0xee,0xc6,0x85,0x4f, +0x9e,0xa8,0x4e,0xa4,0x8d,0x65,0xf4,0xe5,0x78,0xf4,0xf2,0x38, +0xcb,0x19,0xd5,0xfc,0xf0,0x48,0x0c,0x37,0x35,0x9b,0xf5,0x3e, +0x4b,0x7f,0xce,0xa5,0xeb,0xf0,0x3f,0xe7,0xc3,0xac,0xd2,0x47, +0x65,0x51,0x43,0xbc,0x3c,0xd4,0x28,0xd4,0x20,0x9c,0x83,0x3e, +0xd8,0xcb,0xe6,0x62,0x68,0x1b,0x6e,0xb9,0xbf,0xac,0x42,0x3e, +0x94,0x92,0x78,0x35,0x17,0x6c,0x79,0xa3,0x42,0x89,0xd2,0x03, +0xd4,0x88,0x75,0x88,0x55,0xa8,0x75,0x18,0x07,0xe7,0x61,0xc1, +0x18,0x2e,0x00,0x67,0x2d,0x74,0xde,0xcc,0x26,0xb4,0xc7,0x77, +0xc6,0x75,0xea,0x26,0xf2,0xa7,0x71,0x65,0x20,0x2e,0xb2,0x5d, +0x3d,0xe0,0xca,0x5f,0xee,0xcd,0xb9,0x91,0x7e,0x9f,0x8e,0x75, +0x36,0x73,0x32,0xf0,0x64,0xc8,0xa9,0xb0,0xcc,0x13,0xfc,0x58, +0x16,0xfd,0xc9,0xe3,0x70,0x64,0x02,0x1e,0xb2,0xad,0x59,0x6d, +0xd9,0xad,0x39,0xdc,0x4b,0x61,0x17,0xe9,0xbb,0xd4,0x9f,0xd0, +0x9f,0x14,0xbb,0x2f,0xee,0x70,0xfc,0x09,0x0e,0x77,0x31,0x94, +0x79,0x5f,0x23,0xe3,0xf8,0x54,0x9b,0x06,0xfd,0x42,0x98,0x24, +0xce,0xa1,0xce,0xe1,0xce,0xd4,0xb4,0x0b,0x2f,0x46,0x57,0x80, +0xab,0x2e,0xba,0x6a,0xb0,0xf1,0xed,0x97,0xba,0xe2,0x3a,0xa5, +0xd3,0x67,0xe1,0x86,0xe0,0x22,0xa7,0x35,0x7d,0x6e,0x7c,0x7e, +0x4f,0xe6,0xcd,0xd4,0xfb,0xdc,0xe7,0x98,0xc7,0x48,0x03,0xf5, +0x82,0xf5,0xc2,0xb3,0x4e,0xf2,0xfd,0x99,0xfd,0xd9,0x7d,0xb9, +0xf4,0x4f,0x8e,0xc2,0x23,0xb6,0x36,0xa3,0x26,0xab,0x36,0x9b, +0x13,0x42,0xe1,0x19,0xe5,0x11,0x4c,0x29,0x70,0x12,0x28,0x1f, +0x50,0x16,0x19,0x82,0x1e,0xad,0xd9,0x9c,0x04,0xd5,0x0d,0xe1, +0x0d,0xc6,0x1e,0xb7,0x48,0xf0,0x6f,0x06,0xc2,0xd0,0xe0,0x0e, +0x46,0x07,0xb6,0x10,0xdc,0x82,0x81,0x6c,0x3d,0xd0,0x8b,0x92, +0xa9,0x65,0x64,0x18,0x9e,0x4a,0xc7,0xe1,0xb9,0x52,0x8e,0xcf, +0x59,0x41,0x1d,0x9a,0x09,0x1e,0xc2,0xa7,0x70,0x48,0xdc,0xac, +0x42,0xb8,0x4a,0xda,0x5b,0x1a,0xbb,0x2b,0xfb,0xb9,0x5f,0x18, +0xd7,0xb5,0x56,0x07,0x71,0xd6,0xb6,0x16,0xca,0x6e,0x5f,0x79, +0x36,0xf8,0x79,0x1d,0x2c,0xe2,0x9e,0x31,0x07,0xce,0x9d,0x88, +0x32,0x50,0x33,0x8d,0x0a,0xf7,0xd7,0x5c,0xb2,0x8f,0xc9,0x32, +0x94,0x5c,0x65,0x9e,0xb4,0x16,0x7d,0x9a,0xa5,0x9e,0x3e,0x91, +0xf0,0x09,0xa8,0xa8,0x62,0x2d,0x93,0x5a,0x90,0x7c,0x39,0xa9, +0xc0,0x30,0x8b,0xf7,0xd8,0x29,0xdb,0xba,0xef,0x38,0xa7,0x7c, +0x43,0xc4,0x02,0xf6,0x93,0x96,0xee,0x8c,0x5b,0x94,0x20,0xeb, +0x8f,0x82,0x3a,0x93,0x9a,0x18,0x9b,0x7c,0x46,0x0d,0xde,0xdc, +0x51,0xd3,0x82,0x6f,0x7d,0x11,0x99,0x14,0x13,0x1f,0x15,0xa1, +0x12,0x11,0x2a,0x39,0x33,0x01,0x5b,0xfb,0x70,0xeb,0x23,0x66, +0x20,0xa9,0x2f,0xa5,0x23,0x23,0xa0,0x8b,0x5f,0xea,0x81,0x4b, +0x23,0xf0,0xcd,0xf3,0xc9,0x32,0xbe,0x2f,0x76,0xfc,0xd2,0x44, +0x22,0x77,0x10,0xcd,0x8c,0xe1,0x14,0xeb,0xa3,0x7b,0x42,0xeb, +0xfd,0x53,0x9c,0x10,0x80,0xfd,0x04,0x66,0x09,0xf3,0x06,0x95, +0xf3,0x9e,0x9e,0xdc,0x8a,0xbe,0x6c,0x76,0x71,0x7a,0x51,0xca, +0x65,0xfd,0x6c,0xde,0x43,0xd3,0xe0,0xc0,0x11,0x9d,0x36,0x2b, +0xbe,0xba,0xbc,0xb2,0xba,0xa4,0x96,0x83,0x2c,0x9c,0xa5,0xdc, +0x26,0x15,0xb6,0xe1,0xa6,0x6b,0xb0,0x49,0xd8,0x37,0xcc,0x2c, +0x7a,0x44,0x2b,0x1c,0x2c,0xbb,0x3f,0x30,0x90,0x75,0x83,0xd2, +0x6c,0xa3,0x31,0xca,0xe9,0x53,0x12,0xe3,0x52,0xa8,0x69,0x6b, +0x57,0x57,0x77,0xe0,0xba,0xe7,0x51,0x89,0xd1,0xb1,0x51,0xd3, +0xf7,0xba,0xce,0x5c,0x05,0x8b,0x3e,0xb4,0xf8,0x8c,0xb9,0x9e, +0x74,0x25,0xb5,0x3f,0x23,0xa0,0x93,0xc7,0x05,0x1e,0x78,0x20, +0x02,0xd7,0x9c,0x4f,0x36,0xe5,0xaf,0xc4,0xde,0xbf,0xf4,0x20, +0x91,0x3b,0x20,0xce,0x5b,0x79,0xb2,0xee,0xda,0xfb,0xb4,0xf1, +0x75,0x4d,0x6e,0x32,0xeb,0x38,0xe9,0xcd,0xcd,0xee,0x53,0x17, +0xde,0xd1,0x56,0xae,0xc6,0xcd,0x6c,0xa6,0xa1,0xe4,0x94,0x70, +0x9c,0xe0,0xf0,0x38,0x50,0xbe,0xba,0x61,0x6a,0xb3,0x68,0xfa, +0xdc,0x41,0xe5,0x5c,0xd1,0xf4,0x40,0x36,0xa7,0x34,0xb3,0x24, +0xa5,0x48,0x34,0xfd,0xa4,0x81,0xc6,0x11,0xad,0x56,0x5b,0xbe, +0xaa,0xac,0xa2,0xba,0xb8,0x9a,0x83,0x7c,0x6a,0xfa,0x76,0xa9, +0xb0,0x7d,0xc6,0xf4,0xbd,0xd4,0x74,0xa1,0x42,0x28,0x24,0xc2, +0x92,0x21,0xe5,0x92,0xdf,0xe0,0xf9,0x10,0x3e,0x7f,0xa6,0xb5, +0x11,0x2d,0x99,0xec,0xc2,0xcc,0xc2,0x94,0x7c,0xc3,0x42,0xde, +0x55,0xf7,0xe4,0x5e,0x1d,0x79,0xa7,0x0d,0x5f,0x5a,0x50,0x56, +0x56,0x52,0xc1,0xc1,0xc7,0xef,0x29,0xd5,0xf5,0x05,0x75,0x7c, +0x65,0x82,0xc1,0xca,0xcb,0x94,0x27,0x6f,0x60,0x53,0x4a,0x93, +0x4a,0x12,0x8a,0xa5,0x69,0x7c,0xd8,0x49,0xb7,0x7d,0xd6,0xda, +0x83,0x1e,0x7c,0x6e,0x49,0x56,0x45,0x46,0x25,0x07,0x73,0x50, +0x85,0x39,0x1a,0x75,0x20,0xea,0x70,0x4c,0xa6,0x2e,0x7f,0x35, +0xf9,0x76,0xda,0xf5,0x34,0xca,0xee,0xc6,0x60,0x0f,0x3b,0x9c, +0xda,0x93,0x56,0x93,0x72,0xbe,0x8f,0x77,0x8c,0x31,0x8b,0x36, +0x88,0xe6,0xe0,0x75,0x78,0x6f,0x10,0xdf,0xa3,0x94,0x5b,0xd0, +0xc4,0x26,0xf1,0x90,0x9b,0x8f,0x06,0xf1,0x23,0x60,0x74,0x90, +0x59,0xcd,0xa6,0xd2,0x3f,0x90,0x58,0x28,0x4d,0xe7,0x43,0x4f, +0x39,0xed,0xb6,0xd1,0x1b,0xf4,0xe6,0x73,0x8a,0xb3,0xca,0x33, +0xe9,0x1f,0x98,0x8f,0xf3,0xd0,0xc6,0x00,0x6c,0xf0,0xd0,0x18, +0x1c,0x02,0x93,0x41,0x5a,0x86,0xed,0x26,0x1f,0x11,0xf4,0x38, +0x34,0x9d,0x17,0xb1,0x5d,0xfa,0x62,0x5e,0xac,0x0e,0xc5,0x45, +0xce,0x62,0x5e,0xe4,0xf5,0x66,0xde,0x48,0x7d,0xc0,0x7d,0x8a, +0x97,0x19,0xc3,0x40,0xfd,0x60,0xfd,0xb0,0xac,0x53,0x7c,0x6f, +0x56,0x6f,0x76,0x37,0xcd,0x8b,0xb1,0x51,0xf8,0x9c,0x2d,0x4b, +0x2f,0x4b,0x2f,0xcd,0x3c,0x3b,0xc1,0x7b,0x47,0x78,0x45,0x78, +0x46,0x72,0x70,0xf1,0x87,0x91,0xb5,0xe0,0xc1,0x0a,0x1b,0x16, +0x6b,0xed,0xc0,0x4c,0x03,0xe1,0x87,0x41,0x2c,0x63,0x30,0x0e, +0x6f,0x10,0x41,0x17,0x4c,0x95,0xba,0xcc,0x38,0xad,0x10,0x3f, +0xc0,0xfd,0xb5,0xac,0x72,0xae,0xf2,0x0e,0x11,0xd6,0x08,0x7b, +0xf1,0x29,0x2e,0x63,0xb3,0x75,0xc4,0x6d,0xe7,0x3a,0x72,0xf3, +0x3a,0xd4,0x85,0x37,0x69,0x5d,0xb3,0x62,0xe1,0x1d,0x78,0x4e, +0xb0,0x60,0x60,0x02,0xec,0xc1,0x9a,0x45,0x7b,0x4a,0x0b,0xff, +0x01,0x1b,0xde,0x67,0xc5,0x85,0xd6,0x85,0xe4,0x8b,0xd6,0xb6, +0x9a,0xb2,0xaa,0xd4,0xd4,0xc4,0xf3,0x69,0x67,0x68,0x91,0x9e, +0x3d,0xb3,0xd0,0xba,0x65,0x66,0xa1,0x75,0x4a,0xfc,0xc5,0xb4, +0x18,0x38,0x82,0xcc,0xf4,0x42,0xeb,0x97,0xe1,0xc9,0xff,0x73, +0xa1,0xf5,0x80,0x6a,0xab,0xae,0x39,0xbb,0xd2,0xdc,0x18,0x57, +0x9f,0x54,0xc3,0x0d,0xcf,0xff,0x5c,0x68,0x1d,0x29,0x2e,0xb4, +0xbe,0x5c,0x2f,0x2e,0xb4,0x16,0xdf,0xff,0x50,0x61,0x82,0xef, +0x9e,0x10,0x17,0x5a,0x9f,0x23,0x11,0xd6,0x01,0xe6,0x9e,0x0e, +0xfd,0xe2,0x42,0xeb,0x82,0x9e,0xf4,0x66,0x4e,0xe9,0x9f,0x21, +0x2e,0xb4,0xb6,0xf6,0x9a,0x59,0x68,0x5d,0xd0,0x9e,0xde,0xc2, +0x7d,0x96,0x49,0x22,0xac,0x02,0xcd,0xbd,0xec,0xfa,0xfc,0xf9, +0xd2,0xc6,0x99,0x85,0xd6,0xbe,0x29,0x24,0xd2,0xd2,0x4f,0xe1, +0x61,0xdf,0xeb,0x45,0x0d,0x2c,0x19,0x16,0x17,0x5a,0xef,0xc1, +0x17,0x64,0xcd,0x04,0xac,0x9d,0xfa,0x19,0xd7,0x8e,0x53,0x24, +0x58,0x2a,0xee,0xdd,0x39,0x57,0x98,0x35,0xa4,0x9c,0xf5,0xdd, +0xc9,0x0d,0xe8,0x42,0x13,0x29,0x83,0x26,0x92,0x61,0x3e,0x4d, +0x24,0xc3,0x83,0x87,0x74,0x5a,0x69,0x22,0x95,0x56,0x54,0x15, +0x57,0x71,0x90,0x84,0x73,0x95,0x9b,0xa4,0xc2,0x26,0xdc,0x76, +0x0d,0xb6,0x09,0xbb,0x69,0x34,0xc2,0x2f,0x14,0xe4,0x5c,0x42, +0x9c,0xc3,0x5c,0x28,0xc8,0xc5,0x7e,0x35,0xb2,0x0d,0x3c,0xf4, +0xd0,0xe3,0x38,0x1b,0xdf,0x21,0x0e,0xa6,0x41,0xbc,0x38,0x98, +0xe1,0xf8,0x9a,0xeb,0xda,0x5e,0x37,0x3e,0xb7,0x37,0xe3,0x46, +0xf2,0x03,0xee,0x1e,0x16,0x32,0x46,0x81,0x46,0x21,0xb2,0xb0, +0x2c,0x4d,0xbe,0x33,0xb3,0x33,0xab,0x8b,0x0e,0xe6,0xe8,0x08, +0x3c,0x66,0x6b,0x32,0x29,0xc8,0xe5,0x70,0x85,0xc2,0x07,0x44, +0x21,0xf4,0x75,0x60,0x5a,0x3b,0xd4,0x77,0x62,0xbd,0x58,0xf9, +0x2e,0xcb,0xe1,0xb2,0x39,0x8b,0x71,0xdb,0xc5,0x0a,0x76,0x5b, +0xac,0x60,0x79,0x74,0x3c,0xe0,0x55,0xf8,0x90,0x56,0x30,0x97, +0x88,0xcd,0x51,0x99,0x56,0xfc,0x3f,0x52,0x7b,0x2a,0x69,0x05, +0x9b,0x70,0x66,0x6c,0x72,0x23,0xdb,0xd5,0x9e,0x32,0x75,0xe9, +0xe9,0x25,0xb4,0x82,0x99,0xa7,0x4a,0xdc,0xb7,0xb2,0x11,0xe7, +0xe2,0xd2,0xd4,0xab,0x60,0x3b,0xbe,0xca,0x16,0x6f,0x27,0xca, +0x0c,0x5a,0xc1,0x32,0xfe,0xac,0x60,0xab,0x68,0x05,0x5b,0xb5, +0xf5,0xbf,0x1b,0xa6,0xca,0x55,0xdd,0xec,0x5a,0x8c,0x22,0xdf, +0x17,0x7c,0x59,0xd7,0x53,0xeb,0xdc,0xc0,0x5b,0xbb,0x6d,0x72, +0xda,0x1c,0xcc,0x09,0xaf,0x35,0x90,0xbb,0xfe,0xcf,0x9c,0xc6, +0xc4,0xa2,0xa6,0x5f,0xbe,0xba,0xee,0x68,0x0e,0x65,0x72,0xdb, +0x84,0x16,0x32,0x02,0x31,0x1d,0x18,0x33,0x08,0x59,0x9d,0xb8, +0x89,0xcd,0xb9,0x2c,0xba,0xd0,0x30,0x8f,0x0f,0xf7,0x0c,0x74, +0xf6,0x73,0xe3,0xf0,0x08,0xd3,0x9e,0x1f,0x56,0x18,0x58,0x12, +0x94,0xaf,0x62,0xec,0x9b,0xe7,0x97,0xed,0x9b,0xe9,0xaf,0x82, +0x7b,0xe4,0x90,0x68,0x80,0xe1,0x0a,0x08,0xd7,0xc3,0x7c,0xb9, +0xf0,0x43,0x27,0x33,0x35,0x0f,0x0d,0x49,0x40,0xa4,0x7f,0x94, +0x5f,0x14,0x07,0xa7,0x3f,0x1f,0xd9,0x09,0x2e,0x7a,0xe8,0xa2, +0x49,0x9d,0x19,0xd7,0x19,0xdb,0x6d,0x28,0x3a,0x73,0x4d,0x04, +0x2e,0xa2,0xce,0x74,0xe7,0x73,0x7b,0xd2,0x6f,0xa4,0x3c,0xe0, +0x6e,0x62,0x0e,0x63,0x12,0x20,0x0b,0x96,0x85,0x65,0x6b,0xf2, +0x1d,0x99,0x1d,0xd9,0x6d,0x62,0xc5,0x18,0xa1,0x99,0x51,0x98, +0x56,0x98,0x5e,0x98,0xce,0x09,0x0f,0xf0,0x1a,0xf1,0x28,0xf0, +0xaa,0x0d,0x68,0x6b,0x1a,0xac,0xbe,0x52,0x76,0xd7,0xbc,0x90, +0xf7,0x93,0x7a,0xcb,0xdc,0x14,0x21,0xfd,0x51,0xe3,0xe7,0xaf, +0x73,0x70,0xb4,0x13,0x8f,0xfd,0xdd,0x68,0x1d,0xee,0xef,0x66, +0xda,0xe3,0x5b,0x12,0x6b,0x92,0x02,0x9b,0xf9,0x5d,0x21,0x6b, +0x62,0x90,0x39,0x9f,0x62,0xc9,0xd7,0xc5,0x75,0xc4,0x75,0xc5, +0x73,0xe6,0xb8,0x4b,0x0e,0xcb,0x58,0x4f,0x6f,0x85,0xff,0x3e, +0xff,0x1c,0x73,0xfe,0xfb,0xf2,0xe6,0xbc,0xdc,0x7e,0x2e,0xe1, +0x83,0xde,0x71,0x26,0x3e,0x2e,0x36,0xfe,0x82,0x1a,0x2c,0xd4, +0x29,0x6c,0xc6,0x39,0x23,0x11,0x89,0xa7,0x2f,0x9e,0x89,0x56, +0x89,0x89,0x94,0x9c,0x2d,0x86,0x03,0x4c,0xfc,0xae,0xec,0x8f, +0x4a,0x8e,0xbb,0xd8,0xda,0x3b,0x59,0xb8,0x56,0x58,0xf0,0x8d, +0xa5,0x75,0x55,0x95,0x75,0x97,0xad,0x4a,0x9c,0x2a,0xfc,0xea, +0x3c,0x6b,0x52,0x13,0x5a,0x72,0xe1,0x03,0xde,0xb2,0x40,0x92, +0x02,0xf5,0xc4,0x23,0xdf,0x31,0xc7,0x31,0xd3,0xcb,0x81,0xaf, +0x09,0xab,0x0d,0x2a,0x0f,0xe4,0xd0,0x03,0x4f,0x93,0x76,0x7c, +0x6a,0x7e,0x87,0x0d,0xf7,0x0c,0x71,0x0f,0x72,0xe7,0xc0,0x83, +0xb9,0xe8,0x7b,0xce,0xff,0x6c,0x30,0x17,0x78,0x26,0xf2,0x6c, +0xc0,0x92,0x0f,0x98,0x0c,0x2b,0xc9,0x0f,0x4c,0x5b,0x49,0x7e, +0x4d,0x8a,0x7a,0x72,0x65,0x7c,0x43,0x7c,0x27,0x87,0x46,0x4c, +0x52,0x66,0x52,0x66,0x62,0x26,0x27,0xee,0x1e,0x32,0x8f,0x74, +0xf7,0xb6,0x0e,0x35,0x5d,0xb5,0xa8,0xe5,0x1d,0xf5,0x6d,0x4d, +0xac,0x14,0xee,0xdd,0xce,0x1d,0xb6,0xed,0x0a,0x27,0xbe,0xd9, +0xa4,0xc6,0xb4,0xcc,0x44,0x61,0x69,0x6a,0x67,0xe4,0x5c,0xae, +0xcf,0xf7,0xd5,0x76,0x37,0x74,0xb4,0x14,0x28,0xb2,0xcc,0xd2, +0x4d,0x4e,0x6e,0x3a,0xa2,0xb5,0x4e,0xb7,0xcc,0x80,0xff,0x76, +0xf0,0xc6,0xc4,0xf0,0x03,0x2e,0x51,0x71,0xc9,0x4c,0xa6,0x8a, +0xfb,0x62,0x9d,0xcd,0xb6,0x2d,0xd9,0xcf,0xe4,0x9c,0x94,0xdc, +0x64,0x60,0xce,0xf0,0x15,0xf0,0x84,0x75,0x1e,0xa0,0xa2,0x0b, +0x0b,0xd4,0x85,0xbd,0x60,0x49,0x34,0x31,0x05,0xed,0xb5,0xc1, +0x8e,0x89,0xc2,0x40,0x0d,0xdc,0x83,0xc6,0xf8,0x7e,0x03,0x55, +0x6b,0x3e,0xb0,0xfd,0x3e,0x58,0x24,0x43,0x30,0x07,0x05,0xe3, +0x98,0xcf,0x40,0xe4,0x57,0xc4,0xb5,0x5b,0xef,0xae,0x65,0xbd, +0xc2,0x9e,0x6f,0xb5,0x1a,0x3c,0x59,0x21,0xe3,0x8e,0x4c,0xbd, +0x4a,0xec,0xa2,0x93,0x5b,0xd5,0x85,0x85,0xda,0x4a,0x15,0xf6, +0x40,0x91,0xd7,0x0d,0xb5,0x9f,0x99,0xae,0xcc,0xfc,0x2e,0x75, +0x30,0x66,0x0d,0xf2,0x24,0xe8,0xc5,0x8a,0xbb,0x0a,0x3c,0x24, +0xff,0xbf,0x76,0x63,0xc6,0x59,0x9c,0x70,0x10,0xd7,0x11,0xd0, +0xd6,0x42,0x6d,0xe5,0x7c,0x3d,0xf8,0x9d,0x75,0x45,0x9e,0xfe, +0xec,0x40,0x19,0x6e,0x6e,0x36,0xe5,0x41,0x0f,0xb6,0xc0,0x6b, +0xf0,0xce,0x65,0x58,0x49,0x75,0x4e,0x11,0xda,0x31,0x79,0xda, +0x12,0xd0,0x62,0xba,0xf2,0xf2,0xbb,0xd5,0x85,0xfb,0x54,0x03, +0x51,0x53,0x7f,0xff,0xbf,0x65,0xea,0x90,0x92,0x23,0xfb,0x98, +0x14,0x78,0x33,0x19,0xfe,0x96,0x08,0xf3,0x38,0x65,0x80,0x1e, +0xac,0x66,0x4e,0x7f,0x18,0xb5,0x2c,0x72,0x19,0x87,0xeb,0x75, +0x61,0x25,0x13,0x8e,0x0b,0x43,0x71,0x61,0x18,0xce,0xe3,0x70, +0xa1,0xae,0xf0,0x70,0x74,0x19,0x93,0x0a,0x5c,0x2a,0x2c,0x4a, +0xa1,0xdc,0xe6,0x31,0x83,0x0b,0x04,0x96,0x9c,0xdb,0x76,0x1a, +0x67,0xc5,0xe0,0x5c,0xf1,0x61,0xb1,0xb4,0x97,0xa9,0x2f,0x53, +0x7e,0xe1,0x34,0xa6,0x3c,0x48,0x26,0xcc,0xcb,0x80,0x85,0xf4, +0x1f,0x47,0xf5,0x64,0x34,0x2e,0x8c,0xc2,0x37,0xa2,0x51,0x42, +0x23,0xeb,0x19,0xed,0x9e,0x93,0xbe,0xbd,0x89,0x8d,0xb9,0x67, +0x97,0x73,0x87,0xbd,0xd8,0xbd,0x26,0x93,0x6a,0x93,0x52,0x13, +0x0b,0x4b,0xb9,0x9d,0xcc,0xb9,0xdc,0x80,0xef,0xa9,0xe9,0x68, +0x68,0x6b,0xc9,0x97,0x67,0xc9,0x53,0x4d,0xb4,0x37,0x1f,0xd5, +0xda,0x2c,0x76,0xef,0xe9,0xe0,0xc4,0xf8,0xe0,0x7d,0x2e,0xc1, +0xfc,0x92,0x99,0x89,0x2a,0x6a,0xc4,0xba,0x98,0xed,0x5c,0x72, +0x98,0xc9,0x39,0x25,0xb9,0xc6,0xfc,0x31,0xdd,0xbb,0xf5,0x9e, +0xc0,0xeb,0xd3,0xde,0x75,0xf4,0xb6,0x0e,0x37,0x5c,0xe3,0xe0, +0x6a,0x25,0xd1,0x42,0x2d,0xf4,0x56,0x86,0x8d,0xde,0xa2,0xc2, +0x6a,0x68,0x02,0x86,0x40,0xe3,0xe8,0x98,0x10,0x86,0x21,0x0c, +0x55,0xbf,0xff,0x22,0x30,0x0a,0x3b,0x71,0x94,0x1d,0x5b,0x4c, +0x1b,0xfb,0x69,0x63,0x11,0xfc,0xe3,0xff,0x92,0xe7,0xa1,0xa3, +0x86,0x9c,0xc4,0xaf,0x19,0xb4,0x3f,0x89,0x6f,0xd2,0x58,0x3f, +0xa5,0xd6,0x6a,0x00,0xdb,0x61,0xe3,0x03,0x78,0x2b,0x19,0x56, +0xaa,0x24,0x31,0x49,0xb8,0xe1,0x36,0xce,0x81,0x83,0x54,0x1b, +0x0f,0xf2,0x68,0x05,0x27,0x75,0xe0,0x4d,0x70,0x50,0x05,0x23, +0xd8,0x45,0x7c,0x70,0x96,0xe3,0x1a,0xcb,0xfd,0x7d,0xae,0x7c, +0xdb,0x93,0xfa,0x5f,0x4b,0x60,0x16,0xa7,0x8c,0xc5,0x41,0xd2, +0xfa,0xa4,0x1a,0x98,0xec,0x3f,0xf4,0x33,0xf8,0x90,0x0f,0x5d, +0x96,0x5a,0xec,0xa1,0x9e,0x6e,0xa4,0xdd,0xf1,0x32,0xf2,0x30, +0x73,0xb5,0xf0,0xed,0xf0,0x6c,0x73,0x69,0x55,0xb8,0xf0,0x75, +0xb2,0x0a,0x93,0x42,0x99,0x83,0xa5,0xad,0x9d,0x85,0x53,0xb9, +0x21,0xdf,0x52,0xd3,0x50,0x57,0xd3,0x94,0xa3,0xc8,0x30,0x4b, +0x36,0x31,0xda,0xa2,0xaf,0xb3,0x47,0xa7,0xcc,0x88,0xbf,0xdb, +0xd7,0x3f,0xd6,0x7e,0x9b,0x8b,0xb7,0x8a,0x33,0x97,0xab,0xe2, +0xa1,0x58,0x4f,0xf3,0x83,0x4b,0x74,0x99,0x1c,0x4d,0xc9,0x20, +0xf3,0x7d,0xdf,0x28,0xf8,0xc2,0x26,0x5f,0xe0,0x4d,0x69,0x6f, +0x1a,0x7a,0x6b,0x46,0xaa,0xae,0x71,0x75,0x53,0xef,0x93,0x89, +0xcf,0xe0,0xe4,0x34,0x47,0x03,0xe9,0x9e,0xf1,0xc9,0xa5,0xca, +0x7e,0x06,0xce,0x63,0x22,0xc1,0x93,0x20,0x83,0x93,0x94,0x39, +0xc8,0x08,0x6d,0x48,0x51,0xc6,0x62,0xbc,0x3e,0x41,0x1b,0x7a, +0xdd,0x86,0x85,0x73,0x8b,0xe9,0x25,0x1b,0x94,0x32,0xe2,0x6d, +0xfd,0x87,0xc4,0xc3,0xc0,0xcd,0xc4,0xc9,0xdc,0xa7,0xd3,0xa3, +0xc3,0xb9,0x9d,0x9a,0x5a,0x6f,0x5c,0x21,0x2b,0x32,0xb2,0xb7, +0xb2,0xb1,0xb7,0x70,0x2e,0x37,0xe2,0x5b,0xaa,0x1b,0x6a,0xeb, +0x1a,0xb3,0x15,0xe9,0xf2,0x64,0x53,0xe3,0xad,0xd2,0x19,0x53, +0xef,0xf5,0xf5,0x8d,0xce,0x98,0x6a,0xf1,0xbf,0x9b,0xba,0xc1, +0x0f,0x16,0x9b,0xc1,0x7c,0xf5,0xe6,0xbe,0xfa,0xd1,0x9a,0x9b, +0x9c,0xb0,0x1e,0xbf,0x23,0xb0,0x1f,0x52,0x70,0x3f,0xbc,0xaa, +0x87,0xaf,0xe2,0xac,0x99,0x97,0x9d,0x52,0x1a,0x0a,0x1f,0xe0, +0x3a,0xe6,0xec,0xd6,0xe8,0x9d,0xa1,0xab,0xc4,0xe9,0xb2,0x30, +0x7c,0x53,0xae,0x81,0x0b,0xf6,0xd6,0x98,0xf1,0xf0,0xf6,0x17, +0xc3,0xcf,0x72,0x60,0x3d,0x07,0x2c,0x3e,0x19,0x81,0x27,0xa0, +0xe2,0xcf,0xd8,0x5d,0x90,0x9d,0xf5,0x50,0x73,0x3a,0x13,0x11, +0x65,0x23,0x6e,0x7c,0xab,0x2b,0xa9,0x65,0x6e,0xd5,0x96,0x0d, +0xa7,0xaa,0x27,0xb5,0xc6,0xde,0xee,0x55,0xed,0x46,0x03,0x56, +0x0f,0x04,0x42,0xbf,0x74,0x16,0x7c,0xc0,0x42,0x2d,0x7e,0x40, +0x90,0x85,0x0f,0x80,0x65,0xa8,0x8a,0x10,0x48,0xd2,0x60,0x42, +0x7f,0x7c,0x37,0xf7,0xcb,0x5a,0xc6,0xef,0xe3,0x80,0x8b,0x01, +0x6a,0x23,0x8b,0x63,0xf3,0x3e,0xce,0x2f,0x50,0xfd,0x11,0x66, +0xd1,0x32,0xb8,0x68,0xd2,0x55,0x08,0x23,0xf7,0x26,0x7a,0x6f, +0xd5,0x3f,0xe2,0x3a,0x70,0x9c,0xcd,0x2e,0xcd,0x28,0x4d,0x2b, +0xd7,0x49,0xe1,0xad,0x57,0x1d,0x5c,0x8f,0xcc,0xde,0x5a,0x33, +0xbe,0xad,0xb2,0xb9,0xa6,0xae,0xa1,0xd1,0xac,0xc3,0x7c,0xc0, +0xf2,0x90,0xe9,0x06,0x0b,0xe4,0xac,0xc5,0xf9,0xa7,0x37,0x3a, +0x7f,0xee,0xfe,0x74,0xf0,0x9e,0xec,0xa9,0xfc,0x57,0x8b,0xf2, +0x21,0x7e,0x5d,0xe3,0x9e,0xe6,0xa3,0x6d,0x9c,0x72,0x09,0xfc, +0x42,0x9c,0x69,0xd2,0x59,0x2b,0x3c,0xbb,0xff,0x9d,0x74,0x35, +0x26,0x25,0xff,0x5f,0x27,0xdd,0x4a,0x54,0x25,0xd9,0x05,0x12, +0x28,0x62,0x5c,0x75,0x2d,0x0c,0x34,0x65,0xba,0x6d,0xa6,0x9d, +0xd6,0xfd,0x9c,0xf7,0x54,0x28,0xb9,0x0a,0x57,0x4e,0x4d,0x08, +0x6f,0x2b,0x8f,0x2a,0xdf,0x66,0x05,0x0e,0xbe,0x20,0x94,0x18, +0x5e,0x01,0x7b,0x9a,0x76,0x49,0x93,0x0c,0xe9,0xee,0x6b,0x1b, +0x6d,0xbe,0x6e,0x51,0xcd,0x3b,0x4a,0x6d,0x8d,0x2d,0x15,0x9e, +0x3d,0xce,0x9d,0x76,0x1d,0x62,0xfe,0xc9,0x28,0x34,0x18,0x5b, +0x58,0x99,0xd9,0x9b,0xb8,0x88,0x56,0x56,0x77,0xd4,0xb7,0x36, +0xe7,0x29,0xa8,0x95,0xa6,0xda,0x5b,0x8e,0xcf,0x58,0xf9,0xd5, +0xe0,0xf8,0xf8,0xc0,0x27,0xa2,0x95,0x72,0xd1,0x4a,0x57,0xb3, +0x5d,0x6a,0x47,0x44,0x23,0xaf,0x32,0x2f,0x69,0xd6,0x7b,0xc1, +0x5a,0x2f,0xe0,0x0d,0x61,0x9e,0xba,0x70,0x59,0xe9,0x46,0xc6, +0x5a,0x26,0x46,0x1b,0xba,0xad,0x5b,0x79,0x7b,0x53,0x43,0xa9, +0xd4,0xc6,0x75,0x28,0xe0,0x4a,0xc4,0x1d,0x0e,0x5c,0x84,0x4d, +0x4a,0xd7,0xa9,0x66,0xc6,0xf1,0xb4,0xf3,0x19,0x8f,0x73,0x19, +0x7a,0x3c,0xbc,0x9a,0x07,0x5b,0x6b,0x7f,0xaf,0x8a,0x1e,0xe4, +0x35,0x83,0x76,0x07,0xec,0x0d,0xe1,0x84,0xf9,0xa0,0xc2,0x56, +0xa3,0xfe,0xa7,0xb8,0x1c,0x0c,0x91,0x54,0xf7,0xf3,0xbb,0x07, +0x74,0x07,0x2d,0xaf,0x70,0x13,0xc2,0xf7,0x04,0x17,0xe2,0xaf, +0xb0,0x90,0x85,0x5f,0xf1,0x20,0xc1,0xb7,0x69,0xfb,0x6d,0xda, +0xb1,0x28,0x5a,0x44,0x5b,0xfb,0x9b,0x46,0xeb,0x6e,0x98,0x57, +0xf2,0x6e,0xfa,0x4e,0x32,0x7b,0x85,0x77,0x97,0x5b,0xa7,0x63, +0x87,0xb9,0x33,0xdf,0x68,0x5c,0x29,0x2b,0x36,0xb6,0xb1,0xb4, +0xb0,0x95,0x3b,0xd3,0x4c,0xec,0xa8,0x69,0xa9,0x6f,0x68,0xce, +0x95,0x67,0xca,0x53,0x64,0xfa,0x9b,0xb5,0xb4,0x77,0xe8,0xd0, +0xd1,0xfc,0x6c,0x60,0x78,0xbc,0xfb,0x1e,0xed,0x58,0x9c,0x82, +0x76,0xec,0x90,0xbb,0x62,0x9f,0xda,0x29,0xb1,0x63,0xa3,0xcc, +0xcf,0x94,0x5c,0xfb,0xc0,0x46,0x1f,0x50,0x91,0x51,0xef,0xc3, +0xdc,0x54,0x22,0x7c,0x35,0x8c,0x45,0xb0,0x5c,0x0b,0x97,0x63, +0x0a,0x93,0x83,0x40,0x9e,0xdd,0xb8,0xfb,0xa4,0xf3,0xb9,0x49, +0x39,0x6f,0xbd,0xe3,0xd8,0x47,0x5b,0x75,0x44,0xf3,0xb5,0xc8, +0xbd,0x23,0xb7,0x76,0x0e,0x6f,0xee,0x6a,0xe4,0x75,0xbf,0x3e, +0xf2,0xe5,0x81,0x9b,0xdc,0x11,0xa5,0x23,0x19,0xbe,0xde,0xf1, +0x69,0xdd,0xf7,0xd2,0x12,0xde,0x75,0x87,0xf5,0x21,0x63,0x1d, +0xd3,0x31,0x9b,0x3b,0x2e,0x5f,0x18,0x78,0xf2,0x75,0x1b,0xda, +0x34,0x06,0x4e,0xec,0xdd,0xbf,0x4a,0x1f,0x17,0x58,0x55,0x50, +0x8f,0xbc,0xd6,0xfe,0xeb,0xd8,0xe7,0x8f,0x1e,0xee,0xf9,0x41, +0x07,0x24,0x8a,0x8a,0x11,0x1e,0x67,0xb7,0x6e,0x1a,0x3a,0x78, +0x8f,0x12,0xb9,0x75,0x93,0x1f,0x10,0xa8,0x1b,0xc1,0x3a,0xf8, +0x9b,0x26,0xfe,0x0d,0x0b,0xf4,0xa0,0x80,0x6a,0x6d,0x94,0x9d, +0x58,0x46,0x05,0x84,0xba,0x5a,0xb5,0x0e,0xd8,0xc0,0xa2,0x9f, +0x60,0x4e,0x02,0xbc,0x4b,0xd1,0x2d,0x01,0x55,0x9e,0xe1,0xab, +0xa0,0x87,0x6f,0xd6,0x8d,0xf2,0xe8,0x03,0xef,0x1d,0x79,0x01, +0xa6,0xaa,0xca,0xa3,0x60,0x47,0x5a,0xa6,0xf3,0xd4,0xbc,0x9c, +0xf7,0x30,0x70,0x35,0x71,0x54,0xf8,0x76,0xb9,0xff,0x05,0x06, +0x95,0xb2,0x42,0x63,0x7b,0x2b,0x6b,0x11,0x0c,0x0c,0xf9,0xd6, +0xea,0xc6,0xda,0x5a,0x8a,0x5b,0xe9,0x8a,0x14,0x13,0xc3,0xad, +0x52,0xed,0x19,0x30,0xe8,0xef,0x1f,0xed,0xb8,0xc3,0xc5,0x5b, +0xc6,0x59,0x98,0xa9,0xe2,0xc1,0x58,0x0f,0xc5,0x81,0x19,0x30, +0x18,0xa2,0x60,0x30,0x46,0xdd,0x45,0xc1,0xe0,0x6d,0x33,0x1a, +0x07,0xa0,0xeb,0x4c,0xb4,0xd8,0x95,0x01,0xb2,0x3d,0x9b,0xd4, +0x1a,0xe5,0x0d,0xad,0x4d,0xa3,0x99,0x35,0x2a,0xf1,0x69,0xc9, +0x17,0x13,0xa2,0xaf,0xe2,0x7c,0xbe,0xb5,0xee,0x04,0xcc,0x3f, +0x9d,0x11,0x15,0x17,0x11,0xad,0x12,0x1e,0x75,0x3e,0x4e,0x92, +0x5a,0x75,0xa9,0x62,0x50,0x75,0x9c,0x85,0x81,0xc5,0x06,0xec, +0xd2,0x20,0xc5,0xf1,0xdd,0x6a,0x8d,0x66,0xb5,0xcd,0xe5,0x5d, +0x19,0x95,0x2a,0x09,0xa9,0x09,0x1f,0x27,0x46,0x7f,0x85,0x3c, +0xdf,0xd2,0xb0,0x1d,0x48,0x4c,0x46,0x4c,0x5c,0x38,0xfd,0x58, +0x34,0xfd,0x58,0x4a,0x55,0x7c,0xd5,0x84,0xea,0x10,0x8d,0x83, +0xaf,0x28,0xba,0x39,0xeb,0x3b,0x98,0x58,0xd3,0x92,0xe7,0xf2, +0x9f,0x25,0xcf,0xd2,0xd2,0xcc,0xce,0xe4,0xcf,0xec,0xab,0x6f, +0x6d,0x11,0xe3,0x3a,0xcd,0x44,0x6b,0xf3,0xbf,0xe3,0x7a,0xe2, +0x3f,0xe3,0x9a,0x66,0xdf,0xae,0x25,0x47,0x98,0x6c,0x31,0xfb, +0x66,0x02,0x7b,0xbd,0xd7,0x4c,0xf6,0x75,0xf6,0xb6,0x88,0xd9, +0xd7,0xb9,0x18,0xfd,0x04,0x6f,0xf0,0x63,0x95,0x5b,0xf1,0x00, +0x81,0x05,0xf0,0x12,0x17,0xb0,0xca,0x63,0x53,0x86,0x64,0x02, +0x2c,0x84,0x77,0x29,0x0f,0xd1,0x60,0xc4,0x45,0x9a,0x6b,0x99, +0xce,0xdc,0xfc,0x76,0x75,0x21,0x5a,0x99,0xc5,0x4e,0xe0,0x26, +0xf2,0x9b,0xf0,0xee,0x7b,0xac,0xf2,0x5d,0xdc,0x42,0x7e,0x17, +0xde,0x5d,0xce,0x2e,0x12,0x4a,0x27,0xdf,0x27,0x15,0xe6,0x2d, +0x16,0x3d,0xd6,0x27,0x2d,0x77,0x3b,0xac,0x75,0x2f,0x30,0xe6, +0x7f,0xab,0xfe,0xa6,0xe5,0x5e,0xcf,0x2d,0xb3,0xc7,0x96,0xdf, +0x39,0x17,0x0f,0xf0,0x3b,0xca,0x0e,0xd6,0x69,0x36,0xdf,0x1c, +0xea,0xbd,0x56,0xf3,0x09,0xd7,0x8e,0x55,0x6c,0x66,0x41,0x5a, +0x61,0xf2,0x65,0xfd,0x34,0xde,0x71,0xe7,0xd1,0xbd,0x5b,0x64, +0x55,0x72,0xbe,0x3a,0xbf,0xaa,0xb8,0xbc,0x94,0xc3,0xc7,0x34, +0xec,0xdc,0xf0,0x88,0x1e,0x6e,0xd9,0x83,0x73,0x1a,0xa4,0x7c, +0x59,0x43,0x61,0x5b,0x7e,0x07,0xa7,0xac,0x1d,0x9d,0xdc,0xc2, +0x16,0xde,0xc9,0xfb,0x2c,0xeb,0x73,0x4e,0xb8,0x81,0x2c,0xf1, +0x94,0x5a,0x18,0xeb,0xc8,0x0d,0x5b,0x2c,0x3a,0x5d,0xba,0xb3, +0x72,0x79,0x0c,0x52,0x0a,0x44,0xf8,0x41,0x4f,0xf9,0x03,0x2b, +0x58,0x40,0x26,0xa9,0xf4,0xa9,0x77,0x2e,0x76,0x69,0xac,0xe2, +0x3d,0xab,0x1d,0x2a,0x5d,0x0a,0x38,0xd8,0x85,0x7a,0xa4,0x0f, +0x33,0xe0,0x1d,0x1d,0x7c,0x07,0xfd,0x8c,0xc1,0x89,0x0d,0x5c, +0x7b,0x44,0x1b,0xb7,0x1c,0x29,0xa2,0xcc,0x71,0xdb,0xbd,0xef, +0x3e,0x4f,0xfd,0x9d,0x4b,0x62,0x32,0xdf,0xfb,0x46,0x03,0x76, +0x7c,0x54,0xd6,0xcf,0xe3,0x96,0xfb,0x1a,0x23,0x81,0x7f,0xa7, +0x85,0x71,0x82,0x8e,0x87,0xbb,0x81,0xb3,0x89,0x83,0xc2,0xa7, +0xcb,0xad,0xc3,0x49,0x0c,0xb0,0x06,0xe3,0x4a,0x93,0x22,0x63, +0x3b,0x4b,0x4b,0x7b,0x85,0x18,0x60,0xed,0xd5,0xcd,0x75,0xf5, +0x4d,0xb9,0xe6,0x19,0xf2,0x14,0x13,0xfd,0x2d,0x3a,0xda,0xbb, +0xc4,0xbd,0x7d,0x1f,0xf6,0x0f,0x8e,0x75,0xdf,0x15,0x03,0x4c, +0x41,0x03,0xec,0x40,0xac,0xbb,0x42,0x63,0x89,0x96,0x38,0x1e, +0xa3,0xcc,0x8f,0xfd,0xd3,0x01,0xe6,0x0b,0x6f,0x9b,0xd0,0x6a, +0xd3,0xd2,0xd7,0x38,0x52,0x7b,0x83,0xab,0xc2,0x5e,0x02,0x6f, +0x55,0x4f,0xd4,0x36,0xd6,0xa4,0xa7,0x24,0x7c,0x9c,0x79,0x16, +0xf2,0x97,0xf3,0x65,0x83,0x78,0xfa,0xef,0xc1,0x49,0x91,0x67, +0x63,0x68,0x98,0x84,0x9e,0xb9,0x94,0x9e,0x97,0x5a,0x90,0x50, +0xa4,0x02,0x89,0x03,0x18,0xf7,0xa9,0xd6,0x5e,0x8c,0x32,0x84, +0x10,0x26,0x40,0xfb,0x88,0x0d,0xae,0xb5,0xe5,0xc2,0x76,0x10, +0x3d,0xc1,0x42,0xb9,0x17,0x57,0x4f,0xcf,0xe0,0xa9,0x30,0xbd, +0xe9,0xc5,0x8d,0xea,0xc2,0xf6,0x27,0x23,0xac,0x72,0x10,0x97, +0x13,0xbc,0x31,0x72,0x1b,0xd2,0xc4,0x53,0xc9,0xd2,0xc4,0xe9, +0x3f,0x35,0x90,0xa3,0xda,0xf4,0x26,0x55,0x0f,0x89,0xab,0xa1, +0x93,0xa9,0x9d,0x85,0x57,0x87,0x4b,0xbb,0x43,0x9b,0x18,0x6f, +0xa6,0x55,0xa6,0xa5,0xa6,0x96,0x16,0x72,0x5b,0x13,0x27,0x31, +0xde,0x6a,0xdb,0x1b,0x5a,0x5a,0x0b,0xe4,0x59,0x66,0x22,0xda, +0xd3,0x78,0xd3,0x99,0xc1,0xd1,0x09,0x11,0xed,0x15,0x97,0xe4, +0x32,0x31,0xde,0x5c,0x29,0xda,0xff,0x05,0xa4,0xc3,0x62,0xbc, +0x6d,0xf4,0x04,0x15,0x29,0x2c,0x54,0x6f,0xed,0x69,0x1a,0xaa, +0xbb,0xc2,0x09,0xa5,0x53,0xad,0x64,0x0d,0xe3,0x1c,0x9d,0x54, +0xa3,0x0e,0x95,0xb0,0x41,0x50,0xe0,0x79,0x29,0x9c,0x42,0x35, +0x3c,0x6c,0x00,0x87,0x71,0x8d,0x52,0x15,0xd6,0xc0,0xce,0x41, +0xdc,0x09,0x84,0xbd,0x99,0x3b,0x56,0xd8,0x5e,0xea,0xd8,0xcd, +0xcb,0xdd,0x35,0xbd,0xb7,0x04,0x71,0xca,0xe3,0xf0,0x1a,0x7b, +0x11,0x0f,0x18,0x6e,0x42,0xd5,0xdd,0x75,0xb4,0x70,0x6d,0xfc, +0x6e,0x18,0x5e,0x8b,0x83,0x53,0x1c,0xad,0x80,0xcd,0xcc,0xb1, +0x42,0xbf,0x1b,0x6a,0xbf,0x31,0x9d,0x59,0xb9,0x6d,0xea,0xb0, +0x86,0xd5,0xcf,0x92,0x2c,0x9a,0xdc,0x2d,0x7c,0x4d,0xe0,0x7c, +0x0f,0x9e,0xff,0x14,0x0a,0xfa,0xb0,0xe0,0xa6,0xce,0x31,0x8c, +0x37,0x86,0xf8,0xbd,0x18,0x66,0x02,0x61,0x3b,0x31,0x4f,0x26, +0xbc,0xe8,0xc5,0x4a,0x46,0x39,0x1f,0x1e,0x11,0x77,0x7d,0x17, +0x99,0xa3,0xc2,0xa7,0xdb,0xbd,0x73,0x66,0x74,0x8d,0x2a,0x64, +0xc5,0x46,0xb6,0x96,0xd6,0x76,0xd3,0xa3,0xdb,0x56,0xd3,0x54, +0x57,0xd7,0x94,0x2b,0x4f,0xa7,0x60,0x6b,0xb8,0x45,0x57,0x67, +0xb7,0x08,0xb6,0xf7,0x07,0x06,0x47,0x3b,0x67,0x46,0xd7,0x54, +0x15,0x0f,0xd3,0xd1,0xdd,0xbf,0x44,0x5b,0x84,0x8f,0x61,0xe6, +0x79,0xdf,0x38,0xe5,0x12,0x1b,0xfd,0x40,0x45,0xa4,0x3d,0x2d, +0xfd,0x0d,0xe2,0x03,0x3c,0xb0,0xe8,0xbf,0xe6,0x12,0x88,0x14, +0xe6,0x50,0xb9,0xb2,0x8c,0xcd,0xd0,0x17,0x37,0xbe,0xe9,0xca, +0xcd,0xe9,0x54,0x17,0xde,0x51,0x06,0x29,0x1d,0x59,0xb0,0x87, +0x46,0x82,0xeb,0x80,0x87,0x75,0xcc,0x30,0xf2,0x84,0x36,0x36, +0x23,0x4f,0x47,0x67,0x94,0x8e,0x8e,0x9b,0x81,0x8b,0xcc,0xc1, +0xdc,0xfb,0x3f,0xa3,0xaf,0xd8,0xd8,0xf6,0x3f,0xa3,0xaf,0xa1, +0x99,0xd2,0x32,0x5a,0x8b,0xa5,0xff,0x1d,0x7d,0x43,0x63,0x5d, +0x77,0xb9,0x84,0xff,0x8c,0x3e,0x4d,0x71,0x74,0x46,0x98,0x9f, +0x66,0xa2,0xcf,0x47,0x8c,0xbe,0x79,0xea,0xad,0xfd,0xd3,0xd1, +0x37,0x72,0x9e,0xa0,0x52,0x70,0x07,0x25,0xab,0x4b,0x25,0x09, +0x0a,0xbf,0x82,0xc0,0xa0,0x80,0x6b,0x08,0x08,0x4b,0x51,0x60, +0xb6,0x29,0xaf,0x91,0xd1,0x31,0x61,0xa3,0xce,0x98,0x70,0x42, +0x59,0xc6,0x08,0x2e,0x34,0xfd,0x95,0x1b,0xff,0x10,0x36,0x32, +0xca,0x8d,0xb8,0x99,0x08,0x1b,0x91,0x36,0x98,0x45,0x93,0x5b, +0x26,0x9d,0x09,0x48,0xb4,0x51,0x82,0xa9,0x52,0xe1,0xdb,0x61, +0x76,0x6a,0x39,0xcc,0xa6,0xac,0xd2,0xcd,0xd4,0xc5,0xc2,0xa7, +0xc3,0xa3,0x7d,0x9a,0x55,0xd6,0xcb,0x2a,0x4c,0x8b,0x64,0x76, +0x16,0xd6,0x76,0xe6,0x4e,0xd3,0xee,0x6d,0xac,0xaf,0x6b,0xce, +0xa5,0xac,0x32,0xc5,0xc4,0x60,0xb3,0xae,0xce,0x47,0xd3,0xee, +0xed,0x1f,0x10,0xcd,0xff,0x33,0x79,0x0e,0x7a,0x28,0xf6,0xab, +0xfd,0xe9,0xdd,0x1f,0xa6,0xad,0x17,0x49,0xa5,0x58,0xcb,0x9a, +0x7a,0x6b,0x87,0x29,0xa9,0x84,0xf7,0x95,0x2a,0x24,0x21,0x25, +0x21,0x36,0x39,0xe6,0x25,0x4a,0xf8,0xda,0x86,0x3a,0xeb,0xce, +0x96,0xaa,0xc6,0x82,0x3a,0x95,0xf8,0xa4,0x84,0xb8,0xe4,0x18, +0x78,0x13,0xdf,0xe2,0x1b,0xdb,0x70,0x01,0xcc,0x0b,0xcf,0x88, +0xfa,0x38,0x22,0x52,0x25,0x4a,0xbc,0x09,0x94,0x5d,0x97,0xd2, +0x3e,0xa6,0xda,0xa8,0x63,0x4b,0xe1,0xdd,0x68,0xdd,0x36,0xb5, +0xb5,0xbf,0xd0,0x77,0x63,0x23,0x22,0x54,0xa2,0xc4,0x69,0x98, +0xcc,0xea,0x94,0x9e,0x21,0xd5,0x56,0x1d,0x4b,0x76,0xa9,0x8f, +0x11,0xce,0x5e,0xa7,0x56,0x6f,0x36,0xd4,0xde,0xd4,0x53,0x58, +0xaf,0x42,0x89,0xa8,0x0f,0xf9,0x5e,0x7b,0x3d,0xa6,0x49,0x21, +0x0d,0x5d,0xc7,0xc1,0x15,0xda,0x86,0x29,0x12,0xea,0x4d,0x3e, +0x23,0xee,0xa8,0x67,0x8c,0xeb,0xf6,0x20,0x57,0x6f,0xc2,0xe7, +0x97,0x16,0xd4,0xe6,0xb7,0x70,0xca,0x82,0xa1,0xc9,0x55,0x6c, +0xc9,0xfd,0xcb,0x5f,0x65,0x7c,0xc7,0xa1,0x5b,0xbc,0xb8,0x53, +0xb8,0xcc,0xc5,0xfc,0xcf,0x9d,0xc2,0xdd,0xf8,0x3a,0xc3,0x72, +0xe3,0x42,0x43,0x47,0x2b,0x3b,0xbb,0xe9,0x9d,0xc2,0x9b,0xaa, +0x6a,0x6b,0xab,0x1b,0xb2,0x15,0xe2,0x4e,0xe1,0x26,0xdb,0x0c, +0x74,0x0e,0x88,0xe5,0xea,0x66,0x5f,0xcf,0xc8,0x9f,0x3b,0x85, +0xcb,0xc5,0x9d,0xc2,0x3d,0xcd,0x8f,0x2e,0x31,0x10,0x77,0x0a, +0xef,0x67,0xbe,0xee,0x19,0x05,0x7f,0x71,0xa7,0x70,0xde,0x9c, +0xa2,0x49,0xd3,0x40,0xed,0x78,0xd5,0x2d,0x4e,0xa8,0x45,0x13, +0x92,0x32,0x98,0x7c,0x3d,0xfe,0x26,0x87,0xbf,0x19,0x40,0x03, +0x73,0xde,0xf2,0x9c,0x69,0x8c,0x15,0x87,0x23,0x06,0x82,0xc1, +0x20,0x13,0xa7,0xdc,0x4d,0x86,0xd0,0x1e,0x96,0x82,0x74,0x10, +0x9f,0xb0,0x29,0x65,0xe2,0xad,0x4a,0xc3,0x34,0x3e,0xf4,0x80, +0xdb,0x5e,0xdb,0x53,0x9d,0xce,0x7c,0x7e,0x65,0x4e,0x5d,0x56, +0x3d,0xf7,0x33,0x2e,0x45,0x63,0x7d,0x30,0x64,0x22,0x37,0x9e, +0xd2,0xc6,0x77,0x4f,0x94,0x52,0xb4,0x5c,0x76,0x77,0x62,0x2c, +0xf5,0xe5,0xf4,0x36,0x63,0xe3,0x3a,0xb0,0xe2,0x40,0xf9,0x00, +0x8f,0x4b,0xef,0x9c,0x18,0x8e,0xf8,0x96,0xa2,0x65,0xf2,0xe4, +0xa7,0xc4,0xd7,0xc0,0xdb,0xc4,0xc3,0x3c,0xa0,0xd3,0xa7,0xdd, +0xbd,0x4d,0xe1,0xce,0xd7,0x18,0x94,0x1a,0x17,0x18,0xba,0x5a, +0x3b,0xd9,0xdb,0xbb,0xd0,0xae,0xd4,0x56,0x56,0x56,0x97,0xd7, +0x65,0x98,0xa7,0x2a,0x12,0x4d,0xcd,0xb7,0x9b,0xe9,0x1d,0xd7, +0xa5,0x17,0xc7,0xa8,0xd6,0xa9,0xbf,0xce,0x5d,0xb2,0x8d,0xb5, +0xb6,0x10,0xfb,0xe7,0x63,0x71,0x6a,0x89,0x19,0x93,0xad,0x25, +0xe9,0x64,0x1e,0x75,0x0d,0xd3,0xfe,0x6d,0x08,0x86,0xc5,0x36, +0xc0,0xa9,0xd7,0x0d,0x56,0x8e,0x57,0xdc,0xe6,0x84,0xae,0x28, +0x82,0xef,0xa1,0x0c,0x8e,0xe9,0xe2,0x31,0xd4,0x82,0xf7,0xa4, +0x68,0x2a,0xf4,0x81,0x29,0xdb,0x8e,0x2d,0x64,0xea,0x5d,0x7d, +0x18,0x62,0x22,0x9c,0x42,0xed,0x83,0x9d,0x39,0x0c,0x55,0x1e, +0x18,0x15,0xe6,0xc2,0x5c,0xfc,0x6d,0x08,0x7e,0x83,0xf9,0x33, +0x2f,0x6f,0xe2,0xe0,0x16,0x26,0x47,0x5f,0xf2,0x09,0xd3,0x9c, +0x9d,0xd5,0xa4,0x0e,0x88,0xfd,0x6c,0x4e,0x75,0x66,0x5d,0x5a, +0x2d,0x07,0x8d,0x54,0x62,0x34,0xd3,0xb4,0xf3,0xa4,0x12,0xc3, +0xd9,0xdc,0xb7,0xd3,0x93,0xc2,0xa2,0xc2,0x95,0xaf,0x37,0x2a, +0x97,0x15,0x1a,0x39,0x58,0xd9,0xda,0x5b,0x89,0xc3,0xd4,0x5c, +0x55,0x5f,0x5b,0xd3,0x98,0x6d,0x4e,0x25,0x86,0x89,0xf1,0x36, +0x03,0xed,0x7d,0x62,0x37,0xee,0xf4,0xf5,0x8e,0xb4,0xdd,0xfe, +0x6b,0x98,0x44,0x89,0x71,0x78,0x89,0x54,0x1c,0xa6,0x01,0xe6, +0x59,0xef,0xb4,0xc4,0xf0,0x87,0xb7,0x15,0x34,0xed,0x9a,0xfa, +0xeb,0x46,0xab,0x6f,0x72,0xcd,0xe7,0x08,0xbe,0x10,0x8a,0xe0, +0x85,0x78,0x6e,0xf9,0x87,0xe4,0x47,0x61,0xe3,0x6a,0x96,0x66, +0xd4,0x1a,0xf2,0x42,0xd8,0xb8,0x82,0xc5,0xbd,0xca,0x45,0x04, +0x82,0xfa,0x30,0xe8,0x05,0xa4,0x0d,0x60,0xda,0x37,0xba,0x9b, +0x71,0x13,0x93,0x51,0x9c,0x56,0x92,0x5c,0x6c,0x94,0xc3,0xfb, +0x68,0x28,0x0e,0x68,0x6b,0xb6,0xd9,0xf3,0xe5,0x95,0x25,0xb5, +0x85,0xf5,0x1c,0xe8,0xac,0x40,0x1f,0x63,0xf0,0x41,0x0e,0xeb, +0x0c,0x27,0x67,0x0f,0x60,0x35,0xed,0xc8,0xc8,0xff,0x9d,0xea, +0xd5,0x42,0xf1,0xe3,0x5f,0x42,0x26,0xfc,0x8b,0xc5,0x56,0xdc, +0x40,0x70,0xef,0xef,0xb0,0x77,0xe6,0x19,0x96,0x43,0xcb,0x59, +0x0c,0x35,0x21,0x4b,0x71,0xef,0x1f,0x2c,0xf8,0x2f,0x86,0x43, +0x4b,0xf1,0x10,0x03,0x9c,0x92,0x90,0x91,0x96,0x9e,0xce,0x9a, +0x26,0x9b,0x3a,0xde,0xd1,0xca,0xcc,0xc2,0xc8,0xde,0xb9,0xc3, +0xa7,0x2f,0x78,0x98,0x83,0xc2,0x7e,0xe5,0xaf,0x46,0xff,0xc0, +0x0e,0xc6,0x3c,0xc6,0xe2,0xb4,0xd5,0x99,0x34,0xca,0x25,0x49, +0x1e,0xf0,0x15,0xf0,0x6a,0x55,0x64,0x2f,0x6f,0x18,0xa6,0x19, +0xaa,0x19,0xc1,0x41,0x0d,0xcc,0x61,0x5b,0x70,0xe3,0x33,0x7c, +0x0d,0x0e,0xae,0xac,0xe8,0xe1,0x8f,0x34,0xea,0xb7,0x59,0x74, +0x71,0x7f,0x75,0xd8,0x65,0xba,0xc3,0xee,0x7f,0x75,0x98,0x02, +0xba,0xcc,0xd6,0xd2,0x6a,0xa6,0xc3,0x6d,0xd3,0x1d,0xce,0x99, +0xee,0xb0,0x01,0xed,0xf0,0x6e,0xb1,0xc3,0x0f,0x68,0x87,0xff, +0x03,0x71,0x62,0x3d,0xcc,0xc5,0x0e,0x4f,0x03,0xe6,0xf3,0xff, +0xad,0xc3,0x42,0xf1,0x59,0xa2,0x74,0xc2,0xd8,0xdd,0xb8,0x6b, +0x04,0x18,0x21,0x11,0x99,0x51,0xd8,0xa5,0xc1,0xe8,0x82,0x09, +0x39,0x8c,0x11,0xf8,0x06,0x72,0x60,0xc2,0xc2,0x7e,0x9a,0x85, +0x9f,0xc1,0xb1,0x3d,0x2c,0xfe,0x32,0xc5,0x12,0x38,0x0a,0xcf, +0x71,0x16,0xee,0x65,0xb3,0x8d,0x45,0x5e,0x35,0x7d,0xa8,0x9d, +0xb0,0x57,0x69,0xa5,0xbc,0xc8,0x0a,0x2b,0x84,0x57,0x08,0x3e, +0x7f,0x0a,0xcf,0x19,0x7c,0x2e,0xee,0xa1,0xfc,0x7c,0x33,0x3e, +0xa7,0x80,0xfa,0x78,0x32,0x88,0xb8,0xbb,0xd8,0xba,0xc9,0xbc, +0x3d,0xab,0x7d,0x8b,0x3c,0x0b,0x2d,0xbd,0xf8,0x12,0xdf,0x42, +0x9f,0x42,0x0f,0x9f,0x68,0xef,0x68,0x8f,0xd3,0xde,0xd5,0x7e, +0x45,0x5e,0x85,0x16,0xbe,0x7c,0xa1,0x6f,0x81,0x7f,0xbe,0x97, +0x55,0x94,0xfc,0xb4,0xec,0x6c,0xae,0x09,0x0f,0xa7,0x0b,0x61, +0xff,0xe7,0x0f,0x81,0xe3,0x5a,0x30,0x83,0xcd,0x4c,0xcf,0xc8, +0x48,0xcf,0x34,0xc9,0xe7,0x0d,0xf4,0x77,0x59,0xe1,0x7c,0xd7, +0x22,0x39,0x7f,0x2d,0x67,0xbc,0xb0,0xaf,0x92,0x53,0xfa,0x29, +0xfd,0xc8,0xb5,0xdb,0x05,0xa3,0xf1,0xf0,0x2a,0xf7,0x3b,0x9e, +0x1d,0x11,0xee,0xeb,0xe1,0x3a,0x5c,0x0b,0x6f,0xeb,0xe3,0x09, +0xb0,0xdd,0x8d,0x97,0x8c,0xbf,0x61,0xce,0xaf,0x09,0x36,0xd1, +0xd6,0xe1,0x26,0x17,0x5d,0x22,0x2f,0x99,0xf6,0xec,0x9c,0x56, +0xf5,0x9f,0xbf,0xef,0x59,0xff,0x77,0xe9,0x3a,0xe5,0x2a,0x13, +0x61,0x15,0xed,0xd0,0x1b,0x2c,0x5a,0x0c,0x92,0x36,0x8f,0x1a, +0x8f,0x3a,0xbb,0xa6,0x7a,0xde,0xb1,0xce,0xa1,0xdc,0xa2,0x54, +0xbc,0xb9,0xd5,0x43,0x06,0x71,0x2d,0x5b,0x54,0x6b,0x59,0xa2, +0x28,0x94,0xe5,0xa9,0xb8,0x5a,0xb5,0x07,0x35,0x04,0x36,0xfa, +0xa8,0x60,0xcc,0xa3,0x93,0x1f,0x29,0x3f,0x30,0x10,0x54,0x19, +0xfb,0xfd,0xf8,0x86,0x02,0xa3,0xed,0xf2,0xe9,0x30,0xd7,0xf7, +0x80,0xa4,0xbb,0x08,0x5e,0xe1,0xc4,0xf5,0xbd,0xaf,0x00,0x31, +0x85,0x7a,0x59,0x2e,0x25,0xfd,0xd1,0x0d,0xf8,0x4e,0x87,0xcd, +0x7d,0x3a,0xb8,0x25,0x74,0x70,0x7d,0x65,0x5e,0x72,0x0f,0x4b, +0xbf,0x36,0xcf,0x56,0xb7,0x16,0x3a,0xb8,0xb5,0x26,0xe5,0xa6, +0x85,0x32,0x47,0x0b,0x5b,0x5b,0x4b,0x47,0x51,0xf9,0xd7,0xd4, +0xd7,0x57,0x37,0xe7,0xc8,0x33,0xcc,0x92,0x65,0xc6,0x5b,0xf5, +0xb5,0xf7,0x4e,0xdf,0xa4,0xe8,0xef,0x1b,0x6d,0x9b,0x1e,0x5c, +0x73,0xb3,0xbf,0x94,0xff,0x74,0x5a,0x0e,0x32,0xcf,0xa6,0x95, +0xff,0x16,0xdf,0x99,0x6a,0x5d,0xd7,0x5b,0x39,0x54,0x7e,0x95, +0x03,0x3f,0xfc,0x88,0xdc,0x00,0xd3,0xe3,0x43,0x37,0xa6,0x27, +0xcc,0x1e,0xe8,0x6b,0xa0,0xa9,0xf8,0xdf,0x1a,0x63,0x58,0x73, +0x9c,0x15,0x6c,0x95,0xa7,0xc9,0x00,0x36,0x7f,0x0a,0x21,0xf0, +0x95,0x32,0x1e,0xbf,0x02,0xb7,0xbd,0x98,0x66,0x08,0x17,0x59, +0xb7,0x53,0xeb,0x4d,0x70,0x8f,0x5c,0xec,0x8c,0x6c,0xec,0xd7, +0x89,0xb4,0x1f,0xc4,0xad,0xa5,0xd7,0xfc,0x6c,0x08,0xb2,0x13, +0x05,0xb4,0x23,0x1a,0x7d,0x9b,0xda,0xdd,0x26,0xc4,0x47,0x43, +0x3e,0x23,0x4a,0xfe,0xa9,0xc0,0x33,0xa8,0x36,0x67,0x93,0x92, +0xff,0x76,0xfa,0x91,0xb7,0x33,0x64,0x14,0x8d,0xd8,0x8b,0x59, +0x1f,0x67,0x67,0xab,0x42,0xa8,0x16,0x86,0xb2,0x21,0x1f,0x87, +0x5c,0x0c,0xa5,0x04,0x49,0x17,0x0e,0x32,0xe1,0xe8,0xa0,0x4f, +0xe5,0xda,0x9b,0xb8,0xa3,0x51,0x87,0x87,0xb7,0xe0,0xa3,0x41, +0xf8,0x20,0x01,0xb4,0x38,0x51,0x21,0x69,0x0d,0xe0,0xbb,0xb0, +0x14,0x0f,0xd6,0x8f,0xf3,0xb4,0xb1,0x47,0x1f,0xd4,0xc2,0xc1, +0x96,0x83,0xfd,0xa0,0x42,0x3c,0xaf,0x38,0x5e,0x75,0xec,0xb2, +0xa4,0x02,0xcd,0xb0,0x52,0xaf,0xec,0x24,0x37,0xf5,0x44,0xb9, +0x87,0xc0,0xba,0x78,0x58,0x93,0x02,0x6b,0x33,0x2e,0xf6,0xf3, +0xc7,0xce,0x1c,0x3d,0x7b,0xec,0x3c,0xf7,0x2d,0x48,0xfb,0x50, +0xfa,0x19,0x1c,0x84,0xef,0x95,0xcb,0xf1,0x7b,0xd8,0xbb,0x07, +0x35,0x8d,0x41,0x73,0x3d,0x7b,0xe2,0xfc,0x89,0xf3,0xc7,0x2f, +0x72,0x54,0x13,0xe4,0x10,0x8c,0xc6,0x85,0xe2,0xda,0xaa,0x3d, +0x18,0x4d,0x20,0x9a,0x82,0x68,0x34,0x7b,0xb8,0x8e,0xe4,0xb7, +0xe7,0x0d,0xa5,0xf5,0x58,0xe7,0xf0,0x11,0xc6,0x21,0x26,0x01, +0x0a,0x0e,0xf7,0xc0,0x5b,0x24,0xd7,0x22,0x43,0x91,0xa1,0xdf, +0x94,0xc7,0x47,0x0c,0x87,0xb5,0x07,0xb5,0x71,0x10,0xa4,0xbc, +0x4f,0x2e,0x3b,0xe4,0x5b,0x66,0x59,0xb6,0x5f,0xe6,0x43,0x5a, +0xfd,0x9a,0x7d,0xea,0x39,0x5c,0xe6,0x40,0xf2,0x15,0x99,0xa6, +0xe9,0x7a,0x3d,0x39,0x7c,0xd8,0x48,0x70,0x77,0x40,0x3b,0x87, +0x25,0xe8,0x4c,0x6a,0x87,0x2a,0xee,0x65,0xdf,0x34,0xcd,0xe6, +0x43,0xb4,0x3c,0x4f,0xd9,0x1b,0x89,0x5d,0xd9,0x4c,0x52,0xf4, +0x13,0x74,0x2e,0x9d,0xec,0x4f,0xe1,0xcf,0xdd,0x38,0x3d,0x16, +0x39,0x48,0xc3,0x41,0x77,0x72,0x36,0xa9,0x19,0x2a,0x9b,0x28, +0xbb,0x27,0x6e,0x89,0x61,0xe0,0x67,0xea,0x6d,0x1e,0xd4,0xe1, +0xdb,0xee,0xd5,0xa6,0xf0,0xe0,0xab,0xf5,0x8b,0x0d,0xf3,0x0c, +0x3c,0x6d,0xdc,0x1c,0x9c,0x5c,0xca,0x8c,0xf9,0xca,0x72,0xf1, +0xfc,0xcc,0x74,0x8b,0x64,0x45,0x82,0xa9,0xcd,0x2e,0x0b,0xa9, +0xb6,0x2e,0xbd,0xd8,0xdf,0xdd,0xd8,0x5f,0x35,0xc1,0xc5,0x39, +0xc4,0xda,0xda,0xa8,0xe2,0xb1,0x58,0x3f,0x2b,0xdd,0x25,0x56, +0x62,0xd5,0x69,0x61,0xee,0x75,0x0c,0x42,0x20,0x6c,0x08,0x85, +0xb7,0x1c,0x80,0x55,0x87,0x85,0x70,0x9c,0x60,0x0f,0x8b,0x91, +0x91,0xb8,0xf5,0x04,0xbe,0xaf,0xd6,0x63,0x25,0xb9,0x0d,0xdb, +0x33,0x60,0x2f,0x64,0xa9,0x42,0x84,0xf0,0x63,0x2f,0x4b,0x05, +0xd3,0x05,0xf2,0x80,0x39,0x7d,0x30,0x64,0xb7,0xcf,0xa9,0xce, +0x30,0xbe,0xf4,0x51,0xd6,0xe7,0x49,0x9f,0xd1,0xfc,0xd3,0x62, +0x13,0xa8,0xb6,0x8b,0xaf,0x56,0x24,0xf1,0xe1,0xf8,0x6a,0x20, +0xce,0xb7,0xd9,0xce,0xdd,0x92,0x63,0xb8,0x2e,0xb4,0xc3,0xfc, +0xde,0x13,0x6c,0x56,0x5d,0x56,0x5b,0x6a,0x9b,0x22,0x9d,0x8f, +0x30,0x0b,0x37,0x0f,0xb0,0xe4,0x70,0x9f,0x0c,0xe6,0x61,0x1b, +0x73,0x51,0x1f,0xc2,0xe5,0x58,0xf9,0x82,0x3d,0xbd,0xc5,0x45, +0xe7,0xf0,0xd1,0x06,0x05,0xff,0xe0,0x71,0xe3,0xed,0x64,0x98, +0xc3,0xfd,0x01,0x46,0x4c,0xb5,0x73,0xd9,0x68,0xfe,0x9d,0xac, +0x87,0x2a,0xb9,0xb8,0x92,0xc1,0x8f,0x82,0x71,0x3e,0x6e,0xc4, +0xb5,0x6a,0x75,0x26,0x30,0x1b,0xe6,0xb6,0x3c,0x4d,0x84,0x55, +0x54,0x3b,0xc7,0xa2,0x6a,0xf9,0x9a,0xbf,0xe3,0xa2,0xda,0x5e, +0x1e,0xe7,0xc3,0x87,0xc1,0xf0,0x06,0x6c,0x53,0xc5,0x07,0x60, +0x40,0x22,0x1b,0x83,0x5b,0x43,0x2a,0x2d,0x82,0xf9,0x1c,0x97, +0x6c,0xdb,0x54,0x6b,0x6e,0x91,0xf0,0x74,0xf2,0x11,0x91,0x1f, +0x7b,0x4f,0x17,0xd7,0xeb,0x5f,0x96,0xd1,0x22,0xdf,0x0b,0x6f, +0x5f,0x6d,0xfe,0x92,0xa6,0x62,0xed,0x2e,0x58,0x79,0x02,0x3e, +0x34,0xb8,0x4c,0xbf,0x64,0xe3,0x18,0xce,0x1b,0x34,0xbb,0xc3, +0x29,0x99,0xb3,0xc4,0x53,0xdf,0x4d,0xe6,0x42,0x45,0xb7,0x67, +0xa7,0x8b,0xc8,0x62,0xea,0xff,0x64,0x31,0xb6,0x76,0xd3,0xe5, +0xb1,0xa9,0x7a,0xba,0x3c,0x2a,0xd2,0xcc,0x28,0x8b,0xd9,0xaa, +0xaf,0xa3,0x21,0xe6,0xe1,0xad,0x7e,0x5a,0x1e,0x29,0x8b,0xb1, +0xfa,0x37,0x8b,0x39,0xbc,0x44,0x5f,0xe4,0x75,0xfd,0xcc,0xb7, +0x3d,0x63,0xe2,0x79,0x27,0xfe,0x7f,0xb1,0x98,0xba,0xf1,0xea, +0x5b,0x1c,0xac,0xc3,0xe3,0x04,0x6a,0x3a,0xb1,0x86,0x11,0x76, +0xe1,0x0b,0x02,0x09,0xca,0x01,0x4c,0x60,0x21,0x16,0x6c,0x09, +0xee,0x40,0x63,0xd8,0xc1,0x0a,0x46,0x8b,0x69,0xcb,0x82,0xb6, +0xd0,0xd1,0x88,0x54,0x79,0x54,0xb9,0x15,0xb9,0xd6,0x54,0xf1, +0xfe,0x25,0x0e,0x75,0x2e,0x25,0x1c,0xa5,0x67,0x8b,0x48,0x6d, +0x55,0x55,0x6d,0x7e,0xa5,0x4d,0x11,0x1f,0xe4,0xe5,0x6c,0xe7, +0xe4,0xc9,0x61,0xb6,0xf2,0x1c,0xe9,0x16,0x96,0x9b,0x0e,0xc2, +0x8f,0xca,0x44,0xfc,0x91,0x15,0x4c,0xa1,0x9b,0x1c,0x54,0x2e, +0xbf,0xc7,0x0a,0xcb,0x71,0x21,0xd9,0xab,0x5c,0xfe,0x29,0x2b, +0x4e,0x6a,0x7c,0x4a,0x7c,0x0c,0xbc,0x28,0x93,0xf1,0xef,0xf4, +0x9e,0x61,0x32,0xb5,0x86,0xa5,0x46,0x22,0x93,0x71,0x74,0xb0, +0x13,0xfb,0x58,0x57,0x59,0x55,0x53,0x31,0xcd,0x64,0x92,0x4c, +0x15,0xdb,0x4d,0x75,0x8f,0x8a,0x14,0x60,0xa2,0xaf,0x7d,0xa8, +0xe1,0x06,0x77,0xc9,0x26,0xd6,0x4a,0x64,0x32,0x3e,0x96,0x27, +0xd5,0x4c,0xc4,0x2e,0x76,0x31,0x8f,0xbb,0x45,0x22,0xb3,0x31, +0x48,0x5c,0xf5,0xc9,0xa9,0xd7,0x0f,0x54,0x89,0x44,0x06,0xde, +0xc7,0x0e,0x92,0x51,0x44,0xf5,0x70,0x11,0x27,0xec,0x03,0x17, +0xe5,0x43,0x74,0xf9,0x91,0x71,0x3f,0x68,0x74,0xf0,0x88,0x66, +0xad,0x35,0xdf,0x54,0xdf,0xd8,0x56,0xd5,0xc9,0x09,0xfa,0x0c, +0x1e,0x3d,0x83,0x6b,0x23,0x0e,0xa8,0x49,0xa3,0xc3,0x42,0x0c, +0x97,0x9c,0x63,0x6a,0x73,0x02,0xdb,0xed,0xc6,0x5d,0xda,0x55, +0xac,0xfc,0x52,0x43,0xd3,0x82,0x53,0x83,0x54,0x1c,0xcf,0x58, +0x9f,0xb1,0x3c,0xc3,0xfd,0x44,0xcb,0x8c,0x39,0x1e,0x7d,0x60, +0xac,0x81,0x1a,0x68,0x0e,0x1a,0xcb,0xd9,0xed,0x51,0x9b,0xa3, +0x0f,0x9f,0x4d,0xd6,0xe7,0x41,0x3d,0x1d,0x8e,0x17,0x01,0x5b, +0x98,0x12,0x94,0x12,0x9c,0x18,0xca,0x99,0x88,0x4b,0xfb,0x6e, +0x32,0x9f,0x96,0x34,0x3c,0x48,0x57,0xcf,0xfc,0x3a,0x09,0xde, +0x87,0x28,0x55,0xe5,0x6e,0xa0,0xdc,0x6a,0x1e,0xcd,0xf4,0x79, +0x2c,0x1c,0x58,0x0c,0x0b,0x68,0x7b,0x01,0x03,0xfb,0x17,0xc3, +0x3c,0x78,0x0b,0xe7,0xb1,0xf8,0x00,0x6f,0x93,0x65,0x38,0xf7, +0x25,0x0b,0x7b,0x97,0x91,0x97,0xf0,0xfa,0x32,0x8a,0x5e,0xaf, +0x8a,0xe7,0xd1,0x0e,0xc3,0x6a,0xac,0x13,0xcf,0xa3,0x4d,0xc3, +0xd5,0xc3,0x3f,0xb1,0xf8,0x01,0x2c,0x20,0x01,0x32,0x3f,0x85, +0x8f,0xa5,0x7f,0xab,0x6f,0x8b,0x47,0x33,0x8d,0x92,0x1a,0x59, +0x89,0xc9,0x65,0x99,0xab,0x85,0x93,0xad,0xad,0x13,0x75,0x56, +0x7d,0x75,0x75,0x5d,0x79,0x63,0x16,0x8d,0x92,0x24,0x13,0xf9, +0x56,0x13,0xdd,0xc3,0xda,0xf4,0xe2,0xd5,0xbe,0x8e,0x91,0xc6, +0x9b,0x5c,0xbc,0x75,0xac,0x95,0x78,0x2a,0x8e,0xb7,0xe5,0x09, +0x35,0x99,0x08,0xd6,0xdd,0xcc,0x17,0xd3,0x1e,0xdc,0x3a,0x4d, +0x75,0x17,0xa8,0x57,0xf5,0x96,0x8d,0x94,0x5c,0xe3,0x84,0x53, +0x68,0x48,0x5c,0xcb,0x2d,0xab,0xad,0x8a,0x1d,0x1d,0xf9,0x66, +0xef,0x56,0xe7,0x2a,0x57,0x0e,0xe5,0x4e,0xc4,0x28,0x37,0xb4, +0x5f,0x0d,0x4e,0x31,0x75,0x99,0x59,0xf5,0xea,0x43,0xe2,0xa9, +0xf5,0x07,0x70,0xd7,0xcc,0x19,0xb7,0x2f,0xf4,0x59,0x8d,0x30, +0x12,0x20,0x77,0x91,0xdb,0x59,0xb7,0xbb,0xf1,0x0d,0x2d,0xd5, +0x7d,0x97,0xfb,0x39,0x78,0x16,0x45,0x6a,0xed,0x1a,0x8d,0x2a, +0x14,0x6d,0x65,0xbc,0x4b,0x97,0x6d,0x9f,0xb8,0xed,0xe2,0x69, +0xb4,0xa1,0x4c,0xd3,0xc8,0x6c,0x72,0x79,0x97,0x14,0xde,0x63, +0x95,0xaf,0xc9,0xc9,0x1a,0x9c,0xf3,0x9c,0x85,0xd2,0x35,0x04, +0x99,0xe7,0xc0,0x30,0xb0,0x93,0xb6,0xd8,0xe7,0xc0,0x8a,0x33, +0x05,0x99,0xe2,0xb1,0xb5,0x7b,0xa6,0x8f,0xad,0x5d,0xf3,0xef, +0x63,0x6b,0xf3,0xfa,0xa7,0x18,0x23,0xea,0xa5,0x53,0xc2,0x59, +0x8a,0xf1,0xbb,0xdb,0x58,0x08,0xd7,0xc6,0x70,0xd6,0x02,0x77, +0xea,0xc2,0x36,0x36,0x12,0xed,0x64,0x94,0xcb,0xbe,0x8f,0x3b, +0x38,0x90,0x29,0x37,0x61,0xd2,0x48,0x0f,0xbc,0x64,0x9b,0x8d, +0xe0,0x3d,0xd8,0xd9,0x0d,0xcb,0x28,0xc8,0xd3,0x54,0x8e,0xc7, +0x93,0xad,0xa8,0x0a,0xaf,0xe3,0xc1,0xba,0x2b,0x3c,0x15,0x32, +0xbb,0xe5,0xa0,0x1e,0x49,0x41,0x7e,0xca,0x11,0xae,0x10,0xdc, +0x0e,0x1e,0xb0,0x9d,0xed,0x59,0x4c,0x1b,0xde,0xb4,0x21,0xbc, +0x89,0x27,0x89,0xef,0x55,0x8f,0xeb,0xee,0x5d,0x16,0x3e,0x7c, +0x85,0x41,0xa9,0xce,0xe5,0x13,0xdc,0x54,0xf6,0x77,0xe4,0x2e, +0xcc,0x39,0xc4,0xc2,0xc6,0xc5,0x77,0x81,0x3b,0xc4,0xd6,0xe2, +0x3f,0x09,0xe4,0x2a,0xe5,0x98,0xcb,0x82,0x29,0x6c,0x24,0xa8, +0x7e,0x0d,0xd4,0x99,0x91,0x93,0xe4,0x1a,0x2c,0x3f,0xc9,0xa2, +0xdc,0x82,0x1c,0x43,0xf5,0x9b,0x2c,0x98,0x2c,0x86,0xe5,0xc7, +0xc4,0x0d,0x4b,0xda,0xd6,0x12,0x99,0xd0,0xd0,0xcb,0x2a,0xf7, +0x61,0x1a,0x1d,0xf8,0x5e,0x3a,0xf0,0x82,0xe5,0xe4,0x6a,0xe2, +0x5d,0xe9,0x55,0xea,0x5b,0x50,0x54,0x54,0x5e,0x9d,0x5f,0x66, +0x92,0xc3,0xfb,0xbb,0x3b,0xda,0x38,0x3a,0xd7,0x3b,0x54,0x39, +0x95,0xd9,0xd3,0x0c,0x2c,0xa5,0xef,0x7b,0x96,0xd1,0xf7,0x0b, +0x2b,0xaa,0x0a,0xca,0x65,0xb9,0xbc,0xaf,0x9b,0x93,0xad,0x93, +0x73,0x9d,0x43,0xb5,0x7d,0xa9,0x23,0x07,0x05,0x65,0xc4,0xbb, +0xc2,0x9d,0xbe,0x5f,0x38,0xf3,0xf9,0x5c,0xde,0xcf,0xcd,0x91, +0xbe,0x5f,0xef,0x58,0x63,0x5f,0xe6,0xc4,0x4d,0x91,0x68,0xd2, +0x38,0x50,0x33,0x56,0x79,0xcb,0xbc,0x8c,0xf7,0xd6,0xf7,0x30, +0x71,0xa5,0xe9,0xe8,0xd5,0x3e,0x23,0x9c,0x8c,0xca,0x8c,0x2f, +0x1b,0x3a,0x5b,0xdb,0xdb,0xdb,0xb8,0x50,0x0a,0xd7,0x50,0x55, +0x5b,0x53,0xd9,0x20,0x1e,0xb1,0x94,0x64,0x6a,0xb6,0xcd,0x48, +0xf7,0x90,0x08,0x39,0x37,0xfa,0x3b,0x87,0x9a,0x68,0x30,0xd9, +0xc4,0x5a,0x9a,0x8b,0x42,0xdd,0xdb,0xe2,0xe8,0x12,0x23,0x31, +0x1f,0x7b,0x99,0x2f,0x7b,0x46,0x28,0xe4,0x6c,0x08,0x84,0xc5, +0x16,0x30,0x57,0x1d,0x66,0x2d,0xc6,0x3e,0xe1,0x6b,0xe8,0x63, +0x95,0xd5,0x98,0x44,0xc0,0x4e,0xf0,0x43,0x3b,0x56,0xb9,0x25, +0x89,0x5c,0xc9,0xbb,0x56,0x3c,0x5a,0xd6,0xef,0xd7,0xe3,0xd3, +0x14,0x50,0x52,0xc7,0x3b,0xe5,0x58,0xe7,0x59,0xe6,0x37,0x17, +0xd4,0x17,0x55,0x14,0x3a,0x57,0xf1,0x0e,0x9e,0x96,0x5e,0xa6, +0x3e,0xfa,0x85,0xfa,0x97,0x4d,0xb3,0xfd,0xed,0xf8,0xa6,0xf0, +0xb6,0xe0,0xb6,0x20,0x33,0x7f,0xe3,0x40,0xe3,0x50,0xee,0x27, +0xe5,0xbb,0xc4,0x21,0x42,0x1e,0x2e,0x8f,0xe4,0xe0,0xaa,0x21, +0x3e,0x60,0xfd,0xce,0xf9,0x9f,0x0f,0x3c,0x9f,0x62,0xca,0xdf, +0x4d,0x87,0x57,0x8a,0xaf,0x5c,0xe6,0x7e,0x86,0x07,0xc4,0x10, +0x3f,0x63,0xa4,0xd1,0xa9,0xa6,0xdf,0x66,0xc0,0xa2,0x92,0x47, +0x65,0x2a,0xa7,0xbb,0x64,0xc1,0xc7,0x83,0x4f,0x84,0xab,0x40, +0xc7,0x62,0xcb,0x9b,0x7e,0x7f,0x80,0x44,0xb5,0xcc,0xd0,0x83, +0xc5,0x37,0x4b,0x91,0x8c,0xef,0x57,0x2b,0x72,0x6f,0x4f,0x8d, +0xef,0x48,0x03,0x35,0xde,0xbc,0x40,0xa2,0xcc,0x86,0x59,0xa4, +0x25,0xb4,0xd3,0xaf,0xde,0xb7,0xb0,0x91,0xb7,0x29,0xb6,0xc9, +0x31,0xcf,0xe1,0xe0,0xbf,0xb4,0x88,0x75,0x91,0xbc,0x40,0x91, +0xe3,0x67,0xc7,0xb7,0x86,0x0e,0x78,0xd5,0xfb,0x72,0xca,0x79, +0xfa,0xa4,0x25,0xa4,0xdf,0xa7,0xc1,0xbb,0xa8,0x89,0xb7,0x2e, +0x32,0xbb,0x4c,0x7f,0x4f,0x58,0x78,0x82,0x58,0x16,0x2b,0x0a, +0xcc,0x72,0x7c,0x6d,0xf8,0xf6,0xd0,0x7e,0x9f,0x46,0x2f,0x5a, +0x08,0x9e,0x08,0xa6,0x44,0x69,0x00,0x32,0x58,0xae,0x60,0x70, +0xf6,0xb9,0x38,0x5b,0x78,0x25,0x5e,0x12,0xce,0x9a,0x66,0x05, +0xd1,0x6c,0x3a,0xce,0x54,0x67,0x64,0x56,0xa9,0x97,0xb1,0x66, +0xc9,0x12,0x2b,0xdc,0xce,0xfa,0x9e,0x49,0x28,0x52,0xcf,0x60, +0x41,0x35,0xe1,0x62,0x03,0xaa,0x9c,0x93,0xb4,0x81,0x25,0x1b, +0x1d,0x18,0xea,0x17,0x14,0xdc,0x15,0xc2,0x17,0x15,0xe7,0x56, +0xa6,0x57,0x72,0x55,0x98,0xd5,0x0d,0x51,0x1d,0x18,0xd5,0xae, +0x4b,0x73,0x43,0x86,0xa9,0x2c,0x5a,0xc7,0xe0,0x87,0x56,0xb8, +0x50,0xad,0xdb,0xbe,0x1d,0x16,0xa5,0xc1,0x7b,0xb1,0xe0,0xa5, +0x22,0x18,0x30,0x02,0xf3,0x15,0x19,0xc1,0xed,0xff,0x9d,0x1f, +0x4b,0xf4,0x40,0x85,0xe6,0x87,0xb5,0x02,0x97,0xaf,0xc0,0x8d, +0x1c,0x84,0x29,0xd7,0xe0,0x60,0x3f,0x64,0x7d,0xc6,0x9e,0xb5, +0xf4,0x0c,0xb2,0xf6,0x2f,0x72,0xe4,0x27,0x2a,0x4b,0xcb,0xe3, +0x87,0xb9,0x3e,0x07,0xc6,0x3e,0x2b,0xa0,0x4d,0xed,0x06,0xbe, +0xb6,0x8f,0x49,0xb5,0xa6,0xc2,0xae,0x2c,0x2b,0xad,0x24,0x4e, +0xbd,0x52,0x0e,0xaf,0xc2,0x47,0xcd,0x62,0x1a,0x9d,0x9c,0x4e, +0xa3,0x13,0xad,0xf8,0x0e,0x2c,0xc4,0xfd,0x62,0x1a,0xcd,0x85, +0x5d,0x72,0x58,0x1a,0x09,0x76,0x1c,0xac,0x80,0x37,0x88,0xff, +0x35,0xcf,0x6b,0xee,0xdd,0x62,0xc6,0x18,0x16,0x69,0xd3,0x8c, +0xc1,0x97,0xe8,0x49,0xf0,0x57,0x9c,0x07,0xbf,0x32,0xc6,0x8f, +0x89,0x05,0x5e,0xa0,0x96,0xf9,0xa2,0x2d,0xf1,0x8d,0x49,0x28, +0x50,0x2f,0x7b,0x64,0xc8,0x62,0xba,0x26,0xb1,0x7e,0xb2,0xa2, +0xfb,0xc5,0x57,0xcd,0xb4,0x62,0x84,0xd2,0x8a,0xe1,0x6f,0xe0, +0x67,0xe2,0x65,0x1e,0xd8,0xe9,0xdb,0xee,0x39,0xc3,0x42,0x4a, +0x0c,0xf3,0x0d,0x3c,0x6c,0x5c,0x1d,0x1c,0x45,0x16,0x52,0x55, +0x51,0x56,0x59,0x42,0x59,0x48,0x8a,0x22,0xc1,0xcc,0x7a,0xa7, +0xb9,0x9e,0xa6,0xc8,0x42,0x86,0x7a,0x1a,0xfb,0x6b,0xae,0x70, +0x71,0xf6,0xb1,0xb6,0xd6,0x94,0x85,0xf8,0x59,0xe9,0xa8,0x59, +0x88,0x24,0xa4,0x8d,0xf9,0xa4,0x53,0x24,0x21,0x1b,0x43,0xe0, +0x4d,0x7b,0x5a,0x31,0x6a,0x06,0x2b,0x26,0xca,0xee,0x72,0xe0, +0xaf,0x1c,0x24,0x31,0x69,0x31,0x09,0x91,0x91,0x91,0x11,0xfc, +0x99,0x7b,0xf0,0x1a,0x14,0xe2,0x6b,0x3f,0x80,0xfa,0x00,0xaa, +0xff,0x60,0xb4,0x16,0x97,0x1b,0xc2,0xf2,0xb5,0xb8,0x08,0x0b, +0xff,0x60,0x02,0x0f,0x5a,0x6c,0xdf,0xb2,0xb9,0x4c,0x9f,0xff, +0xe6,0x59,0xf5,0xf5,0x14,0x5a,0xcc,0xf1,0xab,0x01,0x2a,0x6f, +0x13,0xe3,0x3e,0x8e,0x3f,0xab,0xf6,0x77,0x7c,0xb3,0xbe,0x43, +0x52,0x24,0x9c,0x20,0x3f,0xb7,0xb4,0x8e,0xa5,0x7f,0xce,0xc1, +0x2c,0xe6,0xa2,0xc3,0x79,0xbb,0xb3,0xde,0x9c,0xff,0xb9,0xa8, +0x68,0xc7,0x25,0x27,0x98,0x0c,0x39,0xad,0x0e,0x83,0x85,0x99, +0x2d,0xa9,0xea,0xc9,0x55,0x97,0x5a,0xe2,0x7e,0xe0,0xf0,0x0b, +0x53,0x78,0x95,0x89,0xd2,0x75,0xb5,0xd8,0xe9,0xc0,0xa1,0xbe, +0x06,0xc1,0x3d,0x47,0x61,0x0f,0x0b,0x86,0xb8,0x87,0x1c,0x86, +0x3d,0x77,0x18,0xe1,0x5d,0xe5,0x29,0x22,0x9c,0xc4,0x36,0xe5, +0x49,0x16,0xa2,0x04,0x55,0xf2,0x11,0x6a,0x3e,0x12,0xcf,0x05, +0x7d,0x93,0xec,0x46,0xcd,0xc7,0x62,0xeb,0x2d,0xb2,0x0d,0x35, +0xbf,0x62,0x61,0x16,0xea,0x92,0x4e,0x87,0x6e,0xcb,0x16,0xf3, +0xfa,0x36,0xde,0xa6,0xc5,0xac,0xd9,0xa4,0x96,0xc3,0x2c,0xdc, +0x41,0x46,0x2b,0x86,0xda,0x9b,0xba,0xed,0xeb,0x78,0x6b,0x0b, +0x53,0x5b,0x3d,0x0f,0x1a,0x93,0xcb,0x27,0xef,0x13,0xd4,0x59, +0xa9,0xfb,0x33,0x7b,0x01,0xeb,0xec,0x51,0x77,0x0b,0xbe,0xd7, +0x6a,0xca,0xff,0x04,0x9b,0x9b,0xc1,0x35,0x0e,0x5a,0xb8,0x7f, +0x30,0x18,0x75,0x06,0xf7,0x46,0x2c,0x55,0xd3,0x39,0x1d,0x11, +0x2a,0x5f,0xa2,0xc7,0x64,0xe9,0x49,0x86,0x99,0x4f,0x4a,0xab, +0xbe,0x48,0x51,0xcf,0x80,0x37,0x12,0x60,0x13,0x8c,0xaa,0xe2, +0x36,0xd0,0x61,0xf0,0x43,0xaa,0xc4,0x5c,0x43,0x9d,0x42,0x1d, +0x43,0x39,0x28,0xfb,0x71,0x78,0x35,0xc4,0xbc,0x18,0xc6,0x7c, +0xe9,0x4b,0x8c,0x59,0x25,0xfd,0x09,0x7b,0x59,0x87,0x70,0xfb, +0x70,0xdb,0xc8,0x2c,0x3d,0xfe,0xe7,0x8a,0x6f,0x1a,0xee,0x35, +0x71,0xa0,0x44,0x7f,0x32,0xfa,0x19,0xa8,0xec,0x19,0x9d,0xfc, +0x1c,0xe3,0x99,0xd1,0x29,0x23,0x32,0xf9,0x2e,0xa8,0x4c,0xbd, +0x4b,0xe1,0x2f,0x6b,0xf2,0x0b,0x62,0x8e,0x7a,0x87,0xf0,0xbd, +0xe5,0xc8,0x55,0x1b,0xf2,0xcd,0x6d,0x0d,0xdd,0x55,0xc3,0x9c, +0x72,0x62,0x74,0x72,0x07,0x5b,0x7e,0xbd,0xf8,0x61,0x3e,0xf5, +0xeb,0xad,0xa9,0x9b,0x64,0xfd,0x77,0x26,0x70,0xcc,0x1f,0xdc, +0x21,0xa8,0x9c,0x3f,0x3b,0x8a,0x41,0xee,0x92,0xb3,0x37,0x2e, +0xdc,0xba,0xab,0xfa,0x99,0xce,0x4e,0xf6,0xd0,0xa5,0xc3,0x09, +0xc7,0xd4,0xf0,0xb5,0x90,0x04,0x5d,0x78,0x2d,0xbb,0x08,0x43, +0x87,0xd0,0xf0,0x87,0xf5,0x2a,0x6d,0x96,0x5d,0xc9,0x09,0x63, +0x79,0xe0,0x22,0xee,0xbf,0x58,0x2d,0xec,0x21,0x6e,0x83,0xa6, +0x37,0xed,0x5a,0xcc,0xdd,0xf9,0x7a,0x8b,0xee,0x93,0x65,0xba, +0xdc,0xd4,0x2e,0x34,0x20,0x3f,0x0d,0xad,0x82,0xd8,0x3f,0x86, +0xb1,0x4a,0x0a,0x73,0x30,0xf6,0x3d,0xfd,0xdf,0x70,0x9c,0xb1, +0x0d,0xb3,0x0d,0xb7,0x89,0xcc,0xd4,0xe5,0x7f,0xab,0x7c,0xde, +0xf8,0x4d,0xdb,0xb9,0x41,0xde,0x36,0xd8,0x3a,0xd8,0x3a,0x84, +0x13,0x77,0xcd,0xdf,0x4c,0x94,0x3a,0xcc,0xe5,0x81,0x9c,0x81, +0xd4,0x6e,0x9d,0x4c,0x3e,0x70,0x85,0x01,0x92,0x23,0x6b,0xbb, +0x2d,0xf9,0x8a,0x96,0xd2,0xce,0xc2,0x2e,0x0e,0x76,0x28,0x5f, +0xe2,0x06,0x26,0x47,0x47,0x02,0x4b,0x98,0x8e,0xcb,0x05,0x9d, +0xea,0xc2,0x4f,0x70,0x86,0x9d,0x52,0x88,0xb3,0x04,0xaf,0x0c, +0x53,0x5d,0x16,0x0d,0xaf,0x8f,0xe0,0x0d,0x3d,0x4a,0x06,0xa2, +0x71,0xbe,0x14,0xe6,0x63,0x03,0x63,0x19,0x64,0x1e,0x22,0x0f, +0xcd,0xa2,0xc2,0x64,0x6e,0xe3,0x8b,0x8e,0xaf,0x7b,0x4f,0x0f, +0xf2,0xf6,0x81,0xb6,0x81,0xd6,0x41,0x9c,0x30,0x0e,0x2d,0xa4, +0x01,0x55,0x9b,0xf1,0x68,0x16,0xbe,0x3e,0x51,0xc0,0x87,0xc2, +0x02,0x1b,0x38,0x6e,0x03,0x4b,0x38,0xe5,0xeb,0x11,0x24,0x10, +0xd5,0x1c,0x50,0xed,0x14,0x2e,0x1c,0xb2,0xe1,0x6f,0x82,0x4a, +0x1d,0xac,0xcc,0x87,0xf7,0xa9,0x99,0xc6,0x61,0x64,0x4b,0xd3, +0xa1,0x0e,0xdd,0xde,0xfb,0x4f,0x06,0x7e,0xa9,0x86,0xd7,0xb8, +0x2e,0xb4,0x03,0x03,0x38,0xc1,0x46,0x5b,0x05,0xc8,0xfc,0x1d, +0x07,0xfc,0xf8,0xe2,0xae,0xc2,0x91,0xb4,0x01,0x7a,0xfd,0x1c, +0xcc,0xd2,0xa2,0x22,0xf4,0x1c,0x16,0xb1,0x68,0xe5,0x89,0x9b, +0x77,0xe3,0x3c,0xb5,0x5e,0xf3,0xc7,0xf0,0x56,0x1d,0xac,0x8a, +0x07,0x47,0x15,0xe1,0x0d,0xc6,0x73,0xad,0xf9,0xf6,0x63,0x87, +0x4e,0x5d,0x57,0x7c,0x62,0xff,0xc8,0xd8,0x8d,0x6f,0xda,0xd6, +0xbd,0xef,0xda,0x11,0x6d,0xc3,0x7d,0x8a,0x75,0x76,0x95,0xba, +0xfc,0xf3,0xe6,0x27,0xbd,0x37,0xc7,0xaf,0xe8,0x3f,0x94,0x3d, +0x37,0xe7,0x94,0x2f,0xa1,0x8a,0xb8,0x86,0x39,0x85,0x39,0x84, +0x71,0x50,0x02,0xb3,0x87,0x71,0x36,0xc4,0x00,0x3b,0x8c,0x5d, +0x62,0x4f,0x63,0x70,0xb6,0x14,0x66,0x63,0x17,0x6b,0x1b,0x66, +0x15,0x6e,0x11,0x41,0x3d,0x0c,0xb3,0x2a,0x7e,0xa8,0xbf,0xd7, +0xc8,0xc1,0x18,0xd5,0x74,0x78,0x9c,0xda,0x78,0x9c,0xca,0xf6, +0xdd,0x93,0xa7,0x48,0x5e,0x5b,0x66,0x57,0x7a,0xe7,0xa9,0x34, +0x51,0x16,0x19,0x07,0x51,0x59,0x74,0x74,0x2a,0xed,0xca,0x2d, +0x98,0x3c,0x7a,0x65,0x32,0x8d,0x99,0xda,0x82,0xf9,0x04,0x16, +0x0d,0xa3,0xb8,0x8f,0xc2,0x92,0x11,0x7c,0xa6,0x47,0xf5,0xdb, +0xc7,0xb8,0x58,0x0a,0x8b,0x71,0x98,0x91,0x87,0x99,0x86,0xc9, +0x22,0x32,0xa9,0x3b,0xdf,0xa8,0x84,0x57,0x1b,0x7f,0x6e,0x3b, +0x3b,0xc4,0x5b,0x06,0x9b,0x07,0xcb,0x69,0xc8,0xc6,0xc3,0x19, +0x02,0x97,0x60,0x12,0x2f,0xb1,0x38,0x89,0x5f,0x11,0x28,0xa3, +0xed,0x32,0x4a,0x2e,0xb4,0xe1,0x10,0xf1,0x3e,0xe7,0x75,0xde, +0xf3,0x1c,0x27,0xdc,0x7e,0x38,0xac,0x6c,0x97,0x7e,0xaa,0x44, +0xd6,0xe3,0xbc,0xc7,0x45,0xaf,0x0b,0x29,0xd4,0x50,0x2e,0x19, +0xd6,0x66,0xc3,0x92,0x1c,0x0e,0xf7,0x5f,0xa1,0x8e,0x2c,0xbf, +0x54,0x1a,0x5f,0x12,0xcf,0x29,0x7b,0x9e,0x10,0x03,0x7f,0xa3, +0x40,0xc3,0x60,0x0e,0x1a,0xe0,0xf5,0x61,0x7c,0x9d,0x1a,0xb4, +0x78,0x04,0x1f,0xe9,0xc1,0x12,0x6a,0xd0,0x1b,0x52,0x78,0x03, +0x47,0x58,0x79,0x98,0x3c,0xdc,0x6c,0xda,0xa0,0x45,0x55,0xc0, +0x35,0xc2,0xdc,0x1e,0x4e,0x58,0x25,0x9c,0x24,0x58,0x00,0xeb, +0xa1,0x80,0x41,0xbb,0x39,0x94,0x84,0x17,0x88,0x24,0xdc,0x6d, +0x0e,0x14,0xd0,0xf0,0xd9,0x1a,0xb9,0x3e,0x6a,0x4b,0x0c,0x1d, +0x48,0xb5,0x58,0xe2,0x75,0x3d,0x92,0x72,0xa0,0x7a,0x55,0xb8, +0xad,0x4c,0x17,0xf7,0xd1,0x4c,0x71,0xc4,0x6d,0x9b,0x96,0xa9, +0x35,0x2b,0x24,0x3f,0x82,0xa4,0x05,0xb4,0xa1,0x50,0x15,0x52, +0x84,0x55,0x98,0xc5,0x62,0x59,0x2a,0x6e,0x6d,0xd8,0xad,0x56, +0x68,0x3c,0x90,0x9a,0x34,0x7a,0x19,0x74,0x79,0xeb,0x12,0xc9, +0x14,0x13,0x4f,0xdc,0x43,0x5d,0xc2,0x9c,0xc4,0x7c,0x7d,0x36, +0xbc,0x11,0x62,0x7e,0x1c,0xc6,0x54,0xe9,0x0b,0x8c,0x59,0x2f, +0xfd,0x9e,0xe6,0xab,0x53,0x38,0xcd,0x58,0x31,0x5f,0x9f,0x57, +0x7c,0x59,0x7f,0x8b,0xe6,0x6b,0x85,0xb8,0x04,0x74,0x1e,0xbe, +0xa6,0x74,0xe8,0x17,0xb6,0xdd,0x56,0x46,0xf5,0x0b,0x51,0xf7, +0xf1,0xef,0x3a,0x6c,0x8a,0x4c,0x32,0xc6,0x54,0xa7,0x65,0x37, +0xaa,0x0b,0x6f,0xe3,0x5b,0x94,0xcd,0xae,0xe8,0xc3,0xbf,0x1b, +0xb3,0x8b,0x26,0xed,0x85,0x30,0xf2,0xc9,0x78,0xdf,0xad,0x86, +0xc7,0x5c,0x07,0xde,0x60,0xb3,0x4b,0x32,0xcb,0xd2,0xca,0xb5, +0x53,0x78,0xab,0x55,0x07,0xd6,0x23,0x27,0x4e,0xea,0x77,0x54, +0xb6,0xd4,0xd4,0x35,0x34,0x9b,0x75,0x28,0x06,0xad,0x0e,0x9a, +0xae,0xb3,0xc0,0x05,0xd3,0xf3,0xe7,0x8b,0x3b,0x5e,0x74,0x3f, +0x1a,0xba,0x2f,0xfb,0x46,0xfe,0xbb,0x38,0x7f,0xbe,0xa6,0x71, +0x57,0xf3,0x91,0x36,0x4e,0x19,0xa0,0xfd,0x67,0xa6,0x7c,0x0c, +0x6f,0x8d,0xe0,0x03,0x5a,0xc3,0xa8,0x27,0x5f,0x97,0x52,0xf2, +0x36,0xcc,0x98,0x87,0x29,0xc2,0x4c,0xa7,0x3d,0xb9,0xa0,0xf2, +0xf7,0x86,0xa7,0x2d,0xe7,0x86,0x78,0xbb,0x10,0x9b,0x50,0x2b, +0xda,0xb9,0x6a,0xa1,0x60,0x7a,0x3a,0xbc,0x82,0x71,0xd1,0x31, +0x37,0x38,0x25,0xd3,0x69,0x33,0xe9,0xb2,0xea,0xe7,0x3c,0xa7, +0xa7,0xc3,0xef,0x4d,0x4f,0x87,0xeb,0x8a,0xd3,0xe1,0x6f,0xcc, +0x4c,0x87,0xdf,0x13,0xa7,0xc3,0xff,0x79,0x72,0xb2,0x95,0x28, +0x7f,0x36,0x12,0x9f,0xf3,0xd7,0xc7,0x28,0xd0,0xdf,0x8d,0x07, +0x95,0x1a,0xc3,0xc3,0x82,0x96,0x74,0x44,0xd0,0xc0,0x83,0x8f, +0xc1,0x08,0xa2,0xd0,0xe8,0x53,0x30,0x63,0xa6,0xfc,0xf0,0xde, +0x0c,0x5a,0xfc,0x3a,0x8c,0x97,0xa5,0x7f,0x60,0xec,0x4a,0xfd, +0x9f,0x71,0x82,0xb1,0x9f,0xc1,0x3b,0x5d,0xfe,0x97,0xca,0xef, +0x1b,0x3e,0x17,0xc1,0xc2,0x3e,0xd8,0x2e,0xc4,0x36,0x84,0x13, +0xde,0x06,0x7b,0x22,0x2c,0xfd,0xbb,0x72,0x29,0x8b,0x8d,0x40, +0xc3,0x75,0x09,0xbe,0x83,0x4b,0x18,0xc1,0x7f,0x31,0xaa,0xc3, +0x3b,0x94,0x2a,0x2a,0x6d,0xc5,0x1d,0xf7,0x67,0x81,0x3e,0xce, +0x62,0x87,0x16,0xd3,0x86,0x11,0x6d,0x28,0xb5,0x70,0x9b,0xb8, +0xe6,0x5d,0x1f,0x25,0xe2,0x45,0x09,0xbd,0x28,0xa1,0x3e,0x4e, +0x84,0xb7,0xc9,0xcd,0x8e,0x89,0x81,0xae,0x61,0xcb,0x26,0x5e, +0x61,0x20,0x35,0x3e,0x61,0x6e,0x3f,0xe8,0x37,0x1a,0x31,0xce, +0xc1,0x39,0xe1,0x2d,0xf4,0x7f,0xa1,0xbd,0x02,0xed,0xa7,0xdc, +0x19,0xf7,0xb3,0xae,0x67,0x5c,0xce,0xa6,0xeb,0xf1,0xb0,0xb4, +0x04,0x5e,0x29,0x82,0x45,0xf5,0x31,0x43,0xfc,0x3e,0xbf,0xa3, +0x41,0x07,0x42,0x38,0xf8,0x8a,0xb2,0x81,0x32,0xdc,0xf8,0x03, +0x6e,0x15,0xf7,0x32,0xa8,0x1d,0xe0,0xb7,0x76,0x9e,0xea,0x93, +0x53,0xb8,0xdd,0x3a,0x4a,0x1c,0x42,0xed,0x42,0xac,0xa9,0x17, +0xeb,0xff,0x31,0xfc,0x3e,0x75,0xfc,0xc2,0x11,0x1c,0xd3,0x83, +0xbf,0x51,0xc7,0xcf,0x95,0xc2,0x5c,0x1a,0xc2,0x56,0x61,0x16, +0x61,0x8a,0xe9,0x8c,0x65,0x2a,0x5f,0x34,0x7c,0xd1,0xc2,0x09, +0xa1,0x42,0x33,0x59,0xa6,0x9c,0xf7,0x92,0x15,0xe6,0xe1,0x56, +0x82,0x12,0xe5,0x3c,0xa0,0x96,0x0a,0xff,0x82,0x7a,0xe2,0x6b, +0xed,0xeb,0xe8,0xe9,0x16,0x50,0x1b,0x50,0x19,0x5c,0x6c,0xe9, +0xce,0x97,0xd8,0x55,0x1a,0x96,0xeb,0x59,0x05,0xc9,0x83,0x15, +0xd4,0x8a,0x6a,0x70,0x11,0x76,0xe0,0xac,0xe7,0xfa,0x6b,0x96, +0x4e,0x59,0xb1,0xfe,0xa7,0xfd,0xcf,0x04,0x9e,0xcd,0x92,0xf2, +0x4f,0x4b,0x7e,0xa9,0xbb,0x57,0x97,0xe5,0x96,0xe1,0x96,0xee, +0xde,0x51,0xc3,0x07,0x76,0xf8,0x74,0xfb,0x74,0x54,0xd4,0x55, +0xb5,0x16,0xb7,0x72,0x70,0x1c,0xbc,0x49,0xc7,0x8f,0xb5,0x2f, +0x72,0x1e,0x71,0xdd,0x98,0x3d,0xf5,0xaf,0x91,0xc9,0x2b,0xb0, +0x9c,0x0d,0xde,0xeb,0xfa,0xa1,0xe9,0xfb,0xdc,0xc4,0xe1,0xee, +0xed,0xeb,0x55,0x8f,0x07,0xfa,0xe8,0xaa,0x19,0x31,0x59,0x3a, +0x92,0x21,0xe6,0x69,0x75,0xff,0x77,0x30,0xdb,0xec,0x89,0xf6, +0x6d,0x75,0x65,0x37,0x5e,0x26,0x9e,0x61,0x6e,0x61,0x2e,0x14, +0x90,0xca,0xbe,0x1e,0xda,0x02,0x31,0xcf,0x86,0xf1,0x82,0xf4, +0x07,0x8c,0xd9,0xa2,0xff,0x35,0xf6,0xb3,0x2e,0xe1,0x4e,0x11, +0x8e,0x62,0xfc,0x3f,0xab,0x78,0x52,0x7f,0x8d,0x22,0x51,0xae, +0x50,0x43,0x90,0x50,0x1f,0x11,0x16,0xb6,0x52,0x01,0x4d,0x47, +0x6d,0x2b,0xbc,0x43,0x63,0xe5,0x1d,0x61,0x0b,0x31,0xca,0x94, +0xec,0xc2,0x7d,0xac,0x47,0x4c,0x52,0xb1,0xfa,0x75,0x16,0x76, +0x67,0x9e,0xef,0xc1,0x1d,0xe1,0x92,0xbf,0xc3,0x69,0x36,0xca, +0x2e,0xd4,0x21,0xd8,0xa1,0x2f,0x90,0xcf,0x6f,0xcb,0xe9,0x4c, +0xeb,0xe2,0x5a,0xb1,0xfe,0x01,0xa4,0xf4,0x60,0xca,0x1d,0x1d, +0x34,0x41,0x2f,0xd4,0x60,0x31,0xc0,0x0f,0x37,0x6c,0x11,0x9f, +0x7f,0xb0,0x91,0xfc,0x04,0xcb,0x8a,0x41,0x43,0x7c,0x5a,0x78, +0x1e,0x7c,0xb8,0x92,0xc5,0x79,0xd1,0xf1,0xc6,0xc0,0xa4,0x4a, +0x8e,0xb3,0xfa,0x79,0xfe,0x57,0x44,0xa6,0xd8,0x98,0x9d,0xd5, +0xac,0xae,0x7c,0x8a,0x2b,0x89,0x47,0xb8,0x5b,0x98,0x53,0x38, +0xc5,0xd3,0x97,0xc3,0xcb,0x28,0x9a,0x52,0x50,0x6d,0x90,0x02, +0x8b,0x31,0x4b,0x69,0x14,0x76,0xb3,0x76,0x61,0xd6,0x11,0x56, +0xe2,0xc8,0xbc,0xac,0x78,0x56,0x7f,0xbd,0x9e,0x83,0xd8,0xab, +0x04,0x5f,0xb5,0x3c,0x84,0x12,0x7d,0xb5,0x6a,0x23,0x09,0x90, +0x6b,0x03,0xdf,0x80,0x9a,0x6a,0xbd,0x0e,0x0b,0xdf,0x60,0x22, +0xd9,0xc8,0xf8,0xc4,0x24,0x17,0xa9,0x83,0x97,0x2e,0xa5,0x88, +0x86,0x79,0x01,0x23,0x6a,0xbf,0x30,0x2d,0xd9,0xd9,0x4d,0xea, +0xb4,0xbf,0x46,0x39,0x92,0x45,0x93,0x7f,0x4c,0x2e,0x24,0xf8, +0x31,0x53,0x26,0x2e,0xde,0x6f,0x1a,0x50,0xb6,0x1a,0x82,0x8c, +0xf1,0x10,0x17,0xef,0xbf,0x67,0x08,0x8b,0x19,0x3b,0xdc,0x2c, +0xc1,0x77,0x0d,0x84,0xcf,0x07,0xb7,0x30,0x53,0x7f,0xa3,0x44, +0x7f,0xce,0x30,0xce,0x81,0x58,0x98,0x3b,0x8c,0x7d,0x52,0x4a, +0x0c,0x63,0x71,0x8e,0x58,0x49,0x47,0x19,0x2b,0x0a,0xf1,0x96, +0xd3,0x01,0xf3,0x6a,0xe5,0x3f,0x1a,0x9f,0x77,0xd0,0xc4,0xb0, +0x0c,0xb2,0xa0,0x85,0x8e,0x13,0x3e,0x11,0x11,0x66,0x33,0x46, +0xb3,0x0d,0x40,0xbf,0x6c,0xee,0xf4,0xa2,0xff,0x17,0xd3,0x8b, +0xfe,0x5d,0xc4,0x45,0xff,0xeb,0x67,0x16,0xfd,0xbf,0x10,0x17, +0xfd,0xc3,0xdd,0xc9,0xa3,0x44,0x0f,0x8e,0xe3,0x56,0x3c,0x2c, +0x85,0xc3,0x7b,0xd9,0xc0,0x8f,0x03,0x2f,0x04,0xab,0xe9,0xfb, +0x1f,0x0e,0xd2,0x15,0x2b,0xf4,0x40,0xfa,0x58,0x76,0x5f,0x41, +0x20,0xce,0x35,0x38,0x89,0x73,0x8e,0xd7,0x99,0xf2,0xb0,0xfe, +0xd9,0x55,0x78,0x05,0xdc,0x54,0x85,0x18,0x1d,0xf1,0x64,0xab, +0xf3,0x4a,0x57,0x02,0x9a,0x20,0x1b,0x46,0x19,0x1c,0x00,0xfb, +0x11,0xb4,0x87,0x0f,0xb4,0xff,0x6b,0xf9,0x38,0x44,0x82,0xd3, +0x30,0x3b,0xd5,0x23,0xa4,0x93,0xff,0x17,0x12,0xfe,0x50,0xf1, +0x45,0xfd,0xd5,0x06,0x6a,0xb0,0x67,0x98,0x7b,0xb8,0x18,0x37, +0xa5,0xdf,0x0f,0xaf,0xff,0x13,0x37,0x69,0x1c,0x28,0x64,0xc4, +0x01,0x5e,0x35,0x85,0xd7,0xad,0xbe,0x36,0xf6,0xe4,0x4b,0x0c, +0xcb,0x8e,0x95,0x1c,0xd5,0x0c,0xdf,0x1f,0xbe,0x37,0xaa,0xec, +0x59,0x05,0xbc,0x55,0x00,0x12,0x0e,0x82,0x86,0xd1,0x84,0x62, +0xc7,0x91,0x61,0x3c,0x02,0x87,0x75,0xf0,0x30,0xee,0x96,0xc2, +0x6e,0x34,0x42,0x6d,0x29,0xac,0x63,0xfc,0x91,0x75,0xc5,0xb7, +0x5c,0x56,0x7b,0x9d,0xf7,0x3e,0xef,0x75,0x21,0x99,0x82,0x19, +0xc9,0x04,0xf5,0xc2,0x17,0x85,0xa9,0x9e,0x29,0x9e,0xc9,0x5e, +0x9c,0x72,0xc1,0x64,0x13,0x91,0x37,0xeb,0x35,0xe9,0x57,0x3a, +0x99,0xf0,0x23,0x4e,0x7d,0xf6,0x3d,0xd6,0x1c,0x9e,0x52,0x5a, +0x11,0xfb,0x60,0x5b,0x11,0x5a,0xa0,0xe2,0xc7,0xa1,0x19,0xe2, +0x95,0x37,0x4d,0xbc,0xf4,0x7f,0xc2,0x3e,0x56,0x04,0x22,0xbb, +0x19,0xe2,0xf5,0x1d,0x05,0x22,0x0e,0x74,0xe0,0x06,0x31,0x69, +0x3d,0xde,0xa5,0x55,0xe3,0x68,0xc2,0x8f,0x3b,0x4c,0x58,0xf4, +0x8b,0x07,0xa6,0xcf,0x23,0x0e,0xf8,0xaa,0x0c,0xb9,0x83,0x2b, +0xfb,0xad,0xf8,0x4f,0x5e,0x0e,0x83,0x6a,0xcd,0xef,0xdc,0xa2, +0xc9,0x05,0x70,0x82,0xa0,0x23,0x2c,0x05,0xe3,0x61,0x34,0x06, +0x55,0xb0,0x81,0x36,0xcc,0xfd,0xaf,0x59,0x23,0x60,0x02,0x8e, +0x4c,0xe3,0xe4,0x1e,0x22,0x05,0x05,0x1d,0x14,0x85,0x14,0x32, +0xa1,0x85,0x9d,0xb2,0x57,0xce,0x26,0xcf,0x87,0xd7,0x40,0xcc, +0x2f,0xc3,0x98,0x23,0xfd,0x0d,0x63,0xd6,0x48,0x9f,0x63,0x2f, +0xe3,0x40,0x5d,0x38,0x6d,0xc3,0x4f,0x94,0xfc,0x3d,0x6c,0xa6, +0x2e,0x74,0x0e,0x71,0x0c,0xb5,0xa7,0xb8,0x82,0xc2,0xe7,0x04, +0x4f,0xe0,0x2a,0x5a,0x3a,0x85,0x0d,0x53,0xaa,0x64,0xe8,0x7e, +0xdd,0xb7,0x79,0x7f,0xd0,0x82,0x31,0xac,0x4f,0xe9,0x51,0xe8, +0x6e,0x8f,0xc3,0xd6,0x3a,0x0e,0x43,0x1e,0x13,0x81,0xd7,0x4c, +0xbc,0xf9,0xcb,0x07,0xab,0x8e,0xb4,0x68,0x2a,0x8c,0x75,0xad, +0x0e,0x38,0x97,0x1b,0xf3,0xf7,0x6b,0xc6,0xdb,0xba,0xfb,0x5b, +0x8c,0xbb,0xcd,0x07,0x9d,0x2b,0x07,0x78,0xa3,0x4a,0x45,0x8b, +0x4d,0xb7,0xf8,0x70,0xda,0x1f,0xe4,0x09,0x04,0xc3,0x53,0x0c, +0xfe,0x14,0x2c,0x2f,0x8f,0xc0,0x71,0xe5,0x0d,0x3c,0x3e,0xec, +0x07,0x06,0x7b,0x69,0xba,0x3d,0x05,0xaf,0x5d,0xd8,0x68,0x0c, +0x8d,0xb8,0x78,0x14,0x16,0x43,0x43,0x1f,0x3b,0x25,0xf9,0x92, +0x3a,0xd0,0x2e,0xd8,0x86,0x9a,0xd3,0xf8,0x17,0x92,0x17,0x50, +0x07,0xc6,0x8a,0x0e,0x9c,0xa0,0xcc,0xd5,0x4e,0x34,0x5e,0x44, +0xf2,0xef,0x1a,0xbe,0x68,0xe7,0xbe,0x14,0xfe,0x49,0x04,0xb3, +0x15,0x68,0x79,0x53,0xf7,0x18,0x1a,0x30,0x60,0x80,0x05,0x04, +0x77,0x7c,0x07,0x3b,0x18,0x08,0xde,0x40,0x50,0xe3,0x3b,0xd0, +0x60,0x94,0xef,0xe2,0x52,0x02,0x3b,0x56,0x23,0xbd,0xe8,0xfd, +0x23,0x01,0x8d,0xd5,0xa8,0xc1,0x2c,0xea,0x17,0xd4,0x09,0x2c, +0x4d,0x86,0x0f,0xd3,0x81,0xcf,0x3b,0xd7,0xcd,0x1b,0x9c,0xd6, +0x3b,0xa3,0x7b,0x96,0xa3,0xa9,0xbe,0xad,0x8f,0xb2,0x68,0x06, +0x0e,0x0c,0x28,0xd7,0x1b,0xc2,0x61,0x64,0x70,0x9b,0x31,0x6c, +0xc3,0xd7,0x58,0xcd,0x73,0xa7,0xce,0x69,0x5f,0xe0,0x04,0x1f, +0xd0,0x26,0xc6,0xb0,0x13,0x25,0xa8,0x61,0x28,0xee,0xc7,0x2f, +0xa7,0x15,0x60,0x7f,0x1f,0xee,0xa7,0x2f,0xd2,0x01,0xa5,0x86, +0xf8,0x19,0x09,0x8b,0x77,0xb0,0x8c,0x0c,0xbb,0x7e,0x22,0xef, +0xb1,0x68,0x6e,0xe3,0x8d,0x3a,0x8f,0xb4,0x6b,0x55,0x72,0x99, +0xca,0xd5,0xc4,0x22,0x38,0xa5,0xea,0x9c,0x3a,0xe8,0x7e,0x0e, +0xeb,0x7f,0xa7,0x49,0xf0,0xa6,0x59,0x1d,0xbf,0x0e,0x5f,0xc5, +0x77,0xd7,0xe0,0xfe,0x3d,0x1c,0x58,0x68,0x62,0x30,0xab,0xe1, +0xb2,0xd3,0x63,0x8b,0x57,0x81,0x3e,0xff,0xa8,0xf0,0x41,0xc9, +0xdd,0x72,0xce,0x30,0xa5,0x36,0xe8,0xc1,0x12,0x28,0x63,0x86, +0x72,0xf2,0x5a,0xd4,0x61,0x0e,0xab,0x95,0x25,0xc1,0xb7,0x59, +0xe5,0x8f,0xcd,0x64,0xe4,0x5e,0xc7,0xf3,0xc2,0xa7,0x7a,0xb9, +0xbc,0xef,0x1e,0xc5,0x1a,0xc3,0x13,0xdc,0xa4,0x25,0x1c,0x25, +0x5d,0xc7,0x7b,0x57,0xd5,0x6c,0x1a,0x2b,0xe1,0x1d,0x9e,0x19, +0xfe,0x68,0x76,0x93,0x8a,0x8b,0x2a,0xc1,0x9d,0x78,0xde,0xb6, +0xbd,0xeb,0xd9,0x54,0xd5,0x51,0x7f,0xb5,0x78,0xcc,0x30,0x9f, +0xf7,0x91,0xda,0x1d,0x95,0x6b,0x36,0x6b,0x37,0xef,0x29,0x3d, +0xca,0x81,0x66,0x15,0x49,0x0c,0x1d,0x28,0xf5,0x1a,0xb7,0xbb, +0xe6,0xde,0xa0,0x52,0xdf,0x5d,0x33,0x52,0x32,0x6e,0x58,0xc0, +0xfb,0x68,0xdb,0x9d,0x32,0xd5,0xac,0x56,0xd4,0xe8,0x15,0x19, +0xd9,0x24,0xf3,0xe1,0x1e,0x41,0x6e,0x3e,0x2e,0x1c,0xea,0x28, +0xcf,0x8c,0xf4,0x0b,0x07,0x8d,0x46,0x84,0x33,0xd8,0xce,0x64, +0xe6,0x67,0x14,0xa4,0x15,0x70,0x90,0x7d,0x91,0xb8,0xdf,0xb0, +0xbd,0xe1,0xd2,0x5a,0xd3,0x56,0x7f,0xa5,0x74,0xc4,0xa0,0x90, +0xf7,0x96,0x5a,0x1f,0x31,0xd7,0x69,0x3f,0xd9,0xb6,0xaf,0xec, +0x14,0x37,0x65,0x05,0x14,0xb4,0x3f,0x46,0x4e,0x0a,0xdc,0x74, +0xb1,0xb2,0xfc,0x77,0xb1,0xfa,0xb9,0xe1,0x71,0x33,0x65,0x09, +0x62,0x14,0xda,0xd2,0x81,0xaf,0xfb,0x75,0xf8,0x03,0x5a,0xdf, +0x16,0x88,0xf5,0x8d,0x15,0x96,0x4e,0x49,0x09,0x7c,0x29,0x1c, +0xc4,0x2f,0x59,0xe5,0x9c,0x6c,0x32,0x5a,0x3d,0xd2,0xd4,0xdb, +0xda,0xe6,0xd8,0x62,0x5f,0xeb,0x58,0xdf,0xca,0xbb,0x54,0x5b, +0xd7,0x5a,0xd6,0xb4,0x34,0xd5,0x36,0x97,0x36,0x89,0xb7,0x4f, +0xec,0x1d,0x6c,0xac,0xed,0x14,0x35,0xf2,0x6a,0xeb,0x12,0x27, +0x4b,0xbe,0xd1,0xa7,0xd5,0xb5,0xd5,0xc5,0xcc,0xc6,0xc8,0xde, +0xd8,0x93,0xba,0x61,0xad,0x60,0x47,0x46,0xa1,0x89,0x12,0xb1, +0xa6,0x31,0xf8,0x5e,0x49,0x59,0xdd,0x11,0xe5,0x42,0x02,0xf3, +0x87,0x71,0x3e,0xfd,0x7b,0x33,0x94,0x5f,0x34,0x71,0x81,0x14, +0x16,0xe0,0x08,0x43,0xab,0xe9,0x9f,0x26,0xce,0xad,0x84,0x57, +0x1a,0x7f,0xed,0xa4,0xb9,0xa2,0x08,0x92,0x07,0xc9,0xc5,0xec, +0x16,0x2a,0x88,0x0c,0x1e,0xf4,0xb2,0xff,0x0f,0x63,0x6f,0x19, +0x5e,0xc5,0xd5,0x85,0x0d,0x53,0x4a,0x66,0xa6,0xd0,0x62,0xed, +0xa6,0x93,0xd0,0x26,0xb8,0x3b,0xc5,0x5d,0x62,0xc4,0xf5,0xc4, +0xdd,0x5d,0x49,0x42,0x1c,0x12,0xac,0x48,0xdc,0xed,0xc4,0x95, +0x08,0x09,0x71,0x37,0x82,0xd3,0xa2,0x2d,0x85,0x96,0x42,0x4b, +0x15,0xa8,0xad,0x39,0x5d,0x93,0xe7,0xfd,0xf6,0x84,0xf6,0xb9, +0x9e,0xef,0x7b,0xff,0x7c,0x7f,0x72,0xf6,0xb5,0x73,0xe6,0xcc, +0x5e,0x7b,0xad,0x75,0xaf,0xfb,0x1e,0xd9,0x1b,0x35,0xa6,0xf4, +0xe2,0x7d,0x19,0x1b,0x2a,0xde,0x21,0x5d,0xc2,0x14,0xab,0x51, +0x21,0x5e,0x8c,0x14,0xe3,0x59,0x61,0x8f,0x30,0x89,0x88,0x53, +0x1e,0x08,0x53,0x18,0x71,0x0a,0x95,0x86,0xc2,0x94,0x5d,0xe2, +0x14,0xc6,0x72,0x8a,0x30,0x65,0x0b,0xfd,0x9c,0xae,0x98,0xa5, +0x48,0x25,0xc5,0xdb,0x61,0x9a,0x06,0x6c,0xd0,0x2a,0xeb,0xe3, +0x71,0xc3,0xb5,0x05,0x77,0x3d,0xaf,0x70,0x98,0x67,0x0e,0xbb, +0x18,0x4b,0xc3,0xcd,0x76,0xf8,0xbe,0x6d,0x09,0x25,0x60,0x6b, +0x87,0x81,0xb9,0x5e,0x41,0x65,0xe9,0x1d,0x4f,0xf2,0x06,0x4b, +0x26,0x52,0xe1,0xf2,0x1b,0x11,0x17,0x4b,0x53,0xe1,0xd7,0xea, +0xa7,0x0d,0x37,0x2e,0xd2,0xb1,0xf9,0xd3,0x02,0xea,0x45,0xa1, +0xb0,0x41,0x42,0x9e,0x33,0xac,0xf0,0x33,0x1a,0x93,0x7e,0xfc, +0xd5,0x8c,0x85,0x42,0x3b,0x12,0xb1,0x36,0x68,0x83,0xeb,0xc6, +0xc6,0x35,0xb5,0xf3,0xe4,0x0b,0x7a,0xf3,0xf8,0xc3,0x7f,0xba, +0x00,0xe7,0x7f,0xbd,0xfc,0x72,0xf5,0x8f,0x85,0xaf,0xb8,0x9f, +0xd2,0x48,0xe8,0x5a,0xbf,0x8d,0x0e,0x9f,0xb4,0xae,0x69,0x58, +0x50,0xb1,0xb0,0xa7,0x80,0x0f,0xfa,0xd9,0x0e,0x66,0xf8,0x5e, +0xad,0xbd,0x59,0xf3,0x5c,0xfe,0x03,0x27,0x96,0x89,0x3d,0x44, +0x38,0x4e,0x85,0xd3,0xbe,0x35,0x6c,0xb6,0xa9,0xd2,0x43,0xa6, +0x39,0x27,0xf7,0x92,0x9a,0x10,0x88,0x15,0x62,0x07,0x0b,0xae, +0xf0,0x9a,0xf8,0xd6,0x39,0xd5,0xbb,0x97,0xfb,0xba,0xf3,0x0d, +0xbe,0x4d,0xee,0x15,0x5e,0x5c,0x25,0xce,0x26,0xbe,0xf5,0xce, +0xf5,0xae,0x55,0x3e,0x6e,0x7c,0xa3,0xef,0x45,0xd7,0x4a,0x0f, +0x6e,0xfa,0x5f,0x14,0xca,0x9f,0xb4,0xb5,0xd5,0x55,0x4c,0x6c, +0x2c,0x90,0x9e,0x00,0xfb,0x50,0x89,0xaf,0x68,0xaa,0x70,0x79, +0x71,0xa9,0xab,0xbe,0xb6,0xe1,0xdf,0x8d,0x05,0x34,0x70,0xaa, +0xf4,0xbe,0xcb,0x4e,0x78,0xeb,0xff,0xb5,0xb3,0x40,0x43,0x7a, +0xe3,0xe0,0xc4,0xce,0x01,0x8b,0x6c,0xcd,0x71,0x05,0x95,0x93, +0xeb,0x5e,0xc6,0xa6,0xc6,0x7f,0x1a,0xf7,0xef,0x0b,0x2f,0x8d, +0x69,0x4d,0xc3,0x13,0xff,0x5f,0x68,0x23,0x43,0x55,0x2d,0x55, +0x45,0x29,0x9c,0x23,0x31,0x8e,0x87,0x6d,0x02,0xdc,0x7a,0x83, +0xf8,0x8a,0xe6,0xe2,0x5e,0x69,0x67,0x81,0xf0,0x2c,0x12,0xeb, +0x74,0x58,0xda,0x59,0x20,0x48,0x7a,0xbb,0xa5,0x23,0xeb,0x92, +0xb4,0xb3,0x40,0x9c,0x7d,0xb8,0xad,0xbf,0xcb,0xc4,0xce,0x02, +0xc5,0x03,0xe9,0x97,0x28,0xc3,0x4d,0xa3,0x7d,0xa1,0x36,0xbe, +0x2e,0x3d,0x81,0x7c,0xd5,0xc5,0xf2,0x51,0xe9,0x85,0x97,0x08, +0x6c,0x25,0xe3,0x3f,0xe2,0xae,0x31,0x60,0x15,0xbe,0xf3,0xaf, +0x30,0xe2,0x32,0xb4,0x24,0x30,0xd6,0x87,0xb4,0x03,0xae,0xf7, +0x8d,0x6f,0x33,0x87,0x7e,0x64,0xb1,0xcd,0x1c,0xda,0x70,0xbe, +0xb8,0xd4,0xe4,0xef,0xa9,0x83,0xe2,0x56,0x06,0xe6,0xbc,0x22, +0x8d,0xfe,0x75,0xde,0xe5,0xde,0xc3,0x75,0x7c,0x40,0xb5,0x7b, +0x8d,0x5b,0x05,0x55,0x0d,0x1f,0x9d,0x21,0xb8,0x9c,0x71,0x8a, +0xcd,0xec,0x50,0x83,0x1e,0x70,0x11,0x94,0xb1,0x9a,0xcd,0xaa, +0xc9,0xa8,0x4e,0xab,0x32,0x4c,0xe3,0x8f,0x7a,0xc7,0x79,0x44, +0x7b,0x70,0x68,0x25,0x2a,0xc3,0x54,0x26,0x11,0x35,0xb4,0x70, +0x0a,0xae,0xd9,0xd8,0x60,0xcc,0x83,0x0e,0xbc,0x75,0x45,0xda, +0x25,0x56,0x97,0x7b,0x4a,0x2b,0xf8,0xae,0x52,0xbf,0x07,0xd2, +0x7e,0x18,0x4d,0xf9,0x05,0x17,0xd5,0x6e,0xb2,0xc6,0xd9,0x4a, +0x62,0x07,0xcc,0x22,0xce,0x54,0x09,0x3b,0xd0,0x28,0xad,0xf8, +0x7d,0x68,0x21,0x65,0x23,0xb4,0xf0,0xf7,0x19,0xc3,0x74,0xaa, +0xed,0x94,0x8c,0x41,0x89,0xf2,0x11,0xc7,0x98,0x7f,0xb5,0xdd, +0x94,0xaa,0x57,0x8d,0xcf,0x69,0x21,0x3a,0x2f,0x5c,0x20,0xf4, +0x1c,0xea,0x14,0x5d,0x20,0x16,0xa7,0x50,0xce,0x00,0xba,0x38, +0x85,0xc5,0xe3,0x16,0x04,0xdf,0xa5,0xdd,0xef,0x4a,0xdd,0xef, +0x4a,0x0f,0xd1,0xe9,0xe2,0xbb,0xac,0xd1,0x5e,0x12,0x6f,0x78, +0xe4,0x60,0xa8,0x69,0xc0,0x49,0x3e,0xc5,0x62,0x28,0xe5,0x4a, +0xc6,0x60,0xb6,0x72,0x86,0xc7,0x25,0x79,0x54,0x87,0xdf,0xdd, +0xc3,0x2d,0xca,0xce,0xe1,0xe9,0xa1,0x59,0x9e,0x59,0x9e,0xca, +0xfe,0xc7,0xa5,0x7d,0x6f,0x0a,0xfa,0xb3,0x47,0x33,0x06,0x68, +0x02,0xbe,0x27,0x3c,0x24,0x19,0x69,0xe9,0x69,0x19,0xe9,0x9c, +0x78,0x4c,0x88,0x17,0x12,0xd8,0xfc,0xa0,0xd6,0x26,0x9b,0x5b, +0x3a,0xb7,0x8d,0x7b,0x94,0x1d,0xdd,0xba,0x6c,0xfb,0x8c,0x2e, +0x19,0x2a,0x63,0x20,0x84,0x1a,0x62,0x28,0x3a,0x32,0xbd,0x5d, +0x9d,0xa3,0xf5,0x97,0xad,0x2b,0x79,0x27,0x75,0x03,0x4d,0x3d, +0x0b,0x2e,0x4f,0x5c,0x47,0x1c,0x8f,0xd8,0x1f,0xb1,0x93,0x6c, +0x93,0xcc,0x7a,0x87,0x5a,0x47,0x25,0xe6,0x98,0xa4,0xe1,0x8e, +0xe1,0x54,0x63,0x98,0x4a,0x95,0xab,0x43,0xb4,0x7d,0xcc,0x9b, +0xbc,0x65,0xa9,0x00,0xf9,0xb1,0x95,0x13,0x0e,0xc3,0x18,0x11, +0xa7,0xfd,0x24,0x4c,0x63,0xc4,0x69,0xb8,0x94,0x08,0xd3,0x56, +0x8a,0xd3,0x18,0x8b,0x29,0xc2,0xb4,0xc5,0xf4,0x13,0x12,0xf0, +0x3d,0xf2,0xa5,0xd7,0x57,0xb6,0xd7,0xec,0xab,0x7b,0x78,0x8d, +0xf6,0xad,0xed,0x7b,0xca,0x39,0x71,0x1d,0xee,0x24,0xdf,0x57, +0x7e,0xdb,0x72,0xbf,0xd7,0xb5,0x95,0xdf,0x6f,0xbd,0xd3,0x7d, +0x95,0x3f,0xf5,0xda,0x5a,0x45,0x2b,0x11,0x5b,0xc5,0x04,0x21, +0x82,0xc1,0xa9,0x89,0xba,0xf1,0xa6,0xaa,0x86,0x71,0x21,0x91, +0x46,0x73,0xd7,0x30,0xd9,0x46,0x4a,0x5f,0x33,0x8f,0x5b,0xab, +0xbe,0xcd,0x57,0xcb,0xfe,0xfc,0xfc,0x6d,0xd8,0xa2,0x82,0x91, +0xbf,0x82,0x6b,0x37,0xba,0xfe,0x00,0xae,0x3d,0xd2,0xdf,0x28, +0x46,0x7c,0x24,0x76,0x13,0x77,0x2a,0x3d,0x9c,0xe9,0xf8,0xeb, +0x7e,0x1d,0x5a,0x46,0x51,0x87,0x1d,0xc6,0x6e,0x23,0x4a,0xca, +0x3e,0x7d,0x43,0xca,0x86,0x58,0xa7,0x68,0xca,0xe3,0x63,0x26, +0x48,0x59,0xed,0x2f,0x4d,0x8f,0xdb,0xb8,0x17,0x42,0x06,0xf9, +0x01,0x2c,0x57,0xb3,0x94,0xa2,0x2e,0xfe,0x6f,0x6b,0x39,0xf9, +0x15,0x2c,0x97,0xb1,0xa0,0x83,0xf1,0x24,0xae,0xe7,0xf0,0x60, +0xc4,0x45,0xdb,0x48,0x3e,0xdf,0xa1,0x50,0x96,0x29,0xe3,0x70, +0x1d,0xa8,0x92,0x7c,0xc3,0x1c,0xed,0xcc,0x3d,0xbd,0x99,0xfc, +0xb1,0xeb,0x87,0xbf,0x88,0x18,0xe6,0xb0,0x1d,0x1b,0x49,0xcd, +0xfd,0x92,0x9f,0xb3,0x5e,0x1b,0xa7,0xf0,0xb1,0x6b,0x02,0x56, +0xfb,0xec,0xa7,0xc0,0x0f,0x67,0x48,0xe6,0xee,0x94,0x8d,0x49, +0x9f,0x0c,0xa7,0xf3,0x27,0x1e,0xc4,0xff,0x1e,0x7b,0x8b,0x9a, +0xf9,0xbe,0x74,0x31,0x6a,0x9d,0x17,0x9a,0x84,0xa1,0xad,0xb4, +0x6b,0x11,0x18,0x25,0x81,0x4d,0x01,0xec,0x6f,0xe0,0xc6,0xcd, +0xf1,0x4f,0xf2,0xdb,0xe0,0x22,0x4a,0x27,0xa9,0xfe,0xab,0xfb, +0x9f,0x2b,0x32,0xae,0xd1,0xce,0xb1,0xce,0xd2,0xac,0xff,0x41, +0x45,0xd6,0x97,0x2d,0x14,0x8f,0x3c,0x23,0xdd,0xa2,0x5c,0xa3, +0x38,0x45,0x38,0xcc,0xa4,0xd0,0x75,0x11,0xde,0x81,0xb2,0x41, +0x54,0x63,0x1b,0xc6,0x1a,0xbf,0x90,0x5f,0x37,0x2d,0xe2,0x43, +0x0e,0x3a,0xad,0x75,0x3a,0xc4,0x89,0x1f,0x98,0xc0,0x79,0x7c, +0x07,0xcb,0x8d,0xa1,0x1c,0xe3,0x68,0xac,0xed,0xd6,0xc3,0xaa, +0xb1,0x1e,0x61,0x8f,0xc5,0x98,0xb4,0x53,0xe1,0x6e,0x34,0x84, +0x38,0x46,0x0e,0x17,0x49,0x74,0xbb,0xff,0x8d,0xe0,0x8b,0xa6, +0x87,0xf9,0x62,0x97,0x6a,0xad,0x4c,0x3b,0x0e,0x3f,0xc8,0x26, +0x91,0x6d,0xbe,0x83,0xc1,0x0d,0xb2,0x10,0xbe,0xc4,0xa3,0xd2, +0x38,0xd7,0x81,0x32,0x8e,0x7e,0x85,0x03,0x81,0x05,0xbd,0xb8, +0xe0,0x9e,0xfe,0x5e,0x4c,0x90,0xfe,0x4c,0x92,0xc1,0x24,0x9c, +0x0a,0xcb,0x34,0x30,0x0a,0x8d,0x20,0x6a,0x3f,0xa6,0x5b,0x42, +0xfa,0x0e,0xfc,0xd4,0x0a,0x3e,0xdd,0x8c,0xa3,0x66,0x8a,0x95, +0xfd,0xd8,0xfd,0x35,0x7c,0xda,0x85,0x9f,0x7e,0x09,0xb5,0xdd, +0x58,0x7b,0x07,0x4e,0x82,0x11,0x9e,0xbc,0x05,0x6b,0x19,0xf1, +0xbc,0x38,0x9b,0xf8,0x84,0x7b,0x85,0x7b,0x46,0x70,0x20,0xff, +0x69,0x70,0x25,0x9c,0xf9,0x87,0x4d,0x9d,0x59,0x69,0xf2,0x13, +0x65,0x74,0x1e,0x47,0xdc,0x22,0x5d,0xa3,0x73,0x0d,0xf9,0x5f, +0x9a,0x9e,0xb6,0xdf,0xe9,0xe5,0x04,0x5d,0xa1,0x97,0x1c,0xc4, +0x84,0xcf,0xd8,0x2d,0x18,0x47,0xb9,0xc6,0x5a,0xca,0x35,0x84, +0xf5,0x73,0x50,0xe7,0x7b,0xd0,0xa1,0xa8,0xbf,0x43,0x91,0x42, +0xee,0xe8,0xed,0xc7,0x14,0x73,0xe1,0xcb,0x3e,0x76,0xdc,0x1d, +0xbf,0x23,0x3f,0x0e,0xad,0x7a,0x13,0x06,0x9d,0x46,0x30,0x8d, +0x86,0xc1,0xc4,0xe5,0x97,0x5e,0xc6,0x39,0xd2,0x31,0xd2,0x21, +0x3a,0x47,0xba,0xfc,0xd2,0xf0,0x73,0xeb,0x93,0x9e,0xc4,0x01, +0xde,0x3d,0xdc,0x35,0xdc,0x25,0x82,0x13,0x06,0x85,0x43,0x24, +0xbf,0x2a,0xb7,0x36,0xbb,0xde,0xbc,0x80,0x8f,0x71,0x8f,0x70, +0x0c,0x76,0xe6,0x44,0xce,0x4c,0xf8,0xb3,0x9f,0x11,0x55,0x8b, +0x49,0xec,0x85,0x88,0xda,0xc8,0x32,0x8b,0xc3,0x7c,0x5e,0x60, +0x8e,0x57,0xb6,0x17,0x15,0xb9,0xe2,0x76,0x02,0xc3,0xe2,0x29, +0x1c,0x06,0xbf,0xfd,0x58,0x24,0x83,0x22,0x9c,0x33,0x0a,0x1f, +0x40,0x6d,0x3f,0xb5,0x95,0x85,0x2d,0x90,0x4c,0xf6,0x8b,0xb3, +0xef,0x50,0xd9,0x8d,0x33,0xc8,0x6e,0x71,0xf6,0x03,0x2a,0x66, +0x23,0x14,0xeb,0x08,0xec,0x35,0xc1,0xbd,0x6b,0x26,0xfe,0xa2, +0x83,0x99,0x20,0xf6,0xb3,0xa2,0x4d,0x2d,0x89,0x68,0x0e,0xe9, +0xf0,0x6f,0xb0,0x09,0xa2,0x92,0xb1,0xd8,0x21,0xcf,0x91,0x13, +0xd6,0xc1,0x52,0x12,0xe5,0x12,0x60,0x1b,0xe4,0xd6,0xee,0xcf, +0x97,0xd7,0x97,0x77,0xe5,0x51,0x94,0xfd,0x5e,0xfc,0x9e,0xf8, +0x46,0x79,0x45,0x79,0xd2,0x7a,0x54,0x22,0x45,0xfa,0xb1,0xdf, +0x87,0xb0,0xcc,0x18,0xde,0xc2,0x63,0x4b,0x8c,0x5f,0x51,0x08, +0x72,0x8b,0x76,0x8d,0xa1,0xe1,0x62,0xc4,0xbf,0xae,0x79,0xd6, +0xf8,0x59,0x33,0xa7,0x98,0x76,0x94,0xf4,0x62,0xe3,0x0b,0x38, +0xdb,0x83,0x67,0x9f,0x82,0xbc,0x07,0xb7,0xb0,0x85,0x55,0x05, +0x97,0xb2,0xea,0x4d,0xf3,0xf8,0x68,0xc7,0x30,0x87,0x40,0xca, +0xaf,0x7f,0xb7,0x80,0x73,0x9f,0x60,0xa4,0x05,0x44,0xae,0xc1, +0x02,0x19,0xa4,0x33,0x7e,0x07,0x96,0xda,0xa0,0x83,0x65,0x21, +0x05,0xc6,0x80,0x41,0x50,0x1a,0xc8,0x91,0x1e,0xda,0xca,0x59, +0xf2,0x87,0x19,0x18,0xe9,0xc9,0x87,0x79,0xdc,0xd7,0xb7,0xaa, +0xcd,0xef,0x36,0x37,0x0f,0xc6,0x49,0x6c,0x55,0xe4,0xc5,0x88, +0x4a,0xd3,0x30,0x3e,0xcf,0x37,0xd7,0x23,0xd3,0x93,0x93,0x6c, +0xcc,0x27,0xa3,0x86,0x06,0xa8,0x6d,0x29,0x1c,0xea,0x66,0xc7, +0x4b,0x44,0x6d,0x02,0xa3,0xe0,0x86,0x43,0xcc,0x39,0xf9,0x19, +0xf9,0x19,0x4a,0x69,0x9a,0xc0,0x0a,0x7f,0xc0,0x85,0xcc,0xba, +0x13,0x1b,0xb4,0xd6,0xab,0x76,0xd8,0x35,0x0f,0x15,0x8e,0xa6, +0x8f,0x28,0x53,0x61,0x12,0x4d,0x96,0x60,0xe8,0x2b,0x56,0x38, +0x8a,0x84,0xc4,0x56,0x86,0xd5,0xc7,0x14,0x58,0x84,0xf3,0xb9, +0xa1,0x79,0x1e,0x99,0x81,0x1c,0xd8,0x26,0x92,0xc2,0x8a,0xbc, +0x9a,0xac,0x4a,0x59,0x1e,0x1f,0xeb,0x79,0xc4,0x2b,0xd8,0x85, +0xc3,0x7c,0x4b,0x30,0xd9,0x83,0x7b,0x2c,0x60,0xcf,0xf2,0x91, +0x5f,0xc0,0xa0,0x07,0x0d,0xee,0x83,0x4b,0x37,0x23,0x36,0xcd, +0x23,0x34,0xf6,0xad,0xe0,0x1d,0x56,0x78,0x21,0x7a,0x11,0x9f, +0x62,0xdb,0x0a,0xf7,0x3c,0x0e,0xf6,0x74,0xe1,0x8b,0xaf,0x84, +0x79,0x3d,0xe3,0x0f,0x2d,0x84,0x19,0xdb,0xf0,0xbe,0x15,0xdc, +0x5f,0x2a,0xae,0x94,0xfd,0x3d,0xab,0x17,0xf7,0x31,0xab,0x5f, +0x12,0x5f,0xcf,0xba,0xc8,0x6e,0xff,0xea,0x50,0x65,0x3c,0xfe, +0x92,0x99,0x0e,0x23,0x02,0x92,0x9c,0x94,0xdc,0xd4,0x9c,0x34, +0x6e,0xc9,0x20,0xa5,0x95,0x0e,0xa7,0x59,0x5f,0xcf,0x10,0x54, +0x0e,0x53,0xcd,0x72,0x78,0x94,0xd9,0x9e,0xd5,0x54,0xa2,0x9c, +0x96,0x9c,0x72,0x2a,0xfb,0x04,0xec,0xb3,0xe6,0x73,0x5b,0x70, +0x7d,0x4b,0xdc,0xb9,0xc4,0x93,0x09,0x09,0xca,0x09,0x09,0x89, +0x67,0x95,0x32,0x32,0x53,0x72,0x73,0x54,0xce,0x80,0x2f,0x4e, +0x1a,0x86,0x15,0xe8,0xcc,0x56,0xc8,0x4b,0x8b,0x0b,0x4a,0xb8, +0x3a,0xcc,0x64,0xd3,0x33,0xd3,0x33,0x53,0x33,0x2d,0xb2,0x79, +0x2b,0x8d,0x0d,0xda,0x0b,0x6d,0xb8,0x5a,0xd1,0x5d,0x82,0xb0, +0x23,0x12,0x51,0x6b,0xfa,0x37,0x21,0x72,0xff,0x4d,0x88,0xb1, +0x09,0x5a,0xe2,0x26,0x31,0xf4,0x5f,0xaa,0xbf,0x6b,0x7c,0x44, +0xb1,0x77,0x9d,0xf0,0x17,0x89,0x08,0x0f,0x3a,0xec,0x1b,0xce, +0x61,0x18,0x53,0x5e,0x50,0x5a,0x20,0x2f,0xe2,0x04,0xf7,0xf1, +0x0c,0xb2,0x29,0x6d,0x73,0xee,0xae,0xe2,0xcf,0xab,0x87,0x2e, +0xb6,0x74,0x72,0x35,0xf8,0x8a,0xcd,0xcd,0xce,0xce,0xce,0xca, +0xe6,0xe0,0x0e,0x74,0x88,0x45,0xd8,0x01,0x73,0x19,0x99,0xe5, +0x7a,0xab,0x55,0x7e,0x72,0x5b,0xbe,0x2b,0xb7,0xbd,0xb0,0xa5, +0xa4,0xde,0xef,0x52,0x60,0x67,0xc8,0xa6,0xd0,0xc5,0x91,0xf8, +0x4e,0x5c,0x9e,0x8c,0x07,0xb5,0x6c,0x98,0x21,0x7f,0x5d,0xf7, +0xc2,0xf3,0xaf,0x10,0x4a,0x16,0xb8,0x25,0xc2,0xa7,0x44,0xdc, +0xd0,0x22,0x6c,0x60,0xc4,0x0d,0x38,0x93,0xd0,0x86,0x23,0xeb, +0x3c,0xc5,0x56,0xdc,0xd0,0xce,0x0a,0x93,0x71,0x3f,0x71,0xf2, +0x92,0x05,0x1c,0x0a,0xd5,0x2b,0x36,0x2b,0x77,0xac,0xa1,0xe5, +0x28,0x4c,0x71,0x9e,0x7c,0x66,0x72,0x10,0x55,0x64,0xf0,0x45, +0x2f,0x0b,0x8d,0xe3,0xb9,0x04,0x17,0x31,0x6e,0x09,0xa9,0xf5, +0x6a,0x0f,0xc1,0xb3,0x13,0x3d,0x3f,0x07,0xb7,0x0e,0x74,0xfb, +0x6c,0xa2,0x7d,0x1b,0x82,0x28,0xd8,0x06,0xdf,0x82,0xf8,0x6e, +0x8c,0xbf,0x6e,0x8a,0xd1,0x10,0xba,0x09,0x43,0xc4,0x30,0xf6, +0x60,0x61,0xe8,0x3d,0x55,0x58,0xc0,0x34,0x15,0xe4,0x34,0xaa, +0xdd,0x60,0x65,0xd9,0x4a,0xe3,0x5e,0xc2,0x5b,0xe4,0xc1,0xe0, +0x6e,0x48,0xf8,0x72,0x10,0x03,0x4d,0x1e,0x63,0xc2,0x1e,0x93, +0xfb,0x38,0xc8,0xf8,0xc5,0xf9,0xc5,0xfa,0xc6,0x53,0xe9,0xf5, +0x55,0xd5,0x83,0x86,0x6b,0xcd,0x27,0xfb,0x79,0xff,0x28,0xdf, +0x48,0x49,0xbd,0xfe,0x20,0xd4,0x90,0x38,0x8b,0x48,0xcb,0x30, +0x1b,0x0e,0x8d,0x64,0xf0,0x43,0xef,0x32,0x26,0xbf,0x35,0xa7, +0x23,0xa3,0x95,0xc3,0x55,0x38,0x89,0x1c,0x6d,0x89,0x6d,0x8e, +0x6e,0xb0,0x89,0xe2,0xb3,0xdd,0x33,0x9d,0x53,0x1d,0xb9,0x13, +0xe3,0xb3,0x08,0x98,0x81,0x3a,0xce,0x59,0xc4,0x66,0x5a,0x28, +0x3d,0xa7,0xf5,0x3f,0xbf,0x41,0x4d,0x30,0xc2,0x16,0x31,0x8d, +0x85,0x68,0x61,0x3a,0x41,0xf5,0x27,0xa0,0x4e,0xf9,0x2d,0x2a, +0x13,0x50,0xff,0x04,0xd5,0x69,0x8c,0xbc,0x50,0x74,0x11,0xf1, +0x1d,0xc8,0x10,0xde,0x61,0x6f,0xce,0xa1,0x8d,0x5c,0xda,0xc0, +0x2a,0xb1,0x98,0x74,0xd4,0x35,0xb7,0x54,0x36,0xb8,0xd6,0xf0, +0xc1,0x9e,0x0e,0x8e,0xce,0xfe,0x9e,0x69,0xbc,0xbc,0xec,0xb0, +0xdc,0xa3,0x2a,0x30,0x5f,0xd9,0xdb,0xab,0x38,0xb2,0x3c,0xb8, +0x28,0x4c,0x39,0x22,0x20,0xd0,0xcb,0x97,0x32,0x12,0x7b,0x67, +0x26,0x20,0xc6,0x2f,0xc6,0x37,0x96,0x16,0xe0,0x09,0x71,0xf9, +0xeb,0x10,0xe6,0xfc,0x57,0x5c,0xb2,0x1e,0xff,0x0a,0xdc,0x5f, +0xaa,0xbe,0x6d,0xbc,0x73,0xf1,0x64,0x13,0x0f,0x8b,0x18,0x3f, +0x1f,0x6f,0x1f,0x6f,0xdf,0xd1,0x23,0xb7,0xc2,0x3e,0x3b,0xbc, +0xcb,0x7b,0x45,0x08,0xb2,0xb1,0xb9,0xd4,0x77,0x1f,0xe7,0xc2, +0xd4,0xea,0x1f,0xbb,0xff,0xf4,0xfe,0xc3,0xe3,0x0b,0x9f,0xf2, +0x4e,0x7e,0x6b,0xd5,0xba,0x8a,0x4d,0x65,0x03,0x8d,0xad,0x6d, +0x75,0x03,0x1c,0x7c,0xd8,0x25,0xaa,0x30,0xf2,0x8a,0xc2,0x8a, +0x6c,0x39,0xb7,0x47,0x98,0x4d,0x70,0xf5,0x65,0x2a,0xcb,0xe1, +0xb1,0x3e,0xc1,0x0d,0x97,0x61,0x03,0x83,0x8f,0x69,0x81,0xc6, +0xd5,0x63,0x13,0x9d,0x7a,0xb4,0x73,0x8c,0x76,0x8a,0x61,0x54, +0xe9,0xad,0xd6,0x46,0xda,0xf7,0xf0,0x3a,0x81,0x0d,0xda,0xb8, +0x81,0x79,0xb9,0x81,0x5c,0xf4,0x6d,0xb3,0xab,0x72,0xab,0x6d, +0xe2,0x83,0x6a,0x2d,0xda,0x5d,0xaa,0x38,0x31,0x03,0x57,0x90, +0x8e,0xda,0xe6,0xd6,0xf2,0x0b,0x2e,0x35,0x7c,0x88,0xa7,0xad, +0xbd,0xb3,0x3f,0x27,0x58,0x51,0xc6,0xea,0x63,0x67,0xef,0x6c, +0xe8,0xa5,0x9f,0x6f,0x94,0x63,0x99,0x2d,0x2f,0x2c,0x29,0x29, +0x29,0xa7,0x38,0x61,0xa3,0x60,0xc8,0xe1,0x1b,0x2e,0xdf,0x79, +0x0c,0x9b,0x07,0xf2,0x17,0xf4,0xeb,0x37,0xc9,0xb5,0x38,0x48, +0x04,0x77,0xe2,0xb3,0x55,0xb6,0xc0,0x68,0x7b,0x8f,0x37,0x3f, +0xf8,0xc5,0x65,0x2a,0x63,0x1e,0x71,0xe2,0x3e,0x74,0x27,0x7e, +0x37,0xad,0x5e,0xb8,0x0c,0xca,0xfc,0xf8,0x26,0xa3,0x8e,0xf5, +0x15,0x1a,0x1c,0xa5,0x55,0xbf,0x93,0x7f,0xae,0xab,0x40,0xa3, +0x84,0x85,0xff,0xf7,0xa5,0x18,0xf6,0xff,0x7b,0x29,0x86,0x13, +0x9e,0x43,0x17,0xc1,0xe7,0x8c,0xbc,0xab,0xa0,0x33,0xab,0xd9, +0x30,0x83,0x8f,0x71,0x0c,0x31,0x0f,0x30,0xe3,0xd0,0xd2,0x18, +0x76,0x30,0x5e,0x46,0xae,0x46,0x6e,0x36,0x57,0xfc,0x6e,0xb9, +0xdf,0x76,0xd1,0x30,0x5d,0xe7,0x8c,0x9c,0xaf,0xf4,0xdc,0xea, +0xf4,0xda,0xd7,0x1d,0x8f,0x6e,0x3e,0xb6,0x7e,0x2c,0xfb,0xdc, +0xaa,0xb1,0x9f,0xdf,0xdf,0xb1,0xa3,0x6b,0xf7,0xa5,0xcb,0xd7, +0xdb,0x9f,0x54,0xfc,0xc1,0xfd,0xce,0x50,0x06,0x10,0x4a,0x8c, +0x6b,0xcc,0xca,0xed,0x8a,0x2a,0x9b,0x2b,0x7b,0xca,0xfb,0x38, +0x90,0x31,0x81,0xeb,0x9d,0xf7,0x19,0xe9,0x73,0xd3,0xaf,0x09, +0x3e,0xe4,0xc1,0xe8,0xc0,0xcd,0xba,0xaf,0xb8,0x56,0xa6,0x72, +0xf7,0xd8,0x9e,0x3b,0xc6,0xb5,0xed,0xbc,0x41,0x9b,0x6c,0xd8, +0xff,0x32,0x07,0xb3,0x06,0xd0,0x99,0x49,0xab,0x4e,0xa9,0x3d, +0x5f,0x2f,0xbd,0x57,0xef,0x9a,0xe8,0x11,0x4f,0x75,0xe0,0x7c, +0x53,0x78,0x97,0xf1,0xd5,0xb5,0x97,0xe9,0x58,0x73,0x7f,0x7f, +0x22,0x0e,0x10,0x3b,0xd8,0x1a,0x00,0xd6,0x10,0xab,0x02,0x2e, +0x6c,0x41,0x52,0x5e,0x52,0x5e,0xb2,0x77,0x37,0xbf,0xd0,0x13, +0x37,0x04,0xe2,0xea,0xf8,0x89,0x05,0xb3,0xc2,0x83,0x51,0x67, +0x27,0x2e,0x57,0xed,0xb4,0x53,0x7a,0x0a,0x3b,0x4a,0xe8,0x97, +0x13,0x54,0x40,0x87,0xad,0x3f,0xd7,0x78,0xbe,0xe1,0x3c,0x37, +0xae,0xcf,0x5a,0xc4,0xc9,0x8e,0x3a,0x1e,0x4f,0x37,0xe2,0xbf, +0xcc,0x84,0x77,0x4b,0xef,0x95,0x27,0xf9,0x27,0x07,0x9c,0x0f, +0xee,0xc8,0xe3,0xa3,0x1e,0x86,0xfe,0x11,0x71,0xd5,0x26,0x86, +0x4f,0xf3,0x4a,0x77,0x48,0xb7,0x0f,0x4d,0x08,0x4a,0x08,0x48, +0xe4,0x14,0xda,0xec,0xc5,0x94,0xa6,0x94,0x86,0x54,0x0e,0xf7, +0xb1,0x58,0x51,0x8e,0xf6,0xbd,0xa8,0xa5,0x2a,0xb6,0x08,0xdf, +0x12,0x8c,0x37,0x85,0x78,0x06,0x6d,0x31,0x81,0x64,0x56,0x67, +0x36,0xa5,0xd6,0x70,0x90,0x39,0x28,0xae,0x33,0xf9,0x91,0x89, +0xb5,0x0a,0xd5,0x0f,0xb7,0xe5,0xe0,0x53,0xc6,0xfd,0x84,0x4d, +0xa2,0x8b,0xaa,0xe7,0xf1,0xd8,0x58,0xc7,0xb9,0x6b,0x99,0x1c, +0x63,0x9a,0x4a,0xd7,0x4b,0xe4,0xc3,0x19,0x6a,0xa9,0x3d,0xe7, +0x6f,0x9c,0x79,0xc4,0x49,0x8b,0x0a,0xb8,0x51,0x32,0x6c,0x8e, +0x53,0x16,0x9b,0x43,0x46,0x1f,0x2b,0x70,0x3a,0x04,0xca,0xfb, +0x71,0x12,0x4c,0x37,0xc3,0xe9,0x38,0x85,0xf1,0x1c,0x25,0x59, +0xe7,0x33,0xcf,0x67,0x24,0xf9,0x76,0xf2,0xdb,0xbc,0x71,0x72, +0x30,0xbe,0x17,0xc3,0xe1,0x29,0x16,0x23,0x22,0x71,0xaf,0x26, +0xae,0x50,0x6d,0xb1,0x57,0xba,0x0f,0xdb,0xf2,0xc0,0x18,0x8e, +0xaa,0x80,0x0d,0x5b,0x72,0xae,0xe4,0x7c,0x29,0xb5,0xd4,0x94, +0x75,0x3f,0xea,0x7a,0xcc,0xfb,0x38,0x65,0x57,0x97,0x33,0xbf, +0x92,0xf7,0x97,0x24,0x05,0x9d,0x0b,0x3a,0x1f,0xda,0x9c,0xc3, +0xc7,0xde,0x8f,0xfc,0x35,0xea,0x8a,0x53,0x1c,0x9f,0xea,0x99, +0xea,0x98,0x62,0x1f,0x9d,0x18,0x75,0x3c,0xf2,0x38,0xa7,0x30, +0x60,0x2b,0x92,0x2b,0x92,0xcb,0x52,0x38,0xd4,0x65,0xb1,0x3c, +0x0b,0xcd,0x9b,0xf1,0x90,0x6a,0x6b,0xa3,0x92,0x0f,0x6c,0x8e, +0x04,0x23,0x3a,0x8d,0xb4,0x52,0x15,0x13,0xcf,0x78,0x8f,0x63, +0xee,0xc7,0xb8,0x73,0x0d,0x67,0x5a,0x3a,0x55,0x60,0xd2,0xc0, +0x0e,0x26,0x7f,0x20,0xff,0x5e,0xe6,0x75,0x0a,0xe0,0x71,0xea, +0x91,0x7b,0xc2,0x74,0x26,0xbc,0xf6,0x16,0x63,0x7e,0xca,0xee, +0x94,0xb3,0xaa,0x6b,0x82,0x4b,0xa2,0xcb,0xf1,0x14,0x63,0xfe, +0x42,0x52,0x5d,0x72,0x5d,0x72,0xec,0x8a,0x40,0x43,0x73,0xed, +0x4b,0xce,0xfc,0x95,0x2f,0x2b,0x6f,0x67,0xc2,0xcc,0xc6,0xb4, +0xc6,0xf4,0x86,0x4c,0x0a,0x41,0x70,0x9e,0x1c,0x1d,0x8a,0x1b, +0x8a,0xe9,0xb5,0x8e,0xe4,0xb3,0xcd,0xd3,0xcd,0xd3,0x0c,0x39, +0xc5,0x33,0x17,0xb2,0x85,0x29,0x18,0x2c,0x7e,0x94,0x31,0x62, +0x91,0xc5,0xc7,0x1b,0x84,0x6d,0x0b,0xd5,0xe2,0x70,0xa5,0x29, +0x55,0xf7,0x6a,0x38,0xd9,0x8c,0x92,0x98,0xa4,0x01,0x48,0x82, +0x29,0xfd,0x38,0x05,0xd4,0x80,0x61,0x70,0xc7,0x0b,0xfa,0x23, +0xb1,0xa3,0x91,0xfd,0x94,0xa8,0xe6,0xc8,0x32,0x0d,0x53,0x4d, +0x28,0x04,0x27,0x0b,0x09,0x04,0xf4,0xc5,0x83,0x57,0x84,0x83, +0x60,0x39,0x8a,0x96,0x70,0x41,0x17,0x2f,0xa0,0x3e,0x23,0xf0, +0x22,0x65,0xda,0x8b,0x19,0x8f,0xa3,0xd9,0xfd,0x67,0xd4,0xb2, +0x84,0x1c,0x25,0x3c,0xc3,0x9c,0xef,0x94,0x16,0x3c,0xe1,0xe0, +0xde,0xa0,0x78,0xce,0x04,0x66,0x32,0xb1,0x18,0x1b,0x84,0xa7, +0xbc,0x31,0x22,0xe4,0x78,0xc8,0x89,0xb0,0x13,0xd9,0x87,0xf8, +0x97,0x72,0xf8,0xa0,0xea,0xab,0xf2,0x84,0xcb,0xbc,0x55,0xe4, +0xc1,0x08,0x8d,0x28,0x39,0x7c,0x52,0x00,0x3b,0xb3,0x60,0x07, +0x07,0xc6,0x4c,0xbc,0xe8,0xab,0xb4,0xed,0x94,0xdc,0xfb,0xee, +0x5c,0x61,0x11,0xd3,0x9b,0x97,0xdf,0xae,0x06,0x1f,0xb2,0x06, +0x79,0x4a,0x62,0x5e,0x3b,0x09,0xbe,0xef,0xfc,0xcc,0xe3,0xb2, +0x75,0x28,0x5f,0x63,0xda,0xb0,0xb1,0x62,0x33,0xcd,0xfa,0x9d, +0x42,0x3c,0x41,0x6b,0x03,0xb0,0x16,0x95,0xc6,0x04,0x25,0xf0, +0x1b,0x45,0x3f,0x88,0x60,0x1e,0xe4,0xdc,0x2c,0xe8,0x2e,0x0a, +0x1e,0xe6,0x37,0xb9,0xe2,0x66,0x37,0xdc,0x9d,0x98,0x6d,0xc0, +0x8f,0x9c,0x1b,0x4e,0xee,0x4f,0xe5,0x20,0x68,0xdc,0x94,0x88, +0xfb,0xe9,0x90,0x73,0x7a,0xcf,0xa8,0x65,0x08,0x05,0x4a,0x78, +0x84,0x39,0xd7,0x75,0xae,0x43,0x1a,0x72,0xe1,0x80,0x68,0x68, +0x4a,0xb5,0x5c,0x2c,0xc6,0x53,0xd1,0xec,0x87,0xf6,0xa1,0x74, +0xc0,0xe1,0x27,0xb2,0x75,0xf8,0xef,0xe5,0x30,0xab,0xea,0x5e, +0x69,0xc2,0x08,0x6f,0x17,0xad,0x7d,0xe4,0x50,0x54,0x21,0x2c, +0xc9,0x07,0xad,0x6c,0x38,0xc8,0xc1,0x7e,0xe6,0xa8,0x18,0x48, +0x87,0x5c,0x24,0x0d,0x79,0xef,0x3f,0x43,0xe6,0x59,0x43,0x3a, +0xe4,0x96,0x56,0x12,0xfa,0xc0,0xf5,0xb9,0xd7,0x98,0x55,0x38, +0x5f,0x6d,0x52,0xb7,0xb1,0x6c,0x13,0xa5,0xed,0x16,0x8a,0xc9, +0x04,0x27,0x75,0xe0,0xe4,0x9b,0x07,0xae,0x4b,0x8f,0xc1,0x43, +0x0d,0x73,0xcd,0xe0,0x2f,0x4d,0x50,0xb2,0xe0,0xc6,0xdf,0x82, +0x20,0xa2,0xa3,0x87,0x93,0x35,0x17,0xba,0x54,0x51,0xd2,0xd5, +0x04,0xef,0xdc,0xbb,0x79,0x83,0xbb,0x6e,0x41,0x5c,0x0d,0x4d, +0x0e,0x68,0xeb,0xe0,0x14,0xaa,0xe4,0x8c,0xc0,0x36,0x05,0x62, +0xb3,0x61,0x75,0xa1,0x72,0xd1,0xe1,0x82,0xb0,0xbc,0xb0,0x4b, +0x0d,0xbc,0xfe,0x8d,0xbd,0x77,0x35,0xfa,0x9d,0x3d,0xf9,0x9a, +0x80,0x5a,0xdf,0x5a,0xef,0x95,0xf1,0x38,0xeb,0x28,0x7e,0x98, +0xd8,0x3b,0x70,0xe9,0x4a,0xfd,0x00,0x87,0x7e,0xf8,0x37,0x39, +0xbc,0xc0,0x1b,0x95,0xac,0xe7,0xb9,0x9c,0x74,0x3a,0xe5,0x78, +0x2a,0x95,0x52,0xb1,0xc3,0x39,0xa0,0x9d,0x03,0xfa,0x25,0xa7, +0xba,0x78,0xe4,0xa3,0x90,0xc4,0xe1,0xe2,0xa3,0xa5,0x63,0xf2, +0xeb,0xf9,0xd7,0x39,0x61,0x29,0x73,0x04,0x75,0x95,0x4c,0x13, +0xe5,0xe1,0x37,0xe7,0xc2,0x87,0x4c,0x4b,0x6e,0x7e,0x9d,0x1a, +0xa8,0xb0,0xc6,0x45,0x4a,0xb8,0x16,0x67,0xb1,0x21,0x09,0xe9, +0x85,0x67,0xd4,0x0a,0x21,0x42,0x49,0xb4,0x66,0x92,0x4b,0x93, +0x4b,0x93,0x4a,0x38,0xc5,0x3b,0x03,0xff,0x99,0x63,0xca,0x08, +0x79,0x78,0x8c,0x98,0x5f,0x34,0xad,0x34,0x29,0x77,0x77,0xe7, +0x87,0xfc,0xfa,0x7d,0x7b,0x5c,0xa9,0xd1,0xab,0xfe,0x24,0x59, +0xa9,0xc9,0x39,0x72,0x95,0x07,0xac,0x49,0x9e,0xd2,0x1a,0x54, +0x66,0x83,0x13,0x32,0xe5,0xd2,0xf3,0x8c,0x46,0xd0,0x4b,0x69, +0x3c,0x7e,0x08,0x4f,0xd8,0x6f,0xb2,0x1f,0xe6,0x0d,0xe5,0x1f, +0x1e,0xe0,0xad,0x8e,0x1c,0x3c,0xb2,0x23,0x86,0xfb,0xc2,0x68, +0x23,0xbb,0x2f,0x6e,0xe7,0xb1,0xbd,0x27,0x29,0x03,0xbd,0x7d, +0xfe,0x4e,0xea,0x67,0x19,0x1c,0xde,0xc3,0xd9,0x70,0xdc,0x08, +0xbb,0xa9,0xc4,0x9d,0xc5,0xea,0x95,0x84,0xf4,0xab,0xc2,0x7c, +0x26,0x27,0xe3,0xec,0xf9,0x34,0xb5,0xe5,0xa2,0x13,0xeb,0x11, +0x97,0xdb,0x2d,0xf9,0x55,0xae,0x84,0xbe,0xcc,0xf9,0x2e,0x1a, +0x8a,0xed,0x1c,0x1c,0x1f,0x10,0x37,0x98,0xd2,0xe8,0x8e,0xc5, +0x63,0xfe,0xd8,0x1b,0x88,0xda,0x61,0xc7,0xc3,0x4f,0x44,0x9c, +0xcc,0xd6,0xe3,0xbf,0x95,0xc3,0xbb,0x55,0xb7,0x8a,0x13,0x86, +0x79,0xa7,0x18,0xdd,0x23,0xba,0xd4,0xaf,0xca,0xf9,0x60,0x9a, +0x4d,0x85,0x3b,0x6c,0x66,0x8e,0x89,0xa1,0x4a,0xdb,0x4e,0x17, +0x48,0x7e,0xb5,0x79,0xe3,0xd7,0x87,0xec,0xf8,0x3b,0xc0,0x92, +0xc3,0x0f,0xdc,0xbf,0xf3,0x1e,0xb3,0x8e,0xe0,0x2b,0x8d,0x6b, +0x37,0x94,0x48,0x4e,0x75,0xa2,0xca,0x7c,0xfb,0x3d,0xfb,0x87, +0x41,0xf0,0x2e,0x87,0x56,0x46,0xb0,0x8a,0x29,0x5d,0x38,0xb0, +0xf1,0xe1,0x5e,0x4e,0x0c,0x12,0x43,0x89,0xc7,0xd1,0x37,0x83, +0xa2,0xd3,0x17,0x28,0x05,0x5b,0x97,0x34,0xa8,0x0b,0x03,0xa2, +0x8d,0x29,0xb0,0x74,0x50,0x47,0x03,0xb1,0x3d,0x00,0x0d,0x0e, +0x1f,0x0f,0x7b,0x33,0xa8,0xe7,0x72,0x78,0xaf,0xea,0xb6,0x34, +0x28,0xc7,0x89,0x41,0x15,0xc0,0x47,0x05,0x60,0x90,0x05,0x87, +0x38,0xd8,0x46,0x07,0x15,0xf4,0xef,0xa0,0x8c,0xfe,0x09,0xb6, +0x19,0xd2,0x9e,0xe5,0xd2,0x8e,0x93,0xfb,0x05,0x3f,0xf2,0xe0, +0xf3,0xfe,0x97,0xc5,0x3f,0x9b,0xe7,0xf3,0xa1,0xeb,0xed,0xb6, +0x6a,0xe8,0x70,0xe0,0x2a,0xce,0x20,0x99,0xc6,0x4a,0x5f,0x31, +0x9f,0x97,0x95,0xde,0xcb,0x51,0xcb,0xba,0x96,0xfe,0x13,0xec, +0x50,0x41,0x34,0xfd,0x8d,0x49,0x44,0xcd,0xfd,0xab,0x97,0x1d, +0x6a,0xb6,0xe4,0xff,0x7a,0xf0,0x04,0xa6,0x26,0x81,0x19,0x07, +0x1f,0x33,0xa7,0x71,0x4a,0xfc,0x86,0xa3,0x56,0x9c,0xe5,0xd1, +0xe8,0x48,0xd3,0xb9,0xe2,0x7b,0x03,0xd4,0x5e,0xb7,0x7f,0xed, +0xad,0x7b,0x63,0xef,0xaa,0xd7,0xd4,0x9f,0x49,0xb9,0x72,0x95, +0xdf,0x59,0xb3,0x7c,0x25,0x8a,0xb1,0x1b,0xd8,0xc0,0x84,0xac, +0x32,0x35,0x58,0xc7,0x42,0x5e,0xf5,0xf1,0x21,0xcc,0xf4,0x51, +0xa2,0x49,0x00,0x71,0x55,0xb4,0x1d,0x49,0xdb,0x73,0xd8,0xfb, +0xd9,0x77,0xf3,0x87,0xf3,0xc3,0x06,0x79,0x7c,0xcb,0x1d,0xf7, +0x7a,0xe0,0xac,0x38,0xae,0x57,0xd4,0xa6,0x6e,0x61,0x27,0x66, +0xa0,0x3f,0x00,0xb5,0xfe,0xeb,0x96,0x67,0x72,0x98,0x5a,0x75, +0x53,0x4e,0x67,0xc0,0x39,0x46,0x2f,0x52,0x2f,0x2a,0x1f,0xf8, +0x7f,0xdd,0xb2,0x89,0xce,0x40,0xc8,0xbf,0x33,0x60,0xff,0x66, +0x06,0xee,0xb2,0x62,0xde,0x76,0xe2,0x11,0x9f,0xdb,0x75,0x46, +0x2d,0x5d,0x28,0x56,0x42,0x9f,0xff,0xba,0x3e,0x8d,0x49,0x37, +0xeb,0x4c,0xea,0x4f,0x19,0x4c,0x57,0x96,0x9e,0x0f,0xd7,0x08, +0x4e,0x36,0x83,0xbd,0x34,0x38,0x78,0x16,0x8d,0x42,0x92,0x4d, +0x41,0x87,0xfa,0x64,0x03,0x6b,0x54,0x16,0x40,0xe3,0x68,0x3b, +0x93,0x93,0x79,0x36,0x29,0x4d,0x6d,0x15,0x2b,0xde,0x05,0x1b, +0x12,0xf6,0xbf,0x5e,0x2e,0x96,0xac,0x5e,0x98,0x44,0x44,0x4b, +0xe6,0x7f,0x42,0x2c,0xe0,0xbf,0xe7,0x89,0x1f,0x10,0xd7,0xfe, +0xff,0xf5,0xe6,0xc7,0xf9,0x60,0x98,0xfd,0xaf,0x37,0xff,0x6b, +0x8b,0xe9,0x1b,0x5b,0x7e,0x91,0x12,0x44,0x5c,0x2e,0xc4,0x11, +0xf1,0x94,0xb0,0x40,0x38,0x85,0x6e,0x6c,0x6e,0x53,0x56,0x73, +0x46,0x13,0x07,0x3e,0x83,0xa2,0xaf,0x09,0x58,0x30,0xf1,0x6e, +0x51,0x4e,0x91,0x4e,0x9c,0x16,0xfa,0x10,0xd8,0x04,0x35,0xb8, +0x89,0x15,0x4f,0xa0,0xd5,0xff,0xe5,0x25,0x28,0x81,0xad,0x84, +0xfe,0xfb,0x00,0xd6,0x50,0x62,0xa9,0x10,0x9e,0x90,0x8b,0x4d, +0x75,0xcd,0xe5,0x97,0x38,0x78,0xd7,0x87,0x41,0xa5,0xad,0x3a, +0xe8,0xac,0xae,0x5a,0x26,0x03,0xa3,0x9b,0x4f,0x06,0xf3,0xff, +0x50,0x4e,0x61,0xf2,0x17,0xfc,0x68,0x02,0xb6,0x9a,0xa5,0x3d, +0x3c,0xfa,0xdf,0x5e,0x73,0x15,0x94,0x54,0x6a,0xc0,0x8f,0x8d, +0xf2,0xf0,0xb1,0x72,0x73,0xee,0xf6,0xe7,0x3b,0x87,0x2b,0xba, +0x8a,0x7a,0xb9,0x36,0x51,0x9d,0xcd,0x28,0x4a,0x93,0xa7,0x15, +0x9b,0x66,0xf1,0xde,0x3b,0x6c,0x0f,0x1e,0xa4,0xe5,0x2a,0x11, +0x16,0x11,0x13,0x48,0x1a,0x64,0xfd,0x71,0x2f,0xd1,0xb2,0x5f, +0xef,0xba,0xc2,0xa3,0xd4,0x94,0xff,0xb1,0xfe,0xfb,0x4b,0x37, +0x5a,0x39,0x6d,0x3c,0x41,0x42,0x17,0x7b,0xe3,0x5b,0x36,0x0b, +0x71,0x7a,0x22,0x9f,0x66,0x02,0x87,0xb3,0x40,0x3b,0x17,0xf4, +0x8b,0x95,0x4f,0x75,0xa2,0x72,0xb4,0x84,0x3d,0x4b,0x8e,0x2a, +0x97,0x8e,0xca,0xaf,0xe4,0x5d,0xe5,0x84,0x15,0x14,0x7c,0xd4, +0x95,0xcc,0x12,0xe5,0x61,0x37,0xde,0x80,0x4f,0x41,0xad,0xb4, +0x81,0xae,0x09,0xf5,0xd4,0xca,0xff,0x01,0x9f,0x20,0x25,0xd1, +0x96,0x49,0x2e,0x49,0x2e,0x49,0x2a,0xe6,0x14,0x53,0xdf,0x80, +0x4f,0x3e,0x46,0x12,0xb3,0x26,0x93,0x0a,0xe3,0x32,0x0f,0x77, +0x7e,0xd8,0x7f,0xc0,0xaf,0x9b,0x82,0xcf,0x98,0x62,0x2e,0xc1, +0x1a,0x61,0x33,0x9d,0x8a,0xd9,0x2f,0x61,0xe1,0xa0,0x68,0x6e, +0x02,0xca,0x4b,0x59,0x85,0xeb,0xf8,0x47,0xc4,0xef,0xe9,0x71, +0x58,0x73,0x1a,0xfe,0xe2,0x30,0x9c,0x39,0xd7,0x7d,0xb6,0xe7, +0x6c,0x0f,0x07,0x43,0x43,0xe2,0x76,0xe3,0xcb,0x4c,0x1c,0x16, +0x87,0xe1,0xd9,0x00,0x0c,0x0f,0x39,0x1e,0x4c,0x2b,0x97,0x74, +0x2b,0x78,0x72,0x11,0xa8,0x35,0x7c,0x59,0x79,0xb4,0x97,0x37, +0x3d,0xb2,0x3f,0x6c,0x6f,0x44,0x01,0x6c,0xcb,0x81,0x03,0x19, +0xa0,0xcf,0xc1,0x01,0xe6,0x0c,0x56,0xa6,0xa0,0x66,0xc3,0xe2, +0x62,0xfd,0xd1,0xe4,0x94,0xcb,0x72,0x30,0xe1,0xed,0x0a,0x95, +0xc6,0x35,0x05,0x73,0xf2,0xf2,0xee,0x52,0x16,0x67,0x5a,0x50, +0xba,0xaf,0x05,0xea,0x2c,0x98,0xcc,0x41,0xf5,0x7d,0x52,0x63, +0xa6,0xb4,0x61,0x91,0xfa,0x3d,0xa4,0xcd,0x3f,0xf0,0x28,0x89, +0xba,0xef,0x09,0x93,0x03,0x6f,0xd0,0x5a,0x51,0xa6,0x55,0x3d, +0xaf,0x60,0x2b,0x87,0xe7,0xd6,0x10,0x59,0x9c,0x4e,0xac,0x56, +0x3c,0x4d,0x4b,0xd8,0xd9,0x8f,0x3b,0x61,0xb2,0x09,0x4e,0xc6, +0x03,0x66,0x70,0x00,0x97,0xb0,0x9a,0xf1,0x9a,0x09,0x46,0x27, +0x52,0xe8,0xb8,0xde,0xcf,0x04,0x93,0x4a,0x78,0x9b,0xd2,0x60, +0x21,0x88,0xb2,0x70,0x58,0xf6,0xe8,0xca,0xad,0xd4,0x9f,0xa9, +0xc8,0x4e,0x59,0xf1,0xd9,0x21,0x58,0xb6,0xb5,0xa6,0x97,0xc7, +0xad,0x4f,0xb5,0x6f,0xc0,0x74,0x15,0x98,0xa1,0x87,0x33,0x58, +0x9c,0xa1,0xa1,0x8e,0x1b,0x3f,0x51,0x15,0xa7,0x1f,0x21,0xa0, +0x74,0xab,0xbd,0x3f,0xeb,0x16,0x97,0x82,0xde,0x23,0xb0,0x8e, +0x49,0x39,0x77,0x56,0xda,0x21,0x64,0xc6,0xee,0x9a,0x56,0x9c, +0x76,0x27,0x36,0x75,0x62,0x3d,0xc0,0xf8,0x58,0xa5,0xc4,0x6e, +0xd8,0xd6,0x8d,0xdb,0xbe,0x64,0x86,0x53,0x06,0xd2,0x5a,0x33, +0x02,0xdb,0x79,0xaa,0x11,0x54,0xa3,0xf0,0xa3,0xc4,0x6c,0x1b, +0xbe,0xef,0xec,0xd0,0xf9,0xc1,0x24,0x6e,0x3f,0x9a,0x5b,0xc2, +0x6e,0x36,0xd0,0x5c,0xd7,0x74,0x85,0x29,0xa7,0x78,0x09,0xf7, +0x49,0x98,0x46,0xa0,0x81,0x97,0x65,0x57,0x10,0xdf,0x30,0x5c, +0x76,0xa5,0xf0,0x06,0x27,0x2e,0xce,0x24,0x31,0x9a,0x41,0x5a, +0x6e,0xe6,0x5d,0xc1,0x7c,0x43,0x7f,0xe5,0xfd,0xcc,0x5b,0x1c, +0xa8,0x8f,0x57,0x91,0x7f,0xdd,0xea,0xad,0x24,0xba,0x31,0xc9, +0xc5,0xc9,0xc5,0x92,0x5b,0x67,0xf4,0xff,0x67,0x8e,0x19,0x58, +0x33,0x87,0x97,0x79,0xcf,0xb7,0x5e,0x82,0x33,0x68,0xf0,0x98, +0x42,0x78,0x16,0xe8,0xe7,0x80,0xf1,0x44,0xf0,0x7c,0x14,0x8d, +0xca,0x71,0xb8,0xfc,0xa8,0x72,0xd9,0x70,0xd1,0x58,0xfe,0x18, +0x47,0x45,0xe5,0x11,0xdc,0xab,0x64,0xfe,0x26,0x78,0x94,0xa5, +0xe0,0xa9,0x51,0x83,0xf7,0x27,0x82,0x67,0x19,0x8b,0x8f,0x9e, +0x13,0xb3,0x46,0xa3,0x72,0x93,0x52,0x29,0x3c,0x02,0x06,0xfd, +0x7b,0xdc,0xe9,0x94,0xed,0xb9,0x44,0x06,0x40,0x29,0x1f,0xf6, +0x41,0xb6,0x0a,0xac,0x12,0x6c,0xfa,0xc4,0x54,0x74,0x60,0xf1, +0x54,0x34,0x6e,0xb1,0x58,0xae,0x2a,0xb4,0x6d,0x26,0x62,0x09, +0xe3,0x11,0x5f,0xd0,0x7a,0x46,0x2d,0x55,0xa8,0x56,0xc2,0x43, +0xcc,0xf9,0x1e,0x9a,0xf4,0x6d,0x1c,0x04,0xf6,0x89,0x33,0xcd, +0x5f,0xd3,0x9c,0x3f,0xee,0x27,0x4e,0x09,0xc3,0xe9,0x91,0x27, +0x22,0x4f,0x46,0x49,0xc5,0xea,0x6b,0xf9,0xcb,0xca,0xde,0xbc, +0x84,0x01,0xde,0x27,0xde,0x22,0xca,0x34,0x2a,0xe7,0x55,0x1e, +0xf8,0x67,0x83,0x1d,0x07,0x1f,0x30,0xc7,0xc5,0x23,0x34,0xe3, +0xf3,0xa4,0x8c,0xcf,0x79,0x93,0xf1,0xd7,0x58,0x19,0xcd,0xf8, +0x4f,0x92,0x89,0xa0,0xdf,0x83,0xa6,0x5f,0xc3,0xee,0x6e,0xdc, +0x7d,0x17,0xd6,0xc0,0x5d,0xfc,0x0f,0xde,0x85,0x75,0xfb,0x70, +0x97,0x25,0xec,0xda,0x8c,0x56,0x0c,0x58,0x09,0x1f,0x93,0x85, +0xcf,0x7f,0x67,0x7a,0xd7,0x93,0xe7,0xaf,0xd6,0xb3,0xb8,0xda, +0x96,0xac,0x5b,0xf8,0x9d,0xf4,0x20,0xed,0xab,0x75,0x4b,0x18, +0xd1,0x15,0x1d,0x48,0xe4,0x43,0x9f,0x17,0xfe,0x57,0xad,0x8f, +0xf0,0x65,0x46,0x15,0xeb,0x0a,0x36,0x4a,0xa0,0x75,0x9a,0xf8, +0x3e,0x3d,0x01,0x6b,0x4f,0xc1,0x9f,0x9c,0xc4,0x75,0xba,0xcf, +0x4d,0x44,0xf9,0xc8,0x90,0x28,0x33,0x7e,0xfa,0x26,0xca,0xcf, +0x04,0x60,0x84,0x84,0xbc,0x11,0x27,0xb9,0x76,0xfc,0x43,0xe1, +0x0c,0x3f,0x0f,0x88,0x8b,0xff,0x33,0x6d,0x64,0x18,0xbe,0x65, +0x33,0xcc,0xe1,0xed,0x22,0x98,0xd7,0xf0,0xa8,0x4a,0xf9,0x68, +0xaf,0x69,0xc4,0xbe,0xb0,0xdd,0x11,0xca,0x34,0xee,0x73,0xe1, +0x40,0xa6,0x14,0xf7,0x07,0x69,0xdc,0x57,0xa5,0xa0,0x46,0x23, +0x8d,0xfb,0x91,0xa4,0xd4,0xb1,0x7f,0xe3,0x3e,0x4c,0x88,0x24, +0xe8,0x04,0xc9,0xd2,0x5a,0x5a,0xd6,0xb8,0x51,0xba,0x54,0xbd, +0x18,0xa7,0x48,0x0f,0xb6,0xff,0x4c,0xa2,0xef,0x7b,0xc0,0xdb, +0x01,0xd7,0xad,0xff,0x09,0xf4,0x2d,0x9c,0xa8,0x67,0x43,0x60, +0x04,0x79,0x2a,0xb1,0x60,0x3b,0x8c,0x10,0x1c,0x81,0xb9,0x30, +0xc2,0xa2,0x97,0x25,0xfd,0x0d,0x07,0xfa,0x13,0xb0,0x03,0x9d, +0x08,0x38,0xb5,0xa2,0x13,0x3b,0xbd,0x0b,0x92,0x09,0x90,0xf3, +0xb0,0x39,0x19,0xa6,0x65,0x67,0x1c,0x91,0x1e,0x21,0x6f,0x29, +0xe5,0x83,0xda,0x7c,0x7a,0x3c,0x9a,0x5d,0x82,0xf9,0xf4,0x98, +0x8c,0xe8,0x8c,0x48,0xa7,0x93,0x0e,0x27,0xed,0x4e,0x71,0x5f, +0x82,0x2e,0x94,0xa2,0xee,0x65,0x70,0xec,0x42,0xc7,0x6b,0xe6, +0x87,0xd0,0xd6,0x0a,0x6c,0xf5,0x51,0x13,0x4b,0x41,0x73,0x2b, +0xab,0x71,0x4a,0xfd,0xd4,0xa1,0xd3,0x9c,0x42,0xc0,0x61,0x12, +0xf0,0xed,0x09,0x58,0x75,0x1a,0x40,0x5a,0x10,0xe6,0x5f,0x20, +0x68,0x1c,0x12,0xb7,0x1a,0x7f,0xc1,0xc4,0x63,0x49,0x04,0x9e, +0x0b,0xc4,0xb0,0xd0,0xe3,0xa1,0x27,0x42,0x25,0x20,0xf8,0xbd, +0x08,0xc8,0x85,0xbb,0x15,0xc7,0x7a,0x79,0x8b,0x23,0x5a,0xe1, +0xea,0x47,0xf2,0x61,0x5b,0xb6,0x84,0x03,0x06,0x12,0x6b,0xc0, +0xa2,0x14,0xd4,0xad,0x5b,0xa8,0x5a,0xa4,0x3f,0x9a,0x94,0x32, +0x56,0x04,0x86,0xbc,0x63,0x91,0xd2,0xf8,0x3e,0x61,0x07,0xd1, +0xc4,0xd9,0x37,0x59,0xd0,0xd4,0x24,0x37,0x41,0x59,0x93,0xc5, +0x6b,0xf6,0x04,0x66,0xab,0xe3,0x6c,0x06,0x34,0xe7,0xdc,0x06, +0x65,0x75,0x56,0x78,0x0b,0xd3,0x48,0xcc,0x03,0x6f,0x78,0x2b, +0xf8,0x86,0x6d,0x38,0x5f,0xa2,0x55,0xbe,0x20,0x6f,0x33,0x87, +0xd1,0x65,0x64,0xfe,0xb0,0xcc,0x48,0xda,0x54,0xeb,0x73,0x5c, +0x81,0x93,0xa4,0x2d,0x62,0x9f,0x32,0x2d,0x39,0x39,0x2d,0x6a, +0xb0,0xf0,0x4f,0x56,0x5c,0xef,0x40,0xea,0xfd,0x2f,0xb8,0x54, +0xbb,0x5d,0xac,0xe5,0x7d,0x1a,0x5c,0x9b,0x3c,0xca,0xa8,0x22, +0xfa,0x5b,0xb1,0x93,0x74,0x42,0x91,0xf5,0x70,0x27,0x14,0xf4, +0x60,0xc1,0x80,0x91,0x29,0x16,0x0d,0x18,0x9a,0xe2,0x59,0x0b, +0x38,0x6b,0xcd,0xe2,0x1e,0xb4,0x25,0x8a,0x28,0x38,0x30,0x1e, +0xc5,0x40,0x84,0x0d,0xd9,0x8e,0x7b,0x1e,0xb1,0x82,0xea,0x76, +0x82,0xbb,0x1e,0xc1,0x2e,0xa6,0x7f,0x3b,0x79,0x04,0x5a,0xdb, +0x59,0x78,0x77,0x11,0x19,0x17,0x50,0x75,0xf8,0xa9,0x22,0xe1, +0x93,0x61,0xc6,0x1c,0x2f,0x13,0xfd,0x66,0xf7,0xa1,0xa3,0x30, +0x85,0x13,0x75,0x99,0x94,0xe2,0x14,0x79,0xb2,0x9c,0x13,0x62, +0x7b,0xc6,0xb5,0x2c,0x40,0x8d,0x09,0xd9,0xec,0xb9,0xce,0x66, +0x83,0xed,0x29,0xeb,0xd3,0xd6,0xa7,0xd2,0xcc,0x78,0x38,0x93, +0x01,0x31,0x99,0x60,0x9f,0x77,0xba,0x83,0xc7,0x65,0xb1,0xb8, +0x25,0x01,0xf7,0x27,0x94,0x74,0x14,0x75,0x17,0x74,0x73,0xc2, +0x12,0x26,0x73,0x63,0xb3,0xde,0x90,0xc3,0x45,0xbf,0xb6,0xe3, +0x59,0x7d,0x95,0x30,0x8d,0xb7,0xa9,0x52,0xc2,0x51,0x03,0x62, +0x5c,0x6d,0x58,0x66,0x54,0xe8,0xeb,0xcc,0x5f,0x0d,0x1d,0x09, +0xec,0xf7,0xa5,0xe9,0x59,0xa0,0xf8,0x92,0x18,0x18,0x8a,0x9f, +0x58,0xc0,0x1e,0x26,0xc4,0xc3,0xdf,0xcb,0xd7,0x27,0x2a,0x23, +0x2a,0x23,0x3a,0xcd,0xdb,0x95,0x6f,0x0e,0xea,0xf2,0x68,0x71, +0x8f,0x8c,0x8e,0x8c,0x3a,0x12,0xed,0x7f,0xca,0xef,0x94,0xcf, +0xe9,0x34,0x4b,0xfe,0xdb,0xa4,0xaf,0xd3,0x6e,0xa4,0x9b,0x5a, +0xee,0xf7,0x58,0xec,0x2f,0xb7,0xe2,0x61,0x5b,0xd7,0xcb,0x3b, +0x23,0x7f,0xba,0x54,0xf0,0x47,0x23,0xe3,0xa2,0xe2,0x69,0xb1, +0x89,0xe5,0x07,0x7b,0xba,0xfb,0x7a,0xae,0x39,0x94,0xf3,0xde, +0x0e,0xee,0x8e,0x4e,0xce,0x47,0xb2,0x23,0xb2,0x23,0xb2,0x6a, +0xeb,0x2a,0xea,0xaa,0x2e,0xfa,0x14,0xf0,0x70,0x85,0xf1,0xd1, +0xb7,0x33,0xd5,0xb2,0xac,0x76,0xe3,0xd3,0x53,0x33,0x52,0x33, +0xd2,0x39,0x0c,0x11,0xc2,0x5b,0xd1,0x73,0x10,0x4c,0x9a,0xd1, +0xa4,0x17,0x4c,0x5a,0xd0,0xa4,0x1b,0x3c,0x5b,0xd1,0x8e,0xcd, +0x2d,0xca,0x28,0x48,0xc9,0xb5,0xce,0xe1,0xe3,0x43,0x63,0x82, +0xc2,0x83,0x39,0xfc,0x90,0xc9,0xca,0xcf,0xc8,0x4f,0x93,0xd6, +0xee,0x16,0x96,0xf7,0x88,0x07,0x19,0xf8,0x04,0x7d,0x09,0x6e, +0x69,0x65,0x92,0x92,0x95,0xa4,0x4b,0x22,0x5b,0x70,0x11,0xe9, +0x85,0x2d,0x32,0x16,0xb7,0xac,0x20,0x83,0xb0,0xc5,0x84,0xa5, +0xd2,0xea,0x63,0x22,0xbb,0xe8,0x3d,0x96,0xf8,0x03,0x27,0x7a, +0x32,0x29,0x85,0xc9,0x85,0x49,0x85,0x9c,0x00,0x9d,0xff,0x99, +0x64,0x0d,0x8e,0x4c,0xe8,0x36,0xaf,0x4f,0xac,0x36,0xbb,0x9c, +0x72,0x3e,0xed,0x7c,0x3a,0xd5,0x82,0x87,0xd3,0xe9,0x10,0x95, +0x01,0x76,0x79,0xa7,0xdb,0x78,0x5c,0x13,0x8b,0xbb,0x8e,0xa1, +0x56,0x62,0x69,0xbb,0xbc,0x3b,0x9f,0xce,0xeb,0x3e,0x26,0x7d, +0x4b,0xbd,0x7e,0xbf,0x4b,0xad,0x4f,0xcf,0x99,0xac,0xce,0x1a, +0xe0,0x78,0xeb,0x5a,0x25,0x1c,0xd6,0x25,0xa6,0x15,0x86,0xc5, +0xc6,0xf9,0x7e,0x2e,0xfc,0x70,0xf8,0x48,0x48,0x9f,0x3f,0x95, +0x4e,0x21,0x8a,0x02,0x32,0x64,0x64,0x8c,0xea,0xd6,0xc2,0xbe, +0x4e,0x76,0x3c,0x5d,0x5c,0x48,0x60,0x10,0x4c,0xb1,0x87,0x39, +0x57,0x78,0xa6,0xe0,0x4c,0x81,0xf4,0x80,0x91,0x0e,0x7e,0x83, +0x84,0xd9,0x7c,0x7c,0x87,0xf6,0x16,0xd5,0x36,0x87,0xc6,0xae, +0xc2,0xde,0x8c,0x1e,0x65,0x88,0x86,0x60,0xb2,0x0e,0xfd,0xbf, +0x63,0x85,0xc3,0x38,0x8d,0xc4,0x95,0x87,0xd7,0x44,0xe7,0x51, +0xda,0x91,0x1d,0x96,0xe7,0x93,0x11,0xcc,0xad,0xc4,0xf7,0x88, +0x35,0xec,0xd8,0x32,0xfc,0x04,0x74,0x3a,0x51,0xe7,0x16,0x38, +0x74,0x52,0xb6,0x95,0x5f,0x9a,0x5b,0x91,0x59,0x66,0x95,0xcb, +0xc7,0xfa,0x45,0xfa,0x84,0x78,0x70,0x98,0x6b,0x0d,0x06,0x1a, +0x0c,0xca,0xf3,0xc9,0x22,0xb4,0xf8,0x8d,0x55,0xac,0x15,0x5b, +0x88,0xfe,0x25,0xdf,0xc1,0x13,0x30,0x8b,0x13,0x7d,0x98,0x14, +0x5a,0xd8,0x93,0x8b,0x39,0xe1,0xaf,0xde,0xff,0x70,0x32,0xf0, +0x60,0x42,0x56,0x7b,0x2c,0xb5,0x58,0x29,0x4d,0x82,0xd3,0x69, +0x29,0xb8,0xce,0x66,0x40,0x5c,0x16,0x38,0xe6,0x9e,0x6e,0xe7, +0x71,0x6d,0x3c,0xee,0x39,0x8a,0x3a,0x09,0x65,0xbd,0xc5,0x43, +0xf9,0xc3,0x9c,0x70,0x90,0x49,0x5b,0x55,0x7d,0x70,0xd8,0xb1, +0xc5,0xb7,0x3b,0x31,0xab,0xa7,0x1a,0xa6,0xf3,0x16,0x15,0x74, +0x12,0x4c,0x88,0xf1,0x05,0xe3,0x32,0xfd,0x52,0x5f,0x27,0xfe, +0x5a,0xe0,0x90,0xdf,0xa0,0x17,0x9d,0x84,0x3f,0x14,0x2b,0x09, +0x7e,0x30,0x0a,0x5a,0x14,0x59,0x6a,0xcb,0x6a,0x2e,0xc8,0x2b, +0xad,0x2a,0xf9,0x60,0x1f,0x1f,0x0f,0x17,0xbf,0x9a,0x60,0x1e, +0xf7,0x4c,0x94,0x4b,0xdc,0xcb,0x34,0x95,0xf8,0x36,0x78,0x57, +0x7b,0x97,0x2b,0xdb,0xfa,0xd6,0xf8,0x57,0xfa,0x55,0x78,0x2b, +0xa3,0x0d,0x6a,0x8d,0x52,0x3c,0x57,0x90,0x43,0x44,0xec,0x43, +0x0b,0xa1,0x8f,0x31,0x82,0x25,0x64,0xa5,0xa8,0xfb,0x13,0x4b, +0x79,0x48,0x3c,0xb9,0xaa,0xab,0x23,0x06,0xd0,0x3f,0x92,0x94, +0x9f,0x8f,0x4f,0xae,0xb4,0x09,0x01,0x76,0x57,0xe0,0x09,0x2c, +0x18,0x60,0xc7,0x77,0xe1,0x7c,0xf2,0x8d,0x10,0x40,0x89,0x5b, +0x80,0x39,0x11,0x02,0xd6,0x88,0x01,0x13,0x2b,0x3d,0xc6,0x93, +0x82,0xc6,0xdc,0xe6,0xec,0x16,0x69,0xe1,0x44,0x2d,0xdc,0x6a, +0x02,0x5b,0xd1,0x16,0x3d,0x8d,0x04,0xff,0x61,0xb4,0x03,0x5b, +0xd8,0x3f,0x88,0xfb,0x41,0x0b,0x8c,0x86,0xd1,0x08,0x36,0x1b, +0xe0,0xe6,0x45,0x4c,0x7a,0x63,0x4a,0xe3,0xf9,0x06,0xb3,0x34, +0x3e,0x7e,0x8d,0xef,0x72,0x97,0x03,0xdc,0x45,0xb1,0x98,0xe0, +0xb4,0x8d,0x25,0x6d,0xda,0x6a,0x55,0x3d,0xd9,0xa3,0xe7,0xee, +0x73,0xa0,0x29,0xcc,0x41,0xad,0x57,0xe0,0xd5,0x2f,0x06,0x9a, +0x81,0xdb,0x12,0x54,0x17,0xe7,0x50,0xd0,0x3e,0xa5,0x1b,0x67, +0x1d,0xe2,0xe2,0x56,0x1f,0xd0,0x76,0xb8,0xcf,0xc6,0x97,0x2f, +0x36,0xa9,0xb1,0x68,0x71,0xf4,0xf1,0xb6,0x0f,0x34,0x08,0xa8, +0x34,0xe5,0xaf,0x57,0x77,0xd5,0xd4,0x37,0x71,0xb2,0x3b,0xbf, +0xf8,0x00,0x3f,0x57,0x38,0xc4,0xa4,0x8d,0x2a,0x8d,0xbb,0x49, +0x57,0x6b,0x28,0x73,0x00,0x96,0xa5,0xf4,0x83,0x25,0xc0,0xc2, +0x2c,0x64,0x59,0x54,0xa7,0x20,0x3d,0x8d,0x76,0x4f,0x93,0xba, +0xa7,0x11,0x98,0x46,0xbb,0xa7,0xb1,0xd3,0x85,0x3f,0x84,0x7e, +0x62,0x5d,0x0e,0x4c,0xfb,0xef,0xbd,0x9f,0x5d,0x56,0x1e,0x1e, +0xf7,0x30,0x52,0x4c,0x61,0xf5,0x1d,0x57,0x3b,0x2e,0x73,0x35, +0xaa,0x35,0xae,0x31,0xa9,0x74,0xb6,0xe5,0xaf,0x7b,0x7e,0xe6, +0x7c,0xc3,0x95,0x13,0x27,0x8f,0x4f,0xbd,0x0a,0x91,0x50,0x8e, +0x1e,0x63,0xe0,0x01,0x03,0x34,0x47,0x0e,0x31,0xb9,0x26,0x4a, +0xf0,0x09,0xd3,0x5e,0x22,0x6f,0x57,0x13,0x3a,0x58,0x71,0x2f, +0xee,0x21,0x48,0x7f,0x0e,0xca,0x99,0x31,0x64,0x08,0x48,0xdb, +0x06,0x33,0xec,0xf8,0x6c,0x53,0x42,0x0f,0x9b,0x8a,0xe5,0x0c, +0x3c,0x83,0xa9,0x84,0x76,0x4e,0x45,0x69,0x99,0x49,0x55,0xe9, +0x1e,0xe0,0x5c,0x85,0xbb,0x30,0x97,0x15,0x17,0xe1,0x0e,0x82, +0x99,0xb4,0x02,0x65,0xd2,0x43,0x27,0xee,0x9a,0x96,0x4b,0x77, +0x4d,0x9f,0x99,0x4b,0x17,0xf5,0x33,0xe1,0x1d,0x16,0xee,0xce, +0xa1,0x5d,0xef,0xd0,0x1f,0x11,0x03,0x71,0x15,0x31,0x12,0x0e, +0x61,0x3a,0x06,0xb0,0xf9,0x86,0x4a,0x60,0xce,0xf4,0xca,0x0b, +0x7b,0xd5,0xe0,0xa4,0xb0,0x6c,0x98,0x1a,0xd5,0x25,0xfc,0x44, +0x22,0xee,0xda,0xff,0xe5,0x72,0x4d,0x2f,0x94,0xaf,0x33,0x6c, +0xc7,0x49,0x45,0xbb,0x39,0x08,0xb7,0x22,0x03,0x0f,0xae,0xc0, +0xfb,0x35,0xf7,0x74,0x8a,0x79,0xdf,0x9d,0xfb,0x70,0xa1,0xd1, +0x0e,0x4e,0xcc,0x16,0x5f,0x5d,0xfb,0x4c,0xf1,0xd6,0xc1,0xab, +0xc2,0x2b,0x46,0x7c,0x32,0x44,0x02,0x3e,0xb3,0x7a,0x66,0x7d, +0xd9,0xd8,0x87,0xbf,0x64,0xdc,0xbd,0xa9,0x7a,0x2f,0x07,0x11, +0x98,0x4f,0xb0,0x18,0x34,0xa0,0x98,0xb9,0x82,0x1a,0xd2,0x6b, +0xb9,0xcd,0xa8,0xc1,0xe2,0xef,0xc6,0xd2,0x03,0x3e,0xc5,0xa0, +0xcd,0xc2,0x37,0x73,0x68,0x97,0x36,0x36,0xd3,0xe8,0xb0,0x13, +0xf6,0x10,0xf8,0x10,0x26,0xdf,0x85,0x77,0xf3,0x40,0x85,0x4b, +0x66,0x72,0x50,0xe5,0x05,0x4e,0x85,0x8f,0xf1,0xed,0x86,0x01, +0x1e,0xe7,0x81,0xd2,0x56,0xe0,0x02,0x60,0x3a,0xa7,0xce,0xf8, +0xe1,0x54,0x0d,0x24,0xc8,0xcf,0xe7,0xb0,0x4b,0xcc,0x25,0x8f, +0xe1,0x82,0xe2,0x14,0xfe,0x38,0xfe,0x88,0x1d,0x52,0x94,0x92, +0x6f,0xb0,0x65,0x13,0x03,0xf3,0xa1,0x85,0x3c,0xc3,0x96,0x0d, +0x0c,0x74,0x07,0x12,0x0c,0xf0,0xa2,0x1e,0x64,0x90,0x51,0xad, +0x37,0x55,0xa2,0xe7,0xf8,0xb0,0x09,0x16,0x41,0xb4,0x4a,0x83, +0x21,0x4b,0xc5,0x63,0x13,0x19,0x15,0x9a,0x0c,0x98,0xf1,0xb9, +0x87,0xe8,0xa1,0xfd,0x13,0x87,0xf6,0xd3,0x43,0xfb,0x37,0x48, +0x6f,0x05,0xc3,0x3d,0x02,0xd9,0x7f,0x0c,0x2d,0x00,0x99,0x01, +0xca,0x50,0x17,0x64,0x86,0xf4,0xe3,0x6d,0x63,0x78,0x1b,0xa9, +0x6e,0xf8,0x34,0xfa,0x74,0xb4,0xaa,0x74,0xbb,0x97,0xa5,0x25, +0x74,0xa6,0xe7,0xae,0xdd,0x1b,0xdb,0x28,0x3a,0xff,0x55,0xff, +0x6b,0x06,0x1d,0x3f,0x18,0xe2,0x8b,0x51,0x78,0x01,0xec,0x10, +0x33,0x3e,0x82,0x3f,0xd2,0x41,0xa6,0x28,0xc2,0xf0,0xc6,0xf8, +0x15,0x16,0xe6,0x28,0x52,0x09,0xd6,0xed,0x85,0x3a,0x16,0x1c, +0xe7,0x60,0xdd,0x6e,0xa9,0xf1,0xad,0xb8,0x8b,0x9c,0xc9,0xfd, +0x34,0x2f,0x5f,0x05,0xdc,0xa8,0xf2,0xcf,0x66,0xc5,0xdb,0xdf, +0x11,0xec,0xdc,0x0b,0x9d,0x13,0x5f,0xea,0xdc,0x4d,0x1b,0xd3, +0xff,0xd6,0x86,0x97,0x64,0x04,0x83,0x2b,0x58,0xd8,0x09,0xa6, +0xc3,0x68,0x0a,0x07,0xf4,0xa8,0xfa,0xd1,0x92,0x1e,0x7b,0xdb, +0x49,0x95,0x89,0xbb,0x21,0x38,0xb3,0x91,0xf8,0xb1,0x2e,0x4e, +0x41,0x3d,0x9c,0x56,0x63,0xcc,0x83,0x3e,0xcc,0xba,0x03,0xb3, +0xce,0xc3,0x42,0x89,0x2c,0xe3,0xbc,0xab,0x38,0x1b,0xd6,0xe2, +0xfb,0x0d,0x43,0xb4,0x62,0xc1,0xd4,0x43,0xf0,0xd6,0x11,0x98, +0xcf,0x8d,0x2f,0x10,0x5c,0xc9,0xf8,0xa3,0xd1,0xc7,0x50,0xae, +0x38,0xc5,0x62,0x35,0xfe,0x42,0xa0,0xe5,0x31,0xb6,0xb0,0x03, +0x73,0xa0,0xe5,0x6b,0xfa,0x89,0xc1,0x28,0xd0,0xc8,0x7b,0x8c, +0x03,0x52,0xd7,0xc0,0xd7,0xf4,0x73,0xba,0x60,0x2d,0x9c,0x24, +0x30,0xe3,0xe7,0xdb,0xdf,0x95,0xfc,0x46,0x7f,0xbb,0x74,0xe9, +0xd3,0x95,0x30,0x7f,0x5e,0x7d,0x3f,0x8f,0x1f,0xfd,0xbe,0xe9, +0x07,0xf7,0x1f,0x38,0x0d,0xc6,0x67,0xbd,0xd6,0x0a,0x9c,0xb5, +0x8a,0xc3,0x3a,0xf1,0x1b,0x6a,0x7f,0x3e,0x75,0xd2,0x43,0xea, +0xa4,0x41,0xea,0xa4,0x2f,0xb0,0x65,0x27,0x03,0xca,0xd4,0x49, +0x5f,0x61,0xcb,0x36,0x46,0xb0,0x04,0x55,0x62,0xb4,0x6b,0xd9, +0x8e,0x45,0x36,0xe5,0x16,0xfc,0x9f,0xbd,0xaf,0x1f,0xdc,0xf8, +0x9e,0xeb,0x58,0x42,0x76,0xcc,0xc7,0xb9,0x0b,0x70,0xbe,0x41, +0xa9,0x39,0x0f,0xf3,0xaf,0x80,0xda,0xeb,0x17,0x30,0x83,0x1b, +0x77,0x0c,0xa7,0xc7,0x0f,0x4e,0x1c,0x3f,0x48,0x8f,0x1f,0xdc, +0xc6,0x28,0xe8,0x24,0x91,0xc5,0x38,0x1f,0xf7,0xe3,0xfb,0xa8, +0xad,0x5f,0x6a,0xc2,0x83,0xce,0x75,0xd0,0x86,0xd9,0x40,0x2b, +0x12,0x25,0x0b,0x03,0x0a,0x4b,0x02,0xb3,0xf4,0x71,0x16,0xca, +0x4c,0x04,0xfb,0x41,0x56,0xb0,0x1c,0x4f,0x24,0x5e,0xa0,0xba, +0x17,0x22,0x65,0xf0,0xae,0x49,0x20,0x5f,0xbb,0xa3,0x0d,0x3f, +0xac,0xc7,0xa9,0xbb,0x0e,0x2f,0x0f,0x5b,0x11,0x39,0x08,0xa1, +0x5d,0xf0,0x6d,0x31,0x04,0x69,0xa7,0xf0,0x61,0x18,0x2a,0xc3, +0x3f,0x8c,0x30,0xc8,0x3e,0x91,0x17,0x9a,0xc4,0x0f,0xc7,0x67, +0x5c,0x7e,0x00,0x3d,0x6c,0xaa,0x25,0x7c,0x9c,0x07,0xdb,0x2a, +0xe0,0xbd,0x0b,0xca,0xe9,0xee,0xe9,0x9e,0x29,0x7e,0xdc,0xf8, +0x3c,0x2a,0x4d,0xe6,0x81,0xf1,0x5f,0xcc,0x00,0x1a,0x13,0x90, +0x6e,0xa0,0x1a,0xb3,0x58,0x6a,0x4e,0xfe,0x42,0xc7,0x79,0x0c, +0x6c,0xa6,0x43,0xa4,0x5d,0x8e,0x38,0x99,0x99,0xfe,0xb7,0x19, +0xb4,0x11,0x5c,0xd8,0xb5,0xb2,0x7b,0xef,0x0d,0x0e,0x06,0x06, +0xc4,0x70,0xa6,0xb0,0x3a,0xaf,0x36,0xa7,0xfe,0xbb,0xa4,0xe7, +0x29,0x5f,0xa5,0x15,0x87,0xc8,0x83,0x0b,0x43,0x3a,0x9b,0x78, +0x9d,0xcf,0xb7,0x7f,0xbe,0x7f,0xd8,0xde,0x8d,0xaf,0x0b,0xa8, +0xf3,0xab,0xf5,0xc6,0x39,0xf1,0xb8,0x38,0x01,0x57,0x1f,0xef, +0xec,0x6c,0xeb,0x6b,0x19,0xd5,0x2d,0xe4,0x5d,0x0c,0xcd,0x74, +0x75,0xf4,0x71,0xfa,0x49,0x3e,0xc5,0x04,0xde,0x3e,0x07,0xd3, +0xce,0x03,0x97,0xa4,0x7c,0xc4,0x23,0xc2,0x3b,0xcc,0x8f,0xc3, +0x9f,0x4d,0xa1,0x87,0xd1,0xd6,0x5c,0x6d,0x8e,0x2b,0xad,0xca, +0xcc,0xf9,0x8b,0x59,0xf5,0xd9,0x75,0xd9,0x1c,0x0a,0x63,0x7d, +0x42,0x99,0xf9,0x65,0xf8,0x3f,0x6c,0x5d,0x54,0x7d,0x74,0x53, +0x34,0x37,0xbe,0xf2,0x29,0xb9,0xd2,0xd8,0xdd,0xda,0xdc,0xc5, +0xc1,0x42,0xa6,0xd5,0x72,0xc0,0xe1,0x16,0xc5,0xac,0x53,0xb8, +0x9c,0xfc,0x0c,0x61,0x2b,0xd8,0xe1,0x39,0x3f,0xc3,0xc9,0x15, +0x2c,0x0e,0x58,0x90,0x25,0x18,0xf6,0x8a,0x85,0xc6,0x39,0x70, +0x72,0x09,0x9e,0xa4,0x09,0xb2,0x99,0xc2,0x45,0x36,0xca,0x9f, +0xa1,0x1f,0xac,0xc0,0x03,0xad,0x6d,0xfc,0xce,0xef,0xf5,0x5e, +0x3a,0x01,0x37,0x36,0x7c,0xe5,0x6e,0xcb,0x4d,0xdb,0x7a,0xde, +0xdd,0xc0,0xe2,0x90,0xb9,0x2c,0xf8,0x71,0xd4,0xf7,0x89,0xaf, +0x39,0x88,0x1e,0xc4,0xb3,0xb0,0x4a,0x1f,0x57,0x61,0x30,0x15, +0xe2,0x8c,0x3b,0x7e,0xb0,0x9d,0xa2,0xd2,0x5b,0x1b,0x1b,0xac, +0xf9,0xfa,0xaa,0xda,0xba,0xea,0x7a,0x0e,0xbf,0x65,0xbd,0x8f, +0x79,0x27,0x7a,0x27,0x66,0x99,0xf0,0x7f,0x14,0x02,0x53,0xfb, +0x43,0x7d,0x4c,0x0f,0x6f,0x7d,0xc4,0xec,0x88,0x71,0x24,0x27, +0x2c,0x64,0x2f,0xf4,0x97,0x8f,0xe4,0x5d,0xe1,0xc4,0xc6,0x71, +0x15,0x1a,0x52,0xb9,0x8a,0x14,0xbc,0x3f,0xfe,0x9c,0x05,0x15, +0xc5,0x05,0x82,0x1d,0xbb,0xa0,0x83,0x05,0xcf,0x39,0xd8,0xb1, +0x9d,0x36,0xcc,0xf0,0x15,0xc1,0xd1,0x5d,0x30,0x3a,0xd1,0x35, +0xba,0x9d,0x36,0xa6,0xff,0x6d,0x2a,0xd0,0xd4,0x3b,0x0a,0xf3, +0xc0,0x6f,0x90,0x0e,0x99,0x37,0xa0,0x94,0xdc,0xc9,0x04,0x9c, +0x70,0x1e,0x1e,0x36,0x81,0x9f,0x51,0x15,0xbf,0x31,0x81,0x6f, +0xb0,0x18,0x3f,0x99,0x58,0x92,0x49,0x95,0x69,0x2b,0x2c,0x6c, +0x53,0x83,0x1c,0x78,0x7b,0x10,0xdf,0x06,0x55,0x78,0x97,0x1d, +0xbf,0x2d,0x86,0x90,0x27,0x50,0xa6,0x70,0xc5,0x6f,0xc6,0xdb, +0x59,0x50,0x53,0xc4,0x13,0x2c,0xd9,0x0a,0x25,0x2c,0x04,0xcd, +0xc1,0x92,0xcd,0xb4,0x61,0x86,0x0f,0x09,0x36,0x6c,0x85,0x86, +0x89,0xae,0x86,0xcd,0x52,0xe3,0x28,0x7a,0x91,0x46,0xd7,0x56, +0x93,0x6a,0xdb,0xb6,0x7a,0xde,0xbb,0xd3,0xbe,0xcf,0xa5,0x89, +0x32,0xbf,0x7b,0x70,0x95,0x3c,0x6f,0xba,0xdd,0xde,0xde,0xc3, +0x35,0x8a,0xcb,0xd9,0x9c,0x9c,0xec,0xdc,0xac,0x3c,0x9f,0x74, +0x5e,0xf0,0x82,0x82,0x71,0x3f,0x2c,0x80,0x70,0x46,0x6b,0xef, +0x27,0x16,0xa8,0x62,0x5b,0x61,0xcb,0x8f,0x15,0xf5,0x97,0x74, +0x56,0x74,0x78,0x0e,0xf8,0x8d,0x06,0xcd,0xf7,0xc6,0x0f,0x82, +0x71,0x55,0x44,0xb6,0x8c,0x87,0x7d,0x45,0xb0,0xaa,0x16,0x66, +0x5e,0x82,0x99,0x8e,0xb0,0xcc,0x0f,0x76,0x87,0xe5,0x77,0xf3, +0xb8,0x3c,0x1f,0xdf,0x2f,0x9e,0x57,0xc5,0x21,0x27,0xa8,0x50, +0x08,0x1e,0xa5,0x08,0x4c,0xb9,0xe7,0x28,0x54,0x1a,0xd0,0xb2, +0x60,0x43,0x74,0xb0,0xf8,0x2a,0x0b,0x8f,0xe7,0x40,0xa5,0x0e, +0x56,0x32,0xe8,0x8e,0x9b,0x49,0x66,0x9a,0x92,0xc0,0x32,0x56, +0xae,0x3a,0x9e,0x3b,0x7c,0xf7,0x97,0xe9,0x56,0x9b,0xd5,0x73, +0x06,0xe2,0xa7,0xa4,0x45,0x48,0x74,0x1c,0x83,0x02,0xf1,0xff, +0x60,0x01,0x2b,0xf4,0x83,0x37,0xc1,0xf7,0xc4,0x44,0x78,0x8f, +0xe6,0x7f,0xa1,0x20,0x23,0xc2,0xec,0x76,0x71,0x76,0x2f,0x3c, +0x7b,0xfd,0x7d,0xfb,0xda,0x97,0xf8,0xac,0x55,0xdf,0x1e,0x9f, +0xda,0xc0,0x53,0x73,0x71,0x8d,0xad,0xb0,0xc6,0x94,0x9e,0x09, +0x9e,0xc9,0xc4,0xc9,0xb6,0xc2,0x64,0x73,0x71,0x93,0xf5,0xdf, +0x0b,0x3a,0x25,0xb6,0x58,0x01,0x7f,0x10,0x73,0xac,0xe8,0x63, +0xa1,0x62,0x19,0x31,0xc5,0x8a,0x01,0x56,0xfc,0x40,0xfc,0x89, +0x28,0x3c,0xe0,0xdc,0xb8,0x07,0x03,0x0f,0x96,0x10,0xcc,0x1f, +0x80,0x7c,0x66,0xd8,0x94,0xaa,0xd6,0x06,0x53,0x16,0x7f,0xb4, +0x27,0x86,0x98,0x4f,0x95,0xd3,0xfd,0x39,0xd0,0x60,0x88,0x0d, +0x8c,0xb0,0x17,0x97,0x91,0xde,0xff,0xcc,0x91,0xd1,0x51,0x68, +0x08,0x19,0x04,0x54,0xbe,0x7b,0xfc,0xa4,0xec,0x35,0x45,0xa1, +0x92,0x15,0x2f,0xb6,0xc0,0xdc,0x35,0xb5,0x14,0xde,0xe6,0x7c, +0xbd,0xe1,0xb9,0xc7,0xd7,0x14,0x85,0xbc,0x36,0xef,0x5b,0x8b, +0x1f,0x6d,0xe2,0x20,0x12,0x1f,0x8f,0x5f,0xa1,0x20,0x57,0x2c, +0x9c,0x61,0xb1,0x7c,0x09,0x81,0xda,0xaf,0xb0,0x96,0xed,0x9f, +0x03,0xb5,0x4f,0xe8,0xa7,0xf0,0xd3,0x3a,0x82,0xb1,0x30,0x0b, +0x56,0x0c,0xe2,0x9f,0x26,0xb0,0x88,0x62,0xc5,0x44,0x64,0xdc, +0xc1,0x69,0x4c,0xae,0x81,0xd2,0x2b,0xa6,0x35,0xaf,0x88,0x86, +0xc2,0x0d,0x88,0x65,0xc7,0x47,0x91,0xca,0xb9,0xf6,0xaf,0xb0, +0x5d,0x3a,0xba,0xfd,0x09,0xfd,0xa4,0x38,0xbb,0x9a,0x04,0x6a, +0x58,0x2e,0x33,0x3e,0xd4,0xea,0xc8,0x8f,0xde,0xed,0xff,0xad, +0xec,0x2e,0x07,0xe6,0x27,0xc8,0x45,0x9d,0x41,0x9c,0x5c,0xbd, +0xa3,0xa7,0x8e,0xf7,0xbe,0x67,0x0a,0x6f,0x39,0x5d,0xa1,0x6e, +0x77,0x11,0xce,0x52,0x72,0x51,0xdf,0xd7,0x50,0x5b,0x9b,0x9e, +0x96,0xf4,0x69,0x46,0x22,0x1c,0x9e,0xc7,0x57,0xf7,0xa2,0xf3, +0x2f,0xd1,0x29,0xf1,0xc7,0x8f,0x1e,0x55,0x8e,0x8d,0x3e,0x7e, +0x2e,0xa3,0x20,0x4d,0x7e,0xbe,0x44,0x19,0xfc,0xfa,0xd0,0xfb, +0xa1,0xfe,0x2e,0xb4,0x37,0x07,0x6b,0x26,0x52,0x5b,0xd7,0x05, +0x3f,0x74,0xe6,0xf0,0x9a,0x38,0x42,0xa3,0x30,0x9f,0x46,0xe1, +0x43,0x29,0x0a,0xe7,0x4e,0x44,0xe1,0x4e,0x29,0x0a,0xbd,0x68, +0x14,0x6e,0x97,0x1a,0xfb,0xb1,0x80,0x18,0x0b,0x4b,0x29,0xaf, +0x98,0xcb,0x66,0x53,0xaa,0xf1,0x1e,0xd3,0x96,0x5d,0xdc,0xa4, +0x26,0x6c,0xbf,0x3e,0xc4,0x8e,0x9f,0x34,0xa4,0x21,0xba,0x53, +0x8a,0x4c,0xfa,0xfd,0x86,0xed,0x52,0xc3,0x93,0x8a,0xa3,0xdb, +0x83,0xb7,0xc0,0x1f,0xe8,0xf4,0xf8,0xa3,0x8c,0xc0,0x02,0x4a, +0xcf,0x16,0xb0,0xd3,0x15,0x0e,0x0a,0x19,0xa9,0x2b,0xaf,0x6b, +0x2a,0xa9,0xb1,0xa0,0xdc,0xd1,0xcb,0xdb,0xcd,0xc5,0xa7,0x21, +0x90,0xc7,0x83,0xc0,0xeb,0xd1,0xfc,0xd1,0x64,0xda,0xca,0x7d, +0x9b,0xbc,0x6b,0xbd,0x2b,0x94,0xad,0x7d,0xea,0xfc,0xaa,0xbc, +0x2b,0x3c,0x24,0xee,0x68,0x34,0x0a,0x1f,0x29,0xbc,0xf0,0xa3, +0xcb,0x60,0xc4,0x8c,0x1b,0xe3,0x53,0x22,0xf4,0x81,0x9b,0xd8, +0xc7,0x8c,0x48,0x5a,0x79,0x12,0x25,0x20,0x93,0x58,0xf1,0xa2, +0x78,0x8e,0xf4,0x28,0x3e,0xb2,0xb8,0x22,0x28,0x8f,0xe7,0x88, +0xca,0x2c,0xbc,0x82,0x33,0x04,0x1b,0xbf,0x85,0x46,0x66,0x6c, +0x23,0xf9,0x16,0xfa,0x37,0xb2,0xf8,0x7f,0x2c,0xc8,0x1a,0x6c, +0x7c,0xc1,0xc2,0xcb,0x39,0xd0,0xbf,0x06,0xfb,0x29,0x53,0x98, +0xab,0xe8,0x24,0x56,0xc2,0x70,0x17,0x2b,0xbe,0xc2,0x28,0x02, +0xa1,0xd8,0x6d,0x09,0xc7,0xa9,0xbf,0x7c,0xd8,0xc4,0x43,0x31, +0x1b,0x22,0xf7,0x70,0x90,0xc7,0x6c,0x3a,0x8e,0x86,0xb1,0xba, +0xaa,0x26,0x71,0x51,0x91,0x46,0x73,0x77,0xbc,0x79,0xfd,0xfa, +0x79,0x65,0xc5,0xb3,0x1c,0xb5,0xec,0xaf,0x92,0xc0,0x14,0xa6, +0xab,0x60,0x0a,0x93,0x5c,0x93,0x36,0x7a,0xbe,0x89,0x83,0x31, +0x9c,0x41,0x04,0x0f,0xc8,0x15,0x69,0xfc,0xd9,0xcf,0x23,0xb8, +0x7c,0x0c,0x96,0x33,0x7d,0x7a,0x64,0x0c,0xd6,0xeb,0xb1,0xe8, +0x66,0x47,0xb4,0x71,0xf9,0x75,0x16,0xec,0xe6,0xc0,0x7a,0x6d, +0x5c,0xcf,0x60,0xdf,0x7a,0x7a,0xfe,0xc1,0x2e,0x76,0x7c,0x2f, +0x66,0x91,0xe0,0x04,0xdf,0x63,0xde,0x09,0x1c,0x4c,0x7a,0xd4, +0xb6,0xfd,0x85,0xd5,0x9a,0x2d,0x76,0x4f,0x70,0x2a,0xeb,0x99, +0xe0,0x95,0xe8,0x77,0x22,0xc5,0x8a,0xbf,0x9d,0xf9,0xb3,0x7c, +0xac,0x80,0x53,0x10,0x70,0x25,0x62,0x38,0xe6,0x08,0xe1,0x0c, +0x25,0x79,0x6b,0x09,0xae,0xa7,0x3f,0xfe,0xe6,0x1c,0x3b,0xe8, +0x39,0x02,0xec,0xe9,0x39,0xd6,0xd3,0x73,0xb8,0xcd,0x81,0x1d, +0xda,0xb8,0x83,0xc1,0x6b,0xb8,0x90,0x08,0xb7,0x7b,0xc4,0xdb, +0xd4,0xe0,0xad,0x54,0xeb,0xda,0x0b,0xe7,0x5b,0x31,0x6a,0x0c, +0x52,0xda,0x31,0x65,0xc8,0xd4,0x18,0x13,0x6d,0x21,0x51,0x8f, +0x15,0x53,0xc6,0x9d,0x28,0x0e,0x06,0xd3,0xd2,0x7a,0x81,0x96, +0x56,0x60,0x14,0xe5,0x04,0x5b,0x0d,0xa0,0x95,0x85,0x83,0x73, +0xb0,0x55,0x47,0x6a,0x18,0x51,0x16,0x66,0x07,0x5e,0xfa,0x78, +0xcc,0x4e,0x68,0x6a,0xc3,0x33,0x97,0xc1,0xa4,0x96,0xad,0x8d, +0x28,0xac,0xcc,0xaa,0xca,0xa8,0x51,0xbe,0x28,0xde,0xb1,0x11, +0xf2,0xd8,0x84,0x23,0xf1,0xe1,0xd1,0x11,0xdc,0xb8,0xe6,0x2e, +0x82,0x23,0x06,0x30,0x32,0x71,0xfc,0x88,0x0e,0x6d,0x28,0x3e, +0xc2,0x63,0xe4,0xea,0x9d,0x2e,0xf1,0x33,0x2b,0xc1,0x44,0x07, +0xf5,0x6c,0x40,0x0f,0x55,0xd6,0xb2,0x39,0x16,0x4a,0x77,0x98, +0xe6,0xbc,0xbc,0x8b,0x6a,0xf0,0xc1,0x57,0x1d,0xd2,0x0e,0x0c, +0x47,0x48,0x2b,0xac,0x01,0x0b,0x74,0xc0,0x04,0x16,0xd6,0x82, +0x19,0x59,0xbc,0xe0,0x35,0x0b,0x36,0xe6,0xa4,0x2c,0xb4,0xd2, +0x3b,0x3f,0xa8,0xa1,0x82,0x8f,0xa8,0xf0,0xab,0x0e,0x2c,0xe2, +0x24,0x18,0x9e,0x4f,0xfa,0xb0,0x95,0x4d,0xaa,0x3e,0x5f,0x7d, +0xae,0x96,0x83,0x53,0xbd,0x98,0xc8,0x9c,0xad,0x3a,0x53,0x75, +0xa6,0x86,0x83,0x8c,0x5e,0x4c,0x2f,0x63,0x6e,0x18,0xee,0x60, +0x63,0xd0,0x58,0x06,0x46,0xac,0xf7,0x29,0xdf,0xd3,0xbe,0xaa, +0xb8,0x53,0x06,0x5b,0x99,0x13,0x5e,0x27,0x7c,0x8e,0xfb,0x70, +0x68,0x64,0x0e,0x9a,0xcc,0x31,0x97,0x38,0xd7,0x18,0x77,0x0e, +0x3f,0x96,0xee,0x7d,0x38,0x6d,0x32,0xde,0xbd,0x4d,0xb3,0xc1, +0x8a,0xff,0xf9,0xc9,0xf5,0xef,0x5b,0x7f,0xe7,0xc0,0x05,0x23, +0x71,0x19,0x53,0x60,0x20,0x2d,0x01,0xd6,0x5e,0x58,0xd8,0xa1, +0x06,0x21,0x0f,0x06,0x76,0xdf,0x37,0xdc,0x83,0x06,0x6c,0x66, +0x7d,0x7a,0x63,0x6a,0x13,0x27,0x7e,0x23,0x2c,0x27,0xe3,0xed, +0xa3,0x4f,0x20,0x4b,0xe1,0xca,0x62,0x1e,0x7e,0x49,0xa0,0xf4, +0x01,0x96,0xb2,0x7d,0x73,0xa0,0xf4,0x4b,0xfa,0x89,0x6e,0xd2, +0xd2,0xa4,0x8d,0x0f,0xb0,0x51,0xea,0x6a,0xfc,0x92,0x7e,0x0a, +0xcb,0x77,0x92,0xe0,0x8b,0x6e,0xfd,0x01,0x55,0x36,0xee,0x7c, +0x99,0x7f,0xa3,0x99,0xdc,0x89,0x32,0x8c,0xdd,0x8a,0x2b,0x04, +0x1d,0x15,0xcb,0xc1,0x91,0x15,0xa7,0x38,0x13,0x27,0x8c,0x69, +0x66,0xa1,0xcd,0x89,0x34,0xc3,0x79,0x27,0x16,0xc7,0x5c,0x89, +0x0d,0xc6,0xd0,0xe2,0xd4,0x66,0x43,0x3a,0xe0,0xbc,0x0d,0x3b, +0x6e,0x48,0xe7,0xd9,0x59,0x50,0xa6,0x7c,0x4d,0x70,0x47,0x67, +0x69,0x87,0xb3,0xc5,0xe8,0xcc,0x62,0x33,0xec,0xa6,0xdf,0xe4, +0xe8,0x37,0xb7,0x4a,0xdf,0x9c,0x69,0xc3,0xc2,0xa5,0x0e,0xda, +0x33,0x93,0xf6,0xec,0x91,0x7a,0x08,0x3d,0x76,0xb6,0x3b,0xb1, +0x44,0xae,0x9b,0x7e,0xc7,0x92,0x74,0xc3,0x4c,0x4b,0xfa,0x9d, +0x6e,0xda,0x33,0x93,0xf6,0xec,0x91,0x7a,0x88,0x25,0x7b,0x82, +0x6a,0x54,0x9c,0x7c,0x19,0xd6,0x8c,0x03,0xae,0x19,0x85,0xc9, +0xac,0x62,0x9d,0x13,0x11,0x9f,0x62,0x2a,0x2e,0xb3,0xfa,0x7b, +0x5a,0x17,0x2e,0x67,0x0c,0xc0,0x93,0x38,0x8a,0x5e,0x2d,0xac, +0xe0,0xb5,0x85,0xd8,0x8b,0x5e,0xad,0xb4,0x81,0x3c,0x11,0xbd, +0xda,0x05,0x2f,0x2a,0x2f,0x0e,0x28,0x2e,0x13,0x74,0x51,0x2c, +0x06,0x17,0x56,0x54,0x72,0x26,0xf6,0x18,0x41,0x23,0xe9,0xa2, +0x3d,0x75,0x71,0x92,0x3d,0x8b,0x57,0x24,0x7b,0x22,0xe8,0x98, +0x2e,0x4a,0x63,0x4a,0xb2,0x61,0xed,0xc6,0x17,0x11,0xf9,0xf5, +0x82,0x1b,0x39,0xd7,0x39,0xd1,0x8e,0x49,0xa5,0x02,0x3f,0xb9, +0x80,0x13,0x2a,0xd6,0x8d,0xc2,0xc7,0xe2,0xfa,0x01,0x61,0x19, +0xf8,0x8a,0xcb,0xd1,0xd9,0x80,0x9a,0xf9,0x11,0xfa,0x0a,0xca, +0xa6,0xe2,0x7c,0xfc,0x78,0xf4,0x3b,0xd8,0xc2,0x04,0xed,0xf5, +0xd3,0x74,0xd8,0x3d,0x1a,0xc3,0x17,0x35,0x14,0xb5,0xe5,0x77, +0x70,0xc2,0x72,0x26,0x46,0x16,0x69,0x71,0x44,0xba,0x57,0x68, +0xf1,0xb7,0x6a,0x0f,0x33,0x6e,0x23,0xd4,0x51,0xe3,0xa6,0x52, +0xe3,0x76,0x48,0xc6,0x4d,0xa7,0xe6,0x36,0xfd,0x6b,0xee,0xbe, +0x7f,0xcc,0x1d,0x9f,0xe1,0x46,0x6b,0xca,0x54,0x5a,0x53,0x76, +0x98,0x93,0x3e,0x98,0x6e,0x4e,0xbf,0xd3,0x47,0x7b,0x66,0xd2, +0x9e,0x7d,0x52,0x0f,0x31,0x67,0xc5,0x44,0xec,0x27,0x77,0x42, +0x87,0x43,0x47,0x03,0x2b,0x2f,0xf1,0xba,0xe5,0x06,0x72,0xcd, +0x02,0xea,0xb8,0x75,0x0a,0x69,0xdb,0x1d,0xc5,0x41,0x69,0x81, +0xc6,0x59,0xb4,0x04,0x9c,0xe9,0x84,0x33,0xcc,0xb0,0x35,0xe9, +0x84,0x3c,0x6b,0x16,0xef,0x39,0x11,0x0b,0x3c,0xd3,0xc3,0xc2, +0xc8,0x1c,0xc8,0xb3,0xc0,0x3c,0xe6,0x39,0x2e,0x20,0xbf,0xa6, +0xfd,0x2a,0x7f,0x5c,0x11,0xd2,0xc4,0xef,0x0a,0x5e,0x7b,0x78, +0x51,0x2c,0x87,0x76,0x89,0x64,0x4b,0xf9,0xfc,0xe2,0x3d,0xe9, +0x91,0x4e,0xfc,0x17,0x71,0x30,0x39,0xe8,0x6e,0x30,0x77,0x23, +0x83,0xcc,0x0b,0xc0,0xe9,0xe1,0xc8,0xc7,0xa6,0x59,0xf3,0x40, +0x32,0x81,0x97,0xff,0x56,0xc9,0x3d,0xa2,0xd0,0xcf,0x45,0xc0, +0xd2,0xe0,0x3f,0xfd,0x72,0x3b,0xf8,0xc5,0x65,0xb8,0xa4,0x14, +0xdf,0xcb,0xe6,0xe0,0x1a,0x6e,0x25,0x2b,0xae,0xc0,0xc2,0xf1, +0x17,0xb8,0x70,0xec,0x67,0x9a,0x74,0x56,0x44,0xbc,0x86,0x15, +0xb8,0xc9,0xf2,0xef,0x19,0xdd,0xb8,0x99,0x31,0x84,0x23,0xc4, +0x56,0x34,0x6f,0x67,0x05,0xf3,0x75,0xc4,0x46,0x34,0xef,0xa0, +0x0d,0x3a,0x14,0xd1,0xbc,0x5b,0x30,0xa7,0x08,0xf1,0xa7,0xe2, +0x3e,0x39,0xb8,0x18,0xbf,0x47,0x3d,0x46,0xe7,0xb4,0xf1,0x09, +0x4b,0x55,0x5b,0x57,0x53,0x2f,0xa3,0x80,0x22,0x03,0xbe,0xa7, +0xbc,0xa5,0xac,0xb1,0xf2,0x08,0xaa,0xb9,0xac,0xdf,0xbd,0xa8, +0xcf,0x96,0x87,0xf7,0x60,0x5d,0x03,0x18,0xc1,0x25,0x15,0x60, +0x15,0xea,0xa3,0xf8,0x0b,0x2b,0xee,0xc3,0x53,0x24,0xe8,0x33, +0xbf,0x31,0x8f,0x11,0xeb,0x00,0xfe,0x82,0x41,0xa5,0x6e,0xa9, +0x06,0x27,0x44,0x9f,0x22,0xa2,0x1d,0xda,0xb1,0xd9,0x34,0x7f, +0xb4,0x98,0xee,0xe2,0xe2,0x1e,0x35,0xc1,0x10,0xb2,0x47,0xc7, +0x27,0x19,0x48,0xef,0x40,0x2a,0xf6,0x93,0x61,0xfc,0xf5,0x85, +0xfa,0x1a,0xfc,0x11,0x75,0xd9,0x43,0xf4,0x9c,0x32,0x55,0x5b, +0x67,0x53,0x77,0x43,0x5f,0x7a,0xce,0xde,0xaa,0x4b,0x55,0x8d, +0x0d,0x91,0xa8,0xea,0xbe,0x6c,0xe7,0xbc,0x1e,0x1b,0x69,0x15, +0x9d,0x03,0xe5,0xa0,0x03,0xf5,0x2a,0x54,0x44,0xef,0x42,0x33, +0x12,0x74,0xcb,0x6f,0xd4,0x4b,0x3a,0x5b,0xad,0x51,0xa5,0x7e, +0xa9,0x26,0x27,0x8c,0x50,0x8c,0xba,0xf6,0xb0,0xfb,0xfb,0xaa, +0xbf,0xb8,0x0e,0xec,0x62,0x73,0x2f,0x64,0xd5,0x67,0x34,0xea, +0xe5,0xf0,0x8e,0xb8,0x64,0x3b,0x72,0x38,0x65,0x43,0xb3,0x8c, +0x7f,0x78,0x75,0xec,0x6e,0xc7,0x63,0x0e,0x52,0x98,0xdd,0x18, +0x4f,0x99,0xfe,0x12,0xcc,0x5b,0x5c,0x61,0xc4,0xc3,0xd2,0x21, +0x78,0xff,0xfe,0xaf,0x2f,0xef,0xac,0xfa,0xe9,0x20,0x4c,0xd6, +0xae,0xa3,0xb5,0xff,0xed,0xab,0xeb,0xae,0x1f,0x7c,0x46,0x2b, +0xad,0xb4,0x68,0xb7,0xfa,0x32,0x7c,0x89,0xea,0x8c,0xc6,0x69, +0x83,0x13,0x66,0xaa,0x76,0x6e,0x66,0x3e,0x26,0x01,0x45,0xfa, +0x7c,0x77,0x79,0x73,0x45,0x43,0xcd,0x11,0x54,0x76,0x5f,0xb3, +0x67,0x61,0x1f,0x75,0xd0,0x2c,0x38,0x58,0x46,0x15,0x43,0xad, +0x0a,0x4c,0x51,0x18,0x50,0xd3,0x58,0xf1,0x20,0x9e,0x23,0x41, +0x9f,0xfb,0x8d,0x79,0x8d,0xd2,0x81,0xd6,0xe9,0x57,0xea,0x96, +0xd0,0x81,0x56,0x88,0xcb,0x88,0xd0,0xab,0x27,0xf6,0xa2,0xb1, +0xa0,0xa9,0x27,0x8e,0x8d,0x7d,0x2e,0x58,0x1d,0x18,0x13,0xae, +0xea,0x89,0xda,0x94,0x8d,0x28,0x14,0x47,0xc9,0x37,0xea,0x9b, +0xe8,0x09,0x4d,0x26,0xe6,0xc4,0x42,0xd5,0xc6,0xc9,0xcc,0xc3, +0x68,0x62,0x4e,0x2a,0x5b,0xaa,0x1b,0xeb,0x23,0x71,0x9e,0xdb, +0xca,0xdd,0x8b,0x7a,0xa8,0x1f,0x66,0xc0,0xd6,0x2a,0x30,0x80, +0x26,0x15,0x98,0xad,0x38,0x34,0xc8,0x8e,0xe7,0x62,0x2a,0x09, +0xbe,0xed,0x7f,0xc5,0x47,0x9a,0x97,0x6a,0xc3,0x0a,0xfd,0xe2, +0x83,0x9c,0x60,0x01,0xfb,0x88,0xff,0xfa,0x3d,0xea,0x68,0x49, +0x59,0x84,0x19,0x0f,0xea,0xaf,0x61,0xd2,0xd3,0xc2,0x9f,0xa8, +0x3a,0x2e,0x59,0xf5,0xe7,0x06,0xd0,0x59,0x5c,0x4d,0xcd,0x75, +0x80,0xb7,0xf6,0xde,0xf2,0x7b,0xce,0xc1,0xd4,0x71,0x07,0x22, +0xd8,0xea,0x8a,0xb6,0x2c,0xa6,0x09,0x1f,0x11,0x5c,0xe7,0xbc, +0x18,0x97,0x6c,0x55,0x6d,0x30,0x57,0x82,0xb5,0xcf,0x06,0x61, +0x3a,0x18,0xa8,0x8c,0xea,0x49,0x32,0x52,0xa1,0x41,0xbd,0xf7, +0xcb,0x53,0xf5,0x4f,0xf0,0x07,0xb4,0xf8,0xd7,0x7b,0x6e,0xe6, +0xde,0xc6,0x6f,0xa6,0xa6,0x65,0x62,0x6a,0x3e,0x76,0x5b,0xbd, +0x77,0xa9,0x34,0xd2,0x77,0x61,0x53,0x35,0xe8,0x49,0x2f,0x96, +0x12,0x76,0x07,0x5a,0x91,0xe0,0x5b,0xfe,0xa3,0xde,0xd2,0x28, +0x6b,0x0c,0x2b,0x0c,0x4b,0x34,0x38,0x45,0xd2,0x6d,0x62,0xd5, +0x74,0xf0,0x92,0x6e,0xb9,0x97,0x23,0x7f,0xd5,0xff,0x73,0xfb, +0x2e,0x17,0x0e,0x53,0x83,0xc9,0x99,0xac,0x4f,0xb3,0xb2,0x54, +0x60,0xae,0x01,0x65,0x20,0x31,0x9f,0xc6,0x9c,0x8e,0x51,0x95, +0x56,0xa2,0x4c,0x64,0x22,0xd0,0x67,0x23,0x4e,0x46,0xeb,0x79, +0x0d,0xd4,0x22,0x77,0x60,0x7e,0x91,0xd6,0x1d,0x3b,0xc9,0xc1, +0x1f,0x43,0x0c,0x86,0x8a,0xee,0xc4,0xf3,0x68,0x5a,0x9d,0x1a, +0x0c,0xea,0xe1,0x35,0x56,0xa7,0x3c,0xf0,0xa6,0x2a,0xec,0x65, +0x9a,0x73,0xf3,0x69,0xa1,0x59,0xc8,0x1a,0x17,0x28,0xe1,0x56, +0x3a,0xd1,0xdf,0x2b,0xee,0x11,0xf5,0x8d,0x74,0xf4,0x06,0x8c, +0xe6,0x69,0x43,0xea,0x58,0x07,0x17,0x0b,0x2f,0x53,0xff,0x42, +0x03,0xbe,0xab,0xbc,0xa9,0xb2,0xfe,0x42,0x24,0x7e,0xe4,0xb9, +0xea,0xe0,0xc2,0x6e,0x47,0x1e,0x58,0xd8,0x2d,0x39,0x96,0xc6, +0xde,0x4c,0x85,0xd5,0x20,0xa2,0xe4,0xd8,0x54,0x12,0x76,0x2b, +0xf8,0x8a,0x9f,0xe4,0xd8,0x2a,0x83,0x52,0x9d,0x22,0x0d,0x8e, +0x72,0x7c,0x5d,0x82,0xb3,0x97,0x9b,0xff,0xc2,0x26,0xe2,0x29, +0x4b,0xca,0x6b,0xde,0xc5,0x77,0xdb,0x68,0x5c,0xd0,0xe0,0xed, +0x86,0x1d,0xc9,0x70,0x8e,0xfb,0x89,0x39,0x8d,0x7b,0x8e,0xe1, +0xe2,0x98,0xd5,0x9c,0xd5,0xb1,0xa8,0x18,0xc7,0xb9,0x32,0x86, +0xf2,0xaa,0x41,0x66,0xac,0xaa,0xe4,0x66,0x86,0x5a,0xde,0x6f, +0xc9,0xb0,0xfc,0x0c,0xc4,0x73,0xb8,0x06,0x66,0x33,0x50,0x37, +0xee,0x48,0xae,0xc2,0x72,0x9d,0x61,0x85,0x1a,0xe6,0x8d,0xab, +0xb1,0xe0,0x24,0xbc,0x20,0x62,0x20,0x2e,0x17,0x02,0xe9,0xf0, +0x7f,0x55,0xc4,0x91,0xef,0xd4,0xd7,0xd1,0xdc,0x31,0x62,0xa5, +0xc0,0x34,0xa7,0x81,0x69,0xfe,0x6f,0x60,0x5e,0x2c,0x6f,0xa8, +0x8d,0xc4,0xb9,0x6e,0xab,0xf7,0xcc,0xef,0xb3,0x91,0x02,0x53, +0xa3,0x04,0x34,0xdf,0x8c,0x5f,0x6b,0x98,0x1d,0x4f,0xa1,0xa3, +0x0f,0xa4,0x1e,0xf0,0x1a,0xb6,0x0e,0x9c,0xc8,0x1f,0x1a,0x96, +0x0a,0xab,0x3e,0x02,0xef,0xea,0xd1,0x31,0xdf,0x87,0x69,0x54, +0xf9,0xe3,0x5b,0x46,0xf0,0x96,0x58,0x33,0x76,0x15,0xee,0xeb, +0x8c,0x09,0x35,0xc0,0x0e,0xb3,0xe2,0x49,0x0c,0x27,0xb0,0x1b, +0xee,0xe3,0x6e,0x16,0xef,0x9b,0x10,0xda,0x30,0xc0,0xfb,0x8c, +0x94,0xca,0x1a,0x64,0x10,0x7f,0x7d,0xae,0xbe,0x1e,0x7f,0x45, +0x53,0x56,0xfb,0x9f,0x60,0x30,0xf3,0x32,0x0e,0x90,0x1b,0x4c, +0xe4,0x49,0x63,0xad,0x14,0x0c,0x6b,0xf7,0x2f,0xee,0xa1,0xf3, +0xf1,0x0e,0x6c,0xa9,0x81,0x43,0x52,0xd8,0x7e,0x40,0x53,0xd9, +0x92,0x04,0xdf,0xf4,0xbf,0xec,0x35,0x62,0xe3,0xc7,0xd7,0x9a, +0x54,0xe8,0x97,0xa8,0x73,0x8a,0xdb,0xe2,0x59,0x62,0xf2,0x52, +0xeb,0x47,0x9d,0x5b,0xb6,0x1e,0x7c,0x8d,0x7b,0xbd,0xed,0x05, +0x8b,0x25,0xd1,0x38,0x25,0x0e,0xdf,0x8f,0xa7,0x91,0xf4,0x36, +0x4c,0x01,0xb5,0x1f,0x60,0x9e,0x69,0x25,0x6f,0xb5,0xcb,0x70, +0xe7,0xa1,0x7d,0xbe,0x15,0x1e,0xd5,0x2e,0x35,0xfd,0x63,0x6d, +0xd7,0x3b,0x1f,0x71,0x70,0x63,0x10,0x87,0xbe,0xd1,0xd9,0x84, +0x17,0x4c,0xa8,0x02,0xf0,0xd4,0x73,0x36,0xb6,0x36,0x0f,0x2c, +0x0c,0x2a,0x0c,0xcc,0x77,0xb5,0xe3,0x1f,0x1b,0x3e,0xd6,0x1c, +0x35,0xb4,0x34,0x93,0x59,0xc8,0xec,0x6c,0x4f,0x5a,0x9f,0xb4, +0x3c,0x95,0x46,0x75,0xfe,0xb1,0x6c,0xb0,0xcd,0x87,0x2d,0x25, +0xb9,0x81,0xb9,0x01,0xd9,0x01,0x94,0x5b,0xe8,0x2a,0xb4,0x24, +0x7b,0x9e,0x1d,0xdc,0x80,0xbf,0xd3,0xe9,0xdd,0x7f,0x5a,0xf7, +0x84,0x89,0xaa,0xbd,0xbb,0xa5,0xaf,0x59,0x40,0x91,0x21,0xdf, +0x51,0xd2,0x58,0x76,0xa1,0x3a,0x12,0xe7,0x78,0xae,0xd3,0x58, +0xdc,0x6b,0xcf,0x83,0x12,0xec,0x29,0x83,0x03,0xd0,0xa6,0x02, +0xb3,0xd8,0xdd,0xe8,0x48,0x42,0x6f,0x04,0x5d,0xf6,0x1b,0xb6, +0xf6,0xe5,0x2b,0x4d,0xca,0xf4,0x8a,0xb4,0x39,0x85,0x5c,0xb4, +0x25,0xf8,0x3e,0xe3,0x73,0x2c,0xb5,0x5c,0x0d,0xca,0xd8,0x07, +0x2d,0x5f,0x5f,0x1e,0xb9,0xe6,0xd1,0xca,0xcb,0x8c,0xb4,0x2d, +0x34,0xdd,0x68,0xe0,0x18,0x8a,0xbf,0xb1,0xba,0xe5,0xa1,0x23, +0xaa,0xf0,0x11,0xd3,0x92,0x97,0xdf,0xa5,0x06,0x3b,0x59,0x93, +0x42,0x25,0x71,0x36,0xac,0x21,0x30,0x6d,0x10,0xa7,0x41,0xa8, +0xa1,0xf8,0x23,0xb3,0x31,0x4a,0x49,0x08,0x37,0x12,0xe3,0x59, +0xef,0x13,0x5e,0xc7,0xbd,0x4e,0xa4,0x52,0xe4,0xda,0x28,0x07, +0xb5,0x12,0x98,0x59,0x7d,0x62,0x90,0x77,0x39,0xea,0x74,0xd4, +0xe1,0x28,0x1d,0xfe,0x41,0x85,0x1e,0xcd,0xcd,0x67,0x4f,0x34, +0xb6,0xe0,0x4f,0x34,0x37,0xa5,0xe8,0x36,0x57,0xb5,0x71,0x9b, +0x40,0x73,0x43,0xbe,0xb7,0xec,0x12,0x75,0x47,0x24,0xaa,0xb8, +0xad,0xdd,0xbd,0xe0,0x0d,0x6c,0x1d,0x28,0xa5,0xee,0xa8,0x56, +0x81,0x0f,0x69,0x6e,0xda,0x93,0xa0,0x9b,0xff,0x83,0xac,0x52, +0x64,0xb8,0x01,0x2d,0xea,0x11,0xe2,0x57,0xf8,0x81,0x91,0xc2, +0x79,0x78,0x3e,0xa3,0x27,0x01,0xc3,0x38,0x7c,0x0c,0xe3,0x0c, +0x8e,0xe3,0x57,0xd2,0xde,0xa5,0xe3,0xf8,0x31,0x6b,0x3a,0x05, +0x17,0xd3,0xee,0xc5,0x14,0x1d,0xf4,0x14,0xba,0x12,0x3a,0x7c, +0xad,0xbe,0x99,0xc6,0xa7,0x05,0xab,0xf5,0xbf,0x23,0xd0,0xe7, +0x7b,0x29,0x3a,0x34,0xd6,0x45,0xa2,0x9a,0xeb,0xea,0x3d,0x8b, +0xfa,0xac,0x24,0x74,0xd8,0x5e,0x4d,0x71,0xac,0x45,0x42,0x87, +0x9d,0x68,0x47,0x02,0x6f,0xfa,0x8f,0x7a,0xbe,0x19,0x41,0xd5, +0xc4,0x08,0xa2,0xe0,0x3d,0x22,0xa6,0x89,0x16,0x42,0x1a,0xa3, +0x07,0x69,0x44,0xe4,0x61,0x9e,0xc0,0x33,0x22,0x4f,0x25,0x86, +0xc0,0xe3,0x62,0x91,0x67,0xf0,0x20,0x46,0x13,0x85,0xed,0xf0, +0xb8,0x2d,0x2d,0x65,0xbf,0x2b,0x4e,0x91,0xc7,0xea,0x5b,0xa9, +0xf5,0x0e,0x2c,0xad,0x65,0x27,0x2d,0x68,0x2d,0x33,0xf3,0x34, +0x92,0x72,0xbb,0xb7,0xa2,0xa5,0xb2,0xf1,0x42,0x34,0xce,0xf5, +0x58,0xb3,0x7b,0x61,0x9f,0xbd,0x54,0xcb,0x76,0x96,0xc1,0x41, +0xa8,0x51,0x81,0xf9,0x13,0x18,0x9a,0x83,0x79,0x12,0x3a,0x5d, +0xf6,0x1a,0xa6,0x01,0x59,0x63,0x52,0xa9,0x5f,0xac,0xce,0x09, +0x97,0x97,0x91,0x7b,0x83,0x03,0x57,0x9a,0xee,0x70,0x17,0xf1, +0x39,0x9b,0x2d,0xcf,0x90,0xa7,0x17,0x19,0x65,0xf2,0x9e,0x3b, +0x74,0x76,0xcc,0xd3,0xaa,0xb4,0xe2,0x3b,0x2b,0x9b,0x2f,0xd4, +0xd5,0xd7,0x5b,0x75,0xd8,0x0d,0x3a,0xef,0xb4,0x5f,0xea,0x8a, +0xc4,0x4f,0x7a,0xe5,0x49,0xad,0x0e,0x26,0xb7,0x3e,0xed,0xfb, +0x46,0xf6,0xda,0x01,0x26,0x7b,0x55,0x0c,0xf0,0x4b,0x2a,0xd6, +0xd4,0xef,0x6c,0xe5,0xd0,0x19,0x0e,0x92,0xb3,0x67,0xcf,0x9c, +0x39,0x73,0x96,0x83,0x0e,0xc6,0xcb,0xcc,0xd6,0x52,0xc7,0x4e, +0xb7,0xc5,0xbc,0xd3,0xa5,0x9f,0x2b,0xc4,0xef,0xc8,0x37,0x81, +0x4f,0xdd,0xbe,0x70,0xae,0xea,0xe5,0xb7,0x5f,0xdc,0x7c,0x61, +0x6b,0x19,0x87,0xc6,0x34,0xaa,0x60,0x4b,0x30,0x68,0x38,0xc2, +0x16,0xc3,0x92,0x7e,0x1e,0x37,0x0f,0xa3,0x6e,0x17,0x6e,0xa0, +0x44,0x58,0xf8,0x45,0x91,0x40,0x24,0x18,0x7e,0x81,0x2e,0xac, +0xde,0x69,0xd3,0x93,0x56,0xd4,0x58,0x73,0x2f,0xe3,0xc0,0x37, +0x15,0xaa,0xb2,0xa1,0x36,0x0a,0xe7,0xba,0xaf,0xd9,0xbf,0xa4, +0x97,0x02,0x01,0x07,0x5b,0x2b,0x61,0x3f,0xd4,0xa9,0xc0,0x22, +0x85,0x1e,0x35,0x36,0x0f,0x33,0x48,0xc8,0x2d,0xff,0x31,0xaf, +0x11,0x2b,0x6f,0xbe,0xd6,0xac,0x5c,0x87,0x96,0x6d,0x45,0xb6, +0xe8,0x48,0xc4,0xb5,0x8c,0xd5,0xd1,0xf4,0x26,0x35,0x58,0x02, +0x65,0x90,0x80,0xf7,0xd9,0xb2,0xca,0xe2,0xea,0xc2,0x1a,0x4e, +0x98,0x4b,0x11,0x6c,0x56,0x02,0x72,0x71,0xba,0x9c,0xcb,0xb1, +0xc8,0x38,0xa7,0xb9,0xfb,0x98,0x2c,0x33,0xa5,0xcf,0x99,0x5b, +0xd5,0xa5,0x23,0x19,0x6a,0x39,0x0f,0x53,0x61,0xc6,0x19,0xd0, +0xe0,0xc4,0x1d,0x4c,0xa6,0xb4,0xf6,0x65,0xb9,0x41,0x2a,0xef, +0xbd,0xd0,0x68,0xc7,0x27,0x9a,0x55,0xe6,0x7c,0x49,0x81,0xbc, +0xb0,0x48,0xce,0x89,0x33,0xd9,0x3d,0x15,0xc1,0x4f,0x54,0x85, +0x95,0x4c,0x7b,0x41,0x61,0xbb,0x1a,0x2d,0xe8,0xa6,0x79,0x4a, +0x98,0xfc,0x9a,0xa0,0x0f,0xa8,0x80,0xcf,0x04,0xa0,0xd8,0x91, +0x7e,0x91,0xb9,0xaf,0xb9,0x07,0x7f,0xc6,0x18,0xd6,0xe4,0xb4, +0xe5,0x29,0x5b,0x55,0x67,0x67,0x2b,0x77,0xf3,0x80,0x02,0x33, +0xbe,0xa3,0xb4,0xa9,0xaa,0xa6,0x26,0x16,0x55,0x7d,0x56,0x69, +0x2e,0xee,0x75,0xe0,0x7f,0x87,0x2d,0xc5,0xd4,0x85,0x72,0x15, +0xd8,0xcb,0x2a,0x54,0xc5,0x1c,0x72,0x3a,0xfc,0x44,0xd0,0x89, +0x48,0x2e,0xe2,0xf8,0xd1,0x13,0xc1,0x73,0x0d,0x98,0x2c,0x2b, +0xa5,0x61,0xa6,0xad,0x38,0xbb,0x36,0x5d,0x2d,0xad,0x3c,0xb9, +0xf3,0xec,0x08,0x87,0x8f,0x9f,0x40,0x1b,0x68,0x61,0xdb,0x2d, +0xf8,0xa1,0x07,0x5f,0x48,0xcf,0xce,0x5f,0xb2,0x80,0x56,0x0d, +0xcc,0xb2,0x84,0xac,0xed,0x98,0xca,0x1c,0xd7,0x8f,0x3d,0x70, +0xc4,0x92,0xa3,0x2a,0x32,0x72,0xeb,0x0a,0x4d,0x3c,0xa2,0x29, +0xb9,0x33,0xe2,0x2e,0x4c,0xba,0x96,0x29,0x5d,0x24,0xc8,0x5c, +0x06,0x6f,0x6b,0x42,0xc4,0x3e,0xc9,0x15,0x91,0xb7,0x96,0xde, +0x38,0xf2,0x98,0x13,0x1d,0xa1,0x97,0x44,0xde,0x08,0xbd,0xea, +0x77,0xd9,0xce,0x8f,0x2f,0x37,0x2c,0xd6,0x2b,0xa0,0x73,0x19, +0x74,0x8c,0x6c,0xc7,0x98,0x47,0xac,0x31,0xce,0x21,0x5b,0xd0, +0x9f,0x4d,0x29,0x4e,0xaa,0x39,0x57,0x39,0x01,0x31,0xfa,0x14, +0x62,0x7e,0x93,0x32,0xe4,0x07,0xb4,0xa4,0x90,0x69,0x74,0xd2, +0x9c,0x3a,0x4e,0x46,0x21,0xb3,0xe8,0x0d,0x64,0x36,0xd4,0x45, +0xa1,0xaa,0xe7,0xca,0x7d,0x8b,0xba,0xed,0x25,0xc8,0xdc,0x56, +0x01,0xfa,0x52,0xfd,0x54,0xa6,0x19,0xe2,0x40,0x82,0x6e,0xfb, +0x5f,0xf6,0x95,0x32,0xa4,0xca,0xb0,0x42,0xaf,0x98,0xd6,0x1e, +0x75,0xca,0xd6,0xc1,0xf4,0xf1,0xeb,0x1b,0xf2,0x1f,0x69,0x65, +0x2f,0x5d,0xf3,0x87,0x16,0xe8,0x6f,0x2e,0xef,0xe3,0xd1,0xfe, +0xf9,0xee,0x11,0x8f,0xa7,0x1c,0xf6,0x99,0xd1,0x99,0x75,0xd4, +0xdf,0x22,0xc3,0xad,0x74,0x5c,0x93,0xf0,0x0c,0x55,0x4f,0x99, +0x34,0xf3,0xdc,0xfa,0x45,0x17,0x33,0x30,0xa7,0xb8,0x9f,0x62, +0x0e,0x29,0xf8,0x11,0x7e,0x61,0xaa,0x30,0x1d,0xc0,0xcf,0xa4, +0xb7,0xd0,0x29,0xf9,0x49,0x98,0x20,0x23,0x3f,0xa1,0x95,0x94, +0x48,0x94,0x8c,0xd8,0xba,0x98,0xbd,0x21,0x85,0x52,0x12,0x37, +0xfc,0x93,0xc4,0xcb,0x7b,0xad,0xa5,0x24,0x5e,0x27,0x95,0xf8, +0x66,0x15,0x50,0x51,0x68,0xd3,0xd8,0xca,0xc2,0xf4,0x37,0x50, +0x32,0x24,0x71,0x1f,0xe3,0x37,0x24,0x2d,0x19,0x87,0x08,0xcc, +0x84,0xac,0x01,0xcc,0xa2,0x99,0x77,0x69,0x90,0x12,0xbf,0xca, +0xc6,0xd2,0xd6,0xe2,0x5e,0xdd,0x3c,0xfe,0xb0,0x89,0xbf,0xa5, +0x87,0x1d,0x27,0xbe,0x6d,0x02,0x72,0x7c,0x0f,0xcf,0x9b,0xc2, +0x79,0x9c,0x89,0x63,0x26,0x54,0x5b,0xeb,0x8e,0x81,0x2e,0xdc, +0x1c,0x64,0xc4,0x3d,0xc2,0x5c,0x12,0xde,0xe0,0xdf,0xec,0x5b, +0x6f,0x7c,0x98,0xaf,0x76,0x2b,0x73,0x29,0x94,0x9e,0x9c,0xd3, +0x57,0x18,0xd1,0xc9,0x54,0xbc,0x49,0x79,0x47,0x89,0x8c,0x9c, +0x94,0xa9,0xda,0xb9,0xca,0xbc,0x4d,0xfc,0xa4,0xc9,0xac,0x68, +0xae,0xac,0xaf,0x8b,0xc6,0x8f,0xbd,0x56,0x68,0x2c,0xed,0xb5, +0xe3,0xe1,0x2d,0xf8,0xa4,0x84,0xc2,0x0d,0xcd,0x82,0x05,0xb4, +0xfe,0x78,0x92,0x90,0xcf,0x83,0xae,0xf8,0x4e,0x14,0x72,0xc3, +0xb2,0x43,0x45,0x07,0x39,0x8a,0xe5,0xdb,0x89,0xa9,0x42,0x79, +0x80,0x15,0xf3,0x77,0x93,0x40,0x99,0x97,0x89,0xad,0xd5,0x45, +0xeb,0x4b,0x86,0x15,0x56,0xfd,0x72,0xde,0xbf,0xcb,0xa5,0xd7, +0xbf,0xb6,0xfa,0x42,0x5d,0x5f,0x79,0x2f,0x07,0xcb,0x29,0x58, +0xc8,0x3c,0xcc,0x6c,0x2c,0xda,0x2c,0x5b,0x0d,0xab,0x6c,0xfa, +0x4b,0x78,0xdf,0x76,0xa7,0x3e,0xef,0xda,0x9a,0x0b,0x75,0xbd, +0xd2,0x63,0xc9,0xeb,0xf3,0x48,0x80,0xcc,0x9d,0xe6,0x77,0x87, +0x65,0xa7,0x51,0x8d,0x55,0x5f,0x19,0xef,0xd1,0xe3,0xd0,0xed, +0x5d,0x5d,0x53,0x5b,0xd7,0x53,0xd9,0xc7,0x61,0xba,0xf4,0xda, +0x66,0x53,0xff,0x38,0x63,0x06,0xb5,0xb8,0x00,0x5f,0x98,0x2a, +0x5c,0x06,0xf0,0x0e,0xcd,0x00,0x1d,0x85,0x0e,0x35,0xe9,0xe5, +0xb7,0x94,0xa1,0xfc,0x38,0x31,0xf9,0x26,0x13,0x28,0x66,0xee, +0x69,0xec,0x37,0x81,0x62,0xcd,0x55,0x12,0x8a,0x7d,0xec,0xb5, +0x7a,0xf7,0x82,0x37,0xfc,0x6a,0x67,0x09,0xa8,0x43,0xa3,0x14, +0x1f,0xdb,0x28,0x82,0x86,0x7c,0x16,0x30,0xe6,0x23,0x95,0xd4, +0x1a,0x23,0x1a,0x1f,0x07,0x39,0xc5,0xd0,0xb7,0x04,0x7b,0xfe, +0xd2,0x9b,0x87,0xb5,0x26,0xf4,0x4c,0x33,0x31,0xc3,0x54,0x78, +0x3e,0x80,0x65,0xd4,0x17,0x3d,0x0c,0x55,0xa8,0x0f,0x89,0x6d, +0xcb,0xa1,0x76,0x59,0x99,0xbb,0x33,0xdf,0xef,0x7f,0xc5,0xae, +0xcd,0x89,0xc3,0x15,0xf8,0x11,0xf1,0x3a,0x9a,0x5a,0xa5,0x06, +0x26,0x46,0x74,0x04,0x86,0x45,0x41,0x94,0x46,0x39,0xd1,0xf2, +0x94,0xd7,0xa0,0xf6,0x13,0x6b,0x46,0x33,0x96,0x61,0x5b,0xc1, +0x80,0x74,0xea,0xb7,0x6d,0xaf,0xde,0xda,0x5b,0xce,0x7b,0x7d, +0xe9,0xf0,0x95,0xe5,0x55,0x4e,0xbc,0x8e,0xc9,0x64,0xec,0x5e, +0xf3,0x17,0xc5,0xf7,0xa5,0x17,0x6f,0x77,0xb9,0x1c,0x30,0xd1, +0xe1,0x24,0xbe,0x72,0x62,0x02,0x93,0x7f,0xa4,0x82,0x40,0x97, +0x5a,0x63,0xa9,0x6a,0xe7,0x6c,0xee,0x61,0x3c,0x81,0xc9,0x95, +0xcd,0x55,0x0d,0xf5,0xd1,0xa8,0xe6,0xb5,0x6a,0x2f,0xbe,0x45, +0x13,0x9a,0x86,0xfb,0xae,0x7f,0xcc,0x51,0x55,0xe8,0x4e,0xe0, +0x54,0x36,0x09,0xfe,0x2c,0xe0,0xf2,0xff,0x9a,0x24,0x0c,0x16, +0x93,0xb8,0xa4,0x63,0xa7,0xe3,0xe3,0x8e,0xc6,0xf3,0xc7,0x07, +0x98,0x94,0xf4,0xd4,0xb4,0xe4,0x74,0x0e,0xca,0x06,0xc6,0x27, +0x99,0x42,0x1d,0xa3,0xb7,0x69,0xbe,0x26,0x2e,0x96,0x95,0x5b, +0xf0,0xbf,0x37,0xfd,0x30,0x70,0xe7,0x16,0x27,0x5d,0x4f,0xda, +0xc6,0xa6,0x9e,0x3f,0x9b,0x72,0x52,0x15,0x1a,0x71,0x41,0x45, +0x97,0x92,0x38,0x24,0xee,0x24,0x83,0x82,0x86,0xc9,0x28,0x5c, +0x16,0x7b,0xf0,0x32,0x2b,0x1c,0x85,0x14,0x82,0x8b,0x44,0x0d, +0x58,0x44,0xc3,0xff,0x4b,0xc5,0xd7,0x44,0x63,0x13,0x7e,0x87, +0x01,0x8c,0x16,0x4d,0x50,0x0b,0x55,0x47,0x4f,0x6b,0x3f,0x59, +0x90,0x5c,0x9f,0x6f,0x2d,0x6d,0x28,0xad,0xad,0x8a,0x46,0x65, +0xaf,0x4f,0x34,0x71,0x52,0x2f,0xe5,0x88,0x53,0x41,0x37,0x0b, +0x0c,0xa5,0x25,0x26,0x97,0x2a,0x68,0x4e,0xbd,0xc3,0x8a,0xeb, +0xb1,0x84,0x84,0xdc,0x08,0xbc,0xec,0x2b,0x51,0x81,0x6a,0x4a, +0x05,0xe4,0xda,0x9c,0xb0,0x08,0x76,0x12,0x8c,0x18,0xb7,0x1c, +0xa0,0xba,0x98,0x63,0xa2,0xf4,0xfc,0xb6,0xbb,0xaa,0x73,0xfd, +0x7b,0x2e,0x58,0x1a,0xaa,0xc8,0xa2,0x42,0xac,0x54,0xdd,0x98, +0x1c,0x73,0xa5,0x7a,0xe6,0x61,0x69,0xe7,0x9d,0xcf,0xbd,0xfb, +0x6d,0x6e,0xaa,0xd5,0xde,0xa8,0xfe,0x2e,0xeb,0x1a,0x07,0xf7, +0xa3,0x89,0xf8,0x10,0x17,0xb1,0x14,0x6d,0x61,0x06,0x05,0xce, +0xfc,0x76,0x35,0xe1,0x66,0x4f,0xbf,0xb8,0xc2,0x8c,0x2d,0x5c, +0x4f,0xc4,0x15,0xfd,0x0f,0x61,0x1d,0x3c,0x62,0x71,0x1d,0x56, +0x13,0x08,0x7f,0x8d,0xe1,0x13,0x0b,0x8e,0xd8,0x92,0x7e,0x14, +0xef,0xaa,0xef,0xa3,0x36,0xb8,0xd3,0x20,0x9a,0xb0,0xc1,0xc9, +0xc2,0xc3,0xd4,0x97,0x12,0x81,0xce,0xca,0xa6,0xaa,0x0b,0x0d, +0x31,0xb8,0xcc,0x6b,0xa5,0xfa,0xea,0x6e,0x9a,0x17,0x93,0x60, +0x75,0x39,0xcd,0xb3,0x2e,0x15,0x58,0xce,0x6e,0xc7,0x50,0x12, +0xf6,0x59,0xf0,0xd5,0xa0,0x51,0x4a,0x11,0xcb,0x0d,0x4a,0xb4, +0x0b,0xe8,0x8c,0xe7,0x4b,0x17,0xde,0x76,0x27,0xb3,0xf9,0xea, +0x7f,0x9a,0x81,0xb6,0x45,0x41,0x37,0x8f,0xab,0x9b,0x37,0x36, +0x5b,0x74,0x71,0xd0,0xd0,0x85,0xf7,0xee,0x32,0x2f,0x52,0xbe, +0x4d,0xfb,0x22,0x3b,0xb0,0x83,0xc7,0xe5,0x81,0xa8,0x13,0x8f, +0xc1,0xa7,0xb3,0x2c,0xf9,0x6f,0x9e,0x9c,0x3b,0xff,0xa5,0xda, +0x41,0xec,0xb1,0x82,0x6c,0xd6,0xca,0x6a,0xab,0x33,0x2e,0x76, +0x2a,0xb4,0xe4,0x61,0x57,0xcf,0xab,0xde,0xfc,0xcf,0xb8,0x64, +0xdc,0xc4,0xb8,0x66,0x46,0x06,0x45,0x04,0x84,0x05,0x28,0x63, +0xa0,0x15,0xe8,0x32,0xbe,0xae,0xde,0x6e,0x3e,0x9e,0xd7,0xa2, +0xae,0x45,0x5e,0x3b,0xb2,0xcb,0x67,0x51,0x38,0x7e,0x14,0x97, +0x65,0xc1,0xc3,0xf6,0x6c,0x98,0x51,0xf9,0x7d,0xc7,0x2f,0xfe, +0xbf,0x78,0xff,0xe8,0x59,0xd6,0xc5,0xaf,0xad,0xda,0x54,0xb1, +0xb3,0xa4,0xaf,0xb1,0xa9,0xa3,0x7a,0x88,0x83,0x79,0x5d,0xa2, +0x1a,0x93,0x55,0x90,0x55,0x98,0x59,0xc0,0xc1,0xea,0x79,0xc4, +0xdb,0xc2,0xc5,0xd9,0xdc,0xdb,0x20,0xdf,0x24,0x47,0x96,0x55, +0x54,0x24,0x2f,0x97,0x57,0x4e,0xac,0x9c,0xf9,0x15,0xa1,0x41, +0xf8,0x02,0xed,0x25,0x8f,0x52,0x52,0xe2,0xe8,0x62,0xe9,0x6d, +0xee,0x4f,0x51,0xa2,0xbd,0xbc,0xa9,0xa2,0x96,0x42,0xee,0x5c, +0xaf,0x55,0x14,0x25,0x68,0x0c,0xbe,0x0d,0x9b,0x4b,0x29,0x4a, +0x50,0x35,0x37,0x4f,0x61,0x37,0x20,0x4e,0x62,0xc5,0x9d,0x58, +0x4c,0x0e,0x7f,0x16,0x70,0xc5,0xef,0xb2,0x8d,0x3f,0x5f,0x69, +0x58,0xa6,0x5d,0xa4,0x4e,0xa5,0xa4,0x58,0x49,0x46,0x84,0x78, +0xc3,0x61,0x85,0x96,0xf8,0xe7,0xb8,0x16,0x2b,0x74,0x2a,0xde, +0x27,0x62,0xa9,0x18,0x2f,0x94,0xb2,0xe0,0xe7,0x43,0x3e,0xc1, +0x43,0x56,0x70,0x68,0x23,0xce,0x43,0x0f,0x78,0x0a,0x1e,0x38, +0xef,0x5b,0xa0,0x95,0x5b,0xf7,0x29,0x8b,0xf3,0x44,0x9e,0x0a, +0x79,0x38,0x8c,0x1c,0x0d,0xb5,0x9f,0x14,0xc7,0xff,0x91,0x7d, +0xb6,0x12,0x61,0xa3,0xc5,0xc0,0xc1,0xdd,0xca,0x57,0x16,0x98, +0xaf,0x2f,0x95,0xbb,0xf2,0xba,0x9a,0x68,0xe4,0x3d,0xd7,0x1c, +0x58,0x2c,0x51,0x16,0x06,0xb6,0x96,0xbe,0x91,0x23,0x1f,0x2b, +0xcc,0x68,0x76,0x94,0x61,0x16,0x09,0xbf,0x15,0x34,0xe6,0x3b, +0x62,0xe3,0xcd,0x57,0x99,0x95,0xe9,0xc8,0x29,0x65,0x49,0x86, +0x77,0xc9,0x57,0x06,0xdb,0xb0,0xcc,0x54,0x31,0x83,0x02,0x59, +0xf1,0x26,0x12,0xca,0x6e,0xf6,0xb4,0x5f,0xb4,0x47,0xb5,0xd6, +0x76,0xb8,0xb9,0xb1,0xa1,0xa2,0x49,0x39,0x29,0x35,0xf9,0xd3, +0x94,0x04,0x98,0x82,0x93,0xf8,0xc6,0x4b,0xf3,0x7f,0x8d,0x4b, +0x3f,0xfa,0xa9,0xb4,0xa0,0x7a,0xfc,0xf1,0xb3,0x4a,0xb9,0x35, +0x29,0xf5,0xcd,0x2a,0x72,0x16,0xda,0x70,0x35,0x49,0x4e,0x4d, +0x92,0xbe,0x37,0x0b,0xdf,0xe5,0x9b,0x2e,0x21,0x25,0xe0,0x71, +0xe9,0xf1,0x9f,0xc6,0xc5,0x28,0x1f,0x8d,0x4f,0x3c,0x37,0xf1, +0xcd,0x16,0x95,0x7c,0xa3,0x08,0x76,0xb3,0x8f,0xe3,0xca,0xbd, +0xaa,0xb5,0x76,0xbd,0x4d,0x0d,0xf5,0xa5,0x0d,0xca,0xf8,0x01, +0x1e,0x22,0x57,0x0c,0x75,0x71,0xd4,0x14,0x46,0x51,0x7f,0x84, +0x96,0xaf,0xc7,0x03,0xd2,0xc2,0x8a,0x13,0x60,0xfd,0xfb,0x13, +0xf5,0x2d,0xb4,0xf2,0x39,0xfe,0xc3,0x0d,0x1d,0xdc,0x64,0xde, +0xa6,0x81,0xf9,0x46,0x7c,0x7b,0xc9,0xa5,0xca,0x86,0xaa,0x28, +0x6a,0xec,0x2a,0x8d,0x65,0xfd,0x36,0x92,0x1b,0xf6,0x48,0xda, +0xab,0x4a,0x02,0xeb,0xad,0xe8,0x21,0x19,0x7a,0xd9,0x6f,0xc4, +0xda,0x9b,0xaf,0x36,0x2b,0xd5,0x91,0xd3,0x52,0x36,0xb6,0x8c, +0x60,0xf0,0xcd,0x9d,0x57,0x61,0x8a,0x4a,0x97,0xae,0x15,0x8b, +0x53,0xf6,0xe8,0xa0,0xaf,0xa6,0xaa,0xdc,0x04,0xf6,0x0d,0xc1, +0x94,0x91,0x6c,0x98,0xa2,0x4c,0x0b,0x36,0x2a,0xc1,0x54,0x23, +0xd0,0x30,0xe6,0x0e,0xc0,0x0f,0xe4,0xb0,0x99,0xb7,0xcc,0xd9, +0xb1,0xcb,0x9f,0x6f,0x6e,0xad,0x1d,0x2a,0x1a,0xe0,0xc4,0xf8, +0x74,0x12,0x6d,0xe9,0x67,0xe1,0xe4,0xd0,0xe1,0xc7,0x5f,0xba, +0x54,0x33,0x9c,0x3b,0xc0,0xc1,0x1e,0x2c,0x24,0xba,0x3b,0x18, +0xfc,0x70,0xdb,0x6e,0x3c,0xb9,0x55,0xb5,0xd8,0x08,0x8c,0x6e, +0x01,0xb9,0x96,0x0d,0x0b,0x94,0x93,0xe9,0xef,0x2d,0x02,0x5e, +0x1b,0x0c,0xb5,0x8b,0x87,0x79,0x3c,0xf1,0xd5,0x96,0x87,0xf0, +0xa1,0x0a,0x1c,0xc0,0xad,0xe4,0x62,0x6b,0x19,0xfd,0x45,0xf3, +0x7c,0x3e,0xcc,0x2c,0xd0,0xc2,0xd9,0x81,0x13,0x57,0xba,0x92, +0xf6,0xf6,0xda,0xcb,0xf9,0x43,0x66,0xb9,0x7c,0x14,0x35,0xd2, +0xde,0x9e,0x86,0xe1,0x2b,0x45,0x12,0x79,0xa8,0xbe,0x8b,0x4e, +0x80,0x2f,0x6b,0x7c,0xda,0xe2,0xa4,0x8d,0xaa,0x9d,0xbd,0xa9, +0xab,0x81,0x37,0x8d,0xc3,0xfe,0xea,0x96,0xba,0xc6,0xe6,0x28, +0x5c,0xe6,0xb1,0x64,0xef,0x12,0x09,0xda,0x39,0xd8,0x24,0x65, +0xe5,0x05,0x15,0x58,0xab,0xd0,0xed,0x67,0xc5,0x67,0xe2,0x7f, +0x08,0xbc,0x5d,0xfa,0x45,0x53,0xfb,0x15,0x0e,0xae,0xc2,0x0f, +0x38,0xc4,0x64,0xcb,0xb3,0xcb,0x53,0xe5,0x7a,0x99,0xfc,0xb1, +0xa0,0x48,0xaf,0xa8,0x20,0x0e,0x6d,0xf1,0x07,0x30,0x64,0x5c, +0xbc,0xf4,0x43,0x36,0x86,0x71,0xb8,0x03,0x2e,0x91,0xc3,0x9f, +0x07,0x5d,0xf3,0xbb,0x4c,0x6b,0x5c,0xa5,0x7e,0x99,0x56,0x21, +0xcd,0x65,0xf7,0x74,0x82,0xe6,0x3f,0x83,0x39,0x33,0xbc,0x82, +0xfc,0x0c,0x76,0x2b,0x58,0xcc,0xb6,0x25,0xa7,0x9c,0x12,0xbc, +0xa2,0xfc,0x39,0xdc,0xf5,0x9a,0x81,0xf0,0xc5,0x24,0xab,0x2a, +0xb5,0xf6,0x6c,0x13,0x07,0xf6,0x8b,0x99,0x85,0xa8,0x4f,0x60, +0xb2,0x3e,0x4e,0x16,0xb7,0x98,0x09,0x5b,0x70,0xf3,0x65,0xd8, +0x0c,0x9e,0xfd,0x13,0x97,0x71,0xf4,0x29,0xc6,0xfc,0x47,0xd2, +0x7e,0xbf,0xa3,0x19,0xbb,0xef,0xb4,0xce,0x49,0x13,0x55,0x27, +0x77,0x1b,0x5f,0xcb,0x00,0xea,0xce,0xb6,0xd2,0x86,0xf2,0xda, +0xea,0x18,0xfc,0xc8,0x77,0x83,0xee,0xb2,0x6e,0x27,0xfe,0x37, +0xd8,0x2c,0xa7,0xe5,0xb5,0x5b,0x05,0x78,0x76,0x0f,0xba,0x92, +0xb0,0xdb,0xa1,0x97,0x83,0x46,0x6c,0x28,0xc4,0x98,0x14,0xe9, +0x52,0x88,0x81,0xe7,0xf7,0x09,0xcc,0x36,0xc5,0xd9,0xa8,0x6c, +0x0a,0xca,0xe2,0xe8,0x80,0x30,0x0a,0xef,0x0d,0x48,0xb7,0x18, +0xde,0xf4,0x12,0x53,0x20,0x6f,0x7a,0xb7,0x0d,0xb0,0xe3,0xda, +0xe2,0x0d,0xaa,0x90,0xdf,0x2e,0xa5,0x02,0x3d,0x52,0xc5,0x9c, +0xc1,0x80,0xe0,0xf9,0x86,0xcb,0x55,0xa1,0x53,0xa0,0x18,0xfb, +0x7d,0x37,0x7c,0xcf,0x5e,0x12,0xed,0xc9,0xe8,0x5f,0x05,0x74, +0x0e,0xe3,0x54,0x64,0x0c,0x46,0x1c,0x99,0x6f,0xb2,0x46,0x55, +0x78,0xaf,0x9d,0x44,0x30,0x91,0x27,0x92,0x0b,0xd4,0x40,0x61, +0x41,0x91,0xda,0xba,0x30,0xf2,0x92,0x6a,0x29,0x53,0x99,0x93, +0xd9,0xa8,0x46,0x25,0x9c,0x43,0xb6,0xd2,0xf4,0xbf,0x8d,0xa8, +0x86,0x1a,0xc0,0xbf,0xa5,0xfa,0xfb,0x07,0xea,0xb1,0x7b,0x4e, +0x1f,0x3a,0x69,0xa4,0xea,0xe8,0x66,0xe3,0x23,0xf3,0x2f,0x30, +0xe6,0xdb,0xcb,0x1a,0x2a,0xa4,0x94,0x54,0xf5,0x59,0xab,0xb5, +0xa4,0xc7,0x91,0xff,0x13,0x36,0x48,0x8c,0x62,0x40,0x05,0xa6, +0xb3,0x7b,0xd1,0x8d,0x1c,0xbe,0x19,0x3c,0xea,0x3f,0x62,0x1b, +0xc0,0x57,0x98,0x14,0xeb,0x17,0xd2,0x6c,0xfc,0x78,0x3b,0x39, +0x9a,0x7d,0xf4,0x7c,0x74,0x5c,0x2c,0xad,0x55,0xdf,0xc0,0xe4, +0x7e,0x9c,0x0c,0xf3,0x4c,0x28,0x28,0xcc,0x36,0x03,0x86,0x89, +0xc6,0xa9,0x56,0xf8,0xde,0x32,0x7c,0xab,0xd6,0x9a,0x7f,0xfe, +0xa2,0xf1,0xaf,0x94,0xdf,0xb8,0x64,0xd1,0x78,0x50,0xd8,0xcc, +0xd0,0xcc,0x4b,0x4a,0x50,0x7d,0x86,0x1f,0x37,0xb6,0x2a,0xc1, +0x4b,0xf0,0xa4,0x53,0xbd,0xe5,0xbf,0x07,0x72,0x6c,0x24,0xbe, +0xa7,0x8b,0x1f,0xe2,0x74,0x7c,0xaf,0xc9,0x8a,0xff,0xed,0xf7, +0x11,0x98,0x76,0xfe,0x25,0x3d,0x54,0x77,0x50,0xd0,0x4d,0x66, +0xce,0x2d,0xe9,0x9e,0xf7,0x13,0x4e,0xbe,0xd8,0xc3,0xe3,0xdb, +0xf0,0x9e,0x21,0xbc,0x1f,0x09,0x53,0x39,0xc9,0x32,0x89,0x5b, +0xbf,0x25,0x71,0xeb,0x1f,0x31,0x80,0x82,0x8d,0x01,0x05,0x1b, +0x47,0x57,0x6b,0x1f,0xb3,0x00,0x6a,0x59,0x67,0x59,0x63,0x79, +0x5d,0x6d,0x34,0xce,0xf7,0x5e,0xaf,0xb1,0xba,0xc3,0x4e,0xca, +0xbf,0xd5,0x52,0x29,0xa6,0x45,0x61,0x03,0xab,0x8e,0x47,0x28, +0xb3,0x08,0xbc,0xe2,0x33,0x6a,0x1b,0xc8,0x57,0x1b,0x95,0xeb, +0x14,0x1e,0xe0,0x14,0x2d,0xa2,0x0b,0x09,0x6c,0x8b,0xfc,0x51, +0x92,0x6f,0x81,0xe2,0x18,0xc5,0x2f,0x3c,0x1d,0x86,0xdc,0x0e, +0x9c,0xa1,0xda,0xe5,0xa9,0xf4,0x14,0x3e,0x2c,0x84,0x45,0x70, +0x9a,0x96,0x45,0xc1,0x12,0x97,0xb2,0x38,0x94,0x8f,0x4a,0x2d, +0x07,0x54,0x8b,0x9c,0xfb,0xd2,0x92,0xba,0xf3,0x60,0x0b,0xef, +0x54,0xa1,0x84,0x67,0x35,0x48,0x4e,0x44,0x4e,0x68,0x4e,0x88, +0xeb,0x71,0xe7,0xe3,0x4e,0x27,0x38,0x98,0x0d,0x8b,0xe1,0x24, +0x2e,0xfa,0x8e,0x95,0x9e,0xa4,0xbd,0x94,0x1e,0xda,0xc1,0xaf, +0x09,0xc5,0x0f,0x63,0xf0,0x9d,0x13,0xa9,0x96,0x7c,0xfb,0xd9, +0x9e,0xf3,0xbd,0x49,0xdc,0x26,0x54,0xc3,0x93,0xa0,0x8a,0x73, +0x58,0x9d,0x44,0xad,0x13,0xea,0x27,0x53,0xa8,0x94,0x5f,0x90, +0x26,0x3d,0xe8,0x3b,0xb3,0x30,0x23,0x3c,0x23,0x3c,0xed,0x48, +0xb3,0x9c,0xf7,0xbd,0xec,0x34,0xe6,0x41,0x15,0x57,0x32,0x04, +0x91,0xe7,0xb8,0x6a,0x3d,0x03,0xd1,0x73,0x56,0xc1,0xaa,0x1f, +0x27,0x28,0x96,0x23,0x9d,0x88,0x29,0xd2,0x5b,0xcc,0x3f,0xd1, +0x3c,0xd4,0x38,0xad,0x4f,0x27,0xc2,0xd9,0xc9,0xca,0xcb,0xdc, +0xbf,0xc0,0x90,0x6f,0xaf,0xb8,0x58,0x55,0x5b,0x1b,0x83,0xf3, +0x7d,0xd6,0x68,0x2c,0xe9,0xf5,0x90,0x58,0xe3,0x96,0x42,0x0a, +0x44,0x9d,0xd4,0x12,0x3a,0x11,0x21,0x24,0xf4,0x56,0xe0,0x15, +0xdf,0x11,0x3a,0x11,0x55,0xc6,0xe5,0x87,0x0a,0x27,0x44,0xaa, +0x19,0x11,0x33,0x30,0x53,0xc8,0x60,0x4c,0x60,0x35,0x11,0x97, +0x8e,0x0a,0x4b,0x19,0x71,0xe9,0x42,0x22,0x2c,0xd5,0x11,0x97, +0x32,0x42,0xdb,0x72,0x32,0xbe,0xcf,0x0a,0xb6,0x30,0xce,0x86, +0x07,0x2d,0x96,0x3a,0x97,0xdb,0xf1,0xa3,0xa5,0xbd,0x55,0xcd, +0x17,0x38,0x78,0x9f,0x31,0xd2,0xf8,0xc4,0x08,0x3f,0xb4,0x2c, +0xa7,0x80,0xb7,0x72,0xf4,0x97,0xbb,0x37,0xa4,0x2b,0x71,0x8c, +0xf5,0xfa,0x1d,0xbb,0x50,0xc5,0xb8,0x96,0x42,0xfe,0xe2,0xab, +0xcf,0xbf,0xef,0x05,0x25,0xee,0x09,0x73,0xea,0xd0,0x09,0xab, +0x38,0x19,0xe7,0x71,0xec,0x48,0xbc,0xed,0xdc,0xb5,0x4c,0x86, +0x85,0xd2,0x4f,0xcc,0xf5,0x6a,0x79,0x4f,0xa6,0x5a,0xce,0xf5, +0xa4,0xeb,0x67,0x7f,0xe3,0x44,0x17,0x26,0xb7,0x20,0xa7,0x20, +0xa3,0x88,0x13,0x9c,0xa9,0x16,0x7e,0xa6,0xc8,0x24,0x77,0xd4, +0xf7,0xe3,0x2b,0xf4,0x62,0xd5,0xa9,0x89,0xa6,0xaa,0xce,0xd4, +0xd7,0x16,0x01,0x05,0xa6,0x7c,0x5b,0x49,0x63,0x45,0x75,0x35, +0xe5,0x5d,0xde,0xab,0x35,0x17,0xf4,0x3b,0x49,0xb4,0x8b,0x72, +0x18,0x2b,0x49,0x48,0xcd,0x57,0xb8,0xd2,0xfc,0xaa,0xc0,0x0b, +0xe4,0xf0,0xad,0xc0,0x31,0x6f,0x29,0x94,0xab,0x8d,0xcb,0x75, +0x8b,0xa8,0x99,0xb3,0x9c,0x49,0x17,0xdb,0x1e,0x3c,0x1c,0x72, +0x3f,0xb0,0xb4,0x97,0x47,0xc7,0x9b,0x5a,0x5d,0x16,0xdf,0x71, +0xd8,0x2c,0x03,0x4b,0xc6,0x5a,0x77,0x87,0x23,0x6e,0xb6,0x90, +0xcb,0xf8,0x07,0x65,0xc3,0x25,0xed,0x25,0x9c,0x25,0x0b,0xcb, +0xc1,0x96,0xc8,0x75,0x9b,0xec,0xbf,0x70,0xe4,0xb0,0x91,0xf9, +0xa2,0xa5,0xb1,0xad,0x68,0x8c,0x03,0x8e,0x0a,0x90,0x48,0x2d, +0xff,0x6d,0xae,0x9a,0x75,0x07,0xaa,0x77,0x94,0xae,0x1f,0x2c, +0xe0,0x7d,0x7f,0xf2,0xb9,0x17,0xdc,0x5b,0xd1,0x53,0xf1,0x45, +0xe1,0x1d,0xee,0xf7,0x0c,0x12,0xae,0xe1,0xb3,0xdb,0x5e,0xb3, +0x69,0xdf,0x85,0x9d,0x15,0x1b,0x07,0xe8,0xbf,0x9f,0xbb,0x7f, +0x15,0xd0,0x5d,0xd3,0x57,0x75,0x47,0x7e,0x87,0x13,0xbf,0x94, +0x96,0xae,0x54,0xa1,0xba,0xe5,0xab,0xb5,0x6c,0x8e,0xa5,0xd2, +0x6d,0xe6,0x52,0x61,0x5e,0x8b,0x9a,0xc0,0xe1,0x88,0xa8,0x4f, +0xd1,0x00,0x1a,0x88,0x47,0xa5,0x43,0x95,0x63,0x91,0x9f,0x33, +0x7f,0x31,0xb4,0xd5,0xbf,0xde,0x9b,0x2b,0xff,0x44,0xea,0xaa, +0x74,0x90,0xfb,0xba,0xf2,0x97,0x42,0x5a,0xfc,0x1a,0x7c,0x26, +0x94,0x83,0x05,0x4d,0xa9,0xbf,0x1e,0xa9,0x6f,0xa7,0x31,0xe0, +0xcd,0xea,0x4f,0xe8,0x67,0x07,0x67,0x99,0x87,0x89,0x44,0xb3, +0xbb,0x2b,0x2f,0x56,0xd5,0x37,0x44,0xe3,0x42,0xaf,0x15,0x54, +0x3f,0xdb,0x4b,0xc9,0xb0,0xa1,0x0c,0x4c,0xa1,0x52,0x05,0x56, +0x53,0x9a,0xed,0x4f,0xc2,0x3e,0x0f,0xba,0x1a,0x30,0x46,0xd9, +0x40,0x85,0x41,0xa9,0x26,0x85,0x2f,0x45,0x04,0xe8,0x48,0x1b, +0xa9,0x7e,0x25,0x64,0x31,0xd8,0x0c,0x35,0xe4,0xf8,0x3a,0x7b, +0xd7,0x8d,0xae,0xe5,0xb6,0x7c,0x8f,0xbc,0xb5,0xbc,0xa2,0x21, +0x29,0xf9,0xfc,0x99,0x94,0xe3,0xb0,0x68,0x03,0x5f,0xd6,0x8a, +0x1f,0x3c,0x8c,0x49,0x4d,0x38,0x19,0x1b,0xa3,0x9c,0x98,0x70, +0xfc,0x6c,0x56,0x61,0x56,0xd5,0xf9,0x01,0x65,0xd8,0x8b,0x11, +0xe2,0x22,0x88,0x60,0x84,0x4f,0xf1,0x67,0x22,0xbe,0xc2,0xd3, +0x3b,0x65,0x8a,0xa8,0x5e,0x7d,0x46,0xdc,0x01,0x32,0x82,0x32, +0x9c,0x01,0x32,0x16,0x34,0xa5,0x5b,0xab,0x32,0x98,0x81,0x32, +0x69,0xd9,0x36,0x19,0xcc,0x41,0xe9,0x3e,0xf6,0x23,0xc5,0x37, +0x44,0x53,0x8a,0xe5,0x78,0x46,0xff,0xb4,0xd9,0x29,0x6b,0xea, +0x68,0x2b,0x1f,0x59,0x50,0x21,0x8d,0xe5,0xf2,0xc6,0xb2,0x9a, +0x1a,0x1a,0xcb,0xde,0x6b,0x35,0x70,0x52,0x97,0x8b,0x74,0x45, +0xf3,0x40,0x2e,0x58,0x40,0x86,0x0a,0xec,0x50,0xb8,0xf7,0x8a, +0x0c,0x0b,0x57,0x71,0x1f,0x69,0xc7,0x96,0x1e,0x23,0x5c,0x82, +0x47,0xa5,0x44,0x35,0x3d,0x82,0x8b,0x77,0x22,0xa3,0xda,0xe5, +0xad,0xf4,0x10,0xde,0x2a,0x85,0xbd,0x60,0xa1,0xf2,0x27,0x98, +0xeb,0xb0,0xb8,0x22,0xf1,0x9c,0x03,0x2c,0x4d,0x56,0xf2,0x63, +0x6d,0xf3,0x83,0xae,0xa8,0x42,0x20,0x73,0x31,0x27,0xbb,0x46, +0xad,0x41,0x7a,0x63,0xd8,0x1c,0x3d,0x59,0xff,0x84,0xb4,0x22, +0xb5,0x0a,0x16,0x6c,0x52,0x4f,0x5e,0x42,0xcb,0x63,0x4a,0x63, +0xd0,0xc0,0xc6,0x05,0x45,0x1f,0x0e,0x09,0x6a,0x0b,0xe3,0x8b, +0x2a,0x8a,0x6a,0xb3,0x2f,0x72,0x0d,0xf8,0xaa,0x8b,0x15,0xf5, +0x16,0x90,0xb0,0xeb,0x01,0x57,0xbc,0x87,0xed,0x83,0x28,0x9e, +0x94,0x19,0x48,0xf1,0x55,0x8f,0x95,0xa4,0x53,0x74,0x47,0xe6, +0xa0,0xd5,0x67,0xb8,0x7a,0xb0,0x41,0xd8,0xd7,0x29,0xee,0xbb, +0x29,0x18,0x75,0x89,0x46,0xd7,0x59,0xe9,0x72,0x47,0xca,0x44, +0xe9,0x54,0x50,0x35,0xad,0x4b,0xdd,0x65,0xa9,0xea,0xe2,0x6c, +0xed,0x29,0xf3,0x2f,0xa4,0xc5,0xa6,0xac,0xa1,0xaa,0x96,0x0a, +0xbd,0x79,0x3e,0xab,0xb5,0x17,0xf7,0xd8,0xf1,0xbf,0x4b,0x3a, +0xef,0x90,0xa4,0x22,0xd6,0x2b,0x5c,0xfb,0xd9,0xf1,0x7a,0xac, +0x22,0xe1,0x9f,0x87,0x5c,0x0d,0xbc,0x62,0x23,0x29,0xf4,0x12, +0xcd,0x7c,0x75,0x4e,0xf1,0x62,0x1e,0xc1,0x93,0x5f,0x6c,0xfe, +0x1c,0x54,0x26,0x76,0x97,0x41,0x95,0xcd,0xfb,0x30,0x6e,0xa7, +0x6a,0x91,0x79,0x65,0x46,0x45,0x7a,0x69,0xba,0xb2,0xb8,0x76, +0x18,0xb6,0x09,0xb3,0x17,0xe3,0x4e,0x36,0xdb,0x52,0x09,0xd6, +0x30,0xad,0x39,0x79,0x4d,0x6a,0xf0,0x0b,0x5b,0x16,0x5f,0x11, +0x57,0x1d,0xc7,0x8d,0xcf,0x87,0xe7,0xc4,0x12,0xdc,0xbb,0x59, +0xf0,0xb4,0x24,0x10,0xd8,0x8d,0x81,0x0c,0xa6,0x50,0x46,0xf6, +0xac,0xab,0xad,0x2f,0xed,0x3a,0x97,0xc2,0xa4,0x6b,0x77,0xc8, +0x7e,0xb0,0xe4,0x30,0xeb,0x35,0xe9,0x46,0x2f,0x4b,0x56,0xa1, +0x36,0xa7,0x1b,0x43,0x2c,0x59,0xa4,0x7f,0xc9,0x5d,0x61,0xf6, +0x3e,0x56,0x9c,0x6d,0x4d,0x84,0xd9,0x7b,0xc4,0xd9,0x8c,0x04, +0xcf,0x4e,0x14,0x95,0x26,0x7d,0xae,0x7e,0x80,0xb2,0xd4,0x90, +0x09,0x2d,0x6b,0xa1,0xea,0xe4,0x6a,0xe1,0x6d,0x1e,0x54,0x68, +0xca,0x77,0x94,0x5c,0x2c,0xaf,0xa9,0x8e,0x42,0x35,0xf7,0xd5, +0x7b,0x16,0x74,0x51,0xd9,0x31,0x07,0xd4,0xf3,0xc1,0x41,0x72, +0xe4,0x2a,0x16,0x1e,0x85,0x10,0x47,0xc3,0x43,0x76,0x68,0x67, +0x5c,0x64,0xca,0x7f,0x59,0x7a,0xb3,0xa4,0xb7,0x8c,0xf3,0x80, +0xec,0x7a,0xb6,0x3f,0xf0,0x66,0xc8,0xa3,0xa0,0x82,0x3e,0x1e, +0xad,0x87,0x77,0xb6,0x3a,0x8d,0x70,0xa2,0x27,0x3a,0x92,0xe0, +0x1b,0x7e,0x57,0xdc,0xc7,0xec,0xfc,0xf8,0x5a,0xc3,0x2a,0xe9, +0x22,0x82,0xc0,0xbe,0x22,0x7d,0x95,0x17,0x6a,0x73,0x9b,0xe9, +0xa8,0xf3,0x1d,0x1b,0xbd,0x87,0xfc,0x38,0x71,0xa6,0xf4,0xf0, +0x27,0x8b,0x1f,0xf9,0xe0,0xfb,0xcb,0x96,0xa8,0x76,0xb8,0x3c, +0x7a,0x7a,0xe1,0x8f,0xdc,0xef,0x94,0x85,0x50,0x38,0xc3,0x18, +0x2c,0x25,0xe2,0xba,0x01,0x69,0x67,0xa1,0x8d,0xb8,0x81,0x9c, +0x1b,0x51,0x12,0xd6,0x19,0x32,0xf8,0x17,0xbe,0x24,0x5d,0xc2, +0x87,0x56,0xa3,0x70,0x4a,0x3c,0x8f,0xa7,0x58,0xc1,0x04,0x2c, +0xc9,0x52,0xf1,0xc3,0x97,0xac,0x64,0x9d,0x3d,0xe9,0x15,0xdf, +0xb9,0xa7,0xb9,0x17,0x7f,0xa1,0x80,0xa4,0x31,0x51,0x7c,0x5c, +0x5c,0xad,0x7d,0x2d,0x02,0xa9,0x03,0x5b,0xcb,0x24,0x40,0x8a, +0xc1,0x79,0xde,0xeb,0x0f,0xe2,0xa4,0x6e,0x67,0xe9,0x0e,0x87, +0x4e,0x26,0x98,0x49,0x88,0xb4,0x88,0x15,0x94,0xf1,0x07,0x12, +0x75,0x32,0xf2,0xd4,0x91,0x93,0x1c,0x1c,0xa3,0xea,0x33,0xb3, +0x2c,0xb3,0x32,0xb5,0xd2,0x22,0x8d,0x3f,0xe6,0x13,0xef,0x13, +0xed,0xc3,0x2d,0xc5,0x03,0x8c,0xd7,0xa7,0x3e,0xa7,0xfd,0x55, +0x0f,0x9f,0x3a,0x7c,0xfa,0xf0,0xe9,0x14,0x19,0x9f,0x7f,0x26, +0xff,0x6c,0xde,0x99,0x78,0x5c,0xeb,0xb7,0xc1,0x64,0x5b,0xa7, +0x07,0x7f,0xf5,0xd7,0x8a,0xd7,0x69,0xb0,0x6d,0x24,0x69,0x20, +0xb9,0x2b,0x99,0xc3,0x87,0x38,0x89,0xcd,0xb6,0x52,0xfa,0x9a, +0x69,0x2e,0xcc,0x69,0x55,0x83,0xfb,0x6c,0xde,0xd9,0xdc,0x73, +0x39,0xe7,0x38,0xd1,0x0a,0xb6,0xfd,0x83,0x7c,0x76,0x12,0xf2, +0x95,0x4d,0x20,0x5f,0xcb,0x5e,0x52,0x9b,0x99,0xd3,0xa0,0xf6, +0x82,0xb5,0xce,0x57,0x42,0xa5,0x00,0x36,0x2e,0xf1,0x6c,0xb6, +0x1a,0x58,0xa0,0x2b,0x8b,0x8b,0x13,0xed,0x65,0x06,0xaa,0xad, +0x5e,0x5d,0xa3,0xd9,0xc3,0xe7,0x80,0x51,0xfe,0x0d,0xd7,0x30, +0x0e,0xb9,0x51,0x6d,0xaa,0x62,0xbe,0x0d,0x39,0x53,0xfd,0x69, +0x1d,0x65,0xeb,0x0c,0x6c,0x44,0x6b,0xd6,0x2a,0xd1,0x3c,0xd1, +0xe8,0x04,0x57,0x0a,0x9b,0x49,0x99,0x67,0xb9,0x4d,0xa1,0x6d, +0x93,0x9c,0x8f,0xb8,0xe4,0xd3,0x13,0x58,0xc7,0x09,0xad,0xe2, +0x10,0xd1,0xaf,0xb7,0xb9,0xe0,0x7c,0x71,0xe0,0xda,0x85,0x3b, +0x05,0x0f,0xb8,0x4b,0x38,0x24,0x83,0x93,0xec,0x11,0xa3,0x00, +0x53,0x07,0x0b,0xaf,0x16,0xff,0x4e,0xff,0x11,0xeb,0x20,0xbe, +0x46,0xbb,0x5a,0xd6,0x60,0xe7,0xe8,0x2c,0x73,0xd3,0xf2,0xae, +0xb5,0xe0,0x6f,0xd4,0x0d,0x5c,0x6c,0xbb,0xd4,0xec,0xdc,0xe9, +0x76,0xd5,0x99,0x13,0x8b,0x61,0x01,0xe9,0x02,0x4b,0x2b,0x8a, +0xfd,0xdf,0x28,0x9e,0x12,0xf5,0x3d,0x54,0x53,0x04,0x33,0xba, +0xa7,0x8d,0x4f,0x59,0xd2,0x38,0xb2,0xf1,0xb4,0xf0,0x2f,0x32, +0xa6,0x33,0xdd,0x50,0x51,0x43,0xab,0x9b,0xaa,0xef,0x2a,0x9d, +0x65,0xbd,0x76,0xfc,0x6b,0xd8,0x5c,0x44,0x09,0x3a,0x65,0xd9, +0x9b,0x68,0xaa,0x48,0x62,0x47,0x9d,0x62,0x7f,0xf8,0xe7,0x54, +0x00,0x5e,0xb6,0x09,0xe0,0xcb,0x0c,0x4a,0xb4,0xf2,0x28,0x69, +0xfc,0x0e,0x54,0xc8,0x89,0x95,0xfe,0x87,0x34,0x2c,0xc2,0xae, +0x7a,0xdf,0xf3,0x6f,0xb7,0x0b,0xe7,0x73,0x02,0xf3,0xdd,0x72, +0x9d,0xac,0x22,0xad,0x63,0xac,0xe2,0x8e,0xc1,0x01,0xfe,0xf3, +0xd4,0xb1,0xfc,0x5b,0x15,0xa1,0xed,0xfc,0x81,0x80,0x5d,0x11, +0x1b,0x8f,0xa5,0x62,0x34,0x7f,0xf8,0xc4,0xe1,0x13,0xa1,0x27, +0x33,0xcd,0xf8,0xef,0xf3,0x9e,0x17,0x3f,0xab,0x4e,0x8a,0x4a, +0x8a,0x3a,0x1f,0x5d,0x97,0xc5,0xd7,0x38,0x3e,0xbf,0x7c,0xe9, +0xbb,0x24,0xe0,0x94,0xe1,0x1d,0xe6,0xb4,0x61,0x82,0xee,0x31, +0x17,0xce,0x37,0x31,0xfa,0xa8,0xf7,0x5c,0x43,0x26,0xdd,0x4a, +0xe9,0x1a,0xd3,0x5b,0x95,0xdf,0x97,0xa6,0x96,0xde,0x93,0xfc, +0xf8,0xcc,0xf7,0x1c,0x3e,0xb6,0x66,0x30,0x78,0x7c,0x33,0xe9, +0x17,0x9c,0xcc,0x86,0x85,0x69,0xe2,0x3d,0x71,0x1a,0x0b,0xe9, +0x70,0x8c,0xa0,0xf5,0xb7,0x60,0xcd,0x0c,0x4a,0x8f,0x7b,0x38, +0x6f,0x64,0x31,0xf7,0xff,0xa1,0xec,0xab,0xc3,0xab,0x3a,0xbe, +0xb5,0x2b,0x64,0xf6,0x2e,0xb4,0x40,0x0b,0x03,0x3b,0xa1,0x24, +0xb8,0xbb,0xbb,0x87,0x84,0xb8,0xbb,0xbb,0xbb,0x91,0x84,0x24, +0x58,0x02,0x14,0x88,0xbb,0xbb,0xbb,0xbb,0xe3,0xda,0x42,0x29, +0xf5,0x96,0xba,0xd1,0x52,0x59,0xfb,0xb0,0xf6,0xb9,0xf7,0x9b, +0x0d,0xbf,0xfb,0xbb,0xdf,0x7d,0xbe,0xe7,0xfe,0xf1,0x25,0x0f, +0x39,0xc3,0xec,0xbd,0xcf,0x99,0x59,0xb3,0xd6,0x7a,0xdf,0x77, +0x66,0x9f,0xd9,0xf6,0x74,0x03,0xda,0x7e,0xc7,0x41,0xfa,0x1c, +0x70,0xdd,0x80,0x32,0x08,0x3e,0x51,0x64,0x50,0x99,0xf0,0xfc, +0xf6,0x22,0xa2,0x4c,0xcf,0xb3,0x88,0x72,0xb5,0xf6,0xb2,0x08, +0x2e,0x32,0x15,0xfa,0x65,0xdd,0x27,0xe7,0x46,0xbf,0xf5,0x47, +0x57,0xca,0xba,0xef,0x55,0xd8,0x5c,0x0c,0x87,0xa0,0x5b,0x0d, +0xb6,0x29,0xac,0x19,0xdf,0x9e,0x8a,0x73,0x28,0xd6,0x5a,0x2b, +0xde,0x18,0xc4,0xb6,0x91,0x63,0x44,0x5a,0x8d,0x4e,0x34,0xf2, +0x6e,0xf0,0x4d,0x9f,0x1b,0x2c,0x72,0x6a,0x0d,0xab,0xf4,0x8a, +0x99,0x08,0xf9,0xc8,0x97,0xc5,0xb6,0x13,0x57,0x54,0x59,0x5c, +0x9b,0x57,0x6b,0x9c,0x2b,0x9c,0xf0,0x89,0xf4,0x0a,0xf3,0xe5, +0xa5,0x1d,0xd6,0x04,0xde,0xbb,0x4f,0xe3,0xcb,0xa2,0xea,0x23, +0xcb,0x4d,0xa2,0x85,0xa2,0xb0,0x22,0xff,0xec,0x50,0x1e,0x8e, +0xe1,0x5f,0x14,0xce,0xc2,0x7b,0x52,0x27,0xbe,0x07,0x89,0x0c, +0xc5,0xac,0xe1,0x33,0x7c,0xfd,0x3a,0x03,0x98,0x87,0x83,0xf8, +0x90,0x80,0x2e,0xa4,0x51,0x0b,0xe9,0xd0,0x08,0xb7,0x72,0x8a, +0x78,0xc8,0x44,0x3a,0x44,0x64,0xe9,0x9a,0x43,0x1f,0x6a,0x1d, +0x64,0xf9,0x3d,0xec,0x5f,0x0a,0xd1,0xc5,0xc3,0xda,0xcf,0x22, +0xa4,0xe8,0x45,0x56,0xa8,0x94,0x67,0x23,0x18,0x90,0x1f,0x59, +0xc2,0xe8,0x28,0x0b,0x9b,0xa3,0xd9,0xe0,0xfc,0xe2,0xbb,0x3a, +0x0a,0x17,0x96,0xf9,0xea,0xb0,0x99,0x71,0xd2,0xa0,0xeb,0x9e, +0x37,0xe4,0x67,0x3c,0x19,0xd5,0xc8,0xd1,0xae,0xb8,0x80,0xf7, +0x68,0x7e,0x74,0x6e,0x74,0x4e,0x74,0x67,0x9d,0xe0,0xd1,0xab, +0xf5,0xbe,0x75,0x9b,0x8b,0xaf,0x50,0x7a,0xbc,0x2c,0xb2,0x34, +0xe2,0xd0,0x99,0xed,0x67,0x36,0x27,0xde,0xe9,0xbf,0x3d,0x71, +0xe3,0xaa,0x43,0xad,0x60,0x61,0xa1,0x6f,0x71,0xd4,0x3a,0x2a, +0x3f,0xbc,0x20,0xbc,0xa0,0xa7,0xa9,0xad,0xb5,0xb5,0x95,0x87, +0x26,0x68,0x92,0x3e,0xc3,0x26,0x88,0x24,0xc1,0x41,0xfe,0x21, +0xde,0xc1,0x41,0x45,0x21,0x85,0x91,0x39,0x1e,0x5e,0xc2,0x15, +0xb7,0xeb,0xf6,0xa3,0x4e,0x67,0x12,0xcf,0x26,0x9e,0x49,0xda, +0x93,0xb4,0xfb,0xfc,0xbe,0x0b,0xe9,0x96,0xc2,0xcf,0x97,0x9e, +0xa5,0x3c,0x63,0x11,0xe7,0x38,0x01,0x2e,0xdc,0xd7,0xa9,0x5f, +0xa6,0x7d,0x92,0xc1,0xb0,0x5a,0x5e,0x48,0x70,0xba,0x0f,0x4e, +0x64,0x4c,0x93,0xde,0x07,0x1f,0x4d,0x0e,0x4b,0x1d,0xe8,0x01, +0x74,0xfa,0x90,0x83,0xec,0x39,0xe0,0x73,0x00,0x7d,0xc8,0x17, +0xd2,0x14,0xfa,0xb9,0xcb,0x03,0xe7,0x2b,0x4e,0x75,0x5d,0x82, +0x61,0xf7,0x9e,0xde,0x83,0xcd,0xbc,0x14,0x86,0x7b,0xe8,0x37, +0xf5,0x1f,0xf5,0x8c,0x77,0xfb,0xb6,0x0b,0x96,0xee,0x7b,0x1d, +0xb6,0xbe,0x04,0x73,0x0f,0x96,0x5c,0x54,0xee,0x6b,0x6b,0x32, +0x97,0xf7,0x67,0x6c,0xc7,0xf0,0x9c,0xb9,0xba,0x93,0x8b,0x8d, +0xaf,0x7d,0x68,0xb1,0x89,0xd0,0x59,0xde,0x5c,0xd9,0x24,0xa3, +0x83,0xef,0x06,0xad,0x45,0xf2,0x8c,0xcd,0x1b,0x70,0x24,0x1b, +0x1c,0xa0,0x42,0x26,0x74,0x8a,0x45,0x68,0x43,0x1f,0x76,0x1f, +0x7c,0x82,0xe9,0xdd,0x16,0x8e,0x78,0x79,0xb3,0xb6,0xe3,0x9d, +0x0d,0x70,0xd9,0x16,0xcb,0x71,0x1e,0x9c,0x27,0x31,0xc7,0x8f, +0x47,0x46,0x46,0xf0,0xf8,0x9e,0x2d,0x73,0x34,0xbf,0x00,0x2f, +0x3f,0x0f,0xff,0x9b,0x09,0xb7,0xe2,0x6f,0xc6,0x1d,0x88,0x5c, +0xce,0xcc,0x7e,0x32,0xcb,0x4a,0x00,0xdd,0x5c,0x98,0x5e,0xfe, +0x4d,0xeb,0x3f,0xa1,0x7f,0x84,0x7c,0x17,0x52,0x34,0x20,0xec, +0x28,0xd9,0x5c,0xbc,0xab,0xb0,0xbf,0xb6,0xa5,0xa5,0xa1,0x9b, +0x87,0x77,0xfb,0xa5,0xb9,0xa4,0xb0,0xa8,0xa0,0x38,0xbf,0x98, +0x87,0x41,0x98,0x87,0x4d,0xfd,0x90,0x4e,0x94,0xee,0x63,0x2c, +0xc8,0x42,0x6e,0xf8,0x5d,0x73,0x08,0x14,0xea,0xe4,0xd9,0x47, +0xa6,0x15,0x6c,0xff,0xa6,0x68,0xd5,0x0d,0x56,0x64,0x44,0xbe, +0x57,0xc2,0xde,0x91,0x93,0x2c,0x9c,0x28,0x58,0xd9,0xa2,0x15, +0x81,0x4b,0xfd,0x14,0xec,0x6d,0xd1,0x9e,0x58,0xe0,0xbb,0xd4, +0x0e,0xfd,0xfa,0x38,0xf1,0x8c,0x1d,0xc5,0xc8,0x3e,0x36,0x0c, +0x78,0x02,0xfb,0xa8,0x4e,0xae,0x51,0xb6,0x4d,0x66,0x51,0x7e, +0x59,0x49,0x79,0x19,0x0f,0xd1,0xc4,0xc7,0xcd,0xd3,0xd7,0x3c, +0x84,0x49,0xce,0xcf,0x15,0x5f,0x52,0xe6,0x3d,0xbf,0xa1,0x37, +0x39,0xc2,0x68,0xa0,0x39,0xcb,0xba,0x36,0x8c,0x06,0x32,0xc3, +0xf4,0x54,0xbe,0xa4,0x81,0x2c,0x02,0xb4,0x16,0x0f,0xbd,0xa0, +0x81,0xda,0xd9,0x60,0x0d,0x95,0x6a,0xb0,0x58,0xe1,0x35,0x2c, +0x4d,0xe1,0xa4,0x1d,0xd8,0xc9,0x14,0x64,0xd0,0x2d,0xd6,0x4e, +0x79,0x61,0xb9,0x52,0x5b,0x9e,0xf9,0x38,0x06,0xb6,0x54,0xe9, +0x3f,0x2e,0x3a,0x82,0x1f,0x94,0x71,0xd0,0x87,0x65,0x54,0x5a, +0xb8,0x90,0x2b,0xb0,0x54,0x79,0x22,0x3f,0xa9,0xab,0x4b,0x43, +0xb1,0x12,0x9b,0xb1,0x8c,0xc3,0x66,0xd8,0x44,0x6f,0xc1,0x56, +0x1d,0x0e,0xfe,0xb8,0x45,0x75,0xf0,0xc0,0x2d,0x0e,0xbf,0x43, +0x4d,0x7a,0x17,0xb6,0x6a,0xb1,0xaa,0xbb,0x54,0x0b,0x0f,0xdc, +0xe5,0xf0,0x38,0xc3,0x7d,0x9c,0x11,0x67,0x68,0xad,0xa7,0xde, +0xed,0x5b,0xd7,0x5e,0xd4,0x9d,0x39,0xa2,0x0a,0x0e,0x7b,0x17, +0x92,0x5c,0x67,0x46,0x71,0x1b,0x73,0xf2,0x98,0x38,0xbb,0x87, +0x7d,0x1c,0x24,0x2d,0xa1,0x68,0x36,0x09,0x66,0x04,0xad,0x70, +0x0b,0xbd,0x54,0x78,0xb1,0xa8,0x44,0x0d,0xcc,0x8d,0x89,0xcc, +0x80,0x32,0xe9,0x87,0x47,0x0f,0xb0,0x10,0xf1,0xfa,0x17,0xd7, +0xfd,0xbf,0x3b,0x59,0x23,0x43,0xcb,0x62,0xdf,0x75,0x47,0x5f, +0xcc,0xa8,0x4f,0x05,0xed,0x3c,0xb0,0x83,0x2a,0x79,0x7a,0x47, +0x26,0x07,0xd5,0xd8,0xc0,0x28,0x7d,0xc8,0xff,0xcc,0xf8,0x9f, +0x45,0x51,0xb7,0x5c,0xef,0x9c,0x80,0xbc,0xda,0xf2,0xea,0xda, +0xca,0x26,0xc7,0x5a,0x21,0xdc,0xc7,0xc7,0xc3,0x2f,0x34,0x3c, +0x27,0x2a,0x37,0x26,0xb7,0xa1,0xaa,0xae,0xae,0xa2,0xd1,0xb1, +0x46,0x38,0x1e,0xe8,0xeb,0x15,0x10,0x1e,0x51,0x19,0x5b,0x15, +0x57,0x6b,0x1d,0x25,0x34,0xec,0x1b,0x38,0x0a,0x53,0x8c,0x78, +0xd4,0x27,0xeb,0xe3,0xbc,0xb5,0xdd,0xd4,0xdb,0x5c,0x6e,0xb6, +0x95,0x77,0xa5,0x3c,0x52,0xfd,0x79,0x27,0x71,0xad,0x8c,0x6b, +0x51,0xef,0x25,0xf5,0xb9,0xb9,0x8d,0x1a,0xbd,0x9c,0x43,0xb6, +0x8a,0xb1,0x27,0x77,0xe2,0xec,0xe5,0x7c,0x8d,0x7f,0xb8,0xba, +0xd8,0xe6,0xd8,0xce,0x13,0xbc,0xf4,0x14,0x23,0x69,0x6a,0x5d, +0x72,0x4d,0x72,0x8d,0xbc,0xaf,0xa6,0x1e,0x2e,0x27,0xbf,0xf6, +0x8f,0x5e,0x69,0xbe,0xc7,0xb7,0xa3,0xab,0x03,0x2c,0xe2,0xc2, +0x3d,0xfd,0xfd,0x9c,0x03,0x83,0xeb,0x9c,0xdb,0xbc,0x2b,0x3d, +0xbc,0x85,0xfa,0x90,0x66,0xef,0x0a,0x7f,0xaf,0x68,0xa7,0x68, +0xcb,0xd8,0x22,0x1b,0xa1,0x31,0xb3,0x36,0xab,0x2a,0x8b,0xf7, +0x03,0xba,0x11,0x75,0xb9,0x24,0x93,0x53,0x7a,0xb1,0x7a,0x3c, +0x78,0x90,0x0b,0xae,0xe7,0xbd,0xcf,0xf8,0xf3,0x81,0x67,0x8e, +0x9f,0xf5,0x9a,0xb7,0x84,0xe4,0x5a,0xaa,0xfc,0x4a,0x6e,0xd4, +0x97,0x0e,0x66,0x69,0x64,0xf6,0x5c,0xbe,0x72,0x91,0x71,0xf2, +0x3f,0xc7,0x28,0x7e,0x61,0x0b,0x05,0x24,0xdc,0xcd,0xcf,0xcb, +0xc5,0xcf,0xb3,0xd2,0xbf,0xd6,0xbf,0xd5,0xd9,0x4f,0xa8,0xf6, +0xac,0xf1,0x6b,0x0c,0x72,0x0c,0xb1,0x0c,0x37,0x38,0x5e,0x66, +0x25,0xdc,0x2d,0xbd,0x56,0x3d,0xdc,0x30,0xe2,0x73,0x23,0xf8, +0x93,0xd0,0xe2,0x61,0x41,0xb3,0xc4,0xbc,0xd8,0xb1,0x62,0xa8, +0xa3,0xb5,0xbf,0x7c,0x84,0x97,0x31,0xe7,0x73,0xfa,0x02,0xdd, +0x03,0xc9,0xbf,0x33,0xad,0xaf,0x45,0x50,0xb1,0xa9,0xd0,0x57, +0xd9,0x5e,0x53,0x5f,0x2f,0x07,0xe0,0xba,0xc3,0xf8,0xaa,0x9c, +0xa6,0xde,0x06,0x9d,0x4c,0x36,0x06,0x39,0xf2,0x9c,0xa9,0xeb, +0xa8,0xf4,0x1a,0x27,0xed,0xc6,0xba,0xff,0x07,0x77,0x41,0xeb, +0x28,0x1d,0x65,0x6a,0xac,0xb1,0x2d,0x35,0xed,0xf2,0x79,0x46, +0x9f,0x67,0xaf,0x12,0x9a,0xdb,0x71,0xda,0xd7,0x09,0xe9,0xa7, +0x2f,0x9d,0x3c,0xa5,0x1a,0x9f,0x90,0x74,0x59,0xa5,0xa8,0x3e, +0xa3,0xf9,0xb6,0x5a,0xa5,0xb9,0x17,0xb7,0xdc,0x9f,0x71,0x47, +0x5d,0x75,0x31,0xf3,0x01,0x4d,0x64,0xf5,0x75,0x19,0x4d,0x37, +0xd4,0x6a,0x59,0xfd,0x32,0x3f,0x4f,0xe4,0x75,0xd4,0xab,0x9d, +0x46,0xab,0xbb,0x6a,0xeb,0xdb,0x54,0x53,0xd2,0x92,0xe5,0x37, +0x13,0x56,0x09,0x4d,0xed,0xf8,0xd6,0xd7,0xf1,0x19,0xa7,0x2e, +0x9d,0x3c,0xa9,0x8a,0x89,0x30,0x9f,0xc6,0xb9,0x44,0x7b,0x44, +0xf8,0x77,0x44,0x08,0x65,0xf5,0x45,0x9d,0x39,0x9d,0x2c,0x60, +0x73,0x68,0x82,0x6b,0x94,0x5b,0xa4,0x6f,0x4f,0x98,0x50,0xda, +0x54,0xd0,0x95,0xdd,0xc9,0x63,0x5d,0x16,0x3d,0xe5,0x72,0xdc, +0x21,0xdc,0xbb,0xf3,0xb8,0x50,0xde,0x52,0xd8,0x97,0xd9,0xcd, +0x4b,0xef,0x64,0xd0,0x93,0x4e,0x31,0xce,0x61,0x5e,0xdd,0x11, +0x42,0x79,0x6b,0x61,0x4f,0x56,0x0f,0xef,0x22,0xed,0xa0,0xcf, +0xc4,0xfe,0xa5,0xe3,0xb0,0x4e,0xb9,0x1a,0xd7,0x73,0xf2,0x0c, +0x87,0xb1,0x3d,0x89,0xbd,0x10,0x7b,0xfe,0x84,0x3a,0x9e,0xb1, +0x84,0x08,0xe2,0xb5,0x69,0x9d,0x05,0xee,0x72,0x2f,0x34,0x13, +0x40,0xaf,0x1b,0xf8,0xbb,0xad,0x30,0x83,0x67,0x12,0xe0,0xbc, +0xcf,0x59,0x87,0x53,0x9e,0xbc,0x6b,0x42,0x4c,0x82,0xed,0x3c, +0x9c,0x26,0x8f,0x18,0x10,0xf2,0x61,0x7d,0xd5,0x58,0xae,0x46, +0xee,0x70,0xda,0xbd,0x4b,0xb7,0x79,0x6c,0x20,0x97,0x72,0x2f, +0xe6,0xe5,0xab,0xbd,0x64,0x56,0xa3,0xd2,0xb4,0x97,0x08,0xf1, +0xd2,0xfd,0xcd,0x5f,0x4a,0x3d,0x19,0xe5,0x7a,0x2a,0xda,0xaa, +0xeb,0x18,0x42,0xcc,0x93,0x15,0xc0,0xab,0x03,0x4e,0xf2,0xba, +0xa7,0x69,0x36,0xd8,0xca,0xb6,0x5f,0xc0,0xe9,0x61,0x04,0xf3, +0x7d,0x79,0xc5,0xe0,0xbf,0x75,0x9e,0xd8,0x80,0xbd,0x74,0x2b, +0xcc,0xb8,0xdd,0x77,0xec,0xa9,0xf5,0xf2,0x83,0xec,0x9f,0x29, +0xb9,0xd4,0x75,0xb1,0xab,0x57,0x0d,0xaa,0x41,0x07,0x3f,0x45, +0x2d,0x82,0xee,0x09,0xb8,0x71,0x2b,0x2e,0x52,0xef,0xf6,0x6a, +0xbe,0x5a,0x7e,0x23,0xff,0x8e,0x2a,0xfc,0x4c,0xa0,0x08,0x8a, +0x18,0x4d,0xca,0x97,0x17,0x09,0xec,0x8b,0x54,0x70,0x6a,0x20, +0xa3,0x49,0x97,0x19,0x4d,0xb2,0x45,0x0b,0x0e,0x37,0x9e,0xb1, +0x35,0x35,0x52,0xef,0xf0,0x19,0x9e,0x2c,0x1c,0x4b,0x86,0x77, +0x55,0xbf,0xc1,0xcd,0xc4,0xa9,0x30,0xa6,0x47,0x1d,0x1f,0x40, +0x00,0xdd,0x82,0xa1,0x5f,0x73,0x62,0x9c,0x54,0x47,0x87,0x6f, +0xd5,0x3d,0x2c,0xfa,0x8a,0xef,0xc4,0x3a,0x6b,0x08,0xe6,0x62, +0x74,0x43,0x8d,0xdd,0x2c,0xfc,0xba,0x42,0x07,0x22,0xae,0xdb, +0x47,0x09,0x15,0x87,0xab,0xcd,0x9b,0x6c,0xdd,0x5d,0xac,0xdd, +0x75,0xbd,0xea,0x1d,0x84,0x1b,0xcd,0x43,0x6d,0x1d,0x5d,0x2d, +0xae,0xbd,0x9e,0x13,0x2e,0x35,0xdd,0x82,0x49,0x8b,0x53,0x93, +0x67,0x1b,0x2f,0x1d,0xfb,0x95,0x1e,0x22,0x69,0xed,0x29,0x1d, +0x97,0x3b,0xf9,0x49,0x02,0x33,0x71,0x06,0x3d,0x08,0x33,0x1e, +0x92,0x53,0xe8,0x4b,0x6b,0x5c,0x0a,0x03,0x8a,0x1d,0xba,0xab, +0x84,0xb0,0xfe,0xe8,0xca,0x80,0x36,0x1e,0x9d,0xd1,0x88,0x76, +0xf4,0x37,0x0d,0x97,0xdf,0x70,0x28,0x17,0xc2,0x0c,0xbd,0x2d, +0xdd,0x5d,0x99,0x2f,0xff,0x24,0xe7,0xcc,0x03,0xf8,0x27,0xa3, +0xf4,0x5a,0x2f,0xc0,0xc4,0xd5,0xdd,0xca,0xfb,0x05,0x6b,0xe8, +0xab,0x78,0xc9,0x1a,0xe6,0xfb,0xae,0xd7,0x5a,0x37,0xf8,0x42, +0x19,0xae,0x2b,0x05,0x3d,0x68,0x57,0x83,0xcd,0x0c,0x71,0x11, +0xb9,0x3f,0x77,0xb3,0xfc,0xec,0xd2,0x67,0x66,0x87,0x3b,0xad, +0x61,0xa7,0xed,0x58,0x3f,0xb8,0xc8,0x7f,0x0c,0x07,0xd1,0xb0, +0x8f,0x93,0xbe,0x41,0x6b,0xe6,0xe7,0x81,0x37,0x18,0x89,0x08, +0x14,0xea,0x19,0x89,0x28,0x65,0x52,0xe4,0x22,0xc3,0x20,0x48, +0x93,0x06,0x30,0x4d,0xde,0xbd,0xa1,0x1b,0x3b,0x27,0x19,0x45, +0x38,0xb1,0x9e,0xd3,0x4d,0xd4,0x3e,0xa7,0x7f,0x3e,0x8d,0x61, +0xcc,0xfc,0x34,0x58,0x98,0xf5,0x7b,0x6e,0x66,0x74,0x66,0x74, +0x7a,0x6c,0x57,0x91,0x10,0xd2,0xe9,0x39,0xe9,0xdb,0xee,0x12, +0x29,0x64,0x9f,0xc8,0x8e,0xc9,0x8a,0xf6,0x4d,0xf2,0x38,0xe7, +0x7a,0x8e,0x7f,0x02,0x97,0x50,0x1f,0xdf,0xe1,0xb2,0xed,0x54, +0xfe,0x21,0xfd,0x05,0x05,0xbd,0x1a,0xe0,0x8f,0x57,0x27,0x39, +0x53,0x60,0x5c,0x5e,0x6f,0x02,0xf4,0xc8,0xb8,0x09,0x9d,0x00, +0x2b,0x13,0x4e,0xd2,0x76,0xa4,0xa0,0xa7,0x8f,0x7a,0x04,0xce, +0x5c,0x67,0x18,0xa3,0xcf,0x30,0x46,0x76,0x25,0x67,0x86,0xa3, +0x2f,0x5c,0xe9,0x57,0xe6,0x4a,0x47,0x5e,0xce,0x1a,0x78,0xd8, +0xf9,0x5b,0xcb,0x5d,0xef,0x96,0x67,0x0d,0x6a,0xe2,0x70,0x9e, +0xdf,0xda,0xa3,0x8b,0x87,0x1c,0xe5,0xb5,0x27,0xed,0x2c,0x70, +0x93,0x57,0x3e,0x16,0x31,0x4f,0x8a,0xfa,0x7f,0x3c,0x09,0x74, +0x7b,0xa9,0x69,0x59,0xc4,0x15,0x75,0x26,0x9e,0x9a,0x73,0xf2, +0x9a,0x34,0xc6,0x38,0xeb,0x6c,0x95,0xa3,0xb8,0x88,0x0b,0x8a, +0xbf,0x5c,0xaf,0x51,0xcf,0x3d,0xcc,0xfd,0xa8,0xf0,0x41,0x7d, +0x78,0xa7,0x60,0x12,0x74,0x20,0x42,0x33,0x9e,0x7f,0x6c,0xce, +0x89,0x39,0xca,0xcd,0x34,0x06,0x36,0x83,0x46,0x3f,0x6a,0xc0, +0xee,0x3f,0x48,0x9c,0x5f,0x98,0x4b,0x68,0x40,0x6f,0xa4,0x50, +0xdb,0x5e,0xd6,0x9f,0xdb,0xc9,0xb7,0xad,0xe1,0x4e,0xe4,0x46, +0x15,0x46,0x14,0x0c,0xf7,0xf4,0x0d,0x55,0xf6,0xf1,0x6d,0xf8, +0xa1,0x1d,0x64,0x71,0xe1,0x3e,0x1e,0xee,0xae,0xbe,0x01,0xa5, +0x7e,0xa5,0x41,0xf9,0xfe,0x9e,0xc2,0x80,0xdf,0x88,0x47,0x97, +0x07,0x8f,0xf6,0xb6,0xb0,0x56,0x7a,0x85,0x18,0x97,0xc6,0x8e, +0x3e,0x52,0x83,0x99,0x36,0x38,0x93,0x5b,0x17,0xe0,0xa4,0xe3, +0xaa,0x5e,0x6d,0x31,0xd6,0x5a,0x51,0x97,0xf6,0x48,0x35,0x95, +0xec,0x48,0x1b,0x70,0xf8,0x6b,0x1e,0xa8,0x93,0xcc,0x41,0x15, +0x29,0xee,0x4f,0x1a,0x9f,0x71,0xe6,0xbd,0x93,0xec,0x47,0x38, +0x93,0x9c,0x5e,0x90,0x5a,0x98,0x5c,0xac,0x0a,0x0b,0xfb,0x51, +0x8d,0x5c,0xcc,0x7a,0x2f,0x2b,0x4b,0xed,0x16,0xcc,0xe8,0x67, +0x52,0x37,0xa3,0x48,0xfe,0x26,0xa2,0x7d,0xa6,0x10,0x6d,0x1a, +0x60,0x6e,0x65,0xdd,0xe8,0x29,0x94,0x95,0x97,0x54,0x16,0xd6, +0xf0,0xd7,0x75,0x48,0xfc,0x7b,0x09,0x17,0x4e,0xaa,0xe3,0x6a, +0x5b,0x58,0x4c,0xc2,0x77,0x1a,0x3a,0xac,0xb0,0xac,0xb6,0x13, +0xbe,0xe9,0x1d,0xed,0x6d,0x1c,0xbf,0x9c,0x9c,0x72,0x21,0x25, +0xe9,0x97,0x43,0x42,0x43,0x87,0xca,0xf4,0xe7,0x46,0x0a,0x3f, +0x59,0x14,0xdd,0xd4,0xd6,0xc5,0x5f,0x30,0x54,0x9e,0x11,0x3f, +0x67,0xa9,0xee,0xe6,0x6c,0x23,0xab,0x5a,0x13,0xa1,0xb7,0xba, +0xb5,0xb6,0x8e,0x51,0x75,0x0d,0xdf,0x75,0x5a,0xf8,0x9a,0xec, +0x6b,0x0c,0x15,0x72,0x59,0xda,0x2c,0x94,0x67,0x21,0x14,0x1a, +0xd2,0x53,0xea,0xeb,0x63,0xe9,0x69,0xe4,0xef,0x52,0xe4,0x53, +0x1a,0x5c,0xc9,0xb3,0x23,0x96,0xa4,0x36,0xa2,0x31,0xb2,0x2d, +0xb2,0xa2,0x4b,0x58,0x31,0x74,0xac,0xdf,0x75,0x84,0x5d,0xd1, +0x8e,0x8f,0x47,0xa1,0xb5,0x03,0x5b,0x07,0xe0,0x7a,0x27,0x9a, +0x91,0x92,0xe2,0xa2,0xd2,0xbc,0x12,0x93,0x6c,0x21,0x36,0x34, +0x2c,0x38,0x24,0x84,0x97,0x16,0x38,0x43,0x9b,0x0d,0xe6,0xba, +0x40,0xae,0x39,0x8e,0xb8,0xc2,0x26,0xe2,0x66,0x76,0xcc,0x76, +0xb5,0x4d,0xa5,0xa3,0xd0,0x56,0xd2,0x58,0x5c,0x5b,0xc2,0xe3, +0x18,0xe7,0x9e,0xe8,0x76,0xce,0xe3,0x5c,0xba,0xb5,0x00,0x33, +0xb3,0x40,0xbd,0xe8,0xb3,0xbc,0x33,0x7d,0x82,0xcd,0x29,0xfd, +0xd3,0x3a,0xa7,0xf9,0xdf,0x61,0x37,0xf7,0xf1,0x1a,0xe0,0x1c, +0xe0,0x90,0x47,0x5e,0xb7,0x60,0x90,0x63,0x96,0x6b,0x9f,0xdf, +0x53,0xdd,0xcd,0xf4,0x24,0x2f,0x95,0x88,0x4a,0x5a,0x16,0x59, +0x14,0x95,0x1b,0x35,0x96,0x23,0xc4,0x15,0x86,0x97,0x46,0x16, +0xf0,0xd8,0x81,0xe1,0x34,0xea,0x5e,0x28,0xf3,0x95,0xff,0xce, +0xf5,0xe2,0x87,0xd6,0xb4,0xd6,0xa1,0xcd,0x75,0xd8,0x83,0x97, +0xac,0xc8,0x50,0x6b,0x6b,0x7b,0x15,0x23,0x4f,0x67,0x76,0xd1, +0x76,0xcc,0x73,0xe5,0x4c,0x71,0x26,0xed,0x12,0xdf,0x72,0xe2, +0xdc,0xa6,0x38,0x48,0x6f,0xf5,0x70,0xd3,0xc5,0x2f,0x59,0x84, +0x6a,0x6a,0xe2,0xef,0xe8,0x4f,0x5e,0x4e,0x64,0xba,0xb9,0xd8, +0xf9,0xbc,0x00,0xfc,0xee,0xaa,0xd6,0xda,0xda,0x7a,0x59,0x4b, +0xae,0x3d,0x8a,0xaf,0xc9,0x52,0x79,0x1a,0xe8,0xe6,0x80,0x8b, +0x6c,0xb6,0xe5,0x0a,0x9f,0x61,0x19,0x6d,0xf6,0x60,0x2d,0x8b, +0xc2,0x90,0xff,0xd1,0x02,0x45,0xb9,0xb4,0x81,0x76,0x62,0xfa, +0x30,0xa4,0xbf,0xf8,0xdb,0xd0,0x8d,0xb5,0x5c,0x5e,0x51,0x56, +0x7e,0x66,0x99,0x59,0xb6,0x70,0x3e,0xe9,0x42,0xd2,0xf9,0x24, +0x1e,0x74,0x58,0x88,0xcd,0x1d,0x84,0xc3,0x38,0xdc,0x09,0x8d, +0x7d,0xd2,0x3f,0x76,0x50,0xef,0x8c,0xbd,0x78,0x78,0x08,0xe6, +0x42,0x22,0x1a,0xf6,0x73,0xa7,0xa2,0x4e,0xc6,0xc6,0x45,0xf1, +0xcc,0xd0,0xd9,0xc5,0x19,0x45,0xe9,0x85,0x76,0x39,0x82,0xcf, +0x3e,0x63,0xed,0xdd,0x56,0x35,0xf6,0x42,0x63,0x69,0x6d,0x65, +0x45,0x15,0x8f,0xd5,0xc3,0xcd,0xe2,0x48,0x37,0x76,0x5d,0xe1, +0xb0,0x5c,0x3c,0x42,0x99,0xcd,0xdb,0x39,0x50,0x9b,0xe3,0x0a, +0x3b,0xdb,0x39,0x1c,0xc6,0x69,0xac,0xd3,0x9b,0x5c,0x39,0xd1, +0x7e,0x4e,0x3b,0xee,0x74,0xe5,0xb0,0x1d,0xdf,0xa6,0xe0,0x6d, +0xc9,0x08,0xdc,0xda,0x29,0xc3,0xac,0xc0,0xa1,0xf7,0x32,0x7a, +0x05,0xbc,0x8d,0x38,0xd9,0x85,0x5c,0x98,0x0b,0xf1,0x0f,0xb4, +0x0e,0xb1,0x6c,0xe5,0xfd,0xaf,0x90,0x75,0xf7,0xb0,0xf7,0xb7, +0x09,0x66,0xfa,0xa0,0xab,0xbc,0xb9,0xaa,0x96,0x65,0xff,0x77, +0xfd,0xd6,0x1d,0xc3,0x57,0x86,0x5e,0x2c,0xb0,0x9a,0x65,0x82, +0x3d,0x64,0x33,0x8a,0xc7,0x41,0xa9,0x94,0x43,0xcf,0x64,0x9c, +0x4a,0x89,0x4b,0x88,0x4b,0x10,0xce,0xb6,0xb1,0x80,0xbe,0x80, +0x6f,0x7e,0x02,0xea,0xfd,0xa8,0xfe,0xc8,0x6a,0x3f,0xaa,0xdb, +0x82,0xfa,0x6e,0xe4,0xf1,0xc2,0x2f,0x24,0xe4,0x88,0xc5,0xb1, +0x45,0x7b,0xeb,0x6c,0x99,0xc2,0xf8,0xa1,0xfe,0x6e,0xa6,0xbc, +0x78,0x57,0x3f,0x04,0x97,0x48,0x5a,0x8a,0xfc,0x94,0x9a,0xdf, +0xf1,0xad,0x96,0x26,0x15,0x49,0x53,0x5c,0x4a,0x23,0xef,0x87, +0x5e,0x0f,0x94,0xad,0x5a,0x63,0x52,0xa1,0x5b,0xcc,0xc6,0x35, +0x0e,0xcc,0xa9,0xfd,0xdf,0xdc,0x49,0x7d,0x6f,0x9f,0xed,0x3e, +0xf2,0x34,0xe7,0xab,0x7d,0xf5,0x63,0xd9,0x0f,0x78,0x78,0x9b, +0x5c,0x08,0x39,0x1f,0x92,0x18,0xce,0x87,0x9c,0x8d,0x3b,0xed, +0x3b,0xef,0x28,0xc9,0xb4,0x7b,0x71,0x43,0x5c,0xee,0x70,0x96, +0x46,0x7a,0xeb,0xe5,0xee,0x41,0x35,0x49,0xde,0xed,0x0b,0x57, +0xeb,0xc1,0x6a,0x0e,0x38,0xf9,0x31,0xc7,0xab,0xef,0xe3,0x6a, +0x4e,0xdc,0x82,0x1e,0x14,0x7e,0xc3,0x5b,0xf8,0x1b,0x07,0xf9, +0x70,0x81,0xa2,0xef,0x08,0xf8,0x12,0xf4,0x5d,0x45,0xc1,0xd7, +0x1c,0x7d,0x89,0xe3,0x14,0xf0,0x35,0x61,0xaf,0x0b,0xd1,0x99, +0xde,0xae,0x9a,0x68,0xe9,0xea,0xf0,0x6a,0x15,0x3c,0xdd,0x4d, +0xbc,0xf4,0xc2,0x78,0xc8,0x9e,0xa0,0x83,0x01,0x43,0xde,0x5d, +0x6e,0x35,0x9d,0x82,0x63,0x8b,0x4d,0xa3,0x75,0xf5,0x0b,0xfd, +0xe0,0x4e,0x07,0x25,0xee,0x03,0xad,0xc3,0xf8,0xc7,0x8b,0xc9, +0x09,0x19,0x42,0xdd,0xdd,0xec,0xfd,0x5e,0xe4,0xbd,0x97,0x46, +0x8c,0x43,0x55,0xdf,0x35,0x3a,0xcb,0x07,0x9d,0x5e,0x30,0xc8, +0x4c,0xf0,0x84,0x54,0x35,0x58,0xc6,0x31,0xb4,0xac,0xa2,0x3d, +0xb0,0xa7,0x17,0xf7,0x74,0x82,0x7e,0x2f,0xea,0x8f,0x5b,0x99, +0xe2,0x6e,0x7b,0xd8,0xed,0x8c,0xab,0xed,0x61,0xb5,0x03,0x1e, +0xb0,0x15,0xb7,0xf5,0x73,0xca,0xe6,0x6e,0xd9,0xe1,0xae,0xf9, +0x5f,0x65,0x69,0x5f,0x36,0x8d,0x9c,0x1e,0xff,0xc2,0x59,0xf4, +0x74,0x6e,0xc2,0xa5,0xb8,0x84,0x93,0xa7,0x85,0xa4,0x0f,0x7e, +0x1a,0x5e,0x03,0x02,0x69,0xce,0x68,0x62,0x3c,0x2e,0x72,0x40, +0x30,0x09,0x5b,0x1d,0xb6,0xe1,0x64,0xb6,0xb5,0x50,0x9f,0xdc, +0x98,0xd2,0x90,0xc6,0xe3,0x5b,0xc8,0x5b,0x3e,0xe3,0x62,0x36, +0x7a,0xee,0x5b,0x84,0x33,0x1a,0x5c,0x84,0xdf,0x61,0x66,0xd9, +0xed,0xb4,0x4f,0xf9,0x54,0x69,0xd7,0xb0,0xf8,0x0e,0x49,0x4f, +0xbe,0x98,0x7c,0x46,0xfd,0x3e,0x72,0x4d,0x0d,0x2a,0xe2,0xdb, +0x30,0x97,0x32,0x87,0x98,0x84,0x3f,0x89,0x35,0xc3,0x57,0x4c, +0xee,0x82,0x64,0x82,0xc9,0xdb,0x28,0x24,0x3b,0x61,0x32,0x71, +0x9e,0x02,0xc9,0x76,0xec,0x15,0x76,0xac,0xa3,0x13,0xa1,0x63, +0xc1,0xfd,0x7e,0xb5,0x5d,0x82,0x4d,0x8d,0x69,0x95,0x69,0x29, +0x8f,0xfd,0x38,0x9d,0x7e,0x50,0x7a,0xa3,0xba,0xaf,0xd1,0xaf, +0x45,0x70,0x0d,0xd4,0x0d,0xd4,0x8c,0xe2,0xe5,0x3b,0xbb,0x64, +0x6c,0x98,0xfa,0xa1,0xf6,0x4b,0x96,0x7d,0xe4,0x82,0xfe,0x0b, +0x58,0x94,0x97,0x7b,0x8a,0x58,0xd0,0x55,0xc8,0xd8,0xc0,0x68, +0x86,0xdf,0x7a,0x6d,0x46,0xf1,0xdc,0x64,0x47,0x33,0xcf,0x02, +0x53,0x28,0x92,0xc1,0x41,0x9f,0x81,0xc3,0xbf,0xa7,0x93,0xeb, +0xff,0x15,0x6e,0x8f,0x60,0x09,0x1d,0x54,0x2e,0x46,0x6d,0x0e, +0x53,0x43,0xf1,0x1d,0x6d,0x7c,0x57,0x7d,0xc0,0x4b,0xe5,0x31, +0x6c,0x2a,0x86,0x3d,0x70,0x4e,0x0d,0x5e,0xe3,0xc0,0x10,0x8b, +0x69,0xca,0xe5,0xf7,0x92,0x93,0xd4,0xef,0x1f,0xac,0xab,0x3b, +0x76,0xf7,0x4c,0xfa,0xa9,0x8b,0x09,0xa7,0x54,0x13,0x4e,0xa9, +0x24,0x75,0x3c,0xed,0x59,0x7e,0x93,0x34,0xa5,0x36,0xa4,0xd5, +0xa5,0xc7,0x74,0x0b,0x56,0x31,0x9b,0xe2,0x36,0x9c,0xcd,0x70, +0x10,0x6a,0x2f,0xd5,0x5f,0xae,0x4b,0xe6,0x8d,0xf1,0x55,0x87, +0xef,0xb8,0x18,0x17,0x6f,0xc7,0x23,0xd6,0x15,0x4e,0xc2,0xa3, +0xc9,0xd2,0xb6,0x8c,0x6e,0x3e,0x0d,0x35,0x7b,0x09,0x34,0x82, +0x36,0x4d,0x25,0xd9,0xb6,0x85,0x1e,0x4f,0x8c,0xcb,0x3a,0x84, +0x7d,0x83,0x1e,0x5d,0x31,0x5d,0x3c,0xa8,0xf4,0xe0,0x9c,0x9b, +0xa4,0x35,0xa5,0x39,0xad,0x21,0x83,0xbd,0xa3,0x79,0xcc,0xaa, +0xb8,0xb5,0x89,0x99,0xf6,0x42,0xdd,0xa5,0xc6,0xcb,0x0d,0xf2, +0x3b,0x4e,0x71,0xf8,0x9e,0x8b,0x75,0xf1,0x71,0x3d,0x6c,0x59, +0xeb,0x2a,0x3c,0x1c,0x2b,0x6c,0xcf,0x92,0xdf,0x51,0xbb,0x97, +0x7c,0x87,0xaf,0xd2,0x7e,0x0c,0xfc,0xd0,0x14,0x5d,0x70,0x16, +0x6c,0x35,0xc3,0xad,0x38,0xc3,0x46,0xf1,0xca,0x00,0x66,0x7f, +0xfe,0x62,0x9d,0xcc,0xf9,0xbf,0x22,0xf4,0x97,0x7f,0x81,0xea, +0x0b,0x7e,0xf6,0x12,0x54,0x7b,0x2a,0x5a,0xab,0x64,0x7e,0x36, +0x5f,0xe6,0x67,0xaf,0x0d,0xba,0xc8,0xfc,0xcc,0x38,0x8b,0xf1, +0xb3,0x02,0xd9,0x70,0x22,0xc7,0x22,0x60,0x25,0xa9,0xa8,0x2d, +0x6b,0xcd,0x69,0xe0,0x5b,0x70,0xdd,0x0b,0xdc,0x49,0x2b,0xb2, +0xc9,0x14,0x82,0x77,0xd9,0x6e,0xd3,0xd4,0xad,0xf5,0x10,0xd2, +0x52,0xd3,0x52,0x53,0x99,0x7b,0x8c,0xc3,0x4d,0x0e,0xfc,0xb2, +0x28,0x50,0x98,0x36,0x84,0xd3,0x60,0x06,0xcc,0x1b,0x5a,0xc3, +0x55,0x74,0x95,0x8c,0x15,0x8f,0xdb,0x14,0x0b,0x91,0x86,0xe1, +0x46,0x7e,0x66,0x3c,0xee,0xb5,0x02,0xa6,0xb6,0x90,0x58,0x01, +0x41,0x8a,0x73,0xac,0x60,0x0e,0xea,0x8e,0x83,0x2e,0x2c,0x18, +0x22,0x68,0x23,0x2e,0xa7,0x71,0x1d,0xe1,0x3d,0xe1,0xad,0xb6, +0xe1,0x42,0x99,0x67,0xb1,0x7d,0x8e,0x1b,0x2f,0xb5,0x5b,0xc8, +0x2b,0x1e,0xff,0x93,0x22,0xce,0x82,0xa9,0x34,0x2e,0x28,0xcc, +0x33,0x34,0x88,0x47,0x9e,0x94,0x55,0x17,0xd5,0x15,0xd4,0xf1, +0x76,0xa8,0x4e,0x3f,0x59,0xb1,0x9b,0xc0,0xac,0x39,0xbf,0x7d, +0xb1,0x82,0xc3,0xb9,0x0e,0x74,0xc1,0xee,0x7f,0x38,0xf6,0xdf, +0x2f,0x16,0x6c,0x27,0x5f,0xec,0xa6,0x15,0x4e,0x65,0xe6,0xf9, +0x96,0xdd,0xf9,0x42,0xf4,0x48,0xc8,0x58,0x68,0x87,0xfc,0xe8, +0x2e,0x4f,0xda,0x3e,0xdc,0x70,0x3f,0xef,0xa6,0x5d,0xbe,0x10, +0x6b,0xe2,0xab,0xe5,0xe6,0xc0,0x43,0x01,0xac,0xa1,0x25,0x96, +0xf9,0x66,0x99,0xc6,0x7d,0xd9,0x42,0xc2,0xb5,0xa8,0x89,0xa8, +0x7e,0x1e,0x17,0xc7,0xd2,0x1c,0xb3,0x34,0xfd,0xcb,0x06,0x43, +0x19,0x42,0xe2,0x8d,0x93,0x37,0xe3,0x07,0x79,0x19,0x03,0x98, +0xea,0x63,0x34,0xed,0x37,0x66,0xd6,0xa3,0x2f,0x69,0x9a,0xab, +0x8d,0x9f,0x85,0x8c,0x9d,0x7d,0x4c,0xf5,0xc9,0x92,0x63,0xbe, +0xdf,0x3a,0x4d,0x7c,0x45,0x36,0xeb,0x9b,0xf2,0x84,0xa2,0x23, +0xe4,0x33,0xb3,0x2a,0x5c,0x87,0x39,0xe5,0xb4,0x6d,0x34,0xd6, +0x3b,0xdc,0x23,0xd8,0xb7,0xcc,0xbb,0xcc,0xab,0xd8,0xbd,0x3f, +0x5f,0x88,0x6c,0x8a,0xa8,0x8f,0x2a,0x2f,0x28,0x29,0x6f,0xcd, +0xab,0xe3,0xef,0xe5,0xd0,0x18,0xef,0x30,0xcf,0x60,0x9f,0x0a, +0x9f,0x72,0xaf,0x62,0x8f,0xfe,0x5c,0x21,0x82,0x1d,0x8e,0x64, +0x87,0x2b,0xe4,0xc3,0x57,0x36,0xd2,0x82,0x92,0xca,0xd6,0x82, +0x7a,0x9b,0x6c,0x21,0xda,0x3b,0xcc,0x23,0xd0,0xb7,0xd2,0xbb, +0xdc,0xbb,0xd4,0xad,0xb7,0x80,0xbd,0x4d,0x78,0x5d,0x54,0x39, +0x2f,0xbd,0xb9,0xfe,0x5f,0x3e,0x6f,0xf7,0x12,0x62,0x4a,0x99, +0xcf,0x7b,0x4a,0xe6,0x14,0x16,0xff,0xda,0xbf,0x12,0x66,0xfe, +0xd2,0xbf,0x8a,0xc9,0x20,0x32,0x88,0x53,0xb8,0xc2,0x96,0xdc, +0xd6,0xec,0x16,0xfb,0x2c,0x21,0xde,0x29,0xda,0x39,0xca,0x9d, +0xdf,0x45,0xf2,0x5a,0x72,0x5a,0xb3,0xda,0x1d,0xb2,0x84,0x00, +0x7c,0xdd,0x61,0x99,0xce,0x91,0x46,0x37,0xa1,0xb0,0x2c,0xbf, +0x2c,0x97,0xbd,0x6d,0xca,0x70,0x2f,0x64,0x0d,0x72,0x98,0x05, +0xff,0x49,0xe1,0xed,0x6f,0xf1,0x6d,0x4e,0x4a,0x7f,0x40,0x71, +0x25,0xb4,0xc1,0x4a,0x0e,0xe3,0x16,0xd1,0x6b,0xa0,0x63,0x20, +0x87,0xce,0x02,0x0a,0x33,0xbf,0x65,0x7c,0x47,0xb2,0xc4,0x00, +0x1a,0x20,0xdf,0xcf,0x73,0x1b,0xba,0x61,0x07,0xfe,0x88,0x27, +0x39,0xe3,0xb2,0xc8,0xab,0xea,0x10,0x45,0x9a,0xf3,0x72,0x5b, +0x34,0x46,0x39,0xcb,0x3c,0x95,0x43,0x1c,0xee,0x82,0x08,0xba, +0x7b,0xed,0x27,0x1c,0x9c,0x9d,0xb3,0x7b,0x05,0x7b,0x79,0x6a, +0x4a,0x71,0xf1,0x46,0x86,0x13,0x72,0xf0,0xbb,0xca,0x44,0x45, +0x4e,0x90,0x7f,0xb2,0x04,0x79,0x98,0x05,0xbf,0xa9,0xba,0x87, +0x97,0x63,0xa0,0x9d,0xbc,0xca,0xd0,0x5e,0xde,0x58,0x51,0x5d, +0x15,0x87,0x6a,0xfe,0xeb,0x0c,0x16,0xcb,0x8b,0x0c,0x53,0x40, +0x3f,0x0b,0x6c,0xe4,0xd8,0x5f,0xc2,0xbd,0x8f,0x2b,0xa8,0x43, +0x71,0x74,0x9f,0x3a,0x63,0x9f,0x6d,0x32,0x09,0xac,0x91,0x49, +0xa0,0x3d,0x6a,0x71,0x31,0xa7,0x53,0x0a,0x34,0x32,0xb9,0xcf, +0xd2,0x3f,0xcf,0x7d,0x54,0x11,0xd3,0x29,0xe8,0x86,0xef,0x8d, +0xd9,0x71,0x9a,0x1f,0xb6,0xe6,0x50,0x15,0x2d,0x98,0xf1,0x42, +0xaf,0xfa,0x5f,0x75,0x0e,0x90,0xd3,0xa5,0x7e,0xf1,0x31,0x5e, +0x71,0x1f,0x4c,0x28,0xde,0xb0,0x06,0x35,0x72,0x3a,0xe8,0x54, +0x50,0x5c,0x00,0xbf,0x4d,0x32,0x82,0x0a,0xd1,0x88,0x51,0xb3, +0xec,0xea,0x8c,0xaa,0x8c,0x6a,0x1e,0x66,0x10,0x3c,0xcb,0x58, +0xfe,0x17,0xb0,0x6f,0x3b,0x87,0xcd,0x78,0x9c,0xc2,0x75,0x3c, +0x81,0xd7,0x39,0xc8,0x58,0x47,0x7b,0x71,0x02,0xbe,0xb4,0x92, +0xa6,0x73,0xd0,0x02,0xb7,0x28,0xce,0xef,0x83,0xf9,0x04,0xbe, +0xd8,0x41,0xb7,0xe3,0xbe,0x2f,0x38,0x1c,0x3a,0x4f,0x61,0xbe, +0x2d,0xce,0x27,0xee,0x53,0x60,0xbe,0x25,0x7b,0x85,0xa1,0x4c, +0x0a,0xfb,0x36,0xe3,0x3e,0x02,0x2a,0xab,0x68,0xbb,0x5f,0xa7, +0x7b,0xb3,0x73,0x63,0x9b,0xe0,0xdd,0xe6,0xda,0xe6,0x58,0xcf, +0x63,0x0c,0xae,0xa2,0x23,0x8d,0x5d,0xcd,0x35,0x9d,0x5e,0x4d, +0x42,0xa8,0x97,0x9d,0x8b,0x75,0x00,0x8f,0xe8,0x42,0x6f,0xd7, +0x0f,0x37,0xb4,0x75,0xf8,0xb2,0x13,0x3d,0xcd,0x3d,0x0d,0x82, +0x78,0xc8,0xbc,0x46,0x1b,0x22,0xfa,0xfd,0x6a,0xfc,0x6a,0xdb, +0x85,0x80,0x6a,0x9b,0x66,0xdf,0x02,0x7e,0xba,0xa2,0x05,0x3e, +0xa2,0xe3,0xbd,0x23,0x63,0x2d,0x83,0xb6,0xad,0x82,0xaf,0x83, +0xb1,0x81,0x95,0xa3,0x5f,0x5d,0x70,0x43,0x58,0xe3,0x68,0xf7, +0xd5,0x2b,0x4d,0x03,0xd6,0xad,0x42,0x90,0xa3,0x99,0xb9,0x9d, +0x6b,0xc8,0xe0,0xf1,0x91,0x84,0x71,0xc3,0x53,0x42,0x33,0xea, +0xfc,0x81,0xda,0x70,0x19,0xe7,0x36,0x8e,0x08,0x86,0x75,0x56, +0x8d,0x8e,0xcd,0xbc,0xb4,0x1a,0xca,0x69,0xb4,0xa6,0x8f,0x96, +0xa9,0x8e,0x55,0xb7,0x7e,0x8f,0x71,0xa3,0x87,0xad,0x30,0xe6, +0x7b,0xd3,0xa1,0xdf,0xc5,0xda,0x4e,0xcf,0x7e,0xa7,0x53,0x83, +0xb9,0x00,0x31,0xf0,0xf6,0x9f,0xb0,0xa2,0x1d,0x0e,0xf2,0x83, +0x38,0x28,0x7f,0xf9,0x62,0x03,0x64,0xd0,0xab,0xd2,0x12,0x58, +0x03,0x86,0x03,0xdc,0x84,0xdd,0xfb,0xf6,0xdf,0x38,0xd4,0x0f, +0x0b,0x46,0x35,0x56,0x35,0x8e,0x75,0x43,0x2d,0xbd,0x3d,0xed, +0x03,0x76,0x8d,0x82,0x9b,0xb5,0xb5,0x8d,0x9d,0xaf,0x4f,0x55, +0x60,0x75,0x68,0xcd,0x78,0xdb,0xc0,0x48,0x6b,0x9f,0x5d,0x83, +0xe0,0xe3,0x60,0x6d,0x6b,0xef,0xed,0xd7,0x17,0x39,0x10,0x3f, +0x62,0x94,0x20,0x94,0xe3,0x2b,0xc3,0xab,0xff,0xda,0xc0,0x4b, +0x8b,0xc9,0x47,0xf7,0x07,0x3e,0xae,0xf9,0x9c,0xef,0xc3,0x72, +0x33,0x70,0xe2,0x42,0x8c,0x7d,0x2d,0xed,0x6c,0xed,0x5a,0x74, +0x3b,0xcd,0x6b,0xbd,0x1c,0x84,0xee,0xd0,0x1b,0x2e,0x43,0xee, +0x96,0x8e,0xc7,0x5c,0xb7,0xba,0x35,0x5a,0x0b,0x4f,0xda,0xdf, +0xef,0x99,0x18,0xe4,0xed,0x60,0x1f,0xae,0x91,0x66,0x19,0x8a, +0x6f,0x71,0x81,0x38,0x0d,0xdf,0xd1,0xc4,0xf3,0x7b,0x2b,0xf5, +0x04,0x68,0xff,0xf5,0xd7,0x0f,0xca,0x60,0x9e,0x7c,0x27,0x23, +0xce,0x03,0xee,0x30,0xb4,0xae,0xac,0xbc,0x21,0xe0,0xb9,0xc7, +0xa8,0x71,0xdf,0x17,0xa6,0x31,0x1c,0xb2,0x16,0x73,0xa8,0x69, +0xa9,0x6d,0x89,0x4b,0x69,0x6f,0x63,0x5b,0x5b,0x53,0x97,0x5d, +0xbd,0xe0,0xe5,0x64,0x6f,0xe7,0xe4,0xef,0x5d,0x12,0x50,0x12, +0x52,0x3a,0xd4,0xd4,0xdd,0xdb,0xd8,0x6e,0xdf,0x20,0xf8,0xbb, +0xda,0x39,0x38,0xf9,0xfb,0xb6,0x84,0xb7,0x47,0xf7,0x98,0x9d, +0x10,0xfa,0x50,0xe3,0xe9,0x02,0x28,0xc7,0x57,0x79,0xa9,0x06, +0xe7,0x53,0x70,0xc3,0x63,0x1c,0xcc,0xbc,0x7b,0xff,0x71,0xfb, +0x97,0x7c,0x07,0x76,0x59,0x40,0x20,0x17,0xe8,0xe8,0xed,0x66, +0xe3,0xe1,0xd0,0xa4,0xdf,0x6e,0x5d,0xe3,0xe1,0x2c,0x74,0x84, +0x4f,0xba,0xf7,0x7a,0xd9,0xf8,0xeb,0x07,0xee,0x0e,0xac,0xb5, +0x16,0x7a,0xf2,0x3b,0x0a,0x9b,0x0b,0x78,0x6f,0xd8,0xbc,0x14, +0x8f,0x73,0xa7,0xf5,0xe2,0xf7,0x45,0xee,0xe3,0x21,0x4b,0x9e, +0x5d,0x71,0x3b,0xed,0xc2,0x7b,0x9e,0x89,0x8e,0x65,0x62,0x5d, +0x4d,0xfe,0xb6,0x20,0xbc,0x41,0x3e,0x69,0x28,0x1f,0xca,0xd1, +0xc8,0x1e,0xb8,0x7c,0x43,0x9e,0xc0,0x3e,0x47,0x32,0xda,0x53, +0x9a,0x52,0x9a,0x79,0x28,0x31,0xa6,0xbf,0x0c,0x57,0xdd,0xbd, +0xf4,0x23,0x0f,0x8b,0x56,0x12,0xd3,0xe2,0x88,0x6b,0xea,0x1f, +0x93,0xee,0x82,0xbc,0x6e,0x8d,0x01,0x79,0xaf,0xb8,0xfd,0x07, +0xb8,0xd0,0x93,0x29,0x35,0x1a,0xb0,0x18,0xd3,0x38,0x54,0x8b, +0x0b,0x58,0x6b,0xa6,0x2e,0x46,0x19,0x51,0xc9,0xd2,0x4c,0x7c, +0x9b,0x78,0xdb,0x5a,0x39,0xea,0xb8,0x5b,0xd4,0xda,0xb7,0xd8, +0xf6,0x39,0x7b,0x09,0x9d,0xce,0x5d,0x9e,0x7d,0xfe,0x86,0x81, +0x47,0xc3,0xf7,0xc4,0x94,0x9a,0x0b,0xdf,0x17,0x7f,0x56,0xf3, +0x7e,0xcb,0xfb,0x1e,0x9f,0x05,0x3d,0x0b,0x2f,0x1c,0x16,0xb6, +0x14,0x69,0x96,0x18,0x56,0x7d,0xd0,0x37,0x36,0xd1,0x28,0x7f, +0x6f,0x34,0x51,0x91,0x40,0xf3,0x6a,0xb2,0xea,0xd2,0x2b,0x75, +0x32,0x85,0x33,0x41,0x27,0xdc,0x63,0xfd,0x78,0xac,0x42,0x54, +0x1c,0x01,0x24,0xba,0x8c,0x5c,0x49,0x93,0x3f,0x8b,0x93,0x44, +0x9a,0x64,0x7e,0x2d,0x4e,0xae,0x94,0x26,0x89,0xf8,0xab,0xa4, +0x45,0xa5,0xcb,0xe4,0x58,0x7c,0xc6,0x55,0xf9,0x29,0x44,0x31, +0xf9,0xa0,0xdb,0x00,0xb6,0x93,0x61,0x93,0x02,0x1a,0x99,0xa0, +0xb1,0x37,0x7a,0xc7,0xf0,0x30,0x47,0x07,0x2b,0xb9,0x9d,0x35, +0x41,0xdf,0xaa,0x8b,0x15,0x64,0x28,0xbf,0xb8,0x53,0xe3,0x6f, +0x4e,0xa7,0x48,0x65,0xba,0xe2,0xef,0x1c,0x8a,0xdb,0x88,0xcb, +0xc9,0xac,0x36,0x0d,0x78,0x0f,0xdc,0x44,0x5d,0x94,0xb8,0xdc, +0xea,0xec,0xfa,0xf4,0x1a,0xad,0x0c,0xe1,0x94,0xf7,0x09,0x2f, +0x16,0xc0,0xd8,0x25,0xe9,0x82,0x19,0x39,0x81,0x1b,0xec,0x37, +0x62,0xf8,0x8e,0x06,0x53,0x01,0x12,0xbe,0xb8,0x03,0x53,0xf3, +0x40,0x57,0xde,0x03,0x21,0x95,0x1c,0xa8,0x0a,0xfe,0x58,0x1d, +0x76,0x93,0x81,0x92,0x92,0x3e,0x0d,0xd8,0xca,0xe9,0x16,0xaa, +0x68,0x01,0x52,0xe9,0x3b,0x98,0x23,0x7e,0x47,0x50,0x7f,0x0a, +0x6a,0xb0,0xb2,0x06,0x37,0x1d,0xe2,0x59,0x86,0xca,0x6b,0xcc, +0x69,0xcd,0x68,0x36,0xce,0x17,0x4e,0xb9,0x9c,0x70,0x88,0x71, +0xe7,0x57,0x2a,0x0b,0xae,0x3f,0x81,0x04,0xc5,0x11,0x22,0x2e, +0x95,0xc6,0xe9,0x83,0xdf,0x07,0x61,0x5a,0x0d,0xcc,0xe7,0xfb, +0xa4,0x05,0xa0,0x25,0xee,0xb9,0x22,0x45,0x61,0x3d,0x87,0x29, +0xe1,0xb8,0x63,0x37,0x2e,0x55,0x1f,0x72,0xfb,0x42,0x5e,0xe4, +0xdd,0x71,0x11,0xf2,0x54,0xe1,0x73,0x12,0xbe,0xd0,0x75,0x85, +0xc1,0x66,0xdb,0x47,0x9e,0x5f,0xfa,0x7d,0x67,0x16,0x2a,0x34, +0x2d,0xe9,0x58,0x3f,0xbe,0xc3,0xe4,0xc8,0x61,0xfd,0xcd,0x16, +0xf5,0x66,0xc2,0x93,0xd1,0x87,0x37,0xae,0x7d,0x30,0xa4,0x7d, +0x43,0xef,0x63,0xa3,0x86,0x61,0x61,0xdf,0x98,0xfe,0x35,0xeb, +0x7b,0xf2,0xad,0xc0,0xd9,0x14,0x35,0xe1,0xdc,0xcb,0x8d,0x8b, +0x47,0x29,0x68,0x32,0x1b,0x6b,0x92,0xe9,0x62,0x37,0xdc,0xa4, +0x5f,0xae,0x84,0xe9,0x87,0x41,0x57,0xbf,0x62,0x44,0xc0,0x0d, +0x43,0x4b,0xc6,0xf6,0x32,0x12,0xfc,0xf1,0xa8,0xe4,0x45,0xf2, +0x2b,0x72,0xab,0xb2,0x59,0xf6,0xfa,0x04,0xee,0xe1,0x3f,0x24, +0xb7,0x32,0xbb,0x2a,0xad,0x54,0x37,0x4b,0x38,0x1d,0x12,0xf7, +0xe2,0x9e,0x9c,0x06,0xbc,0x07,0xd7,0xc8,0x89,0x80,0xd8,0xe0, +0x68,0xa6,0xd6,0x5e,0x31,0x87,0x87,0x44,0x73,0xff,0x0a,0x13, +0xdc,0x61,0x55,0x69,0x21,0x0c,0xe4,0xf5,0x14,0xb4,0x17,0xf2, +0x96,0x50,0x80,0xcb,0xae,0xc3,0xb2,0x17,0x3b,0xa2,0xc3,0x1b, +0xfa,0xf8,0x06,0xe6,0x70,0xf0,0xea,0xe0,0xe3,0x6b,0x93,0x0f, +0x79,0xf8,0x05,0x3e,0xa0,0xd2,0xc3,0xc7,0xe2,0x43,0x06,0xf9, +0x53,0x76,0x49,0x0f,0x3f,0x65,0x06,0x0b,0x50,0x7c,0x41,0x4f, +0x39,0xc7,0xd9,0x47,0xbb,0xf1,0x4b,0x95,0x0d,0x37,0x9e,0x40, +0x92,0xc2,0x0c,0x97,0x90,0xbc,0xa6,0x9c,0xb6,0x8c,0x16,0x5e, +0xd4,0x42,0x4a,0x61,0xa1,0x3e,0x2e,0xc4,0x50,0x13,0xb1,0x60, +0x82,0x53,0xf6,0x63,0x17,0x85,0x14,0xd0,0x95,0x1f,0xed,0x9c, +0x0c,0x1e,0xd4,0x73,0x9b,0xd1,0xce,0xfd,0x7a,0xcd,0xb6,0xc2, +0xa7,0xf7,0xaf,0x7f,0xde,0xf9,0x94,0x87,0xe9,0xa7,0xe8,0xf5, +0x83,0x63,0xdb,0xfb,0x37,0x0c,0x34,0x0a,0x36,0xdf,0x99,0x7c, +0xa5,0xf7,0x3e,0xaf,0x29,0xf9,0xd1,0xa1,0x3b,0x1d,0x9f,0xd6, +0xfc,0x64,0x5a,0x21,0x84,0x6c,0xf3,0x3e,0xec,0xa0,0xef,0x74, +0xcd,0xeb,0xfd,0x90,0x2f,0xcd,0x42,0x84,0xda,0xb5,0xed,0xbb, +0x07,0x8e,0x1d,0x3b,0xb8,0xdd,0x74,0x99,0x53,0x9d,0x99,0xf0, +0x47,0xcf,0xd7,0x93,0xf7,0x3f,0xba,0xbb,0xef,0x73,0xe3,0x5f, +0xed,0xeb,0xc6,0x85,0x55,0xdd,0xbb,0xc7,0x74,0x1f,0xf0,0xd2, +0x63,0x70,0xa5,0xec,0x33,0x9b,0x51,0x97,0x4c,0x07,0x1b,0xb9, +0xc9,0x2e,0xf1,0x76,0x27,0xdc,0xf8,0xad,0xca,0xb6,0xab,0xdf, +0x80,0xb3,0xc2,0x1a,0xa7,0x93,0xdc,0xa6,0xac,0xb6,0x8c,0x56, +0x5e,0xfc,0x0f,0xfc,0x93,0x36,0x5d,0x01,0x17,0x4c,0x82,0x37, +0x0c,0x98,0x01,0x82,0xd1,0x65,0xd2,0x8b,0x13,0x57,0x8f,0x53, +0x69,0x15,0xcc,0x16,0x57,0x11,0x65,0x28,0x66,0x50,0x48,0x87, +0x15,0x98,0xce,0x29,0xd6,0x3b,0x53,0xe9,0xaa,0x09,0x6c,0x24, +0x49,0xb8,0xdd,0x61,0x2d,0x2e,0x39,0x50,0x67,0x25,0xc0,0xd6, +0x2f,0xc6,0xe0,0x8d,0xcb,0xf2,0xee,0x83,0xaf,0x61,0x0d,0xd1, +0xae,0x88,0xb8,0xa5,0xfe,0x83,0xbc,0xc6,0xdd,0xae,0x01,0xdb, +0x38,0x8b,0x7c,0x15,0x3c,0xb2,0x8b,0xf3,0x3c,0x95,0xde,0xa4, +0x01,0x85,0xa0,0xcd,0x29,0xc7,0x99,0x49,0x56,0x60,0x1b,0xae, +0x60,0x8d,0x73,0x7a,0x69,0x4f,0xbb,0x58,0x37,0x7e,0xa3,0xb2, +0xfd,0xda,0x37,0xe0,0xa7,0xb0,0xc1,0xd9,0x24,0xb7,0x39,0xfb, +0x45,0xe3,0xcc,0xd1,0x8c,0x42,0xd0,0x38,0x06,0xc1,0x72,0x03, +0x5c,0xce,0x48,0x53,0x76,0x6b,0x46,0x5b,0x5a,0x9b,0x59,0x8e, +0x10,0x89,0xaf,0x78,0xaf,0x30,0xd9,0xd5,0xe7,0x29,0xd4,0x74, +0x96,0xf5,0x15,0x0d,0xf2,0xf0,0x2e,0xf3,0x9d,0xf3,0xa6,0x62, +0xff,0x38,0x9e,0x27,0xd2,0x7d,0x76,0x5d,0x06,0x6c,0xc2,0x0c, +0x0e,0x37,0x99,0x52,0x56,0x60,0xda,0x90,0x88,0xb3,0x18,0xbc, +0xdf,0x80,0x87,0x7a,0x57,0xc5,0xd9,0x92,0x9e,0x34,0x9b,0x13, +0x67,0xc2,0x34,0x8a,0x0f,0xc1,0x9d,0x39,0xc7,0x74,0xb8,0xc8, +0xb8,0xc1,0x35,0xb0,0x23,0xe9,0x29,0x17,0x53,0xe4,0xed,0xea, +0x16,0xb5,0xf4,0xe0,0xf4,0x3f,0xe3,0xb3,0xce,0x5c,0x8a,0x8f, +0x57,0x8d,0x8b,0x53,0x49,0xba,0x0f,0x07,0x46,0xf1,0xc0,0x9f, +0x06,0x8b,0xd1,0xd4,0x1c,0x0e,0x93,0xb0,0xbd,0x87,0xf7,0x2d, +0xda,0xd5,0xc2,0x0c,0x30,0xeb,0x8f,0xc6,0x6b,0x59,0x9f,0xf0, +0x69,0x04,0x7e,0x2b,0xa4,0x17,0xcb,0xdf,0xab,0xaa,0x51,0x83, +0x19,0xa9,0xbf,0xe5,0xfe,0x5a,0x1b,0x38,0x2c,0xe0,0x6b,0xbe, +0xab,0x13,0x70,0xf9,0x39,0x1e,0xfd,0x12,0x2d,0x8d,0xb7,0xa9, +0xf7,0xdb,0x77,0x5e,0x2d,0x99,0x4c,0xff,0x56,0x15,0x36,0x60, +0xcc,0x35,0x86,0x35,0x2b,0xc6,0x88,0x94,0x8c,0x29,0x34,0x21, +0x20,0x36,0x20,0x26,0x98,0xe5,0x3d,0x49,0xed,0xc6,0x90,0xd8, +0x6f,0x75,0x5d,0x54,0x43,0x24,0x59,0xc5,0x59,0xa5,0x99,0x4c, +0x5f,0xb4,0x31,0x98,0xfc,0x56,0xec,0xdf,0xc8,0x49,0xfd,0xd6, +0x54,0xec,0x5f,0x2b,0xf5,0x13,0xf9,0x29,0xf1,0x5f,0xd0,0xd3, +0x2e,0x09,0x0e,0x6c,0x6c,0xf7,0x2a,0xcb,0xaf,0x3c,0x01,0x43, +0x85,0x2e,0xbe,0x4e,0xb2,0x9b,0xb2,0x5b,0xd3,0x99,0xf9,0xa4, +0x60,0x8a,0xea,0x2c,0xb2,0x0e,0x1b,0xe0,0x61,0xdc,0x0a,0xea, +0x86,0x68,0x26,0x16,0x80,0x19,0xa7,0xac,0x92,0x54,0x29,0x5c, +0x82,0xb9,0x78,0x89,0x7b,0xc6,0x4c,0x60,0x22,0x3e,0x9c,0xe0, +0xa4,0x5a,0x7c,0x97,0x62,0x98,0x18,0x03,0x61,0x9c,0x32,0xd5, +0x9d,0xb2,0xa3,0x0d,0x38,0x97,0xc0,0xb7,0xb0,0x8c,0xc2,0x9b, +0xe2,0xeb,0xf8,0x26,0xa7,0x85,0xee,0xb4,0xbc,0xa5,0xac,0x27, +0xaf,0xd3,0xb0,0x48,0x88,0xb5,0x0f,0xb3,0x0c,0x70,0xe0,0xf1, +0xb9,0x99,0xf8,0xe7,0x18,0xc1,0xff,0x2c,0x63,0x24,0x38,0xba, +0x2b,0xa2,0xd9,0x24,0x4a,0x28,0xf2,0x2c,0x70,0xce,0x72,0x61, +0xb0,0xc3,0x5f,0xa6,0x78,0x9a,0x98,0x24,0x64,0x5f,0xd7,0x60, +0xcc,0xc6,0x09,0x3a,0x30,0x91,0x2b,0x69,0x2a,0x6c,0xc9,0x6b, +0xe3,0xa1,0x92,0xe0,0x91,0x0b,0xab,0xcf,0x6c,0x55,0xd7,0x4b, +0x8c,0x8b,0xb0,0x63,0x4a,0x36,0xdb,0x4c,0xe5,0x26,0x79,0xd8, +0xd8,0xf8,0x73,0xba,0x46,0xfa,0x2f,0x97,0x9e,0x41,0xb8,0x1a, +0xde,0x22,0x99,0x75,0x19,0xf5,0x69,0xf5,0xa6,0xf9,0x42,0x30, +0xf2,0x0e,0x0b,0x8f,0x6e,0xe9,0xb5,0x17,0xb2,0xf2,0x32,0xd9, +0x2f,0x2f,0x39,0x72,0xcb,0x4a,0x83,0xfe,0x90,0x09,0xd9,0x40, +0x51,0x51,0xbf,0x06,0x70,0x9c,0x49,0x81,0x8a,0x64,0x00,0x3f, +0x31,0x9a,0x02,0x66,0xf2,0xb3,0x5c,0x9d,0x63,0xec,0x22,0x9d, +0x87,0x23,0x85,0xd2,0xbe,0xe2,0x5b,0xe9,0x7d,0x0c,0x6a,0x77, +0x3f,0x35,0x5d,0x8e,0x5b,0xb0,0x81,0xc3,0x15,0x89,0x78,0xc0, +0x0a,0xd7,0xaa,0x0f,0x7b,0x0c,0xc3,0x86,0x4c,0x58,0x7d,0x11, +0x74,0x54,0x21,0x9e,0x9c,0xd4,0x8c,0xd0,0xf4,0xd1,0x76,0x1b, +0x73,0x1f,0xf6,0xe8,0x77,0xf0,0x13,0x3a,0x4d,0xba,0x8c,0xba, +0xf4,0x1c,0x35,0x4d,0x74,0x0e,0x59,0xb4,0xda,0x0b,0x77,0x47, +0x26,0xae,0xf7,0xdc,0x6d,0xb0,0x69,0xb4,0x68,0x34,0xe9,0x6b, +0x16,0xdc,0xaf,0xbb,0x5d,0x71,0x1f,0xef,0xfd,0xa2,0xe6,0xfb, +0xec,0x5f,0x79,0x34,0x6f,0xa3,0xcb,0xc0,0xec,0x77,0x22,0x06, +0xc9,0xdb,0x0a,0x69,0xe1,0x0a,0xd0,0xe2,0xa6,0x3f,0x00,0x91, +0xfe,0x71,0xab,0xf7,0x93,0x94,0x67,0x77,0x32,0x04,0x26,0x44, +0xdc,0x4b,0x22,0xda,0xd4,0xef,0x92,0xc6,0xfc,0xa2,0x6a,0x8d, +0xc7,0x9c,0x5d,0x9e,0xca,0x46,0x07,0x2e,0xf4,0x6c,0x5a,0x85, +0x06,0x2c,0xe0,0xca,0x92,0xcb,0x52,0x8a,0x52,0xb2,0xa3,0xb2, +0xa2,0x32,0xa3,0x7a,0x6b,0x05,0xf7,0xdb,0x56,0xef,0xdb,0x0f, +0x3b,0x07,0x0b,0x65,0x41,0x32,0x9b,0xd6,0x89,0xdf,0x7e,0xea, +0xc0,0xd9,0xd6,0xb1,0x86,0x1b,0x55,0xe3,0xe6,0xf9,0x82,0xbf, +0xb6,0xb7,0x96,0xbd,0x21,0x7f,0x21,0x3a,0xfa,0xc2,0x89,0x79, +0x69,0xe6,0x75,0x97,0xda,0x2e,0x77,0x25,0xab,0x9e,0xde,0xe9, +0xa6,0xbf,0xdd,0x9a,0x57,0x24,0x62,0x03,0xbd,0xfe,0x79,0xd7, +0xef,0x15,0xf0,0x96,0xdc,0x6b,0x30,0x07,0x75,0xee,0xb4,0x7d, +0x94,0x49,0x8c,0xf7,0xc0,0x09,0xa1,0x6c,0xa8,0xf0,0x6a,0xda, +0x20,0xab,0x37,0x81,0x57,0x4d,0xf0,0x55,0x34,0x93,0x17,0x9d, +0xfc,0x02,0x70,0xe5,0x4a,0x7c,0x43,0xbd,0xc7,0xe1,0x57,0xa0, +0x2d,0xb0,0x20,0x19,0x82,0x55,0x61,0x80,0x44,0x6e,0xf0,0xd9, +0x6e,0x71,0xc8,0xf6,0xb6,0xf7,0xc3,0x90,0x8f,0xad,0x23,0x84, +0x9a,0x4d,0x2d,0xbb,0x46,0x0f,0xda,0x98,0xea,0xdb,0xec,0x75, +0x6d,0xb0,0x10,0x1e,0x75,0xde,0x1c,0x1c,0xb9,0xd2,0x6f,0x76, +0xc5,0xfa,0x03,0x87,0xba,0x11,0x41,0xb3,0xd3,0xa4,0xdf,0x7e, +0x84,0xdf,0x08,0x7f,0xc9,0x23,0x60,0xce,0x98,0xa2,0xf4,0xaa, +0x74,0x95,0xf6,0x8c,0x36,0x5d,0x2b,0x7b,0x9f,0xef,0x46,0x57, +0x2e,0xab,0x3c,0xa3,0x32,0xbd,0xd2,0x32,0x57,0x88,0x31,0x0f, +0xb3,0xf6,0xb5,0x37,0xe8,0x11,0x7c,0xdc,0xae,0xdb,0x45,0x84, +0x86,0x85,0x85,0x44,0xa8,0x36,0x39,0xd6,0x94,0x55,0x54,0x96, +0x55,0xab,0xb6,0xfa,0x35,0xfb,0xb5,0x78,0x9b,0x59,0x1e,0x75, +0xda,0xe1,0x5d,0x69,0x29,0x3c,0x69,0x7d,0xd8,0x77,0x75,0xb2, +0x24,0xb2,0x34,0xbc,0x34,0xbc,0xa5,0x43,0x60,0x7f,0x4b,0xc2, +0x8b,0xf9,0x4e,0xa6,0x47,0xa3,0x2c,0x83,0x6c,0x3d,0x9c,0xdc, +0x9b,0xdc,0x1a,0xdc,0xeb,0x32,0x73,0x33,0xf2,0xd2,0xf3,0x18, +0x4b,0xec,0x87,0xe9,0x74,0xf2,0xcb,0xf6,0x3f,0x4a,0x59,0xdf, +0x7b,0x71,0x3d,0x6b,0xc7,0xdb,0xdc,0x59,0xfb,0x68,0x8b,0xe3, +0xee,0xac,0xef,0x25,0xc3,0xf9,0x13,0x69,0xc3,0xac,0xef,0x87, +0x5f,0xf6,0x5d,0x13,0x4b,0x39,0x0c,0x0d,0xc7,0x55,0x5a,0xf2, +0xad,0x3b,0x2e,0xf7,0x80,0x56,0x80,0xda,0x65,0x88,0x54,0x85, +0x72,0x12,0xbd,0xd1,0x6f,0xbb,0xdd,0x21,0xc7,0x3b,0x7e,0x0f, +0xc3,0x3e,0xb6,0x89,0x14,0x2a,0x36,0x36,0xef,0x18,0xda,0xef, +0x60,0x66,0x6a,0xa3,0xe9,0xda,0x68,0x25,0xdc,0xe9,0x98,0x1c, +0xe8,0x9b,0xec,0x36,0x1f,0xb1,0xb9,0xe5,0xc8,0xb8,0xa0,0x6e, +0x87,0x65,0xbf,0xd3,0x30,0x8f,0xf7,0xce,0x50,0xb4,0xf8,0x04, +0xb6,0xc2,0x77,0xb8,0xed,0x21,0xbc,0x5b,0x36,0x0a,0x07,0xa5, +0x43,0x78,0x70,0x24,0x0c,0xe6,0x1e,0xc4,0x4d,0xf8,0x1d,0x6c, +0xdc,0x8d,0x36,0x56,0x60,0x83,0x1a,0x93,0xa0,0x01,0x16,0x44, +0x9a,0xa9,0x38,0x48,0xe1,0xc1,0x06,0x9c,0x77,0xd3,0x54,0x17, +0x29,0x11,0xff,0x42,0x1d,0xa6,0x34,0x59,0xab,0x67,0xc8,0x3b, +0x47,0xd5,0xd3,0x85,0x3f,0xfd,0x4d,0x86,0xd7,0xd0,0x9f,0xe0, +0xb5,0x35,0x1c,0x6e,0x73,0xa0,0xcb,0x16,0xfe,0xce,0xc1,0xa6, +0x39,0xf0,0xda,0x32,0x79,0x5b,0x1b,0xf0,0x50,0x7c,0x48,0x97, +0xe3,0xbb,0x58,0xcc,0xe1,0x91,0xf3,0xb8,0xd9,0x01,0x57,0xa9, +0x0f,0xb8,0xf7,0xc2,0xba,0x34,0x58,0x72,0x11,0xcc,0x55,0xc1, +0x94,0x9c,0xd1,0x8e,0x3e,0x1a,0xac,0xed,0x3f,0xec,0x3f,0xe8, +0xd7,0xef,0x14,0x24,0xb4,0x18,0x36,0x19,0x36,0xe9,0x79,0x1d, +0xb6,0xd1,0x36,0x30,0x6b,0x75,0x16,0xc6,0x46,0xfa,0xae,0x36, +0xdf,0xae,0xb4,0xad,0xb4,0xae,0x32,0xeb,0x6d,0x14,0x7c,0x99, +0x62,0xf5,0x9d,0x68,0xfd,0xb2,0xfc,0xfb,0xcc,0x5f,0xf9,0x36, +0x24,0x60,0xfe,0x2d,0x77,0xda,0xe9,0x84,0x4d,0x94,0xeb,0x40, +0x94,0x50,0xdc,0x5b,0x78,0x3b,0xb5,0x8f,0xef,0xc1,0x45,0x4f, +0x39,0xd1,0x5c,0xe9,0x4d,0x3f,0x01,0x2b,0x78,0x82,0x56,0x8f, +0x61,0x4f,0xc9,0x38,0x68,0x4b,0xa7,0x51,0x7b,0x3c,0x02,0x36, +0xed,0x45,0x63,0x7c,0x02,0xc6,0xbb,0xf1,0xbc,0x15,0x9c,0x47, +0x61,0x02,0x04,0x48,0x1a,0xe2,0x24,0x07,0x85,0x40,0xc5,0x59, +0x4b,0x71,0xcf,0x3d,0x93,0xa3,0x2c,0x19,0x4b,0xaf,0xe3,0x76, +0x0a,0xe6,0x9f,0xa0,0x39,0x27,0x1a,0x2f,0xa2,0xa8,0xfa,0x03, +0xa8,0x12,0xb0,0x5a,0x47,0x51,0xe3,0x07,0xd0,0x20,0xf8,0x99, +0x2c,0xc5,0x54,0x57,0x20,0xab,0x34,0xf9,0x8d,0x82,0xc6,0x0a, +0xd4,0x20,0xd3,0xff,0x64,0x34,0xf6,0x67,0x12,0xe9,0xe9,0x1a, +0xb4,0x3f,0xac,0xc4,0x46,0xf8,0xb1,0x71,0xa4,0xa3,0xf4,0x2a, +0x13,0x30,0xb0,0xce,0x1e,0x5f,0x3d,0x46,0x2e,0x66,0x5d,0xcc, +0xca,0x56,0xfb,0xd1,0x66,0x1b,0x17,0x73,0xe1,0xc4,0xf9,0x38, +0x75,0xbd,0x3f,0xbd,0x48,0x41,0x71,0x7e,0x49,0x6e,0x19,0x0f, +0xa5,0x64,0x69,0xd2,0xfe,0xb3,0x76,0xea,0x2e,0x67,0xe3,0xe3, +0x5c,0xe6,0xed,0x27,0xd9,0xb6,0x2a,0x9f,0x90,0x2b,0x55,0xd5, +0x37,0xd2,0x35,0x32,0x6e,0x24,0x7f,0x08,0x2b,0xd4,0x70,0x88, +0xa4,0x15,0xa4,0x15,0xa6,0x14,0x32,0x75,0x1a,0x7e,0xd8,0x51, +0xcb,0xd0,0xb1,0xc2,0x46,0x28,0xc8,0xc9,0xcb,0xc9,0xcd,0xe5, +0x15,0xd6,0x52,0x25,0x1d,0xff,0xb2,0xf5,0x8f,0x92,0x17,0x5e, +0xb5,0x8a,0x8d,0xcf,0x9b,0x5c,0xa2,0x7d,0x8c,0xd5,0x71,0xd7, +0x3e,0xe6,0x55,0x23,0xf9,0xa3,0x69,0xa3,0xcc,0xab,0xf6,0xc1, +0xab,0xa6,0xcc,0xab,0x0e,0x60,0x3e,0x87,0x27,0x8e,0xe3,0x4a, +0x2b,0x54,0x61,0x0c,0x69,0x04,0x66,0x15,0xc1,0xdc,0x4b,0x10, +0xab,0x0a,0xb9,0x24,0x66,0x63,0xc0,0x0e,0xfb,0x83,0xce,0x77, +0xfc,0x1f,0x46,0x7c,0x6c,0x13,0x25,0x94,0x6f,0x6c,0xdc,0x3e, +0xb8,0xcf,0xd9,0xcc,0xdc,0xe6,0x98,0x2b,0x23,0xfa,0x37,0x3a, +0xc6,0xfa,0x7b,0x26,0x3a,0x2d,0x86,0x6c,0xaf,0xcb,0x5e,0xa5, +0xdf,0x61,0xdd,0xe7,0x32,0xc2,0x6f,0x81,0x7f,0x28,0x4e,0x65, +0x9f,0x39,0x95,0x48,0x65,0xf8,0x01,0xcd,0x28,0x4c,0x2f,0x4c, +0x2b,0x61,0xea,0xdf,0x6f,0xb3,0x95,0xb5,0x81,0x47,0x99,0xa5, +0xd0,0x59,0xd5,0xda,0x50,0xd7,0x25,0x6f,0xc3,0x81,0xd3,0x92, +0xb6,0x9c,0x71,0x50,0x77,0x3e,0x1d,0x1b,0xe7,0x3a,0x6f,0x2f, +0xc9,0xb1,0x56,0xf9,0x98,0x5c,0xab,0xad,0xbb,0x9e,0xa9,0x91, +0x79,0x25,0xf9,0x73,0x38,0xa0,0x86,0x2a,0x48,0xa8,0x3d,0xbe, +0xc5,0xcc,0x95,0x79,0x31,0x2b,0x4b,0x0d,0x5e,0xb7,0x59,0xc6, +0xc5,0xbe,0xb0,0x97,0x2e,0x4c,0xb1,0xc5,0x8d,0xbf,0x91,0x08, +0x27,0xa7,0x80,0xdd,0xe1,0x25,0x76,0xc2,0xd3,0xba,0xb1,0x9e, +0xd2,0x5b,0x3c,0xbc,0xc5,0x3c,0xad,0x50,0x5c,0x4d,0x8b,0x4c, +0x54,0x40,0x9f,0x8c,0x14,0xe6,0x0d,0x6a,0x80,0x86,0xb8,0x66, +0x42,0x5a,0x03,0xf3,0xc4,0xd7,0x27,0x94,0xa3,0x26,0x0c,0x5b, +0xe7,0x49,0x7b,0x4d,0xc4,0xbd,0xb8,0x9c,0x13,0xa7,0xe0,0x1b, +0x54,0xa9,0x8b,0x0d,0xcb,0x8c,0x9f,0xcf,0x9b,0x5c,0x40,0xa4, +0x68,0x08,0x63,0xc8,0x82,0xcb,0x19,0xb2,0x00,0x20,0x2b,0xb3, +0x12,0x2c,0x27,0xd7,0x58,0x91,0x15,0xd6,0x63,0x18,0x63,0x56, +0x27,0xc4,0x19,0xd4,0xf6,0xbc,0xcd,0x79,0xbb,0x0b,0xa9,0xc6, +0x02,0x9c,0xc8,0x80,0x0b,0x39,0xe0,0x57,0x5e,0x1d,0x58,0x19, +0x58,0x16,0x3c,0xd4,0x24,0x98,0x4d,0xee,0xfd,0x78,0xff,0x84, +0x83,0xb7,0x50,0x11,0x59,0x19,0x5e,0x11,0x86,0xd3,0xe3,0x71, +0xf9,0x29,0x5c,0x75,0xa6,0xb7,0xaf,0x73,0xa0,0x63,0x8c,0x17, +0x4f,0x8c,0x4b,0x9b,0x9f,0x82,0x34,0x8e,0xd2,0x37,0xba,0x9b, +0xf0,0x7b,0x53,0xf8,0x7e,0xb9,0xb4,0xd8,0x14,0x6e,0x11,0x77, +0x2b,0x3b,0x0b,0x33,0x6b,0x5e,0x04,0xb9,0x4d,0xc7,0x30,0x7d, +0x99,0xd9,0x73,0xd5,0x31,0xd6,0xa6,0x28,0x70,0xa0,0xe8,0xc0, +0xb2,0xb4,0x83,0xdc,0x26,0x07,0xb9,0x4d,0x0e,0xac,0x4d,0x57, +0x59,0x91,0x15,0x36,0xa0,0xc3,0x8b,0x0d,0x77,0x96,0xd1,0x3f, +0x40,0x31,0x86,0x8a,0x5f,0xc4,0xa5,0x63,0x78,0x81,0xab,0x69, +0x2c,0x6b,0xcd,0x6f,0x30,0x2e,0x11,0x8e,0xbb,0x05,0x3b,0x7a, +0x3b,0xf1,0xd8,0x41,0x06,0x4b,0x43,0x5b,0x7d,0xbb,0x22,0xca, +0x54,0x2d,0x83,0x6b,0xbd,0xca,0xbc,0x8b,0xfd,0x54,0xf1,0x8c, +0x99,0x48,0x57,0xe1,0x8f,0x66,0xf0,0xe3,0x52,0x69,0xb5,0xe9, +0xf3,0x99,0xe3,0x64,0x29,0x73,0xe6,0xff,0xcf,0x0f,0x87,0x3e, +0xf1,0x36,0x15,0x57,0x0f,0x91,0x5b,0x3e,0x9f,0xf8,0xfc,0xe2, +0x53,0x3e,0x21,0x60,0xd6,0x17,0xf8,0xce,0x67,0xc6,0x3f,0xf1, +0xda,0xc4,0x64,0xf5,0xb2,0xdd,0x58,0xbc,0xbd,0xc2,0x58,0xf8, +0xa5,0xe1,0x71,0xfd,0xb5,0x06,0x1e,0xec,0xc1,0x98,0xd6,0x1c, +0xb9,0x65,0x04,0xaf,0x99,0xf0,0xd2,0x52,0xf2,0xd7,0xc4,0xc4, +0x95,0xea,0xf7,0x79,0xb8,0x2b,0xa5,0x53,0xb0,0x97,0x9e,0xa1, +0x3d,0x27,0x76,0xc1,0x2a,0xba,0x42,0x8a,0xfe,0x8d,0xc3,0xd7, +0xe5,0x31,0x08,0x5c,0x65,0xfe,0x7c,0xde,0xe8,0x12,0x26,0xe1, +0xa4,0x38,0x4b,0x8a,0xbb,0x71,0x0d,0xec,0xe6,0xe0,0x3f,0xe4, +0x8d,0xed,0x58,0x09,0xd6,0x90,0x2b,0xac,0xc8,0x0a,0x5b,0x71, +0x37,0x37,0xfd,0x2b,0xb1,0x9d,0x82,0x4d,0x16,0xec,0x2a,0x85, +0x77,0x1b,0x3e,0xf6,0xfa,0x2e,0xec,0xf7,0xb8,0xae,0xc4,0xb2, +0xf4,0xf4,0xd6,0x82,0x8f,0x05,0x9b,0xc2,0xe3,0xeb,0xf7,0xa5, +0x1f,0xce,0x3f,0x56,0xa6,0x3a,0x59,0x38,0x5c,0xdc,0x5b,0xea, +0x5c,0x2f,0x98,0x87,0x18,0x46,0x1e,0x3d,0xee,0x59,0xe8,0x53, +0xec,0x5f,0x26,0xae,0x2b,0x12,0xce,0xf7,0xa1,0xe5,0xa9,0xd2, +0x46,0xfb,0x5c,0xfd,0x3c,0xbb,0x54,0xd5,0x20,0x8f,0x81,0xd3, +0x63,0xf1,0xdd,0xf1,0xaa,0x98,0x12,0x1f,0x56,0x1e,0x5e,0x19, +0x55,0xa3,0x6a,0x1e,0x95,0x1b,0x9e,0x17,0x51,0x10,0xa9,0x8a, +0x9d,0x71,0x97,0xed,0xe0,0xb3,0xbc,0xba,0xc0,0xc6,0x90,0xe6, +0x70,0x55,0x7c,0x2b,0x14,0x97,0xc5,0xa0,0xd6,0x49,0x5e,0x4c, +0xc3,0x6e,0xfa,0x9d,0xf3,0xb3,0xe0,0xdf,0x12,0xea,0xcf,0x95, +0xa7,0xa4,0xb5,0x14,0x3c,0x11,0xac,0x0b,0x23,0x57,0x1d,0x4a, +0xdf,0x53,0xb0,0xbf,0x46,0xf5,0x66,0xc9,0x78,0x79,0x4f,0x95, +0x63,0xbd,0x60,0x19,0xa8,0x13,0x7a,0x20,0xd2,0xad,0xc8,0xb3, +0xdc,0xa7,0x4a,0x34,0x2b,0x12,0xce,0x0d,0xe0,0xc9,0x93,0xe5, +0xad,0x36,0x05,0xc7,0x0a,0x2d,0x32,0x54,0x83,0xdd,0x26,0x13, +0xae,0xc7,0xf6,0x1c,0x67,0x1f,0x9d,0x10,0x59,0x16,0x55,0x11, +0x5b,0xa5,0x6a,0x1c,0x99,0x1d,0x99,0x13,0x99,0xc7,0xaa,0xaa, +0xe2,0x2f,0xdb,0xc2,0x9d,0x9c,0x06,0xdf,0xd6,0xc0,0x8e,0x50, +0x55,0x7c,0x3b,0x10,0x57,0x45,0xe2,0xfe,0x84,0x6c,0x4b,0x01, +0x8c,0xb3,0xe1,0x60,0x05,0x2c,0x6a,0xe1,0x25,0xed,0x8d,0x14, +0xdd,0x97,0x99,0x3f,0x5f,0x38,0xba,0x00,0xdc,0x39,0xe9,0x04, +0xb3,0xdd,0x46,0x66,0xb1,0x8d,0xb2,0xed,0x36,0xca,0xb6,0xdb, +0xf8,0xc2,0x76,0x1b,0x29,0x2b,0x6c,0xc5,0x8d,0xcc,0x8d,0x8a, +0xc4,0x63,0xf4,0x2e,0x7c,0x06,0xfc,0xf7,0x83,0xeb,0x41,0x05, +0x3f,0x1b,0x34,0xb4,0xc6,0x1f,0x6d,0xe0,0x47,0x5d,0x69,0xb9, +0xb5,0xb8,0x5c,0x1b,0x7f,0xb1,0x81,0x5f,0xb4,0xa4,0x35,0x56, +0xcf,0xdf,0x1e,0xe2,0x70,0x03,0x0c,0x51,0x5d,0x2c,0xbd,0xc9, +0x41,0x29,0x8b,0x53,0x6d,0x2c,0xbd,0xc3,0xc1,0x69,0xac,0xa4, +0xc3,0x4e,0x4d,0x3e,0x03,0x46,0x83,0x9d,0x82,0xdd,0x90,0x6d, +0xaf,0x4b,0x3d,0xaf,0xd4,0xc3,0xc3,0xb4,0xab,0xe9,0xe6,0xc3, +0xb2,0x16,0x8b,0x2a,0x21,0xcc,0xcb,0x58,0xc7,0xc9,0x87,0x17, +0xff,0xbc,0x40,0x4f,0xf4,0x9c,0x68,0x08,0xef,0x30,0x3e,0x29, +0x14,0xb9,0xe4,0xf8,0x64,0x31,0x82,0x76,0x20,0x8d,0x9e,0x19, +0x3e,0x53,0x1d,0xdf,0x61,0x98,0x28,0x64,0xdb,0xa7,0xfa,0xa4, +0x3a,0xf1,0xa2,0x7f,0x18,0x55,0x9a,0xa2,0xcf,0x2a,0x8b,0xe7, +0xf3,0x46,0x96,0x10,0x29,0x0e,0xb6,0x31,0xdd,0x89,0x6b,0x19, +0x5f,0x17,0x5f,0x41,0x56,0x66,0x25,0x58,0x4b,0x26,0x59,0x91, +0x15,0xb6,0xe2,0x36,0xd6,0x0b,0x6f,0xb8,0x42,0x5b,0x0b,0x73, +0x99,0x30,0x4d,0x49,0xe3,0x32,0xb6,0x0c,0x1e,0xf8,0x7e,0x5d, +0x75,0xab,0x00,0x1a,0xf8,0xea,0x84,0x98,0x84,0xd6,0xe6,0xb0, +0x80,0x65,0x96,0x05,0x96,0xec,0x65,0x1a,0x2e,0xf0,0x20,0x36, +0x83,0x8e,0xa3,0x3e,0xe3,0x83,0x5d,0xad,0xc3,0x8d,0xa3,0x5e, +0x0d,0x42,0x80,0x95,0xb7,0x9d,0xbd,0x0b,0x1f,0x3a,0x10,0x37, +0x38,0xa8,0xf6,0xc0,0x4c,0x0a,0x5e,0xcb,0xe5,0x58,0xa9,0xe0, +0x3b,0x4f,0xe8,0xf9,0x73,0xf2,0x4f,0xab,0xbb,0xf0,0xe9,0x0f, +0x7d,0x7f,0xe7,0x01,0xcf,0x60,0x67,0xa3,0xcd,0x5f,0x5c,0xdc, +0x26,0xef,0xad,0x5a,0xfb,0x58,0xae,0x9d,0x06,0xd3,0x60,0xf6, +0x30,0xce,0xfe,0x8d,0x1b,0xc9,0xfc,0xb8,0x70,0xb0,0xc4,0x67, +0x40,0x30,0x0b,0xd5,0x8c,0xde,0x15,0xcb,0x4b,0xfe,0x13,0xf0, +0x2a,0xa7,0x38,0x88,0xaa,0x54,0xb9,0x1d,0x33,0x16,0x98,0x3d, +0x9f,0x35,0x86,0x2a,0x44,0xf2,0x03,0x47,0x8a,0x8e,0xb8,0x18, +0x1c,0x39,0xf8,0x15,0x59,0x99,0x95,0x60,0x31,0x1b,0x13,0x47, +0xca,0x0a,0xab,0xd1,0x91,0xf5,0x66,0xaf,0x62,0x01,0x35,0xe6, +0xd0,0xfd,0xd4,0x25,0x27,0x70,0xcd,0x50,0x89,0xe1,0xac,0x2b, +0xc2,0xef,0xab,0xc3,0x97,0xa4,0x23,0x27,0xbf,0x46,0xa3,0x9e, +0xb3,0xcc,0x54,0x71,0xc6,0x27,0x5c,0xe0,0xe9,0xd4,0x4a,0x0d, +0xa6,0x09,0x07,0x72,0xce,0x77,0x63,0x5f,0x9c,0xca,0x98,0xb8, +0x80,0x8b,0x09,0x0f,0x3d,0x1e,0x10,0xde,0xea,0x2b,0x34,0x56, +0x74,0x74,0x15,0x36,0xf2,0x9d,0xd2,0x86,0x3e,0x78,0x32,0x88, +0x4f,0x06,0x0d,0x99,0x46,0x79,0x86,0xc7,0x39,0x3c,0x1e,0x81, +0x7b,0xf4,0x97,0xa9,0x0f,0xda,0xaa,0xdc,0x85,0xe9,0x15,0x60, +0x2c,0x3f,0x19,0x45,0x8b,0x53,0xec,0x93,0x7c,0x28,0x9c,0x91, +0x7e,0x97,0xb7,0xeb,0x29,0x85,0xc5,0x14,0xbd,0x46,0xc0,0x8b, +0x8c,0xcb,0xdb,0xa5,0x84,0x58,0x70,0x58,0xe7,0x4c,0x4d,0xd0, +0x6b,0x82,0x83,0x92,0x39,0x10,0x62,0x82,0x21,0x04,0xae,0x6d, +0xa2,0xca,0xf5,0xb8,0x54,0xcb,0x56,0xd1,0xda,0xaf,0x4f,0x24, +0xf7,0xa7,0x0c,0xeb,0x97,0x3c,0xe5,0xc0,0x76,0x39,0x7d,0x0a, +0x4b,0x96,0x73,0x63,0x73,0x9e,0xc2,0xda,0xe5,0x2c,0x59,0x8c, +0x2b,0xfc,0xa8,0x79,0xc7,0xd1,0x56,0x83,0x6a,0x3f,0x3b,0xe1, +0x96,0xff,0x35,0xef,0x09,0x17,0xfe,0x57,0x60,0x7c,0x3e,0x52, +0xbc,0x00,0x91,0x9c,0xf1,0x7a,0x2a,0xcd,0xed,0x17,0xe7,0x12, +0x69,0xee,0x46,0x2a,0xce,0xb5,0x91,0xe6,0x12,0xdc,0x72,0x84, +0x1a,0x75,0xea,0xb4,0xe8,0xd6,0xfa,0xd8,0x09,0x77,0xfc,0xc6, +0x7d,0x6f,0xdb,0xf3,0x0a,0xf7,0x3a,0xaa,0x5c,0x61,0x0b,0x87, +0x88,0x9d,0xe5,0x31,0x37,0x7c,0xc5,0xb3,0x82,0x71,0xde,0xf2, +0x91,0xca,0xee,0x3a,0xfe,0x1f,0x62,0x6b,0x7d,0xcc,0x15,0xdf, +0x74,0xad,0x70,0x10,0x40,0xbd,0xf7,0xc3,0x91,0x9b,0x8f,0xf8, +0x3f,0x89,0x8b,0x09,0x73,0xe5,0xd7,0x1c,0xaa,0x9d,0x98,0x06, +0x1a,0xbe,0x77,0x7d,0xe0,0x53,0xfe,0x4b,0x72,0xde,0x2b,0xd1, +0xe3,0x94,0x3f,0x1f,0x7e,0x26,0xea,0x94,0xf7,0xbc,0x5d,0x24, +0xc7,0x5e,0xe5,0x53,0x72,0xbd,0xb6,0xa4,0x2f,0x5b,0x23,0xb3, +0x39,0x75,0xf4,0xd2,0x1d,0x5e,0x3a,0x44,0x72,0x73,0x73,0xf2, +0x73,0xf2,0x79,0x71,0x17,0x51,0xfe,0xce,0xa2,0xfa,0xd6,0xd5, +0xbb,0xdf,0x74,0x3d,0xb4,0xaa,0x16,0x1c,0x8f,0x1c,0xdb,0xa2, +0x6f,0xc1,0x2b,0x7a,0x6c,0xa9,0xd2,0x1a,0xed,0x57,0x58,0x3c, +0x5f,0x3a,0xb2,0x88,0x48,0xa7,0x58,0xe6,0xc2,0x55,0x2c,0x34, +0x56,0x71,0xa2,0x0a,0xb2,0x32,0x2b,0xc1,0x06,0x22,0xcf,0xba, +0xb0,0xc2,0x4e,0x5c,0xc5,0xc9,0xbb,0x13,0x1f,0xa1,0x3d,0x50, +0xe2,0x30,0xd9,0xf3,0x62,0x77,0xe2,0x61,0x63,0x4b,0x2c,0x19, +0x36,0xb2,0xc4,0x8b,0x56,0x70,0xd1,0x81,0x4b,0x5c,0x4a,0xcd, +0x5a,0xf5,0x9a,0x8d,0xcb,0xfd,0x1c,0x84,0xc9,0x90,0x7b,0x6e, +0xfd,0x5e,0xbc,0xf8,0x54,0x9f,0xf1,0x0f,0xe9,0x8c,0x4c,0x40, +0xf4,0x60,0x2a,0x95,0x66,0xd7,0x8b,0xb3,0x89,0x34,0xfb,0x10, +0x15,0x67,0x7b,0x4b,0xb3,0x09,0x6a,0xeb,0x52,0xd3,0x66,0x83, +0x7a,0xe3,0x72,0x7f,0x3b,0x76,0xcd,0x6d,0x9f,0x61,0x4f,0xfe, +0xc6,0x59,0x0a,0xbb,0x88,0xb3,0x87,0xa1,0xef,0xf6,0xa0,0x32, +0x67,0x61,0xa8,0xb0,0xa7,0xa4,0x95,0x71,0x8b,0x99,0xc4,0xde, +0xc3,0xc8,0x7f,0x53,0x40,0xb9,0x8b,0x00,0xaf,0x34,0x3d,0xec, +0x9d,0x1c,0xe7,0x7f,0x23,0x1e,0x8e,0xe6,0xae,0xdb,0xbd,0x6a, +0x3d,0x85,0x5f,0xda,0xee,0x4e,0xb6,0x4f,0xf2,0x3f,0x92,0xf3, +0x61,0xe7,0x82,0x4e,0x47,0xf2,0x31,0x67,0x4f,0x27,0x06,0xcd, +0xdb,0x46,0xb2,0x1c,0x55,0xbe,0x25,0xdd,0x25,0x05,0x0d,0x59, +0x1a,0x59,0x0d,0xa9,0xbd,0x97,0x06,0x78,0xc9,0x88,0xe4,0x64, +0x65,0x67,0x65,0x65,0xf1,0xa2,0x7e,0x8f,0x72,0x1b,0x71,0x32, +0xa0,0x76,0x86,0x3b,0x8e,0x1d,0x76,0x6c,0xb2,0x13,0x1e,0xf5, +0x7d,0xfe,0xa0,0xff,0x2a,0xcf,0xa8,0x9e,0x2e,0xc5,0x7d,0x1b, +0xac,0x9f,0xcf,0x1b,0x5c,0x05,0xfb,0x38,0x29,0xc9,0x96,0xe2, +0x74,0x5c,0x07,0xd3,0x65,0xd8,0x9d,0x2e,0x47,0xee,0x74,0x16, +0xb9,0xd7,0x58,0x91,0x15,0xb6,0xe3,0x74,0xe6,0xeb,0xe3,0x8a, +0x21,0x6a,0x0c,0xe6,0x5c,0xd5,0xa6,0xdb,0xcb,0x9e,0xec,0x69, +0x1f,0x16,0xb6,0x7e,0x60,0xf4,0xa3,0x17,0xbc,0xca,0x2b,0x17, +0x2b,0xbf,0xa5,0xef,0x43,0x98,0x22,0x1b,0x9b,0x95,0x9f,0x73, +0xe2,0x11,0x45,0x0b,0x0d,0xd8,0x66,0xbf,0x43,0xdb,0xa0,0xc3, +0x41,0x78,0xf0,0xc1,0xd0,0x77,0x75,0xdf,0xf3,0x98,0x8b,0x3b, +0x29,0xee,0x82,0x43,0xac,0xe3,0x62,0x17,0x66,0xd1,0x09,0x69, +0xaa,0xc9,0x37,0xdc,0x71,0xad,0xa0,0x03,0x5e,0x07,0x78,0xf8, +0x90,0x5c,0x38,0x98,0x78,0x24,0xde,0x88,0xb7,0x3c,0x19,0x19, +0xab,0x33,0x8f,0x31,0xd8,0x02,0x63,0x79,0xfb,0xa7,0x9f,0x1a, +0xeb,0x3e,0x2c,0xd0,0xc8,0xff,0x20,0xe5,0xfd,0x8b,0x30,0x9f, +0x67,0xd4,0xaa,0x64,0xb4,0x68,0x2c,0x6f,0x98,0x97,0xe2,0xab, +0x99,0x09,0xe5,0x87,0x2e,0x13,0xb3,0x29,0xac,0x60,0xc3,0x0a, +0xd3,0x9f,0xbf,0x26,0xea,0xd1,0x2b,0x10,0x8b,0xd1,0xb0,0xdd, +0x10,0xb7,0xa3,0x0b,0xc6,0x5e,0x81,0xc3,0x0c,0x10,0xcf,0xe1, +0xfd,0xfd,0x78,0x14,0xed,0x71,0x71,0x8b,0x99,0x00,0x11,0xb0, +0xf3,0x03,0xf0,0x4c,0x81,0xfb,0x3c,0xec,0x27,0xca,0x76,0x30, +0xa2,0xca,0x9f,0xaf,0x3e,0x80,0x78,0x45,0x19,0x67,0x84,0x71, +0x14,0x8f,0xc0,0x51,0x38,0x42,0xa4,0x0d,0x53,0x58,0x49,0x8b, +0x95,0xc4,0x4f,0xa5,0x0c,0xba,0x8b,0x78,0x9e,0x4a,0xef,0xd2, +0x10,0x67,0x18,0x4a,0x6a,0xdc,0xa1,0xb2,0xe0,0xdb,0xea,0xdf, +0x90,0xfe,0xec,0x62,0xa6,0x17,0x0f,0x70,0x96,0x45,0x2a,0xca, +0x8b,0x1f,0x51,0x38,0xc2,0xb0,0xf8,0x08,0x99,0xae,0x50,0x81, +0x40,0xda,0x5d,0x56,0xda,0xad,0x21,0xf6,0xe9,0x49,0xc3,0xf8, +0x0e,0x57,0x68,0xa0,0x22,0xcd,0xc2,0x64,0x7a,0x1f,0xfc,0x14, +0xa9,0x58,0xad,0x7c,0xc4,0x41,0x80,0xf8,0x4c,0x7e,0x00,0xf9, +0x41,0xd8,0x42,0x44,0x1f,0x4f,0x3a,0xb1,0x62,0x08,0xdf,0xae, +0xc7,0xd7,0x26,0xaa,0x05,0xbf,0x7f,0xac,0xe0,0x6d,0xa3,0xa7, +0x3c,0x7e,0x7b,0x92,0xc6,0xe0,0x5c,0x2f,0x9c,0xad,0xb5,0x78, +0xc4,0x43,0xb8,0xff,0x4f,0x3b,0x2c,0x2b,0x60,0x46,0x90,0xd6, +0xc9,0x37,0xac,0x6c,0xc1,0x43,0xb8,0x85,0xc0,0x05,0x69,0x0b, +0x85,0xac,0xfb,0xb0,0x0b,0x66,0xff,0x04,0x46,0xe6,0x35,0xc2, +0x76,0xc6,0x1a,0xd7,0xe3,0x1b,0x78,0x59,0x87,0xc7,0x10,0x18, +0x96,0x4f,0xb4,0x64,0x27,0x4e,0x07,0x0d,0x4b,0xfa,0x00,0x22, +0x15,0x65,0xd8,0xae,0xfc,0x99,0x53,0xfc,0xa7,0xe2,0x67,0x2a, +0x0d,0x9a,0xc0,0x69,0x49,0x1b,0x97,0xc2,0x84,0xa1,0x74,0xf4, +0xea,0x43,0x50,0x90,0xa4,0xa3,0x89,0x26,0xa7,0x6c,0x78,0x9d, +0xf8,0xc0,0xe3,0x5a,0xf3,0x50,0x5b,0xde,0x3f,0x0f,0x76,0x90, +0x7f,0xba,0x1b,0x9f,0x16,0x6a,0x14,0xfd,0x91,0x02,0xef,0x42, +0xb1,0x1a,0x06,0xc2,0x7e,0x48,0x23,0x4a,0x35,0xd4,0x64,0x1e, +0xc4,0x6c,0xb5,0x8f,0x88,0xbd,0x18,0x49,0x77,0x5f,0x38,0x7a, +0xde,0x40,0x9d,0xb9,0x90,0x07,0x91,0xae,0x30,0x07,0xdf,0xc7, +0xc4,0xeb,0x3e,0x62,0x3a,0x85,0x15,0x1c,0x58,0x61,0xfa,0x73, +0x63,0x73,0xea,0xf3,0xa7,0x3d,0xbc,0xe3,0xf0,0x9d,0x65,0xb0, +0x50,0x61,0x59,0xa9,0x5b,0x7e,0x6c,0xed,0x89,0x15,0x71,0xcb, +0x4e,0xfe,0xc6,0x5c,0x6c,0x1a,0x98,0x7e,0x03,0x47,0xcd,0xea, +0x04,0x87,0x35,0x46,0x8b,0xf4,0x56,0xfa,0xf4,0x79,0xf5,0x7a, +0x76,0x5d,0xfd,0x62,0xe0,0xdb,0x96,0xcf,0x79,0xc8,0x9a,0xc0, +0x14,0x50,0x37,0x40,0x75,0x4c,0x34,0x81,0x68,0xe2,0x7b,0xc8, +0xf9,0x80,0xa3,0x5e,0x54,0x49,0x54,0xc9,0xf1,0x22,0x67,0x67, +0xe1,0xde,0xa1,0x0f,0xb6,0xde,0x5e,0x6b,0xaf,0x65,0xa7,0xef, +0x64,0x8d,0x33,0x4f,0x09,0x69,0x86,0xa0,0x99,0x0f,0x9a,0x25, +0xb0,0xa5,0x42,0x35,0x23,0x30,0x33,0x30,0x3d,0x88,0x57,0xa6, +0x96,0xb3,0xde,0xfb,0xb0,0xde,0x57,0xb1,0xde,0x83,0xbf,0xe2, +0x55,0x8a,0x9b,0x58,0xd3,0x37,0x11,0x26,0xa6,0x4e,0xc8,0x13, +0x3b,0x5a,0x4c,0x4b,0x30,0x4f,0xda,0x84,0x4e,0xac,0x30,0xfd, +0xb1,0xa2,0x9b,0x2a,0xbf,0xba,0xf2,0x3e,0x38,0x2b,0xf2,0xb8, +0x2f,0x2e,0x50,0x4c,0xe1,0xb0,0x3c,0x01,0x37,0x1c,0xc0,0x75, +0xea,0x03,0xf6,0x1f,0xc2,0xc6,0x52,0xd8,0x72,0x11,0xea,0x55, +0xc5,0x63,0xd0,0x4c,0x94,0xb3,0x30,0x5a,0x5e,0x03,0x3a,0x0c, +0x2b,0x09,0x38,0xe2,0x01,0xd6,0x75,0x71,0x2a,0xb2,0x98,0x7a, +0x88,0xf1,0x72,0xbd,0x26,0xab,0x17,0x9f,0x4a,0x69,0x14,0x9d, +0x89,0xf3,0xa9,0x8c,0x6e,0x0d,0x98,0xcd,0xfd,0xd8,0x0c,0xb3, +0xef,0x7f,0x78,0xc3,0xa3,0x4f,0xd0,0x32,0x5e,0xa8,0xbf,0xd5, +0x87,0x07,0x57,0x03,0x69,0x11,0xb7,0xb3,0x3a,0xe8,0x33,0x75, +0xb0,0x26,0x03,0xf9,0xa5,0x9d,0x1a,0xb0,0x93,0x33,0x2b,0x54, +0x51,0x9e,0xf9,0x9a,0xc2,0x4a,0xb4,0xc3,0x95,0xcc,0xb3,0xae, +0x33,0xaf,0xe9,0x29,0xcc,0x69,0xd1,0xb8,0xc2,0x19,0x66,0xa9, +0x68,0x4a,0x1f,0x70,0x3e,0xa7,0x92,0x1b,0x35,0x2a,0x39,0xf0, +0xb9,0x08,0xa7,0x93,0xc1,0xb8,0x39,0xb4,0x47,0xc0,0xa3,0x7e, +0x18,0x96,0x88,0x7e,0xe7,0xf9,0xdb,0xfa,0x8c,0x46,0x6b,0x97, +0x9c,0xf8,0x54,0x5d,0xfc,0x4f,0x69,0x17,0x15,0x5f,0x97,0x3e, +0x97,0x5e,0x67,0xbc,0xcd,0x80,0x8a,0xbb,0xf4,0x25,0x3f,0xc5, +0xc7,0x83,0x1c,0x6a,0xc0,0x23,0x2a,0x79,0x4c,0x8a,0x6c,0xd4, +0x3c,0x96,0x50,0xd1,0xc3,0x50,0xf2,0x20,0x0e,0x53,0x44,0x0f, +0x1d,0xf6,0x8a,0x45,0x78,0x9d,0x32,0xf5,0xc9,0xb2,0xd1,0x47, +0xcd,0x1e,0xdd,0xc2,0x5e,0xef,0x65,0xfe,0x38,0x27,0x82,0x17, +0x7b,0x5b,0xe8,0xb3,0x70,0x78,0xc3,0xe7,0x77,0xaf,0xba,0x61, +0x61,0x45,0x1d,0xbe,0xd9,0xb0,0xb0,0x94,0x9f,0x2e,0x76,0x89, +0x57,0xa8,0x71,0x82,0xf1,0x29,0xc3,0x33,0x3c,0x53,0xa5,0x7b, +0xc6,0x70,0xcf,0x3f,0x86,0x78,0x9d,0x73,0x4f,0x72,0x4d,0x72, +0x39,0xc7,0x43,0xa1,0x21,0x96,0x71,0x5b,0xcf,0x66,0x9a,0xca, +0x8f,0x8c,0xd9,0x56,0x08,0xcb,0xea,0x54,0xe1,0xcb,0x2c,0x8a, +0x9a,0xc4,0x29,0x3e,0xa3,0x4d,0xe3,0x53,0xee,0xf7,0xa2,0x5f, +0x1a,0x3f,0x6b,0xf3,0xe9,0x13,0xf6,0xba,0xef,0x0b,0x5e,0x1f, +0xc5,0x03,0x35,0xc0,0x06,0x4e,0xab,0x22,0xe2,0x13,0x79,0x01, +0xab,0xbb,0x28,0xaf,0x43,0xe3,0x5b,0xce,0x28,0x5f,0x45,0x39, +0x5f,0x69,0x45,0xfb,0xc5,0x5a,0xdb,0x9b,0x62,0xa8,0x72,0x85, +0x14,0xca,0x89,0x3f,0x00,0x50,0xa9,0xf6,0xbe,0x58,0x4b,0xa4, +0x5a,0x79,0x4f,0xc0,0xda,0xc3,0x52,0x2d,0xb1,0x98,0x22,0xd6, +0x1e,0x64,0xaf,0xd3,0xc5,0xaf,0x45,0x6f,0xfa,0xeb,0xd5,0x95, +0x70,0xc3,0x50,0x59,0x47,0xf6,0x46,0xa8,0x28,0x36,0x18,0x2b, +0xf7,0x71,0xc1,0x67,0x83,0xce,0x06,0x25,0x66,0xe9,0x0b,0x30, +0xb7,0x06,0x66,0xb7,0xc2,0xeb,0x3d,0x67,0xc6,0x05,0xdf,0x78, +0xdf,0x78,0xef,0x04,0x1e,0xe2,0x74,0xa8,0xe7,0x19,0xd6,0x2a, +0x71,0x0e,0x77,0x63,0xf8,0xc6,0x9d,0x9e,0x9b,0xee,0x7d,0x82, +0x87,0xa9,0x9d,0x99,0x8d,0x03,0x0f,0x9f,0x1a,0x29,0x3b,0x38, +0xad,0xaa,0xd0,0x1b,0xea,0x0f,0x48,0x67,0x6e,0x21,0x1b,0xaa, +0x70,0xce,0xa2,0x54,0x05,0x93,0x39,0xe5,0x45,0x33,0xfa,0x01, +0x1c,0x55,0x94,0x63,0x9c,0xec,0x68,0x5a,0xf2,0x13,0x95,0x66, +0x30,0x47,0x9b,0x41,0x70,0x86,0xec,0x68,0x33,0x50,0x1b,0x67, +0xc8,0x8e,0x36,0x03,0x9d,0x59,0x61,0xfa,0x73,0x7d,0x71,0x2d, +0x9d,0xc0,0x8b,0xcc,0x79,0xc2,0x26,0x30,0xec,0xe5,0xa4,0xaf, +0x97,0x09,0x78,0xe1,0x61,0x0c,0x33,0x01,0x37,0xce,0x07,0xdf, +0xd9,0x86,0x3c,0xce,0x58,0xd2,0xc2,0xd8,0xe3,0x5b,0xff,0x3c, +0xfa,0xbb,0x00,0x66,0xf0,0x69,0xd2,0x81,0xab,0xe2,0x81,0x34, +0x52,0x88,0x6f,0x3f,0x58,0x0e,0xb3,0xf0,0xf5,0xe6,0x61,0x01, +0xdf,0xf9,0x7b,0x1b,0x10,0x5f,0x79,0x8f,0xf2,0x4f,0x24,0x67, +0xe6,0xed,0xd1,0xcc,0xdb,0xbb,0xe4,0x46,0xc4,0xca,0xde,0x7e, +0x90,0x35,0xe2,0x20,0xc1,0x83,0x72,0x23,0x0e,0x32,0x6f,0x3f, +0x28,0x47,0xe6,0x41,0x16,0x99,0x07,0x59,0x23,0xac,0xe0,0x03, +0x8a,0xdc,0xf5,0x7d,0x13,0x26,0xd7,0x78,0x88,0x1e,0xc7,0x5a, +0x12,0xda,0x10,0xd1,0x18,0xd5,0xcc,0x83,0xfe,0x10,0x69,0x08, +0x6a,0xf0,0x6f,0xf2,0x6e,0xed,0x14,0x0e,0xdd,0xdf,0x7b,0xed, +0xc0,0xa0,0xbb,0xa7,0xd0,0xe1,0xdf,0x16,0xd0,0xee,0xc3,0x63, +0x17,0xc9,0x6d,0xcb,0x6c,0x4b,0xef,0x30,0xca,0x14,0x4e,0x3a, +0xc5,0x3b,0xc5,0x30,0x21,0x63,0x44,0x1a,0x6a,0xea,0xea,0x2b, +0x1a,0x18,0x81,0x36,0x3b,0x72,0xd8,0x74,0xab,0x43,0xa3,0x9d, +0xd0,0x59,0xda,0x5d,0xdb,0xde,0xc8,0xdb,0xc2,0x41,0x2e,0xda, +0x2b,0xd2,0x3b,0xc4,0x9b,0xc7,0x4e,0x53,0x48,0x24,0x06,0xba, +0x3b,0x0c,0x90,0x37,0xab,0xb3,0x10,0x06,0x2a,0xba,0x2a,0xdb, +0x2a,0x79,0x69,0xeb,0xf5,0x21,0x31,0xd8,0xea,0xba,0xb8,0x8f, +0x6b,0xf7,0xef,0x09,0x1c,0x08,0xe2,0x25,0x75,0x71,0x1e,0x2d, +0xf0,0x2c,0xf6,0x2e,0x65,0x1f,0xa7,0x43,0x4a,0x1b,0x8a,0x9a, +0xf2,0x9a,0x78,0x34,0xc0,0x8b,0xb4,0xb1,0xa6,0xa6,0xb6,0xa2, +0x96,0x87,0x22,0x52,0xe9,0x57,0x1d,0xd0,0x10,0xc0,0x4b,0x9e, +0xf8,0x0e,0x7d,0x28,0x06,0x1f,0xe4,0xac,0xa6,0x1c,0x94,0x82, +0x1f,0x72,0xf8,0xf6,0x14,0x31,0x78,0xaf,0x14,0xcc,0xc6,0x5f, +0x4d,0x6c,0x63,0x41,0x9e,0x06,0x87,0x72,0x40,0xb5,0x28,0x3f, +0x34,0x2f,0x34,0x27,0xbc,0xaf,0x56,0xb0,0xfb,0x48,0xf7,0x89, +0xd1,0x5d,0x47,0x3f,0xa1,0xc6,0xbb,0xce,0xad,0xc6,0x65,0x4b, +0xc2,0xd2,0x53,0x4b,0xcf,0xf6,0xdd,0xef,0xf8,0xac,0xe1,0x9e, +0x69,0x91,0xe0,0x73,0xd0,0x6a,0x8d,0xd9,0x81,0xc3,0xe7,0x04, +0xbc,0xa8,0x7c,0x97,0xd9,0xd3,0x8f,0xd9,0xb3,0xfa,0xdf,0xd9, +0x63,0x33,0xb3,0xe7,0x66,0x79,0x69,0x63,0x88,0xc2,0x6a,0x38, +0x31,0x86,0x27,0x60,0xa6,0x11,0xce,0xc4,0x77,0xb9,0xec,0xba, +0xcc,0xfa,0xf4,0x3a,0xb3,0x2c,0x21,0xea,0x88,0xe7,0x16,0x07, +0xfd,0x7e,0x5f,0xa1,0xa8,0xba,0xb0,0x2e,0x9f,0x89,0xab,0x2d, +0xb8,0x1a,0x53,0x4d,0x21,0x15,0xfd,0xae,0x80,0x1f,0xa4,0x8e, +0x13,0xe5,0x28,0x3c,0xa4,0xb0,0x99,0x0d,0xc7,0x66,0xd9,0x27, +0x36,0xb3,0xe4,0xb3,0x99,0x45,0xf9,0x76,0x36,0x1c,0x2c,0xd5, +0x9e,0x80,0x44,0x5c,0xc2,0x95,0xb6,0x94,0x0f,0xe4,0xb5,0x98, +0x16,0x0b,0xd1,0x0e,0xa1,0x56,0x81,0x76,0x3c,0xde,0x31,0x87, +0xe3,0xa8,0x86,0xde,0xe4,0xec,0xa1,0xf8,0x4d,0x11,0x3b,0x78, +0x88,0x24,0xce,0xbb,0xb6,0xef,0xc5,0xb9,0x07,0x1b,0x19,0xb8, +0x2d,0xfe,0xf2,0xfb,0x27,0xa9,0x3f,0xf0,0x69,0x78,0xff,0x2a, +0x7c,0x0f,0xe6,0xe4,0xa2,0xef,0x79,0xfd,0x33,0x1e,0xbc,0xc7, +0xd9,0xd3,0xf1,0x1e,0xf3,0x36,0x93,0x42,0x53,0x95,0x3b,0xe4, +0x4e,0x7d,0xc9,0xbd,0x6c,0x8d,0x8c,0xd1,0xcb,0xf7,0x2e,0x3c, +0xe6,0xf1,0x17,0x71,0x25,0x3d,0xde,0x16,0xd0,0x1f,0x51,0x69, +0x11,0x22,0x94,0x06,0x54,0xd9,0xe7,0x7b,0x32,0xbb,0x2b,0xcf, +0x32,0x3f,0x36,0x67,0x7e,0x9c,0x2c,0x77,0xd9,0x52,0xf6,0x63, +0x75,0xd6,0x65,0x75,0x22,0x7e,0xb8,0x88,0xb2,0x8f,0x3f,0x04, +0x6a,0x9c,0xd4,0x86,0xb3,0x29,0xa8,0x33,0x97,0x66,0xd5,0x11, +0xf0,0x26,0x65,0xac,0x42,0x8b,0xcb,0x68,0xcb,0xbc,0x76,0xb1, +0x99,0xc7,0x47,0x4c,0x58,0xb0,0x83,0x4e,0xec,0xe0,0xf4,0x87, +0x72,0x3e,0xed,0xb8,0x72,0x0b,0xec,0x15,0xa1,0x9c,0x42,0xc5, +0x80,0xa1,0x7f,0x2f,0x06,0x71,0x58,0x9d,0x80,0xfa,0x87,0x70, +0xb5,0xfa,0x88,0x8b,0xca,0x47,0xb0,0x2b,0x8f,0xd1,0xea,0x46, +0x35,0x96,0xf6,0xd0,0x1c,0x37,0x53,0x5c,0x06,0x3b,0x60,0x19, +0x81,0xe3,0xd2,0x1c,0x2a,0x1a,0x8c,0xa1,0x23,0xbc,0x05,0x9a, +0x23,0xa8,0x09,0xc4,0x04,0x09,0x6e,0xb6,0x60,0xe6,0x7a,0x8b, +0xf9,0x04,0x1e,0x37,0x97,0x4f,0xdd,0xc5,0x4e,0x15,0xbd,0xa5, +0x37,0x29,0x68,0x8f,0xa0,0x36,0xbc,0x61,0xc4,0x30,0x50,0xd3, +0x02,0x34,0x71,0x3e,0x46,0x9a,0x8b,0x49,0xa3,0xcc,0x5e,0x12, +0x42,0x0f,0x85,0x65,0xa8,0x87,0xcb,0x98,0xcf,0xab,0xcd,0xd9, +0x4e,0xfc,0x4e,0xa7,0x35,0x68,0x40,0x03,0x2c,0x16,0xed,0xe5, +0x6d,0x84,0x77,0xa1,0x06,0x6e,0x35,0x63,0x3a,0x65,0x0d,0x02, +0xac,0x81,0x55,0x63,0xb8,0x0a,0xe6,0x72,0xd7,0x0b,0x47,0x4a, +0xbb,0x2a,0x3d,0x07,0x04,0xc7,0x00,0xd3,0xd0,0x5d,0x51,0x4c, +0xb9,0xc1,0x14,0xee,0x3c,0x1e,0xb0,0xde,0x88,0xb3,0xb7,0xc9, +0xd3,0xf6,0xcb,0x7f,0x18,0x85,0xb7,0x2e,0x81,0x1e,0xff,0x2b, +0x8b,0x08,0xed,0xd2,0x88,0xdb,0xea,0xdf,0x92,0xbe,0xdc,0x42, +0x96,0xe7,0x57,0x73,0x66,0x79,0x2a,0xca,0x64,0x0c,0xf9,0xff, +0x0a,0x47,0xc5,0x46,0x98,0x4b,0xe1,0xfc,0x28,0x9e,0xff,0x1d, +0x62,0x61,0xf1,0xb5,0x61,0x03,0x26,0x86,0x62,0xbf,0x86,0xea, +0x61,0xac,0xfe,0xd8,0x78,0x0f,0x26,0x5b,0x42,0xf2,0x16,0x0c, +0xb0,0x82,0x80,0x4d,0x2f,0xca,0x1b,0x30,0xc0,0x12,0x02,0xb0, +0x9a,0x6c,0xcc,0x75,0xbd,0xf2,0xbb,0x5a,0xa7,0xb1,0x2b,0x87, +0x53,0x3c,0xad,0x36,0xba,0xa8,0x57,0x99,0xfc,0x3a,0x58,0x36, +0x94,0xfc,0xb1,0x6a,0x1a,0xd9,0x75,0x69,0xfc,0x20,0x2c,0x98, +0x07,0x13,0x24,0x63,0x42,0x85,0xf1,0x28,0xe9,0x89,0xa2,0x99, +0xf1,0x9e,0x89,0x0f,0x40,0x47,0x51,0xce,0x99,0xb2,0x76,0xe0, +0x2c,0xd6,0xa6,0x59,0x8c,0xed,0xe0,0x51,0xba,0x09,0x8f,0x7c, +0xc3,0x49,0x6b,0x64,0xfc,0x9a,0x05,0xda,0x2f,0x6a,0xb7,0xd2, +0x0d,0x78,0xe4,0x3b,0x4e,0xaa,0xc7,0x95,0x94,0xa5,0x1c,0x67, +0x9c,0xc5,0x5a,0x7a,0x44,0x7c,0x42,0x21,0x7e,0x10,0xe3,0x1f, +0x43,0xd6,0x10,0x66,0xdd,0x33,0x3c,0x8a,0x49,0x56,0x90,0xb4, +0x17,0xc3,0xad,0x21,0x7c,0x07,0x66,0x5a,0x8a,0x9f,0x0d,0x63, +0x09,0x91,0x46,0xa4,0x09,0xe6,0x4e,0x66,0xcc,0x9d,0x2e,0xcb, +0x26,0xb0,0x90,0xdd,0x69,0x3e,0xfb,0xb8,0xf9,0x84,0x8d,0x0f, +0x33,0xc1,0x7c,0xe6,0x43,0xf3,0x09,0x88,0xd2,0x66,0x0a,0x27, +0xe1,0x1f,0xdc,0x8b,0xf3,0xb9,0x1c,0x53,0x15,0x98,0x4a,0xfa, +0x0a,0x0b,0x7a,0x35,0xc4,0xf9,0x92,0xaf,0xe4,0xc5,0x31,0xf7, +0x68,0xa3,0x8c,0xae,0x08,0xb0,0x94,0x91,0x76,0x81,0xb2,0xc2, +0x6a,0x14,0x38,0xa5,0xcd,0x43,0xf9,0x1d,0x9c,0xd8,0x3b,0x4c, +0x17,0xb7,0x83,0x21,0x85,0x77,0xea,0x1f,0xf5,0xb7,0x7e,0xc5, +0x43,0x81,0x38,0x1f,0x73,0x49,0x4e,0xad,0x1c,0x92,0x46,0xe9, +0xc2,0x29,0xff,0x78,0xef,0x18,0x0f,0x1e,0xcd,0xa5,0xf9,0x60, +0x48,0x7c,0xcc,0x0d,0xbd,0x97,0x86,0xf0,0x58,0x80,0x3d,0xff, +0x8b,0xab,0x83,0x64,0x4a,0x99,0xab,0xed,0x06,0xc2,0x41,0xf8, +0xcb,0x9d,0xfd,0x0f,0x20,0xe1,0xa4,0x85,0x96,0x14,0x76,0x93, +0x0b,0x76,0x49,0xae,0xa7,0x58,0x5a,0x5a,0x4b,0xc0,0x73,0x4e, +0x46,0x53,0x72,0xdb,0xc5,0x5e,0x9e,0x1d,0x7f,0x93,0x28,0xfd, +0xe0,0xd5,0xff,0x0a,0x0b,0xc5,0x6a,0xdc,0x40,0x61,0x91,0x3e, +0x2e,0x92,0xa6,0x9a,0x31,0x56,0x60,0x7b,0x1d,0x6c,0x61,0xe3, +0x18,0xa7,0xbc,0xf6,0xfb,0xbf,0x83,0x43,0xf1,0x5c,0x31,0x83, +0xae,0xbe,0x06,0x4b,0xa4,0x35,0x93,0xf0,0x5b,0x1f,0xfe,0x36, +0xac,0x8b,0x1b,0xa5,0x79,0xb8,0xe4,0xea,0xcf,0xdc,0x98,0x15, +0xb5,0x53,0x4c,0xed,0xe3,0x94,0xce,0x68,0x4d,0x1f,0x17,0xff, +0xd0,0x74,0xb3,0xd9,0xb7,0x45,0xd0,0xf7,0xde,0x15,0xb4,0x23, +0x82,0x57,0xfc,0x7a,0x86,0xee,0x69,0x38,0x50,0xbb,0xb7,0x3c, +0xd0,0x43,0xf8,0x34,0xf0,0x51,0xc0,0x23,0x26,0x2d,0xf6,0x52, +0xec,0xb8,0xbb,0x74,0xc2,0xfa,0x2e,0xaf,0x45,0x6c,0xb4,0xd6, +0x9b,0x60,0xb3,0x56,0x91,0x95,0x30,0x92,0xdb,0x9b,0xd3,0x91, +0xcd,0x4b,0x53,0xaf,0x76,0x8a,0x09,0xce,0xd7,0xc4,0x37,0xb8, +0xce,0xf8,0xde,0xf8,0x91,0x13,0xbc,0x72,0xea,0xa7,0xf4,0x97, +0xb6,0xbe,0xf6,0xea,0x49,0x3e,0x8d,0x54,0x19,0x8f,0xb8,0xfe, +0xee,0xc6,0x4b,0x7b,0x16,0xd0,0xab,0x62,0x82,0x21,0x67,0x3f, +0xc5,0x50,0x4a,0xb8,0xca,0x2d,0x9c,0x22,0x26,0x68,0x4b,0x09, +0x44,0x9e,0xc9,0x9a,0x43,0x1f,0x8b,0x53,0x07,0xa5,0xa9,0xf7, +0xc5,0x05,0x60,0x22,0x6d,0xe3,0xb2,0x8b,0x33,0x8b,0x33,0x4b, +0xf4,0x33,0x84,0x53,0xa1,0xf1,0x61,0x27,0xc2,0x78,0x04,0x34, +0x11,0x67,0x6a,0xe2,0x73,0x6b,0x78,0xbe,0x57,0x5a,0x6f,0x09, +0xa9,0xc4,0x3e,0x22,0x3f,0xa6,0xd2,0x2d,0x2f,0x58,0x15,0xb3, +0x2d,0xc5,0x55,0x5b,0xa4,0xd7,0xac,0xc5,0xd7,0x70,0xc6,0x75, +0x98,0x21,0xbe,0x33,0x28,0xbd,0xf3,0xb5,0xb8,0x6b,0x18,0xcb, +0x49,0x49,0x75,0x71,0x75,0x5e,0xad,0x7d,0xbe,0x00,0x45,0xc3, +0x44,0xfa,0x07,0x7e,0xa0,0x6b,0xd1,0xf6,0x47,0x0e,0x32,0xe6, +0x80,0xf5,0x5a,0xb4,0x26,0x90,0x3e,0xe7,0x47,0x70,0x5d,0xcb, +0x49,0xa5,0xd2,0x12,0xda,0x56,0x90,0x50,0x1e,0xd8,0x16,0x55, +0xaa,0x0a,0x40,0xa2,0xbd,0xc2,0x3c,0xc2,0xfd,0xe5,0x6f,0xd8, +0x8b,0x97,0xe8,0x28,0xee,0xe7,0xae,0xdc,0x1a,0x7a,0xd0,0xfd, +0xb9,0x75,0x95,0x60,0xbd,0xc6,0x70,0xe7,0x91,0x23,0xbc,0x3e, +0xcc,0x84,0x2d,0x23,0xb8,0xe5,0x99,0xd1,0x12,0xdc,0x6f,0x01, +0xfb,0x59,0x92,0xb6,0x33,0x87,0x7c,0xb2,0xf5,0xe0,0x4a,0xc3, +0x05,0x36,0xd5,0xd6,0x42,0x6d,0x5e,0x4d,0x7e,0x75,0x1e,0x2f, +0x2d,0x9c,0x18,0x87,0x5e,0xd3,0x2b,0xa2,0x21,0x77,0x39,0xe9, +0xf2,0xb9,0xcb,0xe7,0x5a,0x5b,0x05,0xbf,0x66,0xe7,0x16,0xd7, +0x1a,0x06,0x79,0x4d,0x0c,0x04,0x6b,0xfd,0x78,0x7c,0x9f,0xdc, +0xe8,0x98,0xec,0x19,0x66,0x1a,0xeb,0x07,0x69,0x94,0x45,0xb5, +0x33,0x8b,0xea,0x02,0xd9,0x6d,0x5c,0xe5,0xa8,0x5e,0xc9,0xdc, +0x66,0x25,0xc1,0x95,0xb2,0x4b,0xaf,0x64,0x51,0xcd,0x78,0xdf, +0x02,0x9c,0x23,0x3f,0xd6,0xa1,0x17,0xa7,0x70,0x4a,0xcd,0x0f, +0xe5,0x6a,0xa7,0x17,0xd5,0x8f,0x28,0xab,0x7b,0x0b,0x7b,0xd9, +0xf0,0x1b,0x89,0xba,0x14,0x42,0x86,0x30,0xe4,0x11,0xb9,0x97, +0x7c,0x37,0xed,0x76,0x7a,0x62,0xae,0x30,0xc2,0xb2,0xd0,0xe5, +0x8f,0xf5,0xf7,0xe0,0x69,0xdc,0x39,0x46,0xd2,0xdc,0xaf,0x5e, +0xbc,0x72,0xe9,0xca,0x25,0xd5,0xc3,0xe8,0x6b,0x05,0xbe,0xbb, +0x31,0x95,0xd9,0x55,0xeb,0xea,0x5d,0x48,0x1f,0xc6,0x74,0x4e, +0xba,0x2a,0x4d,0xa7,0x77,0x59,0x53,0xce,0xb2,0xa6,0x5c,0x67, +0x4d,0x11,0x7f,0x90,0x9b,0xb2,0x57,0xa6,0xa3,0x07,0x3c,0xa8, +0xa8,0xbd,0x8a,0x9c,0x2a,0x37,0x3a,0x6d,0x70,0x56,0x2f,0x51, +0x75,0x52,0xdf,0x80,0x33,0x4c,0x32,0xbc,0xa0,0x7f,0x81,0xc7, +0x87,0x5b,0xe5,0xe6,0xec,0x67,0xcd,0x61,0xb9,0x67,0x25,0x9a, +0xb0,0x02,0xfc,0x8d,0x3a,0x74,0x54,0x54,0x31,0xbf,0x0a,0x1d, +0x52,0x0c,0x76,0x70,0xe2,0x7e,0x90,0x73,0x80,0xa4,0x02,0xb3, +0x38,0xe6,0xa8,0xe2,0x3f,0xb4,0xb7,0x20,0xaf,0x4d,0x63,0x84, +0x33,0xcd,0x54,0x39,0x86,0xcf,0x38,0x97,0xb8,0xb4,0x36,0x8d, +0x12,0x0e,0x36,0xa7,0xc3,0xea,0x2c,0x50,0xab,0x08,0xed,0x17, +0xf0,0x8d,0x30,0x5c,0x13,0x8b,0xab,0x13,0xf9,0x9b,0x46,0xb8, +0x80,0x3b,0x5a,0x19,0x7e,0x5f,0x5d,0x9a,0xa9,0x5c,0xf5,0xbf, +0xf0,0x22,0xd0,0x93,0x80,0x8a,0x07,0x8c,0xa5,0x70,0xf1,0x83, +0x11,0xce,0x7d,0x42,0x66,0xa9,0x4b,0x18,0x4b,0x95,0xe6,0xc8, +0xd8,0xf8,0x92,0x2f,0x29,0xfc,0xe1,0x30,0x35,0xc7,0xf6,0x51, +0x0e,0xda,0x97,0x50,0x53,0x6c,0x1f,0x67,0x85,0xc5,0xd4,0x08, +0xdb,0xaf,0x70,0x92,0x41,0x18,0xfd,0x17,0x9b,0x82,0x20,0xdc, +0x44,0xbf,0x28,0xff,0xba,0xf5,0x7a,0x97,0x57,0xa7,0xa0,0xef, +0xba,0xcb,0x67,0x47,0x38,0x2f,0xce,0xea,0xa3,0x0f,0x43,0x3e, +0xf6,0xfd,0xc4,0xb9,0x6a,0x48,0x38,0xdc,0xba,0xab,0x71,0x4f, +0x39,0x3f,0x1d,0xe6,0x59,0xb2,0xe6,0x18,0xb0,0xe6,0x24,0xb1, +0xe6,0x88,0x4f,0xa1,0x80,0xfe,0x02,0x36,0xf0,0x78,0x18,0xf6, +0x4a,0x03,0xb8,0x77,0x04,0x1f,0x83,0xf1,0x2a,0xcc,0x30,0x17, +0xbf,0x1a,0xe5,0x76,0x8a,0x06,0x54,0x3a,0xfa,0x93,0x78,0x94, +0x48,0xcf,0x50,0x8b,0xa2,0xc0,0x9a,0x2d,0x10,0x08,0xc3,0x33, +0xf4,0x27,0xf8,0x62,0x0d,0xa7,0x3c,0x9c,0xc6,0x32,0x11,0x6b, +0xa7,0x40,0x14,0x87,0x61,0x26,0x5d,0x8e,0x5f,0x3c,0xe5,0x50, +0x64,0xa7,0xb2,0x5a,0x27,0x56,0x0b,0x49,0xb8,0x8e,0x7e,0xd4, +0xf5,0xe8,0xce,0xe0,0x0d,0xa7,0x26,0xc1,0xd1,0x64,0xaf,0xce, +0x61,0x77,0x5e,0x9c,0x09,0x53,0xe9,0x55,0xa7,0x4f,0x8f,0x0e, +0x9b,0xb7,0x75,0x09,0x96,0xc3,0x3b,0xef,0x1a,0x76,0x31,0x27, +0x9e,0xa6,0x78,0x83,0xe2,0xdb,0x13,0x4c,0x4a,0x66,0xc0,0x16, +0x43,0xdc,0x82,0xb3,0xb9,0xc1,0xaa,0xc8,0x76,0x9f,0x91,0xc0, +0x6a,0x55,0xeb,0xc0,0x1a,0x9f,0x5a,0xfb,0x62,0x17,0x55,0x9c, +0x85,0x47,0x26,0xe0,0x6d,0x22,0xee,0x00,0x3b,0x1a,0xe5,0x1a, +0xe4,0x14,0xe0,0xd5,0xcf,0x48,0x4c,0x63,0xcd,0x40,0x71,0x3b, +0xaf,0x4c,0x53,0xfe,0xcc,0xfa,0x66,0xc8,0xfa,0x76,0x4e,0x36, +0xb5,0xb1,0x6c,0x6a,0x55,0xd6,0x66,0x55,0x76,0xbe,0xf4,0x33, +0x85,0x98,0x61,0x8c,0x81,0xa9,0xb0,0x1b,0xa2,0x24,0x35,0x8c, +0x62,0xda,0x7e,0x2a,0x26,0x58,0x42,0x02,0x2e,0xc2,0x2a,0x33, +0xf1,0xf7,0x31,0x2c,0x23,0xd2,0xa0,0x98,0x42,0x41,0x95,0x75, +0x49,0x95,0x28,0x56,0xc1,0x16,0xca,0x42,0xa6,0x1a,0x66,0x72, +0xd2,0x5c,0xf4,0x95,0xeb,0x9d,0x58,0xfd,0x74,0xc5,0x03,0x85, +0x31,0x85,0x99,0x23,0x38,0xf3,0x53,0x93,0x5d,0x78,0x56,0xfe, +0xf3,0xa6,0x05,0xbc,0xc9,0xf4,0xc4,0x92,0x2d,0x98,0x24,0xf5, +0x8d,0x89,0x67,0xc0,0x4c,0x8a,0x1a,0x11,0xa3,0xc0,0x56,0x3a, +0x80,0x53,0x48,0xbe,0xb9,0xca,0xd7,0xa4,0xbf,0xa0,0x78,0x40, +0x43,0xf4,0xc4,0xe4,0xaf,0x61,0x15,0xa7,0xd4,0x97,0x9e,0xd3, +0x17,0x00,0x84,0xa7,0xe5,0xa6,0xea,0xca,0x4d,0xfd,0x17,0x0a, +0x65,0xd9,0x31,0x10,0x3a,0xfb,0x8d,0xfc,0x88,0x14,0x03,0x19, +0x6f,0xb4,0x19,0xde,0xc0,0xb7,0x6d,0xd4,0xb6,0xdd,0x95,0xd3, +0x8b,0x34,0xb3,0x30,0x55,0xaf,0xb0,0x1e,0xbc,0x92,0xdf,0x79, +0x69,0x50,0x35,0x95,0x5c,0xb2,0xc9,0x72,0xeb,0x35,0xaa,0x18, +0x12,0x2c,0xaf,0x9f,0x1c,0xfc,0x50,0xed,0x3e,0x07,0xc1,0xb8, +0x95,0x5e,0xb2,0xce,0x75,0xe9,0x33,0x64,0xb5,0xe6,0x37,0x13, +0x06,0x3f,0x52,0xbb,0xbf,0xd1,0xb6,0xc3,0x8d,0xd3,0x8f,0x36, +0x37,0x37,0x55,0xaf,0xb4,0x1e,0x9a,0xcc,0xea,0xb8,0x3c,0xa0, +0xaa,0x9c,0x7d,0xe7,0xdf,0x68,0xf6,0xdc,0xda,0x9f,0x9a,0xdd, +0x75,0xbd,0xef,0xff,0x60,0x1c,0x54,0xcb,0x60,0x59,0x2a,0x6c, +0xe7,0x1b,0xc7,0xd1,0x8c,0x64,0xf6,0xa7,0x8f,0xa4,0x0e,0x9b, +0xa7,0x0a,0xb1,0xa8,0x1e,0x84,0x4b,0x4d,0x71,0x46,0x9d,0x91, +0x90,0xdf,0x90,0xd7,0x96,0xd3,0x99,0x8d,0xaf,0x94,0x2c,0x6f, +0x5e,0xe3,0xbd,0xdf,0xee,0x88,0xae,0x76,0xa3,0xad,0x30,0x79, +0xa3,0xe7,0x56,0xd3,0xdd,0x7a,0xad,0xf6,0x63,0x83,0x7a,0xbc, +0xb2,0xa7,0x8a,0x75,0x6f,0x3f,0xeb,0x5e,0xa4,0xec,0x65,0xdf, +0x29,0x0e,0x52,0x5c,0xc8,0x4c,0x4f,0x87,0xe5,0xef,0x17,0xbf, +0xc9,0x0c,0x3f,0xdf,0xb2,0x5b,0x4a,0x27,0x91,0x49,0x51,0xe7, +0xa3,0xce,0x65,0x98,0x0b,0x9f,0x64,0x7f,0x5a,0xf8,0x51,0x31, +0x8f,0x73,0xc7,0x14,0x8b,0x7b,0x38,0x69,0x67,0x82,0xbc,0x5c, +0x73,0x94,0xa1,0xa0,0x42,0x05,0xdf,0xa6,0x67,0x71,0x5e,0x2c, +0xbe,0xe9,0x81,0xaf,0x79,0xc3,0xab,0xb1,0x30,0xed,0xb4,0x3c, +0x21,0xf2,0x08,0x77,0xc9,0x3b,0xbb,0xa9,0xc9,0xb7,0x1a,0xea, +0x4e,0x52,0x98,0xca,0x0c,0x35,0x95,0xc0,0xa4,0xe5,0x7f,0xd7, +0x9e,0x93,0x6b,0x9d,0x5f,0xd4,0xc2,0x46,0xca,0x2a,0x67,0x10, +0xc7,0x78,0x87,0x53,0x0e,0xa7,0xf8,0xe9,0x8a,0x83,0x8c,0x17, +0xdf,0x60,0x24,0xe3,0x10,0xc6,0x5e,0x35,0x35,0xc4,0x10,0x46, +0xeb,0x42,0xf4,0xb0,0xd2,0x5a,0x7c,0x3a,0xc8,0x29,0xef,0x49, +0xdf,0xfd,0x5f,0x41,0xc2,0x3c,0x8a,0x8d,0xce,0x5c,0xd6,0x9c, +0xb9,0x04,0x1c,0x62,0x28,0xec,0xda,0x85,0xbb,0x58,0x22,0x9b, +0x83,0x87,0x3e,0x85,0x43,0x44,0xe9,0x8f,0xfe,0xf2,0x5a,0xbf, +0x36,0xce,0x25,0x8a,0xbc,0xa7,0x54,0x8a,0x95,0x5e,0x11,0x63, +0x89,0x29,0xdc,0xa7,0xc6,0xd2,0x9b,0x93,0x9c,0xf8,0xe6,0x92, +0x97,0x05,0xfc,0x29,0x51,0x3e,0xcf,0x59,0x3e,0xcf,0xe5,0x1f, +0xaa,0x27,0xbd,0x79,0x83,0x63,0xde,0x77,0x80,0x7e,0x19,0xfc, +0xbe,0xdf,0x7d,0x8f,0xba,0x5e,0x41,0xbb,0x75,0x4f,0xfd,0xee, +0x32,0x5e,0xe2,0x51,0x9d,0xfe,0x58,0xfa,0x79,0xf3,0x70,0x9b, +0x47,0x9b,0x60,0xe1,0xb1,0xdf,0x6f,0x5b,0x0c,0x8b,0x90,0xb7, +0x15,0x8f,0x18,0x07,0xf0,0x45,0xbb,0xe3,0x68,0x99,0x24,0x4f, +0xa9,0x9b,0xa6,0x82,0x6b,0x21,0x6c,0x6c,0xe4,0x95,0x8d,0xca, +0x4f,0x58,0x83,0xb5,0x59,0x83,0x4f,0xca,0x73,0x1c,0xd7,0xc5, +0x3f,0xe9,0xea,0x31,0x58,0x8e,0x1a,0x5c,0x6d,0x5b,0x6d,0x6f, +0x69,0x8f,0x55,0x89,0x10,0xee,0xe0,0x6d,0xe8,0x62,0xcf,0x4b, +0x0b,0x70,0xf9,0xd8,0xcf,0x04,0x57,0xe4,0x51,0x7c,0x87,0x75, +0xe9,0x1d,0x22,0xee,0x41,0x8e,0x26,0x34,0x45,0x74,0x45,0x57, +0xd9,0x44,0x0a,0xf9,0x01,0xc5,0x2e,0x59,0xbe,0x6c,0x20,0x0a, +0x69,0x5c,0x43,0x54,0x53,0x4c,0x99,0x75,0x94,0x90,0x1f,0x5c, +0xe8,0x95,0xed,0x2f,0x6f,0xf8,0xbc,0x98,0xda,0x56,0x3a,0x95, +0x59,0x17,0x05,0xbb,0x0b,0x03,0xe1,0xc3,0x21,0x6d,0x21,0xbc, +0xf4,0xeb,0x97,0x8c,0x75,0xb0,0xce,0xbf,0x23,0x5b,0x79,0x35, +0x8d,0x30,0xf0,0x36,0xf6,0x70,0xe9,0xf6,0x11,0xda,0x07,0x5a, +0xee,0x94,0xdc,0xe0,0xe1,0xdb,0x04,0xda,0x6a,0xdf,0x68,0x52, +0x65,0xdc,0x5b,0x2e,0x04,0x8d,0x7b,0x4e,0xba,0xf7,0xf2,0x7f, +0x4a,0xa9,0x74,0x63,0xd1,0xb6,0x8a,0xfd,0x0d,0xef,0x77,0x5c, +0xe9,0x6f,0x9b,0xe0,0xdb,0xf0,0x7b,0xae,0xb4,0xa2,0xa8,0x2a, +0xbf,0x8a,0x49,0x05,0xd2,0x92,0xcb,0x64,0xfe,0x6d,0xce,0x3a, +0x53,0x65,0x2f,0x03,0xb5,0x90,0xd3,0x29,0x95,0x1a,0x4f,0x2c, +0x56,0x70,0x1e,0x99,0x51,0x15,0xa7,0xd5,0x1d,0x35,0x35,0x75, +0x96,0x5b,0x54,0x3b,0x08,0x2d,0x45,0x4d,0xe5,0xf5,0x15,0x1d, +0xae,0xbd,0xde,0x43,0xfe,0xbb,0xbc,0xd7,0x04,0x2f,0x8e,0x29, +0xb2,0x10,0xfe,0x29,0x04,0x95,0x86,0xdf,0xfa,0xbe,0x76,0xfe, +0xcd,0xef,0xaf,0x10,0x5e,0x79,0x0d,0x9e,0xcb,0x8d,0x73,0x66, +0x8d,0x53,0xec,0x05,0x15,0xea,0xe1,0x62,0xe5,0xa1,0xef,0x67, +0x50,0x67,0xde,0xe2,0xdc,0xc1,0x44,0xfb,0x9d,0x12,0x7a,0x07, +0xee,0x0e,0xe0,0xdd,0x9b,0xff,0xfa,0xfb,0xdd,0x10,0x7e,0xc4, +0xe5,0x15,0x65,0x17,0xe7,0x56,0x18,0x14,0x09,0x71,0x01,0xb1, +0x41,0x11,0x41,0xf2,0x6d,0x74,0x05,0x25,0xf9,0xa5,0xf9,0x65, +0xc6,0x15,0x02,0x98,0xc1,0x53,0x7c,0x86,0x4f,0x61,0x3d,0xb1, +0xdc,0x79,0x4c,0x0b,0xc9,0xb1,0x06,0x4b,0xf9,0x3e,0xd4,0xb2, +0xda,0x72,0x1e,0xbf,0xba,0xd6,0xa9,0x30,0x1a,0xe1,0xa4,0x45, +0x8a,0x32,0x8a,0x4f,0x45,0x15,0x78,0xca,0x49,0xe7,0x96,0x53, +0x3c,0x31,0x02,0x27,0x88,0xa8,0x6f,0x41,0x31,0x65,0x04,0x52, +0x88,0x72,0x1b,0xae,0xa6,0xac,0xca,0x82,0x13,0xf5,0xe7,0xbc, +0xac,0x92,0xf4,0x57,0x52,0x13,0x3c,0x31,0xc1,0x89,0xbb,0xe6, +0x40,0x8a,0x09,0xa6,0x90,0xfd,0x98,0x4a,0xb1,0xe5,0x26,0xb4, +0x10,0x6c,0x41,0x4d,0xca,0x0a,0xba,0x9c,0xcd,0x14,0x6d,0x6c, +0xb9,0xc3,0xc0,0x48,0x4d,0xd1,0x43,0x2b,0xd7,0x82,0xca,0x41, +0x58,0xbe,0xaf,0x76,0x54,0xc0,0xa5,0x0f,0x57,0xdc,0x77,0xf9, +0x8c,0xb1,0x1e,0xf7,0xdd,0x5b,0xf7,0xe1,0xea,0x43,0x35,0xe6, +0x02,0x2c,0x79,0xf8,0xec,0x71,0xcd,0x2f,0xbc,0x74,0x59,0xf9, +0x0b,0xf3,0x0c,0x7d,0xe6,0x19,0x89,0xb2,0x2b,0x1b,0xc8,0xae, +0x3c,0x87,0x8d,0xfb,0x1c,0x02,0xfe,0xa8,0x46,0xcd,0xe1,0xfb, +0x51,0x4e,0x79,0x68,0x05,0x85,0x39,0x6c,0x0c,0xe7,0x10,0x31, +0x72,0x37,0x65,0x22,0x2b,0x0a,0x8f,0x33,0x9c,0x81,0xe3,0x14, +0x8f,0xc3,0x29,0x38,0xce,0xe1,0x33,0x5b,0x96,0xfe,0xf1,0x2d, +0xf9,0xf1,0xb1,0x6d,0x2f,0xf9,0xe7,0x5c,0x99,0x7f,0xfa,0x84, +0xca,0x17,0x3a,0xb3,0x0b,0x15,0x2b,0x4f,0xd2,0xa4,0xcb,0x2a, +0x05,0x4d,0x29,0x8d,0x7d,0x6a,0xb5,0x26,0x9e,0xdc,0xde,0x30, +0xdb,0x2d,0xba,0xea,0xeb,0xbe,0x4a,0xc8,0x3c,0x7b,0x21,0xee, +0xa4,0x6a,0xc2,0x29,0xf9,0x68,0x73,0x4a,0x73,0xcf,0x8b,0xa3, +0xdb,0x7c,0x4c,0x17,0x6b,0xaa,0xd7,0xd9,0x8c,0xb7,0x77,0xb4, +0x55,0xb5,0xab,0xa6,0xa4,0xa5,0x5c,0x4c,0x3f,0x0b,0xf3,0xf0, +0x2d,0xe1,0x7a,0x5b,0x57,0x47,0x65,0x7b,0x4a,0x7a,0xca,0x85, +0x7f,0x6d,0x01,0xd6,0xd2,0xcd,0x52,0xc1,0x94,0x93,0x99,0x67, +0x2e,0xc5,0x27,0xa8,0x4e,0xbf,0xad,0x30,0xa0,0x8e,0xe2,0xaa, +0x6e,0x3c,0x3a,0x02,0x46,0xdd,0x68,0x34,0x68,0x64,0x8d,0x06, +0x8e,0x60,0xc0,0xac,0xd9,0x8f,0xd9,0xf4,0xfd,0xfe,0xfe,0xf1, +0xca,0x31,0xbe,0x15,0x0f,0x7f,0x01,0x56,0x83,0x68,0xf5,0xa1, +0xe1,0x01,0x34,0xb0,0x06,0x83,0xed,0xa8,0x6d,0x0b,0x3f,0x72, +0x41,0x2e,0xce,0xce,0xfa,0x9e,0xf6,0x55,0xae,0x8d,0x2e,0x3d, +0xf6,0x5e,0x42,0x93,0x6b,0x8b,0x6f,0x67,0xa0,0x7d,0xa4,0x45, +0x8c,0x5e,0x7c,0x91,0x99,0xf0,0x38,0xf7,0x6e,0xf9,0x78,0xcd, +0x55,0xff,0xbb,0x61,0x5f,0x45,0x96,0x8c,0x0a,0x47,0x0a,0x4c, +0xf3,0x6d,0x4b,0x78,0xa5,0x0e,0x1c,0x95,0x57,0x40,0x94,0xb0, +0x98,0xc3,0x89,0xe5,0x74,0x02,0xde,0x33,0xe1,0x70,0xef,0x22, +0x7a,0xba,0x30,0xb6,0x22,0xb6,0xd0,0xf2,0xb8,0x50,0x14,0x96, +0x15,0x9e,0x11,0xc5,0xc3,0x9d,0x2a,0xea,0x78,0xd6,0x35,0xc9, +0x35,0x49,0x76,0xa1,0xf4,0x02,0xf3,0x2c,0xe1,0x64,0x78,0x74, +0x60,0x44,0xd8,0xae,0x33,0x3b,0x92,0x96,0x26,0xc9,0x8f,0x89, +0x3b,0x9c,0x0e,0x6f,0xe4,0xc0,0x96,0x12,0x1e,0x8b,0x24,0x2b, +0x3a,0x24,0x76,0x5b,0xdd,0x14,0xe7,0x2a,0x77,0x48,0x73,0x39, +0x51,0x64,0x12,0x4d,0xea,0xee,0x13,0xbb,0x89,0xd4,0xbd,0x8e, +0x8a,0xdd,0x76,0x52,0x37,0xb1,0x9f,0x22,0x76,0x5b,0xb0,0xd7, +0xe9,0xcf,0x4d,0x14,0x0c,0x8b,0xdc,0x48,0x79,0x79,0x79,0x6d, +0x41,0x0d,0xdf,0x8c,0xa9,0x5c,0x46,0x6e,0x7a,0x6e,0x6a,0x8e, +0x4d,0x81,0xe0,0xad,0xbb,0x7f,0xcb,0x7a,0x93,0x5a,0x27,0x21, +0x3b,0x2d,0x3b,0x3d,0x2b,0x9d,0xc7,0x75,0x1c,0x06,0xf8,0xe1, +0xc2,0xfd,0x38,0x57,0xbd,0xcf,0xf2,0x01,0xcc,0xaa,0x81,0x05, +0x19,0xb0,0x5e,0x55,0x3c,0xd9,0x23,0xc5,0x93,0x8b,0x15,0xef, +0x55,0x54,0xa8,0xc1,0x26,0xd0,0xe0,0x8e,0x3b,0x3b,0x87,0x1e, +0x8a,0x2d,0xb1,0x17,0x7e,0x2a,0x1a,0xeb,0x2d,0xbc,0xce,0xdf, +0xb7,0x20,0xde,0x05,0x91,0x5d,0xea,0xf0,0x0a,0x69,0xca,0xcb, +0xaa,0xd7,0x68,0xe2,0x6c,0x73,0x54,0xac,0xb7,0x72,0x51,0xa7, +0x52,0x4b,0x34,0xda,0x40,0x8f,0xfb,0x0f,0x9e,0x59,0x42,0x39, +0x36,0x71,0x9b,0xe1,0x55,0x02,0x67,0x86,0xa1,0x14,0x29,0xec, +0x01,0x4a,0xc4,0xe3,0xe7,0x68,0x6c,0x58,0x58,0x50,0x10,0x63, +0xc1,0xfe,0xa4,0xa2,0xac,0xac,0xa2,0xb8,0x82,0xc7,0x72,0x49, +0x4d,0x3e,0x61,0x1f,0x3b,0x41,0xf1,0xd6,0x56,0xda,0x2d,0xbd, +0xe3,0xc8,0x49,0x33,0x51,0x83,0x02,0x45,0x63,0xa4,0x4c,0x64, +0x80,0x31,0x1b,0xcb,0xcd,0xdd,0x1c,0xce,0x9b,0xd2,0x2d,0x6d, +0x76,0xe4,0x06,0xf0,0x3c,0x6d,0x87,0x3b,0xae,0x93,0x60,0xc5, +0x80,0xd3,0x8a,0x13,0xc9,0x57,0x14,0xef,0xdc,0x81,0x3b,0x8c, +0x80,0xdf,0x52,0x6c,0xa4,0x83,0xa0,0x6d,0x3d,0x31,0x08,0x2b, +0x86,0x71,0xc5,0x6d,0x93,0x63,0xa8,0x2d,0xff,0x59,0x68,0x09, +0x0b,0xad,0x39,0x69,0x9a,0xd2,0xfd,0x7f,0xd1,0x59,0xe2,0xdf, +0x78,0x81,0x8e,0x82,0x20,0x0d,0xa1,0x30,0x16,0x20,0x1a,0x93, +0x0b,0xfd,0x54,0x32,0xbc,0x25,0x1a,0x12,0xe5,0x89,0x23,0xff, +0x25,0xc0,0x14,0x3b,0x70,0x2f,0xed,0x6e,0xe8,0x6d,0x6f,0xed, +0x75,0x6f,0x11,0xbc,0xec,0x9d,0x3c,0xbc,0x82,0x23,0x7a,0x63, +0x07,0x13,0x46,0x78,0xb0,0x1d,0x94,0xfa,0xad,0xc1,0x88,0x98, +0xb9,0x1e,0xf2,0x5d,0x1f,0x5c,0x64,0x2b,0xdc,0x29,0xb9,0x55, +0x3d,0xda,0x90,0x1d,0x9f,0x79,0x22,0x33,0x56,0xdf,0x7e,0x93, +0xe3,0xe6,0x80,0x62,0x5b,0xe1,0xc7,0x86,0x6f,0x06,0xae,0xf5, +0x66,0x44,0x65,0x1c,0x4f,0x8d,0xda,0x73,0x0c,0x5f,0x33,0xc4, +0x37,0xdc,0x4a,0x6d,0x05,0x98,0xd6,0x0e,0xaf,0xdd,0xba,0x77, +0x85,0xbf,0x1c,0x7d,0x29,0x3a,0x46,0xcd,0x38,0x36,0xcc,0x5c, +0xfd,0x20,0xc9,0xb7,0x50,0xb9,0x47,0x3e,0xad,0xed,0xf8,0xfe, +0x89,0xd5,0x3f,0x86,0xf7,0x34,0xf2,0xb2,0xf3,0xb2,0xb3,0xb3, +0xf9,0x0e,0x52,0x8b,0x9b,0x3f,0x62,0xd2,0xfb,0xdd,0xa5,0xf5, +0x03,0x82,0xf6,0xa0,0xed,0x98,0xe7,0x35,0x5e,0xb9,0x03,0xc8, +0xbf,0x45,0xde,0xa7,0xf0,0x15,0xad,0x2b,0xac,0x2f,0x91,0xd3, +0x8d,0x8e,0xc2,0xab,0x0d,0x1f,0xf7,0xc2,0x68,0x0b,0x8e,0xf6, +0xc0,0x48,0x0b,0x8e,0x74,0xc1,0x87,0x6d,0x78,0x97,0x4b,0xcf, +0x4d,0xcf,0x4b,0xcd,0x71,0x4b,0x17,0xe0,0x2b,0xa8,0x94,0x5e, +0xc7,0xca,0x1c,0x72,0x36,0xf6,0x74,0xd4,0xc9,0x18,0x1e,0x4f, +0x91,0x9c,0xfc,0xec,0x82,0xac,0x02,0x1e,0x16,0x43,0x25,0x13, +0x2c,0x95,0x4c,0x4f,0x3a,0xe9,0x6a,0x19,0x6f,0xb6,0xe2,0xe1, +0x6f,0x71,0x0a,0xc5,0xc4,0x0e,0x48,0x24,0xa2,0x96,0x0b,0xc5, +0xd4,0x0e,0x26,0x60,0x94,0x3b,0x71,0x1a,0xed,0x82,0x44,0x27, +0x0e,0x74,0xba,0x28,0xa4,0x3a,0x61,0x2a,0x41,0x1d,0x2f,0xea, +0x80,0x89,0x3d,0x9c,0xb8,0x67,0x0e,0xa4,0x3a,0xb0,0x9a,0x23, +0xcc,0x76,0x58,0x5f,0x4f,0x92,0x2f,0x5f,0x4e,0x4e,0x4e,0xe6, +0xa1,0x84,0x60,0x3d,0x43,0xed,0x1e,0xa8,0x77,0xe0,0xb0,0x7e, +0x07,0xed,0x85,0x7a,0x7b,0x4e,0x3c,0x84,0xcd,0x2c,0xf5,0xa4, +0xe3,0xab,0xb9,0x6b,0x0b,0x7e,0xac,0x7f,0xd4,0x7e,0xb5,0x8f, +0xef,0x50,0x26,0xd8,0x2b,0xd4,0x39,0x33,0xef,0x7d,0xbe,0x4b, +0x83,0x97,0x97,0xef,0xae,0x3d,0x5a,0xef,0xe9,0x2e,0x8c,0x86, +0x5c,0x0d,0xbd,0x1b,0xbe,0xf2,0x38,0x72,0x71,0xf8,0xee,0x99, +0x6c,0x0b,0x16,0x36,0x99,0xb0,0xac,0x04,0xde,0xaa,0x03,0x12, +0x08,0xf3,0x23,0x60,0x4f,0x3c,0xe3,0xb1,0x6d,0x0a,0x7b,0x8a, +0x59,0xe2,0x20,0x64,0xe1,0x7d,0x2e,0x39,0x3b,0x25,0x27,0x39, +0x87,0x17,0x35,0xba,0xa4,0x77,0x48,0x4a,0x61,0x72,0x41,0x72, +0xa1,0x71,0xaa,0x70,0x2e,0x2a,0x29,0xf2,0x6c,0x24,0x2f,0xed, +0x70,0x12,0x57,0x93,0xa4,0xb8,0xc4,0xb8,0xc4,0x78,0x1e,0xbe, +0x91,0xde,0xa2,0xc9,0x79,0x97,0xd9,0x2f,0x0f,0xaf,0x75,0x28, +0xa3,0xa1,0x52,0x1f,0xef,0x80,0x19,0x39,0x17,0x7b,0x2e,0x36, +0x29,0x96,0xc7,0xf3,0x6e,0x10,0x47,0xce,0xc5,0x27,0xb1,0x5f, +0x7e,0x1d,0x9e,0x86,0x3a,0x38,0x2d,0xdf,0xe9,0xdf,0xac,0x02, +0xeb,0xdb,0x70,0x09,0xb9,0x9c,0x27,0x5f,0xcc,0x8b,0x8b,0xff, +0x7d,0x41,0x98,0x1b,0x78,0xff,0xd7,0x05,0xbb,0xd9,0x05,0xc5, +0xec,0x82,0x79,0x24,0x39,0xfb,0x72,0x76,0x72,0x36,0x0f,0x9b, +0xda,0x88,0xf4,0x1b,0x4c,0xd0,0x16,0x51,0xcb,0x83,0xf3,0x9e, +0xe2,0x26,0x69,0xb5,0x71,0x87,0xa6,0x88,0x5a,0xce,0x92,0x16, +0x01,0x2b,0x79,0x9a,0xe1,0x9b,0x91,0x1a,0xf8,0xab,0x0b,0xff, +0x82,0x02,0x4e,0xca,0xbd,0x40,0xf1,0x09,0xfb,0xff,0x7f,0x74, +0xe1,0x7f,0x40,0x3e,0xf7,0xd4,0x80,0xd6,0x83,0x8e,0x2f,0x07, +0x4d,0x73,0xea,0x61,0xbf,0x2f,0x27,0x59,0xfb,0x50,0x6f,0xd4, +0x69,0xe4,0x14,0x33,0xe6,0x78,0xe3,0xfe,0x46,0x4e,0x72,0xd3, +0xa6,0xa0,0xe3,0x81,0x3a,0x44,0x74,0x6b,0xa1,0xb0,0xdf,0x03, +0xf7,0xb3,0x64,0xb1,0x5d,0x31,0x4c,0xa5,0x0f,0x98,0x3c,0x97, +0xde,0x88,0x46,0x83,0x23,0xb8,0x5a,0xbd,0xdb,0x4b,0xe5,0x63, +0xd8,0x57,0x04,0x5b,0xc4,0x8d,0x6a,0x62,0x21,0x51,0x3e,0x85, +0x15,0x54,0x79,0x7b,0xfc,0x2e,0xac,0x57,0x9c,0x67,0xf4,0xcc, +0x93,0x6a,0x4a,0x9e,0xf7,0x39,0x16,0x09,0x26,0x74,0x09,0xec, +0x7f,0x46,0xc4,0x60,0x7c,0x83,0x5a,0xe3,0x8a,0x41,0x82,0x69, +0xa0,0x4a,0x5d,0x61,0x5b,0x3b,0x07,0xf3,0xe7,0xb8,0xc2,0x9e, +0x76,0x0e,0x27,0x91,0xa7,0xed,0xb8,0x4d,0x7e,0x0c,0xc8,0x9c, +0x76,0xdc,0xe3,0xca,0x49,0x45,0x0c,0xd1,0x96,0xc0,0xa1,0x67, +0x04,0xbe,0x67,0xda,0x20,0x33,0x2f,0x23,0x2f,0x8d,0x59,0xf7, +0x4b,0x98,0x23,0x45,0xe1,0x9c,0xdf,0x88,0xbf,0x85,0x85,0x85, +0x89,0x47,0xa5,0x9b,0x90,0x9f,0x95,0x97,0x9d,0x9f,0xc3,0x33, +0xfd,0x33,0xcf,0x94,0x3b,0x76,0x56,0x33,0xc9,0xf0,0x7c,0xaa, +0x83,0x00,0x2a,0x69,0xb0,0x2e,0xf7,0xc7,0xbc,0xcb,0x67,0x93, +0x13,0x2f,0x27,0xf2,0x01,0x24,0xd7,0x51,0xe5,0x06,0x19,0xae, +0xa8,0x98,0x48,0xd3,0xc8,0xb8,0x9d,0xfa,0x35,0xbc,0xa3,0x86, +0xcf,0x60,0x3e,0x35,0x5f,0xc5,0x54,0x50,0xe2,0x1c,0xf3,0x15, +0xec,0xe5,0xfc,0x1c,0xf3,0x65,0x0c,0xb8,0x34,0x98,0x9b,0x3d, +0x43,0xcb,0x25,0x0c,0xb7,0x40,0x83,0x3a,0xe1,0x34,0x2e,0x2f, +0x97,0xfd,0xb0,0x0f,0xff,0x01,0xa3,0x68,0x92,0xcf,0xe9,0x93, +0xa1,0xe7,0xa3,0xea,0x43,0x9a,0x22,0x2a,0xf9,0x5a,0x16,0x43, +0x4b,0xbb,0xe0,0x38,0xd9,0x96,0xb8,0xe5,0xb4,0xa9,0x3a,0xfe, +0x03,0xcb,0xe9,0xb7,0x06,0x1b,0x09,0xa8,0xcf,0xb9,0xf6,0x9b, +0x01,0xb7,0xc2,0x9d,0x7e,0x47,0x8e,0x9f,0x4c,0x3f,0x95,0x9e, +0x90,0x9e,0xa0,0x1a,0x90,0xe4,0x93,0xe4,0x75,0x8e,0xd1,0xc4, +0x77,0x15,0x1f,0x52,0xdf,0x45,0xfb,0x56,0xe1,0x9b,0x1b,0x72, +0xc3,0x05,0x7c,0x93,0x24,0xe4,0xc5,0xe7,0xc7,0xe5,0x5d,0x1d, +0x1f,0xbe,0x53,0x77,0x9f,0xef,0xc1,0x5f,0xcd,0xa0,0x96,0x0b, +0xb1,0x71,0xb7,0xb3,0x73,0xf0,0x6b,0xf4,0x6d,0x08,0xa8,0xf2, +0xf0,0x10,0x7a,0x9c,0x07,0x2c,0xdb,0xac,0x78,0xb4,0x36,0x81, +0xed,0x24,0x6c,0xb5,0xc5,0xa2,0xc5,0x38,0xa5,0xc1,0x4a,0xf8, +0x03,0x5e,0xef,0xf9,0x35,0x0b,0xa6,0xf0,0x69,0xd2,0x2e,0x06, +0x98,0xf9,0x46,0x2a,0x7f,0x90,0xfe,0xa2,0xa2,0x41,0x0d,0xd1, +0xf6,0x67,0x2e,0xc1,0x28,0xf8,0x50,0x90,0xe5,0x60,0xb8,0x50, +0x7f,0xab,0xfa,0x8b,0xac,0x3b,0x7c,0x1b,0x57,0x10,0x0c,0x6f, +0x7c,0xff,0xd9,0x4f,0x15,0xf0,0x96,0xaa,0xfc,0xad,0x04,0xee, +0x9b,0xd5,0x30,0x77,0x49,0xd3,0xb8,0x80,0xf4,0xf7,0x1d,0xdf, +0x7b,0xfe,0xcd,0xe2,0x5f,0xe2,0x29,0x8c,0x4e,0xe2,0x28,0x81, +0x76,0x4c,0xa0,0xce,0xab,0x74,0x50,0xd0,0x5b,0x3e,0xea,0x23, +0xdc,0x07,0xfe,0x7d,0x58,0xda,0xcb,0x3e,0xa9,0x5f,0xda,0x6b, +0xc4,0x4d,0xff,0x5c,0x7c,0x40,0x21,0x31,0x0d,0x72,0xd3,0x21, +0xb0,0xaa,0x3c,0xb8,0x3c,0xb8,0x38,0xa4,0xa7,0x5d,0xd0,0x7d, +0xb4,0xf9,0xd3,0x1d,0x77,0x9d,0x3c,0x85,0x16,0xbf,0x56,0xef, +0x16,0x2f,0xf9,0xa9,0xcd,0x1b,0x4f,0xe1,0xee,0xb3,0x03,0x63, +0x83,0x37,0xdb,0xaf,0x1a,0x95,0x0a,0xae,0xfa,0xba,0x7b,0xf4, +0xf4,0x71,0xd6,0x39,0x41,0xa1,0x90,0xb6,0xd0,0x6b,0xd2,0xae, +0x4c,0x0e,0x66,0xc3,0x7f,0x5c,0x51,0xaa,0x70,0xf2,0x77,0x82, +0xb2,0xcb,0x8c,0x0a,0x05,0xcf,0x23,0xba,0xfb,0xf7,0x19,0xf6, +0xba,0x08,0xcd,0x35,0xcd,0x4d,0x75,0x2d,0x3c,0x24,0xe2,0x6c, +0x72,0x52,0x5a,0x69,0x20,0xce,0xe7,0x3c,0x97,0xe0,0xac,0x63, +0x78,0x4e,0xbb,0x5c,0x4f,0x80,0xe1,0x6f,0xff,0xb8,0x53,0x0e, +0xef,0xf2,0xa9,0xa4,0x12,0xdf,0x85,0xb7,0xb4,0xa1,0x7f,0x63, +0xd9,0x0d,0x01,0xcf,0xdc,0xc1,0x05,0xb7,0x9d,0x9f,0x31,0x43, +0x1f,0x16,0x55,0x29,0x18,0xa5,0x72,0x65,0xeb,0x9e,0x18,0xc2, +0x82,0x43,0xe5,0x63,0x4c,0x4d,0x5f,0xdb,0x36,0x6c,0xf7,0x01, +0x0f,0x91,0x23,0x98,0xf5,0x0f,0xf9,0x32,0xfd,0x93,0xac,0x7b, +0xb9,0xc1,0x83,0x02,0x6a,0x04,0xa2,0x71,0x2c,0x1e,0xbb,0x90, +0x6d,0x2e,0x7c,0x78,0xf1,0xf1,0xe5,0x47,0xa9,0xfc,0x52,0x7c, +0xcf,0x02,0x02,0x38,0xc7,0xc3,0xfb,0xcd,0xf1,0x75,0x33,0xbe, +0x01,0xdf,0x04,0x6f,0x78,0xfd,0x0a,0x3a,0x71,0x99,0x6d,0x69, +0xed,0xa9,0xed,0xe6,0x99,0x42,0x0c,0x4e,0x09,0x5c,0x61,0x7b, +0xb0,0xd7,0x5b,0x28,0x6f,0x2e,0xee,0xc9,0x1f,0xe4,0x47,0xd0, +0x1b,0x57,0x1b,0xc2,0x2a,0x72,0x16,0x97,0x79,0x23,0x45,0x15, +0x9c,0xd7,0xe1,0x24,0x7c,0xf5,0xac,0xe3,0xa7,0xb2,0xdf,0xf9, +0xe4,0xcb,0x17,0x2e,0x25,0xa9,0xc3,0x34,0x74,0xef,0x93,0xdf, +0xcc,0xe3,0x4c,0x76,0xc2,0xe5,0xb8,0x04,0x99,0xc4,0x5c,0xca, +0xe8,0x48,0xee,0xb9,0xd8,0xaa,0x0a,0x6f,0x92,0x1c,0x1f,0xa0, +0x77,0xbe,0xbb,0x55,0xf6,0x93,0x6a,0x2a,0x1e,0x25,0x11,0xa9, +0xc7,0x3d,0xc3,0x5d,0x83,0x5c,0x55,0x51,0xd3,0x1c,0x34,0x48, +0xb0,0xa7,0xbf,0x97,0x8f,0xf7,0x9d,0xb0,0x1b,0xa1,0x37,0x42, +0x8e,0x79,0xed,0x0a,0x5e,0x1e,0x55,0x66,0x2a,0x00,0x5f,0xfe, +0x73,0xf3,0x47,0x03,0x9f,0x78,0x7f,0xe4,0xf9,0x91,0x5b,0xdd, +0xb0,0x70,0xac,0xe1,0x50,0xc3,0xa1,0xda,0xf1,0xde,0xae,0xb1, +0xda,0x9b,0x3c,0xa8,0x8c,0xe2,0x73,0x52,0xdc,0x58,0xd8,0x98, +0x5f,0xcf,0x33,0xe6,0xb3,0x8e,0x06,0x98,0xba,0xda,0x9b,0xbb, +0x99,0x95,0x9a,0x17,0xdb,0xe5,0x97,0x55,0x96,0x56,0x17,0xd7, +0xb0,0xbc,0xe7,0xa8,0xf0,0xa2,0xa1,0xb8,0xc9,0x12,0xdf,0x5d, +0x87,0xaf,0xd7,0xeb,0x0b,0x95,0xb5,0x25,0x0d,0x45,0x4d,0xbc, +0x74,0xe8,0xea,0x63,0x70,0x16,0x03,0xd1,0x96,0xab,0xfd,0xa8, +0xf4,0xe3,0xdc,0x6f,0x79,0xd8,0x39,0x29,0xbd,0x6e,0x4c,0x14, +0x5b,0xce,0x52,0x70,0xbe,0x22,0x05,0x18,0x81,0x93,0x72,0x0f, +0xfa,0x18,0x8a,0xe7,0xae,0x62,0x30,0x91,0xda,0xca,0x28,0x03, +0xe0,0x65,0x28,0x71,0xd3,0xc5,0x4a,0x26,0xde,0x5b,0x0a,0x8a, +0x5f,0xdc,0x6e,0x6e,0x95,0xaf,0x82,0x3a,0x66,0x5c,0x50,0x62, +0x7a,0xa5,0x06,0x28,0x39,0x58,0x5f,0x98,0x38,0x8a,0xab,0xa2, +0x55,0xc0,0xc2,0x18,0xed,0xb8,0xe5,0x09,0x69,0xa6,0x3f,0x64, +0xa9,0xa0,0x92,0xd3,0xad,0x88,0x1a,0x57,0xc7,0x77,0xc4,0xe7, +0x74,0x02,0x07,0x4d,0x80,0x70,0x91,0xb8,0xd9,0x09,0xe9,0x81, +0x05,0x35,0x3a,0x42,0x51,0x55,0x5e,0x75,0x6e,0x2d,0x2f,0x2d, +0x1e,0xff,0x08,0x36,0x8a,0xb6,0xb8,0x8a,0xab,0x78,0x54,0xf8, +0x38,0xeb,0x09,0x0b,0xcb,0x0b,0x32,0x61,0xe4,0x08,0x3e,0x35, +0xc1,0x5d,0xb8,0x13,0xd5,0xd5,0x5b,0x6d,0x55,0xe0,0x10,0xac, +0xbc,0x07,0x9a,0x22,0xa7,0x06,0x6f,0xc0,0x6c,0x17,0x0e,0x8f, +0x27,0x62,0x44,0x04,0xee,0x55,0x37,0x3d,0x13,0x17,0x63,0x31, +0xcf,0x80,0x14,0x18,0xa9,0x5c,0x21,0x1f,0xd5,0xd5,0x7c,0x95, +0xa1,0x51,0x02,0xba,0x69,0x4c,0xb6,0x45,0xa9,0xfd,0x24,0x4d, +0xe7,0xa4,0xa5,0x4a,0x7d,0x0a,0xbf,0x3c,0xc3,0x5f,0x58,0x27, +0x32,0xc5,0x00,0x0a,0x4b,0x26,0x71,0x09,0x8c,0x1b,0x2a,0x6f, +0x10,0xff,0xff,0xc3,0xd8,0x5b,0x80,0x67,0x71,0x6d,0x61,0xa3, +0x58,0x66,0x06,0x68,0xa1,0x14,0x36,0x9d,0x04,0xc8,0x87,0xbb, +0x13,0x9c,0xe0,0x10,0x02,0xc4,0xdd,0x20,0x42,0xdc,0x8d,0x08, +0x81,0x38,0x56,0x88,0xbb,0xbb,0xbb,0x87,0xb8,0x12,0x9c,0x42, +0x71,0x38,0x85,0x16,0x28,0x85,0x52,0xea,0x6b,0xd2,0x35,0x39, +0xe7,0xee,0x49,0x68,0xcf,0xb9,0xff,0x7d,0xee,0x7d,0x6e,0x79, +0x9a,0x0c,0xe1,0xfb,0x32,0x7b,0xaf,0xf5,0xbe,0x6b,0xbd,0xef, +0xfe,0x66,0xf6,0x84,0xba,0x84,0xbb,0x85,0x27,0x1f,0xe2,0x7f, +0xc8,0x86,0x71,0x15,0x8f,0x6b,0x43,0xfb,0x78,0x0b,0x1f,0x43, +0x3f,0x83,0x13,0x1c,0x34,0x7a,0x12,0xfb,0xe0,0xb8,0x32,0x19, +0xfc,0xc4,0x3e,0xb8,0x7d,0xeb,0xdb,0xae,0x6f,0x8f,0xd6,0xf1, +0xe6,0xbb,0x0c,0xf7,0x6b,0x68,0x70,0x20,0xaa,0x0f,0xd5,0xd2, +0xb9,0x79,0xdc,0x50,0xfc,0x83,0xa9,0x4b,0x93,0x9e,0xe0,0x71, +0x96,0xd5,0xcb,0x90,0xc3,0x14,0xaa,0xe5,0x07,0xbd,0xe9,0x5c, +0xdf,0x6a,0xc3,0x14,0xf6,0x38,0x2a,0x99,0xe2,0xcc,0x8d,0x38, +0xa6,0xf8,0x10,0x9f,0x53,0x9c,0x5e,0x92,0x56,0xca,0x89,0x3b, +0xfb,0x1e,0xc2,0x01,0xc1,0x1b,0x77,0xb1,0x05,0x8f,0x32,0x1e, +0x27,0xbd,0xe2,0x54,0x87,0xd6,0x11,0x61,0x2c,0x4c,0x16,0xc7, +0x52,0xcd,0xae,0x0c,0x3f,0x11,0xd4,0xc1,0x12,0xe1,0x20,0x94, +0xa0,0x61,0x1f,0x78,0x5e,0x12,0xcf,0xc3,0xba,0x3f,0x70,0x0c, +0x95,0xd9,0x63,0x3e,0xb4,0x2c,0xba,0x01,0xa3,0xa9,0xfa,0xb9, +0xa9,0x7e,0x00,0xa3,0xf1,0x3d,0x83,0x8b,0x02,0x71,0xb7,0x1a, +0x2e,0x50,0x6c,0xb3,0xbc,0x0a,0x2b,0x52,0x41,0xe9,0x22,0x6c, +0x97,0x07,0x5f,0x46,0x8c,0xfc,0x81,0xe4,0x3d,0x4a,0x7f,0x9c, +0xf0,0x92,0x83,0x69,0xbd,0xd8,0x4e,0xe3,0xce,0xf8,0xe0,0x7a, +0x73,0x94,0xdf,0x81,0xa3,0x0b,0x0f,0xf2,0x99,0x85,0xa9,0x85, +0xc9,0x25,0x9c,0xb8,0x9e,0x06,0x7e,0x9d,0xe0,0xca,0xc2,0x49, +0x50,0x22,0x73,0x6e,0xfc,0xc1,0xf4,0xa8,0x92,0x1b,0xb0,0x57, +0x95,0xc5,0xbd,0x47,0x08,0xec,0x55,0xc1,0xbd,0x8c,0xa8,0x2b, +0xda,0x10,0xf8,0xcf,0x6f,0xf8,0x1f,0x56,0x58,0x09,0xcb,0x09, +0x2a,0xde,0x01,0x45,0xa6,0x7d,0x2f,0xb9,0x03,0xf3,0xf6,0xb2, +0xa8,0x7f,0x94,0xec,0x44,0xc5,0xfb,0x2c,0x68,0x4d,0x87,0x79, +0x3b,0x71,0x1e,0x83,0x85,0x68,0x40,0xee,0xe5,0x3c,0x2c,0x6b, +0xad,0xb1,0x6b,0xe0,0x4d,0x6c,0x0f,0x38,0xed,0x3a,0x4e,0x2d, +0x61,0x3d,0xb9,0xe1,0x79,0xcb,0xa9,0xdf,0xa6,0xa8,0x85,0xd7, +0x2a,0xdf,0x5b,0x76,0x28,0x67,0x78,0x29,0xa7,0x91,0x88,0x8b, +0x87,0xf2,0x76,0x69,0x0b,0xf5,0xbd,0x07,0x18,0xd1,0x7c,0xd0, +0x96,0xf4,0x89,0xac,0x16,0xcc,0x64,0xbd,0x70,0x9d,0x21,0xce, +0x5c,0x8b,0x63,0x4b,0x0e,0xf3,0x79,0xc5,0x99,0xa5,0xe9,0x65, +0x23,0xc8,0x35,0x12,0x3c,0x51,0x87,0x2d,0x7a,0x98,0xf5,0x84, +0x22,0x57,0xb8,0x45,0xfb,0x10,0x96,0x80,0x01,0x94,0x30,0x58, +0x22,0xea,0x12,0x30,0xa6,0x41,0x33,0x66,0x87,0x08,0x1e,0x27, +0xc2,0x68,0x50,0x14,0x47,0xb3,0xc2,0x97,0xb0,0x83,0xa0,0x37, +0x7d,0x95,0x37,0xcd,0xbd,0xbc,0x70,0x8f,0x60,0xdc,0x59,0x34, +0x39,0x80,0x9b,0x15,0xdb,0x6c,0xe4,0xee,0xc2,0xe1,0x48,0xfa, +0xa6,0x32,0x05,0xd8,0x26,0x44,0x77,0x88,0x57,0x58,0x74,0xc6, +0xbe,0x91,0xc8,0x51,0x62,0x7c,0xde,0x8b,0xad,0x23,0x91,0xdb, +0xf0,0x4f,0xe4,0xb2,0x0a,0x47,0x20,0xbb,0x69,0x38,0x72,0x9e, +0xd2,0x2d,0xde,0xbb,0x09,0x32,0xa6,0xc0,0x98,0xb6,0x5f,0x02, +0x99,0x69,0xeb,0x25,0xe0,0x2e,0x21,0xd7,0x6d,0xac,0x8b,0xb2, +0x6e,0x43,0x06,0xee,0x8b,0xaa,0x04,0x52,0xc5,0x05,0x98,0x0a, +0xbb,0xd4,0xa8,0x38,0xeb,0xea,0x84,0x18,0x58,0xb6,0x98,0xb5, +0x3c,0x6d,0x79,0xd6,0xee,0x5c,0xb4,0x31,0x7f,0x3f,0xe6,0xc7, +0xa4,0x47,0xa9,0x09,0x26,0x7c,0x6d,0x72,0x68,0xb5,0xdf,0xd5, +0x53,0x95,0xf2,0x96,0x41,0xd1,0x27,0xa3,0xfd,0xa2,0xfc,0xe4, +0x3d,0x4f,0xbb,0x9d,0x71,0x3b,0xc3,0xbd,0x01,0x25,0x34,0xc6, +0x49,0x6c,0x8a,0xa9,0x1c,0x95,0xdc,0xd5,0xc9,0x69,0xd5,0x32, +0x08,0x46,0xfb,0x2b,0xac,0x31,0xac,0x24,0x38,0xf9,0x3a,0x4c, +0x66,0x5a,0x0f,0x92,0xeb,0x30,0xed,0xa0,0xb4,0xf3,0xac,0x1c, +0xc5,0xd2,0x6f,0x14,0x4a,0x50,0x0f,0x4f,0x08,0x4c,0xde,0x2f, +0xad,0xfa,0xed,0xbc,0x4d,0x60,0xda,0x7e,0x5a,0x71,0x27,0x0d, +0x1a,0x0a,0x21,0x04,0x56,0x80,0x7d,0x0f,0xda,0xc3,0x4c,0x35, +0x9c,0x89,0xa6,0x3a,0x60,0x8a,0x2b,0xd0,0x4f,0x47,0xc8,0xeb, +0x61,0xc5,0x62,0xb8,0x40,0xfa,0xf0,0x77,0x2d,0x20,0x12,0x76, +0x8d,0x71,0xc6,0x86,0x8f,0xd8,0xcd,0x28,0x49,0xa3,0x29,0xd8, +0xd5,0xf7,0x08,0xd4,0x69,0x0a,0x54,0xd8,0xc2,0x47,0x99,0x12, +0x76,0x55,0x86,0xd6,0x10,0x61,0x0c,0x10,0x71,0x0c,0x2b,0xcc, +0x85,0x4f,0x09,0x78,0xf6,0xa0,0x27,0xcc,0x56,0xc3,0xd9,0x68, +0xa3,0x03,0x54,0x70,0xe0,0x29,0x6d,0xa1,0xa6,0x17,0xcf,0xd3, +0x53,0x6b,0x0d,0x3a,0x10,0x60,0x34,0x91,0x41,0x37,0x1d,0x21, +0x8d,0x9e,0xac,0x3a,0x95,0x9e,0xeb,0x9d,0x16,0x4c,0xa3,0xe7, +0x5a,0x6f,0x8c,0xb3,0x36,0xe0,0xd8,0xe2,0x83,0x7c,0xee,0xc7, +0x73,0x1d,0xa2,0x3c,0x51,0x13,0x82,0x47,0xce,0xf5,0x24,0xe9, +0x35,0x47,0xdb,0xd7,0x53,0x12,0x19,0x17,0x75,0x21,0x3a,0xf4, +0x7b,0x1c,0xc5,0x97,0x95,0x97,0x59,0xd7,0xd6,0x15,0x56,0xa7, +0x97,0xcb,0x47,0xc4,0x46,0x5d,0x88,0x09,0x85,0xd1,0x38,0x95, +0xaf,0xa9,0x5f,0x00,0x13,0x02,0x93,0x83,0xbe,0x0c,0x0a,0x92, +0x76,0x8c,0x8e,0x90,0x4b,0xae,0x8c,0x6d,0x18,0x50,0x68,0xd4, +0x3a,0xca,0x2e,0xf3,0x37,0x50,0xde,0xa4,0xa8,0xfc,0x7d,0x60, +0x4a,0xe0,0xf9,0xc0,0x60,0xfa,0xaf,0x67,0x23,0xe4,0x92,0xca, +0x62,0x9b,0xfb,0x15,0x5a,0x34,0x4d,0xd9,0x39,0x3e,0xfa,0xcb, +0x56,0x28,0x56,0x99,0xb6,0x36,0x55,0xb4,0x66,0x56,0xca,0xe3, +0x9f,0x38,0x48,0x84,0xc9,0x30,0x55,0x9c,0xcc,0xc2,0x4b,0xf0, +0x27,0xab,0x30,0x58,0x87,0x86,0xdd,0xb5,0x1f,0x5c,0x21,0xa6, +0x07,0x63,0xbe,0xa7,0x70,0xea,0x17,0xbe,0x23,0xaf,0x40,0x67, +0x4d,0xdf,0x2b,0x98,0xdb,0x8d,0x73,0x7f,0xd2,0x5a,0x8c,0x3a, +0xd2,0x97,0x4f,0x74,0xe1,0x93,0x35,0x2c,0x7e,0x4e,0xe9,0xd2, +0x8b,0x77,0x3f,0x16,0x02,0x33,0xa9,0x10,0x8c,0xa6,0xc1,0xcc, +0x2e,0x4a,0x1f,0x09,0x66,0xef,0x43,0xd8,0x4f,0x0b,0xc1,0x0e, +0x5a,0x08,0x32,0x1f,0x27,0x52,0xc0,0x75,0x51,0x81,0x6c,0x85, +0x13,0x35,0xd7,0xec,0xda,0x5d,0xa0,0xcb,0x97,0x96,0xe6,0x15, +0x67,0x51,0xa8,0x2d,0xee,0x13,0x02,0xd8,0x9c,0xfa,0x9c,0x96, +0x8c,0x2e,0x0e,0x76,0x89,0x3d,0xc4,0x3a,0x34,0x8e,0x42,0xc0, +0x8e,0xfd,0xe6,0xd2,0xb3,0xde,0xeb,0x57,0x6d,0x9b,0x79,0x4d, +0x2d,0x55,0x93,0x7d,0x96,0x1c,0x04,0x69,0x88,0x59,0xec,0xde, +0x5c,0xaf,0xbb,0x8a,0x30,0x4d,0xda,0x60,0xa5,0x45,0x06,0x4b, +0x86,0xef,0x0b,0xda,0xc5,0x0e,0xd9,0xdf,0x93,0x8a,0xcc,0x24, +0xa9,0xc8,0x40,0x2f,0x3c,0x27,0x37,0x9e,0x15,0x0c,0xc4,0xc1, +0x68,0x4e,0x50,0x64,0xac,0x2d,0x4d,0xac,0x0f,0xda,0x6b,0x15, +0x18,0x96,0x99,0xd4,0x1d,0xb3,0xe3,0xeb,0xac,0x1b,0x9d,0x5b, +0xdd,0xb4,0xbc,0x54,0xbc,0x37,0xfb,0x67,0x1a,0xf1,0x3f,0x65, +0x3f,0x2b,0xf8,0xaa,0xfc,0x81,0xc3,0x4b,0xcf,0x3f,0xbc,0xb2, +0xda,0xf8,0xd5,0x19,0x3b,0x33,0x0f,0xe6,0xde,0xac,0xeb,0x68, +0xad,0xeb,0xe3,0x2a,0xd0,0xf6,0x2d,0x58,0xb0,0xc1,0xc7,0x83, +0x7c,0x7d,0x3c,0xbb,0x3d,0xf8,0x9c,0xa2,0xf4,0xd2,0xa4,0x6a, +0xae,0x1e,0xf3,0xaf,0xaa,0x1f,0xc6,0x0b,0x2c,0x9e,0x0f,0xd7, +0x5d,0xb7,0x44,0xb1,0x4b,0x98,0x48,0xf4,0x4a,0xf7,0x17,0x1f, +0xce,0x74,0x33,0xe1,0x07,0x7c,0x6e,0xba,0xf4,0x39,0x72,0x70, +0x8b,0xf2,0x52,0x9b,0xb9,0x58,0xf8,0x65,0x69,0x85,0x02,0x75, +0x4d,0xf8,0x74,0x2e,0x51,0xaf,0x54,0x29,0x3c,0x98,0xed,0x6a, +0xc2,0xdf,0xf0,0x1e,0xf0,0xb8,0x61,0xcd,0xe5,0x7b,0x12,0x2d, +0xed,0x2d,0xea,0x3b,0xad,0x4b,0x8d,0xf8,0x67,0xcd,0xcf,0xae, +0xb6,0xf7,0x72,0x83,0x0a,0x18,0x4f,0xba,0xfe,0x3d,0x4d,0x0f, +0x1a,0xd8,0x03,0xca,0x2b,0x0e,0xe0,0x74,0x9d,0x12,0x03,0xbe, +0x3f,0xaf,0xa7,0xa4,0xad,0x92,0xc3,0x6d,0x57,0x6b,0x04,0xdf, +0x63,0x57,0xe1,0xa2,0x98,0xc0,0xe6,0xe7,0xe7,0x16,0x64,0x16, +0x70,0xf3,0x31,0x98,0xfc,0x26,0xf8,0xce,0xa3,0xe9,0x9a,0x22, +0x94,0x10,0xec,0xf6,0x43,0x5e,0x9b,0xf6,0x93,0x46,0xab,0x66, +0x18,0x95,0xf3,0x13,0x75,0x0c,0xf2,0xa0,0x48,0x8b,0x16,0xc3, +0xa4,0xa9,0xc9,0x7d,0xcf,0xb4,0x24,0x64,0xb5,0xc9,0x06,0xeb, +0xa4,0x0b,0x07,0xaf,0x60,0x19,0xc1,0x96,0x50,0x9c,0x6e,0x80, +0xf3,0x14,0x9b,0x8f,0xd5,0xc0,0xe8,0xb4,0xf7,0x31,0xd2,0xcb, +0x17,0xd1,0x97,0x8f,0x67,0x52,0xd5,0xe4,0xde,0x31,0x2d,0x49, +0x23,0x2f,0x8f,0x62,0xc5,0x6c,0xbc,0x21,0x55,0x8e,0x27,0x52, +0xe5,0x18,0xdb,0x8b,0xa5,0xda,0x30,0x8e,0xf1,0x95,0x2a,0x87, +0xc2,0x2e,0x1c,0x5d,0x40,0x6b,0xee,0xc7,0x66,0xb7,0x99,0x56, +0x8e,0x95,0x82,0x37,0x0b,0x31,0x77,0xa5,0xd5,0x42,0x35,0x69, +0xb5,0xf0,0x2e,0xaa,0x11,0x9c,0x0b,0x87,0x61,0x2e,0x23,0x1a, +0x8b,0xdb,0x48,0x44,0xf7,0x85,0x81,0x3b,0x0a,0xf0,0x05,0x6a, +0x30,0xb0,0x67,0xfa,0x85,0x91,0xbf,0xcd,0xa5,0x7f,0x1b,0x72, +0xa4,0xd3,0x17,0x98,0x0f,0x22,0x43,0x7b,0x85,0xd9,0xa0,0x07, +0xf9,0x5d,0x73,0x2e,0x3a,0xea,0x08,0x67,0x7b,0xd8,0xa1,0x80, +0x58,0x42,0xcb,0xa6,0x11,0xce,0x5c,0x87,0x63,0x4a,0x0e,0xd1, +0xb2,0x99,0x51,0x9a,0x5e,0xce,0x89,0x7b,0xfa,0x1f,0x81,0x1e, +0xe5,0xac,0x06,0x2d,0x9b,0x99,0x52,0xd9,0x94,0x9a,0xdf,0x6b, +0xda,0xf0,0xbd,0xb1,0x8a,0xe4,0xf6,0x66,0xdf,0x48,0xbe,0xac, +0x9d,0xc6,0x9f,0x54,0xf1,0x56,0x71,0x3d,0xc4,0xe1,0x2d,0x6d, +0xa1,0xb8,0x97,0xc1,0x17,0x55,0x24,0xa8,0xcd,0xef,0xb2,0x77, +0x9b,0x9e,0x1f,0x9f,0xad,0x9f,0xae,0x13,0x6f,0xc8,0x89,0x53, +0xa4,0xe7,0x83,0x8d,0x86,0x19,0xb4,0xaa,0x82,0x3d,0x2e,0x27, +0xd7,0xe0,0xf2,0xa1,0xcb,0xc2,0x14,0x71,0x87,0x38,0x85,0xa5, +0xd0,0x7a,0x4c,0xd0,0x0a,0x2f,0x83,0x15,0x1d,0x58,0x3e,0xa8, +0x93,0xde,0x96,0x9e,0xde,0xfa,0x6e,0xcb,0x72,0xde,0x4a,0x57, +0x47,0xc7,0xd0,0x82,0x3b,0x72,0xd9,0xa3,0xbf,0x43,0x21,0x07, +0xf2,0xba,0x70,0x0a,0x9b,0xff,0x43,0xd6,0x9f,0xe9,0xaf,0x39, +0xfc,0xc0,0x44,0xe7,0x45,0xe5,0x46,0x66,0x6a,0x5c,0xe4,0x4f, +0x6e,0x77,0x9d,0xed,0xba,0x8a,0x83,0xbf,0x98,0x30,0xda,0x92, +0x43,0x5d,0x39,0x71,0x86,0x1e,0x7c,0x29,0x6e,0xc7,0x49,0x4c, +0xaa,0xb6,0xdc,0x8f,0x4c,0x7b,0x5a,0x6a,0x87,0x0c,0x32,0xa3, +0xd9,0xc4,0xd5,0x2f,0x56,0xc0,0x9c,0xc5,0x65,0xad,0xfc,0xfe, +0x26,0x8d,0x76,0xb3,0x0e,0x4e,0x9c,0x2e,0x74,0x51,0x9e,0xbd, +0xd1,0x86,0x49,0x1f,0x79,0xb6,0x65,0x84,0x67,0x85,0x69,0xc5, +0x29,0xb4,0xc9,0x29,0x53,0x9e,0xed,0xa2,0x3c,0xdb,0x32,0xdc, +0x70,0x25,0x9e,0x65,0xe1,0x74,0x12,0x9b,0x1f,0x5f,0x1d,0x5f, +0xc3,0x41,0x3d,0x73,0xda,0x2d,0xd4,0x26,0xe4,0x18,0x37,0xc4, +0x89,0xd5,0x44,0x18,0x07,0xe3,0xc5,0x71,0x2c,0xa4,0xc1,0x11, +0x62,0x5f,0xa1,0xd7,0x6c,0x5e,0xec,0x60,0xcd,0xd7,0x3a,0x77, +0x99,0x55,0xd9,0x70,0x55,0xa7,0x89,0xb1,0xd6,0xf6,0xfd,0x07, +0xcc,0x8b,0x8d,0xf8,0x3b,0x6d,0x8f,0xee,0x5c,0xea,0xe7,0x26, +0x09,0x7d,0xc2,0x02,0x92,0x9c,0x9b,0x94,0x97,0x58,0xc0,0x41, +0x2b,0x3c,0x16,0x8d,0xf0,0xf1,0x3b,0xc6,0x7a,0xa3,0xda,0x9e, +0x83,0x26,0xa5,0xc6,0x7c,0x62,0x5c,0x62,0x7c,0x62,0x02,0x87, +0x5d,0xdd,0x03,0x90,0xd9,0x81,0x99,0x60,0x65,0xc7,0xe6,0xe4, +0x64,0xe5,0x51,0x5c,0xc2,0x0f,0xcc,0x79,0x1c,0x73,0x76,0x4e, +0xf0,0x1e,0x4e,0x2b,0x34,0x28,0x50,0x7f,0x86,0x92,0xf4,0xc8, +0xad,0xa7,0xcc,0x37,0xf9,0x45,0xdf,0x27,0xc8,0xe2,0x1f,0x47, +0xc0,0x98,0x0b,0xb0,0x46,0xda,0x36,0xf3,0xed,0xc8,0xe4,0xa6, +0xb1,0xde,0xa8,0x64,0x82,0x33,0x37,0x0c,0x67,0x37,0xe7,0x63, +0x11,0x91,0xd4,0xc4,0x61,0x3a,0xb9,0x7d,0xc3,0x15,0x99,0x4e, +0x4e,0x78,0x15,0x4f,0xd6,0xe3,0xeb,0x17,0x2c,0xbc,0xc6,0x99, +0x64,0x0d,0xbe,0x7e,0xc5,0xe2,0x7d,0xb1,0x4e,0xaa,0xd2,0x53, +0x69,0x95,0x86,0xd7,0x70,0x96,0x04,0xb2,0x5b,0x3d,0x9d,0x56, +0x19,0x29,0xe6,0x1d,0xed,0x28,0xa8,0x2c,0xc8,0xcc,0x97,0x8f, +0x8e,0xbe,0xf8,0x65,0x4c,0x38,0x8c,0xdd,0xc4,0x17,0xd7,0x2d, +0xfe,0x3a,0x28,0x26,0xec,0x42,0x08,0x2d,0x90,0x41,0xb4,0x7c, +0x26,0xe5,0xc6,0x14,0xb5,0x29,0x24,0xd1,0xa4,0x9a,0x08,0xbf, +0x92,0x97,0x70,0xb6,0x1b,0xcf,0xbe,0x54,0xc7,0x93,0xb8,0x47, +0x3c,0x27,0x1c,0x12,0xce,0xb1,0x43,0xc7,0x50,0x8e,0x14,0x3d, +0xca,0x7e,0x92,0x4c,0x2b,0xf4,0x8e,0xe1,0xf6,0x2d,0x63,0x28, +0x0e,0x0d,0x50,0x71,0x35,0x15,0x9e,0x52,0xfb,0xce,0x2a,0x4d, +0xa7,0xc2,0xf3,0x20,0x6d,0xdf,0x66,0x82,0x1f,0x2b,0x58,0xdb, +0x11,0xbc,0xf7,0x03,0xdc,0x63,0x86,0x56,0x8a,0xfe,0x14,0xcc, +0x30,0x97,0xa2,0x59,0xc8,0x82,0x73,0xf4,0xc7,0x6f,0xe9,0x8f, +0xf1,0x1e,0x2e,0x22,0x70,0x6f,0x11,0xd2,0xc3,0x4f,0xa9,0x4f, +0x7c,0x56,0xf4,0xa4,0xa5,0xa7,0xdd,0xba,0x86,0xd7,0x35,0xdb, +0x63,0xb1,0xc5,0x8d,0x03,0xe1,0x0e,0xb9,0xea,0x70,0xd3,0xe2, +0xb2,0x49,0x65,0x0b,0xaf,0xd9,0x78,0xb0,0x51,0xa5,0x84,0x8a, +0x09,0x1d,0x78,0x43,0x56,0x0b,0xa3,0x1e,0x77,0x6c,0xfb,0x46, +0x6b,0x23,0xa6,0x7e,0xa3,0xbd,0x51,0xd9,0xe0,0x91,0x38,0x6a, +0x91,0x5e,0x87,0x38,0xa6,0xb7,0x4f,0xd0,0xe9,0x15,0x75,0x20, +0x92,0x36,0xf3,0x73,0x5b,0x9c,0xcd,0xf6,0x5b,0x96,0x5b,0xf0, +0x4f,0x5a,0xab,0xfb,0x22,0x7f,0xe5,0xbe,0xa6,0x66,0xcd,0x3c, +0xfd,0x44,0x83,0xe2,0x0f,0x4c,0x69,0x5a,0x52,0xa9,0xec,0x6b, +0xd6,0x34,0x51,0x6e,0xb3,0x32,0xeb,0x17,0x1e,0x95,0x21,0xfb, +0x13,0x36,0xb2,0x43,0x29,0x82,0x19,0xf9,0xff,0x25,0xe4,0x60, +0x56,0x2f,0xde,0xd7,0x66,0x06,0x43,0xa8,0xdb,0xc4,0xd4,0x17, +0x90,0xca,0xe0,0xac,0x71,0xeb,0xe9,0x11,0x2b,0x8e,0x13,0x43, +0xff,0xd6,0x78,0x42,0x14,0x20,0x59,0x8d,0xa9,0xaf,0x69,0x45, +0xba,0x2b,0x38,0x13,0xcf,0xaf,0x6c,0xee,0x7a,0xd6,0x14,0x5d, +0x2a,0xbf,0x96,0x73,0xd5,0x20,0x83,0xf7,0xd6,0xb0,0xdb,0x6f, +0x71,0xb8,0x4a,0xbd,0x6a,0x7b,0xfe,0x7e,0x0e,0xb6,0x14,0x92, +0xe8,0x80,0xf6,0x7c,0xcf,0xab,0x76,0x37,0xdc,0x6b,0xe4,0xcb, +0x5a,0x4a,0x2f,0xe7,0x5e,0xd3,0xa7,0x2f,0x52,0xb3,0x53,0x3d, +0x7a,0xb8,0xc8,0xac,0x58,0x27,0xd7,0xc0,0x26,0x86,0x0f,0x74, +0xf1,0x77,0xf6,0x72,0xe4,0x70,0xb3,0x18,0xd6,0xdb,0x29,0x7c, +0xa6,0xdf,0x2b,0x84,0x61,0x1a,0x93,0x94,0x99,0x90,0x11,0x9f, +0xc9,0x41,0xd8,0x05,0xe2,0x76,0xcb,0xf6,0xa6,0x4b,0x7d,0x49, +0x53,0xf9,0xf5,0xdc,0x01,0xfd,0x4c,0xde,0x5b,0xd3,0x66,0xaf, +0x85,0x46,0xdd,0xa1,0xda,0x9d,0xf9,0xaa,0xdc,0x90,0x1a,0x34, +0x4b,0xf3,0xfb,0x2f,0xb4,0xfe,0x67,0x7e,0x07,0xe9,0xfc,0xf6, +0xfc,0xd3,0x9f,0x76,0xf5,0x22,0x2d,0xd9,0xf0,0xc9,0x88,0x60, +0x9d,0x22,0xa9,0x8c,0x83,0x16,0x04,0x5e,0x08,0x9f,0xe1,0x0b, +0x16,0x1f,0xa6,0x90,0xce,0xf2,0xb6,0xda,0xc6,0xfa,0x6a,0xbb, +0x2a,0xdb,0x62,0xfb,0xca,0x3a,0xde,0xa5,0xd4,0xb6,0xf2,0x58, +0x45,0x75,0x5d,0x69,0x7d,0x4e,0xad,0x79,0x3e,0xef,0x6d,0xe3, +0x64,0x65,0x6b,0x6d,0x55,0x6e,0x55,0x6a,0x53,0xe0,0x40,0xad, +0xa0,0x47,0xb5,0x53,0x8d,0xbd,0xb9,0x95,0xa9,0x8d,0x99,0x0b, +0x75,0x76,0xbf,0x51,0x35,0x88,0x32,0xdc,0x00,0x7b,0x35,0x70, +0x2f,0x2e,0x06,0x99,0x26,0xea,0x0a,0x27,0xa5,0x9b,0x28,0x7d, +0x35,0xc8,0x08,0xaf,0x37,0x7d,0xe4,0x75,0x7a,0x09,0xb5,0x3e, +0xe2,0x0e,0xca,0xeb,0xbd,0x74,0x7c,0xca,0xff,0xf0,0x7a,0x5e, +0x2f,0x3e,0xa2,0xe3,0x7b,0x8f,0x36,0x44,0x47,0xa8,0xa5,0x25, +0x31,0x51,0xb4,0x90,0x28,0xfd,0x89,0x44,0xe9,0x45,0x52,0x85, +0xf2,0x14,0xac,0xc0,0x93,0x15,0x17,0x4b,0xd7,0x20,0x7e,0x0a, +0xef,0xf0,0x53,0x56,0x9d,0xbe,0x38,0xa7,0x3a,0xbb,0x39,0xb9, +0x5e,0x4b,0xba,0xd5,0xd2,0x5b,0xdf,0xd5,0x8c,0xc3,0xef,0x74, +0x85,0x9b,0xdd,0x0c,0xbe,0xcb,0x21,0x41,0x75,0xfe,0x8d,0x3e, +0x95,0x3a,0x7e,0x7c,0xba,0x4d,0xaa,0x45,0x82,0x05,0x05,0xda, +0xa7,0x83,0xf5,0x44,0xdc,0x87,0x17,0xf6,0xe3,0xe6,0x5e,0x60, +0x05,0x43,0x64,0xfb,0x60,0xf3,0x41,0xe9,0xde,0x1b,0x6d,0x4a, +0xd4,0xf7,0xda,0x30,0x55,0x22,0xaa,0xe9,0xff,0x10,0xb5,0x58, +0x1a,0xed,0xf6,0x7f,0xa2,0x59,0x38,0x82,0x16,0xe1,0x79,0x0c, +0xd9,0x8b,0xb6,0xf8,0x39,0x8e,0x02,0x23,0x16,0x36,0xa2,0x11, +0x79,0x0a,0xab,0xb7,0xb0,0x43,0xf3,0x44,0xef,0x7f,0xc2,0xeb, +0x84,0x0b,0x09,0xa8,0xd0,0x56,0x34,0x06,0x97,0x49,0x3b,0x58, +0x82,0x3c,0x75,0x1b,0x19,0x75,0x32,0x61,0xbb,0xb8,0x55,0xfc, +0x92,0xa5,0xa4,0xfe,0x0f,0xc1,0x2b,0x2f,0xe1,0x0a,0x83,0x57, +0x28,0xdd,0xe1,0xca,0x1a,0xbc,0x22,0x3d,0xa7,0x4a,0x7a,0x34, +0x76,0x22,0xb0,0xe0,0xd1,0x81,0x1e,0x30,0x1a,0x2e,0x76,0xe2, +0x12,0x26,0xab,0x2c,0xab,0x36,0xb1,0x58,0x37,0x93,0x0f,0xb2, +0x77,0x37,0xf4,0xb6,0xe6,0xf0,0x95,0x3e,0x15,0x34,0xa3,0x47, +0xae,0x8d,0x61,0xf1,0xa4,0x74,0x27,0x9c,0x37,0xca,0xa9,0x21, +0xb7,0x5c,0x89,0x13,0xdc,0x70,0x33,0x9b,0xff,0x31,0xae,0x33, +0x7a,0xf1,0xa6,0x36,0x7c,0xca,0xd0,0x2c,0x1c,0x19,0xae,0xae, +0x45,0x23,0xd5,0x75,0x78,0x5e,0x34,0x0b,0x5b,0x59,0x69,0x8b, +0xa6,0x53,0xc1,0xd5,0x86,0xfc,0x8b,0x5b,0xd7,0xbe,0xab,0xa3, +0x06,0x6e,0x19,0x2a,0xa3,0x8f,0xae,0x10,0xd6,0x8d,0xc7,0x40, +0x19,0xb4,0x3b,0xc5,0xc9,0x4c,0x52,0x55,0x7c,0x65,0x54,0x39, +0x27,0x70,0x0c,0xfe,0x2c,0xac,0x24,0x27,0xca,0xbd,0x2b,0x7d, +0xf3,0x0c,0x3c,0xf8,0x6c,0xe7,0x0c,0xc7,0x14,0x27,0x4e,0x9c, +0x3c,0x24,0x93,0x92,0xc5,0xd1,0x64,0x49,0x9b,0xa7,0xe8,0x93, +0x20,0x1d,0x3f,0x43,0x77,0x33,0xcf,0x5c,0x97,0x3c,0xef,0x54, +0x3b,0x6b,0x3e,0xdb,0xbf,0xcc,0xa5,0xc0,0xf5,0x98,0xae,0x91, +0xa9,0xe6,0xb1,0x4a,0x53,0x1e,0xa6,0xbf,0xfa,0x1e,0x14,0x4a, +0x60,0x37,0x95,0x1b,0x4b,0xd8,0xf8,0xdc,0x98,0xdc,0xe8,0x1c, +0xfd,0x44,0xde,0x63,0xb9,0xf1,0x92,0x5d,0xbb,0xab,0x2c,0xf9, +0x96,0xd6,0xba,0xcb,0xc5,0x57,0x39,0x6a,0x23,0xb3,0x09,0xb8, +0xe2,0xb8,0x6e,0x18,0xf7,0xa4,0x63,0x2b,0x18,0x7e,0xdd,0xb9, +0xfb,0x9d,0xee,0x32,0x5c,0x84,0x17,0xf7,0x30,0x78,0x01,0x62, +0x69,0xd2,0xae,0x6a,0xc3,0x78,0xda,0x3a,0x24,0x5f,0xba,0x1d, +0x47,0xd1,0xc9,0x51,0x7f,0x54,0x20,0xf9,0xa3,0xf9,0xb4,0x57, +0xaf,0xa7,0xc6,0x74,0x25,0x9b,0x3f,0x62,0x4c,0x85,0x9f,0x35, +0x09,0x1a,0xae,0x04,0x43,0x56,0xfc,0x4a,0x7c,0x4c,0x3d,0xe5, +0x1f,0xd4,0x53,0x0e,0xee,0xa5,0xbe,0xb8,0x13,0xb3,0x7e,0xd7, +0x98,0x2b,0x3d,0xac,0xca,0x83,0xb5,0xdf,0xb6,0x6a,0x2b,0x7e, +0x7e,0xa0,0xcc,0x80,0x87,0x59,0x0f,0xbf,0x7f,0x93,0xf2,0x2d, +0x17,0x83,0x15,0xfd,0x50,0x11,0xc3,0xa4,0x29,0xbd,0x5b,0x0b, +0xd3,0x37,0x97,0x77,0xf2,0xf8,0xc9,0x57,0x4b,0x1f,0xd9,0x3d, +0xa2,0xc0,0xbf,0xf5,0x82,0xd4,0x97,0xd4,0x37,0x94,0x54,0xda, +0x56,0xf2,0xae,0x36,0x56,0x56,0xd6,0xae,0x5e,0xb5,0x01,0x0d, +0x21,0xcd,0x1c,0x98,0xb4,0x23,0x0b,0xcc,0x87,0xd6,0x45,0x6f, +0x74,0x57,0xa2,0x8c,0x7e,0xd9,0x68,0xfc,0x0d,0x95,0xcf,0x63, +0x98,0xa8,0xc7,0x17,0xbf,0x87,0x31,0x0a,0x82,0x2a,0xb8,0x8a, +0xa1,0xe8,0xca,0xe0,0xcb,0x93,0xb8,0x78,0x1f,0x2e,0x56,0x6c, +0xb1,0x6e,0x7c,0x95,0xff,0x21,0x09,0x16,0xcb,0xff,0x0b,0x53, +0x19,0xe7,0xd3,0xce,0xa7,0x5d,0xcf,0xc6,0xeb,0xf2,0x2f,0x92, +0xe0,0xf3,0xbc,0x5b,0x99,0x61,0x6d,0xbc,0x4d,0x88,0x51,0x90, +0x7e,0x30,0x07,0xd1,0xcf,0xd9,0x1c,0x9c,0x78,0x9b,0x0a,0x90, +0x59,0xeb,0x4b,0x5b,0x78,0x9d,0x0a,0xf3,0x5a,0xc7,0x06,0x4e, +0xd4,0x1f,0x5c,0x40,0xe3,0xf1,0x35,0x4d,0x36,0xfb,0x7f,0x24, +0xbb,0x48,0x6a,0xa5,0xdb,0x28,0x88,0xb7,0x53,0x10,0x6f,0x1a, +0xa6,0x1c,0x55,0x3a,0x83,0xe3,0x93,0x08,0x4e,0x10,0x27,0xc3, +0x04,0x16,0x6f,0x0c,0xed,0x94,0xf2,0xc7,0xd0,0xfc,0x09,0x61, +0xf0,0x8b,0x74,0x61,0x90,0x8c,0xfa,0xfd,0x49,0x7f,0x29,0x49, +0x3e,0xcf,0x4d,0x0c,0x13,0xd6,0x33,0xf8,0x49,0xb8,0x5a,0xb0, +0xae,0xa2,0x66,0xb0,0xf7,0x09,0xed,0x19,0x6b,0x99,0x64,0x6d, +0xb9,0x47,0xcc,0xd3,0xa6,0xe2,0x6f,0xd3,0x64,0x49,0x77,0xa2, +0xee,0xc0,0x26,0x05,0x34,0xf8,0x09,0x76,0xb7,0xe1,0xee,0xb7, +0xb0,0xbb,0x55,0xfa,0x6a,0xc0,0x88,0xb1,0x61,0xd4,0x26,0x88, +0x5a,0x20,0x4f,0x5d,0xa1,0x64,0x49,0x94,0x86,0x79,0xf5,0xb7, +0x4d,0xd8,0x45,0xe5,0x8d,0x0e,0x95,0x37,0x87,0xd9,0xc2,0x8f, +0xf2,0x26,0x69,0x1d,0x79,0x0b,0x5b,0x96,0xb3,0xb8,0x05,0xe7, +0xff,0x73,0xb4,0x84,0xfc,0x04,0x5b,0x16,0xb3,0x34,0x5a,0xc3, +0xad,0x50,0x5e,0x32,0x2c,0x69,0xed,0x54,0xe4,0xf8,0xf7,0xfa, +0xd7,0x5a,0x06,0xf0,0x29,0x47,0xd3,0xf5,0x12,0x8c,0x38,0x23, +0x43,0x12,0x7a,0xc3,0xff,0x89,0x7f,0xaf,0xd9,0x49,0x3e,0x55, +0x33,0xf9,0x60,0xfc,0x76,0x0e,0x23,0xf6,0x91,0xe2,0x47,0x59, +0xef,0x12,0x7e,0xd1,0x8f,0xe1,0x83,0x56,0x78,0xad,0x74,0xd9, +0xc9,0xc1,0x46,0xb8,0x48,0xe2,0xb7,0x47,0x2b,0x45,0xae,0xeb, +0x8a,0xe7,0xcf,0x3c,0x0c,0xf9,0x3d,0xf8,0x16,0xcd,0xa4,0xc1, +0x60,0x28,0xf9,0x4e,0x73,0x1d,0x7a,0xe9,0x09,0x29,0x5d,0xac, +0xd8,0x18,0x42,0x07,0xfe,0x6a,0xc4,0xdf,0xd0,0x81,0xff,0x6f, +0xe7,0xa6,0xc4,0xd9,0xdd,0x2f,0x75,0x6e,0x5f,0xdc,0xff,0xb7, +0x97,0x1a,0xfc,0x02,0x2f,0x90,0xa5,0xfd,0x94,0x3a,0x8b,0xd8, +0xf4,0xca,0xd4,0xda,0xa4,0x06,0xdd,0x54,0xfe,0xd4,0x91,0x13, +0x47,0xbc,0x8e,0x48,0x1f,0x63,0x2f,0xeb,0xfb,0x91,0x81,0xe9, +0xdf,0x90,0xc0,0xaa,0x13,0x55,0xfe,0x25,0x86,0xde,0x7c,0xba, +0x63,0x8a,0x5d,0xbc,0x2d,0x27,0xcc,0xc6,0x18,0xd2,0x8d,0xa7, +0x25,0x25,0x78,0x4a,0x17,0x66,0xb8,0xb3,0x28,0x3b,0xba,0x1a, +0xa7,0x6f,0x51,0xac,0x30,0xfa,0xe3,0x56,0xcf,0xe3,0x9c,0x9f, +0xe4,0xe1,0x2c,0x73,0xde,0xe8,0x8c,0x5e,0xb8,0x13,0xe7,0x1c, +0x16,0x14,0x66,0x29,0x6d,0xda,0x99,0xaa,0x25,0x07,0x1c,0x73, +0x23,0x3f,0xaf,0x2b,0x51,0x16,0x57,0x1f,0xd5,0x7b,0xe1,0x0f, +0x0e,0xdb,0x98,0x8b,0x99,0x17,0x32,0xb3,0x14,0xf2,0x59,0x71, +0x27,0x06,0x12,0x41,0x0e,0x3e,0x17,0xe5,0xa4,0x75,0xc1,0x33, +0xe4,0x66,0x61,0x7f,0x69,0x27,0x15,0xd8,0x33,0x84,0xaf,0xc1, +0x46,0xf4,0x65,0xf3,0xf3,0x72,0x0a,0xb2,0x0a,0x39,0x21,0xa8, +0x73,0xe8,0xae,0x3e,0x6d,0x74,0x1a,0xdb,0x17,0xec,0x43,0xde, +0x80,0x83,0x1c,0x2b,0xe9,0x11,0xe8,0x86,0x38,0x8a,0xc5,0x5e, +0xdc,0x4d,0x3a,0xc5,0x0d,0xfa,0xb0,0x8a,0x75,0xdf,0xaa,0xbd, +0x73,0x91,0x4a,0x99,0x31,0x5f,0x9a,0x5d,0x94,0x9b,0x97,0xc7, +0xa1,0x6d,0x5f,0x1d,0xa8,0x5a,0xf6,0x41,0x2f,0x7a,0xb0,0xd9, +0x15,0xa9,0x95,0x09,0x55,0xdc,0xe0,0x96,0x4e,0x22,0x1e,0xd2, +0x87,0x45,0x8c,0xcb,0x56,0x8d,0x1d,0x4b,0x0f,0x54,0x98,0xf0, +0x65,0xb9,0x45,0xf9,0xf9,0xf9,0x1c,0x3a,0xd3,0x57,0x1b,0x0e, +0xbf,0xfa,0x34,0x9b,0x53,0x91,0x5e,0x99,0x58,0xc5,0x41,0x00, +0x33,0x14,0x80,0x77,0x09,0xac,0x03,0x55,0x5c,0xc7,0x42,0xc6, +0x74,0x7a,0x64,0x48,0x8f,0x26,0xbd,0x18,0xdc,0x45,0xcc,0x84, +0x79,0xcd,0xa8,0xdc,0x09,0xba,0x97,0x50,0x57,0xba,0x37,0xc5, +0xcc,0x14,0xcc,0xf4,0x59,0x28,0xde,0x47,0xee,0x34,0x67,0xd7, +0x45,0xdc,0xe4,0x40,0xb6,0x87,0xb1,0x48,0x0f,0xbc,0xa4,0x78, +0x9b,0xa9,0x48,0x4b,0xa9,0x90,0xdd,0x60,0x0d,0x93,0xe5,0x36, +0x6a,0xb2,0xfe,0xa7,0x23,0x53,0x64,0x30,0x16,0xc3,0xd9,0xed, +0xc1,0xd6,0xbb,0x4d,0x15,0x93,0xf1,0x09,0x79,0x92,0x76,0x27, +0xf7,0x72,0x69,0xbf,0xcb,0x1d,0x8f,0x6f,0x7d,0x33,0xda,0xf9, +0x3d,0x29,0x9a,0xe9,0x46,0xd9,0x5d,0x95,0xf5,0x8d,0xc5,0xed, +0x5c,0x8d,0xf8,0xb9,0x31,0x5c,0x61,0xdd,0x6c,0xed,0x9c,0xcc, +0xdc,0x8e,0xe4,0x59,0x17,0x5a,0x97,0x5b,0xd9,0xf3,0xc5,0x2e, +0xe5,0xae,0xb5,0x1e,0xc6,0xc7,0xb5,0xfc,0x0e,0x9c,0xe4,0x02, +0x2f,0x13,0x58,0x2d,0xf2,0x2c,0x2e,0x39,0xe7,0xa8,0xbf,0x5b, +0xb1,0xd6,0x51,0xce,0x4f,0x0f,0xca,0x99,0xfd,0xdb,0x96,0x1f, +0x40,0x79,0xed,0x12,0x23,0x7e,0x20,0xaf,0xaf,0xb4,0xa3,0x8a, +0xc3,0xbd,0x57,0xeb,0x05,0x5f,0x8b,0xab,0x10,0xfb,0x5f,0xf3, +0x22,0x14,0x75,0x0d,0xbd,0x65,0x4a,0xea,0x53,0x2a,0x63,0x3a, +0x38,0x98,0xd0,0x44,0x50,0x8e,0xb9,0x90,0xf9,0x65,0x56,0x9e, +0x02,0x35,0x17,0xed,0xd2,0x5a,0x0d,0xa7,0xca,0xe2,0x44,0xe9, +0x6e,0xa7,0xd1,0x14,0x4a,0xa3,0xa9,0x4c,0x53,0x13,0xaa,0xc8, +0x2d,0x08,0x6a,0xc1,0xa0,0xab,0x90,0xd8,0x8a,0x89,0x77,0xb4, +0xf6,0x62,0x94,0x31,0x44,0x1d,0x46,0x7f,0x13,0xf0,0x57,0xc1, +0x18,0x63,0xe1,0xeb,0x56,0x56,0xfc,0x03,0x8e,0x92,0xe1,0xe5, +0x8d,0x89,0x14,0x9c,0x1b,0x8e,0xa2,0xc2,0xb6,0x61,0xa2,0x67, +0x15,0xa4,0x0e,0x13,0x7d,0x2b,0xad,0xea,0x5b,0x28,0xd1,0x95, +0x28,0xd1,0xd3,0x9f,0x24,0xbe,0xe4,0x0e,0x4b,0x3d,0x7f,0x1c, +0x8c,0xa1,0xe4,0x1e,0xfc,0x4c,0x18,0x2d,0x5d,0xbd,0x30,0x51, +0x08,0x60,0xb4,0xe0,0x09,0xd1,0x10,0xc7,0x5f,0x66,0x85,0xf1, +0xb3,0xff,0x7b,0x70,0x48,0x1c,0x7f,0x8d,0xc5,0xf1,0x98,0x40, +0xde,0x65,0xbe,0xac,0xea,0x2c,0xb7,0xa9,0xe3,0xcd,0x5c,0x94, +0xec,0x57,0xf8,0x73,0xc2,0xc4,0x72,0xf2,0xd0,0xfb,0xa1,0xf3, +0x2d,0x87,0xa2,0x56,0x5e,0xb5,0x4c,0xa9,0x6c,0x7f,0x2a,0x15, +0xd1,0xe3,0x28,0x9b,0x60,0x5d,0x04,0x1c,0x89,0x81,0x95,0x09, +0x89,0xfe,0xd2,0x96,0xa1,0x35,0x45,0xbc,0x53,0xb3,0x6d,0x93, +0x4d,0x15,0xd7,0x0f,0xa5,0x78,0xb2,0x1f,0x72,0x5b,0x31,0xf7, +0xbe,0xce,0x4e,0x8c,0x37,0x86,0x78,0x4d,0xf4,0xc0,0x52,0xf0, +0xda,0xc7,0x9c,0x5d,0xb7,0xe6,0xdc,0xa6,0x19,0x78,0x44,0x50, +0x27,0xff,0x1f,0x56,0x0b,0x17,0xb3,0x7f,0x1b,0xb3,0x4f,0x7b, +0xb1,0x5e,0x9b,0x11,0xee,0xa2,0x02,0xd9,0x8f,0xca,0xb7,0x69, +0x83,0xdc,0x4f,0x6e,0xc3,0xfe,0xfd,0xac,0x38,0xff,0x08,0x01, +0xe5,0xdd,0xa8,0xcc,0x80,0xc7,0xf4,0xaf,0x61,0xff,0x6e,0x76, +0x48,0x1d,0x7f,0xff,0x68,0xb5,0x84,0x6f,0xa1,0x9f,0xd8,0x7a, +0x26,0x04,0x25,0x9e,0x4a,0x38,0x25,0xaf,0x7f,0x56,0xfb,0x9c, +0xd6,0x59,0xee,0x36,0xfb,0x3d,0x2a,0x12,0x6d,0x71,0xb3,0x81, +0xb0,0x19,0x17,0xe0,0x52,0x36,0x4d,0x5f,0x8e,0xda,0xee,0xa6, +0xf4,0xb4,0x3a,0x19,0xcc,0x1e,0xbe,0x93,0xae,0x97,0x15,0x27, +0xe1,0x6a,0x52,0xe7,0x58,0x67,0x5b,0x7d,0xac,0xaa,0x9a,0xb7, +0xad,0x36,0xaf,0xb6,0x2c,0x94,0xae,0x2a,0x19,0x9c,0x48,0x9b, +0xbd,0x6f,0x3b,0xfa,0x3e,0xd4,0xda,0x8e,0x0e,0x86,0xe0,0xb0, +0x05,0x4f,0x1b,0x08,0x7d,0x1d,0xac,0x78,0x07,0xe4,0x68,0x62, +0x6e,0x8f,0xac,0x94,0x4a,0x53,0xfa,0xbf,0xaf,0x3b,0x6d,0x19, +0x5e,0x77,0xf2,0xc6,0x15,0xb4,0x39,0x8f,0x4c,0x69,0xb1,0xe8, +0x44,0x7e,0x8c,0x79,0x1f,0x7b,0x3f,0xe9,0x5c,0x1b,0xef,0x72, +0xc6,0x51,0xfa,0x40,0xe2,0xe9,0x8f,0xad,0x4b,0x9f,0xea,0x6d, +0x99,0x63,0xfc,0x87,0x12,0x6b,0x75,0xd6,0xe2,0xac,0xe5,0x39, +0x0e,0xda,0xa9,0x52,0xab,0x68,0xc3,0x89,0xdf,0xfe,0xd9,0x3a, +0xfb,0xa9,0xce,0x96,0x85,0xc6,0x3f,0x2b,0xcd,0x66,0xc4,0xf3, +0x98,0x42,0x27,0xf9,0x1b,0x9d,0xe4,0xe0,0x67,0xdb,0xc8,0x42, +0xc6,0x29,0x24,0xa6,0x44,0x06,0x32,0x30,0xe8,0x14,0x5f,0xea, +0xc3,0x36,0x36,0x68,0xfe,0x7e,0x23,0x24,0xf6,0x39,0xba,0x3c, +0x28,0x35,0x7c,0x7d,0x2f,0x01,0xa6,0x70,0x20,0x87,0xf3,0x99, +0x03,0x99,0xc7,0xa5,0xa5,0xcf,0xa6,0xb4,0xd4,0x46,0xd9,0x8f, +0xd2,0x5d,0x18,0x93,0xfe,0xd2,0x15,0x7c,0x89,0x79,0x91,0x5d, +0xb1,0x53,0x49,0x4d,0x69,0x59,0x45,0x61,0x95,0x75,0x39,0xef, +0x61,0x6f,0x67,0x63,0xe7,0xe2,0x9f,0x19,0x90,0x7d,0x2a,0xbb, +0xb6,0xac,0xa2,0x26,0xbf,0xea,0x58,0x19,0x7f,0xdc,0xd1,0xc9, +0xd6,0xc1,0xe5,0x44,0x45,0x50,0x65,0x58,0x95,0x81,0xb4,0x53, +0x93,0xfc,0xd7,0xb4,0x0d,0x29,0xe3,0x44,0x4e,0xcc,0x8d,0x22, +0x30,0xf1,0xe5,0x63,0x18,0x5d,0x08,0x13,0xb9,0x66,0xd4,0x34, +0x84,0x2f,0xd8,0x20,0x0b,0x1f,0x0b,0x57,0x0b,0xd7,0xa2,0x63, +0x65,0xce,0xd9,0x8e,0xd6,0x7c,0x91,0x77,0x8d,0x5d,0x91,0xb3, +0xb3,0x9d,0xad,0x83,0xb9,0x13,0x57,0x08,0xf1,0x34,0x58,0x3f, +0x68,0xc3,0xe7,0xff,0x2c,0xb5,0x4a,0x0a,0x31,0xe7,0x6f,0x85, +0x48,0xdb,0x95,0xca,0xb0,0x42,0xff,0xa8,0xb9,0xa0,0x0a,0xbf, +0x24,0x90,0xd2,0x81,0x29,0x0c,0xfe,0x2a,0xba,0xfd,0xbd,0x22, +0x02,0x8b,0xe1,0x05,0x41,0x17,0x61,0x2b,0xb8,0xb0,0xe2,0x58, +0xdc,0x46,0x07,0x01,0xd7,0x70,0x22,0x6b,0xbc,0x97,0x04,0x9a, +0x7a,0x6b,0xbb,0x19,0x73,0x78,0x59,0x5f,0xa8,0xed,0xc4,0x5d, +0x4c,0x56,0x5d,0x66,0x47,0x52,0x1d,0x87,0xee,0x0b,0x48,0x48, +0xa5,0x6f,0x87,0x5f,0x99,0xe1,0x71,0x3e,0xcd,0x3e,0xc3,0x30, +0xde,0x8e,0xa6,0x55,0x1c,0xb4,0x24,0xa2,0x7d,0xaf,0x90,0x86, +0x89,0x6c,0x72,0x6e,0x7c,0x7e,0x6c,0x96,0x66,0x2c,0x1f,0xea, +0x1e,0xe8,0x76,0xd2,0x9d,0xbe,0x43,0x4c,0xeb,0x13,0xec,0x99, +0x45,0xf9,0x74,0xc4,0xcd,0xda,0x30,0x96,0xa5,0x88,0xb5,0x40, +0x85,0x9d,0x23,0x0b,0xb2,0x14,0xb1,0x49,0x45,0xd2,0xb2,0xe2, +0x03,0x58,0x21,0xf8,0xe0,0x42,0x8a,0xd8,0xb4,0x27,0x09,0x2f, +0x39,0xc1,0x1c,0xdf,0x93,0xe8,0x8b,0x17,0xa2,0xcf,0x28,0xc2, +0xf4,0x45,0x85,0x35,0x38,0xe9,0x87,0x53,0xf1,0x61,0x91,0x81, +0x27,0xe5,0x43,0x43,0xe4,0xce,0x54,0xc2,0xfa,0x26,0x5c,0x4f, +0x95,0x59,0x5b,0x4c,0x6b,0x4c,0x53,0xfc,0x89,0x06,0x7e,0xb5, +0x0f,0x8e,0x3d,0x85,0x9f,0x9c,0x8d,0x37,0xe3,0x9b,0x2e,0x36, +0x45,0x36,0x44,0x72,0xc8,0xe1,0x8a,0x23,0x30,0x83,0xf5,0xb4, +0x35,0x31,0xdf,0x62,0x99,0x7f,0x94,0x7f,0xdb,0x51,0x59,0x1f, +0xdb,0x49,0x25,0xc9,0xaa,0x36,0xe6,0x2e,0x78,0x93,0xcc,0xfc, +0xf4,0xca,0xa4,0xd2,0x63,0xe9,0xfc,0x29,0x7b,0x3f,0x47,0x3f, +0x3a,0x52,0xf3,0x2e,0x92,0xee,0x95,0xe2,0x9a,0xe8,0x56,0x9d, +0xc9,0x07,0xe6,0xfb,0x17,0x9f,0xc8,0xe1,0x44,0x79,0xb1,0x92, +0xe2,0xe4,0x27,0x09,0x27,0x1a,0x5f,0x53,0xb1,0x53,0x70,0x4b, +0x5b,0x05,0xb3,0xf5,0x21,0x89,0x75,0x57,0x59,0xab,0x8b,0x1b, +0x4d,0x72,0xb5,0x79,0xd0,0xbb,0xf6,0xfc,0xeb,0xf8,0x87,0x5c, +0x0c,0x13,0xb7,0xfd,0xd5,0x1e,0x50,0x3b,0x94,0xdb,0xc3,0xe3, +0xfa,0x36,0xa5,0x4e,0x77,0xa9,0x39,0xee,0x10,0x32,0xc8,0x75, +0xf0,0x6b,0x45,0xbf,0x2b,0x70,0xb1,0x95,0xce,0x30,0x3d,0x3b, +0x35,0x2f,0x39,0xdf,0x20,0x9b,0x0f,0x70,0x3a,0xee,0xe0,0xed, +0xc4,0xe1,0x21,0xa6,0x25,0xc7,0x3f,0xdf,0x27,0xd7,0x27,0x4b, +0xde,0xc8,0x33,0xcb,0x2b,0xcd,0x2b,0xd5,0x53,0x1e,0x97,0x19, +0x43,0x98,0x1a,0x7a,0x1a,0x83,0xe7,0x41,0xca,0x7d,0xe1,0x4e, +0x2b,0x33,0x94,0x02,0x1e,0x64,0x24,0x78,0xff,0xd0,0xbd,0x40, +0x0a,0xde,0xc6,0x8f,0x74,0x5f,0xf4,0x0f,0xdd,0xa7,0x4b,0x6b, +0xdf,0xcc,0x9f,0x43,0xeb,0x3f,0x12,0x79,0xf0,0x93,0x2d,0xc4, +0x39,0xcb,0xb5,0xd0,0xab,0xb2,0xb6,0xaa,0xbc,0xba,0xb8,0xfa, +0x58,0x09,0xef,0x6e,0xef,0xe2,0x60,0xeb,0x78,0xa2,0xfc,0x54, +0x75,0x48,0xe3,0xb0,0xe2,0x3a,0xc6,0x9c,0xae,0x3a,0x5b,0xd7, +0xa8,0x90,0xae,0x7d,0x82,0x3d,0x1a,0x61,0x19,0x75,0x4c,0x11, +0x67,0xdc,0x61,0xca,0xa3,0x4b,0xa2,0xf3,0x62,0x8f,0x37,0xf3, +0x07,0x7d,0x17,0x9f,0xda,0x70,0x3e,0xd1,0x98,0xaf,0xb8,0x50, +0x1d,0x51,0x1d,0xc9,0x1d,0xc6,0x19,0x86,0x30,0x63,0x0d,0x6b, +0x11,0x7e,0xf4,0xb4,0xe9,0x99,0x68,0x23,0xbe,0x31,0xb2,0x21, +0xaa,0x36,0x9a,0xc3,0xb1,0xf3,0xd8,0x14,0x63,0xb9,0x57,0x4c, +0x65,0x66,0x4a,0x8d,0xb4,0x67,0x4a,0x43,0x4c,0x4d,0x5c,0x59, +0x5c,0x48,0x0b,0xef,0x14,0x6a,0x1b,0x76,0x2c,0x8c,0x7b,0x02, +0x0b,0xd8,0x44,0xed,0x74,0xc3,0x1c,0xf3,0xa3,0x0e,0x86,0x4e, +0xea,0xae,0x05,0x26,0x7c,0x5f,0x41,0x47,0x59,0x53,0x65,0x9e, +0x4d,0xa1,0x73,0xb1,0x17,0xf5,0x46,0xb1,0x31,0x75,0xd9,0xf0, +0x29,0x6f,0x96,0x25,0x77,0x11,0x4e,0x91,0x63,0x25,0xc7,0x72, +0x8f,0xe6,0xda,0xdb,0xf0,0x75,0x5e,0x75,0x9e,0xf5,0xf6,0x34, +0xa2,0xfd,0x83,0xba,0x24,0xb7,0x28,0xaf,0x3a,0xad,0xc4,0xa0, +0x90,0x3f,0xe1,0xe4,0x66,0xe9,0xee,0x52,0xeb,0xc1,0x23,0x07, +0x33,0x0f,0xe3,0x4c,0x1c,0xcb,0xd4,0xe7,0xf9,0x54,0xd0,0x3e, +0x94,0x27,0x6f,0xe4,0x9c,0xef,0x9a,0x6f,0x9f,0xee,0x20,0x8f, +0xd3,0x71,0xd5,0xc0,0x2f,0x82,0xc1,0x82,0x2b,0xb0,0x8a,0x19, +0x8a,0xab,0x21,0xff,0x6f,0x8a,0x7e,0x07,0x0d,0xe3,0xe6,0x7f, +0x7c,0xd5,0xd4,0x5e,0xec,0xa7,0x55,0x73,0xa1,0x38,0x9a,0x08, +0x73,0xc1,0x42,0x9c,0xcb,0xf4,0xe1,0x2a,0xf2,0x3b,0x54,0xcc, +0x65,0x87,0x58,0x14,0xa4,0xc6,0xc0,0x4a,0x16,0x6b,0x0b,0x2e, +0x27,0x5d,0xc2,0x6a,0xbd,0x7e,0x41,0x26,0xe6,0x8b,0x32,0xe9, +0x63,0x85,0x48,0x82,0x7b,0xdf,0xc0,0x5e,0xa6,0x67,0x25,0x79, +0x03,0xaa,0x2b,0x59,0x71,0x8d,0x31,0x81,0xbd,0x4b,0x70,0x2f, +0x03,0x01,0xef,0x09,0xa8,0x2e,0x41,0x55,0x66,0x92,0x70,0x55, +0xa8,0x25,0x75,0x29,0x49,0xf5,0xb2,0xc7,0xac,0x71,0xa2,0xdc, +0x52,0x9c,0xca,0xba,0x9e,0x89,0x2a,0x94,0x5d,0x61,0xef,0x67, +0xde,0x2d,0xec,0x2b,0xf3,0x68,0xe0,0x75,0x1c,0x35,0x3c,0x0e, +0xf9,0x71,0xbf,0xea,0x53,0xc1,0xa0,0x93,0xed,0xd7,0xab,0x28, +0xd8,0xe3,0x51,0x92,0xd7,0x9c,0x73,0x2d,0xb6,0x99,0xab,0xa3, +0x72,0x23,0x24,0x39,0x38,0x25,0x38,0xf9,0x52,0x5b,0xfb,0xbd, +0xec,0x01,0xae,0x01,0x1b,0x8c,0x21,0x80,0x3d,0x61,0x65,0xad, +0x6b,0x65,0xe1,0x51,0xea,0x5e,0xe4,0x99,0x67,0xe3,0xc8,0xd7, +0x59,0xd6,0x1a,0x97,0x51,0x2e,0x6f,0x31,0x81,0xf9,0xa2,0x03, +0x63,0x52,0xe2,0x7b,0x0b,0xe4,0x14,0x60,0x89,0x31,0x6d,0x10, +0xb8,0xd0,0xc3,0x60,0x97,0xb1,0x62,0x8e,0xee,0xe3,0xee,0xd4, +0xa6,0x88,0xe7,0xf2,0x31,0xcc,0x9a,0xc8,0xca,0xed,0x30,0x71, +0x06,0x8c,0x62,0xe2,0x3a,0xe4,0xa8,0xe6,0x0e,0x0e,0xb9,0x70, +0x21,0x54,0x06,0xce,0x30,0xae,0x15,0xc7,0x81,0xfb,0x73,0x36, +0xe4,0xd8,0x71,0x83,0xe3,0x36,0x9c,0x58,0x26,0x4c,0xa5,0x94, +0x2e,0xd4,0xfe,0x8d,0xf5,0xc3,0x0d,0x56,0xa8,0xb0,0x17,0x47, +0x15,0xa8,0xf2,0x19,0xf9,0xc3,0xbb,0x66,0x89,0xeb,0xbb,0x1f, +0xc0,0x7c,0xca,0xe8,0x59,0x6c,0xee,0x08,0xa3,0xe1,0x99,0xf8, +0x96,0x84,0x25,0x06,0x5f,0x0c,0x0c,0x0a,0x0d,0xe3,0xcf,0x5c, +0x8c,0xc9,0x89,0xcc,0xbe,0x98,0x2f,0x0f,0x63,0xdb,0x71,0x54, +0x2c,0x03,0x13,0xde,0xb7,0xa3,0x36,0x1b,0x97,0x27,0x2d,0x8c, +0x99,0x24,0xf1,0x27,0x55,0x9d,0xb7,0xdb,0x18,0xd6,0x3b,0xf0, +0xe9,0xf9,0xa9,0xc5,0xc9,0x65,0x5c,0x1f,0x8e,0x67,0x42,0x90, +0x18,0xd2,0x8a,0x17,0xb8,0xc2,0x62,0xdf,0xbc,0x4d,0xa5,0xa6, +0xfc,0xf7,0x0f,0xaa,0x7a,0xf3,0x06,0x22,0xa2,0x23,0xbe,0x8c, +0x0c,0xbf,0x35,0x9b,0xaf,0xad,0x92,0x13,0x8d,0xf2,0x88,0xc0, +0xbd,0x16,0xa5,0x27,0x38,0x2a,0x0c,0x7e,0x41,0x5a,0xb2,0x6a, +0x73,0xab,0x0a,0x24,0x6a,0xe5,0x1c,0x2f,0x2f,0xe7,0x8f,0x67, +0x7a,0x66,0x78,0xa6,0x67,0x67,0x64,0x65,0x66,0x66,0xdb,0x97, +0xf2,0xde,0x5e,0xde,0xde,0x1e,0xbe,0xce,0x59,0x2e,0xe9,0xee, +0x29,0x8e,0xf6,0x7c,0x5e,0x40,0x81,0x7f,0xbe,0x9f,0x83,0xb7, +0xad,0xcf,0x31,0x3f,0x0e,0x3b,0xd0,0x99,0xbc,0x79,0x56,0xd4, +0x16,0x7b,0x8f,0x56,0x8c,0x53,0x1d,0xb0,0x93,0x89,0x8b,0x8e, +0x88,0x09,0x53,0x7c,0xb6,0xbb,0xb4,0x7c,0xe3,0x83,0xe0,0xb8, +0xb0,0x2f,0x43,0x42,0xe4,0x83,0x82,0xe4,0xc2,0x2f,0xc3,0xd8, +0x56,0x1c,0xfb,0x2f,0x83,0x4d,0xb8,0xd4,0x18,0x14,0x98,0xe3, +0x9a,0xc6,0x9a,0x9b,0x0e,0x70,0xc2,0x4f,0x2e,0xe4,0xfe,0xed, +0xbc,0x9e,0xe8,0x2b,0xf4,0xed,0x41,0x1d,0x10,0x44,0x8b,0x83, +0x4a,0x89,0xce,0x37,0xfb,0x4b,0x5a,0xf9,0x3d,0xdd,0x46,0x7d, +0xde,0x7d,0x1c,0x7c,0xde,0x8a,0xf3,0xa5,0xf7,0x8d,0x37,0xfe, +0xc0,0xf8,0x6a,0x99,0x6b,0x1d,0xd0,0xe1,0xe0,0x15,0x7e,0x4a, +0x4b,0x29,0x93,0x94,0x95,0x98,0x95,0x90,0xa3,0x1f,0xcf,0xa7, +0x25,0xa4,0x26,0xa4,0x24,0xe4,0xfb,0xe4,0x79,0xe7,0x78,0x97, +0x55,0xf0,0xde,0x59,0x5e,0x99,0x9e,0x99,0x79,0xd9,0x39,0xb9, +0xd9,0x79,0x0e,0xa5,0xbc,0x97,0x9b,0x87,0x87,0x9b,0xb7,0x6b, +0xa6,0x7b,0xba,0x67,0x8a,0x93,0x1d,0x9f,0x1d,0x90,0x7b,0x22, +0xd7,0xcf,0xd1,0xdb,0xde,0xc7,0xda,0x37,0xcf,0x92,0xcf,0x4e, +0xc8,0x4c,0x48,0x4f,0x38,0xe5,0x71,0xd2,0x2b,0xe0,0x38,0x87, +0xef,0x0c,0xa0,0x93,0x51,0x55,0x5d,0x65,0x86,0x6b,0xac,0xb2, +0x8d,0xf8,0x1b,0x69,0x7d,0x99,0x6d,0x39,0x1c,0xcc,0x67,0x54, +0x54,0xe6,0x68,0xe2,0xac,0xa3,0xf9,0xc6,0xfc,0xe5,0xac,0x9e, +0xdc,0x8e,0x42,0x0e,0xe7,0x5d,0x6d,0x14,0x76,0x1c,0xbd,0x06, +0xee,0xe2,0x41,0xb6,0x20,0x3b,0x2f,0x27,0x2b,0x97,0x83,0xc7, +0x4c,0xa3,0x6f,0x9b,0x7f,0xb7,0x7f,0x76,0x2b,0x8f,0xf3,0xea, +0x56,0x34,0xee,0x1c,0xe0,0xa0,0x83,0x11,0x61,0x15,0xa9,0x2d, +0x28,0x2f,0x29,0x2a,0xe7,0xa8,0x45,0x2f,0xb3,0xab,0x71,0x6e, +0x76,0x93,0x36,0x10,0xbd,0x40,0x9e,0x0a,0x3b,0xb6,0xb0,0x93, +0xe0,0xd9,0xe0,0x52,0x52,0x78,0xb4,0xea,0x60,0xae,0xae,0x8f, +0xe5,0xf1,0x63,0xbe,0x4e,0xdc,0xf9,0xd0,0xd0,0xf3,0x61,0x33, +0xa2,0xf4,0xdb,0xa3,0xee,0xc4,0x77,0x25,0xcb,0x47,0x06,0x44, +0x04,0x44,0x9c,0x6c,0x4c,0xe1,0xcf,0x26,0x9e,0x4b,0x3a,0x93, +0xcc,0xc1,0x2e,0x26,0xf2,0x58,0x7b,0xd4,0xfd,0x84,0x9e,0x14, +0xf9,0x88,0x13,0x91,0x27,0x22,0x02,0x9a,0x52,0xf8,0xc0,0x3e, +0x9f,0xfb,0xbe,0xed,0xe6,0x27,0xf8,0x38,0xd7,0x38,0xe7,0x58, +0x67,0xb7,0x70,0xc7,0x70,0x87,0x33,0x2d,0xf7,0xdb,0x7f,0xa9, +0xfc,0xd9,0x3c,0x87,0x3f,0x61,0x76,0xdc,0xc8,0xcb,0x38,0x24, +0x23,0x28,0x33,0x38,0xa3,0xec,0x76,0xe9,0x37,0x19,0xdd,0x47, +0xb2,0xf8,0x00,0x03,0x77,0x15,0x37,0xad,0xd0,0xa4,0xb0,0xa4, +0xd0,0x04,0x2f,0x6f,0xfe,0xde,0x7a,0x36,0xa5,0x38,0xa1,0x24, +0xb6,0xd0,0x2c,0x91,0x0f,0x73,0x0a,0xb4,0xf3,0xb7,0xe3,0xf4, +0xf0,0x03,0x13,0x5c,0x17,0x58,0x1f,0x58,0x6a,0x1e,0xc0,0xc7, +0x3b,0xc7,0x39,0xc6,0x39,0xba,0x86,0x3b,0x9d,0x76,0x3a,0xd3, +0xf4,0xa0,0xf9,0x97,0xaa,0x5f,0x2c,0x68,0x7d,0x3e,0xe2,0x63, +0xec,0x6d,0xe2,0xd2,0xc3,0x97,0xdd,0x2e,0xfa,0x26,0xad,0xdb, +0x82,0x76,0x05,0x13,0xf7,0xbd,0xee,0x1a,0x5e,0xd5,0xbc,0x47, +0x0b,0x85,0x7e,0x95,0xf6,0xef,0x1f,0xa1,0xbf,0xe7,0x1f,0xe8, +0x4b,0xf5,0x78,0x03,0x85,0xfe,0x42,0x0a,0x7d,0xd9,0xdf,0xd0, +0x17,0xdc,0x71,0x0d,0x59,0x01,0xec,0x0f,0x0c,0x4c,0x41,0x73, +0x72,0xdc,0xca,0xdb,0xda,0x87,0x46,0xe2,0xf4,0xe9,0x2f,0x4f, +0xcf,0x80,0x68,0x36,0xcf,0xbc,0x44,0x2f,0xdb,0x8c,0x43,0xd7, +0x7a,0xf2,0x03,0x7e,0xba,0x82,0x11,0xd5,0xf1,0x17,0x0a,0xe3, +0xef,0x29,0x8c,0x07,0xd5,0x40,0x81,0x74,0x60,0xe1,0x13,0xad, +0xe1,0x4b,0xfb,0xfd,0x58,0x87,0x7d,0x0b,0xb5,0x70,0x9a,0x7a, +0xa1,0x1e,0x0f,0xfc,0x4d,0x18,0x73,0x25,0xee,0x7b,0x8a,0xaf, +0x94,0x3e,0x48,0xa1,0xf8,0x5a,0x01,0x9c,0x3a,0x28,0xaa,0x16, +0x76,0xf1,0x28,0x3f,0x30,0xb7,0xd7,0xf6,0x0e,0x37,0xe9,0x01, +0xb5,0xa0,0x5a,0xf0,0xb0,0x8f,0x15,0xac,0x87,0x8a,0x08,0x6d, +0xff,0xe6,0xfe,0xc9,0x8d,0x32,0xe8,0x84,0xf7,0xc2,0x16,0x71, +0xc5,0x90,0x23,0xbb,0xbd,0xd4,0xfa,0xb1,0x22,0xa4,0x31,0x5d, +0xe9,0x99,0xed,0x32,0xb0,0x60,0xd5,0xd3,0xe5,0x2c,0x41,0x9d, +0x60,0x39,0xf4,0x51,0xb1,0x2e,0xfe,0x89,0x7b,0xc8,0xd0,0x94, +0xcb,0x83,0x53,0x60,0x45,0x9f,0x38,0x55,0x8b,0xad,0x40,0x9e, +0xa0,0x61,0xd8,0x12,0xab,0x55,0x8a,0x5d,0xf6,0x72,0x0d,0x3f, +0xc7,0xc1,0x24,0x30,0x52,0xa8,0xd0,0x64,0xe1,0xa9,0xb8,0x91, +0x08,0x1b,0xb5,0xc4,0x8d,0xec,0xa4,0xfb,0xf4,0xa4,0xda,0x70, +0xb7,0x97,0x6d,0x57,0x23,0xc2,0xda,0x21,0x5f,0x3c,0xc0,0xa4, +0x6b,0xc8,0xc1,0x5a,0xa6,0x25,0x3d,0xbd,0x45,0x36,0x58,0x2e, +0xba,0xb1,0x05,0xb8,0x8b,0xe8,0xc0,0xbd,0x1e,0x56,0x7c,0x7c, +0x98,0x0c,0x7d,0xde,0x3f,0xf8,0x39,0x2c,0xed,0x15,0x3f,0xd1, +0xa6,0x27,0x90,0xff,0xfb,0x04,0x9d,0x0e,0x72,0x0d,0x1f,0x46, +0x4e,0x50,0xa9,0xc5,0xc2,0x3d,0x71,0x13,0x11,0x36,0x69,0x89, +0x9b,0x58,0x58,0x22,0xac,0x21,0xe2,0xcc,0x9e,0xfb,0xe0,0x00, +0x5f,0xb1,0xe8,0x80,0xc9,0x04,0x2c,0x60,0x2d,0x5a,0x50,0xcf, +0xfd,0x59,0x02,0xd1,0x7a,0x67,0x0f,0xb3,0x03,0xc0,0x89,0xba, +0xd5,0x5e,0xdc,0xc2,0x9c,0xb9,0x75,0xee,0xde,0x33,0x85,0xde, +0x84,0xee,0xa4,0x96,0x54,0xd7,0x76,0x7e,0xa1,0x23,0x4e,0xf7, +0xc6,0x0d,0x21,0xdc,0x10,0xcb,0xaa,0x9f,0x4a,0xd4,0x78,0x99, +0xf5,0x63,0xc1,0xdd,0x02,0xf9,0xe0,0x6e,0x8b,0x00,0x93,0x93, +0xc6,0xa7,0xe4,0xa1,0x07,0x96,0xb1,0x69,0x18,0x50,0x8b,0x6b, +0x6f,0xcd,0x2b,0x32,0xe9,0x89,0x8d,0xba,0x9e,0x06,0x96,0xbc, +0x41,0xb6,0xdc,0xd0,0x1d,0xe1,0x11,0x0d,0xe6,0xab,0x3e,0x16, +0x36,0x6c,0x22,0xcd,0x11,0x97,0x22,0x5b,0x62,0x2e,0x6c,0xbf, +0xb8,0x37,0x42,0x95,0xc3,0x45,0x0c,0xfe,0x59,0x4f,0x86,0x3e, +0x1b,0x18,0xfc,0x0c,0x94,0xfa,0xc4,0xf9,0x5a,0x6c,0x35,0x7e, +0x31,0x3c,0x11,0x8b,0x95,0x8a,0xdd,0x0e,0x72,0x4d,0x1f,0x23, +0x55,0xae,0xc1,0xc2,0x5b,0x71,0x03,0x11,0x36,0x68,0x88,0x1b, +0x58,0x61,0xfe,0x72,0x32,0x80,0x9d,0xea,0xd4,0xbe,0xbc,0xa6, +0xca,0x78,0x05,0x3e,0x85,0x99,0xf0,0x0a,0x66,0x6b,0x28,0x61, +0x31,0x8c,0x51,0xc3,0x31,0x98,0xf0,0xad,0x06,0xce,0x86,0x3b, +0xb4,0xad,0x5d,0xf9,0x41,0x03,0x17,0x0f,0x5e,0x86,0xc5,0xac, +0x3a,0x7a,0x91,0x21,0x75,0xbd,0x41,0x75,0x66,0xa8,0x08,0x65, +0x44,0x58,0x8f,0xae,0xb8,0x8f,0x49,0xd6,0x93,0xa3,0xbd,0xad, +0x25,0x37,0xbb,0x45,0x06,0x47,0x85,0xb9,0x3d,0xff,0xa6,0xf2, +0xce,0x65,0x31,0x31,0xd0,0x50,0x33,0xc6,0xd1,0xc6,0xe5,0x26, +0x3c,0x8c,0x69,0xbf,0xdd,0xdb,0x75,0x8d,0x83,0xef,0x43,0xc9, +0x73,0xd3,0x87,0x7a,0x5f,0x6b,0x54,0x37,0xf0,0xbb,0x06,0x76, +0x77,0x28,0x5d,0xe2,0x26,0xfd,0xa5,0x31,0xb8,0x9f,0xe0,0x1f, +0x4c,0x6a,0x43,0x4a,0x73,0x52,0xab,0x46,0x0a,0x6f,0x81,0xeb, +0xb4,0x70,0x82,0xf6,0xd6,0x26,0x63,0xbe,0xb2,0xa3,0xf2,0x46, +0xd9,0x03,0xae,0x66,0x48,0xff,0x1a,0x44,0x43,0x44,0x3f,0x46, +0x80,0x32,0x44,0xf4,0xd1,0x6f,0x5b,0x21,0x9f,0xf9,0xf7,0x18, +0xd8,0x49,0xa3,0xf2,0xbe,0x8f,0xcd,0xc1,0xc3,0x44,0x5c,0xa4, +0x0d,0x87,0x47,0xc2,0xb0,0x96,0x11,0x47,0x49,0x68,0x31,0x08, +0x5b,0x62,0xbe,0x52,0xb1,0xc7,0x41,0xae,0xf9,0xe7,0x58,0x1a, +0x03,0xc3,0xe1,0x18,0xfc,0x22,0x52,0x69,0xb2,0x5e,0x43,0x5c, +0x4f,0xa7,0x9e,0x34,0x68,0x4e,0x54,0xea,0x94,0x2b,0x76,0xe7, +0xbb,0x1b,0xf3,0x0f,0x5d,0x1e,0xd8,0x5d,0x3f,0xc6,0x0d,0x6d, +0x80,0x59,0x14,0x43,0xcd,0xbd,0x2c,0x7c,0x35,0x54,0x47,0x6c, +0x43,0x62,0xaa,0x65,0x30,0x95,0x85,0xf1,0xb0,0xe5,0x19,0xe8, +0xb7,0xc1,0x71,0xfd,0x54,0xde,0x1c,0x75,0x0e,0xe1,0x96,0xb5, +0xb8,0x80,0x83,0xff,0x68,0x8a,0xfa,0xac,0xc9,0x41,0x3d,0x0d, +0x0d,0x1d,0x6a,0x9f,0x9b,0x1b,0xea,0x9b,0x6b,0x5a,0x38,0x53, +0x76,0x67,0xae,0xdb,0xd7,0x8a,0x3f,0x32,0x2d,0xa9,0x19,0x97, +0x64,0x60,0x29,0xdd,0x8d,0x8f,0x81,0xac,0xc8,0x0f,0x8e,0x22, +0xf8,0xbb,0x36,0x2c,0x1b,0x22,0xbd,0x83,0x84,0x16,0xc0,0x87, +0x96,0x24,0x00,0xa7,0x79,0xe0,0x27,0x47,0xe6,0xb4,0x3a,0xf2, +0x97,0x60,0x6c,0x11,0x90,0x64,0x98,0x41,0xad,0x43,0x28,0x29, +0xc5,0xb1,0x85,0x38,0x31,0x15,0xa7,0x77,0xa7,0xf2,0x27,0x60, +0x8a,0x0b,0x4c,0x77,0xf8,0x93,0x1b,0x6a,0x5c,0x29,0xcd,0x6b, +0x91,0xed,0x5a,0xc5,0x76,0x3b,0xb9,0x1a,0x9a,0xdb,0x4f,0xc0, +0x58,0xa1,0x56,0x87,0x85,0x16,0x91,0xda,0xc5,0x75,0x3a,0x22, +0xf5,0xe3,0x83,0x69,0x20,0x23,0x57,0x61,0x5c,0x09,0x7c,0x96, +0x06,0x44,0x3b,0x91,0x3f,0x89,0x13,0xdd,0x67,0x1b,0x2e,0x3b, +0x04,0xa3,0xbc,0x80,0xbb,0x40,0x85,0x7e,0x03,0x74,0x5f,0xc6, +0x6e,0x30,0x50,0x47,0x03,0x9c,0xa3,0x01,0x73,0x2c,0xd8,0xf3, +0x68,0xaf,0x87,0xea,0xa8,0x8c,0x9b,0x1b,0x8d,0x78,0x98,0x0f, +0x0b,0x2f,0xc3,0xee,0x08,0x98,0x49,0x95,0x65,0xc4,0xbe,0xbc, +0x8d,0x9d,0xeb,0xad,0xd4,0xf5,0x75,0x54,0xf4,0x2b,0xf4,0xf9, +0x5b,0xed,0x9d,0xbd,0xf5,0x03,0xcd,0x1a,0x97,0x35,0x1e,0xe8, +0x56,0x75,0xf3,0x5b,0xbb,0xd4,0xfb,0xcc,0x68,0x41,0x9e,0x22, +0x0c,0x10,0xfb,0x46,0xed,0x3e,0x9b,0xc2,0xa3,0xb6,0x7c,0xb5, +0xf3,0x65,0xb5,0x22,0x1a,0xca,0xec,0xe1,0x50,0x7e,0xd5,0xcb, +0xe6,0xe3,0x41,0x22,0x4e,0xd0,0x86,0xcd,0x1f,0x09,0xc7,0xe0, +0x9b,0x8f,0x6c,0x3b,0xb6,0x5a,0xb1,0x93,0xd2,0xf9,0x43,0xec, +0x3f,0x6c,0x4b,0x99,0x2e,0x6e,0xea,0x13,0x36,0xd1,0x69,0xfc, +0x0e,0xc6,0x44,0xb0,0xf9,0xa6,0x73,0x23,0x4c,0x50,0xc7,0x09, +0x78,0x11,0x26,0x68,0xe0,0x84,0x0d,0xfa,0xcf,0x45,0x1b,0x25, +0x5d,0xa1,0xa3,0x9b,0xfd,0x37,0x27,0xfc,0x42,0x7f,0x7f,0x6b, +0x2f,0x2b,0xec,0xc2,0x38,0x42,0x5f,0x30,0x1e,0x2e,0x32,0xe2, +0x02,0x4b,0x8a,0x27,0x6d,0x58,0x31,0x12,0xe4,0x79,0x8c,0xb0, +0x60,0x2f,0xc1,0x89,0xf4,0x5f,0x27,0xb2,0xa2,0xf3,0xa1,0xe1, +0xf0,0xd9,0x0c,0x87,0xaf,0xf6,0x63,0xf8,0x6a,0x68,0xf8,0x3a, +0xc4,0x6d,0x44,0xd8,0xa6,0x23,0x6e,0x63,0xc1,0x1f,0x8a,0x09, +0x5c,0xc4,0x29,0x78,0x91,0xc1,0xa9,0x58,0x44,0x9e,0x35,0xdf, +0xee,0xee,0x18,0x38,0x52,0xc3,0x1f,0xd1,0xde,0xa7,0xbf,0xcd, +0x92,0x83,0x37,0xbf,0x91,0x6b,0x16,0x0f,0xf4,0x7a,0xb5,0xea, +0x9a,0x79,0xed,0xee,0xed,0xbd,0x87,0xeb,0xa8,0x34,0xac,0xa4, +0xb5,0xab,0xab,0xa5,0xb3,0xaf,0xa6,0xc7,0xa2,0x94,0xb7,0xd1, +0x33,0xd4,0x31,0x35,0xe7,0x2c,0xfb,0x3d,0xfb,0x3b,0x14,0x72, +0x21,0xb6,0x0b,0x19,0x36,0xef,0x4d,0x26,0x8c,0x4a,0x7d,0xc5, +0xe1,0x33,0xe9,0x23,0xb8,0xbc,0xc8,0x4c,0x4d,0xe9,0x23,0x38, +0xb7,0x39,0x6e,0x2b,0xa5,0x4f,0xa6,0xc2,0x9c,0xc3,0x9c,0x43, +0xdd,0x38,0x71,0x9c,0x1e,0x9c,0x10,0xb7,0x23,0x27,0x7d,0x04, +0xf7,0x8a,0x69,0x4f,0x95,0x3e,0x82,0x4b,0x8d,0x61,0x13,0xd6, +0x3e,0x58,0x05,0x0a,0x8b,0xcb,0x5b,0x78,0xd5,0x26,0x9d,0xf6, +0xa3,0x9d,0xdc,0x90,0xbd,0x30,0x44,0xe7,0xde,0x49,0x61,0xba, +0x09,0xb5,0x49,0x6c,0x7e,0xdc,0xf0,0x67,0x6b,0x79,0xcc,0x69, +0xb7,0x30,0x9b,0xd0,0x63,0x54,0x9a,0xc7,0x0f,0x47,0x61,0xd5, +0x48,0x14,0xe6,0x48,0x9f,0xf1,0xcc,0xf8,0x7b,0xee,0x1d,0xff, +0x33,0x77,0x6d,0x16,0xba,0xff,0x3b,0xf7,0x14,0xf0,0x25,0x8e, +0x15,0x86,0xcd,0x56,0xd2,0xa7,0x70,0x55,0x2e,0xed,0x66,0x15, +0xd6,0x5c,0x69,0x38,0x31,0x56,0x53,0xde,0x7b,0xc0,0xac,0xc4, +0x98,0xbf,0xd3,0xf1,0xe8,0x5e,0x8b,0xb4,0x7d,0xac,0xbc,0x30, +0x9f,0x94,0x45,0x56,0x44,0x55,0x46,0x73,0x6b,0xbb,0xde,0xb3, +0xd5,0x31,0x15,0xb1,0xc5,0xb1,0xa7,0xa9,0x1d,0x0e,0x73,0x08, +0xb3,0x0d,0xe7,0xde,0xfd,0xd0,0xb2,0xe2,0xf5,0xaf,0xad,0xf3, +0xef,0xeb,0xed,0x9c,0x6f,0xfc,0xeb,0xea,0xa5,0x26,0x3f,0xce, +0x65,0x8f,0x85,0x1d,0x3b,0x6d,0x77,0x86,0xc3,0x9b,0xf0,0x1b, +0xad,0xc0,0x59,0x3d,0xac,0x30,0x77,0x23,0xc1,0xad,0x4e,0xeb, +0x54,0xb6,0x2a,0x36,0x58,0xc8,0x3d,0x78,0x57,0xf1,0x0b,0xa8, +0x28,0x14,0x7f,0xa7,0xc6,0x6e,0x3a,0xb7,0x3e,0xe4,0x80,0xa2, +0xe5,0xe9,0x80,0x40,0xdb,0x19,0x9a,0x52,0x7d,0xe9,0x61,0x06, +0x8a,0x72,0x6e,0xc4,0xc9,0x12,0x1e,0x5e,0x7c,0xff,0x5a,0xe1, +0x67,0x4c,0x36,0xbc,0xc2,0x8a,0x5d,0xa8,0x4a,0x86,0xbe,0xe8, +0x1e,0xfc,0x02,0x26,0xf7,0xe2,0x75,0x6d,0x5a,0xd9,0x67,0x0d, +0x4f,0xd0,0x41,0x49,0xb1,0xc5,0x56,0xae,0x8a,0x42,0x4a,0x9a, +0x60,0x83,0xbe,0xf4,0x58,0x83,0x9d,0x44,0xd8,0xa9,0x27,0xee, +0x64,0x07,0xd7,0xc2,0x62,0xd2,0x8d,0x89,0x89,0xec,0x1d,0x8d, +0xbd,0x6c,0x20,0x5e,0xd4,0x85,0x70,0xd6,0x73,0xad,0xb2,0x26, +0x2e,0x3d,0x50,0xac,0xc3,0x83,0xea,0x77,0x37,0x6f,0xc6,0xfd, +0xca,0x45,0x33,0xf1,0x73,0xef,0x1e,0x04,0xf5,0xb5,0x45,0xbd, +0x3c,0xae,0xbc,0xbd,0xb9,0xd7,0xe3,0x25,0x4d,0xb1,0xb1,0xe0, +0x47,0x76,0xb3,0x46,0x19,0x7e,0x1d,0x8a,0x30,0x99,0xa9,0x48, +0x49,0xaa,0x90,0xf5,0xb1,0x46,0xa9,0x72,0xbb,0xe7,0xb0,0xee, +0xe1,0x91,0xb9,0xb2,0x6b,0x40,0xe0,0xae,0x68,0x81,0x77,0xe1, +0x13,0xd6,0x77,0x9f,0x8e,0xe5,0x22,0xbb,0x3c,0x43,0x1e,0x3e, +0xa9,0xbf,0x75,0x3b,0xfd,0x05,0x27,0x56,0xc2,0x1d,0x9a,0xb0, +0x7a,0x9a,0xb0,0x42,0x54,0x20,0xb8,0xe0,0x3b,0x58,0x30,0xf2, +0xa4,0xba,0xc5,0xeb,0x58,0xd1,0xd4,0x8c,0xe0,0x1b,0x1d,0x58, +0x3c,0x34,0xbd,0x77,0x70,0x3a,0xcc,0x60,0x20,0xaa,0x87,0xac, +0xc6,0x05,0xaf,0x59,0x30,0x9b,0x0e,0x8b,0x57,0xe3,0x62,0x46, +0xfc,0xf7,0xc2,0xe1,0xd9,0xd9,0xad,0x55,0x6c,0x93,0xd2,0x17, +0xfb,0x0f,0xf3,0x9b,0x44,0x65,0x22,0x28,0xeb,0x88,0xca,0xec, +0xa0,0x6c,0x37,0xd9,0x90,0xb7,0xbb,0x58,0xad,0xf2,0x4e,0x7b, +0x4b,0x7f,0xf1,0x55,0x2a,0xd3,0x0b,0xd9,0x94,0xdc,0xe4,0xfc, +0x84,0x02,0xa3,0x54,0xde,0x76,0x8b,0xca,0x36,0x94,0xd3,0x2e, +0x30,0xe2,0xeb,0xb3,0xab,0x72,0x4b,0x0a,0xca,0x2d,0xaa,0xad, +0x1b,0x1d,0x0e,0xda,0x6f,0x76,0x9a,0xef,0x95,0x66,0xc0,0x03, +0x5b,0xf0,0xa6,0xf2,0x5e,0xc3,0x6d,0xf3,0xa7,0xb6,0x1f,0x5c, +0x38,0xf1,0x13,0x68,0x22,0x51,0xd2,0x7f,0xd1,0x1c,0x9c,0x63, +0xdc,0x4c,0x2d,0x4c,0x0f,0x5b,0x1a,0x95,0x5b,0xd4,0xd8,0x36, +0xd3,0xec,0x2f,0x18,0xfc,0x9c,0x18,0x0b,0x55,0xad,0x18,0x71, +0x0f,0x52,0x5a,0x31,0xe5,0x91,0xb6,0x32,0x9e,0x37,0x86,0xf3, +0xbb,0x58,0xf1,0x1a,0x6c,0xa6,0xd9,0x2d,0xe8,0x61,0x71,0x3d, +0x06,0x7e,0xcc,0x0f,0xdf,0x83,0x8f,0x75,0x58,0x81,0x38,0x10, +0xdc,0x23,0xf8,0xc1,0x1e,0x69,0xb5,0x73,0x2a,0x79,0x2c,0x30, +0xdb,0xd8,0xa1,0xbc,0x9c,0xe1,0x69,0xd9,0xaf,0x93,0x36,0xfb, +0xaf,0xfe,0x98,0xb4,0x7a,0x3d,0x16,0x8a,0xc4,0x1d,0x44,0xd8, +0xa1,0x27,0xee,0xa0,0xe4,0x84,0x50,0x12,0x94,0x7f,0xb2,0x20, +0x20,0xd3,0xd0,0x87,0x4f,0xf6,0x49,0x76,0x8f,0x77,0xe7,0x20, +0xe3,0x1c,0x49,0xca,0x4d,0x2a,0x88,0xcf,0xd7,0x49,0xe5,0x83, +0x9d,0x02,0x5d,0xfc,0x1c,0x38,0xfc,0xcd,0x40,0xb8,0x4e,0xa5, +0xa1,0x27,0xbe,0x23,0x95,0xc2,0x64,0xdb,0x7e,0xf0,0x17,0x4f, +0xa3,0x3f,0x2b,0x1c,0x02,0x55,0xb2,0x5c,0x9c,0xfc,0x56,0xda, +0xf8,0x4c,0x7a,0xbc,0xba,0xda,0x7a,0x71,0xae,0xc1,0x5f,0xa3, +0x3a,0x58,0xf1,0xd1,0x2a,0x52,0xe2,0x54,0x7c,0x2c,0xd3,0xb6, +0xb1,0x90,0xf7,0x2d,0x75,0x68,0x70,0x29,0xe2,0x40,0xf5,0x1c, +0x09,0xb0,0x77,0xb1,0x76,0x72,0xae,0x73,0xe6,0xcb,0xcb,0x0a, +0xab,0x33,0xaa,0x39,0x30,0x56,0x25,0x25,0x31,0xc5,0x71,0x85, +0xf1,0xf6,0xb5,0xfc,0x7e,0x2f,0xa5,0x80,0x65,0x61,0x1c,0x6a, +0xb1,0x3e,0xe7,0x7c,0xcf,0xf9,0x9d,0x8f,0x31,0xe1,0xaf,0x44, +0xfd,0x94,0x3c,0x90,0x1a,0xde,0xc4,0x3b,0x84,0x5a,0x53,0x98, +0x73,0x20,0x63,0x4b,0x22,0x8a,0x23,0x8b,0xa2,0xd2,0x56,0xd6, +0x6d,0x7a,0xab,0x56,0xd2,0xc8,0x6f,0xe8,0xb6,0xbb,0x75,0xea, +0x29,0x27,0x5e,0xf4,0x26,0x96,0xe7,0xac,0x4f,0xbb,0x2b,0x3a, +0x87,0x07,0x87,0x39,0xcc,0x38,0xc0,0x24,0x9a,0xca,0xdd,0x60, +0xae,0xa7,0xe5,0x36,0xc6,0xc9,0x62,0xeb,0x2f,0xb4,0x3d,0x54, +0xc0,0x3e,0x93,0x37,0xcc,0x19,0x65,0x27,0x83,0x75,0xfa,0xa5, +0xe6,0xfc,0x4f,0x03,0xf5,0xb7,0xa2,0x7e,0xe4,0xe0,0xb4,0x2f, +0x41,0xfd,0x3e,0xd0,0x67,0xb1,0x19,0x83,0x49,0x95,0xda,0x56, +0x16,0xa7,0xba,0xae,0x5b,0xb9,0x56,0xb1,0xc1,0xe4,0xfe,0xfd, +0x9a,0xaf,0x52,0x5f,0xca,0xc3,0x69,0xf4,0xbe,0x0c,0xde,0x90, +0x8d,0x81,0x57,0x84,0x7d,0x6a,0x36,0x8c,0x38,0x80,0x72,0xe4, +0x62,0xd6,0x85,0xac,0x1c,0x05,0xa1,0xef,0x20,0x23,0xa6,0x60, +0x0e,0x69,0x6b,0x6f,0xb8,0x5c,0x70,0xc5,0x20,0x97,0xf7,0xd0, +0xb6,0x33,0xd0,0x35,0xe6,0x00,0x60,0x2a,0xa9,0x37,0xad,0xd7, +0xab,0x54,0x6f,0x29,0xe3,0xed,0x7a,0xcc,0xfa,0x2c,0x9b,0xb8, +0x49,0x5f,0x0d,0xeb,0xa8,0xaa,0x5e,0xf6,0xc6,0x39,0x82,0x47, +0xc0,0x07,0x8e,0xb0,0x9d,0xd3,0xe9,0xc1,0x49,0x7a,0x20,0x9a, +0x4b,0xb7,0x0f,0x8f,0x81,0x4f,0x71,0xcc,0xc8,0x6e,0x8d,0x30, +0x8d,0x1e,0x0d,0x1d,0x50,0x26,0x43,0xd3,0x7b,0x28,0x78,0xf9, +0x5e,0x7c,0xa1,0xcd,0x0e,0x2e,0x10,0xf5,0xc8,0x63,0xb0,0x82, +0x37,0xa2,0x35,0xbe,0x81,0x23,0xdb,0xf0,0xbc,0x2e,0x9c,0xc7, +0x59,0x3d,0x30,0x0b,0x62,0xba,0x59,0xbc,0x0a,0x85,0x04,0x17, +0xbe,0x85,0x85,0x4c,0x8f,0xb4,0x03,0xe4,0xb2,0xe5,0xec,0x50, +0x46,0xf5,0x48,0x6b,0x5b,0xa7,0xd8,0x6e,0x2b,0x57,0xfd,0xb1, +0x3e,0xd5,0xe9,0xb2,0x50,0x23,0x6e,0x27,0xc2,0x76,0x5d,0x71, +0x3b,0x0b,0xfa,0xd2,0xf6,0x31,0x0b,0x97,0xe0,0x42,0x06,0x8e, +0x50,0x33,0xbb,0x6c,0x09,0x2e,0x63,0x26,0x0d,0xc6,0x0c,0xc6, +0x91,0x3b,0x06,0x7b,0x97,0xd3,0xff,0x71,0x11,0x36,0x08,0x67, +0xa1,0x81,0x1d,0x7a,0x5b,0x41,0x71,0x98,0xdf,0xc3,0x82,0x2f, +0x1d,0xef,0x8a,0x07,0x3f,0x30,0x1d,0xd3,0xdf,0xee,0x58,0xce, +0xc0,0xa2,0xe9,0x0f,0x3e,0xec,0x60,0x87,0xf6,0x6e,0xfb,0x08, +0xce,0x99,0xbd,0xf8,0x54,0x9b,0x15,0x72,0x6a,0xc8,0x86,0x15, +0xcf,0x59,0x08,0xdf,0x40,0x96,0x3f,0x7f,0x4b,0x5f,0xfc,0x61, +0xc3,0x22,0x66,0x48,0x6d,0xf5,0xff,0xa0,0xb3,0xea,0x43,0xdc, +0x3f,0xe8,0xcc,0xff,0x07,0x9d,0x3f,0x08,0x1c,0xe5,0xc2,0xdd, +0x56,0x56,0xcc,0xc1,0x31,0x04,0x55,0x05,0x07,0x50,0x65,0xc5, +0x95,0xb4,0xbf,0xbd,0x80,0x5f,0xd6,0xb3,0x18,0x8e,0x8b,0x48, +0x70,0xd9,0x89,0x32,0xff,0x7c,0x3d,0x3f,0x3e,0xd5,0x2d,0xd5, +0x21,0xc1,0x81,0x83,0xe0,0x33,0x24,0xad,0x24,0xb5,0x32,0xa1, +0x48,0x37,0x95,0x0f,0xb2,0xf3,0xb5,0xf2,0xb1,0xe1,0xf0,0x67, +0x43,0xe1,0x59,0x3b,0x23,0x2d,0x55,0x66,0x92,0xcb,0x1a,0x1a, +0x18,0x6d,0x22,0x7c,0xd5,0xc2,0xfe,0x7b,0x5c,0x21,0x9d,0x47, +0x0a,0xad,0x96,0xfe,0x43,0xe1,0xa4,0xad,0xa0,0xa1,0xa4,0xac, +0xcc,0xa6,0x92,0x77,0xb6,0x37,0x73,0x34,0xf6,0x70,0x2f,0x3e, +0x5e,0xe6,0x4f,0xcb,0x7e,0x78,0x0b,0x2a,0xdd,0x86,0x59,0x4d, +0x38,0xeb,0x3a,0x2c,0x69,0xc6,0x25,0xd7,0xe9,0x38,0xd7,0x62, +0x08,0xae,0xbd,0x71,0x10,0xb7,0x5f,0xef,0xa7,0xc7,0xa7,0x70, +0x2d,0x4c,0x3e,0x88,0xf3,0xcd,0x60,0xfe,0x41,0x94,0x3f,0x02, +0xf2,0xfb,0x71,0xb5,0x09,0xb8,0x30,0x46,0x47,0x57,0x1c,0x5b, +0x73,0x3c,0xdd,0x94,0x6f,0xa1,0x22,0xb5,0x31,0x93,0x9b,0xc3, +0x5a,0x0d,0xdf,0x28,0x13,0x6b,0x4c,0x0b,0x42,0x22,0x7c,0x9a, +0xf1,0x6b,0xce,0xd9,0x4b,0xbc,0x5e,0x90,0x56,0xb0,0x56,0x08, +0xf5,0x8d,0x6c,0x65,0x56,0x49,0x6e,0x4e,0x11,0x2d,0x90,0x9d, +0x38,0xf9,0xe9,0x3a,0x58,0x76,0x38,0xaf,0x85,0x3f,0x98,0x6f, +0x5c,0x74,0xac,0x8c,0x43,0x7f,0xe1,0x3b,0xb2,0x07,0x65,0x77, +0xa5,0x9b,0xa5,0xf6,0xe0,0xdc,0xbb,0xac,0xd8,0xba,0x8b,0x0c, +0x29,0x74,0x0d,0x2a,0xc0,0x27,0xbd,0xd8,0xa7,0x4d,0x65,0xc0, +0x1c,0x82,0xc6,0xb4,0x42,0xaf,0x95,0xc2,0x59,0x49,0x6b,0xd8, +0xa7,0x60,0x3a,0x5c,0xa1,0x53,0xc5,0x7d,0x44,0xd8,0xa7,0x2f, +0xee,0xa3,0x76,0x41,0x98,0x4c,0xa4,0x51,0xb3,0xb0,0x9d,0xc6, +0x73,0x3f,0x6e,0xbf,0x3d,0xbc,0x5d,0xe1,0x62,0x02,0xcf,0x21, +0x00,0x9f,0xff,0xc4,0xc0,0x17,0xf1,0x30,0x25,0xf5,0xb7,0x5c, +0xef,0x4e,0x1e,0xed,0x8c,0xb1,0xf7,0x14,0xa6,0x9d,0x8b,0xa7, +0xb5,0x7b,0xd2,0x05,0x98,0x16,0x01,0x93,0x62,0xb9,0x15,0x78, +0x13,0x03,0xe0,0xe6,0x5a,0x71,0x82,0xc8,0x5f,0xa3,0xef,0xba, +0x8a,0x0b,0xd8,0x8d,0xe1,0xeb,0xce,0x6c,0x38,0x1b,0xa3,0xc5, +0xc3,0xaa,0x68,0x50,0x4d,0x84,0xd5,0x39,0xc9,0x5e,0x89,0x5e, +0x09,0xc7,0x5b,0x0a,0x78,0xa7,0x01,0xad,0xe7,0x96,0xcd,0xe6, +0x1e,0x7c,0xba,0x77,0x86,0x7b,0x86,0xab,0x59,0xb8,0xe1,0x69, +0x7d,0xca,0xe0,0xd9,0xf0,0x10,0x33,0x70,0x29,0x9b,0x42,0xe5, +0xed,0x74,0xa6,0x2d,0x23,0xbd,0x4d,0x06,0x03,0xd2,0xa7,0x0a, +0xd7,0x21,0x93,0x40,0x14,0x7e,0x86,0x51,0x8c,0xf0,0x78,0x3a, +0xe6,0xc0,0x67,0x90,0xc3,0x48,0x5b,0xe1,0xed,0x25,0xf0,0x4c, +0x18,0x3f,0xa4,0x25,0x8e,0x87,0xeb,0x4b,0xc4,0xf1,0xe2,0xb2, +0x6b,0xf0,0x1b,0x5c,0xc1,0x75,0xcc,0xd6,0xf0,0x8d,0x67,0xb6, +0x9e,0x8b,0xd5,0xe4,0x61,0x49,0x14,0xec,0x4d,0x82,0xc5,0xb9, +0x49,0xc7,0x13,0x7d,0xe2,0x7d,0x2e,0xe5,0xf2,0x2e,0x3d,0xba, +0xdf,0x58,0x35,0xd0,0x93,0xa7,0xfa,0xa4,0x7b,0xa6,0xbb,0x1f, +0x0d,0x33,0x3e,0x6d,0x48,0x4f,0xbe,0x12,0x1e,0x61,0x35,0x2a, +0xb2,0x92,0xb6,0x9e,0xc8,0xb4,0x64,0x49,0x9b,0x3a,0x3d,0x11, +0xe5,0x59,0x0d,0xe9,0x49,0x05,0x11,0xbf,0x43,0x04,0x73,0x79, +0x2e,0xf9,0x1d,0x32,0xe7,0xb2,0xe2,0x3d,0x03,0x02,0x11,0x38, +0x0a,0x23,0x18,0xb8,0x0a,0xa3,0x08,0x64,0xd2,0xe3,0x4c,0x0a, +0xa3,0xf7,0xe0,0x4c,0x60,0xd6,0xab,0xae,0x35,0xc0,0xe3,0xb7, +0xf7,0x84,0xd5,0x5d,0xe2,0xea,0x47,0x2c,0x28,0xc4,0xc2,0x67, +0x49,0x3f,0xa5,0xbb,0xb7,0xf1,0x36,0xe8,0x8c,0x05,0xc1,0x98, +0x30,0x23,0x4e,0x5f,0x0e,0x38,0x98,0x70,0x31,0x1a,0xe4,0x64, +0x3b,0xc5,0xd9,0x7a,0xc2,0xec,0x5d,0xf8,0xda,0x00,0x5e,0x6f, +0x15,0x57,0xea,0x09,0x2b,0x37,0xe0,0x7b,0x03,0xb8,0xca,0x6a, +0xee,0x90,0x1e,0x30,0x6f,0xa3,0x5a,0x40,0x03,0x1d,0xfe,0x14, +0xa6,0xde,0xcf,0x79,0x47,0xed,0x5f,0xdd,0x15,0xa8,0x8b,0x61, +0x72,0x97,0xc3,0xac,0x1d,0xf0,0xe5,0x96,0xfc,0x1e,0x1e,0x9d, +0x6e,0x22,0xb9,0xa2,0xfe,0x80,0x22,0x1c,0x72,0xc9,0x56,0xcc, +0x7b,0xc2,0x42,0x1e,0x6d,0x77,0x1b,0x30,0xef,0x39,0x4d,0x63, +0xa8,0x74,0x25,0xf0,0xa2,0x3e,0x5c,0x04,0x3d,0xea,0xc3,0x57, +0x02,0x3b,0x87,0xb9,0x86,0x27,0x1f,0xe6,0xdf,0x65,0x03,0x53, +0xf9,0x74,0xe4,0x4a,0x60,0x03,0x3f,0x3d,0x7f,0x0e,0x5a,0x3d, +0x89,0x5d,0x70,0xfc,0xf0,0x95,0xc0,0x0f,0x6f,0x7f,0xf5,0xa2, +0x5b,0xba,0x12,0xf8,0xe8,0x2e,0x7d,0x15,0x75,0x0d,0x0e,0x50, +0x7d,0xa8,0x86,0x3d,0x94,0xe7,0x7e,0x43,0x11,0xc6,0xfc,0x73, +0x29,0xb0,0xfe,0xc8,0xa5,0xc0,0xff,0xa2,0x40,0x09,0x4b,0x08, +0x8e,0x0c,0x0c,0x3a,0x71,0x8a,0x3f,0xfd,0x33,0x4c,0xef,0xc3, +0xe9,0xb0,0x8d,0xb9,0x94,0xd2,0x94,0x5e,0x95,0xe5,0xdc,0xc2, +0x6f,0xb3,0xc0,0x29,0xb6,0xf3,0x03,0x52,0xf4,0xf9,0xfa,0x98, +0x96,0xb8,0x96,0x44,0x0e,0x97,0xe3,0x06,0x2d,0x58,0xc5,0x06, +0xe3,0xa8,0x23,0x38,0x7a,0x0e,0x4e,0xad,0x36,0xe2,0x9f,0xff, +0x52,0xf6,0x2c,0xea,0x5f,0x5c,0x8c,0x68,0xdc,0x2d,0x18,0x33, +0xd1,0x51,0x17,0x23,0xc2,0x15,0x5f,0xe1,0xb6,0xa6,0x4a,0xb9, +0x49,0x7f,0xcd,0x16,0x46,0x13,0x18,0x40,0x13,0x58,0xaf,0x49, +0x3b,0x9c,0x16,0x0e,0x1c,0xd5,0x06,0x4f,0xd6,0x03,0xa7,0x6f, +0x5a,0x86,0xfb,0x16,0x16,0xd3,0x1c,0xab,0xc2,0xa8,0x5f,0x61, +0x42,0x0c,0xcc,0xa6,0xe2,0x39,0x01,0xc9,0x37,0x38,0x01,0xe6, +0xe2,0xc4,0x2a,0xaa,0x24,0x78,0x18,0xbd,0xf5,0x95,0x3b,0x4c, +0xe7,0xe0,0x4c,0x2f,0x33,0x34,0xb9,0x74,0x78,0xa4,0xa7,0x02, +0x03,0xe8,0x48,0x81,0x85,0xb9,0x7d,0x38,0x17,0xb6,0x32,0x1d, +0x29,0xad,0xe9,0x35,0x59,0xce,0xad,0xfc,0xba,0xa3,0x38,0xd3, +0x0e,0xc7,0x9c,0x4c,0xd6,0xe3,0x9b,0x63,0xba,0xe2,0x3a,0x93, +0xa4,0xb1,0xee,0xd7,0x82,0xed,0x74,0xac,0x63,0x0d,0x70,0x34, +0x32,0x38,0xad,0xc6,0x90,0xff,0xe1,0x8f,0x9a,0xe7,0x51,0xcf, +0xe9,0x60,0x8f,0xf4,0x0a,0x87,0x98,0xe8,0xc8,0x8b,0x91,0xe1, +0x8a,0x3f,0xa3,0x72,0x53,0x8d,0xdc,0x77,0x02,0x91,0x6e,0x6b, +0x35,0x67,0xfc,0xcf,0x07,0x9c,0x3f,0xa1,0x28,0xdd,0xd8,0xa5, +0x0d,0x51,0x54,0x0c,0x62,0x14,0xca,0x98,0xf3,0x29,0xe7,0x53, +0xd3,0x14,0x26,0xc1,0x6d,0x61,0xf6,0xdf,0x11,0x3b,0x49,0xc7, +0xc1,0xc1,0xcc,0x3e,0x9c,0x49,0x43,0xd6,0x9a,0x7c,0x29,0xbd, +0x5a,0x1a,0xc7,0x26,0x73,0x9c,0x6e,0x37,0x47,0x0a,0x59,0x63, +0x4c,0x5b,0x5c,0xdb,0x70,0xc8,0x94,0xb5,0x60,0x3d,0x1d,0xc6, +0x68,0x53,0x3a,0x8c,0x31,0x38,0xad,0xda,0x90,0x7f,0xf5,0x5b, +0xc5,0x37,0x51,0xdf,0xd0,0x61,0x98,0xf6,0xfc,0x33,0x8c,0xd7, +0xb8,0xb1,0xa9,0x4a,0x0e,0x16,0xfa,0x13,0xda,0x66,0x5e,0x22, +0x80,0xaa,0x30,0xa3,0x5f,0xac,0xd1,0x7c,0x35,0x64,0x86,0x72, +0x9a,0xc2,0xed,0x7e,0x71,0x2e,0x03,0x97,0x20,0x86,0xe0,0x25, +0x70,0x83,0x4b,0xcc,0xa4,0xbf,0xbe,0x18,0xb4,0x22,0xb6,0x35, +0x9a,0x1d,0xc7,0xf2,0x2d,0x8f,0xf1,0xb5,0x6e,0x57,0xb4,0x4a, +0xec,0xb9,0x75,0x62,0x36,0xb9,0x06,0x63,0x4a,0x60,0x52,0x3a, +0x4c,0xd5,0x4a,0xe4,0x03,0x70,0xbc,0xfb,0x5c,0x83,0x15,0xdc, +0x81,0x3f,0x3d,0xe9,0x68,0x3f,0x55,0xa8,0x80,0x5b,0x97,0xf1, +0x16,0x68,0xaa,0xa1,0x26,0x6e,0xd5,0x80,0xad,0xf6,0x2c,0x3a, +0x6a,0x53,0x2f,0xb3,0x01,0x37,0x29,0x36,0x19,0x51,0x1e,0x2f, +0xea,0x1f,0xf6,0x32,0xf2,0xc3,0x5e,0x66,0x43,0xcf,0x7a,0x0b, +0x0d,0x3d,0x9d,0x3d,0x06,0x55,0xfa,0xfc,0x9d,0xf6,0xee,0x9e, +0x86,0x81,0x16,0x8d,0x2b,0x1a,0x4f,0x75,0x2b,0x7b,0xf8,0x4d, +0x9d,0x87,0xfb,0x4c,0x2f,0x73,0xe2,0x61,0x38,0x4b,0x42,0x13, +0x83,0x23,0x02,0x83,0x02,0x4e,0xf2,0xe1,0x34,0x33,0xcb,0xfb, +0xa4,0x7d,0x43,0x69,0x66,0xda,0xd2,0x6b,0xb3,0x9c,0x86,0x33, +0xa3,0x68,0x87,0xa3,0x4f,0x25,0xeb,0xd2,0xcc,0x74,0xc6,0x75, +0x0d,0x67,0x46,0x45,0x0b,0x76,0xb0,0x41,0x38,0xd6,0x90,0x86, +0x84,0xa5,0x99,0x31,0xe0,0xdf,0xfe,0x49,0x33,0xf3,0x82,0x86, +0xe4,0xe8,0x70,0x66,0x86,0x61,0xf4,0x0b,0x2a,0x37,0xd7,0x50, +0x18,0xed,0x14,0xa4,0x2b,0x55,0x4f,0xc1,0x4e,0xb8,0xd8,0x4b, +0xad,0xc9,0x1c,0x75,0x9c,0x83,0xae,0xda,0xe0,0x8a,0x3b,0xd1, +0x5e,0x1b,0x0c,0x59,0x47,0x9c,0xba,0x01,0xc7,0xe3,0xe4,0x79, +0xd2,0x6e,0x2e,0x53,0x60,0xec,0x9d,0xdf,0xd3,0x87,0x37,0x59, +0xda,0xd6,0x2f,0x6c,0x93,0x36,0x59,0xfa,0xec,0xce,0x02,0x98, +0x8e,0x72,0x95,0xed,0x3c,0x7e,0xfe,0xe7,0xf0,0x26,0x4b,0x53, +0x39,0x71,0x6e,0xd0,0xc7,0x71,0x4b,0xd8,0x07,0x39,0x98,0xdd, +0x47,0x2d,0xfc,0x46,0xa6,0x3d,0xa5,0x85,0x22,0x8a,0x8e,0x7b, +0xfd,0x51,0x94,0xb7,0xc7,0x51,0x27,0x53,0xf4,0xf8,0xa6,0xe8, +0xf6,0xf8,0x0e,0x9a,0xca,0xc5,0xb8,0x4b,0x0b,0x36,0x4b,0xe8, +0x37,0xa6,0x75,0x63,0x1c,0x7e,0x4e,0x53,0xf9,0xfd,0x6f,0xd5, +0xdf,0x44,0x4a,0xa9,0x34,0xe9,0x15,0x0e,0x7c,0x4c,0xe5,0x7b, +0xdc,0xd2,0x54,0x2d,0x37,0x09,0xbe,0xa2,0x68,0x09,0x4d,0x08, +0x89,0x3c,0x25,0xc5,0x46,0x42,0xcb,0xb4,0x3e,0x9c,0xf6,0xbf, +0x68,0xd9,0xf8,0x11,0x2d,0x7a,0x14,0x2d,0xed,0xf1,0x23,0x68, +0xd9,0xfe,0x11,0x2d,0x66,0x34,0x34,0x63,0x3f,0xa2,0xa5,0xf2, +0xff,0x81,0x96,0x97,0xa8,0x44,0xd1,0x52,0x4f,0x8d,0x24,0xfe, +0x22,0x18,0xc2,0x2f,0xac,0x26,0x2e,0x26,0xf8,0xed,0x3b,0xf8, +0x96,0xc1,0x6f,0xa5,0x0b,0xd4,0xbe,0x5d,0x8c,0xdf,0x32,0xa0, +0x87,0x0f,0x08,0x4c,0x03,0xaf,0x2e,0xf1,0x9c,0x1e,0xb8,0xe0, +0x34,0xa4,0xdf,0xce,0xe1,0x91,0x7e,0x38,0x02,0x91,0x5d,0xec, +0xa4,0xbf,0x0c,0x85,0x5b,0xc4,0xe9,0xbe,0xfa,0x6f,0x7a,0x77, +0xcc,0x9c,0xf9,0xd6,0x83,0xdd,0x4b,0x4b,0xf6,0x72,0x68,0x04, +0xc5,0x1a,0x58,0x8c,0x1a,0x4c,0xf7,0xdd,0xe6,0x57,0x59,0x0f, +0x0d,0x73,0xf9,0xe3,0x3b,0x8c,0x97,0xa8,0xef,0xad,0xb7,0xe4, +0xa3,0x62,0xa2,0xa3,0xa3,0x62,0xb8,0xa1,0x09,0xfd,0x10,0x08, +0xcf,0x28,0xa7,0x37,0xb1,0x19,0x5a,0x72,0xd4,0x31,0x35,0x66, +0x66,0xd7,0xcb,0x84,0x66,0x36,0x22,0xfc,0x62,0xf8,0xc5,0xd3, +0xdc,0x90,0x3c,0x2e,0x23,0xd2,0x8c,0x65,0x7d,0x28,0x1b,0x9e, +0x71,0xf3,0x3f,0xfc,0x20,0xff,0xc3,0x0f,0x0a,0x86,0x15,0x12, +0x3f,0x94,0xfe,0x9e,0xf1,0x08,0x3f,0x5e,0xd2,0x19,0x0f,0x07, +0xd5,0xf4,0xbf,0x34,0xfd,0x4e,0x9a,0xf1,0x2a,0x58,0x13,0x36, +0x1c,0x50,0x79,0xe1,0xf2,0x49,0x82,0xcf,0xa8,0x89,0x7d,0x26, +0xed,0x11,0xbd,0x83,0x76,0x13,0xea,0x7a,0x9f,0xd1,0xd6,0x32, +0x79,0x70,0x19,0x79,0x49,0x75,0xd4,0x28,0x5d,0xe1,0x7d,0xf7, +0x3c,0xc1,0xfa,0x65,0xd7,0xda,0x11,0x4b,0x9c,0x39,0xfc,0x6d, +0x2d,0xa3,0x8a,0x37,0x25,0x0e,0xff,0x9d,0xf9,0xd1,0xa0,0xd0, +0x87,0x0a,0xd2,0x18,0x53,0xa4,0x31,0x3a,0xb5,0xf0,0x9b,0xcd, +0x71,0x9a,0xdd,0xdc,0x91,0x31,0xb6,0xc6,0xb5,0x0e,0x8f,0x71, +0x8b,0x16,0xac,0x93,0x12,0x6f,0x46,0x47,0x38,0x9a,0xd6,0x3d, +0x43,0xfe,0xbb,0xdf,0x2a,0xfe,0x15,0x29,0xd5,0x3d,0x93,0x1e, +0x41,0xfb,0x23,0x60,0x9f,0xe2,0x32,0x5a,0xf7,0x84,0x79,0xd0, +0x4c,0xe8,0xe9,0x38,0xc8,0x64,0x70,0xdb,0x38,0x6a,0xa7,0x33, +0xa9,0x9d,0xc6,0x9d,0xe3,0x68,0xbb,0x99,0x42,0xdb,0x0d,0xae, +0xa2,0x46,0xf9,0x75,0xd3,0xfd,0xf6,0xde,0x2b,0xe6,0xf5,0xbc, +0x91,0xee,0x76,0x7d,0x25,0x2b,0x4e,0x18,0xfb,0x13,0xb9,0x63, +0xf9,0x5c,0xff,0xba,0x76,0x75,0x0b,0x7f,0xb8,0x6b,0x7d,0xcf, +0xbe,0x1a,0xea,0xa2,0x7c,0x06,0x83,0x49,0xe2,0x0b,0xcd,0xe8, +0x33,0xce,0x67,0x9c,0x4e,0x3b,0xc9,0x63,0xa1,0x1e,0x64,0x30, +0xa7,0x5d,0xc2,0x5d,0xc3,0x5d,0x39,0x64,0xc4,0x50,0x81,0x13, +0x42,0xd1,0x94,0x89,0x29,0x8c,0x2e,0x8c,0xa2,0x62,0xdc,0xa7, +0x8b,0x19,0x3a,0x2a,0x8e,0x26,0x67,0x60,0x02,0x4c,0xe9,0xc3, +0x29,0xb0,0x9d,0x69,0x48,0xa9,0x4d,0x2b,0x97,0x8a,0xf9,0x5e, +0x4b,0x94,0xb3,0x59,0xe2,0x9f,0x6e,0xc0,0x57,0xc7,0x34,0xc4, +0xd7,0x27,0x4a,0xb3,0x5a,0xa4,0x45,0xb5,0x77,0xc8,0x3c,0x5b, +0x1c,0xbd,0x08,0xa7,0x56,0x19,0xf1,0x0f,0x7e,0x2a,0x7c,0x12, +0xf5,0x84,0xce,0x49,0xbf,0x6b,0x38,0xee,0x17,0xe8,0x9c,0x9e, +0xe0,0x96,0xc6,0xb2,0x4d,0xb0,0x29,0x3c,0x51,0x7a,0xd4,0x9d, +0x3c,0x2c,0x05,0x73,0x32,0xb4,0xab,0xef,0x86,0x10,0xd8,0x2b, +0x06,0x0a,0xfd,0x2c,0x65,0x96,0x8c,0x8a,0xd2,0xc4,0xe5,0x2c, +0x26,0xe2,0x02,0xf2,0x0e,0x12,0x97,0x49,0x47,0xcb,0xc9,0x2f, +0x90,0xb8,0x80,0x9d,0x04,0x55,0xc2,0x4c,0x12,0x9e,0x20,0xbd, +0x97,0x86,0x5b,0x1a,0xd8,0xa8,0x3e,0x1c,0x45,0x07,0x56,0x9f, +0x52,0x9b,0x5e,0x9e,0x49,0xc3,0xbd,0xdf,0x12,0xc7,0xda,0x2c, +0xf5,0x4f,0x93,0x06,0x56,0x1f,0x5f,0x37,0x3c,0xb0,0xf9,0x5a, +0x30,0x6b,0x64,0x60,0x4b,0x70,0x6a,0xa5,0x31,0x7f,0xff,0x7d, +0xc1,0xe3,0xe1,0x81,0xe9,0xfd,0x77,0x60,0x77,0x71,0x6d,0x63, +0x99,0x5c,0x9e,0x14,0xeb,0xea,0x10,0x5c,0x65,0x8a,0x32,0x69, +0xb1,0xb3,0x03,0x56,0xc4,0x82,0xb2,0xf4,0x1c,0x72,0x5f,0x61, +0xeb,0x50,0x1c,0xca,0xd8,0x14,0x0a,0xd0,0xc9,0xcc,0xa5,0xa4, +0xec,0x16,0xd9,0x60,0xbb,0x58,0xc5,0xfe,0x20,0x2a,0x10,0x58, +0xb0,0xb6,0xeb,0x25,0x2c,0x6b,0xc7,0x65,0xbf,0xc3,0xdc,0x36, +0x9c,0xfb,0x46,0x6f,0x25,0xce,0x34,0x82,0x99,0x73,0x71,0x01, +0x53,0x85,0x3b,0x09,0x76,0x75,0xdf,0x04,0x57,0x38,0xc5,0xa2, +0x2b,0x1e,0x26,0x30,0x03,0x36,0xe2,0x8c,0x61,0x3f,0x14,0x47, +0x6e,0xab,0xed,0x17,0xe7,0x19,0xfe,0x35,0xaa,0x9d,0x5d,0xb5, +0x90,0x0c,0x1d,0xc0,0x2b,0x83,0x07,0x18,0x4d,0x48,0x22,0x68, +0x2b,0xde,0x05,0x5b,0x56,0x70,0x93,0x2e,0xde,0x93,0x17,0xa7, +0xa1,0x3c,0x0b,0xff,0xfa,0x9e,0x18,0x62,0x71,0x3b,0x2b,0x3c, +0x17,0x17,0x92,0x4e,0x71,0xcb,0x2d,0x16,0xf8,0x28,0xaa,0xba, +0x7e,0x4c,0x38,0x7e,0x89,0x47,0x7b,0x6f,0x2c,0x0e,0xc7,0xe8, +0xf3,0x71,0xc6,0xd2,0x43,0x9f,0x26,0x5c,0x88,0xa4,0x9a,0x42, +0x55,0x5c,0xaa,0x2f,0x8c,0x65,0x35,0xb5,0x71,0x9c,0x35,0x5a, +0x59,0x66,0xe8,0xf2,0x70,0xba,0xf3,0xcf,0x9a,0x7a,0xe9,0x1a, +0x2d,0xf3,0x01,0x30,0x8f,0x66,0xea,0x94,0x60,0xd2,0x31,0x38, +0xa7,0x9f,0xde,0x4d,0x15,0x5d,0x1d,0x7e,0x52,0xad,0xde,0xcb, +0x49,0x23,0x7b,0x44,0xd4,0x76,0x8b,0xcb,0x0c,0xff,0xfa,0xac, +0x5d,0xdc,0xca,0x88,0x9c,0x28,0x4f,0x06,0xd5,0xe1,0xd2,0x90, +0x3a,0xd3,0x87,0xe7,0x09,0x18,0x0b,0x8f,0xd1,0x98,0x15,0x03, +0xa5,0x0d,0x7e,0xa7,0x08,0x8a,0x30,0x85,0xc5,0x37,0x1b,0x48, +0x13,0xd4,0x1c,0x61,0xc1,0x0e,0xfd,0x49,0xe7,0x90,0x2e,0x55, +0x96,0xdf,0xe0,0x27,0x04,0x95,0x70,0x27,0x9b,0x44,0xa5,0xd4, +0x32,0xe6,0x52,0x6e,0xf6,0x25,0x19,0x2c,0x10,0x16,0x74,0xfd, +0x7b,0xbc,0x1e,0x2b,0x7c,0xd8,0x4e,0xbe,0xb3,0x7b,0x6a,0xf9, +0xf0,0x48,0xe9,0x25,0x5e,0xb9,0x69,0x47,0xdd,0xba,0x72,0x4e, +0x5c,0x79,0x9e,0x68,0x1f,0x3d,0x78,0x0c,0xc7,0xda,0x15,0x1a, +0xf1,0x20,0x57,0x75,0xa7,0xa1,0x5f,0x7a,0xb8,0xd8,0x12,0xa1, +0x84,0x34,0xdf,0xca,0xbb,0x93,0x74,0x05,0xe6,0x47,0xc2,0xb2, +0x34,0x98,0x5a,0x4e,0xc9,0x8f,0x53,0x1c,0x71,0xc1,0x09,0xdc, +0x7a,0xe6,0xe4,0x2e,0xd7,0x2d,0xa6,0x87,0x38,0x15,0xdc,0x2c, +0x41,0x23,0x72,0x04,0x1a,0x7f,0xc2,0x84,0x3e,0xda,0xfe,0x37, +0x33,0x8d,0x29,0xf5,0xe9,0x15,0x99,0x14,0xb2,0xbb,0x2c,0x91, +0xb3,0x5d,0x74,0x22,0x4d,0x9f,0xaf,0x89,0x69,0x8c,0x6b,0xa4, +0x44,0xa4,0x16,0x46,0x0b,0xe6,0xb3,0xc1,0xf3,0x8e,0xcd,0x5e, +0x88,0x53,0x28,0x62,0x1f,0xbf,0x2f,0x7e,0x1a,0x39,0x0c,0x8c, +0x6e,0x41,0x73,0xb8,0x52,0x84,0x29,0xde,0xc6,0x85,0x8d,0xe5, +0x72,0x82,0x8a,0x60,0x41,0x6a,0x75,0x0a,0xf5,0x72,0x34,0xbb, +0x0a,0xf8,0xe3,0x9d,0xf6,0x03,0xd6,0x1d,0x1c,0xce,0xc6,0xf5, +0xe4,0x54,0xa3,0x57,0xbb,0x6b,0xb3,0xa1,0x2f,0x9f,0x6f,0x9a, +0x65,0x94,0x74,0x84,0x83,0x0b,0xe2,0x4c,0x02,0xb7,0xd0,0xe3, +0x86,0xae,0x2a,0xda,0xe1,0x2d,0x15,0xa3,0x5b,0x68,0xdc,0x43, +0x43,0x36,0x09,0xe5,0x71,0x37,0x9b,0x68,0x28,0x47,0x07,0x55, +0x9b,0x98,0x56,0x2e,0x03,0xf9,0x81,0x36,0x16,0x5f,0x4b,0x41, +0x5c,0xfd,0x2b,0xac,0x66,0xc0,0x63,0x3e,0xc1,0xad,0xbf,0xd2, +0x76,0x87,0x1e,0xb8,0x82,0xd0,0x96,0xb0,0x1a,0xc6,0xb1,0x60, +0x3b,0x1d,0xb6,0xd2,0xe3,0xad,0xb4,0x1a,0xc5,0x0f,0xba,0x13, +0x98,0x17,0x09,0x33,0x52,0xe0,0xd3,0x52,0x77,0x2a,0xc2,0x27, +0x38,0xe0,0xac,0x93,0xb8,0xfd,0xec,0xa9,0x95,0xce,0xcb,0x6d, +0x54,0xbb,0x1c,0xf8,0xaa,0x5b,0x85,0x6f,0x93,0xbe,0xe2,0x30, +0x05,0x7f,0xa6,0x15,0x73,0x3c,0x8c,0xef,0xc3,0xf1,0xa0,0xcc, +0x34,0xd1,0x20,0x54,0x4a,0xf4,0xa0,0x41,0x98,0x60,0xbb,0x48, +0xa2,0x47,0x6d,0x4c,0x53,0x7c,0xe3,0x30,0x3d,0x56,0x68,0xc1, +0x02,0x36,0x64,0xae,0x15,0x8e,0x5e,0x80,0xd3,0x68,0x14,0x9e, +0xfc,0x5c,0xfc,0x24,0xea,0x19,0x8d,0x82,0xe1,0x47,0x7a,0xd0, +0x7a,0xf9,0x0d,0xe5,0x6d,0xb9,0x92,0xc4,0x5b,0x49,0xae,0xc8, +0x0b,0x25,0x70,0x95,0x54,0x68,0x14,0xab,0xe6,0xa8,0x76,0xe6, +0xf2,0x9e,0xd7,0x1c,0x6f,0xda,0xf5,0x73,0xf8,0x05,0xea,0x90, +0xc0,0x8e,0xe3,0x03,0xde,0x6d,0x06,0x01,0x7c,0xb6,0x7e,0x9a, +0x4e,0xa2,0x2e,0x07,0x6a,0x38,0x91,0xe0,0x32,0xdc,0xae,0x4f, +0x4d,0xc5,0x56,0x71,0x12,0x6c,0x85,0x75,0x9d,0xb8,0x0e,0x16, +0xb2,0x5d,0x71,0x57,0x53,0xdb,0xf2,0x1c,0xdb,0x78,0x5d,0xf7, +0x7d,0xbe,0xfb,0x83,0x39,0x31,0xb3,0xbf,0x57,0x98,0xa4,0xdd, +0x2f,0x94,0x63,0x80,0xde,0x30,0x3d,0x0a,0x49,0xb7,0x9a,0xae, +0x48,0xcc,0x06,0x5f,0x35,0xb3,0x43,0xf6,0x68,0x43,0x84,0x1f, +0x61,0xaa,0xf8,0x23,0xd3,0xaf,0x44,0x2e,0x09,0xde,0xa6,0x6c, +0x22,0x76,0x93,0xd7,0x94,0xfa,0xc9,0x75,0x32,0xd8,0x3a,0x54, +0x85,0xa7,0x2e,0x83,0xf6,0xe0,0x46,0x54,0x58,0xc4,0xba,0xfc, +0x28,0x5d,0xb6,0x3a,0x45,0xd8,0xc7,0xe8,0x3e,0x27,0x47,0xf0, +0x61,0x13,0x2b,0xfc,0x85,0x3d,0xa4,0x43,0xdc,0xda,0xc7,0xc2, +0xc4,0x48,0x18,0x1b,0xfd,0x3a,0x4e,0x22,0x8d,0x89,0x1f,0x9e, +0x3e,0x83,0xc1,0xe7,0xa9,0xe7,0xfa,0xed,0xf7,0x8b,0x11,0x3f, +0xcb,0xb4,0xc5,0xa5,0x06,0xc2,0x68,0x56,0xcb,0x00,0xc7,0x39, +0xa2,0xa5,0xad,0xc4,0x98,0xf0,0x4b,0x30,0xaa,0xa2,0x9e,0xd6, +0x66,0xd4,0xb8,0x0c,0x1a,0x31,0x4c,0xdd,0x26,0x98,0x6c,0x07, +0x67,0xcd,0xd2,0xbb,0x78,0xb4,0xa9,0xc0,0x4f,0xcb,0xd4,0x3b, +0xb8,0x49,0xd0,0x2e,0x4c,0xfb,0x1f,0xf4,0xc1,0x54,0xf8,0xbc, +0x0f,0x3f,0x1f,0x8e,0x7c,0x43,0x5a,0xa5,0xd4,0x07,0x76,0x5a, +0xe0,0x27,0x76,0x0b,0x4f,0xa4,0xea,0xf3,0x75,0x31,0xcd,0xf1, +0x4d,0xc3,0x91,0x5f,0xa5,0x05,0x8b,0xd8,0x90,0x39,0x96,0x38, +0x66,0x3e,0x2d,0x4c,0x46,0xfc,0xb3,0x9f,0x4b,0x9e,0x45,0x3d, +0x95,0x22,0xdf,0x2d,0xec,0xfa,0x58,0x98,0x1e,0xe3,0x9a,0xc6, +0x0a,0xb9,0x84,0x3e,0x02,0x9f,0x35,0xdc,0x96,0x96,0xb3,0x7e, +0xd9,0xcd,0x18,0x65,0xf8,0x75,0x4a,0xb7,0xbd,0x0c,0x2f,0x84, +0xf5,0xb3,0x46,0x29,0x72,0xbb,0x71,0xec,0xdf,0x2b,0x61,0x0a, +0x70,0x57,0x74,0xc5,0xbb,0x94,0x94,0x7e,0xfb,0xb4,0x2c,0x17, +0xd8,0x73,0x90,0x0c,0xcf,0x68,0x0a,0xbe,0xa5,0x1c,0xec,0x51, +0x22,0xdf,0xc2,0x2a,0x25,0x16,0x6d,0xcd,0xc8,0x6a,0x5c,0xf6, +0x9a,0x05,0xab,0xe9,0xb0,0x6a,0x35,0xae,0x62,0xa0,0x48,0xec, +0x21,0x4a,0x79,0x3b,0x8b,0x0e,0x55,0x7e,0xdd,0xd1,0x3a,0xb2, +0x82,0x55,0xc6,0xa6,0xe6,0x26,0xe5,0x27,0x16,0x18,0xa6,0xf2, +0x36,0x5b,0x54,0x94,0x91,0xd5,0xca,0x37,0xe6,0x1b,0xb2,0xab, +0x72,0x4b,0xf3,0x2b,0x2c,0x6a,0xac,0x1b,0x1d,0x54,0xed,0x36, +0x3a,0xcf,0x1d,0x5e,0xc1,0x9a,0x90,0xff,0xb6,0xea,0x7e,0xc3, +0x9d,0xa3,0xdf,0xd8,0xfd,0xe2,0xc2,0x89,0xd3,0xa1,0x91,0xd0, +0xd6,0x3e,0xbc,0x82,0x15,0xc9,0xb8,0x9a,0x1e,0x35,0x3d,0x64, +0x61,0x58,0x6e,0x5e,0x6b,0xd3,0x44,0xbb,0x90,0x30,0xa8,0x4d, +0x90,0xe9,0x85,0xcd,0x18,0xf8,0xad,0x86,0x12,0x7a,0xe2,0xe6, +0x1e,0x60,0x58,0xb4,0xc7,0x56,0x72,0xe6,0xed,0x88,0x6b,0xd8, +0xc2,0x34,0x26,0x37,0x50,0xd6,0x8e,0x00,0x76,0xfc,0x08,0x6b, +0x6b,0x63,0x1a,0x87,0x01,0xbb,0x04,0x97,0x4b,0x80,0x95,0x58, +0xbb,0xe0,0x23,0x6b,0x4b,0xfe,0x61,0xad,0xe9,0x47,0xd6,0x5e, +0x47,0x59,0x43,0xb9,0x0a,0x28,0x8e,0xa4,0x44,0x1e,0x3a,0xc1, +0x87,0x58,0x6f,0xd7,0xd7,0xde,0x68,0x5a,0x68,0xcc,0xbf,0x68, +0xbb,0x72,0xb3,0xf1,0x5b,0xee,0xc3,0x29,0x72,0x53,0xa7,0x57, +0xe3,0xca,0xb6,0xda,0x2a,0x5e,0xfd,0xbe,0xea,0xed,0x43,0x6d, +0x1c,0x38,0x8a,0x14,0xad,0x0b,0x1f,0xae,0xfe,0x97,0xc3,0x4b, +0x4e,0x9b,0x71,0x5c,0xbb,0x7e,0x3d,0x2e,0xdc,0x93,0x67,0xc8, +0xe7,0x24,0x66,0x27,0x66,0xd1,0x93,0x7f,0xd7,0x77,0x19,0xea, +0x28,0x0e,0xbe,0x63,0xb3,0x02,0xb3,0x4f,0xe5,0x06,0x72,0xe2, +0x91,0x66,0xf2,0xe1,0xca,0x8d,0xaf,0xd2,0x1f,0x51,0xcf,0x91, +0xba,0xf3,0xc6,0xbe,0xdf,0x0e,0x72,0xf8,0xad,0x3e,0x81,0x3a, +0xdc,0x87,0x75,0xcc,0x24,0xf8,0x6d,0xd0,0x9c,0x40,0xc6,0x61, +0x3c,0x81,0x75,0x70,0x62,0x27,0x73,0x76,0x83,0xd2,0x39,0xa5, +0x19,0x17,0xf5,0x40,0x25,0x12,0xf6,0xc5,0xc0,0xda,0x24,0xf9, +0x54,0x8f,0x14,0x8f,0x44,0xef,0xfa,0x22,0xde,0xa5,0xc3,0xa6, +0xc7,0xba,0x89,0xeb,0xa7,0x6f,0x0d,0xbf,0x0a,0xa5,0xad,0x58, +0x7a,0x4f,0x67,0x17,0x66,0x30,0xaa,0x22,0x47,0x4e,0xc7,0xd3, +0x79,0x04,0x0f,0x4b,0x8c,0x09,0x20,0xd7,0x87,0x72,0xc3,0xcd, +0xb8,0x6e,0xa4,0xe7,0xed,0xb3,0xc4,0x71,0xb4,0x19,0xd3,0x3c, +0xd4,0xd0,0x9e,0x37,0xd2,0x8c,0x17,0x6a,0x81,0xe2,0x48,0xcf, +0x5b,0x3c,0xdc,0xf3,0x1e,0x4a,0x3d,0x4f,0x82,0x96,0x7e,0xe7, +0xb0,0x22,0x96,0xa0,0x75,0x03,0x97,0xd0,0x9e,0x07,0x29,0x50, +0x47,0x70,0xdf,0xd7,0xb0,0x8f,0x81,0xd3,0xbb,0x09,0xaa,0x7f, +0x0d,0xea,0x8c,0xb8,0x11,0x27,0x10,0xd8,0xb7,0x1d,0xe9,0x0f, +0x4f,0x3e,0x24,0xa0,0xbe,0x1d,0xd5,0x19,0x50,0xc6,0xd1,0x44, +0xf7,0xac,0xce,0x19,0xad,0x73,0xdc,0x5d,0x6a,0x86,0x1c,0xbc, +0x13,0x02,0xe3,0x4f,0x26,0x04,0xc8,0x2f,0xc3,0x5d,0xe4,0x58, +0x95,0x5e,0xdd,0xd1,0x7c,0x3b,0x1b,0xfe,0x92,0x73,0xab,0x4d, +0x9d,0x35,0xf7,0xe2,0x1a,0xa9,0x33,0x69,0xdc,0x51,0x7c,0xb8, +0xa5,0x84,0x5a,0x6d,0x93,0x67,0x16,0x97,0x38,0xd1,0x11,0x3d, +0x49,0x43,0x5f,0xe5,0x93,0xf4,0x1b,0x46,0x29,0xfc,0x09,0x0d, +0x87,0xdd,0xe6,0xfa,0x1c,0x94,0x84,0x10,0x9b,0xd0,0x98,0x0a, +0xda,0x1a,0x74,0x70,0x05,0x7b,0x30,0xf3,0xf8,0x1d,0xe9,0x21, +0xd5,0x2d,0x49,0x29,0x4d,0xb2,0xef,0x58,0xbd,0x14,0x39,0x94, +0xee,0xe2,0x2a,0x13,0x14,0xc9,0xe9,0x84,0xe0,0xbf,0xfb,0x3e, +0x3b,0x22,0x48,0xb6,0xfc,0x9f,0x82,0xe4,0xc4,0x88,0x20,0x89, +0xab,0x1f,0xc6,0xc9,0x88,0x20,0x59,0x60,0x33,0x7b,0x31,0x7e, +0x5e,0x65,0xcc,0x3f,0xf8,0xb1,0xf0,0x71,0xd4,0x63,0x1a,0x02, +0x9d,0xae,0x61,0x71,0x2d,0x85,0xe0,0x16,0x2e,0xa6,0x21,0xa8, +0x10,0x3a,0x09,0x5a,0xb2,0xd8,0x76,0x0a,0x4d,0x36,0xe3,0x1c, +0xc5,0x4e,0x6b,0xb9,0xbb,0x30,0xbd,0x08,0x8e,0xc2,0x3b,0x05, +0xe1,0x24,0x58,0x30,0xe2,0x49,0x5a,0x90,0x3f,0x08,0xbb,0x16, +0xb1,0x38,0x6b,0x2b,0xd1,0x44,0xcb,0x7e,0x06,0xe3,0x61,0x37, +0x31,0x84,0x4d,0xed,0xd2,0x53,0x35,0x0d,0x41,0xb9,0x9d,0xc5, +0x56,0xdc,0x40,0xda,0x71,0x93,0x21,0x2b,0x98,0x4f,0x6f,0x47, +0x65,0x43,0xd6,0x1e,0x33,0xc8,0x4f,0x60,0xd8,0x81,0x86,0x5f, +0x6b,0xed,0xc6,0xd1,0x6c,0x6c,0x7a,0x74,0x46,0x54,0x9a,0x49, +0x2a,0xef,0xaf,0xed,0x78,0xc0,0xda,0xb2,0xc9,0x99,0x4f,0xcb, +0x92,0x9e,0x38,0xc6,0x49,0xcf,0x24,0xf1,0xd3,0x97,0x76,0xf2, +0xec,0xa3,0xfc,0x75,0xeb,0x64,0x26,0x0d,0xae,0x96,0x70,0x53, +0xdc,0x86,0xc5,0x0f,0xb5,0xb7,0x63,0xb6,0x11,0x64,0xd3,0x9a, +0xde,0x64,0x30,0x28,0xdf,0x81,0xad,0x8c,0xa8,0xbd,0x97,0xaa, +0xb2,0x89,0xaf,0xfa,0xd6,0xc0,0x0e,0xa6,0x26,0xa5,0x3a,0xbd, +0x24,0xd3,0xe9,0x12,0x7f,0xd8,0x6a,0x81,0xcd,0x4a,0x3f,0x1a, +0x81,0x8a,0x98,0xea,0xf8,0xea,0x61,0x14,0xc8,0x6b,0xd1,0x32, +0x10,0xba,0xc0,0x11,0x47,0xad,0xc6,0xa9,0x15,0xc6,0xfc,0xed, +0x77,0x39,0x0f,0x23,0x29,0x52,0x45,0xed,0xce,0x8f,0xbe,0x28, +0x4c,0xf1,0x1a,0xae,0x69,0x28,0x51,0x81,0xd5,0xa7,0x87,0x65, +0x95,0xbc,0xf0,0x01,0x1a,0x88,0x9e,0x33,0xa3,0xe6,0xe3,0xbd, +0xcb,0x42,0xb1,0xd0,0xa2,0x3e,0xa7,0x38,0x37,0x33,0x4f,0x3e, +0x32,0x2a,0xe2,0x42,0xf4,0xe9,0xf7,0x5b,0xf9,0x92,0x3a,0xa5, +0xdb,0x81,0x71,0xa1,0xe7,0x83,0x83,0xe4,0xc3,0x42,0x4e,0x47, +0xc8,0xc5,0xa5,0x46,0xe7,0x97,0x29,0x20,0x14,0x12,0x5d,0xe9, +0x4d,0x1e,0x5b,0xad,0xa4,0x5b,0x6d,0xf2,0x8a,0x72,0x32,0x0a, +0xe4,0x23,0xa3,0x23,0xcf,0x47,0x9d,0x79,0xbd,0x87,0x2f,0xa9, +0xdd,0x36,0x40,0xdf,0xf4,0x65,0x48,0xb0,0x7c,0x48,0xf0,0xf0, +0x9b,0x62,0xf3,0x2a,0x14,0x34,0x86,0xbc,0x48,0xb7,0xa0,0xaa, +0xdb,0x2b,0x6c,0x15,0x9b,0xc5,0xad,0xac,0x10,0x24,0x8c,0x27, +0x98,0x21,0xaa,0x42,0x06,0x0b,0xff,0x41,0x3b,0x02,0x1b,0xb0, +0x19,0x37,0xb0,0x10,0x06,0x2c,0x39,0x80,0x1a,0x37,0xa9,0xc7, +0xf8,0x22,0x80,0xb8,0x95,0x78,0xd7,0xfa,0x77,0xb6,0x3f,0x2e, +0xff,0x3e,0xf7,0x4f,0xa3,0x54,0xde,0x6f,0xbd,0xc7,0x2e,0xfb, +0x43,0x27,0xef,0x84,0xbc,0x3e,0x0f,0x2c,0x07,0xca,0x1d,0xe6, +0x4c,0x76,0xb1,0x5b,0xba,0x55,0xa6,0x73,0x82,0xbc,0xeb,0xb1, +0x82,0xe0,0xe2,0x80,0xdc,0x00,0xf9,0x79,0xdf,0xc2,0x96,0x76, +0x4c,0x7f,0x00,0x01,0x6d,0x18,0xf0,0x95,0x26,0x1a,0x52,0xeb, +0xb4,0x52,0x0b,0x57,0xe2,0x14,0x43,0x61,0x9d,0x92,0xc8,0xe1, +0x0c,0x06,0xf5,0x7d,0x71,0x82,0xca,0x22,0xc5,0x46,0x2b,0xb9, +0x87,0x30,0x3e,0x13,0xe4,0xc1,0x52,0xe1,0x31,0xdc,0x61,0x2f, +0xe2,0xec,0x24,0x1c,0x97,0xab,0x64,0xae,0xa9,0x67,0xb2,0xcf, +0xa2,0xd8,0x8c,0xbf,0x5a,0xd3,0xde,0x54,0xdf,0x9e,0x6a,0x91, +0x69,0x97,0xeb,0x56,0x6a,0xdd,0x11,0x11,0xdb,0x93,0x05,0x2b, +0x78,0x93,0x1c,0xb9,0xa1,0x69,0x90,0xfc,0x11,0xa5,0xd2,0xc2, +0xc2,0xfb,0x3f,0xfa,0xe6,0x50,0x88,0xd6,0xa5,0xd4,0xa4,0x97, +0x49,0x34,0x3d,0x60,0x35,0xc7,0x7a,0x99,0x7f,0xba,0x21,0x5f, +0x15,0x53,0x1b,0x57,0x33,0x8c,0x50,0x99,0x16,0xf0,0x6c,0xc8, +0x42,0x87,0xd9,0xcb,0x70,0x0a,0x25,0xe9,0xdd,0xb7,0xf9,0x8f, +0x86,0xd3,0xa3,0xd5,0xf9,0x71,0xf5,0x23,0x4c,0xb1,0x07,0x65, +0x8d,0xa5,0x72,0xf0,0x4d,0x3a,0x09,0x54,0xf1,0xd3,0x76,0x30, +0xe1,0xc0,0xe9,0xc7,0x56,0xfc,0xd2,0xf8,0x3d,0x16,0xb1,0xf6, +0xce,0x47,0xdd,0x74,0x3d,0x73,0xcd,0x78,0xd8,0xfb,0xe8,0x0e, +0x70,0x79,0xb0,0x82,0xc3,0xd0,0x58,0x12,0x7e,0xf0,0xc4,0x41, +0x27,0xfd,0x46,0x4f,0xbe,0xb4,0x2f,0xed,0x76,0xcc,0x1d,0xda, +0x9d,0xfe,0x23,0xbc,0x24,0x8d,0x4d,0x15,0xd7,0x32,0xdb,0x61, +0xee,0x05,0xd0,0xa2,0x86,0x36,0xd7,0xb5,0x91,0xc7,0x89,0x5e, +0xb8,0x37,0x00,0x77,0x9c,0xf3,0x55,0xb7,0xd8,0x7f,0xcc,0x82, +0xb3,0xc7,0x93,0xd2,0xf0,0xff,0xee,0x61,0xe3,0xdf,0xf6,0x2d, +0xa7,0x65,0x86,0x0a,0xa8,0x11,0x8a,0xed,0xb6,0xa0,0x02,0x6a, +0xb1,0x7f,0xaa,0xa4,0x1d,0x1a,0x3e,0x6a,0x87,0xa5,0x5a,0x30, +0x8f,0x6a,0x87,0x63,0x38,0x7a,0xe1,0x70,0x07,0x7b,0xfc,0xa1, +0xf8,0x49,0xa4,0x54,0x66,0x0c,0xba,0xff,0x91,0xd6,0xd7,0x70, +0x8e,0xa4,0xa0,0xf4,0x84,0x13,0xa4,0xc4,0xa6,0x4c,0x3f,0xdb, +0xbc,0x21,0x8f,0xf7,0x6e,0xb4,0xee,0x76,0x2d,0xe5,0xf0,0xa2, +0x3b,0x49,0x74,0x4b,0x3a,0x16,0xeb,0xd2,0x92,0xc8,0x87,0x15, +0x05,0xd4,0x9e,0xcc,0xe3,0xb0,0x14,0xb3,0x88,0xf0,0xb8,0x19, +0x73,0x7a,0x41,0xa5,0x49,0xdc,0x78,0x04,0xd4,0xb4,0x31,0x9e, +0x11,0xca,0x96,0x13,0x31,0xc6,0x4c,0x30,0xd1,0x17,0xcf,0x99, +0x08,0xe7,0xb4,0xc5,0xa3,0x66,0x42,0xc2,0xaf,0x37,0x5a,0x54, +0x19,0xdc,0x84,0x01,0xc4,0xb2,0x48,0xaf,0xd0,0x34,0xd3,0xfd, +0x18,0xdf,0xe2,0xdd,0xe9,0x52,0xeb,0xc2,0xa1,0x6c,0x17,0x71, +0x18,0x7e,0x3c,0xdc,0x27,0x3a,0x38,0x85,0x3d,0x90,0xe3,0x7d, +0x43,0x11,0xb4,0x99,0x96,0xd4,0x94,0x16,0xd9,0x3d,0xe9,0x3e, +0xd1,0x05,0x6c,0x3f,0xcc,0x20,0xc5,0x56,0xf5,0xfb,0xb2,0x8d, +0x2f,0x15,0xf2,0x3e,0x8d,0x47,0xee,0x38,0xd6,0x71,0x62,0x02, +0x6a,0x93,0x8a,0x96,0xb2,0xdb,0xa9,0x9d,0x26,0x69,0xfc,0x89, +0x23,0x8e,0x07,0xec,0x8e,0x72,0x93,0xfe,0x9a,0xed,0x4d,0xf0, +0x20,0x30,0xe0,0x0e,0xbf,0xa3,0xfb,0x5d,0x30,0xa2,0x8a,0x6c, +0x3b,0x93,0x93,0x99,0x27,0xed,0xe9,0x53,0x8d,0x79,0x6c,0x42, +0x52,0x5c,0x62,0x5c,0x92,0x5e,0x32,0x7f,0xf4,0xc0,0xb6,0xfd, +0xdb,0xac,0xf2,0xac,0xf8,0xc4,0x68,0xfa,0x27,0x96,0xa3,0x12, +0x74,0x3b,0x4e,0x34,0x78,0x81,0x4a,0x96,0x30,0xc6,0x14,0x3f, +0xb3,0x84,0xcf,0x0c,0x71,0x8c,0x05,0x28,0xbd,0xee,0x40,0x5f, +0x83,0x57,0xa8,0x62,0x09,0x54,0xd4,0x2f,0xb1,0x84,0x25,0xba, +0x28,0x6f,0x01,0x87,0xde,0x76,0xec,0x65,0x55,0xf3,0x3c,0x1e, +0x29,0x42,0x34,0x53,0x9d,0x94,0x52,0x29,0xbb,0xc5,0x1a,0xa4, +0xca,0x0d,0x4d,0x82,0x0f,0xe4,0xf4,0x3f,0xb6,0xe7,0xc7,0x0f, +0x7d,0x8b,0xa8,0x4a,0xac,0x4f,0xfe,0x08,0x2c,0x15,0x4b,0x1c, +0x6d,0xb3,0x4c,0xaa,0x7d,0x55,0x31,0x75,0xf1,0xb5,0x09,0x12, +0xb2,0xe6,0x68,0x81,0x02,0xad,0x7d,0x76,0x73,0x96,0xe1,0xe7, +0x14,0x59,0x5f,0xbf,0x2b,0x78,0x3c,0x42,0xfc,0x2e,0xc1,0xe4, +0x63,0x5e,0x7a,0x71,0x56,0x43,0x99,0x9c,0xb0,0x5e,0x70,0x20, +0x01,0xbe,0x1e,0x5e,0x2e,0xde,0x1c,0x9e,0x63,0xf2,0x32,0xf2, +0xb2,0x73,0x72,0xb8,0x1d,0xb3,0x09,0x4c,0xdc,0x87,0x13,0x19, +0x08,0xfd,0x8a,0xa0,0xbf,0x0a,0xf8,0xb3,0xf0,0xe9,0x16,0xf2, +0x14,0xe6,0x6e,0x61,0xf3,0xc4,0x2d,0x54,0xa7,0x76,0x31,0xc5, +0xce,0x19,0x99,0x59,0x79,0x94,0xe6,0xa9,0x3e,0xc9,0x3e,0x09, +0x7e,0xe5,0x25,0xfc,0xa9,0x4c,0xbf,0x1c,0xdf,0x9c,0xcc,0x92, +0xd4,0x92,0x84,0xfc,0x63,0x99,0x7c,0x88,0xd7,0x29,0x8f,0x00, +0x77,0xbf,0x4c,0xbf,0x8c,0x93,0x49,0x4e,0x2e,0x7c,0x4a,0x40, +0xd6,0xf1,0x4c,0x0f,0x5f,0xb7,0xe3,0xee,0x3e,0x3e,0x1c,0x98, +0xc3,0x56,0x16,0xdd,0xec,0x09,0xfa,0xaa,0x80,0x2f,0x8b,0xf9, +0xe3,0x6e,0x21,0xe3,0xcf,0x58,0x06,0xc7,0x57,0xc8,0x26,0xc1, +0xfb,0x41,0x17,0x22,0x7c,0x68,0xc5,0x62,0x69,0x35,0x3e,0x83, +0x51,0x11,0xa7,0x93,0x33,0xf1,0xff,0x54,0xff,0x09,0x3f,0xf7, +0x2d,0xfc,0xe8,0xf9,0xfe,0x9e,0xff,0x18,0xea,0xf9,0x86,0x6b, +0x7f,0xed,0x47,0xcf,0x37,0x57,0x0b,0x66,0xd0,0xfe,0x67,0x87, +0xa3,0x97,0xd2,0x00,0x18,0xf1,0xf7,0x68,0xff,0x8b,0xfc,0xaf, +0xe7,0x1b,0xa6,0x56,0x37,0x0d,0x40,0xa9,0x9c,0xe0,0x8c,0x47, +0x48,0x47,0x41,0x53,0x49,0x45,0x99,0x75,0x15,0xef,0x64,0x6f, +0xec,0x60,0xe0,0xee,0x5a,0xec,0x5d,0xe1,0x53,0xc3,0x41,0x6c, +0x0b,0x2a,0xdf,0x82,0x45,0xcd,0xb8,0xe8,0x3a,0xac,0x6b,0xc6, +0x75,0xd7,0x60,0x1a,0xac,0xc5,0x08,0x5c,0x7b,0xfb,0x10,0xee, +0xbf,0x76,0x85,0x1e,0x9f,0xc3,0xb5,0xf0,0xc5,0x21,0x5c,0x61, +0x06,0x2b,0x0e,0xe2,0x5c,0x33,0x98,0xab,0x22,0x5d,0x72,0xe7, +0xc3,0x68,0x9b,0xe0,0x78,0x4b,0x1c,0x75,0x3c,0xdd,0x84,0xbf, +0x9a,0x7c,0x3d,0xb3,0x8f,0xe2,0x7a,0x34,0x6b,0x7e,0xda,0xfc, +0xb4,0xc5,0x99,0x58,0xea,0x6d,0x3e,0x4d,0x84,0xa9,0x99,0x30, +0x3a,0xe7,0x4c,0x0b,0xaf,0x1d,0xa4,0x11,0xa4,0x1e,0xc2,0xc1, +0x34,0xb6,0x3a,0xab,0x34,0x37,0xb7,0x80,0xea,0x88,0x7e,0xfc, +0xfc,0x5f,0xeb,0x40,0x49,0x3d,0xaf,0x95,0xdf,0x9f,0x6f,0x50, +0x68,0x55,0x46,0x69,0x3d,0xbc,0xc2,0xbf,0xf4,0x2e,0x2b,0x68, +0x4f,0xdf,0x83,0xcb,0xef,0xb2,0x99,0xe8,0x4d,0x0e,0xe2,0xfe, +0xeb,0x2c,0xec,0xc7,0xb1,0x44,0x05,0xf7,0xdf,0x1a,0xd6,0xcc, +0xf7,0xc9,0xe1,0xd5,0xa2,0x02,0xae,0x1c,0xf8,0x09,0x02,0x98, +0x93,0x1b,0xb7,0x1e,0xc3,0xf5,0x2e,0x99,0x54,0xc5,0x1a,0x57, +0x7c,0x73,0x27,0xe9,0x67,0x0e,0xbe,0xd8,0xca,0x1c,0x28,0x74, +0xbf,0xad,0x48,0x0b,0x53,0x75,0x32,0x35,0x21,0xa5,0x03,0xb0, +0x40,0x5c,0xc6,0x42,0x3d,0x8e,0x22,0xfb,0x71,0x21,0x6b,0x7d, +0x2a,0xa6,0x52,0xf6,0x18,0x62,0xf6,0xb3,0xce,0xf8,0x1f,0xea, +0xf4,0x86,0xcc,0x75,0x06,0xe7,0x28,0x0d,0x8d,0x66,0x43,0x54, +0x03,0x76,0x7a,0x1d,0xe6,0x06,0xd5,0x98,0xf3,0x9e,0xe7,0x5c, +0xc3,0x5c,0x39,0x9b,0x10,0x9f,0x73,0x26,0x33,0x50,0x8f,0x49, +0xd1,0x91,0x03,0x4d,0xe6,0x51,0x75,0xe6,0xe5,0x24,0x59,0x7c, +0x53,0x64,0x47,0x8f,0xc2,0xd0,0x56,0x26,0xbe,0x2c,0xaa,0x28, +0xaa,0x88,0x9a,0xb7,0x2c,0x3a,0xa4,0x43,0xab,0xe8,0x90,0xb6, +0x0c,0x50,0x02,0x85,0x32,0xc1,0x5b,0x54,0x75,0x50,0xff,0x58, +0xae,0x1e,0x0f,0x7a,0xf5,0xbf,0xdc,0x4e,0x84,0x89,0x1c,0x4c, +0x5d,0xc4,0x1c,0xce,0xf1,0xbb,0xaa,0x08,0xeb,0x99,0x96,0xb4, +0xd4,0x1a,0x59,0xc1,0x65,0x58,0x26,0x2e,0x65,0xa1,0x96,0x8a, +0x90,0x83,0xb8,0x9c,0x75,0x0c,0x8b,0x2e,0x96,0xbd,0x85,0x8b, +0xca,0x6c,0x39,0xd6,0x91,0x1e,0x74,0x7e,0xad,0xb6,0x1a,0xc3, +0xa4,0x2f,0xde,0x3a,0xe0,0xbd,0x94,0x3d,0xf5,0xe5,0xa9,0xf3, +0x81,0x8a,0xf8,0xa5,0x36,0x04,0x31,0xde,0xaa,0x3a,0x46,0x48, +0x8e,0x94,0xd0,0xdf,0x3f,0xbb,0xe3,0xde,0x40,0xfe,0x2f,0x1c, +0x44,0xa0,0xf5,0x15,0xb0,0x86,0xb0,0x5e,0x0c,0x03,0x5a,0xe7, +0x7b,0x70,0x06,0xb9,0x90,0xf8,0x65,0x62,0x92,0xc2,0x7b,0x08, +0xfb,0xe8,0xc4,0x1f,0x12,0xb5,0x75,0xe2,0x2c,0xdc,0xd0,0x0f, +0xa3,0xe0,0x1c,0x13,0xb0,0xfe,0xa0,0x3e,0x1e,0xb4,0xce,0xa5, +0xc2,0xd6,0xbe,0xe9,0xf6,0x77,0xc9,0xef,0x38,0x98,0x88,0x63, +0x18,0xd3,0xec,0xe3,0x03,0x8a,0xa0,0xc4,0xd4,0x24,0x27,0x15, +0xc9,0xae,0xb3,0x3a,0x49,0x72,0xfb,0x51,0xc6,0x3a,0x04,0xc7, +0x14,0xc9,0x5e,0x43,0xc6,0xfc,0x7e,0x58,0x23,0xae,0x60,0x61, +0x1c,0x66,0x92,0x39,0xb8,0x48,0x87,0x5a,0x9c,0x30,0x5c,0x64, +0xbd,0x64,0xc3,0x36,0xaf,0x3e,0xe7,0x5b,0xb6,0x3d,0x26,0x6e, +0x7c,0x8a,0x67,0x8a,0x4b,0xb2,0x8b,0xfa,0xa9,0x9d,0x27,0x77, +0x05,0xfe,0xf0,0xfa,0x07,0x98,0x7c,0xe3,0x4f,0x93,0x4a,0xde, +0x46,0xcd,0xf4,0x80,0xe1,0xa1,0x5d,0x5f,0xf3,0xad,0x3d,0xed, +0x8f,0x2a,0xaf,0x1a,0x95,0xf0,0xf6,0x87,0xcc,0xf6,0x19,0xe9, +0xfb,0xa4,0xfb,0xa4,0xfb,0xa6,0xd8,0x5a,0xf0,0xdd,0x26,0xd7, +0x35,0xfa,0xb4,0x2c,0x8d,0xcd,0xcd,0xcc,0xad,0xbc,0xcf,0x1e, +0x3f,0xeb,0x73,0x2e,0x4e,0x93,0x87,0xf1,0x69,0xb0,0x28,0x17, +0x98,0x82,0x38,0xaf,0x58,0xef,0x28,0xff,0xdc,0x04,0xbe,0xfa, +0x08,0xb0,0x6f,0x3a,0x80,0x8f,0x85,0xdd,0xf2,0xb0,0xce,0x9b, +0x39,0x14,0xbe,0xf0,0xe4,0x7e,0x45,0xe3,0x10,0xaf,0x40,0x9b, +0x19,0x8b,0xa5,0x9b,0x60,0x5e,0x33,0xf7,0xca,0x4a,0x6f,0x25, +0xca,0x52,0x5f,0x44,0x03,0xfb,0x5c,0xa1,0x09,0x5d,0xfe,0xf8, +0x7b,0xf2,0x9b,0xc5,0x19,0xb8,0xfd,0x2a,0x70,0x34,0x80,0xbe, +0x9b,0xb7,0x1b,0xe3,0x72,0x17,0xc9,0xfa,0xec,0x28,0xfe,0xf9, +0x51,0xd6,0x9f,0x1c,0x7c,0x3e,0x8f,0x31,0xce,0xf2,0xa6,0xf9, +0x51,0x60,0x1a,0x53,0xd3,0x8a,0x65,0xbd,0xac,0x76,0xb2,0x9c, +0x0a,0x4e,0x66,0xed,0xc3,0xe9,0xdc,0x5f,0x42,0xc4,0x92,0xab, +0xb0,0x9c,0xa2,0x48,0x05,0xd5,0xc9,0x49,0xdb,0x13,0x0e,0x9e, +0x0e,0x1c,0x96,0x88,0x8d,0x97,0xdb,0x07,0x27,0x1b,0x5e,0x16, +0x1a,0xc5,0xd5,0x4c,0x46,0x61,0x4a,0x61,0x62,0x09,0x87,0xcf, +0xc4,0x7c,0x22,0xc8,0x0f,0x4e,0x16,0xe5,0x59,0xb1,0x15,0xe6, +0x92,0xfa,0x8c,0xaa,0xec,0xd2,0xbc,0x46,0xef,0x06,0xaf,0x06, +0x0f,0x35,0x3b,0x65,0x97,0xa5,0xde,0x19,0xc6,0x3c,0x8c,0xce, +0xff,0xae,0xfc,0x4e,0x73,0x87,0x53,0x87,0x43,0xbb,0x7d,0x69, +0x3d,0x6f,0x5a,0x62,0x5a,0x6c,0x5a,0xd8,0x52,0x53,0xdd,0x5c, +0xdc,0xc5,0x55,0x60,0x30,0x9b,0x90,0x96,0x90,0x1e,0x9b,0x6e, +0x9a,0xc6,0x7b,0x5b,0x38,0x59,0x5a,0xd8,0x3a,0xa5,0x38,0x25, +0x39,0x25,0xb9,0x5a,0xf2,0x79,0x41,0xf9,0x41,0x79,0x81,0x1e, +0xfe,0x2e,0x27,0x1c,0x4f,0x72,0xc2,0xda,0xe7,0xc4,0xcb,0xc6, +0xd1,0xde,0xc2,0xc9,0xac,0xe0,0x48,0xae,0x59,0x4e,0x7c,0x5c, +0x5c,0x7c,0x6c,0x1c,0x35,0x20,0x35,0x42,0x34,0x19,0x86,0x59, +0x0b,0xab,0x99,0x28,0x77,0x18,0x17,0x8c,0xe0,0xeb,0x47,0xb8, +0xb8,0x78,0x80,0xe2,0x6e,0xd9,0x2b,0x35,0x69,0xbf,0xe5,0x35, +0x03,0xbf,0x43,0x18,0x1b,0xb4,0x7d,0xb7,0x21,0x1e,0xb2,0xcc, +0xd5,0xe7,0xe1,0x50,0x23,0x8c,0xbe,0x96,0x00,0x0c,0x85,0xeb, +0xbc,0x11,0xb8,0x62,0x3e,0xf5,0xff,0xce,0xe7,0xdd,0xce,0x7a, +0x28,0x6e,0xb5,0x45,0xd6,0x0e,0xc7,0x79,0x67,0x6a,0xf0,0x6f, +0x73,0x7e,0x2f,0x7d,0x58,0xe1,0x8c,0xe3,0x37,0xe9,0xa3,0xae, +0x61,0xa1,0x16,0x0f,0xa5,0x5f,0xdd,0xa3,0xd0,0x3f,0xad,0x00, +0x53,0xd5,0x58,0x21,0x5e,0xb4,0x25,0x68,0xcb,0x58,0x9f,0x8a, +0xad,0x97,0xc1,0x2c,0x36,0x36,0x22,0x22,0xf6,0xac,0x22,0x14, +0x2c,0xcd,0xee,0xc4,0xc4,0x37,0x7e,0xd1,0x61,0x67,0x43,0x4f, +0xca,0x87,0x04,0xc8,0x85,0xc3,0x45,0x35,0x71,0x2b,0xa3,0x5c, +0xe4,0xf9,0x40,0x11,0x2c,0x99,0x8e,0xac,0xcc,0x4e,0xd9,0x55, +0x56,0x23,0x55,0x0e,0x55,0xe1,0x20,0x79,0x58,0x73,0xa3,0xa9, +0xb7,0xcd,0xa2,0x89,0xd7,0x31,0x54,0xb5,0xd8,0x63,0xc3,0x89, +0xd7,0xee,0x91,0x1b,0x76,0x4f,0x4d,0x5b,0xad,0xaa,0x9a,0x79, +0xc3,0xba,0xad,0x2d,0x07,0xcb,0x28,0xf5,0xc6,0x0f,0x1a,0x10, +0x1f,0xbd,0xbd,0x0e,0xb8,0xc2,0x27,0xcd,0x90,0x6a,0x84,0xec, +0x57,0x1d,0x99,0xdf,0x70,0xf0,0xc9,0x7e,0xe6,0x68,0x9a,0x57, +0x9f,0x22,0xac,0xa0,0xbd,0x3d,0xa1,0x94,0x86,0x81,0x22,0x59, +0x8b,0x12,0xc1,0x29,0x2c,0x36,0x57,0xd6,0x07,0x09,0xca,0x57, +0x80,0x17,0x97,0xdd,0x53,0xdb,0x45,0xc3,0xb0,0xf8,0xca,0x0f, +0xec,0xa0,0x86,0xe8,0x28,0xdd,0x42,0x3a,0xae,0x1d,0xc7,0x01, +0x3b,0xa4,0x62,0x04,0x09,0xec,0x39,0xef,0xb3,0xde,0xe1,0xc7, +0x39,0x7c,0x62,0x08,0x57,0x99,0x60,0x8f,0x53,0x5e,0x27,0xbc, +0x38,0x34,0x37,0x82,0x8d,0x8c,0xa6,0xda,0x66,0x3d,0x1c,0x6d, +0x56,0x6a,0xcc,0x0f,0xe4,0x77,0x15,0x5f,0xa2,0xb5,0xcb,0xe0, +0x4a,0x83,0x10,0x61,0x7e,0x15,0xa2,0xc4,0x5e,0x36,0x27,0x2b, +0x33,0x2b,0x2d,0x87,0x13,0x16,0x41,0x30,0xa5,0xf6,0x5d,0x36, +0x2a,0x2b,0x22,0xfb,0x62,0x36,0x07,0x57,0x90,0x23,0x7b,0x45, +0x39,0x36,0x39,0x27,0x21,0x37,0x2e,0x97,0xc3,0x59,0xf8,0xa3, +0x74,0x73,0x55,0x04,0x8e,0xa2,0x10,0xcd,0x13,0x36,0x12,0x78, +0xd1,0x81,0x2f,0x7e,0x39,0xb4,0x00,0x0f,0x33,0xc9,0x99,0x49, +0x59,0x49,0x39,0x86,0x79,0xfc,0x9b,0xb2,0xf6,0xd6,0xe4,0x6b, +0xb4,0xa8,0xad,0x64,0x4c,0xb2,0x7c,0xae,0x28,0xc2,0x42,0xda, +0x34,0x29,0x37,0x7b,0x58,0xdd,0x44,0x39,0x0d,0xfc,0x9c,0x75, +0x0c,0x8d,0x29,0x90,0x3d,0x84,0x48,0xa5,0x2b,0xa0,0x28,0x2e, +0x7b,0xac,0xb6,0x8d,0xce,0x68,0xd5,0x95,0xdf,0x20,0x90,0xf5, +0x55,0xd9,0x66,0x8b,0xcb,0xbc,0x72,0x0c,0xf9,0x96,0xd8,0x86, +0xf8,0xca,0x24,0x1b,0x15,0x63,0x23,0x15,0xa3,0x06,0x4b,0xbe, +0x38,0x3b,0x3f,0x3b,0x27,0x8f,0x03,0xdf,0xf5,0xe2,0x12,0x7d, +0x61,0xc9,0xe1,0x6b,0x57,0x85,0x35,0x9d,0xe2,0x1a,0x06,0x07, +0xc4,0xb5,0xa4,0x59,0xe8,0x31,0xbb,0x0e,0x79,0x43,0x7b,0x69, +0xcf,0x1f,0x1c,0x0b,0xae,0x04,0x27,0x8a,0x3d,0x30,0x71,0x98, +0x45,0x4f,0x89,0x9a,0x32,0xfd,0xf5,0x93,0xfb,0xef,0xd0,0x0a, +0x72,0x52,0x4b,0xd9,0x1a,0x95,0x3d,0xb3,0x68,0x15,0x32,0x2b, +0xfe,0x66,0x20,0xf1,0x5f,0xb4,0x82,0x68,0x30,0xea,0x79,0xd2, +0xb3,0xde,0x37,0xd2,0xca,0x9b,0x5a,0x2e,0xab,0x67,0x75,0x92, +0x69,0xd8,0xe7,0xb1,0x8e,0x41,0xb1,0xc5,0xb2,0x6e,0x48,0xdd, +0xdb,0x0f,0x93,0x29,0x89,0xf0,0x1a,0xfa,0xd1,0x96,0x8b,0x8c, +0xf8,0xe9,0x15,0x78,0x34,0xa8,0x8c,0x69,0xf4,0x35,0x29,0x06, +0x72,0xf0,0x29,0xd3,0x91,0x96,0xd6,0x26,0x83,0x2e,0x1c,0x4f, +0xdb,0xb1,0xba,0x01,0xf5,0x21,0xad,0x38,0x11,0x57,0xc3,0x7e, +0x16,0x1c,0x50,0xba,0xb7,0x27,0x64,0xbf,0x74,0x4b,0xc7,0x6f, +0xe4,0x32,0xbc,0x02,0x15,0x71,0x36,0x86,0xb2,0xf4,0x40,0x8b, +0x6c,0xc3,0x92,0xc7,0xac,0x04,0x07,0x47,0xe2,0x6d,0xb6,0xdf, +0x1d,0xd7,0x9c,0x4a,0x30,0xe5,0xc1,0x30,0xf5,0x59,0x53,0xd6, +0x1d,0x0e,0xa6,0x9b,0x30,0xa6,0xe9,0xa7,0xba,0x14,0x61,0x29, +0x53,0x97,0x98,0x58,0x28,0x2b,0x66,0xf5,0x12,0xe4,0xac,0x90, +0xb0,0xce,0x67,0xa2,0x72,0x64,0x35,0x70,0x61,0xff,0x15,0x98, +0x28,0xae,0xbc,0xae,0x76,0x50,0x54,0xc4,0x89,0x57,0x6e,0xb3, +0x82,0x22,0x1e,0x24,0xd0,0xd4,0x80,0x4d,0xdd,0x6a,0xba,0x58, +0x64,0x0e,0x45,0x56,0xe2,0xd2,0x23,0x7f,0x4d,0x6a,0x12,0xb7, +0x30,0xcf,0x30,0x9e,0xd4,0x42,0x06,0x28,0x0c,0xf9,0xa3,0x02, +0x44,0x5a,0x51,0x31,0x57,0x3c,0xd0,0x04,0x2e,0x21,0xec,0xe1, +0x0c,0xdf,0x7f,0x29,0x0a,0x4b,0x98,0xfa,0xd4,0xe4,0x72,0xaa, +0x6a,0x4c,0x93,0xe4,0x40,0x9f,0x1d,0x32,0x02,0x79,0x02,0x3a, +0x86,0xa8,0xc3,0x40,0x27,0xed,0x37,0x56,0x21,0xb1,0xe5,0x32, +0x81,0xfb,0x5d,0x24,0x97,0x4b,0xa0,0x5c,0x83,0xc5,0x72,0xf8, +0x0f,0x69,0x07,0x4b,0x43,0x56,0xdc,0x83,0x93,0x89,0x31,0xba, +0xb4,0xb2,0x83,0x1b,0x4d,0x09,0x06,0x5c,0xa2,0xed,0x6d,0xdd, +0x38,0x23,0x0c,0x68,0x63,0x45,0x8d,0xb3,0x04,0x5c,0x74,0xd1, +0x85,0x99,0x24,0x4c,0x1c,0x3c,0x4a,0xdc,0xb4,0xb6,0xd8,0xe2, +0x22,0xbf,0x74,0x5a,0x48,0x76,0xe5,0xbe,0xeb,0x2e,0x78,0xc6, +0xc1,0x38,0x0d,0x46,0x3f,0x33,0xa0,0x5d,0x51,0x52,0x0d,0x09, +0x29,0xa5,0xb2,0x5a,0x56,0x3f,0x41,0x4e,0x9b,0xda,0x4d,0xb7, +0xd3,0x51,0x59,0xb2,0x01,0xc8,0x54,0x1e,0x80,0x2f,0xc4,0x65, +0xb7,0xd4,0x54,0x68,0x06,0x65,0x03,0x2f,0xd8,0xc1,0x6e,0xb1, +0x8f,0x88,0x9b,0x5f,0xc0,0xaf,0x6d,0x62,0x37,0x93,0x9e,0x05, +0xed,0x4d,0xb0,0xf0,0xf9,0xad,0xfb,0xf2,0x25,0xe2,0x4a,0x36, +0x27,0x25,0x2b,0x35,0x3d,0xcd,0xaa,0x88,0xdf,0xa5,0x86,0xe3, +0x4c,0x50,0xd5,0x2d,0xd3,0x84,0xff,0x90,0xfa,0x34,0xfb,0x46, +0x11,0x27,0xcc,0x64,0xcc,0xed,0x0e,0x3b,0xac,0x72,0xb5,0xad, +0xb0,0x2d,0xb1,0xcd,0xb3,0x70,0xe7,0xcb,0xdd,0x4b,0xdd,0x0a, +0xdd,0x9c,0x42,0xed,0x42,0x6d,0xc2,0xed,0xca,0xec,0x8b,0xec, +0x73,0x8e,0x78,0xf0,0x25,0x5e,0x45,0x5e,0xf9,0x9e,0x3b,0x02, +0xd7,0x87,0x2e,0x0e,0x4f,0x30,0xe0,0xaf,0x44,0xf6,0x45,0x75, +0x45,0x3b,0x38,0x59,0xb8,0xe8,0x39,0x55,0xd9,0xf0,0x95,0x59, +0xc3,0x9b,0xa7,0x82,0xf1,0x7a,0x69,0x35,0x6a,0xe9,0x12,0xcc, +0xb9,0xa7,0x86,0x1b,0xae,0x54,0x09,0xff,0xb6,0xb9,0x02,0x1b, +0xd4,0x76,0x61,0xf5,0x7b,0x61,0x33,0x9d,0x2c,0x37,0x68,0x49, +0x7c,0xec,0xd5,0x5d,0x71,0xe9,0xa9,0x8c,0x23,0x3c,0xec,0x4e, +0x7f,0xd4,0x90,0xde,0x4f,0xf9,0x6d,0xce,0xd8,0x67,0x04,0x34, +0x2b,0xc2,0x01,0xa6,0x32,0x31,0x21,0x9f,0x26,0xd4,0x20,0x41, +0xce,0x1a,0x57,0xb3,0x5e,0xe1,0x51,0xa9,0xb2,0x12,0xc8,0xd2, +0xeb,0xf9,0x55,0x5c,0x7e,0x5f,0x63,0xa7,0x38,0x13,0x27,0xf6, +0x7c,0xc5,0x0e,0xfa,0x62,0x0c,0x79,0xd1,0xb0,0xfe,0x39,0xbe, +0xef,0xd4,0xd6,0xc7,0x7f,0x6d,0x58,0x6f,0xfe,0x62,0x1d,0xfc, +0xcb,0x0a,0x05,0x24,0xd0,0xcb,0xf8,0xfb,0xfb,0xf8,0x79,0xfb, +0x71,0xd8,0x68,0x04,0xc7,0x19,0x07,0x2f,0x5b,0x4f,0x2b,0xaf, +0x9b,0xc1,0xcf,0x4f,0xfd,0x10,0xb0,0xcc,0x0f,0x27,0x86,0xe0, +0xd2,0x33,0x49,0xb4,0x4d,0x9a,0x44,0xc0,0xda,0x4c,0xf8,0xb4, +0x06,0xc6,0xfb,0xc0,0x24,0x6f,0x90,0xf3,0xce,0x6d,0xe5,0x97, +0xa5,0x2f,0x4d,0x5b,0x95,0xd2,0x99,0xdf,0x50,0x52,0x51,0xc5, +0xc1,0xe6,0x36,0x31,0x9a,0xc9,0x4c,0x4f,0x4f,0x4f,0x49,0xe3, +0x84,0x15,0x40,0x44,0xa6,0x16,0xde,0x33,0xe2,0x42,0xf8,0x82, +0x60,0x6e,0x23,0xe4,0x32,0xf0,0xee,0x28,0xc1,0x9a,0x46,0xa8, +0x61,0xc4,0xbf,0x94,0x08,0xe4,0x9a,0x22,0xfd,0xd9,0xd3,0x4b, +0x04,0x6a,0x4c,0xb1,0x86,0xd1,0xc6,0x49,0xc4,0x14,0xdb,0x2e, +0xb1,0x83,0x2b,0x68,0xfa,0xaf,0x5d,0x82,0x6b,0xd2,0xc3,0x02, +0x74,0x88,0xa5,0xa3,0x89,0xbb,0x86,0x8f,0x52,0xf2,0x96,0xc4, +0x7d,0x71,0x59,0xc9,0x59,0xc9,0x19,0x29,0x9c,0xf4,0xa9,0x8d, +0x31,0xf1,0xd4,0xd8,0xe3,0x8e,0x6b,0x7d,0x52,0x29,0x03,0x75, +0xf2,0x5f,0xb4,0xe4,0xbd,0xe0,0x7e,0xdf,0xca,0x98,0x66,0x9e, +0xec,0x96,0x08,0xd8,0x98,0x90,0x5c,0x2c,0xbb,0xc4,0x6a,0x27, +0xc9,0xe9,0x52,0x72,0x39,0x49,0x40,0xbf,0x06,0xa9,0x9b,0x07, +0x60,0xc6,0xdf,0x75,0x6f,0xe1,0xc0,0x1b,0x56,0x58,0x45,0xbb, +0x55,0x13,0x3a,0xf4,0xc3,0x5a,0xf0,0xc5,0x9d,0x6c,0x7c,0x6a, +0x4c,0x6a,0x74,0xba,0x5e,0x02,0x1f,0xee,0x1d,0xe2,0x13,0xe4, +0xcb,0xe1,0x3c,0xf4,0x85,0xd5,0x9a,0x68,0x77,0x04,0xe4,0x99, +0xb3,0xf3,0x5c,0xcd,0x91,0x3d,0x58,0x6c,0xcc,0x7f,0xd7,0x72, +0xa9,0x39,0xfb,0x06,0x07,0x06,0xcc,0x39,0xb7,0x73,0xee,0x61, +0x9e,0x9c,0xdf,0x99,0xc0,0x50,0x7b,0xda,0x82,0x53,0x8c,0x69, +0x0b,0xbe,0x92,0x93,0x5e,0x13,0x2f,0x8b,0x2b,0x8f,0xee,0xb9, +0xd0,0xc6,0x61,0x38,0x73,0x31,0xed,0x62,0xc6,0x85,0x4c,0x4e, +0xc8,0x37,0x26,0x3d,0x4f,0x4b,0x5e,0x27,0xfd,0xc9,0xdd,0x6a, +0xc7,0x6a,0x26,0xb1,0x28,0xbe,0x38,0xa6,0x50,0x2f,0x91,0xf7, +0x5c,0x6e,0xbe,0x72,0xef,0xc6,0x7a,0x3b,0x3e,0xb7,0x30,0xaf, +0x32,0xbb,0x26,0x65,0x47,0xf1,0xce,0x96,0x3d,0x46,0x5a,0xaa, +0x06,0xeb,0x4d,0x2b,0xb5,0xf9,0xe7,0xed,0x37,0x3b,0xdb,0x2f, +0xb7,0xa8,0x5f,0xd5,0x7e,0x68,0x58,0xd9,0xcd,0x2b,0xb7,0xaa, +0x75,0x99,0xf6,0x73,0xf8,0x13,0xd4,0x13,0x4c,0x6e,0x85,0x64, +0x46,0x20,0x9a,0x24,0x78,0xbd,0xe7,0x4e,0x73,0x55,0xf3,0xdb, +0x6e,0x0f,0x02,0x9f,0x71,0x78,0xdc,0x89,0x18,0x60,0x72,0x07, +0x2d,0x08,0xd3,0x28,0x59,0x7c,0x34,0x55,0x3c,0x70,0xc7,0x89, +0x54,0x13,0x1e,0x0c,0x92,0x9f,0xb7,0x66,0x3f,0xe7,0x7e,0x55, +0xfb,0xc8,0x95,0x1d,0x12,0x57,0x4a,0x64,0x55,0x52,0x3d,0x30, +0xa4,0x2a,0xec,0x23,0x57,0x32,0xf6,0x0f,0xd0,0x7a,0xb0,0xec, +0x8e,0xda,0x5e,0x1a,0xa6,0x59,0x03,0xdf,0xb2,0x70,0x1b,0x67, +0x13,0x55,0xaf,0x55,0xa7,0x70,0xf9,0x19,0x2a,0x54,0x07,0x1d, +0x20,0x1c,0xdf,0x98,0x41,0xa9,0x31,0x66,0x1c,0x85,0x0c,0x1d, +0xf1,0x97,0x1e,0x48,0x6b,0xc4,0xb4,0xff,0x8b,0xb9,0xf7,0x80, +0xae,0xe2,0xc8,0xd6,0x46,0xc1,0x46,0xdd,0x6d,0x8c,0xc1,0xc6, +0x2e,0xdc,0x12,0xb6,0x64,0x32,0x98,0x60,0x72,0xce,0x49,0x80, +0x72,0xce,0x19,0xe5,0x00,0x28,0x67,0x89,0x1c,0x4c,0x52,0x8e, +0x27,0x1f,0x49,0xe7,0x28,0xe7,0x1c,0x11,0x42,0x44,0x07,0x8c, +0x03,0x38,0x8c,0x03,0xce,0x33,0x63,0x8f,0xd3,0x6e,0xcd,0x6e, +0xdd,0x79,0xd5,0x47,0xc2,0xf6,0xdc,0x09,0xf7,0x9f,0xf7,0xde, +0xff,0xbf,0xb7,0xbc,0x16,0x3a,0x4b,0x47,0x5d,0xae,0xda,0xb5, +0xf7,0xfe,0xbe,0xaf,0x6a,0x77,0x55,0x17,0x0b,0x8f,0x5f,0xfa, +0xa2,0xe0,0x8e,0x9a,0x1b,0x14,0xbd,0x08,0x38,0xb5,0xa3,0xd3, +0x15,0xc3,0xbf,0x1d,0x76,0xa8,0x63,0x52,0xce,0x25,0x9f,0x4d, +0x39,0x77,0xba,0x89,0x77,0x38,0xba,0xf3,0xd8,0x96,0xe3,0xdc, +0xbb,0xe0,0xd3,0x8e,0x3e,0x57,0x0c,0xff,0x76,0xd8,0xd2,0x74, +0x1b,0x7a,0x3a,0xe4,0x6c,0xe8,0x99,0x7c,0xe9,0xde,0x9b,0x3c, +0x98,0x2b,0x7b,0x58,0x92,0xeb,0xc3,0x03,0x97,0x07,0x2f,0xa8, +0xde,0x97,0x9f,0xea,0xe0,0xed,0x32,0x36,0x67,0xac,0x3b,0xca, +0xc1,0xdf,0xd2,0x89,0xdd,0x95,0x8c,0x3f,0x7d,0x62,0xd2,0x6a, +0xeb,0xc5,0xce,0x51,0xe2,0x84,0x37,0xcc,0x4d,0x6b,0x43,0x9a, +0x0a,0x0a,0x3a,0xab,0xc1,0x84,0xf7,0x90,0x1b,0x4d,0x15,0xa6, +0x8e,0x04,0x91,0x44,0x67,0x9b,0x30,0xdc,0x93,0x22,0xc1,0xa2, +0xab,0xfc,0x83,0x6e,0xc5,0xc7,0x1c,0x3c,0x6e,0x43,0x41,0x24, +0x65,0x58,0x1a,0x77,0x6b,0x69,0x61,0x85,0x59,0xb3,0x04,0x8b, +0x6e,0xb8,0x8a,0x8d,0x38,0x7e,0xb9,0xc2,0xac,0x03,0x64,0xbb, +0x86,0x61,0xaa,0xb8,0x58,0xda,0xb1,0x99,0x89,0xfc,0xf0,0x87, +0x2c,0x44,0x8b,0x5b,0x09,0x4c,0x2f,0xfd,0x51,0xf9,0x59,0xf5, +0x83,0xa8,0x2f,0xe3,0xff,0x94,0x54,0xda,0xc5,0x6f,0x2e,0xdc, +0x5e,0xbc,0x5f,0x71,0xb5,0xa2,0xbb,0xb6,0xb5,0x95,0x6b,0xc6, +0x61,0x36,0x27,0x27,0x3b,0x37,0x3b,0xd7,0x57,0xcb,0xfb,0x39, +0xed,0xf3,0x58,0x1a,0xaa,0xf5,0xe5,0x9b,0x4b,0xea,0x64,0x95, +0x8a,0xaa,0x43,0x4d,0x31,0xed,0xf1,0xbb,0xe3,0xd7,0x24,0xe3, +0x84,0x0c,0x6e,0xdb,0x11,0xd2,0x70,0xad,0xea,0xb5,0xa2,0x61, +0xae,0x15,0x0b,0x47,0x99,0x21,0xe1,0x1e,0xcc,0x62,0xd3,0x9c, +0xa3,0x0e,0xf8,0x5a,0x71,0x57,0x2c,0x2a,0x02,0x1c,0x4c,0x7c, +0x62,0xe2,0x9c,0x4d,0xfd,0x98,0x42,0x67,0xa3,0x46,0xe6,0x5e, +0x6f,0xf5,0x87,0x43,0x87,0xdb,0xdc,0x6e,0x9a,0x09,0x6d,0xb0, +0x87,0x1c,0x8c,0xf4,0x3e,0xe2,0x10,0xe7,0xa8,0xf4,0xd0,0x1e, +0xac,0xe2,0x84,0x67,0x44,0x5b,0xd2,0x81,0x87,0x86,0xe1,0x6c, +0x07,0x9e,0xbd,0x06,0x4b,0xdb,0x51,0xf4,0x86,0xc5,0xb6,0xb8, +0x40,0x3a,0x1e,0xb7,0x38,0xbb,0xc4,0x4b,0xc6,0xc7,0xba,0x04, +0xba,0x58,0xf9,0x54,0x07,0xf1,0x55,0xea,0xb2,0x32,0x55,0x39, +0x07,0xe6,0x36,0xe8,0xe7,0x05,0x7e,0xe6,0xd8,0xe9,0x21,0x8c, +0x74,0x61,0xc9,0xeb,0x34,0xbb,0xe4,0x8f,0x1c,0x26,0x49,0xe6, +0x3b,0x42,0xe7,0xc7,0x2b,0x29,0x5a,0x4c,0xad,0xf8,0xac,0xaf, +0xf4,0x73,0xee,0x9b,0x3d,0x8c,0xb7,0x2c,0xe5,0x9a,0x74,0x1e, +0x6e,0x43,0x71,0xa1,0xde,0xac,0xb8,0x0f,0xa6,0x63,0xef,0xf5, +0xfd,0xd6,0xd8,0x8a,0xd3,0x87,0xee,0xb1,0x6b,0x82,0x89,0x47, +0xef,0x81,0xab,0x2e,0xf5,0x01,0xbe,0x7c,0x7f,0xe0,0x2d,0xfb, +0x6e,0x17,0x4e,0xc0,0x26,0xe2,0xb3,0x80,0x4d,0x38,0x9e,0x25, +0x37,0x1b,0x86,0xdd,0xee,0xd2,0x09,0x95,0x76,0xd2,0x5f,0x0d, +0x3a,0xd7,0x07,0xfa,0xf0,0xfd,0x07,0xaf,0x39,0xf7,0x39,0x73, +0x3f,0xe0,0xf3,0xe4,0x83,0x82,0xcf,0x35,0xef,0x37,0xe5,0x65, +0xe4,0xa5,0xe7,0xa6,0xef,0xf0,0xc0,0x89,0x81,0xf8,0x58,0x42, +0x29,0x65,0x5e,0xac,0x06,0xd8,0xd6,0xb7,0x7a,0xb2,0xd3,0xb3, +0xd3,0x2e,0xa7,0xed,0xb4,0xc4,0x19,0x0e,0x38,0xe3,0xb0,0x9c, +0xaa,0xa8,0x67,0xca,0x80,0x0c,0xbe,0x73,0x83,0x3b,0x7f,0xf4, +0xfc,0xd1,0x4c,0x13,0xbb,0x94,0x43,0x9e,0xa6,0x9b,0x98,0x62, +0x4f,0xa3,0x8f,0x99,0x37,0x74,0xad,0x9f,0x17,0x9d,0x2d,0x3e, +0x53,0x62,0x76,0x36,0xe7,0xd2,0xc5,0x9c,0x93,0x10,0x85,0xcb, +0xf9,0xea,0x0e,0x8c,0x82,0xe5,0x19,0x39,0xe9,0xaf,0x66,0x66, +0x18,0x1f,0x3b,0x7a,0xe2,0xdc,0xd9,0xec,0xd3,0xb9,0xa7,0xf3, +0x8c,0xdf,0x2e,0x7b,0xbf,0xfe,0x5a,0x63,0x44,0x07,0xef,0x10, +0xb0,0x26,0xe0,0x40,0x7c,0x6a,0x59,0x52,0x79,0x92,0x5a,0x96, +0x57,0x52,0x50,0x52,0xc0,0x41,0x5f,0x1f,0xba,0x49,0xf7,0xfd, +0x6a,0x8b,0x2b,0x6c,0x8b,0xf9,0xf4,0xa8,0xa4,0xa8,0xc3,0x91, +0x1c,0x5a,0x31,0x4d,0x85,0xa9,0x65,0x09,0xfa,0x78,0xb5,0xb1, +0x5b,0x6c,0x69,0x92,0x2c,0xaa,0x30,0xce,0x18,0xdd,0xa5,0xc3, +0xd9,0xf6,0xf8,0x2f,0x8c,0x9a,0x9b,0xc6,0xc1,0x72,0x44,0x82, +0xcf,0xaf,0x18,0x02,0xce,0x0c,0xac,0xd0,0xc2,0x16,0xa6,0xe0, +0x54,0x76,0x49,0x84,0xcb,0xcb,0xde,0xa6,0x1a,0xdb,0x4f,0x5b, +0xda,0xae,0x5c,0x78,0xdb,0x38,0x9b,0x59,0x9d,0xfb,0xe1,0x2e, +0x58,0x3d,0x53,0x38,0xc7,0xe4,0x5d,0x37,0x92,0xe0,0x2b,0x99, +0x1c,0x0e,0xda,0x95,0x88,0x0b,0x4f,0x94,0xf8,0xf1,0x70,0x20, +0xef,0x0f,0x75,0x65,0x34,0xa3,0x1b,0x47,0x50,0xed,0x91,0xde, +0x6f,0x0a,0x6b,0x99,0xe6,0x7c,0xea,0x9a,0xa5,0xac,0x43,0xbe, +0x51,0x04,0xce,0x1a,0x83,0x68,0x2d,0x9c,0xb7,0x19,0xfc,0x5e, +0x5c,0x3a,0x68,0xe3,0x20,0xbe,0x38,0x6b,0xf0,0x36,0x3b,0xd2, +0x8e,0x4f,0x10,0x71,0x71,0xbf,0x8d,0xb3,0x38,0x33,0x40,0x98, +0x19,0x88,0xdf,0x05,0x8c,0x14,0x34,0x89,0x13,0x1a,0x84,0xc5, +0x8c,0x37,0x4e,0x24,0xa3,0x39,0xb8,0x74,0x24,0x87,0x11,0x93, +0x80,0x23,0xf1,0x71,0x9e,0x27,0xf1,0xb1,0x53,0x79,0xc1,0x3c, +0x98,0x5c,0xba,0x51,0xaa,0xea,0xe2,0x3e,0x3b,0xc2,0x1c,0x2e, +0x3a,0xd5,0x60,0x0a,0xeb,0x19,0x5d,0x5e,0xb6,0xd6,0xac,0x90, +0xf5,0xce,0x35,0x8a,0xc7,0xc5,0x6c,0xe6,0xd9,0xf3,0xb9,0x66, +0xc5,0x70,0x7a,0xf3,0xa8,0xd9,0x03,0x76,0x64,0x99,0x74,0x3b, +0x8b,0x72,0x74,0x1b,0x2a,0xc1,0x86,0xdd,0x16,0xbd,0x24,0x0e, +0xa7,0xa6,0xc8,0x69,0x38,0x19,0x17,0xc3,0x44,0xfd,0x7b,0xfa, +0xd8,0x46,0x1e,0xb2,0x98,0x64,0xbf,0x1f,0x93,0x81,0x3b,0xfc, +0xfd,0x21,0x63,0x75,0xdf,0x4a,0xd5,0x6c,0xd5,0x22,0x99,0x31, +0x55,0xd0,0x4e,0x44,0xbc,0x55,0x2f,0xdc,0x62,0xc4,0x5b,0x38, +0x89,0x34,0x0a,0xb7,0x0e,0xb2,0xc1,0x93,0xfc,0xc4,0x5b,0x2d, +0x34,0x25,0x91,0x91,0x00,0x92,0x68,0xb9,0xfd,0x30,0xae,0x4d, +0x91,0xd1,0x09,0x76,0x50,0x7c,0xd2,0xae,0xf8,0x82,0xfb,0xd9, +0x8d,0x71,0x2b,0x92,0x18,0xeb,0xce,0xb1,0xcc,0xdd,0x20,0xa5, +0x24,0x4f,0x0a,0xdf,0x11,0x27,0x2f,0xab,0xcc,0x7a,0x68,0xe6, +0x1e,0x96,0x18,0xeb,0x58,0x4a,0x9a,0x3d,0xfc,0x25,0x3b,0x72, +0x59,0x3a,0x58,0x37,0xb8,0x03,0x42,0x3a,0x30,0xa4,0xc9,0x09, +0x79,0x9c,0x8b,0xc1,0x0e,0xb8,0x9c,0x59,0x02,0x53,0x8e,0x16, +0x1c,0xbf,0x98,0x71,0xd4,0x38,0x3d,0xd3,0xe8,0xe4,0xeb,0x60, +0xd6,0x83,0x66,0xb0,0x9b,0x19,0xc8,0xe9,0xcb,0xeb,0x29,0x8e, +0x6e,0xe7,0x57,0x1c,0x42,0xe3,0x54,0x7c,0xf6,0x74,0x81,0x27, +0xdf,0x7b,0xa1,0xef,0x62,0xef,0x65,0x0e,0xb7,0xe2,0x2e,0x37, +0x78,0x85,0x8d,0xdd,0xeb,0xb2,0x67,0xe1,0x86,0x7a,0x4f,0xfe, +0x87,0xcf,0x6a,0x6f,0x16,0xdc,0xe3,0xb2,0xb1,0xa6,0x1f,0x62, +0x99,0xec,0xcb,0xd2,0xf6,0xd8,0xb7,0xf8,0x54,0x63,0xb5,0x11, +0x9a,0xf6,0xc3,0x65,0x58,0xce,0x66,0x04,0x26,0x78,0x45,0xfb, +0x26,0x9c,0x4d,0x38,0x9b,0x74,0x2e,0xc7,0x83,0xff,0x3c,0xf7, +0xeb,0xa2,0x37,0x8a,0x72,0x53,0x73,0x52,0xb2,0x53,0x9b,0x35, +0xfc,0xa1,0x9e,0x43,0x6d,0x31,0xd5,0x81,0x71,0xbc,0x74,0x54, +0x72,0x7e,0x72,0xf8,0x29,0x9f,0x93,0x5e,0xa7,0x15,0x0d,0x25, +0xcd,0x85,0x2d,0x1c,0xf8,0xa2,0x3b,0x3e,0x2e,0x5d,0x6f,0xf9, +0x47,0xa6,0xa9,0xa8,0xb0,0xc1,0x0c,0x4e,0xb8,0xb0,0xa2,0xee, +0x21,0x29,0x6b,0xd0,0x74,0x17,0xb6,0x7a,0x97,0xf0,0x69,0x01, +0x71,0x1e,0x87,0x83,0x38,0x4c,0xf8,0x9a,0x28,0x43,0x94,0x81, +0xc5,0xfe,0x6d,0x4a,0x3e,0xb5,0x31,0xb6,0x3d,0x51,0xcf,0x09, +0x3a,0x1b,0x72,0x30,0x33,0xf2,0x65,0x5f,0x53,0x6d,0x40,0x93, +0x5c,0x57,0xaa,0x51,0x19,0x67,0x65,0x5f,0x3c,0x97,0x7d,0xfa, +0x07,0x5b,0x5e,0x5b,0xbf,0xb2,0xf7,0xd8,0xe5,0x93,0xe7,0x8e, +0x1f,0x37,0xce,0x94,0x8e,0x3a,0x2a,0x51,0x65,0xab,0xf5,0x26, +0x34,0x76,0x37,0xe0,0x20,0x50,0x2e,0x31,0x72,0x42,0xd0,0x12, +0x18,0xb2,0xc0,0x21,0xf4,0xb4,0x06,0x4f,0xb1,0xfe,0x96,0x50, +0x0f,0x41,0xd7,0xd9,0xd1,0xa5,0x30,0x8f,0xc0,0x2a,0x0b,0x5c, +0x85,0x5b,0x6c,0x85,0x57,0xae,0xb1,0x68,0x2c,0x0e,0x90,0x3a, +0x98,0x51,0x0b,0xab,0xe5,0x30,0xc3,0xba,0x98,0x8f,0xc7,0xd9, +0xc1,0xb8,0x27,0x00,0x8d,0x77,0x24,0x6f,0x4b,0xdd,0x9e,0x5e, +0x62,0xc5,0xc3,0x22,0x2d,0x2c,0x6c,0x84,0x19,0x6d,0xc7,0x87, +0x78,0xaf,0x54,0xcf,0x34,0xf7,0x74,0x0e,0x9f,0x78,0x83,0x24, +0xc3,0x33,0x71,0x30,0x25,0x12,0x38,0xdb,0x24,0x5e,0x87,0x93, +0x54,0x38,0xad,0x04,0xa7,0x72,0x53,0x41,0x39,0xb2,0x86,0xc0, +0x1a,0x0b,0x5c,0x83,0xab,0x6d,0x85,0x99,0xd7,0xa4,0xaa,0xb5, +0x78,0x02,0x25,0xec,0x3b,0x45,0xf7,0x64,0xd7,0x94,0x11,0x03, +0x3c,0x4e,0xf1,0xc7,0x1d,0x51,0xb8,0x22,0xa3,0xd0,0x96,0x1f, +0xbe,0xfc,0x46,0xf6,0xeb,0xf9,0x1c,0x5e,0xc6,0x08,0x1b,0x88, +0x10,0xfd,0x6f,0x09,0xfe,0x70,0x66,0x98,0x1d,0x35,0xc6,0x6f, +0x48,0x2d,0x18,0xd7,0xc0,0x46,0x19,0x18,0x5b,0x17,0xf2,0x89, +0x38,0x37,0x84,0x2a,0x78,0x7c,0x61,0x6f,0xf2,0xae,0xd4,0x3d, +0x19,0xc5,0xd6,0x3c,0xcc,0xd6,0xc2,0x4b,0x0d,0xf0,0x74,0x2b, +0xed,0x95,0x4f,0xaa,0x77,0x9a,0x27,0xed,0xd5,0xc4,0x37,0x49, +0x1a,0x3c,0x97,0x00,0xd3,0xa2,0xe0,0x49,0xbb,0x64,0xbe,0x02, +0x19,0x05,0x4e,0x2f,0xc2,0x67,0x68,0xaf,0x2e,0x8e,0x50,0xf7, +0x5e,0x67,0x8d,0xeb,0xd0,0xd4,0x0e,0xbe,0x1e,0x62,0xc1,0x1f, +0x78,0x62,0x0b,0x1b,0x59,0x15,0xb2,0x3d,0x38,0xf5,0xfd,0xd9, +0x5d,0x3d,0xfc,0x5a,0x98,0xe4,0xf7,0x53,0x02,0x98,0x70,0xe2, +0xf3,0xe2,0x12,0xf2,0xc1,0x57,0x83,0xf0,0x54,0x39,0x4c,0xb7, +0x57,0xf1,0x87,0xf1,0x09,0x17,0x34,0xda,0xb6,0x8e,0xcb,0xc3, +0x57,0x49,0x68,0x42,0x70,0x62,0x50,0x72,0x39,0x3c,0x5d,0x06, +0x4b,0x0a,0xe1,0x69,0xbb,0x7c,0xe9,0xe2,0x88,0x68,0xdc,0x11, +0x81,0x33,0xac,0x0f,0x5b,0xc6,0x5a,0x27,0x94,0x50,0x31,0x3f, +0xad,0x19,0x9e,0xec,0x87,0x09,0xb7,0x39,0x0c,0xd7,0x93,0x4c, +0x78,0x2e,0x05,0x9e,0x89,0x85,0x69,0x8e,0x69,0xbc,0x1a,0x27, +0x17,0xe3,0xb3,0x79,0xf8,0x2c,0x27,0x38,0x42,0x3c,0x39,0x86, +0x36,0x76,0x38,0x19,0x5f,0x99,0x5d,0x43,0x79,0xcd,0x76,0x60, +0xef,0xc0,0xdc,0x3c,0xf0,0xe3,0x60,0x17,0x73,0x0e,0xe7,0x1d, +0x9d,0x9d,0x6e,0xc9,0xd9,0x67,0x24,0xa5,0x39,0xcc,0xc4,0x49, +0xd2,0x01,0xa1,0xbf,0x30,0x6f,0x37,0x96,0xbf,0x5b,0x6a,0x26, +0xff,0x20,0x0f,0xd8,0xf3,0xe0,0xc5,0x89,0x0b,0xec,0x99,0xa9, +0x90,0x35,0x42,0xf9,0xd5,0x5a,0x4a,0x29,0xa5,0xca,0x88,0x5f, +0x86,0xa4,0xd7,0x6d,0xe6,0x13,0xf7,0x8c,0x22,0xaa,0x2d,0xec, +0x58,0xb8,0x52,0x77,0x72,0x18,0xbb,0x43,0x8c,0xa4,0xcb,0x87, +0xab,0x6a,0xe8,0xe7,0xb2,0x30,0x23,0x58,0xc0,0x7e,0x21,0xff, +0xbc,0xec,0x9d,0xaa,0xc8,0x2b,0x3c,0x3e,0xe5,0x8a,0xeb,0x83, +0x71,0x55,0x42,0xa1,0x0d,0xdf,0x9e,0xd5,0x95,0xdd,0x93,0xcb, +0xe1,0x6c,0x16,0xf7,0xc7,0x65,0xdb,0xc0,0x4e,0xa5,0x11,0xe5, +0x99,0x68,0x2d,0x7d,0x36,0xa7,0x9f,0x1d,0xd9,0x4d,0xba,0x90, +0xf7,0x4c,0x61,0x15,0xd3,0x67,0x78,0xd7,0xec,0x15,0xd6,0x5e, +0x66,0x84,0x16,0xac,0xf8,0xf9,0x27,0xa4,0x0a,0x66,0x56,0xc1, +0x96,0x62,0x98,0x69,0x57,0xc0,0x27,0xe3,0xfc,0x70,0xb4,0x0a, +0xc5,0x17,0xad,0x53,0xad,0xd2,0xad,0x32,0x8a,0x6c,0x78,0x78, +0x41,0x0b,0x7c,0x03,0x4c,0x6e,0x3f,0x3e,0xc8,0x7b,0x26,0x79, +0xa4,0xba,0xa5,0x71,0xaf,0xdc,0xa3,0x96,0x91,0xdc,0x28,0x1a, +0x9e,0x74,0x48,0xe3,0x35,0xc8,0x95,0xe2,0xb3,0xf9,0xd4,0x32, +0x53,0xc1,0x7f,0xe4,0x1d,0xa9,0xd4,0xe0,0x15,0x3b,0x61,0xda, +0x10,0xae,0x81,0xd5,0xec,0xc8,0x76,0xe9,0x72,0x96,0x22,0xd8, +0x6b,0x2d,0xee,0xc0,0xcd,0x62,0xe4,0xf0,0x35,0xb8,0x6f,0x7b, +0x43,0x88,0xa4,0x00,0xe0,0x4c,0x59,0xd1,0xe8,0x0b,0x62,0x1c, +0xa9,0x86,0x19,0xd5,0xb0,0xae,0x14,0x9e,0xb7,0x29,0xe4,0x93, +0x70,0x4e,0x28,0x9a,0x07,0xa1,0xf1,0xfe,0x64,0xf3,0xd4,0xbd, +0x06,0x7f,0x79,0x4e,0x0d,0x4f,0xd7,0xc0,0xe3,0x52,0x69,0x64, +0x58,0x66,0x68,0x66,0xe8,0x51,0x0e,0xa3,0x85,0xd5,0xa4,0x1c, +0x8d,0xe4,0xf8,0x74,0x21,0xd5,0x79,0x05,0x7c,0x1a,0x3c,0x93, +0x08,0x4f,0x1d,0x86,0xc9,0x9c,0x30,0x5d,0x7c,0x95,0xc0,0x20, +0xdc,0xc7,0x41,0x76,0x2a,0x14,0x49,0x06,0x36,0x38,0xcf,0x7c, +0x3b,0xf8,0xeb,0x10,0x2b,0x84,0xc4,0x13,0xe4,0x6f,0x80,0x1d, +0xfd,0xdf,0x4f,0xb7,0xc0,0xe9,0x18,0x8c,0x76,0xd7,0x81,0x67, +0xf1,0xb0,0xd8,0x4d,0x6a,0x60,0x66,0x25,0x6c,0x29,0x81,0x17, +0x6c,0x25,0x3b,0x2c,0x88,0x40,0xab,0x60,0x7c,0xd1,0x2a,0xc5, +0x22,0xdd,0xd2,0xd0,0x8d,0x19,0x1a,0x78,0xb6,0x1e,0x98,0x56, +0x6a,0x07,0xff,0x54,0xbf,0x34,0x9f,0x0c,0x6e,0xe9,0x5b,0x24, +0x63,0xdc,0x0e,0x4f,0x39,0xa4,0x52,0x3b,0x3c,0x41,0xed,0x50, +0x40,0xed,0x00,0x7d,0xd0,0x43,0xec,0x20,0x85,0x2a,0xbf,0x55, +0x6c,0xa9,0x8d,0x11,0xbc,0xc8,0xf4,0x28,0x54,0x5d,0x66,0xc2, +0x0c,0x38,0x32,0x64,0xe8,0xd6,0x4a,0x02,0xeb,0xad,0x70,0xbd, +0xb4,0x33,0x36,0x4a,0xe7,0xbd,0xef,0x1c,0x81,0x0d,0x16,0x34, +0x07,0xf8,0xd8,0x08,0xc7,0x86,0x59,0xdc,0x32,0x3a,0x9d,0x34, +0xc3,0xaa,0x4a,0xb0,0x54,0xc2,0x66,0xcb,0x22,0x1a,0xdb,0xfb, +0xc2,0xd1,0xce,0x1f,0x97,0x73,0xd8,0x61,0x29,0xd4,0xdf,0x64, +0xf0,0xed,0x3f,0x90,0x74,0x58,0x17,0x03,0x4b,0x0e,0xc1,0x14, +0x9b,0x78,0x1a,0xc7,0x44,0x89,0x73,0x8b,0x70,0x0d,0x87,0xcb, +0xfa,0x48,0x40,0xb2,0xd4,0xc3,0x4a,0x30,0xae,0x84,0x4d,0x25, +0x60,0x62,0x18,0xcf,0x3c,0x3a,0x9e,0x10,0x7c,0xc1,0x22,0xf1, +0x40,0x8a,0x45,0x5a,0x31,0x9d,0xd7,0xe7,0x2b,0xe0,0xb9,0x66, +0x60,0xbb,0x39,0x4c,0x91,0xc6,0xf1,0x7c,0x12,0x4c,0x8f,0x86, +0x69,0x86,0x71,0x4c,0x2e,0x45,0x52,0x80,0xcf,0xd1,0xf9,0x2c, +0x34,0x44,0x9f,0x15,0x35,0xe0,0x42,0x5b,0x61,0xc2,0x35,0x56, +0x68,0x84,0xe9,0x44,0xd4,0xdb,0xc0,0x19,0x26,0xcd,0x3b,0xd1, +0x29,0xde,0x93,0xc3,0x55,0xa3,0x4b,0x87,0xef,0xc2,0x67,0xbb, +0x6f,0x8c,0x2c,0xc5,0x54,0x46,0xde,0x21,0x1f,0x28,0xee,0xe0, +0x68,0x42,0x1e,0x5d,0x3a,0x4a,0xa8,0x4d,0x4d,0x2a,0x61,0x6b, +0xa9,0xc1,0xa6,0x49,0x92,0x6f,0xd9,0x04,0xe1,0x8b,0x96,0xb4, +0x07,0x07,0x32,0xa4,0x3e,0x10,0x35,0x3c,0x53,0x07,0x46,0x2d, +0xc7,0xaf,0xf2,0x81,0x69,0x01,0xe9,0x01,0x99,0xdc,0xcb,0x6f, +0xd2,0xbe,0xcc,0xa0,0x7d,0x39,0x62,0xb0,0xa9,0x56,0xb2,0xe9, +0x73,0x92,0x4d,0x85,0xa9,0xb0,0x83,0x80,0x2f,0x7c,0x86,0xbe, +0x2c,0x7e,0x86,0xe5,0x04,0x22,0xe9,0xe7,0x48,0x0a,0x55,0xd3, +0x05,0xaa,0x4d,0x96,0x66,0x83,0x7d,0x01,0xcc,0x28,0x6e,0xdf, +0xcb,0xf7,0x54,0xba,0xdf,0xdf,0xff,0xb9,0xf5,0x9b,0xc6,0x1e, +0x91,0x95,0x21,0xd5,0x7e,0x95,0x3e,0xc6,0xeb,0x8f,0xcf,0x3b, +0x31,0xf7,0x64,0xcb,0x9b,0xb5,0x0f,0xca,0xde,0xb0,0x2f,0xe6, +0xa3,0xf7,0xf8,0xac,0xf0,0xdc,0xb6,0xfa,0x0c,0x8f,0xc6,0x6f, +0x11,0x58,0x6e,0x83,0xcb,0xd1,0xc4,0x1e,0xfe,0x70,0x95,0x2d, +0x14,0x8f,0x13,0xff,0x14,0xdf,0x54,0x9f,0x74,0x3d,0x3c,0xa7, +0x83,0x95,0xc5,0x40,0xec,0xa5,0xd3,0x99,0x4d,0xa3,0x70,0x7b, +0x38,0xf2,0x0e,0x69,0xf6,0x19,0xf6,0x99,0x52,0x4c,0x3c,0xad, +0x81,0x29,0xb5,0x30,0xa1,0x95,0xc3,0xc8,0x8f,0xc9,0x51,0x98, +0x92,0x02,0x4f,0xc4,0xc1,0xe3,0x8e,0xe9,0xbc,0x0a,0x27,0x16, +0x21,0xcd,0x36,0x53,0xb8,0x91,0x81,0xf3,0x64,0x10,0x0b,0x61, +0x0e,0xa4,0x5e,0x11,0xe7,0xb3,0x79,0xea,0x1c,0x75,0x96,0xca, +0xa9,0x98,0x4f,0xdc,0xef,0xbf,0xce,0xc3,0xb6,0x2d,0x88,0xd7, +0x56,0xa9,0xeb,0x15,0x8d,0x1c,0xbc,0x40,0xd5,0xcb,0x31,0x07, +0xaa,0xa2,0xe3,0x97,0xae,0xb5,0xc4,0x95,0xdb,0xf5,0x34,0xa1, +0x2c,0x7e,0x17,0x1e,0x7b,0xef,0x32,0x3c,0x26,0xbd,0x7b,0x86, +0x13,0x80,0xdb,0x02,0x2b,0xb7,0x56,0xd0,0x88,0x5f,0xf3,0xce, +0xaa,0x9b,0xb1,0x5f,0x71,0x53,0xff,0x3a,0x17,0x5a,0x09,0x34, +0x60,0xe8,0x77,0x70,0xe1,0x0a,0x5e,0xf8,0xc5,0xee,0x25,0x4c, +0x70,0x84,0x84,0x05,0xe8,0x8b,0x0d,0x60,0xce,0x06,0xad,0x58, +0xb9,0x18,0x9f,0xda,0x5a,0x43,0x59,0xc0,0xd3,0x1f,0x7d,0xf2, +0x8d,0x0a,0x26,0x52,0x94,0xfc,0xea,0x2a,0x7c,0x95,0x4d,0xf3, +0xea,0x84,0x07,0xcb,0x61,0xda,0xca,0x9a,0x3e,0x1e,0x27,0x7f, +0xb8,0xf1,0x9b,0xa0,0x4f,0x38,0xf1,0xb0,0x30,0x9d,0xba,0xa3, +0x35,0x75,0x47,0x13,0x3b,0xf8,0x78,0x88,0xbd,0x20,0xd6,0x92, +0xc0,0xd4,0x80,0x74,0xff,0xf4,0x2a,0x30,0xd5,0xc3,0xf6,0x22, +0x30,0xa5,0x66,0x48,0xc5,0x85,0x91,0x48,0xc9,0xfa,0x4b,0x0e, +0xa9,0xf6,0xe9,0x63,0x66,0x78,0x4a,0x03,0x5c,0xed,0x4f,0x2d, +0x1c,0x06,0x3e,0x24,0xc7,0x60,0x46,0x2a,0x3c,0x1b,0x07,0x53, +0x0d,0x56,0x98,0x5c,0x84,0xcf,0xe5,0xe1,0x0c,0x4e,0xc8,0x16, +0x26,0x12,0xdc,0x8b,0x2f,0x4b,0x6b,0x23,0x7e,0xb8,0x97,0xc0, +0x5e,0x58,0x81,0x7b,0x69,0x0c,0x9c,0x18,0xd9,0x48,0x24,0xcd, +0xb6,0x1c,0x67,0xd8,0xc3,0xdb,0x57,0xa5,0x52,0xf7,0x4a,0x52, +0xac,0x29,0xd2,0x16,0x52,0x1a,0x7c,0x13,0xde,0x17,0x23,0xf1, +0xfd,0xef,0x19,0xff,0xf5,0x96,0xbb,0xf7,0xba,0x57,0xba,0xf3, +0x45,0x79,0x85,0xf9,0x85,0x14,0x6f,0x06,0x07,0xaf,0x43,0x4d, +0x1f,0xd6,0xc0,0xc1,0x60,0x56,0xa3,0x52,0x19,0x0e,0x35,0x14, +0x69,0xce,0x9d,0x78,0x7a,0xf6,0xb1,0xdd,0x9c,0xcd,0xf1,0xcc, +0x74,0xfb,0x99,0xcb,0xa5,0x95,0xf0,0x8f,0x99,0x4f,0xcb,0xf4, +0x5f,0x17,0x98,0xe5,0xde,0xbf,0x04,0x13,0xcf,0xc3,0x2b,0xdc, +0x4a,0xf8,0x89,0xac,0xc5,0x91,0x8f,0x59,0x18,0xc1,0x17,0xc8, +0x4a,0x1c,0x79,0xc8,0x62,0x94,0x78,0x98,0xe8,0x80,0x54,0xc0, +0xca,0x22,0x78,0xce,0x3e,0x97,0x4f,0x43,0xd3,0x43,0xb8,0x2d, +0x1c,0x8d,0x9d,0x53,0x1d,0x33,0x1c,0x33,0x8b,0x28,0x20,0x18, +0xa9,0x60,0x42,0xf5,0x9f,0x9b,0x68,0xd4,0x87,0xa5,0x87,0x64, +0x84,0x64,0x72,0x5b,0xee,0xd2,0xb1,0x4e,0x49,0x85,0xc9,0xf1, +0xf0,0xb8,0x53,0x06,0xaf,0xc4,0x89,0x85,0xf8,0x44,0x2e,0x9d, +0x71,0xe1,0x02,0x30,0x24,0x93,0xdd,0x18,0x1d,0xb9,0xd8,0xcd, +0x54,0xed,0x33,0x58,0x56,0x5f,0xae,0x2a,0x33,0xbe,0x9c,0x75, +0xf1,0xd5,0xec,0x53,0x30,0x79,0x1d,0xaf,0x6b,0x99,0x73,0x2f, +0xe3,0x77,0xa7,0x1c,0x16,0x69,0xb2,0x74,0x3d,0x26,0x05,0xd4, +0x16,0xe9,0x23,0xd4,0xb5,0x97,0xd9,0xe2,0x32,0x9c,0x6e,0x0f, +0x77,0xae,0xb2,0xc2,0xe7,0xd7,0xc9,0xa0,0x58,0x8f,0x31,0x2c, +0xe6,0x9e,0x40,0xef,0x6d,0xb8,0xdc,0xb4,0xd7,0xdf,0xe8,0x01, +0xec,0x2e,0x00,0x3f,0xa8,0x30,0xa1,0xe0,0x07,0xe5,0xe2,0x08, +0x01,0xbb,0x3e,0xb4,0xfb,0x19,0xd6,0x0a,0x4f,0x8b,0x4f,0x8a, +0x4f,0xc3,0xaa,0x59,0xb8,0xdf,0x05,0xf6,0xe3,0x53,0x18,0xe3, +0x2c,0x24,0xf5,0xe3,0x41,0xc6,0x49,0x38,0x41,0xe6,0x80,0xd1, +0x8f,0xcc,0x00,0x1a,0x11,0x30,0x82,0x09,0x68,0xc4,0x8a,0x17, +0xf0,0x26,0x89,0x48,0x0b,0x4b,0x0f,0xcd,0xa8,0x80,0xe9,0xe5, +0xb0,0xb4,0x10,0x9e,0x71,0xc8,0xa3,0x23,0x7f,0xe1,0x30,0x6e, +0x8e,0x44,0xe2,0x92,0xe2,0x9c,0xe6,0x64,0x18,0xf9,0x63,0x9a, +0x1f,0x6b,0xff,0x48,0x5d,0xfc,0xc0,0x47,0x74,0xc0,0x93,0xd3, +0x80,0x4b,0x80,0x89,0x74,0xc0,0x8a,0x97,0x0a,0x90,0xcd,0x45, +0x9a,0x6a,0xdf,0x80,0xd3,0x04,0x27,0xcf,0x81,0xc9,0x86,0x97, +0x60,0x26,0x50,0x38,0x9c,0x40,0x41,0xad,0x9c,0x4e,0xac,0x3a, +0x50,0xed,0xaf,0xf4,0xed,0xd3,0xf0,0xc9,0xb5,0xc9,0x95,0x09, +0x55,0x1c,0xac,0xbd,0x82,0xf5,0x4c,0x89,0xbe,0xb0,0x32,0xb7, +0xd2,0xbe,0x88,0x0f,0x7b,0xc5,0x69,0xed,0x8e,0xbd,0xed,0xfe, +0x7c,0x43,0x7d,0x6d,0xab,0xbe,0x83,0x13,0xdc,0xaf,0x90,0xc2, +0xca,0x7c,0xe9,0xcb,0x02,0xfe,0xc8,0x4a,0x9f,0x35,0x96,0x7b, +0xba,0x82,0xf9,0xaa,0xfa,0xf2,0x66,0x75,0x2b,0xf7,0x39,0x53, +0xee,0x5b,0xe6,0xa9,0x71,0xa3,0xad,0x25,0x34,0xc7,0x37,0xc4, +0xd6,0x73,0x60,0x7d,0x85,0xc1,0x25,0xa3,0x51,0xc4,0xf7,0x78, +0x76,0x9b,0x99,0xf0,0x02,0xbe,0xf9,0x93,0xc5,0x6c,0xd4,0xda, +0x82,0x86,0x3d,0x63,0x95,0x61,0x1f,0xe3,0x62,0xad,0xb7,0x2e, +0x77,0x52,0x45,0xb8,0xf0,0x83,0xb1,0xc3,0x87,0xae,0x45,0xb9, +0xef,0xd9,0x6c,0x87,0x4f,0x7a,0xeb,0xed,0x68,0xc2,0xe9,0x7a, +0xf8,0xc6,0xe0,0xc7,0xaf,0x07,0xdf,0x0e,0xea,0x0b,0xab,0x19, +0xe0,0x9d,0x6b,0xf6,0xd7,0xef,0xad,0xd5,0x5d,0x2f,0x7e,0xed, +0xe2,0x5d,0x0e,0xb2,0xf1,0x3b,0x66,0x77,0x59,0xcc,0xbb,0xa6, +0xdf,0x31,0x2d,0x45,0xc5,0x2d,0x66,0xb0,0x94,0xb5,0x29,0x32, +0x42,0xe9,0x4d,0xfa,0xb2,0x91,0xf5,0xa4,0xdc,0xe7,0x51,0x37, +0x5a,0xe2,0xeb,0x63,0x1b,0x38,0x58,0x77,0x05,0x1b,0x98,0x92, +0xca,0xc2,0xca,0x3c,0xc3,0xa0,0x96,0xd1,0x41,0xed,0x69,0x0f, +0xf8,0xfd,0xa0,0x8a,0x2a,0xf3,0xab,0x0c,0x83,0x3a,0xbc,0x82, +0x0e,0x6a,0x77,0x57,0x08,0x5f,0x59,0x5f,0x31,0x36,0xa8,0x0a, +0x1f,0xed,0xaf,0xad,0x3d,0x1a,0xd4,0xe8,0x6a,0x5c,0x43,0x7c, +0xe7,0x6f,0x5d,0x8f,0x9c,0x79,0x9d,0x1b,0xff,0x4e,0xc7,0x70, +0x6f,0xc7,0x55,0x6a,0x3c,0xc6,0x0e,0x8d,0x17,0xcc,0xc3,0x75, +0xcb,0xa5,0x4a,0xe8,0x7d,0x3f,0xc0,0x44,0x78,0xea,0x06,0x2c, +0xe5,0x60,0x23,0xe3,0x86,0x3b,0x70,0x02,0x4d,0x20,0x3b,0xf1, +0xb1,0x66,0xfa,0x9d,0x0d,0x4c,0x83,0xc9,0xb0,0xae,0x0f,0x1c, +0x38,0x98,0x1a,0xc0,0xcc,0x3e,0x35,0x2b,0x7e,0x83,0xe9,0xfe, +0xe4,0xb0,0x94,0x0d,0x33,0x71,0xba,0x74,0xaa,0xff,0x4f,0x0c, +0xcc,0xe8,0x2c,0xff,0x49,0x63,0xa6,0xf8,0x03,0x4d,0x2f,0xb0, +0xdc,0xa4,0x4b,0xfc,0x81,0x2d,0xd2,0x14,0x68,0xf2,0xcb,0x68, +0xb6,0xaf,0xa0,0x0c,0xb0,0xdc,0xbb,0xcc,0x5d,0xe3,0xda,0xaf, +0xa5,0xfd,0x8a,0x6b,0x8c,0x6d,0x7c,0x34,0x75,0x55,0x45,0x55, +0x79,0x55,0x76,0x74,0x94,0x4b,0x9c,0x56,0x6f,0xdf,0xd5,0x41, +0x47,0xd9,0x50,0xdb,0xa6,0xef,0x1c,0x1b,0x65,0x55,0x7e,0x75, +0x6e,0x15,0x65,0x0f,0x47,0x5e,0xf1,0x5e,0x65,0xb1,0x93,0x8e, +0xb2,0xaa,0xa1,0xa2,0x45,0xd3,0xc6,0x3d,0x64,0x34,0x41,0xaa, +0x00,0x85,0x5f,0x3f,0x75,0x84,0xea,0xe4,0xca,0xc4,0x4a,0x0e, +0xac,0xe8,0xd4,0x99,0x62,0x3e,0xa9,0xba,0xac,0xbb,0x5c,0x96, +0x15,0xdd,0xcf,0xa3,0xcd,0x41,0xac,0x3e,0x81,0x27,0xcf,0x71, +0x4b,0x58,0xf4,0x8c,0xc2,0xc9,0xcb,0x91,0x33,0xed,0xf1,0x33, +0xfa,0x01,0x4c,0x74,0xb0,0x02,0xac,0x4c,0x9a,0xd8,0x7b,0xe7, +0xef,0x9f,0xbf,0x7f,0x91,0x13,0x2f,0xde,0x10,0x2e,0xb3,0x1f, +0x5c,0x7a,0x90,0x75,0x37,0x87,0xb3,0x65,0x71,0x57,0x03,0xae, +0x83,0x89,0x38,0xd7,0xb4,0xb7,0xc9,0x68,0x05,0x3c,0xe1,0x05, +0x0b,0xc0,0xdc,0x64,0x2a,0x68,0x47,0xb6,0x91,0x32,0x3f,0xad, +0xb7,0xda,0xb3,0x5f,0xcd,0x27,0x36,0xc5,0xd7,0xc6,0xd5,0x71, +0xb0,0x7e,0x80,0x4e,0x55,0xb1,0xae,0x50,0x97,0xab,0x73,0xa0, +0x83,0x58,0xe5,0xb4,0x61,0xe7,0x3e,0x69,0xaa,0xea,0x6a,0x5b, +0x74,0x6d,0x9c,0xe0,0x31,0x40,0x0a,0x75,0xf9,0xfa,0x1c,0x9d, +0xe4,0x7f,0x6b,0x7d,0x37,0x58,0x9b,0x4b,0x53,0x55,0x5b,0xd6, +0xa4,0x6e,0xa6,0x53,0x35,0xde,0x9a,0x8a,0xfa,0x5f,0x42,0x6d, +0x2c,0x6d,0xcd,0x66,0x80,0x19,0x9d,0x37,0x1a,0x42,0xd6,0x26, +0x14,0xbc,0x67,0x06,0x2f,0x8c,0xac,0x84,0xd6,0x51,0xe9,0xb8, +0x86,0x39,0xd5,0x61,0xc0,0x9b,0x0a,0xed,0x4c,0x8f,0xbc,0xa8, +0xdb,0x0c,0xa6,0xb0,0x36,0xc5,0x54,0x8b,0xb0,0xa2,0x31,0xd4, +0x10,0x54,0xd3,0xd4,0xa7,0x66,0xe0,0xe1,0x0c,0x9a,0x0e,0x2b, +0x60,0xaf,0xc1,0xa9,0x76,0x8e,0xf7,0x74,0x80,0xb6,0xdd,0x14, +0x5f,0x27,0xf5,0x74,0x9d,0xd4,0xd3,0x12,0x5d,0x81,0x2e,0x4f, +0x27,0x39,0xd5,0x2a,0xe7,0x0d,0x3b,0xfe,0xe3,0x9e,0x2a,0xf9, +0xc4,0xe6,0xf8,0xba,0x47,0x3d,0x4d,0x95,0xae,0x78,0x37,0xc2, +0x05,0x8e,0x94,0x3c,0x9e,0xc6,0x05,0x87,0x70,0x01,0xce,0xc4, +0x39,0x5d,0x54,0xd6,0x9a,0xc2,0xd2,0x7a,0x58,0x7c,0x09,0x76, +0x71,0xb0,0xcc,0x8d,0x59,0x70,0x1a,0x8d,0x32,0x36,0x9a,0x7a, +0x9e,0x48,0xca,0xf0,0x9a,0xb9,0x5a,0xba,0xe9,0xfd,0x3e,0xf3, +0x91,0x5e,0xf3,0x69,0xbe,0x59,0xe1,0xe7,0x97,0xe0,0xd9,0x9f, +0x4c,0x3e,0xc2,0x70,0x30,0xa2,0xe9,0x73,0x94,0x27,0xb7,0x21, +0xf1,0xc0,0x0d,0xe1,0x6d,0xfc,0x49,0x7c,0x9b,0x85,0x56,0x41, +0x4e,0xc4,0x79,0x98,0x28,0xcc,0x7b,0x34,0x28,0x5f,0xad,0x97, +0xc6,0x43,0x1a,0x54,0x73,0x5c,0x7d,0x5c,0xfd,0xa3,0x41,0xe9, +0x0b,0xf5,0xb9,0x7a,0x69,0x50,0x2b,0x9c,0xd6,0xef,0xdc,0x3b, +0x16,0x29,0x2d,0xba,0x76,0xea,0x43,0x74,0x50,0x7a,0x1a,0xfe, +0x7a,0x87,0x02,0x3e,0x7a,0xd3,0xc1,0x2d,0x4e,0x96,0x5d,0xa1, +0xbc,0x56,0x2f,0xdd,0x2b,0xcc,0x7d,0x41,0xc3,0x5f,0xeb,0xa5, +0xf6,0x18,0x50,0x4a,0x1e,0x59,0x2f,0x45,0x0a,0x1d,0x94,0x78, +0x1a,0x5f,0x22,0x38,0x88,0x3d,0x22,0x7b,0xb3,0x47,0x18,0x72, +0xbb,0x29,0xb0,0xf8,0x00,0x9e,0x15,0xe6,0x5d,0x15,0xe7,0x49, +0x55,0xd9,0xbd,0xe2,0x4d,0x02,0x7e,0xc2,0x90,0x74,0x2c,0x01, +0xf5,0x88,0xed,0x92,0x9d,0x7d,0xc6,0x3c,0xa2,0x71,0x6c,0x0e, +0xa9,0x47,0x34,0x32,0xd2,0xf9,0x47,0xe3,0x1e,0xe1,0xbc,0xe9, +0x91,0x9d,0x9b,0x7f,0xb3,0xb3,0x2e,0x47,0xe7,0x60,0xb0,0xf3, +0x46,0x9b,0x7d,0x9d,0x21,0xbc,0xbe,0xb6,0xbc,0x51,0xd5,0x4c, +0xbb,0x54,0xe6,0xaf,0xf1,0xd6,0x78,0xf6,0xa9,0x7e,0xf5,0x2f, +0xda,0xa5,0x4d,0xe2,0xa0,0x74,0xb2,0x38,0x2c,0x12,0x9e,0x1b, +0x12,0x9f,0x03,0xc6,0x02,0x19,0x0c,0x64,0x15,0x0d,0xa5,0x4d, +0x05,0x4d,0xf6,0x25,0x7c,0xe8,0x1c,0xf3,0x59,0x2b,0xd7,0x77, +0xfa,0xf1,0x6d,0x2d,0x4d,0xdd,0x35,0x7d,0x1c,0x9c,0xc6,0x45, +0xd8,0x66,0x07,0x6d,0xb8,0x5a,0x5c,0x66,0xf3,0xd7,0x29,0xc3, +0xe2,0x4a,0x90,0x2e,0x84,0x2f,0x1b,0x31,0x27,0xca,0x30,0x45, +0xa8,0x3c,0x88,0x3a,0x5c,0xaa,0x2e,0xa5,0x3c,0xb9,0xcc,0x60, +0xbf,0xf1,0xce,0x56,0x48,0x9d,0x5d,0x4d,0x3b,0x7b,0x40,0xea, +0x6c,0x2d,0xed,0x6c,0xeb,0xa3,0xce,0x56,0x18,0x9c,0x22,0x7a, +0x9d,0xef,0x26,0x9b,0x7d,0xd4,0x7e,0xfa,0x9a,0xb2,0x46,0x55, +0xd3,0x58,0x67,0x7d,0x0d,0xee,0x2b,0x0d,0x3d,0xae,0x96,0x66, +0x9a,0x01,0x06,0x1f,0xe0,0x11,0xd2,0x10,0xd1,0x18,0xde,0x10, +0x8a,0x2f,0xa4,0xe3,0x9c,0x63,0xb8,0xf2,0xc4,0xd5,0xeb,0x43, +0x77,0xda,0x5f,0xb7,0xd7,0xf1,0x5e,0xbb,0xcc,0x37,0x6d,0xdb, +0xee,0x75,0xce,0xf3,0xac,0xc7,0xb9,0xcb,0x14,0x08,0x8a,0xf3, +0xe0,0x64,0x3e,0x04,0x69,0x75,0x87,0xcb,0x0f,0x95,0x45,0xb5, +0xb6,0xf0,0x3b,0xdf,0x5f,0xf6,0x60,0xcd,0x6b,0x9c,0x68,0x3f, +0xfa,0x34,0xe9,0x14,0xfa,0x3d,0x6f,0xc0,0x37,0xa3,0x9b,0xf1, +0x1b,0x56,0xf8,0x2f,0x68,0x20,0xb8,0x5f,0xec,0x87,0xfd,0x94, +0x97,0x9d,0x1d,0xd9,0x4b,0x68,0xbf,0xd9,0x7f,0xd9,0xef,0xcf, +0x19,0xad,0xa1,0x6b,0x03,0xbf,0x75,0xad,0xff,0xdf,0x8e,0x44, +0x43,0x61,0x45,0xe5,0x4b,0xdd,0x3b,0xa9,0x2e,0xb1,0x2a,0xbe, +0x7a,0xcc,0xbd,0xff,0x84,0x9e,0xe4,0x56,0xd4,0x9b,0x01,0x43, +0x07,0x6b,0x7b,0x78,0x97,0xc6,0x4d,0x6d,0x36,0x15,0x9c,0x30, +0x5b,0xfc,0x82,0x38,0x1f,0x2a,0xbc,0x6e,0x26,0xac,0x13,0x9e, +0xc0,0x44,0x8c,0x65,0x15,0x0e,0x46,0xe0,0xc3,0xf4,0x14,0xab, +0x9b,0xcd,0x40,0x27,0x9e,0x15,0x13,0xd9,0x55,0x2d,0x61,0x9f, +0x98,0xc2,0x8f,0x4c,0xa7,0x42,0x6e,0xb8,0xfc,0xdd,0x4a,0x6d, +0x84,0x2b,0x59,0xf1,0x53,0xb8,0x49,0xf6,0x77,0x98,0xd7,0xec, +0xad,0x0e,0x75,0xe2,0xdf,0x0c,0xbb,0x15,0xf1,0x86,0x97,0xf4, +0x8e,0xc8,0x47,0xe4,0xfd,0x37,0x1e,0xfe,0xdc,0xff,0xc0,0xb3, +0x8e,0xb7,0xdd,0xb0,0x6a,0xe1,0x36,0x2b,0x4e,0x9a,0xab,0xed, +0xc4,0xe0,0x9d,0xee,0x57,0x54,0x52,0x1e,0xaf,0x8b,0xf9,0x15, +0x15,0x28,0xd4,0xe5,0x19,0x7c,0x7d,0xb9,0xd3,0xba,0x1d,0xbf, +0xf3,0x75,0xf8,0x0e,0x9f,0x24,0x95,0x75,0x14,0xd9,0x5a,0x0c, +0xc8,0x46,0x03,0xc5,0xbd,0x5f,0x69,0x00,0x81,0x18,0xc9,0xb5, +0xaf,0xe0,0x6b,0x8c,0x01,0x0a,0xf5,0x52,0x80,0xaf,0xf2,0x59, +0x6b,0xb5,0x87,0xeb,0xc6,0x13,0x44,0x85,0x33,0x60,0xed,0xcb, +0x10,0x3a,0xa7,0x92,0xea,0xf0,0xe8,0x1f,0x90,0xff,0xc6,0xe9, +0x17,0x4e,0x78,0x7a,0x58,0x5c,0x0c,0x8f,0x59,0xe0,0x63,0xa2, +0xa9,0x8d,0xf0,0x18,0xe3,0xfa,0x12,0x4e,0x59,0x82,0x87,0xe6, +0x4b,0x7b,0xee,0x91,0x7f,0x81,0xd9,0x7f,0x54,0xc2,0x0c,0xca, +0xfc,0x8e,0xe3,0x0e,0x07,0xd8,0x81,0x66,0xb7,0xc0,0x0c,0x6c, +0x06,0xd1,0x06,0x8e,0x33,0x52,0x50,0xec,0x22,0x5a,0x7f,0xad, +0xaf,0xca,0x8b,0x06,0x45,0x52,0x43,0x7c,0x8d,0x64,0xfe,0x0d, +0xfd,0xd4,0xcf,0x8a,0x2a,0x0a,0x2b,0xc6,0xe6,0x6b,0x8d,0xf3, +0xe6,0x9d,0x63,0xf3,0x55,0x23,0xcd,0x17,0xfc,0x48,0x69,0xc4, +0xf8,0x64,0xd0,0x5c,0x13,0xa0,0xf1,0x51,0x7b,0x8d,0xb9,0x95, +0xe1,0x61,0x9b,0x7e,0x7c,0x83,0x29,0xac,0xa0,0x41,0x53,0x21, +0x05,0xcd,0x7a,0xbf,0xcd,0xb6,0xfb,0x39,0xc1,0x5b,0x7c,0x91, +0x5c,0x17,0xd7,0x15,0xb1,0x30,0x43,0x98,0x78,0x4d,0x44,0x56, +0xa1,0x2f,0xd5,0x17,0xe8,0xed,0x64,0x7c,0xe8,0x96,0x3d,0xab, +0xb6,0x3b,0x74,0xf8,0xf1,0xd5,0xda,0x9a,0x9a,0x4a,0x6a,0xb9, +0x44,0x9c,0xc1,0xa4,0x89,0x0b,0xac,0x05,0x13,0xf6,0xe0,0x7c, +0x9c,0x7e,0x00,0x4f,0xee,0xff,0x37,0xd7,0xb3,0x1c,0xbd,0x83, +0x66,0xb7,0x7d,0xbe,0xa7,0xd3,0xa0,0x1e,0x71,0x23,0xea,0x10, +0x55,0xb0,0xe2,0x20,0xed,0x4d,0x72,0x55,0x72,0x45,0x62,0x05, +0x27,0x55,0x99,0x35,0x33,0x85,0xaa,0x7c,0xca,0xbb,0x1d,0x8b, +0xf9,0xf0,0xed,0x2e,0xe6,0xbb,0xed,0x5b,0x0f,0xf2,0x0d,0x95, +0x35,0x75,0xba,0x06,0x4e,0xf0,0xea,0x25,0x79,0xea,0x5c,0xfa, +0xa5,0x53,0x21,0x1f,0xbd,0x3b,0x70,0xaf,0x93,0x7d,0x47,0x28, +0x5f,0xae,0xd7,0x54,0x2b,0x6a,0xb9,0x2f,0x19,0x75,0x88,0x32, +0x58,0x75,0xb0,0xf7,0xb7,0xd6,0x6c,0x7b,0x99,0x51,0xcd,0xe8, +0x3b,0x64,0x60,0xe4,0xec,0xc0,0xe8,0x59,0xe1,0xf2,0xc8,0xd9, +0xfe,0xd1,0xeb,0xa3,0x54,0x98,0xbf,0x08,0x36,0x64,0x64,0x4a, +0x1f,0x76,0xfe,0x22,0x9d,0x2f,0x76,0xe1,0x7b,0xa8,0xee,0x15, +0xff,0xe2,0x0a,0xb2,0xf9,0x98,0xee,0x0e,0xe9,0x2f,0x61,0x25, +0xf3,0xff,0x93,0xfe,0xc1,0x24,0x43,0x07,0xbf,0x7d,0xd4,0xc1, +0xc5,0x86,0x0e,0xe2,0x24,0xda,0x43,0x61,0xef,0x07,0x44,0x1d, +0x2b,0x8f,0x95,0x47,0x74,0x97,0xf1,0xb1,0x55,0xc9,0xaa,0x18, +0xf5,0xff,0x16,0x32,0x50,0x31,0xd6,0x9a,0x86,0x8f,0x6f,0x8d, +0x6f,0x8c,0x69,0x34,0x50,0x9e,0x03,0xd8,0x43,0xae,0x8e,0xca, +0xed,0xc1,0x1b,0xcd,0xd8,0x63,0xaf,0x1e,0x3f,0x77,0xdc,0x14, +0xf3,0x6c,0xe1,0x12,0x13,0x87,0x13,0xf6,0x98,0xe3,0x22,0xb7, +0x4a,0x7b,0x1e,0xb6,0x5e,0xfb,0xf0,0x0b,0x35,0x18,0x73,0xa0, +0x41,0xdd,0x2d,0xd0,0xc1,0xf1,0x6b,0x78,0x1c,0xd6,0x4b,0x6f, +0x08,0xad,0x27,0x6a,0x16,0x66,0x81,0x0c,0xd7,0x1b,0xf2,0xbc, +0x0d,0xb5,0xb3,0x32,0x48,0x11,0x40,0xed,0x9c,0x52,0x95,0xa4, +0x4b,0xd4,0x51,0x97,0xee,0xc3,0x26,0xa6,0xa8,0xac,0xa0,0x2c, +0xb7,0x4c,0x72,0xe9,0x8d,0x2e,0xdb,0x77,0x59,0xb7,0x05,0xf0, +0xf5,0xd5,0xb5,0x8d,0xba,0x66,0x4e,0xf0,0xec,0x23,0x05,0x65, +0x79,0xe5,0x39,0x65,0x12,0xf4,0x6c,0x09,0xd8,0x6e,0x67,0xd5, +0x19,0xca,0xeb,0xaa,0xb4,0x75,0xca,0x06,0x6a,0x67,0x9a,0x70, +0x02,0xc6,0x13,0x4e,0x42,0x55,0x3c,0xe5,0xb1,0xb6,0x7d,0xcc, +0xe8,0x41,0x9c,0x4c,0x42,0x5e,0x3a,0xb0,0x70,0xdd,0xfa,0x4e, +0x1f,0xfe,0xf6,0xad,0xae,0x37,0xea,0xee,0x72,0xc2,0xc7,0x0c, +0x6e,0x3e,0x81,0xaf,0xc4,0xbe,0x6c,0xba,0x39,0x29,0x38,0x6d, +0xd7,0x4c,0x5c,0xc0,0xc8,0x9d,0x8c,0xe0,0x05,0xe6,0xe7,0x9e, +0x8a,0x1f,0x34,0x66,0xda,0x5f,0x72,0x60,0x2b,0x84,0x99,0x8c, +0x72,0x4c,0x8e,0x22,0x5b,0x9e,0xa5,0xe0,0xcc,0x69,0xda,0x12, +0x57,0x5f,0x7f,0x0d,0x7e,0x82,0xbf,0xb0,0x36,0x38,0x9f,0x60, +0xfb,0x57,0xd0,0xce,0x60,0x3b,0xce,0x25,0xd0,0xbe,0x10,0xdb, +0x0d,0x31,0xba,0x9b,0x68,0x03,0x34,0xbe,0x2a,0xef,0x3e,0x2d, +0x9f,0x54,0x9f,0x58,0x2d,0xe5,0xbc,0xf5,0x52,0x8c,0x16,0x97, +0x17,0x8c,0xc7,0xe8,0x5a,0xe7,0x2d,0x34,0x46,0x0f,0x4a,0x31, +0xda,0x68,0xc0,0x82,0x7e,0x42,0x63,0xb0,0x62,0x2c,0x06,0x37, +0xf8,0x6d,0xb1,0xdd,0x4f,0x33,0xa8,0xae,0xa6,0xac,0x41,0xd5, +0x48,0x33,0xa8,0xd4,0x9a,0xda,0xbb,0x57,0xc3,0x27,0x36,0x8c, +0xb5,0x66,0xd3,0xcf,0x8c,0xb6,0xa1,0x23,0x71,0x80,0xb6,0x79, +0xe2,0x4c,0x3b,0x61,0x26,0x7b,0xd6,0xff,0x74,0xf0,0xb1,0x70, +0x0e,0xdb,0x1c,0x28,0x5d,0xf1,0x5e,0xb7,0xdc,0x11,0x77,0x79, +0x94,0x53,0xb1,0xe7,0x31,0xf8,0xd3,0xdb,0x9d,0xf0,0x04,0x07, +0xd7,0xf7,0xdc,0x84,0x8c,0x5f,0x86,0x5e,0x82,0x95,0x8c,0xa5, +0x03,0x99,0x87,0xba,0xbf,0xb0,0xa9,0xa8,0x22,0x39,0xd5,0x97, +0xeb,0xce,0x37,0x71,0xa0,0xc7,0x89,0x06,0x18,0xdb,0x4f,0xe4, +0x91,0xb2,0x08,0x59,0x28,0x9d,0x8b,0xb4,0xb2,0x34,0x4d,0xaa, +0x9a,0xa6,0xc6,0xfe,0xdf,0xcf,0x45,0xf8,0x46,0xe7,0xed,0xbb, +0xac,0xe8,0x5c,0x34,0x54,0xd7,0x18,0xe6,0x62,0xe2,0x0a,0xa2, +0xa9,0x50,0xea,0x65,0x55,0xdc,0x57,0xbf,0xb7,0x7c,0xa2,0xc1, +0xf2,0x86,0xec,0xf2,0xeb,0x54,0xc5,0xee,0x0a,0xdc,0xe3,0x6a, +0xcb,0x41,0x15,0xea,0x48,0x57,0xd2,0x95,0xa4,0xeb,0x49,0xaa, +0x21,0x1e,0x2f,0xbf,0x8e,0xcf,0xbe,0x65,0xf3,0x19,0x87,0x5f, +0xba,0x40,0x12,0x63,0xbe,0x1f,0x8d,0x1c,0xd0,0xdd,0x49,0x6d, +0xc7,0xdf,0x90,0x5f,0x91,0x75,0xc9,0x39,0x17,0x38,0x4a,0x45, +0xca,0xb0,0x03,0x0c,0xe3,0x33,0xa2,0x89,0xdd,0xc8,0xf7,0x43, +0xe2,0x12,0x78,0x06,0xee,0x0f,0xe2,0x7d,0x4a,0x9b,0x73,0x58, +0xac,0x83,0xcb,0xa4,0x6e,0xf3,0xc7,0xd6,0xb0,0xd0,0x9e,0x13, +0x75,0x0c,0xcc,0xba,0xfa,0xfe,0xf5,0xda,0x07,0xdc,0xf8,0x4c, +0xfc,0x67,0xd9,0x72,0x7c,0x26,0x7e,0x9f,0x0d,0x25,0x0a,0xf1, +0x6f,0xd2,0x27,0x0d,0x86,0xf7,0xc8,0x55,0x14,0x7f,0xb0,0x98, +0x8b,0x51,0x6c,0x31,0xcd,0x92,0x79,0x7a,0x9b,0x52,0x3e,0x66, +0x8b,0xeb,0x9a,0x5d,0x07,0x3a,0x7d,0xf9,0xda,0x2a,0x7d,0xbd, +0x96,0x86,0xcd,0x25,0xe4,0xc5,0x25,0x76,0xd0,0xc2,0x64,0xe2, +0xe4,0x0d,0xdb,0xd1,0xc7,0xb5,0x82,0x4e,0x4f,0xe4,0xd0,0x0f, +0x7f,0x2c,0x80,0x45,0x1c,0x6c,0xc3,0x5d,0xcc,0x1a,0x7d,0xcc, +0x47,0xa6,0x60,0xce,0xb4,0xc8,0x15,0xcd,0x66,0xdf,0xb1,0x56, +0xa5,0x46,0x54,0x15,0x6e,0x64,0xdd,0x33,0xf2,0x29,0x2d,0xdd, +0x0c,0xfd,0x43,0xe2,0x6a,0xe0,0xc7,0x23,0xe6,0x1f,0x2c,0xbd, +0xe1,0x9f,0xcf,0xd2,0x78,0xc4,0xc0,0x2f,0xb3,0xc8,0x78,0x7c, +0x7c,0xc5,0xc8,0xa3,0xe8,0x0c,0x87,0xd1,0x67,0xd3,0xca,0x52, +0xd5,0xd2,0x0c,0x5b,0xff,0xdd,0x2c,0x45,0x6f,0xf1,0xdf,0x6e, +0x6f,0xc9,0x79,0x8a,0xd6,0xc4,0x5a,0x17,0x7d,0xd3,0x54,0x58, +0x3c,0x88,0xc9,0xb0,0x0e,0x82,0x06,0x30,0x88,0x86,0xc6,0xc7, +0x79,0xf7,0x8b,0xae,0x97,0xc4,0xf6,0xf1,0x38,0x2d,0x0c,0x9d, +0xe3,0xd1,0xf9,0x64,0xae,0x23,0xff,0xe0,0xe2,0x87,0x97,0x1f, +0xe4,0x70,0xf8,0xe7,0x79,0x6c,0x68,0x66,0x4e,0x83,0x19,0x1c, +0xb1,0x66,0x3b,0xc5,0x65,0xe4,0xe5,0x2d,0xda,0x5e,0x6b,0xb3, +0xc1,0x77,0x6a,0xdf,0x2f,0xfe,0x90,0x6b,0x47,0x7b,0xf6,0xb5, +0xf6,0xbb,0xb7,0x1a,0xfb,0xb8,0x0e,0xac,0x73,0x81,0x00,0xd6, +0xd3,0x65,0xbb,0xd5,0x16,0x4f,0xce,0x0b,0x12,0xd8,0x54,0x8b, +0xc3,0x96,0xde,0x36,0x11,0x0d,0x47,0x3a,0xe2,0x07,0x9d,0xe3, +0x78,0xed,0x01,0xbd,0x63,0x83,0x4f,0xf0,0x41,0x9f,0x20,0xe7, +0xe0,0x26,0x4f,0xbe,0xbf,0xae,0xbd,0xb1,0xbe,0x99,0xb3,0x7d, +0xf3,0x61,0x04,0x4c,0x9e,0x29,0x78,0x33,0x79,0xc3,0x46,0x92, +0x21,0x2c,0x48,0x59,0x80,0xda,0x4f,0xe5,0x2d,0x91,0x91,0x86, +0x84,0xea,0xf8,0x9a,0x47,0x14,0x51,0x8a,0xb4,0xf2,0x47,0x91, +0x66,0x31,0x36,0xbf,0x8d,0x8f,0x58,0x57,0x45,0x5e,0x45,0x4e, +0xb9,0xe3,0x58,0xea,0x70,0xb4,0xa2,0x91,0x56,0x56,0xa9,0xae, +0x31,0xa4,0x68,0xaa,0x7c,0x0e,0xaa,0xfc,0xfa,0x94,0x54,0x02, +0x27,0x56,0x26,0x54,0x1a,0xb8,0x0a,0xbe,0x28,0x6e,0x22,0x90, +0x38,0x3a,0x05,0x13,0xa1,0x81,0x3d,0x16,0x95,0x11,0x99,0x1a, +0xc9,0xe1,0x10,0xde,0xba,0xd1,0x36,0x32,0xd1,0xe7,0x3a,0xdc, +0x12,0x27,0x33,0x12,0xeb,0xcc,0xa3,0x7f,0x1e,0x23,0x5d,0xf1, +0x33,0x45,0xcc,0xa6,0x2a,0xc2,0x51,0x8c,0x22,0xb0,0x7c,0x64, +0x22,0x2e,0x67,0xff,0x77,0xf4,0x94,0xe6,0x04,0x3f,0xb5,0x37, +0xed,0x69,0x52,0x63,0x42,0x75,0x5c,0xcd,0x18,0xbf,0xde,0x81, +0xfd,0x44,0x98,0x3b,0x28,0xce,0xfd,0xda,0x62,0xa9,0xf8,0x9c, +0x83,0xf0,0x1c,0xc5,0x66,0xdc,0x80,0xd3,0x36,0x62,0xcd,0x0a, +0xd3,0x72,0x3b,0x90,0x7d,0x06,0x4f,0xbd,0x2b,0x07,0x53,0xe3, +0x6c,0x46,0x8e,0xa6,0x30,0x73,0x3b,0xc8,0x57,0x56,0xd0,0x10, +0xac,0xff,0x0c,0x67,0x7e,0x04,0x1b,0x4c,0xe0,0xc0,0xd7,0xe4, +0x10,0xbb,0xf1,0x60,0xd0,0x66,0x37,0xd3,0x3a,0xdf,0xde,0xca, +0x4a,0x7d,0x51,0xa9,0x71,0x6e,0x7e,0xd6,0xd9,0x82,0xe3,0x30, +0x6b,0x3e,0x5f,0xd7,0x81,0x33,0xbf,0x92,0xaa,0xd7,0x8f,0x1d, +0x33,0x4e,0x4f,0x3f,0x75,0xd1,0xa8,0xb8,0x3c,0x47,0xdf,0x6e, +0x52,0xc9,0x8a,0x6d,0xe7,0xc8,0x61,0x76,0xd3,0x41,0xdf,0x59, +0x07,0x4c,0x6b,0xbd,0xde,0x6c,0xa9,0xaf,0x93,0x6b,0x8d,0x73, +0xf2,0xb2,0xce,0xe6,0x1f,0xff,0x6e,0x2f,0x5f,0xd7,0xbe,0xf8, +0x56,0x46,0xce,0xc9,0x73,0x47,0x8f,0x1a,0x67,0xa4,0x9f,0xa4, +0x4f,0x95,0xe5,0x56,0xb5,0xd0,0xa7,0x24,0x8c,0xf5,0x25,0xaa, +0x70,0x45,0xa8,0x42,0xa2,0xcd,0x29,0xba,0x94,0xb2,0xa4,0xb2, +0x71,0x8c,0x2d,0x50,0xe4,0x29,0x73,0x94,0x12,0xc6,0xee,0x76, +0xb5,0xd8,0xe3,0x44,0x31,0xb6,0x5e,0x57,0x53,0xa3,0xab,0x1f, +0xc3,0x58,0x65,0xae,0x32,0x5b,0x29,0xed,0xee,0xef,0x0f,0xb2, +0x70,0x71,0xec,0x08,0xe3,0xcb,0x2a,0xd4,0x95,0xf2,0x6a,0xee, +0x6b,0x66,0xac,0x35,0x6a,0x96,0x14,0x7d,0xb2,0xa1,0x35,0x8a, +0xb1,0xa8,0x1b,0xcd,0x26,0x41,0xc7,0xb3,0xea,0xcc,0x7e,0x02, +0x6f,0xc1,0x65,0x74,0xb9,0xe8,0x42,0x95,0x5c,0xca,0x56,0x4b, +0x17,0x0c,0x09,0x29,0xa5,0x54,0x39,0xa3,0xe1,0x0f,0xf7,0xe4, +0x30,0x89,0x02,0x25,0xcd,0x82,0xbb,0x55,0x71,0xef,0x98,0x42, +0x00,0xd3,0x21,0x97,0x75,0x98,0xc1,0x44,0xd6,0x96,0x86,0xe1, +0x4c,0xf6,0x25,0x21,0x90,0x88,0x6d,0x0f,0x0c,0x77,0xa9,0x62, +0x20,0xb9,0x2f,0xb4,0x6d,0x61,0x5d,0x27,0xad,0x17,0xdb,0x3e, +0xa2,0xc3,0xf8,0x48,0xb8,0x43,0xb2,0xd3,0xb3,0xd2,0xb3,0xd3, +0x06,0xd4,0x7c,0x7c,0x5b,0x5c,0x63,0x0c,0x8d,0xb8,0x95,0x83, +0xa8,0xa7,0xa0,0x5b,0x58,0x9d,0x57,0x6d,0x5f,0xc8,0x87,0x2d, +0x76,0x5c,0xb5,0x7d,0xa7,0x01,0x74,0xeb,0xda,0x75,0x9d,0xdc, +0xc7,0x8c,0x3c,0xa2,0x34,0x5c,0x16,0xe6,0x59,0xcc,0xbb,0xe0, +0xf4,0x9d,0x73,0xf0,0xf1,0xe5,0x0d,0xee,0x7c,0x5b,0x7d,0x4d, +0x75,0x79,0x35,0x27,0xce,0xbf,0x29,0x24,0xb1,0x55,0x3d,0xba, +0xab,0xca,0x5e,0x0e,0x06,0x61,0x1d,0x29,0xae,0xa6,0xf8,0x5c, +0x6d,0x97,0xcf,0x1f,0x59,0xe6,0xb5,0xd2,0x62,0x47,0x63,0x14, +0xef,0x8a,0x93,0xf6,0xaf,0x5d,0xbb,0xbd,0xd9,0x8b,0xbf,0x39, +0x70,0xf5,0xf5,0xce,0x77,0xb8,0x72,0x31,0xfb,0x26,0xec,0x86, +0xe1,0x41,0x1c,0xa6,0xac,0xc1,0xf0,0xe3,0x31,0xf8,0x74,0x50, +0x7c,0xd1,0x20,0x41,0xf2,0x75,0xc1,0x05,0xbc,0xbc,0x5c,0xa6, +0x2b,0xd1,0x4b,0xce,0xe3,0xa7,0x19,0xd3,0xaf,0x89,0xe3,0xfa, +0xd5,0x61,0x90,0x91,0xa8,0x7f,0x02,0xf9,0x77,0x2c,0xf8,0x21, +0xf3,0x8f,0xb4,0x99,0xd1,0xff,0xe7,0xcc,0x18,0xb2,0x44,0x0f, +0x72,0xef,0xb3,0x86,0x6f,0x64,0x7f,0xe1,0x1e,0x0c,0xe0,0x67, +0x4c,0x71,0x75,0x61,0x7d,0x4e,0xa5,0x6d,0x01,0x1f,0x35,0xd7, +0x69,0xf6,0xd2,0x55,0x2d,0xde,0x7c,0x55,0x95,0xae,0x52,0xdb, +0xa0,0xda,0x53,0xbf,0x7b,0x68,0x8f,0xad,0xed,0x16,0x87,0x39, +0xae,0xd5,0x4e,0xfc,0xcf,0x57,0x3e,0x1c,0xba,0x7e,0xfd,0x9a, +0xcd,0xbb,0xb6,0xdf,0x3a,0xd6,0xf5,0xf1,0x4b,0xfa,0x77,0x0c, +0xda,0x0f,0x71,0x62,0x8a,0xe0,0x4c,0x7c,0xd0,0xd8,0x7c,0xf6, +0x92,0x55,0xd4,0x1a,0xd5,0xba,0x8a,0x6a,0x6d,0x3d,0x27,0xbe, +0x74,0x4d,0x38,0xc4,0xea,0xfa,0x2b,0x6e,0xc9,0x87,0xb9,0xaf, +0xc4,0xeb,0x44,0x08,0xb4,0x15,0x03,0x59,0x38,0x23,0xac,0x26, +0x70,0x88,0x49,0x5d,0x1f,0xbe,0xc9,0x76,0xbb,0xf5,0x3b,0xc1, +0x0f,0x92,0x3e,0xa0,0x40,0x51,0x42,0x45,0x0f,0x15,0x5c,0x3e, +0xbf,0xaa,0x1a,0x49,0x6b,0xbe,0xdc,0x8f,0x25,0xbf,0xd3,0x9a, +0x92,0x0c,0xda,0x3f,0xa6,0x35,0x9b,0x24,0xad,0xb9,0xab,0xff, +0x37,0xad,0x49,0x45,0xcf,0x46,0x9b,0xfd,0x8f,0xb4,0x66,0x13, +0xf7,0x2d,0xa3,0x09,0x56,0x1e,0x54,0x06,0xf4,0x2a,0x78,0x6d, +0x8c,0x2a,0x5a,0x71,0xb8,0xbb,0x9a,0x3f,0x54,0x17,0x5e,0x13, +0xa6,0x0b,0x3e,0xc2,0xa7,0xab,0xd2,0x55,0x69,0x4a,0x0e,0xfc, +0xfa,0x99,0x0d,0xa3,0x29,0xc4,0xb9,0xdc,0xad,0xd1,0xff,0xca, +0x6b,0x6f,0xf7,0x7c,0x5c,0xfd,0xa5,0x93,0x86,0x8f,0x5c,0xe7, +0xbf,0xc3,0x6e,0x7f,0xe0,0x9b,0x47,0xbe,0x38,0x25,0xc1,0xf6, +0x6b,0x83,0xf8,0xfa,0x5f,0x2c,0xe7,0x89,0x3b,0x71,0x0f,0x83, +0x2b,0x63,0x66,0x1f,0x58,0x61,0xda,0xe3,0x75,0xe7,0x6b,0x3d, +0x18,0x5d,0x86,0x05,0xc6,0x10,0xcc,0xec,0x3b,0xe3,0x7a,0xc2, +0xcb,0xd4,0xfb,0x44,0x72,0x8a,0xef,0xcc,0x95,0xd2,0xe1,0x5b, +0xef,0x33,0xef,0x55,0x56,0xbd,0x95,0x6f,0x96,0x7b,0xf5,0xe2, +0x4d,0x60,0x4c,0x50,0x03,0x8f,0x09,0x93,0x98,0x2c,0x34,0xd1, +0xbf,0xd4,0xb3,0xce,0xde,0x69,0x8f,0xd7,0xda,0x80,0x5a,0x67, +0xfe,0x83,0xa6,0xbb,0x5d,0xd7,0x06,0x5b,0x9c,0x7b,0xfd,0x87, +0xc3,0xbb,0xa2,0x9b,0xf2,0xb3,0x06,0x65,0xb0,0x8e,0xb7,0x57, +0x1b,0x8d,0x69,0x8c,0x31,0xe1,0x3d,0xb6,0xc0,0xf1,0x68,0x29, +0xe6,0xff,0xa9,0xf0,0xee,0x1f,0x5f,0x2e,0xa9,0x35,0xe4,0xaa, +0x10,0x54,0x92,0x2b,0xa3,0xef,0x39,0x0a,0xd3,0x44,0x2f,0xf1, +0x15,0xfb,0xbf,0xf2,0x57,0xc5,0x6d,0x82,0x17,0x8b,0xaf,0x39, +0x11,0x4f,0x76,0x51,0x9c,0x37,0xb2,0xd2,0x15,0x5b,0x37,0x7b, +0xea,0x9b,0xb4,0x0d,0xc6,0x97,0xb3,0xb3,0x5e,0xcd,0x3e,0x01, +0x4f,0xe3,0x33,0x7c,0x6b,0x33,0x72,0xc0,0xa5,0x17,0x66,0x9c, +0xcf,0xc8,0x34,0x4e,0xcf,0xa0,0x49,0xa8,0xb4,0xf1,0x52,0x7d, +0x8f,0x49,0x2f,0x2b,0xec,0x9b,0xe1,0xc1,0xbe,0x1c,0xef,0x83, +0x4f,0x2c,0x91,0x9e,0xec,0xad,0x6d,0xd4,0xd6,0x19,0x67,0xe5, +0x65,0xbd,0x9a,0x7b,0x1c,0x9e,0xc7,0x19,0xd2,0x93,0x53,0xe1, +0xa9,0xf4,0xc2,0xcc,0x0b,0xe9,0x99,0xc6,0x69,0xbf,0x3d,0xd9, +0x63,0xc8,0xcf,0x0e,0x44,0x73,0x50,0xd2,0xa9,0x92,0x03,0x8c, +0xeb,0xd4,0xdf,0x48,0x68,0xb9,0x23,0x1d,0xf3,0x06,0x0a,0xa9, +0x96,0x6d,0x94,0xb3,0x49,0x90,0xda,0xc2,0x8d,0x98,0x53,0x31, +0x0e,0x53,0xdc,0xd9,0xc4,0xfa,0xc4,0x71,0x96,0x29,0xa1,0x68, +0xb9,0x84,0xa2,0x34,0x63,0x1f,0xd9,0x4c,0x51,0xd4,0xa2,0xfe, +0x30,0x1f,0x80,0x53,0xb6,0x3a,0xbc,0x27,0xbe,0x3a,0x7c,0x15, +0x94,0xf6,0xc3,0xc2,0xab,0x1f,0x0d,0x32,0xe2,0x2a,0x98,0x42, +0xca,0x2a,0x35,0x35,0x8a,0x3a,0x49,0x4e,0x07,0xaa,0xfd,0xd4, +0xbe,0xcd,0xa5,0x3c,0xb2,0xa8,0xa4,0xc0,0x81,0x2b,0xb0,0x83, +0x04,0xa4,0xf8,0xa5,0xf9,0xa5,0x71,0xb0,0x06,0x9e,0x18,0xc4, +0x27,0x60,0x8a,0x1d,0x4e,0xc1,0x59,0x0e,0x30,0x0b,0xf7,0xb2, +0xae,0xa9,0xae,0x19,0x2e,0x99,0x05,0x8e,0x7c,0x57,0x5e,0x67, +0x41,0x67,0x21,0x87,0x4e,0xf8,0x2c,0x5b,0x6a,0x6f,0xf4,0x33, +0xd3,0x2a,0x2f,0xa6,0x9a,0x38,0x90,0x6d,0x2f,0x6e,0x2f,0x69, +0x97,0x71,0x30,0x3f,0x9b,0xc0,0x5a,0x50,0xe2,0x5a,0xda,0xb0, +0x13,0xa1,0x1f,0x76,0xa2,0xd2,0xa0,0x6c,0xfc,0x88,0x2a,0x42, +0x1e,0x2e,0x0f,0xa1,0x91,0x9a,0x5a,0x91,0xa2,0x4d,0xd6,0x18, +0xb2,0x6e,0x0b,0x53,0xa8,0x94,0xb2,0xae,0x53,0x31,0x1f,0xb6, +0xdb,0xf5,0x00,0xcd,0xba,0x94,0x3f,0xe8,0x6b,0x6a,0x2a,0x68, +0xd6,0xf5,0x36,0x64,0x5d,0x55,0xb6,0x52,0xba,0x37,0x63,0x9f, +0x21,0xeb,0x52,0x30,0xd2,0xa9,0x2b,0x15,0xd5,0x94,0x51,0x28, +0x69,0x6b,0x8a,0x90,0x3e,0x05,0x6d,0x2d,0x59,0x9b,0xac,0x1d, +0x53,0x36,0x15,0xa3,0x1f,0x91,0xeb,0x23,0xcb,0xad,0x6f,0x8d, +0xec,0x1c,0xad,0x1f,0xdd,0xc9,0x8e,0x1c,0x1e,0x79,0x92,0x88, +0xf9,0xa3,0xcb,0x85,0x7c,0x56,0xf8,0x19,0x4f,0x91,0x5e,0xcc, +0xf9,0x80,0x7d,0x90,0xfd,0x4e,0xee,0xad,0xa2,0xe4,0x2e,0x1e, +0x67,0x46,0xe2,0xce,0x93,0xb8,0xf6,0x54,0xae,0x1b,0x7f,0xeb, +0xc2,0xdd,0x0b,0x6f,0x5e,0xe6,0xb6,0xe2,0x49,0x57,0x08,0x65, +0xfd,0x6d,0xf7,0x38,0x23,0xe3,0x5a,0xee,0xc1,0xc3,0xec,0xd7, +0x6e,0x5c,0x2d,0x7e,0x87,0xaa,0xe3,0xd8,0x41,0x88,0x95,0xde, +0x18,0x7c,0xcb,0x1e,0x16,0xed,0x2b,0xa3,0x4f,0x3f,0xd1,0xbb, +0x69,0xc0,0x77,0x88,0xc6,0xb2,0x6a,0xc4,0x9f,0x28,0x23,0x14, +0x52,0x7f,0x0c,0xa3,0xd3,0x48,0xfd,0xd9,0xd4,0x4d,0x47,0x27, +0xdd,0x71,0x93,0xa3,0xa0,0xa3,0x0b,0x37,0x77,0xb5,0xda,0xeb, +0xda,0x42,0x47,0xa7,0xab,0xad,0xae,0xa8,0xa3,0xa3,0xeb,0x26, +0xb9,0x8a,0x5c,0x45,0xb6,0x82,0x62,0x4a,0xac,0x65,0x90,0x95, +0x9b,0x4b,0x7b,0x18,0xaf,0x2d,0x57,0xeb,0xe5,0x12,0xab,0x55, +0x45,0xca,0xc3,0x14,0x21,0xbd,0xd2,0xe8,0x28,0x42,0x51,0x5b, +0xd9,0x75,0x33,0x54,0xbc,0x47,0x10,0xb8,0x37,0xba,0x13,0xef, +0xb1,0x23,0x46,0x60,0x4b,0xc4,0xeb,0x0f,0x84,0xeb,0xd2,0xc9, +0x55,0x33,0x88,0x70,0x7d,0x9d,0x78,0x9d,0x11,0xb6,0xe3,0x4f, +0x24,0x38,0xf3,0x72,0x8d,0xd9,0x5d,0x16,0x9e,0x90,0xc3,0x93, +0x15,0x5f,0x35,0x46,0x74,0xf1,0xab,0x82,0x16,0xc6,0xe0,0xe3, +0x49,0x1c,0x4c,0xb0,0xc2,0x53,0xac,0x9d,0x5a,0x7a,0x99,0xe0, +0x02,0xd3,0x56,0x52,0xd2,0x62,0xf6,0x90,0xb5,0x29,0x95,0xde, +0xd7,0x1b,0x5d,0x06,0x2f,0x10,0xc8,0xef,0xc7,0xfc,0x8f,0xac, +0x50,0xc1,0x04,0x9f,0x0a,0x3e,0x13,0x72,0x3a,0x87,0x2a,0xaa, +0x15,0xa5,0x30,0x4f,0x05,0x7c,0xf9,0xf1,0x5e,0x7e,0x73,0xea, +0x2b,0x69,0x4b,0x33,0x38,0x29,0x69,0x5f,0x24,0x92,0x26,0x35, +0x14,0xfe,0x4a,0x78,0xb9,0xd5,0x65,0xf7,0x6e,0x3b,0x3a,0x73, +0x0d,0x55,0x35,0xf5,0x15,0x8d,0x92,0xec,0x0c,0x56,0x05,0x29, +0xfd,0x25,0x11,0x5b,0x4d,0xc5,0x95,0x9e,0xfa,0x35,0x03,0x33, +0xfb,0x88,0xf4,0xf7,0x39,0x1a,0x49,0xa8,0xee,0x38,0xb8,0xc7, +0xd1,0x86,0x82,0x68,0x85,0xde,0xe0,0x91,0x94,0xc6,0x87,0x28, +0x03,0x95,0xfe,0x12,0x0b,0xaa,0x49,0xd2,0x4b,0x72,0xcc,0xa6, +0x8f,0x11,0xff,0x20,0x7a,0x92,0xe0,0xb4,0xc0,0xb4,0x83,0xe9, +0xd4,0x59,0xe0,0xa9,0x5e,0x7c,0x0a,0xa6,0xdb,0xe1,0x74,0x9c, +0xe1,0x0a,0x33,0xd0,0x82,0x95,0x4e,0x02,0xf5,0x38,0x5a,0xe4, +0xc2,0xb7,0xe5,0xb6,0x15,0xb4,0x52,0xaf,0x74,0xfd,0x7b,0xaf, +0x0c,0x61,0x5b,0x8b,0x5a,0x4a,0x9a,0x4b,0x39,0xe1,0x36,0xa8, +0xc8,0x15,0xb1,0x76,0x74,0xee,0x70,0x9f,0x10,0x73,0x45,0x8c, +0x11,0x8e,0xb1,0x70,0x4f,0x9c,0x46,0x6e,0x32,0x75,0x45,0xc5, +0x75,0x66,0x10,0x83,0xab,0xde,0x73,0xda,0x8a,0x2f,0x63,0xe5, +0x20,0x24,0x7e,0x8d,0xb7,0x06,0xe0,0xd6,0x0f,0xb8,0x7b,0x37, +0x8d,0x52,0x0d,0x95,0xe4,0xaa,0x50,0x65,0x08,0x95,0xe4,0x14, +0xe0,0x2b,0x7f,0x95,0xe4,0x2d,0x92,0x24,0x57,0xe5,0xa8,0xa4, +0xe1,0xef,0x74,0xdd,0xb7,0xdb,0x41,0xa2,0x0b,0xfa,0xda,0xda, +0x8a,0x31,0x49,0x9e,0xaf,0xca,0x55,0x67,0xab,0xa4,0xa9,0xb5, +0x08,0xb1,0x70,0x77,0xee,0x08,0xe7,0xd5,0x65,0x8a,0x0a,0x99, +0x8e,0x8e,0x54,0x1d,0x2a,0x95,0x81,0x50,0xc7,0x35,0x48,0xf2, +0x72,0x83,0xe3,0x8a,0x99,0x18,0x4c,0x44,0x1e,0x97,0x5e,0xff, +0x0e,0x32,0x98,0x8c,0x95,0xab,0xad,0xd1,0x22,0x42,0xba,0x6a, +0xd5,0xbf,0xe9,0xbb,0xf7,0x0b,0xa4,0xa4,0xfc,0x2c,0x3e,0xc9, +0x1c,0xd0,0x26,0xbc,0x23,0x15,0xc4,0xb6,0x95,0x14,0x55,0x9a, +0x75,0xb2,0x76,0x05,0x46,0x4e,0xf8,0x0a,0xeb,0x79,0x2c,0xbb, +0xd5,0xec,0x47,0xb8,0xb8,0xe0,0x3a,0x2c,0x15,0x17,0x7e,0x6c, +0xc5,0x0a,0x9b,0xa8,0x9f,0x0c,0x8e,0xe6,0x3a,0xc0,0x1f,0x71, +0xa1,0xb8,0xdc,0xee,0xaf,0x2f,0x0c,0x89,0xdb,0x61,0x21,0x3b, +0x55,0x98,0x2b,0xdc,0x25,0x12,0xfc,0xc6,0xfe,0x8f,0x0b,0xdd, +0x9f,0x51,0x5d,0xa5,0x0a,0x50,0xfa,0x71,0x6e,0x4c,0xa4,0xf5, +0x86,0x3d,0x38,0x67,0x5f,0xb9,0x13,0x0f,0x2f,0xbc,0xfe,0xe5, +0x2d,0xcd,0x1f,0xb8,0x6c,0x46,0xbd,0xe1,0xa1,0x05,0xbc,0xb8, +0xb7,0x5c,0x3a,0xc3,0xf6,0xe6,0x96,0xdb,0xa1,0x57,0x39,0x68, +0x06,0xeb,0xff,0x74,0xc1,0x19,0x5b,0x47,0x93,0x89,0xcc,0xce, +0x08,0x56,0x50,0xe6,0x23,0xef,0x36,0x13,0x06,0xad,0xc4,0x3b, +0x2c,0x86,0x4a,0xab,0xc4,0xeb,0x87,0x85,0xf5,0xac,0xa8,0xc0, +0x20,0x02,0x57,0x07,0xf0,0x2a,0x93,0x2b,0x1e,0x20,0x03,0xf0, +0x3d,0xe4,0x88,0x4b,0xf0,0x06,0x4b,0x3f,0x64,0x13,0x9c,0x87, +0xcd,0x30,0x6f,0x9c,0xd2,0x29,0x22,0x15,0xe1,0xf2,0x50,0x29, +0xfc,0xca,0x53,0x35,0x52,0x72,0xd9,0xd4,0x43,0xe7,0x68,0x8c, +0xd2,0x49,0xe1,0xb7,0x87,0x26,0x17,0xe7,0x16,0x9a,0x49,0xf5, +0x35,0xd5,0x06,0x4a,0xd7,0x43,0xa4,0xaf,0x72,0x24,0x4a,0x17, +0x6b,0x1d,0x6a,0xed,0xe1,0xd6,0x19,0xc6,0x4b,0xbb,0x84,0xa5, +0x15,0x94,0xd2,0x29,0xc3,0x95,0x94,0xd2,0xf5,0x4a,0x94,0x6e, +0x8c,0x20,0xda,0xf6,0x30,0xe2,0x7a,0xdc,0x41,0xfa,0x33,0xfb, +0x53,0x9b,0xd3,0xca,0x5a,0x78,0xff,0x22,0x6b,0x99,0x4f,0x36, +0x07,0xb7,0xf0,0x0a,0xd9,0x96,0xb7,0xa3,0x78,0x9f,0xf6,0x1d, +0xf5,0xcd,0xf2,0x1e,0x7d,0x50,0x13,0x6f,0x13,0xba,0x2d,0x6a, +0x79,0x4c,0xa0,0x22,0x44,0x1b,0xa9,0x13,0xdc,0x95,0xfc,0xd9, +0x7e,0xf1,0x44,0x5c,0x8a,0x32,0x4d,0x93,0x51,0x6e,0x6c,0x7d, +0x3c,0x2f,0xa6,0x20,0xb6,0x28,0xc1,0x18,0xfb,0xd2,0x2e,0x3a, +0xc3,0x27,0xc5,0xba,0xd0,0x9a,0xc8,0xfa,0x68,0x63,0x9c,0x12, +0x8d,0x73,0x92,0x70,0x43,0x66,0x29,0x9d,0xf4,0x3d,0xf9,0xb0, +0x41,0x0b,0xa6,0xb5,0x0f,0x02,0xbf,0x88,0xfd,0x2e,0xad,0xe3, +0xa4,0xee,0x52,0x4e,0xbd,0x16,0x1e,0xe3,0x5d,0x65,0x46,0xf8, +0x37,0x3c,0x40,0xfa,0x33,0xfa,0x93,0x9b,0x52,0xcb,0x5b,0xf8, +0x80,0x12,0x6b,0xb9,0x4f,0x0e,0x07,0xd7,0xf0,0x6d,0xb2,0xad, +0x60,0x67,0xe9,0xbe,0xf2,0x77,0xb5,0xb7,0x74,0x3d,0x55,0x41, +0xcd,0xbc,0x4d,0xd0,0xf6,0xc8,0x15,0x47,0x02,0x55,0xa1,0xe5, +0x91,0x55,0x82,0x8b,0xa1,0x13,0xe9,0x71,0x29,0xea,0x74,0x6d, +0x46,0x85,0xb1,0xd5,0xf1,0xbc,0xe8,0x82,0x18,0xa9,0xfe,0xed, +0x6a,0xda,0x45,0x27,0xf8,0xbc,0x44,0x17,0x58,0x13,0xde,0x70, +0xd8,0x18,0xa7,0x1e,0xc2,0x79,0x89,0xb8,0x29,0x43,0x46,0x3b, +0xb1,0xb7,0x00,0x36,0x96,0x81,0x69,0xc3,0x7b,0x01,0x0f,0xa3, +0xff,0x9c,0xda,0x71,0x5c,0x77,0x39,0xb7,0xa1,0x1c,0x1e,0xe7, +0x5d,0x14,0x46,0x52,0xc2,0x8b,0x24,0x8a,0x43,0x54,0xb6,0x87, +0x53,0x8b,0xa7,0x69,0xd3,0x54,0x29,0x2a,0x1a,0x15,0xdd,0x34, +0x29,0xe4,0x95,0xe6,0xc9,0xb2,0x65,0x4e,0x25,0x7c,0xb8,0x85, +0x9b,0xed,0x5e,0x77,0x6a,0xf1,0xfa,0xf2,0x9a,0x2a,0x5d,0x0d, +0x27,0xf8,0xd0,0x84,0x47,0xbf,0xca,0x96,0x39,0x17,0xf2,0xb1, +0xb6,0x21,0xb6,0xee,0x6e,0xed,0xe1,0xbc,0xa6,0x4c,0x55,0x21, +0xd3,0x53,0x8b,0x2b,0x0e,0xcb,0x0e,0xc9,0x22,0x69,0xc2,0x4b, +0x57,0xa7,0xaa,0x52,0x15,0xd4,0xe2,0xdd,0xcc,0x68,0x37,0xbe, +0x4c,0x3c,0x46,0x9e,0xb2,0x1a,0x0d,0x74,0x1f,0x09,0xdc,0x3f, +0xfa,0x94,0xc7,0xc8,0x7e,0x60,0x7e,0xea,0x9e,0x0d,0x8f,0xb1, +0xa3,0x8e,0x62,0x1a,0xf9,0x09,0x3e,0xd8,0x8a,0x6d,0x18,0x30, +0x0c,0xab,0x20,0x05,0x3d,0x87,0xc1,0x13,0xb2,0xa4,0xbb,0x2e, +0x0a,0x3d,0x8c,0xe0,0x79,0xa6,0x43,0x51,0x4a,0xd9,0xf4,0x4c, +0xbc,0xf3,0x1e,0x7c,0x3b,0xfb,0x3a,0x2c,0x1b,0xfd,0x0a,0x97, +0x19,0x22,0xda,0x9b,0x28,0xc3,0x15,0x61,0xf2,0x60,0x09,0x8a, +0x74,0x14,0x8a,0xca,0x0c,0xb8,0xfb,0xf7,0x8b,0x6c,0x7b,0x77, +0xdb,0x53,0xdc,0xad,0x7f,0xb4,0xc8,0x46,0x73,0x97,0x9a,0x46, +0xb4,0xb4,0xc8,0x16,0xb3,0x3b,0xd0,0xdc,0xb0,0xc8,0x56,0xa6, +0xd7,0x54,0x29,0x6a,0x68,0x44,0xcb,0x62,0x4a,0x8e,0x94,0x1c, +0xa6,0x11,0x9d,0xa1,0xc8,0x90,0xa7,0x53,0x10,0xb4,0xee,0x63, +0x46,0x43,0x25,0xa8,0x3e,0x71,0x0e,0x12,0x72,0x61,0x4f,0xed, +0x11,0x8a,0x16,0x7b,0xc2,0xf1,0xc4,0x31,0x3c,0x7e,0xfe,0x90, +0xad,0xd7,0xfe,0x3d,0x4e,0x4d,0x7e,0xfc,0x9d,0xbe,0xce,0x61, +0xdd,0x10,0x27,0x14,0x1d,0x27,0x7d,0xfe,0x83,0x0e,0xb5,0x1e, +0x9d,0xd5,0xfc,0xc1,0x6e,0xe7,0x01,0xa7,0x26,0x0e,0x8f,0x21, +0x4b,0xd2,0xaa,0x62,0x6b,0x62,0x35,0xce,0x29,0xbc,0xea,0xb0, +0x32,0xa2,0x28,0x9c,0xc3,0xf7,0x4e,0x13,0x57,0x68,0x5f,0x27, +0xce,0x77,0x16,0xe6,0xaf,0xc4,0x0f,0x5c,0xe1,0x03,0x0a,0xdf, +0xbb,0xd9,0x62,0x67,0x23,0x58,0xcb,0xb4,0xca,0xa8,0x82,0xff, +0x05,0xce,0xf9,0xdc,0x00,0xcb,0x9f,0xfa,0x67,0xc3,0x4c,0xd6, +0xca,0x95,0xac,0xc3,0x73,0x7f,0x60,0x31,0x7e,0xd2,0x43,0x38, +0xb7,0x92,0xc6,0xff,0x88,0xe0,0x41,0xea,0xcb,0xaa,0x2a,0xd4, +0x3a,0xae,0x19,0xdf,0x63,0x4b,0x4b,0x8b,0x65,0x45,0x32,0x7b, +0x19,0x7f,0x54,0x76,0xb4,0x34,0xa3,0x64,0x7c,0xd9,0x85,0xaa, +0xc3,0xf2,0x31,0x75,0xb8,0xce,0x65,0xeb,0x4e,0x4b,0x69,0xd9, +0xa5,0x86,0xd2,0xcf,0x16,0x4a,0xaa,0x4a,0x62,0x8b,0x63,0x8a, +0x8e,0xf4,0x28,0xf9,0xdd,0x6b,0x56,0x98,0xe3,0xf2,0x7d,0xe5, +0x6e,0x7c,0xb7,0xa2,0x4d,0xdd,0xac,0xe5,0x7c,0xe0,0xc2,0x2a, +0x71,0x81,0x93,0xb0,0x60,0x39,0x3e,0x70,0x86,0x07,0x38,0x0d, +0x77,0x1a,0x0e,0x83,0x5b,0x32,0x7e,0x1e,0xdb,0x44,0x28,0x70, +0xbc,0x01,0x1e,0x7f,0x1e,0x58,0x08,0xb3,0x58,0x0c,0x80,0x3e, +0x52,0x50,0x9e,0x4f,0x75,0x26,0xe5,0x6e,0x31,0xdb,0x0e,0xee, +0x70,0xb2,0xee,0xa2,0xe0,0xa7,0x57,0x57,0x19,0xf6,0x71,0xca, +0x0e,0x52,0x76,0xe2,0x2d,0xe5,0x8a,0x86,0x84,0x9a,0x38,0xca, +0x8a,0x6c,0xfb,0x19,0xfc,0x18,0x13,0xc8,0x91,0xe8,0xb0,0x98, +0xe0,0x58,0x0e,0xfb,0x98,0x3a,0x75,0xb5,0x46,0xaf,0xe5,0x04, +0x4f,0x7c,0x86,0xac,0xc2,0x82,0xcf,0x58,0x4c,0x9b,0xf4,0x05, +0x14,0x2c,0x37,0x64,0x83,0x40,0xa2,0x0e,0x55,0xd0,0x1c,0x4b, +0x5b,0x48,0xa6,0x19,0x3b,0x89,0xe6,0xd8,0x8d,0x3d,0xff,0x90, +0xb1,0x1d,0x25,0xaa,0x51,0x59,0x5b,0x2b,0xcd,0xaf,0x7c,0x86, +0x2a,0x4c,0x19,0xac,0x0a,0xa4,0xfe,0x97,0xf2,0x28,0x2b,0xf7, +0xe0,0x5d,0xe6,0xd7,0x34,0x1e,0x63,0x1e,0xb8,0xcf,0xd9,0xc1, +0xb0,0xb2,0xaa,0x96,0x26,0x5d,0x3c,0x8d,0x9f,0x12,0xf4,0x3e, +0x8a,0x8c,0xcd,0x2c,0xd3,0x3e,0xff,0xd6,0xf7,0x94,0x1f,0xe6, +0xc2,0x44,0x63,0xf0,0x40,0x37,0x9c,0xc7,0x50,0x0c,0x82,0xa9, +0x4c,0x4f,0x89,0xb2,0xd3,0x4c,0xf8,0x16,0x5f,0x63,0x47,0xbe, +0x18,0x9d,0x4a,0xec,0x75,0x2e,0x75,0x5e,0x2d,0x43,0xaf,0x37, +0xbc,0x5b,0xf2,0x1e,0xd7,0x81,0x7f,0x81,0x00,0xa8,0xc1,0x09, +0xb8,0xc5,0xf0,0xa6,0xc8,0x52,0xa6,0xad,0x54,0xd6,0x68,0x06, +0xcb,0xc5,0x79,0xa3,0x9b,0x86,0x85,0xc7,0xa0,0x85,0x4d,0xb5, +0x88,0xb0,0xf3,0x72,0xf6,0xea,0x3e,0x78,0x25,0x62,0xc8,0x23, +0x9c,0xaf,0xb6,0x6e,0xb5,0xef,0x76,0xf1,0x0f,0x74,0x0f,0x71, +0x88,0xa8,0x75,0xe3,0xaf,0x55,0xf7,0x36,0xb4,0xb4,0xf6,0x78, +0x0f,0x1c,0x1c,0x8a,0xe4,0xc4,0x1b,0xc2,0x79,0x82,0x8e,0xf0, +0x0c,0x38,0x32,0xe8,0x82,0xd7,0xc9,0x85,0xa6,0xf3,0xad,0x5d, +0x26,0xe0,0x88,0xcf,0x1b,0xb8,0x97,0x3f,0x4d,0x8f,0xf2,0x08, +0x9a,0x1e,0xd5,0x34,0x58,0x53,0x34,0x29,0xea,0x47,0xe9,0x51, +0x99,0xff,0xab,0xe2,0x3d,0x30,0xa6,0x78,0xf5,0xe3,0x8a,0xb7, +0x67,0x9c,0x7b,0x8d,0x29,0xde,0x03,0x63,0x8a,0xf7,0x11,0xf7, +0x1a,0x6b,0x8d,0xa6,0xc7,0xb4,0xf2,0xb1,0xd6,0x68,0x7a,0x8c, +0x46,0x2f,0xd2,0x3b,0x7a,0x7b,0x74,0xdf,0xcd,0x9e,0x91,0xec, +0xbe,0xd1,0x6c,0xa1,0x4e,0x7a,0xed,0xa4,0x85,0x14,0xbc,0xfc, +0xcd,0x7e,0x08,0x3d,0xa0,0xe8,0xe3,0x31,0xe6,0xf6,0xf2,0x7b, +0x3f,0x9b,0x7c,0x06,0xb7,0xba,0xf1,0xd6,0x90,0x9d,0x1d,0x5e, +0x71,0x87,0x2b,0xab,0xd8,0x59,0xcb,0x76,0x62,0xf8,0x01,0x53, +0x85,0x0b,0xf8,0xdd,0xfa,0xf6,0xf5,0x82,0x6f,0x8d,0x31,0x16, +0x66,0x92,0x64,0xd6,0x3a,0x34,0x68,0x83,0xa7,0xa9,0xce,0xbb, +0xbb,0xa2,0xbe,0x52,0x59,0x61,0x7c,0x39,0xeb,0xc2,0xab,0x97, +0x4f,0x7f,0xb9,0x97,0xd7,0x37,0x6e,0xb9,0x96,0x99,0x73,0xec, +0xc2,0x51,0xa9,0x22,0xf8,0xf4,0x45,0xa3,0x42,0x75,0x96,0x56, +0x67,0xa2,0x64,0x85,0xf5,0x2b,0xc8,0xb1,0xac,0xe3,0xe7,0x8e, +0x1f,0xcf,0xcc,0xe4,0xe9,0xef,0x65,0xda,0xac,0xf2,0x0a,0x13, +0xa5,0x4b,0x0a,0xeb,0x14,0x11,0xba,0x3b,0xc0,0x54,0xe7,0x53, +0xab,0xac,0x2e,0x2b,0x55,0xd0,0x96,0xa4,0x77,0xdc,0xe1,0xc9, +0x0d,0x7c,0x45,0x93,0x21,0x97,0x1d,0x24,0xca,0x7f,0x40,0x0f, +0x03,0x79,0x93,0xe5,0xc9,0xb3,0xe5,0x52,0x2e,0xdb,0xef,0x66, +0x4d,0xc9,0x1b,0x35,0x4f,0x05,0x45,0x8f,0x5a,0x6a,0x1e,0x9a, +0xcb,0xe4,0xb9,0xf4,0x4b,0x9a,0xcb,0xe2,0x1c,0xc3,0x1d,0x7d, +0xbc,0x3a,0x23,0x78,0xb9,0xb2,0x54,0x5d,0xac,0xe1,0xbe,0x61, +0xc6,0x5a,0x1b,0x23,0x6f,0x86,0xd6,0x28,0x79,0x13,0x93,0x70, +0x02,0x39,0x11,0x97,0x7e,0x28,0x2d,0x86,0x43,0x2d,0x2a,0x46, +0x36,0x83,0x02,0xbf,0x31,0xa4,0x9c,0x2c,0x39,0x87,0x37,0x28, +0xb6,0x0c,0x0b,0x43,0x36,0xac,0x38,0xe4,0x49,0x84,0x21,0x2b, +0x71,0x88,0x19,0xe1,0xa9,0xf5,0x7a,0xf1,0xdb,0x7b,0xc2,0xf4, +0xde,0xd1,0x0e,0x57,0xf8,0xdb,0x4e,0xbc,0xef,0x0a,0xf7,0xb7, +0x88,0x8b,0x9d,0xff,0xfa,0x4c,0xbf,0xb8,0xf5,0x3e,0x2b,0xf5, +0xdd,0x5d,0x5a,0xc8,0x0e,0x56,0x04,0x0c,0x18,0x96,0xf8,0x75, +0x12,0x3b,0x59,0xd3,0x87,0xb5,0xff,0x9a,0x9c,0xc1,0x4f,0xf3, +0x49,0x05,0xd5,0x01,0x4a,0x89,0x75,0xa9,0x28,0xc9,0x54,0x04, +0x71,0xe2,0x0c,0x17,0x61,0xf6,0x6a,0xf1,0x88,0xf3,0x88,0x69, +0x3f,0x4e,0x02,0x33,0x3b,0xa6,0xa9,0x64,0xac,0x35,0x63,0x70, +0xec,0xc3,0x77,0x98,0x31,0xe2,0xe6,0x48,0x93,0xdf,0x8e,0x80, +0xdd,0x8e,0xb6,0x1c,0x26,0xa4,0x12,0x17,0x7c,0xd1,0x7c,0xfe, +0xbc,0x65,0xcd,0xee,0x7c,0x5b,0x93,0x46,0x57,0x46,0xf5,0xef, +0xf6,0xeb,0x42,0x16,0xab,0xef,0xad,0x1c,0x56,0xde,0xe2,0x46, +0x9e,0x14,0xc3,0x49,0x3f,0x5e,0xcb,0x62,0xff,0x00,0x39,0x7d, +0xe2,0x4e,0x36,0xbf,0x34,0xaf,0x34,0x57,0xe6,0xa4,0xe0,0xc3, +0x2d,0x7d,0x5c,0x76,0x7b,0x36,0x78,0xf3,0x75,0xda,0xca,0x8a, +0x72,0xca,0x0d,0x97,0xae,0x63,0x4e,0x62,0x87,0x33,0xd4,0xb0, +0xe1,0xe6,0x8b,0x7d,0x70,0xbb,0x97,0x52,0xba,0xac,0x65,0x00, +0x1e,0xbf,0x56,0xfc,0x05,0xe5,0x1a,0x05,0xab,0xe1,0x19,0x2b, +0xb0,0x76,0x94,0xae,0x6b,0x59,0xd7,0x39,0xbb,0x23,0xf0,0x0e, +0xa5,0xa0,0x59,0x42,0x04,0xd9,0xfa,0xb3,0x07,0x53,0x9c,0x35, +0x26,0x9d,0x8d,0xc7,0x57,0xbb,0xff,0x95,0x74,0x7e,0xc8,0x8c, +0x69,0xed,0xf2,0x7c,0x7e,0x3e,0xba,0xfe,0x6c,0x33,0x6b,0x8f, +0xc3,0x9b,0x62,0xfa,0xf0,0x10,0xe4,0x0a,0xbb,0xdf,0x63,0x35, +0xb0,0x9e,0xe8,0x6b,0x7f,0xdb,0x05,0xf5,0x19,0xdf,0x05,0x1d, +0x57,0x8e,0xfd,0xf8,0x3a,0x53,0xa8,0xcb,0xa3,0x2d,0xdb,0x3f, +0xd2,0xdd,0x1c,0x5c,0xc0,0x95,0x04,0xe6,0x31,0x69,0xee,0x11, +0x07,0x0e,0xba,0xf6,0x84,0xf3,0x4d,0xd7,0x1a,0xde,0x55,0xbe, +0x45,0x03,0xfb,0x36,0x9b,0x57,0x95,0x53,0x99,0x5d,0xe9,0x94, +0xc7,0xc7,0xcc,0xf5,0xc1,0x89,0xbb,0xd6,0xb4,0xfb,0xf3,0xed, +0x57,0x6b,0xae,0x6b,0xae,0x73,0xd7,0x91,0x61,0x70,0xe7,0x96, +0x15,0xb8,0x72,0xbe,0x69,0x8d,0x03,0xac,0xfd,0x79,0xf0,0x61, +0x3e,0x98,0x18,0xd3,0x41,0xa2,0x59,0xcb,0x0e,0x58,0x83,0x5c, +0xf5,0x55,0x1e,0xe7,0x7d,0xb7,0xfd,0x73,0xd8,0x69,0x22,0x5e, +0xd9,0x24,0x5d,0x86,0xed,0x8a,0x4b,0x59,0xca,0x6c,0x63,0x08, +0x6c,0xa1,0x9f,0xb7,0xd0,0x59,0x97,0xfd,0xb3,0xc5,0xd8,0x57, +0xfa,0x50,0xfd,0x6f,0xb6,0x2f,0x0e,0x18,0xb6,0x2f,0xca,0xa8, +0x4e,0x2c,0x1c,0x5b,0x6d,0xfd,0xdd,0xf6,0xc5,0x37,0x8c,0x36, +0x48,0x15,0x60,0x58,0x83,0x3c,0x73,0xf9,0x4c,0xd6,0xd9,0xcb, +0xd5,0xd1,0xfa,0x28,0x75,0x54,0x97,0x9e,0x3f,0x5c,0x15,0x52, +0x1d,0xaa,0xf1,0x8b,0x92,0x96,0x6d,0x69,0xe2,0xe0,0xc0,0xab, +0x8f,0xd9,0x3e,0x7a,0x86,0x78,0xea,0x03,0x5b,0xa3,0x06,0xfb, +0xdf,0x69,0xfa,0xa8,0xec,0x63,0x57,0x19,0x1f,0xb7,0x3b,0xc2, +0xdc,0xdf,0xea,0xf0,0xbb,0xa9,0x5f,0x9f,0x05,0x23,0x0e,0xce, +0x0d,0xe0,0xb9,0xcf,0x6d,0x57,0x50,0xf6,0x36,0x9b,0x41,0xcf, +0x14,0x9c,0x60,0xb9,0xc8,0xb4,0xc7,0xd3,0xe8,0x2d,0x30,0x92, +0xce,0x68,0x08,0x31,0xf9,0x48,0xf0,0x65,0x2f,0xe2,0x8b,0x0a, +0x64,0x1a,0x57,0xba,0x59,0x5a,0x3b,0xee,0x09,0x68,0xf0,0xe1, +0x6f,0x35,0x0e,0xf5,0x76,0x0f,0xe9,0xdd,0x1a,0x02,0xda,0xa3, +0x5a,0x0f,0xb7,0xe6,0x66,0xf5,0xc9,0x60,0x01,0xef,0xa2,0x31, +0x1a,0x9d,0x05,0x49,0xc4,0x19,0xde,0xe9,0x97,0xde,0xb3,0x9b, +0x41,0x70,0x70,0xf8,0x16,0x9c,0x84,0xe3,0xd2,0x61,0xb1,0x36, +0xd2,0xd1,0x5c,0xfb,0xa5,0x17,0x82,0x47,0x62,0x61,0x29,0x19, +0xae,0xbd,0xdd,0xdb,0xdc,0xe2,0xdf,0xc8,0xfb,0x7a,0x5b,0x7b, +0xda,0x87,0x07,0x77,0x1c,0xe9,0x4b,0xb8,0xc6,0xc1,0xfb,0xdd, +0x18,0xca,0x68,0x87,0xcb,0xee,0x17,0xdf,0xe3,0xc4,0x04,0xe6, +0x62,0xce,0xa5,0x9c,0x0b,0x39,0x17,0x4f,0xf3,0x7d,0x4a,0x9a, +0x0c,0xd5,0x29,0x6a,0x63,0xd8,0x3c,0x16,0xed,0xb9,0xb2,0x9c, +0xf1,0x68,0xb7,0xd9,0xeb,0xd6,0x4c,0xb9,0x62,0x05,0x65,0x2e, +0xd2,0xc2,0x67,0x69,0x6c,0x71,0x74,0xc9,0x11,0xf7,0xcb,0x7c, +0x92,0x43,0xd8,0xf6,0x60,0x2b,0x4e,0xc8,0x65,0x8e,0x27,0x1c, +0x8b,0x3f,0x9a,0xc0,0x89,0xbf,0xb8,0xc3,0xbb,0xcc,0x5a,0x3f, +0x7c,0x3c,0x02,0x9f,0x8b,0x97,0x49,0xe7,0xea,0x28,0x81,0xab, +0xf9,0xba,0xab,0x30,0xb3,0x20,0xbd,0x20,0x6d,0x91,0x35,0xf2, +0xee,0xf8,0x4a,0x94,0xcc,0x99,0x87,0x95,0x95,0x30,0x7b,0xe0, +0x4f,0x77,0xf2,0x52,0x72,0x53,0xb2,0x93,0x16,0x6d,0xc6,0xed, +0x7b,0x71,0x5f,0x90,0x82,0x7e,0x61,0xde,0x04,0x9b,0xee,0x7c, +0xff,0x3e,0x77,0x39,0xe1,0x42,0x7c,0x9c,0x89,0x45,0x6c,0xbc, +0x95,0xe9,0x22,0x46,0xe6,0x62,0xf4,0x90,0xf9,0x63,0x5d,0xc3, +0x1f,0x7f,0x76,0xfa,0x61,0xe7,0x2d,0xb3,0x9c,0xcb,0xf4,0xbf, +0x2c,0xee,0x13,0xe6,0x26,0xda,0xfd,0x80,0x2c,0xf8,0xbd,0xac, +0xef,0xe1,0x5f,0xee,0xd8,0xd9,0xed,0x34,0xc8,0xa1,0x9b,0x10, +0x47,0xca,0xa5,0xd5,0x48,0x49,0x39,0x2a,0xa3,0xa8,0x2e,0x36, +0x24,0x9f,0x72,0x4a,0x6d,0xd4,0x52,0xf2,0xa1,0x40,0x96,0x2b, +0xcf,0x91,0x19,0xb2,0x55,0x8c,0x55,0x90,0xb5,0xab,0x33,0x87, +0xf1,0xb8,0x82,0xe4,0x96,0xd2,0x24,0xa6,0xe0,0x84,0x5d,0xcc, +0xa9,0xe4,0x53,0x89,0x27,0x12,0x68,0x5c,0xc9,0xe0,0x4d,0xd2, +0x23,0x6c,0xea,0xc4,0x92,0x2b,0x10,0xd4,0x81,0x41,0x7d,0x90, +0xd1,0x81,0x19,0xdd,0x36,0xee,0x58,0xd0,0xed,0xcb,0xf6,0x28, +0x33,0x4b,0x33,0x4b,0x32,0x4a,0x8c,0x61,0x83,0x81,0xeb,0x95, +0xe4,0x94,0x64,0x97,0x3a,0x53,0x8b,0x59,0xbb,0xdb,0xef,0xf5, +0x92,0xf2,0x63,0x59,0x8d,0xbe,0xa2,0x9a,0x3a,0x54,0x49,0x5c, +0x49,0x6c,0x51,0x34,0x97,0xe6,0x8e,0x91,0x5e,0x10,0xe9,0x82, +0x8e,0x5e,0xe0,0xe8,0x88,0xe7,0x3c,0x85,0xc5,0x6e,0xd8,0x8b, +0x7e,0xc8,0x7a,0x00,0x8b,0xa6,0xc3,0x60,0x2a,0x74,0x6d,0x46, +0x7f,0xa6,0x98,0x12,0x36,0x2b,0xa6,0x53,0x5e,0xdc,0x64,0xf6, +0x16,0x30,0x5d,0xc8,0x80,0x1f,0x8b,0xde,0xc2,0x41,0x92,0x53, +0x9a,0x53,0x92,0x55,0xea,0x42,0x19,0xa3,0x43,0xa8,0x83,0x87, +0x87,0xc4,0x18,0xb5,0x4a,0x89,0xa3,0x7f,0x63,0x60,0x8c,0xf2, +0x70,0x4a,0x46,0xd2,0x35,0xa9,0xca,0x54,0xa5,0x81,0x31,0x52, +0x96,0x10,0x46,0x13,0x53,0x41,0x1f,0x0b,0x05,0x8b,0x88,0x23, +0x16,0x5c,0x61,0xbf,0xc7,0x2c,0x82,0xc7,0x06,0xe1,0x18,0x03, +0x77,0x1c,0x08,0xe6,0x0c,0x42,0x0e,0x83,0x77,0x16,0x12,0x6b, +0x3c,0x76,0x9d,0x85,0xee,0x19,0x90,0x63,0x8d,0x39,0x8c,0x44, +0x0b,0x7d,0x89,0x41,0xb6,0x06,0x18,0xf6,0x5e,0x93,0xf4,0x09, +0x54,0x84,0x6e,0x94,0x68,0x61,0x91,0x9a,0xd2,0x42,0x29,0x95, +0x86,0x6d,0x73,0xdd,0xbd,0xcb,0x4e,0xa2,0x85,0x55,0x94,0x16, +0x36,0x8e,0xd1,0x42,0x29,0x33,0xaa,0xa5,0xcc,0xb8,0x93,0x4a, +0x5a,0x5b,0xca,0x10,0xa8,0xa4,0xad,0x1d,0x5b,0xd8,0xa7,0x14, +0x44,0x15,0x20,0x49,0xda,0xea,0xb1,0xd6,0x6c,0xa9,0xa4,0x6d, +0x16,0xcd,0x09,0x24,0xa2,0x31,0x5b,0xa4,0x2a,0xd0,0xe4,0x28, +0xec,0x8b,0xf8,0x63,0x31,0xe9,0x87,0x92,0x0e,0x71,0x68,0x34, +0x3a,0xed,0xda,0x4d,0x50,0x40,0x16,0x2a,0xbe,0x60,0x84,0x5c, +0x70,0x22,0xb3,0xd0,0x5c,0x5c,0x77,0x5d,0x98,0x08,0x93,0x45, +0xcb,0x6b,0x82,0x25,0xf0,0xd8,0x31,0x87,0x2d,0x75,0x30,0xfa, +0x94,0xe9,0x2c,0x52,0xb5,0x98,0xc1,0x97,0xe8,0xf4,0x33,0x44, +0x5f,0x11,0x8f,0x3b,0xb2,0xb3,0x92,0x08,0x4e,0xa5,0x0c,0x60, +0x2a,0x0b,0x81,0x62,0x10,0xc1,0x40,0x58,0x00,0x81,0x06,0xec, +0x0f,0x25,0x8a,0x28,0x4a,0xd4,0xc3,0x0c,0x44,0x5d,0x72,0x77, +0x03,0xb8,0xfd,0x3b,0xa2,0x2e,0xad,0x4c,0xc8,0x72,0xc6,0x89, +0xba,0x7d,0x98,0xa3,0x97,0x07,0x17,0xb0,0x47,0x9c,0xeb,0x32, +0xf2,0x5f,0x7d,0xe2,0xf2,0x01,0x46,0x9d,0xa2,0xd2,0x28,0xb4, +0xa5,0xe5,0xc6,0x74,0x0a,0x68,0xcb,0xf2,0x30,0xea,0x6b,0x69, +0x65,0x94,0x07,0xa8,0x0c,0x53,0xb0,0x40,0xec,0x20,0xce,0xbe, +0x56,0xa1,0x7b,0x23,0x0f,0x56,0x45,0xd4,0x1d,0x69,0xe1,0xe0, +0x38,0xb0,0xf0,0x42,0x2f,0xbe,0x00,0x8f,0x8d,0x4e,0xc2,0xc7, +0xf0,0x05,0x57,0x78,0x81,0x7a,0x70,0x28,0xb3,0xce,0x11,0x27, +0x7b,0xe3,0xd2,0x70,0x85,0x2b,0xff,0x7e,0xe9,0x5b,0xaa,0xdb, +0x65,0x1c,0x3e,0xc6,0x1e,0x3c,0x15,0x70,0xda,0xef,0x74,0x9e, +0x23,0x0f,0xdb,0x65,0xd2,0xca,0xc3,0xb4,0x8a,0x13,0xbd,0xfc, +0xe6,0x94,0xd5,0xa9,0x8b,0xd3,0x39,0x98,0xc1,0x5e,0x29,0xef, +0xd2,0x37,0xd6,0x70,0x5a,0xe6,0x2e,0x9a,0xc0,0x73,0x0b,0xe1, +0x90,0x74,0xe2,0xc2,0xa2,0x8a,0xad,0xd5,0x56,0x4d,0xb7,0x75, +0xd7,0xaa,0x07,0x5a,0x38,0x9c,0x0d,0xfe,0x44,0x3c,0x7f,0x5d, +0x38,0xcf,0xe0,0xa4,0x49,0xfb,0xc5,0xf3,0x77,0xd8,0xff,0x6f, +0xcd,0x10,0x58,0x19,0x51,0x17,0xdd,0xc4,0xc1,0xbb,0x5d,0xb8, +0xf4,0x4d,0xf0,0xe9,0x41,0x9f,0xdb,0xb0,0xb4,0x6b,0xb4,0xde, +0x03,0x96,0x1d,0x90,0xde,0xbf,0xf6,0xdd,0x83,0xcb,0x3c,0xa0, +0x93,0x59,0xe7,0x84,0x9c,0x0f,0xbe,0x1c,0xf1,0x9f,0x98,0x63, +0xa0,0xac,0x43,0xdf,0x58,0xc5,0xe9,0xa9,0x39,0x8c,0xe1,0xb9, +0x97,0x21,0xf2,0x1f,0xcd,0x11,0x08,0x7e,0x44,0x34,0xba,0x2d, +0x18,0x31,0xc8,0x4e,0xda,0x23,0x1a,0xbd,0x69,0x30,0x87,0x17, +0xa1,0xd0,0x2f,0xed,0x81,0x18,0x24,0x6e,0xb9,0x61,0x0f,0xa4, +0xe7,0xd7,0xd5,0xb8,0xdf,0x18,0xa1,0x61,0x35,0xae,0xf6,0xbf, +0x33,0xc2,0x58,0xcb,0x10,0x2b,0x77,0x17,0xca,0x08,0x35,0xd2, +0xa2,0x86,0x5e,0x22,0x12,0xe1,0x94,0x70,0x07,0x51,0x09,0x94, +0x52,0x99,0x52,0x9e,0x38,0x2e,0x98,0x8f,0xbe,0x44,0x8e,0xc5, +0x66,0xc4,0xa4,0xc6,0x4a,0x27,0xc4,0x3c,0x18,0x71,0x87,0x07, +0xa2,0x91,0x74,0xef,0xb3,0x32,0x87,0x32,0x9e,0x3b,0xf8,0x90, +0x40,0xbc,0xf0,0x29,0xc6,0xb3,0x62,0x41,0x2e,0xf9,0xac,0xe8, +0xa1,0xf6,0xfd,0xda,0xc1,0xb8,0xc1,0x98,0xde,0x18,0x6d,0x33, +0xef,0xaf,0xf0,0x95,0xfb,0xc8,0x1b,0x95,0x75,0x9a,0xca,0xb2, +0x88,0x26,0x3e,0x20,0xcc,0x23,0xca,0x35,0x66,0x67,0xc5,0x2e, +0x8d,0x45,0xe9,0x11,0x5f,0xbe,0x3f,0x6d,0x28,0xf1,0x6a,0x82, +0x65,0x8c,0x79,0xf2,0xde,0x4c,0x4e,0x98,0x26,0x3e,0x49,0x82, +0x8f,0x5e,0xaa,0x36,0x1b,0x64,0xe1,0x89,0x12,0x98,0xac,0xfd, +0xaa,0x2e,0xb2,0x93,0x5f,0x15,0xba,0x20,0x1e,0x1f,0x4b,0xe1, +0xbe,0xb6,0xc2,0x20,0xd6,0x41,0x79,0xe4,0x75,0x53,0xb8,0xcc, +0xb4,0x96,0x14,0x37,0x9b,0x3d,0x90,0x5e,0xca,0x5f,0xc8,0x8e, +0x2e,0x01,0x86,0x40,0x5e,0x1f,0xe6,0xdd,0xb3,0xc2,0x74,0x26, +0xf8,0x74,0xf0,0x99,0x90,0x33,0x39,0x54,0xf9,0x2e,0x2f,0x82, +0x79,0x0a,0xe0,0x35,0x27,0x7a,0xf8,0xcd,0x69,0xaf,0x64,0x2c, +0x3d,0xca,0x49,0xd9,0xc1,0x9f,0x28,0xc3,0x54,0x21,0x0a,0x83, +0xa8,0xd0,0x8f,0x8b,0x0a,0xc3,0xae,0x91,0xf2,0x37,0x51,0xb1, +0x7f,0x4c,0x54,0xe8,0x0d,0xa2,0x02,0xc4,0x25,0xa4,0x5c,0xa7, +0x1e,0x93,0x88,0x12,0xd1,0x32,0x2c,0xfa,0x18,0x96,0x90,0x0c, +0x8b,0x3e,0xf8,0x26,0x93,0xa7,0xa2,0x06,0x1d,0x97,0x17,0xfb, +0x9d,0x1d,0x38,0xc1,0x55,0x3c,0x49,0x06,0xc4,0x8d,0xaf,0xc3, +0x28,0x38,0xe3,0x99,0xb7,0xa1,0xbb,0x77,0x54,0x74,0x85,0xba, +0x1d,0x98,0x8a,0xce,0xf0,0x9d,0xb9,0xf8,0xb2,0x93,0x60,0xc4, +0xda,0x59,0x21,0xe3,0x87,0x61,0x9e,0x4a,0xea,0x15,0xe7,0x86, +0x7e,0x6e,0x69,0x95,0x2e,0x17,0x3a,0x7c,0x1d,0x0e,0x67,0x31, +0x2d,0xaf,0xc0,0x54,0x3f,0xb8,0x60,0x27,0xbf,0xc2,0xe3,0xa1, +0x4e,0x9c,0xda,0x62,0x73,0x83,0x53,0x0b,0x26,0x64,0x07,0x9a, +0xbf,0xcd,0xda,0xe3,0x34,0xb2,0x18,0x77,0x7c,0xcb,0x42,0xf2, +0x0c,0x30,0x5f,0x8c,0xe6,0x8c,0xb0,0x7e,0x06,0x5a,0x7e,0x0b, +0x96,0x34,0x51,0xd8,0x8c,0x7c,0x4e,0xc2,0xf7,0x19,0xd6,0x28, +0x7f,0xa5,0xb9,0x5f,0x19,0x98,0xac,0xcc,0xb0,0x64,0x5b,0x3e, +0xb6,0x64,0x6b,0x90,0x0d,0xf9,0xf2,0x3c,0x79,0x0e,0xc5,0x8d, +0x17,0xed,0x48,0x9e,0x22,0x47,0x9e,0xad,0x70,0xa6,0x2e,0x61, +0x17,0x66,0xef,0xed,0xd1,0x11,0xce,0x2b,0xd5,0x32,0x6d,0x49, +0x19,0xcd,0xcf,0x2a,0x89,0x05,0x8f,0x2f,0x61,0x1a,0x9e,0xa5, +0x2e,0x31,0xea,0x82,0xd6,0x04,0xb7,0x79,0x08,0xf3,0xbb,0x70, +0xc7,0x4d,0x3b,0x06,0xbe,0x14,0xdb,0x49,0x2f,0xdc,0x68,0xc5, +0x1b,0x8f,0xfe,0xbd,0x07,0x8b,0xf0,0xed,0x5e,0x78,0xd8,0x81, +0x0f,0x87,0x6d,0xd0,0x1b,0xde,0xb6,0xc3,0x7b,0x08,0xec,0x8e, +0xb2,0x43,0x1f,0x98,0xc2,0x25,0xa6,0xa3,0x44,0xd9,0x64,0x76, +0x85,0x0d,0x2c,0x31,0x6a,0x62,0xc5,0x56,0x61,0x2f,0xc9,0x0c, +0x4f,0x0b,0x8b,0x0b,0xe0,0x90,0x30,0x6d,0xf2,0x34,0x7d,0x62, +0x4d,0x8a,0xca,0xd8,0x2b,0xbe,0x24,0x4e,0x11,0x5a,0x78,0xc8, +0x18,0xa7,0x79,0x08,0x3b,0xba,0xf0,0x49,0xa6,0x94,0xf2,0xc2, +0x42,0x3d,0x87,0x97,0xc4,0xaf,0x08,0xcc,0x81,0x94,0x95,0xf8, +0x34,0x5b,0xe8,0x63,0x04,0x13,0x98,0x8e,0x62,0x79,0x93,0x19, +0x7c,0x8d,0xdf,0x89,0xcb,0x58,0x68,0x81,0xbf,0x91,0x03,0x98, +0x72,0x9b,0x85,0x14,0x7c,0x6c,0xec,0x93,0x10,0x8f,0xae,0xc4, +0x2b,0x3d,0xb7,0xd5,0xac,0x1c,0xae,0x6e,0x36,0x50,0xee,0x04, +0x22,0x3b,0x22,0x3f,0x5c,0x1a,0xd9,0xad,0xe5,0x33,0x94,0x19, +0xf2,0x34,0x2a,0xf8,0x37,0x76,0x51,0x4f,0xc8,0x2d,0x96,0x5e, +0xd6,0x94,0xe0,0xd0,0xd6,0xdd,0xc9,0xdc,0xbb,0xd9,0x00,0x87, +0x3a,0x5d,0x15,0x4d,0x25,0x5d,0x24,0xa7,0x24,0xa7,0x38,0xab, +0x84,0x02,0x59,0x9c,0x5b,0x84,0x9b,0xaf,0x2f,0x05,0x32,0xe9, +0x54,0x85,0x12,0x35,0xf7,0x2d,0xa3,0x38,0x52,0x7a,0x58,0x16, +0xd9,0xad,0xe1,0x33,0x54,0xe9,0x86,0xd6,0x6c,0xba,0xa4,0x05, +0xc1,0x05,0x44,0x7c,0xdc,0x5b,0x78,0xdc,0x0b,0xbf,0xf1,0x86, +0x6f,0xdc,0xc5,0x97,0x3d,0xff,0x3a,0xb5,0x53,0xdc,0xd8,0x0d, +0xd8,0x8e,0xd8,0x21,0x3c,0xd7,0x2e,0x3e,0xd7,0x65,0xc5,0x08, +0x4f,0xe1,0x03,0x32,0xba,0x01,0xdf,0x18,0xd9,0xc0,0xd8,0x40, +0x3c,0x11,0x07,0xda,0x85,0x01,0x46,0x1c,0x58,0x4d,0x84,0x01, +0x2f,0x71,0x80,0xf1,0x9b,0x24,0x0c,0xb8,0xd2,0x9f,0xb8,0x48, +0x2a,0xa9,0x37,0x91,0xc1,0xc4,0xaa,0xf7,0xaa,0x23,0xda,0xf8, +0xcd,0x91,0x0b,0x0e,0xe3,0xf3,0x49,0x9c,0xd0,0x59,0x4e,0x7e, +0x4c,0x04,0x2e,0xea,0xfb,0x88,0xb2,0x3e,0x7e,0x61,0x05,0x4e, +0x29,0x9f,0xad,0x30,0x94,0x31,0xb8,0x4a,0x68,0x18,0xa8,0xf4, +0x93,0xd0,0xb0,0x86,0xe2,0x97,0x7e,0x7c,0x91,0xa4,0x48,0x43, +0x21,0x4f,0x2b,0xa1,0xe1,0x16,0x97,0x5d,0xbb,0x6d,0x25,0x7f, +0xaf,0xaa,0xad,0xd7,0x35,0x71,0x23,0xf9,0x14,0x7b,0xaf,0x88, +0x4f,0xb2,0x05,0xea,0x02,0x2a,0x9b,0x3d,0x64,0xbc,0x4c,0x5d, +0xa2,0x2d,0xd6,0x4a,0x8b,0xbb,0xc1,0x14,0x09,0xc7,0xb7,0xb8, +0x0d,0x2d,0xd9,0xf6,0x51,0xef,0xcf,0xd7,0xe6,0x69,0xc7,0x44, +0xc5,0xee,0xa0,0xbd,0x2e,0xf6,0x94,0x8f,0x86,0xef,0x76,0xd9, +0xe3,0xe0,0xd1,0xe2,0xc7,0xd7,0x56,0x55,0xd5,0x97,0x37,0x71, +0xf8,0xf5,0x11,0x02,0x31,0x57,0x70,0xb9,0xf4,0xde,0xc2,0x2a, +0xc7,0x2f,0x0f,0x30,0x18,0x14,0x8f,0xcc,0x66,0x7c,0xc2,0xb4, +0xeb,0xe0,0x3d,0x98,0x50,0x01,0x13,0xb2,0x61,0x8b,0xb1,0x74, +0x63,0x0b,0x7b,0x7a,0xcd,0x51,0x47,0x53,0xef,0x13,0x29,0x19, +0x3e,0x33,0x77,0x30,0x32,0x47,0xa3,0x1b,0xcc,0xfd,0x0a,0xf5, +0x07,0x05,0x66,0x79,0xb7,0x2e,0x7d,0x05,0x6b,0x4d,0xd0,0xb5, +0x81,0x19,0x89,0xc6,0x13,0xe4,0x0a,0xfa,0x03,0x03,0xd6,0x03, +0x38,0xc4,0x16,0xd2,0xd0,0xcd,0x53,0xba,0x28,0xf9,0xa8,0x7d, +0x2e,0xbb,0x1d,0xbd,0x5a,0x02,0xf8,0x72,0x75,0x19,0xd5,0xf7, +0xdc,0xd7,0xc8,0x60,0x94,0x23,0x04,0x33,0xf1,0xe6,0xbb,0x2c, +0x70,0x8e,0x53,0x39,0x65,0x69,0x2b,0xae,0xbf,0xf7,0x20,0xef, +0x53,0xaa,0x47,0xb2,0x57,0x3d,0xd8,0x05,0x4b,0xf6,0x97,0xf7, +0xf3,0xf8,0xd2,0xd0,0xee,0xe1,0xf8,0xd7,0x0c,0xe9,0xc1,0x59, +0x62,0xe4,0x07,0x95,0xd2,0x5e,0x4e,0x52,0x6d,0x62,0xa5,0xc4, +0xc8,0x37,0x1a,0xf6,0x72,0xb4,0xf9,0xda,0x31,0x73,0x6d,0x72, +0xd9,0x69,0x60,0xe4,0x0d,0xd5,0x35,0x0d,0x52,0x79,0x04,0xcc, +0x26,0x15,0x12,0xff,0xae,0x1f,0xab,0x01,0x90,0xd8,0xbc,0xe1, +0xd9,0xaa,0xf8,0xca,0xf1,0x8d,0x1d,0x6a,0xa0,0xb2,0x1c,0xad, +0x44,0xd8,0xb7,0x06,0xec,0xb4,0xa7,0xb4,0xf3,0xa5,0x68,0x62, +0xb1,0x67,0x81,0x05,0xb2,0x07,0xf5,0xb4,0x47,0x8f,0x37,0xc1, +0x84,0x37,0xdf,0xb8,0xc7,0x8d,0xde,0xc4,0x54,0x82,0x96,0xe9, +0x9b,0xdc,0xe6,0x98,0xf6,0xf9,0x19,0x0d,0xc0,0xa4,0xa2,0xaf, +0x21,0xc0,0x04,0xac,0xe1,0x07,0xb1,0x1a,0xa7,0xb1,0x25,0xae, +0x46,0x7f,0x66,0xda,0x94,0xca,0x56,0x33,0xe1,0x9e,0x78,0x90, +0xa5,0x04,0xe3,0x6f,0xe4,0x35,0x78,0xaa,0x1b,0x9f,0xba,0x01, +0x4c,0x37,0x32,0x43,0xae,0x76,0x73,0xdc,0x7f,0xb4,0xc2,0x49, +0xee,0x30,0x69,0xdf,0x22,0x4c,0xeb,0x93,0xd6,0xd1,0x76,0xb0, +0x82,0x2f,0x04,0x12,0xf3,0xad,0xf8,0xd4,0x36,0x9c,0xea,0xab, +0xa7,0x92,0xec,0xe9,0x2e,0x98,0xf6,0xe0,0xde,0xfb,0xdc,0x61, +0xdc,0x49,0xb6,0xac,0x46,0x93,0x95,0x68,0xec,0x53,0x49,0x73, +0x90,0x49,0x07,0xcc,0xfc,0xfc,0xe3,0x2f,0xb8,0x51,0xcf,0xbd, +0xe4,0x23,0x58,0xb8,0xde,0x10,0x24,0x31,0x14,0x6f,0x15,0x8f, +0xd6,0x07,0x53,0xd5,0xc9,0xaa,0x71,0xbc,0xcd,0x2f,0xcd,0x2d, +0x7d,0x84,0xb7,0x76,0xe3,0x78,0x5b,0x5b,0x55,0x41,0xf1,0xf6, +0xf1,0x75,0xe4,0xb7,0xd5,0x40,0xc3,0xb3,0x06,0x44,0x1d,0x7b, +0x96,0x92,0xd8,0xb7,0x98,0x5c,0x59,0x36,0x7d,0x96,0xc6,0x50, +0x8c,0x6d,0xa8,0x9d,0xbb,0x3b,0xc5,0x24,0xf1,0x19,0x82,0x3b, +0xdf,0xfc,0x06,0x54,0xa3,0x27,0x50,0xf5,0xcd,0x1e,0xdc,0xe9, +0x06,0x3b,0x77,0xe3,0x02,0x37,0xc1,0x64,0x9f,0xc8,0xbb,0x0a, +0xfc,0x92,0xe1,0x6f,0x84,0x85,0xbd,0xe2,0xc2,0xd7,0x84,0xc5, +0x3d,0xb8,0xf0,0x2e,0xec,0xa4,0xa0,0x04,0x55,0x04,0xf5,0x37, +0x41,0xcf,0x0c,0x5b,0x92,0x9b,0xd0,0x61,0xc9,0xe2,0xcf,0x5e, +0x64,0x3f,0xea,0xef,0xb0,0xf0,0xf9,0x0c,0xe8,0xd8,0x8f,0x1d, +0x8c,0x8d,0x27,0xd9,0x83,0x96,0x6f,0xb2,0x70,0x66,0x0f,0x79, +0x13,0x3c,0xf7,0xb0,0xa2,0xad,0x1b,0x01,0xcb,0xdd,0x68,0xc9, +0xc0,0x99,0x19,0x77,0xc1,0x53,0xda,0x19,0x28,0x1c,0x09,0xfc, +0xfb,0x2d,0x2d,0x69,0x9b,0x66,0x69,0x0f,0xca,0x98,0x02,0x39, +0xa5,0xdb,0xbf,0xdb,0xf4,0x91,0x0a,0x09,0xe8,0x18,0xeb,0x38, +0x98,0x83,0x17,0x49,0xb7,0xbc,0x4d,0xd3,0xa0,0xad,0x3a,0x54, +0x17,0xd3,0x94,0xb0,0x35,0x6e,0x45,0xea,0xac,0xcc,0x42,0x37, +0x1e,0x9e,0x2f,0xf9,0x45,0xfe,0x65,0xf5,0x9f,0x83,0xe1,0xf1, +0xe4,0x9f,0xd3,0x0b,0xbb,0xf9,0xd5,0x79,0x2b,0x0a,0xd6,0xa9, +0xaf,0x96,0xf7,0xd6,0x74,0xb6,0x71,0x6d,0x78,0x87,0x2d,0x28, +0xcc,0x2f,0xcc,0x2b,0x3c,0x54,0xc8,0x17,0xc9,0x0a,0x65,0x05, +0x72,0xee,0x3b,0x46,0x7e,0x48,0x1e,0x45,0x8d,0x44,0x0d,0xac, +0x19,0x5b,0x80,0x0d,0xe8,0xc1,0x6f,0x99,0xdf,0x32,0xb2,0x6d, +0x98,0xad,0x87,0x7b,0x65,0x1c,0xef,0xee,0xb4,0xc3,0x75,0x45, +0x18,0x87,0x9e,0x1f,0x92,0x81,0x43,0x77,0x7c,0x5a,0x82,0xf5, +0x6d,0xbc,0x4f,0x83,0x45,0xbb,0x4b,0x19,0x27,0x9c,0xc2,0xa5, +0xc4,0x5d,0xee,0xad,0xf5,0xaf,0xe1,0xa0,0x9a,0xf1,0x0f,0xf7, +0x88,0x76,0x88,0xe7,0xc4,0xd7,0xdc,0x49,0x5f,0xf4,0x3d,0xcf, +0xae,0x83,0x95,0x1d,0xbc,0x5b,0xd3,0xae,0x76,0x37,0xfa,0x97, +0x37,0xc4,0x39,0x04,0x5a,0xa8,0x50,0xa2,0xea,0xab,0x13,0x4f, +0x5e,0x03,0x79,0x37,0xca,0xbb,0xec,0x3c,0x30,0xcb,0x1d,0xb2, +0x6c,0x31,0xd1,0x13,0x12,0x2d,0xb0,0xc2,0x1d,0x2a,0x2c,0x86, +0x18,0x74,0x3f,0x42,0xe9,0xe8,0xba,0x36,0x98,0x68,0x06,0xcf, +0xa2,0xa3,0x0b,0xf0,0x9b,0xd9,0x8d,0x5e,0xa1,0x0b,0x7c,0x4c, +0xcb,0x1c,0xfe,0xd4,0xd1,0x5c,0x9b,0xfd,0x3e,0x95,0xbc,0xab, +0xf2,0xaf,0xdb,0xc0,0xfa,0x99,0xc2,0x49,0x26,0xbf,0xdf,0x48, +0x0a,0xa1,0x00,0x8a,0xb0,0xca,0x90,0x71,0x4e,0x92,0x5c,0xfe, +0x3b,0x84,0xa5,0x9c,0x44,0x7a,0x23,0x2a,0x7c,0x97,0x01,0x61, +0xc7,0x37,0x5a,0xea,0x39,0x18,0x5d,0x3a,0x86,0xb0,0xd5,0x8f, +0x10,0x56,0x62,0x20,0xc9,0x95,0x63,0xcf,0x3e,0x42,0x58,0xe5, +0x18,0xc2,0xee,0x33,0x20,0xac,0xf8,0xac,0x2d,0x19,0x4a,0x1a, +0x8a,0xef,0x8b,0xd1,0xb6,0xf3,0xae,0x6a,0x6b,0xb5,0x9d,0x8c, +0x13,0x76,0xe0,0x15,0x52,0xe4,0x6a,0xf4,0x25,0xf3,0x61,0xbd, +0xfe,0x4e,0xb1,0x74,0x22,0xd6,0x00,0x30,0x26,0xa2,0xa7,0x2b, +0xf8,0x32,0x47,0xe7,0xda,0x6e,0xc7,0x4d,0x76,0x7a,0x3a,0x45, +0x16,0xaf,0xdd,0xfd,0x36,0x0f,0xa6,0x71,0x30,0x93,0x39,0x67, +0x7b,0x2e,0xf8,0xb8,0x37,0xe7,0x71,0x2c,0x3e,0xd1,0x66,0x26, +0x6c,0x07,0x17,0xa2,0xb7,0x2e,0xb7,0x54,0xed,0xe9,0x56,0xf2, +0xf1,0xaf,0x1d,0xba,0x11,0x7e,0x93,0x13,0x6d,0x63,0xc8,0x91, +0x80,0x90,0x43,0xce,0x51,0x55,0x7e,0xfc,0xd5,0xaa,0xc6,0xba, +0xb2,0x46,0x4e,0x7c,0x29,0x85,0xdc,0x48,0x1c,0x8a,0x1b,0x3a, +0xa2,0xed,0xe4,0x5d,0xd4,0x07,0x34,0x96,0x0a,0x2e,0x05,0x2b, +0xc8,0xfb,0x15,0xdf,0x34,0x0c,0xd7,0xc5,0xb5,0xf3,0xbb,0x83, +0xd6,0x84,0x6d,0x8e,0xe1,0xfe,0x6a,0x84,0xf3,0x29,0x0d,0x58, +0x7b,0xcf,0x7a,0xa7,0x38,0xdf,0x49,0x98,0xc0,0xda,0x5b,0xe0, +0x24,0x6f,0x0c,0xf1,0x90,0x10,0xff,0xcc,0xf5,0x9f,0xda,0x5a, +0xbe,0xa2,0x88,0x9f,0x70,0x1d,0x12,0xb2,0x98,0xe6,0x65,0x30, +0xc5,0x07,0x5e,0xb5,0x56,0x50,0xc4,0x8f,0xec,0xc2,0x29,0xed, +0x36,0xb7,0x0c,0x1b,0x92,0x49,0xe3,0x20,0x45,0xe3,0x2f,0x5d, +0x95,0xa6,0x90,0x56,0xd4,0x37,0xfd,0x7b,0x90,0xf2,0x91,0x40, +0x2a,0x7b,0x0c,0xa4,0x62,0x9d,0xc2,0x9c,0x3d,0xbd,0x8a,0x33, +0x79,0x37,0x3f,0xbc,0xb9,0x6a,0x91,0xcf,0x9f,0x96,0xc1,0x4d, +0x7f,0xfc,0x0a,0xcd,0xa0,0x8d,0x49,0x8c,0x8f,0x8b,0x8b,0x8e, +0xe3,0xb0,0xd9,0x15,0x12,0x98,0xd0,0x23,0xc1,0x47,0x02,0xa2, +0xdf,0xc8,0xfc,0x34,0xf5,0xdb,0x94,0x97,0x13,0xf0,0xa9,0x4c, +0x5c,0x7a,0xaa,0x88,0xaa,0x60,0xb7,0x4b,0xb0,0x42,0x09,0x4f, +0xb5,0x48,0xaf,0xbb,0x4d,0x8b,0x05,0x26,0x46,0xd3,0xc3,0x2f, +0x52,0x2c,0x94,0x2d,0x29,0x1d,0xac,0x68,0xaf,0xad,0x6b,0x96, +0xa6,0x56,0xcc,0x63,0x54,0x2a,0xa5,0xaa,0x54,0xc9,0x09,0x26, +0x60,0x86,0xbf,0x34,0xc3,0x7b,0x5f,0xfd,0xa9,0x6d,0xd1,0x67, +0xf8,0x5e,0x03,0xa3,0x49,0x56,0x6b,0x94,0x65,0x63,0xec,0xda, +0x00,0x8f,0x86,0x9d,0x81,0x34,0x45,0x0a,0x1d,0x87,0x1d,0x85, +0xc7,0x54,0x4c,0x27,0x78,0xb9,0x93,0x52,0x3a,0x78,0xc7,0x93, +0xa0,0xbc,0x13,0xe4,0x8c,0x78,0x77,0x39,0x81,0xcb,0x2e,0x48, +0x7f,0x77,0xbd,0x8f,0x80,0xdc,0x05,0xe5,0x8c,0x03,0x3e,0x43, +0x9c,0xb1,0xb6,0x9f,0x1d,0x99,0xea,0x4c,0xb0,0xbb,0x1f,0xa8, +0x46,0x7c,0x0a,0x43,0x88,0x7f,0x90,0x7b,0x94,0x55,0xdc,0xaa, +0xe2,0x8d,0x85,0xbb,0xf3,0xd4,0x25,0xca,0x52,0x45,0xa9,0xa1, +0x3c,0xf8,0xb0,0x94,0xb5,0xa4,0x52,0x44,0x1a,0xd1,0x65,0xbf, +0x5b,0x28,0xfd,0x6f,0x6b,0x03,0xd2,0x36,0x6e,0x45,0x4d,0x55, +0x45,0x2d,0xb5,0x5a,0x0f,0xf9,0x4d,0x5b,0x5b,0x87,0xd8,0xb8, +0xb9,0x1a,0xb6,0x71,0x95,0x3a,0xb9,0x9e,0xfb,0xbd,0x32,0x28, +0x1f,0xcb,0x63,0x94,0x03,0xad,0xc4,0x61,0xd2,0x85,0x5f,0x0f, +0x09,0x2f,0xf5,0x8c,0x7e,0xe0,0x26,0x3c,0x87,0x9b,0xd0,0x06, +0xa6,0xdb,0xe0,0x74,0xdc,0xe8,0x06,0x36,0x6c,0xfc,0xe6,0xc8, +0x0d,0x61,0xfb,0xb9,0x11,0x7b,0xe6,0xac,0xf7,0xa9,0xd0,0x13, +0xc1,0x5c,0xe8,0xf1,0xd4,0xa3,0xbe,0x33,0x17,0x30,0x25,0x6e, +0x34,0x8d,0xdf,0xac,0x52,0x5e,0x29,0x34,0x2b,0xec,0xbf,0x34, +0x78,0xe1,0x6d,0x6e,0x74,0x03,0x93,0xab,0xc8,0x51,0xe5,0x68, +0x38,0x41,0xec,0x12,0xff,0xc8,0xc8,0x6e,0x1a,0x8d,0x98,0xf5, +0x88,0xdb,0xae,0x33,0x90,0x22,0x86,0x90,0xe8,0x8e,0xa8,0xfa, +0xf0,0x46,0xcf,0x78,0x5e,0x1f,0x58,0x7e,0x50,0xeb,0xc9,0x89, +0xdf,0x5b,0x91,0xbe,0xde,0xe6,0x1b,0xe5,0x43,0x4e,0x1a,0xfe, +0x88,0x93,0x9f,0x9d,0x9b,0x07,0x27,0xac,0x86,0x59,0x44,0xeb, +0xa9,0xf2,0x91,0xb9,0x5c,0x2d,0xe1,0x13,0xfb,0x62,0x3b,0x0e, +0xb5,0x73,0x18,0x96,0x4a,0x0a,0x3d,0x0b,0x6c,0xb3,0xec,0x6f, +0xe4,0xf1,0x27,0xae,0xa6,0x0d,0xa5,0x76,0x72,0xff,0xc7,0x88, +0xcf,0x51,0xe9,0x22,0x83,0xb7,0xf0,0x25,0x78,0xcb,0x4b,0x5c, +0x64,0x38,0xa3,0x68,0x5b,0x07,0x7c,0x0c,0x2f,0xe1,0xc7,0x3d, +0x76,0x0c,0x16,0x2c,0x23,0x50,0xe0,0x84,0x05,0x8c,0xf0,0xc9, +0x0c,0xd4,0x0e,0x80,0x96,0xe9,0xa5,0xe0,0x37,0xba,0x15,0xdf, +0x19,0xd9,0x4a,0x09,0x50,0x0a,0x11,0xaf,0x75,0x08,0xd7,0x18, +0xf1,0xda,0x4a,0x22,0x5c,0x73,0x17,0xaf,0x31,0xbe,0x93,0x84, +0x6b,0xae,0xf4,0x27,0x2e,0xa0,0xa8,0xf5,0x1f,0x10,0x20,0xf5, +0x48,0x1c,0x91,0xae,0x78,0x2e,0x8a,0xe6,0x9c,0xec,0xd1,0xdc, +0x03,0xcc,0x17,0x0a,0x51,0x7f,0x06,0xf3,0x2e,0x34,0xbf,0x6a, +0x63,0x8f,0xbf,0x74,0x30,0xdd,0xda,0x31,0x23,0x18,0xff,0x4f, +0x46,0xf8,0xc7,0xc0,0xa2,0x46,0x18,0x73,0x6f,0xee,0x9b,0x7f, +0x6a,0x04,0xd4,0x61,0x25,0xc1,0x5f,0xfa,0xe1,0x17,0x06,0x54, +0x94,0x08,0xfe,0xd7,0xd3,0x1e,0xc2,0x32,0x27,0x1c,0xc6,0xec, +0x91,0x3d,0x90,0x8d,0xef,0x0d,0x08,0x9b,0x19,0x31,0x1e,0x57, +0x12,0x3c,0x3f,0x04,0xe7,0x69,0x08,0xd8,0x11,0x2c,0x1d,0x82, +0x52,0x06,0xdf,0x99,0x47,0x6c,0xf0,0xfc,0x30,0x0b,0xd7,0x66, +0x40,0xa9,0x0d,0x96,0x32,0xa2,0x13,0xda,0xd3,0x71,0x2b,0x61, +0x42,0xed,0xfd,0xfa,0xb0,0x56,0x7e,0x73,0xe8,0xc2,0x28,0x7c, +0x3e,0x9e,0x13,0x3a,0xea,0xc8,0x8f,0xf1,0xc0,0x85,0x7d,0x1f, +0x5a,0xde,0xc7,0x2f,0xd2,0xe3,0x94,0xaa,0x59,0x2a,0xc3,0xde, +0x7e,0x18,0xa1,0x49,0x9e,0x1d,0xe3,0xf8,0x52,0x59,0xc6,0x3e, +0xc3,0xda,0xb7,0x54,0xb8,0x30,0x2e,0x0a,0x0c,0x5b,0xad,0xbf, +0x13,0x05,0xc2,0xdf,0x66,0x50,0x74,0x66,0x7f,0x05,0x9e,0x18, +0xab,0x60,0xeb,0x5f,0xab,0x19,0x64,0x95,0xd2,0x76,0x6a,0xa4, +0x54,0x1b,0xf1,0x9b,0x14,0x10,0xcd,0x51,0x4f,0x70,0x22,0x1b, +0x79,0x2a,0xea,0x74,0xd4,0xe9,0x22,0x77,0xfe,0xb3,0x82,0xef, +0x4b,0xdf,0x90,0x67,0xb4,0xf3,0xc1,0xc7,0xfd,0x8f,0xfb,0x9d, +0xe0,0xbe,0xff,0xba,0x13,0xe7,0xb2,0xb9,0xe5,0x59,0xba,0x8b, +0x94,0x0c,0x3d,0xd1,0x81,0x88,0xc6,0x36,0x9e,0xe0,0xc3,0x84, +0xb8,0xd9,0xf8,0xe0,0x63,0xbe,0x5a,0x0f,0x1e,0xa6,0xf7,0xbe, +0x3d,0xd4,0xf4,0x2e,0x27,0x7c,0x83,0x2c,0xd9,0xca,0x24,0x9f, +0xba,0x54,0x6a,0xf6,0x35,0x18,0x77,0xe2,0x8a,0x5f,0x9f,0x9b, +0xda,0x21,0x4e,0x42,0x63,0x07,0x4f,0x9a,0xc6,0x43,0xdd,0x6d, +0x7c,0x66,0xf9,0x49,0x8f,0xb1,0x9d,0x6f,0xf6,0x37,0xbf,0xce, +0xad,0x62,0xfd,0x8b,0x53,0xda,0x4d,0x3f,0x65,0xea,0x4b,0x0b, +0xeb,0xa8,0x72,0x74,0x2f,0x35,0x1a,0xcd,0x80,0xed,0x04,0x5e, +0x64,0x4e,0x45,0x9c,0x8c,0xca,0x3c,0xcc,0x21,0xcb,0x08,0xce, +0x9f,0x4a,0xd7,0x01,0x4a,0xbf,0x38,0x4a,0x7f,0x31,0x85,0x11, +0xe7,0x8a,0xaf,0x91,0x4e,0xe1,0xae,0xe7,0x30,0x7c,0x35,0x7a, +0x00,0xbf,0xa2,0x69,0x05,0x62,0x88,0x78,0xf7,0x8e,0x70,0x97, +0xa6,0x1f,0xda,0x11,0xe1,0xee,0x36,0xf1,0x2e,0x33,0xf5,0x8a, +0xf0,0x13,0x81,0x06,0x67,0x3c,0x8d,0x66,0x23,0x1d,0x34,0xb7, +0x15,0xf7,0xc3,0xb5,0xce,0x51,0x81,0xa9,0xd3,0x56,0xeb,0x2a, +0x24,0x8b,0xfc,0x2f,0x25,0xe7,0xc6,0x20,0x3e,0x89,0x11,0xde, +0x05,0xe3,0xff,0xd9,0x7f,0xfe,0x5b,0x7a,0xec,0xc7,0x34,0xd2, +0x0f,0xd6,0xce,0x2c,0x9e,0xf6,0x27,0xf6,0xb8,0xff,0x2a,0x2b, +0x6c,0x9e,0x61,0x8f,0xd6,0xf4,0xa7,0x8d,0x3d,0x41,0xcf,0xab, +0xe0,0xc9,0x14,0x88,0xd3,0x09,0x64,0x8c,0x3a,0x62,0x06,0xdc, +0x71,0x14,0x97,0xbb,0x0a,0xcb,0x17,0xdc,0xfc,0x4e,0xd8,0xde, +0x2b,0x6e,0xbf,0xc2,0x82,0x9c,0xa6,0x05,0xf1,0x7e,0x97,0x70, +0x9f,0x59,0x3e,0xc9,0x45,0xbc,0xdf,0xc7,0x4e,0x1d,0xd9,0x20, +0xdc,0x22,0xe5,0xf2,0x32,0x95,0x4c,0xce,0xe9,0xf1,0x2f,0x6c, +0x6e,0x5e,0x6e,0x5e,0x4e,0xbe,0x5d,0x0e,0x2f,0x5d,0x6c,0x7d, +0xb4,0x88,0x83,0xf5,0x5d,0x58,0xff,0x77,0x23,0x70,0x1c,0x8f, +0x82,0x5a,0x7d,0x45,0x15,0xe5,0xb8,0xb2,0xe8,0xd2,0xe8,0x92, +0xc3,0x96,0x76,0xaf,0x78,0xe0,0xd3,0xbe,0x1a,0x77,0x5e,0x9f, +0xaf,0x2f,0xd0,0x17,0x71,0x2f,0xb3,0xe8,0x1e,0x8c,0x64,0x35, +0x3e,0x66,0xda,0xe3,0x63,0xf4,0x0d,0x4c,0x6b,0x82,0xb9,0x10, +0x64,0x02,0x4f,0x43,0x2a,0x1b,0x13,0xec,0x9c,0x80,0x26,0x49, +0x45,0xbe,0x3c,0x6c,0x57,0x5f,0xa9,0xd3,0x0d,0x71,0xf0,0x78, +0x28,0x13,0x24,0x4b,0xe9,0x91,0x4e,0x86,0x6d,0xcc,0xcf,0xd3, +0x9b,0xa9,0xa4,0x73,0xc1,0xc2,0x70,0x07,0x9b,0x74,0xec,0x72, +0x91,0x59,0x05,0x54,0xb6,0xb2,0x98,0x43,0xe7,0x51,0x7e,0xe4, +0xb7,0xfd,0x64,0xa5,0x64,0x60,0x9b,0x2e,0xca,0xa8,0x7f,0xb5, +0x63,0x9c,0x6b,0xb8,0xab,0xaf,0x0f,0xb5,0xa3,0x52,0x25,0xa9, +0x14,0xee,0x26,0x3e,0x4d,0x92,0x52,0x62,0x52,0x0e,0xa5,0x70, +0xf8,0x3a,0xa3,0x2d,0x96,0x30,0x81,0x0b,0xc6,0xb3,0x44,0xa8, +0x69,0x11,0x6b,0x18,0xe1,0x6f,0xf4,0xfb,0xb6,0x51,0x4b,0x1f, +0xf6,0xea,0x66,0x22,0xdc,0x6a,0x11,0x6f,0x31,0xc2,0x6d,0x9c, +0x4a,0x5a,0xc4,0xdb,0x7e,0x6c,0x2b,0x06,0x91,0x0a,0x21,0xee, +0xd0,0x0d,0xd8,0x2c,0x7e,0x8f,0x9b,0xa5,0x57,0xdf,0x9f,0x25, +0x0e,0x62,0xdc,0xe0,0xb8,0x5a,0x94,0x1f,0x96,0x8d,0xcf,0xb5, +0xfa,0x5f,0xcc,0xf5,0xdf,0x59,0xea,0xef,0xf2,0x45,0x9c,0x73, +0x98,0x8b,0xb7,0x37,0xed,0xa7,0x4a,0x2d,0xd7,0x96,0x4a,0xb2, +0xfa,0x77,0x03,0x4b,0x53,0x3e,0x9a,0xef,0xdd,0xb8,0x98,0x74, +0xda,0x79,0xe2,0x17,0xee,0xf0,0x85,0x83,0xb8,0xc2,0x55,0x58, +0x61,0x6b,0xf8,0x8c,0x9e,0xd8,0xce,0x5e,0x28,0x7d,0xb5,0xf4, +0x3c,0x4d,0x2c,0x9e,0xbf,0x38,0xd9,0xe0,0xfc,0xeb,0xf6,0xeb, +0x19,0x7c,0x32,0x6d,0xe3,0xfe,0xd5,0xa6,0xed,0x7e,0x65,0xb5, +0xf2,0xda,0xa2,0x3a,0x63,0xd8,0xb3,0x74,0x10,0x66,0x61,0x14, +0x73,0xa9,0xf4,0x62,0xe9,0x45,0xfa,0xa7,0x3d,0xe8,0x39,0x44, +0x45,0xc0,0x0d,0x17,0x3c,0x84,0xb3,0xae,0x7e,0x0d,0x6b,0xe7, +0x5f,0x15,0x16,0xdb,0x5b,0xe3,0xfa,0x61,0xc7,0x97,0xe0,0x90, +0x0b,0xde,0xa0,0x5f,0x7e,0x01,0x13,0xbe,0xec,0x7d,0xe5,0x27, +0xc6,0xde,0x9d,0x38,0x60,0xcd,0x20,0xfb,0xd2,0x24,0xa8,0xb1, +0xc5,0x1a,0xc3,0xa2,0xa3,0x27,0x51,0x87,0x2a,0x83,0x0d,0x8b, +0x25,0xff,0xa4,0x66,0x46,0xca,0x2a,0x3b,0x5d,0xcd,0xc7,0x6a, +0x66,0x2a,0xc7,0x6a,0x66,0x14,0x33,0xa4,0x27,0x7e,0xab,0x8b, +0x31,0xbc,0xaa,0x32,0xbe,0x03,0x9b,0xa3,0x72,0x2c,0xe0,0xe3, +0xac,0x42,0xad,0xbd,0x5c,0x3b,0xe9,0x8c,0x69,0x64,0xda,0x92, +0x72,0x0e,0x8d,0x5e,0x21,0x03,0x0b,0xc1,0xcc,0x15,0x72,0x9d, +0x4b,0x29,0xf9,0xb9,0xdc,0x81,0xd3,0xaf,0xd9,0xbc,0xc5,0x59, +0x32,0xb6,0x3b,0x70,0x92,0x03,0x5e,0xf4,0x92,0x4a,0x29,0xce, +0xf7,0xc1,0xf3,0x7d,0xfd,0x7f,0xe6,0x70,0x23,0x1a,0x13,0x37, +0x10,0x7a,0x58,0x4c,0xc2,0x01,0x02,0xce,0x14,0x62,0x9c,0x59, +0x8a,0x7e,0x94,0x15,0x38,0xc3,0x7d,0x70,0x66,0xc5,0x58,0x77, +0xb2,0x18,0xbd,0xbf,0x65,0x85,0x55,0x8b,0xc9,0xb7,0x70,0x70, +0x31,0x2b,0x86,0xe1,0x1e,0x92,0x92,0x73,0xe2,0xd4,0xf1,0x63, +0x99,0x19,0xbc,0x54,0x44,0xac,0xca,0x2b,0x6f,0x34,0x29,0xb3, +0x89,0x63,0x2d,0x42,0x3c,0x71,0xbd,0xa7,0xa9,0xd6,0xf1,0x7b, +0xfd,0x40,0x8d,0x5e,0x67,0x9c,0x9b,0x7b,0xf9,0x5c,0xde,0x29, +0xd8,0xb8,0x9a,0x2f,0xef,0x35,0x82,0x94,0x6b,0xe4,0xc4,0x45, +0xa3,0x22,0x65,0xae,0xba,0xd5,0xf0,0xd7,0x56,0x11,0x9e,0xb8, +0xd2,0xd5,0x54,0xe3,0x04,0x13,0xeb,0x9b,0xab,0x75,0x65,0xc6, +0xb9,0x39,0x59,0x67,0x72,0x4f,0x43,0xd0,0x12,0xbe,0xac,0x0f, +0x6d,0x3f,0x49,0xce,0x39,0x79,0xea,0xf8,0x51,0xe3,0xff,0x06, +0xb1,0x99,0xca,0xf4,0xff,0x65,0x88,0xcd,0xa6,0x5f,0x4a,0xde, +0xe2,0x11,0xe5,0xe1,0xef,0xd7,0x1e,0xc9,0xcb,0xe4,0x25,0x8a, +0x22,0x25,0xf7,0xc7,0x7f,0x0e,0xb1,0xe9,0x48,0x83,0xdb,0xd8, +0x5b,0x30,0xf6,0xc1,0x6f,0x7d,0x46,0xce,0xb4,0xe1,0x2f,0x6d, +0xc2,0xca,0x76,0x71,0x65,0xb7,0x2d,0x23,0x2e,0xc2,0x18,0xe2, +0x35,0xf2,0x26,0x9b,0x1a,0x17,0x1f,0x1d,0x9f,0xd4,0x7e,0x88, +0x2f,0xd3,0xe8,0x1b,0x8b,0xab,0xb9,0x56,0x76,0xf4,0x67,0x8c, +0x24,0x23,0xdd,0xad,0xa2,0x71,0x07,0xdc,0x6c,0x1d,0x5d,0xe1, +0x0b,0xfd,0x5e,0x28,0x32,0x23,0x9b,0xf0,0x79,0xe2,0x86,0x2d, +0x7e,0xd2,0x81,0xb4,0x38,0x99,0x2d,0xf1,0x32,0xfa,0x81,0x69, +0x29,0x29,0x6e,0x31,0xfb,0x23,0x18,0xb7,0xa0,0x71,0x0f,0x18, +0x77,0xfc,0xd7,0x0b,0x5e,0x2c,0x18,0xe3,0x51,0x52,0x0d,0xe7, +0x61,0x35,0x0e,0xa1,0x13,0x4b,0x3f,0x2c,0x22,0xbb,0xd0,0xe1, +0x2d,0x16,0xfe,0xe0,0x4f,0x2a,0xe2,0xbb,0xfc,0x14,0x31,0x4d, +0x55,0x7c,0xac,0xd6,0xb3,0xe5,0x88,0xcc,0xa0,0xa8,0x43,0x48, +0x69,0xb4,0xec,0x48,0x49,0x14,0x0d,0x9c,0x0c,0xc9,0x14,0xf2, +0xf1,0x25,0xca,0xbf,0x2f,0xa9,0x73,0x31,0xa8,0xab,0x9a,0x2a, +0x5d,0x1d,0x27,0x4c,0x58,0x45,0xb4,0xe5,0x2a,0xbd,0xbc,0x72, +0x6c,0x0f,0x36,0x4c,0x3e,0x56,0x8e,0x97,0x3c,0xbe,0xfa,0x24, +0x6d,0x83,0xfc,0x7d,0xc5,0x1d,0x07,0x8b,0xe7,0x10,0x43,0xf9, +0xa4,0xc6,0x31,0x8f,0x8f,0xdf,0xe1,0xb9,0x76,0xdf,0xfe,0x96, +0x20,0xbe,0xae,0x5e,0xdf,0xa2,0x69,0xe1,0xe0,0xfd,0x7e,0x46, +0xdc,0x78,0x8f,0x88,0xdb,0xc4,0x27,0x84,0xdd,0x1d,0xb8,0xff, +0x75,0x30,0x81,0x25,0x68,0x72,0x1d,0x76,0x33,0x22,0x63,0x4d, +0xae,0x83,0x99,0x35,0x8b,0x66,0x38,0x81,0xdc,0x82,0x32,0x0b, +0x16,0xcb,0x70,0x12,0x79,0x1d,0xcc,0xcc,0xd9,0x91,0xc9,0xaf, +0x13,0xfc,0xd9,0x19,0x7e,0x66,0x76,0xd3,0x5f,0x8d,0xba,0x61, +0xc8,0x42,0xe7,0xbf,0xce,0xeb,0x9f,0xcd,0x88,0xc7,0x60,0x0d, +0xc1,0x35,0xb8,0x1c,0xd6,0xb0,0x82,0x11,0xd2,0xcf,0xf4,0x13, +0x2c,0x67,0x86,0x50,0x3a,0x50,0x07,0xd6,0xe3,0x1a,0x76,0xaa, +0x30,0x04,0x4f,0x92,0x0e,0x6c,0x66,0x0b,0x4a,0x0a,0x4a,0xf3, +0x4a,0x38,0x08,0x87,0x17,0xd1,0xb5,0x19,0x2c,0x3e,0xef,0x6b, +0x73,0xf9,0x04,0x2d,0xd4,0xcc,0xe5,0x63,0xfd,0xaa,0x14,0xa9, +0x2c,0x50,0x6b,0xfc,0x6b,0x95,0x93,0x62,0xac,0x84,0x72,0xaf, +0x9b,0x85,0xa1,0xca,0xc9,0x50,0xb8,0x2e,0x6d,0xf0,0x16,0xc7, +0x16,0x4b,0xfb,0x30,0x81,0x3e,0xb8,0x6b,0x8d,0xa3,0xcf,0x95, +0x15,0xb0,0xcb,0x1f,0x5d,0xf1,0x45,0xd8,0xc2,0x64,0xa6,0xa6, +0x27,0xa7,0x25,0x73,0xb8,0xc1,0x0b,0x9e,0x61,0xe2,0x63,0xe2, +0xe2,0x12,0x13,0x3a,0x33,0x7a,0x53,0x7b,0x53,0x1c,0x12,0xf6, +0xa5,0x6f,0xca,0x2c,0xf6,0xe0,0x7f,0x2a,0xf9,0x58,0x79,0xa7, +0xfa,0xb5,0xb8,0xdb,0x31,0x57,0xe2,0xd5,0x6d,0xbc,0xb3,0xcc, +0x59,0xee,0x5a,0xda,0x54,0x5e,0x59,0xad,0x69,0xe2,0xee,0x08, +0x45,0xa4,0xec,0xd1,0x96,0x93,0x2a,0x5c,0x11,0xa6,0x08,0x96, +0x0a,0xe0,0xa5,0x72,0x7a,0xed,0xb8,0xad,0xa9,0x68,0x53,0x18, +0x6a,0x37,0x63,0x0e,0x04,0x59,0xba,0x3a,0x71,0xd0,0x21,0x16, +0x93,0x81,0xcf,0x75,0x3f,0x16,0x01,0xcf,0xdd,0xee,0xa7,0xe4, +0x3c,0xaf,0x26,0xb7,0x2e,0xab,0xde,0x31,0x9b,0x4f,0x59,0x10, +0x80,0x53,0x76,0x2d,0x69,0x0f,0xe6,0xe5,0x5a,0x99,0xae,0xa4, +0x4a,0xbe,0x55,0xbf,0xb5,0x63,0x87,0xd7,0x3e,0x6b,0xdb,0x2d, +0x8e,0xb5,0x6e,0xfc,0xfd,0xa1,0xe1,0xa1,0xce,0x9b,0x1d,0x56, +0xd7,0x6c,0xde,0xb6,0xaf,0xed,0xe1,0x77,0x5c,0xb5,0x1d,0xf6, +0xbc,0xc5,0x89,0xb9,0xc2,0x93,0x04,0xa7,0xb5,0xc1,0x34,0xa6, +0xc7,0x87,0xb4,0xc1,0xf3,0x3e,0x2c,0x5e,0xf5,0x21,0x30,0xcd, +0x03,0xa7,0x31,0xb0,0xa3,0x8b,0xc0,0xf3,0x1e,0xf8,0x3c,0x03, +0x0f,0x75,0xe4,0x72,0x91,0x11,0xac,0x62,0x8e,0xce,0x8e,0x5d, +0xe5,0xbf,0xd5,0xf3,0x41,0xd4,0x27,0x69,0x5f,0x70,0xe2,0x0c, +0x5c,0x46,0x95,0xc1,0xdc,0x7e,0x16,0xbe,0xa0,0x39,0x60,0x6e, +0x3f,0xcc,0x65,0xe8,0x0c,0x66,0x92,0x82,0x82,0xa2,0x92,0x22, +0x1a,0x28,0x7b,0x99,0xd8,0xd0,0x88,0x23,0x01,0x71,0x3e,0x45, +0x7e,0x85,0x81,0xb9,0xdc,0xd8,0x06,0x91,0x54,0x09,0xa8,0x3c, +0x38,0x5e,0x57,0xf2,0xfb,0x97,0xf3,0x54,0x86,0xba,0xa1,0xb0, +0x1d,0x86,0x4a,0xc0,0x80,0x5f,0xb3,0x9a,0x54,0x09,0xa8,0xce, +0x55,0x19,0x5e,0xce,0x8b,0x39,0x20,0x55,0x02,0x4a,0x55,0x66, +0x63,0x95,0x80,0x5f,0x33,0x86,0x2a,0x95,0x83,0x7d,0xbf,0xb5, +0x26,0x55,0x02,0xde,0xc1,0x0e,0x92,0x91,0xd9,0x12,0x50,0x53, +0x59,0x51,0xa7,0xae,0x37,0x16,0x2c,0x7a,0xc4,0x57,0x98,0x9c, +0xd2,0xec,0x92,0xec,0x52,0x17,0x19,0x1f,0xef,0x14,0x64,0xeb, +0xeb,0xc5,0xb5,0xa2,0xd9,0x5f,0xec,0xe6,0xe1,0x42,0xc7,0x0f, +0x91,0x61,0x71,0x5b,0x0a,0x3e,0xbe,0x11,0x39,0xd3,0x6e,0xdf, +0xfb,0xf0,0xb4,0xe6,0xc7,0x4b,0xb0,0xce,0x18,0x66,0x33,0x0b, +0x4e,0xaf,0x3c,0xba,0xdf,0xd4,0xeb,0x78,0x5a,0xaa,0xcb,0x4c, +0x2b,0x69,0x45,0xac,0x8b,0xf9,0x5a,0x5d,0xf5,0x61,0xbe,0x59, +0xfe,0xeb,0x17,0x61,0x0a,0x3c,0x6d,0x82,0x9e,0x30,0x51,0x52, +0x0a,0x0b,0x89,0x20,0xeb,0x59,0x0e,0x9a,0x77,0xba,0xb6,0x5f, +0xb5,0xb7,0xc7,0x58,0xfa,0xcf,0x5e,0x8f,0x37,0x50,0xf3,0x0a, +0x23,0x3c,0x01,0xe1,0xc4,0x50,0xf7,0xca,0xcc,0x9b,0x64,0x87, +0xb1,0x43,0x2c,0xc4,0xce,0x21,0x07,0x30,0xf6,0x36,0x8b,0x73, +0x50,0x46,0xee,0xaa,0xdf,0x6b,0xea,0x6a,0x08,0x6e,0xe2,0x7d, +0x43,0xb7,0x04,0x5a,0x24,0x72,0x70,0xb7,0x95,0xdc,0x89,0x7d, +0x37,0xf4,0x5a,0xb0,0xbe,0x93,0xb7,0xac,0xdf,0x5e,0x65,0xa1, +0xe2,0xfe,0xef,0x15,0xe4,0x78,0xf6,0x90,0x7f,0x59,0x7b,0xf3, +0x25,0xf3,0x4f,0x8a,0x75,0x98,0xd1,0x29,0x62,0x04,0x89,0xca, +0x88,0x3c,0x1a,0x79,0x8c,0x83,0x6d,0xdf,0x0e,0x2c,0x86,0x99, +0x76,0x38,0x13,0xa7,0x38,0xc1,0x14,0xb4,0x65,0xfd,0x32,0x7c, +0x8e,0x7a,0x1c,0x2d,0x74,0xe2,0x5b,0x73,0x9b,0xf2,0x1a,0xf2, +0x38,0x74,0xc3,0x49,0xac,0xcc,0xde,0xe8,0x21,0xd3,0x66,0x28, +0x15,0x0d,0x65,0x6b,0xf2,0x6b,0x0a,0x6a,0x8a,0xb8,0x0f,0xa0, +0x92,0xdc,0xce,0x7b,0xbd,0xe8,0x9a,0x2a,0xae,0x8b,0xb7,0x8a, +0x5d,0x9f,0xb4,0xee,0x78,0x01,0xfa,0xf2,0xf1,0xa7,0xe2,0x4f, +0x27,0x9c,0x2e,0x74,0xe7,0xff,0x50,0xf2,0x65,0xf9,0x3b,0xe5, +0x79,0x89,0x7c,0x4b,0x59,0x6c,0x57,0xe0,0x40,0x54,0xbd,0xb1, +0xdf,0x11,0x59,0x9c,0xe2,0xb0,0x2c,0xca,0x38,0x30,0xdd,0x2f, +0xc3,0x37,0x53,0xaa,0x84,0x5c,0x4f,0x4e,0x2c,0x3d,0xec,0xb0, +0xdd,0xb5,0xce,0x97,0xff,0xfc,0x9a,0xfe,0x41,0xce,0xcf,0xdc, +0xf7,0xcc,0x39,0xf7,0xd3,0x2e,0xc7,0xc3,0xb8,0xf0,0xe3,0x47, +0x4f,0x44,0xce,0xb4,0x64,0x0a,0xdd,0x8c,0x6e,0x30,0x3d,0xd5, +0x8a,0x9e,0x5c,0xb3,0xec,0xd6,0xec,0x3b,0xe7,0xbf,0xe6,0x70, +0xc8,0x8d,0x41,0x8f,0xd1,0x09,0xa4,0x45,0x58,0xe7,0x37,0x08, +0x20,0x56,0x20,0xb0,0x90,0x06,0x71,0x04,0xf7,0x7c,0x08,0x7b, +0x98,0x81,0x0d,0xe4,0x43,0xb0,0xdd,0xc0,0xe2,0x29,0x2f,0xb2, +0x12,0xf7,0x3c,0x64,0x21,0x65,0x06,0xd8,0xae,0x44,0x5b,0x03, +0xe2,0x46,0x48,0x15,0x90,0x11,0x34,0xe3,0xa9,0x24,0x5a,0xae, +0x4e,0xf9,0xe7,0x35,0x2c,0xe3,0xca,0xd5,0x50,0xc3,0x32,0x71, +0xb5,0x94,0x2d,0x75,0x34,0x5b,0x1a,0xd6,0xf9,0xe9,0xb3,0xbd, +0xca,0x7f,0xd8,0x34,0x96,0x3f,0x12,0xb6,0xd6,0xae,0xae,0x5c, +0x82,0x68,0x49,0xf4,0x47,0x2a,0x23,0xb5,0x91,0x0d,0x75,0xfc, +0x11,0x7d,0x84,0x2e,0x52,0x53,0xae,0x55,0x97,0xcb,0xe9,0x04, +0xec,0x63,0xe4,0xd1,0xca,0xe8,0xb2,0x98,0x23,0x11,0x41,0x61, +0x51,0x09,0x35,0x81,0x7c,0x8d,0xba,0xb6,0xaa,0xa2,0x5a,0x99, +0xa4,0x4e,0x2e,0x4b,0xaa,0x69,0xe6,0xad,0x1a,0x3d,0x1b,0x43, +0x68,0x4a,0x9d,0xd6,0x8d,0xab,0x99,0x44,0x7d,0x6a,0x55,0x66, +0x35,0xf7,0xe7,0x66,0x46,0x13,0xa5,0x89,0x94,0x47,0xb6,0xd6, +0xf0,0xa1,0xdd,0x0e,0x77,0xfc,0x9b,0x7c,0x23,0x78,0x79,0xa2, +0x22,0x5e,0x1e,0xc7,0xe1,0x36,0x26,0xb7,0x3a,0xbb,0xf6,0x72, +0x83,0x73,0x16,0x7f,0x32,0xe0,0x44,0xd0,0xd1,0x10,0x6e,0x1e, +0x53,0xa2,0x2e,0x54,0xe7,0x29,0xbc,0x35,0x7c,0x8c,0xbb,0x87, +0x85,0xfb,0xc1,0xa6,0x20,0x5e,0xaf,0xd5,0xd5,0x68,0x6a,0x39, +0xdf,0x2f,0xd8,0x8c,0xb0,0xd4,0xf0,0xa4,0x48,0x0e,0x97,0xb8, +0x03,0xc7,0x04,0xfb,0x78,0x04,0x58,0x05,0xd4,0x05,0xf0,0xda, +0x52,0x4d,0xa9,0x52,0xc6,0x89,0x46,0x40,0xb5,0x92,0xdd,0x19, +0x7c,0xe6,0x00,0x4e,0x34,0xed,0xf1,0x6f,0x7b,0x57,0xf6,0x49, +0x0e,0x4c,0x30,0x86,0xf9,0xe8,0x8d,0x0c,0x23,0x97,0x0e,0x81, +0xe9,0x29,0x51,0x74,0x9a,0x09,0x3f,0x63,0x36,0x0b,0xee,0x78, +0x80,0xe0,0x2c,0x78,0x8e,0x52,0x7f,0x81,0xec,0x22,0xf9,0xa1, +0x45,0x11,0x25,0xb4,0xe9,0xc9,0x4c,0x89,0xbe,0xa8,0x32,0xbf, +0x86,0x13,0x33,0xf1,0x24,0x39,0xdf,0x7c,0xbe,0xad,0xcb,0x84, +0xb2,0x26,0x63,0x46,0x78,0x09,0x9f,0x23,0x27,0x61,0xbf,0x03, +0xde,0xc3,0x27,0x98,0x42,0x17,0xa3,0x3f,0x32,0x1d,0xd2,0x4d, +0x9b,0x3f,0xb0,0x79,0x97,0x2f,0xe6,0x9e,0x34,0x85,0x00,0x9c, +0x5d,0xd5,0x8d,0x5e,0x60,0x92,0x92,0x9f,0x79,0xfa,0x68,0xba, +0x31,0xce,0xc9,0x26,0x3e,0x9e,0x3b,0x3c,0xf7,0x47,0x55,0x79, +0xf0,0x77,0xab,0xdf,0xea,0xeb,0xe8,0xe6,0xfe,0x4f,0x4d,0xa2, +0xe0,0x4e,0x13,0x4c,0x17,0x25,0xcc,0xa9,0x9a,0x4c,0xed,0xd1, +0x32,0xee,0xbb,0x76,0xa6,0x22,0xaa,0x2c,0x42,0x15,0xd1,0x5c, +0xcb,0x87,0xb6,0x3b,0x5c,0xf3,0xaf,0xf3,0x8f,0xe0,0x65,0x29, +0xa5,0xc9,0xb2,0x24,0x0e,0xb7,0x30,0x39,0xfa,0xec,0xaa,0xac, +0x1a,0x97,0x6c,0xfe,0x44,0xf0,0x89,0x90,0xa3,0xe1,0xdc,0x7c, +0xa6,0x48,0x5e,0x28,0xcf,0x2d,0xf5,0xd1,0xf2,0xd1,0x3e,0x1e, +0xb6,0xee,0x21,0x8d,0x81,0x7c,0xa5,0xa6,0xb2,0x5a,0x5b,0xcd, +0xf9,0x7f,0xce,0x1e,0x3d,0x92,0x11,0x9d,0x1a,0xc3,0xe1,0x3a, +0x0f,0x78,0x8e,0x09,0xf4,0x72,0xf5,0xdb,0x1d,0x50,0xe5,0xcd, +0x7f,0x7a,0xe5,0xfa,0x95,0xb6,0x9b,0x1c,0xac,0x60,0x5a,0x6c, +0x86,0x9d,0x3e,0x73,0xa8,0x6a,0xe3,0x77,0x35,0xb9,0xb5,0x04, +0xb5,0x71,0xa3,0x4e,0xf9,0xff,0x72,0x5e,0xa6,0x48,0xf3,0xf2, +0xc5,0xf8,0xbc,0xfc,0x32,0x36,0x2f,0x16,0xd2,0xbc,0x48,0x92, +0x0c,0xde,0x44,0x13,0x52,0xa8,0xc9,0xd3,0xe6,0x95,0x71,0x55, +0x4c,0xee,0x91,0xfc,0xe8,0x82,0x18,0x4e,0x1c,0x40,0x73,0xc3, +0xbc,0x74,0x4a,0xf3,0xc2,0x33,0x42,0x9c,0x33,0x29,0x4e,0x2f, +0x4a,0x2b,0x4a,0xc1,0x4d,0x19,0x7c,0x7f,0x5b,0x57,0x57,0x53, +0x4b,0x40,0x25,0x1f,0x16,0xe4,0xef,0x6b,0xeb,0x9e,0x51,0x94, +0x5a,0x92,0x52,0xd2,0x56,0xdf,0xd2,0x56,0xd3,0xe8,0x57,0xc1, +0x47,0x05,0x07,0xfa,0x79,0x05,0x1e,0xcd,0x3b,0x9a,0x7b,0x2c, +0x27,0x24,0x82,0xaf,0x8e,0x6c,0xf7,0xd3,0x45,0x9c,0x3a,0x73, +0xea,0xf4,0xa9,0xd3,0x76,0x67,0xec,0xce,0x3a,0x9d,0xbb,0xe4, +0xc6,0xdf,0xbd,0x70,0xf7,0xd2,0xdd,0x4b,0x94,0x4b,0x0e,0xc1, +0x56,0xf6,0xc6,0xe5,0xe1,0xcb,0x43,0xd9,0x05,0x29,0xf9,0xa9, +0x79,0xa9,0x8d,0x3a,0x3e,0xa4,0x2b,0xa0,0xdd,0xbf,0x8e,0xdb, +0x82,0x96,0xa4,0x3f,0xf4,0x8a,0x5f,0x53,0x40,0x7d,0x13,0xef, +0xd5,0xe6,0xdc,0xe0,0x5a,0xc5,0xe1,0x77,0xf8,0x0a,0xe9,0xd7, +0x0f,0xf6,0x54,0xb5,0xfa,0xe9,0xf8,0xa8,0x00,0x67,0x5f,0xb7, +0xc3,0x86,0xe9,0x0e,0x30,0xd4,0xa1,0x2a,0x82,0xa5,0x17,0xd1, +0x28,0x9e,0x4b,0x2f,0x0d,0x6c,0xfc,0xb7,0x78,0x0e,0x7f,0x5b, +0xfe,0x9f,0xa2,0x2e,0xbe,0x2c,0x1e,0x26,0xe9,0x05,0xc7,0x5e, +0x35,0x5c,0xd0,0x79,0x6a,0x18,0xd6,0x82,0x3f,0xae,0xbd,0x2b, +0xfd,0xb1,0xed,0x7d,0x07,0xda,0x5d,0x37,0x69,0x5d,0x7b,0x35, +0xfa,0xc3,0x42,0x26,0xd6,0xd2,0x6e,0xf7,0xfc,0x2d,0x8d,0xde, +0x3c,0x3c,0xfe,0x79,0x45,0x67,0xee,0x1d,0x2e,0x1b,0x2f,0x0f, +0x42,0x24,0x93,0x7d,0xe9,0x7c,0x16,0xf5,0xe2,0x27,0x71,0x62, +0x4b,0xb3,0x51,0x97,0x50,0x43,0x3c,0xe0,0x45,0x36,0xdd,0xde, +0x35,0x6a,0x41,0x9c,0x82,0xfe,0x31,0xaf,0x1b,0xec,0x2b,0x78, +0x8b,0x0a,0x40,0x26,0xfe,0xd5,0x84,0x33,0x29,0xa6,0xb1,0xa7, +0x32,0xcf,0x1c,0x9e,0xb9,0x84,0x29,0xf4,0x36,0xfa,0x9c,0x19, +0xd0,0x15,0xf5,0x64,0x9b,0x5d,0xac,0xb8,0x50,0xd3,0x63,0x92, +0x2e,0x5e,0x25,0xf0,0x57,0xd1,0x04,0xff,0xca,0x8a,0x26,0xf0, +0x90,0xfc,0xf8,0x32,0x73,0xfa,0xd5,0x53,0xe7,0x4e,0x9b,0xce, +0x65,0x40,0x3e,0x63,0x16,0x3c,0xf6,0x33,0x23,0xf8,0x6c,0x24, +0x58,0x7d,0x15,0xaa,0x19,0xac,0x9e,0x4f,0xa0,0xda,0x0e,0xab, +0x19,0x9f,0x49,0x50,0x6d,0x49,0x7f,0xc2,0xfa,0x25,0xe4,0x76, +0xfc,0xbd,0xc3,0xd7,0xc2,0x34,0x5d,0xbc,0x45,0xf5,0xce,0x72, +0x9b,0x52,0x0e,0x5f,0xc3,0x69,0xe4,0x5d,0xf9,0x2d,0xe5,0xd5, +0xc6,0xe8,0x56,0xde,0x31,0xd4,0x26,0x61,0x6b,0xa2,0xc1,0xb6, +0xe1,0xbf,0xd9,0x96,0x32,0x40,0x83,0x7d,0x36,0xfd,0xbf,0x6e, +0xdb,0xca,0x64,0xe2,0x16,0xcd,0xd8,0x47,0x27,0x6e,0x38,0x68, +0x5a,0xe6,0x5f,0x5b,0xd2,0xa8,0xd4,0x56,0x18,0xff,0x5f,0xd4, +0xbd,0x67,0x58,0x55,0xd7,0xd6,0x36,0x6c,0x8c,0xac,0xb5,0x4e, +0x92,0x63,0x72,0x8c,0x53,0x17,0x26,0x81,0xc4,0x1e,0x8d,0xbd, +0x77,0x11,0x11,0xa5,0xd7,0x4d,0xef,0xbd,0x6f,0x7a,0x55,0x10, +0x04,0xc4,0x28,0x1b,0x50,0x7a,0xef,0xbd,0xf7,0xde,0x8b,0x82, +0x0d,0x2c,0xb1,0x6b,0x4c,0x34,0x46,0x4d,0x8c,0xe7,0x49,0xc6, +0xe6,0xcc,0xc5,0x79,0xdf,0xb9,0xf6,0x86,0x68,0x72,0xce,0xb9, +0xde,0xe7,0x79,0xbf,0xef,0xfb,0xf1,0x5d,0x5c,0xd7,0x66,0x0b, +0x6e,0xd6,0x1a,0x63,0x8e,0x71,0x8f,0xfb,0x1e,0x73,0xae,0x39, +0xe3,0xe3,0x63,0x4f,0xc7,0x47,0xbf,0x56,0x66,0xcb,0xeb,0xbf, +0x1a,0x3e,0x1e,0x1f,0x71,0xea,0x44,0xb8,0xec,0xf1,0xd0,0x28, +0x91,0x4c,0x72,0x66,0x5c,0x6e,0xfe,0x22,0x28,0x2f,0xe1,0x3f, +0xa4,0xed,0x19,0xb0,0xcd,0x56,0xae,0xc0,0xba,0x26,0xbd,0x21, +0xaf,0xa0,0x48,0x36,0x3e,0x2e,0xf6,0x4c,0x7c,0xf4,0xaf,0x87, +0xd8,0xb2,0xba,0x55,0xe7,0xc3,0xe3,0x23,0x62,0x22,0x22,0xa4, +0x7b,0x3f,0x49,0x3f,0x24,0xfe,0x68,0xea,0x23,0x64,0x59,0xef, +0xd2,0xec,0xdd,0xd6,0x79,0xbb,0xea,0x7e,0xd1,0x5d,0xa3,0x0c, +0xd6,0xf7,0x90,0x87,0xb2,0x9d,0x8a,0xf0,0xe6,0xf1,0xbb,0x31, +0x77,0x19,0x38,0xde,0x81,0xc3,0x41,0x5d,0x1b,0xab,0x73,0x7f, +0x37,0x06,0xdd,0xc3,0xf8,0x80,0x29,0x1c,0x38,0xf4,0xd6,0xeb, +0x01,0x4a,0xf9,0x84,0x72,0xa4,0x7a,0x74,0x02,0xbf,0xf5,0x73, +0x06,0x58,0xe7,0xc3,0xca,0xa2,0xf0,0x88,0xf0,0x13,0xc7,0x23, +0xaa,0x2d,0xd8,0xee,0x86,0xa6,0xd6,0xea,0xf6,0x3c,0xdb,0x12, +0xfb,0x1a,0x97,0x66,0xdb,0xf6,0xf8,0xb3,0x9d,0xc5,0xb0,0x87, +0x15,0xe4,0xc9,0xe0,0xa5,0x62,0x65,0x54,0xe5,0xd1,0x61,0x5e, +0x62,0x5b,0x5f,0xc5,0x7a,0x95,0xeb,0xf7,0x39,0xe5,0x31,0xdc, +0x06,0x22,0x04,0xb8,0xe5,0xb4,0x5b,0xb4,0xeb,0x49,0xd7,0x68, +0x46,0xbc,0x81,0x86,0x61,0x8e,0x46,0x96,0x11,0x7a,0x11,0x1a, +0x11,0xcc,0x6d,0xd8,0xdb,0x86,0xf7,0x0e,0xc1,0xd6,0x36,0xfe, +0x6c,0x86,0x4d,0x6d,0x78,0xd3,0x00,0xa9,0xae,0x67,0xbe,0x4c, +0xfd,0xa2,0xe1,0x2b,0x37,0x6b,0x47,0x1b,0x2b,0x07,0x66,0xee, +0x3f,0x66,0x1f,0x47,0x96,0x75,0x2e,0x4d,0xde,0xad,0x52,0x6b, +0x0c,0x88,0x35,0xca,0x1e,0xca,0xf6,0xaa,0xc2,0x6b,0x61,0x77, +0x62,0xee,0x4f,0x5b,0xb3,0x5f,0x1b,0xef,0xc7,0x6d,0x97,0xc0, +0xbd,0x03,0xbb,0xf7,0x85,0x53,0x95,0xa9,0xfc,0x40,0x06,0x11, +0xd2,0xbb,0xf3,0xff,0x40,0x7a,0xb3,0xdd,0x32,0xdd,0xb2,0x9c, +0x19,0x4f,0x3d,0xec,0x63,0x0c,0x3e,0x87,0xf1,0x59,0xe2,0x91, +0x23,0xf8,0x80,0x09,0x1c,0x50,0x7e,0xeb,0xf5,0x3f,0x7b,0xa4, +0x76,0xc6,0x23,0xf9,0xb6,0xa5,0xf6,0xb5,0x2e,0xcd,0x76,0xcd, +0x71,0x67,0x3b,0x8b,0x88,0x47,0x0c,0xf3,0x64,0xb8,0x59,0x62, +0xb7,0xff,0x31,0xf3,0x4d,0x55,0x40,0xd5,0xee,0x9d,0x66,0x25, +0xb6,0x0d,0xe5,0xac,0x57,0x85,0x6e,0x9f,0x53,0x3e,0xc3,0xad, +0xe7,0x9f,0xf8,0xf8,0x4f,0x4e,0xbc,0x0b,0x7b,0xdb,0xf1,0xde, +0x41,0xd8,0xda,0x8e,0xb7,0x0e,0xc0,0xa6,0x76,0xbc,0xa9,0x8f, +0x38,0x31,0x76,0x79,0xea,0x92,0x86,0x75,0x6e,0x56,0x0e,0x36, +0x56,0xf6,0x0c,0xbf,0x7f,0x96,0xa3,0xa4,0x5e,0x4c,0xb7,0xab, +0xa5,0x0b,0x57,0xb7,0x75,0xe2,0x9a,0xff,0xec,0x1b,0x71,0x1a, +0x91,0xd9,0xb9,0xf6,0x84,0x74,0x66,0x4b,0x1e,0xcd,0xf1,0x27, +0xa4,0x53,0xb3,0x13,0x5f,0xa1,0x12,0xb3,0xf9,0xc7,0x5b,0xc9, +0x2d,0xfb,0xea,0xb9,0xe9,0x59,0x99,0xb5,0xb9,0xb1,0x19,0x59, +0x69,0x39,0xa9,0xb9,0x0c,0x5e,0xaa,0x8d,0xd4,0x0f,0xe1,0x0f, +0x4c,0xf0,0x29,0xc7,0x0c,0x1d,0xf6,0xb7,0xcc,0x47,0x99,0x97, +0xf2,0x18,0x3b,0xf1,0xdc,0x6a,0xfa,0x8a,0xef,0xa3,0xc0,0x5f, +0x83,0xd2,0xfb,0x59,0x1c,0x5b,0x8d,0x17,0xb6,0xab,0x5d,0x61, +0xb0,0x1e,0x5e,0x82,0x6e,0x97,0x74,0xd6,0x94,0x74,0x30,0x09, +0x54,0x89,0x71,0xaf,0xfd,0x7d,0x77,0x86,0x3b,0x4f,0x6a,0xef, +0x3a,0x08,0x80,0x75,0x74,0x1f,0x01,0x42,0x08,0x82,0x75,0x38, +0x88,0x12,0xe7,0xf2,0xef,0xd7,0xe1,0x08,0xbc,0x8e,0xe6,0x32, +0x5a,0xd0,0x18,0xb0,0x2a,0x34,0x7c,0xb9,0x60,0x0c,0x3e,0x25, +0xdf,0x5b,0xc7,0x08,0xcb,0x5c,0x32,0x46,0x73,0xe5,0x9c,0x23, +0x82,0x55,0xa0,0x80,0x17,0xf4,0xc2,0x02,0x50,0x94,0x7e,0x13, +0xac,0xc5,0x9f,0xd0,0x29,0x66,0x32,0xf0,0x11,0xd5,0x9c,0x94, +0x59,0x25,0x0f,0x67,0xa6,0xe2,0xf0,0x45,0x9a,0xfc,0x65,0x43, +0x84,0x15,0xae,0x82,0x02,0xd5,0x4b,0xfe,0xaf,0x12,0x56,0xa4, +0x20,0x70,0xc1,0x55,0x10,0x28,0xd1,0x73,0x21,0x5d,0x7c,0x1f, +0x61,0x0b,0x13,0xb1,0x65,0x3b,0xb6,0xec,0xa2,0x12,0x03,0xbb, +0x73,0xa5,0xcf,0xfe,0xca,0xc2,0x86,0x4e,0x5c,0xf8,0x9f,0x1f, +0x14,0x79,0x44,0xa5,0x7b,0x65,0x78,0xa6,0x09,0x19,0x63,0x0a, +0xc4,0x30,0xff,0x4f,0xcf,0x01,0xeb,0xbf,0x79,0x0e,0xf8,0xc5, +0xbf,0x3e,0x07,0x6c,0xd6,0x49,0xb9,0x4f,0xc9,0xa0,0x4e,0x8c, +0x80,0x01,0xc9,0x37,0x19,0x58,0xda,0x85,0x59,0x3a,0xab,0x2c, +0xbd,0x3c,0xa9,0x88,0xd0,0xf9,0xa3,0xf6,0x41,0x0e,0xbe,0x8e, +0xcc,0x4a,0x2a,0xb5,0x2c,0xb9,0x32,0xb1,0xca,0x30,0x85,0x75, +0x5b,0xa2,0xbb,0x44,0xed,0x20,0xa1,0x36,0xe9,0xd9,0x69,0x59, +0xa9,0xd9,0x0c,0x67,0xd5,0xd3,0x09,0xb7,0xbb,0xf1,0x5a,0xf8, +0x90,0xe6,0x7e,0x01,0x3b,0x54,0x97,0x56,0x93,0x5d,0x55,0x50, +0x18,0x90,0x1f,0x90,0x13,0x58,0x5a,0xc9,0xfa,0x66,0xf8,0x66, +0xf8,0xa5,0xe5,0x66,0x65,0x67,0x67,0xe5,0x39,0x17,0xb3,0x01, +0xde,0xbe,0x7e,0x3e,0x01,0xee,0xd9,0x1e,0x19,0x1e,0x69,0xee, +0x2e,0x6c,0xe1,0xd1,0x42,0x42,0x05,0xdc,0x02,0x5c,0x82,0x9d, +0x8e,0x31,0x30,0xb8,0x01,0x81,0x9e,0x00,0x2f,0xc7,0xf9,0xb0, +0x5c,0x80,0xf5,0x60,0x1b,0x1d,0x1d,0x18,0x1d,0x10,0x45,0xea, +0xfc,0x01,0x7c,0xa7,0x07,0x2a,0x89,0x1c,0x08,0xb3,0x0a,0xb5, +0x0e,0xb5,0xd6,0x8d,0x64,0xcf,0x9a,0x7e,0x93,0x78,0x2d,0xe5, +0x46,0xba,0xec,0x59,0x7e,0xbd,0x62,0x70,0x7d,0x2e,0xeb,0xdd, +0xe1,0xda,0xe5,0xd1,0x68,0xef,0xc7,0x26,0x05,0x25,0x07,0x24, +0x05,0x38,0x46,0x38,0x45,0x39,0x46,0x26,0xd7,0x25,0xd5,0x25, +0xd6,0x91,0xb0,0xc3,0xfe,0x84,0x48,0x25,0x59,0xc8,0xbc,0xa2, +0xea,0xd2,0xd3,0x6a,0xe4,0x21,0x13,0x5b,0xd2,0x29,0x7d,0x32, +0x62,0x65,0xd8,0xcf,0xef,0x29,0xf5,0x01,0xcc,0xa2,0x4f,0x9f, +0x3e,0x7d,0xe6,0xf4,0x19,0xe6,0x24,0x2e,0xe7,0xfd,0xf1,0x01, +0x66,0x68,0xa3,0x39,0xf8,0x43,0xf2,0xab,0x0f,0xc9,0xf8,0x8c, +0xc2,0x8f,0x28,0xf2,0xb9,0xf4,0xf4,0xe8,0xe7,0x9a,0xf8,0x39, +0x56,0xd7,0x06,0x45,0xca,0x0f,0xbf,0xab,0x8c,0xe7,0xac,0x5e, +0x51,0xa3,0xcf,0x3e,0x7d,0xd5,0xf1,0x43,0xe2,0x33,0x26,0x81, +0xdb,0x3f,0x2c,0x66,0x29,0x82,0xb1,0x22,0x52,0x92,0xde,0xc5, +0xfb,0x1a,0x9a,0xf1,0x1c,0xd8,0x13,0x91,0x18,0x7e,0xe6,0x68, +0xa8,0xac,0x58,0x11,0x0e,0xfe,0xbb,0x4d,0x71,0xb9,0x4b,0x29, +0xa8,0x74,0xb4,0xe2,0x51,0xce,0x75,0x83,0x5c,0xd6,0x5f,0xc1, +0x7d,0x97,0x9b,0x2a,0x89,0xec,0x33,0xc8,0x6f,0xdc,0xfd,0x8e, +0x70,0xd4,0xc8,0x93,0x2d,0x52,0x2d,0xd9,0x93,0x73,0x90,0x24, +0xd5,0x30,0xfc,0x8a,0x4e,0x24,0x46,0x90,0x3f,0x76,0x3c,0x9c, +0x8d,0xfc,0x11,0x56,0x0f,0xe0,0xd5,0xf0,0x5c,0x9b,0xdc,0xd0, +0x26,0x1d,0x58,0x45,0x05,0xe1,0x77,0xb5,0xf0,0x9c,0xad,0xcb, +0xab,0x04,0xec,0xed,0x17,0x0d,0x4f,0xcf,0x7e,0x4f,0x6e,0x68, +0xfb,0xa0,0x78,0x11,0x7f,0x43,0xb1,0x51,0x72,0x4f,0xf0,0xde, +0xba,0x46,0x19,0x78,0x0f,0x1a,0x91,0xf4,0xe8,0xe3,0x7e,0xcd, +0xa9,0x0b,0x94,0x7b,0x84,0xc7,0x09,0xcf,0xa8,0x54,0x55,0xf6, +0x69,0x2e,0xcc,0xaa,0xfa,0x86,0xdf,0x9f,0xd4,0x26,0xc0,0x38, +0xc0,0x30,0x98,0x81,0x1a,0x6f,0xe4,0x74,0xfc,0x5c,0xb9,0x3c, +0xbc,0xa0,0xaf,0x5d,0xbd,0xf4,0xb8,0xfb,0x3b,0x8b,0x7a,0xd6, +0x66,0xbf,0xd1,0x21,0x6d,0x0d,0x06,0xfe,0xa9,0x39,0xd5,0x40, +0xab,0x15,0x78,0x8d,0xc9,0xfd,0x4c,0xd5,0x4b,0x9e,0x0e,0x88, +0x99,0x39,0xb9,0xbd,0x78,0x32,0x07,0x05,0xef,0xf7,0xde,0xe9, +0xa5,0xd2,0xe2,0xc5,0x16,0x8e,0x15,0x3d,0xca,0xbc,0xc1,0xe0, +0x28,0x6c,0x8c,0x82,0xc6,0xbd,0xef,0xfa,0x8e,0x19,0x7b,0xb3, +0xb9,0x2a,0x05,0xbb,0xd3,0x79,0x83,0x2e,0xc1,0xdf,0xf9,0x63, +0x2e,0x79,0x83,0x8e,0xb3,0x91,0x2f,0x60,0xdd,0x00,0x49,0x46, +0x89,0x41,0xdb,0x74,0x60,0x2d,0x15,0x88,0xe7,0x68,0xe0,0x77, +0xb7,0xf0,0x06,0xdd,0x7d,0xd1,0xf4,0xf4,0xec,0x13,0x62,0xd0, +0x8e,0xc1,0x69,0x0f,0x47,0xc9,0x3d,0x93,0x18,0x54,0x25,0x6e, +0x43,0xe2,0x84,0x41,0x2e,0x81,0x52,0x88,0x22,0xd7,0xf5,0xdc, +0xe9,0xa5,0xda,0xe2,0x49,0xae,0x5b,0x22,0xb9,0xee,0xd7,0xe4, +0xba,0x81,0xe3,0x9e,0xd2,0xeb,0xe6,0x91,0xeb,0x66,0x1c,0x64, +0x00,0xda,0x10,0xfe,0x9c,0xc6,0x21,0x42,0xbc,0x60,0x35,0x9e, +0x47,0xa4,0xe9,0x8d,0x9f,0xeb,0x60,0x76,0x1a,0x2c,0x93,0x85, +0x3b,0xbb,0x2f,0x88,0xe5,0x29,0x35,0x9c,0x8c,0xf0,0x0d,0xea, +0x4c,0xcd,0xe9,0xfa,0xc6,0x45,0xf7,0x61,0x82,0x9e,0x2b,0x8e, +0x9d,0xcc,0x44,0xfc,0xa2,0xfa,0x84,0x1c,0x8d,0x73,0xec,0x09, +0xef,0x13,0x7e,0xa1,0x3e,0x0c,0x1e,0xe5,0x14,0x26,0xfd,0xc4, +0x0a,0xd4,0xd4,0x2e,0xee,0x43,0x04,0xf7,0x26,0x67,0xe1,0x7b, +0x34,0x37,0x96,0x47,0x74,0x7e,0xdd,0xed,0xda,0xf4,0x1e,0xc2, +0x51,0x3e,0xec,0x1d,0xa7,0xe2,0x45,0xb1,0x09,0x27,0xe5,0xc0, +0x61,0x67,0x6e,0x23,0xb6,0xbd,0x73,0x5c,0x14,0x19,0x1d,0x15, +0x21,0x1b,0x7e,0x54,0x26,0xb2,0x16,0x4e,0xb6,0xe0,0x79,0x54, +0x41,0x5e,0x7e,0x69,0x5a,0x81,0x55,0x01,0x1b,0x2c,0xf4,0x74, +0xf5,0xf6,0xab,0xf4,0x66,0xf1,0xac,0xa7,0xfa,0xeb,0xf0,0x2c, +0xaa,0x36,0x2f,0xa0,0x58,0x58,0xe6,0x93,0x29,0x6b,0xeb,0x99, +0x1b,0x50,0xe0,0x91,0x25,0x94,0xc5,0x7f,0x35,0x07,0x53,0xca, +0xde,0xf1,0xa0,0xdb,0x32,0x57,0x66,0xd2,0x0d,0x1f,0x41,0xff, +0x94,0x33,0x00,0x3d,0xea,0x98,0x6d,0xb0,0x8d,0xb7,0x39,0x23, +0xbe,0x41,0xc5,0xb8,0x45,0xda,0x87,0x7b,0x33,0xc2,0xf0,0xd0, +0x30,0xa3,0x4f,0xb0,0x32,0x95,0x2a,0x90,0x01,0x65,0xea,0x5a, +0x49,0x66,0x6f,0x9a,0x7c,0x72,0xfd,0xb9,0x81,0xd8,0x51,0x86, +0xeb,0xa4,0x12,0xf9,0xa5,0xa1,0x05,0xcc,0xe4,0xa7,0x44,0xa0, +0x39,0x4d,0xde,0x41,0xc4,0xe5,0x3b,0x74,0x60,0x3d,0x4d,0x5c, +0xae,0x8e,0xdf,0xdd,0xcc,0xbb,0xfc,0xfe,0xcb,0x69,0x97,0xef, +0x1c,0xfa,0xdd,0xe5,0xaf,0xb0,0x52,0x7d,0xe3,0x32,0x50,0x3c, +0x21,0x19,0x34,0xd9,0xe3,0xc7,0x65,0xc8,0xa8,0xad,0x19,0xc0, +0x6b,0xe0,0x39,0x25,0x9e,0x1b,0x85,0x9c,0x57,0x28,0xac,0xc4, +0xf3,0x56,0x57,0xe9,0xb1,0x30,0xef,0x97,0x5b,0xdf,0x15,0xc0, +0x7b,0x4c,0x3c,0x95,0x8f,0xe7,0xfc,0xb0,0x01,0xe6,0x7d,0x5e, +0xc9,0xef,0xf6,0xfb,0x6a,0xd3,0x53,0x87,0x5f,0x18,0xfc,0xc2, +0x44,0x32,0x56,0x9e,0xaa,0x24,0x46,0x8a,0x46,0x4b,0x1e,0x65, +0x91,0xb1,0x12,0x61,0x23,0x14,0x40,0xc6,0xca,0x67,0x94,0x8c, +0x55,0xbe,0x4a,0x21,0x3f,0x56,0xe2,0x35,0xdb,0x48,0xce,0x0c, +0xe2,0x41,0x4a,0xc4,0x3d,0x45,0x23,0xd0,0xab,0x31,0x2c,0xde, +0xc4,0xed,0xe0,0x36,0xd1,0x30,0x05,0xff,0x40,0xf8,0x04,0xee, +0x85,0x13,0x24,0x45,0x27,0xc5,0xd7,0x51,0x5d,0x5d,0x45,0x43, +0x51,0x33,0xd1,0x71,0x4e,0x14,0xa6,0xb6,0xa9,0x62,0x1b,0x45, +0xb9,0x42,0x7d,0xd0,0xbf,0x76,0x7f,0x20,0xfd,0xbf,0x64,0x13, +0xa8,0x8c,0xc5,0x2f,0x74,0xc0,0xe4,0x40,0x41,0x0f,0x8b,0x3d, +0x26,0xd6,0x8d,0x01,0xb5,0xa8,0x12,0xdc,0xe8,0x10,0x07,0x57, +0x63,0x7b,0xab,0x4e,0x0f,0xb6,0x7d,0xb8,0xb8,0x2b,0xa7,0x9b, +0x69,0xe6,0x0e,0xd3,0xc9,0x84,0xbb,0x9f,0x2b,0xe0,0xb7,0x0d, +0xd9,0x6e,0xa6,0xa0,0x74,0x84,0xc1,0x27,0xe0,0x2b,0xa4,0x0f, +0x71,0xbd,0xb4,0x1b,0x3e,0x88,0x0e,0x9b,0x6c,0xb6,0xfe,0xca, +0xae,0x44,0xc0,0x3e,0xab,0x7f,0xdc,0x36,0xd6,0xc6,0x88,0xdf, +0xc5,0x43,0xa8,0xa6,0xaa,0xa9,0xab,0xa4,0xc3,0xa8,0x98,0xf5, +0x32,0xb7,0x35,0xb3,0xb6,0x65,0x38,0xe3,0xe7,0xa8,0xda,0xb6, +0xca,0xa6,0xd4,0xa8,0xa3,0x8c,0x75,0xeb,0x70,0x68,0xb4,0xab, +0x61,0x26,0xcd,0xb0,0x0f,0xea,0xe5,0x76,0x4b,0x76,0x29,0xe5, +0xbe,0xd2,0x17,0x33,0xb4,0x0e,0x41,0x10,0x63,0xec,0x24,0xc8, +0xd5,0x65,0xe1,0xe4,0xa5,0xd7,0xad,0x8d,0x2f,0x49,0xcc,0x44, +0x8d,0x40,0x54,0x3c,0xd5,0xf0,0x25,0x7c,0x60,0x06,0x31,0x87, +0x73,0x88,0xd7,0xdc,0x7b,0xf1,0x5f,0x3b,0xb4,0x2f,0x93,0x8c, +0x51,0xe6,0xb7,0x26,0x7e,0x82,0x3f,0xd7,0x05,0x96,0x0e,0xc1, +0xb3,0x0d,0xf0,0x9c,0xbd,0x2b,0x2b,0x05,0xec,0x95,0xa7,0x55, +0x4f,0x13,0xf8,0x13,0xea,0xd7,0x0e,0x88,0xbf,0x20,0x63,0xf5, +0x35,0xc9,0xf7,0x9b,0x78,0x47,0x4d,0xc3,0x3e,0xd8,0x1e,0x49, +0xe0,0xe7,0x18,0x19,0xab,0x70,0x99,0xa8,0x87,0x80,0xfa,0x09, +0xd2,0x3f,0xa1,0x26,0x1d,0xad,0x11,0x77,0x59,0x17,0xc2,0xa8, +0x30,0xb3,0xa3,0x66,0x41,0x66,0x44,0xd3,0x4e,0x6d,0x1d,0x9c, +0x9c,0xf5,0x23,0xf7,0xb2,0x5f,0xfc,0xf2,0x39,0xf7,0x72,0x40, +0xfc,0xf2,0x17,0x6e,0x60,0x3f,0x95,0xa4,0x27,0x33,0x44,0xb5, +0x65,0x66,0x12,0x99,0xf3,0x0a,0x37,0xd1,0xe9,0x4d,0xa9,0x1d, +0x49,0xad,0x0c,0x14,0x52,0x53,0x5f,0x60,0x53,0x94,0x3b,0x96, +0xf7,0x28,0xed,0x86,0x31,0xa9,0x15,0xfb,0xfc,0x77,0xf9,0x11, +0xd8,0xa2,0xce,0xa0,0x90,0x71,0xff,0x3b,0x01,0x63,0x26,0xbe, +0x6c,0x96,0x4a,0xce,0xde,0x54,0x45,0x72,0xcf,0x89,0xf0,0x1c, +0x91,0x30,0x99,0xdb,0x8f,0xe7,0xc2,0x73,0x1d,0x12,0x69,0x5f, +0xea,0xc2,0xe7,0x54,0x08,0x9e,0xa3,0x87,0xe7,0xec,0x5c,0x4e, +0xee,0xfe,0xda,0x8f,0x75,0x4f,0x13,0x1e,0x93,0xbb,0xdf,0x3c, +0x20,0x96,0x9d,0xbe,0xfb,0xfb,0x78,0x4f,0x6d,0xc3,0x76,0xd8, +0x1d,0x95,0x78,0x9c,0x7f,0x3e,0x1d,0x16,0x73,0x7b,0xd1,0xc0, +0xe4,0xa8,0xf8,0xf3,0xa9,0xe3,0x78,0x0b,0xff,0x5c,0x3f,0x11, +0x5a,0x1d,0x29,0x59,0xad,0xf2,0x93,0xd5,0xdc,0x59,0x7a,0x1b, +0x4e,0x47,0xf9,0x63,0x05,0x8f,0xd2,0x6f,0x1a,0x91,0x9b,0xd9, +0xef,0xb3,0xd3,0x47,0x85,0xc1,0xef,0x9f,0x41,0xc1,0x13,0xbe, +0x77,0xfd,0xc6,0x4c,0x7d,0xd8,0x6c,0x95,0xbc,0xdd,0x69,0x8a, +0x8c,0x58,0xfe,0x5b,0xa4,0x07,0x17,0xfa,0x68,0x5c,0x84,0x77, +0x23,0x6e,0x7e,0xcf,0x65,0xd0,0x80,0x2b,0x34,0xd6,0xc0,0x69, +0x08,0xec,0x40,0x16,0xdb,0x91,0x58,0xb2,0x93,0xe6,0x03,0x0f, +0x41,0xf4,0x5b,0x10,0x74,0xef,0x65,0xa3,0x14,0x53,0x77,0xbc, +0xc9,0x87,0x9f,0xf0,0xc1,0xba,0xa6,0x15,0xa0,0x10,0xf9,0x76, +0x3e,0xac,0x1f,0xc0,0xeb,0x49,0x3e,0x4c,0x1e,0xb2,0x42,0x5c, +0x8a,0x26,0x1c,0xfd,0x7d,0x93,0xe1,0x75,0x53,0x6b,0x46,0xc6, +0xe1,0x96,0x64,0x93,0x61,0x7f,0xc9,0x26,0xc3,0xa9,0xc4,0x97, +0x1e,0x14,0xf7,0xb0,0x03,0x05,0xed,0xf7,0x22,0xd9,0xd0,0x4a, +0x10,0x73,0x54,0x8a,0x5c,0x67,0x78,0xe4,0x9a,0xf0,0xba,0xe3, +0x23,0x45,0x2e,0x69,0x36,0xac,0x24,0xec,0x16,0x2c,0xe1,0x16, +0xbf,0x7d,0xf0,0x2d,0xe9,0xf6,0xc1,0xb7,0xf8,0xed,0x83,0xa1, +0x47,0x82,0xa4,0x11,0xa7,0x8f,0x86,0x85,0x85,0xb3,0x51,0x2f, +0x40,0xb6,0x1f,0xcb,0x4a,0x9d,0xbd,0x4a,0x97,0x78,0x2a,0xf8, +0x8d,0xb3,0x6f,0x3c,0xaf,0x79,0x72,0xf6,0x3b,0x62,0xc6,0x16, +0xa9,0xb3,0xf9,0xd2,0xf0,0x0c,0xab,0x12,0x24,0x15,0x5f,0xe5, +0x17,0x40,0x7e,0x96,0xbe,0xb4,0x68,0x73,0x67,0x45,0x4b,0x76, +0xdf,0x39,0xa2,0x9b,0xbc,0xc4,0xf2,0xd8,0xf9,0x35,0xc4,0xf5, +0x71,0x8d,0x7a,0x10,0xba,0x14,0x3b,0x72,0xf2,0x60,0x49,0x85, +0xeb,0x04,0x9b,0xbb,0xdb,0xd9,0x95,0x38,0x56,0x38,0x35,0x58, +0x38,0xb1,0x95,0x96,0x35,0x0e,0x0d,0xae,0x66,0xb6,0x2a,0x6e, +0xeb,0xdd,0xf3,0x0c,0xd9,0xd7,0x15,0xd7,0x2b,0x7b,0x3a,0x5e, +0x68,0xc3,0x5f,0x5c,0x41,0x3e,0x98,0xe1,0x60,0xf2,0x47,0x24, +0x1d,0x93,0x16,0x92,0xd7,0x64,0x94,0x32,0x6e,0x32,0x38,0x18, +0x9b,0xa1,0x90,0x09,0x9f,0xbb,0xfe,0x63,0x26,0x6f,0x46,0xa7, +0x42,0x09,0x11,0x28,0x79,0x0f,0xd6,0x50,0xe0,0x84,0xdf,0xe3, +0x99,0xd9,0x7b,0xb0,0x8e,0xe2,0x66,0x63,0xfe,0x61,0x13,0x03, +0xca,0xf3,0x94,0xf7,0x29,0x5f,0x39,0xbc,0x9a,0x02,0xbb,0x05, +0xa7,0xf3,0x4f,0x17,0x14,0x2d,0x6a,0x27,0x2c,0xed,0x23,0x82, +0xce,0x7b,0xc5,0xcf,0x91,0xb7,0x8d,0x9d,0xa5,0x86,0xb5,0x63, +0x99,0x7d,0x99,0x4b,0x9e,0x83,0x13,0x5b,0xe2,0x57,0xe9,0x5e, +0xea,0x2e,0xf0,0x50,0x11,0xee,0xf0,0xc9,0x37,0x64,0xe1,0xeb, +0x1b,0xf0,0xce,0xab,0x3e,0x90,0x61,0xea,0xf0,0xf2,0xdb,0xb0, +0xb6,0x1d,0xaf,0xbd,0xa4,0x8d,0x05,0x56,0x74,0x62,0x6a,0x62, +0xea,0xb9,0x34,0x93,0x7c,0xd6,0xfc,0x80,0xaa,0xde,0x76,0xd3, +0x52,0x4b,0xb6,0xb7,0xac,0xad,0xb2,0xae,0x8e,0x11,0x67,0xfa, +0x20,0xe3,0x4e,0xc7,0x1e,0xb7,0x01,0x43,0x21,0x5b,0xa9,0x52, +0xab,0xd7,0x66,0xac,0x67,0xab,0xea,0xac,0xe8,0x59,0x62,0xc8, +0xde,0x2e,0xbd,0x5c,0x33,0xd0,0xd0,0x6f,0x74,0xc9,0xe2,0xa1, +0x65,0x71,0x17,0xbb,0xbb,0x4e,0xa3,0xc1,0xa8,0xe9,0xc6,0xc5, +0xee,0x9b,0x65,0xf7,0x98,0x26,0x6e,0xa9,0x01,0x3c,0xa0,0x85, +0x2a,0x16,0x5a,0x9a,0x86,0x8c,0x19,0x7e,0x82,0xea,0x6a,0x9a, +0xfa,0x4a,0xda,0x0d,0x4b,0x58,0x4f,0x53,0x1b,0x13,0x6b,0x6b, +0x06,0x2e,0xaf,0x94,0xe0,0xc0,0x4a,0x0d,0xbc,0x72,0x1a,0x07, +0x0e,0xf3,0x47,0xff,0x10,0x1c,0x20,0xc0,0x19,0x3d,0xf6,0xf7, +0xd6,0xc6,0x17,0xfc,0x8e,0x77,0x23,0x10,0x41,0x70,0x60,0x95, +0x04,0x07,0x54,0x24,0x38,0xd0,0x8d,0x3f,0xe8,0xd0,0xbc,0xc4, +0x60,0xdb,0xa7,0xc8,0xa7,0xc1,0xbd,0xda,0xa3,0xcc,0x98,0xd0, +0x03,0xe7,0x62,0xc7,0x3c,0x1b,0x92,0x67,0x7d,0x93,0x11,0xc8, +0xb0,0x5c,0xb3,0x5c,0x2f,0xcf,0xc5,0x8c,0x1d,0xf2,0x1c,0x76, +0x6b,0x77,0x61,0x6e,0xe2,0x6f,0x10,0x38,0xbc,0x1e,0x01,0x3a, +0x1e,0x36,0x30,0xb0,0xc8,0x94,0x52,0x8a,0x52,0x0b,0x37,0x93, +0x33,0x08,0xf5,0xf7,0x3b,0xf2,0xc9,0x5a,0x2a,0x55,0x9f,0x7f, +0x94,0xa3,0xac,0x6a,0x3c,0x5d,0x3e,0x65,0x50,0x74,0x15,0xe8, +0x45,0x03,0x9c,0xb3,0x00,0xdc,0xe9,0x48,0xfc,0xa9,0xd1,0x0a, +0x6c,0xb0,0x9e,0xf9,0x3b,0x74,0x21,0xa1,0x96,0x8b,0xad,0xc0, +0xa2,0xce,0x9e,0xed,0x6f,0xad,0xef,0xcd,0xef,0x65,0xc4,0x11, +0xd8,0x9c,0xf0,0x13,0xe1,0x88,0xd3,0xa8,0xa9,0x3f,0x5b,0xa6, +0x56,0xa8,0x46,0xf8,0xc9,0xd4,0xa7,0xc0,0x22,0xe3,0x52,0x95, +0x52,0x8d,0x3c,0x77,0x33,0x76,0xd8,0x6b,0xc8,0xa3,0xcf,0x95, +0x69,0xf6,0x43,0x47,0x74,0x77,0x1b,0xef,0xb5,0x2e,0x37,0x66, +0x6f,0x36,0x3d,0x1e,0xea,0xed,0x62,0xc4,0xf3,0x71,0xd2,0xbf, +0xe2,0xa5,0xe0,0x09,0xaa,0xb4,0xaf,0xb4,0x2d,0x31,0x21,0x78, +0xe9,0xde,0xe6,0xd4,0x60,0x5f,0xcd,0x4c,0x1a,0x61,0xe1,0xff, +0x53,0xbc,0x1c,0xfb,0x13,0xc3,0xf8,0x6a,0x80,0xe7,0x70,0xff, +0x33,0x86,0x21,0x9e,0x6f,0x88,0xce,0x77,0xf4,0xf6,0x36,0x0f, +0x58,0xd6,0xb2,0x36,0x7a,0xc6,0x86,0xda,0xe6,0xae,0xbd,0x01, +0x83,0xe1,0x23,0x0c,0xd8,0x89,0x3f,0xc6,0xc6,0xaf,0xb4,0x96, +0x63,0x8d,0x29,0x0f,0x4a,0x18,0xe5,0x11,0xe9,0x16,0x95,0xac, +0xcd,0xc2,0xfc,0x82,0x17,0xf9,0xf0,0x6e,0x55,0x44,0x3f,0x7b, +0xc8,0x4f,0x23,0x48,0x25,0x84,0x81,0xc7,0xf0,0x17,0x3a,0x0f, +0xaf,0x7f,0x80,0x37,0xc2,0x21,0x4c,0x57,0x77,0xb2,0x7b,0x3b, +0x74,0x7a,0xac,0x07,0x18,0x6e,0xd7,0xe4,0xe2,0xff,0x1e,0x6b, +0x99,0x74,0x87,0x4f,0x10,0x9e,0x85,0xbf,0x21,0x6c,0x15,0xbe, +0xe1,0xe7,0x67,0x28,0xf2,0x9e,0xa2,0xe7,0x4e,0xea,0x4f,0x3a, +0x23,0xa0,0xb4,0xc8,0xbf,0x1d,0x74,0xc5,0xb1,0xfd,0xf4,0xd4, +0x66,0xee,0x3d,0x14,0xf9,0x2d,0x2c,0x19,0xc0,0x4b,0xa4,0xb6, +0x6e,0xd6,0x81,0xd5,0xd3,0xf4,0x70,0xcb,0xf2,0x6a,0x01,0x7b, +0xeb,0x79,0xe3,0x0f,0x33,0xf4,0x70,0xf1,0x34,0x06,0x3c,0xe5, +0x6d,0x5d,0x07,0xbb,0xa5,0x04,0x53,0xf6,0x9e,0x78,0x0f,0xb9, +0x2f,0xaf,0x9d,0xde,0xfc,0x7d,0x15,0x8c,0x15,0x4b,0xee,0x2b, +0x5a,0xc2,0xe2,0xbc,0x66,0xee,0x2b,0x5f,0x82,0x49,0xdb,0x30, +0x8b,0x44,0x67,0xe3,0xce,0x24,0x44,0x7c,0x87,0x67,0xb1,0xe5, +0x95,0x95,0x76,0x75,0x0d,0x45,0xb5,0x99,0x95,0xb2,0xb1,0x09, +0xfc,0x0f,0x7f,0xc5,0x1f,0xb3,0xf5,0x0d,0x2b,0xe0,0xbd,0xd0, +0xd4,0xb0,0xaf,0x43,0xc3,0x48,0x1d,0x8a,0x8e,0x95,0x49,0xad, +0x4a,0x68,0x3a,0xbf,0xa8,0x59,0xdb,0x82,0x5e,0x15,0x6c,0xb8, +0x6f,0xbb,0xdc,0xbe,0x27,0xa1,0x69,0x33,0xbf,0x3d,0x23,0x93, +0x5a,0x91,0xd0,0x3a,0xbc,0xa8,0x5d,0xdb,0x84,0x5e,0xec,0x2f, +0xf8,0x6a,0x8d,0x5c,0xad,0x69,0x5b,0x4b,0x55,0x47,0x56,0xb5, +0xec,0x6f,0xf8,0x63,0xb4,0x0e,0x07,0xe8,0x41,0x00,0x16,0x0e, +0x81,0x50,0xb2,0x6d,0xf8,0xd3,0x19,0xf4,0x93,0x12,0xe3,0x08, +0x36,0xea,0x39,0x2c,0x1d,0xc0,0x4b,0xa5,0x96,0x7f,0xa5,0x03, +0x4b,0x78,0xcb,0x75,0x79,0xf4,0x23,0xa3,0x7c,0xfd,0xc7,0xfa, +0x1f,0x24,0xa5,0x66,0xcb,0x20,0x8f,0x7e,0x67,0xbe,0x26,0xa3, +0x7c,0x07,0x6f,0xad,0x6d,0x90,0x11,0x9f,0x86,0x21,0x54,0x35, +0x04,0x02,0x7c,0x14,0x66,0x6b,0xe2,0xd9,0xd8,0x15,0x0b,0x06, +0x1d,0x69,0xbc,0x8c,0xf0,0xe5,0x10,0x09,0x7a,0x35,0xf3,0xe8, +0x55,0x44,0x6a,0x0c,0x83,0x8f,0x92,0xe2,0x17,0x3c,0xee,0x43, +0x6a,0x0b,0x41,0xaf,0x1c,0x82,0x5e,0xe9,0x8a,0xcc,0xe4,0xd9, +0x78,0xc4,0x2d,0x82,0xf7,0x09,0xe1,0xbe,0x86,0x1b,0x11,0xd7, +0xae,0x03,0x91,0xf8,0x36,0x46,0x54,0x9a,0x9e,0x0c,0xcc,0xa6, +0x5a,0x33,0x49,0xb1,0x82,0x2b,0x10,0x4b,0xe3,0x1d,0xbb,0x51, +0x93,0x42,0xed,0xda,0xb2,0xcd,0xbd,0xf9,0xac,0xdb,0xf7,0xd6, +0xdf,0x59,0x10,0xd7,0x3e,0x8b,0x42,0x6e,0x1b,0xad,0xb7,0x6b, +0x2b,0xb7,0xda,0xb0,0xc3,0x37,0xda,0x5e,0x96,0x3c,0x26,0xd1, +0x1b,0x2f,0xad,0x9c,0x92,0x2d,0x4f,0x24,0x60,0xbe,0x44,0x17, +0x3e,0x21,0x95,0xf3,0x5d,0x01,0x9e,0xb3,0x7b,0x19,0x31,0xe7, +0xea,0xb3,0x9a,0x1f,0xe2,0xbf,0x25,0xe6,0x6c,0x9a,0x01,0xf3, +0x48,0xb9,0x6f,0xfe,0x58,0xf7,0xa1,0x0d,0x4e,0xa0,0xef,0x41, +0xb0,0x61,0xf0,0x7b,0x58,0xda,0x87,0x97,0xfe,0xa4,0xbd,0x12, +0x0b,0xc8,0xcb,0x6a,0xbd,0xe7,0x1b,0x68,0xbc,0x0b,0x04,0xe8, +0xe8,0x3e,0xbf,0x9d,0xbe,0x2a,0xcd,0x3e,0x6c,0xde,0x58,0xbe, +0xc4,0x3a,0x6f,0x1e,0x9b,0xc7,0xfd,0xee,0xfa,0x5f,0x94,0x54, +0xce,0x9c,0xdd,0xa4,0x8c,0x8b,0x77,0x97,0x20,0x5b,0xfc,0xbe, +0xe6,0xc6,0xfd,0x0a,0x45,0x7a,0x6c,0x79,0x59,0x41,0x69,0x4e, +0x29,0xc3,0xad,0x18,0x12,0x87,0xd0,0x79,0x8d,0x79,0xed,0xd9, +0xbd,0x0c,0x68,0x70,0xfd,0xc8,0x36,0xe2,0x5c,0xad,0x3c,0xb8, +0xd2,0xf7,0x5b,0xef,0x0c,0x8c,0x8e,0x38,0xb4,0xb0,0xda,0x7a, +0x2a,0x26,0xca,0x36,0x0c,0x84,0x68,0xe2,0x4c,0xda,0x39,0xd8, +0x89,0x88,0xbd,0x4c,0x5d,0xb6,0x28,0xa9,0x38,0xb9,0x38,0x85, +0xc1,0x02,0xfa,0x60,0xbe,0xcf,0x84,0x1c,0x11,0xcb,0xed,0x19, +0x19,0xed,0xf2,0xf0,0x25,0x7f,0x96,0x2e,0x56,0x20,0x43,0xda, +0x29,0x9e,0x8d,0xa4,0x16,0xf0,0x5a,0xe7,0x3e,0xcc,0xeb,0xc7, +0xf3,0xa4,0x3e,0x58,0xad,0x0b,0x8b,0xf9,0x82,0xa6,0x3b,0x5d, +0xd0,0xae,0x13,0xf6,0x30,0x53,0xd0,0x56,0x50,0x09,0x12,0xf6, +0xf0,0x90,0x67,0x0f,0x32,0xe2,0xcb,0x39,0xa8,0x07,0x67,0xdf, +0xa6,0xab,0x4f,0xa7,0xa6,0xd5,0x2c,0x02,0x45,0x90,0xa7,0x7d, +0xac,0x5c,0x2c,0xad,0x6d,0x9b,0x5d,0xd8,0xce,0xf6,0xc6,0xa1, +0xc2,0x21,0xa6,0x1e,0x6b,0xd0,0x61,0x09,0xa1,0x09,0xc7,0x12, +0xc6,0xcb,0x2f,0x34,0x36,0x34,0x31,0x0d,0x9c,0x8e,0x21,0x00, +0xed,0xe0,0x61,0xe2,0x29,0xf0,0x36,0xcf,0x33,0xcb,0x73,0x4c, +0x73,0xb3,0x66,0x5b,0x02,0xba,0xbc,0xda,0x3c,0x19,0x7c,0xd6, +0x08,0x4e,0x53,0xc6,0x3a,0x3b,0x4c,0xf0,0x3c,0x63,0xfe,0x18, +0xc7,0xd5,0x17,0xee,0xf5,0xe6,0xdf,0x27,0x20,0xb4,0x0f,0xcf, +0xa5,0xd2,0x8c,0x64,0xfa,0x77,0xe3,0x63,0x02,0xb0,0xa2,0x6c, +0x15,0xf7,0x6a,0xe3,0xcd,0xea,0xc5,0x04,0xcf,0xf7,0x8c,0xdf, +0x1e,0xc9,0xe5,0x71,0xaa,0x72,0x18,0x2a,0x13,0xa8,0xac,0xaf, +0x26,0x34,0x60,0xcd,0xfe,0xe2,0x5e,0x16,0x7f,0x3a,0xba,0x6f, +0xc0,0xf6,0x1a,0xc3,0x51,0xe2,0x0b,0xd3,0x21,0xf6,0x56,0x81, +0x0c,0x91,0x84,0x98,0xef,0x9b,0x10,0x23,0x05,0x72,0xee,0x3f, +0x74,0xe1,0x07,0xb4,0x4e,0x3c,0xeb,0x4e,0xf7,0xae,0x07,0xda, +0xdb,0x70,0xe6,0x03,0x9d,0x6d,0x7b,0x0c,0x6e,0x71,0xb3,0x96, +0xeb,0x77,0x73,0xb3,0x07,0x07,0xc5,0x82,0x01,0x4e,0x00,0x22, +0xa0,0xa9,0x93,0xbb,0xdc,0xcd,0x0e,0x5a,0x57,0x5a,0xb2,0xf7, +0x3a,0x6a,0x86,0x44,0xbf,0x30,0x37,0xf0,0x07,0x94,0x65,0x66, +0x70,0x93,0xdc,0x8f,0x54,0x79,0x7a,0x4a,0xb9,0xfc,0x35,0xda, +0x34,0x59,0x66,0xc7,0x1e,0x3a,0x20,0x32,0x2e,0x4b,0xfe,0x37, +0xd8,0x41,0x4f,0xc5,0x8b,0x3b,0x79,0xd6,0xb3,0x42,0x97,0x38, +0x89,0x78,0x57,0x1f,0xcf,0xd9,0xc5,0x7b,0x77,0xe2,0xc7,0xda, +0x3f,0x70,0x33,0x3e,0xc2,0xee,0xf1,0xde,0xdd,0x01,0xbb,0x25, +0x29,0xc7,0xe7,0x2c,0xcf,0x7a,0x16,0xf6,0xe3,0x85,0x84,0xf5, +0x3c,0xd6,0x27,0xf1,0xe4,0xb3,0xd3,0x57,0x95,0x98,0x92,0x27, +0x61,0x64,0x0c,0x91,0xdf,0x66,0x12,0x26,0xe6,0x2f,0x35,0x25, +0x97,0x37,0x65,0x52,0xf5,0x1a,0xc2,0x99,0x8f,0x20,0x93,0xc2, +0x9f,0xcd,0xd9,0x42,0xde,0xd1,0x44,0x96,0x7f,0x8a,0xd6,0xe3, +0xcc,0x27,0x04,0xd2,0x54,0xc9,0xcd,0x64,0x63,0x87,0x09,0x6c, +0x05,0x4b,0xf0,0xfa,0x86,0x5e,0x56,0xe9,0x86,0xc1,0x03,0x87, +0x27,0x3d,0xcd,0x7d,0x17,0x6a,0xc7,0xcc,0x2b,0x59,0x27,0x75, +0x0b,0x23,0x2b,0x7b,0xdf,0x4b,0xc7,0xc6,0x23,0xaf,0x31,0xb0, +0xb0,0x62,0x00,0xb6,0xe0,0x98,0x1f,0x34,0xd7,0x12,0x5a,0xb1, +0xa5,0xcf,0x19,0x96,0x52,0xa6,0x82,0xdd,0x82,0xd5,0x4e,0x84, +0x8c,0x74,0x66,0x77,0x15,0xb4,0x96,0xa7,0xfb,0xa6,0x79,0xa7, +0x7a,0xeb,0x98,0xee,0x34,0xd9,0xec,0x96,0x6b,0xc0,0xde,0x2b, +0xfb,0xae,0xb3,0xbf,0x23,0xc5,0x23,0xc9,0xfd,0xac,0xdb,0x7e, +0x45,0x4c,0xa9,0xe2,0xbf,0x9a,0xf1,0xa3,0xc9,0xb4,0x02,0x3d, +0x7a,0xe5,0x12,0x13,0xe7,0x1e,0xeb,0xe1,0xb1,0x48,0xc1,0xcf, +0x43,0x4d,0x6e,0x2f,0xbf,0x0d,0xff,0x35,0xea,0x59,0x75,0xe7, +0x6b,0x58,0xa8,0x03,0x2b,0xf6,0xc0,0x2c,0xf9,0x92,0xfc,0x82, +0xa2,0xec,0x12,0x86,0xfb,0x98,0x54,0xc1,0x37,0xb0,0xf3,0x02, +0x98,0x7e,0xcc,0xbc,0x95,0xa7,0xc1,0x92,0x3c,0xdd,0xb3,0xac, +0x52,0x92,0xa7,0x52,0x2f,0xbe,0x95,0xa7,0xd7,0xf0,0xd6,0x9a, +0x06,0x19,0x17,0xf1,0xd3,0x7f,0x4d,0x40,0xaf,0xb7,0x13,0x30, +0x8b,0x38,0x8c,0x24,0xe0,0x64,0xda,0x10,0xe2,0x76,0x7e,0x2f, +0xde,0x49,0x14,0x5b,0x19,0xc1,0xbb,0x28,0x69,0x72,0x44,0xf0, +0x55,0x4d,0x9a,0x1c,0xba,0xe4,0xc2,0xac,0x2e,0xc9,0xa5,0xa3, +0xf8,0x5d,0x63,0x3c,0xe7,0xc0,0xb2,0x0a,0x03,0x76,0xec,0x69, +0xc5,0xd3,0xf8,0x87,0xe4,0xc2,0xeb,0xfa,0x7f,0xbf,0xf0,0x55, +0xbc,0xab,0xa6,0x5e,0x46,0xec,0x30,0x29,0x8f,0x74,0x77,0xe0, +0x7d,0xf7,0xf4,0x76,0xe0,0x35,0x06,0xb0,0x46,0xb1,0x6f,0x02, +0xf6,0x29,0xf6,0x4f,0xc0,0xd2,0x6e,0xbc,0x94,0xe2,0x4e,0x97, +0xa3,0x63,0x7b,0x03,0x76,0xfa,0xf3,0xf7,0x95,0x73,0x31,0xf7, +0x51,0x2a,0xb9,0x2f,0x3b,0x6c,0x81,0x8e,0x4d,0x04,0xdc,0x0d, +0xbc,0x68,0xea,0xc7,0x66,0x1e,0xc9,0xda,0x9d,0xa2,0xc8,0x40, +0x37,0xfe,0x2b,0xc2,0x21,0xe1,0x98,0xd6,0x24,0x5a,0xba,0xd3, +0x59,0xe6,0x02,0x2c,0x4a,0x82,0x05,0xfc,0x01,0xa5,0x8c,0x38, +0xa6,0x8b,0xeb,0xa1,0x61,0xdb,0xd4,0x5a,0x04,0xa6,0xf0,0x11, +0x56,0xe9,0x06,0x15,0x98,0x87,0x17,0x28,0xd0,0xc9,0xfa,0x32, +0x17,0xa9,0xda,0xb4,0xa4,0x46,0x79,0xb1,0x1b,0xb7,0x91,0xab, +0xa3,0x41,0x59,0xfc,0x05,0xc2,0x1f,0x3d,0x27,0xb7,0xdf,0xcd, +0xaf,0x71,0x99,0xb7,0x9a,0xc6,0x7d,0x26,0x08,0x3e,0x5a,0x8e, +0x3f,0xa2,0xe0,0xe0,0x2b,0x04,0xf3,0x96,0x13,0xad,0x3c,0xf7, +0x1f,0xea,0x93,0x0e,0xa8,0x9b,0x63,0xc7,0x0f,0x1e,0xe4,0x3e, +0x22,0xd4,0x17,0xf7,0x05,0xe2,0x75,0x6a,0xe4,0xca,0xdd,0xa6, +0x32,0x57,0x61,0x65,0x16,0xec,0x83,0xd1,0x45,0x24,0x9e,0x21, +0x74,0x07,0x1a,0xd4,0xd7,0xc6,0x8b,0x4d,0x61,0x31,0xf6,0xec, +0x05,0x4f,0x58,0xd8,0x46,0x83,0x2b,0x4e,0x44,0x60,0x0f,0x8a, +0x6d,0x58,0x91,0xff,0xa5,0xac,0x29,0xa1,0xfc,0xf6,0x34,0x67, +0x78,0x14,0x35,0xf6,0x26,0x5f,0x18,0x5f,0x64,0x40,0x1d,0x89, +0x30,0xb3,0x32,0x95,0x23,0xbc,0x61,0x13,0x32,0xc4,0xab,0xba, +0xa8,0xfb,0xae,0xa8,0xba,0x31,0xfd,0xe2,0xb5,0x45,0x46,0x94, +0x72,0x88,0x91,0x93,0x93,0x1c,0xfc,0xaf,0x13,0xa8,0x28,0x31, +0x89,0x3f,0xf5,0xd1,0x26,0x55,0x46,0xe0,0x4a,0x87,0x46,0x89, +0x92,0xe5,0x7f,0x32,0xc4,0xef,0xd2,0x4e,0xe9,0x47,0x6b,0xe4, +0xbe,0xc5,0x21,0xa8,0x93,0x9b,0x05,0xcb,0xb4,0xf1,0x32,0xfc, +0xc0,0x08,0xea,0x68,0x6b,0xed,0xf5,0x46,0x58,0x5d,0xbd,0x80, +0x04,0x98,0xd2,0x30,0xc8,0x5e,0xcc,0xfe,0x91,0x80,0xc1,0xc9, +0x41,0x38,0x19,0x4f,0x65,0x7f,0x05,0x4b,0x54,0xe1,0xb0,0x3a, +0x2f,0x4a,0x75,0x2e,0xac,0xee,0xb2,0xec,0x67,0x60,0x39,0xe8, +0x21,0x5f,0x3b,0x17,0x27,0x47,0xd7,0x0e,0x17,0xb6,0xb2,0xa2, +0xa2,0x2e,0xaf,0x96,0xe1,0x96,0xed,0x42,0xde,0xd5,0x2e,0x55, +0xce,0x65,0x26,0x84,0x8b,0xba,0x96,0xdb,0xe6,0x39,0x91,0xf2, +0xd0,0x31,0x53,0xf6,0xc2,0x8e,0x4b,0x48,0xff,0xe7,0xfd,0xf8, +0x73,0x69,0xd9,0x5b,0x49,0xb2,0x78,0x5a,0x61,0xed,0x92,0x2a, +0xac,0x99,0x2c,0x7e,0x53,0xf6,0x24,0x59,0x2c,0x03,0x8e,0x62, +0x73,0x74,0x09,0x0e,0x1c,0xee,0xbd,0x04,0x8b,0xbb,0xf0,0xe2, +0x9b,0xfa,0xfb,0xf0,0x81,0x9b,0xba,0xfb,0xf0,0x87,0x86,0xf0, +0xe1,0x61,0x1a,0x0b,0x60,0x29,0xc1,0x26,0x5f,0x29,0x36,0xe5, +0x8d,0x15,0x4a,0xe2,0x33,0x50,0x42,0xde,0x7f,0xc7,0x26,0x69, +0x42,0xdf,0xe5,0x96,0xa2,0x5e,0x7c,0xf6,0x36,0xd8,0xc0,0x43, +0xce,0x02,0x3f,0x04,0xc1,0x6e,0x1c,0xad,0x0f,0x21,0xb4,0x87, +0xea,0x56,0x43,0xbc,0xd1,0x84,0x7f,0x72,0x5e,0x63,0xe4,0xfb, +0x0b,0x49,0x3f,0x30,0x09,0x54,0xd2,0xda,0x47,0x7a,0xa0,0xa8, +0x9c,0x37,0xc0,0xe2,0xd5,0xdd,0x3b,0xdb,0x85,0xe7,0x19,0x90, +0x83,0xdb,0x08,0xbf,0xf8,0x16,0x5e,0xf0,0x88,0xb0,0x1e,0xbf, +0x20,0x38,0x00,0x3f,0x88,0x93,0xd1,0xbd,0x8e,0xca,0xda,0x84, +0x6e,0xe2,0xb2,0x25,0x9d,0xbf,0x50,0x71,0xa2,0xd3,0xa2,0x93, +0x72,0xf0,0x97,0x75,0x25,0xd5,0x78,0xce,0xb7,0x61,0xe7,0x4e, +0x9c,0x3c,0x71,0x42,0x36,0xf4,0x98,0x4c,0x54,0x03,0xac,0x68, +0xc4,0x2b,0xe0,0x63,0x23,0xfc,0x31,0x5e,0x62,0x05,0x73,0xa9, +0x00,0x47,0x2b,0x2b,0x05,0xc2,0xb5,0xe7,0x81,0x2e,0x0a,0x29, +0xf1,0xa9,0x0d,0xcc,0xb3,0xf5,0x65,0x33,0x7d,0xf2,0xec,0xd3, +0x3c,0x18,0x70,0x84,0x77,0x50,0xb0,0x87,0x97,0xa3,0x8f,0x77, +0x2d,0x31,0x20,0xaf,0xb8,0x26,0x9d,0x14,0xb3,0xeb,0xfb,0xd0, +0x49,0xe7,0x48,0xb3,0x08,0x73,0x06,0x8c,0xa9,0x98,0xa0,0x98, +0xd0,0xe8,0x10,0x26,0x28,0x2a,0x3c,0xc6,0xed,0x93,0x55,0x54, +0xb2,0x95,0xcc,0x4b,0xaa,0xa9,0x30,0xb5,0x21,0x51,0x3e,0xa1, +0xf4,0x4c,0xd1,0x99,0x2a,0x52,0xbb,0xa8,0xf8,0x46,0x19,0x38, +0x02,0x1f,0xe2,0x10,0x2b,0x50,0xb3,0xa6,0xc4,0x7a,0x0b,0x4e, +0xda,0x47,0x5a,0x9d,0x20,0x1f,0xb7,0xa0,0x62,0x02,0x63,0xc2, +0x24,0x1f,0x3f,0x1e,0xe3,0xfe,0xc9,0x52,0xfe,0xe3,0x7f,0xa7, +0x9a,0x8a,0x92,0x9b,0xce,0xc9,0xc7,0x97,0xc6,0x16,0xf2,0x1f, +0x37,0xa5,0x62,0x53,0xcf,0xa4,0x9e,0x49,0x23,0x75,0x93,0xfc, +0x89,0x70,0x2b,0xd0,0xb1,0xa6,0xa6,0x2e,0xe3,0x61,0xf4,0x8f, +0x0f,0x9a,0xff,0xf9,0x01,0xf5,0x13,0x76,0x40,0x93,0x87,0x00, +0x4d,0x1d,0xa2,0xfa,0x37,0xa3,0x16,0xf1,0x0d,0x73,0x7a,0x0a, +0x71,0x0b,0x10,0xa4,0x40,0x10,0xed,0x63,0x7e,0xc4,0x1b,0x33, +0x92,0x63,0x3a,0xe5,0xd3,0x1f,0xb4,0xe6,0x8c,0x31,0x40,0x59, +0x52,0x8e,0x19,0xa1,0x2d,0x72,0xb0,0x8b,0xaa,0x4c,0x4a,0x2a, +0x93,0xcf,0xa3,0x8d,0x93,0x65,0x6c,0xf1,0x32,0xda,0x3f,0x2a, +0x36,0x45,0xbe,0x1a,0x44,0xd8,0x1a,0x2b,0xd2,0x99,0x66,0x32, +0xb0,0x9c,0xea,0x4d,0xcb,0xec,0x94,0x87,0x80,0xa9,0x31,0x3c, +0x40,0x83,0x1e,0xc8,0x23,0x2b,0x50,0xdf,0x32,0xf8,0x08,0x4c, +0x1a,0x89,0xcb,0x15,0x78,0xf5,0xfb,0x02,0x23,0xfe,0x79,0xdd, +0xa3,0x78,0xb6,0x09,0x9e,0x73,0x70,0x59,0x85,0x80,0xbd,0xf0, +0xb4,0xec,0x89,0x04,0x48,0xd6,0xf6,0xff,0x2e,0x1b,0x6f,0xe1, +0x23,0x35,0x75,0x7b,0xe0,0x70,0x14,0x21,0xd8,0x44,0xa3,0x87, +0x85,0xcb,0x90,0x20,0xfc,0xb0,0x0f,0x7f,0x48,0xc6,0x10,0x26, +0xf1,0x25,0xd4,0x8a,0x37,0x4e,0x80,0x11,0x4e,0x19,0x20,0x77, +0xed,0xa0,0x88,0x15,0xcc,0x40,0x21,0xa3,0x0f,0x56,0xe1,0xac, +0x8b,0x10,0xd1,0xc9,0x65,0x19,0x81,0xdf,0x11,0x1c,0x87,0x57, +0xf5,0x05,0xd1,0xf8,0x63,0x48,0x46,0x61,0xfb,0x02,0x76,0x04, +0xa8,0x34,0xfb,0xb2,0x59,0x04,0x6f,0x52,0xbe,0x61,0xb0,0x25, +0xb6,0x44,0xa1,0x04,0x6f,0x82,0x2e,0x9a,0xf9,0xb1,0x19,0x47, +0x32,0x79,0xbc,0x11,0x07,0xe1,0x05,0xa8,0x05,0x6f,0x34,0xa7, +0xc5,0x76,0x0b,0x5a,0xb0,0x82,0x39,0x0d,0x81,0xfb,0x11,0x77, +0xdb,0x18,0xe2,0xa8,0xe3,0x3e,0x61,0x3e,0x7c,0x5f,0xce,0x10, +0xf7,0xf6,0x43,0xdc,0x4f,0x38,0xa2,0x1b,0x22,0x5e,0x49,0x5e, +0xe1,0x03,0xac,0xa3,0x48,0xa5,0x18,0xca,0x0c,0x50,0x0d,0xe9, +0xe9,0x0d,0xf2,0x70,0x14,0x57,0xd0,0xc9,0x79,0x49,0x79,0x89, +0x79,0x0c,0xe4,0xf3,0x8f,0x58,0xc3,0x2b,0x02,0xa9,0x11,0xc4, +0x0e,0x9e,0x6f,0xfc,0x0c,0x32,0x7d,0x58,0x06,0x7e,0xd0,0xc3, +0x3f,0xe0,0xf9,0x7a,0xf0,0x01,0x81,0xd4,0xd9,0xa6,0xf8,0xdd, +0x83,0x2b,0x78,0x4f,0x7c,0x5f,0xf6,0x34,0xfe,0x01,0xf1,0xc4, +0xea,0x3e,0xf1,0xc7,0xd3,0xdd,0x8a,0x8b,0x78,0x7b,0x75,0x9d, +0x4c,0x83,0xf8,0x53,0x84,0xcf,0xc6,0x60,0x93,0x43,0x78,0xbb, +0x5c,0xa7,0x9d,0xcc,0x35,0x50,0x8f,0x03,0x13,0x28,0x5f,0x04, +0xbb,0xc4,0xd9,0xdd,0xdc,0x37,0xf4,0x1e,0x3f,0x62,0x63,0xe0, +0xce,0x00,0x95,0x26,0x5f,0x36,0xfb,0x62,0xce,0xa3,0x14,0x42, +0xfc,0xcc,0x49,0x11,0x09,0x1d,0x0f,0xbc,0x1b,0x34,0x46,0xa4, +0x14,0xb1,0x71,0x4f,0x32,0xb1,0xd1,0x0f,0xe6,0x23,0xfc,0xbe, +0x29,0xbc,0x6f,0xda,0xd5,0x06,0x4b,0x4d,0x3b,0xda,0xe0,0x83, +0x36,0xfc,0x41,0x9f,0xb1,0x1e,0x5e,0xda,0x67,0x48,0xc1,0x7d, +0xee,0x08,0x82,0x74,0x6e,0x3d,0x4e,0x87,0x43,0xea,0xd8,0x1e, +0xf7,0xf6,0x42,0x02,0xac,0x5f,0x49,0x5b,0x45,0x59,0x9d,0x74, +0x88,0x89,0x37,0x66,0xbf,0x49,0xf8,0x39,0xe5,0x4e,0x46,0x5c, +0xa0,0x28,0x28,0xf6,0x68,0x7d,0x2a,0x1b,0x51,0x17,0x70,0xe1, +0x68,0xb5,0x4d,0x28,0x1b,0x77,0x34,0x3e,0x28,0x3e,0xc0,0x33, +0xca,0x23,0xda,0x23,0x9a,0xf9,0x01,0x76,0x62,0x23,0x3c,0x8f, +0xe6,0x1f,0x70,0x9f,0x43,0xd5,0xa5,0x66,0xd4,0xc9,0x43,0x18, +0x16,0x9e,0xa7,0x8d,0x61,0x2d,0xc2,0xf3,0xc7,0x60,0x3e,0xd5, +0xa1,0x82,0xc6,0x60,0x91,0x0a,0x8d,0x47,0xad,0x10,0xcc,0x57, +0xc6,0xf3,0x29,0x50,0xba,0x8c,0x60,0x91,0x32,0x5e,0x44,0xcd, +0x9d,0x5c,0x2f,0x0e,0x46,0x70,0x1d,0x27,0x9a,0x80,0x35,0x2e, +0xa4,0xe1,0xaa,0x27,0x82,0x9f,0x71,0x98,0x09,0xa8,0xe1,0x6e, +0x7a,0xaa,0xbf,0x1e,0xfd,0xd7,0xa3,0xae,0xf3,0x67,0x7f,0xe1, +0xb7,0xc9,0x58,0xdd,0xa0,0xf2,0x62,0x57,0x75,0x1f,0xbb,0xe4, +0xa1,0xdd,0x98,0xff,0xf7,0x0c,0xd6,0x17,0xc0,0xdf,0xa8,0x00, +0x15,0x53,0xed,0xaf,0xf6,0x31,0x93,0xd9,0x60,0x89,0x9c,0x6c, +0xcd,0x9d,0x0c,0x3c,0x8a,0xac,0xd9,0xee,0x92,0xce,0xda,0xaa, +0x26,0x06,0xb7,0x97,0x22,0x47,0x1b,0x53,0x5b,0x03,0xf7,0x12, +0x1b,0xb6,0xbb,0xac,0xa7,0x81,0xfc,0x0c,0x36,0x4e,0x19,0xa3, +0xc7,0xa0,0xd6,0x8a,0xd5,0xee,0x4b,0x5e,0xef,0x81,0x75,0x3b, +0x36,0xa5,0xd3,0x0a,0x52,0x4b,0x93,0x8a,0x8d,0x53,0xc9,0x67, +0x3b,0xea,0xab,0x1a,0x5d,0xab,0x58,0x1b,0x0b,0x7d,0x6b,0x81, +0x67,0xa1,0x25,0x9b,0x1c,0x1f,0xee,0x76,0xcc,0xd5,0xdf,0x49, +0x16,0x6f,0xa4,0x52,0x8a,0x92,0x8b,0x93,0x4a,0x8d,0x53,0x58, +0x8f,0xbd,0x76,0xfb,0xb5,0x8e,0x30,0x79,0x18,0x81,0x9f,0x2e, +0xf6,0xc3,0x7b,0x8c,0x60,0x15,0x2d,0x54,0xd2,0xd9,0xa1,0xb0, +0xbf,0xca,0x94,0xbd,0xff,0xa8,0xe5,0xfe,0xd9,0xeb,0x4c,0x3c, +0x1e,0xed,0x87,0x48,0x2a,0xfe,0xf4,0x99,0xb8,0x48,0x39,0x98, +0x83,0x3f,0xab,0xaf,0xc3,0xb3,0x61,0x61,0x68,0x6a,0x54,0x1c, +0xa1,0x3c,0xa1,0xc7,0x65,0xa2,0x2e,0x13,0xff,0xe4,0xb8,0x66, +0xe5,0x66,0xe4,0xa6,0xe7,0xca,0x72,0x7f,0xe9,0x6f,0x14,0x2b, +0x76,0xd2,0x5c,0xac,0xd8,0x18,0x9d,0xaf,0xeb,0x6f,0x6d,0xed, +0x75,0xaa,0x64,0xcd,0x8d,0xf4,0xcd,0x35,0x9c,0x99,0x5d,0x58, +0x0b,0x15,0x37,0x16,0x9d,0x4f,0x69,0x36,0xcf,0x61,0x43,0x2d, +0xbc,0xb4,0x3c,0x6d,0x18,0x1c,0x01,0x34,0xca,0xb3,0x2f,0xd6, +0x4c,0xb5,0x6c,0x2d,0x60,0x43,0x9a,0x3c,0x06,0x7d,0xea,0x79, +0x2d,0xe5,0x82,0xee,0xc1,0xf6,0x1d,0x34,0xde,0x8e,0x11,0xba, +0x0f,0xdb,0xb7,0xd3,0x66,0x73,0x36,0xe1,0xed,0x8f,0xe9,0xb9, +0xe2,0x0f,0x26,0x3f,0x40,0x9f,0x2f,0x83,0x25,0x20,0x0f,0x2b, +0x8c,0x97,0x6d,0x80,0x79,0xfa,0x78,0xde,0x96,0x5f,0x8c,0x08, +0xe8,0x7d,0x8a,0x97,0xac,0xf8,0x4d,0x80,0xd7,0xc1,0x14,0xac, +0xa3,0x21,0x96,0xdf,0x7b,0xfb,0x1a,0xf6,0x36,0x01,0x05,0x5c, +0x40,0xc3,0x90,0x90,0x1f,0x15,0x7f,0x13,0x38,0x48,0x46,0x45, +0x03,0x9a,0x91,0xb3,0x9d,0xa5,0xa3,0xa1,0x47,0xb1,0x0d,0xdb, +0x59,0xd2,0x5e,0x5b,0x49,0x5c,0x5d,0x5f,0x8a,0x9c,0x6d,0xcc, +0x6c,0x8d,0xdc,0x4a,0xc9,0xcf,0xca,0xbb,0x1a,0xc9,0xcf,0x60, +0xc5,0x94,0x01,0x71,0xb5,0x52,0x2b,0x56,0xba,0x2f,0x79,0xbd, +0x07,0xc6,0xed,0x58,0x8f,0x4e,0x2d,0x48,0x2d,0x4b,0x2c,0x36, +0x49,0x65,0x3b,0x8b,0x5b,0x1b,0xaa,0x1a,0xdc,0x2a,0x59,0x5b, +0x4b,0x03,0x6b,0x43,0xcf,0x22,0x2b,0x56,0x74,0x46,0x74,0x26, +0xf6,0x0c,0x71,0xb7,0x8b,0xbf,0x13,0x83,0xd7,0x10,0x77,0x27, +0x11,0x77,0x9b,0xa4,0xb0,0x6e,0xdb,0xed,0xf6,0xaa,0x2a,0x95, +0x99,0xb3,0x99,0xb9,0x19,0x39,0x69,0xb9,0x0c,0xf7,0x97,0xbe, +0x46,0xf1,0x56,0xe2,0xaa,0xd9,0x93,0x14,0xb2,0x34,0x16,0x98, +0x6b,0x3b,0x95,0x58,0xb0,0x23,0x75,0xbd,0xad,0xcd,0x3d,0x0c, +0x7e,0xc9,0x19,0xa3,0xc8,0x41,0x98,0xdf,0x89,0xe7,0x83,0xba, +0x2e,0x56,0xe7,0x1f,0x9b,0xdb,0x40,0x79,0x68,0xa9,0x1f,0xdc, +0xa1,0x56,0x69,0xc2,0x7e,0x37,0xd1,0x3b,0x11,0x7f,0x99,0x8c, +0xce,0xb9,0x7e,0x30,0xa0,0x12,0xce,0x7c,0x1d,0x17,0x25,0x47, +0x72,0xfb,0xfd,0xaa,0x26,0x4c,0xc3,0x9c,0xd0,0xa4,0x08,0xd1, +0xf1,0xe3,0xb2,0xfd,0x40,0xa1,0xe2,0xba,0xf2,0x91,0x94,0x3a, +0x53,0xe2,0x6f,0x3b,0x77,0x6d,0xfe,0x88,0xc3,0x8f,0xa3,0xd0, +0xd1,0x06,0xb7,0x01,0x9f,0x0a,0x4b,0x21,0x9b,0xe3,0x5a,0xa6, +0x97,0x62,0xc3,0x88,0x57,0x2d,0xb8,0x07,0x1b,0x89,0xb3,0x37, +0x4a,0x9c,0xbd,0x51,0xea,0xec,0x8d,0xbc,0xb3,0x17,0x89,0x45, +0x28,0xdd,0x3d,0xdd,0x29,0xd5,0x41,0x25,0xf2,0x70,0xe4,0xa1, +0xe8,0xf1,0x07,0xd7,0x81,0x3e,0x0f,0x8c,0xa0,0x84,0x75,0x3a, +0x6c,0x7d,0xc8,0x52,0xc5,0xbb,0xc8,0xb3,0x48,0x58,0xd8,0x3c, +0x5a,0x37,0x5e,0x7a,0x45,0xaf,0x80,0x15,0x1e,0x71,0x3c,0x6c, +0xa7,0x1b,0x90,0x11,0x90,0x11,0x98,0x66,0x6f,0xce,0x9e,0x37, +0x18,0xd1,0xee,0x57,0xf3,0x72,0xf4,0x72,0xf6,0x72,0xb3,0x88, +0xb1,0x38,0x65,0x71,0x2a,0x5e,0x9b,0xbd,0x7c,0xe6,0xaa,0xe8, +0xb2,0x88,0xe1,0x36,0x9e,0x17,0x6f,0xa3,0xbb,0x44,0x5d,0x71, +0x1d,0xf1,0x09,0xfe,0x09,0xfe,0xf1,0xfe,0x3d,0x39,0xac,0xd7, +0x35,0x97,0x5b,0x2e,0xc3,0x8c,0x58,0x9d,0xcb,0x45,0x58,0x8d, +0x32,0x0b,0x4b,0x69,0x91,0x9f,0xcc,0x54,0x99,0x2a,0xa4,0x77, +0x95,0xb8,0xdc,0x93,0x03,0x2d,0xaa,0x23,0x2b,0xa7,0x4b,0x1e, +0x8c,0x68,0x8d,0x5c,0x19,0x2e,0x2b,0x1b,0x55,0xec,0x29,0xde, +0x98,0xb3,0x79,0x20,0x8f,0xf5,0x7d,0xe0,0xfa,0xd8,0x81,0x60, +0xe5,0x04,0xee,0x43,0x9d,0xdf,0x15,0xbd,0xcc,0xfa,0x49,0x2f, +0x85,0x0d,0x5a,0x2f,0xdc,0x64,0xbc,0x95,0x50,0x84,0x27,0xe2, +0x18,0x94,0xe2,0x91,0xe2,0x9c,0xe4,0x6c,0x14,0x69,0x10,0x29, +0x38,0x79,0xe9,0xfe,0x38,0xc8,0x8c,0x00,0x6d,0x50,0xc2,0xba, +0xaa,0xda,0x1d,0xb6,0x51,0xf7,0x29,0xf0,0x2e,0xf4,0x2a,0x68, +0x3c,0x5f,0x3b,0x5e,0x72,0x49,0xbf,0x80,0xf5,0x52,0x75,0x3a, +0xe2,0xa0,0x17,0x94,0x1e,0x94,0x16,0x94,0xe6,0x60,0xce,0x0e, +0x1a,0x0d,0xe8,0x75,0x6b,0x78,0xd9,0x7b,0x3a,0x7a,0xb9,0xda, +0xc5,0xd8,0x9d,0xb2,0xe3,0xed,0x38,0x1f,0x3b,0x2a,0x3a,0x1f, +0xc7,0x70,0xeb,0x86,0xc5,0x5b,0xe8,0xaa,0xd8,0x4a,0x51,0x45, +0x5c,0x7c,0x40,0x1c,0xf9,0xea,0xca,0x62,0xfd,0x27,0xbc,0xae, +0x09,0x87,0x18,0xf8,0xed,0x10,0x82,0x0a,0x30,0x1a,0xe2,0x2c, +0xb4,0xc0,0x04,0x57,0x60,0x4f,0x0d,0xf0,0xe4,0x16,0xe2,0x2d, +0x74,0xba,0x3a,0xbf,0x9f,0x7c,0x6f,0x66,0x76,0x8f,0xbc,0xf8, +0x03,0x70,0x1a,0xa1,0x39,0x8c,0x8d,0x51,0xa1,0x52,0xce,0xae, +0xb4,0x3d,0xbd,0xd9,0x6c,0xf0,0x0d,0xef,0xbb,0xc2,0x2b,0x0c, +0x6e,0xc3,0x9d,0xa8,0xf9,0x51,0xfe,0xcb,0xb4,0x97,0x82,0x44, +0xf6,0xe8,0x46,0xef,0xcd,0x96,0xdb,0x89,0x35,0xcf,0xc4,0xa7, +0x50,0x9a,0x47,0xaa,0x73,0xb2,0xa3,0x6e,0xa4,0x56,0x94,0x66, +0xf4,0x45,0xa9,0x35,0x8c,0xc4,0x1a,0xfb,0x23,0x36,0x6a,0x7e, +0x85,0xde,0x05,0xc4,0x9a,0x0b,0xd5,0xe3,0xa5,0x97,0xf4,0xf3, +0x89,0x35,0xce,0xd3,0xd6,0x04,0xa7,0x3a,0x58,0x10,0x6b,0xfa, +0xf5,0xba,0x34,0x3d,0xed,0xc8,0xb8,0xb8,0xda,0xc7,0xd8,0x9f, +0xb2,0xe7,0xad,0x19,0x89,0xbd,0x10,0x3b,0x42,0xac,0x59,0x3b, +0x24,0xde,0x44,0x37,0x8a,0x1a,0xe2,0xea,0xe3,0x12,0x02,0x78, +0x7b,0x3a,0xb3,0x59,0xbf,0x09,0xf7,0xeb,0xee,0x43,0xfc,0x59, +0x89,0x0c,0x02,0x03,0x35,0x6c,0x80,0x7f,0xd0,0x82,0x1f,0xb8, +0x1b,0x58,0x8d,0xce,0x22,0x76,0x6c,0xa4,0x3a,0xb3,0xb3,0x3b, +0xe5,0xc5,0x97,0xe0,0x2f,0x43,0x34,0xce,0xe3,0x14,0x91,0xfd, +0x33,0xd3,0x67,0x46,0x37,0x0d,0x5d,0xd9,0x36,0x85,0xd6,0xf5, +0x35,0xab,0x19,0x3c,0x70,0x1d,0x15,0x29,0xe4,0x6d,0x4d,0xdf, +0xde,0x9b,0xc3,0x06,0xdf,0xf6,0x7c,0xe8,0x71,0x8d,0xc1,0x4d, +0xb8,0x03,0x35,0x11,0xdb,0x52,0x5f,0x08,0x92,0xd8,0x63,0xc4, +0x36,0x2b,0x62,0x9b,0x78,0x21,0x00,0x8a,0x0f,0x88,0x0f,0x24, +0x17,0xce,0x22,0x17,0x16,0x5e,0xf3,0x18,0x32,0xf6,0x67,0xd3, +0xdc,0x53,0x9c,0x53,0x9c,0xf4,0x22,0x75,0xa2,0xb4,0x89,0xb5, +0x57,0x81,0x1a,0x06,0xda,0xb0,0x84,0x75,0x53,0xb3,0x3f,0x62, +0xa7,0xee,0x5b,0x40,0x46,0x2f,0xbf,0x81,0x58,0x5b,0x72,0x49, +0x20,0xb1,0x56,0xc5,0x51,0x37,0x58,0x62,0xad,0xa3,0x39,0xdb, +0x6f,0xdc,0xa7,0xd7,0xa9,0xed,0x65,0xeb,0xe9,0xe0,0xe5,0xea, +0x10,0xe3,0x78,0xca,0x91,0xb7,0x76,0x28,0x76,0x24,0x76,0x58, +0x6a,0xed,0x66,0xba,0x3e,0xb6,0x36,0xae,0x36,0x8e,0xf9,0x5e, +0xbc,0x1b,0x69,0x8b,0xd5,0x07,0xe9,0x8e,0xa9,0xcb,0xc8,0x02, +0xfe,0xa6,0x05,0x2b,0x0d,0x7f,0xd2,0xf7,0x66,0xcb,0xd4,0xab, +0x76,0x94,0xed,0xdc,0xe0,0xb7,0x38,0x68,0xf1,0xd1,0x26,0xf8, +0xb4,0x05,0x76,0x17,0xc1,0xfb,0x0c,0x54,0x0f,0x71,0x29,0x5a, +0xb0,0x87,0x12,0xe2,0x79,0x26,0x58,0xc1,0x12,0x2f,0xf4,0x38, +0xe9,0x71,0x52,0x18,0x93,0xa8,0xc1,0xc2,0x86,0x74,0xd8,0x53, +0x04,0x8b,0xca,0x93,0x9d,0x93,0x5d,0x12,0x5d,0x19,0xee,0x7b, +0xb8,0x8b,0x0a,0x94,0xb2,0x76,0xa6,0xee,0x26,0xe6,0x1f,0xbd, +0xe1,0x73,0xcf,0xf3,0x32,0x83,0xab,0x70,0x3b,0x6a,0x78,0x98, +0xf7,0x32,0xe5,0xa5,0x41,0x22,0x31,0xdf,0x77,0xb3,0x35,0x6f, +0x3e,0x4d,0xcc,0x4f,0xd3,0xeb,0xc8,0x0a,0xb8,0xea,0x35,0x21, +0x1c,0x92,0x35,0xf5,0x4f,0xf5,0x48,0x76,0x49,0x76,0x92,0x35, +0x8c,0x34,0x88,0x12,0x44,0x8f,0xde,0xbf,0x02,0x32,0x43,0x12, +0xd3,0xdd,0x35,0x1c,0x55,0xec,0x35,0xfc,0xf2,0x89,0xf1,0x79, +0xf5,0xe7,0xab,0x88,0xe9,0x06,0xbc,0xe9,0x2e,0x2a,0x4e,0x7a, +0xc1,0x69,0x21,0x69,0x21,0x29,0x8e,0x16,0x6c,0xaf,0x49,0x8f, +0x7e,0xbb,0xb6,0x97,0x8d,0xa7,0xbd,0x97,0x8b,0xcb,0x29,0xe7, +0x18,0x97,0x53,0xf1,0xba,0x6c,0xff,0x99,0x41,0xd1,0x00,0x1f, +0xb6,0x83,0xc4,0xf4,0x4a,0x11,0x1f,0xb6,0x0c,0xac,0x86,0xf7, +0xdf,0x9e,0x0d,0xf5,0x98,0x99,0x0d,0x7d,0xc2,0xcf,0x86,0xde, +0xe4,0x67,0x43,0x6d,0xa7,0x67,0x43,0xab,0xff,0x38,0x1b,0xda, +0x35,0x33,0x1b,0xaa,0xf3,0x87,0xd9,0xd0,0x9f,0xfe,0x3c,0x1b, +0xfa,0x0d,0x9c,0x41,0xe9,0xda,0xc9,0x47,0x12,0x54,0xbb,0x33, +0xd9,0x88,0x91,0xe0,0xab,0x47,0x7b,0x19,0x9c,0x8f,0x5b,0x51, +0xed,0x83,0x9c,0x9f,0x92,0x5f,0x18,0x9e,0x63,0xc3,0x36,0xfa, +0x6d,0xb6,0xdb,0x41,0xb4,0xbd,0xa6,0x58,0x88,0xf0,0x86,0x2c, +0xfc,0x71,0xfe,0xd2,0xf2,0x27,0x8d,0x57,0xbb,0x3b,0x87,0x19, +0xd8,0xd3,0xc3,0xed,0xbe,0xa9,0xba,0x8f,0xfb,0x4a,0x00,0x5b, +0xa8,0x0e,0x8d,0xcb,0x86,0xdf,0x5b,0xad,0x70,0xc5,0x1f,0x7a, +0xe1,0xd5,0x81,0x59,0x7a,0x2c,0xec,0xcd,0x81,0x25,0xe5,0xc0, +0x34,0xc3,0x5f,0x2c,0x61,0xb9,0x33,0x28,0xfb,0x32,0x38,0x0c, +0x6a,0x90,0xa9,0xd1,0x61,0xcb,0xb5,0x0e,0xeb,0xab,0x8f,0x34, +0x9a,0x75,0x31,0xe2,0x36,0x2e,0x1d,0x65,0x06,0x64,0x06,0x64, +0xf9,0x35,0x57,0xb2,0xfa,0x43,0x1a,0x83,0xca,0xbd,0x96,0x2e, +0x6c,0x91,0x6f,0xa1,0x6f,0xa1,0xf7,0xca,0x88,0xcf,0x4f,0xe0, +0x39,0xd1,0xdf,0x76,0x3d,0xbd,0x78,0x6b,0xcc,0xb4,0x9a,0x55, +0x17,0x6c,0x57,0xdf,0xa8,0xe7,0x91,0xc9,0x6f,0xa2,0x76,0xb1, +0x69,0xb0,0x75,0xb0,0xdb,0xb4,0x82,0x35,0x31,0x3f,0x6c,0xa8, +0x68,0xea,0x98,0xed,0x94,0xe5,0x9c,0x61,0x6f,0xcd,0xde,0xb5, +0xbc,0x61,0x31,0x61,0x76,0xec,0x04,0xf9,0x8a,0x64,0x4e,0xae, +0xf9,0xf2,0xd4,0x8a,0x4f,0xce,0xea,0xca,0xc0,0xc7,0xb0,0x40, +0x14,0x0f,0xf3,0xe5,0xf1,0xb1,0x51,0x38,0x4e,0xc3,0xac,0xf8, +0xdf,0x12,0x5e,0x25,0x12,0xcd,0xf8,0x05,0x7a,0x6d,0xfe,0xc8, +0xea,0xa1,0x71,0x55,0x1b,0xbb,0xa1,0x73,0x4b,0xe3,0xaa,0x46, +0x86,0xbb,0x88,0x95,0xd0,0x2f,0xb5,0xcf,0xda,0xc6,0xba,0xac, +0xea,0x58,0x55,0xd3,0xcd,0x56,0x2b,0x1d,0x49,0x76,0xd7,0x8b, +0xa3,0x09,0x56,0x91,0xc8,0x71,0x36,0x8f,0x34,0x8d,0x32,0x89, +0x3e,0x7f,0xff,0x22,0xc8,0x0c,0x02,0x6d,0x54,0xcc,0x0a,0x35, +0x9d,0x54,0x1d,0xb5,0x02,0xf2,0xfd,0xf2,0x7c,0xf3,0x6a,0xcf, +0x57,0x5d,0x2d,0xe6,0x07,0xdd,0x47,0xd5,0x55,0xd5,0x59,0xef, +0x68,0x6a,0x48,0xea,0xd1,0x14,0x27,0x0b,0xb6,0xcb,0xac,0x4b, +0xd0,0xaa,0xeb,0x69,0x25,0xb4,0xf3,0x72,0xf6,0x88,0x71,0x3f, +0xe5,0x71,0x2a,0x4e,0x97,0xed,0x89,0xed,0x13,0xf5,0x90,0x41, +0x5f,0x3f,0x20,0xde,0x4a,0x17,0xc7,0x96,0x88,0x8a,0x44,0x71, +0x81,0x84,0x17,0x05,0xb6,0x67,0xb2,0x41,0x57,0x7d,0xc6,0xbd, +0x06,0x99,0x47,0xdc,0x77,0x68,0x70,0xf2,0xbc,0x98,0x9d,0x0a, +0xc3,0xcb,0xa8,0x14,0x6d,0x19,0x40,0x54,0x6b,0x5a,0x76,0xab, +0xfc,0x64,0x0d,0x77,0x9a,0x86,0x2f,0xb0,0x1d,0xe2,0x22,0x7b, +0xae,0x13,0x0e,0xb7,0x8b,0xc6,0xbb,0x38,0x0a,0x01,0x49,0x43, +0x7c,0x95,0xe6,0x94,0xcb,0x50,0xae,0x62,0xc6,0xb6,0xa4,0x9d, +0xdd,0x59,0x6c,0xd8,0x4d,0xff,0x87,0x3e,0xe3,0x0c,0x3e,0x8b, +0x9b,0x51,0xd5,0xfd,0xac,0x9f,0x12,0x5f,0x18,0x9e,0x65,0xc3, +0x37,0x05,0x6c,0x76,0x22,0x23,0x0b,0x3f,0xf2,0xb9,0x4d,0x2e, +0x1a,0xc7,0x5f,0x36,0x70,0xdc,0x6b,0xdc,0x73,0xd0,0x34,0x80, +0xe5,0x23,0x3c,0xc9,0xc9,0x24,0xd2,0x30,0xd2,0x30,0xfa,0xfc, +0x03,0xa9,0xad,0xc6,0xc5,0xac,0x87,0xd4,0xd6,0x3c,0x3f,0x62, +0x6d,0xed,0x48,0xe5,0x78,0xf1,0x25,0xc3,0x7c,0xd6,0x5b,0xd5, +0x55,0xc5,0x45,0x8f,0x84,0x37,0xb1,0xd5,0x59,0x6a,0x6b,0x0b, +0xb1,0x95,0x60,0x99,0xb3,0x7b,0x8c,0xc7,0x8c,0xad,0xbd,0xb1, +0xbc,0xad,0xeb,0x06,0x08,0x2e,0x4f,0x1a,0xc2,0x05,0x34,0x80, +0xa3,0xe1,0x6f,0x9a,0xf8,0x6f,0x84,0xe4,0x6c,0xa3,0x71,0x44, +0x00,0xd6,0x3c,0x84,0xb7,0xca,0x75,0x3b,0xca,0x5c,0x07,0xa5, +0x5c,0x30,0x86,0xaf,0x17,0xfd,0x46,0x8b,0x5d,0xa6,0xd4,0x91, +0x07,0x2c,0x34,0x84,0x3d,0x16,0x20,0xa3,0xe5,0xcb,0x16,0x1d, +0x2c,0xfb,0xaa,0x70,0xcd,0x9e,0xa0,0x0d,0x21,0xeb,0xc2,0xba, +0x60,0x65,0x03,0x18,0x94,0x80,0x9a,0x4a,0x22,0xeb,0x8d,0x55, +0xcc,0xb1,0xa5,0x00,0x6f,0xf2,0x3c,0xe9,0x15,0xe3,0x19,0x93, +0xa8,0xc2,0xc2,0x17,0x69,0xb0,0x2a,0x1f,0xfe,0x52,0x72,0xce, +0xf1,0xac,0x53,0x82,0x33,0xc3,0xfd,0x06,0xb7,0x50,0x8a,0xee, +0x59,0xd5,0x38,0xf5,0xce,0x0c,0x36,0x6a,0x28,0xf4,0x72,0x58, +0x37,0xef,0x92,0x26,0x54,0x75,0x2f,0x93,0xb8,0xc4,0xe8,0x8d, +0x4b,0xae,0x88,0xb5,0x11,0x7c,0x7e,0xbf,0x73,0x30,0xf1,0x3a, +0x51,0x76,0x47,0x07,0x61,0x1b,0x95,0x10,0x77,0x26,0x3e,0x5a, +0x0e,0xe4,0xbf,0xac,0xae,0xc7,0x72,0xcf,0x43,0xcf,0x86,0x9f, +0x26,0xa5,0x3c,0x2c,0x54,0x26,0xf2,0x3a,0xe8,0x77,0x63,0xfd, +0xc7,0xda,0x9b,0xb0,0xd0,0x00,0xcc,0x28,0xd7,0xc3,0xda,0x9a, +0x78,0xe1,0x01,0x66,0xf2,0x8a,0x23,0xea,0xc8,0x21,0x4a,0xe6, +0x19,0xad,0x9d,0x21,0x43,0x8c,0x54,0xa7,0x2d,0x43,0x13,0x6b, +0xe4,0xa1,0x48,0x13,0x97,0xd1,0x87,0x0a,0x3c,0x6e,0xca,0xc1, +0x56,0x5c,0xf8,0xff,0x8b,0xd0,0x7f,0x4e,0x02,0xe4,0x4f,0x71, +0x49,0x02,0x24,0xc5,0x23,0xc9,0x25,0x89,0x24,0x83,0xd9,0x5b, +0xc9,0x30,0x1d,0x20,0x0e,0x9a,0x24,0x19,0xf2,0x7d,0xf3,0xea, +0xce,0x57,0xbe,0x95,0x0c,0xba,0xd2,0x00,0x21,0xc9,0xd0,0x6d, +0xd6,0xa5,0x4f,0x92,0xc1,0x5a,0x12,0x20,0xa7,0xdc,0x49,0x3a, +0x90,0x00,0xe9,0x8d,0xed,0x15,0xf5,0xfe,0x31,0x19,0x18,0x71, +0x01,0x1c,0x40,0xbf,0x0c,0x2f,0x83,0x30,0x6d,0x1c,0x86,0xff, +0x06,0x61,0x3a,0xe4,0xdb,0x6c,0x08,0xd3,0xc4,0x61,0xbb,0x34, +0xef,0x70,0xaf,0x86,0xaf,0x8b,0x15,0x47,0x38,0x45,0xb1,0x13, +0xcc,0xc6,0xa3,0x70,0x82,0xd2,0x1e,0x46,0xe4,0x7f,0x89,0x08, +0x7d,0xe7,0x12,0x71,0x11,0x2a,0xd8,0x9b,0xb5,0x31,0x79,0x4b, +0x4f,0x36,0x1b,0x7a,0xd7,0xe7,0x3b,0xcf,0x9b,0x0c,0x4e,0x24, +0x09,0x50,0x7d,0x2f,0xeb,0xe7,0xdf,0x13,0xc0,0x91,0x4f,0x80, +0x7b,0xe2,0xaf,0x51,0xaa,0x7b,0x0a,0x01,0x74,0x83,0x13,0x7a, +0x51,0x7a,0xd1,0x17,0x1f,0x92,0xc2,0x3d,0x0c,0x8c,0xa1,0x84, +0x86,0x28,0xdb,0xaa,0x91,0xf1,0x20,0x34,0xa4,0xe1,0x42,0xcd, +0x44,0xc9,0x65,0xbe,0x94,0xa9,0x38,0x1d,0x76,0xd4,0x0d,0xca, +0x20,0x34,0x84,0x2f,0x65,0x03,0x84,0x86,0x74,0x69,0x7a,0xd9, +0x79,0x3a,0x7a,0x4b,0x68,0x88,0xbd,0x94,0x86,0x9c,0x97,0xd0, +0x90,0xcd,0xc3,0xe2,0x1d,0x74,0x8d,0xa8,0x46,0x54,0x45,0x68, +0x48,0xbc,0xbf,0xa4,0x70,0xfb,0x4f,0x08,0xaf,0x13,0x1a,0x22, +0xfe,0x0b,0xec,0x40,0x55,0x82,0x4a,0xcd,0x72,0xf5,0x2d,0xc7, +0x96,0x86,0x2d,0x3b,0xd1,0xf6,0xaa,0x19,0x3e,0xaa,0x00,0x5a, +0x33,0x9d,0x75,0xc5,0xb4,0x00,0x2f,0x36,0x5c,0xe2,0x7f,0xca, +0xff,0x6b,0xff,0x53,0xf1,0x5a,0x24,0x9a,0xcf,0x82,0x42,0x3a, +0xcc,0xcf,0x49,0xf6,0x4e,0xf6,0x4a,0xf2,0xea,0x2d,0x65,0x8d, +0xff,0x4b,0xe7,0x57,0x2d,0xa2,0x56,0xe2,0xa7,0xea,0xd0,0x30, +0x74,0x6b,0x9e,0x17,0x6f,0xe0,0x76,0x72,0x1b,0x68,0xe0,0xf8, +0xa5,0x07,0x51,0xb8,0x1b,0xa2,0x68,0xec,0xeb,0x85,0xf2,0x0f, +0x67,0xee,0x4b,0x51,0x20,0xec,0xe5,0xe8,0xb8,0xef,0x2d,0xef, +0x51,0x06,0x37,0x13,0xf6,0x42,0x2a,0xfc,0x4f,0xd3,0xec,0xc5, +0x67,0x93,0xe5,0x36,0x7e,0x7e,0x4e,0x7c,0x92,0xe7,0x62,0x24, +0xe7,0x8d,0x49,0x51,0x33,0x88,0x3e,0x7f,0xef,0x32,0x50,0xa4, +0xa8,0x19,0xf1,0x45,0xcd,0x49,0xc5,0x41,0xd3,0x3f,0xdf,0x97, +0x7c,0xd5,0x8d,0x54,0x8d,0x4b,0x86,0x94,0xcf,0x79,0x67,0x49, +0xce,0x4b,0x8a,0x5a,0x8f,0x59,0xb7,0x7e,0x9b,0x8e,0x64,0x48, +0x5d,0xdc,0x62,0x5c,0x4f,0xb9,0xf1,0x43,0xda,0x17,0xdb,0x1f, +0xdb,0x27,0x2d,0x6a,0x5b,0xe8,0x0a,0x51,0x85,0xa8,0x5c,0x94, +0xa6,0xc7,0x92,0x32,0x2a,0x01,0x19,0x59,0x71,0x11,0x2c,0x94, +0x9c,0x15,0xac,0x83,0x8f,0xc1,0x3c,0x15,0x3c,0x0f,0xfb,0x63, +0x1d,0xfe,0xac,0xe0,0x03,0x58,0x80,0xb4,0x41,0xc4,0xc9,0xe1, +0x5d,0x74,0x86,0x86,0x0c,0x2c,0x23,0x54,0x26,0xa7,0x43,0x5e, +0x8c,0x20,0x6c,0x90,0x9e,0x5a,0x4a,0x34,0x69,0xe1,0x9e,0xec, +0x0d,0xa9,0x9b,0xf8,0xba,0x7d,0xcf,0xfb,0x89,0x07,0x21,0x98, +0x69,0xb8,0x05,0xd5,0xdc,0xcf,0xe6,0xa1,0xed,0x1c,0x7b,0x7c, +0x93,0xff,0x66,0x07,0x32,0xb2,0xe4,0x03,0x12,0xda,0x12,0x10, +0x17,0x48,0x68,0x8b,0xff,0xb8,0xf0,0xba,0xc7,0x90,0x89,0x3f, +0x4b,0xc6,0xda,0x39,0xd9,0x49,0x10,0xa9,0x1b,0xa5,0xf3,0x36, +0x6d,0x71,0x55,0x73,0x38,0x6c,0xab,0xe1,0x57,0xe0,0x2d,0xa1, +0x2d,0x35,0x3c,0xe5,0x94,0xd4,0xee,0x23,0x8e,0xd3,0x24,0x4d, +0x42,0x5b,0xfa,0xdf,0xa2,0x2d,0x0e,0x52,0xda,0x32,0xfc,0x36, +0x6d,0xa9,0x15,0xd5,0x8a,0xaa,0xe3,0xf8,0x43,0xc8,0x66,0x23, +0xd8,0x07,0x16,0x43,0xd8,0x02,0x26,0x35,0xf1,0x24,0x26,0x5c, +0xd3,0x02,0xef,0xc3,0x9e,0xda,0xe0,0x89,0x33,0x86,0x21,0x03, +0x7c,0x07,0x69,0x2f,0xe8,0x46,0x7e,0xdf,0xb9,0x7d,0x6f,0x7f, +0x5f,0xe0,0xc3,0x56,0x6f,0x2d,0x5d,0x9d,0xb9,0x85,0x70,0x65, +0xa8,0x47,0x21,0x5b,0x3d,0xd7,0x58,0x1d,0xe8,0x72,0x64,0x1b, +0xef,0x95,0x3c,0x49,0x7b,0x41,0x06,0x8d,0x2b,0x21,0x5c,0x2d, +0x67,0x6b,0xfa,0x0e,0x9e,0xab,0xdd,0xf2,0x7a,0x24,0x9c,0x60, +0x70,0x0d,0x21,0x2b,0x8d,0x0f,0x73,0x5f,0xa6,0xf2,0x23,0x19, +0xba,0xd1,0x47,0x4a,0x56,0xf2,0x27,0xe5,0x51,0x85,0x4d,0xa3, +0x75,0x97,0x9d,0x9a,0xed,0x5e,0xa7,0x75,0xc2,0x5c,0x01,0xfb, +0xaa,0xfc,0x51,0xfd,0x44,0xfb,0x25,0x8b,0xdb,0xb6,0xdf,0xb9, +0x17,0x76,0xb3,0x3b,0x0b,0x0f,0x96,0x6b,0xd6,0x5c,0xee,0xed, +0x3e,0x5f,0x7d,0x99,0x3f,0xdd,0x85,0x4e,0xc9,0x49,0xce,0x4d, +0xcc,0xd3,0x4e,0x66,0xad,0x37,0x1e,0x39,0xb8,0x56,0x50,0x6a, +0xc2,0x56,0x66,0x97,0xe7,0x95,0x16,0x31,0xd8,0x05,0xaf,0x46, +0x52,0xb2,0x63,0x34,0xcd,0x75,0x2e,0xf3,0xb9,0x21,0xe1,0x3a, +0xea,0x0e,0x84,0xeb,0xf8,0x17,0xf8,0xe4,0xfb,0xe4,0xd7,0x9f, +0xaf,0x96,0x86,0x85,0x84,0xeb,0x10,0x9a,0x17,0x4c,0x0a,0x9f, +0x93,0x94,0xeb,0x74,0x68,0x7b,0x4a,0xb8,0x8e,0xf3,0x0c,0xd7, +0x19,0xf8,0x57,0xae,0x23,0x0d,0x0b,0x29,0xbb,0x12,0x0b,0x41, +0x0f,0x79,0x18,0x5a,0x18,0x69,0x9a,0xeb,0xd6,0x99,0x37,0x3a, +0x36,0x25,0x24,0xc4,0x9f,0x8d,0x4f,0x60,0x00,0x38,0x6d,0xd4, +0x87,0x95,0x61,0xb6,0x16,0x9e,0x8d,0x13,0xf5,0x20,0x11,0x2f, +0xc1,0x9a,0xf4,0xb9,0x9a,0xb8,0xda,0xd8,0x0a,0xad,0x38,0x36, +0xda,0x20,0x4c,0x33,0x40,0x97,0x81,0x74,0xfc,0xe5,0x10,0x7c, +0x09,0x26,0x7d,0xd8,0x04,0x96,0x50,0x9c,0x61,0x28,0xca,0x52, +0x4f,0x55,0x3c,0x77,0x88,0x50,0x9c,0xe3,0x17,0x83,0xae,0x07, +0x0c,0xf3,0xdb,0x88,0xb6,0xa2,0xba,0x07,0x39,0x2f,0x93,0x5f, +0x1a,0xbc,0xa1,0x38,0xe2,0x8f,0x24,0x85,0x90,0x8f,0x96,0x0e, +0x42,0x72,0xc7,0x79,0x92,0x6b,0xf2,0x3b,0xc9,0x3d,0xa1,0x1d, +0xa5,0x15,0x3d,0xf6,0xe0,0xca,0x8c,0xf5,0x6e,0xea,0x8e,0x2a, +0x76,0x52,0xa6,0xf7,0xef,0xad,0x97,0x30,0xbd,0xde,0x37,0xd6, +0xc7,0x10,0xfb,0x67,0xac,0x1f,0x14,0x4d,0x53,0xfa,0x7a,0x51, +0x1d,0x4f,0x72,0xc5,0xf9,0x18,0xd0,0x5e,0xca,0x23,0x32,0xbe, +0x44,0x1e,0xc4,0xb0,0x61,0x10,0x47,0x8b,0x91,0x36,0x87,0xb0, +0xad,0x36,0xbc,0x47,0xc7,0x60,0x4b,0x5b,0x3c,0x0b,0x7f,0x82, +0xdf,0xa9,0x35,0x61,0x61,0x15,0xfc,0xb5,0x19,0x3e,0x13,0x81, +0x03,0x03,0x14,0x47,0x53,0xba,0x45,0x7e,0x1d,0x72,0x4f,0xa8, +0xa6,0x74,0x7e,0x37,0xa6,0xc3,0xb4,0x5e,0xa6,0x8c,0xaf,0x78, +0x1c,0x09,0x77,0xd8,0x6d,0x33,0x39,0xd8,0xe1,0xc6,0xb6,0x5d, +0x69,0x7a,0x5a,0xfc,0x80,0x5f,0x49,0x6f,0x8b,0xbc,0xaf,0x59, +0xfd,0xe8,0x3c,0x68,0xe8,0xce,0x56,0xa9,0xd7,0x6d,0x28,0x54, +0x60,0xf0,0x31,0x9c,0x8a,0x32,0x35,0x53,0x94,0xce,0x1d,0x26, +0x24,0x21,0x7c,0x34,0x70,0x22,0x68,0x90,0xc1,0x45,0xb8,0x0d, +0xd5,0x3f,0x24,0xbe,0x79,0x41,0x18,0x30,0xef,0x1b,0x5b,0xde, +0x37,0xf2,0xe2,0x1a,0x74,0xff,0xc6,0xd5,0x9f,0xda,0x5f,0x93, +0x7a,0x6f,0xb1,0x5a,0x73,0xa7,0xc2,0x21,0x06,0x0c,0x72,0x91, +0xd5,0xea,0xc3,0x5f,0x28,0x2a,0x85,0x8c,0x04,0x0c,0xf9,0x77, +0x99,0x06,0xb2,0xc9,0x1e,0x89,0xae,0x89,0xce,0xd6,0x91,0x7c, +0xaf,0x67,0x44,0x5a,0x14,0xa8,0x3f,0xb3,0x06,0xc2,0x90,0x8a, +0xa4,0xac,0xc1,0x6d,0x1a,0x41,0x24,0xac,0xa1,0xd3,0xac,0xdb, +0xa0,0x55,0x47,0xc2,0x90,0x5c,0x08,0x43,0x8a,0x99,0x61,0x0d, +0xa2,0x9e,0x78,0x86,0xdb,0x30,0x40,0x54,0x69,0x5e,0x6c,0x9e, +0x28,0x2f,0x96,0xaf,0x43,0xa2,0xc0,0xd6,0x0c,0x36,0xdd,0xa9, +0xac,0xa4,0xb0,0x3c,0xb7,0x44,0x96,0xd3,0x1b,0x10,0xe7,0xd0, +0x85,0x8d,0x85,0x1d,0x79,0x3d,0x4c,0x1e,0x58,0x22,0x1d,0x38, +0x3f,0x40,0xe3,0xfb,0xc4,0x3a,0x1d,0x38,0xc0,0xf9,0x62,0x59, +0x3a,0x9d,0x10,0x27,0x8a,0x6a,0xc9,0xcc,0x6d,0x96,0x17,0xbb, +0x01,0x35,0x40,0x4f,0x7d,0x85,0xab,0x50,0x9e,0x42,0xc6,0x96, +0xa4,0xed,0x3d,0x59,0x6c,0xe8,0x2d,0xbf,0x6f,0x7d,0xae,0xfd, +0x07,0x82,0xf4,0x8f,0x0f,0x60,0x12,0x4d,0x6b,0xc8,0x4c,0x36, +0xe0,0xa6,0xf0,0x96,0xfb,0xb0,0x31,0x21,0x48,0x6e,0xa9,0x0e, +0x29,0xf6,0x4a,0xe1,0x07,0x4e,0x28,0x44,0xdf,0x79,0xf8,0x00, +0x3e,0xb8,0x2a,0x11,0xe0,0xb6,0x4a,0xc6,0xfb,0x0d,0x95,0x7d, +0x8a,0x48,0xc5,0x28,0x6c,0xbf,0xd4,0x78,0xa3,0x6a,0x9c,0x3f, +0x27,0xe4,0x90,0xcd,0x21,0x2b,0xed,0x00,0xbe,0xd8,0xa7,0xdb, +0x5b,0xb0,0xc3,0x82,0x41,0xed,0x1e,0x55,0xa1,0x93,0x87,0x8b, +0x50,0xc8,0x9c,0xf2,0x14,0x9e,0xf2,0xfc,0x24,0x5e,0x6b,0xe8, +0xcc,0x48,0xec,0x90,0x48,0x96,0x5b,0x3f,0x4c,0xea,0x5f,0x87, +0xa8,0x3d,0xbe,0x95,0xd8,0xed,0x10,0x83,0x12,0x24,0x65,0xa3, +0x3b,0x9b,0xf5,0x9d,0xf0,0xb8,0xe1,0x3e,0x64,0x34,0x13,0x91, +0xba,0x92,0x88,0xbc,0xfc,0xe0,0x1a,0x50,0xe7,0x81,0x12,0x94, +0xb2,0x2e,0x2a,0x36,0xca,0xd6,0x6a,0xfc,0x75,0xbd,0x0a,0x79, +0xc9,0x5c,0xca,0x4b,0x66,0x4f,0x15,0x22,0x48,0x74,0x03,0x89, +0xf0,0x0f,0xe2,0xa5,0xff,0xb0,0xd1,0x90,0x4e,0xaf,0x06,0x89, +0x47,0x27,0x2f,0x37,0xeb,0x18,0xeb,0x53,0xd6,0x3c,0x7e,0x8d, +0xc5,0x5e,0x12,0x8d,0xf1,0xf9,0x38,0x42,0xf2,0xb1,0x31,0xb6, +0x21,0xae,0x2e,0x8e,0x51,0x5a,0x8e,0x0a,0x95,0x73,0xf7,0xa4, +0xef,0xef,0xcd,0x65,0x83,0x27,0xbc,0x6e,0x0b,0xc7,0x18,0xf1, +0x6a,0x5f,0x54,0xb9,0xa7,0x64,0x53,0xde,0xfa,0xbe,0x3c,0xd6, +0xe7,0x5b,0x97,0xef,0x1d,0x6f,0x32,0x53,0xf1,0x04,0x82,0xda, +0xbe,0x2d,0x7c,0x91,0xfe,0x52,0x90,0xcc,0x06,0x6f,0xf0,0xda, +0x6c,0xba,0x8d,0x11,0x87,0x3a,0xa3,0xd6,0xc7,0x25,0x3f,0xa6, +0x3f,0xd7,0x4b,0x62,0x43,0xd6,0x0b,0xd7,0x99,0xf1,0x55,0xb6, +0x7a,0x9a,0x40,0x27,0x39,0x9b,0x9d,0x30,0x89,0x32,0x8e,0x1e, +0x79,0x70,0x09,0xe6,0x0c,0x02,0x23,0x21,0xd0,0xce,0x6a,0x92, +0xf0,0xc8,0xe3,0xc3,0x43,0x42,0x2a,0xf3,0xf8,0xf0,0x90,0x10, +0xe8,0xa3,0x52,0xce,0xd0,0x39,0x43,0x2a,0x6d,0xf9,0xf0,0xf0, +0x38,0x25,0xe4,0xc3,0xa3,0x3b,0xb6,0xe7,0x0d,0x81,0x2e,0x21, +0x9c,0xa1,0x38,0x8e,0x0c,0x93,0x94,0xa8,0x04,0x4a,0x09,0xb4, +0xb8,0x9f,0xcb,0x40,0x2e,0x6d,0x9e,0x43,0xfe,0xd7,0xba,0x9f, +0xd6,0xc0,0xac,0x72,0x58,0xa8,0x9f,0xc5,0x7a,0x2f,0x15,0x6e, +0x76,0x54,0x08,0x7c,0x76,0x1c,0x64,0x62,0xe0,0x53,0x06,0xf4, +0xfb,0xb1,0x3e,0xec,0xd7,0xc2,0xfb,0xf1,0x90,0x2e,0x0c,0x51, +0xb1,0x78,0x77,0x2a,0xfe,0xa2,0x18,0x53,0x46,0xbb,0x54,0x8f, +0x6c,0xd2,0xa8,0x36,0x62,0xbf,0xe9,0x1d,0x19,0xe9,0xb8,0x9a, +0xad,0x95,0x6f,0x54,0x62,0x5d,0x61,0x3a,0x94,0x98,0x30,0x52, +0x00,0xf6,0xac,0xa0,0x40,0x26,0x45,0x1c,0x8a,0x3c,0xea,0xec, +0x1a,0x6d,0xcb,0x6d,0x3c,0xd8,0x1a,0xb7,0x6a,0xab,0x12,0x1b, +0x06,0x9b,0xe1,0x21,0xe4,0x18,0xe9,0x18,0xe5,0x10,0xc5,0x80, +0x40,0x1b,0x9b,0xd1,0x0e,0xd1,0x8e,0xd1,0x0e,0xfc,0x1e,0x79, +0x15,0xb1,0xe5,0xb1,0xe5,0xa2,0x13,0x98,0x71,0xc5,0xb3,0x77, +0xaf,0x69,0xb1,0x62,0x9f,0xc2,0x9c,0x0a,0x98,0x17,0x0f,0x0b, +0x09,0x10,0xc4,0xd7,0x26,0x30,0xdc,0x0a,0x65,0x42,0xdc,0xd3, +0xb6,0x25,0xee,0xea,0x21,0x78,0x45,0x88,0xbb,0xef,0x38,0xbf, +0xf8,0xb0,0x19,0x55,0x92,0xb8,0x3c,0xc7,0xc7,0x65,0x04,0x89, +0x4b,0xe7,0x9d,0xcc,0xdc,0xc9,0xbb,0xa0,0x81,0x32,0x03,0x33, +0xfd,0xff,0xa7,0xfc,0x71,0xb8,0xa6,0xbb,0xa1,0xa7,0xc5,0xa2, +0x8c,0x4d,0xcd,0xc6,0x7f,0xed,0x1c,0x6c,0x6f,0xe8,0xcf,0x1f, +0x95,0x6d,0xc1,0xee,0x34,0x7f,0x32,0x78,0x4a,0xb1,0xf6,0x39, +0x36,0xc4,0xf5,0xa8,0x7b,0x90,0x3b,0x83,0xb7,0x1a,0xc0,0x42, +0xca,0xd7,0xc1,0xd3,0xde,0xc5,0xba,0x2f,0xa0,0x27,0xa0,0xd3, +0x5f,0xc7,0x55,0xc9,0x73,0xab,0x6f,0xbe,0x01,0xfb,0xaa,0xf8, +0x41,0xd5,0xc5,0x26,0xf8,0x58,0x9f,0xb5,0x76,0x32,0x72,0x10, +0x38,0xff,0x5f,0x92,0xd0,0x72,0xf1,0xf7,0x08,0x5f,0x82,0x97, +0x70,0x89,0xc6,0xf5,0x38,0x1d,0x81,0x23,0x04,0x60,0x47,0x7a, +0x6a,0xc5,0x8f,0x28,0xb7,0x24,0xbb,0x34,0xbb,0x9c,0x01,0x35, +0xca,0x5b,0x60,0x67,0xa6,0x67,0x6b,0x96,0x69,0x99,0x6e,0x93, +0xc2,0x88,0x35,0xb9,0xe2,0xff,0x2e,0x71,0x9d,0xe4,0x65,0xbb, +0x6e,0x47,0x56,0xe0,0xb8,0xcf,0xb8,0xe7,0x90,0xac,0x49,0x80, +0x24,0xfe,0x9c,0x64,0x4d,0x23,0x4d,0xa2,0x8c,0xa2,0x47,0x09, +0x98,0xcf,0xf9,0xbf,0x02,0x73,0x57,0x02,0xe6,0x31,0x52,0x30, +0x8f,0x1d,0x8c,0x1d,0xe4,0x53,0x67,0x88,0x30,0x1c,0xf1,0x24, +0x37,0x1b,0x59,0x16,0xda,0xd7,0xb9,0x0f,0x35,0x55,0x36,0xd4, +0xd6,0x35,0x5b,0xd5,0xb0,0xce,0xf6,0x4e,0x4e,0xf6,0xee,0xc7, +0x6a,0xc2,0x9a,0x23,0x3a,0x19,0x30,0x14,0x2b,0x63,0x47,0x78, +0x5f,0x17,0xbf,0x8f,0x2d,0x39,0x65,0x10,0x52,0x89,0xaa,0xa9, +0x7a,0x99,0x66,0x5b,0xb5,0x56,0x58,0xe2,0x0f,0x9d,0xb2,0x75, +0x59,0x98,0x5b,0xf5,0xaa,0xf9,0xbb,0x91,0x0a,0xb5,0x26,0x8b, +0x4e,0xb7,0x1a,0xdf,0xea,0xf4,0x84,0xc6,0x42,0xd8,0xc4,0x1a, +0xe5,0xc9,0xe0,0x0c,0xf1,0x7c,0x84,0x57,0xc1,0x22,0x58,0x45, +0x81,0x23,0x5e,0xc4,0x3f,0x01,0xbd,0x08,0xd6,0x53,0xf8,0x9f, +0x58,0x1d,0x91,0x9f,0x9d,0x36,0x88,0x35,0x89,0xb3,0x60,0xf0, +0x26,0x0a,0x5c,0x16,0x44,0x35,0x9d,0x6c,0x3f,0xd5,0xc3,0xc0, +0x7a,0x7e,0xae,0xb4,0x61,0x3b,0xca,0x53,0xca,0xdc,0x99,0xbc, +0x87,0x10,0xe1,0x63,0xd7,0xfd,0xee,0x79,0x5f,0xfe,0x0f,0x20, +0x3f,0xf9,0x2d,0xfc,0x84,0xc0,0xff,0xf5,0x20,0x66,0xe9,0xc2, +0x8e,0xfc,0x4b,0xb9,0x17,0x35,0x73,0xd8,0x00,0x65,0xe1,0x3e, +0x27,0x2d,0x06,0xb7,0x6a,0x03,0x83,0x95,0xa8,0xa0,0xaf,0x83, +0x4e,0x05,0xcb,0xe1,0x8f,0xa9,0xa0,0xf3,0xbe,0x23,0xbe,0x5d, +0xc6,0xbc,0x0e,0x90,0x0a,0x45,0xa3,0x28,0xc3,0xe8,0x3f,0x35, +0xf0,0xac,0xa7,0x99,0x73,0xe3,0xf9,0x9a,0x69,0x34,0xfa,0x73, +0x03,0x6f,0x50,0xb7,0x5b,0xd3,0xd3,0x9e,0x30,0x67,0x37,0xdb, +0x93,0xb6,0xd2,0x06,0xde,0x85,0xd8,0x51,0xd1,0x85,0x99,0x06, +0xde,0x8f,0xc9,0x04,0x78,0x09,0xfc,0xc9,0xd6,0xa7,0xcb,0x78, +0xc2,0xdf,0xe8,0x50,0xcc,0x5a,0x6f,0xdd,0xf0,0x65,0x8b,0x19, +0xfb,0xe2,0xd7,0x56,0x78,0x27,0x15,0x96,0x33,0xb0,0x09,0xff, +0x73,0x04,0xfe,0x09,0x73,0x86,0x28,0x3c,0x04,0x13,0xc8,0xaf, +0xdf,0x7d,0xd4,0xb5,0x43,0xe0,0xc9,0x96,0x09,0x8a,0x74,0x72, +0xb4,0x99,0x0a,0x62,0xea,0xe9,0x8c,0xaf,0x33,0x32,0x16,0xc1, +0x41,0x58,0x8b,0xfd,0x69,0x4e,0x6b,0x1d,0xca,0x51,0xcf,0x54, +0x4c,0x39,0x44,0x1c,0x72,0xf4,0x92,0xdf,0x35,0x3f,0xc2,0x08, +0x3a,0x09,0x29,0x6e,0xf9,0x36,0xff,0x05,0x21,0xc5,0x49,0xec, +0xd1,0x0d,0xde,0x9b,0x2d,0xf8,0x96,0xde,0xcf,0x52,0xe5,0x13, +0x20,0x0a,0xec,0x20,0xca,0x67,0xdc,0xfb,0x6d,0xe5,0x63,0x26, +0x69,0x03,0x8c,0x3e,0xb8,0x3c,0x13,0x44,0xee,0x7c,0x10,0xf1, +0x34,0xb9,0xc0,0x87,0x28,0x9f,0xea,0x19,0x9a,0xfc,0x2f,0x41, +0xd4,0xae,0xed,0x69,0x2b,0xe9,0xfd,0xc4,0xcc,0xf0,0xa1,0x58, +0xf2,0x25,0x0d,0x22,0x1e,0xc5,0x8a,0x45,0xc5,0x22,0x66,0x48, +0xac,0x83,0x74,0xc5,0x4d,0xfd,0x34,0xa7,0xb4,0x15,0x05,0x6a, +0xd9,0xed,0xb1,0x50,0x69,0x38,0x52,0xbb,0xb5,0xf0,0x60,0x17, +0x41,0xc6,0x4b,0xd6,0x8f,0x3c,0x5a,0xca,0x5a,0xeb,0x6f,0x67, +0x8f,0x30,0x40,0x67,0x20,0x3f,0x2d,0xbb,0x9d,0x16,0x6a,0xf5, +0xea,0x8d,0x9b,0x0a,0x0f,0x75,0xe5,0xb3,0x9e,0x97,0xad,0x1f, +0xba,0x35,0x54,0xb6,0xd5,0x7c,0x93,0x7b,0x9e,0x01,0x26,0x1d, +0x05,0xe8,0x5a,0x6d,0xb5,0xd1,0x6c,0x52,0x69,0xd8,0x46,0x7e, +0x5f,0xc4,0xba,0x5f,0xb5,0xba,0xe7,0x5e,0x57,0xde,0x54,0x7f, +0x37,0x67,0x80,0xe1,0x7e,0xe6,0x54,0x51,0xa6,0x7a,0xea,0xc1, +0x73,0xca,0x52,0x82,0x74,0x2d,0x70,0xe8,0x77,0x82,0xf4,0x87, +0x1e,0xd0,0xe4,0x56,0x30,0x45,0x10,0xd4,0xcf,0xa5,0xea,0x82, +0x2f,0xd6,0xc3,0x05,0x3a,0xe2,0x5b,0x03,0xf8,0x6b,0x6a,0xae, +0x78,0xf6,0xef,0x79,0xe6,0x3d,0xc1,0xe7,0x99,0xff,0xef,0x79, +0x66,0x14,0x65,0x74,0x72,0xec,0xfe,0x1b,0xd2,0xa4,0xe6,0x70, +0xc4,0x56,0x9d,0xa7,0xd8,0x3e,0x05,0xf5,0x24,0x28,0x8a,0xf9, +0xce,0xa0,0xb7,0xaa,0xb3,0x84,0x62,0x07,0xff,0x6b,0x67,0xd0, +0x71,0x86,0x62,0x0f,0xc5,0x8e,0x88,0x86,0x66,0x82,0x62,0x72, +0x07,0x9c,0x41,0x3d,0x38,0x04,0x66,0xd1,0x37,0x12,0xc6,0x93, +0x86,0x53,0x84,0x1d,0x2c,0x7e,0xdf,0x13,0xef,0x0d,0xc1,0xdb, +0x4e,0x25,0x09,0xd8,0xcb,0xa7,0xaf,0xc4,0x5e,0x8e,0x67,0x96, +0x62,0x6f,0x01,0x08,0x68,0x9b,0x83,0x07,0x05,0x4b,0xb4,0xf9, +0x8d,0x08,0xe9,0xab,0xb7,0xcf,0x67,0x7c,0x47,0x14,0xbd,0x56, +0x1f,0x68,0x25,0x50,0x99,0x9b,0xaf,0x6b,0xc3,0x47,0x0a,0xc5, +0x3d,0xec,0xe7,0xe7,0x15,0x3b,0xad,0x2f,0x33,0xd7,0x70,0x24, +0xc2,0x3f,0x0b,0x5e,0x51,0xd1,0x58,0xd6,0xe9,0x0b,0x3c,0x6f, +0x5b,0x05,0xf9,0xd0,0x82,0xc7,0xbd,0xf0,0x61,0x3c,0xec,0x60, +0x60,0x01,0x15,0xee,0xec,0xa7,0xee,0x6b,0xcd,0x9f,0xc9,0x63, +0x17,0x65,0x70,0xc2,0x45,0xce,0xe5,0x44,0xc0,0x71,0x5b,0xfe, +0xd8,0xf7,0x54,0x3d,0x19,0xa0,0xa9,0xdb,0x45,0x05,0xfd,0xc9, +0xf2,0xe7,0x9a,0x44,0x57,0x6e,0x2d,0xc2,0x4b,0xa8,0xe4,0xf2, +0xe4,0xea,0xf8,0x42,0x86,0x3b,0xa5,0xcf,0x33,0xf7,0x2d,0xe9, +0xdb,0x24,0x5d,0x56,0xaf,0x6f,0xf9,0x2e,0x6b,0xb5,0x84,0xb9, +0xe7,0xfd,0x94,0xf2,0xe2,0xad,0x36,0x23,0x58,0x4e,0xde,0x43, +0xae,0x58,0x49,0x1b,0x6f,0xda,0x85,0xe7,0xd4,0xea,0xb0,0x25, +0xb5,0x79,0x2d,0xd9,0xad,0x0c,0x57,0x3d,0x34,0xb9,0x99,0xce, +0x1f,0xcf,0xbe,0x9d,0x7a,0x97,0x21,0xac,0x77,0x0b,0xaa,0x74, +0x68,0x74,0xe8,0x74,0x39,0x6c,0xbf,0xd3,0x7d,0x63,0x50,0x96, +0x80,0xfd,0x29,0xe7,0x49,0xcd,0x37,0x6d,0x57,0x6d,0xee,0x39, +0xfe,0xe8,0x99,0xdb,0xcd,0x6e,0xcd,0x3d,0x50,0xac,0x5e,0x3e, +0xd4,0xd4,0xd6,0x55,0xd6,0xcb,0x4c,0x74,0xe3,0x5f,0xf9,0xad, +0x63,0xb3,0xcf,0x66,0xf3,0xe7,0x62,0xed,0xd7,0x38,0xb0,0x4e, +0x50,0x61,0xc1,0x56,0x66,0x95,0x17,0x96,0x16,0x33,0xd0,0xd1, +0x8a,0x3c,0x2c,0xac,0xad,0x0d,0x1c,0x74,0x2b,0xcd,0x6a,0xed, +0x1a,0x62,0x63,0xcf,0x9c,0x39,0x13,0xcb,0x60,0xcb,0x29,0x57, +0x34,0x69,0xa1,0x3d,0x65,0x41,0x8b,0x53,0x60,0x18,0xa5,0x06, +0xa6,0xfb,0xa5,0xfb,0x1c,0x3e,0x7e,0x20,0x62,0x6f,0xd4,0x95, +0xde,0xab,0x57,0xce,0x4f,0x58,0x54,0xb0,0xa6,0xda,0x06,0xba, +0x9a,0x46,0x81,0x19,0xfe,0x99,0x7e,0x99,0x6d,0x35,0x2d,0xed, +0xf5,0x1d,0x56,0xe5,0xac,0x8d,0x81,0xb5,0xb5,0xb1,0x4d,0x60, +0x5a,0x40,0x5a,0x50,0x8a,0x83,0x3d,0xdb,0x6f,0xd5,0x6d,0xdd, +0x68,0x13,0x74,0x2c,0xf0,0x58,0x60,0x28,0x7f,0xd6,0xb5,0xc9, +0xa9,0x78,0x03,0xf6,0xf6,0x99,0x6f,0x44,0x37,0xe2,0x09,0xfd, +0x1c,0x82,0x08,0x7a,0x34,0xfe,0xc2,0xd9,0xc1,0x73,0x49,0x01, +0x49,0x01,0xe7,0xfc,0x9b,0x0a,0x59,0xb7,0x21,0x9b,0x0b,0xf6, +0x8d,0xcc,0x16,0x1c,0x81,0x3a,0xec,0x5b,0x4d,0x1b,0x74,0x9b, +0x6b,0x59,0xeb,0x1e,0xe3,0x0e,0xd3,0x1a,0x06,0xff,0x2f,0x7c, +0x18,0xf5,0x36,0x34,0x0f,0x14,0xb7,0x99,0x12,0xce,0x60,0x6a, +0x63,0x62,0x60,0x47,0x9c,0xf6,0x4f,0x49,0xf0,0x75,0x92,0xe0, +0xf3,0xfa,0xef,0x05,0xdf,0xbf,0x6d,0x4b,0x4f,0x07,0x5f,0x9f, +0x71,0xbf,0x7e,0x87,0xd6,0x4c,0xf0,0x39,0xfe,0x29,0xf8,0x78, +0x90,0x87,0x1c,0xf1,0x5c,0x04,0x6c,0x1c,0xc8,0x67,0x01,0x5d, +0x29,0xec,0x62,0xf1,0x3b,0x2e,0x78,0xb1,0x1f,0xde,0x70,0x32, +0x74,0x8f,0xfb,0x0a,0x9b,0xc3,0x3d,0xce,0x6c,0xed,0x78,0xd1, +0xc3,0xe4,0x2b,0x0c,0x34,0x78,0xa0,0x52,0xed,0xe2,0x23,0x39, +0x6a,0xdd,0x05,0xac,0xff,0xb0,0xeb,0x65,0xd7,0x3e,0x06,0x7f, +0x8a,0xf5,0x51,0x64,0x7f,0xf0,0xe5,0xc0,0x6e,0xbd,0x50,0x36, +0xdd,0x24,0x59,0x2b,0x5e,0xcf,0xea,0x2c,0x1b,0x6a,0x17,0x64, +0xce,0xaf,0xc1,0x5e,0xa9,0x07,0x7f,0xa5,0x3c,0xf4,0x5c,0xf5, +0x9d,0xcc,0xfa,0x85,0xe7,0x9d,0x2e,0xd8,0x6b,0x99,0xee,0xb3, +0x5b,0xeb,0x4a,0x82,0xf7,0xa7,0xaa,0x47,0xcd,0x97,0x07,0xaf, +0x99,0x4d,0x18,0x0f,0x99,0xd7,0x74,0xb0,0x9a,0xcd,0x4a,0xad, +0x87,0x1b,0xcf,0x5f,0x6c,0xbc,0x93,0xf9,0x92,0xf9,0xbe,0x0f, +0x0f,0x51,0xe9,0xd5,0xa9,0x35,0x49,0x55,0x24,0xdd,0xf1,0x36, +0x14,0xb4,0xcd,0x5e,0x49,0x4b,0xd3,0xa0,0xdc,0xa8,0xc8,0x2a, +0xbb,0xa0,0xae,0xb0,0x2d,0xbf,0x83,0xc1,0x23,0xeb,0x50,0x81, +0x62,0xce,0x8e,0xd4,0x5d,0x3c,0xe8,0xdd,0xf4,0x7e,0xe0,0x79, +0x55,0xda,0xec,0x26,0xfa,0x51,0x1a,0x85,0xbc,0x7e,0xb4,0xe1, +0xa3,0x70,0x42,0x1c,0x83,0x52,0xdd,0x79,0xc9,0x67,0x18,0xa9, +0x1f,0xa9,0x27,0x91,0x7c,0x33,0x9d,0x00,0x75,0x47,0x55,0x07, +0x0d,0x09,0xc4,0xe5,0xd7,0x8d,0xbc,0x0d,0x71,0x3c,0x8f,0xe7, +0xdb,0xdb,0xe6,0x6c,0x8f,0x69,0x8f,0xa0,0x9d,0xaf,0x93,0x84, +0xc7,0xbb,0x12,0x80,0x73,0xe5,0x21,0xae,0xef,0xcc,0x80,0xa8, +0x9f,0x17,0x3d,0xbc,0xe4,0xab,0x12,0x55,0x89,0x2a,0xe3,0xf8, +0xc9,0x04,0x89,0xd2,0x0a,0x18,0xf7,0x9c,0x10,0x0e,0xf2,0x07, +0x02,0xed,0x46,0xa9,0x8d,0xa9,0xad,0x49,0x8d,0x0c,0x28,0xc1, +0x75,0x6e,0x2d,0xbe,0x0e,0xfb,0x28,0x5b,0xbc,0x40,0x06,0x6f, +0xe6,0xf6,0x8e,0x5c,0x84,0xd7,0x47,0x46,0xc4,0x7b,0xa9,0x35, +0xfc,0x52,0x1c,0x47,0xdc,0x04,0x8e,0xb4,0x70,0x4a,0x07,0x41, +0x2c,0xbc,0xc6,0xb1,0x34,0xd7,0x05,0x36,0xa8,0x60,0x7f,0xd6, +0x96,0x94,0x6d,0x7c,0xab,0xe3,0xb6,0xcf,0x63,0x4f,0x92,0x66, +0x59,0xb8,0x05,0xd5,0xde,0xcf,0x26,0x30,0xc6,0xeb,0xbc,0x4d, +0xfe,0x9b,0xed,0x79,0x26,0xfa,0x0a,0xc4,0xe8,0x77,0x9a,0x18, +0x74,0xf5,0x77,0x54,0x97,0x70,0x53,0x42,0x0d,0xfe,0x0f,0xfd, +0x2c,0x69,0xc3,0xf3,0x3f,0xf6,0xb3,0x62,0xdc,0x4f,0xfd,0x6b, +0x3f,0xab,0x54,0xc2,0x4d,0x99,0x87,0xd9,0xe8,0x9b,0xd6,0x81, +0xee,0xda,0x8b,0xe5,0xde,0x65,0x5e,0x25,0x1e,0x95,0xcd,0xac, +0x4b,0x89,0x53,0xb1,0x63,0x41,0x56,0x6b,0x52,0x4f,0x1c,0xc1, +0x72,0x4d,0x17,0x4a,0x39,0x46,0xe9,0x84,0xb6,0x9c,0x51,0x64, +0x48,0xb0,0xe0,0x93,0x9d,0x54,0xa6,0xae,0xcc,0x25,0xea,0x71, +0x71,0xf9,0xad,0x73,0xf2,0xe7,0x26,0x4e,0xdf,0x99,0x58,0x74, +0x95,0x0b,0xd3,0x07,0x7d,0xfa,0xa4,0x49,0xb8,0xe5,0x51,0x7b, +0xab,0x62,0xcb,0x7c,0xab,0x5c,0x37,0x6b,0xb6,0xc9,0xbb,0x55, +0xd8,0xe2,0xea,0xa4,0x6d,0x60,0x7a,0xc0,0x8a,0x01,0xad,0x83, +0xa8,0xdb,0xae,0xcb,0xa8,0xd1,0xa8,0xa2,0x99,0x35,0xe9,0x31, +0x69,0x31,0xa9,0x66,0x40,0x79,0x1d,0x6a,0xd8,0x53,0x8f,0x67, +0x97,0x7e,0xd9,0x51,0xc0,0xba,0xbe,0xb2,0xfb,0x2f,0xab,0x6f, +0x18,0xee,0x30,0xbe,0x8d,0x9a,0x9f,0xe7,0x03,0x95,0xfc,0x52, +0x70,0x96,0x0d,0x5b,0x23,0xc4,0x73,0x6c,0x77,0x31,0x50,0xe2, +0x8e,0x6c,0x43,0x13,0x89,0x9c,0x4c,0xd3,0xc5,0xc5,0xb4,0x52, +0x81,0xcf,0x15,0x39,0xf8,0x84,0x6a,0x4e,0xe1,0xb7,0x7b,0x58, +0x4b,0x1b,0x65,0xcb,0x60,0x25,0x9a,0x73,0x80,0x73,0x28,0x45, +0xef,0xac,0x6a,0x9c,0x06,0xdf,0x4d,0x1d,0x0c,0xbd,0x1c,0xda, +0x25,0xed,0xaf,0x55,0x49,0xbb,0x30,0x6f,0xf5,0xd7,0x7a,0x24, +0xad,0x25,0x3e,0x29,0x4d,0x23,0x0d,0x09,0x4b,0xb8,0x70,0xff, +0x92,0x64,0xbe,0x84,0x04,0x94,0x87,0x06,0xef,0x5d,0xff,0x3c, +0xdf,0x02,0xe2,0xdd,0xb7,0x5a,0x4b,0xaa,0x4e,0xd3,0xde,0x75, +0xe4,0xbd,0xdb,0x23,0x69,0x2d,0x09,0x25,0xad,0x25,0xb7,0xdf, +0x5b,0x4b,0xa2,0x3e,0xa9,0x77,0xb7,0xd0,0xe5,0xa2,0x32,0xf2, +0x35,0xdd,0x43,0x20,0x25,0x68,0x50,0xf6,0x75,0x28,0x82,0xbf, +0x54,0xf7,0xd6,0x54,0x96,0x27,0x26,0xc6,0x9f,0x4a,0x8e,0x82, +0x90,0xcf,0xd9,0xd2,0x6e,0xec,0xf4,0xf2,0x68,0xc2,0xf1,0xa8, +0x70,0xfe,0x68,0xd3,0xa8,0xd8,0xa4,0xac,0xb3,0xb9,0x71,0xf9, +0xb2,0xe0,0xdb,0x8b,0xbd,0x6e,0x6b,0xee,0xc6,0xf6,0xfa,0x60, +0x45,0x05,0x1f,0x51,0xb5,0xc5,0x9f,0x5a,0x33,0xe1,0xbb,0x91, +0x8e,0x78,0x3d,0x77,0x10,0xcb,0xd1,0x69,0x3a,0x32,0xf0,0x21, +0xd5,0x9a,0x9a,0x57,0x27,0x2f,0xde,0x77,0x79,0x80,0xe6,0x4e, +0xe2,0xc5,0x08,0x4f,0xf4,0x5f,0x05,0x3f,0x38,0x43,0x63,0x3f, +0x6c,0x84,0x60,0x29,0xec,0xc5,0x4b,0x69,0x6e,0x3e,0xc8,0xa0, +0xac,0xc3,0x69,0x7b,0x13,0x15,0x88,0xa0,0x3e,0x7e,0x35,0xe0, +0x76,0xc0,0x28,0x83,0xd3,0xf9,0xd6,0xd4,0x83,0xec,0x9f,0x92, +0x5e,0x18,0xf0,0x4e,0x91,0xb6,0xa6,0x26,0x13,0xc5,0xe5,0xa8, +0xbb,0xbd,0xa6,0xbf,0x70,0x9c,0xb9,0xda,0x89,0x2f,0x50,0x49, +0x79,0xe7,0xf2,0xe3,0x73,0x09,0xf9,0x10,0x6e,0x33,0xdd,0x77, +0x40,0xb5,0xce,0x96,0x2d,0x2e,0x2c,0x28,0xce,0x2d,0x29,0x32, +0xad,0xb0,0xae,0x77,0x30,0x75,0xd6,0xf1,0x50,0x70,0x13,0x66, +0xb2,0x16,0xb6,0x9a,0x96,0x2a,0xd6,0x52,0xb6,0x6d,0x67,0xcd, +0xde,0xb1,0xba,0x61,0x79,0xcd,0x3c,0x94,0x70,0xed,0x50,0x9e, +0x6d,0xaf,0x3c,0xb5,0xfc,0x8f,0x6c,0x3b,0x68,0x14,0x8e,0xce, +0xb0,0x6d,0x22,0x15,0xf8,0x56,0x73,0x05,0xab,0x37,0xa4,0x31, +0x70,0xb8,0xc7,0xca,0x55,0x22,0x15,0x0a,0xbc,0xbf,0x8c,0xf8, +0x22,0x92,0x97,0x0a,0x9d,0x4f,0xc6,0x6e,0x5e,0x30,0xad,0x62, +0x35,0x0c,0x89,0x54,0xd0,0x17,0x66,0xf2,0xcf,0x02,0xf7,0x56, +0x76,0xd6,0x76,0x34,0xa4,0x09,0xd9,0x3b,0xe5,0xa3,0x15,0xdd, +0x75,0x03,0x96,0x57,0xed,0xbe,0x75,0x28,0xe8,0x64,0x77,0x94, +0xab,0x56,0x18,0xd6,0x30,0x53,0x76,0x90,0x8d,0x4c,0xc4,0xda, +0xed,0x34,0x7c,0xb4,0x0e,0x81,0x1d,0xe5,0xa5,0xe3,0x6a,0x6e, +0x61,0x6b,0xde,0xe0,0xd8,0xe2,0x4e,0xc0,0x8e,0x5f,0x30,0x00, +0xda,0xdc,0x3b,0x2b,0xe8,0xb5,0xe1,0x9a,0xa6,0x4a,0x72,0x9d, +0x8e,0x4d,0x17,0x92,0x07,0xe2,0x3a,0x64,0x21,0x1e,0x16,0xa3, +0xaf,0xf0,0xe9,0x1f,0x69,0xb1,0x3f,0x37,0x88,0x5e,0x5b,0x3e, +0xb2,0x7e,0x68,0xc2,0xd3,0xf9,0x8e,0x2d,0x0d,0xab,0xea,0x19, +0xee,0x12,0x56,0x40,0xaf,0x6b,0x9e,0xb5,0x8e,0x75,0xf2,0x74, +0xde,0x6c,0xb3,0xf5,0x4a,0x7e,0x45,0xd9,0x37,0x12,0x36,0x26, +0x9a,0xc9,0x5b,0xdf,0xab,0x24,0x6f,0x03,0xa7,0xd9,0x98,0xc5, +0x09,0xd3,0x28,0x53,0xa2,0x29,0x2f,0x4a,0x34,0xa5,0x24,0x6f, +0x9d,0xd5,0x9c,0x88,0xa6,0xf4,0xcf,0xf7,0xcb,0xad,0x79,0x5b, +0x53,0xba,0x4c,0x4f,0xca,0x48,0x5a,0x0e,0x5d,0x06,0xcd,0xba, +0x9e,0x96,0x52,0x4d,0x29,0x7c,0xa3,0x29,0xbb,0x67,0xf2,0xb6, +0x28,0xb6,0x88,0xef,0x43,0x4f,0x52,0xd0,0x88,0x9c,0xc7,0xf4, +0x1e,0x58,0xb5,0x9a,0x7b,0xb0,0x2d,0x86,0x1d,0x7b,0x2a,0x95, +0x18,0x6e,0x35,0xf8,0x21,0xdf,0x23,0xd6,0x4a,0x86,0x26,0x75, +0xd6,0x6c,0x5f,0x7f,0xf3,0xb5,0x82,0x5b,0x0c,0x78,0x73,0xf3, +0x50,0xf3,0xfe,0xc1,0x43,0x57,0xd4,0x2b,0xdb,0x58,0xfd,0x16, +0x93,0x5e,0xdb,0x61,0x06,0xde,0xed,0xc5,0x8b,0x29,0xdf,0xc6, +0xc0,0x96,0xd0,0x56,0xe6,0x55,0x2f,0x56,0xa3,0x92,0x5b,0x13, +0x3b,0xce,0xf6,0xea,0x11,0x31,0xa7,0x1b,0x66,0x70,0xd4,0x98, +0xc1,0xf3,0xf4,0xe1,0x1d,0x2a,0xd8,0x24,0xc0,0xc2,0xc7,0x9a, +0xc1,0xac,0xfe,0x4f,0x94,0x95,0x9a,0x81,0xbe,0x86,0x69,0x95, +0x09,0x5b,0x5d,0x56,0x59,0x56,0x5a,0xc9,0xe0,0x3a,0x7a,0x77, +0x81,0xf7,0x03,0x7e,0x2f,0xf6,0xd6,0xac,0xf4,0x56,0xf9,0xc7, +0xb4,0x76,0xba,0x0c,0x9e,0x8d,0xe3,0x68,0x8b,0xf0,0xa4,0x4e, +0x79,0xf0,0x82,0x18,0xfa,0x94,0x4b,0x8c,0x5d,0x94,0x27,0xe3, +0x1f,0x7d,0x34,0xdc,0xef,0x93,0xc5,0xfc,0x7e,0x1a,0x3f,0x53, +0x3d,0x85,0xb9,0x2d,0x67,0xe5,0x13,0xbb,0xcf,0x0c,0x75,0x2d, +0xe2,0x66,0x53,0xe5,0x55,0xc5,0xb5,0x05,0x0d,0x0c,0xcc,0x07, +0x4d,0x94,0x68,0x96,0x66,0x91,0x6d,0xc9,0x10,0xaa,0x92,0x5d, +0x9f,0xd9,0x9c,0xd6,0xc1,0x70,0x73,0x38,0x0a,0xe5,0xed,0xcd, +0xdc,0x94,0xbc,0x85,0x9f,0x35,0xba,0xeb,0xfb,0x9d,0xf7,0x0d, +0x06,0xc7,0xe2,0x46,0x54,0x79,0x2f,0x73,0x46,0x7c,0x06,0x4a, +0xc4,0x27,0x3c,0xfd,0xc3,0xac,0x11,0x01,0x51,0xcf,0xa1,0x19, +0x10,0x75,0x92,0x94,0x5e,0x69,0x9a,0x4b,0x67,0xc8,0x48,0x9a, +0xab,0xf1,0x20,0xea,0x9b,0x2f,0x4d,0xf3,0xa2,0x99,0x59,0xa3, +0x99,0x0e,0xb2,0x04,0x44,0xbb,0xf5,0xdb,0xa4,0x33,0x64,0x92, +0x34,0x9f,0x06,0xd1,0x7e,0x29,0x88,0xf2,0x1d,0x64,0x68,0x10, +0x7f,0x88,0x40,0x36,0x1e,0x3e,0xcd,0x01,0xaa,0xde,0xb9,0x9d, +0xc5,0xb3,0xed,0xf0,0x22,0x5f,0xbc,0x2e,0xf2,0xd8,0x2a,0xf7, +0x95,0x16,0x0a,0x3d,0x8e,0x6c,0xcb,0x83,0x82,0xa7,0xc9,0x77, +0x18,0xc8,0xf4,0x41,0xf5,0x07,0x4a,0xf7,0xe6,0xed,0xeb,0x2d, +0x60,0x7d,0xaf,0x3b,0xdf,0xb5,0xbe,0xc2,0xe0,0xf7,0xb0,0x2b, +0x3a,0x36,0xe4,0x73,0xd5,0x6d,0xd8,0xc0,0x9f,0x2d,0xd2,0xca, +0x3d,0x9c,0xa4,0xc1,0x1f,0x77,0xaf,0x8f,0x7a,0x71,0x14,0xbc, +0xaf,0x4d,0x34,0x99,0x1b,0x0f,0xad,0xce,0xab,0xd4,0x36,0xe2, +0xcf,0xb6,0x94,0x1b,0xb1,0xf0,0xf9,0x0f,0xa3,0xdf,0xa6,0xc1, +0x6c,0xc2,0x18,0x7f,0xe8,0x87,0x1f,0x12,0xa8,0xac,0xcf,0x47, +0x76,0x80,0xdc,0xca,0xaa,0x6e,0x16,0xcb,0x3d,0xd3,0xb8,0xeb, +0xf4,0x03,0xc3,0xa9,0xdb,0xa0,0xac,0x23,0xa9,0xfb,0xce,0x29, +0x10,0xf2,0x1c,0x7e,0x35,0xf0,0x16,0x9f,0xf0,0xa9,0x04,0x05, +0x6b,0x88,0x5a,0x4f,0xe2,0x1d,0xc6,0xf7,0xa2,0x79,0x14,0x14, +0xdf,0x11,0x3b,0x21,0xe1,0x15,0xbb,0x2b,0xc2,0x86,0x8a,0xd6, +0xda,0xf1,0xfc,0x51,0xfd,0x74,0xd6,0x57,0xcb,0x4e,0xc1,0x9c, +0xf0,0xf6,0xda,0xfd,0x45,0x87,0x19,0xf0,0x2d,0x46,0xee,0x97, +0xec,0x47,0x5d,0x9a,0xab,0x3b,0x2b,0xce,0x17,0x5e,0x14,0x64, +0x11,0x0f,0x39,0x2a,0x9b,0xaa,0x34,0xa9,0xd7,0x29,0x96,0x1c, +0x61,0xc0,0xbf,0x08,0xb9,0x5e,0x72,0x18,0x75,0x6a,0xaa,0x6a, +0xab,0xbe,0x50,0xcc,0xff,0xde,0x53,0xcd,0xf6,0x90,0xb9,0x5a, +0xb3,0x6a,0x83,0x62,0x89,0x0a,0xc3,0x5d,0xee,0x7e,0xab,0x53, +0x6b,0xf0,0xfb,0xac,0x34,0x41,0x59,0xb7,0x7f,0x99,0x95,0x16, +0xfc,0x8b,0x32,0xe9,0x7b,0x6b,0x56,0xfa,0x3f,0x75,0x6a,0x2b, +0x44,0xe5,0x7c,0xa7,0xb6,0x73,0xa6,0x53,0x0b,0x8b,0xb9,0xe7, +0xa8,0x13,0xb0,0xd1,0xa0,0x38,0x91,0x73,0xe7,0x12,0x69,0xb0, +0x86,0x0b,0xbc,0x48,0xfd,0x92,0x08,0xd2,0x5e,0xfc,0x25,0x22, +0x6f,0xd6,0xe3,0x2f,0x69,0xae,0x2d,0x0f,0x15,0xed,0xcd,0xd9, +0x94,0xb6,0x99,0x3f,0xc7,0xfc,0xae,0xd7,0x77,0x1e,0x37,0xdf, +0x96,0x18,0xd3,0x12,0x94,0x48,0x0c,0xb1,0x0d,0xbf,0x91,0xe4, +0x2a,0xbc,0x0e,0x13,0x91,0x6b,0x09,0x04,0x52,0xd6,0x93,0xf7, +0xeb,0xa9,0xb9,0xf0,0x8f,0xb7,0x66,0xe0,0x25,0x2c,0x6f,0x7a, +0x06,0xde,0x88,0x54,0x14,0x83,0x3f,0x74,0xa5,0xff,0xa3,0xad, +0xff,0xfd,0x19,0xf8,0x2d,0x74,0x45,0x2c,0x6f,0x2b,0x03,0xbf, +0xe1,0x8f,0x10,0xd8,0x8b,0x19,0xec,0xf3,0x04,0xa2,0xfb,0x70, +0xf4,0x13,0x0d,0x7c,0x1c,0xab,0x73,0x0c,0x98,0xae,0xc0,0xc1, +0xba,0x10,0x8c,0xd7,0x0e,0xc3,0x5a,0x88,0xe9,0xc7,0x31,0x14, +0xac,0x12,0x6f,0x45,0x4b,0xf1,0xdf,0x5f,0xd3,0x78,0xdd,0x1c, +0xf8,0x3b,0x7e,0x07,0xff,0x9d,0xc2,0x36,0xae,0x44,0x7b,0x67, +0xec,0x4a,0xde,0xcd,0x4f,0x42,0xf1,0xda,0x9b,0xc4,0x61,0x1e, +0x6f,0xf8,0xfd,0x1c,0x3e,0x3c,0x12,0xdf,0x34,0x9f,0x67,0x49, +0xf2,0x69,0x9a,0x12,0xf9,0x4b,0x28,0x91,0x49,0x00,0x2b,0x9d, +0x96,0x32,0x8c,0xd4,0x8b,0xd2,0x97,0x1a,0xf9,0xf6,0x80,0xfa, +0xff,0x6e,0xe4,0x5b,0x3c,0xec,0x8f,0x46,0xea,0x48,0x79,0x98, +0x0b,0x41,0x86,0xdf,0x8d,0xec,0x17,0x4d,0x4f,0x55,0x54,0x8b, +0xaa,0x09,0x0f,0x63,0xc0,0x0d,0x06,0x50,0xae,0x49,0x91,0x55, +0x99,0xa3,0x8a,0x70,0xbf,0xdf,0xe6,0x90,0x2c,0x03,0xf6,0x59, +0xfa,0xbd,0x82,0xeb,0x15,0x9d,0x56,0x83,0x6e,0x17,0x8f,0x36, +0x84,0xe7,0x26,0x8b,0xea,0x92,0xe0,0x1d,0xd6,0x38,0x3b,0x0c, +0x7f,0x68,0x90,0x64,0x92,0x63,0x55,0x2e,0xdb,0x53,0xda,0x5e, +0xdd,0xdc,0x64,0x5f,0xcd,0x5a,0x58,0x1a,0x3b,0xea,0xb8,0x7b, +0x94,0x78,0x57,0xfb,0x35,0xc1,0x58,0x19,0x1b,0xd9,0x89,0xef, +0xba,0x1c,0xab,0x09,0xad,0x3f,0xde,0x22,0xab,0x17,0x71,0xce, +0x32,0xc9,0x36,0xd5,0x5e,0x16,0x2f,0x3b,0x9a,0x60,0x20,0x23, +0xde,0x05,0x2b,0x91,0x75,0x9a,0x56,0xa6,0xc9,0x39,0x1f,0x73, +0xb6,0x3d,0x6c,0x34,0xa8,0xfa,0x28,0x93,0xc6,0x7d,0x8c,0x4c, +0x32,0x35,0xd3,0x74,0x13,0x7d,0x4d,0xd8,0xc1,0xf0,0x91,0xe0, +0xd6,0x20,0xe6,0x09,0xbe,0x87,0xb4,0xd3,0x0d,0x8a,0xcc,0xeb, +0x06,0xeb,0xba,0x5b,0x9b,0x7a,0x2d,0xcb,0x59,0x4b,0x03,0x23, +0x0b,0x5d,0x7b,0xd7,0x4a,0x61,0xbd,0x6f,0x3b,0xdc,0xae,0x64, +0x4f,0x74,0xe3,0x67,0x4e,0xa1,0x55,0x61,0xb5,0xe1,0x8d,0xb2, +0x7a,0xe1,0x67,0x6d,0x93,0xec,0x92,0x1d,0x65,0xf1,0xa2,0x63, +0x09,0xfa,0xb0,0x32,0x2d,0x5f,0xaf,0xd4,0xa4,0xca,0x5a,0x76, +0x97,0xc5,0x3a,0x97,0xa5,0xbe,0xfc,0x11,0x42,0xef,0xe4,0xff, +0x5c,0xfd,0x6d,0x67,0x8f,0xf1,0x05,0x87,0xf1,0x80,0x86,0xb0, +0xdc,0x8c,0xd8,0x9a,0x14,0x98,0xc7,0x1a,0xe7,0xca,0x4c,0xcd, +0x02,0x84,0x72,0x0f,0x65,0xec,0x4e,0xde,0xcb,0xf7,0x81,0xaf, +0xfb,0xdd,0xf5,0xbd,0x34,0x33,0x44,0xd9,0xd2,0xd8,0x3c,0x3e, +0x3d,0x44,0x93,0x7b,0x26,0x4f,0xa3,0xb4,0x82,0xe4,0x82,0x73, +0x79,0x5a,0x89,0x6c,0xb8,0xe7,0x31,0xb7,0x60,0x21,0x83,0x95, +0x38,0x4b,0xb1,0x9b,0xd8,0x92,0xe2,0xce,0x73,0x5f,0xf2,0x80, +0x28,0x1d,0xc0,0x37,0x80,0xe8,0xce,0xb3,0x4a,0xd3,0x48,0xe3, +0x28,0x63,0x02,0x88,0xbf,0x0f,0xe0,0xff,0x98,0x48,0x93,0x01, +0x7c,0x43,0xa4,0x67,0xa2,0x14,0xc2,0xe2,0x11,0x4c,0xc1,0x3f, +0xf1,0x14,0x8d,0xaf,0x90,0x8a,0x9a,0x97,0x9e,0x9b,0x91,0x9d, +0x7d,0x55,0x93,0xb5,0x77,0x35,0x17,0x1a,0x78,0x17,0xd8,0xb0, +0xbd,0x05,0x1d,0xa5,0x0d,0x55,0x45,0x9e,0x45,0x9e,0xf9,0xc2, +0xaa,0x2a,0xd6,0xab,0xd0,0xb3,0x50,0x98,0x5f,0x55,0x53,0xd4, +0x90,0xde,0xca,0x54,0xe2,0x2f,0xe8,0xb3,0xa9,0x09,0x69,0x71, +0xa9,0x56,0xa9,0x6c,0xa8,0xab,0x9f,0x8b,0xa7,0x6b,0x60,0x6a, +0x50,0x72,0x50,0xb2,0x9b,0x13,0x9b,0x1e,0x9a,0x11,0x9a,0x7e, +0x2c,0x28,0x24,0x30,0x24,0xe0,0x18,0x03,0xf1,0x57,0xd0,0x31, +0x37,0x7f,0xa1,0xb7,0x97,0x57,0x8e,0x77,0x8e,0x57,0x56,0x46, +0x0e,0x6b,0x84,0x7f,0x46,0xcd,0xae,0xbd,0xe6,0xd5,0x36,0x35, +0x0d,0xac,0x7d,0x9d,0x6e,0xab,0x55,0x31,0x83,0x9f,0x38,0xa1, +0x14,0xc1,0x39,0x8d,0x38,0xed,0xae,0x0c,0x36,0xb2,0xff,0xd8, +0x58,0x18,0x91,0x1d,0xd9,0xbf,0x33,0x70,0x82,0x85,0xd3,0x0c, +0x5c,0xfc,0x5b,0x38,0xb2,0x89,0x48,0xaa,0x94,0x07,0x0d,0x6d, +0x2c,0xa0,0x95,0xb3,0x7d,0xae,0xc9,0x11,0x75,0xdd,0x9e,0x92, +0xde,0x2e,0xff,0x92,0xd6,0x27,0x65,0xed,0x23,0xba,0x15,0xcc, +0x51,0xa9,0x61,0xd3,0xca,0x5c,0xe5,0xae,0x22,0x36,0x70,0xd8, +0xec,0x57,0x97,0x4e,0x86,0xd3,0xc0,0xd1,0xa8,0xe6,0x62,0xc9, +0xb3,0xe4,0x2b,0xfa,0xc9,0x6c,0x98,0x96,0xc7,0x3a,0x7b,0x6d, +0x5e,0xaf,0xcc,0xd0,0x82,0xa0,0xf6,0x0c,0x09,0x2d,0xf0,0x1e, +0x34,0x0b,0x60,0x93,0x79,0x5a,0xe0,0x62,0x71,0xc2,0x3c,0xca, +0x4c,0xb2,0x7e,0x61,0xce,0x80,0x84,0x16,0x08,0x35,0x9d,0xd5, +0x9d,0x34,0xff,0x03,0x2d,0x20,0x5f,0xc9,0x4e,0x96,0x6c,0x87, +0x59,0x37,0x4f,0x0b,0xac,0x84,0x36,0xde,0x2e,0xc2,0x37,0xb4, +0xa0,0x5b,0x4a,0x0b,0xfa,0x09,0x2d,0x28,0x14,0x15,0xc6,0x16, +0x88,0x98,0xdb,0x70,0x00,0xe1,0xba,0x13,0x78,0xad,0x35,0xfe, +0x5c,0xae,0xd7,0x59,0xa6,0x05,0xd6,0x24,0xc0,0x1e,0x68,0x5e, +0x04,0x81,0xe2,0xaf,0xa6,0x12,0xf1,0xa7,0x74,0x9a,0xb6,0x0c, +0xbc,0xcf,0x1f,0x3a,0xd4,0x2e,0x3f,0xd9,0xc5,0xe5,0xd2,0x3f, +0x70,0x8b,0x10,0xc8,0x6f,0xea,0x79,0x0c,0xcb,0xba,0xf0,0xb2, +0xff,0x92,0x9c,0xee,0xf3,0x54,0xb0,0x0e,0x2f,0x34,0x84,0x85, +0x8b,0xb1,0x3c,0x55,0x85,0xf7,0x23,0xdc,0xd3,0x7b,0x11,0x1c, +0xe0,0x18,0xcd,0xc5,0x9b,0xa3,0x0c,0x95,0xa4,0xfd,0x67,0x15, +0x89,0x43,0x4f,0x5c,0x0e,0xbe,0x15,0x74,0x81,0x7f,0xf2,0xb6, +0x89,0xaf,0xc6,0x3f,0x9f,0x7b,0x61,0x94,0x20,0x69,0x05,0xbb, +0xec,0x64,0xc4,0x2d,0xbf,0xf1,0xe7,0x79,0xad,0xe7,0xcf,0xf3, +0x12,0x77,0x4e,0x06,0xa2,0xd4,0x92,0xe4,0x92,0xb3,0xc5,0xfa, +0x19,0xac,0x70,0xb3,0xee,0xe6,0x7d,0xca,0xb5,0x46,0x6c,0x7d, +0x4d,0x6d,0x5b,0x59,0x07,0x03,0xbf,0xe0,0x77,0x28,0xcc,0x46, +0x61,0x87,0x10,0xfc,0xbe,0xdc,0xde,0xe3,0xfe,0xf6,0xca,0x9f, +0xac,0xa0,0x32,0xb5,0x65,0xee,0x51,0xaf,0x6b,0xfb,0xe0,0x2f, +0x29,0xf2,0x69,0xf0,0xb7,0x38,0x72,0x75,0xb4,0x08,0xb6,0xd2, +0x53,0x73,0x71,0xe4,0xbf,0x67,0xee,0xc5,0xfc,0xa4,0xf0,0x1f, +0x4a,0xfa,0xbf,0x4c,0x0a,0xcf,0x94,0xf4,0xb7,0x98,0xbb,0xbb, +0x94,0xb9,0xf7,0xfd,0x89,0xb9,0xc7,0xc5,0x07,0xfc,0x81,0x47, +0x30,0x62,0x43,0x1c,0x84,0xf4,0xf1,0xfc,0xaf,0x40,0x0d,0xf6, +0x77,0xe3,0xfd,0xc0,0xc0,0xc6,0x6e,0x9c,0x4e,0x9d,0xcd,0x49, +0xc8,0x8d,0xcb,0x36,0x49,0x66,0x43,0xf4,0x5c,0xf6,0x9a,0xea, +0xd5,0x39,0xb0,0xb9,0x25,0x39,0x15,0x19,0x95,0xcc,0x35,0xcc, +0x60,0x05,0x03,0x50,0xc0,0x6a,0xeb,0x61,0xbe,0x3e,0x16,0xf5, +0x5e,0x85,0x76,0x8a,0x8b,0x86,0x15,0x28,0x5f,0x21,0x63,0x5b, +0xf2,0x0e,0xe9,0x14,0xcf,0x43,0xef,0x89,0xdf,0x27,0x8a,0xa5, +0x4b,0x00,0x8e,0x13,0xff,0x49,0x26,0x8a,0xf7,0x11,0xec,0x26, +0x3a,0x72,0x25,0x7d,0x8e,0xa7,0xe1,0x79,0xba,0xf1,0xec,0x09, +0x9f,0x08,0x61,0x98,0x27,0x83,0x3f,0xc7,0xaf,0x61,0xc9,0x3a, +0xbc,0x01,0x4f,0xf6,0x43,0xff,0x2b,0xfc,0xf3,0x20,0xfc,0x0c, +0xef,0xe2,0xe0,0x43,0x54,0x8a,0xbe,0xcc,0x00,0x55,0x9b,0x91, +0x5e,0x27,0x0f,0x35,0x78,0xd7,0x53,0xfe,0x94,0xec,0xd9,0x28, +0xc9,0x27,0xd1,0xf7,0xac,0x7f,0x47,0x21,0xeb,0x71,0xd9,0xec, +0xb1,0xed,0xa0,0xa9,0x27,0x9b,0xe9,0x99,0xe5,0x98,0xe5,0xa0, +0x13,0x71,0xe8,0x84,0x52,0xf4,0x8d,0x07,0xb7,0x81,0x19,0x7e, +0x6d,0x50,0xc2,0x3a,0xa9,0x1a,0xee,0xd6,0x53,0xf0,0xc9,0xf3, +0xca,0x13,0xe6,0x75,0x5e,0x6c,0x9c,0xa8,0x99,0x18,0x4d,0x1a, +0x49,0x69,0x4b,0x76,0x69,0x67,0x97,0x79,0xe2,0x23,0x1e,0x78, +0x6e,0x44,0xaa,0x3e,0xdb,0x11,0x3b,0x7a,0xf6,0x62,0xa2,0x50, +0xc7,0x4e,0xdd,0xc9,0x3c,0x28,0x25,0x28,0x25,0x38,0x89,0x38, +0x75,0xc0,0x6a,0xc4,0xa0,0xcd,0xc4,0x4f,0xe8,0xeb,0xe5,0xeb, +0x83,0x65,0x4e,0xb2,0x09,0xda,0xc3,0x67,0x2e,0xc6,0x5e,0x8c, +0x93,0xc5,0xdc,0x90,0x78,0x16,0xdd,0x17,0xd7,0x13,0xdf,0x7e, +0x96,0xe1,0xd2,0xc5,0x6b,0xd0,0x6a,0x1c,0xfa,0x9c,0x86,0x50, +0xbc,0x8c,0xd4,0xa5,0xd0,0xd7,0xf4,0xe4,0x72,0x4e,0x06,0x35, +0x29,0xd4,0xef,0x2c,0xdb,0xdd,0x5b,0xc4,0x3a,0x3c,0xb0,0xbf, +0x6e,0x46,0x1c,0x72,0x1b,0xa7,0xa3,0xda,0x2b,0x55,0x0f,0x72, +0xef,0x1b,0xa4,0xb2,0xde,0xdb,0x1d,0x15,0xed,0x8f,0x90,0xa4, +0x6a,0xe4,0x35,0xdb,0x5b,0xd8,0x75,0xfe,0x8d,0x66,0x73,0x9f, +0xd6,0x6c,0x7e,0x7f,0x5e,0x0e,0xe0,0xa4,0xf7,0x47,0xcd,0x36, +0x43,0xe6,0x4e,0xf1,0x63,0xff,0x47,0xcd,0xb6,0x95,0x2e,0x8b, +0x2d,0x15,0x95,0x88,0xa4,0x80,0xd9,0x9e,0x25,0x91,0xe1,0x64, +0xe4,0xa1,0x15,0x2e,0x23,0x9b,0x2d,0xfb,0xb6,0xe1,0xc5,0x3b, +0xcb,0x08,0x6e,0xb3,0x77,0x9e,0x3d,0x2a,0xff,0x89,0x49,0xa0, +0xca,0x56,0x3c,0xdb,0x07,0x4b,0x37,0x96,0xf6,0xb2,0x78,0xf9, +0xc3,0x3d,0x37,0x2d,0xbe,0xe3,0x4f,0x52,0xef,0x47,0x70,0xa7, +0x17,0xdf,0xa1,0x1c,0xa7,0x56,0x20,0xc8,0x7b,0x86,0x45,0x3d, +0x20,0x22,0xaf,0xdd,0x20,0xfa,0x09,0x1b,0x1c,0xa4,0x93,0xb5, +0x64,0x06,0xa9,0x86,0x8c,0xac,0x26,0x79,0xb1,0x0a,0x17,0xcb, +0xa5,0xd0,0xb0,0x1a,0x6e,0xa2,0x35,0xf0,0xf9,0x33,0x0a,0x56, +0xe0,0xcf,0xa7,0xdf,0xad,0x26,0xef,0x56,0xc2,0xe7,0x3f,0x51, +0x44,0x75,0x2c,0x42,0xb9,0x4a,0xe9,0x3b,0x93,0x76,0x93,0x78, +0x09,0xbb,0xee,0x7f,0xdf,0xf7,0xf2,0x7f,0x50,0x6f,0xf0,0xec, +0x8f,0x8d,0x61,0x7e,0xa6,0xc9,0xe4,0xcd,0x92,0x18,0x49,0x63, +0x78,0x1a,0xec,0xa7,0x29,0x09,0x01,0xfb,0x02,0x5f,0x7e,0xa2, +0x7c,0xe4,0xad,0x6a,0xed,0x3c,0x53,0xad,0xcd,0xd9,0x5e,0xd3, +0xee,0x19,0xb0,0x77,0x75,0x8d,0x99,0x01,0xfb,0xd8,0x81,0xd8, +0x69,0xb0,0xe7,0x97,0xc4,0x48,0x1a,0xc3,0x57,0xc5,0xba,0x44, +0x99,0xd6,0x0f,0xd0,0x27,0xb9,0x17,0xa8,0x0f,0x0b,0x9f,0xea, +0xac,0xc3,0xaa,0xb4,0xa8,0x25,0xb6,0xf5,0x74,0x07,0x23,0xde, +0x0d,0xe7,0x38,0x7f,0xec,0x40,0x61,0x8d,0x40,0xbc,0x64,0x27, +0x5e,0x22,0xd7,0x6e,0xd6,0xf5,0x3d,0xbf,0x82,0x40,0x16,0x34, +0xa8,0xe0,0x55,0x47,0x04,0xf8,0xe3,0x03,0x25,0x06,0x2c,0x7c, +0x78,0xe3,0xee,0x70,0xdc,0x2f,0x4c,0x3c,0x75,0x6e,0xf1,0x03, +0x1d,0x58,0xbc,0xa7,0xb8,0x87,0x50,0xda,0x9b,0xfb,0x7a,0x02, +0x9f,0x33,0x44,0x3c,0x9e,0x41,0xdc,0x2c,0x58,0x21,0x9e,0x45, +0x71,0x43,0xf8,0x39,0x8f,0xe9,0xea,0xf1,0x9a,0x44,0xe5,0x47, +0x0e,0x1c,0xbb,0x18,0xd6,0xc9,0xe0,0x9c,0x37,0x98,0xce,0x37, +0x87,0xa7,0xbb,0x2a,0x03,0x92,0xb6,0x11,0xbf,0x80,0xc4,0xf0, +0x84,0x7e,0x94,0x1e,0x89,0x98,0xcb,0x40,0x4d,0xd3,0xff,0xe9, +0x1e,0x8a,0xaf,0x64,0xd1,0xd8,0x5b,0x2a,0xff,0x0f,0x3d,0x94, +0x6e,0x49,0x0f,0x45,0x48,0xb4,0x98,0xfb,0x5b,0xf4,0x3f,0xb6, +0x57,0xba,0x68,0x6c,0x9a,0xae,0xc4,0xf3,0xd3,0xf3,0x12,0xac, +0x98,0x6e,0x1b,0x89,0x73,0xeb,0xd1,0x20,0x1c,0xc6,0x51,0x3f, +0x6b,0xae,0xc0,0xbe,0xf8,0xf0,0xc0,0xd4,0xfc,0xa1,0xcb,0x70, +0x57,0x79,0x08,0x1e,0x71,0x0b,0x7f,0x84,0x5f,0x29,0x6e,0x1d, +0x3c,0x41,0xe2,0xb5,0x6b,0xb8,0xb5,0xd4,0x20,0xd6,0x45,0xf0, +0x19,0xb4,0xe3,0xcf,0xf8,0x03,0xb2,0x57,0xa0,0xdc,0x83,0x19, +0xdb,0x93,0x76,0xf2,0xe0,0xc0,0x2f,0x90,0xbb,0xca,0xe0,0x14, +0x09,0x38,0x64,0xfd,0xfc,0xfb,0x60,0x13,0xe6,0x3e,0x39,0x58, +0x8d,0xf0,0x5d,0x58,0x07,0x77,0x09,0x0d,0x1d,0xe7,0x5b,0x47, +0x92,0x5a,0xd3,0x26,0xa9,0x35,0x57,0xbc,0xf8,0x5a,0x23,0x59, +0x17,0xe8,0x22,0x95,0xa0,0x43,0xf7,0xc7,0x40,0x66,0x40,0xd2, +0x3a,0xf2,0xd4,0x72,0xd1,0x70,0xd6,0x0e,0xcc,0x25,0xd5,0x26, +0xb7,0x9a,0xd4,0x9a,0xa2,0x8b,0xa4,0xd6,0xf8,0xaa,0xb9,0xa9, +0xb8,0x92,0x5a,0x73,0x2c,0xf5,0x58,0x32,0x91,0xa0,0x6d,0xe6, +0x1d,0x86,0x4d,0xfa,0x9e,0x16,0x9e,0x36,0x5e,0x4e,0x07,0x4e, +0xb2,0x71,0xba,0x1d,0xb1,0x9d,0xa2,0x0e,0x91,0x2c,0xff,0x48, +0x1c,0x3f,0xe6,0x45,0xa2,0xc2,0x38,0x46,0xfc,0x0f,0xf1,0x6a, +0xe4,0x59,0xec,0x50,0xec,0x9a,0xe5,0xec,0xc8,0x96,0xfa,0x57, +0x09,0x8b,0xdc,0x19,0xd1,0x94,0x10,0x39,0x37,0x7b,0x5e,0x0e, +0x78,0xdc,0xf9,0xba,0x06,0x3e,0x2a,0x86,0x2f,0x0d,0x53,0x58, +0x7f,0x4c,0x7b,0x7e,0xe9,0xb4,0x25,0x18,0xde,0x89,0x80,0x05, +0xa7,0x60,0x31,0x03,0x8a,0xbd,0x58,0x11,0x68,0x7d,0x4c,0xe3, +0x9b,0x78,0x2f,0x85,0x1b,0x82,0xf0,0x3a,0x3d,0xfc,0x99,0x5c, +0x87,0x85,0xcc,0x05,0x58,0x9b,0x0a,0x8a,0xd0,0xb1,0x08,0x68, +0xc8,0xa5,0x4f,0x63,0xa5,0x64,0xbc,0xb5,0x10,0x2f,0x30,0x5e, +0xab,0xbe,0x7f,0xb7,0x46,0xa5,0x19,0x7b,0xa5,0x6f,0xe0,0x62, +0xfb,0x9d,0x4c,0xe5,0x02,0xdd,0x52,0xdb,0x0a,0xab,0xbe,0x24, +0x51,0x6f,0x06,0xd8,0xb2,0x46,0xb9,0x32,0xdc,0x56,0xf1,0x7b, +0xc8,0x00,0xf4,0xbb,0x69,0xac,0x86,0x65,0x11,0xb7,0xb4,0xeb, +0x12,0xcc,0x83,0x47,0x34,0x9e,0x87,0xab,0x11,0x84,0xdc,0xc0, +0x21,0x34,0x9e,0x7a,0x88,0x92,0xb4,0x13,0x8e,0xc4,0xaa,0x76, +0xa6,0xb3,0x27,0x87,0xc3,0xae,0x1e,0xef,0xe5,0x8f,0x66,0x6e, +0x40,0x65,0x77,0xd3,0x7f,0x3e,0xfb,0xc2,0x28,0x9e,0x8d,0xdc, +0x1c,0xb4,0xd9,0x8d,0x17,0x92,0xbf,0x48,0x98,0x7d,0x7b,0x56, +0x20,0xcf,0xec,0x07,0x65,0x4d,0x03,0xa4,0xab,0x90,0x64,0xf9, +0x19,0x25,0x03,0x29,0x67,0x1a,0x9c,0xee,0x15,0x39,0x4a,0x96, +0x21,0xf1,0x9d,0xb8,0xda,0xf3,0xd5,0x33,0x22,0xd2,0xe5,0x8f, +0x15,0xe7,0xad,0x5e,0xd1,0x29,0xd7,0x3f,0xe1,0x8e,0x84,0x33, +0xe9,0x8a,0xcd,0x11,0xb6,0x10,0x5b,0x81,0x05,0xcd,0xad,0xc0, +0x6b,0xd0,0x6b,0x78,0xb9,0x94,0xfe,0x95,0xeb,0x42,0x87,0x22, +0x65,0xc4,0x1f,0x5c,0xe8,0xe2,0x1a,0x0c,0x47,0xb9,0x65,0xf4, +0xe6,0x93,0x22,0x01,0x2c,0x8c,0x83,0xfd,0x89,0x20,0x97,0x28, +0xfb,0xc5,0x10,0xbc,0x4b,0x17,0x9e,0xc9,0x8f,0xcd,0x3d,0xc3, +0xe0,0x85,0x70,0x8b,0x14,0xe9,0x1f,0xa1,0x87,0xc2,0xcb,0xe7, +0x7c,0x45,0xde,0xd1,0x38,0x50,0x0d,0xa5,0x6b,0x26,0x2b,0x9d, +0x3d,0xdc,0x95,0xc9,0x46,0x8c,0x86,0x4c,0x04,0x0f,0x30,0x38, +0x43,0x22,0x03,0xb3,0xdf,0xc8,0x40,0x82,0x1c,0xe2,0x70,0xd8, +0x81,0xa0,0x67,0x03,0xb5,0xee,0xc4,0xe7,0x91,0xcb,0xa3,0x88, +0xf9,0xbf,0x91,0x88,0x8a,0x9f,0x59,0x5c,0x47,0xd4,0xcd,0xb8, +0x90,0x8f,0x28,0x49,0x22,0x39,0x1b,0x9d,0x10,0x44,0x09,0xa2, +0xa7,0xd7,0x51,0xfc,0xcf,0x9b,0x1a,0x9e,0xce,0x3b,0xf9,0x88, +0xea,0x8e,0xed,0x89,0xed,0x8e,0x93,0x95,0xae,0xbc,0xac,0x8c, +0xad,0x8c,0x23,0xc2,0x46,0xfc,0x0a,0x7f,0x48,0xd0,0x23,0xf3, +0x35,0xc4,0xf7,0x70,0xea,0x10,0x4c,0x4a,0xda,0x5a,0x38,0x05, +0x6b,0x7f,0xea,0x5d,0xf9,0xab,0xde,0x17,0xf8,0xb3,0x5f,0xf5, +0xbf,0xc0,0xef,0xfe,0xaa,0xfb,0x85,0x92,0xfe,0x55,0x5c,0x03, +0xea,0x4b,0xf9,0xc7,0xda,0xad,0x69,0xa7,0x03,0x2b,0xf7,0xe3, +0x4f,0xd5,0x8a,0xf5,0x59,0x90,0xbb,0xf8,0xeb,0xdd,0xe4,0x67, +0x44,0x19,0xd7,0x0c,0x41,0x6d,0x3c,0x95,0xb4,0x06,0x66,0x2b, +0x82,0x9c,0x22,0xff,0xe0,0xf0,0xc2,0xd1,0x25,0x57,0xed,0xaf, +0x31,0x3f,0xc0,0xf7,0x08,0x7f,0xf6,0x5f,0xf0,0x19,0xc5,0x25, +0x71,0xdb,0x51,0x9a,0x46,0xa2,0x52,0xbc,0x32,0xcf,0x0c,0x47, +0x8f,0x5e,0x3f,0x3a,0xc8,0xb7,0x15,0x9a,0xfe,0x4d,0x5b,0xa1, +0x5f,0x9a,0x60,0x41,0xa2,0xa0,0x96,0x0c,0x36,0xf8,0x8a,0xdf, +0x65,0xef,0x01,0x73,0x49,0x8f,0xc7,0x35,0xd1,0xc5,0x32,0xc2, +0x3c,0xca,0x3c,0x7a,0xe0,0xfe,0x05,0x90,0xe9,0x07,0xc6,0xa4, +0x88,0xf5,0xd2,0x75,0xd7,0x74,0xd5,0x0d,0xce,0x09,0xcc,0x0d, +0xcc,0xae,0x1c,0x29,0x1f,0x2f,0xbc,0x68,0xcc,0x27,0x98,0x87, +0xaa,0xbb,0xbe,0x7d,0x0d,0xeb,0x62,0xd1,0x6c,0xd5,0x66,0x54, +0x67,0x20,0x2b,0x34,0x15,0x5a,0x7a,0x3b,0x69,0x9e,0x64,0xe3, +0xf5,0x9b,0x63,0x5b,0x62,0x5b,0x88,0x2f,0xd6,0xf7,0x89,0xb7, +0xd1,0x05,0x84,0xc3,0xe5,0x8b,0x18,0x78,0x80,0x59,0xa4,0x1f, +0xa2,0x1a,0xac,0x1a,0xca,0xc0,0x3e,0x58,0xdd,0x83,0x57,0x13, +0x32,0xf5,0x55,0x0f,0xfe,0x0a,0xde,0xa7,0x2f,0xa4,0x9f,0x2f, +0xe8,0x2c,0x77,0x69,0x66,0x8d,0x5d,0x94,0x3c,0xf6,0xf8,0x33, +0xdc,0x4d,0xda,0xf7,0xa4,0x5f,0xb4,0xdf,0xc9,0x04,0x7d,0x76, +0xe0,0x9c,0x0c,0xd6,0xee,0x05,0x53,0xfa,0x52,0xea,0xc5,0xf4, +0xfe,0x0c,0x06,0xca,0xe1,0x37,0xe4,0x4f,0x79,0x47,0xc5,0x15, +0xca,0x43,0x0c,0xb6,0xc5,0xef,0xd2,0x1b,0xc3,0x0e,0x9b,0xa8, +0xca,0xb5,0x38,0xc9,0x74,0x5f,0x4d,0xbf,0xf7,0x6c,0xd1,0xa5, +0x9f,0xb1,0x29,0x6d,0x98,0xee,0xdb,0x21,0x57,0x43,0x55,0xa5, +0xa4,0xd7,0xca,0x83,0x0c,0x6d,0x9a,0x26,0xb3,0x8c,0x44,0xdf, +0xc0,0xcd,0x9a,0xc7,0x99,0xcf,0x99,0x66,0xdc,0x25,0x80,0x30, +0x3a,0x64,0xbf,0x50,0xd9,0x52,0xc3,0xbe,0xcf,0x63,0xd8,0x77, +0xcc,0xc8,0x9b,0x2d,0x38,0x50,0x7e,0xb8,0x59,0xdd,0xc2,0x44, +0xd7,0x4a,0xd1,0xbe,0x48,0x8f,0x9d,0xa8,0x1b,0x6a,0x6d,0xef, +0x69,0x32,0xec,0x32,0xbb,0x60,0x5d,0xdc,0xc5,0x6a,0xd6,0x19, +0x37,0xd9,0xb6,0x33,0x5c,0x0f,0xac,0x42,0xc9,0x6a,0xf1,0x07, +0x62,0x95,0x3a,0xd2,0xd9,0x98,0xb1,0xb0,0x6f,0x8e,0x0f,0x31, +0x58,0x88,0x6b,0x51,0xd1,0xed,0xd4,0x57,0x71,0x2f,0x8c,0xe3, +0xd8,0xe8,0xcd,0x21,0x9b,0x3c,0x77,0x33,0x73,0xff,0x61,0x31, +0xb9,0x13,0x61,0x17,0x2a,0xb1,0x27,0xa1,0x3b,0xae,0x93,0xf8, +0x3f,0x08,0xef,0x70,0xc5,0xfb,0x8f,0x60,0xa6,0xde,0x96,0xcd, +0x6d,0xc8,0x6a,0xcf,0xe8,0x4e,0x5a,0x9d,0xbd,0xba,0x72,0xad, +0xf5,0x56,0xdd,0x3d,0xfb,0x0e,0x56,0x99,0xb0,0x57,0x2e,0xf6, +0x5e,0x6b,0xb8,0x55,0xb9,0xaf,0xe9,0x40,0xdf,0xe1,0x9a,0x01, +0x56,0xfb,0xb2,0xd9,0x0d,0xa7,0x7b,0xbd,0x30,0xbf,0x00,0xbe, +0x48,0x80,0x15,0x4c,0x37,0x35,0xb5,0x17,0x67,0xa3,0xb8,0x20, +0x1e,0x1a,0x5b,0x33,0x25,0x23,0xe7,0x33,0x60,0xc6,0x2f,0x08, +0x4a,0x92,0x2c,0x08,0xb2,0x88,0xb2,0x8c,0x1e,0xbc,0x37,0x0a, +0x54,0x3f,0xd0,0x26,0x04,0x1a,0x75,0xdc,0x34,0x5c,0x74,0x82, +0xc8,0xc8,0x05,0xe4,0x54,0x8d,0x54,0x4c,0x14,0x5e,0x34,0xe2, +0x47,0xce,0x5d,0xd5,0x4d,0xcf,0xae,0x96,0x8c,0x5c,0x8b,0x45, +0xbb,0x71,0x83,0x40,0xd6,0xd3,0x5c,0x68,0xe5,0xe5,0x74,0x84, +0x8c,0x9c,0x6e,0x6b,0x6c,0x9b,0xa8,0x4d,0x3a,0x72,0x5b,0xe9, +0x7c,0x11,0xbf,0x16,0x88,0x69,0x7b,0x88,0xbe,0x3f,0xf7,0x28, +0xe5,0x5a,0xfa,0x39,0x3b,0xb6,0x3d,0x3f,0x64,0xc2,0xed,0x89, +0x6f,0x9f,0xac,0x69,0x70,0xba,0x5d,0xba,0x41,0xaa,0x81,0xac, +0x79,0x84,0x31,0x21,0xad,0x05,0x63,0x79,0x8f,0xd3,0xef,0x31, +0xfc,0x29,0xc7,0x97,0x05,0x2f,0xa8,0xa0,0x9d,0x5e,0x1b,0x3d, +0x0f,0x5a,0x9d,0x64,0xc5,0x9e,0xd8,0x03,0x39,0xc0,0xac,0x40, +0x60,0xa2,0xe0,0xaf,0x0c,0xcc,0xa5,0xa2,0xf0,0x5f,0x03,0x31, +0x63,0x83,0x67,0xf1,0x8d,0x4b,0x2d,0x64,0x1f,0x6a,0x1d,0x6a, +0x75,0x9c,0x81,0x03,0x7c,0xf7,0xee,0x5d,0xf8,0x5c,0x87,0x50, +0xc1,0x77,0xf4,0xe1,0x1d,0xac,0x41,0x5b,0x86,0x5b,0x44,0x58, +0x9c,0x48,0xd2,0x62,0x61,0x76,0xee,0xeb,0xdc,0xc7,0x15,0x0c, +0xf7,0x19,0xb8,0xa3,0x4c,0xc5,0xe4,0x6d,0x09,0x3b,0xf9,0x08, +0xbf,0x19,0xf4,0x28,0xf0,0x2a,0xff,0x64,0x79,0x1d,0x2a,0xbe, +0x93,0xf6,0x73,0x02,0x8f,0x77,0x51,0x9b,0x83,0x37,0x79,0x10, +0xd7,0xc3,0x49,0x31,0xcf,0xa9,0xff,0xbf,0x8b,0xe7,0x3f,0x65, +0x0f,0x7f,0xd2,0x7b,0x07,0x6a,0x2c,0xcc,0x6d,0x94,0x17,0x77, +0xe8,0x70,0xbd,0x5b,0xe8,0x0c,0x2d,0x19,0x3c,0x2a,0x7e,0x88, +0xa6,0x1e,0xf5,0x8f,0xc3,0xda,0xc9,0x34,0x5a,0x80,0x83,0xd1, +0x32,0x50,0xfa,0x85,0x12,0xab,0xe0,0xd7,0xe8,0x18,0xcc,0x16, +0xc2,0x7c,0x97,0x57,0x86,0x41,0x6c,0xd9,0x8a,0x22,0xcc,0xa6, +0x60,0x19,0x52,0x18,0x49,0x5a,0x9e,0xc0,0xef,0x05,0xe0,0x79, +0x4e,0x6b,0x3b,0xdd,0xd8,0xea,0x97,0x39,0xf0,0x69,0x02,0xcc, +0x63,0xf0,0x61,0x0e,0x91,0xcf,0x1e,0xfa,0x85,0xea,0xe5,0xbe, +0x47,0x20,0xb8,0x07,0xb3,0x60,0x41,0x17,0x68,0x1a,0x64,0xb0, +0xa6,0x58,0xf1,0x2b,0x3c,0x1b,0xab,0xed,0xe1,0x01,0x73,0x04, +0xfd,0x82,0x2d,0x96,0x51,0xf8,0x30,0xec,0x41,0xe9,0x07,0x93, +0xb6,0xc7,0xed,0xea,0x4a,0x67,0xa3,0x6e,0x84,0x3c,0x0c,0xbe, +0xf2,0x56,0x88,0x3e,0x37,0x8e,0xff,0x3d,0x44,0xa1,0xee,0xcd, +0x7a,0xa1,0x48,0x13,0x09,0x03,0xbd,0x38,0xa3,0x3d,0x24,0xcb, +0xc9,0xa6,0x2b,0xc1,0xff,0xdd,0x9c,0xcc,0xe0,0xcc,0x9c,0xcc, +0xf4,0x82,0xfb,0x0e,0xe9,0x7a,0x21,0x4f,0xc2,0x27,0x2e,0x62, +0x79,0xa4,0x9b,0x26,0x68,0x77,0xbc,0xca,0x80,0x6e,0x3b,0xe1, +0x52,0x27,0xb2,0x23,0x73,0xa3,0xf3,0x18,0x30,0x04,0x15,0xce, +0x85,0xdb,0x48,0x85,0xc4,0x1c,0x8d,0x39,0x76,0xea,0xac,0x01, +0xfb,0xfd,0x39,0x98,0x9b,0x75,0x3b,0x2b,0xa2,0x83,0xd5,0x0b, +0x3b,0x18,0xaa,0x1c,0xce,0xc0,0x1c,0x30,0xa6,0xeb,0x36,0x8c, +0x1d,0xbc,0xed,0x5b,0x7d,0x3c,0x2f,0xf1,0x5c,0x7d,0xc6,0x6d, +0xd6,0x34,0x5b,0x46,0x13,0x1a,0xd1,0x36,0x8c,0x1f,0xd0,0x98, +0x9d,0x03,0xdb,0x29,0x91,0x6f,0x9c,0x6f,0x82,0x1f,0x71,0x1d, +0x95,0x38,0x35,0x17,0x75,0xc0,0x03,0xe3,0x41,0xf1,0x7b,0x9c, +0x36,0xf7,0x1e,0x8d,0x77,0xc0,0x3d,0xc9,0xa2,0xe5,0x14,0x7e, +0xd1,0xf2,0xb1,0xbb,0x3e,0xdf,0x79,0xdd,0x64,0x70,0xd2,0xbf, +0x59,0xb4,0x3c,0xd9,0x05,0x1b,0x10,0x7e,0xf0,0x00,0x1e,0x50, +0xf8,0x01,0xa9,0xc1,0xf0,0x60,0x23,0x7e,0x40,0xf8,0x49,0x1f, +0xcf,0x4b,0xdf,0x4e,0x42,0xef,0x41,0xf3,0x00,0x69,0x12,0xba, +0x58,0x9d,0xb0,0x88,0x34,0x3f,0x39,0x78,0x7f,0x14,0xe6,0xf0, +0xe1,0x56,0xcc,0x7a,0x69,0xbb,0x6a,0xba,0x12,0x7e,0xf2,0x26, +0x09,0x49,0xb8,0xf9,0x90,0x70,0x73,0x95,0x24,0xa1,0x25,0x49, +0x42,0xa3,0xe9,0x24,0xf4,0x76,0x3a,0xfc,0x87,0x24,0xe4,0xc9, +0x09,0x09,0x36,0x3e,0x09,0x27,0x29,0xf1,0x72,0xe4,0x59,0xe2, +0x50,0xe6,0x9e,0xe5,0xe8,0xc8,0x96,0xf9,0x56,0xb9,0xe5,0x0b, +0x99,0xf8,0x29,0x17,0xe4,0xdc,0xe2,0x35,0x12,0x70,0xb3,0x0f, +0x66,0xd7,0x00,0x2a,0x84,0x35,0x86,0xa9,0x84,0x9d,0x7c,0xe4, +0xf9,0x85,0xdd,0xfa,0x40,0x98,0x1d,0x01,0x8b,0x4e,0xc1,0x16, +0x06,0x0e,0xf5,0xe0,0x43,0x40,0xe9,0x63,0x0a,0x3f,0xc3,0x07, +0x29,0xdc,0x1a,0x82,0xd7,0xe9,0xe3,0x85,0x72,0xed,0xb6,0x84, +0x9d,0xac,0x4b,0x81,0xbd,0xd0,0xbe,0x08,0xfe,0x0a,0x75,0x84, +0x9d,0xe8,0x25,0xe3,0x1d,0x25,0x78,0x81,0xc5,0x0e,0x9d,0x43, +0x0a,0x9a,0x95,0xe6,0xec,0x68,0x6f,0xf7,0x48,0xf3,0x78,0x96, +0x46,0x9e,0x51,0xa9,0x6d,0xb9,0x45,0xff,0x39,0xd1,0x60,0x26, +0xd8,0xb1,0x86,0xb9,0x32,0xf8,0x38,0x96,0x41,0x81,0x59,0x81, +0x99,0x81,0xe9,0x35,0x13,0xd9,0x77,0xe2,0xbf,0x67,0x1a,0x96, +0xd2,0xf1,0xe5,0xa2,0xf2,0xd8,0x12,0xe6,0x69,0x27,0x76,0x35, +0xba,0x46,0x9d,0x74,0x8b,0x72,0x8d,0x74,0x61,0x54,0x0c,0xfb, +0xa8,0x63,0xea,0x41,0x9a,0x01,0x26,0x25,0x3e,0xc5,0xde,0xc5, +0x5e,0xae,0x26,0x36,0xe6,0x06,0x16,0x55,0xe6,0x6c,0x77,0x4b, +0x63,0x7b,0x45,0x77,0x8b,0x09,0x8b,0x67,0x83,0x02,0x4a,0xab, +0x4b,0xeb,0x4f,0x1e,0x62,0x86,0xa9,0x48,0xc5,0x60,0x55,0x0f, +0xad,0x80,0xb4,0xa0,0xd4,0xe0,0x64,0x06,0x67,0xe7,0xa3,0x24, +0xad,0x38,0xe5,0x33,0x2a,0x84,0xe1,0xc4,0x8c,0x1c,0x9f,0x38, +0xde,0xc7,0xe0,0x00,0x5c,0x8f,0x4a,0xee,0xa4,0xbd,0x8a,0xe7, +0x23,0xf9,0xf7,0x8c,0x7f,0xf1,0x46,0x2c,0x64,0xfd,0x6b,0xab, +0x5c,0xaa,0xae,0xfe,0x5f,0x66,0x39,0x93,0x6a,0x50,0x87,0x14, +0x06,0xcc,0x7a,0xed,0x88,0x84,0x09,0x11,0x80,0x19,0x55,0xa1, +0xd1,0x73,0xe4,0x9a,0x2e,0xc3,0xad,0x02,0x4b,0x24,0xd4,0xb1, +0xd2,0x17,0x98,0x11,0x54,0x1f,0xec,0x69,0x1a,0x2c,0x1d,0x61, +0xa0,0x04,0x2b,0xa2,0x1e,0xfc,0x40,0x40,0x8b,0xe7,0xe3,0x4e, +0x94,0x18,0x9e,0x14,0x9e,0x1c,0x5e,0x3a,0xc8,0x1e,0xe8,0x33, +0xeb,0xb3,0xbb,0xc8,0xe0,0xa3,0x02,0x30,0xa7,0x0a,0xcc,0xea, +0x05,0xbd,0xc6,0x0c,0xb7,0x8d,0x6a,0x68,0x2c,0x6b,0xcd,0x6b, +0xb5,0xa8,0x60,0x3d,0x74,0x2c,0x74,0x75,0xcd,0x2b,0x8d,0xd9, +0xb4,0x94,0xd4,0x94,0x94,0x14,0x06,0xe7,0x7d,0x69,0x20,0xfe, +0xa1,0x5b,0x91,0xe6,0xbe,0x25,0x1a,0x22,0x47,0x39,0x6d,0x77, +0xe2,0x3e,0x5e,0x4a,0x4d,0x04,0xdc,0xf1,0xbb,0xc8,0x13,0x22, +0xa2,0x1b,0x1e,0x64,0xfd,0x91,0x10,0x75,0x83,0x10,0x61,0xaf, +0x03,0xe0,0x45,0xc3,0x07,0xd8,0x0b,0x81,0xd7,0x75,0xec,0x45, +0xb7,0x2d,0x00,0xaf,0x6f,0xc8,0xf7,0xb9,0xff,0xf8,0x88,0x40, +0x47,0x92,0xcf,0x39,0x5e,0x54,0x17,0xb0,0x9e,0x97,0xcc,0x1f, +0xdb,0x0f,0x9a,0x7a,0xb1,0x19,0x9e,0x99,0x4e,0x59,0x0e,0x7a, +0x11,0x47,0x4e,0x1c,0x8e,0xbe,0xf6,0xe0,0x26,0xd0,0x43,0x7f, +0x37,0x28,0x66,0x9d,0xd5,0x4c,0xf6,0x08,0x0e,0xf8,0xe6,0x7a, +0xe5,0x79,0xfe,0x6f,0xe2,0xde,0x03,0x3a,0x8a,0x2b,0x6b,0x17, +0xb5,0x01,0x55,0x95,0x13,0x63,0x6c,0x1f,0xa6,0x04,0x58,0xc2, +0x18,0x6c,0x4c,0x30,0x98,0x9c,0x33,0x98,0x28,0x50,0x6e,0xe5, +0x9c,0x73,0x40,0xa1,0x95,0x51,0x02,0x01,0xca,0xa1,0x25,0xb5, +0x72,0xce,0x39,0xe7,0x84,0x84,0xc8,0x26,0x38,0x90,0x6c,0x6c, +0x8f,0x73,0xf6,0xcc,0x2e,0x79,0x17,0xf7,0xbe,0x53,0x2d,0x09, +0xe3,0xf9,0xe7,0xde,0xf5,0xdf,0xfb,0xd6,0x7a,0x8f,0x5e,0x88, +0xa2,0xba,0x5b,0x5d,0xbd,0xeb,0xec,0xbd,0xbf,0x6f,0xa7,0x53, +0xd8,0x7d,0xb5,0xf1,0x46,0xfd,0xad,0xb1,0xb4,0x0b,0x19,0x6d, +0x12,0xa9,0x5e,0xe1,0x83,0x07,0xdc,0x91,0x8d,0xcc,0x34,0xe0, +0x3b,0xe2,0xc7,0x52,0x2e,0xa5,0x7a,0xe9,0x3a,0x50,0x52,0x1d, +0x9c,0x11,0x94,0x11,0x2c,0x91,0xea,0x41,0xab,0x51,0x59,0x87, +0xa9,0x44,0xaa,0xfd,0x7c,0x16,0x4a,0x9c,0x7a,0xf8,0xfc,0xc5, +0xf8,0xf1,0x49,0x4e,0xfd,0x2c,0xdb,0x97,0xd0,0x93,0xdc,0x9e, +0xcc,0x3d,0xd6,0xa7,0xa4,0x58,0xdc,0x4c,0x2d,0xf8,0x66,0xb6, +0x51,0xa4,0x97,0xfd,0xb3,0x60,0xad,0x2d,0x66,0xc0,0x1e,0xfc, +0xd7,0x28,0xc5,0x71,0xbb,0x18,0x0c,0x16,0xde,0x21,0xb7,0xe1, +0x8d,0xdd,0x2c,0xbe,0x81,0xb3,0x9f,0x1c,0xcd,0x21,0x1f,0xc1, +0x1b,0x3b,0x58,0x61,0x33,0x86,0x90,0x96,0xdd,0xf5,0x9b,0x2b, +0xb7,0x0e,0x94,0xf0,0x8e,0x9f,0x39,0xde,0x36,0xbf,0xc9,0x3d, +0x3e,0x47,0xe9,0x77,0xd7,0x9d,0xda,0x2f,0x0a,0xef,0xea,0x2b, +0x79,0xef,0x4d,0x6e,0xfb,0xcd,0xf6,0x72,0x54,0x8d,0x4d,0x49, +0xb1,0x71,0xe3,0xc6,0x6c,0xfd,0xee,0x72,0x3e,0xb0,0xdf,0xf9, +0x23,0xb7,0x3e,0x0e,0xde,0x42,0x05,0xa9,0xbf,0x5e,0xfd,0x30, +0xff,0xa1,0xb4,0x9d,0xd1,0x46,0xe7,0xbd,0x0e,0x94,0xa8,0xff, +0x31,0x47,0xc8,0x21,0x75,0xc3,0xa0,0x8f,0x19,0x5f,0x1d,0x5f, +0x85,0x89,0xa8,0x3f,0xec,0xc0,0x0a,0x4a,0x29,0x8c,0x74,0x84, +0xc9,0x6b,0xce,0x1f,0x52,0x74,0xea,0x66,0xf2,0x21,0x06,0xfe, +0xc7,0xfd,0xcc,0x39,0xfc,0x07,0x23,0x1f,0xf5,0xbb,0x70,0xb2, +0x47,0x85,0x30,0x33,0x5c,0xd3,0x9d,0x4d,0xa2,0xa4,0xb2,0xad, +0xd1,0xfb,0x97,0x81,0x19,0x56,0x39,0x66,0xcf,0x13,0xae,0x2a, +0xce,0xe2,0x4f,0x39,0x4b,0xfd,0xc5,0x6a,0xca,0x59,0x8c,0x24, +0x9b,0xe0,0x46,0x6d,0x42,0x28,0x35,0xac,0xff,0x4b,0xce,0x12, +0xdf,0x9d,0xa8,0xe2,0x2c,0xeb,0x59,0x29,0x15,0x5b,0x91,0xa8, +0x32,0xab,0xf2,0x86,0x4c,0xfe,0x24,0x24,0xe3,0x4b,0x18,0xa8, +0x07,0x81,0x68,0x32,0x0a,0x26,0x10,0x35,0x88,0x51,0x54,0xa5, +0x73,0xd8,0x23,0x50,0x4d,0xd0,0xfc,0x1f,0x27,0x56,0xa3,0x01, +0xbc,0x24,0x98,0x50,0xe5,0xc7,0xdb,0x24,0xac,0x3d,0xb0,0x4b, +0xde,0x60,0x10,0xc4,0xe7,0xd8,0x2a,0x4d,0x32,0x2c,0x38,0x2c, +0x7f,0x93,0xe4,0xee,0x53,0x6c,0x4a,0xd9,0x2a,0x35,0xa8,0xdd, +0x91,0x7f,0xea,0x7f,0x7d,0x92,0x47,0x54,0x49,0x3c,0xe2,0x3b, +0x59,0xf2,0x13,0x1e,0xf1,0x87,0x96,0x30,0x8f,0x60,0x1c,0xe5, +0x32,0xf6,0x7d,0x68,0x0f,0x33,0x20,0xbc,0x0f,0xdf,0x60,0xf2, +0xaa,0xf3,0x9b,0x33,0x2a,0xf4,0x29,0xc3,0x73,0xf2,0x96,0x9d, +0xb4,0xe3,0xf0,0x96,0x21,0xf8,0x51,0xaf,0x64,0x6b,0x08,0xb6, +0x94,0x12,0x79,0xe9,0x03,0xc7,0xf8,0x20,0xd9,0x85,0xea,0xc8, +0xad,0x6e,0x30,0xe2,0x1f,0x5c,0x1d,0xfb,0xbc,0xf9,0x73,0x0e, +0x16,0xe1,0x76,0x74,0xd7,0x13,0x3c,0x06,0x51,0x06,0xdb,0x25, +0x2b,0x25,0x32,0x8a,0xfa,0xb4,0xba,0xc4,0x1a,0x8e,0x32,0x4a, +0x7c,0x28,0xbc,0x4b,0x82,0xaa,0xfd,0xea,0x03,0x8a,0x65,0xde, +0x7c,0xbe,0x5b,0xae,0x6b,0xa6,0x0b,0x87,0x2e,0xe2,0xac,0xbf, +0x26,0xc4,0xbc,0x2f,0x98,0x3c,0xad,0xe5,0xff,0xef,0x12,0x62, +0x71,0x6e,0x67,0xfe,0x43,0x42,0xec,0x79,0x8c,0x23,0x31,0xc3, +0x61,0x94,0x95,0x9b,0x04,0xf3,0x0a,0x83,0x94,0x63,0x89,0xc7, +0x39,0x8c,0x5c,0x42,0xea,0x54,0x39,0x78,0xa3,0xa7,0xb2,0x4f, +0x2f,0x0a,0xf5,0xe4,0xf6,0xad,0xf1,0x1f,0xdb,0x7e,0x37,0x2e, +0xe2,0x6d,0xde,0xd1,0xdb,0x74,0xf0,0x30,0xe5,0x86,0xc5,0xc4, +0x61,0xc5,0xd1,0x45,0x27,0xde,0x57,0xed,0x0a,0xdd,0x6d,0x36, +0x99,0x4c,0x95,0x3c,0x85,0x79,0x8c,0x05,0x65,0xb2,0x97,0x54, +0x4c,0x56,0x5a,0x15,0xda,0xae,0x5a,0x2e,0xd3,0x4c,0x76,0xac, +0xe6,0x83,0x92,0xc9,0x55,0xe1,0xae,0x5a,0x15,0xa1,0xd3,0xab, +0xa2,0xcb,0x48,0x5a,0x15,0x9e,0xd6,0xde,0x4e,0xfb,0xa5,0x55, +0xd1,0x15,0xdf,0x9d,0xd0,0xf5,0xb4,0xb3,0xa0,0xd8,0x44,0xe5, +0x9a,0xea,0x33,0xf9,0x4c,0xc7,0xc2,0xa2,0x82,0xb2,0x9c,0x32, +0x75,0xf1,0xe0,0x80,0x90,0xce,0x96,0xb6,0x97,0x0e,0x16,0x8e, +0x70,0xd9,0xf8,0x1c,0x69,0xea,0x2d,0x6a,0x53,0xd4,0xc5,0x27, +0x25,0x9c,0x8d,0x8f,0xf9,0x14,0x5f,0xe1,0x9b,0x3b,0x8a,0xda, +0x32,0x6b,0xce,0x4b,0xff,0x8f,0xbd,0x8f,0xea,0x7c,0x73,0xed, +0x76,0xf8,0xdb,0xa9,0xcc,0x88,0x73,0x11,0x91,0xea,0xe1,0x11, +0xb1,0xf1,0x6a,0x19,0xf5,0x49,0x2d,0xd7,0xe7,0x75,0x19,0x18, +0xb3,0xef,0x46,0x1a,0x5a,0x1e,0xd1,0xb0,0xb8,0x1c,0x99,0x11, +0x26,0x35,0x5a,0x87,0x87,0x9f,0xa6,0xcf,0x36,0x24,0x75,0x8d, +0xd1,0x67,0x4d,0x59,0x7c,0x26,0x48,0x6b,0xd7,0x72,0x0d,0xc8, +0xc0,0x22,0x02,0x0b,0xfb,0x71,0x21,0x6c,0xd3,0x17,0x8d,0x99, +0x83,0x15,0x9e,0xb7,0x60,0xc6,0x3c,0xd0,0xd7,0x47,0x3d,0xea, +0xa0,0xfd,0xf4,0x77,0x6b,0x6b,0x14,0x1d,0xbf,0x75,0x21,0xb7, +0x27,0xe1,0x4b,0xf5,0x24,0x66,0x49,0x52,0xd7,0x4e,0x58,0x30, +0x1f,0x5e,0x65,0x32,0x06,0xd5,0x70,0x1e,0x13,0x19,0x79,0xf6, +0x5c,0xa4,0xa6,0x58,0x06,0xf1,0x44,0xf9,0x7e,0xc6,0xb6,0xa4, +0x1d,0x12,0xde,0xbb,0x19,0x74,0x4f,0x7e,0x55,0x2a,0xa7,0x6f, +0x26,0x15,0x74,0x5d,0x26,0x7f,0x6f,0x3c,0xc9,0x6f,0xdd,0x25, +0x46,0xf3,0xb9,0x8a,0xd1,0x3c,0x21,0x78,0x3e,0x37,0xbc,0x26, +0x43,0x06,0x12,0xc1,0x33,0x8e,0x92,0xb2,0x57,0xa3,0xf7,0xaf, +0xa8,0x22,0x25,0xc6,0xe5,0x54,0xfd,0x5c,0x26,0x09,0x9e,0x4a, +0xfd,0x6a,0xa4,0x75,0x41,0x05,0xfd,0x24,0x3c,0x1d,0x9a,0x41, +0xd7,0x45,0xb7,0x79,0x8f,0x61,0x9b,0x9e,0x97,0xa5,0xa7,0x8d, +0xb7,0xf3,0x0e,0x49,0xd0,0x3d,0xf1,0x7d,0xf1,0xbd,0xd3,0xea, +0x57,0x1d,0x5f,0x95,0x58,0x99,0xc8,0x41,0xa0,0x0b,0xf1,0x8a, +0xf5,0x3e,0xed,0x7b,0x3a,0x4d,0xc6,0x3f,0xcc,0xf8,0x3c,0xef, +0x5a,0x7e,0x54,0x27,0xef,0x1c,0x6e,0x73,0xca,0x3a,0x92,0x83, +0xdd,0x1f,0xb0,0xf5,0x6f,0xdc,0xd8,0x04,0x8b,0x8d,0x72,0x3b, +0x78,0x83,0x3c,0xab,0x02,0x97,0x92,0xc6,0xc2,0xc6,0xca,0xea, +0x4a,0x87,0x4a,0xde,0xcd,0xc5,0xce,0xd3,0xd2,0xd7,0xb7,0x44, +0x5e,0x19,0x46,0x57,0xbb,0x53,0x9f,0x18,0x0c,0xfa,0x82,0xcf, +0x80,0x58,0x83,0xf9,0x0c,0x46,0x9f,0x42,0xd9,0x7e,0x5c,0xae, +0x31,0xe0,0x74,0x0b,0xd6,0xa7,0xc2,0xd1,0x73,0x10,0xa7,0xfe, +0x0d,0x03,0x7f,0xc0,0x7e,0x22,0x2e,0x37,0x10,0x96,0x33,0xf8, +0x32,0xfe,0x4c,0x76,0xe3,0x45,0x43,0xb8,0x88,0xbb,0xf0,0x75, +0x36,0xc7,0x50,0x1a,0xdf,0xd0,0x96,0x97,0xd7,0xa6,0x09,0xeb, +0x7e,0xe9,0x5b,0x72,0x9b,0x15,0x6f,0xbb,0x13,0x85,0x76,0xf2, +0xfb,0x89,0x87,0x7b,0x94,0x7c,0xec,0x58,0xd8,0xcd,0x30,0xea, +0x38,0xcf,0x50,0x32,0x58,0x7d,0x5f,0x39,0x1d,0xd5,0x0e,0x5c, +0xe7,0xba,0x85,0x13,0x62,0x3e,0x27,0xf5,0x1e,0xf5,0x0e,0xd5, +0x76,0x0d,0x14,0x8d,0xd4,0xdb,0x34,0xda,0x97,0x52,0x71,0x36, +0x50,0x1b,0xac,0xca,0x8a,0x39,0xcb,0xa6,0xd8,0xb1,0x4a,0xa9, +0x9e,0x2e,0x23,0x9f,0x64,0xc7,0xb5,0xd3,0xc2,0x73,0xfd,0x77, +0x76,0xdc,0xae,0xeb,0xf9,0xbf,0x61,0xc7,0xd5,0x89,0x59,0xfa, +0x7c,0x67,0x4e,0xa0,0x8a,0x8a,0xab,0x8f,0x50,0x3f,0x6a,0x28, +0xf4,0xf5,0xb1,0xf8,0x03,0xbd,0xbb,0x99,0x56,0x1d,0xb9,0xf2, +0x7e,0xd7,0xfb,0x9e,0xdd,0xea,0x96,0x81,0x0a,0xef,0x2c,0x87, +0x4c,0x7b,0x75,0xbb,0x68,0xfb,0x58,0xfb,0xd8,0xfc,0xfe,0xa2, +0x9b,0x19,0x03,0x06,0xe9,0x7c,0x98,0xb6,0xcf,0x16,0x6f,0xdd, +0xd0,0xb8,0x90,0xb3,0x21,0x71,0xa9,0x86,0xfc,0xc7,0xc9,0xd7, +0x52,0x3e,0x50,0x70,0xb0,0x0d,0xbc,0x48,0x98,0xb6,0xf7,0x56, +0x1f,0xdd,0xf0,0xb8,0x88,0xb3,0xe1,0xd2,0x53,0x77,0x93,0xaf, +0xa4,0xdc,0xcc,0xcc,0x36,0xe3,0x3b,0xf3,0x03,0xfb,0x9d,0x1e, +0x78,0x76,0xa9,0x5b,0x04,0x28,0x7c,0xb2,0x1c,0xb2,0x1c,0xd4, +0xad,0xa3,0x6d,0x62,0xac,0x63,0x0b,0xfa,0x8b,0x6e,0x65,0xf4, +0x73,0xf0,0x3a,0x7e,0x47,0xfa,0xc4,0x2b,0x86,0x2c,0xcc,0x12, +0xcd,0xc9,0x20,0xfc,0xa4,0x37,0x2a,0xbc,0x2e,0xda,0x8b,0xaf, +0xb3,0xb8,0x89,0x02,0xc6,0xa2,0x1d,0xca,0xb5,0x19,0xeb,0xfb, +0x27,0x13,0xf6,0xde,0x77,0x38,0x21,0x97,0x42,0xc3,0x9f,0xbe, +0x84,0x9f,0x98,0xc7,0x0a,0x15,0xc7,0xce,0xfd,0x29,0x75,0x12, +0x3a,0xaa,0x38,0xb6,0xe0,0x0e,0x2f,0x12,0xf8,0x69,0x39,0xfe, +0x44,0xf1,0x62,0x07,0x85,0x26,0x19,0x86,0x1d,0xca,0xe0,0xeb, +0x01,0x94,0xaf,0xa9,0x9b,0xcb,0xa5,0x06,0x8e,0x54,0x17,0x75, +0xdb,0x28,0xe9,0x02,0x46,0xfe,0xb4,0x00,0x5e,0x92,0x05,0xd0, +0x91,0x17,0x04,0x4c,0x61,0xc5,0x29,0xbf,0x30,0x85,0x15,0x9d, +0x2d,0x3b,0xa8,0xf6,0xb7,0x18,0xa8,0x7b,0x9a,0x7b,0x51,0xf5, +0x7f,0x5f,0xc2,0x8a,0x9d,0xf1,0x5d,0xd3,0x84,0x6d,0x23,0x9b, +0x1f,0x9f,0x97,0x90,0x17,0xcf,0xc1,0x6f,0x35,0xe4,0x1b,0xc8, +0x81,0x34,0x5c,0xc5,0x66,0x96,0x66,0x56,0xa5,0x96,0xe9,0xa4, +0xf1,0x11,0xae,0xa1,0x8e,0x41,0xae,0x1c,0x3e,0xfb,0x58,0xea, +0x45,0xad,0x63,0x44,0x75,0x18,0x20,0x2e,0xad,0x96,0x5d,0x56, +0x75,0x36,0xd6,0x7c,0xb3,0x7d,0xb3,0x45,0x9d,0x29,0x7d,0x67, +0x13,0xc1,0x95,0x68,0x03,0x2b,0x59,0x7c,0x0e,0xed,0x89,0x43, +0xbb,0x49,0xa7,0x59,0x9d,0x9d,0x15,0xdf,0x6e,0xdf,0x66,0xd1, +0x64,0xc2,0x81,0xa3,0x48,0x5d,0xde,0x52,0xcb,0x2e,0x20,0x9a, +0x70,0x04,0x57,0xe8,0x7f,0x85,0x84,0xc5,0x19,0xee,0x36,0x4b, +0x0d,0x35,0x8a,0x4f,0xfc,0xd4,0x5f,0xda,0x16,0xff,0x19,0x55, +0xe7,0xa5,0x09,0x5d,0xda,0xf0,0xde,0x7c,0xc8,0x65,0x52,0x46, +0xd4,0xf0,0x36,0xac,0x20,0xb0,0x1f,0xfc,0xa5,0x7a,0xa6,0x9f, +0xbe,0x27,0x99,0x47,0x52,0x76,0x25,0xee,0x95,0x56,0xe5,0xd5, +0xd0,0x8f,0x42,0x2e,0x72,0x28,0xa7,0x70,0xae,0x82,0xc2,0xb9, +0xe4,0xef,0xa6,0x08,0x9c,0x3b,0x85,0x73,0x13,0xa1,0xc2,0x29, +0xd2,0xb1,0xf5,0xf2,0xfb,0xb7,0x0c,0x2b,0xbb,0xf8,0xa3,0x4d, +0x06,0x7d,0x36,0xa3,0x1c,0x68,0xf6,0xe2,0x76,0x46,0x5e,0x1d, +0x52,0x77,0xaa,0x8e,0xfb,0x67,0x0f,0xea,0x32,0xa9,0x4d,0xc9, +0xad,0x89,0x9d,0x86,0xd4,0x10,0x18,0x45,0x9a,0x47,0x58,0x73, +0xf8,0xa2,0xd1,0x3f,0x99,0x30,0xbb,0x60,0x47,0x39,0xf5,0x15, +0x87,0x64,0xb0,0x8c,0xb1,0x38,0xaa,0x2b,0x3b,0x60,0x5e,0x6e, +0xce,0x3f,0x1c,0xbe,0x76,0xb9,0xe7,0x3e,0x27,0xb0,0xb0,0x8d, +0x38,0x5c,0xd0,0xbb,0x62,0xd2,0x66,0xed,0xce,0x77,0x59,0x0e, +0xee,0xab,0xd6,0xe6,0xc4,0x55,0x14,0x0a,0x78,0x1f,0xb6,0x38, +0xae,0x67,0x55,0x6f,0xc7,0x8f,0x74,0x77,0x8e,0x97,0xdf,0xe2, +0xc4,0xc3,0x14,0x49,0x61,0x6f,0x30,0xbe,0x65,0x8e,0x33,0x35, +0xfa,0xac,0x6b,0xff,0xa1,0xfc,0x2e,0x19,0x56,0xa8,0xc3,0x1c, +0xcc,0x5a,0xc6,0x64,0x6b,0xa9,0xdd,0x64,0xda,0x73,0xf3,0xbb, +0x35,0x27,0xea,0x30,0x88,0x85,0x7d,0x78,0x9a,0xe0,0x8b,0x70, +0x02,0x5e,0x64,0x84,0x35,0xcb,0x48,0x8a,0x83,0xc2,0x21,0xcb, +0x99,0xc3,0xbf,0x31,0xd9,0x55,0x8a,0xda,0x8c,0x06,0x4e,0x0c, +0xc3,0x47,0xe4,0xfc,0xe0,0xb9,0x8b,0x1f,0xcc,0x93,0x76,0xfc, +0x61,0x84,0xaf,0x70,0x09,0x51,0x04,0x64,0x04,0xa4,0x05,0xb6, +0x94,0xf0,0x2e,0xfd,0xc6,0x17,0x6d,0x1b,0xed,0x3d,0xf9,0xac, +0xe0,0xec,0x00,0xa5,0xdf,0x89,0xc8,0x03,0x91,0x7b,0x63,0xc6, +0x7a,0xc7,0x2e,0xb5,0x8f,0x59,0x55,0xf0,0x8e,0x26,0x66,0x06, +0x32,0xd3,0x40,0x65,0xa0,0x32,0x20,0xbb,0xa5,0xbe,0xb3,0xaf, +0xbe,0xc7,0x8a,0xe2,0x30,0x13,0x73,0x23,0x33,0xfb,0xf0,0xd4, +0x88,0x94,0xf0,0x14,0x07,0x7b,0xbe,0xcd,0xa5,0xc5,0xb9,0xd1, +0x21,0x24,0x2c,0x24,0x3c,0x38,0x82,0x3b,0xa3,0xaf,0x77,0xc6, +0x60,0x7e,0x92,0xd1,0x9d,0x73,0x77,0x13,0x3e,0x4e,0x52,0x47, +0xf7,0x21,0xf0,0x61,0xaf,0x25,0x5f,0x4e,0x1e,0x48,0xe5,0x70, +0xe6,0xbb,0xa4,0xc7,0x71,0x58,0xd6,0x6e,0x54,0xdf,0xcc,0x5b, +0x76,0x9e,0xe8,0x31,0xaa,0x95,0x76,0x9b,0xda,0x47,0x46,0xeb, +0xfb,0x07,0x2a,0xbb,0xad,0xcb,0x78,0x37,0x73,0x63,0x53,0x5d, +0x67,0x7a,0x0f,0xf6,0x52,0x12,0x7d,0xa9,0xf8,0x42,0x5d,0x47, +0x9b,0x7b,0x3d,0x6f,0x6e,0xa3,0x65,0x7f,0xdc,0x37,0xcf,0x91, +0x37,0x60,0xce,0xc4,0xa8,0xc1,0x18,0x9e,0x37,0x06,0x19,0xe6, +0xf6,0xb0,0xee,0x5a,0x7b,0x4c,0xf1,0x1d,0x8b,0xe0,0x71,0xbf, +0x8b,0x27,0xfb,0xcc,0x02,0xa6,0xbc,0x9b,0x45,0x94,0x59,0x8c, +0x19,0xf5,0x6e,0x57,0xa6,0xe3,0xb4,0x9e,0xda,0x2e,0xc7,0xa6, +0x31,0xcf,0x64,0x9c,0xd6,0x68,0xd2,0xe8,0xba,0x4e,0x19,0x5d, +0x6a,0x37,0xba,0x28,0xe6,0x99,0x32,0xba,0x4e,0xbb,0x26,0x8d, +0x6e,0x4f,0x42,0xcf,0xb4,0x77,0x2b,0x55,0xc5,0x69,0x25,0x84, +0xaf,0x62,0xde,0x0a,0x27,0x78,0xab,0xed,0xa7,0xd1,0x9c,0x4f, +0xa5,0xc1,0xce,0x1b,0x80,0x3b,0x0e,0x2b,0x4d,0x0a,0x06,0x78, +0x5c,0xd3,0xbe,0xba,0xdf,0xf5,0x12,0x07,0xc1,0x2e,0x04,0xbe, +0xc5,0x74,0x63,0xb0,0xc4,0x0e,0x56,0x0b,0xea,0x89,0xad,0x83, +0x8e,0xb3,0x96,0x77,0xb1,0x15,0x3f,0x5a,0x36,0x56,0xd3,0xd2, +0xc4,0xe1,0xed,0x4a,0xe2,0x60,0xa7,0x63,0xaf,0xe3,0x55,0x62, +0xcd,0x0f,0x97,0x8e,0x34,0x34,0xb7,0x70,0xf2,0x75,0xc4,0xc4, +0x4c,0xdb,0xe6,0x90,0x5b,0xa9,0x39,0x7f,0xa5,0x6a,0xbc,0xb9, +0xbb,0x97,0x83,0x97,0x30,0x80,0x1c,0x3c,0xb2,0xda,0x12,0x9f, +0x71,0xcf,0x35,0xe3,0x61,0x46,0xe5,0x0f,0x9d,0x37,0xaf,0x72, +0x97,0x6c,0xc9,0xbb,0xab,0x71,0x86,0x01,0xae,0xb2,0x2e,0x30, +0xe6,0x61,0x59,0x13,0xbc,0x3c,0xf2,0xe3,0x4f,0x9c,0xd8,0x98, +0x42,0x0a,0x76,0x66,0xaf,0x49,0xdf,0x20,0x15,0x7a,0xdf,0xf5, +0xff,0x52,0x2a,0xee,0x89,0xc6,0x16,0x52,0x45,0x0d,0x6f,0xca, +0x77,0x14,0x2d,0x44,0xad,0x95,0xab,0x0c,0xef,0xda,0x55,0x04, +0xac,0x5a,0x61,0xcd,0x3d,0x78,0x0e,0x5e,0xb0,0x69,0xe0,0x51, +0x8d,0x3e,0x96,0xef,0x42,0x13,0x2b,0xa9,0x8f,0x67,0x2a,0x42, +0x17,0x1f,0xd8,0xa9,0xe4,0x83,0x6f,0xf8,0x5f,0xf3,0x1d,0x31, +0x9f,0x6c,0xfc,0x4a,0x75,0xb1,0x8b,0xb2,0x56,0x99,0x8d,0x71, +0x55,0x9c,0xc7,0x74,0xca,0x6c,0x68,0xab,0xcc,0x46,0x01,0x35, +0x1b,0xb7,0x54,0xa2,0x3d,0x79,0xc4,0xfd,0xb0,0x9b,0x1e,0x05, +0x93,0x8a,0xb0,0x0c,0x17,0x4b,0x5e,0x32,0x1d,0xcd,0x06,0x94, +0x65,0x5a,0xfb,0x38,0xf9,0x9e,0xf1,0x8d,0x3b,0x19,0x97,0xa4, +0xc7,0x77,0xaa,0x98,0x26,0x27,0xae,0x1f,0x12,0xb6,0x4d,0x5b, +0x8f,0x89,0x3d,0xe2,0x7a,0x22,0xbf,0xed,0xf3,0xa1,0xcf,0xb8, +0x69,0x10,0x9f,0xe2,0x93,0xea,0x95,0xea,0xe1,0x1e,0xe9,0x16, +0xe5,0x12,0xcd,0xc1,0x3a,0x58,0x09,0xdd,0xb8,0xf2,0x6b,0xd0, +0x04,0x57,0xbc,0x85,0xae,0x40,0xde,0xc5,0x25,0xd8,0x0d,0x4b, +0x70,0x3b,0xab,0x7d,0x4a,0x4b,0xda,0xad,0xe2,0x38,0x0f,0x2f, +0xa5,0xc3,0x8c,0xdc,0x9f,0x2a,0x52,0xdc,0x52,0x5c,0x93,0x3c, +0xe9,0x2f,0x9f,0xb8,0x41,0xf0,0x18,0xf2,0x6c,0xec,0x5b,0xd1, +0xab,0xc2,0xde,0xe5,0xa8,0x52,0xc6,0xad,0x8e,0xde,0x1a,0xa1, +0xcd,0x59,0x47,0x05,0x87,0xd8,0xcf,0x5f,0xc3,0xa4,0xeb,0xaa, +0x7d,0xcd,0x8c,0x15,0x97,0x5d,0x4f,0xd7,0xcc,0xb8,0x93,0x74, +0xe7,0x1c,0xbc,0xc5,0xe1,0x5b,0x4c,0xe2,0x40,0xd2,0xf5,0xf3, +0x43,0x1c,0xcc,0x83,0x56,0x34,0x91,0x31,0x42,0x7e,0x02,0x55, +0x30,0xfa,0x99,0x2f,0xb2,0x72,0xbc,0x44,0xbe,0x41,0x83,0x95, +0x0c,0x9c,0x9b,0xbb,0x04,0x0c,0x7e,0x61,0x1e,0xcf,0xc1,0x13, +0x94,0x27,0x26,0xed,0x3f,0x7f,0x48,0x8a,0x84,0x8f,0x45,0xdc, +0x8e,0x18,0x92,0x46,0x94,0x35,0x93,0xf2,0x7b,0xd9,0x3f,0x27, +0x49,0x41,0x39,0x95,0x61,0x91,0x10,0xec,0xff,0xcd,0xf0,0x38, +0xff,0x01,0xf0,0x9f,0x1c,0x1e,0x67,0x4a,0xfe,0x3a,0x39,0xce, +0x79,0x80,0x11,0x13,0x82,0xa4,0xd1,0x71,0xd7,0x3f,0x98,0x27, +0x63,0x0e,0x45,0x1a,0x4a,0xa3,0xe3,0xae,0xc0,0x66,0x22,0xc3, +0x37,0x7b,0x99,0xfb,0x76,0xa4,0xae,0x45,0x79,0xe5,0x16,0x7d, +0x6a,0x7a,0x74,0x9c,0xef,0xe4,0xe8,0xb8,0x0e,0x69,0x74,0xdc, +0x89,0xa9,0xd1,0x71,0xc0,0xca,0xf0,0xd5,0xc9,0xd9,0x71,0xa7, +0x51,0x4e,0xb2,0xe5,0x99,0xf2,0xcc,0xc0,0x8e,0x2a,0xde,0xaa, +0xe7,0xd8,0xb8,0x5e,0x8b,0xb9,0x2b,0x5f,0x1c,0x20,0xe5,0xb5, +0xd6,0x45,0xad,0x8c,0x7a,0x33,0xf6,0x56,0xdb,0xed,0xa1,0xf1, +0x8b,0x16,0x95,0xbc,0x89,0xd1,0x31,0xa3,0x03,0x96,0x27,0x15, +0xde,0x0a,0xcf,0xcc,0x96,0xaa,0x86,0xda,0xfa,0x3a,0xb3,0x72, +0xde,0xd1,0xde,0xd6,0xde,0xc4,0xc9,0x35,0xcb,0x25,0xd3,0x55, +0xe1,0x6c,0xc3,0x7f,0xe4,0x72,0xdb,0xa9,0xdf,0x3d,0xf8,0x54, +0x50,0x64,0xd0,0xa9,0x3d,0x67,0xb6,0x9f,0xd9,0x1c,0x97,0x6c, +0xc2,0xc3,0x0b,0xe7,0x61,0x56,0xc2,0xaf,0x49,0x1c,0xda,0x8d, +0x82,0x23,0xfb,0x5d,0xd2,0x17,0xc9,0x77,0x53,0x38,0xdc,0xb9, +0x8c,0xdc,0x73,0xbe,0x6b,0x7d,0xcb,0xb4,0xb6,0x9d,0xdf,0xd3, +0xb9,0xb9,0x65,0x67,0x05,0x27,0x96,0xe1,0x26,0xf2,0x75,0xf9, +0xa7,0x6d,0x97,0xda,0x1c,0x5b,0x78,0x2d,0xcb,0x0d,0xd6,0xeb, +0xbc,0xe9,0xea,0xbc,0x37,0xdd,0xab,0x2e,0xef,0xcc,0xe1,0xe5, +0xd7,0xfd,0x6e,0x4c,0x25,0x68,0x24,0xc5,0xb7,0x54,0x29,0xfe, +0xe8,0x74,0x6d,0xef,0xff,0x19,0xda,0xf2,0xb2,0xf5,0x76,0xf6, +0x3a,0xe3,0x15,0xe7,0x25,0xa1,0xf0,0xde,0x78,0x69,0x42,0xce, +0x74,0x31,0x40,0x7c,0x49,0x42,0x71,0x02,0x07,0x2f,0x08,0xc6, +0x04,0x4b,0x05,0x03,0x28,0x65,0x45,0x4d,0x64,0xc8,0x75,0xf8, +0xfa,0x00,0x8b,0x5f,0x23,0x47,0x6e,0xc2,0xd7,0x94,0x13,0x1f, +0x5a,0x4c,0x17,0x9b,0x50,0x07,0xc7,0x58,0x71,0x8e,0x25,0x59, +0xba,0xe8,0x47,0x16,0x72,0x96,0x12,0x7c,0xf6,0x47,0x78,0x96, +0xe9,0x5d,0x4a,0x7e,0x04,0x6e,0x29,0x2b,0x7e,0xbf,0x8d,0x64, +0x9e,0x48,0xd9,0x9f,0x78,0x50,0xaa,0xaa,0x1d,0x0f,0xbb,0x15, +0x3a,0x2c,0x81,0xa3,0x16,0x52,0x7d,0xef,0xaf,0xe0,0xe8,0x8f, +0x65,0x0e,0x64,0xb5,0x72,0x4f,0xbe,0x56,0xf1,0x83,0xf6,0xd1, +0xbe,0xe6,0x41,0xae,0x45,0x8c,0x33,0x16,0xf6,0xb0,0xd6,0xd6, +0x7a,0xd6,0x3b,0x1d,0x8e,0x55,0x9a,0xd4,0x5a,0x34,0x9a,0xbb, +0xf3,0x4d,0x76,0xad,0x4e,0x7d,0x6e,0x7b,0x3d,0xd7,0xfa,0xe2, +0x33,0xc1,0x4a,0x19,0x0f,0x73,0x72,0x7f,0x29,0x7f,0x58,0xf7, +0x81,0xf3,0x23,0x0f,0x60,0x7c,0xa9,0xbc,0x3e,0x79,0x1a,0x9d, +0x3e,0xd5,0xdb,0x3f,0x3d,0xe8,0xc2,0x94,0x02,0xac,0xcb,0x12, +0x3a,0x9d,0x02,0x58,0x47,0x1c,0x27,0x8b,0x27,0x0a,0x29,0xc0, +0xba,0x59,0x7a,0x4d,0x92,0xd7,0x61,0xb7,0xc3,0xce,0xba,0x21, +0x59,0x21,0x8a,0xe9,0x3e,0x3d,0xc3,0xc9,0x3e,0x3d,0x1f,0xe7, +0xbf,0xf4,0xe9,0x49,0xc5,0x13,0xeb,0x87,0x85,0xad,0xaa,0x44, +0x66,0x69,0x02,0xf7,0x10,0x3e,0x20,0xe8,0x2b,0xa4,0x82,0x2f, +0xae,0xb9,0x0f,0x3a,0x7d,0xe2,0x4d,0x43,0x38,0xbc,0x99,0xed, +0x9d,0x7b,0xff,0xe7,0xcd,0x2c,0xae,0x30,0x21,0xf8,0xda,0x3b, +0xf0,0x1a,0x0b,0xf1,0x73,0xf1,0xb5,0xb7,0xa4,0x83,0x54,0x7c, +0x8d,0xbc,0x09,0xaf,0xfd,0xc6,0xb4,0x63,0x02,0x11,0x23,0x8d, +0x84,0x48,0xe6,0xf1,0x0b,0xfb,0x88,0x42,0x27,0xe5,0x60,0xc2, +0x11,0x0a,0xc3,0x63,0x46,0xc3,0x3e,0x08,0x1f,0x90,0x9a,0xe5, +0xda,0x49,0xcd,0x83,0x9c,0x9f,0xd3,0xbe,0x97,0xa9,0xc4,0xb5, +0x86,0x82,0x9e,0x3f,0x56,0x41,0x34,0x11,0x6f,0xc8,0x28,0xfa, +0x77,0xc0,0x39,0x4c,0x96,0x81,0xda,0x3f,0xa5,0x6e,0xd0,0x56, +0x4d,0xca,0x48,0x53,0x58,0xf1,0xb8,0x2d,0xb1,0xd7,0x3f,0x72, +0xec,0x84,0x43,0x8d,0x29,0x3f,0xda,0x74,0xfd,0x4a,0xe3,0x18, +0x07,0xae,0x67,0x48,0xa7,0xd5,0xb5,0xbd,0x2d,0x7a,0x2d,0x8d, +0xbc,0x63,0xe7,0xee,0x8f,0x4d,0x1b,0xa8,0xb8,0xae,0x4d,0x8b, +0x4b,0x8a,0xaf,0xc9,0xaf,0xfb,0x5e,0xf7,0x99,0xce,0xff,0xa5, +0xbb,0x98,0x45,0x9a,0xc6,0x18,0xc7,0x5e,0x78,0x78,0x49,0x55, +0x6b,0xf2,0x7f,0x8b,0x99,0xe2,0x25,0xcc,0xb4,0x6a,0x90,0x82, +0x51,0x29,0xdd,0x5b,0x9a,0xc8,0x09,0x7d,0xd2,0xba,0x7a,0x1d, +0xdf,0x87,0xcd,0x27,0x70,0x33,0xee,0x82,0xd7,0x75,0x50,0x47, +0x28,0x04,0x1d,0x56,0xac,0x11,0x1d,0x09,0xbe,0x1f,0xb2,0xf8, +0xd8,0x12,0x8d,0x2e,0xfb,0xa6,0x5b,0x05,0xb7,0xd2,0x3f,0x57, +0x07,0x0d,0xdc,0x84,0x33,0x19,0x85,0x01,0x35,0x5c,0xad,0x4a, +0x65,0xab,0xa6,0x30,0x84,0xa7,0x58,0xe8,0x43,0x37,0x82,0xc7, +0x23,0x16,0x9a,0xaf,0xa5,0x2f,0xad,0xba,0xaa,0xbc,0x95,0xfc, +0x8d,0x3a,0x2c,0xc6,0xed,0x0b,0xa5,0x2d,0x18,0xbe,0x64,0x5a, +0x72,0xa4,0x57,0x8e,0x61,0x3c,0x8b,0x1c,0xee,0x27,0x48,0x60, +0x0e,0x10,0x86,0x62,0xf8,0x39,0x04,0x35,0xe8,0xb1,0x06,0x23, +0x6a,0x61,0x1f,0x39,0xdf,0x70,0xbe,0xb9,0x6d,0x1e,0x10,0x69, +0x9f,0xc8,0x6d,0x73,0xcf,0x37,0x9c,0x6b,0x6a,0x9f,0x47,0x3f, +0xf0,0x6f,0x8c,0xf8,0xb8,0x9b,0x64,0x1d,0x49,0xd9,0x9d,0x20, +0x95,0xaa,0x4c,0xc3,0xa7,0xc0,0xc9,0x68,0xd8,0x9f,0xf1,0x6f, +0x09,0x3e,0xc1,0x87,0x4f,0x44,0x48,0x35,0x34,0xf0,0xba,0xc4, +0x87,0xcc,0xa5,0x3a,0x29,0x89,0x0f,0x99,0x44,0x49,0x55,0x26, +0xa3,0x0f,0x2f,0x3d,0x49,0xa1,0x4e,0x13,0x4f,0xfa,0xa8,0x7b, +0x92,0x27,0x38,0xf2,0x14,0xf1,0x94,0xfc,0x47,0xb7,0x51,0x8b, +0x14,0x8e,0xa0,0x52,0xdc,0x27,0x49,0xb1,0x8b,0x4a,0xb1,0xeb, +0x49,0x38,0x22,0xbe,0x32,0xb1,0x82,0x4a,0xf1,0x2a,0x28,0xc9, +0xf5,0x9e,0x03,0x30,0x13,0x1d,0x86,0x74,0x74,0xd1,0x12,0x67, +0x1e,0x94,0x5d,0xc5,0xe7,0xc0,0xe6,0x28,0x7a,0xe1,0x66,0xd0, +0x65,0x42,0xfd,0x82,0x7c,0x02,0x7d,0x38,0x34,0x32,0x82,0x35, +0x8c,0xb7,0xab,0xa7,0xab,0x87,0xfb,0x48,0xf0,0x85,0xa0,0xe1, +0xa0,0xf7,0x7d,0x36,0x86,0xbc,0x19,0x99,0x45,0x95,0x67,0x7e, +0xc6,0xaf,0x85,0xf7,0x1a,0x3f,0xf5,0xbe,0xe7,0x7d,0xc7,0xbb, +0xb8,0x9b,0x3f,0x50,0xb0,0x3f,0xef,0xfd,0xdc,0xae,0xea,0x86, +0x96,0xaa,0x5e,0xee,0xfb,0x1e,0xfc,0x9e,0x51,0x16,0x65,0x15, +0x2a,0x0a,0x38,0x38,0x07,0x9b,0x31,0x60,0x1c,0x9c,0x19,0xcc, +0xa1,0xf6,0x16,0x57,0x5f,0x87,0xd5,0x4c,0xef,0x01,0x6a,0x11, +0x36,0x1c,0x60,0x45,0x35,0x73,0x02,0xab,0x77,0xe3,0x6a,0x06, +0x6c,0x6e,0x13,0xd8,0xb0,0x1b,0x37,0x30,0x32,0x7c,0x97,0x92, +0xa6,0x6d,0xb7,0x59,0xe1,0xf5,0xdd,0x04,0xf7,0xdc,0x86,0x3d, +0x8c,0xf8,0x00,0x35,0x49,0xf6,0xc1,0xf4,0x6d,0x49,0x3b,0x7b, +0x73,0xf8,0xe8,0x1b,0xc1,0xf7,0x82,0xa4,0x48,0xdc,0x13,0x8a, +0xa9,0x4a,0xa1,0x06,0xad,0x75,0xdb,0xca,0x4d,0xc4,0xc3,0x5b, +0xc4,0xdd,0xdc,0xce,0xd1,0xc8,0x43,0x2f,0xcb,0x20,0xd3,0x24, +0x23,0x37,0x3f,0xb7,0x20,0xa7,0x88,0x92,0xfe,0x97,0x54,0xe3, +0x0f,0xa6,0x6a,0x0a,0xa5,0xfe,0x18,0x4f,0xd5,0xf8,0x03,0x55, +0x48,0xc2,0x58,0x55,0x38,0x79,0xf9,0xe1,0x8d,0xc9,0xc2,0x49, +0x8a,0xad,0x8e,0xd9,0x1f,0xb2,0xd3,0x9a,0x6a,0x8f,0xb9,0xf8, +0x54,0x7b,0x8c,0x93,0xee,0xd3,0xbd,0x59,0x4f,0xb7,0xc7,0x9c, +0x71,0x92,0xaa,0x14,0x2e,0x9c,0x1f,0xfd,0xb3,0x3d,0x46,0x2a, +0x9c,0xa4,0xf4,0x53,0x88,0xc7,0x95,0x24,0x3d,0x28,0x4d,0x9e, +0x16,0xd8,0x56,0xcc,0xdb,0x5d,0xb6,0x1d,0xb1,0xe9,0xb2,0xf2, +0xe6,0x73,0x4e,0x2a,0x7d,0x72,0xbc,0xb4,0xa2,0xf7,0xc7,0xec, +0x8b,0xbd,0x79,0xe1,0xd6,0x47,0x9d,0x63,0x66,0x95,0xbc,0x93, +0xa9,0xa1,0x8e,0xae,0x8c,0x22,0xc8,0x1c,0xff,0x9c,0xd6,0xe6, +0x86,0x8e,0x8a,0xa6,0xe8,0x04,0x1e,0x9c,0xe1,0xb2,0x68,0x8b, +0x97,0xc1,0x80,0xf1,0x76,0x71,0x75,0x72,0x76,0xd5,0x69,0xe7, +0x1d,0x6d,0x7b,0xad,0xfb,0x2d,0x3b,0x2d,0xd4,0xe5,0xc1,0x81, +0x21,0xf2,0x50,0xee,0x8c,0x99,0x45,0x9c,0xcd,0xfc,0x44,0xfd, +0x2b,0xe7,0xee,0xc4,0x7f,0x98,0xa8,0x8e,0x69,0x43,0xa0,0x60, +0xc7,0x12,0x2f,0x24,0xf6,0x52,0xff,0xe1,0x2f,0xb8,0x12,0x5c, +0xfe,0x00,0x96,0x33,0x7d,0x9b,0xc8,0x03,0x58,0xb5,0x89,0x45, +0x1b,0x53,0xb2,0x0e,0x97,0x3f,0x62,0xc1,0x62,0x2e,0xac,0x5a, +0x87,0xab,0x18,0xf1,0x15,0x6c,0x24,0x05,0x07,0x73,0x76,0x64, +0xec,0xa2,0xf4,0x29,0xf4,0xa6,0xdf,0x27,0x27,0x2f,0x73,0x58, +0x83,0x9d,0xa4,0x59,0x9a,0xaa,0xf0,0xbd,0x6a,0xaa,0xc2,0x49, +0xa9,0x2b,0x66,0xc2,0x1f,0x66,0x92,0x36,0xbd,0x5a,0x93,0xe6, +0x83,0x9d,0x55,0xbc,0xf5,0x45,0x87,0x1e,0xb3,0x7e,0x0e,0x11, +0x4d,0x48,0x4f,0x4f,0xcb,0x68,0xe9,0xa8,0x59,0x11,0xef,0x7e, +0xc2,0x5e,0x66,0x64,0x4a,0xb1,0xe9,0xfa,0x34,0x82,0x0b,0x6d, +0x87,0xe0,0x45,0x4d,0x78,0x1f,0x5f,0x77,0x60,0x83,0xaf,0xf8, +0x5f,0x3e,0x39,0xf8,0x54,0x2e,0xcc,0x2a,0xc6,0x82,0x62,0xa4, +0xcb,0xd3,0x61,0xf8,0xa7,0xcd,0x44,0xdd,0xd3,0xb9,0xb0,0x69, +0x33,0x61,0xd1,0x25,0xfb,0xdf,0x50,0xab,0xc2,0x78,0x29,0x17, +0x96,0x61,0xc8,0xb7,0x65,0xab,0x9d,0xba,0x87,0x2f,0xb3,0x38, +0xd3,0xdd,0x7a,0xb5,0x99,0x46,0x91,0xd6,0x77,0x1d,0x05,0xfd, +0xf1,0x0f,0x28,0x06,0x5d,0x99,0xd0,0x7e,0x0c,0x96,0xcd,0x87, +0x56,0x26,0x65,0x58,0x0d,0x65,0x55,0x04,0x5e,0x04,0xed,0x1e, +0xd4,0xbe,0x0f,0x6b,0xe1,0x2e,0xae,0xbd,0x0b,0x5a,0xbd,0xa8, +0x75,0x5f,0x7f,0x33,0xee,0x97,0xc1,0xfe,0xad,0xb8,0x0a,0xef, +0xc2,0xaa,0xcd,0xa8,0x6d,0x04,0xda,0xf8,0x22,0x8b,0x46,0x13, +0x0b,0x88,0x5b,0x9b,0x4d,0xa7,0x5d,0x83,0x9d,0x1d,0x5f,0x6f, +0x57,0x67,0x51,0x63,0xc2,0x95,0xe0,0x6e,0xe2,0xdc,0x65,0xd5, +0x65,0x59,0xef,0x68,0xc3,0x37,0xd9,0x36,0x99,0xd7,0xcb,0x38, +0x38,0x0b,0xaf,0x93,0x35,0x6f,0x7e,0xc1,0x82,0x72,0x0d,0xc1, +0x67,0xbe,0x80,0x67,0x18,0x54,0xe2,0x02,0xf2,0xdb,0x8a,0x37, +0x19,0x58,0x3d,0xf7,0x5b,0x78,0x66,0x05,0x2b,0xfe,0x6b,0x3d, +0xc9,0x3a,0x94,0xb6,0x23,0x71,0x37,0x45,0x43,0x31,0xd7,0x43, +0xee,0x86,0x5c,0x92,0x76,0x5b,0xf8,0x0f,0x34,0x0b,0xee,0x3f, +0x49,0x8c,0x4b,0x76,0xe2,0x86,0xf7,0x0d,0xaf,0x0b,0x93,0x61, +0x4b,0x4a,0xfd,0x8d,0x9e,0x8e,0x9b,0xa8,0x12,0xe3,0x2a,0x4f, +0x1e,0x48,0x3d,0x39,0xf5,0x4c,0x63,0xd3,0x9e,0xfc,0xa8,0xdb, +0x61,0x97,0x3f,0x21,0xfc,0xd3,0x71,0x93,0xed,0x12,0x84,0xa7, +0x5e,0x7c,0x32,0x6e,0x32,0xfc,0x54,0xdc,0xe4,0x7f,0x0a,0x0b, +0x09,0xc4,0xf4,0x8a,0x45,0x32,0x08,0x38,0x88,0x89,0xb8,0xa4, +0xcf,0x13,0xd6,0xf7,0xe0,0xda,0x0f,0xc0,0x58,0xb5,0xbd,0x1e, +0xd8,0xef,0xc3,0x1d,0x46,0xb0,0xb3,0x74,0x80,0x62,0xcb,0x1c, +0x06,0xd3,0xe9,0xc5,0xc3,0x86,0x1e,0xaa,0xc4,0xd0,0x6b,0x44, +0x60,0x57,0x0f,0xee,0x62,0x40,0x17,0xf7,0x92,0x5e,0x31,0x4e, +0xc6,0xe2,0xb2,0x40,0x52,0x48,0xf9,0x79,0xda,0x24,0x3f,0xf7, +0x57,0x15,0xd4,0xff,0xe9,0xcf,0x65,0x12,0xe6,0x0e,0x94,0x4a, +0xf8,0x26,0x5c,0x3f,0x23,0xf9,0x81,0xc5,0xde,0xc5,0x5e,0x2b, +0x22,0x56,0x44,0x2e,0x8b,0x29,0x6b,0xad,0x1c,0x2c,0xee,0xe2, +0xe0,0xb3,0x3e,0x71,0xcc,0x10,0xb6,0x30,0xde,0xc6,0x4e,0x3a, +0x2e,0x16,0x5b,0x4e,0xf3,0xc9,0x06,0xb0,0x35,0x05,0x56,0xa5, +0xc3,0xbb,0xb9,0xea,0xb9,0x7e,0x4a,0xff,0x4c,0x79,0x13,0x65, +0x40,0xfd,0xfb,0x6f,0x1a,0xb7,0x51,0xa1,0xe5,0x0a,0x31,0x24, +0xe3,0x49,0x0c,0xcf,0x7c,0x12,0xec,0x4c,0xb1,0x9c,0x13,0x2e, +0xc7,0x9c,0x26,0x59,0xce,0xff,0x52,0x44,0x5d,0x92,0x88,0xf4, +0x29,0xd8,0xb1,0x99,0x04,0x3b,0xde,0x92,0xf3,0xee,0x89,0xef, +0xa3,0x4c,0x87,0x9b,0x8e,0xe3,0x15,0xc7,0xab,0x72,0x8c,0x52, +0xb9,0xa5,0x0a,0x61,0x51,0x17,0xc8,0xdd,0x87,0x56,0xf2,0x3f, +0xb8,0x41,0xe1,0x22,0x1c,0x84,0x9b,0xec,0x20,0xde,0x24,0x70, +0x54,0x8c,0xc6,0xe7,0x99,0x82,0xc4,0xf4,0xac,0xd2,0x79,0x02, +0xa1,0x3c,0x63,0x3e,0x8b,0xaf,0x46,0x6c,0x35,0xd8,0xa4,0xd1, +0xea,0x52,0x3b,0x94,0x33,0x90,0x76,0x51,0x1d,0xde,0x5e,0xbc, +0x98,0x51,0x98,0xa9,0x3d,0x62,0x92,0x93,0xce,0x9e,0x4b,0xd4, +0xcc,0xd2,0x53,0xfb,0x89,0x69,0xcd,0xc9,0x6d,0xd7,0x9c,0xe8, +0xc6,0x48,0x16,0xc3,0x70,0x1e,0x79,0x04,0xaf,0xae,0x63,0x61, +0xc3,0xdc,0x47,0x30,0x77,0x1d,0x2b,0x6e,0xc4,0xd7,0xc9,0x3f, +0xe0,0xd5,0xd5,0xd2,0x99,0x7f,0xc0,0xdc,0xd5,0x2c,0x2e,0xc0, +0x10,0x82,0x9a,0x77,0x40,0x93,0x11,0x4d,0x70,0x36,0xc9,0x79, +0x5f,0xb1,0x2d,0x65,0x87,0x54,0x84,0x71,0x33,0xe8,0x5e,0x20, +0x35,0x98,0xa7,0xa9,0xc1,0x94,0x64,0x9d,0x22,0x61,0xa7,0xa8, +0xa9,0xc0,0xd2,0x00,0xec,0x26,0xf1,0x1f,0xaa,0x81,0xe6,0x4e, +0x66,0xf6,0x1f,0x32,0x57,0xa2,0x77,0xd9,0xea,0x9a,0xeb,0x9d, +0x01,0x98,0x5b,0x08,0x6f,0x25,0xc3,0x76,0xae,0x61,0x10,0x4d, +0x98,0x8c,0xde,0xb4,0x81,0xe4,0x61,0x83,0x64,0x5e,0x8e,0xbc, +0x07,0xbe,0xae,0x8b,0x6c,0xa5,0x36,0x9f,0x59,0x9a,0x55,0x9b, +0xd9,0x90,0x86,0x2f,0x16,0xe2,0x33,0x8d,0x6f,0x3b,0xee,0x34, +0xdd,0x7f,0xe4,0x70,0xb5,0x09,0x7f,0xe1,0x62,0xfb,0xe5,0xba, +0xeb,0x55,0xef,0x37,0x1f,0xee,0x3b,0xca,0x3d,0x3e,0x21,0x7c, +0x48,0x54,0x83,0x30,0x5c,0x6c,0xa3,0xac,0x62,0xac,0x62,0x87, +0x1e,0x8c,0x81,0xda,0x00,0xb0,0x66,0xa5,0xbc,0x8f,0x9e,0x87, +0xb6,0xbb,0x5e,0x50,0x5e,0x50,0x7e,0x60,0x5e,0xcd,0x68,0xa5, +0x94,0x72,0x2b,0xe0,0xfd,0x8e,0x7a,0x1e,0x75,0xd7,0x0b,0xa7, +0x6c,0x28,0x3c,0xdd,0xd5,0x82,0x6f,0xb1,0x6e,0x33,0x6e,0x30, +0xf2,0x34,0xf1,0xb4,0xf0,0x76,0x34,0xa2,0xeb,0x54,0xbf,0x25, +0xbe,0x25,0xa1,0x45,0x9a,0x0c,0xd1,0xaf,0x8a,0xa4,0x14,0x24, +0xe4,0x25,0x64,0xc8,0xf8,0x36,0x65,0xf0,0xb5,0x80,0xab,0xbe, +0xc3,0xea,0x70,0xb1,0x9f,0x00,0x77,0xb9,0xfb,0xf0,0xbf,0x0c, +0x16,0xae,0xa7,0x7f,0x0f,0x19,0x5f,0x41,0x6e,0xb7,0x11,0x7c, +0xd9,0xc3,0xe2,0xcb,0xc0,0x11,0xe4,0xd6,0x03,0xc7,0x0a,0x9b, +0xb5,0x48,0x0c,0x2e,0x0c,0xc2,0xd9,0xf6,0x38,0xc3,0x11,0x9e, +0x95,0xc3,0x4b,0xd1,0xb0,0x88,0xc3,0xaf,0x1f,0x6b,0x13,0x30, +0x80,0x35,0x38,0x77,0x2d,0x9b,0x65,0xa8,0x76,0x8d,0x69,0x95, +0x26,0xd0,0x0a,0x16,0x98,0x27,0x16,0xb3,0xe0,0x24,0xcc,0x25, +0xb8,0xe6,0x6b,0xea,0x11,0xf1,0x63,0x5c,0x4c,0x14,0x87,0x92, +0xb6,0x9f,0xdf,0xd5,0x9d,0xc5,0xc7,0x5d,0x0f,0xbf,0x17,0x46, +0x6d,0xa5,0x35,0xd6,0x93,0xa2,0x8f,0x33,0x7e,0x49,0xf8,0xce, +0x38,0x81,0x3f,0xb3,0x3e,0x74,0xad,0xef,0x76,0x4e,0x78,0x1e, +0xce,0x11,0x58,0xb3,0x1c,0xd7,0x30,0xb3,0xe1,0xee,0x13,0x7c, +0xd9,0x90,0xc9,0x27,0x58,0x7c,0x9b,0xfc,0x7d,0xca,0x2d,0x85, +0xfa,0x99,0x1e,0x8f,0x58,0x97,0x58,0xa7,0xd3,0xea,0xf7,0xbe, +0xed,0x5e,0x71,0x4f,0x7f,0xcb,0x12,0xe3,0x5f,0xd6,0xb1,0x0e, +0xa7,0xed,0x4e,0x3b,0x9c,0x09,0xbc,0xee,0x7b,0xcd,0x7b,0xd8, +0xec,0x49,0x3f,0x5e,0x94,0x49,0x8c,0xc9,0xe9,0xd1,0x07,0x97, +0x26,0x23,0xa4,0x93,0x41,0xbe,0x49,0xcc,0xae,0x9a,0x15,0xf1, +0x27,0x06,0x75,0xd1,0xb3,0x6e,0xe2,0x9d,0x2d,0xba,0xcd,0x24, +0x2d,0x57,0x9f,0x06,0xec,0x9e,0xd3,0x80,0xbd,0x2f,0xa1,0x37, +0x81,0x13,0xd7,0x0d,0x09,0x5b,0x58,0x41,0x0f,0x9a,0xc8,0x3d, +0xf0,0xed,0x45,0xdf,0x8f,0x74,0x76,0xa0,0x9d,0x0c,0xec,0xb6, +0x60,0x84,0xa1,0xd0,0xd9,0x27,0x6d,0x45,0xfe,0x33,0x81,0xf2, +0x1e,0xe4,0x1e,0xfd,0xd6,0xfd,0xe6,0x3d,0xbd,0x2d,0x4b,0x8d, +0x7f,0x5c,0xb7,0x88,0x11,0x17,0x6c,0x23,0xca,0x43,0xe9,0x3b, +0x93,0xf7,0x48,0x95,0xb8,0xd7,0x83,0x3e,0x09,0x1a,0xe7,0x30, +0x0e,0xdb,0x48,0x35,0xc5,0x99,0xd3,0x4b,0x6b,0x8d,0xa4,0xc6, +0x62,0x08,0x79,0x87,0x71,0x3d,0x95,0x5c,0xa1,0x09,0x0b,0x41, +0x77,0x40,0xfc,0x58,0x1f,0x36,0xb1,0xe1,0x8b,0x0f,0x18,0xe1, +0x5c,0xc7,0x42,0x7d,0x1e,0xd6,0xb5,0xdd,0xbe,0x9d,0x0e,0x2f, +0x73,0x30,0x03,0x17,0x33,0x07,0xf3,0xfc,0xae,0x68,0xfc,0xca, +0xb4,0x29,0xb3,0xdb,0x34,0xbf,0x67,0xf5,0x73,0xd4,0x66,0xff, +0x71,0x58,0xb8,0x4e,0xba,0xf1,0x3c,0x68,0xb2,0x77,0x52,0x6e, +0xa5,0x8f,0x67,0x79,0x76,0xf1,0xf8,0x9a,0x1b,0xee,0x0d,0xc6, +0xf5,0x67,0x14,0x86,0xfc,0x95,0xf3,0x37,0xe3,0x6f,0x26,0x73, +0x38,0x0f,0xa3,0x8d,0xc1,0x8e,0xb5,0x3a,0xb2,0xcd,0x7c,0xb1, +0x71,0x09,0xfd,0xbd,0xb3,0x86,0x1f,0x76,0x97,0xfd,0xc0,0x25, +0xe1,0xe1,0x61,0x38,0x9c,0xc4,0x94,0xbe,0xfb,0x99,0x09,0x3c, +0xaf,0x55,0x3c,0xc8,0xaf,0xe8,0x5c,0xd7,0x6e,0x3a,0xce,0x89, +0x6f,0xa0,0xab,0xd4,0xf4,0x18,0x90,0x30,0x59,0x6d,0xf9,0x6f, +0x43,0xbc,0xa4,0x8a,0xc5,0xf1,0xbf,0x94,0x78,0xfe,0xc7,0x89, +0x4f,0x93,0x6d,0x79,0x59,0xc1,0x0a,0x27,0xf3,0x27,0x49,0xc8, +0xc9,0xf2,0x74,0x29,0x09,0x99,0xf4,0x97,0x24,0xe4,0x54,0xc5, +0x22,0xc5,0x02,0xfe,0x50,0x44,0x4a,0x6a,0x8a,0xdb,0xb2,0xea, +0x8d,0xf3,0xf8,0x10,0x27,0x2f,0x53,0x1f,0x37,0x0e,0x87,0x2f, +0x13,0xa5,0x6f,0xa1,0xbd,0xc2,0xbd,0x27,0x9f,0x0f,0xa9,0x90, +0x26,0x60,0x73,0xa7,0x1e,0x0f,0x90,0x21,0xf8,0x5c,0xf7,0x82, +0xb0,0x43,0x34,0x12,0x77,0xb0,0x60,0x48,0xdf,0x88,0x0b,0x7e, +0x87,0x05,0xcc,0xf0,0x22,0xf2,0x3b,0x2c,0x5a,0xc4,0x8a,0xed, +0x23,0xa4,0x64,0x47,0xde,0x74,0x82,0xdc,0x47,0x35,0xd5,0x4b, +0x39,0x35,0xfb,0x29,0xfd,0x07,0xc3,0x3f,0xf3,0x8a,0x7f,0xc0, +0x42,0x82,0xd4,0x3e,0x00,0xcb,0x82,0xfe,0x5c,0xca,0x94,0x59, +0x5c,0xc4,0xcc,0x9e,0x40,0xc1,0x92,0x14,0x05,0x14,0xc9,0x0b, +0x43,0x8a,0x3a,0x79,0xdb,0x42,0xab,0x4a,0xbb,0xba,0xea,0xb2, +0x92,0xca,0xa2,0x5a,0xeb,0x1a,0xfe,0xa4,0xb3,0xa7,0xab,0xbb, +0xa7,0x6b,0xad,0x57,0x43,0x50,0x33,0x07,0xb6,0x7d,0x58,0xc1, +0xa4,0x94,0x26,0x97,0x27,0x56,0xea,0x27,0xf3,0x31,0x4e,0x51, +0xae,0x11,0xee,0x1c,0x3a,0x19,0x52,0x44,0x12,0x60,0xe1,0x6d, +0xeb,0xea,0xe8,0x55,0xed,0x5c,0xe3,0x51,0x6a,0x67,0xcb,0x57, +0x78,0x54,0x3b,0x14,0xba,0xb8,0xba,0x3b,0x7a,0xda,0x78,0x95, +0x1a,0xf3,0xa5,0xb9,0xc5,0xb9,0x85,0x79,0x1c,0x26,0xc3,0x1e, +0x74,0x97,0x66,0xcf,0xe8,0x50,0xb2,0x31,0x90,0x95,0xdf,0xa5, +0x09,0xd6,0xb0,0x91,0x15,0x2b,0x60,0xf1,0xd3,0xed,0xa7,0xbe, +0x37,0xbc,0x2f,0xfc,0xdb,0x38,0xb5,0xf1,0xa7,0x4a,0x1d,0xb4, +0x9c,0x8e,0x4e,0x97,0x3a,0x3c,0x29,0x9d,0xf4,0x7d,0x92,0x28, +0x9a,0x2a,0xb6,0xed,0x7b,0x6a,0x9c,0xda,0x93,0x44,0xd1,0xe0, +0xd3,0xe3,0xd4,0x54,0x54,0x02,0x7e,0x84,0x6f,0x89,0xd2,0xb0, +0x46,0xd6,0x6c,0xc6,0xa1,0x0b,0x53,0xd7,0x5a,0xd9,0x55,0x38, +0xc2,0xe1,0x0b,0xd4,0x85,0x7d,0x0e,0x75,0x6b,0x59,0xe3,0x59, +0x6f,0x63,0xdd,0x4f,0xd4,0xf0,0x2e,0x24,0x99,0x3a,0xa9,0x87, +0x92,0x8e,0x4a,0xc9,0x8d,0xd1,0x90,0x1b,0x61,0x14,0xeb,0x64, +0x48,0x55,0x08,0xaa,0xd1,0x38,0x46,0x93,0x75,0xd3,0x8e,0x54, +0xc8,0xa7,0xe1,0x10,0x31,0x39,0xbe,0xed,0xc8,0x6e,0xbb,0x0a, +0x19,0x7f,0xab,0xf9,0xb3,0xab,0xfd,0x57,0x39,0x30,0x38,0x43, +0xba,0x8c,0x07,0x8e,0xb5,0x1c,0x6f,0x69,0xe7,0x6d,0x06,0xb4, +0x6e,0x98,0x37,0x53,0xc7,0x54,0xaf,0xaa,0xe6,0x50,0x7d,0x45, +0xca,0xc2,0x4d,0x27,0x4b,0xf2,0xff,0x0c,0xdb,0x3b,0x9d,0xf0, +0xff,0xef,0x84,0xed,0xad,0xa8,0x63,0xfa,0xdf,0x74,0xea,0x95, +0xfc,0x65,0x7c,0xe2,0x0d,0xea,0x98,0x60,0x02,0x67,0x92,0x8f, +0xc0,0xbb,0x17,0xbd,0x3f,0x84,0x20,0x90,0x89,0x09,0x28,0x03, +0xaf,0x9d,0xe8,0x26,0x03,0xb7,0x1d,0x28,0x37,0x14,0x5a,0xfb, +0x58,0x91,0x87,0x7f,0x91,0x45,0xcb,0x7e,0x67,0x61,0xe9,0xdc, +0x1f,0x17,0x2d,0x65,0x60,0xd9,0xdc,0xdf,0x7f,0x5b,0xc4,0x62, +0xb9,0xb8,0x94,0x84,0x55,0xc9,0x1b,0x82,0x4b,0x8d,0x03,0xf8, +0x6c,0x0f,0xa5,0x7d,0x9a,0x2b,0x27,0xac,0x39,0x43,0x70,0x1b, +0x93,0x5d,0x91,0xd3,0x94,0x5e,0x6e,0x90,0xcd,0x47,0xb8,0x04, +0x98,0x06,0x38,0x70,0xf8,0x99,0x21,0x84,0x6f,0x41,0x1f,0x19, +0xf8,0xe0,0x2b,0x83,0xf0,0x0a,0x04,0xf4,0x62,0xc0,0x3d,0xc8, +0x65,0x1e,0xbf,0xf3,0x21,0xc9,0xdf,0x9b,0xbd,0x31,0x6d,0x8b, +0x14,0x73,0xfb,0xc8,0xff,0x53,0x3f,0xd5,0x34,0x97,0xe9,0xca, +0x37,0xa3,0x27,0x51,0xf9,0x3f,0x07,0x4c,0x4a,0x36,0x4f,0xca, +0x16,0xfe,0x87,0xc4,0xc6,0x53,0x43,0x17,0xff,0xcb,0x7c,0x9c, +0x5e,0xb3,0x9e,0xff,0x34,0x1f,0x67,0x60,0x5a,0x42,0xeb,0xd9, +0x8a,0x84,0x0a,0xaa,0x8e,0x93,0xb5,0xf6,0x9d,0xaa,0x71,0x16, +0x37,0xbc,0xa9,0x84,0xba,0xe0,0x36,0xb1,0x39,0xb4,0x4a,0x0b, +0x35,0xb4,0x8b,0x4c,0x78,0x78,0x95,0x3a,0xaa,0x2b,0xb5,0x77, +0xb9,0x24,0xa6,0x62,0x07,0xbc,0x7a,0x08,0xfe,0x7e,0xbc,0xa8, +0x9b,0x47,0xcd,0xf1,0xb7,0x86,0xac,0xaf,0x71,0xb8,0x1e,0x9d, +0x08,0xa4,0xb6,0x63,0x2a,0x23,0xbc,0x84,0x3f,0x11,0x48,0x14, +0x23,0x31,0x91,0x05,0x0f,0xb0,0x23,0xb8,0x05,0xb7,0x01,0x35, +0xae,0xaf,0xcf,0xa5,0x47,0x7b,0xe9,0x11,0xea,0xc8,0x48,0x99, +0x7b,0xa9,0x73,0xbe,0x4b,0x75,0x39,0x2f,0x2f,0x73,0x6d,0xf4, +0x28,0xe1,0xc0,0x1f,0x5f,0x26,0xe5,0xd5,0xa5,0x0d,0xca,0x2a, +0x5b,0xaa,0xf7,0x1e,0x1e,0xb6,0xee,0xee,0x9c,0xb8,0x17,0xd7, +0x92,0x22,0x55,0xdb,0xa1,0x54,0x8b,0x3b,0x99,0xc5,0x98,0x92, +0xd2,0x54,0xee,0x62,0x6a,0xe6,0x8d,0x60,0xb4,0x96,0x74,0xc3, +0xaf,0xc6,0x7d,0xf0,0x2d,0x75,0xf7,0xdf,0xb2,0xc2,0xdb,0xd0, +0x4d,0x76,0xe1,0xaf,0x77,0x58,0xf8,0x15,0x5f,0x22,0xdb,0xf0, +0xd7,0x4f,0xd8,0xd9,0x10,0x2f,0x44,0x93,0x69,0xac,0x6d,0x29, +0xd5,0x9d,0x49,0x25,0xb9,0x43,0x4f,0xa7,0x31,0xf2,0x03,0x0a, +0x9f,0xa6,0xe4,0x47,0x3c,0xfe,0x9d,0x4f,0x36,0x4f,0xf1,0xc9, +0x03,0xd3,0x70,0xbb,0xeb,0xbf,0xc0,0xed,0x4e,0x65,0x10,0x05, +0x3f,0xd4,0xff,0x0a,0xdf,0x89,0xa5,0x04,0x83,0x19,0xe3,0xc8, +0xd4,0x36,0xcd,0x09,0xdb,0x3b,0x8f,0x5d,0xfa,0xbf,0x01,0x6d, +0x81,0x47,0xed,0x87,0xb0,0x13,0xec,0xc5,0x0c,0xb4,0x87,0x0d, +0xf4,0xeb,0xbc,0x06,0xcf,0xb1,0x0d,0xc9,0x6d,0xe9,0x35,0x0a, +0xef,0x76,0xde,0x3e,0xc4,0x20,0xd8,0xe0,0x14,0x27,0x1e,0xea, +0x1b,0x83,0xd7,0xde,0x63,0xf7,0x95,0x7a,0x3d,0xd4,0x80,0x00, +0xa6,0x35,0x2b,0xab,0x45,0xf3,0x0e,0xab,0x9f,0xa5,0x26,0x1a, +0x4d,0xac,0x27,0xd4,0x4b,0xcc,0xc2,0x19,0x0c,0xb4,0xcf,0x85, +0x59,0xc0,0xe1,0x2c,0x36,0x0f,0xfb,0xa9,0x45,0x84,0xe7,0xa9, +0x49,0x14,0x75,0x70,0x0b,0x81,0xd7,0x70,0x8e,0x34,0xf7,0x7c, +0x7c,0x2e,0x25,0xe9,0x0b,0x70,0x0e,0x2b,0xfe,0xfa,0x80,0x64, +0x1d,0x56,0xe5,0x31,0xb2,0xf9,0xd8,0x6b,0xa1,0x1f,0x4b,0x44, +0x3c,0x58,0x05,0xb0,0xb3,0x27,0xcb,0x52,0x24,0xd6,0xe8,0xbe, +0x95,0x2e,0xb8,0x0c,0x8a,0x15,0x55,0x2a,0xe9,0x32,0xa9,0x92, +0x4f,0x47,0xc4,0xff,0x73,0x15,0x80,0x3b,0x75,0xb2,0xa1,0x4f, +0x47,0xc4,0x5b,0xa7,0x22,0xe2,0x7f,0x56,0x2e,0xff,0x5b,0x44, +0x5c,0xd5,0xad,0xdb,0xa9,0xea,0xd6,0x95,0x70,0xa2,0x10,0x0c, +0xcf,0x92,0x40,0xbf,0x40,0x3f,0x79,0x20,0x17,0x71,0x2a,0x2e, +0x62,0x7e,0x82,0xd5,0x9d,0x84,0xeb,0x29,0x7d,0x69,0xea,0x09, +0xe1,0xe7,0xc3,0xe3,0xc3,0xeb,0x33,0xf9,0x88,0xc6,0xa0,0xb6, +0xc0,0x3a,0xc7,0x50,0x3e,0x25,0x28,0x59,0x9e,0x14,0xe8,0x16, +0xe3,0x10,0x6b,0x77,0x7a,0xe0,0x42,0xcb,0x85,0xfa,0x51,0xfb, +0x3c,0x3e,0xc0,0xd9,0xcb,0xd6,0xdd,0x2e,0x42,0x11,0x96,0x19, +0x9a,0x59,0x56,0x57,0xda,0x91,0x53,0x6d,0x97,0xcb,0x07,0x39, +0xf9,0x52,0x1f,0x14,0x91,0x46,0x1f,0x29,0xde,0xee,0x7c,0x95, +0x6b,0x95,0x73,0xa5,0x3d,0x87,0xe1,0x09,0x44,0xee,0x1b,0x78, +0x32,0x30,0x20,0x24,0x2e,0xf8,0x6c,0x48,0x5c,0x82,0x15,0x7f, +0x3b,0xe1,0x46,0x6a,0x5f,0x5a,0x3c,0xfd,0xa8,0xf3,0xe1,0xf5, +0x0a,0x3e,0xaa,0x21,0xbc,0x55,0xde,0xe0,0x18,0xc6,0x27,0x07, +0x25,0xca,0x13,0x03,0x3d,0x63,0x5c,0x4e,0x3b,0x9d,0xee,0x1d, +0xae,0x1f,0xae,0xbd,0x60,0x9f,0xcf,0xcb,0x5d,0xfd,0x1c,0xbd, +0x9d,0xc2,0xd3,0x25,0x5c,0x56,0x42,0x3f,0x2a,0xbb,0xca,0x5e, +0xc9,0x07,0x3b,0x9f,0xb4,0xf7,0x76,0x09,0xcb,0x08,0xcd,0x08, +0x4f,0xf3,0x72,0xe3,0x6b,0x5d,0xaa,0x9d,0xab,0xed,0x38,0x41, +0x03,0xad,0x49,0xb7,0x98,0x01,0xbf,0xc8,0xfe,0x07,0xe9,0x1d, +0x11,0x94,0xdd,0xa2,0x52,0x58,0xc0,0x96,0xe0,0xb7,0xe4,0x4e, +0xe2,0x07,0xa9,0x83,0x69,0xd2,0x77,0xa3,0x1f,0x99,0xc1,0x47, +0x36,0x86,0xb5,0x06,0x35,0xd2,0x8f,0x4c,0x0a,0x4a,0x52,0x7d, +0xa4,0xeb,0x69,0xe7,0xd3,0xdd,0xc3,0xf5,0x17,0x6a,0x46,0xed, +0x0b,0x78,0xb9,0xb3,0xaf,0xbd,0x97,0x7d,0x78,0x06,0x5d,0x88, +0x8a,0xf2,0xba,0xb2,0x2e,0xa5,0xf4,0xed,0x82,0x9d,0x7c,0x6c, +0xbc,0x9c,0x5d,0xcb,0x79,0x2f,0xb7,0x1a,0xd7,0x6a,0x97,0x2a, +0x7b,0x75,0xf9,0x49,0x2a,0xc0,0x80,0x60,0xfa,0xad,0x82,0xe2, +0x38,0xc8,0xb4,0x24,0x37,0x13,0xaf,0xa5,0xf6,0x4b,0x1f,0x12, +0x71,0x3e,0xbc,0x4e,0xc1,0x9f,0x6a,0x0c,0x6d,0x93,0xd7,0x53, +0x11,0x26,0x4f,0x89,0xd0,0x29,0xd6,0xfe,0x74,0xff,0x85,0xa6, +0xd1,0xba,0x31,0xfb,0x42,0x3e,0xc0,0xc9,0xc7,0xd6,0xd3,0x2e, +0x8c,0x8a,0x30,0x24,0xb3,0xac,0xbe,0xb4,0x5d,0x59,0x6d,0x9f, +0xc3,0x07,0xb9,0xf8,0xda,0x78,0xbb,0x86,0xa7,0x85,0x53,0x11, +0xd2,0xef,0x55,0xe3,0x56,0xed,0x58,0x6d,0x2f,0x3f,0x19,0x40, +0xa5,0xc7,0x45,0x44,0xd0,0x1b,0x25,0xea,0x02,0x91,0x20,0xd0, +0x8e,0xa4,0xdd,0x92,0x53,0xb8,0x11,0xfc,0x89,0xfc,0xd2,0x74, +0x45,0xb7,0x72,0xb2,0xa2,0x3b,0x6a,0xba,0xa2,0x3b,0x77,0xaa, +0xdf,0x3f,0x8d,0xda,0x7a,0x09,0x58,0x48,0x25,0xf1,0xcc,0x14, +0xd7,0xa5,0x24,0xc4,0xf9,0x84,0x5c,0x8a,0xb8,0xe6,0xd7,0xa9, +0xd0,0x9b,0xb4,0xb0,0x0e,0xbb,0x4f,0x96,0xc4,0xff,0xb5,0xbc, +0xc4,0xd3,0xc6,0xc7,0x69,0xef,0x54,0x21,0x81,0xaa,0xbc,0x44, +0x05,0xde,0x26,0xa3,0x62,0x93,0x76,0xbe,0x23,0x67,0xaa,0x06, +0x9f,0x83,0x92,0x64,0xd2,0x81,0x6b,0x6f,0x52,0x92,0xa6,0xda, +0xcf,0xc1,0xf1,0xa9,0xfd,0x1c,0xf2,0xae,0x40,0x54,0x8f,0x98, +0x6f,0x04,0xfe,0x87,0x30,0x49,0xb5,0x9f,0x03,0xac,0xc5,0x19, +0xa4,0x1d,0xd7,0x9a,0xb3,0x82,0xc3,0xf4,0x2e,0x0d,0xbb,0x89, +0x78,0xd9,0x08,0xce,0x32,0x11,0xbe,0x61,0xbe,0xe1,0xbe,0x1c, +0xea,0xe2,0xc0,0x20,0x24,0x7e,0x87,0x91,0xbd,0x10,0xf9,0xa3, +0xea,0x27,0x50,0x8b,0xb6,0x9f,0xc9,0x94,0xa9,0x0d,0x3e,0xd9, +0xa5,0xa1,0x84,0x4d,0x9f,0xda,0xa5,0x21,0x9b,0x79,0xbc,0xcd, +0x9e,0xe4,0xee,0x55,0x6c,0x4c,0xd9,0x42,0xe9,0x47,0xd4,0x1d, +0xf9,0x67,0x01,0x37,0xe8,0x1a,0xa4,0x54,0xaf,0xf2,0x5e,0xf6, +0x2f,0x53,0xf1,0x1a,0xf9,0x1a,0x55,0x49,0xc0,0xed,0x3f,0x43, +0x60,0x4a,0x3e,0x26,0x3f,0x9a,0x3e,0x2a,0xed,0xf8,0x4b,0x17, +0x0b,0xaf,0x9e,0x87,0x67,0xb9,0x01,0x46,0x76,0xfa,0x60,0x8c, +0x8b,0xc6,0xc9,0xd3,0x51,0x31,0x3e,0xf3,0xed,0x99,0x74,0x13, +0xb5,0x0e,0xa6,0x45,0x99,0xd7,0x94,0xa4,0x99,0xd4,0x7b,0xfe, +0xa3,0x87,0xf3,0xd0,0xcc,0xb4,0x83,0x89,0x5b,0xe1,0x67,0x64, +0x64,0x12,0xd2,0x11,0xdc,0x26,0x6f,0x34,0x7b,0x12,0xb1,0x55, +0xc9,0x5b,0x8a,0x9f,0x3d,0x29,0xe7,0x91,0xe4,0x3d,0x49,0xfa, +0x54,0xf2,0xbe,0x6a,0x34,0x89,0x96,0x5d,0x75,0xa7,0x48,0x9f, +0x25,0xdf,0x65,0xd6,0xa3,0x52,0x64,0x2f,0x1b,0x1f,0x67,0xef, +0x3f,0x49,0x5f,0x4f,0x42,0xcf,0x24,0x60,0x7e,0x12,0xb1,0x15, +0x9e,0x13,0x96,0x93,0x8f,0xb4,0x76,0x60,0xbe,0x81,0xf0,0x75, +0x3f,0x8b,0x27,0x8f,0x13,0xb9,0x63,0xa0,0x97,0x97,0x67,0x9d, +0x3b,0x5f,0x59,0xa9,0x2c,0xcd,0xa9,0xe3,0xd0,0x3d,0x8a,0x14, +0x79,0xe6,0x7a,0x29,0x5d,0x1a,0x4a,0xf9,0xa0,0xf2,0x93,0x95, +0x7e,0x45,0x1c,0xb4,0xbe,0x4d,0x0a,0x53,0x0b,0xd2,0x72,0xd3, +0x3c,0x1a,0x79,0x53,0xcf,0x63,0x7e,0x07,0x42,0x38,0xb4,0x64, +0x23,0xce,0xd0,0x75,0x75,0x26,0xcd,0x94,0xef,0x4d,0xe9,0xcb, +0xea,0xcc,0x8a,0x6e,0xe7,0x7d,0xa3,0xbc,0xa3,0xbc,0xa2,0x39, +0x58,0xcb,0xb6,0x67,0x64,0xbd,0x5b,0xb9,0xb5,0xff,0x88,0x7a, +0x43,0x8b,0xf1,0xa0,0xfb,0xcd,0xb0,0x87,0xea,0x98,0xe0,0x4d, +0xf0,0x4c,0x3f,0x9c,0x61,0x71,0x2f,0x5e,0x24,0xe3,0xba,0xdb, +0x58,0x9c,0x15,0xb4,0x66,0xfd,0x3a,0x8d,0x76,0xcb,0x8e,0x9e, +0xb2,0x1e,0x65,0x9f,0x3a,0x3c,0xc2,0x77,0x86,0x85,0xe5,0x3a, +0x47,0x19,0xb1,0x3b,0x9c,0x64,0x1d,0x4d,0xdb,0x95,0xb8,0x4f, +0x8a,0xa2,0x5f,0x0d,0xf9,0x28,0x64,0x8c,0xc3,0x28,0xea,0x4f, +0xaa,0xee,0x2b,0x7f,0x4e,0x96,0xe0,0x7a,0xf4,0x5a,0xf9,0x1a, +0x89,0x09,0xba,0xc2,0xf3,0x24,0xb1,0xec,0x7c,0xc5,0xb9,0x0a, +0x0e,0xae,0xac,0x65,0xa6,0xca,0xf1,0x03,0x9e,0x4c,0x26,0x91, +0xe6,0x19,0x99,0x4c,0x75,0x71,0x4e,0xb7,0xb5,0x3f,0x54,0x35, +0xf6,0x70,0x93,0x13,0x9f,0x0e,0xd9,0x1d,0xf3,0x2f,0x56,0xb5, +0xe1,0x8e,0xd7,0xde,0x2c,0xbb,0x26,0xc1,0xe4,0xc3,0x2e,0x87, +0xa4,0xbe,0xea,0x60,0xa9,0xaf,0xda,0x5c,0x9a,0xf8,0x64,0xd0, +0x75,0x62,0x72,0x6c,0xd8,0x93,0x89,0x4f,0xd3,0xbd,0xc6,0xeb, +0x46,0xe8,0x8a,0x9e,0x30,0xf8,0x8a,0x2c,0xcf,0xdb,0x59,0x74, +0xac,0x6a,0xa8,0xad,0x7d,0xb8,0xea,0x0e,0xf7,0x8f,0x7e,0x3c, +0xf3,0xc3,0x89,0x77,0x30,0xc4,0xe0,0x3e,0x53,0xb5,0xbb,0x4d, +0x67,0xc8,0xfc,0xb8,0xcb,0x6e,0xdf,0x35,0xfe,0xb9,0x7a,0x7c, +0x61,0x62,0x61,0x52,0x41,0x12,0xb7,0x95,0xc5,0x15,0x7e,0x2b, +0x36,0x20,0xa3,0xd1,0x65,0xdd,0x3a,0x56,0x36,0x92,0x33,0xa6, +0x0e,0xf5,0xb8,0x7f,0x44,0xf0,0x61,0x8a,0xa3,0x8a,0xa3,0x4b, +0xa3,0x39,0x7c,0x0b,0xc6,0x88,0xfb,0x31,0x5b,0x53,0x99,0xbd, +0xac,0xde,0xae,0xd3,0xe3,0x22,0x17,0x8e,0x22,0xf9,0x82,0xed, +0xcc,0x6e,0xcd,0x6b,0x2c,0x6a,0xf4,0x6d,0xf5,0xef,0x0c,0xe2, +0xde,0x63,0xb1,0x08,0xf7,0x91,0xe4,0x86,0x84,0xa6,0x73,0x6d, +0x1c,0x64,0xe0,0x6c,0x46,0x4c,0xf8,0x85,0x28,0xb5,0xa4,0x4e, +0x06,0xa9,0xa1,0xfd,0x52,0xd0,0x2d,0xa9,0x93,0xa1,0x18,0x3b, +0x49,0xe3,0xa7,0xf9,0x3f,0x66,0xfc,0x30,0x39,0x0d,0x6a,0xad, +0x9d,0x34,0x27,0x66,0x7c,0xb2,0xef,0x52,0xae,0x32,0xf0,0xc1, +0xd7,0x4f,0x5e,0xf7,0x1d,0x51,0x4d,0x80,0x94,0xa2,0x0f,0xd6, +0xd1,0x16,0xd1,0x16,0xa7,0xc7,0xee,0x4f,0xf5,0xc2,0x4c,0xa5, +0x5a,0xb4,0x03,0x0a,0xfc,0x8b,0xa8,0x47,0x19,0xab,0x99,0x74, +0xbc,0x3e,0x47,0xdc,0x9f,0x4e,0xb5,0x48,0xd1,0x87,0x76,0x3d, +0xa9,0x36,0xc3,0xe7,0xcf,0x54,0xcb,0x93,0xe8,0x83,0x34,0x01, +0xb2,0x28,0x5e,0x55,0x72,0x2a,0xdc,0xa0,0x1f,0xbd,0x6c,0x50, +0xaa,0x88,0xbb,0x77,0x7c,0x0b,0x25,0x62,0x6f,0x0d,0x7e,0xcf, +0x46,0x3d,0x9e,0x47,0x84,0x00,0xf8,0x9f,0x58,0xcb,0x7c,0x5a, +0xfc,0x6b,0xf3,0xf7,0xa3,0xae,0xf5,0xbc,0x96,0xfd,0x41,0x97, +0xbd,0x9e,0x94,0x6c,0xc1,0xc1,0x76,0xf1,0x2d,0x73,0xd8,0x8a, +0x84,0xdd,0xe2,0xb9,0xc1,0x6f,0x63,0x90,0xc2,0x84,0x57,0xc4, +0x67,0x9c,0x4f,0x8f,0xe7,0x7e,0x02,0x07,0xe2,0xe0,0x68,0x68, +0x7f,0xdc,0xa3,0xc4,0x86,0x1f,0x29,0xef,0xaf,0x6d,0x6b,0xe6, +0x76,0xe0,0x49,0x72,0x51,0xe0,0x8e,0xb1,0x22,0xb7,0x88,0x8c, +0x0b,0xdc,0x51,0x56,0xbc,0xd6,0x40,0xb2,0x8f,0xa6,0xed,0x49, +0xda,0xd7,0x93,0xc3,0x47,0x5f,0x09,0xf9,0x30,0x78,0x4c,0x0a, +0x2e,0xb4,0xfc,0xd7,0xe0,0xc2,0x89,0x1f,0xc8,0x35,0x81,0x7b, +0x9f,0x15,0xe3,0x50,0x9b,0x7c,0x9c,0x0f,0xcf,0xd4,0x8f,0xd7, +0x38,0x37,0xf1,0x26,0x5e,0xab,0x9c,0xde,0xf5,0xe3,0x84,0x59, +0xd5,0xe4,0x93,0xa0,0x2f,0x1d,0xae,0xb9,0x14,0x77,0xf1,0xfb, +0xab,0x56,0xd5,0xee,0xc9,0xe2,0x66,0x0b,0xbd,0xd4,0x62,0xa6, +0xba,0xa7,0xba,0xa4,0x52,0xc4,0x62,0x1d,0x63,0x75,0x7a,0xe4, +0xfe,0x98,0xca,0x62,0x9a,0x96,0xf2,0x5e,0xc7,0x5d,0x8e,0x38, +0x1f,0x0f,0x2a,0x92,0x17,0x07,0x16,0xd6,0x5e,0xac,0xba,0x55, +0x7a,0xd5,0x38,0x9f,0xf7,0x3d,0xe6,0x79,0xd4,0x4d,0x2f,0x5c, +0x11,0xa1,0x08,0x97,0x34,0xb8,0xd5,0xb4,0x55,0xaf,0x4e,0xdb, +0xc7,0xda,0xc7,0xde,0xd7,0x45,0xe7,0x34,0x3f,0xb0,0x8e,0xcd, +0x19,0xcc,0xff,0x30,0xe3,0x8a,0x61,0x16,0x1f,0xbe,0x3f,0x70, +0x87,0xdf,0x61,0x0e,0xdf,0x93,0x26,0x0b,0xe9,0x9f,0x31,0x3b, +0x63,0xab,0x61,0x19,0x69,0x15,0x63,0x19,0x93,0xac,0xcd,0x4f, +0x4e,0x1c,0x0c,0x7d,0xcb,0x43,0xe7,0xf8,0xc1,0x16,0x6b,0xfe, +0xfa,0xdd,0xea,0x9b,0x0a,0x98,0xd3,0x9a,0xda,0x9c,0xd6,0x9c, +0x11,0xdb,0xc7,0xdb,0x45,0xd8,0x9e,0xb2,0x8d,0x3a,0xdf,0x70, +0xae,0xf5,0x5c,0x17,0x07,0xcf,0x32,0x89,0x7a,0xaa,0xb8,0x63, +0x82,0xba,0xb8,0x7e,0x40,0xd8,0xc6,0x16,0x9c,0xcf,0x4f,0x28, +0x88,0x4f,0x37,0xe0,0x3b,0x32,0x83,0x3f,0x90,0xdf,0xf0,0x1f, +0x51,0x17,0x67,0x53,0x51,0x82,0xb4,0x39,0x1b,0xaa,0xe9,0x43, +0xf5,0x00,0x2b,0xc4,0x86,0x10,0x78,0x45,0x0f,0x5f,0xc1,0x97, +0xf4,0xa0,0x7f,0x90,0x7d,0x5c,0x81,0x72,0x72,0x6a,0x24,0x74, +0x28,0xa4,0xdf,0x58,0xce,0x67,0x19,0x64,0x18,0xa4,0x9e,0xe0, +0x26,0x1e,0xd9,0x92,0xb5,0x4c,0xfe,0x70,0xce,0x9d,0x8c,0x51, +0x43,0x25,0x1f,0x7a,0x20,0x68,0xe7,0xc9,0x23,0x1c,0xee,0xd5, +0xa3,0xd8,0x66,0x05,0xbe,0xa0,0x07,0x2f,0x60,0xcc,0x20,0xc4, +0xc0,0xec,0x41,0x9c,0x0d,0x2b,0x80,0x67,0xf0,0xc4,0x8f,0xe4, +0x54,0x6f,0xd0,0x98,0xbc,0xcb,0x34,0x88,0x57,0x1a,0x65,0x6a, +0xa7,0x18,0x70,0xb8,0x09,0xcd,0x48,0xf6,0x7e,0xc5,0x96,0xa4, +0xad,0x52,0xa3,0xda,0xed,0xe0,0x87,0x81,0x14,0xad,0x86,0x61, +0x15,0xa9,0xbd,0xa7,0xfc,0x3a,0x79,0x12,0xf7,0x04,0xac,0x71, +0xde,0xaa,0x4a,0x11,0x4e,0x8d,0xff,0x91,0x4f,0x4e,0x89,0x9c, +0x2e,0xc8,0x52,0x35,0x3b,0xaa,0x46,0x53,0x8e,0x3e,0xd5,0x71, +0x33,0x95,0x22,0xf4,0x9b,0x4a,0x11,0x96,0x3d,0x4d,0x4e,0xa6, +0xd6,0x6d,0xcf,0x53,0x81,0xc5,0x6d,0x93,0x81,0xc5,0xfe,0x84, +0xde,0x84,0xa9,0x04,0x84,0xd4,0xe6,0x58,0x4e,0xb9,0x57,0x79, +0x3b,0xf9,0xec,0xce,0x55,0xb6,0xc1,0xbd,0xb0,0x49,0xd9,0xa8, +0x68,0x54,0x87,0x03,0x43,0xb8,0x9e,0x49,0x6f,0x49,0x69,0x4d, +0xe9,0xa0,0x04,0x33,0x78,0x45,0xe0,0x76,0x93,0x95,0xdc,0x4f, +0xbb,0xee,0x7f,0xd7,0x83,0x8d,0xa2,0x0c,0x5a,0x7a,0xa9,0x92, +0xc3,0x6f,0x64,0xf3,0xc6,0xfb,0x2c,0xac,0xc3,0xbf,0x93,0x0d, +0xb8,0xee,0x53,0xf6,0x21,0xce,0x23,0xeb,0x37,0x7e,0xc6,0x0a, +0x8e,0xee,0x04,0x9d,0x75,0xc1,0x99,0x71,0xc2,0x57,0x88,0xe8, +0x84,0x55,0xbb,0x0c,0x84,0x6f,0xfb,0xf5,0x99,0xc7,0x33,0x20, +0x9d,0x64,0x1d,0x4f,0xdd,0x97,0x74,0x70,0xb2,0xd9,0xe6,0x56, +0x28,0xa5,0x78,0xe7,0xa6,0xba,0x86,0x53,0xa6,0x53,0x88,0x52, +0xd7,0x70,0x2d,0xb8,0x10,0xf4,0xdf,0x0c,0xfe,0x2c,0x85,0x8e, +0xfe,0x04,0xfc,0xef,0xa3,0x3f,0x3b,0x30,0x17,0xfc,0x1f,0xd1, +0x7f,0x67,0x43,0xa8,0x10,0x35,0x15,0xc6,0xb2,0x89,0xb2,0x8a, +0xb1,0x8e,0x1d,0x92,0x1a,0x15,0x06,0x55,0x69,0x7d,0x6f,0x5d, +0xf7,0x13,0x52,0x18,0x2b,0x30,0x5f,0x9e,0x5f,0x33,0x5a,0x75, +0xb3,0x78,0x32,0x8c,0xe5,0x71,0xd4,0x5d,0x2f,0x4c,0x15,0xc6, +0x72,0xa1,0x8b,0xd2,0xaa,0xdd,0xb8,0x51,0xe6,0x69,0xe2,0x69, +0xe9,0xed,0xa8,0x2f,0x85,0xb1,0x5a,0xe3,0xdb,0x12,0x5a,0xa9, +0x1b,0x7f,0x6f,0x40,0x15,0xc6,0xca,0x4f,0xc8,0x4f,0xa0,0xe8, +0x30,0x28,0x5e,0xde,0x9e,0xcd,0x87,0x5c,0xf7,0xbf,0xea,0x3b, +0xcc,0x0d,0x3a,0x13,0x7d,0xa8,0x1d,0x40,0x35,0x58,0x05,0xdc, +0x20,0x72,0xf0,0xa6,0x3e,0xbe,0x89,0xcf,0xe9,0xc1,0x73,0xb8, +0x8a,0x05,0x53,0xd8,0x4a,0xc4,0x02,0xa8,0x16,0x0a,0x90,0x67, +0xd3,0xeb,0xd2,0x6a,0x53,0x6b,0x38,0x20,0xbd,0xf8,0x48,0x06, +0xef,0x30,0x91,0x4e,0x11,0x8e,0x61,0x0e,0x9c,0x2d,0xbe,0x47, +0xfe,0x09,0x7b,0xde,0x60,0x71,0x0f,0xae,0xa1,0xf8,0x99,0x72, +0xf0,0x19,0xac,0x98,0x13,0x4b,0xc4,0xd7,0x07,0xae,0x83,0x01, +0x7c,0xc4,0xfe,0x88,0xab,0x09,0xa8,0xd1,0xf3,0x6a,0xac,0xe8, +0x80,0x0c,0x01,0x77,0x58,0x88,0xee,0x2c,0xf6,0x83,0x11,0x51, +0x1c,0x4a,0xde,0x71,0x5e,0x0a,0x4d,0x9f,0xb9,0x16,0x76,0x37, +0x8c,0x02,0x1c,0x47,0xac,0x27,0xc5,0x1f,0x2b,0x7e,0x4e,0xf8, +0xde,0x24,0x91,0x3f,0xbd,0x2e,0x64,0xad,0xf7,0x36,0x6e,0x22, +0x67,0x9c,0x34,0x59,0xb5,0x6b,0x57,0xcb,0x9a,0x1b,0x78,0xe7, +0x1e,0x93,0x31,0xbb,0x7a,0x29,0xd7,0xa5,0x45,0xfa,0x9b,0xbb, +0x06,0xea,0x87,0x2d,0xaa,0x78,0x57,0x63,0x0b,0x03,0x03,0x47, +0xaa,0xd7,0x73,0x84,0x2d,0x64,0xbc,0xa7,0xa1,0x23,0xb7,0x3a, +0x31,0x35,0xe1,0x6c,0x72,0xe4,0x77,0x4b,0xf8,0xea,0xba,0x52, +0xdb,0x7b,0xdd,0xb5,0x2d,0x89,0x23,0xea,0x49,0x4c,0xd2,0xe1, +0x16,0xeb,0x47,0x7a,0xc5,0x6d,0xfc,0xee,0x0e,0xcb,0xda,0x90, +0x01,0x0e,0x9e,0xeb,0xc0,0xd9,0xd7,0xe0,0x85,0x76,0x7c,0xe1, +0xa6,0x6c,0xef,0x22,0xf3,0xdf,0xdf,0xc7,0x19,0x66,0xbf,0x33, +0xa1,0x26,0x76,0x8e,0xfb,0x2c,0xdf,0xfb,0x8a,0x0f,0xcb,0x88, +0x3a,0x1b,0x16,0x1e,0x1d,0xc3,0xc7,0xc6,0x27,0xa4,0x27,0xa4, +0xc7,0x2b,0xd4,0xe1,0xd9,0x8e,0x25,0xcc,0x39,0xc5,0xd9,0xcc, +0xec,0x79,0xc5,0xdf,0xb7,0x2f,0xbb,0x69,0xb4,0x17,0x9f,0x35, +0x87,0x67,0xbd,0x58,0x09,0xf2,0x86,0x6a,0xe0,0x8b,0x66,0x30, +0x93,0x09,0x31,0x76,0xb2,0xd9,0xa1,0xc5,0xb9,0xe3,0x33,0xff, +0x3e,0x3f,0x67,0xba,0xe4,0xd3,0xd9,0x32,0x5a,0xca,0x8d,0x4b, +0xb9,0x5e,0x15,0xe7,0x2c,0x57,0xe5,0x7a,0x9d,0xa4,0xb9,0x57, +0x4f,0xe2,0x6c,0x92,0xc1,0x96,0xe2,0x6c,0x7f,0xcd,0xf5,0xb6, +0xe9,0x7a,0xff,0x7b,0xae,0xb7,0xef,0xcf,0x5c,0x6f,0x69,0x7c, +0x09,0x65,0xe5,0x9c,0x70,0x0b,0xbb,0x88,0xf0,0xa2,0xe8,0x21, +0xbe,0xc8,0x0a,0x9b,0xe0,0x01,0x39,0x22,0xce,0xb8,0xc4,0x0a, +0x33,0xe8,0x05,0x1d,0x15,0x67,0x8c,0xb3,0x68,0xe8,0x4e,0x94, +0x47,0xd2,0xf6,0x24,0xef,0x95,0xb0,0xd3,0xd5,0x60,0x95,0x75, +0x8d,0x57,0x0d,0x3d,0xcd,0xf9,0x79,0x3a,0xed,0x2d,0xe5,0x71, +0x27,0xfa,0x60,0x07,0x39,0x20,0xce,0xb8,0xce,0xe2,0x0b,0x98, +0x49,0x7e,0xcc,0xfb,0xbc,0xbe,0xbf,0xd1,0xa6,0x91,0xd7,0x75, +0xdc,0xe6,0xf2,0x9e,0x9c,0x13,0x66,0xd6,0x91,0xcf,0xbd,0x3f, +0xf4,0xba,0xe5,0x50,0xd1,0xc9,0xef,0xaf,0xd9,0x52,0xb1,0x29, +0x57,0x35,0x20,0x60,0x82,0x4c,0xd6,0xe6,0x4c,0x36,0x6d,0xde, +0xf0,0xbe,0x60,0xf6,0x24,0xe0,0x42,0xa9,0xcf,0x54,0x7c,0xf1, +0x49,0xd3,0xe6,0x51,0xe7,0xc9,0x9a,0x80,0x42,0x4a,0x7d,0xa6, +0x10,0xd3,0x11,0xb7,0x43,0xd3,0x4d,0x9b,0x52,0x4d,0x80,0x99, +0x44,0x7d,0xbc,0x55,0x61,0xf2,0xbf,0x22,0xa6,0xc9,0x8a,0x95, +0xad,0xd3,0x01,0x97,0x7b,0xf0,0x15,0x31,0x17,0x6a,0xda,0xf1, +0x7c,0x07,0x94,0x74,0x60,0x49,0xaf,0xae,0x0c,0x33,0xcc,0x20, +0xc3,0x8c,0xc5,0xa8,0x0d,0x04,0x4d,0x85,0x5e,0x30,0x65,0xc5, +0xb3,0x93,0x2b,0x52,0x93,0x8d,0x74,0x70,0x0b,0x59,0x7f,0x2a, +0xdb,0x9a,0xff,0x21,0xbd,0xab,0x32,0x7d,0x84,0xbb,0xe0,0xc0, +0xd8,0x29,0xc3,0xda,0x34,0xee,0x33,0xb5,0x19,0x19,0x25,0x9a, +0xf9,0xac,0x45,0x9a,0x9a,0xdb,0x66,0x36,0x3c,0xf6,0x7c,0x9a, +0x66,0x2d,0xbc,0x4b,0x57,0x70,0xc9,0x46,0x22,0xc6,0xe2,0x65, +0x21,0x96,0xd1,0x85,0x7c,0x62,0x2e,0xaa,0xb7,0xb3,0x68,0xba, +0x87,0x64,0x6a,0xa5,0xec,0x4b,0x78,0x5f,0x62,0x80,0x97,0x42, +0xef,0x84,0x8d,0x48,0x65,0x3e,0x93,0xe0,0x67,0xca,0x53,0xa9, +0xc0,0xcf,0xc4,0x4d,0x08,0x25,0x66,0xa2,0x7a,0x07,0x2b,0xa8, +0xaf,0x23,0x46,0xa2,0x7a,0x0f,0x0b,0xe7,0xf1,0x1d,0x72,0xe3, +0xe4,0x23,0xa7,0x11,0xd7,0xd2,0x0e,0x5e,0xbf,0x62,0x65,0xed, +0xc1,0x5c,0x4e,0x9c,0x89,0x73,0xc9,0x97,0xf9,0xf7,0x6a,0xbb, +0xeb,0x9c,0xeb,0x79,0x5b,0xb7,0xb5,0x4e,0x1b,0xe4,0xd2,0x54, +0xaf,0x27,0x9d,0x7a,0x1d,0x54,0xaa,0xd4,0xfd,0xfb,0x0c,0xab, +0x56,0xd3,0x54,0x2b,0x6c,0xb4,0xe9,0x64,0xf9,0xe0,0x54,0xab, +0xc9,0x64,0xbf,0x57,0x41,0x60,0xfe,0x5f,0xfa,0xbd,0x24,0xde, +0x1d,0xa6,0xaa,0x03,0xa2,0xb8,0x7f,0xb2,0xe7,0x6b,0xb2,0xe5, +0xeb,0xf0,0x54,0xb7,0x49,0x7c,0xc7,0x64,0x36,0x7c,0x9a,0x50, +0x72,0x13,0x6f,0x09,0x4b,0x48,0xaf,0xf8,0x10,0x5b,0x58,0x6c, +0x08,0xc2,0x75,0x3a,0xf8,0xbc,0x46,0x8f,0x83,0xda,0x28,0xcc, +0xcd,0x81,0xbd,0xd0,0x39,0x0f,0x4e,0xb1,0xd0,0x25,0x6e,0x22, +0xbd,0xe0,0xdc,0x8c,0xce,0x5d,0x60,0x08,0x7e,0xe2,0x5e,0xf4, +0x83,0x63,0x26,0x68,0x61,0x0d,0x16,0x32,0xf4,0xb2,0x12,0xce, +0xd1,0xf7,0xd6,0x00,0xe5,0xec,0xaf,0xf7,0xc2,0xeb,0x4c,0xb7, +0x8c,0xbe,0x78,0xb1,0x8c,0x45,0x7d,0x5b,0xa2,0x87,0xaf,0x0f, +0xb2,0xa0,0x35,0x17,0x16,0xeb,0xe1,0x62,0x06,0xce,0xe0,0xcf, +0xe4,0x64,0xb3,0x67,0x83,0x7b,0x8d,0xad,0x37,0x5f,0x6e,0x5f, +0x6a,0x97,0x67,0xcb,0x89,0x26,0xa7,0x49,0x7d,0x75,0x45,0x73, +0x6e,0x8b,0x6d,0x21,0xef,0x6f,0xeb,0xe5,0xe8,0xe8,0xca,0x09, +0x73,0xe6,0x86,0x55,0xcb,0xeb,0x03,0x2b,0xac,0x03,0xf9,0x1c, +0x97,0x6c,0x87,0x34,0x17,0x0e,0xde,0xdb,0x40,0x09,0x89,0xfd, +0x55,0x73,0x36,0xa6,0xec,0x54,0x45,0x78,0xb9,0x45,0x18,0x9f, +0xee,0x96,0x62,0x9f,0xe0,0x56,0x97,0xc6,0xeb,0xa1,0x91,0x19, +0x18,0xed,0xc1,0xb3,0xa6,0x42,0x73,0x27,0xc6,0xdc,0x62,0x45, +0x3b,0x38,0x46,0x52,0x75,0x13,0x0e,0x9d,0x3b,0x26,0xc5,0xd6, +0x47,0x22,0x6f,0x44,0xf6,0x73,0xe8,0x87,0x8d,0xa4,0xfc,0x93, +0xcc,0xe9,0x66,0x92,0xe0,0xc9,0x66,0x92,0xff,0xff,0xca,0xaf, +0x20,0x44,0xa0,0xd6,0x72,0x86,0x1e,0xce,0x40,0xce,0x00,0x9a, +0xfa,0xd9,0x82,0xed,0x44,0x2c,0x86,0x72,0xa1,0x18,0xe7,0xb1, +0xe9,0x35,0x69,0x35,0xc9,0xd5,0x1c,0xcc,0xeb,0xc7,0x07,0x06, +0xb0,0x98,0x89,0x72,0x3e,0xe5,0x1c,0xee,0x48,0xed,0xa2,0x1b, +0xa9,0x92,0x95,0x1f,0x29,0xd4,0x6a,0x29,0xe7,0x4f,0x8e,0xba, +0x8d,0xbb,0x74,0x53,0x68,0x1a,0x4d,0x82,0x0e,0x78,0xee,0xb7, +0xd6,0xa9,0xb3,0xe3,0xdb,0x2e,0x56,0x7d,0xa2,0xbc,0xc5,0xc1, +0x59,0x7c,0x95,0xc0,0x33,0xb0,0x17,0x9f,0x61,0x31,0x5d,0xdc, +0x4b,0x3c,0xc7,0x5c,0x2f,0xb8,0x0c,0x16,0x5c,0x50,0x5e,0x56, +0x7c,0x60,0x9c,0xcd,0x47,0xe8,0x86,0x19,0x06,0x9b,0x7a,0x37, +0x7a,0xd7,0x79,0x55,0xdb,0x39,0xf0,0x95,0xb6,0x95,0x66,0xe5, +0xc6,0x56,0x4b,0x8e,0x6f,0xda,0xbc,0xbb,0xc6,0x82,0xff,0xe8, +0x83,0xd1,0x7b,0xed,0xdf,0x97,0x9a,0x14,0xcb,0x0a,0x0d,0x39, +0xf8,0x1b,0x5c,0x24,0xf0,0x2c,0xfd,0x55,0xcf,0x4a,0x5c,0x61, +0x3d,0x45,0x24,0xf4,0x78,0x16,0xfb,0x78,0xc6,0xc3,0xff,0x5e, +0x21,0x96,0xf0,0xd1,0x5a,0x72,0xa1,0xb9,0xa3,0xbb,0x69,0xc4, +0xae,0x92,0x77,0x36,0x32,0x36,0xd6,0xb1,0xe7,0xe0,0xf4,0xaf, +0xa4,0xd1,0xaa,0xd9,0xb0,0x4a,0xd6,0x5c,0xc7,0x3b,0xf7,0xda, +0xf4,0xd8,0x34,0xd1,0x7b,0xd1,0x07,0xff,0x9a,0xea,0x06,0x6f, +0xc9,0xe6,0x2b,0x9c,0x5a,0xaa,0x1b,0xda,0x8a,0xeb,0xd4,0xed, +0x2a,0xfc,0x5c,0xec,0xac,0x1c,0x3d,0xd4,0x83,0xae,0xf9,0x5d, +0x39,0x39,0x64,0x36,0x8d,0x89,0xad,0xa2,0x2c,0x63,0x2c,0x28, +0xb4,0xbb,0x3c,0xad,0x14,0x7f,0xde,0x1d,0x7f,0x55,0x71,0xc3, +0x93,0x28,0x8b,0xdb,0x9f,0x55,0xf5,0x1d,0x16,0x52,0x71,0x83, +0xa7,0x2a,0x18,0x25,0xdd,0x1d,0xdf,0xc9,0xbb,0x23,0x05,0xa4, +0x38,0x71,0xcd,0xa0,0xb0,0x49,0xc2,0xc4,0x09,0x14,0x13,0x7f, +0x2e,0x18,0x13,0x91,0x81,0x53,0x02,0xc3,0x8e,0xcd,0xa5,0x07, +0xb1,0xf4,0x00,0xff,0xb9,0x90,0xa0,0xe6,0x18,0x68,0x32,0x30, +0xa4,0x45,0x70,0xf1,0x18,0xbd,0x31,0x38,0x84,0xdb,0xe8,0xc9, +0x71,0xd5,0xc9,0xa3,0xf4,0xe4,0x38,0x3d,0x29,0x6a,0x2d,0x24, +0xa0,0x79,0x10,0xe9,0xb9,0xde,0xab,0x04,0x16,0x1f,0xa4,0xab, +0xff,0xeb,0xf5,0xa4,0xce,0xb5,0xd1,0xb2,0xd4,0xa1,0xb6,0x8e, +0xf7,0xad,0xb6,0x6c,0x73,0xa8,0xe4,0xf0,0x08,0x2e,0x22,0x2d, +0xd5,0xf5,0x4d,0xc5,0x75,0xf6,0x95,0xbc,0xaf,0x93,0x9d,0x8d, +0x9d,0x87,0x7b,0x0a,0x5f,0x58,0xec,0x5f,0xe8,0x5c,0xee,0x93, +0xa3,0xee,0xea,0x92,0x1f,0x58,0xe2,0x9b,0xeb,0xa7,0x1e,0xe4, +0xe9,0xeb,0xe2,0xe9,0xc4,0xe1,0x7a,0x13,0x8a,0x3a,0x3d,0x5d, +0x5d,0x5d,0x5c,0xdd,0x2e,0xc8,0x2f,0xfb,0x5f,0x39,0xb9,0xd7, +0x79,0xad,0xef,0x9b,0x21,0x52,0x2d,0xc5,0xcb,0x39,0xf0,0x4c, +0xe5,0xa3,0xae,0xaf,0x5d,0xbe,0x72,0xba,0xe3,0x52,0xda,0xc9, +0xef,0xac,0xdc,0x5a,0xbe,0xb3,0xb8,0xbf,0xb1,0xad,0xa3,0x6a, +0x98,0xfb,0x57,0x17,0x0a,0x4c,0x5e,0x59,0x6e,0xa9,0xa2,0x80, +0x13,0xf9,0x83,0x24,0xfb,0xfd,0xf4,0xad,0x53,0xa5,0xf6,0xc1, +0xf7,0xa5,0x3a,0x88,0x20,0x55,0x69,0x89,0xea,0xbe,0x3d,0x89, +0x68,0x4d,0xc4,0xc0,0x09,0xe2,0x6e,0x66,0x69,0xad,0xe3,0xa4, +0x93,0xab,0x9f,0x6d,0x92,0x99,0x9f,0x57,0x58,0x5c,0x50,0xca, +0xcd,0xfe,0x63,0x19,0xa4,0x10,0xdc,0xc2,0x94,0xe5,0x94,0xe4, +0x17,0x14,0x71,0x55,0x98,0xca,0x66,0x64,0xa4,0x65,0xa4,0x66, +0xd8,0xa4,0xf3,0x0d,0x89,0x0d,0xc9,0x35,0x49,0xd1,0xcd,0xbc, +0x6e,0xc4,0x91,0xc8,0x23,0xd1,0xdc,0x08,0xec,0x6c,0xc2,0x9d, +0xcd,0x60,0x8f,0x2f,0xb2,0xb6,0x4a,0xff,0x06,0x0d,0x78,0x83, +0x69,0xcd,0x4c,0xad,0xd7,0x6c,0x60,0xcd,0x32,0xd4,0xf4,0x29, +0xf0,0x90,0x47,0xa7,0xe6,0x69,0x2a,0xd9,0xd1,0xa4,0x0f,0x15, +0x63,0x39,0x7e,0xf5,0xbc,0x41,0xf0,0xe1,0x70,0xed,0x28,0xae, +0x07,0xde,0x87,0xb9,0xb8,0x83,0x2d,0xcd,0x29,0xce,0xcb,0x2f, +0xe0,0xca,0x30,0x8f,0x55,0x64,0xa4,0x67,0xa4,0x2b,0x64,0x39, +0xbc,0x85,0xd9,0x21,0xa3,0x3d,0xae,0x94,0xe2,0xa7,0x25,0xa8, +0xe1,0xac,0x72,0x7c,0x93,0x0d,0x3a,0x13,0x14,0x17,0x1c,0x97, +0x68,0xcc,0x77,0x27,0xf6,0x27,0xf5,0xa6,0xd8,0x9a,0x1f,0x34, +0xde,0xe5,0x32,0xf5,0x82,0xd9,0x60,0xc1,0x3a,0xef,0xd9,0xe9, +0x80,0xab,0x5c,0xf2,0x8d,0x79,0x58,0x5f,0xf3,0x53,0x47,0x23, +0xcc,0xe0,0x20,0x95,0x11,0xbf,0x82,0xd8,0xa7,0xaa,0xdb,0xfe, +0x1c,0x3f,0xf0,0x67,0x10,0x6f,0x74,0xd2,0x83,0xff,0x7b,0xc2, +0xb7,0x4e,0x95,0xf0,0x35,0xfa,0x6b,0x75,0xdb,0x64,0xc2,0x57, +0xd6,0x26,0x51,0x2e,0x1b,0x6f,0xa7,0x9d,0x93,0x65,0xad,0xbd, +0x93,0x65,0xad,0x7f,0xc6,0xd4,0x39,0x61,0x9f,0xb0,0x90,0xc8, +0x83,0x4f,0x06,0xb9,0x06,0x50,0x24,0xc9,0x94,0x65,0x95,0x28, +0x8b,0x72,0xb8,0xe3,0xa8,0x49,0xba,0x84,0x75,0x26,0x52,0x3d, +0xf6,0x30,0x09,0x0c,0xf2,0x0a,0x70,0x0b,0xe4,0x30,0x82,0x29, +0xcf,0xa6,0x22,0xc8,0xe5,0x30,0xd6,0x80,0x64,0x1f,0x49,0xdb, +0x9d,0x2c,0x15,0x54,0x47,0x5f,0x0d,0xf9,0x38,0x68,0x4c,0xda, +0xa2,0xfd,0x3f,0x64,0x63,0x37,0x82,0x15,0x81,0x1d,0x4c,0x9c, +0xd4,0x57,0x4d,0x7f,0xc3,0x06,0x06,0xdc,0xe6,0x26,0xe4,0xc6, +0xe7,0x9d,0x2b,0xe0,0xe0,0x88,0x16,0xf3,0xd6,0x3e,0x92,0x2f, +0x2f,0x75,0xcd,0xf5,0x6e,0x2e,0xe2,0xe5,0x45,0xee,0xe5,0x27, +0x73,0xb9,0x7f,0xe2,0x8b,0x04,0x37,0x32,0xf2,0xd3,0x49,0x79, +0x9a,0x1f,0xea,0xbf,0xc7,0xda,0x66,0xc8,0x1b,0x35,0xe0,0x7d, +0xa6,0x39,0x33,0xad,0x4e,0x73,0x80,0x35,0x49,0x53,0x9b,0xfd, +0x87,0x46,0x24,0x71,0xad,0xf7,0xe9,0x0f,0xbc,0xd2,0xf3,0x45, +0xf5,0x2f,0x45,0xa0,0x66,0x92,0xcd,0x07,0xbe,0xeb,0xbb,0xd9, +0x71,0xb7,0xfc,0xab,0x48,0x98,0x71,0x06,0x5e,0xe5,0x60,0x6b, +0x0f,0x6e,0x85,0x70,0x03,0x0c,0x17,0x37,0x1b,0xc1,0x8b,0x9b, +0xd7,0x98,0x7c,0xb1,0x6d,0x35,0x13,0x7c,0x29,0x60,0xcc,0xaf, +0xff,0xa9,0x56,0x18,0x29,0x82,0x3c,0xfc,0x70,0x7c,0x32,0x82, +0x55,0x2a,0x79,0xb2,0x63,0xae,0x3a,0x81,0xf9,0x81,0x52,0x04, +0xf9,0x62,0xf5,0xad,0x92,0xab,0x52,0xd3,0xe4,0x61,0x8f,0xc3, +0x6e,0xba,0xa1,0x99,0x61,0x19,0xd4,0xa4,0x4a,0x9e,0xac,0xd3, +0xb8,0x59,0xdf,0x4b,0x55,0xb0,0x71,0xf2,0x8c,0xdf,0xa4,0x49, +0xed,0x88,0xef,0x48,0xe8,0xa0,0x4a,0xbb,0x69,0x50,0xd8,0xc1, +0x16,0x52,0xa5,0x2d,0x98,0x4a,0xa3,0x37,0x67,0xf1,0x9e,0xff, +0xd8,0xb4,0xd2,0xe4,0x1b,0x6a,0xb0,0xcc,0x23,0x2d,0xa2,0x2d, +0x63,0x53,0xf5,0x79,0x98,0xaf,0x84,0x45,0x65,0xf0,0x52,0x9d, +0x8b,0xb3,0xbd,0xab,0xa5,0x47,0xb9,0x39,0xff,0x41,0xd7,0xe0, +0x60,0xdb,0x78,0x9e,0x4e,0xb1,0x69,0xa5,0x53,0xa5,0x43,0x6b, +0x72,0x42,0x7f,0x26,0x6c,0xe7,0xcd,0x73,0xd5,0xc4,0x5b,0x82, +0x29,0x69,0xad,0xcd,0x2f,0xcb,0x2a,0x4a,0x4c,0x49,0x38,0x9b, +0x14,0x75,0x77,0x15,0xdf,0xde,0x90,0x57,0xa8,0x2c,0x4c,0x4c, +0x4d,0x3a,0x9b,0x14,0x79,0x75,0x13,0x5f,0x5f,0x75,0xe8,0x5e, +0x64,0xea,0xa9,0xf3,0xe1,0x91,0xea,0xa7,0xa2,0x62,0xe3,0xd5, +0x52,0x0b,0xe2,0x2b,0x8b,0xe7,0x15,0x1b,0x7b,0xb1,0xb2,0x68, +0x4f,0x23,0x0b,0x0d,0xf3,0xbe,0xc8,0xb4,0x70,0xa9,0xa3,0x26, +0x2a,0x5a,0x7a,0x36,0x2f,0xa1,0xbc,0x60,0x5e,0xb1,0x91,0x37, +0x6b,0x14,0x6e,0xb7,0x57,0x47,0x63,0x82,0x89,0x26,0x5e,0xbd, +0x76,0xa3,0x4e,0x4d,0xd6,0x1e,0x7c,0x8d,0x7d,0xfd,0xb1,0x12, +0x23,0x0e,0x7f,0xdb,0x44,0x44,0x0f,0xd6,0x2f,0xc6,0x3f,0xd6, +0xef,0x34,0x27,0x04,0xb1,0xd4,0xcf,0x1e,0x24,0x0e,0x11,0x94, +0x34,0x46,0x72,0xdf,0xc0,0xb3,0x5d,0xf8,0xec,0x87,0xbf,0x76, +0x2c,0xbe,0xfd,0xaf,0xce,0x85,0x9f,0xc0,0x02,0xf6,0x3c,0xbe, +0xa9,0x90,0x06,0xea,0xab,0x05,0xba,0xf9,0x79,0xf8,0x78,0x71, +0xa2,0x15,0x1c,0x27,0xe9,0xc7,0x13,0xf7,0x9d,0x3f,0x28,0x79, +0xbc,0xf1,0x88,0x3b,0x11,0xc3,0x1c,0xfa,0xd2,0xe5,0x51,0x76, +0x37,0xeb,0x97,0xc4,0x1f,0x28,0xda,0x8e,0x59,0x1b,0xbc,0xc6, +0x83,0xf2,0xb5,0x3f,0xde,0x38,0x45,0xdc,0x6b,0x7d,0xfa,0x02, +0xaf,0x75,0x7d,0x59,0xf9,0x5b,0x09,0xcc,0x36,0xce,0xe2,0x03, +0xde,0x39,0xb9,0xd1,0x79,0x77,0xe0,0x37,0xa7,0x80,0x3d,0x03, +0x3c,0x07,0x9b,0x7a,0x70,0x13,0xf8,0x18,0xa2,0x0f,0x1e,0xf8, +0x0a,0xe6,0x77,0xe1,0xfc,0x07,0xfa,0x9b,0x70,0x91,0x09,0x2c, +0x5a,0x85,0x3b,0x8d,0x80,0xd9,0xb8,0xd8,0xec,0xd7,0x4d,0x8b, +0x42,0x98,0xe0,0xcb,0x01,0xe3,0x27,0x07,0xfe,0xbf,0xbc,0xb7, +0xd4,0x2f,0xc8,0x7f,0xdf,0x88,0x33,0x4d,0x60,0x26,0xe5,0x21, +0x16,0x91,0x96,0xd1,0x96,0xd1,0x69,0x86,0x3c,0x2c,0xc8,0x85, +0x25,0xe5,0xf0,0x7c,0x53,0x4c,0x17,0xef,0x44,0x65,0x66,0x17, +0xc1,0x7d,0xf3,0x4b,0xe7,0x92,0x8f,0xbf,0x69,0x5f,0xf9,0xd1, +0xf7,0x1d,0xcb,0xee,0xc2,0x1c,0x2a,0xb1,0x25,0x0a,0x7c,0xbb, +0x02,0x5f,0xb0,0xda,0xaf,0x77,0x62,0x9b,0x41,0xa5,0x39,0x7f, +0xbd,0xab,0x7f,0xa0,0xe5,0x62,0xae,0x76,0xb1,0x71,0xa5,0x73, +0x85,0x4b,0x4b,0x72,0x62,0xaf,0x12,0x76,0xf3,0x26,0x05,0x6a, +0x4a,0x21,0x96,0xf8,0x76,0x39,0xf4,0x39,0x35,0xd9,0xb8,0xf3, +0x35,0x76,0xd5,0x06,0x45,0xa6,0x1c,0x7e,0x21,0x0e,0x10,0xff, +0x18,0xbf,0x58,0xbf,0x58,0x4e,0x08,0xbb,0xc8,0xe2,0x18,0x8e, +0xfd,0x37,0x05,0x2e,0xe4,0x4e,0x2c,0x21,0x0d,0xf0,0x73,0x23, +0xfe,0x5c,0x2b,0xbc,0xd6,0x28,0xbe,0xd6,0xa4,0x65,0x23,0xce, +0xb4,0x15,0x66,0x3a,0xe2,0x43,0x5b,0x78,0x68,0x27,0xbe,0x65, +0xfd,0x07,0xd3,0xcc,0x22,0x8b,0x4b,0x48,0x7c,0xc1,0xf9,0xa2, +0xf3,0xc5,0xdc,0xe3,0x39,0x4c,0x8c,0x4f,0xb4,0x6f,0x94,0x0f, +0x87,0xaf,0xda,0x02,0xc3,0x44,0xfa,0x44,0x78,0x85,0x7b,0x71, +0xc2,0x3f,0x99,0x38,0xfa,0x67,0x9e,0xc7,0xa9,0xe0,0xb3,0xb6, +0xf3,0x4f,0x30,0x0a,0x6b,0xb5,0x31,0xe6,0x62,0x69,0x66,0x7b, +0xa6,0x66,0x82,0x42,0xed,0xb7,0xfa,0x15,0x4c,0xbc,0x22,0x5e, +0x71,0x5e,0x41,0x59,0x5c,0x23,0x23,0xba,0xd7,0x90,0xd3,0xe1, +0x67,0xc2,0x4e,0x87,0x53,0xf3,0xce,0xa4,0xd6,0xa8,0x41,0x85, +0x13,0x89,0x4f,0x3f,0x9f,0x1e,0x9f,0xc1,0xc1,0x19,0x26,0x8e, +0x3e,0x75,0x86,0x3e,0x75,0xc5,0x96,0x84,0xd9,0xaa,0x61,0x28, +0x93,0xa8,0x48,0xa0,0x0f,0xca,0xab,0x6d,0x49,0x46,0xa3,0x1a, +0x24,0x32,0xa7,0x6c,0xd5,0xc4,0x0e,0x1c,0x25,0x50,0x02,0xe1, +0x58,0xc2,0x20,0xeb,0x4b,0xb0,0x89,0xf2,0xbc,0x05,0x43,0xb0, +0x00,0xf6,0x37,0xe1,0x3f,0xe1,0x2c,0x3b,0xb1,0x02,0x8f,0x12, +0x8a,0x7c,0x82,0x33,0xe4,0x66,0xb1,0x26,0xa7,0x65,0xa7,0x07, +0x9a,0x7a,0xda,0xda,0xbb,0x6c,0x4a,0x78,0x0f,0x27,0x73,0x6b, +0x53,0x87,0xd0,0xb4,0x90,0xf4,0xe0,0xf4,0xc6,0x8a,0x9a,0xca, +0xda,0x86,0xfe,0xc4,0xde,0xe4,0xd6,0x74,0xaf,0x5a,0xfe,0x5d, +0x5f,0x7c,0x23,0x06,0xe7,0x9c,0xce,0xb0,0xe1,0xbb,0xce,0x49, +0x03,0xd8,0x7c,0x7c,0xdc,0xbd,0x7d,0x02,0x83,0xd3,0x42,0xe8, +0xc3,0xdd,0x85,0x6f,0x75,0x6f,0xf0,0xac,0xf6,0x08,0x8f,0x8a, +0x88,0x8c,0x88,0xe2,0xe2,0x9c,0x9d,0xe2,0x1c,0xe6,0x27,0x5b, +0xc3,0xc6,0x24,0x35,0x5c,0x3c,0x04,0x4b,0xd9,0xd6,0xf8,0xe6, +0xf8,0xe6,0x44,0xfa,0xd2,0xe0,0xb4,0xe0,0xa6,0x22,0xde,0xa3, +0xd5,0xb9,0xcd,0xb9,0x4e,0xda,0x7e,0xf0,0x79,0x52,0x09,0xbb, +0x5d,0x59,0xdc,0x7d,0x90,0xd4,0xc0,0x6e,0x27,0x7a,0xf0,0x3e, +0xa9,0x85,0xdd,0x8e,0x2c,0xde,0xc1,0x38,0xd2,0x52,0x51,0x5b, +0x55,0xd6,0x60,0x59,0xc6,0x7b,0xd8,0xb9,0x78,0x58,0x7b,0x71, +0x13,0x9e,0x63,0xa4,0xd1,0xa5,0xca,0xb5,0xc2,0xa1,0xa1,0x96, +0x77,0xab,0x73,0xaa,0xb4,0x2b,0xe3,0x44,0x7b,0x77,0x52,0xe6, +0x5e,0xec,0x96,0xe7,0xda,0x52,0xc6,0xfb,0x55,0x79,0x56,0x4a, +0x29,0x36,0x0d,0x7c,0x8d,0x34,0x94,0xd7,0x54,0x15,0x35,0x58, +0x95,0xf2,0x5e,0x76,0xee,0x5e,0x76,0x5e,0x2a,0xac,0xf2,0x97, +0xce,0xf0,0x93,0x52,0x67,0x78,0xe0,0x93,0xc2,0x68,0xf3,0x68, +0xb3,0xc9,0xca,0xd5,0x69,0x64,0xe2,0x76,0xfc,0x09,0x6e,0x1c, +0x9d,0x42,0x26,0x27,0x9f,0x42,0x26,0x14,0x37,0xb6,0xab,0xaa, +0x57,0x27,0xab,0xd2,0xa6,0x9a,0xc3,0xbb,0xfe,0x9c,0xd0,0x50, +0x32,0x35,0x5b,0x23,0x0c,0xde,0x26,0x23,0x1f,0x80,0x3a,0x5b, +0xec,0x59,0x59,0x5a,0x54,0x91,0x5b,0xad,0x0e,0xc9,0x1d,0x18, +0xc2,0x24,0xa4,0xc5,0xd3,0x87,0x79,0x32,0x2f,0xd7,0xf5,0xb5, +0x31,0xb7,0xe5,0x12,0xf6,0x0d,0xdd,0x6f,0x43,0x05,0xfe,0x0a, +0x8a,0x36,0x16,0x79,0xc8,0x22,0xba,0x3b,0x87,0x58,0xa8,0x5e, +0x49,0x20,0xa9,0x0d,0x93,0x18,0xe4,0x4d,0xc8,0x11,0x5c,0x4a, +0x49,0x63,0x23,0xda,0x12,0xd8,0x86,0x17,0x70,0x1b,0xfb,0x08, +0x5e,0x21,0x1b,0x2d,0x1f,0xb2,0x40,0xe6,0x6e,0xb4,0xa0,0xff, +0xa8,0xcf,0xdd,0x68,0xfa,0x90,0x15,0x9f,0xf7,0x21,0xda,0x3b, +0x46,0x58,0x21,0x56,0xbc,0x4e,0x50,0x8d,0x71,0x8c,0x4e,0x2a, +0xd3,0x1c,0x81,0x77,0xe1,0x1f,0x62,0x32,0xfe,0x83,0x1a,0xa3, +0x20,0xed,0x3d,0x2e,0xf8,0x56,0x50,0x26,0xd5,0xc3,0x45,0xd9, +0xc0,0xd6,0x15,0xff,0x93,0xfb,0xf5,0x18,0xa3,0x9b,0xeb,0x7b, +0x59,0x03,0x5e,0x66,0x9a,0xb2,0xb2,0x9a,0x35,0x47,0x59,0x03, +0xa5,0x9a,0x36,0x0c,0x11,0x7d,0x51,0x63,0x80,0x15,0x34,0x96, +0x4d,0x1e,0xa0,0xec,0x24,0xc9,0x3a,0x94,0xba,0x23,0x71,0x97, +0x54,0x6f,0x3c,0x55,0xbe,0x16,0x38,0x55,0xbe,0x36,0x95,0x5d, +0x0b,0x96,0xca,0xd7,0x26,0xc6,0x60,0x27,0xd1,0x16,0x35,0x46, +0xd8,0xd9,0x82,0xe7,0xc4,0x66,0x32,0x8c,0x6d,0x6c,0x6a,0x65, +0x72,0x55,0x52,0xb5,0x76,0x1a,0x1f,0xb8,0xd8,0x6d,0xbd,0xd6, +0xc6,0x4e,0x3b,0xbe,0xa6,0xa3,0xa4,0x3b,0xb7,0x9f,0xbb,0x87, +0x96,0xa8,0xa5,0x03,0x5a,0xe2,0x73,0x8b,0xa1,0x52,0x47,0x5c, +0x3a,0x7c,0x03,0x3e,0x82,0x47,0x7a,0x58,0xf9,0x86,0xf0,0x1c, +0x1c,0x19,0xc6,0x23,0x60,0xc9,0x08,0xc6,0x2d,0x04,0x0e,0x8d, +0x88,0x3b,0xb4,0xe1,0xd0,0xe3,0x1d,0x78,0xf4,0x84,0xa0,0x75, +0x01,0x0d,0x98,0xd9,0x7f,0x2c,0x10,0xe6,0x10,0xa8,0x42,0x43, +0xd8,0xab,0x45,0xd1,0xae,0xbe,0x0e,0xe8,0xe3,0x51,0x36,0xf4, +0x6c,0x68,0x5c,0x98,0x06,0x3a,0x6a,0x83,0x15,0xe3,0x87,0xb3, +0x0f,0xae,0xc6,0xd7,0x57,0x72,0x70,0x43,0x1f,0x8b,0x37,0x08, +0x33,0x61,0xcd,0x10,0xae,0x01,0x23,0x58,0x34,0x84,0xf1,0x6c, +0x4a,0x45,0x52,0x55,0x52,0x95,0x5e,0x2a,0x1f,0xb4,0xc4,0x6b, +0x83,0xfe,0xa6,0x76,0x7b,0xbe,0xa2,0xa3,0xb0,0x5b,0xd9,0xcf, +0x5d,0x41,0x23,0x5c,0xaf,0x0b,0xeb,0xc5,0x99,0x9b,0xa1,0x58, +0x4f,0x5c,0x38,0x78,0x1d,0x72,0x98,0xd0,0x53,0x21,0x91,0x21, +0xa7,0x2a,0x75,0x78,0xd8,0x07,0xb3,0x7e,0x83,0x17,0x12,0x60, +0x01,0x97,0xcc,0xa4,0xe2,0xdc,0x47,0xf8,0x1c,0x2c,0xc1,0x17, +0xeb,0x86,0x79,0x5c,0x08,0x6a,0xdb,0xbe,0xf2,0x05,0x0d,0x8a, +0x99,0x47,0x18,0x4c,0x04,0x6f,0x02,0x0b,0xd0,0x1b,0xe7,0x33, +0x71,0x19,0x67,0x15,0x8a,0x79,0xb3,0x85,0x1c,0x61,0x80,0xc4, +0x9b,0xc2,0x8c,0x14,0x35,0x5b,0xd6,0x24,0x2f,0x60,0x54,0x03, +0xb6,0x31,0x4d,0x8a,0xac,0x6a,0xcd,0x3e,0xd6,0x54,0xa1,0x76, +0x90,0xde,0x57,0xef,0xe8,0xe4,0x7c,0xcd,0x3a,0x16,0x16,0xa7, +0x9d,0x6e,0xc3,0x37,0x4e,0xa9,0x5d,0x03,0x17,0x36,0xc2,0xd7, +0xdf,0x53,0xee,0xdf,0xe6,0xc9,0xe7,0x17,0x17,0xd5,0x65,0xb6, +0x70,0x6d,0x98,0x35,0x04,0xbe,0x5d,0xe8,0x3b,0xa0,0x8d,0x6b, +0xd0,0x1c,0x29,0x0e,0xc9,0x0d,0xc2,0xa5,0xda,0x38,0x53,0xa3, +0xc7,0x59,0xed,0x22,0xbc,0x92,0x07,0x5b,0xa0,0x7c,0x1e,0x68, +0x82,0xc6,0x3e,0x16,0x33,0xd1,0x83,0x18,0x60,0xee,0x01,0x10, +0x41,0x73,0x08,0x35,0x41,0x07,0xde,0x18,0xc4,0x48,0x26,0xb9, +0x22,0xb1,0x22,0xb1,0xd2,0x20,0x95,0x0f,0x79,0xdb,0x77,0x83, +0xc9,0x96,0x56,0x7b,0xbe,0xac,0x23,0xaf,0x3b,0xbb,0x9f,0x1b, +0x44,0x1d,0x7c,0x53,0x17,0xde,0x44,0xf1,0x20,0xe4,0xea,0x8b, +0xfc,0xc0,0x55,0x88,0x63,0x04,0x0d,0xd0,0x20,0xf0,0x16,0x3b, +0x9e,0x74,0x21,0x65,0x20,0xcd,0xb7,0x83,0x5f,0xec,0x87,0xf3, +0x4f,0xe1,0xf2,0xd3,0x19,0xc6,0xfc,0x85,0x73,0x43,0xf1,0x03, +0x09,0x1c,0x2e,0x42,0x0b,0x63,0xb0,0x40,0x1e,0xff,0xce,0x66, +0x18,0xa9,0x01,0xc7,0xb4,0x65,0x66,0xb5,0x6a,0xc2,0xcb,0x60, +0xd2,0xcd,0x2e,0x4a,0x27,0x45,0x55,0x25,0x6d,0x59,0x75,0xc6, +0x79,0x7c,0xa8,0xb3,0xb7,0xb9,0x8f,0x0b,0x87,0x49,0x37,0x49, +0x81,0x6b,0x8e,0x6b,0x96,0x6b,0x9b,0x54,0x06,0x13,0x50,0xe3, +0x57,0xce,0xcd,0xfe,0x69,0x62,0x88,0xe0,0x03,0x98,0x80,0x07, +0xec,0xa7,0x73,0xe9,0xc1,0x1f,0xf4,0x40,0x3c,0xb3,0x92,0x60, +0x54,0x07,0x44,0x31,0x82,0x96,0x19,0xc1,0xe8,0x0e,0x88,0x66, +0x50,0x63,0x16,0x46,0xf7,0xd2,0x03,0x51,0x4b,0x36,0xf5,0x24, +0x46,0xad,0x22,0x10,0x65,0x84,0xf4,0x65,0xc7,0x7a,0x08,0x44, +0x1b,0x21,0x7d,0x76,0xa9,0x3e,0x71,0x70,0x30,0x70,0x3c,0xe4, +0x46,0x51,0xc4,0x40,0xd1,0xf5,0xae,0xd6,0x16,0xee,0xf3,0xd3, +0xa4,0xcd,0xbb,0xc9,0xb3,0xc1,0xb9,0xbe,0x91,0x37,0xa9,0x77, +0xce,0xb3,0x2c,0xe4,0x84,0x65,0xf6,0x64,0xd8,0x79,0xd0,0xb1, +0xc7,0xaa,0xa6,0x85,0xd7,0x69,0x37,0xac,0x32,0x28,0xe5,0x70, +0x6d,0x1c,0x71,0x70,0x36,0x76,0x3d,0xea,0x56,0x63,0xcd,0xf7, +0x97,0x8e,0x34,0xb4,0x34,0x71,0x60,0x8d,0x9b,0x49,0xef,0xe3, +0x67,0xd9,0x2c,0xa5,0x42,0x99,0xa1,0x94,0x15,0xf2,0x96,0xba, +0xa6,0x66,0xeb,0xf4,0x6a,0x2d,0xf9,0xc6,0xc2,0x9a,0xe2,0x8a, +0x52,0x0e,0xe2,0x56,0x8b,0x2b,0x0d,0x84,0x95,0x48,0xb0,0xf8, +0x9b,0xa3,0x78,0x74,0xbc,0x61,0x42,0xcd,0x6e,0x1c,0x8e,0x1e, +0x5d,0x89,0x2d,0x40,0x84,0xed,0xfd,0xe2,0xf6,0x7f,0x30,0xb3, +0x61,0xfb,0xc4,0x28,0x41,0x8b,0x89,0xe5,0xd2,0x20,0x26,0x35, +0x4b,0x62,0x8f,0x61,0xf5,0x2c,0x74,0xd8,0x93,0x7a,0x48,0xb4, +0x67,0x71,0xdc,0x9a,0xd8,0x62,0x58,0x23,0x3d,0x63,0x4b,0x1a, +0x21,0xd1,0x96,0x85,0x7d,0xa2,0x9c,0x88,0xdb,0x3f,0x06,0xb1, +0xf3,0xb1,0x1a,0x93,0x99,0xad,0xc8,0xce,0xc8,0x96,0xe5,0x4a, +0x85,0xc2,0x4e,0xe2,0x02,0x74,0x82,0x3d,0x8c,0xad,0xcc,0xd6, +0x76,0x93,0xac,0xc6,0x96,0xaf,0xcb,0xaf,0x2c,0x28,0x2d,0xe4, +0x20,0x7e,0xbb,0xb8,0xd2,0x88,0x5e,0xc7,0x4b,0x58,0xf2,0xe0, +0x28,0xee,0x50,0x5d,0xc7,0x25,0xd8,0x71,0x64,0x13,0x36,0xc3, +0x4b,0xc2,0x76,0x26,0x10,0x62,0x08,0x7d,0xf7,0x52,0xa4,0xb6, +0xb7,0x19,0xf6,0x10,0x53,0x7c,0xbe,0x93,0x85,0x6d,0xa6,0xa4, +0x13,0x5e,0x32,0x65,0xa1,0xbd,0x93,0x9e,0x79,0x99,0x9e,0xd9, +0x23,0x9d,0x79,0xd5,0x94,0x7d,0xfc,0x9a,0x3d,0x91,0xe1,0xf3, +0xbd,0xf4,0x35,0x52,0xd0,0xe0,0x25,0x19,0x7d,0x4d,0x2f,0x3d, +0xf3,0x32,0x3d,0xb3,0x47,0x3a,0xf3,0xaa,0x8c,0x9d,0x0d,0xcf, +0x4e,0xdc,0x23,0xa1,0x8b,0xfd,0xd6,0x5b,0x6e,0xa2,0xeb,0xa9, +0xa8,0x23,0xa7,0x27,0x73,0x80,0xeb,0xa4,0xda,0xf4,0xaa,0x1e, +0xbc,0x2a,0xaa,0xe9,0x43,0xa9,0xa1,0xf8,0x46,0xdf,0x75,0x70, +0x83,0x7b,0x86,0x58,0xaa,0x2b,0xa8,0x4d,0x6e,0x4a,0x6f,0x04, +0x64,0x10,0x3d,0x98,0xa4,0xca,0xa4,0xaa,0x04,0xca,0xa3,0xb3, +0xfd,0x08,0xfa,0x08,0xa1,0xe0,0xc3,0xea,0xbf,0x47,0xc4,0x57, +0x3a,0x85,0x57,0x18,0xf1,0x95,0x35,0x44,0x78,0xc5,0x44,0x7c, +0x85,0x01,0x42,0x11,0x77,0x3d,0xee,0x6a,0x06,0x4b,0xdc,0xd7, +0x43,0x75,0xd1,0xd9,0x1a,0x0f,0xd9,0xc3,0x91,0xa2,0xae,0xef, +0x51,0xd9,0x0d,0x09,0x1d,0x62,0x83,0x19,0x44,0x19,0x63,0xd2, +0xb2,0x4e,0x1f,0x36,0x6e,0x07,0x81,0xbd,0x0d,0xb8,0x97,0x81, +0x56,0x3b,0x02,0x47,0x1b,0xf0,0x28,0x43,0x17,0xe8,0x5c,0xd2, +0x2a,0x26,0x5b,0xb2,0x8e,0x36,0xc4,0x0c,0x96,0xb3,0x81,0x6e, +0x3e,0xee,0x5e,0xae,0x5c,0x9c,0xa7,0x57,0x9c,0xf7,0xfc,0x44, +0x13,0x58,0x96,0x00,0x5a,0xe9,0xf0,0x8e,0x42,0x3d,0x33,0x38, +0x23,0x38,0x3d,0xa4,0xb9,0x8c,0x77,0x6e,0x32,0xed,0xb1,0x6a, +0xb0,0xf6,0xe1,0xb3,0x83,0xb3,0x83,0xb2,0xe5,0xcb,0xa3,0x70, +0x46,0xcc,0xe2,0xd8,0xc2,0xf2,0xbc,0xca,0xec,0x32,0x4e,0x78, +0xae,0x83,0x5a,0xa2,0xd5,0xdf,0x92,0x0e,0xd4,0xbe,0x03,0xda, +0xaa,0x9f,0x8e,0x9d,0x68,0xcc,0x66,0xe4,0x29,0x4a,0xd3,0x4a, +0x4c,0xb2,0x78,0xd0,0x85,0x5d,0x18,0x8c,0xbb,0x1a,0x98,0x30, +0x8f,0x60,0x97,0x00,0x0f,0x09,0xe6,0x2b,0x8a,0xd3,0x8b,0x53, +0x8b,0xad,0x14,0x3c,0xd5,0xd1,0x5d,0xe8,0x87,0xbb,0x3e,0x61, +0xbc,0x77,0xe8,0x6e,0x3f,0xa2,0xc5,0x5d,0x35,0xc4,0x9a,0xa3, +0xc2,0x0b,0xf0,0xf7,0x21,0xfc,0x3b,0x58,0xc2,0x0b,0x83,0xe8, +0xcc,0x26,0x57,0x25,0x56,0x27,0xd6,0x18,0xa6,0xf2,0xa1,0x6f, +0xfa,0xae,0x35,0xdf,0x48,0x45,0x5b,0xd2,0x91,0x2b,0x89,0xb6, +0x9f,0x5a,0xcf,0x05,0xba,0xb0,0x40,0x7c,0xe1,0x18,0xd4,0x18, +0x88,0xcb,0xfa,0x6f,0x40,0x08,0xe4,0x31,0x35,0x96,0x05,0x05, +0x79,0x05,0x39,0x45,0xea,0x88,0x83,0x2d,0xc2,0x89,0x1e,0xf4, +0x7a,0xc0,0x3e,0x98,0x08,0x21,0xfa,0x87,0x70,0xdf,0x15,0x83, +0x43,0xb8,0x88,0x1a,0x40,0xc3,0xfe,0x3e,0xd8,0x67,0x38,0xd0, +0x07,0x6f,0xf4,0xe0,0x1b,0x0c,0x3a,0xe1,0x2e,0xb2,0x16,0x5f, +0xf9,0x9c,0x15,0xde,0x98,0xbb,0x16,0xff,0xfe,0x39,0x8b,0x21, +0xf8,0x35,0xb9,0x03,0xdb,0x77,0xb1,0xb8,0x1d,0x5f,0x9a,0x3c, +0x32,0x9b,0xb5,0x09,0xb7,0x3f,0x60,0x67,0x3f,0xda,0x4d,0x2e, +0x4e,0xf4,0x83,0x0d,0xf3,0x46,0xcc,0x7b,0x11,0xdb,0x34,0xac, +0x3a,0x6c,0x5a,0x1c,0xab,0x6c,0x2c,0xf8,0x56,0xdb,0x3e,0x83, +0x9e,0x13,0x9e,0xf8,0x8e,0x6c,0xe1,0xb6,0xc5,0x3d,0xe6,0xfc, +0x47,0xf0,0x4c,0xcf,0xaf,0x95,0xc0,0xd7,0x99,0xd7,0x98,0x95, +0x59,0xb6,0x35,0xf3,0x0e,0x03,0xe6,0x23,0xa6,0x83,0x5c,0xf6, +0x37,0xc9,0xf0,0x2c,0xcc,0x9b,0x07,0xce,0xcc,0xf2,0xd3,0x9b, +0xa2,0x76,0x6b,0xd8,0xb5,0xdb,0x37,0x39,0xd6,0xd0,0xdf,0xd0, +0x6e,0xd5,0x6d,0xd0,0xa5,0xed,0x8b,0x9b,0x4d,0x91,0x5d,0x8f, +0x6a,0x3d,0x96,0xfc,0x03,0x78,0xae,0x1b,0x9e,0x29,0x81,0x25, +0x2d,0x7a,0x8d,0x3a,0xd5,0xfa,0x1d,0x8d,0xbc,0xf5,0x25,0xc3, +0x9b,0x7a,0xd7,0xb8,0xf4,0x2f,0x13,0x7f,0x83,0x57,0xe6,0xc1, +0x9a,0xc7,0x27,0xe9,0x6d,0xcd,0xd2,0x52,0x83,0x4d,0x4c,0x7b, +0x41,0x5e,0x9b,0xe6,0x44,0xd5,0xe3,0xab,0xd4,0xf5,0x30,0x13, +0x61,0x24,0x0c,0x5f,0xd8,0x7c,0x00,0xb5,0xf5,0x4b,0xf5,0x78, +0xb0,0x18,0xf9,0xfd,0x61,0x3a,0xac,0xe2,0x60,0x36,0x1e,0x63, +0x0c,0x0a,0x4f,0x8e,0x6b,0xc0,0x71,0xa9,0xfc,0xb0,0x59,0xf3, +0x1a,0x7b,0x22,0x5b,0x6d,0x1d,0xee,0x62,0x5d,0x4f,0x25,0x55, +0x6a,0xc2,0x76,0x38,0x87,0xcf,0x5d,0x82,0xdd,0x8f,0x7f,0xc6, +0xdd,0xe3,0xf0,0x1c,0x2b,0xcc,0x17,0xfb,0x08,0xbc,0x21,0xcc, +0x1a,0x79,0x5c,0xac,0x0d,0xbf,0xe3,0x1b,0xe2,0xd2,0x13,0xc2, +0x52,0xb4,0xb9,0x04,0x36,0xc2,0xa6,0x0b,0x2a,0x69,0x5c,0x9a, +0xe8,0x9d,0xd0,0x7a,0xec,0x83,0xfa,0x53,0xd7,0x31,0x50,0x94, +0x3f,0xa8,0x39,0x91,0x4b,0xaf,0x03,0xea,0x1f,0x6f,0x25,0xd6, +0x11,0x19,0x55,0x9a,0xb0,0x40,0xd8,0x37,0x88,0x7e,0xf0,0x37, +0x50,0x0c,0xe0,0x7e,0xb6,0xb6,0xb9,0x7c,0xb0,0x78,0xe8,0x78, +0x2e,0xef,0x7b,0xc2,0xe3,0xb8,0xad,0x21,0x05,0xad,0xfa,0x90, +0x8c,0x7f,0x43,0x6b,0x34,0x63,0x8e,0x94,0x78,0xdf,0xd1,0x10, +0x16,0x0c,0x32,0xa2,0xa5,0x30,0x48,0x2a,0xec,0x2b,0x65,0x79, +0x56,0x43,0x25,0xbc,0x7f,0xab,0x6b,0x8f,0x5b,0x1d,0x37,0xfb, +0xab,0x89,0x36,0x82,0xf2,0x89,0x61,0x90,0xb3,0xe2,0x45,0x7d, +0x82,0xb3,0x51,0x17,0x66,0xb3,0xc2,0x11,0x9c,0x4d,0x50,0x07, +0x66,0x83,0x0e,0x33,0x42,0x0f,0xe9,0x81,0x09,0xce,0x66,0x31, +0x07,0xaf,0x10,0xbf,0x8c,0xc8,0xb3,0x11,0xa1,0xa1,0x72,0x3e, +0xea,0x2a,0x93,0x95,0xaf,0xc8,0x4f,0x2b,0xe0,0x84,0x39,0xa3, +0xff,0xe3,0xb9,0xe3,0xc2,0x21,0xe6,0x00,0xbe,0x8c,0xab,0xf1, +0x19,0xf4,0xdb,0x52,0x4a,0xa9,0xd7,0x96,0x11,0x50,0xff,0xe4, +0xab,0xaf,0x39,0xf1,0x99,0x8b,0xf0,0x0f,0x36,0x35,0x39,0x3e, +0x25,0x46,0x43,0x78,0x15,0x9d,0x6b,0x7b,0x28,0xaf,0xdc,0x2d, +0xc5,0x59,0xd6,0xc3,0x4c,0x41,0x13,0x22,0x1f,0x7f,0x82,0x91, +0xc2,0xdf,0x70,0xa6,0xb8,0x44,0x5b,0x58,0x42,0xad,0xcc,0x10, +0xfe,0x72,0xb1,0x4b,0x18,0x35,0xb9,0x08,0xbf,0xe0,0x2d,0x6a, +0x61,0xd6,0x33,0xe2,0x8f,0xf0,0x2f,0x82,0x7f,0x47,0x23,0xf8, +0x3b,0x0b,0xa9,0x73,0x41,0x46,0x8f,0x65,0x0c,0xa4,0xcc,0x05, +0xba,0xb0,0xa9,0x8f,0x78,0xfc,0x8a,0xf8,0x29,0x81,0xe3,0xc2, +0x28,0x1e,0x67,0x67,0x7f,0x3a,0xd1,0x4b,0xd0,0x78,0xe2,0x03, +0x30,0x66,0xc5,0x0f,0x64,0x64,0x39,0xca,0xbe,0x63,0x05,0xbd, +0xe5,0x04,0x0d,0xbe,0x03,0x03,0x66,0x64,0x39,0xf9,0x0e,0x2c, +0x97,0xb3,0x99,0x8f,0xb7,0x10,0xd4,0x68,0xdb,0x74,0xc5,0xfa, +0x17,0x0e,0x3e,0xec,0xc7,0xaf,0x99,0xa8,0xca,0x98,0xea,0xb8, +0x3a,0x0e,0x9a,0xc1,0xf0,0xb1,0xb9,0xd8,0xcc,0x38,0xc5,0x38, +0xc7,0x3a,0xc5,0x66,0x9c,0xa0,0xf0,0x46,0x09,0x5b,0xab,0x81, +0xa9,0x89,0x18,0xe6,0xb7,0x9f,0x7c,0xcf,0xff,0x5d,0x39,0x07, +0x5a,0x70,0x97,0xed,0xc4,0xb9,0x3f,0xad,0x83,0x95,0x66,0x7d, +0xf2,0xb2,0xe4,0xd4,0xde,0x5c,0x98,0xc5,0x9f,0x28,0x51,0x5b, +0x2b,0xbc,0x4c,0xde,0x15,0x3f,0xfd,0x9a,0xc5,0x37,0x67,0x41, +0x1f,0x73,0xde,0x31,0xc1,0x29,0xd9,0x95,0xc3,0xcb,0xcc,0xec, +0x89,0x2b,0xf0,0x2b,0x69,0x08,0x6e,0x0e,0x69,0x0f,0x29,0xe8, +0xe5,0xf1,0x9d,0xb6,0x77,0x3a,0xf6,0x5c,0xe2,0x60,0xb4,0x5f, +0x8c,0x94,0x76,0x96,0x29,0x48,0x2f,0x90,0x48,0xfc,0xa1,0xc7, +0x77,0xf0,0x10,0xfc,0xc2,0x84,0xf9,0x86,0xfa,0x85,0xfa,0x73, +0xf8,0xbb,0x01,0x8c,0x31,0x87,0x0e,0xac,0x30,0xc1,0xf5,0x96, +0x85,0x86,0x7c,0x7b,0x46,0xb3,0xa2,0x21,0x8b,0xc3,0x1b,0xa3, +0xbd,0xe0,0x6f,0xcc,0x1e,0x2f,0xf2,0xb9,0xaa,0x01,0x37,0x99, +0x8e,0x1c,0x45,0xa3,0xe6,0x2f,0xac,0x8e,0x52,0x0d,0x9f,0xc7, +0x2b,0xac,0x53,0x44,0x7a,0x8d,0x66,0x2d,0x0c,0xb1,0x62,0xe0, +0xc4,0x1e,0xb2,0x05,0x8d,0xee,0xb1,0x92,0xb0,0x64,0x5b,0x24, +0xa9,0x25,0xcd,0xbd,0x07,0xd6,0x5b,0x58,0xac,0xc7,0xad,0xa4, +0x4b,0x76,0xc1,0xf2,0x43,0x7b,0x0e,0x43,0x3f,0x3c,0xbe,0x13, +0x4d,0x98,0xab,0xf5,0xfd,0xad,0x2d,0xbd,0x1c,0xf5,0xda,0xe9, +0xe4,0x63,0xf0,0xdf,0xce,0xc2,0xd0,0xc7,0x64,0x3b,0xc6,0x7e, +0x2c,0x6d,0x2b,0xf6,0x0a,0x01,0xff,0x2d,0xe8,0xcf,0x40,0xd3, +0x3d,0x02,0xb1,0x5b,0x30,0x96,0x99,0x2d,0xe4,0x7d,0x41,0x6e, +0xc1,0x57,0xd0,0x84,0xbf,0x5c,0x11,0x36,0x76,0x8b,0x1b,0x2f, +0x0b,0xcb,0xe8,0x37,0xf8,0x04,0x0f,0x09,0x0c,0x1e,0xc4,0x2b, +0x94,0x38,0x7c,0xb8,0x47,0x5c,0x6d,0x28,0xac,0xc6,0x99,0x17, +0xe9,0xcd,0xde,0xdd,0xc7,0x8a,0xc2,0xc4,0x06,0xb2,0x0e,0x4d, +0x1e,0xa9,0x6e,0xa4,0xd1,0x3a,0x34,0x92,0xee,0xe3,0x23,0xb0, +0x59,0xc7,0x1e,0xc7,0x1f,0x88,0xf8,0xdd,0x75,0xe1,0x3b,0x06, +0xb9,0x59,0x7b,0xc4,0xef,0x6e,0xb1,0xb3,0xef,0x4d,0xb4,0x13, +0x74,0x98,0xf8,0x04,0x1c,0x58,0xf1,0x23,0x7d,0xb2,0x18,0x8d, +0x7e,0x65,0x05,0xd9,0x62,0x82,0xb2,0x5f,0x41,0xc6,0x8c,0x2c, +0x26,0xbf,0x82,0xf5,0x62,0x56,0x0c,0xc7,0x7f,0x90,0xf0,0xf4, +0x88,0xf3,0xe1,0x61,0xc1,0x21,0x7c,0xf4,0x5d,0xd8,0x30,0x8c, +0x1b,0x26,0x37,0x45,0x36,0xd0,0x81,0x03,0x8c,0xcf,0xdb,0x87, +0x71,0x26,0xaa,0xbd,0x53,0x47,0xa1,0xea,0x8b,0xf0,0x4c,0xdb, +0x37,0xe9,0xdf,0x73,0xc9,0xa2,0xe6,0x28,0x7c,0xc7,0xa4,0x27, +0x9d,0x4b,0x8e,0xd4,0x00,0x16,0x9f,0x6b,0x69,0x51,0x13,0x2c, +0xe0,0x18,0xc5,0x98,0x7e,0x30,0x47,0x8b,0xbe,0xf5,0x6d,0x1d, +0xe0,0x59,0xcf,0x45,0x3b,0x90,0xc3,0x17,0xdf,0xa9,0x37,0xe2, +0x81,0x07,0xb5,0xbe,0xef,0xd3,0xff,0x49,0xdf,0xba,0x74,0x4c, +0x58,0x9a,0xcc,0x64,0xbe,0x71,0xe1,0x5d,0x98,0x87,0xcf,0xd5, +0xd2,0xbb,0xf9,0xdc,0x4f,0xeb,0x41,0xcd,0xf5,0x77,0x6e,0xf2, +0x8a,0x65,0xf4,0x8a,0x65,0xac,0xf8,0xa1,0x31,0x59,0x86,0x26, +0xdf,0xb3,0x82,0xd1,0x32,0x82,0x46,0xdf,0x83,0x11,0x33,0xb2, +0x8c,0x7c,0x0f,0x36,0xcb,0xd8,0x60,0x74,0x26,0xf0,0xda,0x51, +0x7c,0x0d,0xab,0xf5,0xa0,0x5a,0x7c,0x1d,0xb5,0x54,0x33,0x8e, +0xd7,0x31,0x43,0x39,0x45,0x5d,0x9a,0xc2,0xdf,0x60,0xc6,0x20, +0x2b,0x66,0xc2,0x2c,0x82,0x9f,0x99,0xc0,0x67,0x4c,0xe5,0x9b, +0xa4,0x47,0x5c,0x6f,0xc4,0x0e,0xc8,0x88,0x09,0xdc,0xef,0x62, +0xa1,0x10,0x1d,0x89,0xcd,0xb8,0xd9,0xa0,0x61,0xb7,0x99,0x13, +0x3f,0x60,0xd0,0xae,0xd7,0xa8,0x45,0x69,0xe8,0x4f,0xa4,0x0b, +0xef,0x9b,0xb0,0x03,0x14,0x49,0xb7,0x42,0x2d,0x85,0xb0,0xdf, +0x60,0x38,0x0b,0xb5,0x5f,0x51,0x1f,0xf8,0x2d,0xf8,0x30,0xf4, +0xda,0x7a,0xfe,0x1b,0xd7,0x26,0xe6,0x63,0x3f,0xc9,0xf4,0xcd, +0xf4,0x56,0x78,0x1a,0xc6,0x1c,0x8f,0x39,0x7e,0xfa,0xc2,0xe8, +0xb5,0xbb,0xa3,0x77,0x4d,0x2b,0x78,0x17,0x73,0x7b,0x53,0x5b, +0xb3,0x40,0x65,0x60,0x4e,0x80,0xb2,0xb9,0xa3,0xae,0xab,0xb2, +0x53,0x8a,0x8f,0x99,0x3b,0x9a,0xdb,0x59,0x9a,0x37,0xf0,0x76, +0x36,0xfd,0x96,0x1d,0x36,0x6d,0x96,0xea,0x3e,0x5e,0x3e,0xde, +0x3e,0xde,0x5c,0x9c,0xbb,0xa7,0xe4,0x06,0x0d,0xfb,0xcf,0x8f, +0xc6,0x8f,0x26,0xa8,0xe3,0xc0,0x08,0x8c,0xb0,0x4d,0xf1,0x8d, +0x09,0x75,0x09,0xf9,0xc6,0x7c,0x5b,0xa1,0xcf,0xb0,0xcb,0xb8, +0x5b,0xb7,0xba,0x90,0x07,0xef,0x13,0xf1,0x6d,0xdc,0x21,0xbc, +0xcd,0x1c,0x87,0x97,0xc8,0x5e,0xac,0xbb,0xc9,0x6e,0x15,0x1f, +0x91,0x11,0xea,0xd0,0x3e,0xdd,0x8a,0xef,0x31,0xd9,0x14,0x01, +0xce,0x63,0xba,0x94,0x79,0x14,0x01,0xfe,0x22,0xea,0xb1,0x23, +0xc8,0x91,0xcb,0xf0,0xe9,0x61,0x16,0x3f,0xc5,0xe7,0xc8,0x35, +0xf8,0xf4,0x7d,0x56,0x6c,0xe8,0x24,0x25,0xba,0xf9,0x5a,0xca, +0x7d,0x7d,0x79,0x7c,0xe0,0x15,0x9f,0x4b,0x5e,0x43,0x1c,0x56, +0xa0,0x37,0xa9,0x1b,0x2f,0xfd,0x28,0xeb,0x26,0xf5,0x77,0x21, +0x3b,0xbd,0x4f,0xd8,0x1d,0xe1,0x66,0xdf,0x9f,0xe8,0x22,0xb8, +0x73,0xe2,0x23,0xd8,0x49,0x65,0x60,0x46,0xb6,0xa2,0xd1,0x5d, +0x2a,0x83,0xad,0x04,0x4d,0xee,0x82,0x09,0x33,0xbc,0x95,0xdc, +0x05,0xeb,0xad,0xac,0x98,0x8a,0x2c,0xc9,0x0c,0x51,0xca,0xb3, +0x03,0xb5,0xa3,0x0f,0xc4,0x1e,0x38,0x53,0x52,0x51,0x52,0x57, +0x58,0xa7,0x9d,0xcd,0x9f,0xb4,0x71,0xb3,0x76,0xb4,0xe5,0x54, +0x2e,0x3e,0x49,0x06,0xcf,0xc7,0xc3,0x5b,0x29,0x30,0x33,0x4b, +0x3d,0x33,0x48,0x11,0x94,0x16,0xda,0x51,0xca,0xbb,0x36,0xcb, +0x86,0xac,0xeb,0xa4,0xfd,0xd4,0x56,0x11,0xf3,0x02,0x7f,0x8a, +0xcb,0x4f,0x31,0x55,0x99,0x8a,0x12,0xcd,0x8b,0xac,0x6e,0x86, +0xda,0x21,0x74,0x60,0xdd,0x4f,0xa5,0x96,0x6a,0xd6,0xb2,0x3f, +0xa4,0xfd,0x96,0xf3,0x43,0xa9,0x4f,0x13,0xff,0xae,0xc7,0x9a, +0xe0,0x95,0x11,0xdc,0x65,0x2d,0x56,0x9c,0x2f,0x86,0x91,0x1f, +0x20,0x4d,0x86,0x1c,0x9b,0x66,0xa9,0x06,0x33,0x98,0xc6,0xac, +0xdc,0x5a,0x4d,0x50,0x88,0xcf,0xe3,0x07,0x2c,0x5c,0x07,0x39, +0xc1,0xb4,0x56,0x48,0x63,0x04,0x6b,0xcc,0x21,0xd5,0x99,0x99, +0xc5,0x9a,0x17,0x58,0xed,0x74,0x35,0x2d,0x74,0x67,0xdd,0x4e, +0xa5,0x94,0x51,0xb4,0xff,0x73,0xda,0x37,0xca,0x9f,0x4a,0x7d, +0x5a,0xe8,0x6f,0xdd,0x14,0xba,0x22,0x82,0xbb,0xa6,0x85,0x5b, +0x59,0x33,0xe9,0x3a,0x44,0x57,0x2a,0x68,0x48,0x33,0x43,0xfa, +0x76,0xc4,0xbd,0xa4,0xd9,0xa2,0xc9,0xa4,0x5a,0x6f,0xb8,0x9c, +0x77,0x1c,0xb2,0xe8,0xb6,0x69,0xe0,0x1e,0x9b,0xe3,0x7e,0x32, +0xda,0xd3,0xda,0x57,0xda,0x6b,0x50,0xc8,0xbb,0x9b,0x59,0x9a, +0x68,0x9b,0x71,0x42,0x12,0xa8,0x91,0x22,0xb3,0x3c,0xe3,0x2c, +0xc3,0xf1,0x4c,0x5e,0x3e,0x78,0xb2,0xcb,0xbb,0x8d,0xc3,0xe2, +0x10,0x92,0x69,0x94,0x62,0x91,0xa8,0x33,0x9e,0xc2,0x47,0x0f, +0x47,0x74,0x06,0x77,0x70,0xb3,0xff,0xd0,0xf9,0x89,0xe0,0x82, +0xca,0x15,0xf5,0x5a,0xcd,0x1c,0x34,0x74,0x88,0x51,0x12,0xb8, +0x54,0xa6,0x29,0x39,0x0a,0xbc,0x3d,0x70,0x6d,0xa7,0x44,0x58, +0x93,0x3b,0x21,0x00,0x96,0x52,0xfb,0xb0,0x14,0x1c,0x4c,0x31, +0xd2,0x0c,0x22,0x4d,0x29,0xd4,0xf7,0x80,0x2a,0x26,0x4c,0x1e, +0x2c,0x97,0x07,0x71,0xf8,0xa5,0x19,0xfd,0xcf,0x61,0xcb,0xd5, +0xf6,0xf8,0xaa,0x4b,0x91,0xf9,0xa4,0xb9,0xcb,0xe4,0x70,0xc1, +0x05,0x98,0x07,0x8e,0xb8,0xf3,0x02,0xec,0x84,0xd0,0xcd,0xf8, +0x1a,0x9b,0x69,0x2d,0xb1,0x82,0x46,0x65,0x56,0x9b,0xe6,0x15, +0xb6,0x21,0xb4,0x39,0xac,0x3d,0x9c,0x13,0xbf,0x9d,0xb0,0xa0, +0xec,0xd6,0xf4,0x12,0x0b,0x69,0x73,0xc1,0xf8,0x08,0x1a,0x33, +0x90,0x3c,0xf7,0x12,0xd8,0x1d,0x61,0xd1,0xdf,0x8a,0x82,0xd0, +0x3a,0x0a,0x42,0xeb,0xde,0x9d,0x3c,0x10,0x0e,0xbf,0x47,0xcc, +0xc5,0xdb,0xed,0xac,0x70,0x7b,0x03,0x31,0x11,0x6f,0x53,0xa5, +0xba,0x44,0x95,0xea,0x84,0x8c,0x42,0xbc,0x8e,0xc2,0xa6,0x92, +0x6a,0x0a,0xc0,0x8f,0x31,0x95,0x9e,0x4d,0xde,0xdd,0x3e,0xd4, +0x20,0x4a,0xca,0xd3,0x4d,0xf0,0x18,0x55,0x9e,0x63,0x74,0xe1, +0x98,0x90,0x35,0x68,0xf2,0x05,0x5d,0x38,0x6b,0xa8,0xf2,0x7c, +0x21,0x29,0xcf,0x1a,0xf2,0x05,0xd8,0xac,0x61,0x11,0xc5,0x2f, +0x09,0x5a,0x8f,0xc3,0x66,0x38,0x84,0x9b,0x07,0x81,0x81,0x67, +0xbe,0xe8,0x5a,0x73,0xd1,0xf0,0x18,0x6e,0xa5,0x3f,0xd6,0x9a, +0x7c,0x8e,0xcf,0xfc,0xa6,0x87,0x1b,0xa8,0x89,0xdf,0x70,0x14, +0x8d,0x8d,0xc0,0xf8,0xcd,0xfe,0xdf,0xc0,0x9a,0x81,0x52,0x50, +0x10,0x58,0xd6,0x81,0xcb,0x6e,0xaa,0x7e,0x5e,0x87,0xcd,0x5d, +0xe2,0xbb,0xe2,0xdb,0xc2,0x0c,0x46,0x2b,0xce,0x36,0xd2,0x42, +0xc3,0x31,0x3a,0xe4,0x94,0xcd,0xfc,0xf7,0x99,0x4c,0x13,0xb5, +0x8b,0xcc,0x9d,0xdc,0xd2,0xfe,0x34,0xcd,0xb4,0x8e,0xf8,0x0f, +0x1e,0xcd,0xc3,0xfd,0x8c,0x3e,0x8c,0x92,0x03,0x38,0xff,0x3a, +0x8b,0x81,0x0e,0x44,0xfa,0x20,0x56,0x28,0xdb,0x46,0xf5,0x68, +0xfe,0x4d,0x16,0xe6,0xe3,0xf3,0x64,0x37,0xce,0xbf,0xcd,0x8a, +0x86,0x61,0xe4,0x5f,0x6b,0x16,0x32,0x50,0x34,0x17,0x67,0x7e, +0x01,0x33,0x19,0xea,0x8a,0x17,0x13,0x85,0x7b,0xa6,0x75,0x9a, +0x43,0x73,0x26,0x7f,0xaa,0x3a,0xa8,0x25,0x94,0x32,0x95,0x7e, +0x34,0x27,0x55,0xa3,0xb9,0x63,0x19,0xe3,0x32,0xaa,0x33,0x87, +0xfd,0xf5,0x3c,0x64,0x1c,0xc8,0x61,0x03,0x51,0xd8,0xa4,0x19, +0x26,0xd9,0x76,0xa7,0xf3,0xd1,0x4d,0x41,0xfd,0x61,0xb5,0x1c, +0xce,0x8d,0x20,0x49,0x66,0x89,0xda,0xc6,0xf3,0xfa,0x92,0xcf, +0xf4,0x46,0x8f,0x44,0xb5,0xaa,0xff,0x37,0x45,0x24,0x2e,0x16, +0x4b,0xc9,0xff,0x89,0x74,0x7a,0xa8,0x3c,0xd9,0x89,0x39,0xc2, +0x02,0x82,0xda,0x17,0xf5,0x8f,0xe1,0x16,0x13,0x58,0xcf,0x84, +0x98,0x5b,0x78,0x22,0xeb,0x90,0x6f,0xc4,0x3f,0x2a,0xed,0x2b, +0xab,0xad,0x4e,0x4a,0x4a,0x3c,0x9b,0x16,0x03,0x3a,0x6b,0xf8, +0xe2,0x4e,0xdc,0x71,0x3f,0x34,0x29,0xf2,0x5c,0x78,0xa8,0x7a, +0x44,0x58,0xf4,0xf9,0xe4,0xcc,0xa4,0xcc,0x78,0xa5,0x3a,0xe8, +0x31,0xe2,0xcd,0xb9,0x2a,0xf1,0xc0,0x30,0x85,0xa8,0x46,0xf0, +0x4f,0xea,0x02,0xe7,0xb0,0x39,0x46,0x6a,0xbf,0x31,0x2d,0xca, +0xac,0x26,0x4d,0xa8,0xea,0xeb,0x61,0x1f,0x8f,0xd9,0xff,0x9b, +0x9c,0x66,0x1d,0x22,0x18,0x8a,0xf2,0xbe,0x0e,0x38,0xcc,0x18, +0x52,0xe3,0x31,0xf7,0x73,0x98,0x4b,0x71,0xfa,0x01,0xea,0xcd, +0xc5,0x2d,0xf0,0x3c,0x4c,0x8c,0xe0,0x04,0xa8,0x09,0x4b,0x46, +0xf0,0x3c,0x53,0xd9,0x50,0xd4,0xaa,0xac,0x97,0xf6,0x7b,0xb4, +0xf4,0x34,0x76,0x34,0xe5,0xb0,0x91,0x19,0x28,0xf4,0x6a,0x75, +0xee,0xf6,0x2b,0x52,0xd7,0xf7,0xac,0xb6,0x2e,0x72,0xc8,0x73, +0x54,0xc7,0x18,0x6d,0xe1,0x35,0x54,0xc3,0x6f,0xb4,0xe1,0x1b, +0x7c,0x5e,0x5c,0xa6,0x0d,0x35,0x4c,0x14,0xce,0x3f,0xb6,0x0a, +0x9d,0x76,0x56,0xe9,0xf2,0x60,0x7f,0xf3,0x3b,0x50,0x4b,0x85, +0x3d,0x1c,0x1c,0xc5,0x70,0x66,0x4f,0x99,0xd7,0x1d,0x0d,0xd8, +0x4f,0xed,0x5f,0x6e,0x9b,0x26,0x6c,0x60,0x8f,0xe7,0xaa,0xa1, +0x16,0x65,0xf7,0xd6,0xe1,0xe9,0x0d,0x9a,0x54,0x9d,0x7a,0x28, +0x40,0x2d,0x10,0x76,0x13,0x10,0x2e,0xa0,0x00,0xf3,0x85,0xc5, +0x17,0x30,0x89,0xa9,0x69,0x2d,0xe9,0xc9,0x69,0xd6,0x2a,0xe0, +0xfd,0x8c,0x3d,0xf4,0x1d,0x0c,0x38,0xb1,0xe4,0x04,0xfd,0xc8, +0xf9,0xf8,0xf5,0x09,0xf8,0x9a,0xa2,0xce,0x65,0x27,0xfe,0x78, +0xe5,0x82,0xb8,0x85,0xc1,0xa5,0xc2,0x66,0xe2,0xd5,0xe9,0x34, +0xe8,0x5b,0xaa,0xef,0xc1,0xd7,0x98,0x15,0x5b,0x15,0xda,0x72, +0xc2,0x41,0xb1,0x9c,0xb4,0x1d,0x6e,0x79,0xbf,0x66,0xdb,0x58, +0x19,0xef,0x70,0xcf,0xec,0x86,0xe5,0x10,0xf7,0xf8,0x28,0xc6, +0x90,0xcb,0x37,0xdb,0x6f,0x95,0xdf,0xd4,0x2e,0xe0,0xdd,0x0e, +0x9a,0xef,0x3f,0x76,0x84,0x13,0xe2,0x28,0xdb,0x2b,0x3e,0x58, +0x70,0x20,0x6b,0xe7,0xd5,0x2c,0x3e,0xf0,0x63,0xdf,0xeb,0x9e, +0xe3,0x1c,0xe6,0x06,0x13,0xc5,0xfe,0xd4,0x23,0x09,0x5b,0x2f, +0xa7,0xf0,0x31,0xf7,0x4e,0x5d,0x0d,0xba,0x4c,0x8d,0xc3,0x7e, +0x09,0xef,0x6d,0xfd,0x0c,0xfe,0x18,0xc0,0x3f,0xee,0x09,0x6f, +0xf5,0x53,0xf4,0x50,0x5a,0x91,0x5f,0x9d,0x55,0xa1,0x93,0xc7, +0xcb,0x1d,0xbd,0x6d,0x5c,0xec,0x38,0x6c,0x65,0x3a,0xf3,0x7c, +0x6a,0xdc,0x1a,0xfc,0xf2,0xd5,0x65,0xde,0xe5,0x2e,0xf9,0x1e, +0x79,0x1e,0xea,0x18,0x61,0x20,0x50,0x00,0xf3,0xad,0x3e,0x7c, +0xbb,0x5e,0x5c,0x6e,0x00,0x7e,0x8c,0x0b,0x6e,0x3b,0x84,0x3c, +0xbe,0x85,0x4c,0x9b,0x29,0x0f,0x6f,0xc3,0x4b,0x77,0x41,0xb3, +0x0e,0xa8,0xa5,0xfa,0x81,0x49,0x47,0x6a,0x1f,0x09,0x93,0xd2, +0x97,0xdc,0x9f,0xd8,0xc7,0x89,0x11,0x32,0xd8,0xc0,0x44,0x3b, +0x46,0x3b,0x46,0x3a,0x70,0x68,0x22,0xa3,0x18,0x3d,0xc2,0x36, +0xdc,0x36,0xcc,0x96,0xc3,0x33,0x86,0x13,0x3e,0x7d,0xf8,0x26, +0x93,0xd2,0x98,0xdc,0x98,0xd4,0xc8,0xc1,0xeb,0x0c,0xee,0x83, +0xf7,0x48,0xac,0x6b,0xac,0x63,0xb4,0x0d,0x87,0x0e,0x4c,0x4a, +0x5d,0x72,0x6d,0x72,0x2d,0x77,0x18,0x4b,0x49,0x46,0x63,0x1a, +0x7d,0x70,0xe0,0xc4,0x44,0xdb,0x47,0xda,0x9c,0xb2,0xe1,0x66, +0x0b,0xba,0xd0,0x45,0xf4,0xc2,0x75,0x22,0x74,0x4e,0x71,0xe7, +0x2b,0xce,0x55,0xd5,0xcc,0x6b,0x83,0xf7,0x86,0xf0,0x3d,0x78, +0x1d,0x76,0x0d,0x21,0xc3,0x96,0x74,0x97,0x8e,0xe6,0x0c,0xd3, +0x2f,0x16,0xa4,0xe3,0xb1,0xcf,0x45,0x9b,0xc3,0x00,0x5d,0xd8, +0x8d,0xaf,0xe3,0x06,0x5d,0xd8,0x60,0xc1,0xd8,0xc5,0x39,0x9d, +0x76,0xd5,0x38,0x11,0xa9,0x15,0xad,0x15,0x2b,0xed,0x0d,0x93, +0x38,0x94,0x34,0x98,0x2c,0x5f,0x6e,0x73,0xf0,0xbd,0x43,0x75, +0x26,0xfc,0x2f,0x77,0x7a,0x1e,0xe6,0xc2,0x2b,0x17,0xd3,0x46, +0xd3,0x46,0x14,0x1c,0x46,0x09,0x46,0x44,0xde,0xe3,0xdf,0xe1, +0xd5,0x69,0xec,0xcd,0x17,0x9b,0xe6,0x5a,0x28,0x8d,0xb9,0x89, +0x93,0x8f,0x57,0x93,0x13,0x3f,0x38,0x81,0x66,0x30,0xb8,0x70, +0xb0,0x79,0x18,0xb7,0x31,0xb1,0xd7,0xce,0xdc,0xbe,0x3f,0x6f, +0x24,0x7d,0x50,0xd1,0x9d,0xed,0xd1,0xcb,0x2f,0x71,0x41,0xfe, +0x24,0x6e,0x3c,0xc5,0x3d,0x9e,0xc5,0x3a,0x47,0xd1,0x47,0xb4, +0xe2,0x04,0xff,0x4b,0x3e,0xcc,0x2a,0x7f,0x50,0x1e,0x31,0xc8, +0x5b,0x86,0x98,0x84,0x18,0x85,0x71,0xd0,0x0f,0x2b,0x59,0x25, +0x86,0x34,0xe1,0x7b,0x37,0x16,0x95,0x99,0x0c,0xa5,0x26,0x5d, +0x52,0x82,0x0d,0x6f,0x58,0xa0,0x86,0x9f,0x0b,0x31,0xa4,0x23, +0xbe,0x3b,0xb1,0x2b,0xe9,0xdc,0x8e,0x73,0xfb,0x12,0x0e,0x71, +0xf8,0x0e,0x03,0xda,0xe2,0x65,0x32,0x86,0xdf,0x69,0xd1,0x05, +0xb7,0x8b,0x4a,0xc0,0x20,0xdc,0x20,0x42,0x2f,0x92,0x3b,0x5f, +0x7e,0xae,0xb2,0x7a,0x5e,0x07,0xbc,0x33,0x88,0xef,0x80,0x06, +0x6c,0x1c,0xc4,0x67,0xd8,0xe2,0xee,0xd2,0x31,0xe5,0x10,0x95, +0x40,0xb0,0x8e,0xe7,0x3e,0x57,0x2a,0x01,0x17,0x3d,0xd8,0x88, +0x1a,0xb8,0x52,0x0f,0x56,0x4e,0x4a,0xc0,0x45,0x43,0x37,0x4a, +0x27,0x5a,0x5b,0x92,0x40,0x7f,0x62,0x7f,0x52,0x7f,0x72,0xd0, +0x72,0xdb,0x83,0x1b,0x0f,0xd5,0x99,0xf2,0xdf,0x7d,0xd8,0xf5, +0x30,0x07,0xe6,0x8c,0xa4,0x0e,0xa7,0x0f,0x51,0x09,0x04,0x0a, +0x86,0x24,0xa8,0x27,0xa0,0xc3,0xbb,0xd3,0xd8,0x87,0x2f,0xa2, +0x12,0xc8,0x32,0xe6,0x84,0x20,0x58,0x47,0xdc,0x57,0xed,0x5b, +0x85,0xaf,0xac,0xaa,0x33,0xe0,0xe1,0xe5,0xef,0x6e,0x3e,0x28, +0xfe,0x17,0x97,0xc4,0x14,0xbd,0xf9,0xe9,0x6a,0x78,0x1b,0x9f, +0xa9,0x1d,0xe2,0x71,0xe1,0x0f,0xeb,0x7e,0x70,0xfe,0x86,0xc3, +0xa3,0xf8,0x3d,0x81,0xd1,0x21,0x1c,0x65,0xbe,0xc4,0x60,0x22, +0xf2,0x17,0x04,0x1e,0xf6,0x61,0xc0,0x9b,0xac,0x42,0x47,0xed, +0x11,0xd3,0x9e,0x93,0xdb,0xa5,0x09,0xa5,0xa2,0x8e,0x2e,0x3b, +0x7b,0xe2,0x86,0x70,0x99,0xfc,0x04,0x73,0xda,0x71,0xce,0x0f, +0x8f,0xcd,0x2c,0xa0,0x80,0x8d,0x0b,0x38,0x1d,0x18,0x23,0xe7, +0xf0,0x81,0x39,0x5c,0x67,0x22,0xfd,0x23,0x02,0xc3,0x03,0x39, +0x74,0xb3,0x80,0x43,0x8c,0xee,0xf1,0x8d,0x94,0x57,0x5a,0x94, +0x9a,0xf0,0xd7,0x4b,0x2f,0x54,0x74,0x57,0x71,0x4b,0xbb,0x58, +0x0b,0x9f,0x02,0x79,0xa1,0xbf,0x32,0x40,0x1d,0x43,0x4d,0x85, +0xd7,0x8e,0xa3,0x60,0x06,0xc2,0x31,0x71,0x9d,0xb1,0xb0,0xee, +0x9d,0xd1,0x1f,0x84,0x7d,0xdd,0xe2,0xbe,0x8b,0x02,0xd7,0x21, +0x72,0xa3,0xc2,0xe2,0x4e,0x8c,0x64,0x72,0xf3,0x72,0x72,0xb3, +0xf2,0xcc,0xf3,0x79,0x38,0x06,0xef,0x89,0xbd,0x8c,0x52,0x99, +0xad,0xcc,0xcc,0xe1,0x84,0x25,0x60,0x42,0xf4,0xf1,0x11,0x9b, +0xa0,0x8c,0xcf,0x39,0x97,0xcb,0xc1,0x27,0x4b,0x89,0xae,0x48, +0xf1,0x40,0x4e,0x4a,0x6e,0x72,0x2e,0x87,0x2c,0x66,0x91,0x71, +0x21,0xf1,0x28,0x2b,0x86,0xe1,0xab,0xa4,0xa5,0x40,0x9e,0xeb, +0x53,0xe8,0x97,0xad,0x2e,0xbc,0xc0,0xf8,0x7b,0x9c,0xf4,0xf6, +0xf2,0xa4,0xeb,0xb3,0x53,0x58,0x42,0x32,0x8b,0x32,0x8b,0x33, +0x4a,0x38,0x18,0x81,0xbb,0xa2,0x1d,0xde,0xfd,0x81,0x71,0xd8, +0xa9,0x7f,0x48,0xcb,0x34,0xba,0x8d,0xb7,0x0a,0xb2,0x08,0x36, +0x0f,0xe5,0xce,0x17,0x9c,0x2d,0x2a,0x9e,0xd7,0x0d,0xaf,0x0e, +0xe2,0xab,0xb0,0x00,0x16,0x0e,0xae,0x62,0x0b,0xba,0x8b,0xc6, +0xb2,0x46,0xf4,0x72,0xf8,0x50,0x1d,0x9f,0xfd,0x9e,0x27,0x38, +0x3c,0xa6,0x07,0x9a,0xb8,0x00,0xe7,0xea,0xc1,0x5c,0x33,0xc6, +0x39,0xce,0x2d,0xce,0x43,0xc3,0x38,0xd4,0x28,0xcc,0x28,0x22, +0x4d,0x8f,0x6f,0x4f,0x6b,0x4f,0x6f,0x53,0x84,0xbe,0xe9,0xb4, +0x7f,0xf7,0x81,0x06,0x73,0xfe,0xb3,0xbb,0xcd,0x5f,0x28,0x60, +0x41,0xab,0xa2,0x39,0xb3,0x29,0x3b,0x2e,0x8e,0xaf,0x34,0x56, +0xa4,0xd1,0x47,0xba,0x3a,0x0e,0x0e,0x8d,0x41,0x59,0x1f,0x96, +0x81,0x8d,0x3d,0x5b,0x54,0x58,0x50,0x9c,0x47,0x3d,0xeb,0xef, +0x0c,0xce,0x88,0x5d,0x14,0xb1,0x4f,0xe3,0x78,0x54,0x78,0x98, +0xee,0x7c,0x8a,0xf1,0x74,0xd5,0x1e,0x30,0x9f,0x96,0x56,0x7c, +0x9d,0xae,0x99,0xfa,0x71,0x02,0xcc,0x38,0x07,0xab,0xb9,0xc7, +0x81,0xd0,0x49,0x42,0x7a,0x82,0x3a,0x4e,0x76,0x1a,0x9f,0xe4, +0xf3,0x4d,0x95,0xe6,0x0a,0xba,0xfa,0x75,0x3f,0x22,0x1b,0xf0, +0x97,0x4f,0x59,0x4a,0x0e,0xe7,0x93,0xf7,0xf0,0x97,0x2f,0x59, +0x78,0x07,0x07,0x48,0x38,0xbb,0xd5,0xc7,0x75,0x85,0x91,0x46, +0x91,0xc5,0x40,0x69,0x5d,0x69,0x41,0xb1,0x7a,0x62,0x72,0xfc, +0xd9,0xe4,0x68,0x60,0x37,0xf2,0xe5,0x2d,0x4b,0x6e,0x85,0x27, +0x47,0x9d,0x3b,0x15,0xa1,0x1e,0x11,0x1e,0x13,0xaf,0xa6,0x28, +0x4a,0x2e,0xef,0x99,0x97,0xc1,0x4a,0x31,0xd4,0x36,0x2a,0xcb, +0x59,0x1d,0xe2,0xac,0x0b,0xc2,0xea,0x0e,0x8c,0x66,0x0b,0x0a, +0x73,0x8a,0x32,0x0b,0xf4,0xa9,0xea,0x7a,0xfa,0xba,0xb8,0xb9, +0x51,0x7f,0xc8,0x34,0x64,0x9d,0x2c,0x75,0xaf,0xf0,0x57,0xaa, +0x1b,0xfb,0x96,0xf8,0xe4,0xf8,0xe5,0xf8,0xa9,0x63,0xb8,0x99, +0xb0,0xf0,0x04,0xfe,0x6e,0x06,0xbf,0x1f,0x15,0x37,0x98,0xfd, +0xb1,0xa8,0x83,0xd9,0x8e,0x4b,0x88,0x65,0xad,0x45,0xa9,0xac, +0xc4,0xc9,0x91,0xef,0xf1,0x6a,0x71,0x6f,0x75,0xe4,0x46,0x44, +0x86,0xe8,0xe7,0x1b,0x57,0xda,0xb4,0x74,0xb5,0xb5,0xf4,0xd6, +0x5d,0xb0,0x2a,0xe7,0x5d,0x0d,0x6d,0x4d,0x4c,0xad,0x9c,0xba, +0x7d,0xc6,0xc2,0x3f,0xe4,0xa0,0xa3,0x0b,0x7b,0x99,0x38,0x65, +0x5c,0x4e,0xce,0xbc,0x3e,0x6d,0x3d,0x56,0x7e,0x4e,0x7e,0x2e, +0x48,0x03,0x93,0x7b,0x98,0xab,0x89,0xa3,0xc9,0xbd,0xe9,0x14, +0xc3,0x2d,0x0d,0xc4,0x45,0x51,0xb8,0xfd,0x4c,0xaa,0x29,0x7f, +0xfd,0xdc,0x25,0x8a,0xa3,0x39,0x53,0x0c,0x30,0x81,0x13,0xac, +0x93,0xdd,0x31,0xfb,0x37,0xec,0x0b,0xa9,0x01,0x5c,0x32,0xdc, +0x5c,0x53,0x72,0x85,0x4b,0xc6,0x79,0xb8,0xde,0x62,0x80,0x09, +0xf7,0x08,0x76,0x0b,0xa0,0x56,0xa1,0x99,0x09,0x3e,0x23,0x3f, +0x1d,0xa4,0xe1,0x1f,0x1b,0x71,0xc6,0x6d,0x3e,0x6e,0x91,0x1a, +0x84,0x61,0x23,0x33,0x56,0xa8,0x6c,0x4b,0xd2,0x4c,0x2c,0x3a, +0xd7,0x58,0x37,0x0f,0xb3,0x98,0xe4,0xec,0xe4,0xac,0xa4,0x2c, +0x0e,0xd2,0xda,0xf0,0xdd,0x71,0x26,0x25,0xe1,0x5c,0xca,0x69, +0x0d,0xd0,0xdf,0x99,0xdf,0x8e,0x47,0x6f,0x05,0x27,0xc5,0x9c, +0x89,0x0c,0x57,0x8f,0x0c,0x53,0x8b,0x6e,0x83,0x0c,0x26,0x63, +0x6d,0xf9,0xae,0x96,0x13,0x3a,0x96,0x07,0x1d,0x76,0x78,0x95, +0x1a,0xf1,0x77,0x2b,0xae,0xd7,0x5f,0xe8,0x68,0x31,0xeb,0x71, +0x1e,0x3a,0xd9,0x16,0x50,0x9f,0x90,0xd4,0x9b,0x0d,0x84,0x37, +0x29,0x52,0x9b,0x0d,0xcf,0x09,0xef,0x91,0x8e,0xff,0x87,0xb2, +0xf7,0x00,0xab,0xe2,0xea,0xfe,0x85,0xd5,0xc8,0xcc,0xa8,0x11, +0x8d,0x71,0x93,0x39,0x18,0x01,0x0b,0x2a,0xf6,0x2e,0xf6,0x5e, +0x11,0xe9,0xbd,0xf7,0x5e,0x15,0x51,0x10,0x01,0x45,0xec,0x22, +0x45,0x7a,0xef,0x20,0xbd,0xf7,0x0e,0xf6,0x1a,0x5b,0x34,0x31, +0xc6,0x98,0xc4,0x68,0x8a,0x26,0x26,0x6b,0x4e,0xd6,0x9c,0xfc, +0xbf,0x3d,0x58,0xf2,0xbe,0xf7,0x7e,0xdf,0xf7,0xdc,0xeb,0x79, +0x1e,0x1d,0x67,0xce,0x39,0xb3,0xea,0x6f,0xfd,0xd6,0x3e,0xb3, +0xf7,0xce,0x69,0xa9,0xca,0x2f,0xb0,0x2f,0xe0,0xc1,0x85,0x31, +0x0e,0xcb,0x08,0x48,0x0a,0x3a,0xb7,0x5b,0x76,0x29,0x2d,0x3c, +0x3f,0x2c,0x37,0x34,0x47,0x06,0x6e,0x8c,0xd9,0x81,0xec,0xbd, +0x69,0xbb,0x53,0xe8,0xc9,0xf4,0x83,0xd9,0xfb,0xf3,0x29,0xe4, +0x53,0x86,0x60,0x1f,0x58,0xe7,0x57,0xb6,0xbb,0xdc,0x43,0xd6, +0x56,0xe2,0x55,0xec,0x5a,0xec,0x9e,0x2b,0x03,0xa6,0x49,0x5c, +0xd3,0x0b,0x62,0x13,0x8a,0x9d,0xc2,0x8c,0x66,0x0c,0x67,0xb2, +0xb3,0x33,0xb2,0x93,0xb2,0x4d,0xa9,0x87,0x02,0x83,0x7c,0xfc, +0xfc,0x38,0x6c,0x61,0x2a,0x53,0x82,0xf2,0xfd,0x8a,0xf6,0xa5, +0xc9,0x2c,0x82,0xf2,0x83,0x32,0xf6,0xa5,0x05,0xcb,0x70,0xbf, +0x8d,0xc0,0x9b,0xe1,0xcf,0xb6,0xf0,0xb3,0x91,0x38,0xd7,0x16, +0x3e,0x63,0xfc,0x77,0xdb,0x7b,0xdb,0xed,0xe3,0xe4,0xaf,0x44, +0x15,0xd2,0x24,0xce,0x69,0x17,0xd6,0xd0,0x2f,0x6e,0x13,0x46, +0x34,0x88,0x23,0x9a,0x05,0xb5,0x06,0xf4,0x63,0x33,0xb3,0x52, +0xb3,0x12,0x33,0x28,0x66,0x1d,0xdc,0x13,0xec,0xe7,0xef,0xcf, +0x61,0x37,0xd3,0x9c,0x1e,0x9c,0xe7,0x5f,0xb8,0x3f,0x55,0x66, +0xba,0x27,0x2f,0x28,0x73,0x7f,0x2a,0xfd,0x62,0x7f,0x7b,0x61, +0xa4,0x0d,0xfe,0x65,0x0f,0x7f,0x59,0xd2,0x2f,0x16,0xe6,0x5a, +0x88,0x13,0x6d,0x05,0x86,0xf1,0xb0,0xc0,0x91,0x7b,0xf0,0xc4, +0xfe,0x54,0xda,0x61,0x66,0xe4,0xc2,0xa4,0xa2,0xfc,0xa7,0x5c, +0x1c,0x53,0xb0,0x18,0xe6,0xf8,0x41,0xde,0x9e,0x94,0x4e,0x1e, +0x4f,0x64,0xa0,0x4a,0xae,0x73,0x3b,0x27,0x05,0x5d,0x15,0xb9, +0x04,0x62,0x0b,0x8a,0xfd,0xc2,0x8c,0x16,0x8c,0x64,0x73,0x69, +0xd0,0x25,0xff,0x67,0xd0,0x35,0x53,0xda,0x2f,0x05,0xdd,0xbe, +0x74,0x99,0xc5,0x60,0xd0,0xa5,0xd3,0xa0,0x0b,0xb5,0x16,0x78, +0x03,0xfc,0xd9,0x1a,0x7e,0xd6,0x15,0xe7,0x5a,0xff,0x3d,0xae, +0x85,0x51,0xdc,0xc1,0x1d,0xa4,0xa9,0xb0,0xa5,0x3e,0xef,0xbc, +0x4d,0x19,0x1f,0xe0,0x63,0xe7,0x62,0x1b,0xc8,0xc9,0x4d,0x2f, +0x92,0x7a,0x8f,0x32,0xbf,0x2a,0xa7,0xd6,0x72,0xde,0xb3,0xda, +0xb1,0xc2,0x85,0xb2,0x3a,0x8d,0x49,0x24,0xa4,0x62,0x5f,0x49, +0xe0,0x79,0x83,0x10,0x3e,0xdf,0x2b,0xdd,0x2f,0x8d,0x16,0xc4, +0x0d,0x49,0x24,0xa2,0xfa,0x40,0xd1,0xbe,0xf3,0x86,0x07,0xf9, +0x4c,0xb7,0x24,0xff,0x44,0x37,0x4e,0xe8,0xc1,0x6a,0xd2,0x29, +0xae,0xb9,0x2c,0x7c,0xd2,0x2e,0x7e,0xd2,0x2f,0x8c,0x69,0x57, +0x54,0x5a,0xc0,0xdf,0x06,0x28,0x5a,0x80,0xb8,0x53,0x9c,0x6b, +0x26,0xc8,0x58,0x2f,0x03,0x1c,0xe1,0x83,0x31,0xc1,0xa9,0x26, +0x3c,0x9c,0xcb,0x85,0x99,0xb5,0x79,0xcf,0x24,0x4d,0xe7,0xc3, +0x52,0x17,0x48,0xdd,0x93,0xd2,0xcd,0x63,0x4c,0x16,0x92,0x12, +0xb7,0xfe,0xc1,0x8d,0xc3,0x9b,0x88,0x43,0xb8,0x7d,0xa4,0xdd, +0xe1,0xc1,0x3a,0x59,0x41,0xab,0xc4,0x88,0x1e,0x1c,0x01,0x93, +0x80,0x74,0x2f,0x65,0x73,0xda,0x73,0x2f,0xa7,0x0c,0x50,0xb4, +0x09,0x37,0xd8,0xb3,0xd1,0x5f,0x8f,0xc3,0x35,0x26,0x40,0x70, +0x92,0xf4,0x90,0xf3,0x68,0x07,0xc6,0xf1,0x84,0xeb,0x71,0x4f, +0x35,0xdb,0x28,0x9b,0x23,0x36,0xd1,0xb1,0xc6,0x7c,0xfd,0xd9, +0xfa,0xd8,0xba,0xb8,0xb0,0x99,0x5e,0x5b,0x76,0x6c,0xab,0xb1, +0xe7,0xef,0x3d,0xa8,0x79,0x9c,0x02,0x9f,0xb6,0x24,0x34,0x27, +0x36,0xd1,0x22,0xa1,0x2b,0xd8,0x90,0xb0,0x8e,0x03,0xcd,0xc1, +0xad,0x16,0x7b,0xf9,0x2c,0xab,0x54,0xdb,0x64,0x73,0x4e,0x18, +0x78,0x46,0xee,0xea,0xad,0xc7,0x78,0x4b,0xe1,0x61,0x1b,0x2b, +0xb6,0x68,0x11,0xbc,0x20,0xa4,0xc3,0x05,0x96,0xc2,0x61,0x1a, +0x01,0x5f,0x61,0x8e,0xf4,0xb8,0xea,0x2b,0xd8,0x48,0x70,0x3c, +0x54,0xc2,0x78,0x16,0x0f,0x2e,0x24,0xed,0xa0,0x6b,0xc1,0xc2, +0x7c,0xd4,0x21,0xe2,0x21,0x8c,0x17,0x0e,0x31,0x06,0x30,0x9b, +0x88,0x63,0xfa,0x84,0x31,0x8c,0x38,0x46,0x93,0x08,0x63,0x76, +0x89,0x63,0x18,0x5c,0x49,0x5b,0x3b,0xb9,0x66,0x87,0x42,0x93, +0xd2,0x40,0x5e,0x3e,0x84,0xb4,0x2a,0x6c,0x58,0xbf,0xc8,0xb3, +0xf9,0xea,0x15,0xf2,0xac,0x36,0x71,0xc6,0x80,0x8e,0xbe,0x38, +0x6a,0x09,0xbb,0xe5,0x7c,0xd4,0x80,0x9a,0xa5,0x13,0x41,0x4d, +0xf9,0x41,0xd0,0x64,0x15,0xeb,0xa7,0x93,0x1e,0xf9,0x47,0xc6, +0x2c,0xfe,0x83,0xaa,0x24,0x22,0x2f,0x2c,0x2f,0x34,0xdf,0x71, +0x2f,0x9f,0x1e,0x98,0xbc,0x27,0x71,0x0f,0xa5,0x17,0x18,0x40, +0xf0,0xe3,0x4b,0xaf,0x9a,0xa6,0x0d,0x00,0xdb,0xb2,0x89,0xc9, +0x28,0x4a,0xce,0x4f,0x2e,0xb6,0x49,0xe5,0x0f,0x7a,0x85,0xba, +0x05,0xfb,0x72,0x38,0xd7,0x1a,0x86,0xeb,0x4f,0xb3,0x7d,0xa5, +0x8b,0x23,0xac,0x61,0x04,0xca,0xda,0x40,0x06,0x1f,0x33,0x62, +0x11,0x98,0x12,0x94,0x85,0x2d,0xb6,0x5d,0xa1,0x56,0xef,0x7e, +0xbe,0x2f,0xe3,0xc2,0xb9,0x6b,0x32,0x18,0x87,0xa3,0x66,0x32, +0x69,0x96,0x4a,0x0f,0x99,0xea,0xe4,0xe4,0x4a,0x75,0x61,0x36, +0x55,0x55,0x7e,0x5b,0x9c,0x4b,0x7c,0x99,0xb0,0xa3,0x67,0x92, +0xd4,0x05,0x75,0x8c,0xb2,0xb8,0xc0,0x5a,0x9f,0x74,0x3e,0xee, +0xa1,0xa6,0x6f,0xd5,0xc7,0x1c,0x9e,0x12,0x64,0xb3,0x6b,0x6b, +0x9d,0x1b,0x7f,0xed,0x61,0x7e,0x6f,0x02,0x8c,0xe2,0x06,0x5a, +0x8d,0x98,0x53,0x15,0xa7,0x6a,0x9a,0x55,0x1f,0xe0,0x1b,0xc6, +0x3e,0xed,0x60,0x93,0x5a,0x05,0x53,0x9e,0x9a,0x54,0xad,0xfe, +0x07,0x6b,0x93,0xa1,0xa4,0xd0,0x02,0x6d,0x82,0x23,0xef,0xc1, +0x48,0x06,0x47,0xa3,0x05,0x39,0x9d,0x7f,0x2a,0xbf,0x50,0x15, +0x46,0xae,0xa1,0x16,0xd9,0x4a,0x41,0x55,0x5c,0xd3,0x0f,0x62, +0x2b,0x8a,0x3d,0xc2,0x8c,0x56,0x8c,0x64,0x72,0x73,0xfe,0x23, +0xc2,0x7d,0x7d,0xa5,0xa4,0xa5,0x11,0x5e,0xf0,0x3e,0xc2,0xf7, +0xbc,0x8b,0x70,0x2b,0x81,0x37,0xc6,0x9f,0xad,0xe0,0x67,0x03, +0x71,0xae,0x95,0x30,0x57,0x7c,0xd4,0x2f,0x3c,0x12,0xd6,0x30, +0x8a,0xdf,0x17,0x13,0xb8,0x5c,0x87,0x97,0x19,0xf9,0x55,0x15, +0xbc,0xe9,0x48,0x6b,0xb1,0x18,0xbe,0x98,0x34,0x8a,0x1f,0xd9, +0xb1,0x42,0x92,0x8a,0x30,0xae,0x51,0x1c,0xc7,0x88,0x5e,0x0b, +0x89,0x23,0x34,0xd6,0xb1,0xe0,0xa6,0xe2,0x08,0x17,0xeb,0x58, +0x31,0x8d,0x96,0xc7,0x3a,0x6c,0x74,0x64,0xe5,0x1d,0x2a,0x75, +0x78,0xd1,0x91,0x15,0x2d,0x28,0x01,0xa8,0x04,0x23,0xb7,0x5e, +0xd0,0xc7,0x5e,0xd4,0x67,0x85,0x01,0x95,0x4a,0x70,0x1c,0xfc, +0xef,0x6d,0xfa,0x5f,0x4c,0x7a,0x40,0xd0,0xe8,0x16,0x18,0x31, +0x42,0xc6,0x66,0xda,0xc4,0xdd,0xa2,0x8d,0x99,0xb2,0x70,0x37, +0x87,0xe0,0x34,0xad,0xf2,0x2b,0x9b,0xd4,0x2f,0xfc,0x58,0x49, +0x3b,0x7d,0x50,0xe6,0x6a,0x69,0xc4,0xcc,0x83,0x29,0xdd,0x38, +0x05,0x34,0x0c,0x50,0x03,0x27,0x99,0xc0,0x24,0x9c,0x87,0xbc, +0x09,0x24,0xb2,0xa1,0x9a,0xbe,0x0b,0xac,0xd7,0xd9,0xf5,0x7a, +0xdf,0xf6,0xff,0xd6,0x70,0x1f,0x5f,0x32,0xab,0x7a,0x79,0xf7, +0x0e,0x27,0x0b,0x73,0x07,0x5d,0x8f,0x32,0x63,0xfe,0x6a,0x55, +0x77,0x73,0x63,0x37,0xb7,0xe9,0x11,0x0c,0x73,0x84,0x05,0x13, +0x84,0xe1,0x4c,0xca,0x65,0x25,0x31,0x09,0x86,0x93,0x14,0x23, +0x25,0xda,0x6c,0x34,0x66,0x67,0x36,0xa8,0xcb,0xb5,0xf0,0xa4, +0x31,0x18,0x89,0x02,0x0b,0xd3,0x55,0x92,0xe9,0xf9,0x8f,0x99, +0x86,0x9c,0xcc,0x7a,0x75,0xf9,0x4c,0x8c,0x33,0x06,0x73,0x7a, +0xde,0x5c,0xe8,0x21,0x9e,0xf6,0xba,0x3b,0xf5,0x5d,0x8a,0x2d, +0xf8,0xfe,0x9a,0x2b,0x57,0x6b,0x3a,0x38,0xfc,0xa2,0x82,0xf8, +0xb8,0xe8,0xe8,0x18,0x7a,0x51,0x78,0xee,0x29,0xbf,0x7e,0xb5, +0xa2,0x89,0x83,0x78,0xd4,0x23,0x5e,0xd6,0xdb,0xb7,0xef,0x74, +0x2a,0xb2,0xe0,0x2f,0xd5,0xde,0xbc,0x5d,0xd9,0xc6,0x89,0x96, +0xb8,0x86,0xf4,0x57,0xdd,0xbd,0x55,0xdd,0xee,0xd1,0xcc,0xbb, +0x59,0xe9,0x6c,0xd7,0x71,0xa1,0xb0,0x64,0x2e,0x64,0x12,0x28, +0x17,0x3f,0x37,0x81,0x27,0x18,0xcc,0x0a,0x19,0xd6,0x04,0xbe, +0x12,0xa7,0x98,0xc0,0x8f,0x58,0xc8,0x22,0x6d,0x87,0xc8,0x66, +0xdb,0x2d,0xbe,0xf3,0x02,0xf3,0xad,0xf9,0x27,0x79,0x4f,0xca, +0x6f,0xb4,0x72,0xe2,0xde,0x6a,0xb2,0xc5,0x7e,0xb3,0xdf,0xbc, +0x00,0x5a,0x87,0xbe,0xcd,0x7f,0x5c,0x76,0xb3,0x99,0x2b,0x37, +0x25,0x2b,0x0d,0xe7,0xb9,0xe0,0x30,0xaf,0x1c,0x4b,0xfe,0x4d, +0xe9,0x1f,0x0d,0x5f,0x5f,0xe0,0x60,0x29,0xca,0xc8,0x9b,0x92, +0x37,0x0d,0x8f,0x2f,0x7a,0xd6,0xf1,0x2b,0x0c,0xe7,0x39,0xe3, +0x47,0xde,0x1c,0x7e,0xe2,0x4b,0x2c,0xd8,0xfd,0xd8,0x6b,0x02, +0xcd,0xec,0xee,0xf5,0x6b,0x9c,0xd0,0xc1,0x2b,0x9d,0x62,0xca, +0xbe,0xf2,0x97,0x17,0xf3,0xdf,0x70,0xe0,0x3e,0x97,0xd9,0x9c, +0x1f,0x7a,0x55,0x0d,0x86,0x32,0x2d,0x19,0xa9,0x6d,0xea,0x3f, +0xb0,0x46,0xa9,0xd2,0xe0,0xa6,0x12,0x1b,0x18,0x19,0x5b,0xa8, +0x0e,0x33,0x30,0x3d,0x8d,0xed,0x64,0x6f,0xd0,0x22,0x0b,0xa3, +0x74,0x71,0x94,0xb8,0xc8,0x44,0x58,0x84,0x9a,0x97,0x40,0x53, +0xd8,0xd8,0xcd,0x2a,0x43,0x98,0x5c,0x87,0xc0,0x5c,0x3d,0x9c, +0x8b,0x2a,0x86,0x70,0xbf,0x8f,0x05,0x87,0x01,0xa2,0x38,0x86, +0x8b,0xd8,0x54,0x6a,0xd0,0xc9,0x4c,0x6d,0xa6,0x34,0xbc,0x5f, +0x87,0xc7,0xcc,0x58,0x28,0x56,0x01,0x77,0x7a,0x69,0x8d,0x44, +0x42,0x60,0x26,0x53,0xff,0xee,0x52,0x8e,0x44,0x2c,0x46,0x12, +0xf7,0x95,0xba,0xb3,0x76,0xee,0xaa,0x76,0xe4,0xaf,0xdf,0xba, +0xfc,0xb2,0xea,0x29,0x47,0xe1,0x23,0x89,0xdc,0xb8,0x79,0xf9, +0x45,0xcd,0xb7,0xb6,0x79,0xbc,0xcb,0x2a,0xdd,0x39,0x3b,0xf5, +0xb9,0x83,0x18,0x4a,0x02,0xc2,0xfd,0x23,0xfc,0x23,0x0a,0x61, +0x4c,0x01,0x4c,0x4f,0x01,0x65,0xc3,0x04,0xfe,0x00,0xf2,0x01, +0xa8,0xed,0x83,0xe3,0x8d,0xf7,0x19,0x86,0x1a,0x85,0xa5,0xe8, +0xf3,0x30,0xa4,0xf0,0x55,0xd5,0x4f,0x4d,0x1c,0xae,0x7d,0x40, +0x0e,0xc1,0x88,0x03,0xc0,0xee,0x85,0x61,0xc6,0xe1,0x7c,0x36, +0x0e,0x49,0x41,0x26,0x01,0x47,0x70,0x72,0x13,0xd8,0x4c,0x1c, +0xe6,0xe9,0x4c,0xdf,0xb2,0xab,0xda,0x9e,0xbf,0x7b,0xe7,0xda, +0xef,0xf5,0x94,0xc4,0xfe,0x92,0x41,0x2c,0xa6,0xae,0xd3,0x58, +0xba,0xba,0xca,0x91,0xff,0xe9,0xbb,0x3b,0x30,0xac,0xed,0x0d, +0x75,0x99,0xa3,0xfc,0x21,0xd1,0x5b,0x8b,0x8c,0x01,0xc6,0x5a, +0x64,0xd0,0xc6,0x71,0x6c,0xd1,0x8b,0xc2,0x5b,0x65,0x9c,0x35, +0xdc,0x6c,0x60,0xef,0x78,0xbf,0x08,0x00,0x65,0xff,0xf4,0x1e, +0x1e,0xe3,0x3a,0x90,0x0c,0xec,0xba,0xc7,0xe1,0x26,0x9c,0x45, +0x6e,0x97,0x35,0xd7,0x14,0xb4,0x53,0xc8,0x2e,0xb4,0x68,0x75, +0xbe,0xef,0xc9,0x89,0x66,0xd3,0x08,0x2e,0x17,0x00,0x96,0xb3, +0x62,0x1b,0x8e,0x22,0x77,0x84,0xc8,0x0d,0x2c,0xfe,0x8e,0x8b, +0x08,0x3e,0xc0,0xd9,0x6c,0xaa,0x85,0x12,0x10,0xa6,0x3d,0x4d, +0xea,0x3d,0xff,0x47,0x9c,0x68,0xc6,0xca,0x0b,0x55,0xe8,0x85, +0xc5,0xac,0x34,0x28,0x37,0x91,0x69,0xc9,0x7c,0x7b,0x41,0xd3, +0x8c,0xc5,0x03,0x47,0xc8,0x96,0x5d,0x9b,0x9d,0xb5,0x9c,0x8b, +0x2d,0xf9,0xe7,0x95,0x4f,0x3a,0x6e,0x5c,0xe4,0x84,0x39,0xb5, +0x64,0xf3,0xae,0x8d,0xce,0x33,0x9c,0x29,0x51,0x7e,0x51,0xf9, +0x5d,0xc7,0xcd,0x8b,0x9c,0x38,0x5b,0x97,0x2c,0x5f,0xb1,0xc8, +0x14,0x3f,0xb1,0xa0,0x81,0x0a,0x63,0xbb,0x5e,0x0d,0x3c,0x7c, +0xc4,0x09,0x73,0xeb,0x89,0xf6,0x8a,0x85,0xa6,0x38,0xce,0xa2, +0xc0,0x42,0x9a,0x3e,0xfd,0x6a,0xe0,0xd1,0x43,0xaa,0xa2,0x16, +0xf4,0x11,0xe3,0x83,0x26,0xe1,0x26,0x91,0xdc,0xe9,0xa2,0x53, +0xc5,0xe7,0x55,0x5b,0x81,0xef,0x46,0x9e,0x36,0x1a,0x9a,0x3d, +0xb3,0xd8,0x5c,0x4a,0x58,0xd3,0x24,0xc2,0x1a,0x46,0x09,0xab, +0x2f,0x25,0xac,0xc6,0xc6,0xa0,0x49,0xfb,0x0c,0x1a,0xc4,0x9f, +0xdb,0x32,0xae,0x27,0x3c,0x8e,0x7b,0xab,0x99,0x1f,0x32,0x8f, +0x32,0x8f,0x8e,0x33,0xe2,0x9b,0x63,0x5b,0xe2,0x5a,0xe2,0xc3, +0x66,0xba,0x6f,0x5d,0xb7,0xad,0xca,0x96,0x7f,0xfa,0xa0,0xfe, +0x9b,0x34,0xf8,0xb4,0x2f,0xb1,0x3f,0xb9,0x2f,0x8d,0xc3,0x20, +0x41,0x97,0x1c,0x68,0x0f,0x79,0xcb,0x35,0x73,0xac,0xd3,0x6c, +0xa5,0x3e,0xc3,0xfc,0x36,0x11,0x57,0xb3,0xbe,0xe5,0xce,0x86, +0xeb,0x37,0xe8,0x5a,0xcb,0x2a,0xad,0x06,0x5a,0xae,0x5e,0x6f, +0x1c,0x90,0xe1,0x45,0x9c,0x37,0x38,0x60,0x3b,0x91,0x69,0x4a, +0x97,0x16,0x5a,0xa9,0xc3,0x50,0x63,0x16,0x32,0x55,0x40,0x5f, +0x5c,0xc0,0xf8,0x9f,0xb7,0x33,0xd8,0xbc,0x79,0xbb,0x85,0xac, +0xc2,0xf2,0x42,0xcb,0xb5,0x1b,0xcd,0x7d,0x32,0xbc,0x21,0x99, +0x72,0xf0,0xfd,0x75,0x19,0x6f,0xdf,0x7f,0x92,0x85,0x29,0xf8, +0x1b,0xd9,0x73,0xc9,0xf9,0xa9,0x77,0x8f,0x55,0x00,0x5f,0x6a, +0x58,0xb3,0x34,0x77,0x07,0x87,0x07,0x0a,0xc9,0x9e,0xab,0x4e, +0x4f,0x7d,0x3a,0x2d,0x03,0xf8,0xf3,0x86,0x35,0x2b,0x73,0xb7, +0x50,0x2b,0x6c,0x94,0xdf,0x27,0x86,0xdb,0xf0,0x8a,0x05,0x5c, +0xd9,0x80,0xed,0x96,0xd0,0x1e,0xc6,0x84,0x9d,0x08,0x3b,0x1e, +0xae,0x36,0xe5,0xc0,0xe4,0x70,0xfc,0x28,0x2a,0xce,0x8c,0xff, +0xed,0xdc,0x9f,0x89,0xcf,0xd2,0x76,0xbb,0x5a,0x06,0xcc,0x0b, +0x29,0xb6,0xe1,0x71,0x9e,0x19,0x3c,0xc5,0xaf,0x70,0x16,0x93, +0x6a,0xfe,0xc1,0x83,0xc2,0x70,0xdc,0xcf,0xc2,0xba,0x86,0xb2, +0xdb,0x30,0x54,0x15,0x8c,0x4e,0x13,0x68,0x6f,0xc3,0xf6,0xfb, +0x70,0xa3,0x1d,0x6f,0xdc,0x30,0x10,0xf5,0xfa,0x6f,0xc3,0x9d, +0x76,0xbc,0xc3,0x40,0x10,0x5a,0x12,0xfa,0xe1,0x45,0x6c,0x9a, +0xf9,0x07,0x2f,0x0b,0xc3,0x3f,0x78,0x59,0x77,0xb3,0x13,0xf5, +0xb2,0x05,0xff,0xbc,0xea,0x49,0xe7,0xa0,0x97,0xeb,0xc8,0x26, +0xdd,0x8d,0x4e,0x33,0x9c,0x8b,0x2c,0xf9,0x17,0x55,0xdf,0x75, +0x0e,0x7a,0x79,0x27,0x59,0xbe,0x5c,0xf2,0xb2,0x79,0xa1,0xf4, +0x98,0x6a,0xf7,0xab,0x8b,0x0f,0xbf,0xa2,0x5e,0xae,0x23,0xda, +0xcb,0xa9,0x97,0x3f,0x1d,0x3c,0xfb,0x69,0xcf,0xab,0x8b,0x8f, +0x1e,0x71,0xca,0xf2,0x65,0xf2,0xa3,0x24,0x27,0x27,0x33,0x2f, +0x3d,0x57,0x3f,0x9b,0xdf,0xef,0xb7,0xc7,0xc7,0xd7,0x4b,0x1a, +0x3a,0xe9,0x94,0x9e,0x83,0xcd,0xdf,0x9b,0x29,0x33,0xde,0x93, +0x13,0x94,0xb5,0x27,0x7d,0x8f,0x0c,0x93,0x2c,0xfe,0x1e,0xd7, +0xce,0xe8,0x2d,0x21,0x86,0x98,0x82,0xf3,0x98,0x14,0x4b,0x49, +0xbe,0xc6,0x74,0x5a,0xe4,0xc4,0x1d,0x56,0xa4,0x26,0x29,0xb5, +0x52,0x1d,0x4e,0x88,0xaa,0x78,0xa1,0x17,0x92,0xa1,0x14,0xed, +0x90,0x65,0xd3,0xac,0x95,0x20,0xfb,0x67,0xd2,0x0b,0xd6,0x46, +0x0c,0xfa,0xe3,0x47,0xc4,0x22,0x4b,0x2f,0xdd,0x2c,0x29,0xd4, +0x89,0xef,0x09,0xef,0xdd,0xd7,0xbe,0x8f,0x4b,0x35,0x26,0x56, +0x59,0x7a,0x19,0xa6,0x49,0x21,0xd2,0xa9,0xbe,0x7d,0x6d,0xc1, +0x5c,0x3e,0xce,0x26,0x58,0x84,0x73,0xd9,0x54,0x2b,0xc9,0x7a, +0x6d,0xe9,0xe9,0xcd,0xea,0x70,0x59,0x9c,0x68,0xc1,0xca,0x8b, +0x55,0xe8,0x85,0xa5,0x6c,0x9a,0xd5,0xa0,0xf7,0xb3,0xdf,0x5e, +0xd0,0xb4,0x60,0x31,0xe4,0x18,0xd9,0x62,0xb1,0xd9,0x73,0x86, +0x77,0x81,0x15,0xff,0x53,0xe9,0x93,0xfa,0xeb,0xed,0x9c,0xb0, +0xa0,0x86,0x6c,0xb6,0xd8,0xf4,0xfe,0xdc,0xd3,0xfa,0xeb,0x1d, +0x9c,0xa8,0x65,0x4a,0xb4,0xb7,0x2e,0xb2,0xc7,0xb1,0x8e,0xf9, +0x96,0xd4,0x32,0x8d,0xaf,0xda,0x1f,0xde,0xe0,0x84,0xf9,0x35, +0x64,0xf9,0xd6,0x85,0xf6,0x38,0xce,0xb1,0x80,0x9e,0x1d,0xd7, +0xf8,0x5b,0xfb,0xa3,0x1b,0xd4,0x32,0x9f,0xca,0xa3,0x89,0xf8, +0x09,0xeb,0x96,0xee,0xa3,0x6d,0x39,0xcf,0x64,0x87,0x0c,0x8e, +0xe1,0x17,0xa2,0x5b,0x13,0x44,0x37,0xa1,0x6f,0x03,0xf8,0xb6, +0x0c,0xfe,0xdd,0x81,0x3a,0xce,0x6c,0xa2,0xa5,0xd2,0x79,0xa6, +0xf4,0x5c,0x5a,0x89,0x3a,0xcc,0x62,0x8b,0xbc,0x2f,0xde,0x6e, +0xa3,0x42,0xc8,0x10,0x51,0x99,0x4d,0x35,0x51,0xfa,0x93,0xa9, +0xca,0x78,0x0b,0x6b,0x56,0x94,0xe0,0x04,0xa9,0xc0,0x32,0xf1, +0x13,0xc6,0x31,0xcb,0x67,0xa1,0xe5,0x0c,0x33,0x7d,0x59,0xa5, +0x4b,0xdf,0xdd,0xf6,0x57,0xc5,0x4f,0x65,0xe2,0xc7,0x38,0x5e, +0x7a,0x3b,0x45,0xdd,0x9a,0x77,0xef,0xf7,0x66,0x15,0xb3,0x8e, +0x11,0x0b,0x61,0x7e,0x3b,0x0b,0x72,0x1c,0x41,0x02,0x57,0xd8, +0xcc,0xb6,0xd2,0xab,0x76,0xe5,0xbb,0xbe,0x68,0x7a,0x51,0x48, +0xf1,0x70,0x5e,0x02,0x11,0x47,0xa0,0x36,0x83,0xc1,0x51,0xa8, +0x61,0x87,0x6a,0x6a,0x4d,0x4e,0x35,0xf0,0x59,0x2a,0x4c,0x3e, +0x05,0x87,0x64,0xf0,0x80,0x69,0xd9,0x40,0x3a,0x6f,0x35,0xbf, +0x28,0xfc,0xce,0x3e,0x83,0x0f,0x58,0x49,0x3f,0xac,0xcf,0x19, +0x7c,0x4d,0xad,0xfb,0x27,0x14,0x49,0x3f,0x16,0x97,0x92,0x26, +0x9c,0x68,0xcb,0x7c,0x07,0x13,0x49,0x0b,0x4e,0xb4,0x66,0xbe, +0xa7,0x07,0x1d,0x38,0xd1,0x9c,0x51,0x06,0x99,0xa0,0x4d,0xe0, +0x35,0x0c,0x61,0x83,0x6d,0xfc,0x5d,0x9d,0x3d,0xcb,0x7d,0xf8, +0x8c,0xb4,0xb4,0x8c,0x94,0x4c,0xee,0xba,0x21,0x4e,0xb5,0xa7, +0xe6,0x3f,0xe0,0xe8,0xe0,0xbf,0xc4,0x2b,0xdb,0x99,0xbf,0x9a, +0xdb,0x5a,0x94,0x5f,0x74,0x36,0x36,0xe6,0x44,0xdc,0x51,0xd0, +0x58,0xc9,0x17,0x54,0xe3,0xd8,0x5b,0x87,0xcf,0x1e,0x3a,0x15, +0x49,0x7b,0xbe,0xc8,0xe8,0x33,0x71,0x49,0x71,0xc9,0x31,0xe9, +0x32,0xd0,0x6a,0x40,0xcd,0x3e,0x18,0x55,0x87,0x4e,0x4c,0x7c, +0x72,0x2c,0x7d,0x79,0x27,0xf3,0x90,0xdc,0x22,0x6e,0x16,0xf5, +0x84,0x95,0x2d,0x8c,0x30,0x15,0x2a,0xc9,0x56,0x26,0xfc,0xd8, +0xe9,0x73,0xea,0xaf,0x30,0x8a,0x5d,0x10,0xe1,0xbb,0xce,0x43, +0x2d,0xdb,0xf9,0x71,0x59,0x51,0xc7,0xa9,0x2b,0x32,0x98,0xb2, +0x95,0xf1,0x48,0x89,0xa8,0x57,0x7b,0xc0,0x54,0x26,0xa5,0x94, +0xaa,0xb7,0xb1,0x56,0xa9,0x4a,0x27,0x70,0x2a,0xf5,0x90,0x0d, +0xdc,0x61,0xfc,0x3d,0x1d,0x3d,0x4d,0x7c,0xac,0xf2,0xec,0x8b, +0x1c,0xcb,0xdd,0xbd,0xf8,0x0a,0xef,0xaa,0x80,0xba,0xdd,0xb6, +0xfb,0xcc,0xf6,0xeb,0x1f,0xcc,0xb0,0xe1,0x6f,0xa5,0x5f,0xcb, +0xed,0x2d,0xbe,0xe8,0x77,0x3b,0xe8,0x49,0x70,0x6a,0x0b,0xbf, +0x25,0xcd,0x20,0xdd,0x3c,0xab,0xb7,0xb2,0xa9,0xbe,0xa8,0x85, +0x13,0x4f,0xe2,0x43,0x82,0x25,0x38,0x87,0x4d,0xb5,0x7c,0x1b, +0x6f,0x19,0x4d,0xea,0x70,0x5d,0x9c,0x68,0xce,0xca,0x8b,0x54, +0xe8,0x85,0x25,0x6c,0xda,0x60,0xa4,0x37,0x67,0xbd,0xbd,0xa0, +0x69,0xce,0x62,0xe8,0x71,0xb2,0xc5,0x4c,0x8a,0xb7,0xc2,0xb7, +0xf1,0x76,0xa3,0x93,0x13,0xe6,0xd5,0xd0,0x73,0x9b,0x3c,0xa7, +0x4b,0xf1,0xf6,0xa2,0xf4,0x69,0xc3,0x0d,0x1a,0x6f,0xb3,0x4c, +0xc9,0xf2,0x2d,0x8b,0xec,0xf0,0x13,0x07,0x7a,0x52,0x8a,0xb7, +0x8e,0xc1,0x78,0xab,0x25,0xda,0xd2,0xd9,0x71,0x0e,0xf9,0x56, +0x52,0xbc,0xbd,0xea,0x90,0xe2,0x0d,0x1a,0xe5,0x9f,0x92,0xfb, +0xb0,0xa1,0x15,0x37,0xdc,0x30,0xde,0x8a,0xcb,0xac,0x60,0xd9, +0x5a,0xdc,0x69,0x29,0x6c,0x6d,0x63,0x05,0x1d,0xb1,0x91,0x24, +0x24,0xc4,0xa4,0x64,0xa8,0xca,0xe7,0xa1,0xa7,0x29,0x2c,0x5c, +0xc8,0x7a,0x95,0xf8,0xdb,0x5b,0x1a,0x59,0x39,0xcb,0x0a,0x6d, +0x5a,0x6a,0xda,0xbb,0xce,0xb7,0xc9,0xd0,0x9d,0xf5,0x2a,0xf5, +0xb5,0x32,0xd7,0x37,0xb1,0x95,0x15,0x5a,0x77,0x34,0xf5,0x0c, +0x94,0x75,0xc8,0xb0,0x09,0x55,0xd8,0x04,0x33,0x25,0xca,0x16, +0x13,0xe2,0x4e,0x9d,0x8e,0x53,0x5f,0x2e,0x86,0xb1,0xfe,0xe1, +0xe7,0xf2,0xd5,0x61,0x03,0x8c,0xed,0x10,0xad,0xcd,0x81,0x65, +0xa3,0x35,0xdc,0x74,0xb4,0x8d,0xaa,0x2d,0xf9,0xdf,0x6e,0x57, +0x7e,0x15,0x07,0x63,0xb9,0xd7,0xb8,0x8d,0xd1,0x2d,0xdd,0xdb, +0xad,0x46,0x69,0x78,0x43,0x46,0x4a,0x9d,0xfa,0x13,0x16,0x7f, +0x13,0x7e,0x25,0xfe,0xf6,0x56,0x66,0x36,0xae,0x85,0xd6,0x7c, +0x73,0x4d,0x7b,0xfb,0x79,0x4a,0x7c,0x3c,0xd9,0x80,0x7c,0x7f, +0x5b,0xfd,0x2d,0x36,0x1e,0xf4,0x96,0xf5,0x65,0xbd,0x03,0x65, +0xed,0x32,0x6a,0xb3,0x71,0xec,0x39,0x8a,0x5e,0x4a,0x4c,0x7d, +0x5a,0x7a,0x95,0xba,0x7c,0x21,0xba,0x9a,0xc2,0xbc,0x59,0xac, +0xf8,0x1d,0x02,0xe9,0x89,0xfd,0x29,0xb5,0x27,0xfd,0x58,0x0b, +0xbf,0x27,0x3a,0xe0,0x88,0x7f,0x34,0xf7,0xed,0x9d,0xa6,0x0d, +0xb7,0x2c,0x36,0xaf,0xb5,0xbd,0x3f,0x87,0xf5,0x8b,0xf6,0x3b, +0x16,0x70,0x8c,0x13,0x36,0xbd,0x21,0x83,0x27,0x37,0xda,0x7e, +0x31,0x57,0xdb,0x06,0xbc,0x9b,0xb5,0x9f,0x53,0x5a,0x71,0x5d, +0x48,0x21,0x07,0x13,0x8f,0x1c,0x8f,0x08,0x8f,0x3a,0xcc,0x47, +0x37,0xc1,0xaa,0x16,0x5c,0x05,0x9a,0x4c,0x77,0x7c,0x57,0x62, +0x4b,0xf2,0x9e,0x26,0x7e,0xba,0x2f,0xf2,0x21,0xc8,0x44,0xd1, +0x8e,0xbd,0xfd,0x4c,0xe7,0xd9,0x8e,0x38,0x0e,0x27,0xe2,0x66, +0x6b,0x58,0xc0,0xfa,0x1a,0xeb,0x99,0xac,0xb2,0xcb,0xa6,0x7e, +0xe9,0xee,0xe9,0x3e,0x77,0x9b,0x76,0xec,0xcb,0xbb,0x80,0x63, +0xce,0x9e,0x3e,0x13,0x73,0x54,0x8d,0xf2,0x47,0xb6,0xb8,0x5e, +0x49,0x70,0x12,0xe6,0x90,0x60,0x57,0x3f,0x17,0x1f,0xbf,0x2a, +0x4f,0xbe,0xb4,0xe8,0x7c,0x5d,0x56,0x35,0x37,0x5f,0xd4,0x20, +0x45,0x7b,0xab,0x4f,0x9c,0xab,0xcd,0xfd,0x8e,0xb7,0xcb,0xdf, +0x33,0x5f,0xbf,0x6f,0x0f,0x0c,0x39,0x01,0xb6,0x32,0xfc,0xcb, +0x08,0x7a,0x99,0xd3,0xb8,0xf2,0x3c,0xf2,0x37,0xcc,0x38,0x31, +0x1e,0x3c,0x48,0xce,0xf9,0xac,0xaa,0xb4,0x2a,0xeb,0x1c,0xfe, +0xa0,0xe7,0x5e,0xe7,0x20,0x6f,0x4e,0x78,0xae,0x18,0x4f,0x74, +0x2f,0xf8,0x02,0x81,0xc3,0xaa,0xa8,0x04,0x15,0xe6,0x58,0xb1, +0x8e,0x36,0xe0,0xd9,0x29,0x59,0x29,0x19,0x69,0x81,0x75,0xbc, +0xad,0xb3,0xb1,0xd7,0xae,0xbd,0xe9,0xd6,0x7c,0x56,0x5c,0x56, +0x42,0xd6,0x39,0x0e,0x75,0xb6,0x99,0x5c,0x67,0x8f,0xe2,0xfa, +0xdd,0x38,0x7e,0xd3,0x8c,0x3a,0x27,0xfe,0x01,0x30,0x85,0xa0, +0x11,0x03,0xbb,0xb8,0x7b,0xa2,0x5e,0x87,0xa0,0x77,0x89,0x39, +0x85,0x4e,0x55,0x38,0xfb,0xbe,0x7e,0xc9,0x9e,0xf2,0xd3,0x09, +0xf5,0x59,0xcf,0x78,0xdb,0x5c,0x25,0xc5,0x97,0x02,0x90,0x8c, +0x80,0x0c,0xcf,0x24,0xbf,0xc6,0x6c,0x3e,0xbc,0x74,0x7f,0x69, +0x48,0x01,0x27,0x37,0x5e,0x45,0x4a,0xfc,0x6b,0x9c,0xf2,0x3c, +0x2b,0x2b,0xf8,0xdd,0xe7,0x9d,0xeb,0x3d,0x0b,0xb9,0x26,0x1c, +0x20,0x7b,0xdd,0xfc,0xdc,0x7c,0xfc,0x2a,0x3d,0xf9,0xf3,0x85, +0xc5,0x75,0xd9,0x55,0x9c,0xa2,0x4f,0x5c,0x4a,0xba,0xa1,0x50, +0x18,0x8a,0x0f,0xc5,0x65,0x2c,0x4c,0x84,0x0c,0xb2,0xf4,0xaf, +0x27,0x4c,0xab,0x06,0xf9,0xeb,0x99,0x06,0x2b,0xfc,0xae,0x47, +0xf6,0x94,0x39,0x37,0x78,0x15,0x79,0xb8,0xf3,0xc5,0xfe,0x55, +0x0e,0xf9,0x6e,0x9c,0xc2,0xb4,0x8d,0x20,0xbb,0x54,0x5a,0x97, +0x48,0xa6,0xf2,0x0c,0xd9,0x85,0xb4,0xf3,0x58,0x2d,0xdc,0x23, +0x5d,0x78,0x98,0xbd,0xdb,0x7a,0xa3,0xeb,0xc2,0x80,0x7d,0x15, +0xbf,0x76,0xdd,0x92,0xed,0x33,0x8d,0x38,0x1c,0xfb,0x04,0x8e, +0x77,0xe2,0xf1,0x5b,0x7a,0x9b,0xb1,0xcc,0x0c,0xca,0x96,0xe2, +0x6b,0x53,0x61,0x33,0x83,0xe3,0x77,0xe1,0x74,0x4a,0x86,0xdd, +0x32,0x4d,0xf8,0xc7,0x99,0x8f,0x73,0xbf,0x2a,0xe2,0x5c,0x59, +0x9d,0x82,0xe0,0x2f,0xd4,0x04,0x2d,0xca,0x02,0x33,0xea,0xd4, +0xfb,0x58,0xdd,0x64,0xa5,0xd5,0xa2,0x1a,0xeb,0x7e,0x28,0xb6, +0xf8,0xb8,0x3a,0xcc,0x8d,0x87,0xa5,0x85,0x30,0xb9,0x39,0xb0, +0x8d,0x47,0x15,0x3b,0x9c,0xe6,0x8b,0x0b,0x0e,0x71,0xe7,0xd8, +0x87,0xa5,0x0f,0x2a,0xee,0xd4,0x71,0xa2,0xb2,0x42,0x83,0xb4, +0x0a,0xe5,0x56,0x97,0xe0,0x8d,0x42,0x0b,0xdf,0xb0,0xc2,0x4b, +0xd8,0x4b,0xc4,0xf2,0x7b,0x42,0x39,0x23,0x96,0xe3,0x58,0x22, +0x94,0xaf,0x16,0xcb,0x19,0x65,0xb9,0xae,0x7c,0x1e,0xb9,0x53, +0x7f,0xad,0xa9,0xb7,0xdd,0xa9,0x98,0xdf,0xa8,0xbb,0xdc,0x68, +0x8e,0x15,0x87,0x9f,0x5e,0x87,0xc3,0xad,0x78,0xb8,0x7f,0xa7, +0x01,0x96,0x5b,0x41,0xf9,0x36,0x7c,0x4d,0xd3,0x8e,0x41,0x15, +0x63,0xd4,0xb2,0xc7,0xb5,0xde,0x29,0xd6,0xfc,0x37,0x69,0xdf, +0x66,0x3f,0x2e,0xe0,0x5c,0xd8,0x1d,0x59,0x7b,0xef,0xa9,0x09, +0x33,0x98,0x86,0xe4,0xf4,0x6a,0xf5,0x7a,0x56,0x3f,0x49,0x69, +0xa7,0xc8,0xb3,0xee,0x87,0xcf,0x96,0x9d,0x50,0x87,0xe5,0x49, +0xb0,0xb8,0x08,0x64,0x65,0x41,0xf5,0x3c,0x8e,0xf1,0xc2,0xe9, +0x7e,0xb8,0x22,0x9c,0xcb,0x60,0xbf,0x2c,0xb8,0x57,0x7a,0xbb, +0x82,0x83,0xa7,0x6d,0xcc,0x11,0x31,0x93,0x88,0x06,0x5e,0x4a, +0x97,0x58,0x61,0x52,0xc9,0x91,0x56,0x71,0x82,0x8f,0x12,0xe5, +0xc7,0xca,0x49,0xc0,0xa4,0xfe,0x94,0xe3,0xdf,0xc4,0xe3,0x46, +0x47,0x3c,0x18,0x82,0x89,0x61,0x89,0x56,0xfc,0xcb,0xd8,0x5f, +0x62,0x5f,0xc4,0x73,0x46,0x2c,0xbe,0xf0,0x3f,0x6b,0x0d,0xdf, +0x17,0x28,0xe9,0xb2,0xa8,0x08,0x88,0xb1,0x04,0x79,0x81,0x92, +0x1f,0xbb,0xa1,0x78,0xdf,0x75,0x35,0x78,0xc9,0xb4,0x67,0x65, +0x34,0xab,0x37,0x49,0xd6,0xda,0x8c,0x3f,0xb0,0x6e,0x87,0x12, +0xca,0xd4,0x4b,0x59,0xc1,0xac,0x4c,0x49,0xf9,0xb6,0xe0,0x42, +0x7e,0xc8,0xf8,0x2e,0xeb,0x49,0x3e,0x67,0xc9,0x9a,0xe7,0xec, +0xbd,0xa0,0x26,0xcc,0x63,0x9a,0x13,0xf3,0xcb,0xd4,0x4b,0x58, +0xc3,0x14,0x25,0x43,0x51,0x9d,0xf5,0x89,0x3a,0x5b,0xa4,0x9e, +0xc4,0xc2,0x92,0xb3,0xa0,0x9d,0x0c,0x6a,0x85,0x7b,0x1a,0x78, +0x54,0x0e,0xc0,0x85,0x11,0xb8,0xf8,0x10,0x17,0xc7,0x3e,0xc8, +0xbf,0x5b,0x74,0xb3,0x94,0x83,0xaf,0xda,0x30,0x84,0xb9,0x5a, +0x31,0x50,0xdb,0xd5,0xe8,0x74,0x9e,0x77,0xf0,0xb4,0xf3,0xb6, +0xf2,0xe3,0x9a,0x31,0xb4,0x7d,0x97,0x05,0xb6,0x5a,0x41,0xab, +0xa1,0xa8,0x64,0x29,0x6c,0x62,0x51,0xc5,0x12,0x35,0x5d,0x71, +0xb1,0x2f,0x27,0x6c,0x86,0x00,0x02,0xfb,0x18,0xf7,0x60,0xb7, +0x7d,0x2e,0xfb,0x39,0x1c,0xc5,0x54,0x89,0x7f,0x11,0xf8,0xa1, +0x1d,0x7f,0xf8,0x82,0x79,0x7e,0xfa,0x59,0xcc,0xd7,0x67,0xf3, +0xf6,0x65,0x07,0x67,0xee,0xab,0x2d,0xe7,0xcd,0x5a,0xcd,0x1a, +0x76,0x55,0x39,0x04,0xf0,0x69,0x11,0xe9,0x11,0x69,0xe1,0x38, +0x32,0x0a,0x3f,0x3f,0x86,0x53,0x8f,0x97,0xe4,0x16,0xe4,0xe7, +0x17,0x72,0xc2,0x99,0x36,0xc5,0x13,0x4b,0x48,0x67,0x02,0x02, +0x7c,0x02,0x3c,0x77,0x73,0x27,0x6c,0xac,0x4f,0x5a,0x4f,0x88, +0xb5,0x82,0x11,0xa7,0x80,0x3d,0x05,0xc3,0xce,0xc8,0x36,0xe3, +0x7d,0x0b,0xb8,0xbf,0x59,0x9c,0x67,0xfe,0x37,0xdf,0x21,0xae, +0x65,0x95,0xff,0xde,0x0e,0x0d,0x64,0x40,0x5c,0x03,0x93,0x85, +0xb1,0x03,0xe2,0x58,0xd0,0x64,0x61,0x52,0x02,0xa8,0xa4,0xc0, +0xb0,0x4c,0xef,0x5e,0x7e,0xf6,0x7e,0x1c,0x7d,0x10,0x55,0x0f, +0x71,0x5f,0xeb,0x2c,0x61,0xa3,0x68,0x0f,0x4d,0x8e,0xe1,0xb8, +0x09,0x89,0x86,0x4a,0x30,0x06,0xc6,0x9e,0x89,0x85,0x91,0xea, +0x38,0x09,0xff,0xd1,0x87,0x7f,0x70,0xb2,0x38,0x5b,0x5f,0x18, +0xcb,0x1a,0x6a,0xa0,0xba,0x36,0xda,0x2e,0x97,0x9e,0x1a,0x0d, +0xfb,0x05,0x3e,0xfd,0xa6,0x08,0x46,0x53,0x0c,0xf9,0xf1,0x0a, +0xfc,0x18,0xc7,0x14,0xe1,0x68,0x98,0xbe,0x0c,0xc2,0x66,0x14, +0xf7,0xf3,0xe8,0xfa,0x18,0x67,0x3c,0x36,0xfc,0x73,0x70,0xc7, +0xa4,0x32,0x12,0x99,0x12,0x7e,0x3a,0x22,0x22,0x3c,0x9c,0x3f, +0xf2,0x2d,0xac,0xef,0xc1,0xf5,0xa0,0x04,0x0b,0xbb,0x70,0x21, +0xb0,0xcc,0x95,0xa4,0x4b,0x29,0x1d,0xe9,0x7e,0x6d,0xbc,0xdd, +0x01,0x73,0x89,0x5f,0x3f,0xd2,0x5f,0xc0,0xee,0x8c,0xdc,0x71, +0x44,0x3f,0x3a,0xd9,0x8c,0xef,0x8a,0xb9,0x10,0x7b,0x31,0x81, +0x9b,0x84,0x2b,0x4c,0x61,0x05,0x2a,0x49,0x23,0xc1,0x1b,0xd8, +0xfd,0x73,0xd7,0x68,0xcc,0x5e,0x5c,0x65,0xce,0xbf,0xfc,0xb1, +0xe7,0x51,0xec,0x2f,0x5c,0x9c,0xa8,0x34,0x00,0x5f,0x30,0xb1, +0x31,0xa7,0xce,0x1c,0x51,0x83,0x31,0x38,0xa5,0xbe,0x41,0xe9, +0xa2,0xfc,0x13,0x62,0x20,0x4c,0xec,0x67,0x5b,0x15,0xb7,0x88, +0x2b,0x7c,0x62,0x0a,0x33,0xac,0x5f,0x99,0xec,0xe1,0x4b,0x74, +0x4a,0x97,0x17,0x69,0xaf,0xd8,0x37,0x6f,0xff,0x9c,0xf0,0x1a, +0x50,0xaf,0x85,0x15,0x39,0x30,0x92,0x36,0xa8,0x03,0xa2,0x8b, +0x3e,0x68,0x31,0xbb,0x69,0x21,0xc2,0xb5,0x8e,0x38,0x21,0xf0, +0x58,0xe0,0xf1,0xc0,0xe3,0x09,0xbb,0x78,0x98,0x94,0x06,0x73, +0x0b,0x40,0xf9,0x7c,0xf1,0x1c,0x5e,0x59,0xd0,0x96,0x17,0x11, +0xa7,0x30,0xeb,0x70,0x8b,0x48,0xee,0xa1,0xc1,0x42,0x56,0x3f, +0x52,0x2f,0xca,0xf8,0x68,0xb2,0x29,0xdf,0x1a,0xd3,0x1b,0xd7, +0x17,0xcf,0x4d,0xc1,0xb9,0x26,0xd2,0x4c,0x4e,0x5c,0x67,0x0c, +0x8b,0xd9,0xd0,0xb9,0x9b,0x35,0x16,0x2e,0xae,0x34,0xe3,0x9f, +0xfd,0xd0,0xf6,0x30,0xf6,0x57,0x2a,0xe7,0xf0,0x7e,0xb8,0xfb, +0x5e,0xce,0xe1,0x38,0xb9,0xae,0x01,0x3f,0x82,0xcf,0x0f,0xa5, +0x44,0x9c,0x89,0x88,0x90,0x85,0x87,0x2b,0x1d,0x79,0x02,0x8b, +0x7a,0x70,0x11,0xb5,0xcd,0xb4,0x6e,0x9c,0x06,0x0c,0x33,0x90, +0xd8,0x9f,0xd2,0x92,0xce,0x09,0xeb,0x14,0x5e,0x04,0x73,0x19, +0x87,0x03,0x89,0x94,0xe6,0xb5,0x08,0x4a,0xc2,0x66,0x71,0xa3, +0xc2,0x87,0x5d,0x53,0xe9,0xf6,0xa5,0x1a,0xa4,0x32,0xdd,0x19, +0x59,0x1d,0xea,0x60,0xca,0xea,0x67,0x2a,0xa1,0x03,0x6c,0x27, +0xa8,0x0c,0xf7,0x40,0x99,0xe9,0xc7,0x7b,0x84,0x1e,0x8c,0xc7, +0x7b,0xac,0xb2,0xb0,0x55,0x7e,0x9e,0xd8,0x87,0x99,0x87,0x9b, +0x52,0xc9,0xa9,0x85,0x75,0x0f,0xe9,0x44,0x19,0x44,0x27,0x99, +0xf1,0x9d,0xd4,0xc2,0x17,0x12,0xb8,0xc9,0xb8,0xcc,0x04,0x96, +0x51,0xc9,0x77,0x98,0xc0,0x5a,0x36,0x64,0xce,0x5a,0x8d,0x39, +0x92,0x85,0x5f,0xfc,0xd8,0xf5,0xdf,0x16,0x8e,0x89,0x56,0x83, +0x8f,0x25,0x0b,0xe3,0x28,0x98,0x48,0x9d,0x3a,0x28,0xf9,0x41, +0xa5,0x23,0x4f,0x61,0x6d,0x37,0xae,0xa5,0x92,0x2f,0xe8,0xc6, +0x05,0x54,0xf2,0xcb,0x49,0x17,0xa9,0x57,0x39,0x18,0x82,0x39, +0x04,0xbe,0x83,0x2f,0x45,0x0d,0x05,0x5e,0xbc,0x02,0x0d,0x3a, +0x17,0x85,0x05,0xf8,0x07,0x43,0x31,0x56,0x93,0xa0,0x3b,0x16, +0x82,0x3b,0xab,0xd8,0x3e,0x1c,0xc2,0xa1,0x01,0xc3,0x69,0x5d, +0x2b,0xa6,0xc1,0x1a,0x95,0x78,0x38,0x8e,0x46,0x0a,0x0d,0x95, +0x6f,0x40,0xa9,0x87,0xd6,0x0a,0xe6,0x4d,0xf7,0x64,0x69,0xdb, +0x91,0x73,0x0d,0xc9,0xe5,0xa9,0xbb,0xdb,0x79,0xbf,0x70,0x8f, +0x08,0xf7,0x43,0xdc,0x3d,0xe3,0x45,0xac,0x7d,0xa4,0x5d,0x94, +0xf3,0x51,0xaa,0x46,0x59,0x4c,0x6d,0x6c,0x5d,0x3c,0x37,0x1d, +0x3f,0x32,0x81,0x8f,0x90,0xc1,0xb1,0xc6,0xc0,0xb0,0xe1,0xf3, +0x6d,0x70,0xd8,0x96,0x25,0x25,0x46,0xfc,0xb5,0x67,0x25,0x5f, +0xc4,0xbc,0xa1,0x7a,0x0c,0xed,0x81,0xaf,0xa8,0x1e,0x27,0x63, +0x8e,0xa8,0x7d,0x89,0x1a,0x95,0x0d,0x4a,0xc2,0x1a,0xb9,0x36, +0x31,0xc6,0x5d,0xda,0x06,0x8f,0x19,0xac,0xf1,0x47,0xf3,0xf9, +0xf8,0xb9,0x5a,0x9d,0xcd,0x6f,0x30,0xb3,0x14,0xec,0x4f,0xc1, +0x65,0xd9,0x8f,0xeb,0x18,0x9c,0x76,0x04,0xad,0x22,0xf0,0x23, +0x35,0xf3,0x23,0x07,0xc3,0xad,0x26,0x58,0x30,0x94,0x9a,0x76, +0x30,0x77,0x73,0xcb,0xee,0xc5,0xa9,0x27,0xc3,0xb8,0xb3,0x60, +0x00,0x8b,0x54,0x61,0x2c,0x4e,0x63,0xf1,0x73,0x31,0x8d,0xb8, +0x1d,0x50,0x92,0x6f,0xc2,0x10,0xc5,0x69,0x36,0xf4,0x28,0x7d, +0x1d,0x4b,0x36,0xe2,0xff,0xc8,0x83,0x8f,0xca,0x7f,0xac,0xe3, +0x66,0x09,0x87,0x25,0xef,0xec,0xa0,0xde,0x41,0x65,0x71,0x31, +0x91,0x8e,0x70,0x07,0x6b,0x3a,0x1c,0xf5,0x58,0xa7,0x03,0x8e, +0x07,0x1d,0x23,0x38,0xd8,0x4b,0xed,0xd0,0x02,0x75,0xe4,0x70, +0x52,0x64,0x6c,0x44,0x78,0x04,0xb5,0xc3,0x13,0x50,0xe9,0x46, +0x15,0xe0,0x60,0x74,0x37,0xcd,0x30,0x86,0x69,0x4f,0x6c,0x4d, +0xae,0x49,0x0b,0x6c,0xe7,0x3d,0x0f,0xba,0x44,0x38,0x46,0x72, +0x5f,0x1a,0x2d,0x60,0x2d,0x22,0x2d,0x0e,0xdb,0x1c,0xa5,0x29, +0x53,0x13,0x23,0xf5,0x97,0xdc,0x54,0x1c,0x6f,0x42,0x5d,0xcf, +0xe1,0x54,0x13,0x90,0xb1,0x07,0xe7,0x1a,0xe1,0xb0,0x35,0x8b, +0xce,0x9b,0xf0,0xf7,0x7f,0xa8,0xba,0x77,0xf6,0x0f,0x6a,0x09, +0xb6,0x17,0x1e,0xbf,0x8b,0xc5,0x1f,0x70,0x6a,0x4d,0xbd,0x12, +0xe8,0xc2,0x46,0x12,0x18,0xfd,0x6e,0x97,0x99,0xc7,0x49,0x4f, +0xb3,0xae,0x0f,0xee,0x32,0x13,0xe9,0x1c,0xe9,0x24,0xed,0x32, +0x73,0x93,0xad,0x9c,0x74,0x53,0x1b,0x26,0x4b,0xbb,0xcc,0x98, +0x65,0x39,0xe6,0x78,0x15,0x56,0xe7,0xd6,0x94,0xbc,0xdb,0x65, +0xc6,0x4d,0xda,0x65,0xa6,0x30,0xa4,0x24,0xa2,0x9c,0x03,0x97, +0x4e,0x31,0x08,0x4c,0x04,0xef,0x6e,0xb1,0xe0,0xfd,0x2e,0x33, +0x5b,0x70,0x96,0x5a,0x97,0xb4,0xcb,0x4c,0x3c,0xe8,0x9c,0x82, +0x93,0xb2,0xe7,0x0c,0xfc,0x29,0xed,0x32,0xa3,0x69,0x2a,0x68, +0xbe,0xdf,0x65,0xa6,0xd7,0x0c,0x7a,0x71,0x1d,0xaa,0xb2,0xe9, +0x66,0xd2,0x23,0x27,0x8d,0xd9,0x83,0xbb,0xcc,0xfc,0xd6,0x39, +0xfd,0xae,0x34,0x85,0x42,0x6f,0x70,0xf7,0x98,0xf3,0xef,0x77, +0x8f,0x71,0x2b,0xa4,0x5d,0x89,0x13,0xed,0x47,0x75,0xf0,0x29, +0x83,0x9e,0x3a,0xa8,0x8a,0xcb,0x70,0x9d,0x5a,0xa3,0x31,0x4c, +0x82,0xd9,0x57,0x81,0x9c,0x05,0x4d,0x59,0x1c,0x73,0x16,0x67, +0x5d,0xa3,0x81,0xaa,0x85,0xf3,0x1b,0x7a,0x78,0x5c,0x0d,0xab, +0x77,0xc0,0xe7,0xe0,0xa5,0x8a,0x47,0xa0,0x87,0x88,0xeb,0x4c, +0x2e,0x28,0x38,0x66,0x4f,0xf4,0x9e,0xe8,0xdd,0x47,0x53,0xa4, +0xdf,0x25,0x7f,0xcd,0xff,0xa9,0x84,0x43,0xcb,0x0b,0xf2,0x2b, +0x37,0x59,0xbc,0x20,0xcd,0x35,0x5d,0x02,0x5b,0x28,0xe7,0x15, +0x8a,0xbf,0x24,0xa1,0x38,0x2c,0x60,0x86,0xc7,0xaa,0x4e,0x3f, +0xbe,0xf2,0x69,0xe1,0xef,0xe9,0x30,0x8c,0x13,0xb7,0xe2,0x45, +0x52,0xf2,0x24,0x0f,0x94,0xce,0xfd,0x65,0x9c,0xc8,0x47,0x4e, +0x0f,0xc2,0xa1,0x5e,0x2b,0x39,0x2d,0x58,0x49,0x70,0x09,0x6e, +0x81,0x25,0x2c,0x7a,0x0c,0xa7,0x9f,0x9f,0xc4,0xe8,0x87,0xe8, +0x87,0xea,0x85,0x51,0x79,0x93,0x84,0x8d,0x04,0x56,0x0e,0xe0, +0x4a,0xf8,0x59,0x47,0xd1,0x8f,0xe3,0xe5,0x9b,0x77,0x2a,0x36, +0x53,0x58,0x2d,0x1b,0xc0,0x5d,0x0c,0x5e,0x93,0x17,0x12,0x71, +0xae,0xc9,0xc0,0x5b,0xa1,0x8e,0xee,0x89,0xa6,0x42,0xfd,0x9c, +0xfd,0x53,0xfe,0xb3,0x22,0x0e,0xcd,0xa9,0x50,0xd7,0x58,0x6c, +0x7c,0x2b,0xd4,0x72,0x2a,0x94,0xd9,0x70,0x7a,0x97,0xe5,0xef, +0xee,0xb2,0x1c,0x27,0x33,0x26,0x21,0xc6,0x07,0x8c,0xa4,0xbb, +0x0c,0x95,0xdf,0x21,0x86,0x2e,0xab,0x3c,0xb6,0xef,0xe7,0xc4, +0x4c,0x36,0xf8,0xc8,0xde,0xa8,0xa0,0xa8,0x54,0x13,0xfe,0x9b, +0xa2,0xfe,0xbc,0xde,0xc2,0xbd,0x38,0xd4,0x7a,0xad,0xf6,0x86, +0x4a,0x3b,0x1e,0xc6,0xc3,0xc8,0x1e,0xf8,0x04,0x0e,0xa9,0x42, +0x8a,0x09,0x66,0xb1,0x8e,0xc7,0x5d,0x8f,0xb9,0xab,0x79,0x1d, +0xf0,0x38,0xe0,0x72,0x80,0x13,0x9c,0xd8,0xde,0xf4,0x2f,0x4a, +0xdb,0xcb,0x39,0xcc,0xcf,0x20,0xf8,0xd4,0xb4,0x8b,0x4a,0xa5, +0x73,0x20,0xd5,0xe0,0x61,0xd6,0x97,0x39,0x77,0x0a,0x65,0x68, +0xdc,0x27,0xbf,0xda,0xc0,0xc2,0x6d,0xc5,0x55,0xd2,0x2d,0xef, +0x86,0xd1,0xe2,0xa3,0x05,0x4c,0xb2,0xb1,0xd2,0x7d,0xa6,0x36, +0x2d,0xad,0x45,0x5d,0xce,0x61,0x08,0x2b,0x56,0xa3,0x3d,0x81, +0xa5,0x14,0x90,0x97,0xb2,0xe6,0xc3,0x71,0x29,0x8e,0x81,0xa5, +0x2c,0x7a,0x0e,0xa7,0x27,0xa6,0x33,0x8e,0x61,0x4e,0x07,0x1d, +0xc2,0xa9,0xb4,0x9f,0xc8,0xef,0x11,0xef,0xb9,0x1b,0x66,0xe3, +0xa4,0x99,0x95,0x26,0x3c,0x4c,0x7c,0x7d,0xff,0x49,0x01,0x0c, +0xe5,0xe2,0x98,0xdc,0x29,0x4f,0xe7,0xc3,0x8c,0xb7,0x3f,0xa2, +0x4e,0x7e,0xf7,0x23,0x6a,0x9e,0x37,0x11,0x89,0x69,0x9f,0x62, +0x04,0x13,0x14,0x1d,0x44,0x6d,0x44,0x2d,0xf4,0x63,0xf6,0x0f, +0x79,0x4f,0x8a,0xa9,0x85,0x06,0xe4,0x57,0xbb,0x59,0xcc,0xc6, +0xa5,0xd2,0x3d,0xe7,0xd1,0x7b,0x82,0x85,0x16,0x81,0x2b,0xbd, +0x78,0x85,0x41,0x8b,0x48,0xc9,0x27,0xf3,0xa8,0xb5,0x04,0x7d, +0x0c,0x24,0x22,0x7f,0x41,0xe0,0xa9,0x6b,0xf6,0x4d,0x62,0x53, +0x0c,0x95,0xbe,0xfb,0xf0,0xeb,0xeb,0x6e,0xca,0x2f,0x52,0x13, +0x08,0xfd,0xf4,0x14,0xc6,0x3c,0xc4,0xec,0x80,0xd9,0x41,0x4e, +0xf9,0x6f,0x3d,0xa1,0x86,0x60,0x08,0x6c,0x63,0xae,0x25,0x5f, +0x4b,0x1b,0xc8,0xf2,0xe9,0xe4,0x71,0xac,0x33,0xce,0xf6,0xc7, +0xe9,0x91,0x29,0x86,0x7c,0x7f,0xcc,0x95,0xb8,0xab,0x89,0x1c, +0xae,0x41,0x1f,0x03,0xf0,0xc1,0x2d,0xb8,0x43,0xfc,0xe4,0xe2, +0x05,0xe8,0xd7,0xbb,0x24,0x7c,0x82,0xba,0xb0,0x05,0x42,0x58, +0xc5,0x53,0x4a,0x23,0x15,0x1c,0x4b,0x05,0x7e,0x2b,0xf2,0x0b, +0xea,0xd4,0xa7,0x92,0x53,0x2f,0xc9,0xaf,0x74,0x76,0x8b,0x6a, +0x26,0x2c,0x8c,0x7e,0xeb,0xd8,0x45,0xef,0x1d,0xbb,0xe8,0x9d, +0x63,0x17,0x51,0x49,0xcc,0x42,0x4c,0x0f,0x98,0x1c,0xe4,0x04, +0x76,0x3e,0x01,0x7b,0xe8,0x47,0x7b,0x56,0x59,0x6e,0x23,0x8f, +0x21,0xf7,0x8d,0xd7,0xa2,0x35,0xbe,0x16,0xec,0xe1,0x35,0xab, +0x68,0x3f,0x48,0x14,0x23,0x58,0xc9,0x2a,0x41,0xd2,0x2d,0xbe, +0xcb,0x7e,0x9a,0xf7,0x35,0xbd,0x85,0x59,0xaf,0xfc,0x6a,0x63, +0x17,0x2a,0x4c,0x59,0x50,0x7a,0x6b,0x99,0x19,0x92,0x65,0x7e, +0x2e,0x24,0x38,0xf5,0x57,0x98,0xca,0x80,0xdd,0x0c,0x82,0x33, +0x7e,0x85,0x19,0x0c,0x52,0x1e,0x49,0x26,0xe3,0xd4,0x37,0x2c, +0x58,0xa9,0xc0,0x8c,0xc9,0x38,0x83,0x11,0xa7,0xdc,0x91,0xcc, +0x36,0x83,0xca,0x22,0x2f,0x46,0x2b,0x22,0x56,0x98,0xd2,0xa6, +0x30,0xcc,0xea,0x80,0x63,0x90,0x25,0x07,0xbf,0x30,0xc7,0x3d, +0x8e,0x3a,0x1f,0x72,0xe1,0x3c,0x0e,0x87,0x46,0xd8,0x4e,0xc0, +0x71,0x4c,0xba,0x91,0x12,0x8c,0x66,0x6e,0x97,0xe4,0x5f,0x4e, +0x56,0x4f,0x6c,0x8f,0xed,0x8c,0xb9,0xcb,0xe1,0x03,0xe6,0x5c, +0x51,0x42,0x71,0x42,0x31,0x07,0xaf,0x18,0x45,0x71,0x0d,0xa1, +0xf7,0x9f,0xca,0x58,0x86,0x5a,0x86,0x59,0xd0,0x50,0xed,0x12, +0x54,0x08,0x7c,0x1c,0x0b,0x5a,0x19,0xcf,0x53,0xb9,0x75,0x7d, +0xc2,0xec,0x81,0x56,0xd1,0xcb,0xea,0x0e,0xde,0x64,0x7d,0x8e, +0xfb,0x1e,0xf7,0x3b,0xc1,0xc9,0x77,0xc2,0x34,0x62,0x5e,0x67, +0x56,0x63,0x59,0xe1,0xe2,0xc4,0xb7,0x79,0xb4,0xb9,0xb6,0x39, +0x99,0x39,0xe9,0x7a,0xac,0xf7,0x2d,0x36,0xe7,0x1f,0x9d,0xbf, +0x51,0xdb,0xdb,0x74,0xd1,0xbc,0xdf,0xa4,0xcb,0xac,0xa1,0x8e, +0x37,0xed,0xd0,0xef,0xd4,0x6b,0xbf,0x76,0xb9,0xf9,0x76,0xd1, +0x1d,0xae,0x41,0x1c,0x62,0x06,0xed,0xac,0xbf,0x81,0xb3,0xb1, +0x99,0x25,0x87,0x8f,0x60,0x08,0xc1,0xa0,0xeb,0x10,0xc4,0xe0, +0xf0,0xe1,0x9b,0x31,0xe8,0x16,0x0b,0x41,0xc8,0x12,0x3d,0x56, +0xef,0xd0,0xf2,0x43,0xda,0x51,0xdc,0x13,0x56,0xbe,0x1e,0xdd, +0xc8,0x86,0xed,0x4b,0x4c,0x97,0x38,0x3b,0x96,0x7b,0x55,0xef, +0xab,0xef,0xcb,0xef,0x29,0xac,0x2f,0x74,0xab,0xe3,0x17,0x19, +0xe3,0x74,0x43,0x1c,0xe5,0x93,0x6b,0xc6,0xd7,0x25,0xb6,0xa6, +0xb6,0x66,0x70,0x78,0xe7,0x12,0xf4,0xc4,0xb1,0x35,0x38,0x01, +0xa6,0x6f,0x04,0xcf,0xa5,0xf9,0x3d,0xbc,0x46,0xdd,0x9c,0xfa, +0xf5,0x6d,0x8f,0x6a,0x1e,0x75,0xdd,0xbd,0xc8,0x29,0x86,0xde, +0x25,0x3a,0xa6,0x4b,0xcd,0x67,0xb8,0x97,0x98,0xf2,0x3f,0x57, +0x3d,0xeb,0xfe,0x62,0x80,0xc3,0x54,0x71,0x28,0x81,0x91,0x4d, +0xa0,0x74,0xf5,0xab,0x07,0x0e,0x75,0xfc,0x9a,0x4d,0xd3,0xf4, +0xf1,0x63,0x3b,0x4e,0xf9,0xb9,0x40,0xab,0x80,0x72,0x6d,0x4f, +0x43,0x71,0x79,0xfc,0xb9,0x98,0x93,0x09,0xd1,0xb0,0x6d,0x0a, +0x5f,0xd2,0x82,0x0b,0xbf,0x3f,0x90,0x70,0xe8,0x64,0x64,0xa4, +0xec,0x40,0xe8,0x91,0x98,0x84,0xb4,0xb8,0x54,0x69,0xdc,0x40, +0xb7,0x0d,0xb7,0x30,0xa7,0xce,0x9d,0x4c,0x4c,0x52,0x6d,0x82, +0xa5,0x2d,0xd8,0xca,0x9e,0x4b,0x4b,0x48,0x8b,0x4f,0xb3,0xcc, +0xe4,0x7d,0x8d,0x5d,0x2c,0x8c,0x6c,0xeb,0x5c,0xf9,0xc2,0xdc, +0xbc,0xbc,0xac,0x02,0x0e,0x86,0xda,0x30,0x11,0x27,0x23,0x4e, +0x44,0xaa,0x61,0x90,0x25,0x78,0x33,0xfb,0x4c,0xcd,0x9c,0x50, +0xc3,0x8a,0x13,0x4e,0xc3,0x7d,0x82,0xf7,0xe1,0x7b,0xb8,0xcf, +0x62,0x29,0xe6,0x13,0x08,0x00,0x3f,0x0c,0x60,0x7f,0x15,0x4d, +0x88,0xc3,0x31,0xeb,0xe3,0xe6,0xc7,0xa5,0x45,0x24,0x55,0x3b, +0xff,0xe1,0xcc,0xe0,0x33,0xbc,0xc2,0x5a,0x59,0x9f,0xb0,0x9d, +0x10,0x6b,0x06,0x01,0x67,0x20,0xe9,0x2c,0xb8,0xc5,0xcb,0x96, +0x5d,0xfa,0x96,0xed,0x38,0xd3,0x7a,0xba,0xfe,0x0c,0x87,0x76, +0x90,0x4f,0xc4,0xa8,0x6b,0x42,0x14,0x83,0xcc,0xf0,0x2d,0x62, +0x14,0xc5,0xcd,0x11,0xc3,0x85,0xa8,0x6d,0x0c,0xce,0x8e,0xc6, +0x4d,0x47,0x71,0xd5,0x31,0x9a,0xe1,0xc7,0xe2,0xc8,0xa1,0x43, +0xd2,0x3e,0x6b,0x70,0x08,0x0c,0x7a,0xd1,0x80,0x56,0xcb,0xb9, +0xad,0x7d,0x60,0x8a,0xfb,0x5f,0xeb,0x69,0x62,0x00,0x9a,0xf6, +0x59,0x81,0x8e,0xe8,0xc9,0xae,0x2b,0xf6,0xbe,0x0f,0xbc,0xea, +0x77,0x94,0x57,0xa1,0x9a,0xc3,0xc6,0x39,0xba,0x6a,0x05,0xc6, +0x3f,0x5d,0xad,0xbe,0x16,0xf3,0x2b,0x45,0x72,0xfc,0x3c,0xe1, +0xe2,0x7a,0x98,0x38,0x01,0xec,0x98,0x73,0x7d,0x4a,0x62,0xa7, +0xbc,0x8a,0x20,0x9a,0xf6,0x50,0x54,0xda,0x4e,0x51,0xe9,0x9b, +0xac,0x6f,0xf2,0xbe,0xa4,0xa8,0x64,0x4a,0x51,0xa9,0x93,0xc5, +0x13,0x6f,0x43,0x7d,0x22,0x0d,0x75,0xe1,0x1b,0x47,0x22,0xaa, +0xc1,0x67,0x82,0x1a,0x23,0x7e,0x83,0x93,0x08,0x85,0xa1,0x89, +0xef,0x60,0x68,0x22,0x6a,0x32,0xb6,0x07,0x6c,0xc2,0x6c,0x68, +0x96,0xcb,0xa7,0xc0,0x1b,0x12,0xd9,0xb7,0xff,0xea,0xde,0x1e, +0xeb,0x7d,0x7c,0xc2,0xee,0x04,0xff,0x78,0x5f,0xf7,0x68,0x97, +0x68,0xe7,0xa3,0x57,0x9e,0xf7,0xfd,0xdc,0xf6,0xbd,0x75,0x31, +0x1f,0x68,0xe1,0x67,0xea,0x65,0x16,0x96,0x79,0x20,0x2b,0x34, +0xb3,0xb2,0xb7,0xec,0x56,0xee,0x65,0x8b,0x3c,0x7e,0x9f,0xbe, +0xbf,0xae,0xb7,0x59,0x64,0xa2,0xb4,0x5c,0xa1,0x87,0x2b,0xdf, +0x68,0x5b,0x6d,0x57,0x61,0x15,0xe8,0x1c,0xe0,0xec,0xe7,0x7a, +0xe0,0x44,0xd8,0xc9,0x03,0x27,0x62,0x2d,0xf8,0x6f,0xe2,0xee, +0x25,0xde,0x4c,0x8a,0xd9,0x7f,0x66,0xff,0x99,0x10,0xee,0xdb, +0x47,0xe4,0xf0,0x89,0xc3,0x27,0x0f,0x4b,0xb3,0xc5,0xbf,0x8d, +0xff,0xfa,0xdc,0xf5,0xe4,0xb3,0xc1,0x67,0x83,0x63,0xf6,0xb5, +0x65,0xf1,0x61,0x97,0x03,0x1e,0xec,0x69,0xb7,0xd9,0xcb,0x27, +0x06,0x26,0xfa,0x24,0x7a,0x39,0x0d,0x4e,0xe3,0xbb,0xfe,0xa4, +0xef,0xe7,0xae,0xbf,0xac,0xa4,0x5d,0x72,0x7d,0x0c,0xdc,0x0d, +0x43,0xf3,0x42,0xf2,0xf6,0xe7,0x56,0xf5,0x94,0x5e,0xcd,0xbb, +0x60,0x45,0x6f,0x6f,0xe4,0x67,0xe8,0x6d,0x19,0x91,0x14,0x91, +0x1c,0x91,0xe8,0xee,0xca,0x37,0x59,0x35,0x1a,0x95,0x9b,0xec, +0x71,0x0f,0xf0,0xf0,0xf5,0xe4,0xf0,0x0b,0x81,0x27,0xf8,0xe4, +0x03,0x72,0x7f,0x49,0x91,0xfb,0x8b,0x0f,0xc8,0x4d,0xed,0x3e, +0x68,0xa3,0xd1,0xef,0xc1,0x79,0x34,0xb5,0x8a,0x20,0xa7,0x88, +0x8d,0xa3,0x70,0x17,0x8c,0x34,0xc0,0x91,0x38,0xd9,0x18,0x34, +0xd8,0x88,0xa5,0xb6,0xa6,0x8b,0x6c,0x4a,0xcd,0xf8,0x57,0xdd, +0xfd,0x0f,0x92,0xde,0x70,0xa0,0x8f,0x61,0x17,0x20,0x4c,0x9a, +0x71,0x35,0x09,0x46,0x31,0x8a,0x25,0x91,0x84,0x7e,0xc9,0x74, +0xc6,0x89,0x02,0x3a,0x65,0x2f,0xca,0x70,0x4a,0xfe,0x94,0x58, +0x5b,0x6c,0xb4,0x58,0xee,0x52,0x6c,0xc3,0x3f,0xaa,0xfa,0xee, +0x52,0x53,0x07,0x07,0x1b,0xa7,0x90,0xf8,0xf8,0x33,0xc7,0xcf, +0x45,0xc3,0x68,0x3d,0x9e,0x72,0x1d,0x54,0x3d,0x7b,0xf0,0xea, +0x45,0xd5,0x62,0x3d,0x5f,0x76,0xfb,0x3e,0x97,0x99,0xe6,0x6a, +0x45,0x36,0x3f,0xb6,0xa7,0x95,0xc4,0x5d,0xa2,0xae,0x5e,0x19, +0xd7,0xed,0x0c,0xe3,0x27,0x50,0xbe,0x19,0xd7,0xa2,0x84,0xd5, +0x5f,0x42,0x7c,0x0b,0xc6,0x5f,0x66,0x3a,0xb2,0x4a,0xb3,0x72, +0x33,0xe3,0xe2,0x62,0x8e,0xd1,0x1c,0x19,0xbd,0x89,0x2f,0x6f, +0xd4,0xb8,0x18,0x1e,0x17,0x75,0x2a,0xe2,0x90,0x2c,0x3c,0xf2, +0xc8,0x19,0xa5,0xb4,0x9c,0xb3,0xc5,0xc5,0xaa,0xf9,0x86,0x7b, +0x58,0xa3,0xe0,0xc0,0x19,0xae,0x6a,0xd3,0x5a,0x23,0xcf,0x1e, +0x3e,0x45,0xe9,0x69,0x44,0x84,0x74,0x35,0x37,0x46,0xba,0x6a, +0xb4,0x87,0x35,0xdc,0xeb,0x37,0xc5,0x49,0x2d,0xcf,0xb2,0x2f, +0xa7,0x2c,0x2b,0x3f,0x4f,0x86,0x75,0x78,0x99,0xf4,0x81,0x07, +0x53,0x96,0x5f,0x52,0x90,0x93,0xe7,0x5c,0xc5,0xeb,0x6c,0x5b, +0x6d,0xa2,0x65,0x5f,0x64,0xc5,0x97,0xa7,0x55,0x67,0x57,0xe5, +0x71,0x82,0x1d,0x8c,0x20,0xd9,0x2e,0x4a,0x76,0x0c,0x7c,0x2f, +0x3e,0xfd,0x90,0x24,0xa9,0xa0,0xda,0xfe,0x0f,0x67,0x41,0x93, +0xa4,0xe4,0x5d,0x92,0x98,0x0f,0x26,0x49,0x8c,0x94,0x24,0x2b, +0x2e,0x3d,0x66,0x3b,0x4e,0xbf,0x4f,0x92,0xd3,0x34,0x49,0x7a, +0x69,0x92,0x68,0x0e,0xd7,0x17,0xa3,0x06,0xd8,0xc9,0x34,0x45, +0x0c,0x69,0x8a,0x1c,0x19,0x4c,0x91,0xe3,0x9c,0xf2,0x4d,0xb9, +0x1e,0xb1,0x13,0x56,0x37,0xe2,0xf6,0x16,0xb0,0x6e,0x44,0xeb, +0x4e,0x63,0x33,0x74,0xb2,0x03,0x27,0x6b,0x16,0x8a,0x57,0x92, +0x47,0x55,0xc5,0x8d,0x67,0x6e,0x70,0x30,0x61,0x07,0xe3,0x94, +0xb2,0xbf,0x45,0x6d,0x80,0xa9,0x48,0x4f,0xab,0x50,0x6f,0x67, +0xad,0x53,0x94,0x36,0x9a,0xb2,0x07,0xa2,0x4f,0xa7,0xa9,0x53, +0x9e,0x1d,0xc9,0xae,0x3e,0xea,0xb2,0xc8,0x55,0x4d,0x30,0x10, +0xff,0x78,0x2b,0xe4,0x31,0x0e,0xd2,0x40,0xa9,0x55,0x71,0x93, +0x2d,0xae,0x4a,0x2d,0x8f,0xa9,0xe2,0xe0,0x27,0xd0,0x12,0x55, +0x35,0x19,0x93,0x03,0x6e,0x2e,0x0e,0x6a,0x35,0x9e,0x4a,0x2e, +0x94,0x2b,0x97,0xbe,0x93,0xde,0x42,0x92,0x3e,0x39,0x16,0xdc, +0x13,0x64,0xab,0x2e,0x7c,0x2d,0x49,0x7f,0x86,0x4a,0x2f,0x9a, +0xc3,0x3f,0xe4,0xab,0xe4,0x7b,0x59,0x57,0x0b,0x2f,0x07,0xdc, +0xdd,0xfb,0xec,0x60,0x4a,0x0b,0xbf,0x2d,0x51,0x2f,0xd9,0x24, +0xa3,0xaf,0xa4,0xb9,0xba,0xac,0x89,0xab,0x13,0x35,0x6c,0xe1, +0x11,0xeb,0xe9,0xe1,0xe8,0x6b,0xba,0xdb,0x3a,0xdb,0x3e,0xdf, +0xb1,0xd4,0xd5,0x8f,0x2f,0x0b,0xa8,0xd8,0x5d,0x1b,0x64,0x11, +0x6a,0x70,0x70,0x4b,0x04,0x87,0xbe,0x30,0x9b,0xec,0xc4,0x11, +0x97,0x59,0xa8,0x53,0xd9,0x89,0xca,0x97,0x59,0x61,0x3b,0x6d, +0x4d,0xc4,0xa3,0x17,0x84,0xa3,0xcc,0xe4,0xe1,0xbb,0xc4,0xa3, +0x17,0xd9,0x49,0xc3,0x85,0xa3,0x26,0x83,0x36,0xd9,0x72,0x14, +0x57,0x53,0x9b,0xc8,0xb5,0xe5,0x27,0x49,0x5a,0x7e,0x52,0x7e, +0x7c,0xae,0xfe,0x39,0xfe,0x50,0x40,0xb8,0x4f,0x88,0x3f,0x87, +0x3a,0xa2,0x83,0x10,0x22,0x38,0x30,0x62,0x6e,0x23,0xc1,0x57, +0x1f,0xf2,0xff,0x71,0xd6,0xe3,0xbc,0x07,0xef,0xf2,0xbf,0x51, +0x5a,0x6a,0x7e,0x30,0xb6,0x55,0x07,0x49,0x00,0x46,0x11,0x50, +0x08,0x23,0x50,0xc1,0xd2,0x32,0x30,0x99,0xe4,0xa5,0xe6,0x66, +0x64,0x65,0xe5,0x07,0xe7,0x05,0xe7,0xed,0x75,0xf1,0xb1,0xf1, +0x37,0xdd,0x9d,0xe7,0xc4,0xf7,0xe6,0xb5,0x97,0x34,0x54,0x14, +0x05,0x14,0x06,0xe4,0xfb,0x57,0x54,0xf2,0x81,0x05,0xfe,0xf9, +0xfe,0xf9,0x95,0x95,0x45,0xf5,0xe9,0xcd,0x5c,0x39,0xa5,0xf5, +0xf1,0x29,0x71,0xa9,0xb1,0x29,0xf6,0x29,0x7c,0xb8,0x57,0x90, +0x97,0xbf,0xcf,0xfe,0x94,0xfd,0x49,0x21,0x49,0x3e,0xee,0x7c, +0x5a,0x78,0x3a,0x7d,0x85,0x84,0xee,0x0b,0x0b,0x3e,0xc8,0x41, +0xca,0x4d,0x12,0xe6,0x13,0xec,0x1f,0x18,0x10,0x90,0x13,0x90, +0x1d,0x98,0x15,0x1b,0x1b,0x1b,0x77,0x36,0x8e,0x43,0x51,0x4f, +0x42,0x1d,0xd5,0x77,0xa8,0xa3,0x8a,0xd3,0x18,0xe9,0xc1,0x27, +0xdb,0x70,0x4e,0x30,0x84,0xe1,0xa4,0xd1,0xa7,0xc7,0xa6,0xca, +0xb9,0xb2,0x96,0x77,0xab,0x31,0x6c,0x71,0x28,0xe4,0xce,0x60, +0x3d,0x71,0x3c,0x94,0x58,0xa1,0x0e,0xba,0x06,0x68,0xc2,0x6e, +0xc9,0xde,0x73,0x47,0x4d,0x7a,0xec,0x3c,0x39,0xad,0x55,0xfd, +0x57,0xd6,0x24,0x4d,0x09,0x3f,0x61,0x9b,0xc1,0x96,0x9c,0x37, +0x6f,0x98,0x91,0xbb,0xb5,0xa3,0x90,0xdf,0x77,0xc1,0xe6,0x4f, +0x8f,0x76,0x4e,0x34,0xc6,0xa3,0xa4,0xfa,0x5a,0xd1,0xf3,0xe4, +0x9b,0x26,0xc9,0x7c,0x84,0xbe,0xef,0x3c,0x17,0x03,0xa9,0xba, +0x6c,0x22,0xe0,0x74,0x06,0xbc,0x63,0xc0,0x34,0x9e,0x33,0xbd, +0xd0,0xc3,0xb6,0x9d,0x69,0x39,0xdd,0x74,0xe6,0x44,0x0b,0x6f, +0x7b,0xdc,0xfa,0x98,0x15,0x8d,0xe3,0x64,0x20,0xad,0x8a,0x6a, +0x2b,0xda,0x2b,0x14,0xb2,0x56,0x27,0xac,0x4e,0x5a,0xd3,0xb2, +0xfb,0x11,0x04,0x10,0x69,0xfa,0xbb,0x36,0x33,0x6d,0xb8,0x81, +0xa8,0xdd,0xcf,0x0a,0xda,0x53,0x88,0x21,0xcd,0xda,0x68,0x9c, +0x7c,0x14,0xa7,0x1e,0xe7,0x6e,0xb0,0xb8,0x02,0x0f,0x12,0x2c, +0x67,0x57,0x1d,0x8b,0xb5,0x84,0x11,0x67,0x61,0x44,0xfc,0xf7, +0x89,0xb2,0xc5,0xbd,0x82,0x46,0x6b,0xb3,0xb8,0xd1,0x86,0xfd, +0xfb,0xf3,0x66,0x22,0xea,0xd9,0xb4,0x60,0x05,0x13,0x78,0x62, +0xf7,0xc9,0x40,0x09,0xef,0x60,0xd8,0x19,0xf8,0xe8,0xec,0xab, +0x38,0x6e,0x75,0xef,0xd7,0x6c,0xc9,0x99,0x92,0xd3,0x85,0x67, +0x8e,0xb5,0xf0,0xfe,0xc7,0xfd,0x8e,0xf9,0x52,0x39,0x32,0x9f, +0xb2,0x8a,0x94,0x5d,0xe4,0x22,0x98,0xef,0x62,0x21,0x42,0xe5, +0x22,0x58,0xee,0x62,0x15,0x23,0x27,0x91,0x4b,0x60,0xae,0x2b, +0x9d,0xb8,0x04,0x96,0xba,0xf4,0x84,0x1d,0x01,0x73,0x73,0xc6, +0x20,0x6a,0x5b,0xf4,0xa6,0xa3,0x9c,0xb0,0xe9,0x3a,0x01,0x4b, +0x7d,0x66,0xe7,0xd1,0x6d,0xc7,0xb6,0xd2,0x5a,0xf3,0xf7,0x08, +0xb9,0x03,0xd1,0xea,0xa3,0x84,0x3f,0xf1,0x0b,0xbd,0x8d,0x78, +0x08,0xb5,0x7a,0x7f,0x61,0x97,0x7d,0x4b,0xf0,0xaa,0x59,0x07, +0x25,0x8d,0xba,0x34,0x54,0xbe,0xc8,0xbc,0x93,0x7b,0xbd,0x40, +0x86,0x46,0xdd,0xf2,0x6b,0xf5,0x2c,0x3a,0xe2,0x32,0x02,0xcb, +0x60,0x18,0x2e,0x63,0x85,0xf0,0x12,0xe2,0x5b,0xec,0x58,0xe6, +0x9c,0xe7,0xee,0xc9,0xd7,0x04,0xd6,0x78,0x97,0x7a,0x73,0xb8, +0xd3,0x85,0x98,0xa5,0x1f,0xe8,0x54,0x03,0x6d,0xa6,0x22,0x25, +0xb5,0x42,0xbd,0x9f,0xb5,0x48,0x56,0x5a,0x47,0x43,0xc2,0x3f, +0xfa,0x6c,0x81,0xfa,0xef,0x26,0xec,0x86,0xfd,0x64,0xbf,0xb5, +0x8f,0x95,0x87,0x53,0xa3,0x2f,0x5f,0x51,0x5f,0xd2,0x91,0xd5, +0xcd,0xc1,0x95,0xc3,0xa4,0xcc,0xb9,0xd2,0xac,0xc8,0xa6,0xb1, +0x88,0xf7,0x69,0x71,0xeb,0x90,0x26,0x88,0xbf,0x9c,0x42,0x68, +0x87,0x32,0x0c,0x96,0xb1,0x10,0x3b,0x8d,0xe0,0x34,0x0b,0x2b, +0xe1,0xb7,0x56,0x53,0xa0,0x2d,0xe3,0x6b,0x1b,0x32,0x7d,0xc6, +0x6f,0x2c,0x9c,0x9c,0x4e,0xa6,0xfd,0xf6,0x8a,0x01,0xad,0xe9, +0x44,0xf3,0xb7,0xd7,0x8c,0xc2,0x60,0x9b,0xb4,0x62,0xf0,0x0c, +0xc6,0x2d,0xcc,0x35,0xdc,0x35,0x82,0x13,0x8e,0x84,0x4b,0x8f, +0xa5,0xcc,0x67,0x33,0x4c,0xde,0xfd,0x80,0x57,0xa7,0x0e,0x13, +0x20,0xba,0x4b,0xbc,0x67,0x4a,0xfb,0xfb,0x9d,0xf2,0x8f,0x09, +0x1e,0x15,0xc2,0xe1,0x28,0xfa,0xdf,0x85,0x93,0x1d,0x78,0xf2, +0xb1,0xa1,0x36,0x46,0x9a,0x43,0xe4,0x7a,0x16,0xe3,0x60,0x2d, +0x2d,0x97,0x16,0x1d,0xf8,0x3b,0xa3,0x7f,0xec,0xac,0xf9,0x37, +0x31,0x7f,0x26,0x3c,0x4a,0x90,0x89,0x06,0xdd,0xf2,0x1b,0xd5, +0xf4,0xea,0x6a,0xf2,0x25,0x2c,0x5d,0xcd,0xd2,0x28,0x1d,0xf7, +0xf6,0x08,0x76,0xe1,0x47,0x04,0x34,0xbf,0x47,0x4d,0xb6,0x4b, +0x05,0x34,0x7f,0xa0,0xff,0xc2,0x74,0xa0,0x1d,0xbb,0xe6,0x1c, +0xe9,0x11,0x92,0x31,0xcb,0x69,0x7a,0xad,0x64,0x2c,0x8e,0x18, +0x46,0x1b,0x1f,0xa5,0x48,0xb8,0x94,0x98,0x0a,0x6d,0x5d,0xd4, +0x7d,0x94,0x24,0x3e,0x6d,0x5d,0xfc,0xe5,0xf3,0x36,0x0c,0xb1, +0x7c,0xba,0x5a,0xdb,0xea,0xf1,0x4c,0xc6,0xed,0xa8,0xfb,0x51, +0xbf,0xe3,0x71,0x16,0xfc,0xf5,0x38,0x18,0x9a,0x7a,0x29,0x39, +0xba,0x85,0x0f,0x8c,0xf6,0x8a,0xf6,0x88,0xe6,0x84,0xf5,0xb0, +0x93,0x34,0xf9,0xb5,0x3b,0xd6,0x39,0x55,0xd4,0xf2,0xce,0xb5, +0xa6,0x75,0x76,0x45,0x1c,0xe8,0xac,0x22,0xe7,0x8d,0x4b,0x96, +0x66,0x6d,0xed,0x2a,0xe0,0x83,0xaf,0xbb,0x7f,0xeb,0xdd,0xc5, +0x61,0x34,0x7a,0x90,0xb7,0xab,0xf0,0xaf,0x31,0xc4,0xcd,0xec, +0x4e,0x69,0xa1,0x7d,0x98,0xc9,0x34,0xa7,0xa6,0x36,0xab,0x3f, +0x63,0x4d,0xd2,0x95,0x50,0x89,0xc5,0x57,0x7b,0x49,0xe9,0xe5, +0xdc,0xaf,0x93,0x6f,0x98,0xa7,0xf0,0x07,0x77,0x06,0xad,0xf3, +0xa2,0xe1,0x2f,0xff,0x5b,0xa8,0x24,0xdf,0xf4,0x2d,0x83,0x05, +0xf8,0xeb,0x57,0x3b,0x57,0xe0,0x2f,0x46,0xf0,0xcb,0x34,0x71, +0x91,0xa1,0xb0,0x48,0x13,0xff,0x30,0x86,0x3f,0x34,0xc5,0x31, +0x46,0xc2,0x98,0xc9,0xe2,0x5c,0x43,0x61,0x2e,0x7e,0x7e,0x19, +0x3e,0x17,0x56,0xf7,0x89,0xab,0xdf,0x08,0x1a,0xbd,0xa2,0xc6, +0x6b,0xf8,0x95,0xd1,0x81,0x1b,0x64,0x1a,0x56,0xbc,0x62,0xa1, +0x02,0x17,0x12,0x4d,0xac,0x78,0xcd,0x2a,0xff,0x3d,0x5d,0xe8, +0x22,0x1d,0x5d,0xe6,0x30,0x13,0x4d,0xef,0x1b,0xae,0xc5,0x35, +0x66,0xb0,0x56,0x0b,0x2d,0x4c,0xc1,0x62,0x2a,0xae,0x37,0x83, +0x75,0x9a,0x68,0x62,0x0a,0x26,0x93,0xd0,0xc5,0x14,0x5c,0x70, +0x69,0x1f,0xc5,0xa1,0xc3,0x5d,0x78,0xf8,0x4f,0xf0,0xef,0x42, +0xff,0xd7,0x60,0xca,0x88,0xc5,0x30,0x95,0xd4,0xa5,0xa4,0xd4, +0xab,0xdf,0x61,0x4d,0x93,0x94,0x16,0xa1,0x21,0xeb,0x75,0x38, +0xae,0x58,0xbd,0x83,0xfd,0x35,0xf9,0xe7,0xbc,0xc7,0x15,0x01, +0xed,0xfc,0x3a,0x8f,0xc5,0x41,0xf3,0x0f,0x72,0xcf,0xf4,0xd1, +0x86,0x35,0xcc,0xdf,0xdd,0xaf,0x26,0x5f,0x0d,0x4b,0x89,0x16, +0xaa,0xff,0xc2,0x82,0x3a,0xce,0x22,0x53,0x51,0xfd,0x77,0x56, +0x34,0x10,0x37,0x91,0xe8,0x33,0x89,0xf9,0xb1,0x05,0x67,0x4a, +0x64,0x30,0xab,0x1b,0x67,0xc2,0x18,0x98,0xd8,0x85,0xb1,0x4c, +0x62,0x7e,0x7c,0xde,0xd9,0x1c,0x6a,0x87,0x90,0xed,0x2e,0x1b, +0xad,0x4d,0x1b,0x3c,0xf8,0x9c,0xfc,0xec,0xd2,0xf4,0x52,0xee, +0x1b,0x1c,0x83,0xba,0x26,0xa0,0xc3,0x44,0x2e,0x30,0xdf,0x8a, +0x63,0x37,0x96,0x9a,0xf3,0xcf,0xba,0xfb,0xbb,0x2b,0xae,0x4b, +0x3b,0xf4,0x9e,0x8d,0x96,0x9e,0x7b,0xe2,0x1b,0xea,0x50,0x19, +0x54,0x22,0x92,0x23,0x4f,0x1f,0x0c,0x97,0x29,0xff,0x3d,0x99, +0x6a,0xdb,0xdd,0x65,0x42,0xb5,0xb5,0xbe,0x6f,0xb0,0x16,0xb7, +0x98,0xc1,0x56,0x2d,0x74,0x37,0x05,0x77,0x4d,0xdc,0x6e,0x0a, +0xdb,0x34,0xd1,0xc6,0x14,0x6c,0x26,0xa1,0xaf,0x09,0xf8,0xe2, +0x92,0x7e,0xda,0xc3,0x9c,0xea,0xc6,0x53,0x7f,0xc2,0xbe,0x2e, +0xdc,0xf7,0x1a,0xac,0x19,0xc5,0x18,0x34,0x20,0xb9,0x36,0x05, +0x06,0xb9,0xfa,0x7a,0x11,0xba,0x87,0xb6,0x45,0xe5,0x7e,0x99, +0xfd,0x63,0xda,0x33,0x0e,0x2c,0xba,0x31,0x06,0x86,0xc1,0xfe, +0x0e,0xdc,0xff,0xfb,0xbb,0xbf,0x4f,0x74,0x61,0xaf,0xe8,0x45, +0xe5,0xfb,0x88,0x09,0x5d,0x10,0x34,0x3b,0x70,0x45,0xe8,0xf1, +0xfd,0x27,0x42,0x8e,0x27,0xea,0xf1,0xc0,0x25,0xbf,0x49,0x7d, +0x9e,0x91,0xab,0xc3,0x77,0xe6,0x79,0xbd,0xb4,0x81,0xa1,0xce, +0xf7,0x64,0x42,0xa1,0xe0,0x45,0x6d,0x32,0x8d,0xda,0x64,0x1a, +0xb5,0x89,0x26,0x4e,0xa3,0xce,0x11,0x32,0x05,0x1f,0x42,0xb9, +0xed,0xb8,0x1f,0x7b,0xe6,0xc1,0xc7,0xf8,0xfd,0x05,0x3d,0x3d, +0xfc,0xde,0x14,0xbe,0xdf,0x26,0xce,0x37,0x16,0xe6,0x6f,0x18, +0x3c,0xc6,0x93,0x58,0xcf,0x9c,0xb9,0xac,0x04,0xe6,0xa0,0x6e, +0xba,0x18,0xa7,0x3c,0x35,0xd0,0x60,0x70,0x4a,0xd8,0x94,0xad, +0x38,0x4c,0xad,0xd5,0xae,0xb0,0x31,0xab,0x39,0xa5,0x55,0x06, +0xeb,0xf0,0x93,0x1e,0xd8,0x84,0x5e,0xcc,0xd9,0xec,0x33,0xf4, +0xc5,0x41,0x0b,0x9e,0xbc,0x00,0x27,0x61,0x60,0x27,0x7a,0xe1, +0xa6,0x5e,0xda,0x38,0x2f,0x42,0x59,0xbf,0x70,0xd2,0x60,0x31, +0x2e,0x79,0x6a,0x82,0xea,0xe0,0xb5,0x13,0x07,0x18,0x28,0x15, +0x0e,0x93,0x6d,0x58,0x7a,0x9d,0x85,0x52,0x54,0x26,0x1b,0xb0, +0xf4,0x0e,0xab,0x0c,0x9c,0x90,0x4c,0xb0,0x69,0x1f,0x4e,0x35, +0xc0,0x11,0x6a,0xdd,0x8e,0x0d,0x2f,0x72,0x5e,0x9c,0x83,0x19, +0x32,0xfa,0xf5,0xc9,0x38,0x96,0x49,0xdf,0xa5,0xf4,0x0b,0xd3, +0x92,0x99,0xdd,0xae,0x2e,0x2f,0xc7,0x6a,0x56,0x9a,0x98,0x06, +0xae,0x03,0x62,0xb0,0x3e,0x38,0x2b,0x56,0xa1,0x97,0x9e,0x70, +0xe6,0x02,0xee,0x65,0x44,0x22,0xd0,0x46,0x7c,0x35,0xec,0x82, +0xd5,0x0c,0xae,0x17,0xd7,0x93,0x33,0x3d,0xa7,0x2e,0xdd,0x52, +0x85,0xd5,0xa8,0xc7,0x28,0xff,0xbd,0x40,0x7e,0x98,0x88,0xd3, +0x1e,0xeb,0x68,0x23,0xe2,0x64,0x66,0x43,0xf6,0xee,0x47,0x6a, +0x72,0x9d,0x3e,0xc5,0x06,0xc6,0x23,0x22,0xbe,0x54,0xfd,0x5b, +0xf9,0x29,0x56,0x61,0xae,0xa0,0x9d,0xed,0x06,0xe1,0x32,0x0e, +0x45,0x1f,0x36,0xd5,0x98,0xaa,0xcf,0xb4,0x66,0xa7,0xb7,0xaa, +0x0b,0x5b,0x15,0xdb,0xc4,0x38,0x56,0x3e,0x42,0x50,0x22,0xe2, +0xe5,0x27,0xc2,0x65,0x46,0xbc,0x8c,0x1a,0x44,0xb8,0xbc,0x54, +0xbc,0xcc,0x28,0xcb,0xbd,0x04,0x4b,0x02,0x8e,0x17,0xd1,0x11, +0xae,0xeb,0xe0,0x75,0xb4,0xdc,0x05,0x96,0xe2,0x2a,0xf4,0xdb, +0x25,0x24,0x5e,0xc4,0x50,0x46,0xfc,0x4b,0x88,0x22,0xd8,0xf3, +0xaf,0x6a,0x3f,0x49,0xaa,0x69,0xc9,0x60,0x23,0x55,0x6d,0x8c, +0xb4,0x79,0xe9,0xa0,0x6a,0x6d,0xea,0xf2,0x0a,0xac,0x62,0x21, +0x58,0xda,0xbc,0x74,0x15,0xd5,0x61,0x15,0x83,0xeb,0xde,0xea, +0x70,0xf1,0xb6,0x2a,0xac,0x92,0x74,0x80,0x8f,0x84,0x2c,0x82, +0x5d,0xfb,0x51,0xd3,0x14,0x59,0xfa,0x55,0xb5,0xcf,0xb3,0x5e, +0x24,0xc0,0x4c,0x19,0xcd,0xdd,0x64,0x64,0x24,0x2b,0x3d,0x63, +0x9a,0xdf,0x7d,0x55,0x26,0x2b,0xbc,0x54,0xc1,0x08,0x63,0xd8, +0x86,0xaa,0xe8,0xaa,0xd8,0xdc,0x2f,0x1f,0x0d,0xb3,0x99,0xa3, +0xf8,0xb1,0x13,0x72,0x9a,0x38,0xb2,0x52,0x9f,0xff,0x11,0x46, +0x56,0xfd,0x78,0x16,0xc6,0x72,0xd2,0x20,0xd0,0x88,0xca,0xc5, +0x3f,0xe0,0xb8,0x8a,0x3e,0x7e,0x1a,0x7c,0xe2,0x0a,0x43,0x8f, +0x4a,0x23,0xbe,0xf3,0xc4,0x2e,0x5c,0xc8,0x64,0x18,0x28,0x81, +0x8c,0x7e,0x6d,0x56,0x93,0xba,0xf0,0x1a,0x3d,0x58,0x51,0xd5, +0x98,0xe0,0x2c,0xd0,0x83,0x59,0x0c,0xce,0x15,0x37,0xbc,0xdf, +0x48,0x75,0x16,0xea,0x53,0x01,0x87,0x0b,0xee,0xe4,0x2a,0x14, +0xcb,0x65,0x58,0x7c,0x15,0x9e,0x2a,0xd2,0x18,0x98,0x8c,0x9f, +0x10,0x63,0x21,0xac,0x87,0xc5,0x2d,0xc3,0x7b,0xc4,0x30,0x63, +0xd6,0x55,0xbc,0x4d,0x60,0xb9,0x70,0x79,0x3a,0x7a,0x0f,0xda, +0xd8,0x8c,0xda,0x98,0x16,0x6e,0x61,0x11,0xb5,0x71,0x18,0xb5, +0x31,0xfc,0x45,0x6d,0xfc,0xf0,0xad,0x8d,0x65,0xd4,0xc6,0x2b, +0x07,0x6d,0xac,0x23,0xdc,0x25,0xa7,0x72,0x4e,0xe6,0xe6,0xaa, +0x82,0x81,0x2e,0x9a,0xb3,0x7b,0x4f,0x06,0x9f,0x08,0x56,0x43, +0x07,0x3d,0xda,0xed,0x84,0xe1,0x61,0x5d,0x5a,0x38,0x66,0xe2, +0xe4,0x06,0x73,0x1e,0x56,0xc3,0xdc,0x4b,0x60,0x9c,0x02,0xa7, +0x69,0xbd,0xbc,0xc0,0xf8,0x3c,0x23,0xde,0x6d,0x86,0xb7,0x1c, +0xaa,0xac,0x5d,0xf9,0x06,0x87,0x6e,0x9d,0x12,0x73,0x4e,0x91, +0x42,0x8b,0x4b,0x6f,0x30,0x4e,0xd1,0xc7,0x91,0xd4,0x88,0x8d, +0x3f,0xe5,0xbe,0xf5,0xc7,0x76,0x6a,0xc4,0x71,0x92,0x3f,0x5e, +0x7f,0x08,0xb5,0x46,0x16,0xc2,0x24,0x7f,0x6c,0xa0,0xfe,0xd8, +0xc0,0xe0,0x96,0x7f,0xfd,0xb1,0x81,0xfa,0x43,0xf0,0xc6,0xab, +0xc4,0xe5,0x50,0x5c,0xa3,0xba,0x30,0x7a,0x97,0x28,0x63,0xd7, +0xe7,0x05,0x5c,0x57,0xfb,0x99,0xf2,0x90,0xac,0x56,0x75,0x30, +0x63,0x8d,0x33,0x95,0x68,0xd3,0xa8,0x0c,0x43,0xa4,0xa8,0xec, +0x0c,0x41,0x4d,0x73,0x64,0xe8,0xfd,0xaa,0x9f,0x67,0xfe,0x14, +0x0f,0xb3,0x64,0x30,0x1d,0x53,0x70,0x88,0x74,0xbf,0xc7,0x92, +0xd3,0xda,0x25,0xa7,0xc5,0xb1,0xf0,0x44,0xa1,0x41,0x2e,0x7c, +0x49,0xcb,0x73,0xef,0x00,0xf4,0xc2,0xfc,0xd5,0x17,0xe4,0x1a, +0xe2,0x3e,0x86,0xe2,0x64,0x1c,0x41,0x2d,0xb0,0x04,0x2d,0x66, +0x00,0x69,0xb8,0x59,0xc2,0x7c,0xb4,0x64,0xc5,0x9e,0x73,0x14, +0x8f,0xa8,0x2f,0x26,0x31,0x38,0xf5,0x5f,0x5f,0x4c,0xa2,0xbe, +0x80,0x97,0xb0,0x85,0xa0,0x0b,0xfd,0x8c,0x0b,0x0b,0xce,0x2a, +0xf4,0xed,0x2e,0x38,0x9f,0x51,0x16,0x8a,0x85,0x37,0x04,0x4a, +0x5b,0x98,0xdc,0xb0,0xf2,0xf2,0xb2,0x9a,0x9c,0x26,0x59,0x8b, +0xe2,0x2b,0x63,0x81,0xc7,0x10,0x16,0x79,0xe3,0xf4,0xdf,0xd5, +0x9b,0x74,0x1c,0xd8,0x55,0xfe,0x56,0x38,0x41,0x4f,0xad,0xc4, +0x1c,0xc6,0xf6,0x95,0xd4,0xc7,0x7e,0x25,0x35,0x97,0x43,0xce, +0x3d,0x3a,0x08,0x1a,0x13,0x04,0x03,0x26,0xbe,0x57,0x49,0xd4, +0x62,0xe0,0x3e,0x84,0x90,0xfd,0xbe,0x81,0xbb,0x7d,0x02,0x33, +0xc3,0x79,0xcc,0xf9,0x9e,0xc1,0x1b,0x0a,0x4a,0x35,0x96,0x0a, +0x97,0xb5,0xd0,0x6b,0xf0,0xc9,0x04,0x53,0xc9,0xb3,0x2d,0xea, +0xc2,0x0c,0xea,0xd9,0x00,0xc9,0xb3,0xbf,0x50,0xcf,0x3e,0x78, +0xeb,0x59,0x42,0x3d,0xbb,0x5a,0xf2,0xec,0xdf,0x3b,0xe4,0x54, +0x4e,0x05,0x93,0xd6,0x90,0xd6,0x9c,0xdc,0xaa,0x97,0xc6,0xdb, +0xe3,0x7c,0xea,0x98,0x1d,0x8b,0x39,0xb8,0x8b,0x8d,0x58,0xc3, +0x62,0xf3,0xbf,0xae,0x7a,0x91,0xfb,0x16,0x15,0xfe,0x57,0x57, +0x09,0xf6,0x6c,0x9d,0x5d,0x7d,0x6f,0xcd,0xcd,0x8a,0x87,0xb2, +0x7a,0x85,0xc9,0x65,0x88,0x85,0x73,0x03,0x78,0x8e,0xc6,0xc2, +0xb9,0x7e,0xfa,0xcf,0x0a,0x28,0x67,0xc4,0x5f,0x36,0xfd,0xaf, +0x7e,0x94,0xb0,0x61,0xc3,0x20,0x36,0x8c,0x8f,0x21,0x3a,0xbf, +0xba,0x81,0x46,0xa8,0x34,0x4d,0x63,0x7d,0x1f,0x6e,0x66,0x8e, +0x5e,0x97,0xa6,0x69,0x5c,0x4c,0x1c,0x48,0xee,0x48,0xf7,0xed, +0xe0,0x35,0x3c,0x71,0xe2,0x5e,0x5c,0x7f,0x88,0x53,0x7c,0xc4, +0xee,0x1d,0x5c,0x64,0x28,0x59,0x8f,0x7f,0x9e,0xf5,0x7b,0xe1, +0xbd,0xc2,0xc8,0x5e,0xde,0xf6,0x80,0xd9,0x01,0x93,0x30,0x0e, +0xba,0x61,0x39,0x9b,0x81,0x07,0x1a,0x70,0xd1,0x9d,0x49,0x25, +0xd6,0xd2,0x2c,0x8d,0x0c,0x70,0xe6,0x4d,0x73,0x95,0x14,0x55, +0x70,0xf1,0xff,0x1f,0x03,0x7e,0x65,0x9a,0xb3,0xde,0xc3,0xdb, +0x7f,0x62,0x00,0x78,0x78,0x13,0xe9,0xe7,0xe9,0xce,0xb8,0x53, +0x6b,0x4e,0x0f,0x4e,0xef,0x58,0x42,0x71,0x8e,0x92,0x88,0xff, +0xc0,0x05,0x61,0xb1,0xa8,0x44,0x2e,0xe2,0x4d,0x69,0xba,0x47, +0xa6,0xfc,0x21,0xd1,0xdf,0x44,0x21,0xee,0x86,0xbc,0x0c,0x6e, +0x88,0x23,0x19,0x7d,0xfc,0x8c,0x60,0xc7,0x23,0xe8,0x60,0x04, +0x6e,0x25,0xc1,0x6b,0x8f,0xe0,0x1a,0x23,0x72,0xd4,0xfe,0xcb, +0xb0,0xe3,0x1b,0x16,0xe4,0x2a,0x70,0x6d,0x19,0x5e,0x63,0xb0, +0x47,0xbc,0x47,0x60,0xbe,0xd0,0x37,0x17,0xdd,0xd9,0x14,0x53, +0x25,0x30,0xa2,0xce,0x4b,0xa5,0xce,0xe3,0x15,0xeb,0x44,0x7b, +0x56,0x3e,0x0c,0x9e,0x12,0xb1,0xef,0x0b,0xa1,0x8f,0x11,0xfb, +0xa4,0xdf,0x47,0xfb,0xd6,0x8b,0x7d,0x8c,0xf2,0xaf,0x02,0x8d, +0xbf,0x86,0x90,0xb7,0x78,0xd4,0xe5,0x58,0xfb,0x93,0x84,0x47, +0x54,0xad,0x79,0x54,0x2d,0x25,0x49,0xad,0xef,0x3e,0xe0,0x51, +0x1a,0x0b,0xcf,0xc5,0x46,0xf2,0xd5,0xf5,0x5b,0x8f,0x7a,0xbe, +0xe5,0xc4,0x99,0x57,0x84,0xf9,0x6c,0xfc,0xd9,0xd3,0x67,0x8f, +0xa8,0x81,0x3d,0x1e,0x6a,0x68,0x44,0x5b,0x08,0x0b,0x4f,0x89, +0x38,0x15,0x76,0x50,0x16,0x1e,0xa1,0x74,0xe4,0x3e,0x93,0x51, +0x93,0x56,0x9b,0x54,0xc3,0x81,0xe5,0x80,0x78,0x5e,0x1f,0x0a, +0x18,0x6b,0x9c,0x35,0x8b,0xe6,0xf8,0x74,0x1c,0xc5,0xcd,0x86, +0x04,0x29,0x19,0xf4,0x68,0x32,0xe0,0xec,0x7f,0xc3,0x5e,0x8b, +0x86,0xbd,0x5c,0x0d,0x5f,0x90,0x01,0xb1,0x56,0x9f,0x55,0x96, +0xbb,0xc2,0x71,0x22,0x6d,0x48,0x31,0x80,0xae,0x20,0xd7,0x43, +0x39,0xba,0xe8,0xd3,0x3c,0x5a,0x8b,0xfb,0xf4,0x61,0x1f,0xa6, +0x5d,0xa0,0x9d,0x5f,0xd8,0x00,0x1b,0x00,0x5d,0x24,0xe8,0x99, +0xd7,0xf7,0xce,0x5f,0x9b,0xed,0xe6,0xab,0x97,0x95,0xce,0xca, +0x5c,0xc2,0x29,0x4e,0xc4,0x13,0xec,0xa6,0xde,0x32,0x41,0x8e, +0xaa,0x55,0xf7,0x3c,0x9b,0x7a,0x8b,0xc2,0xec,0x32,0xaa,0xd6, +0x08,0x49,0xad,0x1f,0x3f,0x20,0x76,0x3e,0x2b,0x6c,0x50,0x09, +0x5d,0xea,0x37,0xd7,0x7e,0x7d,0xbb,0x3b,0xdf,0xf8,0x75,0xe9, +0x0f,0x69,0x2f,0x39,0xcc,0xc1,0xbd,0x04,0x17,0x50,0x01,0x17, +0x30,0xb8,0x84,0x0a,0xf8,0xce,0x59,0x0b,0xa4,0x60,0x93,0x3f, +0x91,0x07,0x92,0xf5,0x15,0x9a,0x15,0x93,0xb2,0x43,0x4c,0xf8, +0x57,0x7b,0x5f,0x79,0xde,0x77,0xe7,0x14,0xf6,0xb8,0xe4,0xff, +0x02,0x24,0x2c,0xa5,0x00,0x79,0x9b,0xf7,0xc2,0x21,0x71,0x3b, +0xb9,0x70,0xa5,0xf7,0xbb,0xc6,0xc7,0x56,0xc5,0xbc,0xf3,0x4a, +0xeb,0xcd,0x66,0xfa,0x9c,0xeb,0xf7,0xa1,0xdf,0x7f,0xaf,0x8a, +0xd1,0xa6,0xa0,0x23,0x7e,0x85,0x43,0x99,0x14,0x63,0xa5,0x97, +0x4c,0x6d,0x7a,0x7a,0x9d,0xba,0xb0,0x3a,0x8e,0x4d,0xc6,0x91, +0xcd,0x94,0xc0,0x68,0xe2,0x9c,0xaa,0x16,0x7e,0xfd,0x7d,0xe3, +0x07,0xce,0x0f,0x38,0xc5,0xb8,0xb8,0xff,0x44,0x8f,0xd7,0x30, +0x9d,0x98,0xc2,0x54,0x36,0x08,0xa7,0x18,0x4f,0x59,0xbc,0xb8, +0xd2,0x8e,0x7f,0xf1,0xe2,0x3a,0x8c,0xcd,0x85,0xd5,0x5c,0x03, +0xe5,0x77,0x1b,0xe5,0x9b,0x49,0x2f,0xe6,0xb2,0xd2,0xc0,0x65, +0x5c,0x89,0x5e,0x22,0x7f,0xd8,0x23,0xd2,0x33,0x82,0xf6,0x02, +0xbb,0x8c,0x60,0x09,0xe3,0xb8,0x42,0x6f,0xcb,0x82,0x5d,0x65, +0x16,0x7c,0x63,0x69,0x75,0xd9,0xf9,0x72,0xce,0x1a,0xf2,0x5a, +0xd9,0x0a,0xf7,0x5a,0xaf,0x7a,0xbf,0xf3,0x1d,0xfc,0xe2,0xbe, +0xf5,0x37,0x5d,0x1f,0x71,0x8a,0xd9,0xb8,0x9c,0x1a,0x79,0x3f, +0x4e,0x35,0xfe,0x6f,0x23,0x6b,0xff,0xef,0x46,0x2e,0x60,0xc1, +0x5b,0xd2,0x78,0x21,0xd5,0x78,0x21,0x23,0x8c,0x37,0x24,0x59, +0x26,0xd5,0xa6,0xad,0x56,0x1c,0x9e,0x63,0x1a,0x5a,0xca,0x3a, +0x0a,0xfa,0x38,0xf1,0x88,0x38,0xe2,0xbd,0x99,0x17,0x52,0x33, +0x83,0x43,0x1c,0x09,0x37,0xdd,0x6f,0xb4,0xdb,0x48,0x1a,0x56, +0x75,0x3b,0x66,0x79,0xd8,0x5d,0xcd,0x3b,0x2a,0x28,0xd2,0x75, +0x02,0x7e,0x36,0xf8,0xf4,0xe8,0x50,0xe6,0x66,0x6b,0xd6,0xb5, +0x64,0xf5,0x84,0xa6,0x98,0x4b,0x0f,0x55,0xf1,0x21,0x93,0x74, +0x3e,0xb1,0x36,0xbe,0x9a,0xbe,0xbb,0x57,0x3c,0x69,0x24,0xad, +0x33,0xa4,0xb2,0x8a,0xf1,0x8f,0x8a,0x2d,0x56,0x07,0x01,0x16, +0xf5,0xe3,0x71,0x81,0x18,0xd0,0xc4,0xdb,0x67,0x00,0x13,0xd9, +0xe3,0x68,0xef,0x8a,0x43,0x50,0x05,0x87,0xd5,0x5a,0xf3,0x30, +0x05,0x94,0x1b,0x60,0xe2,0x19,0x70,0xe5,0x80,0x15,0x19,0xc6, +0xb0,0x70,0x6f,0xbb,0xda,0x8f,0x4c,0x43,0x5a,0x66,0xad,0x3a, +0x6c,0x63,0x8d,0x33,0x94,0x14,0x95,0x70,0x8f,0x96,0x6d,0xea, +0x5c,0x33,0xea,0xdc,0x2e,0xc7,0x9a,0x1f,0xb3,0x5e,0x0e,0x96, +0xed,0xd9,0x54,0xd5,0x8f,0x24,0x55,0xbf,0xfd,0x90,0x26,0xc9, +0xac,0x3c,0xd9,0x97,0x04,0x2c,0x77,0x5e,0x66,0xb5,0xa9,0xcd, +0x87,0x6f,0xb9,0xd9,0xf8,0x63,0xd1,0x37,0x1c,0xfe,0x81,0xce, +0x64,0xf7,0x1d,0x87,0x17,0x9e,0xfd,0x66,0xbe,0x7c,0xa5,0x6e, +0xcd,0x82,0xc2,0xf5,0x1c,0xee,0xa6,0x0d,0xfe,0x34,0x6a,0x92, +0x69,0x0c,0x6a,0xfd,0x9b,0x05,0xd3,0xa4,0x42,0xfc,0x9b,0x50, +0x48,0xf0,0x52,0x28,0x4e,0xb3,0xc6,0xe1,0x6a,0x9d,0x8e,0x95, +0x3f,0x64,0xbe,0x88,0x87,0x39,0x32,0x98,0x80,0xa9,0x9a,0xd2, +0x72,0x15,0x5f,0x32,0xcd,0x19,0x6f,0xf7,0x4b,0x8f,0xa6,0xc4, +0xfd,0x38,0x31,0x12,0xae,0xf7,0xb2,0x8a,0x39,0x18,0x4d,0x50, +0x05,0xf4,0x41,0x85,0x01,0x4f,0x6f,0xb2,0x4f,0xdf,0x79,0xb5, +0xf5,0x8e,0x86,0xed,0xb5,0x4b,0x0b,0x37,0x75,0xe6,0xf2,0x81, +0x37,0xec,0x9f,0xf8,0x36,0x9d,0x6f,0xae,0xff,0x32,0xeb,0x22, +0x07,0xca,0x19,0x24,0x48,0xcf,0x79,0x95,0xb5,0x4e,0xc3,0xce, +0x86,0x25,0x85,0x9b,0x3b,0xf3,0x79,0xff,0x1b,0x0e,0xdf,0x78, +0xd5,0x55,0xb6,0x56,0xdd,0xcb,0xbb,0x44,0xaf,0xa7,0x93,0x60, +0x23,0xbb,0xa5,0x0e,0x7a,0xcd,0x3b,0xea,0x97,0x15,0x49,0x5d, +0xb8,0xcf,0x6d,0xbb,0x47,0x3e,0x35,0x65,0x8d,0xf5,0x0f,0x73, +0xfa,0x38,0x45,0x94,0x38,0xfa,0xbd,0xc4,0x2a,0xd2,0x1e,0xec, +0xb3,0x70,0x08,0x81,0xa3,0xbd,0x62,0x8d,0x11,0x44,0xa2,0x31, +0xc6,0x19,0x0a,0x77,0xfa,0x30,0x99,0x52,0x0a,0x27,0xf9,0xd7, +0xc4,0x0b,0x37,0xeb,0xe3,0xa2,0x15,0x38,0xbc,0xda,0x90,0x2f, +0xa9,0xc9,0x6d,0xca,0x6e,0xe1,0xc4,0xea,0x01,0xf9,0x22,0x36, +0xef,0x56,0xd6,0xa3,0xd4,0xaf,0x39,0x21,0x00,0x5b,0xc8,0x40, +0x73,0x73,0x4f,0xf1,0x55,0xee,0xcb,0x2e,0x5a,0x4d,0x52,0xf3, +0x92,0xf2,0xce,0xe5,0x19,0x25,0xf3,0x5e,0x2b,0xb7,0x2d,0x5b, +0x60,0x54,0x6e,0xcb,0x57,0x64,0x9f,0x2f,0x2c,0x2a,0x2e,0xb3, +0xaf,0x73,0x6a,0x73,0xdf,0xee,0xb6,0xd2,0x7f,0xf1,0xbe,0x4c, +0x53,0xfe,0xb7,0xec,0x1f,0xca,0xef,0x37,0xdf,0x71,0xf8,0xd6, +0xe3,0xe7,0xc0,0xec,0x2e,0x7e,0x59,0xd6,0xda,0xe2,0x1d,0x15, +0x1c,0x1a,0xc2,0x62,0x72,0x9a,0xfe,0x39,0x45,0x39,0x44,0x3c, +0x13,0x60,0xe6,0x60,0x6b,0xe2,0x62,0x54,0x65,0xd3,0xe0,0xd6, +0xc6,0xa1,0x91,0xf8,0x37,0x11,0xfe,0x47,0x5f,0xfc,0x1f,0x16, +0x42,0xa4,0x05,0xb7,0x57,0xc0,0xb5,0xa9,0xb8,0x80,0x4d,0x31, +0x57,0x02,0x0d,0xa6,0x3e,0x23,0x83,0xa6,0xd8,0x0c,0x71,0xad, +0xe8,0xc7,0x0a,0x8c,0xb0,0x92,0xac,0xc1,0x6b,0x0f,0x58,0xb8, +0x86,0x9f,0x92,0x95,0x14,0x7a,0x29,0x26,0x05,0x08,0x66,0xa4, +0x39,0xb3,0x29,0xbf,0xba,0xd0,0xbe,0x8c,0x77,0xf5,0xb1,0x0f, +0xd2,0xf5,0x77,0xcc,0xf1,0x2c,0xf0,0x2e,0xe5,0xe0,0xaf,0x0e, +0x85,0x2f,0x73,0xa6,0xec,0x54,0x79,0x85,0x6a,0x9b,0xdc,0xbe, +0x53,0x91,0x39,0x83,0x45,0xf5,0xc3,0x4b,0x56,0xa3,0x92,0x5a, +0xb3,0x7d,0xc7,0x9d,0xc2,0x3b,0xc9,0x8f,0xa4,0xf9,0x02,0x9f, +0x32,0xce,0x47,0x9d,0x8f,0x39,0x1f,0x8b,0x37,0xe5,0x61,0x5c, +0x12,0xcc,0xca,0xf8,0x23,0x23,0xba,0x9d,0xd7,0x8d,0xdc,0x14, +0xb9,0xe1,0x10,0x07,0xa3,0x61,0x0c,0xfb,0x82,0xf6,0xd0,0x1f, +0x19,0x41,0xa0,0x5d,0x76,0x1b,0x3f,0x2f,0x7d,0x6b,0x86,0x71, +0x0e,0x07,0x9f,0x53,0xc8,0x14,0x5f,0x5b,0x08,0xb4,0x69,0xe6, +0x14,0x7e,0x04,0x34,0x84,0xfc,0xd5,0x68,0xc5,0xa6,0x98,0x29, +0xc1,0x16,0x8a,0xf4,0x29,0xcd,0xea,0xf0,0x52,0xa1,0x21,0x2e, +0x60,0x85,0xa7,0xd0,0x4d,0xc4,0xfc,0x4b,0x42,0x3e,0x23,0xe6, +0xd3,0x16,0x57,0xc8,0xd7,0x11,0xf3,0x69,0x3a,0xe8,0xcb,0x3d, +0xc8,0x32,0xa6,0xb4,0xce,0x35,0xdf,0x31,0xd7,0x36,0x53,0xe6, +0xe5,0xd8,0xbc,0xb7,0x26,0xa8,0x72,0xb7,0x0c,0xd7,0xc0,0x50, +0x7d,0x4a,0x98,0x43,0x8d,0x20,0x74,0x36,0x7a,0x2a,0x64,0xfd, +0x70,0x8a,0x02,0x5d,0x44,0x3f,0x44,0xc0,0x0a,0xd4,0x99,0x2c, +0x61,0xcf,0x37,0xb4,0xb8,0x65,0xd2,0x5a,0x72,0x0d,0x83,0x5e, +0xc0,0x39,0x56,0xf1,0x02,0xb5,0x28,0xd8,0x85,0xa2,0xa6,0x15, +0xd5,0xad,0xcb,0xb1,0xea,0xc7,0x0c,0x1a,0x9d,0xb3,0xa5,0x9d, +0x7c,0x53,0xa7,0x48,0xe9,0xf0,0xe8,0x43,0x74,0x9e,0x60,0xc1, +0x50,0xca,0x7c,0x19,0x0d,0x73,0x19,0x03,0xaf,0xf1,0x17,0x09, +0x57,0x47,0x51,0x5c,0xed,0xc7,0x51,0x84,0x1e,0xac,0xc0,0x51, +0xac,0xc2,0x62,0xe9,0xfb,0x50,0x92,0x49,0xcc,0xc7,0xb8,0x8c, +0x50,0x09,0x3e,0xc6,0x05,0x0c,0x78,0xc1,0xc7,0xd4,0x45,0xf4, +0x78,0x05,0x05,0x5e,0x3d,0x39,0x55,0x7c,0x88,0x1e,0xcd,0xdc, +0x23,0xc6,0x42,0x77,0x0f,0xab,0xf8,0x19,0x6d,0x06,0xb3,0x44, +0xd3,0x72,0x50,0x8e,0xb7,0x59,0x42,0xe5,0xd0,0xc0,0x94,0x77, +0x72,0x34,0x65,0xbe,0x95,0xe3,0x24,0x0b,0x46,0x92,0x1c,0xaa, +0x54,0x0e,0x55,0x46,0x38,0xae,0x60,0xc8,0x03,0x18,0x56,0x0f, +0x9f,0xa6,0xc3,0x64,0xae,0x1e,0x1d,0xd8,0xf8,0x92,0xb8,0x92, +0xd8,0x52,0xd3,0x73,0x7c,0x80,0xf4,0xb8,0xd1,0xe8,0xd5,0x38, +0xb4,0xda,0x86,0x4f,0xcb,0x4d,0xc9,0x4d,0xc9,0x2b,0xdc,0x52, +0xba,0xab,0xc6,0xd8,0xc6,0xc0,0xc0,0x7c,0xb3,0x7d,0x89,0x19, +0xff,0x45,0xcb,0x40,0x57,0x6b,0x7f,0xab,0xe1,0x80,0xf9,0x3d, +0xcb,0xa2,0x6e,0x7e,0x53,0x83,0x61,0x9b,0x75,0x2f,0x87,0x59, +0x42,0x2a,0xf1,0xc5,0xf1,0x66,0xf8,0xc9,0x32,0x1c,0x56,0x65, +0xc3,0x17,0x56,0xe6,0x54,0x65,0x56,0x71,0xe2,0xd2,0x5e,0x21, +0x8b,0xcd,0x1b,0xc8,0xba,0x90,0x7a,0x85,0x13,0xd7,0xe0,0x95, +0xf7,0x9a,0xaa,0x4a,0x49,0x33,0xac,0x9d,0x64,0xd6,0xa6,0xd7, +0x26,0xd7,0x73,0xb0,0x94,0x39,0x88,0x9c,0x1b,0x0e,0xdd,0x39, +0xcb,0xb1,0xdf,0xeb,0x5a,0xc0,0x3d,0xae,0xa5,0x95,0xe4,0x3a, +0x67,0x5b,0xa7,0xd9,0x36,0x15,0xf2,0x07,0xea,0xf7,0xb4,0xef, +0xa9,0xe6,0x94,0x85,0x2f,0xe4,0xc7,0x48,0x7c,0x61,0x5c,0x51, +0x6c,0xb1,0x61,0x0c,0x7f,0xc4,0x27,0xca,0xf7,0x90,0x2f,0x87, +0x53,0x4d,0x61,0x1c,0xe3,0x36,0xdf,0x48,0x5b,0x7b,0x6d,0xb9, +0x25,0xff,0xc3,0xb7,0xd7,0x7e,0x6e,0x00,0x8e,0x13,0x3e,0xef, +0x62,0xc4,0xef,0x5b,0x08,0x96,0xfd,0x33,0xf4,0x92,0xfc,0x12, +0x6d,0x1e,0x42,0xb7,0x5a,0x4d,0xb6,0x5a,0xca,0x5d,0xdf,0xdc, +0xb0,0x66,0x8b,0xaa,0xfe,0x01,0x5f,0x63,0x35,0x2b,0x26,0x75, +0x87,0x52,0x27,0x73,0xab,0xae,0xf9,0xb7,0xa7,0x0e,0x0f,0xf5, +0x2f,0xa9,0xd7,0xde,0x6e,0x85,0x21,0xd9,0x8f,0x39,0xea,0x6a, +0x6d,0xd2,0x21,0x7e,0x46,0x19,0xe4,0x0a,0xb4,0xb7,0x10,0x0e, +0xb6,0x63,0xf0,0x57,0x2c,0x1e,0x54,0xd0,0xc6,0x4d,0x07,0x00, +0x95,0x70,0xe5,0xe0,0xe3,0xfd,0x53,0x99,0xd6,0x4c,0xa9,0xc1, +0x9a,0x21,0xfa,0x88,0xc1,0xac,0xb0,0x10,0x28,0xc4,0xc2,0x6d, +0x00,0x06,0x41,0x5a,0xcd,0x86,0xb6,0x98,0x40,0x63,0x8f,0x80, +0x1b,0x11,0x0e,0xe3,0x0c,0x18,0x6f,0x8c,0xe3,0x97,0xc0,0x78, +0x13,0x1c,0x8f,0x93,0xc5,0xc3,0x16,0xc6,0xc2,0x77,0xd4,0x8b, +0x2f,0xa1,0x8f,0x60,0xcb,0x01,0x9c,0x6e,0x83,0x1f,0x51,0x2f, +0x56,0xfc,0x90,0xfe,0x72,0xd0,0x8b,0xe3,0x31,0x75,0x86,0xe4, +0xc5,0xbb,0x1f,0xa2,0x29,0x9c,0xa5,0xdd,0x10,0xf5,0xe2,0x18, +0x0a,0x71,0x63,0x18,0x28,0xc6,0x32,0xb2,0x18,0x74,0x9f,0x32, +0xdd,0x2a,0xdf,0xa2,0xee,0x12,0x06,0x26,0xa9,0x80,0xee,0x0f, +0xa8,0xcb,0x2a,0xa4,0xc7,0xef,0xdf,0xd9,0x79,0x8c,0x14,0x51, +0xc5,0x34,0xec,0xec,0x16,0x83,0x9d,0x44,0xcd,0xec,0xc8,0x12, +0xb0,0xfb,0x96,0x81,0x69,0x2a,0x68,0x37,0x9f,0x9e,0x72,0xc7, +0x07,0xe4,0xbe,0xcd,0x6d,0xfd,0x01,0xdd,0x86,0x46,0x5e,0xff, +0xe2,0xda,0x8b,0x1b,0x1b,0x39,0x71,0x2c,0xba,0x91,0xc7,0xcd, +0xf7,0x2f,0x75,0x5f,0xb2,0xae,0xe1,0xcd,0xf5,0xb7,0x1a,0x6a, +0xdb,0x53,0xeb,0xef,0x00,0x7d,0x02,0xca,0xe7,0xef,0xb4,0x56, +0x3f,0xe1,0x20,0x56,0x98,0x88,0x67,0x98,0xe4,0x92,0xc4,0xd2, +0x73,0xe7,0x0d,0xe2,0xf9,0x43,0x3e,0xe1,0x1e,0xa1,0xae,0x1c, +0xea,0x8a,0x13,0x61,0x1b,0xe3,0x69,0x62,0xe0,0xa9,0x15,0xc0, +0xe1,0x15,0xa8,0x78,0x5b,0x39,0xcc,0x07,0x2b,0x47,0xf5,0xf3, +0xac,0x9f,0x12,0x24,0x5a,0x30,0x8b,0xd2,0x82,0x7f,0x2b,0xc7, +0x20,0x2d,0x48,0x62,0xc1,0x4e,0x52,0x4e,0x93,0x86,0xa8,0x26, +0x03,0xdf,0x9a,0x10,0x64,0x68,0xc5,0x64,0xa4,0xda,0xc9,0x10, +0x60,0x28,0x7b,0x61,0x58,0x71,0x8c,0x19,0xa1,0x25,0xf4,0x84, +0xf5,0x51,0xa7,0x43,0x1e,0x9c,0xb4,0xe4,0xb7,0xad,0x4a,0x42, +0x45,0x4c,0xed,0xa9,0x66,0x8e,0x5e,0x1f,0xcd,0x28,0x0c,0x17, +0xbe,0x57,0x5c,0x53,0x0a,0xb0,0xc3,0x38,0x91,0xc0,0x64,0x5d, +0x9c,0x8c,0xdf,0x19,0xc3,0x77,0x68,0x75,0x09,0xac,0x40,0xab, +0x87,0xf2,0x4c,0x0d,0xca,0x00,0x0c,0x69,0x53,0xb1,0x18,0x67, +0x1b,0xc1,0xec,0xd5,0xec,0xfe,0x93,0xa1,0x27,0x42,0xd5,0x4c, +0x76,0x6f,0x0b,0x36,0x3a,0x98,0xaa,0xcf,0xb7,0x27,0xf7,0x67, +0xb6,0xe5,0x86,0xa2,0xb2,0xe5,0xf6,0x59,0x5b,0x68,0x26,0x80, +0xca,0x0f,0xbd,0x7f,0xc1,0x5e,0x55,0x21,0xd4,0x10,0xa7,0xb1, +0x10,0x20,0x7a,0x4a,0x71,0xa0,0xdd,0x8b,0xda,0xb0,0x01,0x36, +0x53,0xc2,0x0d,0xd3,0x0c,0xfe,0x99,0xdc,0x0f,0x91,0xb0,0xb5, +0x8f,0x55,0x3c,0xa3,0x10,0x24,0xe1,0xc3,0x34,0x2b,0x5a,0xbd, +0x68,0x5e,0x52,0x7c,0x48,0x90,0x3c,0xfa,0x39,0xa6,0x4e,0x95, +0x94,0x7e,0xf8,0xc1,0xa3,0xc7,0x58,0xd0,0x97,0x94,0xfe,0x8c, +0x7a,0xf4,0x33,0x06,0x55,0xc5,0x8d,0xef,0xc5,0xff,0x4c,0x2a, +0x83,0x72,0x5b,0xf9,0x6e,0xf2,0x46,0x6f,0x32,0x46,0xd1,0x86, +0x1e,0x4b,0x43,0x70,0x86,0x13,0x8e,0x57,0xeb,0x74,0x50,0x6a, +0x81,0xd9,0xa9,0x30,0x0f,0xea,0x55,0x61,0x89,0x10,0x4c,0x2b, +0xdf,0x73,0xf4,0xa2,0x3d,0xe1,0x01,0xa9,0x5e,0x2a,0x49,0xf5, +0xf2,0xb9,0x84,0x48,0xf3,0x64,0x14,0x4f,0x32,0xa7,0x31,0xa9, +0x7a,0x4a,0x0f,0xe8,0x1d,0xb3,0xe8,0x1d,0x9b,0x31,0x8a,0x05, +0x5d,0x3c,0x29,0xcd,0x44,0x33,0x82,0xf1,0x0c,0x3c,0x9e,0x42, +0x02,0x70,0x94,0xe3,0x54,0x1d,0xad,0x4a,0x0b,0x3e,0xb3,0x28, +0x39,0x2f,0x31,0x8f,0x13,0x37,0xf5,0x09,0xdd,0x6c,0x46,0x53, +0x72,0x53,0xda,0x55,0x8e,0x52,0xcd,0x65,0x04,0x16,0x19,0xe0, +0x22,0xdc,0x6e,0x02,0xdb,0x69,0x0a,0x8f,0x65,0x33,0x06,0xf7, +0x7d,0xcd,0x4e,0x6b,0x50,0x17,0x56,0x5c,0xe8,0x66,0x15,0xf5, +0x38,0x9f,0x9c,0xee,0x3d,0x75,0xf9,0x0b,0x55,0x1a,0xb4,0x46, +0x8c,0x10,0x4b,0x3f,0x12,0x70,0xd3,0xfd,0x9a,0x57,0x87,0x9d, +0x37,0x5f,0x61,0x52,0xb1,0xa3,0x70,0x0b,0xa7,0x2c,0xff,0x0a, +0x7e,0x25,0x10,0xfc,0x67,0x3f,0x4e,0x60,0x0b,0xda,0xf2,0xaf, +0xe7,0x5c,0xd7,0xcb,0xe2,0x83,0xb7,0xf8,0xad,0xf3,0xd4,0xe7, +0xb0,0xc7,0x00,0x46,0xe1,0x26,0x66,0xff,0xc9,0x10,0xea,0x05, +0xe4,0xf5,0x81,0x30,0xe1,0xa8,0xe2,0xba,0x64,0xd9,0xf4,0x16, +0x5b,0xfe,0x19,0x0c,0x6d,0x80,0x21,0xc9,0x30,0x95,0xa3,0xe4, +0xea,0x9f,0x8b,0xf0,0x0f,0x70,0x03,0x0c,0x5e,0x87,0x3b,0x64, +0x6f,0x8f,0xf7,0x15,0xef,0x36,0x13,0x7f,0xfe,0xbc,0x59,0x91, +0x61,0x8e,0x01,0x27,0xfa,0xe2,0x38,0x82,0x8d,0xfb,0x3f,0x30, +0xdf,0x9f,0xb2,0x5f,0x0e,0x36,0x5c,0x4b,0xff,0xdf,0x98,0x2f, +0x78,0x49,0xa6,0x9f,0x4f,0xe3,0x6d,0x3e,0x03,0x8d,0xe2,0x54, +0x72,0x2a,0xfd,0x64,0x7a,0x86,0x2a,0x6c,0x84,0x45,0x18,0xcc, +0x8a,0x7f,0xf9,0x0c,0xfa,0x82,0x36,0x59,0xf3,0x07,0x79,0x6f, +0x6a,0x1d,0x01,0x15,0xd8,0xd9,0x81,0x3b,0x1f,0x83,0x76,0x1b, +0x6a,0x7f,0x47,0x99,0x93,0x7a,0x43,0xbb,0x3d,0x35,0xf2,0x94, +0x5b,0xc6,0x9b,0x71,0xb4,0x05,0x8c,0xd6,0xc6,0x39,0x16,0x30, +0x67,0x21,0x7e,0x6c,0x01,0x1f,0x2f,0xc2,0x49,0x96,0x30,0x49, +0x1b,0x17,0x9a,0x4b,0x9b,0xb5,0xb2,0x0a,0x56,0xda,0x9a,0xd5, +0x89,0xe6,0xb9,0x1d,0xcd,0xf3,0x4e,0xa7,0xaa,0x5f,0xd2,0x7e, +0x8f,0x03,0x35,0x19,0x8c,0xc6,0xd4,0x59,0x92,0x68,0xb7,0x3f, +0x44,0xc5,0x7e,0x56,0xfe,0x99,0xa2,0x92,0xc6,0xff,0xfa,0xca, +0x2b,0x56,0xea,0xd5,0x2f,0x53,0x60,0x58,0x2c,0xcc,0xe4,0x6a, +0x71,0x1c,0xdb,0x76,0xad,0xf3,0x8f,0xbc,0x3b,0x5c,0x13,0x9a, +0x99,0xc2,0xe7,0x6c,0xe0,0x36,0xb3,0x19,0x7a,0xeb,0x38,0x2b, +0x98,0xc4,0x1e,0xc3,0x61,0x91,0xf3,0x03,0x57,0xed,0xee,0x3d, +0x70,0xf3,0xd0,0x43,0xf3,0x50,0x3e,0x69,0x6a,0xce,0x92,0x9a, +0xed,0x41,0x56,0x3e,0xf6,0xce,0x0e,0xb5,0xf6,0x7c,0x65,0x5d, +0x71,0x5d,0x6e,0x03,0xa7,0xd3,0xf7,0xd8,0x03,0x46,0x4d,0x00, +0x5f,0x26,0xa5,0x5b,0x49,0xa1,0x27,0xb4,0x12,0x1c,0x49,0x43, +0x6f,0x24,0x23,0xfc,0xe4,0x49,0xb4,0x17,0x3e,0x66,0x9f,0xa1, +0x8c,0x2c,0x5c,0xf8,0x8c,0x4a,0x8b,0x99,0xe4,0x54,0xc5,0xc9, +0xaa,0x5a,0xd5,0x2f,0x61,0x24,0x1a,0xb2,0xca,0xbf,0xff,0xaf, +0x94,0x2c,0xe3,0x2d,0x25,0x7b,0x1f,0xd4,0xff,0x45,0xc9,0x1e, +0xab,0x88,0x5a,0x82,0xbb,0xa0,0xc5,0x62,0x1a,0xae,0x27,0x14, +0xf9,0xc6,0xc0,0x0c,0xa6,0x07,0xc7,0x10,0x7a,0x30,0x1b,0xc7, +0xb0,0x62,0xe7,0xa6,0x0f,0x4c,0xed,0x15,0xd2,0xbe,0x8e,0xa7, +0xef,0xe1,0x07,0x37,0xfa,0x9e,0x4d,0x8f,0x67,0x33,0x62,0x19, +0xf2,0xff,0xc9,0xaf,0xa0,0x3d,0x83,0x74,0xba,0xf5,0x98,0x35, +0x5a,0x54,0x34,0xf0,0xd6,0x1d,0xc6,0x6d,0x66,0x95,0x1c,0x58, +0x6b,0x91,0xaa,0xa5,0xe5,0x38,0x34,0x6b,0x69,0x7b,0x2e,0x1f, +0xfc,0x9d,0xc7,0x1f,0xae,0x4f,0x38,0x8c,0xc4,0x6e,0xe2,0x76, +0x28,0xae,0x4a,0x1d,0x62,0x0c,0x28,0xa8,0xec,0x28,0x08,0xbc, +0xaa,0x26,0x51,0x9b,0xd4,0xd4,0x46,0x75,0xd0,0x60,0x2d,0x52, +0x95,0x70,0x31,0x8b,0x42,0x14,0xa9,0x79,0x9c,0xf3,0x57,0xe2, +0x2f,0xb4,0xe4,0x45,0xce,0x09,0x9c,0xea,0xb1,0x91,0xe2,0x9b, +0x8e,0xb4,0xa2,0xd2,0x2b,0xc1,0x03,0x5e,0x49,0x31,0x5d,0xf9, +0x6f,0x43,0xd3,0x35,0xd8,0xd0,0x0c,0x22,0xd7,0xb4,0xff,0xbd, +0xa1,0x89,0x65,0x05,0x1e,0xa7,0x91,0x9f,0x41,0x98,0xc9,0x8a, +0x8d,0x94,0x1a,0x68,0xd0,0x90,0xd2,0x90,0x36,0x95,0x8e,0x22, +0xaf,0x40,0x98,0xc6,0x2a,0xb6,0xa0,0xe1,0x7b,0x65,0x34,0x24, +0x58,0x9a,0x81,0x14,0x48,0x6d,0x3a,0xd1,0xe6,0x35,0x04,0x77, +0x61,0xf0,0xf7,0x86,0x0b,0x50,0xc6,0x24,0x15,0x24,0xe4,0xc7, +0x17,0x98,0xa5,0xf2,0x41,0xeb,0x9c,0xd6,0x9b,0xe8,0x36,0x7a, +0xf0,0xf9,0x25,0xb9,0xe5,0xd9,0xd2,0x02,0x3f,0x9a,0x68,0x6a, +0x06,0xa6,0xc8,0xe1,0x69,0x13,0xa1,0xad,0x1b,0x4f,0x30,0xca, +0xc2,0x0d,0xc1,0x87,0xec,0xbe,0xe5,0xfa,0xc5,0xee,0x9a,0xe2, +0x96,0x8a,0xab,0x39,0x97,0xcc,0x32,0xf9,0x20,0x3d,0xf7,0x2d, +0xf6,0x3b,0xab,0x77,0x55,0xad,0x29,0xd8,0xc2,0xc1,0xaa,0x62, +0x12,0x1b,0xda,0x51,0xb8,0xfb,0x92,0xfb,0x35,0xff,0x1a,0x59, +0x59,0x5b,0xd9,0x40,0xde,0x15,0x53,0xfa,0x26,0x5d,0xf7,0xed, +0xb6,0x3b,0x4b,0x6c,0x4b,0x8c,0xf2,0x4c,0x5d,0xe3,0xf8,0x83, +0xbe,0x21,0x3e,0x7b,0xbc,0x38,0x5c,0x29,0x46,0xf5,0x75,0x09, +0xc4,0xb4,0x4f,0x88,0xc2,0x2c,0x26,0x39,0x2b,0x29,0xeb,0x5c, +0x16,0x07,0xd1,0x2a,0xfe,0x37,0x5c,0xaf,0xfb,0xd6,0x97,0x36, +0x57,0x5c,0xc9,0xbb,0x68,0x9a,0xc5,0x07,0xe9,0xbb,0x6c,0x76, +0xd8,0x55,0xb7,0xb3,0x76,0x6d,0xe1,0x76,0x4e,0x91,0x75,0xeb, +0x2d,0x0d,0xb2,0xfc,0x40,0x83,0x12,0xfe,0x4f,0x68,0x10,0x7e, +0xfe,0x2f,0xdb,0x1f,0x24,0x3c,0x7a,0x58,0x43,0xe0,0x5b,0x81, +0xe0,0xb7,0x2c,0x7e,0x95,0x4a,0xba,0xca,0x3b,0x6a,0x1b,0xeb, +0x6b,0xdc,0xab,0x5c,0x4b,0x3d,0x2a,0xeb,0x79,0xdf,0xf3,0x6e, +0x95,0x4e,0x15,0xd5,0xb5,0x65,0xf5,0x79,0xb5,0x76,0x85,0x7c, +0x90,0xab,0xb7,0x93,0xab,0x8b,0x53,0xb9,0xe3,0x79,0xd7,0x42, +0x0f,0x47,0xbe,0x32,0xb0,0xc6,0xbb,0xc6,0xc3,0xde,0xc9,0xca, +0xd5,0xda,0x97,0x82,0x8c,0xa1,0xfc,0x1e,0xd1,0x17,0x87,0x33, +0x18,0xb3,0x1d,0x3f,0x41,0x7d,0x8a,0x02,0x95,0x66,0x14,0xa2, +0x47,0xf4,0xff,0x9a,0x44,0xf1,0x30,0x8e,0x49,0xc1,0x79,0xb7, +0x67,0xc3,0x72,0x54,0xae,0xec,0xe6,0x71,0x07,0x7c,0xbc,0x9a, +0x72,0xb0,0xb3,0xaa,0xe2,0xef,0x7d,0xff,0x17,0xe3,0x92,0x32, +0xd1,0x85,0x80,0x36,0x0c,0xe9,0xc2,0x21,0x34,0xa0,0x9a,0xe3, +0xeb,0x93,0x6a,0x33,0x82,0xda,0x79,0x9b,0xbd,0x06,0xa1,0x7a, +0x87,0x39,0xd1,0x12,0x56,0x76,0xb3,0xb0,0x00,0x7c,0x68,0x07, +0x2a,0xed,0x73,0x34,0xc2,0x04,0x36,0x0b,0xde,0x68,0x20,0xcd, +0x39,0x9e,0xce,0x8a,0x03,0x31,0xff,0x9f,0xc3,0x8f,0x2f,0x85, +0x1c,0x9a,0x62,0x61,0x38,0xdd,0x5e,0x4a,0x31,0xa7,0x32,0xda, +0x8b,0xc7,0xc1,0x7c,0x19,0x85,0xc6,0xcc,0xb9,0x52,0xd7,0x73, +0x8b,0x69,0x1a,0x34,0x68,0x33,0x06,0xb1,0xf0,0xc5,0x09,0x22, +0x8e,0x12,0x5c,0x85,0x51,0xac,0x38,0x1f,0x1f,0x12,0x28,0x06, +0x39,0x16,0xb3,0x62,0xdf,0x23,0x8a,0x1b,0x14,0xdb,0x19,0xca, +0xae,0x68,0x62,0x25,0x24,0xc6,0x9c,0x3a,0x77,0x08,0x98,0xa5, +0x7c,0x49,0x1d,0x0e,0x79,0x18,0x11,0x1f,0x75,0x32,0x32,0x5c, +0x76,0x28,0xe2,0xe8,0x19,0xa5,0x94,0xbc,0xb8,0x92,0x1a,0xd5, +0x62,0xd3,0x00,0x76,0xad,0x87,0xe7,0x62,0x73,0xb5,0x22,0xbb, +0x8e,0x92,0xea,0xd2,0x8c,0x6c,0x99,0x18,0x8c,0xb9,0x83,0x78, +0x7e,0x47,0x95,0x12,0x19,0x63,0x46,0xfe,0x69,0x15,0x11,0xe3, +0xf1,0x67,0x43,0x53,0xe1,0x7f,0xba,0xcc,0x19,0xfc,0x07,0x68, +0x9a,0x34,0xcd,0x83,0x26,0x16,0x66,0x60,0x13,0x81,0xa6,0x9f, +0xb0,0x89,0xed,0x55,0x81,0xa6,0x5f,0xe9,0xbf,0xca,0x8f,0x85, +0xf4,0xb7,0xc5,0xcf,0xfa,0x43,0xf1,0x1b,0xa4,0x33,0x83,0xad, +0x1b,0x8d,0x8a,0x07,0xef,0x4c,0x59,0x89,0x47,0x59,0x68,0x36, +0x26,0xc2,0x83,0x1e,0xf1,0x01,0x33,0x49,0x0a,0x8f,0x77,0x80, +0xb0,0x00,0xb3,0x88,0xe0,0x06,0xb6,0xa2,0x1b,0x33,0x40,0x89, +0xcc,0xaf,0xf0,0x7a,0x06,0xab,0xd8,0x45,0x2b,0xdc,0x7f,0xe2, +0xc1,0x4e,0x71,0x02,0x11,0xb6,0xc2,0x70,0xf6,0xf8,0xda,0xfd, +0xbe,0x4b,0x9d,0x0a,0x6c,0xf8,0xdf,0xda,0x4a,0x9a,0xce,0xfc, +0xcc,0x7d,0xb5,0x8a,0xb1,0xcc,0x3e,0xd0,0xa8,0xf6,0x17,0x06, +0x52,0xdf,0x65,0x98,0x2a,0x3d,0x67,0x9a,0x53,0x33,0xeb,0xd5, +0x85,0x59,0x62,0x99,0xb8,0x9f,0x82,0x30,0x7c,0x4f,0xf6,0x46, +0xc7,0x64,0xa8,0xdf,0x87,0x91,0x5a,0xec,0xb6,0x99,0x04,0x1b, +0xa4,0x59,0xce,0xab,0xbb,0x60,0x35,0x7c,0x4c,0x13,0x6b,0xae, +0x5c,0x89,0x1a,0xb6,0xf7,0x21,0xac,0x58,0xd3,0xfb,0x00,0x36, +0xae,0xea,0x17,0x46,0x61,0xd8,0x75,0x48,0xed,0x5c,0xcb,0x16, +0xd6,0xbb,0x66,0x5b,0x67,0x3a,0x25,0xcb,0x7c,0xec,0xea,0x0e, +0x36,0xed,0xaf,0x0c,0x96,0xe1,0xf6,0x17,0x86,0xb3,0x31,0xde, +0x0c,0xe2,0xb7,0x31,0x62,0xd1,0x2c,0x82,0x17,0x0f,0xbc,0x57, +0xbc,0xe2,0x3d,0x40,0xaa,0x48,0x3c,0x8e,0x7a,0xef,0xfe,0x07, +0x36,0x7e,0x88,0x85,0x1d,0x92,0xbe,0x9f,0x50,0x7d,0x3f,0x61, +0xe0,0x77,0x5c,0x47,0xd6,0xe3,0x8a,0xbb,0x2c,0x04,0xae,0x27, +0x77,0x61,0xe3,0x7a,0xda,0x11,0xa0,0xee,0x7b,0x6d,0x3f,0x19, +0xd4,0x16,0x3e,0xa7,0x7d,0xc0,0x3a,0xda,0x06,0x40,0xa0,0xca, +0x3d,0xd8,0xb8,0x8e,0xdd,0x8d,0x9b,0xc8,0x4d,0x83,0x2d,0xe2, +0x5c,0x53,0x61,0x2e,0xad,0xcd,0xda,0x52,0x51,0xa6,0xa0,0xd3, +0x24,0x4d,0x29,0x85,0x99,0xc0,0x75,0xb1,0xe2,0x69,0x1c,0x4e, +0x5a,0xfd,0x5a,0x3c,0xeb,0x3d,0x2a,0xea,0x79,0xfb,0x0a,0xab, +0xf3,0x36,0xf9,0x34,0x43,0x76,0xc8,0x0f,0x93,0xef,0x76,0x2d, +0xc2,0x08,0x63,0xa1,0x8e,0xb2,0xcf,0x87,0xd2,0x4a,0x36,0xdd, +0x07,0xa4,0x24,0x96,0x70,0xae,0xea,0x79,0x06,0x65,0x9f,0x73, +0xa5,0x24,0xce,0xa4,0x49,0xac,0x37,0x98,0xc4,0x6f,0x99,0xc3, +0x60,0x12,0x9f,0x94,0x92,0xd8,0x50,0xea,0x65,0x9a,0x71,0x23, +0x89,0xa8,0xdc,0x5f,0x15,0x52,0x6a,0xbe,0x87,0xcf,0xf0,0x4e, +0x73,0x4b,0x74,0xa7,0x3d,0xa0,0x0e,0xd1,0x1a,0xa0,0x10,0x3e, +0x8f,0xcd,0xac,0x4a,0xab,0x49,0xae,0x37,0x49,0xe3,0xc3,0x6c, +0x43,0xec,0xf6,0xd8,0x72,0xf8,0x13,0xce,0xee,0xff,0x85,0xc1, +0x26,0x2a,0xf7,0x3b,0xae,0x20,0xa3,0x5c,0x41,0x3e,0x35,0x8c, +0xf4,0x60,0xc2,0x1b,0xfd,0xc9,0x78,0xda,0x18,0xa6,0x04,0xd2, +0x96,0xd1,0x69,0x31,0x8e,0x59,0xaa,0x56,0x69,0xfe,0xeb,0xad, +0xae,0x07,0x39,0x3f,0xcb,0x20,0x85,0x39,0x61,0x75,0xd4,0x24, +0xca,0x87,0xf3,0x89,0x3a,0x74,0x78,0xf0,0x29,0x34,0x69,0x7e, +0xe3,0x38,0xe6,0x5a,0x41,0x5e,0x6f,0xb2,0x7a,0x42,0xfd,0xd9, +0xde,0x53,0x6f,0x38,0xbc,0xce,0x9c,0xce,0x3a,0x95,0x9d,0xa3, +0x9a,0x4f,0xc9,0x9d,0x9d,0x9c,0x21,0x75,0xc5,0x55,0x15,0xc5, +0x55,0x9c,0xf0,0x69,0x3b,0xfe,0xce,0x24,0xa4,0xc7,0xa7,0xc7, +0xa6,0x1b,0xa5,0xf0,0xfe,0xdb,0xad,0x0d,0xb6,0x5a,0x71,0x3b, +0xb6,0x92,0x13,0xbe,0xc7,0x5d,0x0f,0x7b,0x73,0xbb,0x8f,0x44, +0x44,0xbb,0x4f,0x58,0xc7,0xa4,0x5a,0x28,0xdd,0x64,0x06,0x4a, +0xd2,0xba,0x92,0xd4,0xcf,0xd5,0x9f,0xe9,0x3b,0xd5,0xc7,0xa1, +0x23,0x73,0x2a,0xe9,0x64,0x52,0xb2,0xea,0x79,0x88,0x6c,0xc7, +0x95,0xd7,0xf4,0xb6,0xe3,0x06,0x8b,0x3f,0x7c,0x58,0x0d,0xbf, +0xcd,0x0b,0x57,0xaa,0x35,0xda,0x3d,0xba,0x5b,0x7e,0x23,0xe9, +0xb6,0x4c,0xf8,0x67,0x29,0x69,0xcc,0xa8,0xcf,0xa9,0x28,0xf0, +0xac,0xe4,0x3d,0x03,0xed,0x83,0xac,0xf6,0xed,0xcd,0x0f,0x2d, +0x8c,0x28,0xec,0x4c,0x6a,0x4d,0x6d,0xc9,0xf2,0xae,0xe1,0xe7, +0xb9,0x2f,0xa6,0xc4,0x2d,0x8c,0xc3,0xd5,0xac,0xcf,0x71,0x69, +0xb3,0xe7,0x73,0x66,0xfc,0xb3,0x58,0x18,0x72,0xee,0xeb,0xf4, +0x43,0xad,0xbc,0x73,0x94,0xed,0x11,0xab,0x68,0x0e,0x3e,0x66, +0x2b,0xce,0x9c,0x8f,0x29,0x8d,0xad,0x98,0x7b,0x7f,0x05,0xa8, +0xea,0x16,0xb4,0xf1,0x26,0x79,0x76,0x85,0xee,0xa5,0x9c,0xf8, +0xab,0xf8,0x1d,0xe5,0xbc,0x42,0xdb,0x1c,0x74,0x1d,0x1c,0x96, +0xd6,0x7f,0x37,0x2c,0x3d,0x51,0xa1,0x2d,0xba,0xb2,0xc2,0xdf, +0xf0,0x03,0x11,0xdb,0xee,0x0a,0x6d,0x8c,0xd8,0x46,0xd9,0x8f, +0xd0,0xb6,0x56,0x6c,0xa3,0x6c,0x65,0x88,0x70,0x92,0x40,0x1f, +0xc6,0x5a,0x82,0x35,0x66,0xd6,0xb0,0x3e,0xba,0xab,0xad,0x71, +0x89,0x5d,0x96,0x09,0x0f,0x73,0x1a,0xfe,0x1c,0xc8,0x94,0x16, +0x8d,0xc8,0x58,0x02,0xe3,0x76,0xc1,0x22,0xeb,0xec,0x1e,0x1e, +0xd7,0x37,0x6b,0xf5,0xf8,0x5d,0xe7,0x20,0x86,0x42,0xdb,0x0b, +0x4c,0xb3,0x04,0x17,0x6c,0x66,0x15,0xe7,0x3a,0x09,0xb6,0x1f, +0x90,0xf0,0xe8,0xa3,0x41,0x3c,0x4a,0x7f,0x11,0x27,0x45,0xf4, +0xc7,0x98,0x3a,0x47,0x4a,0xe5,0x9b,0x1f,0x00,0x7e,0x2f,0x2b, +0x37,0x33,0x21,0x4e,0x6e,0x86,0x5e,0x3b,0x03,0xf2,0x1d,0xf9, +0x8b,0x05,0x97,0xca,0x1b,0x6a,0x39,0xf1,0x0a,0xce,0x23,0x48, +0x29,0x2e,0xb0,0x0c,0x44,0x9f,0x20,0xae,0x2e,0x06,0xae,0xfa, +0x01,0x05,0x8e,0x7c,0x7f,0xe1,0x40,0x75,0x03,0x6d,0xfa,0x26, +0xd1,0xa4,0xbe,0x56,0x70,0xa1,0xb2,0xb5,0xd1,0xb7,0x8a,0xb7, +0x71,0xd2,0x75,0xd3,0xdd,0xc3,0xa1,0xec,0x1b,0x62,0x69,0xa3, +0xe7,0xb4,0xcd,0xa7,0xd0,0x96,0xbf,0x71,0xfe,0x4a,0x5d,0x9b, +0x34,0xb3,0x0c,0xf3,0xa5,0xa8,0xb9,0x44,0xa3,0x86,0x45,0x43, +0x46,0x98,0xde,0x44,0x36,0xef,0x98,0x65,0x8f,0x8c,0x5f,0x96, +0x35,0x0f,0x6c,0xc9,0xeb,0x96,0xfb,0x37,0xb9,0x1b,0x2e,0x64, +0xe6,0x5c,0xe4,0x4c,0x71,0xa9,0x53,0x8e,0x05,0x0f,0x0b,0x6a, +0x81,0xf4,0xff,0xf1,0x8a,0x13,0x3f,0xc3,0x6f,0x08,0x78,0xd7, +0x83,0xf6,0xd7,0x94,0x7d,0x28,0x3b,0x55,0xf3,0x38,0x8a,0x96, +0xd2,0x85,0x6b,0xd1,0xd9,0x91,0x53,0x7e,0x31,0x88,0xb9,0x07, +0xfe,0xc5,0xdc,0xf4,0x0f,0x98,0x3b,0xa8,0xe3,0x7f,0x61,0x6e, +0xfd,0x3f,0xa3,0x48,0xdf,0x15,0x61,0xb5,0x4e,0xdf,0xdf,0x23, +0xc4,0x4a,0xa6,0xcf,0x94,0x08,0xab,0x15,0xf6,0xe2,0x6a,0x06, +0x37,0x09,0xd9,0x92,0xa6,0x46,0x54,0x53,0xe1,0xf6,0x42,0xb2, +0x37,0xcf,0xab,0x70,0x77,0x9a,0xbf,0x0f,0x9f,0x17,0x52,0xea, +0x9f,0xb5,0x87,0x0b,0x17,0x8f,0x91,0xe0,0xb2,0xd0,0xf2,0x88, +0xaa,0x86,0x9f,0x72,0x7f,0x4d,0x7d,0xec,0x40,0x59,0xc7,0x96, +0x90,0x35,0xbe,0xeb,0xb9,0x90,0xaf,0x8e,0x3d,0xfb,0x45,0x15, +0x94,0x9b,0x50,0xf9,0x77,0x9b,0xa9,0x68,0x6d,0x0b,0xd6,0xcc, +0x29,0xfc,0x38,0x0e,0x99,0x22,0xad,0x40,0x2b,0x2f,0x1b,0x27, +0x87,0x32,0x0f,0xbe,0xac,0xa2,0xb0,0x3a,0xb7,0x2e,0xd1,0x2f, +0x25,0x20,0x6d,0x77,0xa1,0x43,0x4d,0xd2,0xd9,0xd6,0x54,0x98, +0xc8,0xbb,0xa5,0x2b,0x29,0xe6,0x56,0x93,0x53,0x6f,0x91,0x9a, +0xa5,0x48,0x0d,0x81,0xb4,0x3d,0x9a,0x09,0x47,0x71,0x26,0xd3, +0x88,0xd6,0x04,0x16,0x5c,0xc6,0x05,0xec,0x85,0x35,0xc4,0x2c, +0x78,0xcd,0x5e,0xfd,0xf0,0x73,0x56,0x7c,0x7f,0xca,0x97,0xb9, +0x1d,0x39,0x9c,0xf2,0xaf,0xef,0x2a,0xcd,0x34,0x9b,0x41,0xac, +0x2a,0xff,0x31,0x9d,0x62,0xd5,0x7c,0x69,0x78,0x26,0x73,0xa6, +0x84,0x55,0x77,0xde,0x79,0xb6,0x19,0xc3,0x58,0x21,0x82,0x32, +0xaa,0x16,0x5c,0xf4,0x35,0x58,0x60,0x4b,0x0f,0xb4,0x80,0xc3, +0x72,0x5c,0x69,0x0d,0x2b,0x73,0x7a,0x29,0x52,0xa7,0xdc,0x86, +0xa8,0x0e,0x31,0xcf,0x1c,0x0e,0x6c,0xc2,0x18,0x5c,0xd0,0x1d, +0xc4,0xe2,0x3c,0xda,0xfc,0x8c,0xa6,0x96,0x18,0xcd,0xe0,0x58, +0x71,0xfb,0xfb,0x42,0x32,0x5a,0x12,0xef,0xfa,0x1d,0xe9,0x8b, +0xac,0x59,0xc1,0x46,0xa5,0x85,0x7e,0x07,0x0b,0x5b,0x30,0x80, +0x80,0x4c,0xdc,0x6f,0x21,0xac,0xd3,0x16,0x9d,0xcd,0x04,0xe7, +0x05,0xe2,0x3a,0x73,0x61,0x9d,0x69,0x1f,0x98,0xf6,0x77,0xd2, +0x4c,0xae,0x95,0xdb,0x91,0xa8,0x15,0x16,0x4e,0xa8,0xec,0x91, +0x67,0xca,0xc3,0xa4,0xda,0x4b,0x7d,0x09,0xf0,0x11,0xf7,0xd3, +0x24,0xc6,0x34,0x6b,0xcf,0x80,0xda,0x9f,0x4c,0x4d,0x6a,0x4a, +0xb9,0x7a,0x25,0x6b,0x96,0xa2,0x64,0x3d,0x9d,0xdd,0x7b,0x28, +0x2e,0x47,0xfd,0x35,0x68,0x6c,0x18,0xa0,0xa8,0x59,0x70,0x47, +0x77,0x03,0x26,0xe2,0xe7,0x7d,0xdf,0x50,0x52,0x81,0x06,0x04, +0x07,0xc2,0x70,0x86,0x03,0x0e,0x93,0x9c,0xfc,0x7d,0xda,0x8b, +0x58,0x09,0xe4,0x28,0x3d,0x9d,0x2f,0xb5,0x47,0xd7,0xdf,0x39, +0xb9,0x12,0xfd,0x59,0x58,0x21,0x41,0xf3,0x30,0x1a,0xb4,0xc3, +0x18,0x54,0x12,0x37,0x49,0x38,0x2c,0xa1,0xd5,0x30,0x29,0xee, +0x56,0xa1,0x0d,0x81,0xa8,0x76,0x8c,0x7a,0xc1,0x5c,0x3b,0x7d, +0x25,0xa6,0x3f,0x26,0x2d,0x24,0x2d,0x24,0x39,0xb4,0xa6,0x92, +0xb7,0xe9,0xda,0x76,0xd9,0xa0,0xc5,0xc5,0x9d,0x2f,0xd8,0x5b, +0xb8,0xa7,0x20,0x70,0x51,0xb4,0xe6,0xd1,0xa9,0xc7,0x4b,0xeb, +0x0a,0x1b,0x72,0x68,0x9c,0xff,0xd8,0x21,0xde,0x35,0x87,0xd5, +0xcc,0x7e,0x67,0x3f,0x3b,0x57,0x5b,0xee,0x84,0xaf,0xef,0x09, +0xdf,0x09,0xb1,0x16,0x5f,0x9d,0x7e,0x7c,0xfa,0xab,0x33,0xb2, +0x79,0x18,0x62,0x01,0x21,0x38,0x04,0x0b,0xcd,0x04,0xec,0xc4, +0x0a,0x56,0x59,0xbe,0x0e,0x66,0x13,0x38,0xd2,0x8d,0x47,0x28, +0xce,0x5d,0x8a,0xb9,0x70,0xb6,0x33,0x36,0x75,0x5f,0x0a,0x7d, +0xd5,0x96,0xf1,0xe6,0xb7,0x2c,0x06,0x8c,0x7b,0x1d,0x3d,0xf9, +0x82,0x80,0x7c,0xff,0x3c,0xbf,0xe5,0x51,0xb3,0xa2,0xe7,0x1c, +0x2d,0x6e,0x2f,0xec,0xca,0xed,0xe1,0x20,0xb1,0xa8,0x1f,0xb6, +0x61,0xc2,0x4b,0xbd,0x59,0x18,0x81,0xdb,0xfa,0xfc,0x68,0x38, +0x06,0x99,0xf9,0x19,0x79,0x9a,0x71,0x27,0x7c,0x7c,0x4e,0xf8, +0x4d,0x88,0x35,0xf9,0xe2,0xf4,0xc3,0x33,0x0f,0x62,0x64,0x38, +0x06,0x43,0x4c,0xe8,0x4d,0xa7,0x61,0xaa,0x89,0xf0,0x43,0x37, +0x16,0xb0,0xe2,0x23,0x21,0xf5,0x7d,0x0f,0x39,0x58,0xbf,0x7e, +0xcc,0xf8,0x69,0xb0,0x7e,0x7d,0x86,0xa9,0xd3,0xa5,0x4c,0xb8, +0xf7,0x21,0xdb,0x69,0xfd,0xd2,0x91,0x8c,0x34,0x8e,0x1a,0x69, +0x1c,0x23,0xbc,0xc4,0x85,0x44,0xdc,0xfa,0x5a,0xd8,0xca,0x28, +0xbc,0xc5,0x51,0xef,0xeb,0xd6,0x38,0x89,0xd1,0x08,0x1e,0xc2, +0x52,0x22,0x2c,0x80,0x73,0xe2,0x3c,0x26,0x29,0x3d,0x31,0xfd, +0x5c,0x06,0x27,0xec,0x68,0x17,0xe7,0x33,0xf1,0x19,0xf1,0x99, +0xb1,0x19,0x26,0xe7,0xf8,0xc0,0x4d,0xe6,0x4b,0xb7,0xed,0xaa, +0x72,0xe0,0x0b,0x0b,0x0a,0x4b,0x72,0xcb,0x38,0x91,0x43,0x5a, +0x92,0x7b,0xa8,0x18,0xb6,0x83,0xc3,0x21,0xe5,0x3f,0xa4,0xbf, +0x2d,0xa3,0xe3,0x30,0xf5,0xbf,0x42,0xb3,0x92,0x86,0x26,0x8d, +0x9f,0x63,0x52,0xb0,0xe9,0xd3,0x60,0x13,0x5a,0x69,0x41,0xc2, +0xee,0x5e,0xe8,0x66,0xb0,0x5b,0x93,0x40,0xf7,0x2e,0xec,0x66, +0xc4,0x91,0xa8,0xf5,0x5e,0xa0,0xd1,0xd2,0xcf,0x2b,0xab,0x5a, +0x89,0xf8,0x85,0x05,0x6d,0x78,0x5c,0x0d,0x0c,0xf5,0x37,0xd9, +0x94,0x3a,0xf3,0x35,0xf9,0x95,0xa5,0xe7,0xcb,0xa4,0xfd,0x32, +0xed,0xb6,0xad,0xdf,0xba,0xda,0xba,0xcc,0x9e,0xff,0xa9,0xff, +0xe1,0x57,0x6d,0xdf,0x72,0x3f,0x33,0xae,0xcb,0xb7,0xcf,0x5f, +0xb2,0xa3,0xca,0x9e,0x7f,0x71,0xef,0xce,0xab,0xfa,0x37,0xdc, +0x55,0xc6,0xe4,0xa8,0xf1,0x61,0x7b,0x35,0x8f,0x23,0xa1,0xc1, +0xd6,0x13,0x96,0x33,0x29,0x66,0xd4,0x2a,0x37,0x2b,0x4b,0x7b, +0xce,0xa9,0x27,0xb4,0x9f,0xbd,0xff,0x52,0x55,0xd4,0x1c,0x5c, +0xaa,0x38,0x31,0x9b,0x13,0xa6,0x33,0xca,0x7f,0x8f,0x8b,0x22, +0xb4,0xb1,0xdd,0x07,0x66,0xc7,0x01,0x39,0xd0,0xe8,0xa2,0x9d, +0xc1,0x78,0x03,0x1c,0x2f,0x6a,0x99,0x0a,0x5a,0xcc,0x69,0x7c, +0x93,0x8d,0xde,0x57,0x50,0xa5,0xd0,0xe4,0x6a,0x7c,0xdc,0xe5, +0x3c,0xd8,0xc7,0x5b,0xe4,0x28,0x15,0xd2,0xcc,0x0c,0x2c,0xf5, +0x2c,0xf1,0xcf,0x76,0x75,0xe1,0x4b,0x82,0x4a,0x7d,0xf3,0x7c, +0x39,0xc5,0x15,0x34,0x25,0x78,0xeb,0xc0,0x87,0x74,0xa5,0xd4, +0x62,0x10,0xa4,0xc6,0x63,0x86,0x96,0x64,0x93,0xf7,0x43,0x44, +0x8d,0x78,0x90,0x85,0xad,0x78,0x42,0x1a,0x22,0x32,0x94,0x86, +0x88,0x3e,0xc1,0x9d,0x04,0x6e,0xb7,0xe3,0x6d,0x06,0xbe,0xc7, +0x19,0xa4,0x1d,0xd1,0x82,0xc5,0xfd,0x38,0xf7,0x7d,0x09,0x1e, +0x23,0xb5,0xeb,0xfa,0xd2,0xa3,0xd3,0xb7,0x10,0xe0,0x16,0x63, +0x0a,0x17,0x89,0x31,0xba,0xf7,0xb0,0xe0,0x3e,0x9d,0x18,0xa1, +0x7b,0x2f,0x3d,0x98,0x46,0xf4,0xd0,0xfd,0x02,0xbb,0x8a,0x7e, +0x6d,0x4f,0x76,0x57,0x69,0x73,0xad,0x47,0x15,0x6f,0xef,0x6e, +0xe5,0x6f,0xb4,0x97,0x83,0xd3,0x0d,0xa4,0x63,0x77,0xaf,0x7b, +0xad,0x77,0x49,0x03,0xef,0x58,0x6a,0x52,0x6e,0x4e,0xb1,0xe5, +0xef,0x6d,0xc2,0x4d,0x7a,0x27,0x8a,0x50,0xec,0xc3,0xf8,0x2f, +0x13,0xaf,0xa5,0x06,0xb4,0xf1,0xf8,0xb9,0x37,0xea,0x84,0xe1, +0xea,0xe3,0xc9,0xa6,0xfc,0xcd,0x53,0xf7,0x63,0xee,0xc7,0x72, +0xf8,0x19,0xc6,0x5a,0x80,0x3f,0x6b,0xbb,0x63,0x99,0x2d,0x0e, +0xb1,0x2e,0x30,0xe6,0x61,0x44,0xef,0x0f,0x6d,0x25,0xbf,0x71, +0xb1,0xb8,0xa3,0x0f,0x76,0xc4,0x31,0x45,0xb3,0x9e,0x5b,0xc1, +0x58,0xbd,0xfc,0x5e,0x7e,0x7a,0xcb,0xdc,0x46,0xcb,0x2b,0x9c, +0x62,0x88,0x25,0x0d,0x8d,0xff,0xb3,0x71,0x57,0xb9,0x15,0x25, +0x1a,0x05,0xe5,0x05,0x8d,0xa9,0x55,0x16,0x99,0x7c,0x98,0xa7, +0xbf,0x75,0xa0,0x0f,0x27,0x7a,0xcf,0xfb,0x30,0x16,0xbb,0xc0, +0x9b,0x64,0xec,0xc9,0x75,0x4b,0xf6,0xed,0x90,0x16,0xf2,0xdf, +0x53,0xbd,0x2f,0x97,0xc3,0x17,0xe2,0xca,0xff,0x6a,0x4c,0x0c, +0x45,0x55,0xd2,0x0b,0x68,0x34,0x20,0xac,0x11,0x03,0xc4,0x35, +0x2c,0x38,0x41,0x1e,0xed,0x66,0xdf,0xd0,0x66,0xb6,0x6f,0x32, +0x79,0x03,0x73,0x27,0xb3,0xe8,0x46,0x65,0x62,0x69,0xf7,0xca, +0xb2,0xe0,0xa0,0x02,0x73,0xe9,0xf1,0x5c,0x1a,0xf7,0x17,0xe5, +0x43,0xc9,0x63,0xd0,0xd1,0xbe,0xf0,0x18,0x66,0x76,0xe1,0xcc, +0x2f,0xf5,0x56,0xa3,0xce,0x97,0xfa,0xab,0x51,0xc3,0x14,0x34, +0xb4,0x59,0x71,0xe1,0x1c,0x82,0x17,0xc2,0xde,0x0f,0x05,0xd0, +0xa2,0xf3,0x53,0x9c,0x84,0x47,0xa3,0xa5,0xc2,0x3a,0x48,0xf4, +0xdf,0x2b,0x12,0xcc,0xc2,0x3a,0x29,0xc6,0x39,0x1a,0xe3,0x1c, +0x23,0xac,0xa0,0x81,0xf0,0x83,0xde,0x7c,0x3c,0x6e,0x2a,0x74, +0x76,0xb1,0x8a,0xf3,0x78,0xe8,0x3d,0x3c,0x49,0x2b,0x87,0x42, +0x20,0xcc,0x22,0xbe,0xec,0x7a,0x7f,0xe7,0x85,0x26,0x6a,0xa5, +0x16,0x1d,0xe7,0x2b,0x4a,0xf2,0xce,0xcb,0xce,0xc6,0xc5,0x1c, +0x8f,0x8d,0x7e,0xae,0xcd,0x57,0x36,0x2f,0xff,0x22,0x2c,0xe9, +0xd0,0xc9,0xb0,0x30,0x59,0x54,0xd4,0xd1,0x18,0xa5,0xe4,0x82, +0xb8,0xa2,0x7a,0xd5,0x02,0x16,0x4e,0xd2,0x24,0x91,0xde,0x15, +0x77,0x04,0x86,0xcf,0xe6,0xab,0x9b,0xa6,0x3c,0x0d,0x3f,0x77, +0xe8,0x44,0x64,0xa4,0xec,0x60,0x38,0xed,0x13,0x92,0xf2,0xe2, +0xce,0xd7,0xa9,0x16,0xe8,0xf9,0xb1,0xdb,0xf7,0xda,0x6b,0x5b, +0xa8,0x55,0x5a,0x35,0x16,0x95,0x14,0x67,0x17,0xcb,0x26,0xd1, +0xfe,0xe2,0x86,0xde,0x56,0x8a,0x20,0x90,0x8a,0x1b,0x2e,0xd0, +0x36,0xab,0xa0,0x9b,0x62,0xd7,0x70,0xf9,0x23,0xe2,0xb4,0x63, +0xde,0x2e,0x9c,0x68,0x98,0x27,0x4d,0xf8,0xee,0x02,0xf6,0x6a, +0xc5,0x23,0x2e,0x96,0x29,0x5d,0x0d,0x64,0x3b,0xa8,0xea,0xe7, +0xd1,0x78,0x98,0x7c,0x79,0x6a,0x8f,0xc3,0x4d,0x4e,0xfc,0x1e, +0x6f,0xd3,0xce,0x2b,0xf4,0x3f,0x40,0xe7,0xad,0x4b,0x65,0x98, +0x3a,0x4d,0x72,0xe9,0xbf,0xa4,0xf9,0x30,0x0b,0x3b,0x25,0x4b, +0x8c,0xa7,0x96,0x18,0xcf,0xc0,0x09,0x1c,0x4d,0x20,0xb9,0x19, +0x93,0xa5,0xe5,0x45,0x5f,0x11,0x88,0x15,0x4f,0xd2,0x46,0x1c, +0x76,0x83,0x0b,0xc1,0xe5,0xb8,0x0e,0x96,0xb3,0x82,0xa6,0x0a, +0x3d,0xda,0x4a,0x8f,0xd0,0xc4,0x9c,0x14,0xfb,0x16,0x7a,0x66, +0x7b,0x97,0x17,0xf3,0xfb,0x8b,0xbc,0xab,0x7d,0x0b,0x39,0x08, +0xc5,0xb1,0xa4,0xa4,0xac,0xa8,0x2a,0xfd,0xbc,0x73,0x36,0x7f, +0xc0,0xdf,0xcf,0xc9,0xc7,0x8f,0x13,0x2f,0xce,0x78,0xef,0xff, +0xf1,0x92,0xff,0xad,0x44,0x75,0xd2,0x06,0x82,0x65,0x17,0xbc, +0x14,0x1d,0xf1,0x25,0x2b,0xcc,0x81,0x36,0x4a,0xd5,0x05,0x4a, +0xd5,0x05,0x7a,0xff,0x55,0x28,0x3c,0x1c,0x7c,0x20,0x89,0x66, +0x46,0x73,0x5d,0x7b,0x69,0x27,0x17,0xfc,0xfb,0x7a,0x5c,0x6c, +0x27,0x7c,0xd4,0x88,0xf3,0xee,0x82,0x6a,0x03,0x6d,0xc8,0x12, +0x32,0x13,0xa4,0xc5,0xf4,0xa0,0xb0,0x09,0x93,0x98,0xd8,0xcc, +0x18,0xfa,0xb2,0x88,0xe5,0x8f,0xee,0x3d,0x42,0x5f,0x34,0x07, +0x6c,0x69,0xa3,0xe6,0xb7,0xdd,0x76,0xd7,0x66,0x43,0x2e,0x13, +0x34,0x89,0x57,0xa3,0x7d,0x8b,0x63,0xa5,0x8b,0x0b,0x5f,0xeb, +0x52,0xeb,0x50,0x61,0xcd,0x81,0xa5,0x62,0x02,0xc1,0xc9,0x8e, +0xfd,0x30,0x46,0x1d,0x36,0xa3,0xba,0xe9,0xd7,0x38,0x96,0x45, +0xd6,0xcf,0x61,0xae,0xbd,0xda,0xa9,0xd8,0x93,0x71,0x71,0xaa, +0xf2,0x2a,0xf4,0xa5,0xb7,0xc1,0x8b,0x34,0x9a,0xde,0x56,0xb7, +0xf3,0xb4,0xba,0x0d,0x46,0x93,0x92,0x54,0xdd,0x28,0x85,0xbf, +0xc6,0x54,0x66,0xa6,0x94,0xc4,0xaa,0xe7,0x9a,0xbc,0x68,0x28, +0xec,0x3a,0xf3,0x44,0x16,0xcb,0x68,0xc5,0x74,0xe8,0xc3,0x9c, +0x09,0xd0,0xc8,0x24,0x74,0x2b,0x29,0x6c,0x85,0x76,0x82,0x43, +0xa9,0x5d,0x87,0x32,0x70,0x98,0x36,0x5f,0x1e,0xcd,0xb6,0x6d, +0xb6,0xff,0x0f,0x67,0xef,0x01,0x97,0xc5,0xb5,0xb5,0x8b,0x6b, +0x94,0x99,0x51,0xa3,0xa6,0xb8,0xcd,0x80,0x09,0xd8,0x7b,0xef, +0x15,0x7b,0x45,0x7a,0xef,0x1d,0x01,0x15,0x50,0xaa,0x48,0x6f, +0x02,0x22,0xbd,0xb7,0x97,0x8e,0x74,0xe9,0xbd,0x48,0x07,0xbb, +0x89,0x25,0x6a,0x62,0x34,0xd1,0x98,0xea,0xc9,0x49,0x59,0x43, +0xd6,0x70,0xbf,0xbb,0x07,0xf1,0x9c,0x9c,0xef,0x7c,0xff,0x7b, +0xfe,0xf7,0xfa,0xfe,0xde,0xcd,0xc0,0xeb,0xbc,0x33,0x7b,0xed, +0x67,0x3d,0xeb,0x59,0x7b,0xef,0xd9,0xbb,0xea,0x84,0x2d,0xdf, +0x68,0x5b,0x67,0x56,0x63,0xc4,0xe1,0x2d,0x2a,0x2c,0xc7,0x71, +0x36,0x51,0x0a,0x83,0xa9,0x98,0x4c,0x7e,0x62,0x1a,0xd2,0x33, +0xea,0x95,0xe0,0x47,0xfc,0x4d,0x5c,0x7d,0x15,0x16,0x43,0xf8, +0x06,0xa4,0x3e,0xc0,0x02,0x6d,0xa3,0xf0,0x6b,0x10,0xce,0x60, +0xb8,0x34,0x24,0x16,0x7e,0x18,0xc3,0x29,0x13,0xea,0x8e,0x6c, +0x24,0x54,0x51,0xe7,0xe7,0xe7,0x95,0x64,0x5e,0xe6,0x24,0x07, +0x4d,0x4c,0x8b,0x4f,0x8d,0x4f,0x33,0xc8,0xe4,0x4f,0xa9,0xec, +0xdd,0xbc,0x4c,0xa3,0xd4,0x82,0x4f,0x4d,0x48,0x4d,0x4c,0x49, +0xe4,0xf0,0x22,0x8b,0x73,0x7c,0x71,0xae,0x09,0xbe,0xaf,0xd8, +0x6a,0xd8,0x09,0xf3,0x52,0x61,0xd3,0x25,0x98,0x2a,0x2f,0xb8, +0x35,0x89,0x6e,0xe0,0x0b,0x73,0x98,0xf3,0x96,0x96,0xae,0x07, +0xce,0xe7,0x98,0xf2,0xdf,0xe5,0x74,0x36,0x65,0x0d,0x71,0xb7, +0xf4,0x18,0x87,0x4c,0xcf,0x06,0xc5,0xdf,0x98,0xca,0xb4,0xe4, +0x32,0xa5,0x4a,0x69,0x5b,0x12,0xc3,0xad,0xac,0x57,0x50,0x5c, +0x8e,0x52,0x0d,0x1c,0x65,0x47,0x7f,0x99,0x4f,0x41,0xe6,0xf3, +0x17,0x77,0x7b,0xa3,0x63,0x67,0x60,0xfa,0xca,0x37,0x1a,0xef, +0xbf,0xbb,0xdb,0x14,0x6a,0x8c,0x29,0x8c,0x70,0x26,0x82,0xf8, +0xb8,0xb9,0x9f,0x71,0x71,0xe5,0xd0,0x81,0x29,0xcc,0xcf,0xcb, +0x97,0x15,0x70,0xa2,0xbc,0x94,0xb5,0xbf,0xd1,0xa2,0x53,0xa8, +0x31,0x46,0x26,0xc1,0x7b,0xa4,0x51,0x9c,0x62,0xce,0xfa,0xa0, +0x12,0x31,0x17,0x16,0x35,0xd2,0xdb,0x9f,0xdc,0x28,0x2e,0x32, +0x67,0x5b,0x31,0x82,0xd4,0x42,0xb7,0x75,0x2f,0x18,0x88,0x1b, +0xd0,0x80,0x85,0x3f,0x9f,0x51,0xfe,0xba,0x09,0xdd,0x94,0x20, +0x32,0x85,0x34,0xb2,0x7c,0xe0,0x49,0xed,0xf6,0xf6,0x7b,0x30, +0x4f,0x5c,0x80,0x0a,0x54,0x6c,0x5c,0x58,0xa7,0xbd,0x45,0xb1, +0xd9,0xaa,0xa8,0x2e,0xb3,0x26,0xa9,0x4d,0x5e,0xf8,0x80,0x81, +0x04,0x6f,0x32,0x54,0xd5,0x54,0x97,0x57,0xc3,0xd5,0xe2,0x28, +0xdb,0x5f,0x55,0x7c,0x35,0x66,0x80,0x83,0x05,0x47,0x99,0x13, +0x99,0x3e,0x0d,0x8a,0x37,0x99,0xf2,0x94,0x8c,0x62,0xa5,0x0e, +0x69,0xa7,0xbb,0xa3,0x86,0xac,0x57,0x68,0x5c,0x86,0xd2,0x4f, +0x18,0xc6,0x6e,0x3b,0x6f,0x75,0xd4,0x5e,0xb1,0xc4,0x4e,0xce, +0x02,0x06,0x58,0x37,0x67,0xab,0x53,0x3a,0x4e,0xc6,0x05,0x36, +0x45,0x27,0x8b,0x6c,0x9d,0xf9,0x62,0x97,0x8a,0xb3,0xb5,0x6e, +0x26,0x5e,0x7a,0xe7,0xd5,0xfc,0x73,0xcd,0xf8,0xbb,0xe9,0xd7, +0x73,0x7b,0x0a,0x07,0x4f,0x7f,0x7a,0xf6,0xb9,0x47,0x4e,0x0b, +0xbf,0x3f,0x43,0x55,0xa6,0x97,0xcb,0xe1,0x33,0x18,0x26,0x6a, +0x58,0x3f,0xc8,0x3e,0xa6,0x09,0xf8,0x76,0x26,0x2a,0xe3,0x62, +0x46,0x96,0xc2,0x63,0xa6,0xcd,0x90,0xb4,0x7f,0x4b,0x23,0x88, +0xd7,0x12,0x72,0x29,0xeb,0x92,0xb4,0xe1,0xdb,0x17,0xea,0x4c, +0xdb,0xec,0x81,0x6f,0xd5,0x59,0x7c,0xdf,0x84,0xb8,0x9c,0xb4, +0x3e,0x61,0xec,0x56,0x62,0xc7,0x8b,0xdb,0x06,0x61,0xbe,0xd0, +0xb2,0x03,0x6d,0xd8,0x74,0x7d,0x39,0x50,0x1d,0x1f,0xa1,0x83, +0xd1,0x25,0x6c,0x43,0x41,0x75,0x55,0x11,0x0d,0xb7,0x16,0x26, +0xc4,0xa9,0xd8,0xb6,0xc4,0x39,0xd3,0xf1,0x24,0x5f,0xec,0x79, +0xc5,0xb9,0xc8,0x99,0x83,0xfb,0xf8,0x11,0x11,0x5b,0x6e,0x08, +0x2d,0x8c,0xd8,0x82,0x0c,0x11,0x5a,0x0e,0x89,0x2d,0x34,0x95, +0xf1,0x1c,0x29,0x24,0x5d,0x5a,0x7a,0xa8,0x62,0x2c,0x1c,0x6f, +0x65,0x45,0x57,0x54,0xa7,0x62,0x8e,0xb9,0x94,0x79,0x29,0x33, +0x2a,0x43,0x5a,0x44,0x7f,0x17,0x7e,0x8f,0x1c,0xb3,0x33,0x6c, +0xdf,0xb1,0x5d,0x8a,0x8d,0x96,0xf5,0xed,0x39,0xdd,0x49,0xdd, +0xf2,0xb8,0x03,0x06,0x59,0x69,0xe5,0xdc,0x9d,0x78,0xee,0x11, +0x2b,0x04,0xcd,0x23,0x81,0xf9,0x5e,0x97,0xfd,0xd2,0x8d,0xcf, +0xf1,0x69,0xe7,0x32,0x5c,0x92,0xdd,0x39,0xf8,0x5e,0x1a,0x10, +0x63,0xb2,0x72,0x33,0x0a,0x93,0x73,0x8d,0x33,0x78,0x7f,0x97, +0xf3,0xce,0xee,0xa7,0x38,0x2c,0x34,0x06,0x5d,0x75,0xdc,0x63, +0x0c,0x7b,0x76,0xf6,0x3e,0x02,0xcd,0x56,0xd4,0x1c,0x00,0x3b, +0x46,0xac,0xb5,0x20,0xeb,0xd0,0xec,0x05,0x9b,0x32,0x3a,0x95, +0x6a,0x6c,0xe1,0xfa,0x46,0x74,0x1c,0x9b,0x68,0xa2,0x2b,0x4d, +0x34,0x69,0x56,0x12,0xb8,0xd1,0x23,0xa2,0x3a,0x3b,0x32,0x15, +0xee,0x13,0xf1,0xfa,0x2d,0xe1,0x3a,0x23,0x5e,0xc7,0x69,0x44, +0xb8,0x7e,0x50,0xbc,0x4e,0x9b,0x7b,0x60,0xe4,0x6b,0x72,0xf4, +0x88,0xf8,0x01,0x9e,0x63,0xb0,0xf5,0x1c,0x2e,0x53,0xc5,0xd9, +0x8a,0x57,0x8d,0xe4,0x6e,0xc3,0x8a,0x4c,0xd8,0x0b,0x9d,0x0a, +0x70,0x70,0x24,0xbb,0x53,0x54,0x60,0xe1,0x37,0xfc,0x95,0xd4, +0xa3,0x5a,0x23,0xa8,0xd4,0xa3,0x4a,0x23,0x58,0x35,0xa2,0x36, +0x2b,0x2d,0x6e,0x9d,0x24,0xd3,0x4f,0xe4,0x03,0x3d,0xfc,0x3d, +0xbc,0x3d,0xa4,0x39,0x34,0xc9,0x59,0x49,0xd9,0x89,0x59,0x46, +0xa9,0xbc,0xfd,0x2e,0xad,0x03,0x07,0x0c,0x68,0xaa,0x54,0x9c, +0x53,0x58,0x50,0x50,0xcc,0xa1,0xb5,0x10,0xd0,0x88,0xf6,0xed, +0xac,0x38,0x87,0x4a,0xc8,0x34,0x36,0xaf,0x2c,0xa7,0x22,0xa3, +0xca,0x30,0x95,0x3f,0xb1,0x4d,0x63,0x9f,0xb2,0x76,0xa1,0x25, +0x7f,0x39,0xa7,0x28,0xbf,0xa0,0x90,0x43,0x3d,0x16,0x5c,0xc0, +0x95,0x34,0xc2,0x1e,0x73,0x16,0xf7,0x6c,0x7a,0x73,0x60,0x39, +0xd9,0x10,0xf7,0xb4,0xb3,0xb8,0x43,0x8c,0x23,0xc0,0x0b,0xfe, +0x7b,0x70,0x07,0x9b,0x6a,0x2c,0x07,0x2b,0x99,0xfa,0xac,0xf4, +0x1a,0x25,0x18,0x14,0x7f,0x15,0x59,0x56,0x68,0x86,0x22,0x22, +0xfa,0x77,0x08,0xfe,0x8c,0xe8,0xbf,0x92,0x08,0xfe,0xba,0xa2, +0x3f,0x6d,0x28,0xc5,0x91,0x26,0x52,0xb8,0x1a,0x26,0xed,0x81, +0x45,0xca,0x25,0x57,0x79,0x5c,0x70,0x6f,0xd9,0x1d,0xeb,0x2f, +0xb8,0xc3,0x8c,0xed,0xce,0x2d,0xbb,0x70,0xf9,0xbe,0x12,0x9a, +0x7d,0xce,0xbf,0xff,0xb7,0x87,0x97,0x7f,0xe4,0xc4,0x5a,0xac, +0x23,0xd8,0xfa,0xff,0x30,0xea,0x65,0x89,0xf2,0x44,0x17,0x9e, +0x5f,0x95,0x86,0xfb,0x3b,0xfe,0x65,0x94,0xeb,0x5b,0x75,0x02, +0x5e,0xe8,0x8e,0x5e,0x2c,0x5c,0x01,0x2f,0x82,0x5e,0xe0,0x0f, +0x5e,0x2c,0xfe,0x6c,0x2c,0x75,0x2f,0x4f,0x93,0xba,0x97,0x2b, +0x91,0xa7,0xb5,0x02,0xfa,0x3b,0x7b,0x1c,0x83,0x49,0x58,0x8c, +0x5c,0x66,0x45,0x4c,0x45,0x8b,0x42,0x89,0xf6,0x09,0x76,0x97, +0x9b,0xf1,0x66,0x15,0xc5,0xb5,0xcf,0xfc,0x93,0x43,0x23,0xfd, +0x03,0xe5,0x03,0x02,0xc3,0xa2,0xe5,0x32,0xab,0xe2,0xaa,0x9a, +0x14,0x4a,0xb4,0x4e,0xb0,0x9b,0x1d,0xb5,0x17,0x1e,0x54,0x2c, +0x35,0xea,0xa9,0xad,0xad,0x29,0xaa,0x95,0x8f,0x4d,0x88,0x8d, +0x8a,0x0f,0x01,0x05,0x9c,0xce,0x0f,0xd6,0xd4,0xd7,0x15,0xd6, +0xc6,0x26,0xc4,0x45,0xc6,0x85,0xc2,0x7b,0xf4,0x0f,0x55,0x8d, +0x34,0x5a,0x4f,0x0e,0x4c,0x0a,0xb9,0x14,0x10,0x28,0x3f,0x63, +0x44,0x4d,0x7a,0x8e,0x4f,0x6d,0x37,0x86,0xea,0x09,0xfd,0x34, +0x64,0xff,0x80,0xa1,0x04,0xfb,0xce,0xff,0xdb,0x48,0x8d,0x02, +0x66,0x2f,0x92,0xc8,0xfa,0xdf,0x47,0x6a,0x08,0x95,0x72,0x84, +0x11,0xf4,0x8c,0xc9,0x79,0x7b,0xaf,0x33,0x67,0x5d,0xae,0x38, +0xf3,0x25,0xa5,0x99,0x85,0x99,0x55,0x1c,0x3a,0x86,0x90,0xbc, +0x33,0xd9,0x2e,0x99,0xa7,0xaa,0x0b,0xf8,0xf3,0x25,0x1e,0xa5, +0xee,0xf9,0x1c,0x54,0x2f,0x25,0xb9,0x89,0x39,0x49,0xd9,0x49, +0xce,0x35,0xbc,0xa9,0x8b,0xba,0xc7,0x61,0x5f,0x0e,0x2d,0xd9, +0xc0,0x88,0xa0,0x88,0xc0,0xc8,0x24,0x13,0xbe,0x3d,0xa1,0x23, +0xad,0x39,0x23,0xb4,0x89,0x77,0x0f,0x39,0x1b,0x72,0x36,0x94, +0x83,0x8d,0x6c,0x63,0x4a,0xda,0xaa,0x92,0x1d,0x1d,0xc7,0xe5, +0xab,0xeb,0x4c,0xba,0x9d,0x3f,0xf3,0x7f,0x2a,0x8f,0x3f,0x9e, +0x27,0xfa,0x11,0x87,0xc3,0x4e,0x2a,0x7a,0x84,0x87,0x84,0xba, +0xcd,0x39,0xc1,0x24,0x9b,0xc8,0x35,0x32,0x75,0x99,0xb2,0x9a, +0x38,0xa5,0xf8,0x8e,0xa8,0x87,0xcf,0x14,0xd0,0xd0,0xa4,0x89, +0x09,0x5f,0xec,0x69,0x6c,0x64,0x52,0x69,0xc1,0x0f,0x0e,0xe6, +0x5e,0x8f,0x01,0x39,0x0e,0x96,0x06,0x12,0x8c,0xe8,0x82,0x08, +0x56,0xac,0xc4,0x94,0xb7,0x2a,0x93,0x50,0x95,0x09,0x7e,0x86, +0x64,0x58,0xfb,0x20,0x8b,0xd3,0xcf,0xaf,0xdb,0xba,0x49,0xb1, +0xd1,0xa2,0xa9,0xad,0xb8,0x3d,0xa3,0x4b,0x1e,0x1e,0xe3,0xb2, +0x5e,0x61,0x85,0xd6,0x71,0x06,0x6f,0xe2,0x5c,0x12,0x53,0x1c, +0x7d,0x39,0xaa,0x84,0x83,0xfe,0x8d,0xd4,0x69,0x9e,0x53,0x2d, +0xdc,0x8c,0xeb,0x3f,0xa5,0x89,0x67,0xaa,0xb4,0xca,0x92,0xdd, +0x7e,0xdc,0x6d,0x0a,0xbb,0x33,0xbb,0x61,0x39,0x66,0xdd,0x80, +0xa0,0x76,0x31,0xd3,0x10,0x3c,0x8e,0x62,0x2c,0x2e,0xef,0xf6, +0x66,0xf1,0x9b,0x88,0xb1,0xfc,0x65,0x9c,0xe5,0x2b,0xde,0xb2, +0xfc,0xcc,0xff,0x61,0x7c,0x05,0xf6,0x49,0x88,0x7a,0x33,0xf4, +0x81,0xd3,0xc5,0x03,0x6f,0x09,0x7d,0xaa,0xa4,0xa2,0x3e,0x7b, +0x4d,0x9a,0x70,0xbd,0x19,0x2b,0x58,0xcf,0x6e,0xc2,0xdd,0x66, +0x2c,0x78,0xee,0x21,0xe2,0x03,0x23,0x88,0x61,0x02,0xdd,0x02, +0xdc,0xfc,0xdd,0xa8,0xeb,0xe0,0xd5,0x6e,0x88,0xfd,0x19,0x83, +0x3b,0x21,0xf8,0xf5,0x58,0x29,0x9d,0x79,0x80,0x49,0x35,0x90, +0xeb,0x61,0xea,0x33,0x32,0xea,0x94,0xc0,0x17,0xcb,0xd8,0x94, +0xbc,0xe4,0xbc,0xa4,0x3c,0x0e,0x72,0x69,0x00,0x54,0x84,0xfd, +0xa4,0x2a,0x39,0xb5,0x5a,0x89,0x0a,0x45,0xd3,0x74,0x39,0xfc, +0xc8,0xea,0xcd,0xf3,0x05,0xc0,0xb0,0xb5,0xc5,0x8d,0x95,0xd5, +0x75,0xa7,0xea,0x79,0xe7,0x93,0x27,0x9d,0x4e,0x51,0x62,0x5a, +0x6a,0x0f,0x33,0x61,0x79,0x3b,0x2e,0x7f,0xa2,0xb5,0x1d,0x8d, +0x9f,0x68,0x6f,0xc7,0xb9,0x86,0x30,0x17,0x67,0xda,0x2c,0x44, +0x46,0x1f,0x98,0x95,0xac,0xed,0x59,0xc3,0xb3,0xd6,0x3e,0xd9, +0xfa,0x7c,0x55,0x46,0xad,0xac,0x3c,0x87,0x9b,0x7b,0x55,0xd8, +0x08,0xa5,0xf8,0x2d,0x6b,0x94,0xe5,0xdd,0xa6,0x38,0x9a,0x08, +0x23,0x04,0xaf,0xd3,0x74,0xd7,0x82,0x0a,0x82,0x2e,0x49,0x10, +0x7c,0x17,0x27,0x61,0x8c,0xc3,0x8c,0x35,0x12,0xc6,0xfe,0x3d, +0xdd,0x9d,0x44,0x2d,0x31,0x89,0x81,0x0e,0x0b,0x02,0xc6,0xd2, +0xf6,0x1c,0x71,0xf3,0x08,0xde,0x87,0xe3,0x70,0x9f,0x15,0x7f, +0x46,0xeb,0xb7,0xb1,0x7f,0x92,0x64,0x9d,0x5f,0x8f,0x12,0x70, +0x7b,0x8e,0x6e,0x2c,0x7c,0x82,0x53,0x49,0xb1,0x76,0xf9,0x76, +0xd9,0xe1,0xae,0x1c,0xde,0xe3,0xe6,0xc9,0x27,0x4e,0x5d,0x9c, +0x18,0x8e,0x67,0x49,0x4d,0x5f,0xc5,0x93,0xf4,0x61,0x83,0x0c, +0xde,0x5b,0xfb,0x94,0xb2,0x8d,0x1e,0x07,0xbf,0xc3,0x2e,0x92, +0xa5,0x21,0xdb,0x97,0x72,0xa8,0x37,0x85,0xf7,0xbb,0xe3,0x79, +0xcf,0xbd,0x87,0x43,0x63,0x1f,0x92,0xa8,0x96,0x70,0xf8,0xd2, +0xc1,0xbe,0x78,0x3e,0xfc,0x76,0xf0,0x5d,0xff,0x7e,0x69,0xc9, +0xd2,0x91,0xa5,0xe4,0x4c,0xd9,0x99,0x62,0xd7,0x9c,0x82,0xfc, +0xe2,0xf2,0xec,0x62,0xd3,0x4c,0xde,0xd3,0xe9,0x84,0xb5,0x83, +0xc3,0x15,0xfb,0x72,0xfb,0x62,0x3b,0x0e,0xbc,0x8a,0xc8,0xd9, +0x32,0x97,0xb1,0xcf,0x2f,0x97,0xc9,0x8a,0x4d,0xb2,0x78,0xf7, +0xd3,0x0e,0x36,0xf6,0x0e,0xd5,0xf6,0xe5,0x76,0x85,0xf6,0x1c, +0x04,0x14,0xd3,0xf4,0xc9,0xb9,0xc8,0x35,0x27,0x2f,0xff,0x72, +0xf9,0xd8,0xe7,0x1e,0xa7,0xed,0xad,0x1d,0x1c,0xab,0xa5,0xf3, +0xed,0xb9,0xd1,0x28,0x94,0xfb,0x67,0x7a,0xd9,0xf9,0xcf,0xf4, +0xf2,0x3d,0x09,0x25,0x54,0x7a,0x7f,0xfa,0x0f,0x94,0x78,0xb3, +0xb0,0x5f,0xb2,0xcd,0x34,0x6a,0x9b,0x69,0x0c,0xcd,0xff,0x67, +0x10,0x6c,0x17,0x72,0x81,0x52,0xeb,0x69,0xa4,0xec,0x68,0x2b, +0x6c,0x45,0x5b,0x16,0x31,0x91,0x5c,0xcd,0xee,0xce,0xef,0x2c, +0x6e,0x72,0x6b,0x70,0xab,0xf4,0x28,0xaa,0xe2,0x4f,0x67,0xd9, +0x65,0xdb,0xca,0xaa,0x72,0xcb,0xf2,0x0a,0xf3,0x1c,0x4b,0xf8, +0xd3,0x67,0xed,0xce,0x58,0xba,0x1a,0xe7,0x19,0xe7,0x58,0x66, +0xb8,0xd9,0xf3,0x95,0xbe,0xb5,0xde,0xb5,0x5e,0x16,0xee,0x66, +0x5e,0xa6,0x3e,0x1c,0x3e,0x58,0xf0,0x96,0xc2,0xa6,0x49,0x14, +0x56,0x8d,0x8d,0xe4,0x64,0x80,0xb5,0x9f,0x55,0x20,0x07,0xd7, +0xf4,0xf1,0x21,0xeb,0x79,0xc1,0xf3,0xc2,0xb9,0xf0,0x44,0x63, +0xfe,0x4e,0xea,0xab,0xfc,0xbe,0x5c,0xee,0x25,0x3c,0x24,0xfa, +0xf8,0x98,0xd1,0x0d,0x4a,0x32,0xfa,0x32,0xed,0x8f,0xc2,0xdb, +0x45,0xf2,0x21,0x2d,0x16,0x3e,0xda,0xe7,0xb5,0x7c,0xe5,0x21, +0x65,0xb6,0xed,0x4d,0xef,0xdf,0x81,0x55,0x28,0xd6,0x77,0x66, +0xf1,0x43,0x19,0x7e,0xd8,0xbd,0x47,0x31,0xef,0x64,0x53,0x52, +0x4c,0x53,0x32,0x28,0xf0,0x16,0x32,0x39,0xd1,0x1a,0xa6,0x92, +0xca,0xf3,0xf5,0x6e,0x65,0xee,0x79,0xd5,0xbc,0x43,0xbe,0x5d, +0x96,0x6d,0x16,0x07,0x77,0x55,0x88,0x43,0xbe,0x75,0xae,0x75, +0xa6,0xbb,0x1d,0x7f,0xe5,0x7c,0xd3,0x99,0x32,0x0a,0xf1,0xc7, +0x9a,0xe4,0xca,0xf9,0x66,0xd7,0x72,0x57,0xfa,0xff,0xec,0xf3, +0x2c,0xf3,0xac,0x33,0x39,0xf8,0xea,0x08,0xb1,0xcf,0xb7,0xcc, +0xb3,0xca,0x72,0xa3,0x69,0xf3,0xf9,0xa6,0xb3,0x15,0xae,0xdc, +0x8c,0x91,0xc6,0x91,0xcf,0x89,0xa6,0x06,0x1e,0xe9,0xd7,0xd2, +0xc0,0xc5,0xfa,0xb0,0x58,0xa7,0xb7,0x1b,0x8e,0xe8,0xf4,0x75, +0xc3,0xda,0x4e,0x5c,0xcb,0x8c,0x9a,0x60,0x02,0xf5,0x4a,0xdf, +0x7f,0xd3,0x5e,0xff,0x29,0xd5,0x19,0x99,0x25,0xce,0x20,0x70, +0x59,0x0c,0xc4,0xcb,0xaf,0xd8,0x13,0x87,0xf5,0xf4,0xb7,0x9b, +0x97,0x18,0xf2,0x59,0x49,0x19,0xc9,0x19,0xc9,0x1c,0x46,0xf4, +0xd6,0x41,0x0a,0x9b,0xa2,0x27,0xf7,0x84,0x19,0xa8,0x28,0xbe, +0x41,0xd3,0xef,0xe1,0xd8,0xdf,0xe0,0x5d,0x05,0x71,0x19,0x93, +0x92,0x95,0x9c,0x9d,0x2c,0xe3,0xe0,0x32,0x6c,0x25,0xe2,0x8c, +0x21,0x61,0x06,0x33,0xaa,0x89,0xe5,0x6f,0x1d,0x5c,0x4a,0x93, +0x84,0x47,0xa0,0x4c,0x8e,0x8a,0x33,0x6e,0xb0,0xc2,0x5a,0x74, +0x25,0xdb,0xc2,0xd7,0x07,0xe9,0x29,0x5a,0x85,0x78,0xf9,0xd9, +0xce,0x39,0xdd,0x8a,0x3d,0xb0,0xc7,0x81,0xc9,0xcd,0x92,0x65, +0x67,0xe5,0x70,0xb0,0x04,0xe7,0x91,0xf8,0xb8,0xd8,0xa8,0x84, +0x0b,0xf0,0xf1,0x3e,0xbe,0x98,0xaa,0x92,0x41,0xff,0xb8,0x20, +0xe9,0x91,0xc3,0xa0,0xa0,0x30,0xe9,0x81,0xc4,0x98,0x8a,0x22, +0x85,0x14,0x4d,0x7f,0x56,0xf3,0x8c,0x23,0x4e,0xb4,0x57,0xcc, +0x35,0xe8,0xc9,0x6a,0xc8,0x2f,0xce,0x97,0x9f,0x21,0xfc,0x34, +0x32,0x8f,0x68,0xb0,0xf8,0x41,0x48,0xb4,0x35,0xcc,0x4c,0x90, +0x3b,0xcd,0x9a,0xa5,0x7b,0x77,0x2b,0x82,0x15,0xd5,0x6c,0x29, +0x92,0x46,0x35,0x48,0x91,0x33,0x46,0x55,0xd6,0x2d,0x34,0x2e, +0x4b,0xa9,0x98,0x12,0x52,0x72,0x44,0x0d,0xee,0x09,0x94,0xeb, +0xa6,0x21,0x2b,0xec,0x6c,0xe0,0x99,0x20,0xaf,0x0e,0x5f,0x3e, +0xb9,0x30,0xb9,0x3a,0xae,0x84,0x2b,0xc7,0xca,0x2e,0x88,0x6f, +0xc4,0xf8,0x16,0x0d,0x5c,0x88,0x76,0x34,0xc0,0xe1,0x59,0x5f, +0xdc,0xae,0x8e,0x33,0x14,0xdb,0x4f,0xca,0xdd,0x80,0xf9,0x69, +0xb0,0x0d,0x2e,0x50,0x0d,0xc1,0xe2,0x1f,0x34,0xab,0xc1,0x61, +0x6a,0x6e,0xab,0xb1,0x5c,0xa0,0xf4,0x1b,0x29,0x17,0xa0,0xae, +0x3f,0x09,0x33,0xd6,0x4b,0x3d,0x5d,0xd7,0x25,0xd7,0x6f,0x55, +0xa2,0x59,0xc3,0x29,0x16,0x36,0x53,0x73,0xcf,0x05,0x8d,0x3f, +0x18,0x7c,0xe7,0x1f,0x14,0xf8,0x87,0x24,0x69,0x15,0xa5,0xc9, +0x2b,0xbe,0xe2,0x0a,0xa9,0x8b,0xe5,0x20,0x7c,0x42,0xf0,0xc3, +0x1e,0xf8,0x90,0x69,0xd5,0xa6,0xc9,0xf0,0x47,0xda,0x2c,0x1e, +0xb6,0x26,0x5a,0xf8,0x61,0x2f,0xf5,0x8f,0xd9,0xf0,0x91,0x16, +0x7e,0xc4,0x80,0xc1,0x16,0x22,0xaa,0xe2,0x7a,0x1d,0x13,0xa1, +0xac,0xc5,0x86,0xc1,0x6b,0xc0,0x10,0x64,0x76,0x48,0x93,0x37, +0x3e,0x1c,0x9b,0xbc,0xf1,0x18,0x19,0xb6,0x65,0x36,0x30,0x5f, +0xd1,0x9f,0x33,0xfe,0x9c,0xeb,0x47,0x3c,0x8a,0xbc,0x1b,0xfd, +0x7b,0x5a,0x60,0x72,0x31,0x7c,0x98,0x05,0x1c,0x95,0x5f,0xbe, +0xab,0xbc,0x56,0x39,0x6d,0xe0,0xfc,0x7e,0x0a,0x85,0xa9,0x30, +0x43,0x01,0xe4,0xda,0xbd,0x99,0xe2,0x52,0xb7,0x82,0x13,0xa5, +0x67,0x32,0xe4,0x1d,0x1c,0x4a,0xbc,0x4a,0x5d,0x72,0xdc,0xe4, +0x37,0xde,0x35,0x68,0x03,0xd5,0x4e,0x54,0xbd,0xad,0x75,0x08, +0xf7,0xde,0xd6,0x3e,0x84,0xbb,0xf4,0x61,0xd7,0xa1,0x9e,0xdb, +0xb0,0xf7,0x68,0x8f,0x2e,0x3e,0xc6,0xa5,0xc7,0x60,0xaf,0x21, +0xba,0x02,0xcb,0x78,0x5d,0xf4,0x92,0xa6,0xd8,0xcf,0x35,0x6c, +0x60,0x22,0x37,0x07,0xee,0xb2,0xda,0xdf,0x74,0x92,0x6f,0x78, +0x92,0xf2,0xdd,0xa5,0x6f,0xb9,0x66,0xe6,0x02,0xca,0xf9,0xe0, +0x07,0xc6,0xcb,0x5b,0x1d,0xf9,0x3b,0xb0,0xfc,0x12,0x9c,0x80, +0x85,0x0a,0xf0,0x2e,0x5c,0x66,0xa3,0x70,0x4d,0x22,0xae,0x2b, +0xc0,0x69,0xe7,0x1d,0xbd,0x4f,0x7a,0x39,0x71,0xb5,0xfb,0x5f, +0x0f,0x83,0xca,0xf1,0xef,0xae,0xb5,0xa0,0xa3,0x58,0xd8,0xda, +0x0b,0x3b,0x59,0x3f,0x4f,0x1f,0xaf,0xf3,0xde,0xd5,0x36,0x7c, +0x59,0x55,0x51,0x7d,0x7e,0x53,0xaa,0x4d,0xc6,0xc9,0x6c,0xf7, +0x12,0xc7,0x86,0xb4,0xb8,0xe6,0x2c,0x58,0xc8,0x9b,0xe7,0xca, +0x8d,0x7e,0x25,0x10,0x82,0x37,0xfc,0x71,0x99,0x3d,0x4e,0x50, +0x6c,0xb3,0x2e,0xfa,0x26,0xed,0xfb,0x58,0xd8,0x28,0xff,0x0a, +0x73,0x77,0x30,0x19,0x1a,0x72,0xdd,0x4c,0x63,0x86,0xd4,0x0a, +0x2d,0xa8,0xc3,0xc2,0x3c,0x1a,0xe4,0xd7,0x83,0xee,0x37,0xcc, +0x5a,0x51,0x45,0xea,0xcc,0xbd,0xf6,0x99,0xc2,0x37,0xa8,0xcb, +0x08,0xeb,0x68,0x5e,0xb1,0x4a,0xfb,0x3b,0x96,0x86,0x16,0x25, +0xb2,0x1a,0xa7,0xbe,0x62,0x7b,0x50,0x91,0x2c,0xd1,0x7e,0xcd, +0xce,0x68,0x15,0x3a,0x49,0x63,0x54,0xe3,0xa5,0x86,0x68,0x0e, +0xb5,0xdb,0x41,0x9f,0x2d,0x8d,0xa6,0xaf,0xd8,0xb8,0x80,0xd8, +0x80,0xd8,0xc0,0xea,0x2c,0xfe,0x5c,0xcd,0x99,0x86,0x33,0xe5, +0x8e,0xe7,0xf8,0x24,0xdf,0xa4,0xf3,0x89,0xe7,0x2d,0xc2,0x2c, +0xc2,0xcd,0x22,0x5a,0xab,0x9a,0x9a,0x3a,0xae,0xda,0x17,0xf3, +0x67,0x4f,0x9f,0x3a,0xe5,0x78,0xda,0x3f,0xc5,0x2f,0xd5,0x37, +0xb5,0xac,0xb8,0xa4,0xac,0xb8,0xda,0xae,0x80,0x77,0x75,0x70, +0x72,0x3c,0xe5,0xe4,0x9b,0xea,0x97,0x14,0x98,0x70,0xea,0x14, +0x5f,0xe9,0x52,0x73,0xa2,0xf4,0x94,0xd7,0x79,0x2f,0x1f,0x2f, +0x1f,0xce,0x93,0x1a,0x72,0x8e,0xf0,0x23,0x28,0x91,0x0a,0xe9, +0xcf,0x27,0xe9,0x1f,0x7d,0xbd,0x7c,0xb9,0x48,0x2f,0x6a,0xe2, +0x39,0xf1,0xe6,0x0d,0x51,0x75,0x97,0xea,0xa3,0xe5,0xff,0x79, +0x27,0x65,0xb1,0x59,0x8e,0x7c,0x75,0xb6,0x47,0xb5,0x73,0x9d, +0x4b,0x99,0xbc,0x83,0x67,0xb2,0x7f,0x92,0x6f,0xa2,0xaf,0xbc, +0x55,0x98,0x65,0xb8,0x45,0x44,0x47,0x55,0x4b,0x63,0x57,0x37, +0xbd,0x0d,0x97,0xd3,0x8e,0x8e,0x27,0x4e,0xf9,0xa7,0xfa,0xa6, +0xf9,0xa4,0x56,0x14,0x97,0x97,0x97,0x48,0xb7,0x71,0xc6,0xe1, +0xb4,0xa3,0xbd,0x93,0x5d,0x29,0xef,0xec,0x24,0x17,0x8f,0xb5, +0x16,0x50,0xcb,0x62,0x26,0x45,0x93,0x15,0x04,0xd7,0xb1,0x18, +0x82,0x0b,0xe9,0x51,0x28,0x3d,0x9a,0x3c,0xb9,0x0e,0x43,0xad, +0x58,0x64,0xac,0x89,0xcc,0x2a,0xdd,0x26,0xc3,0xac,0x29,0x95, +0x3f,0xdf,0x7c,0xae,0xde,0xab,0x8a,0x13,0xaa,0xcf,0x91,0x7c, +0xab,0x2c,0xab,0x2c,0xb3,0xc6,0x4c,0xde,0xab,0xc9,0xa3,0xc1, +0xe3,0x0a,0x37,0x5a,0x16,0x49,0x02,0xad,0xbc,0x4d,0xcf,0xda, +0x34,0x79,0xf3,0x45,0x4d,0xe9,0x0d,0x49,0x0d,0xd2,0xa4,0xcb, +0xe9,0x04,0xe4,0x31,0x12,0xe5,0x59,0xe8,0x0d,0x24,0xc5,0x0d, +0x19,0x0d,0x69,0xf5,0xe6,0x34,0x40,0x59,0x7b,0x9a,0x9f,0xb5, +0xe3,0x54,0x9e,0x12,0x3d,0x5c,0xd2,0xc5,0xd6,0xe3,0x3b,0xc4, +0x94,0x26,0xb9,0x1b,0x06,0x84,0x89,0x50,0xc3,0x7a,0x5b,0x68, +0x3b,0xe3,0xca,0x93,0x19,0xfa,0xfc,0x2f,0xb2,0xe7,0xa5,0xd5, +0x35,0xf1,0xf1,0x31,0x11,0x09,0xe1,0x10,0xba,0x42,0xda,0x0e, +0xe4,0xec,0x33,0xff,0xd8,0xd0,0x88,0x20,0x69,0x84,0x35,0xf4, +0x52,0x92,0xb4,0x1d,0x48,0x86,0x3c,0x0c,0xe2,0xe0,0x06,0x26, +0xaf,0x11,0x4f,0x7e,0xe9,0x1b,0x1b,0x16,0x11,0x1c,0x28,0x1f, +0xe8,0x17,0x72,0x49,0x2e,0x3d,0x27,0x2e,0xaf,0x58,0xa1,0x40, +0xdb,0x83,0x3d,0x6e,0x71,0x12,0x35,0xac,0x15,0x33,0xf4,0xe1, +0x9d,0xdc,0x47,0x97,0x6b,0x6b,0xe4,0xe3,0xe3,0x62,0x22,0xe9, +0x57,0x7a,0xac,0xe3,0x03,0x98,0x4c,0x43,0xb9,0x1f,0xa8,0xf0, +0xca,0xa6,0xc2,0xe1,0x57,0x71,0x42,0x33,0xf5,0x9e,0xd9,0x91, +0xe4,0x44,0x99,0xe3,0x90,0xcb,0x77,0xfd,0x30,0xa9,0x1a,0x48, +0x3e,0x2c,0xd6,0xa7,0xf5,0xc4,0xe9,0x2e,0xf3,0x2c,0x57,0x79, +0xfe,0xe6,0x07,0x0a,0x11,0xb0,0x95,0x03,0xab,0x4e,0xb4,0x02, +0x46,0x1b,0x19,0x51,0x17,0x55,0x16,0x81,0xb3,0x0e,0xe6,0xc3, +0x3a,0xc6,0xf1,0xe2,0xa9,0x48,0x27,0x45,0x34,0xd6,0x7f,0xc0, +0x84,0xe1,0x6a,0xa7,0x45,0xfa,0xdb,0x5b,0xed,0xf8,0xc1,0x5f, +0x0a,0xfe,0x88,0x83,0x6d,0xdc,0x4d,0x26,0x04,0xf5,0xdc,0x16, +0x9b,0x6e,0xb9,0x6a,0xcd,0x0f,0xc1,0xbb,0xd9,0xb0,0x14,0x1e, +0x28,0xc0,0x5a,0xe1,0x13,0x36,0x1a,0x0d,0x65,0xb8,0xb1,0x04, +0xa7,0x9f,0x31,0x39,0x65,0x71,0xc2,0x9a,0x6b,0x9a,0x07,0xd3, +0x7f,0x00,0xcb,0x15,0x30,0x49,0xda,0x38,0xba,0x5b,0xfc,0xae, +0x93,0x26,0xfc,0xac,0x93,0xa3,0xe3,0x69,0x3b,0x27,0xaa,0x06, +0xef,0xf5,0xf5,0xdf,0x68,0xbd,0x57,0xb4,0xb5,0x5c,0xb3,0xea, +0x54,0x85,0x5d,0x7d,0x5a,0x6c,0x87,0x0c,0x34,0x78,0x93,0x3c, +0x39,0xe1,0xe1,0x64,0xc7,0x5c,0xa3,0x3c,0xcb,0xb4,0xb3,0xb6, +0x7c,0x93,0x4f,0xab,0x6b,0xb9,0x27,0x27,0xce,0xa3,0x2a,0x7e, +0x2d,0x4c,0x7a,0xc9,0xac,0xc5,0x3c,0x02,0x34,0x59,0x44,0x39, +0x76,0x95,0x29,0xc1,0xe9,0x6b,0x61,0xba,0xf4,0x60,0xd5,0xc8, +0x41,0x62,0x36,0x92,0xd8,0x84,0x62,0x87,0xb0,0xb4,0x45,0x5c, +0xda,0xae,0x62,0x28,0xf2,0x26,0x02,0x6f,0xc0,0x0a,0xef,0xad, +0x23,0xa3,0x3b,0x70,0xee,0xc8,0x0e,0xe6,0xd8,0x8f,0x44,0x57, +0x6c,0xb9,0xca,0x8e,0xf0,0xa8,0x41,0x54,0x06,0x60,0xe2,0xe8, +0xcf,0x38,0x71,0xe0,0x1a,0x2b,0x7c,0x8c,0xb7,0x08,0xbc,0x6c, +0xc5,0x97,0x03,0xcc,0xab,0xe8,0xaf,0xa3,0x9f,0xc4,0xe6,0x9f, +0xcb,0xf3,0xca,0x3e,0x57,0x5d,0xce,0x1b,0x34,0xea,0xd7,0x68, +0x94,0x5b,0x9d,0xe5,0xd3,0x83,0xd2,0x82,0xd2,0x03,0x71,0x4a, +0x28,0xca,0x87,0xe3,0xbc,0xc8,0x42,0x59,0xbe,0x2c,0x2f,0x8f, +0x13,0x76,0xb4,0x8c,0xae,0x37,0x81,0x3d,0x8c,0xab,0x87,0x8b, +0xfb,0x49,0x8f,0xb1,0x65,0xb8,0x8c,0xe7,0xc4,0x99,0xc9,0xc1, +0x14,0x60,0xa3,0xa2,0xe1,0x1d,0x25,0x0d,0x7c,0x60,0x0c,0x0f, +0x34,0xc5,0x35,0x46,0x7f,0xf2,0x6d,0xd2,0x32,0x5c,0xc2,0x51, +0x70,0x23,0xb7,0x87,0xba,0xee,0xd6,0x3c,0xe1,0x60,0x3b,0x53, +0xb7,0xad,0xe7,0xe0,0x5d,0xf5,0xaa,0x56,0x5e,0xad,0xd5,0xe4, +0xaa,0xc3,0x10,0x07,0xa4,0x13,0x57,0x33,0x7e,0x97,0x03,0x4b, +0x82,0xcb,0x38,0x58,0xd6,0x81,0x09,0x4c,0x5c,0x51,0x6c,0x51, +0x4c,0x31,0x07,0xe9,0x9d,0xf4,0x97,0xe8,0x82,0x4b,0x05,0x51, +0x85,0x5a,0x31,0x7c,0xa4,0x4b,0x84,0x4b,0xf8,0x19,0xaa,0x8f, +0xf4,0x41,0x87,0xb9,0xe0,0x1c,0xe6,0x1c,0x4a,0x7f,0xd9,0x64, +0x00,0x4b,0x99,0xa0,0x93,0x01,0xa7,0xfd,0x9d,0x38,0x5c,0xa5, +0x4f,0xd9,0xd8,0xe1,0xb8,0xb9,0xb6,0x96,0x21,0x87,0x7f,0x80, +0x2a,0xf9,0x2d,0xfe,0x87,0x84,0x67,0x69,0xf1,0xe7,0xe2,0xce, +0xc5,0x79,0x77,0x16,0xf2,0x4e,0x0f,0x6d,0xbe,0xb2,0xbf,0x61, +0xe4,0xc2,0xe7,0xd8,0xe5,0x58,0x64,0x59,0x18,0x84,0xe8,0x84, +0x69,0x5e,0xc8,0x19,0xc8,0x79,0x94,0xf9,0x90,0x03,0xad,0xab, +0xf8,0xb3,0xee,0x8f,0x8c,0xf7,0x5e,0xf7,0xad,0xae,0xc7,0x39, +0xdf,0xf3,0x91,0x91,0x3e,0x4a,0x23,0x1b,0x6f,0x93,0xf8,0x93, +0x49,0xa7,0x93,0xe9,0x97,0xbf,0xcb,0xa4,0x5c,0x4e,0x2a,0x4d, +0x2c,0xe5,0x30,0x55,0x74,0x24,0x26,0xfe,0x26,0x81,0x46,0x41, +0x1c,0x8d,0x2f,0x8a,0x5d,0xa8,0x08,0x1f,0x6b,0xe2,0xc7,0xa8, +0xa4,0x07,0x4a,0xb8,0x8f,0x35,0x0c,0x36,0x08,0xd1,0x0d,0x4d, +0xd4,0xe2,0x41,0x3e,0x13,0x26,0x64,0xc1,0xa4,0x12,0x4e,0x08, +0x86,0x99,0xa4,0x03,0xb5,0x1e,0xb0,0x15,0x71,0x65,0x71,0x45, +0x09,0xae,0x6d,0xbc,0x8a,0xd7,0x4e,0xff,0x6d,0x17,0x52,0x8d, +0xf8,0xe2,0xa8,0x92,0x4b,0x97,0x63,0xb8,0xc3,0x78,0xd0,0x00, +0x16,0xb0,0x2e,0xda,0x2a,0x7a,0xa8,0xa0,0x5e,0xa8,0xc7,0xc3, +0xca,0x7b,0x83,0xd7,0x53,0xef,0x70,0xf1,0x18,0xd9,0x03,0x17, +0xe3,0x99,0xa4,0xa3,0xb7,0x0e,0xc1,0x82,0xdd,0xc5,0x34,0x7f, +0x9c,0x39,0x70,0xe8,0xea,0xe9,0x6e,0xaa,0x0a,0x73,0x46,0xee, +0x13,0x15,0xf1,0x34,0x83,0x2a,0xc8,0x6d,0xc3,0xce,0xb9,0x8a, +0xc5,0xaa,0xd0,0x0c,0x13,0x7e,0xfd,0x22,0x9b,0x4a,0x89,0x38, +0x46,0x86,0xab,0xe0,0xdd,0x6d,0xd0,0x3c,0xb7,0x68,0x88,0xc7, +0xc6,0xdf,0x70,0xee,0x97,0xa0,0xa2,0x80,0xa2,0x25,0x81,0x1d, +0x70,0xf6,0x2a,0x9e,0x05,0x25,0xf6,0xe7,0xf4,0xbb,0x99,0x37, +0x4a,0x1d,0x3a,0xf8,0x43,0x8e,0x1b,0x3d,0xe6,0xf9,0x71,0xa2, +0x0d,0xd4,0xd2,0x00,0x66,0x03,0x67,0x68,0x32,0xe9,0x8b,0x3b, +0xd0,0x4f,0x0b,0x5a,0x84,0x60,0x6c,0xd3,0x86,0x00,0xdc,0x44, +0x1b,0xf3,0xf2,0x48,0x19,0xd1,0xa1,0x09,0xe3,0x14,0xbc,0xac, +0x03,0x97,0xf1,0xfd,0x51,0x0e,0xde,0x87,0xb4,0x6e,0x4c,0x83, +0x49,0xec,0x2f,0xf1,0xbf,0xa7,0xbf,0x28,0x3a,0xd5,0xc5,0xaf, +0x76,0xc2,0x89,0xbe,0x38,0x2b,0x88,0x13,0xe7,0x8f,0x84,0x09, +0xab,0x58,0xdc,0x2e,0x0e,0xd1,0x68,0xa7,0x82,0x0c,0x96,0xb2, +0xd2,0x22,0x1e,0xc9,0x0a,0x5f,0xa8,0xac,0x67,0x83,0x2e,0x06, +0x47,0x06,0x2b,0x62,0x9c,0x26,0x44,0x32,0x9e,0xdb,0xd4,0x75, +0x71,0xa1,0x76,0xb9,0x36,0x0f,0x3b,0x6e,0xde,0xba,0x2f,0xfb, +0x9d,0x66,0x6c,0x18,0x76,0x0d,0xc2,0x20,0xb0,0x8f,0xa6,0x09, +0xfa,0x90,0x42,0x15,0xd0,0xb5,0x3d,0x7d,0xda,0xd7,0x38,0xf0, +0xe9,0xc2,0x22,0xe6,0x5c,0xe1,0xf9,0x62,0x9f,0xcb,0x1c,0x24, +0x76,0x88,0xdb,0x98,0xa4,0xc2,0xc4,0xc2,0xf8,0x42,0x4e,0x38, +0x70,0x55,0xdc,0xc2,0xc4,0xe6,0xc6,0xe6,0x45,0xe7,0xa9,0xc7, +0xf3,0x17,0xce,0x86,0xd1,0x17,0x87,0xa0,0x0b,0xaf,0x98,0x90, +0x33,0x81,0xf4,0xc5,0x61,0xa9,0x01,0xc4,0x33,0xbe,0xce,0xde, +0xce,0x5e,0x2e,0x1c,0xe6,0xe9,0xc1,0x39,0x46,0xed,0xe0,0x8e, +0xe3,0xf3,0xb5,0x2b,0x0c,0xf8,0x96,0xc2,0x86,0xe2,0x9a,0x12, +0x4e,0x9c,0x30,0x50,0x27,0xb8,0x5b,0x0d,0x0a,0x72,0x6c,0xb5, +0x53,0x83,0x53,0xab,0x33,0x27,0xca,0x09,0x53,0x48,0x9a,0x53, +0xba,0x73,0xe6,0x19,0xa9,0xc7,0x2b,0xb3,0x28,0xbd,0x38,0x95, +0xe2,0xf3,0xaa,0xb8,0x88,0x48,0xeb,0x70,0x3a,0xce,0x13,0xdd, +0x7f,0x07,0xd3,0x2e,0x34,0x7d,0xc2,0x3c,0x4e,0xb8,0x97,0x71, +0xb3,0xc0,0xa5,0x9d,0xd7,0x74,0xdf,0x7a,0x6e,0x43,0x40,0x67, +0x7d,0x63,0xf3,0x95,0x56,0x0e,0x6a,0x99,0x32,0xcb,0x6a,0xdb, +0x46,0x3b,0x0e,0xc3,0x74,0xc1,0x8d,0xe6,0x70,0xc5,0x23,0x6d, +0xc4,0x04,0x3a,0xd5,0xb1,0xd5,0x0c,0x5a,0x55,0x46,0x97,0x5d, +0x83,0x8a,0x26,0xac,0xe8,0x62,0x7f,0x8d,0x85,0x77,0x93,0x9f, +0xe6,0xba,0xb5,0xf0,0xeb,0xdd,0x91,0xf8,0x23,0x09,0xe1,0x30, +0x7e,0xa4,0x10,0x32,0x59,0x71,0xfa,0xa8,0x22,0x89,0xcd,0x8a, +0x96,0x5d,0xa2,0x2a,0xee,0x17,0x28,0x1e,0x0d,0xc0,0x62,0xf8, +0x86,0x89,0xf0,0x08,0xf7,0x0a,0x3d,0xc7,0x89,0xc4,0x00,0x90, +0x31,0x3c,0x82,0x13,0xac,0xd0,0xcd,0x23,0x9d,0xe2,0x27,0x39, +0x0f,0x3e,0x18,0xea,0xfc,0x91,0x83,0x1f,0x99,0x33,0x11,0xce, +0xa1,0x2e,0x8a,0x8e,0xc1,0x5e,0x41,0x06,0x73,0x70,0x0f,0x23, +0x4d,0x6a,0xdf,0xc2,0x3c,0xab,0x4a,0xbd,0x91,0xaa,0x14,0x5f, +0x1d,0x5d,0x7f,0x43,0x41,0x3c,0x0e,0x2e,0x04,0x8b,0x6e,0x40, +0x11,0x33,0x70,0x94,0xdc,0x80,0x86,0xa3,0x2c,0xfe,0xdd,0x8c, +0x1c,0xc4,0xa2,0x3b,0x2c,0x3c,0x9f,0x0d,0x0d,0x07,0xb1,0x81, +0xb6,0xc2,0x87,0x23,0xd9,0x04,0x7d,0x74,0x40,0x99,0xea,0x84, +0x0f,0xe5,0x70,0xa3,0x1e,0x6c,0xa0,0x7c,0xb9,0x40,0x0e,0x57, +0xeb,0xc1,0x2a,0x7a,0xb4,0x4c,0x0e,0x8d,0x84,0xf7,0xf0,0x20, +0xbc,0x03,0xba,0x5d,0xa8,0xfb,0x54,0x13,0xbb,0xe0,0x20,0x15, +0x1f,0x33,0xa1,0x40,0x13,0x0b,0x50,0x87,0x09,0x83,0x65,0x72, +0xb0,0xac,0x0b,0x57,0x30,0x17,0x60,0x81,0x1c,0xac,0xe9,0xa2, +0x52,0xf8,0x02,0xbc,0xdb,0x9b,0x7c,0x23,0xa3,0x5d,0x26,0xef, +0xd4,0xa2,0xeb,0xb1,0xcf,0x73,0xa7,0xaf,0x7c,0x96,0x78,0x55, +0x6e,0xab,0xf6,0x9f,0xf3,0x7b,0x76,0x32,0xa3,0x95,0x58,0x4a, +0x40,0xa1,0xe9,0xb7,0xa1,0x87,0xc3,0xa6,0x35,0xfc,0x6e,0xf5, +0xa5,0xba,0x38,0xcb,0x82,0x13,0xea,0xe1,0x1d,0xf2,0x37,0x2b, +0x98,0xa2,0xf6,0x93,0x7a,0x6d,0x3b,0xbf,0xb2,0x1b,0xa7,0x0f, +0x2f,0xa8,0xa5,0xb2,0x7b,0xaf,0x34,0x19,0x3c,0xab,0x03,0xb3, +0xfa,0x34,0x34,0x31,0x47,0x2a,0xa2,0x0c,0x20,0xca,0x89,0x31, +0x4f,0x32,0xde,0xbd,0xef,0x00,0x4e,0x3c,0x26,0x5f,0x66,0x5c, +0x21,0xab,0x28,0x28,0x2b,0x92,0x47,0xef,0x91,0xa4,0x16,0x91, +0xe9,0x81,0x2f,0x9b,0xf0,0xcb,0xae,0xb1,0xf2,0x2a,0x60,0x33, +0xfe,0x8d,0x95,0x65,0x65,0xe5,0xa4,0xe5,0xaa,0x25,0xf3,0xe7, +0xcf,0x7a,0xba,0xb9,0xba,0x72,0xe8,0xc9,0xa4,0xa4,0x25,0xa5, +0x25,0xa6,0x71,0x3d,0x6d,0x90,0x63,0xd4,0xcf,0xa0,0x06,0xce, +0x27,0x58,0x5e,0xc3,0xc4,0xd2,0x7f,0x31,0xb1,0x1c,0x64,0x33, +0x58,0x8e,0x2b,0x49,0x17,0x94,0xeb,0xb1,0x58,0xbe,0x98,0x0a, +0xc2,0x72,0x6d,0x16,0xbe,0xc4,0xe5,0x44,0x05,0x5b,0x4d,0xa1, +0xf5,0xd0,0x28,0x7f,0x1b,0x4a,0x9a,0xb1,0xa4,0x9d,0xfd,0x2d, +0x0e,0x26,0xa4,0x3c,0xcf,0x75,0x6f,0xe1,0xd7,0xb9,0xe2,0x7b, +0xfe,0xf8,0x41,0x28,0x87,0x5d,0x43,0x75,0x23,0xbc,0xd5,0x10, +0xdc,0x12,0xe5,0x4c,0xa9,0x93,0x19,0xd3,0xdc,0x41,0x6b,0x1e, +0x4e,0x5a,0x8b,0xc9,0x4b,0x8b,0x35,0x78,0xc8,0xf8,0x1d,0x3e, +0xfc,0xb9,0x0e,0xa6,0x72,0xf1,0x4c,0x3d,0xcd,0xce,0x3f,0x59, +0x06,0xb9,0x73,0x8b,0xfb,0x78,0x4c,0x7d,0x8d,0xef,0xbd,0xd4, +0xa4,0xae,0x62,0x8d,0xf7,0x48,0xb7,0xe8,0xa4,0x03,0x46,0x38, +0x59,0x54,0xd4,0x12,0x14,0x91,0xc5,0x0e,0xec,0xbf,0xd6,0x28, +0x34,0x9b,0x0f,0x43,0x3f,0xde,0x04,0x56,0x58,0xdd,0x2b,0xae, +0x86,0xc9,0xf4,0xef,0xa2,0x9f,0xd4,0x51,0xd7,0x8c,0xcb,0x69, +0xd0,0xfc,0x30,0x88,0x1c,0x7f,0x76,0x02,0xe6,0x9c,0x07,0x47, +0x0e,0xf6,0xf6,0x49,0x4f,0xc8,0x7d,0x16,0xf1,0x24,0xf2,0xe5, +0x70,0xca,0x40,0x46,0x67,0x96,0x43,0x0f,0x8f,0x93,0xc7,0x56, +0x7c,0x5a,0x1e,0xc0,0x8d,0x06,0xb0,0x67,0x42,0xcf,0x86,0x9e, +0x0d,0x93,0x76,0x32,0xca,0x03,0xb6,0xf2,0xb3,0xe2,0x80,0x1e, +0xde,0xec,0xbc,0xee,0x39,0x1d,0x1f,0x4e,0x58,0x02,0x5b,0xa4, +0x67,0xe4,0xea,0x71,0xf5,0xad,0x8d,0xa5,0x26,0xfd,0x71,0xb1, +0x43,0xd9,0x10,0xc4,0x1b,0xe6,0xc9,0x89,0x6e,0x10,0x4f,0x7a, +0x71,0x0b,0x1c,0x66,0x3b,0x53,0xdb,0xd3,0x6a,0xd2,0x9d,0x3b, +0xf9,0xb5,0xf6,0xb8,0xe0,0xf4,0x92,0xc0,0x54,0x6d,0xbe,0x21, +0xb6,0x33,0xa1,0x8b,0x26,0x2e,0xdb,0x71,0x87,0x16,0xec,0x40, +0x65,0x24,0xe2,0x27,0x7d,0x37,0x21,0x13,0x1e,0xa1,0x3c,0x28, +0xb3,0x50,0x07,0x27,0x48,0x67,0x4c,0x7b,0x5c,0x5b,0x42,0xd4, +0xe6,0x4b,0xbb,0x62,0x0f,0x70,0xb8,0x81,0x11,0xb7,0x88,0x87, +0x08,0x38,0x80,0x15,0x3a,0xd0,0x40,0x68,0x49,0x39,0xf0,0xdc, +0x51,0xe3,0x5d,0x0b,0x77,0x95,0xea,0xf3,0x3f,0x3e,0xec,0xbb, +0x93,0xf6,0x8a,0x9a,0x29,0x6d,0x73,0x9d,0xe6,0xcf,0x3b,0x4b, +0xba,0xf8,0x15,0xf7,0x6c,0x86,0x3c,0x6f,0x72,0x23,0x7b,0x70, +0x22,0xd9,0xc1,0x94,0xd5,0xda,0x17,0xd8,0xe4,0x59,0xc8,0xe4, +0x4f,0x5a,0x37,0x78,0x54,0xbb,0x55,0xb8,0xca,0xe3,0x06,0x98, +0xa8,0x29,0x3d,0x18,0xac,0x0d,0xa7,0x57,0xa2,0xe9,0xa8,0x7c, +0x2f,0x5c,0x84,0x45,0xe8,0xdf,0x03,0xfe,0xb0,0x1a,0x8f,0x2d, +0x95,0x9e,0x73,0x78,0xc4,0x34,0x65,0x67,0x37,0x29,0x09,0xb7, +0xf0,0xc4,0xf7,0x10,0xca,0x8a,0x2f,0xf0,0x03,0x72,0x15,0x2f, +0xea,0x7e,0x3b,0x17,0xd7,0xea,0xc1,0x5a,0x7c,0x9f,0xb2,0xe1, +0x57,0xbd,0x7d,0xe0,0x0b,0x45,0xc8,0x50,0x3a,0x9c,0xdf,0x85, +0xf3,0xff,0x60,0x85,0x39,0x12,0x46,0x16,0xc1,0x34,0x58,0xc4, +0xf4,0xbc,0x79,0xaa,0x61,0x35,0x4e,0x63,0x11,0xf4,0x09,0x48, +0x9b,0xac,0x2e,0x62,0xc0,0x14,0xa8,0xd2,0x5a,0x4d,0x8f,0x57, +0x4b,0xcf,0x4e,0xea,0x10,0x50,0xa6,0xee,0xa2,0x4c,0x01,0xa0, +0x2a,0xd8,0x10,0xdf,0x70,0xdf,0x70,0x9f,0x08,0x8e,0x72,0xed, +0x5c,0x36,0xad,0x3c,0xa5,0x3c,0xb1,0x44,0x33,0x99,0x0f,0x76, +0x0c,0xb0,0xf5,0x3d,0xc1,0x2d,0x46,0x0f,0xaa,0x59,0x4e,0x46, +0x9e,0x56,0x74,0x8f,0x70,0x8f,0x74,0x8b,0x8c,0xd5,0xe2,0x73, +0xa2,0x72,0x2e,0x65,0x47,0x5d,0xc0,0x43,0xbe,0x38,0xc3,0x66, +0x71,0x8b,0x2d,0xdf,0x02,0x72,0xe9,0xa0,0x14,0x03,0x3a,0x37, +0xe3,0x87,0x12,0xfa,0x92,0x38,0xf1,0x13,0xaa,0x20,0xd2,0xb4, +0xe5,0x7e,0x62,0x6a,0xa5,0x8d,0x72,0x85,0x25,0x6c,0x7a,0x74, +0x7a,0x4c,0x7a,0x34,0x27,0x24,0x5d,0x22,0xca,0xf0,0x9e,0x03, +0x4c,0xf7,0x86,0x45,0x94,0xdf,0x34,0x60,0x1b,0x93,0x8a,0xef, +0x36,0xe0,0xc2,0x4f,0x71,0x32,0x87,0xaf,0x29,0xf7,0x79,0xe2, +0x7b,0x76,0x38,0x4d,0x67,0x75,0xbb,0x05,0xdf,0xf7,0x7b,0x0d, +0x7c,0x24,0x83,0x59,0x9c,0x68,0x81,0x7d,0x84,0xca,0xf0,0xdd, +0xa0,0x86,0xa1,0xac,0x46,0xa0,0x6a,0xf0,0xb1,0x50,0xae,0x14, +0x2c,0x49,0xa1,0x65,0x89,0x66,0xb6,0x61,0x63,0x21,0xef,0xd5, +0xe9,0x38,0xe0,0x52,0xcd,0x09,0x95,0xe2,0x04,0x52,0xb2,0xbf, +0x48,0xb9,0x60,0xd7,0x01,0xdf,0xb5,0xbe,0xcb,0xfc,0x3b,0x41, +0xf1,0x0a,0xac,0xbc,0x02,0x9b,0x54,0x33,0x78,0x3b,0xdc,0x6d, +0x81,0xeb,0xb5,0x70,0xb1,0x73,0xb8,0x53,0xb8,0x73,0x44,0xb2, +0x2a,0x0f,0xab,0x32,0x60,0x6d,0x0e,0x70,0x05,0x09,0x2e,0x09, +0x2e,0xf1,0x2e,0x7d,0xb9,0xfc,0x09,0xf8,0xc8,0x02,0xde,0x37, +0x86,0x49,0x9c,0xf8,0x7d,0x32,0xc1,0xb0,0x76,0x08,0xa3,0x36, +0xf2,0x17,0x6c,0xc9,0x99,0x30,0xaa,0x03,0x2e,0x50,0x7a,0xc5, +0x85,0x6c,0x3a,0xb5,0x51,0x42,0x89,0xc6,0x1b,0x1b,0xf9,0x9c, +0xe0,0xe6,0xa1,0x3b,0xe3,0x30,0x6e,0x23,0xd7,0x37,0x36,0xca, +0xa5,0x36,0x92,0x51,0x1b,0xed,0xf7,0xc1,0xf7,0xac,0x17,0xb7, +0xd9,0x48,0x36,0xca,0x90,0x56,0xd6,0xd5,0xba,0x1b,0x77,0x3d, +0x7e,0x30,0x91,0x13,0xe5,0x71,0x8a,0xf4,0x00,0xc3,0x6b,0xa9, +0xb7,0xaa,0x41,0x49,0x50,0x62,0x2f,0xc7,0x16,0xc7,0x16,0xc5, +0x71,0x82,0x1d,0x98,0x93,0x3e,0x0c,0xa6,0xf7,0x8c,0x9b,0xd0, +0x46,0x13,0xa6,0xd1,0xa4,0x32,0xcb,0x1d,0x77,0xe1,0x54,0x9c, +0xa7,0xd8,0x66,0xfa,0x0b,0xcc,0xba,0x02,0x8b,0x93,0xc0,0x4a, +0x1e,0xcc,0x19,0x54,0x8a,0x58,0x1b,0xa4,0xac,0xb8,0x3b,0xe8, +0x9c,0xa7,0xca,0x9c,0xd5,0x52,0x7a,0xf9,0x03,0xf3,0xb4,0xb6, +0xe9,0x45,0xa2,0x52,0xf2,0xcb,0xe8,0x57,0x60,0xaa,0x80,0x99, +0x4c,0x54,0xe1,0xc5,0xe2,0x62,0x85,0x4f,0xa5,0x3e,0x13,0x5d, +0x12,0x55,0x7a,0xb1,0xac,0x5c,0x01,0x76,0x81,0x3e,0x86,0xb3, +0xd4,0x8e,0x21,0x87,0x42,0xb9,0x72,0x6a,0xc9,0x62,0xab,0x32, +0x4d,0x99,0x61,0x53,0x11,0xef,0xd1,0x61,0x3f,0xe0,0x5c,0xcd, +0x85,0xe1,0x13,0x5a,0xfd,0xce,0xb1,0xea,0xab,0xff,0x0b,0x44, +0xe6,0x8d,0x43,0x84,0x56,0x3f,0xc4,0xd1,0x5f,0x82,0xc8,0x42, +0x0a,0x91,0x95,0xac,0xdb,0x5f,0xe1,0x21,0x8b,0x0a,0xc3,0x83, +0x7e,0x38,0xd3,0x7a,0x71,0xab,0x04,0x8f,0xc9,0xe9,0x30,0x2f, +0x06,0xb4,0x6f,0xc5,0x0f,0x27,0xf4,0x27,0x73,0xa2,0x22,0xcd, +0x41,0xc7,0xe0,0x51,0x97,0x99,0x51,0xaf,0x24,0x2c,0x7e,0x0b, +0x8f,0x30,0xe1,0x3d,0xa2,0x21,0xcc,0x19,0x75,0xa2,0xc8,0x94, +0x76,0x44,0x5e,0xc2,0xb4,0xe4,0xca,0x68,0x92,0x76,0xe2,0x7a, +0x3f,0x3b,0xda,0x20,0xca,0xbd,0xc1,0x80,0xe6,0x18,0x06,0x54, +0x82,0x8f,0xbe,0xc1,0x40,0x91,0x65,0x29,0xc5,0x40,0x53,0x21, +0xef,0xd9,0xe9,0x20,0x61,0x00,0x12,0x8e,0x12,0xd1,0xbd,0xe7, +0x19,0xe8,0x51,0x9b,0xa2,0x2e,0xbe,0x24,0x50,0x09,0x1f,0x63, +0x25,0x2b,0x1a,0x3d,0xa0,0x55,0xea,0x18,0xab,0x92,0x1e,0xad, +0x92,0x71,0x90,0x1c,0xd4,0xe0,0x7c,0x36,0xad,0x22,0xb5,0x3c, +0xa1,0xf4,0x0d,0xe2,0x6d,0x7c,0xec,0xb8,0x45,0x78,0x9e,0x59, +0xcd,0xba,0x45,0xba,0x47,0xfc,0xa5,0x3a,0x17,0xf0,0xb0,0x2f, +0xbe,0x3f,0x5e,0x1d,0xb9,0xb1,0xea,0xe8,0x8d,0x55,0x87,0xa2, +0x7d,0xfe,0xbf,0x56,0x67,0x39,0x9b,0x19,0x93,0x19,0x9d,0x11, +0xc3,0x41,0xb9,0xb0,0x87,0xa8,0xe3,0x61,0x3c,0x36,0xea,0xd1, +0x3b,0x00,0x9f,0xaa,0xf7,0x8e,0x78,0xa0,0x36,0x23,0x7e,0x8a, +0x41,0xe4,0x5b,0x16,0x0e,0xd0,0x9a,0x44,0xb0,0x1a,0x41,0xe3, +0x35,0xb1,0x21,0x45,0x16,0xa5,0x1a,0xd9,0x06,0x6f,0x6a,0x32, +0xe4,0x52,0xc3,0x09,0x9a,0x54,0x98,0xe3,0x2c,0x88,0x84,0x59, +0xd4,0xad,0x23,0x09,0x3d,0xf8,0x18,0x23,0xd9,0xd1,0x8f,0x1c, +0x08,0x46,0x76,0x40,0x24,0x0b,0x05,0x1e,0x44,0x9a,0x81,0x80, +0xb3,0xa4,0xf9,0x89,0x59,0x84,0x7e,0x9c,0x85,0x1f,0xd3,0x90, +0xaf,0x4b,0x01,0x6b,0x41,0xab,0x57,0x89,0x0b,0xfe,0xd9,0x5a, +0xe3,0x60,0x9d,0xff,0x17,0xb0,0xba,0x45,0xfe,0x4b,0x15,0x0f, +0x50,0xb0,0xda,0x8c,0x57,0x91,0x82,0x35,0x16,0xb4,0xef,0xc4, +0x5f,0x4b,0x18,0x18,0x6b,0x31,0x4e,0xaa,0xe2,0xeb,0xff,0xde, +0x62,0xbf,0xc0,0x0d,0x02,0xef,0xc5,0xc0,0x82,0x2c,0x60,0xca, +0x9d,0xdb,0x79,0x7c,0xe7,0x34,0xce,0xf7,0xc2,0x25,0x17,0x7c, +0xf6,0x9f,0x58,0x6e,0xab,0xde,0x6e,0xc7,0x57,0x5f,0xab,0x78, +0x9e,0x3a,0x4c,0x6d,0xe1,0x41,0x4a,0x74,0xcb,0xf6,0xca,0xd4, +0xdb,0xf3,0x79,0xcf,0xbe,0x93,0x0f,0x4e,0xb5,0x73,0xb8,0x08, +0x0f,0x92,0x90,0x36,0x9f,0x21,0xdf,0x46,0x03,0x7f,0x3e,0xcd, +0x24,0x59,0x33,0x5e,0x9f,0x13,0xf3,0x68,0xb2,0x17,0x55,0x32, +0x8e,0x52,0x5d,0x0c,0x66,0xd5,0x02,0x54,0x82,0xc7,0x50,0x6a, +0x41,0x8a,0xc6,0x50,0xda,0x58,0xc4,0x7b,0x52,0x94,0x4a,0xfe, +0x1e,0x80,0xaf,0xc9,0xfd,0xba,0x4f,0xbb,0xeb,0x7b,0xb8,0x46, +0x71,0x8f,0x1e,0xfc,0xcc,0xda,0xda,0xea,0x58,0xef,0x3b,0xc1, +0xa9,0xe0,0x19,0x6d,0x38,0x83,0xce,0xb8,0x86,0x95,0x56,0xcc, +0xfb,0x90,0x69,0x97,0xc9,0xda,0x94,0xc0,0x0a,0xfc,0x7a,0xd0, +0x8f,0x15,0xc3,0xae,0xfe,0x03,0x0a,0x3b,0x04,0x73,0x72,0xee, +0x82,0x57,0xb8,0x17,0x75,0xee,0x3a,0x69,0xb7,0xd1,0xf2,0xe4, +0xf2,0xf8,0x12,0xed,0x24,0x3e,0xf4,0x64,0x80,0xad,0xdf,0x09, +0x6e,0x0d,0x85,0xc3,0x5a,0xd6,0x33,0xc2,0x23,0xd2,0x33,0x32, +0x56,0x87,0xcf,0x8e,0xca,0xba,0x94,0x45,0x6d,0xa5,0xea,0x8f, +0xd3,0x6c,0x97,0x34,0xd9,0xf1,0x4d,0x30,0x39,0x0d,0x3e,0x8e, +0x01,0xa3,0x81,0xb8,0x9e,0xf8,0x4e,0xea,0xd8,0x8a,0x0b,0xd8, +0x54,0x1d,0xb9,0x17,0x4c,0x75,0x46,0x46,0x8d,0x92,0xb0,0x94, +0xed,0x4b,0x91,0x03,0x57,0x61,0x1f,0x39,0x71,0x74,0xeb,0x21, +0x9c,0xa5,0x59,0x64,0xc4,0xc3,0xb4,0xbe,0xbf,0xdd,0x2e,0xfd, +0x82,0x8b,0x63,0x4a,0x76,0xc1,0x84,0x03,0xf0,0xae,0x46,0x71, +0x1b,0x8f,0x1f,0x0c,0xac,0xbf,0x66,0x73,0x8b,0x13,0x6f,0x8a, +0x5b,0xc8,0x0b,0xa9,0xd7,0x67,0x07,0x5e,0x64,0xf5,0x82,0xb5, +0x43,0x34,0xc3,0x38,0x61,0x03,0x98,0xd2,0xf6,0x6f,0xc5,0x48, +0x46,0x94,0xb7,0x24,0x79,0x96,0x45,0x1a,0x99,0x06,0x0d,0xf9, +0xbc,0x77,0xe7,0xe9,0x41,0xb7,0x1a,0x6e,0x64,0xf3,0x66,0x22, +0x6e,0xde,0xc0,0xe0,0x69,0x7f,0xdc,0x72,0x10,0x15,0x14,0x9b, +0x2c,0x3b,0x7e,0x28,0x00,0x36,0x19,0x3e,0x92,0x17,0x26,0x33, +0x5a,0x70,0x90,0x60,0x6f,0x15,0x53,0x07,0xbd,0x2c,0x0e,0xa2, +0x15,0x89,0xfe,0x42,0x0e,0xfa,0xb6,0x31,0xa3,0x0c,0xe5,0xb8, +0xf0,0x16,0x9a,0x38,0xc2,0x73,0x2a,0x30,0x9b,0x21,0xd3,0xb4, +0x07,0x8a,0xc5,0x69,0x58,0xcc,0xc2,0xa7,0xe0,0x4e,0x90,0xd0, +0xcc,0x9f,0x50,0x1b,0xad,0x17,0xac,0x89,0x25,0xc5,0x53,0x1d, +0x7e,0xc4,0xa6,0x96,0xa7,0x54,0x24,0x94,0x52,0xfb,0x84,0x38, +0x8c,0xd9,0x67,0x35,0xfa,0x33,0xeb,0x58,0x6a,0x1d,0x6a,0xa1, +0x58,0x6d,0x6a,0x9f,0xec,0x31,0xfb,0xa8,0xf9,0xe3,0x74,0x9b, +0x25,0xcd,0x92,0x7d,0xe4,0xd2,0x40,0x31,0x06,0x8c,0x87,0xe2, +0x7a,0x12,0xba,0xa8,0x7d,0x16,0xce,0x67,0x53,0x75,0xe5,0x5e, +0x32,0x35,0x63,0xf6,0x59,0x2d,0x41,0x89,0x82,0x89,0x13,0xba, +0xc5,0x03,0x64,0xb3,0x6c,0x5f,0xfe,0xb1,0xb2,0xfb,0x9d,0x7d, +0x37,0xaa,0x9f,0x70,0xcd,0x68,0xf1,0x13,0x9c,0x12,0xa6,0xe2, +0x7e,0x7d,0x78,0x77,0x1e,0x4e,0x33,0x82,0x69,0x54,0x6c,0x6c, +0x12,0x78,0x1d,0x91,0x97,0x9e,0x4b,0x82,0xc9,0x6d,0x38,0xf9, +0x17,0xf6,0x4a,0x7c,0x4f,0x56,0x69,0x8e,0x73,0x13,0x7f,0xe2, +0xac,0xba,0xa7,0x6e,0x30,0x15,0xe1,0x60,0xbf,0x0c,0x83,0x75, +0x85,0xbd,0xac,0x83,0x8a,0xae,0xde,0x21,0x8b,0xe3,0x35,0xba, +0x6d,0x86,0x43,0x66,0x0e,0x7c,0xb3,0x46,0x87,0x71,0xbf,0xcd, +0x21,0x87,0xed,0x67,0xd7,0x7a,0x67,0x69,0xf3,0x7f,0xe4,0xbe, +0x2a,0x7b,0xd4,0xf0,0xc0,0xf2,0xd9,0xa9,0x1f,0x5c,0xb9,0xd1, +0x56,0x21,0x8c,0x7c,0xc3,0xc2,0x51,0x50,0xc6,0x28,0x56,0x37, +0x48,0x2b,0x44,0x23,0x94,0x2b,0x02,0x3b,0x92,0x6f,0x51,0xac, +0x36,0x66,0xeb,0x73,0x9d,0xa7,0x87,0x5d,0x6b,0xb9,0x60,0xfc, +0x8a,0xe0,0xc5,0x16,0xb8,0x48,0xed,0xb2,0x5c,0xb0,0x22,0xe6, +0xd4,0x2e,0xf5,0xf8,0xa1,0x64,0x97,0xca,0x84,0x92,0x7f,0xda, +0x65,0x03,0x06,0x30,0xeb,0x59,0xcf,0x48,0x8f,0x88,0xbf,0xe0, +0x26,0x1c,0x35,0xfd,0xc6,0x71,0xd3,0x28,0xe1,0xe6,0x93,0x68, +0x30,0x1b,0x88,0xeb,0x4e,0xe8,0xa0,0x76,0x59,0xb4,0x90,0x4d, +0xd1,0xa5,0xb8,0xb9,0x92,0x91,0x51,0xad,0x24,0xac,0x61,0x33, +0xde,0xd8,0x05,0xac,0x7e,0x20,0x2d,0xb8,0xf8,0x4b,0x38,0x86, +0xad,0x57,0xa1,0x15,0xb4,0xb6,0x4a,0xdb,0x43,0xad,0x1e,0x9b, +0xfb,0x17,0x79,0x17,0x3c,0x3a,0xc4,0x30,0x03,0x70,0x3a,0x80, +0x01,0x6f,0xe6,0xfe,0x3d,0xd8,0x4c,0xbe,0x66,0xe1,0x18,0x6c, +0xa3,0xb5,0xd0,0x0f,0xd2,0x09,0xd1,0x0c,0xe5,0x0a,0x69,0x2d, +0x28,0x62,0xd4,0x32,0xf4,0xc7,0x10,0xe3,0x34,0xec,0x56,0x4b, +0x55,0x14,0xca,0xa4,0xaf,0x35,0x61,0x05,0xe5,0xd9,0x2d,0xf4, +0x1b,0x59,0xb1,0xf2,0x18,0xc1,0xa8,0x66,0x88,0x62,0x47,0x96, +0xe0,0x3a,0x69,0x4e,0xa0,0xb9,0xa1,0xb0,0x78,0xab,0x78,0xc4, +0x40,0x38,0xb2,0x56,0x5c,0x6c,0x20,0x2c,0xd6,0xeb,0x05,0xfd, +0x9e,0x0e,0x5a,0xed,0xf7,0x04,0x4b,0x12,0x10,0x11,0x10,0x1e, +0x10,0x21,0xa5,0x4e,0xef,0xd2,0xaa,0x4b,0x2e,0xa3,0x4b,0x5d, +0xc6,0x31,0xd0,0x8e,0x56,0x7d,0x2b,0xfa,0x31,0x1b,0x58,0xaf, +0x48,0x2f,0xa9,0xea,0xba,0x7c,0x56,0x54,0xe6,0xa5,0xcc,0x4b, +0xe1,0xa8,0xe3,0x8f,0x9c,0xdd,0xd2,0x86,0x13,0x14,0x12,0x93, +0x52,0x40,0x21,0x1a,0xcc,0x7b,0xe2,0x3a,0x12,0x5a,0x68,0xd5, +0x17,0x2c,0x93,0x7a,0x92,0x9f,0x31,0x95,0x19,0x19,0x55,0x52, +0xd5,0x53,0x2e,0xa5,0x44,0x27,0x53,0xb9,0xf0,0x00,0xfe,0x4e, +0x50,0xe5,0x91,0xee,0xce,0x05,0xf4,0x8d,0xea,0xba,0xa0,0x7e, +0x14,0x57,0x60,0xa7,0x90,0x01,0x9d,0xb8,0xf6,0x06,0xa8,0x30, +0xf8,0x1d,0xcd,0x21,0x7e,0x3d,0xca,0x8a,0x9f,0xa3,0x33,0x79, +0x2e,0xb5,0xde,0x2a,0xca,0x90,0xc6,0xc1,0x06,0xc1,0xba,0xa1, +0x5c,0x1e,0xd8,0x92,0x1c,0xcb,0x02,0xb5,0x74,0x83,0xfa,0x5c, +0xfe,0x7c,0xe7,0x99,0x61,0x77,0xca,0xa9,0x13,0x50,0x81,0x2c, +0xb9,0xf7,0x9a,0xe9,0x9a,0xfd,0x7a,0xef,0x12,0x06,0x56,0xcd, +0xbe,0xf7,0xeb,0x5e,0x16,0x87,0x4d,0xc8,0x8e,0x25,0x8f,0x59, +0x88,0xdb,0x41,0x96,0x3c,0x96,0x3e,0xfc,0x75,0xc7,0x02,0x46, +0x7c,0x78,0x84,0x60,0x44,0x23,0x44,0xb0,0x90,0x20,0x2e,0x23, +0x6d,0x30,0x62,0xd4,0x2f,0x4c,0x14,0x4f,0x8b,0x13,0xa5,0xe7, +0x0c,0xfd,0x09,0x8e,0x3c,0x84,0x11,0x06,0x47,0x70,0x16,0x81, +0x91,0x6d,0x38,0x42,0x89,0x77,0x1e,0x05,0x84,0xc5,0x18,0x20, +0xde,0xa7,0x71,0x85,0x5a,0xa5,0x54,0x87,0x5a,0xc5,0x21,0xc0, +0xce,0xcf,0x8e,0xdb,0x84,0x81,0xd4,0x2a,0x9e,0xd4,0x51,0xc6, +0x00,0x91,0x35,0x0e,0x08,0x2d,0x0a,0x08,0xbb,0x25,0x8d,0x27, +0xde,0x00,0xe2,0x63,0x6a,0x95,0xbe,0xb8,0xae,0x84,0x76,0x6a, +0x95,0xc5,0x8b,0xd9,0x54,0x3d,0xb9,0xe7,0xff,0x00,0xc4,0xb8, +0xa3,0x40,0x8f,0x30,0x91,0x0c,0xab,0x1f,0x47,0x6f,0x43,0xa1, +0xbc,0x9d,0xc5,0xdf,0x70,0x1e,0x09,0xba,0xec,0x5b,0xe9,0x97, +0x6f,0xe4,0xc1,0xa7,0xb8,0xa6,0x39,0x24,0x3a,0x71,0x10,0x1f, +0x4e,0x32,0x2f,0xa7,0x95,0x25,0x97,0x1a,0x64,0xf1,0x81,0xa7, +0xbc,0x2d,0x3d,0x69,0x3e,0xf8,0x83,0x81,0xd0,0xdb,0xc1,0x8c, +0x0e,0xa0,0x96,0x64,0xaa,0xe3,0xb0,0x11,0x2f,0xb1,0x86,0x41, +0xba,0x21,0xda,0xa1,0x5c,0x01,0x15,0xbf,0xb9,0x16,0x85,0x12, +0x44,0xf2,0x28,0x44,0x9c,0xaf,0x51,0x88,0x8c,0xb8,0x88,0xf7, +0x48,0x17,0x86,0xdc,0x81,0x93,0xd0,0x45,0xc5,0x43,0x17,0x58, +0x1c,0x44,0x77,0x3d,0x70,0x57,0xa6,0x82,0x54,0x18,0xbc,0x8a, +0x19,0x0f,0x59,0x5d,0x61,0x1a,0x51,0xc6,0xe5,0x0f,0x59,0xb0, +0x50,0x26,0x0f,0x61,0x83,0x32,0x8b,0xff,0x65,0x42,0x35,0xff, +0x0e,0x5c,0xce,0x80,0xc5,0xec,0xc7,0xb0,0x61,0x07,0x3b,0xba, +0xf4,0x1e,0x05,0x56,0x13,0x05,0xd6,0x0c,0x61,0x29,0x45,0x8e, +0x9a,0xbf,0x1c,0x34,0x50,0x79,0xfa,0xff,0x81,0x9a,0x08,0x8a, +0x1b,0x09,0x35,0x99,0x12,0x6a,0xa8,0x7d,0x74,0x02,0x90,0x1d, +0x43,0x4d,0xa3,0x84,0x1a,0x79,0x6a,0x9f,0xee,0xb8,0x8e,0xf8, +0x96,0x78,0x4e,0x54,0x5a,0x2e,0xa1,0xe6,0xab,0x71,0xd4,0x2c, +0x67,0x73,0x63,0x72,0x62,0x72,0x68,0x86,0x54,0x0b,0x93,0xc8, +0x75,0x70,0x69,0x43,0x97,0x21,0x08,0x69,0xa3,0x82,0x25,0x2b, +0x2f,0xa3,0x20,0xb5,0xd0,0x30,0x87,0x3f,0x7f,0xca,0xd3,0x51, +0x9a,0x60,0x70,0x90,0x69,0xc9,0xf3,0x2e,0xf4,0xcc,0xf7,0xcc, +0x91,0x37,0x72,0xcd,0x71,0xcb,0x74,0xcb,0xa0,0xf2,0x7c,0xb1, +0x11,0xf8,0xa8,0xe2,0x49,0x23,0x38,0x79,0x0c,0xa3,0x8c,0x84, +0xae,0x36,0x66,0xb4,0x69,0xb1,0xe4,0x4c,0x47,0x61,0x25,0xb5, +0x14,0x05,0x55,0xa8,0x9e,0x04,0x2a,0x3b,0x22,0xa3,0xa0,0xca, +0xf8,0x0b,0xa8,0x46,0x54,0x47,0x57,0x92,0x53,0xb9,0x67,0x8a, +0xdd,0x2b,0x6b,0xae,0x54,0xd4,0x5c,0xae,0xb6,0x29,0xe5,0xcf, +0x3a,0x38,0x39,0x38,0x9e,0x3a,0x5f,0xe1,0x5f,0x1d,0xdc,0xc8, +0x81,0x4e,0x07,0x9a,0x32,0x61,0x0d,0xe1,0xcd,0x1d,0x0a,0x5a, +0x8c,0x61,0xb4,0x69,0x9c,0xb9,0x22,0xce,0xbe,0xcb,0x94,0xc5, +0x95,0xc4,0xe5,0x27,0x78,0x34,0xf3,0xaa,0x5e,0x2b,0xfd,0xb6, +0x45,0xa4,0x18,0xf1,0xe5,0x51,0x55,0xd1,0x55,0xb1,0xdc,0x71, +0xa4,0x49,0x36,0x59,0xc7,0x5a,0x87,0x5a,0x86,0x99,0x5f,0x88, +0x33,0xe0,0xeb,0x63,0x6a,0xe3,0xaa,0x63,0x39,0x7c,0x67,0xa9, +0xb4,0x6d,0x08,0xad,0x73,0x8e,0x34,0x17,0x80,0x65,0xeb,0xe2, +0xab,0x13,0x4b,0x13,0x83,0x5a,0xf9,0xd3,0xc1,0x0e,0x21,0x76, +0x21,0xdc,0x63,0x50,0x62,0x93,0xb5,0x32,0x0d,0x72,0xcd,0x2d, +0x1d,0x8c,0x4e,0x69,0xba,0x14,0x9b,0xf0,0xdd,0x85,0x6d,0x65, +0x0d,0x55,0xb9,0x0e,0x85,0x4e,0x97,0x5d,0xab,0x1d,0xeb,0x12, +0xe2,0xeb,0x73,0x61,0x3a,0x6f,0x9a,0x23,0x77,0x09,0xfc,0x88, +0x5d,0xa9,0x6d,0xbe,0x45,0xbe,0x83,0x1d,0x5f,0xe3,0x5e,0x77, +0xb6,0xd6,0x81,0x1b,0x55,0xcd,0x1e,0xc7,0xfc,0x0c,0x41,0x91, +0x36,0x96,0xa4,0xfb,0x7c,0xa9,0x9b,0xd7,0xe3,0x7b,0x6c,0x6a, +0x45,0xca,0x5b,0x40,0x07,0x4a,0x0c,0xb7,0x79,0x1c,0xd0,0x5e, +0xff,0x04,0xb4,0xd4,0x60,0xda,0x7e,0x38,0xf5,0x9f,0x80,0x9e, +0x13,0x0d,0x16,0xbd,0x71,0x9d,0xf1,0x6d,0x12,0xc3,0x2d,0x91, +0x18,0xee,0x39,0x53,0x95,0x29,0x01,0x7a,0xed,0x3f,0x00,0x4d, +0xf3,0x46,0x02,0xa1,0x6d,0x18,0xfa,0x50,0x47,0x19,0xfd,0x8d, +0xc0,0x1f,0x65,0x18,0x66,0x28,0x74,0xb4,0x63,0x12,0x23,0x0e, +0x3a,0xbf,0x41,0xeb,0x3a,0x8c,0x66,0x8d,0x82,0xf5,0x42,0x74, +0x42,0xb9,0x11,0x33,0xc8,0x20,0x06,0x8e,0x8c,0xc6,0x79,0xd7, +0xa3,0x16,0x8a,0x25,0xd6,0x95,0x79,0x05,0x79,0x99,0x05,0xf2, +0x31,0xb1,0xd1,0x51,0xb1,0x61,0x5f,0xed,0xe6,0xcb,0xae,0xec, +0xbe,0x19,0x90,0x14,0x1c,0x19,0x18,0x20,0x1f,0x12,0x1c,0x1a, +0x2d,0x97,0x94,0x19,0x5b,0x58,0xa6,0x80,0x37,0x4a,0xa4,0x93, +0xb4,0xbc,0x9d,0x0e,0x58,0x29,0x16,0x5b,0x35,0x14,0xe6,0xe7, +0x66,0x16,0xca,0x47,0xc7,0x44,0x5f,0x8c,0xb9,0xf0,0x78,0x3f, +0x5f,0x7a,0xe5,0xd0,0x60,0x40,0x52,0x50,0x64,0x50,0x10,0x3d, +0xe9,0x42,0xb4,0x5c,0x62,0x66,0x5c,0x41,0x85,0x82,0x38,0xdd, +0x83,0x72,0x48,0xa1,0x6a,0x86,0x7e,0x7d,0x1e,0x6d,0x6e,0xe7, +0x6b,0xee,0xb5,0x54,0x26,0x8c,0xba,0x92,0x6e,0x61,0x86,0x4e, +0xb7,0xb0,0x5d,0x3c,0x2f,0x6e,0x67,0x31,0x5c,0x58,0x32,0x0e, +0xf1,0x91,0x69,0xa7,0x08,0x66,0x8b,0x33,0x20,0x9b,0x85,0x61, +0x74,0x24,0x94,0x87,0x23,0x71,0x1b,0x0b,0x06,0xf0,0x2e,0xd9, +0x87,0x4b,0x3e,0xa3,0x66,0xfd,0x80,0x9a,0x55,0x0a,0xa6,0x8d, +0x6f,0x7c,0xa0,0xe2,0xad,0x0f,0xd8,0xfa,0x4b,0x3e,0x10,0xc2, +0x6c,0x1a,0x63,0xce,0x71,0x1f,0xc8,0xba,0x94,0x41,0x4d,0xaa, +0x17,0x80,0x53,0xc6,0x7d,0x60,0xf2,0x18,0x73,0x5a,0x75,0xc7, +0xb5,0xc7,0x4b,0xcc,0xb9,0xe4,0x9f,0x3e,0x70,0x45,0x49,0x58, +0xf7,0x0f,0x93,0xea,0x43,0x32,0x69,0x87,0xbd,0x86,0xbd,0xed, +0xb0,0xa0,0x13,0x17,0xdc,0xd0,0x3a,0x8a,0x7b,0xa5,0x62,0xae, +0x3e,0xcc,0x35,0x64,0x45,0x1a,0xc1,0xc8,0x57,0x2c,0xa8,0xc1, +0x0a,0x6a,0x55,0xe3,0x60,0xc3,0x90,0x31,0x64,0xdb,0x13,0x99, +0x45,0x81,0x6a,0xba,0xfe,0x1b,0x64,0x5f,0xf7,0xa0,0x1c,0xa0, +0x8c,0xab,0xc9,0x55,0xe0,0xc5,0x4a,0xe4,0xaf,0x3a,0x09,0xfb, +0x98,0xc8,0x56,0x22,0xee,0xb9,0x2e,0xec,0x61,0x54,0xc4,0xcd, +0xa4,0xa1,0xac,0xb1,0xee,0x4a,0x93,0xed,0x15,0xde,0xc1,0xcc, +0xea,0x84,0x83,0x8b,0x67,0xb3,0x6f,0x5b,0x40,0x27,0x07,0xda, +0xed,0x62,0x8b,0x21,0x18,0x32,0xba,0xd6,0x07,0x4f,0x6e,0x70, +0xc9,0x32,0xe1,0xaf,0xe7,0x0c,0x15,0x77,0x95,0x27,0xfb,0x25, +0xfb,0x26,0xfa,0xaa,0x9b,0x6e,0x32,0xdf,0xe4,0x94,0x63,0xc2, +0xbf,0x28,0x7f,0xd6,0xd2,0xdf,0x9c,0x78,0x2e,0xc1,0x2b,0xde, +0x4b,0xf9,0xd8,0x3c,0x0d,0x64,0x6c,0x72,0x8c,0x79,0xe0,0x6a, +0x7f,0x1f,0xbe,0xd9,0xcf,0x45,0x7b,0x5f,0xf2,0x3e,0xaf,0xa0, +0xe5,0xeb,0xa6,0xa7,0xb8,0x8f,0xc9,0xd4,0x97,0xbb,0xc9,0x3c, +0xbe,0x5c,0xfb,0xf2,0x1b,0xc3,0xdf,0x35,0xee,0x28,0xa5,0x27, +0xa7,0xa5,0xa6,0xa6,0x70,0x35,0x4c,0x09,0x6e,0xb8,0x87,0xcb, +0xe0,0xa3,0x85,0x65,0x6d,0xbc,0x4a,0xbb,0x49,0xb7,0xc3,0x30, +0x37,0xca,0xc1,0x5a,0x82,0x97,0x1a,0xe1,0x12,0xb5,0xf4,0xca, +0x7f,0xb0,0xb1,0x24,0xeb,0x52,0x2a,0xe3,0x4b,0x74,0xfe,0x11, +0x9e,0xd7,0xff,0x87,0xf0,0xdc,0xf4,0xcf,0xf0,0x7c,0xf5,0x6d, +0x78,0xa6,0xb2,0xe5,0x1b,0x49,0xd6,0xfd,0x95,0x8d,0xcb,0xbd, +0x89,0xe0,0x02,0xa5,0xb8,0x99,0x91,0xe5,0xe7,0x14,0xa7,0x97, +0x70,0x95,0x18,0xc0,0x26,0xa4,0xc7,0xa7,0xc7,0x67,0xe8,0xa6, +0xf0,0x4e,0x47,0xb5,0x94,0x8f,0xe8,0x5e,0x39,0xc1,0xa7,0x51, +0x11,0xd8,0x0f,0x53,0x89,0x8f,0x9b,0x97,0x8b,0xbb,0x3b,0x87, +0xe6,0x4c,0x6e,0x5e,0x76,0x7e,0x56,0x01,0xfd,0x5e,0xbc,0xff, +0x26,0x62,0x6f,0x1d,0x8f,0xd8,0x5a,0x6f,0x22,0x76,0x2e,0x8d, +0xd8,0x99,0xfa,0x63,0xba,0xc3,0x59,0xd2,0x1d,0x70,0xc5,0x99, +0xc0,0x9a,0x83,0xb8,0x86,0x01,0x9b,0xd9,0x77,0x60,0x23,0xcd, +0x0a,0x1d,0x2c,0x28,0xf9,0xae,0x79,0x38,0xb6,0x3a,0xd3,0x46, +0x65,0xdc,0xc8,0xa0,0xa7,0x2e,0x39,0xef,0x70,0xca,0xcc,0xe1, +0x64,0xbd,0x03,0x7f,0xa5,0xb2,0xa2,0x33,0x83,0x9e,0xf7,0x59, +0x04,0x29,0xb4,0x2b,0xb0,0xce,0xb4,0x69,0xcf,0xe2,0xbd,0x1a, +0x5d,0x6a,0xcf,0x96,0x72,0x1b,0x16,0x90,0xa0,0x4a,0x9f,0x3a, +0x9f,0x42,0xc3,0x20,0x3e,0xcd,0x29,0xd5,0x36,0xc1,0x91,0x5b, +0x15,0x4d,0xc2,0xcb,0x83,0x1a,0x83,0x0a,0x0d,0x42,0xf9,0x78, +0xa7,0x04,0x8b,0x4b,0xa7,0x69,0x62,0xd3,0x33,0xae,0x08,0x20, +0x5d,0x5c,0x4a,0x5a,0xe1,0x85,0x71,0x2f,0x7c,0x25,0xea,0xe1, +0x57,0xac,0xf0,0x09,0x9c,0x26,0xf8,0xe2,0x36,0xbc,0x60,0xf0, +0x05,0xb2,0x04,0x5e,0xec,0xc1,0x17,0x34,0xfe,0xcd,0x18,0xc7, +0x76,0x2d,0xcd,0x17,0x52,0xfe,0xc9,0xef,0x41,0x76,0x14,0xdb, +0xdb,0xa9,0x50,0xdc,0x48,0xb1,0x7d,0x2e,0xe2,0x1f,0xfc,0x2e, +0x61,0x5b,0x97,0xf2,0xfb,0x89,0x65,0xf5,0x63,0xfc,0x9e,0x0c, +0x7c,0x34,0x58,0x5e,0x8d,0x6b,0x8b,0x6f,0xa6,0x16,0x9f,0xbf, +0x42,0xc2,0xf6,0x53,0xa6,0x22,0x23,0xa3,0xf2,0x2f,0x42,0x11, +0xce,0x43,0x98,0x34,0xae,0xcb,0x05,0x5f,0xb2,0x06,0x26,0x41, +0xce,0x99,0x35,0xcd,0xf0,0xbe,0xaa,0x08,0x5a,0x6f,0xc6,0x75, +0xab,0x58,0xc3,0x14,0x39,0x23,0xdc,0x2d,0x8d,0xeb,0x66,0x2b, +0x15,0xb2,0xb0,0x2d,0x39,0xa2,0x16,0xb7,0x04,0xc8,0xf5,0x80, +0x23,0x1b,0x7a,0x26,0xe8,0x4c,0xf0,0xb9,0x76,0x3f,0x3e,0xa9, +0x60,0x7c,0x5c,0x37,0xbb,0x0b,0x42,0x1a,0x31,0x64,0x6c,0x5c, +0xd7,0x08,0x3d,0x58,0x74,0xf3,0xc3,0x9d,0x9a,0x38,0x5d,0xb1, +0xed,0x94,0xdc,0x30,0xcc,0x93,0xc6,0x75,0xc3,0xc7,0xc6,0x75, +0xbf,0xc0,0xf3,0xe4,0x99,0xd4,0x4e,0x4b,0xa9,0x2c,0x37,0x09, +0x36,0x0a,0xd1,0x7f,0xa3,0x30,0xb2,0x2d,0xf3,0xdf,0x2a,0x8c, +0xb3,0xc3,0x1e,0x34,0x18,0x68,0x89,0x16,0x04,0x7c,0xc4,0xd9, +0xe8,0xc3,0xc2,0x0e,0x69,0xe8,0x76,0x6a,0x37,0x4c,0x65,0x5a, +0x74,0x48,0x37,0xcc,0xd0,0x61,0x47,0x57,0x84,0x51,0x82,0x6d, +0xa0,0x04,0x2b,0xe8,0x3b,0x10,0x4d,0x9c,0xda,0x47,0xef,0x70, +0x36,0xcc,0xd0,0xc4,0x19,0x0c,0xa8,0x4a,0x32,0x1e,0xd7,0xe9, +0x98,0x08,0x09,0x2d,0xb6,0x0c,0xb6,0x8d,0x0d,0xe2,0xee,0x95, +0x06,0x71,0xdf,0x1d,0x1b,0xc4,0xbd,0x47,0x33,0xcd,0xe6,0xd9, +0xc0,0x3c,0x92,0x06,0x71,0x69,0x96,0x67,0x43,0x33,0x97,0x73, +0xe1,0xe7,0xc2,0x29,0x38,0x50,0xe9,0x4d,0xa6,0x57,0xaa,0x99, +0xf4,0xef,0x5d,0x37,0x1e,0x91,0x52,0x76,0x4e,0xd5,0x79,0x4e, +0x94,0x6c,0xac,0xeb,0xe6,0xf0,0x7f,0xef,0xba,0xd1,0xbd,0x19, +0xf7,0xa6,0xeb,0x46,0xf1,0x4d,0xd7,0xcd,0x8f,0x4c,0x5d,0x86, +0xb4,0xd8,0xcf,0x22,0xb6,0x27,0x45,0x2e,0x11,0xee,0x13,0x21, +0xa4,0x4f,0x0c,0x61,0xb0,0xff,0x6d,0x16,0xae,0x86,0x61,0x52, +0x4f,0x4c,0xc8,0x78,0x4f,0x4c,0x81,0x15,0xcd,0x5d,0xff,0xd2, +0x13,0x03,0xb5,0x1a,0x04,0x17,0xb2,0xe8,0xe3,0x89,0xb3,0xb6, +0xe0,0x2c,0xc5,0x76,0xeb,0x1b,0xaf,0xcb,0x60,0x62,0x2a,0x2c, +0x92,0x87,0xb6,0x5d,0x43,0xc2,0x5c,0x46,0x15,0xd3,0x08,0x36, +0x33,0x97,0xae,0x44,0xd5,0xd4,0x29,0x3c,0x87,0x06,0x76,0x54, +0x01,0xed,0xdf,0x76,0xb9,0xc0,0xe7,0xaf,0x89,0x5f,0x7c,0xf0, +0xc5,0xc0,0xc0,0x80,0x40,0x3e,0x2c,0x3a,0x3e,0x2d,0x36,0x3d, +0x26,0x4b,0x1e,0x4e,0x76,0xa0,0x0d,0x13,0x95,0x1a,0x95,0x9e, +0xae,0x50,0x0c,0x7a,0x1d,0xa8,0x77,0x93,0x06,0x86,0x03,0x78, +0x7c,0x08,0xa6,0xfe,0xfe,0x6d,0xfb,0x9a,0x41,0x3d,0x35,0x54, +0xa1,0xc5,0x26,0xc3,0x67,0xf3,0x60,0x8a,0x2a,0x1e,0xc1,0x03, +0x70,0xe4,0x08,0xea,0x1a,0x80,0xee,0x69,0xd6,0x27,0xd2,0x2f, +0xd2,0x4f,0x11,0x2d,0x0c,0x40,0x8f,0x71,0x3b,0xa8,0x61,0x2d, +0xed,0x56,0x67,0xc8,0xff,0xd6,0xd4,0x5b,0x53,0xdd,0x1e,0x9f, +0x10,0x73,0x31,0x3e,0x0c,0xb4,0x70,0x1a,0x5f,0xd9,0x2a,0x07, +0x4f,0x61,0x13,0x69,0x6d,0x68,0x1f,0x2e,0xe9,0xb2,0xac,0xe6, +0xcf,0x18,0xd9,0x68,0x5a,0x59,0x79,0xf4,0xf8,0x0f,0x85,0x7c, +0xca,0xc1,0x72,0x61,0x0d,0x8e,0x8e,0x36,0x33,0xc7,0xfd,0xd2, +0xb4,0x9e,0x65,0xc1,0xe4,0xd2,0xcf,0x2f,0xcb,0x07,0x76,0x99, +0x9d,0xd7,0x3a,0xaf,0xe3,0x2b,0x2f,0xcc,0xfc,0x96,0xcd,0x46, +0x9d,0x5e,0x9c,0x07,0x0b,0xf1,0xa3,0xca,0x0e,0x5e,0xb5,0xdb, +0xa2,0xe7,0xd4,0x30,0x57,0x2e,0xbc,0x22,0xf8,0x2e,0x46,0xc0, +0xbb,0x2c,0xc6,0x38,0x13,0x75,0x54,0x19,0x60,0x85,0x43,0xb8, +0x90,0x40,0x04,0xca,0x63,0x04,0x23,0x86,0x0e,0x12,0xf8,0x70, +0x07,0x7e,0xc8,0xc0,0x8d,0xd9,0xc8,0x3f,0x06,0x5e,0x9a,0xae, +0x34,0x1b,0x9d,0x18,0x47,0xff,0xc4,0x0a,0x25,0x1a,0x3c,0xea, +0xe0,0xde,0x3c,0xf6,0x72,0x4b,0x51,0x6f,0x76,0x2f,0x57,0x87, +0x3a,0x6c,0x7c,0x6e,0x7c,0x6e,0x6c,0xae,0x56,0x2a,0xef,0xb5, +0xc1,0x78,0xb1,0xca,0xd6,0x7a,0x33,0x3e,0x3e,0x51,0x4e,0x0c, +0x64,0xf7,0xe6,0x7b,0xdc,0x55,0x04,0x5b,0xa6,0x37,0x29,0xbb, +0x53,0x09,0x16,0xb0,0x7a,0x59,0x72,0xe2,0xae,0x11,0x79,0x82, +0xb7,0x54,0xbb,0xeb,0xab,0x2d,0xbb,0xc6,0xdf,0xb5,0xd6,0xd6, +0xb6,0xb6,0xd5,0x7a,0xe3,0x6f,0x1d,0x35,0x78,0x6a,0x8e,0x4f, +0xd5,0xba,0x6b,0xab,0xad,0xbb,0xc6,0xdf,0xb5,0xd6,0xac,0xb5, +0x8d,0x6d,0x8d,0xde,0xf8,0x5b,0x47,0x03,0x6e,0x19,0xa1,0x28, +0xd8,0x80,0xc8,0x7e,0x8e,0xe9,0xa4,0xb4,0xa5,0xb8,0x23,0xb7, +0x8b,0x93,0x96,0xf4,0x30,0x3d,0xad,0x75,0xd2,0x98,0x3b,0x6d, +0x40,0xd0,0x79,0x2d,0x38,0x4b,0x3b,0x1d,0x52,0x9e,0x72,0x7e, +0x85,0xce,0xec,0xe8,0x67,0x94,0xf0,0xf4,0x85,0xf0,0x4e,0x56, +0x34,0xc7,0x89,0x04,0x77,0x0a,0x7b,0x61,0x27,0x2b,0xb2,0x38, +0x9d,0xdc,0x83,0x9b,0x7b,0x59,0x03,0xdc,0x41,0xb2,0x4a,0xb2, +0xab,0x53,0x0a,0xb4,0x72,0x79,0x3f,0x3b,0x77,0x63,0x37,0x9b, +0x95,0x01,0x8b,0x83,0x17,0x85,0x25,0x68,0xf3,0xb0,0x2b,0x09, +0x74,0x73,0x41,0xb1,0xf8,0x42,0x07,0x6f,0x1e,0x4c,0xdd,0x2d, +0x94,0xc3,0xfd,0xb1,0x24,0xa8,0xe4,0x5c,0x93,0x4f,0xb1,0x9e, +0x27,0x9f,0xe6,0x9c,0x65,0x96,0xe0,0x24,0x6d,0x62,0x06,0x95, +0x24,0x2a,0x27,0x2a,0x2f,0x5f,0x41,0xf0,0xd2,0x10,0x23,0xc7, +0x97,0x91,0x58,0x2a,0xe8,0x69,0x8a,0x31,0xb0,0x82,0xf1,0xc6, +0xc9,0x46,0x07,0x57,0xed,0xad,0x31,0xe1,0x7f,0x7d,0xd2,0xf3, +0x55,0x36,0x7c,0xc2,0xc1,0x76,0x21,0x46,0x5b,0xd4,0x63,0x04, +0x87,0x78,0x82,0x13,0x85,0x7a,0x75,0xb1,0x7e,0xa1,0xa0,0xae, +0x29,0xde,0xe9,0xfb,0xec,0xef,0xd8,0x3f,0x40,0x59,0x7a,0xe2, +0xbe,0x7e,0xe1,0x8e,0xb4,0x16,0xe1,0x9f,0x42,0x37,0x81,0x49, +0x20,0xc3,0x49,0x43,0xf4,0x47,0x7a,0x3f,0xa6,0xff,0xae,0x3a, +0x0f,0x65,0x52,0x11,0xa1,0x41,0xdb,0x6e,0x12,0x4d,0x95,0xc4, +0x5e,0x82,0x1b,0xea,0x51,0xa1,0x0f,0x27,0x3f,0xfa,0xfd,0xdb, +0xa7,0x20,0xd7,0x07,0x1f,0xab,0xe6,0xf1,0x9a,0xf8,0xd1,0xce, +0xb9,0x8b,0x36,0x2f,0x7a,0xba,0xe3,0x77,0x0d,0xe0,0xd5,0x5c, +0xf9,0x01,0x9c,0xf3,0x15,0xca,0xfd,0xbe,0x16,0x27,0xed,0x44, +0x79,0x0d,0x5c,0x67,0x55,0xa8,0xca,0xc3,0x96,0x7a,0x58,0x78, +0x03,0xa6,0xbf,0x84,0xe9,0xeb,0x60,0xd1,0x51,0xd8,0x66,0xc1, +0xcd,0x18,0xd9,0x3f,0xb2,0x8d,0x40,0x7a,0x1f,0xa6,0xff,0xac, +0xba,0x14,0x65,0x52,0x11,0xa1,0x09,0x11,0x07,0x19,0xa3,0x14, +0xdb,0xf9,0x07,0x97,0xad,0xdb,0x26,0xdf,0x6c,0x3e,0xd0,0xd5, +0xd2,0x5b,0x35,0x20,0x2f,0x3c,0x63,0x22,0x71,0x65,0x10,0x7e, +0xe8,0xb9,0x9e,0x53,0x3e,0x77,0xc2,0x77,0xff,0x1c,0x5c,0xc2, +0x64,0xab,0xcb,0xc1,0xc7,0xcc,0xef,0xed,0x97,0xff,0x96,0xa7, +0x94,0xff,0x3a,0x09,0x96,0x82,0xb1,0xc2,0xe8,0x3b,0x4c,0x52, +0x4e,0x22,0x7d,0x71,0x03,0x3f,0x80,0x6c,0xc5,0x10,0x23,0x7e, +0x82,0x97,0xc8,0xe3,0xfd,0x77,0xf7,0xde,0x5d,0xd6,0x51,0xcf, +0xef,0xfd,0x69,0xff,0x7d,0xe5,0x9b,0x63,0x97,0xbe,0x4f,0x54, +0x71,0x22,0xca,0x60,0xa2,0xf4,0x23,0x52,0x13,0x22,0xf1,0x9d, +0x21,0x78,0x87,0x5a,0x60,0xec,0x47,0x46,0x1f,0x66,0x30,0xe8, +0x25,0x4d,0xc3,0x52,0x14,0x17,0xa9,0x8f,0x2d,0x5d,0xbf,0xb4, +0xc1,0xfe,0x6f,0x8a,0xc2,0xe0,0x90,0xd8,0xc5,0xa8,0xba,0x66, +0x0d,0x2b,0x41,0xf7,0xc8,0xfe,0x01,0x71,0x13,0x28,0xb2,0xe3, +0xdf,0xf7,0x97,0x4a,0xac,0x18,0x1a,0xbb,0xfc,0x0f,0x63,0xd5, +0x63,0xc4,0x5c,0x4c,0x25,0x23,0x5b,0xfb,0x46,0xb7,0x32,0x42, +0xa3,0x28,0x23,0xfa,0xbe,0xc9,0x3d,0x52,0x0f,0x4d,0xdd,0xc0, +0xe8,0x2f,0xea,0x90,0xc0,0x86,0xe1,0xea,0xc3,0xdb,0xd1,0x4a, +0xa7,0x58,0x8b,0x87,0xd3,0xbd,0xdf,0xfd,0x2a,0xed,0x4a,0x46, +0x5d,0xd4,0x96,0x59,0x51,0x7a,0xe6,0xa5,0x22,0xec,0x66,0x5a, +0xb3,0xb3,0xda,0x94,0x60,0x1e,0xab,0x9a,0x2e,0x47,0x25,0xd6, +0x8c,0x91,0x7d,0xf4,0x72,0x6a,0xca,0x28,0x7b,0xa8,0xae,0x2c, +0x6d,0xaa,0x7b,0x71,0xfb,0xc0,0x13,0x90,0x6d,0x1f,0x7c,0x02, +0x19,0xdd,0xf4,0xbe,0xc5,0x8d,0xb8,0x99,0x7a,0xe1,0x09,0x63, +0x3c,0x66,0xaa,0x28,0xd3,0x86,0xc3,0xad,0x37,0x7a,0x13,0xe1, +0x1d,0x79,0x18,0x5c,0xc2,0x68,0xe7,0x9f,0x1b,0x50,0x84,0x65, +0x4c,0x63,0x76,0x5a,0x9d,0xd2,0x13,0x56,0x3b,0x53,0x6e,0x31, +0x2a,0xb0,0x76,0xc1,0x09,0x97,0xa5,0x05,0x0b,0x40,0x09,0xab, +0xc8,0xa8,0x8a,0xb6,0x80,0x8c,0x96,0xfa,0x36,0xdd,0xb9,0x66, +0x6b,0xab,0x95,0x5b,0xf6,0xf7,0x19,0x3a,0xf0,0x37,0x75,0x6f, +0x99,0x7d,0x6e,0x33,0xcf,0x1e,0xdf,0x77,0xc6,0x45,0xde,0x39, +0xf4,0x46,0x77,0xca,0x60,0x71,0x25,0x4c,0x6b,0x05,0x39,0x33, +0x50,0x70,0x80,0xbd,0x67,0xb3,0x7b,0x78,0x5c,0x94,0x8b,0x53, +0x0a,0x97,0x54,0x00,0xd3,0xf3,0xf4,0x56,0xfb,0x3d,0x0a,0xda, +0x7b,0xf0,0x9a,0x64,0xe4,0xa6,0xe5,0xa6,0xe4,0x0d,0x14,0xd4, +0x54,0x66,0xd7,0x73,0x10,0x0c,0xab,0xb4,0x16,0xe3,0x0e,0x26, +0x2a,0xe1,0x62,0x42,0x82,0x34,0x0f,0xe6,0x25,0x1b,0xb9,0x2d, +0x6c,0x5f,0x88,0x05,0x67,0x1c,0xec,0x15,0x64,0x3a,0x07,0x59, +0x26,0x59,0x5f,0x0e,0xa6,0x30,0xb7,0xaa,0x72,0x86,0xd3,0x94, +0x52,0x06,0xe2,0x5e,0xc1,0x7b,0x0a,0xe2,0x57,0x4c,0x6a,0x76, +0x72,0x76,0x52,0xb6,0x6e,0x0e,0x6f,0xbe,0x69,0xf3,0x96,0x85, +0xea,0x95,0xa6,0x7c,0x63,0x41,0x6d,0xe9,0x95,0x72,0x8e,0x92, +0x90,0x19,0x6b,0x67,0xb0,0xd9,0x09,0xb7,0xfb,0x64,0xeb,0xf2, +0xed,0x31,0x4d,0x34,0x55,0xd0,0x3f,0xb8,0xeb,0xc8,0x46,0xb3, +0x0a,0x23,0xfe,0x4a,0x76,0x55,0x7e,0x45,0x11,0x87,0x14,0x1e, +0xac,0xad,0xc1,0xa6,0xd3,0xb8,0xfb,0x9c,0x8c,0xde,0xbe,0x79, +0xce,0xaf,0x1d,0x57,0x9e,0x72,0x70,0x01,0x68,0x0c,0x64,0x70, +0x37,0x13,0x95,0x18,0x95,0x94,0xa4,0x00,0x1f,0xc1,0x1f,0x6c, +0xe4,0xc2,0xd0,0x75,0xfe,0x06,0x9c,0x71,0xa0,0x67,0xa0,0xd1, +0x1c,0x9c,0xc7,0x24,0xeb,0xc8,0xc1,0x02,0xe6,0xd3,0xea,0x9c, +0xe1,0x74,0xa5,0x8c,0x9b,0x09,0xbf,0xc3,0x1a,0x85,0xd1,0x99, +0x70,0x83,0xe8,0x32,0xd9,0x99,0x99,0x99,0xe9,0x59,0x1c,0xec, +0xa6,0x77,0x1d,0x18,0x19,0x18,0x19,0xa4,0x28,0x3d,0x36,0xbd, +0x4e,0x5c,0x4c,0xfc,0x23,0x03,0x22,0x02,0x14,0x71,0x0b,0x4c, +0xb0,0x64,0x64,0x19,0x59,0x59,0x99,0xf4,0x7f,0xad,0x1a,0xf3, +0xb4,0x97,0xe4,0x05,0xc8,0xd6,0x0d,0xbd,0x80,0xf4,0x5e,0x4c, +0x7f,0xa5,0xba,0x1a,0x65,0xaf,0xd4,0x56,0x63,0xa4,0x16,0x44, +0xae,0x63,0x5b,0x5d,0x88,0x16,0xf4,0xb1,0x7d,0xca,0xcf,0xb7, +0xc1,0xfb,0xfb,0x29,0xaf,0xe2,0xb4,0x5b,0x5b,0xee,0x1f,0xfa, +0x8e,0x46,0xab,0xf3,0x44,0x7b,0xdb,0x96,0xdd,0x0b,0x8e,0x57, +0x1b,0xf0,0x30,0xe1,0xd6,0xb3,0x27,0x7d,0xcf,0xb9,0x56,0x0c, +0x23,0xee,0xb8,0x6c,0xc7,0x7e,0x34,0x3d,0x94,0x4f,0xeb,0xe4, +0xf1,0xe0,0xbb,0xbf,0xe5,0x81,0x32,0x07,0xa5,0x4c,0xf8,0xbe, +0x0b,0xbb,0x7d,0x34,0x38,0x13,0x7f,0xd7,0x73,0xc7,0xe7,0xe0, +0x27,0x4c,0x9a,0xa6,0xd4,0x35,0xf8,0x43,0x63,0xf1,0xe3,0x4c, +0xa5,0x8c,0x07,0x31,0x4f,0xa3,0xe1,0x5d,0x4e,0x7c,0xa1,0x35, +0x76,0x43,0x4f,0xc9,0xb7,0x20,0x5b,0x33,0xf4,0x2d,0xa4,0xf7, +0xbc,0xf5,0x45,0x35,0x1a,0xfa,0xb5,0xe1,0xe2,0x1a,0x56,0xb0, +0x17,0x97,0x13,0xdf,0x8c,0xe0,0x28,0xbf,0x00,0xbf,0x00,0x3e, +0x34,0xf6,0xce,0xaf,0xe5,0x30,0x55,0x9a,0x44,0xac,0xc2,0xf8, +0x62,0x29,0x35,0x9c,0x32,0xa6,0xe3,0x47,0x55,0x3a,0x3c,0x4c, +0x1f,0xfa,0xfe,0xde,0xed,0x97,0x71,0xf1,0x71,0x91,0x71,0x21, +0xa0,0x8f,0xee,0x7c,0x47,0x9d,0x9c,0xe8,0x07,0x49,0xe4,0xb0, +0xcd,0x0e,0xdb,0x35,0x0e,0x9c,0xa0,0xae,0x22,0xda,0xb2,0x27, +0xfc,0x6d,0x03,0x6c,0x02,0x64,0x6a,0x3c,0x6c,0x6a,0x86,0x55, +0xc3,0x7f,0x1f,0xe6,0x70,0x26,0x8d,0xb9,0xfd,0xfa,0xf7,0x76, +0xb5,0x1d,0x69,0xad,0xe6,0x8d,0x6e,0xec,0xf9,0x5c,0xed,0x2a, +0x37,0x0e,0xf1,0x8d,0x28,0x7b,0x4e,0x8b,0x18,0x6d,0x88,0xd9, +0x3f,0xf8,0x29,0xc8,0xa4,0x22,0xa7,0x07,0x73,0x18,0x50,0x14, +0x9f,0x13,0xb8,0x38,0x3a,0x19,0xa6,0x8c,0x68,0x75,0x8f,0xc6, +0x8f,0x2e,0xbc,0xd6,0x35,0x62,0xdb,0x33,0x6a,0x0b,0xb3,0x58, +0xa1,0xbf,0x9b,0x88,0xfd,0xf0,0x89,0xd0,0xcf,0x8c,0x3b,0xe6, +0x4a,0x94,0x7d,0x4f,0x0b,0xc9,0x31,0x37,0x0c,0x7d,0x0d,0x32, +0xa9,0x78,0xe3,0x98,0x46,0xc8,0x11,0xfb,0xf9,0xc7,0x96,0x6d, +0xd9,0xd6,0x62,0xce,0x0f,0xf6,0x37,0x5f,0xab,0xbc,0xc1,0x09, +0xdf,0x32,0xb8,0x2d,0x18,0xe7,0xb8,0xaf,0x54,0x54,0xf6,0xb6, +0x1b,0xe7,0x1a,0x8d,0x37,0x5c,0x53,0xf2,0xb7,0x7c,0xa5,0x82, +0xdf,0x69,0xfd,0xe1,0x84,0xc2,0xe8,0xbb,0x4c,0x62,0x6e,0x62, +0x5e,0x7c,0x2e,0x77,0x08,0xcf,0x11,0x7c,0x3d,0xfc,0x39,0xbc, +0x84,0x5c,0x16,0x5f,0xe2,0x49,0x69,0xf3,0x95,0xcb,0xd2,0xd0, +0xfe,0xc8,0x11,0xe9,0xfa,0x5b,0xb1,0xe4,0x4b,0xb5,0xad,0x18, +0xa6,0x05,0x61,0x9b,0x06,0x9f,0x41,0xc9,0xa6,0xa1,0x67,0x90, +0xd4,0x4b,0x53,0x3e,0x6a,0x3d,0x6d,0xf2,0xa3,0xfa,0x72,0x6c, +0xc1,0x5f,0x70,0xaa,0x0e,0x4c,0x45,0xcf,0x21,0xf0,0x14,0xea, +0x70,0x13,0x1a,0x8c,0x2d,0xf8,0xaa,0xcc,0x74,0xe5,0x64,0x77, +0x29,0xc1,0x42,0x98,0xd4,0x8d,0x93,0xe0,0x17,0x56,0x9c,0x86, +0x7b,0x08,0xfa,0xc0,0x14,0xf0,0x61,0xe0,0x3a,0x4e,0x21,0x18, +0x4b,0x8f,0x63,0x19,0xbc,0x8e,0xca,0x04,0xdf,0xa3,0x9f,0xbc, +0xc7,0x42,0xd3,0x6c,0x88,0xa5,0xc7,0xb1,0xcc,0xb8,0x19,0xb7, +0xa0,0xec,0x29,0x2d,0x2e,0x6a,0xc1,0x45,0xe5,0xc1,0x87,0x20, +0x93,0x8a,0x8c,0x5e,0x89,0x29,0x3c,0x70,0x13,0x11,0xef,0xe3, +0x52,0xad,0x3f,0xa7,0xf7,0xe2,0x32,0xe1,0x3e,0x7b,0x5c,0x9b, +0xa0,0xbc,0x68,0x07,0xf2,0xac,0x60,0x87,0x54,0xd8,0x7c,0x4c, +0x8f,0x3f,0x96,0x8e,0x9f,0x13,0x7a,0xb4,0x40,0xb0,0x1b,0x43, +0xcc,0xff,0x22,0x8f,0x41,0xb6,0x63,0xf0,0xf1,0x18,0xdf,0x3c, +0x51,0xdb,0x8e,0xb2,0x27,0xea,0xdb,0xc7,0x98,0x68,0x07,0xbd, +0x3a,0x66,0x90,0x97,0x2d,0x0f,0xfb,0x7a,0xef,0x70,0x4d,0xe2, +0x46,0x36,0x2b,0x3b,0x53,0x96,0x9e,0xad,0x96,0xce,0x1f,0xdb, +0x8e,0x13,0xb7,0xe2,0xb2,0xe3,0x65,0xa6,0xfc,0xad,0xe2,0xfe, +0xf2,0xce,0xca,0x36,0x8b,0x3e,0x9b,0x9b,0xf6,0x38,0xd9,0x12, +0x3f,0x76,0xc4,0x35,0x6e,0xd4,0x75,0x61,0x67,0x3e,0xac,0xa9, +0x81,0x8f,0x7a,0x61,0x86,0x1e,0x2c,0xb0,0x86,0xf5,0x4e,0xb2, +0x3e,0x1e,0x17,0x14,0xe2,0xcc,0x92,0xb9,0x75,0x1c,0x66,0xc3, +0x4a,0x92,0x95,0x2e,0x27,0x7c,0xc0,0x18,0xea,0x1d,0x32,0xdd, +0x6c,0xb3,0xb7,0xe2,0x58,0xad,0x56,0x1b,0x97,0x83,0x77,0xc9, +0x0f,0x4e,0xbf,0x5a,0x7d,0x67,0x5e,0xd2,0xce,0xaf,0x68,0x9a, +0x5b,0xbb,0x96,0xba,0xbb,0x01,0x52,0xa5,0xe1,0x99,0x03,0x31, +0x8d,0x70,0xa4,0x3d,0xb0,0x97,0xc7,0x03,0xc6,0x58,0x62,0x82, +0x36,0xe7,0xc7,0xd9,0x9f,0xb6,0x87,0xec,0x4b,0xf5,0xad,0x63, +0x37,0xbd,0x7f,0x60,0x1c,0x5b,0x63,0xf4,0x09,0x4b,0x68,0x26, +0x38,0x3a,0x87,0x09,0x3f,0x18,0xb2,0x2d,0x70,0x1b,0x87,0x9c, +0x1e,0x4c,0x64,0xfc,0x36,0xf9,0x6c,0x3d,0x77,0x88,0x13,0xfe, +0x17,0x13,0x41,0x13,0xe7,0x88,0x20,0xce,0x32,0xd8,0xd3,0x47, +0x77,0xce,0x62,0x69,0x97,0x9a,0x67,0xcc,0xcb,0xea,0xcb,0x0f, +0xd3,0x94,0xe2,0x2a,0xe4,0x60,0x7a,0x0f,0x4e,0x66,0x12,0x7a, +0xe2,0x86,0x62,0xaf,0x71,0xf0,0x7e,0x17,0x4e,0x67,0x62,0xae, +0x5d,0xba,0x79,0x43,0x41,0xd5,0x9b,0x78,0xb2,0x06,0x11,0xba, +0xe1,0x3a,0x8a,0x62,0x25,0x13,0x3f,0x18,0x37,0x14,0xd3,0xcb, +0xc1,0x6a,0x5d,0xd2,0x7d,0xaa,0xcf,0xb6,0xcb,0xa2,0xaa,0x91, +0xd7,0xaf,0xd3,0xa8,0xd6,0x2e,0xe1,0x30,0x9c,0x92,0x47,0x4a, +0x77,0xd2,0x70,0xe2,0x35,0x4e,0xa8,0x66,0x42,0x8f,0x87,0xa8, +0x06,0x69,0x71,0xb8,0xbe,0x9f,0x18,0x57,0xab,0x34,0x68,0x17, +0xdb,0x59,0xf3,0xdd,0xce,0xd7,0xcc,0xda,0xac,0xc6,0x7d,0x44, +0xe3,0x20,0xe6,0x48,0x3b,0x40,0x46,0xe9,0x42,0xd4,0xa1,0x81, +0xdb,0x90,0x73,0xa8,0xff,0x36,0x64,0x5e,0xc5,0x4c,0x46,0xd4, +0x5c,0x4e,0x6c,0xb6,0xaa,0xec,0xde,0xa0,0x5a,0x6b,0xca,0x0f, +0x34,0x74,0x74,0xd6,0xf4,0x70,0x23,0x1a,0x5d,0xa3,0x6b,0x98, +0xc4,0x8c,0xc4,0xcc,0xf8,0x0c,0x4e,0xb8,0x82,0x7b,0xc9,0xe8, +0x44,0x26,0x58,0x33,0x50,0xc5,0xef,0x18,0x87,0xf2,0x7a,0x30, +0x83,0xf1,0x39,0x72,0xfe,0x88,0x97,0x2a,0x37,0x32,0x31,0x92, +0x31,0x0b,0xf6,0xf6,0xa6,0xe4,0x31,0x99,0xc9,0x30,0x94,0x7b, +0xcd,0x3c,0xaf,0xcd,0x7e,0x9a,0xa1,0x14,0x15,0x7d,0x31,0x26, +0x2a,0x9a,0x03,0xae,0x03,0x27,0x30,0xf1,0xcd,0xb1,0x6d,0x31, +0xed,0x1c,0x4c,0xeb,0x42,0x8e,0x89,0x6e,0x8a,0x6a,0x69,0x56, +0x50,0x8f,0x20,0x1e,0xac,0x5d,0xa4,0x4d,0x84,0x8d,0xa2,0x98, +0xcf,0x24,0x34,0x27,0x34,0xc7,0x35,0x72,0xb0,0xd8,0x92,0x5c, +0x75,0xed,0x3d,0xd5,0xe1,0x50,0x5e,0xc7,0x1b,0x94,0x6b,0x97, +0xe8,0xe4,0x73,0x18,0x89,0x4f,0x49,0x6a,0x4b,0x72,0x5b,0x52, +0x1b,0x27,0x94,0x32,0x17,0x0c,0xc3,0x8c,0x42,0x4c,0x39,0xdc, +0xd9,0x49,0x4c,0x4a,0x8f,0x57,0xea,0xe6,0x38,0xda,0xf2,0x5d, +0xee,0xc3,0x27,0x5a,0x4f,0xbe,0x8d,0xd6,0x6b,0x50,0xf6,0xad, +0xda,0x1a,0x8c,0xd4,0x86,0xc8,0x8d,0x83,0xcf,0x41,0xb6,0x71, +0xe8,0xf9,0x18,0x61,0x31,0xe2,0xd7,0xa8,0x42,0xae,0x39,0xdd, +0xb1,0xe9,0xb7,0xae,0xe8,0xe0,0xf5,0x6b,0x76,0x34,0xaa,0x17, +0x73,0xc2,0x7c,0xf1,0x0f,0xa2,0xe7,0x9c,0x3a,0xa8,0x24,0xec, +0x12,0xa6,0xa0,0x0f,0xba,0xb1,0x32,0x6d,0x39,0x30,0x67,0xda, +0xd3,0xf3,0xea,0x95,0xa0,0x4c,0x8c,0x10,0xfd,0xd8,0x0d,0xf5, +0x8e,0xcf,0x14,0xe1,0x57,0xa6,0x45,0x26,0xed,0xf7,0x3d,0x9d, +0x55,0xcd,0x93,0xc3,0x15,0xac,0xf8,0x0c,0xee,0x92,0xa3,0xcd, +0x87,0x2b,0x0e,0x95,0xdb,0xeb,0xf0,0x77,0x1c,0xaf,0x9d,0xba, +0x4d,0x6f,0x6c,0x19,0xbe,0x24,0x8f,0x6f,0x7f,0xf3,0x47,0xd7, +0xe7,0xa6,0x57,0x78,0x8d,0x6d,0x1b,0x96,0xee,0x56,0xe5,0xfe, +0x53,0xdc,0x6f,0xc3,0x55,0x04,0xdf,0x17,0x97,0x6a,0x0a,0x4b, +0xc5,0x05,0x68,0xc8,0x66,0x53,0x12,0xde,0x47,0x83,0x79,0x4e, +0x8b,0x92,0x20,0x0f,0xcb,0xfb,0x70,0x39,0xbc,0xcf,0x8a,0x59, +0x21,0x44,0x1f,0x3f,0xd8,0xb7,0x00,0x27,0xad,0xad,0xd1,0xe7, +0x1b,0xab,0xca,0x2b,0x8a,0xca,0x38,0x71,0xc6,0xb0,0x60,0xc3, +0x56,0x74,0x96,0x0e,0xe6,0x5c,0xe5,0x20,0x57,0x5c,0x43,0xcc, +0x6f,0xea,0x0d,0x69,0x5f,0x35,0xb6,0xe6,0x7b,0x74,0x5b,0x34, +0x9a,0x0f,0xfd,0xf7,0x8b,0x6b,0x41,0xc4,0xa2,0xa1,0x5f,0x40, +0x26,0x15,0x52,0x60,0x61,0xe0,0x24,0x46,0x91,0xde,0xd1,0x46, +0x2d,0x10,0x31,0x4d,0x5c,0xa8,0x21,0x2c,0xc4,0xd0,0x1b,0x10, +0x2a,0x6c,0xea,0xa7,0x9a,0x25,0x8d,0x45,0x13,0x3b,0xa2,0xaf, +0xb7,0x47,0xef,0x98,0x7d,0xa5,0x09,0x7f,0xbb,0xf2,0x5e,0x57, +0x4f,0x3f,0x27,0x84,0xe2,0x04,0x72,0xac,0xf7,0x60,0x9b,0x7a, +0xbd,0xa5,0x05,0x7f,0xd3,0xf4,0x96,0xd1,0x90,0xd6,0x5b,0x2a, +0x5e,0x8f,0xb2,0x6f,0x68,0x21,0x45,0x05,0x2d,0xc6,0x2c,0xd5, +0x0c,0x99,0xfd,0xeb,0x97,0xec,0x90,0xaf,0x35,0xba,0xd3,0xd3, +0x77,0xad,0xf9,0x53,0x79,0x61,0x98,0x89,0xdc,0x19,0xb6,0x21, +0x68,0x3f,0x67,0x15,0xe6,0xeb,0x67,0x35,0xe7,0x88,0xe4,0x19, +0x03,0xcc,0x67,0xc5,0x85,0x9f,0x26,0x29,0x25,0x3d,0x89,0xfb, +0xfb,0x25,0x98,0xc9,0x89,0xdf,0x33,0xf1,0xd2,0x06,0xc5,0x69, +0x5c,0x9f,0x44,0xc3,0x83,0x5f,0x43,0x46,0x8f,0x44,0x43,0xb3, +0x46,0xdd,0x88,0x69,0x40,0x12,0x6d,0x98,0x29,0xc2,0x3c,0x08, +0xa4,0x22,0xfa,0xbf,0xd8,0x43,0x45,0xa7,0x1e,0x29,0x0a,0x77, +0x99,0xa6,0xac,0x8c,0x06,0xa9,0xff,0xef,0xb8,0x4c,0x0e,0x3f, +0x61,0xb1,0x12,0x7e,0x93,0x46,0x6b,0xbe,0x91,0x46,0x6b,0xfe, +0x69,0x81,0xb7,0xf1,0x6a,0xf0,0x2f,0x91,0x8c,0xc1,0x38,0x54, +0x22,0x6b,0x6c,0xf1,0x7d,0x27,0x9c,0x19,0xc8,0xe1,0xdf,0xa5, +0x09,0xee,0x61,0x1e,0x17,0xd2,0x35,0x79,0x78,0xa7,0xe0,0xf5, +0xe5,0xe7,0x15,0xb6,0xcb,0x36,0xa9,0x22,0x31,0xba,0x4c,0x89, +0x47,0xfd,0x26,0x55,0x22,0x1f,0x50,0x05,0x09,0x4b,0x55,0x71, +0xb9,0x34,0xc4,0x1b,0xee,0xa1,0xa8,0xea,0x76,0xc8,0x63,0xaf, +0x17,0x07,0xd5,0xec,0xef,0xc9,0xf0,0xce,0xe5,0x57,0x57,0x68, +0x08,0x1f,0x9d,0x40,0x84,0xcf,0xc1,0x5d,0xe4,0x70,0xcb,0xd8, +0xde,0xe7,0x0b,0x98,0xe6,0x9c,0x4c,0xda,0x9e,0xdb,0xf0,0x97, +0xd1,0xf7,0xde,0x4a,0xb3,0x4d,0x28,0x7b,0x46,0x0b,0xe9,0x96, +0xb6,0x0c,0x3e,0x05,0x99,0x54,0xbc,0xa9,0xa9,0xd5,0xe8,0x0d, +0xf2,0x40,0x68,0xdb,0x7d,0x6d,0x44,0x71,0x74,0xe7,0xa8,0x22, +0x2b,0x88,0xc2,0x59,0x22,0xb6,0x01,0xf7,0x66,0x4d,0x0d,0x65, +0x22,0xb4,0x21,0x27,0xb6,0x31,0xba,0x93,0xe9,0xc1,0x0c,0x69, +0x75,0x0d,0xf8,0x5d,0x78,0x4c,0xbe,0x87,0x92,0x95,0x43,0xdf, +0x8f,0x05,0x0d,0xa9,0xb5,0x4b,0xa4,0x0a,0x4b,0xe1,0x64,0x25, +0x2b,0xbc,0xa6,0xec,0xd7,0x2b,0x72,0xf0,0x91,0xb0,0xad,0x57, +0xdc,0x06,0xac,0x2a,0xb2,0xe2,0x12,0x2d,0x61,0x09,0x7e,0x84, +0xa0,0x05,0x0f,0x58,0x9d,0x75,0xf8,0xce,0x41,0x3c,0xbb,0xab, +0x88,0x56,0xfb,0xd2,0x77,0xdf,0x0f,0x8d,0x4d,0x79,0xc1,0x3b, +0x43,0x70,0x27,0x9e,0xa9,0xc5,0xa9,0xf4,0x04,0xb8,0xb8,0xb2, +0x90,0xd2,0xac,0xc7,0x23,0x7c,0xf7,0x8e,0xd6,0x0b,0x4e,0x22, +0xf8,0xab,0xe4,0x5f,0xb5,0xf0,0x1b,0x99,0xfc,0x2f,0x6a,0x99, +0x85,0x73,0x6b,0x09,0xcc,0x3a,0x8a,0xb3,0xf0,0xbf,0x34,0x47, +0xda,0xfa,0x58,0xcc,0x10,0x8d,0x48,0x17,0x4c,0xa8,0x87,0x29, +0x65,0xf0,0xc1,0xf1,0x74,0xfe,0x24,0x4e,0xb7,0xc2,0x59,0x9a, +0x38,0x85,0x13,0x65,0x1a,0x7f,0xca,0xf7,0x33,0x62,0x7f,0x27, +0x71,0x86,0x09,0xf6,0x7f,0xd8,0xfc,0xa4,0xee,0xc9,0x57,0xaf, +0xac,0x98,0x77,0x19,0x27,0xbd,0x05,0x98,0x14,0x44,0xd4,0xde, +0x04,0x91,0x7d,0x83,0x9f,0x81,0x4c,0x2a,0xde,0xc8,0xd9,0xcc, +0xd1,0x5b,0x64,0x78,0x64,0xed,0xf1,0xe1,0x91,0xf5,0xa3,0x95, +0xa3,0xeb,0xd9,0x11,0x67,0x01,0x89,0x18,0x3a,0xba,0x56,0x08, +0x65,0x85,0x5f,0x51,0x97,0x74,0x61,0x0c,0x4c,0x54,0xa7,0x77, +0xe6,0xaf,0x07,0xbe,0xac,0xdf,0xd6,0x03,0x87,0x70,0xdd,0x91, +0x62,0x3d,0x1e,0xb6,0x7e,0xfe,0xe9,0xcd,0xb8,0xdf,0xb8,0x78, +0x26,0x7e,0xfe,0x97,0x07,0x61,0xeb,0x9e,0xcb,0x5d,0x3c,0x6e, +0xba,0xb9,0xf3,0xb6,0xcf,0x97,0xff,0xf9,0xaa,0x09,0x63,0x57, +0x55,0xa4,0x57,0x5d,0x3b,0x9a,0x39,0xba,0x96,0x1d,0x31,0x15, +0x46,0x88,0x18,0x3c,0xaa,0x28,0x04,0xb3,0x42,0xbc,0xf8,0x01, +0x81,0x62,0x0a,0x82,0x62,0x16,0xae,0xc1,0x19,0x82,0x3b,0x30, +0x1a,0x76,0xd0,0xe6,0x3f,0x2c,0x7d,0xe9,0x3e,0x2c,0xf9,0x4c, +0x7d,0x1f,0x5e,0xd0,0x81,0x0b,0x47,0x06,0x6e,0x42,0xc9,0x91, +0xc1,0x9b,0x90,0xdc,0x8d,0xc9,0xcc,0x8f,0xb8,0x95,0x88,0x1f, +0x30,0xe9,0x59,0xe9,0x59,0xa9,0xd9,0xaa,0x34,0x24,0xae,0x59, +0xb4,0x15,0x57,0xa9,0x5d,0x36,0xe4,0x1f,0x94,0x5c,0xbb,0xd2, +0x5d,0xd7,0x64,0xd9,0x61,0x3b,0xe0,0x80,0x13,0x4c,0x51,0xfe, +0x04,0x6e,0x74,0x92,0xe9,0xf2,0xf5,0x09,0x75,0x09,0xb5,0x49, +0x1c,0xde,0x1a,0x6c,0x17,0x2e,0x18,0x0e,0xc3,0x2d,0xf6,0x4a, +0x60,0x4d,0x70,0x6d,0x70,0xf6,0x55,0x1e,0x57,0x96,0xe0,0xf4, +0x2b,0xcb,0xea,0xbf,0x69,0xbf,0xdb,0xdf,0x79,0x97,0x13,0x8d, +0x9c,0x48,0x7c,0x5c,0x42,0x7c,0x7c,0x3c,0x07,0x3f,0x33,0x46, +0xba,0x2a,0xa6,0x3b,0xad,0x0f,0x57,0x69,0xd6,0x1a,0x36,0x72, +0x38,0x47,0x5a,0xf4,0x6a,0x6a,0xf1,0x6f,0x15,0x2f,0xea,0xbe, +0xb4,0xfe,0xc1,0x1e,0x26,0x39,0x53,0x8c,0x49,0x7d,0xb6,0x9b, +0x84,0x0b,0x92,0x4c,0x81,0x2f,0x61,0x3f,0x91,0xd9,0xe5,0x98, +0x64,0x19,0x69,0x05,0xed,0x0e,0xdc,0x11,0xf2,0x07,0xcc,0x7c, +0x0d,0x4b,0x1f,0xc0,0x32,0xbd,0x12,0xde,0x66,0x97,0xf9,0x6e, +0xa3,0x7d,0x6e,0x65,0xce,0x55,0xce,0x95,0x57,0xef,0xb7,0x3f, +0xad,0x78,0x78,0x2a,0x95,0xef,0x19,0xd7,0xb0,0x92,0x8c,0xf8, +0x41,0x75,0x05,0xca,0xa4,0x42,0xd2,0xb0,0x1b,0x19,0xcf,0x04, +0xa7,0xfd,0x66,0xca,0x26,0x2a,0xf2,0xe7,0x72,0xce,0xc9,0xbc, +0x33,0xcd,0x2d,0xf9,0x6b,0x47,0x6f,0x6e,0x6f,0xdd,0x67,0xae, +0x66,0xaa,0x61,0xa8,0x2d,0x8d,0x09,0x79,0x46,0x26,0xaa,0xf3, +0xf0,0x71,0x12,0xcc,0xc8,0xf8,0x35,0x33,0xde,0x33,0xde,0x23, +0xd6,0xab,0x27,0x87,0x77,0x7b,0x64,0x06,0x13,0x1c,0x06,0x39, +0xe1,0x1e,0xc6,0x10,0x97,0xaf,0x8d,0x61,0x92,0xd5,0x5d,0x43, +0x57,0x3e,0xcf,0x2a,0xcf,0x40,0xa6,0x7f,0xc0,0x7f,0x9d,0xdf, +0xea,0xa0,0x5f,0x61,0xe6,0xaf,0xb0,0xea,0x3e,0x2c,0xd1,0xbf, +0xcc,0xdb,0xec,0x36,0x53,0x36,0xdc,0xeb,0x56,0xe6,0x74,0xe5, +0x54,0xd5,0xd5,0xfb,0x4d,0x4f,0x2a,0x1f,0x6a,0x17,0xf2,0x4e, +0x07,0x2d,0x77,0x19,0x1f,0xf3,0xca,0xf5,0xcc,0x39,0x97,0x65, +0x61,0xce,0x5f,0x57,0xfd,0x6c,0x63,0xfb,0x7e,0xb3,0xe3,0xc6, +0x6a,0xc6,0xba,0x36,0xe1,0x7c,0x92,0x3a,0x2c,0x4a,0x06,0x79, +0xd9,0xaf,0x32,0xf9,0x44,0xd7,0x78,0xfa,0xe2,0x66,0xfc,0xb9, +0x0b,0xb2,0xa8,0xfb,0xac,0x87,0x4f,0x00,0x7b,0x10,0xe1,0x1d, +0x55,0x7c,0x07,0x2d,0xd8,0xf4,0xa2,0xd4,0xc2,0xe4,0x22,0xae, +0xff,0x7b,0x28,0x94,0xfc,0x2e,0xa5,0x17,0x53,0x9e,0xab,0x6e, +0xc4,0x42,0x49,0x8d,0x86,0x6b,0x41,0xf8,0x76,0xc6,0x30,0xe5, +0xf4,0x0e,0x95,0x0d,0x3b,0x8f,0xca,0x37,0x59,0xd5,0x57,0x55, +0x54,0x17,0xd7,0xc8,0x43,0x28,0x7e,0x22,0xce,0xd3,0x12,0x26, +0x32,0xff,0xf7,0x2e,0xf7,0x86,0xc9,0x36,0xa3,0xec,0x2b,0x5a, +0x48,0x5c,0xbe,0x75,0xe8,0x4b,0x90,0x49,0xc5,0x18,0x97,0xbf, +0xd1,0xa9,0x73,0x8f,0x2d,0xdd,0xb2,0x95,0xea,0xd4,0xeb,0xd7, +0x5a,0x6f,0x57,0xdd,0xe5,0x84,0xaf,0x18,0xdc,0x19,0x42,0x85, +0xd3,0x72,0xc5,0x9d,0xff,0xc8,0x89,0x75,0xdf,0xe8,0xd4,0xe2, +0xbf,0x53,0x9d,0xfa,0x47,0x02,0x28,0x83,0xa3,0xc2,0x28,0xc7, +0x24,0xc8,0xe2,0xb3,0xe3,0x64,0xdc,0x61,0x34,0x21,0xe2,0x46, +0x0a,0xc6,0xdf,0xa8,0x92,0x54,0xc7,0xc5,0x04,0x9b,0x5e,0x41, +0x93,0xb4,0x4e,0xd2,0x42,0x02,0x4d,0x4b,0xb1,0x89,0xf9,0x77, +0x4a,0xdd,0xc6,0x98,0x27,0x04,0x58,0x9f,0x37,0xf5,0x32,0x96, +0xc7,0x35,0xda,0xf0,0x11,0x73,0xfa,0xa8,0xfd,0x51,0x1b,0xed, +0x41,0xdb,0x41,0xeb,0x01,0x2b,0x3d,0xa3,0x23,0x16,0x1b,0x6d, +0xca,0xf4,0xf9,0x6f,0xeb,0xef,0xb5,0xf5,0xf5,0x76,0xd9,0xb6, +0xdb,0xb4,0x5a,0x55,0xb7,0xf2,0xa6,0xb5,0x06,0xd5,0x86,0x55, +0x9f,0x3e,0xaf,0xff,0x7b,0x06,0x4c,0xe3,0x9a,0xa4,0x65,0xd2, +0xab,0x52,0xae,0x24,0x57,0x71,0x1d,0x3f,0x83,0x6c,0xe9,0xd0, +0xcf,0x6f,0xf8,0xf9,0xd0,0x68,0x3b,0xb9,0x01,0x7e,0x47,0x87, +0x28,0x87,0xfd,0x29,0xbe,0x66,0xa1,0x4d,0x68,0x22,0xa2,0x32, +0xfa,0x09,0xca,0x2c,0x1a,0x6b,0x90,0xf3,0x4b,0xec,0x37,0x1e, +0x53,0xd6,0xaf,0x34,0x2c,0xb5,0x28,0x2c,0x6d,0x2b,0x1d,0x28, +0x1a,0x1e,0xe3,0xa6,0x3f,0xc8,0x5b,0x09,0x4b,0x19,0xf5,0xa5, +0xda,0x5a,0x94,0x49,0x85,0x74,0xaf,0xca,0xec,0xc8,0x27,0x8b, +0x49,0x8f,0x98,0xcf,0x26,0xe4,0xc4,0xe7,0xc4,0xe5,0x68,0x24, +0xf0,0x21,0xae,0xc1,0xae,0x41,0x6e,0x1c,0xf6,0x68,0x43,0x09, +0x73,0x1c,0xa7,0x2f,0xa2,0xcd,0x3b,0x7b,0x57,0x85,0x01,0xdf, +0x5e,0xda,0x5c,0x55,0x5f,0xcd,0xe1,0x93,0x01,0x41,0x81,0xed, +0x1c,0x68,0xb8,0x5e,0x76,0x8b,0x83,0x7c,0xec,0x22,0x05,0xec, +0xd7,0xb5,0x0f,0x9b,0x3b,0xbb,0xb9,0x76,0xd1,0x4b,0x47,0x98, +0xcf,0x9a,0x5a,0xab,0x9c,0xda,0x6e,0xcf,0xe9,0x60,0xb9,0x36, +0x94,0xe3,0x46,0xdc,0x3a,0xb6,0x30,0xd2,0x0a,0x69,0x32,0x53, +0x8d,0x12,0x6c,0x80,0xba,0x1e,0xea,0x3f,0x7f,0x13,0x9e,0x53, +0x8e,0xae,0x5d,0x39,0xf8,0x3d,0x24,0x76,0x63,0xe2,0x77,0x6a, +0xab,0xb0,0xf6,0x3b,0xf5,0x55,0x18,0xa2,0x03,0x21,0x2b,0x59, +0xd8,0x5d,0x47,0x34,0xd6,0xa3,0xdc,0x5e,0x8c,0x39,0x98,0x47, +0x31,0x11,0xf7,0x39,0x90,0x7b,0x2d,0x63,0xdb,0x52,0xb6,0xe0, +0x44,0x50,0xdc,0x0b,0x69,0xbb,0xf2,0xa8,0x44,0x8d,0xbf,0x8b, +0x1f,0xdc,0xd3,0xf8,0x86,0xc3,0x64,0xbc,0x4c,0x04,0xbb,0x6e, +0xd1,0x8e,0xb1,0x12,0xbd,0x48,0xb3,0xd0,0x6c,0x3a,0x0c,0xcf, +0x47,0xb7,0xe0,0x73,0x56,0x10,0xa0,0x8c,0xe0,0x21,0xb1,0x19, +0x0e,0x8d,0xc5,0x3f,0x37,0xf2,0x93,0xea,0x32,0x94,0xfd,0xa4, +0xb6,0x6c,0x4c,0xde,0xaf,0x1e,0x7c,0x05,0xb2,0xb5,0x16,0x78, +0x00,0x53,0x35,0x21,0x89,0xf5,0xc1,0xc5,0xdb,0xe6,0xe3,0x31, +0x7c,0xbf,0x86,0x86,0xb8,0xdd,0xf0,0xde,0xb7,0x30,0x21,0x01, +0xe6,0xd1,0xcb,0x26,0xe0,0xfc,0x17,0x4b,0x41,0x0d,0xf9,0x1a, +0xca,0x23,0xba,0x20,0xbf,0xf5,0x67,0x1f,0x69,0xc9,0xcb,0xda, +0x3e,0x6c,0x80,0x7d,0x75,0xaf,0xa8,0x5b,0x33,0xe8,0x89,0x3b, +0x49,0x93,0xed,0x95,0x13,0xd5,0x66,0xcd,0x57,0x78,0xfb,0x06, +0xf3,0x46,0xf3,0x0a,0x4e,0xf4,0x71,0xff,0x9f,0xc4,0x0a,0x3f, +0x2c,0x38,0xbd,0x15,0x2b,0xff,0x9a,0xba,0x49,0xcd,0xb2,0x75, +0x50,0xc2,0x32,0x2d,0xde,0x84,0xc0,0xe7,0x34,0xaf,0xb8,0xee, +0x74,0xdb,0x66,0xc0,0xba,0xb4,0x95,0x37,0x18,0x97,0x6b,0xee, +0x6e,0x84,0xb6,0xcc,0x39,0xf1,0x13,0x76,0x61,0xa5,0xd3,0x1f, +0x8a,0xc2,0xb2,0x3e,0x71,0x29,0x73,0x38,0x20,0xb7,0x5b,0x09, +0xbe,0x12,0x02,0xfb,0x30,0x13,0xde,0x61,0xa9,0x86,0xca,0x27, +0x47,0x5b,0x8e,0x54,0x1e,0xae,0x70,0xd4,0xe3,0xef,0x3a,0x0e, +0x9d,0xbc,0x6d,0xc2,0xe1,0x0a,0xfc,0x9a,0x3c,0xb9,0xfd,0x35, +0x15,0x66,0x66,0x7f,0x11,0x66,0x87,0xdf,0x84,0xe1,0x12,0x29, +0x0c,0x87,0x6a,0x43,0xe8,0xae,0xc1,0xcf,0xa1,0x44,0x2a,0x92, +0x7b,0x28,0x0f,0xc3,0xbb,0x78,0x90,0x88,0x72,0x4c,0x4e,0x8e, +0x2c,0x37,0x3b,0x4f,0x3b,0x9f,0xdf,0xbc,0x00,0xa7,0x1f,0xc0, +0x3d,0xfa,0xd2,0x1c,0xf1,0xc9,0x15,0xdf,0x35,0x3d,0xea,0xe3, +0xe0,0x17,0x46,0x4b,0x6d,0x97,0xe6,0x72,0x03,0xe3,0x66,0x8b, +0x0a,0xfd,0x4a,0x53,0x7b,0xbe,0xf5,0x64,0x9d,0x63,0xa3,0x25, +0x4e,0x32,0x44,0x79,0x2b,0x5c,0xe9,0x92,0xab,0xc5,0xdf,0x49, +0xbd,0x99,0x39,0x9c,0xc5,0x61,0xd6,0xb5,0x3e,0xc1,0x43,0x73, +0x18,0x5e,0x89,0xab,0x59,0x58,0x7e,0x1b,0xa6,0x3e,0xff,0xfc, +0x67,0x4e,0x74,0x17,0x3d,0x08,0xec,0x11,0x3c,0x70,0x0f,0xfb, +0x1f,0xa3,0xcd,0x23,0x71,0x17,0x81,0xc8,0x2c,0x8a,0x8b,0x6c, +0xaa,0x93,0xa0,0x9e,0xb1,0x0d,0xb7,0x0b,0x3d,0xa3,0x78,0x22, +0x38,0x20,0x40,0x77,0x0e,0xae,0x67,0x32,0x69,0x32,0xb8,0x8a, +0xf9,0xbc,0x28,0x77,0x20,0x5d,0x29,0xb9,0xe1,0x52,0xe7,0x17, +0x0a,0xa3,0xa6,0xda,0xd0,0xc1,0x78,0xae,0x9d,0x67,0x80,0x2e, +0x54,0xa3,0x4c,0xc4,0x35,0x24,0x14,0xdf,0x33,0x3a,0x84,0x13, +0x8f,0xd7,0x98,0xf1,0x30,0xf5,0xf6,0xc0,0xd7,0x09,0x52,0x9b, +0x2e,0x65,0x36,0x5c,0x30,0x08,0xb1,0x53,0xb4,0x0c,0xf2,0xf1, +0xd3,0x9e,0x73,0x88,0x49,0xd7,0x96,0xbb,0xc1,0xdc,0xaf,0xca, +0xb9,0x9d,0xaa,0x94,0xd4,0x16,0x73,0x0b,0x3e,0x56,0x10,0x57, +0x68,0x33,0xc2,0xd7,0xb3,0xc3,0xf0,0x3d,0xb3,0xc3,0x38,0xf5, +0xf8,0x15,0x53,0x1e,0x3e,0xb8,0xdd,0xf7,0xe6,0xec,0x95,0x4c, +0xe4,0xae,0x08,0xb5,0x60,0x3b,0x9a,0xef,0x48,0xa7,0x2b,0x4b, +0xeb,0xc1,0x7f,0xca,0x3c,0x18,0x3f,0x3d,0x7a,0xec,0xf4,0x75, +0xda,0x6f,0x79,0xe3,0x2f,0x48,0x1c,0x93,0x62,0xeb,0xcc,0xf0, +0x5d,0x4c,0xd1,0x14,0x7e,0xe9,0xc3,0x2a,0x98,0xda,0xf8,0xed, +0x78,0xd6,0xb9,0x15,0x37,0x50,0x14,0xc9,0x1f,0x5a,0x8f,0x13, +0xd7,0x54,0x1b,0xf2,0x75,0x95,0xe5,0x15,0x05,0xc5,0x9c,0x38, +0x6b,0x58,0xb0,0x62,0xcb,0x3b,0x4a,0x7a,0xf3,0x86,0x38,0x41, +0x0b,0xf5,0xc8,0x59,0x94,0xb3,0xc6,0xf7,0x8d,0x70,0x22,0x87, +0xa0,0x39,0xf2,0x71,0x1f,0xba,0x31,0xcd,0xbf,0x5d,0x81,0x69, +0x05,0xbf,0x72,0xe2,0x81,0x50,0x52,0xbe,0xa3,0x6c,0x71,0xe1, +0xc2,0x7e,0x19,0x7f,0xe6,0x77,0x87,0xbf,0x9f,0x7a,0x20,0x91, +0xc3,0x88,0x1c,0x79,0x04,0x39,0x3b,0xfb,0x1f,0x41,0xd6,0x55, +0xcc,0x7a,0xa0,0xb1,0x1b,0x73,0x1e,0xa8,0xef,0x1e,0x4b,0x8e, +0x76,0xb2,0xb0,0x40,0xdc,0x47,0xd4,0x2e,0x9f,0x1d,0x56,0x14, +0x56,0xf4,0xa0,0x37,0xec,0x02,0xbb,0xab,0x68,0x07,0x73,0x99, +0xaf,0x92,0x3e,0x4f,0x1b,0xcc,0x70,0xeb,0xe4,0x71,0xa6,0x23, +0xea,0x79,0xa0,0x5e,0x68,0xa2,0x0e,0xff,0x28,0xfa,0x8b,0xd8, +0x47,0x09,0x1c,0x0a,0x8b,0x58,0x87,0x80,0x84,0x6a,0x25,0x38, +0xa9,0xc6,0x36,0x89,0x1b,0xc8,0xf2,0x5d,0x45,0x57,0xd5,0x94, +0x7a,0x3f,0xaf,0x7a,0x9a,0xfe,0x94,0x6b,0xa0,0xaa,0xfe,0x4e, +0xcb,0x67,0xb7,0xea,0xba,0xb9,0x46,0xac,0x32,0x04,0x3b,0xd6, +0x58,0x77,0xf7,0xb1,0x9d,0x46,0x9c,0x29,0x78,0xb1,0xbe,0x47, +0x9c,0x8e,0x9a,0x1d,0x3f,0x59,0xeb,0xd2,0xee,0xd1,0x6f,0xe0, +0xce,0x17,0x1c,0x2a,0xd5,0xaa,0x36,0x39,0x61,0x6d,0x6e,0xad, +0x67,0x57,0x63,0xca,0x77,0x5e,0x69,0xaa,0xab,0xae,0xe7,0x54, +0x6f,0xbf,0x38,0x09,0x53,0xe7,0x08,0x66,0x4c,0x52,0xbf,0xdc, +0x38,0x4c,0x76,0xa0,0xec,0x31,0x2d,0xfe,0x45,0x3e,0x66,0xf6, +0xd0,0x94,0x0e,0x8e,0x8d,0x5e,0x24,0x5a,0xf9,0xa6,0x95,0x27, +0xda,0xfa,0xdb,0xda,0xba,0x1b,0x06,0x4d,0xca,0xf9,0x13,0xfa, +0x66,0x46,0xba,0xe6,0xae,0x6d,0xde,0x03,0x81,0x9f,0x71,0xd0, +0xd6,0x83,0xdd,0xcc,0x85,0x86,0x88,0xd6,0x4e,0x85,0x1e,0x55, +0x2d,0xd6,0xe0,0x92,0x71,0xb4,0x85,0x22,0x9e,0x87,0x99,0xcc, +0x40,0x62,0x57,0x52,0x5d,0x8a,0x53,0x07,0xbf,0xda,0x05,0x57, +0x79,0xe1,0xe2,0xd0,0x14,0x1d,0xfe,0x5a,0xf4,0x8d,0xd8,0x61, +0x5a,0x47,0x06,0xfd,0xb4,0xc1,0x0f,0x15,0xd9,0x9d,0xfe,0x5b, +0x03,0xf7,0x86,0x26,0x69,0xf3,0x9f,0xc7,0x3f,0x48,0xfa,0x34, +0x99,0xc3,0xe5,0xa8,0x31,0xb6,0xf8,0xf4,0x5e,0xa6,0x5e,0x26, +0xa3,0xfa,0x7c,0x35,0x7b,0x2d,0xb9,0x3f,0xa5,0x23,0x35,0xb4, +0x8b,0x37,0x09,0xd0,0xf0,0x57,0x0d,0xe4,0x60,0x16,0x04,0xb2, +0x29,0xeb,0x72,0xf6,0x95,0x68,0x1e,0x32,0xda,0x66,0xb5,0xf2, +0x54,0xa1,0x36,0xff,0x63,0xf9,0xd3,0xba,0xbb,0x1d,0x35,0xfa, +0xad,0xb6,0xfd,0xce,0xdd,0x67,0xaa,0xe2,0x12,0xfa,0x72,0x60, +0x11,0xaf,0x9b,0x2b,0x17,0x09,0xf7,0x88,0x6d,0xa3,0x41,0xb3, +0x59,0xa5,0xa5,0x0d,0xdf,0x68,0xdf,0x66,0x59,0x6d,0xc2,0x49, +0xec,0xf9,0x3d,0x79,0x05,0xb5,0x12,0x79,0x49,0xec,0x29,0xad, +0x18,0x58,0xfb,0xb5,0xfa,0x86,0x31,0xf6,0xa4,0x0e,0xb5,0xbb, +0x83,0x68,0x6c,0x46,0xb9,0x23,0x18,0x73,0x9c,0xfa,0x1c,0xbc, +0x53,0xf2,0xbc,0xe4,0xa6,0xb4,0x53,0x82,0x50,0xcf,0xde,0x3e, +0xf5,0xdc,0x09,0x26,0x3a,0xe5,0xf4,0xf0,0x18,0x37,0x8c,0x1f, +0xde,0xd6,0x78,0x2a,0x3d,0x30,0xbd,0x8f,0x3c,0xae,0x6b,0x6f, +0x2e,0xea,0xa5,0x44,0x57,0xa4,0xd5,0x65,0xfa,0xd4,0x8a,0x83, +0xf5,0xf8,0x01,0x19,0xdd,0xa6,0x27,0xfc,0xc0,0xb8,0x3a,0x99, +0xdb,0x5a,0x9d,0xe4,0x44,0x47,0xcc,0x1f,0xaa,0x15,0xba,0xac, +0x87,0x29,0xeb,0xcf,0x62,0xaa,0x2b,0xca,0x2b,0xca,0x6b,0x38, +0xf1,0x5b,0xac,0x26,0xf0,0x81,0xd0,0x85,0x1f,0xbc,0x15,0x73, +0xeb,0xb0,0xe4,0x05,0x2d,0xc2,0xb4,0x21,0x6c,0xed,0xe0,0x4b, +0x28,0x91,0x8a,0x94,0x1e,0x4c,0x61,0xa8,0xe6,0x4b,0x22,0xc2, +0xc2,0x1e,0x71,0xe1,0x77,0x2a,0xab,0xc4,0x59,0xda,0xc2,0x2c, +0x54,0x62,0xf0,0x08,0xce,0xdc,0x80,0x15,0xcb,0x15,0x8b,0x34, +0x21,0xeb,0x07,0x98,0xfe,0x34,0x1b,0x96,0xcb,0xc7,0x33,0xd9, +0x34,0xd5,0x9b,0xb3,0x05,0xb2,0x57,0x48,0x33,0xcc,0xaf,0x7c, +0x8f,0x73,0x5e,0xc0,0x11,0x05,0x38,0xf6,0x35,0xb1,0x61,0xb7, +0xdb,0xd8,0xed,0x34,0x54,0xac,0xb2,0xe8,0x28,0x2d,0x2d,0x49, +0xcb,0x94,0x4f,0x4c,0x8e,0x8b,0x48,0x09,0x86,0x79,0x8b,0xf9, +0xaa,0x66,0x9c,0xf3,0xca,0x3f,0x31,0x58,0x1a,0xa7,0xf7,0xf3, +0x0b,0x8b,0x96,0x4b,0x2f,0x4a,0x28,0x69,0x52,0xa8,0x67,0xc5, +0xc6,0x48,0x62,0xcb,0xee,0xb0,0xb1,0x98,0x77,0x4c,0xb1,0xd2, +0xf4,0x4e,0xfd,0x95,0xaa,0xec,0x02,0xf9,0x84,0xa4,0xb8,0x88, +0xe4,0xe0,0xd7,0x87,0xf8,0xaa,0xa6,0x15,0xd7,0xfc,0x13,0x42, +0xa5,0x25,0x75,0xfc,0xfd,0x42,0xe9,0x59,0x85,0x89,0x65,0xf5, +0xf4,0xac,0x71,0x6c,0x6d,0x43,0xd9,0x17,0xb4,0x18,0x0b,0x97, +0x6f,0xfb,0x82,0xc6,0xb0,0x25,0xfe,0x89,0xeb,0x88,0xce,0xc8, +0x8f,0xdd,0xec,0xe8,0xe2,0x83,0xc4,0xc5,0x4a,0x57,0x47,0xd7, +0xb8,0xcd,0xa2,0x47,0xa5,0xca,0xb0,0xe3,0x32,0x7f,0xba,0xde, +0xa8,0xcb,0xbe,0xbc,0xa6,0xb2,0xa1,0xb9,0xa8,0x86,0x03,0x9b, +0xfc,0xff,0xf3,0xe7,0x0e,0xff,0xe7,0xcf,0xfb,0xf0,0x07,0xd2, +0x3d,0xda,0xa1,0x23,0x4c,0xc4,0xe5,0xe2,0x32,0xed,0x3f,0x67, +0xf6,0x88,0xdb,0x61,0xf9,0xf8,0x0d,0x6a,0x1c,0xc6,0x1c,0x69, +0xa1,0x9f,0x8b,0xba,0x70,0xf1,0xd8,0xc0,0x75,0xc8,0x39,0xd6, +0x7f,0x7d,0xbc,0x3f,0xe3,0x43,0x69,0x29,0x7c,0x33,0xa1,0x17, +0xcc,0xd8,0xd1,0xd5,0x28,0x23,0xe0,0xa6,0x8a,0x97,0xe1,0xd1, +0x7a,0x36,0x54,0x5c,0xa1,0x2b,0x7c,0xc2,0xda,0xec,0xc2,0xf7, +0x8d,0xd1,0xdb,0x2a,0x57,0x83,0x87,0xb2,0x1e,0x98,0xd4,0x99, +0x0f,0x2c,0x17,0xc7,0x14,0x22,0x0b,0x1f,0xe8,0x43,0xb9,0xb6, +0xac,0x9f,0x47,0xef,0x3a,0xfc,0xb8,0xd5,0xe2,0x73,0x4e,0x58, +0x75,0x75,0x11,0x2c,0x61,0x44,0x77,0x60,0xc9,0x2f,0xc2,0xb1, +0x45,0x2c,0x96,0xe1,0x0e,0x02,0xa9,0x2b,0x31,0x35,0x6e,0xac, +0x8b,0xeb,0x37,0xf2,0x97,0xa0,0xf5,0xfc,0x5f,0xc2,0x19,0x8b, +0x66,0xe6,0x64,0xc8,0xe9,0xa6,0x4d,0x8f,0x75,0x59,0x1b,0x6f, +0x54,0xb3,0xab,0x41,0x93,0x46,0x30,0x3d,0xf1,0x10,0xe9,0xca, +0xc9,0x6b,0x53,0x82,0x57,0xc7,0xf1,0x0f,0xea,0x4b,0x99,0x34, +0x3b,0x2c,0x86,0xc7,0xe4,0xc6,0xae,0xee,0xcd,0x4d,0x1b,0xba, +0xa8,0x90,0x7e,0xbc,0xef,0x0f,0x8d,0x1b,0x94,0xcb,0x82,0x88, +0xcb,0x22,0xe3,0x8d,0x87,0xf6,0xb7,0x59,0xf3,0xb7,0xee,0x5d, +0xfd,0xb1,0x18,0x18,0x0e,0xcf,0xa2,0x36,0x51,0x69,0x3e,0x52, +0x71,0xac,0xec,0x94,0x3e,0x7f,0xcb,0x71,0xe0,0xd4,0x4d,0x33, +0xee,0x0e,0xfe,0x46,0xa0,0xb2,0x1d,0x96,0xfc,0x04,0x33,0xe1, +0xa0,0x49,0x2d,0xbf,0x18,0x57,0xa3,0xd2,0x3c,0xac,0xb1,0xe0, +0xbc,0x21,0x8c,0x68,0x6d,0xd9,0xb4,0x44,0x59,0xa5,0xc5,0x84, +0x7f,0x7c,0xe7,0x6b,0x98,0xd8,0xf1,0xf8,0x6d,0xe8,0x95,0x7a, +0x94,0xd5,0x57,0x8f,0x91,0xde,0xda,0x81,0x97,0x54,0x0f,0x50, +0xc4,0x8e,0x59,0xd0,0x46,0xda,0x38,0x65,0x26,0x2e,0xd7,0x86, +0x65,0x6c,0x08,0x2a,0x9b,0xe0,0x7c,0x7c,0x0f,0x67,0xb4,0x58, +0xf2,0x30,0x1b,0xf8,0x2e,0x58,0x99,0x00,0x3a,0x12,0xe3,0xe3, +0xbc,0xb0,0xf9,0x7e,0x6b,0x15,0x0d,0x43,0x7c,0x7d,0x0c,0xe6, +0x2c,0x65,0x68,0x3d,0x5e,0xd1,0x80,0x51,0xf4,0x3c,0x45,0x29, +0xed,0x6f,0x31,0x30,0x09,0xb4,0x14,0xd0,0x81,0x12,0x0a,0x9a, +0x89,0xe7,0xc9,0xb9,0x30,0xaf,0x0b,0x5e,0x61,0x9c,0xe0,0x8a, +0xdf,0x8a,0x57,0x58,0x9a,0x34,0x47,0x78,0x84,0x27,0x53,0x89, +0xb3,0x20,0x1b,0xf6,0x94,0xc0,0xc7,0x54,0x60,0xbd,0x2b,0xd8, +0x49,0xab,0xab,0x9f,0x96,0xc6,0x76,0x4f,0xe3,0x76,0x82,0x53, +0xe8,0xf1,0x14,0xe9,0x78,0x17,0x59,0xc0,0x1e,0xf0,0xd9,0xeb, +0xb7,0x3f,0x80,0x83,0x05,0xec,0x5f,0xfa,0x6a,0xd5,0x56,0x8e, +0x19,0x5a,0xea,0x1f,0x18,0xeb,0xab,0x7d,0xa3,0x1b,0x4a,0x28, +0x6c,0x60,0xbd,0x26,0xda,0xc3,0x09,0xda,0x4a,0xba,0xaf,0xd9, +0xc8,0xa5,0x67,0xd4,0x8e,0xaa,0x36,0x59,0xf0,0x77,0x3e,0xad, +0xfc,0xf4,0x12,0x4c,0xe7,0xfe,0x86,0xb2,0x81,0x11,0x5e,0x1d, +0xf7,0x31,0xf0,0x18,0xf6,0x11,0xb4,0x41,0x4f,0x4d,0xf0,0xc4, +0x3a,0x74,0xd0,0x14,0x12,0xfb,0x30,0x00,0xea,0x20,0xa6,0x8f, +0xe6,0x8a,0x36,0xff,0x3f,0x14,0x5b,0x13,0xd1,0xd8,0x80,0xcc, +0x5e,0x8c,0x3e,0x42,0x15,0xdb,0x17,0xf9,0xb7,0x0b,0xfa,0x0a, +0x38,0x03,0x30,0xc7,0x09,0xf8,0x93,0x0e,0xfc,0x84,0x27,0x71, +0x21,0x9b,0x41,0x63,0xf2,0xbb,0x4c,0x47,0x76,0x56,0xbb,0x12, +0x98,0xc1,0x77,0xdd,0xf8,0x1d,0x4c,0x00,0xe3,0x56,0xb6,0xdf, +0xf5,0xb6,0xeb,0x17,0x6e,0xb9,0x54,0xd0,0xc5,0xdd,0xc2,0x0f, +0xef,0x6b,0x3c,0xe7,0x30,0x06,0xed,0x08,0xb0,0x9d,0xb7,0x7a, +0x4b,0xef,0x52,0x52,0x2a,0x3b,0x70,0x57,0x0b,0xa6,0xeb,0x73, +0xe2,0x7a,0xcc,0x24,0xaa,0x2a,0x7b,0x8d,0x96,0x9b,0x97,0xea, +0xf3,0xdf,0x35,0x3e,0xef,0xbf,0x76,0x93,0x8a,0xb0,0x50,0xf2, +0xdc,0xe0,0x73,0xc3,0x67,0x47,0xa8,0x90,0xde,0x7c,0x7d,0xcb, +0xd5,0x6d,0x4d,0xdc,0x7f,0xb2,0x8d,0xe5,0xa8,0x3b,0x39,0x1d, +0x90,0x54,0xac,0x04,0x67,0x21,0x01,0x4a,0xf1,0x4f,0x36,0xfd, +0x72,0x5a,0x79,0x62,0xb1,0x6a,0x32,0x1f,0xe8,0xe0,0x7f,0xea, +0xdc,0x09,0x0e,0x5b,0xb1,0x14,0x1a,0x18,0x9a,0x8f,0x2f,0xd9, +0x82,0x17,0x8e,0x16,0x48,0x99,0xc9,0x6d,0x98,0xf9,0x75,0x2b, +0x1c,0xe6,0x5a,0xd0,0x87,0x51,0xcd,0xf7,0xf8,0x54,0x11,0x42, +0x98,0xb6,0x54,0x59,0xad,0x12,0x4c,0x64,0x35,0xb3,0xe5,0x50, +0x9e,0x1d,0xdd,0x2a,0x78,0x12,0x48,0x64,0x22,0x8e,0x87,0xeb, +0x04,0x1a,0x72,0x18,0xca,0x08,0xdf,0xc0,0x4e,0x82,0x3b,0xb1, +0x91,0x4d,0x6c,0x8b,0xe9,0x89,0x1a,0xe6,0xe0,0x63,0xec,0x21, +0x6d,0x27,0xbb,0xcd,0xca,0x4f,0xd4,0xd6,0xf1,0x36,0x75,0x3a, +0x8d,0x16,0x45,0xff,0x83,0x06,0x94,0x3a,0x8b,0xc7,0x7a,0x8c, +0xdf,0x70,0xcd,0x4f,0xb8,0x9f,0x68,0x8c,0xdc,0xed,0x67,0x47, +0x1d,0x70,0x09,0xc1,0xd8,0x91,0x89,0x10,0xcb,0x8a,0xdd,0x34, +0xe6,0xc3,0xc7,0x42,0x30,0x7e,0xcc,0xae,0x57,0x25,0xae,0xba, +0x0e,0x1a,0xa7,0x2c,0x38,0x31,0x59,0xed,0xcf,0x77,0x07,0xb1, +0x87,0x29,0xaa,0x2b,0x6c,0xce,0x6f,0xe6,0xf0,0xfe,0x42,0xe2, +0xde,0xe4,0x5a,0xef,0x54,0xad,0xe3,0xc2,0x57,0x19,0xcb,0xec, +0xb3,0xac,0xc6,0x22,0x3f,0x43,0xee,0x81,0x6c,0xef,0xe0,0xbd, +0x31,0x41,0xf5,0x48,0x6d,0x27,0xca,0xa4,0x42,0x92,0x5a,0x7b, +0x59,0xe1,0x3a,0xa6,0x90,0xd4,0x9e,0xf8,0x87,0x51,0xdf,0x70, +0xa3,0x15,0xba,0x02,0xcb,0x78,0x1b,0xbb,0xd9,0x38,0x3a,0x1e, +0x2a,0x3a,0x98,0x77,0x2c,0xd3,0xc9,0x88,0x1f,0xf6,0x1e,0xf4, +0xea,0xf3,0x38,0x6e,0xb5,0xde,0x19,0xdf,0x73,0x95,0x86,0x87, +0xe6,0x97,0xfc,0x56,0xf1,0x60,0xa0,0xcb,0xbd,0xdd,0xad,0xe5, +0x6c,0x69,0x1b,0x6f,0x91,0x6b,0x9a,0x63,0x24,0x2b,0xaf,0x2e, +0x6c,0xce,0xee,0xe7,0xa0,0x85,0x89,0x30,0xba,0xa0,0x19,0x60, +0xce,0x99,0x05,0x38,0x7b,0x6b,0xcc,0xc1,0x77,0x98,0x54,0x69, +0x1e,0xc1,0xcb,0xb6,0xfc,0x87,0x59,0x4a,0xa2,0x0a,0xae,0x20, +0xdd,0xf6,0x03,0xe6,0xed,0x66,0x35,0x8d,0xbc,0x5e,0x8b,0x76, +0x9d,0x66,0x25,0xa7,0x8d,0x59,0xc4,0x72,0x4c,0x45,0xec,0x57, +0xc5,0x83,0xac,0x72,0xa1,0xc7,0x13,0x45,0xa8,0x61,0xda,0xd2, +0x69,0x4c,0x7d,0xc1,0xaa,0xcb,0xe4,0x70,0x2a,0xdb,0x0b,0x07, +0xc8,0x80,0x5a,0xff,0xfe,0x86,0xbd,0xed,0x55,0xbc,0xc9,0x23, +0xad,0x5b,0x6a,0x03,0xdc,0xa8,0x1e,0x5e,0x24,0x77,0x6e,0x35, +0x3f,0x2c,0xfe,0x54,0xbf,0x80,0x3f,0x73,0xcc,0x64,0xb7,0x8a, +0x26,0xad,0xad,0x30,0xb2,0x88,0xf4,0x40,0x81,0x76,0x7f,0x0f, +0xc8,0x3a,0x51,0x76,0x57,0xe3,0x00,0x16,0x48,0x45,0x8c,0x3e, +0xc4,0x68,0xd3,0x24,0x88,0xe6,0x79,0x5d,0xe2,0x8e,0x7b,0x2c, +0xcc,0x8a,0x83,0x99,0x89,0xbf,0xa6,0x7b,0xb4,0xf2,0xe8,0x72, +0x1a,0x2b,0x2f,0x60,0xcc,0xa5,0x64,0x7d,0x1e,0x26,0x45,0xc2, +0xb4,0x28,0x98,0x12,0xc3,0xed,0x17,0x57,0xea,0x09,0x13,0xd8, +0x7d,0xc7,0x70,0x86,0x39,0xaa,0x9b,0xe4,0xd3,0xcf,0xbc,0x06, +0x61,0x46,0x7b,0xd3,0xb7,0x34,0x61,0x5d,0x3f,0x08,0xeb,0xe3, +0x99,0xc6,0x35,0x30,0xcb,0x08,0x82,0x54,0xf3,0xa9,0x3c,0xd2, +0x69,0xc5,0xd9,0x0d,0x7b,0xae,0x73,0x30,0x1f,0xf5,0x89,0x98, +0xa4,0x0f,0x34,0xdb,0xc7,0x89,0x7b,0xf6,0xa3,0xb9,0x45,0x36, +0x35,0x9a,0x73,0xcb,0xeb,0x57,0xb9,0x34,0xbf,0x00,0x0f,0x26, +0xf0,0x94,0xb7,0x8d,0xa7,0x03,0x07,0x4e,0x4c,0xe4,0xe9,0xc8, +0xb3,0xa1,0x67,0x39,0xe7,0x10,0xdf,0x00,0x9b,0x39,0x14,0x69, +0xa9,0x7a,0x72,0xe0,0xca,0x3c,0x2a,0x28,0x68,0x4f,0x56,0x8a, +0x2f,0x8d,0x6e,0x8d,0xba,0xc9,0xa1,0x3e,0x93,0x9c,0x9f,0x94, +0x47,0x33,0xd4,0x71,0xe0,0x8c,0xf7,0xf5,0xfe,0xbb,0x00,0xc2, +0xe7,0xa2,0x3f,0x09,0xfb,0x12,0xf4,0x28,0x54,0x60,0x0a,0x73, +0x3d,0x79,0x20,0xb5,0x21,0xcb,0xad,0x83,0x5f,0x6c,0x87,0xfb, +0x3d,0xf1,0x83,0xe0,0x14,0x5d,0xbe,0x3f,0xe6,0x5a,0xdc,0x10, +0xd5,0x34,0x13,0xd1,0x45,0x07,0x2c,0xd8,0xb3,0x3b,0xa9,0xdb, +0x2c,0xc4,0x49,0x75,0xc6,0xd2,0xee,0x43,0x93,0x9b,0xbe,0x4a, +0x7e,0x46,0xab,0xf6,0xe7,0x00,0xb4,0x33,0xf1,0xd2,0x26,0x95, +0x8a,0xb0,0x14,0xe7,0xd5,0xd7,0xe1,0x52,0x50,0xf2,0x4f,0x0e, +0xb9,0xe4,0xef,0x2f,0x4f,0xfd,0x27,0x8b,0xc8,0xd4,0x25,0xcd, +0xd3,0x9c,0x9d,0xdd,0xa6,0x24,0x7c,0xa9,0x22,0xbe,0x64,0xd1, +0x5d,0x68,0x25,0xe2,0xe1,0x61,0xe1,0xf0,0x5b,0x61,0xb0,0x11, +0x4b,0x24,0x74,0x4b,0xc2,0x40,0x02,0x76,0x89,0x54,0x8c,0x09, +0x03,0xf8,0x58,0xcc,0x23,0x06,0x66,0xbb,0x4d,0x0f,0x3a,0x19, +0x54,0x5a,0xd5,0x9f,0x6c,0xe3,0xe0,0x3e,0xfc,0x1d,0x7b,0xef, +0xa9,0xec,0xc5,0x4a,0xf1,0x11,0x63,0x1d,0x66,0x7d,0xc1,0x2a, +0x3c,0x81,0x46,0xa9,0x75,0xe9,0xb0,0x24,0x17,0x3e,0x2c,0x09, +0xea,0xe6,0xf7,0x79,0x6f,0xf1,0xdd,0xe0,0xcf,0x81,0x1b,0x68, +0xb1,0xdf,0xe2,0x2a,0x58,0xb7,0x04,0x22,0x8c,0x72,0xbb,0xf9, +0xf9,0xb2,0x4d,0x97,0x0f,0x5e,0xb9,0x55,0x7a,0xbd,0xbe,0xb3, +0x81,0xc3,0x09,0x10,0x45,0xc4,0xec,0xef,0x84,0x6c,0x06,0x17, +0x4d,0x5e,0x2a,0x66,0xff,0x4c,0x99,0xec,0xf7,0x91,0x99,0x14, +0xfa,0x25,0x12,0xf4,0xa5,0x4e,0xa6,0x3b,0x6a,0x07,0xb1,0x44, +0x2a,0xc2,0x74,0x20,0x8c,0x42,0xbf,0x98,0xd6,0xa6,0xca,0xb7, +0xc6,0xb7,0xde,0x2f,0xaf,0x83,0xc7,0x15,0x4d,0xcb,0xda,0xf6, +0x50,0x92,0xb9,0xde,0x25,0xba,0x32,0xe9,0xf9,0xa9,0x05,0x29, +0x45,0x1a,0xc9,0xbc,0xcf,0xc9,0xf3,0x4e,0xe7,0xce,0x70,0xf8, +0x87,0x1e,0x5c,0x63,0x8e,0xec,0x5f,0x61,0x88,0x9b,0xcd,0xf2, +0x0c,0xf8,0x86,0x94,0x9a,0xd4,0xaa,0x34,0x0e,0xbf,0x18,0xe8, +0x06,0x0f,0x3d,0xf6,0x50,0xbe,0xeb,0x43,0x45,0xe8,0x63,0x5a, +0xb2,0x52,0x6b,0x94,0xfe,0x60,0x35,0x33,0xe5,0x70,0x3a,0x0e, +0xb3,0xf6,0x81,0x49,0xe5,0x4a,0xad,0xd0,0xcd,0x62,0x9a,0x60, +0x48,0x9a,0x0c,0x7b,0x2c,0xef,0xd8,0x71,0x68,0x7f,0x5f,0x73, +0x0f,0x1e,0x65,0x86,0xaf,0xb4,0xd7,0xd7,0xb6,0x73,0x68,0x44, +0x99,0xee,0x2b,0xf0,0xd8,0xcc,0x42,0xd7,0x57,0x64,0x33,0x86, +0x7d,0xc5,0xe2,0x15,0x94,0x27,0xe0,0xb1,0x0e,0x3d,0x18,0xb8, +0xf2,0x82,0x40,0x18,0xd5,0x58,0xcc,0xb8,0x69,0x8f,0x60,0xc9, +0x4d,0x5a,0x84,0xea,0x40,0xe8,0xe1,0xc1,0x5b,0x50,0x22,0x15, +0x63,0x1d,0x68,0xe8,0x8d,0x7b,0x88,0xa8,0x80,0xba,0x03,0xa0, +0x38,0xe2,0x81,0x8a,0x03,0xa0,0x2b,0x2e,0x7f,0xaa,0xca,0x60, +0x14,0x9e,0x21,0xa2,0x21,0x6e,0xd4,0xfe,0xf3,0xc3,0x1e,0xdc, +0x24,0x18,0xb2,0xaa,0x3a,0x64,0xa5,0xa8,0xf7,0x3d,0x2b,0xe8, +0xe1,0x52,0xb2,0x42,0xd4,0xfb,0x41,0x3a,0x8a,0x21,0xa2,0xde, +0x2f,0x82,0x9e,0x14,0xe0,0x47,0x16,0x90,0x41,0xc8,0x51,0xeb, +0x1f,0x84,0xac,0x4e,0xcc,0xba,0x35,0x26,0x3b,0x68,0x71,0x49, +0x1f,0x2e,0xa9,0xb1,0xe0,0x2a,0xde,0x26,0x02,0xd3,0x29,0x32, +0x77,0x84,0xb9,0x9d,0xe2,0xdc,0x5b,0xf0,0x1c,0xd4,0xf1,0xf9, +0x35,0x61,0x75,0xd7,0xe8,0xaf,0x7a,0xc2,0x27,0x2a,0x78,0x07, +0xd5,0xe1,0xce,0x61,0x71,0xa6,0xbe,0x30,0xf3,0x20,0xfe,0xae, +0x0f,0xbf,0xef,0x14,0xd7,0xe9,0xfe,0x39,0xe7,0x7f,0x73,0xf6, +0x1e,0xd0,0x51,0x5c,0xcb,0xba,0x30,0xc6,0xa8,0xbb,0x31,0x26, +0x38,0x6c,0xdc,0x12,0xb6,0x44,0x06,0x93,0x73,0x8e,0x02,0x81, +0x50,0x0e,0x23,0x8d,0x72,0xce,0x39,0x27,0x94,0x00,0x25,0x30, +0x42,0x39,0x87,0x19,0xe5,0x9c,0x73,0x4e,0x28,0x90,0x73,0x34, +0x26,0xd8,0x80,0xb1,0x71,0x4e,0x35,0x3a,0xd5,0xf2,0x79,0xdd, +0x83,0x7d,0xef,0x7d,0xf7,0xfc,0x6b,0xf9,0xad,0x7f,0xc1,0x2a, +0xf5,0xea,0x99,0x9e,0x99,0xde,0xbd,0xab,0xea,0xfb,0x6a,0xd7, +0xae,0x1a,0xe2,0x54,0x29,0xbc,0x26,0xb3,0x22,0x90,0xb6,0x05, +0xd3,0x28,0xd9,0x93,0xf9,0x58,0xfa,0x25,0x94,0xfe,0xaf,0xfb, +0x12,0x9e,0xcc,0x91,0x89,0xeb,0x50,0x25,0x08,0xf9,0x7d,0x71, +0xd5,0xfc,0xaf,0xc4,0xdb,0x93,0xaa,0x70,0x9b,0xe6,0x59,0x39, +0xe1,0x26,0x1e,0xca,0x26,0x28,0x6e,0x02,0xe7,0x13,0xd9,0xc4, +0x76,0x6e,0x82,0x92,0x1d,0x40,0x19,0x71,0x8e,0x4e,0xae,0x53, +0xb9,0x49,0xc3,0xcc,0x42,0x98,0x55,0xf1,0xaa,0xd9,0xa3,0x87, +0xdd,0xec,0xb4,0xd2,0x1f,0xdf,0x0e,0x65,0x60,0x9a,0x36,0xc6, +0xd1,0xfa,0xc5,0xbe,0xd7,0x95,0x21,0x91,0xea,0xc8,0xcb,0x6b, +0x53,0x79,0x4e,0xeb,0xf2,0x0f,0xe8,0x6d,0x1e,0x2a,0x09,0xf5, +0xbc,0x33,0x07,0x31,0xf3,0xb1,0x36,0x4a,0x28,0xe7,0x38,0xe7, +0x04,0x97,0xf8,0x34,0x5e,0x5b,0x37,0xe6,0xc3,0xb2,0x22,0x60, +0xcb,0x4f,0xf5,0xb3,0x7b,0xc2,0xd7,0x47,0xac,0x8d,0x62,0xe6, +0xc8,0x2a,0xe1,0x67,0xa1,0x96,0x15,0x0d,0x86,0x43,0x68,0xf8, +0xba,0xff,0x31,0x94,0xcb,0x83,0x7c,0xbc,0x45,0xfd,0x42,0x7b, +0x27,0x96,0x0b,0x42,0xb0,0xa8,0xfb,0xcc,0xb0,0x04,0x8d,0x45, +0xe0,0x87,0x7d,0x38,0x8d,0xca,0x31,0x50,0x78,0x2d,0x84,0x43, +0x78,0x7a,0xd0,0x0b,0x16,0x34,0x9c,0xc0,0x45,0xe4,0xe1,0x6f, +0x6d,0x30,0xab,0x18,0x16,0x32,0x03,0x1c,0x6b,0x00,0x0f,0xe8, +0x60,0xa4,0x5d,0x96,0x6b,0x6e,0x30,0x78,0xea,0xfa,0x75,0xc0, +0x4f,0xfa,0x61,0x6c,0x19,0x52,0x2d,0x4b,0x2e,0xaf,0x15,0x69, +0xa9,0xea,0xaf,0x31,0x6a,0x32,0x66,0x5f,0x0d,0xdf,0x1e,0x1d, +0xbd,0x34,0xa0,0x79,0x45,0xef,0x0b,0x51,0xe3,0x10,0xbb,0x63, +0x48,0x73,0xd4,0xf4,0x02,0x83,0xf1,0x6a,0x24,0x64,0xc4,0xe7, +0xbc,0xc7,0x90,0xa9,0x3f,0x5b,0x6d,0x5c,0x62,0x28,0xd5,0x65, +0xf0,0x3e,0xe8,0x93,0x90,0x7d,0x4e,0x5b,0x0d,0xd5,0xfa,0x5c, +0xd8,0x91,0xeb,0x2d,0x3f,0x4a,0xbf,0xe0,0xed,0x86,0x99,0x30, +0xbe,0x7b,0xf1,0x9a,0x50,0xfd,0x32,0x44,0x04,0x21,0x2b,0xc7, +0x7f,0x80,0x6b,0x2b,0x27,0x7e,0x80,0x84,0x61,0x4c,0xa0,0x30, +0x91,0x87,0x57,0xdc,0x1c,0xfd,0xc9,0x7b,0xa3,0x9c,0xf2,0x63, +0x2d,0x0a,0x2d,0xf0,0x28,0xf1,0xa2,0x77,0xdb,0xb9,0xe0,0x47, +0x26,0xca,0x95,0xa2,0xfb,0x95,0xbd,0x3c,0xfc,0x56,0x4c,0x4b, +0x4b,0x39,0x93,0x19,0x03,0xeb,0x77,0xb1,0x55,0xfd,0xf8,0xf1, +0xcd,0x08,0x79,0x5e,0x96,0x62,0x44,0x44,0x4c,0xa2,0x42,0x61, +0x65,0x5a,0x45,0xaf,0x52,0x05,0x0d,0xdf,0xcc,0xf7,0xa5,0x77, +0x3b,0x39,0xf3,0x50,0x53,0xb9,0x4a,0x7c,0xab,0xbc,0xbb,0xa2, +0xa2,0x82,0xbf,0x2e,0x59,0xb8,0x6e,0xdf,0x3a,0xb6,0xbe,0x17, +0xd7,0x3d,0x89,0x48,0x3b,0xf5,0x59,0x34,0x7f,0x5d,0x38,0x7f, +0x5d,0x5e,0x79,0x66,0x55,0x9f,0x52,0x39,0x8d,0x85,0x18,0x45, +0xf6,0x72,0x8b,0xf5,0x65,0x8b,0xf1,0xc0,0x25,0x38,0x20,0xdb, +0x30,0xca,0x6d,0x78,0x40,0x0b,0x50,0x93,0xe3,0x39,0xab,0x64, +0xcf,0xc4,0x43,0xb9,0x89,0x7b,0x2c,0x5f,0x98,0xe4,0x85,0x60, +0xfc,0xf6,0xd0,0x7d,0x38,0x4c,0xa2,0x73,0x4f,0x9e,0x8b,0x3a, +0x15,0x14,0xce,0xc6,0xf2,0xe0,0x6b,0xc1,0x10,0x2e,0x80,0x0f, +0xf4,0xf1,0x03,0x3c,0x60,0x04,0x9b,0xa8,0xc8,0x4f,0x8d,0xf9, +0xc3,0x19,0x38,0xa3,0xd9,0x9a,0xfd,0xe9,0x8f,0xba,0x07,0x99, +0x2f,0x98,0x54,0x4e,0x65,0x14,0xa6,0xa8,0xd4,0x94,0xc4,0xa4, +0x58,0xe5,0x5f,0x71,0x79,0x77,0x9d,0x82,0x2c,0x1d,0x16,0x10, +0xf5,0x7b,0x06,0xcf,0x3d,0xe1,0x6d,0x06,0xdd,0x0d,0x60,0x1f, +0x55,0xbb,0xbc,0x7f,0xf7,0xf5,0x5d,0x0c,0x67,0x37,0xff,0xca, +0xd3,0xee,0x2f,0x2b,0xbe,0x34,0x2a,0x66,0x3d,0xd7,0xda,0x1e, +0xd4,0x56,0x65,0x40,0x48,0x73,0xac,0xb4,0xae,0x31,0xad,0x36, +0xde,0x15,0xb1,0x32,0x7a,0xe5,0xc9,0x61,0x98,0xd6,0x0b,0x73, +0x9a,0x60,0x96,0x61,0x3e,0x6b,0x8b,0x1f,0x1a,0xe1,0x47,0x7a, +0xa8,0xb0,0x21,0x96,0x4d,0x37,0x04,0xe5,0x0c,0x38,0x94,0x0b, +0x4b,0x2b,0x14,0xb3,0xfd,0xb3,0x03,0xb2,0xfc,0x07,0xaa,0x58, +0xf1,0xb7,0x06,0x5f,0x1b,0xdf,0xfb,0xcb,0x47,0x4d,0x40,0xa9, +0xa0,0x61,0x79,0x03,0x98,0x77,0x45,0xef,0x18,0x96,0x0a,0xe2, +0x8c,0x18,0xce,0xe8,0xd0,0xb2,0xeb,0xd8,0x42,0x1e,0xf7,0xee, +0xf8,0x03,0x7f,0x1c,0x96,0xad,0xef,0xe5,0xd6,0x9f,0xd7,0x35, +0xe0,0x54,0xcc,0x64,0x2a,0x22,0xfc,0xd6,0x02,0xbe,0xd5,0xe5, +0x36,0x99,0xc9,0x36,0xe9,0x08,0xc7,0x5d,0x54,0x68,0x70,0x70, +0x50,0x40,0x20,0x83,0x6d,0x26,0x10,0x4e,0xb9,0x78,0x39,0x78, +0xd9,0x7a,0xdd,0x88,0x7a,0x19,0xf6,0x63,0xc8,0xca,0x00,0x9c, +0x1b,0x89,0x9b,0x62,0x73,0x8c,0x59,0x30,0x4d,0x86,0x8d,0xc5, +0x30,0xbb,0x0b,0x66,0x06,0xc0,0x1c,0x5f,0xa0,0x7c,0x4a,0xfb, +0xd9,0x15,0x45,0x2b,0xa4,0xab,0x0b,0x47,0x6b,0x7a,0x9a,0x85, +0xed,0xe2,0x3b,0xfa,0xb9,0x74,0x4a,0x2a,0x2d,0x28,0xca,0x93, +0x30,0x32,0x96,0xd2,0x05,0x4f,0xa2,0x8b,0x2d,0xe3,0x34,0xb4, +0xe0,0x5b,0x44,0x07,0x5b,0x26,0x68,0x29,0xde,0x27,0x9b,0xf2, +0x76,0xe6,0x1e,0xce,0x2c,0x2d,0x2c,0x95,0x14,0x4b,0x19,0x78, +0x40,0xd9,0xda,0x98,0xba,0x6a,0xfa,0xfd,0x1d,0x51,0x3a,0x86, +0x55,0x57,0x78,0x21,0x28,0xb0,0xc1,0xc4,0x79,0xa8,0x12,0x84, +0x5c,0x81,0xe1,0x88,0x00,0x83,0xf0,0xa7,0x0b,0xb2,0xf9,0xbd, +0xdc,0xfc,0x0b,0xba,0xda,0xdc,0xdb,0x66,0xb2,0xb7,0xb5,0xf1, +0x95,0x19,0xbc,0x3a,0xc6,0xad,0x31,0xf9,0xd7,0x07,0xfd,0xdc, +0xfe,0x2b,0x34,0x9e,0xe7,0x1a,0xde,0xb4,0xcd,0x7d,0x1b,0xad, +0xe9,0x5c,0x13,0x05,0xd0,0xe4,0x9d,0x4c,0x7e,0x97,0x0a,0xb4, +0x4c,0xa9,0xe2,0x9f,0x34,0x8c,0x81,0x3f,0xc1,0x33,0x2f,0xe0, +0x0c,0x35,0xba,0x91,0xbc,0x80,0xdc,0x8d,0xbc,0xb7,0xd1,0x9b, +0x7c,0x4c,0xf4,0x34,0x71,0xf0,0x12,0x2f,0x82,0xc5,0x10,0x6c, +0x39,0xd6,0x05,0x83,0x82,0x88,0x1f,0xc0,0x78,0x8a,0x1b,0xc0, +0xf7,0x88,0xd9,0xe4,0x2c,0xcd,0x29,0x7b,0xd3,0x49,0x7b,0xf5, +0xa9,0x59,0x66,0x93,0xc7,0x80,0xf9,0xad,0x6f,0x31,0x28,0xd0, +0x53,0x22,0x2e,0x9e,0xf0,0xa0,0xf4,0x91,0x2a,0x76,0xa0,0xcb, +0x38,0x6c,0x87,0xe3,0xe8,0x39,0x0e,0x9e,0x90,0xb2,0x08,0xb7, +0xd1,0x39,0xe6,0xf2,0xe5,0xab,0xc2,0x02,0xfe,0xeb,0x55,0xf0, +0xca,0x6d,0x78,0x8d,0xd3,0x78,0x97,0x3f,0xf5,0x0a,0x37,0xd1, +0xff,0x78,0xbf,0xcb,0xb8,0xbd,0xa4,0x8f,0x7b,0x7c,0x43,0xf6, +0x98,0x97,0x57,0x64,0xbf,0xf7,0x4f,0x6d,0xc2,0x29,0x54,0x12, +0x83,0x12,0xba,0xd1,0x56,0x31,0x56,0x71,0xb6,0xf1,0x99,0x86, +0xac,0x90,0x56,0xba,0xa1,0x0a,0xe6,0x36,0x44,0x0f,0xb0,0xc7, +0x42,0x76,0x87,0xed,0x8a,0x60,0xc0,0x06,0xb6,0xd0,0x3f,0xe2, +0x12,0x58,0xbf,0x02,0x0a,0x6c,0x72,0x87,0xd9,0x45,0x79,0x9b, +0x4b,0x54,0xeb,0x2e,0x56,0x8e,0x37,0xf4,0xb7,0xd9,0xb5,0xb0, +0x26,0x96,0x87,0xec,0x0f,0x79,0x1b,0xd4,0x59,0xb7,0xba,0xf4, +0x32,0x32,0xc7,0x81,0x29,0xcd,0x3b,0xf2,0x3c,0x86,0xa3,0xe4, +0xff,0x83,0x8a,0x09,0x91,0xc5,0xc3,0x1e,0x1b,0x79,0xf3,0x6f, +0x41,0x21,0x1d,0x8d,0x1f,0x6e,0xc1,0xf7,0x95,0x87,0x5c,0xee, +0xc3,0xbb,0xc5,0xf0,0x4e,0x12,0xbc,0xaf,0x28,0x5b,0x45,0x39, +0x69,0x9a,0xe8,0xa9,0x99,0x68,0x77,0x88,0x07,0xcc,0x2f,0x9a, +0xbb,0xb0,0x9d,0x3a,0x83,0xe2,0x09,0x2b,0x0d,0x87,0xbd,0xae, +0xeb,0x7c,0xca,0x0c,0xd9,0x9f,0x6a,0xbe,0x6a,0xbe,0xd3,0x7b, +0xcf,0xfc,0x2b,0xc7,0x9f,0x5d,0x4b,0x86,0xd9,0x75,0x95,0x7b, +0x6b,0xd5,0x9b,0xef,0x8e,0x8d,0xde,0x6c,0x7d,0xc6,0x74,0x61, +0x28,0x7c,0x04,0x3e,0x74,0xa4,0xf7,0x71,0x3f,0x1f,0xf7,0x7e, +0x5f,0xb6,0xaa,0xa9,0xb8,0x23,0xa7,0x8e,0xe9,0xc3,0xfa,0x07, +0xb5,0x34,0x37,0x6f,0x05,0xb1,0x68,0x51,0xed,0x32,0xac,0x72, +0x31,0x65,0xc7,0x3d,0x2e,0xda,0x0d,0xd9,0x32,0xfc,0xdd,0x33, +0x84,0xbf,0x46,0x0f,0x3f,0xa2,0xb9,0xbe,0x3e,0x72,0xc5,0x65, +0xd4,0xfd,0xa2,0xb9,0xbc,0x30,0x87,0x66,0xa3,0x76,0x1d,0x03, +0x6a,0xe8,0x41,0xc4,0x5b,0x77,0x2d,0x39,0xac,0xd1,0x67,0xc3, +0xde,0xb9,0xf5,0x08,0x66,0x74,0x3f,0x62,0xfe,0xef,0x34,0x8d, +0x33,0x22,0x38,0xb3,0x73,0xe2,0x0b,0x90,0x08,0x42,0x1e,0x1d, +0x9c,0x7a,0x0b,0x8f,0x13,0x11,0x0c,0xe2,0xbb,0x58,0x67,0x08, +0x75,0xb4,0x4b,0x82,0x47,0x9c,0xb7,0xf2,0x8a,0x80,0x55,0xc7, +0x91,0x3e,0x91,0xa1,0xcf,0xfe,0x90,0xf5,0x7d,0xde,0xb3,0x42, +0x57,0x35,0x35,0x53,0xfc,0xc4,0xac,0x5c,0xc4,0xc2,0xf1,0x2f, +0x6e,0xfe,0x0e,0x96,0x4a,0xd0,0xaf,0xb3,0x97,0x96,0xf5,0x62, +0x38,0x19,0xc6,0x4e,0x98,0x0d,0x17,0x87,0xf1,0xe2,0x43,0xed, +0xa9,0x9d,0x17,0x40,0x15,0xee,0x8e,0xe0,0x5d,0xf8,0x84,0xfe, +0x47,0xaa,0x6b,0x29,0xfa,0x8b,0xea,0xd6,0xf6,0xb2,0xa6,0x4d, +0xfb,0x3b,0xf4,0xcb,0x19,0x59,0x39,0xc7,0x08,0x5b,0x4d,0xa5, +0x23,0xdc,0x03,0x43,0x38,0x87,0xf5,0x58,0x69,0x08,0x95,0x98, +0x78,0x11,0x12,0xa1,0x7b,0x84,0xb6,0xbd,0x4b,0x5c,0xce,0x9b, +0x5d,0xb5,0xed,0x31,0x73,0x63,0xbb,0xc5,0x9d,0x5a,0xb5,0x06, +0x0c,0xa7,0x08,0xd6,0xc4,0x5b,0x64,0xae,0x69,0x66,0xd5,0x65, +0xcf,0x76,0x76,0x0f,0x5d,0xaf,0x1a,0x63,0x30,0x05,0x09,0x4f, +0x79,0x8f,0x35,0x68,0x54,0xbb,0xfe,0x45,0x79,0x2d,0x19,0x9e, +0x92,0xbe,0x20,0x77,0xaf,0x3e,0xfd,0xb5,0xf7,0x9e,0x55,0x23, +0x2b,0xda,0xbd,0xe3,0xd3,0x43,0x7a,0xff,0x8b,0x4e,0xfc,0x77, +0x06,0x00,0x2f,0xe4,0xf4,0x07,0x6d,0xa6,0x4e,0x12,0xf3,0x13, +0x69,0xfc,0x3c,0xfe,0x14,0xd2,0xe8,0x02,0xb1,0xc2,0x33,0xea, +0x7e,0x6d,0xf3,0xa5,0x4c,0x95,0xcc,0xcb,0xc9,0xf0,0xee,0x19, +0x50,0x62,0xb8,0x83,0x54,0x7a,0x41,0x6a,0x41,0x6a,0x21,0x6f, +0xc3,0x3c,0xd6,0x1e,0x58,0xba,0xef,0x58,0x9b,0x35,0x3b,0xd8, +0xdd,0x7f,0xa1,0xf5,0x06,0x23,0x5b,0x48,0xed,0x4a,0x58,0x74, +0x42,0x5f,0xd9,0x2a,0x26,0x3c,0xd8,0x74,0x81,0x3a,0xf8,0xe3, +0x80,0x21,0xc4,0x22,0x8d,0x4d,0xe8,0x4c,0x6d,0xab,0x08,0xf9, +0x5c,0x59,0xb6,0x9a,0xea,0xcd,0x97,0x76,0xaa,0xfc,0x44,0xeb, +0xf1,0xc4,0x68,0x3e,0xcd,0x5d,0x95,0x65,0x12,0xb3,0xa6,0x7d, +0xfc,0x70,0xb8,0x9a,0xb2,0x6f,0x06,0x88,0xc1,0x18,0x55,0x72, +0xcd,0x75,0xdc,0xfd,0xb2,0x45,0x7d,0x2f,0xcb,0xdf,0x58,0xa3, +0x66,0x2d,0x53,0xc8,0xa5,0x90,0x87,0x37,0x9e,0xc3,0xf4,0xfe, +0x87,0x96,0x75,0xac,0xfe,0xf6,0x2d,0xcb,0x0f,0x68,0xfd,0x6d, +0x4c,0xfe,0x4e,0x0b,0xe2,0x01,0xe4,0xfe,0x89,0x7b,0x50,0x25, +0x08,0x79,0x78,0x9a,0xbb,0xc5,0xa9,0x11,0x9c,0x11,0x8f,0x8a, +0x07,0x70,0x9a,0x72,0x9f,0xbd,0xc2,0x23,0x98,0x93,0x0e,0x8b, +0x81,0x55,0x02,0x67,0xf0,0xe3,0xb1,0xc2,0x1a,0x5a,0x62,0x20, +0xb4,0xa5,0xe8,0xcb,0x95,0x74,0xab,0xc8,0xee,0xe2,0xb7,0x42, +0x92,0x6d,0x0e,0xc1,0x77,0x63,0xf1,0xc3,0x5d,0xa8,0x20,0x5c, +0xf2,0x05,0xcc,0xcb,0x81,0x79,0xf0,0xa9,0x70,0x49,0x30,0x7f, +0xc9,0x3a,0xf9,0x25,0xf3,0xf9,0x4b,0x84,0x7e,0x0e,0x0f,0xf1, +0x47,0x1a,0x0f,0x62,0x04,0xb1,0x69,0x34,0x6a,0xb2,0x28,0x77, +0xb1,0x65,0xbb,0x7c,0x87,0x1c,0xdb,0x1c,0x19,0x99,0x67,0x1b, +0x7f,0x4e,0xf4,0xdf,0xe7,0x3a,0x1c,0x19,0x6e,0x39,0x2e,0x17, +0x4e,0xb6,0x5a,0x54,0xf0,0x27,0x3b,0xbd,0x47,0xec,0x84,0x37, +0x7a,0x74,0x12,0x9b,0x06,0xa3,0x16,0xfe,0x9c,0x0d,0xdb,0xe5, +0x3d,0xe4,0xc0,0x9f,0x13,0xd6,0xaa,0xff,0xe0,0x27,0x53,0x95, +0x30,0x99,0x84,0x3b,0x79,0xaa,0xb3,0x0d,0xab,0x04,0x21,0x84, +0xe0,0xf9,0xc9,0x14,0x88,0x1c,0x01,0x8d,0x09,0x78,0xe7,0x8b, +0x87,0xbf,0x31,0x3f,0x53,0x4f,0x96,0xc2,0xec,0x03,0xa0,0xae, +0x51,0x36,0xc8,0xe2,0xba,0xa1,0xa5,0xe7,0xf7,0x3e,0xe4,0x2d, +0xae,0xb0,0xea,0x51,0x58,0x9b,0x57,0x97,0xd3,0xa8,0x93,0xc9, +0x86,0xda,0x86,0x38,0x06,0xba,0x30,0x38,0x25,0x82,0xdb,0xd4, +0x91,0xdd,0x2b,0x75,0x71,0xbb,0x88,0x91,0x3d,0x2f,0x12,0x52, +0x9d,0xa4,0x99,0x34,0x28,0xe8,0xe0,0x74,0x3a,0x02,0x13,0x0c, +0xe1,0x14,0x1d,0x71,0xd8,0xda,0x14,0xe7,0x99,0xd5,0xf2,0xce, +0xe0,0xe3,0xd1,0xd1,0x8b,0x79,0x3f,0x33,0x50,0x86,0xde,0x13, +0xe0,0x0d,0x9f,0x8d,0xe0,0x67,0x30,0x4f,0xbe,0x94,0xfe,0x13, +0xf9,0x3b,0x84,0x37,0x84,0x59,0xcf,0xe4,0x2b,0x04,0xba,0x5b, +0x85,0xfa,0x21,0x71,0x1b,0x68,0x08,0x4d,0xe1,0x3d,0xc2,0xe7, +0x14,0xae,0xc2,0x59,0x87,0xb1,0x7b,0x9f,0x72,0x91,0x1e,0xa4, +0xdd,0x82,0x15,0x37,0x72,0xe1,0x23,0xc5,0x54,0x2a,0x0f,0x15, +0x61,0xe3,0x51,0xc8,0x39,0x5c,0x34,0xca,0x62,0xcf,0x5d,0x54, +0xba,0x0d,0xab,0x94,0x70,0x19,0xb4,0x13,0xb5,0xd0,0xbd,0x27, +0x70,0x56,0x1c,0x83,0x32,0xa8,0x19,0x44,0x1f,0x98,0x01,0x0e, +0xfd,0xe8,0xf0,0x92,0x7e,0x9d,0x7c,0x35,0x7d,0x2c,0x8f,0x01, +0x17,0x7e,0x4e,0x43,0xb3,0x4c,0x01,0xbb,0x8d,0x21,0x6a,0x39, +0xfa,0x99,0xf0,0xc0,0xe9,0x6d,0x0c,0xfe,0x2b,0x3d,0x4b,0xf7, +0x00,0x4a,0xef,0xf2,0x42,0x88,0xd7,0x1c,0x18,0xbf,0x0b,0x52, +0x0d,0x63,0x0d,0x39,0x93,0x53,0xc3,0x0e,0x31,0x88,0xa9,0x10, +0xed,0xa3,0x76,0x38,0xdf,0x45,0x68,0x33,0xb1,0xb0,0xe1,0xe5, +0xa5,0xa2,0xaf,0x18,0xf8,0x40,0x93,0x12,0x95,0x85,0x8e,0x2a, +0xc3,0xc7,0x54,0x67,0x66,0x7e,0x93,0x4a,0x3b,0x6d,0x9c,0xa5, +0xa0,0xcb,0xcf,0x4b,0xdf,0x53,0xc9,0xa5,0x2a,0xe7,0x21,0x60, +0x00,0x2f,0xdf,0x80,0xf2,0x01,0x2c,0x1f,0x1e,0xbc,0x0b,0x79, +0x43,0x98,0x27,0xd4,0x56,0xdc,0x4f,0xce,0x7b,0x9c,0x77,0x1c, +0xb0,0xaf,0xef,0x60,0xcd,0xda,0x34,0x5b,0xc5,0x15,0xcc,0x5e, +0x8c,0x24,0x13,0xee,0x43,0x1e,0x17,0xac,0xea,0x7a,0x58,0xfd, +0x0e,0xbd,0x7a,0xdd,0x6a,0x66,0x32,0x4f,0xe8,0xd2,0x72,0x9d, +0xca,0x97,0xe4,0x48,0xb3,0x8a,0xc5,0xf9,0xac,0xe9,0xf6,0x3d, +0x1a,0xf8,0xb6,0x79,0xb9,0x15,0xdb,0x51,0xd8,0x56,0xdc,0x54, +0xde,0xe0,0xd6,0xe8,0xdd,0xe2,0xbf,0xc3,0x73,0x45,0x00,0x2a, +0x44,0x0a,0x45,0x51,0xe6,0xe7,0xc0,0xcc,0xca,0xef,0xdb,0xbe, +0xb2,0xff,0xc9,0x0f,0x3e,0x0c,0xca,0xe7,0x1f,0xe6,0xb4,0x82, +0x2d,0x85,0xaa,0x15,0xb7,0x9a,0xc7,0xba,0x5b,0x86,0x98,0xa9, +0x39,0x3d,0xc4,0x76,0xfb,0x11,0x9c,0xa6,0xaf,0x31,0xe0,0xc0, +0x4e,0xdc,0xbe,0x06,0x33,0x9a,0x1e,0x31,0xe0,0xea,0x44,0xd2, +0xd2,0x14,0xa0,0x86,0x72,0x76,0x12,0xbb,0x6a,0x78,0x9a,0x95, +0x5a,0x57,0xd9,0x35,0x31,0xff,0x84,0x87,0x6e,0x60,0x35,0x89, +0xce,0x3a,0x71,0x36,0x3a,0x3a,0x3c,0x82,0x8d,0x7d,0x0c,0x5b, +0xcf,0xe3,0x56,0x60,0x79,0xc8,0x8c,0x46,0x06,0x70,0x84,0xf2, +0x5f,0xac,0x89,0x33,0x91,0x5a,0xdc,0xc8,0xff,0xac,0x59,0xa0, +0xd0,0xf1,0x43,0xc6,0x4f,0x3c,0x1e,0xda,0x32,0x21,0x7b,0x8b, +0xca,0x4c,0x3e,0x9b,0x7a,0x4a,0x19,0x66,0xe2,0xbc,0xb6,0x36, +0x05,0x99,0x05,0x98,0x90,0xf3,0x18,0x04,0xac,0x2e,0x7f,0xe9, +0x0a,0x03,0x60,0x69,0x1f,0x9c,0xbe,0x1f,0xe7,0xe2,0x9c,0x25, +0x42,0x82,0x25,0x0b,0xef,0xf4,0xff,0x92,0x05,0xd3,0xf9,0x8b, +0xf7,0x8d,0xcb,0xf6,0x09,0x0f,0xff,0xed,0xf3,0xab,0x40,0x11, +0xe7,0x36,0xf0,0x34,0x78,0xe6,0xef,0xdb,0x60,0xb6,0x3b,0xbc, +0xc5,0xff,0xda,0x7f,0x4f,0x2a,0xf1,0xe4,0x2b,0xf3,0xe0,0xd8, +0x1d,0x28,0x1e,0xc4,0xe2,0xab,0x7a,0xea,0x98,0x79,0x55,0x57, +0x1d,0x53,0x8c,0x21,0xe5,0x20,0x0d,0x6b,0x39,0x29,0xc1,0x81, +0xdf,0x61,0x60,0x10,0x07,0x7e,0x86,0x61,0x08,0xc5,0x7f,0x4f, +0xa9,0x4e,0xf0,0x44,0x74,0x80,0x1a,0x82,0x9b,0x44,0xf6,0x31, +0x04,0x72,0x1f,0x1b,0xc1,0x13,0xfe,0x47,0x3f,0xa1,0xf0,0x6d, +0x78,0x97,0xf0,0x68,0x2e,0x0e,0x3e,0xa0,0x27,0x1b,0xb9,0xfb, +0x64,0x5f,0xb1,0x66,0xb9,0x61,0xdd,0xcd,0xa1,0x81,0xcb,0xe5, +0xf7,0x99,0x5e,0x6e,0xa7,0x11,0x00,0xed,0xad,0x6d,0x69,0xa2, +0x63,0x23,0x6e,0xb6,0xee,0xb6,0x1b,0x35,0x77,0x65,0x5b,0x44, +0xed,0xe6,0x7d,0xf6,0x9a,0x2e,0x07,0xbc,0xb7,0x07,0x97,0x18, +0xb2,0xaf,0x8a,0x9f,0xd6,0xdd,0xea,0xb8,0x6c,0x73,0xd7,0xed, +0xb9,0x9f,0x3c,0x2a,0x32,0x8d,0x3c,0x00,0x89,0xb0,0xee,0x25, +0x8c,0xe5,0xe7,0xff,0x73,0x65,0x61,0x2f,0x7d,0x13,0x5f,0x91, +0xa8,0xac,0x98,0xb3,0x51,0xc2,0x58,0xc6,0x3d,0x81,0x9d,0xc3, +0xb8,0x13,0xde,0xa1,0x46,0x33,0x07,0x72,0x5a,0xf2,0xfd,0x7b, +0xd9,0x35,0x4e,0xb8,0x3e,0x18,0x29,0x81,0x54,0x0f,0x26,0x8d, +0xa6,0x8c,0xf0,0xa4,0x7a,0x1a,0x9a,0x88,0x40,0x9d,0x0e,0xda, +0x65,0xbc,0x9a,0x1f,0x37,0xba,0x51,0xcc,0xf2,0xce,0xee,0x9d, +0xa6,0x47,0xe9,0xaf,0xf8,0x91,0x7a,0x67,0x0c,0xae,0x50,0x19, +0xc9,0x67,0x52,0x62,0x94,0x61,0x0e,0xbe,0xdf,0xd6,0xca,0x0f, +0x73,0x35,0xd9,0x1c,0xa1,0x20,0xd3,0xd1,0xe1,0x4c,0x68,0x7c, +0x2a,0xca,0xd0,0x83,0xbb,0x43,0x0a,0x78,0x64,0x02,0xf4,0xe8, +0xef,0xf2,0x14,0xd0,0x0c,0x2e,0x10,0x83,0x5e,0xad,0x2e,0xcd, +0x16,0x67,0x2b,0xf6,0x92,0xdd,0x45,0xcb,0x61,0x73,0x06,0x4f, +0x58,0x92,0x37,0x87,0x4d,0x5d,0xac,0x61,0x8f,0x66,0xb7,0x56, +0x8b,0xfc,0x4e,0xb6,0x11,0x79,0x99,0x98,0x5e,0x79,0x21,0x9a, +0x71,0x3d,0x5d,0x94,0x0a,0x22,0xd1,0x04,0x12,0xcd,0x68,0xd4, +0xf6,0x21,0x78,0x10,0xbe,0x86,0x83,0xf4,0xe7,0xf3,0xf9,0x83, +0xdf,0xf9,0x83,0x29,0x1b,0x1e,0x17,0xdd,0x87,0xd0,0x7d,0x34, +0xe8,0xcd,0xbf,0x0f,0xf1,0xfb,0x78,0x34,0xc4,0x03,0x3d,0x93, +0xc9,0x13,0xfd,0xf4,0xe7,0x38,0x93,0xfc,0xb9,0xd8,0x18,0xf4, +0xa9,0x28,0xdb,0x50,0xf3,0x10,0xde,0x9a,0x7d,0x41,0xf9,0x9c, +0x09,0x88,0xf5,0x50,0xf6,0x88,0x0d,0x8a,0x34,0x5b,0xc0,0x73, +0x52,0xa1,0xdb,0x6b,0x08,0xf5,0xa0,0xaa,0x6c,0x30,0x53,0x25, +0xad,0x29,0xb1,0xf3,0xec,0x15,0x86,0x1b,0xa1,0x84,0xae,0x69, +0xa9,0x65,0xcc,0xe4,0x32,0x39,0x85,0xd4,0x26,0xed,0x20,0xb5, +0x19,0x6d,0x87,0xc2,0x3e,0x2c,0xec,0xd0,0xb7,0x46,0xa9,0x20, +0xce,0x99,0xc2,0x39,0x1b,0x1a,0xe7,0x07,0x10,0x54,0x9e,0x5c, +0x09,0xca,0xbc,0xea,0xad,0x21,0x03,0xb2,0x56,0x31,0x8d,0xb7, +0xd0,0x87,0xc0,0x22,0x6e,0x3a,0x2e,0xa2,0x65,0xfa,0xb0,0x88, +0xe0,0x22,0xd9,0x7b,0xb0,0x88,0xe6,0x32,0x6c,0x88,0x08,0x33, +0x87,0x69,0x99,0xae,0xb0,0x77,0xa6,0x4c,0x44,0x4f,0x79,0x6f, +0x23,0x16,0x93,0x91,0xdd,0xf4,0x17,0x9f,0xf2,0x3f,0xd4,0x0c, +0x76,0x50,0xd1,0xae,0xe1,0xce,0xa1,0xee,0x8c,0x6c,0x8a,0x0a, +0x3d,0x13,0x12,0x1f,0xa2,0xec,0x1d,0x13,0x1a,0x6f,0xbe,0x00, +0x23,0xa9,0x6c,0x33,0x05,0x88,0xa1,0x3e,0x2f,0x93,0xf4,0xa6, +0xab,0x24,0x97,0x27,0x36,0x9f,0xed,0x65,0xb8,0x17,0x94,0xe0, +0xea,0x52,0x0a,0x98,0xc9,0x7d,0x94,0x50,0xbe,0xe7,0x2e,0xd1, +0x3b,0x88,0xd2,0x3b,0xbc,0x48,0x34,0x86,0x44,0x61,0xb2,0x4a, +0x05,0x51,0x30,0x88,0x05,0x14,0x9c,0xc6,0xed,0x64,0xea,0x67, +0x5c,0xdc,0x65,0x23,0x7b,0x7b,0x10,0x7f,0x7b,0x30,0x19,0xb4, +0xfd,0x02,0x85,0xfb,0xfb,0xc9,0x2a,0xfc,0xcc,0x18,0x3e,0xc3, +0x50,0xa1,0x56,0x8a,0xb1,0x02,0xbc,0x47,0x75,0xe6,0x65,0x76, +0xa8,0x40,0x30,0xcc,0x1e,0xc4,0xd9,0xdf,0xd1,0x38,0x07,0xbb, +0x88,0x4f,0xbd,0x65,0xb7,0x4b,0xa5,0x8d,0x2b,0x5b,0xeb,0xdd, +0x65,0x56,0xce,0x5b,0x6a,0x73,0x9e,0x58,0x59,0x47,0x66,0xf1, +0xef,0x73,0xfd,0x63,0x88,0x3b,0x66,0x04,0x33,0x1c,0x68,0xfc, +0xd0,0x59,0x77,0xb9,0xaa,0x72,0xab,0xa5,0x02,0xd0,0x5f,0xb4, +0x3d,0x83,0x45,0x4a,0x8d,0xaf,0x31,0x80,0x56,0x2b,0xf1,0xb8, +0xa7,0x2c,0x3b,0x44,0x0d,0x66,0x17,0xb4,0xa9,0x7c,0x47,0xeb, +0x16,0x28,0xe0,0x2c,0x79,0x18,0xf8,0x3e,0xe1,0xd5,0xa8,0x54, +0xd0,0xa5,0x24,0x63,0x48,0x32,0x19,0xeb,0x87,0x52,0x41,0x48, +0x06,0x79,0xfe,0x0a,0xaa,0x53,0x6f,0x11,0x28,0xc5,0xaf,0xc7, +0xa1,0xb5,0x07,0x5b,0x27,0xe0,0xc7,0x95,0xe3,0xb0,0x72,0xea, +0x47,0x14,0x08,0xdf,0x33,0x1d,0x2c,0x37,0x87,0x72,0x5d,0xbc, +0x8b,0xa5,0x70,0x57,0x83,0x5b,0x6d,0x2c,0x5b,0xbd,0x64,0xec, +0x57,0xd9,0xae,0x41,0x6e,0xd7,0x65,0x5a,0x0f,0x36,0x13,0xcc, +0xb9,0x0a,0x39,0x14,0xbc,0x50,0x27,0x58,0x7d,0x15,0xaa,0x29, +0xee,0x5b,0x9c,0x4e,0x20,0x47,0x0d,0xf9,0x93,0xb7,0x6f,0x10, +0xa8,0x56,0xc3,0x6a,0xea,0x3f,0x97,0x4a,0xf6,0xe8,0xe0,0x27, +0x68,0x60,0x08,0x06,0xa8,0x82,0xcb,0xf1,0xfb,0x89,0x01,0xe8, +0x86,0x2e,0x21,0x66,0x04,0x46,0x23,0x68,0x04,0x1f,0x4d,0x3c, +0x05,0xc9,0x36,0x5e,0xbc,0x09,0x52,0x29,0x0b,0xad,0x77,0xd5, +0x4f,0xa2,0xf2,0x2a,0xfc,0x48,0x79,0xc0,0xe9,0xfc,0x17,0x95, +0x9f,0xe7,0x3c,0x57,0x84,0x44,0x3c,0x82,0x3b,0x29,0xa1,0x77, +0xd6,0x72,0xaa,0xbd,0x30,0xbb,0x53,0x45,0xf6,0x14,0x65,0x34, +0xf4,0xf0,0x23,0x86,0x51,0xbc,0xaf,0x8e,0xa2,0x30,0x0e,0x47, +0x49,0x52,0x4b,0x62,0xfb,0xd9,0x4e,0x06,0xa2,0xf0,0x43,0x6a, +0x4a,0x9d,0x7f,0x11,0xb4,0x21,0x02,0xb5,0x69,0xe1,0x41,0x3a, +0x10,0xc8,0x1f,0xc4,0xfc,0x09,0x3d,0x1d,0x94,0x4e,0xe8,0xea, +0xc8,0x1f,0x90,0x29,0x65,0x9d,0xe1,0x72,0x54,0xfd,0xd8,0x06, +0x73,0xc5,0x3a,0x9b,0xe1,0x9a,0x81,0xe6,0x96,0x4e,0x45,0x10, +0x1d,0xa6,0xa2,0xce,0x44,0x9d,0x3e,0xa1,0x8c,0x1b,0xaf,0xe9, +0x23,0x03,0x86,0x94,0xbd,0xed,0xa6,0x60,0x54,0x8b,0xca,0x32, +0x61,0xcf,0x27,0xf5,0xa5,0xb4,0xa7,0x99,0xe9,0xa9,0x8a,0x77, +0x3a,0x56,0x5a,0xb2,0x6d,0x85,0x2d,0xa5,0xf5,0xe5,0x0c,0xce, +0x06,0x2b,0xda,0xcd,0x7c,0x7b,0x20,0xea,0x84,0x09,0x84,0x2a, +0x50,0xf2,0x7d,0x5b,0xcd,0x03,0x06,0xe2,0x60,0xae,0xbe,0x2a, +0x1e,0xa4,0xce,0xa6,0x0a,0xf9,0xfa,0x2f,0x61,0x8a,0xde,0x92, +0x60,0x75,0xca,0x4c,0xd9,0xe6,0x54,0x68,0xb8,0xee,0x02,0xfc, +0x98,0xca,0x93,0xe7,0x9c,0x7c,0x55,0x59,0x33,0x9e,0xa9,0x92, +0x31,0x9a,0x74,0x05,0x88,0x12,0xf7,0x0b,0x95,0x99,0x9b,0x99, +0x9b,0x96,0x7b,0x5b,0xda,0x55,0x55,0xdc,0xc2,0x40,0x08,0x30, +0xfa,0x47,0x71,0xed,0x5f,0x49,0xf6,0xf7,0xe0,0x5b,0x5a,0xef, +0xb4,0x3d,0xaf,0x6e,0x0e,0xa7,0x22,0xa2,0xf9,0x59,0x3c,0x8d, +0xca,0xe3,0xd5,0x6d,0x1a,0x75,0xb7,0xac,0x7c,0x8c,0x57,0xb7, +0x9e,0x73,0x43,0xaf,0x95,0x38,0xa0,0xd2,0xb2,0x52,0xb3,0x53, +0xb3,0x99,0x81,0x31,0x90,0xea,0x8d,0x51,0x98,0xc9,0x65,0x91, +0xe8,0x37,0x49,0xf6,0xdb,0x6f,0x8b,0xa8,0xfc,0xec,0xbc,0x9c, +0x9c,0x1c,0x06,0x0e,0x52,0xff,0x0f,0x66,0x38,0x9b,0xec,0x08, +0x5f,0x16,0xf9,0xa9,0x7c,0xb9,0x32,0x61,0x10,0x13,0x7e,0x97, +0xcb,0x97,0xf4,0xcf,0xe9,0xbf,0xe6,0x3e,0xab,0xf4,0xee,0x63, +0x37,0x7b,0xe1,0xb4,0x70,0x24,0x27,0x19,0x2e,0x8c,0xde,0x1f, +0x9b,0x6a,0x78,0x3d,0x45,0x61,0xd1,0x04,0xcc,0xa0,0x7f,0xcc, +0xf8,0x25,0xe7,0x69,0x2e,0x23,0xdb,0x0f,0x2d,0xa4,0x39,0x2f, +0xb7,0x51,0xe5,0x67,0x5a,0xcc,0x4f,0xd4,0xd9,0xd6,0xb4,0xcf, +0xa9,0xd4,0x0a,0x15,0xd8,0x8e,0xcd,0x34,0xae,0x8b,0x71,0xda, +0x2e,0x56,0x6e,0xb4,0x50,0xf8,0xf2,0x7c,0xd9,0x38,0xbc,0xab, +0x04,0xbb,0x71,0x2e,0x25,0xae,0x0a,0x1a,0x54,0x86,0x59,0xdc, +0x7b,0x64,0x6f,0xb1,0x7a,0x99,0x7e,0xcd,0xad,0x81,0xc1,0xcb, +0x55,0x77,0x99,0x6e,0xee,0xa8,0xb1,0x4c,0x81,0xf6,0xd0,0x31, +0x37,0xd1,0xb2,0x35,0x68,0x36,0xef,0xb2,0x1e,0xb1,0x72,0x65, +0xdb,0x8c,0xbb,0x2c,0x07,0xec,0x35,0xdd,0x0e,0xf8,0x6c,0x09, +0x29,0x12,0xb1,0xdf,0x15,0x7d,0x55,0x7b,0xbb,0xfd,0xaa,0xdd, +0x7d,0xb7,0xaf,0xfd,0x98,0xbf,0x54,0x62,0x27,0x96,0x7e,0xa1, +0xbb,0x13,0xcf,0x19,0xc3,0xb9,0x7d,0xe3,0xf7,0xa1,0x74,0xdf, +0xd8,0xfd,0x37,0x2a,0x81,0x41,0xb8,0x97,0x70,0x8c,0x68,0xf2, +0xe2,0x30,0xc7,0xde,0xd5,0xa6,0xd0,0x05,0x77,0x93,0x12,0xbf, +0x32,0xd7,0x42,0x8f,0xc1,0x72,0x36,0xb4,0xc6,0xab,0x29,0x50, +0xca,0x33,0xde,0x04,0x12,0xec,0xe4,0x61,0xea,0xea,0xc4,0x70, +0xa5,0x68,0x36,0xce,0xfb,0xa0,0xfb,0xcb,0x78,0x56,0x98,0x33, +0x0e,0x76,0x3c,0x2b,0xcc,0xb8,0x00,0x19,0x90,0x82,0x1f,0xe3, +0x06,0x2a,0x9b,0x9f,0xa0,0x2a,0x54,0x4f,0x5e,0x6e,0x8f,0x0a, +0x68,0xe2,0x95,0x9f,0xe1,0x15,0x2e,0x19,0x07,0x33,0x4c,0xa4, +0x2b,0x6b,0x4a,0x1b,0x24,0x35,0xf2,0x82,0x60,0x0f,0x88,0xde, +0x16,0x94,0x7e,0xa9,0xbb,0x45,0x3e,0x05,0xb7,0x8c,0x7f,0x09, +0xd2,0x2d,0x63,0x5f,0xbe,0xb1,0x28,0x9c,0x15,0xbe,0x43,0x4e, +0x38,0x47,0xba,0x04,0xd9,0x33,0x1b,0xb8,0xa7,0x63,0x17,0xe1, +0xa4,0xac,0x08,0x97,0x50,0x79,0xb5,0x59,0xb5,0x19,0xb5,0x0c, +0x5c,0xe1,0xfe,0x24,0xe2,0x88,0x8c,0x21,0x15,0x50,0x97,0x7d, +0x00,0x8f,0x39,0x6d,0x4e,0x4a,0xef,0xa9,0xf4,0x7d,0xa0,0x0c, +0x63,0x54,0xbb,0x24,0xbf,0x45,0x05,0x56,0xca,0x83,0x8b,0xbb, +0x69,0x0c,0x81,0x3e,0x82,0x2c,0x04,0x00,0x4b,0x0d,0x63,0x00, +0xe1,0x0f,0x94,0x79,0xc3,0x31,0x65,0x74,0x8a,0xc0,0x61,0x50, +0xc7,0xc3,0x34,0xaa,0x8b,0x09,0x7f,0xa0,0x8f,0xea,0x72,0x8b, +0x3c,0x93,0x5c,0x01,0xe9,0xb1,0xb1,0x2b,0x50,0x34,0x88,0x45, +0xcf,0xf4,0xb6,0xa2,0x54,0x80,0x77,0xc9,0xc6,0x90,0x7c,0x8c, +0xf6,0x3c,0x43,0x8c,0xf0,0x93,0xc3,0xcb,0x17,0xae,0x6b,0x33, +0x63,0x3b,0x5a,0xca,0x2b,0x2a,0x1a,0x19,0x6e,0xff,0x84,0x2c, +0x89,0xae,0xed,0xaf,0x9c,0x28,0xb9,0xcc,0xc8,0xfe,0xe4,0x96, +0x90,0x21,0xec,0xfc,0x8a,0xff,0x9a,0x68,0x2e,0x01,0xa3,0xc1, +0x73,0x33,0x36,0x18,0x41,0x22,0x6d,0x7e,0x78,0xfd,0x51,0x54, +0xd4,0xad,0xe6,0x21,0xd8,0xda,0xbb,0xaf,0x6f,0x49,0x78,0x6f, +0x87,0x95,0x63,0x50,0x99,0x42,0x15,0x6c,0xf8,0xf5,0x20,0xac, +0x3b,0x54,0xdd,0xc7,0xa2,0xe2,0xd8,0xca,0x2b,0x16,0x37,0x19, +0x98,0x0f,0x0f,0xf9,0xdf,0xcc,0xbd,0xc7,0x63,0x0a,0x61,0xa4, +0xee,0x11,0xbd,0x23,0x28,0xbd,0xce,0x0b,0x21,0xb6,0xa8,0x39, +0x76,0x09,0xa4,0x82,0x10,0xa2,0x8e,0x14,0x08,0x65,0x58,0x61, +0x70,0x6a,0x37,0x0e,0xc2,0xd0,0x11,0xfc,0x13,0x9f,0x4e,0x40, +0x0d,0x0c,0xe1,0x7b,0xf4,0xee,0xb8,0x1d,0xf1,0x7b,0x12,0x52, +0x79,0x2e,0xb7,0x36,0x0d,0xf6,0x65,0xc0,0x5a,0x49,0x76,0x70, +0x56,0x70,0x7a,0x68,0x4f,0x05,0xeb,0xd5,0x6b,0x76,0xd7,0xbe, +0xd5,0xd6,0x8f,0xcd,0x09,0xcd,0x0f,0xcc,0x0b,0xb0,0x88,0x35, +0x89,0x37,0x8a,0x17,0xba,0x99,0xdf,0x40,0x37,0x5c,0x4c,0xe7, +0x1a,0xcb,0x57,0xa5,0x0a,0xf2,0xfb,0x55,0x20,0x99,0x9b,0x7b, +0x9d,0xd6,0x87,0x73,0xe4,0x20,0xc6,0xde,0xa1,0x61,0x40,0x68, +0xf9,0x97,0x7d,0x90,0xe6,0x46,0xcc,0x09,0xc4,0xee,0xc5,0x58, +0x0a,0x06,0xe6,0x3f,0x80,0xec,0xbd,0x7f,0x2f,0x0e,0xff,0xbd, +0x68,0xc2,0x5b,0x3c,0x61,0x37,0x91,0x7c,0x4b,0xd1,0x1b,0x93, +0xf6,0x8a,0x9b,0x4d,0xf2,0x7d,0xf3,0xbd,0xf2,0xdd,0xf5,0x62, +0x8f,0xc4,0x1d,0x8d,0xbb,0x7c,0xfd,0xde,0xf3,0x2b,0x2f,0x84, +0xf4,0x03,0x63,0x6b,0x03,0x4b,0xe3,0xd0,0x82,0x20,0x49,0x90, +0xa4,0xb3,0xaf,0x73,0xb4,0xb6,0xd7,0xbc,0x9a,0xf5,0x34,0xb5, +0x11,0xd9,0x5a,0x58,0x37,0xb1,0x8e,0xb6,0xc3,0xd6,0xdd,0xb6, +0x1d,0x96,0x8a,0x7e,0xde,0x7e,0xbe,0x7e,0xbe,0xcc,0x19,0x6f, +0xdf,0x33,0x7e,0x0b,0x92,0x8c,0x2e,0x9c,0xbb,0x91,0x74,0x3d, +0x59,0x11,0x87,0xce,0xc3,0x18,0xdd,0x72,0xae,0x39,0xa9,0x21, +0x49,0xd8,0x1f,0x9d,0x16,0xda,0x53,0xce,0x7a,0x4f,0x38,0xde, +0x74,0x1a,0xe6,0x4d,0x16,0x38,0x93,0xe0,0x8d,0x66,0x4b,0xd5, +0x76,0x75,0xbb,0xb0,0x2d,0xfd,0x35,0x43,0xa5,0x43,0x0c,0xf0, +0x3f,0xe5,0xad,0x04,0xdc,0x16,0xb9,0x4a,0x79,0x6f,0x74,0x50, +0xe0,0xe1,0x05,0xab,0xa9,0x42,0x43,0x85,0xa7,0xd4,0x0f,0xed, +0xcd,0xf0,0x56,0xb6,0x4a,0x0e,0xcc,0x38,0x07,0x6b,0x60,0x8f, +0x12,0x0e,0x53,0x99,0x95,0xe9,0x15,0x69,0x15,0xcc,0x4f,0x9c, +0x2d,0x71,0x7f,0xe8,0x70,0xdf,0xea,0x86,0xb9,0x1f,0xdb,0xa1, +0xd6,0xb4,0xb7,0x7a,0x1f,0x83,0xf7,0xbb,0x49,0xb9,0x51,0x89, +0x9e,0x44,0x6d,0x48,0xca,0x06,0x5e,0xf6,0xbd,0xe8,0x35,0xc4, +0xe0,0x4d,0x0c,0x25,0xad,0x17,0xab,0x6e,0x14,0xde,0x36,0xc9, +0x67,0x83,0x0f,0x78,0xeb,0xdb,0xe9,0x08,0xf8,0x4e,0x36,0x45, +0x9e,0x42,0xe6,0xb6,0xb1,0xa7,0x50,0x3c,0x84,0xc5,0x4f,0xf4, +0xb6,0x63,0xe6,0x13,0xdd,0xed,0x98,0x62,0x04,0x29,0xdb,0xe8, +0xc9,0x8f,0x50,0x91,0x8c,0x70,0xf3,0x69,0xa1,0x56,0x62,0x4a, +0x99,0x51,0x2e,0x1b,0xbc,0xc9,0x7c,0xb3,0xbe,0x76,0xbb,0x13, +0x5b,0xd7,0x54,0xd9,0x2e,0xac,0x56,0x3d,0x3f,0x4e,0xc0,0x7f, +0x18,0x37,0xfc,0xa1,0xbf,0x10,0x37,0x8b,0xbe,0xd6,0xa0,0xd0, +0x29,0x08,0xa9,0x3d,0x38,0x53,0xb9,0xc7,0xe1,0x36,0x4c,0xab, +0x80,0x69,0xa9,0xb0,0x57,0x91,0xf7,0x08,0x48,0xc7,0x6f,0x3d, +0x21,0xe2,0x39,0xe8,0xf1,0x28,0xeb,0x05,0x07,0x05,0x37,0x71, +0x81,0x7a,0x50,0x51,0xfc,0x28,0x4b,0x25,0xe3,0x52,0xd2,0x2b, +0xd8,0xa6,0x84,0x96,0x4d,0xd4,0xa4,0x2e,0xf7,0x29,0xe1,0x27, +0x8e,0x51,0x54,0x36,0xff,0x78,0xc5,0x3c,0x01,0x2a,0x51,0x40, +0xf7,0x11,0x08,0xa6,0x61,0x41,0xe5,0x19,0xbb,0x04,0x87,0x78, +0x77,0x45,0xd7,0xb8,0x93,0x31,0xf6,0x0b,0x1c,0xa8,0x2c,0x33, +0x85,0x76,0x6a,0xb4,0x34,0x7f,0x20,0x4d,0x25,0xad,0xfb,0xdc, +0xc5,0xb3,0xcf,0x51,0x64,0xc7,0x7e,0x6f,0x88,0x6f,0xd1,0xa8, +0xe0,0xaf,0xf0,0x93,0x3e,0x2a,0xd0,0x3b,0x42,0x33,0x8c,0x6f, +0xf3,0x38,0xcc,0x94,0xde,0xd3,0xe8,0xf3,0x50,0x19,0xa4,0x54, +0x47,0x6e,0x41,0xb3,0xca,0x03,0xda,0x28,0x4f,0xe1,0x9f,0xe6, +0x2e,0x17,0x2f,0x94,0x62,0xcb,0x5e,0xc7,0x69,0x8c,0xcb,0xc8, +0xa4,0x16,0x8f,0x6d,0xf6,0xd1,0x39,0xf2,0xcc,0xb8,0x9e,0xfc, +0xfc,0x6e,0x15,0xf8,0x73,0x35,0x64,0xd3,0xba,0xc6,0x44,0x03, +0xef,0xf3,0xa4,0x5e,0x13,0xec,0x69,0x9e,0x52,0xdb,0xf3,0xf4, +0xab,0x70,0x03,0xcd,0xd9,0xe1,0x5c,0x82,0x69,0xa3,0xe7,0x79, +0xa4,0xc6,0xa3,0xb7,0xdf,0x71,0x05,0x79,0x0d,0x3d,0xab,0xe9, +0xbf,0xb0,0x8a,0x16,0x4a,0x2f,0xf2,0x42,0xe0,0x40,0x42,0xf8, +0x50,0x1e,0xa5,0x97,0x0e,0xa0,0x94,0xc2,0x27,0xa8,0x4b,0x60, +0x98,0xba,0xaf,0xfd,0xd4,0x0a,0xa6,0x3b,0x96,0xf0,0x54,0x63, +0x46,0xe3,0xae,0x8e,0x5d,0x17,0xf8,0x47,0x4a,0x61,0x1d,0x9a, +0x90,0x57,0xd5,0x5f,0xb5,0xde,0x99,0x70,0x6a,0x63,0xb5,0xc4, +0x5b,0x6d,0xd6,0x78,0x31,0xb2,0x0f,0x6e,0x10,0x07,0x2b,0x4b, +0x2b,0x0b,0x5b,0x06,0x67,0x52,0xc9,0xbc,0x97,0xd1,0x87,0xc3, +0xe9,0x39,0xb0,0x41,0x65,0xc8,0xbc,0xb9,0x5e,0x6f,0x40,0xb7, +0xdb,0xb0,0x49,0xd1,0xd1,0x4b,0x7a,0xbc,0x38,0xac,0x38,0x44, +0x71,0x67,0xdc,0x9a,0xb8,0x15,0xa7,0xeb,0xab,0x1b,0x9b,0x2a, +0x6b,0x99,0xdd,0x98,0x4d,0xb0,0x05,0xd7,0x0a,0x65,0x28,0x80, +0xf0,0xfc,0xbf,0xa0,0x53,0x05,0xee,0x73,0x9f,0x98,0xd0,0x93, +0x15,0xf3,0xf9,0x17,0xb6,0xd2,0x79,0xfc,0x0b,0x9f,0x50,0x5d, +0x92,0x37,0x2f,0x2c,0xe3,0x21,0xee,0xf1,0x04,0x72,0xc4,0x58, +0xcd,0x65,0xa5,0x7b,0xb9,0x19,0xfb,0x4d,0xcd,0xd3,0x8e,0x6b, +0x43,0x8c,0x6c,0x7d,0x33,0x51,0x33,0x3e,0xcc,0x9f,0x2b,0x33, +0x63,0xbf,0xad,0xf9,0xb2,0xf3,0xda,0x20,0xc3,0xad,0x16,0x91, +0x9d,0x87,0x37,0x5b,0xe2,0x7b,0x36,0xfc,0x49,0x98,0xd7,0xf9, +0xd3,0xe0,0xc3,0x9b,0x8c,0x6c,0x43,0x0b,0xd9,0x21,0x9c,0xfd, +0x40,0x7e,0xf6,0xfd,0xae,0x9f,0x06,0x3f,0xbf,0x21,0x27,0xd5, +0xff,0xe6,0x81,0x6c,0x95,0x90,0xa9,0x21,0x90,0x6a,0x01,0x93, +0x54,0x09,0x42,0x08,0x1c,0xec,0xa3,0x31,0x98,0x53,0x20,0xa0, +0x39,0x01,0xb3,0xfe,0x27,0xa9,0xd6,0xf8,0x8b,0x54,0x2f,0x91, +0x93,0xea,0x87,0xc3,0x9c,0xcb,0x7f,0x92,0xea,0x7f,0x8b,0xe0, +0xce,0x1b,0x52,0xbd,0x83,0x27,0xd5,0xd3,0xaf,0x93,0x09,0x8f, +0x1e,0xcf,0xeb,0x96,0x75,0xed,0xac,0x7a,0xa7,0xb8,0x4a,0xaf, +0x92,0xc1,0x1a,0x5c,0x47,0x30,0x69,0x89,0xe8,0x5f,0x73,0x87, +0xf1,0x2d,0x48,0xa2,0x39,0x6f,0x63,0x82,0x66,0xb8,0x84,0x7f, +0x68,0xf0,0x03,0x9a,0x11,0xe1,0x08,0x96,0x50,0xe3,0xfc,0x21, +0x7f,0xb0,0x1a,0xcd,0xe4,0xf0,0xed,0x21,0xe1,0xe1,0x49,0xa9, +0x80,0x51,0x84,0x27,0x68,0x3c,0x36,0x08,0xa5,0x82,0x10,0x56, +0x2a,0x29,0x30,0x9c,0x9a,0x49,0xe0,0xad,0x3b,0x7d,0x07,0xe1, +0x6d,0x8c,0x99,0x80,0xb1,0x3e,0x1c,0x1b,0xa4,0x9f,0xa4,0x7e, +0x95,0x75,0x51,0x1a,0xda,0xc3,0xae,0xf6,0xc2,0x8f,0xa3,0xf1, +0x9d,0xd8,0x0c,0x53,0x56,0x72,0xb6,0xe8,0x6c,0x71,0x22,0x63, +0x86,0x6a,0xb7,0xe9,0x9a,0x94,0xca,0xd4,0xb2,0xf4,0x90,0x2e, +0x76,0x8d,0x17,0x2a,0xfd,0xf5,0xfa,0xc5,0x73,0xf7,0x52,0x6e, +0x65,0x30,0x9a,0xd8,0x66,0x0a,0x6d,0x3a,0x98,0x6c,0x01,0xc9, +0xda,0xd8,0x67,0x0a,0x7d,0x9a,0xc2,0xb1,0x3b,0x6d,0xad,0xbd, +0xcf,0x1e,0x17,0x9a,0x95,0xf1,0x6c,0x6e,0xd5,0xc8,0xf3,0xce, +0x32,0x61,0x45,0xd3,0x73,0x14,0x82,0x40,0x0d,0x83,0x46,0xc1, +0x2b,0x95,0xaa,0x5d,0xfb,0xdc,0x12,0xb6,0x1b,0x95,0xf4,0xb3, +0xb8,0x61,0xe0,0x60,0xb3,0xf9,0x38,0xb3,0x1a,0x9e,0x10,0x1d, +0x54,0x9b,0xa0,0xf9,0xf7,0x4c,0x23,0xda,0xa8,0x76,0x81,0x96, +0x6d,0xd5,0x26,0xa8,0x71,0x01,0x34,0x28,0x6e,0x2b,0xce,0x20, +0xa0,0xa6,0x89,0x6a,0x14,0x44,0x5d,0x22,0xa0,0xa1,0x89,0x1a, +0xd4,0x3f,0x29,0x09,0xfa,0xef,0x20,0xea,0x9c,0x8a,0x78,0x12, +0x06,0xb8,0x75,0x57,0x85,0xe6,0x80,0x2f,0x89,0xec,0x37,0xd8, +0xc5,0xfd,0xc6,0x0f,0xda,0x4c,0x72,0x4d,0x16,0x7e,0x94,0xe6, +0x9e,0x70,0x2e,0x04,0xae,0x4c,0x0a,0x4d,0x0d,0xb7,0xc9,0x63, +0xc2,0x4b,0xa8,0xee,0x7c,0xa1,0x83,0x74,0xef,0x54,0x2f,0x37, +0x9d,0x86,0xa3,0x90,0x4b,0xd0,0x7f,0xb4,0x4f,0x36,0x8f,0xa7, +0x35,0xdc,0x3c,0x9c,0x47,0xee,0xc2,0xdd,0x03,0xff,0x6c,0xb3, +0x37,0xf0,0x04,0x28,0x68,0x8f,0xd1,0x72,0xad,0xa3,0x1d,0x8e, +0x6c,0x5d,0x4b,0x4d,0x4f,0x79,0x2f,0x03,0x0f,0xd6,0x53,0x42, +0x98,0x88,0x89,0xdc,0xab,0x6c,0x72,0x22,0xc0,0x4f,0x67,0xc1, +0x52,0xaa,0xc0,0x40,0xe1,0x6b,0xea,0xfb,0x86,0x8e,0x27,0x59, +0x2a,0x39,0x5f,0xa5,0x00,0x81,0xf7,0x84,0x4e,0xb0,0xff,0xa2, +0xb3,0x2a,0x32,0xca,0x53,0x4b,0x19,0xfe,0x1b,0xdf,0x21,0x42, +0xeb,0xfa,0x7f,0x8d,0xe0,0x72,0x78,0x57,0x97,0x82,0x6e,0xf4, +0x27,0x28,0x1b,0xb9,0xc5,0x9b,0xe8,0x46,0x9a,0x13,0xe1,0x7d, +0x52,0xf7,0x5d,0x05,0xcc,0xcc,0x7d,0xae,0x9f,0xcd,0x86,0x2f, +0xf7,0x42,0xe2,0xb8,0x4c,0x23,0x5c,0x3d,0xe2,0x58,0x74,0x8e, +0x0e,0x2b,0x14,0x8d,0x5e,0xd7,0xf2,0x47,0x73,0xec,0x30,0x6b, +0x13,0x61,0x19,0x61,0x1e,0xc9,0xac,0xee,0x24,0x11,0xaf,0x83, +0xbf,0x0f,0xba,0x6d,0x18,0xce,0x16,0xa9,0x16,0xad,0xcc,0x59, +0xcb,0xc8,0x56,0x5d,0x20,0x70,0x04,0x16,0xe0,0x11,0xf9,0x7a, +0xe6,0x3b,0xfc,0x74,0xaf,0x16,0xe0,0x4d,0xf6,0x20,0x66,0x0b, +0xac,0xa5,0xfa,0x8e,0xee,0x41,0x8c,0x37,0x16,0x48,0xdc,0xe4, +0xc7,0xcb,0xc9,0x10,0xb7,0xe1,0xa1,0xd6,0x1e,0xfc,0x51,0x40, +0x08,0x81,0x61,0x0b,0x35,0x90,0x52,0x1e,0xb0,0x56,0xb8,0x05, +0x1f,0x48,0x61,0x0e,0x9c,0x54,0x02,0x86,0x96,0x6d,0xe2,0x36, +0x11,0xb8,0x35,0x88,0xb7,0xe0,0xa9,0x0e,0x3e,0xc5,0x71,0x63, +0x18,0x5f,0x88,0x68,0x34,0x59,0x30,0x84,0x93,0x14,0xda,0xca, +0x9c,0x89,0xbe,0x1b,0xb5,0xd5,0xc3,0x76,0x8b,0x81,0x72,0x9d, +0xe5,0x70,0x7d,0x6d,0x7d,0x51,0x83,0x62,0x52,0x4a,0xd2,0xe9, +0xe4,0x38,0x78,0x6b,0x31,0xdb,0xda,0xbc,0xe2,0xbb,0xa8,0xcc, +0x53,0x9f,0x45,0x9d,0x50,0x8c,0x8a,0x8e,0x4d,0x52,0xc8,0x2e, +0x4f,0xa9,0x6b,0x53,0x92,0x2d,0xae,0x96,0x5f,0xe5,0x65,0xb7, +0xc5,0x50,0xb8,0xaa,0xae,0xa6,0x4e,0xda,0xa0,0x98,0x9c,0x72, +0x2e,0x21,0x39,0x1e,0xe8,0x85,0x6c,0x6b,0xcb,0xe2,0xef,0x23, +0xb3,0x4e,0x9d,0x8e,0x3e,0xf9,0xe6,0xaa,0xac,0x8a,0x94,0xda, +0x36,0xa5,0x39,0x93,0x47,0x04,0xb4,0xa4,0x85,0xd5,0x82,0x4d, +0x4b,0x10,0x43,0x82,0x60,0xce,0xaa,0x05,0x91,0x3d,0x80,0xd9, +0x14,0x6c,0x5c,0x43,0x1c,0x3d,0x1c,0xbc,0xed,0xfc,0x98,0x1a, +0x3c,0x35,0xaa,0xab,0x8f,0x63,0x96,0x30,0x66,0xc8,0xcd,0x33, +0x97,0xed,0xa7,0xf1,0x03,0x2b,0x5c,0xe8,0x81,0x6b,0xfd,0x72, +0x8d,0xd9,0xc7,0xb9,0x8f,0x0b,0x1e,0x15,0x31,0x76,0xb4,0x48, +0x12,0x7a,0x5e,0x59,0xa6,0x45,0x35,0x15,0x64,0xb7,0xa9,0xd4, +0xd3,0x7a,0x39,0x0a,0xfa,0xdc,0x0e,0xda,0x3b,0x36,0xa9,0x4c, +0xa5,0x80,0x86,0xd5,0xc9,0xa0,0x9f,0x0e,0x8b,0xcb,0x83,0xbb, +0x59,0x9c,0xe7,0x8d,0x6a,0x27,0x70,0x51,0xcc,0xcd,0xa2,0xeb, +0xa5,0x57,0x2a,0x19,0xf8,0xae,0x07,0x4f,0x53,0x97,0xea,0xc6, +0x9b,0x87,0x3b,0x18,0xee,0x13,0x1d,0x02,0xee,0x94,0x4b,0xb0, +0x73,0x88,0x53,0x18,0xb3,0x90,0xc2,0x12,0xee,0x35,0x69,0x97, +0x8d,0xdb,0x5c,0x80,0x81,0xa9,0xc3,0x38,0x40,0x4f,0x52,0x20, +0x26,0xdc,0xf8,0xa8,0x6c,0x9c,0xe2,0xc6,0x97,0x11,0xd9,0xb8, +0x0e,0x37,0xfe,0x37,0x9b,0xd4,0x40,0xe9,0x65,0x5d,0x0d,0x79, +0x92,0xd6,0xd1,0xf1,0x6b,0x20,0x3d,0x3a,0x76,0xed,0x4d,0x8a, +0x11,0x86,0xe3,0x37,0x04,0x4c,0x39,0x45,0x11,0x3c,0xda,0x82, +0x63,0x74,0xbc,0x5e,0xf4,0xc1,0x88,0x43,0x0c,0x7c,0xef,0x4f, +0xed,0x4f,0x30,0x3e,0xa9,0xa5,0x6c,0x78,0x2a,0x24,0x42,0x7b, +0xc1,0x2a,0x81,0x35,0x7c,0x4b,0x3d,0xab,0x2f,0xbe,0x97,0xad, +0x92,0x79,0x2b,0xe9,0xe6,0x97,0x4a,0x57,0xf0,0x05,0x9d,0x5a, +0x9b,0x5c,0x75,0xae,0x86,0x99,0xcc,0x9e,0xcf,0x7f,0xc4,0x02, +0x11,0x3c,0xde,0x82,0x13,0x74,0xbc,0xee,0x89,0xc3,0xe1,0x07, +0x19,0xf8,0xc1,0x9f,0x3a,0x70,0xda,0xe4,0x84,0x96,0xb2,0xc1, +0x29,0xbf,0xe3,0xfa,0x0b,0x3e,0x15,0x3e,0xe2,0x3b,0xea,0x8b, +0x96,0x92,0x47,0x39,0x2a,0x19,0xd7,0x93,0xae,0x3f,0x7b,0xf3, +0x11,0x75,0xc9,0x95,0xfc,0x47,0xe0,0xb7,0xb8,0x96,0x68,0x5b, +0xee,0xb4,0xdf,0xe3,0x57,0x6a,0xca,0xde,0x2f,0x7b,0xda,0x7e, +0xa9,0x87,0x91,0x69,0xb4,0x13,0x0d,0xab,0xad,0x0e,0xbb,0xfc, +0x4a,0x4c,0xd9,0x87,0x65,0x2f,0xda,0xae,0x74,0x33,0xdc,0x11, +0x5d,0xb2,0xcf,0x00,0xa7,0x89,0x57,0xb9,0x97,0x8a,0xd9,0xaf, +0x6b,0x81,0x1a,0x7e,0x30,0xc6,0xc8,0xd4,0xda,0xc9,0x6e,0xc3, +0x45,0xa6,0x2b,0xdd,0x4b,0xc4,0xec,0xb7,0xb5,0x30,0x63,0xf0, +0xd1,0xa8,0x3c,0x0a,0x31,0x97,0x5c,0x03,0x89,0xb0,0x1c,0x2d, +0x04,0xd5,0xee,0xff,0xbd,0x07,0x5b,0x08,0xdd,0x1d,0xa5,0x7f, +0xc3,0x17,0xe4,0x37,0xc9,0xcb,0x8a,0xbb,0x4d,0xf7,0x1c,0x5f, +0x78,0xbe,0x0e,0x2a,0x1c,0x62,0x77,0xe5,0xef,0x2f,0x3a,0x56, +0x39,0x58,0xd7,0xde,0x5a,0xdb,0xc3,0x3c,0x1e,0xe0,0xa6,0x53, +0x19,0x79,0xe9,0x79,0xa9,0x79,0x26,0xb9,0xac,0xa3,0xaa,0xce, +0xb1,0x7d,0x96,0x35,0x56,0x6c,0x63,0x71,0x5d,0x79,0x55,0x55, +0x85,0x5b,0xa3,0x67,0x9b,0xaf,0x86,0xcf,0xbe,0xa0,0xcd,0xe1, +0xc2,0x8e,0xe6,0x5a,0x62,0xbf,0xd0,0x00,0xa7,0x2f,0x5a,0xd4, +0x6e,0xc9,0x96,0x97,0x97,0x54,0x14,0x55,0x30,0xdc,0xce,0x31, +0x59,0x0a,0x5d,0x3d,0x58,0x36,0x56,0x7a,0x95,0x91,0x9d,0x3c, +0x48,0xbc,0x9c,0xec,0xdd,0x4d,0x7d,0x4c,0xcb,0x6d,0xab,0xdd, +0x9a,0x18,0x34,0xe0,0x5a,0x88,0xec,0xb4,0x1e,0x77,0x9a,0x96, +0xa9,0xc2,0x4f,0xe4,0x98,0x25,0xbe,0x6d,0x8b,0x73,0x82,0xf3, +0x8d,0x78,0x57,0x52,0x0c,0x33,0x3a,0x6e,0xf7,0x33,0x78,0x07, +0x3f,0x23,0xb0,0xaf,0x1a,0x96,0x4f,0xfc,0x70,0xcb,0xad,0x93, +0x5d,0x77,0x14,0x97,0xea,0xe1,0x76,0x5f,0x46,0x76,0xfa,0x36, +0xc1,0x99,0x6b,0x50,0x6b,0x37,0x06,0xb8,0x15,0x18,0xb0,0xe0, +0x5f,0x0f,0xa2,0x47,0xf0,0xc1,0xaf,0xf2,0x9b,0x5e,0x43,0xe4, +0x0c,0x6c,0xec,0x3f,0x43,0x2f,0x7a,0xb4,0xcc,0x92,0x9b,0x4f, +0x9a,0x0b,0x9a,0x4b,0xea,0xcb,0x9c,0x6b,0xd9,0xef,0xfb,0xa6, +0x62,0x61,0xf3,0x64,0xd2,0xc0,0xd4,0x65,0x8c,0xa6,0xd0,0x30, +0x18,0x15,0x35,0x97,0x2a,0x0f,0x5a,0x5d,0x85,0x99,0x25,0xf0, +0xf1,0x59,0x30,0x56,0x84,0x4f,0xf0,0x3d,0x6a,0xe9,0xc9,0x74, +0x53,0xf8,0x30,0x13,0xde,0xc9,0xf9,0xb9,0x40,0x31,0xa6,0xdb, +0xe0,0xa4,0xd6,0xc9,0x23,0x31,0x8a,0x30,0x0b,0x3e,0xa6,0x5f, +0x2c,0x02,0x56,0x0f,0x3c,0xbd,0xb3,0x7b,0xd8,0x7d,0x99,0x47, +0xb3,0x75,0x25,0xcc,0x1f,0x90,0x4e,0xb8,0xdf,0xcd,0x64,0xbf, +0x53,0x2e,0x8b,0x88,0x8b,0xb7,0xa9,0x97,0x45,0x90,0xa5,0xd4, +0xa1,0xd4,0xbd,0x86,0xc7,0xbc,0xb8,0x93,0x68,0x73,0x9f,0x89, +0x65,0x9f,0xe1,0x4c,0x5c,0x49,0x0b,0x24,0x52,0x91,0x6a,0xcf, +0xe7,0xd5,0x02,0x28,0xd0,0x18,0xe0,0x0d,0x37,0xcd,0x19,0xe2, +0x26,0x32,0xe8,0x31,0xe8,0xd2,0x65,0xd7,0xd0,0xcc,0x5a,0xb6, +0x18,0x36,0x88,0x2b,0xe5,0xab,0x93,0xc2,0x4d,0x95,0x0a,0x37, +0x25,0xf8,0xa5,0x89,0xff,0xe9,0xb1,0xf4,0x84,0x0c,0x9a,0x3b, +0xa4,0x1f,0x8b,0xe9,0xd0,0xa2,0xe3,0xc5,0xe1,0xa5,0x0c,0xa4, +0xf4,0x09,0x05,0xb1,0xa5,0x69,0x45,0xa9,0x45,0x8c,0xec,0xd0, +0x00,0xb7,0x85,0x4a,0x96,0x24,0x49,0x92,0xa4,0xfa,0x29,0x6c, +0x7c,0x40,0x5c,0x60,0x6c,0x20,0x83,0x20,0x86,0x57,0xd4,0xa9, +0xc0,0x93,0x81,0x27,0x82,0x18,0xac,0x36,0x85,0x24,0x2a,0xc2, +0x3f,0x2c,0x20,0x24,0x80,0xc1,0x02,0x13,0xf0,0xa4,0xf4,0x0c, +0xf7,0x8b,0x57,0x58,0xd6,0xf0,0x0c,0x62,0xce,0xf8,0xcb,0x6b, +0x57,0xef,0x31,0x30,0x48,0x5d,0x3b,0xf0,0x42,0x13,0xe6,0x68, +0xd5,0x08,0xd5,0x24,0x07,0x54,0x7b,0x8c,0x06,0x18,0xfc,0xb2, +0x9f,0xe4,0x17,0xe7,0x16,0x67,0x97,0x30,0xf0,0x01,0x95,0xed, +0x97,0x1b,0x90,0x1f,0x28,0xb4,0x0f,0xf4,0x23,0x78,0x7d,0x82, +0x1a,0x49,0x1a,0x4c,0xe9,0x49,0x0b,0xee,0x61,0xb7,0x45,0xe0, +0xc7,0x27,0x71,0xd1,0xe9,0x74,0x53,0x76,0xf0,0xec,0xe0,0xd9, +0xbe,0x73,0x8c,0x01,0x0e,0x8a,0x21,0x87,0xd6,0x15,0xe3,0x3c, +0x7b,0xdc,0xeb,0x23,0x3c,0xf4,0x80,0x16,0x98,0xd6,0xdb,0x70, +0x8f,0x77,0x7b,0x86,0xe3,0x60,0x98,0x4a,0x35,0xec,0x87,0xd9, +0x66,0x10,0x60,0x9f,0x3f,0xc4,0xe2,0xfe,0x72,0xfc,0xa8,0x45, +0x7b,0x80,0x81,0x8a,0xbf,0x53,0x13,0x8e,0x62,0x95,0x90,0x76, +0x29,0x44,0xc2,0x05,0x8d,0x7e,0x93,0x72,0x31,0x24,0xa4,0x5c, +0x78,0xef,0xe4,0xe9,0xc3,0x14,0xba,0xd2,0x68,0x12,0x8d,0x94, +0x3a,0x4e,0x53,0x1e,0xb0,0x54,0xb8,0x03,0x73,0x72,0xe0,0x63, +0x61,0xbf,0xdc,0xae,0xc9,0xd4,0x21,0x6e,0x35,0xcf,0x2e,0xf6, +0xf3,0x1a,0x77,0x08,0x87,0x6f,0xe9,0x1f,0xc2,0x8f,0xc5,0xf0, +0x31,0x2e,0x80,0xa3,0xaa,0x58,0x8c,0xf1,0xfc,0x97,0x83,0x13, +0xfa,0x8e,0x82,0x2f,0x84,0xe0,0x7c,0x5c,0x2e,0xc7,0x53,0xef, +0x53,0xdd,0x05,0xd2,0x76,0x15,0x9e,0x28,0xb7,0xde,0x86,0x63, +0xb0,0x00,0x76,0x0e,0xe0,0xce,0x5b,0x34,0x72,0xe8,0xc8,0xe3, +0xed,0xe1,0x6d,0xbc,0x77,0xdb,0x27,0xc4,0xc6,0xd5,0x30,0xe7, +0x86,0x9e,0x1a,0xa6,0x8b,0x21,0x5d,0x77,0x6c,0x1c,0x72,0x74, +0xc7,0xc7,0xa1,0x74,0x00,0x4b,0x29,0xb4,0xdf,0x43,0x4e,0x05, +0x45,0xfa,0x1d,0xf7,0x17,0x72,0xdb,0x6e,0x4f,0x5a,0xc1,0x6d, +0x04,0x2a,0x4b,0x92,0x29,0x4d,0x2b,0x64,0x78,0x3f,0xfb,0x98, +0x80,0x8f,0xec,0x4b,0xf4,0xa1,0xb9,0xac,0x24,0xf2,0x3c,0xe7, +0x79,0xe9,0xe7,0x75,0x23,0x81,0xc3,0x01,0xfd,0xfe,0xa5,0xad, +0xac,0x9d,0xc4,0xb6,0xd0,0xba,0xa0,0x59,0xda,0x50,0x5c,0x55, +0xe6,0xd1,0xc2,0xda,0xbb,0x59,0x78,0x9b,0x04,0xa8,0x56,0x1c, +0x2a,0xd1,0xc8,0xf7,0xb5,0x61,0x87,0x22,0xce,0x0b,0xb9,0x60, +0x01,0x47,0xc2,0x8e,0x44,0x33,0xb2,0x79,0xdc,0x0a,0xe2,0x1c, +0x9d,0x52,0xab,0x72,0x9d,0x86,0x99,0x05,0x30,0xab,0x5c,0x9e, +0x77,0xb1,0x49,0xc8,0xbb,0x98,0x1e,0xc6,0xfc,0xae,0x8d,0x27, +0x84,0xb4,0x8b,0x6b,0xca,0x70,0xee,0x4d,0xda,0xc5,0x97,0xf2, +0x38,0xd6,0x74,0x21,0xed,0x42,0x91,0x40,0xe6,0x00,0x8f,0xd7, +0xb4,0x31,0x97,0x72,0x8e,0x77,0x8e,0x77,0x49,0x90,0xa7,0x5d, +0xe4,0xfd,0x77,0xda,0xc5,0xf1,0xf5,0x91,0x42,0xda,0xc5,0x3f, +0xac,0xb5,0x62,0x28,0xae,0x22,0x1c,0x11,0x4d,0x7e,0x39,0xcc, +0x2d,0xb9,0xc0,0xf3,0x7b,0x0f,0x5c,0x4e,0x8a,0x02,0x4b,0x5d, +0x72,0x7d,0x47,0x4b,0xd8,0xd0,0x0a,0x9f,0xc6,0xe0,0x42,0x46, +0xf6,0xce,0x19,0x9e,0xdf,0x7b,0xda,0xb8,0xbb,0x33,0x5c,0x09, +0xae,0xea,0x36,0x06,0xff,0x30,0x0a,0x67,0xf2,0x8f,0xc0,0x41, +0x4d,0xb9,0x4a,0x0c,0xeb,0xfb,0xbe,0xbd,0xd4,0xfc,0x5c,0x51, +0xf6,0x11,0x75,0xda,0x31,0xc1,0x39,0xc6,0x97,0xf1,0x3d,0x15, +0x19,0x63,0xbe,0x00,0x0d,0x29,0x01,0xb4,0x1f,0xa5,0xbe,0x29, +0x92,0xf4,0xf3,0x54,0xa3,0x29,0xb9,0x2f,0xf1,0x21,0xc3,0x1d, +0xa3,0xce,0x15,0x24,0x16,0x48,0x94,0x0a,0x65,0xe1,0x03,0x5d, +0x3c,0xb0,0x93,0xd2,0xe5,0x55,0xa5,0xf5,0xf9,0xe5,0x0c,0x4f, +0x31,0x63,0xc9,0x0d,0x4d,0x35,0xfc,0xe2,0x9b,0xc9,0xf0,0xb5, +0xfc,0x53,0x0a,0x93,0xcd,0x23,0x57,0xcf,0x77,0x5f,0x2c,0x1d, +0x61,0x3a,0xb1,0xce,0x1c,0x7c,0xe9,0x00,0x6b,0x3b,0x33,0x7d, +0x8b,0xdd,0xd7,0x4c,0x1f,0x79,0x7f,0x67,0x1c,0xc9,0xd6,0xe0, +0xf4,0xe1,0xcd,0xcf,0x54,0x79,0x82,0x45,0x5d,0x1c,0xec,0xbe, +0x58,0x71,0x8b,0x69,0x44,0x2b,0x3a,0x2d,0x2b,0x2d,0x3b,0x35, +0x8b,0x19,0xf9,0x3b,0x12,0xc9,0x83,0xa5,0x5b,0x7a,0x87,0x50, +0x2a,0x08,0x01,0x46,0x69,0x53,0x76,0xd9,0xf6,0x6a,0x47,0xb5, +0x97,0x1a,0x29,0x56,0xdb,0x5c,0xaa,0x1b,0x69,0x6b,0xef,0x52, +0x84,0x23,0x54,0xb8,0x6b,0xa0,0x9b,0xb7,0x87,0x77,0xa9,0x53, +0x85,0x6f,0xa1,0xbb,0x1b,0x5b,0x1a,0x5a,0xef,0x59,0xe1,0x17, +0x12,0x16,0x74,0x3c,0xe0,0xb8,0x77,0x85,0x53,0xb5,0xaf,0xd4, +0xd9,0x9d,0x2d,0x09,0xa9,0xf5,0x2a,0xf7,0x35,0xf3,0x32,0xf0, +0xd5,0x0a,0x2c,0xb1,0x64,0xff,0x68,0x7a,0xd5,0x73,0x6b,0x82, +0x31,0x85,0xfb,0xfd,0xf4,0x55,0x83,0x67,0xe6,0xf0,0x96,0x4d, +0x79,0x0f,0xbb,0xbd,0x5a,0xad,0xde,0xa0,0x95,0x81,0x0f,0x71, +0x25,0x99,0x0a,0x31,0x86,0xef,0xd0,0x10,0xd7,0x52,0x02,0x77, +0x56,0xfa,0x6b,0x41,0xfe,0x18,0x7c,0x45,0x73,0xe3,0xce,0x44, +0x64,0xa4,0x61,0x8f,0xd3,0xed,0x2a,0x79,0x1c,0xa9,0xd0,0x76, +0xbb,0x6f,0x64,0x94,0x81,0xce,0x68,0xf2,0xb5,0xed,0x7d,0x9b, +0xcf,0x8d,0x6a,0xbb,0xd9,0x9d,0x23,0x07,0x5b,0xd7,0xb6,0xfc, +0xfd,0x0c,0x0f,0x60,0xd5,0x5d,0x5e,0x08,0xcf,0xf0,0xbf,0x77, +0x9c,0xbc,0x49,0x5c,0xda,0x4e,0x76,0x70,0x1f,0xe2,0xe6,0xb1, +0xdf,0x26,0x3d,0xb6,0x73,0x35,0x46,0x10,0x4d,0x9f,0xf2,0x8b, +0xf6,0x8d,0xf2,0x65,0xf0,0x20,0xb7,0x68,0xbc,0x4b,0xc6,0x58, +0x8e,0xcb,0x16,0x61,0x06,0x95,0x59,0x96,0x51,0x9a,0x56,0xc6, +0xc0,0xb9,0xda,0x1e,0xd8,0xcc,0x2d,0x7d,0x4c,0xf1,0x3a,0x64, +0x40,0x2c,0x70,0x9a,0xda,0xaa,0xcd,0xdb,0x5b,0x2c,0xd9,0xea, +0xaa,0xaa,0xda,0xca,0x46,0x9e,0xf0,0x8c,0xcb,0xd6,0xd2,0x42, +0x4f,0x98,0xc2,0x2e,0x06,0x14,0xb0,0x83,0xbc,0x92,0x31,0xeb, +0x68,0x8e,0xc1,0x35,0xe4,0x27,0x19,0xb3,0x9c,0x16,0x6c,0xdc, +0x76,0x32,0x00,0xa5,0xe2,0xb1,0x01,0xa1,0xeb,0x43,0xee,0x7f, +0xd9,0x38,0x21,0x03,0x43,0x4c,0xcb,0xb4,0xb9,0x0a,0x72,0x95, +0xae,0x3b,0x5b,0x7b,0xb6,0x26,0xb1,0x20,0x4c,0x68,0x2e,0xdd, +0x51,0xc5,0xda,0xb7,0x38,0x34,0x5b,0x55,0x33,0xfd,0x3c,0x57, +0x7b,0xd1,0x2b,0xdb,0xd3,0xc7,0xed,0x19,0xd1,0x37,0xe4,0x56, +0x9b,0xca,0x56,0x9b,0xe1,0x6d,0x8c,0x05,0x13,0x2a,0x24,0x34, +0x30,0x24,0x20,0x94,0x41,0x27,0x2a,0x89,0xd7,0x63,0x0b,0x70, +0x4d,0x4c,0x05,0xb1,0x8a,0xc6,0xd4,0x2c,0xd3,0xc9,0x59,0xf8, +0x36,0x1e,0x93,0xb3,0xa2,0x0d,0x54,0x9f,0xa4,0xa0,0x4f,0xe5, +0x6b,0xf0,0xe8,0xa3,0xb9,0x28,0x18,0xe1,0x89,0xe2,0x20,0xf0, +0x58,0xe7,0x2b,0x9e,0x3f,0x54,0x0d,0x42,0x15,0x85,0x5f,0xad, +0x26,0x22,0xcc,0x1e,0xa6,0xe1,0xe6,0x7c,0xa8,0x12,0x61,0x15, +0x05,0xa9,0x56,0xc4,0x2b,0x3c,0xe7,0x44,0xce,0xc9,0xec,0x68, +0x45,0x7c,0x27,0x1e,0xd7,0xc5,0xe3,0xb6,0x33,0xd2,0x7c,0x49, +0x41,0x21,0xaf,0xd0,0x16,0x58,0x48,0xc6,0x03,0xc7,0x7c,0x86, +0xdd,0x6a,0x5a,0x58,0xc3,0x1a,0x9d,0x72,0x3d,0xe9,0xdf,0x63, +0xbe,0x07,0xab,0x04,0x00,0x2c,0x67,0x43,0x13,0xff,0x83,0x27, +0x51,0x78,0x7c,0x3d,0xd9,0x87,0xaf,0x78,0x5e,0x8a,0x4e,0x81, +0x38,0x4f,0x53,0x68,0xfe,0x67,0x75,0x01,0xde,0x2e,0x87,0xb9, +0x29,0x70,0x4c,0x11,0xf6,0xe2,0x7e,0xd9,0x27,0xb0,0x1f,0xb4, +0x87,0x51,0x5b,0xd8,0xee,0x56,0x22,0x88,0x3d,0x85,0x14,0x50, +0x93,0x9f,0x9d,0xe7,0xb6,0xdf,0xa7,0x61,0x0b,0xa7,0x41,0xb0, +0x04,0x18,0x28,0xa1,0x1e,0x62,0x18,0x69,0x36,0xed,0x50,0xad, +0xd6,0x39,0x5f,0xce,0x7a,0x8e,0x9b,0xdd,0xb5,0xef,0x61,0xb8, +0x3b,0xe8,0x41,0xba,0x86,0xda,0x6f,0x95,0x5e,0x16,0x15,0xb1, +0x7e,0x3a,0xb6,0xea,0x56,0x66,0x8c,0x6c,0x07,0xac,0x26,0x45, +0x46,0x85,0x47,0xb2,0x0c,0x2f,0x66,0xb2,0x51,0xe7,0x03,0x6f, +0xf8,0xf3,0x76,0x3d,0xe4,0x14,0x49,0x15,0x25,0xa9,0x1a,0x29, +0x5d,0x3c,0xab,0x70,0x3e,0xe6,0xee,0xa9,0x01,0x65,0xe1,0xf9, +0xec,0x24,0x7d,0x50,0x6a,0x47,0x9f,0x39,0x7b,0xfa,0xb3,0x33, +0x67,0xdd,0x3c,0x58,0x49,0x94,0x34,0x4a,0x12,0xb9,0x21,0xf6, +0xd3,0xb8,0x65,0x09,0x65,0xa5,0xe5,0x15,0xc5,0x65,0xc6,0x12, +0xd6,0xc7,0xc3,0xc5,0xd9,0xd1,0x15,0xd7,0x27,0xb0,0xc9,0x66, +0x60,0x92,0x0c,0x8e,0x69,0xb0,0x3f,0x5f,0x51,0x7a,0xbc,0xe8, +0xb8,0xe4,0x78,0x5d,0x3d,0x6b,0xd1,0xa4,0xdf,0xa4,0x5f,0xc3, +0xb4,0xf7,0xc9,0xd3,0x6c,0xfe,0xaf,0x87,0x6c,0x4a,0xc1,0x30, +0x0e,0x92,0xaf,0x92,0xbf,0x4f,0x7f,0x98,0x99,0x73,0x3c,0xfb, +0x78,0x76,0x58,0x6b,0x0d,0xeb,0xd0,0x6f,0xda,0x2f,0xee,0x70, +0xf6,0x62,0x25,0xa1,0x92,0xe0,0xc2,0x60,0xbd,0x18,0x8d,0x38, +0xcd,0xf8,0xf2,0x86,0xf2,0xe6,0xe2,0x46,0x93,0x02,0xd6,0xdf, +0xde,0xcd,0xdc,0xc9,0x8a,0x89,0x8e,0x3e,0x13,0xbd,0x20,0x36, +0x35,0x8e,0xff,0xc7,0xe8,0x51,0x09,0x71,0xf1,0xfc,0x3f,0xcf, +0x7a,0x97,0x3a,0xb7,0x4a,0x67,0x1f,0xb6,0xe0,0x78,0x41,0x68, +0x7e,0xa8,0xf8,0xa4,0x5e,0x8c,0x6e,0x5c,0x59,0x4d,0x69,0x7d, +0x51,0xbd,0x38,0x9f,0x0d,0x70,0x74,0xb3,0x74,0xb6,0xf3,0x3d, +0xed,0x7b,0xc6,0xef,0x4c,0x0a,0xef,0xe6,0xde,0x4e,0x83,0x4f, +0x32,0x7f,0x2c,0xca,0x88,0x64,0x0d,0x6d,0x96,0xd8,0xa0,0x97, +0x65,0x3e,0xaf,0x41,0xf7,0x6f,0xdd,0xeb,0xaf,0x7b,0xc2,0xa4, +0x50,0x75,0xdb,0x5f,0xf2,0x1a,0xa9,0x5a,0xc0,0x93,0x2f,0x83, +0x66,0x7c,0xab,0x51,0xb3,0x91,0x11,0x1b,0x92,0x0d,0x62,0x9c, +0xe3,0x8c,0x4b,0x82,0xf3,0x79,0xfa,0xbb,0x50,0x02,0x1f,0xd4, +0xff,0x7e,0x91,0xe1,0x56,0xf1,0x16,0x07,0xdc,0xcb,0x41,0x7f, +0x10,0x96,0x7e,0xe3,0xd4,0xc4,0x22,0xbb,0x0b,0x0f,0x1a,0xa3, +0xb7,0x1f,0x73,0x0a,0xd5,0x08,0xb4,0x96,0x43,0xcc,0x75,0x30, +0x80,0xd9,0x76,0xad,0x2c,0x1e,0xc4,0xb7,0xd0,0x4d,0x03,0xcf, +0x7b,0xca,0x71,0xcb,0x02,0x72,0x05,0x24,0xc7,0x26,0xae,0xc8, +0xc1,0x9a,0x90,0x78,0x27,0x11,0x62,0xc2,0x02,0x68,0x3d,0x46, +0xc3,0x47,0xf8,0x8c,0xc0,0x96,0x14,0x58,0x9c,0x0e,0xa4,0x30, +0x2f,0x24,0x37,0x34,0x27,0xa4,0xad,0x91,0xb5,0x1e,0x31,0x1c, +0x15,0x77,0xdb,0xba,0xb3,0x45,0xc1,0x45,0x81,0xd2,0xc0,0xbd, +0xa7,0x76,0xc4,0x6c,0x88,0x2f,0x6f,0x97,0x76,0x17,0x76,0x30, +0x70,0x65,0x08,0xa3,0x2f,0xe9,0x6a,0xa2,0x97,0x11,0x2c,0xa4, +0x42,0xac,0xfc,0x2d,0x3d,0x2d,0x0f,0x24,0xb0,0x7e,0x58,0x4c, +0x9c,0x23,0xec,0x23,0xed,0x22,0x18,0x70,0x84,0x19,0x03,0x38, +0xe3,0x17,0xba,0xb7,0xb9,0xb7,0xaf,0xb8,0x83,0xb7,0x88,0x3f, +0x1b,0x41,0x0d,0xed,0xe7,0x66,0xe7,0x68,0xeb,0xc5,0xdf,0x09, +0x7d,0x20,0x48,0x41,0xb6,0xd8,0x80,0xdb,0x48,0x0b,0x59,0xf3, +0x21,0xf1,0x99,0x3c,0x3f,0xfa,0xb0,0x06,0xd8,0x96,0xd7,0x2d, +0x8c,0x2c,0xdd,0x80,0x38,0x50,0xde,0xa7,0x92,0xcb,0x55,0x20, +0x5f,0x0f,0x4b,0x69,0x43,0x69,0xd0,0x88,0xf2,0x18,0x55,0x9f, +0x9b,0xdf,0xa6,0xf2,0x23,0x2d,0xce,0x57,0xe0,0xf6,0xc3,0x5a, +0x82,0xca,0xfe,0x87,0x3e,0xdd,0xa9,0xdc,0x61,0xa1,0xf0,0xdb, +0xab,0x9a,0x57,0xb0,0x56,0x29,0x4f,0x8f,0x06,0x73,0xfc,0x9a, +0xc0,0x0b,0x7d,0x1e,0xfe,0xfe,0x63,0xc4,0x6a,0x01,0xce,0x25, +0xc3,0xdc,0x32,0x21,0x62,0x55,0x9e,0x52,0x66,0x9c,0xcb,0x06, +0x6d,0xb6,0xd8,0xa4,0xaf,0xdd,0xee,0x28,0x44,0xac,0x3a,0x84, +0x88,0xd5,0x43,0xdf,0xff,0xa7,0x88,0xd5,0xa2,0xff,0x87,0x88, +0x95,0x49,0x13,0x35,0xe9,0x87,0x31,0x64,0x58,0xe8,0x0f,0x04, +0x3a,0x43,0x78,0x47,0xe8,0x53,0x58,0x92,0x56,0x62,0x96,0xcb, +0xfa,0x1f,0xb3,0x55,0x37,0xb3,0x6c,0x71,0x62,0x8b,0xa4,0xd2, +0xb2,0xc2,0x4a,0xe6,0x37,0xa4,0xd0,0x4b,0x04,0xce,0x54,0xd0, +0xd1,0x43,0x9a,0xb8,0xc4,0xa8,0xdc,0x98,0xf7,0x95,0x13,0xf7, +0x1f,0x66,0x7c,0x29,0xec,0xdf,0xde,0xfc,0xf0,0x10,0xac,0x39, +0x56,0x3e,0xc8,0xe2,0xc2,0xd1,0xc3,0xe3,0x41,0x42,0x0d,0xa7, +0xf5,0x93,0x8f,0x88,0xde,0x31,0x8c,0x14,0x92,0xca,0x8a,0xc5, +0x50,0xac,0x3f,0x36,0x0a,0x91,0x82,0x68,0x1e,0xc0,0x66,0xaa, +0x03,0xdf,0x27,0xea,0x6b,0xaf,0x1a,0xaa,0xe3,0x62,0x5e,0xac, +0xbf,0x6a,0xa0,0x8e,0xdb,0x4c,0x61,0x33,0x7d,0x4a,0xe4,0xee, +0xb4,0xda,0xa6,0xda,0x82,0x9f,0xa0,0x43,0x6d,0xbd,0x19,0x0f, +0x99,0x6f,0x50,0x09,0x52,0x41,0xe9,0x9b,0x63,0x94,0x9e,0x24, +0xe2,0xbc,0xf2,0x2b,0xaa,0x23,0x2b,0xa7,0x55,0xa5,0x8d,0x36, +0xcd,0x51,0xd0,0xda,0x26,0xb0,0xaa,0x0a,0x95,0x31,0x38,0xda, +0x87,0x47,0x79,0xfa,0xfe,0x33,0x5a,0x93,0x67,0xb0,0x78,0x2b, +0xcd,0x1d,0xc4,0x0c,0xf2,0x3d,0x7c,0xb1,0x17,0x1b,0x30,0x71, +0x1c,0xcc,0xc1,0x1f,0x4f,0x5e,0x80,0x93,0x70,0x0a,0x3f,0xc4, +0x8f,0xe9,0x02,0xde,0x8d,0xbc,0x45,0x0d,0xe7,0x48,0xbb,0x85, +0xf5,0x81,0x81,0x07,0xf0,0xdd,0xa7,0xe3,0xb0,0x6a,0xea,0x5b, +0xfc,0x7b,0x93,0x8b,0x8e,0x26,0x4a,0x84,0x89,0x24,0xf0,0x06, +0xed,0xf1,0x0b,0x20,0xd1,0x9e,0xb8,0x20,0x9f,0xa4,0x14,0xb7, +0x17,0x97,0x90,0xb4,0xfc,0x14,0xfe,0x9f,0x51,0x36,0xeb,0xb2, +0xe6,0xd8,0x86,0x2d,0xfb,0x5b,0xed,0xd8,0x9a,0xca,0xca,0xca, +0xb2,0x6a,0x46,0x76,0xb5,0x87,0xab,0xa6,0xb2,0xf2,0x32,0xf2, +0x33,0xf2,0x19,0xd9,0x8f,0x14,0x3a,0x7e,0x86,0xbb,0x43,0x70, +0x9e,0xb2,0x6a,0xb4,0x57,0xa8,0xd5,0x82,0x60,0x48,0xe1,0x3e, +0xc7,0xc1,0x91,0x0e,0x59,0xb8,0xd0,0xcb,0xa9,0x99,0xfa,0xa1, +0xae,0xf6,0xbb,0x5c,0x15,0x29,0x28,0x9e,0x85,0xa3,0x67,0x20, +0x95,0x99,0x72,0xc4,0xef,0x89,0xec,0x14,0xac,0xe6,0x4e,0x51, +0xc3,0x8b,0xc9,0x98,0x4c,0xa8,0x2e,0x18,0x80,0x26,0x04,0xed, +0xc7,0xc1,0x9e,0x1a,0xd4,0x25,0xe3,0xe0,0xa8,0x4b,0x63,0xae, +0x0d,0xd1,0x46,0xfb,0x0b,0x34,0xf0,0x44,0xcc,0x51,0x1b,0x1d, +0xe5,0xb1,0xf5,0x5d,0x7f,0x2f,0xc0,0xe6,0x0f,0x60,0xfe,0xb0, +0x9e,0x08,0xa5,0x82,0x38,0x2b,0x86,0xb3,0x66,0x34,0x5c,0xc3, +0x36,0x72,0xb5,0xf8,0x52,0xc5,0x85,0x36,0xbf,0x16,0x56,0xc3, +0x4e,0xdb,0x7b,0xaf,0x5f,0x46,0x00,0xeb,0x2e,0x0d,0x91,0x44, +0x48,0x19,0x3d,0x30,0xe4,0xa6,0x99,0xc2,0x18,0x6e,0xe9,0xa0, +0xac,0x8c,0xd6,0x8b,0x31,0xd7,0x50,0x30,0x06,0xd7,0x6e,0xdd, +0xee,0xab,0x7d,0xc2,0x3f,0xdd,0xda,0x1d,0xcf,0x4d,0xe0,0xda, +0x21,0xc1,0x18,0xec,0xad,0x5f,0x56,0xa7,0x51,0xc7,0x40,0x3e, +0x14,0x11,0xfc,0xb7,0x29,0x8c,0x62,0xe8,0x28,0x35,0x95,0xfa, +0x23,0x79,0x50,0x78,0xbb,0xe2,0x5a,0xab,0x5f,0x23,0xab,0xe5, +0xa2,0xe5,0xbb,0x35,0x84,0x91,0x1d,0x36,0x27,0x9f,0x4b,0xee, +0x56,0xdc,0x68,0xf3,0x6b,0x62,0x35,0x9d,0x34,0x7c,0x37,0x05, +0x33,0xdc,0x42,0xde,0xf9,0xfd,0x50,0xfe,0xbc,0xe6,0xd9,0x79, +0xfe,0xe4,0x4e,0xb3,0x7d,0x2e,0x38,0xcd,0x8f,0x91,0x89,0x0f, +0x90,0x0d,0x22,0x7c,0xd7,0x09,0x97,0x06,0x14,0x08,0x49,0x14, +0x45,0xf0,0x7e,0xe3,0xef,0x57,0x18,0xee,0x53,0xa1,0xb3,0xa2, +0x5b,0x05,0xe8,0x9f,0x87,0x65,0xdf,0x3b,0xf2,0x86,0x45,0x71, +0x1b,0x1e,0x10,0xa1,0xb7,0x0f,0x6f,0x58,0x34,0x79,0xc3,0x52, +0x01,0xb1,0xb7,0x78,0xc3,0xf2,0xbe,0x5d,0x1b,0x8b,0xaa,0xfc, +0xec,0x74,0x3d,0x8a,0xa3,0x1e,0xfc,0xc4,0xf3,0x92,0x2d,0x15, +0x7a,0x79,0xcd,0xdb,0x26,0xac,0xbd,0xde,0xa0,0x5a,0xf2,0xf3, +0x9b,0x54,0x60,0x0f,0xea,0xdd,0x01,0xd7,0x01,0x74,0xbd,0x6f, +0x3b,0x2e,0xef,0xdd,0x23,0x60,0xb9,0x92,0x2b,0xba,0xc7,0xe4, +0xf9,0x5c,0xba,0x86,0xfb,0x50,0x5f,0x0c,0xfa,0x07,0x71,0x3b, +0x9e,0x1c,0x06,0x3d,0x98,0xb6,0x9d,0xde,0x24,0x12,0x12,0xd3, +0x15,0x94,0xeb,0xcd,0x81,0xf9,0xb6,0x6e,0x3c,0xf5,0xb2,0x62, +0x2a,0x16,0x9c,0x87,0x50,0x2a,0x35,0x59,0x9e,0x97,0x4e,0x21, +0xd3,0xda,0x88,0x14,0xd0,0x51,0x59,0xa7,0x12,0x23,0x23,0x15, +0xa3,0xa2,0x14,0x62,0xc1,0x0b,0xde,0xc2,0x79,0xfb,0x85,0x2f, +0x9e,0xf8,0xaf,0x2f,0xde,0x71,0x07,0x54,0x07,0x50,0xf5,0xda, +0xd8,0x75,0x28,0x39,0xd2,0x75,0x14,0x55,0xc5,0xa0,0x7a,0x10, +0x37,0xcb,0xbf,0xe8,0xd7,0x6d,0xf4,0xe2,0xc3,0x1b,0x70,0xe3, +0x0a,0xe5,0x1a,0x33,0x50,0xfe,0xba,0xed,0x5a,0xfa,0x45,0xfe, +0x6b,0x24,0xe7,0x41,0x92,0x4a,0x65,0xa8,0xb5,0x68,0xc3,0xca, +0x35,0x55,0xfc,0xb0,0x6f,0xfd,0xf9,0xe0,0x57,0xf0,0x96,0xd2, +0x5f,0xec,0x5e,0x08,0x67,0xe9,0x1e,0x91,0xcf,0x4e,0xa1,0x7e, +0x81,0x54,0x7d,0xec,0xea,0x1b,0x76,0x0f,0x87,0xf0,0x6d,0xe2, +0xcc,0x43,0xa5,0xa1,0x68,0x2c,0x5e,0x90,0x21,0x82,0xe2,0xb3, +0x70,0x31,0x1b,0xcc,0x9b,0x14,0xa7,0x62,0xf1,0x12,0x79,0x32, +0xe9,0xb3,0x7d,0x9c,0x27,0x78,0x96,0x74,0x45,0x4d,0x59,0xa3, +0xb4,0xd5,0x40,0xc2,0x06,0xdb,0x7a,0x5a,0x38,0xda,0x31,0xdc, +0x03,0xfc,0x84,0x92,0xd9,0xc3,0x0e,0x12,0x5d,0x1b,0xd2,0x10, +0x56,0x6a,0x14,0xce,0x16,0x78,0x15,0xb8,0x66,0x7a,0x30,0xa8, +0x5a,0x48,0xc2,0x6a,0x83,0x2b,0x83,0x8b,0x8d,0x43,0xd9,0x22, +0x5f,0x89,0x7b,0xae,0x17,0x53,0x8a,0xdb,0x49,0x4e,0x61,0x76, +0x61,0xa6,0x54,0x5c,0xc8,0x9a,0x6f,0x57,0xd5,0x5a,0x69,0x5e, +0x69,0xc1,0x5e,0xaa,0x1d,0x6a,0xea,0xe8,0x64,0x40,0x9d,0x0a, +0xb4,0x70,0xb1,0xb6,0x70,0xf4,0xaa,0x74,0xae,0xf2,0x92,0xda, +0xba,0xb0,0x95,0xc1,0xf5,0x9e,0xe5,0x5e,0x06,0x4e,0x47,0x3c, +0x76,0xfb,0x55,0x88,0x59,0x10,0x4d,0xc0,0x32,0x98,0x36,0x00, +0x4b,0x99,0x76,0x5a,0x76,0x4c,0x87,0xf4,0xe1,0x3a,0xa1,0x42, +0x8e,0xa6,0x29,0x68,0xe2,0xfb,0xb8,0x93,0xce,0xae,0xca,0xa8, +0x4a,0x29,0x15,0x25,0xb1,0xd1,0x96,0x41,0x26,0x01,0xd6,0x0c, +0x9c,0x41,0x85,0x71,0x50,0x00,0xb5,0x01,0x54,0xe3,0x89,0x89, +0x10,0x81,0x5a,0xc1,0x93,0xc3,0x6a,0x81,0x1c,0x0a,0x21,0x1a, +0xc1,0xc0,0x54,0x0b,0x22,0x5e,0x0c,0xf1,0xbc,0xb5,0x0d,0xe1, +0x89,0xce,0x25,0xf8,0xa9,0x17,0x7f,0x1a,0xd3,0xd1,0xc3,0xc7, +0x66,0xf0,0x58,0x93,0x5b,0x6c,0x3a,0xf9,0x67,0x1f,0x3d,0x25, +0xc3,0x2e,0x02,0x1f,0x9e,0x85,0x9d,0xa9,0x40,0xa7,0x27,0x74, +0xb3,0x66,0x09,0x7a,0x09,0xda,0x09,0xcc,0x15,0xd8,0xdc,0x83, +0x9b,0x07,0xf4,0xc5,0xb8,0xd1,0x1c,0x36,0x1e,0xa5,0xb5,0x4e, +0x6b,0x9d,0x31,0x3c,0xc3,0xc8,0x74,0xed,0x88,0xec,0x40,0x0f, +0x1a,0x5f,0x86,0xbd,0x3d,0xb8,0x57,0x78,0x7d,0x9b,0x39,0x6c, +0xd3,0xc0,0xc3,0x94,0x4c,0x6f,0x39,0xf9,0x53,0x49,0x0c,0xf5, +0xd4,0xf1,0x43,0x87,0x9d,0xd0,0xc2,0xab,0xd0,0x90,0x05,0xd7, +0xea,0x9f,0x87,0x0a,0xe0,0x2d,0x06,0xb4,0x37,0x50,0x6a,0x25, +0x21,0x37,0x95,0x41,0x44,0xf5,0xe6,0xe7,0x75,0xa9,0x8c,0x0b, +0x41,0xa0,0xed,0xa8,0x4e,0xdb,0x9f,0x48,0x6d,0x56,0xf9,0x02, +0xc6,0xe4,0x71,0x58,0x79,0xd4,0xa9,0xf4,0xef,0x48,0xba,0xed, +0x58,0x1b,0x94,0x0a,0xe2,0x4d,0x1c,0x36,0x0b,0x67,0x91,0x3f, +0xe7,0x5a,0x40,0x93,0x31,0xc6,0xa3,0xca,0x64,0x17,0xa8,0x60, +0xee,0x20,0x8c,0x51,0x5c,0x97,0x31,0x19,0x04,0x1d,0x63,0x1a, +0xe3,0xed,0x88,0x01,0x1e,0x3b,0x4f,0xcb,0xf6,0xcc,0x37,0x40, +0x1d,0xfe,0xaf,0xae,0x01,0x41,0x8b,0xf3,0x60,0x41,0x65,0x09, +0xd5,0x2f,0xa2,0xa6,0x44,0x18,0x05,0x57,0x44,0xdc,0x06,0x13, +0xd9,0x86,0x15,0x17,0x7f,0x94,0x1d,0xe8,0xe7,0x0e,0xf0,0x78, +0xae,0x10,0x16,0x11,0xee,0x41,0x8f,0xec,0x01,0xb5,0x61,0x86, +0x98,0x7b,0x30,0x40,0xff,0x17,0xd0,0x31,0x1d,0xeb,0x93,0x03, +0xfd,0xff,0xc2,0x28,0x02,0xd0,0x37,0xa5,0x27,0xdf,0xc7,0x03, +0x64,0x78,0xdb,0x8f,0x53,0xb6,0xa6,0x93,0xcb,0xc4,0x53,0xae, +0xe2,0x49,0x57,0xe3,0xa9,0x65,0xa6,0x93,0xb6,0x3f,0xd3,0xbc, +0xd2,0x71,0x3c,0x84,0xdd,0x0e,0x5b,0x79,0x5c,0xbb,0x15,0x3e, +0x15,0x4f,0xbd,0x23,0x9e,0x7c,0x87,0xf7,0xf1,0x5a,0x74,0x3e, +0xcf,0xf5,0xb7,0x51,0x3d,0xf9,0x79,0x3d,0x2a,0xdf,0x81,0xd7, +0x00,0xfd,0x27,0xd5,0xca,0x2b,0x65,0x0a,0xac,0x4f,0x05,0x26, +0xed,0x4c,0x37,0x8b,0x7b,0x4e,0x2a,0x5c,0x84,0xed,0xbd,0xdc, +0xfb,0x66,0xb0,0x55,0x83,0xd6,0x49,0xd0,0x3e,0xad,0x77,0x9a, +0x99,0xcc,0xb9,0x43,0x34,0x30,0xed,0x32,0xcd,0x51,0x28,0x25, +0xa3,0x7e,0x63,0x9e,0x43,0x6e,0x75,0xad,0xac,0xa8,0x56,0xa7, +0xda,0xa0,0x98,0xc7,0x0c,0x5f,0x4e,0x2e,0xe3,0x1f,0xed,0x75, +0x21,0x7e,0x7b,0x7a,0x10,0x4f,0x0b,0x61,0x8e,0xeb,0x82,0x08, +0x35,0x86,0x50,0x4d,0x1a,0x94,0xe2,0x48,0x6f,0xc8,0x0d,0x97, +0x46,0xdf,0xea,0x0e,0xd6,0xbe,0xf4,0x48,0x83,0x45,0x1e,0x83, +0x77,0xd1,0x99,0x0c,0x37,0x0c,0xf4,0xd6,0x0e,0x58,0x95,0xb3, +0xee,0x96,0x96,0xd6,0x86,0x2e,0xcc,0xe4,0x17,0x67,0x88,0x55, +0xaf,0x59,0xab,0x71,0x83,0xa3,0x13,0x7b,0xde,0xbe,0xdd,0xb9, +0xd3,0x94,0xc1,0x9d,0x3f,0x10,0x83,0x3c,0x05,0x4d,0xcc,0xa7, +0xbd,0xe3,0x52,0x8a,0x54,0x6e,0xea,0xec,0xa4,0xcd,0x8a,0x42, +0x7b,0x95,0xa1,0x91,0xea,0xcc,0x95,0x36,0xa9,0xc8,0xfb,0x69, +0x7a,0x16,0x39,0x95,0xb8,0x14,0x7a,0x3a,0xb2,0x8d,0xc1,0x4d, +0x7e,0xa5,0x3c,0xf7,0xff,0xe9,0x2a,0xa9,0x0d,0xeb,0xf0,0x2e, +0x09,0xac,0x6e,0x61,0x7d,0xa4,0x36,0x15,0xee,0xfc,0x57,0xba, +0xe3,0x26,0x12,0xda,0xe2,0xd7,0xe4,0x57,0x6d,0x1b,0xc0,0x96, +0xb9,0x14,0xb9,0x16,0xda,0x32,0xb2,0xb3,0x31,0x24,0xa8,0xdf, +0xa7,0xdb,0xab,0xd1,0x3a,0x90,0xad,0xb6,0x2b,0xb1,0x91,0x88, +0x19,0x6e,0xfc,0x38,0x69,0xcd,0x2d,0x6c,0x50,0x69,0x15,0x2a, +0xc5,0xea,0xae,0xa7,0xfd,0xe3,0x92,0x0b,0x55,0x7e,0x34,0x5a, +0x42,0x8b,0x8b,0x8f,0xf7,0x28,0xcb,0x3a,0xe6,0xff,0xf5,0xaa, +0x19,0xff,0xea,0xba,0xff,0xf5,0x2a,0xf7,0x12,0xf6,0x91,0x68, +0xb3,0x30,0x0b,0x4f,0xcb,0xee,0x20,0xb6,0xb2,0x2b,0xbf,0x37, +0x73,0x98,0x91,0xad,0xcc,0x26,0x51,0xe6,0x61,0x96,0x1e,0x36, +0xbd,0xc1,0x6c,0x45,0x47,0x41,0x77,0xd6,0x10,0x03,0x3f,0x62, +0x2e,0x19,0xe4,0x76,0x5d,0xd3,0x39,0xca,0xad,0x32,0x96,0xcd, +0xa0,0xf5,0x75,0x91,0xb2,0x47,0x57,0x6b,0x89,0x88,0x85,0x33, +0x23,0x7f,0xb4,0xb4,0xbf,0x60,0x52,0xd1,0x75,0x02,0x5c,0x53, +0xa8,0xb6,0x8d,0x30,0xc7,0x1e,0x12,0x0d,0x0b,0x87,0x59,0xf4, +0xea,0xc0,0x39,0x2d,0xba,0xe3,0xcc,0x9b,0x75,0xdb,0x7b,0x20, +0x11,0xf2,0x1f,0x05,0x27,0x28,0x30,0x28,0xc9,0xdf,0x19,0x71, +0xfb,0x69,0x1b,0x21,0xfa,0xa1,0x61,0x34,0xf9,0xdd,0x10,0x37, +0xff,0x5b,0xf8,0x69,0x00,0x7f,0x7a,0xc1,0xb3,0x6e,0xdc,0x05, +0x22,0x5d,0x4a,0x56,0xcb,0x19,0x13,0x58,0x39,0x80,0x2b,0x61, +0xa6,0x1e,0x5e,0x5a,0x01,0x79,0x7a,0x98,0xb7,0x97,0x3a,0xdd, +0x6f,0x75,0xd2,0xec,0x94,0xc9,0x29,0x45,0x1e,0xba,0xaf,0x18, +0xc0,0x15,0xc0,0xe8,0x61,0x27,0xed,0x1a,0xe7,0x12,0xe7,0x1a, +0xcf,0x08,0xef,0x29,0xa2,0xdd,0xe3,0x3d,0x12,0x3c,0x4f,0xa7, +0xeb,0xb3,0xa0,0x92,0x05,0xdb,0x8b,0x81,0x54,0x30,0xe6,0xb2, +0x80,0x21,0xdc,0x2e,0xa4,0xc4,0x4e,0x2e,0x25,0x13,0x20,0xd1, +0x99,0x98,0x90,0xff,0x9e,0x8b,0x3a,0x5a,0x28,0x11,0xca,0xd0, +0x0b,0xbf,0x47,0x87,0x4e,0x76,0x25,0x3e,0x0e,0x1e,0x2e,0x6e, +0x1e,0x7e,0xad,0x5e,0x2d,0x6e,0xad,0x56,0xee,0x6c,0xbd,0x75, +0xa5,0x6d,0xb1,0xad,0x93,0xa7,0x9d,0x9f,0x6d,0x40,0x85,0x29, +0xdb,0x5e,0xda,0x5c,0xd6,0x50,0x91,0xef,0x98,0xe3,0x90,0x61, +0x6b,0x26,0xd2,0xb1,0x39,0x68,0x5f,0x6e,0xca,0x5e,0x6f,0x1d, +0x69,0x6d,0xeb,0x62,0x92,0x1d,0xcf,0xd9,0x5b,0x29,0xad,0x09, +0xb4,0xdf,0xa3,0xac,0x2d,0x04,0xde,0xbb,0x29,0x98,0x57,0x33, +0x0e,0x2c,0x2c,0xf2,0xfb,0xcd,0xf2,0x1b,0x95,0xc6,0xba,0xfa, +0xe6,0xda,0x1e,0x06,0x8c,0x3b,0x89,0x11,0x78,0xd0,0x5d,0x5a, +0x17,0x4d,0xaf,0xdb,0x55,0xf7,0xb1,0x47,0x5a,0xb4,0x07,0xcd, +0x2f,0x33,0x38,0x14,0x44,0x6c,0x44,0x7a,0x66,0x1a,0x8e,0x35, +0x16,0xec,0x95,0xe6,0x0b,0x7d,0x3d,0x97,0x78,0x36,0x8a,0xb3, +0x49,0x3f,0xfe,0x6c,0x72,0xef,0x10,0x6e,0xe7,0xac,0x46,0x7a, +0x64,0x4b,0xcd,0xcf,0xcb,0xac,0x70,0xd7,0x2d,0xda,0x68,0xfe, +0xa1,0xfd,0xb7,0x68,0x11,0x8f,0xf8,0x12,0x0c,0x82,0x02,0xd4, +0x9d,0x6b,0x2c,0xd9,0x27,0xdd,0x25,0x83,0xc9,0x17,0x98,0xfb, +0x22,0xca,0x52,0x12,0x30,0xa8,0xfc,0x42,0x8f,0x5b,0x0a,0x9a, +0x14,0xdc,0xd9,0x47,0x02,0x62,0x92,0x4a,0x54,0x7a,0xe1,0xad, +0x7d,0x34,0xb7,0x14,0xd7,0x13,0xd9,0xd2,0xfd,0xdc,0x52,0xb9, +0xdf,0x9f,0x43,0x6e,0x83,0x54,0x75,0xec,0xb6,0xdc,0x05,0xdc, +0xd6,0x53,0x45,0xa9,0x50,0xdc,0x46,0x40,0xd1,0xaa,0x34,0xda, +0xeb,0x92,0x51,0xaf,0x5b,0x16,0xdd,0xce,0xf5,0x9d,0xac,0x65, +0xd3,0xbe,0x1e,0xe3,0x0a,0x86,0x47,0x7c,0x17,0x08,0x74,0x73, +0x71,0xd8,0x4d,0xcb,0x74,0x20,0x81,0xa0,0x31,0x37,0x1f,0x8c, +0x79,0x94,0xba,0x9a,0xc4,0x9d,0x53,0xc8,0x2e,0x48,0x2f,0xae, +0x52,0x3a,0x67,0x72,0x86,0x36,0x0b,0xf4,0x58,0xe1,0xac,0x5c, +0x62,0xdd,0x51,0xd0,0x22,0x2d,0x2b,0x53,0x4c,0x4d,0x3d,0x97, +0x90,0x92,0x00,0xf3,0x34,0xd8,0xf2,0x16,0x7c,0xeb,0xfc,0xa9, +0xa4,0x98,0x73,0x27,0x4f,0x2a,0xe2,0xbf,0x71,0x05,0xd1,0x6f, +0x3f,0xd4,0x6a,0x58,0xe9,0x62,0xc6,0x5e,0xf4,0xb8,0x6e,0x3f, +0x6c,0xcf,0x4c,0x6e,0xf0,0x20,0xdc,0x75,0x4c,0xd5,0x12,0x4f, +0x1e,0x19,0x10,0x51,0x53,0x2b,0xe1,0x14,0xb1,0xde,0xa3,0xba, +0xf8,0xc0,0x81,0x5e,0x5b,0xf6,0xf6,0xfd,0xfb,0x30,0xb3,0xe5, +0x36,0x03,0xce,0xa7,0x09,0x5a,0xe3,0x0c,0xb0,0xa6,0x79,0x27, +0x69,0x4d,0xc0,0x9a,0xa7,0xc9,0xd6,0xf4,0xc8,0x7c,0xfe,0x60, +0x16,0x7f,0x20,0xd8,0x25,0x96,0x08,0x3e,0x73,0xe2,0xfa,0x7f, +0x7a,0xec,0x23,0xb4,0xcc,0x93,0x4b,0x26,0x42,0x3b,0xb5,0xf5, +0x30,0x0b,0xd6,0x0e,0xe2,0x5a,0xe0,0x3f,0x67,0x10,0xf7,0xbc, +0xd2,0xe1,0xfe,0x58,0x2f,0xfb,0x43,0x67,0x1d,0xae,0x31,0x86, +0x35,0x48,0xe3,0x42,0x63,0x58,0x88,0xb3,0x70,0xb1,0x31,0x08, +0xfb,0x69,0x23,0x45,0x93,0xb3,0x86,0x51,0x93,0xe2,0x06,0x65, +0xc7,0x48,0x6a,0x4d,0x72,0xcd,0x39,0x1e,0xce,0x18,0x0d,0x21, +0x67,0x04,0xd3,0xa9,0x28,0x1e,0x86,0xac,0xd9,0xbb,0xa5,0xc3, +0x91,0xed,0x1b,0x6e,0xbc,0x54,0x7c,0x93,0x01,0x96,0x3a,0xa5, +0x77,0x5c,0xdf,0x5f,0xe4,0x55,0xee,0x56,0xea,0x5a,0xec,0x66, +0xc5,0x36,0xfb,0xd6,0xf9,0x56,0x79,0xd8,0xab,0x1a,0x1c,0x39, +0xa0,0xd5,0x61,0xcb,0xc2,0x36,0x58,0xf6,0x10,0xb6,0x14,0x82, +0x2a,0xd3,0x29,0x6c,0x5b,0x9d,0x9c,0xcb,0xab,0x4a,0xeb,0xfe, +0xb1,0x7b,0x90,0x31,0x84,0x19,0xc2,0xaa,0x53,0xab,0xe0,0xab, +0x63,0x8c,0x20,0x66,0x3f,0x0d,0xaa,0x83,0x44,0xf7,0x30,0xd2, +0xc6,0x98,0x64,0x9b,0xcf,0x3b,0x8c,0xf9,0x25,0xdf,0x95,0xdd, +0xaa,0x61,0x9c,0xa1,0xb7,0x9a,0xbe,0xe3,0xf5,0x83,0x3f,0x7c, +0xe0,0x9f,0xc7,0x6b,0x5e,0x4a,0x3b,0x92,0x21,0x9d,0x1b,0x0c, +0x2e,0xc1,0x0f,0xc9,0x40,0x79,0x43,0x6d,0x51,0x0b,0x8f,0xc2, +0x8a,0xed,0x1a,0xdd,0x47,0x7c,0x18,0xde,0x33,0xb4,0x10,0x30, +0x99,0xf2,0x45,0x13,0x1a,0x76,0xc2,0x1a,0xe2,0xe8,0x53,0xe5, +0x53,0x14,0x50,0xe6,0xa1,0xc8,0x2b,0xd9,0x34,0x0a,0x4a,0xe6, +0xe3,0x34,0x9c,0x4d,0xb7,0x54,0x78,0xd7,0x04,0x4b,0xdc,0x2b, +0x14,0x65,0x1f,0xce,0xf7,0x75,0x0b,0x0a,0x76,0xf1,0xaf,0xf7, +0x60,0x71,0xb6,0xf0,0x8e,0x0f,0x71,0x1a,0x69,0x28,0x2b,0xad, +0x28,0xaa,0x70,0x2a,0x63,0xf9,0xa1,0x9e,0x46,0x71,0xb7,0xb9, +0x45,0xa4,0x5d,0x56,0x6c,0x33,0x0e,0xc3,0x53,0x4a,0x38,0x4c, +0xcb,0x1e,0x83,0x29,0xe1,0x8a,0xc7,0x64,0xc5,0x14,0x57,0xbc, +0x94,0xc8,0x8a,0x35,0xb9,0x62,0xf9,0x64,0xd3,0x23,0x2d,0x20, +0xb5,0x1f,0x6d,0x91,0xa7,0xd4,0x75,0xe9,0x5b,0xa2,0x54,0x10, +0x89,0xa6,0x90,0x68,0x2f,0x94,0x58,0x26,0x56,0x93,0xbf,0x75, +0xd2,0x07,0x76,0x90,0x29,0x6b,0x74,0x99,0xb4,0xa6,0x38,0x65, +0xf8,0x80,0x60,0x4e,0x1b,0xe4,0x50,0xa3,0xb6,0xa4,0x0d,0x2a, +0x6d,0x69,0xfc,0xd2,0x8e,0xd8,0x60,0x4e,0x3b,0x0d,0xb7,0xe6, +0x43,0xa5,0x0d,0x56,0x52,0x9c,0xfd,0x56,0x62,0xf5,0x2f,0x7e, +0xf8,0x54,0x37,0x93,0xa9,0x20,0xf4,0x9c,0x0c,0xa2,0xb8,0x55, +0x30,0x9f,0x60,0x59,0x07,0x94,0x51,0xa3,0xd6,0xa4,0x03,0x5a, +0xad,0x69,0xfc,0xc1,0x8e,0x58,0x62,0x59,0x17,0x0d,0x4f,0xe6, +0x43,0xab,0x25,0xb6,0x52,0x9c,0x27,0x7e,0x4c,0xfe,0xf5,0x71, +0xf7,0x9f,0x1f,0x53,0xff,0xb4,0xd6,0xc6,0x59,0x2c,0x24,0x2e, +0xfb,0x35,0xf7,0x6c,0xd3,0xae,0xb1,0x65,0xb3,0xd2,0xb3,0xd2, +0x33,0x33,0x18,0xac,0x92,0x2d,0x17,0x76,0xa7,0x4b,0x4b,0x24, +0x65,0xb9,0xc5,0x4c,0x07,0x06,0xd2,0x19,0x79,0x69,0xb9,0xa9, +0x79,0x0c,0xfc,0x31,0x35,0x9b,0x64,0x1b,0x28,0x80,0x1e,0xd5, +0x59,0x28,0xed,0x52,0x99,0x9c,0xa1,0x35,0x35,0x87,0x46,0x17, +0xd9,0x75,0xc2,0xd9,0x5c,0x90,0xd9,0xd0,0x58,0xea,0x42,0xa2, +0x42,0x82,0xfd,0x84,0x36,0x79,0xc6,0x94,0xb4,0x48,0x52,0x9c, +0x5f,0xcc,0x18,0xca,0xc9,0xc7,0x9c,0xad,0x74,0xff,0xfc,0x67, +0x30,0x7b,0x2b,0x8d,0xdd,0xb8,0x88,0xbc,0x82,0x39,0xeb,0xf8, +0x13,0xaf,0x60,0xf6,0x3a,0x9a,0x9b,0x83,0x45,0xa4,0xb1,0xaf, +0xf6,0x9a,0x64,0x44,0x5c,0xc4,0x86,0x8a,0x5c,0xb4,0x5c,0x2c, +0x18,0xd9,0x1e,0x58,0x4e,0x8a,0x9d,0x2b,0x8c,0xf2,0xac,0x7b, +0x79,0x38,0xd6,0xeb,0xd3,0xe3,0xdf,0xc0,0xfb,0xd2,0x40,0x52, +0x68,0x53,0xa0,0x93,0x65,0x34,0x98,0xc3,0x46,0x8e,0x05,0x0f, +0x05,0x77,0x32,0xb8,0x3b,0x92,0xa4,0x9b,0xa7,0x1d,0x4e,0x14, +0x0d,0xa7,0xb2,0xa7,0xc7,0x4e,0x5c,0x89,0xee,0x65,0x84,0xb5, +0x2b,0x1e,0x0f,0x1a,0x62,0xf5,0x08,0x2f,0x84,0x05,0x38,0x61, +0xdb,0x49,0xb5,0x20,0xb2,0x06,0x31,0x8b,0xe2,0xc6,0xb0,0x8f, +0x4c,0x86,0xc3,0xa1,0xa9,0x70,0x0a,0x42,0x2d,0xc8,0x2e,0xdc, +0xff,0x88,0x96,0x29,0xef,0x22,0xb8,0xf7,0x11,0xec,0xa5,0x86, +0x76,0x91,0x47,0xa0,0xbe,0x8b,0x9e,0x3a,0x82,0x61,0xe4,0xfe, +0xe4,0xa9,0x7d,0xe3,0x30,0x7f,0x0a,0x71,0x3e,0x3d,0x59,0xee, +0x4a,0xfa,0xa6,0xf4,0x4c,0x61,0x31,0x2d,0xd6,0x39,0xec,0x80, +0xef,0x3a,0x48,0xad,0xd8,0x4b,0x92,0x89,0xb2,0x81,0x5a,0x5e, +0x57,0x28,0x4f,0x1b,0x3b,0x67,0x43,0x0f,0xdf,0x52,0xb7,0x4a, +0xf7,0x52,0x1b,0x1f,0xb6,0xd2,0xbf,0xca,0xb7,0xc2,0xcf,0xd0, +0xff,0x48,0xf0,0x8e,0x30,0xa9,0x19,0x0b,0x11,0xdd,0xa0,0xf2, +0x64,0x02,0xde,0x65,0x1a,0xd1,0x96,0x96,0x14,0xe4,0x4b,0x72, +0x8a,0x18,0xb8,0x8e,0x95,0xc4,0x36,0x2a,0xa3,0x5e,0xa5,0x9b, +0xfe,0xa3,0xe0,0x97,0x8a,0xaf,0x9a,0xbd,0x3b,0xd8,0x5d,0xce, +0x5b,0x02,0x96,0x85,0x30,0xbf,0xe8,0xa1,0x3d,0xad,0x53,0xe2, +0xf5,0x48,0x19,0x6c,0xa8,0x0e,0x69,0x41,0xb3,0xca,0x5d,0x5a, +0x4f,0xa2,0xb0,0x9c,0xfe,0x47,0xa4,0x17,0x8c,0x9d,0x04,0x5e, +0xfe,0xf1,0x75,0xff,0xfa,0x5f,0xf1,0xa5,0x30,0x11,0x5f,0x9a, +0xc1,0x4b,0x11,0xb7,0xd1,0x44,0xb6,0x51,0x0f,0x5f,0x9a,0xc3, +0x4b,0x34,0x13,0x0a,0x7b,0xe7,0x7f,0x96,0x7f,0xb6,0x80,0x01, +0xcb,0xdf,0x8c,0xf4,0x70,0xc5,0xb8,0xe1,0x4e,0x0a,0x67,0x46, +0xec,0x3e,0xb6,0x55,0xb9,0xd3,0xb6,0xac,0xae,0xa0,0x2e,0xa7, +0x41,0x11,0x8e,0xac,0x1f,0xe1,0x01,0x96,0x37,0x95,0x94,0x9f, +0x94,0x9f,0x98,0xcf,0x40,0x3f,0x9a,0x8e,0x82,0x29,0x5c,0x30, +0x41,0x6f,0x54,0x19,0xf9,0x1a,0xb6,0xaf,0x3c,0x2f,0x5b,0x6e, +0xa0,0x8b,0x3b,0xc6,0x44,0x8b,0xc1,0x5b,0x8c,0x17,0x28,0xa8, +0x93,0xad,0x27,0x22,0xac,0xe3,0x11,0x55,0xdd,0x22,0xa2,0x87, +0x75,0x02,0xa6,0x53,0x13,0xfa,0x9f,0xeb,0x62,0xf5,0x38,0x2f, +0x12,0x4c,0x20,0x41,0x6f,0x54,0xf8,0xf1,0xbc,0xc8,0xe9,0xc7, +0x1c,0x2a,0x1b,0x75,0x48,0x2c,0x6d,0x14,0xe6,0x8f,0x0a,0xc6, +0xca,0xe5,0xd6,0xc3,0xa5,0x9d,0x95,0x65,0x15,0x8a,0x42,0xc5, +0xef,0xf4,0x58,0x98,0xb3,0x83,0xad,0x6b,0xc4,0x19,0xf7,0x22, +0xd2,0xe5,0x9b,0x5c,0xe5,0x2d,0xc5,0x33,0x0b,0x93,0x0b,0x2b, +0x94,0xd2,0x60,0x67,0x37,0xb7,0x6c,0x5c,0x57,0x97,0x23,0x16, +0xb0,0xec,0xff,0xd7,0x07,0x68,0xa1,0xb6,0xd0,0x9b,0x76,0x7e, +0x2f,0xb7,0x1f,0xb4,0x69,0x7c,0x3e,0xb5,0x91,0xf4,0x4f,0x32, +0x26,0x17,0x64,0x1f,0x4c,0xc5,0x70,0x1f,0xd0,0x93,0x47,0xe0, +0x39,0xc1,0x13,0x53,0x0c,0x9c,0xa0,0x65,0x39,0x42,0x4f,0xbe, +0x55,0xdc,0x3a,0x9e,0x0c,0xc3,0xef,0x7f,0x10,0x4d,0xec,0xbd, +0x44,0xbf,0xd9,0xbf,0x2d,0x40,0x80,0xa6,0xc3,0x68,0x22,0x92, +0x39,0x0f,0xa3,0xf3,0x13,0xa7,0x8b,0xf2,0xdd,0x2f,0x6f,0x16, +0xd9,0x74,0xde,0x14,0x3a,0xe6,0x4d,0x1c,0x8d,0x03,0x04,0x4e, +0x0a,0x69,0x19,0xc5,0xd9,0xe5,0x69,0x52,0x83,0x1c,0xf6,0xa4, +0x5f,0xb8,0x47,0x88,0x17,0xb3,0x64,0xea,0x83,0xf1,0x3e,0xa8, +0x80,0x42,0xac,0x78,0x2a,0xb4,0x01,0xd4,0x26,0xc8,0xa2,0x25, +0xb0,0xb4,0x2c,0x1c,0x3f,0x25,0xd1,0x4d,0x41,0x83,0x61,0xb5, +0xa2,0x10,0xb6,0xc0,0x55,0x6a,0x94,0xee,0xca,0xc8,0xa8,0x48, +0x82,0xcb,0xa9,0xe2,0xce,0xbc,0xee,0x9c,0x0e,0xfd,0x3c,0x36, +0xca,0x22,0xc4,0xd4,0x57,0xc4,0x60,0xaf,0x08,0xdc,0x70,0x3a, +0x8a,0x45,0x20,0x46,0xdd,0x71,0xd0,0x05,0xe1,0xb7,0xc0,0x74, +0x08,0xa3,0xb8,0x27,0x98,0x48,0xd0,0x1d,0xb6,0x80,0x3b,0x35, +0x47,0x36,0x0a,0xb3,0x48,0x17,0xb6,0xd2,0x59,0x79,0x59,0xf9, +0x19,0xbc,0x4a,0xbb,0xf3,0xbc,0xc7,0xa4,0x15,0x34,0x5f,0x0c, +0x74,0x88,0x9f,0xa1,0x66,0x5b,0xf5,0x28,0x14,0x0a,0xd4,0x3e, +0x67,0x08,0x73,0x84,0x85,0x95,0x42,0x41,0xc4,0x1a,0x41,0xac, +0x61,0x90,0x35,0x1e,0xda,0x2a,0xb2,0x1e,0xde,0x08,0x87,0xec, +0xd0,0x04,0x3f,0xe1,0x15,0x25,0x3a,0x3c,0x32,0x2c,0x22,0x8c, +0x87,0x88,0x96,0xf0,0x1e,0x15,0xe4,0x1f,0x18,0x18,0x12,0xdc, +0x1d,0xd5,0x1f,0xde,0x7f,0xdc,0x30,0x58,0x3d,0x72,0x77,0x74, +0xae,0x39,0xfb,0x5b,0xde,0x53,0xe9,0x95,0xda,0xab,0x81,0x97, +0xfd,0x87,0x83,0x8a,0x3b,0x58,0xe3,0x02,0xe3,0x42,0x93,0xfc, +0x96,0xf2,0xea,0xda,0x92,0x16,0x06,0xae,0xd6,0x90,0xa1,0x17, +0x95,0xbf,0xe6,0x00,0xcb,0x5c,0x1e,0xc4,0x42,0x2a,0xa3,0x2e, +0xbd,0x21,0xa5,0x51,0x94,0xca,0x1e,0x5f,0x61,0x8f,0xef,0x1e, +0x5a,0xd3,0xe9,0xcc,0x16,0x96,0x16,0x54,0xe6,0xd5,0x14,0xee, +0xab,0xda,0xd7,0x75,0xd0,0x52,0x5d,0x47,0x6f,0xaf,0xa8,0xde, +0x94,0x7d,0x30,0x3a,0x3e,0xda,0x7d,0xb1,0x4b,0x7b,0x4c,0xf7, +0x8e,0x41,0x7d,0x1f,0x7b,0xf0,0xbc,0xde,0xb8,0xc5,0x25,0x86, +0x4b,0x97,0xcd,0x22,0x38,0xb7,0x03,0xe6,0x52,0x7d,0x82,0x6d, +0xfc,0x88,0xb7,0x8d,0xe7,0x79,0xf7,0x39,0xd7,0x1c,0xe7,0x52, +0x70,0xb0,0x87,0xc0,0x47,0xe6,0x42,0x1f,0xf6,0xe7,0x95,0x24, +0x39,0x47,0x01,0x36,0x53,0x27,0x16,0x07,0x6c,0xb6,0xdb,0x67, +0xf1,0xd0,0xeb,0x59,0xc4,0x4b,0x86,0x9b,0x8f,0xeb,0x88,0x31, +0x2e,0x1d,0xa4,0xe1,0xa5,0x31,0xe1,0xff,0xc2,0x52,0x0a,0xcb, +0x30,0x9a,0x64,0x65,0xe5,0xe4,0xe5,0xf0,0x5a,0x72,0x84,0x0a, +0x70,0xf5,0xf0,0xb5,0x0f,0xb4,0xce,0xb1,0xcd,0x76,0x4c,0xff, +0x6b,0x51,0xf5,0xaf,0xba,0xa5,0x42,0xd6,0xde,0x7d,0xbd,0x7d, +0x28,0x15,0x84,0x90,0xbb,0x79,0x84,0xde,0x96,0x4b,0xec,0xf6, +0x6a,0xef,0x3f,0xa8,0xdb,0x60,0xc5,0x7e,0x75,0x77,0xfc,0xf3, +0x96,0x07,0xcc,0xa4,0xc9,0xd4,0x6a,0xa2,0x7b,0xd1,0x62,0xdc, +0xf1,0x42,0xcf,0xcb,0x92,0x5f,0xb3,0x40,0x89,0xe9,0x1a,0x40, +0x27,0x2a,0xbd,0x3e,0xa5,0x21,0xb9,0xce,0x38,0x95,0x3d,0xb1, +0xc6,0x19,0xdf,0x31,0xda,0xce,0xe4,0xe3,0xf7,0x26,0xf0,0x7d, +0x16,0xdd,0xe0,0x9b,0x53,0x94,0x53,0x9c,0x55,0xa6,0x98,0xbb, +0xaf,0xe4,0x70,0xc3,0x11,0x07,0x75,0x63,0x3d,0x35,0xc3,0x26, +0x6b,0xf6,0xf2,0x48,0xff,0x70,0xf3,0x78,0x83,0x41,0x87,0xe1, +0xb0,0x3e,0x33,0xf5,0xa1,0xec,0x34,0x81,0x67,0x70,0xc0,0x18, +0xe7,0x6e,0x86,0x5d,0xc6,0xb8,0x6b,0x2b,0xcc,0x35,0xa6,0xe4, +0xd5,0xeb,0x13,0xd3,0xce,0xa5,0x25,0xa6,0x31,0xfc,0x88,0xc4, +0x2c,0x09,0xd9,0xe2,0xba,0xcf,0xf5,0x56,0xc0,0xc3,0xc8,0x57, +0x0c,0x77,0x22,0x8e,0x58,0x6d,0x55,0xdb,0x78,0xd8,0xb0,0xde, +0x92,0x2d,0x96,0x94,0x96,0x94,0x94,0x31,0x78,0x7d,0x58,0xf6, +0x01,0x5d,0xde,0x50,0xd2,0x5c,0xd8,0xcc,0xc8,0x16,0xe1,0x65, +0xe2,0x1b,0xe1,0x11,0xe1,0x16,0xc9,0xf0,0xdc,0xb9,0x80,0xc6, +0xf5,0x91,0xa2,0xdd,0x5a,0xca,0x4d,0xd6,0x0a,0xf7,0x2f,0xd7, +0x3e,0x14,0x5a,0xcf,0xaf,0xc7,0x65,0x94,0xf7,0x09,0xef,0x93, +0x3e,0x31,0xf9,0xc6,0xec,0xbd,0x92,0xaf,0x6a,0x27,0xe4,0x9b, +0x20,0x26,0xdf,0x21,0x42,0x7d,0xa8,0xfe,0x03,0xa8,0x2b,0x92, +0xe9,0x0f,0xa3,0xd9,0x13,0xd3,0x4b,0xff,0xb9,0xe6,0xac,0x2a, +0x14,0xa1,0xaf,0x26,0x90,0x80,0x0f,0xd0,0x94,0xc6,0xb9,0x01, +0x38,0x43,0x67,0xa9,0xf2,0x80,0x43,0xc3,0x85,0x92,0x1b,0xb9, +0xb7,0x15,0x71,0x68,0xb4,0x17,0xc2,0xa0,0x19,0xeb,0xe9,0xe4, +0xaa,0x73,0xd5,0x89,0x55,0x0c,0xd8,0x01,0x4f,0xe2,0x3e,0x46, +0x5b,0xa1,0xa8,0x6f,0x30,0x1e,0xfd,0x0f,0xb5,0x80,0x5f,0x78, +0xb5,0x50,0xfe,0x4f,0xb5,0xa8,0x17,0x81,0x2d,0xaf,0x16,0x3a, +0x22,0xd0,0x79,0xa3,0x16,0x66,0xfc,0x6f,0xe2,0xd5,0xc2,0x93, +0xe2,0x26,0x0e,0x13,0x3c,0x82,0x07,0x84,0x82,0x64,0xf0,0xe7, +0x24,0x21,0xd7,0x20,0x5b,0x48,0x07,0x10,0x0a,0x30,0x09,0x35, +0x09,0xb2,0x6f,0xf2,0x88,0x24,0xd1,0x08,0x12,0x8f,0xd2,0x93, +0x8a,0x3e,0x84,0x0b,0x13,0xf3,0xfa,0x73,0x22,0x20,0x3a,0x30, +0x32,0x90,0xc1,0x65,0xdc,0x36,0xd9,0x66,0xd9,0x36,0x74,0xa0, +0xb2,0x8b,0x32,0x8b,0x32,0x8a,0x19,0x70,0xa4,0xb8,0x49,0x34, +0x26,0xe1,0xd9,0xe1,0x39,0x61,0x39,0x7d,0x6d,0x7d,0x43,0x8d, +0xa3,0x4c,0xbb,0xb0,0xb8,0xda,0x40,0x7b,0x3b,0xd8,0xdb,0xdb, +0xbb,0xbb,0x94,0xbb,0x94,0x7a,0x17,0x38,0x3b,0xb0,0x7d,0x6e, +0x3d,0x2e,0x9d,0x8e,0x0c,0xda,0x8b,0x61,0x1b,0x3e,0xc4,0x05, +0x54,0x21,0x4f,0x09,0x19,0xaa,0xad,0x20,0xb7,0x5d,0x05,0x6e, +0xc3,0x7b,0x74,0x80,0xb9,0x97,0xbd,0xa3,0x75,0xbf,0x1b,0xdb, +0x39,0xdc,0x38,0x51,0x3c,0xce,0xb4,0xd2,0xaf,0x53,0xc9,0x0d, +0x18,0x50,0xa3,0xcd,0x67,0x1c,0xc4,0x81,0x3b,0x34,0xce,0x99, +0x01,0x03,0x7b,0x71,0x80,0xc2,0x05,0x68,0x4b,0x9e,0x56,0xdc, +0xac,0x3b,0xdf,0xec,0xda,0xc9,0x9a,0xb8,0xec,0x71,0xd9,0xcf, +0x53,0xaf,0xd7,0xbd,0xe4,0xb2,0xf7,0x3d,0xa7,0x31,0xc7,0x9a, +0x1e,0x56,0xa3,0xf9,0x60,0xa3,0x4e,0x11,0xf3,0x57,0x80,0x44, +0x58,0x01,0xd7,0xd5,0x95,0xa7,0xbe,0x1a,0x8e,0x8f,0x80,0x54, +0x28,0xc4,0x20,0xe4,0x65,0x0b,0x45,0x57,0x75,0x78,0xcf,0xd6, +0x6a,0x0a,0x7f,0x8a,0xb9,0x05,0x68,0x32,0x06,0x9f,0xc2,0x53, +0x21,0xdb,0xd6,0x0c,0x7e,0xc2,0x4f,0xc7,0xc0,0x84,0x5b,0x3d, +0x40,0xe3,0x33,0x5c,0x48,0xac,0xc0,0xb5,0x93,0x06,0xf5,0xf9, +0x56,0x10,0xdc,0x49,0x73,0xab,0x91,0x25,0x9d,0xe8,0x6a,0x45, +0xcb,0xfe,0x3d,0xbf,0x13,0x83,0xac,0x68,0xee,0x23,0x4e,0x89, +0x74,0xc9,0xfe,0xb0,0x1c,0x83,0x87,0x53,0x1e,0xf8,0x90,0x86, +0xc7,0xe0,0x42,0xb0,0xe4,0x2a,0x94,0x50,0x43,0xea,0xe4,0x2a, +0x34,0xa9,0xd3,0xf8,0xb5,0x15,0x39,0x88,0x25,0x77,0x68,0x78, +0x30,0x1f,0x9a,0x0e,0x62,0x93,0x1c,0x41,0x29,0xf1,0xb7,0x28, +0x51,0x93,0xa8,0xa3,0x89,0x29,0x98,0x1c,0xc0,0x30,0xa1,0x03, +0x76,0x84,0xae,0xbe,0xdd,0x5a,0x97,0x2a,0x0b,0xf6,0x75,0xf3, +0xc3,0xd1,0xfc,0x67,0xcc,0x6b,0x75,0xca,0xa8,0x20,0x64,0x4c, +0xf9,0xc7,0xbf,0xb7,0x0f,0x59,0x64,0x2b,0xe8,0xac,0xa6,0x7d, +0x63,0x92,0x4a,0x55,0x26,0x40,0xa3,0x1f,0xcf,0xdc,0x05,0xaf, +0x3e,0xf4,0xba,0x19,0x76,0x45,0x8e,0xfa,0xaf,0xeb,0x1c,0x41, +0xc9,0xdf,0x21,0x21,0x35,0xba,0x08,0x7f,0x20,0x27,0xb2,0xa3, +0x3f,0x8b,0x8a,0x8e,0x88,0x64,0xe3,0x1e,0xc2,0xec,0x01,0x1e, +0xf8,0xf1,0xd6,0x22,0xb3,0x3b,0xa7,0x21,0xdf,0xbf,0x87,0xdd, +0xe9,0x84,0x0b,0x82,0x37,0x9f,0xca,0x12,0xb3,0xcd,0x49,0x9d, +0xc9,0x1d,0x69,0x0c,0x2a,0xe0,0x7a,0x31,0xef,0xec,0xc3,0x77, +0x5a,0xaf,0x5c,0x8c,0x33,0xdb,0xec,0xd9,0xd7,0xf0,0x76,0xc9, +0xdd,0xb4,0xdb,0x3c,0x31,0xfc,0xf7,0x08,0x3c,0xa7,0xd2,0x92, +0x3f,0x4b,0x8a,0x55,0xfe,0x06,0xdf,0x6d,0x6b,0x52,0x90,0x75, +0xa2,0x1d,0xd9,0x23,0x39,0x22,0xd1,0x29,0xbf,0xdc,0x3c,0xd8, +0xd5,0x30,0xc4,0x34,0x63,0x03,0x9d,0x95,0x9f,0x55,0x90,0x51, +0x60,0x9a,0xcf,0x9a,0xef,0x3a,0xac,0xbd,0xca,0xba,0xdc,0x82, +0xed,0x90,0xb6,0x96,0x35,0x56,0x57,0x3b,0xd7,0x7a,0xd5,0xf9, +0xed,0xf3,0x58,0xef,0xb7,0x38,0x32,0x57,0xcc,0xc2,0x3b,0xf9, +0x7f,0x54,0x7e,0xd5,0x76,0xdb,0xfe,0x0b,0xbf,0x6f,0xfd,0x19, +0x6e,0x1a,0x9c,0x21,0xe7,0xce,0x29,0xc0,0x39,0xca,0xdd,0xd9, +0xd2,0xd5,0xc0,0xd3,0xa6,0xd4,0xa1,0xc6,0xf9,0xcd,0x7e,0x92, +0x59,0xbc,0xbf,0x91,0x0a,0x38,0x5a,0xc8,0x59,0xfe,0x5c,0x6f, +0x37,0x4a,0x3f,0xd7,0xdd,0x8d,0x67,0x8d,0x05,0xca,0x29,0x93, +0xe2,0xfb,0x04,0x66,0xf7,0xe2,0xec,0x47,0x86,0xbb,0x70,0xd5, +0x23,0xd1,0x2e,0x9c,0x66,0x06,0xd3,0x56,0xe1,0x7b,0x26,0x32, +0x49,0x3f,0x7e,0x42,0x71,0x4d,0x3c,0xa2,0x89,0xbd,0x04,0x5b, +0xfa,0x71,0xcb,0x73,0x50,0xe9,0x47,0x95,0x6f,0xa8,0xc1,0x94, +0xbe,0xb4,0xae,0x8c,0xc8,0x5e,0xd6,0xf6,0xa4,0x65,0xac,0x79, +0x2c,0x33,0x68,0xa8,0x47,0x1b,0xc7,0x8b,0x12,0x44,0xa7,0x93, +0x4d,0xd8,0xc1,0xc4,0xc1,0xc4,0x81,0x64,0x66,0x13,0xae,0x34, +0x81,0x95,0x9b,0x50,0xd5,0x04,0xd6,0xd3,0x81,0xaa,0x46,0x87, +0xd6,0xef,0x69,0xb2,0x61,0xbf,0x7b,0x56,0x7b,0x31,0xeb,0x3e, +0x3f,0x16,0x15,0x23,0x10,0x4c,0xa5,0x24,0x7f,0x96,0x1c,0xab, +0xcc,0x73,0x95,0x39,0xed,0x2d,0x48,0xc1,0xac,0xe8,0xac,0x93, +0x67,0xa3,0xa3,0x15,0x65,0x6e,0x70,0x85,0xac,0xc2,0x55,0xdf, +0xd1,0x47,0xb9,0x7b,0x64,0x10,0xfa,0x8c,0x47,0x64,0x14,0xb7, +0x86,0xa3,0x68,0xf8,0x8d,0xa7,0x3f,0xd8,0xfb,0x08,0x7a,0x29, +0xec,0x45,0x42,0xa0,0x77,0x33,0xca,0x0b,0xc7,0xf2,0xca,0x78, +0x15,0xaa,0x85,0xe8,0x9d,0x80,0xd6,0x04,0xea,0x56,0x2d,0xaf, +0x4b,0xca,0xe3,0x38,0x75,0x1a,0xc2,0xdc,0xc8,0x6d,0x6d,0x55, +0x6e,0xa9,0xe9,0xbf,0x66,0xf4,0xd1,0xdc,0xc3,0xad,0xa4,0xc6, +0xb7,0xd2,0x4d,0xe2,0xd1,0x56,0xce,0x86,0x94,0xbb,0x35,0x79, +0x97,0x30,0xa0,0x71,0x86,0x84,0x7b,0x79,0xf2,0x44,0xb7,0xd9, +0x93,0xad,0xad,0xac,0xaa,0x95,0xd4,0x30,0x60,0xa1,0x47,0xaa, +0x52,0xab,0xd2,0x2a,0xd2,0x5d,0x1b,0xd8,0xa3,0xc1,0x9b,0x22, +0x56,0xc5,0x32,0xb8,0x99,0x0e,0x3e,0x1d,0x72,0x3a,0xec,0x4c, +0x8a,0x35,0x7b,0x21,0xe9,0xa7,0xac,0x89,0x9c,0xd8,0x36,0xd6, +0x35,0xc6,0x21,0xd6,0x9e,0x27,0xdb,0x0a,0x74,0x6d,0x62,0x4d, +0x52,0x75,0x72,0xfe,0xde,0x56,0xd5,0x6f,0xc5,0x95,0x6d,0xec, +0xb6,0x6e,0xd7,0xd1,0x88,0xcb,0x0c,0x77,0x2e,0x84,0xb8,0x9d, +0xf1,0x8c,0x0b,0x54,0xf6,0x8d,0x3b,0x19,0xeb,0xb1,0x40,0x95, +0xca,0xb0,0x56,0xb8,0x43,0x5d,0xc8,0x93,0xb6,0xa5,0xa9,0xa4, +0x36,0x9c,0x6d,0xbf,0xa8,0x84,0xe3,0xd6,0xdf,0x52,0xf1,0x1a, +0xee,0x36,0x9b,0x6d,0xca,0x6d,0xd9,0xef,0x7b,0xba,0x26,0x52, +0x9e,0x30,0x70,0x3a,0x8a,0x47,0x97,0x23,0xb0,0x97,0x46,0x09, +0x06,0x90,0x4e,0x3d,0x33,0x7a,0x73,0xc8,0xa1,0xd5,0xbb,0x79, +0xb0,0xd5,0xd1,0x58,0xd9,0x24,0x69,0x56,0x94,0x35,0xe0,0x8c, +0x09,0xf8,0x46,0xc7,0x80,0xe2,0xf2,0x70,0x0e,0x49,0x2b,0x49, +0x2a,0x4d,0x2c,0x61,0x64,0x89,0xaa,0xd4,0x3f,0x45,0x1a,0x64, +0xa7,0x9b,0x49,0x79,0x50,0x71,0x60,0x89,0x4f,0x6b,0x15,0xeb, +0x57,0xe9,0x5d,0xea,0x9f,0xcb,0x0c,0x4d,0x89,0x88,0x5b,0xbd, +0x5f,0x6b,0xe8,0x40,0xff,0xeb,0xaa,0xdf,0x8a,0x60,0x9a,0x69, +0x2e,0x1b,0xb6,0x39,0x70,0x87,0xeb,0x5e,0x26,0xf4,0xcb,0x18, +0xde,0x02,0x2e,0x53,0x82,0xbd,0x43,0xb8,0xf7,0xb2,0xa1,0x06, +0xcf,0x17,0x3e,0x5d,0x06,0x9a,0x22,0x8c,0x84,0x8d,0x94,0xf7, +0x67,0x3e,0x67,0xfc,0x94,0xd1,0xc2,0xe4,0x0e,0x15,0x87,0xb3, +0x3d,0x77,0x59,0x6b,0x74,0xda,0xb2,0x43,0xcf,0xaa,0x5e,0x24, +0x83,0x22,0x73,0x9d,0x3f,0xc7,0x86,0x6d,0xb1,0xdf,0x3e,0xe0, +0xc8,0x8e,0xc2,0x7b,0x39,0xb0,0x14,0x02,0x95,0x60,0x9e,0x6c, +0x13,0x7d,0x16,0x0f,0xa7,0xe3,0x27,0x35,0x4b,0x02,0x1d,0x7d, +0x9c,0x3d,0x5c,0x98,0x96,0x45,0x2f,0xbf,0x05,0xad,0x35,0x5f, +0xfe,0xde,0x8b,0xd7,0xb9,0x9c,0xa1,0xf3,0x90,0x4a,0x47,0x84, +0x47,0x84,0x1f,0x8f,0x68,0x72,0x62,0xbb,0xdb,0x9b,0x3a,0x6b, +0x7a,0xf3,0x1d,0x8a,0xdc,0x2a,0xbc,0x9b,0x6c,0x7a,0x73,0x53, +0xfb,0x25,0xb0,0x96,0x35,0x2d,0x55,0xe0,0x3e,0x81,0xdd,0x64, +0xe9,0x97,0xbf,0x50,0x4b,0xf9,0x01,0x7a,0x01,0xe6,0x1b,0xe9, +0xd5,0x16,0x64,0xc3,0xd2,0x97,0xf4,0x3f,0x11,0xac,0xc9,0x99, +0xbc,0x7d,0x5e,0x5d,0xaf,0xeb,0xc2,0x29,0x59,0xcb,0x94,0xec, +0xf0,0x0f,0xeb,0xc9,0xb2,0x0e,0x8e,0x6e,0x95,0xad,0xa6,0x76, +0xe1,0x3b,0x64,0x4a,0x0b,0x3f,0x98,0xd4,0xa2,0x74,0x9e,0x12, +0x1b,0xee,0x16,0xcf,0xaf,0x2e,0x0a,0x2d,0xa3,0xbf,0xe9,0xc2, +0x6f,0xfa,0xa8,0x57,0x89,0xcf,0xcf,0x3d,0x4a,0x2a,0x0d,0x2b, +0x0a,0x93,0x84,0x36,0xd4,0xb1,0xe6,0xcd,0xa6,0x75,0x86,0x95, +0x0c,0x2c,0x2a,0x1b,0xfd,0x71,0xea,0x8f,0x15,0xa3,0xbe,0xe0, +0x44,0x05,0x84,0xfa,0x86,0x79,0x87,0x31,0x67,0xcc,0xcd,0x3f, +0x33,0x5b,0x90,0x6c,0xad,0x00,0xef,0x00,0x73,0x36,0x11,0xa6, +0xab,0x98,0xe1,0x43,0x4b,0x78,0x68,0xc9,0x6d,0xb4,0xf8,0x97, +0x52,0x37,0x77,0x90,0x86,0x5f,0xa0,0x9a,0x4c,0x45,0x34,0x4e, +0x46,0x50,0xf8,0xe9,0x6e,0xe2,0x12,0xd8,0x10,0x84,0xfc,0x78, +0x7d,0x94,0x80,0x2a,0x67,0x14,0xcb,0xf2,0x8b,0xf2,0x8b,0x0a, +0x98,0x39,0xff,0xfa,0xe4,0x24,0x51,0xa3,0x3c,0x4f,0x08,0x7d, +0x2b,0x9c,0x78,0x7e,0xfe,0x1a,0xcd,0xe9,0xec,0x92,0x8c,0xf2, +0xd4,0x22,0x83,0x74,0xb6,0x5d,0x4e,0xe7,0x6f,0xeb,0xa8,0x62, +0x89,0x30,0xdf,0x4f,0x8b,0xe0,0xf4,0xe1,0xf1,0x9b,0x50,0x72, +0xb8,0x9f,0x8e,0x0d,0x3b,0x15,0x72,0x32,0x94,0xc1,0x1d,0xf8, +0xfa,0x29,0x15,0x8f,0x8b,0x3d,0x8d,0xf0,0xa3,0x23,0x0d,0xa6, +0x2c,0x2c,0x7e,0xd0,0x72,0x23,0x19,0x76,0x33,0xbf,0xa0,0x0f, +0xa5,0x53,0x1c,0x7c,0x51,0xf9,0x1e,0xd5,0x96,0x27,0x6c,0x63, +0x9a,0x26,0xec,0xf7,0xe0,0x42,0x64,0xb5,0x64,0x99,0x35,0x2e, +0xf0,0xc5,0x05,0x51,0xd9,0x46,0x2c,0x28,0xe5,0xc2,0xf2,0xca, +0x5f,0x7b,0x99,0xcd,0xbc,0xbe,0x45,0x94,0x86,0x94,0x05,0x17, +0x59,0xf9,0xb1,0x12,0xff,0xdc,0x90,0x02,0x4f,0x46,0xd6,0x76, +0x93,0x6c,0xc0,0x4b,0x2f,0x69,0xf4,0xe5,0x09,0xe4,0x50,0x49, +0x5f,0x65,0x47,0x9d,0x77,0x2b,0xbb,0x6c,0x3f,0x2e,0x32,0xc2, +0x0d,0x6e,0x85,0x62,0xf6,0x76,0xc1,0x4d,0xe9,0xe5,0xb2,0x9c, +0x90,0xec,0xd0,0xcc,0xd0,0x23,0xd6,0xeb,0x1c,0x91,0xf1,0x90, +0xc8,0x2b,0x4f,0xfe,0xd8,0x7a,0xbd,0x27,0x23,0x30,0xcd,0x3f, +0xc5,0xef,0x80,0x1e,0x4e,0x37,0xc7,0x0f,0x1c,0xa5,0xbc,0x4d, +0xa3,0x1a,0x60,0x7a,0xef,0xed,0x31,0xe6,0xec,0xa9,0xcf,0x4e, +0x9e,0x54,0x5a,0x16,0xee,0xbd,0x4e,0x79,0xa7,0x50,0x11,0xf2, +0x2e,0x05,0x73,0xeb,0x9a,0x61,0x21,0x28,0xd8,0x3f,0xd6,0xfd, +0x5c,0x65,0x71,0x33,0x09,0x6e,0x0c,0x97,0xf8,0x56,0x58,0xfa, +0xb3,0x25,0x3e,0x79,0x81,0x12,0x17,0x66,0xf2,0x40,0x10,0xf9, +0x14,0x2f,0x7d,0x2f,0xcf,0xac,0x7e,0xf4,0x66,0x17,0x98,0xee, +0x41,0xb9,0x95,0xfb,0xef,0xbc,0x3d,0xc1,0x71,0x61,0x36,0x37, +0x93,0xf4,0xe1,0x92,0x17,0xf4,0x90,0xd0,0xa9,0xf2,0x8d,0x19, +0x33,0x8f,0x31,0x8b,0x63,0x46,0x0d,0x35,0x69,0xa3,0x38,0xde, +0x8c,0x9d,0x91,0x9b,0xb1,0x21,0xc1,0x8c,0x6d,0xc3,0x0d,0xa6, +0xb0,0x61,0x2d,0x1e,0x32,0x81,0x0d,0xb4,0xff,0x21,0xdd,0x83, +0x1b,0xf6,0xb6,0x58,0xb3,0x3f,0xbf,0xac,0x9f,0xc8,0xb8,0xcb, +0x9b,0xb1,0xba,0x11,0x08,0x17,0xcc,0x58,0x52,0x9c,0xf2,0x2f, +0xf8,0x4e,0x5b,0xf3,0x12,0xa0,0x4f,0x64,0x9e,0x3c,0x1b,0x15, +0xad,0x18,0x11,0xa5,0x10,0x77,0x09,0xd6,0xf5,0xe3,0xba,0x6f, +0xa8,0x49,0x05,0x5d,0x02,0x2d,0xdc,0x3e,0x6c,0x01,0x8d,0x63, +0xe8,0x80,0xdf,0x8e,0x40,0x27,0xac,0x41,0x8a,0xb6,0x8b,0xb7, +0x8b,0x77,0x3a,0x9d,0x6a,0xc2,0xde,0x49,0xf9,0x25,0xeb,0x51, +0x4e,0x6a,0x78,0x4a,0x78,0x4a,0x44,0xbb,0x84,0x0d,0xe9,0xf1, +0x3a,0xef,0xdb,0x6c,0x13,0xc2,0x66,0x85,0x66,0x86,0x64,0x04, +0x1f,0x3e,0xc9,0xc2,0x34,0xd8,0x8b,0xc7,0x71,0x25,0x9d,0x65, +0x2e,0xb4,0xb7,0xe8,0xcd,0x93,0xf0,0xae,0xbf,0x10,0x83,0xae, +0xd0,0x62,0xa1,0x4c,0xd5,0x87,0x37,0xe1,0x43,0x6a,0xe0,0x30, +0xb9,0x09,0xca,0x87,0x69,0xbc,0x69,0x45,0xe0,0xc3,0x03,0x42, +0x07,0x61,0xf5,0xbb,0x04,0x94,0x0f,0xf0,0x30,0x67,0xce,0xbf, +0x34,0x26,0x2b,0x08,0x16,0x0a,0x91,0x77,0xa9,0x20,0x04,0x3d, +0xb0,0x35,0x37,0xc5,0x5d,0x36,0xb0,0xcb,0x12,0xcd,0xad,0x81, +0xa5,0xa2,0xec,0xcc,0x7c,0xb6,0x05,0x49,0x6d,0x59,0x78,0xab, +0x6a,0xa4,0x2d,0x7d,0x8c,0xf9,0xc3,0x96,0xb2,0x2d,0x8c,0x6c, +0x51,0xfe,0x9c,0xaa,0xc8,0xca,0x29,0x53,0x29,0xa5,0xed,0xb3, +0x15,0xec,0x35,0xe8,0xe0,0xd8,0xa4,0x02,0x95,0x46,0x98,0xd7, +0x81,0x0e,0x5d,0xa0,0xda,0x8e,0xaa,0xed,0x83,0xc2,0x7a,0x59, +0xfd,0x56,0x7c,0xcf,0x1c,0xe6,0xd1,0x67,0x9c,0xe3,0xdc,0x4f, +0x7a,0xf9,0xe6,0xf9,0xe6,0xf9,0x65,0xfb,0x38,0xb1,0x15,0xe1, +0x95,0xa1,0x95,0x21,0xbe,0xc6,0x36,0x36,0xda,0x76,0x09,0xcd, +0xac,0x49,0x8c,0x7a,0xac,0x5a,0x1c,0xd3,0x0f,0x6b,0xdb,0x71, +0xed,0x45,0x63,0x2d,0x5c,0x6c,0x03,0x8b,0x45,0xf4,0xd1,0x78, +0xb5,0x04,0xbd,0xd3,0xc9,0xe6,0x2c,0x28,0xa7,0x80,0x76,0x0e, +0x28,0xe4,0xd6,0x38,0xb2,0x57,0xba,0xba,0x7a,0xaa,0xce,0xd7, +0x04,0x54,0xfb,0x57,0xfa,0x55,0x35,0xb1,0xee,0xe5,0x2e,0xe5, +0xce,0x25,0xd9,0x4d,0xa9,0xad,0x89,0xdd,0xcc,0x6b,0x4c,0xa4, +0xec,0x0a,0x42,0xdb,0x94,0xeb,0xa8,0xda,0x9c,0x9c,0x5a,0x95, +0xef,0x69,0x8b,0x02,0x05,0xa4,0x03,0xe8,0xc8,0xd8,0xa4,0x3c, +0x15,0x68,0xc5,0x15,0xcf,0xbd,0xbb,0xa0,0x90,0x9e,0xaa,0xe5, +0x6e,0x93,0xc9,0x03,0xdd,0x53,0x07,0x28,0x7e,0xc8,0x17,0x13, +0x5f,0x1f,0x4f,0x2f,0x4f,0x1f,0x54,0x4a,0x60,0x93,0xc5,0x70, +0x22,0x15,0x4e,0xa5,0x81,0x7f,0xbe,0x62,0x49,0x58,0x71,0x58, +0xe1,0xf1,0xae,0x3a,0xd6,0xa4,0x49,0xbd,0x47,0xb7,0x81,0x01, +0xcf,0x9e,0x3f,0x67,0x9b,0x53,0x93,0xbb,0x34,0x09,0x2e,0x88, +0xc1,0xa5,0x71,0xf8,0x69,0x7c,0x59,0x49,0x79,0x45,0x49,0x05, +0x03,0x5f,0x50,0x0e,0xbe,0x85,0xd1,0xd2,0x48,0x69,0x84,0xe2, +0x1c,0xf8,0x59,0xbe,0xf4,0xde,0x2c,0x6c,0xc4,0x11,0x52,0x78, +0x85,0x28,0x55,0xb3,0x20,0x12,0x8c,0x21,0xe1,0x18,0x0d,0x46, +0x8d,0x24,0xd6,0x2f,0x36,0xf0,0x84,0x0f,0xb3,0x0e,0x6f,0x40, +0x1a,0xdc,0xc0,0xb7,0xa9,0xf4,0xe2,0xd4,0xe2,0x14,0x29,0xf3, +0x2b,0xb7,0x91,0xbc,0x4a,0xfb,0x3a,0xfb,0x5e,0x7e,0x6a,0x68, +0x4a,0x48,0x6a,0x48,0x7b,0x3e,0x1b,0x36,0xe4,0x73,0xc9,0xaf, +0xdb,0xee,0x38,0x9b,0xe5,0x9f,0x19,0x90,0x1e,0x60,0x7d,0xd2, +0x22,0xc6,0x3c,0xee,0xc2,0xb5,0xa1,0x7b,0xc3,0x5f,0x5a,0x97, +0xb0,0x01,0x76,0xde,0x36,0x9e,0xb6,0xa1,0x85,0x21,0x05,0x21, +0x05,0xf5,0xed,0xf5,0xc3,0xa5,0x5d,0x36,0x52,0x36,0xc0,0xca, +0xdd,0xcc,0xdd,0xc1,0xa1,0x96,0x75,0xe3,0x11,0x62,0x8f,0x75, +0x8b,0xad,0xa2,0xaf,0x9b,0xb7,0x9b,0xa7,0x87,0x55,0x02,0xcb, +0x3d,0xb2,0x20,0xdf,0xa4,0x7d,0x9d,0xf3,0x20,0x37,0x35,0x2c, +0x25,0x34,0x35,0xb4,0x3d,0x97,0x0d,0x19,0xf4,0xbb,0xe8,0xd7, +0x69,0x1b,0xca,0x66,0x06,0x65,0x04,0x65,0x04,0xda,0xc4,0x58, +0xc7,0x58,0xc5,0x8d,0x5f,0x1a,0xbc,0x31,0xfc,0xa5,0x4d,0x39, +0xcb,0x5b,0x62,0x3b,0x0f,0xbb,0x30,0xfe,0xe3,0x43,0xf9,0x2f, +0xa8,0x1b,0x2c,0xe9,0xb2,0x29,0x62,0x03,0xad,0xdd,0xcc,0x3c, +0x1c,0x22,0xb2,0xc3,0xb3,0x23,0xb2,0xdc,0x5c,0xd8,0x6e,0x87, +0x5e,0xcb,0x16,0x5b,0x5f,0x57,0x2f,0x37,0x2f,0x8f,0x50,0xde, +0x11,0x86,0x9e,0x61,0x64,0xb3,0x61,0x27,0x6f,0x7c,0xd7,0x6f, +0xe4,0x31,0xbf,0x2d,0x81,0xf5,0x6b,0x70,0x3d,0x25,0x2b,0xc0, +0x25,0x84,0xdb,0x72,0x55,0x47,0x9d,0x5b,0x6a,0x04,0x53,0x94, +0xbe,0x3e,0xbe,0x6d,0x8f,0x0e,0xf2,0x40,0x79,0xec,0xc8,0x1f, +0x2d,0xad,0xcf,0x79,0xe5,0x71,0x9e,0x00,0xe7,0x14,0xaa,0x75, +0x13,0xcc,0xb6,0x87,0x04,0x79,0xa0,0xdc,0xb5,0x1d,0x67,0xb5, +0xe8,0x8c,0x31,0xb2,0x39,0xbc,0x07,0x9b,0x9c,0xdc,0x48,0xfa, +0xa0,0x58,0x73,0xfc,0x12,0x64,0x0c,0x62,0x86,0xb0,0x8a,0x5c, +0x2c,0x88,0x58,0x63,0x88,0xe5,0x29,0x40,0x20,0xf7,0x1e,0x01, +0x7a,0xbc,0xbb,0x3f,0x6b,0x9c,0xff,0xac,0xed,0x23,0x30,0x9d, +0x4a,0x4f,0x3e,0x9b,0x16,0xa7,0xfc,0x4a,0xa7,0xb6,0x65,0xcd, +0x85,0xe8,0xd4,0x98,0xb3,0x27,0x4f,0x28,0x46,0x45,0x28,0xc4, +0xb5,0xc1,0xae,0x1e,0xdc,0x75,0x99,0x1a,0x4c,0x1e,0x48,0xe9, +0xca,0x08,0xeb,0x60,0x17,0x86,0xe0,0x27,0x31,0x48,0x4e,0xa7, +0x58,0xb0,0x43,0x13,0x89,0x49,0x17,0x54,0x74,0xd0,0xcc,0x1c, +0x0e,0xd3,0x7e,0xb6,0x86,0xa6,0x8b,0x44,0xcc,0xe4,0xe2,0x72, +0x92,0x63,0xc6,0xbb,0xe8,0x9b,0xed,0xf9,0xb7,0xb2,0x54,0xd2, +0xba,0xce,0x5d,0x7c,0x2a,0x34,0x5d,0x17,0x0a,0xfa,0x27,0x67, +0xf3,0x5e,0xd1,0x4f,0xdb,0x54,0xfd,0x90,0x69,0xbd,0x23,0xdb, +0x59,0xdd,0xdc,0x5a,0xd9,0xc6,0xfc,0x42,0xf9,0xe8,0x38,0x89, +0xb7,0xe9,0xd5,0xdb,0xb1,0x5f,0x5d,0xea,0xbf,0x5c,0xfd,0x84, +0xb9,0x47,0x39,0x24,0xe8,0xc7,0xba,0x28,0x3b,0xc4,0x44,0x44, +0x98,0x2e,0xc0,0x3b,0x67,0x89,0xf6,0x31,0x9c,0x69,0x8d,0x29, +0xee,0x39,0x86,0xec,0xbd,0xcc,0x2b,0x59,0x23,0xd9,0x43,0x3e, +0x9d,0x01,0x5d,0xbe,0x55,0x2d,0xac,0x8b,0xc4,0xb5,0xd0,0x35, +0xff,0xab,0x8a,0xe1,0x86,0xea,0x3e,0x61,0x89,0x58,0x3c,0xe1, +0xfc,0xda,0xdb,0xf3,0xb8,0x5b,0xb8,0x43,0x58,0x85,0x0d,0xdb, +0x23,0xed,0x2b,0x69,0xaf,0x18,0x8d,0xbc,0x16,0xf5,0x20,0x3a, +0x87,0x1f,0xa2,0xd4,0x5a,0x64,0x3b,0xb5,0x2e,0x33,0xb9,0x28, +0x21,0xb1,0xb0,0x51,0x07,0x73,0x71,0x0e,0x95,0x67,0xa6,0xf0, +0x33,0xd5,0x29,0xc9,0x69,0x57,0xb9,0x40,0x67,0x26,0x9d,0xcb, +0x8c,0x57,0x86,0x6b,0x38,0xbd,0xa4,0x1f,0x2f,0xc3,0xb4,0xf0, +0xe4,0xd8,0xd3,0x31,0x51,0x8a,0xb8,0xe6,0x2c,0xd9,0xec,0xbc, +0xd6,0x0b,0xa7,0xfb,0x08,0xed,0x47,0x66,0x54,0xbe,0xaa,0x7e, +0xd6,0xcc,0xa3,0xfc,0xbd,0x02,0xca,0x3f,0x86,0xd9,0x42,0x34, +0x58,0xe0,0x2e,0x02,0x93,0xcf,0xd6,0x1e,0xbb,0x20,0x67,0x35, +0x14,0xf7,0x1a,0xb5,0x08,0x0c,0xf6,0xe0,0x20,0x35,0x39,0x82, +0xc5,0x04,0x8a,0x39,0x2d,0x2c,0xfe,0x9c,0xb6,0xd3,0xd4,0x54, +0xd7,0x70,0x4c,0x8a,0x65,0xb1,0x01,0xf3,0xce,0xf7,0x42,0x24, +0xd8,0x50,0x45,0x9e,0xf9,0x19,0xf9,0xd9,0x79,0xd9,0x8a,0x78, +0x72,0xb0,0x0f,0xca,0xba,0xb1,0x0c,0x36,0xbb,0xd1,0x79,0xb9, +0x79,0xfc,0x7f,0x86,0x9f,0x03,0x67,0xb6,0xc6,0xee,0x39,0x65, +0xce,0xd8,0x9e,0x8a,0x8e,0x34,0x5e,0xb0,0x50,0x68,0xb5,0xf1, +0x3b,0x75,0xbb,0xbc,0xe4,0x42,0xa6,0x4a,0xd6,0x44,0xca,0xab, +0xb3,0xf0,0x21,0xc3,0xf1,0x77,0x52,0x94,0x23,0xcd,0x94,0x0a, +0x7b,0x31,0xfd,0x88,0x36,0x3e,0xbe,0x40,0x73,0x76,0x5a,0xc4, +0x14,0xfe,0xdd,0x47,0xcb,0x0e,0x5a,0x91,0x63,0xf8,0xf8,0x0a, +0x8d,0xec,0x11,0x82,0xdd,0xe6,0xd0,0x4d,0x61,0xb7,0x26,0xe1, +0xff,0xf6,0xd0,0x20,0x55,0x27,0x11,0xb4,0xd8,0xd3,0x63,0xb3, +0x97,0xb2,0xd4,0xaa,0x2f,0xaf,0xb9,0xa8,0xb8,0x54,0x31,0x35, +0x35,0x51,0x88,0xb2,0xcf,0x3a,0xc6,0x56,0x35,0x2f,0x1a,0x8d, +0x4a,0x89,0xf9,0xec,0x44,0x94,0xe2,0x29,0x79,0x30,0x27,0x37, +0xa3,0xac,0x4c,0x49,0x4a,0x73,0x03,0x68,0xc3,0xcf,0x21,0x50, +0x43,0x5a,0x8e,0x18,0x16,0x92,0xbf,0x12,0x14,0x04,0x26,0x20, +0xc4,0xc8,0x25,0xc2,0xa8,0xc8,0x53,0x17,0xe8,0x2f,0x38,0x42, +0x72,0x6d,0x7b,0x25,0x41,0x63,0x5e,0x57,0xdc,0x07,0x15,0xad, +0x02,0xf3,0xfc,0x72,0x3d,0xb2,0x3d,0x14,0x4d,0x62,0x75,0xe3, +0xf4,0xe2,0x2f,0x5e,0xbf,0xf3,0xf2,0xd2,0xd7,0x96,0xb5,0xac, +0xab,0xb1,0x9d,0xa1,0xb5,0x71,0x68,0x61,0xb0,0x24,0x58,0xd2, +0xde,0xdb,0x36,0x56,0xd3,0x6b,0x51,0xc9,0x7a,0x9b,0xda,0x19, +0xdb,0x9b,0x47,0xf2,0x1a,0x14,0x99,0xe9,0x64,0xcf,0x0e,0x5a, +0x77,0xda,0xb6,0x59,0xfa,0x79,0xfa,0x7a,0xf9,0xf9,0x1e,0x12, +0xec,0xd0,0x50,0xe2,0x44,0xd2,0x44,0xb2,0x22,0x3e,0x1c,0x86, +0x27,0x74,0xdd,0xb9,0xba,0xa4,0xea,0x24,0x46,0x96,0x33,0x4e, +0x60,0x84,0xdb,0x83,0x23,0xb4,0x4c,0x01,0x52,0x09,0xda,0xe2, +0x35,0xb0,0xa5,0x61,0xe7,0x52,0x12,0x7f,0x4e,0x21,0x4b,0x92, +0x56,0x5a,0xad,0x94,0x66,0x71,0x92,0x36,0xf2,0x70,0x3f,0x60, +0xa9,0x5c,0xe5,0x50,0x5f,0x54,0x5b,0x26,0x2d,0x57,0x4c,0x49, +0x3d,0x77,0x26,0x39,0xfe,0x9b,0x7d,0x6c,0x4d,0xc3,0x96,0xab, +0xd1,0x69,0x71,0x67,0x4f,0x9c,0x50,0x04,0x4f,0xf4,0x23,0x9c, +0x03,0x56,0xe8,0x89,0x65,0xe3,0x03,0xf6,0x14,0x3e,0x12,0xfa, +0x80,0x07,0xee,0x84,0x40,0x1a,0x58,0x0c,0x24,0x10,0xf8,0x04, +0x03,0xe9,0xbe,0xf9,0x10,0xf8,0x82,0xff,0xcb,0xd5,0x83,0x98, +0xe4,0x9b,0xe7,0x1b,0x67,0x6b,0xf5,0xe6,0xb2,0x91,0x63,0xa1, +0x23,0xc1,0x7d,0x0c,0x96,0x61,0x14,0xa9,0xbf,0x5a,0x7c,0x27, +0xfb,0xbe,0x69,0x3a,0x1b,0xb1,0x27,0x50,0xc7,0xf5,0x98,0x9c, +0x5b,0xbc,0xff,0x37,0xc8,0x14,0x86,0xec,0xa6,0xce,0x61,0x94, +0x08,0x24,0xf8,0x0d,0xc8,0x9c,0x54,0xe0,0x29,0x22,0x6e,0xa5, +0xaa,0x2b,0x4b,0x2b,0x8b,0x6a,0x98,0x36,0x8c,0xa6,0x33,0xf2, +0xd2,0x73,0xd3,0xf2,0x4c,0xb2,0x59,0xa7,0xc3,0x5a,0x9a,0xbb, +0x4d,0x6a,0xed,0xd8,0xb4,0xe4,0xd4,0x94,0xb4,0x64,0x06,0x27, +0x64,0xce,0x34,0xf7,0x18,0xf6,0x91,0x13,0x59,0x27,0x13,0xa3, +0xa2,0xc3,0x79,0xba,0xf5,0x14,0x3e,0x1e,0xc0,0x8f,0x61,0x1e, +0x35,0x98,0xd9,0x9b,0xdd,0x58,0x10,0xd0,0xc5,0x6e,0x74,0xc4, +0xa5,0xa1,0xab,0x4f,0x66,0x99,0xb0,0x1d,0x49,0x7d,0x3c,0x09, +0x11,0xea,0xf9,0xee,0x17,0xc3,0x26,0xfa,0xf8,0x4e,0xd3,0x95, +0xc8,0xe0,0x3b,0x8d,0x42,0xb6,0x0b,0xd0,0x35,0xf7,0xd3,0xee, +0x31,0xa9,0xdc,0xf4,0x51,0xf8,0x52,0x20,0x5c,0x3c,0xc9,0xf8, +0x1e,0x99,0xb6,0xba,0xff,0xc3,0xd8,0x5b,0xc0,0x57,0x71,0x74, +0xff,0xc3,0x50,0xb8,0xbb,0x0b,0x2d,0xa4,0xc8,0x84,0x0d,0xb4, +0x09,0xee,0x5e,0xa0,0xc5,0xdd,0xe3,0xee,0xae,0x24,0x21,0xee, +0xee,0x40,0x91,0xb8,0xbb,0x3b,0x90,0x84,0xb8,0x0b,0xee,0xae, +0x2d,0xd2,0x96,0x52,0x03,0xda,0xd2,0xb3,0xe9,0xd9,0xfc,0xfe, +0xef,0xec,0x0d,0xed,0xd3,0xe7,0xed,0xef,0x95,0xe6,0xf3,0xb9, +0xa4,0x7b,0xe1,0xde,0xd9,0x99,0x73,0xbe,0x72,0x66,0x76,0x46, +0x06,0xdf,0x01,0x10,0x6f,0x37,0x4f,0x0f,0x87,0x83,0xd2,0xb2, +0xbe,0xca,0xe2,0xf2,0xf2,0x92,0x72,0x4e,0x97,0x5a,0x52,0x58, +0xb0,0x0a,0x17,0x30,0x60,0xa1,0xf8,0x1c,0x96,0xae,0x62,0xd1, +0xd6,0x94,0x2c,0xc6,0x05,0x3f,0xb0,0xf4,0x02,0x2c,0x5d,0x8c, +0x4b,0xa5,0x9d,0xe3,0x8f,0x91,0x86,0xce,0xaa,0xbe,0xbc,0x1e, +0xe3,0x2c,0xde,0xc7,0xc8,0xd5,0xc0,0xda,0x9c,0x13,0x8c,0x60, +0x22,0xa9,0x34,0x2b,0xd7,0x2b,0xd2,0xea,0x2e,0xe0,0x3d,0xfb, +0x5d,0xbb,0x9c,0x5a,0x38,0xdc,0xec,0x4f,0xb2,0x0c,0x53,0x0d, +0x92,0x74,0xfb,0xd3,0xf8,0x88,0xbe,0xe0,0xbe,0xa0,0x26,0x0e, +0xf7,0xc4,0x90,0x78,0xbd,0x63,0x46,0x47,0xb4,0xfa,0x8e,0xf3, +0xe7,0xe3,0x3a,0xa2,0xbb,0x95,0xc7,0x43,0x99,0x74,0x86,0x5f, +0xfc,0x72,0x30,0xd6,0x45,0xe3,0x8d,0x46,0xe0,0x8d,0x2b,0xe7, +0xb0,0x59,0x86,0xb2,0xaf,0x98,0xa6,0xcc,0xdc,0xd3,0x2a,0xb0, +0x18,0x36,0x76,0xe0,0xc6,0x9f,0x60,0x66,0x3b,0xce,0x7c,0x57, +0xfa,0x7e,0x59,0xfa,0xbf,0xca,0x46,0x9a,0xec,0xe0,0x27,0x2e, +0x44,0xd4,0x37,0x00,0xa3,0xbf,0x4b,0x0d,0x13,0xc5,0x35,0x82, +0x82,0xb0,0x06,0x75,0xff,0x2e,0x35,0xe8,0x32,0x28,0xa0,0x06, +0xb5,0xcb,0x39,0xc3,0x15,0x81,0x9c,0x3b,0xac,0xb8,0x3b,0x94, +0xb8,0xeb,0x59,0x68,0x18,0x99,0x9f,0xb1,0xe3,0xfb,0x7b,0x1b, +0xcf,0x95,0x9e,0xa5,0x59,0x27,0x3d,0x3f,0xa9,0x3e,0x6b,0x3d, +0xba,0x9a,0x14,0x52,0xa4,0xf6,0xee,0x02,0xe6,0x9b,0xaf,0xc1, +0x9c,0xfb,0x81,0x82,0x40,0xce,0x46,0xe9,0x31,0xce,0xcf,0xe6, +0x90,0xf3,0x6e,0x37,0xec,0x7b,0xed,0x2a,0x3b,0x78,0x8d,0xba, +0x5d,0x35,0x3a,0x85,0xd2,0xbc,0xf0,0x5c,0xf2,0xa8,0xec,0xca, +0xc9,0xee,0x3a,0xa7,0x06,0xde,0xc4,0x71,0x9b,0xe3,0x0e,0x1f, +0x79,0x6c,0x28,0x91,0x7f,0xe8,0xae,0x3b,0xff,0xa5,0xc8,0xd8, +0x56,0xd1,0x92,0x84,0xa6,0x45,0x7e,0x39,0xbc,0x23,0xc3,0x39, +0x58,0x03,0xd6,0xb8,0xe6,0x26,0x68,0x76,0xa0,0xe6,0x03,0x9d, +0x8d,0xa8,0x6a,0x04,0xaa,0x3b,0x70,0x15,0x5a,0xc3,0x7c,0xc6, +0x5b,0x55,0x6b,0xc7,0xdc,0x8d,0xd2,0x4e,0xdf,0xa3,0xbe,0x2d, +0x6b,0x4d,0xbe,0x42,0xd1,0x3e,0xbe,0x0f,0x5c,0x99,0xc4,0x13, +0x47,0x13,0xa8,0x7b,0xfc,0x10,0x47,0x9e,0x69,0x90,0xb5,0x09, +0x35,0x14,0x0a,0x3e,0x65,0x43,0xb5,0x0d,0x0f,0xce,0xf3,0xc9, +0xa3,0x7f,0x99,0x2f,0xef,0xeb,0x4a,0xbb,0xc5,0xc1,0x17,0x8c, +0xef,0x97,0x7e,0x87,0x82,0x94,0xbd,0x63,0xc3,0x0f,0xb9,0x4f, +0x5b,0xcc,0xa4,0x9b,0xcb,0xbe,0x65,0x7a,0xca,0x33,0x3a,0x12, +0x55,0x8e,0x97,0x1d,0xab,0xe9,0x98,0x1a,0x2a,0xf6,0x13,0xf8, +0x53,0x9c,0x8a,0x7f,0xb2,0xe2,0x54,0xf8,0x86,0xfc,0xb6,0x90, +0x89,0xfb,0x32,0xf6,0x48,0x9c,0xf2,0x6c,0x06,0x72,0x15,0x67, +0xc0,0x07,0xef,0x18,0xc1,0x62,0x1d,0xc1,0xea,0x7e,0xa8,0x66, +0xb0,0x7a,0x2e,0x81,0x6a,0x2d,0xac,0x66,0x2c,0x46,0x43,0xb5, +0x2a,0xfd,0x13,0xbe,0x58,0x4c,0x2e,0xfb,0xde,0x76,0x3f,0x7b, +0xa0,0xa8,0x8d,0xdf,0x5f,0xbd,0xad,0x54,0x23,0x9b,0xc3,0xab, +0xa8,0x40,0xee,0xe5,0x5e,0xca,0xef,0xaf,0xf3,0x6c,0xe4,0x75, +0x9d,0x34,0xfc,0x36,0xf9,0xff,0x55,0x51,0xd1,0xc7,0xfc,0x6e, +0xfa,0x22,0x75,0x83,0xc9,0xd9,0x36,0xc8,0x97,0x5e,0x86,0x85, +0xe9,0x6c,0xca,0x68,0x51,0x7e,0xe1,0x7e,0xa1,0xbe,0x1c,0xce, +0x93,0x1f,0x5d,0x94,0x9c,0xed,0x91,0xca,0x3f,0x85,0x14,0xfc, +0x63,0xc8,0xed,0x9c,0x70,0x10,0x54,0x19,0xe7,0x3d,0xba,0xea, +0x9b,0x8c,0xaa,0xac,0xf9,0x62,0x6a,0x0e,0xf2,0x72,0x38,0x6c, +0xeb,0x6d,0x14,0x66,0xb0,0xe9,0x66,0xb2,0x9f,0x99,0xee,0xec, +0xdc,0x76,0x95,0xc1,0x19,0x22,0x83,0x29,0x2c,0xce,0x02,0x07, +0xa2,0x89,0x51,0x67,0xd9,0xc1,0x3d,0x8a,0x9a,0x98,0x74,0x96, +0x45,0xe3,0xd9,0x14,0x51,0xa3,0x2e,0x48,0x17,0xd4,0x30,0xe9, +0x02,0x0b,0xdb,0xc5,0x1c,0x72,0x06,0x1d,0x2f,0x82,0x76,0x33, +0x6a,0xf7,0xcb,0x5f,0x7b,0xc0,0xb1,0x05,0x2d,0xd8,0x54,0x8a, +0xe4,0x89,0x99,0x56,0x69,0x3c,0x74,0x88,0x2b,0x18,0xfc,0x05, +0xe2,0x09,0x6e,0xe9,0x66,0x8e,0x1e,0x95,0xc1,0x66,0x66,0xfe, +0x68,0x6d,0xdc,0xd2,0xcf,0xc2,0x96,0x39,0x44,0x15,0xb7,0x5c, +0x94,0xcf,0x2d,0x6c,0x27,0x6d,0x50,0x69,0x37,0x70,0x1a,0x32, +0x3a,0x30,0x43,0x92,0x97,0x95,0xd2,0xcb,0x61,0x23,0x38,0x6c, +0xc2,0xc2,0x64,0xea,0x0d,0xcc,0x59,0xb4,0x89,0x39,0x66,0x03, +0x56,0x09,0xb2,0x50,0xd6,0xac,0x24,0xe8,0x86,0x32,0xf4,0x30, +0x0d,0x69,0xa9,0x25,0x2a,0x65,0xac,0x51,0xb2,0xcc,0x09,0xcf, +0xb1,0xee,0x51,0x29,0x05,0x2a,0xf1,0x2c,0xb4,0x24,0x1f,0xae, +0xc7,0xa6,0x48,0x59,0xa3,0x30,0x93,0x0d,0xf1,0xf5,0xf3,0xf5, +0x0a,0xe8,0x0c,0xe0,0x4b,0x0b,0x8a,0xaa,0xa5,0x83,0x78,0xc5, +0xb5,0xd5,0xf0,0x4d,0x1d,0x7e,0xd3,0xac,0x81,0x63,0xf0,0x39, +0xee,0x61,0xd1,0xd2,0x07,0xe7,0xef,0x5b,0xa1,0xdc,0x6e,0x25, +0xbb,0x03,0x23,0x4a,0x60,0x3d,0xd8,0x4d,0x05,0x65,0x76,0x70, +0xb9,0x38,0x8f,0x80,0xad,0xf8,0x02,0x6d,0x59,0xc8,0x02,0x05, +0x82,0xb6,0xad,0x60,0xcb,0xf4,0x9b,0x92,0x56,0x70,0x36,0x65, +0xb1,0xd8,0x81,0x18,0xa3,0x6d,0x3b,0x0b,0x39,0x8a,0xe0,0x6c, +0x8c,0xce,0x0c,0x5c,0xdc,0x4c,0x86,0x56,0xe2,0xe4,0xbd,0xe6, +0x83,0x75,0xcd,0x6a,0x8c,0xe8,0xf0,0x8c,0xac,0xc6,0xf9,0xcf, +0x58,0x30,0x5b,0x4d,0x9e,0xc1,0xdc,0xd5,0x6c,0xb7,0xe2,0x33, +0xf8,0x6c,0x35,0xfb,0xef,0xba,0x98,0xbe,0xde,0x3e,0xdc,0x62, +0x22,0x2c,0x68,0xc3,0x6d,0x17,0x7a,0xff,0x59,0x22,0x9b,0x3f, +0xb4,0x94,0x74,0xc3,0xa5,0x26,0xbc,0xd4,0x09,0x97,0x9a,0xf1, +0x52,0x17,0xdc,0xa5,0x12,0xf4,0x5e,0x17,0x7c,0xd7,0x82,0xdf, +0x5d,0x50,0xa7,0xc1,0x7d,0x5f,0x03,0xef,0xe1,0xff,0xb0,0x9b, +0x4b,0xdc,0x9e,0x28,0x43,0x3c,0xd3,0x9a,0x95,0xdf,0xa0,0xd2, +0xcf,0xda,0x67,0xca,0x1a,0xd8,0xa1,0x7c,0x61,0x23,0xc9,0xf2, +0xce,0x77,0x48,0x3f,0xd8,0x92,0xc7,0x87,0x54,0xfa,0xd7,0x06, +0xd2,0x44,0xde,0x7f,0x84,0x84,0x3b,0x07,0x3b,0xfa,0x58,0x71, +0x98,0x64,0x2c,0xec,0x68,0xc7,0x71,0x4c,0x4e,0x79,0x7a,0x65, +0x46,0x15,0x87,0x89,0x22,0x10,0x98,0x03,0x21,0x2b,0xf0,0x63, +0x36,0xc3,0x5c,0xf6,0x07,0xd3,0x9a,0x99,0x5b,0xaf,0x02,0x6f, +0xf1,0x57,0x71,0x0d,0x0b,0x4d,0x02,0x43,0xd9,0x33,0xe4,0x0a, +0x0b,0x21,0x38,0x7a,0xf8,0x37,0x21,0x10,0xcd,0x88,0x59,0x68, +0x4a,0x93,0x4a,0x19,0x9c,0x5d,0x2b,0x27,0xc0,0x51,0x7f,0xef, +0x47,0xd3,0x8b,0xd9,0xff,0x35,0x1d,0xb1,0x81,0x45,0x6d,0xd1, +0x9b,0x80,0x08,0x77,0x56,0x30,0x85,0xa5,0x05,0x15,0x99,0x25, +0x14,0xd0,0xb5,0xd8,0xa4,0xec,0xa4,0xec,0xc4,0x6c,0xfd,0x6c, +0xde,0x79,0xad,0xfa,0xea,0xb5,0x3b,0x4e,0x59,0xf3,0xc9,0x49, +0xc9,0xf4,0x3f,0x4e,0xd0,0x04,0x0b,0x52,0xec,0x98,0x6f,0x99, +0x65,0xd3,0x5e,0xc8,0x07,0x9e,0xf1,0x6b,0xf4,0xae,0xe1,0x60, +0xae,0x78,0x90,0x80,0x0c,0xd4,0xba,0x50,0x4d,0xda,0x41,0xb8, +0x87,0x12,0x6f,0xc1,0x99,0xfc,0xb6,0xb4,0x3a,0xfa,0x09,0xa1, +0xe6,0x9e,0xda,0x1e,0x16,0x1c,0xe6,0xea,0x81,0x2a,0x8e,0xc0, +0x75,0x06,0xb0,0x0e,0x65,0xa8,0xa5,0x07,0x5a,0xb8,0xf3,0x1c, +0xec,0x04,0xeb,0x1e,0x46,0xbc,0x2f,0x28,0x92,0x10,0x5f,0x1f, +0x17,0x6f,0x0f,0x0e,0x17,0x31,0xf9,0xc5,0xb9,0x25,0xd9,0xa5, +0x9c,0x26,0x1e,0x20,0x2f,0xde,0x7c,0x46,0x19,0x4c,0x7a,0xc5, +0x78,0xfc,0x94,0x7c,0xf7,0x66,0x39,0xfd,0x5f,0xe9,0x15,0xbf, +0xc5,0x7c,0x72,0xaa,0xb3,0xea,0x4a,0x76,0xbf,0x5e,0x2e,0x1f, +0xa4,0xe7,0xa2,0xe6,0x60,0xc2,0x09,0x93,0x60,0x16,0xc9,0xb3, +0xcb,0x35,0xcb,0x34,0xed,0xa0,0x17,0x9b,0xfd,0x9b,0x7c,0xea, +0x38,0x5c,0xe8,0x47,0xb2,0xcc,0x33,0xf5,0x53,0xb4,0x7a,0x53, +0xf9,0xf0,0xfe,0xc0,0xde,0x40,0x0a,0xe6,0x9f,0x45,0x91,0x14, +0xa3,0xf8,0xbd,0x47,0x75,0x06,0x12,0xf8,0xc3,0xe7,0xa3,0xce, +0x85,0x77,0xca,0xa1,0x6d,0x09,0xe9,0x83,0x3c,0x9d,0xf3,0x7d, +0x72,0xda,0x93,0xd6,0x46,0xe5,0x9d,0xd5,0xd0,0x94,0xd3,0x9e, +0x0e,0x7b,0x53,0x5c,0x40,0xa8,0x93,0x0b,0x8a,0x0f,0x6e,0x29, +0xe0,0x0f,0x09,0xf1,0xb0,0x4c,0x8c,0xc7,0x39,0xac,0x5f,0x8f, +0xdb,0x80,0x5b,0xab,0x99,0x2f,0x9f,0xee,0x9d,0xee,0x99,0xe6, +0x6e,0x1c,0xab,0x43,0xad,0xe6,0xa5,0x5b,0x77,0x7e,0xbc,0xf8, +0xa3,0x69,0x05,0xef,0xa4,0x6b,0xa5,0x69,0xa1,0x13,0x48,0x75, +0x83,0x6f,0xee,0x99,0xae,0xc6,0x0b,0x15,0x1d,0xa6,0x65,0xbc, +0xbb,0x91,0x8d,0xa6,0x9d,0x89,0xe5,0x29,0xde,0xc9,0xb6,0x8b, +0x6a,0x86,0x46,0x33,0x25,0x4f,0x57,0xcf,0x83,0x5e,0xee,0xdc, +0x11,0x4f,0xaf,0x2f,0x7d,0xa6,0x25,0x18,0xf4,0x1e,0x3b,0x7f, +0x5c,0x12,0x0e,0x0f,0x7a,0xe1,0x09,0x2b,0x88,0xb0,0x8f,0x80, +0xa3,0xb8,0x15,0x1d,0x59,0xe1,0x23,0x98,0x4c,0xf0,0xfe,0x19, +0xb8,0xcf,0xe0,0xfd,0xb5,0x04,0xee,0x9b,0xe1,0x7d,0xe6,0x1c, +0x75,0xf0,0x3b,0xe6,0xdc,0x64,0x61,0xbe,0xe2,0xbb,0x1d,0x33, +0xa8,0x1d,0x52,0xbc,0x09,0x1f,0xec,0x60,0xaf,0x61,0x2f,0xd9, +0x9c,0xb6,0x37,0x53,0x3b,0xe7,0x4a,0x4d,0xd7,0x99,0x93,0x1d, +0x5c,0xa3,0xe8,0x62,0x22,0xcc,0x66,0x1d,0xec,0x8d,0x9c,0xf7, +0xbb,0xab,0x96,0x18,0x55,0x58,0xd5,0xd8,0x3b,0xf2,0x27,0x0f, +0xd6,0xbb,0xb7,0x7a,0x6b,0xf9,0xef,0x0a,0xde,0x10,0x96,0x61, +0xc0,0xbf,0xce,0x7e,0x9e,0x7f,0xbb,0xfc,0x86,0xfb,0x13,0xef, +0xb7,0x81,0x9c,0x38,0x08,0x27,0x48,0xbe,0x41,0x8e,0x41,0xe6, +0xbe,0x8e,0x4c,0x3e,0xe8,0x9c,0x7f,0xbf,0x4f,0x27,0x87,0x65, +0xe8,0x4b,0xaa,0xae,0x14,0xde,0x4e,0xbf,0x4b,0x35,0x43,0xe8, +0x06,0x5f,0xcd,0x03,0x7b,0xe4,0x20,0xf8,0xf0,0xff,0x0d,0x04, +0xdf,0x8a,0xa1,0x24,0xcd,0x2f,0xcd,0x27,0xcd,0xcb,0x24,0x56, +0x3b,0x4e,0xe7,0x50,0x7f,0xe7,0xf5,0x9b,0x67,0xaf,0x59,0x54, +0xf3,0x8e,0x56,0xd6,0x66,0xe6,0x16,0xa6,0x4d,0x7c,0xdd,0xe9, +0xda,0x86,0xca,0x3a,0xb7,0x3c,0x7e,0x70,0x2c,0x6c,0x18,0x2a, +0xc4,0x0d,0x30,0x91,0xf1,0x74,0x74,0x76,0x70,0x3a,0x60,0x5f, +0xc9,0x3b,0xd8,0x35,0xdb,0xd7,0x3b,0x9d,0x76,0x50,0xa2,0xc0, +0xe1,0xef,0xeb,0xcf,0x1d,0x71,0x71,0x3b,0xe2,0x31,0x2d,0xde, +0xa4,0xf7,0xe8,0xa5,0x63,0x97,0x4e,0x28,0xe1,0xb1,0x01,0x48, +0x60,0x6b,0x8f,0xd5,0x1c,0xaf,0x3a,0x91,0x69,0xc3,0xb7,0x16, +0x04,0xb4,0xbb,0xf5,0xb9,0x37,0x29,0x39,0x43,0x1b,0xd9,0x8e, +0xfb,0x6f,0xb1,0x10,0xa9,0x08,0x7b,0xb7,0xe3,0x5e,0x06,0xc2, +0x15,0x6f,0x81,0xee,0x76,0xf6,0x81,0xa8,0x49,0xda,0x70,0xd1, +0x7d,0x58,0x44,0x5f,0xef,0xc0,0xba,0x0e,0x5c,0xc7,0xe6,0x96, +0x67,0x56,0xa6,0x14,0x18,0x64,0xf0,0x61,0x2e,0x81,0x4e,0x3e, +0x2e,0x1c,0x2a,0x31,0x99,0xa5,0x69,0xa5,0x29,0xc5,0x26,0x39, +0xbc,0xf3,0x3a,0x83,0x4d,0xea,0xda,0xa7,0xad,0xf9,0x9c,0xec, +0xec,0xbc,0xac,0x7c,0x4e,0x1c,0xdd,0x7f,0x46,0x18,0xdf,0x81, +0x3b,0x1e,0xb1,0x68,0x0e,0xd2,0xb6,0x04,0x73,0xb7,0xb2,0x38, +0x57,0xbe,0x63,0xcf,0xdc,0x4d,0xac,0xf8,0x03,0x5a,0x93,0x9a, +0xfe,0xa2,0x0b,0x99,0x17,0xf5,0xb3,0xf8,0xe0,0x7d,0x5e,0xba, +0x8e,0x7a,0x1c,0xd4,0xc1,0x32,0x92,0x6f,0x94,0x6b,0x9c,0xa5, +0xda,0x9b,0xcd,0x07,0xf7,0xfb,0xf4,0xfb,0xb4,0x71,0x70,0xd5, +0x8e,0xac,0xc7,0xb9,0x8f,0xd8,0xf1,0x42,0xd6,0xe0,0x46,0x02, +0xaf,0x07,0xf0,0xf5,0x0f,0xfb,0xf0,0x04,0x3e,0x40,0x9e,0xc1, +0x28,0x1f,0x9c,0xb2,0x67,0xa6,0x72,0xb7,0xa1,0xec,0x1e,0x8c, +0x2f,0x86,0x79,0x90,0x36,0xf5,0xc6,0xe0,0x72,0xd6,0xcf,0xda, +0xd9,0xd2,0xd1,0xa1,0xd3,0x81,0xaf,0x6f,0x6a,0xbe,0x5c,0xd4, +0xcf,0x75,0x88,0xab,0xd8,0xd3,0xe2,0x4d,0x62,0x2e,0x3f,0x82, +0x6c,0x2b,0x2b,0x2c,0x39,0x1d,0x3b,0x20,0xce,0xb7,0x97,0xc1, +0xce,0x7d,0xb8,0x9f,0x82,0xa9,0x7f,0xbc,0x16,0x98,0x50,0x23, +0xbd,0x81,0x5d,0x5b,0xe2,0xfe,0x9d,0x32,0xf4,0x49,0xcf,0xb8, +0xb7,0xa9,0x50,0x5b,0x2f,0x3d,0xec,0xb3,0x80,0x1d,0xff,0xa7, +0xba,0xe0,0x40,0x10,0xde,0xc2,0xab,0x3e,0x7c,0x05,0xa3,0x19, +0xe0,0x92,0x7f,0xcf,0x78,0x95,0xeb,0x36,0xc0,0xa3,0x89,0x35, +0xfa,0x05,0xe2,0xfd,0x38,0x0e,0x6f,0xb0,0x68,0xe8,0x89,0x6b, +0xb7,0x23,0xa7,0xdc,0x6b,0x74,0x17,0x14,0x4a,0x61,0xc3,0x09, +0xd0,0x52,0x82,0x17,0x34,0xaf,0x4b,0xf1,0xd1,0x05,0x28,0x00, +0x47,0xbc,0x7b,0x89,0xe2,0x61,0x18,0x9a,0xe2,0x2c,0x26,0x4d, +0x77,0xf8,0x71,0xb6,0xdc,0x06,0x15,0x48,0xc0,0x0e,0x0a,0x0d, +0xc0,0x0e,0xc5,0xc2,0x79,0x02,0x63,0x8f,0xc1,0xe8,0x13,0xbf, +0x27,0x72,0xd3,0xf1,0x05,0xab,0x33,0x1a,0x5e,0xcc,0xc1,0x17, +0xd4,0x1a,0xfa,0x08,0x99,0xe4,0xb8,0x11,0x58,0xa6,0xcb,0x2c, +0x58,0xad,0x62,0xbf,0x9b,0xd2,0x7e,0x1a,0x4d,0x99,0x19,0xa7, +0x55,0x3a,0x59,0xdd,0x74,0xd9,0x5e,0xec,0x61,0x1d,0xa3,0x12, +0x8b,0x55,0x9a,0x58,0xa8,0xca,0x3e,0xd4,0x86,0xe5,0x41,0xb2, +0x27,0xc2,0x47,0x6c,0xa0,0xab,0xb7,0xa7,0xa7,0x77,0x87,0x0b, +0x5f,0x59,0x55,0x75,0x26,0xbb,0x85,0xc6,0xf9,0xf2,0x4b,0xf0, +0x4b,0x17,0xfe,0x72,0x4e,0x0d,0x77,0xe0,0x4b,0xd4,0x60,0xa5, +0xf6,0xaf,0xdf,0x8b,0x32,0xe5,0x36,0x13,0xd9,0x5d,0x50,0x2a, +0x00,0x2d,0x08,0x99,0x0a,0x4a,0x70,0x74,0x35,0x2b,0x14,0x8a, +0x6d,0x04,0xc7,0x64,0x4c,0x2f,0x59,0x59,0x7b,0xbf,0xa9,0xb7, +0xbb,0xfc,0x3c,0x07,0x33,0xbb,0xf0,0xd5,0x05,0x75,0x35,0x7c, +0x68,0x40,0x5b,0x5f,0xad,0xd9,0xaf,0xf7,0xc0,0x7c,0x89,0x03, +0x32,0x1e,0x38,0x59,0x3a,0x9d,0x15,0xe6,0x66,0x83,0x62,0xcd, +0xaf,0x6d,0xbf,0x98,0x82,0xc2,0x01,0xf8,0x24,0x80,0x43,0x0b, +0x68,0x20,0x07,0x0d,0xf5,0x2c,0xb6,0x3b,0x6c,0x3d,0xa9,0xd3, +0xe4,0x44,0xa1,0xe4,0xcf,0x85,0xc2,0x0a,0x62,0x98,0x2e,0xdb, +0x88,0xd3,0x59,0xf7,0x98,0x84,0x62,0x95,0xcb,0x2c,0xcc,0x4a, +0x3b,0xd4,0x89,0xd3,0xc3,0x64,0xaf,0xc0,0x82,0x8d,0xb4,0x0d, +0x73,0x0c,0xb2,0xa7,0xfc,0x97,0xd3,0x92,0xd9,0x92,0xdc,0xca, +0x35,0xe1,0xd1,0x7b,0xe0,0xd5,0x81,0x5e,0x37,0x35,0xd0,0x08, +0x75,0x28,0x00,0xe3,0x81,0x20,0x5c,0xaa,0x8d,0x1f,0x2b,0xf7, +0xda,0xcb,0x2e,0x82,0x4a,0x16,0xac,0x95,0x0a,0xac,0xd3,0x60, +0xfc,0x7c,0x76,0x7e,0xd4,0x09,0xc3,0x1f,0x92,0x64,0xbb,0x59, +0xbd,0x5c,0xdf,0xb3,0xca,0xb0,0x90,0x39,0x9d,0x99,0x5d,0xa7, +0x32,0x74,0x47,0xd0,0x25,0x98,0x0e,0xdd,0x90,0xce,0xe2,0x61, +0xb4,0x25,0xb0,0x1c,0xb4,0x71,0x39,0xfb,0x00,0x8d,0x48,0x0f, +0xfe,0x8f,0xde,0x6b,0x36,0x48,0x23,0x40,0xcf,0x43,0x95,0x03, +0x67,0xc6,0xf6,0xc8,0xf6,0x48,0x35,0x65,0xeb,0x98,0xf0,0x48, +0xab,0x69,0x33,0xa4,0x63,0xee,0xde,0x30,0x97,0xca,0xf2,0xcf, +0xa7,0xa8,0xa4,0xdd,0x39,0xfe,0xf6,0xd6,0x54,0x34,0x64,0x32, +0xcf,0xa4,0x37,0xa4,0x36,0x72,0xc2,0x4a,0xdc,0x4f,0xf0,0x03, +0xd7,0x9d,0x4b,0x75,0x94,0x6b,0x74,0x65,0xef,0xae,0x34,0x3e, +0x85,0xe9,0x53,0xeb,0x34,0xa4,0x33,0x32,0x93,0xc9,0x5e,0xc6, +0x3b,0x2a,0xa9,0x50,0x05,0x7c,0x34,0xa8,0x05,0xd0,0xcd,0xf3, +0xef,0x51,0x7e,0xc8,0xd4,0xe5,0xd0,0xb6,0xc0,0x14,0x56,0x3f, +0x4b,0x36,0x1e,0x32,0x07,0x27,0x91,0x7d,0xec,0x92,0xe8,0xe3, +0xd6,0xdf,0x25,0xca,0x6c,0x58,0xc7,0xbc,0x80,0x06,0x65,0x98, +0xc7,0x9c,0x4c,0xc9,0xa8,0x50,0x69,0x66,0x2d,0x93,0x65,0xba, +0xa8,0xcc,0x06,0xc7,0x9e,0xc8,0x54,0xa9,0x65,0x41,0x21,0xe5, +0x70,0x03,0x8e,0x8b,0x94,0x51,0x4e,0x60,0x63,0x03,0xc2,0xbd, +0xc2,0xbc,0x9a,0x03,0xf9,0xb4,0xc2,0xec,0x33,0x09,0xc5,0x5c, +0x1d,0x7a,0x9e,0x03,0xfb,0x66,0xb4,0x6f,0xd7,0xc5,0xa5,0xb8, +0x1b,0xfd,0x58,0x0c,0x0d,0xc6,0xf9,0xf6,0xb4,0x7f,0xba,0xdc, +0x64,0x75,0x30,0x25,0x0b,0x96,0xc0,0x89,0xa9,0xb0,0x87,0x1d, +0xec,0xa3,0x0d,0x8e,0x63,0x52,0xcf,0xa6,0x0c,0x24,0x76,0x72, +0x60,0xde,0x2b,0x4e,0xd5,0x05,0x45,0x26,0xc6,0x38,0x42,0x2b, +0x4c,0x9d,0x43,0x4e,0xfb,0x77,0x26,0x68,0xa3,0xff,0x86,0x80, +0x5d,0x1c,0x14,0x32,0x87,0x16,0xc5,0xae,0x0d,0xd7,0xe6,0x8c, +0x23,0xfd,0x83,0x4c,0xa7,0xe1,0x18,0xe9,0x64,0x19,0x18,0xc9, +0x5c,0x6f,0xa8,0xb8,0x9d,0xa1,0x92,0x7e,0x43,0x3a,0xf1,0x6f, +0x1a,0x25,0x64,0x26,0xad,0x3d,0xfd,0x5c,0xfa,0x05,0x0e,0x12, +0x19,0x71,0x91,0xb8,0x8b,0x34,0xe1,0xe4,0x6b,0x30,0x99,0xbe, +0x5e,0x85,0x39,0x2d,0x94,0x01,0x52,0x72,0x92,0xf3,0xe2,0xd3, +0xcd,0x52,0xf8,0x68,0xff,0x08,0x5f,0x2a,0xf2,0xe6,0x31,0x49, +0x39,0x89,0x39,0x09,0x59,0xe6,0x19,0xbc,0x9f,0x96,0xf5,0x26, +0x4b,0xd3,0x72,0x7b,0x3e,0x35,0x2d,0x35,0x23,0x25,0x83,0xc3, +0x0b,0x5d,0xd5,0x70,0xb7,0x05,0x97,0xdd,0x61,0x71,0x3d,0x2c, +0x27,0x57,0xe1,0x43,0x2a,0x75,0x3e,0xa4,0xd4,0x7d,0x0d,0x3e, +0xdc,0xcd,0x5a,0x50,0x0d,0xff,0xe1,0x1d,0x9a,0x8c,0x93,0x4e, +0x10,0x8b,0x0e,0xf7,0x9f,0x85,0xd9,0x53,0x21,0x6e,0x28,0x59, +0x63,0x50,0x1f,0x2d,0x59,0x71,0x62,0x2d,0x4e,0x1d,0x50,0x55, +0xae,0x74,0xea,0x49,0x4e,0xec,0x2f,0x06,0x2b,0xde,0xb0,0x44, +0x86,0xa2,0x3a,0xc9,0xf1,0xcd,0xf3,0xcc,0x73,0xdf,0x17,0xb9, +0x2b,0x7a,0x7b,0x0c,0x07,0xcb,0x20,0x02,0x32,0x30,0x02,0x46, +0xb1,0x3f,0x27,0x7d,0x93,0xfa,0x20,0xcd,0xb3,0x97,0xc7,0xa5, +0x1e,0x68,0x16,0x8c,0x8e,0xd2,0xb9,0x06,0x2f,0x8e,0x3d,0x3f, +0xf1,0x38,0x81,0xe6,0x5d,0x10,0x66,0x40,0x10,0xae,0x62,0xe7, +0x45,0xcf,0x8a,0x99,0x15,0x97,0xa8,0xc9,0x83,0x63,0x0a,0xd8, +0x64,0x83,0x7a,0x41,0x8e,0x47,0xb6,0x5b,0x86,0x47,0x5b,0x25, +0x6f,0x7d,0x47,0xf7,0xbe,0x49,0x2f,0x27,0x6e,0x81,0x48,0x02, +0x9b,0x71,0x19,0x6e,0x66,0x84,0xc5,0x8a,0xb8,0x93,0x7e,0xc7, +0x4e,0x66,0xfc,0xe0,0x9b,0xad,0xe4,0xfc,0x9f,0x33,0xd4,0x19, +0xb1,0x51,0x7c,0x49,0x52,0xed,0xd2,0x8c,0x53,0x8c,0x5c,0xa3, +0x5c,0xa3,0x5c,0xa2,0x39,0x70,0x02,0x22,0x28,0x22,0x81,0x65, +0x3a,0xf4,0x5f,0x4d,0x12,0x15,0x61,0x12,0xfa,0xb2,0x7a,0xe1, +0x3a,0x91,0xda,0x51,0x69,0x1a,0x3c,0x30,0x39,0xbf,0x16,0xfe, +0x50,0x71,0xc2,0xe7,0x84,0xcf,0x71,0xbf,0x8e,0x0c,0x3e,0xe4, +0xb1,0xf7,0x5b,0xff,0x9b,0x1c,0x15,0x21,0xa5,0x54,0x84,0xe3, +0x19,0x5d,0x08,0xc0,0xad,0x68,0xca,0xc6,0xae,0x0b,0xc1,0x11, +0x01,0x2b,0x38,0x88,0x63,0x8e,0x2c,0x8f,0x5e,0x1e,0xa9,0xc5, +0x19,0x44,0x05,0x06,0x19,0x4c,0xc3,0x51,0x4c,0xa6,0xb6,0x0c, +0x64,0xcc,0x8d,0xaa,0xa2,0x9b,0xe9,0x2a,0x19,0x77,0x92,0x60, +0x22,0x7c,0x3c,0x15,0x43,0x99,0xe4,0xf6,0x94,0xbb,0xc7,0xdb, +0x39,0x51,0xe9,0x27,0x72,0x17,0x2b,0xb7,0x30,0x60,0x05,0x95, +0x04,0x2b,0x37,0x41,0x25,0x85,0x57,0x83,0x7c,0x12,0x74,0xdf, +0xe3,0x17,0xdf,0x6b,0x46,0x41,0x7c,0x9a,0x63,0x9a,0x59,0x9a, +0x99,0x73,0x84,0x73,0xc4,0x81,0x28,0x0e,0x4c,0x61,0x8e,0x40, +0x70,0x0e,0x2c,0xd3,0xa4,0xcd,0x9d,0x21,0x12,0x98,0x81,0x2e, +0xac,0x66,0x88,0x7a,0x98,0x6a,0x78,0xa6,0x3a,0x0f,0x1f,0x17, +0xc1,0x07,0xe5,0x6f,0x4f,0xc6,0x7b,0xc7,0xfb,0x9c,0xf0,0xe3, +0x84,0x6e,0x61,0x09,0xd9,0x04,0x1f,0x3b,0xc1,0xb8,0x40,0x98, +0xc3,0xa1,0x93,0x26,0xac,0x65,0xd2,0xf1,0xa3,0x46,0x9c,0x7d, +0x0b,0x47,0x73,0xf8,0x5a,0x18,0x43,0xfc,0xf0,0x63,0x7b,0xfc, +0x50,0x77,0x69,0x87,0x25,0x3f,0xf0,0x8e,0x86,0x67,0x9e,0x54, +0x05,0xf1,0x9b,0x45,0x9e,0x63,0xe9,0x2a,0x06,0x42,0xe8,0x7d, +0x62,0xe9,0x0a,0x28,0x65,0x85,0x10,0x7c,0x4e,0x2a,0xb6,0x97, +0x6e,0x2a,0xde,0xb8,0x23,0x64,0x79,0xc8,0x82,0xb0,0x2e,0x50, +0x3e,0x05,0x8b,0x4f,0xc1,0x6a,0xb5,0x2c,0xde,0x1e,0x37,0x5b, +0xe2,0x4a,0x6d,0x9c,0xeb,0x76,0xe8,0xe0,0x21,0xb7,0xc3,0xa9, +0x6a,0x3c,0x2c,0xc9,0x82,0xe5,0xf9,0xc0,0x15,0x27,0xb9,0x27, +0xb9,0x27,0xba,0x0f,0x14,0xf0,0x0e,0x30,0xc5,0x12,0x26,0x98, +0xc0,0x28,0x2a,0x5f,0x7e,0x11,0x4a,0xc8,0x93,0xc2,0xde,0xea, +0x92,0x7e,0x4e,0x18,0x09,0xeb,0x54,0xa9,0xca,0xaa,0x67,0x8e, +0xa6,0x1e,0x4d,0x4b,0x9b,0xfa,0x9b,0xda,0x2c,0x36,0x74,0xf8, +0x3c,0xe7,0x52,0x90,0xa9,0xe1,0x3a,0xb8,0xc4,0xb8,0x39,0x19, +0xfb,0xed,0x08,0x2a,0xb0,0xe4,0x31,0x47,0xf7,0xcf,0x99,0xbd, +0x0c,0x3a,0x8b,0xdb,0x48,0xbe,0x5f,0xa1,0x57,0x81,0xc7,0xa6, +0xe8,0xf9,0xb1,0xd3,0x63,0x39,0xf8,0x08,0x5e,0x82,0x1f,0xbe, +0x7c,0xa6,0xb6,0x1a,0xef,0xa3,0x1f,0xdc,0x47,0x05,0x16,0xa7, +0xc5,0xe2,0xec,0x38,0xe4,0x0f,0x27,0x68,0xf1,0x90,0x9f,0x08, +0x9d,0xc9,0xe0,0x5b,0x94,0xe7,0x9d,0xe3,0x93,0xe9,0xd7,0x5e, +0xc6,0x5b,0xf5,0xec,0xbd,0x6f,0xd8,0xc6,0x89,0xcf,0x80,0x3a, +0xcb,0x34,0x1c,0x87,0x69,0x8c,0xf0,0xbd,0x22,0x96,0xc1,0x38, +0xe9,0x39,0x5d,0x61,0x1c,0x84,0x91,0x34,0xa7,0x34,0x8b,0x54, +0x0b,0xfb,0x08,0xdb,0x48,0x9b,0x48,0x0e,0xec,0xe1,0x33,0x61, +0x12,0x7e,0x06,0xcb,0xd5,0x71,0x39,0xae,0x10,0x27,0xc1,0x0a, +0xf4,0x64,0xf7,0x87,0xef,0x89,0xd8,0x1d,0x99,0x46,0xef,0x57, +0x39,0x57,0xea,0x7c,0xb6,0x26,0xde,0x33,0xde,0xfb,0x84,0x4f, +0x0f,0x65,0xd2,0x07,0xee,0x6f,0x7c,0xae,0x71,0x42,0x56,0x0a, +0x99,0xe3,0x2f,0x13,0xbe,0x51,0x13,0xdf,0xb0,0x58,0x6d,0x90, +0xa2,0x0e,0x85,0x5d,0x32,0x8c,0xbb,0x00,0x49,0x2c,0x7c,0x90, +0x2f,0x43,0x7b,0x41,0x99,0x18,0x5c,0xdc,0x77,0x59,0xbb,0xcd, +0xda,0x9a,0xef,0x37,0xba,0xb4,0xaf,0x4b,0x8d,0x13,0x2f,0x5d, +0x23,0xbf,0x60,0xe1,0x7c,0x06,0x32,0xa0,0x90,0x60,0xe1,0x2c, +0x28,0x64,0x85,0x4d,0x58,0x4e,0xf4,0xaf,0x68,0x5e,0x54,0xef, +0xb3,0xb4,0xe1,0xcf,0xe9,0x0c,0xec,0xef,0x96,0x0a,0x20,0x8f, +0x20,0x8a,0xa4,0xda,0xa7,0x9a,0xa4,0x1a,0x2f,0xf2,0xe2,0x69, +0x34,0x7f,0x4a,0xc3,0xe3,0x53,0x58,0xa6,0x45,0xc3,0x63,0x2a, +0x0d,0x8f,0xa9,0xe8,0xc3,0x6a,0x87,0x6b,0x45,0x68,0xc8,0xa3, +0xf9,0xc3,0x1c,0x18,0x51,0xf8,0xa6,0x52,0x6a,0xe1,0x71,0xbf, +0x4e,0x1a,0xce,0x8f,0xbc,0xde,0xfa,0xde,0xe0,0xe8,0x78,0xb4, +0x12,0x0c,0xd1,0x85,0x1d,0x38,0x15,0x2d,0x87,0x76,0x0e,0x0c, +0x8e,0x83,0xb9,0x4c,0x1c,0x7e,0x64,0x8b,0xdc,0x02,0x1c,0x5b, +0xab,0xc9,0x7f,0x0b,0x63,0x4f,0x7e,0x1f,0x0f,0x0a,0x5c,0x22, +0x73,0x02,0xc7,0xd4,0xae,0x7a,0x81,0x13,0x6a,0xfb,0xf8,0x85, +0x30,0xc1,0x01,0x3e,0x88,0x83,0x31,0x1c,0x2c,0x10,0xbb,0x71, +0x29,0x93,0xa3,0x25,0xed,0xde,0xd2,0x9c,0x9b,0xdb,0xac,0x22, +0xfc,0x8a,0xd6,0xac,0xf8,0x5d,0x0a,0x79,0x8c,0xe5,0xeb,0x18, +0x70,0x87,0x72,0x82,0xe5,0x9f,0x43,0x39,0xb5,0x2f,0x3e,0xd4, +0x18,0x82,0x1e,0xe8,0x0d,0xa0,0x1e,0xa8,0x81,0xd3,0x00,0x3a, +0x81,0xa2,0x3a,0x2a,0xa2,0xb5,0x16,0xb5,0xe0,0x6a,0xa8,0xa9, +0x05,0x9a,0xa8,0x87,0xae,0x5a,0xe0,0x8a,0x81,0xe7,0x21,0x10, +0x3c,0x07,0x58,0xf1,0x75,0x1e,0x49,0xb3,0x4f,0x33,0x4b,0x35, +0x71,0x8c,0xb0,0x8f,0xb4,0x8f,0x92,0xf2,0x76,0x9e,0x30,0x0d, +0xe7,0xc1,0x0a,0x4d,0x5c,0x41,0x7d,0xeb,0x34,0x98,0x4d,0xef, +0x54,0x23,0x4c,0x2d,0x62,0x7f,0x54,0x3a,0x1d,0x0e,0x92,0x07, +0x5c,0x11,0x8c,0xa8,0x8e,0xf7,0xa2,0xb9,0xeb,0xdb,0x95,0xc9, +0x07,0x3f,0xf2,0x94,0x6e,0x15,0x8b,0x84,0x0f,0xc9,0x37,0x58, +0xb5,0x92,0xa1,0xe0,0x53,0x45,0xb0,0x6a,0x19,0x54,0x51,0x14, +0x1b,0x31,0xb8,0x85,0xb2,0x90,0x06,0x1d,0xd9,0x78,0xf9,0x1f, +0xdb,0xb4,0x6e,0x0f,0xe9,0x9f,0xbb,0x08,0xf1,0xaa,0xe7,0x06, +0xf5,0x9f,0xd2,0xef,0xff,0x1f,0x51,0x8b,0xa4,0x3a,0xa4,0x99, +0xa6,0xd0,0x06,0x38,0x44,0xda,0xc9,0x1b,0xa0,0x4c,0xbb,0x5a, +0x79,0xb8,0xab,0xa7,0xd1,0xae,0x9e,0x26,0x75,0x75,0x98,0x66, +0xe4,0x70,0x57,0x2b,0xe4,0x02,0x5b,0xf4,0x7b,0xd5,0x09,0xaf, +0x78,0x9f,0xe3,0xbe,0xb4,0xab,0x83,0x69,0x57,0xfb,0xd1,0xae, +0xde,0x42,0x9d,0x20,0x1c,0x83,0x78,0x3c,0xc6,0x0e,0x6d,0x87, +0x2f,0xc9,0x13,0x2c,0x5f,0xcb,0x80,0xc7,0xdf,0xdd,0x03,0x9d, +0xd8,0x4f,0xe8,0xdb,0x95,0xf2,0x23,0xa5,0x7b,0x05,0x6d,0x3a, +0x86,0xfd,0x38,0x08,0xba,0x0c,0x4c,0xca,0x84,0x8f,0x2a,0xbf, +0x3b,0xe5,0xd4,0xc1,0xaf,0x74,0x44,0xde,0x19,0xe7,0x04,0x71, +0x43,0x76,0x1a,0x6c,0xd0,0x5d,0x8f,0x1f,0xfc,0x2e,0x1b,0x06, +0xf1,0xa9,0x8e,0xe9,0xe6,0xa9,0xe6,0x07,0x22,0x1d,0x23,0x1c, +0x69,0xfb,0x2c,0x60,0x29,0x6d,0xdf,0x52,0x58,0xa6,0x41,0xdb, +0xb7,0x90,0xb6,0x6f,0x21,0xba,0xb2,0x6a,0x21,0xfb,0xc3,0xf7, +0x46,0x48,0x1d,0xc4,0x17,0x02,0x57,0xfa,0x47,0x8d,0x1c,0x29, +0x7c,0x5b,0x33,0x78,0x73,0x21,0xa4,0x9f,0x4a,0x80,0xa1,0xf5, +0xc2,0x0f,0xe4,0x07,0x2c,0x5a,0xcc,0xc0,0x71,0x28,0x22,0x58, +0xb4,0x00,0x8a,0xa4,0x23,0xa9,0x77,0x10,0x71,0x1d,0xae,0x11, +0xd6,0xd1,0xbe,0xd2,0x19,0x9c,0x40,0x30,0x12,0xcc,0xd4,0xd0, +0x0c,0x6d,0xb4,0xc0,0x06,0x3d,0x71,0x9f,0xb8,0xe7,0xfc,0x2d, +0xb8,0xb2,0xfd,0xbc,0xb0,0x07,0x75,0xc0,0x13,0x22,0x99,0xa1, +0x89,0x14,0x2e,0x52,0xed,0xd3,0x4d,0x53,0x4d,0xdc,0x22,0x0f, +0x46,0x1d,0xa4,0x48,0x6b,0xf5,0xcf,0x0e,0xfb,0x84,0x36,0xe8, +0x13,0x74,0x63,0xb5,0x43,0x35,0xc3,0xd4,0x23,0xd2,0x29,0x74, +0x7d,0x58,0xf0,0x6b,0xc9,0x4f,0xd5,0x34,0x34,0x7d,0x69,0x68, +0x4a,0xe9,0xe3,0xf9,0xc6,0xef,0x3a,0x87,0x91,0xc2,0x88,0xf7, +0x7d,0xe4,0x29,0xef,0xa3,0xd5,0x52,0x1f,0x15,0x8a,0x37,0x08, +0x1c,0x85,0x2b,0x78,0x94,0xb6,0x67,0xc2,0x60,0x13,0x11,0xa7, +0x0c,0x15,0xeb,0x31,0x41,0xf7,0xdc,0x7f,0xf6,0xb9,0x62,0x44, +0xb9,0xd8,0x31,0xdd,0x22,0xcd,0xc2,0x39,0xfc,0x40,0xf8,0x81, +0x08,0x8e,0x86,0xda,0x3f,0x30,0x73,0x26,0xfd,0xe2,0x99,0x68, +0xcf,0x6a,0x06,0xa9,0x07,0xef,0x0f,0xcd,0xa2,0x5f,0x3c,0xb1, +0x0c,0x3e,0xa8,0x7e,0x5b,0x4f,0x7b,0xc2,0xf7,0x84,0x5f,0x49, +0x32,0x6f,0x2c,0x94,0xf5,0xef,0x63,0xd5,0x84,0x0a,0x82,0x59, +0x60,0x00,0x59,0xcc,0x90,0x26,0x2a,0x93,0x17,0x58,0xfa,0x19, +0x03,0x61,0x72,0x3c,0x5c,0x4e,0xf1,0x10,0x5a,0xf0,0xa2,0xb4, +0x11,0x4f,0x16,0x1a,0xb3,0xba,0xa3,0xd1,0x87,0xfe,0x5d,0x1f, +0x1a,0xdb,0xee,0x83,0x8f,0x88,0x06,0xa5,0xfd,0x7d,0x43,0xbe, +0xfd,0xe7,0xe0,0x96,0x46,0xff,0xa0,0x2f,0xea,0x30,0x22,0x11, +0xd7,0x93,0x34,0x87,0x34,0xb3,0x14,0xd3,0x03,0x91,0x4e,0x51, +0xd2,0xf0,0x38,0xfc,0xb3,0x51,0xb3,0x68,0xa3,0x66,0xa1,0x97, +0x3c,0x7e,0x55,0xa3,0xa4,0xde,0x98,0x98,0x0b,0x4c,0xe1,0xef, +0x55,0xb4,0x3b,0xbc,0xff,0x0a,0xdf,0x37,0xbe,0xb4,0x3b,0xb2, +0x05,0xf6,0x7d,0x53,0xc2,0xe5,0x4d,0x59,0x26,0x41,0xf3,0x0c, +0xcc,0x21,0x38,0x19,0x8e,0xc0,0x64,0xa6,0x0f,0x8f,0x10,0xfa, +0xcb,0x27,0x78,0x84,0xc5,0xdb,0xba,0x04,0x26,0x63,0x8e,0x34, +0x0b,0xa7,0x0a,0x39,0x52,0x7f,0xe7,0xe0,0x27,0x54,0xbb,0x02, +0x44,0xd0,0xc6,0xa4,0x9a,0xa7,0x9a,0xda,0x47,0xd8,0x45,0xda, +0x46,0x4a,0xb1,0xfc,0x2f,0x56,0xf1,0x66,0xe9,0xc0,0x44,0x0e, +0x37,0x66,0x72,0x2e,0x8c,0xa5,0xc9,0x54,0x45,0x93,0x69,0xb8, +0x35,0x21,0x0f,0x69,0x32,0x5d,0xe7,0xe0,0x98,0xf0,0x90,0xb8, +0x2d,0xdd,0xb9,0x18,0x95,0x16,0x9e,0xa4,0x72,0x73,0xca,0xdb, +0x9b,0x4f,0x8b,0x60,0x24,0x97,0xc0,0x14,0xcc,0x7a,0xbc,0x02, +0xa6,0xe3,0x08,0x0a,0x12,0x38,0xf5,0xa7,0xb5,0x3f,0xbb,0xbc, +0xe2,0xc4,0x17,0xe8,0xf0,0x2f,0x56,0x81,0x62,0xe9,0x60,0x8a, +0xa6,0x3e,0x6c,0x62,0x9e,0x60,0x10,0x11,0x95,0xce,0x0a,0x4a, +0xf0,0x05,0x06,0x2c,0x64,0xd3,0xb5,0x65,0x8f,0x99,0xc6,0xdc, +0xdc,0x56,0x15,0x28,0x17,0xd5,0x74,0x28,0x29,0x2e,0x16,0xee, +0x12,0x74,0x39,0x82,0xdb,0x6c,0x71,0xbe,0x72,0xc8,0x5d,0xff, +0x17,0x41,0x17,0xcc,0x42,0xf9,0x14,0xdb,0x54,0xc3,0x14,0x43, +0xf5,0x00,0x1e,0x6c,0x60,0xac,0x30,0x11,0xc7,0xc2,0x62,0x5d, +0x5c,0x8c,0x9c,0x38,0x11,0x38,0xf4,0x60,0x8d,0xc2,0x0c,0x22, +0xf4,0x22,0xd3,0x35,0xf9,0xd7,0xb9,0xcf,0x0b,0x9f,0x94,0x4b, +0xc1,0x75,0xdc,0xbf,0x36,0x85,0x8f,0x09,0x88,0x09,0x88,0x0e, +0x6c,0xb7,0xe3,0x6f,0x82,0xea,0x09,0x3a,0x8c,0x35,0x53,0x61, +0xa3,0x10,0xdd,0x29,0xb6,0xb3,0xa0,0x8f,0x53,0xa8,0x90,0x34, +0x85,0x0f,0x4c,0x3a,0xda,0x60,0x9a,0x49,0x7b,0x1b,0x8c,0x6e, +0xc5,0xd1,0x7d,0xc6,0x3a,0x38,0xad,0xcf,0x88,0x11,0x3d,0x16, +0x90,0x2b,0x58,0x4e,0xed,0x99,0x9a,0x3c,0x1e,0x77,0xd3,0x78, +0x1c,0x5c,0x83,0xdf,0x13,0xc8,0x12,0xa7,0xd1,0x20,0xd8,0xa0, +0x86,0xc6,0xd8,0xd3,0x05,0x89,0x30,0x77,0x1e,0x6b,0x13,0x67, +0x1b,0xe7,0x78,0x38,0xc1,0x84,0xbf,0x9d,0xf8,0x63,0xfa,0xdd, +0xcc,0x54,0x53,0xbe,0x3e,0x23,0xea,0x74,0xc0,0xc5,0xd0,0x93, +0x4a,0x36,0x61,0xf1,0x21,0x09,0x01,0xf1,0x01,0x4a,0xde,0xb1, +0x1e,0x71,0x1e,0x71,0xdc,0x2b,0x58,0x46,0xff,0xe1,0x58,0x36, +0xd3,0x54,0xf6,0x1b,0x73,0x3a,0x43,0x3a,0xef,0x32,0x02,0x6d, +0x2f,0xb0,0xc6,0xb0,0x94,0xe0,0xd8,0xcb,0x30,0x96,0x69,0xdf, +0x47,0x2e,0x83,0xc2,0x3e,0x16,0x1b,0xad,0xa8,0x2b,0xd9,0x85, +0x63,0x19,0x58,0x7f,0x9d,0x80,0xc2,0x2e,0x54,0x60,0xc6,0xff, +0xc9,0x1d,0x27,0x78,0x8c,0xd1,0x09,0x4b,0x3b,0xaf,0x02,0x26, +0xe0,0x0a,0x0d,0x18,0xc5,0xe6,0xd7,0xe6,0x9c,0xca,0xaa,0xe3, +0x20,0x8f,0xc1,0x1d,0x87,0x17,0xc5,0xac,0x56,0x56,0x8b,0x09, +0xf3,0x31,0x9b,0xb6,0x4b,0xda,0x76,0xf0,0x02,0x73,0xa7,0xa6, +0xf6,0xc7,0x24,0x95,0xa4,0x9f,0x8e,0xbe,0xa5,0x7a,0x1d,0x07, +0x98,0x94,0xca,0xe4,0xca,0xc4,0x6a,0x9d,0x2c,0xde,0x0d,0xc7, +0x99,0xe0,0xc8,0x6d,0xcb,0x9b,0xcd,0xf9,0xe4,0xd4,0xa4,0xd4, +0xa4,0x34,0x4e,0xdc,0xc7,0xce,0x2b,0x74,0x7f,0xad,0x4c,0x13, +0xbb,0x3d,0x37,0xb7,0x4d,0x3a,0x22,0x5a,0x3b,0x5b,0x26,0x56, +0xbe,0x94,0x30,0xd1,0x2c,0xd5,0xd4,0x29,0xd2,0x21,0xd2,0x21, +0x5a,0x0a,0xea,0xb9,0x34,0x8e,0xe6,0x0e,0xc7,0xd1,0x6c,0x1a, +0x47,0xb3,0x87,0x83,0x3a,0x72,0x18,0x94,0x27,0xe5,0x52,0x50, +0xfe,0xe3,0x3f,0x61,0xf4,0x57,0x50,0xe7,0xd3,0xa0,0xfe,0x06, +0x4b,0xe4,0x98,0x5c,0x42,0xb0,0x64,0x29,0x94,0xb0,0x82,0x21, +0xb2,0x84,0x26,0xd2,0x6a,0xd8,0xcd,0x8e,0x87,0xf3,0x10,0x4d, +0x75,0x5b,0xaa,0x51,0x8a,0x91,0x7b,0xd4,0x30,0x9a,0x1c,0x80, +0x49,0x54,0xb7,0x4d,0x1a,0xd6,0x6d,0x13,0xa8,0x6e,0x9b,0x40, +0x75,0x9b,0x7e,0xb8,0xee,0x7b,0xdd,0x36,0x2a,0xe7,0x75,0xe1, +0xf7,0xe5,0x12,0xf6,0xbf,0xd7,0x6d,0x3e,0x92,0x6e,0x7b,0x8e, +0x8f,0xc9,0xc0,0x0d,0x61,0xe4,0xce,0xfe,0xc1,0xff,0x23,0x7a, +0x33,0x03,0x7a,0x44,0x18,0x39,0xa4,0x26,0x8e,0x64,0xc4,0x31, +0xc2,0x2d,0x72,0x1b,0x2b,0xb7,0x49,0x8b,0x59,0x25,0x1d,0xb6, +0x85,0xea,0x30,0xb8,0x2d,0xee,0x25,0xe0,0x2c,0x6c,0x41,0x67, +0xa6,0x57,0x1c,0x4f,0xe0,0xf1,0xef,0xf8,0x58,0x2a,0x36,0xca, +0xf3,0x87,0x26,0xb3,0x19,0xc5,0xda,0x28,0x87,0x28,0x49,0x1b, +0x2c,0xa4,0xf7,0xbd,0x70,0x18,0x6b,0xe7,0xd3,0xfb,0x9e,0x4f, +0xb5,0x81,0x7a,0xd8,0xfe,0x88,0x7d,0xf2,0xfb,0x56,0x94,0xdf, +0x77,0x75,0x82,0xfc,0xbe,0xbb,0xe9,0x7d,0x3f,0xf4,0x90,0xee, +0x5b,0xe8,0x81,0x46,0x82,0x6e,0xb0,0x97,0xb9,0x98,0x7e,0x21, +0xab,0x3f,0xcf,0xb5,0x8b,0x97,0x4e,0x71,0x9e,0xe3,0x81,0xd3, +0x23,0x32,0xb4,0xf9,0xde,0xf8,0xf3,0x89,0x17,0x52,0x38,0xdc, +0x84,0x46,0xda,0x60,0x44,0xbb,0x62,0x9b,0x38,0xe1,0xfc,0x39, +0x68,0xd0,0x38,0x2f,0x4c,0xc0,0x6d,0xb0,0x1b,0xdc,0xd8,0xa1, +0xeb,0xa0,0x4c,0x5e,0x62,0xc9,0x32,0x06,0x0e,0xc9,0x7b,0x6e, +0x11,0xed,0x39,0xa8,0x13,0xef,0x13,0xb0,0xa6,0x11,0x60,0x4d, +0xd1,0x71,0xa2,0xe0,0x44,0xb4,0x18,0x9f,0xf0,0x84,0x52,0x15, +0x4a,0x2d,0xf7,0xa8,0x86,0x9f,0x15,0xbd,0x77,0xee,0x72,0xe5, +0x46,0x2b,0xd9,0xbb,0xb7,0xd9,0xdf,0x81,0xc2,0xd4,0x06,0xca, +0xba,0xc7,0x59,0x8d,0x22,0xdf,0x73,0xca,0xfd,0x4c,0x6b,0x66, +0xe1,0x29,0x15,0x18,0xcb,0xea,0xe7,0xc8,0x86,0xee,0x48,0xfb, +0xa1,0x7e,0x98,0x0d,0x9f,0x96,0xfe,0x5a,0x1b,0xdd,0xca,0x5b, +0x87,0x99,0x85,0x1b,0x53,0x38,0x35,0x87,0xa9,0xdd,0xf8,0x5a, +0x1f,0x96,0xa0,0x13,0xab,0x13,0xa1,0x1d,0xa9,0x13,0xcd,0x0d, +0xae,0x68,0x20,0xce,0x1d,0x36,0x2d,0x36,0x27,0x2d,0x1d,0xf9, +0x7a,0xbb,0x5a,0x9b,0x6a,0x7d,0xee,0xa2,0x38,0x9f,0xe4,0xf9, +0x17,0xf8,0x14,0x78,0x6d,0x89,0x59,0x4c,0x75,0x3b,0x07,0xa3, +0xe1,0x31,0x1c,0xc0,0xc7,0x0f,0xd4,0x36,0xe2,0x15,0x3c,0x40, +0xd1,0x9b,0x65,0x91,0x8f,0xc5,0x99,0x87,0x50,0xf1,0x70,0xa2, +0x36,0x0f,0x59,0x89,0xd0,0x9c,0x04,0x9e,0x05,0xb9,0x3e,0x39, +0xbe,0x99,0xfe,0x6d,0x54,0xa3,0x75,0xed,0xbd,0x6d,0xd4,0xcc, +0x89,0xd7,0x60,0x33,0xe5,0x4c,0x1c,0x45,0x03,0x5c,0xb8,0xa9, +0x48,0x93,0x6c,0x14,0x45,0xe5,0xf1,0x83,0x1e,0x6f,0x48,0x9e, +0x5f,0xa1,0x67,0xa1,0xc7,0xd6,0x98,0x25,0x31,0x73,0xa8,0x08, +0x1c,0x0f,0x6d,0xa0,0xc3,0xd6,0xf8,0x9e,0xf2,0xab,0xf7,0x2f, +0xa7,0x9d,0x49,0x06,0x3e,0xbf,0x60,0x72,0x8b,0x83,0x23,0xfd, +0x98,0x06,0x63,0xc1,0xaf,0x0f,0xfd,0xbe,0x57,0x5f,0x8a,0xa5, +0xd2,0x8b,0x83,0x0e,0x38,0xe0,0x58,0x8c,0xd3,0x86,0x50,0xc6, +0x62,0xf3,0x7a,0x0d,0x9c,0xa0,0x59,0x65,0xc8,0x37,0xe6,0xd7, +0x15,0x9c,0x2c,0xe6,0xd0,0x08,0x6a,0x70,0x02,0x8b,0x8a,0x31, +0x38,0x3d,0x0e,0x27,0x1f,0x4e,0xa4,0x0a,0x32,0x3d,0x11,0xea, +0x92,0xc1,0xad,0x38,0xd7,0x2b,0xc7,0x27,0xc3,0xaf,0x83,0xb6, +0xae,0x77,0xef,0x03,0xe3,0x36,0x0e,0x97,0x0b,0x03,0x34,0x43, +0xa9,0x5a,0x1d,0xcb,0x52,0x4b,0xb0,0x9d,0x54,0xea,0xb6,0x98, +0xf4,0x5b,0x72,0x18,0x0d,0xa3,0xd4,0x68,0x9b,0xa3,0x98,0xee, +0xa6,0x33,0xed,0x65,0xdd,0xdc,0x3c,0x34,0x21,0xe0,0x82,0x0a, +0xe8,0xc2,0x40,0xa5,0x22,0x28,0x50,0x4f,0xa3,0x40,0x19,0xc3, +0x63,0x50,0x83,0xc0,0x74,0x75,0x9c,0x8e,0xa6,0x3a,0x82,0x4b, +0x1f,0x2b,0x5a,0x0f,0x6d,0x26,0x41,0x0f,0x3c,0x7e,0xf1,0x7e, +0xaf,0xfe,0x2d,0xd2,0xcc,0x6d,0xc3,0x6d,0xc2,0xad,0x23,0xa5, +0xe3,0x1c,0x16,0xd0,0x38,0x5b,0x30,0x9c,0x5f,0xf3,0x68,0x9c, +0xcd,0xc3,0x83,0xac,0x7a,0xa8,0x6a,0xd8,0xbe,0x08,0x69,0xfb, +0x2f,0xa5,0x42,0x18,0x5f,0x0e,0xa3,0x4e,0x26,0x78,0x49,0x34, +0xca,0x61,0xfb,0xe0,0x28,0xf2,0x1d,0x96,0x2c,0x67,0x20,0x56, +0x1e,0x1d,0x4b,0xa4,0xe8,0xb8,0x7e,0x88,0x38,0xaf,0x31,0xf8, +0x7c,0xaf,0xea,0x49,0x53,0xfe,0xd6,0xcd,0x9e,0xaf,0x4f,0xbd, +0xe6,0x60,0x6c,0x34,0xe9,0xde,0xdc,0xba,0xba,0x7e,0x69,0x47, +0x15,0x6f,0xfd,0xd2,0xf8,0x99,0xee,0x5d,0x6e,0xa7,0xe8,0x41, +0xda,0xae,0x9f,0x7a,0x52,0xfc,0xb3,0x4e,0x21,0xef,0xbb,0xc6, +0x75,0x9b,0x8d,0x9a,0xcd,0x79,0xd7,0x5b,0xbe,0x4f,0x75,0xbd, +0xf8,0x92,0x85,0x27,0xd7,0xb7,0xec,0xd6,0xdc,0xbe,0x59,0x67, +0xb9,0x65,0xa5,0x1e,0xff,0xb2,0xe9,0x41,0xff,0xc5,0xbb,0x17, +0xb6,0xde,0xd3,0x7e,0x61,0x56,0xd1,0xcb,0x7f,0xd6,0xb4,0xad, +0x57,0xeb,0x26,0x37,0xfe,0x4f,0x4d,0xe1,0x23,0xd2,0x87,0x5e, +0xb0,0x1f,0x2c,0x7a,0xd1,0x02,0x36,0x6a,0xe1,0xc6,0x59,0x6c, +0x5a,0x53,0x4a,0x53,0x42,0xa3,0x7e,0x32,0x1f,0x88,0x23,0x1c, +0x91,0x31,0x5a,0xdb,0xe6,0xc2,0x17,0xd5,0xe7,0xb7,0x65,0x77, +0x49,0x5b,0x0c,0xed,0x47,0x17,0x1d,0x30,0x64,0x5c,0x71,0xd4, +0x16,0x64,0xa6,0xcf,0xae,0x37,0xa6,0x0e,0x0c,0xd8,0x8e,0xe7, +0xf9,0x30,0x91,0x4b,0x14,0x17,0x0e,0x08,0x0b,0x13,0x99,0x7c, +0x54,0x6c,0xff,0x82,0xa6,0xfb,0xb8,0xd3,0x74,0x88,0x99,0x3f, +0xb6,0x80,0xcc,0x85,0x9a,0x0a,0x71,0x39,0x25,0xe9,0x54,0xfb, +0x34,0x53,0x09,0x8d,0x86,0x29,0xd6,0x11,0x66,0xd2,0xde,0x9a, +0x39,0x2c,0x38,0x54,0x68,0x6f,0xa9,0x48,0xac,0x16,0xae,0x11, +0xa1,0x16,0x95,0x26,0x79,0xa5,0x5c,0x90,0x15,0xfe,0x56,0x35, +0xac,0x10,0x3b,0x87,0x49,0x8d,0x2a,0x34,0x4c,0xa7,0x68,0xf4, +0x14,0xcb,0xd6,0x30,0xe0,0x0f,0x65,0x04,0xcb,0x3e,0x83,0x32, +0x9a,0x47,0xda,0xc2,0x76,0xd2,0x8b,0x9b,0xd9,0x4b,0x0f,0xfa, +0x9e,0xb5,0xbf,0x36,0x2e,0xe7,0x75,0x70,0xf4,0xfe,0x85,0x9b, +0x3f,0xe7,0xcc,0x61,0x39,0x2c,0xe8,0xa1,0x83,0x32,0x4b,0x03, +0x67,0xe1,0xe7,0x7a,0xf0,0x39,0x55,0x91,0x6a,0xba,0x10,0xc1, +0x6c,0xde,0xb6,0x5a,0x75,0x81,0x6e,0x85,0x01,0x5f,0x57,0x78, +0xaa,0xa8,0x96,0x46,0x95,0x1f,0xbb,0x45,0x7e,0xac,0x93,0x37, +0xd3,0x99,0x29,0xed,0x63,0xa8,0xcc,0x6a,0xe7,0xc8,0xf0,0x73, +0x4a,0x53,0xa6,0xd1,0xc9,0x0d,0x2a,0xaf,0x58,0xf8,0xe8,0x34, +0x28,0x0c,0x3c,0xbf,0xe8,0xd8,0xca,0xaf,0xd7,0x9c,0x65,0x80, +0xa3,0x1c,0x39,0xf8,0x80,0xed,0xac,0x6b,0x69,0x6c,0xa4,0x69, +0xb0,0x0a,0x75,0x25,0xa9,0x6f,0x9c,0x6a,0xec,0x1c,0x79,0x20, +0xca,0x29,0x4a,0x02,0x41,0x9e,0x82,0x20,0x0f,0xcb,0xb4,0xe9, +0x1d,0x12,0x0a,0x82,0x84,0x82,0xa0,0x6e,0xb8,0x76,0xa4,0x96, +0x1c,0x04,0xc7,0xe6,0xfe,0x51,0xf8,0x4b,0xc5,0xb0,0xda,0xef, +0xa0,0x37,0xf8,0xc8,0x5b,0x7e,0x83,0x47,0x04,0x8e,0xdc,0xa7, +0x56,0x93,0xa1,0xb8,0x25,0x61,0xdd,0x7a,0xb9,0xe7,0x24,0x69, +0x24,0xf4,0x11,0x45,0xc9,0x1b,0x66,0x21,0x3c,0xb5,0xc8,0x94, +0x54,0x3d,0x22,0x3d,0xa2,0xdc,0xe9,0xb7,0xd8,0x00,0x2b,0x4c, +0x41,0x16,0x96,0xe9,0xd1,0x6f,0x91,0x89,0x53,0x40,0x46,0x5b, +0x6c,0x1c,0x6a,0x18,0xae,0x1f,0x41,0x89,0xf5,0xd7,0x82,0xef, +0x4b,0x9f,0x57,0x26,0x6b,0xf0,0xc2,0x3e,0xd8,0x4d,0xac,0x19, +0xb7,0xa8,0xe4,0x72,0x15,0x61,0xb4,0x9e,0x38,0x81,0xd5,0x2e, +0xf2,0xec,0x53,0x86,0x80,0x7e,0x54,0x80,0x1c,0xf8,0xa8,0x0f, +0x3f,0x02,0x2f,0xa6,0x2e,0xf3,0x54,0x56,0x6d,0xb6,0x4b,0x27, +0xff,0x85,0xc5,0x6c,0x47,0xfc,0xc0,0x3b,0x53,0x8f,0x6f,0x4f, +0xed,0x48,0x6f,0xcd,0xe4,0xc2,0x87,0xd4,0x08,0xb2,0xdb,0x4f, +0x5e,0x34,0x53,0x39,0xf3,0x63,0x3a,0x7c,0x10,0x0f,0xb3,0xb9, +0x7a,0x9c,0xcc,0xb6,0x5f,0xe9,0x79,0x57,0x74,0x9f,0x6b,0x41, +0x7d,0x3d,0xf8,0x84,0xf5,0xda,0xa3,0x3f,0x47,0x7d,0x23,0x67, +0x0a,0xb3,0xd8,0x43,0x38,0x22,0x62,0xa5,0xfb,0x06,0xaf,0xde, +0xd0,0x6b,0x91,0x0f,0xf4,0x42,0xf9,0xb4,0xb9,0x79,0xab,0xeb, +0xf6,0x78,0x99,0x39,0x5b,0x59,0x59,0x9f,0x32,0xe3,0xeb,0x1b, +0xaa,0x1a,0x8a,0x1b,0xb9,0xfd,0x7d,0x5f,0x3b,0xc0,0xc7,0xd3, +0x40,0x83,0xc9,0xe8,0x93,0x0d,0x3d,0x1b,0x1c,0x49,0x2e,0x62, +0xad,0x2a,0x43,0xf1,0xb3,0x96,0x60,0xed,0x5e,0xa8,0xa5,0xf7, +0x6e,0x9a,0x4b,0x82,0x1f,0xfc,0xc7,0x6f,0x9b,0xa7,0x9a,0x39, +0x86,0x3b,0x44,0xd8,0x47,0x48,0x2a,0x7a,0x96,0x20,0x6d,0xbd, +0x28,0x8f,0xa1,0xe9,0x34,0x86,0xa6,0x53,0x15,0x4d,0xfd,0x76, +0xa8,0x5a,0x44,0x06,0xed,0xe1,0x49,0x45,0xc0,0x94,0xbd,0x3b, +0x49,0x35,0xb4,0xb7,0xe4,0xb7,0xa3,0x8f,0x90,0xdd,0x8c,0x7b, +0x54,0x7c,0xb9,0x0a,0xe8,0xc2,0x08,0xe1,0xb6,0xf8,0x99,0x78, +0xfb,0x57,0x36,0x0a,0x47,0x99,0x6d,0x44,0x66,0x5f,0x15,0x8d, +0x66,0xfe,0x66,0xcf,0xbb,0x24,0x1a,0xcc,0xcf,0x50,0x9f,0xd9, +0x57,0xe4,0xd3,0xab,0xfc,0x90,0xa9,0xcf,0xce,0x6c,0x51,0x81, +0x49,0xd2,0xd2,0x37,0x3d,0xe1,0x25,0xed,0x02,0xec,0xa0,0xfc, +0x2a,0xae,0xc5,0x8f,0xc9,0x33,0x2c,0x5b,0xcd,0x50,0x07,0x24, +0x85,0xe1,0x4a,0x1a,0x86,0xc2,0x1d,0x73,0x09,0x6a,0x3a,0x24, +0xa8,0xe9,0xc0,0x2d,0x04,0x27,0xd0,0xdf,0x27,0xd0,0x1b,0x98, +0x9b,0x41,0xe8,0xe8,0xbe,0xf1,0xbf,0x6e,0x42,0x07,0xcf,0x3e, +0xcd,0x38,0xc5,0x98,0x0e,0x5d,0xb4,0x5b,0xb4,0x34,0x78,0x13, +0x29,0x5d,0x4c,0x84,0x25,0x3a,0xb8,0x84,0xf2,0xe4,0x04,0x9a, +0x38,0x1e,0xac,0x7e,0x98,0x4e,0x84,0x4e,0x64,0x9a,0x26,0x0f, +0x1f,0xe4,0xfe,0x52,0xf4,0x5d,0xa5,0xbc,0xbe,0xe1,0xcf,0x81, +0xff,0x20,0x25,0xa4,0x93,0xd4,0x53,0x9e,0x64,0x3b,0x86,0x46, +0x90,0xbe,0xbd,0x60,0x2a,0x2a,0xc1,0x4d,0x4d,0x91,0x13,0x94, +0x70,0x2e,0x15,0x88,0x9c,0x3a,0x72,0xe8,0xa3,0x03,0xf6,0xac, +0xcf,0xb6,0xed,0xbb,0x71,0x81,0x5a,0x89,0x0e,0x0f,0xbb,0x1f, +0x5e,0xbd,0x97,0xfe,0x13,0xb5,0x86,0xe9,0xf3,0x9e,0x6c,0x85, +0xfd,0x1b,0xcb,0x07,0x78,0xfc,0xec,0xc2,0x17,0x57,0xbc,0x6f, +0x73,0xaa,0xc2,0x54,0x02,0x3b,0xc1,0x16,0x77,0xb2,0x43,0x8e, +0x7d,0x94,0x61,0x4b,0xe5,0x0c,0x2b,0xc9,0xbf,0xcd,0x54,0xfe, +0x8d,0x87,0x4e,0x21,0x8f,0xe4,0x14,0x66,0x14,0xa5,0x15,0x49, +0x74,0xe8,0x30,0x54,0x87,0x0e,0xb0,0x85,0x31,0xdd,0xb0,0x79, +0x07,0x8e,0x50,0xaf,0x35,0xe4,0x6f,0x34,0x9c,0x6d,0x69,0x69, +0x97,0xf6,0x5f,0x38,0x8a,0xe3,0x0f,0xe3,0xba,0x88,0xcd,0xdc, +0xea,0x30,0x1f,0x6f,0xe3,0x69,0x8e,0x4c,0x5d,0x81,0x77,0x93, +0xcd,0x80,0x5d,0xa3,0xd2,0x59,0x70,0xc4,0xe3,0x57,0xb4,0xf6, +0xe2,0x61,0x74,0x84,0xc3,0x73,0x98,0x99,0xd1,0x38,0x2a,0x16, +0x65,0xf2,0x53,0xdf,0x9c,0x12,0xe1,0x20,0x15,0x65,0x45,0x49, +0xa1,0x89,0xa1,0x09,0x61,0x9c,0x95,0xf4,0x1c,0xe8,0x15,0xe6, +0x5d,0x59,0xfb,0xdb,0x4c,0x95,0xf4,0xef,0xbf,0x84,0x15,0xa0, +0x3a,0x55,0xbc,0x0e,0x41,0x04,0x47,0xa2,0x3a,0x8c,0x64,0x21, +0x4e,0x11,0xd4,0xe8,0xef,0x6a,0x14,0x33,0x15,0x61,0x24,0x15, +0x83,0x23,0x59,0xf1,0x1d,0xde,0x23,0xf4,0xea,0x08,0x7a,0x55, +0xd8,0xa9,0x88,0xda,0x30,0x02,0xb4,0x19,0xd4,0xc6,0x55,0xf4, +0x2a,0x63,0xe5,0x9d,0x15,0x90,0xe9,0x9f,0xe1,0xaf,0xa4,0x15, +0xa5,0x1a,0xb3,0x27,0x96,0x1b,0x3f,0x18,0x7c,0x9b,0xe4,0x06, +0x16,0xf8,0xe7,0xfb,0x6e,0x8e,0x59,0x14,0x37,0x33,0x8e,0xfb, +0x19,0x5e,0xd2,0xcf,0x79,0xf9,0x42,0x8f,0x6d,0x48,0x38,0x9d, +0x50,0x93,0x10,0xdb,0xc1,0xab,0x86,0xef,0x88,0xd8,0x16,0x29, +0xed,0x5f,0xac,0xc0,0xbe,0xc2,0x31,0xc0,0x69,0x82,0x97,0x59, +0x7e,0x07,0xbf,0x2c,0x67,0x57,0xae,0x4e,0x61,0x6b,0x7e,0x4b, +0xe9,0xa9,0x0a,0xcb,0x2a,0xde,0xc1,0xc5,0xc2,0x43,0xcd,0xdd, +0xa2,0xc8,0xa9,0xcc,0xb9,0x86,0x03,0xb1,0x73,0xc8,0x97,0x39, +0x5e,0x73,0xf4,0xe4,0xa9,0xa9,0xdd,0x83,0x8e,0xdd,0x43,0xa5, +0x33,0x59,0x9c,0x13,0xb5,0x64,0x03,0x8e,0x55,0x6e,0xb5,0xea, +0xbe,0x5f,0x72,0x3f,0xfd,0x99,0x92,0x34,0xd5,0xc9,0x50,0xd9, +0x79,0xc8,0xf6,0x50,0x92,0x1e,0xff,0x75,0xd2,0xf7,0xa9,0x4f, +0xd3,0xb8,0x55,0x78,0x1f,0xf5,0xe1,0xfe,0x3c,0x16,0xa7,0xc5, +0xe1,0xec,0x43,0x52,0x49,0x44,0x97,0x87,0xfc,0x04,0xe8,0x4c, +0x04,0xdf,0xdc,0x3c,0xdf,0x1c,0xbf,0xcc,0xc0,0x96,0x32,0xde, +0xb2,0x7d,0xcf,0x15,0xe3,0x33,0xdc,0x43,0x41,0x20,0x22,0x18, +0x0a,0xc0,0x0c,0x2d,0x13,0x97,0x11,0xc8,0x58,0x84,0x19,0x8c, +0xf0,0x83,0x22,0x96,0xfd,0x28,0x2f,0x8d,0xec,0xcb,0x95,0xd3, +0x93,0xef,0x35,0x63,0x6a,0x39,0x1d,0xa8,0xe5,0x34,0x3d,0x18, +0x79,0x30,0xd2,0x55,0x5e,0x9c,0xfa,0x57,0xb2,0xb8,0xb0,0x5a, +0x34,0x59,0x54,0xc3,0xa5,0x64,0x51,0x28,0xfa,0xbd,0xec,0xe7, +0x5a,0x89,0x9a,0xa4,0x5c,0xd9,0x16,0x49,0x3c,0xa3,0x13,0x8a, +0x55,0x20,0xe5,0x39,0xe4,0xb2,0x19,0xfe,0x59,0xfe,0xd9,0xfe, +0x0d,0xed,0xfc,0xf6,0x87,0x66,0xf7,0x1d,0xff,0xa0,0xd2,0x5d, +0x9b,0xea,0xa2,0x1c,0xdd,0x12,0xdd,0x93,0xfa,0x1c,0xde,0x60, +0x4a,0xdb,0x0b,0x3a,0x33,0x3b,0x74,0x73,0x79,0xef,0x4d,0xf6, +0x9b,0xf5,0xf7,0x37,0x5b,0xf1,0x99,0xb9,0xe9,0x79,0xe9,0xf9, +0xd4,0xd0,0xdf,0x63,0x63,0x70,0xaa,0xde,0x62,0xfc,0x78,0xc3, +0x69,0xea,0x41,0x66,0xbc,0xec,0x83,0x8f,0x12,0x61,0x21,0xf7, +0x10,0xd3,0x19,0xf5,0x5c,0xdf,0xf3,0xca,0xb7,0x98,0xfa,0xac, +0x2c,0x6a,0x23,0xe6,0xb1,0x46,0xd9,0x32,0xdc,0xca,0x0e,0x45, +0x0d,0x8e,0xfd,0x77,0x66,0x9d,0x5c,0x4c,0x50,0x0f,0x63,0x41, +0x8f,0x52,0xf2,0xa7,0x42,0x21,0x8d,0x07,0xc6,0x25,0x32,0xa1, +0x5a,0x05,0x64,0x5a,0x54,0x09,0xe8,0x15,0x79,0x0f,0x28,0x0b, +0xab,0x3a,0x30,0xf8,0x15,0xb8,0xb4,0xa1,0xcb,0x03,0xe6,0xbb, +0x84,0x27,0x49,0x97,0x53,0xdd,0xa5,0x8d,0x1f,0x7d,0x51,0x37, +0x0c,0x2d,0x0e,0xa5,0x19,0xf3,0x0f,0x8f,0x3d,0x3e,0x7e,0xff, +0x04,0xf7,0xc3,0xd0,0x8a,0xff,0x35,0x02,0xee,0x0a,0x6b,0xd9, +0x94,0x2e,0x99,0x78,0x9a,0xd1,0x30,0x4e,0xce,0xb6,0x56,0x69, +0x6c,0xaf,0xec,0xce,0xee,0xe5,0x4e,0xa3,0x2a,0x7b,0xb3,0xf6, +0x42,0x53,0x7b,0x23,0x57,0x87,0x6d,0xc6,0xe0,0xc8,0x1a,0xd8, +0x6d,0xb3,0x5d,0x6b,0x47,0xa9,0x25,0x84,0x0d,0xb4,0x70,0xb7, +0x76,0xb4,0xb3,0x29,0x71,0xae,0x75,0x69,0xb4,0x72,0xe1,0xab, +0xcd,0xab,0xec,0xeb,0x0f,0xda,0x38,0x98,0xb8,0xe8,0xb9,0x55, +0x59,0xf2,0xe7,0x2a,0xbb,0x4e,0x37,0x35,0x70,0xde,0xed,0xe7, +0x42,0x1f,0x4d,0xeb,0xd8,0xf2,0x7e,0x9c,0x99,0xff,0xfb,0x38, +0x77,0x24,0x82,0xdf,0xbf,0xc6,0x59,0x7c,0x0a,0x0b,0xff,0x35, +0xba,0xf0,0x00,0x8e,0xc9,0xc5,0x6d,0xaa,0x89,0x4b,0x84,0x4b, +0xe4,0x81,0x48,0x09,0x02,0xff,0x51,0x53,0x1a,0x2e,0x74,0x1c, +0x64,0xb5,0x43,0xb4,0xa8,0x6f,0x97,0x44,0xc7,0xb8,0xa2,0x3f, +0xca,0x7e,0xa9,0x8d,0x97,0x2b,0x6d,0xca,0xa2,0xd4,0xb7,0xbf, +0xf6,0xbd,0xc6,0xc1,0x66,0xc1,0x82,0xc0,0xc4,0x78,0x98,0x9b, +0x03,0x5c,0xb5,0x5b,0x07,0x8f,0xa3,0x5d,0x71,0xb6,0x1f,0x2e, +0x3a,0x14,0xb2,0xdd,0x7e,0xa1,0xad,0x46,0x87,0x3d,0x5f,0x77, +0xb1,0xe6,0x79,0xc6,0x45,0x0e,0xea,0x7c,0x49,0x85,0x5e,0xf5, +0xd6,0x3c,0xcd,0x4e,0x2a,0x34,0xce,0x1e,0xb8,0xeb,0xd2,0xc9, +0xe1,0x7c,0xdc,0x49,0xa2,0xdb,0x83,0x2f,0x04,0x37,0x19,0x86, +0xf1,0x99,0x26,0xa9,0xda,0x89,0x06,0x9c,0xd8,0xfa,0xf2,0xbf, +0xaa,0x25,0x6b,0xa8,0xf3,0x12,0x4c,0xf0,0x06,0xb9,0x57,0x7f, +0xbb,0xf7,0x4c,0x1f,0xd7,0x24,0xee,0xd6,0x87,0x77,0xac,0x9d, +0x9d,0x8e,0xcd,0x16,0x07,0x6e,0x1f,0x86,0xeb,0x42,0x38,0x1e, +0xc4,0x15,0x6c,0xb6,0xb6,0x54,0x95,0xea,0xcc,0xcb,0xeb,0x50, +0x01,0x2b,0x88,0xec,0xc5,0x48,0x0a,0x3c,0xf7,0xa4,0xba,0x99, +0x5d,0x9a,0x49,0x8a,0xd1,0xc1,0x28,0xd7,0x68,0x17,0x79,0x41, +0x67,0x0a,0x25,0xd3,0x29,0xff,0x24,0x53,0x1f,0x89,0x4c,0x23, +0x86,0xc9,0x94,0xcb,0xfd,0xb5,0xe0,0xa7,0xbf,0x2a,0xc1,0xef, +0xc9,0xf4,0x26,0x07,0x77,0x84,0x6a,0x52,0xb4,0xe8,0xf9,0x17, +0x30,0x79,0x69,0x0d,0x35,0xbb,0x0a,0x4f,0x57,0x7f,0x73,0xe0, +0x19,0xb7,0x8b,0x71,0x59,0xbd,0x63,0x29,0x2a,0xae,0xae,0xa6, +0x03,0x30,0xf9,0xe5,0x83,0xaf,0x8a,0xdf,0x70,0x62,0x3b,0xae, +0xfd,0x17,0xef,0x0e,0x6e,0x44,0x6a,0xdc,0xbc,0x60,0x02,0xcc, +0xe8,0xc3,0x17,0x3a,0xb4,0x6f,0x27,0xa0,0x9b,0x0e,0xb8,0xe1, +0x6d,0x64,0x98,0x2c,0x0d,0xd9,0x8f,0x4c,0x93,0x74,0x16,0x12, +0x5c,0x05,0x2f,0x56,0x9c,0x61,0x4e,0xbc,0x76,0x9a,0x2d,0xd2, +0xdb,0xd7,0x64,0xc5,0xf7,0xdf,0xed,0x78,0x5d,0x74,0x97,0x03, +0xf5,0x38,0x72,0x7a,0x5f,0x17,0x8e,0x2a,0xdf,0xd0,0x59,0xcd, +0x1f,0xbc,0x63,0x00,0x1f,0xd8,0x5e,0xe4,0xc6,0xc3,0x1d,0xf9, +0xed,0xa5,0x9a,0xa4,0x1a,0xb9,0x46,0xb9,0xbc,0x2f,0x74,0xff, +0x4b,0x2b,0xf8,0xfc,0xa5,0x15,0xe8,0x30,0xb2,0xb9,0xbf,0x15, +0xfc,0x5c,0x79,0x62,0xb8,0x32,0xf8,0xf7,0xed,0x09,0xf3,0xe1, +0x1a,0x09,0x4e,0x0b,0xa2,0x3f,0xb7,0x9a,0xae,0x9e,0x6b,0xea, +0xe6,0x1a,0x45,0x03,0x3d,0x81,0x61,0x1d,0xec,0x8c,0x6c,0xd5, +0xec,0x2d,0xcb,0x2d,0x4a,0xad,0x0a,0x9c,0x6d,0xf8,0xb3,0xae, +0x67,0xed,0x7a,0xec,0x38,0x0c,0x1d,0xfa,0xa4,0x1f,0x8e,0xc2, +0x2c,0x0c,0xef,0x87,0x70,0xea,0x68,0x55,0x67,0x33,0xd9,0x7a, +0xb2,0x27,0x4c,0x8b,0x94,0x81,0xc2,0x2d,0x76,0xe8,0x74,0xdf, +0xfb,0x2e,0x70,0xf8,0xbb,0x0b,0x84,0xe9,0xe8,0x27,0xa1,0xc6, +0x58,0x98,0xc5,0xf4,0xe3,0x58,0xea,0x6d,0xe9,0x3f,0x1c,0xcb, +0x22,0xe8,0x4b,0x45,0x11,0x05,0x9c,0xc5,0x50,0x60,0x51,0x20, +0xf4,0xa2,0x02,0x2e,0xa3,0x11,0x5a,0x07,0xb1,0x24,0xd5,0x26, +0xd5,0x20,0xd9,0xd0,0x3d,0xca,0x2d,0x4a,0xe2,0x38,0x17,0x18, +0x2d,0xd0,0x00,0x83,0xa5,0x7a,0xb8,0x14,0x3f,0x10,0x29,0xab, +0xa1,0x3f,0x6b,0x1c,0x6e,0x14,0x69,0x18,0x4d,0x39,0xee,0x6d, +0xce,0x0f,0x05,0xcf,0xcb,0x92,0xd5,0xf9,0xb6,0xf4,0xd0,0x27, +0x7e,0xbf,0xf9,0xdf,0x54,0x82,0x18,0x58,0x45,0x0e,0xfd,0x08, +0x4c,0x1f,0x32,0xb0,0x91,0xba,0xed,0x93,0xd9,0xd5,0xb9,0xae, +0xad,0xfc,0x4e,0xdb,0xf9,0xf6,0x2b,0x02,0x72,0x0c,0xf9,0xda, +0xa4,0x93,0xc9,0xa7,0xd2,0xa4,0x13,0xd9,0x89,0x0e,0xe5,0xda, +0xe8,0xe5,0x36,0xa8,0xb4,0x02,0x99,0xb2,0x7d,0xfc,0xfd,0x57, +0x95,0x20,0x4b,0x78,0x49,0xc5,0xa8,0x4f,0xaf,0x60,0xc4,0x24, +0x1e,0x3b,0x7a,0x3c,0x46,0xf9,0x31,0x6e,0xad,0x6b,0x5a,0x0f, +0x6b,0xa3,0x33,0x23,0x93,0xa4,0x43,0x4d,0x4f,0x8b,0x1b,0x08, +0x4e,0x61,0xb2,0xd5,0xa4,0x39,0x9a,0xe6,0xac,0xec,0x16,0x95, +0xc1,0x6b,0x3a,0x2c,0x2e,0xb5,0x24,0x43,0x4b,0x7a,0x07,0x97, +0xb0,0x43,0xca,0xb8,0x86,0x9c,0xc3,0x5a,0x0d,0x06,0xb6,0xca, +0x55,0x88,0xaa,0x5c,0x85,0x74,0x08,0x0a,0xa4,0xa0,0x22,0xb7, +0x32,0xab,0x96,0x83,0x26,0x78,0x2c,0x6e,0xc3,0xc7,0x8f,0x98, +0x03,0x7b,0x0c,0x34,0xf7,0x9b,0x72,0xc2,0x38,0xfc,0xe4,0xbf, +0xab,0xba,0x3a,0xe1,0x9a,0xef,0xab,0xba,0x63,0x73,0xa8,0xcc, +0xfb,0xef,0xa2,0xae,0xdf,0x0d,0x63,0x49,0x08,0x48,0x65,0xe1, +0xbf,0xc6,0xdf,0x11,0x26,0xb3,0x65,0xe6,0xd5,0xc5,0x15,0x25, +0xa5,0xe5,0x4a,0x6f,0x18,0xcb,0xd5,0x5a,0xbb,0x97,0xed,0xab, +0x31,0xe3,0x7f,0xb9,0x79,0xfd,0x59,0x3b,0x8c,0xe0,0xbe,0x65, +0x6c,0x70,0xda,0x36,0x1c,0x83,0x1f,0x2f,0xae,0xb5,0xe0,0x61, +0xca,0xeb,0xaf,0x60,0x72,0x13,0x7c,0xce,0xf5,0x30,0x87,0x91, +0x8d,0x5e,0x12,0xa9,0x26,0x4d,0x69,0x84,0x98,0x4c,0xdb,0x20, +0x8d,0xe8,0x6d,0xe6,0x6e,0x65,0xd9,0x83,0x34,0x95,0xd4,0xbb, +0x09,0x2f,0x8f,0xc1,0x06,0x6e,0x0d,0x95,0xfa,0x2b,0xf0,0xda, +0xb7,0xac,0x38,0x0b,0xa7,0xbc,0x2f,0xf9,0x4e,0x53,0x84,0xf2, +0xaf,0x91,0xe6,0x68,0x14,0x14,0x92,0x45,0x78,0xed,0x47,0x7a, +0x8b,0x0b,0xe3,0x49,0xe8,0x63,0xef,0x5f,0xfd,0x6f,0x98,0xc8, +0x45,0xa6,0x51,0x8a,0xa1,0x7b,0x34,0x1d,0xc5,0x18,0x29,0x3c, +0xff,0x3f,0xfc,0xfc,0xcf,0x85,0xdf,0xbd,0xf7,0xf3,0x9c,0x50, +0x33,0xb8,0x93,0xac,0x38,0x0b,0xb3,0x31,0xfa,0x8d,0xc6,0x5c, +0xf4,0xc1,0x39,0x03,0xdf,0xb1,0xf8,0xa7,0x31,0xd5,0x17,0x55, +0x72,0x7d,0x21,0x15,0x76,0xb7,0x40,0x15,0x0b,0x5f,0xfa,0x93, +0x70,0x54,0xb0,0x47,0x99,0xc6,0xaa,0xd3,0xe6,0x7c,0xcb,0xf5, +0xea,0x3b,0xf9,0x5f,0x71,0xaf,0x98,0xd8,0x2d,0xe1,0x3b,0xfd, +0xf6,0x7b,0x96,0x79,0x14,0x7b,0x14,0xba,0xe9,0xf1,0x65,0x9e, +0xa5,0xee,0xa5,0x07,0x1c,0x3e,0xd7,0xdf,0xba,0x65,0x5f,0x8d, +0x01,0x0f,0xab,0x60,0xce,0x4d,0xd8,0x9d,0x0a,0x21,0x5c,0x23, +0x4e,0x63,0xe3,0x4b,0xe3,0xcb,0x8f,0x97,0x73,0xf0,0x9b,0x48, +0x61,0x70,0x04,0xe3,0x11,0x45,0xad,0xb4,0x60,0x07,0xd4,0xe0, +0x2d,0x94,0x36,0x61,0x7f,0xc8,0x34,0x66,0x64,0x35,0xa8,0x40, +0x13,0x7a,0x8b,0x65,0xac,0x66,0x5e,0xe0,0x80,0x32,0x8c,0x61, +0x1a,0xd2,0xd3,0xe9,0x35,0x05,0x49,0xd4,0x8d,0xff,0x73,0x9b, +0xb0,0x8b,0xf4,0x50,0x25,0xeb,0x77,0x26,0xb0,0x29,0xbc,0x85, +0x7b,0xd9,0x8d,0x5b,0x99,0xd4,0xd6,0x94,0xae,0xa4,0x7e,0xfd, +0x44,0x3e,0x4a,0x2b,0x5c,0x37,0xd4,0x88,0x43,0x99,0xfe,0x4f, +0x4c,0xb0,0x49,0x80,0xa5,0xaf,0x35,0x87,0x9c,0xde,0xd7,0x8c, +0x9d,0xa6,0x99,0x81,0xb6,0x79,0x8d,0x29,0x5f,0x53,0x5e,0x51, +0x51,0x56,0xc5,0x61,0x2d,0xbb,0xb9,0xd8,0xeb,0x91,0x32,0xf8, +0x32,0xcd,0xb9,0x59,0xcd,0x2a,0xcf,0x58,0xad,0x2c,0x19,0xd5, +0x24,0x9e,0xac,0x45,0x64,0x4a,0xbb,0x0a,0xb8,0x81,0x0f,0x7b, +0xc4,0xe5,0xb0,0x5d,0xac,0x3b,0xe7,0x7f,0x28,0x2c,0xca,0x77, +0xda,0x62,0x26,0xcd,0x50,0xf6,0x92,0xe9,0x2c,0xca,0x6f,0x49, +0x52,0x49,0x6e,0x3f,0xda,0xdf,0x39,0xb5,0xc8,0xb5,0xd4,0xb5, +0xdc,0xad,0xa6,0x85,0x37,0x69,0xb2,0xe8,0x72,0xec,0xe7,0xc4, +0x0c,0x54,0x93,0x97,0xb5,0x53,0x4d,0x0f,0x84,0x3b,0x45,0x38, +0x46,0x48,0x55,0xda,0x7f,0xa0,0xe0,0x64,0x3a,0x0e,0x93,0xd1, +0x8d,0xd5,0x0d,0xd5,0x09,0xd3,0x92,0x0b,0x5e,0xa9,0x0e,0x48, +0xe1,0xfe,0x84,0x4f,0xbc,0x04,0x83,0x52,0x99,0xd6,0xeb,0xb5, +0x54,0xca,0xb8,0x49,0x03,0xe0,0xe0,0x25,0xe3,0xc7,0xb6,0xad, +0x96,0xee,0x7c,0xbd,0x51,0xf3,0xe6,0x8a,0x9d,0x9c,0x38,0x0e, +0x3c,0x89,0xcf,0x4e,0x9b,0x6d,0x06,0x86,0xa7,0xad,0xf9,0xbe, +0xb3,0x4d,0xf7,0x8a,0xbe,0xe2,0x44,0x6d,0xd4,0x26,0xf7,0xb0, +0x72,0x33,0x03,0xb6,0x72,0x08,0xd8,0x20,0x41,0x80,0x59,0x2c, +0x49,0x36,0xcf,0xb0,0xc8,0xa5,0xb6,0x79,0x1a,0x93,0x5b,0x9f, +0xd5,0x94,0xd1,0xc6,0x51,0xc5,0xd5,0x46,0xf0,0x15,0x53,0x51, +0x53,0x7c,0xb2,0xb0,0x4e,0x3a,0x56,0x25,0xdf,0xae,0xc8,0xa1, +0xd4,0x91,0x2a,0x2c,0x17,0xe1,0x39,0x01,0x8b,0x0e,0xb4,0x78, +0x08,0xde,0x9d,0xe8,0x2d,0xed,0x5a,0x6a,0x6f,0x08,0xf6,0x1b, +0xd0,0xc0,0x08,0x0c,0xbe,0x40,0x2f,0x43,0x21,0xad,0x13,0x43, +0x18,0x71,0x36,0xe6,0x13,0xb9,0x1c,0x36,0x71,0x8d,0x74,0x8e, +0x72,0x96,0xa3,0xe0,0x34,0x3a,0x8a,0xd3,0x86,0x53,0x49,0x49, +0x94,0xf6,0x96,0x1a,0x4e,0x25,0xcd,0xf7,0xa9,0x04,0x23,0xfe, +0x9d,0x4b,0xc3,0x96,0xe9,0x11,0x56,0xac,0x67,0xc0,0x15,0x2a, +0x08,0x56,0x7c,0x01,0x15,0x2c,0xd4,0x0d,0xe9,0x11,0x88,0x82, +0x01,0xdc,0x82,0xe3,0xd9,0x0c,0x1d,0xd9,0x5b,0xa6,0x55,0xda, +0xb7,0x5e,0x50,0x11,0x3f,0x17,0x9d,0x58,0x2a,0x7b,0x1b,0x08, +0x8e,0x03,0xca,0x90,0x14,0xd6,0x78,0x42,0x7f,0x99,0x84,0x3c, +0x65,0x9e,0x1a,0x8a,0x5f,0x29,0xb6,0xa9,0xfa,0x29,0xfa,0x1b, +0x7d,0x79,0x8a,0x5d,0xa3,0x28,0x76,0x8d,0x82,0xa5,0xfa,0x14, +0xbb,0x46,0x52,0xec,0x1a,0x49,0xb1,0xcb,0xe4,0x2f,0xec,0x7a, +0x9d,0xf3,0xb2,0xe0,0xeb,0x52,0x29,0xe8,0x8f,0xf9,0xb7,0xa5, +0xf3,0x61,0x4f,0x7c,0x7f,0x0b,0xa0,0xa4,0x93,0x05,0x0e,0x24, +0x3a,0x3b,0xea,0xcb,0xb0,0xc8,0xd0,0x48,0x3e,0x0e,0x26,0xfe, +0xd6,0x37,0x0b,0x34,0xf4,0x50,0x03,0xc7,0xe9,0x00,0xc3,0x44, +0xe2,0x04,0x8a,0x57,0xeb,0x51,0xa1,0x7c,0x3f,0x7f,0x1d,0x46, +0x95,0xbd,0x39,0x2e,0x9d,0x18,0x55,0xd0,0x23,0x1c,0x67,0x12, +0x4e,0x1c,0x3d,0x16,0xab,0x7c,0x15,0x17,0xd5,0x9d,0x94,0x7d, +0x0d,0x56,0x04,0x54,0xd9,0x87,0xe9,0xf7,0x0a,0x7a,0xca,0x5c, +0xbb,0x78,0x35,0x97,0x2f,0x3c,0x57,0x86,0x72,0x58,0xcc,0x62, +0xb8,0x3f,0x2e,0xd0,0x40,0x45,0xe5,0x16,0xab,0x4b,0xf0,0x69, +0x21,0x6c,0x3c,0x0a,0x11,0x4a,0xdf,0x8b,0x75,0x3d,0x42,0xdd, +0xed,0x3e,0x66,0xe8,0xe1,0xaf,0x14,0xbc,0x4e,0x52,0xf0,0xda, +0x02,0x27,0xa9,0x5d,0x50,0xa3,0x6e,0x61,0xbc,0x30,0x35,0x8f, +0x84,0x3c,0x90,0x1c,0x88,0x59,0x30,0x3f,0x3c,0xc3,0xea,0x1d, +0xe9,0x15,0xe5,0x45,0xbb,0xdc,0x0c,0x3e,0xa2,0x11,0xf5,0x11, +0x2c,0xd3,0xa5,0x5d,0x3e,0x96,0x46,0xd4,0x58,0xaa,0x1f,0x0c, +0x43,0xf4,0x43,0xf5,0xc2,0xa9,0x7d,0xfc,0xbd,0xe8,0xbb,0xb2, +0x67,0x35,0xc3,0x75,0x59,0xee,0x2b,0xa1,0x80,0xe0,0x99,0x18, +0x5c,0x6c,0x8d,0x2a,0xca,0x3d,0x07,0x64,0x4d,0xb0,0x38,0x01, +0x36,0x40,0xcb,0x54,0x08,0x10,0xa6,0x0c,0xa5,0xd0,0xee,0xcb, +0xd4,0x92,0x01,0xcb,0xb4,0xa6,0x17,0xb4,0xa9,0x0c,0x76,0x8a, +0x47,0xd8,0x6f,0x45,0x25,0x02,0x53,0x3e,0xeb,0x7e,0x01,0xd3, +0x3a,0x70,0xda,0x3b,0x98,0xd4,0x81,0x93,0x5e,0xea,0x53,0xaa, +0x30,0x02,0x85,0x19,0x14,0x83,0xe9,0xd7,0x2d,0x25,0xd7,0xb0, +0x7a,0x37,0x03,0x5a,0x50,0x4d,0xb0,0x7a,0x27,0x54,0xb3,0xd0, +0x8d,0x0f,0x08,0x76,0x77,0x5f,0xa1,0xc4,0x12,0xca,0xa2,0x29, +0x4d,0x02,0xf8,0x04,0xe6,0xe2,0x27,0xf4,0x3e,0x18,0xa1,0x8c, +0xcc,0x0e,0x9e,0x11,0x86,0x1f,0x44,0x27,0xea,0xf3,0x6f,0x52, +0xde,0xa5,0x7f,0x93,0xe5,0x61,0xa6,0xe5,0x8a,0x63,0x3c,0x4b, +0xa9,0x7f,0xb3,0xeb,0x38,0x73,0x0b,0x26,0x4f,0x85,0x24,0xad, +0xed,0x78,0xd1,0x08,0x2e,0x6e,0xc2,0x76,0x23,0x68,0x0f,0x65, +0x83,0x8e,0x04,0x1f,0x0e,0x51,0x16,0xae,0x6f,0x20,0x1d,0x78, +0xeb,0x2b,0x68,0xef,0xc0,0xf6,0x47,0x70,0xb5,0x13,0xaf,0xde, +0xd2,0x14,0xad,0xce,0xde,0x65,0xe1,0x6b,0x31,0x99,0x58,0x76, +0xec,0xbd,0x69,0xd4,0x64,0xe4,0xc3,0xe7,0x05,0x14,0xf8,0x14, +0xf8,0x6c,0x8a,0x59,0x18,0x3b,0x23,0x8e,0x7b,0x47,0xc5,0xa1, +0x35,0xbe,0xfc,0x4e,0x6d,0x39,0x95,0x6f,0xd6,0x70,0x1f,0x47, +0x0c,0x4f,0x5d,0xca,0xf5,0x1b,0xb5,0x57,0xf9,0xf1,0xd0,0x99, +0x04,0xbe,0x05,0x79,0x52,0x59,0x2c,0x80,0x1b,0xd2,0x04,0x81, +0x40,0xfa,0x0c,0x2a,0x6f,0x85,0x57,0x54,0xb6,0xbd,0x93,0xcb, +0xb6,0xb3,0x52,0x81,0xd4,0x56,0xea,0x76,0x8f,0x68,0x8f,0x68, +0xf7,0x18,0xa9,0x16,0xfb,0xaf,0x44,0xf6,0x66,0xf5,0xc2,0x28, +0xdf,0x47,0x4a,0x91,0x2e,0xcb,0xfd,0xb9,0xe0,0xe5,0x7f,0x0a, +0xa4,0xa1,0x8f,0xbd,0x28,0x2a,0x73,0x67,0x85,0x28,0x22,0x9c, +0xe9,0x11,0xcf,0x30,0x17,0xa5,0xdd,0xeb,0x96,0x82,0xbb,0xb8, +0x94,0x46,0xef,0x46,0x02,0x63,0xa0,0x1d,0xc7,0xb0,0xf4,0xcb, +0xb9,0xf7,0xd9,0x6b,0xf7,0x77,0xf6,0x42,0xec,0x90,0x06,0xe9, +0x87,0x21,0xed,0x01,0xc1,0x44,0x74,0x13,0x4d,0x58,0x9a,0xd9, +0x75,0x04,0x17,0x53,0x22,0x5f,0xcc,0xf4,0xfc,0x83,0xd1,0xed, +0x8c,0xa4,0x23,0xd7,0x16,0x53,0xaf,0x0b,0xd6,0x8a,0xf4,0xd2, +0x24,0x39,0x9f,0x3f,0x1c,0x9e,0xc1,0xfc,0xab,0xac,0x21,0x4f, +0x52,0x25,0xda,0x74,0xa5,0xff,0x27,0xa9,0xf2,0xbf,0x97,0x35, +0xee,0x82,0x1f,0x11,0xbc,0xe0,0x9e,0xe8,0x45,0xdb,0x86,0x9f, +0x12,0x5c,0xfa,0x12,0x96,0x32,0xdd,0xcb,0xc8,0x4b,0x58,0xb3, +0x8c,0x1d,0x0a,0xb1,0x26,0x0f,0xb0,0x62,0xa3,0x24,0x3c,0xa4, +0x04,0x5e,0x4f,0x13,0x58,0x98,0x15,0x47,0x79,0x69,0xe9,0x8f, +0x2c,0xd8,0x28,0xc2,0x9a,0x45,0xb8,0x86,0xc1,0xbd,0xe2,0x4f, +0xd2,0x69,0x37,0xb7,0x71,0xb4,0x14,0x6b,0xf2,0x73,0x92,0x5a, +0x73,0x72,0x5a,0x54,0x84,0x25,0xe2,0x0e,0x31,0x40,0x5a,0xd4, +0x46,0xd1,0xe3,0xf6,0x43,0xb8,0xcd,0x50,0x81,0x36,0x99,0xc0, +0xed,0xb5,0x78,0x9b,0xde,0xc2,0x00,0x24,0x4b,0x38,0x23,0xb1, +0x6d,0x84,0x24,0x9b,0x25,0x18,0xfd,0x98,0xde,0xc2,0xc7,0xc3, +0x41,0x3f,0x8e,0xde,0xc2,0x38,0x74,0x67,0x0d,0x42,0xf5,0xc2, +0x74,0xa5,0x9a,0x09,0x8c,0x2e,0x7c,0x5d,0xf6,0xaa,0x56,0xde, +0xfb,0xfe,0x6d,0x52,0xe9,0xc9,0xfb,0xb5,0x1f,0x45,0xd1,0x54, +0x2a,0x26,0xc5,0x4f,0xf0,0x9e,0xb6,0x38,0xd0,0x2f,0xc4,0x0b, +0xd3,0xc4,0x3d,0xb8,0x52,0x3a,0xef,0x1e,0x66,0x52,0x19,0x51, +0xd0,0xa4,0x22,0x78,0x69,0xb3,0x5a,0x72,0x36,0xdd,0x83,0xdb, +0x16,0x42,0xa1,0xf4,0x30,0xb3,0x02,0xb9,0x41,0xa3,0x9a,0x01, +0x7d,0x79,0x78,0x6f,0xa7,0xe1,0x2d,0xec,0xc6,0x79,0x04,0x14, +0x28,0xdc,0x28,0xb0,0x98,0x89,0xb3,0x08,0x76,0x75,0x5e,0xa4, +0xef,0x87,0xb3,0x68,0x20,0x9d,0xe9,0xf1,0x29,0xcc,0x41,0xe9, +0x34,0xd2,0x32,0xf8,0x92,0xc6,0x4c,0xaa,0x7e,0xb2,0x81,0x4f, +0x8c,0x4f,0xb4,0xb7,0x9c,0x84,0x47,0x09,0x93,0x29,0x18,0x2d, +0xd1,0xc3,0x25,0x54,0x48,0x4d,0xa6,0x42,0xca,0x57,0x0e,0x46, +0x06,0x51,0x69,0x5a,0xfc,0xcf,0xd9,0x2f,0x0a,0x9e,0x94,0x26, +0x6b,0x0c,0x0b,0xa9,0x5f,0x03,0x6e,0x2a,0x0d,0xf2,0x3e,0x64, +0x4f,0x98,0x4c,0xf8,0x5d,0x47,0xfc,0x3f,0x2c,0x6a,0x3b,0x26, +0x6a,0xc2,0xfe,0x5a,0x19,0x06,0xf6,0x41,0x0c,0x7b,0x33,0x43, +0x26,0x8e,0x02,0x47,0x12,0x9b,0x1a,0x99,0x10,0x1a,0x1e,0x14, +0x4a,0x71,0x8a,0x7d,0x37,0x30,0x03,0x36,0x30,0xa7,0x33,0x6b, +0xb3,0x2b,0xf3,0x5c,0x5a,0x79,0x0d,0xdb,0x05,0x76,0xcb,0x03, +0x72,0x0d,0xf9,0x9a,0xc4,0x93,0x29,0xb5,0xa9,0x1c,0x2e,0xc0, +0x49,0x5a,0xf0,0x11,0x1b,0x35,0xff,0xe0,0x8c,0x95,0x38,0xa1, +0xc6,0x84,0xbf,0xf2,0xb2,0xe0,0xde,0x09,0x69,0x21,0xbd,0x7a, +0x97,0xb0,0x4f,0x42,0x2f,0xaa,0xb6,0xae,0xe0,0x9a,0xc6,0x4a, +0x19,0x2c,0x12,0x46,0x13,0xe7,0x5e,0x9b,0x3e,0xfb,0x46,0xcb, +0x03,0x7c,0x9d,0x59,0x9d,0x4e,0x85,0x2e,0x37,0x34,0xfd,0x12, +0x39,0x8f,0xd5,0xea,0x0c,0x6c,0x93,0xf7,0x86,0xaa,0xd4,0x1b, +0x0f,0xf0,0x14,0x71,0x39,0xeb,0xd8,0x6b,0xd3,0x6d,0xe5,0xc8, +0xd7,0x19,0xd4,0x6a,0x57,0x6a,0xfc,0x25,0x90,0x29,0x35,0x48, +0x02,0xe9,0x60,0xf4,0xb0,0x40,0x7a,0xef,0x73,0xb4,0xff,0x57, +0x95,0x35,0x26,0xe7,0x5d,0xe1,0x4f,0x15,0xf1,0x3e,0xff,0xcd, +0x0c,0x74,0xa0,0xe7,0x93,0x0c,0xf9,0xd9,0xee,0x1c,0x34,0xc0, +0x43,0x51,0x0d,0x1f,0xbe,0x64,0xec,0x3f,0xd7,0xdc,0xb6,0xdf, +0xb4,0xca,0x98,0x97,0x36,0xa7,0x91,0xb6,0xa7,0xe9,0xea,0x3d, +0x27,0xdf,0x9f,0x1a,0xac,0x1d,0xd9,0x82,0xc2,0xfc,0xe2,0x3c, +0xf9,0x53,0x5c,0x38,0x2a,0x6e,0x7a,0xe4,0x0e,0x65,0xad,0xa8, +0xf0,0x70,0xc3,0x69,0x6b,0x18,0x4a,0x21,0x0f,0x99,0xc7,0x25, +0xe5,0xdf,0xa5,0xaa,0xa4,0x3c,0x38,0x0e,0xa3,0x8e,0xc2,0x4a, +0xee,0x73,0xf8,0x9d,0xac,0xc6,0x87,0xcf,0x58,0x51,0x09,0xc9, +0x7b,0x61,0x75,0x50,0x6e,0x7f,0xbe,0x90,0xec,0xcf,0xfd,0x68, +0x2a,0xbb,0x1e,0x7e,0xcb,0xc2,0xa7,0xd8,0x4d,0xc2,0xd8,0xf5, +0x5e,0x2e,0x2b,0x8d,0x94,0x8b,0x2d,0x3b,0x4b,0x6b,0x4a,0xf2, +0x4a,0xa4,0xe3,0x12,0xbe,0x4c,0x8c,0xf9,0xe3,0x0b,0xbe,0xbc, +0x61,0xf1,0xed,0x88,0xc4,0x28,0xe9,0x71,0xa4,0x88,0x70,0xe9, +0xe1,0x8d,0xa2,0xc4,0x8a,0xf6,0xa9,0xe9,0x14,0xee,0x4e,0x09, +0x8b,0x08,0x45,0xc1,0x51,0xbd,0x74,0xd4,0xb7,0xea,0xe1,0x56, +0x1c,0xa5,0x0b,0xa3,0xd0,0x74,0x99,0xa8,0xdd,0x7d,0x0d,0xd4, +0x85,0xf1,0xac,0x38,0x0a,0x97,0x4b,0x72,0xdb,0x30,0xc5,0xc0, +0x27,0xca,0x3b,0xda,0x3b,0x5a,0xda,0xd7,0xe0,0x03,0x4a,0x59, +0x1f,0x0c,0xcb,0xed,0x11,0x94,0xb2,0x24,0x11,0x62,0x12,0x6a, +0x1c,0x6e,0x18,0x91,0xae,0xc5,0xff,0x52,0xf0,0xbc,0xe4,0x51, +0xe5,0x30,0xa0,0xb7,0x66,0xf2,0xa1,0x8f,0x7c,0x7e,0x0d,0xb8, +0xc1,0x09,0x13,0x21,0x83,0x60,0x47,0x30,0x7e,0xaa,0x85,0xe3, +0x95,0x9b,0xcc,0x9a,0x5e,0x16,0xbe,0x4e,0x85,0xf9,0x4a,0x30, +0x13,0xf3,0x70,0x34,0x93,0xa5,0x29,0xfb,0x9e,0x69,0xc9,0xc8, +0xe9,0x54,0x19,0x3c,0x85,0x47,0x59,0xd0,0xc1,0x38,0x89,0xa5, +0x35,0x61,0x1a,0x33,0x94,0x80,0xe3,0xc8,0x59,0x3c,0xa9,0xc9, +0xc0,0x26,0x39,0xdf,0xa8,0x53,0xbe,0x11,0x32,0xf0,0x02,0x39, +0xde,0x77,0xf4,0xc2,0x8d,0xa9,0xd4,0x32,0x69,0x32,0xe2,0x5e, +0x0c,0x25,0x50,0x00,0x3c,0x16,0x50,0xff,0x6e,0x38,0x98,0x40, +0x92,0x0b,0x93,0x8b,0x13,0x8a,0x35,0x92,0xf9,0x58,0xaf,0x08, +0xd7,0x70,0x37,0xe9,0x29,0xd4,0x37,0xc2,0x56,0x78,0xc3,0xa0, +0xe6,0xd0,0x54,0x02,0x3a,0xdd,0xa8,0x03,0x1f,0x80,0x53,0x8f, +0xe8,0xa4,0x07,0x06,0xd2,0x6e,0x0b,0xfa,0xa0,0x2e,0xed,0x3b, +0xc9,0x04,0xd3,0x5c,0xf4,0xbd,0x6e,0x14,0xcc,0x4b,0xeb,0x0d, +0x52,0x4c,0x0e,0x44,0x3a,0xca,0xa7,0xb6,0xfe,0xd7,0x62,0xb2, +0x56,0xb8,0xfa,0xfb,0x62,0xf2,0x04,0xa9,0x98,0xfc,0xd7,0x74, +0x3f,0xc5,0x53,0x43,0xe1,0x44,0x2f,0x06,0xb3,0xb8,0x4f,0xf8, +0x93,0x7c,0x0f,0x97,0x96,0xb2,0x43,0x0e,0xf1,0xff,0xaa,0x2a, +0x43,0x31,0x2e,0x25,0x3f,0xc1,0x25,0x69,0xab,0xd2,0xd0,0x41, +0x1d,0x82,0x13,0x6a,0x17,0x35,0x6b,0x29,0x97,0x39,0x74,0x1e, +0x4f,0xef,0x6c,0x84,0x2d,0xbc,0x59,0xb9,0x15,0xee,0x95,0x39, +0x36,0x1d,0xb8,0x0e,0xd3,0xa7,0x7e,0x33,0xe4,0xaa,0x3b,0xb8, +0x92,0x1d,0x5a,0x83,0x40,0xc0,0xab,0xf2,0xf7,0xb6,0xd3,0x2f, +0x39,0x69,0xb3,0xe9,0xa3,0xcc,0xb1,0xac,0xa3,0xd9,0x39,0x53, +0x3b,0xd5,0xb4,0x28,0x0d,0x85,0x50,0x1a,0x42,0x6a,0x03,0xfb, +0x18,0x7b,0xb5,0x95,0xae,0xa8,0xe9,0xce,0xc1,0x65,0x14,0x48, +0x5a,0x40,0xba,0x6f,0xba,0x8f,0x43,0x8c,0x4d,0xac,0x75,0x2c, +0x07,0x23,0x61,0x1d,0x38,0xe2,0x3a,0xe9,0x39,0x87,0xb5,0xe8, +0x08,0x6b,0x91,0x65,0xf7,0xc7,0xec,0x8d,0x51,0x8d,0x4b,0xa2, +0x76,0x75,0x4a,0x1a,0xcc,0xca,0x82,0x11,0x79,0xc9,0x81,0x89, +0x81,0x89,0x41,0xcd,0xd4,0x94,0xb7,0x39,0x9c,0x73,0x69,0xe2, +0x84,0x55,0xfe,0x24,0x3d,0x20,0xdd,0x27,0xdd,0xdb,0x3e,0xc6, +0x3a,0xd6,0x92,0x7e,0x0c,0x0d,0x19,0xfa,0x31,0x5b,0xa5,0x8f, +0xd9,0x40,0x3f,0x66,0x03,0x25,0x08,0xd5,0x98,0xbd,0xb1,0xfb, +0xe3,0x92,0xf5,0x78,0xe0,0x93,0xa5,0x8f,0xf9,0x20,0x37,0xd9, +0x3f,0x29,0x20,0x21,0xb0,0x95,0x7e,0x4c,0x87,0xc3,0x55,0xe7, +0x46,0x6e,0x68,0x02,0x6c,0x23,0x38,0x8a,0xc6,0xdb,0x28,0x16, +0xd6,0xe3,0x28,0x42,0x3f,0x46,0x86,0xf4,0xf7,0x3a,0x18,0x25, +0x5d,0x67,0xa5,0xeb,0x9b,0x87,0xaf,0x8f,0xa5,0xd7,0xc7,0xff, +0x69,0xe2,0x43,0xd6,0xe7,0x6e,0x2b,0x51,0xad,0xb8,0xd1,0xd8, +0xdf,0x75,0xf2,0x2c,0xd7,0x80,0xe7,0x59,0x69,0xe1,0x75,0x46, +0x09,0x07,0x47,0xe0,0x8a,0xb8,0x90,0xc9,0x2c,0xcc,0x2c,0x4a, +0x2b,0xe6,0x84,0x45,0x7d,0xe2,0x44,0x26,0xa9,0x20,0x31,0x3f, +0x3e,0x4f,0x2b,0x9d,0x0f,0xda,0x63,0x32,0x67,0xaf,0x6a,0x9d, +0x05,0x9f,0x99,0x91,0x91,0x95,0x91,0xcd,0x61,0x03,0xb0,0xac, +0xad,0xda,0x9e,0xbd,0x1b,0xcd,0xcb,0xcd,0xf8,0xe2,0xcc,0xe2, +0x9c,0xa2,0xdc,0x2a,0xdb,0x7a,0xc7,0x36,0xe7,0x6d,0x07,0x56, +0x7b,0x2c,0x0e,0xc8,0x33,0xe0,0x7f,0xcf,0xff,0xa5,0xfa,0xd9, +0x99,0xdb,0xb6,0xcf,0x9d,0x7f,0xf4,0xe4,0xc4,0xfc,0x07,0xe4, +0x3f,0x66,0xca,0x4e,0x82,0xf7,0x83,0x51,0xae,0x51,0xae,0x31, +0xff,0x3f,0xb0,0xe2,0xf7,0xbf,0xb1,0x82,0xc3,0x2f,0x07,0x27, +0xfc,0x3b,0x73,0xbf,0xb2,0x27,0x1b,0x71,0xe0,0x01,0x4b,0xe5, +0xe3,0x24,0xb2,0x06,0x07,0x9e,0x4a,0x87,0x13,0x66,0x11,0x47, +0x4b,0x13,0x3b,0xad,0x03,0x5a,0x35,0x66,0x75,0xce,0x0d,0xdc, +0xf8,0x3f,0x57,0x0a,0x26,0x04,0xec,0x45,0x5f,0xdc,0xc8,0xe2, +0xe7,0xb1,0xf8,0x99,0x21,0xce,0x51,0x0e,0xbd,0xeb,0xff,0x22, +0xf0,0x82,0x69,0x28,0x9f,0x2a,0x9f,0xfa,0xf6,0x8a,0xf6,0x8c, +0xf6,0x94,0x63,0xf7,0x3f,0x18,0x67,0x3c,0x65,0x9c,0xf1,0x14, +0xbb,0x0d,0xc2,0xf5,0x22,0x74,0xa2,0x52,0x29,0xe3,0x8c,0xc8, +0x79,0x55,0xf0,0xa2,0x8c,0xa6,0x25,0x65,0x9c,0x33,0x69,0x7c, +0xbd,0x5d,0x3f,0xcc,0xcc,0x02,0xe7,0x63,0xa0,0xac,0xb4,0x1c, +0x9a,0x89,0xd0,0xdc,0x23,0x36,0x33,0x78,0x0a,0xb7,0x93,0x9b, +0x58,0xbd,0x83,0x01,0x43,0x39,0x80,0x52,0x18,0x65,0x07,0x47, +0xe0,0x47,0x44,0x1c,0x0d,0x23,0x84,0xd1,0x0c,0x5e,0x1a,0xda, +0x41,0xc0,0xf3,0x01,0x1a,0xb7,0x81,0xf1,0x7d,0xf9,0xeb,0x23, +0x5c,0xa1,0xca,0xa6,0x1a,0xc9,0x3a,0x99,0xba,0x8c,0xac,0x7a, +0x15,0x81,0xa5,0x4c,0xa9,0xce,0xc2,0x24,0x4a,0x53,0x1b,0x41, +0xe1,0x01,0xd3,0xa6,0x78,0x1f,0x15,0xa8,0xe1,0x9f,0xa0,0x08, +0x0a,0x8f,0xa4,0x19,0x2f,0xea,0x6d,0x63,0x88,0xbc,0xed,0x06, +0x1b,0xa8,0x00,0x76,0xfe,0xa7,0x3c,0xe4,0x68,0xbb,0xa5,0x79, +0x12,0xc3,0x70,0x83,0x48,0x7d,0xa9,0xdd,0xef,0x86,0x9b,0xed, +0x23,0x35,0xbb,0x5d,0x92,0x29,0x3e,0x72,0x01,0xfc,0xad,0x90, +0x44,0xf2,0x37,0xfc,0xb6,0x0b,0x94,0xf7,0x94,0x77,0xf2,0x38, +0xe3,0xea,0x8a,0x5b,0xae,0x17,0x39,0xe9,0xc4,0x97,0x45,0x8c, +0xa5,0xe6,0x16,0x33,0x1c,0x65,0x5a,0x4a,0x8d,0xdc,0xb4,0xb3, +0xbf,0x5c,0x2d,0x7c,0xc9,0x89,0xf5,0x38,0x9d,0x5c,0xc5,0xea, +0x3d,0x0c,0x68,0xc8,0x6f,0x6b,0x97,0xc4,0x0b,0x5f,0x7d,0x41, +0xba,0xf1,0xbc,0x3e,0x0b,0x61,0xe6,0x24,0x64,0xb9,0xf7,0x0a, +0xe7,0x95,0x55,0x4b,0x2b,0xa6,0xe7,0xce,0xa2,0xae,0xc6,0xff, +0x9d,0x13,0x70,0x5e,0x57,0x0a,0x2f,0x94,0xfe,0x98,0xf3,0x86, +0xfb,0x2a,0x89,0xf8,0x2f,0xf7,0x58,0x61,0xbf,0xba,0x6e,0x69, +0xf5,0xac,0xe2,0x59,0xad,0xd9,0xbc,0xef,0x4f,0xd6,0xa0,0xe0, +0x7e,0xa9,0xe2,0x5a,0xe9,0xcb,0xbc,0x57,0x9c,0x68,0x2f,0x76, +0x13,0xe1,0x30,0x4c,0x13,0x77,0x6c,0x64,0x33,0x74,0x65,0x97, +0xa4,0x9e,0x68,0x54,0x11,0xbc,0x31,0x4e,0xec,0x60,0x41,0x0d, +0x7e,0x23,0x9e,0x55,0x8e,0xa7,0x5c,0x4a,0x5c,0x0f,0xf0,0x95, +0x07,0x6b,0x1c,0x0a,0x9d,0xb9,0x2a,0x3a,0xe8,0x9e,0x27,0x9d, +0x6a,0x0f,0x54,0xb8,0x38,0xf1,0x55,0xae,0x35,0xf6,0xc5,0x4e, +0xdc,0x78,0xc1,0x63,0x90,0x25,0xb0,0xb9,0x17,0x3f,0x84,0x85, +0xba,0xb8,0x10,0x15,0x74,0x6f,0x22,0xc3,0xa0,0x45,0x10,0x2e, +0x35,0xc0,0xc9,0xca,0xa1,0x0f,0xfc,0x7e,0x0c,0xbc,0x62,0x11, +0xc2,0xa7,0xd8,0xa6,0xe9,0xa7,0x18,0x78,0x47,0xd1,0x1f,0x69, +0x59,0xcd,0xef,0x02,0x3f,0x53,0x6e,0x1f,0x66,0x8b,0xfc,0xaf, +0xe8,0xc1,0x9a,0x85,0x98,0x86,0x19,0x47,0xa4,0x6b,0xf3,0x3f, +0x16,0x3e,0x2d,0x7d,0x58,0x99,0xac,0xc5,0x9f,0x4e,0x8b,0x0e, +0x8e,0x0e,0x8e,0x0a,0x56,0x6a,0x36,0xbb,0x01,0x9f,0x94,0x4a, +0xfb,0x76,0x1a,0x29,0xbd,0x62,0x70,0x59,0x1c,0x8e,0x8b,0x5c, +0xab,0x6c,0x1e,0x17,0x1a,0xee,0x3a,0x4d,0x9f,0xc9,0xd2,0x92, +0x35,0x32,0x67,0x4b,0x0b,0xee,0x26,0xab,0xa4,0x3c,0x3d,0x01, +0x33,0xc0,0x6a,0x2a,0xce,0x3b,0xcf,0xc0,0x6e,0x67,0x52,0xd9, +0x52,0xd8,0x9a,0xdb,0xc9,0x41,0x60,0x3f,0x3a,0x32,0xa9,0x75, +0x29,0x8d,0x49,0x2d,0xba,0xc9,0xbc,0x2f,0x4e,0x72,0x59,0xa1, +0xb5,0x8a,0x13,0x23,0x7e,0x21,0xbd,0x78,0x4a,0x97,0xa1,0xce, +0xf9,0x14,0xc1,0x53,0xda,0x70,0x8a,0x15,0xde,0x52,0x01,0xd9, +0xc9,0x36,0x34,0xd4,0x77,0x16,0xb4,0x52,0x1f,0x7d,0xc4,0x00, +0xf6,0xb1,0xde,0x76,0x2e,0xb6,0x36,0x07,0xb8,0x1d,0xc8,0xe9, +0xd2,0x61,0x0e,0x5d,0x2c,0xb9,0xa6,0xdb,0x4c,0x73,0x4e,0x4e, +0xab,0x0a,0xf8,0xc0,0x27,0xbd,0xff,0xac,0xcb,0x19,0xff,0x67, +0x85,0xe6,0xff,0x6a,0xd9,0xfe,0xb3,0xa6,0xed,0xf7,0xc2,0x9f, +0xdf,0xd7,0xe5,0xde,0xf3,0x32,0x15,0xb2,0x54,0xc8,0xb4,0x10, +0x6c,0x17,0xb6,0x40,0xbb,0xb4,0x4f,0xbf,0x02,0xb9,0x0f,0xd7, +0x37,0xb1,0x78,0x9d,0xf6,0xfb,0x63,0xb8,0xbe,0x8e,0x1d,0x3a, +0x70,0xfb,0x5f,0x86,0x6e,0x50,0x95,0xaa,0x23,0x31,0xc9,0xf0, +0x1d,0xe3,0xb8,0x5f,0xdf,0x70,0x9f,0x45,0xb9,0x05,0x7f,0xaa, +0xb8,0xb2,0xa4,0xac,0x82,0xfb,0x91,0xb1,0xd9,0xa0,0xb5,0xef, +0x33,0xad,0x0a,0x73,0xfe,0x87,0xcb,0x37,0x9f,0x34,0xbf,0xe6, +0x28,0xc7,0xe3,0x58,0xd5,0xe5,0x33,0x36,0x54,0x59,0x50,0x35, +0xf7,0xf4,0xf6,0x2f,0x67,0x60,0x3e,0xd7,0xc3,0xac,0x8f,0xdb, +0x12,0xa5,0xa1,0x6c,0x18,0x13,0x1a,0xaa,0x3f,0x6d,0x83,0xf4, +0x50,0xec,0x0d,0xe6,0x49,0x79,0xf1,0xa3,0x14,0x95,0xa4,0xeb, +0x27,0x1e,0x1c,0x85,0x09,0x9c,0x38,0x8a,0xc9,0x2e,0xc8,0x28, +0x96,0xa0,0xeb,0x0d,0x15,0x8e,0x95,0x70,0x4c,0xf2,0x82,0x86, +0xc9,0x34,0x8d,0xbd,0xe4,0x69,0xec,0x08,0xac,0x30,0x91,0x82, +0xe0,0x62,0x3d,0x5c,0x8c,0x32,0x71,0x22,0xc5,0x46,0x1f,0xd6, +0x98,0xa6,0x83,0x5c,0x82,0xbd,0xc9,0xfe,0xae,0xe0,0xd9,0x70, +0x2d,0x2b,0xec,0xb1,0x2f,0x55,0xec,0x4a,0xc2,0x57,0x48,0xdb, +0x1f,0xc0,0x98,0x44,0x25,0x37,0xaa,0x0c,0xda,0xdf,0x19,0x72, +0xe9,0x7e,0x45,0x89,0x9b,0x47,0xf5,0xaf,0xa9,0x73,0xb2,0x17, +0x13,0xd0,0x1e,0x56,0xe1,0x09,0x9c,0x08,0x63,0xd8,0xd3,0x89, +0x8d,0x69,0x35,0xe9,0x9e,0x4d,0xbc,0x7d,0x88,0x41,0xb0,0x41, +0x24,0x27,0xee,0xe9,0x3c,0x07,0x13,0x97,0xb3,0x3b,0xcb,0x3c, +0x9e,0x28,0x83,0x0f,0x73,0x26,0x33,0xf3,0x8c,0xca,0x5d,0x56, +0x3f,0x53,0x26,0xea,0x0c,0xae,0x21,0x94,0xd7,0x65,0x38,0x82, +0x81,0x33,0x8a,0x20,0x03,0x06,0x65,0x54,0x44,0x07,0x92,0x8b, +0x58,0x21,0x9f,0x3c,0x93,0x3a,0x6d,0x9f,0xd4,0x69,0x2a,0x48, +0x49,0x79,0x2a,0x7c,0x08,0x53,0x19,0x2a,0x7e,0xd6,0x11,0x98, +0x88,0xf4,0x87,0x81,0x73,0x8a,0x30,0x91,0xc2,0xe2,0x44,0x76, +0xfc,0x1f,0x42,0x2a,0xf9,0xba,0xa5,0xb9,0xa6,0xac,0x3a,0x25, +0x25,0xe1,0x70,0x4a,0x34,0x6c,0x41,0x86,0x2f,0xaf,0x2f,0xb3, +0xf9,0xbe,0xa9,0xfd,0x64,0xf5,0x29,0xa5,0xa4,0x94,0xf8,0xc3, +0xa9,0xd1,0xb0,0x0b,0xc7,0xf2,0x27,0x9b,0x71,0x23,0x8c,0x0c, +0x4b,0x8e,0x38,0x16,0x1e,0xae,0x14,0x1e,0x16,0x73,0x5c,0x56, +0x78,0x2a,0xa5,0xae,0x6f,0x6a,0x93,0x86,0x39,0x3b,0xcb,0x5c, +0x1f,0x17,0xee,0x56,0xc6,0xe5,0xaf,0xc3,0x92,0x22,0xbe,0xa4, +0xef,0x87,0x45,0xc4,0xd2,0xf7,0xeb,0x92,0x4f,0x9f,0x95,0xbf, +0x3f,0xd3,0xd4,0x00,0x95,0x77,0x2b,0x0f,0x16,0xc3,0x09,0x12, +0x6a,0xe5,0x67,0xea,0x66,0xdf,0xe5,0xc9,0x97,0x9f,0x29,0xe8, +0x4a,0x3b,0xc3,0x89,0x7e,0xe9,0x24,0xcc,0xda,0xd7,0xca,0xdd, +0xbe,0xd3,0x93,0x2f,0xad,0x2f,0x6c,0x4d,0x3f,0xc3,0x3d,0xc8, +0x24,0xe1,0x96,0xfe,0xa6,0x6e,0xb6,0x5d,0xbe,0x7c,0x59,0x43, +0x61,0x6f,0x72,0x23,0x27,0xfa,0x26,0x93,0x70,0x0b,0x6f,0x93, +0x83,0xb6,0x9d,0x1e,0x52,0x0b,0xcf,0x25,0x37,0x71,0x83,0xde, +0x78,0x9d,0x0c,0x7d,0x85,0x5f,0x5c,0x86,0x51,0x83,0xa6,0x38, +0xea,0x32,0x93,0x2f,0x8e,0x25,0x56,0x1d,0x7b,0x6e,0x1a,0x4b, +0x56,0x2e,0x57,0x6e,0xe5,0xb6,0xc4,0x2c,0x8e,0x9d,0x25,0x59, +0xb9,0x1e,0x6a,0xe5,0x7a,0x6e,0xa8,0xed,0xc4,0x7a,0x6a,0xe5, +0xea,0x25,0x2b,0xa7,0x24,0x5f,0xe1,0x30,0xe5,0x70,0x22,0xb5, +0x72,0xd9,0xf1,0xd0,0x92,0x04,0x5e,0x7f,0x5b,0xb9,0x39,0x92, +0x95,0xf3,0x9a,0x81,0x5e,0x8c,0x90,0xab,0x88,0x11,0xef,0x20, +0x82,0x19,0x2f,0x2c,0x95,0x26,0x23,0xbd,0xde,0xf8,0x5d,0x33, +0xa1,0x1a,0x44,0x62,0x1d,0x13,0xf7,0x48,0x77,0xf9,0x44,0xac, +0xd9,0x5f,0x6b,0x95,0xb5,0xff,0x5e,0xab,0xec,0xca,0xea,0x85, +0xe8,0x86,0x6a,0x85,0x67,0x48,0xa6,0xa2,0xe8,0xe7,0xd2,0x97, +0xd4,0x4a,0x4b,0xa6,0x82,0x86,0x17,0xd8,0x52,0x6d,0xb1,0x0b, +0x1e,0xb6,0xc3,0x46,0xf1,0x04,0x6e,0x6c,0xc7,0x87,0xb0,0x65, +0x21,0x86,0xeb,0x09,0xa7,0x7b,0xd8,0x8d,0x82,0x3a,0x11,0x95, +0x7e,0x14,0x94,0x98,0xa1,0x08,0xe9,0x8c,0xb3,0xff,0xdb,0x0a, +0x64,0xa8,0xa6,0xae,0xed,0x47,0x68,0x59,0xc4,0x9a,0x8c,0x9e, +0x8b,0x2d,0x6f,0xd8,0x99,0x62,0x0d,0xb9,0xd1,0x74,0xfd,0x5a, +0xf3,0x45,0x8b,0x6a,0xde,0x46,0x7b,0xe7,0xde,0xbd,0xb6,0x1c, +0xbc,0x05,0x05,0xd2,0x6b,0x7e,0x6b,0x57,0x8b,0x6e,0x7d,0x03, +0x6f,0xd6,0xbd,0xfd,0xaa,0x6e,0x33,0x05,0x31,0xa6,0x80,0x92, +0xa6,0xcf,0x1b,0xff,0x6b,0xe6,0x94,0x34,0x6d,0xd3,0x0c,0x53, +0x8c,0x7c,0x22,0xa9,0xbb,0xa0,0xcd,0x37,0xf9,0xab,0xd4,0xf1, +0x9f,0x32,0xad,0x0b,0x6b,0x12,0x6c,0x14,0x6a,0x10,0x96,0x41, +0x75,0x63,0xd1,0xf3,0xf2,0xc7,0x35,0x27,0xfc,0xa8,0x6e,0x0c, +0xe0,0xe0,0x2b,0xa8,0x25,0x7e,0x36,0x3e,0x4e,0x5e,0xae,0x01, +0xd5,0x81,0xe5,0xc1,0x45,0x56,0x1e,0x7c,0x91,0x4d,0xa5,0x76, +0x99,0x86,0x5d,0x80,0x65,0x90,0x55,0x30,0x07,0xb5,0xa0,0x27, +0xac,0x5e,0xf8,0xa3,0xde,0xa2,0x45,0x43,0xd6,0xac,0x5f,0x8c, +0x7f,0x4c,0x40,0x6c,0xa6,0x2e,0xff,0xa8,0xe4,0xdb,0x9a,0xeb, +0x27,0xd3,0x5d,0xd3,0x0e,0xa6,0xb8,0x35,0x55,0xf2,0x01,0xed, +0x5e,0x5d,0x5e,0x6d,0xe5,0x27,0x2b,0x1a,0x0b,0xcf,0x70,0xb0, +0x06,0x9c,0x48,0xe3,0x4f,0x55,0xbf,0x66,0x3d,0xe2,0xda,0x30, +0x7a,0x68,0xa8,0x77,0xf0,0x22,0x4c,0x64,0x83,0x37,0xb9,0xce, +0xb2,0x98,0xc3,0xf5,0x6f,0x6f,0x59,0xb9,0x72,0xea,0x9e,0x00, +0x2f,0x2d,0x65,0x4b,0x26,0x43,0x4b,0xd6,0xc2,0x7c,0x5d,0xd1, +0xfb,0xcd,0x1f,0xe6,0x4f,0x74,0x6e,0xa9,0x60,0x1a,0xb8,0x12, +0x54,0xc4,0x19,0xa0,0xc8,0xe2,0x53,0x75,0x6a,0x31,0x6a,0xe5, +0x16,0xe3,0xaf,0xd2,0x2d,0xfc,0x8f,0x74,0x6a,0x9b,0x32,0x7d, +0x5f,0x99,0x4a,0xea,0x62,0xe1,0x0e,0x29,0xca,0xcb,0x2f,0xcc, +0x2d,0x2c,0xd6,0xaf,0x34,0xae,0xb7,0x30,0x77,0xd2,0x3e,0xb8, +0xdd,0xa3,0x48,0x9f,0xbf,0x5b,0x76,0xa9,0xba,0xb3,0xa1,0xd7, +0xe8,0x9a,0xe5,0x73,0xbb,0xd2,0x1e,0x7e,0x7d,0xad,0xea,0x29, +0xc3,0xc6,0x9e,0x9e,0x53,0x17,0xf3,0xee,0x72,0xb7,0xba,0xb0, +0x97,0xc9,0xac,0x48,0xab,0x48,0xaa,0xd0,0x4b,0xe3,0x3d,0xd6, +0x58,0x6c,0xd9,0xa1,0xc1,0x89,0xeb,0xa8,0xca,0xbd,0x77,0xba, +0xbd,0xb9,0x64,0x80,0x03,0x75,0xc6,0xff,0x90,0x7f,0x5c,0xb8, +0x72,0x40,0x74,0xe0,0x91,0x00,0xe9,0x29,0x52,0x53,0xd9,0xcf, +0x4c,0x7d,0x79,0x66,0x2d,0x05,0x97,0xca,0x63,0x1d,0x47,0xab, +0x28,0x6f,0x32,0x27,0x32,0xa9,0x16,0xcc,0xe2,0x20,0xa5,0x1d, +0x35,0xda,0x41,0xbb,0x0d,0xb5,0xdb,0x60,0x47,0x1b,0xee,0x68, +0xd2,0xb0,0xc0,0x2d,0x26,0xb0,0xc5,0x04,0xad,0x4c,0xc0,0xca, +0x18,0xf5,0x8d,0x61,0x22,0x13,0xf3,0x85,0x8d,0xe6,0x6c,0x63, +0x6e,0x70,0x2f,0xec,0x24,0xd6,0x4d,0x2e,0x1d,0x5e,0x67,0x39, +0xd0,0x64,0xfc,0x34,0x0f,0x1a,0x5a,0x5a,0x72,0xc7,0x45,0x47, +0x92,0x1b,0x94,0xef,0x97,0xef,0xb7,0x25,0x76,0x49,0xdc,0x9c, +0x38,0xee,0x47,0x78,0x42,0x65,0xf9,0x93,0x47,0x6a,0xeb,0xf1, +0x1a,0xd5,0xce,0xd7,0x16,0xd0,0xd0,0x8e,0x93,0x87,0xf6,0x11, +0xe9,0xe8,0x54,0x1a,0xda,0xcd,0x89,0xe0,0x9d,0x9b,0xe7,0xf7, +0xd7,0x2c,0x53,0xeb,0x9e,0x2b,0x26,0x0d,0x9c,0x78,0x03,0xa8, +0x19,0x3d,0xb1,0x04,0x4f,0x30,0xc2,0x3d,0x45,0xcc,0x7d,0x05, +0xb9,0x34,0xc6,0x57,0x67,0x91,0xe0,0x87,0x5e,0xd4,0xf3,0xd2, +0x18,0x97,0x1b,0xe7,0xe1,0x55,0xa2,0x51,0x92,0xb9,0xe0,0x85, +0x49,0xc8,0xc3,0x52,0x6d,0x1a,0x24,0x44,0x9c,0x44,0xbd,0xbf, +0xbb,0x54,0x7f,0xa4,0xda,0x2a,0x9d,0xa2,0x3d,0x5b,0xf0,0xa6, +0xe4,0x87,0xf7,0xab,0x44,0xdb,0x33,0xf9,0x43,0x51,0x87,0xa2, +0xe3,0xa2,0x9b,0xdd,0xf9,0xfa,0x87,0x25,0xbf,0x27,0xdf,0x35, +0x4a,0xe3,0xa3,0xb6,0xfb,0xac,0x3d,0xb8,0x87,0xcb,0x81,0x22, +0x02,0x13,0x6e,0xdd,0xbb,0x95,0x2e,0xed,0xf5,0xa4,0xd6,0x07, +0x6a,0x89,0x4c,0xee,0x86,0xa7,0xfb,0xe1,0xc3,0x1d,0xc5,0x7d, +0xfc,0xbc,0x9e,0xcf,0xce,0x5b,0x5f,0xe6,0xc0,0xa5,0x0b,0xa3, +0x61,0x0d,0xf3,0x30,0xe5,0x5e,0xfa,0xd9,0x4c,0x69,0x92,0x6a, +0x84,0x2b,0x5a,0x78,0xe3,0xe2,0xb8,0x74,0x7d,0xfe,0xe2,0xf1, +0x5b,0xf1,0x37,0x13,0x39,0x9a,0x69,0x41,0x06,0x60,0xcb,0xda, +0xef,0xd9,0xb4,0x7f,0x86,0x2e,0x27,0x2c,0xa1,0x88,0x5d,0x71, +0xb2,0xac,0x25,0xb7,0xc9,0x38,0x97,0x0f,0xb0,0x76,0x37,0x73, +0x73,0xe4,0xb0,0xf3,0x0e,0x29,0x74,0x2b,0xb1,0xcb,0x72,0xe9, +0xc8,0xe7,0x83,0xaa,0xdc,0x1b,0xbc,0x4b,0x38,0x71,0xee,0x2a, +0x72,0x1f,0xcb,0xe4,0x33,0x1d,0x92,0xde,0x5f,0x2f,0xe9,0xfd, +0x1f,0xf0,0x07,0xd2,0xe9,0xd8,0x69,0xd2,0x64,0x7c,0x9a,0x66, +0x4c,0xa7,0x41,0x8b,0x49,0x0d,0x07,0xaa,0x73,0x49,0xcd,0xde, +0xda,0x39,0xb9,0x9f,0x75,0x15,0xf0,0xfe,0xcf,0xec,0x5f,0x3b, +0x5e,0xe3,0xd0,0x09,0xe3,0x89,0x53,0x44,0x72,0x85,0x0a,0x58, +0xea,0xa1,0x3d,0xbb,0xbf,0xd8,0xeb,0x92,0x32,0x8c,0x67,0x1a, +0xb2,0xa5,0x13,0x7b,0x39,0x56,0x3f,0x5b,0x86,0xd3,0xd8,0xf1, +0x17,0x04,0x1b,0x02,0xdb,0x8a,0x60,0x59,0x25,0x4c,0xe9,0x86, +0xb1,0x66,0x30,0xcb,0x16,0x16,0x7b,0x14,0x74,0xf3,0xf8,0x49, +0x01,0x4e,0xa8,0x98,0x71,0xea,0xce,0xa9,0xcb,0x2d,0x7d,0x03, +0x5c,0xa3,0x38,0x8a,0xcd,0xc8,0x48,0xa3,0x3f,0xba,0x79,0xfc, +0x9e,0x0d,0xc8,0x6c,0xc4,0x69,0x96,0x95,0x66,0xfc,0xcd,0x92, +0x73,0xe5,0x9d,0x55,0xf5,0xae,0x5d,0xae,0xe7,0xdd,0x50,0x66, +0x8b,0x9f,0x78,0xe0,0x0a,0x8a,0x1c,0xdd,0x60,0x45,0x12,0x4e, +0x24,0xc4,0x27,0xc4,0x73,0xf0,0x94,0x31,0xb1,0xd4,0x72,0xdc, +0xe5,0xba,0xab,0x4c,0xb3,0xca,0xb4,0x86,0x2b,0xc7,0x43,0xe4, +0x97,0xb0,0xdf,0xfc,0xbf,0xf2,0xc9,0x6c,0xe6,0x97,0x94,0xce, +0xca,0x59,0x9d,0xcc,0xe1,0x18,0x5c,0x4c,0x60,0x5a,0x24,0xac, +0x0e,0x80,0x91,0x3e,0x99,0x6d,0x3c,0x7e,0x5c,0x84,0x9f,0xe7, +0xe1,0x98,0x44,0xee,0x31,0x0e,0x92,0xb4,0xe0,0xb4,0x80,0xb4, +0x00,0x87,0x58,0xbb,0x58,0xeb,0x38,0xee,0x7b,0x58,0x0b,0xfa, +0xb8,0xf6,0xba,0xce,0x2e,0x5c,0x87,0xfa,0xb0,0x6e,0xbe,0xdc, +0x77,0xec,0x8f,0x4b,0xd2,0xa7,0xbe,0x23,0x15,0x66,0x67,0xc2, +0xc8,0x9c,0xe4,0xa0,0xa4,0xa0,0xc4,0xe0,0xc6,0x42,0xde,0xa7, +0xc9,0xa1,0xd7,0xa5,0x9e,0x13,0x5a,0x70,0x0e,0xf1,0x69,0x76, +0x38,0xef,0x22,0xdf,0x8f,0x26,0x28,0x3d,0x20,0xcd,0xcf,0x9e, +0xda,0x18,0x2b,0x29,0x26,0xb7,0xd2,0x8f,0xdb,0x2a,0x7d,0xdc, +0x06,0xfa,0x71,0x1b,0xe6,0xfe,0xe5,0x3f,0x0c,0xe4,0xfe,0x63, +0x76,0x06,0x7c,0x90,0x93,0x12,0x98,0x44,0x6d,0x0c,0x37,0xb4, +0x11,0xee,0x92,0x85,0x38,0xfa,0x27,0x16,0x36,0x2c,0xa4,0xc0, +0x28,0x5b,0xc8,0xc2,0xe9,0x9f,0xe8,0x15,0x8e,0x5e,0xd9,0x22, +0x5d,0x19,0x2b,0xd9,0x30,0x8d,0xc1,0x30,0xf2,0xbd,0xc6,0x52, +0x8c,0x35,0x10,0x3a,0xbb,0xd8,0xa1,0x05,0x62,0x96,0x64,0x7e, +0xf5,0x53,0xf4,0xa5,0xf5,0x14,0xee,0x54,0x8d,0xb8,0xc1,0x87, +0xc2,0x74,0xaa,0xd0,0x3e,0xd3,0xc1,0xcf,0x70,0x8c,0x38,0x1d, +0xc6,0x50,0x9b,0x67,0x18,0x61,0x10,0xa1,0x17,0x3d,0x2c,0xb3, +0x7f,0xc8,0xff,0xa6,0x3c,0x59,0x8d,0x6f,0xcf,0x08,0xfd,0xca, +0xe7,0xf7,0x80,0x5b,0x4a,0xb0,0x2e,0x9b,0xfc,0x10,0xff,0x43, +0xd2,0x57,0xe9,0x09,0xd4,0x50,0xc5,0x07,0x35,0xd1,0x51,0x3e, +0x77,0xe0,0xea,0xc1,0x66,0x6b,0x2f,0x3e,0xdd,0x37,0xc3,0x33, +0xdd,0xcd,0x2a,0xc6,0x3c,0xd6,0x3c,0xee,0xc2,0xc3,0xde,0xef, +0x5a,0x9e,0x9b,0x97,0xf0,0xde,0x66,0x07,0x0d,0x9d,0x8d,0x43, +0xb3,0x83,0xb3,0x83,0xb2,0x6b,0xbb,0x2a,0xcf,0xe6,0x75,0x18, +0xe5,0xf1,0x41,0xa6,0x1e,0x86,0x2e,0x16,0x11,0xc9,0x91,0xf4, +0xc7,0xd1,0x9e,0x6f,0xb4,0xab,0xb3,0xa8,0xb6,0xf2,0x76,0xf2, +0x3a,0xe0,0xe1,0xea,0x7f,0xd8,0xef,0x4b,0xbf,0x23,0xd2,0x94, +0xd1,0x43,0xd2,0x6a,0xd2,0xa2,0x51,0xad,0xd3,0x54,0xc3,0x3b, +0xf5,0x99,0x9c,0x33,0x6f,0xe6,0xf0,0xf1,0x11,0x72,0x40,0xd3, +0xda,0xc0,0xd8,0xa2,0xce,0x96,0xef,0xea,0x6c,0xea,0xab,0x3a, +0xcb,0x89,0x9b,0x42,0xc8,0x35,0x6c,0x94,0x57,0x44,0x1b,0x09, +0x36,0xee,0x84,0x46,0x76,0xf0,0x00,0x0e,0x11,0xb7,0xab,0x56, +0x37,0xad,0xfb,0xcd,0x3c,0xf8,0x06,0x8d,0xfa,0x1d,0xa5,0x7b, +0x38,0x71,0x2b,0xb8,0x90,0x83,0x7b,0xac,0x55,0x4d,0xf4,0x9b, +0x9d,0xf8,0xce,0xf3,0xf5,0x97,0xcb,0xaf,0x73,0xef,0x70,0x37, +0xb5,0x2b,0xf2,0xc3,0xea,0xd5,0xcf,0x81,0x3a,0x24,0x76,0x63, +0xe2,0x53,0xda,0x71,0x57,0x07,0xb7,0x92,0xd2,0xea,0xd2,0xf6, +0x9c,0xd3,0x06,0x45,0x7c,0x90,0xad,0x87,0x85,0x9b,0x73,0xf3, +0x41,0x1e,0xb9,0xe1,0x35,0x91,0xa3,0x98,0xe6,0xb2,0x80,0x5a, +0xe7,0x0e,0x8f,0x72,0x25,0xd3,0x83,0x65,0x07,0xca,0xac,0x72, +0xec,0x94,0xf0,0x23,0xdc,0xd6,0x0f,0x0a,0xc2,0xe7,0xa8,0x30, +0x00,0xdb,0x98,0x21,0x22,0x2d,0xb1,0x97,0xd6,0x78,0x4a,0xf3, +0x7a,0xf2,0xb5,0x2b,0x07,0xe8,0xbb,0x8a,0xa8,0x30,0x3c,0x27, +0x34,0x5c,0x44,0xf3,0x93,0x2c,0x4d,0xa4,0xae,0xdc,0xd2,0x7c, +0x90,0xf3,0x93,0xbc,0x84,0xf9,0x97,0x37,0x78,0xe4,0xf3,0x1b, +0x55,0x7e,0xe8,0x29,0x70,0xef,0x4b,0x62,0x06,0x7f,0x7b,0x18, +0xe1,0x1d,0xd6,0x11,0x70,0x15,0x47,0xa0,0x2b,0x2c,0x58,0x81, +0x16,0xd8,0x30,0x00,0xe1,0x30,0x07,0x2b,0xfb,0xa9,0x04,0x5b, +0x8e,0x9b,0x71,0x24,0x9b,0x63,0x20,0xfb,0x8e,0x69,0xca,0x94, +0x36,0x34,0x74,0x45,0xe7,0x6f,0xd9,0x37,0xd2,0xae,0x46,0x63, +0xf1,0x04,0x8c,0xa5,0x77,0x97,0xd3,0x4a,0x60,0x3d,0xac,0xe8, +0xc5,0x15,0xb0,0x70,0xf8,0x8f,0x05,0xb0,0x67,0x00,0x37,0xb1, +0xc5,0x6d,0xb9,0xdd,0x69,0x8d,0x7a,0xe9,0x7c,0x88,0xa9,0xaf, +0xb6,0x9b,0x3e,0x87,0x13,0x98,0xfc,0xb6,0xac,0xb6,0x8c,0x0e, +0xbd,0x2c,0xde,0x19,0x19,0x1d,0x9c,0xba,0x6b,0xd1,0x29,0x33, +0x3e,0xb3,0x20,0x3d,0x2f,0x35,0x8f,0x13,0x9f,0xf7,0x5f,0x12, +0x3e,0x1d,0x60,0xc5,0xc1,0x17,0x24,0xc3,0x27,0xd3,0x2d,0xf3, +0xa0,0x43,0x94,0x55,0xb4,0x45,0xb4,0xc4,0x4d,0x5f,0xc0,0x29, +0xfc,0xe2,0x15,0x28,0x83,0x1f,0x7e,0x8d,0x7e,0xa0,0xb4,0x84, +0xc6,0xd7,0x29,0xf8,0x0c,0x37,0xb3,0xea,0x51,0xaa,0xd1,0xda, +0x31,0x34,0xa6,0xe0,0xc3,0x0c,0x58,0x51,0xf0,0xb6,0x34,0xcd, +0x23,0xc5,0x33,0xd9,0xab,0xad,0x90,0xf7,0xba,0x6e,0xf3,0xd0, +0xa9,0x8f,0x33,0x15,0x5e,0x10,0x1c,0x8f,0xce,0x30,0x9e,0x15, +0x76,0x62,0x29,0xa1,0x8d,0x9b,0x87,0x0b,0x58,0xf1,0x77,0x53, +0xf2,0x3b,0xee,0x9a,0x29,0xdf,0x47,0x7a,0x24,0x95,0x02,0x23, +0x19,0xd0,0xc6,0x95,0x84,0xde,0xc2,0x3c,0x5c,0x28,0xad,0x5a, +0x5f,0x8f,0xf3,0x60,0x3d,0x15,0xdd,0x0a,0xf0,0x9c,0xbc,0xbd, +0x5e,0xf3,0xf4,0x38,0x8c,0xe3,0x6e,0xa3,0xc5,0xe7,0xd2,0x99, +0x17,0xf7,0x99,0xca,0x9c,0xec,0x2a,0x15,0xb0,0x00,0x9e,0x0d, +0x08,0xac,0xb3,0x2b,0x29,0x2c,0x2c,0xce,0x2b,0x53,0x2a,0xd4, +0xaf,0x32,0xad,0xb7,0x32,0x75,0xd4,0x3e,0xb8,0xdb,0xab,0xd4, +0x90,0xbf,0x5d,0x7a,0xb1,0xaa,0xa3,0xa1,0xdb,0xe2,0x92,0xfd, +0x83,0x03,0x25,0xdd,0xfc,0x8e,0x0a,0xcd,0x2a,0x93,0xd3,0x5d, +0x3d,0xb5,0x97,0xb3,0x1e,0x73,0x03,0x3d,0x58,0xc2,0xa4,0x96, +0xa6,0x94,0x27,0x96,0xeb,0xa6,0xf0,0xbe,0x6b,0x2d,0xd6,0xab, +0xee,0xe7,0x3a,0xd1,0xf4,0x1c,0x6c,0xec,0xc2,0x8d,0xe7,0x35, +0xd4,0xa5,0x9d,0x33,0x36,0x6b,0xa0,0xab,0x3e,0xac,0x62,0x0f, +0xcf,0xf1,0xda,0xb3,0x78,0x1f,0x37,0x18,0x01,0x57,0x48,0xf0, +0xde,0x83,0xfa,0x96,0x16,0x66,0x2d,0xce,0xdd,0xfe,0x97,0x38, +0xf1,0x34,0x8e,0x22,0x61,0x66,0x5e,0x36,0x8e,0xce,0x67,0x5c, +0xf8,0xd3,0x27,0x4b,0x5a,0x33,0xa8,0x11,0x49,0x89,0x24,0xc5, +0x8e,0x85,0xe6,0x59,0x56,0xad,0x85,0x7c,0x60,0xa3,0xf7,0x19, +0x8f,0x53,0x1c,0x94,0x8b,0x51,0xd2,0xb2,0x0b,0xdf,0x02,0xdf, +0x4d,0x31,0x8b,0x62,0x67,0x1d,0xe2,0xde,0xc0,0x33,0x30,0xc1, +0x67,0x77,0xd4,0xb6,0xe2,0x4d,0x34,0x81,0x9b,0xb3,0x58,0x9c, +0x2a,0x5f,0x18,0x31,0x45,0xbe,0x30,0x22,0x2f,0x1e,0x3a,0x92, +0xc0,0x3b,0x4f,0xbe,0x30,0x22,0xa0,0x55,0xbe,0x30,0xe2,0xba, +0xb4,0x30,0xe2,0x01,0x2c,0x23,0x90,0x34,0x1f,0x93,0x18,0xe1, +0x2b,0x45,0x2c,0xf8,0x05,0x0a,0xa8,0x54,0x3f,0x2e,0x1c,0x21, +0x5a,0xb8,0xcd,0x0c,0xb6,0xed,0x1e,0xb8,0x06,0x1b,0x5b,0x70, +0xe3,0x00,0x68,0xb6,0xe0,0x68,0x36,0x33,0x37,0x2d,0x3f,0x25, +0xdf,0x20,0x9b,0x0f,0xf3,0x08,0xf3,0xf2,0x71,0xe3,0x70,0x0e, +0xd3,0x94,0x1b,0x9a,0x17,0x58,0x14,0x94,0xa9,0x04,0x0f,0x5a, +0x50,0x6f,0x00,0xd6,0xb7,0xe0,0xfa,0x01,0x2d,0x2d,0x69,0xcf, +0xd9,0xb5,0x5a,0x68,0x4d,0x75,0x1c,0x63,0xea,0x9f,0x15,0x94, +0xe3,0x9d,0xe6,0x47,0xd3,0xc0,0x8c,0x11,0x62,0xf1,0x53,0xd2, +0x7c,0xba,0xb2,0xbe,0xa0,0xb1,0xc2,0xbb,0xdc,0xab,0xcc,0xa3, +0xe6,0x0c,0xef,0x5c,0xe1,0x54,0xea,0x58,0x9c,0xd1,0x98,0xd0, +0x7a,0xac,0x97,0x1a,0x10,0x9c,0x96,0x8c,0x63,0xba,0xf7,0x28, +0x57,0xda,0xb5,0x1c,0x4d,0xef,0x2a,0x87,0x8f,0x79,0xb3,0xc2, +0x83,0x38,0x45,0x66,0x7b,0x21,0xfc,0x29,0xe8,0x4c,0xc5,0x45, +0x6f,0xb5,0xe7,0xe0,0x08,0xa3,0x3f,0x98,0x23,0x96,0x71,0xf6, +0x51,0xce,0x5e,0x59,0x9e,0x19,0x5e,0xe9,0x2e,0x36,0x7c,0x79, +0x50,0x79,0x40,0x99,0x7f,0x80,0xcd,0x41,0x27,0x0b,0x3b,0x0e, +0x3c,0xf0,0xc5,0xdf,0xac,0xbe,0x34,0x6e,0xce,0x21,0xee,0x15, +0x55,0x5a,0xda,0xf8,0xd5,0x35,0xb5,0xdd,0xd4,0x1b,0x69,0xc3, +0xf5,0x45,0x7f,0xb1,0xba,0xa2,0x9c,0xd5,0xb3,0xe4,0xac,0xee, +0x95,0x43,0x59,0xdd,0x9f,0xb2,0x7a,0x29,0x6f,0xd9,0xb6,0xe7, +0xb2,0xc4,0xea,0x37,0x61,0x0e,0x81,0x84,0x65,0x98,0xc0,0x08, +0x0f,0x15,0x31,0xef,0x25,0xe4,0x31,0xe3,0xff,0x1c,0x37,0x38, +0x86,0xe0,0xc4,0x7e,0xaa,0xe4,0xc7,0xb0,0xa5,0x35,0xa5,0xed, +0x79,0xf5,0x86,0xc5,0xbc,0xbf,0x8d,0xa7,0x85,0x9b,0x63,0x0b, +0xc5,0x82,0xf1,0xf0,0x99,0x06,0x0d,0x6a,0x8e,0x69,0x2d,0xf1, +0xaf,0x3f,0xd0,0xed,0x5e,0xa6,0x64,0xec,0x56,0xee,0x5c,0x66, +0x9a,0x6b,0xa3,0x84,0x1f,0xe2,0xae,0x3e,0x2a,0x49,0xb6,0x8b, +0xef,0x48,0xc8,0x43,0x6f,0xaa,0x1e,0xcd,0xde,0x4f,0x10,0x1b, +0x79,0x45,0x7a,0x46,0x79,0x46,0x49,0xcb,0x8e,0xc7,0x50,0x30, +0x18,0xf3,0xcf,0x3a,0xc1,0x41,0xd6,0x28,0xc4,0x20,0x54,0x4f, +0x12,0xbf,0xbf,0x15,0xbe,0x2c,0xff,0x7b,0x1a,0x09,0x9d,0x06, +0x47,0x91,0xcb,0x58,0xbb,0x4f,0x7a,0xf0,0x41,0x12,0x69,0xbb, +0xa9,0x48,0x13,0xcc,0x45,0x4f,0x02,0x6e,0x5d,0xe8,0x06,0x63, +0x61,0x05,0x04,0x88,0xa3,0x31,0x00,0x16,0xd3,0x0c,0xf7,0x32, +0x00,0x2f,0x9c,0x89,0xc9,0xba,0xc2,0x95,0x5e,0x4c,0x64,0x5e, +0x0b,0xa1,0xd2,0x2c,0x45,0x12,0x4c,0x92,0xef,0x5a,0xbf,0x97, +0xb4,0x41,0xb1,0xf4,0x70,0x78,0x6a,0x27,0xa6,0x76,0x6a,0x1a, +0x62,0xb1,0xf4,0x12,0x6b,0x08,0xb1,0x26,0xac,0x90,0x21,0x86, +0x92,0xfa,0xd0,0xc6,0xb0,0xf6,0xf0,0x9c,0x56,0x1e,0x15,0xca, +0x3f,0x2f,0xdf,0x7b,0x9a,0x83,0xe4,0x0e,0xf1,0x38,0x93,0x92, +0x9e,0x92,0x91,0x9c,0xc9,0x09,0x1c,0x64,0x0d,0x6d,0xc1,0x2c, +0x38,0xc2,0x84,0x07,0x47,0x84,0x84,0x85,0x72,0x78,0xcb,0x08, +0xb2,0x19,0x75,0xf3,0xcf,0x5d,0xf1,0x13,0xb7,0x5c,0x13,0xbe, +0x35,0xf9,0x4c,0x4a,0x5d,0x3a,0x87,0x93,0xa0,0x7a,0x07,0x4b, +0xfb,0x1d,0x55,0x0e,0xe3,0xe4,0x69,0x09,0x06,0x90,0x7a,0x1c, +0x4e,0xc5,0x83,0x5b,0xba,0x52,0x5e,0x60,0x6e,0x60,0x66,0xc8, +0x99,0x52,0xde,0xe2,0xcc,0xde,0x2e,0x4a,0xc2,0x8d,0x8c,0xb3, +0xd0,0x4d,0x54,0xc5,0x0b,0x17,0x59,0xe1,0xc2,0x0c,0xb2,0x47, +0xbc,0x70,0x95,0x15,0x94,0xd0,0x92,0xb4,0xd8,0xf7,0xb8,0x5e, +0xf5,0xe4,0xf0,0x84,0x74,0x5e,0xac,0x2d,0xd3,0x5f,0xdc,0x52, +0x59,0x77,0x92,0xc3,0x45,0x34,0xb8,0xc0,0x75,0x1f,0xba,0x32, +0xc2,0x09,0x45,0x0c,0xbc,0x0c,0x81,0x4c,0x11,0x6e,0x26,0xdb, +0x0f,0xad,0x3a,0xb4,0xf8,0x30,0x77,0x03,0x8e,0xb0,0xa6,0x7e, +0xd9,0x61,0xb9,0xc1,0xb9,0xc1,0x4a,0xe3,0x85,0xdf,0x06,0x15, +0xc9,0x15,0xd8,0xb0,0xb7,0xe7,0x0a,0x7c,0xda,0x89,0x9f,0xde, +0xd3,0xdb,0x8c,0x1b,0xee,0xe9,0x6e,0xc6,0x89,0x86,0x30,0x71, +0x2f,0xcd,0x9f,0x21,0x42,0x86,0xd7,0x86,0x48,0xca,0xcd,0x4e, +0x9a,0xb5,0x91,0xd6,0x60,0x1c,0x94,0x57,0x48,0xff,0x31,0x6b, +0xa3,0x48,0x07,0x48,0x11,0xbd,0xe5,0xeb,0x67,0x34,0xe5,0x15, +0x52,0x26,0xf7,0x6d,0xc1,0x5f,0x4f,0x52,0x72,0x18,0x35,0x38, +0xe9,0xfd,0x7c,0x8c,0xe3,0xdf,0xf3,0x31,0x83,0x1a,0xa2,0x37, +0xe9,0xc1,0x23,0x0f,0xc1,0x14,0x9e,0x8a,0xda,0xf8,0x14,0x34, +0x37,0x60,0x80,0x1e,0xb8,0xb1,0x9e,0xfb,0x37,0x1b,0xe2,0xa7, +0x26,0x85,0xda,0x3c,0xac,0xbc,0xf0,0xd5,0xc5,0xe4,0x97,0x5c, +0x22,0x93,0xba,0xf4,0x89,0x2e,0x6c,0xda,0x5d,0x34,0xc0,0xe3, +0xdc,0xae,0x0d,0xad,0x1e,0x17,0x38,0x50,0xa2,0x0c,0x88,0x4f, +0x5f,0x50,0xd1,0x82,0xca,0xa3,0x97,0xe3,0xd3,0xef,0xd8,0xf1, +0x7f,0xf2,0x83,0x23,0xc9,0xa5,0x8e,0xfd,0x30,0x1a,0xcd,0xfa, +0x74,0x74,0x50,0x1f,0x47,0xab,0x1a,0x5e,0xa4,0x61,0x64,0xb4, +0x1f,0xed,0x71,0x2d,0xec,0x65,0x42,0x7d,0x82,0xbd,0x03,0x69, +0xa7,0xa9,0x1b,0xc3,0x42,0xc6,0xcb,0xc5,0xc3,0xc5,0xdd,0x15, +0xd6,0x9a,0xf0,0xfb,0xbd,0xd7,0x07,0xcf,0x8f,0xcc,0x34,0xe2, +0x61,0x72,0xda,0xcf,0x45,0xf7,0x4e,0x3f,0xf6,0xba,0xef,0x71, +0xd3,0xb3,0xb8,0x9d,0xdf,0x5b,0xb0,0x27,0x6f,0x7f,0x6e,0x6b, +0xcd,0xc9,0x33,0x15,0x5d,0xdc,0x4b,0xea,0xaa,0x98,0xcc,0xa2, +0xcc,0xa2,0xb4,0x02,0x0e,0x22,0x60,0x2d,0xba,0x5e,0x02,0x4b, +0x66,0x68,0x24,0x66,0x4a,0x15,0x2e,0x83,0x64,0x03,0xef,0x68, +0xef,0x18,0xaf,0x18,0x89,0xca,0xc6,0xd2,0xce,0x19,0x3b,0xbc, +0x86,0xf6,0xaf,0x2a,0x97,0x51,0x38,0x95,0x0d,0x92,0xad,0x7f, +0x4b,0x6d,0xfd,0x53,0xc9,0xd6,0x53,0xd5,0x20,0xaf,0x70,0x29, +0xc1,0x1d,0x61,0x05,0xc1,0x79,0x54,0x3c,0x33,0x1d,0x3b,0xc9, +0x0d,0x58,0xbc,0x93,0x1d,0x72,0xb2,0x7e,0x1f,0xd4,0xfb,0xe5, +0x41,0xbd,0x47,0x72,0x1e,0xe9,0x71,0x04,0xe6,0x6d,0xc1,0x79, +0x0c,0x18,0xdd,0x25,0xb0,0x78,0x0b,0x2e,0x66,0x8c,0x70,0x09, +0xd9,0x8c,0x2b,0xef,0xb1,0x02,0xbb,0x99,0xe0,0xe7,0xf7,0xe0, +0x73,0x4a,0x43,0xd1,0xc4,0xdd,0xcc,0xc1,0xc1,0xd8,0xdd,0x30, +0xc3,0x28,0xc3,0x3c,0x2d,0x27,0x3f,0xb7,0x28,0xbb,0x88,0x1b, +0x3f,0xa8,0x3b,0xf8,0x21,0x79,0x0c,0x1e,0x9d,0xe8,0x71,0x5f, +0x7b,0x13,0x5a,0x1b,0x82,0xf5,0x3a,0x0c,0x31,0x10,0xea,0xbb, +0x58,0xb1,0x57,0x44,0xf9,0x9a,0x52,0xbf,0xbf,0x67,0x74,0x8d, +0xa9,0x0f,0x8d,0x74,0x8b,0x92,0x96,0xa1,0x8f,0xa3,0x37,0x33, +0x6e,0x38,0x15,0x3f,0xa4,0x37,0xf3,0x21,0xba,0xb1,0x86,0x21, +0x7a,0x61,0x7a,0xe1,0xe9,0x5a,0x54,0x03,0x15,0xfe,0x58,0xfa, +0x4d,0xcd,0xf0,0xe4,0x16,0x87,0xde,0x83,0xb2,0xf7,0x13,0xb0, +0xda,0x72,0x3a,0xde,0x21,0xd1,0xf1,0x6a,0x2c,0x27,0x6e,0x71, +0x2e,0x71,0x07,0x0e,0x71,0x8f,0xbf,0x6f,0x5f,0xfa,0x58,0x6f, +0xdd,0x3c,0xe3,0xd7,0xab,0x58,0x69,0xd9,0xa2,0xed,0xe1,0x78, +0x7d,0xfe,0x65,0xe2,0x8f,0x49,0xb7,0xd3,0xb9,0x82,0x40,0x02, +0xc5,0x1d,0xc8,0x3c,0x7f,0xdb,0x3e,0xe7,0xb1,0xee,0xba,0x85, +0xc6,0x3f,0xad,0x9a,0xcd,0x40,0x00,0xbe,0x22,0x8b,0x19,0x97, +0xc8,0x44,0x2a,0x8f,0x67,0x80,0x66,0xb7,0x78,0x5d,0x1f,0x56, +0xb3,0x91,0xb3,0x35,0x8d,0x70,0xb4,0xa3,0xb4,0x6b,0xd0,0xf4, +0xa6,0x2b,0x77,0x93,0xe0,0x63,0x0e,0x46,0xe2,0x5c,0x66,0x6f, +0x9e,0xef,0x65,0xe5,0xd7,0x4c,0x53,0x76,0x56,0x93,0xca,0x4f, +0xac,0x5e,0x8e,0x6c,0xfc,0x35,0x61,0x1d,0x81,0xc4,0x04,0xa8, +0x4d,0x04,0xff,0x82,0x02,0xaf,0x7c,0xaf,0x2c,0x9f,0xf6,0x0a, +0xde,0xaa,0x53,0xf3,0x92,0xf9,0x19,0x23,0x0f,0x3e,0x23,0x34, +0x33,0x38,0x33,0x78,0x7d,0xd4,0x8a,0xd8,0x45,0x71,0xdc,0x0b, +0xb8,0x0d,0x06,0x78,0x5b,0x3a,0x91,0xe4,0x26,0x1a,0xc0,0xcd, +0x15,0x2c,0x4e,0x89,0x45,0x65,0x89,0x42,0x38,0x98,0x0d,0x87, +0x09,0x24,0x2f,0xc6,0x64,0xf9,0x63,0x09,0xa9,0x3f,0x40,0x2a, +0x23,0x2e,0x19,0x52,0x20,0x69,0x81,0xe9,0x7e,0x69,0xbe,0xf2, +0x62,0x7b,0x1c,0xf7,0x1b,0xac,0x03,0x1b,0x5c,0x77,0x4f,0x67, +0x33,0xae,0x45,0x1b,0x1a,0x22,0x1f,0xfc,0x77,0xad,0x7d,0x76, +0x16,0x8c,0xc8,0x4d,0x0e,0xa4,0x9a,0x37,0xa8,0xa9,0x90,0xf7, +0x6d,0x75,0x38,0xeb,0x72,0x86,0x13,0x9a,0x71,0x39,0xf1,0x6d, +0xb7,0xbf,0xec,0xd2,0x68,0xe1,0xc7,0xa7,0xcb,0x8b,0xf7,0x92, +0xe6,0xb5,0x8c,0xe5,0xfe,0xa0,0x9a,0xd7,0x06,0xb7,0x4a,0x9f, +0xb7,0x81,0x7e,0xde,0x06,0xca,0x40,0xff,0x2a,0xba,0xe7,0x24, +0x07,0x24,0x07,0x24,0x04,0x72,0x43,0x1b,0xe0,0x0d,0x99,0x8e, +0xa3,0xfe,0x60,0x61,0xfd,0x74,0xf2,0x07,0xc8,0xa6,0xb3,0x50, +0xf7,0x07,0xbd,0xc2,0xd2,0x2b,0x9b,0xa5,0x2b,0x63,0xa7,0xd3, +0x1c,0x51,0x15,0xae,0x93,0x76,0x3c,0x06,0x2a,0xec,0xdd,0xa4, +0xdb,0xa9,0x17,0x33,0xdd,0xa9,0x86,0x9f,0xec,0x8a,0xdb,0x83, +0x71,0xf5,0xe1,0x74,0x03,0xfe,0xca,0xb1,0x5b,0xc7,0x6f,0x51, +0x27,0x34,0x15,0x63,0x8c,0xc1,0x8e,0xb5,0xda,0xbf,0xc1,0x7c, +0xb6,0x71,0x89,0xb4,0x85,0x5b,0xff,0xd7,0xed,0x65,0x3f,0x73, +0x09,0xb8,0xaf,0x1f,0xf6,0x25,0x30,0xa5,0x4b,0x9f,0x99,0xc0, +0x58,0xf5,0xe2,0x5e,0x7e,0x71,0xeb,0xaa,0x66,0xd3,0x8b,0x9c, +0xb8,0x06,0x9f,0x4a,0x92,0xce,0x38,0xc5,0xc8,0xe5,0xfd,0x8a, +0x75,0x67,0x98,0x4c,0x43,0x67,0xf2,0xb0,0xa4,0x9b,0x48,0x43, +0x67,0x22,0xcd,0x03,0xbd,0x08,0x9d,0x48,0x1d,0x79,0x31,0x8f, +0x95,0x26,0xd9,0xde,0x2f,0xbf,0x90,0x97,0x7b,0xe5,0x8f,0x5b, +0x0b,0xa6,0xc2,0x18,0x52,0x52,0x53,0xdc,0x94,0x79,0xca,0x38, +0x8f,0x0f,0x71,0xf2,0x30,0xf5,0x72,0xe5,0xb0,0xff,0x32,0xc9, +0xf6,0x2e,0xb4,0x4f,0x3f,0x48,0x4d,0x57,0x48,0x85,0xf7,0xe9, +0x80,0x42,0x4e,0x54,0x41,0x86,0xdc,0xc1,0xca,0xad,0x0c,0x95, +0x2d,0x7f,0x17,0x33,0xd2,0x87,0x34,0x48,0x1f,0xbc,0xd0,0x39, +0x2b,0x6c,0x12,0x8d,0xc4,0x4d,0x2c,0xd5,0x85,0x45,0x04,0x3f, +0xf9,0x1d,0x3e,0x61,0xfa,0x67,0x92,0xdf,0x61,0xe6,0x4c,0x16, +0x4d,0x8c,0xa5,0x85,0xd7,0x9f,0x00,0xcb,0x82,0x9e,0x22,0xcc, +0xa4,0xbf,0xcf,0xa4,0x36,0xf5,0xed,0x60,0x36,0xf5,0xfd,0x4c, +0x42,0x41,0x7c,0xfe,0x89,0x02,0xc3,0x44,0xde,0x07,0x47,0xd8, +0x2f,0xd1,0xda,0x7e,0xda,0x91,0x4f,0x4e,0x95,0xe1,0x7c,0xfa, +0x97,0x62,0x70,0xb2,0x0b,0x72,0xca,0xe1,0x0f,0x03,0x7f,0x08, +0xba,0x62,0x19,0xc6,0x27,0x5b,0xa7,0xea,0x24,0xeb,0x06,0xc4, +0xfa,0xc7,0xf8,0xc7,0x52,0x7f,0xf9,0x8b,0xc0,0xcf,0x87,0xa5, +0x06,0xb8,0x74,0xa1,0xc8,0xff,0x84,0x81,0xac,0x45,0x84,0x59, +0xa4,0x59,0x54,0xaa,0x36,0xff,0x22,0xfb,0x61,0xde,0x9d,0x92, +0x63,0x94,0xad,0x8e,0x05,0x9c,0x4a,0xe1,0xe3,0x42,0xe3,0x42, +0x63,0x43,0xcf,0xd8,0xf1,0xa5,0xb7,0xb3,0x6e,0xa5,0x7c,0xcf, +0xc1,0x66,0x5c,0x3f,0x4f,0x3a,0x2d,0xf6,0x11,0x53,0x97,0x95, +0x7b,0x46,0x45,0x80,0x9d,0x6c,0xf6,0xc9,0xdc,0xf6,0xd4,0x06, +0xee,0x1c,0x06,0x93,0xaf,0xcf,0xd7,0xdf,0x4b,0x80,0x0f,0xb9, +0xb7,0xcc,0x11,0xc3,0x58,0xf5,0x28,0x3b,0xce,0x25,0x26,0x32, +0xc2,0x79,0x9a,0x06,0x93,0x61,0x24,0xeb,0x65,0xba,0x8b,0x73, +0x7b,0x52,0x54,0x92,0x3b,0xe2,0x2f,0x1e,0xfb,0x9d,0xc3,0x66, +0xa3,0xe7,0x4c,0xdc,0xc2,0x03,0x9a,0xaa,0xa6,0xdc,0x12,0xd8, +0x4c,0xc2,0x1d,0x02,0xcd,0xfc,0x1c,0xb8,0xc5,0x4c,0xde,0xc9, +0x9c,0xfa,0x8c,0x33,0x1c,0x7e,0xbf,0x98,0x74,0x60,0x9d,0x11, +0x43,0x55,0x61,0x1d,0xc1,0x3a,0x7d,0xa8,0x63,0x21,0x05,0x0f, +0x12,0x5d,0x98,0xdd,0xcb,0xb4,0xe2,0x6c,0x02,0xb3,0xcf,0xe2, +0x6c,0x16,0xd2,0xa4,0x19,0xb6,0xe9,0xc0,0x76,0x23,0x0b,0x13, +0xf4,0x70,0x82,0x26,0x9b,0x50,0x19,0x5f,0x7d,0xbc,0xda,0x38, +0x81,0x8f,0xfa,0x3c,0x70,0x93,0xdb,0x9e,0x46,0x77,0x3e,0xbd, +0x2a,0xb5,0x3a,0xb9,0x86,0xbb,0x89,0xd3,0x71,0x8a,0x1e,0x4c, +0x41,0x8b,0x1e,0x3a,0x0e,0x0a,0x3d,0x8c,0x18,0x0c,0xea,0x04, +0x97,0x6a,0xb0,0xc7,0x5b,0x8e,0x76,0x1c,0x1d,0xe0,0xde,0x2a, +0x9e,0xc5,0xa5,0x9a,0xcc,0xf8,0xc1,0x1b,0x94,0xa8,0xef,0x30, +0x51,0x9b,0xfc,0x16,0xb9,0x7e,0xd1,0xec,0xcd,0x9f,0x7a,0x9d, +0xfd,0x36,0xf9,0x39,0xd7,0x84,0x76,0x6c,0x42,0xd7,0x89,0x9e, +0xe3,0x03,0x46,0xf1,0x7c,0x2c,0x2e,0xf1,0xc7,0x71,0x46,0x38, +0xa1,0xd9,0x95,0x2f,0xbd,0x9a,0x7b,0x35,0xed,0x16,0x57,0x87, +0xcb,0x19,0xb4,0x3a,0x80,0x93,0x66,0xa0,0xb2,0x72,0x42,0x4d, +0xca,0x57,0xc7,0xe1,0xc3,0x23,0xb0,0x59,0x09,0x9d,0x98,0xe4, +0xe2,0xa4,0x92,0xa4,0x32,0x8e,0x8a,0xdd,0xdb,0x78,0x12,0x6f, +0x77,0x31,0xde,0x2b,0xed,0xd6,0x3b,0x58,0x55,0x59,0xf2,0x58, +0xd8,0xd1,0x3b,0x7c,0x7a,0x91,0xb1,0x0f,0x9b,0x55,0x92,0x59, +0x9e,0x51,0xcd,0x51,0xf8,0x3f,0x8a,0x0a,0x87,0x71,0x4c,0xc4, +0x66,0xce,0x3a,0x26,0x3c,0xc6,0x73,0x9a,0x2e,0x93,0xaa,0x2b, +0xeb,0x60,0x4e,0x17,0x24,0x57,0xa6,0xab,0x94,0x1b,0xfc,0x06, +0x33,0x6b,0x5f,0x1f,0x83,0x0d,0x4a,0x89,0xcc,0x71,0xdc,0xdc, +0x38,0xfb,0x2d,0x7e,0x52,0x7e,0x8e,0x47,0x06,0xe6,0xda,0xc2, +0x64,0x70,0x98,0x2a,0x7e,0x87,0x5e,0x24,0xc5,0x2a,0x55,0x37, +0x49,0x37,0x24,0x36,0x28,0x36,0x38,0x8e,0x22,0xfd,0xdf,0x63, +0xbe,0x40,0xe4,0x7f,0x46,0x7f,0xd6,0x22,0xdc,0x3c,0xc2,0x44, +0x1a,0xf3,0xe7,0xd9,0x77,0xf2,0x6e,0x14,0x1f,0xf7,0x97,0xc6, +0xbc,0x25,0x9d,0x0f,0x7f,0xe2,0xf7,0x7b,0xd0,0x2d,0x0e,0x2e, +0x0b,0x87,0xc9,0x4a,0xdc,0xf5,0x8d,0x74,0xc8,0xc8,0xe4,0xff, +0x1a,0x0b,0x03,0x3a,0x16,0xc2,0xd8,0x68,0xb2,0x14,0x77,0x7d, +0xcf,0x9e,0xc5,0x1e,0x12,0xc6,0x6e,0x08,0xb1,0xd7,0x33,0x51, +0xae,0xb0,0xab,0x2c,0xcf,0x29,0x4c,0x2b,0x56,0x3a,0x1e,0x7f, +0xe2,0xcb,0xf8,0xe8,0xde,0x0d,0x7c,0x75,0x8d,0xc1,0xed,0xe8, +0x94,0x88,0xa3,0xf2,0x0d,0x06,0xe3,0x8e,0xc9,0x52,0x8a,0xe2, +0x6b,0x1a,0xa7,0xe6,0xd0,0xe4,0xd6,0x1d,0x5c,0x45,0xd0,0x84, +0x29,0x2a,0x2a,0xa8,0xc8,0x2a,0xe7,0x4e,0x62,0x04,0x9b,0x9c, +0x91,0x98,0x9e,0x90,0x61,0x94,0xc5,0xbb,0xee,0xdf,0xb6,0x66, +0x89,0x56,0xa5,0x15,0x9f,0x96,0x44,0x7f,0xa8,0x93,0xff,0x9c, +0x45,0xb7,0x50,0x54,0x31,0xc3,0x09,0xca,0x2d,0x86,0xad,0xf0, +0x71,0x26,0xa8,0x9c,0x80,0x15,0x4a,0x82,0x5d,0xb3,0x68,0x7b, +0x9d,0xa1,0x16,0x85,0xb0,0x41,0xd6,0xb6,0x9e,0xbb,0x02,0x0b, +0xcc,0xf9,0x6f,0xf3,0x3b,0x9a,0x73,0x2e,0x70,0x97,0xf4,0x98, +0x03,0xd9,0x7e,0x67,0x94,0xdf,0x30,0x35,0x19,0xa9,0x55,0x2a, +0x35,0xac,0x59,0xba,0xcc,0x78,0x3d,0x1b,0x10,0x19,0x9f,0xaf, +0x52,0x0f,0xdb,0x58,0xf1,0x81,0x08,0x54,0xd2,0xc9,0x1f,0x2c, +0x09,0x96,0xa6,0xac,0x8c,0x52,0x8d,0xfe,0x9e,0xba,0xf8,0x37, +0x29,0xba,0x4b,0x92,0x2e,0x4c,0x2f,0x82,0x4a,0xba,0xb7,0x05, +0xdf,0x94,0x7c,0x5d,0x25,0x2f,0x08,0xfa,0x73,0xc2,0xfa,0xc1, +0x50,0x12,0xe2,0xed,0xe3,0xe1,0xe1,0xc5,0xa1,0x15,0x53,0x52, +0x54,0x58,0x94,0x5b,0xcc,0x89,0xdb,0x70,0xec,0xbf,0x38,0x71, +0x70,0x36,0x6a,0x92,0x26,0xfc,0xd3,0x82,0x0d,0x42,0x15,0x62, +0x21,0x4c,0x69,0x62,0x71,0xda,0xe8,0x26,0x71,0x8a,0x05,0xdb, +0x86,0x87,0x48,0x1d,0x34,0xd8,0xf6,0x83,0x81,0x38,0x1b,0x0d, +0x58,0xf8,0xf1,0x29,0xc1,0x86,0xab,0xd0,0x40,0xf5,0x7d,0x2d, +0x1c,0x95,0xb0,0xca,0x30,0xd9,0x50,0x5a,0x96,0xe5,0x04,0x8c, +0x30,0x91,0x8e,0xf3,0x7f,0x95,0xe1,0x8d,0xc2,0x0d,0xa5,0x32, +0xbc,0xb4,0xa4,0xf4,0xfb,0x82,0xe7,0xef,0x67,0xa5,0xda,0x24, +0x98,0xf2,0x7d,0x2b,0xcd,0x4a,0xdd,0xfa,0x86,0x08,0x0b,0x4e, +0xb5,0xe1,0x6d,0x93,0x4e,0xbc,0xc6,0x5a,0x1f,0x4a,0x34,0xfc, +0xbf,0x58,0x7b,0xeb,0xf0,0x2a,0xae,0xb5,0x6d,0xbc,0x05,0x32, +0x33,0x58,0x80,0x96,0x15,0x66,0x53,0x48,0x70,0xb7,0x62,0x21, +0xb8,0x4b,0x90,0xb8,0xbb,0x27,0x10,0x07,0x42,0xdc,0x05,0x28, +0x24,0x21,0xee,0xee,0xee,0xc9,0x8e,0x3b,0x6e,0x85,0x42,0x69, +0x0b,0x15,0xa4,0x54,0x4e,0x05,0x4e,0xfb,0x4c,0xfa,0x0c,0xe7, +0xfb,0xd6,0xec,0x40,0xcf,0x39,0xef,0xfb,0x5d,0xbf,0xbf,0x7e, +0xe4,0xba,0x36,0x93,0xd9,0x99,0x6b,0xd6,0x7a,0xf4,0xbe,0x97, +0x3c,0xeb,0x56,0xfc,0x67,0x29,0xf7,0xd2,0x64,0x9a,0x2c,0x8c, +0x13,0xf6,0x49,0x2b,0x59,0x02,0x05,0x15,0x16,0x7f,0x5e,0x45, +0x61,0xf2,0x0d,0x0a,0x77,0x61,0x8b,0xb4,0xd9,0xbb,0x12,0x26, +0x61,0x25,0x8b,0x8d,0x60,0x40,0x34,0xe9,0x7d,0x16,0x7f,0x0b, +0x78,0x3b,0xcc,0xbe,0xff,0xef,0x61,0x76,0x08,0x59,0x41,0xe0, +0x83,0x7d,0x8c,0x6d,0xa4,0x75,0x94,0x0d,0xb5,0xb2,0x20,0xe9, +0xd0,0x6d,0x9f,0x5e,0xf4,0xf9,0x89,0xf9,0xf2,0xd2,0x17,0x49, +0x0f,0x52,0x7c,0x7b,0x78,0xdc,0xe4,0x8d,0x47,0x43,0x70,0xed, +0xb9,0x14,0x23,0xfe,0xd3,0x0b,0x0f,0x62,0x1f,0xc4,0x71,0x6b, +0xd0,0xcb,0x90,0x82,0xfe,0x31,0x98,0x6c,0x20,0xdc,0xed,0xc3, +0x24,0x56,0x72,0x39,0x7d,0x92,0x57,0x56,0xd4,0x90,0x59,0x61, +0x5c,0xc2,0x07,0x9e,0xf0,0xb4,0x3d,0xe9,0xde,0x78,0x92,0xc7, +0xf7,0x60,0xd6,0x11,0x9c,0xb5,0x80,0x69,0x2a,0xf4,0xaf,0xf6, +0x6c,0xf6,0x2e,0x92,0x99,0xba,0x17,0xb9,0x17,0xba,0x64,0x1d, +0x97,0xe1,0x64,0x5c,0x7d,0xf9,0x77,0x61,0xe3,0xc2,0xab,0xb0, +0x9a,0x79,0xb3,0x48,0xb4,0x1b,0x9d,0xbc,0x33,0xf6,0x8e,0x38, +0x19,0xe5,0xa5,0x60,0xe9,0xca,0x54,0x8b,0xca,0xff,0x89,0x06, +0x7c,0x58,0xe3,0x10,0x83,0x70,0x83,0xd1,0x09,0xbc,0x97,0xff, +0x8f,0x09,0x3c,0x74,0x12,0xd8,0xb7,0xa8,0x40,0xef,0x6f,0x54, +0x00,0xe7,0xf1,0x22,0x11,0x18,0xb0,0x13,0x19,0x66,0x90,0xe6, +0xbf,0x7f,0x42,0x02,0x8d,0xcc,0x77,0xc4,0x78,0xd2,0x2b,0x4c, +0x33,0x1c,0x16,0xd4,0xc4,0x68,0x51,0x8d,0x05,0x77,0x88,0x23, +0xb8,0xe1,0x25,0x6c,0x60,0xfa,0x57,0x91,0x97,0xb0,0x65,0x15, +0x2b,0x7e,0x68,0x42,0x60,0xc3,0x32,0xdc,0xc0,0x80,0xeb,0xcf, +0x94,0xa8,0x2f,0xc3,0x2d,0x34,0x78,0x3f,0x18,0x99,0x41,0x1e, +0xc2,0xee,0x1d,0x43,0x0f,0x15,0xe7,0x92,0xdd,0xd0,0xd1,0xc4, +0xdd,0x37,0x74,0x35,0x71,0xae,0x11,0xcc,0xdd,0xc1,0x62,0x98, +0xa8,0xfa,0x76,0xea,0x65,0x8b,0x42,0xdf,0x4a,0x54,0xdf,0x4a, +0xa3,0xfa,0x1e,0x47,0xf5,0x3d,0x8e,0x76,0xc2,0x34,0xcc,0x78, +0x74,0xda,0xe5,0xf7,0x2c,0x69,0x16,0x72,0x74,0x09,0xf1,0x57, +0x3e,0xaf,0xfc,0xee,0xca,0x68,0x33,0x6b,0x48,0x9b,0xfa,0x57, +0x87,0x60,0xbc,0x59,0x71,0x1f,0xbf,0xa4,0xe1,0x60,0xab,0xdd, +0x15,0x0e,0x74,0xbb,0xb1,0x49,0x9a,0x80,0x2e,0x88,0x2f,0xd2, +0x4d,0xe2,0xa3,0xdc,0x23,0xbd,0xc2,0xa8,0xbd,0xba,0x19,0x83, +0x2e,0x63,0x73,0x58,0xd3,0x6a,0x85,0x63,0xb1,0x21,0x45,0xc2, +0xed,0x8f,0xae,0x76,0x3c,0xe3,0xc4,0xec,0x6f,0xc8,0x55,0x2c, +0x3f,0xca,0xc0,0xbe,0xbf,0xd5,0x2c,0x38,0x60,0x37,0x81,0xb5, +0x5d,0xb8,0xf6,0xa5,0xde,0x2a,0x45,0xe1,0x67,0x1c,0x3b,0xc0, +0x7c,0x31,0x4c,0x16,0xe0,0x09,0x36,0xb6,0xfc,0x42,0x75,0xfd, +0x4c,0x5d,0xc6,0xfe,0xfc,0xf1,0xb3,0x6e,0xaa,0xc8,0x18,0xfd, +0xc1,0x04,0xee,0x77,0xb5,0x3a,0x6a,0xd3,0x60,0xc1,0x7f,0xd6, +0x5b,0x37,0x98,0xf9,0x82,0x03,0x6f,0xb4,0x18,0x02,0x0b,0xc5, +0x29,0x01,0xaf,0xa8,0x0c,0xbe,0x1a,0x51,0x26,0x9f,0xc3,0x9e, +0xed,0x43,0x9f,0x4b,0xa5,0x82,0xe6,0xdd,0xd7,0xd9,0x8d,0x7b, +0xee,0xeb,0xee,0x46,0x15,0x23,0x50,0xd9,0xce,0xa2,0xaf,0xa8, +0x42,0x92,0x29,0xb4,0x4b,0x32,0xf1,0x7c,0x0b,0xe2,0x9d,0x60, +0xaa,0x30,0x0d,0xa7,0x8e,0x6e,0x17,0x9a,0x2c,0x4e,0x83,0xc9, +0x78,0x52,0x31,0x8b,0x3c,0x3a,0xe4,0xf2,0x7e,0xf6,0xaf,0xf9, +0x2f,0xca,0x47,0x57,0x8d,0x75,0xa6,0x49,0xda,0xfc,0xdd,0xf7, +0x0e,0x07,0x52,0xf1,0xad,0xfa,0x4d,0xcf,0x76,0xc1,0x58,0xe3, +0x92,0x1e,0x7e,0x71,0xab,0x66,0xb7,0x13,0x15,0x86,0x76,0x37, +0xd6,0x31,0x89,0xa5,0x97,0x2a,0xe2,0xaa,0x74,0x92,0xf8,0x18, +0x87,0xc8,0xe3,0xe1,0x34,0x6d,0xdb,0x18,0xc3,0x61,0xc6,0x61, +0xef,0x51,0xb3,0x15,0x76,0xa5,0xd2,0xf6,0xbe,0xee,0x07,0xd7, +0x9a,0x7f,0xe0,0xc4,0x52,0xe0,0xc8,0xa7,0x58,0xa2,0x98,0x79, +0x96,0xb6,0x07,0xed,0x96,0x36,0xb6,0x9f,0xc5,0x02,0x82,0x4b, +0x69,0xa2,0x8d,0x6f,0xbd,0xd8,0x39,0x30,0x53,0x8b,0xd1,0x3d, +0x67,0x1a,0x65,0xad,0x8a,0x2a,0x86,0x30,0x99,0xf1,0x53,0x77, +0xd4,0x3f,0x68,0xd6,0x64,0xc1,0x3f,0xba,0xd2,0x72,0x3b,0xef, +0x35,0x07,0x1f,0x63,0xd0,0x65,0x08,0x82,0x65,0xbd,0xb8,0x0c, +0x96,0xd2,0xce,0xa7,0x0a,0x40,0xe2,0x93,0xe2,0x3f,0x89,0x8b, +0x7c,0x81,0x53,0xf8,0xda,0xca,0x12,0xfb,0x2f,0x6f,0x94,0x35, +0xc6,0xde,0xa2,0xc1,0x3c,0xfe,0x40,0x93,0xdd,0xd7,0x87,0xca, +0xda,0xf8,0xe5,0x9f,0xda,0x76,0x3e,0x9d,0xf9,0xca,0x78,0x1e, +0xab,0xee,0x6e,0xba,0x6e,0x9f,0xea,0x06,0x60,0x22,0x52,0x23, +0x2e,0x86,0x86,0xcb,0x42,0xa5,0x3a,0xad,0x69,0x75,0x97,0xda, +0x6f,0xce,0x6c,0x33,0xb6,0x62,0x91,0xf5,0x3d,0xb4,0x64,0x95, +0x6a,0x8d,0x6d,0x77,0x7b,0x4d,0x7b,0x56,0x83,0x4c,0xd8,0x2d, +0x2e,0x26,0xdd,0x98,0x0a,0xef,0xe9,0xe1,0x7b,0xf8,0x89,0x31, +0xf8,0xb1,0x6e,0x7b,0x76,0x1d,0x45,0xb5,0xa3,0x21,0x5f,0x9e, +0xf9,0xc9,0xff,0x96,0xb4,0x35,0xdd,0x2e,0xc5,0x28,0xd9,0xf0, +0x74,0xe4,0xe9,0xa8,0x53,0x0a,0x06,0xa0,0x24,0xcc,0xa0,0x16, +0xa6,0x08,0x76,0xe3,0xc4,0x19,0xd4,0xc2,0xce,0xb0,0xa6,0xa1, +0x6f,0x2d,0xec,0x97,0xac,0xa7,0x79,0x4f,0x4a,0x93,0xb4,0xf8, +0xb6,0xd4,0x1c,0x5b,0x98,0x7f,0xf3,0xd1,0xcd,0x8c,0xe7,0xb2, +0x04,0x4c,0x1e,0x80,0xe4,0x4b,0x4c,0xc6,0xea,0x6f,0xb4,0x61, +0xd1,0xfe,0xa2,0x3e,0x1e,0xe7,0x5f,0xdb,0x78,0xf9,0xc4,0x7d, +0x0e,0xa4,0x9d,0x62,0x51,0x16,0x61,0xd6,0x81,0x36,0xf2,0x10, +0x3e,0xa3,0x2d,0xa5,0xfd,0x92,0x9c,0xc3,0xa7,0x71,0x24,0xd2, +0x3c,0xd8,0xc6,0xcf,0xae,0x35,0x88,0xcf,0x6e,0x49,0xeb,0x48, +0x94,0x73,0xad,0xf1,0x24,0xc6,0x3c,0xdc,0xdc,0xcf,0xb2,0x2d, +0x84,0xcf,0xea,0x48,0xe9,0x89,0x95,0xfe,0x2c,0x96,0x9c,0x35, +0x0d,0x37,0x0f,0xb0,0xa4,0x8f,0x66,0xca,0x93,0xfa,0x62,0x3b, +0x39,0x7c,0x8c,0x5b,0xa9,0x31,0xd6,0x28,0x8c,0x51,0x0a,0xa4, +0x9a,0x52,0x20,0x3d,0x82,0xbb,0x88,0x58,0x89,0x8b,0xfa,0x7f, +0x14,0xb6,0xad,0xe8,0xa7,0x12,0x3d,0x02,0x09,0x44,0x48,0x6a, +0xc3,0xc0,0x5b,0x60,0xd8,0x8a,0x86,0x57,0xdf,0x7e,0x7a,0xd0, +0x84,0xcd,0x24,0x4b,0xd5,0x22,0x73,0xb8,0xce,0xcb,0xb0,0xb4, +0x03,0x97,0x0e,0xe9,0xeb,0xa0,0x86,0xf4,0xb1,0xc8,0x0c,0x16, +0x19,0x31,0xce,0xc9,0x3e,0xa6,0x26,0xbb,0x8f,0xea,0xc8,0x8a, +0xad,0xf2,0x72,0x33,0xb3,0xd2,0x32,0x64,0x86,0x62,0x26,0x51, +0xf8,0xd2,0xa7,0x16,0x8a,0x95,0x0c,0x46,0x49,0xc6,0x5e,0xe1, +0x9e,0x6f,0x87,0xfd,0x18,0x2a,0x29,0x66,0x34,0xa0,0xfc,0x2f, +0x49,0xbd,0xca,0xfe,0xb1,0xe0,0xa9,0x34,0xc2,0x0a,0x17,0x46, +0x42,0x08,0x68,0xe8,0x31,0x96,0x89,0xe1,0x3e,0xa1,0xa7,0x83, +0x7c,0x64,0xb8,0x8a,0x49,0xce,0x4e,0xce,0x49,0xca,0x89,0xb9, +0xc0,0xb7,0x30,0xa2,0x9d,0xd1,0xdb,0xad,0x7e,0xfb,0xff,0xee, +0x12,0xa4,0xe0,0x58,0x72,0x15,0xb6,0x1f,0x65,0x71,0xfb,0xdc, +0x77,0x17,0xf4,0xd6,0x2d,0xd8,0x7e,0x90,0x85,0xeb,0xf8,0x98, +0x6c,0xc9,0xdc,0x99,0x73,0xb0,0xe0,0x56,0xf5,0x40,0x73,0x43, +0x37,0xd7,0x22,0xe6,0x99,0x0a,0xba,0xac,0xa3,0xa3,0xe1,0x89, +0x23,0x9e,0x07,0x4b,0x74,0xca,0x4d,0xaa,0x1c,0x6c,0xf9,0x26, +0x8f,0x76,0xef,0xae,0x53,0xbb,0xbc,0xd5,0xfd,0x36,0x84,0x48, +0x04,0xf1,0xbd,0x8c,0x57,0x45,0xcf,0x6b,0x9e,0xb8,0x7e,0xef, +0xf5,0xab,0x1f,0xa7,0x0c,0x83,0x70,0x96,0x8c,0x0e,0x5d,0x50, +0x66,0xac,0xd8,0xab,0xee,0x08,0xd3,0x68,0x84,0x9c,0x36,0x0a, +0x7a,0xa7,0xd0,0x08,0x39,0x85,0x32,0x63,0xc3,0x10,0x83,0xb7, +0x7b,0xf0,0xc6,0xe6,0xfe,0x52,0xf8,0x7d,0xc5,0x5b,0xa7,0x92, +0x56,0x4c,0x29,0xd6,0x33,0x2a,0x8e,0xe5,0x95,0xa3,0xda,0xa7, +0xb0,0x17,0xd3,0xfa,0x21,0x0d,0xb4,0xf7,0xe2,0x0a,0x0b,0x58, +0x91,0xdd,0x07,0x4b,0x30,0xfa,0x06,0xb8,0x75,0x89,0xde,0x26, +0x60,0xab,0x89,0xfe,0xb8,0xa4,0xcf,0x8f,0xc5,0xdf,0x7f,0xa1, +0xfe,0x53,0x49,0xfd,0xc7,0xf4,0xef,0xe5,0xef,0xc2,0xfb,0xe8, +0x48,0xda,0x50,0xcd,0x92,0x15,0xd4,0x55,0xda,0x70,0x85,0x25, +0x0b,0x76,0x3b,0x89,0x58,0x6a,0x06,0x41,0x4c,0xd8,0xc9,0xd0, +0x53,0xa1,0xa7,0x38,0x3c,0x88,0xfd,0x7d,0x90,0xf0,0x14,0xa3, +0xba,0x20,0xea,0x99,0xe2,0xf3,0x9f,0xa8,0xaf,0xc9,0xa4,0x19, +0x53,0x14,0xd4,0x9c,0x9e,0xd1,0xa4,0x06,0x21,0x78,0x89,0x4d, +0x29,0x48,0x29,0x48,0x2e,0xe4,0x20,0x8a,0x51,0xfe,0x6b,0xb9, +0x74,0x38,0xca,0xae,0x8e,0x16,0xd0,0x64,0x5a,0xbc,0x3b,0x4e, +0xf6,0x9f,0x2a,0xa5,0x74,0x81,0x69,0xdb,0xd5,0xa8,0xd7,0xca, +0x81,0x5f,0x1b,0x56,0x30,0xfe,0x59,0x41,0x59,0x81,0x39,0x1c, +0xa4,0xb4,0x8a,0x9b,0x99,0xc4,0xcc,0x84,0xcc,0x84,0x2c,0x4e, +0x38,0xd8,0x26,0x6a,0x30,0x97,0xb2,0xe3,0xe8,0x8f,0x5e,0x1c, +0x1f,0x73,0x26,0xda,0x37,0x92,0xb2,0xc3,0x11,0x4b,0xf8,0x81, +0x89,0xf4,0x0f,0x0f,0x08,0x0f,0xe0,0xb0,0xc6,0x0a,0x12,0x98, +0x20,0xbf,0x40,0x3f,0x7f,0x7f,0x0e,0x8b,0x2c,0xc1,0x9b,0xd1, +0x32,0xdf,0x66,0xbd,0xc8,0x9e,0xc6,0x89,0xfe,0x82,0xae,0xc2, +0x96,0x22,0x0e,0x0f,0x15,0x9b,0xe1,0x66,0x5c,0x0d,0x9b,0x35, +0xd9,0xc3,0xd1,0x07,0x63,0x0e,0xc7,0x24,0x52,0x05,0xcc,0xa0, +0xac,0x27,0x0d,0xde,0x4b,0x4f,0x0e,0x4e,0x0e,0x4a,0x0c,0x6a, +0x28,0xe0,0x4f,0xd5,0x39,0x36,0xbb,0x56,0xd8,0xfb,0xf2,0x65, +0xae,0xc7,0x63,0x9c,0x62,0x1c,0xce,0xca,0xae,0x50,0x16,0xb6, +0x1a,0x37,0x77,0x08,0x0b,0xcd,0x70,0x1b,0x7d,0x7e,0xdb,0x41, +0xc5,0xf3,0x9a,0x67,0xa5,0xe7,0x67,0x26,0xc1,0xc2,0x54,0x18, +0x9b,0x9e,0x12,0x94,0x44,0x9f,0x6f,0xa4,0xcf,0xd7,0x3a,0xca, +0xdd,0x2a,0xb8,0x76,0x06,0x51,0xf8,0x46,0x5a,0xf4,0xe4,0x97, +0xe1,0x2f,0xc1,0x8e,0xf4,0xac,0xb4,0xec,0xd4,0x6c,0x0e,0x1c, +0x96,0x92,0x1c,0xbf,0x5c,0xff,0xfc,0x00,0x4e,0x5c,0xcd,0xe4, +0x67,0xe5,0x66,0x65,0x67,0x71,0x1b,0x70,0x31,0xe9,0x11,0xec, +0x8d,0x58,0x9b,0x71,0x06,0xa2,0x7d,0x1f,0xeb,0x8a,0x7a,0x34, +0x9d,0x33,0x37,0x58,0xd8,0x2a,0x15,0x6e,0x60,0x29,0x06,0x68, +0xb8,0x41,0xef,0x4c,0xa0,0x77,0x5a,0x35,0x09,0x4e,0xbc,0x01, +0x13,0x99,0x68,0xdc,0x48,0x9c,0x63,0xec,0xcf,0xda,0xc5,0x70, +0xd7,0x60,0x0a,0x6b,0xef,0x9b,0x1c,0x96,0x1c,0x9a,0x1c,0x22, +0x53,0x7e,0x2c,0x78,0x12,0x60,0xd2,0xe0,0x83,0x82,0xdf,0xda, +0x93,0xc3,0xe9,0x4f,0xd8,0x5a,0x63,0x5c,0x64,0x87,0x8b,0x7c, +0xb3,0xcc,0x79,0x50,0xcb,0x83,0x15,0xf5,0xbf,0x5d,0x4d,0x0a, +0x49,0x0c,0xbe,0x14,0xbc,0xfa,0x18,0x6e,0xd2,0x47,0x0d,0xef, +0x6c,0x0b,0x1e,0x16,0x15,0xc2,0xe6,0xae,0x3f,0xef,0x71,0xb1, +0xc1,0x17,0x83,0x82,0x67,0x9a,0x04,0xfb,0xef,0x53,0x55,0x67, +0x32,0x2d,0x94,0xbe,0x61,0x9e,0x97,0xd5,0xdf,0xfd,0xca,0xe0, +0x0b,0x9d,0x6e,0xb5,0x94,0x4b,0x94,0x55,0x7c,0x8e,0x9b,0x7f, +0xdd,0x06,0xa6,0x9a,0xf9,0x1d,0xfc,0xaa,0x8a,0x83,0xe5,0xc6, +0xf5,0x43,0x15,0xd7,0x3b,0x6b,0x6a,0xed,0x2a,0x79,0x3b,0xdb, +0x63,0x56,0x7a,0x1e,0x4e,0xd5,0x9e,0x4d,0x5e,0x3d,0x1c,0x7c, +0xdf,0x86,0xb6,0x4c,0x5e,0x7f,0xf6,0xcd,0xd4,0x5e,0x4e,0xf4, +0x66,0xe2,0xd3,0xe2,0x53,0x63,0x53,0xb4,0x62,0xf9,0x20,0x33, +0xf7,0xc3,0x6e,0x3a,0x9c,0x70,0x8e,0x89,0x0e,0x8c,0x0a,0x8a, +0x0a,0xe2,0xde,0x4c,0xb3,0x84,0x67,0xcc,0x56,0x57,0x9c,0xe8, +0x8d,0xe3,0x15,0x25,0x45,0x0c,0x48,0x41,0xb7,0x92,0xb0,0x9d, +0x89,0x09,0x8c,0xf6,0x8b,0xf2,0xe3,0xe0,0x93,0x37,0x69,0x84, +0x2a,0xa6,0xd3,0xb5,0xd2,0xf6,0x0c,0x9f,0x1c,0x9a,0x12,0x92, +0x1c,0xe2,0x1c,0x6d,0x7f,0x96,0x52,0xe4,0xdb,0x94,0xd2,0xae, +0xc7,0x5d,0xbd,0xfa,0x86,0x54,0x37,0xeb,0x61,0xdb,0x1e,0xaa, +0x9b,0x43,0x54,0x37,0x71,0x5e,0x54,0x13,0x2e,0x4d,0x6e,0x15, +0x76,0xbe,0x3c,0x15,0x0c,0x7d,0xc0,0x85,0xea,0xd2,0x3e,0x86, +0xbb,0x09,0x1a,0xf4,0x01,0x0d,0xe9,0x81,0x2d,0xf4,0x81,0x2d, +0x7b,0x47,0x8d,0xe1,0x6c,0xa2,0xb1,0x82,0x02,0x2f,0x4a,0xa7, +0x3e,0x49,0x95,0x19,0x98,0x18,0x5c,0x97,0xcf,0xc7,0xfa,0xc2, +0xcc,0x44,0x58,0x98,0x06,0x63,0x33,0x64,0xc9,0x81,0xc9,0x81, +0x09,0xb4,0xb1,0x3b,0x21,0x99,0xec,0x47,0xe6,0x0e,0x0b,0xdb, +0xf6,0x93,0x3b,0xc0,0xec,0x67,0xa1,0xfe,0x0e,0xbd,0x33,0x9e, +0xde,0xd9,0x29,0xdd,0x99,0xb8,0x9f,0x55,0xfe,0x42,0x28,0x22, +0x70,0x29,0x0e,0x5a,0x2f,0x81,0x53,0x4a,0x81,0x5f,0x01,0xd5, +0x78,0x55,0x3d,0x6f,0x55,0xab,0xdb,0x6a,0x53,0xc6,0xc9,0x61, +0x31,0xde,0xea,0xd2,0x32,0xc1,0x1b,0xb8,0x18,0x6e,0x1c,0x61, +0x70,0xfa,0x59,0x9c,0x75,0x0e,0x3f,0x38,0xcf,0x81,0x1a,0xec, +0x24,0x10,0xa7,0x25,0xcd,0x78,0x5e,0x51,0xc1,0x4b,0x97,0xe1, +0x12,0x73,0x7e,0x01,0x71,0xf5,0x4c,0x8d,0x48,0x0d,0x4f,0x0b, +0x97,0xed,0x8c,0x59,0x7b,0x6e,0xe5,0x59,0xee,0x2a,0xbb,0x4e, +0x5c,0x4a,0x52,0x82,0x92,0x83,0x13,0x83,0xeb,0x0b,0xa4,0x56, +0xce,0x48,0x84,0xf9,0xa9,0x30,0x26,0x5d,0x46,0x6f,0x06,0x25, +0x04,0x37,0x14,0xf2,0x3e,0x55,0x8e,0xcd,0x6e,0xa3,0xef,0xda, +0xd6,0xae,0x6f,0x4e,0x2d,0x7f,0x31,0x6c,0xd6,0x62,0xa8,0x74, +0xce,0x1e,0x3e,0x1b,0xef,0xc6,0x9f,0xae,0x76,0xaa,0x7f,0xfb, +0xfd,0x46,0xe9,0xfb,0x4d,0xf4,0xfb,0x4d,0xda,0xcc,0x91,0x98, +0x43,0x92,0x30,0xa8,0x65,0x93,0x24,0x98,0x97,0xfa,0x67,0x3a, +0x87,0x06,0xa0,0x45,0x74,0x70,0xec,0x10,0x0b,0x9b,0x75,0xc8, +0x10,0x8c,0xd5,0x61,0xa1,0x66,0x88,0xde,0x61,0xe9,0x9d,0x7a, +0x1d,0xca,0x7d,0x87,0x80,0x65,0x44,0x93,0x85,0xc4,0xd9,0x5f, +0x31,0xc7,0x14,0x26,0x5b,0x18,0xae,0xd4,0xc7,0x0a,0x57,0x55, +0x9c,0xfc,0x4b,0x3d,0x5c,0x62,0x1c,0x25,0x27,0x1a,0x60,0x29, +0xdf,0x59,0x4c,0x70,0xdf,0x22,0x93,0xbf,0x3e,0xea,0x9a,0x43, +0x39,0xa9,0xe8,0x4b,0x79,0xf3,0x74,0xea,0x4f,0xd3,0xa5,0x60, +0x33,0x9d,0x48,0x57,0x14,0x25,0xf6,0x4b,0x6b,0xa3,0xa7,0x83, +0x3a,0x4e,0xa7,0x04,0xc4,0x50,0xeb,0xff,0x5b,0xed,0xed,0x30, +0x0e,0x82,0xf1,0x01,0x0b,0xe3,0x1b,0x3f,0xed,0x68,0xbc,0xc9, +0x5d,0xdc,0xcc,0xd8,0x67,0x85,0x35,0xaa,0x3e,0x63,0x2a,0xd2, +0x93,0xca,0xd4,0x3a,0x59,0xab,0x54,0x25,0xdd,0x1d,0xac,0x7f, +0x74,0x6c,0xa6,0xda,0x1d,0x98,0xd9,0x8c,0x9b,0xd8,0xa4,0x82, +0x4b,0x45,0x71,0x25,0x1c,0x7c,0xd8,0x24,0x8e,0x47,0x4e,0xd7, +0x06,0xec,0x99,0xe3,0x36,0x3a,0x4e,0xf3,0x5c,0x72,0x6d,0x78, +0x71,0x0e,0x06,0xff,0x6a,0xfe,0xd6,0x2e,0x98,0x7f,0xdb,0x05, +0x0d,0x12,0xd4,0x06,0x14,0x76,0x11,0x94,0x18,0x4c,0x83,0x44, +0xec,0x99,0xff,0x6d,0x17,0x3f,0x0a,0x5f,0x10,0x20,0x4d,0x0f, +0x3b,0x5a,0x6e,0x71,0xa9,0x6b,0x99,0xed,0xe1,0x09,0x56,0x4f, +0x92,0x7e,0x4f,0xbd,0x91,0x29,0x8b,0x69,0x74,0x88,0xb4,0x8a, +0xb2,0x8c,0x92,0x7d,0xfd,0x4b,0x33,0xaa,0xd2,0x16,0x24,0x28, +0x5a,0xf0,0x7e,0x13,0xbe,0x46,0xee,0xb0,0xd4,0x02,0x27,0x9b, +0xa3,0x8e,0xc8,0xb8,0x70,0x30,0x1e,0xfc,0x09,0xcc,0x67,0x62, +0x3c,0xa3,0xbc,0xa5,0x08,0xab,0xcc,0x08,0x5a,0x0f,0x08,0x2c, +0x56,0xdc,0x08,0xa3,0x37,0x3e,0x64,0xc0,0x10,0x5b,0x89,0xf8, +0xba,0x47,0x78,0xcd,0xac,0x1a,0xa7,0x2f,0xbe,0xee,0x67,0xe1, +0xb2,0xb8,0x89,0x8a,0xc9,0xa9,0xd5,0xb5,0xf2,0x3f,0x8c,0xdd, +0xf1,0xac,0xc3,0xdf,0xc6,0xde,0x2e,0xcc,0x37,0xff,0x6f,0xf7, +0xe0,0x28,0xfa,0x30,0x7d,0x6b,0xc6,0xb5,0xfb,0x09,0xfd,0x1f, +0x18,0x06,0xb6,0xaa,0xc0,0x78,0x6a,0xc8,0x0c,0xec,0x54,0x19, +0x35,0xe3,0xbf,0x94,0x84,0x58,0xb2,0x7b,0x00,0x58,0x71,0x43, +0x3d,0x3c,0x81,0xe9,0xf8,0xa4,0x5e,0xf8,0xb8,0x59,0xfc,0xb8, +0x55,0xcf,0x4a,0x54,0xb3,0x11,0xd4,0x1c,0xf0,0x16,0x4e,0x87, +0x5b,0x0e,0xe2,0x42,0x64,0x07,0xee,0xb3,0xcf,0x60,0x2b,0x81, +0x24,0x33,0x69,0x50,0xeb,0x2b,0x15,0x2c,0xea,0x80,0x22,0x46, +0xac,0x16,0x37,0x12,0xe1,0x01,0xa8,0x88,0x11,0x4c,0x66,0x5a, +0x7a,0x7a,0x5a,0x3a,0x27,0x18,0x36,0xbf,0x59,0x66,0x43,0x3b, +0x65,0x66,0xb9,0xd1,0x02,0x67,0x9e,0xc8,0xb2,0xe0,0xef,0x67, +0x5f,0x2b,0xea,0x2d,0xe3,0x86,0x5c,0x48,0x97,0x60,0x6b,0xc2, +0xe2,0xa7,0x14,0xcd,0xc3,0x7c,0xd4,0x90,0x1b,0x58,0x50,0x6d, +0xcc,0x87,0x2d,0xba,0xef,0x42,0xae,0xe9,0xe8,0xec,0x6c,0xca, +0x9f,0x19,0x29,0xc1,0x29,0xd4,0xfc,0xeb,0x0a,0xf8,0xd3,0x55, +0x4e,0xf5,0xae,0xa5,0x9c,0xd0,0xb1,0x90,0x9c,0xaa,0x74,0x6a, +0x52,0x18,0xf5,0x7c,0xdc,0x25,0x3d,0xbb,0x8d,0x3e,0xbb,0x4d, +0x9b,0x39,0x1c,0x73,0x80,0x3e,0x9b,0x64,0x3a,0x1a,0xae,0x53, +0x60,0x5c,0xfa,0xa8,0x9b,0x70,0x6f,0x76,0xc1,0x69,0xa2,0x47, +0xdb,0x4e,0x9d,0x59,0x8f,0xd0,0x7e,0xea,0x51,0x93,0x1e,0xa0, +0x77,0x26,0xd2,0x3b,0x6d,0x7a,0x34,0xd2,0x0e,0xd0,0x48,0x2b, +0xde,0x5d,0x42,0x40,0x89,0x71,0xf6,0x2f,0xf6,0x3a,0x11,0xe3, +0x7c,0xd6,0xf1,0xac,0x4c,0x30,0xed,0x25,0x14,0x46,0x3a,0xf9, +0x25,0x45,0x48,0x26,0x2f,0x73,0x8e,0x71,0xa0,0x91,0x98,0x26, +0xf0,0x0f,0x47,0x0e,0x10,0xab,0x91,0xa0,0x56,0x7c,0xd5,0x25, +0xac,0x6e,0x13,0x57,0xf7,0x6a,0x19,0x8a,0x6a,0x96,0x82,0x9a, +0x09,0x2b,0xac,0xc7,0x8f,0xc8,0xae,0x21,0x98,0xf8,0xe6,0x0d, +0x4e,0x1c,0xfa,0x8c,0x85,0x69,0x58,0x43,0x84,0xef,0x60,0x81, +0x98,0xcc,0xe4,0x66,0x66,0x67,0x66,0xd0,0x3c,0x67,0xde,0xf2, +0x66,0x85,0x35,0xa8,0x32,0xa6,0xe6,0x1b,0xcc,0x71,0xba,0x5b, +0x8e,0x39,0x7f,0x27,0xf3,0x6a,0x51,0x6f,0x39,0x37,0x6c,0x42, +0x86,0x04,0x57,0x1d,0x16,0xef,0x63,0x26,0x81,0xe5,0xa8,0xd1, +0x69,0x60,0x4a,0x05,0xb3,0x1c,0xb6,0x1c,0xf9,0x8f,0x5c,0x24, +0x4b,0x92,0x82,0xc0,0x7b,0x19,0xc9,0xc1,0x49,0xc1,0x89,0x21, +0x34,0x30,0x9c,0xae,0x71,0x6a,0x70,0x2b,0xa7,0x92,0xc1,0x31, +0x84,0xe6,0xa5,0x56,0x7a,0xdd,0x4e,0x9f,0xde,0x25,0x3d,0xbd, +0x8d,0x3e,0xbd,0x4d,0x93,0x8a,0xe6,0x7f,0x65,0xb2,0xc0,0x51, +0xd1,0xec,0x84,0x08,0x72,0x14,0xd9,0xab,0x54,0x34,0x47,0x29, +0xdc,0x61,0x8e,0xd2,0x24,0x74,0x95,0xde,0x99,0x40,0xef,0xb4, +0x1e,0xa5,0xa2,0xb9,0xaa,0x10,0xcd,0x5c,0x02,0x63,0x98,0xe3, +0x01,0x49,0x61,0x29,0xd4,0xf0,0x64,0xc7,0xcf,0x4a,0x29,0x93, +0x13,0x4c,0x87,0x08,0x4c,0x61,0x1c,0x7c,0x93,0xc2,0x69,0x4e, +0x0a,0x95,0x29,0xf2,0x14,0x95,0x4f,0x8f,0x50,0x4a,0x5a,0x2e, +0xb4,0x5c,0x6c,0x89,0xe5,0xd0,0xa7,0x0b,0x02,0xd8,0xb2,0x8b, +0x65,0x71,0x65,0x71,0x19,0x0e,0x7c,0x63,0x56,0x40,0xcb,0xc9, +0x4e,0xef,0x7a,0x99,0x93,0x5f,0x72,0x40,0x92,0x7f,0x92,0x9f, +0xcc,0x36,0xda,0xfa,0xac,0xf5,0xd9,0x8e,0xa6,0xb6,0xae,0x9e, +0xab,0x8e,0x65,0xbc,0xf7,0x71,0x37,0xe7,0xe3,0x2e,0x21,0x19, +0x41,0x99,0x41,0x19,0x55,0x95,0xe5,0x75,0x65,0xcd,0xf6,0x45, +0xfc,0x49,0x47,0x77,0x27,0xd7,0x13,0x41,0x69,0x21,0xa9,0x61, +0x89,0xc7,0x4f,0xf0,0x75,0xae,0x8d,0x56,0x15,0xce,0xbe,0xfe, +0xf4,0x27,0x80,0x3b,0xef,0x7b,0xe6,0xfc,0x99,0x8f,0x84,0x97, +0xb0,0x9e,0xd4,0x9c,0x68,0xb0,0x29,0x77,0xf2,0x0b,0x38,0x23, +0xdd,0xf7,0xf3,0x3b,0xef,0xfb,0x51,0x82,0x45,0xf3,0x85,0xa6, +0x8b,0x4d,0xb1,0x32,0xf4,0xe9,0x51,0x34,0xa3,0x3c,0xae,0x3c, +0x2e,0x81,0x66,0xc4,0xf8,0xe0,0xc6,0x6c,0xde,0xb7,0xc5,0xab, +0xdd,0xab,0xd6,0xc9,0x8f,0xa7,0xbe,0x1d,0x90,0x14,0x60,0x1b, +0x65,0x73,0xd6,0xfa,0x5c,0x57,0x53,0x47,0x57,0x9f,0xd4,0x12, +0x4f,0x97,0xe3,0xce,0xce,0xce,0x21,0x19,0x81,0xb4,0x25,0xd5, +0x95,0x55,0xf5,0x95,0x2d,0xb4,0x25,0x9e,0x8e,0xae,0x8e,0xc7, +0x8f,0x07,0x65,0x04,0xa5,0x85,0x25,0xb9,0x7b,0xf0,0x58,0x6f, +0x01,0x0d,0x0c,0x66,0xc0,0x74,0x62,0x05,0xe1,0xad,0x2c,0x46, +0xe2,0x66,0x7a,0x15,0x45,0xaf,0x3e,0x18,0xd7,0x8a,0x51,0x94, +0x14,0x30,0x56,0x24,0xcf,0x3c,0xdd,0x22,0xc3,0x48,0x9e,0xc6, +0x07,0xf5,0xf8,0x75,0xf9,0xb6,0x70,0x42,0xad,0x3f,0x29,0x34, +0xcd,0x32,0xcf,0x31,0x68,0xcb,0xe2,0xfd,0xfa,0x7c,0x3a,0x4e, +0xb7,0x71,0x6f,0xca,0xcf,0x93,0x30,0x33,0x7f,0xfd,0x93,0x96, +0x72,0x7f,0xbe,0xa4,0x27,0xad,0x27,0xa5,0x8b,0x13,0xca,0x70, +0x25,0x29,0xe9,0xce,0xea,0x4a,0xeb,0xb4,0x48,0xe1,0x43,0xcc, +0xcf,0x18,0x9d,0xb4,0xe6,0x02,0x83,0x09,0xac,0xc4,0x73,0xb8, +0x92,0x05,0x43,0x18,0x43,0x0e,0xe0,0x82,0xdb,0x52,0x68,0x98, +0x4d,0xb2,0x83,0x72,0x02,0x72,0xfd,0x76,0xc5,0xac,0x8e,0x59, +0x7c,0x96,0xfb,0x1a,0xbe,0xa1,0xa0,0xf0,0x9b,0xe1,0xa3,0xda, +0xd4,0xc9,0xf6,0xc2,0xa7,0x1b,0x47,0x27,0xed,0xce,0x49,0x93, +0x76,0x06,0xa3,0x93,0x76,0x97,0xe0,0x64,0x46,0xae,0x5f,0x8e, +0x5f,0x46,0x40,0x4b,0x09,0x6f,0xdd,0x76,0x68,0xd8,0xac,0x9e, +0x13,0xef,0x01,0x4f,0x20,0x51,0xe3,0xdd,0xbc,0xe6,0x63,0x69, +0x5e,0x53,0x90,0xba,0xe7,0x1f,0x13,0x10,0xe3,0x4f,0x35,0xfe, +0x33,0x1a,0xb0,0x59,0x35,0x19,0xed,0x49,0x15,0xda,0x29,0x7c, +0x84,0x4b,0x80,0x49,0x80,0x1d,0x87,0xb3,0xde,0xac,0x63,0x4c, +0x23,0x93,0xb5,0x60,0x6b,0x11,0x2c,0x2f,0x83,0xf5,0x4d,0x32, +0xe1,0x28,0xfc,0x49,0x8e,0x31,0x09,0xf0,0xe1,0x25,0x69,0x8b, +0xf7,0x04,0x4e,0xfc,0x48,0x17,0xde,0x67,0x22,0x17,0x45,0xcc, +0x0d,0x9f,0xc3,0x2d,0xd5,0x79,0xc9,0x84,0xe1,0xe4,0x10,0x54, +0x0e,0xc1,0x09,0xdc,0x3a,0x1d,0xc1,0x6d,0x48,0x9d,0xfe,0xed, +0xf8,0x44,0x50,0x4e,0x00,0x65,0xee,0x06,0x33,0x47,0xe0,0xc8, +0xd9,0x0d,0xd1,0x38,0x36,0x12,0xc7,0x73,0x94,0xaa,0x27,0xfd, +0x99,0xf8,0x47,0xc2,0x6f,0x9c,0x78,0x7e,0x0b,0x11,0x7f,0x64, +0xcf,0xc4,0xf8,0x9c,0x3d,0x43,0xdb,0xf2,0x4f,0x16,0x76,0x88, +0x0f,0x89,0xe2,0xd7,0x18,0x4e,0xf8,0xee,0x0a,0x0b,0x63,0xc4, +0x3e,0x72,0x2c,0x44,0x49,0xb8,0x49,0xaf,0xbd,0xde,0xcc,0x25, +0xa9,0x30,0x21,0x19,0x94,0x93,0x61,0x32,0x07,0xdb,0x98,0x48, +0x9c,0x1c,0x81,0x1f,0x46,0xa2,0x12,0xa7,0x2c,0x04,0xc3,0x47, +0x24,0x20,0x3a,0x20,0x26,0x20,0x9a,0x13,0x5e,0xe2,0x5e,0x36, +0xa3,0x36,0x43,0x9e,0x54,0xa1,0x23,0xf5,0x29,0xc8,0x34,0xc0, +0x96,0x43,0x95,0x37,0x5b,0x19,0xf3,0x70,0xda,0xa7,0x75,0x15, +0x30,0xb7,0x1a,0x96,0x77,0xc8,0x84,0x53,0xf9,0xc4,0x33,0xc7, +0x2b,0xcf,0x2b,0x9f,0x4b,0x83,0x95,0x49,0xb0,0x07,0xd6,0xcd, +0x84,0x39,0xe2,0x4e,0x5d,0x58,0xa2,0xc7,0x6e,0x39,0xbb,0x37, +0x4a,0x53,0xd5,0xb1,0xcf,0x65,0xd0,0x6d,0xc8,0xe4,0x04,0xdf, +0xb4,0xbd,0x7d,0x57,0xf7,0x3e,0x4f,0x5c,0xa3,0x8f,0x13,0x17, +0xa2,0x72,0x93,0x31,0xff,0x0b,0x4c,0x1c,0x06,0xe5,0x0a,0x58, +0xdc,0x77,0x70,0xe8,0xe8,0xb0,0xc1,0x59,0x0f,0x7e,0x43,0xf8, +0x29,0xdf,0x83,0x1f,0x2d,0x67,0xb2,0xb5,0x94,0x9e,0x33,0x3f, +0xd4,0xd6,0xd2,0xbc,0xae,0x96,0x1d,0x98,0x13,0x94,0x1d,0xc4, +0x61,0x0e,0xbc,0x22,0x69,0xdf,0xc6,0xff,0xf0,0xcf,0x99,0x7d, +0xa0,0xbe,0x9e,0xc5,0x85,0x51,0xb8,0x26,0x14,0x67,0xaa,0xea, +0xf4,0xeb,0x5f,0x31,0xbe,0xc5,0x89,0xc1,0x90,0x43,0xc4,0x5f, +0x59,0xbf,0x18,0xff,0x18,0x3f,0x2a,0x89,0xbf,0x58,0x58,0x2d, +0x7e,0x4e,0xfc,0xa2,0xe9,0xaf,0x54,0x12,0xcf,0x7b,0xd9,0x57, +0x62,0x0f,0xf1,0x8b,0xf1,0x8b,0x96,0x7e,0xbd,0xd1,0xc7,0x2a, +0x83,0xdb,0xc8,0x13,0x62,0xbe,0x48,0x6b,0xd3,0xf6,0x03,0xf5, +0xa6,0xfc,0x93,0x07,0x37,0x7f,0xee,0xa4,0x7c,0xb8,0x51,0xbc, +0x43,0xb2,0x8d,0x72,0x8e,0x65,0x1d,0xde,0x1d,0xbc,0x33,0x74, +0x6b,0xc4,0x77,0x30,0xf9,0x17,0xd0,0xfd,0x0c,0x76,0x19,0x15, +0xf3,0x8e,0xeb,0x2c,0x57,0x98,0xae,0x3d,0x55,0xef,0x55,0xef, +0x55,0xd3,0xf1,0x5d,0xe3,0xf3,0xb2,0x6f,0x38,0xd8,0xd7,0x87, +0x9b,0x41,0xa6,0x83,0x32,0xdc,0x6a,0x40,0x93,0xb8,0xf7,0x6e, +0xe7,0x9d,0x4e,0x47,0x6c,0xbb,0x78,0x3b,0xab,0xbe,0x23,0x97, +0x37,0x77,0x6e,0x96,0xd9,0xed,0xb5,0xd1,0xb4,0x37,0x3c,0x73, +0xde,0xe7,0x9c,0xcf,0x79,0xa9,0x0c,0x2b,0x49,0x81,0x0f,0x33, +0x81,0x2b,0xcc,0xd8,0xc7,0xf7,0xe6,0x9d,0xf9,0x87,0x0b,0xb0, +0x27,0xbe,0x93,0xfd,0x24,0x64,0x12,0x3d,0x88,0x1f,0x60,0xdf, +0x38,0xe2,0x7e,0x62,0xb5,0x64,0x2b,0x4e,0xd6,0xd8,0x5d,0x6d, +0xc4,0x57,0x96,0x17,0x97,0xe7,0x97,0x73,0xe2,0xce,0x41,0x21, +0x96,0xad,0x6c,0x2f,0xef,0x2d,0xea,0xe5,0x84,0x79,0x4e,0xf4, +0x6f,0x55,0xc5,0x70,0x9c,0xc8,0xa6,0xea,0x28,0xfd,0xc6,0xb4, +0xe5,0x48,0xbb,0x9c,0xfc,0x1f,0x0f,0xd0,0x3e,0x99,0x8d,0x3c, +0x23,0x36,0x0b,0x0d,0x36,0xed,0x3d,0xd0,0x60,0xca,0x7f,0xfe, +0xf0,0xf2,0x3f,0x5a,0x5f,0x71,0xa0,0x4f,0x51,0x75,0x1e,0x4c, +0x50,0x02,0xed,0x3e,0x71,0x92,0x01,0xcc,0x60,0x7c,0x70,0x82, +0xd2,0x72,0x83,0x6f,0x19,0x77,0xdc,0xa4,0xa4,0x6e,0x28,0x2c, +0xea,0xd5,0x07,0x77,0xe6,0x6b,0xd8,0x41,0x74,0xe0,0x93,0x21, +0xf6,0x8d,0x2b,0x1a,0x10,0x87,0xa5,0x3b,0x71,0xca,0xce,0x5d, +0x35,0x46,0x7c,0x45,0x55,0x51,0x65,0x7e,0x25,0x27,0x1e,0x19, +0x14,0x0a,0xd9,0x92,0xd6,0xa2,0xce,0xdc,0x76,0x2a,0xa6,0x70, +0x42,0x81,0xd3,0x32,0xb6,0x0c,0x36,0x29,0x41,0xe4,0x71,0xa2, +0x0b,0x33,0xc4,0x50,0x1c,0xcb,0x66,0xe9,0x50,0xcd,0xb5,0x65, +0x4b,0x0d,0xf2,0xfd,0x69,0x90,0x15,0x7f,0x15,0xff,0x0f,0xcd, +0x2e,0xde,0x7a,0x03,0xf0,0x33,0x3e,0xc5,0x9f,0x59,0xa8,0x84, +0x56,0x82,0x9a,0xe8,0x0d,0x9a,0xac,0xf2,0xc8,0xac,0x91,0x0f, +0x08,0xa8,0xe2,0x46,0xf6,0x52,0x5e,0x7c,0x5e,0x5c,0x9e,0xc1, +0x25,0x3e,0xfa,0x14,0xe5,0xfd,0x52,0xba,0x37,0x93,0xf6,0x64, +0xba,0x85,0xb9,0x85,0xba,0x71,0x38,0xd6,0x4c,0xd8,0xdd,0xc1, +0x88,0x51,0x60,0x4d,0xac,0x16,0xe9,0x6c,0xda,0x75,0xa0,0xde, +0x8c,0xff,0xf2,0xe1,0xb5,0x9f,0xda,0x5f,0x73,0x82,0xce,0x09, +0xfa,0xee,0xb8,0x41,0x16,0xff,0x8f,0x0e,0xf9,0x98,0x36,0x28, +0xa5,0x2c,0xa9,0x22,0xa9,0x9c,0xc3,0x8b,0x38,0x99,0xd8,0x2e, +0xdb,0x8e,0xca,0x5b,0x77,0x57,0x1b,0xf3,0xe5,0x65,0x05,0xa5, +0x79,0x65,0x9c,0xb8,0x6d,0x40,0xb8,0xc0,0x56,0x76,0x94,0xf5, +0x17,0x52,0x39,0x12,0x43,0x82,0x23,0xb8,0x07,0x46,0x98,0x46, +0xd8,0x4d,0x45,0x3a,0x45,0x3c,0x49,0x45,0x9a,0xa6,0xad,0xf4, +0x27,0xd3,0xa4,0xd8,0x38,0xe6,0xfa,0xc5,0x00,0x8b,0x60,0x25, +0x2d,0xdd,0xf9,0x86,0x05,0xc0,0x08,0xd2,0x25,0x1a,0x9b,0x80, +0xc1,0x01,0x5c,0x87,0x5e,0xbd,0xb0,0xeb,0x0f,0x74,0xe8,0x07, +0x07,0x98,0x8c,0xec,0x16,0x36,0xd5,0x44,0xe9,0x0e,0x53,0x97, +0x9e,0x51,0xa7,0x06,0x1b,0x70,0xd7,0x6d,0xaa,0x0a,0xa3,0x91, +0xa7,0xc4,0x66,0x91,0xd1,0xa6,0x7d,0xfb,0xeb,0xcd,0xf9,0x87, +0x0f,0x87,0xfe,0xd1,0xf2,0x8a,0xab,0xa0,0x62,0xfb,0x09,0x8c, +0xe0,0x27,0xb6,0x5e,0x85,0x5e,0x58,0xd0,0x8b,0xd6,0x20,0xfa, +0x6a,0x3d,0xaa,0xf9,0xf7,0xd7,0x93,0xa1,0x5f,0x29,0xc4,0xe4, +0x55,0x86,0xfe,0xa0,0x09,0xef,0xc5,0x52,0x32,0xfc,0xab,0xb6, +0xf4,0xeb,0xf0,0x1f,0xda,0xac,0x68,0x1a,0x49,0x1c,0x97,0xed, +0xc6,0xa9,0xbb,0x76,0xd5,0x98,0x50,0x95,0x14,0x56,0xe6,0x55, +0x71,0xe2,0xb1,0x7e,0xa1,0x80,0x2d,0x69,0x2b,0xec,0xa2,0x2a, +0xb9,0xb6,0x8b,0x5c,0xfb,0xf5,0x88,0xf4,0xf7,0xd7,0xfe,0x38, +0xc2,0x7e,0x59,0x49,0x74,0x7f,0x12,0x43,0xd4,0xd9,0x4c,0x3d, +0xa5,0xab,0x4c,0xab,0xc2,0x42,0x4e,0x5f,0xa3,0x62,0xba,0x28, +0xea,0x51,0x82,0xbc,0xfe,0x01,0xac,0xa7,0x9f,0xf7,0xa4,0x75, +0x8e,0x3b,0xd8,0xb4,0xec,0xb4,0xfc,0xe4,0x7c,0xf3,0x0c,0x3e, +0xdc,0xdb,0xdf,0xd3,0xd7,0x9b,0xc3,0x99,0x4c,0x6a,0x4e,0x72, +0x5e,0x52,0xbe,0x59,0x1a,0xef,0xa1,0x69,0xbe,0x4f,0xc7,0xa0, +0xd0,0x82,0xcf,0xc9,0xca,0xce,0xcb,0xca,0xe7,0xf0,0x4d,0x7f, +0x93,0xf0,0x41,0x07,0x1e,0xfc,0x46,0x2a,0x8c,0xbe,0x85,0xdc, +0x83,0xe5,0x7b,0x58,0x5c,0x4e,0xa5,0xfd,0x00,0x96,0xef,0x64, +0x2d,0xc6,0x6d,0xc4,0xe5,0xdf,0xb0,0xca,0x82,0x0a,0x3c,0x20, +0x15,0xf2,0xc2,0xa6,0xfc,0x76,0xcb,0x12,0xde,0xd7,0xd2,0xd7, +0xde,0xc3,0xf6,0x44,0x0d,0x1f,0x91,0x18,0x16,0x1b,0x12,0x12, +0x1e,0xce,0x47,0xa7,0x32,0x1d,0x57,0x7b,0x9f,0x17,0x3d,0xe7, +0x5a,0x29,0x8e,0x5a,0xa9,0x85,0x2b,0x71,0x91,0x2e,0xe4,0xb2, +0x8e,0xa8,0xbc,0x0c,0x55,0x29,0x66,0x1f,0x5f,0x6d,0xc2,0x5f, +0x96,0x77,0xb5,0xd5,0x35,0x73,0xe2,0x92,0xcb,0xc2,0x26,0x36, +0x21,0xee,0x42,0x6c,0x8c,0x2a,0x7c,0x84,0x2b,0x9a,0x5b,0x94, +0x84,0x69,0xc2,0xb7,0x64,0xf5,0x22,0xfc,0x70,0x33,0x2e,0xd5, +0xad,0x38,0xca,0xc3,0xaa,0xcb,0x30,0xfb,0xc5,0x4f,0x7f,0x70, +0xde,0xe8,0x4e,0x56,0x2c,0xc4,0x79,0xcb,0x71,0xcd,0xb1,0x8a, +0xc3,0x3c,0x68,0xdc,0x81,0xc5,0xaf,0x7e,0x85,0xf7,0xb8,0x70, +0xf4,0x21,0x38,0x19,0x3f,0xc4,0x5d,0x38,0x1e,0x1d,0xf7,0x57, +0x6a,0xf2,0x70,0xfc,0x3e,0x1c,0x86,0x0f,0x60,0x1a,0xcc,0xa2, +0xd1,0x2f,0x4f,0x78,0x4d,0x5e,0xc2,0x1f,0x7d,0xf8,0xc7,0x57, +0x87,0x37,0xe3,0x33,0x03,0x78,0xb6,0x4a,0x5c,0xa6,0xff,0xd7, +0xb4,0x7e,0x16,0x83,0xc5,0x58,0x72,0xbb,0xe2,0x72,0xdd,0xa0, +0xdc,0xa6,0x81,0xd7,0x37,0x3f,0xe2,0xb8,0xff,0x84,0x55,0xd3, +0x71,0xb9,0x67,0x1f,0x07,0xb9,0x60,0xf9,0x66,0x25,0x95,0x43, +0x22,0xb3,0x61,0x1f,0x4e,0xd3,0xc5,0x2d,0x76,0xf9,0x86,0xfc, +0x93,0xdc,0x07,0xc5,0x37,0x2b,0x38,0x9c,0xc1,0xda,0x44,0x59, +0x45,0x5b,0x44,0xa7,0xe8,0xf2,0xb0,0x27,0x17,0x16,0x17,0xc3, +0xd4,0xf2,0xc8,0x5e,0x7e,0x9b,0xdf,0xc6,0xc0,0x95,0x41,0x1c, +0xac,0x64,0x87,0xab,0x3a,0xeb,0x1b,0x9b,0xb8,0x38,0xe6,0x36, +0x7e,0x0c,0x33,0x90,0x03,0x9f,0xdd,0x25,0xdd,0xfc,0xe2,0xaa, +0xad,0xf5,0x47,0xe4,0xdc,0x10,0x7c,0x45,0x96,0x88,0x4d,0xbf, +0x50,0x59,0x46,0x8c,0xb4,0x91,0xf6,0xb9,0xa0,0xba,0x07,0x92, +0xf7,0x14,0x0c,0xf3,0x78,0xe1,0x1a,0x4e,0xfb,0x54,0xfb,0x3b, +0x6e,0x2f,0xa3,0xbd,0x0e,0xc7,0xef,0xc3,0xa8,0x23,0x05,0x34, +0xb0,0x7c,0x72,0x0f,0x66,0xdc,0x6b,0xff,0x83,0xc3,0x0d,0x78, +0x9c,0xc0,0x2f,0xdd,0xf8,0x0b,0x03,0x02,0xde,0x21,0xbd,0x2d, +0x57,0xaf,0xd6,0xf6,0x72,0x2d,0x6f,0xf6,0x1a,0x0a,0xbf,0xb0, +0x1e,0x2e,0x36,0xf6,0xd6,0xce,0x1c,0x78,0x20,0x4b,0xf4,0x2d, +0x8e,0xd2,0xbe,0x38,0xd4,0xba,0x36,0x79,0xc9,0x39,0x41,0xa9, +0x5f,0xdc,0xfe,0xeb,0x91,0xc5,0xa2,0xaa,0x3e,0xfc,0xc0,0x6c, +0xa2,0x70,0xc7,0x04,0x57,0x38,0xd2,0xee,0x7c,0x99,0x7b,0xbf, +0xf0,0x3a,0xf5,0xa8,0x0f,0x59,0xbb,0x28,0x9b,0x18,0x6b,0x45, +0x77,0x76,0xe5,0xc2,0xa2,0x22,0x98,0x22,0x75,0x67,0xab,0xdf, +0x86,0x80,0x15,0xb4,0x3b,0xcb,0xd8,0xde,0xb2,0xb6,0xca,0xfa, +0x5a,0xae,0x94,0xb9,0x43,0x19,0x15,0xc1,0x31,0xe0,0xba,0x9f, +0x76,0x67,0x49,0xe5,0xb6,0xba,0xa3,0xf2,0x5b,0x95,0x97,0x6b, +0x07,0xa4,0x95,0xce,0x79,0x23,0x41,0xe4,0xd9,0xe1,0xb5,0xe2, +0x72,0xfd,0xbf,0x3e,0xe8,0x67,0x57,0x8b,0x91,0xb4,0x15,0x47, +0x1c,0x0f,0x9c,0xb0,0x69,0x70,0x69,0xf3,0xea,0xe6,0x20,0x04, +0xcc,0x98,0xe6,0x53,0xf2,0xd3,0x1d,0x7e,0x05,0x7d,0x3c,0x32, +0xad,0x1b,0xbb,0x35,0xee,0x72,0x78,0xcb,0x10,0xea,0x98,0xba, +0x13,0x2d,0x6e,0xed,0x9e,0x9c,0xd8,0xca,0xd4,0x16,0xd6,0x16, +0x57,0x95,0xdb,0xb7,0xf0,0xfb,0x8e,0xae,0xd5,0x5b,0xe2,0x5c, +0x62,0xc8,0xb7,0x65,0xb5,0xe6,0x49,0x43,0x1d,0xd2,0xc2,0x07, +0xf5,0x83,0x38,0x55,0x1f,0x37,0xda,0x8f,0xb6,0xbd,0xe8,0x46, +0xd9,0xbb,0xb6,0x5b,0x29,0xda,0xbe,0xfb,0xbf,0xdb,0xbe,0x9c, +0xb6,0x7d,0x29,0x3b,0x5c,0xd9,0x55,0x47,0x55,0x91,0x4c,0x55, +0xb1,0x12,0x54,0x90,0x81,0x93,0x7b,0x15,0x6d,0xdf,0x4a,0xdb, +0x7e,0xbb,0x62,0xb8,0x8e,0xb6,0x9d,0xea,0xc8,0x93,0xe0,0xfb, +0xe2,0x49,0x78,0x9f,0xea,0x64,0xbe,0xe0,0x45,0xfc,0x6c,0xfc, +0x1c,0xbd,0xed,0xdd,0xab,0xf8,0xc8,0xc4,0xb0,0xb8,0x51,0xb3, +0x4e,0x63,0xda,0xaf,0x76,0x3e,0x2b,0x94,0xcc,0x5a,0x19,0x56, +0x6a,0x53,0xb3,0x56,0xd3,0x85,0x44,0xd6,0x19,0x27,0xaf,0xa2, +0x66,0xbd,0x0e,0x27,0x54,0x19,0xf3,0x83,0xf2,0xf6,0xb6,0x9a, +0x26,0x4e,0x5c,0x74,0x59,0x50,0x67,0x13,0x62,0x2f,0xc4,0x45, +0xab,0x82,0x32,0x2e,0x6c,0x6e,0x3e,0xf0,0xa8,0xbc,0x25,0xbf, +0x21,0x4f,0x2e,0x2b,0x13,0xf3,0xc9,0xb5,0x2f,0xe1,0xde,0x96, +0x6b,0x23,0xaf,0x44,0x1d,0x69,0x52,0xe5,0x15,0xc1,0x7b,0xd0, +0x06,0xf7,0x18,0xbc,0x87,0xaf,0x09,0xdc,0xc3,0xdb,0x78,0x8f, +0xe2,0x10,0x86,0x7a,0x59,0xa5,0x3c,0xbf,0x29,0xbf,0xc3,0xaa, +0x98,0xf7,0xb3,0xf4,0x75,0xf0,0xb4,0x71,0xab,0xe6,0x23,0x92, +0xc2,0x62,0x43,0xff,0x6e,0x4e,0xf7,0x68,0x73,0xa6,0x8e,0x7a, +0xd9,0x5c,0x5d,0x48,0x65,0x9d,0x70,0xf2,0x4a,0xda,0x9c,0xf5, +0x8a,0xe6,0x0c,0xc9,0x3b,0xe4,0x52,0x73,0x16,0xbf,0x6b,0x0e, +0xf5,0x32,0x32,0xea,0x65,0x69,0xb0,0x97,0x60,0x22,0xc8,0x99, +0x07,0xe9,0xf7,0x73,0xaf,0x16,0xb9,0x52,0x8d,0x7c,0x68,0x82, +0x5b,0xbc,0x70,0x73,0x50,0xba,0x16,0x7f,0xed,0xd2,0xdd,0xc4, +0x3b,0x29,0x1c,0x56,0xa3,0xa1,0x16,0x25,0x67,0x2f,0xd0,0x43, +0x4b,0x48,0xbe,0x8c,0x7e,0xf0,0x82,0xf6,0x58,0x59,0x88,0x1f, +0x79,0x4c,0xac,0x51,0xc3,0x10,0x65,0xbb,0xe7,0xf9,0xa7,0xf1, +0xc1,0x6e,0x41,0x9e,0x81,0x9e,0xfe,0x85,0x7c,0x54,0x62,0x78, +0x5c,0x68,0x68,0x58,0x18,0x1f,0x93,0xc1,0x34,0x5d,0x6b,0x7e, +0x9a,0xf7,0x94,0x93,0xcf,0x83,0x15,0x7a,0xd2,0x9c,0x91,0x3e, +0xb8,0xb0,0x1e,0x38,0x71,0x0b,0xce,0xc1,0x99,0xa8,0x5c,0x61, +0xcc,0xcb,0xe5,0x75,0xcd,0x65,0x8d,0x9c,0x38,0x77,0x40,0x58, +0x2f,0x35,0x2e,0x36,0x4a,0xf5,0x77,0x5c,0xd2,0xd8,0x70,0xf8, +0x65,0x66,0x71,0x46,0x51,0x5a,0x89,0x2c,0xcb,0xad,0xb0,0xa6, +0xa0,0x21,0xa7,0x51,0x26,0x5e,0x19,0x1a,0xd9,0xc2,0x16,0xdf, +0x28,0xfc,0x2c,0xef,0x4b,0x4e,0xf8,0x48,0x5c,0x45,0xd3,0x0c, +0x34,0x33,0x7d,0xd9,0x3d,0x05,0xed,0xc5,0x6e,0xd4,0xad,0x0c, +0x70,0xb2,0x23,0x4e,0xf5,0x49,0xd3,0xe1,0x3b,0x13,0xbb,0x52, +0xba,0x28,0xbf,0x2f,0xc0,0x3d,0x3a,0xb0,0x07,0x9f,0xe3,0xc7, +0xc7,0x84,0xa9,0x57,0x50,0x1d,0x9e,0x4b,0x59,0x49,0x18,0x2b, +0xf8,0x12,0x7f,0x4b,0x3f,0x87,0x93,0x76,0x27,0x2b,0x68,0x6b, +0xa9,0x2c,0x43,0xc3,0xc2,0xf9,0x98,0x34,0xa6,0xf5,0x5a,0xdb, +0xb3,0x82,0x67,0x5c,0x9b,0x34,0xc5,0xa5,0x4b,0x9b,0xfb,0x81, +0x1e,0x04,0xb3,0xae,0x38,0x79,0x3d,0xaa,0xe1,0x22,0x9c,0x58, +0x69,0xcc,0xf7,0xc8,0x9b,0x5a,0x2a,0x69,0xc4,0x5a,0x38,0x24, +0x6c,0x78,0x27,0x4b,0x06,0x97,0x35,0x35,0x1e,0xfc,0xa6,0x4c, +0x9e,0xdf,0x92,0xd7,0x21,0x83,0x56,0xf8,0x99,0x60,0x94,0x3e, +0x1c,0xa6,0x3d,0x3c,0xf1,0x66,0xdf,0xf0,0xc8,0x64,0x58,0x23, +0x95,0x8d,0xb6,0x43,0x6e,0x1e,0x4e,0xa8,0xd5,0xe6,0x7f,0x84, +0x09,0xf5,0xdf,0xc7,0xc3,0x54,0x2e,0x81,0x89,0xc7,0xf1,0xf5, +0xeb,0x5f,0xe2,0x07,0xd5,0x83,0xfc,0x02,0x98,0xe6,0x08,0xef, +0xc7,0x50,0xdc,0x08,0xeb,0xc4,0x5e,0xdc,0xa8,0x28,0x1b,0xad, +0xca,0xb4,0xe5,0xe6,0xca,0xd5,0x84,0xdf,0xd0,0x9d,0x52,0xd6, +0x99,0xc2,0x34,0x02,0x95,0xe8,0x00,0x7b,0x8e,0xe2,0x1e,0x74, +0xd2,0x01,0x27,0x3c,0xcc,0x06,0x7f,0x12,0x7c,0x3e,0x44,0x15, +0x03,0xb5,0xe1,0x14,0xe3,0x8d,0xb3,0xd6,0x2e,0x46,0xbd,0x79, +0x15,0x34,0x5a,0xe8,0xc1,0x38,0x60,0x41,0x39,0x8e,0x06,0xbf, +0x04,0x26,0x05,0x55,0x5e,0xe0,0x04,0xf8,0x18,0x95,0xeb,0x86, +0x78,0x4a,0x8f,0x94,0x36,0xbd,0xf4,0xa2,0x5f,0x40,0xc6,0x30, +0xf3,0x66,0x8c,0x36,0x91,0x9a,0x9e,0xdb,0x61,0x53,0xc4,0xff, +0x3f,0xa4,0x92,0xca,0xb4,0x5c,0x93,0x3f,0xcb,0x7f,0x4e,0xa5, +0x32,0x0e,0x56,0xe8,0x50,0xa9,0x4c,0xd3,0x83,0x20,0x2a,0x95, +0x49,0xeb,0xa9,0x12,0x17,0xbe,0x93,0x4a,0x6b,0x25,0xb5,0xb0, +0x85,0x83,0x92,0x54,0x46,0xe3,0xb8,0x92,0x24,0x15,0x25,0x68, +0x10,0xde,0x97,0x0a,0x7f,0x7a,0xe1,0x62,0xe6,0x7c,0xea,0x27, +0x69,0x69,0x33,0x95,0xe1,0x4f,0x78,0x48,0x4a,0x5b,0xf2,0x1a, +0x72,0x5b,0x6d,0x8a,0x79,0x7f,0x5b,0x7f,0xa7,0x53,0x8e,0x5e, +0x15,0xff,0x76,0xb1,0x98,0x74,0xa6,0xed,0x6a,0xfb,0xd3,0x02, +0xe9,0x8d,0xe3,0x61,0x85,0x36,0x7d,0xe3,0x0c,0x5d,0x38,0xcb, +0xba,0xe0,0xe4,0xb5,0xd4,0xa6,0x57,0x28,0xde,0xd8,0x2f,0x6f, +0x6d,0xad,0x92,0xde,0x38,0x2c,0x6c,0x54,0x98,0x0d,0x75,0xb1, +0xc9,0xf4,0x8d,0x4d,0x4a,0x10,0x26,0x74,0x91,0x92,0xc5,0x2f, +0x97,0x53,0x3a,0xf8,0x5e,0x4d,0x3f,0x8f,0x0b,0x5e,0xad,0xfa, +0xc1,0xe1,0x07,0xee,0x00,0xe3,0xb2,0x76,0xf7,0x32,0x9c,0xbd, +0xbc,0xd6,0x90,0x32,0xc2,0x9f,0x3f,0xff,0xbe,0xe4,0x35,0xd7, +0x87,0x86,0xe4,0xf0,0xd6,0x39,0x5b,0xf0,0x7d,0xcb,0x12,0x63, +0x1e,0xc6,0x75,0xc2,0xfb,0x9f,0xdf,0xff,0x9e,0xc3,0x41,0x91, +0xb2,0xfd,0x25,0x57,0x60,0xe9,0xef,0xbf,0xc0,0x54,0xdb,0x3a, +0x7e,0x03,0xed,0xe8,0x3c,0x5c,0xaa,0xc3,0x25,0x62,0x3e,0x01, +0xa3,0x9b,0xa0,0x43,0x93,0xca,0x14,0xd8,0x68,0x59,0xcb,0xe3, +0x58,0x2a,0x83,0xc3,0xf8,0x01,0xea,0x6b,0xd1,0xe0,0x37,0x05, +0xae,0x49,0xbb,0xc2,0x46,0xdd,0xd5,0x57,0x72,0x57,0x5b,0xd7, +0x6a,0x45,0x52,0x0c,0x0d,0x19,0x15,0x66,0xc7,0xd5,0xee,0xe7, +0x0a,0x77,0xfd,0x60,0x34,0x7a,0xcc,0xd7,0x85,0x0c,0xea,0xae, +0xca,0x2b,0x68,0xd7,0xd4,0x71,0x7c,0x95,0x09,0x3f,0x2c,0xef, +0x6c,0xab,0xfd,0x3b,0x29,0xc6,0x7e,0x22,0x99,0xd8,0x0c,0x85, +0xbb,0x76,0x0a,0x9f,0x93,0x37,0xac,0xb0,0x78,0x84,0x65,0xf1, +0x25,0x96,0x12,0x70,0x85,0x72,0x74,0x65,0xb1,0x1c,0xe5,0x04, +0x82,0xe9,0x75,0x30,0x2b,0xae,0xc7,0x06,0x22,0x14,0x5f,0x16, +0x8b,0x19,0xe5,0xbf,0x8e,0x8d,0xac,0x23,0xe2,0x3a,0x26,0xb7, +0x37,0xa3,0x2f,0xa9,0x53,0x2b,0x8d,0x0f,0x58,0x65,0x85,0x9c, +0xee,0xc7,0x9d,0xb6,0x7c,0x7e,0x4d,0x6e,0x7d,0x76,0x83,0x54, +0xa0,0x5c,0xc0,0x25,0x4c,0x96,0xb6,0x12,0x4c,0x67,0xe4,0x79, +0x79,0xed,0x6a,0xc2,0xaf,0xe0,0xc3,0x8a,0x4f,0xb1,0x85,0x76, +0x83,0x46,0x9d,0x4e,0x29,0xea,0x58,0xf8,0x39,0x78,0xd9,0x7a, +0xfc,0x67,0x10,0x4c,0x65,0xe4,0xd7,0xde,0x06,0xc1,0xc9,0xb0, +0x52,0x87,0x76,0x63,0x96,0x1e,0xc4,0x4a,0x1a,0x5a,0x4d,0x3d, +0x65,0x35,0x4e,0xa8,0x94,0x82,0x60,0x5b,0x6b,0x35,0xed,0xc6, +0xa2,0x61,0x29,0xea,0xc4,0x7d,0x22,0xd9,0xc4,0x44,0x5c,0xd8, +0xd4,0xac,0x24,0xf0,0xe0,0x4d,0xaa,0x51,0x56,0x8f,0x07,0xd2, +0x70,0xea,0x95,0x5c,0x3e,0x08,0x94,0x9d,0xe0,0x80,0x13,0x7c, +0xc4,0x89,0x63,0x43,0x88,0x1f,0xaa,0xba,0xa0,0x9a,0x16,0x4e, +0xea,0xb7,0xe5,0xaf,0x03,0x4f,0x79,0x48,0x0e,0xcc,0xe7,0x94, +0x47,0xac,0x46,0x0e,0x93,0xac,0xd6,0xb4,0x8e,0x94,0x8e,0x23, +0xc9,0x7c,0xa8,0x51,0xa0,0x91,0xbf,0x05,0x87,0xab,0xdf,0xa4, +0x5c,0xbd,0x03,0x83,0xfb,0xaf,0x8e,0xa4,0x30,0x62,0x3a,0x3a, +0x13,0x1a,0x23,0xed,0xa9,0xd0,0x6b,0xa4,0xd6,0xfe,0x8d,0x44, +0xda,0xdf,0x09,0xfd,0x6d,0x8c,0x9c,0xa7,0x0b,0xe9,0xef,0x84, +0xbe,0xe1,0xad,0xd0,0xdb,0xdb,0x6a,0xff,0x47,0x8c,0x54,0x91, +0x84,0xbe,0xfb,0xf1,0xa8,0x3e,0x65,0x7f,0xee,0x25,0x10,0x07, +0x83,0x18,0xc7,0xe2,0x20,0x7e,0x47,0xa0,0x9c,0x5e,0x97,0x4b, +0x07,0xce,0x2b,0x22,0x74,0x41,0x73,0x5e,0xa7,0x55,0x91,0x14, +0xa1,0xed,0xff,0x96,0xd5,0xa8,0xca,0xd3,0xa8,0xac,0x3a,0x9e, +0xfe,0xa7,0xac,0x66,0x53,0x22,0x40,0x13,0x86,0xf2,0x6a,0xfa, +0xf6,0x35,0xef,0x64,0xf5,0x9f,0x09,0x43,0x21,0xab,0xb1,0x38, +0xab,0x99,0x5a,0x73,0x67,0x14,0x81,0x1d,0xe0,0x31,0x8c,0x1e, +0x30,0xa2,0x45,0xd1,0xec,0x21,0x6d,0x38,0x84,0x3b,0x30,0x5c, +0x1b,0xc2,0x31,0xf3,0x32,0x64,0x42,0xcc,0x30,0xeb,0x01,0xbd, +0xe4,0xd4,0x33,0x97,0xe7,0x76,0x8f,0x8d,0xbc,0xf9,0x06,0xf5, +0xaa,0x95,0x79,0xeb,0x39,0xfc,0x01,0x1a,0x89,0xbf,0xba,0xfb, +0x2a,0x8b,0x5d,0xdd,0x4e,0xbc,0xfc,0x71,0xe5,0x8b,0xac,0x1f, +0x39,0xe5,0xbf,0x98,0x78,0x82,0x35,0x8c,0x76,0x48,0xda,0x35, +0x35,0x30,0x86,0x50,0x68,0xc4,0x02,0x36,0xbf,0x26,0xa7,0x5e, +0x2a,0x88,0x7c,0x9d,0xc1,0x5d,0xe7,0x96,0x45,0x6e,0x54,0x3d, +0x14,0x19,0xe4,0x63,0xf2,0xd1,0x0e,0xa9,0x20,0xf2,0x5d,0xe6, +0x51,0x4d,0xed,0xcf,0xc9,0x6a,0x49,0x3f,0x5d,0x7c,0x05,0x27, +0x67,0xe2,0x2b,0x26,0x45,0x51,0x10,0x59,0x37,0x93,0xf7,0x44, +0xce,0x6c,0xee,0x9e,0x75,0x72,0x0b,0x5e,0x5a,0xd5,0x99,0x9c, +0xce,0x89,0x46,0xec,0x82,0x02,0x8f,0xd7,0xaa,0x50,0xc4,0x74, +0xe6,0xe4,0xb6,0x4b,0x5b,0x32,0x74,0xb2,0x94,0x28,0xaa,0x7f, +0x46,0xb5,0xe2,0x47,0xe5,0xe2,0xa9,0x90,0xcb,0xdf,0xd1,0x56, +0x7e,0xb5,0x5d,0xb2,0xa1,0x36,0x9c,0x38,0xea,0xe5,0x32,0x5d, +0xf8,0x44,0xb2,0xa1,0x8f,0xa9,0x0d,0xad,0x52,0x64,0xae,0xfe, +0xf6,0xd6,0x96,0xb7,0x36,0xb4,0xf1,0x9d,0x56,0x94,0x71,0x79, +0x53,0xd3,0xbe,0xaf,0xcb,0x25,0x91,0xd3,0x68,0x5b,0xd5,0x4d, +0x70,0x3f,0x1e,0x80,0xfd,0xac,0x04,0x3d,0x2e,0x91,0xfb,0x87, +0x77,0x8b,0xcb,0x8c,0xff,0x9a,0xda,0xcd,0x8a,0x8e,0xe2,0x6d, +0xf2,0x2d,0x15,0xfa,0x82,0xb5,0xe0,0xa5,0x5f,0xd8,0xc9,0x2f, +0x28,0x54,0xaf,0xd8,0xdf,0x70,0xb7,0xfc,0x7a,0xed,0x60,0xb3, +0x4d,0x2d,0xaf,0x63,0xbd,0xcf,0x61,0xb7,0x9b,0x49,0x8d,0x5d, +0xd3,0x89,0xb6,0xe4,0xc4,0xe4,0xa4,0xa4,0x44,0xbf,0x54,0xbe, +0x28,0x3e,0x25,0xb3,0x74,0x26,0x4c,0x85,0x32,0xd6,0xce,0xe1, +0x98,0xb5,0xf6,0x89,0x66,0x3b,0xfe,0xcb,0xf6,0x2f,0xaf,0x36, +0xf5,0x71,0x8d,0xf8,0x13,0xeb,0x9b,0xfa,0xb2,0xfc,0xc7,0x8e, +0x2b,0xad,0xb2,0xfa,0x37,0xb3,0xcc,0x84,0x7a,0xd6,0xc8,0x7d, +0x97,0xeb,0x81,0x53,0xc6,0xa5,0x06,0xc5,0xe6,0xb9,0x0e,0x4e, +0x7c,0xef,0xc9,0x21,0x8f,0x6e,0x0a,0x60,0xb6,0x98,0x08,0x93, +0x99,0xfd,0x7a,0xa8,0x6a,0x88,0x07,0x9c,0x8a,0x68,0x64,0xd1, +0x69,0x01,0xbd,0x07,0xcd,0x8f,0xb8,0x04,0x1a,0x28,0x38,0x26, +0xcd,0x4c,0xe9,0x21,0xb3,0x64,0x27,0x2e,0xd2,0x47,0x23,0xfb, +0x7c,0x63,0xfe,0xfb,0xec,0x27,0xf9,0x9f,0x51,0x10,0xc3,0xb2, +0x66,0x51,0xc6,0xd1,0x06,0xd1,0x29,0x34,0x42,0xed,0xc9,0x86, +0x79,0xf9,0xa0,0x5c,0x1a,0xd5,0xc1,0xef,0x0d,0xdc,0x11,0xbc, +0x31,0x94,0x83,0x19,0x6c,0x7d,0x76,0x6d,0x4e,0x65,0x3e,0xf5, +0x85,0x6f,0x46,0xa6,0x91,0xd8,0x9e,0x8b,0xfd,0xc3,0x33,0xdf, +0x2c,0x67,0x62,0x8c,0x22,0xf5,0xc2,0x75,0x38,0x9c,0x6c,0x0a, +0xe3,0x98,0x30,0xed,0x60,0x9d,0x40,0x7d,0x6e,0x64,0x1a,0xe3, +0x1c,0xe6,0x17,0x6e,0xf9,0xd1,0x3a,0x26,0xc3,0x4c,0xe9,0x25, +0x73,0xad,0xae,0xf0,0x6a,0x9a,0xda,0xc5,0x0b,0x17,0x2f,0xce, +0x84,0xf7,0xbb,0x16,0x33,0x97,0xea,0xe3,0x1b,0xe3,0x5a,0x39, +0x60,0x3a,0x19,0x4a,0x6f,0x59,0x72,0xde,0xee,0xbc,0xc3,0x59, +0x47,0x4e,0xec,0x63,0x2e,0x35,0xc4,0xd7,0xc7,0xd5,0x73,0xc2, +0x98,0x03,0x44,0xa7,0x78,0x6b,0xc9,0xb1,0x34,0x57,0xea,0x86, +0x01,0x9f,0x9f,0x1e,0xf4,0xe0,0xc4,0xe9,0xb8,0x8f,0x24,0xd5, +0x27,0x35,0x25,0xb6,0x70,0xc2,0x10,0x13,0x63,0x19,0x6d,0x1b, +0xe5,0xc4,0x89,0xcb,0x1e,0x91,0x5b,0x7e,0xdf,0xba,0x0f,0x78, +0x54,0x36,0xf3,0xfa,0xc5,0x1f,0x57,0x1e,0xce,0xe4,0x04,0x1b, +0x44,0x62,0x68,0x7d,0xd4,0x79,0xbf,0xab,0x4d,0xad,0x4b,0x93, +0x67,0x07,0x27,0x4c,0xe9,0x15,0xb7,0x3d,0x3e,0xa2,0x21,0x2e, +0x30,0x04,0x91,0x51,0x3f,0x8a,0x53,0x4d,0x50,0xdd,0x39,0xcf, +0x88,0xff,0x32,0xfb,0x7e,0xfe,0xf5,0x12,0x0e,0x19,0xd6,0x5e, +0x5a,0xca,0x17,0x93,0xa2,0xcf,0xc3,0xce,0x6c,0x69,0xce,0x86, +0x76,0xbe,0x9b,0xdf,0x1a,0xb0,0x3e,0x70,0x79,0x30,0x07,0x33, +0xd9,0xcb,0xe5,0x3d,0x35,0x4d,0x0d,0x5c,0x22,0x45,0x9f,0xf3, +0x40,0x65,0x2e,0x9c,0xd2,0x2c,0xea,0xe2,0x97,0x96,0x6d,0xab, +0x3e,0xda,0x74,0xb3,0x6c,0xb8,0xba,0xaf,0x85,0x53,0x86,0x1f, +0xe1,0x3e,0x29,0x6b,0xcb,0x6b,0xa6,0x74,0x29,0x40,0x28,0x1f, +0xc0,0x48,0x58,0x09,0xae,0x03,0xe8,0x0a,0xb3,0x8e,0xe2,0x2c, +0xb4,0xd4,0x03,0x4b,0xea,0x7f,0x01,0x2e,0xac,0x5d,0x21,0xcd, +0x74,0xf6,0xde,0xb6,0xb2,0x93,0x15,0x91,0x89,0xe1,0xd4,0x22, +0x65,0x61,0xe1,0x4a,0x34,0xf1,0xb4,0x5e,0x93,0xbf,0x50,0xa4, +0x3a,0x06,0x56,0xe9,0x50,0x23,0xfc,0x50,0x0f,0x42,0x69,0xaa, +0x9b,0xb2,0x1e,0xe7,0xe1,0x12,0x9c,0x4c,0x5d,0xb5,0xb7,0xbd, +0xb9,0x55,0x02,0x00,0x8b,0x87,0x04,0x8d,0x77,0xae,0xca,0xe1, +0x4a,0x29,0xd5,0x75,0x38,0x10,0xf0,0x19,0x44,0x1f,0x50,0x3b, +0x4a,0x2d,0xd8,0x59,0x17,0x9c,0x29,0x0f,0x3e,0xab,0x23,0xf4, +0x0c,0xe1,0x45,0x0a,0xe5,0x72,0x46,0x9e,0x93,0x13,0xa8,0xab, +0x8f,0xcb,0xd5,0x91,0xab,0x37,0xe1,0xf3,0x4a,0x0a,0x6a,0xf3, +0x5b,0x38,0xb1,0x60,0x70,0x64,0x11,0x5b,0xf2,0xa0,0xf0,0xdb, +0xf4,0x97,0x1c,0x5e,0x12,0xc7,0x90,0x20,0xc7,0x80,0xe3,0x7e, +0x2e,0xfe,0x45,0x7c,0x74,0x62,0x78,0xfc,0x28,0x90,0xca,0x64, +0x1a,0xaf,0x35,0x3f,0xcb,0x79,0xc6,0xc9,0x17,0x8e,0x2e,0x42, +0x18,0xab,0x0f,0x8e,0x14,0x48,0x4d,0xde,0x4a,0x1b,0xc6,0xe3, +0x54,0x09,0x48,0xb5,0xd7,0x36,0x95,0xd2,0x18,0x32,0x6f,0xe0, +0xef,0x8c,0xf8,0x0b,0x2e,0x6f,0x6c,0x38,0xfa,0x7d,0x61,0x63, +0x76,0x5d,0x56,0xb3,0x4c,0x78,0x3e,0x40,0x86,0x71,0x77,0x2b, +0x0b,0xa1,0xc7,0x30,0x94,0xb5,0xc2,0x0d,0xda,0xb0,0x96,0x0d, +0x45,0x67,0x63,0x5c,0x80,0xe3,0x70,0x43,0x2d,0x65,0x59,0xe3, +0x61,0xab,0x1c,0xe6,0x5d,0x82,0xc3,0x8a,0x23,0x2d,0x0e,0xcb, +0x71,0x16,0x50,0x42,0x55,0x77,0x95,0xbe,0x02,0xb6,0x98,0x80, +0x5a,0x28,0x38,0x4a,0x27,0xd4,0xa8,0x90,0x53,0xd7,0xdd,0x6e, +0xba,0x76,0x58,0x9d,0xe4,0x2b,0xf5,0x4b,0xb4,0x0a,0xa5,0xf3, +0xc3,0x56,0x8c,0x2c,0x23,0x70,0x71,0x00,0x2f,0xc2,0xe4,0x63, +0x78,0x07,0x75,0x74,0x84,0xba,0x21,0x6c,0x61,0xb0,0xd1,0x8c, +0x04,0xd8,0xf8,0x39,0x9d,0x72,0xf0,0xae,0xf8,0x8f,0xa8,0x48, +0x73,0xfc,0xb5,0xf6,0x17,0x6f,0x73,0xbc,0x42,0xd4,0xbc,0x1e, +0xc4,0xb0,0xc7,0x71,0xca,0x5a,0xda,0xa3,0xe5,0x0a,0x51,0xf7, +0xb5,0xd3,0x1c,0x2f,0x89,0x7a,0x58,0x21,0x6a,0x45,0x8e,0x9f, +0x44,0x45,0xdd,0xb4,0xef,0xa9,0x02,0x3e,0xb4,0xc9,0xe0,0x88, +0x74,0x9c,0xf1,0xf4,0x2b,0x14,0x8f,0xa4,0xc6,0xc7,0xa5,0x45, +0xaa,0x82,0x35,0x72,0x95,0xdd,0x94,0xaf,0x29,0xf9,0x27,0x87, +0x9d,0x0b,0x0b,0x96,0x85,0x07,0x2b,0x45,0x51,0x20,0xd4,0x32, +0x24,0xd6,0xe9,0x50,0x1d,0x54,0x53,0xc8,0x6a,0xb9,0xfc,0x98, +0xc6,0x8e,0x03,0xb5,0xe6,0xfc,0xd7,0x0f,0xae,0xbf,0xe8,0x7a, +0xc5,0x61,0x12,0x7e,0x4d,0x02,0xac,0x02,0xec,0x4f,0xdb,0xf9, +0x96,0x4a,0xc0,0x27,0x3e,0x2c,0x24,0x5c,0x01,0x5e,0xa9,0xcc, +0x9f,0xe6,0x52,0xf0,0xba,0x60,0x14,0xbc,0x2a,0x64,0xee,0x89, +0x13,0xb7,0x52,0xdc,0x23,0x7b,0x0b,0x5e,0xa9,0xcc,0x29,0x78, +0x9d,0xa3,0x00,0xaf,0x17,0x2f,0xc4,0x45,0x51,0x99,0x53,0xf0, +0xaa,0xf5,0xb4,0x44,0x9e,0xd7,0x9a,0xd3,0x29,0x83,0x24,0x1a, +0xfc,0x74,0xe0,0xe6,0x10,0x2b,0xf2,0xa8,0x49,0x2c,0x17,0xef, +0xc6,0xb1,0xdb,0xf6,0x55,0x9a,0xf0,0x55,0x15,0xc5,0xe5,0xf9, +0x65,0x9c,0x68,0x30,0x20,0xe4,0xb2,0x25,0x4d,0xc5,0x5d,0x05, +0x7d,0x5c,0x9c,0x2e,0xd1,0x85,0x7d,0xe2,0x69,0x9c,0xc5,0x66, +0xea,0x2a,0xc1,0x78,0xa6,0x2d,0x3b,0xaf,0x4d,0x4d,0x70,0x05, +0x6e,0x90,0x55,0x1e,0x71,0x13,0x6e,0x90,0xa1,0x8a,0x9e,0xca, +0xb6,0x7a,0xfb,0x5a,0xde,0xc2,0x41,0xdf,0x49,0xd3,0xc5,0xa4, +0xd2,0xb1,0xde,0xa3,0x8d,0x13,0xa6,0xf6,0x88,0x9b,0x1f,0x6a, +0xed,0x10,0x97,0x19,0x81,0xc0,0x6c,0xd7,0x41,0xce,0x02,0x0f, +0xb8,0x64,0x1b,0xf1,0x3f,0x64,0x7f,0x55,0x78,0xbb,0x8c,0x5b, +0xc4,0x5a,0x46,0x9b,0xc5,0x98,0x29,0xc2,0x8a,0x46,0x26,0xac, +0xce,0x87,0x69,0xc5,0x11,0x9d,0xfc,0xee,0x40,0xf5,0xe0,0xd5, +0x34,0xac,0x4c,0x66,0xfb,0x4a,0x5b,0x2b,0x6a,0xaa,0xb8,0x24, +0xe6,0x4b,0x94,0xc1,0xb4,0x75,0x10,0xa4,0x4d,0x3d,0x6b,0x79, +0xf1,0xf6,0x92,0xa3,0x55,0x9c,0x78,0xfb,0x8d,0x0a,0x11,0xf6, +0x82,0x03,0x1b,0xa6,0x69,0x6a,0x89,0xb3,0x1d,0x0b,0x8d,0x78, +0x58,0xda,0x76,0x77,0x28,0xe5,0x27,0x0e,0x3e,0xd4,0x64,0x74, +0x0a,0x03,0x7b,0x29,0x3e,0x61,0xea,0xd3,0x53,0xeb,0xd5,0x9a, +0x58,0x83,0x74,0x25,0x5d,0x1c,0xc7,0xba,0x45,0xc5,0x97,0xa8, +0x0d,0x41,0xa8,0xc8,0xe0,0x1e,0x36,0xd3,0x44,0x09,0x96,0x33, +0xbd,0x59,0x12,0xbc,0x58,0xf4,0xa6,0x57,0xf4,0x61,0xc1,0x1c, +0x52,0x09,0x9e,0x19,0xea,0xa4,0x58,0x70,0x3f,0x8b,0x7f,0xa2, +0x0a,0x79,0x0c,0x9d,0x1a,0xb4,0x97,0x83,0x23,0xc5,0xc4,0xb4, +0xe4,0x68,0xbe,0x59,0x8a,0xa7,0x0d,0xdf,0x11,0x7a,0xfd,0x64, +0x87,0x17,0x27,0x1e,0xc4,0x0e,0x92,0x62,0x20,0x95,0x1d,0xaa, +0xce,0xcc,0xa8,0x54,0xfb,0x8a,0x4d,0x8e,0xbd,0x98,0x14,0xa3, +0x2a,0xbc,0x87,0x1b,0x8b,0xba,0xd1,0xe3,0x97,0xce,0x8a,0xde, +0xe6,0x0e,0xb9,0xcc,0xba,0xd6,0xcc,0x54,0xcf,0x4a,0xd7,0x41, +0xb6,0xb1,0x3e,0x30,0x21,0x32,0x26,0x22,0x44,0x16,0x19,0x4a, +0xb5,0x3f,0x5d,0xd8,0xd8,0x2b,0x6e,0xfc,0xe5,0xd8,0x12,0x71, +0xb1,0xa1,0xb0,0x18,0x23,0x19,0x54,0x85,0x79,0x44,0xaf,0xfa, +0x48,0x99,0x5e,0xf6,0x49,0x4b,0x7e,0xf8,0xcc,0x0d,0xb7,0x1e, +0x57,0xee,0xb3,0x0b,0x44,0xdd,0x12,0x27,0x5a,0x22,0xe7,0x92, +0x2b,0x2d,0xe2,0xad,0x05,0xe5,0x8e,0xa7,0xed,0xdc,0x1f,0x18, +0x4b,0xee,0xe2,0x22,0x90,0xb6,0x0a,0x9d,0x3e,0x58,0xdc,0xc5, +0x2f,0x2e,0xdf,0x56,0x73,0xb4,0xe5,0x66,0xd9,0xe5,0x9a,0xfe, +0x56,0xdb,0x7a,0xde,0xc0,0xea,0x88,0xd3,0x7e,0x57,0xeb,0xba, +0xe3,0x2d,0x9e,0x9d,0x9c,0x30,0xb1,0x5f,0xdc,0x74,0xf5,0xc8, +0x51,0x71,0xbe,0x3e,0x20,0xb3,0xf1,0x30,0x4e,0x35,0xc2,0x4d, +0x8e,0xa3,0x31,0xae,0xf0,0x46,0x29,0x87,0x13,0x59,0x3b,0x45, +0x8c,0x4b,0xd6,0xa3,0x2c,0x35,0x47,0x8a,0x71,0x53,0xca,0x22, +0x7b,0xf8,0xad,0xfe,0x34,0xc6,0x51,0x96,0xaa,0xc6,0x5e,0xa9, +0xec,0xae,0x69,0x6a,0xa4,0x81,0xec,0x9e,0x14,0xc8,0xe4,0x79, +0x6d,0xb9,0x5d,0xb6,0x85,0x14,0x95,0xfb,0xdb,0x9f,0xb2,0x3d, +0x53,0x26,0x05,0x84,0x38,0x1a,0x0f,0x14,0xc6,0xd9,0x7c,0xbd, +0xf9,0x79,0x1e,0xe5,0x2a,0x73,0x47,0x37,0x85,0x8e,0xd7,0xa7, +0xc4,0xd8,0x1d,0x95,0x37,0x53,0xf7,0x51,0xc5,0x29,0xd4,0x38, +0x3b,0xdb,0xeb,0x9b,0xcb,0x68,0x40,0x58,0x30,0x38,0x0a,0x69, +0xa8,0xfb,0xfc,0x84,0xf3,0x69,0xa0,0x12,0x52,0xe0,0x07,0x72, +0xb3,0xf7,0x10,0x6c,0x13,0xbd,0x0d,0x60,0x25,0x73,0xce,0xfe, +0xac,0x43,0xb4,0x03,0x87,0xbb,0x0c,0x61,0x33,0x13,0x69,0x17, +0x61,0x17,0x46,0x7f,0x19,0x6b,0xf8,0x23,0xe3,0x84,0x63,0xf4, +0x16,0x6c,0x5a,0xd1,0x68,0xca,0x37,0x77,0x57,0x75,0xe7,0x37, +0x52,0x42,0x75,0xf9,0x16,0xdc,0x3f,0x78,0x45,0x98,0x2a,0x4e, +0x67,0xd3,0xab,0xd2,0xaa,0x53,0xeb,0x39,0x78,0xc4,0x68,0x83, +0xa2,0x40,0xb3,0x07,0x1b,0x5f,0x1b,0x5b,0x1f,0xdb,0xc4,0x81, +0x3d,0x8e,0xee,0x12,0x63,0x93,0xeb,0x12,0x1b,0x12,0x9a,0x39, +0x38,0x8b,0xdf,0x10,0xb4,0xc0,0xfb,0x60,0xc1,0x2a,0x3f,0xa3, +0x2e,0xf1,0xb8,0xbb,0xfe,0x4a,0xe2,0x17,0xdc,0x6b,0xdc,0x75, +0x59,0xf0,0xd0,0xc2,0xe9,0xb8,0x1d,0xde,0xd7,0xc2,0x8d,0xe0, +0x7f,0x10,0xcb,0x0c,0x80,0x61,0x22,0x8f,0xba,0x59,0xee,0xb5, +0xe5,0x84,0xd9,0xdf,0x12,0x3d,0x21,0x6c,0x00,0x3d,0x41,0x1d, +0xc2,0x07,0x31,0x1c,0x16,0x1c,0xa3,0xc1,0xea,0x8c,0x2e,0x9c, +0x91,0x56,0x65,0x2e,0xc7,0x53,0xe4,0x53,0x9c,0x2f,0x25,0x03, +0x1f,0x4d,0x49,0x37,0x34,0x19,0x1c,0x69,0xba,0x55,0x3e,0x54, +0x3d,0xd0,0xa2,0xd0,0xcd,0x61,0xe7,0x03,0xae,0xd6,0xef,0xf2, +0x4f,0xbf,0xb8,0xee,0xd1,0xe1,0x6d,0xe2,0x1a,0x7d,0x78,0xc3, +0x6c,0x50,0xe4,0x1f,0x0d,0x27,0xaa,0x9b,0x27,0x39,0x0f,0x0b, +0x6e,0xd1,0xe4,0x3b,0x9e,0xb5,0x89,0xb6,0x8a,0xb6,0x8c,0x49, +0x19,0xd5,0xcd,0xe2,0x02,0x98,0x5a,0x16,0xd9,0xcd,0x6f,0xf3, +0xdf,0x10,0xb4,0x92,0xe6,0x9f,0xd9,0xec,0x70,0x79,0x57,0x75, +0x63,0x9d,0x62,0x84,0x23,0x85,0xdc,0x3e,0x7c,0x40,0x5c,0x60, +0xf4,0xd7,0xb8,0x1e,0x56,0xb4,0x16,0x7f,0x24,0xdf,0x51,0xf3, +0x98,0xa7,0x01,0xee,0xa6,0x05,0xed,0xfc,0x92,0x3c,0x8d,0xd2, +0x03,0xd5,0xb7,0x4b,0xae,0x54,0x0e,0x36,0x52,0x98,0xa1,0x6b, +0x7b,0xc0,0x65,0x97,0x87,0x69,0xa5,0x5d,0xad,0x6b,0x13,0x85, +0x19,0x09,0x49,0x89,0xc7,0x0b,0xf8,0x2f,0x85,0xed,0x5d,0xe2, +0xf6,0x1e,0xa9,0xde,0xd2,0x9b,0x3d,0x18,0x01,0x97,0x8d,0xc4, +0xd5,0x26,0xc2,0xea,0xcd,0xd5,0xec,0xd2,0x9d,0xb8,0xd4,0x00, +0x2d,0x9d,0xf3,0x4c,0xf8,0x17,0x99,0x4f,0x72,0xef,0x17,0x73, +0x0b,0x59,0xf3,0x28,0xd3,0x18,0xc3,0xe8,0x14,0x13,0x1e,0x76, +0x64,0xc0,0x9c,0x3c,0x98,0x54,0x1c,0x29,0xe7,0xf7,0x07,0xed, +0x0c,0xd9,0x14,0xc6,0xc1,0x04,0xb6,0x3e,0xb3,0x26,0xab,0x32, +0x97,0xf3,0x17,0x16,0x12,0x3c,0xdb,0x0b,0x67,0x99,0x61,0x43, +0xd2,0x0b,0x29,0x86,0xac,0x38,0x64,0x43,0xe0,0xac,0x1e,0x9e, +0x65,0x60,0x60,0x80,0x40,0x8a,0x1e,0xa6,0x30,0xc2,0x7a,0xbc, +0x44,0xb6,0xd4,0xe2,0xf4,0xa6,0x6d,0xd9,0xa7,0xac,0xf8,0xfb, +0x7e,0x30,0xd3,0xe2,0x91,0x33,0x27,0x7e,0x0d,0x73,0xc8,0x41, +0xdb,0xb9,0x8e,0x4b,0xcf,0xe4,0x99,0xf2,0x2f,0x72,0x61,0x62, +0xd3,0x5d,0x39,0xed,0x6b,0x2b,0x58,0x11,0x58,0xd6,0x87,0xcb, +0x60,0x91,0x2e,0xa5,0xc0,0x2b,0x18,0x8b,0xbb,0x79,0x35,0x99, +0x55,0x99,0xb5,0x32,0xff,0x54,0x25,0x61,0x7a,0x3f,0x6a,0xc0, +0x72,0x98,0xdb,0x87,0x73,0x61,0x86,0x2e,0xce,0xc0,0x05,0x06, +0xb0,0x80,0xaa,0x65,0xab,0x31,0x13,0x94,0x1c,0x7c,0x22,0xd8, +0x3d,0xc0,0x5d,0x16,0x58,0x10,0x9d,0x18,0x76,0x29,0x8c,0x66, +0xd8,0x50,0x25,0x6a,0xb6,0x0d,0xd7,0x9a,0x9e,0xe6,0xd0,0x98, +0xba,0x58,0x11,0x53,0xe7,0xe8,0x83,0x35,0xeb,0x85,0x13,0xb6, +0xe3,0x5c,0x24,0xa8,0x5c,0x6e,0xcc,0xb7,0xc9,0x6b,0x9a,0x4a, +0xa4,0x90,0xda,0x2f,0xac,0x7b,0x1b,0x52,0x9f,0xe0,0xf4,0xda, +0x2a,0x25,0x4b,0x58,0x89,0x07,0x58,0x9d,0x48,0xad,0xa8,0xa3, +0x51,0x52,0x01,0xb8,0x25,0xa9,0x30,0x2d,0x0b,0x54,0x0a,0x62, +0x06,0x79,0xbd,0x30,0xfd,0x08,0xdd,0x08,0x0e,0x06,0x04,0x7f, +0x12,0x95,0x12,0x1e,0x1b,0x11,0x19,0x12,0xca,0xc7,0xc0,0x7d, +0xad,0x7f,0xcd,0xbb,0x2c,0x54,0x33,0x49,0x71,0x17,0x63,0xa3, +0xa4,0xd4,0x61,0x5f,0xd7,0xae,0xa4,0x0c,0x3f,0xc1,0xf0,0xff, +0x20,0xbc,0xb6,0xde,0x95,0xd2,0xa0,0xc5,0xc5,0x90,0xb0,0x77, +0xc3,0x00,0x94,0xf0,0xbe,0x1d,0x06,0x90,0x08,0xef,0x87,0xba, +0x0a,0x14,0x30,0x49,0x1a,0x06,0x58,0xa2,0xa0,0x9f,0xbd,0xf2, +0xe6,0x51,0xc2,0x3b,0xa4,0x48,0xb6,0x12,0x0a,0xf8,0x03,0xd5, +0x24,0x10,0x30,0x1b,0x16,0x93,0xc2,0xb2,0xbc,0x4a,0xa9,0x5c, +0x69,0x37,0x7c,0x25,0x6a,0x4a,0xe5,0x4a,0xdd,0x74,0x4c,0x8c, +0x8e,0xd9,0x95,0x98,0xf3,0x05,0x99,0x79,0x99,0xb9,0xd9,0x1c, +0x8c,0x65,0x4c,0x37,0x6a,0x6a,0xe2,0x7b,0xc7,0xca,0xcd,0x78, +0x60,0x6f,0x7f,0xf9,0x64,0x08,0xde,0xe3,0x7e,0x62,0xcc,0x70, +0xf6,0x06,0x64,0x70,0xfe,0xea,0x4a,0x0b,0x1e,0x56,0xfe,0xfc, +0x0f,0xf8,0xb0,0x07,0x34,0xb8,0x1e,0xe6,0x1c,0x32,0x51,0x6b, +0x42,0x8e,0x72,0x46,0xe1,0xfe,0x01,0xc6,0x1f,0x6d,0x60,0x32, +0xf4,0x95,0x1e,0x33,0x8f,0x2a,0x4a,0x1f,0xa5,0xa9,0xa5,0x7d, +0x76,0xe9,0xc7,0x58,0xd8,0xcc,0x6d,0x50,0xd4,0x1a,0x7d,0xf8, +0x9c,0x85,0x87,0x38,0x9b,0x2c,0xc7,0x87,0x3f,0x29,0xca,0xf6, +0x15,0x93,0x85,0x81,0xf3,0x42,0xf0,0x7d,0xa9,0x6c,0xdf,0xaf, +0xc9,0xff,0x4c,0x7b,0x9a,0xe9,0x69,0xae,0xe5,0x8a,0xd3,0x14, +0x65,0xfb,0xdc,0x3b,0x5b,0xef,0x81,0xca,0x4c,0x88,0xd7,0xd9, +0x87,0x97,0x8d,0xe1,0xf2,0x4e,0x6c,0x37,0x81,0xf6,0x20,0x36, +0x50,0x51,0x2f,0x49,0xb8,0x29,0x95,0xed,0xbb,0xf3,0x18,0xda, +0xba,0xb0,0xed,0x0b,0xb8,0xd6,0x85,0xd7,0x3e,0xd5,0x16,0xcd, +0x87,0x3f,0x63,0x71,0x12,0xe5,0xcd,0x77,0x70,0x09,0xa5,0xa5, +0x63,0xc0,0xe7,0x00,0xf5,0xbc,0xa5,0x6f,0xa3,0xe2,0x50,0xf5, +0xdb,0xa8,0x78,0xcc,0x69,0xbf,0x9b,0x55,0xbd,0x73,0xab,0x67, +0x37,0x27,0x4c,0xa3,0x51,0xf1,0x87,0xc3,0x2b,0xc5,0x15,0xfa, +0xc2,0x18,0x66,0xe3,0x21,0x9c,0x66,0x80,0x9b,0x1d,0xf3,0x0c, +0xf9,0x2f,0x73,0xfe,0x3b,0x2a,0x4a,0x9e,0xb7,0x8b,0x7a,0xde, +0xbb,0xa8,0xe8,0xb7,0x3e,0x70,0x59,0xb0,0x14,0x15,0xaf,0x56, +0xf5,0xd6,0x35,0x35,0x51,0x6b,0xb4,0x07,0x1d,0x02,0x6c,0xe5, +0xdd,0x8e,0xda,0x27,0x1c,0x44,0x09,0xb3,0x31,0x82,0x49,0xaf, +0x48,0xad,0x4c,0xae,0xd0,0x49,0xe4,0xc3,0x5d,0x43,0x9d,0x03, +0x9c,0x38,0xdc,0x23,0xce,0x86,0x6d,0x8c,0xab,0x91,0x9e,0xcb, +0x6a,0x6f,0x6e,0xc5,0x57,0xa4,0x5c,0x9e,0xd7,0x92,0x27,0xa9, +0x9a,0x72,0x10,0x07,0x6f,0x49,0xd5,0x12,0xe2,0x0b,0x09,0x0d, +0x7f,0xab,0xea,0xf6,0x51,0x55,0xb3,0xa3,0xaa,0xa6,0x19,0x38, +0x82,0x3d,0x81,0x93,0xd6,0x51,0x55,0x2f,0xc3,0x89,0x55,0x92, +0xaa,0x5b,0x46,0x47,0x1a,0x86,0xfe,0x3d,0xd2,0x30,0x61,0x74, +0xa4,0x21,0x5a,0x30,0x23,0xc8,0xe1,0x62,0x4a,0x74,0x24,0xe0, +0x41,0x80,0x83,0xe5,0xc8,0xb1,0x08,0xc6,0xd2,0xc2,0x86,0xf3, +0xe6,0x31,0x76,0xe1,0x2e,0xd2,0x21,0xa4,0xa0,0xab,0x92,0x54, +0x13,0xd7,0x78,0x41,0x2e,0x7d,0x3f,0x99,0x31,0x42,0x1f,0x02, +0x73,0xb5,0x70,0xae,0xc8,0xe9,0x0b,0x1c,0x9a,0x5d,0x06,0x33, +0x98,0x23,0x55,0x79,0x79,0x22,0x38,0x93,0x20,0x87,0x80,0xe3, +0xbe,0xc7,0x29,0xf8,0x93,0x46,0xd1,0x68,0xa8,0x0f,0x7d,0x0b, +0xfe,0x5e,0xe4,0x3e,0x93,0x80,0xc8,0x4a,0x5d,0x0a,0xfe,0xc6, +0xe9,0x81,0xf3,0x28,0xf8,0x9b,0x4f,0x81,0xc8,0x54,0xea,0x35, +0xed,0x1d,0xb5,0x4d,0x65,0x14,0x2a,0x2d,0xe8,0x7f,0x4b,0x5f, +0xa3,0x54,0x7f,0x55,0x80,0xbf,0x97,0x05,0x8d,0x39,0x0a,0xf0, +0xf7,0x04,0x80,0x88,0x8f,0x0d,0x21,0x85,0x32,0x90,0xf0,0x37, +0x07,0xfb,0x47,0x54,0x40,0xeb,0xcd,0xa4,0xee,0x91,0x49,0x60, +0x28,0x5e,0x93,0x8e,0x4e,0xd4,0x55,0xfa,0x81,0x69,0xcf,0xcc, +0xe9,0x54,0x13,0x7e,0xc7,0xb3,0xf0,0x01,0xe4,0xb2,0xa2,0x07, +0x16,0x11,0xb3,0xda,0xa3,0xec,0xba,0x33,0x87,0xcc,0xf6,0xab, +0x96,0x5b,0xc9,0xef,0x26,0xc9,0x2f,0xf6,0xcb,0xe2,0x99,0x58, +0x83,0x24,0xeb,0xf6,0xdd,0xa5,0x72,0xde,0xf0,0x61,0xf0,0x00, +0xbc,0x37,0x93,0x5a,0x9d,0x37,0xda,0x92,0x58,0x83,0x44,0xab, +0xf6,0x3d,0x65,0xd2,0xed,0x20,0xc5,0xed,0xcd,0x8a,0xa7,0x7d, +0x0e,0x9a,0x1d,0xa0,0x4f,0xb7,0xdf,0x49,0x6a,0xa7,0x4f,0x2b, +0xff,0xa5,0x26,0x58,0x91,0xa1,0x2e,0x1d,0x98,0x8e,0xc7,0xef, +0x2a,0x36,0x10,0x7e,0xa5,0xb7,0x19,0x43,0x8c,0x21,0x64,0x1f, +0x5a,0x9b,0x82,0xf5,0x56,0x0c,0xb1,0x64,0x9c,0x73,0xfd,0x68, +0xd2,0x3b,0x29,0x01,0x74,0x69,0x28,0x2a,0x4c,0x01,0xd0,0xa3, +0xd3,0x98,0x96,0xeb,0xf2,0xe7,0xf9,0x2f,0x14,0x63,0x51,0x0a, +0xd4,0x38,0x55,0x0f,0x02,0xa9,0x6b,0x2a,0x6f,0xa0,0x69,0x6f, +0xa1,0x02,0x93,0xf5,0x74,0x34,0x37,0x57,0x50,0x58,0xbd,0x78, +0xf0,0xed,0x9c,0x42,0xb4,0x34,0x16,0xb5,0xb2,0xba,0x5a,0xe9, +0x0c,0xf0,0xac,0x97,0x93,0x87,0x93,0xbb,0xcb,0xf0,0x99,0x61, +0x9f,0xc1,0xd3,0xfb,0x8f,0xaf,0x3f,0x33,0x2f,0x54,0xca,0xf6, +0x24,0xe3,0xb7,0xb2,0x47,0x1d,0x0f,0xdd,0xee,0xb9,0xde,0x3e, +0x51,0xd1,0xcd,0x1f,0x2e,0x3d,0x54,0x72,0xb8,0xa8,0xa3,0xb9, +0xb6,0xbb,0xe4,0x3a,0xf7,0x7b,0x37,0x3e,0x62,0x32,0x0a,0xd3, +0x8b,0x14,0x9b,0xd9,0x18,0x7d,0x48,0x27,0x5b,0x71,0xdd,0x17, +0x2c,0x76,0xd2,0x9c,0x16,0xc8,0x6a,0x7d,0x51,0xd6,0x9e,0xd7, +0x92,0x4f,0xa1,0x9e,0xaf,0x3a,0x5a,0x9b,0xc1,0x1e,0x26,0xf8, +0x74,0xd0,0x49,0x7f,0x6f,0x0e,0x08,0x4c,0x24,0x5f,0xc3,0x3a, +0x75,0xf6,0x30,0x6e,0x27,0x27,0xf5,0x9d,0xad,0x4c,0x9d,0x8d, +0x73,0x4d,0xb3,0xad,0x32,0x72,0x0a,0xf3,0x4a,0x73,0xcb,0x68, +0x92,0xbf,0x0b,0x8f,0x48,0x61,0x63,0x4e,0x7d,0xb6,0x34,0xe1, +0x1f,0x48,0x15,0x7f,0xc6,0xd9,0xb7,0x84,0x2a,0x3e,0x22,0xf6, +0x5d,0x24,0x6a,0xba,0xd6,0xfa,0x34,0x8f,0x82,0xe4,0x39,0xa3, +0x08,0x74,0xbc,0x9e,0x22,0xc9,0x4f,0xd4,0xa0,0x08,0x74,0x36, +0x4e,0xa2,0xbd,0xed,0x90,0xd7,0x37,0x97,0x37,0x2a,0x50,0xff, +0xfa,0xb7,0x43,0xcd,0xbf,0xe1,0x22,0x29,0x10,0xf5,0x23,0x4f, +0x41,0x95,0x17,0x7c,0x87,0x5e,0x8f,0xc0,0x38,0x7f,0x00,0x0e, +0x8a,0x9d,0x78,0xb0,0xff,0x34,0x1c,0xdb,0x86,0x2e,0xf8,0x1d, +0xb8,0x68,0x60,0x8e,0x31,0xe4,0xe0,0x8c,0x61,0x98,0x01,0x25, +0x94,0x2e,0xa7,0x8f,0xc8,0x88,0x70,0x68,0x11,0x1a,0xde,0xd6, +0x3e,0x80,0x47,0x18,0x8a,0xad,0xf3,0x08,0xae,0xf9,0x1e,0xd6, +0x30,0xe0,0xbd,0x9a,0xa0,0xfa,0xf7,0xa0,0xce,0x88,0xca,0x38, +0x87,0xc0,0x9a,0x65,0x48,0x6f,0x9e,0xf8,0x99,0x80,0xfa,0x32, +0x54,0x57,0x14,0xab,0x7c,0x40,0x4a,0x29,0xe2,0xcd,0xed,0xb0, +0x95,0x42,0xaa,0xbf,0xc3,0x29,0xbb,0xd3,0xe5,0x7c,0x54,0x82, +0x62,0x1c,0x58,0xd1,0x91,0xe6,0xab,0xad,0xcf,0xa4,0x8e,0xe0, +0x7b,0xa3,0x23,0xab,0x13,0xf5,0xe0,0xa4,0xd4,0x93,0x4d,0xb4, +0x27,0x73,0x14,0x3d,0xe9,0x92,0x37,0xb4,0x94,0x4b,0x70,0x65, +0x40,0x31,0xb2,0x2a,0x0d,0x7b,0xfd,0x86,0x0b,0x68,0x4f,0x42, +0x85,0x8b,0x44,0x78,0xd4,0x27,0x3e,0x62,0x84,0x36,0x9c,0x45, +0xc4,0x73,0xb8,0x83,0xc1,0x43,0x3e,0xb8,0x65,0x13,0x2e,0x54, +0x6d,0xb5,0x7a,0x0c,0xb3,0x2a,0xc0,0x2e,0x0e,0x56,0xcb,0x04, +0x6d,0x46,0xa7,0x5b,0xda,0x4e,0xf0,0x9e,0xa0,0xc2,0xe0,0x13, +0x45,0x4d,0xae,0x27,0x68,0xda,0x09,0xa6,0x4f,0x14,0x35,0xb9, +0x9e,0xe2,0xc7,0x87,0xa4,0x9a,0x5c,0x7d,0x4c,0x43,0xc6,0x68, +0x4d,0x2e,0x33,0xa9,0x26,0xd7,0x4c,0x28,0x20,0x9b,0x60,0xca, +0x13,0xa6,0x53,0xe5,0x09,0x4e,0xd9,0xc4,0xc0,0x0c,0x15,0x98, +0xf2,0x54,0xaa,0xc9,0x25,0x44,0x8f,0x3c,0xa4,0x94,0x6d,0xad, +0x11,0xaa,0xec,0x58,0xe8,0x9e,0xcb,0x07,0x39,0x05,0xb9,0xfa, +0x9f,0x08,0x2a,0xf8,0x0f,0x1c,0x96,0xce,0x34,0x5c,0x6f,0x78, +0x2e,0xf9,0xe6,0x52,0x05,0x31,0x9b,0xa7,0x0f,0xe6,0xac,0x37, +0x4e,0xda,0x41,0x5d,0xf3,0x43,0x05,0x2f,0x6b,0x6d,0xaf,0x6e, +0x2c,0xa6,0xfd,0x9a,0xdb,0x37,0x3a,0x62,0x4c,0xed,0xf1,0x25, +0x2e,0x6b,0xac,0xd7,0xfa,0x31,0xa7,0x32,0xa3,0x22,0xbd,0x5a, +0x56,0x6c,0x57,0x54,0x5d,0x50,0x9b,0x57,0x2f,0x13,0xaf,0xf5, +0x8f,0xec,0x62,0x8b,0x6e,0xe4,0x7d,0x9a,0xf9,0x88,0x13,0x96, +0x89,0x9f,0x90,0x01,0xd4,0x82,0x31,0x34,0xa5,0xdc,0xc2,0x4f, +0xf1,0x16,0x4c,0xc5,0x31,0xb8,0x53,0x0f,0x16,0xb1,0x67,0x56, +0x9b,0x6a,0xe0,0x7b,0xcb,0x2b,0x0c,0xf9,0xdf,0xbf,0xef,0x7b, +0x9e,0xfc,0x0b,0x97,0x80,0x7f,0xf6,0xc3,0x9f,0x09,0x4c,0xd2, +0xca,0xcb,0xab,0xbe,0x5f,0x55,0xd3,0xc7,0x2f,0xfa,0xd9,0xe0, +0x2b,0x9f,0xe7,0x5c,0xbf,0xb0,0x93,0xa0,0x03,0xda,0x52,0xf4, +0x2e,0xc1,0x96,0x24,0x05,0x6c,0x59,0x67,0xf4,0xd7,0x3c,0x0a, +0x5b,0x7e,0x58,0x4b,0x0e,0x78,0x6b,0x04,0xe0,0xd8,0x70,0x4e, +0x5c,0x79,0xe5,0x21,0xd8,0x76,0xa1,0xed,0x6b,0xb0,0xe9,0x42, +0x9b,0xaf,0xd8,0xc7,0x89,0xdf,0x64,0x0c,0x17,0x72,0xc2,0xa0, +0x84,0xe3,0x2e,0xc8,0xe1,0x30,0xa8,0x8b,0x1b,0x50,0x1d,0xf6, +0x5b,0x60,0x8c,0x19,0x38,0x32,0xce,0xf6,0xc7,0x4e,0xe0,0x14, +0xbb,0x7c,0x9a,0xa5,0x66,0xcb,0xef,0xb6,0x66,0x5e,0xa6,0x2d, +0xd8,0x3c,0xf0,0x0b,0x93,0x10,0x1b,0x4b,0x71,0x39,0x38,0xae, +0x2c,0x90,0xa3,0xd5,0xb3,0xd0,0xf8,0xf0,0xf3,0x91,0xa1,0xb2, +0xf0,0x20,0xa5,0xa8,0x0e,0xb8,0xc0,0xa0,0x32,0x38,0x91,0xbd, +0x38,0xf0,0x29,0x6b,0x2f,0xee,0x22,0x4f,0xe9,0xaf,0x8b,0x3f, +0x86,0x33,0xfa,0x85,0x5d,0xfc,0xdc,0xc2,0xf5,0x15,0xfb,0x1a, +0xef,0x56,0x5c,0xab,0x19,0x6e,0xb5,0xae,0xe5,0xb5,0x2d,0xf6, +0x3b,0xed,0x72,0x35,0xae,0xb5,0x6d,0x3a,0x21,0x4f,0xa2,0x78, +0x29,0x29,0xd1,0xb2,0x82,0x5f,0xb4,0x11,0xd7,0x1c,0x45,0x77, +0xeb,0x7c,0x63,0xfe,0xc7,0xec,0x6f,0x0b,0x1e,0x52,0xc4,0xc6, +0xb1,0x26,0x51,0x86,0x51,0x7a,0xd1,0x29,0x94,0x91,0x1c,0xc8, +0x82,0x45,0x05,0x30,0xad,0x34,0x4a,0xe2,0x35,0xdb,0x82,0x37, +0x84,0x70,0xd4,0xd9,0x1b,0xb3,0x6b,0x73,0xab,0xf2,0x38,0xa9, +0x0e,0xec,0x67,0xa4,0xb8,0x2d,0xb7,0x39,0xa7,0xc3,0xae,0x88, +0xa7,0x54,0xcf,0xd1,0xc7,0xc1,0xaf,0x64,0x54,0x8b,0xef,0xe6, +0x29,0xae,0x37,0xbd,0x8d,0xb0,0xab,0xf4,0x68,0x58,0x19,0xa7, +0x0f,0x4e,0x94,0xea,0x29,0x6f,0x51,0x44,0xd8,0x69,0x54,0x8d, +0xed,0xed,0xb5,0xcd,0x12,0xbd,0x9e,0x3f,0xf0,0x37,0x9a,0xfe, +0x15,0x57,0x34,0x36,0x28,0xd5,0x0b,0x0f,0x88,0x38,0x49,0x70, +0x15,0x26,0xb1,0x54,0x46,0x5f,0x10,0x28,0x83,0x7f,0x61,0x19, +0x8b,0x26,0xaf,0x49,0x52,0x72,0xdc,0x85,0xe4,0x08,0x60,0x37, +0xf0,0xe5,0xcd,0xf8,0xfe,0x17,0xa1,0x89,0x91,0x9f,0x84,0x85, +0xc8,0xc2,0xa5,0x5a,0x93,0xe9,0x85,0x09,0xe5,0x0d,0x33,0xcb, +0x0c,0xbd,0xd8,0x1d,0xce,0xc7,0xd7,0x1b,0xab,0x96,0x58,0xf5, +0x94,0xd5,0x57,0xe4,0xe4,0xcb,0xa0,0x1c,0x83,0x88,0x98,0x89, +0x3f,0xaf,0x37,0x1c,0x59,0xd4,0x6b,0xc4,0x88,0x63,0xa1,0x8d, +0x60,0xdb,0x0a,0x68,0x63,0x69,0xf2,0x68,0x23,0xd0,0xf6,0x13, +0xb6,0xb1,0x03,0x2a,0xd0,0xf6,0x1b,0xfd,0x5f,0x5a,0x57,0xfd, +0x19,0x29,0x69,0xa7,0x64,0xb3,0xcb,0xae,0x90,0x0f,0xb0,0x94, +0x58,0xec,0xdb,0xae,0x85,0xd1,0xbe,0xf1,0x67,0x69,0xf2,0xb8, +0xde,0xf4,0x5c,0x1a,0x39,0x58,0x34,0x3a,0x72,0x30,0x46,0x0f, +0xec,0x69,0xd7,0x26,0x6d,0xa3,0x40,0x7a,0x86,0xc2,0x42,0xdb, +0xda,0x6b,0x46,0xbb,0xd6,0x2f,0x65,0x38,0x45,0xc4,0xfc,0x59, +0x4a,0x1e,0x4a,0xa0,0xf5,0x23,0xf1,0x8a,0xf1,0x3a,0x7b,0xf2, +0x6c,0xb2,0x11,0xff,0x6d,0xda,0x8b,0x9c,0x3b,0x79,0x91,0xed, +0xbc,0x73,0x98,0x6d,0x98,0x0d,0x45,0x5b,0xbb,0x3e,0x63,0x1b, +0xe6,0x7e,0xaa,0x01,0x4b,0x8c,0x73,0xe4,0xbc,0x7e,0xae,0x75, +0xfe,0xf1,0x92,0xc6,0xfc,0xc6,0xf2,0xea,0x4a,0xa7,0x0a,0xde, +0xf5,0x84,0x83,0xa7,0xe5,0x49,0xef,0x12,0xff,0x8a,0xe0,0x6a, +0x0e,0xbc,0x7a,0xc4,0x4f,0xc0,0x40,0x08,0xef,0xa3,0x11,0x28, +0x9f,0xc1,0xc8,0x30,0x34,0xda,0x8b,0x2b,0x54,0x7b,0x5d,0x1e, +0xc0,0x86,0x64,0x38,0x7a,0x01,0xce,0xc9,0xfe,0xc1,0x08,0xe3, +0x60,0x1f,0x11,0x37,0x19,0x0a,0x9b,0x18,0xea,0x39,0xbf,0x91, +0x5d,0x78,0xcf,0x10,0xee,0xe1,0x76,0x9c,0xc3,0x66,0x1b,0x2a, +0x01,0xc7,0xb4,0xe6,0xe6,0xb6,0xaa,0xc1,0xba,0xd7,0xbd,0xf3, +0x29,0x02,0xf9,0x06,0xb5,0x48,0xbd,0x7b,0xbd,0x73,0x95,0x7d, +0x7d,0x03,0x7f,0xa2,0xce,0xb6,0xc1,0xa1,0x94,0xea,0xb9,0x8b, +0x0a,0x83,0x26,0xbc,0x86,0xac,0x66,0xc7,0x62,0x7e,0x74,0x18, +0x25,0xb0,0x88,0x8f,0x4e,0x0a,0x8f,0x0d,0x0d,0x7b,0x2b,0x8c, +0x6b,0x8d,0xcf,0x25,0x4a,0xff,0x56,0x18,0xef,0xeb,0x83,0x2d, +0xc5,0x9f,0x54,0x18,0xf3,0x51,0x45,0x91,0x49,0xdb,0xda,0x6b, +0x15,0xf8,0x73,0x6e,0xff,0xdb,0x74,0x1f,0xa5,0xfa,0x39,0x92, +0xc6,0x7a,0x25,0xd0,0x16,0x8e,0x90,0x13,0xad,0x46,0xbd,0xb6, +0xd5,0x0e,0xf6,0x7c,0x93,0x73,0xb7,0x41,0x95,0x15,0x37,0x28, +0xde,0x27,0x83,0x89,0xf0,0x61,0xf1,0x8d,0x9c,0xf0,0x6e,0xde, +0x31,0x54,0x27,0xc4,0x90,0x42,0xf2,0xaa,0x6f,0xd9,0x3c,0x5c, +0xf8,0x0d,0x2e,0xf8,0x6d,0x6b,0x75,0x27,0x6f,0x5c,0x6f,0xdd, +0x75,0x62,0xb0,0xb9,0xac,0xb5,0xb6,0xb2,0xd6,0xa9,0x8e,0xf7, +0x70,0x71,0x3c,0x6e,0xef,0xe1,0xdb,0x14,0xd4,0x16,0xd1,0x46, +0x69,0x85,0x30,0x09,0xbf,0x7e,0xb3,0x8a,0xf1,0x3f,0x1b,0x70, +0x2e,0xe4,0xbc,0x74,0x70,0x42,0x12,0xa1,0x6c,0xe7,0x7d,0xf0, +0x64,0xf0,0x67,0x1a,0x80,0x5d,0xda,0x0c,0xfb,0x6d,0x6a,0x1c, +0xec,0xf8,0x16,0xc7,0x2e,0xe3,0x1a,0x73,0x0e,0xd4,0xab,0x24, +0x98,0xe1,0x49,0x8d,0x5f,0x64,0xe6,0x11,0x9c,0x65,0xf4,0x05, +0x2a,0x31,0x8b,0x5c,0x8f,0x22,0xa3,0xa3,0x5a,0xa8,0x03,0x63, +0x06,0xab,0xae,0xc5,0xdd,0x94,0x25,0x30,0x7b,0xe3,0xfa,0xd7, +0xc0,0xa2,0x8f,0xa0,0x96,0x49,0x1d,0x54,0xc2,0x36,0x06,0x79, +0xa3,0x6f,0x61,0x9c,0x9a,0xf2,0x5f,0x9b,0x85,0xa9,0xc4,0x3c, +0x5d,0x69,0x2f,0xce,0x66,0xbd,0xa3,0x2f,0x15,0xaa,0xf5,0xb0, +0x30,0x3d,0x25,0xa6,0x15,0xa7,0x86,0x2a,0x7d,0x05,0xc7,0xd8, +0xb0,0x13,0xa1,0x5e,0x81,0xee,0x6d,0x67,0xf8,0xec,0xda,0xb4, +0xea,0x94,0x56,0xae,0x16,0xe3,0x6f,0x80,0x57,0x0b,0x7a,0x5d, +0x61,0xbf,0x49,0xf9,0x32,0xeb,0x46,0xbe,0x9b,0x9c,0x47,0x15, +0x1b,0xd4,0x3e,0x85,0xa6,0x31,0x9c,0x74,0xa0,0xe2,0xd9,0x53, +0xb8,0x81,0x3a,0xa7,0x6a,0x8b,0x83,0xd2,0x4f,0xb0,0xb7,0x00, +0x8e,0x41,0xd8,0x4c,0x30,0x61,0xef,0xc4,0xde,0x8d,0xbb,0x9d, +0xc8,0xe1,0x46,0x0a,0x99,0xa5,0xfd,0x04,0x67,0x70,0xa1,0x3e, +0x32,0xaa,0xad,0x4e,0x4a,0x57,0xe0,0xc3,0x3c,0x58,0x0d,0x87, +0x67,0xc2,0x3c,0x50,0xda,0xc8,0xae,0x8f,0x88,0xb3,0x7a,0x92, +0xa0,0x64,0xc8,0x9a,0xe5,0xf9,0xf4,0xab,0xc2,0x7c,0xa6,0x2e, +0x35,0xa3,0x42,0xed,0x0d,0xb9,0x48,0xf2,0xaa,0x25,0xa6,0xe1, +0x44,0x55,0xe9,0x4a,0xa9,0x84,0x47,0xa0,0x14,0x78,0x43,0x29, +0x95,0x90,0x40,0x51,0x3a,0x55,0x65,0xd3,0x33,0x49,0x95,0x0b, +0x47,0xcf,0x36,0x1c,0xa3,0x0f,0x76,0x12,0x95,0xd8,0x4a,0xa9, +0x84,0x8a,0x02,0x09,0x48,0x54,0xa2,0xf4,0x6f,0x2a,0xa1,0x70, +0xd9,0xef,0x70,0x96,0xa4,0xca,0x01,0x5b,0x82,0x63,0x3d,0x76, +0xed,0xd2,0x57,0xad,0xb6,0x55,0xfa,0xfa,0x4a,0xcd,0x8f,0x30, +0x75,0x66,0xad,0x31,0x0b,0xb9,0x98,0x4c,0xb4,0x19,0xef,0xe8, +0xf8,0x22,0x35,0x38,0x63,0x84,0xbe,0xac,0x4e,0xbe,0x6f,0x9f, +0xea,0x10,0xd3,0x90,0x96,0xdd,0xa0,0xf6,0x9a,0xb5,0xcc,0x54, +0x52,0xfe,0xcb,0x4a,0x87,0xf8,0xdc,0xf7,0xf8,0xcc,0xe3,0xaa, +0x85,0x2f,0x9f,0x7c,0x2a,0xd9,0x2b,0xd9,0x53,0x2a,0xc8,0x77, +0x3c,0x8a,0x83,0x0d,0xb0,0x14,0x3a,0x70,0xe9,0xef,0x6c,0x6d, +0x5c,0x75,0x7c,0x65,0x7c,0xa2,0x5f,0x82,0x7f,0x82,0x7f,0x7b, +0x09,0xef,0xfe,0xa9,0xcd,0x23,0x87,0x7e,0x4b,0x6f,0x3e,0xd7, +0x2d,0xdf,0x31,0xd7,0x5e,0x3f,0xf2,0x58,0xd4,0xb1,0x98,0xb2, +0xa1,0xb2,0x7b,0xd9,0xc3,0xfa,0x99,0xbc,0xaf,0xe6,0x09,0x0d, +0x97,0x63,0xdc,0xf9,0x80,0x80,0xf3,0x01,0x1f,0xc5,0xeb,0x74, +0xc6,0x76,0xc7,0x75,0xc5,0xcb,0x96,0x53,0x83,0xec,0x80,0xf9, +0xb8,0x9d,0xd5,0x8b,0xd0,0x89,0xd2,0x3e,0x9b,0xa0,0xc5,0x4b, +0x6b,0xba,0xc6,0xe4,0xfe,0x5a,0x9e,0xe2,0x9a,0xe4,0x96,0xe8, +0xc9,0xbd,0x61,0x85,0x4e,0x12,0x6c,0x1f,0x44,0x6d,0x3c,0x58, +0x12,0x4c,0x44,0xdc,0x3b,0x1b,0xaf,0xbb,0x5a,0xaf,0xa0,0x58, +0x2b,0x15,0x82,0x59,0x6c,0x00,0xfa,0x34,0x23,0x4d,0xd8,0x4d, +0xe5,0xa2,0x8c,0x53,0xa8,0x89,0x37,0xb7,0x55,0x36,0x16,0x35, +0x70,0xe2,0xec,0x3e,0x61,0xed,0x5b,0x8a,0xf5,0x00,0x65,0x8d, +0x75,0x96,0x8f,0xf2,0x9b,0xb2,0x1b,0xb3,0x5a,0x64,0x60,0x7b, +0x93,0x40,0x23,0x1a,0xea,0x83,0x1a,0xee,0x47,0x15,0xf6,0xec, +0xc2,0xc8,0x65,0x21,0x2b,0x39,0x58,0xc1,0x9c,0x5f,0x1b,0xb5, +0x35,0x4c,0x8f,0xb3,0x8d,0x0c,0x0c,0x74,0xfc,0x48,0x5d,0xda, +0x15,0xfa,0x94,0xb9,0x52,0x54,0x76,0x3b,0x55,0x2d,0xf5,0x41, +0xc2,0x7d,0x58,0x38,0x13,0x17,0x32,0xf1,0xbd,0xf1,0x0f,0x2f, +0xf6,0x73,0x10,0xb0,0x93,0x7c,0x8f,0x7a,0xab,0x19,0x88,0x51, +0x59,0x06,0x7a,0x3f,0x33,0x52,0x06,0xba,0x40,0x3e,0x3f,0xbc, +0x5d,0x5c,0x68,0xfc,0x17,0x43,0x01,0xc7,0x76,0xf1,0x6b,0xf2, +0x19,0x05,0x72,0x1f,0x68,0xc0,0x09,0xe3,0xfc,0x0e,0x7e,0x79, +0xc1,0xce,0xe2,0x63,0x55,0x57,0x0b,0x07,0xca,0xbb,0xeb,0x3c, +0x0b,0xf9,0xaf,0xba,0x30,0xe9,0x36,0x38,0xc9,0xd1,0xe9,0x06, +0x84,0x76,0x60,0xa8,0x54,0x57,0x67,0x39,0xfe,0x80,0xcb,0xff, +0xa1,0x85,0x85,0x97,0xff,0x41,0xaf,0xbf,0xc6,0xe5,0xb0,0x57, +0x0b,0x4f,0x99,0xc1,0x29,0x4d,0x34,0xb3,0x00,0xb3,0x03,0x78, +0xd6,0x04,0x1e,0x33,0x1a,0xd6,0xc8,0x38,0xe3,0x82,0x93,0xd9, +0x26,0xfc,0xa3,0xf4,0xfb,0xd9,0xd7,0x0b,0xb8,0x75,0xac,0x63, +0x8c,0x43,0x8c,0x9d,0x14,0xc7,0x60,0x6b,0x06,0x2c,0xc8,0x85, +0xc9,0x45,0x51,0x1d,0xfc,0x96,0xc0,0xf5,0xc1,0xcb,0x43,0xb9, +0xd7,0x6c,0x5f,0x7e,0x7b,0x51,0x43,0x29,0xb7,0x5d,0xd0,0x21, +0x9a,0xe8,0x79,0x83,0x1d,0x51,0x56,0xd1,0x44,0xbf,0x1b,0x6c, +0x0b,0xba,0xd2,0x1b,0x85,0x37,0x58,0x28,0xc4,0xb1,0xe4,0x00, +0x16,0xde,0x96,0xf6,0xc3,0x58,0x11,0xa7,0x22,0xb7,0x52,0xef, +0x4a,0x0e,0x12,0x19,0xb3,0xe3,0xfa,0x1e,0xc7,0x4e,0x52,0x6e, +0x92,0x3b,0x92,0x40,0xee,0x1c,0xdd,0x2f,0x2e,0x31,0xfe,0x6b, +0x02,0xed,0xdc,0x6b,0xea,0xbc,0x16,0xac,0x5d,0x4e,0x68,0xbd, +0xea,0x37,0x4c,0x49,0x52,0x6a,0x9e,0x5a,0x19,0x6b,0x9d,0xa2, +0xe4,0xa4,0xcd,0xfa,0x46,0xc6,0x66,0xab,0x35,0x80,0xb2,0x1c, +0x8d,0x7a,0x60,0x5d,0x1b,0xae,0x93,0xd6,0xac,0xae,0xb1,0x84, +0x35,0x46,0x68,0x6a,0x01,0x53,0xd8,0x30,0x73,0x33,0x57,0xf5, +0x93,0x85,0xd6,0xfc,0x3f,0xca,0xaf,0xc8,0x53,0xee,0x70,0xc2, +0xb5,0x41,0x82,0x1f,0xa7,0x6c,0xac,0xde,0xa7,0x9a,0x6f,0x79, +0x39,0x3a,0xb9,0x37,0x17,0xc6,0xf2,0x36,0x39,0x67,0x70,0xac, +0xd2,0xf1,0xfe,0xc8,0xbb,0x70,0x62,0x26,0x2e,0x7b,0x62,0xb8, +0x09,0x27,0x9b,0xc0,0x64,0xe6,0x9c,0x75,0xb4,0x43,0xb8,0x8b, +0x77,0xd6,0xc9,0x8c,0x53,0x69,0x1e,0xf6,0x7c,0x49,0x40,0xa9, +0x5f,0xc9,0x19,0x1f,0xf3,0xe3,0x76,0x16,0x8e,0x0d,0xf6,0xbc, +0xbc,0xb6,0xa6,0xa5,0xa8,0xbb,0xca,0xab,0xd2,0xb3,0xc2,0xa3, +0xa2,0x89,0x77,0xa9,0x70,0x2c,0x77,0x2c,0x4d,0x6f,0x49,0xe8, +0xa4,0xfa,0x7a,0x33,0x4d,0x1c,0x4b,0x60,0x76,0x02,0xac,0xc8, +0x80,0x89,0xb9,0xe7,0xe4,0xbc,0x59,0x94,0x7e,0xa4,0x6e,0x14, +0x77,0x15,0x64,0x9d,0x28,0xbb,0xab,0xb7,0x0f,0x67,0x99,0xc2, +0xac,0x83,0xec,0xc1,0xa8,0x83,0xd1,0x47,0xce,0x71,0x23,0xc5, +0x86,0x44,0x47,0x31,0xb4,0x61,0x52,0x61,0x57,0xe3,0xda,0x50, +0x9a,0xcf,0x5b,0x55,0x2e,0xda,0x86,0xab,0x0d,0xf0,0xb8,0x93, +0x2c,0xd7,0xe4,0x65,0xc6,0x37,0xb9,0x0f,0x8a,0x65,0x4b,0x59, +0x5c,0x19,0x98,0x6c,0x02,0xbb,0x33,0x61,0x5e,0x2e,0x28,0x17, +0xc9,0xa2,0xe4,0x7b,0x83,0x77,0x84,0xa8,0x87,0xc9,0x60,0x1c, +0xdb,0x90,0x59,0x9b,0x55,0x99,0xf3,0x74,0x0e,0x2c,0xda,0x06, +0xde,0x66,0x05,0x1d,0xfc,0xc2,0xdc,0x4d,0xc5,0xfb,0xab,0x6e, +0x97,0x5e,0xae,0x18,0x6c,0x90,0xaa,0x51,0x0b,0xe6,0x24,0xf8, +0x78,0x90,0xbb,0xbf,0x7b,0x40,0xe1,0x5b,0x3e,0x14,0x3a,0xea, +0xfa,0xd7,0x29,0x1f,0x7a,0xae,0x18,0x0c,0x97,0xf8,0xd0,0x58, +0x3d,0x9a,0xad,0xff,0xcd,0x87,0x2a,0x46,0xf9,0xd0,0xdb,0x94, +0xa6,0xfe,0x36,0x8a,0x2b,0xf8,0xd0,0x91,0x1f,0x73,0x6b,0xb2, +0xaa,0xb2,0x6a,0x65,0x90,0xee,0x4f,0x84,0x39,0x98,0x63,0x04, +0x4e,0xf8,0x33,0xfb,0x02,0x28,0x96,0x75,0xc7,0x9f,0xfb,0xe9, +0xad,0x62,0xa6,0x14,0xbd,0x49,0x7f,0x45,0x7f,0x63,0x53,0xdb, +0xf1,0x06,0xde,0xd6,0xda,0xcc,0x41,0xd7,0x9d,0xc3,0x75,0x7f, +0x12,0x1b,0x73,0x0b,0x07,0x9d,0xe3,0x65,0x56,0xfc,0x60,0x75, +0x77,0x53,0x4b,0x27,0x07,0xdb,0x30,0x93,0x0c,0x57,0x0f,0xb7, +0xc9,0x7b,0x9c,0xeb,0x78,0x4b,0x33,0x63,0xfb,0xc3,0xce,0x1c, +0x2e,0x84,0xf7,0x88,0x99,0xb1,0x91,0xf5,0x61,0xfb,0x32,0x4b, +0xfe,0x4a,0xdd,0x95,0x4e,0xf9,0x00,0xf7,0x12,0x95,0x49,0x90, +0x5b,0xa0,0xe7,0x19,0x2f,0x4a,0xf7,0xc4,0xdd,0xc3,0x3d,0xc2, +0x3c,0xa3,0xcb,0xc2,0x6e,0x4c,0x66,0x32,0x73,0xd3,0x0a,0x52, +0x8b,0x38,0x8c,0xc6,0x33,0xe4,0x4f,0x61,0xde,0x1c,0x56,0x9c, +0x67,0x4c,0x84,0x79,0x48,0x11,0x3d,0xc5,0xd5,0xed,0x70,0x9f, +0x26,0xf7,0xdc,0xb6,0xec,0x2e,0xfb,0x42,0x3e,0x90,0x26,0x77, +0x1f,0xfb,0x80,0xe2,0xd1,0xe4,0x2e,0x49,0x82,0xfa,0xba,0x84, +0x3e,0x73,0x46,0xd1,0xa7,0xfe,0x5b,0xf4,0xe9,0x85,0x93,0x25, +0xf4,0xf9,0x01,0x4e,0x2b,0xff,0x0f,0xf4,0xf9,0xef,0x74,0xf6, +0x18,0xe7,0xd0,0x18,0x28,0xb4,0x0a,0xd3,0xc8,0xa7,0x5d,0x7b, +0x61,0x2c,0xba,0x0e,0xe8,0xea,0x51,0x94,0x38,0xf6,0x80,0xf1, +0x6d,0x1c,0x0f,0xce,0x47,0xf0,0x0c,0x6a,0x80,0x09,0x13,0xec, +0xe3,0x7f,0xd2,0xef,0x24,0x87,0x96,0x26,0xb0,0x91,0xf1,0x72, +0xf5,0x70,0x73,0x77,0xbb,0x1c,0x38,0x1c,0x30,0xe4,0xbf,0xff, +0xd4,0xc6,0xa0,0x39,0x11,0x19,0xc6,0x3c,0xa8,0xa5,0xfc,0x51, +0xf8,0xb8,0xe1,0x3b,0xef,0x27,0x5e,0x9f,0x9f,0x2c,0xea,0xe2, +0xf7,0xe5,0xed,0xc9,0x3d,0x90,0xd3,0x51,0xd5,0xd0,0x5c,0xd1, +0xcd,0xfd,0xda,0x85,0xaf,0x99,0xac,0xc2,0x8c,0x82,0x74,0xca, +0x9b,0xe2,0x41,0x03,0x83,0xae,0x81,0x07,0x83,0x05,0xa0,0x41, +0x70,0xc3,0x6d,0xd8,0xc0,0x74,0x1f,0x20,0xb7,0x61,0xcb,0x01, +0x56,0x9c,0x62,0x49,0x60,0xc3,0x2e,0x69,0x9f,0xaa,0xf3,0x67, +0x04,0xb6,0xec,0xc2,0x2d,0x8c,0x31,0xae,0xa2,0x00,0x80,0x22, +0x0c,0x61,0xf1,0x2e,0x82,0x07,0x3e,0x83,0x03,0x8c,0x16,0x46, +0x10,0x37,0x4b,0x7b,0x67,0x63,0x4f,0xdd,0x0c,0x83,0x74,0xd3, +0xd4,0x9c,0xdc,0xdc,0x82,0xec,0x02,0x45,0xcd,0xf2,0x87,0xa4, +0x84,0x92,0xfc,0xbf,0xc9,0xc7,0xe9,0xff,0x45,0x3e,0xde,0xb2, +0xa8,0x77,0xe4,0x63,0x82,0x1e,0x78,0xb3,0x6e,0xa3,0x34,0x4a, +0x4d,0x41,0x3e,0x3a,0x25,0xf2,0xd1,0xa8,0x40,0x77,0xef,0x68, +0xd4,0x1f,0xb8,0x94,0x92,0x8f,0x78,0xe1,0x2a,0x41,0x4b,0x88, +0x00,0x4b,0x76,0x50,0x85,0x5e,0x9c,0xa7,0x17,0x62,0x10,0xae, +0x21,0x14,0x97,0xcf,0xc4,0x31,0x2c,0x6c,0x50,0xa1,0x57,0x73, +0xe8,0x15,0x1a,0x8a,0x85,0xe4,0x0b,0xf0,0x86,0x97,0x62,0x18, +0xbe,0x84,0x13,0x5b,0xb1,0x56,0x1f,0x6a,0x71,0xf6,0x00,0xc5, +0xef,0x85,0xfd,0x2c,0x7e,0x29,0x15,0xbc,0x5b,0xf7,0x03,0xac, +0x63,0x06,0x56,0x92,0x1f,0x40,0x63,0x25,0x2b,0x4e,0x35,0x23, +0xb0,0x6e,0x29,0xae,0xa3,0x5c,0xea,0x1f,0x04,0x34,0x96,0xa2, +0x06,0xa3,0x3c,0x62,0x3f,0xb2,0x91,0xf8,0x0c,0xbb,0x5d,0x76, +0x6f,0x37,0xf3,0xe4,0x4b,0xad,0x2a,0x34,0x73,0x75,0x39,0x7c, +0x8e,0x9f,0x93,0xd2,0xb6,0xfc,0x96,0xdc,0x4e,0xc5,0x98,0x95, +0xbf,0xfd,0xa9,0x7f,0x2f,0xd2,0x18,0x5d,0x06,0xd4,0x72,0xad, +0xed,0xa9,0x62,0xe6,0x6a,0xec,0x68,0x1f,0xa7,0xe8,0x81,0x9f, +0x34,0x66,0xa5,0x4e,0x7b,0xb8,0x00,0x27,0x55,0x4a,0x04,0xab, +0xa9,0xa5,0x62,0x74,0x3c,0x78,0xc3,0x3b,0x62,0x3c,0x76,0x74, +0x20,0xa3,0x63,0x0d,0x79,0x05,0x6e,0xc2,0xb8,0x8d,0x6c,0x75, +0x6f,0xf5,0x9d,0xa2,0x21,0xfd,0x42,0xde,0x5b,0xd3,0x6e,0xbb, +0xe3,0x51,0x0e,0x9f,0x8a,0xe3,0xc0,0x71,0x01,0x46,0xe8,0x43, +0x04,0x6e,0x1f,0x84,0xed,0x90,0xde,0xcf,0x88,0x73,0x28,0x25, +0x3b,0xdd,0xed,0x74,0xc5,0xb5,0xc5,0xc2,0x9d,0x2f,0xb5,0xab, +0x3b,0x9c,0x67,0xcc,0xc1,0x87,0xb8,0x9e,0xe0,0x8a,0xd7,0x34, +0x4b,0x0c,0xce,0x27,0xaf,0x61,0xdd,0x7c,0x16,0x5d,0x8d,0xa5, +0x13,0xe4,0x56,0x48,0x27,0xc8,0x39,0xa8,0xc0,0x3a,0x7a,0xbd, +0x8e,0xf6,0x70,0x60,0x44,0x9f,0x14,0x95,0x15,0xd5,0x67,0x55, +0x18,0x97,0xf2,0x01,0xae,0x1e,0xb6,0x9e,0xee,0x8d,0xde,0x3c, +0x4e,0x50,0xec,0xb5,0x46,0x86,0x69,0x2e,0xf2,0xad,0x71,0x6f, +0xf4,0x2a,0x92,0x99,0xba,0x15,0x7b,0x14,0xbb,0x64,0x1f,0x97, +0x21,0x8f,0xab,0xaf,0xfc,0x2e,0xd8,0x28,0x36,0x5b,0x8b,0x7f, +0xa1,0x3b,0xf9,0xff,0x17,0xe9,0x6a,0xbd,0x18,0x85,0xd0,0xb2, +0x47,0xea,0x44,0x58,0x06,0x36,0xe2,0x32,0x66,0x08,0x57,0x93, +0x7f,0x42,0xcb,0x3c,0x16,0x41,0x8c,0x27,0x7d,0x82,0x86,0xc1, +0x65,0x41,0x4d,0xac,0x95,0xb6,0x5a,0x87,0x43,0x3c,0xc1,0x83, +0xdf,0xc3,0x41,0x66,0x40,0x3a,0x47,0xe1,0xd8,0x6a,0x16,0xa3, +0x4d,0xc8,0x32,0x3c,0xf8,0x33,0x0b,0xa1,0x2a,0x70,0x6c,0x19, +0x1e,0xa3,0xbd,0xf4,0x1d,0xc9,0x26,0x83,0x3a,0xba,0x78,0xc8, +0x44,0x38,0xd8,0xc5,0xbe,0xc9,0x11,0x57,0x12,0x0a,0xd6,0x4d, +0x70,0x80,0x89,0xcd,0xbd,0x90,0x7b,0x21,0x87,0x83,0x7a,0xd0, +0xc2,0xef,0x51,0xc6,0x6c,0x88,0xd6,0x38,0xb4,0x41,0x55,0x6e, +0xdd,0x32,0x98,0x77,0x25,0xe9,0xb2,0x0c,0x82,0xc1,0x86,0xac, +0xc2,0xd3,0x2f,0x59,0x21,0x04,0x27,0x93,0xd0,0x12,0xdf,0xaa, +0xa0,0x6c,0x53,0x5f,0x3e,0xe3,0x4c,0xd6,0x89,0x94,0x93,0xdc, +0x52,0x9c,0x42,0x4c,0x60,0xc7,0x82,0xa1,0x57,0x70,0xac,0x0b, +0x8f,0xdd,0x01,0xbb,0x4e,0xfc,0x88,0xcd,0x29,0xce,0x2c,0x4f, +0x2d,0x36,0xc9,0xe4,0x43,0x5c,0x03,0x5c,0x4f,0x3a,0x71,0x98, +0x63,0x0a,0x7a,0xfb,0x19,0x2c,0xc9,0x22,0x73,0xd1,0xf8,0x0f, +0x16,0xda,0xb1,0x9a,0x7c,0x2a,0xd5,0xea,0x9c,0x07,0x3e,0x47, +0x8a,0x14,0x63,0xe5,0x55,0x47,0x9a,0x6e,0x96,0x0e,0xd7,0xf4, +0xb7,0xd8,0xd5,0xf1,0xfa,0xd6,0x47,0x9c,0xf6,0xbb,0xdb,0xd4, +0x1c,0x6f,0xf4,0x94,0x73,0xc2,0x84,0x3e,0x71,0xf5,0x57,0xc7, +0x36,0x8b,0xab,0x0d,0xe0,0x4f,0x66,0x83,0x16,0x4e,0x35,0xc5, +0x8d,0xa3,0x73,0xb5,0x9f,0xe5,0xdf,0x28,0xe1,0x50,0xe9,0xdd, +0x88,0x9d,0x3e,0x0f,0xbb,0xb3,0xa5,0x11,0xbb,0xa9,0xa5,0x91, +0xdd,0xfc,0x96,0x80,0x75,0x81,0xcb,0x82,0x38,0x90,0xb1,0x57, +0xca,0x7b,0xaa,0x9b,0xea,0xa9,0x73,0x4a,0xc5,0x18,0x83,0x5d, +0x82,0x68,0xa3,0x82,0xf2,0xa9,0xae,0xc2,0xe2,0x47,0xd1,0x5b, +0x86,0x14,0xb8,0x5e,0x48,0xba,0x5a,0xa6,0xd0,0xd5,0x7c,0x7d, +0x30,0x93,0x70,0xf8,0x4e,0xaa,0xaa,0xff,0x11,0xb8,0xfa,0xfe, +0x0e,0x5c,0xdf,0x4b,0xaa,0xd2,0xfe,0x29,0xaf,0x2e,0xab,0x36, +0xb3,0x51,0x06,0x3e,0xdf,0x12,0x39,0x6e,0xbd,0x07,0x0e,0x98, +0x36,0x08,0x69,0xe0,0xbd,0x07,0x35,0x2d,0xe0,0x70,0x56,0x3f, +0x05,0x06,0x15,0x37,0xe1,0x62,0x97,0xd8,0x68,0x02,0x61,0x87, +0x30,0x0b,0x97,0xf7,0xf9,0xb3,0x34,0x56,0x8f,0xa1,0x7f,0xbe, +0xcd,0x82,0x15,0x82,0x55,0xe4,0x78,0xd8,0x82,0x85,0x88,0x5d, +0x44,0xfc,0xde,0x04,0x92,0x99,0xb0,0x53,0x21,0xf4,0x87,0x46, +0x66,0xec,0x1d,0x80,0xb8,0xdf,0x31,0xbc,0x17,0xc2,0x5f,0x63, +0x78,0x0f,0x55,0xf4,0x14,0xd4,0xd9,0xc5,0xa4,0x1b,0x2b,0x0d, +0x33,0x4d,0x99,0x59,0x4d,0x6a,0x10,0x80,0x4d,0x6c,0x6a,0x41, +0x6a,0x41,0x72,0x01,0x07,0x95,0x8c,0x74,0x02,0xb3,0x14,0xa0, +0xf3,0xda,0x72,0x3b,0x6d,0x25,0xf6,0xe5,0x3f,0x3a,0x87,0xf8, +0xdf,0xc4,0xb2,0xf9,0xb9,0x94,0xaa,0xe6,0x8f,0xda,0xa4,0x92, +0x9e,0x62,0x01,0xdc,0xe4,0x2d,0xff,0x1e,0xba,0x6b,0xaf,0xfb, +0x2f,0x62,0x19,0xf7,0x8e,0x58,0x82,0x3b,0xec,0x20,0xdf,0x7e, +0x75,0x93,0xad,0x77,0x2f,0x68,0xca,0x6e,0x48,0x6f,0x90,0xc1, +0xb1,0x01,0xdc,0xca,0xa4,0x36,0x27,0x36,0x27,0xc8,0xf5,0x13, +0xf9,0xa0,0xe5,0xbe,0xdb,0x4d,0x56,0x70,0xbf,0x6d,0x7e,0xfc, +0x5b,0x17,0x76,0x8a,0xc6,0xd0,0xd3,0xcd,0xe2,0xc7,0xf0,0x9a, +0x68,0xac,0x7d,0x2c,0x75,0x78,0x06,0x51,0xc7,0x6d,0x5f,0xb3, +0xcf,0x70,0x26,0xd9,0xb0,0xf6,0x5b,0x56,0x08,0x72,0x27,0x78, +0x4a,0x0f,0x4e,0x31,0x2e,0xf8,0x01,0x11,0x43,0xb0,0x72,0x89, +0xe1,0x88,0xac,0x57,0x9f,0xc1,0x5f,0xe0,0x0c,0xc1,0x33,0xeb, +0xe0,0x0c,0x0b,0xf3,0x68,0x1e,0x82,0x33,0x4f,0xf1,0x0c,0xdb, +0xaf,0x02,0x67,0x5e,0xd2,0xff,0x95,0x05,0x10,0x76,0x90,0x3e, +0xe9,0xa4,0x53,0x98,0xd0,0x4f,0xbd,0x74,0xbe,0x01,0x6d,0xfb, +0x44,0x7d,0x98,0x88,0xab,0x71,0xbc,0x1b,0xeb,0x99,0x1d,0xe4, +0x10,0xe8,0xe2,0x7f,0x5c,0x16,0x58,0x4c,0x41,0x68,0xbc,0x34, +0x95,0x1e,0x26,0x0d,0xf4,0xd7,0x5d,0xaf,0xfb,0x4e,0x42,0xa1, +0xab,0x14,0xd5,0x03,0x96,0x19,0x80,0x16,0x7b,0x12,0xc7,0xef, +0xa5,0x28,0x74,0x22,0x4e,0x2d,0x33,0xe6,0x9b,0xda,0x2a,0x1a, +0x0b,0x25,0x14,0xda,0x2b,0xa1,0x50,0x85,0x82,0xbf,0xa0,0x99, +0xa9,0xce,0xfc,0x71,0x4e,0x4d,0x66,0x4d,0x06,0x4d,0xd1,0x77, +0xc1,0x8b,0x88,0x05,0x50,0x27,0x14,0xe0,0x4c,0x36,0xa5,0x36, +0xb9,0x26,0x89,0x72,0xc9,0x19,0xdd,0xf8,0xdc,0x18,0x96,0x31, +0x11,0x2e,0x61,0xce,0x21,0x4e,0x9c,0x1d,0x7e,0x4c,0xfe,0x80, +0x7d,0x73,0x59,0xdc,0x27,0xd5,0xf0,0x7b,0x1f,0xf6,0x49,0x47, +0x53,0x16,0xc7,0x10,0x8a,0x6e,0xef,0x80,0x09,0x7c,0xce,0xfe, +0x26,0x05,0x6b,0xca,0x2d,0x71,0x9c,0x34,0xa0,0xc9,0xd0,0x3c, +0x4f,0x61,0xb5,0x3b,0xc5,0xfa,0xe9,0xa4,0xc9,0xa6,0x4d,0xa7, +0xca,0xb8,0xa9,0x9e,0x3f,0xde,0x65,0x7a,0xc5,0xbe,0x8e,0xc3, +0x00,0x3c,0x46,0xfa,0x9a,0x3a,0x7b,0xeb,0x86,0xac,0x2a,0x79, +0x57,0x13,0x4b,0x23,0x43,0x67,0x8a,0xec,0x7a,0x47,0x96,0x90, +0xcb,0x60,0xa4,0xd5,0x7f,0x19,0x56,0x75,0xe3,0xaa,0x3b,0xfa, +0xfb,0xd1,0x48,0xfa,0x58,0x6a,0x0c,0x4b,0xb5,0x58,0x34,0xc0, +0xef,0xa5,0xfc,0xd3,0xf6,0x96,0x81,0xfb,0x8f,0xc6,0x25,0x05, +0x5c,0xf9,0xf7,0xdc,0xfd,0xbb,0xe1,0x5b,0xbd,0x51,0xb8,0xe2, +0xf8,0x0e,0xae,0xfc,0x3d,0x77,0xff,0xdf,0x83,0x0b,0x51,0xa3, +0x73,0xf7,0x4a,0xb4,0xeb,0x09,0xc4,0xb2,0xd0,0xb1,0xca,0xbd, +0xa5,0xab,0xb1,0x55,0x5e,0xd7,0x6b,0x5b,0xc6,0x3b,0x9b,0x3b, +0xd8,0x5a,0x3b,0x9d,0x6e,0x0d,0xe8,0x0e,0x1b,0xe2,0x20,0xa4, +0x0b,0xa3,0x99,0xb3,0x15,0xe7,0x2a,0xcf,0x53,0xe1,0xf8,0x81, +0x83,0xd8,0x82,0x0e,0x90,0xc6,0x5c,0x70,0xb9,0x78,0x22,0xd6, +0x95,0xc3,0xd4,0x55,0x0c,0x12,0xf7,0xad,0xc7,0x0e,0xa8,0xb6, +0x39,0xde,0xfa,0xbc,0xe8,0xeb,0xf8,0xaf,0x64,0x17,0xd2,0xe3, +0x2f,0x24,0x47,0xc1,0xa2,0xc5,0x7c,0x59,0x13,0xce,0xfb,0x39, +0x38,0x31,0xec,0x62,0x78,0x88,0x2c,0x2c,0x38,0xe6,0x82,0x52, +0x03,0xdb,0x4c,0x91,0x54,0xea,0xde,0xbc,0x23,0xa5,0x86,0x7b, +0x4d,0x37,0x39,0x2c,0xf5,0xcc,0x35,0xe3,0x7f,0x2c,0xf9,0xae, +0xf1,0x61,0x4f,0x8d,0x71,0xab,0x7d,0x8f,0x57,0xad,0x6f,0x59, +0x4a,0x42,0x4b,0x01,0xa8,0xf0,0xe6,0x05,0x4a,0xe2,0x04,0xc1, +0x99,0xe0,0x78,0x54,0x82,0xf1,0x2c,0x6c,0x54,0x01,0x25,0xe9, +0x9a,0x91,0xae,0xc6,0xc3,0x78,0x1c,0xcf,0x16,0x2f,0x20,0xae, +0xb9,0x36,0x79,0x2e,0xa9,0x5e,0x8e,0x7c,0x55,0x50,0xab,0x4f, +0x85,0x2f,0x15,0x66,0x0d,0x9c,0x22,0x91,0xc9,0x51,0x97,0x42, +0xe8,0x3f,0x3e,0xea,0x2b,0x98,0xd8,0x83,0x13,0x81,0x81,0xa9, +0x3d,0x5b,0x98,0xec,0xc6,0xec,0x81,0xd4,0x76,0x93,0x74,0x3e, +0xc4,0xc8,0x5f,0xef,0xb4,0x29,0x87,0x3b,0x2c,0x18,0xf7,0xec, +0x20,0xeb,0x20,0x07,0x5f,0x07,0x59,0x48,0x41,0x4c,0x82,0x04, +0x7b,0xde,0x5a,0x57,0xed,0xb5,0xda,0xa7,0xd9,0x4f,0xb9,0xf6, +0x8f,0x61,0xb9,0x01,0x2e,0x5f,0xad,0x0f,0x07,0xd9,0xd3,0xc8, +0xed,0x43,0xa9,0x46,0x91,0x64,0x5d,0x0d,0x6d,0xe5,0x0d,0x05, +0xd4,0xba,0x66,0xf5,0x08,0x1f,0x4b,0x91,0xfe,0x62,0x34,0xe5, +0x38,0xf3,0xa8,0x75,0x7d,0x57,0x28,0xcf,0x69,0xcb,0xea,0x90, +0x51,0xf3,0x65,0x70,0xaa,0x11,0x8c,0x65,0x02,0x36,0x19,0xed, +0x58,0xb3,0xb6,0xdc,0x90,0x7f,0xfa,0x6d,0xe3,0x8d,0x84,0x2f, +0xb9,0x04,0xe9,0xa0,0xfa,0x64,0xe6,0x92,0x82,0x30,0x7e,0x8b, +0xca,0xf5,0xad,0x4a,0x48,0x46,0xa6,0x92,0x17,0x86,0x6b,0x70, +0xbc,0x11,0xd4,0x53,0xc2,0x7c,0xe5,0x4d,0x30,0x71,0x65,0x3c, +0xa2,0xe3,0xca,0xd4,0xc0,0xe1,0x8e,0x70,0x15,0x8b,0xc5,0xab, +0xdd,0x6c,0x34,0xce,0xb6,0xd2,0xd9,0x7e,0xb0,0xd6,0x8a,0x7f, +0xfa,0x79,0xd7,0x17,0xf1,0xb0,0x8c,0x93,0xa3,0x33,0x73,0x20, +0xcf,0xbf,0x5f,0xb5,0x8a,0x52,0xc8,0xd4,0x0e,0x35,0x98,0xc1, +0x5a,0xe7,0x2a,0x99,0x09,0x3f,0x49,0x62,0xdb,0x42,0xc5,0x86, +0xa9,0x68,0x47,0x22,0x6a,0xfd,0x3b,0x7d,0x9b,0x2d,0xfc,0xf8, +0x1c,0xbb,0x4c,0xf3,0x24,0x7b,0x4e,0x70,0x1d,0x20,0xd4,0x49, +0xb6,0xc0,0x44,0xe9,0x28,0x88,0xed,0x04,0xa7,0xd0,0x6b,0xe9, +0x88,0x80,0x3e,0xe1,0x04,0x09,0xb4,0x0a,0xb4,0xf7,0xb5,0x0f, +0x2a,0xe4,0xa3,0x13,0x22,0xe2,0xdf,0x25,0x3e,0xea,0x6b,0xcf, +0xb3,0xa9,0x81,0xad,0x56,0xa0,0x40,0x85,0xaf,0x9d,0xc2,0x49, +0x7b,0x68,0x30,0x9d,0x88,0x1f,0x48,0xbe,0x26,0xaf,0x68,0x28, +0xa4,0xf0,0x46,0xf5,0xdd,0x18,0x64,0x94,0xea,0xd7,0xd2,0x18, +0xa4,0xc1,0x0f,0x45,0xed,0x39,0x14,0x5d,0xca,0xf2,0xe0,0x0d, +0xf9,0xd7,0xa4,0x5e,0xe1,0x05,0x18,0x42,0x3b,0x7b,0x13,0xdb, +0x09,0x18,0x8b,0xa5,0xfb,0x98,0xbc,0x4a,0xed,0x3a,0xab,0xe6, +0x93,0x6d,0x32,0x60,0xc1,0x19,0x17,0xca,0x61,0x73,0x2b,0x6e, +0xbe,0x6c,0xa6,0x85,0xea,0x56,0xa0,0x6e,0x41,0x7d,0xd9,0x19, +0xc6,0x30,0x1e,0x06,0x26,0x16,0x07,0x6d,0x28,0xda,0xfd,0xac, +0x6b,0x70,0x20,0xf1,0x53,0x2e,0x11,0x0d,0x3a,0xc0,0x20,0x91, +0x49,0xd2,0xaf,0x37,0xba,0x69,0x9e,0x66,0xc5,0xdf,0x64,0x5a, +0x33,0x33,0xe5,0x6a,0x23,0x03,0x18,0xcb,0x62,0x1a,0xc5,0xc2, +0x0f,0x61,0xc1,0x0e,0x16,0x36,0xab,0x3c,0x84,0x45,0x3b,0x58, +0xd1,0x9c,0x86,0xa3,0xc7,0xb0,0x40,0x43,0xba,0xf3,0x18,0x16, +0x69,0xb0,0x78,0x09,0xcf,0x13,0x54,0x5d,0x0a,0xaa,0x2c,0x2c, +0x44,0x55,0x02,0xaa,0xbf,0xa1,0x2a,0x8b,0xfe,0x7f,0x90,0xd4, +0x93,0xa9,0x4e,0x49,0x1e,0x55,0x69,0x7c,0x44,0x49,0x48,0x7d, +0x48,0x11,0x47,0x09,0xea,0x7b,0x24,0xa3,0x30,0xaf,0x35,0xb1, +0xf4,0x78,0x2a,0x1f,0xe1,0x79,0xc6,0x36,0x88,0x72,0xb1,0x91, +0x8b,0x82,0x3a,0x69,0xda,0x7c,0xf9,0xe8,0x4d,0xe3,0x8a,0x36, +0xfe,0x48,0xbb,0x75,0xa7,0x7b,0x2f,0xc5,0x27,0x1d,0x36,0x4c, +0x1c,0xfc,0xa2,0x84,0x9b,0xcc,0x61,0x1c,0x73,0x5e,0x53,0x09, +0xdf,0xb7,0x84,0xf7,0x99,0xf3,0x07,0x95,0xf0,0x3d,0x0b,0x78, +0x8f,0x39,0xbf,0x43,0x09,0x17,0xc3,0xe9,0x79,0x3d,0xc0,0xb6, +0x22,0x2b,0x37,0xc7,0x63,0xff,0xc4,0x43,0x5a,0x30,0xdb,0x12, +0x67,0xe3,0x6c,0xe6,0xdc,0x43,0xa5,0x7f,0xc8,0x97,0x30,0xe7, +0x6f,0x29,0xfd,0xda,0xb6,0x88,0x39,0x3f,0xd8,0x98,0x50,0x95, +0x56,0x9b,0x25,0x3b,0xdd,0x64,0xef,0x6b,0x19,0xa4,0x1f,0x26, +0x4b,0xc0,0x2f,0x94,0x6c,0x4e,0x32,0x9e,0x39,0xc1,0x2e,0xc1, +0x6e,0x01,0x6e,0xb2,0xe0,0x7c,0xc5,0xea,0x9d,0xb0,0xb7,0xd3, +0x9e,0xf5,0xd7,0x1a,0x14,0x9c,0x7c,0xb9,0x82,0x93,0x2f,0x30, +0x00,0x63,0x89,0x93,0xef,0xa2,0x12,0x9c,0x3a,0xca,0xc9,0xe5, +0x55,0x8d,0xc5,0x54,0x43,0x6a,0xef,0x38,0x79,0xb4,0xea,0xa7, +0xf8,0x61,0x45,0x69,0xb6,0xd7,0xdd,0xde,0xeb,0x97,0x1b,0x9f, +0xca,0xf0,0xd4,0x4a,0x92,0x5d,0x91,0x51,0x91,0x4e,0x59,0xe7, +0x78,0xc6,0x53,0xdf,0xd4,0x44,0xd7,0x9a,0x13,0x7a,0x8e,0x90, +0x2e,0x74,0xb8,0xca,0x36,0xc6,0x37,0x24,0x54,0x25,0x9c,0x6a, +0xe3,0x77,0x07,0xe0,0xb8,0x10,0xf5,0x73,0x29,0xe6,0x7c,0xf5, +0x85,0xfa,0xd8,0x86,0x58,0x4e,0x0f,0x2d,0x4c,0xc0,0x42,0x13, +0x33,0x4c,0x21,0x63,0x0e,0x2e,0x64,0x33,0x4c,0xa5,0xb5,0x9e, +0xcd,0xd9,0x19,0x4d,0x6a,0xbf,0x42,0x4d,0x27,0xd6,0xdc,0x60, +0xa5,0x85,0xa2,0xb1,0xe4,0x5f,0x73,0xb4,0x40,0x8e,0x3b,0x31, +0x52,0xac,0xba,0x2e,0x78,0xc1,0x5e,0x51,0xf9,0xea,0x0d,0x38, +0xa6,0x79,0x55,0x50,0x06,0x1d,0xd1,0xeb,0xba,0x50,0x85,0x97, +0x60,0x27,0x0c,0x31,0xa2,0x74,0xc4,0x32,0xbd,0x3a,0x86,0x3b, +0x59,0x3c,0x86,0xb7,0x08,0x24,0xd2,0xeb,0x44,0x56,0xf9,0xd5, +0xc8,0x4e,0x82,0xda,0xd7,0x40,0x0d,0x36,0x22,0x03,0x5f,0x53, +0xa7,0xde,0x8d,0x6a,0xd7,0x40,0x1b,0xc3,0x6e,0x43,0x63,0xf7, +0xbf,0xa6,0x18,0x43,0xf1,0x01,0x76,0x58,0xe5,0x36,0xb8,0x1c, +0x60,0xd1,0x05,0x27,0x90,0x3b,0xe0,0xb2,0x9f,0xdd,0x29,0xba, +0x90,0xcf,0xe1,0x11,0xb4,0xbe,0xd1,0xc6,0x56,0xb8,0xbe,0x5d, +0x5c,0x63,0x2c,0xac,0xc1,0x49,0xd7,0x61,0x92,0xb0,0x83,0xa6, +0x33,0x0d,0xb8,0x40,0xc4,0x7b,0x9f,0x0a,0xf7,0x18,0x9c,0x30, +0x6e,0xa7,0x78,0xef,0x01,0xab,0x3c,0x52,0x02,0x93,0xc9,0x8d, +0x27,0x15,0xdf,0x67,0xfc,0xc6,0x0d,0xf6,0x62,0x2b,0x93,0x56, +0x96,0x5c,0x91,0x58,0x6d,0x93,0xca,0xff,0x02,0x47,0x51,0xe5, +0x0a,0x0d,0xf5,0xe7,0x07,0xa0,0xb3,0xeb,0x5f,0xd3,0x4d,0xa0, +0x51,0x0f,0xc3,0x70,0xcb,0x15,0x98,0x04,0x7b,0xf1,0x7d,0xe8, +0x63,0xbd,0xd6,0x58,0x6a,0x6c,0xdf,0x52,0x67,0xcb,0x97,0x96, +0x17,0x55,0xe6,0xd7,0xe4,0x68,0x54,0xef,0xec,0xd9,0x6f,0x6a, +0x72,0xc0,0x62,0xb5,0x65,0x99,0x0e,0xff,0x43,0xfb,0xa7,0xdd, +0xbd,0xfd,0x9d,0x06,0x57,0x4c,0x1e,0x9a,0x55,0xf5,0xf2,0x3b, +0xe5,0xda,0xed,0x16,0x5d,0x1c,0x1a,0x8e,0x4c,0x23,0x7a,0x68, +0x30,0xc0,0x2e,0x18,0x07,0x06,0x07,0xd1,0x80,0x81,0x19,0x14, +0xcc,0xc9,0xf1,0x78,0x1f,0xac,0x05,0x6f,0xdc,0xc7,0xa6,0xe6, +0x26,0xe7,0x25,0x16,0xe9,0x27,0xf0,0x11,0x1e,0x14,0x4b,0x9c, +0xe6,0x68,0x66,0xf7,0x86,0x65,0x06,0xe8,0x60,0x01,0xf3,0x99, +0xe8,0x15,0x4e,0x86,0xa8,0x74,0xa4,0xd2,0x9c,0xff,0xb6,0xbd, +0xb3,0xa3,0xe8,0x2a,0x07,0x5a,0xcc,0x79,0xaf,0xf3,0xde,0xd1, +0x3e,0xdc,0xe9,0xe8,0xd0,0x68,0xe7,0x8f,0xe6,0x33,0x29,0x66, +0x4a,0xaf,0x99,0xe1,0x92,0x4c,0x79,0x92,0xda,0xa5,0xb2,0xb8, +0x9a,0x0b,0xb7,0x38,0x0c,0x62,0xe2,0xb2,0x2e,0x66,0x5f,0xc8, +0xe5,0x60,0x2b,0x04,0x11,0x4c,0x68,0x83,0x04,0x06,0x1e,0x63, +0x2b,0x31,0xbe,0xe3,0xf6,0x20,0xe0,0x3b,0x0e,0x74,0x98,0xa0, +0xf5,0xde,0x3b,0x0d,0xf7,0x73,0xf8,0x18,0xac,0x89,0x39,0x26, +0xb4,0xb3,0xca,0xbf,0x8d,0x1c,0xa3,0x14,0xe3,0x32,0x28,0xc1, +0xee,0x85,0xf0,0xe0,0x77,0xd0,0x44,0xa5,0xcb,0x14,0x75,0x47, +0x0f,0x40,0x5b,0xc7,0xbf,0x54,0xcc,0xa0,0x4e,0x8f,0x1d,0x52, +0x19,0x00,0x5b,0x3d,0x16,0x6d,0x2d,0x08,0xd8,0x6a,0xa1,0x2d, +0xf3,0xa7,0x98,0x47,0xd0,0xba,0x1f,0x34,0x60,0x35,0x6a,0x74, +0xc1,0xb8,0x1f,0x9f,0xb6,0xac,0x6b,0x37,0x30,0x47,0x75,0xfa, +0xb1,0xd6,0xfa,0xd9,0x8a,0x3f,0x4d,0x70,0x13,0xae,0x86,0x4d, +0xfa,0x68,0x6e,0x09,0xe6,0xcb,0x7a,0x7e,0x06,0x6b,0x06,0x8a, +0x20,0x90,0xc0,0x8a,0x66,0x5c,0x71,0x45,0xf1,0x39,0x04,0xdb, +0x5a,0xc5,0x35,0x38,0x22,0x8c,0x65,0x4c,0xce,0x59,0x84,0x3b, +0xaa,0xba,0x45,0x86,0x44,0xd9,0x7f,0xb4,0x87,0xc9,0xb0,0x50, +0xba,0xcb,0xdc,0xcd,0x2e,0xe9,0x4e,0x51,0x4b,0x6a,0x8d,0x1d, +0xfe,0x72,0x26,0x1e,0x60,0x8c,0x20,0x97,0xe8,0xe0,0xec,0x21, +0x16,0xfd,0x9c,0x89,0x01,0xaa,0xf7,0xb1,0x42,0xb1,0x26,0x39, +0x86,0xb3,0xaf,0xb0,0x30,0x7b,0x01,0x39,0x8c,0xb3,0xaf,0xb3, +0xa2,0x21,0x45,0x21,0x63,0xf7,0xe3,0x58,0x06,0x4a,0x55,0x70, +0xdc,0x1d,0xea,0xaf,0x82,0x15,0x9a,0x92,0x88,0xb2,0x80,0x9a, +0xe0,0x62,0xc7,0x50,0x3e,0xcd,0x33,0xdd,0x25,0x89,0xa6,0xb7, +0xe1,0x4d,0xa4,0xb2,0x3f,0xb7,0x2f,0x75,0xc8,0x9c,0xc2,0xa1, +0x63,0x67,0xcc,0x3d,0x2c,0x38,0x08,0x80,0x85,0x24,0xdd,0x21, +0xc5,0xea,0x92,0x73,0x6b,0x0a,0x1f,0x59,0x17,0xd0,0x1e,0x52, +0xce,0xe1,0xb4,0x30,0x72,0xc9,0x36,0xde,0xc4,0x62,0x66,0xfb, +0xa5,0xf3,0x1d,0x51,0xdd,0x11,0xb5,0x32,0x65,0x38,0x3b,0xe2, +0x47,0xc0,0xe8,0x02,0x84,0x67,0xc2,0xbe,0x1a,0xcf,0x4e,0xde, +0x05,0xf7,0x63,0x68,0x28,0x3a,0x7f,0xe4,0xa1,0x6e,0xb6,0x76, +0xe7,0xc1,0x76,0x4b,0xfe,0xee,0xcd,0xce,0xa7,0xa5,0x0f,0x38, +0x21,0x32,0x98,0x0c,0x1d,0xee,0xdd,0x59,0xbd,0xaf,0xb7,0x9c, +0x77,0xb8,0x67,0xf8,0x40,0xff,0x32,0x87,0xa7,0x50,0x8d,0xf8, +0x37,0x7b,0x77,0x9c,0xac,0xd6,0xf6,0xe3,0x0b,0x8f,0x17,0x98, +0x65,0xd9,0x70,0xc2,0x78,0xf1,0x67,0x82,0x76,0x8c,0x63,0xf8, +0xa5,0x1a,0xb5,0x57,0xa0,0x2d,0xe8,0xbd,0x19,0x2f,0xea,0xc1, +0x66,0xd6,0x7f,0xcf,0x11,0x03,0xf4,0x70,0xca,0xd6,0xe1,0x21, +0xba,0xe1,0xc9,0x83,0xdc,0x3f,0x38,0x58,0x3a,0x97,0xd9,0x9b, +0x7f,0xfa,0x81,0x2a,0x38,0x33,0xf2,0x9c,0x6c,0xb9,0x1a,0xbc, +0xc7,0x6a,0x67,0x29,0xe1,0x34,0xf8,0x82,0x88,0x97,0x3e,0x17, +0x2e,0x31,0xe2,0x25,0x9a,0x1b,0x1e,0x09,0x97,0xb6,0xb1,0xc6, +0xe3,0x36,0x8b,0x97,0xbe,0xa2,0x09,0xa0,0x58,0x58,0x4a,0x40, +0x0b,0xb6,0x5f,0xc1,0xed,0x70,0xe8,0x88,0xb8,0x0b,0x67,0x89, +0x1e,0x57,0x9f,0x40,0x85,0x30,0x8b,0x15,0x02,0xc5,0xc5,0x64, +0x1f,0xe3,0x19,0x71,0x89,0xe6,0x24,0x5d,0x18,0x2b,0x7c,0x26, +0x6e,0x15,0x3f,0xfb,0x27,0x1b,0x8e,0x63,0x4c,0xb6,0xa0,0xca, +0x91,0x72,0x53,0x1e,0x96,0xde,0x1d,0xfe,0x23,0x19,0x3e,0xe0, +0x9e,0xa1,0x3e,0xa3,0x59,0x70,0x6a,0x40,0xf5,0x31,0x85,0xb5, +0xa3,0xc7,0xac,0x1b,0x66,0x2b,0x19,0x8e,0x1e,0xb3,0x3e,0x2c, +0x55,0xfb,0x1b,0xc6,0x6d,0xd2,0x02,0x9e,0x61,0xe9,0x48,0xf5, +0xe1,0xd1,0x23,0xd5,0x87,0x61,0x9a,0x74,0xb0,0xda,0x77,0x04, +0x8a,0xc1,0x0d,0x8b,0x69,0xd4,0x90,0x5d,0x20,0xfa,0x8c,0x77, +0x44,0x7c,0xa9,0x1a,0x18,0xfe,0x20,0xdc,0x17,0x27,0x89,0xf7, +0xbf,0xa7,0xef,0x1b,0x6b,0xb4,0x19,0x89,0x66,0xb9,0x05,0x0f, +0x4b,0xee,0x0e,0xfd,0x33,0x19,0xa6,0x73,0x0f,0xd0,0x90,0x39, +0x94,0xef,0xd3,0xab,0x7a,0x8b,0x69,0xcc,0x4c,0x6f,0x97,0xde, +0x67,0x9c,0xad,0x24,0xee,0x3c,0x49,0xb4,0xfd,0x75,0x03,0xb5, +0x83,0xb9,0x91,0xa5,0x70,0x78,0x40,0xdc,0xa3,0x07,0xba,0x6f, +0x36,0xb2,0x9a,0x41,0x87,0x42,0xf6,0x85,0x48,0x75,0x0f,0xd7, +0x94,0xc2,0x47,0x15,0xa0,0xda,0xcc,0x09,0x4a,0x23,0xea,0x52, +0xdb,0xd2,0xa4,0x23,0xe0,0x03,0xe6,0x11,0xfc,0x98,0x5d,0x1a, +0xb2,0x5d,0x7f,0x8d,0x6a,0xbd,0x55,0xcd,0x70,0x5e,0x7f,0x52, +0x8b,0xec,0x62,0x42,0xec,0x27,0x17,0xa3,0x5b,0x70,0x2e,0xdf, +0x54,0x66,0x0b,0xb2,0x98,0xf4,0x90,0xb8,0x90,0x70,0x59,0x68, +0xe4,0xd9,0x58,0xa5,0x4b,0xb5,0xb1,0x5d,0x8d,0x33,0x61,0x0d, +0x0b,0x1e,0x2a,0x38,0x97,0x5d,0x16,0xb2,0x4d,0x7f,0xb5,0xf4, +0xe0,0x50,0xee,0x40,0x52,0x9b,0xec,0x82,0x04,0x0e,0xa2,0xda, +0x70,0x21,0xdf,0x5c,0x66,0x0d,0xb3,0xa3,0xd3,0x43,0x2e,0x84, +0x44,0xca,0x42,0x22,0xcf,0xc5,0xd1,0x07,0xe3,0xa4,0x07,0xd5, +0x58,0x61,0xf3,0x61,0x29,0x21,0xa7,0x49,0x09,0x39,0x0d,0x77, +0x49,0xd2,0x48,0x53,0x1c,0x30,0xef,0x23,0x30,0xc4,0xab,0xd6, +0xb1,0xce,0xb9,0xd2,0xde,0x95,0xcf,0x3f,0x53,0x70,0x3a,0xf7, +0x24,0x87,0x7b,0x99,0xe6,0xfa,0xfa,0xc6,0xea,0x36,0x9a,0x71, +0xfa,0x3e,0x66,0x9a,0x6f,0xd4,0xdc,0x2f,0xff,0xce,0x30,0x97, +0x77,0x5d,0x61,0xbb,0xc5,0x74,0x1f,0x67,0x02,0x53,0x60,0x5c, +0x0f,0x8e,0x7b,0xad,0x3d,0x1f,0x67,0x18,0xc1,0x0c,0x9a,0xdc, +0x37,0x1b,0x40,0x10,0xb3,0x7f,0x8b,0x86,0xe6,0x0a,0xbd,0x72, +0x13,0xbe,0x20,0x3d,0x3f,0x23,0x2f,0x9d,0x13,0xc7,0x0e,0x0c, +0x43,0x88,0x30,0x9d,0x4d,0x0a,0x4d,0xa4,0x3f,0xd2,0x8a,0xda, +0xef,0x88,0x0e,0xe3,0x15,0x11,0x27,0x89,0xfb,0x1f,0x54,0xdc, +0x2a,0xe2,0xfd,0x1f,0x25,0x71,0x53,0xf5,0x4e,0xd3,0x2c,0x37, +0xe7,0x61,0x3e,0x15,0x77,0x12,0x15,0xf7,0x23,0x49,0xdc,0x05, +0x54,0xdc,0x77,0xa9,0xb8,0x47,0xd5,0x6b,0x2c,0xa9,0xf7,0xa5, +0xb4,0x58,0x21,0x5f,0x5a,0xac,0x90,0x2f,0xa1,0x8a,0x09,0xf4, +0x7a,0x82,0x74,0xad,0x50,0x6f,0xbe,0xa4,0xde,0xf9,0x68,0x48, +0x68,0xa6,0xdf,0x8f,0x2c,0x4b,0x7d,0x61,0x0f,0x81,0x69,0xf4, +0x9a,0x76,0xf4,0xaf,0x59,0x2a,0xf6,0xcc,0xa9,0xf0,0xf8,0x62, +0x35,0x30,0xfd,0x5c,0xb8,0x87,0x5f,0xa2,0x2e,0x8b,0x73,0x1e, +0x1c,0xbe,0xe1,0x75,0x9d,0xc3,0x2c,0x23,0xd8,0xcf,0xd8,0xeb, +0xec,0xd5,0xc3,0x49,0x46,0xd2,0xf1,0x42,0x0b,0x6e,0x3e,0x7d, +0x94,0xf7,0x94,0xbb,0xc4,0xa4,0x6d,0xfb,0xfa,0x20,0xa8,0x6d, +0x2f,0x94,0xf3,0xe2,0xc4,0x2f,0xd8,0x28,0x64,0x6c,0xb7,0xaf, +0xd9,0x5f,0x6d,0xc5,0xbf,0xbe,0xdf,0xf1,0x2a,0x81,0xb6,0x73, +0x08,0x8d,0xa9,0x59,0x9c,0xe9,0x52,0xed,0x66,0x1a,0x32,0xd3, +0x3a,0xa4,0x76,0x9a,0x66,0x2b,0x19,0x09,0x3f,0x48,0xed,0x74, +0xa2,0xed,0xc4,0xcd,0xe8,0x40,0x7a,0xf0,0x9a,0x11,0x3b,0xb2, +0xa7,0x91,0xe0,0x24,0x7a,0x73,0x12,0x8b,0x93,0x3f,0x26,0x01, +0xeb,0x3d,0xd7,0x3b,0xad,0x6b,0xde,0x90,0xbf,0xaf,0x60,0xab, +0x3c,0x9f,0xf7,0xb9,0xed,0xfa,0xd2,0xab,0xb7,0xf8,0x76,0xe9, +0xf7,0xd9,0xdf,0x71,0xa8,0x91,0x46,0x02,0x37,0x9e,0x5e,0xef, +0xbc,0xb6,0x6e,0x75,0xe9,0xaa,0xfc,0x25,0xed,0xd9,0xfc,0xe9, +0x97,0x27,0xfe,0xf0,0xba,0x5d,0x78,0xb5,0xe4,0xb7,0x2c,0xfa, +0xfd,0x23,0xb1,0x93,0x08,0x71,0x20,0x13,0x0f,0x6f,0x97,0x4e, +0xda,0xe9,0xa3,0xe0,0x24,0x43,0xda,0xcd,0x8a,0x21,0x62,0x0f, +0x3b,0x92,0x29,0x9c,0x22,0x94,0x82,0x3a,0xc1,0x07,0xac,0x48, +0x70,0x3a,0x39,0x5d,0x76,0xa2,0xd2,0xa5,0xc8,0xfd,0x04,0x5f, +0xe9,0x59,0xe6,0x59,0x7c,0x82,0x2b,0xa6,0xf0,0xc5,0xa7,0xdc, +0xa5,0xc6,0xa5,0xd8,0xf5,0x38,0x5f,0xe5,0x51,0xee,0x56,0x74, +0x9c,0xa2,0xda,0x35,0x23,0x2d,0x04,0x67,0x52,0x72,0xb4,0x59, +0x8f,0x36,0x5a,0x09,0x66,0x1a,0xe2,0x11,0x61,0x36,0x1c,0x61, +0x05,0xcd,0x37,0xcd,0xc4,0x90,0xf1,0x0e,0x57,0x78,0xc9,0x4b, +0xaa,0x36,0x56,0xbc,0xff,0x82,0x8d,0xc0,0x71,0x96,0x5b,0xe7, +0x1c,0x92,0x96,0xf9,0x4c,0xbd,0xd7,0xf3,0x3a,0x09,0x3e,0xe4, +0xee,0xbd,0x73,0x92,0x1b,0xff,0xe9,0x24,0x46,0x92,0xd6,0x58, +0x4c,0x94,0x9c,0x32,0x51,0x72,0xca,0x89,0xf4,0x7a,0x22,0x2b, +0xf6,0x3a,0x11,0x23,0xc1,0xb8,0x87,0x15,0x57,0xd0,0xf6,0xa0, +0x95,0x30,0x16,0xac,0x58,0x61,0x41,0xa0,0xa4,0xc9,0x44,0x49, +0x93,0x66,0x38,0x9b,0xfc,0x0e,0x09,0x0b,0xd9,0x57,0x68,0x44, +0xac,0xc2,0x4c,0xc3,0x8d,0x23,0xf2,0x9b,0x73,0xba,0xd3,0x9b, +0x0c,0xf2,0xf8,0x10,0xf3,0x93,0x07,0x4e,0x9a,0x6c,0x0c,0x5e, +0x1b,0xba,0x2d,0x32,0x59,0x97,0x97,0xce,0x17,0xd8,0x5f,0x0a, +0xd3,0xcb,0x38,0x2c,0x6c,0x25,0x01,0x6d,0x3e,0x5d,0x67,0x1a, +0x8d,0xbd,0xf9,0x3c,0xdb,0x3c,0xc3,0x74,0x6b,0xda,0xb7,0x1c, +0x1a,0x4f,0xcd,0x20,0xe5,0xff,0x12,0xf6,0x16,0xe0,0x55,0x5c, +0x5b,0xfb,0x38,0x05,0xce,0xec,0x81,0x52,0x7a,0xa1,0xdd,0xe9, +0x04,0x7a,0x13,0x5c,0x8a,0x43,0xd0,0xe2,0xee,0x71,0x4f,0x88, +0x10,0x17,0x22,0x10,0x12,0x12,0x12,0x42,0x0c,0x27,0xee,0x27, +0xee,0x21,0x4e,0xdc,0x15,0xd7,0xe2,0xde,0x42,0x5b,0xda,0xde, +0x96,0xca,0x6d,0xbb,0xe6,0x74,0xcd,0xe9,0xf7,0xdf,0x73,0x42, +0xef,0xbd,0xbf,0xef,0xf9,0xee,0xf3,0x2f,0x7d,0x4e,0xe6,0x39, +0xb2,0x67,0xc9,0xbb,0xd6,0x7a,0xd7,0x9e,0x99,0xbd,0x71,0xd5, +0x75,0x70,0x6c,0x47,0xc5,0xbd,0xaf,0xdb,0xe7,0xdf,0x84,0x21, +0xed,0x38,0xe4,0x09,0x43,0xde,0xf8,0x27,0xa6,0x9f,0xe2,0x30, +0x2b,0x18,0xb6,0x65,0xae,0xd5,0x37,0xeb,0x90,0x58,0xc1,0xde, +0x6d,0xb8,0x14,0x53,0xec,0xad,0x1b,0x71,0x7d,0x0f,0xac,0x87, +0x73,0xf8,0x0e,0xf2,0x5c,0x86,0x85,0xe2,0x7b,0xee,0xbc,0x52, +0xd9,0xa0,0xfb,0x53,0x1b,0x11,0xc7,0xcc,0xa2,0x56,0xdc,0xfe, +0x08,0x19,0xc9,0xe6,0xaf,0xc4,0xbb,0xf8,0x87,0x74,0xf7,0x95, +0x6c,0x12,0xbb,0x95,0x93,0xb7,0x56,0xec,0x11,0x60,0xd4,0x9d, +0xce,0x7f,0x26,0x32,0x93,0xdc,0x64,0x26,0xd9,0x9a,0x17,0xd8, +0xa5,0x73,0xe9,0xff,0x30,0x49,0x0c,0x33,0x09,0xa6,0xef,0xa5, +0x5b,0x70,0xfc,0x4d,0x02,0xe3,0x71,0x04,0x5d,0x87,0xe3,0xef, +0x11,0xd5,0xd8,0x23,0xb2,0x91,0x62,0xe4,0x58,0x8d,0x91,0xa1, +0x3d,0x96,0x1d,0x8f,0x25,0xf8,0x07,0x0a,0x14,0xdf,0x79,0xcc, +0x08,0x5f,0xcf,0x4a,0xfa,0x18,0xf8,0x95,0x04,0x57,0x5b,0xd3, +0x65,0xf8,0xce,0x73,0x02,0x4b,0xb5,0x80,0x5f,0xc6,0xa4,0x1c, +0xfd,0xc7,0xf8,0x33,0x74,0x17,0xcb,0xa1,0xb2,0xb3,0x4c,0x7f, +0x66,0xce,0x9a,0x2c,0xdd,0x7d,0x43,0x22,0x3f,0xd9,0xbb,0x6e, +0xb6,0xfe,0xf1,0x06,0x41,0x3f,0x72,0x77,0x94,0x7e,0x34,0xff, +0x02,0x16,0x75,0xe2,0xa2,0x7b,0xb0,0xa9,0x13,0x37,0xdd,0x87, +0xa5,0x60,0x8c,0x4b,0xaf,0xfc,0x0e,0xa3,0x9e,0xb5,0x2f,0xbf, +0x60,0x62,0x80,0x73,0xd9,0xcb,0x2a,0xab,0x47,0x38,0xea,0x97, +0x9d,0x38,0x1f,0x8d,0x61,0xfe,0x5a,0x5c,0x69,0x01,0x2b,0xd7, +0xe1,0x2c,0x0b,0x98,0xb5,0x90,0xec,0x8e,0xd1,0x3f,0x66,0x74, +0x3c,0x9e,0x99,0x7d,0x6c,0x32,0x7c,0x9c,0x02,0x5a,0xb9,0x91, +0x31,0x11,0xc7,0x22,0x62,0xe4,0x00,0x9e,0x7e,0x7b,0xe0,0x37, +0x19,0x0a,0x4f,0x99,0xde,0xdb,0x0b,0x02,0x7a,0x74,0xee,0x31, +0x9b,0x0d,0x06,0xb0,0xf9,0xbf,0xf2,0x73,0x95,0xac,0xf7,0x91, +0x83,0x74,0x3d,0xce,0xbd,0x4b,0x54,0x8b,0x70,0x86,0x1c,0xc9, +0x55,0x2c,0x92,0xf1,0xdb,0xe5,0xf4,0x93,0xa9,0xdf,0x13,0xc8, +0xfe,0x84,0xe2,0xd0,0xef,0x19,0x31,0x17,0xed,0x16,0xc8,0x80, +0xa8,0x92,0x73,0xd5,0x1f,0x43,0x45,0x47,0xd6,0x75,0x0c,0xc0, +0x0a,0x23,0x92,0x01,0x03,0x0a,0x8c,0xb4,0x85,0xad,0xdc,0x09, +0x53,0x05,0x6e,0xb5,0x63,0xf1,0x7b,0xdc,0x58,0x81,0x1b,0xec, +0x60,0x1d,0x77,0x7c,0xb7,0x42,0x2d,0x70,0xc7,0x2f,0x29,0x64, +0xaa,0xbf,0x92,0x3b,0xd1,0xa7,0x80,0xd5,0x4d,0xb8,0x96,0x3b, +0xd1,0xd4,0x15,0x77,0x3f,0xa5,0x4b,0xa9,0x7d,0xb0,0x71,0x47, +0xd0,0x86,0xa3,0x2b,0xa3,0xb5,0xd3,0xb0,0x51,0xa1,0x8f,0x2b, +0x06,0x18,0x1d,0x15,0x93,0x5f,0x53,0xff,0x0c,0xff,0x0c,0xbf, +0xb4,0x02,0x65,0x5e,0x56,0x6e,0xd6,0xa1,0x6c,0x21,0xff,0xdc, +0x01,0xa5,0x7f,0xa6,0x5f,0x86,0x76,0xa1,0x32,0x2f,0x3b,0x2f, +0xdb,0xa3,0x5c,0xd8,0x7f,0xc0,0x37,0x70,0x5f,0x90,0x6b,0x8e, +0x9b,0xd2,0x23,0xcd,0xdf,0x5d,0x28,0x09,0x2f,0x0d,0x2d,0x0b, +0x71,0x3f,0xe4,0x12,0xe2,0x1c,0x96,0xef,0x24,0xb4,0x65,0x36, +0xe5,0x9e,0xcf,0x2f,0x0c,0x2d,0x08,0xc9,0x0f,0x39,0x70,0xd0, +0xff,0x90,0x6f,0xb0,0x6b,0x96,0x6b,0xa6,0x47,0xda,0x7e,0x17, +0xa1,0xf8,0x68,0xc9,0x91,0x92,0x30,0x8f,0x60,0xd7,0x50,0x97, +0x23,0x39,0x8e,0x42,0x7b,0x66,0x73,0x4e,0x7d,0x41,0xc5,0xa1, +0x73,0x41,0xa5,0x87,0x78,0xc8,0x97,0x72,0x28,0xba,0x73,0xae, +0x47,0xe3,0x2a,0x74,0x6b,0x59,0xe1,0x7b,0xa5,0x1e,0x86,0xaf, +0x60,0x19,0x39,0xe0,0xb4,0xc9,0x15,0xf7,0x06,0xa7,0x99,0x0a, +0x70,0x2c,0xe7,0x45,0x4f,0xe1,0x1d,0x1e,0xa6,0xba,0x70,0x9b, +0x72,0x83,0xee,0xe8,0x80,0x1f,0xd7,0x98,0x95,0xd9,0xa8,0xfb, +0x84,0x18,0xb1,0x82,0x3b,0x16,0x5c,0x58,0xc1,0x6d,0x1d,0x2c, +0xb8,0x93,0x68,0xbb,0x18,0x6f,0x45,0x6c,0x87,0x5b,0x48,0xf1, +0x9d,0x8c,0x6a,0x72,0xaa,0xf3,0x34,0x3e,0x2d,0x2e,0x35,0x2e, +0xcd,0x22,0x49,0x38,0x60,0xe8,0x6a,0xbc,0xc3,0xbc,0xde,0x5d, +0xa8,0xaf,0x2c,0xd3,0xec,0xbd,0xfc,0x6b,0x13,0xa7,0x56,0x60, +0x0b,0xbd,0xca,0x72,0x3a,0x23,0xf2,0x7d,0x30,0xbb,0x51,0x9a, +0x81,0x3f,0x8a,0x33,0x1a,0x09,0xda,0x81,0x03,0xc5,0x19,0x7d, +0x30,0x83,0x83,0x9e,0xa9,0x14,0x5e,0x36,0xe0,0x4b,0x4e,0x32, +0x9d,0x45,0x2f,0x40,0xbe,0x01,0x11,0x8b,0x91,0x15,0xf2,0x79, +0x2c,0x78,0xe7,0x11,0x78,0x17,0x78,0xba,0x7a,0xd3,0x43,0x02, +0x44,0xeb,0xee,0xea,0xf5,0x1c,0x8c,0xd4,0x7a,0xf8,0x60,0x35, +0x91,0x7e,0xb8,0xc5,0xb8,0xd0,0xcc,0xab,0x44,0x6c,0x92,0xee, +0x50,0xd7,0x08,0xa6,0x5e,0x1d,0x38,0xc0,0x97,0xea,0xb9,0xf8, +0x25,0x6b,0x76,0x0f,0x38,0x6c,0xf2,0xc0,0x3d,0xc1,0x69,0x26, +0x02,0x84,0x67,0x7f,0xde,0x55,0xf0,0x80,0x87,0x45,0xce,0x6f, +0xd5,0xf3,0xfc,0x0f,0xf5,0x26,0x92,0x49,0x70,0x9b,0x4a,0xed, +0x6d,0x62,0x3b,0x27,0xb5,0xe3,0x64,0xa6,0x5f,0xfb,0xa0,0x7e, +0xed,0x4c,0xbf,0xeb,0xf2,0x9a,0x2e,0xe2,0xa6,0x26,0x34,0x6e, +0x03,0x97,0x26,0x74,0xe9,0x32,0x35,0x47,0x67,0x3b,0x70,0xb6, +0x26,0x2a,0x1d,0xf5,0x66,0x6a,0xcb,0xed,0x8f,0x8c,0x2d,0xd6, +0x05,0xcb,0xe7,0x2c,0xe7,0xbf,0x91,0xee,0xbc,0x20,0x51,0x38, +0xd4,0x71,0xf5,0x9c,0x6d,0x1e,0x79,0x9b,0xcf,0x99,0x67,0x7b, +0x3b,0x0b,0x97,0xf7,0x5f,0x73,0xaf,0xf2,0xcf,0x2d,0x17,0x0a, +0xdd,0x81,0xbf,0xd3,0xc9,0xd2,0x3a,0xd5,0xbe,0x36,0x98,0xd6, +0x3b,0x75,0xfa,0xb9,0x3a,0xe5,0x60,0xd4,0x5a,0xfe,0x2b,0x6a, +0x43,0xe4,0x0a,0x7e,0x01,0x27,0x52,0xb4,0x15,0x8d,0xc1,0x96, +0xc0,0x1b,0x1f,0x39,0x5c,0x43,0xe4,0x9c,0x96,0x8a,0x5a,0xf2, +0x8e,0xba,0x43,0x48,0xb4,0x47,0x40,0xc8,0xd6,0x90,0x34,0x67, +0xe1,0x69,0x56,0x75,0x59,0x42,0x2f,0xdf,0xe2,0xc1,0x39,0xa6, +0x87,0xd5,0xe9,0xf4,0x72,0x05,0xa9,0xc9,0x79,0xba,0x25,0xc4, +0x33,0x59,0xe1,0xb6,0x87,0x1c,0x8a,0x3e,0x9b,0xa5,0x5b,0x0e, +0x04,0x47,0x10,0xf1,0x63,0x07,0x39,0xd2,0x43,0xe4,0x48,0x1f, +0xef,0x44,0x19,0x4f,0xb9,0x24,0xce,0xe2,0xac,0x20,0x8b,0xda, +0xe3,0xe5,0x46,0x02,0x97,0x97,0xd0,0x3d,0x78,0xb9,0x99,0x1d, +0xe8,0x51,0x4b,0xbc,0xdc,0x41,0x36,0x61,0x08,0x7d,0x90,0x7f, +0xb5,0xb2,0xbe,0xca,0xad,0x4a,0xf0,0xda,0xb7,0xce,0x75,0x6b, +0x08,0x3f,0x1a,0x3c,0x54,0x0b,0x68,0x0f,0x8c,0x37,0xed,0xee, +0x81,0x51,0x6d,0x38,0xea,0x8a,0xd9,0x4e,0x1c,0x2f,0xbf,0x8c, +0xb0,0x86,0x11,0xa6,0x44,0x15,0xac,0x9e,0x2f,0xdb,0x24,0x42, +0xb6,0x89,0xc5,0xe7,0x2c,0x71,0xfd,0x22,0xdd,0xfd,0x9c,0x44, +0x4d,0x72,0x5a,0xb3,0x68,0x07,0xdf,0x80,0x2b,0x1f,0xc0,0xec, +0x26,0x9c,0x7d,0x07,0x66,0x37,0xe3,0xec,0xcf,0xe4,0xcd,0x10, +0x16,0x93,0xcc,0xfc,0xb4,0x82,0xc4,0x6c,0xf3,0x74,0xe1,0xe8, +0x81,0x30,0xef,0x43,0xbe,0xf2,0x4e,0x18,0xc9,0x59,0xc9,0x79, +0x29,0xc5,0x56,0x19,0xc2,0xfe,0x1d,0x8e,0x6b,0x4c,0x76,0x57, +0xed,0x15,0x52,0xd3,0x53,0x95,0xa9,0x59,0x3c,0xfe,0xa3,0xab, +0x0b,0x7e,0x21,0x47,0x22,0x2b,0xf6,0x68,0x8c,0x99,0x08,0x1f, +0x6a,0x5f,0x1f,0x4c,0x81,0x9d,0x3a,0x17,0xfe,0x33,0x05,0x5a, +0x0c,0x1a,0x33,0x5c,0x4e,0x05,0xbf,0xe1,0x39,0x0a,0x6b,0xd0, +0x1c,0xd7,0x10,0x71,0x93,0x16,0x3b,0xb2,0x60,0x47,0x0b,0x61, +0x2c,0x5d,0x31,0xf3,0x29,0x81,0x57,0x5a,0x2b,0xa6,0x3d,0x25, +0xe2,0xf1,0x10,0xd9,0xca,0xe1,0x72,0x52,0x0c,0x1f,0x4c,0x8a, +0xe1,0x72,0x81,0x73,0xc4,0x69,0xf4,0x33,0xf8,0x78,0x23,0xc1, +0x8f,0x59,0xfe,0xbc,0x03,0x1f,0x6f,0x20,0x76,0xc3,0xd7,0xe0, +0xc7,0x0f,0x18,0xb7,0x99,0xaa,0x62,0x81,0xb5,0x81,0x4b,0xc8, +0x8e,0xcf,0x8e,0xcb,0x36,0x4d,0x10,0x7c,0xa6,0x58,0x2d,0x58, +0xbb,0xbe,0xda,0x51,0x48,0x94,0xff,0x4b,0xe2,0x71,0x3a,0x41, +0xab,0x48,0x1c,0x6f,0x8b,0xef,0xea,0xb4,0xee,0x2d,0xfc,0x2c, +0xf3,0xb3,0xa4,0xd7,0xda,0x10,0x85,0x4b,0x98,0x8a,0xac,0xac, +0xfe,0xca,0xd5,0x67,0xe5,0xb0,0xb2,0xfa,0xf5,0x54,0x52,0x54, +0x57,0xda,0x9b,0xde,0xc2,0x8b,0xd7,0xd4,0x4a,0x6a,0x07,0x4b, +0xfc,0xc0,0x02,0xa2,0xc6,0x81,0x0b,0xc9,0x8a,0xcb,0x64,0xff, +0x3c,0x3b,0x84,0xe9,0x1e,0x38,0xd3,0x0f,0x67,0x84,0xf3,0x18, +0x45,0xd0,0x27,0x18,0xad,0x6d,0x70,0x82,0x4e,0x9b,0x83,0xa2, +0x07,0x16,0x28,0xc1,0x1d,0xc2,0xc6,0xc1,0x6e,0x52,0x75,0xb6, +0x3a,0xb6,0x3a,0x8e,0x57,0xeb,0x13,0x87,0xa3,0x0e,0x91,0xee, +0x31,0x29,0x86,0xc2,0x8d,0xd4,0xdf,0x0a,0xaf,0x15,0xc4,0xfb, +0xc6,0xf9,0xc6,0xee,0x6f,0x51,0x0a,0xa1,0x0f,0x0f,0xfe,0xf3, +0xd0,0xd5,0x3d,0x61,0x42,0x92,0x47,0x92,0x7d,0x92,0x7d,0x60, +0x74,0x40,0xd4,0xfe,0x68,0x5e,0xb5,0x9d,0xd4,0xc4,0x57,0x27, +0x54,0x26,0x32,0x62,0x46,0xb0,0xb8,0x18,0x9d,0x3a,0x70,0xbd, +0x8e,0xf4,0x50,0xd5,0x42,0x43,0xf7,0xfa,0x58,0xf8,0xec,0xe5, +0x71,0x32,0x57,0x7e,0xbe,0xa8,0x29,0xb7,0x95,0x3f,0x87,0xb7, +0xa8,0x1e,0x68,0xbf,0xe4,0x3a,0x50,0x9b,0x82,0xf6,0x37,0xa8, +0x4d,0x70,0xb2,0x05,0xc5,0x4f,0xe6,0x91,0xb3,0xcd,0xa7,0xdb, +0x4f,0xf7,0xf1,0xf0,0x77,0xad,0x6f,0xf0,0x93,0xb9,0xdc,0x68, +0xb1,0x80,0x35,0x85,0x66,0x11,0xc6,0x11,0x06,0x51,0xfc,0x77, +0xb0,0xa8,0x1d,0x17,0x3d,0x32,0xc0,0x60,0x32,0xe1,0x88,0x02, +0x4c,0x0d,0xd0,0x9a,0xec,0x3b,0xee,0x7d,0xc2,0xeb,0x78,0x32, +0xcb,0x3e,0x5b,0x95,0xb0,0x38,0x0f,0x74,0x0a,0x79,0xf8,0xe9, +0x2c,0xeb,0xb4,0x38,0xf7,0xf0,0xc4,0x72,0xdd,0x26,0xf2,0x43, +0xd6,0x8f,0xe5,0x2f,0xce,0xfb,0xb4,0x08,0xab,0x9d,0x97,0xf9, +0xce,0x61,0x89,0x6c,0xc8,0x6e,0x74,0x27,0x86,0xb9,0x07,0xee, +0xea,0x80,0x0b,0xd7,0xaa,0x54,0xd6,0xea,0xde,0x26,0x86,0xe9, +0x0a,0xd6,0x7d,0x6d,0xa4,0xf8,0x39,0x97,0x9c,0x9c,0x94,0x92, +0x98,0x62,0x94,0x2f,0x6c,0x5b,0x3a,0x73,0x13,0x8e,0xb6,0x2a, +0xb5,0x10,0x6a,0x32,0x2a,0x95,0x15,0xd9,0x27,0x30,0x38,0x64, +0xe7,0x94,0x59,0x6d,0xb6,0x42,0x6f,0x77,0x45,0x7b,0xee,0x35, +0x66,0xe7,0xa9,0x8c,0xdf,0x67,0x18,0x2b,0x60,0x23,0xd7,0x94, +0x9d,0xdd,0xac,0x2b,0x4e,0xc5,0x20,0x52,0x9a,0x53,0x92,0x9f, +0x53,0xc4,0xaf,0x8c,0xa2,0x01,0x07,0x7c,0x0e,0x7a,0x1f,0xe2, +0xb1,0x8d,0x2b,0xc9,0x2e,0xcc,0x2d,0xc8,0xe3,0x61,0x0e,0x1a, +0x52,0x0c,0xe6,0x4e,0x17,0x9c,0x2a,0x2a,0x19,0x07,0x87,0xb8, +0x8b,0xab,0xe8,0x23,0x60,0x7d,0x07,0x5e,0xb7,0xa1,0x4b,0xf1, +0x18,0x89,0x2b,0x3c,0x5b,0x72,0xa6,0x9c,0x87,0x16,0x2d,0x88, +0x5f,0x8a,0xf1,0x4c,0xfb,0x25,0xaa,0x6c,0x8a,0x3b,0x34,0xe0, +0x88,0xcf,0x61,0x8d,0xaf,0xf7,0x14,0xf3,0x05,0xab,0xd6,0x57, +0x3b,0x08,0x49,0x89,0x49,0x49,0x89,0x83,0x6b,0x26,0x1b,0x45, +0xa2,0x60,0x8d,0x0a,0x9d,0x36,0xc7,0xa2,0xcf,0x94,0x77,0x92, +0xbe,0xd6,0x86,0x04,0x06,0x0e,0x2d,0x2e,0xdd,0x44,0xc1,0x6a, +0x53,0x43,0x56,0xb6,0x8c,0x8e,0x09,0xa4,0xa4,0xb6,0xb4,0x2f, +0xa3,0x99,0x17,0x0f,0xaa,0xbd,0xa8,0xf1,0xf7,0x9e,0x30,0x21, +0x14,0x3c,0x79,0x58,0xd8,0x87,0x4b,0xb8,0xe3,0x37,0x4f,0xdc, +0x7f,0x36,0xae,0x37,0xa5,0x27,0xad,0x35,0xd3,0xa7,0x43,0x98, +0xe9,0x89,0x1f,0x06,0xe0,0xfc,0x08,0x5e,0x3d,0x82,0x1c,0x8a, +0x09,0x3a,0x76,0xe8,0x58,0x9a,0x81,0xf0,0x22,0xf7,0x9b,0xe2, +0x9b,0xc5,0x47,0x7b,0x05,0xc7,0xc3,0xb6,0xa1,0x36,0xa1,0x3c, +0x5c,0x80,0xa9,0x24,0x13,0xc3,0xea,0x70,0xfe,0xf5,0x49,0x25, +0xd6,0x7d,0x89,0x71,0xd7,0x94,0xe0,0x28,0x58,0xe4,0x29,0xf0, +0x9e,0x18,0x43,0x9b,0xce,0xb6,0xc4,0xb5,0x24,0x9c,0x5e,0x75, +0x7a,0x63,0xec,0x36,0x1e,0x27,0x71,0x18,0x01,0xae,0xf4,0xf0, +0x5e,0x1f,0x4b,0x6f,0x06,0x84,0x59,0xdc,0xb9,0xf3,0xc5,0x4d, +0x79,0x2d,0x7c,0x15,0xde,0xa4,0x73,0x19,0x00,0xb8,0x4e,0x0d, +0x10,0x7e,0x94,0x81,0x30,0x8b,0x01,0x61,0xe6,0x4c,0x72,0xb6, +0xe9,0x74,0xc7,0xe9,0x5e,0x1e,0xa6,0x68,0xfd,0x88,0x33,0xa7, +0x73,0xa2,0x0f,0x2a,0xe9,0x25,0xac,0xdd,0xcd,0x22,0x66,0x9e, +0x6c,0x94,0xad,0xff,0x36,0xca,0xbe,0x29,0x16,0x0b,0xd6,0x0c, +0x1a,0x25,0x91,0xfd,0xcf,0xe3,0x32,0x82,0xcb,0x22,0x71,0x8a, +0x0d,0x8e,0xd1,0x69,0xfd,0x97,0x51,0x4e,0x31,0xa3,0x7c,0xa8, +0x31,0xca,0x10,0xae,0x41,0xa9,0x31,0xca,0x64,0x52,0x3c,0x68, +0x14,0x78,0x21,0x65,0x51,0x58,0x09,0xdb,0xfa,0x70,0x1b,0xe8, +0x81,0x63,0x3f,0x8e,0x25,0x05,0x2d,0xc5,0x97,0x72,0xba,0x19, +0x8d,0x0b,0xd0,0xf7,0xdb,0xe1,0x69,0xc4,0x63,0xa1,0x11,0x98, +0xa1,0x1e,0xae,0x37,0x86,0xf5,0xb8,0x12,0x1d,0x0d,0xc1,0x11, +0x83,0x2f,0x41,0x30,0x78,0x0d,0x70,0xd8,0x2c,0x7a,0xd3,0x83, +0xed,0xfb,0xfa,0xf7,0x37,0x58,0xf8,0x09,0x45,0x76,0x25,0x16, +0x39,0xe6,0x3c,0x66,0x5f,0x95,0xa1,0x6f,0xb9,0x8f,0x69,0x3c, +0x5d,0x03,0x7d,0xa6,0x71,0x25,0xd3,0x78,0x01,0x68,0x7f,0xf5, +0x16,0xfa,0xdf,0xcb,0x1a,0x4f,0x97,0xa1,0x3f,0xfb,0x5f,0xd0, +0x9f,0xa0,0xf5,0x3d,0x7e,0xf2,0x09,0x37,0x1a,0xd4,0x72,0x66, +0x98,0xc7,0xc9,0x79,0x21,0x2e,0xdb,0x22,0x41,0xf0,0x9f,0x64, +0xbf,0x68,0xdb,0xda,0x6a,0x27,0x21,0x3e,0x21,0x3e,0x3e,0x2e, +0x81,0x47,0x3d,0xa6,0x67,0x14,0x4e,0x76,0xc0,0x0f,0x74,0x9a, +0xf7,0xe6,0x7f,0x96,0x71,0x3b,0xe9,0x2b,0x6d,0xb0,0xc3,0x85, +0xac,0x9f,0xcf,0x30,0x52,0x7c,0xc5,0x9a,0x4e,0x59,0xcd,0xd7, +0x0b,0x49,0x41,0x5d,0x51,0x5f,0x1a,0xf3,0xfd,0xc3,0x08,0xda, +0x2e,0x8d,0x22,0x09,0x59,0xcc,0x72,0x59,0xe6,0xa9,0x42,0xe0, +0x26,0xfb,0x05,0x46,0xbb,0xce,0xbb,0x08,0x95,0xb5,0xe7,0x3a, +0x0b,0x7b,0x78,0x8c,0xd4,0x0a,0x73,0xde,0x6f,0xee,0xe7,0xc8, +0xe3,0x7b,0x5c,0x71,0x7d,0x7e,0x53,0x56,0x0b,0xaf,0x32,0x36, +0xa5,0xd2,0x08,0x4c,0x14,0x47,0x70,0xe6,0x30,0x9b,0x62,0x5e, +0x3f,0xe4,0x71,0x6a,0x82,0x5e,0x74,0x13,0x68,0xdf,0xe6,0xda, +0x34,0x7a,0x3c,0x60,0x7a,0x40,0x18,0x70,0x14,0xf2,0x76,0x63, +0x1e,0x27,0x7e,0x38,0x8d,0x4a,0x49,0xd6,0xbf,0x70,0xae,0xa6, +0xe6,0x66,0x3b,0x9d,0x4b,0x9d,0x84,0x73,0x39,0xe5,0x05,0xc5, +0xc5,0xfc,0x8f,0xdc,0x1e,0xc3,0x0d,0xfa,0xab,0xf6,0x96,0xd9, +0x0b,0xff,0xe8,0x7a,0x70,0xbb,0xeb,0x31,0xff,0x8a,0xb3,0x5d, +0xba,0x6a,0xee,0x1c,0xfd,0x2a,0x07,0xe1,0x97,0x9b,0x5f,0xfc, +0xdc,0x0e,0xef,0xf0,0x1d,0x9c,0xc9,0x31,0x83,0x28,0x07,0x1d, +0xb7,0xa8,0x90,0x60,0x9b,0xf1,0xdb,0xe4,0xeb,0x42,0x97,0xb8, +0x1b,0x55,0xa5,0x03,0x49,0xba,0x89,0x6d,0xb1,0xf7,0x7e,0x18, +0x87,0x12,0xa7,0xcc,0x4d,0xcf,0x4b,0x63,0x21,0xf5,0x3b,0xa7, +0x0e,0x6e,0xa2,0x38,0x6b,0xed,0xa0,0xf9,0xfa,0x79,0x56,0xd6, +0x1f,0xe0,0xac,0x35,0x7f,0x99,0x6f,0xfe,0xff,0x61,0xbe,0xac, +0x5c,0x05,0xce,0x21,0x68,0x16,0x85,0x1f,0xd9,0xe3,0x88,0xff, +0x30,0x9d,0xbd,0xc6,0x74,0xe9,0x46,0x8a,0xaf,0xff,0xd3,0x74, +0x85,0x7d,0xe9,0x0c,0x21,0xbb,0x71,0x1f,0x4d,0x29,0x48,0x2a, +0x48,0xc8,0xe7,0xe1,0x3b,0xf0,0x90,0xfc,0xd0,0xe3,0x19,0x17, +0xb0,0xd1,0x7e,0x93,0xc1,0x0e,0x56,0x59,0x2a,0xab,0xcb,0x9b, +0x0a,0xd9,0xb7,0x80,0x43,0xc3,0x18,0x9c,0x1e,0xbe,0x41,0x27, +0xc2,0x24,0x3c,0xd8,0xfe,0x64,0x79,0xba,0x10,0xdc,0xe2,0x73, +0xd1,0xaf,0xc5,0x31,0x58,0x48,0x0a,0x49,0x0a,0x4a,0x0c,0x9a, +0x17,0x2c,0xfc,0x00,0x53,0xc0,0x01,0xa7,0xdc,0xb7,0x59,0x8b, +0xba,0xe8,0x00,0xba,0x93,0xc8,0xee,0x88,0x5d,0x91,0xe6,0x31, +0x89,0xc6,0xc2,0xef,0xa9,0xa0,0x5d,0xf0,0x45,0x8e,0x7c,0x43, +0x53,0xdc,0x61,0xde,0x46,0x5e,0x83,0xbf,0x9f,0xbb,0x93,0x5f, +0x7d,0x2f,0x55,0x37,0xf5,0x8b,0x78,0xf8,0x3b,0xc4,0x8e,0xc3, +0x5f,0x20,0x82,0xe2,0x7b,0x73,0xe0,0x3d,0xc2,0xa0,0xf2,0x2d, +0x3b,0xe2,0x60,0xa2,0x16,0xbc,0xf7,0x06,0xdf,0x23,0xd2,0xc5, +0xd7,0xf4,0x2f,0x07,0x8e,0xe6,0x4a,0xea,0xf3,0x64,0x07,0x16, +0xb2,0x6c,0xbb,0x11,0xb4,0x3f,0xfb,0x0f,0x57,0xe1,0xdf,0xcc, +0x99,0xcd,0xd6,0xfc,0xcb,0x66,0xef,0x0e,0xda,0x0c,0xbe,0x67, +0x1e,0xc4,0xa1,0x8b,0x60,0xa8,0x4c,0xf4,0x87,0x52,0x18,0xfa, +0x2d,0x0e,0x65,0xec,0xcc,0x64,0x15,0x15,0xbb,0x49,0x42,0x9c, +0xe6,0xb9,0x60,0x3f,0x0c,0xae,0x6f,0x47,0x1f,0x08,0x3a,0x92, +0x16,0x7e,0xfa,0x48,0xb8,0x76,0xb8,0xfc,0xec,0xd7,0xed,0x1d, +0x7f,0xce,0xe0,0x70,0xaa,0xea,0x3a,0xed,0x93,0x3e,0x34,0x26, +0xe2,0x5a,0xc6,0x80,0x2e,0x48,0xfb,0x18,0x03,0xfb,0x14,0x75, +0xd8,0x7b,0xc3,0xd9,0x7b,0xc3,0x59,0xab,0xa4,0x39,0x3a,0x21, +0x4d,0xa7,0x97,0x7a,0xe0,0x1a,0xe4,0x48,0x23,0xb8,0x4b,0x26, +0x14,0xe2,0x18,0x81,0x8f,0x63,0xd9,0xee,0x3b,0xd5,0x76,0xaa, +0x6c,0xc8,0x68,0x4e,0x6b,0xd5,0x4f,0x15,0xdc,0x50,0xb0,0x9a, +0xb6,0x6c,0x72,0x8b,0xad,0xd0,0xd8,0x5b,0x3d,0x50,0x7e,0x85, +0x17,0xb5,0x2e,0x71,0x6a,0x09,0x14,0xd4,0x18,0x1e,0xf5,0x11, +0xe9,0x1d,0x46,0x22,0x0d,0xc5,0x11,0x03,0x04,0x1f,0xb3,0x23, +0x13,0xb8,0xde,0x4b,0x20,0x90,0x85,0xf1,0xb6,0x83,0x59,0x55, +0xe7,0x2b,0x1b,0x2b,0xab,0x74,0x2f,0x5e,0x05,0x01,0x3e,0xfc, +0xfd,0x3b,0xbe,0x5d,0x1a,0x6b,0x00,0xf5,0x64,0xe5,0x16,0xe4, +0x50,0x61,0xb8,0x9b,0xb7,0x34,0x77,0x31,0x36,0x1f,0xb7,0xa3, +0xd1,0xf1,0x8d,0x0e,0x64,0x70,0x2d,0x59,0xd9,0x8c,0xfa,0x6f, +0xd3,0x90,0x54,0x7b,0x22,0x05,0xc3,0x53,0xda,0x8b,0xd7,0x4d, +0x48,0xbf,0x34,0x87,0x91,0x94,0x14,0x60,0xf6,0xc3,0xc7,0x04, +0x52,0xe5,0x6d,0x1b,0xf4,0xd0,0x16,0xf4,0xc8,0xe8,0x2f,0x54, +0x4d,0x4c,0x8a,0xc7,0x7d,0x04,0xee,0xe1,0x6f,0x14,0xca,0xc1, +0x61,0x40,0x62,0x09,0xc1,0x04,0xcb,0xd1,0x73,0x37,0x78,0x4a, +0x4e,0xd7,0x44,0x27,0xf0,0xbf,0x44,0xa4,0x58,0x98,0x47,0xfb, +0xa5,0x69,0x46,0xa4,0x75,0x39,0xfb,0xc1,0x8d,0x3e,0x82,0xa6, +0xc3,0xfb,0xf0,0x86,0x31,0x1b,0x7c,0x26,0x1b,0x3c,0x15,0xf2, +0xf1,0x36,0x32,0x4a,0x9a,0x06,0x79,0x94,0x81,0x6f,0x0f,0x2c, +0x24,0xa3,0x3f,0xd7,0x0c,0x7e,0x97,0x0d,0xfe,0xf5,0x12,0x0a, +0x96,0x17,0xa4,0x3d,0x06,0x60,0xa1,0x5e,0x89,0xbe,0xfa,0x62, +0xf4,0x45,0x74,0xe3,0xb0,0x4f,0xbc,0xca,0x06,0xd5,0x31,0x22, +0x2d,0xf2,0xa0,0x97,0xd8,0xa0,0x26,0xc3,0x7b,0xf1,0x92,0x2c, +0xf1,0x27,0x6c,0xd0,0x78,0x36,0xe8,0x55,0x79,0xd0,0x84,0xc1, +0x41,0x2d,0xe4,0x41,0xc5,0x2e,0xd5,0x33,0x6a,0x87,0x1b,0x76, +0xe3,0xe4,0x05,0x38,0xbc,0xca,0x50,0xa8,0x38,0x5f,0xd6,0x5c, +0xd0,0xc2,0x4b,0xbd,0x97,0xe5,0xc5,0x3e,0xae,0xe7,0xdf,0xcb, +0x79,0xcc,0xc3,0x36,0xf5,0x75,0x6a,0x1f,0x95,0xd4,0xa2,0x2b, +0xbe,0x43,0x9e,0x0c,0xdc,0xbd,0xd6,0x7f,0xcd,0xa1,0x51,0xb0, +0x32,0x35,0x36,0xdb,0x69,0xc5,0xc3,0x57,0xbb,0xa4,0x31,0xc4, +0xd5,0xdf,0x39,0xc0,0x29,0xb0,0xd8,0x50,0x28,0xcd,0x2c,0x55, +0x96,0x64,0xf3,0xf8,0x92,0xac,0x29,0xf4,0xfb,0x4c,0xe7,0x67, +0xc6,0x85,0xe5,0xc9,0x35,0x2f,0x62,0x94,0xad,0xc0,0x68,0xa2, +0x6e,0x51,0x35,0x33,0xe1,0xb2,0x99,0x70,0x5d,0x8c,0x85,0x1a, +0xc1,0x93,0x7e,0x82,0xf5,0xa8,0xcb,0xde,0x4b,0x62,0xef,0x19, +0x33,0x81,0x93,0x4c,0x48,0xaf,0x34,0x8b,0xca,0x9b,0x34,0x14, +0x62,0xaa,0x6c,0x62,0x07,0x28,0xa4,0xb8,0x18,0x67,0xc2,0x62, +0x32,0xfa,0x85,0xc6,0x0a,0xcc,0x62,0xa2,0x13,0xde,0xa3,0x90, +0xf6,0xa2,0x5f,0x5a,0x8f,0xb7,0x57,0x1a,0xc2,0xe7,0xc4,0x76, +0x0a,0x8e,0x66,0xa5,0x17,0x87,0xd7,0x18,0x0b,0xe0,0x0c,0xda, +0x30,0xe6,0xd7,0x0c,0x79,0x95,0x0f,0x69,0x1e,0x1a,0x72,0x99, +0xfa,0x0a,0x58,0xc5,0x35,0x67,0x33,0x9f,0x8a,0x8b,0xbf,0x61, +0xe8,0x98,0x03,0x69,0x14,0xd3,0xf0,0x20,0xa4,0x11,0xa9,0xf8, +0x53,0x6a,0x24,0x7e,0xc4,0x24,0xf9,0x4e,0x23,0x49,0xaf,0xc6, +0x74,0x7d,0xd8,0x6b,0xfc,0xd6,0x74,0xa7,0x98,0xe9,0x06,0x64, +0xd3,0x9d,0x81,0x7c,0x8a,0x8b,0x58,0x57,0xb9,0x88,0x8c,0x7e, +0xa6,0x91,0xa4,0x89,0xf9,0xe3,0xa5,0x16,0x86,0x9b,0xc0,0x56, +0x1c,0x87,0x2e,0x83,0xeb,0x8d,0xcc,0x7a,0xbb,0xde,0xc8,0x34, +0x1c,0x59,0x65,0x20,0xbc,0x86,0x91,0x35,0xff,0x5e,0x6f,0xa4, +0x5a,0xef,0x2b,0x1c,0x5b,0xd5,0x2f,0x4c,0xff,0xf7,0x7a,0x23, +0x73,0xa5,0x6e,0x5c,0xa0,0x59,0x6f,0x44,0xe0,0x5a,0xb2,0x73, +0x9a,0xe5,0x47,0x40,0xdc,0x08,0xf6,0x46,0xd0,0x7e,0x44,0x23, +0xd2,0x20,0xbb,0xb3,0xf2,0xad,0x4c,0x95,0xc6,0xa4,0x4f,0x23, +0x53,0x20,0x14,0x60,0x0d,0x3e,0x22,0x10,0x34,0x08,0xc0,0x35, +0x32,0x00,0x9f,0x6a,0x64,0xaa,0xee,0x23,0x03,0x47,0xa8,0xbe, +0x38,0x55,0xed,0x8d,0x5b,0x48,0xe6,0x6e,0x05,0xcc,0xe7,0x5a, +0xf3,0x72,0xdb,0x74,0x55,0xce,0x37,0x2f,0x12,0xa9,0x0f,0x77, +0xb3,0x81,0x7f,0x32,0x22,0xe2,0xec,0x20,0x2a,0x1d,0x1c,0x78, +0x05,0x0e,0xa2,0x0e,0x41,0x07,0xfc,0x9a,0x42,0x15,0x4c,0xc7, +0x2a,0x22,0xdd,0x82,0x12,0x36,0x4e,0xd1,0xdb,0x73,0x16,0x19, +0x33,0x8f,0xc8,0xe7,0xf4,0x65,0x1e,0x29,0x95,0x3d,0xe2,0x3b, +0x78,0xce,0x65,0xf2,0x39,0xff,0x30,0x54,0x8d,0xa5,0x78,0x1a, +0x6c,0x76,0xa1,0x0d,0xfa,0x1b,0x80,0x3f,0xfa,0xa3,0x91,0xb4, +0xf5,0xd2,0x1d,0x78,0xb6,0xe1,0xb2,0xb8,0x15,0x6d,0xc0,0x1f, +0x4e,0x73,0x7f,0x0e,0x83,0x20,0x16,0x8d,0xed,0xbd,0x24,0x0f, +0x6d,0xe8,0x00,0xfe,0x6e,0x48,0x1a,0x97,0xb2,0x37,0x6a,0x7a, +0x07,0xb1,0x5f,0x63,0x2c,0xef,0x12,0xc7,0xa8,0xf4,0x69,0x78, +0x86,0xa7,0x89,0xda,0x8c,0x35,0x23,0x3d,0xac,0x8a,0x16,0xe1, +0x79,0x7c,0x42,0xe0,0xb0,0x0c,0x81,0x25,0xb8,0x01,0x96,0xfc, +0x65,0xf8,0x76,0x06,0x81,0x78,0x2d,0x69,0x86,0xba,0x70,0x9d, +0x91,0xd8,0xd0,0xbf,0x95,0xdb,0x29,0x96,0x51,0x2c,0x07,0x73, +0x28,0xe7,0xd4,0xd9,0x4b,0x98,0x43,0x87,0x30,0x87,0xde,0xd3, +0x38,0xb4,0x86,0x39,0x69,0x1d,0x1e,0xa0,0x60,0x05,0xe5,0x68, +0x45,0x24,0xf3,0x73,0x54,0x73,0xc6,0x41,0x4b,0x06,0x33,0x4b, +0x9e,0x67,0x96,0x54,0x1d,0x80,0x3b,0x14,0x03,0xd8,0x18,0x01, +0x04,0x0f,0x5a,0xc9,0x8e,0xde,0x20,0x3b,0x5a,0x15,0xa2,0xda, +0x44,0xab,0xcd,0xab,0xf5,0x2b,0x76,0x2f,0x08,0xc5,0x77,0xc2, +0x27,0x46,0xb5,0xfd,0xd4,0x0c,0xa3,0x2b,0x81,0x18,0xc8,0xdb, +0xe9,0x11,0x63,0x9c,0x68,0x3e,0x25,0xf0,0x64,0xd0,0xa9,0x43, +0x27,0xe3,0x0d,0x04,0x98,0x94,0x08,0x5b,0x33,0x41,0x3b,0x2f, +0xcd,0x3f,0xcd,0x2f,0xd5,0xbf,0xbb,0x4c,0xb0,0xf8,0x4d,0xff, +0xb7,0xdd,0x5f,0xf2,0x6a,0xeb,0x57,0x4c,0xdf,0x1e,0xa6,0xef, +0xd7,0x9a,0x14,0x45,0x18,0x08,0x9f,0x6a,0x52,0x54,0xe3,0x5b, +0x1b,0x34,0x32,0x1b,0xec,0x94,0xe6,0xd2,0x8b,0x70,0x53,0xff, +0x8a,0xb8,0x40,0xda,0x21,0x2d,0x20,0xe2,0x28,0x50,0x51,0x8c, +0xc6,0x9b,0x10,0x4d,0xa4,0x0f,0x50,0x64,0xf2,0x1e,0x61,0x5e, +0x68,0x96,0xbd,0x10,0x3e,0x68,0x94,0x2d,0xb2,0x51,0xfe,0x18, +0x7b,0x96,0x6e,0xfb,0xd9,0x19,0x26,0x06,0x83,0x1b,0x0f,0x5b, +0xfb,0x71,0x27,0x77,0xec,0xc6,0xf1,0x7b,0x4f,0xc7,0x5d,0x4d, +0xb9,0x98,0xde,0xa3,0xdc,0xd7,0x29,0xe0,0x50,0x0f,0x9c,0x18, +0x80,0xdb,0x22,0x79,0xf5,0x3b,0x24,0x20,0x26,0xe0,0x58,0xc0, +0xb1,0x34,0x7d,0xe1,0xfb,0xec,0xdf,0x4b,0x1e,0x15,0x47,0xf4, +0x09,0xd6,0x87,0x4d,0x42,0x8c,0xc3,0x78,0xe8,0x82,0x75,0x24, +0x1b,0x0f,0x37,0xa3,0xde,0x83,0x89,0xe5,0xb6,0x7d,0x49,0x71, +0x57,0xb3,0xc0,0x49,0x30,0xcb,0x57,0xa8,0x6f,0x89,0xcf,0x98, +0x2d,0x5b,0x99,0x2d,0x97,0x2d,0xa0,0xdd,0x67,0x7b,0xe3,0x7a, +0x12,0x4e,0xaf,0x39,0xa3,0x21,0x72,0xab,0x38,0xd4,0xfe,0x8a, +0x81,0x4a,0xfd,0x16,0xad,0xd5,0x6f,0x91,0x53,0xfd,0x97,0x8d, +0x0f,0x31,0x1b,0xd7,0xca,0x68,0x0d,0x1e,0x8c,0xa0,0xf5,0xcc, +0xb0,0xe2,0xaf,0x78,0x9a,0x71,0xb7,0x67,0xbb,0x65,0xdc,0x76, +0x33,0x3e,0xab,0x7a,0x0c,0x3b,0x88,0xf4,0xc0,0x8a,0x2e,0x41, +0xeb,0xcf,0x89,0x68,0xb9,0x84,0xa2,0xe5,0xe7,0x60,0xc9,0x0d, +0x2c,0xa1,0x9f,0xc3,0xde,0x25,0xe4,0xc8,0x24,0xaa,0xde,0x6e, +0xa5,0xda,0xce,0xa9,0x2b,0x27,0xd0,0x3f,0xc6,0x74,0xfe,0x39, +0x86,0x7b,0x33,0x81,0xb2,0x37,0xda,0x09,0xce,0x1d,0xde,0xce, +0x3e,0x23,0x1d,0x58,0x4b,0xeb,0xc5,0xaf,0x1c,0xaf,0x40,0x90, +0x7a,0x2f,0xa3,0xdd,0xaa,0x29,0x5f,0x53,0xe9,0xab,0x97,0xe2, +0x57,0xdc,0xe8,0x3f,0x0c,0x54,0x8e,0x54,0xda,0x02,0x23,0x8c, +0x71,0x84,0x9e,0xf1,0x4b,0x16,0xa2,0x49,0x1e,0x58,0xb2,0x01, +0x17,0xb7,0x7b,0x0a,0x0f,0x61,0x4d,0x15,0xd4,0xc5,0x42,0x0e, +0x2f,0x6e,0xe1,0xfe,0x7c,0x07,0x26,0x32,0xaf,0xa4,0xf6,0x92, +0x54,0xb4,0x62,0x4a,0xf5,0x1b,0x11,0x95,0xc9,0x69,0x6a,0x8c, +0xb6,0x1c,0x9a,0xee,0x9e,0x88,0xd3,0xf1,0x43,0x9d,0x1a,0x0b, +0xf8,0x1b,0xf0,0x17,0xee,0xa6,0xc1,0x7c,0xed,0x78,0x2e,0x03, +0xf5,0x2e,0x6c,0x86,0x31,0x38,0xaa,0xb6,0x57,0xc0,0x4f,0x60, +0xfc,0xae,0x1f,0xc0,0x6c,0x9c,0x7a,0x2e,0x8c,0x64,0xa6,0x88, +0x65,0x38,0xcd,0xc0,0x4a,0x7a,0xfe,0x55,0xe1,0x77,0x69,0xcf, +0xcd,0x33,0x84,0xb0,0x4f,0x7d,0x67,0xb8,0xac,0xe2,0x31,0xd8, +0x87,0x9e,0x7b,0x5c,0x02,0x43,0x53,0x9e,0x9b,0xa5,0x08,0x47, +0xf4,0x7c,0xa7,0x78,0x6d,0xe4,0x71,0xd7,0x1d,0x86,0xcc,0x58, +0x63,0xd2,0xa3,0xc9,0x80,0xd6,0xcc,0xd3,0xf1,0xb2,0xa7,0xad, +0x07,0x3d,0x3d,0x55,0xf6,0xb4,0x2a,0x4b,0x7c,0x48,0xab,0xea, +0xca,0x3b,0x0a,0xdb,0xf9,0x46,0xcc,0x24,0xc9,0x79,0xc9,0xf9, +0x89,0x05,0x06,0xe9,0x82,0xd7,0x9c,0xcd,0x93,0x97,0x6c,0xa8, +0xb3,0x15,0x12,0x13,0xe4,0x16,0xf1,0x24,0x3e,0x09,0x45,0xad, +0x5d,0xa8,0xd5,0xe5,0x20,0x5c,0x85,0xbf,0xe7,0xc0,0x42,0xb8, +0x32,0x4e,0x34,0xe8,0xe6,0xd4,0xff,0x03,0x81,0x4c,0xbf,0x62, +0x56,0x18,0x3f,0xc0,0x40,0x36,0x54,0x45,0x43,0x49,0x2b,0x0f, +0xfb,0xb8,0x83,0x7b,0xbd,0x6c,0x5c,0x1c,0x79,0xf5,0x8c,0xcf, +0xa9,0x21,0x7c,0xc5,0xe0,0xd9,0xa1,0x81,0xa7,0x92,0x7d,0xf1, +0xb5,0x94,0x49,0x3d,0x8f,0xa6,0x97,0xe9,0xc2,0x2b,0xc6,0x76, +0x17,0xe2,0x18,0x92,0x6a,0x2a,0xb7,0x11,0x8d,0xca,0xec,0x06, +0x5d,0xc6,0x5a,0x2e,0x4b,0x7f,0x27,0x3b,0x0b,0x3c,0x6e,0xea, +0x80,0x2d,0xd7,0x91,0x95,0xd5,0xa1,0x0b,0xc3,0x89,0x49,0xa6, +0x02,0x27,0x10,0xa9,0x01,0x9e,0xb0,0xc2,0xa9,0x94,0xb3,0xfa, +0x5c,0xa6,0x93,0x2b,0x0b,0xe9,0x1c,0x39,0xa4,0xdd,0xa1,0x88, +0xe2,0x52,0x5c,0x00,0x4b,0x59,0x19,0x8a,0x57,0x59,0x51,0x58, +0x9a,0x02,0x53,0xf3,0x81,0xab,0xf2,0xe8,0x11,0x70,0xb8,0x8b, +0x0c,0x56,0x8b,0x70,0xcd,0x2d,0xee,0x79,0xe1,0x38,0x5d,0x1f, +0xb5,0x75,0xda,0x6d,0xaf,0xc2,0x14,0x25,0x2c,0x3a,0x0d,0x45, +0xda,0xa2,0xc1,0x80,0x64,0xc0,0x49,0x6b,0xe1,0xd4,0xdb,0xec, +0x78,0x4b,0x53,0x4f,0x7e,0x64,0x41,0x7f,0x41,0x13,0xf4,0xf9, +0x6f,0xeb,0x49,0xbe,0x09,0x11,0xb3,0x99,0x39,0x6f,0x40,0xcc, +0xd6,0x4b,0xe2,0x4a,0xfc,0x1f,0x69,0x25,0x81,0x5e,0x51,0x41, +0xf1,0x14,0xc6,0xc0,0x29,0x22,0xb9,0x4a,0x0a,0x26,0x97,0x37, +0xb3,0x75,0x91,0x6c,0xeb,0x7d,0x83,0xb9,0x6d,0x89,0x9c,0xdb, +0xc4,0xab,0x2a,0x57,0x9a,0x5a,0x99,0x54,0x99,0x50,0x69,0x98, +0x2c,0x1c,0x40,0x62,0x86,0xfc,0xa7,0x73,0x1b,0x2c,0x84,0x74, +0x65,0x9a,0x32,0x2d,0x8b,0x97,0xdc,0x2e,0x3c,0x80,0x10,0x71, +0x3b,0xa6,0x93,0xdc,0xaa,0xac,0xea,0x8c,0x1a,0x1e,0x6e,0x2f, +0xe6,0xf0,0x83,0x68,0xf4,0x0f,0xc6,0xf7,0x75,0xd6,0x1c,0x3d, +0xb0,0x77,0xdb,0x78,0x1c,0xcb,0x29,0x59,0x6e,0x1f,0xc9,0xfd, +0x52,0xde,0x07,0x23,0x32,0x75,0x95,0x30,0x26,0x8e,0xe5,0xc4, +0x0f,0xc7,0xc1,0x44,0xa2,0x7e,0xfa,0x84,0x89,0x5a,0xc7,0x44, +0xbd,0xaf,0x11,0xff,0x4d,0xbf,0xbc,0xbc,0x8d,0x2c,0x7e,0x29, +0x8b,0xb3,0x2f,0x70,0x0e,0x65,0x39,0x68,0x3c,0x6c,0xe0,0xf0, +0x0b,0x5c,0xcf,0xa0,0x51,0xca,0x52,0xc4,0xe6,0x50,0x0a,0xf2, +0xbd,0x05,0x1b,0x38,0xe9,0x7d,0x16,0x41,0x3d,0xb0,0x9f,0x05, +0xd7,0x39,0x39,0xb8,0x0e,0x0c,0x8a,0xbe,0x52,0x93,0x96,0x0d, +0xc4,0x51,0xec,0x07,0xc7,0x61,0x0b,0xf8,0xf7,0xa1,0x3f,0x7c, +0x6a,0x80,0x9f,0xe2,0x30,0x92,0xd6,0x90,0xdc,0x98,0xd0,0x60, +0x96,0x2c,0x04,0x4e,0x70,0xc1,0x61,0x26,0x2b,0xda,0x3c,0x85, +0xa2,0xba,0xfc,0xb6,0xec,0x4e,0x1e,0xb4,0x70,0x0b,0x1e,0x31, +0x06,0x77,0xce,0x1d,0x87,0x2f,0x63,0x94,0x88,0x9b,0x7e,0xde, +0x52,0x80,0xd1,0xa0,0xb8,0xfc,0x4d,0x1e,0x8c,0x61,0x75,0x74, +0xe6,0x05,0x71,0x66,0x02,0x97,0x87,0x1f,0x0e,0xe8,0x31,0x1e, +0xf8,0x6e,0x6d,0x97,0x80,0xef,0xff,0xba,0x02,0x86,0xba,0xc3, +0x70,0x5e,0x3d,0x41,0x5c,0xc3,0xa4,0xae,0x67,0x9a,0x3c,0xd4, +0x68,0x02,0x4c,0x93,0xeb,0x1a,0x4d,0xca,0xde,0x26,0x83,0xb2, +0xbf,0xca,0x08,0x13,0x13,0x2b,0x64,0x79,0x03,0x06,0xe5,0x5d, +0xa5,0x31,0x75,0x91,0x68,0x4c,0x7d,0x88,0xb5,0xf9,0x76,0xcb, +0x9d,0xee,0xf9,0x3b,0x84,0xbe,0xaa,0xee,0xfa,0xfa,0xe6,0x30, +0xdc,0x65,0xb5,0x18,0x47,0xcc,0xa9,0xb5,0x16,0x60,0x32,0x70, +0x03,0x30,0x1c,0x1a,0xc6,0x89,0x7f,0x37,0x22,0x90,0xaf,0xbe, +0x45,0x9d,0x23,0xe3,0x6b,0x74,0xe1,0x05,0x49,0x8b,0x3f,0x9d, +0x18,0xa1,0x03,0x0b,0x70,0x59,0x6d,0x2b,0x2e,0x84,0x25,0x47, +0xd2,0xa2,0xe2,0x42,0x43,0xb4,0xc3,0x0e,0x2b,0x62,0xc4,0xc5, +0x06,0xea,0x7a,0x6e,0x5b,0x6e,0x20,0x83,0xe6,0x48,0xae,0x31, +0x33,0x8b,0xc1,0x75,0x16,0x31,0xcf,0x51,0xe0,0x3a,0xa2,0xbe, +0xad,0xaa,0x19,0x0c,0x74,0xb1,0xcb,0x8e,0x7a,0x6e,0xb6,0x5d, +0x69,0xbc,0xbd,0x61,0xaf,0xd0,0x7d,0xa9,0xf7,0x75,0xd5,0x6d, +0x5e,0x5a,0xcb,0xda,0x72,0xbf,0xcf,0xec,0x9e,0x39,0x5d,0xb1, +0xf2,0x12,0x1a,0xb6,0xd6,0xaf,0x2e,0x5d,0xc7,0x4b,0x2b,0x19, +0x73,0x33,0x82,0x3b,0x4c,0xb9,0x4a,0x8d,0x72,0x67,0x35,0x28, +0xeb,0xc3,0xb3,0x7f,0xc5,0xac,0xd5,0xff,0x8a,0xd9,0x29,0x9a, +0xec,0x6c,0x00,0xcf,0x58,0x10,0xc4,0xc2,0x87,0xe0,0xd1,0x8b, +0x1e,0xa0,0x45,0x5e,0xa4,0x3d,0xc9,0xbc,0xae,0x3c,0xd0,0x21, +0x18,0x84,0x6c,0x08,0x5d,0x73,0x84,0x7f,0xa9,0x3f,0x9b,0xac, +0x0e,0x5f,0x15,0xb5,0xe1,0x78,0x9a,0x99,0x70,0xfd,0xec,0xbd, +0x84,0x7b,0xac,0x8b,0x7f,0x0f,0x1d,0x4c,0x58,0x70,0x7d,0x88, +0x31,0x26,0xb0,0x9f,0xf8,0xcc,0x98,0x85,0x04,0xdf,0x5b,0x59, +0x63,0x2e,0x00,0xfd,0xf6,0xd9,0x8f,0x49,0x3f,0xf0,0x09,0xf8, +0xdb,0x05,0xf8,0x2d,0x81,0x4b,0x9c,0xf9,0xc5,0x2c,0xf8,0x70, +0x66,0x0d,0xf3,0xc8,0xdf,0x5e,0xcd,0xf9,0x7d,0xdf,0x0f,0xbc, +0xfa,0xef,0xe2,0x3e,0x26,0x5e,0x79,0x9f,0xec,0x05,0xd9,0x1f, +0xff,0x60,0x22,0xf7,0x69,0x44,0xce,0x7b,0x1b,0x18,0x79,0x26, +0x2c,0x39,0xcb,0x22,0x7b,0x32,0x91,0x0b,0x64,0x91,0xbd,0x06, +0xfd,0xa1,0xa7,0xc1,0xcf,0x7a,0xd5,0x42,0x3a,0x20,0x4d,0x22, +0x69,0x15,0x29,0x55,0xc9,0x55,0x46,0xc9,0x82,0xff,0x3c,0xc7, +0x05,0xdb,0x56,0x36,0xb3,0xae,0xa6,0xa1,0xb8,0x31,0xbf,0x99, +0x97,0xb6,0x81,0xf6,0xe0,0x29,0xd2,0x35,0x79,0xf2,0x89,0x11, +0xf9,0x63,0x32,0x9e,0xa0,0x5b,0xb8,0xb3,0x37,0x4f,0xdf,0x7d, +0x38,0x4e,0x5a,0xc3,0x9d,0xdc,0x76,0x6c,0x6d,0xd4,0x6a,0x7e, +0x8d,0xf1,0x6d,0x2e,0x72,0x4d,0xf8,0x9a,0xd0,0x8d,0xbc,0x38, +0x8e,0x3b,0x11,0x71,0x32,0xf2,0x44,0x24,0x6f,0x19,0x11,0x1a, +0x6a,0x37,0x7e,0x1a,0x97,0x65,0xa6,0xf8,0x07,0x77,0xed,0x5c, +0xd1,0xfd,0x0c,0xdd,0x33,0x69,0x67,0xd3,0xcf,0xa4,0xf3,0x0f, +0x7a,0x37,0x73,0xf1,0x9d,0xb1,0x7d,0xb1,0x97,0xf8,0xcf,0x38, +0x35,0x82,0xcf,0xa0,0xd0,0xa2,0xbf,0x96,0xf1,0x49,0x93,0x13, +0xe6,0x3a,0xf8,0x19,0x17,0x77,0x21,0xb6,0xef,0x4c,0x1b,0xff, +0xc8,0x88,0xd6,0xf9,0x37,0xba,0x97,0x78,0x56,0x9e,0x17,0x7c, +0x4b,0xed,0x6b,0x9c,0xf2,0xe5,0xd5,0xf2,0xd6,0x52,0x8d,0x72, +0xe2,0x14,0xb4,0xa0,0x89,0xbd,0x09,0xfd,0xf1,0xac,0x7b,0xbe, +0xcb,0x1d,0xdf,0x1d,0x63,0x14,0x6d,0xc9,0xaf,0xbd,0x48,0x7d, +0x4a,0xf6,0x54,0x3b,0x17,0x78,0x38,0x0a,0xf5,0xbe,0xe7,0x3d, +0x4b,0xf6,0xf1,0xd2,0x00,0x06,0xff,0x57,0x33,0xbc,0x17,0x4d, +0x3d,0xda,0xf7,0xdf,0x0e,0x7e,0xd9,0xf3,0xba,0xe6,0x4d,0xd9, +0xaf,0x96,0xb9,0xc2,0x81,0xe5,0x7e,0xab,0x5d,0x37,0x86,0x7d, +0x17,0x0d,0xc3,0x4e,0xc2,0x28,0x1e,0x96,0xf5,0x31,0x22,0xb4, +0xdc,0x10,0x97,0xe3,0x0f,0xc6,0xf0,0x03,0x77,0x1a,0x67,0x26, +0xe1,0x84,0x3c,0x1c,0x69,0xba,0x6c,0xd3,0xea,0x99,0xeb,0x2b, +0x2c,0x85,0x2f,0xae,0x5d,0xbf,0xdd,0x7d,0x2f,0x7b,0x7d,0xe1, +0xee,0x0a,0xdb,0x32,0xc7,0xbe,0x94,0xb8,0xbe,0x6c,0xb0,0x17, +0xcc,0x73,0x15,0x39,0x62,0x3c,0x0d,0x68,0xda,0xd7,0xe4,0x5d, +0xe9,0xb0,0x4f,0x28,0xf6,0x28,0xb5,0xcb,0xdf,0xc3,0xab,0x9b, +0x61,0x14,0x03,0x65,0x42,0xef,0x5b,0xab,0x76,0x33,0x9e,0x56, +0x2e,0x95,0xd2,0x3e,0x38,0xf1,0x59,0xef,0x46,0xd8,0x62,0x8c, +0x5b,0x56,0x71,0xa7,0x4b,0x4e,0x95,0x95,0x8f,0xfb,0xca,0x68, +0x19,0x71,0x3f,0xe5,0x79,0xd2,0x5b,0x67,0xad,0xc9,0x5d,0x2e, +0x06,0x47,0x06,0x2f,0xb4,0x9a,0xd4,0xe6,0x2e,0x74,0x03,0x97, +0xf3,0x63,0x02,0x08,0xfc,0x13,0x79,0x4d,0x57,0x07,0x66,0xbd, +0x13,0x6f,0x51,0x7a,0xe2,0x2f,0x94,0x9a,0xb2,0x2c,0x7c,0x4a, +0xce,0xc2,0xa6,0x83,0x28,0xd5,0x95,0x51,0x2a,0x5e,0x51,0x3d, +0xa4,0xbe,0xa6,0xfb,0x2c,0x3d,0xf6,0x1c,0x68,0xf5,0x69,0xf1, +0x6c,0xb2,0xf5,0x14,0x6a,0xcc,0x4b,0x2d,0x0a,0xcc,0x5d,0x1d, +0xf6,0x3a,0xdb,0x79,0x94,0x9a,0x09,0x0d,0x15,0xb5,0x55,0x55, +0xe7,0x33,0x6d,0xd3,0x6c,0x12,0x2d,0xcd,0xf4,0x8c,0xf5,0x57, +0xea,0x97,0x98,0x09,0x77,0xbb,0xbb,0x2e,0x34,0x7f,0xc6,0xc7, +0xda,0x9f,0xb1,0xb3,0x1e,0x87,0x1b,0x4e,0xfb,0xec,0x59,0x3f, +0xde,0x90,0x53,0xee,0x54,0xf4,0x72,0xaf,0xbb,0x2e,0xb0,0x70, +0x9f,0x17,0x00,0x1f,0x59,0xc3,0xbb,0xba,0xe7,0xbb,0xaa,0x2e, +0x54,0xdc,0xe0,0xa5,0x86,0x63,0x4c,0xc3,0xa3,0x2c,0xec,0x92, +0xa4,0x6d,0x14,0xc6,0x5e,0xc4,0xb1,0x70,0x01,0xfe,0x7e,0x11, +0x3f,0xd7,0x87,0x71,0x2c,0x7b,0x53,0x7d,0xa0,0xf8,0x1b,0x2e, +0xdf,0x2d,0x0e,0xbf,0x84,0x93,0x38,0x75,0x8e,0xea,0xef,0x0c, +0xc0,0xb5,0x0c,0xc0,0x67,0x35,0x00,0x3e,0xc4,0xb4,0x31,0x62, +0x00,0x3e,0x64,0xc2,0xb4,0x99,0xcd,0xb4,0xd9,0xc4,0xb4,0x09, +0x91,0xb5,0xd9,0x3c,0x58,0x53,0xfe,0x26,0xd7,0x14,0x95,0x8b, +0x8a,0x52,0x70,0xe9,0x43,0x17,0x98,0xb4,0x1b,0x27,0xc9,0xeb, +0x3e,0xd5,0x26,0xd5,0x25,0xd6,0x9a,0xa4,0x0a,0x81,0xb3,0x3d, +0x66,0x99,0xaf,0x6e,0x77,0x17,0x0a,0xaa,0x73,0xea,0x95,0x0d, +0x3c,0x7c,0x8c,0x73,0xf0,0xa8,0x31,0x1c,0xc5,0x77,0x2e,0xc1, +0x3b,0x10,0xda,0x87,0xa1,0x9c,0xfa,0x03,0xc6,0x06,0x4d,0xa0, +0xab,0x97,0x9c,0x93,0x09,0xab,0x34,0xfc,0x2d,0x61,0xad,0x7f, +0x4b,0xd6,0xea,0x59,0x26,0x36,0x66,0xad,0xe0,0x15,0xb8,0xb8, +0xf3,0x92,0x48,0xa4,0x35,0x12,0x21,0xf8,0xb9,0x56,0x0f,0x84, +0x31,0x18,0x35,0x31,0x18,0xa9,0x8e,0xc1,0xbb,0x14,0x2f,0x82, +0x05,0x5c,0xe4,0x24,0xa5,0xbd,0x6c,0xe5,0xcd,0x9a,0xfa,0x1d, +0x2b,0x5e,0xa7,0x87,0x53,0x43,0x52,0x83,0x53,0xee,0x35,0x7d, +0x76,0xa9,0xa5,0x9b,0x6f,0x94,0xdc,0x4c,0x45,0x4a,0x9c,0x9d, +0xcd,0xf7,0x6e,0x77,0xb5,0x2b,0xb1,0x2d,0xb1,0xcf,0xf3,0x74, +0x14,0x2e,0x7a,0x5f,0x72,0xe9,0x75,0xe6,0xf1,0x98,0xfa,0xe3, +0x01,0xc6,0x8a,0x67,0x61,0x78,0x3f,0x63,0x7c,0x4b,0x71,0xe7, +0x04,0x4e,0x69,0xaa,0x78,0xc9,0xb5,0x64,0x64,0xb6,0xea,0x8a, +0x77,0x88,0xfa,0x25,0x84,0x0d,0x72,0xdc,0x32,0x0d,0x60,0x7e, +0x36,0x22,0xf5,0x32,0x07,0x2b,0x66,0x05,0xa4,0x1e,0xc7,0xb0, +0x86,0x1e,0x46,0xb2,0x8e,0xa4,0x1f,0x47,0x52,0x76,0xb0,0x14, +0x47,0x12,0x29,0x6e,0x2b,0xab,0x0c,0xc5,0x4c,0x81,0x79,0xe9, +0xf2,0x9a,0xef,0xef,0xe3,0x2c,0x0e,0x9c,0xe0,0x7d,0x56,0x81, +0xd9,0xf1,0x52,0x4e,0xba,0x88,0x1d,0x1a,0xb6,0x5f,0x80,0x65, +0x72,0x9a,0xf6,0x1f,0x8c,0x87,0xe5,0x9a,0x78,0xb0,0x16,0x6f, +0x52,0xaf,0xfb,0x86,0xff,0x34,0xbb,0x63,0xeb,0x2d,0xb4,0x6e, +0xef,0x9e,0x55,0xbe,0x9e,0x47,0x43,0x28,0xd3,0x67,0xdf,0xdd, +0xca,0x75,0xdf,0x69,0xfa,0x32,0xf7,0xb1,0x65,0xbe,0x10,0xb0, +0xda,0xf6,0x13,0x83,0x0d,0x2c,0x9b,0xc6,0xc5,0xc7,0x25,0xc4, +0x25,0xf0,0xea,0x91,0x17,0x18,0x71,0xbd,0xc1,0xda,0xb8,0x85, +0x24,0x9b,0x55,0xc3,0xf1,0x5c,0x63,0x6e,0x5e,0x83,0xae,0xd8, +0x4c,0xce,0x44,0x9f,0x8d,0x39,0x13,0xcd,0xab,0x9f,0x42,0x0e, +0x93,0xba,0xbb,0x8f,0xd9,0x9b,0xa9,0x21,0x29,0x8c,0x48,0xa3, +0xac,0x46,0x83,0x1c,0xf8,0xf8,0x31,0xc5,0x1b,0xc0,0xc3,0x0d, +0x4e,0xf2,0x67,0xe1,0xdd,0x87,0x0d,0x4c,0x78,0xcb,0x33,0x94, +0x0d,0xf8,0x2e,0xb2,0x37,0x27,0x62,0x83,0x86,0x18,0x17,0x30, +0x62,0xfc,0x48,0x26,0xc6,0x1a,0x92,0xb9,0x45,0x66,0xef,0x77, +0x58,0xb7,0x60,0x02,0x49,0x0c,0x6c,0xea,0x6d,0xcc,0x8d,0x97, +0x0d,0xe1,0xb8,0xda,0x0e,0xe3,0x0c,0xc4,0x17,0x17,0xb0,0x44, +0x65,0x47,0xd4,0xc2,0x5a,0x06,0xae,0x9b,0xfd,0x04,0x3e,0xc2, +0x7e,0x7a,0x3a,0x2e,0xf6,0xc4,0xe9,0x63,0x37,0xd1,0x5e,0x68, +0xab,0xd9,0x01,0xe6,0x51,0xf9,0x61,0x67,0x42,0xc2,0xb5,0x8f, +0x46,0xc5,0x9c,0x51,0x24,0x77,0xc5,0xf6,0x5f,0x1f,0x77,0xcb, +0x70,0x03,0xc1,0x85,0x7e,0xc8,0xad,0xfe,0x44,0xe7,0xbc,0x55, +0xdb,0xe5,0x8a,0x1b,0xd9,0x4f,0xb5,0xe1,0x26,0x54,0xd0,0x55, +0x04,0x17,0x05,0x4c,0x58,0x31,0x4d,0xa7,0x71,0x4f,0xd7,0xf5, +0xf2,0x1b,0xca,0xc7,0xda,0xa7,0xe3,0x63,0x4f,0x9d,0x89,0xba, +0x8d,0xce,0x42,0xe7,0xb9,0x0d,0xe0,0x1a,0xad,0x0c,0x3d,0x13, +0x16,0xa1,0x7d,0x24,0xe2,0xd8,0x59,0x45,0x52,0xc7,0xd9,0xbe, +0xcb,0xe3,0xee,0x12,0x75,0x01,0x12,0xa6,0xe4,0xe9,0xb7,0xf1, +0x79,0xda,0xf8,0x6d,0xef,0x6b,0xc6,0x40,0x74,0x46,0xce,0x45, +0x16,0x83,0xf1,0x39,0x51,0x83,0x1c,0x73,0x55,0x24,0xfd,0x72, +0xf7,0x42,0x0c,0x37,0x13,0xeb,0xbb,0xc9,0x9f,0x43,0xbb,0xd8, +0x4f,0x4b,0xfe,0xf2,0xfb,0x6b,0x46,0x53,0x7f,0x28,0xa5,0xd2, +0x76,0xdc,0x2b,0x6e,0xe7,0xf4,0x61,0x01,0x9d,0x88,0x77,0x7e, +0x23,0xd2,0xf6,0xdd,0xec,0x5b,0x59,0x6f,0x73,0x7e,0x96,0x09, +0x51,0xbd,0x8b,0xb3,0x68,0x31,0xb9,0x5b,0x74,0xaf,0xa6,0xbf, +0x85,0x6f,0x92,0xc2,0x2c,0x44,0x6d,0x62,0xef,0x67,0x7a,0x60, +0xdb,0x41,0xde,0x00,0x93,0xcd,0x20,0x59,0x5e,0x1f,0x58,0xb3, +0x04,0xd2,0x14,0xae,0x35,0x3b,0xbb,0x55,0x17,0x28,0x9c,0xea, +0x26,0xea,0xab,0x98,0xc4,0x24,0x73,0x63,0x92,0xe5,0xca,0x92, +0x79,0x0c,0xa2,0x62,0xe1,0x60,0xf1,0x56,0xf9,0x51,0xf8,0x28, +0x1e,0x74,0x94,0x30,0xa2,0xdc,0xa7,0x8d,0xf1,0x37,0x6f,0x9c, +0x14,0x82,0x9f,0x44,0x1f,0x5e,0xe3,0xb3,0xc6,0xcd,0xb4,0xdd, +0x55,0xa8,0x1c,0x28,0xbe,0x99,0x7e,0x9d,0x97,0x8c,0x6f,0x33, +0x71,0x1a,0x99,0x53,0x8d,0xf5,0x68,0xb9,0x45,0xc9,0xae,0x5c, +0x93,0xce,0x7c,0x21,0xb0,0xd7,0xfb,0xa2,0x67,0x07,0xcf,0x48, +0xcd,0xa7,0x34,0xaa,0x35,0xb4,0x3b,0xb4,0xde,0x34,0x5c,0xc8, +0xb0,0x4b,0xb6,0x48,0xb0,0xe6,0xb1,0xa6,0x9d,0x69,0xf7,0x95, +0xac,0x9d,0xbc,0xd9,0xe3,0x22,0xc9,0xce,0x02,0xf4,0x71,0x08, +0x1e,0x30,0x87,0x03,0x8c,0xa5,0x18,0x98,0x83,0x01,0xce,0xc7, +0xbf,0x93,0x74,0x86,0x2a,0xc2,0x04,0xce,0x6d,0xd2,0x85,0x99, +0xb0,0xc8,0xb0,0x17,0x0e,0x74,0x77,0x11,0xb5,0x08,0xb3,0xd9, +0x09,0x2b,0xd8,0x09,0xf7,0xdb,0x51,0xf6,0xb3,0x85,0x30,0x44, +0x6e,0x0b,0x67,0x30,0x10,0x55,0x30,0x10,0xfd,0x80,0x63,0x29, +0x70,0xb0,0x10,0x39,0xa2,0x36,0xc6,0x0a,0xa6,0xe0,0x41,0x86, +0xa2,0x6a,0x19,0x45,0x81,0x83,0x0a,0xae,0x96,0x15,0x54,0x7d, +0xab,0xda,0x45,0x4f,0x3a,0x1e,0xb7,0x8f,0xf2,0xe2,0x9d,0x22, +0xfd,0xc3,0x8c,0xc7,0x23,0xe1,0xe4,0x33,0xbe,0xcb,0x3d,0x68, +0x2e,0xba,0x91,0xaa,0x9b,0xd8,0x10,0x37,0xf0,0xe5,0x38,0xec, +0xe1,0x12,0x0a,0x13,0x0a,0xe3,0x0a,0x77,0xa7,0x08,0xfb,0xf1, +0x7d,0x23,0xfc,0x60,0xd1,0x9c,0x66,0x1b,0xe1,0xc6,0x9d,0xd6, +0xcf,0x2b,0xbf,0xe6,0xa5,0xb4,0xdf,0x06,0x67,0x0c,0xf0,0x89, +0xa6,0x24,0x23,0xcb,0x68,0xb7,0x35,0x19,0xad,0x52,0x9e,0xd5, +0x41,0x03,0x0a,0xf3,0x58,0x85,0x9f,0x6d,0x02,0xb3,0x51,0xc0, +0x9f,0x40,0x80,0xa9,0xbd,0x8c,0xf3,0xf3,0x5c,0x77,0xfa,0xc5, +0x82,0xe6,0x52,0xf7,0x76,0xc1,0xc2,0x6b,0xa7,0xef,0xc6,0xc3, +0xbc,0x64,0x75,0xa9,0x0b,0x7e,0x32,0xbf,0x2c,0x3a,0xa3,0x37, +0x6b,0x27,0x0d,0xe8,0xff,0xdf,0xbc,0x80,0x2a,0xe0,0x2c,0x3d, +0x02,0xd1,0x60,0xde,0x87,0xe6,0x60,0x04,0x8b,0xdb,0x07,0xc0, +0x12,0x43,0xff,0xa9,0x3f,0x99,0xb5,0xbb,0x96,0xfd,0x56,0xb0, +0x5d,0xf2,0xe7,0xf4,0x0a,0x5d,0x1f,0xc2,0xa4,0x71,0x5f,0x1a, +0x2c,0x20,0xa8,0xed,0xbc,0x51,0x6f,0xb7,0x0e,0xa4,0x63,0x21, +0x3e,0xee,0xeb,0x01,0x3b,0x52,0x68,0xf6,0xfd,0xb5,0xda,0xeb, +0x71,0x6f,0xb4,0x13,0x38,0xfc,0x38,0xe9,0xf2,0x3a,0x98,0x38, +0x1e,0xf6,0x73,0xc9,0xfd,0x8a,0x3f,0x15,0xaa,0x7a,0xa6,0xc0, +0x39,0x66,0xdf,0x3c,0x4c,0xa6,0xd2,0x54,0x18,0x2f,0x4e,0xe5, +0xd4,0x4f,0x82,0x98,0x7e,0x0f,0x99,0x7e,0x35,0xff,0x9b,0x8b, +0xf7,0x61,0x3b,0x05,0x3d,0x58,0x8c,0x72,0x32,0x99,0x0e,0x69, +0x14,0x7e,0x44,0xaf,0x2f,0x21,0xa1,0x1b,0x13,0xbe,0x32,0x5e, +0x80,0x11,0x66,0x10,0xb1,0x10,0xdd,0xf0,0x47,0x30,0x20,0x2e, +0xcb,0x97,0x2c,0xc6,0x77,0x57,0x57,0x30,0xee,0xc7,0x3f,0xfa, +0xfa,0x75,0xd6,0x3f,0x18,0xdf,0xb9,0xd6,0x0b,0xd7,0xe2,0xb9, +0xac,0x39,0x9f,0xcf,0x87,0xd1,0xcb,0x2a,0x19,0xd0,0x46,0x3f, +0x5b,0xf1,0xdc,0xe5,0x19,0xaf,0x16,0x44,0x39,0xce,0xab,0xe5, +0xa6,0x4d,0x9e,0x5f,0x78,0x6e,0x48,0xc4,0x7f,0x58,0x52,0x3c, +0xc9,0x1a,0x8c,0x93,0xac,0xd9,0xc0,0x93,0x14,0x4e,0x82,0x1e, +0xeb,0x26,0xd4,0x19,0xe0,0xc6,0xbe,0x59,0xc4,0xba,0x9a,0x79, +0x7e,0xb4,0x60,0x4f,0x8e,0x85,0xd2,0xa4,0x49,0x29,0x1c,0xee, +0x0b,0xe8,0xf6,0x6f,0xe6,0xc1,0x05,0xd7,0xd1,0xe2,0x8e,0xdc, +0x9e,0xb4,0x1e,0xdb,0x0c,0xe1,0x88,0x59,0xa0,0x99,0x9f,0x2d, +0x2f,0xbd,0xe3,0xce,0x28,0x45,0xd1,0x5f,0x2d,0x8c,0x2f,0x2b, +0x37,0xa5,0x72,0xb9,0xf1,0x1d,0x0c,0xce,0x65,0x9a,0xe0,0xdc, +0x2b,0x2f,0xbc,0xcc,0x82,0xd3,0xdd,0x44,0x8c,0xea,0x25,0xea, +0x37,0x03,0x4c,0xef,0x01,0x66,0x96,0x85,0xd8,0x47,0xf3,0xda, +0x95,0xdd,0x69,0x5d,0xa6,0x99,0x42,0xa8,0x7e,0xb0,0xb1,0xbf, +0x29,0x8f,0x37,0x4d,0xc4,0xfc,0x5e,0x0e,0x3f,0x3f,0x47,0xc3, +0x5b,0x83,0xbb,0x82,0xeb,0xcc,0x83,0x84,0x2c,0xfb,0x4c,0xab, +0x64,0x5b,0x1e,0x67,0xbe,0x66,0xd9,0xef,0x5d,0x23,0xd2,0x24, +0x67,0xbf,0x96,0xb7,0xdc,0xb9,0x85,0x41,0xd5,0x50,0x9a,0x49, +0xaf,0xc2,0x8d,0x1d,0xfd,0xe2,0x36,0x69,0xad,0xb4,0x8d,0x88, +0x44,0xde,0xa4,0xf0,0xc6,0xaf,0x2c,0x2b,0xaa,0x8d,0x25,0x79, +0xba,0x24,0x92,0xf9,0xbe,0x5d,0xf6,0x7d,0xd4,0x60,0x02,0xdc, +0x21,0x77,0xd9,0xda,0x8e,0x72,0x9a,0x1c,0xc6,0xd2,0xe4,0x68, +0xd5,0x6c,0xf1,0x06,0xb5,0x3a,0x68,0x14,0x68,0x14,0xcc,0xc3, +0x5c,0x98,0xdf,0x85,0xf3,0x61,0x84,0x11,0xbe,0x26,0x81,0x31, +0x41,0x31,0x41,0xc7,0x18,0xf3,0xfc,0xaa,0xe0,0x9f,0xe7,0x1e, +0x56,0xf2,0x10,0x7e,0x84,0xe2,0x70,0xce,0xeb,0x68,0x62,0xb9, +0xee,0xe7,0xe4,0x66,0xc1,0x83,0x86,0x9e,0x7a,0xf7,0x46,0xc1, +0xce,0x65,0xa7,0xbb,0x51,0x00,0x0f,0xd3,0x8d,0xb0,0x83,0x6c, +0xcf,0x0d,0xbc,0xa6,0x03,0x1c,0xd7,0x9c,0x9e,0xde,0xac,0xfb, +0xbd,0x7c,0xeb,0x90,0xfa,0x1a,0x6c,0xfc,0xef,0x3d,0x00,0x9c, +0x33,0xa1,0x11,0x1e,0x61,0x1e,0x21,0xee,0x3c,0xae,0x92,0xf4, +0x07,0x2e,0xc3,0x2f,0xbb,0x2e,0x88,0xfa,0x78,0x84,0x4b,0x2d, +0x4e,0x29,0x4f,0x2a,0xe5,0xf1,0x4b,0xfc,0x1b,0xd5,0xb4,0x09, +0xe2,0x2c,0x39,0x2a,0x87,0xc2,0x2f,0x38,0x94,0xa8,0x8d,0x34, +0x51,0xf9,0x7f,0xf5,0x0c,0xf0,0x2b,0xce,0xa3,0xa0,0x60,0x5f, +0x53,0xfc,0x35,0xf5,0x55,0xd5,0x47,0xba,0x4f,0x50,0x0c,0x67, +0x5f,0x0b,0x27,0x57,0xb4,0xd8,0xc1,0x21,0x76,0x20,0x39,0xc8, +0xb1,0x35,0x01,0x08,0xeb,0x47,0x61,0xb5,0x16,0x3b,0x7a,0x57, +0xee,0x4c,0x8f,0x46,0x0e,0x26,0x16,0x4d,0xb9,0x2c,0x60,0xae, +0xea,0x9b,0x4f,0xbb,0xa5,0x48,0x33,0xb2,0x63,0x1a,0x93,0xa3, +0xc0,0x98,0xa8,0x58,0x49,0x92,0xba,0xcd,0x61,0x08,0x17,0x66, +0x17,0x6c,0x75,0xd0,0x8a,0x17,0x47,0xc8,0x4f,0x78,0x5a,0x45, +0x7a,0xf1,0x9e,0x11,0xa1,0xe1,0xf6,0xe3,0x71,0x18,0x97,0x6d, +0xa6,0xf8,0x86,0x7b,0x5e,0x5c,0xd8,0x9b,0xa6,0x9b,0xdc,0x18, +0x7f,0xfb,0xcc,0x43,0x1e,0x7f,0xe5,0x92,0x8a,0x52,0x2a,0x92, +0xce,0xf1,0xa2,0xc0,0xa9,0xbb,0xa5,0x91,0x4c,0xfc,0x7d,0x2c, +0x6b,0x16,0xcb,0x59,0xd3,0x67,0x50,0xfc,0xa5,0x9a,0x5a,0xfa, +0xa1,0x6a,0x18,0x85,0x89,0x18,0x49,0x12,0x0a,0x12,0x0a,0xe3, +0x0b,0x8d,0xe3,0x84,0x28,0xdf,0x28,0xbf,0x48,0x3f,0x1e,0xf5, +0x2c,0x60,0x32,0x17,0xee,0x15,0xee,0x1d,0xb6,0x8f,0xc7,0xb9, +0x16,0xe2,0xc5,0x4e,0xee,0xcf,0xe1,0xb0,0x93,0xe1,0xb6,0x84, +0x55,0xb2,0xe0,0x39,0x74,0x01,0x06,0x93,0xd4,0xd2,0xd4,0xb2, +0xe4,0x72,0x1e,0x73,0x27,0x32,0xc0,0xbf,0x30,0x24,0xe7,0x65, +0x7e,0x92,0xc5,0x3e,0x5f,0x24,0xad,0xa5,0x3f,0xc0,0xaa,0x4e, +0x5c,0xf5,0x19,0x8c,0x03,0x13,0xc9,0x04,0x59,0x05,0xdc,0x88, +0x69,0x38,0x73,0xb7,0x39,0xdc,0xc3,0xd1,0x03,0xac,0xab,0xb3, +0xe8,0x22,0x38,0x0a,0xfe,0xa4,0xf3,0xf0,0x8b,0xd7,0xac,0xa2, +0x31,0x83,0x6b,0xaa,0xc3,0x20,0xc2,0xdd,0x18,0xc2,0x73,0x65, +0x84,0x7b,0x0c,0x12,0xaa,0x85,0x8c,0x50,0x89,0x43,0x58,0x08, +0xd9,0xcd,0x44,0x3b,0x86,0xa3,0x0d,0x72,0xba,0x8f,0x6e,0xc7, +0xe8,0x4b,0x86,0xb8,0x1e,0x0f,0xe2,0x7a,0x0e,0xf3,0x0e,0xe1, +0x42,0x93,0x69,0x3a,0x6d,0x8e,0x8a,0x2b,0xf0,0x6e,0x16,0xac, +0x83,0x32,0x79,0x19,0xcf,0x05,0x73,0x09,0x8e,0x39,0x1a,0x67, +0x0d,0xa3,0x92,0x14,0x16,0xac,0xed,0x0a,0xba,0xa4,0x03,0x3b, +0x18,0x64,0x32,0xea,0x74,0xfb,0x88,0x59,0xa6,0x62,0x35,0xee, +0x20,0xfe,0x31,0x71,0x39,0xba,0xdd,0x04,0xf4,0x52,0x63,0xda, +0x70,0xde,0x11,0xc5,0x97,0x10,0x48,0xc2,0xbd,0x0e,0xba,0x05, +0xf8,0xb5,0xfb,0x09,0x45,0x95,0x05,0x2d,0xe9,0xad,0x7c,0x3d, +0x16,0x12,0xf5,0x50,0x18,0xc7,0x14,0x4c,0x63,0x04,0xac,0x45, +0x03,0xaf,0xab,0x0c,0x5e,0x45,0x1a,0x78,0xc5,0xbe,0xad,0x9f, +0xb1,0xcc,0x67,0xdf,0xcc,0xa7,0x1d,0xd2,0x18,0xd4,0x5e,0x67, +0x71,0x0f,0x77,0xf7,0xb6,0xc2,0x97,0x9d,0xf8,0xe5,0x2b,0x90, +0x3a,0x51,0x7a,0x4e,0x24,0x4f,0xbc,0xf5,0x5f,0x7b,0xb4,0x61, +0x62,0x23,0x2d,0xea,0x83,0xd5,0x18,0xfa,0x8d,0xfe,0x5c,0x3c, +0x80,0xab,0xfb,0xfc,0x88,0xa4,0x03,0xc9,0x83,0x33,0xa1,0x2c, +0xbd,0xd9,0x51,0x69,0xfa,0x2b,0x71,0x3a,0x27,0x45,0x2d,0x63, +0xc0,0xf9,0xd2,0x88,0x9c,0x97,0x81,0x93,0xc9,0x3e,0x6b,0x93, +0x16,0x51,0x40,0xc9,0x10,0x91,0x88,0x14,0x2e,0xd0,0x19,0xf8, +0xe4,0x0d,0xc1,0x65,0xcb,0x99,0x4d,0x33,0x59,0xc5,0x8d,0xd9, +0x42,0x27,0xe3,0x93,0x7f,0x12,0x89,0xc7,0xd7,0xec,0xf4,0x2e, +0xec,0xf4,0xd9,0xf2,0xe9,0x5d,0x07,0xc1,0x30,0x4f,0xc6,0x72, +0x1a,0x46,0x51,0xb1,0xf3,0xa2,0xd4,0xc9,0x8d,0x7e,0xa2,0x81, +0x32,0x2b,0xec,0xf0,0xb3,0x7a,0x07,0x7d,0x0a,0x0e,0xf0,0x0a, +0x1d,0x1e,0xc2,0xd6,0xbc,0x5e,0xd8,0x2a,0xa5,0xe3,0xd6,0x9e, +0x00,0x58,0xbd,0x1a,0xad,0xf0,0x15,0x58,0xad,0xc0,0x93,0x16, +0x70,0x12,0x3f,0x1a,0x80,0x8f,0x20,0xb1,0x93,0x48,0x01,0xf2, +0x22,0x32,0x33,0xa6,0xe2,0xe6,0x5b,0x86,0x9b,0x71,0x25,0x37, +0xd3,0x96,0x09,0xfa,0xf2,0xad,0xa0,0x8c,0x03,0x40,0x1b,0x4e, +0xa0,0x38,0xf1,0x35,0x4c,0xe4,0xc0,0x71,0x1e,0xc5,0x19,0xaf, +0x61,0x06,0x27,0x9d,0xc0,0xc9,0x83,0xce,0x17,0x97,0xc6,0x32, +0x3c,0xce,0x40,0xf6,0xa9,0xf5,0x1b,0x0a,0x33,0x66,0xe0,0x0c, +0x99,0x0c,0x5e,0xfb,0x6f,0x65,0xff,0xb1,0x46,0xd0,0x1c,0x66, +0x80,0x0b,0xea,0x6e,0xea,0x7f,0xe3,0x38,0x4c,0x87,0x73,0xe3, +0xe0,0x8e,0xe4,0x84,0x57,0x08,0x86,0x86,0xe1,0x26,0x13,0x7c, +0x5f,0xa7,0xcd,0x49,0xd1,0x0f,0x1f,0x29,0x19,0x39,0xcf,0x1c, +0x07,0x29,0x20,0xe2,0x69,0x82,0xcd,0x71,0xb8,0xbe,0x66,0x8d, +0x4e,0xee,0x9e,0x9e,0x33,0xf1,0x17,0xb3,0xc1,0x4b,0x70,0x2e, +0x56,0xa0,0xc3,0x7a,0x9a,0x14,0x90,0xe2,0x99,0xec,0xb1,0x34, +0x54,0x80,0xb9,0xbf,0xc1,0xcd,0x89,0x30,0x9c,0x34,0x25,0x37, +0xa4,0x9e,0x4b,0x0b,0x68,0x11,0x76,0xf8,0xe1,0xbb,0x7e,0x7a, +0xe1,0x69,0xd6,0xc2,0xb9,0xd8,0xba,0x84,0xfa,0x44,0x7e,0xda, +0x04,0xbc,0xf9,0x3b,0x2e,0x26,0x66,0x91,0x66,0xd1,0x7b,0x8f, +0x25,0x99,0x09,0x0f,0x92,0xe0,0xc3,0xac,0xa7,0x59,0xd9,0x9b, +0x85,0xc6,0xf4,0x90,0x4b,0xfb,0xbe,0x3e,0xd8,0xa9,0xad,0x76, +0x12,0x8f,0x33,0xa4,0x3c,0x65,0x48,0x69,0xd0,0x20,0x25,0x99, +0x19,0xa1,0xc2,0x84,0xa2,0x8f,0x3e,0xf8,0x10,0x78,0x07,0x7d, +0x28,0xf8,0x5c,0x44,0x1f,0x22,0x69,0x3f,0x67,0x36,0x48,0xfe, +0xeb,0xda,0x83,0x3d,0x53,0x37,0x4d,0x56,0xd7,0x71,0xf0,0xda, +0xc3,0x27,0xf2,0xb5,0x87,0x07,0x1a,0x75,0x59,0xa2,0x68,0x31, +0xa6,0xe2,0x40,0x8f,0x34,0xc0,0x89,0x45,0xf2,0x8a,0x38,0x41, +0xcc,0xd2,0x68,0x19,0x89,0xf3,0x77,0xe2,0x04,0x9d,0x56,0xbb, +0x4b,0xa0,0x9d,0x05,0x7b,0xce,0x80,0x9e,0xb6,0xb8,0x46,0x8e, +0xda,0xbd,0x4c,0x80,0x97,0xfd,0x44,0x94,0x1f,0x5b,0x95,0x38, +0x18,0x22,0x72,0x9c,0xba,0x70,0x3e,0x1b,0x29,0xe3,0x6d,0x55, +0xcc,0x60,0x96,0xf7,0x64,0xc5,0x1b,0xfc,0x1f,0x69,0x16,0xca, +0x79,0xac,0x79,0x7d,0x82,0x0b,0x76,0xc8,0xcb,0xe5,0x74,0x71, +0x75,0xe9,0x83,0xcb,0xe5,0x6c,0x96,0x97,0xcb,0xf9,0x80,0xa5, +0xf6,0x55,0xf0,0xfe,0x23,0xae,0x4d,0xeb,0x31,0xbe,0xbf,0x92, +0x83,0x0f,0xb4,0xe0,0xfd,0x27,0xf8,0x3e,0x51,0x1f,0xc5,0x02, +0x26,0xb9,0x33,0x93,0x5c,0x29,0x4b,0xee,0xf2,0x6f,0x70,0x8d, +0xfe,0x63,0x31,0xd4,0x50,0xd1,0x0b,0x8d,0x4c,0x41,0x0b,0x67, +0xe0,0x68,0x33,0x18,0x8d,0xcb,0x70,0xb5,0x18,0x63,0x20,0xc5, +0x30,0x5e,0xbf,0x0c,0x46,0x74,0xe3,0x08,0xd0,0x25,0xad,0x49, +0x4d,0x29,0x75,0x39,0x7e,0xed,0x82,0xcd,0x41,0xb3,0x90,0x5d, +0xd1,0xbc,0x64,0x0d,0x8e,0xe4,0x00,0xbe,0xbf,0x65,0x2e,0xce, +0x9c,0x5b,0x65,0x2a,0x80,0xde,0xaf,0x0f,0xde,0xa4,0xc2,0x5c, +0x3e,0x81,0x4b,0xc3,0xd9,0x5f,0xce,0x82,0xf9,0x38,0xb4,0xba, +0x47,0xc0,0x69,0x6f,0x56,0xbe,0xf2,0x87,0xd1,0xbc,0xfa,0x6f, +0x9a,0x7d,0x56,0x58,0xb6,0xcf,0xf8,0x6b,0x4a,0x40,0x03,0xbd, +0xdc,0xb7,0x9a,0xe6,0xfe,0x35,0xe5,0xe0,0xc1,0xa4,0xcc,0x97, +0xa5,0xf4,0x1c,0x94,0x72,0x91,0x2c,0xe5,0x23,0x8d,0x7d,0xcf, +0xf7,0x91,0x5a,0x13,0x2a,0x6e,0xc6,0x2a,0xfc,0x90,0xcb,0x34, +0x53,0xc0,0x70,0xae,0x29,0x23,0xbf,0x41,0x17,0xf2,0xaf,0x74, +0x4b,0xdd,0xa4,0x13,0x15,0x14,0x6d,0x40,0x09,0x36,0x04,0xef, +0xcb,0x71,0xf8,0x3b,0x6b,0x90,0x5d,0x36,0x51,0x18,0x02,0x8b, +0x70,0x08,0x91,0x9e,0x1c,0xf9,0x7f,0xa7,0x9c,0x54,0x31,0xac, +0x94,0x3d,0xc7,0x69,0xf2,0x46,0x1d,0xf0,0x21,0xd7,0x9c,0x91, +0xcf,0xf8,0xe1,0x1d,0x79,0x28,0x33,0xd2,0xb9,0x9d,0x62,0x46, +0x6f,0x37,0x8b,0x43,0x67,0x22,0x3d,0xc2,0x67,0xff,0x51,0x67, +0xc4,0xd5,0xf2,0x8e,0x63,0x3c,0x23,0x86,0x3c,0x41,0xe9,0x97, +0x7f,0x4f,0xab,0xed,0x14,0xdd,0x68,0x13,0x36,0xb5,0x80,0x79, +0x03,0x9a,0x37,0x83,0x57,0x59,0xef,0xaf,0xd2,0xdc,0x8b,0xfa, +0xfa,0x92,0xce,0xa4,0x5e,0x6f,0xb0,0xdd,0x83,0x5b,0x1c,0x60, +0x8b,0x2d,0x96,0xda,0x41,0x2c,0xd9,0xe5,0xb8,0xd8,0x03,0xdf, +0xdb,0x97,0x69,0x27,0xbc,0x2e,0xf8,0xfa,0xdc,0xed,0x3a,0xde, +0x5d,0xd4,0xae,0x24,0x77,0xf7,0xfe,0xc3,0xeb,0xbb,0xfd,0xca, +0x26,0x01,0xc7,0x94,0xce,0xab,0xd8,0x59,0xcf,0x4b,0x97,0x99, +0x4f,0xc1,0xc6,0x02,0x6d,0x38,0x48,0xd0,0xea,0x84,0x43,0x16, +0xa4,0x87,0xfd,0xf1,0xb4,0x20,0x98,0xe7,0x40,0xf7,0xe0,0xa1, +0x66,0x02,0x87,0xf4,0xa8,0x2d,0x1e,0x6a,0x21,0xdb,0x70,0x1c, +0xcd,0x4b,0xcf,0x49,0x57,0x66,0xca,0xfb,0x5e,0x2a,0x43,0x72, +0x43,0xf3,0x43,0x79,0x30,0x65,0x95,0xb3,0x51,0xed,0x6b,0x4f, +0xca,0x9c,0xa8,0xbd,0x6a,0x71,0xa3,0xbc,0x17,0x54,0xa3,0x7a, +0xb1,0x3d,0x69,0x42,0x0f,0x5a,0x26,0x3e,0xf1,0x1e,0x80,0xb5, +0x6a,0x7d,0x5c,0x4b,0x54,0xf4,0x0e,0x95,0x9e,0x0c,0x88,0x4f, +0xb8,0xd1,0x7f,0x6c,0x53,0x8d,0xa4,0x1b,0xfb,0xec,0x7a,0x5c, +0x6f,0xf2,0x78,0xd0,0x0c,0xcc,0xb8,0x73,0xbb,0xbb,0xb6,0xdd, +0x32,0xe6,0xd5,0xcf,0x20,0x64,0x70,0x52,0x12,0x96,0xf8,0x52, +0x7f,0xc3,0xbd,0x66,0x96,0xb6,0x95,0x36,0x42,0x6f,0x57,0xfd, +0x40,0xe9,0x25,0x1e,0x37,0xa0,0x0e,0xb3,0xfa,0x6f,0x8c,0x8f, +0x57,0xbb,0xd0,0x2e,0xbc,0x6b,0x4e,0xa4,0x4d,0x7b,0x06,0x27, +0x2c,0xc5,0x42,0x8c,0xa3,0xf2,0xc6,0x90,0x29,0x11,0x65,0x03, +0xc2,0xa6,0x5e,0xbb,0x5e,0xd7,0xeb,0x3c,0x06,0x9a,0x83,0x05, +0x57,0x60,0x5b,0x6b,0xda,0x65,0xc5,0x4b,0x33,0xb8,0xba,0x86, +0xb2,0x96,0xfc,0x16,0xbb,0x0a,0xc1,0xcf,0xc8,0xc1,0xd8,0x6c, +0x4f,0xa5,0xb5,0x90,0x9e,0x9a,0x9a,0x96,0x9a,0xca,0x63,0xde, +0x0e,0x73,0xb1,0xa1,0x6b,0x13,0x91,0x0a,0xe1,0xd1,0xe0,0x5c, +0xe7,0xe0,0x7c,0xe1,0x5f,0xf3,0x9b,0x62,0x1a,0xf4,0x51,0xf4, +0xdf,0x0c,0xfe,0x84,0x95,0x72,0x7f,0x16,0x2f,0xb7,0xd1,0x9f, +0xb4,0x6a,0x81,0xff,0x5d,0xf6,0x97,0xfd,0xca,0xe8,0x5f,0x6e, +0x12,0x67,0xb2,0x36,0xb5,0xb2,0xa0,0xb4,0xb4,0xb0,0x94,0xb7, +0x1b,0x20,0xa1,0x2e,0x81,0x8e,0x81,0xce,0x3c,0x5c,0xe3,0x4e, +0xf8,0xc7,0xf8,0x46,0x1d,0xe0,0xfd,0x23,0x8f,0x46,0x78,0x8f, +0x47,0x3d,0x2e,0xc3,0x5c,0x01,0x73,0xb8,0x9e,0x92,0xac,0x8e, +0x74,0xdd,0xa4,0xf2,0xc4,0xb6,0x33,0x57,0x79,0xac,0xe7,0x92, +0xf3,0x92,0xf3,0x92,0xf2,0x78,0x38,0xd4,0xc4,0x15,0xef,0x3b, +0xb7,0xaf,0xca,0xbf,0xb6,0x53,0x58,0xde,0x6b,0x78,0x6b,0x1f, +0xfb,0xf4,0xa4,0x35,0x67,0x5f,0xe0,0x63,0x66,0x6f,0xb8,0x63, +0x8f,0x76,0x05,0xfe,0xc3,0x08,0xfe,0x41,0x58,0x97,0x6f,0x35, +0x88,0x5c,0x71,0x96,0x0d,0x4d,0xdf,0x97,0xef,0x5e,0xce,0x48, +0xce,0x97,0x5c,0xd1,0xb9,0xdc,0xca,0xcc,0x72,0x5e,0x0a,0xc4, +0xd0,0xff,0x17,0x94,0x20,0x5a,0x50,0x2c,0x34,0x36,0x13,0x9f, +0x75,0xeb,0x03,0xab,0x6c,0x29,0x08,0xff,0x89,0xbd,0x70,0x59, +0x4f,0xdf,0x15,0xe0,0x4b,0x60,0x1c,0xfa,0x52,0xf0,0x7d,0x8e, +0xbe,0x0c,0x12,0xe0,0xfb,0x8a,0xfd,0x95,0x1a,0xc1,0xe0,0x5f, +0x7a,0xaa,0xac,0xc4,0x43,0x74,0x3d,0xb1,0xcc,0x3e,0xd4,0xa5, +0x03,0xef,0x73,0x55,0x19,0x69,0x55,0xba,0x03,0xc4,0x32,0x53, +0xb1,0x7e,0x22,0xf1,0x8b,0x8e,0x2d,0xd0,0xbd,0xca,0x9a,0xb7, +0x3b,0x92,0x3d,0xde,0x81,0x77,0xc9,0xa1,0x4d,0x46,0x8e,0x33, +0xdc,0xe4,0xf5,0xb0,0x47,0x35,0xdc,0xbc,0x95,0xf5,0x05,0x2f, +0x15,0xc3,0x67,0x4c,0xb0,0xda,0x3e,0xf9,0x36,0xf4,0x71,0x14, +0xa7,0xbc,0x62,0x2d,0x5f,0xdf,0x22,0xfa,0x0a,0x66,0x2c,0x22, +0xea,0xca,0x28,0x96,0xb8,0x5e,0xb3,0xc6,0xf8,0xac,0x13,0x9d, +0x8f,0x53,0xbe,0x26,0x60,0xa3,0x05,0x33,0xe6,0xcb,0x35,0xe1, +0xa7,0x88,0xc1,0x02,0xa5,0xd1,0xa7,0x84,0x05,0x99,0x1a,0xff, +0xa0,0x4b,0x0a,0xd7,0x97,0xed,0xaa,0xfe,0xac,0xb3,0xed,0x42, +0xd9,0x15,0x56,0xb0,0x4b,0x48,0x46,0x41,0x7a,0x51,0x4a,0xb1, +0x65,0xa6,0xe0,0xba,0x62,0xeb,0x4a,0x54,0x18,0x15,0x59,0x0a, +0x8d,0x79,0xd5,0x05,0xe7,0x8a,0x2b,0x1d,0x6a,0x9d,0x1b,0x3d, +0x76,0xb8,0x2d,0xf7,0x9e,0x72,0x40,0x69,0x2e,0x00,0x29,0xfe, +0xa6,0xfa,0x6e,0xe3,0x2d,0xfb,0x67,0xae,0x6f,0xf6,0xf1,0xea, +0x9a,0xb3,0x6f,0x27,0x1f,0x4a,0x65,0x5b,0xf8,0x42,0x03,0xcd, +0xc8,0x54,0xc0,0x49,0xce,0xc7,0xc6,0xc1,0x66,0xa7,0x83,0x65, +0x95,0xc3,0x79,0xd7,0x66,0x1e,0x13,0x0f,0xfd,0x6b,0x4e,0x42, +0x75,0x40,0x75,0x8a,0x5a,0x54,0xac,0x2a,0x37,0xc8,0xf4,0xb3, +0x17,0x2e,0x04,0x3f,0xf2,0xe8,0xf0,0xe2,0x71,0x0b,0x6b,0xe7, +0xed,0xe2,0x0b,0x83,0xaf,0x8c,0x87,0x4f,0xb8,0xfa,0xcc,0xd4, +0x3a,0x5d,0x18,0x43,0x2c,0x32,0x14,0x38,0x01,0x67,0x11,0xbb, +0x93,0xf1,0x35,0xba,0xb1,0x04,0xe8,0xb7,0x3f,0xc1,0x7b,0x17, +0x41,0xdb,0x3a,0x4f,0x30,0xc3,0x11,0xcb,0xa7,0x4c,0x58,0xca, +0x83,0x95,0x31,0x46,0x10,0x53,0x17,0x7d,0xaf,0x1d,0xbe,0x85, +0xf2,0x1e,0xaf,0x9d,0x25,0xed,0x65,0x2c,0x13,0x8a,0x1f,0x33, +0xf2,0x71,0x9c,0x75,0x0d,0xc3,0xa7,0xd2,0x23,0xab,0xfd,0x17, +0xb8,0xee,0x6a,0xf3,0x13,0xce,0xdf,0x2a,0xfc,0x26,0xf5,0x39, +0x2f,0xfa,0xe1,0x19,0x1a,0xfc,0xd8,0xef,0xa5,0xf7,0x35,0xeb, +0x20,0xa1,0x64,0x67,0xe1,0xe2,0x8c,0xa5,0xbc,0x74,0x91,0x11, +0x36,0xcd,0x04,0x5e,0xb5,0x9c,0x03,0xc3,0xdf,0x72,0x94,0x70, +0xe6,0xfe,0xaf,0xbd,0x28,0x36,0x6e,0x35,0x15,0x7f,0xeb,0x31, +0x83,0x46,0xa2,0x4e,0x97,0x46,0x31,0x95,0x77,0x32,0xd2,0x15, +0xc1,0x48,0x97,0x78,0x88,0xc1,0x1f,0x23,0xe7,0x40,0x24,0x91, +0xc9,0x21,0x85,0xc8,0x6f,0x19,0x45,0x6c,0xd3,0x82,0xc8,0x37, +0xec,0xaf,0xf4,0x05,0xec,0x96,0x39,0x8b,0x96,0xa6,0xe9,0xb0, +0x50,0x45,0xd2,0x57,0x06,0x8b,0x70,0xbf,0xa9,0x98,0xde,0x43, +0xd4,0xbf,0xf6,0x31,0x19,0x6b,0x7b,0x65,0xb2,0x72,0x9d,0x7e, +0x72,0x01,0x66,0xb1,0xbc,0x97,0x55,0x9d,0x79,0x3e,0xb5,0x91, +0xf5,0x1e,0x61,0xb6,0x21,0x7b,0x0e,0xd8,0xf1,0x78,0x1f,0x67, +0x0d,0x7c,0xcf,0x01,0x7d,0x41,0xc3,0x6b,0x82,0x6b,0x42,0xca, +0xcd,0x03,0x84,0x2c,0xcf,0x0c,0xb7,0x14,0x57,0x5e,0x4a,0xfc, +0x9d,0x1a,0xc2,0xb7,0x03,0x04,0xbb,0x35,0x57,0x7e,0x64,0xae, +0xf9,0x05,0x2e,0xa3,0x18,0xfd,0xab,0xc1,0x24,0x0c,0x35,0x81, +0x71,0xdc,0x71,0xdc,0xe8,0xbe,0x06,0xc7,0x2d,0xa9,0xb2,0x14, +0x7e,0xbd,0xdd,0x7d,0x33,0x0f,0x86,0xf0,0xcc,0x35,0x27,0x2d, +0x8f,0x99,0xb2,0xce,0xd8,0x3b,0x2a,0x3c,0xca,0x71,0x3c,0x8e, +0xe4,0x32,0x35,0xbd,0xf8,0xf5,0xa2,0xc2,0x9e,0x54,0xdd,0xa4, +0x86,0xb8,0xfe,0xd3,0xbf,0xf1,0xd8,0xc9,0x9d,0x2d,0x3e,0x5d, +0x7a,0xba,0x9c,0x87,0x6f,0x39,0xe9,0x8b,0x62,0x56,0x6d,0x4b, +0xe4,0x6a,0x20,0xd3,0x4d,0x3f,0xa6,0x79,0x99,0x4c,0x37,0xfd, +0x07,0xf9,0xd8,0x0a,0x0d,0x1f,0xd3,0x67,0x95,0xb3,0x07,0x8f, +0x31,0x66,0xe3,0xd3,0x8d,0xf7,0x49,0x7c,0x4a,0x7c,0x6a,0x5c, +0x0a,0x08,0xd7,0xbf,0x7b,0x36,0xf0,0x86,0x3f,0x8f,0x59,0x24, +0x27,0x3b,0x33,0x3b,0x35,0xdb,0x2c,0x57,0xb0,0xdc,0xba,0xc4, +0x10,0x87,0x38,0xe6,0xdb,0x08,0x7d,0xb9,0xfd,0x65,0xed,0x15, +0x3c,0x24,0x73,0x9e,0x76,0x0e,0x0e,0xa6,0x4e,0x5e,0xb5,0xee, +0x95,0xfb,0x0a,0x9c,0xbc,0x85,0xc2,0x83,0x55,0x4e,0x25,0x6e, +0x01,0x61,0x07,0xc2,0xfc,0x8f,0x78,0xd7,0x7b,0x54,0xf8,0x16, +0x39,0x78,0x0b,0xf9,0x81,0x15,0x2e,0x45,0xae,0xb6,0x41,0xe6, +0x87,0x8c,0x42,0xb2,0x2d,0x85,0xf6,0xf4,0xe6,0xcc,0x46,0xa5, +0xb7,0xb5,0x9d,0x8d,0xa3,0x5b,0xa3,0xb3,0x50,0x75,0xae,0xfa, +0x7c,0x59,0x13,0xff,0x00,0x3f,0xc2,0x13,0xa6,0x70,0x02,0x37, +0xe3,0x1c,0x10,0x0c,0x30,0xfc,0x42,0x87,0xf8,0x8e,0xe5,0x05, +0x08,0x37,0x60,0x4d,0xfa,0x1c,0xd8,0xcc,0xa9,0x47,0x89,0xdf, +0x0c,0xd6,0xb8,0x52,0x4d,0xd1,0x7b,0x61,0x44,0xea,0x64,0x87, +0xa7,0xbd,0x2d,0x7a,0x69,0x7f,0x91,0x0a,0xc6,0x25,0x30,0x5d, +0x2e,0x7a,0x7b,0x07,0x8b,0xde,0x6c,0x4d,0xa6,0xf2,0xae,0xa3, +0x2a,0x1b,0xd1,0xbb,0x57,0x2a,0xfd,0x73,0xe4,0x85,0x2b,0x62, +0x50,0x1f,0xf9,0x73,0x98,0x2a,0x8e,0xfd,0xbe,0x90,0x85,0xa5, +0xab,0x3c,0x81,0xe7,0x09,0xf7,0xc1,0x93,0x48,0x69,0xeb,0xd9, +0xe0,0x0f,0x58,0xb5,0xbb,0x3d,0x87,0xc2,0xbb,0xac,0x51,0x7d, +0x97,0xa8,0x0f,0xa7,0x0e,0x32,0x50,0xf8,0x4d,0x5e,0xdf,0xa0, +0x01,0xd7,0x62,0x83,0x7c,0x65,0xad,0x81,0x62,0x03,0x6c,0x81, +0x06,0x22,0xdd,0xde,0x38,0xc8,0x41,0xc5,0xeb,0x39,0x14,0x0d, +0x56,0xb3,0xae,0x1a,0xdc,0xe4,0x66,0xc8,0xe0,0x05,0x1a,0x10, +0xb5,0x2f,0x83,0xd7,0x20,0x65,0xc8,0xfa,0x0f,0xca,0x30,0x57, +0x23,0xd7,0x0d,0xd5,0x31,0x9a,0x5c,0x90,0x54,0x98,0x50,0x60, +0x9e,0x29,0xf8,0xe9,0x59,0xcf,0xdf,0xbe,0xa5,0xc2,0x4a,0xc8, +0xc9,0xcb,0x2e,0xc8,0x2a,0xe2,0xbd,0xa0,0xbc,0x1d,0xb3,0x49, +0x5a,0x4e,0x6a,0x4e,0x4a,0x2e,0x0f,0x0f,0x59,0x23,0x84,0xe3, +0x4e,0xe2,0xfe,0x23,0x38,0x42,0x67,0x45,0x64,0xa8,0xeb,0xf6, +0xf1,0xf3,0x39,0xa5,0xb1,0xe2,0x3e,0xf7,0x73,0x69,0x2f,0xbc, +0x9b,0xaa,0x9b,0x0a,0xef,0x9f,0x66,0xf9,0x4d,0x6b,0x1c,0xf3, +0xac,0x94,0x2d,0x15,0xb0,0xee,0x01,0x3f,0xfe,0xe2,0x3b,0x98, +0x7e,0xbb,0x7b,0xd3,0x23,0xe3,0x55,0x28,0xb0,0x97,0x2d,0x66, +0x37,0x71,0xfa,0xd7,0x8b,0x71,0x1c,0x46,0xc3,0xb8,0x85,0xb8, +0xdc,0x04,0x96,0xe3,0xc2,0x01,0x58,0xa8,0x99,0x05,0xf9,0x92, +0xd4,0x89,0xfb,0xe8,0x6c,0x14,0xbe,0x23,0x0c,0x2c,0xcb,0xa9, +0xa5,0x38,0xb4,0x83,0xe0,0xeb,0x29,0xd4,0x0a,0xae,0xb7,0x13, +0xe9,0x6e,0x08,0x45,0x9d,0x15,0xf2,0x03,0xab,0xe3,0x35,0x0f, +0xac,0x3e,0x47,0x1d,0x22,0xee,0x38,0x4b,0xdb,0xf1,0xba,0x15, +0x39,0x69,0x4a,0x31,0xb4,0xbb,0x13,0xd2,0x61,0x3b,0x61,0x0e, +0x18,0x47,0xbf,0x00,0x67,0x46,0xe7,0x5e,0xa9,0xac,0xa9,0xbd, +0x38,0xb1,0x11,0x57,0x36,0x82,0x51,0x23,0x1a,0xb5,0x18,0xd8, +0xa2,0xad,0x3d,0xd8,0xda,0xb3,0x6c,0x68,0x4d,0x1d,0x60,0x80, +0x78,0xb9,0xef,0xf5,0xb5,0x3c,0xe8,0x98,0xeb,0x5a,0xe0,0x5e, +0xea,0xba,0x4f,0x28,0xda,0x5f,0x1a,0x50,0x19,0x68,0x1f,0x66, +0x75,0xd4,0x28,0x22,0xc3,0x5e,0xb8,0x93,0x72,0x39,0xa3,0x27, +0xf7,0x82,0xcf,0x9d,0x03,0x5f,0x07,0xa6,0x37,0x09,0xeb,0x33, +0x0d,0x33,0xad,0x72,0xfa,0xcb,0x9a,0x6b,0x2b,0xda,0xf8,0x73, +0xf8,0x86,0x0c,0xd4,0x64,0xd7,0x9c,0x69,0xe5,0x41,0xdb,0x96, +0xf3,0xc8,0x3a,0x52,0xab,0xf3,0x80,0xab,0x4d,0xcf,0xaa,0xd0, +0xad,0x22,0x36,0xe9,0x0a,0x83,0x9d,0x24,0x24,0x26,0x36,0x4d, +0xf7,0x31,0x86,0x91,0x1d,0x51,0x5e,0x9b,0xf6,0xea,0x94,0x79, +0x2a,0x8c,0x70,0x0d,0xeb,0x52,0xa5,0xb1,0x04,0x3f,0x3a,0xee, +0x6e,0xb3,0x43,0xa7,0xc5,0xb9,0xb4,0x21,0xb3,0x3a,0xa1,0x5d, +0x1b,0xf8,0xf3,0x72,0x3b,0x7e,0x26,0xeb,0x54,0x4e,0xde,0x38, +0x18,0xca,0x75,0xe9,0xd3,0x8b,0x30,0x5c,0x9f,0x88,0x3a,0x38, +0x85,0x36,0xa8,0xa9,0x03,0xc1,0x0f,0x96,0xd0,0x3f,0xb4,0x9a, +0xfe,0xd4,0xe2,0x80,0x5f,0x4a,0x1d,0x54,0xd3,0x1b,0x58,0xdf, +0x35,0xbc,0x41,0x3d,0xdd,0x81,0xb4,0xa1,0x1f,0x2d,0x15,0x6f, +0xec,0xbb,0x0c,0x5b,0xd5,0xdb,0x71,0x2b,0x51,0x8d,0xba,0x47, +0xa5,0x1b,0x97,0x45,0x79,0x3e,0xc0,0x58,0xf5,0x84,0x1a,0xcc, +0xc5,0x18,0x13,0xb1,0xab,0x17,0x13,0x38,0x35,0xd7,0x3f,0xd8, +0x43,0x8b,0x2b,0x19,0xee,0xc2,0xed,0x42,0x6c,0x83,0x5c,0x79, +0xbc,0xac,0x1e,0xd5,0x2f,0x3e,0x10,0xb5,0xa4,0x04,0xe4,0x39, +0xa5,0x91,0xe2,0x7b,0xae,0x31,0x2b,0xa7,0x5e,0x57,0xec,0x43, +0x81,0x64,0x54,0x64,0x34,0x26,0xd7,0xf0,0xf8,0xf4,0x18,0xcd, +0xf4,0x4a,0x73,0x4f,0x71,0xeb,0xca,0x10,0x22,0xaa,0x43,0xab, +0x0f,0xb3,0x76,0x5e,0x7f,0x03,0xc3,0xeb,0xab,0x7f,0xb7,0xd7, +0xf0,0x03,0x23,0xa8,0x2f,0x81,0x76,0x22,0x7d,0x6a,0xbe,0x02, +0xdf,0xb7,0x80,0xf7,0xf5,0xe6,0x62,0x7a,0x57,0x37,0x98,0x81, +0x13,0x91,0x8c,0x1e,0x0f,0x36,0xdd,0x83,0x35,0xff,0xaf,0x86, +0x59,0xcc,0x95,0x79,0xd8,0x30,0x98,0x80,0xc3,0x88,0x64,0xf8, +0xcb,0xbf,0x7a,0x67,0x71,0x93,0xaa,0x83,0x62,0xb1,0x68,0x0f, +0xc5,0x44,0xdd,0x17,0xcd,0x92,0x55,0x32,0x4b,0xcd,0x73,0x70, +0x08,0xbd,0x05,0xbf,0x6c,0x26,0x92,0xef,0x02,0x76,0xf2,0x5b, +0x2c,0x58,0x76,0xfb,0xd1,0x3b,0xf0,0xcb,0x06,0xa2,0x3e,0x66, +0xcc,0xc4,0x38,0xd3,0x47,0xfa,0x6d,0x28,0xee,0x12,0xdb,0x61, +0x17,0x91,0xc6,0xd9,0xd1,0x99,0x38,0xe4,0x07,0x02,0x85,0x33, +0x99,0x7d,0x7f,0x60,0x4c,0xb3,0x6b,0x26,0x6b,0x9c,0x47,0xcd, +0x24,0x52,0xd7,0x09,0x26,0xcd,0x99,0xbf,0xa6,0x63,0x2d,0x98, +0x34,0xb1,0x4c,0x9a,0x3f,0xde,0x69,0xa3,0x0b,0x95,0xeb,0x73, +0x76,0xe5,0x3f,0x6b,0xbe,0xd8,0x5d,0xd7,0xcf,0x37,0x48,0xc9, +0x96,0xe2,0x4e,0xb2,0xd7,0xde,0xd4,0x71,0x8d,0xeb,0xb6,0x73, +0x16,0xd5,0xb6,0xe7,0x6d,0xbd,0x85,0x46,0xa7,0x66,0xb7,0x3e, +0xaf,0x6d,0xfe,0x2b,0x0f,0xce,0x3e,0xac,0x64,0xe5,0x56,0x91, +0xfd,0x5d,0xf1,0xa3,0xaa,0xcf,0x3c,0x5f,0xfa,0x81,0xe2,0x00, +0xaf,0x9e,0x05,0xa5,0x72,0x96,0x9b,0xa4,0xb9,0xe6,0xf2,0x5c, +0x45,0xe9,0x0d,0xd8,0xb4,0xb5,0xe7,0x06,0x4c,0xe9,0xc4,0x29, +0x0f,0x4c,0xd7,0xe0,0xa6,0x07,0x26,0x6b,0x70,0x8c,0x05,0x8c, +0xd9,0x4a,0x24,0x0b,0x58,0x32,0x38,0xb9,0x8f,0x77,0x34,0x3d, +0xef,0xcf,0xac,0x91,0x18,0x90,0xd2,0x59,0x62,0x4c,0x79,0xcc, +0x02,0xf7,0x73,0xd6,0x6a,0x7d,0x0e,0x96,0x2b,0x31,0xc4,0x14, +0xfc,0x88,0xef,0x8e,0x95,0x16,0x38,0xd9,0x3a,0xdf,0x48,0x80, +0x65,0x97,0x5f,0x5d,0x4e,0xfa,0x86,0xf1,0xf4,0xd4,0x39,0x2f, +0x4d,0x61,0xd3,0x96,0xfc,0x01,0x96,0xac,0xba,0x96,0xb7,0xfa, +0x5e,0xe6,0x61,0x82,0x5c,0x5f,0x7e,0x7a,0x05,0x3f,0x71,0xea, +0xb3,0x6e,0x83,0x57,0x0a,0xc4,0xc3,0x53,0xe9,0x3c,0xfc,0xe9, +0x35,0xc1,0x09,0x0b,0x06,0xaf,0x0d,0xf4,0xbd,0xbd,0xe3,0xe7, +0xff,0xb8,0x06,0x20,0x3e,0x56,0x8d,0x65,0x66,0x5e,0xb1,0x79, +0xe0,0x16,0xe8,0x76,0xa2,0xee,0x33,0xc3,0xe5,0xb8,0x42,0x7e, +0x99,0x66,0x01,0xd3,0x98,0xed,0x0d,0x61,0xf9,0xe0,0x65,0xd5, +0x62,0x4d,0x3e,0xbc,0x63,0x44,0xfe,0x98,0x84,0x8b,0xe9,0x7c, +0x50,0xdc,0xea,0x90,0x6a,0x2c,0xef,0xa3,0x62,0x8e,0xc5,0xb7, +0xc8,0xaf,0xb5,0x80,0xe8,0xd9,0x98,0x63,0x06,0x39,0xb8,0xf0, +0x02,0x0b,0xf3,0xb3,0xdd,0x78,0xf6,0x3b,0x88,0xee,0xdc,0x04, +0xfc,0xd7,0x1c,0xde,0x03,0x56,0x77,0x14,0x38,0x14,0x14,0xf2, +0x5a,0x1a,0x0a,0x79,0x9e,0x87,0x43,0x05,0x51,0xbb,0x3d,0x1e, +0xbc,0xea,0x0a,0x3d,0xa8,0x25,0x3f,0xa8,0x36,0x54,0x7e,0xa0, +0x6e,0xd5,0xe0,0xea,0xbf,0x9c,0xbc,0x2c,0xdf,0xbe,0x5e,0xfa, +0xff,0x77,0x39,0x56,0x5c,0x23,0x3e,0xa6,0x35,0x1d,0xe5,0x37, +0x33,0xbb,0x61,0xf4,0x69,0x79,0xf1,0xca,0xa1,0xb9,0x3e,0xad, +0xc2,0xa4,0x20,0xdc,0x14,0x8c,0xd3,0x4f,0x1e,0x36,0x70,0x5f, +0xe7,0x66,0xcd,0x28,0xcc,0xb7,0x46,0xf0,0x6d,0xaa,0xfc,0x48, +0xe6,0xee,0x41,0xfa,0x26,0x7a,0x6c,0xa1,0xc5,0x0e,0x65,0x26, +0xd9,0x36,0x1d,0x59,0x42,0x60,0x9b,0x57,0xef,0xbe,0xf3,0x3c, +0xce,0xc1,0xf7,0x69,0x74,0x45,0x58,0x63,0xe8,0x39,0xcb,0x08, +0x21,0xd5,0x2d,0x75,0x6f,0xbc,0x1b,0x0f,0x89,0xb8,0x85,0x1a, +0x72,0x69,0x75,0xc9,0x4d,0xf1,0x75,0x7c,0x9d,0xb4,0x4d,0x7e, +0x58,0x7b,0xa3,0x37,0xea,0xad,0xc7,0x8f,0x74,0x1a,0x1c,0xdb, +0xbf,0xac,0xf8,0x59,0x09,0xc3,0xb5,0xc5,0x89,0xdc,0xc9,0xdd, +0x31,0xcb,0x22,0xac,0x78,0x8f,0xc8,0xd0,0x30,0xb7,0xf1,0x06, +0x5c,0xaa,0x99,0x62,0x80,0x1b,0x28,0xcd,0xbb,0x94,0xa2,0x9b, +0x76,0x39,0xee,0xe9,0x69,0x20,0xbc,0x19,0x97,0xd6,0x90,0xdc, +0x1e,0x57,0xc3,0x2f,0x85,0x4f,0xe8,0x31,0xb7,0x70,0xa7,0x23, +0x2e,0x3c,0xf6,0xc2,0x30,0x4e,0x5a,0xe9,0x3b,0x58,0x76,0xc4, +0x54,0xd4,0xa6,0x31,0x2e,0x91,0x4e,0xa1,0x0e,0x3c,0x7e,0xc3, +0xc5,0xd6,0x9e,0xad,0x3b,0x5d,0xcf,0xe3,0x7c,0x43,0xaa,0xe9, +0xb8,0x56,0x0c,0xd7,0x4c,0xe2,0xb2,0x96,0x8b,0xc5,0xf5,0x56, +0x9a,0xee,0xa9,0xb4,0x4c,0x74,0xa9,0xcb,0x10,0x22,0x6b,0x0f, +0xb5,0x87,0x94,0xf3,0xea,0x25,0xb8,0x44,0x9e,0x91,0x5d,0x84, +0x7a,0x44,0x9c,0x02,0xba,0x34,0xdd,0x3a,0x63,0x53,0xbc,0x7e, +0x53,0xaa,0x10,0x79,0x31,0xf4,0xfa,0xe1,0x0e,0x1e,0xed,0xf1, +0x24,0xcd,0xbf,0x91,0xf9,0x6d,0xc2,0x43,0x9b,0x38,0x21,0x7a, +0x5d,0xb0,0x5e,0xc0,0x4e,0x9e,0xf5,0xa1,0xee,0x34,0x51,0x3f, +0x71,0xf1,0xc9,0xdd,0xad,0xb1,0xc2,0xc9,0x6b,0x51,0xcf,0x8f, +0x0e,0xf0,0xa3,0x55,0xe7,0xc4,0x2b,0xd4,0xdf,0xcd,0xdf,0xf3, +0xe0,0x7e,0x3e,0x22,0xf2,0x64,0xe4,0xf8,0x38,0xcb,0x9b,0xb1, +0xf7,0x92,0x6e,0xa4,0x6a,0xc7,0x05,0xc7,0x1e,0x8a,0x0d,0x69, +0x61,0x2c,0x64,0x20,0xf0,0x72,0x60,0x9b,0x6d,0x88,0x90,0x74, +0x30,0xc9,0x2f,0xc9,0xd7,0x35,0x46,0xde,0xc4,0xbb,0xf3,0xd2, +0xa5,0xaf,0x1a,0x1e,0xed,0x29,0x10,0x82,0x9c,0xfd,0xec,0x7c, +0x1c,0x42,0xb3,0x42,0x95,0x87,0x95,0xe7,0x5a,0xcb,0x7a,0x0a, +0xbb,0x6d,0xf3,0x84,0x40,0x6b,0x1f,0x0b,0xdf,0xbd,0xde,0xe5, +0x82,0x9b,0x4b,0x9d,0x73,0x9d,0x5d,0xa5,0x9d,0xb6,0x34,0x7b, +0x32,0x3d,0x79,0x24,0xec,0xe4,0x11,0x76,0x02,0xf9,0x62,0xf9, +0xad,0x54,0xed,0xd8,0x90,0xb3,0xc1,0xb1,0x21,0xad,0xe9,0x42, +0xd8,0x95,0xe0,0x81,0xa0,0x0e,0xdb,0xc3,0x42,0xd2,0x81,0x44, +0xbf,0x44,0x5f,0x8f,0x18,0xf7,0xe3,0xee,0xc7,0xdb,0x2e,0x5f, +0xf8,0xa6,0xe9,0x25,0x3b,0x41,0xa0,0xbd,0x9f,0xad,0x9f,0xfd, +0x9e,0x1e,0xa1,0xaa,0xa3,0xb4,0x3f,0xbf,0xc7,0x36,0x57,0x08, +0xb2,0xf2,0x35,0xf7,0xb1,0x3f,0x9a,0x1c,0x9e,0x72,0x34,0xc5, +0xcd,0x45,0xa8,0xb7,0xaf,0xb5,0xaf,0xb6,0xf1,0x77,0xdd,0xef, +0x11,0x78,0x80,0x17,0x73,0x24,0x5f,0xea,0x50,0xe6,0x52,0xe5, +0xd5,0x5c,0x5b,0x5b,0xd5,0x5c,0xd9,0x6d,0x57,0x22,0x78,0xdb, +0xee,0x73,0xf2,0x70,0x0f,0x38,0x1f,0xd4,0x72,0xb8,0x87,0x87, +0xd8,0x2e,0x54,0x72,0x87,0x5e,0x44,0xfc,0x08,0xef,0x8d,0x03, +0x0b,0x73,0x64,0x3d,0xdb,0xc8,0xa4,0x69,0xca,0xc5,0x3a,0x78, +0xd5,0x1c,0xde,0x0f,0x62,0x90,0xb5,0x5c,0xf1,0xc9,0x1c,0x9d, +0x9a,0x3d,0xf7,0xef,0x37,0x5d,0xcf,0xeb,0xd5,0x8e,0x4d,0x8a, +0x3b,0x9b,0x14,0xf9,0xd5,0x32,0xa1,0xb6,0x6e,0xc1,0xd3,0x23, +0x29,0x47,0x4f,0x6a,0x56,0x66,0x97,0xaf,0x08,0x15,0xc5,0x95, +0xb7,0x8e,0xcb,0x81,0xa9,0x24,0x6b,0x73,0x81,0x61,0xa9,0xe5, +0x2e,0xd3,0x75,0x4e,0x53,0x9d,0x0b,0x2c,0x85,0x9f,0xcf,0x3f, +0x68,0xb8,0xd6,0x5b,0xb1,0xa7,0xd6,0xa5,0xc9,0xab,0xd1,0xbb, +0x3a,0xed,0x6c,0x4b,0x0a,0xcc,0x11,0xac,0xb2,0x15,0xea,0x57, +0xaa,0xc9,0x2c,0xce,0x62,0x7a,0xe5,0x59,0x30,0x39,0x37,0x34, +0xf4,0x13,0x4c,0xd0,0xcc,0x72,0x1c,0x61,0xa0,0x78,0x8a,0xd3, +0xa9,0x67,0xd6,0x9e,0x2c,0xd7,0x24,0x7f,0x47,0xa1,0xea,0x68, +0x53,0xd0,0xb9,0x60,0x5e,0xea,0x91,0xd3,0xda,0x11,0x63,0xf2, +0xe9,0x70,0x7c,0xd2,0xdb,0x03,0xdb,0xa1,0x88,0xe0,0x76,0xf4, +0xa6,0xb0,0x14,0x28,0x2e,0x25,0xa3,0x1f,0x6a,0x5a,0xf0,0x2c, +0xf6,0xf3,0xd9,0xb8,0x8a,0x1e,0x49,0x08,0x4d,0x38,0x9c,0x70, +0xb7,0xec,0x46,0x43,0x63,0x0d,0x43,0xb1,0x83,0x95,0xf8,0x0e, +0x71,0xf5,0xdf,0xe3,0xaf,0x7f,0xc0,0x36,0xcf,0x26,0xc7,0x3d, +0xdd,0xdb,0x4d,0x68,0x0e,0xee,0xf7,0xeb,0xf2,0xe7,0x31,0xd3, +0x1a,0x62,0x38,0x4b,0xdb,0x4f,0x5d,0xf0,0x43,0xfb,0x5c,0x6b, +0x01,0x66,0x77,0x7d,0xd5,0x56,0xfa,0x19,0x9f,0x80,0x93,0xe5, +0x0b,0xaf,0x36,0x8a,0x7f,0x72,0x75,0x59,0x99,0x8c,0x82,0xeb, +0xc0,0x27,0x64,0xbf,0xb3,0xbb,0xbd,0xa3,0x5b,0x9d,0xbb,0xd0, +0xd5,0xd2,0x32,0x50,0xda,0xc7,0xd7,0xb2,0xe6,0x7b,0x1f,0x4b, +0x14,0xf7,0xdf,0x12,0xa7,0xff,0xb8,0x13,0x54,0x1c,0xca,0xa2, +0x58,0x1c,0x03,0x23,0x48,0x8c,0xbe,0xff,0xbe,0x4f,0xbd,0xf2, +0xf6,0x08,0xdf,0xd6,0xd6,0x35,0x27,0x3c,0xe3,0x1f,0xae,0xe5, +0xdc,0x95,0x87,0xab,0x74,0xe0,0x43,0xb4,0x94,0xef,0xb0,0xb1, +0x94,0x6f,0xe0,0xaf,0x57,0xe6,0x34,0xe8,0x82,0x24,0xd5,0x48, +0x1b,0x89,0x38,0x02,0x7a,0x69,0xd8,0xb1,0xd8,0x14,0xd6,0x03, +0x7d,0xb0,0x92,0xa8,0x0f,0x62,0xef,0xdb,0x89,0x1d,0xcd,0x4d, +0xa5,0xf6,0xff,0xbe,0xa9,0x54,0x9c,0xe6,0x41,0xd1,0xb5,0xb3, +0x19,0x4c,0x60,0x05,0x6b,0x69,0x70,0x34,0x7d,0x08,0x13,0x57, +0x33,0x06,0x6a,0x22,0x06,0x31,0xef,0xbb,0x95,0x79,0x97,0xd7, +0x94,0x57,0x54,0x97,0x56,0x3b,0x57,0x0a,0xfe,0xee,0x6e,0x2e, +0x6e,0xfb,0x82,0x73,0x43,0x73,0xc3,0xf2,0xce,0x57,0x54,0xd6, +0x15,0xd5,0x38,0x55,0x08,0x07,0x3d,0xbd,0xdd,0x3c,0xbc,0x43, +0xaa,0xc2,0xab,0xa3,0x6a,0xcc,0xc3,0x85,0x02,0x14,0xee,0xa2, +0x00,0x9f,0xe2,0x48,0x79,0xef,0xf6,0x61,0x6f,0xa7,0xbf,0xcb, +0xb5,0x70,0xb7,0x05,0x50,0xee,0xa8,0x63,0xa0,0xfd,0x3e,0x07, +0xdf,0x52,0xe7,0x4a,0xef,0x3c,0x4f,0x27,0xa1,0xf4,0x60,0xad, +0x6b,0x89,0xb7,0xb7,0xab,0xb3,0x9b,0xad,0x67,0xb9,0x8d,0x00, +0x7f,0xfb,0xfa,0x09,0x0c,0x2b,0x86,0x51,0xbc,0xf4,0xc5,0x6c, +0xe6,0xd3,0x6f,0x58,0xff,0x35,0x13,0x57,0x50,0x48,0xef,0xc2, +0x74,0x4e,0x32,0xf5,0x1f,0x9c,0x70,0xfb,0x05,0x47,0x50,0xf4, +0x11,0x97,0x81,0x0f,0x91,0x72,0xd6,0xb1,0x38,0xcf,0x61,0xb6, +0x5a,0x3d,0x5b,0xe6,0x85,0x97,0x64,0x5e,0xf8,0xa9,0x66,0xd2, +0x4e,0x9e,0x65,0xc9,0xfb,0x8f,0x49,0x3b,0x79,0x96,0x45,0xf5, +0xae,0x37,0x0d,0xb3,0x3d,0x60,0xe0,0x6f,0xcd,0xe3,0x3d,0x53, +0xb1,0xbb,0x07,0xd7,0x71,0xb9,0xf5,0xb9,0x5d,0x69,0x2c,0x63, +0xf8,0x4e,0xa5,0x47,0xab,0x0f,0x75,0x1d,0xaa,0xb0,0x08,0x14, +0x94,0x6e,0xd9,0x16,0x49,0x6e,0x2c,0xa4,0x75,0xc5,0x67,0xb4, +0x6d,0xa1,0x92,0x3c,0x7d,0xd5,0xba,0xe8,0x92,0xc5,0x6e,0x1c, +0x6a,0x03,0x43,0x57,0x90,0xe0,0x6d,0x24,0x2e,0xff,0x6c,0xfe, +0x99,0x3c,0xde,0x81,0x3b,0xe6,0x1c,0xe9,0xc8,0x92,0x12,0x8c, +0xe0,0x8e,0x2c,0x71,0x34,0x5a,0x67,0x59,0x66,0x27,0xbc,0x1c, +0x68,0xbb,0x97,0xfe,0x4f,0x1e,0x44,0x5c,0x4f,0xbd,0xb9,0xb0, +0x63,0xf1,0x4a,0x5d,0x78,0xcf,0x8e,0x9c,0x49,0x3e,0xcd,0xfe, +0xf1,0x30,0xb2,0x0d,0xb9,0x3c,0xee,0x01,0x0c,0x69,0xc5,0x21, +0x6c,0xcc,0x69,0x36,0x3f,0xad,0x21,0x01,0xc6,0x24,0x36,0x2f, +0xb6,0x80,0x8d,0x68,0xcf,0x46,0x8c,0xb2,0x0f,0x67,0x69,0x74, +0x08,0x17,0xb1,0xd2,0xc7,0x6a,0x9b,0xd5,0x89,0x5a,0x21,0x20, +0x2a,0x20,0xea,0x40,0x34,0x0f,0xd4,0x1a,0x27,0x90,0xc3,0xc7, +0xd9,0xbf,0x13,0x89,0x36,0x42,0x5b,0x52,0x63,0x4a,0x4b,0x7a, +0xa9,0x9d,0x70,0xb7,0xe3,0x7c,0x7f,0xf6,0x3d,0x79,0x51,0x62, +0x86,0x8a,0x52,0x9d,0x1e,0xae,0x20,0x35,0xa5,0x4c,0xf7,0x19, +0xd9,0x9b,0xa6,0x50,0x3f,0x86,0x81,0xc1,0xfb,0xdd,0x32,0x34, +0x97,0x86,0x1e,0xbc,0x9d,0x29,0x57,0xf6,0x0e,0xde,0x21,0xad, +0x64,0xa6,0x9b,0x27,0xcd,0xa3,0xad,0x20,0xda,0x0c,0x88,0x53, +0x25,0x4f,0x69,0x2a,0x11,0x17,0xc8,0x8b,0x8c,0x89,0x6f,0x40, +0xe4,0xd4,0x36,0xf8,0xcb,0x7f,0xb9,0x6f,0x0d,0xc4,0x8d,0x14, +0xc4,0x49,0x28,0xca,0x77,0x17,0x8a,0xd7,0x68,0x07,0x0a,0xb1, +0xe4,0x73,0x18,0xd5,0x81,0xa3,0x1e,0x99,0xae,0x9a,0x6a,0xf9, +0xf3,0x12,0x72,0x6c,0x8a,0xe5,0x0f,0xe4,0xa8,0x89,0x97,0xe3, +0x26,0xb3,0xc5,0x3f,0x09,0x91,0xc9,0x11,0xa7,0x8e,0x46,0x44, +0x44,0x08,0xd1,0x67,0x13,0x32,0xe2,0x94,0x67,0x73,0xb5,0xff, +0xd9,0x31,0x9d,0x3b,0x9d,0x72,0x2a,0x25,0x6d,0x5c,0xcf,0x9b, +0x8e,0x19,0xec,0x57,0x38,0xd4,0x12,0x86,0x6e,0x23,0x91,0xa7, +0x22,0x4f,0x46,0xe9,0xe0,0xa8,0x26,0x7c,0x64,0x04,0x0f,0x5c, +0x80,0xe7,0x42,0x77,0xb8,0x58,0x7f,0xba,0xab,0x62,0x8f,0xd0, +0xdf,0xd4,0xd0,0x52,0xd4,0x18,0x97,0x14,0x7b,0x3a,0x3e,0xf2, +0x2b,0x7c,0x47,0xa8,0x69,0x28,0xb1,0xba,0x7f,0xa9,0xb4,0x3c, +0xe1,0x0b,0xed,0x04,0x2e,0x7e,0x59,0xc3,0xde,0x6f,0xd7,0x17, +0x77,0x08,0x8b,0xae,0x38,0x35,0x87,0x5d,0xe4,0xd5,0x11,0x70, +0xe4,0xed,0xf5,0xdf,0x34,0xac,0xf8,0x5f,0xc1,0x35,0x85,0x05, +0x57,0x2f,0x88,0x26,0x17,0xc4,0x75,0x92,0xb7,0xb4,0x8e,0x88, +0x0b,0xe5,0x5b,0xc3,0x45,0x18,0x22,0xab,0x6d,0x28,0xbd,0xf7, +0xf6,0x26,0xec,0x94,0xff,0x15,0x2f,0xf0,0x83,0x19,0x53,0x1b, +0x87,0xcb,0x7a,0x0f,0x5e,0x5e,0x8f,0xee,0x25,0x35,0xe6,0x14, +0x2c,0xb6,0xe0,0x72,0x34,0x12,0x1b,0xc0,0x08,0x57,0xdf,0x04, +0xdb,0x0e,0xe9,0x9f,0x1c,0x9c,0xc2,0x91,0xf4,0x26,0x0c,0xd9, +0x42,0xa4,0x61,0xab,0x58,0x8c,0x77,0x30,0x4a,0x76,0xa6,0x82, +0xce,0xc0,0xa1,0x6f,0x18,0xcd,0xd6,0x9a,0x81,0x43,0xd8,0xdf, +0xd2,0x19,0x14,0x47,0xbc,0x61,0xf8,0x51,0xd7,0x6a,0x2e,0x87, +0x87,0xb1,0xfc,0xf3,0x8d,0xc4,0x4a,0x7a,0xa5,0x14,0x87,0x95, +0xe0,0xb7,0x1d,0xf3,0xcc,0x21,0x0f,0x87,0xf4,0x31,0xc9,0xaa, +0xba,0xe4,0x35,0x53,0xa4,0x77,0x60,0x1b,0xcb,0x64,0x61,0xc6, +0x44,0x95,0x71,0x98,0x4a,0x13,0x6e,0x88,0x13,0x38,0xe4,0x86, +0x6f,0x94,0x26,0x7c,0x26,0x5f,0x7c,0xfa,0x81,0x6a,0x72,0x1b, +0x86,0xcb,0x0e,0xdb,0x31,0xe8,0x30,0x2a,0xdf,0x14,0xf2,0x87, +0x89,0x4a,0x8f,0xa2,0x03,0x57,0x50,0x90,0x5f,0xa6,0x2c,0xe5, +0xab,0xf1,0x24,0x49,0x4a,0x4f,0x48,0x4b,0x48,0xb7,0x50,0x0a, +0xde,0xbb,0x36,0x2c,0x9d,0x6b,0xc8,0x2b,0xf1,0x8a,0x11,0x5c, +0x29,0x22,0x05,0x1e,0x69,0x89,0xa9,0x89,0xa9,0x49,0xda,0x18, +0x4d,0x50,0x27,0x18,0x27,0x98,0xe2,0x07,0x3a,0xad,0xac,0xf1, +0x9b,0x90,0x09,0x7a,0x67,0x61,0x94,0xb6,0x78,0xa0,0x59,0x3a, +0x00,0xa1,0x30,0x9e,0x0b,0x71,0x70,0xd8,0xbf,0x31,0x24,0xd7, +0x56,0xf8,0x36,0xb7,0xab,0x39,0xeb,0x32,0x7f,0xd3,0x8c,0xe5, +0xa6,0xc0,0x46,0x9d,0x5f,0xb9,0xaa,0xf4,0x94,0x73,0x32,0xe3, +0x4f,0x53,0x58,0x2e,0x23,0x41,0x11,0xf1,0xb9,0xba,0x75,0xb0, +0x95,0xfc,0x39,0x0a,0x36,0x33,0xab,0xc5,0xb2,0xf6,0x7a,0xb5, +0x21,0x3d,0x7c,0x20,0xc0,0xcf,0x77,0x3f,0x8f,0xee,0x5c,0x51, +0x41,0x7e,0x41,0x4e,0x21,0xcf,0x38,0x9d,0x1c,0xe6,0xc7,0x98, +0x15,0xee,0x2c,0xa5,0x4d,0xd2,0x08,0x3b,0x82,0x7b,0x26,0x30, +0x75,0x8f,0x19,0x13,0x71,0x9d,0x27,0xb5,0x13,0xa7,0x35,0x11, +0x75,0x96,0xf4,0x2e,0xd3,0xd2,0x98,0x69,0x79,0x82,0x69,0xa9, +0xba,0x03,0x51,0xec,0xab,0xd3,0xd8,0x57,0x23,0xce,0xc9,0x44, +0xe7,0xef,0x8c,0xe8,0x88,0x9f,0x62,0x19,0x3d,0x0f,0x7d,0x7b, +0xfb,0xc1,0x42,0xd2,0x63,0xb5,0x09,0xf0,0x0b,0x8a,0x7d,0x37, +0xa0,0x8f,0x1b,0x2d,0xee,0x55,0xb5,0x53,0xb4,0x16,0x97,0x82, +0x35,0x51,0xb7,0xc5,0xbc,0xbd,0x3e,0xb0,0x05,0x67,0xd0,0xdf, +0xe0,0xe2,0x44,0x22,0xd9,0x59,0x32,0x6f,0x3d,0x32,0x22,0x20, +0x99,0x53,0x74,0x63,0x6a,0xba,0x11,0xb8,0x8c,0x6e,0x94,0xb5, +0x8f,0x27,0xd1,0x8d,0x48,0x7f,0xc2,0xf6,0x41,0x34,0xc1,0xbb, +0xf8,0x31,0x85,0xf7,0x58,0x1e,0x7e,0x8f,0x7d,0x03,0xde,0x93, +0x77,0x01,0x9e,0x04,0xef,0x11,0x69,0x21,0xca,0xbd,0x27,0xc3, +0xd9,0x1f,0x43,0xf1,0x23,0x16,0x1b,0xca,0x97,0x26,0x7a,0x98, +0x64,0x09,0x01,0xc4,0x7e,0xdb,0x52,0x23,0x7c,0xc7,0x4c,0xde, +0xf3,0x71,0xf4,0x95,0xef,0xae,0x2b,0x5f,0xf0,0xf1,0x98,0xdd, +0x0b,0xd9,0x09,0x9c,0x72,0xf1,0xd7,0xdb,0xe1,0xc3,0x5d,0x45, +0x9d,0x02,0x72,0xbd,0x2b,0xba,0xed,0x6e,0xb2,0x34,0x88,0xa5, +0xff,0x05,0x87,0xa3,0x55,0x17,0x54,0x0b,0xa9,0x32,0x3b,0xb3, +0x20,0x25,0x7b,0x6f,0xba,0x00,0xef,0xb6,0xa0,0x4d,0xbb,0x91, +0x15,0xee,0xb0,0x65,0x3d,0x92,0x43,0x48,0xfa,0xe1,0x8c,0x03, +0xc9,0x41,0xda,0x6d,0x99,0x47,0x73,0x42,0x0a,0x8e,0xa4,0x69, +0x83,0x25,0x77,0xc4,0x3f,0x64,0x7f,0x80,0x2f,0x8f,0xc5,0xb6, +0x60,0x6a,0x89,0x6b,0x6c,0x60,0xcd,0xce,0xfe,0x2b,0x60,0xd8, +0x8a,0x86,0x1d,0xe0,0xd2,0xc2,0xa9,0xeb,0x90,0xa1,0xf8,0x32, +0xcc,0xc3,0x4b,0xdc,0xd9,0xf4,0xd3,0xe9,0xa7,0xd3,0x78,0x68, +0x84,0x59,0xf8,0xdd,0x74,0x6e,0x63,0xcc,0xae,0xed,0x1b,0x19, +0x75,0x6b,0x68,0xce,0xeb,0x4a,0xee,0xd0,0x86,0x68,0x98,0x4b, +0x77,0x60,0xc8,0x55,0x02,0x27,0xd1,0x90,0x6e,0x40,0x87,0x3b, +0x44,0x35,0x14,0xf7,0xd0,0x66,0xf5,0xb4,0x3d,0x44,0x95,0xb3, +0x88,0xb6,0xfe,0x39,0xc6,0x86,0x80,0xc2,0x91,0xda,0xab,0xa6, +0xbf,0x9d,0x8f,0x9d,0x2e,0xcf,0xc7,0xfa,0xd1,0x2a,0xf1,0xba, +0xdb,0x95,0xbf,0x9a,0xb1,0x77,0x9f,0x52,0xe9,0x7a,0xaf,0x78, +0x9d,0x1b,0xfd,0x48,0xd5,0xc6,0x30,0x11,0xcf,0xba,0x98,0x5f, +0xa5,0xa9,0xac,0x02,0x05,0x76,0x62,0xe0,0x03,0x08,0x67,0x9e, +0x4b,0x47,0x0b,0x38,0xb8,0x06,0xf7,0x5b,0xc0,0xfe,0xd5,0x98, +0x66,0x2e,0x3e,0xea,0x22,0x92,0x2e,0xfc,0x4e,0x27,0x4d,0xff, +0x95,0xc0,0x2c,0xad,0x9f,0x27,0x4d,0xe5,0x60,0x8e,0xd6,0xaf, +0xbf,0x4f,0x22,0x52,0x9c,0x35,0x4b,0x70,0x57,0x0d,0x49,0xcd, +0x32,0xe6,0x9c,0xe3,0x6f,0x9f,0x2b,0x39,0xce,0x60,0x73,0xfc, +0x53,0x7a,0xe4,0x5c,0x70,0x6d,0x48,0xb1,0x75,0x90,0x90,0xe9, +0x93,0xe9,0x92,0xe2,0xc5,0x8b,0xcb,0x4f,0x50,0x5c,0xcb,0x29, +0xcb,0xb2,0xea,0x52,0x4a,0x4d,0x95,0xc2,0x51,0x8f,0x20,0xb9, +0xdf,0x93,0x86,0x98,0x43,0xf6,0x0a,0x0c,0xb2,0x80,0x20,0x1c, +0xdb,0x0b,0x63,0x21,0xb4,0x13,0x43,0x9f,0x42,0x01,0xa7,0x1e, +0xc0,0x14,0xe6,0x09,0x96,0x49,0x19,0x02,0x9e,0x12,0xf9,0x40, +0xde,0xa3,0x5c,0x07,0x96,0x31,0x46,0x9d,0x28,0x5e,0xa5,0x36, +0xa2,0x79,0x2b,0x5a,0xf7,0xc3,0x0a,0x58,0x86,0x2b,0xba,0xcc, +0xcc,0x99,0x9b,0x96,0xc1,0x62,0x23,0x82,0xd6,0x40,0xa9,0x4f, +0xb3,0x4b,0xab,0x6b,0xb5,0x8b,0xab,0x50,0xe5,0x5c,0x69,0x57, +0x6e,0xcd,0x4b,0x33,0x61,0x2a,0xd3,0x37,0x92,0xc5,0xc0,0x74, +0x03,0xba,0x06,0x87,0x3d,0x20,0xb0,0x6c,0x0d,0x7d,0x00,0x23, +0xd6,0x10,0xf5,0xf3,0x68,0x56,0xfa,0x5a,0x59,0xe9,0x5b,0x89, +0x3b,0xa8,0x67,0x9b,0x43,0xbb,0x63,0xad,0xab,0x93,0x70,0xde, +0xa9,0xd6,0xb6,0xda,0x82,0x97,0xc6,0xbd,0x60,0xca,0x85,0xb0, +0xe8,0xf8,0xd9,0x84,0xe2,0xf7,0xd2,0xc7,0xf0,0x3f,0xb0,0x19, +0xaf,0x74,0x41,0x13,0x67,0x09,0x3c,0xdd,0x8c,0xd1,0xb7,0x08, +0xde,0x58,0xc8,0xb0,0x17,0xc2,0x72,0xdc,0xf7,0xf8,0x9c,0xe2, +0x14,0xfb,0x3e,0x78,0x4f,0x17,0xf4,0x71,0xbc,0xc9,0x63,0xd6, +0xb5,0xe2,0xb0,0x7d,0xce,0x6b,0xed,0x74,0x0a,0x0d,0x1e,0x75, +0xe4,0xd5,0xc7,0x7e,0xae,0x1d,0xcf,0xcd,0x8a,0xeb,0xda,0x0d, +0xf3,0xc6,0x43,0x2d,0x97,0xdc,0xa7,0x50,0x3f,0x5b,0xc5,0xf4, +0xdc,0xc2,0x22,0x2b,0x54,0x8e,0xac,0x16,0xb0,0xa6,0x98,0xf6, +0x02,0xd2,0x38,0xb5,0xe2,0xa8,0x9c,0x49,0xc6,0x6a,0x32,0x89, +0x95,0x38,0x84,0xe2,0xd8,0xf3,0x2b,0xce,0x1b,0xb5,0xf3,0x70, +0xb6,0x75,0x09,0x97,0x06,0x85,0x0a,0x8c,0xde,0x03,0x3b,0xb8, +0x13,0x36,0x0a,0x5c,0xb5,0x17,0x3e,0xe5,0x4e,0x58,0x2b,0x70, +0xf9,0x5e,0x58,0xca,0x9d,0x30,0x57,0xa0,0x27,0x2c,0xc5,0x59, +0x6d,0xb0,0xb2,0x01,0x57,0x36,0x99,0xe3,0x06,0x56,0xd6,0x47, +0xcf,0xfa,0xce,0x74,0x36,0x3a,0x71,0x27,0xba,0x15,0xa0,0x77, +0x1e,0x17,0x73,0x27,0xda,0x15,0xb0,0xf4,0x3c,0x2e,0xe3,0x4e, +0x34,0xde,0x4c,0x68,0x4d,0xbe,0xa2,0xd4,0xf6,0xaf,0xd7,0x0f, +0xde,0x10,0xb6,0x2a,0x5a,0x3b,0x05,0x95,0x8a,0x65,0x36,0x70, +0x8c,0x33,0xb6,0xfa,0xd4,0x11,0x47,0x3b,0xe5,0xd9,0x08,0xa5, +0x49,0x25,0x29,0xc5,0x29,0xbc,0xb3,0xca,0xa5,0x96,0x14,0x85, +0x97,0x1c,0x2d,0x89,0xe0,0xd5,0xe5,0xd5,0xf4,0x45,0xcd,0x9d, +0xd6,0x8e,0x5e,0x1e,0x4a,0xb8,0x2e,0xe3,0x7b,0xb6,0x2f,0x59, +0xb7,0xb0,0xb0,0x81,0x36,0x4a,0x7f,0xb3,0x27,0xf2,0xa6,0x08, +0x0c,0x8f,0xf3,0x18,0x1e,0x3f,0x60,0x78,0x9c,0x67,0x4f,0x5a, +0xd1,0x97,0x16,0x89,0x37,0xfd,0xae,0xc0,0x46,0xf5,0x4e,0xdc, +0x48,0x54,0xef,0xdd,0xa6,0xd2,0xcd,0xcb,0xe2,0x4d,0x96,0x20, +0x66,0xab,0x76,0xd2,0x3d,0xa2,0xb2,0x19,0xa3,0x5b,0x40,0xd9, +0x82,0xca,0x4e,0x13,0x0b,0x8c,0xb1,0x85,0x18,0x5b,0x22,0xf5, +0xc1,0x30,0xe6,0xbb,0x9c,0xbf,0x1e,0xe6,0xb8,0x6f,0xc8,0xd2, +0x44,0x2c,0x45,0x1b,0xb1,0x12,0x6c,0x88,0x14,0x2c,0x2f,0xf9, +0xa7,0x00,0x6d,0x12,0xe9,0xb6,0x2f,0x74,0x79,0xb8,0x72,0xaf, +0xf0,0x5d,0x5a,0x73,0x59,0x72,0x3f,0xdf,0xe7,0xc2,0x39,0x2b, +0x8f,0x34,0xe9,0x3c,0xe0,0x2a,0x53,0x53,0x8b,0x75,0x73,0x88, +0x7d,0xb2,0xc2,0x7b,0x0d,0x61,0xf4,0x37,0x49,0xb7,0x1a,0xa6, +0xcb,0xed,0x5d,0xcb,0xcd,0xc1,0x56,0x5e,0x33,0xb3,0x9c,0xcc, +0xd2,0xfb,0xdd,0xf3,0xf2,0x05,0xb6,0xeb,0x62,0x10,0x67,0xcc, +0x8a,0x93,0xad,0x34,0xb2,0x85,0xe0,0x8f,0x9a,0xde,0x94,0xb5, +0xfe,0xac,0xa6,0x3d,0x25,0xaa,0x2c,0xb8,0xf3,0xf6,0x03,0x4b, +0x5b,0xd9,0x3f,0x9f,0x30,0xff,0xa8,0x9c,0x1d,0xa8,0x95,0x34, +0xb2,0x9d,0x40,0x24,0x4b,0x69,0x37,0x03,0x5e,0xb8,0xf7,0x79, +0x15,0xb7,0x08,0xe6,0xa5,0x0b,0xaa,0xb7,0x65,0xf3,0x08,0xac, +0x79,0xfc,0x32,0xf7,0x61,0x55,0x6b,0xb5,0x47,0x8d,0xe0,0xec, +0xbd,0xd4,0x7d,0x59,0x30,0x3f,0xfa,0x0f,0x1d,0xd8,0x40,0xab, +0x53,0xd2,0x6a,0x75,0x81,0x10,0xdb,0x0c,0x05,0x7e,0xe4,0x44, +0xfc,0x62,0xe4,0x55,0x57,0x38,0x52,0x57,0xd2,0x50,0x55,0x5b, +0xef,0xd5,0x20,0xf8,0x79,0x7a,0xee,0xf3,0x0e,0xe0,0x61,0x86, +0x3b,0xbc,0x0f,0xd3,0x3a,0x70,0xda,0x53,0xa3,0x15,0x68,0x2a, +0x6f,0xa1,0xf2,0xb1,0x25,0x7c,0x8c,0xef,0x3b,0x4f,0xc1,0xe1, +0xe6,0x30,0x7c,0x36,0x71,0xd9,0x6f,0xe9,0xe7,0x74,0x38,0xcb, +0x5c,0xa8,0x56,0xd6,0xc9,0xdb,0x20,0xe0,0x90,0x6e,0x51,0x8f, +0x65,0xb1,0xd7,0xc4,0x5a,0x79,0xa8,0x5d,0x47,0x9d,0xad,0xe2, +0x99,0xaa,0x11,0x2c,0xde,0x8f,0xcd,0xa0,0xc0,0xda,0x7e,0x53, +0x4e,0x4a,0xac,0x64,0xb8,0x6f,0x64,0x34,0x3e,0x51,0x43,0xe3, +0x83,0x59,0x76,0x8d,0x3d,0x49,0xf1,0x3e,0x03,0xe3,0x7d,0x82, +0x02,0x16,0x51,0x38,0xf0,0x1c,0x0f,0x10,0x69,0xcc,0x0b,0x06, +0xef,0xe0,0xbf,0xee,0x7f,0xdc,0xcc,0xa0,0x7a,0x58,0x2e,0x75, +0x5b,0x06,0x4b,0xdd,0x18,0xd9,0x00,0x9b,0xb7,0xd1,0x12,0xe3, +0x8a,0xe5,0xd9,0x5b,0xba,0x73,0x85,0xc0,0x1b,0x1e,0x4f,0x7d, +0xba,0x79,0x29,0x86,0x15,0x96,0xba,0x81,0xca,0xa7,0x19,0x57, +0x2c,0x32,0x85,0x60,0x63,0xaf,0xd5,0x4e,0x66,0x3c,0xfc,0x13, +0x56,0xd3,0x6c,0xfd,0xec,0xf5,0xa9,0x9b,0xfb,0x53,0x85,0xb0, +0xdb,0x81,0xf7,0x02,0xfa,0x79,0xb4,0x0a,0xa1,0xc9,0xfa,0x09, +0x9b,0xcf,0x6c,0x1a,0x48,0x10,0x8e,0xdf,0x8a,0xfc,0xec,0xc8, +0x05,0x5e,0xde,0xba,0xc9,0x93,0xf6,0x6c,0x86,0x59,0xb7,0x7a, +0x37,0xc3,0xcc,0x87,0xfd,0x6b,0x49,0x56,0x53,0x46,0x47,0x4a, +0xa3,0x75,0x9a,0x70,0xd4,0x26,0xd8,0x34,0xd0,0x8a,0xdf,0xc4, +0x29,0xdb,0x52,0x5b,0x53,0x7a,0x2d,0x53,0x84,0x40,0x7c,0xc7, +0x06,0x67,0x58,0xcc,0xcf,0xdf,0x2e,0x64,0x9d,0xcb,0x28,0x4d, +0x61,0x65,0xed,0x8b,0xf6,0x2b,0xe0,0xd3,0xbf,0x08,0x56,0x11, +0xf1,0x01,0xae,0xa4,0xb0,0xf2,0x65,0x8f,0x1e,0xcc,0x92,0x5f, +0x66,0xfe,0x38,0xb0,0x90,0x28,0x9b,0xd2,0xdb,0x53,0x9a,0xac, +0x53,0xd9,0x60,0x87,0xcd,0xd8,0x60,0x7a,0x5c,0x66,0x6b,0x5a, +0x5b,0x6a,0xaf,0x55,0x8a,0x10,0x80,0xef,0x38,0xe0,0x38,0xb3, +0x05,0x79,0x5b,0x85,0xcc,0x92,0xb4,0xa2,0xe4,0x02,0x5e,0xfa, +0xba,0xe3,0x0a,0x9c,0x1d,0x20,0xd2,0x0d,0xd5,0x71,0x6a,0x0a, +0x8e,0x3d,0x04,0x03,0x50,0x7e,0x6c,0xe3,0x54,0x2f,0x91,0xfc, +0x50,0x9f,0xc2,0xcc,0x67,0x38,0x93,0x88,0x21,0x27,0xd9,0xd1, +0x6b,0x76,0x84,0x7b,0x63,0x68,0x0f,0x3a,0x98,0x12,0x3c,0xc3, +0x30,0x0b,0xb3,0x9e,0xe1,0x2c,0xf6,0xa9,0x16,0xcc,0x7a,0xcd, +0x0e,0x70,0xef,0xf5,0xc1,0x0f,0xfb,0xa4,0x39,0xb4,0x1b,0x66, +0x32,0x7b,0xda,0xb0,0x62,0x83,0x6b,0xe5,0x99,0xd4,0x55,0xcb, +0x99,0xc4,0xaa,0x99,0x5a,0xb8,0x72,0x1e,0xac,0x24,0xb8,0x3c, +0x9c,0xe2,0x86,0x19,0xb0,0x81,0xa5,0x80,0x99,0x90,0x48,0x71, +0x25,0x57,0x92,0x55,0x94,0x9b,0x5f,0xc0,0x9f,0xc3,0x34,0x92, +0x96,0x9a,0x9c,0x9a,0x94,0xea,0x94,0x22,0xd4,0xc6,0xd5,0x24, +0x54,0xc6,0x47,0xd7,0x0b,0x46,0x11,0xdb,0x23,0xb7,0x47,0xf1, +0x03,0xb0,0xfe,0x3c,0xae,0xaf,0x07,0x77,0x1c,0x45,0x9c,0xb2, +0x02,0x6b,0x75,0x60,0x0a,0xd7,0x98,0x9e,0x54,0xa3,0x5b,0x4b, +0x6c,0x53,0x15,0xa6,0x38,0x9e,0x04,0x47,0x27,0xe5,0xe8,0x2a, +0xc9,0xa5,0xf8,0x87,0x69,0x97,0xb3,0x0e,0xd6,0x08,0xa6,0x87, +0xb7,0x85,0x1b,0x44,0xf1,0x1d,0x8c,0xbf,0x68,0xe1,0x3a,0x52, +0x9c,0x55,0x94,0x93,0x9b,0xc7,0x97,0x60,0x21,0x3b,0x49,0x6a, +0x6a,0x4a,0x9a,0x45,0x96,0xb0,0xc7,0x76,0xab,0xe5,0x3a,0xaf, +0x72,0x67,0x21,0x39,0x56,0x81,0xc3,0x4b,0x71,0x32,0x09,0x39, +0x11,0x72,0xf2,0xf0,0xc9,0x38,0x2b,0xa1,0x23,0xb6,0x3b,0xbe, +0x2b,0xd1,0xc9,0x6e,0xb3,0xd5,0x5a,0xcf,0xb7,0x5f,0x18,0x0d, +0x7b,0x89,0xfb,0xfa,0x55,0xae,0xb8,0xc0,0x33,0xd7,0x4a,0x80, +0xe5,0x95,0x3f,0xb6,0x9c,0x87,0xa1,0xbc,0x9c,0xd7,0x3e,0x57, +0x6d,0x61,0xa6,0x3b,0xcd,0x72,0xf1,0x06,0x73,0x1a,0x7c,0xf8, +0x40,0x88,0x57,0x10,0x8f,0x71,0x5c,0x49,0x46,0x91,0xb2,0x30, +0x8b,0x97,0x5c,0x16,0x32,0x58,0xf6,0xf7,0x93,0x1f,0x2d,0x69, +0x9b,0xb8,0x8a,0xf1,0x85,0xca,0x85,0x0c,0x9d,0x51,0x6f,0x2f, +0x68,0x44,0xb1,0x28,0x5d,0xbc,0x9f,0x1e,0x0a,0xf1,0x0b,0xf2, +0x3a,0xc4,0x63,0x0c,0x57,0x96,0x59,0x92,0x55,0x98,0xcd,0x4b, +0x54,0xfa,0x80,0x81,0x53,0x9f,0x19,0x33,0x5a,0xbe,0xac,0xa1, +0x60,0xc6,0x84,0xf5,0xdc,0xc9,0x80,0xe3,0x07,0x8f,0xb1,0xef, +0xad,0xe0,0xc0,0x4f,0x2b,0x36,0xfb,0x6c,0xce,0xe9,0x3c,0x1e, +0xf4,0x77,0x73,0xd2,0xb7,0x4d,0x32,0x6f,0x91,0x67,0x88,0x55, +0x3c,0xa3,0x81,0xb9,0xc1,0x25,0x5e,0x59,0xfe,0x0d,0x05,0x42, +0x70,0xc1,0xbe,0xd2,0x80,0x6c,0xd6,0x0c,0xe0,0x28,0x8a,0x9f, +0x72,0xc1,0xc7,0xe3,0x73,0x74,0x1f,0x98,0x2c,0x20,0x4e,0xa9, +0xc1,0x75,0x3a,0xb0,0x93,0xab,0x4f,0x4f,0xae,0xd6,0xed,0x21, +0xd6,0xc9,0x0a,0x79,0x17,0xcc,0x1c,0x7a,0x51,0x5f,0x1f,0xf3, +0xac,0xc5,0x5f,0xdb,0x88,0xfa,0x7f,0x4a,0x98,0x5a,0xbe,0x4c, +0xad,0x14,0x75,0x34,0xed,0x2e,0x6a,0x39,0x57,0x55,0xe1,0x5c, +0x2b,0x78,0xb9,0x59,0x78,0x58,0xf8,0xed,0x2b,0x0b,0xa8,0x0c, +0x3c,0xcf,0x43,0x4a,0x1b,0xae,0xbd,0x09,0x9f,0xb4,0xe0,0x27, +0xd7,0x60,0x49,0x0b,0x2e,0xb9,0x0a,0x5a,0xb0,0x10,0xe3,0x70, +0xe1,0xad,0x1d,0xb8,0xe5,0xea,0x65,0x76,0x7c,0x0a,0x17,0x82, +0xf6,0x0e,0x9c,0x6f,0x0b,0xf3,0xb7,0xe3,0x54,0x5b,0x98,0xba, +0x05,0x57,0x59,0x43,0x08,0x67,0x66,0x3b,0xc1,0x69,0xc6,0xc1, +0x2c,0x6b,0xa1,0x27,0xad,0x2f,0xab,0x33,0x8f,0x9f,0x40,0xec, +0x63,0xd8,0xbf,0x63,0x89,0xf2,0x63,0x13,0xa9,0xf0,0x61,0x0e, +0x0c,0xcd,0x3f,0xd6,0x2e,0x18,0x1d,0xd9,0x7d,0x74,0xd7,0x51, +0x1e,0xc6,0x90,0xda,0xbc,0x8a,0x82,0xc2,0x52,0x3e,0x9e,0xbb, +0x88,0x1f,0xbc,0xd0,0x83,0x25,0xbb,0x0b,0xdb,0x85,0x4d,0x45, +0x66,0x25,0x8e,0x15,0xbc,0xfa,0xac,0x08,0xcc,0xc8,0xf9,0xac, +0xe6,0xc5,0x05,0x32,0x3e,0x31,0xfb,0x0e,0x11,0xcd,0xb5,0x36, +0xe0,0xbc,0x3b,0x44,0x5a,0x86,0x8c,0x54,0x79,0x98,0x80,0x07, +0x27,0xee,0xb2,0xa2,0xdb,0x71,0x0b,0xe3,0xbf,0xbe,0x1e,0x4c, +0x33,0x0f,0xa6,0xd9,0xae,0x55,0x74,0x0b,0x6e,0xb9,0x49,0xa4, +0x15,0x92,0xc0,0xac,0xbd,0x18,0x4a,0xd0,0x03,0x9f,0x11,0x58, +0x22,0xaf,0x77,0xbd,0x1c,0xdf,0x81,0xe5,0x0c,0xa8,0xba,0x11, +0xd4,0xbb,0xf6,0x40,0xf7,0xa1,0x1b,0xed,0x5f,0x9e,0xfb,0xb9, +0x00,0x86,0x5b,0x67,0x0a,0x87,0xe6,0x05,0x2c,0xf3,0x58,0x1f, +0xfc,0x3a,0x12,0x86,0x9e,0x80,0xb1,0x3c,0x2c,0xed,0xc0,0xa5, +0x10,0x6e,0x8e,0xe1,0xd2,0x6c,0x4b,0xe0,0x96,0x4f,0xb1,0xfe, +0x65,0xe5,0x64,0x9b,0x7f,0x2e,0xc3,0x21,0xd6,0xcc,0xf0,0xef, +0x70,0x7b,0x22,0xf7,0x44,0xdb,0xc7,0x24,0x99,0x09,0xf2,0xcd, +0x0d,0x93,0x4a,0x60,0x64,0x95,0x97,0x87,0x8b,0x97,0x83,0x4f, +0xe9,0x1e,0xe1,0x56,0x5b,0x77,0x5f,0xd3,0x95,0x6c,0xc3,0x02, +0xeb,0x72,0xf7,0x52,0xb7,0x86,0xf8,0xb8,0xee,0x0c,0x58,0x23, +0xec,0xc9,0x52,0x48,0x41,0x62,0x2d,0x8d,0x4b,0x8c,0x3d,0x15, +0x1f,0xf5,0x70,0x9e,0x70,0xfa,0x4c,0x53,0x4d,0x76,0x7e,0x66, +0xbe,0x76,0x5c,0x52,0xc2,0xc9,0xb8,0xa8,0xab,0xcb,0x85,0x9a, +0xf2,0x1d,0x4f,0xa2,0x92,0x8f,0x9e,0x3e,0x1a,0xa9,0x1d,0x19, +0x1d,0x73,0x56,0x91,0x94,0x7f,0xb6,0x3c,0x7f,0x5c,0xb1,0x95, +0x2f,0x31,0x8f,0xf6,0xb5,0xb6,0xd7,0x71,0xe8,0x8c,0x4c,0x0e, +0x97,0x3f,0x8d,0x8a,0x91,0x27,0x48,0x72,0x62,0x4b,0xf2,0x34, +0x9f,0x5a,0x1d,0x71,0xda,0x6c,0xa4,0x53,0xe2,0x50,0x5f,0x99, +0x53,0x92,0x51,0xa0,0x2d,0x9e,0xb6,0xa4,0xfb,0x3b,0x5d,0x2e, +0x7a,0xd4,0x3b,0xfa,0x0a,0x15,0x2e,0xd5,0x3b,0x0b,0x2c,0x78, +0xf5,0x75,0x58,0xcf,0x0c,0xe4,0xd9,0x4b,0x72,0x35,0x73,0x90, +0x4a,0xd6,0x76,0x24,0x1b,0x51,0xc9,0x87,0xec,0x3e,0xa2,0x10, +0x43,0x08,0xf8,0x49,0x5b,0xa9,0xfb,0x51,0x97,0x08,0xe7,0x08, +0xfe,0xdb,0x5f,0xdb,0x26,0x3d,0x78,0xd3,0x32,0xe3,0xde,0x2f, +0xad,0x53,0x1e,0xc3,0x47,0xe4,0x0c,0x4e,0x48,0xc5,0x49,0x25, +0x48,0x0e,0x79,0x07,0xfa,0x1e,0xf0,0x93,0x6f,0x2d,0xb4,0x66, +0x63,0x39,0xf7,0x0e,0xde,0x75,0xee,0x6c,0x42,0xba,0x35,0x59, +0x77,0x01,0xab,0x3f,0x2e,0x32,0x11,0x5a,0xa4,0x21,0x42,0x13, +0x65,0x1e,0xa4,0x6a,0x51,0x3d,0xa5,0xa6,0xdb,0xd0,0xf0,0x3a, +0x7b,0x99,0x6a,0x09,0x53,0xcd,0x7b,0xba,0xc0,0x50,0x7e,0x99, +0xd5,0x81,0xb3,0x38,0xb5,0x77,0xe9,0x20,0xc7,0xc3,0xda,0xbf, +0xee,0x60,0x12,0xaf,0x48,0x57,0x69,0x0b,0x5a,0xdf,0x07,0x6b, +0xcd,0xab,0x5f,0x2b,0x3a,0xc9,0xd7,0x55,0x8a,0x52,0x8b,0xac, +0x32,0x05,0xb0,0x86,0x35,0x8c,0xdf,0xaf,0x69,0xe4,0xc2,0xf6, +0x1d,0xf6,0x0a,0xf2,0xe1,0x59,0xba,0x49,0x2b,0x48,0x29,0x4c, +0x2e,0xb4,0x63,0x84,0x57,0x87,0x7d,0x18,0x89,0x6b,0xbe,0xe5, +0xfc,0x56,0x1b,0xad,0xda,0xba,0xbb,0x6a,0x8f,0x90,0x9f,0x97, +0x93,0x9f,0x9d,0xcf,0x23,0xf6,0x35,0x88,0x8e,0x1d,0x18,0xf2, +0x9c,0xa0,0xae,0x78,0x96,0xea,0xe1,0xdf,0x5f,0x12,0x71,0xa5, +0x96,0x1e,0x4e,0x7a,0x49,0xd4,0xe3,0x57,0xbd,0x25,0x87,0xc6, +0x6f,0xc9,0xe1,0xdc,0x4d,0xf4,0x3e,0x6c,0x5c,0x4b,0xa4,0x52, +0xfc,0x4a,0xc3,0xf0,0x8a,0x18,0xc3,0x63,0x11,0x3b,0x17,0xbc, +0xde,0x7e,0xa0,0xd3,0x27,0xc7,0xa6,0x8e,0xdc,0x53,0x94,0x4e, +0xa5,0xcb,0x70,0xe3,0x73,0xc6,0xf9,0x3e,0x16,0x4d,0xe9,0x9d, +0x8e,0x8a,0xbe,0xb8,0x5b,0x7c,0x2b,0x83,0x48,0xf0,0xb1,0xe0, +0x63,0x87,0x8e,0x27,0xdb,0x09,0xfd,0xa9,0xed,0xe9,0xad,0x59, +0xd1,0xc7,0xa3,0x8f,0x45,0x1f,0xab,0x74,0x15,0xae,0x37,0x56, +0xf4,0xc6,0xde,0xe2,0x6b,0xa7,0x71,0xae,0x99,0xe1,0x75,0x3a, +0xf5,0xdc,0xb9,0x94,0xb4,0x62,0xdd,0x5e,0xe2,0x98,0xaa,0xd8, +0xea,0x4d,0x0e,0x1d,0x8b,0xcd,0xd4,0x7d,0xf5,0xb8,0x01,0xc9, +0x75,0x18,0x56,0x8f,0xc3,0xae,0xda,0xec,0xb0,0x20,0x09,0xd9, +0x71,0xd9,0xb1,0x4a,0x87,0x44,0xe1,0xa8,0x5d,0xb0,0x83,0xbf, +0x4b,0x8d,0xbf,0x90,0x94,0x9e,0x98,0x91,0x98,0xc1,0xdf,0xd8, +0x86,0x43,0x1c,0x06,0xb8,0xe3,0x96,0x07,0x5d,0x1d,0xbc,0x8e, +0x35,0x08,0x07,0xa3,0x02,0x22,0xf7,0x47,0xf1,0xdf,0xf7,0x35, +0xcc,0xbd,0xfe,0x6d,0xfd,0x9c,0xab,0xd6,0x3b,0x4c,0x49,0x7c, +0x76,0x5c,0x16,0xfb,0x71,0x82,0xfc,0x63,0x7b,0x3f,0xd7,0x1a, +0x3f,0x21,0x39,0x3d,0x29,0x33,0x51,0xc9,0xdf,0xde,0x86,0x7f, +0x73,0xb8,0xc5,0xc5,0x18,0xfb,0x39,0xee,0xb4,0xe7,0xb1,0x06, +0x1e,0x30,0x67,0x64,0xf7,0x92,0x14,0x0d,0x89,0xb9,0x62,0x48, +0xea,0x96,0xbe,0xbd,0x55,0xbc,0x5f,0xda,0x43,0xc5,0x51,0x92, +0x93,0x34,0x8a,0x88,0x9f,0xc0,0xe7,0x2c,0xe6,0x7e,0xbe,0x46, +0x70,0x8e,0xdc,0x72,0x26,0xb1,0x6c,0x77,0xd2,0xe1,0xed,0x3b, +0x20,0x0d,0x7f,0x4b,0x44,0x52,0x65,0x20,0x38,0x0c,0x96,0x5f, +0x0d,0xff,0x30,0x09,0xa3,0x9b,0xf0,0xe7,0xdb,0x64,0x02,0x2a, +0xe9,0x77,0x79,0xcf,0xab,0x3b,0xeb,0xf6,0xd6,0x0a,0xa6,0xee, +0x6b,0x3d,0x16,0x07,0xf3,0xf0,0x73,0x2d,0x7d,0xe1,0x77,0xc7, +0xf7,0x33,0xb7,0xb2,0x56,0x61,0x4b,0xe5,0xea,0xf2,0x4f,0xb3, +0xf9,0xd1,0xe2,0x61,0x15,0xa1,0x4e,0xf7,0x6d,0xef,0xdb,0x5e, +0xb7,0xf6,0x13,0x9a,0xb6,0xb7,0x2e,0x39,0xbf,0x8e,0xc7,0x64, +0x38,0x49,0xfd,0x97,0x3b,0xae,0xdd,0x62,0x58,0x63,0x2e,0xdc, +0xbd,0xd6,0xf5,0x5d,0xe1,0x4b,0x5e,0xf5,0x3e,0x73,0x13,0xa4, +0xdd,0xef,0x97,0xa6,0xe0,0xed,0xf5,0x86,0x70,0x91,0x38,0x4c, +0xc6,0x91,0x93,0x71,0x1b,0x0e,0xaf,0x33,0x16,0xc0,0x12,0xc6, +0x01,0xff,0x5b,0xfa,0xdb,0x47,0x9f,0x37,0x73,0x99,0x06,0x0a, +0x58,0xc4,0x35,0x65,0xc9,0x0f,0x16,0x2f,0x7e,0x31,0xc0,0x58, +0xe0,0xe0,0xa3,0xcf,0x7b,0x21,0x8d,0xe0,0x33,0x9c,0x4c,0x53, +0x66,0x5d,0x5b,0xfd,0x83,0x5e,0x45,0x9f,0x30,0xf5,0x95,0xd5, +0x1d,0xff,0xa7,0xfc,0x66,0x6e,0xff,0x52,0x8b,0x25,0xf8,0xc1, +0xcc,0x73,0x6c,0xb4,0xb1,0xbf,0x5c,0x7a,0x9e,0xfe,0x23,0xbf, +0x44,0xbd,0x82,0x5e,0x84,0x48,0x50,0x61,0x87,0xb4,0x98,0xb0, +0xf6,0x47,0xa2,0x18,0x83,0x3b,0x20,0x86,0x61,0x7e,0x91,0x6a, +0x0a,0x75,0xc3,0xa1,0xdb,0xa6,0xe0,0x90,0x45,0x3c,0xae,0x7d, +0x06,0xf3,0x5b,0x71,0xfe,0x23,0xd0,0xae,0xea,0xe0,0xea,0x1c, +0x2f,0xde,0xec,0xfd,0xbd,0xf0,0xb1,0xb6,0x65,0xae,0xef,0xca, +0x3d,0x0b,0x2d,0x8c,0xb4,0x61,0x2e,0x1a,0x3e,0x36,0x5e,0x89, +0xbb,0x71,0x69,0xb7,0x1b,0x68,0xaf,0xc2,0x45,0x36,0xb0,0x68, +0x39,0x6e,0xb6,0x86,0xcd,0x5b,0x59,0x67,0xba,0xa9,0x8a,0x14, +0x39,0x02,0xf9,0xf1,0xe6,0xeb,0x22,0x78,0x9f,0x11,0xf3,0x42, +0x1c,0x7d,0x4b,0x8f,0xf1,0x2a,0x45,0x59,0xb7,0x80,0xa3,0x7f, +0xd8,0xf4,0x93,0xab,0x5c,0xb2,0xbc,0xd6,0x51,0xe7,0x3b,0xdb, +0x7f,0xb3,0xf8,0xcc,0xd6,0x5b,0xe8,0xdc,0x70,0x69,0xea,0xf9, +0x55,0xf2,0x73,0x33,0x8c,0x75,0xde,0x99,0x85,0xda,0xd7,0x8d, +0xb7,0xa1,0x16,0x27,0x1e,0x52,0xaf,0xa5,0xbd,0x10,0x65,0x72, +0x41,0x9c,0x85,0x7f,0x48,0xb3,0x08,0x74,0xc1,0xaf,0xb2,0xcc, +0x51,0x4c,0x66,0xc9,0x12,0x7f,0xa7,0x5d,0x70,0x09,0x22,0xa4, +0x61,0xd8,0x48,0xe0,0xd2,0x6f,0x14,0xcf,0xc0,0x47,0x70,0x86, +0x1b,0x0d,0xd3,0x55,0x61,0xf4,0x75,0x3c,0x0c,0x49,0xfd,0xbe, +0xd8,0xbb,0x45,0xd0,0x0b,0x98,0x1d,0x86,0x1f,0xc5,0x1c,0xdd, +0x7e,0x50,0xdf,0xdd,0xaa,0xc5,0x55,0x38,0xd7,0x91,0x37,0x90, +0xd2,0xc9,0xc3,0x1b,0x74,0xa2,0xb7,0x6f,0x5d,0x85,0x91,0xa5, +0x5f,0x58,0xe6,0x08,0x9e,0x0b,0x8d,0xa6,0xec,0x34,0xe0,0xc5, +0x93,0x67,0xa8,0xcb,0x9d,0x9d,0xbf,0x5a,0xdc,0xd9,0xe3,0x2d, +0xb4,0x6f,0xb8,0x38,0xb5,0x6e,0x35,0x2f,0x75,0xc2,0x0e,0x5a, +0x68,0x57,0x6c,0x9c,0x6b,0xde,0x5a,0x20,0x04,0x76,0xf8,0xf4, +0xf9,0x35,0xf1,0x38,0x42,0x32,0xa6,0xb5,0xb1,0x35,0xb1,0x35, +0x71,0x89,0x41,0x09,0x41,0xf1,0x87,0x5a,0xf2,0x85,0xc0,0x2b, +0x3e,0x17,0xdd,0xfb,0xf7,0x1c,0x10,0xd2,0x0f,0xa4,0xfb,0xa6, +0xf9,0x58,0x44,0x9b,0x1d,0x33,0x3d,0xd6,0xdf,0x77,0xe1,0x5e, +0xf3,0x0d,0x87,0x72,0xc1,0xc7,0xde,0xd5,0xda,0x65,0x4f,0x70, +0xe6,0x21,0x65,0x90,0xb2,0xac,0xa6,0xac,0x31,0xa7,0xaa,0x25, +0x4b,0x08,0xab,0x0f,0xa9,0x3b,0x5c,0x62,0x73,0x48,0x48,0xf7, +0x4a,0xf7,0x48,0x75,0x76,0x29,0x12,0x0e,0xba,0xf8,0xda,0xef, +0x73,0x77,0xa8,0x10,0x3c,0x1c,0x5b,0xdd,0xda,0x1c,0xeb,0x5c, +0xb4,0x03,0x0f,0x06,0x05,0x06,0x05,0xf3,0x27,0x3d,0x3d,0x4f, +0x7a,0x8e,0x8f,0x35,0xbb,0x70,0x66,0xe0,0xec,0x40,0x9c,0xf6, +0x1a,0x12,0x82,0x3b,0xcd,0x61,0x23,0x09,0x5c,0x69,0x60,0x36, +0xd5,0xa4,0xd4,0x42,0x78,0xd6,0x72,0xa1,0xad,0xfa,0x72,0x6c, +0x42,0xdc,0xa9,0xf8,0x68,0xd6,0xbf,0x4d,0x11,0x6a,0x9b,0x70, +0x0e,0x7c,0x14,0x96,0x7a,0xe4,0x54,0x78,0xb8,0x76,0x64,0xe4, +0xb1,0xb3,0x09,0x19,0xf1,0x59,0xb1,0xb9,0xda,0xb0,0xa3,0x8b, +0x81,0xea,0x74,0xd2,0xa9,0xc4,0xe4,0x71,0xe2,0x78,0x71,0x31, +0x73,0xfd,0xf0,0xcd,0x13,0x71,0xe4,0xec,0x73,0xe6,0x02,0x8c, +0xf9,0xfd,0xf6,0x37,0xc5,0x0c,0x79,0xf1,0x5c,0x01,0xbe,0xc7, +0x1c,0x37,0x6e,0xd0,0x71,0xef,0xfd,0xb0,0xf9,0x47,0x37,0x18, +0xc6,0xe3,0x4c,0xb5,0x0f,0x73,0xca,0x11,0x8d,0x53,0x7e,0x93, +0x9d,0xd2,0x3a,0xe8,0x94,0x23,0x1a,0x20,0x5d,0x62,0x2d,0x30, +0x63,0xb9,0x1d,0xa0,0xb7,0x0b,0xf5,0xb0,0x0a,0x84,0x5d,0xb8, +0x5b,0x15,0x0f,0xbb,0x89,0xfa,0x02,0xe6,0x50,0x23,0x95,0xd4, +0x4f,0xd4,0x49,0xf2,0x1d,0x8c,0x91,0x2a,0xf9,0xee,0x08,0xe9, +0x0d,0x6e,0xa7,0x30,0x56,0xac,0xc6,0xb1,0x04,0xdf,0x43,0x47, +0x5a,0x54,0x5b,0xd8,0x98,0xdf,0x68,0x98,0x27,0xec,0xb7,0xf4, +0x30,0xf6,0xde,0xcb,0x4b,0x05,0xfa,0x7f,0x68,0x5d,0xe4,0xa4, +0xfe,0x12,0x1a,0xd0,0x70,0xe0,0xfc,0xbe,0x6a,0x53,0x5f,0xa1, +0x6a,0x4f,0x8e,0x47,0x96,0x13,0x23,0xfb,0xa3,0x55,0x9f,0xd2, +0x85,0x17,0x61,0x0a,0x9e,0xf9,0x49,0x7f,0x1a,0xeb,0xf4,0xa6, +0x5e,0xf8,0x8a,0x48,0x4b,0x61,0x0c,0x35,0x84,0xe7,0x03,0xf2, +0x53,0x98,0x8b,0x28,0x76,0x43,0x19,0x74,0x13,0xd0,0xf6,0xa0, +0x61,0xf8,0x37,0x47,0x1c,0xbe,0x6d,0x71,0x8d,0x8d,0xd0,0x79, +0xab,0xfa,0x5e,0xc1,0x73,0xfe,0x47,0x2e,0x7a,0x4d,0xd8,0xa6, +0x80,0xed,0x7e,0xa5,0x3e,0x45,0xbe,0xf9,0xfb,0xcc,0x85,0x52, +0xdf,0x32,0xbf,0x62,0x37,0xe7,0x65,0xc6,0xeb,0x3f,0xdd,0x5e, +0xc5,0x6c,0xb1,0x0a,0xa6,0x3c,0x80,0xad,0xa9,0x70,0x98,0x6f, +0xc2,0x09,0x24,0xbe,0x38,0xb6,0x24,0xb6,0x94,0x97,0x66,0xa3, +0x33,0x05,0x73,0x66,0x61,0x73,0x22,0xfe,0x26,0x4d,0xfb,0xff, +0x28,0x7b,0xeb,0xe8,0xa8,0xae,0xb6,0x6d,0x1c,0xc9,0x9c,0x73, +0x90,0x86,0x16,0xd8,0x70,0x26,0x40,0x82,0xbb,0xbb,0x04,0x77, +0x89,0xbb,0xbb,0xbb,0x7b,0x80,0x00,0xc1,0x2d,0xc4,0x88,0xbb, +0x27,0x13,0x77,0x37,0x82,0x4b,0xa1,0x50,0x0a,0x2d,0x2d,0x15, +0x4a,0x29,0x05,0xda,0x72,0x9f,0xe9,0x7d,0xf2,0xbc,0xdf,0x3e, +0x69,0x9f,0xe7,0x79,0xbf,0xdf,0x5a,0xbf,0x3f,0xbe,0x95,0xb5, +0x98,0xc3,0x9c,0x99,0xc9,0xde,0xf7,0xbe,0xee,0xeb,0xbe,0xae, +0xc9,0x16,0x82,0x2c,0xe3,0x7b,0x2c,0x2e,0x5f,0x43,0x70,0x04, +0x55,0x3c,0x36,0x87,0x4d,0x31,0x92,0x7d,0x4d,0x95,0x61,0x6a, +0x9d,0x06,0xd4,0x63,0xb8,0x98,0xcf,0x6a,0x67,0x86,0x5f,0x53, +0x07,0x55,0xa6,0x2e,0xf9,0x6a,0xad,0x06,0xa8,0x4a,0x5b,0xd1, +0x89,0x99,0xee,0xc4,0xf3,0xb0,0xfb,0x11,0xf7,0xa3,0x99,0x77, +0x33,0xbe,0x4d,0xb8,0x6d,0x44,0x05,0xf8,0x8e,0x90,0x05,0xfe, +0x9b,0xb4,0xc3,0xb5,0xa2,0xb4,0x0f,0x27,0xeb,0xf2,0x30,0x3a, +0x17,0x46,0x96,0xfe,0x59,0xc7,0xa1,0x59,0x17,0x39,0x7c,0x3b, +0xec,0xf3,0xb0,0x3e,0xd3,0x60,0x3e,0x5d,0x2f,0x7d,0x5b,0x92, +0x96,0x74,0x4e,0xbb,0x10,0x41,0x6e,0x82,0x06,0x2c,0x44,0x8d, +0x01,0x58,0xd2,0x24,0xce,0x17,0x47,0x08,0xf3,0x1b,0xd9,0x16, +0x63,0xf2,0x38,0xff,0x66,0x59,0x57,0x4d,0xbb,0xf3,0x0d,0x97, +0x2f,0x3c,0x73,0x5b,0xf8,0x3d,0x85,0x86,0xc5,0x96,0xa5,0xd7, +0x7b,0x1a,0x6f,0x15,0x7f,0xce,0xd5,0x88,0x72,0x69,0x47,0xf7, +0x00,0x13,0x67,0x53,0x43,0x2b,0xa3,0x06,0xc7,0x66,0xf7,0x26, +0x1b,0x6f,0xbe,0xc4,0xb2,0xd6,0xa2,0xcb,0xca,0xd2,0x43,0xdf, +0x67,0x4f,0x10,0x87,0x11,0xd4,0x22,0x48,0x1f,0xaa,0xc1,0xa0, +0x06,0x6e,0x22,0xd7,0xa1,0x48,0x8b,0xc5,0x69,0x36,0xe4,0x20, +0x6a,0xdc,0x64,0xd7,0xe1,0x5a,0x62,0xa6,0x14,0xdb,0x58,0x2c, +0xc1,0x1a,0x02,0xbb,0x61,0xef,0xe0,0x0a,0xdc,0x0b,0x2b,0x18, +0xcb,0xe0,0x42,0xaf,0x54,0xff,0x14,0x7f,0x39,0x56,0x9a,0xfc, +0x35,0xa9,0x03,0x5b,0x99,0xcc,0xfc,0x8c,0xa2,0xb4,0x42,0xee, +0x16,0xcc,0x27,0x1b,0xc4,0xfa,0xe7,0xac,0xb0,0x85,0x3a,0xb6, +0x50,0x57,0x7f,0xa7,0x00,0x5a,0x03,0x8f,0x31,0xf5,0xe9,0xe1, +0x25,0x21,0x85,0x81,0xb9,0x72,0x55,0x25,0x28,0x6f,0x12,0x7c, +0x82,0x0b,0x7a,0x80,0x69,0x44,0xa6,0x1d,0x86,0x37,0xe2,0xf0, +0xb6,0xa1,0xeb,0x16,0x53,0x0b,0x94,0x59,0x83,0xcc,0x6c,0xba, +0xf5,0x47,0xd3,0xa1,0x2b,0x03,0x9c,0x07,0xaf,0x8c,0xf0,0x15, +0xce,0xea,0xf9,0xd8,0x38,0xbd,0xfd,0x5d,0xe3,0xdc,0x36,0xfa, +0xd8,0x62,0xca,0x5a,0xcc,0xb4,0xfe,0xc3,0x6c,0xbe,0xf5,0x5b, +0x53,0xfa,0x68,0x80,0x1a,0xf0,0xc4,0x40,0x1c,0xa5,0xfc,0x4e, +0x18,0xc5,0x0e,0xbe,0x12,0xf7,0xd0,0x36,0xbf,0xa5,0x6d,0xce, +0x15,0xd5,0x48,0xd6,0x50,0xb3,0xa8,0xf4,0x06,0x6d,0xd8,0x37, +0xa8,0x83,0xfb,0x60,0x3d,0x63,0x15,0x5c,0xe4,0x95,0x36,0xd4, +0xf8,0x32,0x93,0xbf,0xf8,0x0e,0x06,0xd7,0x40,0x14,0x59,0x2f, +0x3e,0xfc,0x9a,0x15,0x0c,0x90,0xa7,0x8d,0xf6,0x73,0xf6,0xf7, +0xe6,0xf0,0xdc,0xff,0x6e,0xf4,0x21,0x81,0x21,0xdf,0x77,0x7d, +0xff,0xe2,0xc6,0x17,0x16,0x75,0xbc,0xc1,0x8e,0xb5,0x5b,0xb7, +0x98,0xbb,0xfc,0x12,0xfc,0x47,0x0c,0xc8,0x38,0x78,0xd6,0x3f, +0xf8,0x51,0x57,0x50,0x65,0x76,0x2e,0xc3,0xd9,0x3b,0x70,0xad, +0x6d,0xbe,0x0e,0xff,0x43,0xfe,0xcf,0x95,0x4f,0xdb,0x72,0xbd, +0xb2,0xbc,0xd3,0xbd,0x96,0x6e,0xc6,0x89,0x07,0x71,0x91,0x4d, +0xa1,0x36,0x0f,0xb3,0x1a,0x61,0xea,0xfd,0x57,0xcf,0xd2,0x5c, +0xaf,0xba,0x25,0xba,0xcd,0x42,0x16,0x17,0xac,0x45,0x13,0x83, +0x02,0x7a,0x47,0xa7,0x07,0x56,0xfd,0xf4,0xe3,0x07,0x2e,0xc1, +0xea,0xa2,0xb5,0x8d,0xda,0x6c,0x0f,0xd7,0xa5,0xea,0x8b,0x99, +0x0c,0x6d,0xd9,0x73,0x06,0xe4,0x6d,0xd7,0xa9,0x72,0x58,0x6e, +0x0c,0x1b,0x70,0x3c,0x2c,0xd7,0x68,0x2c,0xaf,0xaa,0xcd,0x6b, +0xe2,0x4a,0x98,0x02,0xbc,0x0d,0x2a,0x78,0x19,0xa2,0x71,0x4b, +0x6d,0x07,0x25,0xdb,0x97,0xeb,0x7f,0x37,0x80,0xb1,0x34,0x53, +0x76,0x0b,0x19,0xa4,0x13,0x0b,0x59,0xdf,0x92,0xa0,0xb2,0xe0, +0x0a,0x0e,0xd6,0x74,0x32,0xd5,0xde,0xd5,0x5e,0x35,0xae,0x55, +0x0d,0xfc,0x8e,0xeb,0x9b,0xbb,0xb7,0x35,0x3a,0x39,0xf2,0x8a, +0x40,0x45,0x40,0x85,0x1f,0x87,0xa9,0x4c,0xb2,0x22,0x41,0x11, +0x57,0x65,0x74,0x89,0x8f,0x71,0x3a,0xe2,0x18,0xe9,0xc4,0xe1, +0x5e,0xa6,0x28,0xb7,0x20,0x2f,0xa7,0xc0,0xa6,0x9c,0x37,0x3c, +0xb4,0xd3,0x74,0x8d,0x43,0xb9,0x05,0x5f,0x97,0x59,0x9f,0x5f, +0x53,0xc2,0x39,0xc1,0x76,0x36,0xcc,0x2d,0xc8,0xdd,0xc7,0x83, +0xc3,0x7a,0x63,0x88,0x61,0xb4,0x0c,0x37,0x98,0xa2,0x8a,0x75, +0x09,0x35,0x28,0xd3,0x06,0xde,0xdc,0xb9,0xf7,0x39,0x07,0x45, +0xcc,0xfd,0x6d,0x3f,0xef,0x83,0x71,0x7a,0xc5,0xad,0x3c,0x1d, +0xda,0xad,0xad,0xfa,0x1d,0x1c,0xf6,0x77,0x92,0xdc,0xd2,0xcc, +0xb2,0xd4,0x72,0xee,0x26,0x93,0xe6,0x96,0xe5,0x9e,0xeb,0xc1, +0x9d,0x16,0x77,0x91,0x58,0xe6,0x54,0x7a,0x6c,0xc6,0xf1,0xf4, +0xd7,0x65,0xdf,0x35,0x5d,0xaf,0x77,0xae,0xe7,0x0f,0x58,0x6f, +0x77,0x5c,0xe9,0x11,0x56,0x19,0x50,0xee,0x5d,0x94,0x9b,0x94, +0x73,0x35,0xeb,0x2a,0x07,0x9b,0x5a,0x45,0x7d,0x73,0xd8,0xcf, +0x2c,0xb3,0xc5,0x11,0x2e,0xb8,0xde,0x23,0x83,0x26,0xeb,0x88, +0x6c,0x18,0x55,0xfa,0xbe,0xe9,0x6a,0x64,0x72,0x44,0x62,0xc4, +0x5c,0x23,0x54,0xb7,0xc5,0xc5,0x3e,0x59,0x54,0xee,0x2e,0x2a, +0x86,0x99,0x8d,0x1f,0xfa,0xe3,0x43,0xe2,0x43,0x2e,0x07,0x21, +0xb7,0x03,0xb7,0x1a,0xe3,0x21,0x17,0xe9,0x4f,0xec,0xfb,0x6a, +0x60,0x7d,0x1b,0xb0,0x9f,0x73,0xe7,0xa3,0xce,0x45,0x46,0xaa, +0xed,0x0f,0x0f,0x5e,0xa7,0xbe,0x88,0x49,0x33,0x95,0xbd,0x64, +0xe0,0xb3,0x82,0xa6,0xb7,0x57,0xcf,0x24,0x9f,0x4e,0xd2,0x38, +0x73,0xf9,0xf2,0xb9,0xcb,0xa7,0xa0,0x19,0x57,0xf2,0xc5,0x1d, +0x58,0x06,0x8b,0x22,0xe2,0xa3,0xce,0x1e,0x8e,0x90,0xab,0xfe, +0xa5,0x2f,0x9c,0xa7,0x61,0x5d,0xc7,0xf6,0xdd,0x6e,0x7d,0x54, +0xf7,0xc2,0x2c,0x97,0x0f,0xb6,0x0d,0x74,0xf0,0x77,0xa2,0x5a, +0x4a,0xe3,0x4f,0xfd,0x19,0xb8,0xc0,0x04,0x16,0xe0,0x38,0xdc, +0x6f,0x0c,0x3e,0xec,0x8e,0xfd,0x1b,0x0c,0x57,0x5a,0x15,0x59, +0xf0,0x85,0xa9,0x05,0xa9,0xf9,0x69,0x9c,0xb8,0xb6,0xb7,0x17, +0x4e,0xeb,0xf7,0x09,0x87,0xd8,0xf3,0xa7,0xe9,0xcf,0xa9,0xaa, +0x4a,0xde,0xa7,0xc2,0xa9,0xca,0xa9,0xc8,0xc9,0x8d,0x2f,0xf3, +0x2d,0xf1,0x2a,0xa0,0xf1,0xec,0x67,0x06,0xea,0xba,0x1b,0x5a, +0x5b,0x39,0x71,0x27,0xca,0xc8,0x89,0x73,0xa7,0x92,0x62,0xd3, +0x8f,0x67,0xcb,0x6f,0xf4,0xb6,0xf6,0x55,0xdf,0xb4,0x29,0xe5, +0xbd,0xcc,0x6c,0x74,0x8d,0x2c,0x22,0x2a,0x43,0xea,0x03,0xea, +0x2b,0x14,0xc5,0x35,0xf9,0x2d,0x1c,0x2c,0xec,0x14,0x67,0x18, +0xc3,0x01,0xc6,0x72,0xb3,0xae,0xf1,0x12,0x93,0x12,0x0b,0xbe, +0x32,0xab,0x2c,0xa7,0x38,0x37,0xd3,0x3d,0xd5,0xe3,0xaa,0xbb, +0x8d,0xd9,0x3e,0xb3,0x3d,0xae,0xb4,0x15,0x77,0x15,0x03,0xcd, +0xf5,0xcd,0xc9,0x4e,0xf1,0xce,0x71,0x2e,0x86,0xdb,0x97,0xed, +0x5c,0x6e,0x46,0x5f,0xf9,0xa2,0xf5,0xf9,0x8d,0xf6,0x1b,0xdc, +0x25,0xf3,0xf3,0x16,0xd6,0x6a,0xf3,0xfd,0xc2,0x76,0xa9,0xef, +0x91,0x0e,0x4a,0xbe,0xcd,0xfc,0xa9,0x68,0x84,0x09,0x4f,0x4e, +0xf7,0x06,0xc0,0x30,0x8d,0x33,0x71,0x97,0xce,0x5f,0x3c,0xfe, +0x27,0x1a,0xf1,0x0d,0x15,0x38,0x0c,0x8c,0x8e,0x64,0x44,0x9f, +0x8b,0x88,0x91,0x0b,0x47,0xa1,0x9c,0x78,0xd9,0xb8,0xdb,0xbb, +0x38,0x71,0x2e,0x30,0x8e,0x81,0x05,0xa2,0x2f,0xc1,0xd3,0x20, +0x83,0xd3,0x0c,0x95,0xbf,0x1b,0x08,0x9c,0xa6,0xa1,0x38,0xcd, +0xa8,0x2a,0xc3,0x94,0x5f,0x11,0x9c,0xae,0x87,0xd6,0xee,0x78, +0xfa,0x44,0x1a,0x05,0x7a,0x6c,0x1c,0x78,0x57,0xc3,0xdc,0x1b, +0xb4,0xb6,0x50,0xd7,0x1f,0xae,0xf0,0xae,0xf3,0x2e,0x35,0xf3, +0xe2,0x0b,0xbc,0xca,0x6c,0xd2,0xdc,0x39,0x38,0x0a,0x2c,0xc1, +0xe5,0x28,0xc7,0x80,0x5d,0xd8,0xe9,0x9b,0xa1,0xc5,0x83,0x66, +0x06,0xcc,0x2a,0x84,0xf1,0x2d,0x57,0x43,0x93,0xc3,0x92,0x42, +0xf1,0xb3,0x65,0xb8,0xd3,0x00,0x1d,0xbc,0x33,0x0f,0xf1,0xe0, +0x5a,0x06,0x7b,0xae,0xc1,0xf8,0x37,0xa9,0xde,0xc9,0xde,0x89, +0x5e,0xd2,0x01,0x21,0xe8,0xb6,0x15,0xbd,0x5d,0xb2,0xe8,0xdb, +0x82,0xab,0xc0,0xf1,0x19,0x7c,0x46,0x13,0x22,0xce,0xfd,0xa2, +0xbb,0xab,0xda,0xda,0x70,0x8b,0xf9,0xea,0x33,0x99,0x34,0x6d, +0xd9,0x3b,0x06,0xc6,0xd5,0x5d,0x87,0x29,0x30,0xd9,0x10,0xc6, +0xad,0x84,0x31,0x1a,0x8f,0xcb,0xef,0xd7,0xdf,0xec,0xa2,0x61, +0x9f,0x4f,0xfc,0x1b,0x7d,0x6a,0x9c,0xaa,0xcc,0x3c,0xf8,0x52, +0x4f,0x85,0x45,0x2e,0x2d,0x3b,0xca,0xaf,0x95,0x53,0x08,0xb5, +0xbb,0xa8,0x83,0xd7,0xf4,0xa1,0x9a,0xf5,0x43,0x82,0x23,0x71, +0x0b,0xae,0xc7,0xc5,0x75,0x96,0x3c,0xb5,0x12,0x2b,0x7e,0x01, +0x3e,0x1d,0xe6,0x50,0xed,0x96,0x85,0x3b,0x99,0x74,0xaa,0xdd, +0x16,0x33,0x4d,0x99,0x99,0x2d,0x1a,0xc2,0x63,0x60,0x7a,0xd9, +0x7f,0x7d,0x92,0x4e,0x60,0x5a,0x1a,0x2c,0x54,0x7c,0x68,0xf2, +0x6c,0xe2,0x67,0xdb,0xe0,0x14,0x4f,0x54,0x8f,0xe0,0x60,0xab, +0x1e,0xc9,0xf2,0xcb,0x71,0x4e,0xf5,0x68,0x2e,0xe2,0x23,0xca, +0x82,0xcb,0x43,0x0a,0x86,0x66,0xe0,0xe4,0xbb,0x17,0xd8,0x66, +0x38,0xb6,0x16,0xf1,0xc1,0xf5,0x01,0x95,0x3e,0x0a,0x0e,0x2a, +0x62,0xc9,0xaa,0x25,0x48,0x9d,0xe5,0x3c,0xdb,0x1c,0x53,0xfe, +0xf3,0xec,0x7b,0x45,0x37,0x15,0x57,0x83,0x93,0x83,0x92,0x82, +0xf7,0x68,0x2d,0x32,0x46,0x15,0xbb,0x3c,0x0a,0xfa,0x11,0x0d, +0xbf,0x74,0xde,0xbb,0x99,0xec,0x93,0xe0,0x1d,0xe7,0xb9,0x7d, +0x3d,0x8e,0xda,0x83,0x9f,0x99,0xe5,0x1a,0xf1,0x30,0xaa,0x05, +0x98,0x3b,0x8f,0x1e,0x73,0x17,0xfc,0xce,0xfb,0x78,0xab,0xcd, +0xf2,0x73,0xd8,0xa1,0xbe,0x8a,0x49,0xd3,0x91,0x7d,0xc9,0x7c, +0x6c,0xec,0x86,0xb9,0x30,0xdf,0x0c,0x26,0xee,0xfa,0x43,0xa3, +0xb5,0xb4,0xa1,0x42,0x51,0x43,0x25,0xed,0x5c,0xe5,0x17,0x64, +0x9e,0x2d,0x4e,0xf6,0xc0,0xc9,0xe1,0x69,0xf4,0xfd,0x93,0xd3, +0x61,0xb6,0xe2,0x5d,0x23,0x27,0xec,0xb7,0x23,0x67,0x16,0xc5, +0xee,0x3e,0x62,0xc9,0x39,0xc4,0x44,0x85,0x9a,0x4c,0xc1,0x61, +0x4c,0x9a,0xa1,0xec,0x57,0xe6,0x8b,0x33,0xe5,0x79,0x29,0x37, +0xaf,0xde,0x88,0x7b,0x7e,0x0e,0x16,0x73,0xa2,0x8b,0x1e,0xac, +0x66,0x8e,0xe3,0x67,0xb6,0x0b,0x71,0xca,0xee,0x32,0xfa,0x01, +0x8b,0xbf,0x6e,0x07,0x95,0x78,0x58,0xc4,0x89,0x0c,0xa5,0xd6, +0xf0,0x8a,0xa0,0xca,0xa0,0x62,0x0b,0x1f,0x3e,0xdb,0x3b,0xd7, +0x31,0xd5,0x8d,0xdb,0xe8,0x45,0x42,0xea,0x82,0xaa,0x7c,0x2b, +0x2c,0x7d,0xf8,0x3c,0xb7,0x3c,0xbb,0x0c,0x47,0x0e,0xea,0x60, +0x1a,0x99,0xb9,0x0c,0xa9,0x49,0x5e,0x66,0x91,0x6f,0xce,0xdf, +0xc9,0xbe,0x99,0xd7,0x5f,0x9c,0x18,0x9a,0x18,0x16,0x1f,0xa2, +0xa5,0xbb,0xd2,0x78,0x8e,0x7d,0x9e,0x09,0xff,0xb6,0xee,0x65, +0xe7,0x8d,0x81,0x44,0xef,0x78,0xef,0x38,0x8f,0x3d,0x9b,0x70, +0xd8,0x3e,0x64,0x2c,0xf2,0x8c,0xf8,0x3f,0x9a,0x3e,0xdc,0xbc, +0xf7,0x90,0xbb,0x10,0x70,0xce,0xcf,0x57,0x6d,0x7a,0x00,0xed, +0xac,0x26,0x93,0xa6,0x2b,0xbb,0xcf,0xfc,0x51,0xdf,0x05,0xf3, +0x61,0xb6,0x2d,0x8c,0xd3,0xfe,0xa0,0xd1,0x5f,0xd6,0x55,0xd5, +0xda,0xc0,0x7d,0x33,0xa8,0x47,0x6e,0x41,0xd7,0x81,0xeb,0xc2, +0x26,0x71,0xb3,0xb8,0x89,0x85,0xff,0x11,0x46,0x10,0x3c,0x85, +0x5d,0x70,0x8a,0x2a,0x9b,0xd3,0x42,0x34,0xb9,0x7b,0xbd,0xf9, +0x7e,0xd9,0x53,0x2a,0x06,0xca,0xd9,0x94,0x82,0xa4,0xa2,0x84, +0x22,0xbd,0x78,0xde,0x79,0xc1,0xfe,0xc5,0xf3,0x36,0x97,0x5b, +0xf1,0x55,0xc5,0x8a,0xb2,0x92,0xca,0x0a,0xcb,0x5a,0x9b,0x56, +0xbb,0x83,0x16,0x9b,0xac,0xe7,0xd8,0x15,0x53,0x56,0x1a,0xd6, +0xf4,0x6d,0xeb,0xbd,0xae,0x5b,0x66,0x8f,0x2d,0x5f,0xda,0x14, +0x77,0xf1,0x1b,0x6a,0x76,0xd7,0x6a,0x37,0x72,0xf8,0x16,0xde, +0x90,0xb9,0xb6,0xc8,0x7b,0x20,0xff,0xef,0xb0,0xce,0x55,0xbc, +0xa7,0x37,0xd4,0x69,0xc9,0x8d,0x2c,0x0d,0x29,0x0f,0x29,0xa4, +0x41,0xc9,0xf4,0xcd,0x72,0x49,0xf1,0xe4,0xe0,0xe1,0x13,0x92, +0x92,0x2d,0x83,0x93,0x8c,0xaf,0xbe,0x83,0x81,0x9e,0xa9,0x71, +0x83,0x4d,0xb3,0x4b,0x3b,0x27,0x4e,0x42,0x86,0x84,0xd4,0x07, +0x56,0x0e,0x45,0x2b,0x9f,0x46,0x8b,0xaa,0x22,0x88,0xa6,0xd1, +0xda,0xb8,0x0c,0xc7,0xec,0x44,0xde,0x86,0x46,0xeb,0x66,0xf6, +0x8d,0xa2,0xde,0x8a,0xe4,0xe0,0xa4,0xa0,0xc4,0x40,0x2d,0xdd, +0x55,0xff,0x8d,0xd6,0x75,0x29,0x5a,0x5e,0x71,0x9e,0x7b,0x35, +0x71,0xd8,0xde,0xbf,0xa3,0xf5,0xfb,0x3f,0xd1,0xf2,0x3f,0xe7, +0x3f,0x14,0xad,0x9d,0x34,0x5a,0xa9,0xff,0x8d,0xd6,0x42,0x2b, +0x98,0xb8,0xff,0x0f,0x8d,0xfa,0x92,0x9a,0x8a,0xb2,0x2a,0x0e, +0x66,0x0e,0x1a,0x90,0x1b,0x90,0x79,0x68,0x40,0xe0,0x45,0xfa, +0xc3,0xc2,0x57,0xd4,0x66,0xa1,0x2b,0x66,0x82,0x2b,0xab,0x0a, +0xbf,0x28,0xbf,0x26,0x6b,0xed,0x51,0xe6,0x8e,0x23,0x42,0xd3, +0x24,0x3c,0x66,0xc2,0xa7,0x95,0xdf,0x37,0x70,0xb0,0xbc,0x96, +0xd8,0xe1,0x66,0x5d,0x9c,0xbb,0x1c,0x27,0x51,0x77,0x52,0xdd, +0x53,0xdc,0x9b,0xdd,0xc8,0x89,0x77,0xba,0x95,0x1b,0xd8,0xbc, +0xdb,0x79,0x5f,0xa4,0x3d,0xe5,0x04,0x16,0x8f,0x52,0x3b,0xb7, +0x0f,0x0c,0x0c,0xd0,0x00,0x57,0xe9,0xc1,0x1c,0x36,0x1a,0xa7, +0xda,0xe0,0x2c,0x94,0xe1,0x92,0x4a,0x53,0xfe,0x35,0x90,0x8a, +0x77,0x09,0x43,0xee,0xa8,0xb0,0x47,0x28,0x8c,0x63,0x92,0x70, +0x5c,0xed,0xf2,0x57,0x38,0xad,0xba,0x8d,0xc7,0x11,0xb0,0xc8, +0x18,0x66,0x47,0xc0,0x14,0x4e,0xcc,0xa8,0x23,0x51,0x65,0x21, +0x8a,0xd0,0x22,0x6b,0x5f,0x3e,0xc3,0x3b,0xd3,0xe5,0xaa,0x3b, +0x67,0xe4,0x40,0xc2,0x1a,0x82,0xab,0xfd,0x15,0x56,0xbe,0x7c, +0x9e,0x6b,0xb6,0x4d,0xba,0x03,0x47,0x0d,0xba,0x9c,0xec,0x5a, +0x31,0x7b,0x37,0x8e,0xb0,0x2a,0xb4,0xe0,0x3b,0x73,0x3a,0x0a, +0x5b,0xca,0x93,0x03,0x13,0x03,0x13,0xfd,0x8d,0xf4,0xb7,0x98, +0xae,0x92,0x02,0xf6,0xa2,0xee,0x51,0x7b,0x57,0x6f,0x82,0xd7, +0x15,0x8f,0xcb,0x6e,0xba,0xdb,0x17,0x1d,0x98,0x6f,0x49,0x9f, +0x7c,0x59,0xf7,0xb2,0x7f,0xe0,0x2e,0x77,0x3e,0xf0,0x9c,0xbf, +0xbf,0x1a,0x0e,0x0f,0xb6,0xdf,0xa1,0x7e,0x40,0x9a,0x37,0xdb, +0xc3,0x7c,0xa8,0xed,0x84,0xc5,0xb0,0xdc,0x0e,0xd4,0x74,0xfe, +0xd4,0xa8,0x2c,0x2e,0x2f,0x2f,0xaa,0xa4,0xa9,0xa4,0x42,0x53, +0x69,0xa5,0x1d,0x8e,0x76,0x47,0x6e,0x68,0xcc,0x47,0x65,0x00, +0x51,0xfc,0x48,0x53,0xa9,0x23,0x9e,0x88,0x45,0x3a,0x74,0x78, +0xa3,0xad,0x43,0x8c,0x82,0x2d,0x39,0x5c,0x39,0xb8,0x64,0xe0, +0x01,0x7c,0xb7,0x6b,0x40,0xb9,0x04,0x23,0x99,0x8c,0xa6,0xcc, +0xae,0x94,0x26,0x0e,0x02,0x98,0xc1,0xf9,0xc8,0x0d,0xa1,0x23, +0xf4,0x7f,0xa1,0x43,0xcb,0x99,0x84,0xd6,0x05,0x55,0xfa,0x29, +0x86,0x52,0x26,0x77,0x28,0x65,0x02,0x60,0x0a,0xd9,0xbc,0x1c, +0x99,0x5d,0xf8,0x99,0x35,0x05,0xc1,0x40,0xce,0xb5,0xa2,0xee, +0x0a,0xca,0x10,0x41,0x09,0x81,0x3a,0xba,0xeb,0x4c,0xe6,0x4b, +0x7d,0xfa,0xa5,0xfe,0x9b,0x8e,0xfe,0x6b,0x12,0x08,0x2e,0x7b, +0x1c,0xd8,0x3c,0x6b,0x1f,0x8e,0xb4,0xa0,0xc4,0xf1,0x5b,0xe3, +0xdb,0xeb,0xb7,0x3f,0xe7,0x2e,0xd0,0x4e,0xf9,0xa9,0xe1,0xb0, +0x40,0x9a,0x32,0xdb,0xa4,0x94,0xb9,0xc5,0xfc,0x4e,0x41,0xb0, +0x00,0x16,0xda,0x00,0x39,0xf8,0xbb,0x46,0x6d,0x49,0x65,0x79, +0x29,0x05,0xc1,0x08,0xec,0x20,0xd4,0x3d,0x7f,0x87,0xb6,0x2c, +0x7e,0x87,0x05,0x04,0xbc,0xe8,0xb5,0x17,0xab,0x2a,0x4c,0xa4, +0x9d,0x5d,0x62,0x8b,0xe3,0x3c,0x50,0x75,0xa8,0xb3,0xaa,0x19, +0x30,0x55,0xf1,0xba,0x91,0x83,0x6e,0x51,0x20,0xe0,0xd1,0x85, +0x1e,0x30,0x1d,0xcc,0x84,0xdd,0xa2,0x8e,0xb8,0x1b,0xf4,0x71, +0x3a,0x3a,0x18,0x81,0x03,0xae,0xc1,0x48,0x03,0x21,0xbb,0x07, +0x8f,0x32,0x06,0xc2,0x6b,0x82,0x53,0xa8,0xca,0x99,0xc2,0xf4, +0x0c,0xcd,0x07,0x85,0x19,0xa8,0xce,0x8a,0x2d,0x17,0x48,0x44, +0x79,0xb0,0x22,0xb8,0x48,0xa2,0x0c,0x9f,0x6c,0xa7,0x54,0x77, +0x6e,0x87,0x3b,0x4d,0x82,0xe0,0x4a,0x5f,0x85,0xa5,0x37,0x9f, +0xe7,0x9e,0x67,0x2b,0x25,0x41,0x3a,0x4d,0x82,0x45,0xcb,0xf0, +0x93,0xbd,0x38,0xcb,0x62,0x28,0x09,0xae,0x15,0xf4,0x96,0x24, +0x85,0x26,0x84,0x24,0x84,0x68,0xeb,0xae,0x35,0xfe,0xa7,0xff, +0x2f,0x3a,0xae,0xfd,0xd3,0xff,0xfd,0x52,0xff,0x55,0xa4,0xfe, +0xbf,0xa3,0xfd,0xbf,0xf3,0xb9,0xc4,0x18,0xb4,0xff,0x43,0x39, +0xb0,0x55,0xea,0xfe,0xed,0x7f,0xba,0x3f,0xc7,0x0e,0x3e,0xd3, +0x7e,0xaf,0xd1,0x59,0xd6,0x5a,0x59,0x5f,0xc7,0x81,0xc7,0x41, +0x82,0x33,0x68,0x33,0x67,0xb0,0x60,0x30,0x89,0xb6,0x90,0xfe, +0x50,0xff,0xf9,0x8e,0xf6,0x7d,0xad,0x1d,0x8e,0x74,0xc7,0xe1, +0x43,0x7d,0x1f,0x91,0x01,0xaa,0x8a,0xef,0xe8,0x40,0x67,0x0f, +0x16,0x91,0x55,0x8c,0x67,0x4c,0x5c,0x99,0x06,0x94,0xc1,0x3c, +0xc1,0x0a,0x23,0x0c,0x60,0x2b,0x95,0xd9,0x43,0x33,0x65,0x17, +0x8b,0x23,0x28,0x6a,0x96,0x75,0xe3,0x32,0x98,0xc4,0xde,0x4c, +0xef,0xce,0x69,0xc8,0x77,0x69,0xe5,0xad,0xbd,0xf5,0x02,0xd6, +0x87,0x72,0xe2,0x3e,0x60,0xd9,0xd3,0xb8,0xcd,0x7c,0x39,0x7e, +0xba,0x5e,0xda,0x3f,0x64,0xf6,0xab,0x4e,0xf8,0xe4,0x1c,0x1c, +0xe2,0xde,0x63,0x1d,0xb3,0x37,0x3b,0xf8,0xb6,0xfa,0x6b,0xa6, +0xf9,0x6a,0x7a,0x83,0xb4,0x39,0x8a,0x61,0x8a,0x4c,0xfc,0x4b, +0x30,0x21,0x51,0x43,0x44,0x62,0xf9,0x1f,0xa8,0x68,0xff,0x0d, +0x15,0x5f,0x85,0xd5,0xdf,0x50,0x91,0x42,0xb5,0xf4,0x14,0xf9, +0x7b,0x30,0xed,0x2b,0xf8,0x7f,0x43,0xa6,0x40,0x82,0x4c,0xff, +0x7f,0x20,0xa3,0xab,0xbb,0xd6,0x64,0xc1,0xdf,0x21,0xfb,0xfa, +0xff,0x86,0xcc,0x08,0x29,0x64,0x6f,0xff,0x7f,0x21,0xf3,0x47, +0xdd,0xff,0x82,0x8c,0xaa,0x72,0x8d,0xf2,0x3c,0x49,0xca,0x4e, +0xc8,0x89,0xcb,0xd5,0x4f,0xe6,0x8f,0xf9,0x1c,0xf1,0x8f,0xa4, +0xa2,0xfa,0xa0,0x38,0x41,0x88,0x14,0x26,0x50,0x8b,0x77,0x8d, +0xac,0xb0,0xc3,0x31,0x1e,0x38,0x2a,0xec,0x9f,0xec,0x98,0xac, +0xf8,0xa9,0x91,0xfb,0x05,0x7f,0x23,0xa0,0x10,0x3e,0x41,0x85, +0x34,0x71,0x7e,0x3f,0x89,0x2a,0x91,0xe0,0x6f,0xe9,0x4b,0xfb, +0x94,0xe9,0x9a,0xe2,0xc1,0xc1,0x03,0x5a,0x46,0x1a,0xf3,0x5a, +0xca,0x1a,0xca,0x6a,0xbd,0xaa,0x3d,0x8b,0xbc,0x2b,0xaa,0x78, +0x9f,0x02,0x97,0x62,0xa7,0x42,0x45,0x49,0x69,0x49,0x56,0xbe, +0x43,0x19,0x1f,0xe4,0xe3,0xe1,0xe9,0xe4,0x69,0x57,0x64,0x97, +0xef,0x96,0xee,0xe9,0xc0,0x97,0x84,0x57,0x05,0x54,0xf9,0x3b, +0x7a,0xd9,0xf9,0x3a,0x04,0x73,0xf8,0xbe,0x4d,0x8a,0x49,0x95, +0x7f,0xc5,0x3f,0xe9,0x93,0x46,0x63,0xe2,0x4e,0xd3,0x67,0xdb, +0x72,0x1c,0xb1,0x0b,0x47,0x5b,0x17,0x58,0xf0,0x7d,0x39,0x3d, +0x45,0x1d,0xe5,0xc9,0xc1,0x94,0x12,0x02,0xf5,0xf4,0x37,0x9a, +0x2c,0x91,0x62,0xf1,0x53,0xfd,0xd3,0xf6,0xde,0xbe,0x44,0xef, +0x2b,0x34,0x16,0x5a,0x5b,0xe6,0x1e,0x98,0x21,0x85,0xe2,0x75, +0xe3,0xcf,0xd7,0x6e,0xdd,0x97,0x28,0x21,0xc0,0x5f,0x0a,0x85, +0xfd,0x4e,0xf5,0x5d,0x12,0x25,0x5c,0x67,0x3e,0xd4,0x77,0xc2, +0x22,0x58,0x64,0x0b,0xe4,0xd0,0xef,0x1a,0x35,0xc5,0x15,0xe5, +0x25,0x95,0x1c,0x10,0xea,0x4c,0x60,0x45,0x3b,0xae,0x80,0x61, +0x86,0xf8,0x86,0x09,0x3e,0x19,0x74,0x3a,0xe8,0x54,0xbc,0x21, +0xff,0x21,0xf9,0xc7,0x8c,0x6f,0x72,0x4f,0x76,0xf0,0x26,0x51, +0x46,0x87,0xf5,0x63,0x38,0x61,0x76,0x0c,0x41,0x55,0x26,0xf8, +0xf8,0xa5,0x6c,0x0d,0x8a,0xb5,0x87,0xd9,0xb7,0x8a,0xba,0x15, +0xbe,0x8d,0xbc,0x95,0xa7,0x9e,0xaf,0x56,0x08,0x07,0xaa,0x86, +0xf8,0x98,0x35,0xcc,0x0a,0xe9,0x93,0x5c,0x66,0x65,0x66,0x6a, +0xbd,0xc6,0xef,0xd2,0x79,0x14,0xaa,0x42,0x86,0xe0,0x4d,0x40, +0xa3,0x8f,0xda,0xa1,0x1e,0x9d,0xc1,0x1b,0x8c,0xcf,0x31,0x9f, +0xe3,0x7e,0xb1,0x57,0x0f,0xf2,0x3f,0x66,0xc3,0xb0,0x8a,0xc7, +0x35,0xc7,0xfa,0x78,0xc7,0x50,0xf3,0x50,0x53,0x2a,0x3e,0x14, +0x01,0xc4,0xed,0x68,0x7c,0xa9,0x06,0xbc,0x61,0x1f,0xde,0xbf, +0xf3,0xb2,0xfd,0x7b,0x9b,0x1a,0xde,0x61,0x9b,0xd9,0x1e,0x7d, +0x6d,0x0e,0xfe,0xa5,0x33,0x58,0xcb,0x1e,0xca,0xf3,0xbf,0xa5, +0xfe,0x96,0xa9,0x49,0x4b,0xaf,0xd6,0x80,0xd3,0xac,0x71,0x86, +0x0c,0x53,0x58,0x51,0xa1,0xbc,0x47,0xd6,0xd8,0x21,0xe3,0x8e, +0x2a,0x43,0x50,0x57,0xc9,0x80,0xf1,0x8a,0x97,0x8d,0xdc,0x2a, +0xdc,0x4a,0x22,0xcb,0x83,0x2b,0x82,0x8b,0xe8,0x48,0x65,0x49, +0x89,0xea,0xc1,0xed,0x71,0xfb,0xbf,0x89,0x4a,0x42,0xdf,0xca, +0x23,0xa4,0xad,0xb4,0x51,0x51,0x53,0xeb,0x50,0xc9,0x2f,0x5f, +0x8e,0x63,0xf6,0xe0,0x34,0x4b,0x8a,0xbe,0xeb,0x34,0x61,0xbb, +0x4b,0x93,0x42,0x12,0x43,0xe2,0x83,0x75,0x75,0xd7,0x99,0x0e, +0xa1,0xef,0xe7,0xba,0xaf,0x3b,0x06,0xfa,0x13,0xfe,0x46,0xdf, +0x96,0x59,0xfb,0x71,0xb8,0x54,0xb4,0xde,0x36,0xfd,0x3a,0x70, +0x7b,0x28,0x61,0x03,0xfe,0x8d,0xbe,0xed,0x52,0xd5,0xfa,0x37, +0xfa,0xe6,0x49,0x19,0xfb,0x41,0x43,0x55,0xf8,0x6e,0x68,0x9a, +0xee,0x2e,0x69,0x9a,0xee,0xac,0x76,0x9c,0x25,0x4d,0xd3,0xdd, +0x25,0x4d,0xd3,0x55,0x33,0x05,0xb5,0x7d,0x2c,0x9a,0x83,0x11, +0xd9,0x60,0x8f,0xc3,0xdd,0x67,0x4a,0xf0,0xfb,0x33,0x13,0xc6, +0x28,0x5e,0x34,0x70,0x9b,0x68,0x3f,0x22,0xca,0x43,0x28,0xe1, +0xd0,0x82,0x91,0xe5,0x9d,0xe5,0x4c,0x09,0x67,0x3f,0xed,0x07, +0x25,0x1c,0xff,0x0a,0xfa,0x54,0xee,0x3f,0x88,0x59,0x1c,0x2d, +0xf5,0xa3,0xb2,0xb6,0xd6,0x71,0xa8,0x1f,0xcc,0x3e,0x94,0x5b, +0x14,0x9a,0xf3,0xfd,0xd9,0xdd,0xf9,0x9d,0x25,0x89,0x94,0x78, +0xe2,0x43,0x0c,0xf4,0x34,0x25,0xe4,0x98,0xf2,0x3f,0xd4,0x7d, +0xd9,0xd6,0x43,0xfb,0x21,0x21,0x47,0x7b,0xeb,0xfc,0xfd,0xb3, +0x2c,0x29,0x72,0x7e,0x6a,0x78,0xd5,0x7f,0xf3,0xc1,0x10,0x72, +0x02,0x68,0x31,0x91,0x90,0xb3,0x5b,0xda,0x74,0xea,0x1a,0xf3, +0xa1,0x4e,0x42,0xce,0x5c,0x07,0xf8,0x4c,0xef,0xbd,0x86,0x72, +0x8d,0xc8,0x92,0x2e,0x8c,0x7f,0x0a,0x8e,0xf0,0x42,0xb4,0xc7, +0x17,0x60,0xa2,0x89,0x3e,0x46,0xe0,0xc4,0xfa,0x1c,0x5c,0x6f, +0x8a,0x4b,0x2d,0xb2,0xa9,0xad,0xd9,0x3b,0xf0,0xc3,0x8d,0x04, +0x69,0xe6,0x70,0xa2,0x34,0x73,0x78,0xd7,0xde,0x9c,0x1e,0x1e, +0x97,0x74,0x6e,0x6c,0xf9,0x7b,0xe6,0xf0,0x53,0x82,0x6f,0xbf, +0x83,0xb7,0x0c,0x4e,0x53,0x59,0x8e,0x6f,0x7f,0x64,0x55,0xff, +0x9a,0x10,0x43,0xf4,0x2b,0x2c,0x07,0x9c,0x9e,0xdd,0x7e,0xd6, +0xf9,0x43,0xfd,0x1b,0xb3,0x42,0xde,0x75,0xbd,0xb5,0xa6,0xfe, +0x0e,0xef,0xe7,0x41,0xbf,0x46,0xc3,0x70,0xa8,0xcc,0xe2,0x4f, +0xf6,0x62,0x75,0xb0,0xec,0xf8,0xfd,0x53,0x8f,0x9e,0xa8,0x55, +0xe9,0x38,0xb0,0x5b,0x2e,0x6c,0x8b,0xdb,0xa9,0x8e,0x13,0x63, +0x2e,0xe9,0x03,0x49,0x48,0xc1,0x89,0x05,0xc8,0x54,0x2f,0x96, +0xef,0xdf,0xa9,0x79,0x70,0xa1,0x51,0x39,0xed,0x4e,0xf7,0x93, +0xeb,0xb7,0xee,0x55,0x6b,0xb6,0x69,0x5f,0x73,0x69,0xf4,0xae, +0x4d,0xbf,0xd4,0x91,0x02,0x5a,0xbc,0x61,0xae,0xec,0x88,0x10, +0x44,0xcc,0x3b,0xf4,0x5a,0x0c,0x2a,0x5d,0xec,0xf9,0x2e,0x97, +0x5e,0xf3,0x56,0x53,0x6e,0xf0,0x12,0x68,0x12,0x11,0xe1,0x85, +0x80,0xac,0x0e,0x1e,0x22,0xe8,0x02,0x93,0xc0,0x85,0xc1,0xdb, +0x2a,0xff,0xbe,0x72,0xa1,0xcf,0x82,0x0b,0xa5,0x57,0x17,0x66, +0x1b,0x5e,0x23,0xdd,0x1d,0x9d,0xcf,0x8a,0x6e,0x9a,0x94,0xf2, +0x41,0x46,0xba,0xeb,0xcc,0xac,0x39,0x48,0x84,0xf9,0xa4,0xc2, +0x4a,0xa1,0x9b,0x67,0xd2,0x51,0xc5,0x07,0xb4,0xda,0xdd,0xf0, +0xa8,0xa3,0x05,0xf7,0x47,0xe5,0x5c,0x72,0xa9,0xf8,0x62,0xc9, +0xc5,0xe2,0x3f,0xe3,0x7f,0x49,0xfc,0x3a,0xc5,0xa3,0x8b,0xc7, +0xed,0x6e,0x18,0x14,0x86,0x4f,0x4f,0x53,0x4f,0xcb,0xe2,0xbb, +0x40,0x5c,0xb9,0x17,0x55,0xd5,0x3b,0x2d,0x65,0x5f,0xc1,0xfc, +0x4c,0xd8,0x06,0x1f,0xd5,0xe0,0x29,0x13,0xeb,0x13,0xeb,0x7b, +0x82,0x1a,0xe1,0x60,0xf1,0x80,0xf0,0xa3,0x70,0x00,0xaf,0x31, +0x97,0xf3,0x2f,0x15,0x5c,0x2a,0xe4,0x04,0xa6,0x8b,0x19,0x3c, +0xfd,0x05,0x81,0x4f,0xcf,0x01,0x77,0xf1,0x63,0xdc,0xe1,0xd5, +0x3c,0x52,0xab,0x38,0x0b,0x53,0xc8,0x23,0xc1,0x67,0x3b,0x6b, +0xa6,0xb2,0x43,0xf4,0x79,0xc8,0xe2,0x38,0x15,0xc1,0x67,0xad, +0xe8,0xc3,0x40,0x2f,0x8e,0x22,0xbf,0xfa,0xfc,0xe8,0xf9,0xc2, +0xae,0xb8,0x85,0x5f,0x53,0xb7,0xb8,0x6c,0x79,0x0e,0x27,0x3a, +0xe0,0x1c,0xf2,0x3e,0xfb,0x8f,0xf2,0xe7,0x0d,0x6e,0x0d,0xbc, +0xa6,0xc3,0x22,0xf7,0x59,0x21,0xb4,0xb1,0xee,0xca,0xa7,0x44, +0x67,0x0b,0xca,0x74,0x31,0xce,0x24,0xdd,0x90,0x87,0x09,0x85, +0xbf,0x14,0x3d,0x28,0xe7,0x1c,0xa1,0xbe,0x8e,0x7d,0xe4,0xfa, +0xde,0x0b,0xd4,0xbc,0xd3,0x69,0xfb,0xaf,0x74,0xe2,0xc4,0x6b, +0xda,0x8f,0xa5,0x49,0xcb,0x33,0x48,0x5f,0x49,0x75,0x65,0x4e, +0x03,0x1d,0xe8,0x5c,0xeb,0x1a,0x97,0x01,0x4f,0x4e,0x74,0xc6, +0xe3,0x44,0x9c,0xa6,0x5c,0x2f,0x4c,0x5b,0xcc,0x16,0x14,0xe6, +0x95,0x64,0x17,0x73,0x75,0x83,0x53,0x4d,0x84,0x3b,0x6c,0x98, +0xbf,0x9f,0x8f,0x8f,0x1f,0x27,0xea,0x52,0xcd,0x78,0x53,0x68, +0x3b,0xc8,0x5a,0xa8,0x1c,0x10,0xdb,0x6e,0xb1,0x28,0x53,0x11, +0xda,0xf6,0x8a,0x6d,0x0c,0x35,0x5f,0x16,0x04,0xa6,0xe6,0x50, +0x62,0x78,0x52,0xe9,0xdc,0xc0,0x6f,0x76,0x9d,0xeb,0x85,0x93, +0x82,0x39,0xa1,0xa9,0x92,0x7c,0x08,0x82,0x51,0xee,0xef,0x5c, +0x4b,0x3a,0xf8,0xf9,0xa5,0x38,0xb6,0x74,0x46,0x0e,0x75,0x41, +0x27,0x94,0xbb,0x48,0xb9,0x71,0xb9,0x76,0xa9,0xd6,0xba,0xe8, +0xb9,0x47,0xe6,0x9d,0x68,0x7a,0x57,0x0f,0x9f,0x96,0x0e,0xed, +0xa8,0xe8,0x85,0xac,0x11,0xce,0x34,0x9b,0x15,0xf6,0x9f,0x1d, +0x15,0xa7,0x5d,0x81,0xcd,0x29,0x30,0x3e,0x2b,0x29,0x20,0xd1, +0x3f,0x31,0xa0,0xab,0x88,0xb7,0xf8,0x43,0xff,0xa3,0xde,0xf7, +0xdc,0xa0,0xd9,0x4f,0x64,0x70,0x2c,0x5c,0x57,0x8e,0x65,0x75, +0x51,0x97,0xa0,0x01,0xa8,0x81,0x01,0x83,0x4f,0x54,0xe8,0xd5, +0x54,0xe9,0xca,0x40,0x5a,0xe9,0x62,0x40,0xdb,0x66,0xc0,0x08, +0x73,0xf0,0x06,0xb9,0x06,0xcd,0x43,0x1b,0x2b,0xae,0x11,0x57, +0xb0,0xf0,0x11,0xfe,0x92,0xbe,0x79,0x6c,0x96,0xbe,0x0e,0xf6, +0x10,0x65,0xa4,0xb3,0xbb,0xf3,0xdb,0xa2,0xbb,0xc6,0x25,0x7c, +0x80,0x8e,0xe1,0x6a,0x33,0x4b,0x0e,0xae,0xc0,0x6a,0x52,0x61, +0xa6,0x38,0x98,0x67,0xd8,0x51,0xc9,0x07,0x74,0xd8,0xdf,0x73, +0x6f,0xe4,0x54,0xbb,0x84,0xb3,0x04,0xf6,0xa5,0xc0,0xba,0x0c, +0x98,0x96,0x77,0xbc,0x8d,0x37,0x8c,0xd1,0x8f,0xd1,0x39,0xce, +0x49,0xab,0x4f,0xdb,0x70,0xd5,0x4f,0x7a,0x98,0xc0,0xba,0x9d, +0x72,0x3d,0xe9,0x72,0x8a,0x03,0x07,0x3d,0x74,0x63,0xbd,0x4f, +0x4b,0x5b,0x91,0x73,0xca,0xfb,0xae,0xa4,0x39,0x35,0xfd,0x9f, +0x4d,0xc5,0x57,0xa3,0x03,0xeb,0x76,0x24,0xae,0x58,0xe3,0x06, +0xfb,0x3e,0xed,0x5d,0xf1,0x77,0x55,0x5e,0x8d,0xbc,0xa6,0xeb, +0x5a,0xff,0x45,0xe1,0x1c,0x0c,0xd7,0xc1,0x70,0x56,0x37,0xcb, +0xef,0xa1,0x3a,0xec,0x15,0x2d,0x89,0xb0,0x74,0x70,0xab,0xb8, +0x94,0x55,0x0e,0x87,0x7a,0x22,0xf6,0xdc,0x17,0x7a,0x18,0xb1, +0x07,0x47,0x13,0xa1,0x67,0x97,0xd8,0xc3,0x58,0xa8,0x08,0x3d, +0x3b,0xe8,0x23,0xce,0x45,0xab,0xff,0x87,0xe8,0xff,0x25,0x3b, +0x4f,0xe6,0xfe,0x68,0x0a,0x27,0x4f,0xc1,0x4b,0x0e,0xfc,0x3b, +0xd0,0x1f,0x46,0x6b,0xe1,0x68,0xf1,0x5f,0x26,0xc2,0xbf,0x98, +0x8b,0xf8,0xa6,0x1d,0xb3,0x60,0xdc,0x1c,0x85,0x53,0x7b,0x7c, +0xdc,0xb5,0x3c,0xf0,0xe4,0x8d,0xf2,0x64,0x97,0x85,0x2a,0xe2, +0x94,0x67,0x50,0x64,0x99,0xe2,0x67,0xc7,0xb7,0x85,0x77,0xf9, +0x56,0xfa,0x73,0x83,0xe9,0xb8,0x9a,0x08,0x0e,0xad,0xa2,0x03, +0x23,0x5c,0xc2,0x85,0xa4,0x55,0x6c,0x37,0x67,0x85,0x2b,0x66, +0x84,0x02,0xe9,0x77,0xc1,0x99,0xd1,0x83,0x7e,0xa2,0x8f,0x1f, +0x7a,0x59,0xf8,0x30,0xef,0xbf,0x17,0xda,0xf8,0x61,0x80,0x9d, +0x8d,0x67,0xc9,0xd3,0x9c,0x07,0x45,0x03,0x15,0xee,0x75,0xbc, +0xbe,0xc7,0x3e,0xdf,0x8d,0xb4,0xb1,0x6c,0x05,0xb9,0x13,0xf2, +0xa5,0xd7,0x2d,0xb7,0xa2,0x06,0xfe,0x60,0xb9,0x66,0xd1,0xbe, +0x0c,0xda,0xd4,0x11,0xe7,0xc8,0xb2,0xcf,0xf5,0x21,0xf0,0x04, +0x0c,0x70,0x10,0xda,0x85,0xa1,0xb0,0x4b,0x1b,0x77,0x89,0xa2, +0x91,0x20,0x32,0x97,0xf0,0x56,0x0f,0x5e,0x00,0xd9,0x8a,0x6a, +0xc7,0x96,0xd4,0xb8,0xfe,0x7c,0x70,0xe7,0x8d,0xf2,0x65,0x19, +0x42,0x04,0x71,0xab,0x34,0xad,0xb5,0x2a,0x70,0x76,0xe4,0x1b, +0xfd,0x3a,0x6d,0x4b,0x5d,0xb8,0xc1,0x64,0x90,0x11,0x13,0xc1, +0xb6,0x83,0x15,0x6d,0x31,0x89,0x88,0xdb,0x04,0x3b,0x61,0x1b, +0x2b,0xce,0xc3,0xf1,0xe4,0x4b,0x78,0xbb,0x99,0xc5,0xb7,0xf8, +0xd9,0x7f,0xae,0x08,0x79,0x0e,0x6f,0x37,0xb0,0xd3,0x71,0x04, +0xb9,0xe3,0xfd,0xd8,0xe6,0x86,0x4d,0x55,0x33,0xaf,0x55,0xaf, +0xd9,0xb4,0xbf,0x90,0x13,0xc7,0xe3,0x3a,0xf2,0xbc,0xe4,0x51, +0xd5,0x8d,0x16,0x9b,0x7a,0x5e,0xdf,0xee,0x80,0xeb,0x06,0x6f, +0x8a,0xe6,0xc8,0x14,0xb2,0xdf,0x32,0xb9,0xc2,0x4b,0x03,0xa6, +0xfc,0x4a,0xb5,0xe6,0xe2,0x7e,0x58,0xce,0xb5,0xa0,0x2b,0xd8, +0xb0,0x8f,0x93,0x1f,0xa7,0x7e,0x9e,0xe5,0xd9,0xce,0xe3,0x5c, +0x27,0xdc,0xe4,0x83,0x2b,0x8f,0x24,0x1b,0xf0,0x37,0x2e,0xde, +0x8f,0x7b,0x90,0xc8,0xa1,0x11,0xfa,0xe8,0x09,0x9a,0x14,0xbb, +0x6a,0x38,0x06,0xc7,0x21,0xb7,0x9e,0x8b,0x29,0x89,0xad,0x6e, +0x53,0x7b,0xae,0xb5,0x89,0x45,0xde,0xe2,0xe0,0x96,0x83,0xea, +0x15,0x06,0x77,0xae,0x37,0xf6,0x5d,0x7a,0x27,0xed,0xbb,0x22, +0xbb,0xd0,0xb9,0x59,0x9a,0xa3,0xe4,0xc9,0x5c,0xb9,0x26,0x1b, +0x14,0x95,0x45,0x12,0xeb,0x75,0x50,0xd6,0xd3,0x93,0x58,0xef, +0x00,0xe5,0xba,0x03,0x0c,0xde,0x51,0xa1,0x57,0x93,0xa5,0xab, +0x03,0x12,0xeb,0x1d,0xc0,0x99,0x78,0x80,0x81,0x09,0x38,0x92, +0xe4,0x3a,0xe7,0x59,0x65,0xd8,0xb5,0x2b,0xf8,0xb0,0x6a,0xaf, +0xb6,0xa0,0x72,0x0e,0xcf,0x60,0x18,0x69,0xef,0x68,0x7b,0x5e, +0x70,0xd3,0xa4,0x98,0x0f,0x36,0x32,0x5a,0x6b,0x69,0xcd,0xa9, +0x36,0x29,0x4f,0x11,0xe8,0xde,0x83,0xc7,0xf1,0x80,0x32,0x97, +0xbe,0xfd,0xfc,0x3d,0xb8,0xd5,0xf6,0xaf,0xe9,0x0c,0xfc,0x85, +0x63,0xc8,0x3d,0x38,0xb0,0x87,0xc5,0x18,0x0b,0xb2,0x06,0x0f, +0x7c,0xcb,0x0a,0xeb,0x27,0xfd,0xfd,0xb8,0x7d,0x0d,0xcd,0xbd, +0x6f,0x69,0xc2,0x0d,0xae,0x42,0x23,0x22,0x4e,0xa6,0x0c,0x32, +0x99,0xd5,0x42,0x19,0x11,0x5b,0x6f,0x09,0xad,0x0c,0xee,0x52, +0xf9,0xfb,0x42,0x6c,0xa5,0xcd,0x10,0x5a,0xf7,0x88,0xf4,0xb9, +0x85,0x68,0xf8,0xff,0x80,0x58,0x41,0xda,0x02,0xec,0xae,0x30, +0xaa,0x43,0x1c,0x75,0x4b,0xeb,0x00,0x0a,0x26,0x20,0x50,0x02, +0x5e,0x84,0xab,0xc8,0x03,0x61,0xd8,0xae,0xfe,0x07,0xe0,0xd9, +0x89,0x9e,0xb7,0x75,0xf7,0x8b,0xc3,0xe8,0x3f,0x68,0x69,0x0c, +0x96,0xbb,0x58,0xe1,0x5b,0x71,0x0b,0x11,0xe6,0x0f,0x6e,0x16, +0xe7,0xb3,0xc2,0xff,0x40,0x0d,0x11,0xbb,0xee,0x08,0x5d,0x8c, +0xd8,0x85,0x2c,0x11,0xba,0xf6,0x88,0x5d,0x52,0xfa,0x74,0xed, +0xa4,0x8f,0x38,0xef,0xff,0x89,0xbc,0x84,0xcf,0x95,0xf3,0x48, +0x8e,0x65,0x81,0x5d,0xa9,0xeb,0x5e,0x9f,0x2d,0xc1,0xab,0xa4, +0x39,0x3e,0x6f,0xd2,0xbe,0xc9,0xfd,0xa2,0xbc,0xdd,0xb6,0xdf, +0xeb,0x4e,0x54,0x5d,0x4c,0x56,0xd2,0xa5,0xea,0x44,0x18,0xce, +0x9b,0x65,0x1e,0xc1,0x71,0xc6,0x89,0x16,0x59,0xb6,0xa5,0xf2, +0xae,0xe2,0x56,0x45,0x43,0xbd,0xb3,0x82,0xb7,0xb6,0x35,0x73, +0xd5,0xf7,0xf6,0x29,0xf6,0xaf,0x08,0xaa,0x87,0xfb,0x25,0xfc, +0x89,0x36,0xfc,0xd6,0x23,0x4a,0x11,0x5d,0x7b,0xb4,0x51,0x6e, +0x78,0x2c,0xc1,0x36,0xd1,0x21,0xc5,0x59,0x8e,0x0b,0xa3,0xe2, +0x4c,0x65,0xc2,0x0e,0x5a,0x99,0xec,0x53,0x74,0xd2,0xcd,0xe3, +0x03,0xad,0xf9,0xd6,0x23,0xb7,0xc2,0x15,0x51,0xdc,0xa0,0x67, +0xaf,0x34,0xf0,0x25,0x82,0xb4,0xf3,0x2c,0x1d,0xf8,0xf5,0x74, +0xb8,0xd7,0x33,0x78,0x57,0xe5,0x9f,0x2b,0x21,0x03,0x6d,0x88, +0x79,0xba,0x76,0x8a,0x7e,0x42,0xa0,0x05,0x7f,0x2d,0x66,0x20, +0xa2,0x39,0x9c,0xfb,0x19,0x9f,0x13,0xdd,0x34,0xe3,0x02,0xcb, +0xea,0xfe,0xea,0xce,0xa6,0x06,0x9a,0x14,0xbc,0x8d,0xa9,0xa9, +0x8d,0x9e,0xb3,0x57,0xb9,0x6f,0x4d,0x60,0x33,0x7c,0x53,0xce, +0x1f,0xef,0xc0,0xb7,0x6e,0xd1,0x15,0x87,0xab,0x62,0xea,0xe4, +0x86,0x31,0xf1,0x0e,0x09,0xce,0xc9,0xae,0x72,0x9c,0x1d,0x15, +0x67,0x04,0x2b,0x53,0xf3,0x8c,0x8a,0x2d,0x2a,0xec,0xe5,0xeb, +0x6d,0x16,0xb9,0xe3,0xb0,0xa0,0x74,0x6a,0xc9,0x99,0xdc,0x0f, +0x95,0x3f,0xb6,0x77,0x99,0xdd,0x72,0x79,0x18,0x52,0x7b,0x24, +0x2b,0xed,0x62,0x65,0x32,0x4c,0xe0,0xcd,0xb3,0x64,0x34,0xd7, +0x12,0x08,0xac,0xa7,0x7e,0x7b,0x3d,0x03,0x63,0x70,0x38,0x29, +0xb4,0x2d,0x32,0xcc,0xb4,0x68,0xaf,0xe0,0x43,0x9a,0xdc,0xfb, +0xfc,0x6a,0x38,0x3c,0x4c,0x81,0xd7,0xda,0xd1,0xfc,0x3c,0xff, +0x96,0x49,0x11,0x1f,0x62,0x68,0xba,0xd6,0xda,0x86,0x53,0x85, +0x89,0x4a,0x4d,0x62,0xa5,0x8c,0x6a,0xc2,0xdf,0xbb,0x84,0x25, +0x4d,0xe2,0x92,0x3e,0x1d,0x3d,0x71,0xaa,0x95,0x30,0xd5,0x88, +0x45,0xe5,0x0a,0x82,0xb3,0x95,0x25,0x30,0x9b,0x15,0x5b,0x6d, +0x89,0x1e,0xee,0xeb,0x63,0x85,0x4d,0x7a,0x04,0x75,0xfa,0x40, +0x87,0xe9,0xd1,0x23,0x7d,0x60,0xa2,0xc7,0x5e,0x5e,0x45,0x06, +0x77,0xe0,0x5b,0xe5,0x0e,0x46,0x1b,0xce,0x10,0x71,0xa0,0x4b, +0x18,0x60,0xc4,0x81,0x05,0x44,0x18,0x30,0x14,0x07,0x18,0x1b, +0x15,0x61,0x40,0x9f,0x3e,0xe2,0x1c,0xa9,0x26,0x4c,0xc9,0x1a, +0x1a,0x6b,0xf7,0x7a,0x5e,0xd3,0x6d,0x9e,0x37,0x4e,0xa6,0x63, +0xdd,0xac,0x18,0x1a,0x6b,0x8f,0xdf,0xdc,0x8a,0xe8,0x58,0x17, +0xd3,0xb1,0x9e,0x99,0xcd,0xa9,0xf6,0x08,0xa3,0x49,0x4d,0x42, +0x55,0x92,0x82,0xa6,0xeb,0xaf,0xca,0xf9,0xf0,0x9a,0x2d,0x3b, +0x5a,0x11,0x53,0x19,0x93,0xde,0xc4,0xe3,0xd8,0xe2,0x99,0x95, +0x5b,0x1a,0x15,0x69,0xc5,0x05,0x29,0xa9,0x71,0x71,0x97,0xce, +0x5e,0x39,0x01,0x53,0x97,0xf0,0xa5,0x35,0x38,0xee,0xdb,0xe8, +0xf8,0xa3,0xe7,0x8e,0x1e,0x96,0x1f,0x3d,0x7c,0xe2,0xa2,0x2c, +0x2d,0xef,0x72,0x6e,0xa5,0xda,0x15,0xe3,0x70,0xd6,0xda,0xd3, +0x7e,0xa7,0xab,0x7a,0x9e,0x87,0x6c,0x7b,0x93,0x75,0xf7,0x75, +0xb5,0x02,0x61,0x65,0x8b,0xb8,0xb2,0x4f,0x4f,0x4f,0x9c,0x69, +0x21,0xcc,0xf4,0x65,0xb5,0x6d,0x8d,0x76,0x59,0xa9,0xe7,0x15, +0x6f,0xef,0x8e,0x4a,0x38,0x7a,0x81,0xbe,0x3d,0xe6,0x68,0xec, +0x05,0xd9,0xd5,0x9c,0x4b,0xd9,0x0a,0xb5,0x2b,0x46,0x61,0xac, +0xbe,0xa3,0xf5,0x7c,0x53,0xf5,0x42,0xbb,0x07,0x55,0x15,0x65, +0x39,0xc5,0xf2,0x4b,0x71,0x97,0xcf,0x5d,0x39,0xf1,0xdd,0x21, +0x7e,0x8b,0xc5,0x0c,0x47,0x1c,0xeb,0xcd,0x09,0x9a,0x40,0x63, +0xb2,0xa0,0x0f,0x16,0xc4,0xb1,0xf1,0x07,0x1f,0xea,0x01,0x6b, +0x49,0xe5,0x02,0x03,0x2a,0x2d,0x0f,0x7b,0xe2,0x6f,0x71,0xd2, +0xce,0xc6,0xe4,0x86,0x50,0x71,0x88,0xb5,0x52,0x39,0x24,0x56, +0xdc,0x60,0x71,0xb8,0x8a,0x50,0xb1,0x57,0xac,0x60,0x70,0x25, +0xea,0x11,0xe0,0x33,0x61,0xb8,0xe2,0x49,0xa5,0x17,0x55,0x15, +0xae,0x0b,0xbc,0x90,0x97,0x62,0x52,0x45,0x7e,0x0f,0x02,0xce, +0xfd,0x37,0xb7,0xbc,0x76,0x7e,0x41,0x09,0x8e,0x2d,0x99,0x99, +0x4b,0xe9,0xae,0x19,0x6e,0x92,0xba,0xb0,0xa6,0xf0,0xe6,0xe8, +0x9c,0x46,0x1e,0xf9,0xca,0xf5,0xd5,0xda,0x6d,0x1c,0xa4,0x36, +0x62,0x5d,0x1f,0x18,0x34,0xa0,0x41,0x07,0xe8,0x34,0xa0,0x4e, +0x17,0xb8,0xae,0xee,0x01,0xb9,0xb8,0xf8,0x96,0xce,0x01,0x71, +0x2a,0xca,0x7b,0xbe,0x03,0x0b,0x23,0xdc,0x61,0x03,0x3b,0x4c, +0x70,0xb7,0x0d,0xec,0xd6,0xc3,0x22,0x6b,0x88,0x67,0x74,0x4c, +0x37,0x3a,0x21,0x71,0xce,0xb5,0xe6,0x1b,0x92,0x1b,0x52,0x6b, +0xd2,0x39,0xcc,0x85,0xad,0xec,0x66,0xaf,0x05,0x7e,0x38,0x39, +0x2c,0xcb,0x64,0x68,0xbe,0xc9,0xf0,0xd2,0x2f,0xcb,0xbc,0xea, +0x79,0xb8,0xca,0x04,0x5b,0x7e,0x08,0x85,0x51,0xde,0xef,0x3c, +0xe5,0x79,0x1d,0x0b,0x0b,0x71,0x74,0xfe,0xcc,0x4c,0x39,0xec, +0x61,0xd0,0x52,0xb9,0x8f,0x18,0x61,0x50,0x17,0x0b,0x41,0x0b, +0x88,0x09,0x06,0x75,0xd0,0x8b,0x45,0x14,0x29,0x41,0x7d,0x2c, +0x1c,0x99,0x4d,0xb2,0x82,0xf3,0x82,0x8b,0xa8,0x0d,0x9e,0xc2, +0x14,0x65,0xe4,0x66,0x65,0x65,0x71,0x38,0x09,0x57,0x90,0x0e, +0xe1,0xac,0x09,0x6b,0xa7,0x62,0x24,0x9e,0xed,0x62,0x85,0xb3, +0x8b,0x88,0x81,0x78,0xb6,0x87,0x0a,0xda,0xe9,0xe0,0x42,0x60, +0x7a,0x5b,0xab,0x34,0x9d,0x6f,0xeb,0x77,0xe0,0xd1,0x8a,0x1e, +0x4f,0xd9,0xee,0xc4,0x9e,0x94,0x96,0x0c,0xef,0x06,0x7e,0x97, +0xef,0xcc,0x80,0x4d,0x31,0xc9,0x96,0x7c,0xfa,0xf9,0xcc,0x0b, +0x59,0x17,0xb9,0xdd,0x38,0xf2,0x1d,0x9b,0x1f,0x97,0x7b,0x25, +0xfb,0x8a,0x6f,0x3d,0xbf,0xdb,0x77,0x61,0xf8,0xda,0xa3,0x89, +0x96,0x7c,0xdd,0xa5,0xf6,0xb8,0xd6,0x44,0x6e,0x25,0xee,0x30, +0x87,0x1d,0xab,0x71,0x9d,0x25,0xac,0x5b,0x89,0xfb,0xcc,0x61, +0xdf,0x12,0x5c,0x67,0x05,0x33,0x59,0xff,0x1d,0x7b,0x35,0x17, +0x1d,0x28,0x35,0xe7,0x81,0x7d,0xde,0xf2,0xec,0xca,0x5d,0x2e, +0x0e,0x93,0xba,0xa0,0x19,0x46,0x62,0x73,0x17,0x24,0xc5,0x31, +0x09,0x3b,0x7a,0x76,0xc0,0x27,0x1b,0x0b,0x3b,0xf8,0x25,0x03, +0x9b,0x1f,0xf9,0x7c,0xc1,0x0d,0x6e,0x14,0x5e,0x93,0x41,0x0e, +0x02,0x94,0x1c,0xd5,0x47,0x54,0xed,0x30,0x30,0x05,0x18,0x46, +0xd8,0x8d,0x72,0xb2,0x1a,0x47,0x7e,0x27,0xed,0x20,0xab,0x2f, +0x3d,0x3b,0x75,0xe8,0xd9,0x4d,0x64,0x25,0x8e,0xfc,0x9e,0x05, +0xc5,0x4a,0x82,0xa3,0xbf,0x87,0xd1,0xcc,0xa0,0x03,0x0e,0x23, +0x20,0x09,0x35,0x7a,0x7b,0x1f,0x8c,0x21,0x30,0x72,0x89,0x74, +0xc0,0xe3,0x86,0x49,0x3f,0xc3,0xe8,0x25,0xec,0x60,0x06,0xfe, +0x44,0x6a,0xba,0xab,0xbe,0xcd,0xbc,0x67,0x9a,0xcf,0x87,0x6b, +0xd9,0xaf,0x72,0xb1,0xe2,0xc0,0x88,0x4a,0xeb,0x54,0x87,0x14, +0xcb,0x24,0xab,0xf6,0x12,0xfe,0x70,0x5d,0x68,0x47,0xa4,0x82, +0x93,0x0e,0xda,0xa0,0xd4,0x3e,0xa6,0xe7,0x29,0x6c,0xda,0xd2, +0xf3,0x04,0x76,0x6b,0xf6,0x0a,0x63,0x30,0xea,0x0e,0xa4,0x76, +0x6c,0x61,0x0b,0xeb,0x9c,0xb2,0x2c,0x33,0x1c,0x92,0xe5,0x5e, +0x36,0xb5,0xd1,0x8d,0x61,0x8a,0x10,0x39,0xee,0x7f,0xad,0xbf, +0x18,0x13,0x4c,0x20,0x61,0x1f,0x23,0x56,0xc1,0x21,0xa9,0x0f, +0xe7,0x68,0x1f,0x0c,0xa5,0x3e,0x4c,0xa3,0x8a,0x6d,0x1a,0x03, +0xef,0x70,0x1f,0xd9,0x86,0x9b,0xbe,0x60,0x21,0x60,0x1b,0xf9, +0x02,0x76,0xd3,0xd2,0xfc,0xe5,0x3e,0xe9,0xee,0x54,0xe9,0xee, +0x7e,0x2a,0x83,0x61,0x13,0xbd,0xcf,0x40,0xc0,0xa4,0xa1,0xbb, +0x83,0xf6,0x17,0x09,0x4c,0xc3,0xf9,0x38,0x8d,0x51,0x1e,0xf0, +0x20,0xf7,0x74,0xf7,0x88,0x4b,0x8d,0x85,0xa5,0xb8,0x0a,0x37, +0xb0,0x19,0x86,0x32,0x98,0xce,0x34,0x66,0x66,0x36,0x68,0xc0, +0x42,0xe0,0x3a,0xd9,0x41,0xcb,0xad,0xa4,0xc0,0xac,0x40,0x2b, +0xdd,0xa0,0xa3,0x94,0x0f,0xed,0xf2,0xbc,0xed,0xd7,0xc4,0xa1, +0x23,0x1e,0x25,0xf5,0xdd,0xb5,0xdf,0x66,0xdf,0x35,0x2d,0xe0, +0x43,0xb5,0x6d,0x57,0x3b,0x58,0x72,0xc2,0x72,0x20,0xa4,0xc5, +0xb7,0xd9,0xbd,0xce,0xad,0xa2,0x8e,0xb7,0xad,0x30,0x2f,0xb5, +0xce,0xa3,0xbc,0x44,0x94,0x13,0x48,0x4a,0x74,0x5a,0x68,0x62, +0x38,0x87,0x63,0x6c,0xc1,0xcc,0x12,0x77,0xd8,0xc1,0x0e,0xc3, +0xde,0x6e,0xd8,0x56,0x87,0xdb,0x9a,0xc1,0xa0,0x1e,0x55,0x98, +0xab,0xa9,0x49,0xe9,0x09,0x69,0x56,0x29,0x3c,0x8c,0xaf,0x47, +0x93,0x66,0xd8,0x5c,0x8f,0x9b,0x1b,0xf5,0xad,0x71,0x83,0x2d, +0x6c,0xb0,0x44,0x3b,0x5b,0x18,0xcf,0xc0,0x6f,0xc6,0xa4,0x28, +0xaa,0x30,0xb2,0x30,0x22,0xc8,0xc9,0xcd,0xcd,0xd0,0x59,0x61, +0xc7,0xf7,0x56,0x57,0xd5,0xe4,0xd5,0x97,0x84,0x14,0x07,0x15, +0x05,0x16,0xd7,0xf0,0x1e,0xf9,0xee,0xb9,0xae,0xd9,0x57,0x2b, +0x2f,0xd7,0x9d,0x6b,0xe6,0xa4,0x8d,0x44,0x55,0x12,0x16,0x74, +0xe8,0x14,0xbb,0x36,0x5c,0x48,0x6a,0x2a,0xfa,0xc0,0xdb,0xe6, +0x78,0xe3,0x48,0x99,0x63,0xcf,0xe1,0xfb,0xb0,0x56,0x0d,0x17, +0xbf,0x30,0x5a,0x8b,0xc3,0x2d,0xa5,0x83,0x73,0x9d,0x4e,0x7a, +0x1c,0xf3,0xf1,0xbf,0xea,0x97,0xec,0x9f,0xc8,0x89,0x2a,0x26, +0xa4,0x21,0xf5,0x70,0x5a,0x78,0x46,0xe4,0x55,0x39,0x2d,0xc9, +0x47,0x83,0x0e,0x07,0x07,0x05,0x72,0xc2,0x55,0x74,0x22,0x83, +0xdb,0xf0,0x47,0x30,0x67,0x36,0x7b,0x2e,0xf0,0x45,0x12,0x22, +0xe5,0x96,0x5a,0x06,0x0c,0x2b,0xff,0xb2,0xc2,0xab,0x4e,0xca, +0xad,0x20,0xab,0xdf,0x83,0x81,0xf3,0x7c,0xe7,0x21,0xcf,0xef, +0x58,0x54,0x88,0x5c,0xe1,0xec,0x6c,0x39,0x38,0x51,0x36,0x8d, +0x25,0x62,0x7f,0x9b,0xd0,0xcf,0x88,0xfd,0x38,0x8f,0x74,0x0a, +0xfd,0xc6,0xac,0x8d,0x8a,0xa1,0xd8,0xdf,0xcd,0xaa,0x0a,0xb9, +0xc2,0x6f,0x24,0x37,0x2b,0x27,0x27,0x33,0x37,0xcf,0xb4,0xd4, +0xba,0xce,0xde,0xcc,0xf5,0xa0,0xd7,0x06,0xef,0x7c,0x73,0xfe, +0x45,0xc9,0xbd,0x8a,0x9e,0xda,0x6e,0x9b,0xbb,0x8e,0xdf,0xb8, +0x52,0xf2,0xd0,0x2c,0xd5,0x2a,0x33,0xaf,0xec,0x6a,0x53,0xf4, +0x67,0xdd,0xe3,0x6e,0xb7,0x60,0x07,0x73,0x35,0x2f,0x31,0x2f, +0x2e,0xc7,0x3c,0x91,0xf7,0xdb,0x6a,0xbe,0x6b,0x9f,0x11,0x27, +0x6e,0xc1,0x7c,0xf2,0xa4,0xa2,0xad,0xa1,0xa0,0x87,0x03,0x53, +0xe6,0x4c,0xf4,0x99,0xe8,0x93,0x51,0x5c,0xd4,0xc9,0xd8,0x93, +0x3e,0x53,0x66,0x32,0x49,0x76,0xb2,0x3f,0x98,0xee,0xb4,0x64, +0x45,0xbc,0xc6,0xe5,0x9c,0x0b,0x95,0xa5,0x6a,0x78,0x9c,0xb9, +0x98,0x74,0x3e,0x59,0x9a,0xa1,0x7f,0xa9,0x16,0x0f,0x36,0x0c, +0x6d,0xc7,0x52,0x0f,0x3b,0x6b,0x71,0x67,0xbd,0x81,0x2d,0x6e, +0xb3,0x87,0x6d,0xb6,0x68,0x67,0x07,0x76,0x36,0x68,0x60,0x0f, +0x9f,0x32,0xc7,0x76,0xdb,0x18,0xcc,0xb7,0xe5,0x94,0x07,0x61, +0x29,0xb1,0xa9,0xf5,0x6c,0x0e,0xe8,0xa6,0xe8,0x66,0x82,0xf5, +0xbd,0x2d,0x6d,0x1c,0xb9,0x3f,0x69,0xe6,0x0c,0x6a,0xe2,0xf7, +0xf4,0xf7,0x52,0xe2,0xf1,0xc1,0x89,0xa1,0x99,0xa6,0x94,0x78, +0xd2,0x60,0x78,0xc5,0x93,0x72,0x6f,0x1a,0x9c,0x64,0x26,0xc4, +0xea,0x43,0x08,0x8c,0xf2,0x94,0x88,0xa7,0x7d,0x51,0x01,0x72, +0x45,0xb3,0xb3,0xe4,0xe0,0x40,0x83,0x43,0x2d,0x53,0x77,0xbb, +0xd0,0xcd,0x88,0xdd,0x43,0xc1,0xe9,0x36,0x66,0x6d,0x55,0x0c, +0xc4,0x6e,0x4a,0x24,0x8f,0x84,0x7d,0xe4,0xe7,0xe6,0xb6,0xf6, +0x94,0xaf,0xb9,0x17,0x4b,0x98,0x75,0x31,0x09,0x96,0x3f,0x24, +0xbc,0x48,0xfa,0x32,0x43,0x7e,0xa2,0xde,0xe9,0xb8,0xc3,0x71, +0xbb,0x13,0xf2,0x6f,0x3f,0x36,0xe1,0xb6,0x3b,0xb0,0xba,0x01, +0x57,0xdf,0x36,0xd8,0xbf,0x9c,0x8d,0x4b,0xbd,0x94,0x76,0x29, +0xd5,0x22,0x85,0x8f,0xb2,0x08,0xb4,0x72,0xb0,0x6f,0xf0,0xe1, +0xd3,0xd2,0xaf,0xa6,0x27,0x66,0x70,0x20,0xdb,0x87,0x56,0x56, +0x30,0x99,0x89,0xd6,0xb5,0xb3,0xdf,0xe8,0xc4,0x29,0xcd,0x81, +0x66,0xc0,0xce,0x06,0xdc,0x49,0xdf,0xb7,0x92,0xf9,0xcf,0xfb, +0xa2,0xe9,0xfb,0xec,0xed,0xeb,0xbc,0xa5,0xf7,0x65,0x24,0xd1, +0xf7,0xa9,0xec,0x43,0x6d,0x2b,0x18,0xce,0x1c,0x35,0x74,0x75, +0x59,0xef,0x51,0x68,0xc3,0xbf,0xa9,0x6e,0x68,0x4b,0xfa,0x92, +0xbb,0xbf,0x85,0xb1,0xcd,0x0f,0x6f,0x54,0x7f,0xce,0x14,0xa7, +0x26,0x95,0x6a,0xd4,0xb3,0x66,0xc9,0x32,0xc3,0x3d,0x6c,0xe8, +0xb1,0x0b,0xd9,0x1a,0x77,0x60,0x69,0x13,0x9a,0xb1,0xdf,0x88, +0x6f,0x89,0xf0,0xe9,0xe0,0x46,0xf1,0x53,0x56,0x18,0x84,0x1c, +0x22,0x76,0x0e,0x08,0x9d,0x8c,0xd8,0x49,0x69,0x44,0xe8,0xd4, +0x12,0x3b,0x19,0x4b,0x15,0xa1,0xf3,0x00,0x7d,0xa4,0x79,0xa8, +0x43,0x24,0x28,0x0d,0x2f,0x7b,0x52,0xe6,0x4e,0xcb,0x87,0xe7, +0x3c,0x5f,0x9c,0x1c,0x4a,0xcb,0x47,0x11,0x91,0x82,0xe6,0xf5, +0xce,0x93,0xd2,0xd8,0xfc,0x42,0x1c,0x5b,0x34,0x23,0x93,0x53, +0xbd,0x27,0x2c,0x20,0xf7,0xab,0xbb,0x6a,0xab,0x5b,0x0b,0xfd, +0xf3,0xfd,0xf2,0xfd,0xca,0xaa,0x79,0xdf,0x02,0x9f,0x02,0xef, +0xbc,0xdc,0x9a,0xb4,0xc6,0xf8,0x76,0xae,0xa1,0x05,0x47,0x49, +0xeb,0xa0,0xa6,0x58,0x80,0x33,0x73,0xdc,0x39,0xda,0x2d,0xcc, +0xd3,0xad,0xd0,0x25,0xdf,0x39,0xcf,0xdd,0x89,0xaf,0xf6,0xab, +0xf4,0x51,0x78,0xbb,0xd8,0x98,0x3a,0xec,0x76,0xe1,0x84,0x8b, +0x5d,0x24,0xf0,0x4c,0xc0,0xe9,0x80,0x33,0x1c,0xcc,0x30,0xc3, +0xd9,0x6c,0xe0,0xe9,0xc0,0x33,0x81,0x67,0xe2,0x2c,0x79,0xd0, +0xb8,0x02,0x33,0x92,0x60,0x78,0x72,0x6c,0x3d,0x6f,0x19,0x6b, +0x1a,0x6b,0x7c,0x92,0xfb,0x1c,0xd8,0x7a,0x64,0x7b,0x41,0x9d, +0x4d,0xc5,0x09,0xd5,0x9a,0x8f,0xec,0xaa,0x83,0x14,0xe7,0xae, +0xd4,0xa6,0xff,0xc2,0x5b,0x65,0x87,0xcf,0x39,0x58,0xe9,0x76, +0x2b,0x12,0x46,0xc8,0x61,0x7d,0x13,0x6a,0x32,0xa7,0xca,0xcf, +0x54,0xd5,0xa9,0x19,0x31,0xf6,0xe7,0x9c,0x2e,0xb8,0xaa,0xe3, +0x9f,0x56,0xb0,0x99,0x11,0x3e,0xfb,0x8a,0x04,0x14,0x7a,0x16, +0xb8,0xe7,0xb8,0xf8,0xf0,0xa5,0x01,0xc5,0xde,0xb9,0xd4,0x0e, +0xbb,0x7d,0x47,0xac,0x20,0xb5,0x89,0x85,0x65,0x83,0x74,0x38, +0xfe,0x1a,0x5c,0x89,0x7f,0xb1,0xc2,0x9f,0x10,0x47,0xc4,0xc6, +0x3e,0xa1,0x91,0x11,0x1b,0xe7,0x10,0xa1,0x51,0x57,0x6c,0x94, +0xd4,0x47,0xa3,0x36,0x7d,0xa4,0xbe,0xfb,0xd0,0xdf,0xea,0xa3, +0x9c,0xaa,0x8f,0x3a,0x49,0x7d,0xf8,0xfc,0x6f,0xf5,0xe1,0x49, +0xd5,0x47,0xfb,0x90,0xfa,0x28,0x91,0xd4,0xc7,0x5f,0xbc,0x72, +0x18,0x69,0x19,0x34,0x67,0xbd,0x8f,0x5c,0xca,0xd3,0x28,0x55, +0x66,0xb4,0x88,0x8b,0xae,0x6b,0x69,0x89,0xec,0x5a,0x56,0xb7, +0x38,0xaa,0x59,0xdd,0xd9,0x8e,0xe0,0x4c,0x65,0x24,0x2d,0x27, +0x83,0xdb,0x16,0x92,0x0e,0xa5,0x8a,0x09,0x8b,0xee,0x54,0x2b, +0xc5,0x50,0x28,0xc7,0x30,0xf0,0x78,0x27,0x09,0x60,0x22,0x4f, +0x5d,0x48,0xd6,0x10,0xa6,0x62,0x08,0x4e,0x65,0x71,0x41,0xf4, +0x36,0x47,0x1d,0xf5,0x50,0xca,0x37,0x61,0xd9,0x8e,0x01,0x7c, +0x56,0x40,0xae,0x5b,0x9a,0x5b,0x51,0x06,0x5f,0xeb,0x26,0xeb, +0x79,0x9a,0xf4,0x1b,0xcc,0x53,0x7b,0x03,0x9f,0xe1,0x7b,0xd6, +0x26,0x3d,0xaa,0x51,0xbd,0x88,0x29,0xbf,0x9a,0x54,0xa1,0xf1, +0x3b,0x6b,0x45,0x45,0xdd,0xe7,0x50,0x4e,0x70,0x0a,0x8b,0x53, +0x23,0x35,0xad,0x37,0xa8,0xd7,0xdb,0x17,0x75,0x64,0xf4,0x25, +0xde,0x95,0x53,0x67,0x31,0x6e,0x29,0x93,0x64,0x23,0x7b,0xca, +0x54,0x5d,0x4d,0x2b,0xd7,0x10,0x96,0xb1,0x70,0x6c,0x11,0x41, +0xf5,0x1e,0x50,0x67,0xb0,0x6e,0x2d,0xc1,0x51,0x5f,0x49,0x07, +0x14,0xea,0x51,0x1d,0x98,0xef,0x5a,0x6c,0x93,0x67,0x5e,0x53, +0xc0,0xfb,0xb6,0xf8,0xd4,0xf9,0x54,0x70,0xf8,0x22,0x96,0x80, +0xba,0x2e,0xd2,0x17,0xe6,0xeb,0x91,0x0b,0x05,0xe7,0x0a,0xce, +0x15,0x73,0x30,0x6a,0x1d,0x03,0x8b,0x32,0xe8,0x0d,0x6d,0x7a, +0xc3,0x0c,0x77,0x93,0xda,0xf2,0x92,0x8a,0x8c,0x1a,0xc7,0x5c, +0x3e,0xd2,0xc3,0xd3,0xd5,0xc1,0x93,0xfb,0x67,0x0d,0x97,0x23, +0x93,0x9b,0x9b,0xfb,0xf7,0x1a,0xae,0x0b,0xff,0x5d,0xc3,0xe5, +0x71,0x70,0xeb,0x9a,0x45,0x7a,0x25,0xb6,0xbc,0x22,0x57,0x86, +0xab,0x58,0xf4,0x0e,0xc5,0x19,0x7a,0xd2,0xba,0x2d,0xd3,0x1e, +0x18,0x9f,0x05,0x1a,0x97,0x61,0xb9,0x5c,0x88,0x6e,0x14,0xa3, +0x98,0x73,0x39,0x67,0x73,0x73,0xd5,0x60,0x2d,0x45,0x44,0x98, +0x9d,0x7d,0xc0,0x8e,0x88,0x2c,0x6b,0xfe,0x75,0x46,0x57,0x53, +0xc6,0x75,0xee,0xde,0x3f,0xcb,0xb7,0x3e,0x32,0x15,0x29,0xff, +0x59,0xbe,0xb5,0xe6,0xdf,0xcb,0xb7,0x0e,0xb2,0x83,0x22,0xec, +0x25,0xe2,0x20,0x9c,0x10,0x06,0x69,0x19,0xd3,0x22,0x38,0x89, +0x0a,0xef,0x49,0x8c,0xe0,0x19,0x4b,0xa2,0x02,0x03,0x7d,0x7d, +0x03,0x39,0xf4,0xfa,0xf7,0x5a,0x2e,0x4c,0xc6,0x1b,0xd2,0x0b, +0x78,0xfa,0x02,0xe5,0x30,0x9c,0x48,0x1a,0xc4,0x4f,0x6d,0x58, +0x91,0x31,0x20,0x30,0x89,0x6a,0xd1,0x49,0x0c,0xfc,0x79,0x9d, +0xd8,0x08,0x4b,0x1b,0x58,0x9c,0xa2,0xd2,0x20,0x2e,0xa5,0xf7, +0x56,0x61,0x04,0xa9,0xeb,0xac,0xf9,0x3a,0xeb,0xb6,0x54,0x89, +0xf5,0x6d,0xd7,0x38,0x59,0x4b,0x7f,0x66,0x5a,0x4d,0xb2,0x6c, +0x33,0x2c,0x52,0xcc,0xdb,0x4b,0xf9,0xc8,0xa6,0xa0,0xf6,0xe0, +0x6a,0x2a,0xb9,0x30,0x96,0xd4,0xc0,0x8d,0xa1,0xe5,0x5d,0x9b, +0xd0,0x94,0x15,0x46,0x7c,0x4b,0xf0,0xc6,0x1d,0xb8,0xc1,0x48, +0x1b,0x20,0x55,0x11,0x4b,0x70,0xdf,0x85,0xe7,0x2d,0x84,0x6f, +0x5a,0xb0,0xf2,0x01,0x1c,0x81,0x4f,0x3b,0x5b,0x8c,0x61,0x2c, +0x1e,0xe9,0x32,0x32,0x42,0x37,0x4b,0x70,0xdb,0x81,0x17,0x2c, +0xe0,0xc2,0x16,0x56,0x2c,0x81,0x2c,0x32,0x38,0x02,0x4e,0x28, +0x47,0xd0,0x0e,0x69,0xff,0xbb,0xbd,0xc2,0xf3,0x08,0xb2,0x03, +0x0f,0x3e,0x64,0xd1,0x5c,0xe5,0x09,0x1c,0xa4,0xaf,0x7b,0x3e, +0x53,0xba,0xa7,0x46,0xef,0x51,0x01,0xa5,0x2d,0x75,0x61,0xae, +0xd4,0x85,0x1e,0x50,0x25,0xe1,0x56,0xee,0x86,0x0e,0x8e,0xb5, +0x2e,0x7c,0x43,0x6b,0x69,0x4f,0x7a,0x27,0x07,0xef,0x8e,0x93, +0x0a,0x8b,0x5c,0xdb,0x7c,0x9d,0x96,0x7c,0xde,0xbb,0xdf,0xbf, +0xc1,0xb5,0x99,0x5b,0x8e,0x93,0xc9,0xe1,0xc6,0xf0,0xea,0x88, +0x32,0xcb,0x28,0x3e,0xc5,0x25,0xc5,0x31,0xd1,0x86,0x9b,0x99, +0x40,0x62,0x1b,0x62,0x6a,0x8f,0x54,0x58,0x1c,0xe3,0x13,0x9c, +0x2e,0x3b,0x5c,0xb4,0xe3,0x70,0x5b,0x00,0x41,0xd3,0x15,0xe6, +0xca,0xf1,0xad,0x7a,0x60,0xca,0x0e,0x2e,0xd6,0x25,0x19,0x0e, +0xe9,0x16,0x57,0xad,0x68,0xd7,0xa3,0xea,0x83,0x3a,0xc2,0x14, +0x1c,0xda,0x60,0x24,0xa9,0xeb,0xaa,0xf9,0x26,0xfb,0x0e,0x0d, +0x52,0x98,0xae,0xed,0x6a,0x47,0x6b,0x4e,0xc8,0x80,0x9d,0x54, +0x00,0x2f,0x83,0x05,0x2c,0xcc,0x96,0x4e,0x78,0x1c,0x9a,0xf8, +0xdf,0x3e,0x09,0x16,0xbc,0xa6,0x8f,0xaa,0x42,0x86,0x32,0x83, +0xdc,0xd6,0xd9,0x2f,0x2e,0xb0,0xfa,0x6b,0x6c,0x13,0xed,0xcc, +0x46,0x52,0x12,0x58,0xe4,0x95,0xe9,0x53,0x5b,0xc0,0x87,0xe5, +0xb9,0x96,0xfb,0x66,0x73,0xa0,0x75,0x86,0x44,0xf8,0x79,0x78, +0x79,0x06,0x55,0x79,0xf1,0xe5,0xf9,0x25,0xc5,0x99,0x45,0x1c, +0x58,0x1b,0x92,0x92,0xcb,0xc5,0x71,0x85,0xf1,0xee,0x15,0xfc, +0x9e,0xd0,0xe5,0xd1,0x0b,0x62,0x39,0x9c,0xc5,0x1a,0x9c,0xba, +0x6c,0x7b,0xfd,0xe2,0xfb,0xc4,0xeb,0xc9,0xf2,0x13,0x35,0x6e, +0xc7,0xed,0x63,0x1d,0x4e,0xca,0x7f,0x65,0xcb,0x2f,0x94,0x5d, +0x28,0xb9,0x94,0xb1,0xbb,0x76,0xff,0x2f,0x96,0x05,0x35,0xfc, +0xda,0x5a,0xb7,0x8e,0xc8,0x3e,0x4e,0xbc,0x18,0x46,0xce,0xf8, +0x9e,0xf1,0x3b,0x19,0xca,0xf9,0x9f,0x3c,0x1a,0xeb,0x3d,0x65, +0x33,0x93,0x60,0x47,0x53,0xe6,0x5a,0x6a,0x66,0xf5,0x15,0x8d, +0xcb,0x65,0xe7,0xaa,0xbb,0xd5,0xf0,0xa6,0xdd,0xaf,0xcc,0x09, +0x7d,0x0f,0xa7,0x95,0xce,0xb9,0xf6,0xfc,0xbb,0xba,0xa6,0xae, +0xb8,0x27,0x54,0x29,0x1d,0x27,0x38,0xab,0x07,0x66,0xb1,0xf8, +0x90,0x6a,0xa4,0x52,0x3d,0xd4,0x60,0x71,0x43,0xe8,0xac,0x9d, +0x33,0xd5,0x5b,0x1d,0xbe,0x00,0x59,0x0e,0x0c,0x3f,0x0f,0xfb, +0xe4,0xc2,0x47,0x71,0x56,0xbf,0xd0,0xa3,0x6b,0xcf,0x88,0x1f, +0x1d,0x88,0xf0,0xd1,0x51,0xfc,0xc8,0x3c,0xde,0x42,0x30,0x45, +0xd0,0x86,0x14,0x56,0x9c,0xb2,0x9d,0x54,0xc0,0x2b,0x57,0x16, +0x5f,0xed,0x20,0x0a,0x78,0xe5,0x42,0x2f,0xb6,0x92,0x6a,0x78, +0xe5,0xc8,0x8a,0x06,0x38,0x9d,0x7c,0x99,0xf0,0x79,0xe6,0x40, +0xb1,0x5f,0x35,0x6f,0xec,0xbf,0x3b,0x74,0xcb,0x31,0x0e,0x5e, +0x26,0x90,0x3b,0x91,0x0f,0xc2,0xef,0xfa,0x67,0x36,0xf0,0xfb, +0xb3,0xb6,0x65,0x69,0x25,0xd1,0xa4,0x9b,0x3e,0x29,0xb0,0x2e, +0xec,0x56,0xd4,0xd3,0xa6,0x77,0xc5,0xf0,0x59,0x26,0x2c,0x33, +0xbf,0xca,0x47,0x21,0x17,0xba,0xc0,0x67,0x43,0x34,0xb0,0xc7, +0x41,0xed,0x0c,0x4c,0xe1,0x40,0xbd,0x13,0xd5,0x61,0x94,0x29, +0x8e,0xc2,0x67,0xb8,0x52,0x0b,0x8c,0xad,0xf0,0x1c,0x15,0x28, +0xfe,0x67,0xfd,0xcf,0x04,0xaa,0x23,0x6f,0x54,0xcd,0x9c,0xc6, +0xe1,0x31,0x6b,0x9c,0xb6,0xd7,0xb8,0xf1,0x75,0x2f,0x93,0xde, +0x9e,0x03,0x8e,0x6b,0x62,0x4e,0xa0,0x6e,0x08,0x4e,0xd2,0x9f, +0x59,0xef,0xc2,0x7f,0x01,0x33,0xd3,0x40,0x07,0xca,0xd5,0xa8, +0xb6,0x2d,0x61,0xcf,0xe1,0x96,0x04,0xdc,0x92,0x83,0xea,0xe1, +0xae,0xa1,0x9e,0xc1,0xde,0x9c,0x62,0x2f,0x8c,0xb8,0x01,0x86, +0x87,0xfe,0xbc,0xd3,0x82,0xee,0xe2,0xdd,0xc6,0xdb,0xb0,0x9a, +0x75,0xb5,0xb1,0x77,0xb2,0x70,0x2f,0xb2,0xe5,0x1f,0xb5,0xf7, +0x0d,0x34,0x3e,0x49,0x39,0x94,0x6e,0x9c,0xed,0x90,0x67,0xde, +0x9e,0x78,0xb9,0x3b,0x13,0x76,0xf0,0x16,0x39,0xb2,0x24,0xe1, +0x6b,0x12,0x9a,0xeb,0x5e,0xea,0x93,0xee,0xe9,0xc1,0xe7,0x87, +0x95,0x7b,0x64,0x04,0x70,0x83,0x77,0xbe,0x94,0x12,0xd8,0x92, +0x26,0xb0,0x31,0x4d,0xe0,0x25,0xc0,0xff,0xcc,0xe0,0x3d,0x95, +0xa1,0x47,0x61,0xa1,0x2f,0x99,0xa1,0xff,0xa7,0xb4,0xae,0x71, +0x31,0x99,0x87,0x63,0x7e,0x63,0x45,0x9d,0x58,0xf2,0x33,0xce, +0x5d,0xc2,0x08,0x27,0x2f,0x11,0x1c,0x61,0x00,0x23,0x58,0xf1, +0x24,0x0e,0x90,0xf2,0xae,0xd2,0xaf,0x53,0xef,0x98,0xe5,0xf2, +0xd1,0x3a,0xae,0x6b,0x3c,0x69,0x92,0x6e,0x84,0x8d,0x24,0xcf, +0x28,0x77,0x7f,0xaa,0x56,0x7b,0x31,0x1f,0xde,0xe7,0x7b,0xcf, +0xbf,0x8d,0xda,0x25,0x1f,0xe5,0x33,0xa2,0x83,0x13,0x30,0x10, +0xad,0x19,0xbc,0x10,0x8d,0x9b,0xb6,0xa0,0xba,0x7a,0x87,0x9d, +0xec,0x39,0xac,0x48,0x85,0x83,0x10,0xaf,0x06,0xb3,0x05,0xc3, +0x7e,0x0c,0x64,0x07,0xc9,0x0f,0x64,0x90,0x81,0x62,0x25,0x43, +0x9d,0xbd,0x0e,0xc1,0x75,0x34,0xd3,0xd6,0x31,0xc2,0xa0,0xb8, +0x9f,0xf4,0xe2,0x0e,0xf0,0xd3,0x46,0x3f,0x9c,0xa5,0x0f,0xb3, +0xb0,0x0f,0x8d,0xf5,0x04,0xcb,0x3e,0xb4,0x82,0x3e,0xda,0x38, +0x69,0x86,0xcb,0x3a,0x1a,0xb0,0x75,0x0c,0xae,0x93,0x2a,0xf1, +0x3a,0x5a,0x90,0xd7,0x31,0x7f,0x50,0xc6,0xcd,0xb6,0xcb,0x31, +0x49,0xb5,0xec,0x28,0xe3,0x23,0x1a,0x7c,0x7b,0x83,0xaa,0x38, +0xf4,0xa5,0xb2,0xb7,0xa9,0xbb,0xe1,0x45,0xee,0x5d,0x93,0x42, +0x3e,0x44,0xc7,0x72,0xb5,0x9d,0x25,0x55,0xb8,0xba,0xca,0x76, +0x82,0x0f,0x94,0x2a,0xf0,0x80,0xd5,0x5a,0x46,0xc4,0x53,0x4d, +0xc2,0x29,0x06,0xa7,0xaa,0x88,0xa7,0x9a,0xe9,0x85,0x78,0x6a, +0x05,0x11,0x4e,0x59,0x88,0xa7,0x18,0xf8,0x71,0x39,0x79,0x19, +0xfd,0x7b,0xf8,0xab,0xc0,0xb4,0x46,0x7e,0x79,0xce,0xdc,0xb4, +0x95,0x49,0x1c,0x1e,0x39,0x45,0x0e,0x04,0xaf,0x8d,0x9a,0x7e, +0x2c,0x8d,0x96,0xdd,0x61,0xf1,0x2f,0xd3,0x1e,0xe4,0x70,0x78, +0x93,0x72,0xe2,0x57,0xc2,0x70,0xf8,0x8a,0x15,0xac,0xf0,0x2b, +0x02,0x5f,0x89,0x1c,0x7e,0xc5,0xe2,0x74,0x88,0x22,0x18,0xd7, +0x0a,0x71,0x8c,0x60,0x69,0x4e,0xf0,0x6a,0x2b,0x15,0x9d,0xa2, +0x25,0x52,0x4e,0x89,0x6b,0xa3,0x4f,0x82,0xc9,0x24,0xb8,0x6a, +0x36,0xb4,0xca,0xdd,0x96,0x40,0x9c,0x09,0xd2,0xd7,0x19,0x75, +0x10,0xb8,0x6a,0x22,0x3d,0x57,0x44,0xfd,0xc2,0xe7,0x45,0x1d, +0x65,0x95,0x55,0x6e,0x0a,0xde,0xdd,0xc3,0xd8,0x6d,0x6f,0x00, +0x27,0xf8,0xd8,0x90,0xbb,0x05,0x1d,0xa5,0xd5,0x95,0x4e,0x0a, +0xde,0xd5,0xdd,0xc4,0xf3,0x10,0xa5,0xde,0x8d,0xcd,0xa4,0x2e, +0xb8,0xd9,0xa3,0xdc,0xbb,0xac,0x8e,0x77,0x2f,0xb0,0x28,0x71, +0xc8,0xe4,0x84,0x0d,0xf6,0xa4,0xcd,0x7f,0xc0,0xb5,0xd9,0xa5, +0xac,0x81,0xb7,0x2c,0xd7,0x2d,0x37,0xa5,0x36,0x56,0x98,0x35, +0xb4,0xbe,0xad,0xbc,0x11,0xcf,0x37,0x41,0x41,0x13,0x16,0x48, +0xeb,0xdb,0xe2,0xac,0x20,0xce,0x8a,0x15,0x6b,0x60,0x98,0x84, +0x8f,0x33,0xff,0x26,0xf8,0x29,0x94,0xe0,0xa7,0x30,0xd4,0x9c, +0x69,0x48,0x8b,0xdc,0x3a,0xa4,0x45,0x6e,0xe7,0xfe,0x5e,0xe4, +0x36,0x9d,0x3d,0xe6,0xe2,0x19,0xb5,0x26,0x26,0xd5,0x9e,0x7f, +0x9b,0xd4,0x52,0x9c,0xd8,0xc7,0xf5,0xb9,0x48,0x8b,0xdc,0x1a, +0xd5,0x9f,0x31,0x15,0xc9,0x43,0x8b,0xdc,0x6c,0x12,0x64,0x5e, +0x1b,0xd8,0x23,0xb1,0x17,0xe2,0x35,0x2a,0x60,0x19,0xca,0x58, +0x51,0x19,0x22,0x7d,0x24,0x4f,0x3f,0x12,0xa7,0x0c,0x09,0x02, +0x5a,0x09,0xa6,0x30,0xca,0x14,0x90,0xd3,0xe8,0xe3,0x2d,0x1a, +0x75,0x03,0x4a,0xc8,0xd6,0xa2,0x5a,0x23,0x2b,0xa8,0xad,0x26, +0x96,0xa2,0x5a,0x33,0x8b,0x51,0xd3,0x49,0x8e,0x6d,0xb6,0x49, +0xaa,0x54,0x00,0x22,0x9a,0xfc,0x7a,0x82,0x6a,0x38,0xb4,0xc3, +0x30,0x5a,0x2a,0x6a,0x9f,0x67,0xdf,0xa6,0x36,0x26,0x5c,0xdf, +0x7a,0x8d,0xa3,0x0d,0xa7,0xbc,0x0b,0xbb,0x89,0xb9,0xa8,0xd6, +0xca,0xc2,0x79,0x9c,0x4f,0xee,0x07,0xbd,0x74,0xeb,0xf3,0xcc, +0x6f,0xe6,0x8d,0x8a,0x96,0x56,0xec,0xcd,0xe0,0xc4,0x91,0x38, +0x89,0xfc,0x98,0xf5,0xac,0xa2,0x45,0x5a,0xfa,0xe6,0xe8,0xb5, +0xca,0x6d,0x6d,0x38,0x0d,0x86,0xaf,0xd0,0x49,0xf0,0x10,0x7c, +0x02,0x1b,0x3a,0x71,0xc3,0xef,0x06,0xb3,0x70,0xbd,0x31,0xac, +0xc7,0x4f,0xd0,0xc8,0x08,0xa6,0x58,0x30,0xa8,0x1d,0x84,0x9b, +0xe7,0xa1,0x5c,0xbd,0xc9,0x5e,0x06,0xc3,0x60,0x7e,0x0e,0x68, +0x81,0xb9,0x5a,0xd3,0x6d,0x31,0x6e,0x21,0x9b,0xa2,0x2f,0x7b, +0xc8,0x34,0x64,0xa6,0x37,0x69,0x08,0x67,0x41,0x95,0x85,0x9f, +0x45,0x75,0x32,0xf0,0x43,0xed,0x87,0xab,0xef,0xb9,0x06,0x84, +0xb7,0xf0,0x0b,0xc4,0x8b,0x73,0xfe,0x35,0xa2,0x4f,0x70,0x83, +0x46,0xf6,0xf0,0x16,0x8f,0xf5,0x96,0xdb,0xac,0x6f,0xb9,0x3d, +0x08,0x79,0x68,0x10,0xcc,0x67,0x6f,0xac,0x5d,0xd7,0xbd,0xcd, +0xde,0xc4,0xcc,0x52,0xdf,0x4d,0x61,0xc6,0xf7,0x28,0xda,0x9b, +0xea,0x3b,0x1b,0x4d,0xda,0x2d,0xbb,0x5d,0x14,0x5d,0xbc,0x41, +0x85,0x69,0xa3,0x2d,0x15,0x84,0xd4,0x80,0xe1,0x3c,0x54,0xc0, +0x3c,0x16,0xf5,0xf1,0x5b,0x92,0xb3,0x29,0x73,0x66,0xf2,0x9a, +0x0e,0xaa,0x92,0xbf,0x0f,0xf8,0x10,0xf4,0x25,0x87,0xc2,0x71, +0x72,0x6a,0x79,0xf8,0x12,0xb7,0x9d,0xad,0x7e,0x7c,0xe5,0x37, +0xa9,0xbf,0x5d,0x7c,0x43,0x3b,0x64,0x2c,0x74,0x11,0x5c,0x03, +0xe3,0x60,0x45,0x27,0xae,0xf8,0xd3,0x60,0x06,0x2e,0x33,0xa6, +0xc1,0x1f,0x87,0x07,0x8d,0x60,0xa2,0x09,0x83,0xfa,0xc1,0xb8, +0x65,0x11,0x4e,0x52,0x6f,0xb4,0x97,0xfd,0x0e,0x73,0x73,0xe0, +0x10,0xd8,0xa8,0xb5,0x5d,0x13,0x93,0x97,0xb2,0x29,0x06,0xb2, +0xfb,0x4c,0x7d,0x66,0x5a,0xa3,0x86,0x10,0xf7,0x9e,0x15,0x12, +0xcf,0x93,0x0e,0x5c,0xcc,0x76,0xdd,0x69,0xfa,0xa2,0x5a,0x9a, +0xa4,0x17,0x62,0x1d,0x64,0xe7,0xef,0xc0,0xb5,0xe3,0x94,0x8f, +0xfa,0xd3,0x71,0x8e,0x29,0xcc,0xc1,0x4f,0x71,0xa5,0x09,0x38, +0xb3,0xfb,0xf6,0x6e,0xd1,0xdb,0x60,0x51,0x6c,0xc5,0x53,0xe5, +0x9d,0x94,0x9e,0xcc,0x89,0x73,0x7a,0x7a,0x21,0x5a,0xbf,0x57, +0x38,0xc8,0x5e,0x3a,0x51,0xa5,0xf0,0xad,0x70,0xae,0x72,0x2e, +0x96,0x3b,0xb9,0x95,0xfa,0x16,0x7b,0xe5,0x7b,0xc8,0x31,0x9f, +0xe9,0xaa,0x6b,0x6d,0x6c,0x6c,0xe1,0xf6,0xc0,0x2e,0x8a,0x01, +0xc6,0xc7,0xc6,0xcb,0xce,0xdd,0x89,0xb3,0x61,0x28,0xd7,0xcf, +0x22,0xd9,0x1b,0x33,0x66,0x24,0xaf,0x6a,0x4f,0xe5,0xa3,0xbf, +0x0f,0xfc,0x23,0xf8,0x29,0x87,0xbf,0xd0,0x5e,0x2e,0x8b,0x58, +0xe4,0xbe,0xa3,0xd5,0x9f,0x57,0x7c,0x9b,0xf2,0xee,0xc2,0x1b, +0x8a,0x7f,0x74,0x97,0x40,0x18,0x4d,0x41,0x85,0xd1,0x26,0x84, +0x5e,0x8c,0xc3,0x68,0x5a,0xfc,0xb3,0x85,0x34,0xaa,0xc8,0xe1, +0x8f,0x7e,0xfc,0x03,0x3e,0xd9,0x4f,0x87,0xf1,0x7b,0x5d,0xf8, +0x1e,0xd5,0xc4,0x05,0xba,0x7f,0x7d,0xda,0xcf,0x0e,0xda,0x20, +0x21,0x9d,0x96,0x0f,0xd6,0xd4,0xe8,0xb5,0x57,0xf1,0x4e,0x9d, +0x3b,0x7e,0x34,0x6a,0xe6,0xa0,0x44,0xdc,0x44,0x8c,0xad,0x2f, +0x5e,0x71,0xd6,0x80,0x39,0x7f,0x52,0xbc,0x4f,0xfd,0x1a,0xe8, +0x08,0xf0,0x9b,0x70,0x32,0x4a,0x67,0x1e,0x2d,0x9d,0xc1,0xed, +0xad,0xf0,0xef,0xff,0x52,0xad,0x65,0xbb,0x19,0x8b,0x23,0xcc, +0x75,0xe6,0x69,0xa9,0x2b,0xf4,0x7f,0xbd,0xd9,0x70,0xed,0xe2, +0x6f,0xd2,0xb7,0xd3,0x23,0xe2,0xef,0x2c,0x85,0x63,0x53,0x84, +0xf9,0x4c,0xfa,0x80,0x4c,0x55,0xf0,0xb8,0x42,0xb4,0xcd,0xe2, +0x92,0x1d,0x34,0x20,0x00,0x36,0x74,0xe3,0x06,0x58,0x02,0x07, +0x7a,0xf0,0x20,0xa5,0xa9,0x55,0xdd,0xb8,0x0a,0xc8,0x21,0x24, +0x78,0xd0,0x10,0x0e,0xd2,0x04,0x70,0x30,0x00,0x67,0x71,0x1e, +0xab,0x53,0xed,0x3f,0xf0,0x58,0x0d,0xa6,0xeb,0xe0,0x34,0x76, +0x86,0xff,0xce,0xad,0xfa,0xea,0x85,0x5a,0x77,0xba,0x8a,0x06, +0x2e,0x4b,0xdb,0x1a,0xcc,0x8d,0xfb,0x7a,0x05,0x44,0x4f,0x11, +0x42,0x98,0xb8,0x6b,0x32,0xd1,0x0f,0x36,0x11,0x78,0x70,0x53, +0x86,0x3b,0xae,0x83,0x36,0xfb,0x3a,0xe3,0xd4,0xb5,0x65,0x61, +0x32,0x21,0x5d,0x4b,0x2c,0x66,0x71,0x9b,0xbb,0x4c,0xc8,0xd5, +0x12,0x15,0xec,0x8a,0x30,0x99,0xaa,0xf2,0x90,0xb2,0x8e,0x64, +0x2e,0xfc,0x65,0x23,0x7c,0xb6,0xb1,0xac,0x87,0x47,0xf9,0x37, +0x5b,0xee,0x79,0x7d,0xcb,0xed,0x64,0xfc,0xd6,0x1f,0xdc,0x89, +0x63,0xb7,0xe6,0xeb,0xf3,0x30,0xf6,0x8b,0x2f,0x1e,0x65,0x7d, +0xe0,0xc4,0x69,0x62,0x13,0x81,0x65,0x5d,0xb8,0x0c,0x96,0xfe, +0xdd,0xe2,0xa9,0x30,0xbb,0x0b,0x67,0x03,0xd1,0xa6,0x4d,0xdd, +0x64,0x04,0x9b,0x70,0x2a,0xea,0x1b,0x82,0xa1,0x38,0x9d,0x31, +0xa9,0x0a,0xec,0xb9,0xad,0x06,0xf3,0xf5,0x70,0x0e,0x3b,0x2b, +0x64,0xdf,0x16,0x1d,0xf5,0x3c,0x9d,0xeb,0xed,0xa5,0x9d,0x71, +0xdf,0xd3,0xa6,0x2e,0x8d,0xfb,0x69,0xa8,0xa9,0x91,0x4c,0x5c, +0xbf,0x4c,0x8c,0x65,0x76,0xe9,0x25,0xa4,0x59,0x6b,0x50,0x3c, +0xbe,0x26,0x86,0xfb,0x96,0xeb,0xa0,0x8a,0x6b,0x9e,0x21,0x0f, +0x4c,0xd5,0x8f,0x7d,0x77,0x1e,0x73,0x58,0x8a,0x1f,0x08,0xcc, +0x6f,0x84,0xa9,0x8f,0x5f,0xfd,0xe1,0x50,0xc7,0x6f,0x5a,0x8e, +0x53,0x34,0x71,0x81,0x3d,0x77,0x1e,0x4f,0x13,0x38,0xd4,0x04, +0xfb,0x5e,0x02,0x03,0x93,0x1d,0x1b,0xf9,0x39,0x38,0x1a,0x77, +0x2f,0x47,0x1d,0x1b,0x8a,0xed,0xa8,0x5e,0xe9,0x2b,0x4f,0x68, +0x45,0x1e,0xa7,0x32,0x49,0x26,0x32,0xf8,0x84,0x69,0xc8,0x48, +0xaf,0xd4,0x10,0xfc,0x70,0x1f,0x1c,0xd5,0xc7,0xa3,0xb8,0x9b, +0x0d,0x13,0x5f,0x91,0x1d,0x7a,0x09,0xe9,0x56,0x1a,0xe0,0x0b, +0x0b,0xbb,0x70,0x21,0xed,0xd6,0x50,0xe8,0xa7,0x82,0x46,0x17, +0x6a,0x00,0x2d,0x49,0x04,0x37,0x18,0xc1,0x06,0xda,0x2d,0x5d, +0x43,0xd0,0x13,0x35,0x58,0xb3,0xea,0xc0,0xee,0x9b,0x6a,0xb0, +0x40,0x17,0xe7,0xb2,0xb3,0xc2,0xf6,0x6f,0xd1,0x56,0xcf,0xd5, +0xbd,0xde,0x56,0xda,0x79,0x59,0xea,0xd6,0xb2,0xb8,0x9f,0x87, +0xba,0x15,0xc5,0xc4,0xf5,0xc9,0x8e,0x0b,0xff,0x43,0x5c,0x3f, +0xb7,0xbd,0x61,0xd9,0x6b,0xe1,0xc3,0x37,0x1a,0x35,0xef,0x2e, +0xdd,0xc1,0x89,0xba,0xa7,0x49,0x67,0x77,0xdd,0xcd,0xd2,0xaf, +0xcc,0xf2,0x78,0xdf,0x9d,0x56,0xfb,0x4d,0xcc,0x39,0x6a,0x26, +0xb6,0x93,0x5f,0xa0,0x75,0x11,0x8b,0xad,0x14,0x9e,0xad,0x8b, +0xb0,0x95,0x51,0xfd,0xcb,0x22,0x84,0xac,0x51,0xec,0xaa,0xd5, +0x6d,0xfd,0xe6,0xd9,0xb5,0xdf,0x8a,0x61,0x14,0xd7,0x82,0x96, +0xb0,0x05,0xa2,0x7b,0x31,0x1a,0x96,0x69,0xe3,0x32,0x0c,0xd0, +0x87,0x00,0xdc,0x82,0xce,0x7a,0xc2,0x3c,0xd6,0x67,0x91,0xc9, +0x86,0x9d,0x7b,0x0f,0x5d,0xb7,0x78,0xe4,0xf0,0xd2,0xc0,0x97, +0xaf,0x5b,0xda,0xbe,0xf9,0xf6,0xbe,0x3d,0x26,0xeb,0xed,0x16, +0x7a,0x14,0xe9,0xf2,0x1f,0x2a,0xbe,0x6f,0x79,0xd4,0x7f,0xcb, +0xe0,0xb1,0xd5,0x4f,0x0e,0x9c,0x78,0x1e,0x82,0x89,0x75,0xa8, +0x75,0x84,0x75,0x24,0x55,0x6d,0x30,0xa1,0x07,0x27,0xc0,0xd2, +0x0f,0xd0,0x84,0xfd,0xd8,0x04,0x73,0xc5,0x1d,0xec,0xba,0x00, +0x99,0xa0,0xa2,0x27,0x4e,0x60,0x75,0x23,0xe3,0x75,0x60,0x76, +0x15,0x8c,0xab,0x00,0xd5,0x2e,0xf9,0x52,0x25,0x2d,0x41,0x07, +0x91,0xa2,0x91,0x55,0x55,0xa6,0x0a,0x3b,0x09,0xac,0xef,0xc7, +0xf5,0xf0,0xe6,0xd0,0x60,0x1f,0x8e,0x57,0xee,0x3e,0x34,0xb8, +0x7b,0xb6,0xae,0x50,0xde,0x8f,0x07,0x18,0x7c,0xf6,0x0b,0xb1, +0x8c,0xb6,0x3c,0x6c,0x71,0x84,0x03,0x2f,0x98,0xd2,0x4b,0x59, +0x7c,0x15,0xe5,0xc3,0x26,0xfc,0x9c,0xfe,0x86,0xc5,0xa2,0x1e, +0xeb,0x7d,0xc2,0xfb,0x84,0x57,0x2c,0x27,0x7c,0xa2,0x27,0x4e, +0x66,0xb5,0x62,0xe2,0xb5,0x61,0x71,0x2e,0x4c,0x29,0x80,0x51, +0x95,0xf2,0xc5,0xca,0xbd,0x04,0x0f,0xa0,0x35,0x1c,0x60,0x55, +0xff,0xda,0x0f,0xbf,0x91,0x7e,0x8c,0x64,0xcf,0x24,0x9c,0x8d, +0x4f,0x50,0x83,0x4d,0x60,0xdd,0x47,0xef,0xec,0xd4,0xc2,0x9d, +0xa8,0xa7,0x07,0x7a,0xb8,0x89,0xf5,0x46,0x7b,0x5d,0xb0,0x62, +0x23,0x70,0xda,0x01,0x54,0x41,0x43,0x1c,0x53,0x4a,0xb1,0x6a, +0x08,0xe3,0x9f,0xc0,0x67,0x17,0x61,0x16,0x17,0xc7,0xc4,0xa1, +0xc6,0x5d,0x9c,0x08,0x6b,0x70,0x42,0x65,0x1f,0x8f,0x4b,0x61, +0xf4,0x5e,0x18,0x16,0x06,0x33,0x38,0xbc,0x8b,0x3e,0xc4,0x31, +0xca,0xf9,0xb0,0xe3,0x61,0x0e,0x1c,0xe1,0xd3,0x6e,0xfc,0x14, +0x56,0xfc,0x4a,0xdb,0xd8,0x46,0xdb,0x38,0x53,0xdc,0xc7,0x6e, +0x0c,0x96,0x09,0xac,0xbe,0x38,0x91,0x0d,0x3d,0x19,0x1a,0x1b, +0x72,0x32,0x41,0x87,0x07,0xf5,0x52,0x60,0x8a,0x61,0x64,0x03, +0xb7,0x45,0xb9,0x56,0x0a,0xc5,0x21,0x29,0x14,0xc2,0x21,0xe5, +0x17,0x04,0x75,0xb6,0xeb,0x3f,0x62,0xcf,0x60,0x81,0x0b,0x9a, +0x6c,0xc4,0x79,0x75,0xe6,0xfc,0x0f,0xb0,0xaa,0x06,0x7c,0xcf, +0x41,0x35,0xf7,0x03,0x83,0xc7,0x62,0x71,0x47,0xf4,0x4c,0x75, +0xdd,0xe3,0x47,0xa2,0xac,0xa6,0x98,0x32,0xa9,0xfa,0xb2,0x56, +0xe6,0x61,0x5e,0xc9,0xf3,0x78,0x8d,0xab,0x30,0xfe,0x02,0x75, +0x57,0xbd,0x6a,0x38,0x17,0x74,0xa8,0xf1,0x1d,0xb4,0x27,0x5e, +0x47,0xbc,0x8f,0x78,0x1d,0xe5,0xc0,0xed,0x5d,0xd7,0x5c,0x58, +0xf9,0x18,0x9a,0xf1,0x34,0x36,0x03,0x27,0x6a,0xb1,0xc1,0xc7, +0x83,0x4f,0x04,0x9d,0xe0,0x84,0x31,0xc6,0xa2,0x9c,0x8d,0x3c, +0x15,0x71,0x32,0xe2,0x64,0x02,0xed,0x2e,0x5b,0xf4,0xba,0xe0, +0xa7,0x1a,0x0e,0xde,0xe0,0x34,0xd2,0xf7,0x14,0x58,0xcd,0x3e, +0xe5,0xd7,0x18,0xc1,0x88,0xab,0x42,0x09,0xea,0x52,0x39,0xa1, +0xcb,0x0a,0xca,0xc1,0xdd,0x44,0x39,0x03,0xd8,0xc1,0x19,0xac, +0x2a,0x24,0x40,0x1b,0xf9,0xa3,0x6b,0x26,0xac,0x7c,0x4a,0x3f, +0xfb,0x22,0xfd,0xec,0x31,0xa2,0x0e,0x13,0x44,0x3f,0x39,0x28, +0x76,0xe8,0xb3,0x79,0x96,0x7e,0xf2,0xa9,0xf0,0x93,0x09,0xba, +0x3c,0x7c,0x52,0xfc,0xb1,0xe8,0x6d,0x5d,0x6c,0x27,0xef,0x1c, +0xe5,0x1c,0xed,0x7c,0x84,0x53,0xce,0x87,0xff,0x21,0xa0,0x14, +0x93,0x50,0x69,0x6a,0xd0,0x2e,0x3a,0xf4,0x0a,0x0e,0x3f,0x8b, +0x07,0x7a,0x84,0x03,0xaf,0xc5,0x03,0xdd,0xc2,0x81,0x77,0x22, +0xbf,0x82,0x4d,0xd1,0x95,0x3d,0x61,0xaa,0xd2,0xd2,0x1b,0x34, +0x04,0x52,0xd9,0xc3,0x0e,0xae,0x84,0x5e,0x1a,0x20,0x9c,0x03, +0x3a,0x2c,0x3c,0x3c,0x4d,0x35,0x62,0xf7,0x12,0x06,0x16,0x42, +0x37,0x79,0x8d,0xdd,0x8b,0xff,0xbe,0x7a,0x87,0xdd,0x73,0x19, +0x55,0xe8,0x80,0x52,0x02,0x93,0x7b,0x70,0x32,0xac,0xfb,0x03, +0xfa,0xf0,0x16,0xf6,0xc1,0x02,0x51,0x9f,0xf1,0x39,0xe6,0x7d, +0xdc,0xeb,0x18,0x27,0xa8,0xea,0x89,0x53,0xd8,0x10,0x3a,0x18, +0x21,0xb1,0xf1,0xda,0x3c,0xcc,0xaf,0x00,0x52,0x0e,0xe3,0xda, +0x62,0xbb,0x79,0xcb,0x70,0xcb,0x08,0xcb,0x28,0x4e,0x39,0x5b, +0xe9,0x4a,0xc4,0xe3,0x7a,0xb0,0x91,0xf1,0xc3,0xf5,0xda,0x68, +0x46,0x93,0x77,0x55,0xa5,0x09,0x5f,0x51,0x5f,0xd6,0x5a,0xd4, +0xc9,0x89,0x9f,0xf5,0xdf,0x83,0xb3,0x7b,0xae,0x09,0x39,0xd8, +0xc1,0x96,0xbf,0xcc,0xff,0x25,0xf5,0x57,0x0e,0xb2,0x19,0xf1, +0xf7,0x24,0x82,0xc6,0x68,0x0e,0xc6,0xac,0x60,0x3a,0xb8,0x8f, +0xc0,0x2b,0x38,0x8b,0xaf,0x86,0xe0,0xf7,0x81,0xf4,0x61,0x38, +0x7b,0x26,0xed,0x4c,0x7a,0x3a,0xe5,0x5c,0x70,0xeb,0x45,0x37, +0xd8,0xad,0x8d,0xbb,0x71,0x34,0x9b,0x50,0x1f,0x57,0x7f,0xb1, +0xca,0x30,0x91,0x3f,0xba,0xc8,0x13,0x3f,0xb3,0xd8,0xd4,0xe2, +0xc8,0xe7,0xd6,0x66,0x75,0xa6,0x76,0x71,0xc0,0xe3,0x74,0x26, +0xec,0x6c,0xd8,0x99,0x70,0x75,0x74,0xd3,0x03,0x07,0x26,0x18, +0x67,0xee,0xc5,0xe1,0xb8,0x1c,0xc7,0x94,0xd3,0xe1,0x5a,0x07, +0x13,0x9f,0xc2,0xb4,0x0b,0x14,0x83,0x12,0x3a,0x67,0x7c,0x8e, +0x6a,0xb0,0x02,0x27,0x57,0xf6,0xf2,0x38,0x1f,0xc6,0xec,0x81, +0x61,0xc1,0x14,0xb7,0x78,0x13,0x6d,0x89,0x6d,0x98,0x5d,0xa4, +0xdd,0x50,0x8e,0x7e,0xd2,0x83,0x9f,0xc0,0xd2,0x37,0x14,0x9d, +0x8d,0x14,0x9d,0x1a,0x34,0x47,0x37,0x49,0x39,0x6a,0x40,0xd1, +0xa9,0x1f,0x99,0xa0,0x0b,0xd3,0xaa,0x60,0x74,0x05,0x70,0x9d, +0xf2,0x15,0xca,0x59,0x12,0x30,0xf7,0x0d,0xe5,0x68,0x12,0x8c, +0x23,0x77,0xbf,0x6e,0x79,0x57,0x08,0xaa,0x5c,0x33,0x6a,0xd1, +0xb4,0x58,0xce,0x1e,0xb7,0x0d,0x35,0x0d,0x71,0x6a,0x0f,0xe3, +0x73,0xdb,0x33,0xbb,0xe3,0xbb,0x28,0xa7,0xb8,0xc1,0x70,0x5d, +0xda,0x38,0x77,0xcc,0x60,0xd1,0x3b,0x10,0x97,0xed,0x41,0x56, +0xbd,0xdd,0xf6,0x3e,0x4c,0x2c,0x84,0xe9,0x17,0xc1,0x4f,0x0e, +0x2f,0x98,0xa0,0xa5,0x8e,0xeb,0x74,0x77,0x18,0xde,0x76,0x7c, +0xe4,0xf9,0x95,0x99,0x3f,0x5f,0xbe,0xaa,0x6e,0xd3,0xb5,0x9d, +0x46,0x86,0x7b,0x2d,0x37,0x38,0x96,0x1a,0xf2,0xcf,0xeb,0x1e, +0xb4,0xf6,0x0f,0x74,0x19,0xdc,0x36,0x7b,0x6e,0x5d,0xdc,0xc3, +0x6f,0xae,0x39,0xd4,0x6c,0xd2,0xc1,0x89,0xa3,0x33,0x88,0x6b, +0xa4,0x6b,0xb4,0xdb,0x61,0xc9,0x95,0x8f,0xef,0xc6,0xf1,0xb0, +0xf4,0x1d,0xed,0x40,0x37,0xed,0xc0,0x6c,0x71,0x2b,0xeb,0x1b, +0xe3,0x7b,0xcc,0x3b,0x86,0x13,0x46,0xea,0x53,0xa2,0xd1,0x93, +0x88,0x66,0x5a,0xd5,0x9f,0x65,0x20,0x6b,0x93,0x1f,0x54,0xce, +0x93,0x18,0x40,0x8f,0x32,0x80,0x90,0x89,0x39,0x84,0x26,0xad, +0x21,0x2c,0xa5,0x84,0x38,0x5e,0x69,0x41,0x5c,0xeb,0xf4,0x7a, +0x5c,0x0a,0x6d,0x9c,0xf8,0x4a,0x9f,0x01,0xed,0x22,0x67,0x6e, +0x9d,0x98,0x4a,0x6e,0xc3,0xf0,0x52,0x50,0x4d,0x87,0x09,0xfa, +0x49,0x7c,0x04,0x8e,0xf2,0x9d,0x69,0xb4,0x84,0xdb,0x07,0xc3, +0x02,0x60,0x14,0x7c,0xa2,0x56,0x06,0x0f,0xaf,0xe1,0x43,0xd0, +0xd5,0x92,0x52,0x41,0x07,0xa6,0x7b,0xd0,0x2c,0xdd,0xe3,0x40, +0xd9,0x53,0x05,0x67,0xc4,0xb6,0xf3,0xf6,0x91,0x0e,0xd1,0xf6, +0xd1,0x1c,0x38,0xfc,0xcd,0x83,0xcb,0xff,0xdb,0xc4,0xbd,0xac, +0xef,0x71,0x69,0x2e,0x17,0xf7,0xbf,0x59,0x40,0x82,0x9d,0x46, +0x29,0x70,0x25,0x20,0x6b,0x0a,0xf0,0xf6,0xf3,0xf1,0xf2,0x69, +0x30,0xe5,0x61,0x11,0xcc,0xbb,0x0b,0xdb,0xcf,0x83,0x3a,0x1d, +0xd1,0x0b,0xbb,0x0a,0xd6,0x76,0xaf,0xb1,0xd3,0x31,0x30,0xd8, +0x61,0x5c,0x69,0xcc,0x7f,0xde,0xde,0xd3,0xdb,0x30,0xd0,0xaa, +0x7d,0x53,0xfb,0xb9,0x51,0x65,0x0f,0xbf,0xb6,0xf3,0x60,0x9f, +0xf9,0x00,0x27,0x6e,0x16,0x7e,0x90,0xc6,0x49,0x6f,0x68,0x9c, +0x72,0x84,0xc7,0xa4,0xbc,0xa6,0xa4,0x2d,0xa7,0x95,0xab,0xc3, +0x44,0x36,0x31,0x27,0x3e,0xf7,0x4a,0xae,0x6e,0x12,0xef,0xbd, +0x74,0xef,0xac,0xf5,0x3b,0xaa,0xa4,0x93,0x0a,0xe3,0xe2,0xa4, +0x93,0x0a,0x1f,0x85,0xa0,0xda,0x26,0x9c,0xd0,0x62,0xcd,0x7f, +0x03,0xd3,0x0a,0x61,0x35,0x0c,0xa8,0x09,0xbb,0x3b,0x18,0xb1, +0x4b,0xdc,0x48,0x1c,0xc3,0x9c,0x22,0x9d,0x29,0x58,0x8c,0x61, +0x4c,0x37,0x8e,0x81,0xc5,0xbf,0xfc,0x07,0x2c,0x1b,0x59,0xbf, +0xa3,0x7e,0x31,0xbe,0x34,0xd6,0xc3,0x0c,0xc4,0xf1,0x6c,0xd8, +0x89,0xd0,0x13,0x21,0x27,0xa4,0xdc,0x56,0x6b,0x80,0x61,0x0a, +0x18,0xd5,0xcf,0x69,0x2a,0x27,0x4b,0xad,0xd9,0x4b,0x5b,0x03, +0x6f,0x51,0x93,0x54,0x54,0x97,0xd6,0x17,0x50,0xad,0xe3,0xce, +0x04,0x3b,0x7a,0x59,0xb8,0xd8,0x71,0x11,0xe2,0xc3,0x7f,0xce, +0x35,0xfc,0x9e,0xb2,0xee,0x4a,0x54,0x65,0x93,0x0c,0x65,0x1f, +0x99,0xfa,0xb4,0xcc,0x5a,0xe9,0x58,0xc3,0xde,0xa1,0x63,0x0d, +0x3d,0xee,0xaa,0x83,0xf1,0x3f,0xc7,0x1a,0x8e,0x64,0x8d,0xd2, +0x64,0x48,0xc9,0x46,0xd8,0x2b,0x84,0x93,0x57,0xdf,0x64,0xf5, +0xc0,0x64,0x35,0xb0,0xc4,0xad,0x8c,0x5e,0x7e,0x68,0x97,0x7a, +0x37,0xd3,0x90,0x92,0xa5,0xd0,0xf8,0x99,0x35,0xa1,0xaf,0x1a, +0x6d,0xc2,0x06,0x1d,0x8d,0xcb,0xd5,0x00,0x2f,0xbc,0xcd,0xe2, +0x96,0x58,0xef,0x25,0x9b,0xd4,0xf1,0x45,0x24,0x81,0x4f,0x52, +0x60,0x7a,0xf6,0x1f,0xc5,0x27,0x1a,0x79,0xdb,0xa3,0x16,0x31, +0x26,0x31,0x1c,0x2c,0x80,0x19,0x6d,0xf8,0xd1,0x8c,0x2a,0xd4, +0x95,0xac,0x41,0x8c,0xfe,0x71,0x7d,0x4a,0x86,0xe9,0xbf,0x92, +0x6a,0xcf,0x0a,0xb7,0x32,0x9b,0x86,0x72,0xde,0xa3,0xce,0xa1, +0xda,0xa1,0x88,0xdb,0x25,0x52,0x37,0xf5,0x53,0x3b,0xfe,0xf4, +0x06,0x1a,0xc0,0x7a,0x70,0x31,0xad,0x19,0xd7,0x31,0x99,0xc1, +0xc5,0x89,0x26,0x77,0x1f,0xa8,0xf5,0xee,0xd2,0x67,0xb7,0xfb, +0xb9,0xe1,0xa7,0xba,0xea,0xa5,0x86,0x20,0xbb,0x56,0xd2,0x74, +0xb9,0x4b,0x92,0x66,0x63,0xb2,0x40,0xcd,0x07,0x96,0x4f,0x11, +0x26,0x33,0xf1,0xbd,0x32,0x71,0x11,0x03,0x01,0xc2,0x4a,0x32, +0x47,0xcc,0x7f,0x4f,0xbb,0xb1,0x07,0x66,0x11,0xab,0x30,0xeb, +0x08,0xab,0xa1,0x7c,0x24,0x3d,0x48,0x60,0xf9,0xef,0xd0,0x82, +0x37,0xb0,0x05,0xe6,0x8b,0xbb,0xd8,0xb5,0x34,0x1f,0x65,0x7a, +0x22,0x61,0x75,0x24,0x28,0xcf,0xad,0x82,0xcf,0x2a,0xe0,0xd3, +0x2e,0x39,0xfc,0xcf,0x6d,0xd2,0x53,0xd7,0x7b,0xad,0xa2,0xdd, +0xbe,0x86,0xf7,0xb0,0x30,0xd7,0x33,0x75,0xf0,0xed,0x09,0xbf, +0x7e,0xf4,0x01,0x07,0xfa,0xc2,0x0a,0x71,0xfb,0x60,0x1d,0xe3, +0x7e,0xc2,0xeb,0x84,0xef,0xc9,0xab,0x7a,0xfc,0x87,0x74,0x98, +0x5d,0xfe,0xa6,0xe4,0x28,0x55,0xf4,0xe1,0x3b,0xc3,0xf6,0x44, +0x52,0x2e,0x86,0x51,0x6c,0x21,0x1a,0xdc,0xc3,0x99,0xb0,0x13, +0x49,0x79,0x07,0xbf,0xbd,0xdb,0xb8,0xc7,0xf1,0x06,0xd7,0x2e, +0xfc,0x24,0x6d,0x1f,0x74,0x1d,0x3e,0x61,0xd1,0xf2,0x14,0x35, +0x24,0x68,0x02,0x87,0x58,0x41,0x43,0xda,0x18,0xf5,0x3a,0x15, +0xa2,0xd7,0x69,0xb2,0x4c,0x3d,0x41,0xf4,0x19,0xf7,0xc3,0x09, +0x65,0x1a,0xf0,0x25,0x2c,0xed,0xc5,0x08,0x9a,0x85,0xce,0x7d, +0xe8,0x0c,0xeb,0xb4,0xa9,0xff,0x1d,0xc9,0x26,0xd4,0x5e,0xa9, +0xbf,0x54,0x6f,0x90,0xc8,0x47,0x22,0xe7,0x35,0xdd,0x64,0x69, +0x2b,0x75,0xfd,0xcd,0xd9,0xed,0x69,0x94,0xbe,0x26,0xa0,0x05, +0xfa,0xe9,0xc3,0x04,0xe6,0x24,0xee,0x31,0xc1,0x11,0xc8,0x4d, +0xaf,0x36,0xa3,0x68,0x81,0xb1,0x5d,0x12,0x23,0x68,0x71,0xa0, +0x82,0x2f,0x99,0x3d,0x05,0xc1,0x77,0xd4,0x6f,0x30,0x8d,0x12, +0xcd,0x03,0x1d,0x8d,0x74,0x99,0xe8,0xef,0x4a,0x6c,0xc3,0x6d, +0x23,0x6d,0x68,0x3a,0xd9,0xc2,0xc4,0x1e,0x5a,0x75,0x97,0xfd, +0x57,0x56,0xec,0x62,0x7d,0x8f,0x49,0x3c,0xce,0x49,0x61,0x9a, +0xc0,0x86,0xfe,0x87,0xc5,0x67,0x2b,0x40,0xb5,0x0c,0xc6,0xb4, +0x71,0x2b,0x95,0x0b,0xff,0xa3,0x2f,0xe0,0xaf,0xef,0x89,0xd7, +0x51,0xaf,0x18,0xca,0xfa,0x54,0x97,0xb1,0x5d,0xc8,0xc2,0x86, +0xef,0xa0,0x07,0x73,0xb0,0x07,0x88,0x68,0xce,0x06,0x9c,0x08, +0x38,0xe1,0x4f,0xab,0xd5,0x78,0x43,0x51,0x9d,0x95,0x6a,0x55, +0xd8,0xa9,0x78,0x3d,0x1e,0x3e,0xcb,0x7b,0x9b,0xfb,0xba,0x82, +0x83,0x51,0xc2,0x2e,0x72,0xae,0xe4,0x6c,0x49,0xb9,0x9a,0xb0, +0x0f,0x8e,0x89,0xc7,0x30,0x86,0xc1,0xe2,0x68,0x34,0xd9,0x8f, +0x93,0xd5,0x3b,0x9d,0x3b,0x61,0x58,0x2e,0xcc,0xba,0x0c,0x31, +0x72,0x41,0x9d,0x41,0xcd,0x58,0x1c,0x73,0x64,0xbf,0xba,0x49, +0x4c,0x54,0xa4,0xc9,0x94,0xb9,0x4c,0x82,0x91,0xec,0x3d,0xf3, +0x45,0x69,0xe1,0xb3,0xab,0x1a,0xc9,0xdf,0x5c,0xfa,0x08,0xa1, +0x6a,0x83,0xa3,0x41,0x41,0xd0,0x84,0xba,0x24,0x13,0x56,0x69, +0x7b,0x9a,0x20,0x2f,0x8e,0x05,0x9e,0xed,0x14,0xa9,0x06,0x78, +0xd4,0x75,0x1f,0xac,0xe0,0x22,0x8b,0x56,0xd2,0xd4,0xa2,0x45, +0x30,0x17,0x17,0xd1,0xba,0x31,0x1f,0xea,0x09,0x54,0xa1,0xdd, +0x6f,0x10,0xd3,0x8d,0x31,0x92,0x01,0x0a,0x30,0x84,0x80,0x79, +0xb4,0x1c,0x55,0xc1,0x36,0xd6,0x7d,0xfd,0xb6,0xd5,0x73,0xb6, +0x9f,0x6c,0xa2,0xdc,0x63,0x1f,0x6d,0x77,0x58,0x92,0x48,0x9f, +0xf5,0xe0,0x67,0xa0,0xf9,0x2b,0xdc,0xa0,0xea,0xe3,0x06,0x55, +0x1f,0x96,0x94,0x7b,0x28,0xfb,0x50,0x74,0x8f,0xd7,0xa7,0x8a, +0x53,0xff,0x70,0x82,0x0e,0x90,0x42,0x18,0x59,0xf8,0x7b,0xb5, +0xbc,0xc2,0x0c,0x46,0x3f,0x7f,0xfe,0x26,0xeb,0xa3,0x3c,0x0e, +0x5f,0xf5,0xc0,0xab,0x38,0x26,0x63,0xfa,0x17,0xcb,0x61,0xd4, +0xca,0x0a,0x69,0x37,0xa8,0xaf,0xb7,0xbc,0x76,0x7d,0xc1,0x89, +0xf3,0x05,0x2b,0x6a,0xc1,0xa9,0x40,0xb1,0x64,0x85,0x0b,0x18, +0x44,0x70,0x2f,0xce,0x82,0xbd,0x2c,0x98,0xe1,0x5e,0x02,0x7b, +0x61,0x21,0xee,0xa5,0xbc,0x53,0x06,0x3c,0x19,0x68,0xe9,0xee, +0xa9,0xef,0xb1,0xad,0xe2,0x1d,0x8d,0xcc,0x8c,0xf5,0x6d,0xbc, +0xba,0x42,0xfb,0x62,0x06,0x28,0x1d,0x0a,0x13,0xd0,0x54,0x5a, +0xf0,0x79,0x68,0xd0,0x87,0xf1,0x8d,0xf5,0xa1,0x6a,0x2d,0x89, +0xc6,0x77,0x42,0xde,0x9b,0x5c,0x18,0x59,0x71,0xac,0x87,0xdf, +0x13,0xac,0x1d,0x7e,0x80,0xe6,0xc2,0x4b,0x0a,0xd1,0x1c,0x5c, +0xfe,0x1c,0x57,0x02,0x2d,0x1c,0x8a,0x36,0x7e,0x6b,0xab,0x7e, +0xa7,0x7d,0x2f,0xa5,0xff,0x64,0x62,0x1b,0x6a,0x17,0x6e,0x17, +0xc1,0x81,0xf9,0x3f,0xea,0xea,0x37,0xe8,0x44,0xfa,0x03,0xb3, +0xc4,0x9d,0xec,0x7a,0x5f,0x9a,0x2f,0xfa,0xe2,0x24,0x56,0x2f, +0x8c,0xf6,0x6d,0x7a,0x03,0x70,0x95,0xa0,0x7a,0x4d,0xbe,0x4a, +0xaa,0x5f,0x7a,0xa8,0x03,0x7a,0xac,0xd2,0xf0,0x80,0x74,0x10, +0xd5,0x63,0x18,0xc6,0xc2,0x63,0x5c,0x43,0x90,0xa1,0xd7,0x0c, +0x6d,0xb6,0xdb,0x45,0x72,0x8c,0x7e,0xa6,0x7d,0x2f,0xda,0x53, +0x45,0x18,0xd3,0x83,0x31,0xd4,0x35,0xd9,0xf7,0xd0,0xff,0xcd, +0xd7,0xc5,0xf9,0x68,0x6f,0x00,0xf6,0xb8,0x44,0x3a,0xa2,0xf3, +0xb0,0xb8,0x8c,0xd9,0x58,0xe2,0xf9,0x0a,0x26,0xaa,0xdd,0xd5, +0xdb,0xcb,0xe2,0x2a,0xcf,0x83,0x9b,0x0e,0xa8,0x17,0x1b,0x7c, +0xfb,0x30,0xad,0xfb,0x22,0x0c,0x93,0x72,0x7e,0xe4,0x85,0x8e, +0x39,0x30,0x6f,0x0a,0x84,0x33,0x89,0x7d,0x32,0xf1,0xfa,0x8f, +0xc4,0x29,0xda,0xf9,0xb0,0xd3,0x51,0x69,0x4c,0xc6,0x75,0xe3, +0x38,0xd8,0xf8,0x0b,0x95,0x21,0x0d,0x54,0x86,0x68,0x88,0x66, +0xac,0xdf,0x71,0xdf,0x13,0xbe,0x14,0xc0,0xe3,0x0d,0x28,0xe8, +0xc2,0x4e,0xd1,0x8a,0x30,0xa4,0x0a,0xa7,0x14,0x81,0xac,0xf0, +0x63,0x2d,0xb7,0x55,0x69,0x42,0xd0,0x94,0xb2,0xa8,0x29,0xe5, +0x8b,0x29,0x30,0x89,0x38,0x44,0x38,0x46,0x39,0x44,0x4b,0xea, +0x92,0xe9,0x46,0x06,0x56,0x7c,0x4f,0xad,0x48,0x01,0xb6,0xc2, +0x24,0xf1,0x00,0xbb,0x83,0xaa,0xcb,0x51,0x86,0x54,0xfd,0x86, +0xc7,0x86,0x9d,0x0c,0x8b,0x95,0xe8,0x98,0x54,0x80,0xac,0x14, +0x86,0xb7,0x70,0x42,0x1f,0xe8,0x52,0x37,0x7d,0xfe,0x0d,0xd8, +0x08,0x6a,0xa2,0x85,0xa8,0x06,0x26,0x0b,0xf1,0x88,0x09,0xb8, +0xb2,0x4e,0x9b,0xf7,0xee,0x45,0x7e,0x73,0x11,0x4d,0xc7,0x69, +0x2f,0xee,0xdc,0xc8,0x79,0xcf,0xc5,0xe1,0x9d,0x5e,0xb8,0x13, +0xc7,0x64,0xce,0xbf,0xa3,0x0b,0x53,0x56,0x95,0xb4,0xf2,0x38, +0xe1,0xc9,0xee,0x3b,0xce,0x4f,0xb8,0x75,0x02,0x43,0x50,0x1d, +0x46,0x83,0xfa,0xbf,0x0f,0xb5,0x9b,0x2b,0x1d,0x6a,0xd7,0x28, +0x1d,0x52,0xaf,0x4b,0x75,0x3b,0x55,0x85,0x2c,0xae,0x27,0xa0, +0x8e,0x63,0x51,0x9d,0xa1,0x3e,0x69,0x2c,0xa1,0xaf,0x18,0x8b, +0x73,0x87,0x76,0xe9,0xdb,0x43,0xd0,0x0a,0xc6,0xd3,0xf8,0x9e, +0x15,0xed,0xf1,0x30,0x83,0x55,0x21,0xa8,0xa5,0x89,0x33,0xd5, +0x9b,0xec,0x6e,0x01,0x5b,0x0a,0xb3,0x13,0xc1,0x56,0x4e,0x6d, +0xa9,0x1c,0x57,0xe3,0x57,0xbd,0x6d,0x50,0x60,0xd6,0x07,0x5f, +0xe1,0x36,0x90,0x83,0x15,0x23,0x76,0x60,0x18,0x71,0x0a,0x73, +0x8e,0x70,0x8e,0xe2,0xe8,0xc7,0x0e,0x95,0xa3,0x25,0xd4,0xdd, +0x60,0x3d,0xed,0xbb,0xba,0xb8,0x99,0xd5,0xa4,0x63,0x3f,0x42, +0xd2,0x2e,0x06,0x61,0x54,0xbb,0xc8,0x1b,0xfe,0x54,0x00,0xd7, +0x27,0x17,0x2c,0x94,0xb3,0xa5,0x89,0xfe,0xbf,0xc0,0x0c,0x16, +0xf5,0x8e,0x13,0xd4,0xc6,0x3d,0xd4,0xb6,0x0a,0xc3,0xf1,0x36, +0x39,0x57,0x73,0xae,0xae,0x41,0x0d,0xf6,0xe2,0x78,0x66,0xb6, +0xb8,0x94,0xc0,0x36,0x28,0xc0,0x6d,0x34,0xca,0x1b,0x84,0x75, +0xe4,0x5d,0xda,0xf7,0xb9,0x4f,0x2a,0x3a,0x6c,0x06,0xbc,0xef, +0x47,0xd6,0xc6,0x64,0x27,0x5f,0xac,0x4a,0x92,0xe6,0x14,0x65, +0x1d,0xc6,0x4f,0x8d,0x92,0xcc,0xb2,0x6c,0x4a,0xe5,0x3d,0xc5, +0xad,0x15,0x8d,0xf5,0xce,0x95,0xbc,0x95,0xad,0xa9,0xab,0xae, +0xb7,0x77,0xd1,0xd0,0x9c,0xa2,0x2f,0x4b,0xf8,0x13,0xed,0xf8, +0x8b,0x47,0xa4,0x22,0xba,0xe6,0x48,0xa3,0xdc,0x30,0x26,0xc1, +0x2e,0xd9,0xf1,0xaa,0xb3,0x1c,0x27,0x1f,0x8e,0x33,0x81,0x79, +0x57,0x73,0x2c,0x0b,0xed,0x4a,0x5d,0xe5,0xbb,0x7d,0x36,0x06, +0x2f,0xa5,0x5c,0xbc,0x0b,0x1e,0x12,0xbb,0x14,0xad,0x74,0x33, +0x69,0x8e,0x51,0xdb,0x91,0xdb,0x61,0x95,0x51,0x9c,0xb8,0x6e, +0x70,0x24,0xf5,0x10,0x4e,0x43,0x1e,0xc2,0x0d,0xd8,0x6e,0x4a, +0x53,0x2b,0xbf,0xa7,0x94,0x57,0x48,0x29,0x6f,0x32,0x15,0xec, +0x94,0xa4,0x8e,0xfb,0xd3,0x2c,0x1e,0x6d,0x48,0x91,0x6e,0x7c, +0x38,0x5e,0x17,0x26,0x53,0xb0,0x14,0xff,0x51,0x27,0x5f,0xa3, +0xd4,0x24,0xa8,0x45,0xed,0xb3,0x16,0xab,0xd4,0x14,0x09,0x31, +0x4b,0xd7,0x4a,0xd5,0x8b,0x0f,0xb4,0xe0,0x07,0x62,0x6e,0x44, +0xb4,0x84,0x73,0xbf,0xe2,0x33,0xa2,0x9b,0x6a,0x94,0x6f,0x59, +0xd5,0x57,0xdd,0xd9,0xdc,0xd0,0x65,0x53,0xc6,0xdb,0x1a,0x9b, +0xd8,0xe8,0x39,0x7b,0x94,0x7b,0xd7,0x04,0xb4,0xc0,0xab,0x72, +0xfe,0x44,0x07,0x0a,0xae,0x51,0x15,0x87,0xab,0x8e,0xd6,0xc9, +0x0d,0x62,0xe2,0x1d,0x13,0x9d,0xaf,0xba,0xca,0x71,0x49,0xe4, +0x65,0x63,0xd0,0x4c,0x2b,0x30,0x28,0xb1,0xa8,0xb4,0x93,0x6f, +0xb0,0x5d,0xe2,0x31,0x33,0x38,0xd3,0x98,0x07,0x95,0x9c,0xf7, +0x8a,0x97,0x6d,0x3d,0xe6,0xb7,0x5c,0x1f,0x86,0xd6,0x1e,0xc9, +0x4e,0xbd,0x58,0x95,0x0c,0xe3,0x79,0xb3,0x1c,0x99,0xaa,0x90, +0x02,0x71,0xe4,0xd4,0x85,0xf8,0xba,0xcb,0x8d,0xe7,0x6b,0xe5, +0xd2,0x78,0x8d,0xa6,0xf0,0x1f,0xde,0x85,0xe6,0x4c,0x7c,0x4d, +0x5c,0xed,0xa5,0x5a,0x13,0xa9,0x48,0x8c,0xf4,0x9b,0xef,0xb8, +0xbd,0xd6,0x86,0xcf,0xa9,0x4b,0x6f,0x49,0x69,0xa7,0xba,0xd1, +0x0b,0x35,0x0c,0x29,0xb6,0x4e,0xe0,0x54,0x47,0x9c,0x88,0xe3, +0x71,0xa6,0xb4,0xf0,0x6c,0x18,0x7c,0x56,0xfd,0x5b,0xe6,0x83, +0xf3,0x97,0x2f,0x9e,0xbb,0x70,0xfc,0x23,0x5a,0xf3,0x75,0x95, +0x33,0xc1,0x32,0x26,0x2d,0xe6,0xcc,0x91,0x63,0x72,0x4a,0x48, +0xe3,0x89,0x4f,0x94,0xcf,0x61,0x5f,0x1a,0x2e,0xab,0x5f,0x3a, +0x17,0xc1,0xb2,0x87,0xd4,0x81,0xc4,0x50,0x07,0x22,0xa3,0x92, +0x36,0xe4,0x58,0xf0,0xb1,0x60,0x9a,0x5e,0x2a,0x26,0x34,0x58, +0x91,0x27,0x22,0x63,0x23,0x62,0x25,0x77,0x33,0xa2,0xfa,0xdb, +0xd2,0xd7,0xed,0x92,0xbb,0x59,0x43,0xba,0xbf,0x02,0x8d,0x4d, +0xdd,0xca,0xe7,0x78,0x9e,0x11,0x97,0x85,0x49,0x38,0x56,0x93, +0x70,0xfc,0x66,0x70,0x27,0x51,0x4e,0x03,0x8d,0xc1,0x69,0x94, +0x7c,0xb5,0xc0,0x87,0x74,0x62,0xc2,0x53,0x56,0x71,0x2e,0x25, +0x55,0xa1,0x06,0xbb,0x28,0x57,0x07,0xdb,0x79,0xda,0x38,0x38, +0x35,0x78,0xf0,0x2d,0xad,0xd5,0x7d,0x79,0xfd,0x5c,0x35,0xe5, +0x3f,0xe7,0xec,0xbb,0xa5,0x37,0x6b,0xab,0xeb,0xe5,0xb5,0xe2, +0x6e,0x53,0x78,0xc3,0xba,0xf8,0x58,0xf9,0x19,0x07,0xda,0xe5, +0xd8,0x64,0xbb,0xa5,0x78,0x3b,0xf0,0xf5,0xa1,0xed,0x7e,0x4d, +0x7e,0x1c,0x9e,0x35,0x87,0xe3,0x8c,0x85,0xbe,0xa6,0x05,0x8e, +0x33,0xcf,0x35,0xe1,0x61,0xde,0xc0,0xd3,0xae,0x9c,0xe7,0x34, +0xef,0xb6,0xe0,0x58,0x26,0xc5,0x4c,0xd6,0xa5,0x89,0x5e,0xc6, +0xa0,0xc7,0xb8,0xec,0xda,0xa5,0x8b,0x13,0x0f,0x16,0xd3,0x20, +0xcc,0x78,0x7c,0xfb,0x5a,0xc6,0x6b,0xfa,0x92,0xf2,0x7e,0x28, +0xa7,0xf4,0xbc,0xe4,0x9e,0x36,0xcc,0xdd,0x56,0xd8,0xc9,0xe3, +0xa4,0x5b,0x3b,0x7b,0x1c,0x1f,0x72,0xf8,0x72,0x15,0x71,0x8e, +0xa4,0x7e,0x6a,0xc8,0x7a,0x8e,0xee,0xa2,0x01,0x5f,0xf1,0x8a, +0xc2,0x46,0x41,0x61,0x33,0x85,0x0a,0x4f,0xff,0x63,0x7e,0xc7, +0xfd,0x24,0xe1,0x69,0x48,0x05,0x85,0x44,0x0f,0x7f,0x13,0xcd, +0xe4,0x72,0x18,0x51,0xfc,0xb1,0x99,0xba,0xcf,0x95,0x52,0xcd, +0xdf,0x46,0x6b,0xbe,0xaa,0x52,0xef,0x5b,0x02,0x27,0xdb,0xf0, +0xe4,0x33,0x5a,0x27,0xbf,0x41,0xdf,0x07,0x90,0xdc,0x8e,0xc9, +0xdf,0x30,0xcf,0xe2,0x9f,0x26,0xde,0xb9,0xea,0xdb,0xc2,0xe3, +0x78,0x5f,0xd4,0x0f,0xc7,0x4d,0xa7,0x93,0x4d,0xf8,0xbb,0xe7, +0x1e,0x5e,0x7c,0x78,0x99,0xd3,0xc4,0xf3,0xa6,0x70,0x7e,0x17, +0xba,0xe0,0x37,0xe0,0xb2,0x11,0x63,0xcd,0x20,0x76,0x2d,0x66, +0x98,0x0a,0x5f,0xb5,0xe3,0x55,0x56,0xdc,0x05,0xad,0x04,0x64, +0x5d,0x28,0x83,0xb5,0xdf,0x41,0x3b,0xad,0xb8,0xed,0xb4,0xe2, +0xea,0x33,0x01,0xc7,0x29,0x98,0x29,0x94,0x3f,0x31,0x12,0xd5, +0xd8,0x70,0xa9,0xe2,0x9e,0x8c,0xa7,0xa4,0x35,0xbe,0xe8,0xf7, +0x82,0xdf,0x6a,0x63,0xbb,0x78,0xb7,0xc3,0xee,0x47,0xdc,0x8e, +0x72,0xe5,0x4a,0xca,0xd4,0xfa,0xb4,0x56,0xea,0xb3,0xc2,0x59, +0x4c,0x20,0x2b,0x70,0xf9,0x0f,0x2c,0xb8,0xae,0x20,0x3f,0xc0, +0x86,0x15,0x2c,0xfa,0x59,0x90,0xc5,0xb8,0xfc,0x35,0x7d,0x66, +0x31,0x79,0x0d,0x1b,0x16,0xd3,0x0e,0x2c,0x51,0xc6,0x91,0xec, +0x4d,0x1f,0xf7,0xc2,0xcc,0xbd,0x05,0x1d,0x3c,0xce,0xbe,0xb3, +0xec,0xa1,0xe7,0x0d,0x0e,0xcf,0x19,0x53,0xcd,0x6f,0xa3,0xbb, +0xd5,0x1a,0x87,0x5b,0xe5,0xd3,0xb8,0x4f,0xe9,0xfb,0xed,0x76, +0xee,0x4f,0x9c,0x38,0x53,0x74,0x1a,0x32,0xaf,0x4b,0x9f,0x51, +0xe8,0x24,0x50,0xe8,0xa8,0x8a,0x3b,0x99,0xa0,0x63,0x41,0xc7, +0x03,0xa9,0x41,0x94,0x19,0x51,0xe8,0x98,0x47,0xc6,0xeb,0xc1, +0xd8,0xea,0xdf,0xca,0x3f,0xb4,0xcb,0x4f,0x74,0xba,0x46,0xb8, +0x47,0xb9,0x45,0xc9,0x8b,0x94,0xea,0x12,0xa3,0x2c,0xa4,0x8c, +0xa2,0xdc,0x86,0x76,0x14,0x21,0xf7,0x8c,0x59,0x88,0xb5,0x26, +0x11,0xcb,0x02,0x57,0xba,0xaf,0x2a,0x5f,0x5a,0x8c,0xc3,0x32, +0x66,0xb5,0xa7,0xf1,0xa1,0x7f,0xb8,0xc0,0x28,0xff,0xdb,0xb9, +0x03,0x85,0xaf,0xd3,0xdf,0x73,0xdf,0x5e,0x21,0xa1,0xcb,0x7c, +0x57,0x39,0xad,0xae,0x59,0x5a,0x3e,0x33,0x6f,0x76,0x4b,0x3a, +0x1f,0xf4,0xc6,0x1e,0xc6,0xf9,0xdc,0x2c,0xbe,0x5b,0xf4,0x43, +0xe6,0x6b,0x4e,0x0c,0x10,0x3b,0x88,0x70,0x0a,0x66,0x88,0x3b, +0x37,0xb2,0x57,0x0d,0x65,0x77,0x98,0xea,0x94,0xd4,0x7a,0x0d, +0xc1,0x1f,0x2f,0x88,0x2d,0x2c,0xe8,0xc3,0x7b,0xe2,0x57,0xee, +0xac,0xf0,0x2c,0xf0,0x74,0xe3,0xcb,0xbc,0x2b,0x5c,0x72,0xdd, +0xb9,0x22,0x9a,0x04,0x7e,0x15,0xae,0x0a,0xb7,0x62,0x4f,0x57, +0xbe,0xcc,0xab,0xc2,0x39,0x5f,0xda,0x3e,0x76,0x02,0x7c,0x45, +0x8c,0x7b,0x3a,0x61,0xd7,0x8a,0x1e,0x81,0xe0,0x06,0x36,0xfa, +0x4a,0x54,0x5c,0xd4,0x95,0x47,0xa5,0x0f,0x9a,0x6a,0xea,0xb9, +0x6a,0xd1,0xcd,0x4c,0x18,0xcf,0x3a,0x78,0x99,0xfa,0x6a,0xfb, +0x5b,0xe7,0x58,0x66,0xdb,0xa6,0x7b,0x3a,0xf2,0x5d,0x81,0xdd, +0xfe,0xed,0xbe,0x1c,0x46,0x8b,0xa4,0xfb,0x07,0x66,0x3b,0x1e, +0x26,0xb6,0xd1,0xd6,0x87,0xad,0x8f,0x48,0x2b,0xd3,0x3e,0xe9, +0xa6,0x86,0x71,0xe3,0x2b,0xaa,0x98,0x2a,0xa9,0x62,0x9a,0x4a, +0x05,0x85,0xff,0x09,0xbf,0x58,0x5f,0xaa,0x98,0x26,0x48,0xc5, +0xcb,0x28,0x86,0x8a,0x54,0xf5,0x3c,0xf8,0xac,0x00,0x86,0x55, +0xca,0x17,0x50,0x5f,0x45,0xfd,0xef,0x76,0xc9,0xff,0xc6,0xe2, +0x79,0x82,0x2b,0x1e,0xc3,0x0a,0xa6,0x47,0xda,0x65,0x70,0xd7, +0x56,0x56,0x94,0x5b,0x12,0x58,0xb1,0x19,0x57,0x30,0xe0,0xf6, +0x25,0x81,0x5d,0x9b,0x71,0x17,0x73,0x0c,0x77,0x92,0x34,0x56, +0xa1,0xeb,0xc2,0x86,0x63,0x98,0x29,0xf8,0xb1,0xc1,0xeb,0x77, +0x1b,0xe3,0x0a,0xa7,0x4c,0x8a,0xfe,0x3d,0x0d,0xdf,0x3d,0xcc, +0x81,0x91,0xd4,0x89,0x30,0x67,0xcc,0x4e,0x7b,0xc4,0xb8,0x71, +0x9e,0xc7,0x22,0x0f,0xdb,0x4f,0x41,0x55,0x26,0x65,0xe8,0x98, +0xa2,0x7b,0xe5,0xb9,0x9d,0xc9,0x1a,0x89,0xad,0x17,0xab,0xce, +0xbd,0xe5,0x54,0x85,0x1c,0xe5,0x09,0x02,0xe4,0x3c,0xcc,0x4b, +0x86,0x11,0xf9,0x3e,0x8d,0xfc,0xcc,0x20,0x9c,0x1d,0x8d,0x8b, +0x4f,0x85,0xee,0x75,0xde,0xe4,0x60,0xde,0xe4,0xcc,0xd7,0x75, +0x97,0x3d,0x4a,0xef,0xe5,0x70,0xf6,0xe0,0x18,0x9a,0x35,0x2e, +0xd1,0x2e,0x34,0x6b,0x9c,0xff,0xd6,0x84,0x6b,0x7e,0x80,0x2e, +0x2c,0xc2,0x2e,0x4a,0xb6,0x3a,0xec,0x76,0x5a,0x52,0xc7,0x1a, +0x8a,0x53,0x58,0x8a,0x4d,0x5a,0x54,0xa5,0x92,0x3a,0xb1,0xfc, +0x63,0xc9,0x9f,0xcd,0x9c,0xb0,0x51,0xb9,0x82,0x94,0x58,0x55, +0xec,0xcf,0x32,0x6a,0xce,0xe1,0x83,0x7b,0x5c,0xae,0x7b,0x34, +0x72,0x62,0x5d,0x2c,0x41,0x43,0xdc,0x08,0x86,0xac,0xf0,0x04, +0xe7,0x93,0x63,0x75,0x91,0x9d,0x51,0xd5,0xe6,0x47,0xf9,0xab, +0x0e,0xc9,0x46,0x71,0xf6,0x1c,0x14,0x89,0x07,0x28,0x4c,0xce, +0x5e,0x62,0x7f,0x65,0x6f,0x5e,0xbc,0x7e,0xa9,0xfd,0x52,0x62, +0x58,0x42,0x48,0x7c,0x58,0x63,0x3e,0xef,0x76,0xcb,0xfe,0x96, +0x53,0xab,0x6d,0x20,0x9f,0x16,0x98,0xe1,0x9b,0xee,0xbd,0xef, +0xf8,0xea,0x93,0x6b,0x4e,0x7d,0xd9,0xfb,0xfc,0xcb,0xb6,0x3e, +0xeb,0x32,0xde,0xc3,0xce,0xc4,0x44,0xdf,0x3c,0x34,0x33,0x24, +0x33,0x28,0xb3,0xb4,0xa4,0x54,0x91,0x5b,0x66,0x57,0xca,0x07, +0x7b,0x7a,0x3a,0x7b,0x78,0x45,0x26,0x47,0x26,0x45,0x25,0xba, +0x3a,0xf2,0x0d,0xae,0x9d,0x96,0x35,0x36,0x41,0x61,0x81,0xe1, +0xc1,0x91,0xdc,0x19,0x5b,0x87,0xb3,0x2e,0x53,0x2e,0x19,0xdd, +0x3c,0xf7,0xec,0xfc,0xb3,0x8b,0xf2,0xc5,0x6c,0x2c,0x9e,0x36, +0x86,0x23,0xac,0xdf,0xa6,0xd5,0x16,0x38,0xcd,0x50,0x5a,0x51, +0x3c,0xef,0x3a,0x0c,0xeb,0x8f,0xfb,0x83,0xfa,0xcb,0x2b,0xb3, +0x7f,0xd5,0x87,0x95,0x07,0x72,0x28,0x9b,0xcc,0xbf,0xb6,0xa9, +0x31,0xe0,0x4b,0x4e,0xf5,0x2f,0x95,0x9b,0xa4,0x05,0xdf,0xdf, +0x80,0x74,0x18,0xc3,0xb6,0x85,0x76,0x85,0x77,0x45,0xa6,0xb6, +0xd1,0xc4,0x2f,0x5d,0x50,0xbe,0xbf,0x85,0x83,0xfc,0x16,0x6c, +0x19,0x00,0xeb,0x46,0xb4,0xee,0x03,0xb7,0x82,0x7e,0x98,0xf8, +0xef,0xb9,0x86,0x13,0xfb,0x7d,0xc1,0x4c,0x0f,0xb5,0xac,0x41, +0x4b,0x1b,0x4b,0x2d,0x20,0x81,0x39,0x68,0xb1,0x8a,0xfa,0x22, +0x8f,0x54,0x73,0xbe,0x2b,0xa5,0x3b,0xbd,0x2d,0x93,0x43,0x55, +0xc8,0xc2,0x43,0x2c,0xca,0x2f,0x9a,0x94,0x3d,0x56,0xab,0xdf, +0x6f,0xc7,0x6e,0x73,0x0e,0x43,0xb9,0xad,0x7a,0x96,0x31,0x4d, +0xb1,0xb6,0xd2,0x2b,0x0f,0xa9,0x8a,0xda,0x1a,0x7f,0xcf,0x16, +0xd4,0xa7,0x08,0x3e,0x4c,0x42,0x9b,0x4c,0xdc,0xf2,0x90,0x11, +0xe7,0x28,0xe7,0x13,0x30,0xd5,0x41,0x53,0xe9,0xa4,0xa6,0x6b, +0xe0,0xa9,0xc3,0xf6,0xd1,0x07,0x57,0x1d,0x16,0x73,0xac,0x89, +0x1e,0x7a,0xf6,0xb1,0xe0,0x39,0x9b,0x68,0xa3,0xe7,0x00,0xbd, +0xc0,0xe1,0x24,0xd7,0xbf,0x2c,0xa8,0x32,0x84,0x13,0xe7,0x32, +0x15,0x99,0x25,0xd9,0x79,0x79,0x1c,0x7c,0x40,0x15,0xb2,0x4d, +0x74,0xf9,0x82,0x12,0xba,0xb6,0xa0,0x46,0xf0,0x02,0xb0,0xe0, +0xde,0x81,0xee,0x30,0x02,0x8e,0x77,0xe0,0x6c,0x26,0xab,0x2c, +0xab,0x36,0xb1,0xd8,0x28,0x83,0x3f,0xe2,0xe6,0x67,0x1a,0xe4, +0xc4,0xe1,0x53,0x13,0x08,0xa7,0x5e,0xc5,0xc5,0x04,0x5c,0x90, +0xc5,0x20,0x23,0x18,0xcd,0x04,0x20,0xd9,0x4a,0x15,0xca,0xa8, +0xe5,0x55,0x66,0xfc,0xd7,0x77,0x6e,0xbc,0xac,0x7d,0xc9,0xc1, +0x1c,0xdc,0x8c,0x7e,0x86,0x42,0x70,0x37,0x5a,0xc2,0x66,0x38, +0xd0,0x29,0x8e,0x60,0x92,0x2b,0x13,0x14,0x97,0xca,0x39,0xa0, +0x02,0xf3,0x07,0x61,0xe9,0xd0,0xd2,0xc7,0xd0,0x3c,0x53,0x7f, +0x3e,0xd3,0x2b,0xd3,0xf3,0xaa,0x07,0x87,0xfa,0xe2,0xcf,0xc4, +0x2d,0xda,0xfd,0xb0,0xdb,0x11,0x89,0xad,0x65,0xdd,0x94,0x19, +0x57,0xbc,0xa4,0x6c,0x9d,0x47,0xd9,0x9a,0x88,0xfb,0x87,0xa4, +0x1c,0x27,0x15,0xf8,0xf0,0x93,0x92,0x98,0x93,0x58,0x71,0x42, +0xd9,0x87,0xa2,0x0f,0x0d,0xdc,0x4e,0xe5,0x7a,0xa9,0xc8,0xaf, +0xa7,0x45,0x5e,0x55,0xc9,0x29,0x9f,0x12,0xe7,0xfd,0xeb,0xf6, +0x21,0xd1,0x2f,0xa0,0xfa,0x6d,0x6c,0xcf,0xfb,0xbb,0xa5,0x5f, +0xd3,0x01,0x2d,0xd6,0x04,0xd9,0x2e,0xf8,0x54,0xaf,0x80,0x0e, +0xd9,0xa4,0xfe,0x65,0x37,0xed,0xef,0x72,0x78,0x77,0x50,0x57, +0x82,0x7a,0x94,0xcb,0x90,0x95,0x62,0xba,0xa8,0x7a,0x5c,0xfe, +0x03,0xfd,0x95,0xc5,0xf4,0x57,0xf2,0xd4,0x4a,0x05,0x1c,0xf3, +0x3f,0xe6,0x2f,0x59,0x29,0x03,0x5a,0x20,0xfe,0xab,0x20,0x27, +0x2a,0x3e,0x96,0xc1,0xb0,0x56,0xea,0xe7,0x17,0x4b,0xbf,0x77, +0x13,0xfd,0xbd,0xc2,0x74,0x9c,0x48,0x20,0xae,0x05,0xe3,0x18, +0x78,0x39,0x9b,0x88,0x3b,0xa4,0x79,0x24,0x9b,0xa2,0x70,0xed, +0x0e,0x54,0x53,0x6f,0xb4,0xed,0x79,0x97,0x0f,0x63,0x13,0xe0, +0x13,0xb9,0xf0,0x29,0xa3,0x0f,0xbb,0x09,0xde,0x7b,0x02,0xf7, +0x18,0xfc,0x1c,0xed,0xc9,0x85,0x67,0x32,0xb8,0xb7,0x91,0xc1, +0x78,0x51,0x8d,0x34,0x41,0x91,0x55,0x2f,0x14,0x8a,0x72,0x2c, +0x64,0xe1,0x05,0x50,0x3f,0x41,0xb0,0x08,0x08,0x1d,0x1c,0x5b, +0x61,0x2b,0xcd,0xa2,0x97,0x5b,0xbe,0x80,0x45,0x6a,0xaf,0x75, +0x17,0xb3,0xb8,0x68,0xcf,0x76,0xd4,0x5e,0xa9,0x5e,0x60,0x96, +0x16,0x9f,0x76,0x25,0x25,0x5e,0x2e,0x06,0xf5,0x50,0x1a,0xbc, +0x43,0x05,0xc2,0x01,0x36,0xd9,0x44,0x06,0x9a,0xd4,0xfa,0xa7, +0x57,0x6b,0x08,0x2b,0xd8,0x34,0x2a,0x0b,0x32,0x62,0xb8,0xc1, +0x75,0x8b,0xc8,0xdf,0x35,0x70,0xd3,0xf7,0x34,0x9b,0x0b,0x68, +0x36,0x4f,0x12,0xed,0x98,0x80,0x58,0xff,0x93,0xfe,0x27,0x39, +0x81,0x48,0x0e,0x2f,0xfc,0x74,0xf8,0xa9,0xb0,0xd3,0x52,0x64, +0xd5,0x32,0xa8,0xc9,0xfb,0x50,0x72,0xb2,0x9b,0xb7,0x3b,0x62, +0x73,0xd4,0x9a,0x2a,0xf5,0xe9,0x4a,0x37,0x62,0x02,0x9a,0x1d, +0xd2,0xea,0x50,0x13,0xd8,0xd9,0xc1,0x0e,0x8e,0xf7,0x26,0x68, +0x44,0xa5,0x95,0x11,0x2b,0x4c,0xc3,0x1e,0xf2,0x6d,0x5f,0x4d, +0x5f,0xfc,0xf7,0x34,0xd2,0x09,0x2b,0x1b,0xf5,0x7e,0xd0,0xe3, +0xc4,0x15,0x60,0x4b,0xdf,0xb1,0xb9,0x83,0x15,0x64,0x26,0x54, +0x67,0xef,0x32,0x91,0x4e,0xcc,0x6e,0xa2,0x15,0xea,0x0e,0xad, +0x50,0x77,0xcc,0x08,0xdc,0x59,0x26,0x1d,0x03,0x2a,0xdc,0x92, +0x8e,0x6f,0x9c,0x70,0x51,0xfa,0x1e,0x62,0x58,0x89,0x7f,0x07, +0x3f,0xdd,0x13,0xc7,0x45,0xe2,0xd2,0x53,0x87,0xe7,0xf9,0x2e, +0x73,0xdb,0xdf,0xe5,0xc9,0x57,0xdc,0xcd,0x7b,0x93,0xf4,0x80, +0xc3,0x62,0xe9,0x7c,0xee,0x4f,0x7b,0xa8,0xc7,0x59,0xfe,0x16, +0x5a,0xb0,0x1d,0x5b,0xa8,0x87,0xdb,0xc5,0x6c,0x0c,0x18,0xf2, +0x38,0x84,0xd5,0x8b,0xa4,0x1e,0x47,0xbd,0x0a,0x98,0x72,0x18, +0xd5,0x29,0x3f,0xd1,0x65,0x1f,0xee,0x18,0xe9,0x10,0x2d,0x6f, +0x50,0x4e,0x97,0x6a,0x92,0x96,0x54,0x93,0x56,0x3b,0x92,0x52, +0x9d,0xa2,0xfd,0x59,0x07,0xda,0xb3,0xf9,0xe0,0x1b,0x5e,0x77, +0xdc,0xfb,0x39,0x1c,0x85,0x06,0xe4,0x68,0x67,0xc8,0xb5,0xe0, +0x0e,0x93,0x28,0x3e,0xcb,0x30,0xd5,0x30,0xc9,0x90,0x83,0x0d, +0xd2,0xf6,0x7e,0x4b,0x70,0xa1,0x31,0x35,0x71,0x9a,0xf8,0x23, +0x68,0xc2,0x8c,0x4e,0x9c,0x01,0x0b,0xd8,0xd6,0x2b,0x3d,0x69, +0x4d,0x39,0xee,0x6d,0xbc,0x99,0xff,0xc1,0x50,0xad,0x18,0x4e, +0xcc,0xee,0xeb,0x86,0x1f,0x0d,0xfb,0x85,0x0a,0x74,0x31,0xa2, +0x8e,0xfa,0x4f,0x21,0x9f,0x20,0xb7,0x89,0x4d,0xb0,0x95,0x3d, +0x62,0xca,0x53,0x92,0x4b,0x35,0x80,0x91,0x66,0x20,0x7b,0x75, +0x82,0x76,0x3d,0x6a,0xb7,0x43,0x24,0x9b,0xb0,0x38,0x77,0x7b, +0x83,0x8e,0xbd,0x93,0x95,0x9b,0xa9,0x77,0x99,0x35,0xdf,0x5e, +0xdc,0x5c,0x51,0x57,0x53,0xee,0x56,0xef,0xdd,0xe1,0xaf,0x08, +0x2f,0x4f,0xbc,0x52,0x9f,0x05,0x32,0xde,0x22,0x37,0x08,0x89, +0x45,0xbe,0x63,0x81,0x67,0x89,0xbc,0xb9,0xbd,0xa6,0xaf,0xf4, +0xa6,0x65,0x1e,0xef,0xad,0xef,0x62,0x62,0x67,0xe9,0xd6,0x1a, +0x7a,0x2d,0xe6,0x4b,0x0e,0xca,0xda,0x16,0x31,0xf9,0x79,0x4e, +0xd9,0x76,0x19,0x2e,0x57,0xe5,0x2e,0x6e,0x79,0x47,0x2b,0x43, +0x8b,0xc3,0xe5,0xb8,0x94,0x39,0x93,0x73,0x26,0x37,0x4f,0xcd, +0x80,0xf1,0x3f,0x17,0x70,0x2e,0x50,0x5d,0x8c,0xda,0xce,0xe0, +0xaa,0x88,0x95,0xfb,0x16,0x52,0x5b,0xd1,0x78,0xab,0xe0,0xfe, +0xd5,0x17,0x72,0x58,0x05,0x06,0xd2,0x9f,0x31,0x97,0xb2,0x17, +0xca,0xcf,0x2b,0xaa,0xd5,0xaa,0xd8,0x42,0xfc,0x95,0x14,0xe5, +0x57,0xb5,0x64,0xd6,0x3a,0xe6,0xf2,0x61,0x4e,0xae,0xf6,0x1e, +0x7e,0x1c,0x34,0x7c,0x45,0xf2,0x02,0x8a,0x9d,0x32,0xdc,0x6a, +0xf2,0xf8,0x90,0x52,0xf7,0x9a,0x80,0x5c,0xae,0x46,0x34,0x22, +0xf0,0x5b,0x0b,0xfe,0x76,0x03,0x7a,0x60,0xe3,0xe0,0x1a,0xca, +0xec,0x03,0xb8,0x9f,0x91,0xa8,0xab,0xfc,0xb1,0x9a,0x62,0xbf, +0x2b,0xbb,0xcd,0xc5,0x57,0xa2,0xae,0x4c,0x73,0xf8,0xa4,0xa6, +0xb5,0xe4,0xff,0x4b,0x5d,0x5d,0x32,0x51,0x93,0x81,0xe3,0xd0, +0x41,0x76,0x8b,0x0d,0xf7,0xa9,0xb9,0xb8,0xa8,0x7c,0x4e,0x1c, +0x16,0xe8,0xaf,0xdf,0x77,0xa0,0xc8,0x90,0xff,0xe2,0xe1,0xad, +0x5f,0x1b,0xff,0xa4,0xc5,0xfb,0x7b,0x52,0xdb,0x9e,0xdb,0x90, +0xac,0xb8,0x70,0xf9,0xe2,0xd9,0x0b,0xb1,0xdf,0xe1,0x78,0xbe, +0xb6,0x29,0xaf,0x21,0xb9,0x5c,0xfa,0xff,0xf9,0x93,0xdf,0xa0, +0x9c,0xaf,0xad,0xd0,0x84,0x71,0x31,0x57,0x8f,0x9e,0xa3,0x92, +0xf7,0xe8,0xd1,0x93,0x17,0x64,0x49,0x95,0x97,0x6a,0xef,0xab, +0xb5,0x18,0x9b,0xb3,0x4b,0x8f,0x99,0xd8,0x1c,0x54,0xb7,0xbe, +0x75,0x2c,0xe9,0xc8,0xc5,0x23,0x47,0xe5,0x47,0x8e,0x9c,0xa2, +0x77,0xab,0x2e,0xb7,0x0c,0xd0,0xbb,0x96,0x2c,0x0e,0x8b,0xd0, +0xde,0xba,0x48,0xdd,0xef,0x57,0xe2,0x34,0x7f,0x0f,0x0e,0xd7, +0xda,0xc3,0x9d,0x9f,0x0b,0x6b,0xbf,0xa0,0xce,0xe9,0x14,0x75, +0x4e,0x9c,0x68,0xc2,0x06,0x9f,0x08,0x8e,0x0d,0xa2,0x49,0x31, +0xce,0x84,0x96,0x39,0xcb,0x98,0x04,0x3d,0xf8,0x24,0x1f,0x3e, +0x29,0xfa,0xad,0x46,0x1e,0xdb,0x69,0x1b,0x49,0xcb,0x7f,0xb4, +0x1c,0xfc,0xdf,0xd5,0xb1,0x59,0x66,0x39,0x39,0xd9,0x85,0x19, +0x85,0x72,0x71,0x5f,0x97,0x10,0xcf,0x16,0x36,0xe6,0x77,0xe7, +0x5e,0xe3,0x28,0x2c,0x17,0x49,0xe2,0x4c,0x9d,0x8a,0x33,0xe5, +0x6a,0x31,0x96,0xc0,0xac,0x4e,0x9c,0x05,0x9a,0x46,0xa2,0x39, +0xb3,0xb7,0xd8,0xe7,0x21,0x8c,0x50,0x03,0x23,0x23,0x34,0x60, +0x91,0x0f,0x36,0xda,0xa6,0xab,0x9e,0xab,0xf3,0xf0,0x5a,0x56, +0xeb,0x85,0x1f,0xa4,0x3f,0x2c,0x5e,0x6e,0xd9,0x42,0xe3,0x04, +0x84,0x49,0xea,0x96,0xe1,0x54,0x26,0xe6,0xd8,0xd9,0x73,0xc7, +0x34,0x54,0x85,0xbb,0x70,0x9a,0x40,0x01,0x78,0xc3,0xc8,0x2e, +0x1c,0x09,0xbc,0x3e,0xf2,0x54,0xfa,0xf1,0x06,0xc8,0xcf,0x81, +0x6d,0x42,0x64,0x27,0x5e,0x7c,0xa5,0xbd,0x14,0xa3,0xf0,0x38, +0x83,0xa7,0xa2,0x71,0xc5,0x06,0x9c,0xac,0xde,0xea,0xf8,0x35, +0x68,0xa4,0xc3,0xea,0xf3,0x10,0x25,0x7f,0xcf,0xa0,0x74,0xd2, +0xa8,0x7b,0xa4,0x67,0x94,0x87,0xf4,0x35,0xf1,0x9f,0x5d,0x33, +0x60,0xc9,0x73,0x68,0xc0,0x44,0x6c,0x80,0x71,0xe2,0x16,0x36, +0xf0,0x58,0xd0,0xb1,0x00,0xaa,0xeb,0x46,0x18,0x8b,0x13,0xd8, +0x88,0x13,0xe1,0xb1,0xe1,0xb1,0xd2,0xd7,0x3c,0x63,0xab,0x7f, +0x29,0x7b,0xdf,0x41,0xe9,0x75,0x86,0xf4,0x85,0xd1,0x62,0x38, +0xc8,0x2a,0xd5,0xe9,0xe8,0xd3,0x5f,0xbd,0x1e,0xd6,0x30,0x95, +0x58,0x49,0x4a,0xb7,0xe6,0xad,0xcd,0x5d,0xd6,0x9b,0xc5,0xfb, +0xff,0xe0,0xf3,0xad,0xc7,0x23,0x69,0x45,0x52,0x21,0xa9,0x79, +0x50,0xf0,0x6b,0xf2,0x0b,0x93,0x14,0xfe,0xf0,0x7a,0x9f,0xe5, +0x4e,0x07,0x39,0xda,0x70,0x0f,0x92,0xbe,0x33,0x69,0x63,0xd2, +0xba,0xde,0xab,0xfc,0xe1,0x6f,0x22,0x9e,0x85,0xdd,0xe7,0x70, +0x79,0x14,0xb9,0xbc,0xfd,0x82,0xe6,0xf9,0xf5,0xbd,0xf1,0xfc, +0xe9,0x67,0x27,0x9e,0x1e,0x7b,0x44,0x2b,0xec,0x58,0xe1,0x04, +0xa9,0xe8,0x07,0x43,0x8c,0x80,0x91,0x3a,0xff,0x87,0xb2,0xaf, +0x00,0xaf,0xe2,0xda,0xda,0xa6,0x85,0xcc,0x4c,0x91,0x60,0xdd, +0x74,0x12,0xda,0x04,0x82,0xbb,0x05,0x02,0x84,0x12,0x34,0x78, +0xf4,0x48,0xdc,0xdd,0x83,0x84,0xb8,0x00,0x09,0x52,0x08,0x10, +0x77,0xf7,0x20,0x71,0xb7,0x13,0xc1,0x9d,0x16,0x5a,0xf4,0x42, +0xa9,0x2b,0xb5,0x35,0xe7,0x5b,0x93,0xfb,0xfd,0x7b,0x12,0x7a, +0xbf,0xef,0xbf,0xbd,0xff,0xfd,0x9f,0xfb,0xf0,0x3c,0xe7,0x1c, +0xe6,0xe4,0xec,0xd9,0x7b,0xed,0xb5,0xde,0xf7,0x5d,0x7b,0xb6, +0xe0,0x48,0xf4,0x43,0xd9,0x80,0x17,0xab,0x8f,0xbf,0x11,0x97, +0x70,0xd7,0x48,0x17,0x9a,0xe8,0xda,0x53,0x44,0xc7,0xb1,0xb0, +0xf8,0xbb,0xff,0x35,0x48,0xbf,0x6e,0x78,0x90,0x7e,0x32,0x1b, +0x1a,0x1f,0x9a,0x10,0x3a,0x04,0xd1,0xef,0xd7,0x02,0x7b,0x1e, +0xb8,0x1e,0x4e,0x5f,0xca,0x76,0x87,0xc7,0x5c,0xd5,0xfb,0x51, +0x49,0x44,0x1e,0xde,0x11,0x78,0xe6,0x1e,0xd6,0x11,0x31,0xd9, +0x02,0x02,0xf0,0x89,0x24,0x98,0x64,0x1a,0x3f,0x33,0xad,0x79, +0x79,0xad,0xba,0x70,0x0f,0xa2,0x59,0x5c,0x62,0x44,0xea,0x36, +0x5e,0x98,0x5f,0xbe,0x52,0x55,0xc8,0x07,0x7d,0xe1,0xfe,0xa5, +0xeb,0x43,0x0e,0x9f,0xc4,0x93,0xc0,0xa5,0x6e,0xab,0x14,0xdb, +0x5a,0xdd,0xf8,0xfe,0x4f,0x1b,0x7f,0x2a,0x7f,0x45,0xe5,0xe4, +0x13,0xb5,0x39,0xa1,0x77,0x41,0x4e,0xda,0x76,0x37,0x54,0x7a, +0x19,0xa5,0x80,0x51,0xa8,0x0b,0x3a,0xfa,0x18,0x2e,0xb6,0xf5, +0x08,0x47,0x60,0x87,0x18,0xda,0x2d,0x84,0x82,0xa9,0xb8,0x61, +0x3a,0x93,0x23,0xd7,0x78,0xcc,0xb4,0x67,0xe7,0x77,0xe8,0x0a, +0x9e,0x78,0xe8,0xa5,0xb4,0x82,0xe4,0x84,0x82,0x50,0x81,0x7d, +0x86,0x0a,0xec,0xb1,0xa2,0x35,0x7b,0x80,0xba,0xdd,0x7e,0xea, +0x78,0x13,0x15,0xd4,0xf1,0x22,0x8e,0x47,0x1c,0x0b,0x3f,0x2e, +0x75,0x84,0x66,0xde,0xef,0x45,0x5f,0x54,0x1c,0x55,0xf1,0x3e, +0x87,0xbc,0x0f,0x79,0x1f,0xe6,0x20,0xe4,0x0f,0xd5,0x34,0x58, +0xc5,0x96,0xc1,0x11,0xe9,0x89,0xcf,0x6c,0x30,0x65,0xd5,0xef, +0xd9,0x92,0xe5,0x18,0xfa,0x8a,0x35,0xc5,0xc7,0xc4,0xb6,0xc6, +0x85,0xdd,0x1d,0x2a,0xb7,0xb2,0xd0,0x29,0xb6,0x69,0xbf,0x94, +0xd5,0x98,0xd8,0xa9,0x75,0x96,0x39,0x69,0x93,0xe6,0xd6,0x6c, +0x56,0x4c,0x81,0xeb,0xda,0xa1,0xce,0x07,0xda,0x77,0x59,0x70, +0xa7,0xa9,0xde,0x29,0xeb,0x0c,0x97,0x16,0x53,0x7a,0xd5,0xea, +0x46,0x6c,0xe7,0xa7,0xda,0x77,0x57,0xda,0xd6,0xb9,0xb2,0x7b, +0x22,0x14,0x4a,0x0b,0x9d,0x52,0x9b,0xf6,0x81,0xb4,0x86,0x53, +0x1d,0x5a,0x9a,0x90,0x09,0x0d,0x04,0xde,0x56,0xe1,0xdb,0xb0, +0xfa,0x29,0x4d,0x56,0xd2,0x69,0xb2,0x32,0x5e,0xb4,0x67,0x68, +0x65,0x13,0xf6,0xd1,0xea,0x4e,0x96,0x8b,0xef,0xff,0x59,0x5d, +0x6a,0xfc,0x89,0x79,0xf0,0x76,0xd1,0x37,0x95,0xb4,0xbe,0x5e, +0x87,0x3c,0x0f,0x79,0x1c,0xe6,0xd4,0xa6,0xf0,0x37,0x32,0xff, +0xbb,0x01,0xb8,0x25,0x1e,0xc5,0x5b,0x03,0x0b,0x96,0x58,0x7f, +0x35,0xc7,0xd0,0x06,0x0e,0x1b,0x60,0x98,0x12,0xc2,0xf0,0xfd, +0x01,0x78,0x1f,0x8e,0x75,0xe3,0xb1,0xe7,0x70,0xaa,0x63,0xf5, +0x4f,0xdf,0x33,0xf8,0x31,0x95,0xe9,0xb8,0xea,0x05,0xac,0x62, +0xfa,0x56,0x92,0x17,0xb0,0x6e,0x25,0x2b,0xde,0xa5,0x57,0x2c, +0x71,0x11,0x58,0xb2,0xc2,0x09,0x9c,0x48,0x13,0x9e,0x55,0x34, +0xe1,0x09,0x98,0x02,0xeb,0x96,0xe1,0x3a,0xc6,0xd2,0x9e,0x2c, +0x98,0xfe,0x1d,0x0b,0xab,0x16,0x90,0xef,0x60,0xd4,0x02,0x16, +0xd7,0x59,0x93,0x39,0xd3,0x7f,0xa2,0x17,0xe6,0x90,0x9f,0x60, +0xd4,0x1c,0x8a,0xcb,0xed,0xbf,0x90,0x03,0x87,0x42,0xa8,0xa3, +0x73,0xe0,0xfb,0xaa,0x67,0x39,0xe8,0x5f,0x87,0x4e,0x0c,0xc0, +0xce,0x5f,0x44,0x0b,0x36,0x2c,0x9e,0xe6,0x7e,0x52,0xd2,0x65, +0x45,0xcd,0x1e,0x7d,0x34,0xea,0x58,0xd4,0xd1,0x14,0x4b,0xfe, +0x75,0xf9,0x67,0x25,0x8f,0x2f,0x72,0x97,0xd4,0x87,0x09,0xb6, +0xb1,0x78,0x24,0x16,0x57,0xed,0xc1,0xe9,0x3a,0xed,0xce,0x1a, +0x37,0x61,0x45,0x06,0x65,0x84,0x3c,0x6d,0x88,0x15,0xba,0x3b, +0xd9,0x41,0x6f,0xa5,0x24,0x71,0xdf,0xa1,0x12,0x57,0xed,0x4e, +0xc9,0xe4,0x0e,0x13,0xbf,0x39,0x72,0xcd,0x81,0xdd,0x2d,0xd1, +0x7c,0xc9,0xa7,0x99,0x2f,0xce,0x7e,0xca,0x35,0xe0,0x06,0xf6, +0x74,0xf5,0xe9,0xea,0xc4,0x73,0x8e,0xc9,0x7c,0x2c,0xbe,0x15, +0x8e,0xac,0x97,0x01,0x77,0xd5,0x1e,0xe3,0x94,0xd0,0x4e,0xa5, +0x84,0x29,0x9b,0x59,0x93,0xd9,0x9c,0xda,0xe2,0x90,0xce,0xc7, +0xda,0xc4,0xd8,0x87,0x39,0x71,0xb8,0xcc,0x06,0xde,0xc2,0x76, +0x6b,0x88,0xb3,0xc7,0x73,0xdf,0x32,0xf1,0xab,0x7c,0xf7,0x18, +0x6f,0xad,0xb1,0xe7,0x3f,0x79,0x5a,0x77,0xef,0x0c,0xbc,0xcd, +0xfd,0x08,0x36,0x4c,0x95,0x5f,0xc9,0x40,0xee,0xdd,0xcc,0x07, +0x5a,0x59,0xb8,0x80,0xc1,0x0f,0x23,0x29,0x93,0xcd,0xc6,0x05, +0x3a,0xe7,0xad,0x7f,0x85,0xd1,0xb5,0xcf,0xcf,0xc0,0x5c,0x8a, +0x28,0xa7,0x50,0xbb,0x74,0xe9,0x0b,0x9c,0x70,0x8e,0x0a,0xd9, +0x11,0x30,0x33,0x1c,0x34,0x61,0xad,0x36,0x76,0x83,0x8c,0xc4, +0xd6,0x47,0x36,0x45,0x56,0x3b,0x87,0xf3,0x59,0xbe,0x99,0xae, +0xa9,0xce,0x34,0xfa,0xac,0x28,0x51,0x9a,0xd4,0xed,0xe8,0xb5, +0xbb,0xca,0xe1,0x31,0x2b,0x08,0x64,0x9a,0xcd,0xaf,0x5b,0x5e, +0x71,0xe7,0x06,0xf5,0xf1,0x1a,0x81,0x11,0x2a,0x5a,0x80,0xfe, +0xff,0xa4,0x83,0x32,0xe9,0x59,0x66,0x82,0xe4,0xad,0x9a,0x72, +0x51,0x8b,0xb5,0x39,0x94,0x62,0x06,0x13,0x8a,0x81,0x29,0xfb, +0xe1,0xa2,0x56,0x82,0xca,0x3d,0xc6,0x3d,0xc6,0x35,0x4e,0x0b, +0x62,0xd4,0x4a,0xe2,0x61,0x69,0x6f,0x6f,0xe6,0x5e,0x69,0xc7, +0x5f,0x6b,0xec,0xea,0xac,0xa3,0x49,0xe7,0x47,0x53,0xa8,0xd7, +0xce,0x97,0xbc,0xf6,0x23,0xf1,0x28,0x81,0xa7,0xb8,0xe6,0xd2, +0xe7,0xcd,0xf8,0xcc,0xf1,0x6f,0x66,0xa8,0x8f,0x4f,0xe1,0x07, +0x13,0x71,0x96,0x52,0x98,0x85,0x4b,0x28,0x3d,0x65,0x5b,0x6b, +0xc0,0x54,0xa6,0x35,0x33,0xaf,0x49,0x17,0x66,0xc0,0xfb,0xdd, +0xf8,0xfe,0x15,0x16,0xb5,0x05,0x9e,0x98,0x99,0x5d,0x62,0xad, +0x67,0x92,0x78,0x1b,0x9f,0x70,0xcb,0xf0,0x5c,0x17,0xfe,0x49, +0x5e,0x6d,0x5d,0xd2,0x4d,0xee,0xb2,0x0d,0xe3,0x99,0x13,0xd5, +0xa0,0xf3,0xda,0x4e,0x1c,0x0d,0xb3,0x19,0xb8,0x68,0x46,0x22, +0xa5,0xa3,0xcd,0x1a,0x61,0xa4,0x19,0x8b,0x53,0x46,0x29,0xc5, +0xd1,0xdd,0xec,0x61,0xcc,0x23,0x0d,0x7b,0xeb,0x02,0xce,0x7b, +0xd5,0xd6,0xf3,0x5e,0xe7,0x5c,0xab,0x5c,0xa5,0x75,0xa8,0x0a, +0xf5,0x22,0x82,0x56,0xb0,0xde,0x12,0xd7,0xaf,0x1c,0x7a,0x45, +0x4b,0xe6,0xa4,0x5c,0x43,0x78,0xca,0x88,0xdb,0x5f,0x92,0xb0, +0xfa,0xfd,0x2d,0x81,0x35,0x0e,0xc1,0x7c,0x89,0x47,0x91,0x4b, +0x8e,0x0b,0x27,0x4c,0x83,0x59,0x24,0xd2,0x2d,0xc8,0x71,0xaf, +0x67,0x6b,0x20,0x5f,0x7a,0xa1,0xac,0x23,0xa7,0x81,0x13,0x3b, +0x06,0x8d,0x89,0x7b,0xb4,0x7b,0x8c,0x5b,0xac,0x34,0xa0,0x3e, +0x64,0xb2,0x95,0x4f,0x28,0xb3,0xa4,0x52,0x66,0xd1,0x14,0xe5, +0xec,0x81,0xf8,0xfd,0x09,0xfb,0x69,0x7a,0xa8,0xa9,0xa0,0xe9, +0x7d,0xc4,0xb1,0x88,0xa3,0xe1,0x43,0x03,0xea,0x13,0x4a,0x61, +0x54,0xf9,0x8f,0xb5,0xdc,0x52,0xf5,0x2e,0x89,0x39,0xe6,0x4b, +0xcc,0x71,0x5d,0xfc,0x89,0xaa,0xa6,0x82,0x44,0xf6,0x15,0x44, +0x77,0x61,0xf4,0xdf,0x20,0xa9,0x0b,0x97,0xb2,0xb9,0x55,0x79, +0x0d,0x19,0x17,0xa5,0xb3,0xdb,0x5d,0x42,0x9d,0xf7,0xb9,0x70, +0xf8,0xc2,0x0a,0xe2,0x56,0x61,0x80,0x15,0x04,0x2c,0x67,0x8e, +0xe1,0x19,0x25,0x24,0xb0,0x01,0xdb,0x56,0x5a,0xe1,0x5a,0x9b, +0x42,0x19,0x0f,0xa6,0xfd,0xdf,0x5c,0xce,0xfc,0x99,0x8a,0xb2, +0xcc,0x79,0x3f,0x9a,0xc3,0xf6,0x3d,0x85,0xfd,0x3c,0x2e,0xef, +0x5e,0xde,0xee,0x7f,0x93,0xa3,0x44,0x22,0x90,0xd8,0xaa,0xf0, +0xfa,0xf0,0x72,0x79,0x28,0x9f,0xe3,0x9f,0xed,0x95,0xee,0x2d, +0xcd,0xe6,0x90,0x0e,0x62,0xb0,0x11,0xf4,0xc0,0x86,0x15,0x43, +0x07,0x17,0x50,0xe0,0x75,0x89,0x90,0x80,0xd7,0x01,0x46,0x4b, +0x23,0x56,0x4b,0xbe,0xa1,0xc0,0x5b,0x4b,0x81,0xf7,0x7d,0x0a, +0xbc,0xc1,0x87,0xf6,0x1e,0x09,0xa2,0xbc,0x31,0x4a,0x26,0x8d, +0x32,0x4a,0x4f,0x48,0xb5,0xa9,0xfa,0xba,0x00,0x6c,0x8f,0x16, +0x4c,0x15,0xae,0x90,0xdf,0xa1,0x61,0x3a,0x2b,0xa6,0x7c,0x29, +0x0d,0xa3,0x6c,0x86,0xdd,0x2c,0x34,0xa0,0x8c,0xa0,0x37,0x04, +0x82,0x37,0x4b,0xfd,0xc8,0x9b,0x80,0x37,0x65,0x2d,0x6f,0x16, +0xc3,0x5a,0xa8,0xb0,0x83,0xd1,0x38,0x81,0x85,0x16,0x98,0x40, +0x70,0x02,0xbe,0x07,0xf4,0xb3,0x15,0xf5,0xbb,0x0e,0x4c,0x7c, +0x29,0xd7,0xc7,0xa3,0x36,0xf4,0x37,0x6e,0x3b,0x0d,0x2d,0x66, +0x28,0x24,0x59,0xcf,0x5e,0x7b,0x75,0x23,0xfb,0xa9,0x74,0x50, +0x83,0x4a,0x3a,0xa8,0x21,0x7b,0xd5,0x8b,0xdd,0x30,0x66,0x77, +0x29,0x15,0x8f,0xaa,0x0d,0xdd,0xce,0xb7,0x29,0x34,0xf7,0xa9, +0x9f,0x10,0x99,0x31,0xae,0xbe,0x43,0x5f,0x74,0x15,0xa0,0xbb, +0xa7,0xf7,0x2a,0xac,0x96,0x5e,0xf4,0x7a,0x50,0x8f,0x11,0x6b, +0xc5,0x20,0xf2,0x26,0xb9,0x95,0x92,0x8c,0x52,0xda,0xa2,0x29, +0xd4,0xa5,0xf7,0xc5,0x53,0x41,0x2c,0xf5,0x8f,0x4c,0xe4,0x59, +0x85,0x94,0xbe,0x6b,0x15,0xc3,0xb8,0xb2,0x5f,0x6b,0xb4,0x8e, +0xf6,0x3a,0x47,0x3b,0xc7,0x38,0xc5,0x69,0x0d,0x0d,0xbd,0xec, +0x41,0x03,0x69,0x48,0x31,0x5c,0x8f,0x58,0xaf,0x33,0xdf,0xb1, +0xcb,0x82,0xb3,0xf8,0x16,0xe6,0x76,0xe2,0x5c,0xe9,0xf4,0x40, +0x03,0x6b,0x30,0x58,0x88,0x56,0x56,0xf0,0x11,0x63,0x64,0xbe, +0xca,0x66,0xa1,0x63,0x91,0x92,0x2f,0xcf,0x2c,0xcf,0x2e,0xc9, +0xe4,0xf0,0x7a,0x7f,0x07,0x94,0xdb,0x0c,0xc0,0x6b,0xf6,0xe4, +0xf1,0x53,0x27,0x4e,0x1e,0xaf,0xbb,0xc8,0xef,0x3d,0xef,0x5b, +0xed,0x5f,0xcc,0xc1,0xdb,0x5d,0x14,0xc8,0x3a,0xdb,0xdb,0xfb, +0x5b,0x68,0x66,0xa2,0x8d,0x89,0xa4,0x28,0xac,0x68,0x7f,0xfe, +0x01,0x0e,0xcf,0x32,0xf5,0x25,0x0d,0x15,0x0d,0x17,0xb8,0xaf, +0x19,0x2c,0xc0,0x83,0xe4,0x15,0x94,0x2f,0x67,0xb1,0xdc,0x96, +0x40,0xf9,0x22,0x2c,0x67,0x34,0x41,0x0d,0x63,0x88,0x57,0xb4, +0x57,0x8c,0x17,0x25,0x77,0xdf,0xa1,0xd9,0x0c,0x0f,0xa8,0x75, +0x8f,0x0e,0xcd,0x66,0x30,0x95,0xc4,0xcc,0xf0,0x8c,0x03,0xe5, +0xff,0xcc,0x66,0xa0,0x2e,0xc7,0x55,0xfe,0x5a,0xf1,0x6d,0x03, +0x47,0xfb,0x49,0x49,0xd2,0x8b,0x53,0x8b,0x93,0x8b,0x69,0x12, +0x00,0x3e,0x62,0x19,0xfa,0xbc,0x62,0xf6,0x6e,0xb6,0xdd,0xbc, +0x73,0xf7,0x05,0x17,0xbe,0xb6,0xe6,0x42,0x53,0x39,0xcd,0xec, +0xe7,0x30,0xb8,0x3b,0x1e,0xe7,0xc7,0x6e,0xd6,0xb1,0x38,0x14, +0x1d,0x61,0x33,0xb5,0x2a,0x2b,0xac,0xc5,0xe7,0x4a,0x40,0x8b, +0x96,0x4b,0x68,0x4a,0x44,0x6a,0x78,0x4a,0xa8,0x96,0x5f,0xbc, +0x47,0xbc,0x7b,0x02,0xf7,0x03,0xac,0x02,0x47,0x5c,0xf5,0xc0, +0x7a,0x03,0x0d,0x5f,0x47,0x58,0xa2,0xc7,0x6e,0x8c,0x5b,0x7f, +0x68,0x4f,0x42,0x32,0x75,0xc6,0x09,0xe9,0xb0,0xbc,0xe8,0x75, +0x51,0x72,0x58,0x52,0xf8,0xd9,0x48,0xce,0x96,0xc9,0x96,0x69, +0x5c,0x65,0x1e,0x96,0xd4,0x3c,0x48,0xd3,0xcd,0x78,0x99,0x04, +0xd3,0xe1,0xa8,0x36,0xa5,0xe7,0x43,0x04,0xc7,0x4c,0xa3,0x19, +0x36,0x2c,0x9b,0xf2,0x07,0xfd,0xc4,0xd0,0x77,0x18,0x03,0x0c, +0x8e,0x61,0xc5,0xa7,0xa0,0x21,0x0d,0x46,0xea,0x48,0x83,0x91, +0x1b,0xc4,0x8d,0x04,0x47,0xcc,0x92,0x1e,0x5b,0x2c,0x94,0xd6, +0x92,0x8d,0x80,0xb7,0x71,0x04,0xcd,0xff,0xc2,0xd5,0x65,0xa4, +0xc7,0x5c,0x81,0xbb,0x6c,0x85,0x3d,0xed,0xec,0x60,0xa5,0x38, +0x4a,0x3a,0x43,0xc3,0x18,0x2f,0x33,0xa7,0x72,0x4e,0xe5,0x9c, +0xcc,0x91,0xf6,0xe0,0x32,0xc2,0xef,0x70,0x34,0x63,0x98,0xb0, +0x69,0xe7,0x3a,0x9d,0x66,0xa7,0xc6,0xae,0x82,0xbe,0xd4,0x5e, +0x2d,0xaa,0x49,0xf7,0x10,0x43,0x0c,0x7f,0xcc,0x0a,0x87,0x69, +0x81,0x71,0xc5,0xa1,0x95,0xd1,0xd9,0xb6,0xa1,0x7c,0x66,0x58, +0x76,0x60,0x5a,0x08,0x07,0x1e,0xc7,0x48,0x4e,0x61,0x76,0x69, +0x5a,0x91,0x4d,0x36,0x1f,0x13,0x18,0x19,0x74,0x80,0xe6,0xac, +0x65,0xb6,0x20,0x37,0xc1,0x0d,0xb6,0xb0,0x61,0xcd,0xc0,0x53, +0x30,0x6f,0x47,0xf3,0x2b,0xe0,0xd1,0xce,0x88,0x0d,0x4b,0xc8, +0x52,0x74,0xf8,0x92,0x55,0xaf,0x12,0x03,0xa8,0x07,0x7f,0x73, +0x1f,0x5a,0x61,0xfd,0xe0,0x42,0x5c,0x0f,0x57,0xa5,0xdd,0x85, +0x56,0x24,0xd9,0xb5,0xde,0xd5,0xae,0xda,0xe6,0xc7,0x9a,0x1e, +0xf0,0x44,0xe2,0x4a,0x69,0x1a,0x26,0xd5,0x17,0xd5,0xa6,0x0c, +0x48,0x0f,0x4b,0x46,0x64,0xc1,0xf8,0x70,0x98,0x31,0x55,0x58, +0xc9,0xa4,0xd0,0x44,0x7f,0xd1,0x73,0x06,0xa2,0xe0,0x18,0x31, +0x12,0x1b,0x1e,0xd2,0xf6,0xed,0x51,0x9f,0x26,0x0f,0x4d,0x8d, +0xf0,0xa8,0x42,0xb8,0xda,0xc3,0x8a,0xf7,0x07,0xe7,0x13,0xb7, +0x68,0xb7,0x58,0x57,0x0a,0x38,0x7b,0x87,0x29,0x7a,0xcd,0x33, +0x9a,0xdf,0x65,0xd1,0xfc,0x6e,0xa2,0x68,0xc3,0xee,0xa7,0x80, +0xb3,0x8f,0xf6,0xfe,0x44,0x99,0xf8,0xc1,0x30,0x46,0x4f,0x2e, +0x01,0xb6,0xfc,0xa7,0x1a,0xad,0xc5,0x6a,0x85,0x94,0xbf,0x2d, +0x96,0xf2,0xb7,0xaf,0x15,0x24,0xdc,0x2b,0x2c,0x38,0x38,0xa8, +0x26,0x90,0xaf,0xac,0xca,0x29,0xcd,0xbd,0xc8,0xa1,0x67,0x3c, +0x29,0x0a,0xce,0x0b,0xca,0xf1,0xab,0x2d,0xe1,0x23,0x2a,0x43, +0xaa,0x0e,0x50,0x1f,0xbd,0x38,0x9f,0x14,0xa6,0x14,0xa4,0xe6, +0xa5,0x06,0xd4,0xf1,0xf6,0x41,0xa6,0x21,0xdb,0x22,0x39,0xda, +0x9e,0xb8,0xe3,0x87,0x8e,0xc7,0x9d,0x48,0xb5,0xe3,0x3b,0x93, +0xbb,0x32,0x5b,0xb3,0x13,0x5a,0xf8,0xfd,0x47,0x86,0x06,0xe4, +0x41,0x9f,0xcd,0x4a,0xcc,0x3c,0x9d,0x75,0x26,0x73,0x51,0xa5, +0x61,0xf7,0xee,0xda,0x06,0xde,0xb6,0x37,0xf0,0xe3,0xd8,0xe7, +0x1c,0xfe,0x10,0x41,0x94,0xc7,0xb6,0x25,0xf8,0xea,0x84,0x1c, +0x3b,0x12,0xbf,0x7f,0xaa,0x07,0x93,0x6e,0xa7,0xd1,0xcc,0x34, +0xe6,0xe4,0xd7,0x9d,0xd1,0x4d,0xea,0x3a,0xf5,0xe9,0x0b,0x6d, +0xb4,0xb5,0x6b,0x65,0x4e,0xcc,0x3b,0x60,0x6d,0x6d,0x7b,0xc1, +0x89,0xbf,0x7a,0xb5,0xf8,0xd6,0x29,0x69,0xaf,0xdd,0xb9,0x71, +0x04,0x8f,0xab,0xe0,0x38,0x8b,0x1b,0xf1,0x2a,0xb9,0x66,0xb9, +0x95,0xc5,0x71,0x11,0xcb,0x0d,0xf4,0x69,0x3f,0xb6,0x76,0x94, +0x75,0xe6,0x50,0xe4,0x79,0x8a,0xf3,0xfa,0x85,0x05,0x16,0xbb, +0x19,0xbc,0x83,0xd3,0xc8,0xe9,0xf2,0xc4,0x0a,0x69,0x25,0xc7, +0x15,0x7d,0x9a,0x6a,0xae,0x57,0xaf,0x23,0x0e,0x42,0x7c,0x0b, +0x86,0x5e,0x85,0x93,0xad,0x78,0xb2,0x5f,0x6e,0x81,0x31,0xf6, +0x10,0xb3,0x87,0x15,0x27,0x8b,0x53,0x86,0x67,0xeb,0x3c,0xa6, +0x70,0x9d,0x4c,0xe1,0x7a,0x9c,0xb8,0x9b,0x39,0x70,0x84,0x02, +0xf6,0x11,0x4e,0x78,0x47,0x3e,0x3c,0x5b,0x27,0x21,0xe2,0xa8, +0x04,0xd7,0xe3,0xce,0xff,0x56,0xfd,0xba,0x2d,0xbe,0x87,0xf7, +0x94,0x06,0x0f,0x62,0xb8,0x72,0xe9,0x91,0xaa,0x39,0xce,0x03, +0x73,0xe9,0x4c,0xfb,0x1c,0xe2,0x00,0xee,0x26,0x18,0xe5,0x20, +0x94,0xb6,0x60,0xc2,0x15,0x30,0x3d,0xc7,0x56,0x87,0xe7,0x95, +0x67,0x56,0xa5,0x56,0x69,0xd5,0x8b,0x97,0xed,0x84,0xd3,0x6c, +0x7c,0x78,0xdc,0xc1,0xe8,0x70,0x2e,0x05,0xef,0x92,0xeb,0xf7, +0x3a,0xc4,0x1e,0x1b,0x61,0xf3,0x2e,0xdc,0x6e,0x07,0xdb,0x51, +0x7b,0x19,0x9b,0x65,0xa5,0x71,0x9f,0xa9,0xcf,0xc9,0xa9,0xd7, +0x85,0x77,0x1f,0xb7,0xb1,0x62,0x1c,0x86,0x93,0x66,0x98,0x4f, +0xd1,0xd0,0x16,0x8f,0xb0,0xb0,0x00,0xe4,0x64,0xd6,0xac,0xd7, +0x2c,0x28,0x94,0xa4,0x74,0x7f,0xb9,0x5f,0x4e,0x70,0x6d,0x39, +0x1f,0x56,0x1e,0x58,0x15,0x5c,0x48,0xe1,0xbb,0x49,0x4d,0x08, +0x2e,0xe9,0x82,0x25,0x77,0xdb,0x50,0xc9,0x9e,0xcc,0xff,0xa8, +0xa0,0x58,0xfb,0xce,0x99,0x9b,0x29,0x1d,0x59,0x07,0x3a,0x78, +0xdb,0xf0,0x8d,0xb1,0x4b,0x8f,0x72,0xb8,0xe3,0xa8,0xd2,0x7e, +0xbb,0x4e,0xb3,0x4f,0x75,0x67,0x56,0xdb,0xd9,0xcf,0xb4,0x20, +0x04,0x57,0x91,0xea,0xd6,0xec,0xb6,0xa4,0x3b,0xdc,0x53,0x5c, +0xd2,0x0d,0x4b,0x3e,0x6d,0x43,0x37,0xe6,0x64,0xfe,0xc9,0x82, +0x22,0xed,0x7b,0x67,0x1e,0xa6,0xbe,0xf9,0xf1,0xca,0x98,0x25, +0xf4,0xc7,0xab,0xe2,0x2d,0xec,0xb6,0xeb,0x60,0x86,0xb8,0x95, +0xb8,0xc4,0xba,0xc4,0x39,0x1d,0xe2,0x20,0x7c,0x78,0x20,0x7b, +0xdd,0x73,0xe8,0xc3,0x1c,0xec,0x83,0x49,0xa2,0x2b,0x2b,0x29, +0x43,0x69,0x60,0xe1,0x3d,0xb9,0x38,0x8d,0x6a,0xc3,0xf0,0x37, +0xda,0x70,0x4a,0x1e,0x8c,0x2b,0xf9,0xb1,0x8a,0x9b,0xa7,0xf6, +0x96,0x9e,0xe2,0x2d,0x05,0x2b,0x56,0x9d,0x3e,0xb8,0x8a,0x08, +0x13,0x44,0x6f,0x69,0x6d,0xd7,0x62,0xe9,0xcc,0xa7,0xdf,0x6f, +0xc1,0xef,0x0c,0xfe,0x8e,0x6f,0x11,0xf8,0xdd,0x18,0x7f,0x67, +0x9c,0x47,0xc1,0xef,0x9b,0xe9,0x3b,0x8e,0x47,0x5b,0xf2,0x6d, +0xc1,0x57,0x4d,0xdd,0x17,0x7d,0xeb,0x78,0x85,0xe7,0x2a,0x2f, +0xfd,0x30,0x0e,0xfe,0xde,0x4a,0x1e,0xee,0xff,0xc4,0xe7,0xae, +0x6b,0x59,0x2b,0xbf,0xbd,0x76,0xfd,0xb9,0x8d,0x92,0x1d,0x4c, +0xd5,0x3d,0xc4,0x8d,0xf5,0x28,0xdc,0x67,0xe6,0x63,0xeb,0xe2, +0xaa,0x55,0xe9,0xdc,0xdc,0x78,0xb1,0xbb,0xe4,0xaa,0x16,0xcc, +0x61,0x4a,0x64,0xb5,0xd6,0x4d,0x4e,0x55,0x4d,0xbc,0x53,0x9d, +0xeb,0xe5,0xe0,0x3e,0x0e,0xfb,0x06,0x3d,0x48,0x40,0x4c,0x60, +0x6c,0x00,0x8d,0xa1,0xe0,0x97,0x3d,0xfa,0xb0,0xf6,0x0a,0x5c, +0x46,0x4f,0xbc,0xfc,0x93,0x68,0x3f,0xa4,0x0d,0xc3,0xa8,0x36, +0x7c,0xd7,0x4a,0x9c,0xc1,0xc6,0x1c,0x8b,0x3e,0x1a,0x7d,0x4c, +0xd2,0x86,0x95,0x5f,0x94,0x3f,0xaf,0xe7,0x84,0x36,0x61,0x07, +0xa9,0xfd,0xb6,0xfc,0xe7,0x8c,0x47,0x5c,0x07,0xfa,0x0e,0xfe, +0x5d,0xa5,0xbe,0xfa,0x2b,0x1b,0x6b,0x14,0x30,0xd7,0x73,0x0e, +0xd7,0xba,0xa5,0x7e,0xf1,0x72,0xed,0xdd,0x31,0x07,0xec,0x75, +0x3c,0x99,0x2c,0x33,0x8d,0xf3,0xcc,0xc3,0xa2,0xee,0x57,0xbf, +0xb9,0x3d,0xb7,0xbb,0xa7,0x3b,0x38,0x5a,0xda,0xa5,0xdd,0x91, +0x72,0xb0,0x23,0x2b,0x4c,0x1b,0x34,0x20,0xf1,0x89,0x67,0xb3, +0xce,0x64,0x9d,0xce,0xd6,0x02,0xc3,0x0e,0xd4,0x67,0x4e,0xa6, +0x7e,0x94,0x9a,0xa6,0x7d,0x1e,0xf4,0xe0,0xf3,0xe9,0x57,0x7a, +0x9b,0x30,0xdc,0x49,0x65,0x32,0x0d,0x3f,0x07,0x5d,0x7b,0xf6, +0xc8,0x47,0xf1,0x27,0xe2,0x75,0x70,0xb5,0x0d,0x2c,0x61,0x0e, +0xee,0xb0,0x70,0x9c,0xeb,0x58,0x6c,0xc7,0xff,0xd4,0xd2,0x52, +0x5f,0xdd,0x72,0xf6,0xec,0xe9,0x93,0x67,0x13,0x60,0x15,0x8e, +0xe6,0x2b,0x1a,0x70,0xf6,0x1f,0xd1,0xa9,0x47,0x4e,0xc6,0xc4, +0x68,0x25,0x0a,0x6d,0xc4,0xc4,0xe3,0x0a,0xeb,0x3c,0x93,0x1c, +0xb3,0x8f,0x0a,0xf6,0x0c,0x2a,0xf4,0xe0,0x5b,0x2e,0x16,0xd5, +0x9c,0xbe,0xc6,0xd5,0x3a,0x30,0xce,0x99,0x91,0x2d,0x3a,0xf5, +0xd6,0x18,0x07,0x0b,0x19,0xb0,0xdb,0x49,0xc2,0x8e,0x25,0x16, +0xe8,0x36,0x0c,0xec,0x94,0xd4,0x92,0x1c,0xe3,0x54,0xd2,0x29, +0xf3,0x6a,0x7f,0xd2,0x8e,0x85,0xd7,0xcc,0x76,0x53,0x21,0xe3, +0xcb,0x62,0x71,0x14,0x2a,0xe5,0x34,0xc9,0xec,0xf2,0xd0,0xe8, +0x87,0x79,0x59,0x60,0x06,0x2d,0xda,0xb0,0x81,0xc5,0x51,0x83, +0xef,0x90,0xcd,0xfb,0x34,0x20,0xf0,0xdb,0x9e,0x85,0xb0,0xf2, +0x36,0x25,0xa1,0x83,0x94,0x84,0x46,0x88,0x32,0xd6,0x3c,0x52, +0x43,0xd0,0x94,0xb2,0x69,0xa7,0x43,0x29,0x16,0x7f,0x14,0x3f, +0x2f,0x7e,0x72,0x4e,0xcb,0x4c,0x6d,0x21,0x89,0x9d,0x89,0x92, +0xd8,0x29,0x12,0xbf,0x20,0xe7,0x53,0x72,0x4a,0x75,0x2f,0xb0, +0x36,0x69,0x1a,0x76,0x46,0x6c,0x48,0xc2,0x99,0x3c,0xdd,0x26, +0x98,0xdd,0x82,0x87,0x55,0xe0,0xd7,0x8c,0x7e,0xed,0xa0,0x80, +0x83,0xa2,0x11,0x1e,0x84,0xed,0xb6,0x68,0xe3,0x08,0x36,0x72, +0x0c,0x70,0x80,0xf7,0xd9,0x48,0x57,0x87,0xa0,0x25,0x31,0xb9, +0xf6,0x3c,0x68,0xe4,0xa8,0x5a,0x72,0xae,0x71,0x30,0x51,0xc6, +0xb8,0xe4,0x46,0xd7,0xeb,0xe0,0x02,0x61,0x1b,0xc1,0x89,0xdd, +0x30,0x91,0xe9,0x51,0x92,0x6e,0xf8,0x40,0xc9,0xe2,0x6d,0x17, +0x02,0x13,0xe5,0x38,0x91,0x01,0x63,0x15,0x81,0x0f,0xe4,0xf8, +0x01,0x73,0x52,0xdc,0x42,0x20,0xa8,0x1d,0x83,0x9e,0x99,0xad, +0x46,0x5f,0x5b,0xf0,0xdd,0x8e,0xa7,0x6c,0x84,0x9e,0x0e,0x3c, +0x49,0xa9,0xf5,0xbf,0xd4,0xed,0xe4,0xef,0x6c,0x9f,0xf0,0x92, +0xde,0xbd,0x95,0xbd,0x89,0xad,0x04,0x6c,0xc5,0xd2,0x85,0x4c, +0x9a,0x52,0xe3,0x29,0xd3,0x9c,0x9d,0xd7,0xa0,0xab,0xee,0xc5, +0x54,0x56,0x9c,0x88,0x97,0x09,0xf4,0xd3,0x34,0xbb,0xff,0xb5, +0xe8,0xcc,0x4a,0xe3,0xe2,0xa1,0x14,0x74,0xa7,0x58,0x89,0xd3, +0xd9,0xe8,0x63,0xd1,0xc7,0xa9,0xcf,0x58,0xf0,0xbf,0x16,0x7d, +0x51,0xfc,0xb8,0x3a,0xa1,0x9b,0x0f,0x8a,0x0b,0x3c,0x1c,0x48, +0xc3,0x26,0xf4,0x8b,0xee,0x65,0x60,0xc8,0xc2,0x6e,0x4a,0x3c, +0x0f,0x60,0xc6,0x06,0x16,0x3e,0x9c,0xf2,0x00,0xe6,0x6c,0x60, +0x07,0x47,0xdf,0x24,0x34,0xd8,0x19,0xb0,0x65,0xa1,0x96,0x26, +0x14,0x8f,0x61,0x86,0xa1,0xf4,0xe5,0x63,0x98,0x63,0xc8,0xba, +0x89,0x09,0x04,0xb5,0x3e,0x86,0x91,0x2d,0x38,0xf2,0x0e,0x8c, +0x6c,0x96,0x5e,0xa7,0xb4,0xe2,0xbb,0x4c,0x66,0x49,0x7a,0x49, +0x72,0x81,0x7d,0x26,0x7f,0x38,0x38,0xd2,0x3f,0x32,0x80,0x5b, +0xc4,0xa4,0x97,0xa6,0x96,0x24,0x17,0xdb,0x67,0xf1,0xfb,0x56, +0x3b,0xaf,0xb5,0x32,0x3d,0xe7,0xc2,0xa7,0x67,0xa7,0xe7,0xa4, +0xe7,0x71,0xf8,0xb4,0xe3,0x12,0x34,0xb1,0xd8,0x04,0x55,0xe4, +0x0e,0x8c,0x30,0x66,0x71,0x04,0x6a,0xfc,0xe3,0xd3,0x68,0xf2, +0x31,0x8c,0xd8,0x44,0xb9,0xa6,0x4a,0xfd,0x80,0x58,0x98,0xe1, +0x9e,0x4b,0x96,0x66,0xb8,0xd4,0x0a,0x96,0x9a,0xf7,0x0d,0xc0, +0x1e,0xf3,0xfe,0x01,0x58,0xd3,0x85,0x6b,0x18,0xb1,0x47,0x8c, +0x24,0xdf,0xaa,0x16,0x82,0xc1,0x6d,0xe8,0xc6,0x50,0x9a,0x54, +0x8c,0x10,0x6d,0x99,0xd0,0x04,0x69,0xe6,0x20,0x27,0x4c,0xb2, +0xa2,0x84,0x23,0xf5,0x36,0x8c,0x2c,0xfa,0xbe,0xe4,0xc5,0x79, +0xad,0x84,0x6e,0xbf,0x38,0xff,0x38,0xdf,0x43,0x5a,0xb9,0xea, +0xcd,0xd2,0x73,0x90,0x49,0xa0,0x60,0x21,0x6a,0x3a,0x19,0xf4, +0x52,0x09,0xd1,0xe0,0x48,0xf3,0x6e,0xc8,0xc2,0x68,0x22,0x6e, +0x9d,0xcf,0xa6,0x59,0x53,0xeb,0x36,0xe5,0x64,0xd5,0xeb,0xaa, +0xe7,0x63,0x2e,0xd2,0x8c,0x3c,0x05,0xf4,0x28,0x06,0x2e,0x70, +0x64,0xe1,0x56,0x33,0x71,0xc4,0xa5,0xcd,0x2c,0x5e,0x45,0x5d, +0xd2,0x01,0x0b,0x6c,0xe8,0xa5,0x0e,0x62,0x83,0x4b,0x3b,0xd8, +0x50,0xd1,0x9d,0xf4,0xc3,0x98,0x26,0x1c,0xd3,0xf5,0xe6,0xf5, +0xfd,0x16,0x9c,0xca,0xa6,0xe6,0xa4,0xe4,0x26,0xe7,0xd9,0x64, +0xf0,0x87,0xf7,0xc7,0x1e,0x88,0x3a,0xc0,0xad,0x62,0x52,0xf2, +0x52,0x72,0xcf,0x66,0xdb,0x65,0xf3,0xfb,0xb6,0x39,0x6e,0x91, +0x39,0x54,0x3a,0xf1,0x99,0xe9,0x99,0x99,0x19,0xd9,0x1c,0x16, +0x77,0x75,0x43,0x5f,0x0b,0x4b,0x31,0x4c,0x41,0xba,0x40,0xc3, +0x8a,0x45,0x8d,0x45,0x7f,0x7e,0x98,0x43,0x0b,0xd7,0xb0,0x60, +0x35,0x85,0xb7,0x04,0x69,0xb7,0x90,0x44,0x58,0x93,0x04,0x33, +0x53,0x39,0xd3,0xfe,0xeb,0x6c,0x55,0x62,0xe5,0xa9,0xf2,0xc4, +0x63,0x4d,0x7c,0xd0,0xf0,0x06,0x3b,0x70,0xe6,0x45,0x8b,0xf8, +0xc4,0xe1,0x4b,0x2c,0x61,0xbd,0x4f,0xf8,0x7c,0xe4,0x77,0x82, +0x52,0xa7,0x74,0x46,0x62,0x8d,0xf7,0x4c,0x58,0x2d,0x11,0x4c, +0xd2,0x10,0xc1,0xd8,0x33,0xdb,0x63,0x34,0x84,0x49,0xff,0x2b, +0x7b,0xa6,0xe4,0x32,0x3e,0x0f,0x46,0x14,0x7d,0x55,0x71,0xb4, +0x97,0xf7,0x8e,0xa3,0xf9,0x33,0xcd,0x57,0x0f,0xc2,0x88,0xa6, +0x46,0xec,0x63,0x0f,0x1e,0x0f,0x3d,0x1e,0x76,0x22,0xc9,0x96, +0xbf,0x91,0xf4,0x34,0xf5,0x5a,0x06,0xb7,0xaa,0x4b,0x58,0x52, +0xca,0xc2,0x1a,0x41,0x93,0x26,0xa8,0x03,0xd0,0xc6,0x88,0x05, +0xa1,0x52,0x44,0xcd,0x1d,0x1a,0x78,0x5a,0x43,0xcc,0xe9,0x55, +0xaa,0xb3,0x67,0x13,0x39,0xbb,0x38,0x7e,0x66,0xc2,0xbc,0x63, +0xdc,0x6d,0x56,0xb0,0x10,0x8f,0x11,0x9b,0x43,0x1a,0x50,0xde, +0xd8,0x82,0xf5,0x0e,0xe5,0xd8,0xcf,0x86,0x9f,0x08,0x3b,0x1e, +0x21,0x2d,0x54,0xbd,0x76,0xe6,0x61,0xf2,0xdd,0x74,0x6e,0x6d, +0xf7,0x17,0x6c,0x5e,0x62,0xee,0xe9,0x9c,0xd3,0x9c,0x98,0x04, +0x09,0xe4,0x36,0x8c,0xdc,0xc6,0x42,0xeb,0x14,0xe4,0x6e,0x03, +0xc7,0x88,0x73,0xd1,0x98,0xdc,0x85,0x91,0x5b,0xe9,0xa5,0xbb, +0x64,0x2b,0x72,0x77,0x59,0x6c,0xc0,0xb7,0x09,0x8c,0xdc,0xc3, +0xf8,0xc4,0xbb,0xc5,0xbb,0x25,0x70,0xd0,0xf0,0x88,0x00,0xb7, +0x83,0x71,0x4f,0xa0,0xff,0x3d,0x4a,0xc1,0x78,0xbb,0x60,0x40, +0xe0,0x39,0x2e,0x63,0x33,0x4a,0xd3,0xca,0x52,0xca,0x2c,0xb2, +0xf8,0x43,0xbe,0x31,0xbe,0x91,0x7e,0x1c,0xb2,0xa2,0x0b,0x13, +0x7a,0xfc,0xe0,0xb1,0x83,0xc7,0xd3,0xcd,0xf8,0x6f,0xb3,0xbe, +0xc9,0x7a,0x59,0xb0,0x61,0xd5,0x82,0x4d,0x38,0x79,0xf7,0x79, +0x2b,0x6a,0x8a,0x1b,0xbf,0x3f,0x7f,0xf6,0x3d,0x87,0xa7,0x71, +0xa1,0xb4,0xb0,0x03,0xde,0x65,0x5a,0x73,0xf3,0xda,0x74,0xe1, +0x26,0x9b,0x55,0x98,0x59,0x98,0x51,0xc4,0xfd,0x6e,0x4f,0x92, +0x5b,0xd2,0x9e,0x9c,0x6e,0xe6,0xa8,0xc0,0xba,0x20,0x8e,0xb3, +0x84,0xdb,0xb8,0x01,0xeb,0x99,0x63,0x9b,0x23,0x91,0x0d,0x5d, +0xc2,0xc1,0x97,0xcc,0x09,0xe3,0x23,0x4b,0xa2,0x4c,0x38,0xfb, +0xb8,0x90,0x08,0xab,0xa9,0xb8,0x92,0xc9,0x32,0x97,0xce,0x1f, +0xb8,0x5f,0x5f,0xfa,0x20,0x47,0x37,0xe7,0x71,0xd2,0x2f,0xa7, +0x40,0x83,0x13,0xab,0xa1,0x80,0x60,0xf0,0x97,0x10,0xcc,0x60, +0x30,0xf5,0xc1,0xaf,0x20,0x78,0x09,0x8b,0xc1,0xd6,0x04,0x82, +0xd7,0x32,0x27,0x4e,0x6c,0x89,0xda,0x14,0x63,0x14,0xa7,0xa5, +0x29,0x4c,0x97,0xda,0xf1,0x39,0x4e,0xa7,0xed,0x48,0x2d,0x4f, +0x2e,0x97,0x65,0xd2,0x76,0xc4,0xfa,0x44,0xf9,0x71,0x33,0x45, +0x2f,0x26,0xfc,0x78,0xd8,0xb1,0xb0,0xe3,0xe9,0xe6,0xfc,0x8b, +0xcc,0x67,0x59,0x9f,0xe5,0x6f,0x5b,0xb9,0x62,0x23,0x32,0xbb, +0xce,0xdb,0xf2,0xf0,0xf6,0xf5,0x6f,0x9e,0x3e,0xf8,0x96,0xc3, +0x53,0xa8,0x27,0xad,0xe7,0x80,0xd1,0x4c,0x73,0x6e,0x5e,0x8b, +0x2e,0xdc,0x61,0xb3,0x8a,0x32,0x4b,0x32,0x4a,0x38,0xa8,0xa1, +0xee,0x9d,0x83,0x1f,0xf4,0x52,0x30,0x24,0x38,0xb7,0xb1,0x9d, +0xc7,0xf7,0x61,0xf1,0x56,0x98,0x15,0x0c,0x13,0x39,0x08,0xec, +0xa5,0xd8,0x6c,0x61,0x4e,0x3b,0xd6,0x57,0x46,0xb3,0xfe,0x7d, +0x38,0x71,0x0f,0xce,0x45,0x5d,0x5c,0xd4,0x60,0xc7,0xc3,0x7b, +0x30,0xab,0x03,0xf8,0x4c,0xd0,0xe6,0x92,0x44,0x06,0x27,0x5a, +0xc2,0x44,0xdc,0x35,0x20,0x1d,0xd2,0xd3,0x87,0x53,0x04,0x86, +0x11,0xb9,0x47,0x04,0x95,0xdf,0x80,0x92,0x41,0x25,0x1e,0x26, +0xdf,0x82,0x72,0x21,0x8b,0x4a,0x1b,0x02,0xca,0x55,0xcc,0xee, +0xe8,0x9d,0x31,0xdb,0xe3,0x38,0x4d,0xf8,0x59,0x58,0x4d,0xe0, +0x25,0x8e,0x66,0xd3,0xcb,0x52,0xcb,0x92,0xca,0x95,0x14,0x41, +0x7c,0xe3,0x7c,0xa2,0xfd,0x38,0x03,0xda,0x2c,0xe9,0x68,0xcb, +0x88,0xe3,0x99,0xe6,0xfc,0xdd,0x8c,0xdb,0x59,0xd7,0x73,0xcd, +0x57,0x1a,0x6d,0x5a,0xb4,0xfb,0xa2,0x03,0xff,0xea,0xca,0xc3, +0xcf,0xae,0x7e,0xce,0xe1,0x21,0x9c,0xc4,0x66,0x5b,0x6a,0xbc, +0xa6,0xe2,0x2d,0xaf,0x59,0x17,0x6e,0xb0,0x59,0x65,0x99,0x65, +0xe9,0xe5,0x14,0x00,0x84,0x71,0xe4,0xbe,0xd5,0xe6,0xa5,0xf7, +0x95,0x9b,0x71,0x06,0x36,0x09,0x11,0x12,0xe0,0x7c,0x8f,0x63, +0xc9,0xd2,0x87,0x5f,0x32,0xdd,0x53,0xbe,0x34,0x5a,0xca,0x80, +0xde,0x94,0x87,0xdf,0x1b,0xb1,0xe2,0x6d,0x37,0x82,0x8b,0xbe, +0x85,0x45,0x0c,0x9c,0x9b,0x4f,0x0c,0x96,0x3e,0x67,0x21,0xda, +0x80,0x2c,0x7d,0xfe,0x25,0xd3,0x35,0xe5,0x7b,0x83,0xf9,0xcc, +0x20,0x6b,0x42,0xbe,0x87,0x45,0xf3,0xd9,0x9f,0x9c,0x88,0xb5, +0xd0,0xdf,0xc9,0x0e,0xce,0x8d,0x27,0xfa,0xac,0x75,0x8c,0x75, +0x9c,0x82,0xc2,0xe8,0x68,0x16,0x7a,0x66,0x10,0xdc,0x2e,0x38, +0xc2,0x76,0x56,0x9c,0x81,0x5a,0xe4,0x05,0x7c,0xb5,0x92,0xc5, +0x68,0x9c,0x4d,0xe2,0xaa,0x23,0xce,0x85,0x97,0xca,0xc3,0xf8, +0xec,0xc0,0x1c,0xdf,0x54,0x1f,0x0e,0x22,0x8f,0x92,0x9c,0xaa, +0xac,0x8b,0x69,0x15,0x34,0x85,0x8e,0xf5,0x0a,0x73,0x3d,0xe8, +0xc1,0xe1,0x57,0x56,0xc2,0xad,0x2e,0x0a,0xf6,0x83,0x92,0x1d, +0x9e,0xe3,0xbb,0x2c,0xc5,0xcd,0xb2,0xa4,0x32,0x05,0x45,0x0c, +0xff,0x58,0x9f,0x68,0x7f,0x6e,0x89,0xe8,0xc6,0x0c,0x07,0x68, +0x86,0x39,0xff,0x30,0xf3,0x41,0xd6,0xdd,0xdc,0xdd,0x06,0x86, +0x9b,0x67,0xee,0xb9,0x68,0xc7,0xff,0x70,0xed,0xf9,0xa3,0x5b, +0x5f,0x70,0x98,0x80,0x5a,0x43,0x9d,0xfb,0x36,0xd3,0x38,0xd4, +0xb9,0x37,0xd8,0xcc,0x92,0xcc,0xe2,0xf4,0x52,0xae,0xae,0x84, +0xc0,0xf8,0xaf,0xfa,0x7f,0x49,0x87,0xf7,0x39,0x58,0xcc,0xc4, +0x78,0x44,0xba,0x1f,0x74,0xe2,0x60,0x1a,0x73,0xc2,0xef,0x98, +0xd3,0x11,0x2f,0x2e,0xe6,0x68,0xec,0xe1,0x80,0xa9,0x38,0x8a, +0xc9,0x90,0x4b,0x87,0xc6,0xb6,0x57,0xe5,0xb4,0xa4,0xe9,0xa6, +0x34,0x9c,0xbd,0x7c,0xf2,0x0e,0x87,0x63,0x98,0xec,0x8b,0x59, +0x8d,0x29,0xcd,0x9c,0x68,0x22,0x3d,0xa8,0x8f,0xc1,0x77,0xec, +0x96,0xa3,0xc6,0x46,0x6e,0x29,0x4c,0x27,0x68,0xf4,0x35,0x18, +0x31,0x68,0x84,0xb1,0xe4,0x1b,0x30,0x5a,0xc4,0xaa,0xa7,0xd2, +0xec,0xba,0x07,0xcf,0x80,0x96,0x39,0x6a,0x61,0x8c,0x82,0x4a, +0x0b,0xd7,0x15,0xeb,0xd6,0xe0,0xa8,0x2d,0x17,0x68,0xf2,0x35, +0xfe,0xf9,0xa3,0x6f,0xf2,0x7e,0xe5,0x92,0xf0,0xc5,0x00,0xbc, +0x38,0xcb,0xe4,0xe9,0x3d,0x5f,0x0a,0x63,0x57,0x5e,0xec,0xe5, +0x67,0xdc,0x35,0x78,0xe4,0xf4,0x15,0x27,0x6e,0xa4,0x3e,0x68, +0xc0,0x5a,0x46,0x5b,0xc6,0x9a,0x51,0xa3,0xbe,0x43,0x71,0x6e, +0x9a,0xe4,0xee,0x7f,0x43,0x1d,0xc9,0x1e,0xa5,0xc9,0x65,0xd4, +0xdd,0x0f,0xfb,0xc5,0xfa,0x46,0xf9,0x73,0x73,0xa8,0x3d,0x86, +0x9f,0x15,0x51,0x77,0x7f,0x96,0xf9,0x24,0xfb,0x61,0xee,0x76, +0x83,0x95,0x9b,0xf1,0xed,0xdd,0xd4,0xdd,0x7f,0xbf,0xf6,0xd5, +0x93,0x8f,0xbf,0xe6,0xf0,0x38,0xea,0x0e,0x05,0x2d,0x27,0x79, +0x7b,0xeb,0x50,0xd0,0x16,0x53,0x83,0xd0,0x34,0x33,0x19,0x7d, +0x68,0x3d,0x43,0x80,0x81,0x68,0x15,0x46,0xc3,0xdb,0x60,0xd7, +0x8d,0x76,0xaf,0x61,0x7f,0x0f,0x35,0x61,0x41,0x55,0x51,0x73, +0x56,0x8d,0x65,0x3e,0x1f,0xed,0x1e,0x2c,0x0f,0x72,0xe5,0x50, +0xa5,0x00,0x9f,0x59,0x68,0xaa,0x04,0x53,0x7c,0x1b,0x83,0xe5, +0x10,0x8c,0x0c,0x7a,0x2b,0xc0,0x83,0x89,0x5c,0xba,0xc6,0x12, +0xe7,0x5a,0x17,0x50,0x51,0x39,0xb7,0xe7,0xc7,0x6b,0x67,0x61, +0x0c,0x97,0xc4,0x9c,0x45,0xe6,0x97,0x9d,0x30,0xd5,0xa2,0xe0, +0x32,0x0d,0xa1,0x1e,0x83,0xde,0x88,0x57,0xdc,0x72,0xe1,0x16, +0x89,0xaa,0xde,0x5b,0x7b,0xb0,0xd4,0x6a,0x2f,0x9f,0x17,0x54, +0xec,0x99,0xe5,0x23,0xf5,0x96,0x94,0x49,0x7e,0x0d,0x66,0x0c, +0xcd,0x27,0x25,0xfb,0x99,0x2d,0x62,0xad,0x47,0xad,0x66,0x4d, +0xa2,0xf7,0xc4,0xec,0x8c,0x93,0x7c,0x4a,0x13,0x6e,0x0e,0xb9, +0xc3,0x34,0x36,0xad,0x34,0x85,0x7a,0x83,0x95,0xe4,0x0d,0x71, +0x3e,0xb1,0xfe,0xdc,0x46,0xda,0xfa,0xa8,0xe3,0x51,0x34,0x2e, +0xb2,0xcc,0xf9,0xab,0x19,0x97,0xb3,0xfa,0xb3,0x15,0xab,0xb7, +0x6d,0x5e,0x65,0x72,0xd1,0x91,0x7f,0x74,0xe9,0xf6,0x27,0xbd, +0xcf,0x38,0x0c,0xa3,0xd1,0x44,0xd3,0xdb,0x6f,0x99,0x86,0x1c, +0x69,0xe4,0xea,0x2a,0x9b,0x59,0x96,0x51,0x4e,0xa3,0x82,0xf2, +0xdc,0x67,0x64,0xbf,0xb4,0x9f,0xfb,0x7b,0x0a,0x7d,0xee,0xd4, +0xdd,0x93,0x9f,0x7d,0xae,0x0d,0x0b,0x84,0x4c,0x95,0x78,0x0f, +0x9d,0x59,0xfc,0xf2,0x10,0xae,0xb3,0xc3,0x77,0x75,0xba,0xdd, +0x2f,0x7c,0x97,0x0d,0x53,0x92,0xc0,0x4a,0xab,0xcc,0x36,0xbb, +0x2c,0xb3,0x3c,0xbd,0x5a,0x4b,0x74,0xeb,0x16,0x1e,0xb3,0xf9, +0xd7,0x73,0x6e,0x66,0xdc,0xa6,0x92,0x7b,0xd0,0x88,0xc0,0xb4, +0x5f,0xba,0x66,0xc2,0x94,0x9f,0xbb,0x66,0xc3,0x14,0x60,0x7b, +0xa6,0xb3,0x59,0x75,0xe9,0x0d,0xa9,0x4d,0xd6,0xd2,0x99,0x65, +0x51,0x76,0x11,0x2e,0xdc,0x0a,0x26,0xbd,0x31,0xb5,0x29,0xa5, +0xc9,0x3a,0x83,0xdf,0x8b,0xd3,0x9c,0x70,0x8a,0xf9,0x92,0x1a, +0x19,0x9f,0x5d,0x99,0x51,0x95,0x5e,0xc3,0x89,0x81,0x5d,0x2d, +0x50,0xda,0xc3,0x0e,0x9a,0x09,0xcf,0xa8,0xa0,0xf8,0x06,0xb4, +0x18,0xea,0x36,0x87,0xc9,0x77,0xa0,0xb5,0x80,0x15,0x8c,0x8c, +0x09,0x4c,0xf9,0x0e,0xa7,0xb0,0x62,0x7e,0x01,0x59,0xc1,0x3a, +0xc5,0x3a,0x1e,0xb2,0x1f,0x72,0x0b,0xa1,0x1f,0x1d,0xde,0x7c, +0x65,0x35,0x0a,0xa7,0x2d,0x80,0x69,0xd4,0x54,0x97,0x25,0x53, +0x3d,0xd3,0xfb,0x1f,0x53,0x1d,0xa1,0xa6,0x8a,0xf1,0xe7,0x36, +0xbf,0x31,0x55,0x94,0x64,0xaa,0x2b,0x19,0x97,0xb2,0xfa,0xa8, +0xa9,0x76,0x6c,0x36,0x90,0x4c,0xf5,0xd9,0xe5,0x9b,0x1f,0xab, +0x86,0x4c,0xf5,0x0e,0x9b,0x25,0xd3,0xf8,0xe6,0x8d,0xa9,0xae, +0x48,0xa6,0xaa,0x48,0xaf,0x90,0x9e,0xc8,0x5e,0x27,0x07,0x16, +0xb9,0x2f,0x92,0x6d,0xe5,0xbe,0x60,0xc1,0x44,0x28,0xec,0xc4, +0x82,0xbb,0xe6,0x5b,0x29,0x77,0xc6,0x51,0x82,0x3e,0x84,0x13, +0xe4,0x38,0x5d,0xa7,0xcb,0xb3,0x1b,0xa6,0xa5,0x4b,0xab,0x3b, +0x8e,0x69,0x15,0x39,0xe5,0x14,0xe4,0x94,0x64,0x95,0x6a,0x61, +0x72,0x3b,0xfc,0xc2,0xe6,0x36,0x64,0x35,0xa5,0x35,0x71,0x17, +0x45,0x6f,0x02,0x1f,0x53,0x81,0xf4,0xd9,0x1f,0x4d,0xd3,0xee, +0xfd,0xde,0x34,0xfd,0x1e,0x8c,0x6b,0x45,0x8e,0x49,0x2d,0x4c, +0x2e,0x4c,0x2a,0xb2,0x4f,0xa5,0x72,0xe9,0xf0,0xde,0x98,0x60, +0x6e,0x39,0x93,0x52,0x9c,0x5c,0x72,0xb6,0xc8,0x3e,0x8d,0x3f, +0xb0,0xd4,0x7d,0xb1,0x72,0x5b,0xa9,0x3d,0x9f,0x5b,0x94,0x5d, +0x96,0x5d,0xc1,0x89,0x9a,0xd2,0x41,0xa2,0xd4,0x4b,0x08,0x23, +0x7c,0x88,0x56,0xe4,0xde,0x0f,0x5b,0xd8,0xc1,0x69,0x4e,0xd4, +0x54,0x84,0x9a,0xea,0xc3,0x2d,0x43,0x17,0xc4,0xfc,0x22,0x6a, +0x28,0xe7,0x58,0xa7,0x43,0x8e,0xc3,0x86,0xea,0xc2,0x99,0xe4, +0xb3,0x1f,0x3e,0x64,0xf1,0xfd,0xb9,0xa4,0x7e,0x5f,0x8f,0xeb, +0x05,0x8f,0xea,0x7a,0xde,0xad,0xc6,0xba,0xce,0xb5,0x90,0x0b, +0xc3,0xfd,0x24,0x24,0x3e,0x29,0x5b,0x17,0x16,0x2b,0x71,0x31, +0x2b,0x2b,0x09,0x53,0xe9,0x00,0x2f,0x69,0x9e,0x16,0xdd,0x5e, +0xd6,0x3a,0x47,0x63,0x0d,0x7b,0x1e,0x16,0x92,0x0b,0x8a,0xaa, +0x1d,0x85,0xdb,0xda,0x4a,0xf9,0xfd,0xb7,0x7c,0x6f,0x78,0xaa, +0x38,0x71,0x01,0x7a,0x93,0xc6,0x1b,0x25,0xb7,0x32,0xaf,0xd9, +0x64,0xf1,0x51,0xa6,0x21,0xa6,0x2e,0x96,0x94,0x5f,0xa3,0x21, +0x80,0x26,0x50,0xb8,0xf9,0x09,0x78,0xf4,0xa2,0xc7,0xaf,0x26, +0x33,0xd0,0x59,0x06,0xce,0x6b,0xd1,0x48,0x9c,0x00,0x46,0xcb, +0xd1,0xcd,0x02,0xdc,0x70,0xfe,0x15,0x9a,0x42,0xfa,0x52,0x89, +0xfa,0x8a,0x15,0xee,0xa3,0x2f,0xc5,0x4b,0xc6,0x3e,0x36,0xa3, +0x59,0x57,0x9d,0xb7,0x73,0xb0,0x94,0x5d,0x5b,0xe1,0xf7,0x44, +0x07,0x4c,0x98,0xf6,0xbc,0x82,0x2e,0x5d,0x9a,0x93,0x99,0x14, +0x69,0x0c,0x8e,0x07,0xaa,0x42,0xdf,0xc2,0x51,0xf0,0x96,0x34, +0x70,0xf7,0x16,0x41,0x0e,0xde,0xa2,0xd1,0x4c,0xd9,0x5e,0x9f, +0xc0,0x28,0x1a,0x86,0xa3,0x18,0xd8,0x30,0x85,0x46,0x31,0x87, +0x0c,0xf5,0x81,0x64,0x78,0x97,0xbc,0x82,0xf7,0x84,0x89,0xf8, +0xde,0x13,0x58,0xd1,0x83,0x2b,0xfe,0xb0,0x9c,0x36,0xb4,0xcc, +0x71,0x2d,0x12,0x91,0xf2,0xda,0x72,0x5c,0x2e,0x87,0xe5,0xb8, +0xb0,0x0f,0x16,0xc2,0x07,0x2a,0xf6,0x1a,0x15,0x51,0x98,0x7d, +0x08,0x6d,0x76,0xe0,0x4a,0x9d,0x1e,0x0f,0x8d,0x3b,0xb0,0x35, +0x9d,0x46,0xc7,0x79,0x6d,0xd8,0x24,0x98,0xf6,0x89,0x27,0x58, +0x38,0x39,0xd8,0x47,0x9c,0x63,0xd2,0x1a,0x74,0x85,0x62,0x70, +0xc1,0x72,0xe4,0xa5,0x99,0x3f,0x30,0x92,0x69,0x2d,0x90,0x34, +0xc0,0x7d,0xfc,0x54,0x7c,0xce,0x6e,0xbe,0xe0,0x7f,0x4b,0x3a, +0x75,0xad,0xa3,0xb0,0x98,0xd6,0x7b,0x0d,0x6b,0x91,0xa3,0x81, +0x0e,0xec,0xe0,0x36,0xa1,0x93,0xe0,0xc8,0xf5,0x30,0x92,0x05, +0x0f,0x1c,0x49,0xd6,0xc1,0xc8,0x47,0x0c,0x7a,0xe0,0x4a,0xf2, +0x29,0x72,0xeb,0x19,0x4a,0x9a,0x1c,0x79,0x84,0xdc,0x3a,0x46, +0x5a,0x7b,0xf2,0x9a,0x88,0xeb,0x2f,0xc1,0xe7,0x90,0x8a,0x9f, +0xf7,0x0b,0xf3,0xbb,0xc4,0xf9,0x57,0x4d,0xf6,0x88,0xda,0x56, +0x82,0xb6,0x05,0x3e,0xc0,0x54,0x78,0x60,0x26,0x2e,0xb2,0x12, +0x16,0x2d,0xbd,0xf2,0xa5,0xb0,0x9e,0x11,0x23,0x20,0x8b,0x60, +0xe6,0x65,0xc8,0x64,0xe0,0xa5,0x29,0xc1,0xd2,0xcb,0x50,0xca, +0x88,0x5f,0xcd,0x24,0x90,0xb9,0x1b,0xe9,0xb5,0x07,0xd7,0x08, +0x94,0xee,0xc6,0x52,0xe6,0x1e,0xbe,0x24,0x3f,0x14,0xc2,0x7b, +0xad,0x8f,0x1b,0xdc,0xdb,0xf8,0x8d,0x6e,0x38,0xde,0x79,0xf6, +0x5e,0x4e,0xf4,0xe8,0x21,0x5f,0xec,0x03,0xce,0xe9,0x73,0xd7, +0xf2,0x2e,0x7e,0x49,0x13,0x32,0xf5,0x06,0x85,0x9c,0x31,0xfe, +0x46,0x60,0x52,0x05,0xcc,0x6e,0xfd,0xa3,0xf3,0x60,0x0f,0xaf, +0x67,0x87,0xf3,0x6d,0x71,0x62,0x30,0x27,0x24,0xdc,0x24,0xbf, +0xec,0x85,0x9d,0x4a,0x60,0xec,0x0b,0xfb,0x78,0x9c,0xd0,0x8e, +0x1b,0xba,0x86,0x36,0xe2,0x18,0x5e,0x30,0xe3,0xc9,0x9e,0xc8, +0xf9,0x28,0x27,0x47,0x9b,0x26,0x89,0xf2,0x7e,0x94,0xc3,0x56, +0x33,0xdc,0xaa,0xc7,0xa6,0x34,0x9d,0x6d,0x3e,0x5d,0x2b,0xa3, +0x6e,0xbd,0x30,0x10,0xdf,0x75,0x5e,0xdf,0xe6,0xce,0x17,0xd6, +0xe7,0x76,0x67,0xaa,0x28,0xa8,0xa1,0x1e,0x13,0xfe,0x51,0xb8, +0xb4,0x5e,0xc6,0xc6,0x1c,0x64,0x4c,0x28,0x4e,0xdf,0x85,0x23, +0x71,0x3e,0x8e,0x3d,0x4f,0x09,0x62,0x29,0x4c,0xfa,0x04,0x74, +0x4e,0xc1,0xb4,0xa1,0xf5,0x32,0xd3,0x6e,0xe0,0x54,0x98,0x81, +0xa4,0xa6,0x57,0xd2,0x22,0x63,0x76,0xc1,0x5b,0xa1,0x30,0x53, +0xda,0x94,0x33,0x90,0xbc,0x84,0xb9,0x82,0x26,0xce,0x7d,0x4c, +0x53,0x28,0x34,0xfe,0xd5,0x7c,0x06,0x6e,0x92,0xc3,0x26,0x43, +0x9c,0x45,0xa3,0x64,0x96,0x3e,0x6e,0x95,0xc1,0x56,0x9c,0x3f, +0x40,0x9d,0x6d,0x67,0x2f,0x8b,0x87,0x85,0x65,0xd4,0x87,0x96, +0x49,0x2e,0x74,0x98,0xba,0xd0,0x62,0x78,0xeb,0x6b,0x06,0x0f, +0xe3,0x0a,0xf2,0x05,0x32,0xcb,0x18,0x98,0x0d,0x0c,0xf9,0x1a, +0x99,0xc5,0x8c,0xa6,0x60,0x20,0xf9,0xb0,0x26,0xce,0x7a,0x0c, +0xeb,0x54,0xb8,0xee,0x57,0x8b,0x19,0x68,0x24,0x07,0x23,0x43, +0xd4,0xa3,0xc5,0xea,0xe9,0xe3,0x26,0x19,0x6c,0xc2,0xf9,0xfd, +0xb4,0xd8,0x6d,0xbd,0xb8,0xed,0x25,0x0b,0x32,0xe1,0x01,0x31, +0x13,0xde,0x1e,0x0c,0xc5,0x95,0x6c,0x96,0x89,0x06,0xe8,0x30, +0x6d,0x05,0xf9,0xed,0xba,0xea,0xe0,0xab,0x97,0x58,0x51,0x8e, +0x4e,0x44,0x8c,0x52,0xbd,0x80,0x1d,0xc2,0x1c,0x56,0xcc,0xb3, +0xa5,0x75,0x58,0x21,0xd5,0x21,0x9a,0xd6,0x81,0x56,0xe6,0x0b, +0x06,0xac,0xa4,0xcd,0xbe,0x9b,0x61,0x12,0x36,0xb3,0x62,0x0f, +0x4c,0x23,0x9f,0x23,0xb3,0x82,0x81,0x99,0xd4,0x9d,0xbf,0x18, +0xf2,0xe6,0x5c,0x78,0x8f,0x36,0xf4,0x03,0x5a,0xa3,0x0f,0x1e, +0x0f,0xad,0x42,0xfe,0xcd,0x52,0x0f,0x57,0x2a,0x60,0xa5,0x21, +0x6a,0xd3,0x1a,0x69,0xeb,0xe3,0x6a,0x19,0xac,0xc6,0xf9,0x7d, +0xb4,0x46,0xeb,0x7a,0xd9,0x34,0x61,0x24,0x81,0xc9,0x3f,0xdc, +0xff,0xaa,0xe4,0x17,0x6a,0xbe,0x92,0x39,0xaf,0x16,0xc0,0x8c, +0x69,0x17,0x54,0x3c,0x7e,0xf0,0xeb,0x8a,0x6f,0x3c,0xbf,0xe1, +0x8c,0x19,0xdf,0x65,0xc6,0xf3,0xf1,0xdd,0x05,0x1c,0x5c,0x6d, +0x21,0xa6,0x1f,0xce,0x36,0x9c,0x61,0x57,0x66,0xc5,0xff,0xd1, +0xfd,0xeb,0xa7,0xb7,0x29,0xf7,0xb6,0x84,0xd3,0x1a,0xae,0x95, +0x6a,0x18,0x48,0x6b,0xb8,0x1a,0xde,0x7a,0xc6,0x80,0xa6,0xb8, +0x90,0x80,0xde,0x55,0x98,0xfe,0xcb,0xb7,0x30,0xde,0xf9,0x22, +0xbf,0x66,0x3a,0xbe,0xaf,0x87,0x33,0x4c,0x39,0xbc,0x03,0x56, +0xe4,0x09,0xb2,0x6b,0x19,0x78,0x9f,0xe2,0xfe,0x33,0x64,0xd9, +0xdf,0xf1,0x67,0x02,0x7b,0x6e,0x52,0xdd,0x37,0x11,0x58,0x58, +0xe1,0x70,0x91,0x9f,0x81,0x7a,0xb8,0x05,0x27,0xe3,0x2e,0x13, +0x2a,0xf0,0x2a,0x86,0x1a,0x33,0x6b,0xd8,0xbc,0x9b,0x54,0xb8, +0xe9,0xdf,0x98,0xd7,0x58,0x3a,0xc5,0x0f,0xb5,0xc9,0xea,0xdf, +0xbc,0x20,0x22,0x01,0x4e,0x73,0x60,0x32,0x80,0x26,0x20,0x33, +0x47,0x19,0xa6,0x98,0x43,0x0a,0x73,0x06,0x93,0x2f,0x62,0xfa, +0x8f,0xa8,0x71,0xde,0x5d,0x95,0x71,0xa6,0xa7,0x18,0x42,0x78, +0x45,0xa1,0x46,0x9e,0xe0,0x4a,0x82,0x5b,0x3d,0xba,0x7d,0x6a, +0x9c,0x7c,0xf9,0x6a,0xaf,0x1a,0x59,0xa9,0x03,0x37,0xb8,0x4a, +0x9a,0x44,0xf1,0x96,0xbe,0xd4,0xae,0xa8,0x7f,0x58,0xfe,0x23, +0xdc,0x48,0x1e,0xf4,0xa2,0x9f,0xec,0x39,0xde,0x64,0x5c,0x0f, +0xbb,0x1c,0x76,0x8b,0x4f,0xb7,0xe0,0x7f,0xca,0x83,0xb7,0x4a, +0x1f,0x94,0x1c,0x56,0xf1,0x3e,0xb1,0xee,0xb1,0xae,0x87,0x38, +0x71,0x3f,0x85,0x9f,0x97,0xc8,0xe8,0x33,0x30,0x83,0x7a,0xc9, +0x90,0xbf,0x68,0x42,0xd6,0x50,0x4b,0x74,0x69,0x4b,0x74,0xdf, +0x38,0x8a,0xb4,0x38,0x5c,0x0e,0xab,0x0d,0xf1,0x03,0xda,0x92, +0x0f,0xf4,0xd1,0x50,0x06,0x86,0xc3,0xdd,0x62,0xd4,0xcb,0x16, +0x41,0x0f,0xcd,0xf2,0x93,0x60,0x71,0x0a,0x8c,0xc9,0xcd,0x0c, +0xca,0x0c,0x4a,0x0f,0xee,0x2a,0xe7,0x5d,0x5e,0x98,0xfe,0xec, +0x70,0xc3,0x36,0x88,0x2f,0xf2,0x2e,0x75,0x2a,0xb5,0xdf,0x78, +0x78,0xc5,0x61,0xfd,0x84,0xf3,0x37,0x1b,0xbe,0x2b,0x7f,0xcc, +0xc1,0xe9,0x5e,0x31,0x9a,0x1a,0x83,0x09,0x5c,0xef,0x34,0xd7, +0x75,0x2b,0x77,0xe2,0xc0,0xfe,0x13,0x21,0x53,0xf1,0x58,0x1f, +0x6d,0xc8,0x1a,0xa9,0x21,0xfb,0x68,0x43,0x56,0xc1,0x5b,0x7f, +0x63,0x84,0xc7,0xd4,0xe8,0x7d,0xe8,0x06,0xf3,0x4d,0x68,0x08, +0x29,0x2d,0x41,0x89,0x3b,0x30,0xca,0x52,0x28,0xed,0xc3,0x18, +0xd8,0xc1,0x8a,0xdf,0x82,0x39,0x79,0x8a,0xcc,0x1a,0x06,0x74, +0xa8,0x57,0xfd,0x4d,0xf2,0x2a,0xf5,0x71,0x21,0x8a,0xdc,0xba, +0xd6,0x7e,0xe7,0xdc,0x63,0xae,0x19,0xcf,0x51,0xa6,0x93,0x0e, +0x5e,0x30,0x4b,0xe1,0x7d,0x97,0x98,0xeb,0x1b,0x6e,0xa5,0xaa, +0xba,0xb4,0xb0,0xb8,0xa4,0xa8,0xec,0xbc,0x7d,0x83,0x63,0xbb, +0x8b,0xa9,0xfd,0x06,0xe7,0x25,0xae,0x95,0x4a,0xfe,0x87,0xa6, +0x27,0x6d,0x37,0xba,0x6f,0xd8,0xfc,0xef,0x73,0x17,0x9a,0x39, +0xfc,0x06,0x8b,0xa5,0x88,0x99,0xf9,0xa6,0x4b,0x69,0x20,0xae, +0x97,0xc3,0x7a,0x43,0x9c,0x4e,0x0d,0x31,0x5d,0x1f,0x37,0xca, +0x60,0xe3,0x70,0x20,0x1a,0xf5,0xa2,0x11,0x8d,0x98,0x4b,0x82, +0x9c,0x64,0x17,0x6b,0xc0,0x11,0x26,0xc8,0xdc,0x45,0x66,0xa9, +0x54,0x34,0x3b,0xb5,0x7a,0x76,0x71,0xf8,0xdf,0x38,0xfe,0x2f, +0xbd,0x84,0x51,0x34,0x46,0xff,0xc9,0xfa,0x94,0x04,0x7e,0x24, +0xd7,0xa0,0x60,0xe8,0x94,0x04,0x2d,0xe9,0x94,0x84,0x27,0xc3, +0xa7,0x24,0x14,0x48,0xa7,0x24,0x08,0xef,0x0d,0x07,0xb0,0xd6, +0x63,0xd0,0xef,0x41,0x7d,0x29,0x5c,0x96,0x2a,0x60,0xa9,0x21, +0x4e,0xa1,0xd5,0x99,0xa2,0x8f,0x2b,0x64,0xb0,0x62,0xb8,0x5f, +0x0c,0x7a,0xd1,0x80,0x56,0x67,0xb7,0xf0,0x98,0x58,0x0a,0x59, +0x7d,0xac,0xb8,0x64,0x15,0x09,0x33,0xf3,0xfc,0xd0,0x79,0x67, +0xdd,0xf6,0x9a,0x55,0x25,0x5b,0x3b,0x0a,0xf9,0xfd,0xb7,0xdd, +0x5f,0x04,0xb6,0x54,0xb5,0xd6,0x3c,0xce,0xbb,0xcc,0xc1,0x88, +0x1c,0x12,0x6a,0xe6,0xbe,0xc6,0x65,0x4f,0xed,0x9e,0x86,0x15, +0xc5,0xc6,0x9d,0x45,0xfc,0xbe,0xdb,0xae,0x2f,0x03,0xeb,0xab, +0xdb,0x2e,0x3c,0x2a,0xbc,0x42,0xbf,0xcf,0x22,0x61,0x96,0xae, +0x2b,0xdd,0xcc,0x1a,0x76,0xd5,0xaf,0x2a,0x31,0xee,0x28,0xe1, +0x83,0xee,0xb9,0x3c,0x0b,0xaa,0xab,0x6c,0xaa,0x7b,0x96,0xdf, +0xcf,0x0d,0xba,0xe0,0x42,0xda,0xc0,0xf5,0x52,0x03,0x3d,0x69, +0x03,0x0d,0xe1,0xad,0xc7,0xd2,0x36,0xcc,0x2b,0x28,0x1b,0xb0, +0x43,0x6c,0xc0,0x92,0xc7,0xc8,0x1a,0x32,0x82,0xdf,0x1e,0x02, +0xfe,0x7d,0x62,0xb4,0x25,0xfd,0x3b,0x19,0x86,0x59,0x08,0x05, +0xfd,0x18,0x45,0xb1,0x89,0x53,0x87,0x91,0xdb,0x83,0xda,0xcc, +0xc1,0xa3,0xa1,0xc7,0xc2,0x8e,0x71,0xad,0xa8,0xf7,0x12,0xc6, +0xd2,0xb6,0x8e,0x7d,0x0c,0x1f,0xf4,0xe0,0x07,0xbf,0xc9,0x68, +0x5c,0x2a,0x60,0x86,0x21,0x8e,0xa6,0x6d,0x1d,0xad,0x8f,0xb3, +0xe4,0x30,0x0b,0x17,0xf4,0xc2,0x02,0xd0,0x65,0xd3,0xac,0x3f, +0xce,0xfc,0xbc,0xe8,0x56,0xa1,0x16,0x1a,0xf4,0xa9,0x2f,0x41, +0x9d,0x4a,0x7c,0xc1,0xc2,0x78,0x0a,0xa3,0xb0,0x06,0x26,0xe0, +0x1a,0x16,0x22,0xc5,0x4f,0xc8,0xfe,0xc3,0xc9,0x95,0xba,0x82, +0x68,0x3a,0x38,0x8a,0x35,0x2f,0x09,0xea,0xd3,0xb9,0xc4,0x34, +0xe6,0xe5,0x52,0x92,0x0b,0x63,0xe5,0xf9,0x1a,0x98,0xce,0x0e, +0xba,0x09,0x4d,0x94,0xd0,0xb6,0x4b,0x84,0x66,0x4e,0x09,0xcd, +0x18,0x46,0xde,0x61,0xc0,0x44,0xda,0x28,0x71,0x1d,0x2d,0x65, +0x1d,0x2b,0x1e,0xad,0x20,0xb7,0x90,0xdd,0xce,0xc0,0x58,0xda, +0x9a,0x3b,0xc8,0x1a,0x33,0x90,0x7c,0x9e,0xd0,0xef,0x0c,0x18, +0xef,0x58,0xc7,0x18,0xfb,0x58,0x0a,0x03,0x3b,0xd4,0x8f,0xc8, +0x34,0xd4,0x56,0x82,0xf6,0x5a,0x1c,0x49,0x29,0x79,0xe4,0x0a, +0x7c,0x5f,0x0e,0xef,0xe3,0x22,0x15,0x2c,0x82,0x89,0x2a,0x9c, +0xf8,0x39,0x68,0x50,0xfa,0xd6,0x78,0x02,0xef,0x76,0xe3,0xbb, +0x7f,0xb0,0x6a,0xff,0xc1,0x3f,0x88,0x6d,0xa7,0xe7,0x80,0xff, +0x8d,0x76,0xe0,0xca,0x60,0x66,0x0a,0x18,0x71,0x5d,0x58,0x02, +0x1c,0x74,0xaa,0xc4,0xa7,0x72,0xd5,0xe0,0x64,0xd6,0x3c,0x26, +0xdd,0xe2,0x93,0xec,0xe7,0x85,0xb7,0x0a,0xb4,0x70,0x43,0xaf, +0x5a,0x17,0xfc,0xd9,0x78,0x9c,0x1e,0x8a,0xa3,0x7d,0xe7,0xfb, +0x7c,0x7b,0x10,0x46,0x44,0xc0,0x58,0x65,0x24,0x9f,0x8b,0xd3, +0x2a,0xf0,0xdd,0x56,0x1c,0xe5,0x67,0xec,0x6a,0x69,0x6d,0x5f, +0x6d,0xcd,0xb7,0x36,0xd7,0xf5,0x54,0x5f,0xad,0x34,0xbd,0x20, +0x6f,0xb2,0xe5,0xf0,0xa1,0x34,0x80,0x3e,0x01,0xf4,0x61,0x02, +0x23,0x4a,0x02,0x0b,0x35,0x4c,0x40,0x83,0x85,0x2d,0x54,0xa5, +0xef,0x06,0x8d,0x6b,0x0c,0x5c,0x8b,0x90,0x0e,0xf7,0x9e,0x00, +0xab,0x59,0xfc,0x3b,0x4d,0xeb,0xae,0x20,0x67,0xc2,0x80,0xc6, +0x14,0xe0,0xae,0x21,0x47,0xb5,0x61,0xab,0xd4,0xd2,0xd5,0x8c, +0x57,0x8c,0x63,0xac,0x03,0x6d,0xe9,0x7f,0x2d,0x17,0xee,0x13, +0x9c,0xc5,0x9c,0x6b,0x2a,0xef,0x2c,0x68,0xe5,0x5a,0x70,0x2f, +0x9b,0x5a,0x90,0x52,0x90,0x54,0x60,0x99,0xc3,0xfb,0x2c,0xd8, +0xb9,0x6c,0xbd,0x71,0x83,0x03,0x9f,0x9e,0xa6,0x81,0xf9,0xb0, +0x91,0xf5,0xc3,0xf9,0x2b,0xf5,0xf1,0xfd,0x2d,0xd5,0x0a,0x1e, +0xe6,0x7d,0xfa,0xfd,0x1f,0xd5,0xb0,0x95,0x03,0x57,0x66,0x70, +0x06,0xf5,0x9a,0xbf,0x80,0xe6,0xbf,0x88,0xb0,0x37,0xa0,0x09, +0x3f,0x0a,0x77,0x49,0xa8,0x53,0x80,0xbd,0x17,0x4d,0x5a,0x6c, +0x98,0x8b,0xb5,0xe7,0x9a,0x2b,0xda,0x38,0x71,0x3a,0x15,0x4b, +0x7f,0x81,0xc0,0x5d,0x07,0x08,0xbc,0xb7,0x80,0xf1,0x3d,0x1e, +0x70,0x2c,0x50,0x07,0x27,0xd1,0x0b,0x53,0x12,0xcb,0x4f,0x56, +0x56,0x6b,0x7f,0x0b,0xd3,0x70,0x0f,0x3b,0x18,0xd1,0xfe,0x67, +0xec,0xbd,0xe1,0x23,0xa1,0x0e,0x0b,0xc8,0x3a,0x26,0x28,0x2e, +0xa5,0x54,0x17,0x9c,0xcd,0x31,0x98,0xb5,0x2e,0xdc,0xa7,0xd2, +0x79,0xc5,0xb4,0x64,0x64,0x49,0x0f,0xc6,0x59,0x9b,0x6c,0x0d, +0x4d,0xe1,0x0f,0xc1,0x87,0x04,0xdf,0xf1,0xba,0x13,0xdc,0x50, +0xd5,0x7a,0xe1,0x6e,0xd1,0x0d,0x65,0x36,0x1f,0x62,0xe2,0xb9, +0xc9,0x79,0x77,0xad,0xc9,0x85,0x0d,0xa5,0xdb,0x39,0xf0,0x2e, +0x23,0x81,0xb7,0xbd,0x6e,0x04,0x34,0x9e,0xeb,0xac,0xbe,0x56, +0x72,0x4b,0x91,0xc3,0x1f,0xd8,0xe5,0x63,0xec,0xb4,0xbb,0x7e, +0xcf,0xc5,0xcd,0x65,0xf4,0x7b,0xdf,0x32,0x12,0x70,0xcb,0xeb, +0x86,0x5f,0xe3,0xf9,0xb6,0xf3,0xd7,0x4b,0x6f,0x29,0x73,0xf9, +0x7d,0xbb,0x3c,0x8c,0x9d,0x77,0x37,0xec,0xae,0xdd,0x52,0xb6, +0x83,0x13,0xbd,0x31,0xe2,0x0d,0xe2,0x6c,0x54,0xe1,0xc6,0x7f, +0x63,0x8f,0xad,0xbd,0xb8,0xf5,0x25,0x6b,0x21,0xed,0xcf,0xfe, +0xd6,0x4a,0xa9,0xed,0x91,0xff,0x68,0xbb,0xe1,0xe0,0x48,0xd2, +0x09,0x9f,0x5b,0xf7,0x0b,0x29,0xa2,0x4c,0x4c,0x61,0xf1,0x3b, +0xc1,0x8d,0xbc,0x40,0x66,0x25,0x43,0x75,0xcc,0x1b,0xa4,0x11, +0x74,0x5d,0xa5,0x35,0x35,0xf3,0x28,0xa9,0xf7,0x0c,0xed,0x9c, +0x24,0x6d,0xa0,0xc4,0xa2,0xb5,0x95,0x74,0x78,0x92,0x0e,0x2c, +0x1d,0x3a,0xa1,0x62,0x26,0xfd,0x3c,0x93,0x52,0xc2,0xf1,0x21, +0x4a,0x18,0x4f,0xeb,0x35,0xfe,0x31,0xcd,0x04,0x71,0xae,0x14, +0x8e,0xb3,0x14,0x30,0xcb,0x10,0xc7,0xd2,0x7a,0x8d,0xd5,0xc7, +0x39,0x72,0x98,0x33,0x1c,0x8e,0x0b,0x54,0x6c,0x3b,0xd4,0x90, +0xf6,0x9a,0xba,0xba,0xea,0xa6,0xc2,0xe0,0xfc,0xa0,0x02,0xff, +0xba,0x3a,0x7e,0x7f,0xf5,0xfe,0xaa,0xbd,0x15,0x55,0x3d,0x05, +0x97,0xd2,0x6e,0x72,0x4d,0x78,0x54,0x01,0x66,0xec,0x21,0xfb, +0x28,0xe7,0x10,0xb7,0xc0,0xca,0x80,0x72,0xff,0x52,0x77,0x4f, +0xfe,0xbc,0x7f,0x95,0x5f,0xa5,0xb7,0xbf,0x8b,0xbb,0x87,0x9d, +0x27,0x27,0x2c,0x06,0x7d,0xe2,0x5f,0xe5,0x5b,0xee,0x5b,0xe2, +0xe5,0xc1,0x9f,0x0f,0xac,0xf6,0xab,0xf2,0xf5,0x76,0x76,0x70, +0xb3,0xf4,0xac,0xb6,0xe7,0xfb,0xea,0x5a,0xeb,0x6b,0x5a,0xaa, +0x3d,0x2b,0x3d,0x2a,0x5c,0x6b,0xeb,0x78,0xff,0x06,0xdf,0x7a, +0xef,0x9a,0x8b,0x3d,0xc5,0x03,0x19,0x52,0xd9,0x1f,0x29,0xc0, +0x92,0x8d,0xb5,0x0f,0x93,0x36,0xed,0x18,0x1c,0xbb,0x9e,0xc6, +0xb4,0xb1,0x14,0xd3,0x72,0x1a,0xd3,0x5b,0x60,0xe4,0x3d,0x06, +0xe5,0xd4,0x5f,0x86,0xc3,0x57,0x93,0x06,0xf2,0x3d,0x64,0xb7, +0x30,0x82,0x21,0x46,0x93,0xbd,0xe7,0x83,0xab,0x83,0x2b,0xaa, +0xaf,0x16,0xdc,0x4a,0xff,0x98,0x6b,0xc4,0x78,0x25,0xec,0x61, +0xe3,0x14,0x91,0xd6,0xfb,0xed,0x7d,0xcf,0xfb,0x56,0x79,0x97, +0x79,0xb9,0xf2,0x35,0xbe,0x17,0x7c,0xce,0x79,0x7a,0x59,0xda, +0x59,0xed,0xb6,0xab,0xb6,0xe5,0xaf,0xb5,0x75,0xf6,0xd4,0x5e, +0x2a,0x0a,0x2a,0x0c,0x28,0xf2,0xe5,0x20,0xe0,0x17,0xd2,0x72, +0xb7,0xfc,0x51,0xd6,0x0b,0xa9,0x12,0x4a,0x90,0xb1,0xd1,0x3b, +0x43,0xcc,0x7c,0x65,0xbe,0x9d,0xc1,0xdd,0xa1,0x5d,0xb6,0xc1, +0x7c,0xbe,0x45,0xd5,0x9e,0x3a,0x33,0x4f,0x47,0x07,0x17,0x53, +0xf7,0x2a,0x3b,0x7e,0xe0,0x62,0x5b,0x63,0x4d,0xeb,0x05,0xfb, +0x7a,0x97,0x46,0x9f,0x0b,0x5d,0xbc,0xe3,0x39,0xb7,0x06,0x69, +0xbf,0x71,0x61,0x1c,0xf8,0x13,0x0a,0x11,0x93,0x9f,0x0c,0xcd, +0x69,0xfb,0x43,0x36,0x6d,0x68,0x86,0xe4,0x5a,0x9c,0x40,0xe1, +0x64,0x02,0x15,0xf7,0x72,0x58,0x88,0x0b,0x7b,0xa9,0xc2,0x9f, +0xad,0xc2,0xd9,0xaf,0x58,0xb5,0x95,0xf0,0x29,0x11,0x6b,0x14, +0x10,0x8b,0x13,0x31,0x60,0x70,0x47,0x2f,0x78,0x31,0xa5,0x8e, +0x4d,0x77,0x93,0xdb,0x4f,0xf5,0x6a,0x9d,0x61,0x12,0xe5,0xc9, +0x0e,0x4d,0x9b,0x4b,0xdb,0x78,0xdb,0x4f,0xa2,0xfb,0xe1,0x2d, +0xed,0x57,0x1b,0x6c,0xcf,0x99,0xb0,0x2b,0xc2,0xb6,0x3b,0xed, +0xd0,0x11,0x8c,0x60,0xdd,0xe0,0xd8,0x0e,0xf5,0x58,0xd8,0x24, +0xde,0x98,0x2e,0x0d,0xad,0x3c,0x63,0xda,0xb2,0xf2,0xda,0x75, +0x85,0x5f,0x71,0x1f,0x95,0x39,0xc7,0xd9,0xc1,0x44,0xb4,0x26, +0x38,0x6a,0x33,0x8c,0x62,0xc1,0x4e,0x9a,0xc7,0x0c,0xa3,0x1e, +0x30,0x42,0x00,0x9e,0x23,0x52,0xb9,0x8d,0x9b,0xca,0xdb,0x79, +0x9b,0x7f,0x94,0x5b,0x6d,0xc2,0x2e,0x0f,0xdd,0xee,0xb8,0x5d, +0xa7,0xcc,0xbe,0xf9,0x4e,0x72,0x07,0xbd,0xfd,0xe0,0x52,0x18, +0x4d,0xee,0x23,0xb7,0x99,0xa1,0xa5,0x71,0xe4,0x01,0x72,0x1b, +0x18,0xe9,0x50,0xf1,0x21,0x16,0x1b,0xf5,0x78,0x68,0xae,0xc9, +0xef,0xf2,0xe9,0xa8,0xa5,0x04,0x2d,0x43,0x7c,0x9b,0xba,0xd2, +0xdb,0xfa,0x38,0x55,0x0e,0x53,0x71,0x81,0x8a,0xba,0x92,0x8e, +0x0a,0x75,0x5e,0x52,0x88,0xa4,0x32,0x54,0xbc,0x23,0x83,0x33, +0xc8,0x61,0xc4,0xa0,0x79,0xbf,0xfa,0x7d,0xd8,0x2c,0x6e,0x33, +0x81,0xbf,0xc9,0x45,0x85,0xea,0x16,0xc4,0x0a,0x93,0x65,0xf8, +0xb7,0xdd,0xc2,0x36,0xd8,0x21,0x3e,0xc2,0x09,0x4c,0x86,0x4c, +0xe3,0x37,0xa6,0x25,0x3f,0xaf,0x55,0x57,0xad,0x81,0x87,0x29, +0x90,0x66,0xb2,0x83,0x45,0x12,0xe0,0x8d,0x34,0x95,0xfc,0x60, +0x33,0xf5,0x83,0xdd,0x30,0xf2,0x1a,0x83,0x9b,0xa9,0x1f,0x5c, +0x46,0xce,0x94,0x81,0x51,0xb4,0x72,0x14,0xe5,0x76,0x33,0x9a, +0xea,0xaf,0x7e,0x97,0x8e,0x1e,0x7b,0xda,0x2d,0xbc,0xdb,0x26, +0xbe,0x5b,0xcb,0xc2,0xf4,0x8e,0xba,0xf3,0xe9,0xd7,0xa8,0xe0, +0x4c,0x37,0xea,0xf3,0x80,0xd9,0xbb,0x8a,0x3b,0x78,0x1c,0xd3, +0x6e,0x76,0x6e,0x7f,0x07,0x07,0x96,0xed,0xe8,0x98,0xc1,0xd4, +0xc2,0x8e,0x76,0xdc,0xd1,0x27,0xb3,0x1c,0x7a,0x48,0xed,0xce, +0x46,0xe3,0x2e,0x5b,0x30,0x62,0x43,0xdc,0xac,0x02,0x90,0xf3, +0xc4,0x35,0x0f,0xf8,0xd8,0x33,0x71,0x1f,0x1d,0x8e,0x3b,0x1c, +0xc7,0xc7,0x27,0x26,0xa7,0x9f,0xc9,0x38,0x93,0xad,0x05,0x5b, +0xdb,0xd1,0x48,0xfa,0xe9,0xb2,0x76,0x5c,0x26,0xfd,0x74,0x9b, +0x2d,0x6c,0x73,0x63,0x63,0xd0,0xde,0x16,0x2c,0xd8,0x83,0x0e, +0x0a,0x4f,0x9c,0x6c,0x53,0x6c,0xcd,0xff,0xd6,0xdc,0x75,0xae, +0xbe,0xf6,0xec,0xd9,0x33,0x27,0x93,0x8f,0xc2,0xae,0x15,0xbc, +0xa7,0xa8,0x61,0x27,0x68,0x28,0xf1,0x26,0x1e,0x87,0x9b,0x32, +0x71,0xa5,0x8d,0xb0,0xd2,0xf0,0xd2,0x63,0x61,0x4b,0x87,0xb8, +0xa5,0x97,0xb5,0x11,0x74,0x48,0x5e,0x65,0x8e,0xbf,0x86,0x3d, +0x26,0x12,0x3c,0xd3,0x0f,0x67,0x18,0x78,0x6c,0x41,0xb0,0xa0, +0x1f,0x0a,0x18,0xf1,0x21,0x0d,0xf2,0x33,0x66,0x48,0xaf,0x5d, +0xbf,0x44,0xa0,0xc0,0x0c,0x0b,0x28,0xeb,0xee,0x02,0x77,0x72, +0xfb,0x9a,0xea,0x7e,0xe3,0x33,0x0e,0xd6,0x33,0x0d,0xab,0xfb, +0xb6,0xdc,0xd9,0x53,0xdd,0xc6,0x9b,0x75,0x3a,0xf4,0x7a,0x5f, +0xe7,0x60,0x7c,0x17,0xce,0x65,0xa2,0xab,0x62,0xab,0x0f,0x5d, +0xe0,0x60,0x56,0x27,0x9e,0x60,0xce,0x96,0x9f,0xad,0x38,0x53, +0xc1,0x41,0x62,0x17,0x1e,0x63,0x12,0x4b,0x4e,0x95,0x9c,0x2a, +0x95,0x25,0xf2,0xc7,0x83,0x8e,0x07,0x1f,0x0b,0xe6,0xd0,0xde, +0x0a,0x14,0x4c,0x82,0x7f,0x42,0xe0,0x91,0x40,0x0e,0x97,0x5b, +0xc3,0x2c,0x26,0xce,0x3b,0x46,0x1a,0xbc,0xc5,0x99,0x56,0x30, +0x86,0xf1,0xda,0xe5,0x60,0x69,0x61,0xc5,0x05,0xb9,0x4b,0xdd, +0x3f,0xf9,0x31,0xcc,0xa3,0xc8,0x23,0x21,0xc9,0x02,0x05,0x2c, +0x30,0xc4,0x89,0xb4,0xfb,0x27,0xea,0xe3,0x22,0x39,0x2c,0x1a, +0x46,0x92,0x65,0x2a,0x5c,0xf6,0x92,0x15,0x3c,0xe1,0xbf,0x48, +0x8a,0x77,0xaa,0x4f,0x3a,0x2d,0x66,0x22,0x93,0x51,0x95,0x7e, +0x2e,0xf5,0x3c,0x27,0xba,0xf8,0xd1,0x0e,0xdd,0x24,0x75,0xa8, +0x03,0xed,0x50,0x23,0x18,0xf9,0x90,0x41,0x07,0xda,0xa1,0x1f, +0x23,0xbb,0x89,0x81,0x49,0x34,0xb0,0x1f,0x22,0x6b,0xc4,0xa8, +0x79,0xaa,0x8f,0xbb,0xd0,0xf4,0x9b,0x3f,0x3a,0x30,0xd3,0xe6, +0xbb,0x45,0xb8,0xcd,0x8a,0xa6,0xb0,0xa1,0x1b,0x76,0x29,0x51, +0xdb,0x46,0xda,0x10,0x75,0x76,0xff,0xc3,0xeb,0x99,0x3f,0x72, +0x67,0x99,0x8c,0xf9,0x4f,0x77,0xc0,0x3c,0x0b,0x69,0x35,0xc2, +0x07,0x1d,0xc6,0xdd,0x21,0x9f,0xd0,0x50,0xd4,0x85,0x60,0xa9, +0xaa,0x53,0x1f,0xc3,0xa2,0x1e,0x5c,0xf4,0x9b,0x85,0x1e,0xae, +0x50,0xc0,0x0a,0x43,0xe4,0x69,0x55,0x79,0x7d,0x5c,0x25,0x83, +0x55,0xc3,0x60,0xbc,0xb6,0x17,0xd7,0x52,0xbd,0xb5,0x5e,0x28, +0x21,0x42,0xb9,0x4a,0x2c,0x67,0xae,0xe0,0x0f,0x44,0x98,0x09, +0x41,0xe2,0x4c,0xa6,0x1f,0x3f,0x94,0x96,0x2c,0xd6,0xe1,0x68, +0x76,0x70,0x74,0x2d,0x45,0xeb,0x75,0x12,0x5a,0x4b,0x6b,0x05, +0xa8,0xd8,0x7d,0xca,0xa0,0x1f,0x55,0x49,0x8f,0x90,0x5d,0xc7, +0x80,0x36,0xad,0xf5,0x53,0x64,0xa9,0x9c,0x4d,0xc7,0x9f,0x48, +0x3f,0xbc,0xb6,0xe8,0x17,0x6c,0x45,0x57,0xd1,0x96,0x36,0x12, +0xea,0x28,0xdb,0xd2,0x62,0x66,0x31,0xaa,0xe1,0x25,0x90,0xf3, +0x69,0x79,0xe8,0x44,0xa3,0x73,0x32,0xbd,0x3e,0x99,0x05,0xdb, +0x29,0xf4,0xd2,0x64,0x9c,0x2f,0x6d,0xb7,0xb2,0x9f,0x7c,0x98, +0xbf,0xb5,0xd4,0xa4,0xf2,0x76,0x53,0x5f,0xf7,0x85,0x4b,0x5c, +0x03,0x76,0xb2,0xf9,0xa5,0xb9,0xa5,0x99,0x25,0xd2,0xf1,0x78, +0x37,0xc5,0xa9,0x4c,0x56,0x51,0x66,0x71,0x7a,0x09,0x27,0xbc, +0xdf,0x27,0x8e,0x62,0x92,0x0b,0x93,0x0a,0x4e,0xe7,0x5b,0x64, +0xf0,0x91,0xdb,0x1d,0xe7,0xef,0xda,0x55,0xef,0xc4,0xa7,0xa7, +0xa7,0x67,0xa4,0x65,0x72,0x58,0x4b,0xed,0xeb,0x6d,0x29,0x37, +0xdd,0xee,0x5c,0xe9,0xc0,0x67,0xa7,0x66,0xa5,0x67,0xa5,0x57, +0xb9,0xd7,0x7b,0xb5,0xf9,0x6d,0xf6,0x31,0x08,0x5a,0x12,0x96, +0x6f,0xc5,0xbf,0x2e,0xf8,0xae,0xfa,0x59,0xd3,0x3d,0xb7,0x67, +0xbe,0x5f,0xef,0xe5,0x06,0xd7,0x80,0x1b,0xe5,0x89,0x99,0xff, +0x37,0x7f,0x7d,0x28,0x87,0x0f,0x0d,0x71,0x1a,0x35,0xd9,0x34, +0x7d,0xdc,0x20,0x83,0x0d,0x7f,0xf2,0x17,0x2b,0xcc,0x16,0xec, +0xc9,0x3a,0x6c,0x79,0x44,0x19,0xca,0xf1,0x4f,0x1a,0x8b,0xa0, +0x86,0x59,0x0e,0x6f,0xbd,0x62,0x84,0x68,0x03,0x62,0x80,0x2d, +0xcf,0x59,0x71,0xe3,0x86,0x3f,0xd9,0x8b,0x72,0xf5,0x2b,0xca, +0xd5,0xe0,0xb3,0x81,0x9c,0xfc,0xe8,0xa3,0x93,0x3a,0xd4,0xb1, +0x7d,0x9d,0xec,0xdc,0xcd,0xbd,0x2d,0xcf,0x3b,0xd4,0xf9,0x35, +0x70,0x9a,0xea,0x9d,0xc2,0x77,0xe4,0x5b,0x88,0xec,0xc1,0xc8, +0xaf,0xcc,0x97,0xa0,0x8f,0x02,0x7c,0x16,0x62,0xa4,0x5c,0x68, +0x55,0xb1,0x83,0xd6,0xe2,0x44,0xf2,0x27,0x89,0x49,0x33,0xcd, +0x25,0xd7,0x9b,0xad,0x80,0xd9,0x86,0x38,0x4e,0x1a,0x7d,0xd2, +0xc7,0xb9,0x72,0x98,0x3b,0xec,0x7a,0x12,0xf2,0x30,0x32,0x61, +0x39,0xf5,0xb1,0x6d,0xff,0x17,0x79,0x08,0x89,0xa2,0x92,0x74, +0xd5,0x36,0x37,0x55,0xd6,0x3b,0x5d,0xe0,0x83,0x3d,0x9c,0x9d, +0xec,0x7d,0x82,0xea,0x0e,0x34,0x45,0xb4,0x73,0xb0,0x1d,0x3c, +0x44,0x07,0xf4,0x80,0x15,0x8c,0xad,0xa9,0x91,0x62,0x9e,0x73, +0x85,0x35,0xdf,0x9c,0xdf,0x58,0x54,0x5b,0xca,0xa1,0x1e,0xeb, +0x1e,0xef,0x1e,0xef,0x91,0x90,0x2a,0xe7,0x7f,0xcb,0x80,0xd1, +0x85,0x3f,0x97,0xc5,0xf5,0xf0,0xb6,0x31,0xca,0x18,0x79,0x1c, +0x07,0x5b,0xd9,0x8a,0xd2,0x92,0xf2,0xfc,0xaa,0x26,0xe4,0x5f, +0x52,0xfd,0xc5,0xaf,0xa8,0xed,0xe2,0x2d,0x6a,0x6c,0x1a,0x5d, +0xdb,0xb8,0x12,0x78,0x46,0xf4,0xf0,0xbb,0xdf,0x58,0x71,0xa2, +0x1b,0xb9,0x8d,0xec,0xb6,0xff,0xc5,0x59,0x9a,0x0f,0xd5,0x06, +0xc4,0x56,0x58,0x4c,0xc1,0x67,0x00,0xdc,0x3a,0xd1,0xad,0xd7, +0x42,0x86,0xb6,0xd6,0x60,0x6b,0xce,0x0a,0xd3,0x3e,0x25,0xc0, +0xa3,0x33,0x63,0x9a,0x1b,0x7a,0x49,0xa7,0x9e,0xa9,0x4f,0x95, +0x86,0xfd,0xc6,0xb2,0x36,0x79,0x1a,0xb8,0xc0,0x9b,0xdd,0x1f, +0x2f,0xed,0x51,0x90,0x8c,0xf1,0x7a,0x2c,0x6a,0x1c,0x94,0x2b, +0x4c,0x75,0x6a,0x9c,0x34,0xae,0xde,0x2d,0x7f,0x00,0xa3,0xb5, +0x51,0x6f,0x50,0x9b,0xa0,0x6d,0x13,0xac,0xa2,0x2e,0xba,0xaa, +0x09,0x64,0x4d,0x28,0xab,0x87,0x85,0xf9,0x9d,0x30,0x4e,0xb4, +0xc3,0x71,0x9d,0x07,0x61,0xa1,0x2b,0x5a,0x3a,0x81,0xa5,0x13, +0xae,0x44,0x3f,0x58,0xe9,0x84,0x0e,0x0e,0xe0,0xb0,0xae,0xfb, +0x11,0xd8,0x32,0x76,0x42,0x01,0x51,0xa2,0xd0,0xcd,0xaa,0xbf, +0x17,0x9b,0xc9,0xa6,0x1a,0xd3,0x26,0xeb,0x8e,0xab,0x1f,0x37, +0x3c,0x2b,0x7c,0xc1,0xb5,0xe1,0xa0,0x0c,0x3a,0xd9,0xf0,0x5d, +0xde,0x3b,0x94,0xa6,0x76,0x2a,0xf7,0xcb,0xbe,0x57,0x14,0xc1, +0xfc,0x45,0xe3,0xc6,0x9d,0xdd,0x66,0x32,0xa5,0xb1,0x83,0x81, +0x77,0x99,0x82,0xff,0xa2,0xe6,0xe3,0xf6,0x4b,0x7d,0x3d,0xca, +0xeb,0x76,0x9f,0xb9,0x70,0x83,0x06,0xd0,0x4e,0xf0,0x9d,0x16, +0x78,0x87,0xe9,0x76,0x20,0x2d,0x30,0xc6,0x81,0x45,0x23,0x57, +0x62,0x83,0xef,0x74,0x48,0xcf,0x69,0x61,0x8c,0x0d,0x8e,0x61, +0xfe,0x1c,0x12,0xe3,0x29,0x61,0xf2,0xff,0xdf,0x21,0xb1,0xa5, +0x2a,0x56,0x30,0x72,0x22,0x75,0xd5,0xf5,0x4d,0x15,0x17,0xbd, +0xa4,0xee,0xf3,0x70,0xf7,0x0a,0x38,0xd8,0x10,0xd5,0x74,0xa4, +0x85,0x76,0x5f,0x17,0x15,0x47,0x5f,0x76,0x2c,0xfd,0x5a,0xbe, +0x18,0x27,0xd1,0x97,0x0f,0x6d,0x3e,0x43,0x66,0x16,0x73,0xe6, +0xd1,0xa9,0xaf,0xe0,0x6d,0x6d,0x61,0x1e,0x04,0x8a,0x2e,0x18, +0xc8,0xe0,0xab,0x18,0x9c,0xbf,0x03,0x67,0xeb,0xb4,0xbb,0x37, +0xbc,0x2a,0xfa,0x29,0x03,0xe6,0x69,0x3d,0xc4,0x5c,0x26,0x30, +0x21,0xf0,0x68,0xf0,0xb1,0x54,0x05,0xff,0x38,0x1d,0xc6,0x15, +0x5f,0xcf,0x3d,0xd2,0xc1,0x7b,0x1f,0xb6,0x8d,0xb5,0x3e,0xc4, +0x41,0xf2,0x23,0x36,0x0f,0xdf,0xb9,0x86,0xef,0xc1,0xe4,0x15, +0x55,0x6d,0xbc,0xd5,0x45,0xb7,0xfa,0x80,0x46,0xae,0x5c,0xda, +0xd3,0x74,0x0c,0xfe,0x0c,0x63,0x58,0xbc,0x87,0x9e,0xd4,0xd3, +0x8c,0x24,0x4f,0x73,0xff,0x73,0x2c,0x4d,0x70,0xc2,0x89,0xd2, +0x4a,0xf1,0x49,0xc0,0xb0,0x62,0xbd,0x27,0x85,0x33,0xce,0x88, +0x81,0x29,0xff,0x18,0x56,0x13,0xde,0x19,0xd6,0x09,0x93,0x9e, +0x0c,0x39,0xb3,0xa4,0x13,0xe6,0x29,0x60,0xde,0x3f,0x74,0xc2, +0x02,0x39,0x2c,0x18,0xd6,0x09,0x73,0x55,0x38,0xf7,0x15,0x2b, +0xb0,0xd0,0x4c,0x5a,0x71,0xc6,0x33,0xd8,0x86,0xed,0x2a,0x68, +0x07,0x93,0xd5,0xb8,0xc0,0x1e,0x16,0x15,0xa8,0x60,0x19,0x26, +0xdc,0x83,0x7d,0x5d,0x62,0xac,0x15,0xf8,0x6e,0xa1,0x69,0xe9, +0xb2,0xee,0x10,0x16,0xcf,0xd5,0xfd,0x49,0xfc,0xb6,0x94,0xf8, +0x37,0xc2,0xa8,0x4f,0x18,0xe8,0xc2,0xe5,0xa4,0x0d,0x67,0xd9, +0xb1,0x82,0xe1,0x94,0x36,0x5c,0x64,0xc7,0x0e,0xbe,0x7d,0xf4, +0x7f,0xf1,0xfb,0x27,0xc8,0x6d,0x64,0xd4,0xf3,0x66,0x11,0xd0, +0x12,0x6d,0xad,0x05,0xbd,0xd5,0xe2,0x06,0x2b,0x61,0xc3,0x52, +0x51,0xcf,0x4a,0xd0,0x53,0xf4,0x83,0xb2,0xaf,0x8b,0xd5,0xfc, +0x2f,0x0b,0xf8,0x88,0x04,0xb6,0xfa,0xb4,0x7a,0xd6,0x71,0x03, +0x70,0x0e,0xbd,0x07,0xe0,0xa3,0x76,0xfc,0xe8,0x81,0x6c,0x03, +0x46,0xd9,0x42,0x94,0x39,0x05,0xf1,0x73,0xe0,0xb8,0x95,0x39, +0x66,0xb8,0xe6,0xb8,0xd1,0xd4,0xd3,0x34,0x3c,0x4f,0xc3,0xae, +0xb3,0xa0,0x9b,0xa6,0x95,0x1e,0x9e,0x16,0x9e,0x1a,0xce,0x89, +0x8d,0xc7,0xdf,0xd0,0xc7,0xcc,0x1e,0x9c,0xf9,0x6f,0xe8,0x63, +0x8e,0x0a,0xe7,0x50,0xfa,0x98,0x47,0x59,0x71,0x2b,0xce,0xbb, +0x4b,0x31,0x74,0x2b,0xb9,0x0b,0x2b,0xb6,0xb2,0x83,0x2b,0x12, +0xff,0xc2,0x1d,0xb0,0xc3,0x96,0x6a,0xe0,0x4d,0x38,0x8f,0x01, +0x87,0x29,0x1f,0xc3,0x8a,0x4d,0xec,0x60,0xa4,0xdb,0x3f,0x93, +0x89,0xe0,0x08,0x23,0x08,0x2c,0x60,0x3c,0xf7,0xa5,0xc5,0xa6, +0x46,0xa7,0x45,0x6b,0xd9,0x1d,0xb3,0x39,0x6e,0x75,0x9c,0xfb, +0x74,0x2b,0xb1,0xc4,0xff,0xb6,0x86,0xff,0xc6,0xf9,0xc8,0xb3, +0x39,0x4a,0xe9,0x09,0x55,0x73,0x6e,0x76,0x83,0x2e,0xcc,0x82, +0x31,0x9d,0x38,0xa6,0x8f,0xc5,0x9f,0x71,0x09,0xa9,0xf7,0xaf, +0xf5,0xbc,0xe8,0x56,0x73,0x91,0xf7,0xaa,0x75,0xad,0x75,0x2b, +0xa7,0x60,0x65,0xa7,0x7e,0x42,0x2c,0x56,0x61,0x08,0xda,0x31, +0x38,0x10,0x4b,0x15,0x35,0xce,0xd5,0xe9,0xf0,0x6a,0x81,0x09, +0xd9,0x30,0xf9,0x0c,0x58,0x6a,0x09,0xce,0x70,0x10,0x17,0x83, +0x06,0xac,0xeb,0xc2,0xa3,0x8c,0x18,0x30,0xc8,0x90,0xcf,0x61, +0x0c,0xed,0xf4,0x31,0x4f,0x86,0x5a,0xff,0x87,0x7c,0x1a,0x4e, +0x57,0xc0,0xf4,0xb5,0xf8,0x0e,0xed,0xf4,0x77,0x56,0xe0,0x0c, +0x39,0xcc,0x18,0xce,0x35,0xf5,0x54,0x2c,0x38,0x09,0x2e,0x64, +0x16,0x68,0xbc,0x66,0xba,0x68,0x92,0x07,0x1a,0x3f,0x4b,0x3b, +0x11,0x76,0x50,0xa0,0x1d,0xb5,0x53,0xea,0x56,0x13,0xda,0xad, +0xdb,0x60,0xd4,0x6d,0x06,0xaa,0x13,0x08,0x92,0x99,0xec,0xc9, +0xfa,0x8f,0x9a,0x5a,0xb5,0x21,0x69,0x0a,0x92,0xd9,0x40,0x58, +0x0a,0x10,0x84,0xcc,0x04,0xf2,0x0b,0x33,0x98,0x8e,0xcb,0xc8, +0x0d,0xe4,0x76,0x32,0x94,0x77,0x38,0x8a,0x43,0x1c,0xc5,0x21, +0x91,0xfe,0x1c,0x46,0x74,0xe3,0x08,0x78,0x47,0x8e,0x9f,0x31, +0x7b,0x13,0xf6,0x1d,0xdd,0x7f,0x34,0xcd,0x82,0x7f,0x90,0xf9, +0xaa,0xe0,0x4e,0xbe,0x34,0xc8,0x14,0xe7,0x1e,0xe7,0x46,0xdd, +0x3f,0x2c,0x9c,0x1c,0x88,0x4b,0xa4,0x80,0xf3,0x0e,0xdb,0x59, +0xd2,0x7f,0xb1,0xb5,0x36,0xb0,0x89,0xf7,0xf4,0x75,0xf0,0x77, +0xdc,0xc7,0x01,0x2f,0xc7,0xfb,0xac,0x75,0x7e,0x68,0x8b,0xce, +0x57,0x4c,0x43,0x66,0x6e,0xbd,0xee,0x8f,0xac,0x35,0xc5,0xa8, +0xb1,0xac,0x26,0xec,0x51,0x3f,0xa0,0xd0,0x37,0x53,0x01,0x33, +0x0d,0x71,0x0c,0xed,0xdb,0x31,0xfa,0x38,0x5b,0x2e,0xed,0x4a, +0x21,0xf5,0xed,0x2c,0x15,0xce,0x7a,0x09,0xe3,0xa8,0x1f,0x8c, +0x7b,0x0c,0xb3,0x7b,0x70,0xf6,0x6f,0xac,0xda,0x0e,0x5d,0x48, +0x07,0xb6,0xb0,0x19,0xa5,0xe9,0x65,0x29,0xe5,0x8f,0xce,0x3e, +0x48,0xbd,0x95,0xb9,0xb7,0x95,0xc7,0xc9,0x7b,0x71,0x4d,0x0c, +0x1a,0x1c,0x4b,0xb7,0xe1,0xaf,0x9c,0xbc,0x96,0x78,0xed,0xf4, +0xa1,0xe0,0xe8,0xbd,0x51,0x7b,0x39,0xb4,0xb0,0x81,0x65,0x8c, +0x83,0x99,0xa9,0x7c,0xb3,0x63,0xa5,0x2d,0x7f,0xb1,0xe8,0x7c, +0x69,0x75,0x85,0xb4,0x4c,0xf0,0x32,0x6d,0xfc,0x39,0xff,0xda, +0xc0,0xba,0xbd,0x65,0x1d,0xfc,0xe6,0xa6,0x1d,0xbd,0xae,0x7d, +0x9c,0xe9,0x94,0xcc,0xbd,0x79,0xfb,0x0a,0xf6,0x71,0xe8,0xc2, +0xe4,0x17,0xe5,0x95,0xe4,0x94,0x70,0xa2,0xd9,0xea,0x3f,0xe9, +0xc1,0x92,0xba,0xd1,0x56,0x18,0x79,0x97,0x81,0x5c,0x1c,0x43, +0x9e,0x83,0xad,0x01,0x3b,0x38,0xc3,0xe5,0x0d,0x60,0x8f,0x9b, +0x02,0xec,0x5d,0x64,0x59,0x30,0xa2,0x9a,0x00,0xbe,0x17,0xb4, +0xf1,0x1c,0xa5,0xee,0x2c,0xab,0xa1,0xe7,0xb9,0x85,0x8d,0xba, +0x70,0x4f,0x4c,0x14,0x75,0x59,0xca,0xfe,0xad,0x04,0x23,0x7b, +0x3a,0x61,0x07,0xec,0x64,0x71,0x27,0x4e,0xa5,0xb8,0x46,0x96, +0xb3,0x9a,0x42,0xb4,0x7a,0x13,0x81,0x64,0xe6,0x14,0xbe,0x93, +0x39,0xb3,0x74,0x75,0x90,0x87,0xaf,0x97,0xab,0xcf,0x79,0x17, +0xfe,0x5c,0x79,0x45,0x65,0x71,0x55,0xae,0x5b,0x81,0x4f,0x69, +0xd0,0x79,0xcf,0xfa,0xd4,0xd3,0x5d,0x59,0xb0,0x8c,0xb7,0xcf, +0x8d,0x42,0xfd,0xe0,0xf2,0x90,0x9a,0x88,0x66,0xad,0xe6,0x4f, +0xca,0x9f,0xe6,0x7d,0x21,0xed,0x2e,0xbe,0x31,0x74,0x97,0xbf, +0x79,0xf8,0x9d,0x43,0xcf,0x4e,0x7c,0xcd,0xc1,0x9a,0x1e,0x73, +0xa6,0xfa,0xc2,0xde,0x62,0xdf,0xc2,0xa0,0x2c,0x2d,0x6f,0xcf, +0x8a,0xc8,0xca,0x7d,0x25,0x21,0x5a,0x7a,0xdf,0x5a,0x2d,0xc4, +0xcb,0x38,0x9b,0xc1,0x77,0xe3,0x70,0x9c,0xdb,0x2a,0x9d,0x16, +0x27,0x8d,0x96,0x5f,0xd3,0x40,0x0b,0xf4,0xb4,0xf1,0xa4,0x28, +0x11,0xfb,0x18,0x6a,0xef,0x31,0x6f,0xe2,0x4e,0xae,0x37,0xe4, +0x79,0x86,0xd4,0xf3,0x34,0xe1,0x1d,0xfd,0x61,0xcf,0x1b,0x52, +0xed,0xba,0xd4,0xf3,0x66,0x0b,0x09,0xc4,0x1a,0xf6,0x74,0xb2, +0x62,0x81,0x01,0x35,0xd2,0x4e,0xc9,0x48,0x26,0xd4,0x48,0xd4, +0x5a,0xd4,0xdf,0x0e,0xec,0x97,0x66,0x28,0x1b,0x81,0x37,0x8b, +0x13,0xa4,0x7d,0x1b,0x38,0x8a,0x68,0xac,0x78,0xbe,0x8c,0xfa, +0x18,0x3b,0xe4,0x63,0xec,0x1b,0xd3,0xbd,0x96,0x91,0xae,0xbd, +0x97,0xdc,0x5b,0xdd,0xaa,0x5b,0x79,0xdb,0x3a,0x8b,0x0b,0x4a, +0x4a,0xa5,0x32,0xec,0x25,0x4d,0xb7,0x8a,0x5f,0x66,0xde,0x57, +0x64,0xf0,0xb1,0x9b,0xf7,0x6e,0x74,0x36,0xe1,0x04,0x33,0xd8, +0x48,0xaa,0xcd,0xab,0xd7,0xe5,0x9b,0xf6,0x14,0xf3,0xfb,0x6f, +0xfa,0xde,0xf3,0xb9,0x22,0x3d,0xf5,0x52,0x12,0xbf,0x23,0x67, +0xaa,0x74,0x61,0xbe,0x1c,0x57,0xb1,0x96,0xb9,0x21,0x57,0x74, +0xa8,0x7e,0xaa,0xcb,0xca,0x6a,0xd4,0xfd,0x8e,0xb5,0xca,0xd2, +0xa0,0x9d,0xa2,0x29,0x8c,0x1c,0x86,0xd1,0x09,0x4f,0x60,0x7e, +0x0f,0xce,0x97,0x60,0x74,0x8e,0x02,0xe6,0xac,0x45,0x4d,0x1a, +0x51,0x9a,0xcb,0x71,0x9e,0x1c,0xe6,0x0d,0xc3,0xe8,0x22,0x15, +0x2e,0xa2,0x30,0xfa,0x0e,0x5c,0xa3,0x30,0x3a,0xfd,0x1e,0x18, +0x63,0x46,0x2f,0x64,0x80,0xc5,0x16,0x5c,0x64,0x0f,0x8b,0x73, +0x54,0xf4,0xef,0x8e,0xdf,0x80,0xa0,0x4e,0xf1,0xa0,0x35,0xb8, +0xed,0xc4,0x48,0x9c,0xd7,0x13,0xce,0x62,0x6d,0x3e,0x8d,0xb7, +0xad,0x52,0xbc,0x59,0xd1,0x80,0xd9,0x04,0xa3,0x3e,0x66,0x40, +0x85,0xef,0x91,0x16,0xd4,0x73,0x60,0x85,0x0f,0xa7,0xb4,0xe0, +0x62,0x07,0x76,0x90,0xf1,0x23,0x77,0x91,0xdb,0xca,0xc0,0x78, +0x1a,0x5f,0x1f,0x23,0xb7,0x89,0x51,0xdb,0xdd,0x27,0x62,0x9d, +0x0d,0xc4,0x31,0x71,0xfb,0x63,0xe9,0x3f,0x0e,0x77,0x61,0xaf, +0x0a,0x92,0xbe,0xc0,0xf8,0x4e,0x88,0xff,0x7a,0xe8,0x15,0x46, +0xa0,0x6c,0x07,0x93,0x6e,0xa5,0xd1,0xcd,0x34,0x64,0x49,0x70, +0x13,0x8d,0xe9,0x6c,0x5a,0x51,0x5a,0x51,0x6a,0x11,0x07,0xd2, +0xd4,0xaa,0x1f,0xd5,0xf3,0x49,0x99,0x43,0xcd,0xf6,0x22,0xf9, +0x41,0xd7,0x83,0xee,0xa1,0x7e,0xdc,0x89,0xc3,0x87,0x4f,0x1c, +0x99,0x7a,0x46,0xd1,0x75,0xe6,0x76,0x5a,0x4f,0xa6,0xd6,0xe9, +0x88,0xc4,0xc8,0xc4,0xa8,0xa6,0x2c,0xfe,0x78,0xfa,0xb1,0x8c, +0x63,0xd2,0x41,0xd9,0xcc,0x69,0xf7,0xae,0x33,0xf7,0x53,0x55, +0x59,0xd2,0x77,0xf4,0xdb,0x96,0x2c,0x3e,0x66,0xe0,0xe0,0x83, +0xb0,0x2e,0xa7,0x08,0x3e,0x25,0x30,0xc5,0x3f,0xd9,0x2f,0x38, +0xde,0x37,0xc1,0xef,0x68,0xdb,0x83,0x8e,0xd7,0x17,0x7f,0x76, +0x2e,0xe2,0x23,0xed,0x43,0xac,0xf7,0x5b,0x1f,0xca,0x8b,0xcb, +0x8f,0xcb,0x3b,0x77,0xa7,0xea,0x6f,0xb9,0xbd,0x0e,0x05,0x7c, +0x94,0x32,0x78,0x7b,0xb0,0xd9,0x91,0x8c,0xc3,0x19,0x47,0xd2, +0x0e,0x1c,0xe0,0x3f,0x31,0x60,0xb3,0xaa,0xd2,0xaa,0x92,0xcb, +0x1d,0xd2,0xf8,0x23,0x7e,0xd1,0x5e,0x11,0x5e,0x9c,0x12,0x7f, +0x66,0xe2,0x1a,0x62,0x1a,0x63,0xaa,0x9d,0xa2,0xf8,0x54,0xff, +0x54,0xdf,0x64,0xdf,0xe0,0x78,0xbf,0x04,0xff,0xa3,0x2d,0x0f, +0x5b,0x5e,0x5f,0x78,0xed,0x52,0xc8,0x47,0x3a,0x84,0x5a,0x1f, +0xb0,0x3d,0x9c,0x4b,0x8b,0xce,0xad,0xbe,0x5b,0xf1,0x22,0xbb, +0xd7,0x39,0x9f,0x8f,0xb5,0xd9,0xbb,0x25,0xd8,0x74,0xa8,0xe0, +0x74,0x0e,0x0d,0xc4,0xab,0xe4,0xe5,0xef,0x82,0xe6,0xf4,0xc7, +0x40,0xba,0x91,0xfc,0xae,0x9c,0x8e,0x93,0x94,0x30,0xc9,0x50, +0x4f,0xd4,0xfc,0x4d,0x1f,0xdf,0x55,0xc0,0xbb,0xb8,0xb0,0x9b, +0xf6,0xdc,0x7b,0x3d,0x2c,0xfc,0x26,0xd8,0x52,0x59,0xc9,0xbd, +0xa2,0x26,0x46,0x67,0x12,0xe2,0x1a,0xe2,0x71,0x90,0x9a,0x23, +0xe1,0xe8,0x47,0x09,0x53,0xe1,0x0c,0x5b,0xec,0x54,0x29,0x2f, +0xb4,0xe7,0x06,0x67,0x53,0xc9,0x31,0x52,0x2e,0x79,0xeb,0x2a, +0xea,0xad,0x16,0x30,0xb2,0x9f,0x81,0x2f,0x13,0xc8,0x2b,0xd4, +0x5c,0xce,0x88,0xc7,0x7c,0x88,0x0a,0x39,0x39,0xf3,0x1b,0xed, +0xa3,0x7e,0xe4,0x2c,0x18,0x75,0xc0,0x4e,0x7a,0xdf,0xbc,0x27, +0xe6,0x6b,0xf1,0x84,0x12,0xf6,0xb2,0xbe,0x5b,0xe7,0x99,0xe3, +0x44,0x93,0x72,0x05,0x0f,0xe4,0xd6,0xef,0x57,0x52,0xbe,0xe2, +0x92,0x30,0x6b,0x00,0xb2,0x92,0x98,0x94,0x45,0x30,0xd2,0x0c, +0xb4,0x77,0x48,0x3b,0x27,0xbc,0x7b,0x65,0x66,0x9f,0xd7,0x3d, +0x4e,0x13,0x42,0x86,0x46,0x55,0x46,0xd2,0xa0,0x1a,0xf9,0x18, +0xa6,0x76,0xe3,0xd4,0xdf,0x15,0xd3,0x91,0x57,0x02,0xff,0x8f, +0x54,0x58,0x5b,0x0e,0xda,0xb8,0x40,0x3a,0xcf,0x6f,0x02,0x95, +0x2e,0x3f,0x0a,0x7f,0x27,0xdd,0x62,0x27,0x06,0xb1,0x58,0x13, +0x8f,0xbb,0xcd,0x28,0x59,0x74,0xba,0x68,0x5c,0x83,0xf5,0x49, +0xa0,0x84,0x66,0x6d,0xf8,0x50,0x5a,0x24,0x7a,0x91,0x24,0x31, +0x67,0x6c,0x53,0x1c,0x6e,0x6f,0x2f,0x69,0xe6,0x77,0x5f,0x0a, +0x50,0xc5,0xb6,0x70,0xcf,0x5a,0x17,0xbf,0x60,0xca,0xcf,0x96, +0x26,0x17,0xa5,0x86,0x36,0xf3,0x36,0x21,0x5b,0xa3,0x36,0xc7, +0xa7,0xda,0xf3,0x34,0x7b,0x4b,0x2c,0x3e,0xcd,0x19,0xad,0xb5, +0xbf,0xc3,0xc6,0x3a,0x05,0xc8,0x76,0x99,0x95,0x3a,0xf2,0x37, +0x6f,0xa6,0x37,0x9f,0xe9,0xa0,0x15,0xf7,0x68,0x67,0xf0,0x00, +0x6c,0x25,0x67,0x12,0x4f,0x9d,0x8e,0xd7,0x69,0x36,0xae,0x28, +0x77,0xbc,0x7b,0x24,0x2d,0x3e,0x31,0xee,0x90,0xd6,0xa1,0xc3, +0x1a,0x47,0xdb,0x1f,0xb4,0x6e,0x78,0xc1,0x94,0x26,0x95,0x24, +0x15,0xa6,0x84,0x49,0x85,0x1a,0x47,0x6d,0x49,0xa0,0x85,0x96, +0xd2,0x42,0x4b,0xce,0x70,0xeb,0x97,0xdb,0x7f,0xca,0xc6,0xd8, +0xf9,0x99,0x9b,0x58,0x94,0x39,0xf0,0x97,0xaf,0xe6,0xb4,0x9d, +0xe9,0x1b,0x2e,0x54,0x94,0x41,0xe3,0x9f,0xb9,0xf8,0x46,0x6a, +0xe4,0x3d,0x30,0xf2,0x2a,0x83,0x1b,0xff,0x91,0x8b,0x8f,0xa4, +0xd6,0xbd,0x8a,0xdc,0x1e,0x46,0xbd,0x93,0x26,0x46,0x9d,0xb8, +0xe1,0x27,0x05,0x9e,0x99,0x05,0x9e,0x0a,0xf4,0x5c,0x6c,0x25, +0x24,0x77,0xa1,0x87,0xb4,0x89,0xd5,0x6b,0xf5,0x74,0x62,0xc6, +0xe2,0xd8,0xc3,0x89,0xae,0xf0,0x4e,0xb2,0x46,0x20,0x6b,0x9f, +0x15,0xde,0xab,0x03,0x56,0xcc,0xb9,0xf4,0xf4,0x6a,0xdd,0x8b, +0xac,0x75,0xba,0x86,0x0d,0x6e,0xa5,0x4a,0xf7,0x6c,0x9e,0x6e, +0x19,0xd5,0x8b,0x69,0xc7,0xeb,0xd0,0x30,0x56,0xa3,0x0f,0x82, +0xd8,0xf8,0xe0,0x43,0xc1,0x87,0xc2,0xba,0xa2,0xf9,0xd4,0x92, +0xb4,0xda,0xb3,0x95,0xdc,0x39,0x2c,0xe9,0x81,0x13,0xcd,0x78, +0xa2,0xcd,0x0c,0x67,0xa2,0x23,0x1e,0x64,0x31,0x20,0x06,0x97, +0xef,0xc0,0xf7,0x75,0xba,0xfc,0x34,0xee,0xc0,0x9c,0x4c,0x58, +0x0b,0x71,0xda,0x54,0xa6,0x63,0xa8,0x98,0x47,0x7b,0x6c,0xd4, +0xf0,0xe0,0xc5,0xff,0xa7,0xc7,0x26,0xa9,0x58,0x34,0x1e,0xca, +0x20,0xfe,0xd1,0x54,0x13,0x18,0x79,0x85,0x11,0xfe,0x90,0x9e, +0x45,0x46,0x8a,0x3a,0x18,0xc9,0x8a,0x5a,0x20,0xfb,0x73,0x08, +0x82,0x2a,0xbb,0x2b,0x14,0x06,0x85,0xf7,0xae,0x10,0xd4,0xec, +0x05,0x4d,0xa6,0x5d,0x46,0x7a,0x61,0xa2,0x8c,0xc5,0x8d,0x6e, +0xc4,0x1c,0x35,0x07,0x68,0x7a,0x39,0x05,0x26,0x9a,0x4b,0x13, +0x2b,0xcd,0x0c,0x88,0x68,0x84,0xcb,0x65,0x76,0x42,0x6e,0x9b, +0x1b,0x83,0xbd,0xd2,0x46,0x38,0xcc,0x06,0x2a,0x14,0x41,0x13, +0x19,0x02,0xcc,0x43,0x9a,0x23,0xb5,0xd1,0x5c,0xe9,0x89,0xf4, +0x44,0xe4,0xbf,0x4c,0x21,0x8c,0xe0,0x45,0xa6,0xb0,0x22,0xbf, +0x22,0xbb,0xca,0x3e,0x9b,0x87,0x88,0x6e,0xf1,0xfd,0x3b,0xf0, +0x02,0x4c,0xf1,0xc5,0x5d,0x61,0x4d,0xb7,0xb8,0xe6,0xc1,0x9e, +0x0d,0xe2,0x3c,0xa5,0x30,0x6f,0x2b,0xde,0x45,0x53,0xb8,0x6b, +0x2c,0x8e,0x55,0x42,0x00,0x63,0x1f,0x92,0x1d,0x5e,0xee,0x92, +0x15,0xac,0x85,0xc5,0x0a,0x41,0x7f,0x8d,0xc8,0x29,0x05,0x4a, +0x8f,0x57,0x41,0x53,0xe0,0xbb,0x45,0xfe,0xa9,0xb0,0x85,0xc1, +0x95,0xc2,0x4a,0xb2,0x5c,0x7c,0x41,0x61,0xd1,0x1d,0xd3,0x49, +0xb8,0xe7,0x3e,0xf7,0x7d,0x34,0x4b,0xaf,0x62,0x5a,0xf3,0x63, +0x8b,0x03,0xeb,0x42,0x0b,0xb5,0x34,0xd5,0xa1,0x6a,0x57,0x02, +0x63,0x4d,0x71,0x2c,0x3a,0x59,0x08,0x3e,0xfd,0xd2,0xb9,0x33, +0xc1,0x04,0x92,0x60,0x00,0xaf,0x61,0x1a,0x83,0x6b,0xf7,0xa3, +0x8b,0x25,0x8e,0xd2,0x69,0x93,0xd5,0xbc,0x28,0x85,0xf1,0x99, +0xa0,0xa9,0x25,0x2e,0x57,0x5d,0x87,0x50,0x61,0x0c,0x56,0xb3, +0xa7,0xdb,0x12,0x5b,0x4f,0x36,0x71,0x60,0xdd,0x2b,0x2d,0x1b, +0x52,0xd0,0xfe,0x15,0xbe,0xc0,0xbb,0x04,0xf5,0x98,0x92,0x4b, +0x45,0x77,0xb3,0xae,0xcb,0x72,0xf8,0x88,0x4d,0xfb,0x36,0x07, +0xed,0xe4,0xf0,0x82,0x05,0x38,0xe2,0x62,0x34,0xb3,0x04,0x33, +0x69,0x46,0x78,0x02,0x28,0xfa,0x50,0x01,0x8b,0x81,0x2a,0x76, +0xd5,0xf7,0x24,0x56,0x75,0xf0,0xc6,0x81,0x76,0xab,0x70,0x3e, +0xcf,0x3a,0x7f,0x4f,0x9a,0x8c,0xc3,0x20,0x71,0x31,0xc1,0x0d, +0x90,0x0d,0xd2,0x88,0x54,0x8e,0xda,0x9b,0xc0,0x28,0x0b,0x1c, +0x85,0x33,0x65,0xf0,0x13,0x4d,0x4c,0x93,0xc4,0x6d,0xd2,0xb6, +0x57,0x9e,0x3f,0xc1,0x89,0x5e,0x3c,0x21,0x6d,0x7b,0x15,0x28, +0x83,0xc0,0x39,0xd4,0x3b,0x6a,0x61,0x0b,0xeb,0xbc,0x74,0xce, +0x6c,0xd4,0xde,0x5a,0xad,0x94,0x36,0x48,0xf9,0xe1,0x97,0x12, +0x18,0x41,0x5d,0xfb,0xeb,0x7e,0x69,0x03,0xab,0xfc,0x69,0x9f, +0x2d,0x85,0x71,0xcb,0xce,0x77,0xf3,0xf8,0xce,0x53,0xc3,0x6f, +0x3d,0x5f,0x70,0xf8,0xec,0x30,0xb1,0x89,0xb3,0x3e,0x64,0x7d, +0x38,0xb1,0xf6,0x64,0xd3,0x49,0x9a,0x27,0x2e,0xea,0xc5,0xb7, +0x99,0xc2,0xde,0xe2,0x4f,0xb2,0x6e,0xc8,0x73,0xf8,0x28,0xe3, +0x03,0x1f,0x06,0xef,0xe2,0xd0,0x41,0x06,0x4b,0x99,0x13,0x8a, +0x13,0x0e,0xc7,0xdc,0xe4,0x47,0xe4,0xf1,0xb2,0x84,0x24,0x33, +0xbe,0xf3,0x4c,0xe7,0xd9,0x8e,0xe4,0x88,0xd9,0x9e,0x96,0xeb, +0x77,0xd4,0x3b,0xf0,0x9f,0x3f,0x6a,0xbc,0x9f,0x0b,0x93,0x7a, +0x52,0x7a,0x52,0xbb,0x29,0xfc,0x79,0x40,0x0a,0x89,0xe9,0x8f, +0xec,0x0d,0xed,0xb2,0x0e,0xe5,0xf3,0x94,0x99,0xca,0x74,0x0b, +0x4e,0x38,0xa5,0x22,0x68,0x8c,0x73,0xc1,0x98,0xa5,0xe6,0x30, +0x26,0x60,0x0c,0x4b,0xd0,0x98,0xca,0x29,0x7d,0x75,0x2c,0x25, +0xda,0xd3,0x30,0x36,0xfb,0x55,0x75,0x70,0x33,0xbf,0x2e,0x08, +0x47,0x86,0xe1,0xbc,0xe3,0xa1,0x3b,0x03,0x77,0xb9,0x38,0xd4, +0x3a,0xf0,0xcd,0x9d,0xe5,0x37,0x72,0x7b,0x39,0xe1,0xef,0xfe, +0x04,0xc6,0x99,0xe1,0x38,0x34,0xb2,0x14,0x66,0xf5,0xb1,0x62, +0x6b,0x21,0xa9,0x76,0xad,0xb6,0x2b,0x71,0x6c,0xac,0xe0,0xf7, +0x35,0x79,0xb7,0xfb,0xd6,0x70,0xd3,0x66,0x91,0xa8,0xf2,0x83, +0xd5,0x61,0x79,0xce,0x07,0xf8,0x9c,0x90,0x3c,0xbf,0xcc,0x40, +0x4e,0xbd,0x1c,0xbd,0x08,0x8e,0x66,0x0a,0x2f,0xe5,0xdf,0xcb, +0xb8,0x21,0x2d,0x9d,0xda,0x74,0x70,0xd3,0x3e,0xda,0x2b,0x27, +0x2c,0x28,0x4f,0x2e,0xc2,0x65,0x96,0x52,0x92,0x71,0x99,0xf6, +0x8a,0x41,0x1f,0x1a,0x50,0x79,0xba,0x8b,0xc1,0xe4,0xef,0xc8, +0x21,0x55,0xd8,0xad,0xd0,0x76,0xab,0x08,0x3e,0xd7,0x3a,0x7b, +0x57,0x2a,0xed,0x95,0x47,0xe7,0x49,0x47,0x79,0x5b,0x4d,0x65, +0x3d,0x57,0x83,0xcf,0x1c,0x20,0x8d,0x3d,0xb0,0xdf,0x7b,0xaf, +0xcb,0x41,0xff,0x7c,0xdf,0xbc,0xc0,0xac,0x40,0x77,0xfe,0x42, +0x68,0xed,0x81,0x0b,0x94,0x0b,0x9d,0xc4,0xa6,0x5e,0xe1,0x18, +0x95,0xd9,0xb1,0x6e,0x51,0xee,0x07,0x3d,0xb9,0x13,0x51,0x51, +0x27,0xa2,0xa7,0x9e,0xb5,0xbf,0x75,0xe6,0xab,0x34,0x55,0xaa, +0x56,0xbe,0x73,0x5d,0x49,0x48,0x53,0x50,0x47,0x50,0x8d,0x96, +0xfb,0xbe,0xb4,0xa8,0xb4,0xf0,0xb4,0x30,0xad,0xc0,0x04,0xcf, +0xa3,0xee,0x47,0x73,0x2e,0xa4,0xd7,0xa6,0x5d,0xa4,0x1a,0x48, +0xdc,0xb9,0x8a,0xc9,0xb0,0xd2,0xb8,0xc1,0x34,0xe5,0xe6,0x34, +0xe9,0x0a,0x81,0x38,0x8f,0xed,0x14,0x77,0x93,0xd0,0xec,0xfd, +0x39,0xfb,0xb2,0x2b,0xcf,0x17,0xd5,0x66,0x34,0x72,0xe7,0xf1, +0xb8,0x23,0x98,0xb2,0xb1,0x81,0xe1,0x7b,0x43,0xf6,0xfb,0x16, +0x78,0xe7,0xfb,0x67,0xed,0x75,0xe3,0xcb,0x23,0x2b,0xc2,0xca, +0xc3,0x7c,0x82,0xdc,0x0e,0xb8,0x86,0x17,0xda,0xf1,0x1d,0x45, +0x2d,0xe5,0xb5,0xe7,0x4a,0xc3,0x8a,0x43,0x8b,0x42,0x29,0xa8, +0x07,0xa9,0x3d,0xa8,0x2b,0xc9,0xa8,0x2b,0x8d,0x92,0xc3,0x39, +0x8a,0xda,0xf1,0x47,0x08,0x8c,0x31,0xa3,0x99,0xde,0x24,0x4b, +0xb8,0x46,0x0d,0xfa,0xe8,0x73,0x22,0x83,0xf0,0x5e,0xb6,0x08, +0x6d,0x28,0x8b,0x5c,0xb0,0x60,0x17,0x36,0x92,0x58,0xe3,0xb0, +0xf5,0x21,0xd4,0x07,0x96,0xc9,0x60,0x1c,0xa3,0x38,0xee,0x70, +0xdc,0x4d,0xc7,0xe9,0x88,0x73,0xbc,0x53,0x42,0x92,0x39,0x5f, +0x77,0xa6,0xf6,0x6c,0x6d,0x52,0xf4,0xdc,0x00,0x0b,0xb3,0x1d, +0x8d,0x2e,0xfc,0x9d,0x47,0xd5,0xf7,0x32,0x61,0x42,0x63,0x4a, +0x63,0x6a,0x43,0xfa,0xd1,0x6e,0x5e,0xd2,0xd8,0x6e,0x47,0x4e, +0xd5,0x9c,0x6c,0x94,0x5c,0x6b,0x4c,0xaf,0x3e,0x93,0xdb,0x5b, +0xf0,0x20,0xfd,0xa6,0xb4,0xbe,0x69,0x21,0x39,0xd4,0x1f,0xdd, +0x17,0xd5,0x6d,0x13,0xce,0x67,0x2b,0xd3,0x14,0x29,0xe6,0x9c, +0xfa,0x85,0x1b,0x59,0xc9,0xe4,0x5e,0xca,0xbe,0x9f,0x7a,0x53, +0x91,0xc9,0xc7,0x6e,0x8c,0xdc,0x14,0x4a,0xef,0xbb,0x5b,0x06, +0x53,0x68,0xee,0xc2,0x5a,0x02,0x8b,0x47,0x2e,0xc1,0x91,0xe1, +0x5d,0x3a,0xe7,0x4b,0xdb,0x95,0xcb,0xbe,0x26,0x87,0x55,0xd1, +0xb7,0x23,0xda,0xad,0xa2,0xf8,0x2c,0xab,0x8c,0x5d,0x49,0xb4, +0x97,0xbe,0xbe,0x4f,0x9b,0xb0,0xb7,0x97,0x45,0x8b,0x51,0xbd, +0xb8,0x57,0xc6,0xf6,0x88,0x0b,0x89,0x0a,0x36,0x42,0x29,0x86, +0xe2,0x63,0x56,0xfa,0x40,0xd0,0x00,0x47,0x83,0x01,0xf5,0xbb, +0x3b,0x6a,0x23,0x22,0xef,0x59,0x7d,0x65,0x57,0x8d,0xbb,0x3d, +0x7f,0xdd,0xfd,0xd9,0x6e,0x95,0x92,0x4b,0xc7,0xa5,0x44,0xde, +0xb5,0xfc,0xe6,0xee,0x1a,0x2f,0x3b,0xfe,0xb2,0xc7,0xcb,0x9d, +0xfd,0x72,0xee,0xcb,0x74,0x22,0xfc,0x72,0x5d,0xfc,0x85,0xc1, +0x73,0xe2,0x2d,0xf2,0x7b,0xfd,0xd5,0x6b,0xa7,0x3f,0xe5,0x92, +0x18,0xfd,0x94,0xe7,0xeb,0xa4,0x8d,0x0c,0x9d,0x99,0xd4,0xeb, +0x1a,0x62,0x00,0x83,0x93,0x97,0xdc,0x84,0x51,0xba,0x54,0x4b, +0x07,0x98,0xc2,0xa2,0x69,0xec,0x7c,0x6b,0x53,0x64,0x9c,0x75, +0x34,0xd5,0x73,0x6f,0x13,0x08,0x80,0x74,0x81,0xc7,0x74,0xd8, +0xb0,0x0b,0x37,0x60,0xa2,0xc8,0x43,0x22,0x06,0xb0,0xd8,0x25, +0xfc,0x37,0x51,0x76,0x6f,0xb8,0x6c,0x56,0xe3,0xe6,0xc0,0x5f, +0x72,0x7f,0x60,0xda,0x2d,0xd5,0x60,0x19,0xb1,0xea,0x5a,0x77, +0xd5,0xac,0xc6,0xd3,0x9e,0xef,0xa7,0xd7,0x7a,0x15,0x1c,0x6c, +0x01,0x1a,0xf4,0xa6,0x58,0x82,0xa6,0x8c,0x60,0x31,0x05,0x95, +0x50,0x02,0x4a,0x46,0x24,0xe2,0x6b,0x82,0xef,0x2e,0xbd,0x06, +0x8c,0x2e,0x6c,0x45,0x07,0x53,0xf8,0x80,0x82,0xea,0x02,0x17, +0xcb,0xe9,0x4e,0x3a,0xc5,0x26,0xdf,0x37,0xf4,0x5c,0x3e,0xfd, +0x40,0x4b,0xaa,0xe7,0x53,0x23,0x58,0x3e,0x55,0xd8,0xcf,0xa4, +0x5e,0xd3,0xd0,0x84,0x66,0xf5,0x56,0x5a,0xfe,0xa6,0x4b,0x96, +0x35,0xae,0x8e,0xfc,0x80,0xfb,0x7d,0xb3,0x2e,0x25,0x8d,0x7b, +0xf1,0x1e,0x51,0xeb,0x0b,0x96,0xe2,0x0f,0xb8,0x84,0xcd,0x94, +0x6b,0x80,0x9e,0x34,0xa1,0xb3,0x51,0x57,0xad,0x23,0x5e,0x1f, +0xf4,0x63,0xd7,0x52,0x2c,0xb5,0xea,0xda,0x70,0xd9,0xa2,0xc6, +0xd3,0x81,0xef,0x75,0xbf,0x67,0xde,0x2b,0xe7,0x68,0x15,0x0c, +0x09,0xbe,0x86,0x64,0x78,0xcd,0xa2,0xad,0x9c,0x50,0x8d,0x1d, +0x8f,0x33,0x18,0x31,0x56,0x1c,0x4b,0xbe,0x6c,0x68,0x1f,0x48, +0xfc,0x64,0xc8,0x46,0x4f,0x37,0xc2,0x8a,0xa9,0x42,0x9c,0x74, +0x6f,0x31,0x91,0xc1,0x29,0xcb,0x2e,0x03,0xab,0x0b,0x3b,0xd0, +0xd2,0x0c,0x26,0xe3,0x18,0x76,0xa1,0x97,0x7c,0xb6,0xa3,0xce, +0xbf,0xae,0xd5,0x8f,0xd2,0xa9,0x1e,0xcb,0x7a,0xbe,0xf8,0x25, +0x1b,0xde,0xe3,0x20,0x81,0x39,0x6e,0x79,0x4c,0x1e,0xeb,0xc5, +0x39,0xc7,0x44,0x47,0x5a,0x4e,0xc5,0x71,0x4c,0x86,0x99,0x34, +0x27,0xf8,0x61,0x45,0xd9,0xcd,0x6c,0xdd,0x8c,0xce,0xb3,0x4f, +0x4f,0x7d,0xc3,0x89,0x0f,0xcc,0xc1,0x85,0x89,0x98,0xb9,0x65, +0x2d,0xea,0xd9,0x71,0x96,0x41,0x7f,0xa9,0xb5,0x5a,0x1f,0xbf, +0x24,0x70,0x5f,0x4c,0xa2,0xc9,0xdd,0xd3,0x65,0xff,0xa9,0xf5, +0x90,0xc0,0x2f,0x04,0x1d,0xc4,0x49,0xe0,0xc0,0x6a,0xaa,0x97, +0xaa,0x57,0x11,0xd0,0xdf,0x83,0xfa,0x78,0x4c,0x1c,0x10,0x7a, +0x84,0x01,0x56,0x14,0x4c,0x88,0xf9,0x63,0xe3,0x07,0xe6,0x3d, +0xf6,0x6e,0xfc,0x25,0xc5,0x4d,0xa3,0x81,0x0f,0x39,0x78,0x8d, +0xf3,0x08,0xee,0x01,0x0b,0xd8,0xc3,0x5c,0x46,0x0b,0x42,0x3f, +0x58,0xa0,0x05,0x2b,0x6a,0x8b,0x2b,0x68,0x6a,0x4b,0xcd,0x41, +0x6f,0x5f,0x8f,0x76,0xa6,0x30,0x15,0xf7,0xb1,0x0b,0xdd,0x2c, +0xf5,0x1c,0x75,0x8a,0x4c,0xbf,0x6b,0xe8,0xbe,0x94,0x38,0x7c, +0xfb,0x67,0x1b,0xa5,0xdb,0x1f,0x1c,0xba,0xbd,0x00,0x28,0xad, +0x0c,0xd8,0x23,0xad,0x0c,0x38,0x3e,0x85,0x96,0x63,0x8b,0x16, +0x8c,0xa6,0x3a,0x51,0x38,0x4c,0x52,0xcf,0x7e,0x74,0x36,0x5e, +0x87,0x42,0xd9,0xca,0xfa,0x76,0x5c,0x0d,0xeb,0x0e,0x27,0xc7, +0x9d,0x3e,0x74,0x48,0x2b,0x26,0x5a,0x23,0x1e,0xda,0xf6,0x0c, +0xa6,0x5d,0x65,0xc4,0x30,0xf5,0x48,0x62,0xd3,0xbd,0xbd,0x5f, +0x51,0xe3,0xea,0xc4,0xab,0xdc,0x6f,0x59,0x74,0x28,0xb9,0x7e, +0x4c,0x22,0xfd,0x77,0x5a,0x5f,0x9e,0xfb,0x99,0x03,0x1d,0x26, +0x6e,0x63,0xf8,0x87,0xfe,0x1f,0xfa,0x96,0xb9,0x97,0x7a,0x16, +0x7b,0x29,0xf9,0xfa,0x7d,0x8d,0xfe,0xe7,0x02,0x5c,0xf4,0x4d, +0x0d,0x0c,0xb6,0x34,0x51,0xe5,0x68,0x06,0x06,0x9f,0x42,0x74, +0x21,0x58,0x73,0x6d,0xb8,0x8b,0x4d,0xad,0x4b,0xae,0x4f,0x6a, +0x34,0x4d,0xe2,0x83,0xd0,0x48,0x81,0xef,0xae,0x9d,0xc3,0x1d, +0xef,0x21,0x36,0x5d,0xdb,0xfb,0xe5,0x35,0xee,0x0e,0xb4,0xfc, +0xab,0xb2,0x1e,0x05,0x97,0xb5,0x9e,0xe0,0x0e,0x33,0x18,0x8d, +0xe3,0x99,0x45,0x01,0xca,0xf9,0x0e,0x3a,0xc5,0x66,0x2f,0x1a, +0x9b,0x7a,0x4f,0x7d,0x3c,0x6c,0xda,0x2d,0xa0,0x3f,0x55,0x38, +0xc9,0xa4,0x5e,0xd1,0x10,0x33,0x19,0x7c,0x6f,0xd9,0x00,0x70, +0xba,0x9a,0x50,0xa2,0xde,0x41,0x6c,0xbb,0x76,0xf6,0x2b,0xa5, +0x8a,0xf6,0xb8,0x5f,0x97,0x2a,0x0a,0xab,0x8f,0x90,0xf2,0xe2, +0xa2,0xd2,0xdc,0x12,0xe7,0x62,0xde,0x4d,0xb9,0xdb,0xca,0xc8, +0xa5,0xdc,0x95,0xcf,0x48,0xa2,0xff,0x92,0x39,0x31,0x5d,0x25, +0x94,0x80,0x9f,0x98,0xd2,0x2d,0xa4,0xc0,0x01,0x91,0x12,0x08, +0x9b,0x66,0xa3,0xf1,0x13,0x53,0x93,0x9b,0x53,0x43,0x01,0x94, +0x4d,0x8b,0x4d,0x8b,0x4b,0x89,0x2b,0x6f,0xe0,0x9d,0x9a,0x37, +0x5d,0x36,0x3f,0xef,0xe9,0xc3,0x57,0x85,0x5e,0xd8,0x57,0x2d, +0x1d,0x8c,0x0c,0x23,0xe0,0x4e,0xf7,0xe0,0x42,0x25,0xb4,0xe2, +0x08,0x06,0x5f,0xe1,0x7c,0xe9,0xce,0x7d,0x8a,0x1a,0x77,0x47, +0xbe,0xc7,0xed,0x92,0x82,0x36,0x41,0xf0,0x5b,0x46,0xca,0x0a, +0xca,0x4b,0x4a,0xca,0xf3,0xc3,0x73,0xc3,0xb3,0xc2,0x2b,0xab, +0xf9,0x88,0x9c,0xd0,0x9c,0x83,0xb9,0x45,0x65,0xb9,0xe5,0x19, +0x25,0x9e,0x85,0x7c,0xf4,0x3e,0x8a,0xc2,0xc1,0xfb,0x73,0xf7, +0xe5,0x1c,0xc8,0xf4,0xf3,0xe5,0x8b,0xa2,0x8a,0xc3,0x8b,0xc3, +0xf6,0x05,0x07,0xef,0x0f,0x0a,0xe5,0xf0,0xb0,0x27,0x29,0xc9, +0x2f,0x2b,0x2e,0x2e,0xcf,0x89,0xc8,0x0a,0xcf,0x8c,0xa8,0xae, +0xe6,0xa3,0xb2,0xc3,0xe9,0xef,0x0b,0xcb,0xf3,0x2b,0x32,0xca, +0x3c,0xf2,0xf9,0xe8,0xbd,0xe1,0xc1,0x07,0xf7,0x1e,0xcc,0x0d, +0xc9,0x0e,0xc9,0xf2,0xf3,0xe7,0x0b,0x23,0x0b,0xc3,0x0b,0x42, +0xe9,0xaf,0xf7,0xed,0x0d,0xe3,0x50,0xda,0x5d,0x7a,0xb3,0x19, +0x8c,0xc2,0x49,0xcc,0xa2,0x60,0xeb,0xc5,0xd4,0x7e,0xa6,0xcf, +0x9a,0xea,0x7a,0xde,0xd8,0xef,0xc9,0x56,0x58,0x39,0x55,0x48, +0x19,0xb2,0x5f,0xa1,0x64,0xbf,0x3e,0x78,0x47,0x57,0xb0,0xb3, +0x23,0x15,0x45,0x15,0xe5,0x25,0xe5,0x05,0x61,0x79,0xa1,0xd9, +0x61,0xb4,0xbe,0x91,0x39,0x21,0xf9,0x07,0xf2,0x0b,0xcb,0xf3, +0x2a,0xb2,0xca,0xdc,0x8b,0xf8,0xa8,0xbd,0xe1,0x41,0x21,0x41, +0xfb,0xf3,0xf6,0xe7,0x86,0x64,0xfa,0x4b,0x77,0x2c,0x0e,0x2d, +0x3e,0xb8,0x37,0x28,0x78,0x6f,0xc0,0x01,0x0e,0xdf,0x82,0x9d, +0x24,0x3a,0x38,0x2c,0xf0,0x40,0x50,0x48,0x5e,0x48,0xee,0x41, +0xa9,0x4a,0x05,0x11,0x45,0xa1,0x05,0x07,0x69,0x95,0xf6,0x06, +0x1e,0xac,0xf2,0xe6,0xcb,0x0a,0xca,0x4a,0x4b,0xca,0x68,0x13, +0x42,0xb3,0xa4,0xc2,0xa3,0x72,0xe9,0x6d,0xf2,0x8b,0xab,0xf2, +0xab,0x33,0x2b,0xb8,0x7f,0x1d,0xc9,0xea,0xf9,0x62,0x03,0x51, +0x9b,0x88,0x37,0x07,0x4d,0x58,0xe1,0xac,0x7a,0x0a,0x11,0x9f, +0x89,0x0a,0xe1,0x19,0x8b,0xd3,0x30,0xf9,0xaf,0xc0,0x52,0x49, +0xd9,0x01,0x12,0xe1,0x11,0x26,0x32,0x7d,0x58,0x22,0x61,0xa7, +0x8e,0x04,0x96,0x87,0xf1,0x39,0xf9,0x7f,0xe0,0x47,0xb1,0xe9, +0x30,0xe2,0x68,0xfd,0x13,0xe2,0x68,0x42,0xaf,0x7a,0x13,0x45, +0xd8,0xf5,0x97,0x4d,0x25,0x84,0xbd,0xec,0xfe,0xa9,0x49,0x8f, +0x92,0x7b,0x26,0xb6,0x91,0x4f,0x81,0x2b,0x86,0x8d,0x27,0x60, +0x3d,0x27,0x24,0xf6,0x8b,0x89,0xc0,0x32,0xb0,0x38,0x09,0x2c, +0x72,0xe1,0xdd,0x4a,0xbf,0x7e,0x1e,0xc7,0xfa,0xe1,0x96,0x30, +0x74,0x3d,0xc2,0x61,0x30,0x95,0xca,0xe1,0xf8,0xfe,0x26,0x1c, +0xa1,0x13,0x4a,0x83,0x5f,0xd9,0xb5,0xe6,0xda,0x1b,0x64,0x7e, +0x64,0x22,0x55,0xb6,0xfa,0x24,0xc1,0xcf,0x85,0xc9,0xf0,0x39, +0x8b,0x9f,0x58,0x12,0x48,0xc3,0x7d,0x54,0x3a,0x8a,0x59,0xb8, +0x97,0x7c,0xd1,0xd8,0xd6,0x77,0xea,0x0d,0x08,0x6e,0x92,0xfc, +0xfc,0x08,0x93,0x7a,0x55,0x43,0x3c,0x4b,0x41,0x70,0xe9,0x25, +0xea,0xe7,0xb0,0x13,0xcd,0xcc,0x60,0x22,0x8e,0x65,0x17,0x7a, +0x2b,0xe6,0x4a,0x20,0x58,0xa9,0xde,0x3e,0x14,0x40,0x6f,0x02, +0xf4,0xa6,0x45,0x27,0xf5,0xfb,0x72,0x03,0x82,0x4e,0xfe,0x38, +0x1d,0xb5,0x70,0x8c,0x4e,0xbb,0xbd,0x06,0x4c,0x83,0xf7,0x2e, +0xc2,0x2a,0xf0,0xd7,0xfe,0x06,0x46,0x8a,0x05,0xd2,0x2e,0xc1, +0x96,0xd2,0xbc,0xc8,0xa6,0x9c,0xfc,0x56,0x5d,0x21,0x0d,0x9c, +0x06,0xb0,0x19,0x46,0xef,0xc0,0xd1,0x58,0x6b,0x0e,0xce,0x2c, +0x66,0xa3,0x21,0x2d,0x74,0x1b,0x2d,0x94,0x46,0x65,0x8f,0xfb, +0x35,0x79,0x8f,0x9c,0x13,0x9e,0x7d,0x49,0x6a,0xe7,0xd5,0xe2, +0x8c,0x3c,0x1c,0x77,0xa5,0x84,0x0f,0x81,0xd1,0x6e,0xa0,0xeb, +0xf6,0x23,0x27,0x06,0x1d,0x23,0xd1,0xf8,0xb6,0x0f,0x6a,0x6c, +0x5e,0xd5,0xe1,0xca,0x3f,0xf8,0xba,0x0e,0x26,0xa7,0x01,0xc7, +0x65,0x89,0xe5,0xe4,0x4d,0x74,0xc2,0x1e,0xdc,0x65,0x06,0x63, +0xe9,0x6d,0x17,0xfa,0x0d,0xc7,0xf3,0xcb,0xc6,0xe6,0xde,0x53, +0xc3,0xa6,0x7f,0xb2,0x59,0xf2,0xc7,0x13,0x92,0x3f,0x6a,0x42, +0xab,0x7a,0x0b,0xb1,0xea,0xde,0x74,0xc9,0xbc,0xc6,0x4d,0x72, +0x84,0x8f,0x25,0x72,0xfb,0x7a,0x1f,0x11,0x73,0x84,0x3b,0x42, +0x0e,0xa5,0xb0,0xf1,0x10,0xde,0x3f,0xf8,0xae,0x05,0x38,0xe3, +0x78,0xb6,0x6f,0x0a,0x8c,0xff,0x9a,0xbe,0x8b,0xb3,0x91,0xa7, +0x0e,0xb1,0x9e,0x3a,0x84,0x87,0x03,0xdf,0xe7,0xfe,0xb1,0x99, +0x8a,0xb2,0x9f,0x31,0x4c,0x24,0xb4,0x87,0x8e,0xa3,0xce,0xfe, +0x9d,0xab,0xb6,0x34,0xda,0xf3,0xdf,0x3c,0x2f,0x7d,0x91,0x08, +0xf3,0xb9,0xaf,0x28,0x1f,0x2a,0x0b,0x43,0x2e,0xeb,0xd0,0x00, +0x99,0x2f,0xda,0x31,0x00,0xe0,0x44,0x02,0xa4,0xd9,0x34,0xb0, +0x8e,0x3a,0x8d,0x0b,0x2b,0xce,0xc5,0x9f,0xff,0x63,0xa7,0x11, +0xbc,0x60,0x32,0x49,0x97,0x6b,0xfc,0x2a,0xcd,0x49,0x6e,0xd0, +0x85,0xd7,0x67,0xd9,0x0c,0x2a,0x19,0x46,0xe1,0x18,0x98,0x87, +0x63,0x6b,0x3a,0x79,0xc3,0x6b,0xc6,0xd7,0xe5,0xb7,0x92,0x0e, +0xf3,0x97,0x7a,0x6f,0x7c,0x56,0x7f,0x5b,0x59,0xcd,0x7b,0xef, +0x32,0x37,0xb6,0xb0,0xb2,0xb9,0xeb,0xff,0xe0,0xe8,0x13,0x0e, +0xae,0xf5,0xe3,0x75,0x98,0x65,0x82,0xb3,0xb0,0xc0,0x02,0x0a, +0xa4,0x1e,0x6f,0x12,0x2e,0xfd,0x35,0x28,0x78,0x78,0x8b,0xb8, +0x56,0xc9,0xcb,0xed,0xf2,0x7d,0x9d,0xf8,0x8e,0x90,0xfe,0xc0, +0x3a,0x3f,0x4e,0xfc,0x99,0x7a,0xce,0x5f,0x22,0xa2,0xfa,0x0c, +0x71,0xef,0xdc,0x3d,0x60,0x57,0xe7,0xe2,0xc4,0x77,0xba,0x0d, +0x58,0xd4,0x5b,0x71,0xb8,0x04,0x8f,0x90,0xcf,0x5b,0x7f,0xba, +0x75,0x65,0xe0,0x80,0x8a,0xdf,0x63,0x3a,0x7d,0xbb,0xbe,0x33, +0x07,0xbb,0xd0,0x95,0x92,0xca,0xd2,0xab,0x12,0xa9,0x6c,0x43, +0x2b,0x33,0xe0,0x69,0xde,0xb6,0xc0,0x5d,0x36,0x53,0x22,0x95, +0x6f,0x1a,0xba,0xfe,0x24,0x95,0xa7,0x1b,0xa4,0xe6,0x86,0x4b, +0x0e,0xa9,0x09,0x0d,0x34,0x62,0xad,0xbb,0x37,0x0f,0xbc,0xa9, +0xdc,0x3d,0xa9,0x72,0x0f,0x61,0x19,0x91,0xa9,0x35,0x7a,0xd9, +0xa5,0xeb,0x49,0x80,0xc2,0xc5,0xdc,0x5a,0xde,0x25,0x6b,0x33, +0x3d,0x27,0xeb,0x2d,0xe5,0x3d,0x55,0x4e,0x3d,0xde,0xb5,0x17, +0xea,0x6a,0x55,0xd5,0x2a,0x4e,0xf4,0xcc,0x26,0x81,0x4a,0x37, +0x33,0x6b,0x79,0xab,0xa2,0xc5,0xa4,0x5a,0xd6,0x5b,0xc8,0xfb, +0xf7,0xb8,0xa8,0xbc,0x1b,0x2e,0xd4,0xd7,0xf6,0x57,0xaa,0x38, +0x98,0x99,0x41,0xbf,0x77,0x35,0xb7,0x92,0x75,0xc9,0x5a,0x4d, +0xaa,0x14,0xbd,0x45,0xbc,0x5f,0xb7,0x53,0xaf,0x67,0xdd,0x85, +0xc6,0x3a,0x55,0x75,0x2f,0x27,0x5a,0xd1,0x94,0xcb,0xaa,0x6b, +0x23,0xb5,0x8c,0x87,0xd4,0xde,0xbb,0x16,0x2a,0xda,0xde,0x18, +0x71,0xd3,0x7f,0xda,0x6b,0xd8,0x01,0xb3,0x09,0xcc,0x81,0x64, +0x95,0x78,0x4b,0x0e,0x67,0x71,0x0e,0x9e,0x97,0xa9,0x99,0x5e, +0x49,0xe6,0x09,0x7a,0x04,0x74,0xeb,0x9e,0x3d,0x2e,0xfc,0xb1, +0xe6,0x54,0x4d,0xe2,0xc5,0x44,0x6e,0x06,0xab,0x28,0xde,0x77, +0x49,0x07,0x3e,0x60,0x1a,0xb3,0x72,0xea,0x74,0x2f,0xb3,0xe6, +0xb9,0x1a,0x86,0x34,0x0e,0x03,0xe3,0x92,0x4a,0x75,0x7f,0x64, +0x1b,0x4e,0xd7,0x9c,0x3e,0x77,0x3a,0x3d,0x2a,0x2d,0x3a,0x35, +0xba,0xa9,0x96,0x77,0xe8,0xdf,0x76,0x6d,0x67,0xbb,0x93,0x37, +0x7f,0x3e,0xf8,0x82,0x7f,0xb5,0xff,0xca,0x43,0xc8,0x1e,0xd1, +0x4b,0xa8,0x6d,0x39,0xaf,0xaa,0x1a,0x30,0xc9,0xe7,0xfd,0x4d, +0x1c,0xb7,0x5b,0x2b,0xb9,0x13,0xee,0x5e,0x27,0xfc,0xa7,0x26, +0x59,0xb4,0x9d,0xbc,0x99,0x78,0xff,0xb4,0xd6,0x81,0x4d,0xdb, +0xe5,0xa8,0xe9,0xc3,0xc5,0xc3,0x61,0x62,0xdd,0x65,0x3c,0x20, +0x97,0x6c,0xdb,0xe7,0x7e,0x5b,0x0a,0x69,0x49,0xe1,0x59,0x77, +0x6d,0x1d,0x90,0x49,0x4d,0x56,0xb9,0xdd,0x90,0x49,0x3e,0x3e, +0x52,0xe4,0x09,0x68,0x16,0xfc,0x7a,0xee,0x45,0xd3,0x33,0xd7, +0x9f,0x02,0x60,0xdc,0xbe,0x82,0x5e,0x7e,0x56,0xfe,0xca,0xa2, +0x4d,0x95,0x9f,0xb4,0xf6,0xab,0x6a,0x06,0xb8,0x3a,0xbc,0xcb, +0xe6,0x15,0xe5,0x16,0x67,0x97,0xca,0x0b,0x78,0xcb,0x55,0x9b, +0x76,0x20,0x6b,0x55,0x69,0xc3,0x37,0xe4,0x5d,0xcc,0x3f,0x57, +0x54,0xe3,0xda,0xe0,0xdd,0x1e,0xb0,0xc1,0x77,0x59,0xf0,0xac, +0x70,0x6e,0x3b,0x24,0x13,0x54,0x98,0x51,0xe1,0x3c,0x9a,0x59, +0xe8,0x29,0x75,0x7e,0xb1,0xe9,0xd7,0x0d,0x1d,0x03,0x7f,0x76, +0xfe,0x90,0xd5,0xa2,0x86,0xd0,0xe8,0x84,0x24,0xc9,0xae,0x48, +0xee,0x72,0x16,0x74,0x49,0x7a,0xaa,0x06,0x5c,0x64,0xbc,0x5d, +0xac,0x5d,0x77,0x78,0x5a,0x4a,0x87,0x2c,0x37,0x72,0x9a,0x02, +0x7b,0x9d,0x5c,0x86,0x9d,0x82,0x1e,0x72,0xb8,0x88,0xc9,0x56, +0x4a,0x1b,0x72,0xb4,0xe4,0x52,0xb3,0x09,0xde,0x18,0x05,0xb1, +0xa6,0x18,0x8b,0x21,0xac,0xfe,0x4b,0xea,0x41,0x52,0x8b,0x68, +0x2b,0xfb,0xdd,0xef,0x98,0xd3,0x56,0x7e,0x6a,0x44,0x3e,0xbb, +0x71,0xe5,0x49,0xc3,0x67,0x56,0x15,0xbc,0xc7,0x46,0x93,0x8d, +0x5b,0x4c,0x38,0xf5,0xc6,0x93,0xc4,0xf1,0xce,0xce,0x47,0x26, +0x97,0x6d,0x7d,0xf8,0xeb,0x3b,0xaf,0xaf,0x6b,0xde,0xcc,0x0d, +0x2e,0x5c,0x45,0x8d,0xb1,0x85,0xfe,0x94,0x32,0x6e,0xaf,0xdb, +0x2d,0x4b,0xca,0xb8,0xe0,0x9d,0x46,0xbe,0x11,0xf4,0x16,0xb1, +0xa2,0x9e,0x8c,0x08,0x7a,0xf3,0x45,0x3d,0x06,0x2d,0x6e,0xfc, +0xc7,0x4d,0xfa,0x7f,0x68,0x5d,0x16,0x56,0x12,0x8c,0x12,0xca, +0x21,0x8a,0x15,0x3d,0xa5,0x9d,0x9a,0x27,0x0a,0x73,0x70,0x22, +0x2b,0xde,0x42,0xdd,0xbf,0x44,0x9e,0x60,0x8c,0x55,0xd2,0xa1, +0x36,0x27,0x55,0x78,0xf2,0x17,0x28,0xed,0x13,0xbf,0xb7,0x84, +0xdc,0x99,0x78,0x44,0x0e,0x47,0x50,0x03,0x6b,0x2c,0xd5,0x93, +0x68,0xda,0x14,0x89,0x0b,0xfe,0xf3,0xa0,0x2b,0x1f,0xc2,0xfa, +0x1d,0x03,0xca,0x1a,0x17,0x47,0x8a,0xf5,0x37,0x2c,0x25,0xac, +0x7f,0x21,0x3e,0xa2,0x4e,0x00,0x7c,0x9b,0xb4,0xa2,0xe1,0x03, +0xee,0x2c,0x93,0x88,0x3a,0x3d,0x94,0x91,0x27,0xe2,0xbc,0xc6, +0x2e,0x1e,0x3f,0x00,0x7d,0x33,0x78,0x1b,0x42,0xb5,0x21,0xc8, +0x54,0x1a,0x6a,0x3b,0x68,0x8d,0x13,0x50,0x07,0xe7,0xea,0x60, +0xbc,0xf0,0x01,0x69,0x2b,0x6b,0xac,0xac,0x3b,0x9f,0xe3,0x9c, +0xe9,0x94,0xe6,0xa0,0x34,0xb7,0x90,0x7f,0xe8,0x52,0x26,0xe3, +0xef,0x37,0xa8,0xba,0x5a,0xbb,0xb8,0xb3,0xae,0x89,0xae,0x6e, +0xda,0xa8,0x71,0xc0,0x79,0x97,0xce,0x26,0x26,0xdb,0x52,0xe3, +0x63,0xe6,0x8b,0x8b,0x97,0x60,0x31,0x8c,0x0d,0x86,0x89,0x36, +0xf0,0x96,0x6e,0x53,0x73,0x4d,0xe7,0xb9,0x4b,0xb6,0x15,0x7c, +0x90,0x8d,0xbf,0x93,0xb7,0xc7,0xde,0x96,0x80,0x06,0xdf,0x8b, +0x76,0x7e,0xfc,0x05,0xb7,0x4a,0x87,0x12,0x1b,0x57,0x4f,0x07, +0x3f,0xab,0x20,0x4e,0xad,0x05,0x06,0x24,0x6a,0x4e,0xf0,0x32, +0xbf,0x2d,0x3d,0x07,0xf8,0xea,0xc7,0x25,0x5f,0x66,0x7d,0xcf, +0xe1,0xef,0x94,0xa3,0x2b,0x9e,0x66,0x7f,0x93,0xf2,0x4a,0x91, +0xca,0x1f,0x5a,0x11,0xb1,0x38,0xd0,0x88,0xc3,0xae,0x3a,0xa9, +0x75,0x7f,0xea,0xa8,0x2b,0xf2,0x6e,0x05,0x97,0xff,0x21,0x79, +0x43,0x1d,0xcc,0xbf,0xa7,0x0e,0x31,0xfd,0x7f,0xa4,0x60,0xb5, +0x7a,0x9b,0xc4,0x5e,0x03,0x8a,0x1a,0x0a,0x7d,0xbd,0xee,0xb7, +0x24,0xcf,0xfa,0xde,0x86,0x88,0xe9,0x03,0x34,0x97,0x93,0xe1, +0xc6,0x7e,0xfa,0xe6,0x88,0xdc,0x4c,0x36,0x4d,0xa9,0xf1,0x15, +0xd3,0x98,0x9d,0x53,0xaf,0x2b,0x58,0x63,0xda,0x23,0xb8,0xd2, +0x83,0x57,0x7e,0x33,0xd5,0xc3,0x06,0x05,0x34,0xac,0x63,0xa1, +0x13,0x76,0x11,0xfb,0x02,0xf3,0x02,0xab,0xf4,0x00,0x17,0xbe, +0x3f,0xb2,0x37,0xa2,0x39,0x44,0xc2,0xda,0x33,0xb4,0x70,0x29, +0x38,0x69,0x20,0xf6,0xb8,0x5d,0x97,0x4b,0x6a,0x6f,0x74,0x12, +0xa1,0x99,0x25,0xc8,0x98,0xfe,0xc5,0xe4,0x6b,0x70,0x5c,0xcc, +0x8a,0x56,0xd6,0x04,0x64,0x0b,0x50,0xc6,0xc0,0xa9,0xef,0x08, +0x38,0x2e,0x40,0x47,0x06,0x77,0x61,0x3b,0xf9,0x33,0x72,0x76, +0xbc,0x71,0x4c,0xf6,0xdf,0x3b,0xa6,0x26,0xd4,0xa8,0x8d,0xff, +0x12,0x26,0x6a,0x93,0x29,0xa6,0x37,0xd7,0xdd,0x31,0xee,0xb6, +0x77,0xe1,0xef,0xca,0x3f,0xdd,0x7e,0x75,0x1b,0x27,0xea,0x41, +0x28,0xb1,0xdf,0xb4,0x75,0xf7,0x1a,0xdb,0x8b,0x0a,0xfe,0x79, +0xd7,0xe3,0x8f,0x3b,0x9e,0x72,0x9f,0xd1,0x2c,0x22,0x67,0xe5, +0xdf,0xd6,0xc0,0x84,0x8d,0x9c,0x68,0x87,0x97,0x04,0x7b,0xb8, +0xc4,0x94,0x44,0x94,0x47,0x95,0x47,0x56,0xf6,0xf1,0xb8,0xf1, +0xd5,0xec,0xaf,0xbc,0x5e,0x72,0xdb,0x19,0x6f,0xfd,0x85,0xcb, +0x70,0xcb,0x32,0xe9,0x80,0x96,0x35,0x7f,0x83,0xd1,0x3f,0x4a, +0xa7,0x09,0xbd,0x85,0x7f,0x8d,0xb1,0x52,0x2a,0xcc,0x87,0x5d, +0x95,0xf9,0xf7,0xae,0x2a,0x1e,0x65,0xfe,0x74,0x6e,0x5f,0x58, +0x43,0xe0,0x4b,0xb4,0xc4,0x2f,0x19,0x4d,0xb8,0x40,0x7b,0xe6, +0x9f,0x91,0x6d,0x40,0xda,0xd4,0x45,0xaf,0x19,0x46,0x74,0x56, +0xfc,0x8d,0x4b,0x42,0x43,0xc6,0x3f,0x89,0x6a,0xe3,0xa0,0x83, +0x81,0x5a,0xe8,0x29,0x87,0x0f,0x19,0x7f,0x0f,0x6f,0x0f,0x1f, +0x9f,0xab,0xd1,0xb7,0x22,0x6e,0x87,0x6e,0x0d,0x5a,0x15,0x36, +0x33,0x2e,0x57,0xc9,0x53,0x89,0xf1,0x7b,0xf9,0xb3,0x96,0xef, +0xfd,0xbe,0xf6,0xf8,0xd4,0xb5,0xb2,0x93,0xdf,0x74,0x61,0xf5, +0x39,0xc3,0xb2,0x9e,0xda,0xfa,0xf6,0x8a,0x5e,0x0e,0xa6,0xa8, +0xc4,0xf1,0x4c,0x66,0x61,0x66,0x61,0x5a,0x01,0x57,0x05,0x9b, +0x92,0x98,0xd2,0xd5,0x30,0x56,0x01,0x7a,0x0e,0xf9,0xdd,0x3c, +0x8e,0xaf,0x59,0x54,0x23,0xa3,0x7f,0x54,0xdc,0x8b,0x37,0x1e, +0x33,0x3f,0x24,0x7f,0x9d,0xf6,0x30,0xcb,0xaf,0x8b,0xf7,0xc7, +0x05,0xe8,0x1e,0x85,0xb6,0x53,0x73,0xe5,0x1a,0x9f,0x3e,0x4f, +0x3c,0xfb,0x5c,0xd7,0x08,0x5b,0x65,0x70,0x8a,0x95,0xcb,0x0c, +0xbc,0x70,0xb2,0x27,0xb7,0x3f,0xf1,0xaf,0x00,0x7c,0x58,0x34, +0x26,0xff,0x0f,0x65,0x56,0x64,0x3a,0xac,0xe5,0xb4,0xfe,0x49, +0xcb,0xa1,0x13,0x5c,0x23,0xfe,0x36,0xae,0xae,0x0a,0x3f,0x93, +0x3c,0x8b,0x2c,0x87,0xd4,0xdc,0xbc,0xc2,0xb2,0xc2,0x4a,0xee, +0x5f,0x47,0xf7,0x4f,0x58,0x41,0x40,0xab,0xea,0xb3,0xdb,0x99, +0xdf,0x71,0x30,0x6e,0x35,0x63,0x59,0x1c,0x7e,0x4d,0x87,0x0a, +0xb7,0xfa,0xf4,0xcc,0x8b,0xba,0x9d,0xac,0x2c,0x53,0x63,0xf7, +0x02,0x36,0x30,0xe6,0x6c,0x99,0xee,0x7d,0xf0,0xe9,0xc5,0xdb, +0x2f,0xa0,0x52,0x85,0x95,0x0f,0x4d,0x8c,0x86,0xe0,0x66,0x25, +0x5e,0x90,0xd1,0xac,0x33,0x7a,0xbb,0x95,0x03,0x8e,0x0d,0xe4, +0xb6,0x5f,0xff,0x4b,0x7c,0x09,0xdb,0xb0,0x86,0x00,0x03,0x17, +0x7a,0xf1,0x02,0x8c,0xdc,0x83,0x23,0x31,0x43,0x06,0x19,0xc8, +0x60,0x9d,0xa5,0x7a,0x5e,0x9f,0x74,0x48,0xdc,0xc2,0x7f,0x88, +0xb8,0xdd,0x68,0x62,0x06,0xe3,0xa9,0x88,0x5b,0xe4,0x2b,0x35, +0xb0,0xd8,0xf4,0x55,0x63,0xcb,0x9f,0x91,0xf8,0x74,0xb3,0xd4, +0xc0,0xa3,0xc3,0x2e,0xfb,0xaf,0x7a,0x59,0x98,0xe3,0x4e,0x23, +0xa3,0x48,0x85,0x45,0x8f,0x4d,0x0c,0xf1,0xa4,0x1c,0x4e,0x2e, +0xc6,0x16,0xb9,0x7a,0x81,0x8a,0x1d,0x34,0xc7,0x31,0x7f,0xb5, +0xac,0xc5,0x43,0x52,0xe6,0x53,0xec,0x9a,0xe7,0xdc,0x5f,0xc4, +0x1f,0x6c,0xdc,0xd7,0x10,0x5c,0x2d,0x09,0x15,0x9a,0x4b,0x5f, +0x52,0xe1,0xa5,0xdf,0xa0,0xb6,0x07,0x8d,0x99,0xf2,0xda,0xe2, +0xa6,0xfc,0x56,0xd3,0x5c,0x3e,0xcc,0x2e,0xd8,0xc6,0xc7,0x86, +0x13,0x19,0x05,0xe4,0xeb,0x61,0x93,0x1c,0x9a,0x70,0xda,0x15, +0x06,0xad,0xbc,0xa4,0xba,0x5f,0x1a,0xae,0xfb,0x6e,0x33,0x18, +0x37,0x2c,0x40,0xe7,0x49,0x28,0xf2,0xf9,0xff,0xa0,0xc8,0x70, +0xdd,0x8f,0x0f,0x09,0x50,0x61,0xe2,0x7d,0xf2,0xcd,0xcb,0xce, +0x97,0x29,0xc0,0x72,0x60,0x8a,0xcd,0xd7,0xa1,0x19,0xd6,0x0c, +0xe0,0x1a,0x9a,0x80,0x2f,0xe9,0xc7,0x6d,0x4c,0x45,0x6d,0xb5, +0xaa,0x7c,0xc0,0xa4,0x90,0xdf,0x6f,0xe1,0xbe,0xd3,0xcd,0x9a, +0xde,0xd2,0x02,0x16,0xa3,0x05,0x1a,0x99,0x53,0x4f,0x3d,0x34, +0xdf,0x69,0xf3,0xf2,0x8d,0x1c,0x04,0x0a,0x8f,0xc8,0xde,0x36, +0xcf,0x1e,0xff,0x5a,0xf3,0x60,0xbe,0xca,0xed,0x82,0xb2,0xd8, +0x8e,0x43,0x65,0x26,0x15,0xb6,0x1b,0x2f,0xbd,0x19,0xb5,0xf9, +0x64,0x78,0xd4,0x66,0x29,0x25,0x8f,0x0f,0xaf,0x98,0xd7,0x78, +0x48,0xb9,0xc1,0x27,0x66,0xbd,0xb4,0x43,0xa2,0xc1,0x48,0x5a, +0x90,0x4d,0x73,0x7f,0x76,0x83,0xf8,0xdd,0x7f,0x8e,0x17,0xff, +0x4a,0x41,0xf7,0xa1,0x48,0x72,0x92,0x73,0x52,0x73,0x52,0x39, +0xf4,0x84,0xef,0xd9,0x34,0x27,0x8d,0xcf,0x99,0x8f,0xcb,0xab, +0xef,0x65,0xeb,0xa6,0x5f,0x4b,0xfa,0xf6,0x04,0x4c,0xe2,0xc4, +0x8d,0x4c,0x4e,0x61,0x56,0x61,0x7a,0x11,0x07,0xdf,0x42,0xbb, +0x58,0x8a,0xed,0xa0,0xc9,0x38,0x18,0x7d,0xb8,0xc7,0xc0,0x99, +0x13,0x7a,0x84,0xf5,0x64,0x93,0xb8,0xec,0x63,0x56,0x58,0x86, +0xe3,0x88,0x91,0xb8,0xec,0x21,0x8b,0x2b,0x28,0xb6,0xfc,0xb3, +0xe8,0x56,0x4f,0xc0,0x0c,0xa2,0x8c,0x8d,0x38,0x68,0x35,0xd5, +0xb3,0x09,0x9f,0xc2,0xae,0x60,0xa6,0x24,0xb7,0x38,0xbf,0xb0, +0x90,0x83,0xc9,0xc1,0x8c,0xdc,0xdd,0x1d,0x47,0x38,0xe9,0x14, +0xdb,0xde,0x2e,0xea,0x3c,0x5f,0x51,0xad,0x75,0xfa,0xff,0x70, +0xf6,0x1d,0x60,0x51,0x5c,0x6d,0xdb,0xb6,0x9d,0x19,0x7b,0x89, +0xc7,0x0c,0x98,0x2c,0x0a,0xf6,0x5e,0xb1,0x81,0x22,0xd8,0x91, +0xba,0xbb,0xf4,0x22,0x5d,0xb1,0x21,0x4d,0x50,0xe9,0x22,0x6a, +0x6c,0xf4,0xde,0x44,0x8a,0x80,0x20,0x82,0x08,0x22,0xd2,0x41, +0xec,0x8a,0x46,0x4d,0x62,0x4b,0xa2,0xb1,0xa5,0x1a,0xf3,0xec, +0xe6,0x19,0xde,0xef,0x3f,0xb3,0x98,0xf2,0x7e,0xbe,0xff,0xf7, +0xff,0xf9,0xae,0x5c,0x71,0xf6,0x12,0x77,0x79,0xea,0xfd,0xdc, +0xf7,0x99,0x9d,0x73,0x8e,0x1c,0x39,0x74,0xf4,0x00,0x4c,0x9f, +0xce,0x17,0xd4,0x20,0x79,0x18,0x1e,0x17,0x76,0x20,0x2a,0x5c, +0x23,0x3a,0x2a,0xfa,0xa8,0x24,0x3e,0x33,0x36,0xbb,0x48,0xb3, +0x10,0x82,0x59,0x83,0x7d,0x73,0xc2,0x6d,0xa5,0xc2,0x14,0xd4, +0xff,0xe7,0x3a,0xee,0x3f,0xcd,0x01,0xe8,0x16,0x2c,0x48,0x33, +0x95,0xf0,0x12,0xd8,0xd8,0x8c,0x1b,0xe9,0x64,0xf4,0x83,0x4c, +0x2c,0xed,0xf6,0x17,0x4f,0x56,0x86,0x5c,0xf1,0x8c,0x33,0xf0, +0xc1,0xc9,0xe8,0x23,0x87,0x12,0x48,0x66,0x85,0x8f,0x14,0x04, +0x67,0xd3,0xfc,0xcf,0x66,0x71,0x28,0x26,0x7c,0x88,0xfc,0x1d, +0x68,0x47,0xdc,0xab,0x37,0x9f,0x0f,0xa8,0xb3,0xd9,0xc1,0xe7, +0xd9,0x94,0x5b,0x55,0xdb,0x3b,0xb9,0x2b,0xbc,0x8d,0xfd,0xf3, +0x15,0xfc,0xf5,0x13,0x1d,0xa7,0xeb,0x6b,0x6a,0x37,0x34,0x78, +0xb4,0xfa,0x14,0x37,0xf1,0x8a,0x13,0x76,0xa5,0x2e,0x15,0xcd, +0x9d,0x67,0xba,0xb2,0x1e,0x70,0x67,0xf1,0x2a,0xed,0x01,0x76, +0x97,0xc5,0x56,0x85,0x8b,0x3d,0x87,0x5f,0x62,0xe4,0x3f,0x16, +0x4b,0xaa,0xe1,0xaa,0x0c,0x92,0x9c,0x93,0x7c,0x3c,0x21,0xc7, +0x2c,0x85,0x8f,0xdc,0x11,0xba,0x3d,0xc4,0x4f,0x3c,0x18,0xbe, +0x52,0x59,0x02,0x95,0x8c,0xf0,0xeb,0xdc,0x0f,0xea,0x00,0xf4, +0xd3,0xc9,0x0d,0xa5,0xee,0x6a,0x56,0xe8,0x42,0x83,0x0f,0x25, +0x93,0xcd,0x8f,0xe4,0xb6,0x52,0x77,0x05,0x8b,0x6b,0x84,0x4f, +0xc8,0xd7,0x10,0xdb,0x80,0xb1,0x8f,0x20,0xb7,0x49,0x78,0xa1, +0x80,0xec,0x85,0x78,0xc4,0x1a,0x8e,0xcc,0xc3,0x2a,0x85,0x6a, +0x64,0x13,0x2b,0xec,0xc5,0x4f,0xff,0x79,0x3e,0xfe,0x93,0x66, +0xb8,0x26,0x23,0xe7,0x4e,0x54,0x9d,0x2a,0x3b,0xcd,0x39,0x7f, +0x37,0x17,0x57,0x0b,0x9e,0xca,0x76,0xa5,0x27,0x1a,0x7f,0xf3, +0xac,0x92,0x2d,0xdd,0x5c,0xb9,0xb5,0xc6,0xbf,0xb0,0x81,0x37, +0xa8,0x32,0x69,0x75,0xee,0xe2,0x30,0x47,0x01,0x61,0x4c,0xba, +0x6f,0xf6,0x8e,0x3c,0x3f,0x4e,0x60,0x99,0xe3,0x79,0xe2,0xf7, +0x16,0xec,0x4b,0x79,0xe7,0x75,0x56,0x72,0x23,0x37,0x0e,0x1a, +0x16,0x92,0x6f,0x5e,0xcf,0x65,0x85,0x39,0xc6,0x1f,0xaa,0x83, +0xb6,0xcb,0x24,0x66,0xf1,0x16,0xb7,0xa5,0xee,0x65,0x4e,0xfc, +0xd7,0xb5,0xa7,0xaf,0x1c,0x7b,0xc5,0xbd,0x9a,0xcd,0xd8,0x64, +0x05,0x75,0x48,0x7f,0x5c,0x2a,0x28,0x20,0x82,0x01,0x25,0xf6, +0x23,0x3e,0x51,0x71,0x05,0x5a,0x0f,0x60,0x24,0xf6,0x63,0x05, +0xc1,0x97,0xbc,0xf7,0x8c,0xf9,0x9f,0x3d,0xfb,0xdb,0x1a,0xe5, +0x92,0x62,0xa2,0x54,0xe8,0x09,0x0a,0xe6,0x3f,0x37,0xe2,0xd3, +0x28,0x22,0x94,0x2b,0xef,0x29,0xcb,0xd1,0x0a,0x7a,0x43,0x70, +0x6b,0xf7,0xa7,0x96,0xb0,0x09,0x7b,0x8b,0x52,0xb6,0xf7,0x2b, +0x7a,0x15,0x26,0xe2,0xa4,0x0f,0xf3,0x52,0x0d,0xda,0xe4,0x80, +0xb6,0xaf,0xc3,0x02,0xeb,0x72,0x07,0xfe,0x55,0x7b,0xe9,0xe7, +0x87,0xa1,0x3f,0xf7,0x06,0x07,0x33,0x56,0xd9,0x3b,0x45,0x19, +0x3b,0x59,0x70,0x83,0x1a,0xf1,0x1b,0x2c,0x3a,0xc4,0x27,0x9a, +0xda,0x4f,0x3f,0xfa,0x13,0xd4,0xa1,0x3a,0x56,0x30,0xf8,0xa7, +0x49,0x12,0x3a,0x61,0x27,0x51,0xba,0xcd,0x13,0xdc,0x98,0x21, +0xaa,0xd1,0xaa,0xb1,0xa4,0x0b,0x1a,0x1a,0xb1,0xe1,0xb2,0x78, +0x46,0x53,0x80,0xe0,0xa0,0x3c,0xab,0x74,0x60,0x85,0xdf,0xca, +0xfe,0xff,0xa0,0xec,0xf7,0xaf,0x88,0xa0,0xff,0x50,0xa9,0xcf, +0xa0,0x77,0xbf,0x9e,0x17,0xc2,0x48,0xc1,0xf9,0x9f,0x42,0x9a, +0x50,0x09,0x5f,0x12,0xa5,0xfe,0x5c,0x41,0x9f,0x81,0x01,0xc6, +0xc4,0xcc,0x7d,0xf9,0xe6,0x45,0x3b,0x0b,0x6c,0xf9,0x87,0xc7, +0xef,0x95,0x5e,0xad,0xe2,0xa0,0xf7,0x41,0x72,0xcf,0xf7,0x3b, +0xcf,0x6b,0x1e,0x45,0xb5,0xfc,0x8a,0xca,0xb9,0xe5,0x2b,0x8e, +0x73,0xff,0xb9,0xf5,0x2b,0xa6,0x93,0x4b,0xd9,0xcd,0x39,0x75, +0x79,0x9c,0x33,0xfc,0x56,0xc7,0xd6,0xfa,0x37,0x04,0xb4,0x04, +0x9c,0x68,0xe2,0xd1,0xe2,0xf3,0xc9,0xad,0xee,0x77,0x39,0xac, +0xb4,0x03,0x05,0xe3,0x60,0x39,0xc5,0x1a,0xe7,0xd8,0x73,0xca, +0x7e,0xb0,0x90,0x64,0x28,0xae,0xd8,0x3d,0x77,0xe4,0xf0,0x3b, +0xe6,0xeb,0x9a,0xf6,0x8b,0xa9,0x8d,0x1c,0xfe,0x0b,0xcb,0x3f, +0x04,0x81,0xa3,0x8f,0x49,0xf0,0x4a,0x9f,0xa5,0xee,0x46,0xa7, +0x97,0x53,0x16,0x32,0xb3,0x35,0x93,0xdf,0xf6,0x62,0xd3,0xfd, +0x2d,0xed,0xc5,0x2d,0x45,0x77,0x73,0xba,0x38,0x58,0x4e,0x13, +0xb1,0xed,0xa9,0xcb,0xe3,0x4d,0xcd,0x65,0xed,0x25,0xb7,0x72, +0x6f,0xcb,0x33,0xf8,0x40,0xa3,0x2d,0x86,0x1b,0x8c,0xaa,0x0d, +0xce,0x2c,0x29,0x9a,0xcd,0xe1,0xcf,0xfb,0xc9,0xe9,0xd4,0xf4, +0x0a,0x2d,0x2a,0x98,0xce,0x08,0x0e,0xcd,0xca,0x29,0xb0,0x02, +0x7f,0x99,0xcd,0xa6,0x5a,0x4b,0x5a,0xe1,0x34,0xf1,0x29,0xb0, +0x2f,0xf7,0xce,0xdc,0xea,0xc1,0x9f,0xda,0x59,0xb7,0xb1,0x60, +0x07,0x87,0xb9,0x1d,0x04,0xd7,0x5a,0x88,0x9b,0xdf,0x89,0x0b, +0xa4,0x53,0x45,0x8c,0x78,0x72,0xb6,0xba,0xe9,0xdf,0x30,0xe2, +0xb0,0x3a,0x76,0x69,0x0c,0xf2,0x73,0x5a,0xa1,0xbf,0x16,0xd4, +0xe5,0x93,0x6d,0x45,0xce,0xa5,0x5e,0xc7,0xb7,0x78,0xf1,0x15, +0x7e,0xd5,0xde,0x45,0xdb,0xff,0x2f,0x61,0x7a,0xe1,0x4a,0x84, +0xbc,0x0e,0xe5,0x76,0xa5,0xa7,0xa0,0x4b,0x35,0x49,0x9a,0xad, +0xe4,0x17,0xe6,0x6c,0x46,0x66,0xb5,0x96,0xd2,0x19,0xf3,0x9e, +0x40,0x5b,0x13,0xb6,0x3d,0x33,0x9b,0x8d,0x67,0x14,0x70,0x46, +0x97,0xc5,0x67,0xc8,0x7d,0x18,0x8f,0x35,0xe2,0xb3,0x4a,0xba, +0x17,0x50,0xf7,0x4b,0x30,0xb8,0x80,0x7d,0x98,0xec,0x53,0x19, +0xe7,0xd2,0xce,0xd8,0xa6,0xf1,0xe1,0xae,0x7e,0x36,0xfe,0x6e, +0x1c,0xfa,0xdb,0x89,0x4f,0x45,0x4e,0xb5,0x83,0xa9,0xf8,0x69, +0x2b,0x83,0x7a,0x4a,0x03,0x72,0x7c,0x4b,0xb6,0x47,0xf2,0x96, +0xda,0x0c,0x3e,0xac,0x24,0xa0,0x2a,0xa0,0x88,0x5b,0x2d,0xe4, +0xfe,0xf3,0x45,0x18,0xdd,0x26,0x02,0x3a,0x4a,0xdd,0x39,0x38, +0x89,0x4d,0x75,0x10,0x1f,0xf0,0xac,0x4c,0xa7,0x51,0x7d,0xd8, +0x5e,0x67,0x0e,0x5b,0x31,0xa6,0x05,0x1a,0xea,0xd1,0xb0,0x03, +0x3e,0xad,0xc3,0x4f,0xdb,0x61,0x7e,0x1d,0xce,0xef,0xb0,0x30, +0x43,0xb9,0xf8,0xc7,0x6c,0x7b,0x98,0x6d,0x8e,0x1a,0xf6,0xa0, +0x61,0x86,0xcb,0x6c,0xe1,0x82,0x0c,0x23,0x70,0xeb,0x2a,0xfb, +0x9b,0xb4,0x8d,0x8c,0x54,0xc3,0x44,0x22,0xdc,0xfe,0x9e,0x80, +0xdf,0x32,0x17,0xd9,0xcc,0xd6,0xe7,0xc4,0x1c,0xe5,0xed,0x2c, +0xe6,0xe2,0x21,0xfa,0x53,0xa3,0x3f,0xc0,0xe6,0x86,0x25,0x6d, +0x58,0x65,0x0c,0x98,0x11,0xf1,0x83,0xd9,0xeb,0x54,0xe6,0xe0, +0xca,0x76,0x58,0xc9,0xb4,0x99,0x93,0x76,0x30,0x36,0x67,0x85, +0x21,0xf8,0xc3,0x3f,0x6e,0x4a,0x09,0x34,0x92,0x75,0xb8,0xf2, +0x2a,0x0b,0x61,0xa3,0xc0,0x78,0x1d,0x1a,0x33,0xff,0x39,0x75, +0x37,0x84,0xdb,0xe4,0x0e,0x7c,0x12,0x07,0xb3,0xe0,0xa8,0x26, +0xf4,0x67,0xbf,0x39,0xf4,0xf8,0xc8,0x83,0x58,0x0e,0xe7,0x53, +0x42,0xd1,0x87,0x45,0x87,0xdd,0x33,0x6d,0x66,0x48,0xab,0xdd, +0x24,0x1d,0xef,0xb2,0x60,0x38,0x58,0x69,0x5e,0x06,0xcd,0x75, +0x2c,0xf6,0x8d,0x3e,0xe2,0x04,0xbd,0x62,0x25,0x1e,0xac,0x6d, +0xd6,0xae,0x06,0x29,0x18,0x30,0xe5,0xc9,0x29,0xc5,0x5a,0xe7, +0x58,0xeb,0x14,0x89,0x0c,0x67,0xb1,0x3b,0xf6,0x1d,0xcb,0xd3, +0x3a,0xc5,0xc2,0xe4,0x84,0xfd,0x35,0x38,0x21,0x52,0xd2,0x09, +0xee,0x6c,0xb4,0x5f,0xe8,0xe6,0xdd,0x7e,0xd5,0x41,0x7c,0xce, +0xa9,0xf4,0xaa,0xf8,0x62,0xae,0x12,0x93,0xda,0x20,0xb8,0x06, +0x83,0x3b,0xd9,0xa7,0xf1,0x5f,0x26,0x77,0x65,0x6c,0xab,0xe7, +0x71,0xac,0x37,0x1a,0x84,0x62,0xf2,0x01,0x0e,0xf5,0x58,0x3c, +0x16,0x83,0x63,0x8c,0xb1,0xb7,0x34,0x52,0xd9,0xff,0x83,0x82, +0x81,0x70,0x61,0xcd,0x3f,0x1d,0x7f,0x08,0x10,0x4b,0xe6,0x6e, +0xb1,0x9f,0xee,0x29,0x3d,0x69,0x2f,0x79,0x5b,0x5d,0x73,0x03, +0xfa,0x68,0xe6,0x29,0x58,0x98,0x48,0x29,0xab,0x3c,0x2f,0xa8, +0x51,0xda,0xc5,0x94,0xa5,0x26,0x9f,0xd1,0xfa,0x96,0xb5,0xc9, +0x90,0x8c,0x31,0x67,0x7d,0x23,0xe3,0x73,0xb5,0x60,0x82,0xb8, +0xe1,0xf6,0x7f,0xd4,0xd1,0xfb,0xd1,0x8a,0x74,0x99,0x1b,0xe1, +0x64,0xeb,0x5f,0x76,0xb2,0xf8,0xf1,0x8e,0x55,0x8b,0x97,0x49, +0xab,0x9d,0x6f,0x5d,0x2d,0xbd,0x91,0xfc,0x54,0x03,0x06,0x31, +0x9e,0xfb,0xed,0xf6,0x6d,0x95,0x7a,0x45,0x87,0x44,0x6c,0x1d, +0x6d,0xc1,0x24,0xdb,0x4a,0xae,0x32,0x17,0x73,0xb3,0x1a,0x92, +0xb5,0x12,0xab,0x8f,0x34,0xbd,0xd2,0xc4,0xe5,0xcc,0xa1,0xf4, +0xcf,0x32,0x32,0x35,0xb3,0xc0,0xbd,0x61,0x1f,0x9b,0x59,0x94, +0x7e,0x32,0xe5,0x64,0xf2,0xec,0xbc,0x79,0x67,0x17,0xb9,0xaf, +0x55,0x98,0x1b,0xda,0x9c,0xb6,0xe1,0x6f,0x5c,0x6c,0x6c,0xad, +0xbc,0x74,0xda,0xa2,0xd6,0xb2,0x55,0x71,0xfa,0x22,0x6f,0xd6, +0x6c,0xdf,0xe6,0xd5,0xd1,0x0a,0x7d,0xf2,0x60,0x70,0x1c,0x0c, +0xe7,0x2e,0xb4,0x60,0x30,0x93,0x7c,0x2e,0xfe,0x5c,0xdc,0x39, +0xab,0x24,0x7e,0x17,0x0e,0xf7,0x41,0xc9,0x2a,0xed,0x72,0x77, +0x5e,0xe8,0x03,0x33,0x89,0x02,0xfe,0xd5,0x84,0x93,0xbe,0x81, +0x4f,0x1a,0xf1,0x93,0x27,0x16,0xba,0xa8,0x69,0x05,0x9a,0x73, +0xc5,0x93,0x82,0xb2,0x88,0xeb,0xb7,0x81,0x6f,0x62,0xa0,0x17, +0x15,0x3e,0xcc,0x3e,0x9d,0xe0,0x49,0xae,0xb3,0x38,0xa1,0x0a, +0x26,0x7d,0x40,0xf6,0x33,0xf4,0xff,0x31,0x6c,0x0c,0x81,0xe3, +0xea,0xfb,0x2a,0xc6,0xad,0x36,0x62,0x9d,0x35,0x7a,0x5c,0x96, +0x5d,0x10,0xeb,0xec,0x06,0x29,0xb8,0x96,0x7e,0x3f,0x0e,0x06, +0x71,0xbf,0xe0,0x8e,0x15,0x4c,0x82,0x78,0xe7,0xf9,0x74,0x5a, +0x46,0x95,0x96,0x6a,0x29,0xba,0xe2,0x7e,0x16,0x93,0xf7,0x60, +0x1f,0xaf,0x45,0x52,0xa8,0x83,0x7d,0xe4,0xd2,0xe9,0xb6,0xf3, +0x67,0x2e,0x24,0x6c,0x8f,0xdb,0x1e,0xbb,0xdd,0x61,0xf9,0x6a, +0xd3,0x79,0x36,0x27,0xad,0xf9,0xcf,0xeb,0x2e,0x37,0x9c,0xbf, +0xc4,0x1d,0xdd,0x7a,0x78,0xeb,0x56,0xcd,0x79,0x41,0xde,0x4e, +0x52,0x33,0x26,0x4d,0x41,0x3f,0xe6,0x6a,0x69,0x23,0x0c,0x86, +0x31,0xf6,0xb0,0xc0,0x0c,0x86,0x6a,0xe5,0x15,0x65,0x9f,0x4c, +0x2f,0xe5,0x32,0x99,0x63,0xe8,0x5e,0x8b,0xae,0xc0,0xa1,0xac, +0xf6,0x2c,0x6f,0xf9,0xd2,0xe3,0x1b,0xdf,0xef,0xce,0xd4,0x94, +0xb5,0xe7,0x37,0x39,0x9f,0xe2,0x77,0x3a,0xfa,0x6e,0xf0,0xd9, +0x18,0x72,0x6b,0xef,0x9d,0x03,0x0f,0x38,0xd0,0x68,0x14,0xe6, +0x58,0xc1,0x44,0x66,0xab,0xc2,0xc2,0xc2,0xc0,0xb9,0xd8,0x96, +0x2f,0xcd,0x2e,0xc9,0x2b,0x2a,0x4c,0xf6,0x4f,0xf2,0x4d,0xdc, +0xe1,0x61,0x67,0xa6,0x58,0xed,0xc9,0xad,0x03,0x39,0x99,0x02, +0xb3,0xdf,0x30,0xe8,0x81,0x99,0xa2,0x7f,0xcd,0xd6,0x62,0xa0, +0x1a,0xdc,0xdb,0xac,0x69,0xa0,0x60,0xb2,0x8c,0x1c,0x3e,0x7f, +0xa8,0xa1,0x43,0xf3,0x0d,0xce,0x65,0x30,0xd4,0xff,0x1f,0xdf, +0x4f,0x19,0xa2,0xd2,0x50,0x4d,0x23,0x57,0x20,0xe7,0x22,0xe6, +0x5c,0x32,0x33,0xc5,0x68,0x1b,0x88,0x36,0xc6,0x2a,0x6b,0x95, +0x4e,0x03,0xdb,0xbd,0xa0,0xf0,0x83,0x15,0x7b,0x71,0x79,0xef, +0x83,0x05,0x77,0x3e,0x9a,0x6c,0x8c,0x71,0xd9,0xe7,0x1c,0xc3, +0x5d,0x87,0xfe,0x75,0xd8,0xbf,0x56,0xe6,0x88,0xfd,0xec,0xa1, +0xdf,0x0a,0xd6,0x39,0xc6,0xf9,0x80,0xeb,0x81,0x58,0x5b,0xfe, +0x4d,0x2c,0x0c,0x4e,0x7a,0x9c,0xcc,0x15,0xec,0x22,0x70,0xa7, +0x0e,0xa5,0x37,0x61,0x44,0x1d,0x8e,0x10,0xff,0x21,0x67,0x0f, +0xdc,0x2a,0x6a,0x31,0xae,0x13,0xef,0x19,0xbe,0x1f,0x02,0x26, +0xef,0xf3,0xcf,0x7e,0x98,0xff,0xf8,0x87,0x7f,0xe5,0xbf,0x7b, +0x68,0x0d,0x01,0xfe,0xf4,0xf5,0x3b,0xc9,0x62,0x51,0x0d,0xc3, +0x7e,0xcc,0x9a,0x1c,0xff,0xbb,0x52,0x8a,0xa7,0x67,0xd2,0x53, +0x2b,0xb5,0xee,0xb3,0xb2,0x54,0xc9,0x0c,0xfc,0x98,0xf5,0x8e, +0x4a,0x28,0xd7,0xfa,0x15,0x76,0x37,0x74,0x4f,0xb7,0x06,0x19, +0x1b,0xb1,0xc8,0xda,0x16,0x07,0x6e,0xe6,0x86,0x28,0xa3,0x95, +0x07,0x48,0xeb,0xf9,0xea,0x0b,0x25,0x0d,0x5c,0x10,0xf4,0x35, +0xc4,0xa5,0xce,0x4a,0xfe,0x1c,0x2e,0xba,0x03,0x3a,0xd5,0x58, +0xcb,0x26,0x66,0x25,0x64,0xc5,0x67,0x53,0x5e,0x53,0x83,0x05, +0xcc,0xb1,0xcc,0x63,0x99,0x47,0xb3,0x6c,0xe2,0xf8,0x7d,0x81, +0xfb,0x02,0xf7,0xee,0xe4,0xf0,0x53,0x27,0xda,0x6c,0x5b,0xd7, +0x3a,0x9a,0x2e,0xb7,0xe4,0xd2,0x61,0x02,0xf1,0x3e,0xe7,0x74, +0x7e,0x43,0xb9,0x87,0x07,0x7f,0xd6,0xa3,0xca,0xe5,0x34,0x55, +0x52,0x41,0x38,0x8f,0x94,0xdd,0xa9,0x82,0x5e,0x19,0x0f,0xb9, +0x1a,0x8c,0xfe,0x57,0xef,0x4b,0xaa,0x2b,0x14,0xec,0x42,0xd7, +0xb8,0xeb,0x6c,0x98,0xc7,0xb5,0xac,0x3c,0xad,0xb7,0x56,0xd3, +0x3c,0x6c,0x87,0xbd,0x74,0x13,0x93,0xb4,0x4e,0x52,0xc5,0x5c, +0x29,0xaf,0x7d,0xf3,0xd8,0xeb,0x4b,0xdb,0x4e,0xad,0xa7,0x5f, +0x90,0x5a,0x8f,0x73,0x4e,0x55,0x76,0xe5,0x67,0x78,0xaf,0x5a, +0xfb,0x0b,0x0e,0xe5,0x9c,0x72,0xb1,0xd0,0x40,0xde,0x31,0xd5, +0xe9,0xb4,0x76,0xe1,0x8d,0xc0,0x09,0xd3,0x9b,0x61,0x22,0xa4, +0xcd,0xc1,0xa1,0x2c,0x0c,0xa5,0xb5,0x8b,0x69,0x57,0x80,0x76, +0x83,0x9f,0x30,0x95,0xe0,0x84,0x0d,0x6d,0x30,0x4c,0x0b,0x8c, +0x50,0xc7,0xea,0x29,0xc5,0x27,0xec,0xbf,0xc5,0x65,0x8a,0xb3, +0x34,0xdf,0xe2,0x75,0x75,0x51,0xd3,0x91,0x27,0x1a,0xb1,0xcc, +0xe4,0xa3,0x4d,0x66,0x30,0x73,0x34,0x5c,0x67,0x12,0x9b,0x25, +0xf8,0x2f,0x68,0x20,0x90,0xb6,0x0e,0xd3,0x28,0x5a,0x17,0x50, +0xc4,0xb1,0xff,0x3b,0xe2,0xd0,0x2e,0xfa,0x5a,0xb8,0x45,0x2e, +0x01,0x9f,0x08,0x56,0x87,0x60,0x2b,0xa7,0xac,0x06,0x13,0xe1, +0x17,0x8a,0x22,0xe8,0x78,0x10,0xf5,0xcc,0xf0,0x53,0xa9,0xf2, +0xad,0x8a,0x21,0x4b,0x84,0x5d,0x5f,0xb2,0x38,0x11,0x93,0xc5, +0xb7,0xb7,0x50,0xd0,0x14,0xbb,0xb9,0x43,0x3d,0x65,0xcd,0x69, +0x70,0xd0,0xa4,0x1d,0x4c,0x58,0x2c,0x0c,0x20,0xf6,0xa0,0x5f, +0xc7,0xc2,0xf4,0x51,0xf6,0x60,0x50,0xc7,0xe2,0x03,0x9c,0x48, +0xea,0x50,0xdf,0x9e,0x55,0x46,0x8e,0xaa,0x43,0x03,0x7b,0xd6, +0x91,0xf2,0x16,0x88,0xbc,0x88,0x91,0x8f,0x61,0x4b,0x3d,0x6e, +0x11,0xb7,0x3b,0xed,0xc5,0x24,0xa4,0xc7,0x67,0xc4,0xa6,0xd9, +0x26,0xf3,0xbb,0x5c,0x36,0x18,0x6f,0xf0,0xac,0xd9,0xca,0x67, +0x66,0x66,0xe6,0x66,0x50,0x0d,0x38,0x66,0x01,0x7e,0x66,0x03, +0x9f,0x4d,0x6f,0x63,0x30,0xdb,0x53,0x84,0xe6,0x56,0x11,0x9a, +0x4d,0x71,0x8d,0x05,0xf4,0xa7,0xe5,0x33,0x6d,0x9b,0xcd,0x34, +0x27,0xe9,0x71,0xf3,0xa7,0x67,0xcf,0xfe,0x3b,0x7c,0x1c,0xe9, +0x11,0xa1,0x79,0xca,0x0e,0x92,0x9d,0x23,0xc1,0xd1,0x54,0x4b, +0xec,0x5d,0xb8,0x75,0xad,0xb4,0x66,0x63,0x76,0x75,0x52,0x7d, +0xec,0x35,0x0d,0x70,0xc2,0x8f,0xb1,0xbf,0x08,0x9f,0xd0,0x8b, +0x29,0x57,0x73,0x9e,0xd8,0x89,0xec,0x89,0x53,0xc7,0x6b,0xd3, +0xaa,0xb9,0xd3,0x28,0x65,0x63,0x53,0x8f,0xa6,0x1d,0x4d,0xb5, +0x49,0xe4,0x03,0x96,0x58,0xcf,0x33,0x5c,0xc9,0x55,0x3c,0xff, +0x00,0x7e,0x94,0xd3,0xb1,0x0f,0xf9,0xbc,0xae,0xf6,0x46,0xca, +0x1b,0x8e,0x7e,0xca,0x41,0xfb,0x03,0x9e,0x7b,0xb7,0x73,0x3b, +0xa2,0xc3,0xa3,0x7d,0x7b,0x90,0xf9,0x12,0x53,0x9d,0x9f,0x54, +0x9b,0xac,0x95,0x54,0x73,0xb8,0xf6,0x7b,0x4d,0xbc,0x6d,0xf3, +0x92,0x89,0xd0,0xf3,0xb6,0x5b,0xed,0xc1,0x61,0x3f,0x98,0x4a, +0x42,0xbc,0xfc,0x5d,0xfd,0x37,0x71,0xda,0x4c,0x41,0xd9,0xf1, +0x8a,0xac,0x0a,0x0e,0xa7,0xe3,0x81,0x0f,0x31,0x60,0x0c,0x90, +0x9e,0x07,0x53,0x60,0xc8,0x28,0x60,0xef,0x20,0xcb,0x2a,0xa7, +0xfa,0x11,0x1c,0xfc,0xca,0x72,0x9a,0x39,0x73,0x2c,0xe7,0x68, +0xf6,0xe1,0x2c,0x6a,0x65,0xe4,0x9a,0x00,0xfd,0x6d,0x8a,0xfa, +0x40,0x3e,0xb5,0x20,0xf9,0x54,0x52,0x39,0xd7,0x85,0x43,0xd4, +0x4f,0x92,0xe2,0xdc,0x56,0x98,0x4b,0xa1,0x08,0x35,0x60,0x08, +0x0c,0x66,0x84,0xc2,0x93,0x04,0x07,0x2d,0x67,0x0f,0x97,0x1d, +0xaa,0xac,0xd1,0xa4,0x9f,0x78,0x07,0x07,0x19,0x32,0x01,0x58, +0x49,0x5b,0x73,0xb6,0xba,0x35,0xcd,0x70,0xa5,0x39,0xb0,0x38, +0x9c,0x9d,0xbe,0xdd,0x66,0x3a,0x8d,0xad,0xd9,0x93,0xea,0xaa, +0xa6,0x43,0xef,0x21,0x66,0x05,0xe8,0x8e,0x56,0x1e,0xeb,0xb9, +0x45,0x76,0xed,0x3a,0x69,0xfd,0x29,0x09,0x38,0xd8,0x2d,0x9e, +0x7b,0x6b,0x66,0xcf,0xe2,0x9c,0xa8,0xa3,0xce,0x30,0x23,0x41, +0x12,0xc2,0xda,0x1d,0x0f,0x6e,0x91,0x42,0x30,0x53,0x9e,0x92, +0x7a,0x52,0xeb,0x38,0x2b,0x4f,0x91,0x78,0xe1,0x26,0xd6,0x6f, +0x6f,0x6c,0x96,0x56,0x1a,0x0b,0x4e,0xc9,0xfb,0xcf,0xa2,0x7d, +0xb8,0xa4,0x06,0x32,0xd9,0x48,0xff,0xb0,0xc0,0xd0,0xa0,0xfa, +0x20,0x3e,0xb3,0x30,0xa3,0x34,0xa1,0x98,0xab,0xc0,0xfb,0x35, +0xd0,0x50,0x87,0x0d,0xe7,0xcd,0x70,0x0c,0xee,0x43,0x73,0x16, +0x43,0x22,0xe7,0xda,0xe8,0x4a,0x53,0x95,0x5f,0x7c,0xc0,0x33, +0x7a,0xd0,0xea,0xdf,0x67,0xb8,0x2a,0xe8,0x30,0x11,0x8a,0x1c, +0xc1,0x8c,0xb1,0xdd,0xba,0xca,0x47,0x37,0x34,0xd5,0x89,0xbf, +0x9b,0x72,0x3d,0xbf,0xf1,0x64,0x7c,0x78,0x02,0x95,0xf6,0x66, +0x2e,0xba,0x5e,0x53,0x83,0x52,0x9d,0xf9,0x37,0x39,0xcf,0xce, +0x5c,0xaa,0x89,0xdb,0x13,0xbb,0xe7,0xd8,0x6e,0x23,0xab,0xe9, +0x8e,0xf8,0x91,0x6f,0x9a,0x23,0x0f,0x43,0x4e,0xbc,0xaa,0xbd, +0xdd,0xc4,0x1d,0x0a,0x3f,0x14,0x1e,0xae,0xa9,0xd8,0x19,0xe2, +0x22,0x5d,0xc7,0xa4,0x3a,0x4b,0x3a,0x99,0xdb,0xc5,0x65,0xf7, +0x1e,0x38,0x7e,0xe7,0x76,0x41,0x2b,0x31,0x2e,0x31,0x3e,0x21, +0x8e,0x3b,0xc3,0x14,0xe0,0x84,0x7b,0x38,0x08,0xfa,0x2d,0x3f, +0x55,0xcd,0x5b,0x96,0x3b,0xd6,0x6c,0x6a,0xaa,0xc9,0xab,0x3d, +0x55,0x76,0x72,0xd3,0x19,0x7e,0xf3,0x66,0xd7,0xed,0xce,0xfe, +0xbb,0xca,0x43,0x2b,0xf7,0x9e,0xe5,0xc0,0x98,0xe9,0xde,0xe4, +0xfd,0xcf,0x17,0x90,0x95,0x65,0x2a,0x3d,0xd2,0x06,0x46,0xea, +0xbd,0x0b,0x2f,0xa2,0x49,0x93,0x4c,0x81,0x46,0xe2,0x1f,0xab, +0x6c,0x60,0x95,0x05,0x8b,0xce,0x49,0x1f,0x44,0x44,0xd9,0x29, +0xfc,0x40,0xee,0x33,0xd5,0xe2,0x08,0x84,0x60,0x3c,0xdb,0x02, +0x87,0x21,0x47,0xa8,0xc6,0x1c,0x88,0x96,0x61,0x19,0xe6,0x75, +0xc0,0x0e,0xf0,0x9d,0xca,0xae,0xdd,0xbb,0x2e,0xc6,0xe6,0x40, +0x9c,0x2d,0xff,0x5b,0x2c,0x4c,0xcd,0xf8,0x31,0x33,0x4b,0xc1, +0x9f,0x4b,0x0d,0xa9,0xf2,0xbd,0x1a,0x5c,0xae,0xe1,0x1c,0x1a, +0x1b,0x16,0xbf,0x3b,0x2e,0x58,0x63,0x73,0xb4,0xc7,0x3e,0xb7, +0x18,0xee,0x19,0xfd,0x1c,0x93,0x79,0xac,0x50,0xa1,0xfc,0xf4, +0x43,0x86,0x3d,0xe2,0x67,0xea,0xd6,0x25,0xea,0x60,0x8b,0x29, +0xc5,0x10,0x4b,0x53,0x56,0x58,0xee,0x48,0x7a,0xa8,0x21,0x44, +0x5d,0x25,0x60,0xb9,0x0e,0x2d,0x19,0x74,0x12,0x96,0xfd,0xf3, +0x5b,0xb0,0x79,0x94,0x8c,0xdb,0xbe,0x89,0x60,0x71,0xf4,0x56, +0xf3,0xb5,0x26,0xd2,0x2a,0xe7,0x4b,0x6d,0xc5,0xed,0xc9,0x8f, +0x34,0x80,0x67,0xbc,0x62,0xbc,0xf6,0x6e,0x91,0xba,0x45,0x45, +0x46,0x6d,0x1d,0xbd,0x9e,0x49,0xb0,0x92,0xdc,0x62,0x9a,0x72, +0xf3,0x2f,0x25,0x69,0x25,0xd4,0x1d,0x6b,0xb9,0xac,0x89,0xa6, +0x22,0x05,0x4a,0xcf,0xd4,0x4c,0x84,0xc0,0x7a,0xd4,0xbf,0x01, +0x43,0xd8,0xfd,0x31,0x67,0x37,0x88,0x54,0x28,0xf5,0xa4,0x46, +0xe2,0xbc,0xbc,0xf9,0x55,0x8b,0xdc,0xd6,0x29,0xcc,0x0d,0x6c, +0xca,0xac,0xf8,0x5b,0x17,0x9b,0xda,0xce,0x76,0x96,0x9b,0xd7, +0x58,0x52,0x8e,0xd2,0xc0,0x5b,0x34,0x3b,0xb4,0x7a,0x5d,0x6a, +0x83,0xde,0x27,0x60,0x48,0x2c,0xe5,0x42,0x35,0x2d,0xe8,0xcb, +0x24,0x89,0x5c,0xa8,0xda,0x32,0x89,0xdf,0x8d,0x43,0xfc,0xb1, +0xf7,0xba,0xf1,0x1c,0x64,0x53,0x88,0x48,0xc8,0x49,0xc8,0x8b, +0xcd,0xb6,0x4c,0xe4,0xa3,0x7d,0xa3,0x76,0x44,0xf8,0x71,0x63, +0xb1,0x00,0xfa,0xaf,0x66,0x70,0x3c,0x64,0x7c,0x78,0x2b,0xfc, +0xfa,0xe7,0xc4,0x18,0x15,0x57,0x58,0xe5,0x3a,0x61,0x08,0x71, +0x7d,0xb6,0xf3,0xfb,0xfd,0xef,0x38,0x18,0x41,0x79,0xd2,0xae, +0x49,0x6e,0x94,0x27,0x9d,0xa3,0x20,0xfa,0xdf,0x07,0x2f,0xbc, +0x04,0x3d,0xb2,0x1a,0x15,0x37,0x68,0x3b,0xe2,0x41,0xf2,0x7e, +0x5d,0x97,0xf9,0x9f,0xd7,0x75,0xff,0xba,0x47,0x3f,0x04,0xba, +0xe1,0x26,0xf9,0x35,0xe1,0x71,0x45,0x76,0x17,0xf7,0x8d,0x0b, +0xe3,0x9c,0x19,0x42,0x59,0xf5,0x10,0xa6,0x20,0x35,0x31,0xe3, +0x88,0x56,0x0b,0x4d,0x42,0x43,0x35,0xec,0x83,0x22,0x4c,0x67, +0x12,0xd3,0x13,0x33,0x62,0xd3,0xd7,0x25,0xf0,0xd1,0xbb,0xc2, +0x03,0x43,0xe9,0xf0,0xf3,0xc0,0x22,0x88,0xda,0x80,0xe7,0x71, +0xd0,0x05,0xc6,0x0c,0xbe,0xfa,0x50,0x78,0x3c,0xb9,0x4f,0x84, +0xa5,0x65,0xe2,0xbe,0x42,0x4b,0x29,0x08,0xd2,0x17,0x1b,0x59, +0xe1,0x0e,0xce,0xfd,0x50,0x83,0xfc,0x0e,0x8b,0x88,0xa7,0xb0, +0xf4,0x34,0xfb,0x2b,0x2e,0x23,0x7b,0x5c,0xe4,0x01,0xb3,0xa2, +0xb8,0x2e,0x56,0x19,0xe6,0x4f,0x36,0x8e,0x65,0x77,0x46,0x1f, +0xcd,0xd6,0x3a,0x05,0xeb,0x36,0xb1,0x82,0xb1,0xf0,0xc9,0x3f, +0x5d,0xc2,0xee,0x1e,0x58,0x4c,0x1e,0x9f,0xb8,0x59,0x59,0xd9, +0xca,0xc1,0x39,0xe6,0xc0,0x9e,0xfd,0xc1,0xd1,0xbb,0xb8,0xe0, +0xe8,0xc8,0xbd,0xde,0xa3,0x51,0x9b,0x49,0xa4,0xc2,0x6b,0x1e, +0x53,0x9d,0x7b,0xfc,0x24,0xad,0x8b,0x13,0xb1,0xe7,0x8e,0xd4, +0x72,0xf8,0x88,0x39,0x96,0x74,0x24,0xf9,0x70,0x0a,0xa7,0xa4, +0xda,0xab,0xed,0x9a,0xd9,0x5a,0x3c,0x6f,0x0f,0xee,0xcc,0x6e, +0xbd,0xf5,0x9e,0xc8,0x8a,0x5b,0xc8,0xff,0xae,0x2a,0x24,0x49, +0x19,0x89,0x59,0x71,0xe9,0x6b,0x93,0xf8,0x7d,0xc1,0x61,0x7e, +0xa1,0x81,0x1c,0x5a,0x61,0xad,0xb2,0x02,0x6a,0x19,0xe1,0xed, +0x94,0x0f,0x03,0xf1,0xb8,0x8d,0x08,0x7a,0x95,0x4a,0x3d,0x06, +0x07,0xf7,0x13,0xf4,0xaa,0xe8,0x0b,0xa1,0x0b,0x8d,0x3e,0x88, +0x03,0x58,0xc0,0x18,0xa2,0xd4,0x73,0x16,0xf4,0x18,0xa5,0x1f, +0x6a,0x92,0xe9,0x1d,0x30,0xb6,0xfb,0x53,0x1c,0xdb,0xf1,0x92, +0x7d,0x2a,0x68,0xfd,0xff,0x10,0xa3,0xbf,0x13,0x63,0xe4,0xc0, +0x9b,0xe4,0x87,0x14,0x86,0x9e,0x0c,0xcd,0xbb,0xc0,0xcf,0x3e, +0x65,0x59,0x69,0xd1,0xc4,0x61,0x80,0x03,0x58,0x33,0x85,0xbe, +0x45,0xfe,0x25,0x3b,0x39,0x81,0x30,0x45,0x39,0xf9,0xb9,0xd9, +0x79,0xae,0x25,0xbc,0xab,0xe3,0x5a,0xa7,0x95,0xbe,0xb9,0x0e, +0x7c,0x51,0x52,0x61,0x4a,0x7e,0x3a,0x87,0x33,0x94,0x2e,0xac, +0x39,0xf0,0x44,0x17,0x5f,0x3f,0x61,0xff,0x33,0xb5,0xbe,0x42, +0xd3,0x86,0x86,0xaa,0x8f,0xc0,0x90,0x15,0xbe,0x44,0x42,0x1e, +0xc3,0xa7,0x0b,0xd8,0xa6,0x51,0x7f,0x5e,0xc6,0x2f,0x60,0xbb, +0x87,0xa2,0xe2,0xc3,0x71,0x65,0xe4,0x4a,0x76,0xfa,0x07,0x06, +0x04,0x06,0x71,0x07,0x03,0x77,0x1e,0xdc,0x35,0xfa,0xa8,0x7d, +0xe5,0xe1,0xf3,0x47,0xea,0x8f,0x69,0x60,0x6c,0x03,0x24,0xb2, +0xf7,0x13,0x8e,0x86,0x1e,0x0b,0x3b,0x1a,0xa6,0x51,0x99,0xba, +0xeb,0x82,0x6f,0x47,0xc0,0x59,0x0d,0xb7,0xdd,0x49,0x81,0x49, +0x7e,0x49,0xbe,0x1a,0x1e,0x31,0xae,0xfb,0x3d,0xf6,0x9f,0xaf, +0x6b,0xb8,0x71,0xf1,0x96,0x4b,0x09,0xbf,0xc3,0x7d,0xf3,0x06, +0x6f,0xb7,0xf0,0xe4,0xf0,0x94,0xb0,0xe4,0xb2,0x8a,0xd2,0x9a, +0xfc,0x2a,0xc7,0x22,0xde,0xdf,0x75,0xbb,0xbb,0xb7,0x57,0x58, +0x4a,0x58,0x52,0x78,0xd2,0xa6,0x4d,0x7c,0xa5,0x47,0xb9,0x57, +0xb1,0x07,0xa7,0xbc,0x09,0xfd,0xe9,0x44,0x64,0x32,0x8b,0xd3, +0x4a,0xe2,0x73,0x37,0xa4,0xf1,0x61,0xde,0xbb,0x37,0xee,0xdc, +0xcc,0x4d,0x60,0x52,0x4b,0x93,0x4b,0xe2,0xf3,0xe9,0xdf,0xf8, +0xe9,0x39,0xce,0xb0,0x5b,0x5f,0xb1,0x99,0x4f,0x4c,0x49,0x4c, +0x4b,0x48,0xe5,0xf0,0x1b,0xf8,0xba,0x16,0x87,0xbf,0x84,0x7e, +0xe7,0xb0,0xdf,0xb3,0xf7,0x7f,0x0e,0x63,0xf1,0xd4,0x6c,0xf2, +0xec,0xd7,0xd9,0x2c,0xbe,0x14,0x86,0x8b,0x49,0x69,0x86,0x01, +0x5a,0x60,0x81,0x4b,0x2d,0x7e,0xc3,0x91,0xec,0x74,0x7f,0xbb, +0xd9,0x8e,0x34,0x27,0x5f,0x54,0x9f,0x6e,0x78,0x4f,0xba,0xbf, +0x5c,0x29,0x4e,0xc4,0x34,0xb5,0x10,0xac,0x83,0xcf,0x7a,0xde, +0x5b,0x73,0x80,0xe4,0xda,0x67,0x5b,0xa4,0x5a,0xd7,0x65,0xf3, +0x21,0x0d,0x81,0xed,0xfe,0x35,0x1c,0x6e,0x41,0x63,0x92,0x5f, +0x77,0xfc,0x56,0x52,0xad,0x6d,0x0a,0x1f,0x66,0x1f,0x68,0xe6, +0xe3,0xc8,0x29,0xa7,0xc6,0x92,0x97,0xbf,0x4e,0xa7,0x19,0x78, +0x40,0x11,0x03,0xe4,0x70,0xc5,0x0c,0x63,0x91,0x87,0x5f,0x98, +0xfb,0xd9,0x5d,0x79,0xcd,0xf9,0x5b,0x5b,0x79,0x07,0x7f,0xd3, +0x80,0xb5,0xbb,0xb8,0xef,0x4d,0x91,0x61,0x97,0xef,0x5a,0x1a, +0xba,0x26,0x3a,0xc3,0x8c,0xef,0x3c,0x76,0x2b,0xe9,0x26,0x4d, +0xe3,0x37,0x38,0x12,0x22,0xcc,0x84,0x01,0x1d,0x5f,0xc0,0x48, +0xf4,0x66,0x15,0x61,0x56,0x91,0x4e,0x7b,0xd3,0xd6,0xf2,0x30, +0xea,0x38,0x98,0x54,0xfe,0x56,0x16,0x71,0x85,0xb7,0x0c,0x5e, +0x1a,0xb4,0x24,0x98,0x53,0x46,0x2a,0x67,0x90,0x8b,0xaf,0xce, +0xbc,0xcc,0x7b,0xc4,0x5d,0xc4,0x47,0xdd,0xbf,0x5f,0x56,0x35, +0x82,0x13,0xeb,0xbf,0xcc,0x7d,0x86,0xc5,0xc4,0xbb,0x2b,0x5a, +0x97,0x1e,0x5c,0xc2,0x19,0x05,0x6d,0x34,0x90,0xae,0x65,0x52, +0x4c,0x24,0x57,0x98,0x9f,0xcf,0x5d,0x7d,0xf5,0x46,0x7e,0x7f, +0xcd,0x75,0x3a,0x84,0x74,0x54,0xf7,0x08,0xea,0x62,0x00,0xe8, +0x9a,0xa0,0xee,0x1a,0xcb,0xeb,0xdd,0xab,0x3b,0xaf,0xc0,0x19, +0x15,0x7b,0xb7,0x75,0x39,0xe8,0xb2,0xf0,0x06,0xbb,0x49,0xcb, +0xcb,0x73,0x2f,0x0a,0x1e,0x71,0x0d,0x42,0xdf,0xee,0xdf,0xaf, +0xaa,0x2e,0x42,0x28,0xbb,0x63,0x99,0xf3,0xac,0x75,0x13,0xb9, +0x47,0x2b,0x2f,0x1b,0x2c,0xd1,0x34,0x0a,0xf0,0x5a,0x20,0x35, +0x60,0x92,0x8d,0x25,0x77,0x19,0xe8,0x57,0x77,0xfd,0xf5,0x6b, +0xd3,0xfb,0xcb,0xaf,0x69,0x75,0x0f,0x18,0x47,0xe0,0x00,0x04, +0xe0,0x01,0x16,0x03,0xe4,0x84,0xbe,0xc8,0xc3,0x00,0x66,0x88, +0x72,0x82,0xd2,0x92,0x7c,0xdf,0x81,0x4f,0xe9,0x54,0x81,0x61, +0x59,0x30,0xa8,0xf4,0x9b,0x8a,0x2d,0xad,0xbc,0xae,0x0b,0x4e, +0xde,0x88,0x64,0x37,0xd7,0xed,0xc9,0xfa,0xc7,0x04,0xec,0x0f, +0xdc,0x9f,0x68,0xca,0xc3,0xd4,0x5c,0x70,0xad,0x86,0x3e,0x25, +0x31,0xad,0xfc,0x96,0x28,0xcf,0x48,0x97,0x48,0x8e,0xbe,0x7d, +0xcc,0x5f,0x06,0xf5,0xe9,0x31,0x28,0x44,0x6d,0x90,0xb1,0x68, +0x50,0x67,0x8f,0x41,0x0b,0xa5,0xcb,0x98,0x14,0x63,0xc9,0x1d, +0xb5,0x41,0xaf,0xde,0xa8,0x0d,0x12,0xdc,0xb6,0x13,0x61,0x38, +0x2b,0x0b,0x33,0x0b,0xb3,0x88,0xe0,0x94,0x73,0x69,0x62,0xb6, +0xa9,0xf6,0x90,0x68,0xe4,0xdd,0x67,0xe2,0x27,0x46,0xe2,0xf7, +0xd2,0xe7,0x3d,0xa9,0x02,0x2e,0x1e,0x26,0x72,0xb0,0x80,0x59, +0xb8,0xdf,0x30,0xd2,0x52,0xea,0x19,0x1d,0x1a,0xea,0x3c,0x7a, +0x02,0x93,0x2c,0x93,0xbc,0x65,0x6e,0x14,0xe7,0x5f,0x49,0xd2, +0x4a,0xbc,0x7a,0xe4,0x11,0x8c,0xd1,0x14,0x6c,0xcd,0x19,0x55, +0x2c,0xe6,0x91,0x86,0x57,0x95,0x2f,0x4f,0x88,0x81,0x7f,0xd6, +0xfd,0xfb,0x15,0x55,0x03,0xb8,0xb1,0xfe,0x06,0x6e,0x33,0xcc, +0x27,0x72,0x9f,0xaf,0x68,0x5b,0xb6,0x58,0xd3,0x68,0xe7,0xc6, +0xa5,0xd2,0x35,0x4c,0xb2,0x89,0xe4,0x1a,0xf3,0x56,0x0c,0xbc, +0xec,0xfe,0xea,0xeb,0x5a,0xdd,0xf3,0x85,0x73,0xe4,0x2a,0xbc, +0x02,0x14,0x26,0x0b,0x7a,0x2c,0xbc,0x56,0xf6,0x25,0x94,0x0f, +0x95,0xc2,0x3e,0x76,0xc8,0x57,0xaa,0x73,0x04,0xf3,0x95,0x4b, +0x21,0x9f,0x85,0x9b,0xf8,0xe8,0x7f,0x97,0xd9,0x6e,0x7d,0xe8, +0x47,0x40,0x17,0xda,0x50,0x97,0x45,0x0e,0xdd,0xc9,0xad,0xa4, +0x6b,0xc9,0x8d,0xa9,0xdb,0x2e,0xf2,0xc8,0x6e,0x43,0xdd,0x40, +0x1c,0x17,0x95,0x22,0xe7,0x5b,0x8f,0x5c,0x8b,0xbd,0x1a,0x2f, +0x7e,0xeb,0x39,0x50,0x0e,0x81,0xb8,0x80,0x5d,0xb9,0xd7,0x70, +0xef,0xca,0x7d,0xe2,0x7e,0xe8,0x0b,0x52,0x60,0x55,0x2e,0x0c, +0xcf,0x8a,0x69,0xe1,0x2d,0x22,0x57,0x47,0x19,0x45,0x71,0x30, +0x0b,0x76,0x34,0xe3,0x0e,0x1a,0xb7,0xeb,0xaa,0x52,0x92,0xbe, +0xf0,0xf2,0x5a,0x18,0xb2,0xfc,0x54,0x13,0x8f,0xc3,0x6e,0x9a, +0xdd,0xd8,0x79,0x93,0x5b,0xcd,0x04,0xac,0x34,0x5e,0x82,0xe3, +0x0d,0x4e,0xca,0x78,0xd0,0x7a,0xf0,0xf9,0xdd,0x8c,0xef,0x38, +0x65,0x2c,0x76,0xfd,0xef,0x22,0x24,0x94,0x51,0x08,0xf3,0x5b, +0xb6,0x7a,0x09,0x4e,0x5e,0x50,0x6c,0xc9,0x83,0xce,0xd7,0x5f, +0xdc,0xcd,0xfc,0x81,0x8b,0x63,0x32,0x67,0x7d,0xae,0x0f,0xc3, +0x0c,0x4a,0xe9,0x2f,0x1e,0xda,0x65,0xf0,0x30,0xf0,0x0e,0x87, +0xd3,0xba,0x97,0x90,0x4e,0x28,0x87,0xef,0xf0,0x8d,0x30,0x9e, +0x85,0xd3,0xf0,0x86,0x60,0x00,0xfa,0x41,0x00,0x3b,0xe4,0x8e, +0x2a,0x86,0xfc,0xde,0xb7,0xe9,0x5f,0x7d,0x19,0xd5,0x95,0x31, +0xa4,0x3b,0x46,0x54,0xda,0x77,0x03,0x71,0xf8,0x12,0x1c,0x24, +0x6d,0x70,0x7c,0x0a,0xd2,0x5c,0x18,0x77,0x08,0x6e,0x6a,0xa8, +0x8c,0x19,0xb3,0x7a,0xd2,0x3d,0xf4,0xb6,0x6a,0x28,0x93,0x8a, +0x06,0x44,0x68,0xc5,0xd9,0xca,0x56,0xc6,0x02,0x7a,0x13,0x53, +0xc1,0xfc,0x12,0x1b,0x2f,0x98,0x90,0x8d,0x91,0x49,0x05,0x5a, +0x5d,0xca,0xbb,0xb0,0x82,0x82,0xe3,0x31,0x76,0xfd,0xa9,0xc0, +0x9b,0x52,0x65,0x3e,0x73,0x2e,0x3d,0xad,0x4a,0xeb,0x0b,0x56, +0x9e,0x21,0x19,0xcf,0x22,0xc0,0x1c,0x82,0xfe,0x0f,0xc1,0x9f, +0x69,0x59,0x44,0x1e,0x42,0xd4,0x22,0x1a,0x2e,0x43,0x95,0x0f, +0x81,0x11,0x47,0x61,0x42,0x3a,0xf4,0x29,0xda,0xd4,0xcc,0x63, +0xaf,0x6d,0xa8,0x13,0x82,0xe3,0x63,0x42,0x8c,0x36,0xcf,0x72, +0x31,0xbe,0xe8,0xca,0x9f,0xb9,0x5e,0xf2,0x20,0xf5,0x1a,0xa7, +0xd2,0xa6,0x0a,0xec,0xc2,0xab,0x8a,0x57,0xc7,0x1f,0xd2,0x68, +0x75,0x75,0xff,0xde,0x49,0xd3,0xad,0x60,0x03,0x0c,0x3c,0xa6, +0xcb,0x26,0x72,0xb7,0x57,0x34,0xeb,0x2f,0xd6,0x5c,0x11,0xbc, +0xd1,0x50,0xba,0x5e,0x4c,0xf7,0x25,0xe6,0x87,0xb3,0x34,0x5a, +0x56,0xf7,0x8d,0x6f,0x68,0x09,0x23,0x21,0x92,0x9c,0xb4,0x2a, +0x32,0xcb,0x36,0x6f,0xcc,0xe5,0x83,0x9a,0x36,0x5d,0xdb,0x5a, +0xcf,0xa1,0x06,0xea,0x93,0xc8,0xba,0x3d,0x4d,0xbb,0xab,0x15, +0x21,0x7c,0xba,0x73,0x8a,0x55,0x82,0x1d,0x07,0xc7,0xf1,0x30, +0x31,0x89,0x58,0x16,0xae,0x17,0xc9,0x5d,0x61,0xef,0x9e,0xbe, +0x5c,0x51,0xdf,0xca,0xd5,0x0a,0x16,0x32,0x00,0xd6,0x75,0xa3, +0x7c,0xab,0x89,0x0f,0x37,0x81,0x9d,0x1b,0x31,0x2f,0x6a,0x45, +0x4c,0x9c,0x8c,0xbf,0x79,0xf4,0x49,0xfc,0x93,0x44,0x0e,0xdd, +0x70,0x2c,0x9b,0x69,0x29,0xa1,0x9a,0xb9,0x26,0x2b,0x87,0x92, +0x4f,0x0f,0xf6,0x8b,0xc4,0x07,0x49,0x97,0x93,0xb8,0x21,0xd7, +0xc4,0x6a,0x3d,0x0a,0xde,0x70,0x94,0xad,0x1f,0x45,0x5f,0x6c, +0xa3,0x2f,0x20,0x5f,0x5d,0xb6,0xef,0xfd,0xb8,0xdf,0xe3,0x87, +0x1d,0x2d,0x5b,0x8f,0x19,0x96,0x13,0xb9,0xae,0x15,0x2d,0x4b, +0x69,0xd6,0x83,0x36,0x2d,0x97,0x1a,0x8b,0x59,0xbf,0xcc,0xfc, +0x54,0x7d,0xe5,0xd5,0x1b,0xc5,0xfd,0xb5,0x37,0xb4,0xba,0xcd, +0x60,0x14,0x81,0xc9,0xef,0x70,0xb2,0xa8,0x32,0x61,0x32,0xf4, +0xa5,0xaf,0x2a,0x70,0x0d,0x69,0x12,0x2c,0x15,0xec,0x3d,0xd4, +0x20,0x7b,0x9c,0x03,0x1c,0xb6,0x52,0xf6,0xf4,0x8e,0x39,0xe8, +0xbd,0x7f,0xd3,0xde,0x4d,0x9c,0xe7,0xde,0x90,0x08,0x97,0xd1, +0x38,0x82,0xc9,0xb0,0x90,0x50,0x0d,0x74,0xad,0xb4,0xa0,0x23, +0x49,0x2b,0xbe,0x36,0xb6,0xe5,0xf0,0x4d,0x0e,0xef,0x31,0xa9, +0x27,0x53,0x4b,0x92,0x8a,0x39,0x78,0xdd,0x28,0xe4,0x59,0x51, +0x8d,0xbc,0x5e,0xf5,0x84,0xec,0x30,0xb2,0x5e,0x6d,0xb4,0xa1, +0xd0,0x9e,0xcf,0x4e,0xc9,0x4c,0xcd,0x48,0xe3,0x70,0xcc,0x6f, +0xac,0xff,0x26,0xc7,0x1d,0xba,0xfe,0xd9,0x14,0x05,0x7a,0x9d, +0xea,0x38,0x9b,0xdf,0xce,0x81,0x0e,0xcc,0xb0,0x1b,0xb3,0x84, +0x39,0x9c,0x7c,0x28,0x25,0x55,0xf3,0x6b,0x2b,0x7d,0x36,0xf8, +0xe0,0x9e,0xfd,0x7b,0xa4,0xcb,0x7e,0x76,0x65,0x72,0xb2,0x32, +0x73,0xd2,0xa9,0x80,0xbd,0xc2,0x4c,0xdb,0xb7,0x64,0xaf,0xa3, +0x74,0x43,0xf4,0xee,0x50,0xa7,0xd1,0x73,0x99,0x64,0x7b,0xc9, +0x0b,0xe6,0xda,0xc9,0xd2,0xce,0x78,0xad,0xa4,0xab,0x47,0xef, +0xc1,0x58,0x4d,0x7c,0xc6,0xc4,0x67,0xc4,0x67,0xc6,0x66,0x72, +0xca,0xe7,0x88,0xa4,0xfe,0x8f,0xa0,0xdc,0xed,0xe9,0x65,0x2b, +0xda,0x0a,0x9e,0xd3,0x2d,0x27,0x76,0xd1,0xdc,0x8a,0xbd,0xdc, +0x93,0x5c,0x1a,0x94,0x4e,0xe6,0xc7,0x9e,0xe4,0xae,0xa3,0x41, +0xe9,0x67,0x4b,0x3c,0xe6,0x99,0xda,0x18,0x79,0x9d,0xb0,0xe5, +0x2f,0x14,0x54,0x17,0x97,0x57,0x71,0xd0,0xce,0x20,0xb7,0x4f, +0x37,0xd2,0x51,0xea,0x1c,0x15,0x44,0x7f,0xf7,0x6c,0xf1,0xb9, +0x8c,0xe7,0xcc,0xcd,0x92,0xf2,0x4b,0x54,0x91,0x5e,0x3e,0xf6, +0x00,0xf4,0x35,0xf1,0x01,0xa3,0xde,0x62,0x3c,0x9b,0x83,0x65, +0xb8,0x54,0xdc,0x04,0x60,0xf1,0x7b,0x6f,0x7e,0xb4,0x9a,0x43, +0xbd,0xd9,0x45,0xbd,0xd1,0x7f,0x67,0x83,0xd3,0x41,0xc2,0xf8, +0x6d,0xb0,0xdb,0x36,0x33,0x20,0xc7,0x9e,0x07,0xe6,0x64,0x67, +0x6d,0xfe,0x35,0x0e,0xb4,0x29,0x58,0xa7,0x28,0x9f,0x8a,0x47, +0xaf,0xcc,0x46,0x6f,0x58,0x31,0x0f,0x23,0x6d,0x94,0xc5,0x54, +0xdb,0x7f,0xcd,0x2a,0x43,0x90,0x53,0xbb,0x92,0x27,0xba,0x72, +0xaf,0x27,0xbf,0x36,0x6c,0xc0,0x1f,0xf9,0x6d,0x16,0xf3,0x1b, +0xac,0xce,0x6f,0x8a,0xda,0x95,0x9e,0xfc,0x52,0x57,0x04,0x09, +0x94,0x8a,0xcf,0xe7,0xd7,0x01,0xc3,0xfa,0x75,0xdf,0x24,0xcd, +0x4a,0x1d,0xe5,0x78,0xc1,0x41,0x70,0x60,0x95,0xe3,0x94,0x53, +0x08,0x36,0xe1,0x6b,0x68,0x62,0xa1,0x04,0x23,0x08,0xac,0xa5, +0x63,0x75,0x2d,0x0b,0x8b,0xe0,0x53,0x32,0x03,0x99,0x17,0xec, +0x90,0xab,0x62,0xa9,0x39,0xc3,0x16,0x70,0x66,0x9b,0x47,0xd1, +0x17,0x3b,0xe8,0x0b,0xc8,0xa5,0xa5,0xf6,0xbf,0x32,0xa5,0xdb, +0x0a,0x56,0x90,0xb7,0xd0,0x5b,0x87,0x85,0xb9,0xa3,0xde,0x02, +0xa7,0xc3,0x96,0x0a,0x36,0x04,0x7e,0x10,0x6c,0xf0,0x07,0xb0, +0xd2,0xc7,0x48,0x19,0x44,0x8a,0x2b,0xf8,0x9f,0xc2,0x9e,0x16, +0xdc,0xf3,0x80,0xb5,0x04,0x07,0x82,0xd2,0x97,0x20,0x65,0x5a, +0xa6,0x93,0x97,0xa0,0x3d,0x9d,0x45,0x3b,0x7b,0x32,0x11,0xa5, +0x3f,0xb2,0x60,0x35,0x0a,0xb4,0x27,0x52,0x56,0x3a,0x04,0x1a, +0xc5,0x79,0xba,0x0c,0xf7,0x5a,0x83,0x17,0xeb,0x62,0x31,0xdb, +0x6a,0xfa,0x86,0x42,0x5b,0x1e,0xfa,0xb6,0xfc,0xd4,0x11,0xff, +0x39,0x17,0x87,0x1e,0xad,0x30,0x8e,0x89,0x3b,0x72,0xe8,0xd8, +0x7e,0x29,0x38,0x8c,0xcd,0x3b,0x8f,0x16,0xdf,0xef,0x89,0xdf, +0x77,0x28,0x32,0x5c,0x23,0x22,0x2c,0xe6,0x90,0xe4,0xbc,0xfa, +0xb4,0x31,0x58,0xc6,0xc2,0x8c,0xbd,0xc4,0xdf,0xd5,0xdb,0xc5, +0xcb,0xab,0xc6,0x9b,0x2f,0xaf,0x28,0x3b,0x77,0xa2,0x9a,0xc3, +0x07,0x33,0x89,0x4f,0xd5,0x96,0xb3,0xde,0xa7,0x1c,0x37,0xf3, +0xa7,0x3c,0x8a,0x3c,0x0a,0x5c,0x39,0xd5,0x27,0xb8,0x81,0x9c, +0x7f,0x55,0xf6,0x3a,0xe7,0x21,0x57,0x8f,0xf5,0xdd,0xbf,0x77, +0xa8,0x9a,0xc0,0x88,0xdd,0x69,0xb0,0x71,0x9a,0xd5,0x44,0xee, +0xda,0x8a,0x8b,0x4b,0x28,0x62,0xec,0xde,0xb4,0x5a,0x6a,0xc1, +0xa4,0x98,0x4a,0x5a,0x98,0x97,0x67,0xae,0xbc,0x7c,0x63,0x77, +0xdf,0xf4,0x96,0x56,0xf7,0x27,0x94,0xa7,0xc6,0xe7,0xc4,0xe5, +0xc6,0xe6,0xda,0x26,0xf3,0x7e,0x73,0x5d,0x0d,0xcd,0xe4,0x65, +0x1b,0xf8,0xea,0xca,0xe2,0x73,0x79,0x17,0xb8,0x57,0x4c,0x84, +0x5d,0x88,0x63,0x80,0x8b,0x5f,0xf6,0x8e,0x2c,0xff,0x8c,0x2d, +0xee,0x7c,0xfe,0xce,0x82,0xc0,0xe3,0x01,0x1b,0xad,0xed,0x1d, +0xd7,0x6e,0x28,0x75,0xe2,0x61,0xe6,0x6f,0x57,0xa0,0xff,0x09, +0x98,0xc9,0x9d,0xa1,0xd9,0x32,0x23,0xf5,0x46,0x8f,0x64,0x0b, +0x71,0x88,0x2d,0x0c,0xc1,0xd9,0x33,0xd9,0xc4,0xca,0xb8,0xca, +0xd8,0x0a,0xbb,0xa3,0x7c,0x94,0x62,0x8f,0x59,0xa0,0x05,0x07, +0xba,0x38,0xb1,0x05,0x26,0xde,0xaf,0x5f,0x0a,0xe2,0x5e,0x89, +0xee,0xaa,0x30,0x82,0x23,0xf0,0xa3,0x6e,0xb3,0xb6,0x6b,0x4a, +0x46,0x35,0x18,0x29,0x3a,0x82,0x76,0x8b,0xe0,0x23,0x63,0x95, +0xa9,0x17,0x89,0x19,0xb8,0x77,0xfb,0xe0,0x52,0x36,0x63,0xbd, +0x78,0x6f,0xa5,0x23,0x3b,0xa7,0x5d,0x4b,0xe5,0x0c,0x83,0x3a, +0xd8,0xee,0xb5,0xb8,0x92,0xfe,0xd3,0x4e,0x1c,0xc1,0xc2,0x47, +0xd8,0x42,0xc6,0xe1,0xb5,0x6f,0xd8,0x0a,0xf7,0xcb,0xb7,0x73, +0x9f,0x1f,0x82,0xb1,0x1a,0x9d,0x68,0xc8,0xd8,0x1d,0xdf,0x51, +0x27,0xc5,0xf5,0x70,0x98,0x20,0xb7,0x4b,0x57,0x66,0x2e,0x85, +0x14,0x16,0x4e,0xa0,0x2d,0xd9,0xa1,0xfe,0xea,0xed,0xdc,0xcf, +0xd1,0x96,0xc5,0x6b,0x74,0x1c,0xc2,0x35,0xec,0x8f,0xd7,0x98, +0x21,0xbf,0xb3,0x4a,0x19,0x55,0xe1,0x01,0x68,0x07,0x0b,0x2c, +0x70,0x01,0xae,0xc6,0x80,0x36,0xd0,0xa7,0x38,0xb2,0x1f,0xef, +0x18,0xe1,0x3a,0x34,0x40,0x69,0x85,0x15,0x0f,0xd6,0x30,0xef, +0x3a,0x6c,0x39,0x06,0xb7,0xc4,0xfd,0xb1,0x85,0xb3,0x71,0xa2, +0xc5,0x9f,0x34,0x09,0x06,0x0a,0xd0,0xa2,0x9e,0xf4,0xea,0xb6, +0x68,0xb9,0x06,0xd7,0x54,0x43,0x59,0x9c,0x07,0x23,0xa8,0x6f, +0x76,0x30,0x82,0xb5,0x47,0x13,0x82,0x7d,0xc2,0xe6,0x39,0x9b, +0x49,0x21,0xbd,0x85,0x7d,0x83,0xeb,0x89,0x63,0x8e,0x6f,0xb5, +0xf4,0x2c,0x05,0xf9,0x2f,0x98,0xe2,0x6d,0x92,0xe6,0xae,0xcc, +0xd7,0xa0,0xad,0x79,0x81,0xf9,0x02,0x5d,0x88,0xdf,0xde,0x38, +0xf1,0xab,0xc1,0x6d,0xe8,0x22,0x3e,0x47,0xd7,0x8b,0x98,0x32, +0x9b,0xa3,0xe2,0xcf,0x6a,0x29,0x87,0x5b,0x08,0xa3,0x59,0xa3, +0xec,0x1d,0x97,0xa4,0xb7,0x98,0xba,0x84,0xec,0x3a,0x2d,0x5a, +0x1c,0x76,0x59,0x92,0xee,0x44,0x17,0x02,0xc9,0x74,0xb0,0x27, +0x33,0xe2,0x3a,0xe8,0x72,0x72,0xeb,0xc6,0xa9,0x7b,0x30,0x48, +0xb3,0x0d,0x66,0xa0,0x23,0x6b,0x92,0x15,0x74,0x49,0x5a,0xc7, +0x9c,0x4d,0x12,0x37,0x30,0x19,0xc8,0xda,0x64,0x49,0x70,0xb2, +0x2b,0xeb,0x1b,0x15,0x97,0xaf,0x05,0x47,0x31,0x73,0x1c,0x8b, +0x7d,0x03,0x64,0xeb,0xcd,0xa4,0xe9,0x50,0x40,0x9a,0x05,0x23, +0x39,0x8c,0xa1,0x12,0xb4,0xc7,0x89,0x1b,0xaa,0xa1,0xe2,0xb7, +0xfa,0x58,0xeb,0x51,0x38,0xdc,0x96,0x5e,0xed,0x29,0xb3,0x55, +0x7b,0x41,0x43,0x99,0xda,0xc2,0x82,0x0b,0xc6,0x13,0x1d,0x4c, +0x7d,0xc0,0x9e,0xdc,0x26,0x69,0xb9,0x43,0x1d,0x18,0xab,0x59, +0x8f,0xc6,0x8c,0x43,0x36,0xf5,0x2c,0xbd,0xfe,0x0f,0x37,0xda, +0x45,0x37,0xea,0x85,0x51,0x44,0xbf,0x6c,0x5d,0xb5,0xbc,0xee, +0xc6,0xdd,0xda,0x47,0x79,0x5f,0xd3,0x29,0x33,0x46,0x0e,0x8f, +0xd9,0x9d,0xc6,0xee,0xab,0x2d,0x4c,0x15,0xcd,0x1b,0x2e,0x79, +0x75,0xda,0x6c,0xe7,0xcf,0xac,0xae,0x5d,0xd7,0x6a,0x61,0x69, +0x63,0xe4,0xb4,0xc0,0xbb,0x40,0xc1,0x3f,0x3f,0x7d,0xbf,0xae, +0xb3,0xb9,0xcd,0xfa,0x96,0xc3,0x63,0x37,0xae,0xbb,0x00,0xc2, +0x08,0xa4,0x52,0x3f,0x53,0x69,0xaa,0x06,0xa8,0x96,0x13,0x98, +0x69,0x86,0x33,0x31,0x18,0x66,0x9a,0xe3,0xcc,0x35,0xe6,0xd7, +0xbb,0xad,0xda,0x2f,0x43,0xf0,0xfa,0x0e,0x95,0xd5,0xfd,0x76, +0x56,0x08,0xbd,0x4c,0xdd,0x59,0x26,0x87,0xf1,0x34,0x27,0x92, +0x6e,0xf3,0xd6,0x6b,0xf0,0x95,0x6a,0x08,0x4a,0x68,0x32,0xac, +0x46,0xe1,0x08,0x2b,0x7a,0x85,0x77,0x02,0x4b,0xe0,0x30,0x04, +0xe3,0x61,0x56,0xd0,0x35,0xa5,0xae,0xe4,0x7f,0xc9,0x96,0x6c, +0x91,0xb4,0x75,0x65,0x89,0xae,0x34,0xe2,0x3a,0xc6,0x21,0xc7, +0xf7,0x9c,0x14,0x17,0xc3,0x11,0x82,0xfd,0xf6,0xcc,0x73,0xa4, +0x7e,0xa7,0x5d,0x62,0xa9,0x68,0xdd,0x40,0x7c,0xf7,0xc6,0x17, +0x69,0xc1,0x12,0xf1,0xa4,0x24,0xb0,0x70,0x24,0xf4,0x43,0x8a, +0x31,0x98,0x11,0x5c,0xa9,0x3c,0xa1,0x13,0x8f,0xc5,0x7c,0x6a, +0xa3,0xb1,0xd2,0x8d,0xb4,0x53,0xb8,0xdc,0xc8,0x5e,0x4b,0xbd, +0x92,0x7e,0x3e,0xdd,0xfb,0x22,0x3f,0x7d,0x33,0xae,0xf2,0xc2, +0x61,0x51,0x59,0x32,0xbe,0xee,0xe8,0xa5,0x04,0x3a,0x34,0xd1, +0x51,0x5c,0x86,0x5b,0xc8,0xfa,0x23,0x67,0x8c,0x84,0xbe,0x73, +0x58,0x85,0x9c,0x7f,0x0b,0x03,0x9b,0xa1,0x6f,0x12,0x0c,0xe5, +0xe2,0x04,0xaf,0x0e,0xa5,0x57,0x1c,0x93,0x86,0x43,0x2e,0x61, +0x5f,0xe8,0x8d,0x83,0xca,0x28,0x69,0x18,0x0c,0xc3,0x57,0xc3, +0x48,0x5f,0xe0,0x38,0xcc,0x82,0x0a,0xea,0xe8,0x5a,0x39,0x68, +0xd3,0xbc,0xf5,0x51,0xe7,0xed,0x2e,0xcd,0x5b,0x5f,0x9a,0x2f, +0xea,0xe8,0x70,0x1b,0x7a,0x85,0x79,0xc2,0x4a,0xea,0x5d,0x16, +0xf5,0x6e,0xab,0xa4,0xa5,0x4b,0x9d,0xa8,0x8b,0x62,0xa2,0xd4, +0xde,0x2d,0x14,0xbd,0xeb,0x1b,0x3a,0xdf,0x89,0xd6,0x66,0x5a, +0x1b,0x0b,0x6b,0x68,0x05,0xf6,0x78,0xa7,0xd7,0x21,0x6e,0xf7, +0x9d,0x85,0xae,0x04,0xb2,0x68,0xd8,0xb3,0x98,0x21,0x2a,0x33, +0xf8,0x85,0xbc,0x7b,0x73,0x0b,0xfa,0x94,0xc3,0x58,0xae,0x06, +0x37,0xb1,0xc9,0x05,0x49,0x85,0x09,0x05,0x96,0xe9,0xbc,0x27, +0x32,0x2b,0x91,0xd1,0x5e,0x52,0x6e,0xc7,0x77,0xb5,0xb6,0xdd, +0xae,0xbe,0xc7,0xc1,0x1a,0xc6,0x77,0x89,0xd7,0x2a,0xdb,0xf5, +0xde,0x65,0x9e,0xe5,0xdb,0xf2,0xdc,0x5c,0xf8,0xe2,0x1d,0xe5, +0x5e,0x25,0x5e,0x96,0x66,0x86,0xf2,0x99,0xf2,0x93,0x56,0x7c, +0x5e,0x5a,0x5e,0x7a,0x2e,0x9d,0xb8,0x0f,0xdb,0xaf,0x43,0xf0, +0x9a,0x76,0xa5,0x3e,0x2b,0x28,0x94,0x3a,0x74,0xbc,0x2f,0x57, +0xb7,0xd2,0x98,0x3f,0x3a,0x09,0x7b,0xd1,0x6c,0xd1,0x22,0x1c, +0x61,0x4b,0xaf,0x0e,0xb4,0x77,0xb0,0x4f,0xe8,0xfc,0x0d,0x66, +0x3d,0x45,0xe8,0xac,0x2e,0xc2,0x64,0x75,0x11,0x36,0xff,0x5f, +0x8b,0x50,0xec,0x25,0x88,0x59,0x29,0xe6,0xe9,0x33,0x31,0x4f, +0x07,0xa1,0xef,0x9f,0x3d,0xf3,0xbb,0x95,0xd2,0x84,0xec,0xbc, +0xe6,0x7d,0xd7,0xbb,0xc5,0x31,0x80,0x4f,0xf7,0x49,0xdb,0x92, +0xea,0x6d,0x18,0xb9,0x28,0x6a,0xd1,0xbe,0xe7,0xb7,0x9f,0xff, +0x70,0xe9,0x6b,0xfb,0x22,0xde,0x53,0x26,0x5f,0x6f,0x66,0x11, +0x98,0xed,0x9f,0xe3,0x9f,0x5d,0x57,0x57,0xdd,0x52,0x7a,0xd1, +0xa1,0x80,0xdf,0x62,0xeb,0xac,0x70,0xda,0xb0,0x3b,0x79,0x4f, +0xf2,0x9e,0x44,0x2f,0x57,0xfe,0xe2,0xc6,0x26,0xe7,0xf3,0x0e, +0x5b,0xb6,0x6f,0xde,0xb1,0x39,0x80,0x3b,0x18,0x10,0x70,0x30, +0x70,0xf4,0x11,0x05,0x8c,0x3e,0x0a,0x33,0x92,0x61,0x70,0x86, +0x46,0x5c,0x70,0x5c,0xd0,0xb1,0x60,0xae,0x7b,0x3b,0x3c,0xa4, +0xa0,0xa0,0xad,0xf6,0xad,0x5d,0x35,0x54,0x9b,0x82,0x07,0xdf, +0x24,0x2c,0x54,0xb0,0x60,0x8e,0x23,0x88,0xfa,0x66,0x0a,0xfb, +0x16,0x3b,0xa9,0x4f,0xb1,0x0f,0xd8,0xa2,0xed,0xd4,0xa7,0x0c, +0x11,0x19,0xea,0xd0,0x44,0xf4,0xe9,0xac,0x14,0x67,0x8b,0xf9, +0xea,0x1d,0x3a,0xdf,0x55,0xec,0xc2,0x26,0xf1,0xb9,0x68,0x37, +0xea,0xa5,0x98,0xaf,0xa5,0xad,0xe8,0x46,0xf3,0x47,0xd9,0x29, +0xcc,0x81,0x0b,0x53,0x71,0x1a,0x9b,0x6c,0x23,0x81,0x4f,0x99, +0xea,0xd4,0xac,0x0a,0x2d,0xe5,0x68,0x61,0x92,0x40,0x67,0xe4, +0x2f,0xca,0x99,0x64,0x29,0x5e,0xb8,0xcf,0xc2,0x05,0x1c,0x4e, +0x96,0xe0,0x85,0x2f,0x59,0x61,0x25,0x9d,0x75,0xb1,0xb4,0xf4, +0x62,0x29,0x20,0xaf,0x50,0x45,0x50,0xfb,0x26,0x76,0xcb,0x9a, +0xaf,0x41,0x8d,0x6a,0xf8,0x44,0x6a,0xdf,0x88,0x26,0x61,0xa2, +0x82,0x55,0x2a,0x9a,0x08,0xd6,0x2a,0xf5,0xa1,0x96,0x15,0xfa, +0xe2,0x5e,0x02,0x66,0x70,0x09,0xcd,0xd8,0xee,0x21,0x1d,0xd4, +0xea,0x1a,0x6a,0xf5,0xf7,0x78,0x85,0x68,0x63,0xd4,0x3d,0xb6, +0xd0,0x57,0xd2,0x78,0x27,0xed,0x7b,0x6a,0x75,0x0d,0x9a,0x33, +0x8e,0x59,0xa2,0xd5,0xd3,0xa8,0xd5,0x63,0xc2,0xe6,0x79,0x88, +0x2d,0x54,0xcf,0x82,0x1e,0x7a,0x10,0xbf,0x68,0x31,0x35,0x06, +0x17,0xd1,0x83,0x55,0x7e,0x85,0xa3,0x08,0x6e,0xa3,0x78,0x7a, +0x23,0xf1,0x6a,0x72,0x67,0xba,0x7f,0x03,0x8f,0x23,0x36,0xe1, +0xcc,0x20,0x9c,0x16,0x99,0xa4,0xe0,0xaf,0x1c,0xbd,0x1c,0x7b, +0x39,0x8e,0xc3,0x8f,0x71,0xa3,0x1c,0x36,0x52,0x64,0xb6,0x97, +0x2b,0x3d,0x9a,0xd1,0x15,0x16,0xc0,0x36,0xb6,0xfb,0x4a,0x20, +0x81,0x28,0x6a,0x7d,0x14,0xad,0xcf,0x7b,0x2a,0x6d,0x02,0x4c, +0x33,0x32,0x30,0xc2,0x92,0x36,0x3e,0xb5,0x5e,0x46,0x2f,0x7d, +0xe4,0xd0,0x07,0x75,0x90,0x58,0x2a,0x13,0x5b,0x71,0x18,0x23, +0x68,0x50,0x82,0xdc,0x24,0x8c,0x53,0xd0,0xc9,0x31,0x7c,0x4a, +0xb7,0x25,0xf5,0xf4,0xb4,0x6a,0xd8,0x64,0xda,0x29,0x36,0xb4, +0x63,0x5c,0xe8,0x55,0x79,0x71,0x1a,0xa1,0x6f,0x98,0x08,0x3a, +0xe2,0xfd,0xf6,0x97,0xd4,0xad,0xdd,0x9f,0xb3,0xf9,0xbe,0x92, +0x86,0xbb,0xd4,0xad,0xb1,0x9a,0x87,0xce,0xa2,0x05,0xeb,0x98, +0xed,0x57,0x29,0xc5,0xc9,0x74,0xbc,0x68,0x47,0xcc,0xf7,0x12, +0xab,0xb1,0x96,0x12,0x14,0xf4,0x24,0xfe,0x6a,0xbf,0x96,0x5f, +0x40,0x4f,0x4a,0x06,0x84,0xb5,0xe4,0x02,0xd4,0xdb,0xb5,0x29, +0xe5,0xc2,0x2c,0x41,0xce,0xc2,0x6f,0x50,0x42,0xb0,0x1e,0x18, +0xa8,0x67,0xba,0xc5,0xbd,0xbe,0x61,0x37,0xb5,0x7c,0x37,0x43, +0xc3,0xda,0x8b,0x40,0x3d,0x0e,0xc2,0x7a,0xea,0xc5,0x76,0xf1, +0x69,0x6a,0xd6,0x82,0xfe,0xc4,0x42,0xa1,0x74,0x6e,0x62,0x05, +0xcf,0xe3,0xff,0x2f,0x6c,0x86,0x97,0xf8,0x2d,0x39,0x9a,0x70, +0xec,0x50,0x6c,0xd4,0x03,0x6d,0xbe,0xb8,0xa4,0xc4,0xeb,0x54, +0xe5,0x89,0xd3,0x69,0xa5,0x1a,0x47,0xe2,0x8e,0x1d,0x8e,0x8d, +0x7a,0x85,0x1f,0xf1,0x67,0x2a,0xe7,0xc2,0x80,0xf0,0xb4,0xb0, +0x83,0xe1,0x11,0x1a,0x11,0x91,0x31,0x47,0x24,0x29,0x65,0x71, +0x67,0x3b,0x35,0xcf,0x5b,0x3a,0xb0,0xd3,0xf7,0xd8,0xae,0x5b, +0x2c,0x35,0x7e,0x42,0x7f,0xfa,0x59,0x18,0xe5,0x1f,0x91,0xe2, +0x59,0xc4,0xa5,0x71,0xd5,0x9d,0x9a,0x17,0x2d,0x6d,0x59,0x9d, +0x60,0xc5,0xfc,0x19,0xd2,0x0a,0xc7,0xea,0x9a,0x92,0xf3,0xe9, +0xe5,0x1a,0xb8,0x7e,0xca,0x7f,0x84,0x7d,0x71,0xa0,0xa1,0xae, +0x58,0x9d,0x7f,0x9b,0x11,0x2b,0xff,0x9a,0x67,0xe2,0x20,0x80, +0x62,0x7d,0x32,0x0b,0xad,0xe4,0x60,0x85,0x3b,0xda,0x28,0x69, +0xf3,0x6f,0x46,0xff,0xe7,0xac,0xf0,0x52,0x3c,0x98,0xfc,0x3d, +0xb4,0x2b,0xff,0x4b,0xe9,0x4f,0x22,0x33,0xc3,0x0f,0x85,0x45, +0x84,0x47,0xf2,0x31,0xc0,0x3e,0x6b,0x9c,0x0d,0xa6,0x72,0x34, +0x45,0xc6,0xea,0x37,0x26,0x0a,0x3f,0xf2,0x42,0x9d,0x65,0xf8, +0xd1,0x29,0x39,0x7f,0xf9,0x6d,0x16,0x48,0x8e,0x7e,0x4b,0x31, +0x32,0xa7,0x59,0x99,0xc5,0xc4,0x1d,0xfd,0xec,0xf0,0x3e,0xe9, +0x4d,0x9c,0x5a,0x55,0x26,0x81,0x34,0x48,0x23,0x8d,0xb4,0x0c, +0xc4,0x37,0xce,0xb0,0xfa,0x86,0x8d,0xc2,0x91,0xee,0xa8,0x33, +0x01,0x3f,0x39,0x65,0xca,0x3f,0x86,0xe1,0xb9,0xaf,0xe3,0xbe, +0xe3,0x62,0x85,0xe4,0x66,0x65,0x72,0x1c,0x13,0x3b,0xf3,0xc4, +0xd4,0x1b,0x38,0xa2,0xf4,0x32,0xbf,0x10,0xb4,0x5c,0x40,0x1a, +0x05,0x84,0x13,0x2c,0x60,0x26,0xfd,0x80,0xb7,0xe2,0x49,0xb9, +0xc3,0x17,0x74,0xcb,0x1b,0xaf,0xc3,0x61,0xd5,0x70,0x5d,0x1a, +0x69,0x3b,0x1a,0xf1,0x8d,0x62,0xc4,0x07,0x08,0xc6,0xb4,0x30, +0xec,0x6e,0xb2,0xb9,0x41,0x92,0xda,0xbb,0xc9,0x3f,0x82,0x54, +0x33,0xb6,0x0c,0xad,0x59,0xe7,0x4c,0xbf,0x0a,0x29,0x8e,0x86, +0x43,0x64,0x72,0xd4,0x82,0xed,0xb4,0x30,0x12,0xcb,0x59,0x98, +0x8a,0x9b,0x49,0xc0,0xbe,0x38,0xda,0xa5,0xab,0x2b,0xc4,0xd3, +0xa9,0xec,0xd0,0x99,0x80,0x1d,0x65,0xbf,0x76,0xd4,0x63,0x77, +0x3a,0xb4,0xcb,0x0a,0x8b,0x4f,0x16,0x94,0x70,0x38,0x16,0xde, +0x41,0x0c,0x96,0xb3,0x69,0xf9,0x29,0x85,0x49,0x85,0x1c,0x54, +0x37,0x62,0x1e,0x13,0x7f,0x22,0xf6,0x44,0x6c,0xbe,0x2c,0x81, +0x8f,0xde,0x1a,0xb5,0x3d,0xd2,0x87,0xc3,0xb5,0x56,0xa0,0xcb, +0xb8,0xcf,0x94,0x2d,0x5f,0x64,0xc2,0x61,0x9a,0x78,0x4c,0xd7, +0xf0,0x19,0xdd,0x96,0x4d,0xd7,0xa0,0x40,0x35,0x6c,0x3a,0x0c, +0x87,0xfe,0x4d,0xc2,0x30,0x0a,0x29,0x06,0xb4,0xc5,0x61,0x78, +0x15,0x0e,0x67,0xbf,0xc3,0xab,0xd4,0x58,0xdf,0xbb,0x6c,0xbe, +0xbf,0xe4,0xc2,0x9d,0xd4,0x1f,0x60,0x8c,0xe6,0xe1,0x2a,0xb4, +0x64,0x1d,0xb3,0xfc,0xce,0x48,0x71,0x1c,0xad,0x62,0x9d,0x08, +0xdd,0x4d,0xd4,0xd8,0x94,0x73,0x2c,0xcc,0x47,0xaf,0xf7,0x55, +0x6c,0x58,0x8b,0x5e,0x2c,0xa4,0xdf,0x20,0x30,0x96,0x32,0xe0, +0xb1,0xec,0x5d,0x1c,0x4a,0x04,0x05,0xb6,0x6f,0xb0,0x56,0x96, +0x34,0x6c,0x10,0xcf,0xc0,0x4d,0x20,0x98,0xb0,0x0c,0x12,0x58, +0x18,0x89,0x09,0x04,0x12,0xee,0x63,0x02,0xdb,0x38,0x0a,0x12, +0x1e,0xd1,0x6b,0xf7,0x2e,0x98,0x4d,0xc0,0x97,0x96,0xb1,0x2f, +0x05,0x16,0x4d,0xe5,0x46,0x02,0x9d,0xaf,0xd8,0x5d,0x1b,0x03, +0x7c,0xdc,0xb7,0x16,0x6f,0xe5,0x33,0x52,0x52,0x53,0x93,0x53, +0xb9,0x3b,0xf6,0xf8,0xa9,0x2b,0xf0,0x4c,0x88,0x87,0x7b,0xe0, +0x92,0x6d,0x59,0xae,0x7c,0x47,0x4e,0xf5,0x89,0x13,0x05,0xb1, +0xc7,0xe2,0x0e,0xc6,0xc5,0xc0,0xf0,0x95,0x7c,0xee,0x69,0xec, +0x7b,0x39,0x3c,0x36,0xfa,0x40,0x64,0xa4,0x46,0x54,0xd4,0xbe, +0xc3,0x71,0x49,0xb1,0x49,0x47,0xd3,0x34,0x40,0x5a,0x85,0xa3, +0xeb,0xa0,0x4f,0x15,0xda,0x33,0xb1,0xf1,0xc7,0x12,0x8e,0xc6, +0x6f,0x4e,0xe3,0x21,0xae,0x86,0xf6,0x99,0xb6,0x72,0xd6,0x39, +0x46,0x39,0x1d,0x62,0x89,0x31,0x13,0xb6,0xff,0x70,0x82,0xd6, +0x37,0x18,0xc3,0xae,0x08,0xdb,0xb1,0xde,0x5b,0x7a,0xd2,0xf3, +0x76,0x59,0xe6,0x99,0xa3,0x75,0x1a,0xa0,0xa3,0x60,0xb6,0xa5, +0x86,0x55,0x4a,0x1f,0x30,0xa7,0x93,0x52,0x4b,0xb4,0xce,0xb1, +0x76,0x69,0x12,0x61,0x00,0xa5,0x04,0x37,0x52,0xae,0x64,0xb7, +0xe4,0xb7,0xfb,0xdd,0x0c,0x7a,0xb4,0x2b,0xbd,0x9a,0x5f,0x9b, +0x2a,0x4b,0xb3,0x4b,0x6f,0x3b,0x55,0x7b,0xa6,0xa8,0x8a,0x2b, +0x15,0x86,0x6f,0x80,0x2b,0xec,0xf6,0x6d,0xee,0xdb,0xad,0x7d, +0x1d,0xb2,0x5d,0x8f,0xbb,0x17,0x6d,0xda,0xca,0x97,0xf8,0x9e, +0x0a,0xa8,0x08,0xda,0xb0,0xdb,0x3e,0x54,0x1e,0xce,0xa1,0x94, +0x62,0x99,0x07,0x1b,0x86,0x07,0xf0,0x5f,0x97,0xcb,0x95,0xe8, +0x75,0x19,0xfe,0x85,0xe9,0xf5,0xf0,0xa2,0xee,0x5f,0x23,0xec, +0x59,0xe5,0x20,0x5b,0x92,0xc2,0x9e,0x86,0xa1,0xb6,0xe2,0xf6, +0x50,0x16,0x44,0x40,0x18,0x07,0x86,0xcc,0x1e,0x77,0x2f,0x5f, +0xfd,0x1d,0xf9,0xce,0xfc,0xbb,0xf2,0xca,0xda,0xd4,0x06,0x0e, +0xc8,0x26,0xc6,0x3e,0x37,0x40,0xbd,0x8a,0x7f,0x32,0x31,0xfd, +0x84,0xd6,0x49,0xd6,0x2e,0x45,0xe2,0x3c,0x99,0xf5,0x8b,0x88, +0xcf,0xd5,0x3a,0x05,0x0e,0xac,0x80,0xf4,0xdd,0x4a,0x74,0x14, +0x90,0x16,0x90,0x8b,0xb2,0x95,0xc0,0xc4,0x63,0x30,0x2d,0x01, +0x98,0xa4,0x8c,0xe0,0xb4,0xe0,0xd4,0xe0,0xca,0x53,0xbc,0xeb, +0x45,0x79,0xab,0x4d,0x95,0xdb,0x16,0x3e,0x7b,0x77,0x76,0x50, +0x56,0xd0,0xca,0xe8,0xc5,0xfb,0x16,0xc4,0x14,0x96,0x16,0x9d, +0x39,0x5e,0xc9,0x41,0xe9,0x45,0xf4,0x15,0xbf,0x27,0xe0,0x6e, +0x03,0x13,0x18,0x3f,0xb7,0xad,0xee,0x5b,0x36,0x72,0x07,0xfd, +0xfc,0x0f,0xfa,0x8d,0x0e,0x02,0x2d,0x8a,0x8e,0x9f,0x28,0x60, +0x04,0x0e,0x9f,0xda,0x6d,0x4e,0x8b,0xaa,0x5c,0x35,0x64,0xca, +0xdf,0xd0,0xd1,0x11,0xcd,0x88,0x4e,0xf8,0x3c,0x2f,0x91,0x51, +0x9f,0x67,0x61,0x3d,0x26,0x51,0x3c,0xd8,0x7d,0x97,0x2d,0xf0, +0x95,0x5c,0xec,0x01,0xc8,0xb3,0x22,0xee,0x8b,0xf8,0x98,0x7e, +0xe1,0x7d,0x21,0x19,0x5c,0x10,0x61,0x7e,0x55,0x1a,0x71,0xca, +0x0c,0xae,0x93,0x5e,0x14,0x0f,0x9d,0x2f,0xd3,0x7a,0xc2,0xda, +0x67,0x48,0xc6,0x7b,0xf4,0xdc,0x1c,0x80,0xd9,0x0a,0x16,0x53, +0xa3,0xc9,0x5c,0x1f,0x4b,0x63,0x57,0x69,0xa5,0xab,0xa4,0xab, +0xbe,0xf4,0xf6,0x3b,0x4d,0xf8,0xe8,0x00,0x91,0xe3,0xd6,0x66, +0x06,0xdc,0xdd,0x88,0x60,0x81,0x45,0x4e,0xd6,0xca,0x93,0x62, +0xe9,0xdd,0x84,0x9d,0x04,0x77,0x2e,0x83,0x9d,0xa2,0x00,0xd8, +0x49,0x60,0xe7,0x03,0xdc,0xc9,0x5e,0x1c,0x05,0x3b,0xbf,0xa2, +0xd7,0xee,0x40,0x98,0xf5,0x07,0xb6,0x0e,0x51,0x69,0x2b,0x0f, +0x11,0x68,0xc1,0x5d,0xf6,0xb0,0x0a,0x73,0x4e,0xb1,0xdb,0xcd, +0x0c,0xed,0x51,0xc7,0x39,0x47,0xc1,0xc3,0xd8,0x9a,0x57,0x1d, +0x19,0x8f,0xb9,0x38,0x26,0x63,0x01,0xf4,0x36,0x83,0x49,0x76, +0xb9,0x4d,0x3c,0xce,0xaa,0x9d,0xd3,0xea,0x4b,0x55,0x6f,0x20, +0x95,0x06,0xaf,0x30,0xd2,0x1e,0x4c,0xf0,0x3c,0x2b,0xf8,0x50, +0xa2,0xd5,0x88,0xbf,0x58,0x81,0x04,0x47,0xe8,0x76,0x5b,0x36, +0x5e,0x83,0x58,0xd5,0xb0,0xf9,0x94,0x91,0xd8,0x52,0x66,0xb2, +0x91,0x5e,0x95,0x3f,0x8f,0xda,0xe8,0x69,0xbd,0x49,0xbe,0x23, +0xdf,0x8d,0x6f,0x2e,0x6c,0x2e,0xab,0x38,0xcb,0x61,0x63,0x11, +0xd9,0xec,0x6e,0xed,0x69,0xed,0x53,0xe0,0xc6,0x37,0x16,0x35, +0x54,0x9c,0xae,0xe6,0xe0,0x63,0xdc,0x4e,0xda,0x0b,0x9b,0xca, +0xab,0x6b,0xb6,0x94,0xf1,0xae,0x6e,0x72,0x0f,0xb9,0x1f,0x87, +0xc3,0xbe,0x21,0xce,0x4e,0x56,0xae,0x66,0x5b,0x0b,0x9d,0xf9, +0x8e,0x92,0xb6,0xaa,0x73,0x17,0x39,0xcc,0xc0,0x62,0xda,0xb3, +0x4e,0xb7,0xd8,0xe3,0x3b,0x29,0xc0,0xa4,0x88,0x00,0x73,0xac, +0x0c,0xad,0x58,0xe7,0x2c,0xbf,0xd3,0x52,0xfc,0x84,0x02,0xcc, +0xa4,0x28,0xdd,0x6d,0xb4,0x67,0x93,0x4e,0xb3,0x30,0x1d,0xbd, +0x49,0x40,0xb4,0x08,0x30,0xab,0x2a,0xd1,0x9b,0x55,0xf6,0x39, +0x48,0x8c,0xd7,0xcf,0x73,0x1e,0xbb,0x2d,0xdb,0x91,0x7f,0x57, +0xf2,0xea,0xfc,0xcd,0xeb,0xdc,0x25,0x37,0x32,0x67,0xf6,0x18, +0x2b,0x9c,0xe2,0x9a,0x6b,0xc7,0xc3,0x84,0x2a,0x18,0xd4,0xf6, +0xea,0x7b,0x0e,0x55,0xf8,0x90,0x80,0xfd,0x39,0x98,0xfe,0xa5, +0xb8,0x8d,0xab,0x5b,0x05,0x8f,0xbd,0xb1,0x0f,0x8e,0x37,0x40, +0xb9,0x0b,0x47,0x1b,0xdc,0x9c,0x80,0x13,0xc5,0x29,0x27,0x1a, +0xc7,0x01,0xaa,0xd1,0xc4,0x82,0x1d,0x1b,0x7d,0x64,0xc3,0x2f, +0xb1,0x92,0x6d,0xac,0x5b,0xc6,0x8e,0xf3,0x52,0x30,0x61,0xaa, +0x92,0x93,0x4b,0xb5,0xca,0x58,0x1b,0x71,0xc7,0x18,0x3d,0x36, +0x60,0x6f,0x5c,0x8e,0xb8,0x63,0xcc,0xb4,0xf8,0x03,0xd5,0x38, +0x25,0x4a,0xd2,0x0c,0x9e,0x6c,0x54,0x40,0x78,0x40,0x58,0xf0, +0xf9,0x20,0x3e,0x23,0x3f,0xad,0x34,0xbe,0x84,0x2b,0xc3,0xd4, +0x8b,0xb0,0xfb,0x1c,0xee,0x6e,0x34,0xc3,0x49,0x68,0x86,0x36, +0x2c,0x3a,0x44,0xe2,0x6c,0x07,0xd4,0x91,0xaa,0xb8,0xb9,0x94, +0x72,0xf4,0x69,0xc4,0x7f,0x59,0x01,0x87,0x23,0xe6,0xa9,0x23, +0x1d,0xcf,0x46,0x07,0xd7,0xda,0x4b,0xda,0x61,0x66,0x2a,0xac, +0x86,0x18,0x4d,0x98,0xc4,0xe2,0x67,0xbf,0x50,0x9e,0xe2,0x41, +0xe3,0x5e,0x41,0x95,0x20,0x2a,0x58,0x27,0x11,0x76,0x4f,0x6a, +0xa3,0xdb,0x6d,0x86,0xc6,0xab,0xee,0x0e,0x05,0x64,0x2d,0xcd, +0xa3,0xac,0x73,0x08,0x99,0x18,0xb9,0x60,0xab,0x18,0x25,0x2a, +0x4f,0x67,0xd2,0x28,0xf9,0xef,0x13,0x0b,0x72,0x65,0x95,0x18, +0xa5,0x04,0x34,0x25,0x15,0x05,0x67,0xab,0x4b,0x6a,0x3c,0x4a, +0xf9,0x6d,0xae,0xde,0x9b,0xb6,0xf8,0x85,0x9c,0x8d,0xac,0xdd, +0x77,0x81,0x83,0x71,0x35,0xc2,0x1c,0x27,0xd0,0x61,0xdc,0x36, +0x99,0x78,0xaf,0xf2,0xcb,0x76,0xe2,0xcf,0xa4,0x57,0x66,0x9e, +0x3e,0x9e,0x18,0x96,0x18,0x96,0x10,0xe6,0xe8,0x61,0xe2,0xb1, +0xda,0x2f,0xdb,0x81,0xbf,0x5a,0x70,0xb3,0xaa,0xb6,0x2a,0x61, +0x57,0xfc,0xae,0xd8,0x5d,0xe6,0x96,0xfa,0xb6,0x13,0xdd,0x73, +0xec,0xf9,0x57,0x67,0xbe,0x6a,0x6c,0x6c,0xe0,0x8e,0x06,0x1d, +0xde,0x19,0xa4,0x29,0x0b,0xd9,0xe3,0x2c,0x5d,0xc9,0xa4,0x38, +0x4a,0x2e,0x33,0x0f,0xf2,0xce,0x7c,0xf9,0x62,0xc3,0x77,0xc6, +0x5d,0x5a,0xd9,0xe9,0x59,0x19,0xe9,0xd9,0x5c,0x36,0x25,0xf6, +0xd3,0x3b,0xf0,0xd3,0x5f,0x27,0x94,0x54,0xf1,0xb6,0x17,0x3c, +0x9a,0xb6,0x5f,0xe2,0xba,0xdd,0x76,0x11,0x70,0xa3,0x21,0x17, +0xbf,0x11,0x7b,0x52,0x15,0x4f,0xba,0x6c,0x8d,0x16,0xd1,0xff, +0x91,0xc7,0x1a,0xa5,0x0d,0xd4,0xb0,0xdd,0x07,0x82,0x29,0xde, +0x4f,0x57,0xe3,0x7d,0xb1,0x6a,0xd8,0x34,0x8a,0xf7,0x03,0x9b, +0x84,0x51,0x0a,0x71,0x6b,0xde,0x3f,0xf0,0x1e,0xbe,0xcf,0x25, +0x8b,0xee,0x3d,0x64,0xea,0x47,0x3d,0x5c,0xb6,0x88,0x01,0x7e, +0xd4,0xbd,0xa7,0xcb,0x58,0xcc,0x71,0x25,0xba,0x8b,0x9e,0xb0, +0xe0,0xad,0x4b,0x16,0x3d,0x11,0x7f,0xf8,0x54,0x77,0x3e,0x23, +0xfc,0x5e,0x25,0x82,0xff,0x46,0x11,0xfc,0x6b,0x58,0x58,0x8b, +0x29,0xb4,0x9d,0x03,0xef,0x88,0x93,0xa2,0xfe,0x4e,0xda,0x0f, +0x22,0xdf,0x11,0x27,0x85,0x53,0x96,0x6f,0xa5,0x34,0x83,0xf6, +0xb3,0x9a,0x6b,0x1a,0xd6,0xd1,0xc1,0xf0,0xb4,0x85,0xd8,0x29, +0x53,0x2f,0xb0,0x82,0x78,0x20,0x04,0xae,0x51,0x2e,0x13,0xcf, +0xb6,0x92,0xa8,0xcf,0xb6,0xba,0x3c,0x9f,0xed,0xf6,0x0c,0x26, +0x10,0x48,0x5b,0x30,0x90,0x51,0x1e,0x0b,0x27,0x11,0x25,0x21, +0x25,0xbb,0x0a,0xac,0x83,0xf8,0x34,0x9f,0x74,0x6f,0xf1,0x94, +0xab,0xad,0xfb,0x48,0x7a,0x71,0x7a,0x45,0xe2,0x49,0xab,0x34, +0x3e,0xc2,0x2b,0xd8,0x6d,0xa7,0x07,0x87,0x57,0x6c,0x95,0x27, +0x44,0x06,0xe4,0x01,0x2b,0x49,0x27,0xec,0xac,0xc5,0x9d,0xad, +0xb0,0x11,0x0e,0xe2,0xc6,0x56,0x88,0xa9,0xc5,0x98,0x9b,0xec, +0x83,0xb8,0xfb,0x09,0x97,0x13,0x03,0x6b,0x78,0x1c,0xba,0x13, +0xcd,0xf7,0xa0,0xce,0xc1,0x04,0x7b,0xbe,0xf5,0xc6,0xd1,0x63, +0x37,0xb5,0xd6,0xe1,0x76,0x47,0xd8,0x6e,0x89,0xce,0x78,0x10, +0x9c,0x2d,0xd1,0xcf,0x11,0xfc,0x4c,0x70,0x97,0x83,0x32,0x87, +0x36,0x6f,0x9e,0xf2,0x26,0xc5,0x34,0x5e,0x01,0xc3,0x71,0xf8, +0x34,0x75,0xe0,0x4a,0x55,0xc3,0xa6,0xbe,0xc7,0x34,0x57,0x35, +0xa6,0x99,0x8b,0x98,0xb6,0xd1,0xbc,0x87,0xc7,0xad,0xc3,0x64, +0xda,0x7a,0x41,0x74,0x5c,0xfa,0x49,0x2e,0xfe,0x19,0x84,0xf7, +0xa4,0xaf,0x07,0xd4,0x7a,0x82,0x40,0x39,0x5e,0x27,0xac,0x15, +0xb7,0xfc,0x9e,0x2a,0x6e,0xf9,0xed,0x82,0x14,0x76,0x66,0xc1, +0x3c,0x9c,0xc5,0x4e,0x48,0x21,0xf9,0x85,0x45,0x55,0x19,0x65, +0x5e,0x27,0xf8,0xdd,0x9b,0x7c,0x3c,0x7c,0xb6,0x71,0xb8,0xe1, +0x2e,0x39,0xbe,0xed,0xb8,0x47,0xfa,0xa6,0xd3,0x79,0x7c,0x70, +0x79,0x40,0xb9,0x5f,0x11,0x27,0xc8,0x04,0x09,0x81,0x20,0x1a, +0xa6,0x20,0x06,0xbe,0xa1,0xe3,0xb5,0xf8,0x5c,0xe1,0x95,0xd4, +0x7a,0xfb,0x0c,0x3e,0xc4,0x69,0x9b,0xd9,0x56,0x17,0x4e,0xb9, +0x06,0x3e,0x26,0xc7,0x37,0xe4,0x99,0x24,0x39,0x36,0xa5,0xf3, +0x21,0xe7,0xfd,0xda,0xfd,0xcf,0x71,0xb8,0x2a,0x90,0xa4,0x6d, +0x48,0xb3,0x8c,0xb7,0x6f,0x48,0xe4,0xa3,0x2e,0xec,0x6e,0xdf, +0x5d,0xc5,0xe1,0x8a,0x70,0x12,0xbb,0x21,0x76,0xfd,0x11,0xa7, +0xa6,0x78,0x7e,0x7f,0x6d,0xd4,0x95,0xa8,0x33,0xea,0x1d,0x12, +0xb3,0x88,0x88,0xf3,0xa1,0x0e,0xca,0xa2,0xf3,0x6c,0xf7,0xd8, +0xed,0xe4,0x45,0x23,0xbe,0x51,0xf7,0xd6,0x5c,0x75,0x20,0x12, +0x55,0xc3,0xe6,0x32,0x76,0xea,0xa5,0x0a,0x4f,0x11,0xc5,0xba, +0xbb,0x8d,0xc9,0xf9,0x82,0xca,0xe2,0xe2,0x12,0xcf,0x53,0xfc, +0xf6,0xcd,0x2e,0x9b,0x9d,0x7d,0xfd,0x4e,0x06,0x9d,0xda,0x53, +0xc1,0x81,0xcf,0x79,0x1c,0x77,0x13,0x86,0xd4,0xe2,0x90,0x2b, +0xa0,0x51,0x8b,0x1a,0xd7,0xa1,0x17,0xcc,0x42,0x1f,0x9c,0xd5, +0xb1,0x06,0xe7,0x5c,0x6f,0xa6,0xaf,0xb7,0xe2,0x2c,0xe8,0xbb, +0x06,0x89,0x23,0x10,0x63,0x1c,0xe8,0x08,0x03,0x57,0xe1,0x58, +0x07,0x70,0x66,0x6c,0x1d,0xe7,0xb8,0xcf,0x0e,0xcc,0x74,0xe0, +0xeb,0x52,0xea,0x32,0xaa,0x73,0x38,0xec,0xc5,0x7a,0x46,0x7b, +0xc6,0x78,0xc5,0xc4,0x3b,0xf0,0xbf,0x25,0x41,0xbf,0xac,0x37, +0xb9,0x31,0xb5,0xbc,0x4d,0xb8,0x55,0x84,0x22,0x8a,0x83,0x91, +0x6c,0x69,0x4e,0xd1,0x89,0xe3,0x85,0xdc,0x51,0xa6,0x06,0x07, +0x7d,0x3e,0x1b,0xb4,0xd6,0x17,0xd4,0xf2,0xe6,0x05,0x8e,0x45, +0x5e,0xa7,0x38,0xdc,0xaa,0xfc,0x9a,0x18,0xe1,0xb0,0x2e,0x56, +0xf9,0xf1,0x28,0x23,0xfc,0xa8,0x8b,0x15,0xee,0xcf,0xff,0x5b, +0x8f,0x7f,0x35,0xaa,0x07,0x0c,0xce,0x48,0x8b,0xb4,0xd1,0x55, +0x0d,0x06,0xe7,0xef,0xa4,0xf4,0x80,0x01,0x95,0x01,0x6a,0x94, +0xfc,0xb3,0xff,0x97,0xb5,0x53,0x3b,0xe7,0x5c,0x61,0x61,0x0e, +0xf6,0x21,0xab,0x70,0xce,0x4d,0xb1,0x96,0xa7,0x11,0x70,0xa5, +0xed,0xe7,0x4a,0xa5,0xa1,0x44,0x59,0x41,0x96,0xb7,0x42,0x3f, +0x27,0x36,0x19,0xf6,0x4b,0xd0,0xce,0x83,0x0e,0xcb,0x03,0x2e, +0x12,0xd4,0xf6,0xa2,0x5a,0xe5,0xc0,0x06,0x09,0x4a,0x3d,0xe1, +0x13,0xe6,0x80,0xbd,0x04,0x8d,0xe8,0x38,0xff,0x16,0xe3,0xd1, +0x88,0x39,0x50,0x27,0x81,0xb1,0xe5,0xa8,0xcd,0x1c,0x38,0x27, +0x81,0x71,0xe5,0x38,0x81,0x39,0x78,0xaa,0x21,0xb6,0x25,0xf1, +0x5c,0x9a,0x46,0x40,0xb9,0x7c,0x97,0x69,0xc4,0xda,0x68,0x8d, +0x24,0xdc,0x23,0x71,0xc0,0x7e,0xad,0x77,0x19,0xa5,0xd3,0x2d, +0xf2,0x1a,0x6d,0x8a,0xc1,0xb1,0x04,0x1d,0x4f,0xc2,0x5e,0xdc, +0x81,0x7b,0x4b,0x58,0x98,0x75,0x8d,0x78,0xe1,0xac,0x72,0x16, +0xa3,0x05,0x6f,0xa2,0xf2,0xa2,0xa3,0xec,0xc4,0x29,0x88,0x29, +0xeb,0x9e,0xbd,0x11,0x76,0x33,0x07,0x43,0x0f,0x86,0x1f,0x88, +0xe0,0xf0,0x18,0xa3,0x1c,0x7f,0x8a,0x6c,0x1a,0xc7,0x1e,0x4e, +0x3a,0x9c,0x94,0xac,0x09,0xff,0x85,0xf3,0x88,0xf0,0xf6,0x39, +0xac,0x64,0x02,0xfd,0x5d,0x43,0x16,0x47,0xa4,0x79,0xf2,0x3f, +0x27,0x35,0x9e,0xc8,0xab,0xe3,0x80,0xdd,0xc5,0x78,0xa5,0x86, +0xd7,0x49,0x41,0x93,0x29,0x4e,0x48,0xca,0xd3,0x4a,0x67,0x9d, +0xe2,0x25,0xdb,0x70,0x10,0xbb,0x27,0xfa,0x68,0x8a,0x56,0x06, +0x78,0xb3,0xc2,0x5b,0x1c,0x46,0x94,0x6f,0xbd,0x84,0xb7,0x0c, +0x48,0x57,0x11,0x37,0xf8,0x99,0xbd,0xba,0xe9,0xc9,0x96,0x77, +0x7e,0xb9,0xe7,0xf8,0x09,0xc7,0x97,0xe6,0xad,0xaa,0xe0,0x04, +0xbd,0xbd,0xc4,0x78,0xe3,0xc2,0x1d,0x63,0x77,0x65,0x39,0xf1, +0x17,0x13,0x5a,0x52,0x1a,0x33,0x39,0x6f,0x70,0x63,0x5d,0xed, +0xe6,0xf8,0xa0,0x61,0x54,0xaa,0x23,0x0f,0x96,0xf1,0x30,0xe4, +0x6c,0xd5,0x97,0x1c,0x04,0x30,0x81,0x07,0x03,0x62,0x42,0xa4, +0x41,0xfb,0x22,0xa3,0x37,0x8e,0x46,0x4d,0x26,0xd5,0x45,0x02, +0xa3,0x98,0xeb,0xc7,0xd3,0x6b,0xe2,0xb5,0x62,0x8b,0x0f,0x95, +0x9e,0xd1,0x14,0x4a,0x99,0xe2,0xa4,0xc2,0xe4,0xbc,0x54,0x6e, +0x08,0xc5,0xb1,0x70,0xd2,0x9c,0xd4,0x98,0x56,0x93,0xb9,0xed, +0x3c,0x3f,0xd9,0x13,0x07,0xf8,0xe3,0xc8,0xb0,0x34,0x6b,0xbe, +0xf6,0x58,0x7d,0x5c,0x7d,0x02,0xe5,0xb8,0xe2,0x99,0x29,0xb3, +0xd8,0xd0,0x99,0x16,0x13,0xa6,0x4c,0xac,0xb0,0xe7,0x9f,0xbd, +0xac,0x78,0x18,0xfb,0x05,0xa5,0xfe,0xb3,0xda,0x95,0x03,0x98, +0xd8,0x23,0x87,0x8e,0xc4,0x48,0x7f,0x46,0xed,0xca,0xb3,0xd3, +0x80,0x0f,0x4f,0x09,0x3b,0x1c,0x1a,0xae,0x11,0x1e,0x29,0x89, +0x7e,0x09,0x0b,0x9b,0x71,0x21,0xa3,0xb4,0x52,0xf6,0x26,0x66, +0xb8,0x1a,0x4d,0xbb,0x03,0xdb,0x3a,0xe0,0x0b,0xb3,0x56,0x55, +0x20,0x5a,0x33,0x42,0x2f,0x9c,0x49,0xf2,0x3a,0x72,0x1f,0x25, +0xb5,0xca,0xd3,0xf9,0x08,0x8b,0xc0,0xc5,0x01,0x32,0x0e,0x23, +0x60,0x1c,0xc9,0x74,0xcc,0x5d,0x97,0x22,0x6f,0x38,0xce,0x87, +0xb4,0x04,0x5c,0x0d,0xae,0xe5,0x94,0x95,0x54,0x5e,0x21,0x0f, +0x07,0x29,0x51,0x6d,0xc1,0x83,0x84,0xbe,0x18,0x83,0x07,0x59, +0xfc,0x4a,0x2e,0x6e,0x13,0x9c,0x89,0x3c,0x03,0xe6,0x90,0x49, +0xe8,0x5f,0x66,0xe2,0x18,0x4a,0x76,0x0f,0x53,0x15,0x5d,0x97, +0x5c,0x93,0x5a,0x99,0xb1,0xad,0x96,0xd7,0xdd,0xa4,0xed,0x87, +0xbd,0xc3,0x32,0xac,0xf9,0x33,0xc7,0xaa,0xe2,0xaa,0xe2,0x39, +0x4c,0x17,0x8f,0xe2,0xd0,0x60,0xc3,0xe7,0xd8,0xe9,0xe8,0x4e, +0x2c,0xb7,0xe7,0xef,0x7d,0x57,0xfc,0xe8,0xd8,0x3d,0xea,0xcd, +0xf4,0x56,0xe5,0x40,0xea,0xcd,0x67,0x87,0x63,0xa4,0x5f,0xa2, +0x76,0x45,0x95,0x21,0xf0,0x51,0x69,0x21,0x9f,0x85,0x46,0x68, +0x44,0xee,0x95,0x44,0xbf,0x80,0xd1,0x8d,0x38,0x9a,0x51,0x9a, +0xaf,0x21,0xf7,0x61,0xfb,0x45,0xdc,0x7e,0x0f,0x82,0xc0,0x46, +0x38,0x80,0x36,0xb0,0x7d,0x19,0x6e,0xb6,0x81,0xcd,0x4b,0x31, +0xd2,0x5a,0x79,0xbe,0x81,0x15,0x46,0xc2,0x6f,0x44,0x7b,0xfa, +0xaf,0x2c,0x8c,0x1f,0xf5,0x46,0x7b,0x0a,0x03,0x93,0x46,0xfd, +0xfa,0xb3,0x36,0x2b,0x9c,0xc5,0xa9,0x24,0xa7,0x23,0xfb,0x51, +0x42,0xab,0x55,0x3a,0x1f,0x69,0x19,0xbc,0x38,0x88,0x3a,0xec, +0x06,0x13,0x48,0xba,0x43,0xd6,0xda,0x64,0xd9,0x85,0x1c,0x3e, +0xac,0x35,0xf8,0xc6,0x2e,0xea,0xb0,0xbf,0x60,0x4a,0xc2,0x4b, +0x76,0x55,0xec,0x2e,0xb0,0x0f,0xe2,0xd3,0x7d,0xd2,0x3d,0x92, +0xb6,0x70,0xca,0xe9,0x31,0x04,0x17,0x33,0xe9,0x27,0x33,0xab, +0x92,0x4e,0xd2,0x0f,0x88,0xf0,0xde,0xe9,0x20,0x9e,0x4d,0xf8, +0xcc,0x1a,0xf6,0x2f,0x46,0x1f,0x1b,0xf0,0xc1,0x11,0x4d,0x74, +0x7a,0x07,0x5c,0xc4,0x80,0xaf,0x20,0x9d,0x19,0xd2,0xa6,0x0c, +0x23,0x20,0x39,0xd3,0x7c,0x26,0xa5,0x99,0x8b,0x43,0xbe,0xed, +0x3b,0xe6,0x58,0xcf,0x7a,0xf7,0x58,0xbd,0x82,0xb3,0xa8,0x79, +0x37,0x3c,0x36,0xf2,0x40,0x14,0xf5,0x2d,0x5c,0xb2,0xef,0x0c, +0x98,0x1d,0x67,0x4e,0xba,0xe4,0xa7,0x9f,0xc8,0xce,0xcb,0xd5, +0xc8,0xf1,0x2c,0xd9,0x5c,0xb1,0xdd,0xd6,0xcf,0x24,0x78,0x45, +0x78,0xba,0x3d,0xff,0x45,0xca,0xdd,0xe3,0x9d,0xa7,0x3a,0xbc, +0x6f,0xfb,0x7e,0x11,0x92,0x75,0x81,0x5f,0x99,0x62,0x9a,0x61, +0x93,0x57,0x5b,0x56,0x5e,0x9d,0xdb,0xc8,0x5d,0xbe,0x80,0xa7, +0x99,0xd4,0xec,0xa4,0x9c,0xf8,0x6c,0xeb,0x34,0xde,0xd7,0xd4, +0x62,0x8d,0xd1,0x06,0x2e,0x03,0xcd,0x1a,0x60,0xf1,0x39,0x5c, +0x2c,0x7e,0xed,0x50,0xdf,0x19,0xf4,0xad,0xd1,0xc6,0x19,0x8c, +0x58,0x9f,0x0d,0xf2,0x6d,0x63,0xbd,0x38,0x95,0xc9,0x3d,0xe2, +0x54,0xb8,0xf1,0x94,0x1f,0xa5,0x63,0x76,0xcc,0x4e,0x97,0x2d, +0x1b,0x37,0x6c,0xe7,0x68,0xd3,0xdb,0x92,0x0b,0xdd,0x97,0xe9, +0xf4,0xc4,0xa5,0x61,0xda,0x2b,0x75,0xa4,0x4d,0xae,0x92,0x2f, +0x60,0x48,0x02,0xe8,0xc0,0x4c,0xcd,0x7b,0xac,0xca,0x5f,0x18, +0x40,0xce,0x63,0x57,0x1d,0x94,0x42,0xb0,0xf0,0x2b,0x06,0xc3, +0x71,0x7b,0xbc,0xec,0x00,0x97,0x6d,0x10,0xed,0x54,0xc9,0x17, +0xf0,0xb7,0x8b,0xac,0x05,0xec,0x26,0xe8,0x55,0x0f,0x5e,0x4c, +0x9b,0x2d,0xa9,0x87,0x1d,0xb6,0x2c,0x96,0xb8,0x12,0x6b,0xf4, +0x6a,0x60,0x21,0x77,0x14,0xec,0xb0,0xc6,0x1d,0xb4,0x3a,0x32, +0x55,0xf9,0x24,0x75,0xde,0xa5,0x95,0xaf,0x97,0x15,0x37,0xf1, +0xb3,0x6f,0x5a,0xde,0xf1,0xbf,0xcd,0xad,0x60,0x7c,0x97,0x59, +0xeb,0x61,0xdf,0xe5,0xc5,0x72,0x1e,0x7a,0xdd,0xb9,0xf2,0x24, +0xe3,0x3b,0x0e,0x64,0x0a,0x02,0x93,0x6c,0x18,0xbc,0xef,0x24, +0x9e,0xdc,0x8d,0xe6,0xd2,0x8b,0x76,0x12,0x98,0x0f,0xce,0x75, +0xe0,0x03,0x0f,0x35,0x2f,0x80,0xed,0x2c,0x16,0x0d,0xc2,0xd1, +0x66,0x27,0x4e,0x95,0xce,0x0c,0xf3,0x09,0x34,0x18,0x3d,0x8d, +0xc9,0x5c,0x2f,0x79,0xce,0x40,0xaf,0xaa,0x2a,0x18,0x95,0xae, +0x95,0x0d,0x33,0x93,0xc0,0x0e,0x0c,0x29,0x63,0x12,0x7c,0xd8, +0xad,0xdd,0xb6,0xc4,0x35,0xdc,0x29,0xc2,0x21,0x92,0x83,0xf3, +0x30,0xa3,0x05,0x67,0x40,0xff,0x5f,0x5b,0x30,0x5d,0xf6,0x23, +0xf6,0x47,0x7d,0x19,0xe8,0x63,0x1b,0x6b,0x1e,0x6e,0x12,0x65, +0xbe,0x57,0xbc,0xe3,0x4e,0x32,0x40,0xab,0xe0,0x55,0x01,0x67, +0xf7,0x9a,0x64,0x35,0xa5,0xb6,0x27,0x35,0xdb,0xa5,0xf0,0xe1, +0x66,0xa1,0xf2,0x5d,0x76,0x1c,0xc6,0xc2,0x58,0x92,0xaf,0xc8, +0x5f,0x92,0x62,0x79,0x91,0x0e,0xaa,0xf6,0xed,0x8f,0x7d,0x1b, +0x69,0x13,0xc7,0xab,0xfd,0x6a,0x5d,0xf5,0x62,0x59,0x49,0x23, +0x3f,0xf7,0x96,0x55,0x97,0xda,0x2f,0xff,0x65,0xb6,0x7a,0xda, +0x86,0xd4,0xad,0x5f,0xba,0x2e,0x3d,0x4d,0x7b,0xce,0xc1,0xd1, +0xc3,0xc4,0x02,0x4a,0x59,0xc1,0x32,0x1f,0x67,0xbc,0x46,0x07, +0x69,0x53,0xad,0x64,0x26,0x58,0x07,0x80,0x54,0xe9,0xa7,0x29, +0x68,0x75,0xff,0x44,0xa0,0x2f,0x18,0x56,0xc1,0xd2,0xc3,0x4a, +0x62,0x72,0x98,0x3f,0x28,0xf4,0x76,0xc7,0xb9,0xda,0xb8,0x80, +0x3b,0x06,0xbd,0x89,0x47,0x84,0x6b,0xe4,0x06,0xb5,0xf9,0xe3, +0x5b,0xc4,0xed,0xdc,0x7f,0x6c,0xc6,0x63,0xf2,0x57,0x38,0x00, +0xe7,0xcb,0xa8,0x6c,0x6d,0x63,0x2d,0x23,0xcc,0x23,0x65,0x7b, +0x93,0xa8,0xf9,0x83,0x32,0x40,0xa3,0xe0,0xdb,0x7c,0xce,0xe5, +0x0d,0xc9,0x6c,0x4e,0x69,0x4f,0x6c,0x76,0x48,0xe6,0x23,0xa8, +0xf9,0xbb,0x6d,0x39,0xdc,0x4f,0x5b,0xfc,0x84,0x9c,0x9a,0x6f, +0x51,0x9f,0xc1,0x87,0xb6,0xf9,0x3c,0xf6,0x6b,0xa2,0xe6,0xff, +0xa6,0xba,0x4b,0xf4,0x96,0x4d,0x97,0xa3,0x54,0x56,0x20,0xa3, +0x04,0xf9,0xd2,0xaf,0x97,0xef,0x3d,0xe0,0x94,0xcd,0xe2,0x83, +0xf3,0xbd,0xee,0x4f,0xba,0x8c,0x7d,0x1a,0x3c,0x9d,0x78,0xe0, +0xcc,0x7f,0x30,0xf9,0x65,0x19,0x27,0x6c,0x80,0x21,0xc4,0x7c, +0x0a,0x4a,0x16,0x61,0xfc,0x82,0x7c,0x0b,0x1e,0x12,0x9f,0x03, +0x79,0x7a,0x0e,0x24,0x54,0x4d,0xd4,0xa0,0x04,0x3e,0xd5,0x85, +0xcc,0x99,0xf9,0xad,0x3c,0x26,0x3e,0xc1,0x91,0x0f,0x2d,0xde, +0x70,0xca,0x81,0x82,0x27,0x69,0x11,0x06,0xd3,0xa1,0x19,0xd0, +0x24,0x44,0x2b,0xc0,0x13,0x7b,0xe1,0xbf,0x64,0x54,0x1d,0x46, +0x08,0x3a,0x96,0xaa,0xff,0x6a,0x15,0xe6,0x40,0x04,0x8b,0x4f, +0xed,0xc8,0x69,0x9b,0x53,0xf2,0x42,0x59,0x73,0x31,0xef,0xd3, +0xe8,0x7a,0xc5,0xbb,0x9a,0x53,0x3a,0xa2,0x9c,0x9c,0xae,0xa9, +0xbc,0x7e,0xa2,0xd1,0xb2,0x80,0xf7,0xb7,0x71,0x37,0xf6,0x74, +0xa2,0xa3,0x7d,0x05,0xb5,0xd7,0x04,0x65,0x38,0xd6,0x9c,0x0e, +0xa3,0xbd,0x58,0x6f,0x8c,0x4b,0x71,0x02,0x6a,0x57,0xdb,0xf2, +0xb0,0x00,0xe6,0x5e,0x03,0x9b,0x38,0x68,0xe5,0x60,0x39,0x83, +0xa1,0x7b,0x71,0x61,0x88,0xb6,0x74,0x7d,0x64,0x48,0xb0,0xe9, +0x68,0xec,0xc3,0x64,0x98,0x4a,0xa0,0x37,0xf3,0xb4,0xb8,0xe2, +0x69,0x12,0x85,0xfe,0x81,0xb1,0x94,0xb1,0xb4,0x69,0x62,0x28, +0x43,0x0d,0x98,0x4e,0x52,0xe7,0x5e,0x59,0xf9,0xbd,0x58,0x98, +0x33,0x6f,0x9a,0xdd,0xf1,0xeb,0xe2,0x56,0x32,0xbe,0x4b,0xe5, +0x7a,0xc8,0xaa,0x0b,0xb3,0xdf,0x9d,0xeb,0x4f,0x32,0x5e,0x70, +0x60,0xd8,0x6d,0x4d,0x9c,0xc2,0xec,0xc2,0x6d,0x68,0x2a,0x2e, +0xc0,0xdc,0x16,0x9c,0x0b,0x03,0xa1,0x57,0x0b,0xe6,0xc9,0xde, +0xe2,0x40,0x34,0x92,0x51,0x26,0xda,0xc1,0x9a,0x46,0xac,0x8f, +0x34,0x51,0x97,0xd2,0xa7,0x19,0x30,0xae,0xe0,0xa7,0x22,0xce, +0xfc,0x25,0xc9,0x6a,0x4e,0x6b,0x4f,0x6e,0xb6,0x4b,0xe5,0xc3, +0x4c,0x43,0x14,0xc1,0x34,0x17,0x29,0xa0,0x4d,0xf2,0xe5,0x05, +0x4b,0x52,0x2d,0x2e,0x66,0xf1,0x21,0x6d,0xdb,0xfe,0x2a,0xa5, +0xa4,0xc5,0xb5,0xc6,0x0f,0x97,0x97,0x36,0xf2,0x06,0xd7,0x9c, +0xae,0xef,0xbc,0xce,0x19,0xd1,0x52,0xb2,0xd7,0xd3,0x11,0x4b, +0xe9,0xe7,0x3b,0xed,0x4f,0xd3,0x9f,0x71,0xaa,0x8d,0xdd,0xfa, +0xc4,0x27,0xc3,0x27,0xcb,0x27,0x9b,0x4b,0x13,0xd5,0xef,0x0a, +0x98,0xa3,0x09,0x13,0x84,0x63,0x96,0x60,0x6b,0xc9,0x2e,0x89, +0x31,0x8a,0x5a,0x2b,0x75,0x6d,0xf6,0x68,0xdd,0xd4,0x61,0xb3, +0x89,0xaf,0x59,0x56,0x6f,0xd8,0xb2,0x6a,0x3b,0x7e,0x6c,0xa5, +0x3d,0x73,0xdc,0xc1,0x2a,0xde,0x2d,0xdc,0x39,0xc2,0x31,0x42, +0xb4,0x5f,0xa7,0x19,0x75,0x60,0xc0,0x0f,0xcd,0x78,0x58,0xfe, +0x82,0x96,0x92,0xfa,0x14,0xa8,0x0e,0x56,0x16,0x61,0x21,0x96, +0x92,0x19,0x0f,0x92,0x74,0x18,0x7e,0xe2,0xd9,0x89,0xf0,0xb0, +0xb0,0xb0,0xd0,0xb0,0x2a,0x2b,0x1e,0x86,0xc1,0xe0,0x2e,0x18, +0x5a,0x01,0x93,0xaf,0x18,0xdd,0x58,0x7b,0xcb,0xe2,0x60,0xcc, +0x67,0xfb,0x0e,0xee,0xe3,0x66,0x47,0xf8,0xed,0x34,0x1c,0x8d, +0x7d,0x99,0x4c,0x53,0xc9,0x3b,0xe6,0xf5,0x99,0xf2,0xdf,0xd2, +0xb5,0x32,0x43,0xb2,0x42,0xb3,0x42,0x39,0xac,0x87,0x5f,0x49, +0xda,0xe3,0xd8,0x17,0x6f,0x35,0x5b,0x40,0x3e,0x93,0xc5,0xf1, +0x7b,0x71,0x6e,0x28,0x8e,0x96,0xae,0x6e,0x5d,0x7b,0xd5,0xbc, +0x8b,0xc3,0x0a,0x3c,0x49,0x32,0xd4,0x65,0x6a,0x2f,0x96,0x69, +0xb8,0x7c,0x17,0x0d,0x4d,0xb4,0xba,0x4c,0x4f,0x88,0x65,0x9a, +0xce,0x87,0xb6,0xef,0x78,0xec,0x2b,0x96,0x69,0xaa,0xaa,0x9c, +0xa4,0xe8,0x36,0xaf,0x7e,0x66,0x50,0xd2,0xc0,0x2f,0xb8,0x69, +0x73,0xdb,0xff,0x96,0xd8,0x65,0x4b,0x6d,0xf5,0xc6,0x88,0xa1, +0x79,0x7b,0xa7,0xf3,0x49,0xda,0x77,0x9c,0x72,0x9b,0xa0,0x22, +0xbf,0xc1,0x98,0xab,0xb0,0x22,0x17,0x42,0xb8,0x3a,0x21,0xc1, +0x42,0x29,0x63,0x03,0xd1,0x45,0x81,0xb3,0xa6,0xe3,0x47,0x0b, +0x60,0xa0,0x02,0x74,0x36,0x83,0xb1,0x79,0x10,0x5f,0x86,0x8a, +0x0e,0x9c,0xf9,0x02,0x47,0x1a,0x1b,0xea,0xad,0x9f,0x66,0x51, +0x66,0xc2,0xbf,0xec,0x78,0x78,0xfd,0xfa,0xfd,0x2b,0x06,0x0f, +0xd6,0xbe,0x30,0x2f,0x6d,0xe7,0x67,0xb5,0x1a,0x74,0x9a,0xde, +0xe1,0x50,0x5b,0xb9,0x8e,0x9c,0x75,0x6a,0x59,0x7e,0x66,0x7d, +0x55,0x15,0xef,0x71,0x45,0xde,0xe5,0x5c,0xc3,0xa1,0x95,0x70, +0x9d,0x38,0x84,0xda,0x84,0x59,0xd1,0x50,0x5e,0x84,0x89,0x2d, +0x38,0x11,0x06,0xfe,0xdc,0x8c,0xf1,0xf2,0xd7,0xb4,0x12,0x16, +0xc8,0x60,0x01,0x76,0xb2,0x16,0x11,0xe6,0x51,0x96,0xea,0xae, +0xe4,0x33,0x61,0x5c,0xe1,0xf7,0x27,0xb9,0x15,0xdf,0xd1,0xae, +0x4c,0x6d,0x4f,0x6c,0x51,0xbb,0x1b,0x26,0x13,0xdd,0x3d,0xf8, +0x47,0x57,0x9a,0xd7,0x67,0x8a,0x5d,0xf9,0x44,0x74,0xf7,0xf7, +0xa1,0x07,0x09,0x1e,0x61,0x4c,0x76,0xa7,0x34,0x6a,0x51,0x07, +0x80,0x2d,0x91,0x08,0x9f,0xb6,0x29,0xa7,0xb3,0xf0,0x49,0xc5, +0xc1,0x69,0x31,0x73,0xf6,0x1a,0x68,0x6c,0xda,0x1f,0x16,0xb5, +0x71,0xb4,0x8b,0xb8,0x61,0xc4,0x69,0xe6,0x4a,0xde,0x89,0x2b, +0x71,0x5a,0x89,0x2f,0x8e,0xbc,0x38,0x44,0xf9,0xa8,0x15,0xd5, +0xf8,0x5b,0x2c,0x70,0x0f,0x8b,0xec,0x66,0x09,0x58,0x9b,0x53, +0xd1,0x32,0xcb,0x37,0x45,0xfe,0x20,0x57,0x22,0xac,0x61,0xe7, +0x96,0x6c,0x7d,0x4e,0x29,0xa3,0xb8,0x4f,0x48,0xad,0x16,0x2c, +0x66,0x2d,0x33,0x25,0xdd,0x83,0x95,0x2f,0x48,0xd2,0x92,0x9a, +0xf5,0x5f,0x19,0x96,0x36,0xf0,0xcb,0xaf,0x3a,0x5f,0xdf,0x79, +0x8d,0x06,0xd7,0x6f,0x99,0x9d,0xde,0xd8,0xe5,0xc5,0x0a,0xfe, +0x97,0x3b,0x97,0x9e,0xa4,0x3f,0xe7,0x0a,0x05,0x63,0xf2,0x17, +0x00,0xc5,0xfe,0x05,0x40,0xed,0x8c,0x25,0xad,0x1a,0xcb,0x68, +0xd1,0xd5,0x8f,0x33,0x40,0xbb,0xe8,0x4d,0xd1,0x81,0x56,0xde, +0x31,0xd4,0x56,0x0c,0xcf,0xc3,0x5b,0xef,0x91,0xa8,0xc7,0x67, +0x75,0x8a,0xf7,0x83,0x0e,0x05,0xd2,0x13,0xff,0x8e,0x44,0x2a, +0x89,0x4a,0x9f,0x64,0x9c,0x4f,0xb9,0x90,0x74,0xc1,0x24,0x83, +0xf7,0xc1,0x91,0x76,0x38,0x7c,0xc5,0x84,0x7a,0x67,0xfe,0x74, +0x43,0x71,0x7b,0x7e,0x27,0x07,0x49,0x16,0x0c,0x8e,0xda,0x87, +0x76,0x41,0x38,0x58,0x6a,0x18,0x11,0xe8,0xb5,0x7e,0x34,0x6a, +0x31,0x19,0x26,0xe2,0x77,0x1e,0x7e,0x3a,0xd7,0x08,0x4c,0xaa, +0x56,0x26,0x8c,0x8c,0xa5,0xc0,0x4f,0x34,0x61,0x20,0xdb,0xfd, +0xc9,0x5b,0x92,0xb2,0xa4,0x6d,0xfd,0xf3,0xd5,0x14,0x96,0xe7, +0x77,0x2a,0xae,0xf9,0x5f,0x51,0x77,0xb5,0xb9,0x1e,0x0e,0x50, +0x77,0x35,0x77,0xe7,0x96,0xd8,0xd5,0x45,0xe2,0x9d,0x83,0xc5, +0xad,0xb8,0x18,0x06,0x40,0xbf,0x16,0x2c,0x91,0x41,0x2f,0xea, +0xd7,0x3a,0x4b,0xaa,0x86,0x5a,0x18,0xe3,0xf0,0x75,0x51,0xc6, +0xd1,0x49,0x26,0x3c,0x4c,0xc9,0x80,0x59,0x45,0xd0,0xa7,0xf8, +0x40,0x1b,0x6f,0x15,0x62,0x1e,0x6a,0x1a,0xce,0x41,0xac,0x72, +0x12,0x31,0x85,0x5d,0x97,0xd8,0x68,0x9c,0x42,0x16,0x5a,0x69, +0xdb,0x4e,0xda,0x9c,0x6b,0xc6,0xbf,0x2e,0x81,0xbe,0x8d,0x0f, +0x1b,0x39,0x61,0x06,0x8e,0x24,0x39,0x4d,0xb4,0xef,0x9b,0xc4, +0xbe,0x37,0xdf,0xa3,0x08,0xa2,0x9e,0x67,0xc3,0x18,0x52,0xa0, +0xa0,0x7d,0x2f,0x6b,0xc8,0xe4,0xf7,0xd0,0xbe,0xdf,0xd1,0xc0, +0x0d,0x51,0xde,0x54,0xc6,0x13,0x58,0xc7,0xc2,0xc4,0x74,0x18, +0x5a,0xf4,0xfc,0xcc,0xe6,0x7a,0x7e,0x26,0x25,0x83,0xdb,0x70, +0x4d,0x10,0x87,0x09,0x2c,0x1e,0x09,0xc2,0xb1,0xeb,0xc4,0xb3, +0x67,0x9d,0xba,0x40,0x9a,0x05,0xf3,0x0e,0x43,0x98,0x06,0xac, +0x11,0xf2,0x3b,0x95,0xf9,0xa0,0xdd,0xc2,0x74,0x1b,0x40,0x01, +0x49,0x59,0xd8,0xb2,0xe6,0x99,0x11,0xed,0x0d,0xdd,0x6b,0x56, +0xb7,0x03,0xae,0xff,0x09,0x60,0x86,0xef,0x01,0xec,0xb1,0xda, +0xd5,0xf5,0xa4,0x07,0xb6,0x06,0xfc,0xd6,0x82,0xc7,0x29,0x6a, +0x0d,0xe8,0x41,0xad,0x56,0xe6,0x2f,0xd4,0xfa,0x38,0x9d,0x0e, +0xc0,0xd7,0x05,0xfb,0x5b,0x79,0xb7,0x88,0x0d,0x11,0x4e,0x91, +0xdc,0x37,0x37,0xe9,0x24,0x4c,0x6b,0xeb,0x81,0x2f,0xb3,0x3f, +0xe0,0x6b,0xac,0x08,0x5f,0x7a,0xa9,0x96,0x17,0x33,0x7b,0xe0, +0x8b,0xba,0xa1,0x92,0xc2,0x76,0x72,0x2e,0x2f,0xf7,0x9c,0x96, +0xf2,0xbc,0x89,0xd0,0x80,0xfd,0x59,0x0a,0x09,0x78,0x49,0x79, +0x87,0xa4,0xcc,0x6b,0x5c,0xfd,0x5c,0x9f,0xe6,0x61,0xc1,0x2d, +0x9b,0xae,0x80,0x2e,0x75,0xe3,0x3a,0xea,0x4f,0x10,0x6b,0xeb, +0x87,0xae,0x56,0x71,0x3c,0xaa,0x3c,0x05,0x4d,0xb2,0x03,0x7a, +0x39,0xc0,0x70,0xab,0x1f,0x15,0x7e,0xfc,0xc5,0x49,0x35,0xf8, +0x51,0x11,0xf6,0xe1,0x04,0xe3,0x9d,0xe4,0xf2,0x0f,0xe5,0xf0, +0x69,0x1a,0x0c,0x37,0x4b,0xe4,0xf7,0xe0,0xa0,0xad,0x38,0xc8, +0x74,0x2a,0x17,0x85,0xad,0x64,0x43,0x98,0x7d,0x98,0x2d,0x6d, +0xc0,0x06,0x90,0x36,0xa3,0x14,0x06,0xbe,0x6e,0xc6,0x18,0xf9, +0x33,0xda,0x80,0xd3,0xe5,0x30,0x1d,0x2f,0xb3,0xf2,0x08,0x79, +0xa4,0x42,0x8d,0x65,0xc3,0x32,0xe1,0xd3,0xc2,0xef,0x8a,0xb8, +0x3c,0x1d,0x02,0x51,0x77,0x60,0x2a,0x8c,0x7c,0x0c,0xe6,0x8a, +0x7c,0xde,0x00,0x97,0xa3,0x16,0x55,0xa1,0xbb,0x56,0x73,0xc6, +0xa0,0xa5,0xc6,0xa2,0x84,0x16,0x71,0x64,0x9a,0x86,0xcb,0xc4, +0x91,0x19,0x46,0x49,0xe2,0x09,0x59,0xde,0x62,0xda,0x9c,0x19, +0x22,0x16,0x3d,0xf1,0x6b,0x16,0x0f,0x6d,0xa4,0x58,0x94,0x3a, +0xf7,0x2a,0x1d,0x18,0x25,0x4d,0xfc,0xf4,0xbf,0x06,0x86,0x4c, +0x0f,0x39,0x75,0x69,0x49,0xee,0xdc,0x10,0x4b,0x4b,0x65,0xd4, +0xdd,0x46,0xb0,0xb7,0x7a,0x8d,0x2d,0x44,0x3c,0xbb,0x4c,0x4b, +0x39,0x58,0xd0,0xc2,0xcf,0x19,0x74,0x0f,0xc4,0x29,0x33,0x50, +0x4b,0x7a,0x7e,0xc3,0x77,0xa0,0x5d,0x2c,0x66,0xd4,0x58,0x03, +0xa4,0x4c,0x06,0x9a,0x5e,0xc6,0x65,0x30,0x0c,0x47,0x72,0xc6, +0xaa,0x5a,0x42,0x19,0xf3,0x49,0x48,0xa7,0xb0,0xd9,0xad,0xf9, +0x27,0x83,0xb9,0x00,0xf3,0x5a,0x70,0x1e,0x9d,0x3b,0xbd,0x5b, +0xb0,0x40,0xf6,0x8e,0x3a,0xbb,0x52,0x06,0x2b,0x29,0x70,0x9b, +0x44,0x18,0x47,0x9a,0x44,0x27,0xd2,0x52,0xd5,0xc8,0x80,0xb1, +0xf9,0x3f,0x14,0x72,0xf6,0xaf,0x49,0xf6,0x7f,0x9f,0x3b,0x69, +0x6a,0x0a,0x23,0xce,0x9d,0x86,0x2c,0x75,0xfd,0xa9,0xe7,0x4e, +0xaa,0x9a,0xc2,0xb4,0xaf,0x7c,0x25,0x3a,0x34,0xe7,0xa6,0xac, +0x87,0x9a,0xf9,0x2d,0xb3,0xd1,0xc3,0xde,0x62,0x92,0xde,0x75, +0x5d,0x7e,0x4a,0x01,0x40,0x25,0x43,0x25,0x31,0x64,0xe2,0xe1, +0xa3,0x78,0x18,0x1e,0x0b,0x03,0x38,0xc1,0xc9,0x02,0xb4,0x98, +0xbd,0x13,0x23,0xc6,0x46,0x8c,0xe5,0xa6,0x99,0x7f,0xcb,0x84, +0xe1,0xe0,0x10,0x1c,0x1c,0x8a,0x03,0xb8,0x71,0xe6,0xca,0x8a, +0xf6,0x89,0x4c,0x02,0x70,0x09,0x30,0x84,0xca,0x23,0xee,0x01, +0x83,0x9c,0x92,0x25,0x31,0xf3,0xa3,0xb1,0x77,0x14,0xf6,0xe7, +0xd0,0x91,0x49,0x7c,0x97,0xf0,0x2e,0xe1,0x47,0x0e,0x7d,0xbb, +0xc7,0xd3,0xb9,0x6a,0x1b,0x6e,0x43,0x73,0x59,0x07,0x53,0x5b, +0x70,0x2a,0x0c,0xf8,0xa5,0x19,0x93,0xe5,0xdf,0xd3,0x02,0x5d, +0x2c,0x83,0xc5,0xd8,0x4e,0xc1,0xd4,0x2c,0xd2,0x5c,0x8d,0x30, +0x3c,0x45,0x98,0xc2,0xef,0x8b,0x38,0x98,0x14,0x4c,0x52,0x60, +0x40,0x0a,0x0c,0x4e,0x86,0xc1,0x1c,0x95,0xdb,0x51,0x38,0x38, +0x02,0x47,0x44,0xa2,0x84,0x13,0xf4,0xa1,0xaf,0x88,0xb4,0x6d, +0x14,0x75,0x52,0xd4,0xfc,0x47,0xa4,0x6f,0x47,0xd4,0x33,0x57, +0xe4,0x3f,0x62,0xd1,0xb6,0xfb,0xf4,0xf8,0x9e,0xae,0xf6,0xbd, +0x73,0xe5,0x1b,0x71,0xfa,0xcf,0xba,0x69,0xf1,0x07,0x2d,0xb5, +0xd2,0xc3,0x7e,0xea,0x64,0xf6,0xbe,0x73,0x55,0xa4,0xa5,0xca, +0xe2,0x6e,0x86,0x5c,0xff,0xf9,0x3c,0x0c,0xcc,0x07,0x29,0x77, +0x5e,0xe8,0x07,0xab,0x95,0x5a,0x6d,0x82,0x1d,0x56,0xb0,0x78, +0x2c,0x08,0x17,0x9a,0xa2,0xb6,0xb4,0xc1,0xeb,0x3a,0xcc,0xce, +0x82,0x05,0x87,0x20,0x53,0x03,0x5a,0x98,0xa0,0xb1,0x9e,0x93, +0x15,0x73,0x9c,0xef,0x7b,0x3f,0xd9,0xfe,0x5c,0x1e,0xc0,0x97, +0x68,0x9f,0x99,0xd1,0xa8,0x6b,0xb5,0x72,0xdd,0x7a,0x3d,0xab, +0x12,0x39,0xff,0x45,0xd3,0xf5,0xce,0xa6,0xdb,0x75,0x6b,0x5b, +0x4d,0xba,0xcc,0x4f,0x35,0xf0,0x46,0x4d,0x96,0x9d,0x8e,0x37, +0x39,0xe1,0x30,0x98,0x12,0x98,0xd9,0x82,0x33,0x61,0x00,0x65, +0xa9,0x99,0xb2,0x9f,0x68,0x0c,0x96,0xc9,0x60,0x19,0x6d,0x52, +0x33,0xca,0x52,0xcd,0xd4,0x03,0x65,0x54,0x06,0x8c,0x29,0x78, +0x23,0x36,0xa9,0x4b,0x4f,0x5d,0x3c,0xbd,0xd9,0x43,0x57,0x9b, +0xec,0x53,0xd5,0x74,0x35,0x98,0xfa,0x9b,0xf0,0x3e,0xd7,0x29, +0x22,0xc7,0x08,0x7d,0x9f,0xeb,0xdf,0xfb,0x8f,0xda,0x58,0xbb, +0xb5,0xc5,0xff,0x66,0xc7,0x8b,0x73,0xd0,0xb7,0x0c,0x34,0xe4, +0xd9,0x14,0x6b,0xfb,0x78,0xcf,0x70,0xd2,0xf3,0x7f,0x1d,0x0a, +0x03,0x0e,0x88,0x5f,0xfe,0xdc,0xd4,0x8c,0x9b,0xc0,0xc0,0x1c, +0x0d,0xd0,0x59,0x48,0x63,0x02,0xa3,0x03,0xa2,0x03,0xf7,0x65, +0x98,0xf0,0xcf,0x4f,0x7c,0x5f,0x7e,0xbd,0x2c,0xac,0x91,0xf7, +0x08,0xb6,0x0b,0xb6,0xde,0xc5,0x29,0x2d,0x61,0x3c,0x7b,0x04, +0xf5,0x33,0x51,0xe7,0x14,0xb2,0x16,0x8b,0x0c,0xd7,0xcd,0x90, +0x97,0xd9,0xf0,0x4f,0x2e,0xde,0xbc,0xd4,0x7a,0xf7,0xb8,0x79, +0xa1,0x4d,0xa9,0xeb,0x69,0x45,0x43,0x66,0x5c,0x63,0x01,0x78, +0xf2,0x56,0xf9,0x92,0xee,0xc9,0xca,0xfb,0x24,0x65,0x7e,0xd3, +0xea,0x67,0x4b,0x29,0x16,0x2c,0xbc,0x65,0x7d,0x3b,0x40,0x5d, +0x67,0x4b,0xff,0xe4,0x37,0x1d,0x6a,0x2c,0x30,0xd0,0x27,0x5b, +0x2b,0xdc,0xaa,0x5c,0x8b,0xdd,0x3d,0xf9,0x8a,0x6d,0x67,0xdc, +0x4a,0xdc,0x39,0x01,0xf1,0x11,0x01,0x9d,0x16,0x4a,0x59,0x06, +0x52,0xca,0x72,0x84,0x52,0x96,0x81,0x38,0x57,0x46,0x29,0xcb, +0x15,0xe6,0x2f,0xca,0x32,0x3c,0x83,0xb6,0xf9,0x8b,0xc2,0x03, +0x2d,0x34,0x2c,0x8e,0xe1,0xf6,0x11,0xdc,0x57,0xb7,0x49,0x46, +0x4b,0xea,0x1f,0x3d,0x1d,0x26,0xdf,0x6d,0xc3,0xe1,0x3e,0x75, +0x4f,0xe7,0x2f,0x4e,0x16,0x7b,0x3a,0xac,0xc3,0xe7,0x89,0x7a, +0xf8,0x08,0x2a,0x03,0x02,0xb3,0x4c,0x71,0x16,0x66,0xc2,0x2c, +0x33,0x9c,0xb5,0xd4,0x8a,0x5d,0xdb,0xe9,0x71,0x25,0xa8,0xf3, +0xfd,0x20,0xfc,0xd3,0x40,0x4a,0xc0,0xe2,0x98,0x44,0xfd,0x4a, +0xd3,0xfb,0x2b,0x4a,0xea,0xf9,0x3b,0xdd,0x8a,0x8e,0xcb,0x90, +0xb9,0xfe,0x92,0x4a,0xf1,0x6d,0x3b,0x23,0x50,0x06,0x45,0x80, +0x66,0x1f,0x0f,0xb1,0x42,0xe9,0x96,0xf7,0x06,0x0f,0xf8,0x5e, +0x34,0xf8,0xa5,0xc8,0xb1,0x44,0x83,0xdb,0x19,0x59,0xb8,0x45, +0x94,0x6c,0x6f,0xa2,0x99,0x5a,0x6d,0x8c,0x2d,0x7a,0x55,0x44, +0x0d,0xa6,0xbc,0x32,0x4c,0xac,0xff,0x3c,0xc8,0x25,0xf4,0xfd, +0xc5,0x98,0xc9,0xa0,0xe5,0x17,0x14,0x91,0x52,0xff,0x1a,0x9d, +0x22,0x22,0xed,0xfb,0x8b,0x1d,0xfd,0x8d,0xc4,0x27,0x52,0x44, +0x4a,0xd6,0x6d,0x5a,0xf3,0xad,0xa8,0x41,0x16,0xde,0xb4,0xbd, +0x1d,0x70,0xf3,0xbd,0xdd,0xef,0x35,0x48,0x87,0xd8,0xbf,0xf0, +0x50,0xb8,0x43,0xe0,0x29,0x7c,0x8b,0xe2,0xf1,0xbb,0xfd,0xda, +0x85,0x64,0xf3,0xa7,0xdd,0x8e,0xd8,0xcb,0x5c,0x59,0xd5,0x2e, +0x0c,0x64,0x70,0xfe,0x6d,0x11,0x52,0xc3,0xed,0xd4,0x6d,0x38, +0xae,0x05,0xc7,0xa9,0xe9,0xe1,0x51,0xb5,0xe9,0xf3,0x64,0x30, +0x8f,0xb6,0xa1,0xe5,0x9f,0xa6,0x8f,0xa4,0x42,0xa9,0xf0,0x65, +0x11,0xa7,0x5c,0x01,0x51,0x04,0xf3,0xa9,0x36,0xcb,0x17,0x37, +0x98,0xed,0xf3,0xef,0x26,0x8b,0xd3,0x3e,0xe6,0x4f,0x93,0x2f, +0xf6,0x98,0xac,0x66,0x38,0x16,0x32,0xb2,0xed,0x17,0x17,0x18, +0xee,0xf6,0xdc,0xda,0x8f,0x3f,0x6e,0x75,0x7c,0x5d,0xce,0xba, +0x05,0xa1,0x73,0xc3,0x66,0x47,0x3c,0x87,0xa1,0xd0,0x1b,0x64, +0x5f,0xc1,0x2a,0x79,0x11,0xef,0x3e,0x43,0xa1,0x23,0x9b,0xba, +0xad,0x66,0xcb,0xb9,0x2d,0x55,0x4d,0x5f,0xd7,0x3c,0x2b,0x79, +0xcc,0x41,0x48,0x0b,0xee,0x04,0xa9,0x29,0x4a,0x71,0x9b,0x0c, +0xdc,0x99,0xed,0x86,0x9e,0xcb,0xdd,0x8d,0x77,0xe5,0xee,0xca, +0xde,0x95,0xed,0xe2,0xca,0x5f,0x31,0xbc,0xac,0x7b,0x69,0xb2, +0xcb,0xea,0x0d,0xeb,0xdd,0x6d,0xb1,0x77,0x24,0x1f,0x67,0x0e, +0xf3,0xd2,0x60,0x4e,0x36,0x8c,0xcb,0xd3,0x88,0xdf,0x9e,0xe0, +0x13,0xb7,0x83,0xeb,0x1e,0xa5,0xfa,0x85,0x0e,0xcc,0xa6,0x35, +0xdf,0x18,0x52,0x9e,0xbd,0xf0,0x9a,0xcd,0xad,0x80,0x1b,0xea, +0x70,0xfd,0x9b,0x14,0x4d,0xa7,0x52,0xd4,0xac,0xdb,0x94,0xd8, +0x85,0x5a,0x85,0xc9,0xc2,0xc5,0x90,0x4c,0x6f,0xc1,0xe9,0xd0, +0xff,0x6d,0x0b,0xa6,0xc9,0x7e,0xa0,0xda,0x51,0x4f,0x06,0x7a, +0x34,0x24,0xe6,0x11,0xa6,0x14,0x99,0xc4,0xd1,0x49,0x65,0xc5, +0xc4,0xa2,0x9f,0x4f,0x72,0x06,0xcf,0x29,0xe1,0x4f,0x6d,0x53, +0x6b,0xc7,0x88,0xf7,0xcd,0xf8,0x87,0x76,0x4c,0xfd,0xbb,0x76, +0x54,0x3e,0x55,0xd9,0x93,0x94,0xca,0xa4,0xca,0xf8,0x4a,0xb3, +0x64,0xde,0x0f,0x07,0xdb,0xe2,0xa0,0x55,0x53,0xcf,0x59,0xf3, +0xa9,0x59,0x29,0x39,0xc9,0x39,0x9c,0x60,0xd4,0xfe,0x00,0xec, +0xa1,0x1b,0x63,0xd9,0xe3,0x55,0x39,0xd5,0x99,0x35,0x54,0x02, +0x2e,0xa2,0x24,0x28,0x1a,0x1d,0x76,0xe3,0x20,0xa9,0x7e,0x78, +0x90,0xfb,0xda,0xd1,0x38,0x48,0x2d,0x6d,0x24,0xcc,0xcf,0x27, +0x9b,0x61,0x40,0x9a,0x56,0xba,0xf8,0x94,0xb3,0x1b,0x8c,0xd2, +0x04,0x29,0xdb,0x3d,0xe9,0x2e,0x49,0x5e,0x56,0x67,0xf6,0x68, +0x0d,0x65,0x06,0xcb,0x2e,0x39,0x76,0x06,0xf6,0xd4,0xb3,0x7c, +0x09,0xf6,0x53,0x33,0x83,0x3e,0x5d,0xd7,0x9e,0x52,0x47,0xd5, +0xcc,0x60,0x76,0x0b,0xce,0x86,0x01,0xef,0x5a,0x30,0x4b,0xf6, +0x33,0xcd,0xf8,0x72,0x19,0x2c,0x17,0x99,0x01,0x05,0x1d,0x53, +0x35,0xe8,0x68,0x67,0xc0,0xe4,0xa2,0x5f,0x4f,0x52,0xd0,0xb1, +0x0d,0x95,0x87,0x59,0x86,0x73,0xca,0x39,0xca,0xb9,0x04,0x3f, +0xc3,0x31,0xf0,0x19,0x8b,0x66,0xf8,0xbd,0xc8,0x13,0x28,0x04, +0xd9,0xfd,0x05,0x41,0x89,0xef,0x79,0x42,0x4a,0x0f,0x4f,0xd8, +0xde,0xc3,0x13,0xdc,0x55,0x9f,0x13,0x53,0xfa,0x1b,0x9c,0xd1, +0xb1,0x0d,0x74,0x40,0x85,0x3a,0xed,0xe0,0x88,0x9e,0xb4,0x7c, +0x7e,0x21,0x14,0x78,0x97,0x60,0x1f,0xb5,0x6d,0xbd,0xba,0xae, +0x7e,0x4d,0xab,0x36,0x8e,0x49,0xd6,0x6f,0x34,0xfb,0x7a,0x75, +0x71,0x23,0xbf,0xe4,0x92,0xed,0xe5,0xc0,0xcb,0x5c,0xb8,0xb0, +0x95,0xfc,0x47,0x21,0xdf,0xce,0x98,0xfd,0x3d,0x19,0x93,0x68, +0x32,0x28,0x11,0xb5,0x0b,0x55,0xa8,0x13,0xa8,0x72,0x24,0xb6, +0xe1,0x49,0xf5,0xe2,0x61,0xe4,0xf0,0x51,0x07,0x30,0x5f,0xdc, +0xfd,0xdc,0xbd,0x9a,0x37,0x5e,0x33,0xde,0x10,0xfb,0xd8,0x70, +0x10,0x6e,0x2e,0x6c,0x67,0x75,0x0b,0x7c,0xbe,0x94,0x82,0x0f, +0x53,0x93,0x93,0x4d,0xd9,0xf1,0x52,0xd6,0x32,0x4b,0x82,0x36, +0xac,0xb0,0x1b,0xb8,0xff,0x61,0x39,0xa0,0x67,0x9e,0xf4,0xa4, +0xf4,0x77,0x02,0xc9,0xe4,0xa0,0xcf,0xfe,0x6d,0xfb,0x76,0x71, +0xbb,0xf7,0xed,0x8d,0x0e,0x1a,0x6d,0xc9,0xa4,0xda,0x4a,0x2e, +0x32,0xe7,0xb2,0xb3,0x0b,0x13,0xb4,0xe2,0xf3,0x63,0xcb,0xbe, +0xd5,0xc4,0xcf,0x7e,0xa4,0xfd,0xe2,0x88,0x3e,0x4f,0x21,0xbe, +0x11,0xe3,0xc5,0x6f,0x0e,0xee,0xb1,0x82,0x3d,0xf3,0xd1,0xdb, +0x06,0xbc,0x27,0xd1,0xc9,0x18,0x6d,0x12,0x6a,0x14,0x4c,0x09, +0x43,0x28,0x13,0x84,0x7d,0xe6,0xcc,0xc5,0x05,0x0b,0x4b,0xa8, +0x36,0x9f,0xf4,0x08,0xd8,0xe7,0x47,0x61,0x04,0x0d,0x49,0x2c, +0x0e,0x79,0x3b,0x13,0x26,0xcc,0x2f,0x6d,0xe1,0x71,0xce,0xd7, +0xba,0x8f,0x83,0x81,0x52,0x25,0x4f,0xe5,0x71,0x92,0x3c,0xbf, +0x61,0xf5,0xb7,0xfa,0x6a,0x78,0xb5,0xef,0xa2,0xf0,0x6a,0xc4, +0x04,0x2c,0x73,0xd6,0x9f,0x2c,0x4e,0xf1,0x57,0x5d,0x2d,0x5f, +0xa7,0x7d,0xcb,0x81,0x6e,0xb7,0x05,0x71,0x0d,0x53,0xe3,0x23, +0xd4,0x83,0x46,0x33,0x6a,0x40,0xff,0x17,0x4d,0x18,0xa1,0xf8, +0x9a,0xc6,0x71,0xb2,0x1c,0x26,0x53,0xed,0x62,0x15,0x21,0x8f, +0xb2,0x56,0x63,0xea,0xa0,0x0c,0xd0,0x2c,0xfa,0xb6,0x90,0x53, +0x7a,0x2b,0x8b,0xc9,0x24,0x5c,0xf8,0x03,0x2b,0xa3,0x74,0x77, +0x22,0x2e,0x65,0xe3,0xcb,0x63,0x4f,0x1f,0x2d,0xe0,0x70,0x0e, +0x56,0x93,0xf4,0xe6,0xe4,0xf6,0x04,0x71,0xb1,0x21,0xd2,0x34, +0x5c,0xbe,0x87,0x36,0xfd,0x2e,0x18,0x4f,0x9b,0x3e,0x6f,0x71, +0xb2,0xc5,0x85,0x74,0x3e,0xac,0xdd,0xf7,0xb1,0x9a,0x39,0x79, +0xa9,0x6e,0x11,0x91,0xfa,0x8d,0x17,0xed,0xf9,0xb1,0xab,0x4d, +0x84,0x7b,0x9a,0xdf,0x79,0xcd,0x3d,0xf4,0x50,0xb7,0x87,0x1e, +0xc2,0xba,0x7f,0x8d,0x26,0x97,0x3e,0x87,0xe7,0x06,0x1d,0xaa, +0xdf,0x05,0x67,0x06,0x6c,0x84,0x5e,0x04,0x47,0x43,0x07,0x8c, +0x66,0x3a,0x44,0x84,0xed,0x00,0x1d,0xca,0x78,0x84,0x67,0xfa, +0x04,0xb4,0x9a,0x51,0x0b,0x06,0xbe,0x69,0xc6,0x03,0xf2,0xe7, +0x74,0x24,0xcc,0x94,0xc3,0x4c,0xbc,0xcc,0xc8,0x23,0x64,0x91, +0xf2,0x9e,0x91,0x90,0x09,0xd2,0xc2,0x17,0x22,0xc2,0x3a,0xf7, +0xb0,0x45,0xa5,0x26,0xdc,0x25,0x78,0x9b,0x7e,0xdc,0x6d,0x16, +0xac,0x47,0xd1,0x4f,0xba,0x2d,0x6e,0x8d,0xcd,0xdc,0x20,0xe9, +0x2d,0x29,0x3d,0xd2,0x2c,0xd2,0x34,0x4c,0xcd,0xfe,0xc2,0xdf, +0xfb,0xf0,0x6f,0xec,0xef,0xf7,0x01,0xc7,0xc4,0x63,0x11,0x2c, +0xc2,0x92,0x2f,0x6b,0x81,0x2d,0xec,0x83,0x4a,0x4c,0x63,0x73, +0xca,0xb3,0x4e,0x67,0x9c,0xa1,0x52,0x90,0x41,0xc3,0x03,0x53, +0xf7,0xea,0x4a,0xd7,0x45,0x87,0x04,0xd8,0x8d,0x36,0x14,0x4f, +0x95,0xbc,0xce,0xdc,0x2f,0x2b,0x7f,0x43,0x53,0xff,0xfa,0xf0, +0xcf,0xe0,0xaf,0x89,0xdf,0x32,0x89,0xc5,0x09,0xc5,0xf1,0xa5, +0xb2,0x74,0x7e,0x0b,0x0e,0xb3,0xc1,0xbe,0x7a,0x33,0x6a,0x1c, +0xf9,0x93,0x67,0x24,0xc2,0x0a,0x76,0x7c,0xde,0xf6,0x9f,0xa5, +0x14,0x48,0x2f,0x64,0x65,0x9f,0xd7,0x02,0x8e,0xb5,0xc8,0x90, +0x74,0x0f,0x57,0x0d,0xa7,0xe2,0xac,0xd6,0xe4,0xa1,0xc8,0xee, +0x97,0x5f,0x75,0xba,0xb6,0xf3,0xaa,0x7a,0x7d,0xc9,0x5e,0x6f, +0x9c,0xa1,0x3a,0x8a,0x74,0x68,0x3e,0xa3,0xe2,0x6c,0x1d,0x81, +0xb1,0xcd,0x38,0x16,0x06,0xd0,0x60,0x7c,0xa6,0x96,0xf4,0x73, +0xe4,0x30,0x07,0x3b,0xe8,0xb8,0xb1,0x8c,0xea,0x99,0x8f,0x22, +0x66,0xd3,0x71,0xb3,0x5f,0x0c,0x86,0x7a,0xdc,0x28,0xe5,0x4a, +0x27,0x71,0xe3,0x7f,0x13,0x58,0xc5,0xa2,0xb1,0xf0,0x31,0xc9, +0xa0,0x45,0x4e,0xf3,0x98,0xd2,0x33,0x2d,0x69,0x0c,0xa2,0xde, +0x83,0x77,0xb2,0xa8,0xc6,0xc3,0x28,0x69,0x52,0xe7,0xf1,0x84, +0x9a,0x01,0x5f,0xa6,0xa4,0xa9,0x44,0x5c,0x32,0x31,0x17,0x19, +0xb0,0x38,0xc8,0x15,0x7a,0xc8,0xa8,0x01,0xb4,0xef,0x9d,0x6b, +0x6a,0x06,0x6c,0xbc,0x9f,0x08,0xb1,0x16,0xb0,0x8e,0xf1,0x45, +0x5d,0x73,0xb4,0x17,0x8d,0x2a,0xb7,0xe6,0x8b,0xab,0x0a,0xcf, +0xe5,0x5f,0xe0,0x04,0xb6,0xfd,0x26,0xc4,0xac,0x6a,0x57,0x1e, +0xc7,0x1a,0xb6,0xf4,0x9b,0xbc,0x57,0x69,0x3f,0x70,0x90,0xcd, +0x74,0xcf,0x14,0x46,0x10,0x98,0xd3,0x82,0x73,0x60,0x20,0xd5, +0x29,0x39,0xb2,0x5f,0x68,0x62,0x0d,0x65,0x60,0x48,0x7d,0x11, +0xd1,0xc8,0xe4,0x0f,0x34,0x9a,0x5a,0xf4,0x6b,0xb1,0x88,0x46, +0x21,0xf2,0x30,0x0b,0xda,0xdf,0xb7,0x0f,0x10,0x78,0x09,0x31, +0xf8,0x92,0x15,0xb6,0x76,0xa9,0x97,0x5c,0x92,0x44,0xea,0x1b, +0xfe,0x9e,0xfa,0x26,0x51,0xfa,0x57,0x40,0xe9,0x5f,0x6a,0x4f, +0xbb,0xbe,0xa7,0xbe,0x9b,0x54,0x8f,0x88,0xd3,0x04,0xf3,0x85, +0x4b,0x57,0x57,0xd8,0xf3,0x0f,0x3f,0xbf,0xf2,0xe6,0xc2,0x2f, +0x14,0xf6,0x93,0x89,0x9f,0x81,0xad,0xde,0xd8,0x9e,0xd9,0xd9, +0xd9,0x33,0xf3,0x53,0x16,0xb4,0xaf,0x79,0x61,0x48,0x51,0x68, +0xee,0x75,0x85,0x38,0x30,0x60,0x8d,0x33,0x31,0x87,0xd8,0x76, +0xb6,0x7b,0x33,0xae,0x22,0x1b,0x26,0xeb,0xe1,0xe0,0xc5,0x86, +0xa7,0x6c,0xf8,0xd2,0xe2,0x82,0xe2,0xdc,0x62,0x4e,0x58,0xd1, +0xa2,0x8c,0x63,0x8b,0x6b,0x0b,0x1b,0xf3,0x2e,0x72,0xb0,0x1b, +0xfd,0x48,0xcf,0x32,0x01,0xf7,0x63,0x13,0xc6,0x2a,0x5e,0x21, +0x87,0xba,0x32,0xd0,0xc5,0x26,0xaa,0x9d,0xff,0xb6,0x4c,0xa0, +0x53,0xf4,0xbd,0x98,0x1e,0xc7,0x30,0x9b,0x30,0x2b,0xea,0xd2, +0x4a,0xa5,0x27,0xfd,0x1d,0xc3,0x85,0x60,0x1c,0xc6,0xa6,0x5a, +0x48,0xde,0x31,0x35,0x19,0x39,0x35,0x5a,0xca,0x1d,0xdf,0xb6, +0xb3,0x42,0x1f,0x61,0x8c,0x98,0xae,0xb6,0xc4,0x26,0x71,0xd6, +0x9a,0x87,0x29,0x44,0x4c,0x3a,0x40,0xf5,0xe5,0x09,0x45,0x3e, +0x05,0xdc,0x1e,0x7a,0xf0,0x48,0x8d,0x49,0xeb,0x95,0x83,0x48, +0x0b,0xee,0x06,0x63,0xf0,0x6c,0x46,0x4f,0xd0,0xb7,0x40,0xfd, +0x31,0x6c,0x4a,0x75,0xe2,0xb9,0xd8,0x6a,0xab,0x44,0x3e,0x18, +0x7b,0x7b,0xa1,0xc4,0x7a,0x51,0xdd,0x16,0xfe,0x44,0x65,0x6e, +0x5d,0x66,0x83,0xb8,0x17,0x81,0x31,0xfa,0xc9,0x28,0xa7,0xde, +0x8a,0x92,0x25,0x54,0x1f,0xf5,0x1d,0x5f,0x69,0xcb,0x43,0x7f, +0x60,0x5b,0x9e,0xe7,0x88,0xf8,0x23,0x4c,0x6d,0x53,0x4e,0x8d, +0x63,0x72,0x71,0x54,0xc3,0x02,0x20,0x38,0xf8,0xb4,0x78,0x70, +0xc5,0xbb,0xa5,0xc0,0x6c,0x86,0xbe,0x9c,0x10,0xae,0x5c,0x40, +0xd9,0xc8,0xc5,0xb5,0x5f,0x2f,0x2b,0x6d,0xe0,0x17,0xdf,0xb4, +0xbf,0x15,0xd0,0xb3,0x56,0x63,0xff,0x47,0xdf,0xb7,0x8b,0x7d, +0x5f,0x28,0x0a,0xef,0x31,0xcd,0x74,0x7a,0x88,0xed,0x7b,0x50, +0xfe,0x1d,0xcd,0xf2,0x6c,0x39,0xcc,0xa6,0xed,0x2b,0x8b,0xb0, +0x7c,0xdf,0xbe,0x23,0x32,0x61,0xcc,0x1f,0xed,0x6b,0x27,0xb6, +0xef,0x97,0x22,0xa3,0x4b,0xf9,0xa3,0x46,0x7b,0x54,0x5a,0x94, +0xba,0x4f,0x4f,0xfc,0xd5,0xa7,0xbe,0x62,0x8d,0x26,0xa9,0x57, +0x8c,0x9a,0x7a,0x56,0x8c,0x16,0xde,0xa4,0x64,0xf3,0x8f,0x15, +0xa3,0xb1,0x3d,0x2b,0x46,0x3d,0xeb,0xb2,0x0a,0xfc,0x86,0xc0, +0x47,0x3f,0x3e,0xfe,0xf1,0x38,0x35,0x3d,0x96,0x39,0x81,0x7d, +0x5e,0x4c,0x83,0xa1,0xe3,0x4e,0x35,0xf2,0x38,0xfc,0xe7,0x45, +0xdf,0x7a,0xfd,0x46,0x71,0xc0,0x1a,0x26,0x31,0x1e,0xba,0xab, +0x97,0xa0,0x44,0x97,0xc3,0x51,0x38,0x97,0xc0,0x84,0x16,0x9c, +0x00,0x03,0x7f,0x6a,0xc6,0x38,0xf5,0x8a,0x8f,0x3a,0x95,0x9d, +0x7f,0x4b,0xe5,0xc7,0x34,0x95,0x85,0xdf,0x9f,0x14,0x53,0xd9, +0xb3,0x4a,0xa4,0xfc,0x11,0x74,0x69,0x0e,0x0c,0x40,0x1f,0x26, +0xb7,0xe0,0xaf,0x32,0x18,0x8f,0xfa,0x3d,0xda,0xc6,0x19,0xb7, +0x5b,0x2a,0x63,0x5a,0xd1,0x17,0x9c,0x59,0xfc,0x69,0x56,0x0f, +0x7f,0xfa,0xfb,0x0a,0xd1,0xfe,0x3f,0xf8,0x93,0xb9,0xc8,0x9f, +0xda,0xb7,0xab,0x09,0xeb,0xef,0x32,0xe5,0x19,0x82,0x01,0xb0, +0x96,0xb9,0x9a,0x72,0x25,0xbd,0x2d,0x7b,0xab,0xb8,0xe5,0xa2, +0x2b,0x4e,0xde,0x81,0xe3,0x22,0x52,0x2d,0xf9,0xd6,0x63,0x9d, +0x71,0x57,0x12,0x39,0x5c,0x8a,0x1b,0x2d,0x61,0x23,0xae,0xc6, +0x55,0xc2,0xf0,0x4b,0x1d,0x50,0x6f,0xd6,0xa9,0x1c,0x8e,0x6b, +0x60,0x35,0x04,0xb0,0xdd,0x26,0xd0,0x48,0x52,0xf5,0x2e,0x59, +0xbc,0x59,0x5d,0xd4,0xc4,0xcf,0xbe,0x24,0xbb,0xe4,0x7f,0x59, +0x4d,0x0e,0x14,0x4b,0xc6,0x88,0xc0,0xf2,0xee,0xf6,0xd5,0xaf, +0xd3,0xde,0xaf,0xfa,0x4c,0x6b,0xc1,0x69,0x6a,0xe6,0x93,0x22, +0xfb,0x9e,0x0e,0x89,0x25,0x32,0x58,0x42,0x87,0xad,0xf9,0x9f, +0x9a,0xec,0xd3,0x0c,0x98,0x50,0xf4,0x93,0xe8,0xae,0x3d,0x65, +0x4b,0xf2,0x70,0xee,0xc9,0x6d,0xaa,0xbf,0xd2,0x7a,0xf4,0x57, +0xf8,0xdf,0xf4,0x97,0xb8,0xd2,0x95,0xaa,0xae,0xcd,0x9e,0x79, +0xa9,0x5c,0x85,0x49,0x04,0x5c,0xa1,0x1e,0x5d,0xd9,0x21,0xca, +0xdf,0x54,0x77,0x88,0xb9,0xfb,0x22,0xef,0xd5,0xc1,0x9c,0x90, +0xc1,0x52,0xdd,0xb1,0xd7,0x7f,0x6f,0x9a,0x82,0xff,0xa6,0xf0, +0x52,0x5e,0x7b,0x41,0x00,0xf6,0xb6,0x5f,0x36,0x7f,0x79,0xb9, +0x13,0x6d,0x14,0x18,0xd0,0x4a,0x59,0xe2,0x5e,0x4d,0x48,0x95, +0x63,0x36,0xeb,0x76,0xc0,0x73,0xbf,0xb7,0x74,0xd3,0x6e,0xaf, +0x3d,0x6e,0x7b,0x38,0xa5,0x0b,0xdb,0x96,0x7e,0xb7,0xa4,0xa1, +0x94,0x13,0x96,0x24,0x91,0xa4,0xf9,0xe7,0xd6,0x3e,0x5e,0x42, +0x9b,0x76,0xf9,0x6d,0x97,0x5b,0x81,0x5d,0x74,0x1c,0x06,0x2e, +0xf3,0xd0,0x9f,0x2f,0xfa,0xf7,0xa4,0xab,0xee,0xeb,0x94,0x6f, +0x38,0xa5,0x5f,0xb7,0x8a,0x34,0xab,0x9a,0xe0,0x23,0xe1,0x8b, +0xe9,0x4c,0x8a,0x4c,0xf2,0x25,0x53,0x99,0x91,0x51,0xab,0xa5, +0xe2,0x30,0x92,0x15,0x6c,0x85,0x35,0x04,0xfa,0x37,0x63,0x7f, +0x18,0xf0,0xa8,0x11,0xbd,0xad,0xee,0x51,0x04,0xe3,0xe5,0xc0, +0xe3,0x35,0xc6,0x3e,0xc2,0x2e,0xd2,0x71,0x6f,0x92,0x39,0xff, +0x36,0x13,0x86,0x16,0x3d,0xc8,0x3f,0xd0,0xc4,0x7b,0x45,0xb8, +0x87,0xbb,0x46,0x72,0xb7,0xee,0x90,0x94,0x96,0xa4,0x8e,0xb8, +0x16,0xc7,0x44,0x3e,0xda,0x24,0x52,0x16,0x42,0x55,0x87,0x07, +0x4c,0x21,0xb9,0x96,0xb9,0x8b,0x93,0x4c,0x2f,0xa4,0xf1,0xe1, +0x1d,0xfe,0x4f,0xfd,0x5b,0x28,0x13,0xb2,0x54,0x4d,0x20,0x70, +0xb4,0x05,0xe9,0x50,0x37,0xc7,0x11,0xb8,0x53,0x06,0x3b,0x31, +0x9a,0x41,0x2b,0xcb,0x31,0xe8,0x8b,0x63,0xa5,0xa7,0x2c,0xc1, +0x1c,0x46,0xdc,0x87,0x5e,0xb1,0xa0,0xa9,0x11,0xc7,0x1c,0x43, +0xf2,0x05,0xf6,0x83,0x85,0xf8,0xd1,0x69,0x3a,0xf6,0x15,0xa0, +0xb3,0xf6,0x2d,0xd8,0x68,0xd2,0xb1,0x3f,0x84,0x8e,0xfd,0x0b, +0xab,0xbf,0xd6,0xa7,0x85,0xae,0x77,0xdb,0xe1,0xb6,0xda,0xcf, +0x80,0x65,0x2e,0x7a,0x33,0x44,0x3f,0xbf,0xeb,0x6a,0xf8,0x3a, +0x95,0x8e,0xfd,0xc3,0xe8,0x40,0xd6,0xb3,0x53,0x77,0xcb,0x8c, +0x66,0x4b,0x4f,0x3b,0x94,0x9d,0x2b,0x6b,0x4b,0x29,0xd3,0x38, +0x9a,0x14,0x7b,0xf0,0x68,0x44,0x2b,0x4a,0xf8,0xca,0x32,0x0b, +0x60,0xf6,0xa6,0x44,0x1d,0x8a,0x88,0xd2,0x08,0x89,0xd8,0x7f, +0x58,0x92,0x78,0xea,0x70,0x49,0x8b,0x66,0x3b,0x0b,0xd9,0xa3, +0x4c,0xd9,0x29,0x21,0x36,0x26,0x8b,0xe9,0xdb,0x8a,0xcf,0x14, +0x36,0x24,0x9f,0xa4,0x6f,0x3b,0x7a,0x30,0x36,0xb2,0x0b,0x09, +0x5f,0x75,0xda,0x10,0x3e,0x8a,0x4a,0xd9,0x7b,0x28,0x2c,0x4a, +0x23,0x4c,0x7c,0x5b,0x7c,0xe9,0xe1,0x92,0x76,0xcd,0x36,0x56, +0xd8,0x2e,0xc4,0x12,0x8f,0x70,0xd7,0x08,0x67,0x4a,0x33,0x1a, +0xe1,0xa3,0x66,0xfc,0x08,0x06,0x7c,0xdb,0x84,0x41,0x8a,0x47, +0x34,0x86,0x3a,0x72,0x3a,0x78,0xaf,0xb2,0x36,0x11,0x56,0x51, +0xb6,0xea,0x46,0xef,0x97,0x09,0xa4,0xf0,0x51,0x01,0x67,0xf3, +0x9a,0xa4,0xb5,0x24,0xb7,0xc7,0xb7,0x38,0x26,0xf1,0x51,0xb4, +0xbf,0xc5,0xd8,0xf9,0xc2,0x24,0x92,0x27,0x3b,0xbe,0x38,0xc9, +0x8c,0x72,0x89,0xf0,0x76,0xdf,0xa7,0xfe,0xe2,0x1c,0x5e,0xa7, +0xfc,0x96,0x34,0xe2,0x1e,0xe8,0xc5,0x7e,0x1e,0x77,0x3b,0xa9, +0x23,0xc5,0x47,0x3c,0x62,0x79,0x07,0x2e,0xdd,0x83,0x0b,0x0e, +0x26,0x59,0xf1,0x37,0x0e,0xdd,0x3c,0x72,0x23,0x96,0x1b,0x87, +0x7e,0x56,0x60,0xc5,0xba,0xad,0x58,0x61,0xa5,0x63,0x51,0x60, +0xc5,0x03,0x7b,0xeb,0x8b,0xce,0x8c,0x6f,0xb9,0x38,0x34,0x6f, +0x06,0xf3,0x38,0x26,0x73,0xde,0x5d,0x0b,0x18,0xb6,0xbc,0xb0, +0x91,0x1f,0xd3,0x69,0x54,0xef,0x7a,0x83,0x13,0xf6,0x83,0x33, +0x49,0x5a,0x5c,0x63,0xdc,0xb3,0x18,0x7a,0xcd,0xf9,0x86,0x7a, +0x31,0x54,0x9c,0xb7,0xe3,0x0d,0xff,0x40,0xaf,0x67,0x1c,0x2c, +0xeb,0x36,0x27,0xef,0x31,0x09,0x2e,0xf4,0xe0,0xd8,0x80,0xf7, +0x38,0x36,0xa0,0x07,0xc7,0x3a,0x58,0x71,0xf2,0xbe,0xc7,0x31, +0x2a,0xd8,0x8b,0x5e,0x50,0xb5,0x34,0x15,0xae,0x12,0xfc,0xd1, +0xea,0x27,0x26,0x06,0x35,0x36,0x8d,0xc5,0x11,0x0b,0x4a,0xa9, +0x4d,0xa3,0xbe,0x69,0x82,0xa1,0xb1,0xb0,0x48,0xdc,0x59,0x28, +0xd2,0x3b,0xd0,0x24,0xc0,0x95,0x83,0x45,0x8c,0xc7,0x3e,0xeb, +0xbd,0x9b,0xa5,0x9b,0xf7,0x06,0x45,0xb8,0x8b,0x4f,0x77,0xa5, +0xca,0x25,0xc0,0x32,0x5f,0x14,0x9c,0x68,0x49,0xd6,0x4a,0xa8, +0x3e,0x7a,0xf3,0x81,0x26,0xe5,0x2d,0xc9,0x25,0xc9,0xe5,0xb1, +0xf9,0x9c,0xb0,0x05,0x57,0x88,0xab,0x57,0x6d,0x7f,0xe0,0xe2, +0xbf,0xcd,0xee,0xbf,0x56,0xd2,0xc5,0xb8,0xd9,0x2b,0xaf,0x93, +0xad,0xf7,0x2c,0xde,0xda,0x74,0x39,0x6e,0xe3,0x6b,0xd7,0x35, +0x4c,0x39,0x69,0xc8,0x51,0x02,0x70,0xd2,0x1c,0x4f,0xe2,0x4a, +0xa6,0xb1,0xab,0xfa,0xdb,0xec,0x2f,0x6c,0x8f,0xf3,0x81,0x4b, +0x9d,0xa6,0x98,0x1b,0x9e,0x75,0xe7,0x8f,0xc5,0x1e,0x8b,0x3b, +0x16,0xc7,0x75,0x0f,0x68,0x87,0x30,0x68,0xc7,0xf9,0x38,0x83, +0xcd,0xb2,0x90,0xc0,0xc7,0x94,0xd1,0xe6,0x9e,0xd5,0x52,0xd6, +0xb2,0x47,0xa2,0x0f,0xd3,0xff,0xb8,0xee,0x29,0x94,0xf9,0x26, +0x2f,0xa8,0x5d,0xf7,0x54,0x84,0xfd,0xa5,0x37,0x1c,0x6e,0x05, +0xaa,0x45,0xe8,0x52,0xb5,0x08,0x55,0xfc,0x79,0x23,0xec,0x23, +0xcc,0x26,0x3d,0xaa,0x72,0x60,0x8f,0xaa,0xec,0x64,0xc5,0xe5, +0x63,0x99,0x9a,0xb5,0x7f,0x94,0x41,0xe9,0xda,0x4b,0x11,0xef, +0x37,0x50,0x05,0x6f,0xa7,0x66,0xa8,0x6a,0x25,0x3a,0x90,0x55, +0xde,0xc6,0xb1,0x04,0xdb,0x41,0xfd,0xe4,0x57,0x3b,0x2e,0x25, +0xd4,0x98,0x81,0x14,0x85,0xd0,0x74,0xee,0x87,0x98,0x19,0x23, +0x8e,0x04,0xd9,0x9f,0x98,0xd9,0xb3,0xaa,0xae,0xba,0xa1,0xba, +0x4f,0xcc,0xb1,0x17,0xea,0x42,0x2f,0x0b,0x7a,0x19,0x20,0x87, +0x01,0xc8,0xb4,0x01,0x43,0xc1,0x9b,0x69,0xa7,0x97,0x91,0xcd, +0x38,0x92,0x11,0x1e,0x5d,0x57,0x2f,0x58,0x3e,0x53,0xb3,0xe8, +0xdb,0x36,0x3d,0xed,0xe4,0xbf,0xd4,0x49,0x7f,0xa2,0x38,0x37, +0xbe,0xbf,0xd3,0x22,0xe6,0xbf,0x40,0x54,0x4c,0x9f,0x36,0xe3, +0xa7,0x30,0xe0,0x55,0x33,0x46,0xcb,0x9f,0xd1,0xac,0x4f,0x93, +0xc3,0x34,0xbc,0xca,0x28,0x22,0xe5,0x91,0x0a,0xb5,0x37,0xa3, +0xe8,0x14,0x28,0x7e,0x7d,0xf2,0x40,0x33,0x6f,0x17,0x42,0x45, +0x64,0x18,0xa7,0xd4,0x52,0x66,0x11,0x1c,0x89,0x7b,0x64,0x77, +0xf1,0x36,0x3b,0xaf,0x78,0xfb,0x63,0x29,0x74,0xb6,0x62,0x1b, +0xe3,0xb2,0x27,0x8d,0xea,0x8d,0x1b,0x4a,0x8d,0x16,0x5a,0xd1, +0x23,0x59,0x61,0xb0,0xa0,0xa0,0x9c,0x3a,0xa5,0xe3,0x4f,0x4e, +0x2d,0xae,0x5c,0x84,0xc0,0x04,0x92,0xa7,0xe6,0xa3,0x6a,0x4e, +0xfd,0x7e,0x35,0xf2,0xa8,0x5a,0xfb,0x37,0xae,0xa6,0xda,0xbf, +0x81,0x5f,0x74,0xcb,0xf6,0xfd,0x9c,0x5b,0xe6,0xd0,0x53,0xaf, +0x3f,0xf4,0xd4,0xab,0xf2,0xac,0xf0,0x80,0x50,0xe0,0x7c,0x87, +0x3c,0x2c,0x87,0xb9,0x4d,0x42,0x89,0x82,0x32,0xe5,0xe5,0x38, +0x04,0xdf,0xc1,0x10,0xb4,0xc1,0x05,0x0a,0xe5,0xf9,0x26,0x5c, +0xcc,0x60,0x85,0x72,0xaf,0xb8,0xcf,0x75,0xe0,0x3b,0x0c,0x84, +0x8f,0xf1,0x20,0x7e,0x8c,0x47,0xc6,0xc2,0x11,0x1c,0xc2,0xcc, +0x42,0x43,0x5a,0xf0,0xf6,0xe1,0xff,0xad,0xe0,0x45,0xde,0x3d, +0xa0,0x87,0x77,0x5f,0x62,0xe5,0x11,0x96,0x51,0x8a,0x3f,0x96, +0x62,0xa4,0x62,0xc1,0x1b,0xbf,0xe8,0xa9,0xcb,0xf7,0xab,0xaa, +0xea,0xba,0x8c,0x50,0xd7,0x65,0xde,0x5f,0x75,0xa9,0xe6,0xd5, +0xc3,0x54,0x4b,0xc8,0x9c,0x0e,0x18,0x87,0x9f,0xfd,0x64,0x36, +0x01,0x77,0xe1,0xf8,0xb6,0x67,0x2c,0xee,0xa3,0xc2,0x2b,0x51, +0xaf,0xcc,0xe4,0xae,0x01,0xad,0xa9,0xff,0x43,0xdb,0x5b,0x40, +0x57,0x75,0x6d,0x6d,0xc3,0x40,0x9b,0xbd,0x37,0xd0,0x02,0x95, +0x15,0x76,0xa0,0x4d,0x80,0xe2,0x94,0xe2,0x1e,0x5c,0x83,0xc4, +0xdd,0xdd,0xdd,0x13,0x12,0x62,0x78,0x91,0xb8,0xbb,0xbb,0xbb, +0x0b,0x21,0x48,0x02,0x04,0x8a,0xb5,0x38,0x75,0xa1,0xa5,0x36, +0x77,0x3a,0x77,0xee,0xf7,0xaf,0x7d,0x4e,0x68,0x7b,0xef,0xdb, +0xf7,0xff,0xee,0xf8,0xc7,0xf8,0x07,0xa3,0x49,0xba,0x23,0xe7, +0xac,0xb5,0xe6,0x9c,0xcf,0xf3,0xcc,0x39,0xd7,0x5a,0xfb,0x87, +0x1c,0x06,0x83,0xae,0xc9,0x62,0x9b,0x8d,0xea,0xb2,0x1d,0xa5, +0xfa,0xfc,0x17,0xb7,0xba,0x9e,0x26,0xd3,0xd8,0x96,0x89,0xfb, +0xc9,0x11,0x7c,0xcb,0x1a,0x15,0xf6,0xaf,0xa9,0x31,0xe3,0x3b, +0x6e,0x54,0xdd,0xc9,0x7d,0xc4,0xbd,0x60,0x8e,0x6d,0x0d,0xdb, +0xed,0x77,0xc0,0xab,0xc8,0xbd,0xc0,0x2b,0xc7,0xdd,0x80,0x2f, +0xf6,0x2e,0xf1,0x28,0x74,0xb6,0x5f,0xa7,0xb3,0x7d,0xd3,0xfe, +0x4a,0x03,0x1e,0x36,0xc1,0xdc,0xbb,0xb0,0x2f,0x09,0x42,0xb9, +0x46,0x54,0x61,0x63,0x0a,0xcf,0x17,0x9d,0x2f,0xe6,0xb0,0x15, +0xa3,0x09,0x4c,0xeb,0xc5,0x69,0x30,0xf9,0x59,0x37,0xfa,0xe9, +0x3f,0xa4,0x66,0x36,0x4b,0x6a,0x43,0x1f,0x64,0x8c,0x22,0x0c, +0xa2,0x8c,0x65,0xe3,0x7b,0x2d,0x03,0xde,0xa5,0xf1,0x8a,0x2e, +0xad,0x5d,0xb8,0x55,0xb8,0x45,0x24,0x37,0xf2,0x81,0x26,0x41, +0x05,0xc6,0xf3,0x68,0x4c,0xa1,0x8a,0x60,0x07,0x93,0xf1,0xe8, +0x02,0x36,0x55,0x4f,0xe1,0x21,0xd3,0x20,0xbb,0x63,0xb1,0x09, +0x83,0xc4,0x02,0x56,0x3d,0x2b,0x78,0x40,0x19,0xde,0x60,0x1a, +0x92,0x53,0xe8,0xb3,0x29,0xac,0x41,0x86,0xc2,0xe8,0x53,0xf8, +0x88,0xe4,0x6a,0xff,0x19,0xdd,0x7c,0x24,0x64,0x00,0x17,0x3a, +0xa0,0x94,0xbe,0xa4,0x81,0xb8,0x3e,0xd3,0x04,0xfe,0xa8,0x7a, +0x84,0x14,0x07,0xa7,0x8c,0x38,0x8f,0x38,0x13,0x50,0x50,0x47, +0x05,0x74,0xd7,0x11,0xa2,0xfb,0xd8,0xd1,0x83,0x37,0xe8,0xd2, +0x53,0xf1,0x24,0x2f,0x8a,0xc9,0x28,0xce,0x4e,0xea,0x71,0x63, +0x45,0xb1,0x5f,0x3f,0xb9,0x2c,0x65,0x31,0x46,0xe6,0xa2,0x2d, +0x11,0x57,0x61,0x36,0xd5,0xf3,0xf7,0x91,0x65,0xd2,0x34,0x15, +0xbe,0x66,0xda,0x32,0x33,0xdb,0x54,0x60,0x18,0xd4,0xd8,0x51, +0xae,0x82,0xc0,0xc2,0x3e,0x5c,0x28,0xe3,0x33,0xf1,0xba,0xdf, +0xd3,0xe1,0xae,0xd7,0xa1,0x28,0x73,0x89,0xd1,0x0a,0xd7,0x8c, +0xd4,0x92,0x01,0xfc,0xdb,0x52,0x66,0xed,0x9b,0x42,0xaa,0xa6, +0xad,0xc3,0xcd,0xc3,0x4d,0x23,0x39,0x61,0x50,0xf0,0x24,0x54, +0xfa,0x75,0xc0,0x4a,0x16,0x35,0xc5,0xc5,0xf2,0xc2,0x96,0x0c, +0xee,0xd5,0xe5,0x69,0x9f,0x8f,0xe9,0x2a,0x17,0xc8,0x69,0x8b, +0x54,0xd8,0x92,0xd1,0x16,0x61,0x8b,0x05,0xf1,0xdc,0x68,0xbb, +0xf9,0xc0,0x9e,0x46,0x4b,0x7e,0xe8,0x76,0xf3,0xb3,0xe2,0xa7, +0x1c,0x68,0x1d,0x23,0x2d,0x3b,0x1b,0x36,0x55,0xad,0xee,0xac, +0xe0,0x1d,0x1f,0x5a,0x3e,0x32,0x19,0xa6,0x56,0xad,0x41,0x95, +0xa2,0xff,0x56,0xdb,0xcd,0x2b,0xb7,0xd3,0x65,0x7e,0x7e,0xab, +0x43,0x82,0xea,0x58,0x26,0x71,0x5d,0xc3,0xfe,0x07,0x12,0xcc, +0xed,0x1c,0xb6,0xbe,0x1e,0x70,0x93,0x83,0x85,0x54,0x29,0x5e, +0x18,0x16,0xe6,0xed,0xbe,0x30,0xf2,0x7f,0xc4,0x24,0xe6,0x82, +0x11,0x11,0xe6,0x8d,0xea,0x89,0xf3,0x18,0x18,0x15,0x4a,0x08, +0xbe,0x07,0x6f,0xeb,0x53,0x5c,0x55,0x32,0x06,0x25,0xe4,0x17, +0x61,0x16,0x44,0x43,0xd6,0x7c,0xea,0x05,0xef,0x31,0xe2,0x3d, +0x6a,0xce,0xf0,0x66,0x0f,0xbe,0x09,0x93,0x9f,0x76,0xa3,0xa7, +0xfe,0xa7,0x74,0xd8,0xef,0xe9,0xc1,0x7b,0x14,0xd9,0xa5,0x7b, +0xd7,0x4c,0x24,0x64,0xff,0x3d,0x03,0xde,0x2e,0x7a,0x50,0x78, +0xb2,0x97,0xb7,0xa7,0x40,0x66,0x45,0x0d,0xff,0x07,0xe9,0xba, +0x8b,0x2d,0xb0,0x90,0xca,0xdf,0x51,0x55,0x98,0x40,0x72,0x75, +0x72,0x37,0xd0,0x85,0x93,0x20,0x5d,0xbe,0x70,0x0e,0xa8,0x46, +0x52,0x7a,0xc7,0xc0,0xff,0xa8,0xba,0x0c,0xfc,0xa7,0x08,0x5f, +0x08,0xce,0xc4,0xf3,0xba,0xc3,0x0d,0xcf,0xfa,0xb2,0xd6,0xea, +0xe1,0xbc,0xab,0xfa,0xe9,0xbc,0x9f,0xba,0xfd,0x0e,0x8b,0x83, +0xb5,0xea,0xd5,0xdb,0x0a,0xf7,0x71,0xe0,0x55,0x48,0xdc,0xaf, +0xd9,0x0f,0xba,0x36,0x56,0x76,0x94,0x5f,0x2e,0xb8,0xa6,0x9f, +0xc1,0xfb,0x1e,0x70,0xdc,0x6b,0xbe,0xbf,0xe1,0x50,0xf5,0xae, +0x62,0xfa,0x7d,0xef,0x42,0xe2,0x76,0xcd,0xe1,0xaa,0x4b,0x63, +0x45,0x6b,0xd5,0x95,0xc2,0x21,0xfd,0x4c,0xde,0xfb,0xa0,0xed, +0x1e,0xcb,0x83,0x8d,0x07,0x6b,0x77,0x16,0xef,0xe7,0x46,0x97, +0x0b,0x0c,0xf9,0x2b,0x4d,0x29,0x4f,0xf7,0x51,0xc9,0xb2,0xfa, +0xc2,0x9e,0xaf,0xa4,0x94,0xe0,0xea,0x61,0x7d,0x29,0x19,0x20, +0x4b,0x9c,0xfc,0x53,0x4e,0x72,0x40,0x4a,0xa2,0x8e,0x25,0xf6, +0x14,0xa5,0x9c,0xe4,0x77,0xf2,0x9c,0xa4,0x51,0x98,0x01,0x55, +0x21,0x61,0x48,0x48,0x07,0xfc,0x62,0x74,0x41,0x88,0x17,0xed, +0xc4,0x78,0x16,0x2c,0xe0,0x0a,0xa1,0xfc,0x77,0x11,0xcc,0x67, +0xba,0x71,0x11,0xa1,0x5f,0x7c,0x88,0x8b,0x58,0xf1,0x2c,0x4e, +0xf8,0x7f,0x49,0x58,0x8e,0xd5,0x37,0xa5,0x84,0xa5,0x50,0x89, +0x6f,0x12,0x5c,0x46,0xff,0xc4,0x32,0xd9,0x0d,0xf4,0x1f,0xd2, +0xaf,0x3f,0x64,0xa6,0x08,0xf7,0x46,0x16,0x90,0x1c,0x93,0x42, +0xab,0x52,0x47,0x35,0xcf,0x6d,0xfe,0xab,0x43,0x32,0x0c,0xf8, +0x6f,0xd3,0x1e,0xe5,0xdf,0xae,0xe8,0xb0,0xbc,0xe8,0x36,0x14, +0x5a,0x1f,0x99,0x93,0x74,0xbe,0x36,0x11,0xc6,0xf3,0xc6,0x59, +0x61,0x38,0xd5,0x20,0xd1,0x24,0xdb,0xaa,0x4c,0xa9,0xa7,0xa4, +0xad,0xaa,0xa9,0xd1,0xbe,0x8a,0xb7,0xb0,0x34,0x72,0xd4,0x76, +0xf7,0x2c,0xf6,0xae,0xf2,0x6f,0x84,0xa1,0x52,0xfe,0x58,0x07, +0x3e,0x74,0x09,0xad,0x0e,0xab,0x8b,0x68,0x56,0xd2,0x8d,0x8a, +0xb7,0x4c,0xb2,0x4d,0xb6,0x57,0x42,0xa5,0x23,0xb1,0x06,0x0a, +0xc2,0x72,0x58,0x40,0x6c,0x52,0x35,0x32,0x4c,0xe2,0x7d,0xcd, +0xf9,0xb6,0xf0,0xab,0xc1,0x55,0xa1,0x9c,0x78,0xab,0x96,0x24, +0x6d,0xec,0x38,0xf8,0x5c,0x12,0x79,0x9b,0x86,0x4c,0x06,0xfd, +0xaf,0x8d,0x05,0xd2,0x85,0x52,0x20,0xfd,0xfe,0x56,0xbf,0x2c, +0x7d,0xb2,0x69,0x54,0xeb,0xcf,0x34,0x69,0xfb,0x2b,0x08,0xe8, +0xc1,0x63,0x7a,0x9f,0xbf,0x82,0x80,0x4b,0xac,0x5e,0x84,0x4e, +0x94,0xbe,0x2c,0x4e,0x4c,0x4d,0x87,0xf7,0x8a,0xbf,0x2a,0xe2, +0x84,0xed,0xf0,0x9c,0x18,0x67,0x68,0xa4,0x6a,0x27,0xf8,0x99, +0xf0,0x17,0x23,0x2f,0x1d,0x6e,0x0d,0xe6,0xbe,0xc4,0x87,0x44, +0x3b,0xcd,0xb0,0xd0,0xac,0xba,0xbf,0xae,0xb3,0xb5,0xb1,0xc7, +0xb2,0x8c,0xb7,0xd2,0x37,0xb2,0xd0,0xb6,0x73,0xad,0xf4,0xa8, +0xf7,0x6d,0x87,0x07,0xe5,0xfc,0xd1,0x2e,0xfc,0xd6,0xe9,0x48, +0x65,0x78,0x4d,0x64,0x83,0x92,0x6e,0x64,0x9c,0x6d,0xa2,0x5d, +0xb2,0xa3,0x12,0xbe,0x15,0x16,0xa3,0x0f,0x2a,0x29,0xf9,0x3a, +0xa5,0xc6,0x55,0x56,0x4a,0x5b,0x2c,0x57,0xba,0x2e,0xf0,0xcb, +0xd2,0xe7,0x7f,0xcb,0xfd,0xb6,0xea,0x71,0x7b,0xb7,0xc9,0x15, +0xc7,0xe1,0xc0,0xfa,0xf0,0x9c,0xf4,0x73,0xd5,0xc9,0xf0,0x36, +0x6f,0x9c,0xa3,0x20,0x7e,0x72,0x52,0x82,0x93,0x57,0x29,0x9a, +0x30,0x59,0x8a,0xe6,0x08,0xc5,0xc8,0x3c,0x9d,0x3f,0xa5,0xbd, +0x3c,0x0c,0xc3,0xc7,0x23,0x05,0x52,0x8e,0x7e,0xcf,0x17,0x5b, +0x92,0x73,0xf8,0x56,0xa7,0xf2,0xfe,0x82,0xeb,0x29,0x43,0x4a, +0x52,0x61,0xf5,0xbd,0x74,0x60,0xcb,0xdc,0x5b,0x79,0x1c,0xef, +0x8e,0xb3,0x82,0x71,0xc1,0xb1,0xb0,0x43,0xfe,0x87,0xbc,0x8d, +0x36,0xdc,0xf8,0x13,0x72,0xcc,0x54,0xe7,0x4b,0x33,0xf5,0x83, +0x94,0xd8,0xa1,0x90,0x73,0x7f,0x2f,0x29,0x35,0x28,0x54,0xcf, +0xd2,0xe9,0xcc,0xe5,0x03,0x7b,0xdd,0x07,0x5c,0x3a,0x38,0x9c, +0x8d,0xaa,0xe4,0x68,0x5b,0x68,0x77,0x68,0x83,0x7e,0x38,0x9f, +0x62,0x9e,0x60,0x18,0x6b,0xc2,0x89,0x8b,0xd0,0x8e,0xc8,0x6b, +0x78,0x93,0xc6,0x6a,0x78,0x93,0xe4,0x35,0xbc,0x4b,0x8c,0xac, +0x86,0x77,0x4c,0x9a,0xc9,0x77,0x32,0xa8,0x5d,0xca,0xa8,0x81, +0x4c,0x52,0x85,0x73,0x23,0x6f,0xc1,0x6d,0x02,0xab,0x44,0x7d, +0x43,0xd8,0x4f,0xd1,0xdc,0xd5,0x00,0x5c,0x91,0xc1,0x03,0x06, +0x70,0x00,0x97,0xe3,0x0c,0x36,0x99,0x92,0x14,0x86,0x69,0xc9, +0xcc,0x6e,0x52,0xa1,0x06,0xba,0x4c,0xab,0x17,0x7c,0xbb,0xba, +0xd8,0x59,0x30,0x8e,0xd0,0x1f,0x5e,0x46,0x69,0x23,0x16,0xbe, +0x4e,0x31,0x7f,0x19,0x32,0xac,0xf8,0xf1,0x7a,0x79,0xed,0xaf, +0xf7,0x6f,0x28,0x15,0x26,0xa3,0x10,0xff,0x81,0x52,0x10,0x46, +0xd1,0x36,0x71,0x4d,0xdb,0xbe,0x67,0xaa,0x32,0xb2,0x6d,0x7e, +0xd3,0x4f,0x2e,0x2a,0xac,0x24,0x40,0xd2,0xe3,0xbf,0x1c,0x23, +0xdb,0x9f,0xe2,0x36,0xe2,0x51,0xe2,0x5e,0xe4,0x5a,0x60,0xe7, +0xc0,0x57,0xb8,0x95,0xb9,0x96,0x38,0xb9,0x59,0xdb,0xd9,0x9b, +0x38,0x94,0x9a,0xf2,0x6d,0xd5,0x75,0x75,0xe5,0x8d,0xd9,0x5e, +0x39,0x1e,0xd9,0x6e,0x35,0xb5,0xbc,0x6f,0x99,0x4f,0xa9,0x4f, +0x51,0x69,0x4f,0x76,0x7f,0xd2,0x35,0x8a,0x43,0xa7,0xf5,0x41, +0x9b,0x8d,0x34,0x0b,0xb1,0xf2,0xb7,0xe5,0x20,0xfb,0x34,0x71, +0x2d,0x71,0x29,0x76,0xc9,0x77,0xb4,0xe3,0x2b,0x3c,0xca,0xdd, +0x4a,0x5d,0x1c,0xad,0x2c,0x6c,0xb5,0x1d,0x4a,0xcd,0xf8,0x0b, +0xb5,0x2d,0x75,0x35,0xcd,0x65,0x8e,0x25,0x76,0x25,0x36,0x35, +0x75,0xbc,0x5b,0xbd,0x73,0x9d,0x73,0x55,0x65,0x77,0x5e,0x7f, +0xca,0x10,0xfd,0x2b,0xe7,0xf4,0x41,0x8f,0x0d,0x37,0x0b,0xb6, +0xf4,0xb2,0xe5,0x44,0x75,0xb1,0x8c,0xd8,0x86,0x4b,0x95,0x22, +0x89,0x89,0xbf,0xdd,0x8b,0x6f,0xc3,0xe4,0xcf,0xbb,0x31,0x40, +0xff,0x11,0x8d,0x79,0x73,0xa4,0x4d,0x94,0x57,0x59,0xc3,0x70, +0x83,0xbf,0x98,0xb8,0x62,0xd1,0xe3,0x22,0x0e,0x2a,0xce,0x13, +0xaf,0x0a,0xef,0x32,0xaf,0xe2,0xb2,0x4b,0xd9,0xd7,0x93,0x3e, +0xe1,0x1a,0xf0,0x84,0x01,0x68,0xb0,0x11,0xfa,0x87,0x8d,0x7c, +0xcd,0x5c,0x2a,0x9c,0x4b,0x9d,0x0a,0x1d,0x6d,0xf8,0x1a,0x97, +0x4a,0xe7,0x72,0x07,0x47,0x1d,0x13,0xa3,0x03,0x26,0x65,0x26, +0xfc,0xd5,0xd6,0x8e,0xee,0xda,0x8b,0xb9,0x9e,0xb9,0xee,0xb9, +0x2e,0x1c,0x78,0xbe,0x24,0xcd,0x37,0x8b,0x3f,0x4d,0x7d,0x2a, +0xbd,0x25,0x03,0xca,0xc3,0x8f,0xec,0x0f,0xd0,0x70,0xd6,0x75, +0xee,0xf0,0xea,0x0e,0xe8,0x34,0xf1,0xe2,0xb3,0xb5,0x4b,0x0f, +0xd6,0x6a,0x39,0x5a,0x98,0x5a,0x6b,0xd8,0xd1,0x99,0xe9,0xaf, +0x6a,0x6b,0xa8,0x69,0xad,0x34,0xab,0xb3,0x6a,0x74,0xae,0xec, +0xe4,0x2d,0x2a,0x6c,0xeb,0x9c,0x9a,0xb8,0xd1,0x3c,0xd0,0xfb, +0x3b,0xff,0xf7,0x79,0xea,0x43,0x03,0xad,0x1b,0x45,0xc8,0x54, +0xaa,0xb2,0xe2,0x7a,0x65,0x4a,0x41,0x8e,0x90,0xc2,0x23,0xa1, +0x8f,0x00,0x0b,0x1a,0xc8,0x5e,0xa0,0x9f,0xa6,0x75,0x53,0x10, +0x1f,0xa7,0x4d,0xd7,0x5b,0x43,0xfe,0x69,0x92,0x3e,0x65,0x7c, +0x2c,0x8b,0xd5,0x10,0x4e,0x92,0x56,0x8f,0x65,0x4a,0x37,0xdc, +0x34,0x96,0xaf,0xa2,0x1f,0xe5,0x78,0x8b,0xa4,0x55,0xfc,0xee, +0x96,0x8c,0xe3,0x8d,0x58,0x89,0x8a,0xa4,0x87,0x02,0xd9,0x54, +0x0d,0x9c,0x8a,0x51,0x7a,0xa0,0x62,0xcd,0xe2,0x2e,0x67,0x64, +0x71,0x06,0x8e,0x53,0x6e,0x30,0xfd,0xed,0xf3,0xae,0x17,0x99, +0x30,0x5d,0x09,0x42,0x98,0x53,0x6b,0x8e,0xab,0x47,0x5a,0x72, +0x76,0x47,0x83,0x43,0x0c,0x66,0x52,0x8c,0x4d,0xd5,0x51,0xf8, +0x9d,0x79,0x5c,0x91,0x77,0x3d,0x49,0x25,0xa1,0x3d,0xfa,0xce, +0x59,0x78,0x9f,0xc3,0x7a,0xe6,0x4c,0xee,0x99,0xfc,0xfc,0x19, +0xf5,0x2c,0xda,0xe0,0x6d,0x62,0x35,0x96,0x82,0xed,0x86,0x19, +0xbd,0x38,0x03,0x26,0x7d,0xdd,0x8b,0x91,0xba,0xcf,0xa9,0xe5, +0x2f,0xd6,0x85,0xc5,0x54,0x1b,0x49,0x29,0x58,0x79,0x0c,0x79, +0x23,0x03,0x66,0x16,0x7d,0x51,0xc4,0xa9,0x7f,0x2b,0xe5,0x59, +0x5f,0x71,0xc2,0x08,0x1d,0x89,0x13,0x06,0xd3,0x40,0x96,0x47, +0xad,0x34,0x49,0x43,0x72,0xe2,0x01,0x39,0x27,0x14,0x86,0x85, +0xe7,0xe4,0x0b,0xd0,0x58,0x71,0xf1,0x0b,0x99,0x5b,0xbd,0xd0, +0x5c,0x88,0x1a,0x2f,0xb4,0x17,0xe2,0x4c,0x5d,0x98,0xb9,0x82, +0xc5,0x62,0xb0,0xa4,0x8a,0xb1,0x63,0xef,0x73,0x09,0x4a,0x37, +0xdd,0x34,0x19,0xa3,0xb8,0xd4,0x88,0x97,0x48,0xc3,0xff,0xe6, +0x56,0xcf,0xd3,0x94,0x31,0x8a,0xab,0xd8,0x8b,0x8a,0x30,0xe9, +0xcb,0x1e,0x0c,0xd5,0x7b,0x4a,0xdf,0xdb,0x7c,0x5d,0x98,0x4f, +0x79,0x90,0x41,0x84,0x5e,0x94,0xa1,0xec,0xbd,0x71,0x19,0xc0, +0x17,0x3d,0x2b,0xa2,0x3c,0xc8,0x86,0x12,0x03,0xa9,0xb3,0xa8, +0x45,0xc8,0x22,0xf6,0xc8,0x68,0x2c,0x51,0x55,0xad,0x34,0xe2, +0xab,0x2a,0x8b,0x2a,0xb3,0xa9,0x16,0x5f,0x73,0x51,0x48,0x62, +0x33,0xaa,0xd2,0xeb,0x53,0x9b,0xe9,0x90,0xc5,0x01,0x42,0x27, +0xc9,0x2e,0x32,0xbe,0x46,0x05,0x6c,0xd8,0xbb,0x8d,0xb7,0x2f, +0x5e,0x1e,0xb6,0x6b,0xe6,0x0d,0x35,0x0e,0xea,0x6b,0x38,0x70, +0x10,0xa9,0x29,0x66,0xb3,0xbb,0x72,0xfd,0x6e,0x29,0x53,0xc5, +0xd3,0x9a,0x9e,0xd6,0xaa,0x02,0x8b,0x59,0xfd,0x34,0x05,0xf1, +0x9a,0xc5,0x5f,0xea,0x50,0x9a,0x81,0x10,0x43,0xe9,0x9a,0x38, +0x49,0x1d,0xe6,0x51,0xeb,0x90,0x85,0xb1,0x31,0x75,0x38,0xf3, +0x18,0x51,0x05,0xc6,0x1b,0x5c,0x4f,0x82,0x17,0x07,0x9b,0xfb, +0x70,0x33,0x84,0xea,0x60,0x28,0x8e,0xe8,0xc0,0x08,0x73,0x0e, +0x9d,0xf3,0xf0,0xcc,0x97,0xf8,0x66,0xb9,0x49,0x6f,0x42,0xf4, +0xc5,0x0c,0x70,0xe0,0x0d,0x73,0x14,0x8a,0x04,0x2d,0xe2,0xdf, +0xe7,0xd9,0xef,0xde,0x66,0xe5,0xcb,0x17,0x98,0x16,0xa9,0x67, +0xea,0x71,0xa3,0x2b,0xe8,0xfc,0x26,0xa8,0x56,0x1d,0xba,0xb3, +0x9d,0x12,0x50,0xb5,0x41,0xfb,0xa1,0xa0,0x21,0x6e,0x07,0x25, +0xa0,0xd6,0x9b,0x97,0xca,0xc5,0x75,0xf7,0xb3,0x94,0xe7,0x1c, +0x58,0x86,0x13,0x1d,0xc8,0xec,0x63,0xf1,0xfe,0xa8,0x1a,0x71, +0x88,0xb0,0x89,0xb0,0x92,0xd5,0xea,0x65,0xaa,0x77,0x22,0x55, +0xbd,0x41,0x7a,0x8f,0x71,0xa2,0x5c,0xf5,0x5e,0x92,0x54,0x6f, +0xa4,0x91,0x0c,0x6b,0x5f,0x4b,0x87,0x77,0x8a,0x1e,0x16,0x72, +0x70,0x1e,0x12,0xc8,0x8f,0xbd,0x0b,0x60,0xab,0x9e,0x68,0xcf, +0x78,0x1f,0xf3,0x3a,0xe1,0x79,0x9c,0x13,0x94,0xf5,0xc4,0x05, +0xec,0xbe,0xc8,0x04,0x75,0x98,0x95,0x03,0x33,0x0b,0xe1,0xb5, +0x0a,0xa5,0xa3,0x7d,0x96,0xd4,0x6c,0x4c,0xc3,0x95,0xb0,0xe3, +0xba,0x7c,0x2a,0x7a,0x4d,0x65,0xe6,0xaf,0x2b,0x09,0x65,0x1f, +0x99,0x31,0xe4,0x6e,0x4a,0xd2,0xa4,0x8c,0x24,0xec,0xa2,0x8f, +0x5c,0x20,0x1c,0x94,0x51,0x29,0xbb,0xcd,0xab,0xa5,0x37,0xfc, +0xf4,0x56,0xbb,0x9c,0x4a,0x25,0xac,0xab,0x3f,0xf0,0x99,0x14, +0xc4,0x76,0x0d,0xdb,0xdc,0x08,0x1c,0xe6,0x84,0xf9,0xa3,0xef, +0x11,0x34,0x86,0x59,0xb0,0xef,0x02,0xee,0x03,0x25,0xd0,0x86, +0x66,0xfc,0xf8,0x5f,0xe3,0x2f,0x80,0x09,0x18,0x33,0x15,0x23, +0x1b,0xe9,0x00,0xd5,0x70,0x0f,0xee,0xd7,0x81,0xa3,0xd0,0xc8, +0xe2,0x97,0xba,0x04,0xf7,0xa3,0x92,0x74,0xe9,0xfc,0x0c,0xf4, +0xa0,0x4a,0xdc,0x4d,0xff,0x3e,0x35,0x90,0x19,0xba,0x30,0x03, +0x87,0x58,0xe3,0x08,0xe3,0x48,0xd3,0x57,0xc9,0x91,0xa2,0xfb, +0x05,0xd4,0x3e,0x1c,0x23,0x6c,0xe9,0xbc,0x70,0xd0,0x03,0x93, +0x7a,0x71,0x12,0x4c,0x62,0x85,0x6f,0xc4,0xed,0xa4,0xeb,0x6e, +0xf9,0x97,0x69,0x30,0x9e,0x6b,0xc6,0x32,0x5d,0xf0,0x60,0x8f, +0x6c,0xf0,0xd9,0x65,0xa7,0xee,0xd2,0xe7,0x7d,0x35,0x78,0xc8, +0xd8,0x87,0xcf,0xda,0x5a,0xb2,0xab,0xf6,0x80,0x95,0x81,0x9e, +0xe5,0x5e,0xe7,0x22,0x23,0xfe,0x7a,0x45,0x5f,0x63,0x73,0x57, +0x8d,0x51,0x93,0x45,0x87,0x53,0x49,0x17,0x6f,0x5c,0x66,0xd5, +0xe0,0xd0,0xc6,0x89,0x79,0x45,0x94,0x2b,0xbf,0xa2,0x5c,0x87, +0x22,0x75,0x8e,0xd0,0xa9,0x70,0x84,0x45,0x94,0x9c,0xfd,0x67, +0xbe,0xe5,0xd0,0x48,0x0c,0x89,0xcf,0x8d,0xcf,0x8f,0xc9,0xd7, +0x88,0xe7,0x8f,0xf9,0x46,0xb8,0x85,0xbb,0x73,0xb8,0x0d,0x7f, +0x14,0x74,0xe1,0x47,0x66,0x74,0x61,0x16,0x49,0x96,0x35,0x72, +0x52,0xfc,0x5f,0xf3,0xaa,0x91,0xd3,0x87,0x0a,0xff,0x39,0x72, +0x56,0x25,0xd7,0xaf,0xa5,0xb8,0x81,0x7c,0x05,0x0f,0x97,0x49, +0xc9,0xa1,0x2a,0x62,0x1b,0x61,0x29,0xcb,0x70,0xfc,0x8f,0x82, +0xa9,0xbc,0xd6,0x3b,0xd6,0x4f,0x27,0xad,0xf5,0x94,0x74,0x98, +0x51,0xf8,0x05,0x5d,0xeb,0x29,0x82,0x36,0xf9,0x0e,0x1e,0x2e, +0x61,0x51,0x45,0xba,0xd3,0xd9,0xac,0x1b,0xcd,0x60,0x02,0xf8, +0xf6,0x88,0xe1,0x7a,0x60,0x8b,0x13,0xd0,0x50,0x1f,0x0c,0x29, +0x90,0x45,0xeb,0x0a,0xdd,0xbd,0x78,0x92,0xc1,0x3f,0xa8,0x06, +0xfa,0xb3,0x4b,0x2e,0x72,0xac,0xa8,0xfa,0x8f,0x75,0xe0,0x3f, +0x36,0x8c,0x9c,0x23,0xde,0x45,0x0e,0xc5,0x6e,0x99,0xce,0x8e, +0x7c,0x71,0x40,0xa5,0x67,0x81,0x3b,0x77,0x7e,0xd4,0x93,0x38, +0x37,0x79,0x5f,0x0f,0x7a,0xd6,0xfe,0x4b,0x35,0x4c,0x2b,0x84, +0x45,0x86,0x29,0x7c,0x00,0xb2,0xde,0x8b,0x9c,0xd7,0x1e,0x86, +0x71,0x47,0x81,0x9c,0x86,0xd9,0x1c,0x6c,0xed,0xc1,0xad,0xc0, +0xe9,0x21,0x87,0x37,0x71,0x33,0x83,0xf5,0xc1,0xb8,0x5c,0x17, +0xdf,0x53,0xee,0xb0,0x50,0xb8,0x0c,0x1f,0xa5,0xc0,0x4e,0x68, +0x9f,0x41,0xd1,0x32,0x9d,0x3d,0x83,0xbb,0x12,0x71,0x6d,0x01, +0x2a,0x1a,0x2f,0x55,0xdf,0xbe,0x45,0xbd,0xc2,0x8c,0xbf,0xde, +0xdb,0x37,0xd4,0x72,0x3f,0x73,0x5f,0xae,0x6e,0x89,0x6d,0x99, +0x55,0x5f,0xe2,0xf9,0x9e,0x34,0xb0,0xe5,0x8d,0xb2,0x15,0x46, +0x35,0x85,0x61,0x92,0xb8,0xb6,0x69,0xdf,0x63,0xd5,0xd2,0x2e, +0x7e,0xdb,0x4d,0xab,0x9b,0x01,0x52,0x41,0xca,0x7f,0x9b,0x9d, +0xea,0x6a,0x49,0xbd,0x3d,0xbd,0xd9,0xf6,0x3c,0xf9,0x19,0x95, +0xf8,0x68,0x4c,0x0c,0x40,0xab,0x8b,0x15,0x2d,0x31,0x72,0x2c, +0xdd,0x36,0x71,0x2c,0xdd,0x36,0x51,0x9e,0x6e,0xbb,0xcc,0x50, +0xc2,0x25,0x4f,0xb7,0xbd,0x48,0x87,0x49,0x45,0xb7,0xf3,0x4f, +0xf5,0xf0,0xae,0x91,0x8e,0x91,0x0e,0x51,0x1c,0x94,0x0b,0x0b, +0x88,0x38,0xbf,0xf3,0x1a,0x4c,0x95,0xae,0xfa,0x9b,0x26,0x5d, +0xb5,0x12,0xfa,0x09,0x86,0xb2,0xf8,0xd4,0x44,0x4a,0xc4,0x5d, +0x94,0x27,0xe2,0xd4,0x23,0xb5,0x43,0x8d,0xa4,0x44,0xdc,0x22, +0x29,0x11,0xb7,0x89,0x82,0x49,0x8a,0x64,0x18,0x4f,0x64,0x86, +0xf1,0xe1,0x48,0x2c,0xc9,0xde,0x04,0xe3,0xf6,0xc2,0x07,0x7b, +0x0b,0xbb,0x78,0x9c,0x7b,0x6d,0xe9,0x27,0xae,0x57,0x38,0x3c, +0xab,0x0f,0xcb,0x18,0x2b,0xdd,0xdd,0x96,0x0b,0x2c,0xcf,0x45, +0x4b,0x43,0x18,0x0e,0x90,0xe3,0xbd,0xfd,0xab,0x24,0x62,0xeb, +0x98,0x32,0x59,0xd3,0xa8,0xf6,0x78,0x53,0x7a,0x11,0x9f,0x65, +0x0d,0x33,0xfb,0x7f,0x1a,0xca,0xff,0x4a,0x09,0x36,0xa0,0x0f, +0xf5,0x8b,0x61,0x7d,0x16,0x33,0x50,0x83,0x00,0xd7,0x8b,0xdc, +0xdf,0xd2,0x88,0xd3,0x75,0xa9,0xbe,0x96,0xd2,0x88,0x26,0xf2, +0x71,0xfd,0x9c,0x01,0x53,0xe4,0x69,0x44,0x47,0x79,0x1a,0x51, +0x88,0x16,0x34,0xc8,0xe1,0x65,0xbe,0x2b,0x9d,0x56,0x55,0x7c, +0x54,0x8a,0xe3,0x32,0x3f,0xe8,0x4c,0xe7,0x03,0x7f,0x75,0x80, +0x89,0xde,0x43,0x79,0x97,0x8a,0xbe,0xcd,0x7c,0xc9,0x3d,0x8d, +0x23,0x01,0xcb,0x3c,0x57,0xd9,0xad,0xae,0xfb,0xa8,0x62,0x4e, +0xc1,0xdc,0xb6,0x0c,0xde,0xef,0x7b,0x2b,0x98,0xea,0x71,0xb5, +0xf4,0x7a,0xd1,0x17,0xd9,0xdf,0x72,0xa2,0xbf,0xd8,0x45,0x84, +0x93,0x30,0x47,0xdc,0xb9,0x91,0x4d,0xd6,0x55,0xb8,0xce,0xd4, +0xa6,0xa6,0x35,0xaa,0x08,0xde,0x78,0x5e,0x6c,0x63,0xa9,0x8b, +0xbf,0x24,0xde,0x15,0xf6,0x55,0x2e,0x85,0x6e,0x4e,0x7c,0x99, +0x7b,0xa5,0x43,0xbe,0x33,0x1d,0x32,0x2a,0xd0,0x59,0x4b,0xa0, +0xee,0x64,0x3e,0xe6,0x4e,0x06,0xd2,0xac,0x2d,0xa1,0x22,0x55, +0x72,0xa7,0x36,0xb9,0x3b,0xf9,0xf5,0x71,0x42,0x00,0xea,0x13, +0xcf,0x4a,0xc7,0x2a,0xa7,0x12,0x57,0x47,0xbe,0xdc,0xad,0xca, +0xbe,0xc0,0x51,0x4a,0x4c,0xc3,0xd7,0x64,0xb9,0x30,0xee,0xd3, +0x2e,0xd5,0xc7,0x9a,0xeb,0x30,0xfd,0xb1,0xf6,0xba,0xcd,0x06, +0xf7,0xc5,0x71,0xf3,0xf5,0xba,0xc4,0x09,0x17,0xfa,0x05,0xfd, +0x0b,0xa2,0x3e,0x0d,0x77,0x2c,0x73,0x6a,0x93,0x9b,0xd9,0x6e, +0xeb,0x0a,0x4b,0xfe,0x41,0x7b,0xcd,0xc5,0xf3,0x2f,0xb9,0xdb, +0xf8,0x06,0x63,0x99,0x71,0xb8,0x51,0xf9,0x5b,0xa6,0x2c,0x2d, +0xb9,0x4c,0xe5,0x13,0xd6,0x34,0x49,0x61,0xc3,0x66,0x36,0xe8, +0x58,0x74,0xa6,0xca,0xef,0xb0,0x9e,0x1d,0xb5,0x13,0x62,0x28, +0xf7,0xea,0xa0,0xa8,0x5d,0xfa,0x37,0xd8,0xf2,0xdb,0x6a,0xa9, +0xfa,0xa1,0xb4,0x16,0x5f,0xdf,0xea,0x91,0x08,0xba,0x70,0x47, +0xda,0x1a,0x97,0xfe,0x14,0xd2,0x19,0xb1,0x1d,0x5f,0xfe,0x0d, +0xc2,0x42,0xf4,0x9e,0xd0,0x79,0x9f,0x27,0x1d,0x8f,0x21,0x41, +0x98,0xfe,0xdf,0x21,0xec,0xe9,0xdf,0x20,0x4c,0x68,0x17,0xe2, +0xc9,0x6a,0x4c,0x7f,0xc6,0x42,0x3a,0xbe,0x4f,0x56,0x60,0xfa, +0x17,0x2c,0x3a,0x62,0x9f,0x2c,0xe0,0xc6,0xf7,0x99,0xfe,0x85, +0x3d,0x7e,0x63,0x99,0xc9,0xa4,0x57,0xd8,0x23,0x0b,0xb8,0xa7, +0x28,0x85,0x4e,0xd8,0x5e,0xa3,0x7d,0x7b,0xaf,0x84,0x19,0x03, +0x76,0x03,0x81,0x97,0xc6,0x32,0x88,0xf3,0xff,0x96,0x91,0x19, +0x31,0xc1,0xe5,0x64,0xd7,0x05,0xf3,0x1e,0xfb,0xeb,0x1c,0x06, +0x4a,0x97,0x94,0x97,0xab,0x77,0xa9,0xdd,0xd4,0x91,0xee,0x98, +0xb2,0x24,0x5e,0xda,0x36,0x7a,0x86,0x66,0x15,0xa6,0x7c,0x5f, +0x57,0x43,0x7f,0xf1,0x25,0xe9,0xd4,0xaa,0x9d,0xa4,0x0b,0xef, +0x19,0xb0,0xf8,0xae,0x18,0x22,0x41,0x8c,0x74,0x1a,0x1c,0x0d, +0x3b,0xb2,0x02,0xa8,0x44,0x9b,0x4f,0xc9,0x32,0x8f,0xcb,0x75, +0x61,0x39,0x0d,0x3b,0xba,0xe1,0xaf,0x2a,0x28,0x13,0xd3,0x81, +0x14,0x3e,0x2b,0xe0,0x84,0xd3,0xf0,0x31,0x49,0x88,0x4c,0xa4, +0xff,0x8a,0xfb,0xf9,0xdd,0xbd,0xe6,0xbd,0xf6,0x43,0x1c,0x06, +0xe9,0xd3,0xe0,0x9e,0x67,0x56,0xab,0xdf,0x6d,0xcc,0x89,0x1f, +0x31,0x75,0x0d,0x25,0x2d,0x79,0x2d,0x16,0xe5,0xbc,0xa7,0xb6, +0x95,0x8e,0xae,0x79,0x85,0x09,0x9f,0x92,0x9c,0x92,0x9c,0x94, +0xcc,0x61,0xde,0x07,0x06,0xc2,0xb3,0xae,0xdd,0xac,0x58,0x27, +0x8f,0x46,0xfd,0xaf,0x2a,0xa5,0xff,0x6b,0x46,0x47,0x08,0xd8, +0x4e,0xd0,0x7b,0x17,0x78,0xb3,0x94,0x73,0x79,0x13,0xf0,0xbe, +0x85,0xde,0xd2,0xf5,0xf2,0xde,0x9f,0xd0,0xcf,0x53,0x46,0xf4, +0x46,0x3e,0x23,0x87,0xd6,0x61,0xb8,0xae,0xd0,0xd4,0x8b,0x67, +0x19,0xf1,0xdc,0x6d,0xf2,0x9f,0x04,0x24,0x96,0xf9,0x4f,0x92, +0x02,0x16,0xe2,0x74,0x22,0x2c,0x05,0x63,0x71,0x29,0x33,0x80, +0xf3,0xc9,0x37,0x50,0xbf,0x94,0x15,0x2f,0xa1,0xca,0xff,0x17, +0xa2,0x12,0x4c,0xd7,0x56,0x58,0x2a,0xbc,0x85,0x5f,0x22,0x61, +0x53,0xb5,0xa4,0xee,0xf0,0x96,0x8c,0x8c,0x66,0x15,0x61,0xba, +0x78,0x4c,0xb4,0x61,0x17,0x83,0xdd,0x7f,0x47,0x36,0x04,0x4d, +0x4b,0x82,0xb9,0xdd,0x03,0xa0,0x01,0xf6,0x52,0x1f,0xc4,0x4a, +0xf2,0x1b,0xcc,0x98,0x4d,0x87,0xf8,0x2f,0xe1,0x77,0xd2,0x2c, +0x9d,0xe4,0xdd,0xc5,0xea,0x24,0x28,0xa8,0xe1,0x35,0xd6,0x26, +0x2c,0xb6,0x46,0x25,0x87,0x85,0x79,0x71,0xa0,0x92,0x04,0xd3, +0xf2,0x7c,0x5b,0xf9,0x59,0x7e,0x38,0x2b,0x14,0x95,0x8f,0x71, +0x83,0x5a,0x38,0x9b,0xdd,0x5b,0xe0,0x77,0x43,0x19,0x6f,0xc0, +0x21,0x4a,0x4f,0xdb,0x25,0x91,0xd1,0x2d,0x65,0xf4,0x87,0xfd, +0x3f,0x91,0xd1,0xd3,0xbf,0x48,0xc7,0xd3,0xe4,0x2f,0x38,0x58, +0x36,0x6a,0x4e,0x79,0xbd,0x85,0x8c,0xd7,0xf7,0xc9,0xb9,0xc6, +0x1b,0x5f,0x74,0xd3,0x35,0x7d,0x84,0x6f,0xc8,0xb9,0xc6,0x35, +0xca,0x35,0x0c,0x22,0xe5,0x13,0xc0,0x50,0x5e,0x5f,0xfc,0xa4, +0x90,0xfb,0x0e,0x26,0x10,0x61,0x87,0x96,0xe8,0x2f,0x14,0x77, +0xb1,0x8e,0x7d,0x44,0x50,0x10,0x5f,0x13,0x15,0x58,0x18,0x84, +0x4f,0x88,0x36,0x26,0x5c,0x60,0x21,0x61,0x0e,0xd1,0xc2,0x84, +0x7e,0x16,0xcb,0xb0,0x46,0x9a,0x82,0x81,0xb1,0x6c,0x7c,0x84, +0x76,0x88,0x2c,0x1b,0xbf,0x48,0xb2,0xf9,0x57,0x69,0x0f,0xef, +0x67,0x74,0x0a,0x46,0x8e,0x9f,0x24,0x1a,0x98,0x30,0xc0,0xa2, +0x83,0xf8,0x2e,0xb9,0x9f,0xff,0xa0,0xe6,0x42,0xa3,0x43,0x3d, +0xaf,0x6d,0xb3,0xdd,0x69,0x8b,0x2f,0x07,0xbf,0x77,0x92,0x1b, +0x5e,0xb7,0x9c,0x6f,0x5b,0x15,0xb7,0xf3,0x7b,0xeb,0xb6,0x57, +0xec,0xc8,0xa3,0x21,0xf7,0x8f,0x11,0x6d,0x82,0xcc,0x05,0x1a, +0x25,0x43,0x9f,0x69,0xac,0x46,0x2f,0xdc,0xd0,0x07,0x0c,0x8b, +0xa1,0x5f,0x93,0x84,0x4d,0xd5,0x12,0xdf,0xea,0xe4,0xd5,0xae, +0xd9,0x49,0x09,0xbf,0x1d,0xb2,0x62,0xc6,0x52,0xb9,0x8f,0x77, +0xcb,0xf4,0xd5,0xb7,0xb8,0x88,0xd8,0x6f,0xd1,0xd7,0x5e,0x6f, +0x5a,0x64,0xcc,0x3f,0xe9,0xb8,0x74,0xad,0xe9,0x19,0xf7,0xe2, +0x08,0x19,0xd2,0xb9,0xa0,0x71,0x49,0xb5,0xae,0x9a,0xd7,0xb8, +0xa3,0x76,0xe3,0x60,0x07,0x27,0x46,0x62,0x3d,0x91,0xa5,0x75, +0x61,0xd2,0x17,0x3d,0x18,0x4c,0x59,0xd8,0x24,0x9c,0xab,0x0b, +0x73,0x65,0xa6,0x61,0x40,0x4d,0x43,0x42,0x66,0x36,0x03,0xa6, +0xbf,0x0a,0x00,0xb2,0xd9,0x1c,0x31,0x00,0x27,0x82,0xf3,0xee, +0xad,0x78,0xe4,0xfc,0x9c,0xd3,0x66,0x5c,0x57,0xad,0x59,0x83, +0xf3,0x76,0xe6,0x1b,0xf2,0xb9,0x89,0x39,0x49,0x59,0x49,0x1c, +0x3e,0xeb,0x1f,0x80,0x5a,0x8d,0x01,0x0a,0x37,0xd9,0x47,0x72, +0xc2,0x72,0xc3,0x38,0xd1,0xb8,0x85,0xfc,0x78,0xf9,0xea,0x70, +0xc6,0x7d,0x69,0x5b,0xf5,0xb6,0xc1,0xdd,0x2f,0xf7,0x73,0x62, +0x36,0x35,0x30,0xb9,0x05,0xc9,0x39,0x9a,0xcc,0x82,0x7c,0xff, +0xc9,0x82,0x56,0x2c,0x26,0x50,0x4b,0xc9,0x55,0x2d,0x33,0x05, +0x7c,0x24,0x85,0xb9,0xa9,0x45,0xfd,0xf1,0x0e,0x1a,0xe5,0xb6, +0x0c,0x59,0x0e,0x06,0x0c,0x4a,0x8b,0xbf,0xdd,0x52,0x5e,0xce, +0xf9,0xf2,0x66,0xcf,0xf3,0x54,0x0a,0x9a,0x8f,0xe6,0x13,0xb7, +0x16,0xdb,0x16,0x9b,0x1a,0x1b,0x3b,0xbe,0xd6,0xb6,0xc6,0xbc, +0xd4,0x9c,0x13,0x1c,0xac,0x88,0xc9,0x45,0xeb,0x61,0xef,0xfb, +0x1c,0x2e,0x36,0x84,0xd7,0x99,0x5c,0xb5,0xc6,0xcd,0x6d,0x9a, +0x1c,0xfe,0x7e,0x9a,0xf4,0x0d,0xd4,0xdf,0xcf,0x1e,0x34,0xc9, +0xe3,0xfd,0xf7,0xdb,0xed,0x31,0xd6,0xe7,0x70,0xa5,0x0d,0xa9, +0xb3,0xab,0xb1,0x28,0xb5,0xa8,0xab,0xe1,0xdd,0x1b,0xac,0x5b, +0x6d,0xab,0x28,0x4d,0x16,0x8b,0xc9,0x93,0xdb,0x77,0x9f,0x9d, +0x01,0x25,0xd9,0x05,0x87,0xd3,0xaf,0x6c,0xfc,0x61,0x5d,0x65, +0x3b,0xbf,0xe0,0x99,0xe6,0xa3,0xa8,0x07,0x1c,0xac,0xe9,0xa6, +0x34,0xfa,0x5d,0x78,0xbd,0x1b,0x8b,0xf5,0x61,0x1c,0xbe,0x8b, +0x6b,0xf4,0x61,0x29,0x13,0xb5,0x4e,0x73,0xdd,0x92,0x8d,0x1c, +0x6a,0x06,0xff,0x69,0x8d,0xcd,0x72,0x6b,0x64,0x9f,0xf7,0xa0, +0xbf,0xde,0x43,0x2a,0x98,0x64,0xd6,0xd8,0xc7,0x1a,0xfc,0xa9, +0x32,0x5f,0x59,0x23,0x2c,0x80,0x9b,0x04,0xdf,0x32,0xb8,0x89, +0xef,0x33,0x73,0x7c,0xac,0x56,0xda,0x28,0x67,0x69,0x3e,0xaf, +0x2b,0xea,0x3a,0x73,0x4f,0x29,0x86,0x59,0x75,0xbe,0x57,0x1d, +0x66,0xcf,0x84,0x64,0x26,0xf1,0x82,0x02,0xe6,0x31,0x38,0xdd, +0xbc,0x07,0x58,0x15,0xd1,0x09,0xa6,0x92,0x3c,0xdd,0x5c,0xd5, +0x44,0x4d,0x69,0x0e,0xfb,0xbd,0x1f,0xd3,0x39,0x04,0x77,0xdc, +0x43,0x52,0x7b,0xe8,0x6c,0xf7,0x48,0xc6,0xaa,0x19,0xae,0x13, +0x6a,0x2c,0x65,0xc7,0x85,0xc9,0x64,0xff,0xc9,0x68,0x13,0x98, +0x11,0x07,0x93,0x53,0x5e,0xa6,0x2b,0x9d,0x6c,0xda,0x19,0xb6, +0x39,0x72,0xdd,0x51,0xa5,0x41,0xf0,0x69,0x42,0x9f,0x16,0xa0, +0x54,0x86,0x35,0xc9,0x0a,0xba,0xaa,0x4c,0x65,0x5c,0x55,0x72, +0xa2,0x74,0x28,0x82,0x49,0xb2,0x82,0x2e,0x06,0xb2,0xde,0x47, +0xe3,0xb2,0x55,0x32,0xd8,0x1f,0xe3,0x7e,0x4d,0xbb,0x9f,0x11, +0xdc,0xc8,0xef,0x0e,0x5e,0x1c,0xb2,0x30,0x8a,0xbb,0x08,0xe9, +0x34,0xb6,0x9c,0xee,0x83,0xe6,0x0e,0x71,0x7a,0xff,0x6e,0x2d, +0x51,0x09,0x23,0x58,0x8c,0x0a,0x46,0x73,0x5d,0x54,0x52,0xee, +0x36,0xed,0x87,0x05,0x59,0xe0,0x76,0x06,0x8e,0x2b,0x3d,0x67, +0x7e,0x95,0x0e,0x8f,0xd7,0xeb,0x03,0x3d,0x06,0x4e,0xe9,0x10, +0xd4,0xea,0x03,0x2d,0x46,0xdc,0x4f,0x03,0x7f,0x17,0xe8,0x19, +0xb0,0x7d,0x5d,0x04,0xb4,0x0c,0x50,0x8b,0x11,0x76,0x2b,0xa2, +0x66,0x17,0x68,0x32,0xcd,0x62,0x35,0x69,0xc6,0xab,0x9d,0xb0, +0xb2,0x8c,0xed,0x3f,0x7c,0xe3,0xc8,0xdd,0x90,0xb4,0x4e,0x1e, +0x33,0x9a,0x57,0xd5,0x79,0x37,0x71,0x3a,0x8c,0x8f,0xc5,0x26, +0x1b,0x3c,0x6b,0x96,0x6a,0xc4,0x0f,0x26,0x0d,0x24,0x77,0xa6, +0x70,0x9e,0xb0,0xce,0x10,0x2f,0x98,0xc3,0x85,0x05,0x28,0x98, +0x8d,0x64,0xb4,0x88,0xe3,0x7f,0x64,0xbd,0xc0,0x9f,0xa4,0xdb, +0x77,0x78,0x7d,0xe2,0xcb,0x61,0x09,0x73,0x2d,0xb7,0xa5,0x30, +0x9d,0xae,0xed,0x21,0xbc,0x4b,0x72,0x73,0x73,0x8a,0x53,0x0b, +0x75,0x53,0xf8,0x10,0x4f,0x7f,0x0f,0x5f,0x3f,0x0e,0x63,0x15, +0x0f,0xe7,0xfb,0x16,0xfb,0x65,0xeb,0x1d,0xe6,0x73,0xfc,0xf3, +0xdc,0x52,0x7d,0xe8,0x8c,0x05,0x4b,0x9b,0x50,0xd6,0xb4,0xee, +0x7b,0x2a,0xa1,0xec,0x96,0x9b,0xe6,0x37,0xfd,0x65,0xa4,0x6d, +0xab,0xcd,0xe6,0xe5,0x92,0xfd,0x7d,0x7e,0xab,0x53,0x52,0x3c, +0xc2,0x1b,0xe2,0x2a,0xf2,0xe2,0x2e,0xe8,0x6d,0xfd,0xf6,0xd3, +0x4e,0x4c,0x11,0x43,0x21,0xbd,0x93,0x6d,0x3c,0x48,0x1a,0xaa, +0x2b,0xea,0x8a,0x1a,0x4a,0x2c,0x2a,0xad,0x1a,0x6d,0x8b,0xbb, +0x79,0x8b,0x5a,0xc7,0x3a,0x8f,0xa6,0xc6,0x07,0xf9,0x5f,0xa7, +0xc0,0xeb,0x94,0xe4,0x87,0xea,0x82,0x1a,0x1b,0xb1,0x31,0x70, +0x9b,0xab,0x9a,0xdb,0x40,0xe0,0xb5,0xd0,0xbb,0xa6,0x81,0x7c, +0xfa,0xaa,0x7c,0xd5,0x9a,0x5d,0x9e,0xe6,0x8e,0x36,0x56,0x0e, +0x1c,0x2e,0x10,0xe6,0x91,0x0f,0xb7,0x7c,0x2b,0xed,0xed,0x9f, +0x4b,0x3e,0xc4,0xa5,0xdf,0xb2,0x2b,0xc5,0x02,0x62,0x13,0x66, +0x4e,0x55,0x8f,0xd4,0xea,0x3d,0xb5,0x07,0xa7,0xc2,0xa4,0x67, +0xdd,0xe8,0xa3,0xff,0x19,0x75,0x66,0x65,0x3d,0x50,0xc6,0xab, +0xac,0x51,0xa4,0xa1,0x3c,0x65,0x0b,0x0a,0xd4,0x99,0x8b,0xa5, +0xf4,0xc5,0x7a,0xe1,0x20,0x59,0xb8,0xe5,0x05,0x2b,0x7e,0x84, +0x87,0xa8,0xc7,0x51,0xee,0x22,0xa9,0xa2,0x70,0xaa,0x8a,0xa4, +0x3c,0xad,0x33,0xee,0x93,0xf2,0xb4,0x52,0x74,0x4f,0xe0,0xa3, +0x34,0x64,0xe9,0x83,0x11,0xe5,0x68,0xd2,0x8b,0x3e,0xbf,0xaa, +0xcf,0x41,0x57,0x5d,0x70,0xc5,0x99,0x98,0xa2,0x23,0x5c,0xef, +0xc3,0xb3,0x30,0x93,0x9d,0x02,0xb7,0xe1,0x12,0x79,0x0c,0xc6, +0x4d,0x68,0xdc,0x0a,0x3b,0xc0,0x0d,0x77,0x34,0x81,0x79,0x33, +0x9a,0x77,0x68,0x1b,0xa1,0xb5,0x39,0x58,0x5b,0xe0,0x0e,0x74, +0x83,0x1d,0xa6,0xe8,0x68,0x01,0x8e,0xeb,0x58,0xe8,0xaa,0x26, +0xed,0x0f,0x33,0x9e,0xc4,0xdc,0xe7,0x60,0x16,0x56,0x5e,0x84, +0x4a,0x98,0xdc,0x89,0x37,0x32,0x98,0x07,0xec,0xef,0x31,0xbf, +0xa4,0x3c,0x2d,0xf4,0x68,0xe3,0x57,0x7a,0xe0,0xf8,0x30,0x54, +0x3c,0xce,0xcd,0x66,0x71,0xfc,0xc9,0xe5,0x07,0xe7,0x29,0xe3, +0xc7,0x50,0x4a,0x8c,0x71,0x4a,0x3b,0x0b,0x3b,0x8c,0x49,0x3b, +0x4c,0x33,0x66,0x71,0x97,0x3d,0x31,0xc4,0x29,0x9d,0xf4,0x89, +0x21,0xe9,0x84,0x69,0x86,0x2c,0x1c,0xc7,0x56,0x72,0x2d,0xf8, +0x69,0x08,0x8c,0x0b,0x4d,0xe9,0xe0,0xb1,0xb3,0x7a,0x5d,0xbd, +0x59,0x3b,0xb7,0x99,0x31,0x33,0xde,0x6a,0x8d,0x2d,0xf6,0x69, +0x46,0xfc,0xef,0xa9,0x8f,0x53,0x06,0x33,0xa8,0x75,0x7c,0xa8, +0x2b,0x8e,0x33,0x83,0x0d,0xac,0xad,0x5f,0x91,0x5b,0x96,0x77, +0xb6,0x9b,0x12,0x06,0x99,0x8c,0x88,0x6d,0x18,0xc1,0x14,0x97, +0x64,0xe5,0x66,0x95,0x5b,0x66,0xf3,0xb0,0xa7,0x45,0x7c,0xab, +0x17,0xd6,0x32,0xa8,0x05,0xd3,0x49,0xa1,0x5d,0x93,0xc7,0x10, +0x35,0x9c,0x62,0xe6,0x6a,0x6e,0x7d,0x51,0x61,0x0d,0xe7,0x85, +0x21,0x64,0x16,0xae,0x62,0x6b,0x73,0x03,0x4b,0x7c,0x8b,0xbc, +0x0a,0x94,0x04,0x0d,0xc5,0x60,0x77,0x3f,0x2f,0x57,0xb7,0x0a, +0x3f,0x1e,0x57,0xfd,0xce,0x4c,0x19,0xd9,0x3b,0x12,0x46,0xbe, +0xd6,0xf8,0x08,0x83,0x70,0x6d,0x3f,0x8c,0x13,0x54,0xe7,0x61, +0x9f,0x3e,0xcc,0x67,0xa3,0xec,0xc2,0x2c,0xc3,0x6c,0xb8,0xb9, +0xe2,0xb1,0xee,0x41,0x30,0xdd,0xdf,0x23,0x1c,0xc3,0x25,0x4c, +0x72,0x6d,0x62,0x63,0x5c,0x2d,0x07,0xd3,0x5b,0xcb,0xe8,0x4b, +0x8e,0x1a,0xb6,0x91,0xf8,0x5d,0xe5,0x86,0x37,0xa5,0xfe,0x44, +0xf5,0x7e,0xa7,0x9e,0xa0,0x8b,0x32,0x5b,0xb3,0x54,0x95,0xd9, +0xda,0x17,0xb7,0x7a,0x9e,0x53,0x76,0x0d,0x75,0xb8,0x97,0x78, +0xcc,0x36,0x42,0x76,0xff,0xd2,0x62,0x7d,0x3e,0xb7,0x22,0xa7, +0x3a,0xa3,0x9a,0x13,0xf7,0xf5,0x0a,0xf5,0x6c,0x66,0x6b,0x6a, +0x73,0x62,0x03,0x87,0x57,0xf0,0x04,0xf9,0xc7,0xd4,0xd6,0x20, +0x23,0x41,0xa0,0xd1,0xb1,0x57,0x1c,0xa0,0x58,0xc6,0x01,0xac, +0xc3,0x4c,0xc3,0x4c,0x28,0xd3,0x9b,0x09,0x3b,0x08,0x28,0x83, +0x29,0x2a,0xb3,0xa3,0xb9,0x97,0xfe,0xbb,0x2c,0x13,0x8c,0xce, +0x21,0x30,0x87,0xfe,0xce,0x1c,0x8a,0xf1,0x33,0x85,0xd9,0x04, +0x16,0x0e,0xc2,0x3b,0xc0,0x55,0xc2,0x3a,0xae,0x06,0xd7,0xb3, +0x49,0x19,0x09,0x59,0x71,0x59,0xfa,0x71,0xbc,0xeb,0x3e,0x9d, +0xfd,0x5b,0x2d,0x0b,0x2c,0xf8,0x96,0xa2,0xa6,0xca,0xca,0x06, +0xe9,0x44,0xc9,0x30,0x33,0x3f,0x2b,0x0f,0x3b,0xdf,0x12,0xcf, +0x02,0x9f,0x6c,0x27,0x77,0xbe,0x80,0x2e,0x4b,0x9e,0xcb,0x91, +0xd0,0x90,0x23,0x21,0x47,0xfc,0xca,0x3d,0x4b,0xbd,0x0a,0xec, +0x3d,0xf8,0x7c,0xaf,0x42,0x97,0x1c,0x17,0x57,0x3f,0xc7,0x40, +0xfb,0x10,0x8e,0x4a,0xf1,0x71,0x04,0x92,0xf4,0x70,0x08,0x16, +0xe1,0x78,0xdc,0xa1,0x7b,0x21,0x8c,0x45,0xc5,0xc3,0x38,0xd5, +0x04,0xc7,0x2b,0x37,0xd9,0x29,0x74,0xc2,0x94,0x6c,0x78,0x0f, +0xe6,0xce,0x48,0x18,0x14,0x97,0x77,0xff,0x31,0x5f,0x1f,0xab, +0x59,0x7c,0x04,0x47,0x49,0x82,0x6a,0x9d,0xe6,0xa7,0xdb,0xa9, +0x0b,0xef,0x1e,0xb2,0xbb,0x1c,0x28,0x25,0x2d,0x02,0xb6,0x39, +0xa8,0xae,0xdf,0x49,0x75,0xd7,0xc3,0xe1,0xd6,0xcf,0x93,0x9e, +0x72,0xbf,0x62,0x1a,0x95,0x27,0x36,0xfa,0x9f,0x50,0x91,0xf5, +0x8e,0x74,0x2c,0xd4,0x15,0xd6,0x8c,0x8a,0x11,0x0b,0xc9,0x8d, +0x7e,0xc8,0x80,0x49,0xc5,0x9f,0x48,0x22,0xcb,0x25,0xc2,0x21, +0xd2,0x2e,0x52,0xaa,0xc3,0xbe,0xde,0x83,0xaf,0xc3,0x44,0x76, +0x44,0x95,0xce,0x09,0xcc,0xd7,0xc1,0xf9,0xe8,0x6b,0x00,0xbe, +0xd8,0x8f,0x73,0xd9,0x64,0x3d,0x05,0x78,0x87,0x69,0xc8,0xc8, +0x68,0x54,0x81,0xce,0x2b,0xd2,0xdd,0x2b,0xe8,0x4c,0x92,0x7b, +0x13,0x06,0x62,0x7a,0xcd,0xe5,0xd2,0x2b,0x8c,0xb2,0x44,0x4b, +0x99,0x26,0xcf,0xde,0x98,0x20,0x93,0x5e,0x17,0xfd,0x24,0x11, +0x31,0xb2,0x17,0xdd,0x88,0x5f,0x87,0x53,0xbf,0x4b,0xbd,0x85, +0x07,0x5f,0x66,0x5d,0xa9,0x9e,0x4d,0xc3,0xf6,0xc8,0x6b,0x42, +0x0e,0x29,0x69,0xc8,0x6d,0xcc,0x6c,0xe5,0x20,0xe5,0x02,0x1e, +0x63,0x12,0x2b,0xe3,0x6a,0xe2,0xea,0xf5,0xe2,0xf9,0x40,0x64, +0x9d,0xd6,0xe8,0x6c,0xe1,0xf0,0xf5,0x8f,0xc8,0x45,0xf6,0x17, +0x58,0xd2,0x37,0x0b,0x16,0xe9,0xe2,0xa2,0xd9,0x86,0xac,0xe6, +0x90,0xcb,0x15,0x59,0x7a,0x26,0x60,0xab,0xd3,0xe6,0x8d,0x92, +0xc2,0xfc,0xec,0x56,0xf3,0xb3,0xa4,0x67,0x14,0x92,0xe3,0xd7, +0x55,0x1f,0xb8,0xbf,0x89,0x1a,0x59,0x64,0x82,0xc2,0x05,0x9c, +0xc8,0x60,0x94,0x3f,0xae,0xd9,0x81,0x73,0x95,0x1b,0x2c,0x6e, +0xc1,0xac,0x42,0x58,0x10,0x03,0x26,0x4a,0x9f,0x33,0xb8,0xf4, +0x38,0x4e,0x8c,0xdc,0xac,0x6c,0x78,0x2c,0x2c,0xcc,0x79,0xa6, +0x1a,0x43,0x59,0x61,0x3f,0x73,0xa9,0x30,0xf7,0x41,0x82,0x4a, +0xe2,0xc3,0xf3,0xa0,0x08,0x76,0x33,0xe0,0x25,0xba,0x93,0x1e, +0x7c,0x0f,0x56,0xc0,0xe4,0x6e,0x34,0x65,0x13,0x4a,0xe3,0xcb, +0x62,0xcb,0x8c,0xe2,0xf8,0xa0,0x0d,0x2e,0x1b,0x4d,0x35,0x1b, +0x1c,0xf9,0xdc,0x92,0xcc,0x8a,0xb4,0x6a,0xae,0x15,0x57,0x48, +0xd3,0x3a,0x8d,0x09,0x9b,0xab,0xb7,0x72,0xe5,0xfa,0x72,0x63, +0xfe,0xc7,0xef,0xeb,0x1f,0xc4,0xc1,0x38,0x0a,0xad,0xb1,0x73, +0xea,0x54,0xbf,0x9e,0x5f,0xd1,0xc1,0xaf,0x7e,0x6e,0xf2,0x38, +0xfc,0x27,0x89,0xa7,0xac,0x27,0xd2,0x4c,0xdb,0x53,0xf0,0xec, +0x85,0x71,0x3d,0x38,0x0e,0x26,0xdd,0xef,0x46,0x0b,0xfd,0x9b, +0x34,0xc6,0x4d,0xd5,0x83,0xa9,0x94,0xca,0x99,0x47,0x98,0x45, +0x5a,0x4a,0x8b,0xf3,0x6d,0x06,0x4c,0x2c,0xbe,0x95,0xcf,0x61, +0x15,0xa4,0x52,0x2d,0x9b,0xbd,0x21,0x41,0xbd,0x2d,0x85,0x8f, +0x18,0xf0,0x7b,0xe6,0x77,0x81,0x03,0x03,0xba,0x3c,0x49,0x7d, +0x09,0x97,0x62,0xfa,0xcc,0xe3,0xf9,0x63,0x87,0xa2,0xb4,0xc3, +0x0c,0x69,0x54,0x8f,0x94,0xe5,0xad,0xdb,0x5f,0xb1,0xe9,0xbf, +0x35,0x89,0xfc,0x99,0xc7,0x92,0x8a,0x1b,0xc1,0x29,0x04,0x0b, +0x85,0x3d,0x50,0xc8,0x8a,0x53,0x91,0x21,0x37,0xe0,0xfe,0x1e, +0xe9,0x96,0x13,0x8e,0xdc,0x82,0xfb,0x3b,0x59,0xd1,0x44,0x0c, +0x27,0x36,0xe1,0x96,0x32,0xfa,0xdc,0xfd,0x9f,0xbc,0xea,0xdf, +0x7a,0x3a,0xc6,0x78,0x95,0x22,0xe5,0x55,0x5c,0x99,0xa0,0x49, +0xf0,0x90,0x90,0x01,0x87,0x58,0x51,0xc1,0x92,0x2c,0x5c,0xf8, +0x82,0x85,0xd8,0x85,0xe4,0x83,0x17,0xbf,0x30,0x1d,0x0b,0xc9, +0x0b,0x78,0x6d,0x21,0x2b,0x52,0x43,0xfc,0x9f,0x5c,0xc9,0xe7, +0x4f,0x79,0xf5,0x57,0xe3,0xc7,0xc8,0x53,0x7c,0x4e,0xd6,0xa4, +0xef,0xce,0xd6,0xcc,0xfb,0xac,0xf9,0x42,0x77,0x6d,0x1f,0x57, +0x2f,0x06,0x19,0x0b,0x2b,0x59,0x3b,0x2b,0x03,0xeb,0x1d,0x0e, +0x1a,0xa5,0x26,0x55,0x56,0xb5,0x66,0xee,0x7c,0x9d,0x5d,0xa3, +0x63,0x97,0xeb,0x3e,0xaf,0x4d,0x7e,0x8b,0x0e,0xa7,0x1b,0x51, +0xc2,0x91,0xf9,0x4d,0xf1,0xfd,0xca,0xeb,0x2e,0x8f,0x3c,0x60, +0x9c,0x2f,0x9d,0x90,0x40,0x0a,0x73,0xf1,0x5b,0x4a,0x34,0x86, +0x77,0x50,0xa2,0xa9,0x31,0xe8,0x72,0x25,0x78,0x90,0x5a,0x8e, +0x54,0x72,0x5c,0x21,0x4d,0xc8,0x73,0x0a,0x73,0x52,0x77,0xd0, +0x47,0x58,0x21,0x9d,0xa2,0x73,0xd2,0x04,0x74,0x31,0xab,0x99, +0x75,0xd7,0xd8,0x66,0x8c,0x8b,0x2d,0xb2,0xf4,0x78,0x98,0xdf, +0xf4,0x62,0x20,0xe3,0x89,0x44,0xf7,0xd6,0x02,0xa7,0x01,0x1f, +0x9a,0x48,0xa7,0xe8,0xac,0x6b,0x59,0xd6,0xe7,0x79,0x8d,0x83, +0x30,0xd9,0x29,0x3a,0xb1,0x26,0x34,0x4a,0xb4,0xb2,0x1a,0x50, +0x4d,0xec,0x1c,0x74,0x9c,0x35,0xbc,0x0a,0xac,0xf9,0xfe,0xa2, +0x81,0x8a,0xfa,0x7a,0x4e,0x54,0xc3,0xd7,0x49,0x5f,0x51,0x5f, +0x75,0x7d,0xa3,0x4b,0x05,0xef,0x68,0xa7,0x63,0xaf,0xe3,0xc5, +0xc1,0x5d,0xaa,0x69,0xae,0x14,0x76,0x95,0xb5,0x34,0xbb,0x55, +0xf1,0x16,0x36,0xfa,0x4e,0x1a,0x12,0x86,0x6f,0x26,0x83,0x65, +0x97,0xeb,0x5b,0x3b,0x9d,0xab,0x78,0x53,0x73,0x6d,0xeb,0x03, +0xee,0x1c,0xe5,0xf7,0xab,0x09,0x4c,0xe9,0xc1,0x29,0x30,0xe9, +0x69,0x37,0x7a,0xc9,0xa0,0xf0,0x7d,0x3d,0x78,0x1f,0xaf,0x32, +0xc6,0x11,0x86,0x51,0x72,0x28,0xa4,0xf3,0xaf,0x54,0xf2,0xac, +0x98,0x3a,0xb1,0x6c,0xa7,0x54,0x38,0x27,0xa8,0x51,0x0c,0xdb, +0x77,0x70,0x85,0x25,0x8e,0x97,0x4e,0xc8,0x81,0x09,0xa5,0xdf, +0xb7,0xde,0xba,0xc6,0x8d,0xce,0xb3,0x93,0x0a,0x99,0x14,0x20, +0xdb,0xe4,0x00,0xe9,0x27,0x2b,0x64,0x4a,0x00,0x99,0x34,0x10, +0xdb,0x2b,0x65,0xd5,0xe4,0x00,0x29,0x9c,0x83,0x05,0xe4,0xa3, +0xe5,0x38,0x41,0x1f,0x97,0xc9,0x8e,0xd3,0x59,0x52,0x07,0x53, +0xfb,0x7f,0x78,0xc1,0x89,0xaf,0x4b,0xc7,0xe9,0x58,0x37,0xc2, +0xf2,0x07,0x30,0x11,0x26,0x49,0xc7,0xe9,0x28,0xe0,0xeb,0xb8, +0x78,0x1b,0x1a,0x5b,0x51,0x6f,0x4e,0x68,0x20,0xf0,0x06,0x68, +0x77,0xa0,0xf6,0x43,0x58,0x03,0x9f,0xe1,0x9a,0xcf,0x40,0xb3, +0x13,0x35,0x1f,0xea,0x6d,0x90,0xdd,0xf5,0xb1,0x09,0x97,0xe3, +0x67,0xb0,0x7c,0x03,0x6a,0x1b,0x81,0x36,0xbe,0xc1,0x8a,0x67, +0x47,0x8e,0x91,0xb8,0xcd,0x85,0xea,0x37,0xb6,0xd2,0xb5,0xd1, +0xba,0xe6,0x7e,0x35,0xf8,0xda,0x3f,0x78,0x35,0x0c,0xcd,0x21, +0x6e,0x4d,0x36,0xad,0x76,0x35,0x76,0x76,0x7c,0xb5,0x5d,0xb5, +0x45,0x85,0x09,0x97,0x8f,0xdb,0x88,0x73,0xab,0x55,0x9b,0x55, +0xb5,0x83,0x0d,0x5f,0x6f,0x5b,0x6b,0x5e,0x43,0xe3,0xce,0x5c, +0x04,0xe2,0x16,0xe9,0x12,0xe9,0x14,0x25,0x65,0x1f,0xff,0x2f, +0xce,0xf5,0x65,0x06,0x30,0x45,0xc3,0x79,0x9c,0x30,0x43,0x68, +0x20,0x2b,0xe7,0x7c,0xce,0x42,0xd6,0x4a,0x82,0x13,0x3e,0x87, +0x09,0x0c,0x66,0xe1,0x7b,0xe4,0xd7,0x0f,0xe7,0x30,0xb0,0x42, +0xf1,0x5b,0x98,0xf0,0x21,0x8b,0xb6,0xf8,0x98,0xe0,0x2c,0xdb, +0x5e,0x78,0x43,0xba,0x5e,0x5c,0x59,0xf7,0x21,0x4e,0x63,0xf1, +0x35,0x37,0x9b,0xe5,0xa6,0xca,0x79,0xea,0xdf,0xb7,0xe4,0x74, +0x9f,0x7b,0x44,0x69,0xec,0xd2,0xf3,0xcd,0x87,0x60,0xc9,0x4c, +0x68,0x61,0xe2,0xfa,0x15,0xfe,0xb5,0x00,0x2a,0xfe,0x6f,0x4e, +0xab,0x1e,0xa5,0x25,0x39,0xed,0x1f,0x8a,0x23,0xe3,0xc8,0xf5, +0x8e,0xbd,0xa0,0x80,0x76,0x7d,0xda,0x3a,0x68,0x81,0x0a,0x6a, +0x4e,0x8c,0xf6,0x25,0xc7,0x4b,0xc1,0x97,0xe4,0xb6,0xaa,0xba, +0x42,0x9a,0x8f,0xe7,0x37,0x3b,0x9e,0xa7,0xc8,0x92,0x50,0x6b, +0x9b,0xd4,0x1e,0x4b,0x39,0xdd,0xb0,0x24,0x85,0x76,0xe4,0xc0, +0xfa,0x00,0x7a,0x4a,0x97,0xea,0x32,0x47,0xfc,0x0e,0xfb,0x06, +0x79,0x73,0x68,0x60,0x04,0xcb,0x19,0x1f,0x57,0x4f,0x57,0x0f, +0x77,0xd8,0x66,0xc2,0xef,0xf3,0x5d,0x17,0x32,0x37,0x2a,0xd5, +0x90,0x87,0x99,0x49,0x2f,0x73,0x3f,0xab,0x7d,0xec,0xfd,0xc0, +0xfb,0xb6,0x77,0x3e,0x15,0x69,0x39,0xbb,0xb3,0xf6,0x65,0xb6, +0x55,0xd4,0xd4,0x97,0x74,0x71,0xdf,0x77,0xe0,0x37,0x4c,0x7a, +0x5e,0x6a,0x5e,0x72,0x0e,0x07,0xa7,0xa9,0x5e,0xf3,0xbf,0x0a, +0x8e,0x0c,0xa6,0xc1,0x7a,0x82,0xcb,0x86,0x61,0x19,0xd3,0xb9, +0x9b,0x0c,0xc3,0xea,0xdd,0xac,0x38,0xc1,0x9c,0xc0,0xb2,0xed, +0xb8,0x8c,0x01,0xeb,0xdb,0x04,0x56,0x6f,0xc7,0xd5,0x0c,0x3e, +0x10,0xdd,0x88,0x43,0xb8,0x8d,0xac,0x7a,0xde,0x03,0x53,0x7a, +0x65,0x26,0xdb,0x83,0x5e,0x7a,0x32,0x93,0xd5,0xa5,0x26,0x2b, +0x65,0x8b,0x65,0x26,0xab,0x21,0x15,0xdc,0xdf,0x2a,0xfa,0x8c, +0xaa,0x82,0x22,0x61,0x12,0xd9,0x86,0x9b,0xee,0xb0,0x82,0xd2, +0x36,0x82,0x5b,0xef,0xc0,0x56,0x46,0x6c,0xc0,0x12,0x59,0x9e, +0x57,0x4e,0xd9,0xa4,0x74,0x1e,0x0d,0x11,0xae,0x32,0x35,0x9a, +0xb3,0x51,0xae,0x46,0xe5,0xdd,0x13,0x23,0x9a,0x94,0x3a,0xba, +0x9b,0xdb,0x39,0x18,0x7a,0xea,0xa5,0x1a,0xa4,0x98,0x26,0x65, +0x66,0x67,0xe6,0x64,0x50,0xcd,0x09,0x7e,0x52,0xaf,0xcc,0x9a, +0x76,0xca,0x6d,0x65,0xd5,0x3b,0x33,0x39,0xb7,0xa5,0x51,0x70, +0xb3,0x5c,0x5b,0x51,0x61,0x2d,0xa9,0x4b,0x37,0x9c,0x4e,0xd0, +0x05,0xde,0xfe,0x08,0x37,0xea,0x0b,0xfd,0xdd,0xb8,0xf5,0x6b, +0x98,0x01,0x2e,0x38,0xe3,0x19,0x6c,0xea,0x12,0xdb,0x0c,0x60, +0xf5,0x6a,0x16,0xba,0x71,0x13,0x41,0x25,0x9c,0x8d,0x13,0x60, +0x36,0x95,0x3a,0x93,0x29,0x03,0x98,0x09,0x13,0x70,0x26,0x28, +0x31,0x62,0x84,0x98,0xfd,0x67,0xeb,0x5b,0xc7,0x5f,0x45,0x00, +0xa9,0xf5,0x6d,0xac,0x08,0x70,0x79,0xac,0x08,0x20,0xb9,0xe9, +0xeb,0xe9,0x40,0x8a,0x1f,0x15,0x72,0x38,0x0c,0xf1,0xd4,0x0f, +0xf3,0x36,0xbd,0xea,0x73,0x93,0x11,0x55,0x77,0x54,0xfb,0x5b, +0xa2,0x5f,0xee,0x87,0xf0,0xe0,0x17,0xd2,0xe9,0xd4,0x6b,0x5e, +0x6d,0x5d,0x53,0xcb,0x5b,0x37,0xe9,0x36,0x1b,0x95,0x71,0xa0, +0xbe,0x9c,0x54,0x1c,0x28,0x5b,0x9d,0xbb,0xa2,0x3b,0x9f,0xf7, +0x7d,0xe2,0xf4,0xd4,0x71,0x88,0x13,0x2d,0x31,0x89,0x74,0x3e, +0x28,0xf8,0x3c,0x79,0xd8,0x30,0x85,0x0f,0xdd,0xe6,0xb5,0xc5, +0x74,0x27,0x07,0x39,0xa7,0x89,0xfb,0xd1,0xb8,0x42,0x15,0xd0, +0xd2,0x42,0x73,0x56,0x27,0x2f,0x70,0x40,0x19,0xe6,0x32,0x4d, +0x19,0xe9,0x8d,0x2a,0xdf,0xb2,0x7a,0xe9,0x0a,0x38,0x99,0xb2, +0xdd,0x20,0x3a,0x53,0x54,0x87,0x1f,0xbc,0x2b,0x35,0xde,0xec, +0x1b,0xb2,0xbb,0x16,0x78,0xed,0x9f,0xea,0x9c,0xf3,0x1d,0xa9, +0x82,0xd9,0x8d,0x2b,0xd1,0x40,0xc8,0xa1,0x46,0xbc,0x6e,0x18, +0xf4,0xda,0xc5,0x47,0x0c,0x44,0xe1,0x64,0x32,0xfc,0xf3,0x6e, +0x16,0x97,0x9a,0x93,0x39,0x1f,0xfc,0xca,0x42,0x82,0xe2,0x9c, +0xb9,0xf4,0x53,0xe6,0x1c,0x82,0xaf,0xff,0x4a,0xa5,0xa9,0x58, +0x4e,0x41,0xe5,0xdf,0x88,0xda,0x15,0xa9,0x06,0x19,0x29,0x53, +0x87,0x2f,0xd3,0x61,0x72,0xe1,0xbd,0xbc,0x93,0xbd,0xbc,0x5b, +0x94,0x73,0xa4,0x63,0x94,0xc4,0xfb,0xe5,0xdc,0x8e,0x1d,0x99, +0x2f,0xbe,0x43,0xa0,0x46,0x0c,0xc3,0x1a,0x70,0xda,0x83,0x67, +0x0d,0xe1,0x2c,0x8e,0xeb,0x83,0x71,0x90,0xdb,0x89,0xb9,0x37, +0x58,0xd8,0x08,0xaa,0x44,0x9c,0x76,0x53,0x98,0xc6,0x8c,0x56, +0x2c,0xf9,0xef,0xf8,0x9c,0x70,0x03,0xde,0x21,0xdb,0xc4,0x69, +0x77,0xd8,0x29,0x7f,0x58,0xf8,0x10,0xad,0x21,0xcb,0x6b,0x2e, +0xb7,0x2e,0x02,0xc9,0x85,0x0f,0x62,0x40,0x95,0xab,0xe9,0x43, +0x0b,0x26,0xb1,0x23,0xae,0x3b,0xa6,0x47,0x2f,0x9a,0x3f,0x82, +0xbc,0x1b,0x2a,0x1b,0xe2,0xe4,0x2a,0x03,0xe9,0x2e,0xaa,0xd2, +0xc4,0xf2,0x44,0x9c,0x90,0xb3,0xa0,0x7a,0xa9,0xdd,0x56,0xfd, +0x3d,0x3b,0xd5,0x2a,0x0c,0xf9,0xa1,0x2b,0x9d,0x43,0xb5,0xc3, +0x15,0x7b,0x1a,0xd5,0x7a,0xf6,0x73,0xe2,0x87,0x23,0x43,0xe4, +0xb9,0xde,0x2a,0x9c,0x6f,0x00,0xdf,0x75,0xb1,0xa2,0x63,0x1b, +0x89,0x53,0x2d,0x56,0xbf,0xb9,0x99,0xce,0xaa,0xc6,0x35,0xb7, +0xc1,0xa0,0xeb,0xff,0x14,0xd8,0xd6,0xe3,0x28,0x81,0x22,0x30, +0xc1,0x22,0x46,0x88,0x0d,0x23,0xc7,0xa5,0x72,0xfb,0x1b,0xd6, +0x38,0xce,0xf1,0xb7,0xc3,0x30,0x39,0x12,0x3e,0xe0,0xf0,0x29, +0xaa,0x90,0x9f,0x61,0xc3,0x5c,0x16,0xff,0x90,0x4e,0xbf,0xfa, +0xc7,0x98,0xc6,0xfc,0x19,0xd3,0xbe,0xfb,0x93,0xcd,0x39,0x47, +0xd8,0x47,0x50,0x36,0x27,0x58,0xc3,0x52,0x62,0x14,0x25,0x25, +0x40,0xb8,0x52,0xb6,0xa3,0xac,0xb9,0xaa,0xb0,0x96,0x6b,0xc1, +0x8b,0xc6,0x10,0xc9,0xfa,0xfa,0x5a,0xb8,0x58,0xf9,0x70,0x07, +0x59,0x83,0x63,0x86,0xc7,0x8c,0x4f,0xc4,0x18,0xf0,0xad,0xd1, +0xed,0x31,0x1d,0xb1,0x1c,0xbe,0x87,0xe3,0xd8,0x34,0x3d,0x85, +0x67,0x4c,0x7d,0x66,0x46,0x9d,0x0a,0xa8,0xb0,0xb0,0x32,0x4f, +0x61,0x74,0x3a,0x28,0xfd,0x97,0xf1,0x6c,0xe4,0xe0,0xc8,0x64, +0xf2,0x00,0xbc,0x3b,0xd1,0xfb,0x9e,0xf6,0x16,0xe9,0x10,0x3e, +0xdb,0x8d,0x18,0x6e,0x20,0x34,0x51,0xc2,0x68,0x4f,0xa3,0x49, +0xc2,0xba,0xfa,0xfd,0x0f,0xa4,0x99,0x19,0xeb,0xee,0xd9,0x29, +0x83,0xe3,0x55,0x92,0xbd,0x3d,0xbb,0xd5,0x2e,0xab,0xb3,0xcd, +0x1d,0x35,0xa2,0xd1,0xc4,0x7a,0x2c,0x9a,0xbc,0xd1,0x8b,0x6f, +0xc0,0xa4,0x27,0xdd,0xe8,0x2e,0xab,0x3d,0x49,0xd5,0xcd,0xb1, +0xda,0xd3,0xab,0xf6,0x9d,0xb7,0x8a,0x3e,0x2d,0xe4,0xf2,0xe1, +0x18,0xf9,0x26,0xf6,0xfb,0xb8,0x4f,0x92,0x4f,0x76,0xf0,0x1e, +0x27,0x5c,0x4f,0x38,0x9f,0xe4,0x1e,0x7c,0xdd,0xfe,0xd1,0x03, +0xbd,0x8d,0xf3,0x8c,0x5f,0xae,0x66,0x6d,0x4f,0x5a,0x9f,0xb4, +0x39,0xc5,0x41,0xb3,0x15,0x81,0xc2,0x0e,0xe4,0x9e,0xfd,0xd2, +0xfe,0xc1,0x03,0xdd,0x8d,0x8b,0x8c,0x7f,0x58,0x3d,0x97,0x11, +0xff,0x65,0xf9,0xf7,0x42,0x92,0xbc,0xcb,0xc7,0x9e,0x3a,0x65, +0x72,0xef,0x5f,0xa1,0x48,0x2a,0x39,0x8d,0x4c,0xc3,0x45,0x64, +0x31,0xe3,0x1a,0x29,0x1d,0xb4,0x34,0x0b,0xb4,0x7b,0xc4,0x3b, +0x7a,0xb0,0x9e,0x0d,0x9f,0x77,0xc0,0x08,0xdf,0x74,0xcc,0xd5, +0xe5,0x61,0x71,0xd3,0xf0,0xed,0x04,0x98,0xc6,0xc1,0x78,0x9c, +0xc7,0xa8,0x65,0xfb,0x0f,0x2a,0xbf,0x64,0x9a,0xd2,0xd3,0x9a, +0x54,0xbe,0x67,0xf5,0x32,0x14,0xa6,0xfc,0xa1,0x26,0xdc,0x20, +0x1d,0x18,0x03,0xef,0xb3,0xf7,0xe2,0x6e,0x27,0x5e,0x4d,0x95, +0x3a,0x5a,0xa7,0xbb,0xe2,0xee,0x50,0x5c,0x7f,0x2a,0xd9,0x80, +0xbf,0x76,0xe6,0xf6,0xf9,0x4f,0x62,0x38,0xe4,0xf1,0x94,0x11, +0x38,0xb1,0x16,0x07,0x36,0x99,0xcf,0x31,0x2e,0xa0,0x4c,0x84, +0xb9,0xf0,0xb4,0xbd,0xf8,0x07,0x2e,0x06,0xd5,0x2e,0x80,0x5a, +0x0c,0x53,0xb8,0xf4,0x73,0x53,0x78,0x43,0x3d,0xbf,0x97,0x5f, +0xdc,0xba,0xb2,0xd9,0xf4,0x0a,0x27,0x1e,0x03,0x27,0x92,0xb0, +0xb5,0x46,0xeb,0xce,0x2e,0xc9,0x99,0x2f,0xdb,0x5d,0x0e,0xba, +0x22,0xab,0xf7,0x5a,0xaa,0x2e,0xdd,0x29,0x25,0xd5,0x6e,0xf6, +0x48,0xf8,0x21,0x3c,0xc7,0x95,0xa4,0xa0,0xa2,0xa0,0x29,0xb5, +0xda,0x28,0x8b,0x0f,0x75,0xf2,0x32,0xf5,0x76,0xe3,0x70,0xe0, +0x2a,0x49,0xf7,0xcb,0xb5,0x4f,0x76,0xef,0xc8,0xe6,0x43,0x4b, +0xfc,0x6a,0x02,0x73,0x39,0x4c,0x10,0x67,0x12,0xa0,0x52,0x99, +0xc0,0x44,0xca,0xfe,0x0e,0xeb,0x3d,0xa1,0x61,0x4d,0x96,0x56, +0xbf,0xfc,0xb7,0xb4,0x3a,0x9b,0x4e,0xc5,0x96,0x3c,0xab,0x16, +0x26,0x3f,0x73,0xe2,0x34,0x35,0xd5,0x3e,0xf8,0x4e,0xe7,0xa2, +0xb0,0x45,0xb4,0x12,0xb7,0xb0,0x54,0x4e,0x18,0x92,0x54,0x79, +0x45,0x5b,0xd6,0xed,0x2b,0x2b,0x62,0xfa,0xfd,0x43,0x11,0x53, +0x28,0xa6,0x71,0x63,0xd6,0xaf,0x30,0x8b,0xb9,0x30,0x87,0xfc, +0x0a,0xf3,0xe7,0xb0,0x68,0x61,0x2c,0x9d,0x1b,0x3d,0x0b,0x58, +0x16,0x8c,0x14,0x61,0x3e,0xfd,0x7a,0x3e,0x95,0xa2,0x28,0x58, +0x92,0xbc,0xc0,0xbc,0xe0,0xdc,0xd0,0xbc,0x56,0xde,0x36,0xd7, +0xaa,0xd4,0xae,0xaa,0xac,0xa8,0xb0,0x34,0xaf,0xd2,0xba,0x82, +0xf7,0x73,0xf6,0x74,0x75,0xf7,0x74,0xad,0xf4,0xaa,0x39,0x5c, +0xcf,0x81,0x6d,0x17,0x96,0x30,0x71,0x85,0xb1,0xc5,0xd1,0xa5, +0x7a,0xb1,0xfc,0x71,0xa7,0xa3,0xae,0x91,0x94,0x57,0xf9,0x19, +0x80,0x15,0x13,0x68,0xe1,0x6d,0xeb,0xea,0xe0,0x55,0xee,0x5c, +0xe9,0x51,0x68,0x6f,0xcb,0x17,0x7b,0x54,0x38,0x50,0x3d,0xe6, +0xee,0xe8,0x69,0xe3,0x55,0x64,0xcc,0x17,0x64,0xe6,0x67,0xe6, +0x66,0x4a,0xdb,0xbf,0x76,0xa0,0x3b,0x2a,0xb1,0x69,0xda,0x0a, +0xbf,0x33,0x3d,0x29,0xd9,0x6d,0x2a,0x60,0x0d,0xeb,0xd8,0xd1, +0xe9,0x52,0xd1,0x6b,0x4d,0x9b,0x1c,0x63,0x36,0xbf,0xc2,0x18, +0xff,0xad,0xd6,0x9b,0x97,0xc9,0x35,0x6d,0x97,0x2c,0x7f,0x62, +0xb3,0x9a,0xa4,0x1b,0x54,0x18,0xd6,0x9b,0x71,0xe8,0xc2,0x54, +0x37,0x96,0xb4,0xe5,0xf6,0x73,0xc8,0x88,0x31,0xc4,0x46,0xef, +0x90,0x8e,0xba,0xed,0xa9,0x06,0xde,0x8e,0x12,0x6d,0x0b,0x99, +0xf2,0x7a,0xab,0x17,0xdf,0x82,0x89,0xcf,0x7b,0xd0,0x4f,0xef, +0x21,0x9d,0xea,0xd9,0xba,0x14,0x72,0x24,0x04,0x31,0x94,0x23, +0xc8,0x2f,0x69,0x30,0xb9,0xe0,0x51,0x41,0xa1,0x19,0x7f,0xad, +0xe1,0xfe,0x50,0xfb,0x35,0xce,0x0c,0x92,0xc9,0x73,0xa8,0x5a, +0xc5,0x1a,0xbf,0xbe,0x00,0xab,0x7e,0x64,0x45,0x8f,0xcd,0x32, +0x82,0xf7,0xe7,0x94,0x4a,0x36,0xec,0x2a,0x27,0x78,0x17,0x65, +0x2d,0x86,0x51,0x1a,0x91,0x12,0xe3,0x16,0x8e,0xa6,0x90,0x36, +0xe3,0x9e,0x83,0x0d,0x1a,0x0d,0xcd,0xbc,0x4d,0x8f,0xfa,0xb0, +0x79,0x3d,0x45,0xcd,0xc3,0x92,0x76,0x58,0xdb,0xb1,0xf7,0xa9, +0xb4,0x6d,0x77,0xd3,0x30,0x1d,0xd1,0xb0,0x2c,0x23,0xf9,0x77, +0xed,0x40,0xa3,0x96,0x41,0x02,0x41,0x0f,0xe1,0x3c,0x78,0xb0, +0x88,0xa6,0xd2,0x59,0x7d,0xd2,0x79,0xb1,0x27,0xe9,0x9a,0x2f, +0x86,0xb7,0xbe,0x67,0x7a,0x64,0xa7,0xf4,0xbd,0xc0,0xb7,0xd8, +0xd1,0x71,0x98,0x33,0x96,0x94,0x65,0x29,0x2a,0x06,0xfc,0x95, +0x20,0xbc,0xc0,0xfc,0xd5,0x10,0x3e,0x96,0x20,0xa4,0xe6,0xf3, +0x2a,0xa9,0x38,0x4b,0x30,0x22,0x06,0xc2,0xd5,0x2e,0xaa,0x7f, +0x45,0x1d,0x52,0x97,0xd7,0x54,0x56,0x52,0x62,0x5f,0xcb,0xbb, +0xbb,0x59,0xd3,0x78,0xe5,0x5d,0x1a,0x50,0x1e,0x52,0xc5,0xc1, +0x1e,0xd0,0x17,0x5d,0x51,0x1f,0x36,0x31,0x46,0x46,0x7b,0x1c, +0x56,0x79,0x65,0x19,0xf1,0xf5,0xc9,0x35,0x69,0x55,0x99,0xd2, +0xe9,0x6b,0x76,0x47,0xed,0x8f,0x39,0x9c,0x48,0x30,0xe4,0x7f, +0x49,0x82,0x99,0x45,0x77,0xf2,0x8f,0x76,0xf0,0x56,0x47,0xf4, +0xa5,0xf3,0x4b,0x41,0x89,0x2d,0xcd,0x2d,0x2a,0xc8,0x2b,0xe1, +0xce,0x31,0x2d,0x38,0xe5,0xe9,0x52,0x98,0xba,0x8d,0xca,0x33, +0xbd,0x52,0xb3,0x0a,0xfb,0x6a,0x1a,0x40,0xaa,0xc8,0x52,0x1c, +0xf9,0x86,0x15,0xd5,0x34,0xfe,0x67,0xe2,0xd1,0x03,0xf7,0x90, +0x94,0xbf,0x12,0x8f,0x54,0xba,0x48,0x0a,0xd6,0x59,0xa0,0x2a, +0x59,0xbf,0x15,0xf5,0xef,0xc9,0x3e,0xde,0x05,0x9f,0x36,0x74, +0x62,0xd2,0x8b,0x52,0x4b,0x13,0x8a,0x0d,0x93,0xf8,0x08,0xd7, +0x20,0x07,0x3f,0x67,0x8e,0x32,0xa4,0xa4,0xa2,0x84,0xc2,0xf8, +0x62,0x83,0x74,0xde,0x1d,0xc7,0x1b,0xe1,0xb8,0xdd,0x2b,0x69, +0x20,0x3e,0xa2,0xf7,0x94,0xae,0xf3,0x02,0x5d,0x58,0x20,0xdb, +0x8b,0xa7,0x3f,0xb6,0x17,0x8f,0x4b,0x87,0xe9,0xc5,0xcf,0xfe, +0x9c,0x13,0x99,0x6d,0x4c,0xef,0xc5,0xe9,0x30,0xf1,0x09,0xdb, +0x68,0x95,0x5d,0x98,0x56,0x90,0x5a,0xa8,0x84,0x67,0x85,0xec, +0x76,0x3c,0xc2,0x8a,0x47,0x84,0xad,0x24,0x6e,0x4f,0xa9,0xe1, +0x8d,0xfd,0x65,0x9d,0xbc,0xe6,0x05,0x97,0x9e,0xe0,0x0b,0x32, +0xb2,0x63,0x2e,0x2f,0x97,0x7d,0x73,0xab,0x4f,0xe6,0xf5,0x87, +0x70,0x17,0xc1,0x3d,0xc3,0xcc,0xb9,0x18,0x05,0xd8,0xc9,0xe0, +0x1e,0xba,0x76,0xf7,0x60,0xcf,0x16,0xd6,0xf4,0xf5,0x4d,0xb8, +0xe7,0x33,0x16,0x57,0xe3,0x0d,0xea,0xa4,0xc9,0xaf,0x94,0x99, +0x7c,0x7b,0x5f,0x80,0xd4,0x8a,0x2c,0x51,0x15,0xcd,0x0e,0xc9, +0xa2,0xbc,0x65,0x4e,0x9a,0x80,0x07,0x09,0xcc,0x40,0x33,0x7c, +0x74,0x01,0xca,0xbe,0x42,0x1e,0x6c,0x80,0xff,0x1e,0x9d,0x71, +0xa6,0xd4,0x08,0x0b,0x93,0x98,0x86,0xf4,0xcc,0x66,0x15,0x88, +0x43,0x1b,0x9c,0x41,0xa1,0x76,0x7a,0x28,0xf1,0xae,0x08,0x68, +0x0f,0x1e,0x68,0xff,0xa9,0x1c,0xa6,0xe6,0xc1,0x42,0x83,0x34, +0x3e,0x08,0x27,0xfa,0x2e,0x70,0x59,0x1b,0xf8,0x53,0x04,0x4c, +0x3b,0x05,0x2a,0x1c,0xa8,0x76,0xa0,0x2a,0xd8,0xea,0x52,0xa2, +0xbd,0xed,0x21,0xcc,0x6c,0xc7,0x99,0xf7,0xf4,0xb6,0x20,0x6f, +0x0c,0xfc,0x06,0x5c,0x69,0x24,0xbc,0xcb,0x9c,0xc5,0x9d,0x69, +0xf8,0x51,0x09,0x4e,0xf6,0xb3,0xf1,0x76,0x70,0x77,0x39,0xd9, +0xcc,0x5b,0x45,0x19,0x53,0x0b,0xe2,0xee,0xc0,0xbb,0xad,0xf8, +0xee,0x75,0x98,0xdd,0x86,0x5f,0x9a,0xc0,0x07,0x7b,0x91,0x37, +0x05,0x7e,0xbd,0x0c,0xd3,0x4c,0x4f,0xc4,0xd2,0xa0,0xf9,0x5a, +0x22,0x4c,0x4b,0xfb,0x31,0x37,0x28,0x30,0x20,0xc8,0x3f,0xb8, +0xd6,0x8a,0x6f,0xab,0xab,0x6b,0xad,0xe8,0x49,0xb5,0x4a,0x77, +0xcc,0xf2,0x28,0xb5,0xb8,0x90,0x10,0xdb,0x9d,0x0d,0x1b,0x78, +0xe3,0x6c,0x85,0xd1,0x23,0x23,0xcb,0x48,0xc0,0x16,0x87,0xcd, +0xeb,0x25,0x88,0x7e,0x78,0xab,0xf5,0xb9,0x2c,0xa3,0x10,0xb7, +0xbd,0x40,0xef,0x9a,0xb4,0x45,0x40,0xf7,0xb2,0x7b,0x7f,0xf0, +0x15,0x6e,0x64,0x37,0x2e,0x20,0xfe,0xcd,0x6e,0x3d,0x2e,0x75, +0x56,0xde,0x7c,0x89,0x4d,0x89,0x5e,0xb6,0x19,0x27,0xde,0x41, +0x42,0x59,0x8e,0xbd,0xfe,0x6d,0xca,0x72,0x64,0x39,0x96,0x61, +0xd6,0x2c,0xc2,0x34,0xd2,0x5c,0x56,0xc8,0xce,0x80,0x37,0x8a, +0xef,0xe4,0xd3,0xd5,0x74,0xa2,0xa8,0x6c,0x4b,0x2d,0xbc,0x5f, +0x9e,0x63,0x99,0xcc,0xc2,0x2a,0xd4,0x22,0x50,0x0b,0x9a,0x58, +0xcb,0x74,0xe3,0x2c,0xf2,0x15,0xec,0x5b,0xc6,0xe2,0x3d,0x4c, +0xa3,0xa0,0x9a,0x28,0x81,0xaa,0x54,0x99,0x8d,0xd2,0x96,0x2a, +0xb3,0x96,0xf0,0xa1,0x54,0xcf,0x1e,0x83,0xdf,0x4b,0xbe,0xcf, +0xa8,0x78,0x9b,0xf2,0x87,0x52,0x38,0xf1,0xaa,0xf3,0xef,0x09, +0x1a,0x6a,0x7a,0x52,0xfe,0x73,0x11,0x4c,0xa7,0xe6,0x15,0xb0, +0xc8,0x77,0x83,0xc7,0xee,0xc3,0x9f,0x47,0xfe,0x7e,0x0a,0xa6, +0x52,0x8e,0xd1,0x81,0xeb,0x21,0x54,0x17,0x43,0x71,0xed,0xf7, +0xf0,0x4e,0x07,0xbe,0xf3,0x54,0x6f,0x0d,0xbe,0x63,0x04,0xef, +0x2c,0xc6,0x45,0x46,0xc2,0x78,0x3a,0xb3,0x0b,0x52,0x70,0x56, +0x01,0x32,0x81,0xce,0xfe,0x6e,0xbe,0x9e,0x47,0x5b,0x78,0x8f, +0x08,0xf7,0x08,0xd7,0xc8,0xf4,0xd6,0xb4,0xde,0x84,0x16,0xfd, +0x64,0x3e,0x5c,0x27,0x68,0x9f,0xbf,0x9e,0x7a,0xc8,0x81,0x30, +0xed,0xc8,0x44,0x7d,0xfe,0xb7,0x4c,0x98,0x94,0xff,0x43,0xad, +0xbb,0xb3,0x93,0x9b,0x9d,0x67,0xb5,0x25,0x7f,0xa9,0xb9,0xbd, +0xb3,0xfe,0x72,0x9a,0x61,0x96,0x65,0xae,0x73,0x89,0x55,0x7f, +0x72,0x74,0x7b,0x26,0x1c,0x94,0xcd,0xa7,0xff,0xc8,0x7b,0xc4, +0x7f,0x8b,0xad,0xea,0xaa,0x9d,0x32,0x60,0xef,0x78,0x96,0xf4, +0xb9,0x94,0xa1,0xd9,0x5c,0xa1,0x75,0x7b,0x3b,0x0d,0x99,0x87, +0xae,0x3a,0x4a,0xf9,0xaa,0x11,0xe9,0xc6,0x96,0x80,0x76,0x97, +0x8b,0x2e,0x4d,0x96,0xde,0x7c,0xa9,0x65,0x89,0x66,0xb6,0x31, +0x37,0x3a,0x4b,0x2a,0xee,0xbf,0xd1,0x43,0x61,0xff,0x0d,0x2a, +0x22,0x3c,0xf4,0xee,0x53,0x25,0x3c,0x53,0x8f,0xc2,0xfe,0x4d, +0x66,0x0c,0xf6,0x65,0x22,0x62,0x5a,0xf1,0x67,0x52,0xcb,0x89, +0x8c,0x29,0x50,0x2f,0xd9,0x22,0x25,0x20,0x3c,0x21,0x1f,0x3c, +0x59,0xf4,0xa0,0x0a,0x11,0xa6,0xc1,0x46,0xaa,0xd4,0xc4,0x5b, +0x4e,0x24,0x8f,0x4e,0x1d,0x85,0xf6,0x14,0x3e,0xfc,0x92,0xcf, +0x33,0x5f,0xca,0x5c,0xec,0xa8,0x11,0xa7,0x5c,0x48,0x1c,0x88, +0xbd,0x20,0xef,0x26,0xd1,0x0e,0x35,0xe0,0x20,0xce,0x8a,0x44, +0xb6,0x04,0x5d,0x08,0x68,0x35,0x0e,0xe2,0x33,0x4d,0x33,0x74, +0x12,0x4d,0xa9,0x87,0x5f,0x19,0xd1,0x25,0xb9,0xc5,0xf9,0xb5, +0x69,0xa5,0x86,0x85,0xfc,0x61,0x17,0x4f,0x6b,0x6f,0xf7,0x3a, +0x1f,0x9e,0xae,0xdf,0x7b,0x07,0xf0,0xbd,0x59,0x4c,0x7d,0x5e, +0x50,0xa5,0x47,0xbd,0x77,0xbe,0x92,0xb1,0x7b,0xbe,0x7b,0xbe, +0x53,0xba,0xb3,0x12,0xbe,0x8d,0xcb,0x2e,0xbf,0x14,0xf6,0xcd, +0xbb,0x4c,0x45,0xd3,0xe8,0x19,0x60,0xe5,0x1d,0xce,0x72,0x09, +0xd7,0xfe,0x3c,0x45,0x96,0xa8,0xda,0x54,0xa1,0x7e,0x7b,0xab, +0xac,0xd9,0xdd,0x71,0x28,0xe8,0x1a,0x07,0xce,0xa2,0x3a,0x11, +0x14,0xc1,0x5a,0x54,0x64,0x30,0x10,0x8f,0x8c,0x8d,0xfe,0x6f, +0xa4,0x47,0x1a,0xfd,0x15,0x59,0xcf,0xb2,0xac,0xe1,0xe6,0xf7, +0x74,0x69,0xf4,0x85,0xd2,0x6e,0xa4,0xb1,0xd1,0xd7,0x0a,0x6f, +0x52,0xcc,0xcc,0xa1,0x98,0xf9,0x44,0x8c,0x26,0xdd,0xc2,0x1c, +0xfd,0x01,0x41,0x45,0x4c,0x16,0x55,0x58,0xfc,0x59,0x18,0x27, +0x27,0x37,0x9a,0xb2,0x66,0x08,0x39,0x30,0xd8,0xc9,0x53,0xe3, +0x12,0x47,0x96,0x03,0x03,0x25,0x37,0xf0,0x7f,0xaa,0x08,0x6e, +0xfe,0x0a,0x36,0x33,0x7d,0xcb,0xa8,0x35,0xee,0x58,0xc6,0x8a, +0x1f,0x18,0x12,0xd8,0xbc,0x04,0x37,0x33,0xe0,0xf7,0x1d,0x81, +0x1d,0x4b,0x70,0x07,0xc5,0x5f,0xcb,0x91,0x72,0x12,0x98,0xe9, +0x93,0xee,0x95,0xe2,0xe3,0xc1,0xe7,0x87,0xe6,0x05,0x66,0x06, +0x71,0x58,0x20,0x1e,0x25,0x30,0xa9,0xf5,0xce,0xbd,0xd4,0x07, +0xdc,0xe7,0x3b,0x18,0x83,0xec,0x80,0x8b,0xca,0x54,0x02,0x54, +0xa7,0xa7,0x56,0xa8,0xb4,0xb1,0xc6,0x49,0x0a,0xea,0xf8,0x1a, +0xeb,0x73,0x34,0x3a,0x4f,0xe5,0x3a,0xac,0x04,0xd1,0x00,0x07, +0x45,0x65,0x18,0x34,0x40,0x11,0x66,0xb3,0xc1,0xfb,0x75,0x8c, +0x66,0xdb,0x72,0x30,0x9b,0x72,0xb8,0xde,0xfc,0xae,0xf2,0xb6, +0xba,0x26,0xa7,0x06,0x87,0x6a,0x87,0xd2,0x2a,0xde,0xa1,0xdc, +0xba,0xc2,0xb2,0xbc,0xa6,0xba,0xb2,0xae,0xb4,0xd9,0x31,0x87, +0x77,0x35,0x77,0xb2,0xb5,0x77,0x34,0xac,0x31,0xac,0x34,0x2f, +0xf0,0x74,0xe6,0x9b,0xbc,0xda,0x9c,0xdb,0x1c,0xcc,0xed,0x4d, +0xdc,0xf5,0xfd,0x24,0x69,0x75,0x84,0xf8,0x6d,0xb5,0xd8,0xb4, +0x6c,0xa7,0xac,0x84,0xd6,0xfb,0xb9,0x5c,0x2f,0xab,0xb6,0x6b, +0x3d,0xdb,0x55,0xd2,0xcd,0x6f,0xbe,0x62,0x76,0xc9,0x7f,0x90, +0x13,0x92,0x50,0x91,0xe4,0x85,0x16,0xfa,0xa7,0x05,0x17,0x96, +0xf0,0x41,0x19,0x3e,0x19,0x5e,0x29,0x1c,0x3a,0x98,0x92,0xc0, +0x0c,0xef,0x34,0x9f,0x04,0x2f,0x0f,0x3e,0x2f,0xac,0x30,0x38, +0xfd,0x30,0x77,0x6f,0x1f,0xc9,0x0d,0x2d,0xf2,0x4b,0x0b,0x2e, +0x2e,0xe4,0x83,0xb2,0x7c,0x32,0x7c,0x92,0x39,0x7c,0xb6,0x89, +0xc8,0x33,0x61,0x93,0xe5,0x60,0x76,0xf5,0x6f,0x7d,0x5e,0x14, +0xcc,0xc8,0x2b,0x30,0xb3,0x92,0x05,0xee,0x2e,0x39,0x00,0x52, +0x41,0x63,0x29,0x36,0x93,0x75,0x79,0x3b,0x0b,0x0f,0x95,0xdd, +0x68,0xeb,0xe8,0x2b,0xbd,0xc8,0x35,0x61,0x31,0x9b,0x94,0x29, +0xdd,0xde,0x6c,0x9c,0xce,0x3b,0x6e,0x51,0xdb,0x87,0xe3,0x0c, +0xf2,0x8d,0xf9,0xfa,0xac,0xea,0xbc,0xf2,0xc2,0x32,0xdb,0x6a, +0xc7,0x46,0x97,0xbd,0x4e,0xeb,0xdc,0xe7,0xf9,0x66,0x52,0x4e, +0xc9,0x14,0x7c,0x5b,0x75,0xbf,0xe9,0x86,0xd5,0x23,0xc7,0x1f, +0x3c,0xb8,0x7f,0xbd,0x41,0xd7,0x33,0xef,0x15,0xd0,0x87,0x0f, +0xc8,0x15,0xa4,0x87,0xa4,0x20,0x7b,0xc7,0xf6,0x12,0xc8,0x52, +0x6b,0x46,0x1c,0x34,0x0c,0x92,0x98,0xe8,0xe8,0x98,0xf3,0xd1, +0x1c,0x9c,0x64,0xbc,0xcc,0x2d,0x2c,0x0e,0xd9,0x1a,0x95,0x59, +0x57,0x3b,0x34,0x72,0x53,0x84,0x23,0x23,0x0c,0xa9,0xac,0x2a, +0xaa,0xce,0xa9,0xe7,0x04,0x85,0x16,0x7c,0xc1,0xc4,0xa4,0xc6, +0xa6,0x45,0xa7,0xeb,0x25,0xf1,0x5e,0x5b,0x6c,0x74,0x8c,0xe8, +0x6f,0xe7,0x8b,0x55,0x24,0xd0,0xc9,0xd7,0xcd,0xc5,0xa9,0xd9, +0x93,0xc7,0x4d,0xc0,0x0b,0xd3,0x3b,0xc4,0xe9,0xc3,0xb0,0xa9, +0x8e,0x19,0x0a,0x7a,0x78,0xf8,0xe7,0xc3,0x99,0x3d,0x3c,0xe6, +0xd6,0x2e,0xad,0x31,0xec,0xe0,0x04,0x02,0x7b,0xc4,0x75,0xb8, +0xd6,0xb0,0x10,0x67,0xdf,0xa1,0x2a,0x79,0x05,0xbe,0x33,0x08, +0x0b,0x5b,0xc4,0x99,0xa2,0x12,0xfc,0x8b,0x31,0x32,0x59,0x65, +0x87,0x49,0xb6,0x99,0xfa,0xfc,0x4f,0xe9,0x0f,0xd2,0xae,0x66, +0x70,0xd6,0xb0,0x62,0xb7,0xc8,0x1a,0x09,0x2c,0xf2,0xe2,0x22, +0xa3,0x3f,0x26,0x75,0xe0,0x59,0xb6,0xac,0x32,0xbb,0x30,0xb7, +0x96,0x13,0xcf,0x0b,0xdf,0x50,0xcd,0x3d,0x48,0x25,0xf6,0xc8, +0xd4,0xdd,0x04,0x9f,0x9b,0xc3,0x73,0x66,0x34,0xfe,0x20,0xb9, +0x01,0xc9,0x7b,0x58,0x38,0xe6,0x41,0x56,0xec,0xfa,0x82,0x85, +0xc9,0x8a,0x9f,0xac,0xd8,0xc1,0xc0,0x9b,0x8a,0x5f,0xdc,0x5f, +0xc1,0x8a,0x78,0x9b,0x6c,0x43,0xa5,0x3b,0xac,0x30,0x1e,0xdf, +0x23,0xa5,0x26,0x3d,0x2e,0xcf,0x3d,0x39,0xfc,0x89,0x79,0x52, +0xd8,0x5d,0x56,0xd2,0xc6,0x61,0x26,0xf6,0x93,0x12,0xa7,0x1c, +0xf7,0x1c,0x87,0xb6,0x42,0x3e,0xa0,0xd2,0xbb,0xdc,0xa3,0x84, +0xce,0xc0,0x9a,0x11,0x55,0x62,0x21,0x9c,0x6d,0xc2,0x90,0xcb, +0x10,0xd3,0x82,0x31,0x17,0xf4,0xb4,0xf1,0xa8,0x19,0x1c,0x3d, +0xc4,0x8a,0x46,0xb0,0x88,0xfc,0xe7,0x1e,0x42,0xa9,0xfd,0xe7, +0xdf,0xf7,0x19,0x82,0x2a,0xbe,0x20,0xe6,0xe0,0xa4,0x8e,0x11, +0xe6,0x42,0x65,0x33,0x7e,0x7c,0x09,0x74,0xca,0xd8,0xb2,0xe0, +0xac,0xe2,0xe4,0xd2,0xc4,0x52,0xa5,0x3a,0x71,0xd8,0x54,0x48, +0x61,0x8f,0x06,0x47,0x06,0x86,0x04,0x71,0xa3,0x13,0xf1,0x9d, +0xff,0xff,0x76,0x19,0x8e,0xa4,0xe2,0x07,0xe4,0xea,0x27,0xed, +0xe2,0x15,0x63,0xe1,0xc0,0x01,0x3c,0x68,0x0a,0x07,0x71,0xc6, +0x72,0x36,0xd5,0x50,0xe1,0x13,0xa6,0x3e,0x2d,0x9d,0x0a,0xb9, +0x77,0x1f,0xb6,0xb2,0xe2,0x69,0x0c,0x26,0x4d,0xb0,0x14,0x0c, +0xd1,0x02,0x8f,0xb2,0xf0,0x11,0xe8,0x91,0x79,0x1f,0xbc,0x64, +0xc1,0x58,0x9f,0x14,0xf8,0x15,0xbb,0x66,0x78,0x55,0x17,0xf1, +0x41,0x45,0xee,0xa5,0x5e,0xd9,0x34,0xf4,0x6d,0x84,0x1f,0x09, +0xea,0x61,0xa9,0xa0,0x0e,0xa5,0x68,0x7c,0x01,0xfc,0x5a,0xc5, +0x73,0x5f,0x33,0x43,0xbf,0xe3,0x04,0x68,0x80,0x09,0x3f,0xb5, +0xcd,0x1f,0x82,0x09,0x1d,0xf8,0xf1,0x90,0xba,0x1a,0xc6,0x61, +0x24,0x8b,0xf1,0x11,0xb8,0x53,0x07,0xe7,0x2a,0x77,0x58,0x77, +0xc2,0xcc,0x34,0x98,0x15,0x0d,0x76,0x4a,0x70,0x98,0x11,0x4d, +0x85,0x99,0x54,0xf5,0xd5,0x1e,0xf8,0x54,0x4a,0x5a,0xed,0x19, +0xb6,0xbd,0x1e,0x78,0x53,0x96,0xd8,0x72,0xd8,0xbc,0x56,0x9a, +0xde,0xc7,0x14,0x6c,0xa5,0x06,0xb1,0xaf,0xf1,0x7d,0x32,0x6b, +0xe8,0x77,0xa6,0x4f,0x8d,0x0c,0xc1,0x1e,0x35,0x16,0xf7,0x98, +0x53,0xa3,0xda,0x8b,0x7b,0x18,0x1a,0x5b,0x6c,0x88,0x5b,0xa4, +0x3c,0x49,0xd0,0x03,0x6c,0x0f,0xb2,0x30,0xe9,0x61,0x37,0x3a, +0xe8,0xdf,0xa1,0x73,0xa8,0xa8,0x07,0x8a,0x54,0x10,0x9a,0x46, +0x18,0x47,0xc8,0x10,0xf7,0xbb,0x74,0xe0,0x8a,0x6e,0xe5,0x73, +0xae,0x3f,0xfe,0x35,0x75,0x14,0x47,0x65,0x1d,0x4e,0x36,0xb0, +0x64,0x6c,0xea,0xda,0x52,0xa9,0x8c,0x95,0x4d,0x9d,0x70,0x63, +0x0b,0x41,0x95,0x9b,0xa0,0xc2,0x74,0xee,0x22,0x37,0x61,0xee, +0x2e,0x16,0x0d,0x2c,0xa8,0x39,0xa9,0xdc,0x61,0x41,0x5b,0x11, +0xe6,0x6e,0xc3,0xb9,0x0c,0x16,0xa1,0x11,0xf9,0x24,0xef,0x7e, +0x79,0x47,0x9d,0x43,0x23,0x6f,0xe2,0xb0,0xd7,0x65,0x87,0x3f, +0x07,0x83,0x8d,0xe4,0x9a,0xf7,0x0d,0xd7,0x8b,0xf6,0xc5,0x6d, +0xbc,0x56,0xc5,0xce,0xf2,0xfd,0xb9,0xd4,0xaa,0x14,0x84,0xe9, +0xe4,0x74,0x54,0xd4,0xe9,0xa3,0x33,0xa3,0xf5,0x3b,0xa3,0x6f, +0x24,0x76,0xa7,0x28,0x9d,0x3f,0x7c,0x2e,0xe4,0x5c,0x68,0x53, +0x2a,0x7f,0x32,0xe9,0x54,0xf2,0x89,0x14,0x8e,0x06,0xd8,0xf3, +0x76,0x9d,0xd1,0x9f,0x24,0xf4,0xa4,0x4a,0xdf,0xa3,0xdf,0x6d, +0xa6,0x0b,0xd9,0x1f,0x70,0x27,0xb0,0xd3,0xea,0x30,0x1f,0xef, +0x11,0xef,0x16,0xe7,0xea,0x79,0xcc,0xe5,0xb8,0xeb,0x89,0xd6, +0xbb,0x1d,0x2f,0xab,0x7e,0xb4,0xcc,0xe5,0x0f,0x9b,0xf9,0x1b, +0xf9,0x1a,0x47,0x66,0x46,0xd0,0x7f,0xe5,0xc3,0x65,0x8f,0x33, +0x7a,0xcd,0xa9,0x52,0x33,0xf0,0xdc,0xeb,0xad,0x19,0x95,0x12, +0x95,0x74,0x34,0xc9,0xd7,0x8f,0xbf,0xbd,0x8e,0x4d,0xa5,0x76, +0x17,0x57,0x64,0x9e,0xc8,0x1f,0x75,0x3d,0xe2,0x78,0xd8,0x91, +0xd3,0xc7,0x1f,0x99,0x88,0xfa,0xb0,0xfa,0xb0,0x32,0xcb,0x50, +0x3e,0xc1,0x2d,0xc1,0x25,0xce,0xc5,0xf3,0x98,0xdb,0x31,0xd7, +0x13,0xcd,0xf7,0x9a,0x5f,0x56,0xbd,0xb4,0xce,0xe1,0x43,0xcc, +0x03,0x8c,0xfc,0x4d,0x22,0x33,0xa4,0x3f,0x5d,0x76,0xa3,0xf8, +0x49,0x5a,0x9f,0x55,0x16,0x1f,0x6e,0xec,0xb5,0xd3,0x5b,0xc3, +0xb7,0x96,0x77,0x74,0x2a,0x34,0xab,0xde,0x9f,0xab,0xa7,0x14, +0x60,0x1d,0x60,0x17,0xe8,0xca,0xe1,0x06,0x61,0x0e,0x89,0x5f, +0x5b,0xb3,0xff,0x33,0xa9,0xcc,0xb2,0xfb,0xa6,0xfd,0x8d,0xc0, +0x5b,0xb2,0xa2,0x93,0xcb,0x66,0x55,0x09,0xe1,0xee,0xdf,0x6c, +0x78,0x9e,0xfc,0x94,0x13,0x3e,0x46,0x13,0xb2,0x1c,0xb8,0x2f, +0x19,0x98,0x8a,0x16,0xc4,0xdf,0xda,0xdf,0x2e,0xc0,0x95,0x3b, +0x7d,0xfc,0xf8,0xc7,0xc7,0x67,0x42,0x0c,0x9b,0x6f,0x59,0xa2, +0x97,0x63,0xce,0x89,0x3f,0x50,0x2d,0xfd,0x4b,0xcf,0x07,0x30, +0xf1,0x4e,0x37,0x1a,0xe9,0x5f,0xa7,0x64,0x78,0xb2,0x1e,0x4c, +0xc6,0x41,0xc6,0x22,0xc2,0x22,0xd2,0x4a,0x56,0x04,0xa1,0x7c, +0xa3,0xf8,0x96,0xe4,0x0f,0x4e,0xe1,0x94,0x3d,0x45,0x72,0xc2, +0x74,0x21,0x94,0x7c,0x89,0x53,0x96,0x33,0xf0,0x15,0x3a,0x93, +0x2e,0xcc,0x79,0xa0,0xb5,0x11,0xcf,0x18,0x80,0x2f,0xeb,0xb2, +0x7b,0x81,0x16,0xbe,0xad,0x5e,0xa4,0xcf,0xc3,0xf4,0x6b,0xbf, +0x5f,0x8a,0xff,0x8a,0x8b,0xc5,0xd4,0x7e,0x48,0xa5,0x70,0xbb, +0x14,0x14,0x34,0x60,0xa6,0x5a,0x51,0x37,0x8f,0x8a,0x97,0xe6, +0x5e,0x70,0xbc,0xc9,0x8d,0x7e,0xf0,0x48,0xca,0x67,0x6c,0x4c, +0x50,0x6f,0x4d,0xe6,0x23,0x07,0xfc,0x9e,0x4a,0xf9,0x0c,0x1d, +0x8a,0x89,0x89,0x7d,0x09,0x03,0x94,0x7a,0xc5,0xf1,0xc7,0xd4, +0x8f,0xca,0x8a,0x2a,0xc2,0xaf,0x23,0x33,0x89,0x3a,0x8b,0x6f, +0x1c,0x3d,0x6b,0x05,0x93,0xe2,0x14,0x7c,0x59,0xd3,0xf4,0xa0, +0x1e,0x65,0x30,0x67,0x2a,0x93,0x53,0xca,0x55,0xca,0x59,0x83, +0x24,0x05,0x23,0x3c,0xc4,0xfa,0x1f,0x8b,0xcd,0x92,0xba,0x7e, +0xb6,0x24,0x9e,0xac,0xc7,0x4d,0x11,0x0a,0x17,0xc0,0x8b,0x3d, +0xe6,0x15,0xe1,0x79,0x34,0xa8,0xe3,0x08,0x9f,0x50,0x90,0x58, +0x15,0x23,0x1d,0x0e,0x5f,0xd0,0x05,0x67,0x9b,0xf1,0x6c,0xa7, +0x26,0x2e,0xa4,0x2e,0xe8,0xc2,0xa2,0x4f,0x00,0xae,0xd1,0xc0, +0x19,0xca,0x5d,0xce,0x0a,0x83,0xb0,0x20,0x13,0x36,0x42,0xe4, +0x0c,0xa0,0xaa,0xf9,0x18,0x2c,0x24,0x52,0xbb,0xe1,0xa3,0x4d, +0x65,0xf2,0x78,0xf3,0x67,0x4b,0xe2,0x2b,0xa7,0x91,0x62,0x12, +0xbc,0x3b,0x6a,0x4a,0x64,0x1d,0x92,0x91,0x52,0xad,0x86,0xed, +0x1d,0xf3,0x0c,0x47,0xb9,0x67,0xe8,0x52,0xcf,0x18,0x64,0x4d, +0xc3,0x8d,0xe5,0x5c,0xf4,0x87,0x74,0x98,0x58,0x74,0x3b,0x5f, +0xa2,0x4a,0x3c,0xc1,0x48,0x61,0x29,0x50,0xaf,0x0d,0x59,0x4c, +0xf0,0xed,0x5e,0x78,0x9b,0x69,0xd7,0x25,0xbd,0xc0,0xeb,0xb2, +0xe2,0x00,0xea,0xfc,0x4f,0xcf,0xb1,0x95,0xf5,0x06,0x66,0xff, +0xbb,0xe7,0x3c,0x72,0x23,0x1a,0xf8,0xf6,0x00,0x0b,0x3b,0x15, +0x81,0xd7,0x40,0x9e,0xb9,0x88,0x6f,0x12,0xfb,0x02,0xa3,0x42, +0xab,0x34,0x5f,0x1b,0xbe,0xee,0x70,0xa7,0x67,0x8d,0x27,0xd7, +0x77,0x91,0x46,0xe4,0xea,0xed,0x59,0xda,0xad,0x79,0x7c,0x40, +0x9f,0xdd,0x1d,0x97,0x16,0x0e,0x4d,0x71,0x19,0xf1,0x3c,0x1a, +0x9b,0xaf,0x02,0x6f,0xe8,0x53,0x75,0x6d,0x94,0x15,0xd8,0xad, +0x4c,0x03,0x7e,0x6d,0x72,0x5a,0x85,0xca,0x0d,0xd6,0x28,0x45, +0x61,0x3d,0x8b,0x57,0xf5,0x49,0x69,0x67,0xc1,0x70,0xfa,0x90, +0x49,0x2a,0x1f,0x72,0xc8,0xfb,0xa0,0xab,0x09,0x5d,0x8c,0xb2, +0x91,0x85,0xc4,0xbb,0xd4,0xb3,0xd8,0x37,0x3b,0x2f,0xaf,0xa8, +0x3c,0xb3,0xc8,0x3c,0x83,0x0f,0x70,0x73,0xb0,0x71,0x72,0xaa, +0x76,0xac,0x70,0x28,0x74,0x90,0xed,0xb1,0xf2,0x2e,0xf3,0x2c, +0xf2,0xc9,0xce,0xcf,0x2b,0x2a,0xcb,0x2a,0x32,0xcb,0xe4,0xfd, +0x5d,0x9d,0x6c,0x1d,0x9d,0x6a,0x1c,0xcb,0xa5,0xce,0x45,0x08, +0x2c,0xa2,0xbf,0xef,0x51,0xe8,0x9b,0x9d,0x93,0x5b,0x5c,0x41, +0xbf,0x9f,0xc1,0xfb,0xbb,0x39,0xd9,0x38,0x39,0xd3,0xdf,0x77, +0x2c,0x74,0xe4,0x46,0xdf,0xa2,0xc1,0x35,0x71,0x6d,0xfd,0xfe, +0x87,0x92,0x81,0xef,0xb8,0x69,0x73,0xe3,0x9f,0xe7,0x7d,0x3f, +0xae,0x26,0xd8,0x21,0xc4,0x42,0x07,0x2b,0x9a,0x63,0x0c,0x01, +0x3b,0x61,0x31,0xda,0xb1,0xf8,0x63,0x3c,0xe9,0xca,0xe8,0xce, +0x6f,0x2f,0x6a,0xf2,0x6d,0xf0,0xad,0xf0,0x2f,0xac,0xe2,0xdd, +0x32,0x1c,0x33,0xed,0xb2,0x2a,0x73,0xca,0xf2,0xf2,0x73,0x9d, +0x8b,0x79,0x77,0x6f,0x47,0x2f,0x6b,0x1f,0xb3,0x5c,0xb3,0x6c, +0x9b,0x34,0x1f,0x47,0xbe,0x22,0xb4,0x26,0xb8,0x36,0xd0,0xda, +0xcf,0x32,0xd0,0x22,0x44,0xba,0xc9,0xf2,0x07,0xe2,0x18,0x61, +0x37,0xd6,0x41,0xfd,0x4f,0xab,0x29,0xc5,0xb9,0xb1,0x56,0xd2, +0x97,0x52,0x2b,0xe9,0x5d,0xba,0x9a,0x8e,0xe7,0x89,0x4b,0xb8, +0x5d,0x98,0xf4,0x4b,0x57,0x0d,0xf1,0x1e,0x1b,0x70,0x22,0xe0, +0x44,0xd0,0xc9,0x04,0x13,0xfe,0x46,0xf2,0x17,0x79,0x7d,0xd9, +0xdc,0xe7,0x70,0x9f,0x18,0xe2,0x67,0x4c,0x10,0x7d,0x1a,0x2c, +0x3d,0x7f,0x90,0xf2,0x4b,0xc1,0x50,0xe1,0xd1,0x56,0xde,0x3a, +0x44,0xef,0xb0,0x6e,0x28,0x07,0xd1,0x8a,0x76,0xd7,0x42,0x7e, +0x05,0x6e,0x46,0x91,0x01,0xd5,0xf5,0xef,0x64,0xe2,0x3b,0x3d, +0xdb,0x94,0x73,0x5c,0x9a,0xe3,0xcf,0x35,0x27,0xc1,0x0c,0xde, +0x32,0x4b,0x41,0x14,0x4e,0xfe,0x97,0x36,0x31,0x41,0x93,0x54, +0x86,0xd4,0xfb,0x14,0xfb,0xe5,0xd6,0xf0,0x2e,0xb9,0x74,0xec, +0x19,0x1c,0x5c,0x3a,0x40,0x9c,0xf3,0xec,0xb2,0xed,0x32,0xfc, +0xec,0xf9,0xca,0xc3,0x4d,0x5e,0xa5,0xbe,0x94,0xac,0x69,0x91, +0xaa,0xe0,0x26,0x9f,0x32,0x5f,0xfa,0x73,0x4e,0xb9,0x36,0x39, +0xb6,0xf4,0xe7,0x6e,0xef,0x23,0xce,0xb9,0x36,0xb9,0x36,0x19, +0xbe,0x76,0x7c,0xf5,0xe1,0x26,0xef,0x32,0x6f,0xba,0xe4,0xbf, +0x8c,0xcc,0x26,0x9a,0x2c,0xbe,0x19,0x75,0xce,0x46,0xf2,0x3f, +0x77,0xd6,0x3c,0x35,0xb8,0x57,0x19,0x8c,0x98,0xf2,0xa4,0xa4, +0x32,0x95,0x2a,0xd6,0x48,0xba,0x9c,0x61,0x0f,0xeb,0x7b,0x2c, +0x26,0x53,0xba,0x9c,0x61,0x73,0xe2,0xa9,0x5a,0xdc,0x14,0xae, +0xd0,0x47,0x75,0xc0,0x31,0xaf,0x28,0xaf,0xc8,0xa0,0x4e,0xea, +0x7f,0xf9,0x89,0x35,0x31,0x25,0x5c,0x39,0x16,0x74,0xc3,0xe9, +0x26,0x3c,0xdd,0xaa,0x89,0x73,0xd1,0x12,0x03,0x58,0x74,0x0f, +0xc3,0x95,0x6a,0xf8,0x9e,0x72,0xa7,0xab,0xc2,0x0d,0x58,0x90, +0x42,0xfd,0x2f,0x62,0x06,0xec,0x66,0x31,0x0c,0xe6,0xfc,0x17, +0xe7,0x0a,0xc0,0x9b,0xa3,0xe6,0xc4,0x3d,0xd2,0x25,0x4a,0xaa, +0x3a,0x75,0xff,0x23,0xba,0x0f,0xb2,0x32,0x74,0x8f,0xfa,0x13, +0x99,0xf2,0x38,0xe1,0x12,0x6c,0x24,0x10,0x22,0xce,0xc2,0x10, +0x16,0xb6,0xc1,0xfb,0x04,0xa7,0xf4,0xc2,0x14,0xa6,0x4d,0x72, +0xc0,0xb7,0xa8,0x03,0x56,0xa3,0xf9,0x7f,0x87,0xfa,0xc2,0x70, +0x10,0xd1,0xc2,0x29,0xfd,0x34,0xea,0x28,0xc2,0x5b,0x5a,0xf8, +0x16,0x03,0x5a,0xeb,0x88,0xb8,0x0d,0x57,0xea,0x9a,0x0a,0x19, +0xad,0x76,0x0c,0xf6,0x01,0x43,0x90,0xd9,0x0a,0x0c,0x0b,0x52, +0xa9,0x17,0x98,0xbb,0xc8,0x48,0xfd,0x99,0xcc,0x43,0xfa,0x79, +0x0a,0x9c,0x93,0x8e,0xcf,0x58,0xdd,0xb7,0xe7,0x6b,0x29,0xe9, +0xb3,0x66,0x58,0x4f,0x7e,0x6e,0xa3,0xcf,0x16,0x93,0xcd,0x73, +0xa4,0x43,0x3c,0xc6,0xf6,0x18,0x82,0xda,0x21,0x22,0x14,0xf6, +0x8b,0x85,0x4c,0x2f,0x1a,0x13,0x5c,0xc8,0xa2,0x5f,0x10,0x4e, +0xdf,0x86,0xef,0x2a,0x77,0xda,0x5e,0xfc,0xa9,0x18,0x26,0x24, +0xc2,0x5c,0x25,0xb8,0xaf,0x7a,0x45,0x50,0x61,0xc4,0x12,0x31, +0x86,0xd8,0x47,0x58,0xcb,0x1a,0x57,0x3b,0xe5,0xe7,0xcf,0x4e, +0x7e,0xf1,0x6a,0x2b,0xb8,0xec,0xfc,0xd9,0xcb,0xec,0xd8,0xd9, +0x68,0xf2,0xa3,0x8c,0x79,0xe9,0x28,0x63,0xc1,0x01,0x2e,0x12, +0xbc,0xcd,0x9c,0xa9,0x3c,0x53,0x5d,0x3b,0xe3,0x4b,0xb8,0xc5, +0x8a,0x31,0xe2,0x47,0xd2,0x46,0xc3,0x81,0x57,0x1b,0x0d,0x75, +0xe4,0x1b,0x0d,0x5f,0x6d,0xf9,0xee,0x90,0x6f,0xf9,0x96,0x9d, +0xeb,0xb6,0x66,0xa4,0x95,0xe4,0x6e,0xfb,0x45,0x03,0x16,0x68, +0xe5,0x77,0xf0,0xf8,0xc1,0x85,0xe5,0x3d,0x2e,0x03,0x74,0xb9, +0x5c,0x34,0x37,0x6b,0xe3,0x3c,0x83,0x5c,0x03,0x1e,0x66,0x77, +0x7f,0x7f,0xa9,0xe0,0x3e,0x27,0x1e,0x0a,0xff,0x6b,0x59,0xc7, +0x3a,0xbd,0x77,0xc8,0xdc,0x7b,0xb5,0x7c,0x59,0x65,0x1b,0x27, +0xa0,0x01,0xe7,0x11,0x13,0xb8,0xd5,0xc6,0x8a,0x9f,0x62,0xeb, +0xdf,0x58,0x9b,0x8b,0xfe,0x3d,0xba,0xae,0x4a,0xba,0xa0,0x34, +0xc6,0xda,0x64,0x6a,0xec,0xb7,0x3f,0xb5,0xa8,0x7d,0xb8,0x75, +0xb8,0x34,0xf0,0x45,0xc2,0x69,0x82,0x07,0x60,0x0d,0x1c,0xa0, +0xdc,0x4a,0x11,0x57,0xd3,0xaf,0x57,0x33,0x60,0xa9,0x08,0x07, +0x70,0x23,0x1e,0x60,0xf1,0x97,0x06,0xf2,0xe2,0xe6,0x42,0xfa, +0xbd,0x17,0x64,0xe1,0xce,0x17,0x2c,0x14,0x2a,0x2e,0xdc,0xf6, +0x82,0x15,0xdf,0x10,0x9f,0x12,0xd0,0xf9,0x1d,0xb7,0xb5,0xc3, +0xb6,0xdf,0x64,0x1f,0x61,0x22,0x92,0xcd,0xd2,0x65,0x67,0x7d, +0x4c,0x5d,0x4e,0x4a,0x87,0x0a,0xdc,0x16,0x8b,0xc4,0x59,0xec, +0x52,0x30,0xff,0xbb,0x3b,0xca,0x77,0x43,0xd8,0x53,0x0b,0x91, +0xda,0xb7,0x13,0xfe,0x6e,0x21,0x16,0x38,0x97,0xcc,0x82,0x71, +0xbf,0x33,0xed,0x8a,0xbf,0xe1,0xb8,0xd9,0x0c,0x2c,0x53,0x84, +0x71,0xf4,0xaf,0x8e,0x63,0xa7,0x8c,0xf4,0x8d,0x3c,0x20,0x7a, +0x6a,0xb8,0x7f,0x88,0x7e,0x98,0x6f,0x04,0xf3,0x0d,0x7a,0xba, +0x60,0xbf,0xf4,0x61,0x7e,0x07,0xce,0x67,0xc4,0xcf,0xb2,0x49, +0xc2,0xfa,0xfa,0x03,0x9f,0x6d,0xa1,0x42,0x75,0xd7,0x0d,0x1b, +0xe9,0xf2,0x63,0xf9,0xae,0xec,0xe5,0x12,0xd4,0x7f,0x7e,0xb3, +0xeb,0x59,0xf2,0xe7,0xdc,0x88,0xd6,0xa8,0x26,0x69,0x41,0xcd, +0x3b,0xa0,0x29,0xfb,0x68,0xdf,0x8a,0x86,0x6c,0x52,0x56,0x72, +0x41,0x42,0x81,0x49,0x1a,0x0f,0x5a,0xb0,0x0d,0xa3,0x70,0x5b, +0x2b,0x13,0xe6,0x1e,0xe2,0x1a,0xe8,0xc1,0xe1,0x1a,0x26,0x29, +0x3f,0x29,0x3f,0x3e,0xdf,0x2a,0x99,0x87,0x77,0xe9,0x37,0x43, +0x71,0xdb,0xf7,0x8c,0xd7,0x16,0x1d,0xd5,0x03,0xea,0x55,0x16, +0x7c,0x76,0x4e,0x56,0x4e,0x46,0x2e,0x87,0x7f,0xf4,0x36,0x08, +0xea,0x1d,0xe8,0xf9,0x88,0xc5,0xd9,0xc2,0x39,0xb2,0x1a,0xa7, +0x3f,0x63,0x85,0x65,0x8a,0xab,0xf1,0xfd,0x67,0xac,0x18,0x82, +0xa7,0x88,0xbc,0x43,0x4c,0xda,0xba,0xed,0xab,0xff,0x80,0x1a, +0x96,0x8a,0x74,0xaf,0xde,0x10,0x63,0x14,0x61,0x18,0x69,0x2c, +0xab,0xb7,0x4d,0x90,0xb6,0x6e,0x3f,0x94,0x6f,0xdd,0xb6,0x96, +0x65,0x58,0xd3,0xc1,0x86,0xdc,0x01,0xd5,0x6d,0xec,0xe8,0x84, +0x22,0x92,0x27,0xdf,0x8b,0x2d,0xd3,0x4f,0x4f,0xe5,0xad,0x62, +0x63,0x35,0x23,0x79,0xb2,0x5f,0x5e,0x81,0x0b,0x57,0x94,0xfd, +0x82,0xd9,0xeb,0xeb,0x51,0xf5,0x11,0x75,0x97,0xbd,0x23,0x03, +0x24,0x60,0x9b,0xbd,0xea,0x5a,0x69,0x02,0x64,0x50,0xf0,0x4c, +0x56,0x90,0x6d,0x90,0x60,0xba,0x8b,0x86,0x09,0x6b,0x69,0xf3, +0x03,0xb8,0xe2,0x5d,0xe2,0x7c,0xda,0xf9,0x63,0xd7,0xd3,0xe7, +0xcc,0x78,0x50,0x3a,0x07,0xeb,0x62,0x61,0x76,0x02,0xa7,0xd1, +0x7f,0x95,0x2d,0x3d,0x57,0x7c,0xb6,0xf0,0xdc,0xc9,0x46,0xde, +0xeb,0x94,0xc7,0x49,0xb7,0x53,0x34,0xf4,0x3e,0x6e,0x16,0x6f, +0x99,0x7f,0xc1,0xf6,0x6a,0x91,0x7e,0xa8,0xd7,0x62,0xb1,0x7e, +0x2e,0x19,0x80,0x7a,0x0d,0x56,0x0c,0x5f,0x33,0x96,0x54,0xa2, +0x26,0xa0,0x0b,0x04,0xaf,0xc8,0x42,0xbf,0x0c,0xc8,0x7f,0x4a, +0x87,0x37,0x8b,0xef,0x16,0xc8,0x92,0x4a,0x72,0xb4,0xe8,0x94, +0x5f,0x0d,0x37,0x91,0x85,0x9a,0x46,0x02,0xf5,0x06,0xcc,0xf2, +0x63,0xf3,0x8f,0x2f,0x39,0x29,0x1d,0xc4,0xf0,0x26,0xc1,0x72, +0xf3,0x16,0xec,0x63,0x02,0x4e,0x05,0x9e,0x0a,0x3e,0x1d,0x6b, +0xc2,0x5f,0x8e,0x7d,0x98,0x70,0x25,0x89,0x5b,0xd7,0x21,0x2c, +0x2b,0x60,0x61,0x10,0xb3,0x88,0x49,0xa4,0x02,0x14,0xd7,0x37, +0x63,0xa5,0x79,0x21,0x5e,0x60,0x83,0x4f,0x07,0x9f,0x3a,0x7c, +0x3a,0xd6,0x94,0xbf,0x1c,0x7d,0x3b,0xee,0x46,0x22,0xb7,0xa9, +0xeb,0x0b,0x36,0xf3,0x5c,0xfa,0xf9,0xf4,0xf3,0x9c,0x78,0x1a, +0x8e,0x93,0xeb,0x30,0x7e,0x2f,0x0b,0xf5,0x8a,0xa8,0x70,0x1d, +0x14,0x18,0xb1,0x0b,0xed,0xa4,0x8c,0xd5,0x5f,0x3b,0x30,0x8e, +0x18,0x49,0x4c,0x5b,0xbe,0x35,0x67,0xac,0x0d,0x48,0xb6,0x97, +0x00,0x46,0x29,0xe1,0x1b,0x86,0xf1,0xbb,0xe9,0x2f,0x0f,0x93, +0xdd,0xa8,0x30,0xcc,0x62,0x35,0x4e,0x20,0x30,0xfe,0x00,0xe3, +0x72,0xdc,0xf6,0x98,0xdd,0x09,0x0e,0xaa,0x3f,0x25,0xa0,0xa0, +0xc6,0xd8,0x1f,0xb3,0x3b,0x4e,0xff,0x77,0x0a,0x44,0x8c,0x94, +0x92,0xf8,0x4d,0x35,0x87,0xee,0x6d,0x2b,0xef,0xe4,0xaf,0x30, +0xc7,0x75,0x3c,0xad,0xd5,0x2d,0xcb,0x1d,0xf9,0x9b,0x1d,0xe5, +0x7d,0xd1,0x37,0xb8,0x96,0x39,0x4c,0xf0,0x89,0x60,0x0a,0x6c, +0x89,0x16,0x7c,0x7f,0x72,0x47,0x4a,0x5b,0xe6,0x89,0x46,0xde, +0x3f,0xca,0xef,0xa8,0xcf,0x51,0xee,0xeb,0xbe,0x86,0x8f,0x86, +0xbe,0xae,0xff,0xe8,0xaa,0xe9,0x01,0x7d,0x36,0x26,0x33,0x3a, +0xe3,0x5c,0xba,0x55,0x2c,0x1f,0x61,0x11,0x6c,0xe9,0xe5,0x50, +0xed,0xc5,0x27,0xa4,0x24,0xa4,0xc5,0xa6,0x73,0xc3,0x6a,0x38, +0xd5,0x9e,0xd9,0x3f,0xe8,0x30,0x18,0x38,0x38,0xd6,0x2c,0xf3, +0xe7,0x46,0x83,0x94,0xcf,0x39,0xa1,0x4d,0x8b,0xa8,0xcd,0xb2, +0xea,0x67,0x4f,0x68,0x79,0x59,0x6b,0xbb,0x94,0x3b,0xf0,0x43, +0x8d,0x65,0xbd,0xe7,0x6f,0x70,0x35,0xf3,0x19,0xfb,0xb4,0x88, +0x1a,0xe5,0x7a,0xa6,0x34,0x31,0xa5,0x40,0xa5,0x97,0xb5,0x49, +0x54,0x50,0x73,0x63,0x83,0x8f,0x9f,0x4f,0x55,0xf9,0xfc,0xd3, +0x06,0x64,0x86,0xa4,0x0b,0xbc,0x26,0xd0,0x17,0x37,0xa2,0x2f, +0x1e,0x93,0x79,0x3e,0xdd,0x2a,0x4e,0x7a,0x71,0x2b,0x6f,0xfb, +0x6a,0x6f,0x3e,0x3e,0x25,0x2e,0x35,0x36,0x95,0xc3,0x07,0xa3, +0xca,0x44,0xea,0x47,0x96,0xf7,0xda,0xc8,0xaa,0x2d,0x52,0x7b, +0xfb,0xe1,0xbf,0xf5,0x30,0xb3,0xf2,0x1e,0xe6,0xc4,0xbf,0x7a, +0x98,0x39,0x21,0xb6,0x86,0x08,0x6f,0x88,0x56,0xe2,0x1b,0xac, +0x30,0x1f,0x9e,0x90,0xfd,0xf8,0xfd,0x20,0x8b,0xeb,0xb1,0xe8, +0xaf,0xcd,0x0b,0x7f,0xef,0x44,0xce,0xd5,0xc9,0x93,0x77,0xd7, +0x8c,0x75,0x22,0x8f,0xb8,0x86,0x12,0x35,0xfc,0x7e,0x48,0xba, +0xf8,0x7e,0x3c,0xd9,0x83,0xdf,0xdf,0xa0,0xf0,0x8a,0x69,0xe4, +0xfb,0x9c,0x27,0x55,0x5d,0xb5,0xd6,0x35,0xbc,0xae,0xd3,0x56, +0xe7,0x55,0x87,0x39,0xf8,0xad,0x9a,0x3c,0xf5,0xba,0xed,0x75, +0xcb,0xa1,0xa4,0x95,0xdf,0x53,0xa1,0x5a,0xba,0x21,0x8b,0xe2, +0xf1,0x02,0x61,0x23,0xb9,0xd4,0x59,0xd5,0x9c,0x5e,0x16,0x93, +0x70,0xfe,0x74,0x6c,0xd4,0x97,0xf3,0xf8,0xb2,0xaa,0x22,0xbb, +0x7b,0x1d,0xe5,0x0d,0xd1,0x03,0x4a,0x31,0x4c,0xf4,0xde,0x1a, +0x9b,0x27,0xda,0x05,0xcd,0xfc,0xee,0x16,0x9b,0x8a,0xd0,0x1e, +0x0e,0x26,0xb4,0x20,0x77,0x8e,0xb9,0x02,0x0a,0xcd,0x74,0xc5, +0x0d,0x77,0x2f,0x30,0xff,0xf1,0x20,0x7b,0x72,0x8e,0xd9,0x0b, +0x36,0xd4,0xd8,0xc1,0x71,0xbf,0xe5,0xda,0xaf,0xf9,0xb0,0xe4, +0xa8,0xd3,0x61,0xe1,0xc7,0x8f,0xf3,0xc7,0xcf,0x45,0x27,0x9e, +0x4b,0x3c,0x97,0xac,0xf4,0x73,0xcb,0x12,0xe6,0x4c,0xf2,0xc7, +0xc9,0xa9,0x33,0xf2,0xbf,0x6c,0x5e,0x3e,0x6c,0xb4,0xfb,0x03, +0xf3,0x5f,0xbc,0xd9,0x90,0x8f,0x8f,0x9c,0x3e,0xa2,0x8c,0xac, +0xd9,0xef,0x4c,0xa8,0xb1,0xb3,0xed,0x0e,0x75,0x0e,0x69,0x44, +0x24,0xf1,0x5b,0x4a,0x35,0x86,0x77,0x54,0x74,0xf2,0xea,0x83, +0xce,0x57,0x83,0xae,0xfe,0x43,0x21,0x06,0x96,0x8c,0xea,0x90, +0xff,0xba,0xd4,0x22,0xed,0xd8,0x93,0x15,0xeb,0x85,0xb4,0x6a, +0x22,0x70,0xa2,0x99,0xc8,0xb1,0xc2,0x02,0xf8,0x94,0x1c,0xc2, +0x9f,0x2f,0xb3,0xe2,0xae,0xd9,0xff,0x65,0x9d,0x65,0x80,0xce, +0xfd,0x01,0xfc,0xf9,0x2a,0x0b,0x3f,0xe3,0x38,0xba,0x48,0x3f, +0xd3,0x45,0x9a,0x82,0x09,0xe4,0xbb,0xec,0x67,0x55,0x9d,0x35, +0xb6,0xb5,0xbc,0xae,0xe3,0x66,0xd7,0x55,0xc1,0x1c,0xfc,0x51, +0x49,0x9e,0xf9,0xdc,0xf6,0xba,0xe9,0x50,0xd2,0xc2,0xef,0xad, +0x50,0x2d,0x91,0xe6,0x19,0x6c,0xa5,0x0d,0x26,0x6b,0xeb,0xd4, +0x1e,0x48,0xa1,0x65,0xd7,0x4d,0x5b,0x39,0x54,0x49,0x65,0xe4, +0x0d,0x52,0xf8,0x79,0x70,0xb3,0x59,0xca,0x51,0xc3,0xbe,0x6c, +0x82,0x7e,0x42,0x0b,0xf8,0xb1,0x62,0x94,0x74,0x71,0x30,0x81, +0x71,0x48,0xa4,0x8b,0xea,0xa8,0x5b,0xd1,0x2f,0x7a,0xa4,0x2f, +0x58,0xfa,0x05,0x7e,0x81,0x4d,0x24,0x21,0x28,0xd1,0x37,0xc1, +0xd7,0xe5,0x84,0xe3,0x09,0xfb,0x93,0xad,0x17,0xba,0x1f,0x34, +0x7f,0x62,0x51,0xc8,0xfb,0x5a,0xba,0x99,0xb8,0x98,0x87,0xa5, +0x84,0xd2,0x7f,0xa5,0x4d,0x65,0x3d,0xd9,0xad,0x16,0xf9,0x7c, +0x80,0xb9,0xbb,0x81,0xa7,0x6d,0x58,0x62,0x58,0x42,0x44,0xbc, +0x8b,0x13,0x5f,0xe9,0xd1,0x6c,0x5e,0x61,0x17,0xe8,0x1d,0xe8, +0x1b,0x14,0x68,0x78,0x92,0x3f,0x6f,0x56,0x7f,0xb6,0xfe,0x5c, +0xed,0x79,0x25,0xec,0xe9,0x80,0x7e,0x36,0xf7,0x5c,0xf6,0xb9, +0xec,0xb3,0xd1,0xa1,0xe7,0x43,0xce,0x87,0xd6,0xa7,0xf3,0xa1, +0x3d,0x3e,0x7d,0x3e,0x4d,0x1c,0xfe,0x12,0x46,0xdf,0x43,0x0f, +0x8e,0x87,0x49,0x9f,0x76,0xa3,0xa5,0xac,0x68,0x3d,0x4d,0x0f, +0xa6,0xc9,0x8a,0xd6,0xa6,0x7f,0x2b,0x5a,0xdf,0x1a,0x6b,0x41, +0x94,0x8a,0xd6,0x23,0xe3,0x6f,0x90,0x6f,0xdb,0x3e,0x7c,0xf9, +0x6d,0xeb,0x87,0x2f,0x61,0x42,0xfb,0x3c,0x26,0xb5,0x30,0xa5, +0x38,0xbe,0xc0,0x3c,0x9d,0x0f,0x73,0x0e,0x75,0x0e,0x74,0xe6, +0xb6,0x32,0xa9,0x65,0x49,0xa5,0xb1,0x79,0x94,0xd9,0x07,0xed, +0x35,0xfd,0x48,0xef,0x40,0xbd,0x13,0x1f,0x9f,0x14,0x97,0x14, +0x9f,0xcc,0x89,0xdb,0x3a,0x6a,0xe0,0x5c,0x3b,0x72,0x2c,0xce, +0xa0,0x74,0xe2,0xe5,0xe3,0x79,0xec,0x68,0xb8,0xbb,0x8c,0x35, +0xbd,0xaa,0x5b,0x3f,0x95,0xb2,0xbf,0x46,0xa8,0x26,0xd5,0xad, +0x07,0x5e,0xd5,0xad,0x25,0x9d,0x27,0xd8,0x94,0xca,0x7e,0x01, +0xcf,0x1f,0x25,0xe9,0xfa,0x69,0xbb,0xe3,0x35,0x9b,0x33,0xf9, +0xc8,0xde,0xa0,0x5b,0xc1,0x9d,0x1c,0x5a,0xa3,0x1f,0x29,0xbc, +0x94,0x79,0x3f,0x7e,0x98,0x7a,0x56,0xc4,0xce,0xa0,0x9d,0x1e, +0x3a,0x9c,0x30,0xa5,0x8e,0x8e,0xee,0x31,0x8e,0x67,0xa7,0xb4, +0x08,0x55,0xa4,0xe9,0x4c,0xd3,0xd9,0xc6,0x73,0x1c,0x3a,0x76, +0x82,0x1b,0x5b,0x72,0x8e,0xfe,0x3b,0x1f,0x13,0x16,0x1d,0x16, +0x1d,0x5e,0x9b,0xce,0x07,0x37,0x78,0xb7,0x78,0x55,0x39,0x05, +0xf3,0x09,0x87,0xe3,0x83,0xe3,0x83,0xad,0x8e,0x5b,0x9c,0xb4, +0x38,0xd9,0x56,0xd7,0xdc,0xda,0x35,0xe0,0x50,0xc4,0x7b,0xbb, +0xb8,0x39,0x3b,0xb9,0x84,0x25,0x87,0xa6,0x86,0xa4,0x94,0x97, +0x94,0x56,0x15,0xd7,0xd9,0x15,0xf0,0x3e,0x0e,0x6e,0x8e,0x2e, +0xae,0xa1,0xc9,0x61,0x89,0x11,0x71,0x2e,0x2e,0x7c,0x95,0x7b, +0xbd,0x75,0x89,0x53,0xd0,0xe1,0x80,0xe0,0xc0,0xc3,0x5c,0x40, +0xe0,0xe9,0x80,0x99,0xc2,0x8f,0x94,0x7c,0x57,0xba,0xd5,0xda, +0x96,0x38,0x07,0xd2,0x87,0x01,0x21,0x5c,0x50,0xd0,0xe9,0xc0, +0x99,0xb1,0xe6,0x8d,0x67,0xea,0xcf,0x36,0x9c,0x53,0x1a,0x7b, +0x23,0x67,0x4b,0xcf,0x97,0x45,0xc7,0x1c,0x91,0xde,0x4a,0x1d, +0x95,0x4a,0xf5,0x5e,0xcd,0x9e,0x95,0x8e,0x81,0x7c,0x42,0x68, +0xc2,0xe1,0x84,0x10,0xab,0x63,0x96,0x27,0x2d,0x4e,0x75,0xd6, +0xb6,0xb6,0xf5,0x4a,0x6f,0xc4,0xc3,0xd9,0xd9,0xc9,0xc1,0x39, +0x2c,0x25,0x24,0x35,0x24,0xb5,0xaa,0xa4,0xbc,0xaa,0xb4,0xde, +0x2e,0x9f,0xf7,0x72,0x70,0x71,0x74,0x72,0x09,0x49,0x39,0x92, +0x14,0x11,0xe7,0xe1,0xc1,0xc7,0x62,0x83,0x39,0x34,0xb0,0x98, +0x09,0x93,0x89,0x25,0x1c,0x6b,0x64,0xf1,0x38,0x2e,0x21,0x56, +0x70,0x82,0x3e,0x9b,0xf8,0x7a,0x23,0x9e,0xb0,0x64,0xe1,0xb4, +0x13,0xc1,0x33,0xa8,0x72,0x95,0x31,0x31,0x5f,0x65,0x87,0xe9, +0x8e,0x69,0xc6,0x52,0xab,0x72,0xea,0x60,0x16,0x67,0x05,0x1f, +0x6a,0x8a,0x0a,0xc6,0xb0,0x9d,0xb5,0xf2,0x29,0x72,0xce,0xf6, +0xc8,0x76,0x52,0xc2,0x50,0xe3,0x3f,0x26,0xb4,0xe3,0x71,0xa6, +0xa4,0x3c,0xab,0x20,0xbb,0xca,0x34,0x8f,0x87,0x43,0xed,0xe2, +0xbb,0x17,0x61,0x6d,0x1d,0x73,0x2d,0x48,0x6a,0x7f,0x0e,0x49, +0x69,0xe7,0x31,0xa7,0x72,0x69,0x8d,0x51,0x33,0x77,0x97,0xc1, +0x51,0x78,0x93,0x64,0x9b,0xa7,0x5a,0xa6,0x1a,0x37,0x27,0xf3, +0x21,0x1d,0x41,0x2d,0x81,0x75,0x9c,0xd0,0x18,0x4c,0xf2,0xcc, +0x32,0xcc,0x33,0x8c,0x9a,0xd3,0xf9,0xc0,0x0e,0xff,0x16,0xbf, +0x06,0x6e,0xb4,0x09,0x57,0x92,0xc2,0x8e,0x94,0xf6,0x84,0x56, +0x69,0x6b,0x8f,0x79,0x90,0xa1,0x8f,0x25,0x37,0x32,0xed,0x30, +0x29,0x6c,0x4b,0x6f,0x4d,0x6e,0x31,0x4f,0xe4,0xc3,0x2c,0x02, +0x8c,0xbd,0xad,0xb9,0xfd,0xbf,0x12,0x5d,0x5c,0xd0,0xcb,0xce, +0x43,0x07,0xf2,0xa8,0xa0,0xab,0xbc,0xb4,0x9d,0x62,0x7a,0x99, +0x71,0x8f,0xf3,0x33,0x2f,0x69,0xe5,0x97,0x12,0x4a,0x2f,0xd6, +0xb0,0xf5,0x79,0x01,0x15,0xbe,0x65,0x9e,0xc5,0x4a,0x82,0xb6, +0x62,0xb0,0xb3,0x9f,0xbb,0x8b,0x53,0xb5,0x2f,0x8f,0x6b,0x61, +0x32,0x33,0x45,0x98,0x74,0x43,0x3a,0x6a,0x33,0xcc,0x24,0x5c, +0x6a,0xeb,0x9c,0x58,0xc1,0xc6,0x07,0xe5,0xa6,0x67,0xa6,0xa5, +0xa5,0x2a,0xa1,0xb1,0x90,0xdf,0x80,0x27,0x1a,0xc1,0xb6,0x0e, +0x6d,0xeb,0x65,0x1f,0xeb,0xe0,0x48,0x03,0xfa,0xb2,0x09,0xa9, +0x71,0x29,0xf1,0x19,0xee,0xb1,0x3c,0x78,0x40,0x2e,0x26,0x62, +0x6e,0x36,0x13,0x11,0x18,0x1e,0x7c,0x24,0x48,0x56,0x2c,0x4c, +0x8d,0x4f,0x4d,0x48,0x77,0x8d,0x95,0x18,0x52,0x2e,0x9e,0xc7, +0xdc,0x5f,0x18,0x0f,0x53,0x63,0xdd,0xfd,0xa6,0x67,0x4f,0xf0, +0xb3,0xff,0x53,0x5f,0x5c,0x93,0x36,0x17,0x46,0x99,0xca,0xe3, +0x56,0x06,0x90,0x92,0xc7,0x45,0x1c,0x2e,0x1f,0x39,0x4b,0x12, +0x36,0x54,0x1f,0xbc,0xbb,0x85,0xa2,0xe6,0xbe,0x1b,0xf6,0xd7, +0x02,0x6f,0xfc,0xd3,0xa9,0x68,0x13,0x15,0x6d,0x71,0x45,0x2d, +0x2b,0x58,0xd0,0xcf,0x1b,0x6a,0x59,0x7c,0x7f,0x2b,0xb1,0xc1, +0x15,0x75,0xd2,0x03,0x1b,0xdc,0x50,0x47,0x1f,0x6c,0x21,0xd6, +0xb8,0xa2,0x5e,0x7a,0x60,0x8d,0x1b,0xea,0xa9,0x77,0xa0,0x33, +0xa9,0x03,0x75,0x1b,0x16,0xd5,0x37,0x92,0x7a,0x50,0xb7,0x66, +0xf1,0x25,0x7a,0xfc,0x97,0x6a,0x45,0xc1,0x9c,0x34,0x82,0x3a, +0xb5,0x90,0xcb,0x58,0x4a,0xd6,0x25,0x6d,0x4f,0xde,0x97,0x7e, +0xb3,0xb8,0xbf,0xaa,0xa9,0x99,0x6b,0x10,0x2b,0x2d,0x05,0x47, +0xd6,0xd2,0x59,0xc3,0x6d,0xab,0x8f,0x5a,0x96,0x7a,0xbe,0x76, +0x99,0xb3,0x0b,0xdf,0xea,0xdd,0xea,0xd7,0x1e,0xb8,0x33,0x68, +0x7d,0xe8,0xd2,0x88,0x64,0x73,0x2a,0x16,0x52,0x7e,0xc9,0x7a, +0x5e,0xf0,0xc4,0xeb,0xab,0xc0,0xdf,0x42,0x28,0xeb,0xdf,0x06, +0xce,0x84,0x9a,0x48,0xa8,0x64,0x22,0x94,0xf5,0xb7,0x57,0x2f, +0xad,0x33,0xeb,0x90,0x92,0xb2,0x1f,0xd9,0xbf,0xb4,0x5f,0xe6, +0xf0,0x95,0x25,0xce,0x06,0x35,0xb0,0xac,0x43,0xcb,0x3a,0x38, +0x58,0xb3,0x8a,0x4d,0x48,0x8e,0x4b,0x4e,0xcc,0xe4,0x9e,0xd5, +0x6c,0x65,0x72,0x0a,0x92,0xb2,0xd2,0x8a,0xac,0x33,0xf8,0x23, +0x3e,0x21,0x7e,0x7e,0xde,0x55,0xfe,0xbc,0xea,0x37,0x16,0x4b, +0xd5,0xe9,0x7f,0xb8,0xcf,0xee,0x37,0x26,0x25,0x38,0x21,0x34, +0x3e,0x94,0x43,0xc6,0x0e,0xcc,0x6d,0xd0,0xc7,0x06,0x7c,0x50, +0x0d,0x67,0xd5,0x7f,0x53,0xb5,0xb4,0x9c,0xa9,0x8a,0xad,0x88, +0xab,0x4a,0xf5,0x2d,0xe7,0x2d,0x82,0x4d,0xc3,0x2d,0x8e,0x71, +0xb8,0x07,0x5e,0xb2,0x7a,0x76,0x73,0x9d,0xf0,0xb8,0xab,0xbc, +0x29,0x3f,0x75,0x50,0xba,0x3b,0xea,0x43,0x43,0xf1,0x35,0x33, +0xd8,0xc8,0xda,0xf9,0x15,0x78,0x66,0xf9,0x66,0x79,0x2a,0x61, +0xa0,0xe9,0x1f,0x13,0x5a,0x31,0x92,0x29,0x2a,0xcc,0xcc,0xc9, +0x2a,0xb1,0xce,0x92,0x35,0xe5,0xbf,0xd3,0x09,0x6b,0x19,0x31, +0x4a,0xf8,0x94,0x1c,0xc9,0x0b,0xc9,0x0b,0xc8,0xb1,0x0e,0xe0, +0xb3,0xbd,0x93,0x82,0xd2,0x3c,0x38,0x41,0x15,0xdf,0x27,0x97, +0x5b,0xf3,0x1a,0xa3,0xef,0x73,0x30,0x71,0x25,0x63,0x97,0x7d, +0xa4,0x5e,0xf9,0x12,0x53,0x95,0x96,0x56,0xa1,0x72,0x45,0xca, +0x91,0x6c,0x30,0x60,0x0f,0x1f,0x8f,0x4e,0x56,0x81,0x29,0xe8, +0xce,0xae,0x3c,0xea,0xb8,0xcb,0x40,0x19,0x67,0x0e,0x90,0xc8, +0x90,0x88,0xd0,0xb0,0xc3,0x1c,0xbe,0xc3,0x44,0xa5,0x46,0xa4, +0x86,0xa5,0x72,0xf0,0x42,0x7c,0x8b,0xdc,0x4d,0x1f,0xca,0xef, +0x2b,0xed,0x71,0xea,0xb6,0xef,0xb1,0x2e,0xaf,0xe5,0x8d,0xab, +0x8d,0x2b,0x8d,0x4a,0x3b,0xab,0x6b,0x1b,0x8b,0xda,0xb9,0x3a, +0xfc,0xc3,0x14,0x5a,0x59,0x2f,0x07,0x67,0x57,0x6b,0x4f,0xf3, +0x42,0xb3,0x7c,0xf3,0x1c,0x77,0x07,0xbe,0xce,0xbf,0xd6,0xaf, +0xda,0xd7,0xd4,0x57,0x27,0x70,0x7f,0x28,0x67,0xa6,0x4b,0x8a, +0x6d,0xdb,0x3c,0xee,0x50,0xe1,0xde,0xcf,0xdc,0xca,0x6d,0x29, +0x2a,0xaa,0xe5,0xbc,0x30,0x88,0x2c,0xc4,0x8f,0xd8,0x8a,0xac, +0xc0,0x22,0xbf,0x02,0xaf,0x7c,0x25,0xe1,0x90,0x62,0xb0,0xa7, +0xbf,0xb7,0xab,0x47,0x69,0x20,0x8f,0xcb,0x5f,0x50,0xcf,0xd0, +0x16,0x74,0x08,0xfc,0x86,0x38,0xfa,0xeb,0x90,0x10,0xc7,0x8e, +0x9c,0x81,0xdf,0x88,0x38,0x19,0x7f,0x83,0xcb,0xe2,0x3e,0xf4, +0x67,0x52,0x0e,0x29,0x80,0x19,0xd3,0x9b,0x93,0xdb,0xad,0x22, +0xe6,0x8d,0xd8,0x91,0xa5,0x18,0xf6,0x0d,0x2b,0xe8,0x28,0xc2, +0xf9,0xa5,0x78,0x9e,0x41,0x47,0xe9,0x76,0x9a,0xb0,0x17,0x10, +0xc6,0x80,0xa3,0xd4,0x41,0x7c,0x7e,0x21,0x2b,0x7e,0x87,0xb5, +0x44,0x88,0x1a,0x10,0xa3,0x98,0x29,0xcf,0x46,0x1a,0xc9,0xa8, +0x30,0x28,0x94,0x43,0x0b,0x3c,0x61,0xbf,0xc1,0x27,0x84,0xfe, +0x59,0x7b,0xdc,0xcc,0x24,0xea,0x28,0xc0,0x72,0xa6,0x2d,0x33, +0xa3,0x56,0x65,0xa4,0x46,0x9c,0xc4,0x8a,0x3c,0x2a,0x93,0xa7, +0x70,0x64,0x0d,0x0b,0xce,0x8a,0x4f,0xe1,0xdc,0x1a,0x76,0x54, +0x1d,0xe7,0x90,0xaf,0xe0,0xc8,0x32,0xe9,0xc9,0x57,0x70,0x6e, +0x19,0x8b,0x8d,0x98,0x4f,0xc2,0x62,0x22,0x3e,0x8e,0x38,0x12, +0x71,0x84,0x3f,0xf6,0x13,0x44,0xf7,0x8a,0xd5,0xba,0xe0,0x2f, +0x4e,0xbe,0x0c,0x51,0x4c,0xfc,0xf9,0x73,0xb1,0x27,0x94,0xc1, +0x62,0x56,0x49,0x8f,0x02,0x7d,0xdd,0x7a,0x22,0x8d,0x27,0x99, +0xbe,0xee,0x4f,0xec,0x57,0xf8,0x93,0xf4,0xba,0x5a,0xb8,0x8a, +0x49,0xd1,0x52,0x80,0x19,0xf2,0xe1,0x8c,0xa4,0x89,0x93,0x59, +0x71,0x3a,0xce,0xa7,0xaf,0x12,0x46,0x5f,0xc5,0x91,0xbe,0xca, +0xf9,0x65,0xd2,0xeb,0x2e,0x24,0xdf,0x41,0xd8,0x12,0xe9,0xc9, +0x77,0x70,0x7e,0x09,0x75,0x23,0x5c,0x45,0xa8,0x42,0x9a,0x0d, +0x7d,0x1a,0xd8,0x87,0xef,0x43,0xa4,0x86,0x38,0x7e,0xe0,0xa6, +0x30,0x07,0xda,0xd8,0x29,0x4f,0xe8,0x08,0xff,0x35,0xfe,0xaa, +0xd0,0x41,0xa9,0xe1,0x3d,0xf6,0x29,0x55,0x15,0x70,0x43,0x0c, +0xc0,0xd7,0x99,0x94,0xea,0xb5,0xd9,0xbb,0x4b,0xb4,0xab,0x94, +0x86,0x7a,0x5b,0xae,0xe5,0xdc,0xe3,0x7e,0xec,0xc2,0x98,0x2f, +0x34,0x56,0xe0,0x49,0x83,0xef,0x99,0xac,0x5d,0x4d,0x7b,0xae, +0x69,0x1d,0xb2,0xdb,0xe2,0xba,0xdc,0x3f,0x47,0x9b,0xff,0xb1, +0xe0,0x69,0xf5,0x8d,0x96,0xab,0xe6,0x9f,0xd9,0x7f,0xeb,0x13, +0x93,0xca,0x27,0x1a,0x29,0xfc,0xc4,0xb4,0x64,0x66,0x34,0x4b, +0x53,0x33,0x4d,0x9a,0x9a,0x99,0xe4,0x09,0x1c,0x5f,0xcb,0x82, +0xb5,0xe2,0x13,0x48,0x5c,0xcb,0x8e,0xea,0xa3,0x0a,0xf9,0x12, +0x8e,0x2f,0xa7,0x4f,0xce,0x90,0x2f,0x20,0x71,0x85,0x14,0xe2, +0xed,0x49,0xe0,0x41,0x1b,0x5d,0x4d,0x53,0xed,0x56,0xdb,0x3e, +0xff,0xcb,0x9c,0x7c,0xee,0xc5,0xcb,0x42,0x1d,0xb4,0xc3,0x43, +0x3a,0xf7,0x0f,0x08,0x0c,0x8a,0x7e,0x92,0xb8,0xd3,0x53,0x80, +0xf9,0x63,0x2f,0x50,0x2f,0xcd,0xfd,0x0c,0x3a,0xf7,0xcf,0x21, +0x7c,0x95,0x34,0xd3,0xcf,0x21,0x7a,0x15,0x3b,0xaa,0x8d,0xb3, +0xc9,0xd7,0x10,0xfe,0x11,0x7d,0x72,0x86,0x4e,0x4f,0xf4,0x32, +0x56,0x5f,0x34,0x20,0x1b,0x5a,0x0e,0x36,0x99,0xb7,0x5e,0xac, +0xbb,0xd2,0xd3,0xd0,0x66,0xd9,0xc0,0xdb,0x99,0xee,0xd7,0xd7, +0xb5,0xe3,0x5c,0xda,0x0e,0xf7,0x0c,0xce,0x28,0xd4,0x14,0xa5, +0xe2,0x61,0x92,0x91,0xc2,0x4b,0xa6,0x3e,0x25,0xad,0x56,0x05, +0xb2,0x63,0xd9,0xf8,0x65,0x5f,0x2d,0x07,0xe5,0xad,0x9c,0xd8, +0x0c,0x77,0x88,0x01,0x2c,0x66,0xbd,0xd7,0x1a,0xef,0xc4,0x71, +0xbb,0xaa,0xa8,0xe4,0x7a,0xeb,0x69,0xf7,0x57,0x05,0xbf,0x72, +0x8d,0xd2,0x14,0x36,0xd1,0x29,0x1c,0xa0,0x54,0xac,0x0f,0xae, +0xb1,0xcf,0xf1,0x1a,0x81,0x5b,0x22,0x85,0x2c,0xd9,0x1b,0x7d, +0x8f,0x69,0xce,0xc8,0x6a,0x55,0x19,0xa9,0x13,0xa7,0xb2,0xe2, +0x4c,0xe4,0xc9,0x43,0x38,0xb9,0x81,0x05,0x2b,0xc5,0x87,0x90, +0xb2,0x81,0x1d,0x35,0xa6,0x4f,0x1e,0xc3,0xc9,0x75,0xd2,0x93, +0xc7,0x90,0xb2,0x8e,0xc5,0xa9,0x48,0x88,0xe8,0x2e,0x4e,0xec, +0xed,0x84,0xc5,0x38,0xbf,0x1f,0xe6,0x83,0x03,0x83,0xd9,0xa0, +0x4e,0x70,0xc9,0x73,0x58,0xc2,0xf4,0xad,0xa2,0x43,0x5d,0xb1, +0x8a,0x45,0x27,0x33,0xb2,0x0c,0x97,0x7c,0xc5,0x82,0x8d,0x22, +0xac,0x58,0x86,0x2b,0x98,0x29,0x0f,0x65,0xc6,0x7a,0x95,0x1a, +0x6b,0xd7,0x2b,0x63,0xbd,0x2e,0x7a,0xe2,0x02,0x26,0x93,0x1a, +0xeb,0x5b,0x63,0xc6,0xda,0x26,0xbd,0x8f,0xf7,0x65,0xc6,0x1a, +0x35,0x66,0xac,0x71,0xd4,0x58,0x0d,0x65,0xc6,0x1a,0x35,0x66, +0xac,0x71,0xcb,0x24,0xb2,0x1e,0x4f,0xd0,0xe9,0x13,0x38,0xd9, +0x85,0x27,0x6f,0x6a,0xed,0xc2,0xe3,0x06,0x70,0x7c,0x07,0x9a, +0x63,0x7a,0x3f,0x38,0x53,0xc9,0x50,0xd0,0x0f,0x05,0xb0,0x0c, +0x57,0x2e,0x65,0xd2,0x8c,0x14,0xee,0x31,0x0d,0xe9,0x19,0xd5, +0x2a,0x53,0x60,0xb1,0x1a,0x11,0x1a,0xa1,0x0d,0xee,0x52,0x77, +0x1c,0x61,0x47,0xce,0xa6,0x10,0xf9,0xab,0xd6,0x52,0x8f,0xbc, +0x0b,0x57,0xe9,0xbb,0x59,0xc3,0xa6,0xea,0x28,0x88,0x9d,0x74, +0xca,0x20,0x6c,0x3d,0x86,0x31,0x82,0xde,0x23,0x02,0xe7,0xd7, +0x53,0x5f,0x14,0xf5,0x8c,0xe8,0xb3,0x35,0xb2,0x67,0x4f,0xe9, +0xb3,0x35,0xf4,0x19,0x2c,0x11,0x4f,0x93,0x0e,0x0c,0x04,0x45, +0xd0,0xe9,0x40,0x9d,0x6f,0xc0,0xb1,0x43,0xf4,0x30,0x02,0x1a, +0x42,0x0f,0x19,0xc1,0x21,0x54,0x44,0x0f,0x23,0x56,0x70,0x7c, +0x48,0x82,0x8a,0x5c,0xeb,0xfc,0xb3,0xcd,0x7c,0xf9,0x1c,0xbf, +0x12,0xbb,0x74,0x0f,0xca,0x6c,0xe7,0x6c,0x27,0xc2,0x4d,0xb8, +0x08,0x7d,0xe2,0x84,0x7f,0x8d,0x67,0x47,0x52,0x12,0xc9,0xab, +0x75,0x78,0x1b,0xfb,0xe0,0x8e,0x18,0x83,0x93,0x58,0xba,0x3e, +0xe2,0xef,0x23,0x17,0x08,0x7c,0xbc,0x15,0x3f,0x66,0x04,0x43, +0x6a,0xfb,0xe9,0x5b,0x31,0x9d,0x11,0x0d,0x8d,0xe9,0xb3,0xcd, +0xb2,0x67,0xf7,0xe9,0xb3,0xcd,0xf4,0x19,0x6c,0xa2,0xd4,0xb6, +0x05,0x8f,0x5d,0x03,0xab,0x16,0xb4,0x1a,0xd0,0xd1,0x40,0x73, +0x33,0x30,0xdf,0x87,0x51,0x66,0xac,0xd0,0x83,0xb1,0xa4,0x0d, +0x53,0xef,0x80,0x73,0x0b,0x3a,0x4b,0xdf,0x72,0x34,0x03,0xc7, +0x6d,0x98,0x6c,0xf2,0xca,0x36,0x2e,0x53,0xdb,0xe8,0x79,0x65, +0x1b,0xc3,0xe2,0xf1,0x59,0x4c,0x5a,0xa6,0x6e,0xf3,0xee,0x66, +0xfd,0x02,0x25,0x07,0xab,0x3e,0xf7,0x9b,0x26,0x6d,0x16,0x4a, +0x49,0x29,0xf1,0x36,0x0a,0x30,0xee,0xef,0xe6,0xa2,0x24,0x33, +0x97,0xe3,0x63,0xe6,0x92,0xb4,0x41,0x72,0x1c,0xc9,0x5c,0x8e, +0x8f,0x99,0x4b,0x12,0x35,0x17,0x37,0xfc,0x9a,0xc0,0x44,0x98, +0xd2,0x81,0x53,0x7e,0xd0,0x5a,0x84,0xdb,0xa4,0x0f,0x53,0x8c, +0x68,0xb8,0xa6,0x92,0xc3,0x40,0xb8,0xd6,0xc5,0x8a,0x2c,0x4c, +0x24,0xb0,0x8d,0xfe,0xff,0x36,0x86,0xca,0xb7,0x53,0x64,0xa8, +0xec,0x6e,0x4f,0x53,0x3b,0x55,0x60,0x16,0x66,0x07,0x4d,0x77, +0x39,0x73,0x7f,0xda,0xef,0x35,0x6a,0xbf,0x03,0xf4,0x3d,0x0e, +0x48,0xf6,0x7b,0x16,0xa7,0xca,0xec,0x77,0xdc,0xbf,0xdb,0x2f, +0x21,0x9f,0xc2,0x49,0x55,0xe9,0xe5,0x3f,0x85,0x14,0x55,0xc9, +0x7e,0xdf,0x25,0x9f,0xc1,0xc9,0x4d,0xd2,0x93,0xcf,0x20,0x65, +0x13,0x8b,0x4b,0xb1,0x86,0xc0,0x21,0x71,0x3d,0x1e,0xa2,0x14, +0xec,0x58,0x40,0x94,0x5f,0xa4,0x3f,0xc5,0x2f,0x3c,0xdb,0xd7, +0x22,0xac,0x07,0x0b,0x3c,0xc6,0xc4,0x66,0xc6,0xe7,0xc6,0x64, +0x73,0xf0,0x1e,0xbc,0x4f,0x56,0xe2,0x95,0xcf,0x59,0x4f,0x04, +0xf2,0xbb,0x30,0x6e,0x16,0x3b,0xe5,0xb3,0xb1,0x77,0xf2,0x29, +0x5c,0xa2,0xb1,0xe9,0x39,0xb6,0x11,0xb8,0x27,0xa6,0x20,0x2b, +0xbd,0x93,0x1f,0xff,0x7c,0x23,0xef,0xb2,0xe2,0x2c,0x9c,0x42, +0x6e,0xc3,0xd9,0xed,0xd2,0xcb,0xde,0x86,0xcc,0xed,0xec,0xa8, +0x2d,0xbe,0x45,0xee,0xc3,0xd9,0xcd,0xd2,0x93,0xfb,0x90,0xb9, +0x99,0x15,0x2b,0x29,0x01,0x38,0x93,0xf8,0x71,0x62,0xe2,0x8c, +0x5a,0xd0,0x6b,0xc3,0xd9,0x0f,0x0d,0x36,0xa0,0x8a,0xc9,0x53, +0x4a,0x2b,0x26,0x04,0xa2,0xc2,0xa6,0x25,0xca,0x75,0xe6,0xd7, +0x1f,0x94,0xfc,0x92,0xf0,0x42,0xe9,0x47,0xe6,0xcc,0xae,0xd3, +0xba,0x11,0xfa,0x9c,0xd3,0xb1,0x23,0x91,0x4e,0x33,0x8d,0x18, +0x1a,0xc1,0xfa,0x98,0x8e,0xfc,0x8c,0xb6,0x04,0x95,0xe4,0xa1, +0xb3,0xc3,0xa7,0x61,0x12,0x07,0x7b,0x61,0x25,0x89,0xdf,0x30, +0xa8,0x76,0x5f,0xb3,0xac,0x8d,0x5f,0x7e,0xdd,0xb4,0x37,0xe8, +0x2e,0x77,0x88,0x09,0xde,0x6e,0xa5,0xb9,0x6e,0x5f,0x95,0x29, +0xff,0xc9,0x95,0xee,0x4b,0x71,0x8f,0x38,0x75,0xd4,0x24,0xd5, +0x5e,0x1d,0xe6,0xe5,0x0e,0x15,0x55,0xbc,0x4b,0xa5,0x41,0xab, +0x63,0x3e,0xb7,0x9c,0x4a,0xa6,0x4b,0x0e,0x0f,0x75,0x7a,0x8d, +0x4b,0x1a,0x79,0xed,0xb6,0x4d,0x7d,0x1a,0x15,0x1c,0x75,0x56, +0xf9,0x50,0x6f,0x51,0x1b,0xed,0xa5,0x43,0xed,0x25,0xd4,0x28, +0xcf,0x22,0x0f,0xa9,0xe8,0x6a,0x06,0x6b,0x34,0x70,0xb1,0x39, +0x2c,0xde,0x8b,0xe2,0x0d,0x58,0xd2,0x8c,0x4b,0x2e,0x32,0xad, +0xd1,0x83,0x09,0x2d,0xd9,0xc1,0x4d,0xbc,0xa1,0xff,0xfe,0x30, +0xd5,0xa3,0x1c,0xf6,0xf6,0x36,0x0a,0xf3,0xd8,0x44,0x43,0xe9, +0x00,0x4d,0xf9,0xcc,0x54,0x8a,0x6f,0xb3,0xa2,0x32,0xbe,0x4d, +0xee,0x52,0x83,0x96,0xe6,0xe1,0x2e,0x35,0x67,0x76,0xd4,0xf2, +0x3f,0x9f,0xa0,0x19,0xc5,0x8c,0xd0,0x93,0xfe,0xc7,0x8f,0x28, +0x07,0x1f,0x8d,0x38,0xe5,0x35,0x73,0x36,0x93,0x60,0xa6,0x00, +0xaf,0x33,0xcd,0x39,0xa9,0x79,0x09,0x2a,0x49,0xf9,0xe7,0x5b, +0xdb,0x66,0x60,0x29,0x13,0x93,0x10,0x9d,0x10,0x9d,0xa8,0x97, +0xca,0xbb,0xec,0xd6,0xd6,0x5f,0x62,0x50,0x6a,0xc9,0x5f,0xaf, +0xe8,0x69,0xa8,0xed,0xe0,0xe8,0x3a,0xb5,0x90,0x7f,0x4d,0x1a, +0x10,0x7e,0x87,0x2b,0x50,0xcc,0x3e,0xc6,0x62,0x02,0x9f,0x8a, +0xf5,0x1f,0x32,0x67,0xa2,0x3f,0x3e,0x1f,0x33,0xa3,0x95,0x35, +0x49,0x54,0x38,0x88,0x1b,0xd8,0x80,0x23,0x31,0x25,0x2a,0xb5, +0xa0,0x0f,0x06,0x6c,0x69,0x60,0x59,0x50,0xe9,0xe1,0x82,0x56, +0x7e,0x4d,0xf5,0xda,0x6e,0x93,0x5e,0x0e,0x76,0xb6,0xe2,0x65, +0x26,0x31,0x23,0x21,0x33,0x2e,0x53,0x3f,0x89,0x8f,0xf0,0x09, +0xf3,0x0b,0xf1,0xe3,0x30,0xc0,0x14,0x34,0x19,0x1d,0x8d,0xad, +0x46,0xab,0x1c,0x0b,0x4d,0xf9,0xd2,0x94,0xe2,0xb4,0xe2,0x74, +0x0e,0xc3,0x7b,0x5a,0xe1,0x7d,0x53,0x56,0xaf,0x20,0xb0,0x43, +0x19,0x36,0x31,0xc5,0x69,0xb1,0x19,0x31,0x2a,0xf1,0x56,0x0a, +0xcf,0x98,0x86,0x2c,0x1a,0xa9,0x47,0xfa,0x45,0x45,0x69,0xe0, +0x0c,0xb9,0x0e,0xd1,0x7b,0x59,0x30,0x55,0xbc,0x0e,0xd9,0x7b, +0x25,0x93,0xe0,0xc8,0x4d,0x88,0xde,0x25,0x3d,0xb9,0x09,0xd9, +0xbb,0x58,0xbc,0x88,0x5b,0x49,0xb6,0x5b,0x89,0x7b,0xa5,0x07, +0x87,0x6f,0x74,0x1b,0xe8,0xe3,0x78,0xa6,0xa2,0xb0,0xb8,0xb8, +0xa0,0x94,0xa3,0xee,0xa1,0x49,0xfa,0xe1,0x7d,0x2d,0xb6,0x4b, +0xb1,0x1f,0x66,0x69,0xb1,0xf8,0xd0,0x8a,0xc0,0xfb,0xea,0xf8, +0x3e,0x03,0x5a,0x8a,0x97,0x60,0x96,0x3a,0xfb,0xbf,0x8c,0x7a, +0x2d,0x93,0x14,0x13,0x9f,0x74,0x2e,0x23,0xe5,0x25,0x6f,0x9e, +0x13,0x82,0xaf,0x3b,0xe7,0xb8,0x95,0x78,0x57,0x2b,0x35,0x0e, +0x94,0x5f,0xc9,0xea,0x33,0xcf,0xe6,0x83,0x8d,0xbd,0xf4,0x9d, +0x8c,0xbc,0x7b,0x82,0x07,0x8f,0xde,0xe1,0xc0,0xae,0x1d,0x1d, +0xf3,0x98,0x8b,0x7a,0x96,0xec,0x91,0x8f,0x43,0xcf,0x1c,0x51, +0xc6,0xaf,0x8d,0xe1,0x3b,0x26,0x7e,0x59,0xee,0x86,0xaa,0x7d, +0x96,0xfa,0x06,0x26,0xda,0x4e,0xe5,0x36,0x7c,0x4f,0x79,0x7b, +0x4b,0x63,0x57,0x81,0x7d,0x89,0x6b,0xa5,0x5f,0x52,0x54,0xf2, +0xa9,0xe4,0xb3,0x09,0x26,0xfc,0xff,0x18,0xec,0x35,0x88,0xde, +0x27,0x0d,0xed,0x1a,0x64,0xef,0x93,0x06,0xcb,0x92,0x61,0x88, +0xde,0x2d,0x3d,0x19,0x86,0xec,0xdd,0x2c,0x9e,0xa0,0x3f,0x53, +0x16,0xd9,0x19,0x58,0x12,0x9c,0x57,0xc3,0xdb,0x67,0x59,0xa6, +0x39,0xc5,0x73,0xe2,0x6c,0x91,0x25,0x10,0x09,0xfb,0x29,0x45, +0xec,0xa0,0xd4,0xef,0x2b,0x50,0x5e,0xc6,0x7e,0xad,0x46,0x96, +0xf9,0x22,0xf1,0xc7,0x71,0x11,0xf1,0x46,0xfc,0xcb,0x24,0x50, +0xcc,0xfe,0x2a,0xef,0x2f,0x0b,0xbd,0x47,0x2d,0xb4,0x83,0x5a, +0x68,0x87,0x64,0xa1,0x49,0x4b,0xc0,0x04,0xe7,0x7c,0x0a,0x6a, +0x6d,0xa8,0xf6,0x90,0xe9,0x8d,0xeb,0x4e,0x68,0x4e,0x0e,0x6c, +0xe5,0x57,0x79,0xe1,0xdb,0x87,0x91,0x1c,0x4f,0x30,0xe6,0x5b, +0xcf,0xb6,0x9f,0x6f,0x8b,0xe6,0xb6,0xe1,0x1e,0x13,0xd8,0xa3, +0x8a,0x33,0xf1,0x64,0x4f,0x33,0x24,0x4a,0xb1,0xf6,0xa7,0x3f, +0x3d,0x58,0x66,0xa7,0xd3,0xfe,0x87,0x9d,0x4a,0x1e,0xfc,0xf1, +0x98,0x07,0xa7,0x6f,0x66,0x47,0xdf,0xc1,0x89,0xa4,0xc9,0xab, +0xcb,0xbe,0xd2,0xb5,0xac,0x91,0x77,0x29,0xd6,0xad,0x33,0xcf, +0xe5,0x7e,0xc6,0xa3,0xc4,0xa5,0x44,0xb7,0xc6,0x22,0xd7,0xc5, +0x9a,0x6f,0xf4,0xee,0x76,0xa8,0x72,0xe6,0x96,0xe0,0x69,0x72, +0xa1,0xf3,0xe2,0xf5,0xf2,0x7e,0xf3,0x12,0xde,0x41,0x47,0x7b, +0xbf,0xae,0x39,0x55,0x49,0x6d,0xe4,0x77,0xf0,0xa5,0x41,0xe5, +0xe1,0x48,0x31,0xe9,0xb6,0x6d,0xb2,0x6e,0x31,0xad,0x6d,0xe1, +0x2d,0x9b,0x0c,0x5a,0x0c,0xab,0x38,0xd8,0xe8,0x45,0xfe,0xc5, +0x5e,0xa0,0x63,0x0b,0x80,0x3e,0xf6,0x06,0xf6,0x51,0xe4,0x11, +0xd3,0x71,0x0a,0x23,0xf9,0xd3,0x78,0xa6,0x39,0x35,0x95,0x72, +0x8b,0x5e,0x6c,0x61,0xb1,0x9d,0x7a,0xcf,0x7d,0xd8,0x46,0xdf, +0xd5,0x5e,0xfa,0xae,0xf6,0xd1,0xb8,0x52,0x84,0x8a,0x34,0x06, +0x6f,0x5b,0x27,0x3d,0x79,0x0c,0xfb,0xd6,0xb1,0xa3,0x77,0xcf, +0x92,0x2e,0xeb,0x3e,0xc3,0x26,0xe3,0x86,0x66,0xde,0xba,0x45, +0xa3,0x47,0x8f,0xaa,0xc5,0x4e,0xf1,0x7d,0xba,0x1e,0xfa,0x6d, +0xa8,0x3f,0xcc,0x5e,0x88,0xed,0x4d,0x68,0x4b,0x0c,0x6a,0xe2, +0xe7,0xf8,0x20,0x39,0x8c,0xfc,0xf1,0x78,0x73,0xbe,0xfb,0x6c, +0xcf,0xf9,0xee,0x68,0xee,0x20,0x6a,0x98,0x80,0xc6,0x6e,0x54, +0xc1,0x33,0xdd,0x7d,0x50,0x07,0xba,0xec,0xe8,0x06,0xcc,0x23, +0x97,0xe1,0xf5,0x06,0x78,0x3f,0xeb,0x67,0xed,0x0c,0xde,0x1b, +0x5f,0x77,0xc0,0xc9,0x5a,0xf3,0x38,0x41,0xfd,0x0b,0xf2,0x3d, +0x84,0x2e,0xfe,0xdf,0x0c,0x71,0x35,0x93,0x68,0xa0,0x70,0xfb, +0xdf,0xad,0x84,0x25,0x37,0x20,0x7a,0x8f,0x64,0x13,0x37,0x20, +0x7b,0xcf,0x3f,0x58,0xc9,0x56,0xd1,0x99,0xa2,0x1a,0xcb,0x56, +0xa6,0x05,0x66,0xf8,0x65,0x04,0x26,0x29,0x5d,0x87,0x02,0xf1, +0x00,0x16,0x80,0xee,0x01,0x8c,0x35,0x83,0xe3,0x8c,0xb3,0xc1, +0x42,0x17,0x9c,0xe2,0x99,0x65,0xcc,0x83,0x62,0x09,0x90,0x86, +0xa4,0x7b,0xd2,0x71,0x90,0x9b,0x7f,0x73,0x82,0x77,0x1c,0x33, +0xda,0x78,0x64,0x8b,0x57,0x97,0xb8,0x77,0x72,0x40,0xa0,0x9f, +0xe0,0xd3,0x1a,0x78,0xca,0xe0,0x53,0xfa,0x22,0xb5,0xf0,0xd4, +0x96,0xb5,0x7b,0xdd,0x06,0x9f,0xd6,0xb1,0x70,0x75,0x13,0xb1, +0x0b,0xce,0x09,0xcb,0x09,0x4c,0x3b,0xac,0x84,0xb3,0xae,0x32, +0x53,0x1e,0x8d,0x0d,0xe0,0x0f,0x18,0x80,0x7c,0x3a,0x80,0x7c, +0x02,0x77,0xc5,0x1a,0x24,0x4c,0x22,0x45,0x1c,0x6e,0x6c,0x08, +0xdd,0xe2,0x3b,0x12,0xe2,0xbc,0x46,0x06,0xe1,0xec,0xff,0xc3, +0xda,0x7b,0x80,0x55,0x71,0x7d,0xeb,0xc3,0x6a,0x64,0x66,0x62, +0x21,0x75,0x9b,0x01,0xcd,0xc1,0x2e,0xd8,0x15,0x0b,0x16,0xc4, +0x86,0x05,0x95,0xde,0x7b,0x2f,0xd2,0x45,0xa4,0x57,0xc5,0x16, +0xa5,0xf7,0x0e,0x22,0x48,0xef,0xbd,0x77,0xb0,0xd7,0x24,0xf6, +0x98,0x68,0x12,0x63,0xca,0x2f,0x75,0x0d,0x59,0x43,0xfe,0xdf, +0x1e,0x34,0xb9,0xf7,0x77,0xef,0xfd,0x9e,0xfb,0x7c,0x45,0x9e, +0x67,0xce,0xb8,0x39,0x67,0x66,0xad,0xbd,0xde,0xf5,0xae,0x77, +0xcd,0x19,0x66,0x6b,0x49,0x06,0x5f,0x85,0x1c,0x2d,0x76,0xdc, +0x7a,0xc2,0x85,0xf3,0x6f,0x5c,0xc8,0xa1,0x40,0x67,0xc4,0x69, +0xc4,0xab,0xc4,0xae,0xdc,0xa9,0xc0,0xd3,0x93,0x2f,0x0c,0x2f, +0x0c,0xcd,0xa3,0x9d,0xc9,0x69,0xa6,0xfb,0x42,0xfb,0xc5,0x96, +0x12,0x0e,0x3c,0x5b,0x70,0x39,0xd3,0x5a,0xd9,0x50,0x5b,0x5d, +0xef,0x52,0xc6,0x1f,0xf5,0xf5,0x3d,0xe2,0xe3,0xc7,0x35,0xa2, +0xfa,0x65,0xa3,0x83,0xb8,0xc3,0x06,0x76,0xec,0xc7,0xa3,0xd6, +0x50,0xc5,0xae,0xb3,0x58,0xe2,0x88,0x53,0xbc,0xb2,0x6d,0xf8, +0xba,0xd4,0xda,0xb4,0xea,0x0c,0x0e,0x8f,0x53,0xe0,0x7e,0x05, +0xce,0x6c,0x4a,0xb4,0x1c,0x46,0x42,0x00,0x81,0xcd,0x8c,0xcf, +0x51,0x2f,0x7f,0x8f,0x63,0xdc,0x56,0x06,0x27,0xa3,0x0f,0xe9, +0x83,0x4a,0x43,0x16,0x2b,0x29,0x51,0x54,0xea,0x61,0xe5,0x7f, +0xb8,0xf5,0x3b,0x75,0xab,0x94,0xba,0x55,0x2a,0xb9,0x55,0xbf, +0x4a,0x8a,0xcb,0x83,0x7f,0xe2,0x32,0xe1,0x94,0x44,0x55,0xe7, +0xdf,0x50,0x55,0xce,0x5e,0xc9,0xa9,0xb7,0xc9,0x1d,0x38,0xbf, +0x4b,0x1a,0xb9,0x03,0x39,0xbb,0x58,0x94,0x17,0xf5,0x08,0x04, +0xa1,0x47,0x27,0x24,0xb4,0x61,0xc2,0x88,0xa1,0x36,0x9e,0xb7, +0x84,0xf3,0x66,0xe8,0x82,0x41,0xb0,0x97,0x3d,0xec,0xa8,0xe5, +0x81,0x1f,0x3b,0xe4,0x59,0xf0,0x30,0xaf,0xe9,0x49,0x7d,0xce, +0x4d,0x2e,0x01,0x8d,0x7a,0xc1,0x28,0x81,0xc9,0xde,0x7f,0xdf, +0x1e,0x94,0xac,0xf3,0xda,0x78,0xfc,0xa8,0xf1,0x60,0xa5,0x47, +0x15,0xb7,0x06,0x0e,0x11,0x9c,0x87,0xaa,0x30,0x8f,0x8a,0x3b, +0xaa,0x8b,0x61,0x1e,0xa8,0xe1,0x3c,0x5a,0x05,0x13,0x49,0x79, +0x49,0x59,0x75,0x7e,0x9d,0xd3,0x05,0x3e,0xd0,0xc9,0xcb,0xd5, +0xfd,0x08,0x87,0xce,0xd7,0x49,0xb1,0x5f,0xa5,0x63,0xae,0x57, +0x65,0x31,0x1f,0x70,0xc9,0xbd,0xc6,0xbb,0x88,0xfb,0xa7,0x28, +0x3f,0xa2,0x45,0xb9,0x95,0xf2,0x40,0xab,0x54,0x94,0xf3,0x0f, +0x30,0x05,0xd5,0x72,0xea,0xbd,0xbb,0x87,0xe1,0x23,0xc5,0xef, +0x9e,0xb2,0xa7,0xec,0xc2,0x8c,0xfd,0xad,0x9b,0x03,0xf9,0xc2, +0xee,0xec,0x6b,0x09,0x9d,0x5c,0x0d,0x5a,0xb2,0x89,0x45,0xf1, +0x17,0x62,0xf3,0x69,0xc3,0x1e,0xa6,0xee,0xb7,0xce,0x66,0x6f, +0xa3,0x2f,0x5f,0x58,0x9b,0xd7,0x96,0xd9,0xce,0x5d,0x5a,0xce, +0xa0,0xbc,0xde,0x2e,0x54,0x5c,0x23,0x2b,0xb7,0x86,0xe9,0x8f, +0x87,0xee,0xc4,0x7e,0xa3,0x90,0xc8,0xc4,0xa9,0xb7,0x1f,0xba, +0xa7,0xc7,0xd9,0x4c,0xe8,0x0e,0xee,0x0d,0x59,0xb4,0xfc,0xdf, +0x95,0xfb,0x77,0x28,0x7d,0x9c,0x7f,0x43,0x1f,0xb9,0x1a,0xac, +0xb8,0x41,0x54,0x20,0xfb,0x98,0xf3,0x85,0xe7,0x8a,0x4a,0x14, +0x5f,0xc0,0x47,0x2d,0x5b,0xd8,0xec,0x4b,0x99,0x55,0x29,0x65, +0x56,0x19,0x7c,0xa4,0x4b,0xa8,0x43,0xc0,0x61,0x0e,0xf5,0xac, +0x41,0xb6,0x99,0x39,0x7c,0xd6,0xe7,0xcc,0x11,0xd9,0x01,0xf8, +0xd0,0x02,0x77,0xfc,0xc6,0x84,0xe9,0xba,0x3b,0xee,0xb5,0xac, +0xb6,0xe3,0xef,0x0f,0x57,0x77,0x66,0x7e,0xce,0xc1,0x4c,0xd8, +0x61,0xc1,0xe0,0x07,0xbf,0x92,0xc8,0x4b,0x21,0x65,0x81,0x45, +0x76,0x01,0x7c,0xb6,0x5f,0xb6,0x7b,0xaa,0x2f,0xf7,0x3f,0xa3, +0xb6,0x65,0x7b,0x9d,0x11,0x2c,0x17,0x3d,0x70,0xb9,0x89,0xb5, +0x30,0x24,0x15,0xd2,0xff,0x12,0xea,0xff,0x15,0xbf,0xe2,0x4f, +0xb8,0x86,0x80,0xb3,0x29,0x9e,0xb3,0x81,0xad,0x4c,0xd8,0xb1, +0xc0,0xa3,0xc7,0xfc,0x38,0x37,0xb7,0xb3,0xee,0xb3,0xe3,0xad, +0x60,0xd9,0x79,0x30,0x4e,0x81,0x29,0x89,0x0a,0xa9,0xe1,0x29, +0xe1,0x49,0x91,0x4d,0x85,0xbc,0x4f,0x95,0x43,0x8b,0xfb,0x45, +0x9b,0x00,0x3e,0x25,0x3a,0x2d,0x2a,0x35,0x72,0xff,0xa9,0x95, +0x27,0x97,0x9d,0xce,0x2d,0xc8,0x2e,0xcc,0xa0,0x9a,0xea,0x7e, +0x33,0xc6,0x77,0xc1,0xe1,0x66,0x3c,0xdc,0x6b,0x60,0x84,0xce, +0x0c,0xcc,0xa7,0x5d,0x00,0x4e,0x59,0x0f,0x53,0x58,0x50,0x90, +0xbe,0x05,0x99,0xf2,0x02,0xa7,0x48,0xdf,0xcd,0x4e,0x79,0x49, +0x5f,0xe5,0x61,0xc1,0x66,0xf2,0xda,0x1d,0xf1,0xad,0xbf,0xa6, +0xb1,0x63,0xe9,0x19,0xe4,0x1f,0xdb,0xb1,0x48,0xf2,0x0e,0xa7, +0xb3,0x14,0xbd,0xe2,0x2f,0x63,0x54,0xb8,0x9e,0xd7,0xc2,0xf3, +0x54,0x9b,0x5f,0x25,0xd4,0x0f,0xcc,0xa1,0x7a,0xdd,0x9a,0x8e, +0x69,0x4e,0x8c,0xdd,0xa2,0x63,0x9a,0x74,0x6c,0x58,0x1c,0x27, +0x7d,0x17,0xf2,0xda,0xd3,0x94,0x52,0xdb,0xe3,0xfb,0xcf,0xdd, +0xe1,0x30,0xb0,0x07,0xf4,0x6b,0x51,0xbf,0x6b,0x62,0xdb,0x09, +0xce,0x8d,0xb4,0x85,0xbb,0x2e,0x18,0x30,0x67,0xdd,0x4e,0xdb, +0x46,0x39,0x70,0xee,0xc7,0x43,0x8f,0xbb,0xcd,0xd6,0x63,0xd2, +0xad,0xe5,0xf0,0x92,0xe0,0x45,0x40,0xcd,0x0c,0xd5,0x18,0xa7, +0xa9,0xa0,0x66,0xfa,0xe6,0xd5,0x98,0xbe,0xc2,0xd7,0xb8,0x9c, +0x44,0x97,0x86,0x56,0x85,0x5d,0x70,0x88,0xe0,0x33,0x8e,0x64, +0x38,0x27,0x7b,0x72,0xba,0xae,0xe4,0x44,0x6b,0x78,0x57,0x58, +0x8d,0x6d,0x34,0x9f,0xee,0x94,0x6e,0x9c,0x60,0xc5,0x61,0x81, +0x17,0x29,0x6b,0x2a,0xbd,0x9d,0xd2,0x62,0x93,0xc1,0x47,0xd9, +0x7a,0x1e,0xf0,0x72,0xe0,0x20,0x2c,0x94,0x9c,0x69,0x3f,0x71, +0x35,0xb2,0xc5,0x26,0x86,0x4f,0xb6,0x4a,0xd8,0x7b,0xce,0xf2, +0x3f,0x04,0xcc,0x9f,0x94,0x41,0xdf,0x84,0xf2,0x81,0xd8,0xb2, +0x44,0xca,0xd4,0xff,0x52,0x67,0xa7,0x92,0x6b,0x10,0xbf,0x5f, +0x0a,0xd6,0x35,0xc8,0xdf,0x2f,0x01,0x8f,0xf9,0x77,0x06,0x15, +0x1d,0xf0,0x24,0x49,0x0a,0x4d,0x0e,0x4e,0x0a,0x76,0x3e,0xe5, +0x70,0xda,0xe1,0x74,0x67,0xf3,0xc0,0xd5,0x96,0x3e,0xc7,0x12, +0xfe,0x88,0x9b,0x93,0xad,0x93,0x43,0x74,0x5a,0x04,0xfd,0x29, +0xab,0xac,0xa8,0xbf,0x58,0xe7,0x50,0xcc,0x1f,0x75,0xf6,0x74, +0xf2,0x3c,0x1c,0x99,0x1a,0x99,0x12,0x99,0xec,0xe1,0xc6,0x57, +0x79,0x54,0xbb,0x5e,0x74,0x0f,0x09,0x0e,0x09,0x0d,0x8d,0xe0, +0x02,0x8e,0x9d,0x0d,0x9c,0x9d,0x64,0x73,0x3f,0xee,0x55,0xfc, +0xc3,0x14,0x85,0x84,0xd0,0x84,0x90,0xf8,0xd0,0xba,0x2c,0x3e, +0xac,0xd9,0xaf,0xf7,0x68,0x2d,0x27,0x28,0xa0,0x22,0x09,0x6d, +0xf1,0x19,0xf0,0xaf,0x73,0x0c,0xe2,0x53,0x82,0x53,0x02,0x93, +0x03,0xec,0x4e,0x59,0x9f,0xb6,0x3e,0xd3,0x41,0xcf,0xd8,0xd8, +0xe7,0x78,0x89,0xf7,0x73,0x75,0xb6,0x76,0xb2,0x77,0xad,0xe5, +0xcb,0x2a,0xca,0xeb,0x4a,0xea,0xed,0x2f,0xf2,0x47,0x5d,0x3c, +0x9c,0x3c,0xdd,0x23,0x52,0xe9,0x09,0x93,0x3d,0xdd,0xf8,0x4a, +0xaf,0x5a,0xe7,0x12,0xd7,0xd0,0xd0,0xd0,0xb0,0xf0,0x08,0x2e, +0x28,0xe4,0x6c,0xc8,0xec,0x38,0x9b,0xcf,0x62,0x7f,0x8e,0x7f, +0x92,0x4a,0x4f,0x17,0x1f,0x1a,0x1f,0xc6,0x45,0x1e,0x27,0x26, +0x2b,0xf0,0x23,0x98,0x6c,0x82,0xa5,0xdd,0xf0,0x2e,0x1c,0x60, +0x44,0xee,0x5b,0x12,0x74,0x36,0xe4,0x74,0xa8,0x0c,0xdf,0xf9, +0xc6,0x04,0xe7,0xc0,0x7a,0xc6,0xdf,0xde,0xe6,0xc8,0x96,0xa0, +0x0b,0xb4,0x0b,0x7e,0xbf,0xe2,0xda,0x00,0x28,0x2a,0xf6,0x9b, +0xb0,0xff,0x77,0xa4,0x3e,0x5d,0x22,0xf5,0xdf,0xff,0x1f,0x72, +0xba,0x38,0x07,0x0f,0x13,0xf8,0x10,0x4f,0xe0,0x87,0x2c,0x74, +0xc2,0x87,0x04,0x3f,0x84,0xe3,0xf0,0x21,0x8b,0x3f,0x3a,0x10, +0x0b,0x9c,0xdb,0x4e,0x07,0x2d,0x48,0x3b,0x28,0x59,0xb0,0x37, +0xf0,0x3b,0x82,0x19,0x6d,0xe0,0x05,0x5e,0x62,0x10,0x7a,0x81, +0xbb,0x25,0xa6,0xda,0x40,0xea,0xfa,0xee,0x67,0x90,0xc1,0xe0, +0x55,0xf0,0x21,0xb8,0xa1,0x03,0x36,0x30,0x9d,0xd2,0x53,0x30, +0x36,0x99,0xb3,0xe8,0xee,0x44,0x4c,0x71,0x43,0x97,0x74,0x75, +0x04,0x36,0x99,0xe2,0x26,0x46,0xfe,0x53,0xc9,0xf0,0x19,0xc3, +0x63,0x1c,0x5c,0x87,0x74,0xf6,0x19,0xa6,0x13,0x78,0x22,0x8e, +0xea,0x32,0xf1,0x75,0x72,0x78,0x87,0xc1,0xf7,0x5d,0xba,0x1f, +0x29,0xfd,0x88,0x32,0xeb,0xaf,0x8c,0xd8,0xad,0xbe,0x2e,0x6a, +0x2e,0xb2,0x5c,0x93,0x2f,0xeb,0x0a,0x5a,0x62,0x87,0x14,0x12, +0x18,0xbd,0xd8,0xbe,0x83,0xf0,0xfe,0x6c,0x48,0x61,0x32,0x1d, +0xe4,0x7e,0x60,0x1a,0xf3,0x33,0x6b,0x95,0xc6,0x46,0x45,0x45, +0x56,0x5c,0x38,0x8f,0x8c,0x40,0xb2,0x36,0x0b,0xb6,0x54,0x3e, +0x16,0x6a,0xb3,0xe3,0x5e,0x38,0x99,0xba,0x9d,0xac,0x25,0x8d, +0x5c,0x85,0x42,0x2d,0x16,0x47,0x17,0x13,0x5c,0xe7,0x04,0xeb, +0x6c,0xd0,0xd4,0x49,0x30,0xa9,0x45,0x9b,0x66,0x50,0xaf,0x45, +0xf5,0x5a,0x13,0x06,0x5f,0xda,0x90,0x1a,0xff,0x7a,0xef,0x0a, +0xcf,0x92,0x7a,0xde,0xb5,0xcc,0xe1,0xa2,0x4b,0x3e,0x67,0x40, +0x73,0xa0,0x36,0xa0,0xcd,0xbd,0xd2,0xfd,0x52,0x1d,0x1d,0xb3, +0x28,0x77,0xce,0xe3,0x20,0xd0,0x98,0x64,0x05,0x65,0x04,0x26, +0x07,0xb6,0xa5,0xf1,0x91,0x79,0x61,0x79,0x61,0xd9,0x1c,0x4c, +0xc7,0x8b,0x04,0x4c,0x6b,0xd1,0xb4,0x15,0x36,0x57,0xe3,0xe6, +0x66,0x30,0xaa,0xa5,0xca,0x26,0x33,0x27,0xb3,0x20,0x25,0x57, +0xfa,0x6e,0xe1,0x58,0xe8,0x91,0x60,0x3f,0x0e,0xd3,0x9d,0x40, +0xdb,0x06,0x55,0x5d,0x40,0xd5,0x0a,0xf5,0x9c,0x40,0xcf,0xb0, +0x9b,0xf9,0x27,0x2f,0x7e,0xa6,0x79,0x51,0x49,0x63,0x58,0x29, +0xe5,0x45,0x35,0x4e,0x95,0x12,0xe3,0xc7,0x7f,0x4f,0x0c,0xee, +0xdf,0xd3,0x80,0x26,0xc6,0x74,0xca,0xd1,0xf1,0x3b,0xa4,0x91, +0x7b,0x90,0xbf,0x83,0xc5,0x83,0xa8,0x40,0x86,0x4d,0x74,0x70, +0x86,0x05,0x74,0xb7,0xb3,0x62,0x19,0x6e,0x26,0x60,0x00,0x3a, +0x34,0xa8,0x93,0x19,0x54,0xf4,0xdf,0x62,0x7f,0x50,0x56,0x63, +0x5e,0x54,0x97,0xd3,0x9c,0xde,0xa1,0x80,0x5e,0x9d,0x8d,0xb0, +0x09,0x02,0xd0,0x96,0x8d,0xcb,0x3f,0x9f,0x7f,0xbe,0x90,0x83, +0xb9,0x30,0x9f,0x2c,0xc5,0x8f,0xcb,0xd9,0xab,0xac,0x50,0x44, +0x35,0x0e,0xbe,0xf3,0x18,0x66,0xb7,0xaf,0x65,0xb2,0x2a,0xd3, +0x6a,0x92,0x2b,0x2d,0x52,0xf9,0x13,0x6e,0xe1,0xb6,0x21,0x8e, +0x1c,0x6a,0x59,0xc0,0x47,0x9b,0x70,0x86,0x39,0xcc,0xc0,0x45, +0xdd,0xb0,0x08,0xde,0x61,0xf0,0x20,0x58,0x90,0x13,0xa5,0x21, +0x35,0x61,0xc5,0x56,0xa1,0x7c,0x86,0x4f,0xa6,0x73,0xa2,0x0f, +0x87,0xab,0x68,0xea,0xe2,0x1c,0x64,0x60,0x0e,0x2b,0x3f,0xb6, +0x55,0xba,0x6a,0x98,0xc2,0x3e,0xcd,0x7c,0x94,0x73,0xbd,0xd0, +0xa3,0x9f,0x47,0x45,0x6b,0xd4,0xf3,0xc2,0xbd,0x11,0xe9,0xda, +0xfc,0xcd,0xf8,0xcf,0x93,0x3e,0x4f,0xe3,0xf0,0x13,0x8c,0xd7, +0x81,0x78,0xd1,0xfe,0xaa,0x60,0x0f,0x25,0xc3,0xec,0xb8,0x5e, +0x2d,0x69,0xb8,0xdb,0x09,0x53,0xf3,0x9f,0x71,0x6d,0xd8,0xf8, +0xd7,0xe4,0xcb,0x63,0xa3,0xb0,0x8e,0x0d,0xd9,0x65,0x82,0x53, +0x2c,0xd7,0x73,0x9f,0xee,0x6a,0xdb,0xb6,0x5d,0x51,0x2f,0xc4, +0xdd,0x50,0x66,0xc0,0xa4,0xec,0x97,0x1b,0x65,0xee,0x34,0xb7, +0xfd,0xf6,0xc2,0xfc,0xb1,0xd6,0xa8,0x92,0xbc,0x30,0x15,0xf2, +0xc8,0x97,0xd6,0x0f,0x0e,0x8e,0xc8,0x1a,0x6f,0x77,0xfd,0x51, +0xf8,0x94,0x1e,0xa1,0xfb,0xaf,0xc9,0x57,0xe8,0x11,0xb6,0xb0, +0xc1,0x7b,0x4c,0xe6,0x9b,0x6d,0xe4,0xee,0x68,0xb6,0x6e,0xdf, +0xad,0xa8,0x17,0xec,0xa9,0x27,0xb3,0x90,0x0e,0x30,0xc0,0xdc, +0x6b,0x6a,0xfb,0x97,0xd2,0x65,0x18,0x21,0x98,0x16,0x82,0xba, +0x2a,0xb8,0x59,0xd6,0xe5,0x20,0xf7,0x13,0xec,0x2d,0x00,0x53, +0x28,0x53,0x84,0xed,0x82,0x53,0xbf,0x98,0xcf,0x42,0xe2,0x78, +0x0b,0xb1,0x0d,0x4f,0x6d,0x52,0x12,0x52,0xc0,0x17,0xf3,0x71, +0xbe,0x74,0x8d,0x05,0xde,0x66,0xda,0x0a,0xa5,0xc5,0x9f,0xae, +0xe1,0xb7,0xe2,0x1d,0x76,0x7b,0xa5,0xd7,0x6d,0x19,0x58,0x32, +0x9d,0xf9,0x17,0xba,0x94,0xa8,0xd5,0xba,0xd9,0xd2,0x7a,0x64, +0xf2,0xc2,0x0c,0x88,0x23,0xdf,0x58,0x3c,0x3a,0x38,0x2a,0x6b, +0xba,0xdd,0x03,0x53,0x0b,0xbf,0xa4,0x86,0x0d,0x4b,0x86,0x8d, +0xc0,0x6e,0x36,0x68,0x97,0x21,0x4e,0xa1,0x96,0xdd,0xdb,0xd5, +0xba,0x5d,0x9d,0x5a,0xe6,0xae,0x2b,0x33,0x65,0x52,0xf7,0xcb, +0x0d,0x32,0x9f,0xb6,0xb4,0xfd,0xa6,0x54,0x2d,0xd4,0x12,0x6d, +0xe1,0xec,0x08,0x1b,0x35,0x5e,0x49,0xb6,0x31,0x8e,0x91,0xa9, +0x75,0x4a,0xc2,0x5e,0xd0,0x18,0x15,0xaf,0x1d,0x02,0x65,0xf6, +0x0c,0x96,0xd1,0xe0,0x53,0x18,0x4c,0xae,0x31,0xe2,0xa9,0xc5, +0xdc,0x67,0xb0,0xf8,0x3c,0x74,0xd3,0x12,0x2b,0xee,0x67,0xb6, +0x14,0x1e,0x79,0x20,0x7b,0xc2,0x34,0x67,0xe7,0xb4,0x2a,0x81, +0x3a,0x6b,0x98,0x27,0x27,0xfd,0xa5,0xd3,0x4e,0x02,0x76,0xc3, +0x68,0x07,0xdf,0x6b,0x8d,0x0f,0xe0,0xf2,0xb1,0xdd,0x07,0xc6, +0x77,0xe3,0x06,0x9d,0xb1,0x75,0xc3,0x18,0xc4,0xa0,0x00,0xf1, +0xe4,0x4b,0x4b,0x69,0x0a,0x1b,0x6e,0x76,0xfd,0x51,0xf0,0x84, +0x5a,0xda,0xf9,0x7a,0x0a,0x37,0xb3,0x41,0x7b,0x4d,0xe7,0x9b, +0xa9,0x71,0x77,0xf7,0xb4,0x69,0xec,0x55,0xd4,0x0d,0xf6,0xd2, +0xff,0xdb,0xd0,0x7b,0xcd,0xed,0x3f,0x28,0xc9,0xff,0x69,0x12, +0x4a,0xd6,0xd5,0x6b,0xb6,0xea,0x75,0x7f,0xfa,0xb8,0xe7,0xa7, +0x72,0x78,0x87,0x6b,0xa7,0x67,0x31,0x04,0x4d,0x36,0xda,0xf6, +0x98,0x71,0xa0,0x5b,0x4f,0x00,0x5f,0xd4,0x51,0x30,0x94,0xda, +0x4d,0xc7,0xa3,0x61,0xb2,0x36,0x95,0x77,0xd1,0x58,0xc8,0xa2, +0xbd,0x17,0xae,0x5a,0x86,0xd3,0x65,0x1d,0x96,0x2f,0xe1,0xc3, +0x7a,0x50,0x89,0x07,0x57,0x05,0x61,0x1a,0xe3,0xbb,0xdc,0x7a, +0xe3,0xbe,0x9d,0xda,0xd7,0xac,0xee,0xb9,0x3e,0x34,0xf1,0xe6, +0xeb,0xd6,0xb7,0xab,0x5f,0xd1,0xd4,0x36,0xd4,0xb0,0x5c,0xe9, +0x54,0xa6,0xc7,0x7f,0xd7,0xf8,0xa8,0xf3,0xfa,0xe8,0x88,0xfe, +0xa7,0xa6,0xdf,0x5a,0x73,0xe2,0x3d,0x78,0x42,0x9e,0xdb,0x3c, +0xd2,0x19,0x95,0x35,0xdc,0xe9,0x84,0x29,0xf9,0x5f,0x50,0xb3, +0x1b,0x5e,0x63,0x47,0x95,0x0d,0xd1,0x34,0xc5,0x49,0x16,0x1b, +0xb8,0x9b,0xbb,0x9a,0x34,0x76,0x28,0xea,0x85,0x7a,0x18,0xc8, +0xac,0x24,0xbb,0x7b,0x98,0x3b,0x8d,0x6d,0xbf,0x28,0xd1,0x86, +0xc0,0x9b,0xe0,0x6e,0x6a,0xe8,0x6e,0x46,0xfe,0xc1,0x84,0x0e, +0x93,0x3e,0xb7,0x91,0x0d,0xda,0x63,0x36,0xdf,0x7c,0x23,0x77, +0x5b,0xb3,0x55,0x43,0x53,0x72,0xd7,0x40,0x66,0x2e,0x7d,0xac, +0x9f,0xb9,0xdb,0xd4,0xf6,0xd3,0x57,0x56,0x0f,0x0e,0x8d,0x28, +0x35,0xde,0xee,0x84,0x49,0xf9,0x74,0x92,0x58,0xe1,0x61,0x0c, +0x11,0x6b,0x74,0xa8,0x98,0x0f,0xb7,0x0e,0x30,0x3a,0x66,0xc9, +0xe1,0xe6,0xf1,0x15,0x23,0xb7,0xe0,0x67,0xcd,0xd1,0xb1,0x15, +0x18,0xc3,0xe4,0xb5,0xe6,0xf5,0x66,0xb4,0xd2,0x42,0xc9,0x88, +0x56,0xe2,0x72,0x02,0xb6,0xf0,0x33,0x4d,0x43,0xfc,0x19,0x8b, +0x09,0x78,0xd2,0x7d,0x4f,0x56,0xfe,0x4f,0x9d,0x31,0x57,0x82, +0xb7,0x98,0x94,0xea,0xe4,0xea,0xc4,0x2a,0x6d,0x9a,0x7b,0x4e, +0x51,0x0e,0xe1,0x0e,0x1c,0xee,0xd7,0x85,0x75,0x0c,0x55,0xaf, +0xfb,0x90,0x53,0x5d,0xdb,0x68,0xca,0x57,0x56,0x95,0xd5,0x97, +0xb4,0x72,0x62,0xe8,0x10,0x84,0xc2,0x10,0xae,0xc5,0xd5,0x6c, +0x86,0xbe,0x74,0x15,0xb4,0x35,0x37,0xb7,0x55,0x49,0x28,0xc3, +0x1f,0xd8,0xbc,0x86,0xec,0x86,0xcc,0x46,0x0e,0x5e,0x30,0xe2, +0xe7,0x20,0x23,0xd8,0xf5,0x26,0x0d,0x98,0xe0,0x5d,0xc6,0x38, +0x85,0x4e,0xc6,0xad,0x5d,0x2d,0x1a,0xdb,0xa4,0x44,0xd2,0xff, +0xc7,0x2b,0x9a,0x48,0x5f,0x5b,0x3e,0xd6,0xa6,0x5e,0xdd,0xed, +0x86,0xb7,0x0a,0xbe,0xe4,0x40,0x43,0x94,0x27,0xbf,0xc3,0x10, +0xd5,0xb1,0x43,0x86,0xd2,0x02,0x1e,0x53,0x70,0x88,0x91,0xff, +0x7c,0x62,0x8a,0x46,0xc6,0x2e,0x83,0x22,0x1b,0xb6,0xdb,0x0a, +0xa7,0xd8,0xae,0xe3,0x86,0x77,0xd6,0xaa,0x6f,0x57,0xd4,0x0d, +0xf7,0x34,0x93,0x39,0x31,0x29,0x5a,0x72,0xad,0xcc,0xd5,0xba, +0xd6,0x5f,0x9f,0x3b,0x3e,0x36,0xbe,0xac,0x54,0x73,0xaf,0x15, +0x98,0x9c,0x2f,0xb8,0x56,0x16,0xd6,0xe2,0x3a,0x22,0xf6,0x0c, +0x08,0x9f,0xc0,0xfb,0xd1,0x2c,0x2e,0x39,0xac,0xb1,0x71,0x9b, +0xac,0xca,0xe2,0xf1,0x93,0xfc,0x2b,0x71,0xcf,0x29,0xcf,0xc7, +0xa9,0x5e,0xd0,0xfe,0x72,0x7d,0x35,0xed,0x74,0x3f,0x77,0xfa, +0x0c,0x96,0x28,0x26,0x83,0xa2,0xb8,0x1f,0x97,0xb2,0xe9,0xc6, +0x72,0x30,0x8b,0x69,0xc9,0xcb,0xa6,0xc9,0x17,0x80,0x06,0xbf, +0x81,0x5f,0x9f,0xf8,0xa9,0x21,0x74,0xce,0x67,0xf1,0x9c,0x0b, +0xd1,0x1f,0xdf,0x31,0x30,0x28,0x54,0xf5,0x8b,0x55,0x8c,0xfc, +0xd8,0x37,0x63,0x87,0xc8,0x59,0xfb,0x53,0xf6,0x27,0x3c,0x38, +0x87,0x28,0x9f,0x30,0xbd,0xd9,0xa8,0xc0,0xbc,0x9e,0x9b,0x07, +0x6d,0x17,0xaf,0xa5,0x2b,0xa5,0x34,0x27,0xf4,0x3f,0x57,0xc4, +0xaf,0x98,0xa4,0xa2,0x04,0xfa,0x43,0x27,0xd9,0x17,0xdf,0xd9, +0x8f,0xef,0xaf,0x5c,0xd3,0x64,0xc1,0xdf,0xbe,0xd9,0xfb,0xa4, +0xe6,0x1b,0x0e,0x3b,0xd1,0x95,0x34,0xdd,0xa1,0x89,0x5a,0x20, +0x25,0xea,0xc0,0xeb,0x44,0xdd,0xc1,0x06,0x4b,0x89,0x4a,0x01, +0x71,0x77,0x57,0xcb,0xeb,0x44,0xd5,0x93,0x99,0x49,0x53,0x47, +0x29,0xa4,0x65,0x62,0xea,0x0e,0x8e,0x28,0x09,0x1b,0x70,0x29, +0x81,0xfd,0xc8,0xe1,0x2e,0x43,0xd8,0x85,0x1f,0x89,0x32,0xf8, +0x08,0xd4,0xfa,0x50,0x0d,0x58,0x66,0x24,0xf3,0xc6,0x85,0xce, +0x32,0xb7,0x0e,0xde,0xc8,0x63,0x97,0xd7,0xe6,0x30,0x4e,0x34, +0x1f,0xed,0x16,0x64,0x26,0xa3,0x82,0x13,0x9e,0xa2,0x64,0xb9, +0x51,0x5a,0x5d,0xa8,0xb8,0x1f,0x8b,0xe1,0xfd,0x43,0xf8,0x3e, +0x66,0x18,0x40,0x06,0x1e,0x67,0xd0,0xf8,0x10,0x4e,0xc2,0x6c, +0x9c,0x2b,0xab,0xd0,0x05,0x5f,0x78,0xef,0x25,0x4c,0x89,0x87, +0xd9,0x0a,0xd2,0x9a,0x82,0xb3,0xbe,0xc0,0xb7,0xe0,0x20,0x92, +0x9a,0x41,0x1e,0x3d,0x60,0xe1,0xde,0x9f,0xc1,0x4c,0x11,0x7f, +0x41,0x15,0xf2,0x85,0xc3,0x23,0x93,0x51,0x59,0xcd,0x9d,0x66, +0x98,0x9c,0xf3,0x84,0x6b,0xc5,0xa4,0xbf,0xde,0x1e,0x19,0xbb, +0x0d,0xb3,0xd8,0xd0,0xbd,0xf6,0x0b,0xac,0x54,0xb9,0xa1,0xbd, +0x0d,0x9b,0xf7,0x2b,0x6a,0x87,0xf9,0x98,0xc9,0x9c,0xa5,0x68, +0xb5,0x30,0xd7,0xea,0xda,0x7e,0x50,0x82,0xc9,0x70,0x9f,0x1c, +0x62,0x95,0x83,0x4c,0xb6,0xad,0x91,0xd5,0x5a,0xd6,0x36,0xd5, +0x0e,0x65,0x48,0x6b,0x0e,0x25,0x9e,0x8d,0x8f,0x1a,0xc5,0xb7, +0xf9,0xc6,0xaa,0x03,0x30,0xed,0x44,0x46,0xd4,0xb9,0xc8,0x68, +0x85,0xf0,0x89,0x35,0x87,0x2a,0x62,0x4b,0xfb,0x14,0x47,0x58, +0x68,0x9e,0xa5,0xcf,0x2e,0x08,0xb6,0xd4,0xda,0x2c,0xab,0xb3, +0xa8,0x68,0xb8,0xd4,0x9e,0x5e,0x46,0x3f,0x16,0x7f,0x36,0x21, +0xfa,0x31,0x7e,0xc4,0x37,0xd6,0x6e,0x86,0x0f,0x8f,0xa7,0x47, +0x9f,0x8f,0xa0,0x1f,0x8b,0xa6,0x1f,0x4b,0xae,0x88,0x2b,0x1f, +0x51,0xec,0xa7,0xbc,0xb8,0x16,0xaa,0xc9,0xf7,0x37,0xba,0x9e, +0x64,0x02,0xcb,0x81,0x39,0x9e,0x1c,0x86,0x93,0xaf,0xef,0x07, +0xf3,0xd0,0x41,0x0f,0x34,0xce,0x67,0x40,0x8e,0x6d,0x49,0x6b, +0xca,0xa8,0xce,0xf4,0xe9,0xe1,0x77,0x1f,0xc6,0xa9,0x9e,0x4b, +0xc2,0x33,0x8d,0xf8,0xaa,0xb8,0xda,0xa4,0xba,0x64,0x4e,0x85, +0x3d,0x86,0x4b,0x8d,0x60,0x11,0x1b,0xb6,0xcc,0xf6,0xd0,0x66, +0x03,0x0e,0x79,0x58,0x4a,0xea,0xef,0x76,0x80,0x5c,0xde,0x33, +0xea,0x75,0xf9,0x5f,0x93,0x47,0x29,0xe4,0x97,0xb3,0x21,0xbb, +0xcd,0x71,0x8a,0xd5,0x7a,0xee,0xda,0xce,0x06,0x5a,0x3b,0x74, +0x43,0x3d,0x8c,0x65,0x36,0x4c,0xaa,0x96,0x5c,0x27,0x73,0xab, +0xb1,0xf5,0xb7,0x17,0x36,0x8f,0xf5,0x47,0x95,0x84,0x1d,0xd2, +0x55,0xe3,0x98,0x3e,0x8c,0x81,0xa5,0x3a,0xb8,0x14,0x8f,0x18, +0xc2,0x11,0x9a,0x58,0x2d,0x06,0x63,0xef,0xf6,0x63,0x0d,0x05, +0xd6,0x96,0x31,0x55,0x02,0x45,0xbd,0x54,0xb0,0xcb,0xe9,0xa2, +0x1c,0x9e,0x35,0x82,0xb3,0xe8,0xc4,0xe0,0xe9,0x6d,0xc8,0x62, +0x14,0xbe,0x27,0x2b,0x33,0x04,0xd3,0xdf,0x7f,0x03,0x26,0x09, +0x76,0xd1,0xe0,0x64,0xe0,0xae,0x2f,0x96,0xc2,0x5e,0x7c,0xb7, +0xba,0x97,0xa7,0x1c,0xa8,0xa8,0xf6,0x2b,0x9c,0x53,0x14,0x35, +0x0b,0xa9,0x79,0xed,0x6f,0xcc,0x2b,0x7d,0x6d,0xde,0x52,0x36, +0x94,0x9a,0x37,0x99,0x9a,0x37,0xb4,0xb3,0x66,0x9b,0x86,0xa2, +0x6e,0x98,0x87,0x91,0xec,0xb0,0x64,0x5e,0x23,0x73,0xa3,0xa1, +0xf5,0xd7,0x17,0x8e,0x8f,0x4d,0x2f,0x2b,0xc1,0xc7,0x78,0x9e, +0xdc,0xbc,0x9a,0xd7,0x1f,0x7b,0x8f,0x4b,0x64,0x62,0xd5,0xb3, +0x4d,0xda,0xb5,0x1b,0xba,0x79,0xed,0x9b,0xfe,0xb7,0xbe,0x54, +0xbc,0x8d,0xef,0x98,0x5c,0x0d,0x64,0x77,0x85,0xa8,0xad,0xdf, +0x21,0x13,0x16,0x98,0x91,0xab,0xa3,0x79,0x83,0xb1,0x77,0xe8, +0x1b,0xe3,0x76,0x65,0x1b,0x8c,0x68,0xd6,0xd3,0xb9,0xbb,0xe3, +0x7b,0xef,0xb9,0xe2,0x0d,0xe4,0x4d,0xee,0x85,0xb0,0xdb,0x82, +0x36,0x6d,0xd6,0x94,0xc9,0x8f,0x99,0x8e,0x2d,0x22,0xe0,0xd5, +0x4b,0xf5,0xdc,0x87,0xba,0x78,0x03,0xe5,0x21,0x5f,0x0f,0xf3, +0xe7,0x1b,0x42,0x2d,0x9e,0xc2,0x0f,0x98,0x1c,0x7d,0xb9,0x5f, +0x24,0x42,0x69,0x51,0x82,0x48,0x38,0xd7,0x27,0xad,0x91,0x6b, +0xe3,0x4d,0xea,0x6f,0xb7,0xff,0x91,0xff,0x98,0x66,0x45,0xe5, +0x6b,0xf3,0x57,0xb0,0xc1,0xfb,0x2c,0x17,0x50,0x3e,0xb9,0xbe, +0xa7,0x69,0x1b,0x2d,0x0a,0xa1,0xde,0x86,0x74,0x72,0x29,0xa6, +0xba,0x99,0x3b,0x0d,0x6d,0x3f,0x3c,0xb3,0x7d,0xa0,0x3b,0xa2, +0x04,0x2a,0xf8,0x8a,0x8c,0xde,0x6a,0x7f,0x72,0xe9,0x85,0x51, +0x1e,0xef,0xbd,0xde,0x76,0x97,0xb6,0x16,0x97,0x26,0x5d,0x51, +0xa9,0x1c,0x80,0x3d,0xf0,0xf6,0xef,0x90,0x60,0x54,0xc2,0x2b, +0x53,0xcd,0xb2,0x6a,0x21,0x56,0x98,0x48,0xcb,0xcd,0x0a,0xf3, +0x48,0x0f,0x3e,0x60,0x13,0xca,0xe2,0xcb,0xe2,0x2a,0x38,0x28, +0xe9,0xc6,0x42,0xe6,0x7c,0xe9,0xf9,0xd2,0x73,0xe5,0x1c,0xd4, +0x75,0x63,0x6d,0x19,0x73,0x59,0x47,0x83,0xa5,0x5a,0xd4,0x04, +0x3c,0xd9,0xb3,0xee,0x67,0x3c,0xcf,0x78,0x72,0x68,0x6c,0x02, +0x7a,0xcc,0xa9,0xc3,0x27,0x3d,0x68,0xf6,0xa3,0x9b,0x31,0x2d, +0xc4,0x51,0x0e,0x61,0xce,0x21,0x2e,0x1c,0x2e,0x33,0x04,0x79, +0xc6,0x54,0x75,0xc7,0xb6,0x45,0xd2,0x33,0x1f,0x40,0xfe,0xf1, +0xd3,0x6f,0xfa,0x61,0x12,0x07,0xc7,0x31,0x84,0x76,0x3e,0xb9, +0x3a,0x72,0x30,0x97,0x69,0xcd,0x93,0x0a,0xf9,0xd1,0x6f,0xfa, +0x56,0x7d,0xa6,0xad,0x81,0x87,0xd9,0xcc,0xea,0xb4,0xda,0x94, +0x3a,0x0e,0x4b,0xf1,0x23,0xf2,0xcc,0xee,0xa1,0xfe,0xa8,0xac, +0xee,0x76,0x1b,0x4c,0xce,0x93,0x32,0xaa,0x58,0xf2,0xfe,0x32, +0x2c,0x61,0x43,0xf6,0x58,0xce,0xb7,0xda,0xc0,0x5d,0xd5,0x6c, +0xdc,0xa6,0x49,0x4b,0x8b,0x97,0x91,0xcc,0xee,0x35,0xb4,0x6e, +0x36,0xb4,0xfe,0xa4,0x04,0xff,0x07,0x9d,0xc8,0x91,0x7a,0x87, +0x5e,0xcf,0x52,0x0b,0x67,0xbe,0xc4,0xa7,0xd1,0xf0,0x82,0x03, +0xf5,0x4e,0x5f,0x58,0x4f,0x56,0xc0,0xe2,0x5b,0xbd,0x98,0x0a, +0x1f,0x32,0xcf,0x92,0x1f,0xa5,0xdd,0xcb,0xf2,0xe9,0xe2,0xf1, +0x63,0x0f,0xdc,0x1b,0x8c,0xb6,0xa7,0xd3,0x8d,0xf8,0x87,0xe7, +0xef,0xc7,0xdd,0x4b,0xe0,0xf0,0x1d,0x8c,0x37,0xba,0x83,0x8b, +0x57,0x1b,0x7e,0x8d,0x6b,0x76,0x19,0x43,0x3c,0xce,0xc2,0x7a, +0xc3,0xb1,0xc9,0x7d,0x78,0x11,0x66,0x41,0x6a,0x8f,0x26,0xac, +0x79,0xc9,0x8e,0xdb,0xc0,0x3b,0xff,0xaf,0x71,0xcf,0xdd,0x27, +0xb8,0x98,0x66,0xdc,0x62,0x96,0x52,0x09,0x25,0xa0,0xc5,0xf0, +0x11,0x2e,0x66,0xd1,0xd0,0x90,0xe0,0x1a,0x3a,0xbc,0x46,0x1a, +0xa6,0x9d,0xf3,0x1a,0x3a,0xbc,0x86,0xf6,0xb2,0xae,0x42,0x00, +0xa9,0xfa,0xac,0x1e,0x98,0xac,0x2f,0xb8,0x16,0x0c,0xf9,0x6b, +0xf2,0xf0,0xd8,0x15,0xda,0xf7,0x46,0x68,0x3a,0xe0,0x5b,0x8e, +0xab,0xb9,0xab,0xbb,0xea,0x37,0xef,0x56,0xd4,0x8d,0xf2,0xb6, +0xa2,0xd4,0x48,0x51,0xd0,0xcb,0x5c,0xae,0x69,0xf9,0xe5,0x2b, +0x9b,0x27,0x7a,0x97,0x95,0xc6,0x4e,0x89,0xf1,0xc4,0xa8,0xcb, +0x7e,0xe0,0xf0,0x95,0x5e,0x98,0x56,0x06,0x0b,0x93,0x41,0x9d, +0xeb,0x42,0xe9,0xc9,0xff,0x4f,0xfa,0xc6,0xdf,0x36,0x6c,0x18, +0x9f,0xce,0xae,0x0d,0x4d,0xd7,0xfb,0x36,0xeb,0xd7,0xc2,0x87, +0x05,0x0a,0xa8,0x39,0x30,0xa6,0x04,0x67,0xd9,0x13,0x38,0xef, +0x18,0xce,0x70,0x54,0x76,0x7e,0xe9,0xf7,0x47,0x10,0xc8,0x1b, +0x86,0xf0,0x79,0x38,0xb7,0x1c,0xdf,0xef,0xc6,0xc9,0x2e,0x7b, +0xac,0x0d,0xf4,0xad,0xaa,0xcc,0xf8,0xee,0xe6,0x96,0xde,0xea, +0xcb,0x95,0x3a,0x0d,0x86,0x1d,0xe6,0x1c,0x8a,0x63,0x2a,0x04, +0x17,0xc2,0x3a,0x58,0xc8,0xa0,0xdb,0x54,0xdc,0x40,0xf7,0x37, +0xd0,0x96,0x64,0x2a,0x2c,0x44,0x55,0xc6,0x21,0x72,0x62,0x81, +0x3f,0xf9,0xb1,0x25,0x63,0x09,0x24,0x45,0x7a,0xb8,0xf8,0x85, +0x43,0x29,0x7c,0xcc,0xd1,0x68,0xcf,0x08,0x2f,0x0e,0x2d,0xf0, +0x47,0x21,0x1e,0x7e,0x64,0xc6,0x57,0x61,0x01,0xa9,0xbd,0xdd, +0x02,0x93,0x72,0x1f,0xd3,0x29,0xcd,0x7c,0x5d,0xef,0xe6,0xb0, +0xa1,0xfb,0x6c,0x17,0xd0,0x19,0x1d,0xd5,0xac,0x57,0xdf,0x4f, +0x53,0xd5,0xdb,0x54,0xe6,0x28,0xb9,0xd9,0xc6,0xdc,0xa8,0x6b, +0xfb,0xfe,0x0b,0x87,0x87,0x86,0xa3,0x4a,0xe0,0x0d,0xef,0x91, +0x17,0x02,0xbf,0x46,0xfa,0x4e,0x56,0x85,0xbc,0x12,0xf8,0x65, +0x2c,0x6e,0xc3,0xdf,0x09,0x84,0xf5,0x60,0x18,0x4c,0x81,0xe4, +0x5e,0xb1,0xcf,0x08,0x4e,0xd0,0x62,0xea,0x6f,0x0c,0xfe,0xc8, +0xe0,0x65,0xc3,0xb1,0x79,0x7d,0xd2,0xa5,0xad,0x3f,0x0f,0x8e, +0x71,0x44,0x6d,0xc0,0xa4,0xd7,0xee,0x26,0xd5,0xc5,0xc6,0xe0, +0xc1,0xd4,0x68,0x0f,0x1d,0x78,0xac,0xc7,0x8d,0xab,0xaf,0x22, +0x75,0x9f,0xb6,0x01,0x9b,0xfb,0x25,0xb5,0xa6,0xe0,0x35,0xf8, +0x16,0xb2,0xa1,0x3b,0x2d,0x70,0xaa,0xcd,0x3a,0xae,0x7f,0x47, +0xd5,0xb6,0xad,0xb4,0xfa,0xba,0x9b,0xc8,0x3c,0x24,0x73,0xea, +0x99,0xeb,0xf5,0xad,0x7f,0x7c,0xed,0xf4,0xc4,0x9c,0x32,0xc7, +0x9c,0x17,0xe4,0x5a,0x6f,0xfb,0x60,0xc5,0xa8,0x75,0x05,0xef, +0xa1,0x67,0x69,0xa4,0x67,0xc9,0x09,0x01,0x66,0x34,0xbb,0xfe, +0x8f,0x31,0x2b,0x6c,0xc4,0x36,0x92,0x1e,0x95,0x1e,0x95,0x11, +0x55,0xda,0xcf,0x6f,0xea,0x37,0xe9,0xb7,0xbb,0x36,0xf1,0x14, +0x6d,0x2f,0xe6,0x92,0x65,0xb3,0xe9,0x88,0x19,0x27,0x3a,0x30, +0xad,0x4d,0x55,0xad,0x17,0x5b,0xad,0x2b,0x79,0x77,0x5d,0x53, +0xfd,0x03,0x56,0x55,0xe6,0x7c,0x4e,0x46,0x76,0x7a,0x66,0x26, +0x87,0x85,0xc8,0x19,0x8d,0x29,0xf7,0xaa,0xb3,0xf8,0x48,0x92, +0x50,0xde,0x6a,0xe0,0x2d,0x5d,0x01,0xf1,0x26,0xe0,0xfd,0x14, +0xbd,0xd9,0xce,0x59,0xe0,0xfd,0x25,0x7d,0x95,0x17,0xb6,0x8d, +0xb5,0x13,0xb4,0x16,0x6c,0xc0,0x9a,0x15,0x8b,0xc4,0x1e,0xf2, +0xc2,0xfa,0xb1,0x2e,0x95,0x6a,0xff,0xc8,0xfc,0x86,0xbf,0x65, +0x7e,0xf0,0x2e,0x53,0x2a,0xf3,0x37,0x70,0x37,0x76,0x36,0x69, +0x68,0xbc,0x96,0xf9,0x6f,0xa4,0xda,0xed,0x26,0xaa,0x85,0xe1, +0x03,0x61,0x11,0x15,0x24,0xdf,0xcd,0x63,0xc5,0x8d,0x28,0x47, +0x44,0x43,0xe1,0x84,0x60,0xc8,0xea,0xd2,0x04,0x15,0x67,0x3e, +0x11,0x66,0x32,0x34,0xc8,0xe2,0xcc,0x2f,0xe8,0x8e,0x38,0x93, +0xb6,0x45,0xc2,0x4c,0x55,0x91,0x8e,0xc9,0xa3,0x0f,0x79,0x50, +0xf8,0x7d,0xdb,0x40,0x8b,0x6b,0x03,0xaf,0xeb,0xb0,0xd6,0x56, +0x23,0x80,0x13,0x66,0xf5,0x90,0xbb,0xbe,0xdf,0x5b,0x5d,0x75, +0x2b,0xea,0xe6,0x75,0xca,0x57,0x34,0x6e,0x29,0xa2,0x79,0x39, +0xe7,0x1c,0x41,0x15,0xc6,0x2e,0x32,0x8d,0xf2,0x40,0x17,0x38, +0x0a,0x0a,0x58,0xc6,0xa6,0x97,0xa7,0x96,0x25,0x97,0xea,0x26, +0xf3,0xd1,0xee,0x91,0xae,0x61,0xae,0x1c,0x9a,0x8b,0x0a,0x54, +0xf5,0x9f,0xc0,0xdd,0xbb,0x29,0xf3,0xaf,0x5b,0x5f,0xad,0xc7, +0xd3,0x7e,0x6b,0xd2,0x75,0x58,0x98,0x00,0x07,0xb8,0xaf,0xa8, +0x40,0x52,0x2f,0xf2,0xfa,0x5c,0x46,0xfb,0xf7,0xba,0x9c,0xdc, +0x7a,0xa5,0x1b,0xac,0x7e,0x86,0x9c,0x38,0x0c,0x7b,0xc8,0x97, +0x76,0x0f,0xf5,0x46,0x65,0xf5,0x13,0x14,0xf2,0x94,0x46,0xb1, +0xe4,0x75,0x14,0x95,0x25,0x0a,0x99,0x67,0xf9,0x37,0x85,0xe8, +0x86,0x51,0x0a,0xb1,0x7d,0x93,0xa5,0x0d,0x6d,0x3f,0x2a,0x41, +0x3e,0xd5,0xeb,0x38,0x15,0x35,0x61,0x2a,0x0b,0x11,0x38,0x95, +0xc0,0x54,0x9a,0x91,0x53,0x59,0x3c,0x69,0x4a,0xa8,0xee,0xd7, +0x84,0x19,0xd2,0xf0,0x0c,0xe9,0x89,0x5d,0x07,0x71,0x06,0xab, +0xb7,0x9d,0x44,0xe9,0x06,0xef,0xf6,0x37,0xf4,0x39,0xcd,0x27, +0x9a,0x0e,0x24,0x5e,0x4e,0xed,0xcf,0x50,0x48,0x75,0x6d,0x2a, +0x08,0x6d,0xf3,0xba,0x77,0xac,0x51,0xc1,0x21,0x30,0xc5,0x3f, +0xdd,0x2d,0xdd,0x4d,0xc1,0xfb,0xa4,0xd7,0x29,0xaf,0x53,0xb9, +0xbd,0x19,0xc3,0xa9,0xd2,0x43,0xb0,0xbf,0x10,0x7a,0x08,0x2c, +0xbb,0x03,0x6f,0x7d,0x56,0xfe,0x13,0x97,0xc0,0x5c,0x5a,0x0e, +0xd3,0x77,0xc0,0x6a,0x8d,0x4b,0xb4,0x7c,0xad,0xb8,0x37,0xff, +0xa6,0xcd,0x13,0x6e,0x1f,0x63,0xbf,0x65,0xd5,0x36,0x54,0xdd, +0xc5,0x95,0xe3,0x4b,0xf2,0xcc,0xe1,0x81,0x81,0x44,0x88,0x7f, +0x67,0x48,0xee,0x6b,0x6f,0xe6,0xb2,0x21,0xfb,0x6c,0xa4,0x0c, +0xb9,0xac,0xd9,0xb0,0x6d,0x9f,0x54,0x0e,0x4c,0x64,0x0e,0x12, +0x24,0x3b,0x26,0x32,0x44,0x09,0xa6,0xc3,0x0f,0xc4,0x10,0xb0, +0x8f,0xc5,0xc3,0x88,0x04,0x02,0x31,0x06,0x03,0x59,0xe8,0x87, +0x40,0x82,0x81,0x10,0x0f,0x81,0xac,0x38,0xd5,0x9c,0x50,0x92, +0xe3,0xa9,0x5a,0x81,0x3e,0x9c,0x45,0x28,0xcd,0xcd,0xc7,0x59, +0xec,0x76,0x8c,0x21,0x27,0x63,0xe5,0x72,0xab,0xe3,0xab,0x5a, +0x15,0xcb,0xf4,0x5c,0xd8,0xad,0x47,0xac,0x55,0xf6,0xc9,0x16, +0x3c,0x8b,0x48,0x39,0xf9,0x49,0x78,0xa4,0x42,0x44,0x94,0xf4, +0xdb,0x9a,0x84,0xea,0x16,0xfa,0x5b,0x57,0x76,0x9d,0xab,0x09, +0x32,0xbb,0x65,0xa5,0x66,0x23,0xb5,0x4d,0xd5,0x65,0x8d,0x0a, +0x09,0x89,0x71,0xe7,0x92,0x4e,0x80,0x32,0x4e,0xe7,0xaf,0xd7, +0xb5,0x36,0x5c,0xaa,0x4f,0x48,0x8c,0x3f,0x4b,0x07,0x64,0x38, +0x8d,0xaf,0x69,0xc5,0x59,0x30,0x39,0x2a,0xf9,0xc4,0x79,0x7a, +0x1c,0x79,0xc1,0x8b,0x2a,0x48,0xb7,0x16,0xc7,0x5a,0xfb,0x4a, +0x17,0x47,0xbe,0xc1,0xa5,0xc6,0xa9,0xca,0x96,0x13,0x72,0xc3, +0x89,0x71,0x8b,0xe5,0xb5,0xa3,0x03,0x1c,0xda,0x9a,0xc0,0x76, +0x26,0xdb,0xaa,0x77,0x47,0xbb,0x2d,0x27,0xfe,0x85,0x8f,0xc9, +0x53,0xe7,0x87,0x66,0xa3,0xb2,0xea,0xbb,0x0d,0x30,0x29,0xfb, +0x31,0x25,0xc5,0x93,0x12,0x59,0x5c,0x81,0x69,0x6c,0xf8,0x3e, +0x87,0x05,0x76,0x34,0x3b,0x35,0x6b,0xb6,0x52,0xb2,0x08,0xf7, +0xb5,0xa0,0x75,0x3d,0x45,0xaa,0xeb,0x57,0xaa,0x5b,0xbf,0x97, +0x56,0x23,0x7e,0x48,0x7a,0xda,0x3a,0x3e,0xcd,0xe9,0xb6,0xce, +0xe7,0x8f,0x1a,0x3b,0x1b,0x5a,0xd8,0x70,0x82,0x89,0x68,0x41, +0x1a,0x2a,0xf0,0x03,0x58,0x1e,0x99,0x7e,0x22,0x3e,0x2c,0x42, +0x21,0x3c,0x52,0xee,0x24,0x13,0xd1,0xd4,0x5b,0x75,0xb9,0xbb, +0xba,0x51,0xc1,0xb9,0xda,0xc3,0xc1,0xd8,0xda,0xd2,0x5d,0x21, +0xa2,0x2a,0xbc,0x22,0xac,0x24,0x2f,0x2b,0x27,0x3b,0x33,0x87, +0xfb,0xae,0x1d,0x3b,0x2c,0xe0,0x63,0xc6,0xc0,0x72,0xab,0xcd, +0x76,0xaf,0x0b,0xd6,0x7c,0x57,0x7e,0x5f,0x49,0x47,0x65,0x52, +0x70,0x52,0x50,0x62,0xa0,0xa1,0xc5,0x26,0x0b,0x0d,0x8f,0x22, +0x73,0xfe,0x4e,0xc5,0xc3,0x8e,0x9e,0x96,0x24,0xbf,0x04,0xdf, +0x04,0xdf,0x43,0xba,0xcb,0x0f,0xae,0x76,0xbe,0x68,0xce,0x3f, +0xab,0x7d,0x3e,0xdc,0xdf,0xcd,0xc5,0xfa,0x9e,0xf3,0xf5,0x51, +0xd4,0x0f,0x71,0xd5,0x91,0x1d,0x60,0x32,0x4c,0xe5,0x86,0x98, +0x6f,0x8a,0xbb,0x7f,0x38,0xa7,0x74,0xae,0xe9,0x44,0x53,0x4c, +0xf9,0x99,0xc4,0xb8,0xd8,0xf8,0x18,0x4e,0x3c,0x0e,0x47,0x49, +0xab,0x5b,0x9b,0x4d,0x83,0x4d,0x75,0x1d,0xef,0xd0,0x62,0xde, +0x6c,0x4d,0x4b,0x33,0x8b,0xa1,0x04,0x67,0x1b,0xdd,0x47,0x86, +0xc1,0x29,0xee,0x66,0xcb,0xf5,0x65,0xa5,0x86,0x4f,0x7b,0x2b, +0xda,0x12,0x1e,0x51,0x45,0xbf,0x38,0xe5,0xa6,0x11,0xf0,0xb3, +0xe1,0x3a,0x93,0xd4,0x2f,0x87,0x57,0x18,0x9c,0x67,0x70,0x1d, +0xe4,0x69,0xa7,0xfe,0x96,0xf0,0x9c,0x34,0xb5,0x54,0x5d,0xcd, +0xeb,0x84,0x79,0xe7,0x40,0x37,0x07,0xe4,0x2f,0x78,0x37,0xf3, +0x38,0xed,0x28,0xee,0x0a,0x45,0xf5,0x33,0x01,0x3a,0xf6,0x9a, +0x0e,0x76,0xdc,0x4a,0x7c,0x87,0xd4,0xde,0x6c,0xf9,0x35,0xf7, +0x21,0x85,0x58,0xd6,0x3f,0x24,0xac,0x65,0xb7,0xc4,0x72,0x23, +0x37,0xba,0xb7,0x51,0x5d,0x9b,0x26,0x8c,0xaf,0x31,0x25,0xe1, +0x54,0x89,0x84,0x6f,0xd6,0xb6,0x7d,0xfb,0xc4,0xf1,0x73,0x03, +0x5a,0xd6,0x6e,0x41,0x34,0x29,0x73,0xaa,0x30,0xce,0xb7,0x6d, +0x2a,0xe2,0xfd,0x9b,0x9d,0xfb,0xbc,0xcb,0x39,0x3c,0xe7,0x4b, +0xd2,0x7c,0xd2,0x1d,0x93,0xbc,0xda,0xd3,0xf8,0x13,0x97,0x42, +0xeb,0xc3,0x8a,0x38,0x2c,0xc3,0x7c,0x22,0x7c,0xd6,0x8a,0xf9, +0x03,0xa0,0xd9,0x22,0xaa,0x5a,0x83,0x96,0x3e,0x26,0x31,0x42, +0xd9,0x72,0x22,0xc6,0x59,0x09,0x26,0xc6,0xe2,0x49,0x0b,0xe1, +0xa4,0xbe,0x68,0x61,0x25,0x24,0xfd,0x72,0xb5,0x5d,0x8b,0xc1, +0xad,0x18,0x42,0xec,0x4a,0x8c,0x4a,0x2c,0xf2,0x7c,0x1d,0xf9, +0x0e,0xff,0x1e,0xaf,0x06,0x6f,0x0e,0xe7,0x69,0x10,0xb7,0xe8, +0xe4,0x2a,0x25,0x98,0x61,0x80,0xef,0xb1,0xfb,0x2e,0xf8,0x5f, +0x95,0x81,0x09,0xd3,0x91,0x95,0xd9,0xae,0x74,0x4f,0x5a,0x0a, +0x65,0x21,0x3b,0x00,0x73,0x48,0x99,0x43,0xa3,0x66,0xa1,0x79, +0xdb,0x25,0xfe,0x58,0x93,0xd5,0x9d,0xc3,0x0d,0x9c,0x98,0x81, +0x06,0xa4,0xaa,0xbd,0xf2,0x66,0x56,0x8f,0x45,0x0e,0x1f,0x6a, +0x75,0x78,0x9f,0xab,0x2d,0xad,0x4c,0x9c,0x30,0x4e,0xda,0xb2, +0x33,0xeb,0x95,0x60,0xab,0x1e,0x6a,0x20,0xc3,0xa6,0x9b,0xc8, +0xe1,0xdc,0x70,0x72,0xad,0x73,0xe8,0x56,0xf5,0x6d,0xab,0x62, +0xde,0x6d,0xbf,0x91,0xf6,0x41,0x2b,0x4e,0xf8,0x25,0x8e,0xd8, +0x8c,0x1a,0x0d,0xeb,0xb7,0x39,0xb8,0xf2,0xfd,0x66,0x3d,0xba, +0x8d,0x87,0x38,0xf1,0xba,0x38,0x99,0xbc,0xb0,0x7d,0x2c,0x51, +0x0d,0x55,0x04,0xaf,0xe9,0xf5,0x8d,0x56,0x5b,0x49,0x15,0x81, +0xd9,0x1b,0x45,0xd0,0x48,0xe9,0x95,0x2a,0x02,0xa3,0xbf,0xc5, +0xda,0xad,0x86,0xd6,0xdf,0x94,0x84,0xee,0x62,0xd2,0x86,0x16, +0x43,0x60,0x41,0xb7,0x83,0xe0,0xd3,0x81,0x35,0xec,0xa7,0x17, +0x6f,0x57,0x5e,0x6d,0x70,0xa5,0xb1,0xf9,0x78,0x39,0x6e,0xb0, +0x46,0x93,0x20,0xaa,0x4e,0x8a,0x63,0x8b,0xe3,0x2e,0xc6,0x71, +0x78,0x5b,0x38,0xcc,0xea,0x9d,0xb6,0x8c,0x71,0x93,0xb9,0x9f, +0x0c,0x89,0x70,0x99,0xbd,0x8d,0x49,0x97,0xbe,0x1d,0xbb,0x71, +0xa1,0xa8,0x23,0x45,0x29,0xa5,0x23,0xb6,0xef,0x77,0x45,0x3c, +0x71,0x95,0xa1,0x65,0x6f,0x05,0x19,0x84,0xbd,0x7a,0x2c,0xee, +0x9d,0x47,0x86,0x60,0xaf,0x2e,0x6b,0x39,0x55,0x0b,0xf7,0x5e, +0x65,0x01,0x31,0x88,0x84,0x96,0xfb,0xd7,0x1c,0xbb,0x68,0x7f, +0x84,0xcf,0xf1,0x2e,0x74,0x4a,0x77,0xe7,0x44,0x93,0xa5,0xa4, +0xf7,0x4a,0xe5,0xd5,0x0b,0x37,0x2c,0xf2,0xf9,0x23,0x5a,0x1e, +0xba,0xc6,0xba,0x1c,0x3c,0xa2,0x87,0xc8,0xb5,0xce,0xb4,0x4a, +0x37,0xe8,0xcc,0xe3,0xc3,0xbb,0x43,0x5a,0x8e,0xb5,0x71,0xa8, +0x1e,0x42,0x52,0x0d,0xe2,0xf5,0x63,0xb5,0xfa,0xd2,0xf8,0xd3, +0xa3,0xc7,0x07,0x23,0xfb,0x29,0x95,0x3d,0x84,0x8b,0xe4,0xa9, +0xe3,0x03,0xa3,0x51,0x59,0xed,0xed,0xe6,0x3f,0x72,0x1e,0x51, +0xe8,0xa4,0xbc,0x86,0x0e,0xcf,0x86,0xee,0xb7,0x5b,0x48,0xfd, +0x1f,0xd9,0x53,0xaf,0xae,0x45,0xa1,0xe3,0xf3,0x4f,0xbb,0x7a, +0xbd,0xb6,0xed,0x95,0xd2,0xa0,0x50,0x4c,0xb0,0x9e,0x0a,0x80, +0x7a,0x56,0x34,0xc5,0xe9,0xe4,0xae,0x30,0x77,0xe7,0xeb,0xef, +0x45,0x3e,0x17,0xe6,0x6e,0x63,0xd1,0x48,0x54,0x27,0x0f,0x13, +0xbe,0x4e,0xf9,0x3c,0x33,0xdd,0x86,0x6f,0xce,0x8c,0x68,0x3f, +0x7a,0xdd,0xbf,0x45,0xc1,0x36,0x34,0xf9,0x58,0x8a,0x5f,0xf2, +0x11,0x05,0xc7,0x18,0x9b,0x13,0x36,0x27,0x07,0x6e,0x77,0x7f, +0xd6,0xfc,0xc8,0xee,0x22,0xef,0x63,0xe6,0x61,0xe2,0x64,0x12, +0x96,0x13,0x92,0x13,0x9a,0x5d,0xde,0x54,0xd2,0x52,0xd4,0x6e, +0x7b,0x81,0x0f,0xb0,0xf3,0xb5,0xf5,0x74,0x8a,0x48,0x8f,0x4c, +0x8b,0x4a,0x71,0x75,0xe5,0x6b,0x9d,0x9a,0x2c,0xaa,0xad,0x83, +0xfd,0x83,0xfc,0x83,0x8e,0x59,0x9d,0xe6,0x23,0xeb,0xc2,0x1a, +0xc3,0xca,0xec,0x43,0xf8,0xe4,0x63,0x49,0x47,0x92,0x8e,0xb8, +0x9d,0x74,0x3c,0xe9,0x78,0x6a,0xe0,0x66,0xe7,0xa7,0xad,0x0f, +0xe8,0x01,0x7d,0x2d,0x3c,0xcc,0x5d,0x4c,0x43,0x73,0x42,0x72, +0x43,0xb3,0xcb,0x1a,0x8a,0x9b,0x2e,0xb4,0x4a,0x07,0x74,0xf0, +0xb3,0xf7,0x72,0x8e,0x4c,0x8b,0x78,0x7d,0xc0,0x3a,0xe7,0x26, +0xcb,0x2a,0xeb,0xe0,0xa3,0x81,0xfe,0x01,0xfe,0x7e,0x67,0x8e, +0x9c,0x39,0x7a,0x36,0xde,0x8c,0x7f,0x12,0xff,0x2a,0xe5,0x51, +0x66,0x5c,0x68,0x5c,0x68,0x6c,0x38,0x87,0xb5,0x68,0x4b,0x9a, +0xbb,0x6a,0xaf,0xe7,0x0d,0x9a,0x65,0xf2,0x01,0xe6,0xae,0x7a, +0xd6,0xe6,0x9c,0xd0,0x00,0xf3,0xa5,0xd5,0xbf,0x74,0x0a,0xf5, +0x7b,0xb3,0xf9,0xa3,0x7d,0xde,0xc3,0x87,0xbb,0x38,0xb4,0x0e, +0x24,0x45,0xc6,0x39,0xda,0x19,0x26,0x7d,0x19,0x7c,0x48,0x5f, +0xc0,0x90,0x1f,0x1d,0xf3,0x0d,0x27,0xe9,0xa6,0xc9,0xfb,0xe2, +0x2d,0x87,0x52,0xf8,0xe3,0x5d,0x91,0x57,0x42,0x3b,0x39,0x79, +0xe1,0xe4,0x58,0x1c,0xb9,0x6d,0xb8,0x1b,0x89,0x09,0x5c,0xef, +0x66,0xa1,0x68,0x3c,0x8b,0x52,0x02,0xe3,0x12,0x93,0x54,0xa5, +0xf4,0x10,0xac,0xdb,0xd0,0xfa,0x0e,0x98,0xb7,0xa3,0xf9,0x6d, +0xb0,0x6a,0x43,0xab,0xdb,0xe0,0x0c,0x5a,0xe8,0x72,0x13,0xfc, +0x3b,0xd1,0xff,0x9a,0x21,0x05,0xc7,0xe1,0xf5,0xe8,0x26,0x06, +0xb0,0xbb,0x73,0xfd,0xef,0xc9,0x40,0x91,0xa9,0xcb,0xce,0xac, +0x55,0xba,0xce,0x9a,0x66,0xc8,0x8d,0xdf,0x1e,0xf3,0x22,0xaf, +0x35,0xe6,0x64,0x36,0x92,0x6a,0xcc,0x29,0x8e,0x6b,0xb8,0xee, +0x9d,0x15,0x5b,0x76,0xbe,0xd6,0x98,0x9e,0x52,0xf0,0x6a,0x99, +0x91,0x2a,0xaa,0x31,0x5d,0x9f,0x58,0x5e,0x56,0xfa,0x47,0x9a, +0xb2,0x10,0x32,0x97,0x44,0x99,0x86,0x98,0x05,0x58,0x72,0xb8, +0xdf,0x04,0x1e,0x75,0xaf,0x60,0x72,0x9a,0x33,0xda,0x52,0x5a, +0x38,0x5c,0x84,0x93,0x49,0x74,0x63,0x44,0x43,0x58,0x8d,0x65, +0x28,0x9f,0xe1,0x92,0xe6,0x90,0x64,0xc7,0x9d,0x19,0x7f,0x8f, +0x80,0x31,0x6c,0xc1,0x8f,0x54,0xd8,0x74,0x53,0xb9,0xa7,0x4c, +0x5d,0x56,0x4e,0x8d,0x92,0xa0,0x8f,0x97,0xc4,0x14,0x16,0x8e, +0x08,0xf2,0x04,0xb7,0x7c,0x01,0x5b,0x18,0xdc,0x42,0x85,0x05, +0x6c,0x59,0x87,0x5b,0x68,0x4f,0xb8,0x1b,0x56,0x93,0xeb,0x4d, +0xb7,0x86,0x3a,0x07,0x6c,0x1a,0x78,0x63,0xed,0x3d,0xda,0x7b, +0xed,0x0e,0xf6,0xd9,0x8f,0x86,0xdd,0xe6,0xe0,0x05,0x6c,0x79, +0xd9,0xb7,0x02,0x36,0xe0,0x77,0xb7,0x0e,0x69,0xe2,0x77,0xc6, +0xf0,0x1d,0x4e,0x16,0x57,0x1a,0x0a,0x2b,0xa9,0xde,0x93,0xfe, +0x27,0xbe,0x8b,0xdb,0x98,0x1c,0x3d,0xa9,0xef,0xe8,0xbc,0x50, +0xd0,0xa5,0x04,0x15,0x89,0x6c,0x39,0x2e,0x86,0x85,0xaa,0x10, +0xb2,0xb4,0xa8,0x9f,0x9f,0xdb,0xb0,0xba,0x65,0x77,0x27,0x07, +0x93,0x85,0x6e,0x82,0x93,0xb1,0x9c,0xfa,0x0f,0xe5,0xa8,0x46, +0xe8,0xc7,0xcb,0x81,0x61,0xc5,0xa5,0x78,0x9c,0x0c,0xba,0x5d, +0xb5,0x6b,0xb7,0xad,0x69,0xe1,0xcd,0x9b,0xf6,0xb5,0xea,0x95, +0x72,0x10,0x8e,0x8b,0xc8,0x6a,0x4d,0x9c,0x76,0x08,0x89,0xcd, +0x45,0x7d,0x1e,0xa6,0x35,0xc1,0x87,0xd7,0x9f,0xdf,0xe6,0xe4, +0x47,0x05,0x37,0xf2,0xcd,0x70,0xcf,0xf5,0xa4,0x1b,0x5c,0x22, +0x3a,0xf6,0xc2,0x1a,0x26,0x3e,0xf6,0x5c,0xdc,0x29,0x19,0x4c, +0xc3,0x99,0x35,0x75,0xc8,0x00,0x17,0x91,0x1e,0x75,0x36,0x3c, +0x5c,0xe1,0xc4,0x09,0xb9,0x98,0x01,0xd8,0xd8,0x85,0x1b,0x5f, +0x18,0xad,0x41,0x35,0x53,0x50,0x61,0x7c,0x0f,0x18,0x69,0xaf, +0xd0,0xe1,0xc6,0xe2,0xf0,0x6b,0xd2,0xdb,0xda,0xd1,0x51,0xdf, +0x67,0x57,0xc5,0x3b,0x99,0x58,0x98,0x5a,0x38,0x72,0x5e,0xcd, +0x41,0xcd,0x75,0x8a,0x9d,0xa0,0x0f,0x6b,0xfb,0x7b,0x0c,0x60, +0x15,0xea,0xdf,0xd7,0x57,0x47,0x1d,0x63,0xd0,0x59,0x84,0x2e, +0xc6,0xe0,0x32,0x0f,0x75,0x4c,0x40,0x87,0x1a,0x2b,0xcf,0x66, +0x19,0xc8,0xbd,0x64,0x3a,0x73,0xb3,0xa9,0xab,0x7e,0x89,0x6c, +0xe6,0xa6,0x4f,0x37,0xc3,0xf4,0xf5,0x95,0xdd,0xfc,0xfe,0x66, +0x9d,0x2e,0x9b,0x1e,0xae,0x4f,0x28,0x25,0x8b,0x70,0xf6,0xcf, +0x2c,0xcc,0xc6,0x55,0x64,0x1e,0xce,0xfe,0x9d,0xc5,0x06,0xd4, +0x26,0x5d,0xf8,0x9d,0x29,0x2b,0x5c,0x40,0x45,0xe2,0x5e,0x6f, +0xd3,0x6a,0x5b,0xe3,0xe4,0xc4,0x37,0x3a,0x37,0xd9,0x54,0xda, +0x72,0x38,0xe3,0x57,0x22,0xae,0x30,0x83,0x7d,0x98,0xa6,0xca, +0x64,0x99,0xc8,0xdd,0x78,0x7d,0x43,0x01,0xc4,0xc1,0x0e,0x16, +0xdf,0x39,0x44,0xf2,0x5d,0xf2,0xcc,0xb3,0x6c,0x3b,0x2e,0xf2, +0xa1,0x2d,0xfe,0xcd,0xfe,0xd5,0x1c,0x26,0x9d,0x20,0xc1,0xda, +0x9e,0x1a,0x36,0x7a,0xad,0x6e,0x7c,0xcb,0xb5,0xf2,0xcf,0x73, +0x6e,0x71,0xc2,0xf6,0x04,0x62,0x74,0x68,0x97,0xf6,0x36,0x9b, +0x72,0x4b,0xfe,0x51,0xc7,0xa7,0x57,0x7b,0x47,0x29,0x9a,0x5f, +0x35,0x11,0x58,0x0b,0x9d,0xfd,0xd8,0x09,0x4b,0x5f,0xbf,0x28, +0xc3,0xfd,0x21,0xbc,0xc9,0x5e,0xec,0xc8,0xee,0xca,0xec,0xd0, +0x4e,0xe3,0xc3,0xcd,0x8f,0xe9,0xfa,0x1a,0x73,0x98,0xc3,0x14, +0xb4,0xe7,0x76,0x66,0x75,0xe9,0x66,0xf0,0x16,0xb8,0x49,0x0d, +0xe7,0xe3,0x3b,0x4b,0x6a,0xcd,0xf8,0xd6,0xfa,0xfa,0xe6,0xea, +0x76,0x4e,0x7c,0x30,0x3a,0x38,0xa6,0x31,0xc4,0x8a,0x73,0x84, +0xab,0x04,0x95,0xb1,0x19,0xe6,0xb1,0xe7,0x62,0xcf,0x9d,0x3f, +0x7f,0x9e,0x3b,0x85,0x7f,0x10,0x7a,0xf0,0x66,0x5c,0xca,0x1a, +0x4c,0xc5,0xb5,0xf4,0x57,0x6b,0x59,0xf9,0xb1,0xc8,0x36,0x02, +0x9b,0x60,0x77,0x3f,0xee,0x86,0x65,0xb0,0xbb,0x8f,0xbe,0xa8, +0x80,0xe5,0x20,0xea,0xb2,0x45,0xed,0x05,0x3d,0x69,0x8d,0x06, +0x19,0x7c,0x98,0xe5,0x51,0x7d,0x4f,0x7a,0xe2,0x85,0x4c,0x61, +0x5b,0x4e,0x7b,0x66,0xa7,0x51,0x36,0xef,0x80,0x33,0x0f,0xe0, +0xec,0x0d,0xca,0x1c,0xdc,0xc4,0xa2,0xf1,0x4f,0xd8,0xc0,0x53, +0xf4,0xe7,0x74,0xba,0x36,0x0f,0xef,0x15,0xc1,0x9c,0x6a,0x98, +0xda,0x10,0x33,0xc0,0x07,0xc7,0x04,0x9f,0x0c,0x8e,0xe1,0x84, +0xc9,0x6c,0xa5,0xcd,0xc5,0xf2,0xc2,0x8a,0xdc,0x32,0x05,0xf1, +0xd7,0xa1,0x2b,0xc2,0xee,0x41,0x76,0x5c,0x26,0x14,0xd0,0x5e, +0x0f,0x76,0x50,0x54,0x80,0x17,0x5e,0x90,0xd6,0x87,0x54,0x93, +0xd6,0x87,0xac,0x46,0x19,0x81,0x7d,0xb0,0x06,0xf7,0xb1,0xe0, +0xb5,0x97,0xaa,0x43,0x3a,0xbc,0x8c,0x0e,0xa7,0xd1,0x6e,0x10, +0xb5,0x18,0x93,0x50,0x93,0x30,0xe3,0x08,0x4e,0xa8,0x86,0x55, +0x04,0x37,0xa1,0x1a,0x6c,0xa2,0x42,0xff,0x9a,0xa0,0x4b,0xe0, +0x6e,0x07,0xde,0xbd,0x3f,0xb1,0xfd,0x0c,0x7e,0xee,0xc2,0xe7, +0x4c,0x56,0x51,0x56,0x69,0x5a,0xa9,0x76,0x32,0x1f,0xee,0x1a, +0xec,0x71,0x8c,0x96,0xcb,0x23,0x4c,0xce,0xc5,0xac,0x92,0xd4, +0x22,0xfd,0x2c,0xde,0x7c,0xc9,0x36,0x55,0x94,0x53,0xaf,0xb2, +0xe4,0x2f,0xe5,0x97,0x16,0x15,0x5f,0xe0,0xb0,0x71,0x2c,0xad, +0x4b,0x9c,0xc4,0xe2,0x0f,0x90,0x46,0x1a,0xd9,0x94,0x54,0xfa, +0x93,0xc6,0x41,0x92,0x06,0x43,0x99,0xeb,0x03,0x72,0x1f,0x6a, +0xd5,0x59,0xf3,0xa9,0x6a,0x58,0xfb,0x84,0xa5,0xb1,0xff,0x96, +0x80,0x12,0x0e,0xe1,0xad,0xcb,0x90,0x03,0x07,0x50,0x09,0x5a, +0x40,0x09,0xec,0xd0,0x12,0xd7,0x4b,0x45,0x13,0xe6,0x33,0xad, +0x85,0x05,0xad,0x4a,0x10,0x89,0x8f,0x50,0x89,0x76,0xaf,0xc5, +0x90,0x4a,0x55,0x64,0x72,0x6d,0x7c,0xc3,0xf9,0x5a,0x05,0x58, +0x3e,0x8c,0x4b,0xc1,0x0b,0xe6,0x0e,0x63,0x2c,0x93,0x5a,0x9b, +0x5c,0x97,0x58,0x67,0x90,0xc6,0x07,0xe0,0xd4,0xc3,0x2a,0x86, +0xdb,0xda,0x5c,0xf8,0xe2,0xda,0x0b,0xad,0xb9,0x5d,0xdc,0x2d, +0xf4,0xc2,0x3d,0x3a,0xa0,0x49,0x25,0xff,0x22,0x47,0xfc,0x00, +0x67,0xe3,0xdc,0x26,0x2b,0xfe,0xc7,0xdf,0x3b,0x5e,0x15,0xc3, +0x24,0x2e,0x36,0xee,0x93,0xf3,0x34,0x8f,0xe4,0xd1,0xb4,0xb3, +0x16,0xe5,0xc1,0xf8,0x78,0x7a,0xc4,0x27,0x11,0x51,0x0a,0x82, +0x13,0xfa,0x52,0x9a,0x78,0x1d,0xc4,0xa5,0xff,0x16,0xcb,0xe2, +0x8e,0xdc,0xae,0xf4,0x26,0xe9,0xa9,0xfe,0x96,0xfe,0x7f,0xc7, +0xb2,0x3d,0xa7,0x2d,0xab,0xcb,0x28,0x8b,0x77,0x9d,0x67,0x80, +0x33,0x76,0xac,0xaa,0xb1,0xe2,0xb3,0xf2,0xd2,0xf3,0xd2,0x72, +0x38,0x51,0x18,0xbc,0x22,0xec,0x1a,0x64,0xc5,0x5d,0x82,0xc6, +0xdf,0x81,0x41,0x35,0xb4,0x93,0xc0,0xa3,0x46,0xc1,0x63,0x38, +0x95,0x12,0x92,0x1a,0x6c,0xa1,0x53,0x5f,0x30,0xf6,0x19,0xd1, +0x5a,0x25,0x2a,0x1b,0xfe,0x39,0xa3,0x4f,0xdc,0xc8,0xa0,0xa6, +0x18,0x42,0xcc,0x8f,0x9b,0x9f,0x30,0x39,0xf9,0xe0,0xd5,0x95, +0x57,0x57,0x60,0xba,0x51,0x31,0xef,0xae,0xe5,0x74,0xd0,0xf6, +0xe0,0xb1,0xc2,0xa3,0x85,0xfe,0x85,0xcd,0xc3,0x95,0xc3,0xe5, +0xb7,0x4d,0x2e,0xf1,0xbe,0x07,0x5c,0x75,0x1d,0x0c,0x42,0x32, +0x43,0x32,0x43,0xd3,0x1d,0x4d,0xf9,0x0e,0x87,0xcb,0xba,0x6d, +0xc6,0xbe,0xae,0xde,0xae,0x5e,0x6e,0x7e,0x67,0x68,0x0d,0x39, +0x9b,0xa4,0xcb,0xff,0x2b,0xe9,0x79,0xda,0xbd,0x0c,0xdd,0xa5, +0x1b,0xf6,0xe1,0x07,0xba,0x15,0x26,0x3c,0x1c,0x78,0xfa,0x1b, +0xcc,0x1c,0x84,0xcd,0x46,0xf9,0xfc,0x89,0x63,0xc7,0x03,0xa2, +0x03,0x39,0xe1,0xc6,0x52,0xd2,0x8d,0x3b,0x61,0x32,0xec,0x7c, +0xfd,0x62,0xdc,0x83,0x3a,0x6c,0x51,0x53,0x66,0x4d,0x6a,0x19, +0x85,0x69,0x84,0x7d,0x90,0xad,0xaf,0x0d,0x25,0x5f,0x26,0xbf, +0x36,0xa7,0x2e,0xbd,0xd6,0x28,0x87,0x77,0xc6,0x49,0xda,0x4b, +0xd7,0x6d,0xac,0xb5,0xe1,0xf3,0x72,0xf2,0x2f,0x14,0x14,0x73, +0xa2,0xff,0xf0,0x88,0xb0,0xa9,0x17,0xcd,0x41,0x9e,0x45,0x3f, +0x70,0x23,0xf4,0x28,0x9b,0x70,0x32,0x4b,0xe1,0xb5,0xfe,0xef, +0x7d,0x93,0xa9,0xb4,0xa1,0xdb,0x44,0xdf,0x20,0xff,0xa7,0x1e, +0xec,0x22,0x9d,0x58,0xfc,0x0c,0x0a,0x3a,0x30,0xe6,0x31,0x78, +0xb4,0xa3,0xc7,0x67,0x70,0xb8,0x1d,0x0f,0xdf,0x83,0xf0,0x0e, +0xda,0x77,0x66,0x17,0x67,0x5c,0x4a,0x2d,0x31,0x4d,0xe3,0x23, +0x3d,0x83,0xdd,0x8e,0xb9,0x73,0xb8,0x91,0xa1,0x38,0x2c,0xa6, +0x43,0x99,0xbc,0xdb,0x2a,0x43,0x55,0xcd,0xfd,0xa5,0xa6,0x7c, +0x91,0xf4,0x78,0x40,0xaa,0x03,0xfb,0xc0,0x72,0x3d,0x66,0x9a, +0x41,0x30,0xeb,0xa8,0xb9,0x55,0x1f,0x95,0x0c,0xa4,0xbf,0x35, +0xfe,0xa8,0x07,0xa6,0x3c,0xc8,0xfd,0x8a,0x4b,0xc0,0x98,0x7e, +0x38,0x99,0xc0,0x64,0xad,0x83,0x49,0x1a,0xf0,0x91,0xce,0x05, +0xda,0x16,0xf1,0x03,0x6a,0xfd,0x8e,0xb7,0x38,0x71,0x31,0x28, +0x93,0xe2,0xd6,0xfc,0xa6,0xbc,0x0e,0xfb,0x0b,0x7c,0x88,0x75, +0xb0,0x93,0xbf,0x63,0x40,0x09,0x1f,0x93,0x14,0x1d,0x17,0x19, +0x19,0x15,0xc5,0x9f,0xca,0x64,0x1a,0x2e,0x37,0x7d,0x95,0xf7, +0x15,0xd7,0x3a,0x1f,0x96,0x1b,0xe0,0x72,0x64,0x0d,0xc1,0x83, +0xf5,0xc6,0xe9,0x9b,0x71,0x2e,0xce,0x41,0xf9,0x32,0x53,0xbe, +0xad,0xb5,0xb6,0xf1,0x52,0x3d,0x27,0xce,0xeb,0x17,0xd6,0xb1, +0x89,0x94,0x99,0x4f,0xca,0x7e,0xc2,0xc5,0x0d,0x75,0x72,0x30, +0x49,0x98,0x41,0xee,0xc1,0x5e,0xca,0x68,0x7b,0x27,0x6e,0xe5, +0xda,0xab,0xc1,0x5a,0x4c,0xdd,0x84,0x7b,0x1f,0x53,0xb6,0xc8, +0x6e,0x93,0x10,0xb6,0xaa,0x0f,0x57,0x51,0x30,0xac,0xec,0xc3, +0x95,0x14,0x1f,0x9a,0x83,0xb8,0x85,0xbd,0xd8,0x99,0xdd,0x95, +0xd6,0x64,0x94,0xce,0x87,0x5b,0x1e,0xd3,0xf7,0xa6,0x08,0x7b, +0x8f,0xd2,0x54,0x76,0x5b,0x46,0xb7,0x51,0x06,0xef,0xbd,0xd4, +0x1c,0xa7,0xe9,0xac,0xab,0xb6,0xe5,0x93,0x52,0x13,0x53,0x13, +0x52,0x38,0xf1,0x5f,0xfd,0x57,0x04,0x9e,0xd2,0xc0,0xb2,0x31, +0x23,0xf2,0x44,0x47,0x0d,0x4d,0x8c,0x04,0xc3,0x5e,0x69,0xb1, +0xb3,0xf3,0x24,0x31,0x2d,0xf6,0x4c,0xc2,0x89,0x27,0xca,0x7c, +0x7d,0xfd,0xa6,0x97,0x51,0x69,0x31,0x67,0xa2,0x4f,0x28,0x84, +0x47,0x9d,0x8a,0x95,0x4b,0x29,0x49,0x28,0x6b,0x54,0x2c,0xd2, +0xf3,0x61,0xf7,0x44,0xb9,0x9a,0x1a,0xc8,0x0c,0xaf,0x47,0xa7, +0x46,0x9f,0x8d,0x3a,0xa1,0x10,0x11,0x7d,0x3a,0x56,0x2e,0xb5, +0x24,0xbe,0xbc,0x5a,0xb1,0x58,0xdf,0x8f,0xdd,0x1b,0x6a,0xbc, +0x59,0x43,0x56,0x6d,0xdb,0xd2,0x58,0x58,0x9e,0x5d,0xa1,0x10, +0x9f,0x16,0xff,0x49,0x72,0xe4,0x73,0x9c,0xc2,0x1f,0xdb,0x81, +0xc6,0x86,0x34,0xa7,0xbc,0xb7,0xed,0xd7,0x58,0xac,0x56,0xa9, +0xcf,0xbf,0x7c,0x78,0xf3,0xf3,0xa4,0x6f,0x69,0x75,0xea,0x19, +0x84,0x68,0x26,0xfe,0xfc,0x79,0x3a,0x07,0xf0,0x31,0x2a,0x37, +0xb7,0xe1,0x6c,0x98,0x1f,0x99,0x16,0x13,0x1b,0x1e,0xa5,0x10, +0x14,0x7a,0xea,0x9c,0xdc,0x6d,0xd8,0xd7,0x87,0xfb,0xee,0xb9, +0xb3,0x2d,0xcd,0x25,0x15,0x59,0x97,0x38,0xf0,0xf5,0x92,0x32, +0x63,0x91,0x94,0x19,0x8b,0x5e,0x67,0xc6,0xa2,0xbf,0x33,0x63, +0xd1,0x44,0x66,0xd8,0x8c,0x29,0x12,0xf4,0x1e,0x01,0x6f,0xf8, +0x1e,0xd5,0x86,0xc1,0x4d,0x54,0x1e,0x16,0xa6,0x75,0x8d,0x57, +0x99,0x02,0xea,0x88,0x0a,0xe8,0x36,0x0c,0x6a,0xec,0xb0,0x05, +0xb1,0x04,0xc7,0x36,0x16,0xb4,0x66,0x59,0xc2,0x91,0x36,0x56, +0x54,0xc6,0x79,0xa4,0x15,0x1d,0xad,0x58,0x41,0x98,0xd5,0x8a, +0x47,0xac,0x58,0x7f,0xf1,0x00,0xb9,0x0b,0xf7,0xdb,0xf0,0xfe, +0xb5,0x37,0xdb,0x3f,0x3b,0xf0,0x25,0x9b,0x9e,0x93,0x96,0x9f, +0x92,0xab,0x97,0xc5,0x47,0xf9,0x86,0xfa,0x05,0xf9,0xd1,0x32, +0xc3,0xa4,0xe7,0xa5,0xe6,0x25,0xe7,0x19,0xe7,0xf0,0x36,0xaa, +0x07,0x76,0xae,0x3a,0x78,0xc9,0x8c,0xaf,0x28,0xac,0x28,0x2e, +0x2b,0xe3,0xf0,0xe9,0x70,0xdb,0x98,0x55,0x17,0x3b,0x6e,0x05, +0x61,0xe4,0x1a,0x94,0xed,0x67,0x69,0xfb,0x21,0xf7,0x7a,0xcf, +0x72,0xea,0x4e,0x2c,0xbb,0x4b,0xc3,0xda,0xd1,0x48,0x40,0x1d, +0xf8,0x3e,0xda,0x02,0x2f,0xff,0xfb,0x65,0x85,0xf4,0xd4,0xfe, +0x0b,0x5d,0x59,0x3d,0xa9,0xcd,0x26,0x52,0x58,0x03,0x74,0xfd, +0x0c,0xb9,0x85,0x4c,0x5e,0x47,0x66,0x47,0x7a,0x2f,0x1d,0xf1, +0xc6,0x49,0x26,0xf8,0xf1,0xc1,0x95,0x34,0x95,0xd2,0x72,0x53, +0xb2,0x93,0xb3,0x39,0xf1,0x55,0xdf,0x15,0xf8,0x7a,0x90,0xfd, +0x6b,0x9a,0xb0,0x91,0x60,0x62,0x04,0xbe,0xe3,0x84,0xd3,0x64, +0x5d,0x36,0x72,0xcd,0xf0,0x61,0x1a,0xa5,0xf2,0x2c,0x45,0xa8, +0x85,0xde,0xf1,0x4f,0x90,0x63,0xd3,0xf5,0x69,0x65,0x6e,0xcf, +0xcd,0x6b,0x57,0x1a,0x6b,0x16,0xd7,0xb1,0x4f,0xf1,0x4f,0xf2, +0xfd,0x86,0xce,0x2f,0x7e,0xe8,0x50,0x79,0xfe,0x5d,0xc7,0xf2, +0x47,0x66,0x9b,0x57,0x9a,0x7f,0xbb,0x76,0x29,0x23,0x38,0xfa, +0x13,0x6a,0xca,0x4c,0x5c,0x2e,0xdd,0xb6,0xee,0xf0,0xf7,0xbe, +0x78,0x95,0xd6,0xb6,0x2f,0xba,0xae,0xc3,0x6a,0xc8,0x61,0x71, +0xb5,0x74,0x47,0x81,0xda,0xef,0xa8,0xc6,0x0a,0xab,0x5e,0x12, +0x54,0xc7,0x99,0xa0,0x4e,0x23,0x60,0x3f,0xf6,0x11,0x41,0xaf, +0x11,0x4a,0xb6,0x5f,0xbf,0x8e,0xc0,0xfc,0x61,0x41,0xae,0x6b, +0xfc,0x82,0x29,0xfc,0xae,0x23,0x7e,0xf0,0x4f,0x04,0xac,0xc0, +0xba,0x55,0x8a,0x80,0x15,0x78,0xb4,0xb2,0xe2,0xfc,0x89,0x08, +0x58,0xd3,0x08,0x7c,0x4f,0x23,0xe0,0x61,0xc5,0x42,0xb5,0xe8, +0x40,0xc4,0x21,0xc6,0x3a,0x2a,0xb5,0x5a,0xe9,0x9a,0xa0,0x0c, +0xbb,0xc4,0x03,0x6c,0x6e,0x76,0x76,0x4e,0x56,0x2e,0x27,0x74, +0x32,0x67,0xf5,0x4e,0x1d,0x38,0x6e,0xc3,0x79,0x9e,0x0c,0x8f, +0x76,0x9d,0xbd,0x87,0x49,0x37,0x96,0xbb,0xce,0x5c,0xbb,0x58, +0x30,0x94,0xa2,0x94,0xdc,0x19,0xff,0xe4,0xdc,0x4b,0x4e,0xbc, +0xc3,0xa4,0x64,0x26,0xd3,0x1f,0xbd,0x6c,0xde,0x68,0x8d,0xc6, +0x9e,0x79,0x07,0x2b,0x2c,0xf9,0x86,0x0b,0xb5,0xc5,0x95,0x25, +0x1c,0xfa,0xb3,0x9a,0x17,0xfc,0x5e,0xc8,0x84,0x2b,0x4c,0x4b, +0x76,0x61,0x1d,0x95,0x9f,0x07,0xf3,0xe4,0xb0,0x04,0x16,0x91, +0x6d,0xf8,0xdd,0xe7,0x13,0x2e,0x28,0x11,0xd4,0x19,0x01,0x1d, +0xf8,0x11,0x55,0x87,0xc0,0x41,0x54,0x19,0x14,0x66,0x74,0x8e, +0xd7,0x99,0xc1,0xb8,0x9e,0xa8,0x88,0x0e,0x43,0xa0,0xca,0x0e, +0x5b,0x51,0x17,0x9c,0xdf,0xb8,0x70,0xb4,0x55,0x52,0x69,0x32, +0xea,0x82,0x33,0x75,0x41,0xa4,0x2e,0x1c,0xa5,0xaf,0x6f,0xa3, +0x3a,0x59,0x31,0xbc,0xa1,0x45,0xa5,0xf6,0xb0,0x1d,0xdf,0xeb, +0xdf,0x75,0xb4,0xd3,0x97,0xa3,0x8a,0x4e,0x4e,0x07,0xe5,0xf0, +0x28,0xd3,0x74,0xa1,0x8e,0x1a,0xe3,0x50,0xc5,0xef,0xd1,0x5f, +0x6f,0x8d,0x9c,0x33,0xed,0xda,0xa5,0xbb,0xe4,0x2a,0xb3,0x38, +0x91,0x19,0x81,0x39,0x42,0xe1,0x76,0x34,0x67,0x69,0x7b,0x4e, +0x33,0xa7,0x3d,0x3f,0x9d,0x16,0xb6,0xbb,0x6c,0x45,0x50,0x45, +0x40,0xc5,0x51,0x6e,0x7c,0x97,0x2b,0x19,0x12,0x0a,0x75,0x59, +0xb1,0xd0,0x82,0x08,0x85,0xda,0x62,0x21,0xf3,0xc6,0x66,0xeb, +0x11,0xb0,0xa6,0xc0,0x57,0x1d,0xa6,0x36,0x2b,0x0f,0x0a,0xd3, +0x3b,0xc7,0xab,0xcd,0x00,0xa5,0x65,0x70,0x1c,0x86,0xa9,0xcd, +0x43,0x92,0xcd,0x4e,0x6f,0x6c,0xf6,0xa3,0x36,0xab,0x4c,0xd8, +0xec,0x44,0x6d,0x1d,0x7b,0x0d,0x7c,0xf8,0x3f,0xe8,0x46,0x30, +0xf6,0x05,0xf3,0x24,0xe9,0xb3,0xd4,0x2b,0xe9,0x47,0x3b,0x78, +0x9c,0xee,0x83,0x6a,0x21,0x68,0x76,0x26,0xd9,0x8c,0xbf,0x77, +0xee,0x56,0xec,0xf5,0x78,0x6e,0x03,0x9e,0x34,0x85,0x93,0xcb, +0xd0,0xd9,0x54,0x08,0xec,0xc2,0xc3,0xaf,0x20,0x96,0x15,0x93, +0xd0,0x91,0xec,0xd2,0xc9,0xa9,0xb0,0x50,0xea,0xee,0xa9,0x1c, +0xce,0x1d,0xe5,0x6a,0x50,0x8b,0xbd,0x56,0x7e,0xad,0xad,0xa9, +0x81,0xab,0xc5,0x1a,0x0b,0x30,0x67,0xcd,0x9d,0x34,0xed,0x77, +0x7b,0x72,0x16,0x70,0x94,0x0d,0xb2,0xf0,0xb6,0xb5,0x73,0xf4, +0x2c,0x3d,0x52,0x7d,0xac,0xd1,0xca,0x87,0x2f,0xb0,0xb9,0xe8, +0x58,0xe6,0xee,0xe2,0x6b,0x77,0xd4,0xec,0xd8,0x45,0x53,0xbe, +0xbf,0xa0,0xbd,0xa4,0xa1,0x9c,0xb3,0x1b,0xb8,0x7b,0xe4,0xbb, +0xd9,0x42,0x1c,0x93,0xd2,0x2b,0xf7,0x06,0x56,0xbe,0x23,0xe0, +0x4b,0xfd,0xdb,0x3c,0x0c,0xee,0xa2,0xf2,0xa8,0x30,0xbd,0x6b, +0xbc,0x9a,0x26,0xf6,0x21,0xea,0x9f,0xfb,0x30,0x6c,0xfe,0xef, +0x89,0x2d,0x2c,0x7d,0x3d,0x20,0x28,0x5b,0xd2,0x66,0xf7,0x88, +0x25,0x2b,0x7a,0x6f,0x25,0x3d,0x7e,0x83,0xae,0x1d,0xce,0x97, +0x3a,0x78,0xf3,0x6a,0xc3,0x0a,0x83,0x8b,0xdc,0x58,0xd7,0x3e, +0x82,0x8d,0xa3,0x3a,0x87,0xf0,0x82,0x09,0x5c,0xd0,0xc2,0x20, +0xcc,0x1d,0x05,0x77,0xda,0x1e,0xa4,0x0d,0x43,0x1a,0x15,0x1a, +0xcb,0x71,0xa6,0xb4,0x68,0xec,0xaf,0x4c,0x73,0x6e,0x56,0xa3, +0x12,0x58,0xe1,0xe9,0xab,0xd0,0xc8,0x8e,0xeb,0x2e,0x26,0xc6, +0x55,0x3a,0x15,0xfa,0x85,0x3e,0xa6,0xfc,0xa0,0x5f,0xbf,0x67, +0xaf,0x0b,0x25,0x5f,0x3c,0x46,0xbe,0xea,0xfe,0x6c,0xe0,0xca, +0x4d,0xa7,0x46,0xfe,0xc0,0xbe,0x2d,0x86,0x9b,0xad,0xb8,0xff, +0x1c,0x9a,0xff,0x2f,0x70,0x82,0xeb,0xa2,0x17,0xa1,0xb8,0x71, +0x8f,0x4a,0x2e,0x51,0xfa,0x06,0x42,0xa1,0x09,0xbf,0xb7,0x80, +0xba,0xbd,0x58,0x64,0x01,0x45,0xdb,0xc4,0x3f,0x3e,0x87,0xa4, +0x76,0x4c,0x1a,0x60,0xbf,0x89,0xfd,0x35,0xfd,0x7e,0x4e,0x50, +0x1b,0xbf,0x3d,0x10,0xa7,0x87,0xe3,0x8c,0x33,0x1c,0x96,0x81, +0x2b,0x7b,0x54,0x73,0x8d,0x1d,0x1a,0x79,0xe5,0xeb,0xf1,0x70, +0xac,0xf2,0xc7,0xeb,0x85,0x3f,0x70,0xb0,0x66,0x21,0x73,0xb0, +0x28,0xf8,0x86,0x0c,0xc2,0x99,0xa6,0x9c,0xec,0x3a,0xa5,0x87, +0xac,0x4e,0xc6,0xc4,0x4c,0x2f,0xa6,0x1a,0x71,0x18,0xd6,0xc0, +0x4f,0xb8,0x7c,0x08,0x2c,0xc4,0xa5,0xbd,0xc2,0xcc,0x8e,0xf1, +0x3a,0x73,0x18,0x37,0xa2,0xe6,0x5a,0x0c,0xc1,0x72,0x76,0xc8, +0x96,0x58,0x83,0x2b,0xed,0xbc,0xf6,0xcd,0xb2,0x86,0x63,0x2d, +0x92,0xb9,0x0a,0xa4,0x05,0x5d,0xad,0x59,0x61,0x7c,0x56,0x0b, +0xfa,0x5b,0xb3,0xf0,0x27,0x86,0x93,0x0e,0x3c,0xc7,0xe6,0x14, +0x65,0x5e,0xcc,0x2c,0x76,0x4b,0xe6,0xc1,0xac,0x4d,0x7c,0xb7, +0x43,0xc7,0x5c,0x9c,0x6c,0x09,0x56,0x8c,0x4d,0x44,0xa6,0x5f, +0x96,0x5f,0xaa,0x8f,0x02,0x46,0x99,0xc3,0x18,0x13,0xe8,0x7f, +0xf4,0xa8,0xef,0x51,0x0e,0xeb,0x4d,0xe1,0x18,0x73,0xd8,0xd7, +0xc5,0xd7,0xc1,0xf7,0x66,0xe4,0x57,0xa1,0xdf,0x07,0xa9,0x1c, +0xc3,0x99,0x91,0xb8,0xf2,0x54,0x86,0x31,0x3d,0x40,0x3c,0xac, +0xc9,0x87,0x99,0x8d,0xc0,0xf9,0xc3,0x3b,0x7e,0xc0,0xf8,0x15, +0x75,0xf2,0x2a,0x79,0x4b,0xf2,0x56,0x64,0xf7,0x97,0xb4,0x54, +0x57,0x37,0x72,0xb0,0xb9,0x4b,0x4c,0x65,0x0a,0x0b,0xf3,0x0b, +0x73,0x0a,0x38,0xda,0xe2,0xcd,0x21,0x61,0xde,0x81,0x5e,0x47, +0x3d,0x39,0xbc,0xc2,0x34,0xa6,0x45,0x16,0x05,0x97,0x84,0x16, +0x28,0x08,0x1f,0x62,0x12,0xb1,0x77,0x36,0xf7,0x3c,0x74,0x54, +0x35,0x73,0x53,0xc6,0xee,0x94,0xc2,0xec,0x82,0xec,0xbc,0xec, +0x89,0x40,0x11,0x82,0x87,0x47,0xe0,0x30,0xc5,0xd8,0xd6,0x61, +0xf0,0x94,0x30,0x36,0xad,0x7b,0xbc,0xca,0xe4,0x35,0xc6,0x3c, +0x87,0x61,0x2b,0x3b,0x6c,0xf6,0xbf,0x62,0xcc,0x67,0x2f,0xb9, +0x7a,0x6c,0xd4,0x73,0xd8,0xad,0xb0,0x83,0xd7,0xab,0xda,0x53, +0xa6,0x5b,0xc0,0x8d,0xb5,0x6f,0x20,0xd8,0x77,0xed,0x10,0x55, +0xab,0xae,0x58,0x7f,0xa5,0x53,0x58,0x6c,0x76,0x05,0xea,0x31, +0xf9,0x31,0xf4,0x31,0xe3,0x6a,0x9a,0x44,0xb7,0x7c,0x7b,0xa9, +0x41,0xce,0x31,0x13,0x7e,0x34,0xf0,0x96,0xd7,0x20,0x95,0x2f, +0x73,0xf1,0x13,0xf2,0xa8,0xfb,0xf1,0x8d,0x6b,0x9f,0xda,0x36, +0xf0,0x87,0x34,0x37,0xed,0xdf,0x44,0x1b,0xf7,0xc9,0x5d,0x04, +0x14,0x84,0xc5,0xa8,0x40,0x4b,0xc7,0x2f,0x82,0x25,0x19,0x81, +0x40,0x71,0xe1,0x75,0x81,0xe9,0x19,0xbf,0x68,0x0c,0x7f,0xec, +0x13,0x09,0x06,0x8e,0xc0,0x1e,0xf8,0x1c,0x03,0x46,0x20,0x00, +0xbe,0x61,0xc6,0x97,0x1b,0x13,0x73,0xb0,0xee,0x60,0xe1,0xe0, +0x2c,0x73,0xf0,0xe8,0x60,0xc5,0x85,0xb8,0x8c,0x06,0xc5,0xda, +0x9c,0x15,0x7e,0x9c,0xd5,0x81,0x1e,0xe6,0xac,0x98,0xb9,0x81, +0x36,0xf2,0xfd,0x3b,0xb0,0xd6,0x04,0x6a,0xd9,0xb3,0x81,0x67, +0x82,0x4f,0x85,0x2c,0x09,0x51,0x8e,0x42,0xf6,0x44,0x8a,0x11, +0xff,0x5d,0xd2,0xab,0xd4,0xa7,0x99,0x2e,0x8e,0x7b,0xbc,0xf0, +0x03,0xdf,0x3c,0x43,0x1e,0x8e,0x77,0xdd,0xfa,0x0c,0xe6,0x28, +0x82,0x97,0xb6,0x39,0x0b,0x71,0x98,0x41,0x1e,0x43,0x47,0x37, +0x76,0x7c,0x0a,0x37,0xba,0xf1,0x46,0xbb,0x8e,0x78,0x78,0x18, +0x26,0xc1,0x83,0x9e,0x09,0x0e,0xa5,0x6d,0x74,0xf4,0x08,0x44, +0xd3,0xb9,0xdc,0x33,0x0c,0x41,0xa2,0xf2,0x55,0x61,0x5a,0xdf, +0x78,0xa5,0x21,0xfc,0xa9,0x45,0xe7,0x32,0x68,0x18,0xf6,0xb0, +0x23,0x92,0x79,0xf6,0x6f,0xcc,0xf3,0xe9,0x90,0x0a,0xf1,0x72, +0x6a,0x9e,0x3d,0x35,0xef,0x0f,0x6a,0x9e,0x8f,0x39,0x55,0x86, +0x18,0x44,0x22,0x93,0xa2,0x3e,0x89,0x8a,0x88,0x0c,0xe3,0x63, +0xae,0xc1,0x86,0x6e,0xdc,0xf0,0xb5,0xee,0x6a,0x34,0x34,0x81, +0x9d,0x8c,0xcf,0x0e,0x4d,0xb5,0xc5,0x5a,0x15,0x66,0x3c,0xc8, +0x3f,0x6d,0xba,0x97,0x7a,0x97,0x4a,0x8a,0x86,0x21,0x08,0x66, +0x52,0xe3,0xcf,0x25,0x9d,0x90,0xc1,0xe4,0x8d,0x55,0xad,0x72, +0x82,0x1b,0xf0,0x54,0xab,0xfa,0x4b,0x1f,0x5a,0x62,0x02,0x1f, +0xb2,0xde,0x1a,0xdb,0x36,0xe2,0x94,0x3d,0x15,0xe6,0x3c,0xf0, +0x5f,0x75,0xdf,0x4d,0x79,0x44,0x3f,0xd5,0x3a,0x04,0xad,0x89, +0x4c,0xca,0xe6,0xd1,0xed,0x30,0x67,0x7d,0x59,0x27,0x8f,0x53, +0xef,0x6c,0x78,0xe4,0xf1,0xe9,0x04,0x24,0x94,0x09,0x9a,0x0f, +0x83,0x39,0xcd,0x5d,0x95,0x21,0x30,0x11,0x55,0x7a,0x84,0x19, +0x1d,0xe3,0x35,0xe6,0x20,0x1a,0x53,0x37,0x4c,0x86,0x40,0x85, +0x1d,0xb2,0x23,0x36,0xe0,0xd2,0x2c,0x25,0x83,0x0d,0xf8,0x37, +0x4b,0xb4,0xfa,0x11,0x69,0x46,0x17,0x1b,0x56,0xc0,0x59,0xcd, +0x78,0xd4,0x86,0xc5,0x40,0xdc,0x49,0x5a,0xa1,0xcc,0x6a,0xb0, +0x15,0x52,0x3a,0x31,0xa5,0x43,0xcf,0x1c,0xcb,0xa4,0x4d,0x8c, +0x19,0xc4,0x58,0xb1,0x63,0xf3,0xd1,0x9b,0xaa,0xdb,0xc9,0xb4, +0x1f,0xbe,0x3b,0xa8,0xa7,0x87,0x03,0xb4,0xf1,0x98,0x64,0x26, +0x2c,0x60,0x1d,0x75,0xf0,0x03,0x57,0x3c,0xeb,0x9f,0x4d,0x1b, +0xfc,0x86,0x52,0x98,0x59,0x5b,0xf4,0x23,0x97,0xc0,0x14,0x2b, +0xc3,0xc7,0x4e,0xd0,0xe8,0x99,0x31,0xc0,0xe3,0x99,0x02,0x54, +0xaa,0xb2,0x1d,0xe6,0x76,0x51,0xac,0xaf,0xc7,0xd3,0xcf,0x58, +0x61,0x68,0x3d,0xc1,0xf4,0x67,0x90,0x4e,0x6b,0x42,0xee,0xd8, +0x27,0x44,0x78,0xbf,0x7d,0xbc,0xc3,0x42,0x98,0x62,0x21,0x2a, +0xe1,0xa1,0x21,0x98,0x0b,0xcf,0x71,0xff,0x30,0xec,0x87,0xdf, +0x70,0xee,0x10,0x1c,0x12,0x57,0x31,0xf8,0x42,0x8d,0x9a,0xef, +0x45,0xcd,0xdf,0x43,0xcd,0x0f,0x6d,0x96,0x56,0xe5,0x7a,0x8f, +0x34,0xa1,0x97,0x2d,0x3b,0xc6,0xcd,0x6a,0xc2,0x50,0x5b,0xf6, +0xca,0x0a,0x12,0x66,0x63,0x62,0xa4,0xe2,0xeb,0xda,0x78,0xa8, +0xc7,0xa5,0xd8,0xc5,0x8b,0xcf,0x8a,0xc8,0x0d,0xce,0x0b,0xda, +0x1b,0xae,0x19,0xa9,0x1e,0x75,0xf2,0x07,0xfe,0x97,0x64,0xe0, +0x32,0x5e,0xe4,0x05,0x37,0xf1,0xca,0xfe,0x38,0x33,0x02,0xf9, +0xe3,0xc9,0xa8,0xc2,0xeb,0xc7,0x24,0x99,0x83,0x52,0x36,0x4c, +0xca,0x06,0xb6,0x40,0x21,0x33,0x34,0x23,0x34,0x25,0xbc,0xfa, +0x12,0x5f,0xe4,0x08,0x4c,0xe9,0xd5,0xcf,0x32,0xae,0x2a,0x80, +0x2a,0x73,0xf6,0xd8,0x19,0xcf,0x93,0xfe,0x5c,0xe0,0xa9,0x88, +0x08,0x17,0xea,0x34,0x93,0x61,0x25,0xf7,0x03,0x73,0xa5,0x34, +0xa7,0x29,0x49,0x29,0xa9,0x21,0xb6,0xef,0x7c,0x2d,0x27,0x6e, +0xb2,0x66,0xf0,0x8a,0x18,0x4a,0x9a,0xc6,0x58,0xdb,0x11,0xe8, +0x1e,0x8f,0xc6,0x6e,0x16,0xbe,0x06,0x13,0x82,0x97,0x06,0xe0, +0x12,0x33,0xac,0x4f,0x06,0xa0,0x59,0x9f,0xc5,0x5f,0xad,0x89, +0x0e,0x5e,0x1a,0x66,0xe1,0xf9,0x2c,0x68,0xd6,0xc1,0x66,0xe6, +0x4d,0xf4,0x8c,0x86,0xc1,0x88,0x46,0x6f,0xd1,0x10,0x18,0x88, +0x2a,0x9d,0x7f,0x47,0xcf,0x8c,0x46,0xcf,0x60,0x08,0x16,0xb1, +0x43,0x0e,0xff,0x2d,0x7a,0xe4,0xdf,0xa3,0x07,0x4d,0x47,0x09, +0xce,0xf0,0x47,0x8d,0x60,0xdc,0x77,0x32,0xc8,0xc0,0x61,0xbf, +0x89,0x79,0xb3,0x0b,0xdf,0xdd,0x51,0x7f,0x35,0xab,0x15,0x56, +0x27,0xc0,0xa6,0x34,0x50,0x28,0xe5,0xc6,0xcb,0x23,0x49,0x9f, +0xdf,0xb0,0x6b,0xb7,0x4b,0x49,0x2b,0x6f,0x5a,0xad,0x5f,0xa1, +0x47,0x4b,0xcb,0x30,0x9a,0x13,0xf7,0x56,0xdb,0x0e,0x9b,0x5a, +0x2b,0x5f,0xbe,0xd5,0xae,0xc1,0xb2,0xc2,0x82,0xc3,0xb3,0x57, +0x48,0x58,0xf1,0xd1,0x4a,0xff,0x42,0x4b,0x5f,0xbe,0xe0,0x48, +0xa1,0x5b,0x9a,0x0f,0x27,0x4e,0x75,0x27,0x26,0x55,0xda,0x15, +0x06,0x85,0xbe,0x16,0x7f,0x57,0x13,0x41,0xb7,0x98,0x5c,0x4f, +0x18,0x49,0xea,0x49,0xf1,0x69,0xe3,0x71,0x52,0x00,0x2e,0x0e, +0xc7,0x8d,0xa7,0x93,0x2c,0xf8,0x1b,0xe7,0xae,0xc4,0x8e,0xc4, +0x71,0x54,0x43,0x9a,0x42,0x99,0x2a,0xc6,0x99,0x09,0x57,0x3a, +0x31,0xf1,0x2b,0x68,0xe8,0xc2,0x06,0x56,0xbc,0x4c,0x65,0xd9, +0xe7,0x03,0x37,0xae,0xf7,0x7f,0x6a,0x57,0xc3,0x1b,0xed,0xde, +0xbe,0x47,0xd3,0x6c,0x02,0xc7,0xab,0x09,0x6a,0x0d,0x83,0x16, +0x9d,0x89,0x79,0x43,0xa0,0x23,0xaa,0xb4,0x0b,0x33,0xdb,0xc7, +0x6b,0x2d,0x40,0xb4,0xa0,0x33,0xa1,0x33,0x04,0xf3,0xd8,0x21, +0xa7,0xff,0x36,0x13,0xef,0x53,0x20,0xb8,0xd8,0x4a,0x35,0xa8, +0x09,0xfd,0xe9,0xeb,0xbb,0x62,0x39,0xd1,0xa8,0xd1,0x6e,0xb0, +0x68,0xeb,0xbd,0x5e,0x71,0x3f,0xeb,0x4b,0xee,0x46,0x27,0x5e, +0x92,0x9e,0x93,0x5d,0x92,0x54,0x6c,0x9c,0xca,0xfb,0xac,0x34, +0x5d,0xa9,0xb1,0xbd,0x81,0xf6,0xd3,0xc5,0x17,0x2e,0xe5,0x97, +0xe5,0xeb,0x94,0x1a,0x36,0x98,0x9a,0x59,0x68,0xd9,0x6d,0x70, +0x2d,0x36,0xe5,0x9f,0x57,0xdf,0x6c,0xe9,0xed,0xe9,0x34,0xbb, +0x6c,0xfd,0xd0,0x81,0x13,0x33,0x04,0x15,0x32,0xf0,0xaa,0x61, +0x59,0x9b,0xa1,0x25,0xce,0xa6,0x9b,0x55,0xf6,0xdf,0xe8,0x23, +0x63,0x27,0x1c,0x6e,0x64,0x71,0xf3,0x00,0xd1,0xc7,0xd9,0x03, +0xac,0xf0,0xca,0x98,0x84,0xee,0xf6,0x39,0x68,0x6b,0x60,0xdd, +0xe7,0x39,0x12,0x74,0xeb,0xdc,0xb9,0x4f,0xce,0x9f,0x3b,0xc7, +0x89,0x81,0xa2,0x0a,0xf9,0x03,0x12,0xf5,0xf1,0x7d,0x36,0xd5, +0x4e,0x0e,0x18,0xa6,0x21,0x3b,0x9b,0x96,0xe6,0x38,0x71,0x2a, +0xde,0x66,0xe1,0x0a,0x55,0xdc,0x98,0xd8,0x04,0x89,0x0c,0x26, +0xaa,0x11,0x48,0xb4,0xc2,0x44,0x8a,0x85,0xbc,0xb1,0x8f,0xc9, +0x3f,0xda,0x68,0xe0,0x6f,0x6d,0xa4,0xff,0x46,0x1b,0xc1,0x63, +0x34,0x1d,0x61,0xf0,0x29,0x2c,0xa5,0x85,0xcd,0xa9,0x45,0xa2, +0x77,0x6b,0xf0,0x6b,0x91,0xe6,0xe0,0xe3,0xff,0x22,0x91,0x56, +0x2d,0x23,0xc3,0x3a,0x3a,0xb8,0xd7,0x5c,0xd8,0x4d,0x29,0xcb, +0x0f,0x57,0x12,0x30,0xc0,0xaf,0x70,0x11,0xbb,0x2e,0x62,0x83, +0xd6,0x46,0x59,0x87,0x4d,0x4d,0x7b,0x61,0x4f,0x7a,0x9f,0x02, +0x9a,0xf5,0xb6,0xc0,0x71,0xd0,0xc7,0x3a,0x36,0x36,0xef,0x7c, +0xde,0xb9,0x3c,0xee,0x5c,0x07,0xf9,0x16,0xbc,0x56,0xb2,0x42, +0xbb,0x2e,0x41,0x05,0x26,0xaf,0x34,0xa7,0x3c,0xed,0x92,0x61, +0x01,0x1f,0xee,0x12,0xe4,0x7c,0xc4,0x81,0xc3,0x1c,0x73,0x30, +0x56,0xc7,0x5d,0xe6,0xb0,0x0b,0xdf,0x1a,0x82,0xb7,0xe0,0x40, +0x07,0x1e,0xb8,0x0f,0xf6,0x0c,0x56,0xdf,0x21,0xe1,0x15,0xc7, +0x6a,0x42,0xf2,0xcc,0xfc,0xf9,0x1c,0xbf,0x5c,0xd7,0x34,0x2f, +0x0e,0x9d,0x96,0x90,0xe5,0xa8,0xfd,0x1d,0xa5,0x5a,0x87,0x31, +0x9a,0xf2,0xef,0x0c,0xc1,0x3b,0xb4,0x60,0xcf,0x1a,0x84,0x9d, +0xa2,0x4a,0x93,0x30,0xb3,0x6d,0xbc,0xce,0x12,0xfe,0xb2,0xa5, +0x05,0x7b,0xe7,0x20,0xcc,0x62,0x87,0x0e,0x13,0x3b,0x70,0x6b, +0x94,0x92,0xdc,0x0e,0x02,0x1a,0x25,0xbf,0xa6,0x93,0x06,0x74, +0xb3,0x67,0x85,0xbf,0x66,0x35,0x60,0x80,0x3d,0xab,0x6b,0x45, +0xfa,0x75,0x0c,0xc4,0x25,0x76,0x7f,0x72,0xf4,0xd7,0x0f,0x76, +0x92,0xf2,0x80,0x92,0x23,0x79,0x47,0xea,0x8a,0xf9,0xa0,0x7c, +0xd7,0x52,0x9f,0x1c,0x0e,0x74,0x66,0x05,0xfb,0xbb,0xfb,0x7a, +0x04,0x56,0x7b,0xf1,0x15,0xf9,0x95,0xc5,0xb4,0x93,0x06,0x1b, +0x73,0x52,0x9a,0x70,0x29,0xa1,0x38,0xe9,0x70,0x39,0xbf,0x2f, +0x78,0x55,0xe4,0xd2,0x93,0x1c,0xce,0x60,0x0d,0x4e,0x27,0x38, +0x8c,0xc6,0xfd,0x9c,0x3c,0x9a,0xaa,0x10,0x53,0xe3,0x76,0xd2, +0xfe,0xa4,0xc3,0x69,0x85,0x07,0x6c,0xe5,0xf9,0xca,0xd8,0xf2, +0xb8,0x5c,0xdd,0x46,0xfd,0x97,0x0e,0x45,0x75,0xbc,0x5a,0xd5, +0xe1,0xa6,0x90,0x36,0x4e,0x8c,0x0d,0x25,0xc7,0xce,0x06,0x9c, +0x0e,0x96,0xf9,0x9f,0x8a,0x3e,0xe9,0x33,0x7b,0x13,0x93,0xec, +0x28,0xf7,0x94,0x19,0xcc,0xcc,0xad,0x49,0x50,0x8a,0x2f,0x39, +0x57,0xd6,0xae,0x88,0xa3,0x8e,0x3f,0x30,0x31,0x16,0x9e,0xee, +0x6b,0xbc,0x73,0xed,0xf9,0x9f,0x2a,0x3b,0xda,0x92,0x6e,0x70, +0xf0,0xc9,0x69,0x82,0x7c,0x3f,0xf0,0x2c,0x56,0xe1,0x7e,0x52, +0xa7,0x6b,0xc3,0x6a,0x1c,0x33,0x5c,0xa6,0x25,0x6b,0xb2,0x6b, +0xbc,0x54,0x5a,0x9a,0x57,0xa6,0x20,0xdc,0xa3,0xb1,0x6e,0xd2, +0x31,0x67,0xc4,0x8e,0xf9,0x24,0x31,0x37,0x2e,0xf7,0x3c,0x6d, +0x1d,0xaa,0xf5,0x27,0x68,0x61,0x0d,0xc1,0x5d,0xc3,0xb0,0x8b, +0x26,0xc3,0x9c,0x21,0xd8,0x27,0xaa,0xb4,0xbe,0x99,0xb0,0x71, +0x2b,0x8a,0x87,0x7d,0x43,0x30,0x87,0x1d,0x74,0xfe,0x6f,0x13, +0x26,0x4f,0x93,0xc1,0xcd,0x56,0x52,0x38,0x4d,0x78,0xcc,0x96, +0x45,0x0d,0x7f,0xb2,0xd6,0x07,0xdf,0x0d,0x40,0xc5,0xa8,0x74, +0x5a,0x83,0x14,0xd2,0x81,0x2f,0xfc,0xb6,0x94,0x83,0x7a,0x71, +0x26,0xa1,0x65,0x0d,0xed,0x6f,0x82,0x36,0x14,0x8b,0x6b,0xb1, +0x18,0x34,0xf7,0xa0,0xbe,0x39,0xe8,0x6f,0x45,0x4f,0x33,0xe1, +0x54,0x27,0x86,0x30,0xa6,0x82,0x3a,0xd9,0x8f,0xef,0x5e,0x63, +0x61,0x97,0xf4,0xe4,0x54,0x85,0xfd,0xac,0x98,0x91,0x4e,0xa2, +0xb2,0x22,0xb2,0xc2,0x33,0xec,0x8f,0xf2,0xe9,0xe1,0xe9,0x21, +0xa9,0xc1,0x1c,0xa8,0xde,0x20,0xf3,0xf7,0xe3,0x42,0x3d,0x54, +0xf1,0x28,0x30,0xe7,0x3f,0xcf,0xfb,0xf4,0xc2,0xad,0x92,0xe4, +0xa8,0xe4,0xa8,0xa4,0xa8,0x3d,0x56,0x2b,0x1d,0xf1,0x6d,0xaf, +0x3c,0x13,0x1e,0xd8,0xb2,0x1f,0x1a,0xef,0xf4,0x26,0x85,0x25, +0x86,0xc6,0x87,0x6a,0x6a,0xe3,0xdb,0x46,0x28,0x73,0x2b,0xa0, +0x72,0x69,0x66,0x05,0xcc,0xec,0xbe,0x77,0x9d,0x3b,0x1f,0x76, +0x2e,0x34,0x54,0x71,0xaf,0x7f,0x80,0xae,0x6c,0x13,0x93,0x69, +0x26,0xf7,0x19,0xf3,0xf3,0xc5,0xd6,0x97,0x4f,0x9c,0x1e,0xe9, +0x8d,0x2a,0xb5,0xe5,0x37,0x5f,0x68,0x28,0xe2,0xf0,0xa2,0x15, +0x89,0xcc,0x09,0xcf,0x09,0xcc,0xb3,0xa5,0x08,0x0b,0x4e,0x0b, +0xcd,0xf4,0xe7,0x84,0x99,0xf1,0x04,0xde,0xdd,0x85,0xef,0x32, +0xb0,0x6b,0xd6,0x1d,0x50,0xd8,0xc5,0xfe,0xff,0x35,0x73,0xf9, +0xd8,0x4d,0xd2,0x32,0x52,0x32,0x53,0xb2,0x38,0xc8,0x04,0x0f, +0x71,0x01,0x7a,0x3c,0x66,0x9c,0xcd,0x6d,0xdc,0x34,0xdc,0x0a, +0xed,0xf9,0xac,0xa4,0xac,0xc4,0x8c,0x24,0x0e,0xf7,0x74,0x16, +0x81,0x3d,0x9b,0x6a,0x2b,0x37,0xc0,0xdc,0xbc,0x90,0xdb,0x47, +0x5b,0xbb,0xf6,0xd8,0x5b,0x2f,0x15,0xc5,0x04,0x70,0x21,0x8d, +0x78,0xdf,0x8e,0x1d,0x8b,0x48,0x21,0x16,0xd8,0xda,0xce,0x8a, +0x27,0x74,0x89,0x8d,0xa0,0xdc,0xcc,0x0a,0xc4,0x87,0x98,0x61, +0x6b,0x27,0x2b,0x1a,0x6a,0x51,0x23,0xae,0x51,0x2a,0xe1,0xa7, +0x36,0xe2,0x35,0xfa,0xde,0x58,0x54,0x24,0xae,0x31,0xe1,0x51, +0x76,0xb3,0xdd,0xea,0x31,0x10,0xde,0xf1,0x64,0x72,0x53,0xb3, +0xd2,0x32,0xd3,0x39,0x78,0xfb,0x34,0x63,0xef,0xe9,0xbb,0xc9, +0x45,0x96,0xef,0xd8,0x96,0x57,0x9e,0x9b,0x97,0xa3,0x90,0x90, +0x10,0x77,0x36,0xf1,0x14,0x4c,0xd5,0xe5,0x0b,0x6a,0x96,0x76, +0x45,0xc7,0x1f,0x3f,0x1d,0x73,0x42,0x21,0x3a,0x2a,0x26,0x56, +0x2e,0x23,0x37,0x39,0xbb,0x5c,0xf1,0x3c,0x2d,0xfa,0xba,0xa7, +0x8d,0x4f,0xd8,0xc9,0xc6,0x6d,0x96,0x90,0x52,0xb8,0x04,0xab, +0xf0,0x29,0x1e,0x62,0xe1,0xd2,0x1d,0xda,0xa3,0xdc,0x06,0x5f, +0x8a,0xb1,0x1b,0x63,0xef,0x11,0x0b,0x58,0xa1,0x82,0xef,0x59, +0xc2,0x7b,0xf8,0x83,0x3a,0x9b,0x61,0x2e,0x37,0xcc,0xd4,0x64, +0x51,0x9d,0x0d,0x49,0x89,0x6c,0xe2,0xa2,0xa1,0x35,0xcf,0x37, +0x95,0xb6,0xf3,0xd6,0x0d,0x4e,0x8d,0x9e,0xcd,0x35,0xb5,0x15, +0x4d,0xc5,0xcd,0x76,0x65,0xbc,0xbf,0x83,0xb7,0xa3,0x87,0xeb, +0xd1,0xe6,0x90,0xd6,0x98,0x4e,0xe9,0x8e,0xed,0x45,0xcd,0xed, +0x36,0xa0,0x84,0x4b,0x86,0xcd,0xa8,0x14,0xb0,0x80,0x0f,0x56, +0x33,0xa8,0xdc,0x4b,0x7c,0x5a,0x0f,0xb7,0xba,0xd4,0x39,0x1f, +0xe6,0x2b,0xed,0xab,0xac,0x4a,0xac,0x38,0x14,0xa8,0x77,0x2d, +0xeb,0xef,0xc3,0x64,0x2c,0xed,0x84,0x52,0x78,0x4b,0x7d,0x9d, +0xf5,0x2f,0x15,0x95,0x30,0x07,0xd7,0x5f,0x81,0xc5,0x1d,0xf8, +0x8d,0x39,0x2c,0x38,0x80,0xeb,0x70,0x4e,0xf5,0x61,0x76,0x6c, +0x2f,0xb0,0xe4,0xeb,0x97,0xab,0x59,0xec,0xc1,0xf5,0xc4,0xab, +0xdd,0xa5,0xcb,0xb5,0xd6,0xc5,0x95,0xaf,0x72,0xac,0xb4,0x28, +0x35,0xe3,0xe0,0x54,0x27,0xf9,0xe1,0xa5,0x0a,0x3b,0x7e,0x69, +0x1b,0xf9,0xb5,0x75,0x01,0x03,0x56,0x56,0xe4,0xb7,0xd6,0xf9, +0x8c,0xb0,0x91,0x76,0xe8,0xc7,0x4a,0x1c,0x9b,0xbd,0x8a,0x0e, +0xbb,0xf3,0x25,0xbe,0x75,0x76,0xf9,0xde,0xdc,0x28,0xd6,0x10, +0x24,0x36,0x37,0x61,0x8a,0x12,0x1c,0xc4,0xe9,0xe6,0xd7,0x71, +0x36,0xbb,0xfc,0xa8,0xa9,0xa6,0xad,0xcc,0x73,0xc8,0xb5,0xcb, +0xab,0xde,0xde,0x87,0xcf,0x39,0x92,0xe3,0x93,0xed,0x65,0x12, +0xad,0x1d,0x7d,0xf0,0x44,0x7e,0x7b,0xde,0x50,0x66,0x37,0x07, +0x87,0xdb,0x45,0x79,0x0b,0x98,0xc2,0x84,0x18,0x1d,0xd3,0x3f, +0x6a,0x14,0x74,0x26,0xe8,0x6c,0xd0,0x99,0x24,0x63,0xfe,0xd7, +0x54,0x98,0x94,0xf9,0x6d,0x6e,0x72,0x48,0x52,0x48,0x62,0x48, +0x69,0x2e,0x9f,0xe3,0xfd,0x69,0x6b,0x51,0x63,0xec,0x7d,0x85, +0x04,0x66,0x5d,0x5c,0xef,0x21,0xf8,0x78,0x36,0x04,0x30,0xa9, +0xdd,0x72,0xe2,0x28,0x54,0x93,0x76,0xfc,0xca,0x82,0x15,0x0a, +0x71,0x0f,0xa9,0xa9,0x68,0xef,0xba,0x54,0xe3,0x51,0xc9,0x7b, +0x3b,0x5b,0x58,0x38,0x7b,0x4c,0xd4,0xba,0x95,0xe4,0xb5,0xc8, +0xf9,0xf1,0xb5,0xc8,0xf9,0xf7,0x5a,0x27,0xa9,0x20,0xa9,0xd6, +0xd9,0x82,0x4b,0x93,0x54,0xeb,0x6c,0xc1,0xbf,0x89,0x15,0xc5, +0x4d,0xff,0x65,0xc0,0x0f,0x63,0xa5,0x8b,0xdf,0x11,0xb8,0x86, +0x85,0x06,0x58,0x23,0x5d,0x36,0x0f,0x87,0x35,0x6c,0xcf,0x2c, +0xba,0x73,0x92,0xee,0x8c,0x4f,0xb7,0x23,0x3b,0x71,0xce,0x5d, +0x16,0xea,0x77,0x92,0xbb,0x30,0x67,0x27,0x0b,0xcb,0x66,0xdd, +0x85,0x05,0x3b,0xa5,0x87,0x36,0x2d,0x20,0x70,0xf0,0x0c,0xa3, +0xed,0xef,0x85,0x72,0xe6,0xb2,0x42,0xcb,0xc1,0x0b,0x5d,0xc5, +0x45,0x97,0x14,0x12,0x12,0x63,0x4f,0x53,0x5c,0x29,0x6c,0xe6, +0x4b,0x9a,0x71,0xda,0x9d,0xf0,0xa4,0x13,0x9f,0x44,0x47,0x29, +0x44,0x86,0x9f,0x3c,0x2f,0x97,0x51,0x14,0x5f,0x54,0xa6,0x18, +0x0f,0xfb,0x3b,0xfe,0x9a,0x66,0x0e,0x9b,0xcf,0xb0,0xda,0xc1, +0x47,0x70,0xba,0x89,0xac,0xd0,0x62,0xe8,0x42,0x73,0xf1,0x85, +0x22,0x85,0x94,0xd4,0x84,0xd3,0x49,0x27,0x81,0xdf,0xcc,0x17, +0x35,0x23,0x7b,0x3b,0x22,0xf1,0x78,0x6c,0x54,0x84,0x42,0x74, +0x64,0xcc,0x7f,0x7c,0xf6,0x10,0xda,0x89,0x6a,0x26,0x7f,0x2a, +0x77,0x8b,0x7b,0x27,0x52,0x55,0x95,0xe0,0xce,0x61,0xd8,0x49, +0x67,0x61,0xf6,0xff,0x98,0xaa,0xb3,0xd9,0x41,0x97,0xff,0x2d, +0x55,0x81,0x26,0x7c,0xcb,0xf8,0xa7,0xb8,0x91,0xc5,0x69,0x27, +0x70,0xb2,0xf6,0x02,0x59,0x87,0xbd,0xdc,0x0d,0x78,0x27,0x89, +0x96,0xa7,0x79,0x8a,0xc0,0xb2,0x63,0xee,0xa2,0x24,0x12,0x06, +0x5a,0xd8,0xa7,0x8d,0x15,0xe5,0x69,0x1d,0x54,0x4d,0x7f,0xd4, +0x05,0x1f,0x25,0x32,0xa9,0x66,0x75,0x6e,0xdf,0xd9,0xe6,0x35, +0xf2,0x3b,0xcb,0xcc,0xcb,0x7c,0x2b,0x38,0xf8,0xa8,0x1e,0x57, +0x75,0x30,0xed,0x71,0xad,0x09,0xb5,0xc9,0xa1,0xb5,0xfc,0xd6, +0x40,0x7c,0xf7,0xa4,0xca,0xd9,0x64,0x7b,0xbe,0xa6,0xe9,0x7c, +0x6c,0xb3,0x92,0x35,0x2a,0x3b,0xc0,0xbb,0xac,0x9f,0x87,0x95, +0xf7,0x01,0xcf,0x2c,0x37,0xde,0x04,0x57,0xe3,0x26,0x60,0xa8, +0x26,0xc0,0x85,0x56,0x63,0x05,0xad,0x38,0x36,0xc8,0x38,0x40, +0x06,0xc1,0x45,0x1d,0x4c,0x5b,0x5c,0x4b,0x42,0x8d,0x74,0x10, +0xf5,0x20,0x94,0x8f,0x59,0x3a,0x71,0x90,0xc6,0xd7,0x07,0x59, +0xee,0x00,0x84,0xf5,0x73,0xb5,0x74,0xd3,0xf4,0x28,0xb0,0xe1, +0x5f,0x34,0xd7,0xd4,0x25,0x75,0x4d,0xd8,0xf4,0x35,0x93,0x10, +0xfb,0x49,0xdc,0x69,0xd9,0xab,0x3d,0x17,0xab,0xd6,0x5c,0x8e, +0x4e,0x38,0x11,0x7b,0x3c,0x9a,0x26,0xb5,0x5c,0x4c,0x09,0x2c, +0x62,0xa4,0x05,0xdd,0x3e,0x23,0x38,0xd5,0x0f,0x97,0x07,0xe1, +0xaa,0xd3,0x19,0xa6,0x3c,0x2c,0x8d,0x87,0x75,0xb9,0x30,0xf3, +0x22,0x37,0xee,0x85,0x05,0xa4,0x55,0xe5,0x1e,0xbc,0x8b,0x05, +0xad,0x50,0x00,0xef,0xed,0x50,0xb6,0xfc,0xb5,0xbc,0x19,0x64, +0xa8,0x71,0x15,0x56,0x74,0xe2,0x98,0x19,0x2c,0xd7,0x42,0x75, +0x94,0x35,0x7b,0xb0,0x63,0xed,0xb5,0x64,0x59,0x17,0x2c,0x5c, +0xc4,0x16,0xd5,0x15,0xb7,0x67,0xb7,0x58,0xe5,0xf2,0xc1,0x36, +0x3e,0xc6,0x2e,0x46,0x1c,0xde,0xc3,0x85,0xdd,0xaf,0x18,0x08, +0x78,0x40,0x22,0xaa,0x02,0x9b,0x42,0x4a,0xac,0x02,0xf8,0x4c, +0xef,0x3c,0xdb,0x64,0x77,0x6e,0x71,0x3a,0x89,0xac,0x08,0x68, +0x08,0x29,0xb2,0x3c,0xc6,0x67,0x1d,0xc9,0x71,0x48,0x75,0xa7, +0x69,0x88,0x8b,0x89,0x63,0x85,0x53,0xb1,0x7d,0x81,0x97,0x3b, +0xdf,0xe8,0x57,0xef,0x59,0x45,0x07,0xe7,0xa0,0x29,0xc1,0x12, +0x26,0xb7,0x28,0xfb,0x62,0xea,0x45,0x0e,0xa6,0x31,0x35,0x69, +0xe9,0x35,0x4a,0xa3,0xac,0x55,0xaa,0x9c,0x74,0xeb,0xc0,0x91, +0xe3,0x09,0x45,0x4a,0xdf,0x98,0x2d,0x62,0x3d,0x12,0x03,0x73, +0xa2,0x64,0x6e,0xfb,0xb5,0xb5,0x36,0x18,0x15,0x59,0xf3,0x25, +0x39,0x25,0xf9,0xc5,0x17,0xca,0x1d,0x6b,0xdc,0x9a,0xbc,0x0e, +0xb9,0xef,0xf2,0xdd,0x1a,0xe8,0x32,0xec,0x30,0xec,0xd8,0xee, +0xe8,0xc3,0xe7,0xfb,0xe4,0x79,0xe5,0x7a,0x69,0x47,0x6b,0x1d, +0xdf,0x7b,0xa2,0xb0,0x2b,0x7f,0x30,0xb3,0x97,0x83,0x23,0x9d, +0xe2,0x5c,0x33,0x98,0xce,0x04,0x1b,0x1c,0x33,0x38,0x62,0x20, +0x3d,0x7f,0x30,0xe0,0x2c,0x4d,0x4f,0x60,0x92,0x61,0x72,0x26, +0x4c,0xca,0x4b,0x0d,0x4a,0x0d,0x4a,0x09,0x2a,0xce,0xe3,0x33, +0xdc,0x9f,0xe5,0x7f,0x5d,0xf1,0xa0,0x59,0xe1,0xa6,0xe3,0x03, +0xf7,0xaf,0x7c,0xf2,0xba,0xf8,0xed,0xf9,0x7b,0x8a,0x75,0xca, +0x87,0xeb,0x3b,0x3a,0x2e,0x0d,0x70,0xa2,0x1c,0x54,0x92,0x50, +0x43,0xaf,0x43,0xae,0x56,0x4d,0x3e,0x7c,0x4d,0x77,0xd9,0xed, +0xcc,0x7e,0x0e,0xd2,0xa2,0x49,0x99,0x4d,0xa5,0x76,0x91,0x4e, +0x73,0x3e,0xef,0x37,0xe8,0x72,0xd9,0xb3,0x89,0x1b,0xaf,0xdc, +0x4f,0xfe,0x68,0x9d,0xcb,0x80,0x9d,0x25,0x81,0x49,0x6d,0xb4, +0x0b,0x80,0x0f,0x70,0x3b,0x6d,0x04,0x7f,0x31,0x67,0xc7,0xe2, +0x95,0x89,0x8f,0x83,0x9d,0x8b,0x89,0xbb,0x59,0xb9,0x6d,0xf5, +0xe1,0x7a,0x9a,0xde,0xc6,0xc2,0x17,0xb4,0xd1,0xde,0xf4,0x14, +0x76,0xb7,0xe3,0xee,0xdb,0xba,0xbb,0x71,0x87,0x05,0xec,0xd8, +0x88,0x6b,0x2d,0x61,0xed,0x3a,0xdc,0x67,0x2e,0xa8,0x77,0xa0, +0xf6,0x97,0x2c,0x0c,0xc2,0x12,0x7a,0xb4,0x04,0x98,0x91,0xf3, +0xaf,0x52,0xaf,0x56,0x7e,0xb9,0x37,0xbe,0x17,0x8c,0xef,0xc7, +0x84,0x6b,0xf8,0x6d,0xf3,0x34,0x6c,0x77,0xe5,0x4b,0x07,0x0b, +0x6f,0xa7,0x5d,0xe5,0xe0,0x4c,0x28,0xb9,0x68,0x52,0x74,0x30, +0xcb,0xb0,0x33,0x9f,0x0f,0xe9,0xf5,0xbd,0xec,0xd3,0xc1,0xe1, +0xbb,0xa8,0x41,0x62,0x3a,0x22,0xfa,0xc2,0x9b,0x4c,0xa3,0xf8, +0x74,0xeb,0x64,0xa3,0x78,0x73,0x0e,0x1c,0xf0,0x10,0x81,0xf5, +0xe2,0x7c,0x13,0x58,0x8b,0x93,0xd1,0xc2,0x14,0x2c,0x90,0x45, +0x55,0x53,0x50,0xc5,0x35,0x38,0x5d,0xba,0x29,0xff,0x7b,0xa6, +0x25,0x37,0xbf,0x59,0x09,0x54,0xe0,0x23,0xfd,0x1e,0xf0,0x6b, +0xed,0x62,0x97,0xc0,0x64,0xe9,0x1b,0xdd,0x59,0x30,0x99,0x15, +0xbf,0x16,0x69,0xf7,0x1e,0x08,0x09,0xb8,0x71,0x21,0x9b,0x6e, +0x28,0xf7,0x88,0x69,0xcd,0x96,0xee,0x71,0xff,0x18,0xc7,0x45, +0x07,0x16,0x56,0x40,0x39,0x51,0x86,0xd9,0x3f,0x32,0x9d,0x38, +0x9b,0xc0,0xec,0x5f,0x29,0x93,0xc2,0xcb,0x59,0xc0,0xc2,0x2c, +0x64,0x69,0x32,0xe7,0x09,0x4f,0x49,0xbd,0xb0,0xad,0x53,0xdc, +0x36,0x02,0xe3,0x9d,0x38,0xde,0x79,0xc8,0x0c,0xdd,0xd8,0x9c, +0x0a,0x93,0x0b,0x3e,0x66,0x2e,0x76,0xfa,0xf6,0x0a,0x75,0xae, +0x72,0x9b,0xcc,0x84,0x95,0x0e,0x0c,0xde,0x7a,0x41,0x8a,0x73, +0x0a,0xf2,0x72,0x0b,0x39,0x38,0xaf,0xcd,0x08,0x0b,0xa4,0x5b, +0x6f,0xd5,0xc6,0x1d,0x51,0x8d,0x1d,0x5b,0x4c,0x99,0x7f,0xbf, +0xf8,0xed,0x35,0x16,0x17,0x53,0x5f,0x8c,0xe1,0xda,0x1e,0x6c, +0x37,0x81,0x76,0x96,0xf2,0x6f,0xf0,0xa9,0xd0,0x05,0xa1,0x8b, +0xa3,0x71,0xfa,0x89,0x24,0x23,0xfe,0x87,0xa4,0x9f,0x52,0x9f, +0xa5,0x3b,0x3b,0xef,0xf2,0xc1,0x8f,0x8e,0x48,0x0b,0x6a,0x7e, +0xd2,0x7e,0xe7,0x1e,0xf0,0x8a,0xe0,0xa6,0x63,0xc9,0x42,0x3c, +0x26,0x90,0xfb,0x30,0xd4,0x8d,0x43,0xb7,0x68,0xab,0x8f,0x0f, +0xda,0xb4,0x45,0xab,0x91,0x5f,0xe0,0x79,0x2f,0x2b,0xff,0xe7, +0x8c,0x38,0xda,0x6f,0x31,0xc6,0x11,0x69,0xc3,0x4a,0x60,0x0d, +0x1a,0x50,0x8f,0x8e,0x6c,0x5e,0x55,0x76,0x6d,0x66,0x1d,0x47, +0xc9,0x1b,0xf7,0x9d,0x5d,0x16,0xb3,0x5e,0xa6,0x7d,0x2a,0x32, +0xc0,0x76,0xf6,0x21,0xe9,0xaf,0x52,0xfb,0x99,0x9b,0x15,0x65, +0xdf,0x25,0x29,0x25,0xfe,0x70,0xee,0x17,0x08,0x54,0xc4,0x5c, +0x26,0xb9,0x2c,0xa9,0x2c,0xb1,0xc2,0x20,0x93,0x3f,0x82,0x6f, +0xdb,0xcd,0xdf,0xbf,0x8e,0xfb,0x03,0xed,0xd8,0xd4,0xaa,0x94, +0xca,0xe4,0x2a,0x0e,0xac,0xfa,0x45,0x7f,0x03,0xf0,0x61,0xa2, +0x5d,0xa3,0xdc,0x22,0x5d,0x39,0xdc,0x30,0x6e,0x37,0x70,0x5d, +0x60,0x84,0x2a,0xa6,0xd9,0x36,0x35,0x2b,0x35,0x2b,0x25,0x4b, +0x41,0x74,0x64,0x97,0xe6,0xfb,0xfc,0x20,0x83,0xfd,0x4c,0x67, +0x4e,0x6e,0x87,0x12,0x4c,0x65,0x0d,0xb2,0xe5,0xc6,0x3f,0x11, +0xf4,0xc8,0x0d,0xb1,0x7e,0x2f,0x03,0xd3,0x84,0x85,0x04,0x16, +0x7c,0x8e,0x0b,0xd8,0x0e,0x71,0x21,0x11,0xea,0xef,0x88,0xf5, +0x2c,0xf4,0x0b,0x8e,0x04,0xf7,0xe1,0x34,0xd8,0xc7,0x8a,0x1f, +0x60,0x0a,0x81,0xf9,0x9f,0xe3,0x7c,0xe9,0xfb,0xa7,0x55,0xdb, +0x60,0x15,0xf5,0x6b,0xf6,0x39,0x62,0xc5,0xf8,0x45,0xc7,0x15, +0x2b,0x81,0xe9,0x17,0xc2,0x5d,0xfc,0x55,0xbc,0xfb,0x8c,0x8d, +0xc6,0xa9,0x66,0x9b,0x71,0xe6,0xfe,0x52,0x1b,0x1e,0x94,0x6e, +0x0d,0xfc,0x96,0x02,0x1f,0x72,0xd7,0xd0,0x98,0xd9,0x57,0x10, +0xd0,0x25,0x1b,0x62,0xea,0xb3,0x32,0xda,0x94,0xe0,0x03,0xd6, +0x34,0x47,0x4e,0x14,0x84,0x70,0xf2,0xb7,0x13,0xa6,0xfd,0xa2, +0xbb,0x01,0xb8,0x53,0x27,0xa2,0x27,0x9c,0x58,0x3b,0x6e,0xd7, +0x7f,0x1d,0xc6,0xc7,0x64,0x0c,0x8c,0xff,0x2e,0xad,0x9c,0x15, +0x49,0x69,0x55,0x0c,0x41,0x55,0x72,0x4d,0xac,0xdf,0xcf,0x00, +0x3b,0x61,0xf0,0xbd,0x7f,0x0c,0xbe,0x45,0x0d,0x16,0x54,0x85, +0x52,0xe9,0x11,0x67,0x91,0xd2,0x8a,0x34,0x91,0x34,0x59,0xf0, +0x7d,0xba,0xff,0x3e,0x2b,0x72,0x52,0x3b,0x32,0xff,0xde,0x1b, +0xe3,0x77,0x48,0xc6,0xc3,0xe6,0xb1,0x74,0x32,0x96,0xdd,0x36, +0x7e,0x1f,0x97,0x32,0xa8,0x12,0xa0,0x62,0xae,0x2e,0xeb,0xb2, +0x94,0x1b,0xfe,0x31,0x17,0xde,0x86,0x15,0x8a,0x63,0x89,0x49, +0x24,0xf0,0xa2,0x77,0xc9,0xd1,0x5c,0x67,0x6f,0xfe,0xe2,0xd1, +0xa2,0x23,0xb9,0x3e,0xdc,0xf8,0x52,0x43,0x02,0xb7,0x61,0x25, +0xde,0x66,0x84,0x0f,0x45,0x55,0xf2,0xcd,0xe7,0xcd,0x7d,0x09, +0xcf,0xb8,0x44,0x26,0x51,0xb5,0xd3,0xe0,0xe7,0x2d,0x15,0xcd, +0xfc,0x8a,0x5b,0x07,0x87,0x23,0x9f,0x73,0xb0,0xbc,0x15,0x57, +0xc0,0x5b,0xc6,0xf8,0x16,0x2a,0x59,0x81,0x8c,0x89,0x5e,0x6f, +0xa0,0xbb,0x6e,0x2f,0x87,0xdd,0x70,0x85,0x5c,0x04,0x0f,0x5f, +0x16,0x3d,0x74,0x48,0x09,0x78,0x78,0xb3,0xbb,0xb1,0x81,0xbc, +0x60,0x1a,0x93,0x32,0x4a,0x95,0x60,0x3f,0x02,0x06,0x77,0xdf, +0x85,0x38,0xb7,0x25,0xec,0x4f,0xb0,0x96,0x78,0x61,0xdc,0x25, +0x56,0x7b,0x2a,0xc4,0x79,0x48,0x4f,0xa8,0xb1,0xa5,0xd8,0x3c, +0x1e,0x1a,0x15,0x16,0x1e,0xc2,0xe1,0x97,0xd8,0x30,0x5c,0x3e, +0xb6,0xc6,0x7d,0x04,0x1a,0x44,0x45,0x26,0x75,0xe2,0x8a,0x3e, +0x27,0xac,0x69,0xfd,0xeb,0x7d,0x2b,0x06,0x32,0x36,0x12,0xdc, +0x8d,0x2a,0xb0,0x9b,0x05,0x7b,0x77,0x52,0x0e,0x27,0xdd,0xd9, +0x01,0xa4,0x73,0xb5,0x1b,0xd4,0x70,0x37,0x2b,0x3a,0xdc,0x23, +0x15,0x70,0xf2,0x30,0xeb,0x3c,0xd5,0x19,0x4f,0xd6,0xd0,0x24, +0x0a,0x93,0xfe,0x38,0x46,0xe7,0x6b,0x58,0x07,0x31,0xb8,0xee, +0x29,0x2d,0x60,0x4b,0x1e,0xf7,0x6e,0x7a,0xa0,0xbb,0x15,0x37, +0xd2,0xcd,0x16,0xa3,0x87,0xb8,0x04,0x26,0x6d,0x44,0x55,0x8c, +0x01,0xd5,0xd5,0x68,0x6a,0x08,0xa6,0xb8,0x66,0x14,0xd6,0x80, +0x0e,0x03,0x16,0x63,0xd1,0xe4,0x10,0x1a,0xe0,0x3c,0x5d,0x98, +0xcb,0xc4,0x60,0xa7,0x36,0x6e,0xc5,0xb9,0xb8,0xb0,0x99,0xaa, +0xfe,0x55,0xb0,0xee,0x0a,0x98,0x26,0x00,0xa5,0xb6,0x1d,0x0c, +0x46,0x9c,0x40,0xb5,0xb0,0x05,0xb2,0x03,0xc7,0x43,0x83,0xb5, +0x67,0xcf,0x65,0xb2,0xb5,0xe5,0x7e,0x67,0xbe,0x2c,0xab,0x7d, +0x96,0xaa,0x94,0x05,0xd3,0x12,0xe8,0x9b,0x87,0x15,0x31,0x9c, +0xc1,0x2f,0x87,0xc8,0x4a,0xdc,0xf8,0x2d,0xdb,0x25,0x09,0xa8, +0x39,0x0b,0xa9,0x68,0x06,0x2a,0xce,0x08,0xcc,0xf9,0x0d,0xe7, +0x50,0x43,0x5d,0x24,0x43,0xf7,0xbc,0x80,0xe5,0xd4,0xd0,0xe5, +0xcf,0x7e,0x87,0xc5,0x57,0x7b,0xb5,0xee,0xeb,0xa9,0xe3,0x8a, +0xfb,0xfa,0xea,0x1a,0x46,0x9f,0xe1,0xe2,0x9f,0xd7,0xe3,0x32, +0x6a,0xe6,0xb2,0x35,0x78,0xc8,0x88,0x96,0xfd,0xb5,0xc3,0xb0, +0x16,0xf6,0x30,0x50,0xfc,0x3d,0xf9,0x17,0xcc,0xbf,0x0c,0x9a, +0x79,0x10,0xc1,0xb5,0x8b,0xdb,0xf4,0x60,0x9c,0x0d,0x42,0x07, +0x13,0x5c,0xb3,0x0e,0x3f,0x50,0x87,0xe9,0x66,0xb0,0xc8,0x03, +0xb4,0xf5,0x02,0xf9,0x0a,0x34,0x1f,0xc0,0xd5,0x5f,0x22,0x39, +0xb4,0x5d,0xe3,0xc0,0x6a,0xbd,0xca,0x43,0xfc,0x8b,0x91,0xfb, +0xd7,0xaf,0xde,0x1f,0xd6,0xb8,0xbb,0xff,0x4b,0x9d,0xca,0x21, +0x7e,0xfd,0xe0,0xee,0x2b,0xfa,0x77,0x39,0x51,0x59,0xc8,0x26, +0x2b,0x70,0xc5,0x4b,0x56,0xd8,0xb2,0x8b,0xd4,0x59,0x75,0x6b, +0x54,0x6b,0x35,0xd5,0xf2,0x2e,0x57,0x4d,0xee,0xda,0xd3,0xd6, +0x6d,0x3d,0x9e,0xa3,0xe6,0x2f,0x93,0xcc,0x5f,0x3e,0x61,0xfe, +0xf7,0x13,0xe6,0x9b,0x82,0x12,0xc1,0xed,0xcf,0xa9,0x7a,0x8d, +0xc1,0xb9,0xcf,0x7e,0x80,0x25,0xd7,0x7a,0xf6,0xdf,0x37,0x50, +0x47,0x25,0x6a,0xbe,0xa6,0xf1,0x2d,0x5c,0xf2,0xdd,0x7a,0x3a, +0x7b,0x31,0x30,0x77,0x2d,0x6a,0x18,0x82,0x06,0xae,0x1d,0xa2, +0xe6,0x6f,0x67,0x84,0xec,0x5c,0xe2,0x93,0xe3,0x93,0xeb,0x9b, +0xcf,0x65,0xc0,0x8a,0x64,0x1a,0xc6,0xb5,0x8a,0xb0,0x50,0xdc, +0xaf,0x0f,0x32,0x03,0x76,0xeb,0xe9,0xdd,0xc7,0x0f,0xc8,0x1c, +0x7b,0x5d,0xfb,0x0f,0x0f,0x99,0xb9,0xf1,0x4d,0x1a,0x1d,0x3b, +0x7a,0xf6,0x78,0xe0,0xea,0x83,0x38,0x03,0xdf,0x46,0xf9,0x06, +0xda,0x06,0x31,0x30,0xe3,0x3a,0xbc,0x5b,0x05,0xca,0xc3,0xbb, +0xaf,0x68,0x5d,0x33,0xe0,0x4e,0x9c,0x3d,0x71,0x36,0x46,0xa6, +0x1a,0xed,0x17,0xb0,0x7b,0xf6,0x7c,0x26,0x47,0x47,0xee,0x47, +0xe6,0x65,0x5d,0xf5,0x1f,0x59,0x4a,0xb9,0x61,0x39,0xe1,0xb9, +0xd2,0xcd,0x51,0xf0,0x07,0x49,0x7f,0x9a,0xf0,0xcd,0xaf,0x8a, +0x7d,0xb0,0x7f,0x0d,0x8b,0x8b,0x62,0x70,0x6d,0x04,0xce,0x96, +0x69,0x0d,0x68,0x5f,0x35,0xb8,0xcd,0xe1,0x33,0xe8,0xa3,0x2d, +0xb6,0xd2,0x77,0x6c,0xbd,0x14,0x26,0xd9,0x7a,0x90,0xb1,0x30, +0x4f,0xba,0x51,0x42,0xf6,0x25,0xca,0x68,0x5e,0x5d,0x1b,0xbb, +0x47,0x24,0xaf,0x0c,0xfe,0x67,0xaf,0x06,0xa9,0x57,0xeb,0xfb, +0x70,0xfd,0x7f,0x9a,0x88,0xbb,0x3d,0x3b,0xef,0xb3,0xf0,0x8b, +0x07,0xc1,0x00,0x43,0xd8,0x8e,0x8a,0x68,0x3e,0xae,0x39,0x30, +0x36,0x13,0xe6,0x31,0xa7,0x70,0x3a,0x6d,0xe7,0x56,0xe0,0xb4, +0x2a,0x3d,0xfe,0x19,0xbc,0x5d,0xf5,0x6d,0x3c,0xc8,0x4b,0x7f, +0xd4,0x81,0x5c,0xc5,0xba,0x67,0xf8,0x5e,0x65,0x3f,0xbf,0x12, +0xde,0x73,0x81,0x29,0xa7,0xe0,0x6d,0x0e,0x16,0x88,0x3d,0xa8, +0x3c,0x71,0x47,0xd1,0xbb,0x4c,0x4b,0x4e,0x6e,0x8b,0x92,0xf0, +0x0b,0x5a,0xb2,0x62,0x63,0x0c,0xf9,0x0e,0x94,0x96,0xb3,0xca, +0xa8,0x47,0xcd,0xdd,0x20,0x99,0x3b,0xf7,0x3f,0xcc,0xfd,0x73, +0xb1,0x30,0x89,0xc0,0x28,0xee,0x86,0xf5,0x7a,0xb8,0x1e,0x37, +0xe3,0xa8,0x8e,0x21,0x78,0xb3,0xc7,0x90,0xdf,0xbb,0x0a,0x17, +0xcc,0x2b,0xd7,0xe7,0x61,0x09,0x4c,0x7d,0x04,0x53,0xe3,0x41, +0x46,0xcf,0x9c,0x82,0xe4,0x2e,0x72,0x54,0xf3,0xbc,0x5d,0xd3, +0xcf,0x53,0x62,0x9c,0xb2,0xfb,0xb9,0x3f,0xf0,0x1c,0xb8,0xf7, +0x31,0x62,0x2c,0x1e,0xa3,0xd2,0xf2,0x05,0x2d,0x74,0x31,0xa8, +0xf2,0xec,0x57,0x58,0xfc,0x59,0xaf,0x86,0x84,0x4f,0x15,0x1a, +0xe0,0x1d,0x46,0xf7,0x70,0xf1,0x4f,0xeb,0x51,0x59,0x5a,0x0c, +0x61,0x0d,0xee,0x37,0xa2,0xd9,0x3e,0x81,0xcf,0x9d,0x0c,0x7e, +0x28,0x8c,0x53,0x34,0xa9,0x50,0x34,0xcd,0x51,0x23,0x30,0x05, +0x1d,0x99,0x90,0x4f,0x42,0xcf,0x86,0xca,0x70,0x32,0x03,0x5b, +0x21,0x91,0xc0,0x0c,0x4c,0xc4,0x69,0xcc,0xd9,0xcc,0xb3,0x99, +0x59,0x8a,0x62,0x5a,0x22,0x05,0xd7,0x4a,0x09,0x5c,0x2a,0x13, +0xe0,0x7a,0x39,0x01,0x2e,0x5b,0x29,0x37,0x76,0xbc,0x80,0x65, +0xf4,0xdc,0xcb,0x9e,0xfd,0x06,0x8b,0xef,0xf7,0xaa,0x4b,0x37, +0x22,0xad,0xa0,0x06,0x6c,0x37,0xfa,0x14,0x17,0xff,0xf2,0x3f, +0xe4,0xc6,0x0e,0x66,0x68,0xcc,0x85,0x8c,0xb3,0x02,0x3f,0xc6, +0x4a,0x8b,0x66,0x97,0x10,0xf0,0x90,0x9e,0x0b,0xc4,0xd2,0x66, +0x52,0xfd,0x0d,0xc0,0x17,0x8a,0xf6,0x84,0x2a,0xfc,0x4c,0x69, +0x7d,0x36,0x84,0x3d,0xff,0x0e,0xec,0x57,0xf4,0xdc,0x37,0xf0, +0x01,0x11,0xce,0x8f,0x88,0xe7,0x19,0xf9,0xb1,0x0a,0x90,0x27, +0x23,0x4f,0x9b,0xfe,0x55,0x44,0xa3,0xd4,0x86,0x5b,0xc0,0x10, +0x3e,0x66,0x4f,0xd8,0x04,0x9b,0x06,0x3a,0x76,0x86,0xf0,0xf9, +0x5d,0xb9,0x7d,0x49,0xbd,0x5c,0x3b,0xea,0xc3,0x64,0x3d,0x5a, +0xfe,0x0d,0x31,0x83,0xc5,0xe0,0x00,0x5c,0x6e,0x88,0x8c,0xac, +0xdb,0xa1,0x1f,0x3e,0x28,0x00,0xc5,0x58,0x08,0x54,0x80,0x76, +0x26,0x70,0xb5,0xdb,0x46,0x93,0x9d,0x16,0xd7,0xdc,0xee,0xf9, +0x3e,0x34,0xf3,0xe7,0x2f,0xad,0xad,0xdd,0xd4,0xb7,0xc3,0xc2, +0x50,0xc7,0x62,0x87,0x43,0xa5,0x31,0x7f,0xa7,0x61,0xb4,0xa3, +0x7b,0xa8,0xcd,0x68,0xd0,0xec,0x8e,0x4d,0x59,0x2f,0xaf,0xd9, +0x60,0xd0,0x66,0xd5,0xcd,0xe1,0x77,0x59,0x04,0xd5,0x5f,0x80, +0x32,0x9d,0x02,0xe5,0x67,0xbf,0xbc,0x9e,0x7e,0x7d,0x69,0xfa, +0xf5,0xd4,0x77,0x1a,0xdd,0xc5,0xc5,0xff,0xfa,0x1f,0xa6,0x5f, +0x9d,0xc1,0x77,0xfe,0x99,0xfe,0x5c,0xf4,0xa7,0xfe,0x51,0xab, +0xe7,0x30,0xa2,0x2f,0xc6,0xfd,0x3d,0xcf,0xca,0xff,0x69,0x9e, +0xcd,0x61,0x0e,0x3d,0xc9,0xd7,0x94,0x83,0x4e,0x4d,0x70,0x90, +0x0a,0x9d,0xe7,0x07,0x7a,0x5b,0x71,0xc5,0x03,0xfd,0xad,0x12, +0x07,0xa9,0x4c,0x70,0xd0,0x29,0x58,0xb6,0x1a,0x0f,0x19,0xd2, +0x79,0x5e,0x37,0x4c,0x79,0x55,0x9d,0x11,0x82,0xe0,0x11,0xe9, +0x47,0x67,0xd8,0x01,0x7e,0x03,0xe8,0x07,0xf3,0x74,0x70,0x1e, +0x1a,0xeb,0x83,0x31,0xee,0x40,0x43,0x03,0x4a,0xd5,0x3e,0x48, +0xb6,0xd1,0x8c,0x9d,0x3a,0xbf,0xda,0x9c,0xa7,0x14,0x3c,0xe5, +0xca,0x2f,0x99,0x30,0x83,0x4b,0x14,0x37,0x0e,0x0a,0x1b,0x13, +0x99,0x4c,0x9c,0x79,0x65,0x11,0x70,0xf8,0x56,0x55,0x27,0x8f, +0xac,0x74,0x03,0x06,0xeb,0x45,0xab,0xaa,0xb8,0x1a,0x3a,0xc8, +0x32,0x5c,0xf1,0x8a,0x6d,0xc3,0x7a,0x82,0x4a,0xcb,0xa4,0x15, +0x4e,0x69,0x6a,0x12,0x50,0xfa,0x5e,0xba,0xd9,0x47,0xd8,0x2b, +0x3d,0x4d,0xe4,0xd4,0x04,0x20,0x54,0x46,0x7b,0x0f,0x51,0x1b, +0x71,0x39,0xb5,0x56,0x02,0x84,0x64,0xe8,0x52,0x6a,0xe8,0xd2, +0xd5,0x78,0xd0,0x90,0xb6,0xa9,0x13,0x86,0x6e,0xef,0xc3,0xed, +0x5f,0xb3,0x63,0x6b,0x85,0xeb,0x44,0x3c,0xa2,0x0f,0x56,0x74, +0xbe,0xb4,0xc7,0x57,0x0e,0x0a,0xbf,0xc3,0x87,0xcc,0x19,0xdc, +0xe0,0xb4,0x57,0x15,0xdf,0xaa,0xb3,0xe0,0xbb,0x46,0x1a,0xae, +0x17,0xf4,0xc5,0xa5,0x26,0x9c,0x8d,0x3f,0x0e,0x53,0x71,0x1f, +0xdf,0x58,0x8f,0x93,0x61,0xcf,0xf1,0xb4,0xa8,0xb8,0x88,0x48, +0x85,0xb0,0xf0,0x53,0xb1,0xa9,0x8d,0xc9,0xbd,0xe7,0x3e,0x55, +0x80,0x8f,0xc5,0x72,0xe4,0xa5,0x45,0xe9,0x41,0xee,0xf5,0x73, +0x36,0x84,0x87,0x68,0x4a,0x23,0xe4,0xcd,0x8e,0x4f,0x71,0xa5, +0xa6,0x2f,0x7f,0xc5,0xb6,0x4e,0x98,0xbe,0x5c,0x32,0x7d,0xd9, +0x84,0xe9,0xaf,0x24,0xd3,0xc7,0x82,0x85,0x28,0x42,0x0b,0x83, +0x4e,0x2f,0xea,0x4c,0x3c,0x1e,0x09,0x35,0x8d,0x40,0x13,0x57, +0xa1,0x8d,0xa1,0xe0,0xd5,0xc7,0x8a,0xc7,0x70,0x6c,0xa2,0x68, +0x2d,0xa5,0xee,0x2d,0x95,0xdc,0xfb,0xbc,0x77,0x9b,0x14,0x87, +0x65,0xd4,0xc7,0x09,0xf7,0x68,0xb0,0x55,0xa8,0x7b,0x2a,0xab, +0xf1,0x80,0x21,0x1c,0x78,0xed,0x9e,0x0e,0x83,0x73,0xc7,0xa6, +0xd2,0xd3,0x2e,0xfb,0xfb,0xb4,0x2b,0xa4,0xd3,0x2e,0xfd,0xe7, +0xb4,0xc2,0xe4,0x0d,0x04,0xcc,0xfb,0xd1,0x1c,0xe6,0x6a,0x53, +0xd6,0xd2,0x36,0x00,0x6d,0x3c,0x80,0xae,0x06,0x42,0x44,0x3f, +0x7a,0x31,0xf2,0x82,0x2e,0x95,0x17,0x2f,0xae,0xe7,0xb7,0xc3, +0xdb,0x8a,0x60,0x8e,0xb3,0x19,0xfd,0x8b,0x41,0xdd,0xb2,0x5e, +0xa6,0x29,0x33,0xaf,0x5a,0xe9,0x31,0x6b,0x9a,0x2d,0x37,0xcf, +0x8c,0xf5,0x8f,0x4a,0xbc,0x20,0xad,0xad,0x7d,0x99,0xc5,0xe5, +0xa7,0xfd,0x57,0x1f,0x90,0xe1,0xf7,0xfe,0x04,0xe4,0xd3,0x60, +0x7e,0xde,0x1f,0x25,0x27,0x9b,0x79,0x9b,0x68,0xb3,0x68,0xe3, +0xe3,0x94,0x42,0x60,0x51,0x07,0xd2,0x33,0xad,0x46,0x9e,0x35, +0x38,0xa1,0x17,0xa3,0x1f,0xc3,0x09,0x85,0x0f,0x48,0xbd,0x77, +0xa5,0x47,0xa5,0x63,0x63,0x25,0x7f,0xb8,0xc6,0xb1,0xda,0xe1, +0x22,0xb7,0x72,0xfc,0x63,0xd2,0x0f,0x5f,0xc2,0x16,0xfc,0xb2, +0x07,0x3c,0xff,0x05,0xa6,0x5d,0x68,0xda,0xaf,0x63,0x80,0xe3, +0xd2,0xc6,0xc4,0x14,0x4c,0x16,0x83,0xb5,0x31,0xde,0xa6,0xc9, +0x76,0xdb,0x40,0x54,0x35,0x16,0x54,0x57,0x8f,0x7e,0x2d,0xec, +0xea,0x61,0xb1,0x58,0x98,0x49,0x8c,0x70,0xbc,0x97,0xa5,0x9d, +0xa2,0x35,0x81,0xe4,0xdd,0x98,0xcc,0x08,0x5f,0xce,0xc2,0xa2, +0xdb,0x50,0x44,0x5d,0xb1,0x7a,0x0d,0x8d,0x75,0xcf,0x28,0xda, +0x54,0x68,0xc1,0x7f,0xa8,0xb7,0x05,0xd5,0xe8,0x46,0x2a,0xf8, +0x2a,0x30,0x69,0x3d,0x2d,0xf8,0xa7,0x26,0x0a,0xbe,0x01,0x2d, +0xf8,0xaa,0x23,0xa0,0x0a,0x16,0xfd,0x68,0xf1,0x35,0x2b,0x6c, +0x16,0xf6,0x10,0xb0,0xe9,0x47,0x1b,0x90,0xd7,0x91,0xce,0xab, +0x27,0xd8,0x0f,0x62,0x04,0x43,0xdb,0x9a,0x83,0x74,0x66,0xd5, +0x5e,0xb1,0xdd,0x54,0xd2,0xa0,0x6c,0xa1,0xc4,0xb3,0xeb,0x26, +0x78,0xf6,0x57,0xca,0xb3,0x90,0x7e,0x89,0x88,0x1f,0x0d,0xc3, +0x71,0x36,0x3d,0xfe,0x7c,0xea,0x71,0x19,0x6d,0x0f,0x66,0x56, +0xb7,0xe2,0x5a,0x98,0x16,0x92,0x16,0x75,0x2e,0x22,0x8c,0xb6, +0xec,0x72,0x31,0x30,0x05,0x22,0x06,0x44,0x7b,0x7d,0xca,0x24, +0xad,0x02,0x92,0x9e,0xba,0x9e,0x8e,0xc6,0x2e,0x87,0x6a,0xde, +0xcd,0xda,0xd4,0xc2,0xcc,0x99,0x3b,0xd6,0x18,0xd5,0x58,0xaf, +0xd8,0x67,0x24,0x2a,0x2d,0x96,0x16,0x83,0xfa,0xfc,0x75,0xab, +0x00,0xa6,0x89,0x6c,0xea,0xce,0x2e,0x0d,0x98,0xa1,0x5a,0xde, +0xca,0xef,0xe8,0x31,0xee,0x76,0xe9,0xe6,0xc4,0x0f,0x44,0x5e, +0x72,0x6f,0xfe,0xb3,0x1f,0x41,0xe5,0x4a,0xef,0x81,0x07,0x06, +0x5b,0x71,0x1e,0x85,0xc6,0x6e,0xa3,0xdb,0xa8,0xf2,0x6a,0x3d, +0x4d,0xbe,0x53,0x30,0x6f,0x35,0xee,0x30,0x84,0x1d,0xb8,0x6e, +0x88,0x42,0x43,0xbb,0x0f,0xb5,0xa9,0x73,0xf2,0x42,0x3c,0x41, +0x5d,0x53,0x50,0x60,0x82,0xb6,0xda,0xa9,0xab,0xed,0xaa,0xb1, +0xe5,0xbf,0xf9,0xa2,0xeb,0x65,0xce,0x2f,0x1c,0x7e,0x95,0x4a, +0xdd,0x9b,0xf7,0x8a,0x6d,0x90,0x80,0x33,0x57,0x15,0xe6,0xb2, +0xb0,0x00,0xe7,0x12,0x98,0xfb,0x15,0xd2,0x5d,0x6b,0x8a,0xc7, +0x2e,0xa8,0x31,0x1d,0x14,0xb6,0x89,0x0b,0xc5,0x6d,0x2c,0x7c, +0x27,0x4c,0x23,0x38,0x09,0x6b,0x60,0x12,0x0b,0x35,0xd2,0x73, +0x31,0xdf,0xa2,0xfb,0x6f,0xd1,0x9c,0x5c,0x09,0x81,0xe4,0x3f, +0x17,0xbe,0xff,0x4d,0x01,0x48,0x77,0x37,0x3d,0x67,0xa9,0xec, +0xdc,0x41,0x32,0x2e,0xa4,0x5d,0x4c,0x2d,0xe6,0xe0,0x12,0xdc, +0x17,0xb7,0xe2,0xfd,0xe7,0x8c,0xcb,0x46,0xbd,0x1d,0x3a,0x16, +0xe5,0x96,0x7c,0x4a,0x52,0x4a,0x72,0x4a,0x32,0x87,0x9d,0x7d, +0xc3,0xf0,0x49,0x37,0x7e,0x02,0x76,0xae,0x6c,0x41,0x61,0xfe, +0xc5,0xdc,0x4b,0x1c,0x5c,0x67,0x50,0xee,0xd4,0xdc,0xe8,0x9d, +0x32,0x83,0xe3,0x91,0x91,0xe6,0xb3,0x37,0x33,0x19,0x86,0x72, +0x9f,0x31,0xf7,0x2f,0x96,0x3c,0x4f,0x55,0x4a,0x7e,0x18,0x07, +0x6f,0x9d,0x03,0x55,0x4e,0x0d,0x7e,0x23,0xeb,0xf1,0xca,0x33, +0x16,0x7d,0x4d,0x5f,0x57,0xf7,0x31,0xd5,0x8d,0x64,0x0d,0x5e, +0x79,0xc1,0xe2,0x5d,0x69,0x71,0xd4,0xff,0x5a,0xe7,0x61,0xb8, +0x86,0x44,0xb2,0x5b,0xfc,0x0f,0xaf,0xb7,0x90,0x5d,0xb4,0xed, +0x28,0x2e,0xbf,0x98,0x5b,0xa4,0x10,0x9f,0x10,0xfb,0x49,0xc2, +0xc9,0x9f,0xd5,0xf8,0xd2,0xba,0xd5,0x77,0xa3,0x92,0x4e,0x9c, +0x8f,0x8a,0x54,0x88,0x8e,0x3a,0x79,0x5e,0x2e,0xed,0x42,0x62, +0x69,0xbb,0x62,0x06,0x75,0xff,0x5b,0x61,0x1d,0x39,0x91,0x19, +0x9d,0x14,0x4e,0xff,0xf1,0xa7,0x7e,0xfc,0xa1,0x57,0x85,0xd2, +0x63,0x6d,0x46,0x6d,0x76,0x45,0x9e,0x47,0x0b,0xbf,0xcf,0x51, +0xd9,0x6d,0x5d,0x60,0xb6,0x19,0x5f,0x91,0x58,0x95,0x5c,0x9d, +0xca,0x51,0x8a,0x7a,0xd7,0x08,0xe4,0xd8,0xc8,0xe5,0xce,0xf8, +0xde,0x06,0xe4,0xf2,0x9d,0x79,0x9c,0xf7,0x1c,0x38,0x3a,0x81, +0xdc,0xb3,0xc7,0xa0,0xdc,0xd3,0x6d,0x7c,0xdf,0x58,0x1d,0x27, +0xdd,0x37,0x52,0xd7,0x33,0x19,0x44,0xe5,0xfb,0xeb,0x51,0x5a, +0x6e,0x88,0x5d,0x8b,0x73,0x8d,0x68,0x95,0x57,0xed,0xa3,0xb8, +0x5d,0xdc,0xc2,0x24,0x85,0xdd,0xfc,0xb1,0xf4,0xdb,0xf8,0xdf, +0x14,0x12,0xc5,0xd0,0x1e,0xc1,0x84,0x49,0x8a,0xff,0xe4,0xfc, +0x49,0xd9,0x67,0xb8,0xb9,0xae,0x41,0x0e,0x56,0x08,0x9f,0x12, +0x43,0xec,0x60,0x30,0xdd,0x1a,0x15,0x50,0x1e,0xd5,0x64,0x35, +0x26,0x54,0x35,0xad,0xaa,0x81,0xa9,0xb1,0xb0,0x5b,0x21,0x81, +0x89,0x45,0xf5,0x52,0x94,0xfb,0x19,0xd7,0x55,0xf7,0xf0,0x38, +0x05,0xb6,0xba,0x80,0x02,0x24,0x29,0x8a,0xd2,0xc2,0x27,0x4b, +0x71,0xd2,0xf7,0xec,0xd8,0x99,0x00,0x72,0x62,0x45,0xd8,0x7c, +0xbf,0x0d,0xed,0x47,0xf9,0xa2,0xaf,0x33,0x7e,0x4d,0xfe,0x89, +0xc3,0x3c,0x9a,0x05,0xf9,0x5f,0xa4,0xfc,0x14,0xf7,0x9d,0x79, +0x1a,0x7f,0x6a,0xe5,0xf1,0x55,0x01,0x5b,0x38,0xf1,0x70,0x32, +0x85,0xce,0x41,0x09,0x3a,0xdc,0x04,0x74,0xae,0x52,0xe8,0x48, +0x2c,0x4d,0x6b,0xca,0xe6,0xaf,0x61,0xfe,0xdf,0x80,0xbd,0xdb, +0xbb,0xf3,0x6f,0xc0,0x6a,0x1a,0xdd,0xfa,0xcf,0x80,0xdd,0x2e, +0xe9,0xa3,0x09,0xc0,0x6e,0x66,0x84,0x7c,0x5a,0xf3,0x7b,0xf0, +0xf4,0x03,0xb6,0xfa,0x5c,0x46,0x66,0xb5,0x22,0x55,0x86,0xef, +0xb0,0x01,0xf6,0x5e,0xd6,0xce,0xce,0xcd,0x9e,0x7c,0x6b,0x7b, +0xf5,0x60,0xc1,0x00,0x57,0x87,0x1a,0x6c,0x44,0x62,0x44,0x52, +0x78,0xd2,0xb5,0xb2,0xd1,0xa6,0x9a,0x46,0xae,0x5e,0x5c,0x6b, +0x06,0x8f,0xd8,0xc3,0x3e,0x56,0x3e,0x66,0x47,0x1d,0x0a,0xec, +0x0b,0x0e,0x67,0x7a,0x39,0xf2,0x4d,0x81,0x1d,0x3e,0x2d,0xbe, +0x1c,0x46,0x9a,0x43,0x20,0x63,0xad,0xaf,0x61,0x89,0xd3,0x2d, +0x8a,0xa4,0x95,0x46,0x86,0x3f,0xed,0xcd,0x7f,0xc8,0x25,0x52, +0x61,0xff,0xb6,0x74,0x8d,0xbc,0x7b,0x2b,0xba,0x1a,0xc3,0x21, +0xc6,0x6d,0xf7,0x5e,0x1d,0x9c,0xa9,0x55,0x4a,0xdf,0xa2,0xf0, +0xd9,0xe8,0x48,0x8e,0x74,0xdb,0x5a,0xe5,0x20,0x54,0x26,0x32, +0xd9,0x2b,0xaf,0x6a,0xc3,0x1c,0x8d,0x4b,0x74,0xaa,0xe4,0xaf, +0xee,0x1d,0x70,0xa6,0x6a,0x79,0xa7,0x10,0x4c,0x27,0x6a,0xde, +0xf7,0x6f,0x52,0x67,0x9d,0xe4,0xff,0xfc,0x7f,0x52,0x47,0x5e, +0xf8,0x55,0x78,0x4c,0x7e,0x04,0x2d,0xe5,0xfe,0x1f,0x41,0xae, +0x1b,0xe5,0x7e,0x34,0x50,0x46,0x2d,0xba,0x59,0x64,0xf2,0xb3, +0x32,0x8b,0xaa,0xe2,0x54,0x29,0x5d,0x14,0x9e,0x7d,0xfb,0x5a, +0x30,0x1b,0xaa,0xe3,0x2c,0x9a,0x33,0xfb,0x8d,0xaf,0xe1,0x92, +0x17,0xeb,0x91,0xa7,0xd1,0xe6,0xd7,0xe2,0x06,0x23,0xd8,0x80, +0xaa,0x83,0x34,0xda,0x9b,0x7b,0x71,0xf3,0x73,0xb6,0x56,0xf0, +0xa2,0x28,0x9e,0xf5,0x1d,0x2b,0x9c,0xd0,0x24,0x5e,0x9b,0xd6, +0xaf,0xc3,0x0f,0xb5,0x8a,0xa8,0x94,0x53,0xba,0xfd,0xe5,0x8b, +0xfc,0x57,0x54,0xc7,0xe5,0xaf,0xf8,0x6a,0x35,0xcc,0xdf,0x7d, +0x61,0x88,0xc7,0x8f,0x46,0xd6,0xbf,0xf0,0x7c,0xc8,0x89,0xf9, +0x78,0x98,0xc2,0x7c,0xab,0x04,0x73,0x85,0x09,0x98,0x3f,0x92, +0x60,0xee,0x31,0x4a,0xa0,0xae,0x07,0xeb,0x98,0x13,0xa2,0x0d, +0xe9,0x81,0x5e,0xe3,0x61,0x78,0x24,0xaa,0xe1,0x23,0x16,0x44, +0xb8,0x44,0x50,0x03,0x7b,0x41,0x83,0x96,0xab,0x2b,0x63,0x9f, +0x11,0xc3,0x4d,0xb8,0xf1,0x31,0xdd,0x2c,0x32,0x81,0x45,0xbb, +0xfa,0xee,0xc0,0x46,0x69,0x23,0xeb,0x46,0x19,0x23,0x9a,0x88, +0x7f,0xd2,0x63,0xff,0x27,0xe0,0x0e,0x75,0xeb,0xfe,0xaf,0xc0, +0x95,0x31,0x38,0x59,0xf8,0xeb,0x35,0xc6,0xa0,0x10,0xcb,0x09, +0x86,0x45,0x23,0xab,0x87,0xef,0xcb,0x3a,0xdd,0xe5,0x46,0x40, +0x31,0x15,0x66,0xc1,0x49,0x45,0xe0,0x04,0xff,0x2e,0xb1,0x82, +0x85,0xf5,0xe3,0xb4,0xc7,0xb5,0xa4,0xc8,0xd2,0xea,0x06,0x2d, +0x98,0x86,0xb3,0x34,0xa5,0x87,0xe1,0x8d,0xd2,0xe4,0x4a,0x6d, +0x50,0x12,0xbc,0xc4,0x79,0x62,0x1d,0x8b,0xbf,0x0a,0xd1,0xff, +0x1d,0x82,0x82,0x72,0x13,0x41,0xee,0x15,0x70,0x4c,0xf7,0x32, +0xf2,0x0a,0xa6,0x2d,0x63,0xb1,0xce,0x82,0x00,0xb7,0x18,0x39, +0xaa,0x40,0xff,0x45,0x60,0xda,0x62,0xaa,0x3f,0xe5,0x85,0x94, +0xb1,0x0f,0x88,0xa9,0x70,0x90,0x56,0xa0,0xbb,0xa0,0xf1,0x7f, +0x11,0xf6,0x1e,0xd0,0x51,0x5c,0xcb,0xba,0x30,0x49,0xdd,0x0d, +0x26,0xda,0x6c,0x68,0x09,0x5b,0x22,0x98,0x9c,0x73,0xce,0x42, +0x20,0x40,0x42,0x39,0xe7,0x9c,0x51,0xce,0x39,0x01,0x32,0x28, +0xe7,0x9c,0x73,0x02,0xe5,0x1c,0x11,0x88,0x8c,0xc8,0x60,0x0c, +0xb6,0xc1,0x38,0x02,0xb6,0x39,0xae,0x96,0xab,0x75,0xdf,0xbf, +0x5b,0xf8,0x9c,0xf7,0xee,0x7d,0xff,0x5a,0x6f,0x69,0x31,0xd3, +0x6b,0x66,0xe8,0xd9,0x55,0xf5,0xd5,0x57,0x5f,0x4d,0xef,0xde, +0xbb,0x0b,0xf7,0x3f,0xd6,0xda,0x87,0xdb,0xf4,0x61,0xdb,0x21, +0x16,0x7f,0x17,0xbf,0x22,0x38,0xff,0x35,0x4c,0x80,0xb3,0x38, +0xe1,0xdb,0xc7,0xb0,0xfa,0x4a,0xcf,0xa9,0xa7,0x3a,0x7b,0x56, +0xd0,0x7f,0x3a,0xba,0xbd,0xb8,0xfa,0xfe,0xd6,0x85,0x78,0xf6, +0xaf,0x8d,0x38,0x4f,0x07,0xe6,0xe1,0xb6,0x7e,0xd8,0x06,0xf3, +0x19,0xd8,0x41,0x95,0xd7,0xe9,0x66,0x9b,0x36,0xdb,0x7a,0x1b, +0x2b,0xbe,0xce,0xba,0xc6,0xac,0xca,0x98,0xc3,0x90,0x76,0xb2, +0x7c,0xc5,0x3b,0x96,0xf6,0xbb,0x3c,0x69,0xb4,0xbe,0x68,0x52, +0xa7,0x5f,0xdf,0xc0,0x3b,0xb6,0x99,0x77,0x59,0xd4,0x71,0x82, +0x8c,0x68,0x49,0x0b,0x74,0x27,0x1a,0x7c,0x0d,0x7b,0x3b,0x71, +0xef,0x53,0x38,0xd9,0x45,0x47,0x96,0x5b,0x91,0x5b,0x97,0x59, +0xab,0x9f,0xcb,0x07,0xd9,0xfa,0x9a,0x79,0x58,0x70,0x78,0x56, +0x1f,0x14,0xf7,0xe0,0x66,0x03,0xd8,0xbc,0x0b,0x4f,0x1a,0x50, +0x75,0xc3,0x0d,0x30,0x78,0x40,0xc8,0x25,0xf9,0x8e,0xd9,0xf6, +0x69,0xae,0xed,0x05,0x7c,0x50,0x85,0x7f,0x95,0x4f,0x05,0x27, +0x5a,0x4a,0xd4,0xbc,0x58,0x13,0x16,0x53,0x55,0x85,0x8b,0x09, +0x2c,0x1e,0xc2,0xc5,0xac,0x20,0x8b,0x25,0x34,0x5c,0x56,0xfd, +0x30,0x53,0xfa,0x05,0x5f,0x5e,0xeb,0xa9,0xb4,0xe7,0xc0,0x14, +0x77,0x9b,0xcd,0x46,0xf2,0xc5,0x2a,0xaf,0xbb,0xf3,0x9b,0x62, +0xbf,0xa7,0xbc,0xb0,0x3a,0xa1,0x59,0x15,0x56,0x2d,0x80,0x36, +0x26,0x79,0x50,0x66,0x26,0xfc,0x29,0xf5,0x77,0x73,0x5f,0xd1, +0x22,0x16,0x85,0x93,0xbe,0x7d,0xf2,0xef,0x18,0x2f,0xa3,0x21, +0xd6,0xd6,0xed,0xc3,0x15,0x0f,0xb7,0xe2,0x24,0x1a,0xe2,0x49, +0x9b,0x50,0x56,0x87,0x22,0x6c,0x4b,0x3f,0xcd,0xe2,0xb9,0x0c, +0xac,0x10,0xfe,0x17,0x71,0xbd,0x68,0xd5,0x64,0x5b,0x65,0x6b, +0xc3,0xd7,0xda,0xd7,0x5a,0x57,0x99,0x73,0xed,0xa5,0xd2,0x6a, +0x1c,0xc7,0xd9,0xa8,0x8f,0xf3,0x8a,0x71,0xbf,0x11,0x2c,0x61, +0x1c,0x0c,0x8d,0xcc,0x95,0x6d,0x4b,0x4d,0xf8,0xe2,0xcc,0x82, +0xac,0xfc,0x2c,0x0e,0xe7,0xb3,0x4a,0xa5,0x7e,0xf7,0xe5,0xe1, +0x38,0x73,0x29,0x27,0xf3,0xa2,0xc2,0xa0,0xb4,0x8e,0xf6,0x3e, +0x3c,0xc5,0x5a,0x44,0xc6,0x5f,0x52,0xa0,0xd8,0xd8,0xac,0xbc, +0x92,0x4d,0x33,0x97,0x79,0xcd,0x54,0xa7,0xa5,0x57,0x2a,0xbc, +0x64,0xcb,0x3d,0x2a,0xbc,0x2b,0xfd,0x4a,0x5b,0x78,0xd5,0x6a, +0xcd,0x26,0xe7,0x16,0x0e,0xe4,0xda,0x31,0x90,0x49,0xca,0x4d, +0xcc,0x93,0x96,0x49,0x35,0x04,0x45,0x94,0xbd,0x0e,0xab,0x3a, +0x44,0x5b,0x43,0x58,0x7c,0x82,0xe9,0x98,0x77,0xfd,0xe9,0x09, +0x56,0x4c,0x4b,0x21,0xab,0x96,0xfd,0xca,0x0a,0x41,0xda,0x64, +0xcb,0xfe,0xef,0x58,0x30,0x9d,0xb7,0x65,0x0f,0x7d,0xfa,0x6c, +0x0b,0xf9,0xee,0xf9,0x16,0x56,0xec,0x8f,0x25,0x0d,0x76,0x0d, +0x66,0x75,0x26,0x75,0x0d,0xbc,0x53,0x93,0x69,0xab,0x79,0x0d, +0x87,0xc6,0x78,0x92,0x62,0x4c,0x5d,0xc2,0xd8,0xa4,0x71,0x8c, +0x5d,0x95,0x30,0xe6,0x03,0xf3,0x49,0xf6,0xe9,0x7c,0xb7,0x22, +0x4f,0x0e,0x55,0x98,0xc2,0xa2,0xdc,0xe2,0xec,0x32,0x0e,0xdd, +0x2d,0x09,0x7e,0xa2,0x35,0x7c,0x82,0xc1,0x15,0xbe,0x7a,0xdb, +0x54,0xe5,0x0b,0xb5,0x5e,0x0c,0xe5,0x74,0xc7,0xbf,0xa6,0xee, +0xc5,0x09,0x49,0x4d,0x07,0x60,0xc3,0x02,0xe8,0x61,0x52,0xfa, +0x65,0xb0,0x9f,0xc1,0x25,0x26,0xd7,0xe1,0x90,0xc2,0x4c,0xe1, +0xfd,0xe8,0x32,0x32,0x0c,0x7b,0x55,0xfa,0x86,0x41,0xb6,0x13, +0x65,0x47,0xb4,0x15,0x71,0xef,0x88,0x8e,0x22,0x12,0x03,0x20, +0x2a,0x2c,0x2e,0x11,0x73,0x09,0x6e,0x78,0x0d,0x73,0xa4,0xbd, +0xbc,0xbf,0xfd,0x1e,0x56,0x75,0xf5,0xea,0x3f,0xd5,0xda,0x83, +0xd3,0xe9,0x83,0x8a,0xce,0x30,0xae,0x7a,0xb9,0x15,0x67,0xe3, +0x59,0x98,0xbd,0x11,0xd7,0x68,0x53,0xbd,0xbc,0x75,0x10,0xb6, +0xc2,0x06,0xda,0x08,0x50,0x6d,0xb8,0x12,0xa7,0xff,0xc6,0x8e, +0xba,0x8f,0x9d,0x26,0x96,0xc5,0x8e,0xd5,0xee,0xcd,0xad,0x8d, +0x0d,0x6d,0x35,0xbd,0x96,0x65,0xbc,0x93,0xa9,0xbd,0xa5,0xb5, +0xad,0x7f,0x73,0x48,0x67,0xc4,0x00,0x07,0x56,0x9d,0x68,0xcf, +0x9c,0xad,0x3c,0x57,0x55,0x2b,0x07,0x66,0x60,0x23,0x86,0x52, +0x69,0x1f,0xc8,0xd8,0x5f,0x70,0x88,0x75,0x92,0x47,0xff,0xf5, +0x0c,0x7e,0xea,0xbb,0x57,0xe7,0xa0,0x7c,0x87,0x43,0xef,0xd7, +0x39,0x0f,0xe3,0xbf,0x93,0x3d,0x9f,0x16,0x7b,0x21,0x39,0x12, +0x66,0xae,0xe5,0x2b,0x2f,0xe1,0xf4,0x1f,0x43,0x52,0xc2,0xbe, +0x8a,0x0c,0x93,0x0d,0x0b,0x8e,0x3e,0x2f,0x53,0xcd,0xb6,0x82, +0x32,0x9b,0xa2,0x98,0xad,0x52,0xa8,0xab,0x62,0x78,0xd8,0x66, +0xab,0x6b,0xae,0x01,0xff,0x4d,0xe9,0xa3,0x8b,0x37,0xbb,0xca, +0x0d,0xea,0x6d,0x5a,0xdc,0xab,0xbd,0xab,0x53,0x92,0x5a,0x8a, +0x60,0x2e,0x6f,0x56,0x20,0x83,0xdf,0x09,0x8e,0x04,0xa7,0xaf, +0x96,0xee,0x79,0xfd,0x72,0xde,0xaf,0x38,0x7d,0x15,0x03,0x4b, +0xe7,0xc1,0xf4,0x77,0x38,0x9d,0x1d,0x3b,0x64,0x42,0xb1,0x7c, +0x58,0xc2,0xf2,0x9c,0x71,0x2c,0xdf,0x97,0xb0,0xfc,0xed,0xb7, +0xc4,0x25,0xdf,0x2a,0xcf,0x29,0xcd,0xd5,0x86,0xaf,0x0c,0x6a, +0xf0,0x29,0xf7,0xe1,0x66,0x8e,0x0e,0x8d,0x4e,0x26,0xb4,0x5f, +0x5e,0xc8,0x26,0x97,0x24,0x15,0x27,0x16,0x9d,0x8c,0xe3,0x23, +0xdd,0xc3,0x5d,0xc3,0x5d,0x39,0xf4,0xd2,0x06,0x0b,0x26,0xd4, +0x39,0xc4,0x39,0xd8,0x85,0xc3,0xf3,0xda,0x7f,0xcf,0xea,0x63, +0x50,0xf3,0x15,0xd9,0x24,0xce,0x65,0x53,0xcb,0xd3,0x2a,0x52, +0x2a,0x68,0xaf,0x2b,0xfe,0x17,0xf9,0x0d,0x9a,0xfa,0xb0,0xe9, +0x2e,0x78,0x81,0xfa,0x98,0x22,0xaa,0x0b,0x4b,0x8e,0x88,0x6b, +0x71,0xcd,0x32,0x6d,0x21,0x91,0xb6,0x2a,0x30,0x43,0xfa,0xd9, +0x13,0x0f,0x01,0x92,0x6d,0xe2,0xd0,0x4b,0x36,0x0c,0x33,0x08, +0xbc,0x5d,0x89,0x6f,0x19,0x69,0x6b,0xf6,0x58,0x92,0x50,0x16, +0x5f,0x12,0x97,0xaf,0x99,0xc0,0x9f,0xf1,0x8c,0x3a,0x1d,0xe9, +0xcc,0x2d,0x35,0xf8,0x81,0x89,0xb0,0x0f,0xb7,0x0b,0x77,0xe4, +0xd6,0x1b,0x08,0x2b,0x3b,0x6d,0x80,0x5a,0x75,0xd0,0x8d,0x36, +0xbe,0x71,0x20,0x93,0xf9,0x7b,0x85,0x7b,0x0f,0xbf,0xcc,0x09, +0xd9,0x20,0x5c,0x76,0x26,0xe4,0x4b,0xd7,0x8d,0x8e,0xca,0x7d, +0x4e,0x7c,0xcd,0xed,0xa2,0xdf,0x52,0xef,0x71,0x10,0xe6,0x4e, +0x2a,0xd5,0xca,0x94,0xf3,0x8e,0x77,0xe7,0xf3,0x3e,0xc3,0x2e, +0xb7,0x1d,0x87,0x38,0x31,0xcd,0x8f,0x2c,0xc3,0x6d,0x6c,0x72, +0x65,0x72,0x6d,0x52,0x2d,0x27,0x5c,0xc4,0x83,0x24,0xac,0xc7, +0xf7,0x8a,0x4f,0xaf,0x5e,0x10,0x9f,0xa7,0x95,0xa9,0x95,0xaa, +0xc5,0x61,0x35,0x5a,0x13,0x50,0xc3,0xf7,0xa8,0x06,0x14,0x3e, +0x27,0x70,0x8d,0x9e,0x3e,0x04,0xe3,0x8c,0x01,0x3a,0xf6,0x19, +0x5d,0x38,0xe3,0x0f,0x98,0xd1,0x89,0x33,0x46,0x58,0xa1,0xfa, +0x7b,0x82,0x6b,0x71,0xb1,0x0e,0xad,0x58,0xfb,0xf0,0x1e,0xec, +0x03,0xbe,0x17,0x79,0x58,0xc9,0xb6,0x25,0xf5,0x66,0xb7,0x14, +0x3a,0x74,0xf1,0x86,0xee,0xaa,0xbe,0x6a,0xe1,0x9c,0x58,0x70, +0xb9,0x17,0xee,0xe9,0x5c,0x16,0x6a,0xd1,0x58,0x9b,0xf2,0x6c, +0x1f,0x55,0x8b,0x21,0xbf,0xb0,0x29,0xe2,0x44,0xf2,0x07,0x7c, +0xf6,0x25,0x2d,0x11,0x9f,0x80,0x3a,0x81,0xb6,0x21,0x6c,0x83, +0x0d,0x50,0x7e,0x19,0xcb,0x69,0x77,0xd3,0x30,0x84,0x0d,0xb0, +0x49,0x5a,0x83,0x68,0xe5,0xe8,0xe0,0x71,0xdc,0x84,0x85,0x6a, +0x94,0xe8,0xd7,0x63,0x9a,0x3a,0xa4,0xe1,0x06,0x2c,0x57,0x83, +0x72,0x5a,0x61,0x86,0xd4,0xfe,0x5e,0x38,0x84,0x8f,0xc6,0x67, +0x2e,0x65,0x93,0x5b,0xa7,0x8e,0x89,0x2b,0x8d,0xfe,0x9e,0xde, +0xce,0x8a,0xcf,0x77,0x92,0x4a,0xcf,0x72,0xa7,0x3c,0x97,0xc6, +0x52,0xde,0xaf,0xc4,0xae,0xd6,0xb5,0x80,0x83,0x93,0x31,0x24, +0xd0,0xd5,0xd1,0xd9,0xc9,0xf3,0xa2,0x0b,0x5f,0x53,0x52,0x59, +0x91,0x47,0x03,0x66,0xac,0x49,0xaa,0x12,0x2a,0x92,0xca,0x92, +0x1d,0x6a,0x78,0x25,0xdf,0x0d,0x21,0x2b,0xa3,0x38,0x5c,0xca, +0xfa,0x9c,0xf3,0x8d,0xf1,0x8f,0x49,0x30,0xe3,0x87,0xe3,0x7e, +0x4f,0x1d,0x4e,0x8f,0x6a,0xe4,0xed,0x23,0x2d,0xa2,0x2d,0xa3, +0xb9,0xf7,0x6c,0x4d,0x6c,0x55,0x6c,0x55,0x7c,0x8e,0x62,0xd3, +0xb1,0x5f,0x0c,0x4a,0x1b,0xf9,0x6d,0x4d,0x76,0xbd,0x81,0xd4, +0xaf,0x71,0x7e,0xe4,0x74,0x8c,0xdb,0x19,0x1f,0x79,0xf7,0xe8, +0xf0,0x28,0xe7,0x05,0xfb,0x98,0x14,0x73,0x99,0x27,0xcc,0xd5, +0xac,0xfc,0x4b,0x89,0x0a,0x89,0xd5,0xe7,0x1b,0x06,0xe5,0xf0, +0xba,0xd9,0x6f,0x4c,0x94,0xba,0xa3,0xd5,0x26,0xeb,0x62,0x73, +0xfe,0x5d,0x4b,0x5b,0x7f,0xe2,0x13,0x0e,0xce,0x47,0x10,0x5c, +0x36,0x00,0xcb,0x24,0x29,0x79,0x92,0xd4,0xab,0x49,0xab,0x2b, +0x2c,0x73,0xff,0x72,0xf7,0x42,0xf9,0x2e,0xb3,0x67,0x30,0xa5, +0xe2,0x7d,0x1c,0x6c,0x93,0x05,0x73,0x13,0xdc,0x65,0x01,0xbb, +0x8c,0xf0,0xa0,0x05,0x1c,0x34,0xc4,0xe3,0x16,0x70,0x5c,0x1b, +0x4f,0x1b,0x0b,0xaf,0xdb,0xd0,0xa8,0x0f,0x4e,0x36,0xe2,0xc9, +0x8e,0xf1,0xc7,0xf6,0xf1,0xc7,0x56,0x08,0x16,0x3f,0x19,0x12, +0x9a,0xd4,0x6c,0x18,0x71,0xd4,0x8c,0x08,0xa3,0x46,0xe2,0x28, +0x03,0xc9,0x28,0x12,0xb8,0x7b,0x0f,0xef,0x4a,0x17,0x07,0x46, +0xcf,0x91,0x6f,0x54,0x76,0x88,0x8b,0x75,0xff,0x9e,0xd0,0xc3, +0x8a,0x4f,0x36,0x90,0x2a,0xe7,0x72,0xeb,0x7c,0xbb,0xe6,0x32, +0xde,0xb7,0xd2,0xa1,0xc9,0xa5,0x8c,0x03,0xe5,0x73,0x24,0xd0, +0xc1,0xc5,0xc6,0xc9,0xa5,0xd1,0x99,0xaf,0xae,0x2e,0xaf,0xcb, +0xad,0xe7,0x60,0xf9,0x01,0x92,0xb3,0xa9,0x69,0xd7,0x8f,0x6a, +0x95,0xcd,0xfc,0xb6,0x3e,0xbb,0x1b,0xc1,0x8f,0x2b,0x13,0x2b, +0x92,0xcb,0x52,0xec,0x2f,0xf1,0x4a,0x5e,0x5b,0x02,0x57,0x47, +0xd2,0x02,0x2b,0xf9,0xee,0x9c,0x9f,0xb4,0xab,0xd4,0xd5,0xf8, +0x77,0xe9,0x57,0xb3,0xa2,0x5a,0x78,0x87,0x48,0xab,0x48,0xab, +0x68,0x0e,0x64,0xd9,0xca,0x0b,0x95,0x71,0xe5,0xf1,0x9c,0x68, +0x10,0x4a,0xac,0x62,0x6c,0xa3,0xdc,0xe4,0x4f,0x47,0x87,0x45, +0x3a,0x2c,0x38,0xca,0xa4,0x19,0xc9,0xdc,0x66,0xae,0x67,0x17, +0xb5,0x24,0x29,0x24,0x35,0x9c,0xef,0x78,0x20,0x87,0x97,0x8d, +0x7e,0x64,0xce,0x1c,0x74,0xd2,0xdf,0xac,0x57,0x65,0xc6,0xff, +0x36,0xd8,0x7c,0x2b,0xfe,0x27,0x0e,0xce,0xf8,0x13,0x54,0x1f, +0x00,0x75,0x56,0x58,0x25,0x46,0x91,0x36,0xbc,0x75,0x15,0xda, +0xdb,0xb0,0x7d,0x08,0x06,0xdb,0x71,0xb0,0x45,0x55,0x9c,0x82, +0xd3,0x84,0x29,0xaa,0xa6,0x58,0x6f,0x04,0xd4,0x95,0xa5,0xc6, +0x50,0xaa,0x8a,0xed,0xc6,0xd0,0x7e,0x1c,0x9f,0xe9,0xfe,0xbd, +0xb8,0x07,0x7f,0xb9,0x31,0x7e,0x2b,0x4c,0x2c,0xb9,0xaf,0x7c, +0x48,0x9c,0xac,0x39,0x3a,0x34,0x20,0xad,0xd1,0x7b,0x82,0x94, +0x55,0x15,0xd5,0x67,0x57,0xa8,0x17,0xf2,0x5e,0xe6,0xae,0x66, +0x8e,0x36,0x9c,0xd8,0xac,0xf1,0x37,0x3f,0xc8,0x88,0x8f,0x4b, +0x89,0x7f,0xd5,0xe9,0x46,0xdf,0x02,0x0d,0x2f,0x3e,0xdf,0xbd, +0xd8,0x32,0xe3,0x34,0x27,0x4c,0x17,0x1f,0x12,0x0b,0x69,0x99, +0xad,0xef,0xc1,0x1a,0x6e,0x8d,0x1d,0xc0,0x5b,0x70,0x8a,0xf5, +0xdf,0xba,0xdb,0x06,0x6d,0x9d,0x0a,0xd4,0x78,0xf0,0xaf,0xfa, +0x7d,0x38,0x07,0x3e,0xe1,0x60,0xcb,0x12,0xe6,0x64,0xb1,0xdb, +0x3d,0x79,0xd0,0x61,0x3a,0xf2,0xf3,0x3a,0x14,0x1e,0xb3,0xa7, +0xb2,0x65,0x16,0xb2,0x9b,0xe0,0x21,0x11,0x07,0x1f,0x0b,0x83, +0x0c,0xce,0x9d,0xb2,0x5b,0x1c,0x7c,0xc6,0xce,0x84,0x8b,0xa3, +0x61,0xe4,0xe5,0xa9,0x6d,0xb8,0x53,0x47,0x50,0xe8,0x65,0x85, +0x2d,0x67,0xc8,0xb9,0xd5,0xd1,0x8a,0x61,0x46,0x9c,0x65,0x78, +0xb0,0xaf,0xfe,0x82,0x65,0x4c,0xb6,0x96,0xcc,0xcf,0xcc,0x48, +0x65,0xf1,0x70,0x86,0x42,0xc6,0x70,0xe2,0xf3,0xf3,0xb0,0x9e, +0x13,0x15,0xd5,0x61,0x31,0x13,0x89,0x73,0x6c,0x56,0xe1,0xb4, +0xc3,0x75,0x54,0x6e,0xca,0xbd,0x68,0x06,0x99,0x64,0x58,0xc9, +0xe1,0xa8,0x32,0x09,0xd3,0xf7,0x3c,0xe2,0x6d,0xc0,0x61,0x8c, +0xb6,0xb0,0xbf,0x0f,0x67,0x31,0xf9,0xdd,0xb9,0x03,0xa9,0xed, +0x1c,0x6a,0xe1,0x34,0x12,0xd2,0xe2,0xd7,0x1b,0x58,0xab,0xe7, +0xc7,0xe7,0xd8,0xe4,0x6a,0xa7,0x58,0x70,0x3e,0xe2,0x1f,0x84, +0x7a,0x52,0x58,0x88,0x1f,0x44,0x63,0x56,0x88,0x89,0x25,0xd7, +0xa1,0xf8,0xc4,0xb0,0xb0,0x5b,0x5c,0x28,0xee,0xa6,0x78,0x84, +0x7a,0x22,0x5d,0x62,0x80,0x50,0x46,0xf0,0xa4,0x42,0xf0,0x2c, +0x16,0xc3,0x59,0x56,0x54,0x43,0x39,0x02,0xa1,0xd2,0x25,0x05, +0xda,0x94,0x4e,0x1c,0xdd,0x4b,0x32,0xda,0xd2,0xda,0x53,0xba, +0x54,0x73,0x79,0x77,0x9c,0x66,0x8f,0x53,0x34,0x56,0x75,0x9b, +0xf2,0x65,0xed,0x05,0x1d,0xb9,0xdd,0x1c,0xa4,0x6b,0x30,0x48, +0xce,0xa2,0x81,0x2f,0xce,0x92,0x57,0x0c,0xf3,0xb1,0x39,0xbe, +0x00,0x57,0x33,0xd9,0x2a,0xd2,0xca,0xd9,0xbf,0xb7,0xf5,0x01, +0x93,0xa9,0x90,0x03,0x73,0xe3,0x40,0x0f,0x88,0x1c,0x7c,0xc2, +0x8e,0xcd,0xb9,0x4d,0x5e,0xaa,0x6d,0xc3,0x1d,0x3a,0xc2,0xe7, +0xb4,0x5f,0x9f,0x7c,0x84,0x84,0xff,0x63,0xce,0x59,0x6d,0x61, +0x4f,0x1f,0xce,0x1c,0x37,0x27,0x85,0x9a,0xa3,0x21,0x99,0xd3, +0xec,0xd7,0x17,0x58,0xab,0xef,0xc7,0x67,0x7f,0x34,0x47,0xe0, +0x0f,0x13,0x55,0xf0,0xbb,0x4a,0x4f,0x23,0x56,0xd2,0x6a,0xd8, +0x2a,0x28,0x50,0x11,0x66,0xcc,0x42,0x0b,0x34,0x11,0x0c,0x06, +0x19,0x08,0x66,0x84,0xc5,0xbe,0x64,0xab,0xf6,0x2a,0x53,0x94, +0xb1,0x2e,0x38,0xc5,0xc3,0xa4,0xfa,0xdf,0x3b,0x5e,0xf6,0x72, +0x63,0x4b,0x36,0x13,0x89,0xea,0x30,0x98,0xd2,0x71,0xcd,0xe8, +0x49,0xaa,0x74,0x4f,0xa1,0x3c,0x1e,0x52,0x13,0xb6,0x0c,0xb1, +0x5d,0x3a,0x44,0xcc,0x15,0xe4,0x85,0x5c,0x34,0x62,0x33,0x6b, +0xd3,0xea,0x52,0x6a,0x38,0x30,0xe8,0x17,0x2d,0xb4,0xc0,0x9c, +0x09,0x73,0x08,0xb1,0xf3,0xb7,0xe1,0xf6,0xe3,0x5a,0xf2,0x1e, +0xaa,0x97,0xb1,0xe2,0x0c,0xd4,0x26,0x7a,0xd9,0x32,0xa8,0xed, +0x4c,0x13,0xe2,0x42,0xbe,0x82,0xb0,0x0a,0xcf,0xae,0x64,0x51, +0xcd,0x03,0x77,0x29,0x51,0x17,0x74,0x9a,0xca,0x3c,0x06,0x85, +0x52,0x50,0x01,0x3d,0xb9,0x26,0x98,0x8d,0x22,0xab,0x57,0xe8, +0xdf,0x23,0xdf,0xc0,0xd4,0x64,0x64,0x36,0x28,0x08,0x33,0xe0, +0x1e,0x59,0x82,0xd5,0x7f,0xb2,0xb8,0x7e,0x0a,0x54,0x53,0x6d, +0x54,0xcd,0xd0,0x26,0x39,0x8e,0x3c,0xba,0x78,0xa5,0xbd,0xb3, +0xcf,0xb4,0x8e,0x37,0xd5,0x57,0x35,0x39,0xe2,0xc0,0xc1,0x83, +0xd7,0xa4,0xdf,0xee,0x9e,0x6e,0xb7,0x41,0x5d,0x2b,0xaf,0xdf, +0x76,0xa4,0x53,0xab,0x86,0x9b,0x29,0x78,0x0b,0x6a,0x44,0xf7, +0x83,0x21,0x2c,0x73,0x84,0x39,0xda,0xbe,0x7c,0x05,0xce,0xea, +0xa6,0x8d,0x11,0x4e,0xe5,0xb0,0x5c,0xd8,0x46,0xbc,0x71,0x86, +0x21,0x2e,0xd3,0x59,0xd4,0x69,0xcd,0x0f,0x01,0xdb,0x09,0x9b, +0xf3,0x61,0x26,0x47,0xfb,0xf0,0xad,0x92,0x75,0x2b,0xa9,0x75, +0x16,0x6c,0xd6,0x3f,0xd6,0x99,0xf7,0x8b,0xa7,0xb5,0xc0,0x8e, +0x09,0x75,0x08,0x96,0xac,0xdb,0x3d,0x6e,0x5d,0x33,0xb5,0x8e, +0x17,0x9d,0x89,0xd3,0x4f,0x9a,0xb0,0xd0,0xf2,0x99,0x9e,0x07, +0x5f,0xaa,0x53,0xb5,0xab,0x6c,0xbf,0x72,0xc8,0xde,0xe0,0xdd, +0x61,0x1d,0xf0,0x49,0x3b,0x6c,0xad,0x81,0x65,0x1a,0xd9,0xbc, +0x3d,0x2e,0xd5,0x41,0x25,0x1d,0x9c,0x1b,0x14,0x13,0x74,0x2e, +0x28,0x26,0x55,0x85,0x87,0xa9,0x19,0x30,0xb7,0xe0,0xd7,0xfc, +0x44,0xdf,0x04,0xbf,0x78,0x7f,0x4e,0x50,0x15,0xb4,0xc8,0x97, +0xd8,0xfc,0xc7,0xb8,0x9d,0xcd,0xd4,0xce,0x66,0x66,0x09,0x35, +0xf3,0x31,0x35,0xb3,0xeb,0xa3,0x99,0x2a,0xa6,0x8a,0xd4,0xcc, +0xc7,0xdf,0x93,0x7e,0xfb,0xfb,0xba,0x3d,0x92,0x99,0x7a,0xd4, +0x4c,0x4d,0x6a,0xa6,0xb4,0x7f,0x81,0x86,0xb0,0x70,0x90,0xbd, +0x2f,0x2d,0x1b,0x96,0x2b,0x2c,0xa0,0x43,0x37,0xa4,0x43,0x4f, +0x1d,0x1f,0xba,0x7e,0xbf,0x68,0xaa,0x05,0x66,0xff,0x0e,0x8c, +0xe8,0x8f,0x7d,0xc4,0x6b,0xe4,0xf4,0x15,0xb7,0xb6,0xca,0xce, +0x92,0x2b,0x79,0xb7,0xb4,0xb3,0x78,0x3f,0x65,0x57,0x65,0x1b, +0xb5,0x1a,0x95,0xd2,0x63,0x85,0x8a,0x1c,0x28,0x08,0x0b,0x88, +0xaf,0xf2,0xe9,0x63,0x76,0xea,0x35,0x27,0xe9,0x2b,0x47,0xba, +0x0a,0x78,0xcf,0xbb,0x2e,0x37,0xdc,0x9a,0xaa,0x3a,0x8b,0x87, +0xf2,0x6f,0x71,0xaf,0xb2,0xe9,0xdb,0x2e,0xf4,0xed,0xda,0x93, +0xa5,0xca,0xc5,0x8a,0x9d,0x85,0xbc,0xfb,0x3d,0x97,0x6b,0xee, +0x8d,0xf4,0x74,0x43,0xf9,0x37,0x39,0x20,0x68,0x4a,0x9d,0x53, +0xb9,0x8c,0xd5,0x9b,0xb2,0x18,0x2b,0x3f,0xb0,0xf8,0xa9,0xc8, +0x11,0xcd,0x70,0xf5,0x70,0xb5,0x48,0x0e,0xd4,0x61,0xf7,0x80, +0x38,0x4f,0x13,0x36,0xa3,0x3e,0xab,0x16,0x79,0x2a,0x4a,0xed, +0x4c,0x3c,0x65,0x8a,0x45,0xa9,0xb0,0x90,0xa2,0xbe,0x90,0x83, +0x59,0x50,0x42,0xa0,0x12,0x27,0x62,0x25,0x03,0xc7,0x91,0x21, +0x3d,0xf6,0x77,0x74,0x3a,0x0c,0xea,0x9b,0x79,0xc3,0x76,0xe5, +0x4e,0x9d,0x5a,0x0e,0x6f,0xa2,0x22,0xb9,0x7f,0x69,0xb0,0xa3, +0xbd,0xcf,0xa4,0x86,0x37,0xd7,0xd7,0x30,0x39,0xea,0x20,0x4d, +0x5b,0xe9,0x26,0x2b,0x41,0xf3,0x19,0x3c,0xde,0x0d,0xca,0xaf, +0x07,0xc5,0x59,0xff,0x35,0x69,0xe0,0x26,0xbc,0x60,0xae,0x8e, +0x2a,0x48,0x0e,0xe1,0xa9,0x43,0xf4,0xff,0xe3,0x10,0xdd,0x7e, +0xd1,0x48,0x0b,0x4c,0xc6,0x1d,0x12,0x60,0xc3,0xe1,0xaf,0x38, +0x97,0x3c,0x47,0xf7,0x9d,0x18,0x8d,0x47,0x47,0x4f,0xc2,0x51, +0x06,0xa7,0xe0,0x1c,0x22,0xaa,0x74,0x0a,0x2a,0x2c,0xbc,0xa4, +0x0d,0xc6,0x7b,0x28,0x97,0x8c,0x59,0x82,0xe5,0x1f,0x61,0x58, +0x4e,0xc3,0x53,0xce,0x80,0xd2,0x3f,0xc3,0xeb,0x34,0xa8,0x6f, +0xe1,0x0d,0xdb,0x8e,0x8d,0x0f,0xef,0xf6,0xf8,0xf0,0x2e,0xff, +0x33,0x3c,0x03,0x75,0x63,0x69,0x78,0x3d,0x14,0x6c,0xc2,0xbc, +0x01,0xdc,0x0a,0xdb,0x61,0xcf,0x20,0xee,0x81,0x45,0xaa,0xb4, +0x57,0xdf,0xa7,0x01,0xfb,0x70,0x3b,0xee,0x60,0x04,0x4d,0xd8, +0xfb,0xff,0x0b,0x39,0xd7,0xff,0x0b,0x72,0x2d,0x1f,0x07,0xd2, +0xf2,0x27,0x2b,0x6e,0x17,0xe3,0xc9,0x0d,0xa8,0x81,0x9b,0xf8, +0x93,0x38,0x93,0x15,0x3c,0xe0,0x03,0x81,0x16,0xea,0xb8,0x16, +0x06,0x0d,0x9e,0x12,0x34,0x41,0x37,0x30,0x61,0xe1,0x09,0xbe, +0x20,0x8f,0x2e,0x0d,0x75,0x74,0xf6,0x9a,0xd4,0xf1,0x66,0xfa, +0xa7,0xc6,0x73,0x65,0x44,0xca,0x95,0x11,0x29,0x57,0x5a,0x78, +0xfd,0x76,0xa5,0x0e,0xad,0x5a,0x6e,0x26,0x94,0x8f,0x36,0x91, +0xcc,0x1d,0x03,0xea,0x30,0xf1,0xa0,0xb4,0x6d,0xf4,0xa4,0x7b, +0xc6,0x43,0x5e,0xd7,0x39,0x25,0xc6,0xe7,0xa4,0xea,0x2e,0x9c, +0x71,0xb8,0x5c,0x8b,0x07,0x66,0xe4,0xd1,0xd3,0xcc,0xef,0x39, +0x4a,0x75,0x9b,0xa4,0xf1,0xae,0xa0,0xe3,0x35,0xff,0xcf,0x78, +0xcd,0xfa,0x45,0x17,0x2d,0xb0,0xa5,0x6e,0x1d,0x1f,0x2f,0xc6, +0xee,0x24,0x3d,0x18,0xad,0xcb,0x0a,0xeb,0x15,0xff,0xc9,0x95, +0x35,0x51,0x44,0x9c,0xac,0x0b,0x1d,0x8c,0x9d,0xb9,0x86,0xba, +0xba,0x39,0x87,0x72,0xe2,0x84,0xcb,0xd7,0xa0,0x1e,0xfa,0x70, +0x0e,0x33,0xd4,0xd9,0x3b,0x50,0xda,0xc4,0x09,0x6b,0x2e,0x90, +0xc5,0xd8,0x4c,0x51,0xb3,0x51,0xca,0x83,0x09,0x34,0x0f,0xc4, +0x2d,0x38,0x5f,0xba,0xe7,0xdc,0x1b,0x75,0x58,0xe1,0xb3,0x6c, +0xd2,0x6b,0x7f,0xf7,0xa3,0xcf,0x0d,0xa8,0xcf,0xb5,0xa9,0xcf, +0xef,0x50,0x9f,0x3f,0xa0,0x90,0xe8,0xec,0x33,0x96,0x7c,0xae, +0x66,0x72,0xd4,0x9e,0x9b,0x79,0x1d,0xfe,0x22,0xef,0x1f,0x5c, +0xb9,0x9d,0xf2,0x90,0x4b,0x40,0x9b,0x01,0x2a,0x16,0x13,0x62, +0x2f,0xc4,0x9f,0x91,0xa7,0x12,0x6d,0x46,0x55,0x13,0x7e,0x01, +0x6c,0x50,0x5a,0xf4,0x57,0xa1,0x21,0xb2,0x61,0xa1,0x32,0xd1, +0x57,0xe0,0x64,0x0f,0x9e,0xfc,0x85,0x19,0x4c,0xee,0x4d,0x6b, +0xcf,0xf0,0xe8,0xe4,0xd7,0xb9,0xe0,0x62,0x1f,0x24,0xd1,0xa9, +0xba,0x7c,0xef,0x85,0x81,0xf8,0xfe,0x44,0x8e,0x02,0x56,0x17, +0x8e,0xb2,0xa7,0x8f,0x1e,0x3b,0xba,0xee,0x04,0x27,0xb8,0xc0, +0x19,0xc9,0x05,0x4b,0xa9,0x0b,0xcc,0xfe,0xe3,0x02,0x93,0x7e, +0xd1,0x41,0x0b,0xac,0xff,0xed,0x82,0x3d,0xe3,0x21,0x6b,0xf8, +0x98,0x08,0x0d,0x1f,0xd8,0xdd,0x78,0x87,0xb8,0x04,0xb8,0x06, +0x9e,0x0e,0xe6,0xe0,0x1c,0xe6,0x68,0xb0,0x38,0x2d,0x62,0xed, +0x9e,0x0d,0xf2,0x4d,0x96,0x32,0xcf,0x7f,0xcc,0xf9,0x0b,0x64, +0xe4,0x2e,0xc2,0x7a,0x74,0x63,0x3d,0xc2,0x3d,0xa8,0xcc,0xce, +0xd1,0xe5,0x9f,0x94,0xdf,0xaa,0xb8,0xd9,0xc0,0xdd,0x00,0xaa, +0x42,0x1b,0x68,0x68,0x1b,0x98,0x45,0xff,0xe1,0x04,0x93,0x8f, +0xd4,0xa7,0xe8,0xc8,0xc1,0xa3,0x57,0xe3,0xd4,0xf7,0xdf,0x38, +0x01,0x7e,0x00,0x77,0x12,0x92,0x11,0x72,0x21,0x28,0x28,0x22, +0x82,0x8f,0xba,0x0f,0xc7,0x06,0xf0,0xd8,0x6b,0xd8,0x22,0x4c, +0x11,0xa7,0x8a,0x53,0x60,0xe3,0x46,0x3c,0xa6,0x09,0x5b,0x19, +0xb7,0x5d,0x1a,0xbb,0xd6,0xef,0xa8,0xd1,0xe7,0x7f,0xfc,0xb6, +0xfb,0x51,0xd2,0xf7,0x5c,0x22,0x8e,0x0c,0x42,0x0a,0x93,0x10, +0x77,0x21,0x3e,0x4a,0x9e,0xf6,0x9f,0xeb,0x2f,0xb6,0xca,0x74, +0x09,0x37,0xfe,0xdf,0xac,0xb2,0x25,0x8e,0x2c,0xfe,0xf3,0x03, +0xd3,0xb3,0x84,0xfc,0x09,0x13,0x96,0xb0,0xb8,0x45,0x8f,0xe0, +0xc4,0xc5,0xd2,0xdd,0xf8,0x1b,0xe7,0xd1,0xa6,0x79,0xa2,0x34, +0x31,0xa5,0x31,0xf6,0xbf,0xf3,0xc2,0x86,0x29,0xff,0xce,0x74, +0x65,0x9a,0x4a,0xbd,0xf6,0xb7,0xff,0x9d,0x4a,0xca,0xe3,0x61, +0xbd,0xf5,0x4f,0xa6,0x77,0x7c,0xcc,0x74,0xf5,0xf1,0x4c,0x87, +0x1b,0xa3,0x29,0x44,0xda,0x01,0x66,0xb7,0xae,0xc0,0xf7,0xb0, +0x83,0x52,0xa6,0xe6,0x09,0xb3,0x85,0x3c,0xd4,0xa4,0xa5,0x28, +0xb5,0x2e,0x99,0x8e,0x4d,0xb3,0x4f,0xd4,0xd0,0x06,0x7d,0x26, +0xcc,0x31,0xc4,0x36,0x50,0x92,0x30,0xf4,0x43,0x83,0x19,0x37, +0x0a,0xaf,0x94,0x77,0x79,0x74,0x7a,0xd4,0xf9,0x94,0x36,0xf1, +0x2e,0x59,0xd6,0xb9,0x96,0xb9,0xb5,0x79,0x95,0xf9,0x25,0x05, +0x56,0x15,0xbc,0x8b,0xbb,0xb5,0xa7,0x85,0x8f,0x4e,0xa1,0x76, +0x81,0x65,0xba,0xb3,0x15,0x5f,0x1d,0xda,0xe4,0xdf,0xec,0x67, +0xe4,0xa3,0x1f,0x60,0x12,0xc2,0x09,0xa1,0x87,0xc9,0x3b,0xc8, +0x5f,0xce,0xe2,0x98,0x0d,0xe9,0x16,0x57,0xac,0x60,0x51,0x35, +0x0c,0x39,0x4b,0x9c,0x22,0xdf,0x63,0x23,0xd3,0x0e,0x9f,0x27, +0xd3,0x6e,0xc0,0x48,0xae,0x89,0x1d,0xd5,0x0d,0xa2,0xd0,0xcd, +0xa7,0x86,0x99,0x9e,0x25,0x3a,0x66,0xbb,0x4c,0xb6,0xba,0x16, +0xe8,0xf1,0xdf,0x55,0x7c,0xdb,0x71,0xa5,0x8b,0xa3,0xe2,0xaa, +0x8d,0x7c,0xb8,0x08,0x32,0x37,0xee,0x5d,0xb3,0x6d,0xe0,0x95, +0x35,0x16,0xa9,0x2c,0xb6,0xe3,0x04,0x25,0xf8,0x94,0x40,0x3e, +0xe5,0x93,0x7c,0x06,0xd9,0x40,0xb2,0xf3,0x00,0xce,0x39,0x8a, +0x5f,0xd8,0x48,0x33,0x50,0x3f,0xaf,0x07,0xd9,0xfb,0xaf,0x5e, +0x70,0x16,0x68,0x40,0x33,0xf8,0x72,0x47,0xd7,0xff,0xc8,0xe0, +0x3e,0xfb,0x11,0x9d,0x7f,0x32,0xf8,0xe8,0x78,0x06,0x4b,0x5b, +0x24,0x88,0xab,0x04,0xaa,0x08,0xd9,0xa1,0x8f,0x85,0x60,0x31, +0x0d,0x99,0xc9,0x7f,0x2a,0xb4,0x71,0xbf,0x68,0xab,0x05,0x56, +0x94,0x50,0x3e,0x86,0x6c,0x4d,0x20,0x59,0x0c,0x73,0x3e,0x30, +0xdd,0xd4,0x3d,0xb4,0x0d,0x9e,0x8c,0x73,0x58,0xd8,0x83,0xf2, +0x34,0x46,0xf5,0x34,0x59,0xff,0x7e,0x45,0x90,0x5f,0x0c,0x3c, +0x0b,0x1b,0xe6,0xd1,0xf7,0x78,0x9c,0xcc,0x08,0x57,0x22,0xa8, +0x81,0xf5,0xd4,0x40,0x13,0xda,0x2c,0x19,0xb5,0x6b,0xb7,0x1a, +0x56,0x39,0x59,0xf1,0xdd,0x8e,0x7d,0x86,0x4d,0x46,0x9c,0x0a, +0x06,0x10,0xc7,0xf0,0x94,0x2a,0x05,0xc8,0xd2,0xc6,0x62,0x56, +0xb5,0xc8,0xeb,0xaa,0xfc,0x03,0xa6,0x29,0x2d,0xa3,0x59,0x9a, +0xc8,0x61,0x94,0x29,0x83,0x2b,0xd9,0x5a,0xb8,0x44,0x2a,0xf7, +0x97,0xac,0xc9,0xda,0xdf,0x51,0xc8,0xfb,0x3d,0x76,0xff,0xde, +0xe9,0x31,0x87,0xbf,0xe0,0x3d,0x52,0xf7,0x22,0x17,0xa6,0x25, +0xbd,0xd5,0x4f,0xe2,0x23,0xd6,0xf8,0xe3,0x64,0xfb,0x43,0x9c, +0x50,0x01,0x65,0x84,0x16,0xe3,0x89,0x58,0xcf,0x2c,0xc5,0xf8, +0xff,0x27,0x89,0x8d,0x17,0x7c,0xaa,0x54,0x12,0xc9,0x1d,0x2d, +0x25,0x3c,0x65,0x20,0x1c,0xe9,0x64,0xa9,0x3c,0x92,0xd0,0x31, +0x8f,0xa2,0x43,0x77,0x1c,0x1d,0x92,0x1b,0x74,0xfa,0x44,0x3d, +0x6d,0x69,0xc9,0x3b,0x8a,0x0e,0x4a,0xff,0xe2,0xbb,0x12,0x82, +0xbd,0xc2,0x0a,0xa0,0xea,0xea,0x03,0x26,0x11,0xb0,0x81,0x5e, +0xb4,0x61,0xe1,0xc8,0x23,0x1a,0xf5,0xe2,0xe5,0xec,0x98,0xe6, +0x1b,0x82,0xb3,0xa8,0xc0,0x9d,0xc5,0xe2,0x8e,0xad,0xa4,0x13, +0x3e,0x31,0x60,0x85,0x3a,0x0d,0x2a,0x4a,0x8a,0x69,0x35,0xf8, +0x12,0x3f,0x21,0xe2,0x24,0x4c,0x11,0x26,0x31,0xf0,0x25,0xd0, +0x66,0xb4,0x98,0xaa,0x93,0x62,0x06,0x75,0xa8,0xbc,0xca,0x1d, +0x86,0x5c,0x06,0x73,0x69,0x8f,0x9d,0xab,0x8c,0xb9,0xcc,0xe8, +0x4c,0xa3,0xff,0xbb,0x5c,0x3c,0xdb,0x4b,0x4f,0x1e,0x84,0x1a, +0x21,0x38,0xfb,0x4c,0xbc,0x26,0x0f,0x5c,0x3c,0x1c,0x4c,0x87, +0x99,0x99,0xd5,0x26,0xfc,0x7f,0xaa,0x88,0x8d,0x99,0x81,0xa5, +0x86,0x23,0x37,0xf3,0xd5,0x68,0x2b,0xc1,0x7a,0x61,0x21,0xd4, +0xb3,0x37,0xa5,0xf8,0xe6,0x09,0x13,0xa8,0x61,0x27,0xa8,0x61, +0x29,0xe3,0xb0,0x57,0xee,0x13,0xf7,0x69,0x83,0x1a,0x13,0xfe, +0x8f,0x61,0xa5,0x8d,0xe4,0x1e,0xb4,0x1c,0x66,0xb1,0x85,0x0e, +0xf2,0x21,0xb4,0x1c,0x60,0xe1,0xd0,0x01,0x1a,0xdd,0xf8,0x65, +0xec,0x58,0x26,0xf6,0x12,0x49,0x89,0x04,0xc5,0x24,0x18,0xf2, +0x37,0x12,0xee,0xa7,0x5c,0x4b,0xbf,0x10,0x12,0x1b,0x72,0x21, +0xb4,0x2e,0x85,0x1f,0x4a,0x7c,0x98,0x3a,0x94,0x19,0x17,0x18, +0x1b,0x18,0x1b,0xdc,0x92,0xc9,0x87,0xb6,0xfb,0xde,0xf4,0x6d, +0xb5,0x08,0xe0,0x93,0x7c,0xa4,0xb5,0x56,0x5c,0x22,0xed,0xa3, +0xed,0xa3,0x3b,0xee,0xb7,0x3c,0xab,0xff,0xc6,0x92,0x76,0xd3, +0x46,0x6e,0xfa,0xa7,0xf5,0x43,0x33,0xc3,0x32,0x43,0x33,0x8a, +0x9a,0x0a,0x5a,0x72,0xdb,0xcc,0xf2,0xf9,0x40,0x6b,0x3f,0x2b, +0x6f,0x9b,0x88,0x94,0x88,0x94,0xc8,0x24,0x27,0x07,0xbe,0xdc, +0xb6,0xd6,0xac,0xd4,0x3c,0xc0,0xcd,0xdf,0xdd,0xdf,0x23,0x22, +0x26,0xe2,0xab,0xc8,0x98,0x88,0x8b,0xa1,0x0d,0x21,0x95,0xe6, +0x81,0x7c,0xa2,0x57,0xa2,0x5b,0xa2,0x9b,0x4b,0x94,0x63,0xb4, +0xc3,0x99,0xce,0xfb,0x6d,0xdf,0xd0,0x73,0x16,0xf0,0xbe,0xa6, +0x1e,0x86,0xae,0x46,0x21,0xd2,0x7c,0xee,0xac,0xa2,0x86,0xbc, +0xc6,0x9c,0x16,0x8b,0x7c,0x3e,0xc8,0xc6,0xcf,0xc6,0xc7,0x3e, +0x3c,0x35,0x3c,0x25,0x42,0xda,0x9e,0xb3,0xca,0xb6,0xde,0xb8, +0xd2,0xc4,0xd7,0xd9,0xf7,0xb4,0xaf,0x1b,0x37,0x9a,0x09,0x17, +0xc8,0x22,0x8c,0xff,0xd7,0x38,0xa7,0xc4,0xd3,0x74,0x8a,0x67, +0xf0,0xc0,0x51,0x92,0x6f,0x95,0x67,0x90,0x61,0xde,0x9e,0xc7, +0x07,0x36,0x79,0x77,0x79,0xd6,0x71,0xa2,0x2c,0x95,0x26,0xe5, +0xdd,0x25,0x0f,0x52,0x7b,0x8d,0x32,0xf8,0x10,0x03,0x0f,0x65, +0x17,0x63,0x0e,0x2a,0x61,0x39,0xc9,0x36,0xcc,0x39,0x95,0xac, +0xdf,0x95,0xc1,0x87,0xf6,0xfa,0x0d,0xf9,0xb4,0x72,0xb8,0x35, +0x98,0xa4,0xe8,0x24,0x1e,0x89,0x35,0xec,0x4d,0xe6,0xcf,0xf4, +0x86,0xdf,0x08,0xed,0xe6,0x84,0x7c,0x53,0xd2,0x66,0x77,0x45, +0xa7,0x49,0xff,0x52,0x03,0x6f,0xde,0xa1,0xd1,0x61,0x74,0x91, +0xc3,0x1a,0x3c,0x42,0x6e,0x34,0x76,0x75,0x36,0xf6,0x19,0x57, +0xf2,0x36,0xfa,0x7a,0xc6,0x6a,0x76,0x14,0x86,0x07,0x84,0x2a, +0x92,0x66,0x22,0xf3,0x0d,0x73,0x31,0x37,0xb7,0x4e,0xe1,0x15, +0xec,0x6d,0x95,0xee,0x89,0x5b,0xda,0x8c,0x4b,0x87,0x74,0x71, +0xdb,0x26,0x58,0xa0,0x87,0x0b,0xb6,0x98,0x80,0xf7,0x0a,0x16, +0xb2,0x40,0x9b,0x60,0xce,0x8f,0xac,0xb5,0xaf,0xb6,0xaf,0x56, +0x48,0x8e,0x09,0x7f,0x2d,0x6b,0xb0,0xa0,0xb1,0xc8,0xb7,0x9a, +0x97,0xae,0x2f,0xd9,0x0c,0xfb,0x5f,0x77,0xeb,0xf7,0x90,0xcd, +0x6b,0xd5,0x2e,0xd0,0xcb,0x57,0xcd,0x92,0x85,0xa9,0x90,0x83, +0x8a,0x4c,0x62,0x46,0x7c,0x46,0x42,0x06,0x07,0x86,0x2d,0xa2, +0xb6,0x29,0xe8,0x31,0x51,0x41,0x91,0xf4,0x8f,0xdb,0x7c,0x80, +0xd4,0x43,0x9e,0x0d,0x3b,0x96,0x8e,0xaa,0xa4,0xb5,0xa2,0xbd, +0xbf,0xb4,0xc1,0xa2,0x98,0x77,0x31,0xb7,0x34,0x37,0x75,0xe2, +0x46,0x3b,0x80,0x25,0x56,0x98,0x77,0x89,0x45,0x39,0x7f,0x9a, +0xc8,0x2c,0x4e,0x34,0x44,0x13,0xeb,0x2c,0x43,0x1e,0xcc,0x6a, +0x81,0x1b,0x00,0xaa,0xbe,0xb8,0xdf,0x3c,0x09,0xe4,0x59,0x62, +0x1e,0x43,0xbf,0x66,0x8c,0x80,0xa7,0x78,0x82,0xcd,0x2a,0xc8, +0x28,0x4c,0x2f,0xd2,0xcd,0xe0,0x83,0x5c,0x03,0x4e,0x7b,0x9d, +0xe6,0xd0,0x12,0x3d,0x21,0x86,0xb1,0xf5,0xd4,0xf1,0xdf,0xe3, +0x97,0x63,0xc7,0xa3,0xa6,0xbe,0xd0,0xbb,0x6b,0xf8,0x6b,0xa8, +0xee,0xc2,0xea,0x1f,0x19,0xa4,0x2d,0x39,0xf1,0x8f,0x09,0x90, +0xe6,0x26,0x24,0x75,0x30,0x30,0x6c,0x48,0x62,0x3b,0x64,0xa0, +0xcc,0x90,0xc1,0x1f,0x2c,0xc9,0x19,0x9f,0x48,0xff,0xf0,0x40, +0x0e,0xfd,0x7a,0x18,0x68,0xd2,0x25,0x89,0x59,0x71,0xd9,0x71, +0xb9,0x1c,0xd4,0xe9,0x32,0xe2,0x19,0x5c,0x40,0x5e,0x17,0xf6, +0x95,0x57,0x37,0x72,0xf0,0xf9,0x3a,0xda,0x76,0x54,0x8e,0xae, +0x20,0x5a,0xec,0x9a,0x33,0xb1,0x16,0x6f,0xe2,0x64,0xdc,0x58, +0xbd,0x82,0xc0,0xcb,0xd2,0xb2,0x37,0xf5,0x69,0x69,0xd5,0x0a, +0x95,0xac,0x49,0x8a,0x8c,0x09,0xca,0xb2,0xae,0xd1,0xf1,0x05, +0x0a,0xa5,0x2c,0xc8,0x26,0x9c,0x6b,0xc4,0xf9,0x51,0x32,0x3d, +0xa0,0xc6,0x46,0x7a,0x05,0x7b,0x05,0xf9,0x36,0x07,0xf2,0x39, +0x45,0x19,0xb5,0x49,0x65,0x5c,0x2d,0x46,0xb6,0x83,0x4d,0x0b, +0xda,0x34,0x68,0xe2,0x7c,0x3c,0x80,0x59,0x2c,0x3a,0x05,0xe1, +0x32,0x6d,0x9c,0x24,0xdf,0x61,0x2f,0x33,0x08,0x33,0xb2,0x60, +0x09,0x7c,0x25,0x07,0x0e,0xac,0xa0,0x16,0x44,0xc4,0x22,0x78, +0x24,0x14,0xe1,0x36,0x36,0xa3,0x3e,0xa5,0x3e,0x89,0x26,0xd6, +0xc6,0x3e,0x71,0xba,0x36,0xec,0x60,0xc2,0x1d,0xc2,0x6c,0x02, +0xad,0x39,0x7d,0x5c,0x4f,0x8b,0x9c,0xc3,0x12,0xd6,0x60,0x0a, +0xd5,0x27,0x0e,0x30,0x81,0x95,0x96,0x36,0xa5,0xbe,0xa2,0x4a, +0xd2,0x93,0x85,0x55,0x20,0x4b,0xbe,0xec,0xf9,0x83,0x69,0xd1, +0x25,0x3d,0x7f,0xe8,0xb2,0xb8,0xdc,0x9a,0x68,0x7e,0x39,0xc0, +0xc2,0xf2,0x79,0x7f,0x68,0x7e,0x49,0xdd,0xda,0x48,0xc0,0x01, +0x19,0x74,0x60,0x8e,0xe0,0x32,0x12,0x16,0x13,0x1e,0x13,0x76, +0x8e,0x83,0x85,0xe2,0x67,0xb8,0x87,0xa5,0xf9,0xf8,0x55,0x50, +0x4c,0x9c,0x29,0x0f,0x1b,0x92,0x61,0x79,0x12,0x7c,0x91,0x1d, +0x16,0x11,0x16,0x19,0x1a,0x79,0xc9,0x8c,0x1f,0x6c,0x6c,0xeb, +0xae,0xef,0x37,0xaa,0xe0,0x3d,0x6c,0x9c,0xed,0xec,0x5c,0x38, +0xec,0x93,0xd6,0xa1,0x9f,0xc1,0x2a,0x9f,0x95,0x81,0xd9,0x2c, +0xd5,0xa2,0x32,0xc4,0xeb,0x9c,0xe7,0x39,0xcf,0x18,0x0e,0xa6, +0xdd,0x66,0x61,0xca,0x12,0x72,0x34,0x4a,0x06,0x26,0xd1,0xc3, +0x46,0x35,0xd2,0x68,0xd3,0xab,0x73,0x51,0xf7,0xd2,0x25,0xde, +0xa6,0x53,0xbf,0xc3,0xec,0x12,0x05,0xa8,0xd3,0xe8,0x16,0xd2, +0x0f,0x9f,0x6b,0xf5,0xf6,0xc3,0xd4,0x76,0x9c,0x7a,0x43,0xe7, +0x38,0x7e,0x7e,0x43,0xfb,0x38,0x4e,0x33,0x82,0x69,0x5a,0xac, +0xb0,0xc1,0x4d,0xf2,0xc2,0x2f,0xd4,0x0b,0x07,0xd8,0x8c,0x3a, +0x5a,0x55,0x6b,0x39,0xd8,0xd3,0x27,0x2e,0xd5,0x06,0x45,0xea, +0x85,0x50,0x1b,0xa9,0xaa,0xee,0xc2,0xc3,0x04,0x0e,0xa2,0x3e, +0x1e,0x64,0x85,0xe3,0xf3,0xe8,0x91,0x21,0x3d,0xda,0x44,0x47, +0xb5,0x63,0xf9,0x37,0x2c,0xbc,0x99,0xb7,0x63,0x29,0x7d,0x2a, +0xc5,0x09,0xe4,0x0f,0x08,0xfa,0x92,0xc5,0xf7,0xa2,0x23,0xc1, +0x7d,0x4f,0x60,0x7d,0x2b,0xae,0xbf,0x3f,0xfe,0x78,0x0f,0xf6, +0xb7,0xe1,0x36,0x26,0x8b,0x82,0x2b,0x29,0x97,0xc2,0x2b,0xcc, +0x33,0xc8,0xd9,0xcf,0x95,0xc3,0x4f,0xa5,0x9d,0x98,0xf2,0x53, +0xcb,0x0c,0x32,0x79,0xf7,0x13,0xe6,0x7b,0xb5,0x54,0x6b,0x2d, +0xf9,0xb4,0xcc,0xf4,0xec,0xb4,0x1c,0x0e,0xdf,0xf5,0xf4,0x00, +0xb2,0xf0,0x5e,0xb0,0xa3,0x00,0x0e,0xfa,0xc0,0x8a,0x2e,0x78, +0x8c,0xb2,0xdc,0x17,0x87,0x59,0x78,0x5d,0x4c,0x20,0x88,0x46, +0x22,0x88,0x11,0x5d,0x4e,0x93,0xfb,0xf0,0xc5,0x21,0x16,0xbf, +0xc0,0x59,0xe4,0x09,0x7c,0xb1,0x97,0x15,0x42,0x1b,0x49,0x8b, +0xcd,0xa0,0x4e,0xa3,0x1e,0xcd,0x5d,0xcb,0x0e,0xad,0x4e,0x63, +0x9a,0xbb,0xc5,0xa8,0x44,0x86,0x1b,0x3b,0xbb,0x1a,0xfa,0x8d, +0x2a,0x79,0x3b,0x3d,0x7d,0x23,0x0d,0x9a,0xbb,0x9d,0xb4,0x65, +0xfc,0x33,0x0e,0x16,0x24,0xc0,0xd4,0x64,0x4e,0xab,0xff,0x0a, +0x5b,0x72,0xa1,0x28,0xb6,0xe0,0xc2,0xd9,0x66,0xde,0xfb,0x9c, +0xc7,0x39,0x8f,0xb3,0x1c,0x5c,0x18,0x6e,0x17,0xed,0x8d,0x6e, +0x60,0x3e,0x1b,0xe3,0xee,0x11,0xe3,0xb9,0x80,0x56,0xaa,0x0d, +0x92,0xbb,0x7e,0xa2,0xee,0xda,0x3f,0xee,0xae,0xa4,0x8f,0xee, +0x5a,0xa2,0x0d,0x87,0xff,0xed,0x2e,0xbc,0x34,0x44,0x30,0xa0, +0x1f,0x02,0x98,0x95,0x53,0x34,0x30,0x60,0x90,0x15,0xcc,0x70, +0x3f,0x75,0x4d,0xc0,0x97,0xac,0x68,0x36,0x42,0x61,0x7e,0x28, +0x7a,0x57,0xf4,0xbe,0xb3,0xdc,0x6d,0x76,0xf4,0x28,0xce,0xa0, +0xc6,0x05,0x7c,0x60,0x97,0x8b,0xd3,0x49,0xe8,0xb9,0x90,0xb3, +0x21,0x14,0x20,0x55,0x55,0xcd,0xa2,0xb7,0x59,0x35,0x5e,0x66, +0x29,0x6d,0x9f,0x0b,0x8e,0x49,0x30,0xe2,0xbb,0x13,0x6f,0xa6, +0xf6,0xa4,0x70,0xdb,0x3b,0x84,0x8d,0x9d,0x78,0x85,0x0d,0x3d, +0x17,0x1a,0x13,0x16,0x93,0x68,0xcc,0xb7,0x27,0x5c,0x49,0x1a, +0x48,0xe1,0x76,0x77,0xbc,0x62,0x1b,0x92,0x65,0xc4,0xd5,0x10, +0x43,0xee,0xbc,0x50,0x62,0x21,0x64,0xde,0xc6,0x3b,0xaf,0x19, +0x38,0xa1,0x47,0x20,0x80,0xfa,0x29,0x80,0x11,0x63,0x82,0xc8, +0xc8,0x0b,0x45,0xfa,0xce,0x08,0x51,0xdc,0x38,0xc2,0xa2,0x1f, +0x4e,0x26,0x2f,0x8e,0x33,0xee,0xd1,0xce,0xd1,0x2e,0x67,0x38, +0xf0,0x7b,0x4a,0x5e,0x1f,0x65,0x9c,0xa3,0x9d,0xcf,0x38,0x9f, +0xe1,0x84,0x83,0xc5,0xd4,0x83,0xfd,0x3a,0x0d,0x7a,0x14,0x47, +0x56,0x9d,0x3a,0x1d,0x26,0x97,0x38,0xcc,0xa5,0x1e,0xbc,0xd2, +0xd8,0x2e,0x79,0xb0,0x82,0x7a,0xd0,0xd0,0x48,0x8b,0x7a,0x50, +0x48,0x10,0x06,0xc8,0x4b,0x36,0x39,0xee,0x42,0xd2,0x39,0x79, +0x61,0xc6,0xc1,0xf4,0x6e,0x71,0xd2,0x83,0xc0,0xd8,0xe8,0x33, +0x67,0x42,0x65,0xa3,0x02,0x65,0xa2,0x9e,0x0a,0x47,0x7b,0xff, +0x6b,0xba,0x8e,0x30,0x1f,0xf5,0x19,0xc1,0x50,0x7c,0x4e,0x3c, +0x2f,0xb9,0xf5,0xc0,0x69,0x39,0xf8,0x6a,0xcc,0x16,0xad,0x58, +0xdc,0xe9,0xbd,0x4c,0x69,0xb9,0x7c,0x9f,0xb5,0xcc,0xc8,0xdb, +0x52,0x98,0x0e,0x27,0xe4,0x60,0x93,0xf0,0x0b,0x6a,0xb3,0xe8, +0x59,0xba,0xab,0xc5,0x50,0xbe,0xd4,0xb5,0x23,0x3e,0xb9,0xa5, +0x1a,0x76,0xf2,0x46,0x15,0x32,0xd8,0x79,0x98,0xa4,0xfb,0xa7, +0xfb,0xa5,0xfb,0x1a,0x46,0xeb,0x44,0x6b,0x9e,0xe1,0xde,0x82, +0x36,0x68,0xa3,0xf6,0x08,0x7b,0x3f,0x7e,0x24,0xb1,0x3f,0xd5, +0x5f,0xda,0x79,0xc6,0x03,0xb7,0x45,0xe3,0xb2,0x73,0x89,0x06, +0xfc,0xc0,0xf9,0x3b,0x17,0xee,0xc6,0x72,0xc7,0x50,0x03,0xb5, +0x41,0x63,0x29,0xbb,0x3b,0x7a,0xfb,0x99,0x1d,0x31,0x49,0xb4, +0xb5,0x39,0x90,0x08,0x9b,0x93,0x61,0x75,0x6e,0x9a,0x6f,0xaa, +0xb4,0x7f,0x41,0x31,0xef,0x34,0x60,0xd3,0x63,0x47,0x0b,0xc1, +0xbf,0x60,0x23,0x01,0xb9,0x15,0x28,0xc7,0xc0,0xd3,0x79,0xf8, +0xc5,0x5b,0xf8,0x82,0x32,0x93,0x2b,0x4d,0x1f,0xd8,0xa6,0x86, +0xdb,0x90,0xd3,0x84,0xd6,0x01,0x56,0xb8,0x32,0xb6,0x97,0xb8, +0xdd,0x3e,0x2b,0x4d,0x45,0x96,0x83,0x1b,0x62,0x84,0x34,0xb1, +0x23,0x28,0x04,0x95,0x34,0xa4,0x5f,0x38,0xac,0x65,0x86,0x80, +0xcf,0x82,0xa3,0x90,0x21,0x07,0x29,0xc2,0x5c,0x8c,0x66,0xb1, +0x39,0x01,0x95,0x2e,0xee,0x91,0x2f,0x30,0xee,0x8f,0x4d,0xb8, +0x92,0x07,0xce,0xbc,0x55,0x89,0x0c,0x3a,0x1c,0x22,0xc9,0x5e, +0xa9,0x8e,0xa9,0xf6,0xeb,0x83,0xa4,0xb9,0x91,0x32,0x70,0x0b, +0x65,0x60,0x0a,0xdb,0x9e,0xd2,0x9a,0x56,0x9d,0xee,0xdd,0xce, +0x1f,0x75,0x43,0xe2,0xba,0x3e,0x2c,0xdd,0x80,0xaf,0x89,0x6b, +0x4e,0x6c,0x49,0x92,0x2e,0xbd,0xe1,0x2d,0xe0,0x28,0x55,0x69, +0x46,0x6a,0x46,0x9a,0x9d,0x4d,0xd2,0xe6,0x9f,0x25,0x83,0x42, +0xce,0xb7,0x39,0x49,0x6e,0x89,0x1e,0x71,0xbe,0x2d,0x19,0x7c, +0xc0,0x55,0xe7,0x37,0x5e,0xdd,0x9c,0x78,0xb0,0x85,0xb8,0xfb, +0xb9,0xfa,0xbb,0x06,0x14,0xc2,0xac,0x7c,0x58,0x99,0x0a,0x33, +0x34,0x93,0xf9,0x50,0xfc,0xdc,0x1b,0xf7,0xd1,0xb3,0xea,0xbb, +0xe9,0x79,0xea,0xf9,0x66,0xaa,0xf3,0xbf,0x37,0xfd,0xd4,0xf5, +0xfa,0x1a,0x87,0xbb,0x2b,0x49,0x14,0x7c,0x1a,0x02,0xb3,0xfc, +0x60,0x86,0x4e,0x28,0x9f,0x83,0x5c,0x0a,0xce,0x4e,0xc4,0x4f, +0x39,0xc1,0x1f,0xa8,0x0a,0x71,0x39,0x0a,0x2e,0x2c,0x7c,0x82, +0x2e,0x04,0x5c,0x6e,0xa2,0x0b,0x3b,0x53,0xb8,0x23,0x84,0x92, +0xd7,0xf1,0xb0,0x26,0xed,0x59,0x6a,0x42,0xa0,0xb4,0x7b,0x47, +0x77,0x3e,0xef,0xf2,0xcc,0xfc,0xa5,0xc5,0x6d,0x23,0x6f,0xbe, +0xd8,0xbc,0xc8,0xa0,0x40,0x5f,0x3f,0xfa,0x50,0x94,0x62,0x74, +0xdd,0xb3,0x06,0x98,0x98,0xf7,0x54,0x2b,0x8d,0xf7,0xdb,0x6b, +0x86,0x33,0xcd,0x77,0x70,0x31,0x7e,0x7e,0x31,0xfe,0x0b,0xe0, +0x3b,0xb1,0x8f,0x60,0xf1,0xb9,0x5d,0x30,0x1b,0xee,0xca,0x09, +0x33,0x44,0x2d,0xec,0x60,0xb1,0xec,0x2c,0xce,0x3d,0x81,0xf3, +0xe5,0x1b,0x74,0x64,0x6e,0xc1,0xfc,0x74,0x4a,0xae,0x17,0xe5, +0x20,0x13,0x7e,0xc6,0xa7,0x2c,0x0a,0x1f,0x70,0x01,0xb4,0x37, +0xe7,0x64,0x37,0xc9,0xff,0xc9,0x6a,0xe7,0xcb,0x88,0x7e,0x05, +0x24,0xc5,0x27,0xcd,0x25,0xd5,0xc9,0x35,0xda,0x26,0x5a,0xfa, +0x99,0x75,0x0b,0x4c,0x84,0x61,0x9c,0x00,0x32,0x6c,0x5b,0x4a, +0x4b,0x6a,0x69,0x8a,0x6f,0x27,0x7f,0xdc,0x03,0xe7,0x7a,0x28, +0x46,0xa6,0xe9,0xf3,0x25,0xb1,0x17,0x13,0x2e,0x25,0x72,0x4b, +0x16,0xe1,0xf0,0x9f,0xb8,0x8b,0x7a,0x50,0xe3,0x8c,0xb9,0x04, +0x85,0xe7,0x71,0xb0,0x2a,0xef,0xbb,0x9c,0x24,0x8f,0x04,0xcf, +0x78,0xdf,0xce,0x74,0x3e,0x60,0xc8,0xf1,0xb9,0x7b,0x2f,0x87, +0x5e,0x30,0x4c,0xae,0xa1,0xf5,0x49,0x06,0x0e,0xce,0x3b,0x0e, +0xd6,0x37,0x18,0x21,0x56,0xda,0xd4,0xb2,0x1b,0xbb,0xb0,0x9b, +0x85,0x68,0x38,0x4f,0x28,0x17,0xaa,0x81,0x3e,0x3b,0xf3,0xef, +0xf9,0xa1,0x04,0xab,0xce,0x6e,0xa0,0x96,0x8c,0xc8,0x09,0xd3, +0x45,0x15,0x6c,0xa7,0x96,0x9c,0x43,0x5e,0x0b,0x3f,0x93,0x6f, +0xd4,0xa1,0x05,0xe7,0xd3,0x54,0x1a,0x5f,0x6a,0x49,0x16,0xbc, +0xc6,0x67,0xd4,0x12,0x1a,0xc3,0x05,0xd0,0xd3,0x94,0x9b,0xdd, +0x28,0xff,0x84,0xd5,0xce,0x94,0x49,0x19,0x35,0xa1,0xa2,0x54, +0xbc,0xa0,0xaf,0x2f,0x28,0x74,0x99,0x30,0xba,0xc2,0x0c,0x82, +0x06,0x4f,0xc0,0x80,0x11,0xb5,0xc5,0xbf,0x48,0x32,0x35,0x32, +0xcd,0xc9,0x31,0xda,0x3a,0xca,0x82,0x1a,0xb9,0x15,0x26,0xc3, +0x55,0x9c,0x08,0x1c,0xdb,0x41,0x8d,0x2c,0x4b,0xf5,0x69,0x97, +0x8c,0xfc,0xcc,0xfd,0x40,0x54,0x9a,0x21,0x5f,0x16,0x7b,0x31, +0x9e,0x1a,0xb9,0x70,0x11,0x5e,0xfd,0x80,0xbb,0x59,0xed,0x28, +0x9d,0x68,0xcb,0x98,0x64,0x2d,0xfe,0x56,0x3c,0x2c,0xcf,0x7b, +0x9b,0x9f,0x4c,0x05,0x5d,0xbc,0x37,0x35,0xd2,0xf7,0x8a,0xed, +0x77,0xde,0xed,0x1c,0x58,0x09,0x0a,0xe4,0x29,0x18,0xec,0x61, +0x71,0xce,0x14,0x34,0x78,0x46,0xbf,0x71,0x6c,0x96,0x05,0x35, +0xdb,0x92,0x9a,0x7d,0x80,0x9a,0x6d,0x49,0xcd,0xb6,0xdc,0x4e, +0x76,0xa0,0x01,0x25,0xf7,0x46,0x4c,0x24,0x8e,0x8d,0xa6,0xad, +0xb6,0x65,0x96,0x4e,0x7c,0x83,0x7d,0x83,0x69,0xb9,0x25,0x87, +0x81,0xb0,0x82,0xf8,0x3a,0x39,0x58,0x39,0xf8,0xd4,0x5a,0xf0, +0xd5,0xc5,0x75,0x17,0x0b,0xeb,0xb9,0x99,0x43,0xa3,0xbb,0x08, +0x06,0x09,0x93,0x21,0x68,0xe1,0x33,0x98,0xde,0x2d,0x7e,0xae, +0x07,0xd3,0x76,0xb3,0xa3,0x01,0x63,0xc7,0x88,0xe7,0xcd,0x18, +0xf8,0x1c,0x6a,0xe4,0xe0,0x8d,0xb8,0x04,0x6f,0xb1,0x18,0x12, +0x84,0x47,0xf4,0x70,0xb6,0x7c,0xab,0xa5,0x4c,0x2f,0xcc,0xcd, +0x85,0x23,0x50,0x24,0x07,0xd9,0xd0,0x81,0x79,0x2c,0x76,0xc7, +0xe3,0xae,0x9a,0x23,0xf2,0xb9,0x16,0x3d,0x31,0xf1,0x43,0xd9, +0xe0,0xc4,0xdb,0x96,0xc8,0x8c,0x19,0x0b,0x16,0xe4,0x59,0xdf, +0x6e,0x56,0x70,0x16,0x2b,0x48,0x92,0x57,0xaa,0x53,0x8a,0xa3, +0x6f,0xb4,0xe7,0x19,0x0f,0xea,0x9a,0x8d,0xaf,0xe1,0xce,0x46, +0x98,0xc6,0xd6,0xa7,0xd4,0xa5,0x96,0xa6,0x79,0xb5,0xf0,0x9a, +0xee,0xab,0xdc,0xf7,0x85,0xa4,0x1b,0xf1,0xa5,0xf1,0xd5,0x89, +0x35,0x49,0xdc,0xa2,0x4d,0x78,0xe7,0x15,0xee,0x64,0x4d,0x22, +0x8c,0x23,0xec,0xce,0x24,0xe9,0xf1,0x37,0x93,0x61,0x42,0xde, +0xdd,0xec,0x44,0xf7,0x04,0xcf,0x38,0xdf,0xe6,0x34,0x3e,0x70, +0xd8,0xe5,0x7b,0x9f,0x1e,0x4e,0x14,0xa5,0x0b,0x6a,0x0b,0x35, +0xa5,0xab,0x95,0x5b,0x70,0x21,0xa1,0x07,0x03,0x4c,0xfb,0xf8, +0x65,0xcb,0xcb,0xd2,0xc4,0x9e,0x8b,0xbe,0x04,0xdd,0x4d,0xc1, +0x9d,0x7d,0x85,0xee,0x04,0xdc,0xdb,0xd0,0x9d,0xc5,0x37,0xb4, +0xb5,0xc3,0x37,0xfa,0xf0,0x86,0x29,0x3b,0x4a,0x44,0x05,0x3d, +0xd8,0x87,0x6e,0x3b,0x98,0x74,0xe9,0x62,0xfb,0xf8,0xf6,0x03, +0xb4,0xd1,0xa0,0x6e,0x9e,0xa1,0x4a,0x4a,0x8d,0x0a,0xb5,0xf2, +0xd5,0xdb,0x2a,0x79,0xaf,0xcb,0x9e,0x5d,0xae,0xed,0x1c,0x26, +0x9c,0x23,0x7e,0x1a,0xae,0x9a,0xce,0x66,0x4d,0xb6,0x7c,0x55, +0x7b,0xe5,0xf5,0x9c,0x2b,0xdc,0xcc,0xbf,0x17,0x04,0x12,0xbc, +0x72,0x76,0x35,0x7c,0x06,0xb7,0xe4,0x84,0x4f,0xc5,0xcd,0x52, +0x76,0x24,0xc4,0xe0,0x3a,0x1d,0x9c,0x2b,0xdf,0xa2,0x2d,0xd3, +0x0f,0x7c,0x22,0xac,0xfe,0x88,0xa9,0x1b,0xf8,0x42,0xc2,0xd4, +0x74,0x9c,0x0f,0xdf,0x5c,0xca,0xce,0x6c,0x94,0xff,0x9a,0xd5, +0xcd,0x91,0x11,0x27,0x8e,0x6e,0x22,0x30,0x5f,0x11,0xa7,0xa1, +0xb6,0xb0,0x84,0x92,0xe4,0xcc,0x11,0x98,0xdf,0x26,0xee,0x64, +0xe0,0x30,0x4e,0x25,0x23,0x23,0x8a,0xac,0xa8,0x20,0x76,0x90, +0x64,0xdf,0x74,0x0a,0x2e,0x97,0x68,0xab,0x28,0x4b,0x5a,0x02, +0xb6,0xfe,0x0e,0x37,0x96,0x01,0xfb,0x31,0x7f,0x52,0x7d,0x5b, +0xf9,0x93,0x1e,0x38,0xcb,0xfd,0x70,0x54,0x1a,0x75,0x61,0x6c, +0x5d,0xc2,0xc5,0x44,0x6e,0xd1,0x72,0xbc,0xf1,0x96,0x42,0x4b, +0x37,0x5a,0xff,0x8c,0xb5,0x94,0x3f,0xb7,0xe3,0x60,0x59,0xee, +0xeb,0xbc,0x14,0x77,0x9a,0x41,0xde,0x4d,0x19,0xbc,0xef,0x65, +0x9b,0xef,0x3c,0xdb,0x38,0xaa,0x89,0xe7,0x13,0x98,0x78,0x17, +0x27,0xb2,0x2d,0xf3,0x60,0xe2,0x08,0x7d,0x86,0x69,0xf3,0x0e, +0xc2,0xc4,0x07,0xcc,0xd8,0x11,0x54,0x26,0x97,0xd1,0x46,0x9d, +0x81,0x2d,0xf3,0xd4,0xc0,0x66,0x88,0x01,0x9d,0x23,0x44,0x98, +0xdc,0x26,0x4e,0x66,0x60,0x07,0xae,0x21,0xa8,0xbd,0x93,0x4d, +0x37,0x90,0xb9,0xce,0x34,0x8f,0x77,0x93,0x2a,0x70,0xb0,0x43, +0x5c,0x63,0xc8,0x0a,0xab,0x71,0x33,0xf1,0x69,0x77,0xea,0x71, +0xaa,0xb1,0xf0,0xe2,0x2b,0xac,0xab,0xf4,0xb2,0xcc,0x39,0xbc, +0x99,0x4e,0xaa,0xea,0xca,0x9a,0xb3,0x1b,0x4d,0xb2,0xf8,0x20, +0x7b,0x17,0x13,0x37,0x6f,0x6e,0xe6,0x0d,0xc1,0x92,0xfc,0xd0, +0xf3,0xf4,0x72,0xdc,0x53,0x69,0x5e,0xf0,0xee,0x47,0x3a,0x6f, +0x35,0x4b,0xdb,0xf9,0x55,0x03,0x4a,0x4d,0xd2,0x1a,0x84,0xfb, +0x3b,0xf0,0x20,0x4c,0xd1,0xc6,0x29,0xb8,0xc5,0x10,0x36,0x32, +0x41,0x87,0x0e,0x19,0x6c,0x31,0xe4,0x84,0x59,0x90,0x4c,0xdc, +0x4b,0xed,0xcb,0x5d,0x73,0x5c,0x4e,0xf3,0x65,0xde,0x15,0xae, +0xc5,0xae,0x9c,0x50,0x3a,0x16,0x4c,0x3c,0x6f,0x48,0x90,0xa5, +0x44,0xff,0xad,0xb8,0x1c,0x87,0x69,0xc1,0x8a,0xc4,0xcf,0xbd, +0x70,0xa2,0xbc,0xd2,0xa3,0xc8,0xa4,0xa8,0xaf,0x22,0x22,0x64, +0xc3,0xc2,0xcf,0x5c,0x48,0xac,0x8d,0xef,0x38,0xdf,0x25,0xfb, +0xb4,0x73,0x0f,0xcc,0x30,0xa6,0x61,0x36,0xb8,0xca,0x9c,0xc5, +0x59,0x5e,0xfb,0x14,0x71,0x6a,0xb5,0x39,0xdf,0xf9,0xac,0xe4, +0x7a,0x56,0xff,0xf9,0xf8,0x0b,0x31,0x17,0xce,0xde,0xdf,0xce, +0x97,0x57,0x86,0x5b,0x84,0xda,0x04,0xd9,0xcb,0x8e,0xa3,0xfe, +0xb3,0x1c,0x50,0x84,0x02,0x39,0x48,0xa3,0x9d,0x68,0x06,0x8b, +0x9d,0xf1,0xb8,0xb3,0x46,0x51,0x3e,0xd7,0xf2,0xff,0x40,0x3d, +0x9e,0x3a,0x28,0x61,0xdd,0x39,0xc5,0xc9,0xe7,0x1f,0xac,0xaf, +0xfb,0x01,0x6e,0x6d,0xa0,0x91,0x92,0xb0,0x5e,0x26,0x61,0x5d, +0xc3,0x63,0xa5,0x84,0x75,0x63,0xbe,0x24,0xae,0x46,0xc2,0xfa, +0x92,0x4d,0x78,0xeb,0x15,0x2d,0x15,0x14,0xeb,0x91,0xff,0xc6, +0xfa,0xa4,0xdc,0x3b,0x14,0xeb,0x89,0xff,0x60,0xfd,0x2a,0xc5, +0x7a,0x37,0x87,0xb3,0x29,0xd1,0xa1,0xab,0x09,0xb8,0xb2,0x3f, +0xa0,0x2b,0x01,0xd7,0x76,0x74,0x65,0xc5,0xa1,0xf5,0x24,0x32, +0x29,0xf2,0xab,0x88,0xc8,0x90,0x50,0xfe,0x2c,0x35,0x2e,0xae, +0xeb,0x7c,0xb7,0xec,0xdd,0xce,0x23,0x30,0xc3,0x10,0x67,0xec, +0x33,0x78,0xcc,0x9c,0xc3,0x59,0x3e,0x7b,0x94,0x90,0xab,0xb1, +0xe0,0x3b,0x9e,0x15,0x5d,0xcf,0xa4,0xc6,0xc5,0x4a,0xc6,0xed, +0xe4,0x6b,0x2e,0xca,0xec,0x81,0x51,0x92,0x71,0x3a,0xcb,0x2a, +0xc9,0xb1,0x3e,0x8b,0x0f,0xaf,0xf4,0xbf,0x14,0x54,0xca,0xc1, +0x8e,0xa0,0xff,0xfd,0x5a,0x04,0x7d,0x2d,0xb0,0x94,0xc2,0x7c, +0x36,0xa5,0xd1,0x49,0x8c,0x49,0xa0,0xb4,0xb4,0xf4,0x61,0x38, +0x01,0x1f,0xd4,0x29,0xbf,0xce,0x11,0x3e,0x65,0x9f,0x65,0x3f, +0x28,0x18,0x2e,0x76,0xed,0xe6,0xb5,0x3d,0x8f,0xfb,0x1e,0x09, +0xe0,0xe8,0x1b,0x53,0xd9,0x63,0x21,0x4a,0xe1,0x4a,0x51,0x89, +0x8e,0x3c,0xca,0x8c,0x58,0x5e,0xf6,0xe8,0xe1,0x4e,0x32,0x9e, +0x9a,0x06,0x2a,0xf8,0xc9,0xe1,0x52,0x6d,0x1e,0xa6,0xdc,0xbb, +0x7e,0x23,0x5b,0xda,0x07,0x20,0xfb,0x70,0x8f,0x3a,0x4c,0x38, +0x50,0xd6,0xc3,0xc7,0xf9,0x5d,0x8f,0xbf,0x99,0x7c,0x2d,0x55, +0x56,0x64,0xf0,0x13,0xc8,0xd4,0x10,0x15,0x06,0x9f,0xd0,0x3a, +0xa6,0xca,0x1e,0xaa,0x70,0x78,0x2a,0x0f,0x93,0x98,0x8e,0x9c, +0xfc,0x56,0x05,0x58,0xc2,0x6a,0x64,0xc9,0x8c,0x39,0x08,0x06, +0x04,0x8e,0x77,0xe1,0x71,0x06,0x92,0xc5,0x3c,0xd2,0x8b,0x99, +0x23,0x10,0x0b,0xad,0x78,0x65,0x8c,0x1f,0xfc,0x0d,0xca,0x06, +0xb0,0xec,0x01,0x0b,0x3a,0xd0,0x45,0x50,0xe7,0x0e,0xe8,0xd0, +0xa6,0x1f,0xa7,0x11,0xd0,0x39,0x8c,0x3a,0x54,0x21,0xfc,0x31, +0x3a,0x89,0x74,0xb2,0xc5,0x5e,0x15,0x9e,0xf5,0xee,0x15,0x7d, +0x3c,0x4e,0xbd,0x6b,0x31,0xe4,0xd1,0x25,0x8d,0x4f,0x5b,0x5f, +0x05,0x67,0x1c,0xa1,0xe3,0x6b,0x2a,0xa9,0x2d,0x29,0x2f,0xe6, +0x0c,0xd8,0xd1,0x0a,0x3c,0x43,0x86,0xd0,0x2f,0x9d,0x85,0x78, +0xf6,0x5a,0xce,0x70,0x41,0x57,0x89,0x73,0x0f,0x8f,0x13,0xb4, +0x70,0xbb,0x35,0xf2,0x7e,0x19,0xea,0xe3,0x52,0xef,0x96,0xb4, +0xf7,0x28,0x1b,0x8c,0x8e,0x6a,0x60,0xc7,0x06,0xe1,0x86,0xe3, +0x0b,0x71,0x39,0x7e,0xd9,0xa8,0xc7,0x4b,0x7b,0x13,0x8d,0xc0, +0x8c,0x58,0xf8,0x7c,0x7c,0xd2,0xfb,0x17,0x8f,0xa8,0x40,0x5e, +0x8e,0xcb,0x9b,0xba,0x79,0x5c,0x07,0xcb,0x94,0xfe,0x15,0x20, +0x5d,0x22,0xb3,0x15,0x76,0x91,0x34,0xe3,0x52,0xcb,0x0e,0x33, +0x0e,0x95,0x99,0xf6,0xa6,0xf2,0xa6,0xd4,0x56,0x4a,0x90,0x62, +0x21,0x81,0x26,0xbc,0x3e,0xf6,0xe9,0xe5,0x5f,0x21,0x67,0x00, +0x73,0xee,0x43,0x6e,0x2f,0xe6,0xde,0x65,0xc1,0x00,0xf6,0xd3, +0x92,0x73,0x9b,0x16,0x00,0x34,0xa0,0xf4,0x00,0x06,0x47,0xd0, +0x80,0x9a,0xf5,0x41,0x18,0x25,0x5d,0xa8,0xc2,0x76,0x36,0x57, +0x34,0xa7,0xb6,0xd3,0xef,0xcb,0x51,0xea,0xd1,0x01,0x19,0xe5, +0xc2,0x4e,0x3e,0x50,0x70,0x1b,0xa4,0xdd,0xd0,0xc2,0x53,0xb8, +0x10,0x4d,0xed,0x69,0x4f,0x74,0xcd,0xaa,0xc7,0xbd,0x73,0x3c, +0x22,0x7a,0x27,0x71,0x86,0x22,0xb5,0xb8,0xb9,0xb4,0xb6,0xb8, +0xbc,0x84,0xd3,0x67,0xe1,0x36,0x16,0x93,0xfb,0x23,0xfd,0xdf, +0xd4,0xbf,0x37,0x28,0xe2,0x1d,0xb7,0xe9,0x6c,0x3f,0x76,0x92, +0x83,0x7b,0x60,0x44,0xfa,0x0f,0xb4,0x6f,0x6d,0x5a,0xd7,0x59, +0xc5,0x5b,0xbc,0xd1,0xff,0x56,0xf3,0x21,0x27,0x2e,0x44,0x81, +0x50,0x9f,0xdf,0xa4,0x3e,0xff,0x15,0xf2,0x06,0x31,0xef,0x01, +0x14,0xf4,0x62,0xc1,0x08,0x0b,0x46,0x70,0x80,0xa0,0xd1,0x5d, +0x30,0x62,0x84,0x4f,0xf1,0xbf,0x48,0xc7,0x9d,0xfa,0xe7,0x25, +0xbf,0x6a,0x14,0xf2,0x3e,0xdb,0x9c,0x0e,0x5b,0xa8,0x58,0x5e, +0x75,0x1e,0xf1,0x7a,0xa9,0xe5,0xc1,0x97,0xac,0xae,0xdf,0xd5, +0x7e,0x4c,0xf5,0xd0,0x7e,0xcd,0xf5,0x66,0x95,0xda,0xfc,0x9b, +0xd6,0xa7,0x83,0xd7,0x1f,0x5c,0x3b,0xf8,0x48,0xe3,0x95,0x71, +0x65,0x3f,0xbf,0xb9,0xe5,0x60,0xbf,0xda,0x3d,0x4e,0x7c,0x0a, +0x67,0x08,0x18,0x29,0xa2,0x91,0xb4,0x5c,0xe9,0xe8,0x01,0x52, +0xdc,0x96,0xdb,0x99,0xd1,0xa6,0x96,0xce,0x07,0x1b,0x7a,0xe9, +0xb8,0xe8,0x70,0xb8,0x75,0xec,0xfc,0xc0,0xa8,0x0e,0xc0,0xd8, +0x6c,0x69,0xc3,0x75,0x2d,0x69,0xc3,0xf5,0x86,0x9c,0xcc,0x36, +0x85,0xd1,0x03,0xec,0x98,0x39,0xac,0x26,0x5e,0x5a,0x46,0x2a, +0xc8,0x1e,0x92,0x70,0x37,0xf1,0xfe,0xd5,0x9b,0x99,0xd2,0xb6, +0x12,0x39,0x8a,0x1d,0xea,0xff,0x3a,0x20,0xad,0x0d,0x3e,0xf9, +0x9e,0xd5,0x15,0x4f,0x9a,0x5b,0xd3,0xd1,0x99,0x80,0x62,0x1b, +0xed,0xe0,0x21,0x46,0x4c,0x25,0x1d,0x18,0xf7,0x08,0x22,0xe0, +0x12,0xb6,0x8f,0x91,0xfe,0xf7,0x90,0xdd,0x8d,0xd9,0x4f,0x59, +0xe1,0xa4,0xf0,0x09,0x11,0xcd,0xba,0x9f,0xc3,0x46,0x61,0x26, +0x2b,0x5a,0x6c,0x27,0xa8,0xfa,0x00,0x54,0x19,0x18,0xc4,0xbb, +0x04,0xca,0x61,0x02,0x96,0xb3,0xe2,0xcf,0x60,0x48,0x40,0x75, +0x3f,0xaa,0x32,0x33,0x85,0xbb,0xa3,0x36,0x04,0x3e,0x89,0x83, +0xcf,0xf2,0x3e,0x54,0xbb,0x76,0xf1,0x2b,0x9c,0x71,0xbe,0x17, +0x2e,0x39,0x1b,0xb2,0xd7,0x6d,0x85,0xcd,0xb1,0x6e,0x07,0xbe, +0x7e,0xa4,0xf8,0x65,0xea,0x1d,0x0e,0x87,0xef,0x90,0x9c,0x63, +0x1d,0xda,0x3f,0x29,0x57,0xf4,0xf2,0xcb,0xaf,0x5b,0xf6,0x7b, +0x76,0x8c,0xe3,0x51,0x8f,0xe2,0x51,0xa9,0x94,0x6a,0x60,0x99, +0x91,0x9b,0xd7,0x72,0xee,0x73,0xc2,0xc8,0x6a,0x52,0xae,0x56, +0xaa,0x9c,0x77,0xa2,0xab,0x98,0xf7,0xbb,0xe2,0x7c,0xc7,0xb9, +0x9f,0xc3,0x19,0xa8,0x47,0xa2,0x07,0x03,0xee,0xf8,0xf5,0xe9, +0x04,0xf3,0x59,0x86,0x69,0xaa,0x09,0x5a,0x66,0x49,0x7c,0xa8, +0x75,0x80,0x89,0x8f,0x31,0x87,0x5b,0xb4,0xe1,0x73,0xc6,0x4d, +0xcb,0x59,0xdb,0xd1,0xb8,0xc7,0xf5,0xb2,0xdd,0x90,0xb5,0xb6, +0x89,0x92,0xf5,0x36,0x87,0x52,0x5d,0xfe,0x87,0xba,0xc7,0x2d, +0xc3,0xfd,0x37,0x4d,0x6e,0x18,0xf6,0x9b,0xd6,0xb7,0xf1,0x5a, +0x2d,0x27,0xda,0x4e,0x36,0x5f,0xb9,0xd5,0xf0,0x75,0xf6,0x6f, +0xdc,0xb3,0x3e,0xac,0x61,0x32,0xea,0xd2,0xa5,0x9f,0xe5,0xf0, +0xef,0x3f,0x49,0x1b,0xaa,0x18,0xb3,0x90,0x21,0xda,0x50,0xbf, +0x14,0x3d,0x84,0x54,0xa8,0xa7,0x61,0x9f,0xdd,0xff,0x0e,0xea, +0xba,0xb1,0xee,0x09,0x0b,0x66,0xd2,0x45,0x4b,0xb3,0xfb,0x60, +0xc6,0xa0,0x99,0x84,0x49,0xb3,0x03,0x68,0xc6,0x8c,0x2e,0xab, +0x22,0x81,0xdb,0xec,0x8e,0x68,0x9d,0x32,0xa8,0x34,0x29,0xb3, +0xce,0x2b,0x6e,0x28,0x6a,0x2f,0xec,0xa4,0x4c,0xa2,0x36,0x6a, +0x4f,0xf6,0x33,0xd5,0x17,0xed,0x4b,0x6c,0x0a,0x2d,0xf2,0x65, +0x1d,0xac,0x1a,0xbd,0xeb,0x3c,0x2a,0x3d,0x64,0x71,0x05,0x4c, +0xd4,0xc0,0x89,0xe8,0x60,0xc3,0xe0,0xe4,0x7e,0xeb,0x76,0x8f, +0x16,0x4e,0x45,0xca,0xca,0x93,0xc8,0x29,0x95,0xd0,0xe8,0x4d, +0x1e,0xb9,0x7e,0x3d,0x6b,0x3c,0x7a,0x27,0xba,0x8c,0x60,0xa2, +0x5a,0x61,0x1f,0x1f,0x00,0x0e,0x6b,0x50,0x63,0x4c,0x76,0x00, +0xbe,0x82,0x05,0x18,0x3a,0x00,0xa1,0xb0,0x04,0x4f,0xac,0x65, +0x33,0xb4,0x64,0x1e,0x30,0x2d,0xd2,0xd6,0x1f,0xc2,0x1d,0x34, +0xfa,0x19,0x7c,0xd9,0xb1,0x1a,0x1a,0x96,0x63,0x6d,0x78,0x8c, +0x81,0x04,0x31,0x99,0xda,0x91,0xf1,0x10,0xce,0x53,0x3b,0x06, +0xc6,0xed,0xc8,0xeb,0xc6,0xbc,0x27,0xac,0x90,0x41,0x3b,0x32, +0xaa,0xf7,0x3e,0x81,0x05,0xcc,0x00,0x7e,0x42,0x43,0x47,0xcf, +0xf6,0x09,0x2b,0xe6,0x34,0x13,0xd4,0xbd,0x0f,0xba,0x0c,0xea, +0x4a,0xd6,0xe9,0x1e,0x40,0x5d,0x8a,0xec,0x22,0x42,0xbf,0x72, +0x06,0x2e,0x60,0x40,0x13,0x66,0x10,0xfa,0xc9,0x19,0xb8,0x84, +0x26,0x62,0xda,0x68,0x13,0xc9,0x39,0x42,0x69,0x6d,0xd2,0x41, +0x09,0x5f,0x53,0x47,0x2c,0xae,0x50,0x7a,0x91,0x0c,0x91,0xe8, +0xef,0x88,0x64,0xc8,0x14,0x6a,0x48,0xf6,0x3d,0x0e,0x8c,0xb1, +0x81,0xc0,0xdc,0x37,0x4f,0xbf,0x29,0xfe,0x9d,0x5a,0x55,0xb4, +0xea,0xfb,0x1d,0x30,0x6f,0x5d,0xf5,0x00,0x8f,0xb3,0x5f,0x6e, +0x79,0xe5,0xf0,0x2d,0xa7,0xc4,0x38,0x6d,0x3d,0xb4,0x0e,0xe7, +0x6f,0xe5,0x0e,0xf6,0xd0,0x18,0x28,0xd3,0x18,0x44,0x8c,0xc7, +0xe0,0xab,0x87,0x94,0xee,0xea,0xf1,0xf2,0xf8,0xd8,0xe3,0xba, +0x31,0xee,0x09,0x3b,0x5a,0x25,0xed,0x61,0xe7,0x0d,0x73,0x60, +0xc9,0x00,0xfe,0xa0,0x09,0x9f,0xe3,0x1c,0x74,0xd3,0x04,0x37, +0xbc,0x8f,0x0c,0x93,0x75,0x4a,0xe6,0x57,0xa6,0x25,0x4b,0x22, +0xd0,0x5b,0xe0,0xcd,0x8a,0x3f,0xc0,0x1c,0xaa,0x89,0xef,0x83, +0x3e,0x43,0x95,0x31,0xb5,0x48,0xff,0x80,0xd4,0xf1,0xc9,0xe9, +0x11,0x8f,0x23,0x06,0x2b,0xb4,0x94,0x5b,0x2d,0xf8,0xc1,0x87, +0xbd,0x7f,0x14,0x3d,0xe0,0x40,0xed,0x0c,0xb9,0x78,0xa2,0x0f, +0x27,0x97,0xef,0xe9,0xae,0xe6,0x9d,0x1f,0xe8,0xc2,0x24,0xcb, +0x6b,0xdc,0xcc,0xd1,0x9f,0x47,0x55,0x88,0xe5,0x59,0xe3,0x28, +0x67,0x79,0xab,0x48,0x8f,0x60,0xad,0x05,0x5f,0x32,0x19,0xea, +0x32,0x7f,0x31,0x0f,0x9b,0x4b,0x6e,0xa5,0x2a,0x24,0x35,0xc5, +0x0e,0x9d,0x7f,0xc5,0x61,0x15,0x93,0x58,0x9c,0x50,0x1c,0x5f, +0xa2,0x9a,0xc2,0x7b,0xe2,0x6c,0x5d,0xfc,0x6c,0xfb,0xea,0x76, +0x23,0xfe,0xda,0xfd,0xd6,0x6f,0x2b,0xde,0x70,0xe2,0x62,0xf8, +0x82,0x78,0x6a,0x1b,0xaa,0xe0,0xb4,0x23,0xff,0x3d,0xb8,0x47, +0xba,0x35,0xfe,0x3a,0x24,0x31,0x33,0x43,0x99,0xd9,0xb3,0x8b, +0xc3,0x99,0x68,0x4f,0x43,0xd7,0x21,0x85,0x2e,0x52,0xfc,0x9c, +0xd0,0xa4,0x1c,0x18,0x9b,0x33,0xf0,0x1b,0xa4,0xf6,0x61,0xea, +0x23,0x48,0xef,0xc2,0xf4,0xfb,0x2c,0x6d,0x2e,0xf7,0x50,0x35, +0x32,0x02,0xda,0x8c,0x40,0x79,0x94,0xca,0x3f,0xda,0x48,0x2b, +0x68,0x81,0x02,0xf2,0x78,0x1f,0x78,0x90,0xed,0x47,0x69,0xd3, +0x83,0xce,0x8c,0xbe,0xa2,0xc6,0x32,0xfb,0x4e,0xde,0xc8,0x51, +0xc3,0x4d,0x39,0x80,0x13,0xf5,0xaf,0xf4,0xc0,0x7d,0xdd,0xab, +0x82,0x35,0x1a,0xb3,0xe2,0x70,0x32,0x01,0xed,0x43,0xa8,0x4d, +0x33,0x77,0x94,0x76,0xca,0xc0,0x52,0x65,0xc8,0x4a,0xbb,0x7b, +0x30,0xbd,0xc8,0xc0,0x04,0x0d,0x9c,0x80,0xfb,0x3e,0x3e,0x4d, +0xd0,0xa1,0xc9,0xce,0xb2,0xd8,0x0e,0xd1,0x34,0x73,0xdb,0xb4, +0x7e,0x3a,0x4a,0x07,0xbc,0xfc,0x86,0xf5,0x80,0xd7,0x78,0xe6, +0xea,0x18,0x50,0xcc,0x8e,0x9b,0x35,0xe9,0xa3,0x59,0x6f,0xf0, +0x18,0x0d,0xdb,0x51,0x43,0x76,0xb4,0x0c,0x6d,0x69,0xbd,0xf2, +0x85,0x59,0xa7,0x70,0x16,0xba,0xea,0xc0,0x1c,0x4b,0x16,0x8f, +0xb8,0xa0,0x64,0xe5,0x64,0xf9,0x46,0xd3,0xdf,0xde,0x74,0xbc, +0xcd,0x06,0x22,0x0b,0x76,0xcc,0xb9,0x2d,0x67,0x4e,0x86,0x9b, +0x71,0x36,0x51,0xfe,0x81,0xfa,0x0b,0x16,0x49,0x8b,0xb5,0xbd, +0x65,0x9e,0x57,0x95,0xdc,0x4a,0x93,0x56,0x03,0x7c,0x74,0x1e, +0x16,0x70,0x98,0xcf,0x9c,0x2f,0x3a,0x5f,0x5c,0x22,0xd7,0xc0, +0xa2,0x11,0xbe,0x20,0x58,0x48,0x73,0xb3,0x1b,0x53,0xef,0xc1, +0x39,0x68,0xc0,0xbe,0xb1,0x4f,0xa9,0x93,0x0a,0x99,0x3d,0xb4, +0xc0,0xa0,0xe6,0x5d,0xd0,0x64,0x50,0x53,0x0a,0xb6,0xe6,0x61, +0xd4,0xa4,0x16,0xfe,0x30,0xba,0x82,0xe4,0x1b,0x94,0x9a,0x55, +0xd8,0xaa,0xba,0x1d,0xf1,0xde,0x13,0x98,0xab,0xc7,0xbf,0xcc, +0x7e,0x5c,0x78,0xa7,0xba,0xdd,0x7c,0xc0,0x65,0x38,0xa8,0x29, +0xac,0x20,0x3d,0xee,0x62,0x2a,0x4c,0xe4,0xf5,0xf3,0xc2,0x70, +0xa6,0x41,0x8a,0x49,0xbe,0x45,0x95,0x6c,0x4f,0x45,0x7b,0x6d, +0x53,0x8b,0x4d,0x2d,0x6f,0x6e,0x66,0x68,0xa7,0x7d,0xda,0xb5, +0xdc,0xa3,0xde,0xa7,0x19,0x7a,0x2a,0xf9,0xa8,0x2e,0xbc,0xe9, +0x14,0x5c,0x17,0xda,0x18,0xd1,0x2a,0xab,0x1d,0x91,0x64,0x96, +0x62,0x99,0x6e,0x23,0x8b,0x53,0x42,0x13,0xf5,0x64,0xd0,0x12, +0xd6,0x91,0x1c,0xe5,0x2e,0xdd,0x3f,0x4f,0x94,0xf6,0xd3,0xe2, +0x79,0xd5,0xb2,0xd7,0xa3,0xed,0xdf,0xfc,0x36,0x5d,0xaa,0xb7, +0x94,0xdf,0x6e,0x8c,0xf3,0xdb,0x9b,0x30,0x62,0x95,0xa9,0x91, +0x63,0x9c,0xec,0x65,0xca,0xb7,0x86,0x0e,0xfb,0xd5,0x04,0x71, +0xa2,0x3b,0xce,0xa1,0xd8,0x3f,0x49,0xb1,0x5f,0x2c,0x36,0x12, +0xac,0x79,0x02,0x05,0x1d,0x58,0xf0,0x10,0x92,0x69,0x02,0xdc, +0x18,0x9b,0x3d,0xf0,0x0e,0x6a,0x98,0xbd,0xc2,0x36,0x82,0xa6, +0xf7,0xc1,0x94,0x11,0xfc,0x70,0x3d,0x31,0xcc,0xd1,0xc8,0xd4, +0x4e,0xf1,0x36,0xe4,0x07,0xc2,0x2f,0x07,0xb6,0xfa,0x71,0x63, +0xeb,0x69,0x3b,0x68,0x7a,0x00,0x4d,0x99,0xd1,0x70,0xfc,0x91, +0x68,0x66,0xeb,0x97,0x9a,0x5d,0xba,0xdc,0xd0,0xd5,0xd6,0xdc, +0x6b,0x56,0xc9,0x9b,0xeb,0x19,0x9a,0x6a,0xd9,0xb8,0xd4,0xb8, +0x37,0x7a,0x77,0xc2,0xf5,0x2a,0x3e,0xaa,0x07,0x9f,0x38,0x84, +0xd4,0x86,0x5d,0x8a,0x68,0x94,0xd5,0x0a,0x4f,0xb2,0x4a,0xb6, +0x49,0xb3,0x93,0xc5,0xa9,0x21,0x09,0xda,0x30,0x2f,0xa3,0x50, +0xb3,0xdc,0xa0,0xc6,0x5c,0x76,0x9f,0xd9,0x66,0xc7,0xe5,0x9e, +0x39,0x7a,0xfc,0x9f,0x45,0x3f,0xd7,0xbf,0xe8,0xec,0xd6,0xbf, +0x6a,0x7b,0xc7,0xb7,0x31,0x24,0x3f,0x27,0xb6,0x2e,0x1d,0x3e, +0xe3,0xf5,0xf3,0x65,0x66,0x8e,0x1e,0x1f,0x25,0x24,0x01,0xa7, +0x7d,0x73,0x14,0x16,0xef,0xac,0xa4,0xaa,0x61,0xeb,0xab,0x83, +0xb7,0x60,0xb1,0x1c,0x4c,0x51,0x95,0x36,0xbf,0x58,0xbc,0xff, +0x20,0x2e,0xd9,0x21,0x5f,0xa9,0x0b,0x33,0x1f,0xbe,0x7a,0x14, +0x07,0xd3,0x64,0x45,0x5b,0xd0,0x26,0xff,0x40,0x47,0x22,0xfd, +0x49,0xf7,0xae,0x7d,0xcc,0x88,0x6c,0xe5,0x36,0xfd,0x9f,0x4e, +0x96,0xf6,0xf1,0xab,0xae,0xd8,0xf4,0x50,0xc1,0x2e,0xbc,0xb1, +0x24,0x41,0xba,0xce,0x8a,0xf6,0x46,0xed,0x2e,0x7c,0x5d,0x77, +0xf5,0xa3,0xf4,0x6e,0x4e,0x5c,0x9a,0x43,0x82,0xb5,0xdd,0x8f, +0x39,0x18,0x74,0x9c,0xe6,0xab,0x7b,0xcb,0x46,0xd2,0x07,0xa4, +0x3b,0x19,0xd7,0x10,0x38,0x4a,0x71,0xc7,0x40,0xb8,0x94,0x38, +0x0d,0xd8,0x43,0x31,0xf1,0x16,0x12,0xfb,0x30,0x91,0x3a,0xb0, +0x1b,0x93,0xef,0xb1,0xa0,0x0e,0x7b,0x09,0xaa,0xdf,0x05,0x75, +0x46,0x98,0xbe,0x81,0xa8,0xe2,0xe7,0x0c,0x2e,0xda,0xbe,0x1d, +0xb7,0x6c,0x96,0xaf,0xd0,0x06,0xd9,0xa7,0x7f,0xbc,0x8c,0x87, +0xe9,0xe3,0x9b,0x75,0xb1,0x2f,0x76,0xc2,0xd2,0x2d,0x55,0xbd, +0x3c,0xee,0xfa,0xf1,0xe0,0x37,0x20,0x2f,0x27,0x0e,0xc3,0x24, +0x02,0xea,0x87,0x51,0x9d,0x19,0x55,0x92,0xf6,0x01,0xe8,0xae, +0x7e,0x98,0xd1,0xa3,0x97,0xcf,0x07,0xe9,0x3a,0xd1,0xc1,0x71, +0xd8,0xee,0x4c,0xaa,0x7b,0xe8,0x50,0x06,0xf5,0xb2,0x79,0x3a, +0x38,0x65,0x07,0x7d,0x69,0x71,0xfb,0xd1,0x89,0xa4,0x8b,0x2d, +0xf4,0x2c,0xf7,0xac,0x1d,0xd7,0x5f,0x93,0x46,0xac,0xae,0x78, +0x75,0x72,0x27,0x18,0x6f,0x1d,0x63,0x15,0x64,0x14,0x4b,0xb4, +0xf8,0x86,0xd2,0xea,0xe2,0x52,0x49,0x8d,0x08,0xca,0x60,0x4d, +0x42,0xd4,0xbc,0x0f,0x79,0x68,0x71,0x5b,0x35,0x7f,0xc3,0x38, +0xc6,0xdc,0xdf,0x3c,0xc8,0x36,0x9c,0x0a,0xaf,0x8a,0xa4,0xfa, +0xf4,0x8b,0x99,0x11,0xb8,0xc0,0x7c,0xe3,0xf6,0x6d,0x6d,0xa6, +0xfc,0x8f,0xbf,0xb5,0x83,0x4c,0x22,0xec,0xae,0xca,0x28,0xcf, +0x28,0x4c,0x0b,0x19,0xe2,0x7d,0x43,0xdd,0x43,0x5c,0x83,0x39, +0xf0,0xfe,0x7e,0x60,0x39,0x5b,0xd0,0x93,0x7b,0x3d,0x6d,0x80, +0x03,0x3b,0xd1,0x8f,0x40,0xca,0x8f,0x03,0x34,0x77,0x0b,0xbb, +0xf3,0xaf,0x65,0x5e,0xd6,0xca,0xe4,0x83,0x54,0x3c,0x8f,0xb8, +0x6a,0x71,0xaa,0x9a,0xdf,0x60,0xca,0x4a,0x8d,0xdf,0xf0,0xdd, +0x15,0x78,0xf7,0x7e,0x90,0x19,0x33,0xa1,0x9d,0x65,0xaa,0x71, +0xb1,0x65,0x9b,0x29,0x87,0x07,0x99,0xb6,0xe6,0xb2,0xa6,0x14, +0x2a,0xcc,0x36,0x8f,0x7d,0x4e,0xf3,0x37,0xe6,0x2e,0x04,0x51, +0x79,0xd6,0x34,0xf6,0xd9,0xc0,0xaf,0x90,0x3a,0x88,0xa9,0x94, +0x81,0x8e,0x42,0x3b,0xc1,0xa3,0xb7,0xa5,0x69,0x0a,0x47,0xa5, +0x3c,0x3b,0x7a,0x84,0x3a,0x7e,0xa6,0x50,0x25,0xac,0x96,0xe6, +0x75,0xcb,0xf4,0xa3,0x0c,0x1c,0xd4,0xc2,0x83,0x38,0x45,0x0b, +0xa6,0xa0,0xd1,0x3a,0x51,0xa3,0xef,0x36,0xa8,0x49,0x3a,0x42, +0x57,0xd8,0x4f,0xfc,0x74,0xac,0x54,0xd6,0x1c,0xa4,0x8c,0x51, +0x55,0x5a,0x56,0x52,0x40,0xb5,0x27,0xac,0xea,0xc2,0x95,0x6c, +0x63,0x5b,0x61,0x73,0x52,0x13,0xc5,0x40,0xc6,0x89,0x6a,0xa3, +0xa7,0xc7,0x8b,0xfa,0xf9,0xfd,0x97,0x4f,0x77,0xfb,0xb5,0x72, +0x82,0x16,0x5e,0x25,0xd8,0x15,0x80,0x5f,0xa8,0xe3,0x4c,0xf9, +0x16,0xe3,0xd6,0x37,0x85,0xef,0x52,0x61,0x85,0x2c,0x2c,0xc5, +0x3c,0x89,0xf0,0xd5,0x64,0x7e,0x66,0xda,0x32,0x72,0x7a,0x14, +0x46,0xeb,0x30,0x8e,0x6a,0x61,0xaa,0x63,0x51,0x1e,0xd4,0x40, +0x9e,0x11,0x7b,0x44,0x47,0x02,0x8d,0x18,0x35,0xf6,0x59,0xdf, +0xdb,0xf1,0xbb,0xa5,0x1e,0x80,0x41,0x2f,0x1a,0xdc,0x61,0x61, +0x81,0x24,0x2d,0x17,0xdc,0xa2,0xd5,0x8f,0xf2,0xa1,0x3e,0x89, +0x1d,0x38,0x3f,0x7c,0x57,0x0e,0xe4,0x51,0x8d,0x19,0xf3,0xff, +0x9a,0x56,0xbb,0x23,0x52,0xb1,0xeb,0xc1,0x73,0x04,0x0a,0x40, +0x0e,0x0b,0xd8,0x99,0xc2,0x99,0x51,0xda,0x69,0x93,0x9e,0xe1, +0xda,0xfc,0x11,0x69,0x56,0xfe,0xa1,0xdb,0x56,0xf0,0x85,0x5a, +0x11,0x05,0xfb,0xb2,0x01,0x95,0x76,0x9f,0x66,0x4e,0x9f,0xf1, +0x36,0xd7,0x33,0xc1,0x25,0x7a,0x9c,0xb8,0x09,0xa7,0x93,0x96, +0xdc,0x96,0xe2,0x4b,0xe5,0x1c,0xd8,0x32,0x6e,0x76,0xd6,0xd6, +0xaa,0xb6,0x2e,0x65,0xce,0x65,0xae,0xf9,0x96,0x8e,0x7c,0xb1, +0x6f,0x99,0x7b,0xb1,0x9b,0xa1,0xa7,0xaa,0xf7,0x01,0xbf,0x02, +0x43,0x1e,0xfc,0x07,0x40,0xe6,0x97,0xc1,0xdf,0xb8,0x7a,0xf4, +0x66,0x8b,0x0a,0xf3,0x4a,0xb2,0x4a,0x38,0xd0,0x68,0x15,0x15, +0x4d,0xe0,0x38,0x63,0xa5,0xb9,0x5f,0x7b,0x8b,0x2d,0x27,0x64, +0xeb,0x92,0x3b,0x85,0xdf,0xb4,0x0f,0xf6,0xd9,0x95,0xf3,0xfa, +0x86,0x8a,0x96,0x07,0xdc,0x39,0xa8,0xe8,0x22,0x1a,0xda,0xfb, +0x4c,0x37,0x3a,0x16,0x99,0xf3,0xdf,0x57,0x7e,0xdb,0x73,0xfd, +0x32,0xd7,0x6a,0x4a,0x34,0x75,0x76,0x18,0xaf,0x75,0xcc,0xb7, +0xe3,0x37,0x34,0x59,0x34,0x79,0x5c,0xe4,0x54,0x19,0x73,0xe5, +0x8d,0x8a,0xd8,0xb1,0x37,0x5f,0x9f,0x87,0xcd,0xad,0x7f,0x34, +0xdc,0x6a,0xe0,0xec,0xc1,0xa5,0x8a,0xbd,0x63,0xf1,0xc1,0x02, +0xb6,0x5a,0xe4,0x51,0x03,0xa6,0x95,0x6f,0x2d,0x3b,0x59,0xf6, +0xa6,0xfa,0x87,0xee,0xcb,0x83,0x9c,0x58,0x85,0xcb,0x48,0x57, +0x55,0x69,0x55,0x66,0xad,0x14,0x0b,0xfb,0x32,0xc7,0x2e,0x07, +0x0e,0xa2,0x31,0x9f,0xd8,0xd9,0x68,0x19,0x2b,0xdb,0xeb,0xe6, +0x99,0x17,0x5b,0x57,0x71,0xe0,0x03,0xee,0xe2,0x10,0xfe,0xc4, +0x58,0x9c,0x31,0x3f,0x63,0x79,0x36,0x45,0x97,0x87,0x55,0x19, +0xb0,0x2d,0x17,0x98,0xfc,0xc8,0x0e,0xfe,0x68,0xe8,0x96,0x90, +0x0d,0x61,0x1c,0xc8,0x80,0x31,0xfb,0x3b,0x4e,0x84,0x39,0xc6, +0xe0,0xe7,0x98,0xde,0xc3,0xef,0x48,0x51,0x4e,0xd7,0xca,0xec, +0xab,0xea,0xa8,0x6b,0xa8,0xe3,0x70,0x17,0x2d,0xcd,0xa2,0x6a, +0xa7,0xa0,0xca,0x6c,0x9e,0xa2,0x2b,0xaa,0xf6,0xb0,0x33,0xff, +0x5e,0x44,0x45,0x09,0xc3,0x58,0x86,0xa6,0xb6,0x29,0x40,0x3f, +0xec,0x11,0x64,0x31,0x44,0xda,0xd4,0xa7,0x2a,0xa9,0x52,0x2b, +0x71,0x7c,0x53,0x9f,0x60,0x3b,0x0e,0x77,0x88,0xb2,0x6f,0x99, +0x68,0x3c,0xaa,0x83,0x32,0x38,0x6b,0x4b,0x9d,0x26,0x0f,0xcb, +0x60,0x52,0x37,0x2c,0x4c,0x00,0x15,0xee,0x3e,0x0e,0x33,0xfb, +0x0a,0x4e,0x3f,0x94,0x87,0x19,0x4c,0x43,0x76,0x5e,0x83,0xc2, +0x1d,0x56,0x27,0x43,0x66,0x6c,0xd9,0xa8,0x09,0xc9,0x3e,0xde, +0x61,0x08,0x13,0x54,0x8b,0xa8,0xe8,0x98,0x74,0xd9,0xa6,0xd3, +0xb3,0x85,0x12,0xb3,0x97,0x8e,0xe1,0x49,0x94,0x91,0x38,0xe8, +0xaf,0x7b,0xc3,0x37,0xb2,0x46,0x38,0x61,0xdd,0x22,0x42,0x4f, +0xbb,0x08,0x64,0x58,0xd0,0x43,0x19,0x42,0x4d,0x58,0x8e,0x32, +0xac,0x98,0x77,0x91,0x32,0xf3,0x21,0xca,0xcc,0xe7,0xc4,0x4b, +0x84,0x8a,0x10,0x88,0xa3,0xb2,0xf9,0x21,0x84,0x53,0x66,0x6e, +0x1d,0x9b,0xd3,0x47,0xa5,0x09,0x03,0xb1,0x42,0x2c,0xa1,0x95, +0x6e,0x11,0xcc,0x92,0xfe,0xef,0x2c,0x02,0xb3,0xe8,0xff,0x9d, +0xc5,0x8a,0x19,0x75,0x54,0x3c,0xdf,0xa7,0xe2,0x19,0x55,0xa5, +0x64,0x51,0x3d,0x40,0x05,0xf3,0xe8,0xca,0x14,0x12,0x79,0x2a, +0xe8,0x68,0x80,0x96,0xe7,0x59,0x3e,0xd1,0xa0,0x2d,0xb1,0x2f, +0xb5,0x35,0x5d,0x36,0x2e,0x38,0x36,0x24,0x36,0xb4,0x31,0x8f, +0x0f,0x6e,0xf7,0xb8,0xe7,0xd7,0x64,0xed,0xcf,0x27,0x79,0xa7, +0xda,0xa7,0x3a,0x78,0xd3,0xfe,0xda,0xf3,0x6c,0x66,0x6f,0xca, +0x50,0x52,0x1f,0x95,0x24,0x1b,0x46,0x23,0xc8,0x4d,0xda,0xec, +0x4e,0xf6,0xd9,0x67,0x7e,0xdc,0xf7,0xaa,0xfb,0x0d,0xaf,0x76, +0x23,0x5f,0x3e,0xd3,0x31,0xc3,0x36,0xc3,0xda,0xc1,0xdf,0x3e, +0xc0,0x2e,0x28,0x1c,0xc2,0xf8,0xbe,0x94,0x1b,0x39,0x5d,0xc5, +0xa7,0x3b,0x78,0x5d,0xb7,0xa3,0x3e,0x7b,0x83,0x53,0xb1,0x97, +0xf7,0x8b,0x94,0xd6,0x96,0xcf,0xd6,0xe2,0x6f,0x15,0x3d,0xaa, +0xba,0x51,0x97,0xe0,0x1f,0x4f,0xff,0xb2,0x13,0xf9,0x5a,0xdb, +0x3b,0x2f,0xab,0xfe,0x8a,0x85,0xc5,0xb2,0xcf,0x98,0xad,0xd1, +0x1b,0xc3,0x0c,0xe5,0x1d,0xa3,0x82,0x42,0xed,0x16,0x18,0x4b, +0xbb,0xdc,0xb6,0x32,0xd7,0x8b,0x0b,0x3b,0x92,0x15,0xd2,0x6f, +0xc7,0xbf,0x87,0xf9,0x72,0x98,0xcc,0x88,0x36,0xf9,0xc4,0x47, +0xc7,0x54,0x65,0xe1,0x61,0xca,0x60,0xbf,0x3f,0x18,0xbc,0x99, +0x79,0x87,0x62,0x25,0xeb,0x58,0xa3,0xd6,0x0f,0x87,0xa9,0x10, +0x5c,0x7b,0xcb,0x6e,0xd0,0xbb,0x93,0x93,0xae,0x2f,0x11,0xd8, +0xd1,0x26,0xed,0x56,0xed,0x2c,0xce,0x97,0xae,0xa3,0x17,0x53, +0x57,0xbd,0x07,0xdf,0x6e,0xf4,0x7d,0x0a,0xfe,0x1d,0xe8,0x4f, +0x5b,0xd7,0x5d,0x40,0x4b,0xf6,0xae,0xfb,0xb0,0x8b,0xc1,0x5d, +0x92,0x77,0x76,0x1d,0xc0,0x5d,0x0c,0xfc,0x21,0xca,0x91,0x0e, +0xf8,0xc5,0x70,0x50,0xd0,0x17,0x8d,0x44,0xda,0xab,0x19,0x42, +0x15,0xc1,0x25,0x30,0x1b,0x96,0x30,0x7d,0x38,0x9b,0xd0,0x83, +0x65,0x38,0x9b,0x4a,0x01,0x43,0x82,0xf3,0xe9,0xeb,0xf3,0x59, +0xd0,0x9f,0x47,0x5f,0x9a,0x8f,0xcb,0xa8,0x2e,0x3d,0x3b,0xda, +0x4e,0xb2,0x15,0xdb,0xd4,0xff,0x38,0x50,0xd6,0xcf,0x2f,0x1c, +0xb1,0x1d,0xf2,0x94,0x9a,0x72,0x2f,0x2d,0x93,0x93,0x38,0xe9, +0x10,0x8d,0xf5,0x87,0x87,0x97,0x6f,0x65,0x8e,0x70,0x70,0xfa, +0x3c,0x11,0xa7,0x09,0xc7,0x85,0x69,0xac,0x48,0xf0,0x29,0x81, +0x0a,0x78,0x81,0x15,0x2c,0x1e,0xfb,0x40,0x92,0x52,0xe3,0xce, +0xa7,0x86,0xff,0xb9,0x8d,0xaf,0x68,0x58,0xfe,0x24,0x3c,0x29, +0xe2,0xbc,0xb4,0x54,0x8f,0xb4,0x98,0x76,0x46,0x51,0x42,0x45, +0xbd,0x5c,0x85,0x9e,0x3b,0x7b,0xf0,0xb4,0xc3,0x76,0x2d,0xf9, +0x32,0xf3,0x8e,0xca,0x9a,0xca,0xac,0x3c,0x59,0xfc,0xbe,0x96, +0x22,0x64,0x1f,0x45,0x88,0xbf,0xd8,0x42,0x30,0xe8,0xa3,0x81, +0x8f,0xc0,0x97,0x6a,0xb8,0xda,0xb1,0x79,0xd4,0xec,0x20,0x46, +0x43,0x92,0x27,0x8a,0x0f,0x40,0x91,0x41,0x45,0xa9,0x4d,0x57, +0xdc,0x47,0x7b,0xb0,0xd1,0xb3,0xe5,0x44,0xb4,0xc2,0xdf,0xd4, +0x74,0x85,0x9b,0x3d,0xc6,0x0c,0x7e,0x23,0x71,0x6b,0xfb,0x1e, +0x68,0x97,0x6e,0xee,0x69,0x27,0xd0,0xfe,0x1c,0xdb,0xd9,0xbe, +0x79,0xd0,0xfe,0x92,0x3e,0xcf,0x1c,0x7d,0x45,0x91,0x0c,0x93, +0xbb,0x71,0xf2,0x43,0xb5,0x03,0x68,0x4d,0x1f,0x36,0xea,0xbd, +0xc6,0x69,0xc0,0x1f,0xa3,0xb2,0x48,0x0d,0x8c,0x0e,0xa3,0x93, +0x3e,0x38,0xed,0x46,0x7d,0x7d,0xd0,0xdf,0x89,0xe1,0xda,0x42, +0x63,0x1f,0xc6,0x3e,0x07,0x9b,0x2e,0xb4,0x79,0x06,0xc1,0x5d, +0x18,0x7c,0x0f,0xac,0x40,0x0d,0xad,0x6e,0x81,0x02,0x23,0xa6, +0x14,0x93,0x56,0xb6,0xc0,0xbb,0xd4,0xab,0xca,0x53,0xd2,0xef, +0x13,0x47,0x6c,0xae,0x78,0x4a,0xcd,0xf2,0x78,0x79,0x9a,0x72, +0x98,0x52,0x74,0x7d,0x71,0x65,0x51,0x49,0x11,0x67,0xc2,0xfe, +0x0c,0xc7,0xa4,0x0a,0x61,0xf1,0x9f,0x0a,0xd1,0x4c,0x2b,0x84, +0xd0,0xb2,0x85,0x28,0xa2,0xf5,0x08,0x8b,0xc7,0xc5,0xcb,0xb4, +0x54,0x44,0xdf,0x05,0x7f,0x4a,0xb7,0x97,0xc6,0xd5,0xd8,0x99, +0x01,0x3c,0x43,0x4b,0x85,0xa2,0x64,0x8e,0xe2,0x6d,0x6a,0x33, +0x1c,0xb5,0x23,0xb0,0x78,0x23,0x2e,0x66,0xe0,0xfd,0x3c,0x5c, +0xf5,0x1a,0x56,0x31,0x63,0x9a,0x3b,0xa9,0x17,0x8e,0x50,0x2f, +0xcc,0x84,0x0b,0x52,0x33,0x71,0xb4,0x5d,0xe7,0xc3,0x11,0x49, +0x3a,0x4d,0xbc,0x69,0x33,0xe0,0xd9,0x3e,0x9e,0xa1,0xc6,0x27, +0x71,0x8a,0x22,0x1d,0xcb,0xbf,0xee,0x5d,0xbd,0x21,0x45,0x2d, +0x2a,0x89,0x60,0xa9,0xb0,0x0d,0x4a,0x59,0x71,0x22,0x32,0xe4, +0x0e,0x5c,0x57,0x62,0xc5,0xf4,0x03,0xd4,0xfb,0x07,0x8c,0x59, +0x61,0x86,0x05,0xb9,0x07,0xd7,0x0f,0xd3,0x52,0x23,0xee,0xa6, +0x3a,0x34,0xea,0x21,0xad,0x5e,0xf5,0xd8,0x38,0x36,0x87,0xb6, +0x0f,0x67,0x7b,0xf0,0x2c,0x6d,0xe1,0x8e,0x49,0x2d,0xdc,0xb1, +0xfb,0x70,0x8c,0x11,0x00,0x7d,0x08,0xa8,0x88,0x31,0xd2,0xda, +0x5f,0x4b,0x61,0x09,0x59,0xbe,0xf6,0x9d,0x74,0xb7,0xc2,0xdb, +0xe5,0x2b,0x18,0x58,0x39,0xef,0xdd,0xbf,0x96,0xb3,0x63,0x3e, +0xb7,0xa8,0x22,0x3f,0x40,0x15,0xf9,0x68,0x07,0xfe,0x45,0x76, +0x64,0x1f,0x2b,0xd0,0x28,0x7a,0xdc,0xda,0xdf,0x7b,0x71,0x80, +0x6b,0x12,0xed,0x0d,0x84,0x2f,0x59,0x1b,0x73,0x7d,0x8b,0x23, +0xb6,0xea,0x95,0xc6,0x75,0x16,0x97,0x4c,0x5c,0xf8,0x4b,0x56, +0x8d,0x76,0xdd,0x4e,0x27,0xdd,0xf6,0x79,0xad,0x0d,0xc8,0xa6, +0xac,0x3b,0x31,0xef,0x75,0xd9,0x83,0xda,0x9b,0x8e,0xcf,0x4e, +0xff,0xe1,0xc9,0xcd,0x14,0xec,0x46,0x39,0x62,0x20,0x18,0x74, +0xa2,0xe5,0x63,0xf0,0xee,0x46,0xef,0x17,0xea,0xdb,0xd1,0x4a, +0x0f,0xac,0xf6,0xb1,0xe2,0x1a,0x38,0x28,0x35,0xc7,0x3a,0x1f, +0x94,0x24,0x17,0x4c,0xba,0x61,0xd3,0xff,0x8f,0x0b,0x8c,0x24, +0x92,0x2a,0xf9,0x48,0x52,0xd4,0x05,0xaf,0xc7,0x25,0xf6,0x21, +0x43,0x16,0x02,0xf0,0x57,0x49,0xeb,0x34,0x8f,0x7d,0xda,0xff, +0x16,0x62,0xfa,0x30,0xe6,0x21,0x7c,0xd5,0x8d,0x5f,0xdd,0x93, +0x26,0xd7,0xd2,0x32,0x38,0xb7,0xd3,0x5d,0x58,0x54,0xdc,0x03, +0x73,0x59,0xf1,0xc3,0x41,0x82,0xca,0x77,0x41,0x99,0x11,0x3a, +0x96,0x13,0x71,0x5e,0xbf,0x30,0x8f,0x19,0x73,0x3d,0x4c,0x40, +0xf9,0x30,0x2a,0x33,0xf0,0x20,0x90,0xd6,0x73,0xe1,0x08,0x1c, +0x95,0xa6,0xca,0xce,0x23,0x5f,0xc3,0xfd,0x5d,0x2c,0x7a,0xe3, +0x2a,0x12,0x5a,0x11,0x58,0x13,0x58,0xa4,0xeb,0xc3,0x67,0xb9, +0x65,0x3a,0x26,0xbb,0x70,0x10,0x7a,0x86,0xe4,0x54,0x66,0x54, +0xa5,0x94,0x6b,0xe7,0xf0,0xa1,0x76,0x81,0xd6,0x5e,0x36,0x1c, +0x7e,0xaf,0x23,0x5c,0xec,0xa5,0xf5,0x7f,0x87,0x70,0x91,0x18, +0x0a,0xf5,0x1d,0x78,0xf6,0x3a,0x58,0xc2,0x21,0xb4,0xbc,0xa2, +0x73,0x0a,0x0d,0xf0,0x10,0x18,0x9c,0x60,0xc5,0x6d,0x90,0x4e, +0xb2,0x95,0xda,0x35,0xde,0x4b,0xbf,0x45,0x2c,0xa4,0x50,0xf3, +0xfa,0x08,0x35,0x13,0x15,0x9c,0x24,0x41,0xed,0xcf,0xfb,0x43, +0x37,0x32,0xef,0x72,0x50,0xa3,0x44,0xe0,0xcb,0x5d,0xf8,0x25, +0x03,0xbf,0xcf,0xc3,0x35,0x5f,0xc3,0x1a,0x46,0x6c,0xc0,0x29, +0x34,0xba,0x7b,0x69,0x6e,0x79,0xe2,0x4f,0x12,0x8f,0xd4,0x8c, +0xf3,0x48,0x78,0x37,0x86,0x3f,0x81,0x88,0x0e,0x8c,0x78,0xc8, +0xc2,0x61,0x89,0x47,0x0e,0xdf,0x87,0xc3,0x8c,0xf0,0xf5,0x4e, +0x22,0x9e,0x10,0x27,0x08,0x27,0x98,0xb1,0xaf,0xe0,0x39,0x81, +0xc3,0x07,0xf0,0x30,0x33,0xaa,0x7d,0x8d,0xa8,0xe3,0xcb,0xcb, +0x2c,0xbc,0x5c,0x4a,0x4e,0xe1,0xcb,0x2b,0xf4,0x60,0x31,0x39, +0x89,0x2f,0xaf,0xb1,0x60,0x8d,0xfb,0xc8,0x03,0xb7,0xeb,0x4e, +0xc3,0x56,0x95,0xad,0xbc,0x5a,0xbd,0x62,0xf5,0x91,0x22,0x69, +0xe5,0x92,0x2f,0xc8,0x37,0x85,0x0f,0x6a,0xdb,0x1b,0x6c,0xeb, +0x79,0x43,0xeb,0xa3,0x4e,0x07,0xfc,0xa9,0xa4,0xf3,0x19,0x6d, +0x25,0x19,0x27,0xea,0x8d,0x9e,0x9f,0xcc,0x6d,0xe2,0xab,0xad, +0x2b,0xad,0x2b,0x2c,0x3c,0xac,0x3d,0x1d,0x7c,0x3d,0x42,0x62, +0x42,0xbf,0x0a,0x89,0x89,0x37,0xe0,0x87,0xe3,0xee,0x26,0xde, +0x4c,0x8d,0x0d,0x88,0x0b,0x88,0x0d,0x68,0xcd,0xe0,0x43,0x86, +0x03,0x2e,0xfb,0x75,0x99,0x04,0xf2,0xc9,0x9e,0x49,0xae,0x49, +0xae,0x4e,0xd1,0x8e,0x67,0x1d,0xcf,0xb6,0x0e,0x0f,0xfc,0xdc, +0xf4,0xad,0x59,0x11,0xef,0x6b,0xee,0x61,0xec,0x6e,0x16,0x94, +0x13,0x9c,0x13,0x98,0x53,0xdd,0x55,0x36,0x58,0xd0,0x67,0x9c, +0xc7,0xfb,0x1b,0xba,0xe9,0xb8,0x9b,0xbb,0x54,0xf1,0xa7,0x5d, +0x8e,0xf4,0x9e,0x6e,0xf7,0x6d,0x92,0x3d,0xc9,0xf8,0xea,0x98, +0xa9,0x2c,0x3f,0x44,0x21,0xf0,0xeb,0xc3,0xbe,0x5b,0x19,0xb7, +0xb9,0xf1,0xeb,0x3e,0x91,0x91,0x31,0x91,0x0b,0xe2,0x0d,0xaf, +0xc5,0xdd,0x4d,0x1a,0x4e,0x95,0x8d,0xff,0xf8,0x95,0x99,0x7c, +0xc8,0xa0,0xef,0xb0,0x6f,0x87,0xf4,0x95,0x5e,0xc9,0x6e,0x49, +0xa7,0xed,0xa3,0xed,0xce,0xd8,0x9d,0xed,0xb8,0x3a,0xf4,0xa6, +0xe1,0xa9,0x69,0x21,0xef,0x67,0xed,0x6e,0xea,0x66,0x1e,0x9c, +0x1d,0x44,0xff,0xaa,0x3a,0xcb,0xfa,0x0a,0x7b,0x4d,0xf2,0x79, +0x3f,0x43,0x37,0x3d,0x37,0xcb,0xf0,0x94,0xf0,0xd4,0xb0,0x14, +0x7b,0x5b,0xbe,0xde,0xaa,0xde,0xb4,0xda,0xd4,0xdd,0xd6,0xc3, +0xd1,0x87,0x2a,0x0d,0x45,0x31,0x80,0x58,0x56,0xd8,0xd5,0x3b, +0xb7,0x5e,0xbc,0x54,0xd3,0x52,0xd3,0x63,0x5a,0xc6,0xbb,0x98, +0xb8,0x58,0x3b,0xd9,0xfb,0x5e,0x0c,0x68,0x0a,0xee,0xe0,0xc0, +0xab,0x07,0xc3,0x18,0xbf,0x6f,0xc3,0xff,0x80,0xd9,0x72,0x60, +0xa0,0x87,0x06,0x2c,0xce,0x4c,0xfe,0x32,0x7b,0xb3,0x3c,0x06, +0xd2,0xa2,0x27,0x63,0xbf,0x4e,0x79,0xbb,0x7c,0xbd,0xe9,0xf5, +0x57,0x95,0x5f,0xa7,0x5e,0x97,0xbd,0x90,0x7c,0xe1,0x7c,0x42, +0xd4,0x9f,0xab,0xf8,0xfa,0x8b,0x4b,0x7f,0x0a,0x4b,0x09,0x3f, +0x17,0x16,0x26,0x1b,0x1a,0x72,0xe6,0x82,0x4c,0x5c,0xfe,0x85, +0x8a,0x02,0xb9,0x64,0xd0,0x60,0xb3,0x4e,0xe6,0x69,0x97,0x18, +0x9d,0xd4,0x3c,0x68,0xf1,0xa5,0x75,0x91,0x01,0xff,0xbe,0xe1, +0x71,0xf3,0x8d,0x01,0x9a,0x5e,0x36,0x4d,0x8e,0x8d,0x4e,0xf5, +0x19,0xb1,0x6d,0xa9,0xb0,0x86,0x37,0xcc,0x95,0x11,0x41,0x70, +0xa5,0xc0,0xd8,0x44,0x81,0x61,0x29,0x95,0x65,0xf3,0xa7,0x60, +0xde,0x81,0xe6,0x0f,0xc0,0x9c,0x62,0x24,0x65,0x6c,0x4e,0xcf, +0x7b,0x30,0x67,0xf4,0xa4,0x86,0x69,0xdd,0x7d,0x58,0xc7,0x08, +0xbf,0xe1,0x3a,0xe2,0x90,0x6b,0x9c,0x6b,0x9d,0xe2,0x6e,0xc9, +0xd7,0x87,0xb6,0xfa,0x54,0xd3,0x86,0xc9,0xe9,0x09,0x81,0x75, +0x07,0x70,0x1d,0xc5,0xef,0xa9,0xd1,0x69,0x44,0x4f,0x48,0xe8, +0xc6,0xd0,0xe7,0x60,0xd1,0x85,0x16,0xd2,0x1d,0xcf,0x5a,0xfa, +0xa0,0xb5,0x93,0x15,0xd7,0x83,0x22,0xc9,0x52,0x6c,0x57,0xff, +0x73,0x7f,0xb9,0xc4,0x4e,0xf7,0x6c,0xfe,0xa9,0x29,0x9a,0x14, +0xbe,0x53,0xa4,0x1f,0xdc,0xfe,0xf5,0x60,0xe8,0x26,0x6d,0x61, +0xbe,0xc7,0x93,0xa4,0x13,0x0f,0x18,0xb0,0x10,0x24,0x95,0x81, +0x90,0x87,0xe0,0xd1,0x83,0x1e,0xf7,0x28,0x2f,0xb6,0x50,0x5e, +0xe4,0x69,0x47,0x12,0xc2,0x34,0x43,0x3c,0x79,0x91,0xf0,0x26, +0xf9,0x56,0xda,0xd9,0x2e,0xde,0xfd,0x8c,0xcb,0x19,0xe7,0xb3, +0xdc,0xf3,0x97,0x1d,0xdb,0x9e,0xeb,0xec,0x5c,0x6f,0xf8,0x66, +0x33,0x6b,0x7b,0xd6,0xe6,0xac,0xdd,0x39,0x0e,0x0a,0x2d,0x08, +0x24,0x76,0x2d,0xfe,0xee,0xa7,0x8e,0xb5,0xcf,0xb5,0x76,0x6e, +0x32,0x7c,0xb5,0x65,0x2d,0x23,0x4e,0x02,0x19,0x82,0x47,0xee, +0xc2,0x11,0x06,0x8f,0x48,0x35,0xe4,0xc8,0x21,0x3c,0xc2,0x8c, +0x76,0x2e,0x25,0x62,0xad,0x0e,0xac,0x64,0xc2,0x96,0x9e,0xd2, +0x43,0xce,0xb6,0x88,0x76,0x9a,0x4b,0xda,0x6e,0xde,0x4f,0x81, +0xd9,0xdc,0x3b,0x5c,0xce,0x1c,0xcf,0xf5,0xbe,0x2e,0xff,0x3d, +0xd3,0x9a,0x95,0xd5,0xa2,0xf0,0x2b,0xab,0x93,0x2d,0x83,0xd3, +0x77,0xb0,0xce,0xe1,0x89,0x15,0x0a,0xb0,0x18,0x0e,0xb3,0x33, +0xc1,0x68,0xf4,0x36,0xf1,0xd1,0x32,0x53,0x59,0x74,0x90,0xd6, +0xc7,0xf7,0x0f,0x07,0x6e,0x67,0xdc,0x95,0x4a,0xba,0x62,0xb3, +0xfa,0x5b,0x69,0x5f,0xc1,0x2f,0xef,0xdb,0x0d,0x79,0xf5,0x70, +0xf0,0x2f,0x04,0x72,0x29,0x2d,0xa7,0x5a,0xa1,0x83,0x35,0x4e, +0x93,0x91,0xb6,0x36,0x74,0x8b,0x8a,0x2f,0x55,0xb8,0x01,0x87, +0x40,0x15,0x7d,0x30,0x95,0xd5,0xcc,0xf1,0x1f,0x94,0x17,0x16, +0xcd,0x6b,0x48,0x1f,0xff,0x90,0x81,0xf4,0x21,0x4e,0x9a,0x1f, +0x53,0xa6,0x70,0x1d,0x8e,0xd0,0x0f,0xf9,0x49,0x1f,0xca,0xa5, +0x1f,0xc2,0x23,0x70,0x91,0xac,0xc5,0x59,0x3f,0xb1,0xc2,0xd2, +0x79,0x6b,0x71,0xce,0x4f,0xac,0xf8,0x0e,0x57,0xfc,0x5b,0x30, +0x38,0x51,0x01,0x40,0x2b,0x67,0xc1,0xd8,0xbc,0xde,0xdf,0xc7, +0x69,0xf2,0x29,0xf8,0x76,0xa0,0xef,0x23,0x16,0x76,0xc2,0x6e, +0x82,0x3b,0x1f,0xc0,0x4e,0xe6,0x47,0x71,0x2e,0x11,0x5a,0xba, +0x69,0xf9,0x9f,0x05,0x33,0xbb,0x70,0xe6,0x8f,0x9a,0xeb,0x70, +0xa5,0xf4,0x30,0x55,0x1f,0xa6,0x52,0x21,0xb6,0x84,0xc1,0x54, +0xa0,0x0d,0xc0,0xce,0xfd,0xb8,0x93,0x11,0xfe,0x08,0x90,0xc4, +0xd9,0x4a,0x69,0x0a,0xdd,0x49,0x71,0x1a,0x79,0x58,0xf9,0x4d, +0x6f,0x57,0x9b,0xed,0x25,0x5e,0xcf,0x78,0xaf,0x91,0x92,0x2b, +0x07,0x3f,0x7e,0x4d,0xee,0xda,0x3c,0x34,0xea,0x33,0xa9,0x69, +0xe6,0xb5,0x9b,0x76,0xf7,0x1c,0xad,0xa4,0x64,0xfd,0x2b,0xfc, +0x4e,0xee,0xd9,0xc1,0x14,0x7b,0xd8,0xe1,0x94,0xd5,0xc9,0xe3, +0xe1,0xaa,0xc5,0xd5,0xc7,0xab,0xb8,0x96,0xd2,0xac,0xfa,0x56, +0xb9,0x14,0x9d,0x08,0xd6,0x36,0xd8,0xcd,0xdc,0x5b,0xde,0x3b, +0x33,0x38,0x23,0x2c,0x83,0xb3,0x66,0xaa,0xba,0x53,0x86,0x5f, +0xca,0xd5,0x00,0x63,0xcc,0x6e,0x3a,0x73,0xde,0xe6,0xfb,0x38, +0x19,0x1f,0xd6,0x3c,0x2b,0xa0,0x43,0x9e,0xea,0x9b,0xea,0xb4, +0x8c,0x52,0x85,0x1a,0xc9,0x6f,0x06,0xb4,0xdd,0xf1,0x8a,0x8a, +0xcd,0x55,0xc8,0x67,0x41,0x3e,0xe1,0x5c,0x1d,0x7e,0x1e,0x25, +0xd3,0x42,0xa5,0x72,0xb0,0x5f,0x70,0x60,0x40,0x70,0x8b,0x2f, +0x9f,0x97,0x9b,0x5f,0x92,0x5e,0xcc,0xd5,0x60,0x6c,0x2d,0x38, +0xd6,0xa1,0x63,0xa5,0xd6,0x52,0x3c,0xb0,0x9b,0x5d,0x1f,0x6c, +0xed,0x6c,0x2e,0x5f,0xec,0x2b,0x73,0x8e,0xb1,0xd5,0xdb,0xa1, +0x8a,0xfd,0x9a,0x59,0x06,0xfc,0xb5,0xb4,0xfe,0xb4,0xf6,0x74, +0x0e,0x2f,0xb3,0x66,0x67,0xcd,0xce,0x9a,0x4b,0x0b,0x31,0xc2, +0xaa,0x54,0xd8,0x94,0x09,0x5c,0x76,0x74,0x27,0x7f,0x2c,0x7c, +0x7b,0xd8,0xe6,0x48,0xee,0x03,0x18,0xb0,0x3f,0xe3,0x54,0x98, +0x6b,0x05,0x7e,0xbe,0xe9,0x1d,0xfc,0x96,0x44,0xa5,0x14,0x8d, +0x8c,0xab,0x95,0x9d,0xb5,0x4d,0x35,0xa6,0x35,0xbc,0x8d,0xbd, +0xba,0xd9,0x7e,0x6b,0xfd,0x5c,0xab,0x62,0xfb,0x6a,0xaa,0x8b, +0xc0,0x48,0x2c,0x60,0x6e,0xe6,0x76,0xe7,0x5e,0xcc,0xe3,0xbc, +0xc0,0x86,0x15,0x73,0x84,0x10,0x69,0xbd,0x91,0xfb,0xf0,0x39, +0x8b,0x79,0xab,0xc8,0x65,0x70,0x50,0x67,0x31,0x17,0x6d,0x09, +0xe4,0x32,0x81,0x31,0xc1,0x67,0xfc,0xe5,0x03,0xce,0x44,0x84, +0x39,0x2d,0xc0,0xf9,0x4c,0x86,0x99,0x0c,0xb0,0xcc,0x60,0x65, +0x56,0x63,0xb2,0x42,0x42,0xc5,0x85,0x8a,0x4b,0x72,0xf8,0x15, +0x93,0x90,0x99,0x90,0x1d,0x9f,0xc1,0x41,0x51,0x93,0xb8,0xc4, +0xfc,0x1e,0x13,0xe1,0x1a,0x6c,0x1f,0xe4,0xca,0x8d,0x6e,0xd9, +0x4b,0x2c,0x72,0x42,0x2e,0xc9,0xff,0xc6,0x54,0x67,0x66,0x54, +0x29,0x74,0xb3,0x26,0xe9,0x32,0x4a,0x5b,0xd9,0xc0,0x33,0xb1, +0xe9,0x0a,0x4f,0x74,0x58,0x4c,0x51,0x24,0xa9,0xa7,0x8b,0xdc, +0x9a,0xdd,0x39,0xdc,0xc8,0x5c,0x2a,0x2e,0x28,0x49,0x2d,0xa3, +0x8d,0x2d,0x06,0x11,0x71,0x77,0xb3,0xb0,0x9b,0x11,0x77,0xef, +0x21,0xc2,0x6e,0x13,0x71,0x37,0xcd,0x5d,0x17,0xe1,0x39,0x11, +0xdd,0x84,0x8d,0x82,0x1b,0xda,0xb3,0xa9,0x25,0xa9,0xc5,0x29, +0xb4,0x8f,0x3a,0xdf,0x8b,0x9b,0x99,0x82,0xea,0xfc,0x4b,0x19, +0xf5,0x1a,0xb9,0x7c,0xa0,0xb9,0xa7,0x89,0x9b,0x05,0x87,0x77, +0x75,0x20,0x90,0x09,0x77,0x0b,0x73,0x0f,0x75,0xe3,0x22,0x60, +0x3d,0x09,0xae,0xf3,0xab,0xf7,0x2d,0xd7,0xf4,0xe6,0xf3,0x4e, +0xe7,0x58,0x4b,0x6b,0xf7,0xbd,0x1d,0xb3,0x26,0xa2,0x2e,0x63, +0x13,0x96,0x55,0xa3,0x20,0xdc,0xc6,0xdd,0x40,0xe5,0x90,0x31, +0x7e,0xa6,0x0e,0x9f,0xb1,0x31,0x78,0xd7,0x14,0x57,0xae,0xc5, +0xcf,0xda,0x75,0xf9,0xbf,0x60,0x45,0x1b,0x28,0x9d,0x87,0x7b, +0xdc,0x07,0x31,0x9d,0x51,0xce,0xb7,0x7e,0x2e,0x2f,0xe8,0x33, +0xad,0x39,0x39,0x4d,0x0a,0xaf,0x59,0xb5,0x6c,0x19,0x71,0x22, +0xbc,0x22,0xdf,0x42,0xd7,0x56,0x16,0xbb,0x70,0x21,0x79,0x05, +0x5d,0x9b,0xa4,0xa3,0xe5,0xe4,0x17,0xe8,0x5a,0x4d,0x73,0xae, +0x67,0xf4,0x19,0x09,0x36,0xf5,0xd4,0x74,0xd2,0xe4,0x50,0x43, +0x0b,0x56,0x30,0x51,0x0e,0xe1,0x76,0xa1,0x8e,0xdc,0x1a,0xf1, +0x97,0x81,0xcb,0x10,0x29,0x5c,0xa4,0x45,0x30,0xa5,0x2a,0xa9, +0x26,0xb1,0x86,0x83,0x2f,0xfa,0xd7,0x33,0x45,0x2d,0xf9,0xed, +0x99,0x54,0x75,0x35,0x8e,0xdd,0x27,0xd6,0x8d,0x2e,0x37,0x7c, +0x5e,0x5f,0x85,0x49,0xf5,0x30,0xbd,0x0c,0x66,0xe9,0x65,0xf3, +0x5e,0x4b,0x5d,0x57,0x9b,0x6f,0x0e,0x7a,0x1b,0x01,0x33,0x63, +0x60,0x19,0x07,0x2a,0x83,0xa8,0x02,0x2b,0x34,0x71,0x05,0xf6, +0x6b,0x40,0x3f,0x73,0x1e,0x0f,0xa7,0xe2,0xea,0x12,0xfc,0xc4, +0x60,0x97,0xf2,0xc1,0x8d,0x47,0x6b,0x8c,0xf8,0x27,0x57,0xae, +0xde,0xea,0xbc,0x5f,0xb0,0xbf,0x42,0xfd,0x92,0x65,0xad,0x6d, +0x5b,0x72,0xdc,0x50,0x3a,0x68,0xf0,0xfa,0x05,0x32,0xe5,0x42, +0x3b,0x71,0xbd,0x68,0x5d,0xef,0x50,0x6c,0xe5,0xcc,0xd7,0xb8, +0x5d,0xb2,0x2a,0xb2,0xe3,0xc6,0x4c,0x62,0x48,0xf0,0x45,0xb7, +0x3e,0xaf,0x5a,0x13,0x77,0xbe,0xd0,0xa6,0xd0,0x20,0xcd,0x86, +0x83,0x21,0x51,0x83,0x50,0x39,0xd9,0x8e,0x56,0x4c,0x0f,0x46, +0xd2,0xce,0xe6,0x4f,0x54,0x65,0x45,0xc7,0x7b,0x04,0x26,0xd1, +0x4c,0x9f,0xc4,0xd2,0x7e,0x67,0x2b,0x15,0xab,0xf4,0x78,0x32, +0x0b,0xa2,0x1b,0xd9,0xe1,0xb6,0xc6,0x6b,0x65,0x50,0xea,0x29, +0xfe,0xd7,0xec,0x9f,0x0a,0x9e,0x97,0x72,0x62,0x37,0x7d,0x7b, +0x1a,0x7d,0x7b,0x1a,0x6d,0xfd,0xf4,0x3c,0xc8,0xa1,0xbc,0xe3, +0x25,0x5a,0x15,0xd7,0x5b,0x7a,0x7a,0xaa,0x87,0xb8,0x46,0xac, +0x64,0xf3,0x4b,0xb2,0x4b,0x33,0x4a,0x24,0x40,0xde,0x40,0x64, +0x32,0x0b,0xd3,0x8b,0x52,0x8b,0x38,0xf8,0x7b,0x00,0xbf,0x67, +0x12,0x0b,0x13,0x0a,0xe2,0xf2,0x34,0x52,0xf8,0xe0,0xe3,0xd6, +0x1b,0xd4,0x94,0xb9,0x52,0x3c,0xfa,0x2b,0xdb,0x97,0xdc,0x93, +0xd6,0x9a,0xe1,0xd6,0xc9,0xaf,0x71,0xc6,0x25,0xbe,0x38,0x29, +0x32,0x45,0x8f,0xef,0x8c,0xed,0x8b,0xef,0x4b,0xe4,0x36,0xa1, +0xaa,0x0e,0x6c,0x62,0x5d,0x34,0xd5,0xb4,0x77,0xe8,0x56,0x19, +0xf1,0xbf,0x5d,0xeb,0x1b,0x4a,0xa2,0x1c,0x87,0x26,0x03,0xb0, +0x88,0x89,0x8b,0xbd,0x20,0xed,0xb0,0x26,0x87,0xb3,0x6a,0x9b, +0xf1,0x33,0x60,0x42,0x52,0xc3,0x62,0x43,0x83,0xa5,0x69,0xf9, +0x51,0x3d,0x70,0x34,0x81,0xa9,0x70,0x4c,0x4b,0x4d,0x4d,0x4f, +0x49,0x97,0xc5,0x8a,0xdf,0x59,0x0b,0x25,0xc5,0x83,0xdb,0x0d, +0xca,0x8d,0xf8,0xca,0xdc,0xca,0xa2,0x8a,0x92,0x72,0xeb,0x7a, +0xdb,0x56,0xa7,0x63,0xf6,0xfb,0xdc,0xb6,0xf8,0xe6,0xea,0xf3, +0x3f,0xe7,0xbf,0xae,0x7a,0xdc,0x7c,0xdd,0xfa,0xb1,0xc3,0xb7, +0xee,0xdc,0xc6,0xd1,0x75,0x64,0x2f,0xe6,0x52,0xd1,0x99,0x8b, +0x73,0xc9,0x76,0xcc,0x7d,0xc1,0x8a,0xa7,0xc4,0x2a,0x32,0x0c, +0x35,0x00,0xf8,0x5a,0xdc,0xca,0x42,0x8d,0x30,0x89,0xac,0x42, +0xaf,0x5f,0xd9,0x51,0x8d,0x35,0xc4,0xd9,0xdc,0xdc,0x4a,0xdb, +0x5e,0xa7,0xd6,0xbc,0xe1,0x74,0x03,0x87,0xbe,0xba,0x64,0x11, +0x7a,0xfd,0x8b,0x42,0xe5,0xae,0x60,0x43,0xb5,0x73,0x17,0x2e, +0xfe,0x09,0x16,0x77,0xe2,0xe2,0x1f,0x61,0x6d,0xb7,0xb8,0x40, +0x0c,0x00,0x81,0xc1,0xa9,0x67,0xb7,0x47,0x68,0xca,0xab,0x47, +0x04,0x06,0xeb,0x2c,0x38,0xc0,0x64,0xea,0xca,0x8c,0x30,0x4f, +0x8a,0x4b,0xbf,0x4e,0x57,0x48,0x79,0x18,0xfb,0x2b,0xac,0x96, +0xc3,0xfd,0x8c,0x60,0x42,0x89,0xf5,0x5b,0x58,0xd8,0x06,0x3b, +0xb3,0xc1,0x82,0xeb,0x10,0xd7,0xab,0xc3,0x5b,0x36,0x10,0x0f, +0xdb,0xe1,0x22,0x25,0x9c,0x79,0x12,0x66,0x39,0x80,0x9c,0x3b, +0xac,0x51,0x09,0xe4,0x4b,0x70,0x7f,0x33,0xae,0x7a,0x80,0x0b, +0xb4,0xf6,0x1c,0x3a,0xbc,0x56,0xa9,0xf6,0x14,0xff,0xc3,0xed, +0xfb,0xf7,0x86,0x9e,0x75,0xed,0x1b,0x3e,0xf4,0xf8,0x48,0xfd, +0x20,0xbf,0x7b,0xe4,0xd4,0x03,0xa3,0xc7,0xdc,0xd8,0x5c,0xe1, +0x24,0xf9,0x11,0x3e,0x5b,0xc7,0xe2,0x67,0xb8,0x84,0xfc,0x04, +0x9f,0xad,0x95,0x8e,0x56,0x92,0xb7,0xf0,0xd9,0x0a,0x16,0x36, +0x51,0x5d,0x1d,0xde,0xee,0xdf,0x17,0xd8,0x68,0x16,0xca,0x67, +0x9a,0x66,0xea,0x25,0xeb,0x73,0x58,0x8f,0xeb,0x49,0xd1,0xb3, +0x9c,0x0f,0x89,0x30,0x41,0x27,0x89,0x8f,0x5c,0xe6,0xbb,0xc4, +0x63,0x3f,0x07,0xce,0x50,0x44,0x32,0x34,0x32,0x94,0x12,0x0f, +0x74,0xa4,0xf0,0x91,0x37,0x02,0x9e,0x07,0xf6,0x71,0x38,0x2f, +0x98,0x24,0x1f,0x8c,0x5f,0x73,0x61,0x7b,0x4f,0x32,0x1f,0xf3, +0x24,0xfc,0x8f,0xd0,0xbb,0x54,0x7b,0xc5,0x0a,0x40,0x2c,0xaf, +0xe9,0xdf,0x55,0xbd,0x6e,0x60,0xc5,0x0f,0xa8,0x74,0x1d,0x6f, +0x56,0xe2,0x84,0xce,0xb1,0x59,0xe4,0x45,0x4b,0xe5,0xab,0x5c, +0x85,0xcc,0x7b,0x71,0x77,0x60,0xbb,0x1c,0x96,0xfc,0x0a,0x17, +0xba,0xf1,0xc2,0x4f,0xe3,0x8f,0x3f,0x42,0x69,0xff,0x18,0x27, +0x46,0x0a,0x57,0x19,0xe4,0xa2,0x8e,0x87,0x6a,0xcb,0xab,0x85, +0x7a,0x04,0xa8,0x2d,0x58,0xc1,0x64,0xaa,0xc9,0xe0,0x95,0xd1, +0x6e,0x02,0x81,0xeb,0x30,0x90,0xd1,0x9b,0x02,0x81,0x6b,0xff, +0x79,0x5e,0x45,0x9f,0x71,0x5b,0x0d,0xb1,0xc7,0x4f,0xd4,0x70, +0x91,0xca,0x9a,0x5e,0x33,0xfe,0xc6,0x87,0x21,0x58,0x56,0x0f, +0x33,0x39,0xa1,0x0d,0xbf,0x22,0xc1,0xdd,0x1e,0x03,0x3e,0x0d, +0xfa,0x01,0x7c,0x9e,0x59,0xa1,0x5e,0xba,0x0e,0xa7,0xa4,0x4f, +0x42,0x6f,0x78,0x3e,0xf5,0x19,0xd4,0x0c,0xe2,0xf3,0xd4,0x72, +0x8e,0xa7,0xef,0xe7,0xf0,0x85,0x12,0xa9,0x7d,0x50,0xf6,0x6b, +0xc6,0xef,0x2a,0x49,0x7c,0xd0,0x5a,0xe7,0xb5,0xf6,0x8a,0x1c, +0xf4,0xc5,0x93,0xe8,0xc7,0x21,0x7f,0x06,0xdd,0x3e,0x15,0xc1, +0xa7,0xef,0x4b,0xde,0x12,0xbf,0x85,0x36,0xf3,0x81,0xa0,0x4d, +0x9e,0xc1,0xac,0x46,0x58,0x90,0x05,0x3b,0xb8,0xfb,0x97,0xd1, +0x0e,0xb6,0xd2,0xbc,0x41,0x57,0xf5,0x17,0x4c,0x26,0xee,0xb9, +0x88,0xfc,0x03,0x9c,0xa1,0x75,0xe0,0xb0,0xe2,0xda,0xc3,0x17, +0x75,0xf9,0x1f,0xee,0xdd,0x1b,0x19,0x78,0xd8,0x77,0xf0,0xae, +0xe2,0xeb,0x43,0x97,0x7a,0xf8,0x75,0xf7,0x15,0xef,0xea,0x3c, +0xe0,0x44,0x6d,0x28,0x25,0x40,0x85,0x07,0x0d,0x04,0xe9,0x42, +0xf2,0x06,0x16,0x76,0xe3,0x7f,0x51,0x7c,0x3c,0x65,0xf0,0x93, +0x73,0xe3,0xf8,0x88,0x0c,0x0c,0xd1,0x5b,0xa0,0xc4,0x64,0xe8, +0xca,0xdc,0x64,0x1e,0x16,0x95,0x3d,0x4b,0x53,0x48,0x79,0x10, +0xfb,0x0e,0x56,0xca,0xe1,0x06,0x06,0x69,0xb7,0x49,0xff,0x0f, +0xb7,0x9e,0x15,0x1e,0x98,0x90,0x20,0x5c,0x62,0x8f,0xd3,0x4e, +0x2c,0x3a,0xf5,0xa7,0x13,0x70,0x21,0xb0,0x9c,0x13,0xdd,0x57, +0xd0,0xf3,0x72,0x34,0xc0,0x1c,0xed,0x08,0xde,0x03,0xb7,0x8c, +0x36,0x4b,0xe8,0x41,0x22,0xda,0x02,0x7a,0x03,0x1b,0x2d,0x43, +0xf9,0x0c,0xd3,0x0c,0xfd,0x24,0x03,0x0e,0x33,0x70,0x23,0x0d, +0x70,0xf6,0x87,0x04,0x98,0xa0,0x97,0xc4,0x47,0x2d,0xf3,0x5b, +0xec,0xb5,0x8f,0x03,0x23,0x3a,0xb6,0x74,0xf5,0xb4,0xa3,0x89, +0x07,0xda,0xa4,0x00,0x07,0x7e,0x1d,0x44,0x03,0x3c,0x3d,0x98, +0x24,0x1d,0x8a,0x5b,0x73,0x61,0x5b,0x67,0x32,0xff,0x34,0xfc, +0xf7,0xb0,0xbb,0xf2,0x33,0xe1,0x2f,0xb8,0x43,0x4b,0xf4,0xb9, +0x9d,0x91,0x9a,0xf2,0x1a,0x51,0x41,0x21,0xfa,0x0b,0x4e,0x31, +0x99,0x7a,0x32,0x03,0xcc,0xbd,0xa2,0x92,0x67,0x29,0x0a,0xc9, +0xf7,0xe8,0x70,0xd7,0xd2,0x0c,0x7d,0x07,0xd3,0x3a,0x71,0xda, +0xcf,0x30,0xad,0x0b,0xa7,0xfd,0x08,0x73,0xbb,0xf0,0x07,0x31, +0x80,0x11,0xa6,0x89,0xf3,0x48,0xff,0x37,0xc2,0x94,0x1d,0xfd, +0xa3,0x7f,0x8a,0xee,0x0c,0x3a,0x5a,0x92,0x75,0x8b,0x7e,0x64, +0x85,0xe9,0xa1,0xe4,0xd5,0x52,0x06,0x75,0x83,0x17,0x2b,0x2d, +0x96,0x6f,0x34,0x97,0x79,0x02,0xd3,0xb2,0x61,0x3a,0x58,0xcb, +0xfd,0xfe,0x5c,0x5c,0xc9,0x1e,0x2f,0xf7,0xef,0x92,0xbf,0x8e, +0x9a,0xe2,0x14,0x06,0xee,0x42,0x24,0x39,0x1d,0x96,0x54,0xa7, +0x20,0xc8,0xbf,0x12,0x8f,0xb3,0x63,0x9f,0xc2,0x10,0x59,0xb3, +0xe8,0x67,0xf6,0x5f,0xf8,0x25,0x59,0xbe,0x88,0xf6,0x85,0x1e, +0x78,0x8f,0x44,0xb6,0x04,0x75,0x05,0x35,0x59,0x53,0x9b,0x4d, +0xd2,0x8c,0x93,0x0c,0x39,0x2a,0x7a,0xb6,0x92,0x82,0xa7,0x99, +0xd4,0xe6,0x89,0x46,0xd4,0xe6,0xa5,0x01,0x8b,0xbd,0x29,0xa8, +0x0f,0x4b,0x36,0x6b,0xa4,0x2a,0x27,0xec,0x6f,0x4e,0xe1,0xa3, +0x6e,0x06,0x3d,0x09,0xee,0xe3,0x16,0x85,0x90,0xc4,0x83,0x71, +0x6b,0xcf,0x6f,0x6f,0xa3,0x98,0x7e,0x1a,0xf9,0x5b,0xf8,0x3d, +0x6e,0xe6,0xdf,0x06,0x54,0x95,0x70,0x15,0xeb,0x9a,0x0f,0x5d, +0xae,0xb8,0x92,0x3e,0x12,0xfb,0x92,0xa3,0x8d,0xd3,0xff,0x42, +0x4b,0x50,0x50,0x47,0x05,0xda,0x3a,0xfd,0x2f,0x30,0x60,0x62, +0x94,0xc2,0x34,0xbc,0xf5,0xad,0x1a,0x1c,0xdb,0x3d,0x7b,0xf5, +0x5d,0xf8,0xb2,0x93,0x97,0xb4,0xdb,0x8d,0x6d,0xf5,0xb4,0x2d, +0xf6,0x3a,0x54,0xe8,0xf1,0xcf,0xeb,0x87,0x5a,0x1a,0x07,0x1e, +0xab,0xfe,0x62,0x02,0x9c,0x13,0x27,0x0e,0x0a,0xb2,0x04,0x67, +0x9c,0x95,0x7c,0xf8,0x31,0xe4,0xca,0x12,0x25,0x5c,0x63,0x1e, +0x50,0x4a,0x48,0x95,0x7c,0xf8,0x9b,0xe4,0x43,0x85,0x77,0xc0, +0x77,0x22,0xff,0x33,0xf0,0x5d,0xc8,0xbf,0x81,0x25,0xdd,0xe2, +0x14,0xea,0x43,0x38,0x20,0x1c,0x23,0xeb,0x71,0xea,0x1b,0x56, +0x68,0x41,0xaa,0x32,0x13,0x70,0x21,0x24,0xb0,0x60,0x80,0x09, +0x04,0x12,0x60,0x39,0x26,0xb0,0x63,0xb3,0xc0,0x93,0xac,0xc1, +0xa9,0x3f,0xb3,0x54,0x60,0x51,0xaf,0xe0,0x54,0xea,0x96,0xaf, +0xf0,0x21,0x89,0x68,0x0d,0xec,0x0e,0x6c,0xb2,0x92,0xdc,0x92, +0x61,0x28,0xb9,0x65,0x02,0xc8,0x52,0x07,0xa4,0x1d,0x4b,0xdc, +0xdf,0x9a,0x4a,0x83,0x1e,0xf4,0x54,0xca,0xea,0x93,0xd8,0x47, +0x0a,0x3f,0xe2,0x43,0x3f,0x91,0xe2,0xc3,0x7f,0x89,0x17,0xf5, +0xd5,0x34,0x28,0xa0,0x58,0x88,0x5f,0x7b,0x7e,0x5b,0x87,0xe4, +0x98,0x88,0x77,0x61,0x34,0xd9,0x47,0xdd,0x46,0x1f,0x12,0x15, +0x9c,0x86,0x9a,0x68,0x7c,0x19,0x96,0xc0,0x0f,0xb8,0x64,0x08, +0x8c,0xd1,0x84,0xc1,0x41,0x8c,0xa5,0x40,0x9f,0xf7,0x33,0xcc, +0xeb,0xc2,0x79,0x6f,0x60,0x51,0xb7,0x38,0x89,0x02,0xfd,0x05, +0x8b,0xd3,0x28,0x11,0x6a,0x8c,0x5b,0xad,0xfb,0x11,0xe8,0xb7, +0xfe,0x07,0xd0,0x37,0xbe,0x63,0x70,0x1f,0xe8,0x50,0xa4,0x4f, +0x5d,0xcf,0xe2,0x54,0x5c,0x4a,0x7e,0x86,0xa9,0x6b,0x58,0x61, +0x93,0x98,0x48,0x0c,0xc2,0x52,0x3b,0x14,0x60,0x0f,0x0b,0x33, +0x87,0x60,0xf2,0xb3,0x7b,0x0f,0xac,0x9a,0x79,0x95,0x63,0x2b, +0x0f,0x2f,0xd2,0xa5,0x1d,0xaf,0x9a,0xe8,0xc6,0xee,0x28,0x75, +0x7d,0x2a,0x0f,0xd6,0x4c,0x6b,0x7e,0x5e,0xab,0x02,0xec,0x67, +0x35,0x72,0x65,0x50,0x8f,0x1d,0xf3,0x82,0x31,0xf2,0x0e,0xa6, +0x2e,0x67,0x61,0x99,0x94,0x10,0xad,0x01,0x7d,0xff,0x49,0x88, +0x64,0x9a,0x10,0xd9,0x34,0x21,0x24,0x83,0x29,0xe3,0xe9,0x4a, +0x09,0xe1,0xbf,0xd8,0x93,0x26,0x84,0xc9,0x78,0x42,0xa4,0x2b, +0x25,0x1c,0x68,0x4f,0x1d,0x4f,0x08,0xc9,0x37,0x33,0xa4,0x84, +0x88,0xff,0x98,0x10,0x31,0x4f,0x22,0xfe,0x90,0x9c,0xf0,0xb7, +0xa9,0xb0,0x89,0x98,0xfc,0x4b,0xfb,0x2f,0xcd,0x57,0xba,0xa7, +0xf9,0x1a,0xed,0x2a,0xd5,0xca,0x13,0xbb,0x43,0x56,0x87,0xae, +0x89,0x6c,0xfd,0xa3,0x11,0xe6,0x54,0x01,0x77,0x2a,0x93,0x77, +0x46,0x4e,0x1f,0x97,0x18,0x2e,0xe1,0x82,0x83,0x63,0x82,0x17, +0x24,0xa8,0xc1,0x9c,0x24,0xd8,0x90,0x01,0x53,0xf3,0x64,0x53, +0x3d,0x52,0x3d,0x53,0x3c,0x38,0x31,0xeb,0x90,0x94,0x56,0xbb, +0x22,0xc7,0xab,0x04,0x75,0xce,0x31,0x09,0x12,0xd7,0x99,0x87, +0x25,0xa5,0xcf,0x52,0x15,0x52,0xee,0xc5,0xfe,0x02,0x9b,0xe4, +0x70,0xe1,0x7b,0x58,0xd4,0x85,0x8b,0x7e,0x1d,0x7f,0xfc,0x59, +0xaa,0x2f,0xbc,0x18,0xc1,0x80,0xb2,0xa0,0x46,0x03,0x3e,0xe7, +0x67,0x69,0xa1,0x86,0xa5,0xb4,0x4e,0xcd,0xf9,0x55,0x3a,0x5a, +0x4e,0x96,0xe1,0x9c,0xf7,0xac,0xa0,0x29,0x36,0x91,0x2b,0x50, +0x79,0x6a,0x58,0xd8,0x28,0x2e,0x15,0x37,0xb2,0xc8,0xc3,0x69, +0x09,0x0b,0x3d,0x01,0x4d,0x16,0xa1,0x7c,0x96,0x71,0xba,0x61, +0xb2,0x21,0x27,0xa4,0xc0,0x5a,0x82,0xd1,0x58,0x09,0xd1,0xac, +0x18,0x8e,0xd7,0x49,0xd1,0x53,0xc9,0x23,0x13,0x25,0x8a,0x58, +0xea,0xb7,0x44,0xf2,0x88,0x01,0x94,0x90,0x74,0xcd,0xf4,0xa3, +0x49,0x1f,0xd1,0x12,0xf8,0x4c,0xf2,0xc8,0xb4,0xf1,0x1a,0xb0, +0xf6,0xc2,0xd6,0xce,0x14,0xfe,0xdc,0xd7,0x11,0xbf,0x85,0xd2, +0x7c,0x79,0x24,0xa8,0x90,0x3f,0x4a,0x9f,0x55,0x0f,0x37,0x76, +0xfb,0x74,0x7a,0xb7,0x79,0x97,0xb6,0xf1,0xe6,0xb9,0xe6,0xd9, +0x16,0x59,0x9d,0xcd,0x35,0x5d,0x05,0x57,0xa8,0x68,0x30,0x61, +0xd3,0x0b,0xd2,0x0a,0x53,0x8b,0x34,0x13,0xf9,0x60,0xb7,0x60, +0xf7,0x40,0x2a,0x1d,0x37,0xeb,0x03,0x61,0xbc,0x1d,0x3d,0xec, +0x5d,0x6c,0x7a,0xfd,0xbb,0xfc,0x3a,0xfd,0xb4,0x9c,0x8f,0xba, +0x6f,0xf7,0xe2,0x46,0x35,0xde,0x92,0xfb,0xbd,0x3d,0xc3,0x25, +0xd7,0xb8,0x46,0x69,0xc5,0xe4,0x6f,0x59,0x17,0x43,0x53,0xe3, +0x53,0x96,0xe6,0xb5,0x36,0x97,0x1c,0x5b,0x4c,0x5c,0xf8,0x6a, +0x93,0x5a,0xab,0x06,0x3b,0x53,0x77,0x5d,0x2f,0x75,0xbf,0x32, +0x23,0xfe,0x7a,0xde,0xe5,0x92,0xae,0x8a,0xab,0x26,0x23,0xd6, +0xaf,0xed,0x8b,0x3a,0xf8,0x3d,0xe5,0x27,0xaa,0x35,0x2f,0x72, +0xe2,0xf5,0x3e,0x92,0x5b,0x9c,0x5b,0x92,0x53,0xce,0xc1,0x7e, +0xc6,0xdb,0xc8,0xc1,0xd2,0xd0,0xd6,0x38,0xdb,0x3c,0xd3,0x26, +0x95,0x1b,0x5d,0x28,0x6e,0x27,0x2d,0x58,0xd7,0x0b,0x75,0xf4, +0xb1,0x07,0x6e,0xb5,0x8e,0x69,0xe1,0x9b,0xd1,0x35,0xac,0x7d, +0x8c,0xe5,0x19,0x77,0x79,0x97,0xc8,0xa0,0x60,0xa3,0x05,0xaa, +0x4c,0xba,0x91,0xcc,0x65,0xe6,0xd6,0xc5,0xbc,0x2b,0x29,0x0a, +0x09,0x17,0x2f,0xf4,0x5e,0x93,0xc3,0xef,0xfa,0x19,0x75,0x58, +0x44,0xb0,0xa4,0x07,0x4a,0x18,0x2c,0xa1,0x65,0xb5,0x17,0x4a, +0x74,0x58,0xd3,0x29,0x5a,0x58,0xd2,0xcf,0x0a,0xf3,0x51,0x81, +0x14,0x3a,0x17,0x58,0x66,0xdb,0x77,0x16,0xf0,0x01,0x55,0x5e, +0x97,0x5c,0x2b,0x38,0xb1,0x05,0xf7,0x91,0x9e,0x96,0xfa,0xae, +0x92,0x0e,0x83,0x42,0xde,0xd5,0xc2,0xd6,0x44,0xcf,0x92,0x13, +0x16,0xc2,0x24,0x92,0x6b,0x9b,0x63,0x94,0x66,0xde,0x9f,0xc5, +0x87,0x36,0x78,0xb7,0xf9,0xd4,0x70,0x68,0x11,0x4a,0x52,0xad, +0xd3,0x4e,0xc5,0x99,0x5f,0xa5,0x55,0xb8,0x35,0x78,0x20,0xb8, +0x9e,0x76,0x3a,0x67,0xe0,0x0b,0x02,0xdb,0xff,0xa4,0xca,0x6d, +0xf9,0xb7,0x70,0x4a,0xaf,0x82,0xb7,0xda,0x6c,0xb2,0x57,0xfb, +0xa8,0x57,0xa5,0x67,0xa5,0x47,0x79,0xe7,0xcd,0xa6,0x07,0xe5, +0xb7,0x38,0x08,0xee,0x43,0x2f,0x0a,0x3a,0x5a,0x07,0x4c,0xb4, +0x41,0x9d,0x71,0xd7,0x74,0xd0,0xb0,0x35,0xf4,0xcb,0xa7,0x7f, +0xb9,0x36,0x66,0xfc,0xa0,0x6a,0xdf,0xb1,0x2e,0x45,0x03,0x1d, +0x2d,0xa3,0x93,0xd6,0xdc,0x4e,0xf8,0x8c,0x12,0xd1,0xb9,0xff, +0x4d,0x44,0xc7,0xa5,0x94,0x1c,0xa6,0x29,0x29,0xa1,0x2e,0xf9, +0x5e,0xdc,0x5b,0x89,0x88,0xbe,0x78,0x07,0xf3,0xfe,0x7b,0x32, +0x4f,0x94,0x88,0x68,0xff,0xbf,0x89,0x88,0xd2,0xcc,0xe2,0xff, +0x49,0x38,0xa3,0x26,0x78,0x83,0x84,0x65,0x87,0x5d,0x08,0x08, +0x0f,0x8d,0xe2,0xcf,0xc4,0xf5,0xdf,0xbc,0xfc,0x63,0xf3,0x0f, +0xb2,0x06,0x15,0x0b,0xd1,0x0a,0x27,0xa0,0x2c,0x46,0x22,0x91, +0x2d,0xd3,0x86,0x4f,0x86,0xff,0xfa,0xfa,0xce,0x3d,0xd9,0xa4, +0xe4,0x84,0xaf,0x12,0xc2,0xe0,0x33,0x74,0xe4,0xbb,0x6a,0x64, +0xc4,0xef,0x68,0xb9,0xfd,0x0f,0x5b,0x65,0x9a,0xa4,0x1b,0x49, +0x85,0xeb,0x3c,0x6e,0xa6,0x79,0x9a,0x25,0x11,0x93,0x81,0x84, +0xca,0x8f,0xc4,0xa4,0x21,0xa1,0xf2,0x7f,0x73,0x58,0xe0,0x53, +0xa9,0x70,0x31,0xc1,0xff,0x07,0x59,0x3d,0x8b,0x78,0x1b,0x36, +0x42,0xc9,0xca,0x7d,0xf4,0x14,0xf9,0x38,0xe9,0xc8,0x50,0x53, +0xb0,0x1f,0x60,0xc7,0x78,0xda,0xa3,0xfc,0x4f,0x8a,0x95,0xa1, +0x34,0x75,0x83,0xf9,0x6f,0x3e,0x19,0x27,0x67,0xea,0x93,0x8f, +0xe4,0x3c,0x42,0xc9,0x79,0x9d,0x1c,0xca,0x33,0xb8,0x7f,0xbc, +0x1e,0x4f,0x5b,0xcf,0xc2,0x07,0x4b,0xe2,0xb4,0x4d,0x6f,0xbb, +0xf2,0xc9,0x3a,0x23,0xfe,0xde,0x48,0xef,0x8b,0xfa,0x77,0x1c, +0x4c,0x8d,0x24,0xbd,0xfb,0xdb,0xb6,0x36,0xac,0xeb,0xaa,0xe2, +0x2d,0x7f,0x30,0xf8,0x4e,0xfb,0x21,0x37,0xb6,0x7f,0x09,0x25, +0xb3,0x69,0x6b,0x28,0x0b,0x52,0xb0,0xd0,0x0a,0xb9,0x9c,0x15, +0xc2,0x29,0x23,0x75,0xdc,0xa9,0xfb,0xba,0xf8,0x37,0x4d,0x69, +0x3e,0x92,0xf3,0x61,0x4b,0x15,0xab,0xab,0xce,0xf7,0xbc,0x5f, +0x68,0x79,0xf0,0xc5,0xab,0xeb,0x77,0xb7,0x1e,0x3d,0x75,0x68, +0x9f,0xe6,0x1a,0xb3,0x0a,0x6d,0xfe,0x97,0xd6,0x67,0x83,0xd7, +0x1f,0x5e,0x3d,0xf0,0x48,0xe3,0x7b,0x69,0x3e,0xd2,0x96,0x96, +0x83,0xfd,0xea,0xf7,0x38,0x71,0xe2,0xf9,0xff,0x93,0xd8,0xc7, +0x93,0x99,0x12,0x3b,0x4f,0x53,0xf5,0x7f,0x38,0xe5,0x1f,0x62, +0xff,0x93,0x16,0xc1,0xff,0x27,0xb1,0xc7,0x0b,0x41,0xe4,0xd6, +0xb5,0xf6,0xbb,0x55,0x4f,0xb9,0x16,0x2c,0x67,0x33,0x4a,0xd3, +0xca,0x53,0xca,0xd5,0x93,0x79,0xbb,0x55,0x2a,0xeb,0xd6,0xed, +0xaf,0x35,0xe6,0x6b,0xca,0xaa,0x2a,0xcb,0x6a,0x6a,0x8c,0x1b, +0x4c,0xdb,0xcd,0xd5,0x8c,0x0f,0x98,0xad,0xb7,0xac,0xd0,0xe5, +0x7f,0x6b,0x79,0xd6,0x7e,0xa3,0xe7,0x9a,0xfe,0x03,0xe3,0x97, +0xd2,0x42,0x9a,0xbb,0x1b,0x94,0x1a,0xd5,0x5a,0x38,0xfc,0xc5, +0x93,0x74,0xe0,0xdc,0x5f,0x60,0x2e,0x7d,0xfc,0x09,0xe4,0xbb, +0xf1,0x6f,0xea,0xe4,0x11,0x16,0xa7,0x9f,0xdb,0xf1,0x1f,0xd1, +0x73,0xec,0x63,0x05,0xfc,0x08,0xbc,0xf1,0x5a,0xb0,0x4a,0x0e, +0x57,0xd2,0x5a,0xb0,0x0b,0xb4,0xa8,0xae,0x61,0xd6,0xb2,0xf0, +0x2e,0x85,0xc4,0x27,0xc6,0x27,0xc5,0x27,0x71,0x10,0xc6,0xb8, +0xaa,0x5b,0x69,0x69,0xe8,0xea,0xb5,0x98,0xb5,0xdb,0x75,0x73, +0xa2,0x39,0xae,0xa3,0xfd,0x1a,0xb3,0x5a,0x5a,0x9c,0x70,0x05, +0xf5,0x2c,0x43,0xb9,0xfe,0x85,0xa8,0x42,0xae,0x41,0xfa,0xc9, +0x2b,0x02,0x2f,0xce,0x16,0x79,0x16,0x17,0x7c,0xa4,0x3d,0xaa, +0x86,0x6c,0x24,0xb9,0x9b,0x6e,0x20,0x81,0x2a,0x05,0x37,0xfd, +0xbb,0xda,0x19,0xfd,0x03,0x2a,0x4a,0x75,0xba,0x94,0xfc,0xd3, +0xd4,0xd3,0x8f,0x26,0x1c,0x68,0x4a,0xe5,0xa3,0x28,0xd5,0xfd, +0x07,0x54,0x54,0x0d,0x6d,0x6f,0x1d,0x27,0xff,0xf7,0x14,0x54, +0xa3,0x9f,0x86,0x11,0xb4,0xc3,0x74,0xb0,0x63,0xa5,0x09,0x0c, +0x8f,0x88,0x26,0x6d,0x7a,0x30,0xf5,0x34,0x6e,0xde,0x87,0xf3, +0xa4,0x89,0xc9,0xaf,0x60,0x7d,0x29,0x1c,0x85,0x0b,0x72,0x50, +0x21,0xde,0x26,0x97,0xff,0x5e,0xac,0xce,0xa0,0x4c,0x00,0xd1, +0x1e,0xc3,0x3e,0x46,0xb4,0x0f,0x26,0xf7,0x3f,0x26,0xda,0x48, +0xec,0x5b,0x09,0x54,0xb3,0xdf,0xc3,0xec,0x0e,0x9c,0xfd,0x33, +0xcc,0xee,0xc4,0xd9,0x3f,0xc2,0x82,0x6e,0xfc,0x40,0x3d,0xd5, +0xcc,0x8c,0xeb,0x2d,0x2d,0x79,0xf5,0xa8,0xa0,0x50,0x3d,0x4a, +0x45,0x34,0x45,0x71,0xe2,0xe8,0x65,0xda,0xb4,0xad,0xc3,0xc9, +0x8c,0xc1,0x14,0x98,0xbc,0x86,0x3e,0x8f,0x7e,0xde,0x42,0x0a, +0x77,0x64,0x6d,0x48,0xde,0xd9,0x92,0xc7,0x47,0x7c,0xed,0xff, +0xda,0xf3,0x6b,0x0e,0xcd,0xbd,0x49,0xfe,0x96,0xb4,0xbd,0xf1, +0xdb,0xdb,0x72,0xf8,0xa8,0x17,0x21,0x5f,0xfb,0x7c,0x23,0x2d, +0xff,0xd0,0x47,0xaa,0xbf,0xcd,0x05,0x99,0xf8,0x9f,0x0d,0xe3, +0xf8,0xe8,0xf5,0xfe,0x8b,0x1c,0x76,0x71,0xd8,0x05,0x4a,0xf4, +0x84,0xcb,0xe8,0x89,0xc0,0x0b,0x5d,0x49,0x64,0x6b,0x50,0x67, +0x50,0x93,0xad,0x94,0x7d,0x69,0xff,0x1f,0x65,0xef,0x01,0x17, +0x45,0xd2,0xb5,0x8b,0x9b,0xe8,0xee,0x35,0xb0,0xa6,0xc2,0x06, +0x77,0xc1,0x8c,0x39,0xe7,0x9c,0xb3,0x28,0x20,0x39,0x48,0x46, +0x72,0xce,0x39,0x23,0x8b,0x08,0x03,0xc3,0x90,0x73,0x12,0x90, +0x20,0x39,0x0b,0xc6,0x35,0xe7,0xb8,0xeb,0xe6,0xe0,0xea,0xea, +0xaa,0xeb,0x9e,0x61,0x4f,0xf3,0x7e,0xff,0xea,0x01,0xdf,0x7d, +0xbf,0xef,0xde,0xff,0xfd,0xdd,0x2b,0x3f,0x6b,0x66,0xab,0x59, +0xa7,0xeb,0x9c,0xe7,0x3c,0xe7,0x39,0xd5,0x35,0x55,0x66,0x12, +0x0a,0xa9,0x30,0x51,0x42,0x3d,0xcb,0x16,0xd1,0x63,0xae,0x90, +0x50,0x0a,0xf4,0x9c,0xfa,0x96,0x88,0xba,0x21,0xf4,0x9c,0x5d, +0x24,0x2f,0x13,0x01,0xb7,0x95,0xb3,0x30,0x21,0x09,0xcf,0xa2, +0x5f,0x45,0xde,0xb3,0x89,0xe1,0x25,0xdb,0x92,0x17,0x27,0xae, +0xa6,0xc4,0x35,0x7c,0x50,0x35,0x2a,0xd2,0x5b,0xf4,0xbf,0x47, +0x71,0x89,0xf9,0xef,0xe3,0x9f,0xf0,0x07,0x4c,0xe8,0xc4,0x09, +0x2f,0x60,0x42,0x17,0x4e,0xf8,0x05,0x3e,0xeb,0x46,0x10,0x55, +0xe3,0x26,0x39,0xd5,0x5f,0xef,0xe5,0xcb,0xe1,0x3d,0x3b,0xb0, +0xd2,0x90,0x72,0xce,0xa8,0x5f,0xd8,0x7e,0xa7,0x79,0x04,0x7b, +0x7e,0x87,0x1e,0x46,0x40,0xca,0x3e,0x8b,0x70,0xd4,0x0b,0x56, +0xbe,0x35,0x86,0x40,0xcf,0x1c,0xec,0x61,0xf0,0xb6,0x3d,0x4d, +0x7e,0xa3,0x68,0xf2,0xfb,0x03,0xeb,0xa9,0xe6,0x06,0xf3,0x1e, +0xc1,0xcc,0x00,0x0c,0x91,0xa0,0x87,0x3e,0x78,0xe0,0xb1,0x4b, +0x70,0x0c,0xfc,0xce,0xb1,0xc2,0x6b,0x7b,0x85,0x58,0x0c,0x16, +0xc5,0x62,0xd6,0x90,0x58,0x54,0x8c,0xf4,0xa9,0xc8,0x33,0xc3, +0x4d,0xfe,0x19,0xe9,0x3e,0x05,0xcf,0xa4,0xef,0x93,0x6c,0x69, +0x16,0x21,0x11,0xf2,0x34,0xe4,0x1c,0x8d,0xb3,0x50,0x22,0x11, +0x63,0x47,0xa1,0x16,0xe9,0xa0,0x23,0x68,0xf6,0x93,0x4f,0xa5, +0x65,0x60,0x27,0x72,0xbf,0x01,0xd7,0x85,0xdc,0xaf,0x30,0xb1, +0x0b,0xbf,0xa7,0x5e,0x6c,0x62,0x51,0xf9,0xc4,0x5a,0x51,0x35, +0x47,0x87,0x52,0xd5,0x7c,0x48,0x54,0xcd,0x17,0x99,0x7b,0x45, +0x65,0x4f,0xe9,0xf8,0xef,0x27,0xfd,0x21,0x16,0x81,0x53,0xde, +0x30,0x60,0xf0,0x0d,0x31,0x90,0xef,0x02,0x72,0xa5,0x47,0x0b, +0xc6,0x0b,0x5b,0x0d,0xe4,0xcc,0x0e,0x61,0x95,0x81,0x7c,0xd5, +0x66,0x76,0xc0,0x81,0xe6,0x89,0x5f,0xdf,0x2f,0x66,0x67,0x8a, +0xa2,0xe8,0xfd,0x42,0xfa,0x4a,0x59,0xe4,0xbd,0x26,0xdb,0x1f, +0x24,0x4c,0x26,0xab,0x8a,0x76,0x95,0x6a,0xd5,0x5e,0xef,0xee, +0xb8,0x56,0xfb,0x94,0x2b,0x3f,0x0f,0x73,0x84,0x6c,0x9c,0xd3, +0xed,0x04,0xbf,0xb1,0x2e,0x07,0x2d,0x0d,0xb5,0x2d,0x8c,0xeb, +0x2c,0xdb,0xac,0x2e,0x1a,0x3b,0xf2,0x67,0x75,0x9a,0x4c,0xdb, +0x6d,0xb5,0x1c,0xb6,0xba,0x2f,0xf6,0x29,0xd4,0xe6,0xdf,0x95, +0x7e,0x7b,0xe6,0x4e,0xcb,0x1d,0xb3,0x67,0x4e,0xaf,0xdc,0x39, +0xc1,0x48,0x6e,0x4e,0xe4,0x0b,0xb6,0x0b,0x0b,0x18,0x9c,0x81, +0x6b,0x28,0x0a,0x82,0xbb,0x07,0x85,0xf4,0xb1,0x0c,0x13,0x89, +0x31,0xa7,0x49,0x05,0xa3,0x4c,0x47,0x46,0xe3,0x62,0x50,0x31, +0x2b,0x78,0x65,0x0b,0xf6,0x51,0x64,0x0c,0x8a,0x6b,0x89,0xc2, +0x5e,0xbe,0x34,0x84,0x46,0xd0,0x8a,0x51,0x0c,0x97,0x8f,0x4a, +0xfa,0x75,0xa4,0xc8,0xc1,0x5e,0xfd,0xa7,0xc8,0x23,0xfd,0x2d, +0x78,0x04,0xdf,0xd1,0x41,0xbe,0x63,0x85,0x4e,0x41,0x8f,0xe0, +0x84,0x7f,0xeb,0x1e,0xa3,0xa9,0x07,0x45,0x22,0xb8,0xcc,0xdc, +0x2f,0x19,0xcc,0x40,0x94,0x6d,0x97,0xa9,0xa1,0xca,0x5b,0x45, +0xdd,0xf4,0xbb,0xa2,0xfd,0x4d,0xcc,0x40,0xc3,0x84,0x48,0x06, +0x36,0xcb,0x0f,0xd3,0xbc,0xc3,0xfe,0xc6,0xca,0xbb,0x29,0x06, +0x50,0xf5,0x35,0xa8,0x32,0xa0,0x3d,0x97,0xe0,0x67,0xaf,0xe1, +0x33,0x66,0x80,0x9b,0x43,0xe6,0x21,0xfb,0x3b,0xbd,0x6a,0x4e, +0x4b,0x74,0xd5,0x0f,0x2c,0x68,0xa9,0xc0,0x67,0xd3,0xf1,0x33, +0x46,0x08,0x3f,0x45,0x66,0x23,0xfb,0x96,0xed,0xbf,0x4f,0x2b, +0x7e,0x21,0x4a,0x1f,0x46,0x32,0x61,0xa6,0xc1,0x56,0xbe,0xc6, +0x1c,0x3c,0x64,0x4e,0x1c,0x8f,0xb3,0x89,0xb4,0xe1,0x1c,0xa2, +0x82,0xc3,0xcd,0xa7,0x22,0xcb,0x64,0xeb,0x2a,0xd1,0xeb,0x77, +0x4e,0x97,0x7e,0x49,0xeb,0xf5,0xee,0x94,0x9e,0xa4,0x87,0x1c, +0xf6,0x31,0xd2,0xf2,0xb4,0xf2,0x54,0x2a,0x27,0x1e,0x33,0xc2, +0x2f,0x34,0xeb,0x45,0xb5,0x52,0x18,0x35,0x2b,0xd2,0x95,0x4c, +0x21,0xae,0x63,0x70,0x25,0x65,0x96,0x2c,0x51,0x44,0x19,0x0f, +0xd6,0x1c,0x22,0xb3,0x1c,0x82,0xf2,0xc1,0x74,0xb5,0xb9,0x45, +0x21,0xb9,0x15,0xcc,0x32,0xf2,0x63,0x9d,0xd5,0x9e,0x46,0x45, +0x54,0xf4,0xef,0x22,0x8c,0xfa,0x05,0x30,0x26,0x72,0xfb,0xc7, +0xe7,0x36,0xc3,0x27,0x87,0xa9,0x0e,0xf6,0x52,0xbc,0x6c,0xd2, +0x7f,0x22,0xd8,0x6f,0x3a,0x2a,0x4f,0xeb,0x63,0x07,0x56,0x40, +0x01,0x81,0x49,0x1d,0x38,0xe9,0xa5,0xa2,0x7d,0x01,0x9f,0x77, +0xa3,0x9c,0x22,0xed,0x1c,0x43,0x91,0xa6,0xa8,0xcf,0xa2,0x43, +0x28,0xb3,0x1e,0x14,0x23,0xed,0xca,0xc7,0x48,0x1b,0x4a,0xe9, +0xaa,0x0c,0xae,0x83,0x56,0x4a,0xac,0x4a,0x8b,0x58,0xf9,0x6d, +0x1c,0x41,0xc4,0x7f,0x1f,0xbc,0x98,0x81,0x6d,0x28,0x6e,0xd9, +0xa7,0xb4,0x80,0xf6,0x06,0x10,0x1c,0x4b,0xbb,0xc7,0xb2,0x82, +0x15,0xaa,0x50,0x52,0x55,0xa2,0xa4,0xfa,0xd6,0x92,0xd0,0x0a, +0x6b,0x22,0x7a,0x31,0xe8,0xaf,0x3f,0x38,0xe6,0xa6,0xe3,0x83, +0xf0,0x10,0xc7,0x7c,0x42,0x31,0x66,0x45,0x8a,0x36,0xff,0x27, +0x45,0x6b,0xd1,0xd0,0xa1,0xa8,0xa1,0xa1,0xd3,0x30,0x84,0x1a, +0x31,0x74,0xc2,0x48,0x2a,0x2d,0xb4,0x4e,0xae,0x69,0x56,0xa4, +0x1d,0x11,0x1e,0x90,0x89,0x2f,0xc9,0x93,0xd6,0x9b,0x17,0x3a, +0xbf,0x14,0xf7,0x2c,0xd0,0xd9,0xa7,0xb7,0xd5,0x8a,0x83,0xa7, +0x1f,0xc8,0x97,0x96,0xf7,0x8e,0xf6,0xea,0x34,0xb6,0xf0,0x7a, +0xe7,0x77,0x5c,0xd4,0x6a,0xa0,0xc6,0x91,0x29,0x4e,0x6a,0x5e, +0xd1,0x87,0x2b,0x60,0xfe,0xe0,0xcb,0x3c,0xd8,0x7f,0x11,0xb7, +0xb0,0xa5,0x5d,0xb9,0xdd,0xb2,0x26,0x3d,0xf1,0x5c,0x77,0x1f, +0x1d,0x77,0x7d,0x0e,0x09,0x53,0xd8,0x91,0xdd,0x9e,0x25,0x9e, +0x05,0xee,0x32,0xd3,0x00,0xc7,0xef,0x5b,0x56,0x67,0xce,0x8b, +0x67,0x18,0xa4,0x65,0x72,0xc2,0xef,0x17,0xae,0xc9,0xa7,0x5d, +0x64,0x85,0x22,0xf9,0x1a,0x9a,0xa2,0x3e,0x7b,0x09,0x9f,0xd1, +0xf6,0x05,0x68,0x76,0x0b,0x63,0xa8,0x21,0xbf,0x66,0x71,0x4c, +0xfc,0xda,0x41,0x64,0x86,0x8a,0xe5,0x4a,0x96,0xa2,0x2e,0x2f, +0x11,0xcb,0x95,0xb4,0xfb,0xa7,0x7e,0x87,0x85,0x6a,0xb8,0x88, +0xa6,0xa8,0x6d,0x8a,0x14,0x35,0x8e,0xa6,0xa8,0xbb,0x78,0x50, +0x3c,0x39,0x79,0xae,0x78,0xd8,0xfb,0x37,0x0d,0xd4,0x90,0xe3, +0x16,0x88,0x47,0xfb,0x8a,0x29,0x69,0x1c,0xb5,0xde,0xdd,0xf9, +0xe2,0x59,0xca,0x73,0x71,0x3e,0x8b,0x5f,0xe3,0x44,0xb1,0x12, +0x19,0x4c,0x46,0x99,0xc7,0xb2,0x14,0xc9,0x28,0x6f,0x28,0x19, +0xd1,0x4a,0xc4,0x44,0x9c,0x7b,0xa1,0x95,0x08,0x35,0xdf,0xe9, +0xe7,0x64,0x50,0x6d,0xdb,0x44,0xf2,0x19,0x3a,0x19,0x7b,0x24, +0x5b,0x28,0x62,0xc0,0x88,0xa4,0x29,0x92,0x51,0x9b,0x22,0x19, +0xd1,0xda,0x9c,0x93,0x67,0x1a,0x10,0xdc,0x80,0x73,0xc5,0x13, +0x9a,0xfb,0x7f,0x82,0xd7,0x04,0xfc,0xde,0x5c,0x44,0xc2,0x96, +0x74,0x96,0xdc,0xcc,0xbf,0x79,0x24,0x9f,0xf7,0xdf,0xe3,0xbe, +0xc5,0xf1,0x08,0x87,0x0d,0xda,0xa0,0x84,0x3b,0x99,0x80,0x2f, +0x02,0x13,0x82,0xd4,0x71,0x82,0x36,0x28,0x33,0x61,0xa8,0x6a, +0xb3,0x6a,0xd5,0xbc,0x36,0x73,0xfe,0x97,0xbf,0x5a,0x61,0x78, +0x86,0x38,0x37,0xb9,0x04,0xff,0xeb,0x0a,0xfc,0x17,0x0c,0xbf, +0xc8,0x60,0x2f,0xdc,0x23,0x7e,0xe7,0x5d,0xaf,0xb9,0x74,0xea, +0x7b,0xf0,0xa7,0xf5,0xcb,0x74,0xf2,0xb5,0x39,0x8c,0xc4,0xc7, +0x64,0x28,0x33,0x0d,0x22,0x4d,0x4b,0x34,0xd0,0xc5,0x8f,0x48, +0xbb,0x43,0x39,0x7d,0x89,0x62,0x26,0x60,0x52,0x27,0x4e,0xfa, +0x0d,0x26,0x75,0xe1,0xa4,0x5f,0x86,0x30,0xca,0xc0,0x06,0x85, +0x78,0x54,0xa2,0xe2,0x51,0x49,0x21,0x1e,0x95,0x68,0x10,0x4b, +0x30,0x87,0x24,0xe6,0x7c,0x91,0x93,0xab,0x46,0x4b,0xf3,0xf9, +0xe8,0xc7,0x0a,0xad,0x30,0x96,0xca,0x49,0x25,0x5a,0xbf,0x06, +0xe0,0x7d,0x12,0xd5,0x12,0xd2,0x19,0xdc,0xfc,0x0f,0x53,0xcf, +0x81,0x29,0x43,0xb8,0x6a,0x1e,0x2c,0x5f,0x45,0x5c,0x6d,0xa5, +0xd9,0xed,0x23,0x7b,0x8b,0x2a,0x87,0x86,0xdd,0x56,0x0e,0x46, +0x7d,0x54,0x39,0xff,0x66,0x6a,0xca,0x46,0xf2,0x19,0x0a,0xa6, +0xfe,0x84,0x16,0x98,0x5d,0xf8,0xc9,0xc7,0x59,0x0a,0x68,0xa7, +0x2e,0x3b,0xb1,0x66,0x28,0x7e,0x44,0xa6,0xce,0x34,0x14,0x33, +0xd5,0x7f,0x63,0x6a,0x35,0xca,0xd4,0xab,0xe1,0x0c,0x91,0x67, +0xf7,0x0a,0xd9,0x0c,0xde,0xc3,0xe9,0xe4,0xd7,0x0f,0x8b,0xd9, +0x7e,0x9d,0x64,0x22,0xe8,0xe2,0x26,0x06,0x37,0x45,0xe2,0x76, +0x6d,0x9c,0xa7,0xde,0x62,0x7e,0x41,0xdc,0xb0,0xc6,0x3d,0x09, +0x3e,0x57,0x95,0x7f,0xc6,0xe8,0x76,0x11,0xfc,0x11,0x86,0xc3, +0x8f,0xcc,0x40,0xb4,0x26,0xf9,0xed,0xc3,0x42,0x76,0xba,0x48, +0xe2,0x1f,0x28,0x38,0x06,0x04,0x8a,0x1d,0xcf,0xdb,0x68,0xdc, +0x06,0xc6,0x77,0x15,0xed,0x7d,0x5c,0xae,0xcd,0xa6,0x1b,0x2b, +0xb5,0x32,0x67,0x33,0xb3,0xcf,0x6a,0xc8,0x39,0x61,0xae,0xa0, +0x45,0x35,0x36,0x14,0x91,0xdd,0x30,0xfe,0x36,0xd3,0xa6,0x72, +0x17,0xc7,0xef,0x64,0xe0,0x13,0x15,0x18,0x7f,0x1f,0xc7,0xb3, +0x42,0xad,0xd1,0x7f,0x30,0xb6,0xb9,0x4c,0x54,0xcd,0xb3,0xc5, +0x12,0x5f,0x3b,0x9d,0x26,0x66,0x91,0xb1,0x87,0xf8,0x66,0xdb, +0x3f,0x8c,0x6d,0xf2,0x0f,0x63,0x8f,0x52,0x30,0x76,0xd2,0x10, +0xa6,0x3e,0x32,0xb6,0x04,0xbe,0x23,0xe7,0xdc,0x2e,0x79,0x5f, +0x09,0x28,0x6e,0xe5,0x71,0x52,0xdd,0xba,0xfa,0x23,0xdd,0x1c, +0xa4,0xb5,0x61,0xe3,0x05,0xb0,0x68,0x41,0x8b,0x1e,0x70,0xcc, +0x3f,0x07,0xe3,0x84,0x85,0xd7,0x0f,0xef,0x17,0x3e,0xc3,0x71, +0xbd,0x7e,0x60,0x6e,0x80,0xba,0xc7,0x40,0x57,0x07,0x4f,0x9b, +0x41,0x12,0x73,0xc4,0x70,0x83,0x0d,0x8e,0xb7,0x2d,0x36,0xe3, +0x5b,0x33,0x5b,0x73,0x1a,0xf3,0x39,0x8c,0xef,0x1f,0xcb,0x7a, +0x9e,0x70,0x8d,0x0f,0x54,0xf7,0x8b,0x8d,0x8e,0x75,0xa6,0x02, +0x3b,0x29,0x31,0xa8,0xd4,0xb7,0xda,0xa7,0x48,0xd5,0x34,0x30, +0xcf,0xa7,0xe0,0x78,0xa6,0x87,0x6a,0x6d,0x46,0xc6,0x31,0xa5, +0xaf,0x99,0xf6,0xf2,0xac,0x8e,0x34,0x8d,0x94,0xaa,0xc4,0x8e, +0x56,0x35,0xfc,0xae,0x1b,0xca,0x1a,0xb0,0xac,0x5d,0xd1,0x36, +0x33,0xc2,0x46,0xf9,0x74,0x02,0x66,0x06,0x68,0xc6,0x80,0x54, +0xa5,0x07,0x7c,0x0c,0xd8,0xf3,0xf4,0xe5,0xb8,0x01,0x8b,0x05, +0xc7,0x88,0x01,0xfa,0xf4,0xb0,0xe0,0xb3,0x80,0xe8,0xa0,0xcf, +0x05,0x16,0x62,0x66,0x91,0x7c,0xdf,0x12,0xbf,0x72,0x7f,0x4e, +0x98,0xc6,0x94,0xe5,0x15,0xe7,0xe7,0x17,0x88,0x4b,0x5c,0x67, +0x93,0x66,0x88,0xb7,0x60,0x31,0x7e,0x25,0x69,0x87,0x78,0x53, +0xfa,0x66,0x29,0xe9,0x86,0x78,0x43,0x16,0x05,0x34,0x24,0x0d, +0x75,0x55,0x2d,0x79,0x8d,0x47,0x73,0x78,0x3f,0x7b,0x27,0x6b, +0x5b,0x47,0x4e,0x3e,0xe6,0x47,0x92,0xeb,0x9a,0x67,0x95,0xe6, +0x72,0x31,0x93,0x0f,0xad,0xf6,0xab,0xf3,0x2f,0xe3,0xd0,0x2e, +0x9c,0x64,0xb8,0x50,0xfa,0x73,0xbc,0x92,0xce,0x87,0xd7,0x06, +0xb7,0x06,0x57,0x50,0x64,0x2d,0xa6,0xc8,0x6a,0x47,0xe5,0x57, +0xa0,0xdc,0x81,0xca,0xbf,0x81,0x6a,0x17,0xbe,0xa1,0xc8,0xea, +0x15,0x91,0xb5,0x76,0x50,0x03,0x0d,0x32,0xb3,0x21,0x4d,0x75, +0x0f,0x8a,0x14,0xf1,0x72,0xff,0xd4,0x1b,0x11,0x59,0xea,0x6f, +0x18,0xf9,0xba,0xc7,0xe4,0x8e,0xdd,0x13,0xf7,0xef,0x7d,0x73, +0x3b,0xf8,0x2d,0xb9,0x7b,0x0b,0x8f,0x94,0xdf,0xee,0xe8,0xbd, +0x7c,0xf6,0x09,0xd7,0x2c,0x1c,0x37,0x02,0x13,0xd6,0xc3,0xbf, +0xc2,0xbb,0xdc,0xa5,0xc8,0x55,0xb5,0xb6,0xdc,0xa7,0xcc,0xa3, +0xd4,0x2b,0x5f,0x15,0xb4,0x18,0xfb,0x83,0x46,0xc6,0x07,0x6d, +0x0e,0xd6,0x1e,0x6d,0x35,0xba,0x60,0xeb,0xc2,0xb7,0x1d,0xed, +0x3e,0x76,0xd1,0xee,0xa0,0xf3,0x36,0xef,0x35,0x41,0xf9,0xa6, +0xfc,0xab,0xbc,0x6f,0xcb,0xef,0x9e,0xe5,0x84,0x27,0xc0,0xd2, +0x04,0x3a,0x7c,0x21,0x0b,0x97,0xb7,0x13,0xcf,0x3a,0xd7,0x1a, +0xd7,0x72,0x6b,0x77,0xfe,0xb4,0x6b,0xa9,0x43,0xb1,0x1d,0x27, +0x7c,0x62,0x4e,0x5e,0xc1,0xf0,0xf9,0xac,0xfc,0x5b,0x41,0x85, +0xa4,0xfb,0xc8,0xbc,0xd2,0x3d,0x6d,0xa2,0xcd,0xa2,0x8d,0x63, +0x38,0x98,0x08,0xda,0x10,0x8b,0xda,0x3f,0x1f,0x5d,0x8a,0x87, +0x30,0x16,0x0e,0x21,0xcf,0x6e,0x89,0xda,0x10,0xb3,0x2d,0x2e, +0x45,0x9b,0x87,0x95,0xe9,0xb0,0x31,0xef,0x43,0x49,0xba,0xa7, +0xd4,0x43,0xea,0xd9,0x5e,0xc2,0x7b,0xde,0x74,0xbc,0xed,0x7a, +0x9e,0x1b,0x08,0x02,0x67,0x4a,0x7d,0xc3,0x69,0x9d,0xb3,0x2b, +0x94,0xa0,0x06,0xf2,0xe2,0xfe,0xe8,0x87,0x15,0xfb,0xa3,0xc3, +0x54,0xd4,0x60,0x85,0xd8,0xdd,0x43,0x88,0x3d,0x1e,0xa1,0x28, +0x5e,0x44,0x16,0x3c,0x41,0xeb,0x3c,0x1a,0xc1,0x1f,0x3e,0x26, +0x91,0x20,0x85,0x24,0xd7,0x12,0x25,0xb9,0xa2,0xce,0xa3,0x49, +0x24,0x7a,0x48,0x7a,0x7c,0x4c,0x22,0xab,0x07,0x93,0xc8,0x1b, +0x11,0xb1,0x00,0x70,0x93,0x4a,0x8a,0x04,0x45,0x01,0x17,0x15, +0x12,0x66,0x3c,0xf5,0xb0,0x68,0xe7,0x8b,0xcc,0xdd,0x62,0x45, +0x04,0xdf,0xa3,0x11,0x4c,0x79,0x69,0xe2,0x5b,0x18,0xd3,0x81, +0x63,0x5e,0x2b,0xda,0x57,0x30,0xa5,0x0b,0x5f,0x52,0x49,0x21, +0x3f,0x82,0xe5,0xa4,0xdf,0x54,0xbe,0xaf,0x4f,0x88,0xfa,0xd7, +0xe8,0x8b,0x57,0xe5,0xba,0xb4,0x4e,0x74,0xed,0xb7,0x1e,0xdc, +0x35,0x57,0xee,0xb4,0x81,0xa0,0x13,0x74,0x83,0x93,0xb8,0x05, +0xde,0x06,0x71,0x3d,0xfe,0x11,0x71,0x3d,0xfe,0xbb,0xb7,0x64, +0x2e,0x0e,0x7b,0x2d,0xee,0xf9,0xaa,0x49,0x75,0xc5,0xb0,0xb7, +0xac,0xfc,0x15,0xfe,0x49,0xa0,0x19,0x57,0x60,0x33,0x4b,0xab, +0x89,0x66,0x82,0xcd,0xb0,0x1e,0x9a,0x59,0x4c,0x34,0x22,0xa8, +0xb3,0x17,0x74,0x68,0x2f,0xea,0x10,0xd0,0xb9,0x8f,0x3a,0xac, +0x50,0xee,0x23,0xea,0x6d,0x2a,0x1f,0xa8,0x15,0xb2,0xcc,0xd2, +0x15,0xd5,0x6e,0x08,0x55,0xa1,0x54,0x3e,0x7c,0x18,0xd2,0xdb, +0xb3,0x06,0xa7,0x2c,0x77,0x53,0xf9,0x20,0xd3,0xa1,0xe1,0xbc, +0xb9,0x21,0xfd,0x63,0x38,0xcf,0x54,0x18,0x61,0x61,0xe2,0xea, +0x96,0x41,0xf5,0x20,0x4e,0x59,0xca,0xf7,0xf5,0xab,0x12,0x50, +0x3b,0x05,0x5b,0xb3,0x60,0x74,0x56,0x8e,0x7f,0x56,0x40,0x66, +0xc0,0xd9,0x0a,0xde,0xbc,0x57,0xe7,0x8a,0x5e,0xab,0xbd,0x1b, +0x5f,0xe8,0x5f,0xe4,0x53,0xe4,0xbd,0x3b,0x6a,0x5d,0xf4,0xda, +0xd8,0xd3,0xcd,0x95,0xdd,0xf9,0x4d,0xc6,0x79,0xbc,0x9f,0x99, +0xad,0x96,0x8d,0x81,0xf3,0x09,0x97,0x04,0x97,0x04,0x0e,0xba, +0xf1,0x0b,0x72,0x35,0xe5,0x52,0x5a,0xaf,0x4c,0x22,0x7e,0x4d, +0x37,0xa4,0x31,0x9f,0xf7,0xeb,0x76,0xbc,0xea,0xde,0x68,0xe7, +0xcf,0x67,0xf8,0x65,0x78,0x66,0x78,0x38,0xc6,0x1c,0x8f,0xb1, +0x8b,0xcb,0xad,0xcf,0xef,0xce,0x6a,0x33,0x13,0xbf,0xff,0xe2, +0xad,0xed,0x69,0x1a,0x91,0x10,0xf1,0x45,0x44,0xc2,0xc9,0x30, +0xde,0x99,0x09,0xaa,0xf7,0xee,0xf0,0xa9,0xb1,0x0d,0xe0,0x33, +0x7c,0x65,0x9e,0xe9,0x5e,0x4e,0xd1,0x8e,0xb1,0x0e,0xb1,0x39, +0x75,0x79,0xed,0xd9,0x2d,0xf4,0xd7,0x83,0xcd,0x7d,0x74,0xbd, +0xcc,0xc2,0x4e,0x84,0x25,0x84,0x8a,0x5b,0x8b,0xdc,0x4d,0xbb, +0x2d,0xbd,0x9a,0x75,0x2a,0x22,0x29,0x22,0x29,0xd2,0xc1,0x64, +0x9f,0x3d,0x2a,0xdb,0x71,0xcd,0x38,0xf9,0x1d,0x28,0x77,0x2a, +0xe2,0x88,0xb6,0x2f,0x07,0xe3,0x28,0x12,0x5a,0x59,0x2a,0x19, +0x3f,0x16,0xe8,0xc6,0x62,0x2d,0x61,0x38,0x94,0x77,0xa4,0x1a, +0xa9,0x5f,0x26,0x7d,0x9d,0x08,0xca,0x99,0x8e,0x3c,0xcc,0x69, +0xff,0xb5,0x27,0xf3,0x2b,0x71,0x81,0xe4,0x86,0x97,0x86,0xa0, +0x79,0xb4,0xa4,0x8b,0x12,0x58,0xf3,0xd6,0x5a,0xfb,0x73,0x9c, +0xf0,0x9e,0x22,0xf3,0x25,0x0c,0xa7,0xe9,0x79,0x38,0xce,0x19, +0x04,0x3d,0x7d,0xb7,0x90,0xbc,0x83,0xe1,0xb3,0x58,0xb9,0x97, +0x3f,0xd9,0x73,0x78,0xc9,0xb1,0x19,0x1e,0x05,0xc7,0xf8,0x3f, +0x4a,0x5f,0xb6,0x3c,0xbd,0xc9,0x09,0x6a,0xb8,0x7e,0xc8,0x4b, +0xb6,0xa2,0x97,0x14,0x22,0x4f,0x1e,0x0c,0xb3,0xc9,0xda,0x0d, +0xa8,0xac,0x85,0x33,0x8f,0x17,0x9a,0xf2,0x30,0xa5,0x0a,0xd4, +0xae,0xbe,0xfc,0x99,0x1b,0x48,0xc0,0xc2,0x8f,0xee,0x33,0x1d, +0x74,0x9f,0xa8,0x84,0xf6,0x0e,0xaa,0x3f,0x9a,0xc2,0x9b,0x14, +0x4a,0xe8,0xd9,0x3f,0x20,0xa6,0xfe,0x13,0xd5,0xdf,0x33,0x4a, +0xbb,0xf7,0x44,0xe3,0xd3,0xf4,0xad,0xd3,0x00,0x9a,0xcf,0x81, +0x03,0xc6,0xe6,0x2c,0x3f,0x7d,0x06,0x6a,0xac,0x47,0x5d,0x1b, +0x8a,0xef,0xbf,0xfb,0x2d,0x48,0x35,0x14,0x38,0x5e,0xac,0x86, +0xbc,0x2e,0xcc,0x6b,0xd4,0xb6,0xc2,0x02,0xb1,0x39,0x69,0x04, +0x27,0x1d,0x59,0xb9,0xb9,0xb0,0x94,0xf4,0x06,0x5c,0x0d,0x7a, +0x14,0x94,0xd5,0xc9,0xe3,0xf4,0xd2,0xe5,0xc5,0x5a,0x67,0x39, +0xa8,0x69,0x13,0x24,0x4c,0x7a,0x86,0x34,0x93,0xca,0x1e,0x18, +0x00,0x97,0x81,0x35,0xe8,0x02,0xc9,0x4c,0x78,0x70,0x78,0x68, +0x68,0x28,0x87,0x3f,0x9a,0x41,0x05,0x73,0xc0,0x76,0xa5,0x07, +0x4e,0xf5,0xca,0x36,0xe2,0xbb,0xd3,0x5b,0xd3,0x1b,0x65,0x1c, +0x7a,0xf7,0x2b,0xb3,0x3e,0x09,0xae,0x71,0x41,0xea,0x41,0x71, +0xb1,0x51,0x2e,0x34,0x92,0x82,0x4a,0xbc,0x2b,0x7c,0x0a,0x8c, +0x03,0xf8,0x7c,0xbf,0x22,0xe7,0x0c,0xaf,0xaa,0x74,0x3e,0xc3, +0x4e,0xe9,0x19,0xd3,0x9b,0x9f,0xd5,0x4a,0x79,0xba,0x32,0xb1, +0xa9,0x59,0x0d,0x9f,0x37,0x43,0xe5,0x59,0xac,0x6c,0x50,0xb4, +0xf5,0x0c,0x04,0xc1,0x45,0x22,0xf4,0xb5,0xc8,0xfb,0x98,0xd5, +0xa3,0xcc,0x84,0xbe,0x36,0x56,0x4e,0xe5,0x07,0x29,0x08,0x28, +0x0e,0x2a,0x0b,0xe1,0x68,0xc1,0x5c,0x9e,0x55,0x9c,0x5d,0x90, +0xc3,0xe1,0x52,0xaa,0x89,0xea,0xe1,0xa4,0x2d,0x8b,0x27,0x37, +0x92,0x06,0x38,0x69,0x4d,0xdf,0xac,0xa3,0x04,0x7d,0xd2,0x82, +0x15,0x46,0xe0,0x21,0xd2,0x7c,0xa6,0xb6,0xa1,0xb0,0x51,0xaf, +0x90,0xf7,0x3b,0xee,0xe4,0x70,0xcc,0x89,0x93,0x8f,0x7b,0x48, +0x72,0xdd,0xf3,0x6d,0xa4,0xae,0x97,0xd3,0xf9,0xd0,0x4a,0x9f, +0x7a,0xbf,0x12,0x0e,0x8f,0x47,0x12,0x99,0x5b,0xe6,0xb1,0x54, +0xa7,0x2b,0xa9,0x7c,0x44,0x6d,0xd0,0x59,0x05,0x1d,0x8f,0x56, +0x24,0xfa,0x61,0xbf,0xc3,0x30,0xda,0xbe,0x84,0x31,0x5d,0x78, +0x97,0xc2,0xa8,0x82,0xc2,0x28,0x61,0x6d,0x94,0x8e,0xa2,0x24, +0x33,0x99,0x7a,0x84,0xc9,0x34,0x52,0x3a,0xcf,0xdc,0x29,0x52, +0x3c,0xc8,0xb8,0x9f,0xf4,0x56,0xd4,0x77,0x13,0xdf,0x31,0x70, +0x00,0x6c,0x08,0xfa,0xc8,0xbd,0x68,0x61,0x3c,0xf7,0x6b,0xd8, +0xd5,0x23,0x9c,0x31,0x80,0x4d,0xeb,0x58,0xc1,0x31,0x8c,0xbc, +0x7c,0x45,0x95,0xf2,0x06,0x19,0xf9,0xfa,0xe7,0x75,0x2c,0x4e, +0x37,0x21,0x48,0x56,0x00,0xa1,0x6a,0x45,0x05,0xc9,0x52,0xf1, +0x4d,0x38,0x12,0xb2,0x10,0xc8,0x6f,0xcc,0x40,0x3c,0x8e,0x24, +0xbf,0xbf,0x9a,0xc7,0xce,0x17,0x41,0xf6,0x6a,0x16,0xdb,0xaf, +0x27,0x23,0x82,0x95,0x91,0xdc,0x8a,0x11,0xbe,0xc2,0xfd,0x14, +0x59,0xa1,0xdd,0x21,0xcd,0x76,0x11,0x7c,0x06,0x45,0x16,0xad, +0xb4,0x16,0x82,0x1a,0x91,0x69,0x4b,0xf7,0xa4,0x6c,0x69,0x4a, +0xe7,0x63,0xaf,0x87,0x3e,0x0b,0xe9,0xe3,0x70,0x2d,0x5e,0xa0, +0x79,0x3b,0x93,0x82,0x6a,0x04,0xad,0xb4,0x62,0x67,0x07,0x4f, +0xf7,0xdb,0xcc,0x7d,0xa0,0xc4,0x28,0xd9,0x96,0xb4,0x20,0x71, +0xb5,0x38,0x2f,0xf1,0x2c,0x46,0x24,0xc1,0xfe,0xfc,0x00,0x22, +0x54,0x18,0x42,0x0c,0x1e,0xc7,0xb1,0xa2,0x2a,0xfb,0x83,0x69, +0xcd,0x29,0x68,0xd6,0x00,0x53,0x08,0x61,0x85,0x85,0x96,0xc4, +0xc1,0xe0,0xf0,0x21,0x3d,0xc7,0x33,0xa6,0xfc,0xf9,0x86,0xeb, +0xd7,0x6b,0x2e,0x71,0xa0,0x9b,0x40,0x9a,0xad,0xae,0xef,0xa8, +0x3f,0xda,0x5c,0xc7,0x3b,0xb5,0xed,0x78,0x66,0x55,0xcb,0x29, +0xff,0xad,0x04,0xe6,0xa4,0xc2,0xb0,0xb5,0xd8,0xf6,0x86,0xed, +0x05,0x9b,0x4e,0x55,0x2b,0xaf,0x1c,0xef,0x5c,0xaf,0x1c,0x77, +0xd5,0x23,0xb1,0xbb,0x63,0x77,0xc7,0xdd,0xb9,0x78,0xef,0x49, +0xeb,0x15,0xf3,0x4a,0xde,0xd1,0xd4,0x48,0x57,0xcf,0x20,0x20, +0xc7,0x3f,0xcf,0x2f,0xa7,0xb1,0xa1,0xae,0xb5,0xaa,0x4d,0x7c, +0x9e,0x74,0x5d,0x30,0xc0,0xeb,0x70,0x98,0xf1,0x74,0x70,0x75, +0x74,0x72,0x0d,0xc8,0x12,0x39,0xc8,0xc1,0x86,0xef,0xb2,0xea, +0xb1,0x68,0x3b,0x16,0x18,0x1c,0x10,0x12,0x18,0xca,0x9d,0x38, +0x66,0x99,0x60,0x33,0x35,0x59,0xef,0x6a,0xe2,0x83,0xa4,0xfb, +0xc9,0xaa,0x28,0x3d,0x0f,0x19,0xec,0xa5,0xe4,0x0b,0xc9,0x5d, +0x29,0x9c,0xe0,0x02,0x79,0xd4,0x69,0xca,0xbf,0x0e,0x2e,0x1b, +0xf9,0x98,0x43,0xbb,0xff,0x33,0x87,0x1a,0x7d,0xcc,0xa1,0x1f, +0xab,0x9b,0xa4,0x37,0xa2,0xd3,0xa6,0xbe,0x65,0xe4,0x9f,0x80, +0x15,0xc1,0xd9,0xcf,0x61,0x36,0xd3,0xb3,0x96,0x3c,0x87,0xb9, +0x6b,0xd9,0x01,0xcf,0x10,0xf2,0x2b,0x8c,0x58,0xcc,0xca,0x37, +0x3a,0x92,0x15,0x38,0xfb,0x07,0xc5,0x72,0xd4,0xb9,0x2b,0x70, +0x2e,0x23,0x3c,0xf7,0x19,0xbc,0x84,0x23,0x68,0xfd,0xf3,0x16, +0x46,0xcc,0x66,0x61,0x12,0x7a,0x88,0x05,0x4e,0x77,0xf0,0x7f, +0xd4,0xbf,0x18,0x25,0xce,0x41,0x0e,0x3e,0x48,0x32,0x19,0x2a, +0xea,0x68,0x58,0x1f,0x54,0x3c,0x48,0x92,0xed,0x4d,0xd9,0xd2, +0x32,0x24,0x44,0x69,0x58,0x8f,0x18,0xcc,0x4d,0x8a,0xb0,0x1e, +0xca,0x4d,0xf2,0x9f,0x69,0x29,0xd0,0x74,0xf4,0x8c,0x71,0xc3, +0xde,0xf6,0x4a,0xde,0xfa,0xea,0xf1,0x2e,0x73,0xaa,0x58,0xdf, +0xa2,0x09,0xe9,0xe8,0x6e,0xbc,0x5c,0x7a,0xd9,0xac,0x88,0x77, +0xd3,0xb6,0x37,0x30,0x31,0xa1,0xb6,0x3f,0xd4,0xff,0x09,0x1d, +0x7d,0x09,0x9b,0x51,0x9a,0x5e,0x96,0x56,0x7e,0x4f,0x72,0x47, +0x7a,0x25,0xc3,0x93,0x2a,0xb0,0xd1,0x5e,0xb8,0x24,0x14,0x17, +0xc4,0xcb,0x8c,0xf9,0xf3,0x27,0x2f,0x9f,0xbc,0x94,0x1c,0xe5, +0x11,0xe6,0x19,0xea,0xc9,0xe1,0x5e,0x63,0x98,0xc7,0x58,0x1e, +0xd1,0xd1,0xdb,0x63,0x7e,0xda,0x84,0xaf,0x2e,0xaa,0x2a,0x3d, +0x5d,0xc1,0xe1,0x38,0x38,0x0b,0x93,0xd9,0x4a,0x97,0x5a,0xb7, +0x3a,0xcf,0xb2,0x0e,0x7e,0x77,0xeb,0xa1,0x3e,0xdb,0xf3,0x9c, +0xa0,0x83,0x37,0x14,0xda,0x3d,0xe6,0xa3,0xca,0x3d,0x22,0xda, +0xf1,0x3c,0x55,0xb9,0xa5,0xd4,0x8e,0xa9,0x77,0xa9,0x1d,0x17, +0xab,0xe1,0xb8,0x37,0x30,0xa6,0x13,0xc7,0xfc,0x26,0x06,0xcc, +0x98,0x5f,0xc5,0xe9,0xdf,0x17,0xa2,0x76,0x5f,0x29,0xdf,0x47, +0x16,0x4f,0xfb,0x95,0x95,0xff,0x0b,0xc7,0x93,0x4c,0xcf,0x1c, +0xaf,0x3c,0x2f,0x0e,0xb5,0x99,0xbc,0xa2,0xdc,0x92,0xec,0x12, +0x4e,0xd8,0xe4,0x4f,0x16,0x4e,0xa3,0x72,0xde,0x9b,0x16,0x43, +0xdf,0xc2,0xde,0xd5,0xac,0xd0,0xd5,0x40,0x34,0xa7,0xbd,0x61, +0xe5,0x6a,0x42,0x3d,0x81,0x57,0xf0,0x2f,0xac,0xc6,0x11,0xe2, +0x91,0x1b,0x2f,0x98,0xc6,0x9c,0xc2,0x26,0x0d,0xb8,0x2b,0xb8, +0x0b,0x1a,0x2c,0x2d,0x6a,0x3c,0xc5,0xd9,0x98,0x4e,0x1a,0x07, +0x83,0x8f,0xee,0x24,0x26,0xdc,0xbc,0x21,0x8d,0xaf,0x88,0x03, +0x9a,0xf0,0xc4,0x67,0x74,0xb4,0xc8,0xe9,0xfd,0xf7,0xe3,0xbc, +0x21,0xfd,0x4a,0xbd,0x30,0x9c,0xea,0x62,0xc9,0xf6,0xff,0x7c, +0x76,0x47,0x2d,0x3e,0x9b,0xc6,0x64,0x48,0x4f,0x37,0xac,0x85, +0xfd,0x2c,0xae,0xc3,0xcf,0xc8,0x4f,0xc0,0x2c,0xa3,0xf5,0x91, +0x55,0xff,0x68,0xf2,0x3f,0xd6,0x8f,0xa1,0x8b,0xb8,0xac,0x8c, +0x15,0xda,0x61,0x32,0x11,0xe7,0x6c,0x22,0xa1,0x90,0xc5,0x49, +0x09,0x1f,0xe7,0xac,0x4c,0xa6,0xea,0x88,0x73,0x36,0xe7,0x98, +0xbb,0xff,0xd8,0x68,0x99,0x1a,0x8e,0x7c,0x0b,0x6c,0x27,0xb2, +0xbf,0x2b,0xda,0x97,0x0c,0x2e,0xa1,0xf5,0xf3,0xfb,0x05,0xec, +0x4c,0xaa,0x04,0x7e,0x7f,0x3f,0x8f,0x95,0xeb,0xd1,0xb4,0xf1, +0xff,0xbb,0x7c,0x2c,0xd9,0x80,0x1f,0x5c,0x63,0xc6,0x15,0x06, +0xfd,0x6f,0x96,0x91,0x3d,0xac,0x24,0x6f,0xdf,0xcf,0x66,0x3f, +0x88,0xf3,0x71,0x2d,0x61,0xb4,0xf6,0xa1,0xfc,0x90,0x65,0x9a, +0x6e,0x2e,0xce,0xc7,0x39,0xe3,0x1a,0x91,0x0b,0xa8,0x0d,0x46, +0x98,0xa5,0xf2,0xb1,0xb3,0x82,0x67,0x88,0x1a,0x7e,0x03,0x54, +0x88,0xfa,0x60,0x9f,0x64,0x73,0xe3,0xe0,0x2c,0x15,0x35,0x97, +0xe6,0xd0,0x23,0xcd,0x55,0x54,0x1f,0x24,0x7c,0x1d,0xfd,0x32, +0xea,0x3e,0xd7,0x5f,0x6e,0x35,0xb4,0x14,0x2d,0x72,0xb6,0xb6, +0x21,0x8e,0xb0,0x2f,0xd2,0xa3,0xd2,0xac,0xed,0xea,0xfd,0xb4, +0xff,0xcb,0xa5,0x68,0xfd,0x47,0xe4,0xf3,0xc8,0x13,0x70,0xea, +0x42,0xa7,0x47,0xe0,0x05,0x46,0x42,0x18,0x1a,0x81,0xe3,0x16, +0xb4,0x33,0x02,0xbb,0x4d,0xe8,0x6c,0x28,0xcf,0xa7,0x86,0x7c, +0xbb,0xfc,0x23,0xc6,0x44,0xfb,0x19,0x7f,0xc4,0xd8,0xbd,0x41, +0x82,0xbd,0x4b,0x75,0xd8,0x22,0x05,0xc6,0x14,0x96,0x53,0xb4, +0xbf,0x8a,0x33,0x7f,0xdf,0x8a,0x73,0x7e,0x49,0xf2,0x23,0x64, +0xc6,0x92,0x3f,0x59,0x98,0xa1,0xf2,0xdb,0x8c,0x85,0xe2,0xa6, +0xe4,0x7f,0xbe,0x99,0xc1,0x0e,0xa8,0xfe,0x4e,0x16,0xcf,0xfa, +0x95,0x7d,0x47,0x6b,0xc6,0x05,0xb3,0x5e,0xd2,0xd7,0xd9,0x44, +0x73,0x16,0x45,0x96,0x2f,0x1e,0x27,0xe1,0x55,0x01,0xf5,0xc1, +0x65,0x26,0x01,0x7c,0xb6,0x5b,0xb6,0x6d,0xba,0x33,0x27,0x9f, +0x13,0x4b,0x70,0x1d,0x93,0x5b,0x99,0xdb,0x98,0x7e,0x5a,0x3f, +0x9b,0x8f,0x70,0xf4,0x33,0xf1,0xb7,0xe3,0xf0,0xa6,0x01,0x78, +0xae,0xa7,0xf7,0x08,0xce,0x38,0xb1,0x97,0xea,0x5a,0x8f,0x6e, +0xf4,0xf8,0x0a,0xd2,0x19,0x41,0x70,0x1a,0x9a,0xf6,0xb4,0x8b, +0x50,0x94,0x4f,0xa2,0x99,0xbd,0x86,0x9e,0x1c,0x27,0xc3,0x70, +0x33,0x31,0xe0,0x83,0x15,0x32,0x6c,0xab,0x28,0x46,0x75,0x69, +0xc0,0x6f,0x6d,0x92,0x0e,0x9a,0xf9,0x9c,0x28,0xc3,0x14,0xe8, +0x1b,0xa2,0x61,0x11,0x7d,0xca,0xf2,0x03,0xe2,0xd7,0xf6,0x54, +0x9e,0x7c,0xfb,0xac,0xe4,0x17,0xaa,0x43,0x0a,0x97,0xbd,0xde, +0x0c,0x2a,0x9b,0x4e,0x9f,0xe3,0x71,0xf2,0xc3,0x55,0x77,0xed, +0xbf,0xe2,0x76,0x33,0x4e,0x1b,0xb7,0x6e,0x44,0xd5,0xad,0x5c, +0x34,0x1d,0xca,0xff,0x12,0x6b,0xd0,0x32,0x38,0x6b,0x78,0x74, +0x88,0xed,0x86,0x66,0x0d,0x87,0x6a,0x51,0x51,0xc9,0x52,0xb6, +0x53,0x79,0xc3,0xe0,0x72,0xd0,0x27,0xbf,0xfe,0xb5,0x98,0x85, +0x2b,0x56,0x44,0x1f,0x7a,0xce,0xb1,0x03,0xe6,0x33,0xc9,0x6f, +0x7f,0x2d,0x64,0xe5,0x5b,0xc5,0x07,0xc3,0x81,0x68,0x8e,0x81, +0x2c,0x48,0x20,0x90,0x60,0x20,0xd8,0x42,0x20,0x3b,0x50,0x47, +0x93,0xed,0x9b,0xbf,0xa8,0x32,0x1f,0xf7,0x94,0xe0,0x67,0x9a, +0xe2,0xc1,0x54,0x29,0x8a,0x83,0xa9,0xa8,0x88,0xfd,0x8c,0x15, +0x64,0x83,0xb3,0x7f,0xe2,0x63,0x74,0x85,0x32,0x37,0x95,0x28, +0x34,0xe9,0xca,0xff,0xc6,0x7e,0xc1,0x43,0xa2,0xa6,0x6c,0x50, +0x93,0x0e,0x4d,0x0a,0x3e,0xf9,0x28,0x6a,0x06,0x67,0xff,0x52, +0xc5,0x7a,0x5b,0xac,0x25,0xfb,0xc7,0xa3,0x1e,0x89,0x4b,0x52, +0xca,0xa8,0x3a,0x75,0xa6,0x5d,0xad,0x42,0xcf,0x9e,0xdd,0xec, +0x6f,0xbc,0x47,0x4b,0x7d,0xfb,0xf3,0xf0,0x8c,0x98,0x13,0x61, +0x91,0xaa,0x11,0x51,0xe2,0xda,0xfd,0x33,0xc9,0x35,0xad,0x8a, +0xab,0x6b,0x9c,0x0e,0xad,0xdc,0xa3,0x5e,0x6d,0xd6,0xd5,0x54, +0xd3,0x5c,0x50,0xaf,0x7a,0x4a,0x92,0x7c,0x52,0x12,0x0d,0xa3, +0x70,0x02,0xdf,0x7b,0xb6,0xae,0xb9,0xe0,0x6c,0x72,0x5a,0x4a, +0x62,0x72,0xf4,0x5b,0x1c,0xcf,0xd7,0x36,0xce,0x07,0x2e,0x42, +0x16,0x73,0x32,0x3c,0x42,0x55,0x59,0x3e,0x47,0x3e,0x95,0xdc, +0x4b,0xb9,0x23,0xbd,0x99,0xc9,0xed,0xed,0x91,0xcf,0x39,0xd3, +0x81,0x4d,0x26,0x67,0xf0,0x1a,0x1b,0x7c,0x22,0x38,0x21,0x38, +0x81,0x73,0xcf,0x26,0x9d,0xd3,0x5e,0xff,0xd5,0x39,0xed,0x95, +0x68,0xea,0x3b,0x42,0x0c,0x54,0x8b,0x3a,0x60,0xf0,0xb1,0x74, +0x48,0xb8,0xa9,0x58,0x2e,0x0c,0xe9,0x00,0xd1,0xc8,0x0f,0x92, +0xde,0x2b,0xa6,0x66,0xdf,0x33,0xf2,0x03,0xe0,0x46,0xea,0x6c, +0xeb,0xac,0xea,0xcc,0x1d,0x4c,0xcd,0xad,0xb4,0x1d,0xab,0x4c, +0xf8,0xf3,0x35,0x6d,0x4d,0x75,0x5d,0xe5,0xf6,0xa5,0xf6,0x45, +0xf6,0x34,0x73,0xba,0x37,0xb8,0x34,0x38,0xd7,0x57,0x5d,0x28, +0xba,0x26,0xbb,0xcf,0x35,0xa1,0x8f,0x01,0x6c,0x64,0x23,0x0d, +0x83,0x4d,0xbd,0x2d,0x1c,0x1b,0x8e,0xd7,0x39,0x9c,0xe1,0x90, +0xf8,0x13,0x1c,0x7d,0x0d,0x46,0x33,0x42,0xd4,0x6c,0xf2,0xea, +0x15,0x2d,0xb5,0x66,0x44,0x91,0xfd,0x38,0xfa,0xba,0xb8,0xa6, +0x7b,0x1a,0x79,0xfd,0x6a,0x2e,0xed,0xa9,0x20,0x7b,0x59,0xdb, +0x18,0x1b,0x71,0xd3,0x96,0x6f,0xc4,0xfe,0xfd,0xe4,0xfd,0xab, +0x99,0xac,0xfc,0x3b,0xf4,0x22,0x7d,0xf5,0xed,0xcd,0xad,0xed, +0x36,0xf5,0xbc,0xb5,0xb9,0xa9,0x95,0x81,0x9d,0x4f,0x4d,0x48, +0x6d,0x64,0x7d,0x77,0x5e,0x57,0x49,0x47,0x85,0x53,0x13,0xaf, +0x63,0xb7,0xdb,0x79,0x37,0x2d,0x71,0xf9,0x3e,0xb8,0x26,0x61, +0x93,0x96,0xdd,0x98,0x0b,0x8b,0x35,0xab,0xba,0xf9,0x1d,0xad, +0xfa,0x2d,0xb6,0x6d,0x9c,0x30,0x2c,0x8b,0xdc,0x6e,0xee,0xee, +0x6a,0xff,0xd2,0xa6,0x8e,0xb7,0x38,0x6c,0x6c,0xbe,0xd7,0x86, +0xdb,0xad,0x25,0x6a,0x8f,0x9e,0x10,0x51,0xd5,0x66,0x8a,0xda, +0xc3,0x68,0x10,0xf4,0x05,0x5f,0x65,0x7d,0x48,0xa6,0x3a,0x43, +0xc1,0x2d,0xd3,0x7d,0x37,0x71,0xb0,0x1d,0x2a,0xa9,0x24,0x49, +0xdf,0x9d,0x32,0x28,0x5e,0x43,0xbf,0xa2,0x92,0x64,0xa6,0x82, +0x5b,0x16,0x24,0xae,0x12,0x41,0xff,0x55,0xf4,0x1b,0x51,0xbb, +0x9e,0xc4,0x5b,0xe4,0xeb,0xae,0x2f,0x2f,0x9d,0x7b,0x68,0x5d, +0xc7,0x1b,0xed,0xd2,0xd1,0xdf,0x60,0xca,0x29,0xf7,0x2b,0xf5, +0x4f,0x27,0x87,0xa9,0xc6,0x8e,0x4e,0xb2,0xfe,0x20,0x51,0x72, +0x67,0x4d,0xb3,0x83,0x7a,0xd5,0x61,0x17,0x73,0x26,0x3d,0xbd, +0x4a,0xa3,0x9e,0x35,0x4e,0x57,0x32,0xc6,0x95,0xac,0x4f,0x4c, +0x4a,0xbe,0x46,0x09,0x0b,0x4b,0xd3,0x4f,0x9c,0xc5,0xc5,0x11, +0x4a,0xe7,0xc1,0x9c,0x8d,0xf1,0x88,0xf2,0x88,0x0c,0xe8,0x0a, +0xe5,0xd3,0x4a,0x65,0xf5,0xc9,0x15,0x5c,0x35,0xa6,0xf4,0x42, +0x60,0x0b,0x06,0xb6,0x69,0xe3,0x2c,0xa4,0xe5,0x3d,0x8b,0xee, +0xe1,0xb8,0xf2,0x20,0x4e,0x55,0xef,0x72,0x51,0xba,0x01,0x73, +0x32,0x60,0x1d,0x44,0xab,0xc1,0x4e,0x16,0x3d,0xb0,0x81,0x66, +0xf3,0xe1,0xed,0x38,0xfc,0x95,0xa2,0x7d,0x01,0x63,0xbb,0xf0, +0x1e,0x8d,0xab,0x2c,0x16,0xc7,0x27,0x0c,0xae,0x61,0x09,0xa5, +0x15,0x84,0xae,0xe8,0xf2,0x73,0x0a,0x97,0x4b,0x45,0x66,0x7f, +0x2b,0x32,0x93,0x0c,0xda,0xc8,0x8b,0x57,0x8b,0xa8,0x62,0x9b, +0xa5,0xf0,0xd4,0x7c,0x9c,0x47,0xde,0xbe,0x9a,0xcd,0xf6,0x6f, +0xc3,0xad,0x04,0x82,0x84,0x91,0x18,0xc4,0xc2,0x72,0xf1,0xb0, +0x9d,0x11,0x7d,0x30,0x82,0x69,0x3b,0x4a,0xfa,0x80,0x39,0xca, +0xe2,0x4a,0x1b,0xa2,0x83,0x23,0x2e,0x28,0xb6,0xc3,0x14,0x0f, +0x56,0x66,0x84,0x55,0xab,0x48,0x4c,0x6b,0x68,0x47,0x48,0xb3, +0xa3,0x98,0xd7,0xd2,0xc5,0xbc,0xb6,0x44,0x91,0xd7,0xd2,0xf7, +0xa5,0x6c,0xad,0x13,0x19,0x24,0x54,0x91,0xd7,0x96,0x62,0x1f, +0x29,0x78,0xaa,0xe0,0x74,0x4b,0x85,0xbe,0x9b,0xe1,0xb7,0x85, +0x7b,0x0b,0x25,0xa2,0xbe,0xa3,0x69,0xad,0x21,0x8d,0x7f,0x16, +0xfd,0x2a,0xea,0xae,0x7a,0x7f,0xb0,0xb8,0x99,0xe4,0x6c,0x5c, +0xa6,0x6f,0x2a,0x0f,0x6b,0xb7,0x63,0xb0,0x0e,0x18,0x82,0xcc, +0x1e,0x60,0x58,0x60,0x90,0x21,0xc0,0xdc,0x42,0x86,0x6d,0xa3, +0x1f,0xff,0x80,0xbe,0x2a,0xcb,0xb7,0xc9,0xdf,0x92,0x8b,0xd2, +0xf3,0x19,0x7d,0xb9,0x9c,0x45,0x0f,0x84,0x18,0x18,0xe1,0x5a, +0x33,0x58,0x6b,0xca,0xea,0x04,0x1c,0x0e,0x39,0x1c,0xc9,0xc9, +0x23,0x4e,0x10,0x64,0x19,0x4f,0xd1,0xf6,0x2d,0xec,0xfd,0xec, +0x73,0xb9,0xe7,0x2b,0x3c,0x1b,0x79,0x13,0x37,0xe3,0xe0,0xc3, +0xc1,0xdc,0x1d,0x7d,0xdc,0xc8,0x9a,0xe4,0x06,0xf4,0xa9,0xc3, +0x04,0xa6,0x2e,0x23,0xab,0x52,0xa3,0x93,0x35,0xce,0x56,0x12, +0x8a,0x69,0x7d,0xf8,0xdf,0x89,0xfb,0x1b,0x6a,0xd8,0x9a,0x8f, +0x8f,0x39,0xb4,0xa3,0x43,0xc3,0x8d,0xfe,0x93,0xf2,0xff,0x21, +0xac,0x89,0x94,0xb0,0x16,0x89,0x84,0xf5,0x6e,0x31,0x3b,0x8b, +0xd2,0xde,0xcb,0x77,0x0b,0xd8,0x7e,0x9d,0x6e,0x22,0xd8,0x61, +0xea,0xcb,0x7d,0x38,0xd2,0x0c,0x46,0x6e,0x46,0xde,0x54,0x7e, +0xa6,0x1d,0xa7,0x3e,0x06,0xb6,0x0d,0xd9,0x1b,0xf4,0xff,0xc8, +0x86,0x05,0x04,0xe7,0x5f,0x82,0xf9,0x4c,0xcf,0x11,0x72,0x09, +0x96,0x1d,0x61,0x07,0xa2,0x16,0x90,0x37,0xef,0x28,0x85,0x1d, +0x38,0x47,0x0e,0xe2,0xfc,0xab,0x2c,0x98,0xab,0xc0,0xb2,0x83, +0xb8,0x8c,0x99,0x41,0xc5,0xf6,0x0d,0x58,0xb5,0x8f,0x15,0xb6, +0xce,0x23,0x31,0x2d,0x94,0xc6,0x86,0x24,0x85,0xc8,0xe9,0xf3, +0x81,0x57,0xf0,0xd5,0x90,0xa4,0x08,0x55,0xa8,0xb5,0x0d,0xe2, +0x94,0xd8,0xd3,0xc1,0x7a,0x4d,0xf2,0x6f,0x9e,0x1f,0x06,0xc5, +0xff,0x90,0xba,0x62,0x46,0x4c,0x5d,0xbe,0x8d,0xde,0xf1,0x63, +0x58,0xb5,0x99,0xf5,0xd0,0x24,0x37,0xdc,0x6e,0x1f,0xef,0xb5, +0xaf,0x68,0xe5,0x8f,0xd6,0xef,0xa8,0x39,0x5c,0x20,0xee,0x50, +0xaa,0x41,0xee,0x17,0x3c,0x3f,0xdb,0xd3,0x64,0x5f,0xcb,0x1b, +0xda,0x6c,0x75,0xdc,0x19,0x48,0xb1,0xbf,0xab,0x3f,0x9f,0x5c, +0x3e,0x7c,0x18,0x93,0x4d,0xe4,0xb7,0x3b,0xd8,0x81,0x99,0x82, +0x2d,0xd9,0xf7,0x85,0x7e,0x82,0xb9,0x7a,0x74,0x73,0x78,0x5b, +0x68,0xb3,0x43,0x24,0x9f,0x61,0x2a,0x35,0x4f,0x31,0xa9,0xc9, +0xe4,0x13,0xac,0x4e,0x38,0xc5,0xbb,0x73,0x3a,0x31,0x61,0xe1, +0x66,0x53,0x8d,0x98,0x4c,0x63,0xa5,0x36,0xe6,0x56,0x41,0xc9, +0xd3,0x34,0x11,0x96,0xef,0xa9,0x28,0x9b,0xff,0xee,0xd7,0x8e, +0xc5,0x6f,0xe8,0xdf,0x57,0xef,0x3b,0xb1,0x41,0x7c,0x0a,0x32, +0x55,0xae,0x4d,0xe6,0xaf,0x7e,0xc5,0xf6,0xeb,0x0f,0xe8,0x91, +0xae,0xb2,0xe6,0xca,0xea,0x6a,0xbb,0x5a,0xde,0xc5,0xc1,0xcc, +0xc9,0xd8,0xd3,0xe3,0xb4,0x5f,0x75,0x20,0x2d,0xff,0xa2,0x3b, +0x70,0xe5,0x6d,0xf8,0xbc,0x15,0x3f,0xbf,0x0e,0xf3,0xda,0x70, +0xde,0x75,0x18,0x0b,0xcb,0x31,0x02,0x97,0x5f,0xdf,0x8f,0x9b, +0xaf,0x5f,0xa2,0xef,0x43,0x68,0x0e,0xf9,0x74,0x3f,0xce,0x32, +0x83,0x59,0xfb,0x51,0xd5,0x1c,0x54,0x77,0xe3,0x52,0x13,0x70, +0x65,0x8c,0xcd,0x17,0xda,0x2e,0xf5,0xcd,0x35,0xe5,0x3b,0x32, +0x3a,0xb3,0x5b,0xf2,0xb9,0xe9,0xac,0x75,0x8c,0x75,0x9c,0x75, +0x5c,0xaa,0x31,0x0f,0x8c,0x0c,0x94,0xf3,0xde,0x15,0xc5,0xb5, +0xf3,0x7a,0xe1,0x3a,0x11,0xda,0x91,0x1c,0x4c,0x64,0x6b,0x0b, +0x2a,0x4b,0x8a,0xca,0xb9,0x14,0xe6,0x1c,0x7e,0xfa,0x6c,0x05, +0x2c,0x38,0x58,0xd2,0xc1,0xef,0x2f,0x35,0xae,0xb0,0xa9,0xe6, +0x30,0x40,0xfe,0x03,0xd9,0x81,0x1a,0xf7,0x58,0xf9,0x3a,0x95, +0x1d,0x38,0xe3,0x1e,0x2b,0x54,0x38,0x13,0xcd,0xd5,0x6f,0xd8, +0x6f,0xa9,0x2e,0x9e,0xb5,0xfa,0x1d,0xdb,0xff,0xa9,0x29,0x11, +0x6f,0x48,0xfc,0xa2,0xfb,0x08,0xb2,0x1b,0x37,0xdf,0x66,0x85, +0x24,0x7c,0x41,0xf2,0x9f,0x65,0x88,0x64,0x64,0x49,0xc9,0x68, +0x66,0xe8,0x74,0x7f,0x2a,0x74,0xe6,0x40,0x15,0x49,0xd7,0x91, +0xee,0x4b,0xde,0x5c,0x2f,0xe5,0x63,0x6f,0x84,0x8b,0xf1,0xb3, +0x3c,0x5c,0x0c,0x94,0x85,0xab,0xd5,0x1a,0x53,0x13,0xbe,0x8e, +0xa5,0x3a,0x47,0x55,0xb9,0xff,0x46,0xff,0x57,0x44,0x6f,0x1f, +0x6e,0xb9,0x41,0x1b,0xde,0x08,0x78,0x83,0xde,0x1e,0xd8,0x22, +0x36,0xea,0x5d,0xa8,0xce,0xbc,0x1f,0x58,0x4f,0xda,0x70,0xcf, +0x03,0xd8,0x43,0xdb,0x87,0x60,0xd6,0x8e,0x87,0x59,0x59,0x81, +0xac,0x4c,0x5a,0x72,0x2c,0x8b,0x87,0x5d,0xb0,0x15,0xfd,0x71, +0x6b,0x0b,0x13,0xee,0x16,0xe2,0x14,0xe0,0x26,0x2e,0x6f,0xce, +0x28,0x49,0x2f,0x49,0x2b,0xb5,0x94,0xf1,0x30,0x89,0x5e,0xf4, +0xc4,0xad,0xdf,0x33,0x5e,0x9b,0xf5,0x36,0x69,0x1d,0xe2,0x12, +0xcf,0x7c,0x51,0xd7,0xa0,0x86,0x13,0xde,0xc0,0xb0,0x0e,0x1c, +0xf6,0x4a,0xd1,0xbe,0x10,0x97,0xbf,0xdd,0xa6,0x51,0x51,0x26, +0x3e,0x92,0x59,0x33,0xf4,0xf0,0x6f,0xa8,0xd2,0xec,0x13,0x85, +0x24,0xa5,0x1b,0xc9,0xb9,0xa4,0xdb,0x89,0x3f,0xd5,0x58,0xf1, +0x05,0x85,0x79,0x45,0x39,0x45,0x1c,0x62,0x6f,0x93,0x7c,0x43, +0x17,0xda,0x7d,0xc3,0x0e,0x7c,0x22,0xbf,0x4c,0x5e,0xbc,0x5c, +0xc4,0x2e,0xa0,0x98,0x7b,0xf5,0x52,0x4c,0x16,0x3f,0xd0,0xca, +0x45,0xf9,0x07,0x56,0xce,0xab,0xac,0xc0,0x49,0x3f,0xb0,0x03, +0xe3,0x30,0x9c,0xbc,0x79,0xa9,0xc9,0xc2,0xfd,0x99,0xe4,0x21, +0xac,0xd8,0xca,0xe2,0x00,0xb2,0x8a,0x79,0x8a,0x90,0x26,0x07, +0xca,0xe8,0xc7,0x28,0xa3,0x53,0x19,0xe3,0x89,0xab,0x49,0x81, +0x42,0x2d,0x0e,0x3f,0x96,0x3a,0xc8,0x2c,0xd4,0x88,0x9b,0x45, +0xb5,0xa8,0x2d,0xa5,0xe2,0xfa,0xac,0x82,0xd1,0x9f,0x0c,0xa9, +0xc5,0xed,0x49,0x34,0x71,0x37,0x7d,0x44,0x3c,0x0c,0x50,0xa9, +0xf0,0x00,0x56,0x6c,0x63,0xcd,0x46,0xad,0xc1,0x15,0xdf,0x50, +0xf5,0xf7,0x83,0xdc,0x87,0xf8,0xc5,0x47,0xc6,0xba,0x4c,0x5d, +0xc8,0x64,0x5a,0x2a,0xfd,0xcc,0x9c,0x2b,0x4d,0xeb,0x4c,0xd3, +0x48,0x2e,0x4f,0xac,0x3f,0xa3,0x86,0xef,0xda,0xa0,0xa5,0x01, +0x5b,0x9a,0x15,0x6d,0x13,0x5c,0x6d,0x1a,0x38,0x88,0x1d,0xfd, +0xeb,0x98,0x80,0x2f,0x42,0xe3,0x03,0xd4,0xf1,0x35,0xf4,0x11, +0x4b,0x2c,0x68,0x62,0xa1,0x60,0x1d,0xb1,0xc0,0x82,0x66,0xfa, +0x66,0x2d,0x31,0xc3,0x82,0x36,0xf6,0x85,0xb0,0x8f,0xc0,0xd4, +0x3a,0x9c,0xda,0x05,0x53,0xeb,0x71,0x6a,0x07,0x2c,0x6a,0xc0, +0x97,0x4c,0x7d,0xd5,0x99,0xa6,0xec,0x7a,0x93,0x02,0xde,0xff, +0xb8,0xb3,0x9d,0x95,0x53,0xb3,0x2b,0x6f,0x8b,0x97,0xe0,0x35, +0x93,0xe0,0x94,0xe0,0x1c,0xe7,0xce,0x79,0xc4,0x86,0x47,0xbb, +0x4c,0x35,0x64,0x72,0x2c,0x68,0xac,0x9c,0xcf,0x2b,0x6a,0x94, +0x68,0x48,0xea,0x4f,0x7e,0xd9,0xa4,0x86,0xab,0x18,0xf9,0x30, +0x78,0x4a,0x42,0x8b,0xfc,0xca,0x82,0x72,0x2c,0xa9,0x30,0x0c, +0xc8,0x77,0x49,0xf7,0xe5,0x34,0x13,0x48,0x48,0x85,0x7f,0x75, +0x70,0x81,0x59,0x30,0x9f,0xed,0x9d,0x67,0x2f,0x75,0xe7,0x70, +0x64,0x0a,0x89,0xac,0x0e,0xaa,0x09,0x29,0x35,0x0c,0xe5,0x33, +0x3c,0x32,0x6d,0x25,0x54,0x3f,0x1e,0x46,0x5f,0x02,0xb3,0xeb, +0x70,0x76,0x17,0xcc,0xae,0xc7,0xd9,0x1d,0xb0,0xa6,0x41,0xd0, +0xa4,0x9f,0x2c,0x30,0x4e,0x27,0x1c,0x63,0xdd,0xd5,0xbd,0xe3, +0xc2,0xa3,0xdc,0xa7,0x6a,0x31,0xd9,0x16,0xd4,0x99,0xe7,0x0a, +0x73,0x1b,0x53,0xc5,0x0f,0xbe,0xda,0xa6,0x86,0xdb,0x18,0x21, +0x0e,0x7c,0x89,0x09,0xaa,0x74,0xb0,0xf2,0x07,0x2a,0x26,0xa8, +0xd6,0xc1,0xe2,0x8d,0x55,0xc4,0x08,0x55,0xba,0xc4,0x0e,0x23, +0x54,0xeb,0xa2,0x1d,0x2b,0x89,0x3e,0xaa,0x9c,0x13,0x3b,0xf4, +0x51,0xed,0x1c,0x2b,0x64,0xa0,0x84,0x94,0xd6,0xe5,0x9f,0x4f, +0x6d,0xb6,0x4e,0xe3,0xc3,0x8f,0x05,0x98,0xb9,0x1f,0xe7,0xe4, +0x31,0x7e,0xa4,0x84,0xf6,0xa5,0x0d,0xf6,0xf9,0x8b,0x7d,0xab, +0xdb,0x48,0x64,0x71,0xe8,0x99,0xb0,0xbc,0xe3,0x91,0xbc,0xcc, +0x57,0xe6,0x2c,0xf1,0xe0,0xe4,0x1b,0x9f,0x10,0xfa,0xd6,0x55, +0xe2,0x46,0xe3,0x21,0xaa,0x34,0xa4,0x2a,0x2c,0x8f,0x13,0x6e, +0x87,0x13,0xa9,0x9b,0xd4,0x22,0xd9,0xa1,0x31,0x8d,0x8f,0xad, +0x0c,0x6d,0x0d,0x2f,0xe3,0xe4,0xab,0xa2,0xc4,0x3e,0xab,0x64, +0x07,0xea,0xdf,0x98,0xaa,0xb0,0x96,0xf0,0x52,0x4e,0x78,0x1c, +0x4d,0x52,0x1c,0x4e,0x19,0x27,0xda,0xb5,0xa4,0xf0,0x09,0xb5, +0x31,0x5d,0xd1,0x55,0x9c,0x7c,0x79,0x1c,0x49,0x76,0x4c,0x36, +0xb2,0x53,0x6b,0x4d,0x39,0x41,0xbb,0x62,0xaa,0x54,0x95,0x21, +0x5b,0x6e,0x4f,0xfe,0xea,0x98,0xf6,0x07,0xfd,0xfb,0x7a,0x70, +0x12,0x25,0x01,0xb2,0x18,0x9c,0x4c,0x33,0xe9,0xa0,0x78,0x32, +0xfb,0x98,0x49,0x6f,0x29,0xa0,0x4d,0x09,0xff,0xad,0x58,0x23, +0x8d,0x62,0x60,0xb5,0xdc,0x90,0x98,0x40,0x4c,0x07,0x5b,0xa5, +0x62,0x02,0x89,0x94,0x04,0xef,0x8a,0xcb,0x90,0xa9,0xda,0xe9, +0x3f,0x34,0xb0,0x89,0xac,0x61,0x9c,0xa3,0x4f,0x55,0x69,0xdc, +0x65,0xbb,0x53,0x7b,0xb3,0x7a,0x72,0xfd,0x9b,0x79,0xab,0x00, +0x93,0x30,0xe3,0x48,0xee,0x07,0x98,0x09,0x5b,0xc4,0x6d,0x40, +0x77,0xb4,0x62,0x5c,0x6b,0x03,0x8c,0x6e,0xc3,0x51,0x8d,0x30, +0xaa,0x03,0x47,0xb7,0xc2,0x4a,0xaa,0x53,0xd4,0xcc,0x40,0x8d, +0x82,0x7b,0x65,0x0b,0x8c,0x6e,0x57,0x5c,0x69,0xc7,0xd1,0x4d, +0xe6,0xe8,0x87,0x2a,0x2c,0x2e,0x8b,0xc6,0xe5,0x47,0x91,0x55, +0x6f,0xb1,0x6d,0xf8,0x35,0xf7,0xcf,0x54,0x18,0xa9,0xda,0x8b, +0xb1,0x8c,0x77,0xbc,0x4f,0x82,0xf7,0x89,0x34,0x03,0xfe,0x41, +0xea,0x5f,0x99,0x57,0xf3,0x62,0xdb,0x78,0x9b,0x08,0xf3,0x28, +0xd3,0x18,0x91,0xec,0x27,0xb6,0xe2,0xc4,0x6f,0x60,0x29,0x3a, +0xb2,0x47,0x72,0x82,0x6f,0xaa,0x7f,0xc5,0xd4,0x66,0x65,0x55, +0x69,0x7c,0xcf,0x1e,0x93,0x29,0x0d,0xd4,0xc8,0x77,0x93,0x3f, +0x5e,0xcd,0xa1,0x2a,0x60,0x31,0xf9,0xf0,0x6a,0x3a,0x2b,0x1f, +0x55,0x4d,0xe6,0xdd,0xff,0x9d,0x01,0xcd,0xed,0x64,0xee,0xfd, +0xd7,0x0c,0x6a,0xe2,0x27,0x64,0xad,0x26,0x9b,0x58,0x96,0x58, +0x5e,0xae,0x06,0x73,0xd6,0x92,0xe7,0xaf,0xd7,0xb2,0xb0,0x50, +0x65,0xe6,0xf3,0xf7,0x8c,0x70,0x01,0xed,0x68,0x50,0x86,0x75, +0x86,0xb4,0xda,0x8b,0x25,0x9c,0x54,0x21,0xa7,0xed,0xa8,0xc6, +0x2e,0xf8,0x4a,0x9c,0xce,0x19,0x69,0x4e,0xd3,0xfd,0xac,0x10, +0x85,0xcc,0x5a,0x43,0x99,0x8d,0xca,0xac,0x3d,0x8a,0xa0,0x8c, +0xbd,0x11,0xfa,0x8c,0x06,0xe5,0x7c,0xca,0x6c,0x5b,0xc5,0x29, +0x9e,0xe6,0x54,0xfe,0xc4,0xf3,0xd8,0x57,0x91,0xf7,0x39,0xe5, +0x97,0xfd,0x9d,0x04,0x13,0xf5,0x70,0xc5,0x05,0xc1,0xfb,0x12, +0x1c,0x02,0x57,0xfc,0x14,0x47,0xb2,0x99,0x7a,0x34,0x1a,0xdb, +0x73,0xb2,0x9b,0x35,0xe4,0xcb,0xce,0xc3,0x0a,0x23,0x48,0x14, +0x77,0xf6,0xff,0x9b,0x40,0x25,0xec,0xb9,0x28,0x2c,0xd5,0x86, +0x4d,0x58,0x89,0xdb,0xb5,0x60,0xbb,0x60,0x73,0x4d,0x6e,0x03, +0xfa,0x57,0x58,0xe1,0x2e,0x5c,0x22,0x87,0x70,0x21,0xaa,0x6d, +0x00,0x43,0x16,0x78,0x4a,0xbc,0x6f,0x56,0x69,0x32,0x78,0xd0, +0x80,0xc0,0x37,0xdb,0xf0,0x1b,0xe6,0x02,0xcd,0x69,0xdf,0x83, +0xeb,0x4a,0x16,0x5d,0x8d,0x08,0xb8,0x2e,0x57,0x1c,0x5d,0xea, +0x2f,0xb7,0x25,0x15,0xf6,0x4a,0xb7,0x6e,0x57,0x3d,0x84,0xb1, +0x6a,0x97,0x40,0x13,0x8f,0xb1,0x5a,0x79,0xfe,0x97,0xd5,0x5b, +0x99,0xa6,0xf4,0xbc,0x66,0x0d,0x18,0xc3,0x1a,0xe6,0x29,0xe1, +0x3c,0x1b,0xd6,0x2b,0x3a,0xa5,0x54,0x03,0x92,0x31,0x7d,0x26, +0x3b,0xcd,0xff,0xe8,0x51,0x1d,0xf5,0xa7,0xc6,0x10,0x87,0x3f, +0x62,0x9c,0x3e,0x2e,0xef,0x13,0xdc,0x2f,0xc1,0x01,0xb0,0x47, +0x65,0x1c,0xc6,0x66,0xe8,0x2b,0xfd,0xc4,0xb4,0x29,0x6e,0x7d, +0x51,0x1f,0x3b,0x13,0xde,0x92,0x23,0xd4,0xa8,0xfc,0x26,0xd0, +0x65,0x81,0x4c,0x23,0x2f,0xd7,0x2c,0x60,0x70,0x2f,0xbd,0xa9, +0x87,0x3b,0xf0,0x21,0xd3,0xff,0xad,0x60,0x4e,0xb6,0xd4,0x1e, +0x6c,0xd6,0xeb,0xb8,0xf1,0xa0,0xf5,0x79,0xd1,0xf7,0x5c,0x9b, +0x40,0x8e,0xc2,0x7d,0xd6,0xff,0x80,0xdd,0x5e,0xdd,0x43,0x06, +0xe7,0x2d,0x2f,0x3b,0x7c,0x69,0xe0,0xce,0xd7,0xef,0x6e,0x3d, +0xd0,0x77,0xe4,0xa8,0xe1,0x2e,0xf3,0x75,0x8e,0x65,0x7a,0xfc, +0x8f,0x75,0x0f,0x3a,0x2e,0xf7,0x5d,0x30,0xb8,0x65,0xfa,0xb5, +0x35,0x37,0x90,0x28,0x1f,0x4d,0x47,0x66,0x4f,0x47,0x66,0x4f, +0x47,0x66,0xbf,0x1c,0xed,0x19,0xe5,0x7e,0xa9,0x3c,0x84,0x5c, +0xbb,0xda,0x7e,0xa7,0x52,0x5c,0xfa,0x94,0xcf,0x66,0x94,0xa7, +0x97,0x4b,0x4f,0x6b,0xa7,0xf2,0x2e,0x4b,0xf4,0x56,0xed,0xdc, +0x53,0x6b,0xce,0x17,0x16,0x14,0x14,0xe5,0x15,0x57,0x9b,0xd7, +0x5b,0xb6,0x59,0xe9,0x9a,0xef,0xb6,0x5c,0x6b,0x53,0x69,0xc8, +0xff,0xd0,0x74,0xbf,0xed,0x4a,0xd7,0x15,0xe3,0xbb,0x66,0x5f, +0x1f,0xab,0x3c,0xc7,0x6f,0x6e,0xdc,0xdb,0xa8,0xd3,0xc2,0x0d, +0xac,0x16,0x9f,0x45,0xc4,0x19,0xe2,0xb2,0x5e,0xc1,0xe3,0x22, +0x1d,0xa9,0x39,0x2a,0xcf,0x60,0x33,0xf5,0x95,0xbe,0x67,0x5a, +0x73,0xb2,0xe8,0x40,0x97,0x9c,0x83,0x65,0xa6,0x10,0xc7,0x1e, +0x35,0xa4,0x83,0x9d,0x81,0xaa,0xdb,0xe0,0x28,0x2b,0x3f,0xba, +0x8a,0x64,0x97,0x28,0x81,0x1f,0xe3,0xa1,0x6d,0x7b,0x54,0xcf, +0xc0,0xa8,0xc5,0xaa,0xd5,0xa1,0x9b,0xc3,0x47,0xbe,0xe4,0xe7, +0xd5,0x4b,0x19,0xdc,0x41,0x6d,0x70,0x6d,0x07,0x5e,0x63,0xfa, +0xf0,0x73,0x7a,0xfb,0xe6,0x2b,0x59,0xf0,0x11,0x46,0x93,0xab, +0x90,0xa4,0x58,0xeb,0xc4,0x08,0x3c,0x0b,0x57,0xe1,0x5b,0x82, +0x0e,0x98,0x04,0x0e,0xac,0xb0,0x25,0x8a,0x80,0xf9,0x32,0x34, +0xa7,0x5e,0x4b,0x02,0x5d,0xf2,0xa1,0xfa,0x5a,0x47,0xf5,0x33, +0x0e,0xdc,0xe4,0x9f,0xa3,0x33,0x93,0x59,0x29,0xab,0x92,0x56, +0xea,0xa6,0xf2,0x91,0xce,0xe1,0xc7,0x83,0xec,0x69,0x8e,0x13, +0x3e,0xa7,0x12,0xcb,0xd5,0xd0,0xc8,0x61,0xb5,0x07,0x27,0xa8, +0xc8,0xaf,0x51,0x90,0x19,0xe1,0xb2,0x73,0x82,0xdf,0x05,0x38, +0x0c,0xba,0x38,0x71,0xb6,0x78,0xff,0xdf,0x88,0x53,0x03,0xf4, +0xfe,0x57,0x76,0xc3,0x32,0x73,0x8a,0x31,0x3d,0x43,0xa2,0x85, +0x53,0xf1,0xb3,0x5d,0x60,0xc4,0xca,0x4b,0x0f,0x10,0xe4,0x70, +0x32,0x70,0xac,0x78,0x54,0x1e,0x01,0x8e,0x82,0x8a,0x63,0x85, +0xdf,0xee,0x92,0xef,0x56,0xac,0x62,0xa0,0xc6,0x81,0xc0,0x64, +0x26,0xc1,0x24,0xde,0x3a,0xd2,0x81,0xa3,0xba,0x13,0xb6,0xa8, +0xa4,0xd6,0x9c,0x6a,0x4c,0x6c,0x13,0x7f,0x4f,0x99,0x19,0x48, +0xf9,0x93,0x40,0xe7,0x76,0xec,0xa4,0x0a,0x42,0x83,0xfc,0x08, +0xba,0xcb,0xc5,0xf2,0x7e,0x34,0x19,0x3c,0xe4,0xf8,0xba,0x1e, +0x5c,0x47,0xd3,0xcb,0x60,0x0a,0x9f,0xf6,0xd2,0x22,0xf6,0x16, +0x01,0xdd,0xa5,0xe2,0xf6,0x31,0x7f,0x4f,0xed,0x1f,0x4e,0xae, +0x76,0x1d,0xa4,0xf5,0xa1,0xe1,0x79,0x5d,0x5d,0x5a,0x16,0x8c, +0x3a,0x64,0xf8,0x25,0x7e,0x02,0x7a,0x07,0xd0,0x0a,0xd7,0xd1, +0x42,0x23,0xd4,0x27,0xd8,0x3b,0xc8,0x93,0xc3,0xfd,0xc6,0x30, +0x87,0xf1,0x76,0xf6,0x70,0xf6,0x70,0x81,0xd5,0x26,0xfc,0x41, +0xef,0x4d,0xc1,0xf3,0x23,0xb3,0x8c,0x78,0x98,0x20,0x7b,0x59, +0xfc,0xb0,0xfe,0xa9,0xd7,0x43,0x8f,0x3b,0x9e,0xa2,0x68,0x29, +0xdc,0x5f,0x70,0x30,0xaf,0xad,0xba,0xb6,0xb9,0xbc,0x87,0xfb, +0xb9,0x13,0xef,0x33,0x59,0xc5,0x99,0xc5,0xb2,0x42,0x0e,0x42, +0x60,0x1d,0x1e,0xbf,0x06,0x26,0x8c,0x10,0x73,0x81,0x58,0x43, +0x22,0x9e,0xc6,0x44,0x0b,0x5c,0xd4,0x26,0x04,0x9d,0x07,0x1d, +0x2a,0xa5,0xa6,0x2c,0x65,0x32,0x0c,0x95,0x1e,0x32,0xcd,0x59, +0x99,0xd4,0x44,0xeb,0x5b,0xd9,0xa5,0xf0,0x9e,0xba,0x97,0x43, +0x0d,0x6d,0x30,0x66,0xe5,0xd2,0x65,0x04,0x67,0xde,0x81,0x99, +0x4c,0xd7,0x2e,0x72,0x07,0xe6,0xee,0x62,0x85,0xf7,0x41,0xe4, +0xce,0x92,0x5d,0x0c,0xe4,0x5d,0x25,0x30,0x73,0x2b,0xce,0x64, +0x40,0xef,0x21,0x81,0xb9,0x5b,0xc5,0x99,0xc9,0x3f,0x6c,0x08, +0xa4,0xec,0xc2,0x14,0x46,0xde,0x7d,0x8c,0x6c,0xc1,0xc5,0x8f, +0x58,0xf8,0xaf,0x2d,0x04,0x57,0x3c,0x82,0x15,0xcc,0xc0,0xb1, +0x05,0xe4,0x27,0x58,0xbe,0x8c,0xc5,0xe5,0xc6,0x04,0x96,0x2f, +0xc1,0xe5,0x4c,0xbf,0x66,0x3c,0xf1,0x30,0xb3,0x3f,0x6e,0xe2, +0x66,0x94,0x69,0x42,0xb3,0x7f,0x6e,0x41,0x6e,0x71,0x4e,0x31, +0xa7,0x2c,0xd7,0x94,0x9f,0xa7,0xf7,0x1a,0x8f,0xe5,0x18,0x6f, +0x81,0x0b,0xda,0x04,0xbf,0x3e,0xea,0xce,0x65,0x38,0x79,0x99, +0x78,0xaf,0x0f,0x98,0x16,0xc5,0xbd,0xae,0x6e,0x61,0xc5,0x6d, +0x1a,0x48,0x7a,0x71,0x5a,0xb1,0xa4,0x88,0x83,0x9f,0xc1,0x51, +0x70,0x41,0xc7,0xaf,0x18,0x9f,0x5d,0x96,0x3b,0xb5,0x0f,0x8a, +0xfb,0x74,0xd6,0x56,0xb6,0x94,0xb6,0x72,0xf0,0x8e,0x41,0xed, +0x58,0xd4,0x0c,0xdf,0xa1,0x1e,0x75,0x34,0x3c,0xd0,0x22,0xa1, +0x32,0x93,0x0f,0x6c,0x13,0x8f,0x8a,0xb1,0x0e,0xe4,0x4b,0xf5, +0xdd,0x62,0x9c,0x63,0x1d,0x63,0x55,0x5f,0xc2,0x2c,0xb0,0xc2, +0x59,0x0f,0x4c,0xb7,0xe1,0xe7,0x68,0x05,0x9f,0xcf,0x64,0xf7, +0x46,0xec,0x8e,0xd2,0x89,0x4d,0x13,0xb7,0x10,0x93,0x81,0x46, +0xd1,0x4f,0x05,0x92,0x00,0x49,0x60,0x72,0x30,0x67,0xca,0x50, +0xe2,0xba,0x40,0xeb,0x84,0xda,0x07,0xe9,0x1a,0xb2,0xef,0x52, +0xe0,0x33,0x48,0x56,0xc3,0x37,0x10,0x49,0x70,0xdc,0x62,0x18, +0xc7,0x82,0x86,0xca,0x0b,0x1c,0xb7,0x88,0x81,0x69,0x2a,0x30, +0xee,0x77,0x1c,0xc7,0x0a,0xdd,0x30,0x9a,0xe8,0x22,0x8b,0xea, +0x3a,0xa0,0xcf,0xbe,0x9b,0x45,0x6e,0x2f,0xdd,0xcd,0xe0,0x2c, +0x1a,0xc6,0xa7,0x76,0xe3,0x29,0xa6,0x9d,0x42,0xe7,0x27,0x58, +0xb6,0x8c,0x85,0xde,0x02,0x5a,0x9f,0xad,0x82,0x11,0xe2,0x17, +0xf5,0x47,0x10,0x18,0xf1,0x2b,0x8e,0xa0,0x50,0x6c,0x24,0xb0, +0x6c,0x31,0xd5,0x73,0xca,0xf2,0x87,0xf2,0x04,0xd2,0xd5,0x41, +0x6b,0xf8,0x5e,0xce,0xeb,0xf9,0x16,0xfc,0xcc,0x02,0x1e,0x36, +0xe3,0xd4,0x47,0xc0,0x34,0x63,0x14,0x9b,0x9a,0x9b,0x9a,0x97, +0x92,0x47,0xe5,0x73,0x2b,0xfa,0x32,0xc9,0x79,0xa7,0xf2,0x4f, +0xe5,0x9b,0x26,0xf3,0x71,0x3e,0xb1,0xbe,0x31,0xbe,0x1c,0x8e, +0x31,0x7f,0xc7,0x78,0xee,0xb3,0xd6,0x3a,0xa4,0xc3,0x15,0xc1, +0x0c,0xe2,0xd6,0x6c,0xdb,0x6e,0x5b,0x6b,0x6f,0xcb,0xd7,0xda, +0xd5,0x5a,0x54,0x9a,0x72,0xc8,0x2f,0x57,0x58,0xbc,0x52,0xb4, +0xf8,0xc2,0x36,0xc1,0xf7,0x3c,0x68,0xc3,0x0a,0x54,0x59,0xfa, +0x9f,0x16,0x5f,0x25,0xa2,0xe3,0x35,0x2d,0x18,0x39,0xfc,0x5c, +0x9b,0x8e,0xe4,0xfd,0x4c,0x72,0x67,0x19,0x85,0xc2,0xb5,0x0d, +0xc4,0xa5,0xcd,0xba,0xc3,0xa6,0xee,0xb8,0x0d,0x5f,0x6f,0x5b, +0x6b,0x5e,0x63,0xcc,0x09,0xeb,0xef,0x10,0x90,0xec,0x46,0x09, +0xd3,0xaf,0x2d,0x4c,0x26,0x5f,0x33,0x2d,0x99,0xd9,0x4d,0x1a, +0xf0,0x1a,0xaf,0x09,0xcb,0xce,0xc1,0x02,0xb0,0x5a,0x3c,0x87, +0xfd,0x43,0xdc,0x30,0xcc,0xea,0x1a,0x58,0x31,0x03,0x01,0xb4, +0x10,0xfc,0x09,0x56,0x2c,0x63,0xe5,0x6b,0xb0,0x8b,0xa0,0x9a, +0xdd,0x45,0x18,0xab,0x01,0x07,0x50,0x45,0xef,0xa1,0xe2,0xf8, +0x49,0x0f,0x8b,0xa5,0x96,0xea,0xc5,0xda,0xbf,0xb4,0x16,0x76, +0x25,0x7d,0xa3,0x9a,0xc2,0xcc,0x3f,0xd5,0xae,0x03,0xb3,0xa7, +0x42,0x34,0x23,0xed,0x51,0xc2,0x36,0xb8,0x40,0xc0,0x6a,0x2f, +0x5a,0x31,0x42,0x95,0x8c,0x88,0x27,0x37,0xaf,0xa0,0xdc,0x58, +0xd0,0x9f,0x4a,0xee,0x19,0xed,0x58,0x79,0xcf,0x70,0x07,0xaa, +0x63,0x8b,0xdc,0x09,0x5a,0x58,0xe1,0xa4,0x30,0x93,0xc8,0x6b, +0xbb,0x84,0x6a,0x98,0x6e,0x49,0x87,0xdb,0x8e,0xf1,0x66,0xb8, +0xa8,0x53,0xf0,0x39,0x0f,0x47,0x60,0x1b,0x4e,0x5e,0xc8,0x64, +0x18,0x28,0x3d,0x65,0x5a,0xb2,0x45,0xbe,0x5b,0xd1,0xc2,0x2e, +0x81,0x37,0x44,0x1b,0xc7,0xe3,0x67,0x07,0xe9,0x70,0xe5,0x06, +0x38,0x9c,0xac,0x7a,0xfa,0x1d,0xd3,0xad,0xf2,0xfd,0xc6,0x95, +0x0c,0x7c,0xae,0xf2,0xf4,0x97,0x8d,0xec,0xc0,0xb0,0x53,0xe4, +0xd1,0xf2,0x2d,0x0c,0xfc,0xda,0x4a,0xd6,0xae,0x7a,0xce,0x82, +0xf7,0x5a,0xb2,0xf2,0xf9,0xf7,0x4c,0x97,0xca,0x2f,0x6b,0x97, +0x30,0x03,0x5b,0xc3,0x08,0x94,0xee,0xc2,0x52,0xa6,0x4b,0x41, +0x10,0xdb,0x96,0xb3,0x30,0x3b,0x95,0xe0,0x5e,0xf9,0x11,0xd8, +0x2b,0x6e,0x12,0xa1,0x4a,0xbe,0x83,0x27,0xab,0xd8,0x01,0x9d, +0xc7,0x04,0xb6,0x2d,0xa5,0x62,0x4c,0xee,0x81,0x3c,0x89,0xac, +0x0a,0xae,0x0a,0x2c,0xd3,0x0f,0xe0,0xb3,0xdc,0xb2,0x1d,0xc5, +0x2f,0x10,0x7a,0xc7,0x91,0x9c,0xca,0xec,0x5a,0x69,0x85,0x7e, +0x36,0x1f,0x7e,0x3c,0xc0,0x5a,0x9c,0x1b,0x7c,0x66,0x28,0xef, +0xe8,0x66,0x94,0x41,0x3c,0xef,0xec,0x89,0xf6,0x26,0xdc,0x6a, +0x28,0x5f,0xd8,0xcd,0x3e,0x68,0x23,0x68,0x24,0x1f,0x4b,0xb9, +0x0d,0x1f,0xe2,0x02,0xf2,0x27,0x14,0xcc,0x60,0x05,0x83,0x58, +0x82,0x3d,0x78,0x10,0x7a,0x98,0xa3,0x30,0x95,0xac,0xc2,0x23, +0xdf,0xb1,0x70,0xcf,0x8c,0xa0,0x23,0x58,0x81,0x23,0x0b,0xa7, +0xc5,0x7d,0x35,0x1c,0xd1,0x95,0x8a,0x09,0x74,0x6a,0x25,0x30, +0xe1,0x2f,0xf1,0xd4,0x8c,0x0a,0x71,0xa3,0xb3,0x09,0x38,0x06, +0x26,0xb0,0x03,0xcb,0x84,0x1f,0x89,0x7c,0x3f,0xc8,0x04,0xa5, +0x95,0x2c,0x35,0xd1,0x43,0xa6,0x31,0x23,0xa7,0x8d,0xe6,0x3e, +0x41,0x49,0x08,0x61,0xff,0x56,0x87,0x6a,0x5a,0x5e,0x87,0x7e, +0xaf,0xb7,0x12,0xbd,0x8d,0x69,0x62,0xb6,0x3d,0xb0,0x4d,0x77, +0xae,0x5e,0x19,0xad,0xba,0x86,0x5f,0xfd,0xfa,0x6a,0xd6,0x57, +0x5c,0x0a,0xe6,0xf6,0x42,0xae,0x84,0xc9,0x5a,0xfb,0xf4,0x10, +0x8c,0x3c,0x58,0xda,0xcd,0x6b,0xf6,0xee,0xea,0xb1,0xbe,0xc9, +0x09,0xbf,0xbe,0x24,0xd8,0xda,0x7e,0x09,0x18,0x08,0x11,0x17, +0xc4,0x6a,0x11,0x98,0x76,0x53,0x3c,0x19,0xb7,0xff,0xf7,0xfe, +0xfb,0x64,0xb3,0x26,0x0e,0x5b,0x8f,0x13,0x8f,0x9c,0x39,0xc2, +0xc3,0x94,0x2f,0x81,0x7b,0xf1,0xd5,0x5b,0x4e,0x88,0x18,0xb5, +0x14,0xc7,0xa2,0x06,0x8e,0xc3,0xf9,0xdb,0x2c,0x7f,0xd5,0x7d, +0x63,0x7e,0xdb,0xd0,0x95,0x2f,0xb3,0xa8,0xd4,0xab,0x38,0xba, +0x39,0x74,0x43,0xc4,0xaa,0xc8,0xf2,0xc7,0x65,0x3f,0xe6,0x7f, +0xc3,0x41,0xf6,0x45,0xfc,0xf1,0x3d,0x9c,0xef,0xc5,0xf3,0xaf, +0x86,0xda,0x47,0x17,0x84,0xc9,0x82,0xf5,0x36,0xf1,0x5c,0x35, +0xbf,0x95,0x6e,0xcb,0x9c,0x37,0xfa,0x9c,0x10,0x05,0x96,0xec, +0x00,0x0f,0x73,0x32,0xc5,0xcd,0xac,0x47,0x17,0x88,0x0f,0x7f, +0xa5,0xde,0xe7,0x2a,0xf9,0x44,0xb6,0xdc,0x14,0x16,0x3d,0x81, +0x79,0x40,0x5e,0x02,0xaf,0xba,0x0e,0xae,0x91,0x0d,0x73,0x70, +0xdc,0x3c,0xe4,0x0f,0xd4,0x68,0xf1,0x30,0xe3,0x01,0x8c,0xff, +0xeb,0xf9,0x7b,0x5a,0x30,0xbf,0xee,0x7f,0x42,0x96,0x1a,0xe2, +0x28,0x17,0x54,0x0e,0xcc,0xd5,0xe7,0x61,0x62,0x1e,0x8c,0xac, +0x7c,0xd3,0xcb,0x0d,0x7c,0x21,0x7c,0x4a,0x76,0xc4,0xa7,0x98, +0xc0,0xa4,0x14,0x71,0x6b,0x6a,0x26,0x47,0x35,0x3d,0x44,0x1a, +0x22,0x0d,0x6a,0x2d,0xe4,0x9d,0x5b,0x1d,0x1a,0x2d,0x1a,0x2c, +0xfd,0xf9,0xac,0xa0,0xcc,0xe0,0x8c,0xe0,0xfd,0xd1,0x1b,0xa3, +0xd7,0xc7,0xe5,0x54,0xc8,0x2a,0x64,0x95,0x1c,0xb4,0xb5,0xe0, +0xaf,0xdd,0xd0,0xd9,0x84,0x9d,0xad,0x8a,0xb6,0x0d,0x6e,0x36, +0x0b,0x9f,0x60,0xe1,0xfa,0x63,0x30,0x81,0x09,0x77,0x09,0x76, +0xf2,0xa3,0x7a,0x7f,0x0b,0x8c,0x21,0xa0,0x56,0x00,0x63,0xab, +0x60,0xd8,0x25,0x97,0x36,0x5e,0x53,0x5f,0x3c,0x93,0x6d,0x4a, +0x20,0x97,0x8b,0x1e,0x94,0x8e,0x0b,0x60,0x4a,0x2d,0x8c,0xfe, +0xd2,0xa5,0x93,0x9f,0x76,0x04,0x79,0x3b,0x9c,0x15,0xc0,0xa1, +0x8d,0xb0,0x8e,0xe8,0x46,0xa4,0x77,0x6a,0x88,0xf3,0xa7,0x81, +0x95,0x4a,0xb8,0xf1,0x4b,0xd8,0xc5,0x42,0xf2,0x19,0x25,0xbb, +0x78,0xbb,0x28,0x27,0x75,0xf7,0xe8,0xf0,0x68,0x8f,0xa9,0xeb, +0x18,0xa9,0xa1,0xd2,0x23,0xe6,0x6a,0x51,0x51,0x47,0xba,0x86, +0xb4,0x35,0xa9,0x25,0xf1,0x17,0xbc,0x6e,0xc9,0x5f,0x38,0xb4, +0x9f,0xc5,0x40,0x27,0xa5,0x27,0x07,0x57,0xb1,0x38,0xd7,0x2f, +0x55,0x1f,0xa6,0x51,0xc9,0xf4,0x39,0xbb,0xa5,0xd8,0xed,0xb5, +0xba,0xbc,0x81,0xe9,0xc9,0xce,0xe9,0xd2,0xb8,0xcd,0x1e,0xc8, +0x52,0x9a,0xcf,0x0e,0xd9,0xc4,0xe0,0x7f,0xda,0xe4,0x3c,0x27, +0xa4,0xe0,0x55,0xf2,0x3f,0xc6,0x5c,0xfe,0xbf,0x8c,0xb9,0x51, +0x31,0xe6,0x96,0x7f,0xc6,0xec,0x2a,0x8e,0x79,0x47,0x3c,0x9f, +0x62,0x0c,0x93,0x24,0x30,0x37,0x1d,0x58,0x85,0x2d,0x83,0xa5, +0xc1,0xad,0x05,0xbc,0x73,0x9b,0x43,0x83,0x45,0x03,0x07,0x53, +0xcb,0xa9,0x41,0xf2,0x61,0x6c,0x35,0x0c,0xbb,0x2c,0x1a,0x44, +0x4f,0x61,0x90,0x00,0x6a,0x10,0xcf,0x41,0x83,0xd4,0xc1,0xe8, +0xab,0xae,0x1d,0x3c,0x0e,0x1b,0xb4,0x88,0x3f,0xe7,0x77,0x98, +0x1c,0xd8,0x2f,0xcc,0x37,0x80,0xea,0x10,0x06,0x47,0xed,0xdc, +0x8b,0xc7,0x0f,0xa8,0x57,0x18,0xc2,0xb2,0x96,0x57,0x97,0x1a, +0xbf,0x51,0x95,0xcf,0x66,0x4e,0x38,0x9e,0x70,0x8e,0xf6,0xe2, +0x3c,0xa3,0x43,0x62,0x4c,0xa7,0xa2,0x31,0x43,0x55,0x1f,0x68, +0x31,0xbf,0x15,0xe6,0x75,0xc9,0x34,0xa4,0xb5,0xa7,0x5a,0x4f, +0xde,0xe3,0x04,0x03,0xe6,0x54,0xce,0xc9,0xbc,0x3c,0xb5,0x6c, +0x79,0x4f,0x8f,0xb0,0x8d,0x8e,0xfd,0x6d,0xff,0x63,0xb2,0xc4, +0x04,0x47,0xb9,0xe1,0x84,0xe0,0x3c,0x3a,0xf6,0x49,0x39,0xa0, +0x54,0xf1,0xa6,0x87,0x1b,0xb8,0x4b,0xed,0x2f,0x62,0x61,0x7e, +0x3a,0x70,0xd9,0x52,0x11,0x0a,0xc1,0x14,0x0a,0x4e,0x2d,0x8e, +0x0d,0x16,0x67,0xc5,0x82,0x2f,0x58,0x34,0xcb,0xbe,0xe8,0x8d, +0x31,0x6b,0x63,0x73,0x2a,0xa8,0x94,0xab,0xe0,0xa0,0xa3,0x19, +0x5f,0x76,0x43,0x4f,0x23,0xf6,0xb4,0x28,0xda,0x56,0xb8,0xd3, +0x2c,0x8c,0xc5,0xdc,0xf5,0x16,0x30,0x91,0x56,0xfa,0xc1,0xce, +0xfe,0x2e,0xdb,0xe2,0x79,0x79,0x02,0x4c,0xa2,0xa5,0x68,0x3e, +0x8c,0xab,0x80,0x11,0xe7,0x9d,0xdb,0xf8,0xb9,0x46,0x38,0xce, +0x09,0xf9,0x20,0x3a,0xf6,0xe3,0x04,0xe6,0xe5,0x01,0x5f,0x03, +0x63,0x2e,0xbb,0xb6,0xf3,0x38,0x5c,0x17,0xd5,0x8e,0xe3,0xac, +0x40,0x4e,0xae,0x81,0xb5,0x44,0xd0,0x76,0x54,0xba,0xc4,0xca, +0xa7,0x55,0xc6,0x76,0x0a,0x53,0x9d,0x95,0xfa,0x58,0x98,0x90, +0x01,0x9f,0x64,0xff,0x91,0xef,0xd6,0xc2,0xa3,0x96,0x1d,0x9e, +0xf0,0x42,0x69,0x48,0xba,0x29,0xff,0x26,0xe5,0x0f,0xc9,0x2b, +0x29,0xa7,0xc7,0xe2,0x2b,0xf7,0x53,0xc6,0xf0,0x6b,0x99,0xd2, +0x11,0x56,0x60,0xdc,0x93,0x8d,0xe4,0xc3,0xcb,0x94,0x2c,0xd9, +0x43,0xa7,0x7d,0x68,0xe5,0xfd,0x82,0xe9,0xc8,0x95,0xb6,0x6a, +0xf4,0xb2,0x5a,0x19,0x4a,0x3b,0xf1,0x07,0xd6,0x3e,0x2c,0xfd, +0x8c,0x46,0x0d,0x2b,0xd7,0xaf,0x56,0x52,0xee,0x7f,0x47,0x01, +0xb1,0x98,0x06,0x89,0x2b,0x4e,0x08,0xca,0x35,0xe0,0x61,0x72, +0xae,0x78,0xf6,0x25,0x0d,0x92,0x64,0xfc,0x2f,0x31,0x48,0x4c, +0x61,0xb2,0xc2,0x30,0x6c,0xb6,0xaa,0x34,0x94,0xfe,0x04,0xb7, +0x50,0xc7,0xb6,0x38,0x9e,0xb5,0xa8,0xb7,0xfa,0xc7,0x32,0x1b, +0xa8,0x65,0xb2,0xcb,0x65,0x65,0x32,0x6a,0x99,0x4e,0x6a,0x99, +0x4e,0x85,0x4d,0x9a,0x87,0xec,0x73,0xa7,0x89,0x5a,0x26,0xe3, +0xa3,0x65,0x5c,0xfc,0x5c,0x39,0xf9,0x56,0x18,0x4e,0xe0,0xb3, +0x3c,0x50,0xa6,0x41,0x72,0xd1,0xb5,0x8d,0x9f,0xa3,0x8f,0x63, +0x1c,0x51,0x2d,0x90,0xcb,0x43,0x67,0x6a,0x97,0x02,0x50,0xa5, +0x76,0xb9,0x22,0x62,0x62,0xb8,0x0e,0xaa,0xda,0xe1,0x9c,0x00, +0xce,0x77,0x21,0xa9,0xd3,0xb1,0xc3,0x1b,0xe8,0x39,0xdb,0xec, +0x2d,0x7e,0x7e,0x09,0x3e,0x97,0x3f,0xdd,0x28,0x1e,0x86,0x65, +0xa2,0x04,0xfb,0x98,0xf6,0xbc,0xf4,0x26,0x8d,0x07,0x6f,0xdb, +0x66,0x83,0x27,0x2b,0x4c,0xa1,0xe9,0x00,0x25,0x57,0x41,0xc2, +0xc0,0x57,0x07,0x09,0x16,0x5f,0x85,0x62,0x06,0xbf,0x9a,0x46, +0x68,0xd6,0xbb,0xcd,0xc2,0x35,0x15,0x28,0xde,0x8d,0xc5,0x34, +0x11,0xbd,0xef,0x7f,0x44,0x16,0x9b,0xa1,0x92,0x07,0x4e,0x08, +0xcd,0x31,0xa4,0x63,0xcf,0x86,0x51,0xa5,0x6f,0x3b,0xb9,0x81, +0x24,0xfc,0x89,0x6c,0x8f,0x4f,0x31,0x87,0x89,0xc9,0xb0,0x80, +0x12,0x44,0xa6,0xaa,0x34,0x8c,0x8e,0x3d,0xa4,0x25,0x9f,0x77, +0x6e,0x74,0xac,0xb5,0xac,0xb1,0x0e,0xe2,0x33,0x43,0x32,0x42, +0x33,0xc2,0x44,0x54,0xac,0x8b,0xcb,0x2a,0x91,0x95,0xa4,0x97, +0x72,0xd0,0xdd,0x88,0xaf,0xda,0xe0,0xdc,0x59,0x3c,0xd7,0xa0, +0x68,0x1b,0xe1,0x6e,0x23,0x1d,0x7b,0xc2,0x7a,0x2b,0x1a,0x2c, +0x61,0x1e,0xa1,0xee,0x01,0xb4,0xc6,0xde,0x24,0x8e,0xfd,0xf3, +0x5c,0x18,0x57,0x0e,0x23,0x7a,0x5c,0x5b,0x79,0x4d,0x13,0x1c, +0xe7,0x8a,0x6a,0xc1,0x14,0x13,0x26,0x04,0xe6,0xe7,0x02,0x5f, +0x05,0x63,0xcf,0xbb,0x89,0x98,0xa0,0x05,0xbd,0x23,0x6a,0x06, +0x73,0x54,0x14,0xcf,0x23,0x3a,0xbb,0xf0,0x53,0x3b,0xd4,0xf2, +0xc9,0x30,0xe2,0x6b,0x93,0xab,0x93,0xab,0x52,0x38,0xf4,0xbf, +0x5a,0x2f,0xbf,0x6e,0x7b,0x15,0xa2,0x07,0x3e,0x65,0x61,0x52, +0xc5,0x4f,0x2d,0x5d,0x4f,0x44,0x51,0x95,0x10,0x14,0xef,0x17, +0x17,0xc8,0xf9,0xc5,0x46,0xc6,0xba,0x4f,0x45,0x33,0x26,0xc3, +0x4c,0x09,0x2c,0x99,0xf3,0x05,0xb9,0x0d,0x69,0x1a,0x29,0xa5, +0x29,0x8d,0x89,0x74,0x88,0x35,0x46,0x4c,0xff,0x66,0x34,0x23, +0xb3,0x85,0xeb,0x6f,0x15,0xa4,0xfe,0x50,0xe4,0xca,0x91,0x94, +0x17,0x82,0xc4,0xd8,0x98,0x90,0xfb,0x6f,0xae,0x9c,0x2c,0xc2, +0xc0,0x58,0xc1,0x95,0xb2,0x21,0xae,0x0c,0x1e,0xe4,0xca,0x36, +0x87,0xc6,0x63,0x8d,0x94,0x2b,0xb3,0x07,0x79,0x23,0x4a,0xc1, +0x1b,0xa7,0x33,0x14,0x5c,0xd9,0x4a,0x79,0xe3,0xdc,0x7f,0x70, +0x65,0xfb,0x20,0x6f,0x94,0x52,0xde,0x98,0xc8,0x84,0x89,0x5c, +0xe9,0x24,0x72,0xe5,0x84,0x41,0xae,0xac,0xa4,0x5c,0x29,0x86, +0x87,0x01,0x8e,0x76,0x14,0xa9,0x21,0x4f,0xe4,0x4a,0xcd,0x41, +0x6a,0xb8,0x42,0xb9,0x12,0x87,0x69,0x8b,0xd4,0x30,0x33,0x80, +0x83,0x47,0xb3,0x89,0x79,0xa1,0x4e,0xa1,0x7e,0xae,0xb3,0x25, +0x7f,0xde,0xbf,0xcf,0xa7,0xcd,0x9b,0x83,0x89,0xd8,0x4a,0x13, +0x76,0x1e,0x8e,0xc8,0x5f,0x5d,0x76,0xfb,0x6c,0x4f,0x6b,0x7d, +0x9b,0xf9,0x19,0xde,0xc2,0x50,0xc7,0x74,0xad,0xd5,0x9a,0x1a, +0xc3,0xb6,0x80,0xab,0x9c,0xbc,0xfa,0x9c,0xd0,0x78,0x8a,0x79, +0x70,0x68,0x3b,0x1b,0x8b,0x67,0xf5,0xa1,0x9a,0xf5,0xc6,0x61, +0x0b,0x8e,0xe0,0xb6,0x5d,0x15,0x74,0xb4,0x07,0x1e,0xbc,0x7f, +0x20,0x85,0x89,0x9c,0x84,0x91,0xee,0x6b,0x34,0xbc,0x63,0xad, +0xe5,0xb5,0xdd,0x77,0x45,0x40,0xb6,0x1e,0x0f,0xc3,0x8a,0x7e, +0xaa,0x78,0x50,0xfd,0x9b,0x2d,0x4c,0xf6,0x80,0x95,0xbe,0xdc, +0x60,0xbc,0x2c,0x19,0xc4,0x4c,0xc8,0x47,0xcc,0x94,0x51,0xcc, +0xe0,0x7f,0x09,0x93,0x88,0x73,0x93,0x63,0x9d,0x45,0xad,0xa5, +0x1f,0x9f,0x49,0xa1,0x21,0x0b,0xdd,0x1f,0xbd,0x29,0x76,0x7d, +0x5c,0x76,0x69,0x7a,0x49,0x7a,0x19,0x05,0x47,0x13,0xbe,0x6c, +0x83,0x9e,0x06,0xec,0x69,0x1c,0x6a,0x15,0x81,0x91,0xb4,0xde, +0x52,0x64,0x52,0x8f,0x10,0x37,0x7f,0x37,0xaf,0x04,0xcf,0x2f, +0xbc,0xc4,0x13,0x5c,0x61,0xc2,0x60,0xd0,0x65,0xa5,0xd3,0x98, +0x4b,0x0f,0xe6,0xee,0xc2,0x76,0x1a,0x2f,0xff,0x5b,0xcc,0x98, +0x52,0xcc,0xe4,0x00,0x5f,0x0d,0x63,0x2f,0x88,0x3c,0x32,0x4c, +0x0f,0xa7,0x3a,0xe2,0x9c,0x20,0x0e,0x04,0x2c,0xa0,0xf4,0x8a, +0x49,0xe7,0x74,0xf4,0xf1,0xb0,0xd8,0x50,0x3c,0xa7,0x1c,0x46, +0x0f,0x36,0xd2,0x28,0x48,0xcf,0xdb,0x98,0x83,0x70,0xc6,0xf6, +0xc8,0x36,0x27,0x9c,0xe0,0x99,0x47,0xe3,0x7e,0x69,0xf5,0x77, +0x9d,0x67,0xbf,0xe3,0xa8,0xd8,0x58,0x73,0x01,0xd6,0x40,0x10, +0x93,0xe0,0x19,0x1f,0x18,0x17,0xc2,0xf9,0x47,0x47,0xc5,0x38, +0x4e,0x9d,0xc7,0x64,0x99,0x2a,0xfd,0xc8,0x5c,0x2d,0x2e,0xa8, +0x95,0x6a,0xa4,0x96,0x26,0xd5,0x26,0xf6,0x72,0xd8,0x7c,0x9d, +0xd1,0x79,0x47,0x0e,0xe3,0xe1,0xcb,0xac,0x7c,0xdf,0x61,0x82, +0x7a,0x97,0x41,0x8f,0xea,0x2a,0xdc,0x48,0x52,0x0b,0x52,0x0a, +0x93,0x69,0x8d,0xb3,0x99,0x39,0xe1,0x15,0xe7,0x13,0xe3,0xcf, +0x5d,0x52,0x49,0xce,0x4f,0x2a,0x3c,0x49,0x8b,0x81,0x23,0xfb, +0x99,0x21,0x23,0x1a,0xa3,0x92,0x3b,0x65,0xe2,0x5c,0x6a,0xc4, +0x49,0xd9,0x94,0x89,0xff,0xe8,0xe1,0x84,0x97,0x03,0x9d,0xc4, +0x2a,0x2a,0xad,0x5a,0xa3,0x49,0xbe,0x08,0x36,0x08,0x06,0x6c, +0x51,0x5e,0x41,0x7e,0x5e,0x01,0x27,0xef,0x62,0x12,0xcc,0xe3, +0x8c,0xa2,0xad,0x39,0xe7,0xb8,0xf0,0xc8,0xe3,0x53,0xb7,0x88, +0x73,0xda,0xb7,0x99,0x5b,0xa5,0xf9,0x5f,0xa6,0x69,0x48,0x9a, +0x92,0xaf,0x9c,0xfc,0x91,0x13,0xee,0x31,0xd2,0x4c,0x69,0x56, +0x6a,0x96,0x61,0x2e,0x7f,0x25,0xe5,0x52,0x4a,0x4f,0x4a,0xfa, +0xbf,0x09,0xab,0xc9,0xb1,0xde,0xa2,0xd6,0x2a,0x90,0xcf,0xa2, +0x41,0x2b,0x0b,0xd9,0x1f,0x43,0x83,0x36,0x36,0xbb,0x2c,0xbd, +0x44,0x56,0xce,0x41,0x57,0x23,0xbe,0x6c,0x57,0x50,0xd5,0xa0, +0x5f,0x9a,0x06,0xfd,0x92,0xa2,0x08,0xda,0x70,0xf7,0x10,0x57, +0x7f,0xf7,0xed,0x34,0xc3,0x99,0xde,0x4a,0x7a,0x90,0x7c,0x3f, +0x45,0xd5,0x60,0xd5,0x0e,0xad,0xb9,0xda,0xa7,0x8d,0xf9,0xda, +0x82,0x33,0x45,0xa7,0x8b,0x38,0x34,0x64,0x0f,0x17,0x38,0x3d, +0x52,0x97,0xdf,0x63,0xba,0xb3,0xb2,0x9a,0x34,0x1e,0xb3,0x87, +0x32,0x95,0x16,0xb0,0x78,0x41,0x7e,0x55,0xe1,0x32,0xe5,0x4a, +0x18,0xde,0x47,0x5d,0x36,0xc7,0x08,0xc7,0x3a,0xa1,0x9a,0x48, +0xfd,0xd6,0xd4,0x65,0x79,0xa0,0x7a,0x06,0xc6,0x5c,0x52,0x84, +0xf9,0x51,0x91,0xfa,0x35,0x03,0xb9,0x73,0x98,0x4e,0xb6,0xe3, +0xbb,0xfb,0x1f,0x73,0x95,0x91,0x48,0xcb,0xe3,0x83,0xc4,0x3c, +0x3d,0x29,0x17,0x94,0x4e,0xd3,0x78,0xc4,0x7f,0x09,0x6b,0xc9, +0x60,0x62,0xa5,0x99,0x69,0x30,0x61,0x53,0x0e,0x8a,0x5e,0xf7, +0x6f,0x91,0x22,0x66,0xa6,0x1e,0xe8,0x69,0x12,0x73,0x92,0xd8, +0xb6,0x0d,0x66,0xa6,0xa2,0x41,0xfe,0x55,0x88,0x94,0xed,0x8a, +0x84,0x3d,0x59,0x11,0xd0,0x5c,0x8e,0x2a,0xcd,0x24,0x34,0xa0, +0xb9,0x7b,0xa0,0x35,0x98,0xab,0xaa,0x60,0xf8,0x05,0x97,0x76, +0x51,0xb8,0xd0,0x1b,0xe6,0x45,0x4e,0x76,0xa3,0x40,0xca,0x07, +0xbe,0x8e,0x72,0xb2,0x4b,0x87,0x22,0x18,0xd5,0xec,0x45,0xe5, +0x52,0xbb,0x8b,0xec,0xc4,0xf5,0xe2,0xf1,0x78,0x9e,0x28,0xbf, +0xd4,0xd1,0x3f,0xcc,0xe4,0x32,0xc8,0x31,0xec,0x2e,0x8b,0x35, +0x68,0x44,0x70,0xcd,0x63,0x58,0xc3,0x80,0xf7,0x66,0x82,0xeb, +0x1f,0xc3,0x7a,0x2a,0x24,0xe9,0xbb,0x1d,0x8f,0x61,0x07,0x23, +0x98,0xe1,0x04,0xb2,0x06,0xd7,0x7c,0xc3,0xca,0xa7,0xac,0xa1, +0x57,0xbf,0xa1,0x57,0x2f,0xaa,0xc0,0x8e,0x35,0xb8,0xe3,0xff, +0x84,0x0e,0x4d,0x61,0x3e,0x69,0xc8,0x1b,0x74,0xa6,0xaa,0x95, +0x3f,0x65,0x60,0x1a,0x64,0xaa,0x54,0xaf,0xc4,0xae,0xff,0x7f, +0xf6,0x26,0x4c,0x4c,0x11,0xa9,0x9d,0xcd,0x1a,0xa2,0x76,0xce, +0x47,0x4f,0x58,0x60,0x2c,0x5f,0xa0,0x8d,0x68,0xd2,0x5f,0xdf, +0x21,0x8c,0xbd,0x28,0x5f,0xdf,0x29,0xac,0xef,0x65,0xaa,0x60, +0xed,0xff,0xab,0x1f,0xf1,0xb1,0x90,0x43,0xce,0xc8,0xaf,0x3b, +0x5c,0x05,0x8b,0x81,0xfd,0x34,0x47,0xf5,0x8f,0x81,0xa5,0x64, +0x9b,0x70,0xfd,0x01,0xf5,0xec,0x9b,0xfe,0x3b,0xa2,0x0a,0x19, +0xe9,0x8e,0x9f,0x06,0xe7,0xd0,0xc0,0x9b,0x98,0x03,0x23,0xcb, +0xff,0xe8,0x16,0x17,0xfb,0xfd,0x35,0x98,0x70,0x27,0x0e,0xaa, +0xd2,0xac,0xa1,0x84,0xdb,0x9a,0x2f,0x26,0xdc,0x3a,0x45,0xc2, +0xa5,0xf8,0xa5,0x3f,0xfb,0x63,0x36,0xc5,0xac,0x8f,0xcd,0x2a, +0x93,0x95,0x2a,0xa4,0x48,0x13,0xbe,0xe8,0x80,0xae,0x06,0xec, +0x6a,0x52,0xb4,0xcd,0x70,0xab,0x89,0x32,0x6d,0x2a,0xe5,0x95, +0xf1,0xe2,0x43,0x07,0x57,0x7f,0x37,0x31,0xe9,0x30,0xd4,0xb9, +0x79,0x30,0xb6,0x02,0x86,0x89,0xa3,0x98,0x6b,0x8c,0x63,0x9c, +0x51,0x55,0x1c,0x85,0x95,0x42,0x88,0x4c,0xa9,0x86,0xd1,0x17, +0xdd,0x3a,0x14,0xdb,0xc0,0xab,0x3a,0xe0,0x6c,0x3a,0x0a,0x63, +0x2c,0x25,0x21,0xb2,0xa8,0xc4,0x88,0x88,0x90,0x10,0x3e,0xfa, +0x16,0xcc,0xe9,0xc4,0x39,0xdf,0xe9,0xac,0xc2,0xcd,0xc6,0xb0, +0x82,0x09,0xd0,0x32,0xd8,0x8a,0xcc,0x9a,0x33,0x16,0xfc,0x87, +0x67,0xf5,0xd7,0xa4,0x57,0x39,0x09,0x9e,0xba,0x00,0x0e,0xe2, +0x51,0x8e,0x29,0xb1,0xea,0xc0,0x2c,0xa8,0x6d,0x50,0xa2,0x12, +0xfd,0x34,0x31,0x84,0x2d,0x6c,0xcd,0xc1,0xce,0x23,0xd7,0x74, +0x1b,0x1a,0xf9,0x03,0x7d,0xba,0xd7,0x9d,0x6f,0x71,0xf8,0x35, +0x06,0x91,0x0b,0x17,0xce,0x5e,0x2d,0xee,0x33,0x29,0xe2,0x3d, +0x8f,0xda,0xeb,0xe9,0xe9,0x73,0xf0,0xa5,0x15,0x29,0x75,0x29, +0x3b,0x5e,0x6a,0xbf,0x33,0x7c,0x4d,0xd4,0x8a,0x98,0x96,0xeb, +0xb5,0x77,0xab,0xee,0xea,0x65,0xf3,0x8e,0x1b,0x2d,0xb6,0x1a, +0x6e,0x9f,0x17,0xcf,0xa7,0xea,0xc1,0x82,0x54,0x58,0x4e,0x99, +0xba,0x50,0x35,0xcb,0x2f,0xd3,0x37,0xc3,0xbf,0xe3,0x34,0x6f, +0x7c,0xe7,0xc8,0x63,0x83,0x8b,0x94,0x99,0xa1,0xff,0x19,0x59, +0x64,0x8f,0x4c,0x20,0x4e,0x8e,0xca,0x38,0x46,0xeb,0x92,0x34, +0x18,0x91,0xf3,0xe1,0xac,0x68,0xd8,0x08,0xe2,0xa9,0x60,0xd6, +0x14,0x1b,0x1e,0x3e,0x3d,0x05,0x8b,0xd2,0x60,0x94,0x54,0x1a, +0x29,0x8d,0x90,0x86,0x9f,0xcd,0xe6,0xdd,0x2a,0x9d,0x4b,0x6c, +0x8b,0xb8,0x3f,0x6b,0xf1,0xf5,0x69,0xe8,0x3b,0x83,0x7d,0xa5, +0xd0,0x57,0x23,0xb6,0xf7,0x6b,0x28,0x70,0xb4,0xd6,0xdb,0xc3, +0x68,0x26,0x32,0x28,0x22,0x28,0x34,0x98,0x93,0xaf,0xbc,0x4f, +0x60,0x86,0x0c,0xc6,0xe5,0xc3,0xc8,0x06,0xaf,0x46,0x7e,0xb6, +0x2d,0x8e,0xf3,0x43,0x8d,0x70,0x2e,0x93,0x16,0x74,0xb0,0x44, +0x06,0x7c,0x21,0x28,0xb7,0x7a,0x53,0x8d,0x36,0xd2,0x12,0x3f, +0xf3,0xc4,0x85,0x11,0x1c,0x8e,0x4b,0x24,0x07,0xe2,0x36,0xc6, +0xad,0x8f,0x4f,0xcf,0x4a,0xcb,0x4c,0xcd,0xe6,0xc0,0x80,0x71, +0x0e,0x4f,0x8f,0x4a,0x8f,0x96,0x46,0xa9,0x62,0x22,0x8d,0xf8, +0xfe,0xf9,0xa0,0x3d,0x30,0x9f,0x91,0xff,0xb1,0x85,0x08,0xcd, +0x0d,0xf2,0x66,0x46,0x68,0xde,0x46,0xe4,0xcd,0x16,0x42,0xb3, +0x98,0xa1,0xf5,0x09,0x7c,0x3a,0x70,0x09,0x69,0x7e,0x4f,0xfa, +0x9e,0x18,0xa2,0x41,0x37,0x0b,0x89,0x2a,0x60,0x66,0x28,0xae, +0x57,0x97,0xa8,0x74,0x83,0x95,0x21,0xeb,0xb1,0x9d,0x0c,0xec, +0xb4,0x7a,0xc3,0xb8,0xb9,0x9e,0xf3,0xbe,0xe8,0x7b,0x3b,0x40, +0x75,0x5e,0x08,0x2a,0x45,0xe0,0x84,0x38,0x99,0x19,0x0f,0x9b, +0x52,0x60,0x4e,0x2e,0x8c,0x29,0x06,0xc6,0x07,0x34,0x02,0x61, +0x67,0x64,0x66,0x1b,0x8f,0x7c,0x0a,0x0e,0x93,0x2e,0xc9,0x78, +0x5d,0x7e,0xff,0x4c,0xf3,0x19,0x6e,0x71,0x0c,0xd1,0x75,0xdb, +0xe4,0x39,0xdf,0x7f,0x66,0xfe,0xc6,0x92,0xbd,0x65,0x9c,0xc8, +0x3e,0x14,0xa3,0xc7,0x70,0x94,0x97,0x28,0x8c,0x8c,0x68,0x04, +0x66,0xc1,0xc8,0x92,0xb7,0xed,0x54,0x0d,0xe0,0x23,0xe2,0x95, +0xe0,0x25,0x9a,0xd2,0x9c,0x87,0xf1,0x34,0x84,0xa4,0x54,0x1d, +0xd1,0x08,0x0a,0x93,0x86,0x34,0xe7,0xf1,0x2e,0x0d,0x8e,0x35, +0x96,0xd5,0xa2,0x38,0x12,0xf3,0x5f,0x18,0xc5,0x69,0xec,0xba, +0xd8,0xac,0xe2,0xf4,0x22,0x69,0x09,0x27,0xc6,0xe4,0x6f,0xcd, +0xd0,0x7d,0x16,0xbb,0xeb,0x14,0x6d,0x3d,0xdc,0x6e,0x10,0x46, +0x63,0x38,0x8d,0xcc,0x4f,0x99,0x70,0xaf,0x10,0xcf,0x40,0x2a, +0x8e,0x36,0xfc,0x49,0x40,0x3d,0x07,0xc6,0x94,0xc2,0x88,0x6e, +0xaa,0x75,0x35,0xcd,0x70,0xac,0x1b,0xaa,0x85,0x70,0x39,0xa8, +0xab,0xc8,0x73,0x53,0x4e,0xc3,0xd8,0x3e,0x77,0x3a,0x84,0xe1, +0x86,0xa8,0xe6,0x84,0x73,0xa8,0x36,0x8a,0xd9,0x4f,0xf6,0x1b, +0x2d,0x32,0x5e,0xe0,0x5e,0x44,0xf5,0x70,0xd5,0x8b,0x96,0xfb, +0x97,0x38,0xf9,0x75,0x71,0xf3,0xb8,0x4a,0x3c,0xc1,0xa6,0x66, +0x48,0x32,0x52,0x32,0x38,0x28,0x6c,0x11,0xee,0x1c,0x83,0x44, +0x26,0x26,0x34,0x3a,0x34,0x2a,0x94,0xc3,0xc3,0x58,0x09,0x9f, +0x31,0x07,0xdd,0xb6,0x7b,0xad,0x09,0x29,0x34,0xe1,0xbf,0xcb, +0xfa,0xea,0xf4,0xb5,0x4a,0xf7,0x7a,0x1e,0xf6,0x30,0x1e,0xd6, +0x37,0x82,0x7f,0x76,0xba,0xe6,0xae,0x5a,0xd1,0xba,0xaf,0x64, +0x63,0xc5,0x9e,0x2c,0xd5,0x81,0x55,0xe7,0x08,0x8c,0xa8,0x7f, +0xd9,0xf5,0xe4,0xfa,0xf1,0xb3,0xfc,0x5e,0x9d,0x85,0x54,0x2f, +0xdb,0x73,0xfd,0x67,0x7f,0x27,0x82,0xf2,0x59,0xb9,0x32,0x23, +0x28,0xe3,0x68,0xd2,0x28,0x57,0xb6,0x62,0x85,0x80,0x40,0xb2, +0xeb,0x20,0x7e,0x7a,0x00,0x55,0xec,0x8a,0xa9,0xe1,0xd4,0xea, +0x41,0xf9,0xe6,0x93,0x5b,0x9c,0x5c,0x3f,0x9f,0x58,0x0a,0xca, +0x4d,0x34,0xfe,0xff,0xa2,0xe5,0xf3,0x22,0x5b,0x64,0x02,0x70, +0x52,0x64,0x26,0x35,0xe2,0x14,0x29,0x8c,0xc8,0xfb,0xb3,0x41, +0xb4,0x6d,0xca,0x10,0x4c,0x25,0xd6,0xff,0x86,0x69,0x3a,0x05, +0x29,0x85,0x69,0x43,0x36,0xef,0x52,0xed,0x52,0x66,0x53,0xc2, +0x7d,0xa8,0xc5,0xdf,0xab,0xa1,0xb7,0x06,0x7b,0x2b,0x14,0x6d, +0x39,0xdc,0xab,0xa3,0x30,0x35,0xa2,0x30,0x1d,0xc3,0x44,0x06, +0x86,0x07,0x84,0xd0,0x12,0x62,0xf5,0x13,0x02,0xd3,0x33,0x61, +0x5c,0x01,0x8c,0x6c,0xf2,0x6c,0xe2,0x67,0x5b,0xe3,0x38,0x1f, +0x54,0x0f,0xe7,0xb2,0x70,0x05,0x81,0xc5,0x19,0xc0,0x17,0x83, +0x72,0xbb,0x17,0x85,0xe9,0x88,0x63,0xf8,0x99,0x07,0x2e,0x0c, +0xe7,0x70,0xec,0x49,0x72,0x20,0x76,0x53,0xdc,0xba,0x78,0x59, +0x76,0x5a,0x76,0x5a,0xae,0x08,0xd3,0xe3,0x61,0xb2,0xc8,0xf4, +0xc8,0x74,0x0a,0xd3,0x0e,0x4a,0x75,0xfd,0x71,0x30,0x71,0x20, +0x8e,0x81,0x20,0x5b,0x62,0x84,0xdb,0xbb,0x58,0xf9,0x3c,0xca, +0xf0,0xbb,0xbb,0x60,0x37,0xd3,0x67,0x44,0xba,0x60,0x9f,0x91, +0xb8,0xd8,0x91,0x25,0xcd,0xff,0x9a,0x4c,0xf9,0xae,0x06,0x67, +0x91,0x2f,0x12,0xbe,0x48,0x50,0x83,0x11,0x03,0xbb,0x71,0x12, +0x44,0xb0,0xeb,0x9c,0x91,0xf3,0xc4,0xb9,0x81,0x59,0x66,0xfc, +0x37,0xd2,0x47,0x99,0xb7,0x72,0x39,0x1d,0xd6,0x26,0xde,0xfa, +0x84,0x65,0x7c,0x9a,0x09,0x0f,0xeb,0xd2,0x61,0x46,0x16,0x8c, +0xc9,0x8f,0x6d,0xe1,0x37,0x87,0xaf,0x89,0x58,0x12,0xc5,0xdd, +0x64,0x2f,0xe5,0x75,0x15,0x34,0x14,0x72,0x39,0xcc,0xa3,0xe5, +0x30,0xfe,0x30,0x78,0xda,0xe5,0xb5,0xf1,0x4b,0xb2,0x76,0xe4, +0x1c,0x29,0xbc,0x90,0xd7,0x5d,0xd4,0x7e,0x9a,0x9b,0xfb,0x86, +0x98,0x0b,0x37,0x5b,0x59,0xf9,0xef,0xab,0x88,0x85,0x97,0xb1, +0xaf,0x7e,0xa0,0x5d,0xae,0x4b,0xbe,0x47,0x31,0x05,0xf0,0xaf, +0xfd,0xdf,0x90,0x65,0x56,0x38,0xdc,0x0f,0xc7,0x86,0x67,0xd2, +0x28,0x18,0x9f,0xf1,0x3e,0xff,0x5d,0x33,0x37,0xe0,0x8b,0x39, +0x0a,0xfc,0x7a,0x27,0x48,0xac,0x78,0xf1,0x0c,0x83,0xb9,0x69, +0x30,0x5c,0x96,0x1a,0x95,0x1a,0x25,0x89,0xe4,0x42,0x9c,0x84, +0x49,0x38,0xfc,0xc2,0x9d,0x7e,0xd7,0x5d,0x17,0x60,0xb8,0x30, +0xa7,0xca,0x9f,0x29,0x4c,0x73,0xa9,0x71,0xaa,0xb0,0x2e,0x53, +0xb5,0x0d,0x96,0x45,0x88,0xd6,0x50,0xd5,0x8a,0xdd,0x12,0xb7, +0x29,0x5e,0x96,0x9b,0x96,0x9b,0x96,0x47,0xb3,0x4d,0x1d,0xfe, +0x70,0x06,0x5a,0x6a,0xb1,0xe5,0x34,0xb4,0xd4,0x88,0xed,0x97, +0x75,0xc2,0x08,0x34,0xdf,0x68,0x07,0x1c,0x13,0xe9,0x1f,0xe6, +0x1f,0xe2,0xcf,0xc9,0x17,0x3f,0xa0,0x7a,0x3f,0x1b,0xd8,0xc2, +0xbf,0x5a,0xbd,0x9a,0x79,0x4d,0x4b,0xa4,0xda,0x53,0x35,0x84, +0xcb,0x16,0xd7,0xfe,0x6b,0x66,0xc1,0xe4,0x12,0x18,0xdd,0xe1, +0xdd,0xca,0x4f,0x33,0xc7,0x29,0xee,0xa8,0x19,0xca,0x41,0x2f, +0xd6,0x10,0x7c,0xc4,0xbc,0xc8,0xfe,0x31,0xef,0x49,0x89,0xcb, +0x19,0x7e,0x97,0xcf,0x06,0xff,0x55,0x21,0xdc,0x45,0xa8,0xad, +0x13,0xbe,0xb7,0x03,0x0d,0x76,0x9f,0xef,0xfa,0xe0,0x45,0x11, +0x32,0x5b,0xfe,0x75,0xfa,0x0f,0x39,0x77,0x4a,0x02,0x2b,0xf9, +0xdf,0xf7,0x32,0x38,0x29,0x00,0x3f,0x8b,0x40,0xd5,0x38,0xa9, +0x05,0x5f,0x97,0x78,0x36,0xe9,0xec,0x49,0x0e,0xcd,0xe1,0x30, +0xbb,0xd6,0x73,0x7e,0x00,0x8e,0x09,0xcf,0xa7,0x66,0x18,0x97, +0xfe,0x57,0xc9,0xd7,0x65,0xee,0x75,0x3c,0x9c,0x60,0x7c,0xac, +0xdf,0x86,0x80,0x92,0xef,0x4b,0x4f,0xd5,0xc2,0x96,0x25,0x05, +0xd3,0x0b,0x67,0x66,0xa8,0x52,0xfa,0x16,0x7e,0x87,0x6d,0xa4, +0x5a,0xde,0xe8,0xc8,0x3a,0x8e,0x3a,0x2e,0x34,0xd2,0x2a,0xb1, +0x71,0x0f,0xb1,0x13,0x1a,0xeb,0x58,0xd1,0xa8,0x3f,0x93,0x65, +0xd6,0x38,0xdc,0x9f,0x1a,0x35,0xc3,0x5c,0x9c,0xea,0xa6,0x46, +0x6d,0xe2,0x72,0x07,0x1e,0x90,0x5d,0x3d,0x5e,0x8f,0xbf,0x55, +0x3b,0xf5,0x12,0x4c,0x0c,0x58,0xe7,0x7c,0x87,0x7c,0x8f,0xcc, +0xb2,0xac,0xba,0xd2,0xdc,0x6c,0xbd,0x7c,0xde,0xc7,0xcf,0xc2, +0xd9,0xd2,0xa3,0x22,0xa0,0xd2,0xbf,0x94,0xe6,0x94,0xed,0xcc, +0xc7,0xcb,0xe5,0xf9,0x85,0x39,0x06,0xf9,0x14,0xd6,0x4e,0x65, +0x36,0x65,0xb6,0x21,0x3c,0xb5,0x6f,0x94,0x34,0x92,0x9a,0x37, +0x56,0x34,0xaf,0x34,0x47,0x61,0xde,0x5a,0x85,0x79,0xa9,0x61, +0x2b,0x86,0x5a,0x85,0x79,0x4d,0x36,0xda,0x0f,0x99,0x37,0x38, +0x80,0x4b,0xf0,0xf6,0x4e,0xf0,0x9e,0x9a,0x62,0xdd,0x7b,0xf2, +0x72,0xd2,0xe5,0x24,0x55,0x6f,0x7f,0x1b,0x0f,0x6b,0x2f,0xf1, +0xe3,0x4a,0xe8,0xc7,0x4d,0x41,0x93,0x46,0x74,0x63,0xe6,0xc5, +0xa4,0x1c,0x03,0xa5,0x54,0x98,0x2b,0xfb,0x25,0x5b,0xf5,0x94, +0x03,0x8c,0x4a,0x85,0x79,0x59,0xdf,0xe7,0xaa,0xc6,0x9d,0xd5, +0x89,0x58,0x1a,0xb1,0x2a,0x4a,0xf5,0x3c,0x98,0x9e,0x45,0xd3, +0x26,0x45,0x7b,0x16,0x82,0x58,0x1c,0x59,0xbd,0xfc,0xa1,0x9e, +0x7a,0xa5,0x4f,0x73,0x8c,0xb4,0xab,0x04,0x26,0xf2,0xa6,0x45, +0x4a,0x82,0x92,0x5c,0x4a,0x1d,0x99,0x25,0x3a,0xb2,0xc5,0xbb, +0x89,0xd7,0xb4,0x42,0xce,0x07,0x55,0x43,0x69,0x54,0xad,0xa1, +0xfa,0x28,0x13,0x26,0x17,0xc3,0xe8,0x76,0xd1,0x91,0xc7,0x70, +0x8a,0x87,0xe8,0x48,0xbc,0x8e,0xc3,0x48,0x79,0x56,0x4d,0x49, +0x4e,0x96,0x55,0x16,0x7f,0xf3,0xd4,0xf5,0x94,0xbe,0x94,0xf4, +0x88,0xb4,0x70,0x69,0x58,0x4d,0x26,0xef,0xed,0x6f,0xef,0x65, +0xe3,0x5d,0x19,0x50,0xe5,0x5f,0x1a,0xc0,0xa1,0x2e,0xe3,0x94, +0xef,0x48,0xed,0xc2,0xbd,0x5c,0x4c,0xfc,0x3c,0xea,0xa2,0x9a, +0x23,0x5b,0xc3,0x55,0xf7,0x05,0x1f,0x08,0x35,0x8b,0xc8,0x76, +0xe5,0xa7,0xc1,0x38,0x46,0x9e,0xa9,0x62,0x1e,0xa9,0x15,0xb2, +0x3f,0x44,0x37,0x53,0x27,0xd3,0x34,0x8d,0x83,0xdf,0x70,0x1c, +0xc9,0x29,0x73,0x96,0x5a,0x64,0x98,0x64,0xaa,0xb6,0x4b,0x5b, +0xa4,0x35,0xa9,0x3e,0x15,0x3c,0x2c,0xc6,0x71,0x8c,0xd0,0xa8, +0x02,0x76,0xed,0xd7,0x02,0x2f,0x07,0x36,0x85,0xaa,0xa2,0x0d, +0x4d,0x32,0x81,0x27,0x82,0x12,0x82,0x12,0xe2,0x2b,0x79,0xbd, +0xa8,0x75,0x91,0xeb,0x63,0xb8,0xf3,0xe0,0x70,0x16,0x1d,0x9a, +0x14,0xed,0x59,0x28,0x64,0x95,0x61,0x4e,0x7f,0x17,0xd9,0x37, +0x30,0x70,0x83,0xe9,0x37,0x7c,0x42,0xd0,0x8e,0xc9,0x3c,0xa4, +0x04,0x47,0x99,0x8e,0xc2,0xc2,0x4e,0x8d,0xfe,0xb2,0x7d,0x2c, +0xe5,0xb8,0xaf,0x49,0x0f,0x8e,0xf9,0x0e,0x46,0x74,0xe1,0x88, +0x27,0x30,0xa6,0x07,0xbb,0x0c,0x60,0xf4,0xa6,0xe9,0x46,0x1f, +0x56,0xe1,0x68,0x03,0xb6,0x5f,0x45,0xa5,0x07,0xc7,0x7f,0x07, +0xa3,0xba,0x70,0xd4,0x13,0x18,0xdf,0x83,0x7d,0xe2,0x55,0x1c, +0x6e,0x04,0xc3,0x15,0xd7,0x95,0x41,0x63,0x03,0xf9,0x5b,0xf9, +0xc0,0xbf,0x94,0xd9,0xfe,0xb2,0x7b,0x04,0x27,0x31,0x19,0x47, +0x95,0x40,0x89,0x69,0xcd,0xcf,0x6b,0xd6,0xe8,0xef,0x39,0xc0, +0x0a,0xc9,0x98,0x41,0x9e,0x00,0xd3,0x86,0xcc,0x5d,0xf8,0xb4, +0x13,0x2f,0x19,0xc3,0xc4,0x9d,0xc8,0x98,0x01,0xb3,0x09,0x27, +0x1a,0xc3,0xa5,0x4e,0x16,0x3c,0x54,0x9e,0xc0,0xb8,0x36,0x1c, +0x77,0x17,0x54,0x3b,0xf1,0xb6,0x31,0x4c,0xd8,0x89,0xac,0x19, +0xb0,0x9b,0x70,0x82,0x31,0xdc,0xee,0x64,0xf7,0xa1,0x3d,0xbd, +0xc3,0x78,0x51,0x8e,0xc6,0x1a,0x40,0xec,0x76,0x34,0xc7,0x9c, +0x8b,0xe0,0x08,0xb3,0xb0,0xf4,0x22,0x94,0xc2,0x12,0x5c,0xbe, +0x88,0x4d,0x35,0x52,0xfa,0x96,0x69,0xca,0xc9,0xad,0xd3,0x80, +0x63,0xe8,0x40,0x95,0x36,0xa8,0x8b,0xb7,0x75,0x50,0xbc,0xad, +0xf2,0x27,0xe2,0x59,0x40,0x52,0xd9,0xd1,0xd6,0x5d,0xad,0xfa, +0xa5,0xaa,0xf6,0x96,0xe7,0x5d,0xef,0x9a,0x74,0x1c,0x53,0xcd, +0xc8,0x4a,0xb5,0x57,0xa2,0x80,0x1b,0xbc,0xd5,0xf6,0x83,0xac, +0x20,0xc1,0x3c,0xf2,0x35,0x28,0xb5,0xa1,0xd2,0x23,0xf8,0xb4, +0x03,0x2f,0x99,0xc0,0x84,0x2d,0x8a,0x5b,0x5d,0x87,0x13,0x4c, +0xe0,0x52,0x07,0x0b,0xde,0x2a,0x5f,0x2b,0x6e,0xf5,0x11,0xf0, +0x1d,0x78,0xcb,0x04,0xc6,0x6f,0x51,0xdc,0xea,0x3a,0x1c,0x6f, +0x02,0xb7,0x3a,0x58,0x34,0xc0,0xdf,0x09,0x7c,0xa2,0x58,0x94, +0xfe,0xbb,0xf6,0x3c,0xdc,0x2a,0x36,0xca,0x46,0xa0,0x8c,0x9f, +0xe0,0x74,0x03,0xf9,0xcd,0x1e,0x56,0x60,0xe1,0x13,0x02,0x5b, +0xe9,0x7f,0x6f,0x65,0x70,0x2d,0x9e,0x20,0x37,0xaa,0x1e,0xf5, +0xb6,0x74,0x5a,0xd5,0xf3,0xc7,0xcc,0x0e,0x9a,0xee,0x14,0x8f, +0xa6,0xfe,0x6f,0x77,0xbe,0x80,0x49,0x4c,0x49,0x4c,0x4d,0x55, +0x7b,0xc9,0x1a,0x64,0x2a,0xe1,0xe8,0x99,0x6c,0x58,0xac,0x24, +0x43,0x03,0x16,0x00,0x81,0x32,0x74,0x30,0x83,0x25,0xfb,0x70, +0xb6,0x39,0xcc,0xde,0x81,0x6f,0xef,0xc1,0xac,0x56,0x9c,0xf5, +0x25,0xdb,0x92,0x7c,0x55,0xd6,0x5e,0xe0,0xdb,0xce,0x1b,0xf9, +0x1e,0x0c,0xd9,0x14,0xc5,0x61,0x1e,0x28,0xb3,0xe1,0xd3,0xb4, +0x4c,0x71,0x94,0x43,0x39,0x2d,0x39,0x54,0x1a,0xef,0x3e,0x12, +0x57,0xf2,0xbe,0xc7,0x65,0x8c,0x79,0x5e,0x60,0xab,0x3a,0x0c, +0x63,0xd2,0xd3,0x12,0x93,0x24,0x1a,0x29,0x1e,0xff,0xd3,0x1c, +0x5f,0x90,0xfb,0x0a,0x73,0xdc,0x84,0x4f,0xdb,0xf1,0x92,0x29, +0x4c,0xd8,0xab,0x30,0xc7,0x76,0x9c,0x60,0x0a,0x97,0xda,0x45, +0x73,0xdc,0x57,0x98,0xe3,0x26,0xf0,0xed,0x78,0xcb,0x14,0xc6, +0xef,0x55,0x98,0x63,0x3b,0x8e,0x37,0x85,0x5b,0xed,0xd4,0x0b, +0x2a,0x74,0x2c,0x93,0x0e,0xff,0x6b,0x12,0xdb,0xdf,0xf8,0x90, +0x4c,0x67,0x32,0x74,0x69,0xb5,0xd9,0x9a,0x27,0x7e,0x40,0xdf, +0x61,0x56,0xc8,0xc1,0x78,0xf2,0x00,0x3e,0x69,0xc1,0x4f,0x6e, +0xc3,0xa4,0x36,0xbc,0x6a,0x06,0x93,0x77,0x23,0x77,0x0c,0xb8, +0x6d,0x38,0xd9,0x0c,0xae,0xb6,0x89,0xd0,0x78,0x00,0x9f,0xb6, +0xe0,0xa7,0xb7,0x61,0x6a,0x1b,0xde,0x36,0x83,0x09,0x1f,0xaf, +0x4f,0x30,0x83,0xdb,0x6d,0x6c,0x18,0x95,0x0f,0x3b,0x5e,0xea, +0x2d,0xc0,0xdd,0x46,0xb0,0x1b,0xaf,0xe1,0x64,0xf1,0x71,0x02, +0x45,0x5f,0x63,0x56,0x66,0xa3,0x06,0x5c,0xb9,0xc7,0x0e,0x8c, +0x02,0x8e,0x4a,0xd5,0xce,0x6e,0x16,0xcb,0xa7,0x13,0xd4,0x82, +0x74,0xd0,0x62,0xd1,0x0a,0xa7,0x91,0x17,0xb0,0x78,0x11,0x0b, +0x3e,0xbb,0x49,0x40,0x97,0xeb,0x97,0x5e,0x75,0xc7,0xfc,0xf8, +0x52,0x9b,0xf2,0xfd,0x39,0x26,0x1c,0x1e,0xd8,0x41,0x32,0x2a, +0x33,0xaa,0x53,0xcb,0xcd,0x32,0xf8,0x28,0xfb,0x60,0xcb,0xe0, +0xe3,0x5a,0x91,0xfb,0xa3,0xb4,0x63,0x25,0xb4,0x66,0x19,0x99, +0x0e,0x1a,0x05,0x4f,0x72,0x63,0x3a,0x79,0xf7,0x18,0xf1,0x1b, +0x4e,0xdc,0xcc,0x74,0x12,0x21,0x6e,0xb0,0x5b,0x62,0x41,0xd5, +0x91,0x7b,0x96,0x83,0xd4,0x85,0x7a,0x70,0xe2,0x66,0xf2,0xb7, +0x8a,0xf6,0xbf,0x54,0xd8,0xfe,0xf6,0x0b,0x64,0x1b,0x93,0x78, +0xea,0x8b,0xe4,0x64,0xb5,0x26,0xd6,0x3c,0x4d,0x49,0x1f,0x93, +0x58,0xb7,0xa8,0x94,0x52,0x8d,0xfa,0x2b,0xa6,0x6d,0xed,0xe0, +0x0a,0xb1,0xe8,0xda,0x0e,0x26,0x30,0x11,0x0f,0xb0,0x79,0xd9, +0x05,0x79,0x99,0x79,0x5c,0x19,0xc6,0xb0,0x29,0x92,0xe4,0x94, +0x64,0x89,0x59,0x26,0xef,0x60,0x72,0xc0,0x74,0xbd,0x5b,0x9e, +0x2d,0x2f,0x3b,0x25,0x4b,0x96,0x25,0x73,0xdb,0x60,0xeb,0x9a, +0xa3,0x97,0x70,0xa3,0x13,0x4c,0x74,0xc5,0x19,0x4e,0x30,0xc3, +0x15,0x89,0x13,0x6c,0xb9,0xdc,0x87,0x4b,0x8e,0x5e,0x51,0x74, +0x3b,0xe1,0x6c,0x27,0x98,0x7d,0x5c,0xd1,0x7d,0xb3,0xcf,0x8c, +0x35,0xcf,0xf5,0xed,0x52,0x87,0x2c,0x26,0x43,0x7a,0x32,0x29, +0x55,0x43,0xe2,0xa1,0xf4,0x84,0x69,0xcb,0xce,0x69,0xd7,0xe8, +0xbf,0xad,0xcd,0x0a,0xc5,0xb8,0x93,0x74,0xc3,0xd8,0x5a,0x1c, +0xdb,0x0a,0xa4,0x1e,0xaf,0xd9,0x82,0x8a,0x39,0x8e,0xa6,0xca, +0xd8,0x10,0xa7,0xd8,0xc2,0x8d,0x7a,0x16,0x5c,0xa8,0x16,0x25, +0xb5,0x48,0x5a,0x61,0x7a,0x3d,0x3e,0xb0,0x85,0xc9,0x1f,0xaf, +0x4f,0xb6,0x85,0x87,0xf5,0x2c,0x9e,0xc2,0x4f,0x49,0x48,0x70, +0x40,0x90,0x7f,0x08,0x87,0x9e,0x4c,0x41,0x66,0x41,0x56,0x4e, +0x36,0xb7,0x63,0x3d,0x81,0x09,0xb6,0x38,0x81,0x81,0xe0,0x7a, +0x82,0x8b,0xb5,0x60,0x31,0xfb,0x97,0xb8,0x00,0x72,0xd1,0x51, +0xb6,0x08,0x1b,0x09,0xee,0x84,0x2d,0xe2,0x0e,0xda,0xf3,0xa8, +0x6c,0xc9,0xcf,0x28,0xcc,0xcd,0xcf,0xcf,0x0f,0xcc,0x0d,0xca, +0x08,0x2d,0x28,0xe3,0x43,0x65,0x81,0x59,0x01,0x59,0xb9,0xf9, +0xd9,0x79,0xd2,0x2c,0xcf,0x02,0x3e,0x2c,0x30,0x28,0x20,0xd0, +0xdf,0x37,0xc7,0x2f,0x2b,0x24,0xcd,0xc7,0x93,0xcf,0x8c,0xcc, +0x0b,0xc9,0x0f,0xf2,0x0f,0xf0,0x0b,0x0a,0x08,0xe3,0x0c,0xa8, +0x67,0x71,0x89,0x16,0x2c,0x61,0x95,0xe5,0x97,0xfb,0x53,0xc9, +0xf1,0x32,0x9d,0x3a,0xeb,0x7c,0x57,0x7b,0xfe,0xac,0xdf,0x45, +0xbb,0x1a,0x37,0x0e,0xcf,0x63,0x3b,0x79,0xdf,0xfc,0xfa,0xfc, +0xf7,0xd7,0xbe,0x36,0x7c,0xa6,0x77,0xc3,0xa0,0xba,0x99,0x3f, +0xd0,0xb9,0xa5,0x7b,0x73,0xc7,0xad,0xde,0xcb,0x97,0xdb,0xaf, +0x1c,0xab,0xe2,0xcd,0x0f,0x1f,0xd2,0xda,0xae,0xbb,0xe2,0xdc, +0xca,0xf6,0xed,0x67,0x5c,0xad,0xf8,0x3b,0x0e,0x5f,0x1d,0xfb, +0xca,0x64,0x83,0xee,0x52,0xc3,0xf9,0xd6,0x5c,0xbf,0x1a,0x3c, +0x27,0xc2,0x9a,0x81,0xc3,0xf2,0x35,0x87,0x04,0xb7,0xfe,0xeb, +0x72,0x37,0x16,0xe3,0x71,0x11,0xa9,0xf5,0xed,0xb5,0xa9,0x70, +0x3b,0x5d,0xc7,0xbb,0x94,0x1b,0xd4,0xdb,0x16,0x72,0xf8,0x61, +0x05,0x71,0x2c,0x39,0x5a,0x6b,0x93,0xe7,0x6c,0xcb,0x9f,0x0d, +0x38,0x6f,0x57,0xe5,0xc5,0x41,0x2b,0x4e,0x22,0x0e,0xa7,0x0d, +0xeb,0xad,0x8a,0x8f,0xdb,0xf1,0x0d,0x3e,0xbd,0x56,0x55,0xce, +0x1c,0x34,0x08,0x73,0x88,0xf0,0x90,0xd1,0x0d,0x97,0x75,0x6a, +0x7c,0xc9,0x42,0x58,0x2e,0x04,0x56,0xc2,0xae,0x1e,0x97,0x5e, +0x1e,0xb7,0x18,0xa1,0xa7,0x0b,0xba,0x05,0x72,0x30,0xfa,0x00, +0x55,0xb7,0x2b,0xcb,0xbd,0x7e,0x53,0x97,0x3f,0x65,0xba,0xf3, +0xb2,0xda,0x34,0xde,0xb0,0xfb,0xb2,0x95,0x94,0x2f,0xf6,0x87, +0x92,0xbf,0xb9,0x0b,0xff,0xe2,0x18,0x2a,0xc7,0x7e,0x26,0xfd, +0xa3,0xc1,0x7e,0x60,0x34,0x73,0x15,0x97,0x91,0x77,0xf2,0xc4, +0x59,0xac,0xf0,0x4a,0xf8,0x85,0xc8,0x57,0x80,0x23,0x1b,0xb6, +0x7e,0xbb,0x13,0x8e,0xf2,0x29,0xa2,0x60,0x9d,0x52,0xf4,0xd3, +0xe5,0xf4,0x77,0x1c,0xa8,0x2d,0x67,0x2c,0x72,0xfc,0xce,0xab, +0xc3,0xe7,0x4c,0x4d,0x86,0xac,0x4a,0xa3,0x83,0x3d,0x2a,0x53, +0xd2,0xc5,0x31,0xac,0x5f,0x74,0x72,0xb6,0xc6,0x73,0x08,0xc6, +0x3f,0x70,0x2f,0x9b,0xa3,0xa3,0x04,0xcb,0x99,0xce,0xfc,0xec, +0x36,0x0d,0xf9,0x8c,0x81,0x6b,0x82,0x23,0xdb,0xcf,0x83,0x2b, +0x11,0x8e,0xeb,0x83,0x29,0x2e,0xbb,0x0c,0xcb,0xc0,0x86,0x51, +0xfe,0x5b,0x5d,0x05,0xd5,0x18,0xab,0x70,0x71,0xab,0xad,0x1e, +0xd0,0x95,0xab,0xa2,0x4c,0xdc,0xdd,0xbf,0x32,0xb5,0x52,0x27, +0x55,0xb1,0xbb,0x7f,0xc8,0x71,0x1a,0x40,0x82,0x2a,0x0c,0x67, +0xa2,0x71,0xe7,0x3e,0xe4,0x50,0x73,0x55,0x8d,0x8e,0xb8,0x5a, +0x6e,0xd8,0x15,0x98,0x95,0x02,0x07,0xb8,0xe7,0x78,0x85,0xd9, +0x5c,0xec,0xf6,0x48,0x1d,0x66,0x32,0x0d,0x39,0x79,0x0d,0x1a, +0xb7,0xd8,0xa3,0x99,0x4a,0x03,0xbb,0xfa,0x95,0x49,0xc6,0x19, +0x59,0x5d,0x6a,0x9d,0x6e,0x16,0x1f,0x65,0x1d,0x66,0x1e,0x6c, +0xcb,0xad,0x1b,0x48,0xbd,0xfc,0x3d,0x18,0xf7,0x6f,0x64,0xa0, +0xcd,0x83,0xe0,0x28,0x5c,0x05,0xa3,0x58,0x70,0xc5,0x51,0x04, +0x46,0xc1,0x46,0x1c,0xc5,0x0a,0xf7,0x71,0x39,0xc1,0xe9,0x10, +0x03,0xd3,0x19,0x78,0x8f,0x6a,0x04,0xc7,0xd1,0xdf,0x19,0x27, +0xfe,0xce,0x38,0x02,0xe3,0xe8,0xef,0x8c,0x63,0x07,0x2c,0x69, +0x21,0x3c,0x1d,0x4b,0x71,0x3a,0xd3,0xbf,0x18,0xa2,0x49,0xe4, +0x91,0xe0,0x5d,0x7e,0x47,0x3d,0xe3,0x79,0x89,0xe1,0x39,0xc9, +0xc5,0xf4,0xee,0x4c,0xd5,0x64,0x71,0xcb,0xfe,0x88,0xe6,0x02, +0x3e,0xb8,0xdd,0xfd,0xbe,0x5f,0x93,0x4d,0x00,0x9f,0xe6,0x93, +0xe1,0x28,0x73,0xf0,0x8c,0x75,0x8f,0xf3,0x88,0xcb,0x3d,0x97, +0x7e,0x59,0xda,0xc7,0x29,0xff,0xbd,0x1f,0x96,0x93,0xc3,0x1d, +0xa6,0x6d,0x76,0xad,0xf5,0x4f,0x4e,0xff,0x54,0xfa,0xc1,0x20, +0x9b,0xf7,0x5e,0xec,0xb5,0xc1,0x79,0xf7,0xc1,0x5f,0x7c,0x7e, +0x8e,0xa7,0x66,0xce,0xef,0xc3,0x7c,0x58,0x7a,0x04,0x97,0xa2, +0xea,0x51,0x50,0x65,0xe2,0x70,0x93,0xf9,0x82,0x05,0xd3,0x1b, +0xac,0xf9,0x6f,0x5f,0xb6,0x7e,0x7b,0x12,0x54,0xb9,0x14,0xe6, +0xe4,0xda,0xfc,0x8d,0x57,0x56,0x1e,0xdb,0xa8,0x7d,0x70,0x9d, +0xee,0x59,0x4b,0xfe,0x71,0xef,0x85,0x6b,0x6d,0x8f,0x6a,0xac, +0x9a,0x2d,0xfa,0xcc,0xe3,0x12,0x69,0x75,0x29,0x94,0xb3,0x96, +0x91,0xe9,0x67,0x34,0xca,0xd8,0x4b,0xc9,0x17,0x25,0xcd,0xa9, +0xa7,0xc2,0x93,0xc2,0x93,0x22,0x1a,0x64,0x7c,0x48,0x87,0xf7, +0x55,0xff,0x46,0x9b,0x50,0x5e,0xea,0x2b,0x73,0x95,0xba,0x78, +0xc7,0xbb,0xc7,0xb9,0x9d,0xc8,0xee,0xcd,0x7b,0x9c,0x76,0xce, +0x2c,0x85,0x8f,0xd2,0xf3,0x5f,0x1b,0xa0,0xc3,0x25,0x44,0x47, +0x25,0x44,0x4f,0x85,0x00,0xf8,0x5c,0xae,0x89,0x3a,0x6c,0x66, +0x79,0x66,0x75,0x5a,0xc5,0xe1,0x34,0x3e,0xc2,0x25,0xd4,0x36, +0xc8,0x99,0xc3,0xd9,0x82,0xe6,0xf7,0x4c,0x02,0x6e,0x70,0x41, +0xd5,0x75,0x5b,0x1b,0x8c,0xf8,0x5f,0x5e,0xd4,0xc2,0x9c,0x24, +0x38,0xc4,0x5d,0xc2,0x1b,0xcc,0xbe,0x5a,0xdf,0x6b,0xea,0xf2, +0x2a,0xa6,0x29,0x3f,0xbb,0x51,0xe3,0x17,0xd6,0x34,0x53,0x29, +0x84,0xba,0xc4,0xae,0xee,0xd8,0x19,0x8b,0x62,0x87,0xe3,0x7c, +0xa3,0x57,0xa7,0xdd,0x19,0x7b,0x6e,0x20,0x0a,0xa7,0xd0,0xd8, +0x06,0x46,0x7c,0x5e,0xb9,0x63,0xf0,0x79,0xe5,0xa7,0x30,0x81, +0xc5,0xf5,0x78,0x81,0xc0,0x14,0xda,0x3f,0x85,0x85,0xed,0x30, +0x45,0xdc,0xd3,0x5f,0x19,0xa6,0xb0,0xca,0x7f,0xcf,0x3c,0x41, +0x34,0x19,0xdb,0xb0,0xc1,0xe3,0x20,0x16,0xca,0xd5,0xd0,0xe5, +0x3f,0x8f,0x83,0x88,0x50,0x1c,0x07,0x31,0x4f,0x50,0xfb,0x89, +0x89,0xa5,0x24,0x8e,0x2c,0x8e,0x5a,0x55,0x73,0x94,0x87,0xa9, +0x30,0xbc,0x03,0xa6,0x27,0xc3,0x41,0xee,0x96,0x78,0x1c,0x44, +0x81,0xfb,0x03,0xf5,0x3f,0x99,0x86,0x6c,0x0a,0x97,0xbb,0xac, +0x61,0xa6,0x92,0x10,0xbe,0x9d,0x38,0xe6,0x3b,0xe5,0x3a,0xe5, +0x34,0x77,0x54,0x9c,0xcf,0xba,0xca,0x3d,0xef,0xc6,0x3c,0x26, +0xab,0x2a,0xa3,0x5a,0x56,0xc9,0x15,0xd3,0x0a,0x30,0xe5,0xe4, +0xc9,0xe4,0x38,0x75,0x98,0x83,0x23,0x2a,0xda,0x71,0xda,0xfb, +0x10,0x69,0xf4,0x17,0x91,0x61,0xaa,0x51,0x11,0x71,0x89,0x4a, +0xe7,0x60,0x4f,0x37,0xee,0xf9,0x85,0xbd,0x28,0xed,0x93,0xb5, +0x64,0x79,0x77,0xf0,0x0b,0x1d,0x70,0xb1,0x3f,0x0e,0x8f,0x49, +0x13,0x77,0x1a,0x3d,0x9f,0x72,0x3e,0x95,0x5b,0x83,0x06,0x86, +0xb0,0x8b,0x75,0xdc,0xb7,0x57,0x6b,0xf5,0xd1,0x4a,0x13,0xfe, +0x8f,0x9b,0x17,0xae,0x48,0x1e,0x72,0x12,0x3c,0xc2,0x78,0xa6, +0x84,0x1e,0x0f,0xb2,0x0b,0xb0,0x55,0xc5,0x4f,0x0d,0x5f,0x31, +0xfe,0xf6,0x3e,0xf6,0xde,0x0e,0xbd,0x5e,0xdd,0x5e,0x1d,0x9e, +0x26,0xf6,0x87,0x5d,0x77,0xf8,0x15,0x1a,0xf2,0xdf,0x14,0xdf, +0xad,0x3b,0xdf,0x5e,0xe7,0x5b,0xeb,0x5b,0xeb,0xcd,0x41,0x5d, +0xbf,0x1b,0xa1,0xc3,0x9a,0x08,0x2c,0x0b,0x34,0x3b,0x8a,0xe7, +0x34,0x4d,0x11,0x0f,0x63,0x3a,0x64,0x4c,0x70,0x3c,0xed,0x1e, +0x2f,0x76,0x2b,0x8e,0x43,0x98,0x82,0xe3,0x59,0xfb,0xed,0x24, +0xf6,0x48,0xd8,0x9e,0x10,0x3d,0x1f,0xf1,0x4c,0x89,0x26,0x49, +0x67,0x7a,0x53,0x86,0x6a,0x9a,0x7d,0x43,0x7e,0x58,0x9b,0xcf, +0xbd,0xc0,0x46,0x55,0xbb,0xa0,0x54,0x5f,0xa9,0x63,0x9a,0xa3, +0xaa,0x4e,0x98,0xec,0x5c,0xea,0x45,0x49,0xaf,0xaa,0x90,0xb9, +0x9c,0x04,0xeb,0x79,0x98,0xd9,0x5a,0x5b,0x15,0xd8,0xe4,0xd9, +0x65,0xe7,0x94,0x65,0x97,0x67,0x55,0x50,0xbc,0x2e,0x86,0x11, +0x24,0x51,0x92,0x98,0x9a,0xa6,0xd6,0xbf,0x4c,0xd8,0x39,0x60, +0xc6,0x86,0xb5,0xfa,0xf7,0x84,0xd4,0xd8,0x86,0xf1,0x69,0xbe, +0x52,0x97,0x34,0x17,0xff,0x78,0xef,0x78,0xaf,0x13,0x99,0x7d, +0xd9,0x4f,0x52,0xcf,0x1d,0x4b,0xe6,0xa3,0xf5,0x02,0xd6,0x06, +0x69,0xc7,0x24,0xc4,0x7c,0x11,0x93,0xc0,0x41,0x30,0xf0,0xf2, +0x39,0x34,0x27,0x65,0x96,0x89,0x18,0x3a,0x92,0xc6,0x47,0xba, +0x84,0xda,0x05,0x52,0x0c,0xa9,0x0a,0x73,0xbe,0xa6,0x18,0xda, +0xe8,0x8e,0x6a,0xeb,0xb7,0x34,0x1a,0xf3,0x3f,0xbd,0xa8,0x04, +0xcd,0x53,0xa0,0xc5,0x75,0xe1,0xad,0x21,0x0c,0xb5,0x0f,0x62, +0xe8,0x15,0x2b,0xbc,0x9d,0x4b,0x86,0xe0,0xdc,0x97,0xdc,0x25, +0xa9,0x97,0x24,0x85,0x9f,0x0c,0x4f,0x8a,0xac,0x91,0xf2,0x5e, +0x7d,0xfd,0x06,0xf0,0x68,0x80,0xa5,0x1c,0x94,0xad,0xa7,0xf4, +0x9a,0xc9,0x92,0x25,0x25,0xa7,0x69,0x6c,0x60,0xd1,0x13,0x22, +0x88,0x6f,0xf0,0xa9,0x2a,0x8d,0x0f,0x70,0xa8,0x63,0xe1,0x2b, +0x18,0xd1,0xbe,0x8f,0xcd,0x69,0xc8,0xbf,0x9c,0xd6,0x64,0x9a, +0xce,0x47,0x1e,0xf3,0xdd,0x1b,0x60,0xc9,0xe1,0x52,0x53,0x18, +0x3e,0x7f,0x05,0xae,0x63,0xf4,0x8b,0xfd,0x3a,0xd4,0x61,0x75, +0x07,0x83,0xf3,0xe5,0x0c,0x89,0x3a,0xe3,0xd7,0x1b,0x5a,0x6e, +0x1e,0xc4,0x67,0xb8,0xe6,0x19,0xa6,0x1d,0xe7,0x84,0xac,0x20, +0x0a,0xd5,0x0f,0x22,0x52,0xd7,0x0e,0x22,0x75,0x94,0x88,0xd4, +0xe5,0x78,0x89,0x80,0xea,0x07,0x54,0x15,0xbb,0x55,0x09,0xaa, +0xd2,0x6e,0x55,0x0a,0xd4,0xd9,0x4f,0x49,0x56,0x5a,0x4a,0x4e, +0xb1,0x9a,0x3c,0x0f,0x9d,0x7f,0x83,0xb0,0x1e,0x41,0x6a,0x00, +0x7e,0x0b,0xd1,0x46,0x78,0xd9,0x2d,0x6f,0x83,0x65,0x42,0x5e, +0x97,0x3c,0x0f,0xd6,0x0b,0x9e,0xb3,0xd8,0x34,0x03,0xa5,0xef, +0x99,0x8c,0xf4,0x93,0xa7,0x52,0x35,0x36,0x0b,0xb7,0x06,0x43, +0xb6,0x9c,0xed,0x3c,0xd5,0x94,0x52,0x99,0x92,0x14,0x71,0x32, +0xe2,0x64,0xe4,0x59,0x29,0x1f,0xd1,0xe6,0x7f,0x3d,0xb4,0xde, +0x36,0x82,0x4f,0xf5,0x4b,0x73,0x4e,0x75,0x0e,0x8e,0x0f,0x38, +0x11,0x70,0x42,0x7a,0x5e,0xf6,0x54,0xd2,0x63,0x99,0xcc,0xc7, +0xe8,0x85,0xae,0x09,0xd5,0xe6,0x12,0x62,0x62,0xbf,0x88,0x99, +0x0a,0x21,0x30,0x89,0x86,0xec,0x36,0x36,0xa3,0x2c,0xa3,0x2a, +0xad,0x5c,0x87,0x9a,0xdb,0x35,0xd4,0x2e,0xc8,0x85,0x96,0xef, +0x82,0xe6,0x43,0xd1,0xdc,0xde,0x38,0x75,0xe3,0x96,0x26,0x63, +0xfe,0x87,0x17,0x65,0x30,0x37,0x89,0x9a,0xfb,0x2c,0xde,0x66, +0xf6,0xd5,0x89,0xe6,0xbe,0x35,0x68,0xee,0x2f,0xd9,0x81,0x5f, +0xc5,0x42,0x66,0xe2,0x4b,0x9c,0xc8,0xc2,0x22,0xf1,0xd4,0xd8, +0x89,0xb3,0x61,0x22,0x8b,0x9a,0x8a,0xf1,0xbe,0x14,0xc7,0xbb, +0x48,0x31,0xde,0xd9,0x74,0xb8,0x50,0x1e,0x45,0x2c,0xea,0xac, +0xd8,0x5d,0x41,0xfb,0xad,0xf7,0xa8,0x97,0x9a,0xd5,0xdf,0x93, +0xd4,0x26,0x7d,0xa9,0x9a,0xcc,0x9c,0xd4,0x4b,0x3f,0x56,0xb3, +0xbb,0xb8,0x9d,0xb7,0xb9,0x1b,0x7e,0xe5,0x81,0xda,0x63,0x71, +0x65,0xcc,0x77,0xa4,0xee,0x5e,0x1a,0xbd,0xcc,0x89,0x97,0x65, +0x16,0x67,0x76,0x95,0xb4,0xf0,0x36,0x0f,0xc2,0x2e,0x3d,0x52, +0x7b,0xbc,0xde,0xa2,0xc6,0x8a,0xd5,0x0a,0xde,0x66,0xb9,0x47, +0x5d,0xf9,0xef,0xd5,0x0f,0x88,0x44,0x9a,0x94,0x91,0xad,0x06, +0xf9,0xe8,0xcf,0x9e,0xca,0x4f,0xca,0x4b,0xca,0xe5,0xa8,0xb8, +0x89,0x33,0x40,0x23,0x7c,0x0c,0x46,0x06,0x18,0x07,0x7b,0x98, +0x13,0x01,0x71,0xfe,0xf1,0x7e,0x1c,0xee,0xc1,0xe7,0x3d,0x50, +0x07,0x9f,0x30,0x11,0xe6,0xa1,0x66,0x21,0xd6,0x7e,0x09,0x7e, +0x27,0x02,0x12,0x92,0x8d,0xf8,0x87,0xa9,0x7f,0x48,0xaf,0xca, +0x52,0x82,0x24,0x41,0xc9,0xc1,0x2d,0xb9,0xbc,0x5f,0x8f,0xf3, +0x6d,0xaf,0x7a,0x8b,0x00,0x3e,0xdd,0x3f,0xc3,0x4b,0xe6,0xe1, +0x14,0x6b,0x15,0x6b,0x15,0x27,0xab,0x97,0xb5,0x48,0x5b,0x38, +0x38,0x84,0xfe,0xf3,0x99,0x74,0x63,0xa5,0xe7,0x4c,0x5a,0x6a, +0xe2,0x49,0x89,0xc6,0x61,0xe1,0xfc,0x47,0x02,0x3d,0x97,0xdc, +0x96,0x52,0x23,0x11,0xe9,0xf3,0x64,0x64,0x83,0x94,0x0f,0xeb, +0xf0,0xbb,0x16,0xac,0xf0,0x86,0xaf,0xd4,0x39,0xcd,0x25,0x20, +0xde,0xf7,0x84,0xcf,0x89,0x8c,0xde,0xcc,0xa7,0xa9,0xe7,0x2c, +0x28,0xf8,0x8f,0x06,0xad,0x0d,0xd6,0x09,0x3c,0xc1,0x53,0xe0, +0xab,0x50,0x4f,0xec,0xa1,0xc0,0xcf,0xa8,0x4e,0x2b,0xd7,0x56, +0x00,0xdf,0x5e,0x24,0x4f,0x22,0x68,0x3e,0x13,0x3d,0xe1,0x81, +0x6a,0x1b,0x06,0x81,0x5f,0x01,0x9a,0xa2,0x27,0xda,0x44,0xe0, +0x2b,0x3c,0x71,0xe1,0xa3,0x27,0xd0,0xaf,0x5f,0x8f,0xdc,0x3c, +0xb4,0x17,0x5d,0x8d,0xe4,0xd1,0x5d,0xec,0xc0,0x57,0xa8,0x47, +0x1d,0xf3,0x56,0x74,0xcc,0x4a,0x85,0x63,0x70,0x18,0xf5,0x0c, +0x7c,0x25,0xee,0x22,0x91,0xd7,0x5c,0x52,0x5f,0x76,0xc6,0xa7, +0xca,0xbb,0xc4,0xef,0x74,0x2d,0xef,0x9d,0xeb,0x5a,0xe0,0x9c, +0x57,0x56,0x58,0x54,0x94,0x5b,0xe8,0x50,0xc6,0xfb,0xfb,0x78, +0x7a,0xb9,0x7a,0xdb,0x15,0x1e,0xcf,0x73,0xcb,0x70,0x73,0xe0, +0x4b,0xc3,0x2a,0x03,0xab,0xfc,0x1d,0x7d,0xec,0xfd,0xec,0x83, +0x38,0xc1,0x1c,0xe7,0x11,0xe0,0xdf,0x22,0x2f,0xfe,0xab,0x3c, +0x41,0x5e,0xdc,0xd9,0x8d,0x6a,0xee,0xf5,0xfd,0x19,0xa4,0x3f, +0xa7,0x79,0xe0,0x09,0xce,0xa1,0x1a,0xcb,0x6f,0x9e,0xf1,0x26, +0xf5,0x6e,0x53,0xa5,0xcb,0xaf,0xf3,0x68,0x61,0xb2,0x48,0xad, +0x5f,0x22,0x21,0xfe,0xa5,0x6e,0x65,0xde,0xf9,0xd6,0xae,0x7c, +0xa9,0x4f,0x89,0x67,0x9e,0x3b,0x87,0x2f,0xff,0x20,0x78,0x03, +0x97,0xc0,0x0d,0xe6,0x16,0x66,0x92,0x5f,0x1e,0xb7,0xf6,0xa5, +0x7c,0xc7,0x49,0x18,0xc9,0x8a,0x2e,0xdd,0x3f,0x36,0x54,0xb7, +0xf0,0x8b,0xef,0x1c,0xba,0x1c,0xfe,0x03,0x07,0xf3,0xdb,0x70, +0xe1,0xe0,0x11,0xb7,0x1a,0x66,0x54,0x4d,0x44,0xae,0xd2,0xd5, +0x5a,0xb9,0x87,0x5b,0x0f,0x2f,0x88,0x07,0xba,0x94,0x52,0xb5, +0xa8,0x4d,0x5c,0xd1,0xa5,0x82,0x95,0x67,0x08,0x5f,0x91,0xd4, +0xe8,0xb4,0xa8,0xd4,0xc8,0xe3,0xf1,0xc7,0x4f,0x58,0x9d,0xc8, +0xc8,0x93,0xe5,0xd3,0xca,0xff,0x4f,0x30,0xa1,0xd6,0x92,0xa4, +0x4b,0xd2,0x53,0x64,0xf6,0xa7,0xf8,0xc6,0xc4,0xb4,0xcc,0x5a, +0x35,0xd8,0x87,0x7f,0x63,0x58,0xcf,0x5d,0x90,0x38,0xcd,0x62, +0x65,0xf6,0x4a,0x37,0x98,0xd8,0xd0,0xe8,0xb0,0x48,0x5a,0x67, +0x5f,0x46,0x13,0x30,0x60,0x02,0xb5,0x76,0x5a,0xa2,0x97,0x4f, +0x06,0xad,0x5d,0xbc,0x0b,0x61,0x54,0x4f,0xd1,0x7b,0xee,0xcd, +0x12,0x46,0xab,0x28,0xe8,0x92,0x3a,0x74,0x32,0x75,0xe9,0x99, +0xe2,0x57,0x84,0x0c,0x65,0x7e,0x25,0xde,0x45,0xbe,0xb9,0xaa, +0x78,0x53,0x7e,0x90,0xde,0x84,0xa4,0x82,0x3d,0x38,0x0a,0x24, +0xce,0x28,0x61,0xc0,0x06,0xa9,0x7a,0xf8,0xa2,0x09,0xbe,0x60, +0x2e,0x5a,0x92,0x26,0xc8,0xb4,0x64,0xf1,0x9e,0x1d,0x39,0x86, +0x5f,0xb4,0xb0,0x70,0x51,0x05,0x32,0x8f,0x61,0x26,0xf3,0x3d, +0x2d,0xf6,0x5d,0xa2,0x4f,0x55,0x68,0xfc,0x0a,0x9f,0xb0,0x11, +0xfe,0x61,0xbe,0x41,0x7e,0x5c,0x42,0x50,0xc0,0x17,0xfe,0x53, +0x93,0x6d,0x7f,0x3c,0xf5,0x20,0xf9,0x89,0x44,0x35,0x25,0x8a, +0xfe,0x44,0x16,0x64,0xf2,0x4e,0xd4,0xc8,0xc3,0x40,0x97,0xc0, +0x9f,0xf2,0x35,0x4b,0x98,0x82,0xea,0x82,0xc6,0x8c,0x3a,0xae, +0x05,0x0f,0xb2,0x69,0x45,0xa9,0x25,0x29,0xc5,0xda,0x12,0xde, +0x63,0xae,0xfe,0xbc,0x8d,0x9b,0xea,0xad,0xf9,0x54,0xf1,0x4f, +0x1a,0xd7,0xff,0xcb,0x65,0x72,0x11,0x5d,0x61,0xd5,0x21,0x5c, +0x85,0x46,0xda,0xc0,0x1e,0x64,0xb1,0xc0,0x03,0xb7,0xa3,0x3a, +0x4e,0x53,0x6f,0x33,0x83,0xd1,0x30,0xa1,0x15,0x34,0x65,0x60, +0xa3,0x0a,0x07,0x19,0xd4,0x38,0xb1,0x28,0x6a,0xb3,0xfa,0x96, +0xc8,0x80,0x80,0xc3,0x53,0x57,0x8a,0xbb,0x1c,0xff,0xc4,0x3c, +0x3b,0xdb,0xf4,0x4b,0x9a,0x86,0xf4,0xa7,0xa4,0x17,0x60,0xae, +0x86,0x71,0x4c,0x62,0xc5,0x17,0xa7,0xab,0xd4,0xae,0xb2,0xd8, +0xf5,0x07,0x09,0x73,0xf6,0xb3,0xf1,0xa6,0x59,0x74,0x21,0x53, +0x5c,0x5d,0x50,0x93,0x5b,0xc7,0x1d,0xc5,0x3a,0x02,0xe4,0x25, +0x12,0xb6,0x4b,0x05,0xc8,0x6b,0x71,0x41,0xd7,0x09,0xd4,0x26, +0x30,0xed,0x25,0x4e,0x13,0xbb,0xa6,0xbd,0xa6,0xaf,0x01,0xab, +0x48,0x9e,0x75,0xae,0x59,0x96,0x71,0x6b,0x0e,0x1f,0xd8,0x19, +0xd0,0xea,0x5b,0xcf,0xe1,0x8f,0x98,0x40,0xea,0xae,0x96,0x7f, +0x93,0xf1,0xc4,0x48,0xc6,0x87,0xee,0xf4,0xd8,0x6e,0x77,0x98, +0x83,0x14,0xd0,0x26,0xd9,0xfa,0x99,0x3a,0xe9,0xfb,0xbb,0x65, +0x7c,0xd8,0xb5,0xa0,0x8b,0xfe,0x3d,0x1c,0x6a,0x04,0x91,0xb4, +0x83,0x29,0x3b,0x12,0xf7,0x9c,0x4b,0xe5,0xe3,0xef,0x44,0xdf, +0x0a,0xbf,0xae,0x38,0x2a,0x73,0x37,0xc1,0x6e,0x26,0xb3,0x25, +0xa3,0x5d,0xd6,0x71,0x24,0x83,0xb7,0xc3,0x55,0xfa,0x38,0x71, +0xef,0x5c,0x0e,0x96,0x68,0xb2,0x45,0x67,0x0a,0x9b,0xb2,0xce, +0x52,0x33,0x19,0xb3,0xd2,0xe2,0xd4,0x62,0x49,0xf1,0x61,0x09, +0xef,0xa6,0xa9,0xad,0xb9,0x66,0x63,0xbd,0x25,0x2f,0x4d,0xa3, +0x7f,0xa4,0x9c,0x30,0x52,0x3e,0x0e,0x52,0xd9,0x06,0x8b,0x96, +0xeb,0x67,0x9f,0x54,0x7f,0xaf,0x5a,0x3b,0xa0,0x77,0x15,0x24, +0x60,0x7e,0x11,0xcd,0x61,0xd3,0xe0,0xcb,0x7a,0x70,0x67,0x84, +0xc7,0xdf,0x93,0x50,0x67,0x5f,0x6b,0x4f,0x7b,0x0e,0xd7,0x33, +0xa5,0xd5,0x45,0xb5,0x79,0xf5,0xdc,0x11,0x5a,0x58,0xc0,0x94, +0x0f,0x54,0x7f,0x74,0xab,0x50,0x21,0x32,0x9c,0xbe,0xc1,0x3c, +0xc5,0xa8,0x3f,0xd0,0xd1,0xd2,0xbe,0x69,0xb4,0x6f,0x1a,0x9b, +0xb1,0x9c,0x14,0x58,0x17,0x98,0x66,0x1b,0x75,0xe6,0xf2,0x01, +0x9d,0xbe,0xed,0xde,0xf5,0x9c,0xf0,0x39,0x9e,0x24,0x0d,0x57, +0xab,0xbf,0xc9,0x7c,0xa6,0x9f,0xc1,0x07,0xef,0x74,0xde,0x62, +0x75,0x84,0x83,0x0e,0xd0,0x21,0x79,0x7a,0xd9,0xda,0xb2,0x7d, +0x7d,0x54,0x7e,0xdd,0x08,0xb8,0xe8,0xdb,0xcb,0xe1,0xca,0x20, +0x92,0x7e,0x40,0xb2,0xed,0xe4,0x9e,0x8b,0xa9,0x7c,0xdc,0xbd, +0xc8,0x3b,0xa1,0x57,0x39,0xe5,0xd7,0x22,0x12,0xde,0x0e,0x21, +0xa1,0x29,0xb3,0x96,0x0e,0xf1,0xc0,0x10,0x12,0x74,0x24,0xbc, +0xfb,0x5c,0x83,0x79,0x9b,0x44,0x24,0x14,0x15,0x2b,0xf5,0xab, +0x60,0x04,0x91,0x6f,0x01,0x8b,0x0b,0xc2,0x31,0x1d,0xd0,0x17, +0xb6,0xa0,0xae,0xb8,0x68,0xf6,0x9b,0x2b,0xf0,0x0d,0xb8,0x5d, +0x66,0x85,0xbf,0xe4,0x33,0x15,0xce,0xf4,0x12,0x25,0x11,0x53, +0x54,0x5d,0x58,0x93,0x53,0xc7,0xf5,0x7b,0xe0,0x35,0xe2,0xfb, +0xdc,0xf2,0x83,0xdd,0x7d,0xa3,0x40,0xbe,0x66,0x73,0x03,0x0e, +0x2f,0x5c,0xc7,0xe1,0x75,0xa8,0x23,0x01,0x6b,0x9c,0x16,0x59, +0x6f,0xec,0x71,0xe7,0xcf,0x3e,0x3d,0xf3,0x21,0xf7,0x5b,0x4e, +0x70,0x13,0x0f,0x5a,0x26,0xbf,0x0d,0x39,0xfe,0x95,0xe8,0xf8, +0x58,0x85,0x09,0x7e,0x1b,0x72,0xfc,0x2b,0xfa,0x9a,0xbe,0x92, +0xe4,0x5b,0xe7,0x99,0x67,0x1b,0xb7,0xe7,0xf0,0x01,0x1d,0xfe, +0x6d,0x3e,0x75,0x1c,0x0a,0x78,0x82,0xd4,0x5f,0x3d,0xfd,0x9c, +0x3a,0x3e,0x83,0x0f,0xd9,0xe9,0xba,0xdd,0x96,0x5a,0xa0,0x08, +0x0e,0x93,0x5c,0xfd,0x2c,0xea,0xf8,0x1e,0xea,0xf8,0xeb,0x81, +0x17,0xfc,0xa8,0xe3,0xe7,0x06,0x13,0xe9,0x01,0xc9,0x8e,0xc4, +0xbd,0x7d,0x12,0x3e,0xfe,0x6e,0xd4,0xed,0x30,0x6a,0x81,0xbf, +0xd9,0x64,0x82,0x09,0x8c,0x6e,0x98,0xec,0x4b,0x0d,0x30,0x06, +0x5b,0x68,0xc0,0x44,0xb6,0xa0,0x36,0xaf,0x2e,0xfb,0x2c,0x07, +0x55,0x0c,0xee,0x48,0x98,0x1f,0xb5,0x4a,0xfd,0x60,0x6c,0xa8, +0xaf,0xe9,0xd4,0x5d,0x8c,0xec,0xa8,0xd2,0x75,0xe6,0xc1,0x99, +0x33,0xaf,0xd2,0x34,0x52,0x5f,0x9e,0x7c,0x07,0x3e,0x6a,0x78, +0x87,0x91,0x56,0xa6,0x55,0x49,0xaa,0x74,0xb3,0x79,0x37,0x1c, +0x6b,0x82,0xc3,0xb6,0x2d,0xe3,0xbe,0x5d,0xc1,0xe6,0x9f,0x29, +0x68,0x96,0x89,0x91,0xb5,0x8d,0x15,0x01,0x93,0x22,0xee,0x08, +0xeb,0x39,0xc7,0x78,0xde,0xb6,0x8d,0xf5,0x36,0xbc,0x44,0x92, +0x92,0x2a,0x91,0x70,0xc2,0x08,0xf8,0x0e,0x9e,0xb3,0x4d,0x96, +0x59,0x79,0x59,0xf9,0x19,0x05,0xaa,0x82,0x05,0xab,0x59,0xe4, +0xf6,0x87,0x3a,0x84,0x31,0x9d,0x79,0xf9,0xed,0x1a,0x54,0x76, +0xe9,0xe4,0x28,0x09,0xed,0xf2,0x3b,0x24,0xdc,0xd9,0xdf,0xca, +0x8b,0x42,0x66,0x1a,0x53,0x74,0x26,0xbf,0x36,0xa7,0x9e,0x33, +0xc4,0x66,0x4a,0xa0,0x3f,0x50,0x02,0xed,0x54,0x01,0xfe,0x67, +0x91,0x48,0x5f,0x3f,0x23,0x34,0x31,0x2d,0x12,0x4f,0xd1,0x59, +0x87,0x45,0x04,0x66,0xfc,0x80,0x33,0xc4,0xab,0x33,0x7e,0xa6, +0xaf,0xc9,0x2b,0x49,0xae,0x75,0xae,0x69,0x96,0x51,0x1b,0x0d, +0x99,0x2e,0xff,0x36,0x3f,0x1a,0x32,0x3f,0x63,0x22,0xa9,0xbf, +0x46,0x43,0xe6,0x99,0x31,0x85,0xc9,0x0e,0xf7,0xad,0x62,0xc8, +0x48,0x28,0x24,0x72,0xf4,0x33,0xb5,0xd3,0xf7,0x75,0x89,0x96, +0x0b,0xba,0x18,0x70,0x8e,0x7e,0x6c,0x30,0x49,0xdb,0x9f,0xb2, +0x3d,0xf1,0xff,0xa3,0xed,0x3d,0xc0,0xb2,0x3a,0xb6,0x77,0xf1, +0x14,0xd9,0x7b,0x27,0x27,0x31,0x89,0x66,0x70,0x83,0x09,0xd8, +0x7b,0x34,0xf6,0xde,0xb0,0x37,0x50,0x7a,0xef,0x1d,0x01,0xe9, +0xbd,0x09,0x58,0x88,0x05,0xe9,0xbd,0x83,0x74,0xe9,0x1d,0xa9, +0x62,0xc1,0x86,0xa2,0xc6,0x12,0x4b,0xa2,0xe9,0xf5,0xa4,0xcc, +0xe6,0xac,0xcd,0x39,0x77,0x66,0x7f,0x1f,0xc5,0x92,0xdf,0x3d, +0xf7,0xfe,0xef,0xff,0xf1,0xc9,0xb3,0x79,0xe4,0xc3,0x30,0xef, +0xac,0xf5,0xae,0xf7,0x5d,0x33,0x7b,0x66,0x5b,0x07,0x41,0xee, +0x66,0xc4,0xf5,0x10,0x92,0x32,0x3f,0x11,0x88,0xf1,0x77,0xc2, +0xf2,0x85,0x4c,0x56,0x59,0x66,0x4d,0x12,0x8d,0x9d,0xad,0x6c, +0xdc,0xd0,0x58,0xdd,0x66,0xe9,0xcf,0x5e,0xbf,0x96,0x8e,0x35, +0x96,0x0c,0x95,0xb0,0xc8,0x9f,0xf8,0x10,0x12,0x23,0x35,0xf1, +0x16,0xc6,0x13,0x16,0xeb,0x83,0x0e,0xbc,0x05,0x8b,0x2a,0x74, +0xf9,0xc2,0xaa,0xfc,0xba,0xdc,0x46,0x4e,0x7c,0xbb,0xfb,0x3a, +0x0e,0xdc,0x7a,0x4e,0xc8,0x81,0x32,0xb6,0xe8,0xcb,0x9c,0xef, +0x52,0x7e,0xe3,0x70,0x32,0x33,0xf8,0xba,0x07,0x0a,0x71,0xf6, +0xb5,0xa2,0x14,0x31,0x9d,0x44,0x55,0x26,0xa5,0x08,0x5d,0x4a, +0x11,0x8a,0xdf,0x80,0x22,0x1d,0x9c,0xe2,0x77,0xe4,0x89,0xc3, +0xc5,0xb7,0x11,0xfe,0x9e,0x98,0xc1,0xef,0xd9,0x41,0x5d,0xbc, +0x87,0x44,0xcd,0x37,0x24,0x5a,0xc8,0xb7,0x27,0x7d,0x47,0x9e, +0xc7,0x29,0x5d,0x64,0x10,0xba,0xa0,0x63,0x6f,0xf1,0x95,0xe8, +0xe2,0x07,0x89,0x2e,0x0a,0x1f,0x26,0xdd,0x23,0x74,0x11,0x44, +0xe8,0xc2,0x86,0x8c,0x3d,0x81,0xd0,0x45,0x1a,0xa5,0x8b,0x1d, +0x67,0x93,0x08,0x5d,0xf8,0x9f,0xf3,0x23,0x51,0x33,0x25,0x00, +0xc5,0x4b,0x74,0xd1,0x21,0x8b,0x9a,0xd0,0x5e,0x6e,0xec,0x2f, +0x34,0x6f,0xbe,0x14,0x56,0x2c,0x66,0x32,0x09,0x83,0x4a,0xf3, +0xac,0xc6,0xc6,0xe6,0x0c,0xcd,0xf3,0x2c,0x83,0x39,0x1b,0xa5, +0xb1,0xc7,0xc4,0xc4,0xc6,0xc4,0x72,0x03,0x4a,0xcb,0xd1,0xdd, +0x9b,0x9d,0x77,0xf3,0x1e,0x90,0x82,0x5b,0xcc,0x26,0x16,0x24, +0x9c,0x8e,0x3d,0xbd,0x2f,0x96,0x3f,0xb0,0x58,0x7b,0xc9,0xd6, +0xcd,0x15,0xa6,0x7c,0x7a,0x7a,0x5a,0x66,0x5a,0x56,0xa9,0x51, +0xb5,0x69,0x83,0x85,0x8e,0xc5,0x2e,0x4b,0x35,0xdb,0x62,0x3d, +0xfe,0x6e,0xf5,0xf5,0x86,0x9e,0xa6,0xeb,0x9a,0xf7,0xf5,0x1f, +0x9b,0x17,0x76,0xf2,0x6b,0xaa,0x36,0x36,0xec,0x3c,0xcb,0x89, +0x73,0xf0,0x51,0x0a,0x89,0xb5,0x17,0x81,0x64,0x0a,0x93,0x53, +0x92,0x49,0x13,0x4d,0x18,0xa3,0x81,0x62,0x13,0x63,0x13,0x63, +0x12,0x39,0x1c,0xce,0x78,0xed,0x35,0xde,0xbd,0x43,0xc3,0xa0, +0xde,0xbc,0xc5,0xa1,0x9d,0x13,0x97,0x83,0x27,0x81,0xeb,0x2b, +0x39,0x5c,0x14,0x36,0xf0,0x93,0x12,0xeb,0x2b,0x39,0x44,0x14, +0x2a,0x6c,0x9a,0x87,0xae,0x3b,0x7d,0x6f,0x70,0xd3,0xb0,0xb8, +0x9d,0xdf,0xd8,0xbc,0xb0,0x75,0x4b,0x21,0x07,0x51,0xb0,0x84, +0x00,0x97,0x46,0x80,0xab,0x4f,0xe3,0x03,0x08,0xcf,0xd2,0xa0, +0xf9,0x9c,0x00,0x77,0xa6,0xb7,0xe0,0x61,0xe2,0x3d,0xa3,0x04, +0x3e,0x78,0x8b,0xfb,0x46,0x1a,0x34,0x47,0x25,0x9e,0x4d,0xd2, +0x4a,0xd8,0xd1,0x92,0xc4,0x87,0x5e,0x0a,0x38,0xe7,0x4f,0x80, +0xfb,0x68,0x88,0x67,0xdb,0x64,0x3c,0x1b,0x76,0x99,0xc3,0xa1, +0x1b,0x10,0x9e,0x61,0x81,0x95,0xb5,0xf0,0x5b,0x3a,0x59,0x3d, +0x3c,0xbc,0xd1,0x06,0x73,0x7a,0x40,0xb9,0x9a,0x1b,0xfb,0x1d, +0xe1,0x2c,0x7c,0x5d,0x58,0xb9,0x82,0xc9,0x20,0xe1,0x94,0x48, +0xc3,0x69,0x25,0x81,0xf4,0x14,0x81,0x54,0x27,0x86,0xf7,0x98, +0x69,0x3c,0x77,0xeb,0xda,0x0a,0x1b,0x3e,0x3d,0x4b,0x61,0xa0, +0xf4,0x27,0x04,0xb3,0xcf,0x61,0x53,0x70,0xc5,0x13,0x34,0x88, +0x59,0x33,0x06,0xd3,0x6e,0x3c,0x9b,0x05,0xb3,0x5e,0x14,0xea, +0xe2,0x67,0x45,0x91,0x99,0xc0,0x64,0x95,0x64,0x94,0xa7,0x12, +0x0a,0x8a,0x81,0x66,0x4a,0xec,0xd9,0xe7,0xd2,0xcf,0x27,0x75, +0xd0,0x0b,0x1b,0xb4,0x7c,0xf7,0x78,0xec,0xe2,0x60,0xae,0x0e, +0x56,0x64,0xdc,0xf7,0xba,0xee,0xdd,0xaf,0xdb,0xe1,0xd2,0xe5, +0xd8,0x6d,0xa7,0x6d,0xb8,0xd5,0x6a,0xa9,0xd3,0x69,0x5d,0xfe, +0x9b,0xf2,0x7b,0x8d,0x97,0xce,0x5f,0x33,0xbb,0x66,0xd4,0x6b, +0x58,0xd9,0xc2,0xef,0x6c,0xde,0xd6,0xb8,0xb3,0xb6,0xfb,0x7a, +0xf5,0xe3,0xac,0xdf,0xb9,0x27,0xcc,0x60,0x47,0x2f,0x49,0xbc, +0x07,0x24,0xe1,0x9a,0x49,0xe2,0x3d,0x22,0x4f,0x70,0xa0,0x70, +0x4e,0x7e,0x00,0x93,0xe9,0x5f,0x4d,0x7e,0x44,0x9e,0xf8,0xe7, +0x19,0xc8,0xb8,0xc8,0x2c,0xdf,0x3a,0x3b,0xab,0x26,0xa7,0x2d, +0xbb,0x93,0x9e,0xcd,0xec,0xb7,0xc8,0x7e,0x83,0xce,0x1e,0x12, +0x79,0xa9,0x34,0x13,0x4d,0x92,0x47,0x83,0xda,0x47,0x38,0xec, +0xcc,0xa5,0x82,0x87,0x09,0xf7,0x8c,0x65,0xa0,0xda,0x11,0x50, +0xc3,0x65,0xc5,0x4b,0x2b,0x7e,0x34,0xa8,0x4a,0x14,0xd4,0xe8, +0x21,0x50,0x23,0xa5,0xe2,0xf5,0x14,0xef,0x45,0xb8,0x5f,0x58, +0xb3,0x9c,0x42,0x57,0x9b,0x58,0x49,0xa0,0x5b,0x4d,0xa3,0x91, +0xb0,0x38,0x31,0xaa,0x1e,0x33,0x8c,0xe6,0x6c,0x59,0x53,0x61, +0xcd,0x67,0x64,0x2b,0x0c,0x18,0xe5,0xa2,0xe2,0xea,0xfc,0xd6, +0xac,0x16,0xae,0x16,0x8e,0x90,0x62,0x16,0x9f,0x1b,0x93,0x47, +0x40,0x71,0x5b,0xb0,0x63,0xf2,0x6a,0x35,0x12,0x89,0x34,0x60, +0x49,0xc4,0x6a,0x13,0xf2,0x0d,0x80,0x15,0xea,0xf0,0x9e,0xca, +0x59,0x73,0x85,0x0b,0x78,0x42,0x0e,0xde,0x80,0x8f,0x2a,0x77, +0x0b,0xf3,0xda,0xd8,0xc1,0x0f,0xf1,0x64,0x89,0x8f,0xbc,0x08, +0x1f,0x29,0x33,0xd9,0xa5,0x99,0x15,0xa9,0x95,0x1c,0x7e,0x08, +0x93,0x51,0x59,0x55,0x51,0x5d,0x7e,0x13,0x87,0x4d,0x18,0x3f, +0xeb,0x03,0x46,0x8e,0x16,0x9c,0xf8,0x15,0xd5,0x79,0x4a,0x0f, +0x89,0x80,0x27,0xd0,0x28,0x3d,0xa1,0x42,0xfe,0x3f,0xe2,0x46, +0xe4,0x14,0x96,0x5c,0xa4,0x8a,0xbf,0xc6,0x6a,0xb0,0x18,0x38, +0x36,0x49,0x47,0xe1,0x27,0xa6,0x2e,0x2d,0xb3,0x46,0x15,0x5b, +0x40,0x95,0xa8,0xca,0xee,0xce,0xdb,0x7f,0x55,0x85,0x40,0xd6, +0x9a,0x9e,0xde,0xaa,0x8a,0xc7,0xb0,0xba,0xa9,0x0a,0x84,0xc2, +0x06,0x3f,0xc3,0x07,0x11,0x9e,0xfa,0x10,0xa6,0xd2,0x7f,0x6c, +0xea,0x13,0xf2,0xf4,0x5d,0x86,0xd2,0x2c,0xd3,0x4c,0x92,0x0d, +0xea,0xd2,0xf8,0xc0,0x16,0xbf,0x46,0xdf,0x2a,0x0e,0x3a,0x49, +0x45,0x2c,0xbf,0x5c,0xf0,0x58,0xc2,0x32,0x64,0x93,0xc7,0x46, +0xbb,0x3d,0x1c,0xf6,0xc3,0x3a,0x04,0xcb,0x44,0xcd,0xf8,0xed, +0xcd,0x04,0xcb,0xde,0xc0,0x73,0x01,0x04,0xcb,0xf1,0x41,0x28, +0x76,0x67,0xb4,0xda,0x56,0xe5,0xb3,0x31,0x47,0x6f,0x46,0x5e, +0x0f,0xbd,0xa2,0x24,0x2b,0x88,0xff,0x1c,0x2a,0x88,0x49,0x2f, +0x14,0x44,0x2a,0x8d,0x86,0x0b,0x62,0x91,0x3f,0x22,0xda,0xcb, +0x32,0x34,0xb6,0x46,0xf5,0x0a,0x8b,0xd9,0x54,0xac,0x94,0xf7, +0x67,0xa5,0xeb,0x59,0xfe,0x13,0x3b,0x18,0xeb,0x06,0x6f,0x04, +0x71,0x18,0xed,0x85,0x04,0x76,0x4b,0x9e,0xdb,0x4d,0x15,0x9c, +0xc3,0x34,0xa6,0xa6,0xd7,0xa9,0xfe,0xc0,0x6a,0xa6,0x2a,0x88, +0xe5,0x17,0x87,0x75,0xcf,0x9c,0xa1,0x52,0x29,0x91,0x1a,0xfa, +0x4e,0x5e,0xfe,0x7e,0x22,0x4f,0xac,0x2e,0x1e,0x47,0x17,0x71, +0xf6,0x9e,0xf3,0xc2,0x01,0x91,0x17,0x0f,0xb0,0xa2,0x02,0xbe, +0x8e,0x64,0x8c,0x46,0xeb,0xe1,0x4f,0xe4,0x29,0x18,0x91,0x5f, +0x22,0x1b,0xbf,0x87,0xb3,0x19,0xc8,0x86,0x4d,0x08,0x67,0x13, +0x25,0x4d,0xbe,0x36,0xc0,0xac,0x5c,0x21,0x8d,0xa2,0xbc,0x6f, +0x68,0xe6,0x5e,0x2a,0x1c,0x52,0x48,0x07,0x24,0x85,0x14,0xf7, +0x2a,0x85,0x34,0x69,0x28,0x73,0x3b,0x68,0x90,0x85,0x4b,0x41, +0x26,0x34,0x0e,0xdc,0x43,0x76,0x30,0xdf,0x08,0x94,0xd6,0xc3, +0xfb,0x1c,0xde,0xbd,0x86,0x4d,0x2f,0x4b,0x97,0x25,0xea,0x22, +0x89,0xfb,0xa2,0x69,0xa2,0x7a,0xcd,0x34,0x9d,0xbb,0x7d,0x1d, +0x49,0xd4,0xb4,0x4c,0x05,0xf8,0x0f,0xee,0xc2,0x26,0x6c,0xb6, +0x6d,0x49,0x4b,0x6e,0x73,0x5a,0x95,0x92,0x78,0xb1,0x63,0x60, +0x15,0x9b,0x7b,0x35,0xe7,0x76,0xda,0x5d,0x7a,0x99,0xd3,0x41, +0xd4,0x0d,0xeb,0xb0,0xb6,0x16,0x68,0xc3,0x1c,0x4d,0xac,0xc2, +0x06,0xc3,0x44,0x73,0x98,0x36,0x05,0xe6,0x9f,0x31,0xe0,0x9f, +0xe2,0xf1,0x25,0xbf,0xd2,0x56,0x7f,0x8c,0x98,0xdf,0x25,0xe4, +0xc7,0x30,0x09,0x30,0xf6,0xcc,0xa7,0xcf,0xe0,0xe3,0xca,0x56, +0x7e,0x2a,0x9e,0xa7,0x8f,0xa7,0x05,0xe2,0x89,0x9c,0x18,0x81, +0x27,0xa0,0x50,0x67,0x3f,0x2b,0x6f,0x82,0xe5,0xfb,0x64,0xce, +0xd2,0x69,0xce,0x9b,0x40,0x15,0x49,0xd1,0x3b,0xf2,0x14,0xbd, +0x47,0x53,0xd4,0x8c,0xa6,0xe8,0x94,0x3b,0x24,0x8a,0xc8,0x5f, +0x4d,0xb9,0x47,0x9e,0x27,0x49,0xe8,0x58,0xa5,0x99,0x26,0x1b, +0xd6,0xa5,0xd2,0xd0,0x69,0xf0,0x25,0x08,0x9d,0x23,0x69,0x58, +0x7e,0xa9,0xe0,0x51,0xc2,0x5d,0x1a,0x3a,0x5b,0x3c,0xd4,0xec, +0xd4,0x39,0x1c,0x40,0x10,0x4a,0xd1,0x4b,0xd2,0x8c,0xdf,0xd9, +0x9c,0x48,0xd2,0x50,0x16,0x3a,0x28,0x10,0xc5,0xee,0x3a,0xb5, +0x69,0x9b,0xf2,0xd9,0xd8,0xa3,0x12,0xb5,0x29,0x91,0x7a,0x48, +0x42,0xe7,0x67,0x61,0xf9,0xa7,0x23,0xa1,0xb3,0x83,0x84,0x4e, +0xcc,0x50,0xe8,0xe8,0xcd,0x5e,0x27,0x53,0xd5,0x31,0x92,0xaa, +0x2e,0x25,0xff,0xaf,0x04,0xcf,0x78,0xcf,0x58,0x9f,0xd6,0x02, +0xde,0xe5,0x9a,0xd1,0x53,0xeb,0x6e,0x63,0x37,0x3e,0xdd,0x2d, +0xd3,0x3e,0xc3,0x4e,0xe3,0xe0,0xa6,0xc8,0x4d,0x87,0x3e,0x7f, +0xfc,0x00,0x73,0x17,0x7f,0xd3,0x2d,0xe4,0xed,0x77,0xe9,0xad, +0xd6,0xdc,0xe8,0x91,0xe3,0x96,0x7b,0x20,0xbb,0xf5,0x4a,0xfd, +0xcd,0xca,0x9b,0x57,0x12,0x7a,0x93,0x5b,0x92,0x9c,0x9a,0xf9, +0xe9,0x6e,0xf4,0x52,0xeb,0xb1,0xe1,0xc9,0xba,0x7c,0xe3,0x89, +0xf3,0x31,0x17,0xe3,0x5c,0x34,0xad,0xf7,0xd8,0x9b,0xfa,0x25, +0xfb,0x25,0xf9,0x27,0x3a,0x98,0xf1,0xe7,0xcd,0xcf,0xeb,0x9d, +0x35,0xf4,0x72,0xf3,0x72,0xf7,0xf4,0x9c,0x7d,0x84,0x8f,0xd9, +0xd7,0x75,0xfc,0xe2,0x89,0x8b,0xd1,0x4a,0x20,0xf6,0x08,0xaf, +0xb3,0xdd,0xd1,0x5d,0xa7,0x5a,0x63,0x39,0xb1,0x46,0x98,0x43, +0x8a,0x8a,0x8f,0x54,0x67,0x67,0x49,0x52,0x7c,0x28,0x24,0x15, +0xbf,0x25,0x05,0x83,0x84,0x9b,0xe2,0x0f,0xb4,0x70,0x84,0x4b, +0x85,0xe3,0x5b,0x79,0x04,0x52,0x49,0x2e,0x4c,0xb3,0x42,0xf5, +0x6a,0xd5,0xab,0x4b,0x57,0x77,0x14,0xf0,0x76,0x4f,0xac,0xfb, +0x8d,0xfb,0x38,0xf8,0x0f,0xec,0x42,0xfe,0xcd,0xbe,0x75,0x3e, +0x15,0x96,0x41,0xbc,0x2c,0x0e,0x6b,0x52,0xf8,0x88,0xa0,0x70, +0xf2,0xa7,0xcd,0x99,0xaf,0xba,0x56,0xf9,0x38,0xfb,0xbe,0x5e, +0x2a,0xef,0xa7,0x71,0x60,0xdf,0x01,0x5d,0x4e,0xfc,0x08,0xde, +0x96,0x6b,0x77,0x43,0x59,0x31,0x1e,0xd2,0xee,0xb4,0x18,0xc7, +0x0f,0x45,0xa6,0xdf,0xdf,0x45,0xe6,0xd7,0x44,0x20,0xd5,0xe4, +0x17,0x10,0xc1,0xb4,0x4f,0x03,0x6c,0x81,0x61,0x53,0x74,0x15, +0x40,0x87,0x4c,0x87,0x56,0xfe,0xde,0xbc,0x7d,0xe9,0x6e,0xa6, +0x7c,0xaf,0x4f,0xb7,0x47,0xdb,0x01,0x12,0xb4,0x8f,0x91,0xed, +0x36,0x63,0x8d,0x5d,0xba,0xb5,0x36,0xfc,0xf5,0x73,0x67,0xfb, +0xcb,0xaf,0x71,0xc2,0x1e,0xd8,0x81,0xb4,0x1e,0xea,0x5e,0xd0, +0xea,0x36,0xd9,0xcf,0x5f,0x50,0x6f,0xd1,0x68,0x5f,0xcd,0x0d, +0x7e,0x74,0x15,0x19,0xe4,0xee,0xc8,0xdf,0x93,0xe1,0x6d,0xc8, +0x5f,0xf6,0xe9,0xf6,0xea,0x74,0xe3,0x06,0xde,0x80,0x4a,0x04, +0x0e,0x4c,0x7e,0x7a,0x4e,0x66,0x66,0x0e,0x57,0x0e,0x0f,0xd8, +0xe8,0xe8,0xe8,0x53,0x27,0xa3,0xdd,0x52,0x78,0xbc,0x2b,0x03, +0xaf,0x6b,0xc0,0x6f,0x3f,0x75,0xaa,0xe6,0xe1,0xfd,0x85,0xf0, +0xa9,0x2d,0x58,0xf8,0x27,0x1a,0xf0,0xbb,0x77,0xce,0xd4,0x81, +0x37,0xed,0xf2,0x4c,0xf9,0xbc,0xd8,0xbc,0xb8,0xbc,0x04,0x0e, +0xb4,0x07,0xb6,0xb3,0x04,0xfa,0x70,0xb4,0x4d,0x7f,0x85,0xc9, +0x52,0xfb,0x3c,0x3d,0xfe,0xcb,0xaa,0x2f,0x5b,0xcf,0x35,0x71, +0xfb,0xc0,0x06,0x9d,0x4e,0xcd,0x4f,0xcb,0x49,0xe7,0xf0,0x39, +0xc6,0xc7,0xdf,0xcb,0xff,0x80,0x3f,0x37,0xc7,0x1c,0xe9,0xc0, +0x67,0x1d,0xc4,0xea,0xe9,0xa0,0x0e,0x9c,0xa6,0xc3,0xc2,0x6d, +0x4b,0xa4,0x09,0x9f,0x75,0x4b,0xe6,0x2f,0x4d,0x13,0xd2,0x18, +0x71,0x0b,0x18,0xa0,0x9e,0xca,0x9a,0xaa,0xfc,0x4a,0x83,0x1c, +0xde,0xd5,0xd1,0xc2,0x5e,0xcb,0x91,0x08,0xef,0x3b,0xa8,0xca, +0xa9,0xda,0xb6,0xd8,0xaa,0xb3,0x88,0x77,0xa8,0xb1,0xa8,0xb0, +0xca,0xe7,0x20,0xcd,0x1d,0xe5,0xd8,0x67,0xd8,0xa7,0x58,0x5f, +0x48,0xe6,0xfd,0xab,0x7d,0xce,0xb8,0x97,0x70,0x50,0x14,0x84, +0x92,0xec,0x62,0x1d,0x4f,0x99,0x5f,0x88,0xe5,0x23,0xeb,0xc2, +0xca,0x03,0x4b,0xe5,0x95,0xf8,0xa6,0xbc,0x12,0x57,0x27,0x50, +0x71,0xb3,0x8a,0x04,0x32,0xad,0xc4,0xda,0xb2,0x4a,0xbc,0x45, +0xaa,0xc4,0x99,0x0a,0x03,0x83,0xe9,0xc8,0xe5,0x8e,0xf6,0x1f, +0x06,0x37,0x4d,0x9c,0xf9,0xfa,0x9d,0x67,0xe7,0x14,0xaa,0x71, +0xb0,0x05,0x17,0xed,0x85,0x22,0x58,0xc3,0xb4,0xf6,0xd7,0x7c, +0x99,0xf1,0x80,0xfc,0x52,0x3e,0x6b,0xcc,0xe7,0x68,0x6e,0xaa, +0xb3,0xe2,0x09,0x5a,0x31,0xd1,0x31,0xdc,0xe0,0x5b,0x3d,0x38, +0x04,0xd7,0xc1,0x32,0x98,0xc5,0x66,0x68,0x2a,0xe0,0x0f,0x98, +0xba,0xac,0xec,0x5a,0x55,0xa1,0x9e,0x3d,0x15,0xa0,0x20,0x7e, +0x8f,0xb7,0xd1,0x32,0x6e,0x4d,0xcb,0x0b,0x3f,0x54,0xc6,0x8d, +0xe8,0x69,0xd7,0xfc,0x43,0x79,0x4a,0x3f,0x26,0x4f,0x21,0xc4, +0x9c,0x9e,0x3d,0xc8,0xe1,0x3a,0x66,0x50,0x0f,0x52,0x48,0x01, +0x7e,0x28,0x2f,0xc0,0x8f,0x69,0x01,0x36,0xf9,0x86,0x9e,0x52, +0xf8,0x0f,0xa8,0x63,0x40,0x77,0x9f,0xbc,0xe0,0x36,0xd0,0x82, +0xeb,0x2b,0x15,0xdc,0x3b,0xf2,0x82,0xfb,0x9c,0x8a,0x39,0x22, +0x45,0x5c,0x12,0x29,0xb8,0xad,0xb2,0x82,0x4b,0x23,0x6e,0xa2, +0x2c,0xe2,0xb6,0x29,0xb7,0xc7,0xca,0xcc,0xa2,0xd2,0xd8,0xaf, +0x29,0x40,0x8f,0x84,0x95,0x4b,0x88,0xfa,0xcb,0x94,0xf9,0xe7, +0x8d,0x23,0xea,0xcf,0x63,0xa6,0xc1,0x5c,0xb5,0xb5,0x15,0x23, +0xea,0xef,0x4f,0xbc,0x11,0x6d,0x60,0x4a,0x2b,0x9d,0x0a,0x6c, +0x73,0xad,0xb2,0x94,0x1c,0x6c,0x6a,0x3c,0xcf,0x78,0x14,0xbb, +0x2b,0xc1,0x0c,0x3c,0x46,0x0b,0xc6,0x80,0xad,0x36,0xb6,0x9d, +0x03,0xea,0x83,0xaa,0x5d,0xf8,0x33,0x3c,0x01,0x42,0x3b,0x71, +0x28,0x56,0x85,0xdd,0x0b,0xe8,0x9b,0x63,0x37,0x99,0xfa,0x8c, +0xf4,0x06,0x55,0xe1,0x0e,0xe8,0xff,0x88,0x3d,0xd8,0xc1,0xb7, +0xea,0x08,0xdd,0xc9,0xc4,0xdf,0x24,0x26,0x5b,0x26,0xfe,0x0c, +0x28,0x36,0x13,0xbe,0x24,0xa6,0x91,0xa8,0xb9,0x09,0xcf,0x68, +0x17,0xfb,0xc2,0x7e,0x04,0x13,0xf0,0x58,0x3c,0x81,0xe9,0x84, +0xb1,0x88,0x7c,0xa1,0x0a,0x63,0xd9,0xc1,0xfd,0xb0,0x88,0xc0, +0xf4,0x25,0x81,0x87,0x7c,0x70,0xf2,0x33,0x0a,0xd3,0x96,0x3f, +0x11,0xed,0xdd,0x12,0xbd,0x84,0xd5,0xf1,0xfb,0x88,0x7c,0xee, +0x7d,0x50,0x65,0xc4,0x7f,0x6c,0x27,0x90,0xbd,0x20,0xfc,0x6e, +0xbe,0x28,0xfc,0xa8,0x46,0x89,0x94,0x0b,0x3f,0x09,0xb2,0x10, +0x42,0x8e,0x7e,0x7f,0xa3,0x51,0x1e,0x51,0xcc,0x0a,0x85,0x55, +0x6a,0x4c,0x7a,0x59,0x5a,0x75,0x02,0x65,0xc7,0x69,0x6c,0x0c, +0x09,0xaa,0xe8,0x5c,0xfd,0x18,0xde,0x67,0xa6,0xd5,0x3c,0x8d, +0xb5,0x15,0xf6,0xfc,0xc9,0xe8,0x13,0xd1,0x27,0x4f,0x72,0x42, +0x38,0x28,0xa3,0xc3,0x3f,0xe0,0x31,0x9d,0x30,0x06,0xaf,0x65, +0x2a,0x92,0xcf,0xa4,0x95,0x66,0x38,0x37,0xf1,0x5b,0xad,0xe7, +0xd8,0x2d,0xf2,0x4d,0xd7,0xe7,0xcb,0x62,0xcf,0xc4,0x9d,0x49, +0x24,0xf5,0x13,0xc6,0x6b,0x63,0x8e,0x8d,0x5c,0x68,0x05,0x13, +0x17,0x03,0x53,0xb0,0x93,0xbf,0xf3,0x5d,0x21,0x56,0x88,0xf9, +0x86,0x3b,0x25,0x7a,0x75,0x0a,0x06,0x4c,0xcc,0x89,0x63,0x27, +0x22,0x55,0xee,0xc1,0xc6,0xaa,0xfa,0xb5,0x78,0x65,0x44,0x4a, +0x78,0x6c,0x70,0x88,0x12,0x2e,0x16,0xd7,0x20,0x50,0x64,0xd2, +0xf6,0x28,0xe0,0xd7,0x98,0x86,0xd4,0xb4,0x46,0xd5,0x81,0x6b, +0x5a,0x2c,0xcc,0x35,0x47,0x83,0xf3,0x3b,0x07,0xe6,0xb3,0x62, +0xa4,0x1a,0x0a,0x73,0x09,0xb0,0xf2,0x21,0x38,0xbf,0xc6,0xa4, +0x97,0xa4,0x96,0x27,0x57,0x70,0xd6,0xb4,0xac,0x28,0x5d,0x26, +0x1a,0xa6,0x91,0x68,0x99,0xab,0xe4,0x09,0x5b,0xe9,0x51,0x97, +0x53,0x2f,0x13,0x25,0x42,0xfe,0x6a,0xea,0x55,0xf2,0x3c,0xb6, +0x02,0xa5,0x5a,0xa5,0x9a,0x24,0x1a,0xd6,0xa6,0xf2,0x41,0x2d, +0xfe,0x0d,0x7e,0x04,0xb9,0x5c,0x12,0x6c,0xa5,0xbd,0xb9,0x8f, +0xe2,0xef,0x99,0xc6,0xf3,0xa1,0x9b,0xbd,0xd4,0x1c,0xd5,0xe9, +0x45,0x3b,0x9a,0x28,0x59,0x2f,0x41,0x2b,0x6e,0x47,0x63,0x12, +0x1f,0x76,0x31,0xf8,0x5c,0xe0,0x59,0x0e,0xde,0x0a,0x44,0x31, +0x04,0xb9,0xad,0xca,0xcd,0xa4,0xac,0x1c,0xba,0x76,0x90,0x28, +0x92,0x7f,0x69,0x0b,0xdb,0x50,0x27,0xf4,0x10,0x6b,0x15,0x9f, +0x1f,0x7b,0x5a,0x3b,0x99,0x0f,0x73,0x0a,0xdb,0x1f,0xe2,0xc2, +0x81,0xaa,0x36,0x66,0x19,0x9b,0x35,0x06,0x5b,0xd5,0xb6,0x73, +0xc2,0x47,0xcb,0xd9,0xff,0x9d,0xf8,0x13,0xdf,0xc4,0xfd,0x79, +0x6c,0x99,0x79,0x4e,0x56,0x46,0x56,0x7a,0xb6,0x12,0x64,0x76, +0xe3,0x46,0x3c,0x16,0xbe,0x3d,0x87,0xbf,0xc5,0x3c,0xb8,0x2f, +0x60,0xd3,0xf6,0x29,0xf4,0x31,0xf5,0xe9,0x24,0xde,0x70,0x2e, +0xec,0xbb,0xb7,0x6f,0x0d,0xbc,0xcd,0x66,0x16,0xe5,0xd4,0xe4, +0xb6,0x72,0xb0,0xe8,0x37,0xf4,0x7d,0xd1,0xc3,0x8a,0xfe,0xa6, +0xf3,0x76,0xdd,0x36,0x2d,0xb6,0xe5,0x8d,0xbc,0x69,0x89,0x5e, +0x99,0x76,0x69,0x4b,0x79,0x7d,0x4d,0x6d,0x83,0x59,0x25,0x6f, +0x66,0x68,0x64,0xa1,0x6b,0xbb,0xad,0x72,0x4b,0xf9,0xee,0x3c, +0x67,0x33,0xbe,0xc7,0xe3,0x82,0x73,0x8f,0xe3,0x1e,0xdb,0xcd, +0xce,0x2b,0xdd,0x49,0x12,0x61,0xf4,0xb2,0x64,0x34,0xa2,0x16, +0xf6,0x39,0x6d,0x08,0xce,0x74,0x4b,0xdd,0x73,0x0a,0x2f,0x62, +0x19,0x4a,0x97,0x14,0x5e,0x3d,0x29,0xd3,0xc4,0xb7,0x52,0x85, +0x77,0x85,0x2a,0xbc,0xde,0x82,0xc7,0x89,0xf7,0x8d,0xa8,0xc2, +0x73,0x97,0x14,0x5e,0x18,0x55,0x78,0x3a,0xa4,0x4c,0xef,0x68, +0x21,0x65,0xba,0x37,0xa0,0x87,0xaa,0xe5,0x09,0xc4,0xb7,0xee, +0x8a,0x56,0x3b,0xb6,0xf5,0x6c,0x0c,0x7f,0x94,0xf8,0xd6,0xd0, +0x2b,0x94,0xde,0xfe,0x8f,0xbc,0xdb,0xd6,0x54,0x14,0x94,0x18, +0x98,0x18,0x90,0x78,0xad,0xfe,0xd2,0xf9,0x9a,0x36,0xae,0x4e, +0x5c,0xa3,0x83,0x7f,0x66,0x1d,0x6c,0x4d,0xac,0xf7,0xd9,0x5a, +0x17,0x5a,0x14,0x58,0x67,0x3b,0x59,0xf1,0x9d,0xce,0x5d,0x36, +0xad,0x36,0x1c,0x38,0x0f,0x7e,0xdc,0x85,0x8f,0x0d,0x65,0xf1, +0x14,0xd8,0x33,0x97,0x49,0xd3,0x55,0xb8,0xc5,0x34,0xa6,0xa4, +0x36,0xa9,0x0a,0xfd,0xac,0xf8,0x35,0x9e,0xfe,0xb2,0x7d,0xd3, +0x97,0x2a,0xed,0x68,0x8b,0x86,0xcf,0x3a,0xd1,0x0c,0x7e,0x5b, +0xca,0xe0,0xb7,0xe9,0x35,0x75,0x53,0xc8,0x64,0x0c,0xda,0xc3, +0xc2,0x17,0x8d,0xdb,0xea,0xdf,0x9f,0xcf,0xe0,0x29,0xe4,0xeb, +0x29,0x0c,0xfc,0x7b,0xc7,0xcb,0xa4,0x77,0x57,0xca,0xe0,0xd3, +0x24,0x83,0x0d,0x47,0x48,0x2f,0x6a,0xd8,0xba,0x49,0x19,0x3c, +0xca,0xba,0x45,0x3f,0xdf,0x22,0xfb,0x9e,0x66,0xf0,0x8d,0xa1, +0xb2,0x20,0xe1,0xb6,0xfa,0x15,0x65,0xe1,0x54,0x0c,0xed,0x6e, +0x70,0x82,0x03,0x91,0xa3,0x59,0x85,0xe9,0xf4,0x22,0x77,0x7c, +0x06,0x3f,0x10,0x97,0xc2,0x83,0x3b,0x8c,0xab,0xba,0x99,0xb6, +0x8e,0x45,0xa1,0x09,0x9f,0x9d,0x9e,0x95,0x91,0x9e,0xc5,0xfd, +0xc0,0x58,0x2e,0xd5,0xda,0xb6,0x70,0x67,0x99,0x09,0xff,0xc3, +0x8d,0xab,0x5f,0x36,0xff,0x45,0x0c,0x96,0x35,0x7c,0xb4,0x19, +0xde,0x82,0xb1,0x9f,0x94,0x9b,0xf1,0x18,0xfd,0x72,0x1f,0x7f, +0x58,0x8f,0x97,0x73,0x67,0x99,0xa3,0xc0,0x1e,0x9a,0x1f,0xb6, +0x87,0xd3,0x0b,0xf7,0x0f,0x34,0x9e,0xb8,0x9e,0x49,0xd3,0x21, +0xd1,0x7a,0xbb,0xf8,0xf4,0xdd,0x78,0xd5,0xc4,0x3b,0xd1,0xdf, +0x1c,0xc7,0xab,0xb9,0xe5,0xc2,0x3b,0x68,0x21,0x74,0x3f,0x63, +0xc1,0xc5,0x6a,0xb8,0x86,0x28,0x0d,0x5b,0x41,0x95,0x39,0x68, +0x2e,0x74,0xff,0xc0,0x8a,0x2a,0xb0,0xf7,0x85,0x6a,0x02,0xfb, +0x25,0x0f,0x37,0xba,0x84,0x04,0xbd,0x42,0x20,0x76,0x4b,0x02, +0x31,0xff,0x51,0xe2,0x5d,0xc9,0xa7,0x79,0x6c,0xb4,0x27,0x08, +0xfa,0x53,0x04,0xf5,0x12,0x9f,0x17,0x88,0x1f,0x52,0x81,0x48, +0x11,0x3c,0x2b,0xe3,0x40,0x62,0x7e,0x65,0x85,0xf5,0xbe,0xb0, +0x72,0x19,0x93,0x41,0xea,0x86,0x84,0xe0,0xba,0xd1,0x75,0xc3, +0x70,0xee,0x26,0x59,0xdd,0x90,0xba,0x43,0x03,0xed,0x62,0x2b, +0x5a,0xc3,0xb8,0x84,0xc7,0x14,0xab,0xe2,0x32,0xfc,0xb1,0x60, +0x0a,0xfb,0xb5,0xf1,0x42,0x98,0x04,0xf3,0x74,0xf0,0x3c,0x98, +0x0f,0x5f,0xe1,0xf9,0x78,0x4a,0x07,0x4c,0xc1,0x3c,0xdb,0x93, +0xde,0x92,0x5d,0x93,0x6f,0xd7,0xc4,0x5b,0xb8,0xea,0x7a,0xae, +0xf7,0xe1,0xc4,0x1d,0x7f,0xb0,0x51,0xb0,0xc1,0x6c,0x11,0x28, +0x2c,0xa9,0x36,0xe4,0xf1,0x87,0xdf,0x35,0xe3,0x77,0x8e,0xe1, +0x5d,0xdc,0xd7,0xa4,0x20,0x6e,0xcf,0xf6,0xe9,0x55,0x79,0xc8, +0x34,0x25,0x11,0x43,0x82,0xe7,0xd1,0x0b,0xea,0xc5,0x3b,0x02, +0xad,0x2b,0x7e,0x52,0x54,0xaa,0x90,0xba,0x92,0x41,0xa3,0xd2, +0x50,0xaa,0x2b,0x8f,0xe5,0x75,0xe5,0x2b,0xda,0x94,0x74,0x97, +0x50,0x7a,0x2c,0xaf,0x20,0x5f,0x91,0xe7,0xb2,0x31,0xaf,0x08, +0x33,0x5a,0x5b,0xff,0x6f,0xc3,0xec,0x5b,0x0a,0x52,0xaf,0xb0, +0x72,0x15,0x29,0x14,0xf2,0x3e,0xc0,0xf2,0x11,0x7b,0xe1,0x39, +0xd3,0x64,0xee,0xd6,0xb5,0x95,0xb6,0xfc,0xa9,0x53,0xd1,0x31, +0xa7,0x62,0x38,0x61,0x2c,0x3e,0x81,0xc4,0x37,0x85,0x5d,0xc2, +0x9b,0xec,0x3e,0x92,0x1c,0x70,0xfb,0x4f,0x7c,0x9b,0x11,0xcb, +0xed,0x50,0x98,0xb3,0xaf,0xe4,0x0a,0x10,0x91,0xe3,0xd2,0xf4, +0xe3,0x6f,0xe8,0xc2,0xfa,0x6d,0x78,0x1d,0xc8,0x07,0x10,0xe1, +0x00,0xc9,0x19,0xd0,0x00,0xf8,0x82,0x76,0xcf,0xf6,0xd0,0xd7, +0x7b,0x94,0xda,0x40,0x09,0x7f,0xa0,0x29,0xbe,0xcb,0xb8,0x1d, +0x72,0x3f,0xe4,0x7e,0x38,0x49,0x9b,0x7f,0x96,0xf6,0x63,0xfe, +0xbd,0xc2,0xf0,0xb3,0xbc,0x79,0x90,0x71,0x90,0x51,0x08,0x87, +0x07,0xbd,0xd0,0x7c,0x66,0x7f,0x64,0x34,0x99,0x95,0x69,0xec, +0xc5,0x82,0xbe,0xaa,0xc6,0x33,0x2e,0x0d,0xbc,0xcd,0x7e,0x4d, +0x7b,0x1d,0x0f,0x0e,0xcf,0xd2,0x84,0xbf,0xd8,0x6d,0x05,0x81, +0xe7,0x55,0xbe,0x61,0x1a,0x92,0xb2,0x2b,0x54,0x31,0x62,0x0d, +0xb2,0x15,0x06,0x0f,0x7f,0x41,0x80,0xbb,0x27,0x0f,0xaf,0x2f, +0xc8,0x33,0x60,0x39,0xb5,0xae,0xa6,0x49,0x43,0xe1,0x45,0x0b, +0x45,0x33,0x0d,0xaf,0xde,0xbc,0x87,0x09,0xf7,0x4c,0x08,0xb1, +0x6d,0xf6,0x54,0xb3,0x27,0x85,0xc2,0x43,0xf2,0x1f,0x89,0xa4, +0xc4,0x52,0xeb,0x7a,0x29,0xb0,0x9b,0x86,0xd7,0xfb,0xa4,0x50, +0x48,0xfe,0xa3,0x95,0x14,0x8a,0x48,0xc9,0x7f,0x08,0xa2,0xe0, +0x88,0xdc,0xaf,0x3b,0x5c,0x77,0xaf,0x29,0x6a,0x2a,0xbb,0x9e, +0x73,0x45,0x2f,0x85,0xf7,0x56,0x77,0x50,0xb3,0xda,0x73,0x66, +0x4f,0xd9,0xc6,0xbc,0xed,0x1c,0xb6,0xce,0x47,0x07,0xae,0x39, +0x5c,0x76,0xa9,0x2b,0x6d,0x29,0xbe,0x94,0x7b,0x8d,0x08,0x70, +0xaf,0x5d,0x4e,0x5b,0x2d,0x76,0x57,0xed,0x29,0xdf,0x94,0x4f, +0xbe,0x6f,0x9b,0x8f,0x5c,0xaf,0x3b,0xf4,0x3a,0xd7,0x96,0x34, +0x97,0x5e,0xca,0xbf,0xaa,0x97,0xce,0x7b,0xec,0xb2,0xdf,0x6a, +0xb5,0xa7,0x7a,0xf7,0x99,0x4d,0x05,0x3b,0xb8,0xc1,0x02,0x48, +0xf8,0x3f,0x60,0x4e,0x1c,0x8e,0x97,0xfe,0x57,0x54,0x47,0x2f, +0x40,0x6b,0xc5,0xb7,0x0d,0xba,0x85,0x38,0x71,0x9b,0x18,0xc7, +0xc2,0x23,0x7c,0xeb,0x45,0x96,0xab,0x0b,0x45,0x64,0x66,0x66, +0x63,0x25,0xa6,0x8d,0x76,0x14,0x66,0x13,0xa1,0x32,0x9b,0x85, +0xcf,0x0d,0xc8,0x94,0xc1,0x42,0x92,0xe2,0x78,0x0f,0x5e,0x48, +0xd5,0xcb,0x42,0xa2,0x5e,0xe0,0x4f,0xcc,0xbf,0x4a,0xf1,0xbd, +0xa2,0x6f,0xf5,0xdf,0x2a,0x3e,0x61,0xfb,0xc0,0x66,0xa4,0x89, +0xa7,0xc3,0x62,0x98,0xa4,0x85,0x27,0xad,0x63,0xfd,0x3e,0x0b, +0x88,0x0a,0x50,0x31,0xf1,0xd4,0xf4,0x31,0x0c,0x49,0xd9,0xcb, +0xd7,0x25,0x35,0x67,0xd4,0x64,0x07,0xc2,0x38,0xd3,0x1d,0x8b, +0xb6,0x55,0x9b,0xf0,0xf8,0x1f,0xdf,0xb6,0xfd,0x81,0x03,0x94, +0x05,0x1f,0x2d,0x98,0xc9,0x62,0x3b,0xd1,0x01,0xe1,0x5d,0x78, +0x76,0x17,0xcc,0xc6,0x1b,0xf1,0xd2,0x6e,0x58,0x8a,0x67,0x6a, +0xfe,0x7b,0x4a,0x37,0x29,0x5a,0xcb,0xbb,0xd9,0xc1,0x3f,0xcc, +0x10,0xbe,0x44,0x23,0x3e,0xa3,0x2c,0x43,0x16,0xf1,0xcb,0xfe, +0x3e,0xe2,0xb1,0x1b,0x5e,0x3e,0x6c,0x79,0x87,0x83,0xdb,0x58, +0xb2,0xbc,0xa3,0x03,0x1a,0x6c,0xa4,0x5c,0x1d,0x1d,0x72,0x47, +0xfe,0xc6,0xf2,0x96,0x8d,0xb2,0xbc,0x92,0xaa,0x0b,0x90,0x18, +0x6d,0x94,0xe5,0xf5,0xff,0x1b,0x46,0x13,0x76,0x8e,0x9c,0xc6, +0xfd,0xd6,0xe8,0xd3,0xb8,0xb5,0x2e,0x68,0x3f,0x7f,0x1a,0xf7, +0xca,0x43,0x45,0x75,0x45,0x67,0xb3,0x5e,0x3a,0x8d,0x1b,0xbe, +0x17,0x3f,0x43,0xf8,0x8a,0xb0,0x72,0xe5,0x48,0xdf,0x6f,0xc5, +0xf3,0xa3,0xdf,0xb2,0xb6,0xd2,0x66,0x78,0xf4,0x1e,0x78,0xc5, +0xf0,0xe8,0x15,0x87,0x46,0x2f,0x34,0x40,0x0e,0xea,0x89,0xe9, +0x8e,0x6b,0x4b,0x78,0xe1,0x48,0x6f,0x3b,0x5f,0x3e,0xd1,0x27, +0xd9,0x3d,0xf1,0xb9,0x23,0xbd,0x4d,0x93,0xf8,0xa0,0xe7,0x8f, +0xf4,0x76,0x61,0xfc,0xaa,0x3d,0x9a,0x7c,0xca,0x6c,0xfc,0xf8, +0x44,0xef,0x24,0x8f,0x04,0xf7,0x91,0x23,0xbd,0x53,0xea,0x4d, +0x87,0x8f,0xf4,0x8e,0x0a,0x39,0x3a,0xea,0x48,0xef,0xe3,0x91, +0x27,0x22,0x8f,0x47,0xe6,0x25,0xf1,0x2e,0xea,0x3b,0x2c,0x61, +0xb2,0x59,0x26,0x21,0xda,0x69,0x4d,0x4f,0xcf,0x26,0x3f,0xe0, +0x4e,0x31,0xc9,0xab,0x9f,0xe9,0xe3,0xe9,0xda,0x79,0x2d,0xc4, +0x0f,0xd6,0x6f,0x3a,0x43,0x1b,0xb1,0xdf,0x04,0x90,0x29,0xba, +0x2f,0x9f,0x22,0x5a,0x7c,0xc0,0x4e,0x9a,0xa2,0xfb,0xf2,0x29, +0xa2,0xc5,0x47,0x78,0xed,0x77,0xb4,0x53,0x73,0x89,0xd9,0x6c, +0xb7,0x2c,0x53,0xfe,0xfb,0x82,0xaf,0xeb,0x6f,0x5f,0xe6,0xba, +0xec,0xd0,0xea,0x35,0xc0,0x68,0xc0,0x47,0x76,0x39,0xf4,0x35, +0xbc,0x32,0xfc,0xc1,0xc5,0x6f,0x9f,0x72,0xf0,0x0c,0x6e,0x20, +0xbc,0xbb,0x16,0xab,0x3c,0xc0,0x0a,0x78,0x8c,0x75,0x15,0x3f, +0x6d,0x1a,0x28,0xae,0x81,0x3d,0x96,0xf4,0x88,0x12,0x0d,0x2a, +0xe0,0xc9,0x54,0x13,0xd9,0x14,0x20,0x9f,0xea,0x2b,0x32,0xcf, +0x23,0x9b,0x6a,0x9a,0x01,0xb4,0x78,0x85,0x0e,0x4f,0x35,0x91, +0x4d,0x21,0xf2,0xa9,0x9e,0x30,0xd4,0xdd,0x68,0x93,0xba,0x1b, +0x34,0x03,0xee,0x51,0x5a,0xce,0x16,0x56,0x6d,0x96,0xf4,0x7b, +0x3c,0x9d,0xa6,0x49,0x44,0xbf,0x47,0xcb,0xf4,0xbb,0xef,0x4c, +0xeb,0x79,0x7b,0xd7,0x55,0xd8,0xf1,0x09,0x29,0x0a,0xc2,0xe3, +0xdb,0xa8,0x0b,0x14,0xf1,0x3c,0x6d,0x98,0x07,0xe3,0xb5,0x6e, +0x10,0x6f,0x04,0x33,0x83,0x41,0xd9,0x1c,0xde,0x53,0x09,0x69, +0x08,0xac,0x0d,0x28,0xb3,0x0b,0xe6,0x53,0xac,0x52,0x4c,0x13, +0x0d,0x4b,0x92,0xf8,0x83,0x1e,0x61,0x1e,0xa1,0x9e,0x0d,0x36, +0xfc,0x2d,0x3c,0x2f,0x17,0xaf,0x3b,0x41,0x4a,0xfd,0xaf,0x0c, +0x7c,0x7a,0x04,0xde,0x09,0x5d,0xa5,0x62,0x14,0x19,0x1c,0xea, +0x38,0x51,0x9d,0x49,0xd3,0x56,0x68,0x65,0x2e,0x9c,0xce,0xfe, +0x3c,0x4e,0x35,0xf1,0xd1,0x49,0xfc,0xf1,0x31,0x6c,0xc5,0xc1, +0xa7,0x78,0x11,0x83,0x6f,0xe0,0x95,0x28,0x16,0xde,0xa9,0x9e, +0xfd,0x15,0x70,0x67,0xda,0xf9,0xa5,0x78,0x8c,0xcd,0xef,0x01, +0x7f,0x71,0x5b,0x99,0x80,0x49,0xb6,0xf0,0xfa,0x9a,0xc9,0x67, +0x74,0xf9,0xc7,0x98,0x29,0xf9,0x29,0x1e,0xbf,0xcb,0x89,0xd9, +0x1b,0xd1,0x41,0x67,0x49,0xd4,0x4f,0x61,0xd2,0x4b,0x25,0x4d, +0x6f,0x03,0xd5,0x84,0x42,0x2e,0x12,0xed,0xd9,0xa0,0x28,0xd3, +0xf6,0xc2,0xda,0x14,0xd4,0xb6,0xaf,0x6d,0x4b,0xed,0xe6,0xea, +0x3a,0xde,0xe2,0x86,0x5e,0x9f,0x6e,0x37,0x37,0xf8,0x3e,0x90, +0x20,0x9d,0x7a,0x91,0xe8,0x51,0xf2,0x31,0x49,0xef,0x0b,0xef, +0x98,0xa2,0xc7,0xeb,0xfb,0x97,0x5f,0x9b,0x5f,0xd5,0xca,0x6f, +0x7f,0xb6,0xfe,0xcb,0xe5,0x37,0xb8,0x41,0x45,0xb8,0x86,0x4a, +0x2e,0xe7,0x3c,0x8a,0xbb,0x6b,0x16,0xcf,0x87,0x6d,0xf6,0x56, +0x73,0x52,0xa7,0x57,0x6e,0x11,0xa1,0xaf,0x1f,0xaf,0x19,0xb7, +0xb3,0x21,0x51,0x12,0xfa,0x41,0x44,0xe8,0xbf,0x19,0x44,0xf8, +0xfb,0x24,0x41,0xb8,0x29,0x26,0x8a,0xe4,0x52,0x38,0x11,0xfa, +0x5f,0xfd,0xf7,0x0d,0xf0,0x7e,0x98,0x8c,0x0c,0x92,0x14,0xd6, +0x12,0xf6,0x74,0x8b,0x3c,0x95,0xa7,0x7a,0x95,0xc5,0x1f,0x25, +0x1e,0x69,0x01,0xa5,0x50,0x85,0xef,0xb1,0x16,0x1b,0x6e,0x15, +0x6a,0x1f,0x68,0xd3,0xe2,0xcf,0xa7,0x37,0x26,0x35,0xc6,0x35, +0x73,0xb5,0x10,0x7a,0x17,0xdb,0x35,0x83,0xdd,0xcd,0x7d,0x60, +0x08,0x3b,0x60,0x2f,0x0b,0x4e,0x81,0x30,0x5f,0x07,0xde,0x57, +0x69,0xb7,0x53,0x38,0x8f,0x55,0x52,0xf0,0x2a,0xec,0xa5,0x8c, +0x3f,0xc2,0xec,0x2c,0x76,0x41,0xf8,0x09,0x83,0xa7,0xb1,0x0a, +0x9b,0x59,0x9d,0x0c,0xdf,0x6e,0x15,0xac,0xca,0x54,0xa4,0xa4, +0x56,0xa9,0x8a,0xbf,0xe3,0xff,0xbc,0xdc,0x5c,0x37,0x96,0x5c, +0xf9,0xff,0xae,0x17,0x5e,0xee,0x82,0xe0,0x75,0x67,0xb5,0x25, +0x9a,0x2a,0xe5,0xfa,0x0a,0x3f,0x5f,0xad,0xfa,0x12,0x7f,0xac, +0x5c,0xa5,0xc5,0xe2,0x12,0x52,0x4e,0x76,0x33,0x9e,0xe1,0xb1, +0xd9,0xaa,0xd8,0x57,0x1b,0xc2,0x58,0xed,0x4c,0xdf,0x36,0x95, +0x7e,0xa6,0x22,0x35,0xad,0x4a,0x95,0x88,0x1a,0x7a,0x16,0xe3, +0xf5,0x84,0xff,0x3b,0x11,0x16,0xf4,0xb7,0x94,0x25,0xc9,0xd8, +0xbe,0x57,0xc2,0xac,0x4d,0xf9,0x66,0xa8,0xbb,0x91,0xa5,0x20, +0x7c,0x8d,0x4f,0xa2,0xdc,0xf9,0x5f,0xad,0xc4,0xfc,0xc2,0xd2, +0xb3,0x3c,0x28,0x7e,0xb5,0xf6,0x86,0xcd,0x33,0x12,0x5b,0x8e, +0x4b,0x37,0xae,0x82,0x77,0x57,0x97,0x1a,0xf0,0x98,0xbb,0xf7, +0xe4,0xeb,0xbc,0x6f,0x38,0xf8,0xf7,0x22,0x82,0x8e,0x4c,0x70, +0xc8,0x7a,0x16,0x74,0x51,0xe6,0x6d,0x58,0x82,0x70,0x58,0x1b, +0x84,0x31,0xe2,0x2a,0xd8,0x82,0x64,0xbc,0x3c,0x84,0x14,0x1e, +0xd7,0x8e,0xf4,0xf0,0x7d,0xd6,0xcb,0xc2,0x5e,0xcf,0xc9,0xba, +0xce,0x81,0xaf,0x39,0x5b,0x77,0xa5,0xe0,0x1c,0x57,0xcf,0x0e, +0x1e,0x80,0x43,0x48,0xc6,0xd8,0xc3,0x18,0xc6,0x56,0xa2,0x7a, +0xc7,0x4e,0xa3,0x0a,0x8b,0x33,0xb5,0xbc,0x75,0xb5,0x56,0x93, +0x69,0x31,0x97,0x0e,0xf7,0x90,0x4b,0xe4,0xa9,0x42,0x55,0x6c, +0xae,0x0d,0x76,0xac,0x46,0xae,0x77,0x8f,0x0a,0xe6,0x98,0x3a, +0xfa,0xc2,0x27,0x7e,0x83,0x35,0xc8,0x54,0x00,0x65,0x16,0xbe, +0xbf,0x80,0x82,0xea,0xfd,0xab,0xfd,0xca,0xad,0x83,0x78,0xca, +0x08,0x49,0x86,0x25,0x89,0xfc,0xa1,0xd0,0x43,0xa1,0x91,0xa1, +0x2d,0x4e,0x7c,0xd5,0xdd,0xfc,0x27,0x89,0xf7,0x88,0x50,0x38, +0xa8,0x1d,0xb0,0xc7,0x7d,0x2f,0x27,0x4c,0xc4,0xf3,0x50,0xd1, +0xbe,0x92,0x85,0x99,0x6a,0xad,0xf9,0xbc,0xef,0x65,0xfb,0x9f, +0x5c,0xda,0xb9,0xc1,0x0a,0x68,0x93,0x03,0x6e,0x34,0x52,0x23, +0x82,0x5e,0x55,0x23,0xd0,0x28,0xc0,0x65,0x7d,0x51,0xb9,0xf3, +0x6f,0x11,0x56,0xae,0x25,0x80,0xcb,0xfb,0xc5,0x0b,0x08,0x73, +0x50,0x82,0xd7,0x8d,0xe1,0xbd,0x67,0x9a,0xcd,0xdd,0xb9,0xae, +0xc2,0x96,0x4f,0x49,0x57,0x10,0xfe,0x10,0x19,0x04,0xbb,0xf1, +0x24,0xbc,0xb2,0x0b,0x56,0x62,0x25,0xac,0x86,0x1b,0xc0,0xff, +0xdf,0xaf,0x77,0x61,0x63,0xbc,0x9b,0x29,0x1c,0x58,0x89,0xb4, +0xf0,0x32,0xd8,0x06,0xcb,0xb5,0xb0,0x2b,0x3d,0x40,0xf8,0x8a, +0x0e,0xf9,0x34,0xbc,0x8d,0x77,0x93,0x78,0x76,0x24,0xa9,0x2d, +0xab,0x0a,0xef,0x10,0x75,0x92,0x5e,0x9e,0x52,0xc1,0x99,0x4b, +0x35,0xb1,0x9f,0x60,0xdd,0x44,0x30,0xbf,0x4d,0x7b,0x46,0x39, +0xf0,0x18,0x35,0xdf,0x29,0xfe,0x36,0x19,0xbf,0x49,0x7e,0x8d, +0x38,0x6d,0x6c,0xc8,0x86,0xae,0xf4,0xda,0xe4,0xa8,0xee,0xdc, +0xed,0x7d,0x29,0xf0,0x9a,0xa1,0x17,0x9f,0xbe,0xa6,0x40,0xad, +0x62,0xa7,0x8d,0xbe,0xa1,0xb9,0xba,0x63,0xbe,0x21,0x7f,0xa1, +0xec,0x6c,0x6d,0xcd,0xd9,0x32,0xc3,0x6a,0x8b,0x26,0xfb,0xd3, +0xad,0xbc,0x49,0xa9,0x4d,0x8d,0x53,0x33,0x37,0x68,0x83,0xa7, +0x12,0xa7,0xd5,0x0f,0x53,0xe8,0x3f,0x3d,0xe5,0x36,0x6d,0x27, +0x0f,0xc9,0x39,0x89,0x70,0xfd,0xa5,0x40,0x6d,0x95,0xe4,0x5c, +0xbe,0x6c,0x55,0x67,0x48,0xce,0x79,0xbd,0x4a,0xce,0x7d,0xf0, +0xb2,0x9c,0xbb,0x4f,0x61,0xcb,0x13,0x56,0x6d,0x1a,0x69,0x98, +0x4c,0x1d,0xdd,0x30,0xb1,0x9e,0xa7,0x41,0x09,0xf7,0x64,0x34, +0xf9,0x73,0x8a,0x1b,0xf8,0x11,0xdb,0x20,0x8f,0xd3,0xf6,0x45, +0xce,0x19,0x8e,0xf6,0x7c,0xa1,0x4f,0xd9,0x81,0x3c,0x17,0xee, +0xe4,0xa0,0x1b,0x72,0xaa,0x77,0xbf,0xe6,0xf7,0x65,0xcb,0xef, +0x67,0xf0,0xfb,0x05,0x78,0x8e,0x7e,0x32,0xef,0x0b,0x8c,0xfb, +0x2c,0xa7,0x65,0x81,0xf8,0xf5,0x08,0xfc,0x61,0x14,0x9e,0xcc, +0xe1,0xd5,0x1d,0xb0,0x1a,0x73,0x3a,0x40,0x2b,0xc4,0x5a,0x06, +0x6a,0x82,0xe0,0x53,0x6d,0xf8,0x58,0xa5,0xd9,0x5c,0xa1,0x17, +0xcf,0x4f,0xc4,0x9b,0x70,0x8b,0x32,0x66,0x70,0x02,0x7b,0x0c, +0xb6,0x24,0xc0,0xb2,0x3c,0x50,0x34,0x9e,0xaf,0xb1,0x61,0xbd, +0x7a,0x99,0x29,0x7f,0xa5,0xb3,0xf3,0x72,0xc3,0xdd,0xf4,0xed, +0x39,0x3a,0x85,0xd6,0xc5,0x16,0xdd,0xf1,0x27,0x3b,0x53,0xb0, +0x35,0x6f,0x98,0xa5,0x30,0xa8,0x22,0x1c,0x1f,0xe2,0xda,0x49, +0x43,0x5c,0x8b,0x7f,0x07,0x45,0x12,0xf2,0xea,0x6d,0x74,0xef, +0x2b,0x51,0x6b,0x4a,0xbd,0xf2,0x56,0xca,0x15,0xba,0x2c,0xe4, +0x91,0x87,0xc4,0x19,0xad,0x57,0xf1,0x58,0xfc,0x15,0x0b,0x63, +0xa9,0x4a,0x0c,0xbe,0x01,0xc1,0xac,0x98,0x76,0x9d,0x30,0x6f, +0xaf,0xbc,0xc3,0x72,0x85,0x3c,0xc3,0x68,0x87,0x85,0x56,0x8f, +0x9a,0x54,0x3e,0xa8,0x39,0xa0,0xd1,0xbf,0x82,0x83,0x44,0x82, +0x34,0x25,0xde,0x78,0x4a,0xbc,0xa1,0x9b,0x7d,0xa4,0x0e,0x8b, +0x21,0x41,0x30,0x49,0xea,0xb0,0x34,0x90,0x3a,0x73,0x31,0x48, +0x22,0xde,0x31,0xa3,0x89,0x57,0xd6,0x61,0x19,0xb0,0x1e,0x38, +0x85,0xe2,0x72,0xe2,0xf2,0x4e,0xe5,0xed,0x8d,0xe3,0x23,0x3d, +0xc2,0x9c,0x43,0x5d,0x39,0x58,0x04,0xbf,0x0a,0x4b,0xf0,0xaf, +0xcc,0xe0,0x45,0x91,0x94,0xd9,0x9f,0xa4,0xbe,0x7e,0x59,0x56, +0xcd,0x50,0x5f,0x3f,0x37,0x36,0xf7,0x95,0x7d,0x7d,0x62,0xfe, +0x97,0x4a,0xad,0x74,0xba,0x11,0x62,0x26,0x93,0x23,0xdb,0xd5, +0x82,0x07,0xe6,0xa2,0x6f,0xf1,0xd9,0xf9,0x2c,0x9c,0x25,0xf2, +0xf5,0x47,0x7c,0x76,0x0e,0x3b,0x68,0x60,0x8d,0x64,0xab,0xd7, +0x2d,0xcf,0x77,0xd7,0xbf,0x93,0xeb,0x5e,0xda,0x5d,0xc7,0xbf, +0xc2,0x7b,0xa4,0xc6,0xb7,0x93,0xa4,0x78,0x03,0x5b,0x76,0x88, +0x96,0x3a,0x58,0x1f,0xde,0x80,0x1d,0xba,0x78,0x07,0x30,0xe0, +0xa2,0x2d,0x44,0x75,0x82,0x27,0x15,0xbc,0x73,0x5f,0x5e,0xe1, +0xfe,0x4e,0xbe,0xc2,0x4d,0x6c,0x18,0x6d,0xaa,0xcb,0x96,0x7b, +0xe2,0x87,0x56,0xb8,0x65,0x4d,0xf5,0x17,0x57,0xb8,0x47,0x9a, +0xea,0x3f,0xd2,0xf0,0xbb,0xf7,0x4a,0xaf,0xaa,0xfd,0xb2,0x57, +0x15,0x54,0xa9,0x0d,0x9b,0x2d,0x2c,0x13,0x88,0x2a,0x3f,0x08, +0x1b,0x11,0x7c,0x80,0xdf,0xc7,0x1f,0x30,0x1d,0xb2,0xdd,0xa1, +0x88,0xde,0xe1,0x94,0xfd,0x98,0xe0,0x22,0xb3,0x98,0x1f,0x13, +0x8a,0xcc,0x94,0x84,0x9b,0x0b,0xdd,0xf8,0xac,0x44,0x3e,0x4d, +0x22,0x60,0x9b,0x22,0xa6,0x5f,0x23,0x46,0xbc,0xe5,0x47,0x8c, +0xe7,0x13,0x62,0x38,0x9b,0x9f,0x37,0x9e,0x4f,0xe4,0x94,0x48, +0x8d,0x27,0x2e,0xfa,0x0d,0x35,0xd8,0x34,0xeb,0x54,0xea,0x95, +0xd7,0xf0,0x96,0x1d,0x46,0xad,0xa6,0x04,0xe6,0x15,0x33,0x51, +0xd1,0xd2,0x02,0x78,0x3d,0x75,0x49,0x53,0x26,0x1f,0xf8,0xd4, +0xf5,0xcf,0xfd,0x4f,0x38,0xd0,0x86,0x6e,0xe4,0x14,0x1e,0x5d, +0xaa,0x8a,0x93,0x75,0x20,0x93,0xdd,0x93,0xeb,0x79,0x49,0xe5, +0x27,0xa6,0x3a,0x39,0x99,0xd8,0x5f,0x55,0xd6,0x38,0x55,0x01, +0x16,0xb3,0x50,0x7b,0x18,0x95,0x3c,0x4c,0xff,0x33,0xee,0x67, +0x83,0x78,0x3e,0x7c,0x8e,0xcf,0x34,0xd7,0x4d,0xdc,0x27,0x58, +0x45,0xea,0x82,0xca,0x6d,0x84,0xac,0x0b,0xda,0xff,0x62,0xe3, +0x78,0xa4,0x0b,0xfa,0xc2,0x4a,0xad,0xf2,0x90,0x8d,0x18,0x11, +0x51,0x52,0xe3,0xf8,0x73,0x61,0xe5,0xf2,0x11,0x50,0xd7,0x8e, +0x80,0xea,0x3e,0xd3,0x68,0xee,0x66,0x0a,0xea,0x50,0x0b,0x25, +0x8a,0x80,0xaa,0x87,0x77,0xb0,0x05,0x6b,0x5a,0xd7,0xde,0xdc, +0x5a,0xde,0xc2,0x6f,0xbd,0x62,0x71,0xc9,0xee,0x17,0x0e,0x72, +0x8c,0x91,0xc7,0x66,0xdb,0x9d,0x5a,0xda,0x75,0x16,0xfc,0xa5, +0x6b,0x95,0x37,0xf2,0x3e,0xe7,0x20,0xd7,0x63,0xd8,0xc1,0x7f, +0x24,0x39,0x78,0xda,0xf1,0x78,0x1f,0x94,0x50,0x2b,0x14,0x19, +0x9c,0x9b,0x01,0x8a,0x62,0x7b,0xfb,0x45,0x7c,0x79,0x4f,0xbb, +0xd0,0x0e,0xfc,0xaf,0xac,0x91,0xe2,0x0c,0xf5,0x5f,0x59,0x31, +0x0e,0xe6,0x11,0xa8,0x1f,0x8d,0x82,0x1a,0x1f,0x3d,0x8e,0x8e, +0x6c,0xf4,0xd1,0xd3,0x35,0x2d,0x32,0xe3,0x7b,0x2f,0xe4,0xf7, +0x9e,0x78,0xc6,0x5d,0x98,0xcd,0x68,0x67,0x84,0xb4,0xa8,0xf4, +0xac,0x82,0xcb,0x38,0x8a,0xc1,0xe9,0xc4,0x49,0xbb,0x1e,0x3e, +0x59,0xa0,0xfa,0xec,0x1e,0xdd,0xa5,0xbe,0x97,0xd4,0x36,0xa9, +0x4c,0x0d,0xcd,0x4d,0x00,0x35,0x1a,0xe9,0x23,0x64,0x48,0x81, +0x3b,0x3f,0x5c,0xb5,0x5f,0x2a,0x22,0x89,0x24,0x1c,0xff,0xe7, +0x22,0x82,0xcf,0x05,0x23,0x7c,0x79,0x16,0x5c,0x66,0x64,0xfd, +0x81,0xcb,0xcf,0xf9,0x85,0xe5,0xa3,0x65,0x92,0xe4,0x96,0x86, +0xfd,0xc2,0xc0,0x6f,0x30,0x0e,0xb5,0x11,0x7e,0x0e,0x2e,0x0c, +0x2d,0x8a,0x28,0xe6,0xf0,0xbc,0xb3,0x10,0xc9,0xc4,0x14,0x44, +0x17,0x46,0x17,0x72,0xf8,0x60,0x3b,0x04,0x30,0x27,0xf2,0x8e, +0xe7,0x1d,0xcf,0xd7,0x8e,0xe6,0x8f,0xba,0x1e,0x39,0x70,0xc4, +0x8d,0x03,0x1d,0x5d,0xac,0xce,0x1c,0x72,0x39,0xe4,0x12,0x71, +0x80,0x83,0xc5,0xfa,0x78,0x06,0x73,0xd0,0x29,0xcc,0x39,0x98, +0x70,0xc2,0x74,0x3d,0xfc,0x0e,0xe3,0xb8,0xc7,0x4c,0x47,0xcb, +0xa4,0xdc,0x98,0xcf,0xcf,0xc9,0xcd,0xcb,0x2e,0xe0,0xc4,0x37, +0xbb,0xdb,0xb0,0xa3,0x5e,0x37,0xfe,0x0f,0x9b,0xe1,0x99,0xe1, +0x95,0xe9,0x5b,0xda,0xc4,0x9b,0xd4,0x5b,0xb4,0x3b,0x9e,0xe3, +0xc4,0x4c,0x5c,0xf7,0x9c,0x57,0x93,0x96,0x27,0x85,0x12,0x98, +0x85,0x62,0xf6,0xc7,0x3b,0x27,0xb8,0x10,0x21,0x9a,0x58,0x18, +0x5f,0x14,0x57,0xcc,0x89,0x25,0xa0,0x32,0xca,0xc1,0x51,0x7b, +0x80,0x5d,0xe7,0xa3,0x8c,0xd3,0xe9,0x45,0x29,0xf4,0xd7,0x66, +0x52,0xf7,0xa7,0x3b,0x67,0xb8,0x72,0x83,0x6a,0x73,0x47,0xb9, +0x3a,0x6a,0x19,0xf0,0x21,0x5d,0xc2,0x28,0x8e,0x73,0x58,0x51, +0xc7,0xe9,0x6f,0x77,0x16,0x8c,0x88,0xfe,0xa1,0x9d,0x05,0x32, +0xdb,0xfb,0x3f,0xef,0x2c,0xc0,0x83,0x04,0x76,0xc7,0xc9,0xe0, +0xc8,0xc8,0x42,0xb7,0x53,0x58,0xb9,0x86,0x94,0xa3,0x8c,0x57, +0xac,0xfa,0x9a,0xc9,0x56,0x7d,0x53,0x33,0x14,0x06,0x30,0xdc, +0x44,0x9d,0x10,0xf2,0x07,0xf6,0x6e,0x17,0xa7,0x61,0xdf,0x7f, +0xc2,0x3c,0xe2,0x59,0xe7,0x3d,0x6b,0x5f,0x88,0x5f,0xd3,0x85, +0xd7,0x80,0x95,0x1e,0xd3,0xf0,0x6b,0xda,0xf0,0xda,0x3a,0xdd, +0xcf,0xa1,0x0c,0xaf,0x9b,0x02,0x3e,0xda,0xd8,0x9a,0x75,0x52, +0x5b,0xb0,0x01,0xde,0xd9,0x5d,0xa8,0x47,0x4c,0xce,0xd5,0xef, +0xbe,0x88,0xfd,0x9a,0x8b,0x81,0xca,0x1e,0x5c,0x75,0x8a,0x89, +0x59,0xf0,0xdd,0x16,0x3c,0x7e,0x7d,0x61,0x3b,0x0f,0xff,0xb8, +0xf6,0xe9,0x35,0x87,0x1b,0x9c,0xb8,0x43,0xf0,0x41,0x61,0x2f, +0xae,0xfc,0x0e,0xbc,0x0b,0xd3,0x11,0xb0,0xff,0xc4,0x2c,0x33, +0xb8,0x0a,0x8e,0x20,0x59,0xd9,0xa7,0x80,0xde,0xa5,0xe2,0xd4, +0x44,0x5a,0x05,0xbe,0x2d,0x5f,0x05,0xbe,0x4b,0x9e,0xa1,0xb4, +0x6c,0xa7,0x0e,0x75,0x61,0x64,0x65,0xbb,0x46,0x6a,0xd7,0xe7, +0x93,0x62,0x62,0x92,0x40,0x8a,0x89,0xa7,0x9a,0x03,0x29,0x26, +0x2e,0xc3,0x65,0xbb,0x29,0x89,0x0f,0x93,0x97,0xed,0xb1,0xb4, +0x6c,0x53,0xc8,0x5a,0x68,0xa4,0x46,0x5e,0x3b,0x28,0xe9,0x4b, +0x2d,0x84,0x7f,0xa0,0xdb,0xa2,0x32,0xcb,0xb2,0x65,0x40,0x6d, +0x63,0x63,0xa5,0x72,0xa1,0x25,0x2b,0x17,0x23,0xdb,0xa2,0x62, +0xb9,0x81,0x41,0xf1,0x16,0x52,0xcb,0xdc,0x99,0xaf,0x5d,0xd4, +0x5b,0xdf,0xd6,0x56,0xda,0xc3,0xd5,0x40,0x31,0x9b,0x95,0x9f, +0x56,0x90,0x9c,0xcf,0x11,0x95,0x73,0x19,0x80,0x49,0xce,0x49, +0xca,0x4d,0xcc,0xe5,0xf0,0xbf,0xba,0xe0,0x29,0x43,0x22,0x3d, +0xfb,0x64,0xa6,0x66,0x3c,0x1f,0xb4,0xc5,0x7c,0xe6,0xf6,0xed, +0x55,0xe6,0x7c,0x52,0x52,0x52,0x72,0x62,0x2a,0x07,0x45,0xbf, +0xb1,0x96,0x5b,0x37,0x6f,0x5c,0x6e,0x58,0x68,0xcc,0x17,0x67, +0x14,0xe7,0x16,0xe5,0x17,0xda,0x54,0xd8,0x35,0xec,0xdf,0xee, +0xb0,0xce,0x6d,0x89,0x6f,0x86,0x01,0xff,0x7d,0xd6,0xb3,0x92, +0xcf,0xeb,0x7a,0x6d,0x3e,0x77,0x7c,0xe2,0xce,0x89,0xbf,0x0f, +0x94,0x0e,0x6f,0xad,0x92,0xd5,0x29,0xba,0x61,0x6f,0x3a,0x49, +0x97,0xb5,0x90,0x71,0x97,0x15,0x35,0xe8,0x62,0xd1,0xf0,0x2e, +0x2b,0x5a,0x9f,0x84,0xfd,0x45,0x68,0x39,0x64,0x3c,0xa2,0xdf, +0x73,0x1d,0xb5,0xc5,0x4a,0x5a,0x06,0xb6,0x31,0x45,0xce,0x16, +0x16,0xd6,0x3a,0x0e,0xba,0xe5,0x16,0xd5,0xae,0xd5,0x1c,0x1c, +0xb6,0x7c,0x39,0x18,0x6f,0xbc,0x6a,0x09,0x29,0xe2,0x55,0x7b, +0x87,0x48,0x30,0xc6,0xbe,0x40,0x9e,0x52,0xe2,0xff,0xd7,0x8d, +0x82,0x81,0x1b,0xd0,0x80,0xf0,0x2f,0x60,0xf4,0x0c,0x07,0xb4, +0x41,0xc0,0x33,0xad,0x85,0xe0,0xa1,0x87,0x3d,0x16,0x82,0x2e, +0xfc,0x82,0x37,0xb0,0x0e,0xab,0xd7,0x2f,0x81,0xd7,0xd6,0x94, +0x9b,0xf0,0xff,0xbc,0x7b,0xff,0xdb,0xb4,0x6f,0xb9,0x53,0xd0, +0xdb,0x89,0x7b,0x4f,0x31,0xa9,0x9f,0xde,0x5a,0x80,0xdf,0x58, +0x5e,0xd6,0xc4,0xc3,0x9b,0x0f,0xd5,0x1e,0x3b,0xde,0xe7,0xc4, +0x4d,0x82,0xf1,0xcb,0x2d,0x07,0x59,0xc3,0x65,0xb4,0x9b,0xc7, +0xd7,0xe8,0x9d,0xe3,0x51,0x30,0x0d,0x47,0xb1,0xd8,0x80,0x8c, +0x14,0x47,0xe1,0x69,0x10,0xc5,0xc2,0x0d,0x62,0xc6,0xb3,0x4d, +0xd3,0x0d,0x52,0xb5,0xe8,0x9a,0x50,0x97,0x4f,0x9b,0x57,0x03, +0x87,0x75,0x61,0x3d,0xca,0x6f,0x4d,0xef,0x48,0xec,0x30,0x25, +0xa3,0xd6,0xf5,0xd3,0xf3,0x30,0xe6,0xc4,0x1f,0x68,0xb5,0x7f, +0xae,0x1f,0x10,0x2c,0x6b,0xd9,0x3c,0x17,0x9f,0x6d,0x52,0xcb, +0x26,0xff,0x91,0xbc,0x4b,0x28,0xf3,0x3f,0xde,0x32,0x26,0x7d, +0x5e,0x56,0x8e,0x93,0x31,0xe9,0xe8,0x5d,0x0a,0x8f,0xff,0x6b, +0x1f,0x3f,0xf0,0x0c,0x9b,0x21,0xf7,0x22,0xc7,0x62,0xd7,0x4c, +0x7b,0x07,0xbe,0xd0,0xab,0x74,0x7f,0xf6,0x01,0x2e,0x7a,0xd0, +0x11,0x39,0x37,0x78,0x9c,0xf7,0xbf,0xd3,0x86,0x5f,0x2f,0xc7, +0x8a,0x79,0x78,0x3e,0xd1,0x94,0x7e,0xf0,0x9e,0xfb,0x54,0x87, +0x85,0x81,0xf8,0xb5,0x08,0xcc,0x47,0xe1,0xa5,0x1c,0x5e,0xd9, +0x4e,0x04,0x3c,0xa3,0x4b,0x44,0xca,0x5d,0xd8,0xc4,0x40,0x63, +0x20,0x2c,0xd2,0x03,0xa4,0xd2,0x64,0xad,0x70,0x01,0xcf,0x4b, +0xc4,0x1b,0xa9,0xa6,0x7c,0x07,0xe7,0x11,0x4d,0xa9,0x1b,0x0f, +0x2b,0x0b,0x00,0x59,0xac,0xd4,0xd9,0xba,0x75,0x6f,0x99,0x19, +0xdf,0xd3,0xd6,0x72,0xbe,0xfa,0x7a,0xda,0xde,0x6c,0xa3,0x02, +0x9b,0x62,0x93,0xae,0xf8,0x93,0xe7,0xd2,0x88,0xa6,0x34,0x20, +0x9a,0x92,0x1f,0xd1,0x94,0xc3,0xfe,0x5d,0xc8,0x16,0x07,0x91, +0x7f,0x86,0x7f,0xba,0x5f,0x6a,0x79,0x7f,0xe6,0xfd,0x53,0x5f, +0x73,0xd5,0xb3,0xd9,0xe8,0x92,0xe8,0x92,0x13,0x85,0xdc,0x93, +0x56,0xb0,0x30,0xb8,0xc6,0x1c,0x71,0x3e,0xbc,0x3f,0xd2,0x89, +0x53,0x37,0x68,0x63,0x42,0xf6,0x04,0xa8,0xfb,0x1a,0x9e,0xf6, +0x2c,0xf0,0xcc,0x73,0x77,0x31,0xb4,0x32,0xd1,0x37,0x2d,0x37, +0xe3,0xcf,0x36,0xd6,0x34,0x17,0xb7,0xa5,0x04,0x26,0x07,0x24, +0x07,0x70,0x62,0x9e,0xc0,0xbe,0xd0,0x10,0xc0,0xd1,0x60,0x8c, +0x92,0xab,0x53,0xba,0x13,0xce,0x73,0x5d,0x4c,0xe4,0xa6,0xc0, +0x9d,0x07,0x34,0xfc,0xe9,0x29,0x37,0x09,0x9c,0xb8,0x26,0xfe, +0x85,0xb6,0x80,0xe7,0x4a,0x94,0x62,0x99,0x62,0x9a,0x60,0x58, +0x9d,0xca,0x07,0x13,0x71,0x1a,0x40,0xc4,0xe9,0x61,0x32,0x5f, +0xc5,0x97,0xb3,0x1f,0xc5,0xdf,0x33,0x8f,0x23,0x7c,0xe2,0xab, +0xb6,0x5f,0x9d,0x5e,0x97,0x4b,0xc4,0xa9,0x7e,0x82,0x56,0xec, +0x8e,0x7a,0x22,0x4e,0x2f,0x04,0x9f,0x0b,0x3e,0xcb,0x4d,0x0e, +0x42,0xa7,0x88,0x36,0x8d,0xda,0xd6,0x18,0xc3,0x53,0x71,0x1a, +0x7e,0x85,0x93,0x75,0x05,0xce,0x0b,0x2b,0x57,0x8f,0xf0,0xee, +0x92,0xd1,0x51,0x6f,0x3a,0x77,0x1b,0x6d,0x0e,0x12,0xde,0x15, +0xde,0xc0,0xb1,0x48,0x7c,0x5b,0xd8,0x25,0xbc,0xcd,0x8a,0x8a, +0xc4,0x1c,0xe2,0x22,0xfc,0x04,0x8a,0x58,0xd8,0xf1,0x07,0x8a, +0x4d,0x38,0x79,0x2c,0xfe,0xe0,0x1f,0xcb,0xf8,0xa2,0xea,0x99, +0x77,0xc3,0x62,0xc3,0x8f,0x85,0x85,0x28,0x1d,0x0c,0x3b,0x7c, +0x42,0x21,0x25,0x37,0xba,0xa8,0x42,0xb9,0x48,0xdf,0x9d,0xdd, +0xe8,0xea,0xb8,0x5c,0x5b,0xe5,0xb4,0x45,0x73,0x71,0x79,0x71, +0x6a,0xa6,0x12,0xd1,0x94,0x8a,0xc3,0xfc,0x3a,0x5e,0x8a,0xfa, +0x94,0xa1,0x9d,0x35,0x77,0xe5,0x96,0x8a,0x1a,0x7f,0xb0,0x94, +0x38,0xf5,0xae,0xdc,0x0a,0x3d,0x20,0x4f,0xe1,0x3c,0x7e,0x13, +0x89,0x76,0xf0,0xd3,0x1e,0x3d,0xe1,0x66,0x9b,0x09,0x03,0x8f, +0x70,0x13,0x82,0xa6,0xd5,0xb8,0x89,0xc5,0xca,0xd0,0x84,0x70, +0xd3,0x17,0xd0,0xc4,0x76,0x28,0xe2,0xa6,0x27,0xe4,0x29,0x26, +0xe1,0x39,0x2f,0x77,0xc2,0xa9,0x75,0x2a,0x7b,0xb5,0x75,0x4a, +0x1a,0xe1,0x60,0x7f,0x99,0x75,0x1a,0x8a,0xf1,0x23,0x72,0xeb, +0x24,0x59,0xfc,0x3b,0x2f,0xc8,0xac,0x51,0x2b,0x55,0x92,0xcc, +0xb2,0xe1,0x33,0x88,0xc5,0x5f,0x42,0x24,0x16,0xfc,0x22,0xbc, +0x8f,0x7f,0x61,0x75,0x60,0x26,0x82,0xfc,0x9f,0x71,0x3e,0x23, +0xc6,0x59,0x0d,0x6b,0xa9,0x89,0xc3,0x52,0x75,0xcc,0x24,0x84, +0xf3,0xa7,0x02,0xf9,0xf6,0x92,0x8d,0x44,0x33,0x3d,0x94,0xaf, +0x8b,0xd0,0x75,0x77,0x70,0x1d,0x5e,0x3d,0xa2,0xeb,0x22,0x74, +0x85,0x5d,0x68,0xc2,0x13,0x91,0xb8,0x51,0x7c,0x53,0x4b,0x5f, +0x28,0x38,0x6b,0xca,0xc0,0x39,0xdc,0x87,0xa0,0x4f,0x0d,0xf7, +0xb1,0xf8,0x3d,0xe8,0x43,0xb8,0xaf,0x1f,0xfa,0xe8,0x2e,0x9a, +0xbe,0xfb,0xe4,0x29,0x86,0xe2,0x99,0x12,0x5d,0x0e,0x6f,0x69, +0xa7,0x74,0xf9,0x60,0x78,0x21,0x45,0xa2,0x4b,0x37,0xa9,0x65, +0xfd,0x99,0xbc,0x76,0x3f,0xb7,0x90,0xf2,0xf1,0x48,0xcb,0xfa, +0xa8,0x24,0xe0,0x95,0xc6,0x3e,0xf9,0xaf,0x03,0x67,0x80,0x71, +0x47,0xd8,0x13,0x17,0x8a,0xe1,0x50,0x88,0x1d,0xc5,0x5f,0xbb, +0x85,0x89,0x31,0x4c,0xf4,0xbc,0x9b,0xc0,0xe0,0x09,0xa0,0x54, +0xdd,0xc8,0xc3,0x7a,0xbc,0x7a,0x39,0x5e,0x8a,0xdf,0x52,0x86, +0xf7,0xe8,0x8d,0x8f,0x5b,0xe6,0xd3,0xa3,0x20,0xa7,0x2a,0x7e, +0x0f,0x5b,0xa4,0x0b,0x8c,0xf0,0x96,0x1f,0x61,0x0b,0x2b,0xde, +0xc2,0x93,0x86,0x57,0x5d,0xc6,0xfd,0x7d,0xc4,0x08,0x1a,0xa9, +0xa8,0x4a,0xa7,0x69,0x79,0xfe,0xce,0xe6,0x72,0xfe,0x40,0xaf, +0xe9,0x5d,0xcb,0x0e,0x0e,0xaa,0xa2,0x90,0xe7,0x2e,0xf3,0x4d, +0x86,0x26,0x75,0xd6,0x7c,0x5b,0x47,0xfd,0xed,0xfc,0x3e,0x4e, +0x34,0x07,0xdb,0x17,0x22,0x8b,0x20,0x57,0x84,0x2e,0x5f,0x3d, +0xf7,0x73,0xfe,0x33,0xc3,0x1c,0xfe,0xc0,0x32,0xbd,0xf9,0x3b, +0xd5,0xb9,0x2d,0x78,0xde,0xcb,0xbd,0xce,0xab,0x2f,0xc8,0x1e, +0x29,0x7e,0x86,0x7a,0x9d,0xcf,0xa9,0x4d,0x5e,0x5a,0x22,0x7e, +0xbe,0x65,0xf1,0x80,0x62,0x97,0x24,0xac,0xda,0xc6,0xa4,0x95, +0xa5,0xca,0xbc,0xf7,0x47,0x72,0x92,0x34,0xa0,0x24,0x69,0x3b, +0x4f,0x73,0x5d,0x85,0x3d,0x7f,0xe2,0x24,0xf9,0x13,0xcd,0x09, +0x71,0x53,0x10,0xae,0x5a,0xca,0x26,0x14,0xc5,0x9d,0x39,0x55, +0xa2,0x17,0xc3,0x1f,0xb2,0x3f,0x68,0x13,0xe6,0xc4,0xed,0x1b, +0x6c,0x6c,0xeb,0xc7,0xb3,0xf1,0x63,0x98,0x8d,0x19,0x46,0x88, +0xc5,0xbf,0x21,0x78,0x6c,0x80,0x27,0xc2,0x14,0x78,0x4b,0xbc, +0xd5,0x26,0xe4,0x5d,0x1e,0x64,0x3b,0x06,0xd8,0x9b,0xa2,0x99, +0x16,0x5d,0xcc,0xac,0x60,0x9a,0x62,0xb3,0x1b,0x55,0x85,0x83, +0xc4,0x0d,0x4d,0xc1,0x53,0xd9,0x41,0x8d,0x03,0xe8,0xa0,0x4b, +0x80,0x95,0x9f,0x1d,0x37,0x83,0xd0,0x5d,0x8a,0x44,0x77,0x63, +0xed,0x11,0xec,0x9d,0x8f,0xf7,0xd2,0xf3,0x5a,0xa3,0x11,0x56, +0xee,0x01,0x65,0xca,0x3d,0xca,0x17,0x68,0xaf,0x67,0xa5,0xb4, +0x1b,0xa1,0x47,0x4e,0x47,0x17,0xc8,0x13,0xc7,0x91,0xbf,0x9a, +0x85,0x03,0x7e,0x66,0xe0,0x38,0xb1,0x62,0x2f,0xf9,0xe6,0x14, +0xa2,0x91,0x4a,0x7b,0x87,0x7d,0xb3,0xb7,0xe4,0x9b,0x8d,0x87, +0x77,0x26,0x50,0x6a,0x92,0xef,0x4c,0x50,0x18,0xf2,0xcd,0xcd, +0x31,0x43,0x3b,0x13,0xbe,0xfb,0x1f,0x2d,0x22,0x75,0x33,0xcf, +0x59,0xc4,0x6f,0xb0,0x21,0x3a,0xcf,0x1c,0x9d,0xe4,0xb7,0xce, +0x66,0x97,0x7f,0x8f,0xd7,0x25,0x9f,0x46,0x13,0x5f,0x3e,0xc9, +0x31,0xd9,0x3e,0xd1,0xda,0x25,0x60,0x7f,0xd0,0xfe,0xa0,0x70, +0x1c,0xc6,0x37,0xc7,0x5d,0x48,0x6f,0xc8,0x3b,0xd0,0xc4,0x1b, +0xbb,0xef,0xf1,0x55,0x0b,0x8a,0x87,0x36,0x3e,0x20,0xc2,0x3f, +0x32,0xe0,0x50,0xba,0x0e,0x7f,0x21,0xfb,0x7a,0xf1,0xf9,0xb2, +0xe8,0x80,0xe8,0x80,0x93,0xfe,0xa9,0x31,0x7c,0x99,0xfd,0x95, +0x27,0x85,0x7f,0x9d,0xc0,0x93,0x94,0x6e,0x30,0x4b,0x0e,0x2d, +0x3a,0x68,0xa4,0xe2,0x14,0x19,0x14,0x6a,0x3f,0xd1,0x92,0x49, +0xd0,0x57,0xa8,0x66,0x2e,0xe5,0x66,0x37,0xc7,0xab,0x26,0x5e, +0x8d,0xfe,0x0d,0x4f,0x50,0x86,0x70,0x06,0xfe,0xb3,0x78,0x38, +0xa9,0x87,0xfd,0xe7,0x7f,0xb5,0xc4,0x89,0xd7,0xc3,0x35,0xd4, +0x8c,0x2f,0x1a,0x75,0x09,0x06,0xe2,0x0a,0xd1,0x80,0xc5,0x3b, +0x71,0x09,0x82,0xf1,0xf8,0x03,0x3c,0x9e,0x69,0x87,0x0f,0xe8, +0x3b,0xa5,0xc4,0xf0,0xb2,0xa2,0xbb,0xa1,0xb4,0xe9,0xf2,0xb9, +0x65,0xa7,0xfb,0xaf,0xc8,0xe1,0x81,0xb7,0xb1,0x09,0x75,0xba, +0xe3,0xa9,0xeb,0xdd,0x3e,0xec,0x7a,0xb7,0xe3,0x77,0xe5,0x2e, +0x72,0xd4,0x62,0xd4,0xab,0x96,0x48,0x6f,0x53,0xe0,0x3f,0x13, +0x56,0xed,0x64,0x52,0xcb,0x52,0x6b,0xe2,0xcb,0x09,0xf0,0x88, +0x3d,0x45,0xf8,0xed,0x64,0xae,0x61,0x0c,0xef,0x3f,0xd3,0x7e, +0x9e,0xce,0xba,0x0a,0x07,0x3e,0x26,0x5e,0x61,0xe0,0x28,0xc9, +0x57,0x03,0x98,0x03,0x8c,0xf8,0x5b,0x6b,0x57,0x2f,0x78,0xb4, +0x62,0x8f,0x3e,0xad,0xb3,0xc2,0x6f,0xf4,0x40,0x0e,0x7d,0xcc, +0x20,0x1d,0x1c,0xdc,0xc1,0x8a,0x63,0x96,0xa1,0x70,0xe7,0x40, +0x6b,0x12,0x69,0xf3,0x99,0xb4,0xd2,0xe4,0x72,0x32,0x97,0xc2, +0x79,0x28,0x40,0x58,0xb7,0x17,0x74,0x29,0x49,0xe9,0xf6,0x91, +0xa7,0xb8,0x09,0x2b,0xa1,0xc1,0xe9,0xed,0x03,0xd3,0xff,0xe8, +0x80,0x4c,0x1d,0x16,0x22,0x60,0x06,0x09,0xc1,0x76,0x12,0x7a, +0xf5,0x24,0x04,0xbb,0xc8,0x13,0xbf,0xe6,0x87,0x40,0x33,0x6c, +0xba,0xd3,0x42,0x95,0x7a,0x37,0x85,0x33,0xbf,0xc6,0xff,0x85, +0x4d,0x95,0x2f,0x19,0xb1,0x38,0x44,0xd4,0x42,0x82,0x96,0x91, +0xa8,0xc5,0xe2,0x59,0x78,0x31,0xc2,0xe6,0xbd,0x60,0x4e,0xff, +0x61,0xf3,0x3e,0xf2,0x1c,0xcc,0x3a,0x8b,0xf0,0xb4,0x76,0x98, +0x46,0xff,0x9d,0x69,0x5d,0xe4,0x19,0xb6,0x12,0x25,0x93,0x32, +0x1a,0x6f,0x58,0x95,0xca,0x87,0xb4,0x04,0x34,0x04,0x12,0x24, +0x03,0x08,0x92,0x45,0xbd,0xd9,0x8f,0x63,0xef,0x5a,0xc4,0xf1, +0x61,0x9b,0xfd,0x36,0xed,0xdf,0xc3,0xe1,0x2d,0x52,0x19,0x8d, +0x27,0x65,0xb4,0x36,0x89,0x0f,0xbf,0x10,0x72,0x2e,0xb8,0x8d, +0x9b,0x1e,0x48,0xca,0xe8,0x09,0x12,0xaa,0x0d,0x31,0x51,0x7d, +0x87,0xaf,0x86,0x5f,0x95,0xf7,0xd6,0x5b,0x87,0x7a,0x90,0x52, +0x42,0xcf,0x1f,0xe9,0x41,0x7a,0x8d,0xea,0x41,0x0e,0xf8,0x88, +0xcb,0x51,0x7d,0x65,0x75,0x6d,0x49,0xad,0x4d,0x05,0xef,0x64, +0x6e,0x67,0x63,0x69,0xcf,0x39,0x37,0xf9,0x35,0xd5,0x2a,0x27, +0xe2,0xcd,0x58,0xb9,0xb2,0xd9,0x06,0x2b,0xc2,0xe6,0x3b,0xd8, +0xa6,0x05,0x7c,0xee,0xed,0x5d,0x03,0x5e,0x90,0xcf,0xc2,0xd6, +0x08,0x50,0x71,0x04,0x45,0x95,0xc0,0xa6,0x80,0x7a,0xff,0x0a, +0x9b,0x60,0x9e,0xee,0x01,0x4a,0x32,0xac,0x4e,0xe1,0x23,0xdc, +0xc2,0xdd,0x0f,0xba,0x35,0x3b,0xf2,0x9d,0x78,0x51,0x0a,0x5e, +0x7a,0x0c,0xdb,0x13,0xed,0xb7,0x14,0xe6,0x18,0xe1,0x39,0xf0, +0xd3,0x7c,0x1a,0xaa,0x77,0x99,0x9a,0xb4,0xd4,0x6a,0x55,0xec, +0x14,0xc3,0x26,0xae,0x3d,0xbf,0x14,0x8f,0x59,0x97,0xdb,0xc1, +0xeb,0x96,0x19,0xd7,0xd9,0xd5,0x73,0x62,0xbe,0x70,0x9f,0x70, +0xaa,0xbf,0xc4,0xa9,0xef,0x4a,0x8d,0x4d,0xba,0x92,0xdd,0x77, +0x98,0x4c,0xcd,0x7a,0x98,0x63,0x8c,0xe7,0xac,0x00,0x5d,0x46, +0xf8,0x87,0x22,0x8c,0x7f,0x48,0x82,0x71,0xd0,0x93,0x1e,0xa6, +0x34,0xdc,0xf2,0xa4,0x3b,0x60,0x85,0x8a,0xd3,0x68,0x29,0x8c, +0x7f,0xc2,0x8a,0x7f,0x82,0xf3,0xa8,0x9e,0x25,0xdd,0x0a,0x8b, +0x6f,0xe8,0xa3,0x03,0xa5,0x8e,0xa5,0xf6,0xa7,0x1d,0x6c,0xf8, +0x92,0x03,0x15,0x76,0xf9,0x4e,0x9c,0x58,0x09,0xde,0xa4,0xf2, +0xe6,0x12,0xe6,0x94,0xdc,0x8f,0x97,0xe4,0x7e,0xec,0x09,0x7e, +0x29,0x7a,0x09,0x9a,0xf1,0x3b,0x1b,0x13,0x49,0xe5,0x0d,0x92, +0x28,0xe1,0x1d,0x52,0x79,0xa5,0xcd,0x4a,0x2d,0x52,0xd3,0x92, +0x50,0x82,0xb0,0x2a,0x1c,0xd9,0xe8,0x69,0xea,0xee,0xb1,0x2c, +0x32,0xe2,0xaf,0x35,0xb6,0xb7,0xd7,0x74,0x72,0x63,0x85,0x3c, +0xe1,0x17,0x94,0x9b,0x99,0x93,0x9d,0x99,0x97,0x63,0x58,0x64, +0x5a,0x65,0x69,0xe8,0xb4,0xfb,0xc0,0x5a,0xf7,0x5c,0x2d,0xfe, +0x8b,0xfc,0xbe,0xd2,0xae,0x9a,0x0e,0xa3,0x6b,0x56,0x0f,0x1d, +0x89,0xb5,0x5b,0x55,0xa2,0x5e,0x66,0x54,0xd9,0x79,0xb6,0xa2, +0x27,0xeb,0x3a,0x77,0xbd,0x05,0x3a,0x98,0xc4,0x9c,0xf8,0x9c, +0x98,0x1c,0xa3,0x24,0xde,0x7d,0xa3,0xfe,0xa6,0xdd,0x06,0x9c, +0xa8,0x46,0xaa,0xc9,0x9d,0xb2,0x8e,0x96,0xc2,0x6e,0x0e,0xef, +0x64,0xa2,0x02,0x8e,0x86,0x1d,0x0a,0xe0,0x82,0x0f,0x87,0x47, +0x7a,0x4c,0x9c,0xcc,0xc4,0x5b,0x2a,0x3c,0x60,0x36,0x6b,0xcd, +0x35,0x05,0x66,0x7f,0xb6,0x15,0x9f,0x1f,0x5b,0x10,0x5b,0x10, +0xcf,0x81,0xc6,0xc0,0x56,0xec,0x05,0xb6,0x6c,0x7e,0x5a,0x5e, +0x7a,0x66,0x56,0x54,0x11,0x0f,0x37,0x98,0x94,0xa4,0x80,0xf8, +0xa2,0xe8,0xd4,0xb4,0x98,0x3c,0xa5,0xd8,0x82,0x13,0x55,0xc7, +0x8a,0x38,0xf0,0x60,0x4e,0x26,0x1e,0x4f,0x3a,0x9e,0xc4,0xe1, +0x93,0x75,0xa0,0x59,0x8f,0x75,0xeb,0x40,0xb7,0x06,0x6f,0xae, +0x85,0xcd,0x75,0x3a,0xe6,0xb0,0xc6,0x02,0xaf,0xb1,0x04,0x0b, +0x73,0x6c,0x61,0x06,0xfa,0xe6,0x78,0x02,0x73,0x70,0xb3,0xa9, +0xc6,0x2c,0x4b,0x6e,0x60,0x3b,0x5e,0x86,0x2c,0xea,0x5c,0x1b, +0xbd,0xda,0x88,0xa6,0x63,0x7c,0xb4,0x5c,0x4c,0xcc,0xac,0xb9, +0xd9,0x10,0x8c,0x7c,0x02,0xbc,0x03,0xdd,0x03,0x39,0xe8,0x61, +0x8a,0x92,0x0b,0x53,0xf3,0x53,0x39,0x3c,0x81,0x5e,0x93,0x72, +0xac,0x95,0xc5,0xdd,0xf4,0x70,0xaa,0x0c,0x7a,0xe6,0xb6,0x35, +0xd2,0x86,0x63,0x9d,0xe4,0x6f,0x14,0x71,0x86,0x36,0x64,0x30, +0xf8,0xc4,0x3a,0x54,0xb5,0xbf,0xca,0xae,0xc4,0xaa,0xa3,0x88, +0x77,0xac,0x36,0xaf,0xb0,0xce,0xe7,0x06,0x9d,0xe0,0x63,0x74, +0xae,0xa2,0xa6,0x2a,0xbf,0xc2,0x80,0x14,0x3d,0x27,0x0b,0x07, +0x2d,0x07,0x4e,0x48,0xb8,0x8d,0x72,0x1c,0x32,0xec,0x53,0x6c, +0xe8,0x66,0xce,0x2a,0x9f,0x72,0xba,0x99,0xf3,0x74,0x30,0x4a, +0xb2,0x8d,0x75,0x3a,0x65,0x71,0x3e,0x96,0x3f,0x54,0x2b,0xdb, +0xcc,0xf9,0xcd,0xe8,0x5d,0x3b,0x32,0x19,0xb0,0xea,0xf9,0x55, +0xa5,0xa1,0xe5,0x8e,0x81,0x71,0xd8,0x01,0xf5,0x6b,0xa8,0x81, +0x9d,0xae,0x10,0xda,0xce,0x0e,0xbe,0xa3,0x3f,0xbc,0xa4,0xa1, +0x34,0xb4,0xa4,0x31,0xc0,0x10,0x87,0x92,0x5a,0x9c,0x52,0x9a, +0x58,0xae,0x9b,0xc6,0x87,0xda,0xfb,0x5b,0xfa,0x58,0x71,0x70, +0x45,0x47,0x48,0xea,0x60,0xe0,0x61,0x26,0x0a,0x2d,0x0f,0x28, +0x0f,0xcc,0x37,0xf0,0xe6,0x53,0xdd,0x92,0xed,0x13,0x48,0x34, +0xed,0x84,0x15,0xa3,0xd6,0x3d,0xa4,0x7d,0x9b,0xed,0xf4,0xde, +0xbe,0x2e,0x71,0x3d,0x74,0xe1,0x9d,0x1b,0xc0,0x5d,0x0f,0xbb, +0x83,0x62,0x0f,0x46,0x38,0xa8,0x1d,0x82,0x6e,0xb3,0x78,0x3c, +0x3e,0x85,0x36,0x42,0xef,0x2d,0x56,0x9c,0x2e,0x31,0xf1,0x17, +0xa3,0xb6,0xe4,0x08,0x91,0x97,0x89,0x3b,0xed,0xbd,0xcb,0x82, +0x29,0xcc,0x41,0xe9,0x56,0xa3,0x44,0x23,0x2d,0xfa,0x1d,0xf2, +0x16,0x93,0x5c,0x34,0xca,0x8c,0x91,0xef,0xab,0x8c,0xd1,0xf8, +0xa1,0x16,0x53,0xab,0xcc,0xb8,0x87,0x0d,0xbd,0x45,0xd1,0x25, +0xac,0x59,0xcd,0x64,0x94,0x67,0xd4,0x4a,0xe5,0x6c,0x11,0xe5, +0x88,0x3c,0x19,0x47,0xcc,0x30,0x9d,0xb3,0x7d,0x4d,0xa5,0xc4, +0x11,0x58,0x20,0x4c,0x0d,0x5e,0x82,0x37,0x89,0xab,0xd9,0x5f, +0xe0,0x6d,0x6d,0x62,0x95,0x1e,0x5e,0xbf,0x92,0xf0,0xd9,0x17, +0xdf,0xae,0x64,0xc5,0xb5,0x8d,0x28,0x6c,0xbf,0x9f,0x95,0x97, +0xad,0xd4,0x98,0x28,0xcb,0x38,0x93,0x52,0xc9,0x09,0xd3,0x3f, +0x41,0x80,0x16,0xd1,0x9b,0x73,0x03,0x15,0x01,0xcd,0xa7,0x5f, +0x84,0x03,0x42,0x73,0x30,0xfa,0x91,0x19,0xf4,0x00,0x7d,0x62, +0x3a,0xee,0xc8,0x77,0xc2,0xdd,0xa5,0x3b,0xe1,0x4c,0xa5,0x9d, +0x70,0x77,0xe4,0x3b,0xe1,0xee,0xd2,0x15,0xc7,0xdb,0xf8,0x23, +0x24,0xda,0x18,0x08,0x36,0x4c,0xc5,0x5a,0x24,0x96,0xe9,0xe3, +0x23,0x60,0x4f,0x48,0x21,0x45,0x4f,0xe1,0x37,0xa6,0x3e,0x5d, +0x76,0x09,0x6e,0x08,0x2b,0xfe,0xdb,0x02,0xa5,0x5a,0xa6,0x99, +0x24,0x19,0xd4,0x8f,0xbc,0x13,0xd1,0x2a,0xbd,0x13,0x91,0x3f, +0xf2,0x4e,0x84,0xfd,0x1e,0x6a,0x19,0x75,0x50,0xca,0xc8,0x3b, +0x11,0xd2,0x92,0x19,0x3e,0xa4,0x48,0x6f,0xd0,0xd5,0x76,0x28, +0x33,0xe1,0xbb,0xe5,0x37,0xe8,0xea,0x46,0xa1,0x7a,0xcb,0xde, +0x4d,0x55,0xf4,0x06,0x5d,0xc7,0xc6,0xcd,0xf7,0x2d,0xce,0x70, +0x83,0x13,0x87,0x5e,0x9d,0x68,0x95,0x5e,0x9d,0x08,0xbb,0x22, +0x6f,0x6e,0x76,0x3c,0xd7,0x21,0x5a,0x38,0x9a,0x63,0x4d,0xe7, +0xee,0x90,0x77,0x88,0xf0,0xc0,0x63,0x64,0x28,0x84,0x12,0x02, +0xbd,0x8d,0xc3,0x5b,0x20,0x9c,0x5e,0x54,0xea,0x61,0x88,0x3d, +0x36,0xb0,0xf0,0xe7,0xbd,0x61,0xd3,0xf1,0x9e,0xd4,0xd4,0x21, +0x12,0xd2,0x4c,0x92,0x90,0xb7,0xe5,0xa4,0x76,0x57,0x5a,0x3b, +0xfb,0x27,0x02,0x35,0x41,0x13,0xab,0xb1,0xa2,0x32,0x8c,0x43, +0x77,0xf1,0x93,0xb5,0xec,0xa0,0x19,0xac,0x92,0x77,0x77,0x9a, +0xe4,0xdd,0x1d,0x5c,0x52,0x8b,0x0e,0xe6,0x07,0x15,0x04,0x65, +0xe9,0xfb,0xf2,0xc9,0xde,0xc9,0x6e,0x71,0x6e,0x44,0x40,0x1f, +0x41,0x49,0xb9,0x89,0x05,0x09,0x05,0x74,0x2b,0xa5,0x73,0x88, +0xb3,0xbf,0x13,0x07,0x5f,0xe8,0x0b,0x79,0x67,0x19,0x71,0x70, +0xf2,0xcb,0x6e,0xfb,0xbf,0x73,0x22,0x24,0xa8,0xb0,0x0b,0x84, +0xa2,0x33,0xf8,0x99,0x5d,0x0f,0x0e,0x10,0x0d,0x21,0x80,0x85, +0x2a,0xec,0xf6,0xa2,0xff,0x1e,0x78,0xdf,0x04,0xcd,0x85,0x67, +0x3f,0xb0,0x32,0xb8,0xda,0x68,0x49,0x7a,0x35,0x5c,0x66,0x14, +0x2e,0x99,0xb1,0x6b,0xc3,0x55,0xc8,0x76,0xd7,0x92,0x3d,0x30, +0x61,0x6f,0x9e,0x31,0x8f,0xc7,0x76,0xfe,0x75,0xa5,0xe4,0x2e, +0x77,0x8a,0x29,0xdc,0x80,0xdf,0xde,0x81,0xc7,0xa9,0xe7,0x35, +0xf3,0xa0,0xd4,0xfb,0x49,0x17,0x3d,0x22,0x7f,0x01,0x49,0xd0, +0x21,0x04,0xc7,0x0e,0x15,0x0c,0x81,0x5b,0x48,0x04,0x43,0x03, +0x7c,0xc6,0x60,0x11,0x7e,0x41,0x38,0x5a,0x74,0x82,0x68,0x16, +0x7a,0xfe,0x7c,0x11,0xd7,0xab,0xbf,0x23,0x58,0x0d,0x8b,0xf0, +0x6a,0x56,0xe0,0x14,0xc9,0x57,0x2b,0xc9,0x57,0xb0,0xc3,0x18, +0xe5,0xbb,0xe4,0xdb,0x67,0x38,0x95,0x9e,0xe6,0x03,0x4e,0xbb, +0x54,0xbb,0x15,0x70,0xd8,0x89,0xc8,0x9e,0x82,0xb2,0xbc,0xaa, +0xd4,0x12,0xeb,0x4c,0x3e,0xd8,0xd5,0xcd,0xf2,0x80,0x0b,0x27, +0x3e,0xa3,0x6f,0xa0,0x3c,0x3f,0x01,0x9b,0xa1,0x1f,0xb5,0xe0, +0x47,0x86,0x67,0xf1,0xf7,0xe2,0x16,0xf8,0x9e,0x15,0xc6,0xe1, +0x16,0xb4,0x01,0x1e,0xdd,0x66,0x61,0xbb,0xc6,0xcb,0xb6,0xaf, +0x69,0x34,0xd8,0xa1,0x9b,0x3d,0xa4,0xe2,0xe3,0x3e,0x9c,0xc1, +0x4d,0x34,0x83,0x83,0x86,0x56,0xcc,0x86,0x33,0xf8,0x88,0xac, +0xf5,0x36,0x30,0x46,0x17,0xad,0x81,0x47,0xf7,0x58,0x59,0xab, +0xe8,0xe2,0xdf,0xed,0xa8,0xf1,0x7a,0x61,0x47,0xcd,0xc0,0x4e, +0xec,0x48,0x2f,0x7f,0x58,0x4e,0xfe,0x03,0x65,0xa8,0x17,0x4c, +0xe8,0xe2,0xe2,0x1d,0x78,0x17,0xad,0xb8,0xf3,0x90,0x69,0x55, +0x7c,0xb4,0x7e,0x39,0x83,0x95,0x15,0xef,0x7c,0xb9,0x9e,0x15, +0xcf,0xf5,0x0d,0xb7,0x82,0x3e,0x1c,0xb2,0x38,0xc2,0x42,0x78, +0x13,0x2d,0x5b,0xf1,0x98,0xc5,0xce,0xcb,0xd0,0xf2,0xc7,0x8f, +0xc8,0x8f,0x7c,0xb9,0x6c,0x09,0x33,0x38,0x61,0xa1,0xbc,0xa1, +0xdb,0x24,0xdf,0x92,0xf3,0x28,0x98,0x84,0x7d,0x66,0x0b,0x3b, +0xd8,0x05,0x9b,0xe5,0x4d,0xdc,0x26,0xf9,0xd6,0x1c,0x3c,0xfe, +0x2a,0xbd,0xe7,0x61,0x13,0xbd,0xe7,0xe1,0x2d,0xe9,0x9e,0x87, +0xab,0x4b,0x59,0x31,0xc2,0xf7,0x65,0x67,0xd3,0x2b,0x7f,0x47, +0x45,0xde,0x47,0x97,0xed,0xe2,0x08,0x19,0x7e,0x47,0xa5,0x65, +0xc4,0xd9,0x4c,0x78,0xd9,0xd9,0x08,0xd3,0xe1,0x6d,0x14,0x56, +0x12,0x24,0xbb,0x2f,0x22,0xd5,0x35,0x45,0xba,0x2f,0xc2,0x25, +0x92,0xde,0x17,0x51,0x29,0xdd,0x17,0x11,0x66,0x47,0x46,0x67, +0x43,0x0c,0x94,0x81,0x50,0xdc,0xca,0x8c,0xfd,0x92,0x22,0x79, +0xe1,0x39,0x24,0x97,0xbe,0xc2,0x45,0x46,0x9f,0xa2,0x58,0x72, +0x03,0xcd,0xa2,0x2a,0xf2,0xf3,0x50,0xc0,0x76,0x6c,0x66,0x70, +0x76,0x50,0x6e,0x48,0x5e,0x03,0xbf,0xba,0x4a,0xb7,0xd1,0xaa, +0x93,0xc3,0xcb,0x1a,0xe1,0xe8,0x45,0x6c,0xd3,0x00,0x36,0xdd, +0x38,0xa0,0x11,0xa6,0x31,0x19,0x79,0x69,0xc5,0x89,0xa7,0x0d, +0x92,0xf8,0x60,0x7b,0x3f,0x27,0x2f,0x67,0x0e,0xce,0x9a,0x60, +0x3b,0x4d,0xd8,0x67,0x8a,0xf7,0xed,0x01,0x0f,0x13,0x3c,0x9d, +0xb1,0x54,0xd7,0x32,0x59,0x67,0x93,0x6b,0xca,0xe7,0x24,0x66, +0x27,0x65,0x26,0x73,0xf0,0x17,0xeb,0x7a,0xc8,0xe5,0xb0,0xcb, +0x11,0x7a,0x45,0xdf,0x1b,0xc9,0x5f,0xe7,0xdc,0xcf,0x3d,0xdc, +0xc8,0x5b,0x04,0x1b,0x04,0x6b,0x87,0x72,0x98,0xff,0x8d,0xed, +0x98,0xfc,0x54,0x03,0xcf,0xb3,0xc9,0x68,0xe6,0x35,0x93,0x8c, +0x53,0xad,0x33,0xeb,0x8b,0x2a,0x2a,0x8a,0xab,0x49,0x61,0x18, +0x40,0x28,0x30,0xdf,0xa7,0x28,0x30,0xd3,0x20,0x90,0x4f,0xf7, +0x48,0x77,0x49,0xf4,0xe2,0x20,0xd7,0x76,0x78,0x2a,0xc7,0x91, +0x44,0x91,0xa6,0xd2,0x54,0xa2,0x9a,0xcf,0xe5,0xe5,0x8a,0x76, +0xf7,0xf0,0xea,0xb5,0xa8,0xb5,0xaa,0xa6,0xb1,0xb8,0x9d,0xfb, +0x9d,0x29,0xd5,0xa9,0x31,0xed,0xb0,0xe6,0x3e,0xa9,0x41,0x55, +0xa0,0x66,0xcd,0x8a,0xa6,0x74,0xf5,0x64,0xf2,0xe7,0xf2,0x0a, +0x45,0xfb,0x76,0x82,0x57,0x16,0x82,0xd2,0xb3,0xb8,0x94,0x59, +0x38,0x46,0x13,0x4a,0xbb,0x59,0xb0,0xdb,0xf1,0xf2,0xc2,0x70, +0xcb,0xab,0xf6,0xf9,0x79,0x3e,0xbf,0x30,0x1c,0x34,0xba,0xbb, +0x21,0x2f,0x54,0x11,0x52,0x98,0xab,0x78,0x22,0x37,0x97,0xfd, +0xae,0xb6,0x1e,0xfb,0xb3,0x3d,0x0a,0x7c,0x4b,0x68,0xe5,0x22, +0x93,0xd4,0x28,0xac,0x5c,0x37,0xa2,0x6e,0x3f,0x91,0x53,0x89, +0x1e,0x0d,0x77,0xf3,0xb9,0xbb,0x28,0x95,0x24,0xa7,0x29,0x08, +0x95,0xff,0x44,0xea,0xec,0x94,0x88,0x13,0x56,0xbf,0xc5,0x28, +0xb8,0xb1,0x46,0xd2,0x55,0xa5,0xeb,0x99,0x52,0xf9,0x55,0xa5, +0x89,0x0a,0x06,0xe4,0x27,0x3d,0xe5,0x57,0x95,0xce,0xa3,0x57, +0x95,0xce,0x09,0x53,0xe8,0xc6,0x06,0x6c,0xa4,0xdb,0x41,0xb7, +0x70,0xdf,0x96,0x60,0x3e,0x3e,0x3f,0xa1,0x32,0xba,0x88,0x2b, +0x81,0xcf,0x3a,0xb0,0x57,0x3d,0x78,0x49,0x57,0x95,0xee,0x06, +0x4f,0x16,0xdc,0x42,0x61,0xa9,0x74,0x55,0xa9,0x0b,0xbd,0xaa, +0x34,0x51,0x76,0x55,0xe9,0x16,0x52,0xc9,0x2e,0xa2,0x30,0x17, +0x7f,0x2b,0x1f,0x3b,0x0e,0xfe,0x41,0x70,0x4e,0xa3,0x38,0x5b, +0x48,0x5b,0xe9,0x6f,0x90,0x42,0x47,0x12,0x40,0xe9,0x36,0xdd, +0x76,0x73,0x85,0xb0,0x27,0x0e,0x80,0x7f,0xd1,0xbb,0x47,0x3f, +0x21,0x95,0x6e,0x4a,0xe7,0x1f,0xb2,0x9b,0x47,0xdf,0xd4,0x66, +0x07,0x4d,0x17,0x11,0x62,0xb9,0x31,0x6a,0xb9,0x5d,0x78,0xad, +0x15,0x69,0x4e,0xe9,0x66,0xf1,0x5c,0x45,0xfc,0xa6,0x26,0xbc, +0xc9,0x88,0x5b,0xd6,0xc9,0x37,0xde,0xd7,0xc8,0x36,0xde,0xfb, +0x13,0x9c,0xb3,0x9e,0xdf,0x78,0x2f,0xb3,0xb7,0xe6,0xcf,0x6f, +0xbc,0x97,0x69,0x59,0xf6,0xa5,0x8d,0xf7,0x03,0x3a,0x47,0x91, +0xf8,0x11,0x2c,0xd4,0x33,0x16,0xbc,0xe8,0x4d,0xa4,0xc5,0x58, +0x01,0x81,0xc2,0x0e,0xac,0xc0,0xe2,0x37,0x41,0x01,0x61,0x85, +0x2b,0xa0,0x40,0xd7,0xa4,0x15,0x6e,0x90,0xe7,0x58,0xec,0x2e, +0xb4,0x23,0xe1,0x67,0xec,0x0b,0x0f,0x98,0xf8,0xf4,0xf8,0xcc, +0x98,0x8c,0x5d,0xb1,0x7c,0x84,0x77,0x98,0x57,0x08,0x89,0xb4, +0x1c,0x71,0xe5,0xc0,0x0e,0xe6,0xe8,0xfe,0xa3,0xce,0x11,0x2e, +0x9c,0x67,0x64,0x78,0xa4,0xc3,0xc4,0xe5,0x4c,0xb2,0x11,0x51, +0xab,0x57,0xb3,0x33,0x1a,0x63,0x55,0xe3,0x1b,0x89,0x04,0xbd, +0xc4,0x0d,0xee,0x6c,0x1f,0x70,0xac,0x1f,0x74,0x64,0x84,0x33, +0x38,0x04,0x19,0x89,0x67,0x9a,0x59,0xe1,0xcc,0x22,0xa4,0x2b, +0x9e,0x69,0x67,0xb7,0x41,0x1b,0xf2,0x34,0xb7,0x37,0x31,0xb1, +0xe8,0xda,0xcf,0x37,0x35,0x94,0xb7,0xe7,0x36,0x72,0xc2,0xd4, +0x28,0x94,0xeb,0x9e,0xe1,0x9c,0xe1,0xd4,0x92,0xc9,0xfb,0x97, +0x78,0x16,0x79,0xe4,0x70,0x60,0x4e,0x28,0xc3,0x39,0xcd,0x3e, +0xc9,0xae,0x33,0x95,0x0f,0x2e,0xf7,0x2f,0xf7,0x3a,0xcd,0xc1, +0xfe,0x10,0x94,0xb8,0x3f,0xde,0xf2,0xa4,0xf5,0xc5,0x18,0x3e, +0xb2,0x36,0xb4,0x32,0xb0,0x98,0x13,0x66,0xc1,0x6f,0xc8,0xfa, +0xd0,0xa9,0x33,0xaa,0x78,0x9d,0xa8,0xce,0xc2,0x04,0x37,0x13, +0x50,0xd7,0x53,0xc9,0xd7,0xc6,0x5b,0x9b,0xbb,0x2e,0x24,0xe1, +0xb1,0x4a,0xb8,0x0f,0xc6,0x33,0xdb,0x72,0x7c,0xaf,0xa8,0xe0, +0x19,0x4c,0x63,0x4a,0x56,0xad,0xea,0x4f,0xac,0x46,0xb6,0x02, +0x7c,0x48,0x06,0xeb,0x28,0xe4,0x23,0xe1,0x9f,0xf8,0x38,0xdc, +0x65,0x12,0x32,0xe3,0xb2,0x63,0xb3,0xe8,0x60,0x3d,0xc3,0x3c, +0x82,0x3d,0x38,0x28,0x11,0x2d,0x07,0x34,0x98,0x28,0xdf,0xa3, +0xfe,0x87,0x7d,0x39,0xef,0x43,0x07,0x0f,0xd9,0x4f,0xdc,0xc2, +0x24,0x18,0x28,0xdc,0x62,0xae,0xe4,0x64,0x35,0xc4,0xaa,0xc6, +0x94,0x9d,0x28,0x6f,0x54,0x1e,0xdc,0x77,0x61,0xc0,0xbd,0x79, +0xd0,0x9d,0x11,0xaa,0x70,0x1c,0x19,0x62,0x55,0x3b,0x2b,0x54, +0xcd,0x46,0x9a,0x62,0x55,0x37,0x2b,0xe4,0x0c,0x8e,0x41,0x36, +0x91,0xf4,0x77,0xd3,0x15,0xd5,0x58,0x98,0xe5,0xa6,0x0d,0xfb, +0xd4,0x55,0x8a,0xb5,0xf1,0xce,0xee,0xae,0xbb,0xb1,0x18,0x29, +0xe1,0x6e,0x98,0xc1,0xa8,0xe5,0xf8,0xdd,0x54,0xc1,0x93,0x99, +0xc6,0x9c,0xec,0x46,0xd5,0x5f,0x59,0x8d,0x34,0x05,0x50,0x64, +0xc7,0xfe,0x6b,0x9f,0x40,0x54,0x92,0xdb,0x0d,0x61,0x21,0xee, +0x84,0x30,0x26,0x3e,0x27,0x2e,0x2f,0x26,0x4f,0x23,0x8e,0x8f, +0x74,0x0f,0x73,0xa1,0xcb,0xfa,0x9b,0xc4,0x06,0xc1,0x98,0xd9, +0x78,0x58,0x2f,0xdc,0x4c,0xc5,0x3e,0x22,0x28,0xc0,0x7c,0xe2, +0x56,0x26,0x51,0x4b,0xe1,0x3a,0x73,0xb5,0xb0,0xe0,0x42,0xa2, +0x6a,0x62,0xcf,0xc9,0x2b,0x98,0x55,0x16,0x8d,0x6f,0x09,0x6e, +0x8c,0x58,0x05,0xb3,0x88,0x54,0x1b,0x6f,0x85,0x5f,0xc3,0x1a, +0xca,0x78,0x1b,0xb8,0xec,0xc3,0x9f,0xc2,0xbb,0x2c,0x1c,0xd9, +0x0b,0x9b,0x41,0x15,0x0c,0x55,0xea,0xb5,0xf1,0x58,0xbc,0xf9, +0x3c,0xde,0x75,0x02,0xcf,0x51,0x8a,0x61,0x4e,0xce,0x2f,0x03, +0x85,0xfb,0x93,0x39,0xc1,0x58,0xe8,0x47,0xeb,0xe1,0x8f,0x3b, +0x2c,0xfe,0x03,0xde,0x27,0x45,0xe9,0x8f,0x7b,0x2c,0x4e,0x10, +0x17,0xa0,0xb4,0xfd,0x99,0x3a,0x09,0x36,0x75,0xe9,0x7c,0x70, +0xa5,0x4f,0xbb,0x5f,0x11,0x27,0xbe,0x0f,0x31,0xa8,0xa1,0xef, +0xf4,0x97,0x89,0x37,0xf5,0x13,0xf9,0xe0,0x1d,0x6e,0x6b,0x4c, +0x77,0x71,0xb8,0x0a,0xeb,0xa2,0x54,0xc3,0x94,0x7d,0xf1,0x5a, +0x74,0x45,0xa4,0xcb,0xbf,0xdb,0xbf,0x99,0x83,0xf9,0x41,0x28, +0x61,0x47,0xcc,0xc6,0xe3,0xea,0xb4,0x11,0x70,0xf5,0xe0,0xd5, +0xe0,0x2b,0x9c,0x7c,0xb0,0xea,0x37,0x84,0xf1,0x64,0xb0,0xae, +0xf2,0xc1,0xee,0x1d,0x19,0xec,0x72,0xb1,0x5e,0x58,0xc5,0xac, +0x3f,0xa2,0x77,0xd0,0x5c,0xc5,0x2e,0x32,0x28,0xd0,0x62,0xe2, +0x6e,0x7a,0x84,0xc1,0x25,0xe6,0xca,0xe9,0xfc,0x0b,0x09,0xaa, +0x89,0xe7,0x4e,0x5e,0xc5,0x9c,0xb2,0xb8,0xaa,0x5f,0x50,0x67, +0xc4,0x5c,0xac,0x8a,0x76,0xe1,0xb4,0x8e,0x0e,0xb8,0x0e,0x37, +0xf6,0x6a,0xe3,0x10,0xc6,0x71,0xda,0x2c,0x7a,0xf5,0xde,0xb2, +0x4a,0x6d,0x1e,0x7f,0xf8,0xcb,0x13,0xfc,0x8f,0x44,0x3c,0x96, +0x8b,0x11,0xa7,0xc1,0x47,0x4c,0xca,0x3e,0x7a,0xdc,0x62,0x5d, +0x66,0x66,0x93,0xaa,0xb0,0xa4,0x97,0x85,0xb1,0xf8,0x26,0x82, +0x34,0x98,0x89,0xd3,0xd8,0x81,0x95,0x2e,0x64,0xec,0x77,0xc8, +0xd8,0xef,0x90,0xb1,0xaf,0x86,0x3b,0xf7,0x89,0xe6,0x15,0xe7, +0xcb,0xc7,0x5e,0x23,0x1b,0xbb,0x3f,0x71,0x5c,0x7f,0x41,0x2c, +0xaa,0xe9,0xcb,0x7f,0x9a,0x70,0xd3,0x80,0xb0,0xe0,0x0e,0x8f, +0x55,0x96,0x64,0xec,0x99,0xd8,0x00,0xa5,0x18,0xa4,0x6a,0xc6, +0x69,0x51,0x65,0xd5,0x15,0xd0,0x45,0xc7,0x3e,0x43,0x3e,0x76, +0x0d,0xba,0x8f,0xeb,0x6a,0xf8,0x15,0x69,0xec,0x3b,0x07,0x0e, +0xa3,0xce,0xc1,0x7b,0xe0,0xc2,0x42,0x41,0x20,0x68,0xed,0x00, +0x15,0x95,0x76,0x43,0x85,0x5b,0x78,0x51,0x2a,0x76,0xc4,0x25, +0xca,0x78,0x05,0x3b,0x90,0x25,0xae,0x42,0xa2,0x7e,0xb7,0x30, +0x11,0xe7,0x10,0x78,0x12,0x32,0x12,0x72,0x62,0x32,0xd4,0x13, +0xf9,0x08,0xaf,0x30,0xb7,0x10,0x77,0x0e,0xd6,0x8a,0x3e,0xc2, +0x56,0x26,0xca,0xf8,0xa8,0x66,0x84,0x39,0x67,0x1e,0x11,0x1a, +0x66,0x31,0x51,0x8d,0xde,0xf2,0x78,0x8f,0xb9,0x94,0x9d,0xd3, +0x9b,0xa8,0x1a,0xd7,0x75,0xbc,0xeb,0xd8,0x2f,0x9c,0xb8,0xad, +0x47,0xd0,0x67,0xc4,0xef,0x84,0xad,0xc8,0x1e,0xe6,0x6f,0x86, +0x4f,0x97,0x4f,0x2d,0xde,0xcd,0x17,0x96,0x9d,0xae,0xce,0xa9, +0xe5,0xc4,0xed,0xe7,0x84,0x06,0xb6,0xe4,0x4e,0xde,0xd5,0xcc, +0x67,0x9c,0xb0,0x62,0x01,0x52,0x87,0x47,0x17,0x58,0xfc,0x08, +0x5e,0x43,0x3b,0xe0,0xd1,0x15,0x16,0x47,0xc0,0x20,0xc9,0xc8, +0x4c,0xf3,0x64,0x5b,0xa2,0x73,0x82,0x2a,0xbd,0x6b,0xfd,0x0a, +0x39,0x98,0x7c,0x00,0xa5,0x59,0x67,0xee,0x49,0x30,0x68,0x4a, +0xe1,0x43,0x1b,0x7d,0x2e,0xf8,0xd5,0x70,0x90,0x01,0xf6,0xa8, +0xbc,0xab,0xf8,0x8b,0xa4,0x0b,0x06,0x89,0x7c,0x88,0xf6,0xfe, +0xb5,0x8e,0xfa,0x1c,0x5e,0x81,0xd7,0xa3,0x04,0x83,0x84,0x35, +0x27,0xf6,0xb6,0x25,0xf0,0x87,0x7a,0x42,0x6f,0x05,0xb7,0x91, +0xa1,0x6f,0x1b,0x08,0x47,0x1d,0x83,0xdd,0x60,0xcd,0x42,0x71, +0x30,0x18,0x6e,0x84,0x69,0x2a,0xed,0x06,0x0a,0x8f,0xf1,0x86, +0x04,0xec,0x84,0xcb,0x95,0xf1,0x02,0x76,0xe0,0xb8,0xb8,0x18, +0x89,0x5f,0x9f,0x17,0x02,0x70,0x06,0xe4,0x32,0xf1,0x59,0xf1, +0xb9,0xa7,0x32,0x77,0xc5,0xf1,0x87,0xbc,0x0f,0x1e,0x08,0x75, +0xe3,0xc0,0x41,0x0c,0x10,0x7a,0x99,0x28,0xf3,0x23,0x9a,0xe1, +0x26,0x9c,0x5d,0x64,0x70,0xa8,0xed,0xc4,0x85,0xb4,0x09,0xf9, +0x94,0xe9,0x29,0x2c,0xe8,0x8c,0x57,0x4d,0xb8,0x78,0xb2,0xff, +0xd8,0x7d,0x4e,0xbc,0x72,0x49,0xf8,0x9a,0x81,0xb5,0xf8,0x73, +0xa4,0x21,0xae,0x3d,0xcf,0x0a,0x6b,0x27,0xa3,0x3d,0xe2,0xda, +0x8b,0xac,0xb0,0x4b,0xb4,0x46,0x5e,0x95,0x0e,0x0d,0xee,0x85, +0x66,0xee,0x7c,0x9e,0x73,0xa9,0x61,0x96,0x0d,0x27,0xc6,0x2f, +0x46,0x8d,0x3d,0x67,0xee,0xa6,0xf7,0xe8,0x66,0xf1,0xfe,0x5a, +0x76,0x1b,0x2c,0x0c,0x38,0xfc,0x0b,0x5e,0x82,0x72,0xad,0xf2, +0xf7,0xa4,0xea,0x9f,0xcd,0xe2,0x03,0xda,0x5c,0x7b,0x3c,0x48, +0x41,0xd6,0xf0,0x46,0xc9,0xc6,0x29,0xeb,0xa3,0xd5,0xbb,0x92, +0xf9,0x88,0x0b,0xc1,0xd7,0x03,0xce,0x72,0x63,0xf1,0x7c,0xe1, +0x6d,0x84,0xef,0xb5,0xc0,0xbd,0x2b,0xb8,0x1d,0x57,0xc1,0x7a, +0x26,0x21,0x27,0xae,0xe0,0x54,0x36,0x89,0xe7,0x43,0xee,0xe1, +0x2e,0x61,0x07,0xe8,0x39,0x46,0x69,0xf8,0x2b,0x66,0xf9,0xe1, +0x55,0xa1,0x7a,0x2a,0xfb,0x23,0x43,0x03,0xed,0x26,0xaa,0x33, +0x09,0x7a,0x0a,0x17,0x99,0x0b,0x19,0x85,0x6d,0x09,0xaa,0x49, +0x17,0x4f,0xfd,0x49,0x9b,0xd4,0x4f,0x98,0x81,0xcf,0x6e,0x21, +0x5c,0x0a,0xeb,0xf1,0xa6,0xbd,0xb0,0x09,0x3e,0xd1,0xc2,0x9f, +0x80,0x3a,0x1b,0xfc,0x59,0x70,0x54,0x88,0x0a,0x2c,0xd1,0xc4, +0x0b,0x18,0x3f,0x98,0xbc,0x6b,0x21,0x8c,0x05,0xe6,0x8c,0x36, +0xbd,0xf1,0xf6,0xed,0x3e,0xcc,0x1c,0xc7,0x13,0xb8,0x18,0x26, +0x16,0x14,0x6f,0x02,0xf1,0xea,0xf0,0xd6,0x99,0x4e,0x1e,0xc6, +0x63,0x85,0xed,0xdf,0xf8,0xe0,0x49,0x44,0xf0,0x76,0x33,0xe2, +0x05,0xfc,0x2b,0xda,0x04,0x51,0x37,0x59,0x1c,0x45,0x64,0xd4, +0x06,0x88,0xba,0xcd,0x0a,0x4f,0x22,0x11,0x66,0xc0,0x13,0x14, +0x98,0xa8,0xc4,0xcf,0x92,0x92,0x94,0xe1,0x01,0xdc,0x44,0xa1, +0x0d,0xfe,0xad,0x81,0x95,0xd6,0xfe,0x7c,0xaa,0x55,0x32,0xa9, +0x48,0x1c,0xbc,0x43,0x0c,0x63,0x92,0x5e,0xe2,0xbe,0xb8,0x5d, +0x0d,0x29,0x7c,0x44,0x4f,0xe0,0xb9,0xc0,0x4e,0x0e,0x1c,0x49, +0xee,0x17,0xdd,0xc8,0x7c,0x16,0x4b,0x37,0xe8,0x44,0x6c,0xf6, +0x5e,0xe0,0x42,0xe2,0xff,0x23,0x6c,0x8b,0x62,0xb6,0x45,0xaf, +0x3c,0x46,0x37,0xe8,0x10,0x6b,0x7a,0x2b,0x74,0x38,0xcf,0x67, +0xdd,0xc0,0xff,0x24,0x79,0x6e,0xc4,0xc4,0x49,0x79,0xae,0x29, +0xcb,0xf3,0x10,0x57,0x7a,0x06,0x5d,0x9d,0xa0,0xc8,0xac,0x3b, +0xac,0x1b,0x6e,0x21,0xe5,0xb9,0xe5,0x44,0x4d,0x26,0x51,0x47, +0xe1,0x1c,0x73,0xe9,0x74,0x1e,0xc9,0xf3,0x84,0x6e,0x92,0xe7, +0x6f,0x29,0x8b,0xa8,0x5f,0x98,0xc5,0x88,0xb7,0xf0,0x34,0xd4, +0x85,0x5d,0x61,0x33,0x46,0x9a,0x80,0xe0,0x53,0x70,0xed,0xc2, +0x2b,0x7f,0x61,0x8e,0x40,0x8b,0x03,0x68,0x81,0x12,0xec,0xab, +0x37,0xe2,0xf1,0x0c,0x6c,0x5d,0x86,0xed,0x4f,0xe0,0x6e,0x0e, +0xbf,0xc3,0x08,0x36,0x97,0x49,0x46,0x37,0x90,0x8c,0x6e,0x90, +0x32,0xba,0xe1,0x3e,0x0b,0xbc,0xa8,0x89,0x5c,0xfc,0x1c,0x7c, +0x1c,0xfc,0x38,0x61,0xbc,0x96,0xb8,0x90,0xf5,0x3b,0xe8,0x17, +0x1e,0x10,0x91,0xa1,0xcd,0x77,0xe7,0x3f,0x6b,0x3e,0x57,0xc9, +0xe1,0xcb,0xcf,0x68,0xca,0x6b,0x27,0xd8,0x54,0xa7,0xf3,0x21, +0x55,0xb2,0x94,0xff,0x9e,0xa4,0x7c,0x75,0x5f,0xde,0xd3,0xf8, +0x9b,0x86,0x44,0xdf,0x6f,0xf7,0x5c,0x69,0xb5,0x9b,0xee,0x49, +0x32,0x44,0xa9,0x06,0x29,0x24,0xe5,0x1b,0x47,0x52,0x7e,0xf2, +0x50,0xca,0xb7,0x8e,0x4a,0xf9,0x57,0xc1,0xb0,0x6f,0x84,0xee, +0xfe,0x8f,0x60,0xc8,0xc4,0x5b,0x10,0xd6,0x85,0x85,0xf8,0x5d, +0x0d,0x78,0x97,0xa0,0xa0,0xdb,0xe9,0x8a,0x6d,0xd8,0x23,0xb0, +0x3c,0x03,0xa6,0x5c,0x81,0x8f,0x1b,0x5a,0x79,0x83,0xdf,0x3d, +0xbf,0x3d,0x86,0x3d,0x38,0xc1,0x86,0x70,0x92,0x34,0x7e,0x71, +0x3b,0x11,0x5a,0x29,0xc0,0x41,0x0a,0x33,0xb0,0xbf,0x45,0x86, +0x84,0xe8,0x32,0x38,0x07,0xdd,0xc1,0x93,0xab,0xb0,0xc6,0x31, +0xbc,0x7d,0xdf,0x49,0x1e,0x56,0x3b,0xc2,0x06,0x35,0xe0,0x55, +0x06,0x1c,0xb0,0x03,0x4a,0x73,0xca,0xd4,0x8e,0x1f,0x0d,0xc1, +0x43,0x02,0x41,0x25,0x81,0x20,0xae,0x9f,0xe8,0xf7,0xd0,0x6d, +0x5e,0x2b,0xac,0x89,0x15,0x3f,0x4e,0x21,0x30,0x4c,0xd6,0x8c, +0xd3,0xa4,0x10,0x74,0x07,0x74,0x05,0x10,0x08,0x54,0x86,0x18, +0xbf,0x45,0x82,0xe0,0x2a,0x3d,0x74,0x65,0xa0,0x13,0x57,0x20, +0xbc,0x97,0xad,0x0c,0xad,0x0b,0x6b,0x0c,0xcf,0x24,0xc6,0x6f, +0x6e,0xee,0x27,0xe5,0x9b,0x3a,0x38,0x7c,0xa9,0x65,0x12,0xfe, +0x10,0x2e,0x33,0x27,0x32,0x4e,0x66,0x1e,0xcf,0xd6,0x89,0xe6, +0x8f,0x78,0x1c,0xf1,0x3a,0xe4,0x43,0x3b,0xd0,0x1f,0x4e,0x36, +0xc4,0x0f,0x99,0xad,0xfa,0x93,0xf7,0xc3,0x8a,0xfd,0x19,0x06, +0x7c,0x7d,0x5c,0x75,0x5c,0x45,0x3c,0x27,0x8e,0x19,0x58,0xc6, +0x3a,0x13,0x51,0xe2,0xaa,0xe2,0x1a,0x19,0x10,0x61,0x43,0x44, +0x49,0xaa,0x89,0xc2,0x17,0xcc,0xad,0xbc,0x9c,0x86,0x38,0xd5, +0xd8,0xca,0x13,0x2d,0xc7,0x7a,0xb8,0xc1,0x15,0x2d,0x03,0x26, +0x0d,0x83,0x26,0xf5,0x0c,0xf6,0x16,0x74,0x50,0xd8,0xfe,0x60, +0x37,0x3f,0x4f,0x0e,0x9c,0xee,0x33,0xc2,0xed,0xd5,0x08,0xda, +0x99,0x94,0xdc,0x84,0xfc,0xb8,0x22,0x0e,0xa7,0x33,0xe0,0x06, +0x08,0xd5,0x5a,0x74,0xd8,0x5f,0x25,0xa9,0xea,0xcb,0x24,0xa5, +0x27,0x64,0xc5,0xa4,0xef,0x8e,0xe3,0xc3,0xbd,0x43,0xbc,0x02, +0x3d,0xe9,0x25,0xd3,0x9f,0x9f,0xee,0x2a,0xad,0xae,0xe3,0xc0, +0x0e,0x34,0x51,0x9d,0x10,0x6b,0xce,0x8a,0xb1,0x4b,0x50,0x83, +0x10,0x6b,0xca,0x0e,0x22,0x71,0x32,0x6a,0xad,0xab,0x6c,0xcf, +0x6d,0xd0,0xca,0xe4,0xdd,0xcd,0xed,0xcc,0x0c,0x2d,0x39,0xa1, +0x05,0xbf,0x8e,0xf2,0x5c,0xd3,0x1d,0x52,0x6d,0xdb,0x88,0x78, +0xae,0xf2,0x2c,0xf5,0xca,0xe3,0xc0,0xc4,0x17,0x65,0xd8,0xa7, +0x58,0xc6,0x59,0xf4,0x24,0xf2,0x61,0xd5,0x7e,0xb5,0xde,0x25, +0xe4,0xd7,0x09,0x43,0x09,0xb6,0x31,0x46,0x27,0x4c,0x2f,0x45, +0xf3,0x87,0x9b,0xc3,0x1a,0x83,0x2a,0x48,0xb4,0x6c,0xc1,0x5e, +0x68,0x70,0x4d,0x9d,0x90,0x89,0x1d,0xa1,0x9a,0x49,0x48,0x8d, +0x4f,0xa3,0x57,0x1d,0x3c,0x81,0x37,0x2f,0xe2,0x45,0xb6,0x4c, +0x49,0x35,0x2c,0xf9,0x32,0x30,0x36,0xe2,0xb3,0xb0,0x83,0x4a, +0x21,0xa1,0x87,0x4e,0x28,0x64,0xe6,0xc6,0x97,0x57,0x2b,0x57, +0xef,0xb3,0x64,0xd5,0x2c,0x2d,0x61,0xae,0xb6,0x0a,0xcc,0xbd, +0xe3,0x1f,0x7b,0xe8,0x70,0xe8,0x41,0xa5,0xd0,0x83,0xe4,0xfb, +0xd9,0x85,0x31,0x65,0xb5,0xca,0xd5,0x9a,0x16,0xec,0x46,0x53, +0x2b,0x50,0xd6,0x55,0x29,0x34,0x52,0xb0,0x81,0x45,0x17,0xf0, +0x9b,0xf8,0x3e,0x13,0x11,0x10,0xe6,0x1f,0x12,0xc0,0x41,0x80, +0xa8,0x34,0xf0,0x31,0x13,0xe5,0x72,0xd4,0x25,0xd2,0x8d,0x73, +0x8d,0x08,0x88,0xb4,0x95,0xa1,0xfa,0x90,0xe9,0xcf,0xcd,0xa9, +0x8f,0x57,0x8d,0x39,0x73,0xa2,0xf9,0x58,0x37,0x37,0xa8,0x5a, +0x3f,0xb0,0x86,0x99,0x47,0x6c,0x49,0xa8,0x43,0xa0,0x9d,0x8f, +0x6b,0x9b,0x37,0x9f,0x5d,0x96,0x52,0x99,0x50,0xc6,0x89,0x6e, +0x89,0x28,0xc4,0x2e,0xd0,0xc9,0xc7,0xb1,0xcd,0x8f,0xcf,0x2c, +0x4b,0x2d,0x4f,0xac,0xe4,0xee,0x25,0xa0,0x40,0x1b,0x7f,0x7b, +0xaf,0xfd,0xe4,0x63,0x39,0xa5,0xd2,0xb9,0x42,0xa2,0x73,0x1c, +0x0a,0xb3,0xf7,0x73,0xf0,0x76,0x3a,0xeb,0xc5,0x67,0x16,0x65, +0xd5,0x13,0xd5,0x2f,0xbd,0x34,0x1b,0x1f,0x77,0xfc,0x48,0x52, +0x04,0x5e,0xfd,0x29,0x0f,0xff,0x66,0xbe,0x2b,0xaf,0x2b,0x2c, +0x3d,0xcd,0x89,0x57,0x17,0xa0,0x7b,0xe5,0x75,0x05,0x05,0x79, +0xf1,0xf1,0xa7,0x8e,0x24,0x44,0xe2,0x35,0x8b,0xf9,0x68,0xc5, +0x9c,0x8a,0x6c,0x5b,0x05,0xec,0x00,0x3b,0x91,0x68,0x51,0x27, +0x58,0x30,0xa2,0x05,0x99,0xbe,0x06,0xc1,0xc2,0x94,0x15,0x41, +0x1c,0x8f,0x5a,0x6a,0xab,0xda,0x73,0xea,0x65,0x93,0x61,0x61, +0x64,0xc5,0x09,0x4d,0x7f,0xd0,0xb9,0x70,0x4a,0xb5,0x6b,0x4b, +0xe1,0x03,0x2a,0x3d,0x4b,0xbc,0x72,0xc9,0x5c,0xf8,0xd1,0xb9, +0xb0,0x8e,0xb7,0x24,0x73,0x11,0x5a,0xed,0x57,0xed,0x5d,0x2c, +0x9b,0x0b,0xbb,0x58,0xe3,0x13,0x66,0x97,0x4e,0xf1,0x87,0x9b, +0xc2,0xea,0x83,0xce,0x0c,0x65,0xae,0xcd,0x0d,0x61,0x06,0xc9, +0x5c,0xff,0xe7,0x85,0x0a,0x25,0xb0,0x75,0x44,0xa8,0xec,0x65, +0x36,0x8c,0x52,0x65,0xdb,0xe9,0x79,0xcb,0x57,0x98,0xab,0xa7, +0x25,0x55,0x46,0x85,0x0a,0x51,0x65,0x7b,0x6f,0x09,0x36,0xcc, +0xa0,0x49,0x17,0xc2,0xda,0x78,0x62,0x0f,0x4c,0xc4,0x7b,0xf6, +0xc2,0x1e,0x50,0xd9,0x8b,0x55,0x40,0x1b,0xc8,0x00,0xce,0xdd, +0xc3,0x3e,0xc2,0x38,0x56,0x70,0xc7,0x37,0x48,0xc2,0x7e,0x4f, +0x08,0xeb,0x7b,0x49,0x7e,0x7d,0x7f,0x8f,0x85,0xff,0x88,0x29, +0x88,0xa8,0x8b,0x75,0x90,0xc9,0x0a,0xbb,0xf1,0x6b,0x24,0x31, +0xb3,0x88,0x1c,0xa9,0x1d,0x91,0x62,0x6f,0x13,0x3a,0xae,0xef, +0x2b,0xf8,0x32,0xb1,0x9f,0x4a,0xb1,0xed,0xee,0xab,0x4d,0x77, +0xd3,0x37,0x17,0xf5,0x64,0x72,0x44,0x93,0x4a,0xb1,0x6e,0x19, +0x37,0x7d,0x12,0x4c,0x13,0x73,0xc3,0x71,0x8d,0xf6,0x18,0x2a, +0xc5,0xae,0x05,0x5f,0x1e,0x1a,0xe1,0xf2,0x1b,0xf8,0x3f,0x64, +0x84,0x56,0xf2,0x11,0xee,0x1b,0x19,0xe1,0x7c,0xc2,0x4d,0xd3, +0x08,0x37,0xe9,0x85,0x9b,0xcb,0xb9,0x49,0x83,0x4a,0xb1,0xf3, +0x4c,0xaf,0x24,0xc5,0x12,0xba,0xa3,0x25,0x6e,0x9a,0xd6,0x2f, +0x2c,0x67,0xc4,0x66,0x2d,0xe4,0x0b,0x33,0x2d,0xee,0xfa,0xfc, +0x74,0x10,0x6f,0x50,0xc2,0xff,0xe8,0x80,0x77,0x99,0xa3,0x17, +0xa2,0xfa,0xee,0x2b,0xd7,0xc5,0xd7,0x24,0x55,0xa4,0x38,0xb7, +0xf2,0xab,0xf7,0xc3,0x3b,0x07,0x40,0x21,0x9c,0x1b,0x1c,0xc3, +0xfa,0x1e,0xf2,0x39,0xec,0x7b,0x38,0x51,0x87,0xff,0x22,0xed, +0x8b,0xfc,0xde,0x9c,0xd0,0x76,0xde,0x21,0xc4,0x26,0xd8,0x8a, +0x78,0xe2,0x5b,0xf8,0x4d,0x36,0x01,0x74,0xf3,0x80,0x6b,0x5d, +0x9b,0x6f,0xd9,0x16,0x1b,0xdb,0x92,0x8b,0x67,0xf1,0x70,0x5e, +0xb0,0x44,0xe5,0x27,0xce,0x44,0x97,0xc5,0x70,0x1b,0x8f,0xed, +0x38,0xb1,0x57,0x05,0x5e,0x67,0x06,0x76,0xe2,0x4d,0x04,0xb4, +0x6e,0x02,0x5a,0xb7,0xc4,0xf2,0xdd,0x44,0xb7,0xb9,0x89,0xf3, +0x50,0xaa,0x44,0xe2,0x55,0x84,0xc1,0x08,0x50,0x01,0x45,0xf4, +0x4d,0xaa,0x58,0x54,0xd1,0x97,0xfb,0x2c,0xbe,0xdf,0x30,0x9e, +0x0f,0x23,0x0c,0x66,0x4b,0x18,0xec,0x30,0x36,0x22,0x40,0xa5, +0x68,0xc5,0x69,0x36,0x50,0x06,0x0b,0xec,0xa4,0x40,0x4d,0x1c, +0x22,0xf1,0x66,0xca,0x60,0x11,0x57,0x42,0xae,0x70,0x60,0x03, +0x2e,0xa8,0x1b,0x7e,0xd4,0x94,0xa4,0xfa,0xc7,0x48,0x5c,0x7c, +0x03,0x8b,0xb8,0x0b,0x2c,0x24,0xc8,0x4e,0x8d,0xa6,0xf3,0x4f, +0x88,0x54,0x9f,0xc4,0xac,0x3b,0xa2,0x73,0x70,0x08,0xb2,0xbd, +0x14,0xb2,0x1e,0xe6,0x72,0x41,0x3e,0x09,0x0a,0x42,0xe7,0xd7, +0x29,0x64,0x93,0x6e,0x09,0x8b,0x99,0x7f,0x4f,0xff,0x13,0xe1, +0xb7,0x63,0xfe,0x8c,0xfd,0x21,0x39,0xc6,0x37,0xd6,0xef,0x94, +0x5f,0x5b,0x01,0xef,0xf4,0xc0,0xf4,0x99,0xf5,0x15,0x43,0x57, +0x3e,0xc7,0x26,0xd7,0x34,0xdb,0x58,0x23,0x62,0xf7,0xa1,0xed, +0x87,0xf3,0x2e,0xe4,0x7d,0x91,0x7e,0x9f,0xc3,0x36,0x9d,0xe2, +0x7b,0xda,0xf8,0x0d,0xc6,0x77,0xed,0x81,0x65,0x6e,0xbb,0xb8, +0x80,0x80,0xa8,0x28,0x7f,0xd5,0x81,0x46,0x6c,0x47,0x30,0xe8, +0x20,0x18,0xd0,0x9d,0xab,0xab,0xa0,0xe3,0x01,0x91,0xb6,0x62, +0x14,0xd2,0x0f,0xd1,0x0d,0xd3,0x3d,0xc8,0xe1,0xf5,0x78,0x7e, +0x27,0xcc,0xc7,0x93,0xf6,0xc2,0x24,0x98,0xaf,0x8d,0xe7,0xc3, +0x76,0x56,0x3b,0x5c,0x33,0x72,0x6f,0x64,0xdc,0x5e,0x1e,0x4f, +0x4f,0xc3,0x6f,0xa7,0xe3,0x77,0x08,0x17,0x3e,0xc6,0x33,0x50, +0x2a,0x21,0xfe,0x44,0x09,0x36,0x39,0xf1,0x3f,0x80,0x78,0x42, +0xfc,0xb9,0x5f,0x13,0xd8,0x12,0x08,0x6c,0x9e,0xcb,0x6d,0x76, +0xd3,0xdd,0xc2,0xc6,0x28,0x85,0x48,0xfd,0x38,0x2d,0xfa,0x72, +0x08,0x91,0x05,0xfe,0x2d,0x1c,0x7c,0x4c,0x60,0xdb,0x3e,0x9a, +0xf8,0x49,0xed,0x13,0x82,0x84,0x37,0x50,0x33,0x3c,0xb9,0x8a, +0x7b,0x88,0x36,0x52,0x63,0xa9,0x36,0x8a,0xc9,0xd6,0x18,0xd1, +0x46,0x4a,0x44,0x1b,0xfd,0xc0,0x2c,0x3b,0xb4,0x3a,0x4c,0x4f, +0xc5,0x39,0x32,0x24,0xe0,0x39,0x6d,0x44,0x52,0xe8,0x62,0x8c, +0xa4,0x8d,0xbe,0xbd,0xc6,0x08,0x5f,0x0b,0xf6,0x44,0xa6,0xbe, +0x4d,0x94,0x91,0xc9,0x39,0x3c,0x8d,0x0c,0x75,0xda,0x39,0x6c, +0x02,0x3b,0x18,0xf8,0xe1,0x24,0x52,0x83,0xe8,0x7e,0xba,0xe5, +0x85,0xea,0x9b,0x68,0xa2,0x6f,0x4e,0x8b,0xdf,0x23,0xd3,0xb0, +0xf8,0x06,0x55,0xac,0xc6,0xe2,0x31,0xe7,0x7f,0xbd,0x77,0xe5, +0xb6,0x55,0x35,0xaf,0xb9,0x7d,0xf1,0xe6,0x4f,0xf4,0x38,0x1c, +0xb6,0x4f,0xf4,0x66,0x57,0xe7,0xb9,0xdd,0x51,0xc1,0xbb,0x98, +0xfa,0x8c,0x8c,0x7a,0xfa,0x31,0xed,0x0c,0x05,0x30,0x64,0xc5, +0xbd,0x4f,0x50,0x48,0x63,0x40,0x4b,0x40,0xa5,0x75,0x00,0x9f, +0x66,0x99,0x6c,0x4a,0x75,0xd0,0x58,0xa2,0x83,0x92,0x75,0xe5, +0x3a,0x28,0xbc,0x27,0xe8,0x5c,0x00,0xd1,0x41,0x2e,0x54,0x07, +0xdd,0xcc,0x7c,0x1a,0x47,0x75,0x50,0x38,0xd1,0x41,0xce,0x44, +0x07,0xa9,0x4a,0x3a,0xe8,0x14,0xd1,0x41,0xad,0x89,0x7c,0xd4, +0x8d,0x88,0xfe,0xb0,0x61,0x01,0xb0,0xe6,0x86,0xf0,0x26,0x49, +0x32,0x9b,0x97,0x05,0xc0,0x42,0x92,0x64,0xb3,0x49,0xc4,0x48, +0x49,0x16,0x41,0x23,0x46,0x9d,0x1e,0xe9,0x7f,0x9e,0xb9,0x3c, +0x94,0x64,0xd7,0xa8,0xdf,0x99,0xdd,0x2f,0xac,0x61,0x06,0x8d, +0x05,0x2d,0x94,0x30,0xe7,0xe2,0xa2,0x7f,0x7e,0x5a,0xd6,0xc1, +0xc3,0xeb,0xdf,0x19,0x3e,0xf6,0xb9,0xcb,0x6d,0x61,0x7c,0x57, +0xeb,0xcd,0x9b,0xb2,0xa8,0x5c,0x87,0xff,0xe3,0x87,0xf6,0xa7, +0xc9,0x3f,0x73,0xc2,0x2f,0x6a,0x24,0x24,0x2e,0x90,0x90,0xb8, +0x20,0xa5,0xc5,0x05,0x22,0x7e,0xd4,0x40,0x01,0x75,0x40,0x88, +0x0e,0xbb,0x69,0x2a,0xd2,0xc6,0x13,0x44,0xd5,0x1e,0x41,0x15, +0xbf,0x03,0xce,0x4b,0x59,0x22,0x37,0xae,0x11,0x5b,0x94,0xd6, +0xa8,0x8a,0x53,0x59,0xfc,0x0c,0xb4,0xa4,0x38,0x90,0x34,0x50, +0x70,0x95,0x2c,0x7d,0x9e,0x90,0xf4,0xa9,0xea,0xcb,0x7d,0x3a, +0x14,0x07,0x2b,0xad,0x49,0x1c,0x9c,0x24,0x02,0x80,0xc4,0xc1, +0xf3,0x02,0x40,0xf5,0x39,0x01,0x10,0x71,0x75,0x84,0x67,0xfe, +0x1f,0x41,0xb0,0x53,0x78,0x0b,0xe1,0xf7,0x35,0xe1,0x7d,0xf8, +0x54,0x53,0x60,0x88,0xf3,0x5e,0x79,0x4c,0x36,0x56,0x48,0x22, +0x23,0xac,0xdb,0x78,0x66,0x75,0xe9,0xaa,0xfa,0x0a,0xde,0xf5, +0xaa,0xe5,0x33,0x8b,0xab,0x1c,0x6c,0x38,0x82,0x7c,0x36,0x38, +0xae,0xd0,0xde,0x75,0xc6,0x90,0x3f,0xdf,0x5f,0xf3,0x6d,0xf6, +0x13,0x6e,0x80,0x0f,0x94,0x63,0xf2,0x91,0x58,0x8f,0x6c,0xfb, +0xec,0x2f,0xda,0xf4,0xe4,0x9c,0xcb,0xbc,0x9c,0x76,0x4b,0x37, +0x95,0x0f,0xd6,0x0c,0xd2,0xf7,0x33,0x3a,0x50,0xe5,0x5a,0xe5, +0x54,0x6d,0x69,0xc3,0x57,0x1a,0x95,0x9a,0x94,0x18,0x99,0xcd, +0xd9,0xbb,0x66,0xc5,0xc6,0x4a,0x23,0xfe,0x6e,0x7f,0xcf,0xed, +0xc6,0x6f,0x8b,0x0d,0x0a,0x75,0x8b,0x34,0x38,0x61,0x32,0x31, +0x3a,0x32,0xb9,0x58,0x23,0x83,0x8a,0xa6,0xcc,0xbf,0x08,0x54, +0xb5,0x7d,0xf9,0x5f,0x25,0xf4,0xcb,0x1d,0xa2,0x05,0x89,0x8c, +0x6c,0xa2,0xc6,0x24,0xb9,0xa8,0xd9,0x4c,0xa1,0xf2,0x97,0xa0, +0x9a,0x49,0xa1,0x3a,0x45,0x98,0xa6,0x2d,0x46,0x4a,0x99,0x11, +0xb9,0x28,0xf1,0x4b,0x27,0xe1,0x97,0x97,0xa0,0xfa,0x84,0x40, +0x45,0xf9,0x45,0xf7,0xa0,0xc5,0xdf,0xf0,0x8b,0x44,0xc9,0x93, +0xfa,0x09,0xbf,0x0c,0xea,0x90,0x68,0x49,0x9a,0x75,0x6e,0x29, +0x7e,0x7d,0x6e,0x69,0x0f,0x0d,0x17,0x83,0x87,0x5e,0x0f,0xb9, +0xad,0x8c,0xcf,0x2a,0xa3,0xf9,0xc0,0xcc,0xac,0xd0,0xe2,0x31, +0xfb,0x47,0xd3,0x93,0xa4,0x5f,0x39,0xe1,0x7b,0xb5,0x51,0x1c, +0xb2,0x1a,0x3a,0x08,0x38,0xcb,0xe0,0x43,0xd4,0x05,0xb1,0x5a, +0xac,0xf3,0x0c,0x24,0x6e,0x39,0x7f,0x9b,0x08,0xbe,0x7f,0xb1, +0x70,0x1c,0x3a,0xe9,0x26,0x41,0x4d,0x88,0x62,0x85,0xd9,0x78, +0x2c,0xd5,0x8a,0x3a,0x32,0xb9,0x2c,0x77,0xc8,0xbf,0x48,0x0e, +0x39,0xef,0xa9,0x34,0xfe,0xd0,0xed,0x1e,0x92,0x5c,0x4e,0xa6, +0x0e,0xd9,0x50,0x3e,0xfe,0xa1,0x92,0x34,0x75,0x28,0x54,0xce, +0xca,0xba,0x03,0x21,0xc3,0xa1,0xb2,0xf5,0x86,0xf0,0x0e,0x19, +0xbf,0xd3,0xcb,0xdd,0x81,0x25,0xa4,0xe8,0x2e,0x66,0xd6,0x1f, +0x1e,0x09,0x95,0x3d,0x74,0xfc,0x17,0xa5,0x50,0x21,0xe3,0x97, +0x77,0x07,0x16,0xf5,0x13,0x93,0xfc,0xef,0x29,0x84,0xdf,0x7f, +0x8b,0xc6,0x1f,0x26,0x7e,0x9f,0x1c,0xef,0x9d,0xe0,0x1d,0xe7, +0xd3,0x9e,0xcf,0xdb,0xdf,0x32,0x79,0x68,0xd3,0x69,0xe8,0xc9, +0xa7,0x1d,0xc8,0xb2,0xcb,0xb4,0xd1,0x8e,0xd8,0x1d,0xb9,0xeb, +0x70,0xc5,0xe5,0x8a,0x87,0x05,0xd7,0x35,0x52,0x79,0xcf,0xed, +0x66,0xd3,0xcd,0xb6,0x71,0x51,0xfe,0xfe,0x51,0xfe,0x13,0x07, +0xaa,0x30,0x4b,0x50,0xe9,0x23,0xa8,0xf4,0x49,0xa8,0xf4,0xdd, +0x67,0x57,0x88,0x53,0x11,0xcc,0xc3,0xb3,0x30,0xdf,0x01,0x3c, +0xfe,0x60,0x2f,0x7c,0xb0,0x92,0x89,0x2d,0x8c,0x29,0x3c,0x99, +0xaf,0x47,0x0a,0xb0,0x9a,0xcb,0x02,0xc7,0x5d,0xcd,0x2e,0x7c, +0x5a,0x49,0x4a,0x25,0xd1,0x40,0x3f,0xc1,0x2c,0xd8,0xad,0x8d, +0x77,0x83,0x43,0x0f,0x76,0xc0,0xf3,0x18,0x7c,0xbd,0x91,0xe0, +0x95,0xf1,0xbc,0xbd,0x90,0x69,0xeb,0x91,0xd4,0x5a,0x61,0x23, +0xd7,0xd6,0x2f,0xa5,0x96,0x8a,0x3c,0x5e,0xd4,0x5b,0x47,0x69, +0xeb,0x49,0x82,0x15,0x22,0xa5,0x68,0x25,0x2b,0x85,0x4a,0xae, +0x16,0x85,0xea,0xa0,0x2b,0x85,0x6a,0x9c,0x58,0x8b,0xfb,0x99, +0x35,0x47,0xb4,0xc3,0x2d,0x55,0xec,0x23,0x83,0x83,0xac,0x27, +0x1a,0x33,0x49,0x3a,0x0a,0x4d,0xcc,0xf9,0xfc,0xdc,0x8b,0x09, +0xaa,0xf1,0x1d,0x24,0xab,0xfe,0xa1,0x0c,0xfd,0xfd,0xf8,0x69, +0x2b,0x3c,0xed,0x63,0x60,0x86,0xf0,0x3e,0x32,0x9d,0xae,0xb1, +0x62,0xfd,0xf6,0x4a,0x03,0xfe,0xe1,0xed,0xde,0x1f,0x5b,0x7e, +0xe7,0x84,0x6d,0xd6,0x48,0x03,0xc7,0x9d,0x67,0xe1,0xdf,0xea, +0x68,0x1d,0x84,0x7e,0xce,0x82,0x22,0xbc,0x8e,0xcc,0x67,0xaf, +0x81,0x77,0x57,0x6e,0x2c,0xd7,0xe3,0x8b,0x4e,0xe7,0x9e,0xce, +0x2a,0xe0,0xc4,0x95,0xe7,0x84,0x28,0xb6,0xb4,0xa9,0xa8,0x2b, +0x9f,0xe8,0xfa,0x2b,0x71,0xa4,0x0e,0x85,0x3e,0x60,0xf1,0x97, +0x16,0x68,0x2f,0xe6,0xc4,0x50,0x78,0x83,0x4d,0xda,0xa7,0xf0, +0x2d,0xd3,0x90,0x91,0xd5,0xa0,0x2a,0xf8,0xfe,0xd8,0xc3,0x8a, +0xac,0xb8,0x1f,0x91,0x98,0xe9,0x08,0x2c,0xb2,0x0b,0xe4,0x53, +0xf7,0x67,0x68,0x25,0xd8,0x70,0xd0,0x08,0x6f,0xa1,0x92,0xbe, +0xcc,0x6f,0x63,0x6f,0x9a,0xc4,0xf3,0xe1,0x5b,0x7d,0x96,0xd2, +0x97,0x11,0x1d,0xb1,0x29,0x01,0x23,0x59,0x33,0x56,0xab,0x9e, +0x7a,0xad,0xc0,0x4e,0x0a,0xc6,0xbb,0x41,0x28,0x5e,0x2a,0xd3, +0x0d,0x71,0x94,0x67,0x2e,0x8f,0x58,0x4e,0xa2,0xd8,0x66,0x92, +0xe0,0x09,0xf8,0xff,0xa6,0xd8,0xc4,0x36,0xc1,0x02,0x01,0xd6, +0xed,0x18,0xe4,0x98,0x9d,0x81,0x29,0xfb,0x1e,0x64,0xde,0xcf, +0xb9,0x5d,0xa0,0x04,0x3a,0xe7,0x06,0x2e,0x77,0xb3,0x70,0x18, +0x96,0x21,0xbc,0x8c,0x98,0x97,0x65,0xac,0x50,0x8f,0x3f,0x7c, +0x49,0xb9,0x59,0x68,0x23,0x9a,0x40,0x78,0x19,0x0b,0x8e,0x63, +0xc8,0xc7,0x66,0x32,0x16,0x41,0xe6,0xc1,0xe6,0x21,0x9c,0xf0, +0xa0,0x41,0xca,0x99,0xc4,0x51,0x9c,0x21,0xbe,0x4e,0x62,0xa0, +0xae,0xaf,0xe0,0xab,0x84,0x9b,0xb4,0x8d,0xb2,0xc3,0x7d,0x95, +0x39,0xe1,0x8c,0x02,0xac,0x2f,0xef,0xa8,0xd1,0x9c,0xe9,0x0a, +0x90,0x3a,0x6a,0xb3,0x87,0x62,0x60,0xa8,0xa3,0x46,0x73,0x46, +0x97,0x68,0x12,0x80,0x3e,0x7c,0x99,0x04,0xc2,0x16,0xe6,0xa5, +0x40,0x98,0x28,0xd6,0x91,0x2a,0xbb,0xf6,0xb0,0x0e,0xb1,0x98, +0xb2,0x40,0xd0,0xa7,0x16,0xf3,0x2c,0x73,0xa1,0x40,0x0a,0x84, +0x4e,0x12,0x08,0x6f,0x2b,0xc3,0xf7,0xfd,0x98,0xe8,0xd1,0x1c, +0x78,0x8a,0x7c,0xce,0x04,0x34,0x86,0x74,0x74,0xfc,0x56,0xf4, +0x57,0xda,0x7d,0xa3,0x14,0x3e,0x64,0x97,0xd7,0x5a,0xfb,0x75, +0xa1,0xf7,0x23,0xbf,0x3e,0xf2,0x0b,0x87,0x3f,0xe9,0x84,0x05, +0x4c,0x54,0xfd,0x67,0x8d,0x4d,0xca,0x78,0xaa,0x36,0x4c,0x65, +0x8d,0x8f,0x99,0x1c,0x33,0x53,0x99,0x86,0xf5,0x98,0xc2,0xa4, +0x82,0xe4,0xec,0x14,0xe7,0x26,0x5e,0xdb,0x71,0xad,0xd3,0x36, +0x9f,0x2c,0x5d,0x3e,0x2f,0xb6,0x20,0x2e,0x3f,0x9e,0x83,0x8d, +0xf3,0xb5,0xbf,0x05,0x1d,0x96,0xf8,0x86,0x10,0xc7,0xb0,0xc4, +0x7d,0x7c,0x61,0x5c,0x71,0x62,0x71,0x22,0x07,0x9f,0x2d,0x61, +0x53,0xb5,0x14,0x2e,0x31,0xb5,0x99,0xe9,0x35,0xaa,0x38,0x8b, +0x2d,0x49,0x29,0x4c,0xc9,0x4b,0x3d,0xd8,0xc9,0x7b,0x06,0xbb, +0x05,0xbb,0x06,0x73,0x78,0xed,0xef,0x6c,0x34,0xa8,0x24,0xc0, +0x5b,0x19,0xf3,0x1d,0xb5,0x2c,0x75,0xf5,0xcd,0x4f,0xeb,0xf3, +0x0d,0x95,0x95,0x0d,0xc5,0x4d,0x49,0xe6,0xc9,0x76,0xe9,0x07, +0x4e,0x9b,0xb7,0xc7,0xc7,0x9c,0xcb,0xc0,0x8b,0x79,0xe3,0x5c, +0x85,0x6a,0xc1,0x04,0xf9,0x9e,0x77,0xef,0x71,0x6f,0x31,0x39, +0xc0,0xe7,0x19,0xe5,0xef,0xc9,0x50,0xe7,0x84,0x4f,0xf0,0x1b, +0x24,0x70,0x63,0x3f,0x67,0x71,0xac,0x24,0x8f,0x62,0x49,0x58, +0xa6,0x8a,0xf1,0xf2,0xd8,0xb3,0x0f,0xa0,0xb1,0x47,0xdc,0x2e, +0x07,0xa5,0x44,0x3f,0x14,0xf7,0x65,0x7c,0x47,0x62,0x8f,0xf8, +0xbf,0xad,0x7e,0x4b,0xe9,0x96,0x57,0x0b,0x6c,0x86,0x92,0xa5, +0xd8,0xab,0x93,0xc5,0x5e,0x60,0xb3,0x74,0xe2,0x0d,0x89,0x3d, +0xb5,0xe3,0x1a,0xf5,0x34,0xf6,0x22,0x7b,0xa9,0xd6,0x19,0xf8, +0x6e,0x20,0x06,0x19,0x97,0x98,0xe6,0x9a,0x64,0x3a,0xda,0xf1, +0xcd,0x1e,0xb5,0xde,0x0d,0x4e,0xdc,0x41,0xd1,0x17,0x11,0x95, +0x72,0x8e,0x8d,0x89,0x8f,0x49,0x38,0x95,0x70,0xe2,0x20,0x7f, +0x39,0xb1,0x27,0xad,0x23,0xab,0xd1,0xae,0xd3,0xbd,0x27,0xb8, +0x21,0x2c,0x2b,0x29,0xa6,0x32,0xed,0x5b,0xde,0x24,0xdb,0x07, +0xde,0x34,0x4e,0x34,0x4f,0xb7,0xcd,0x53,0x6a,0xc9,0x6b,0x28, +0xaa,0xad,0x70,0x28,0xe1,0x1f,0x35,0xc0,0x0d,0x26,0xa8,0xe2, +0x60,0xcd,0xa1,0x26,0xed,0xc3,0xfc,0x49,0xb3,0x58,0xab,0x44, +0x5b,0x0e,0x8e,0x9f,0x67,0xae,0x46,0x9f,0x8f,0x6d,0x4a,0xf0, +0xa8,0xe1,0xe7,0x79,0xc1,0x07,0x11,0xb0,0x36,0x2a,0xce,0x8c, +0x3f,0x7f,0xee,0xf8,0x89,0x0e,0x55,0x2d,0xb0,0x35,0xc5,0xb6, +0xda,0xec,0xe6,0xc3,0x1b,0x0f,0x6f,0x8f,0x8a,0x31,0xe1,0xaf, +0x1d,0xef,0x3b,0x71,0x35,0x9a,0xd3,0x84,0x89,0x2c,0xbd,0xbb, +0xf6,0x43,0xa6,0x22,0x25,0xa9,0x42,0xb5,0x9b,0xbd,0x71,0xea, +0x4a,0x6c,0x47,0xec,0xe1,0x7a,0x5e,0x37,0x7c,0x67,0xc4,0xd6, +0x43,0x5c,0x2b,0xce,0x64,0x33,0xcc,0x73,0xed,0x8a,0x9c,0x8c, +0xfd,0x0d,0x82,0xb5,0x42,0x63,0xfc,0x78,0xd3,0x98,0x70,0xdf, +0x10,0xef,0x20,0x1f,0x25,0x38,0x45,0x3c,0xf7,0x42,0x26,0xca, +0xfd,0xe8,0x81,0x48,0x4f,0xce,0x2d,0x32,0xf0,0x90,0xed,0xc4, +0xa5,0x4c,0xaa,0xa9,0xc2,0x63,0xa6,0x3f,0x27,0xbb,0x26,0x4e, +0x35,0xa6,0xf4,0x44,0xe3,0xb1,0x36,0x6e,0x70,0x71,0xdd,0x80, +0x6e,0xdd,0xa0,0x6e,0x25,0x23,0xfc,0x4b,0x58,0x83,0x2c,0x1d, +0x8c,0x9d,0xb5,0x3d,0xdc,0xf2,0xbc,0x0a,0x7d,0xcb,0xb8,0x1f, +0xa0,0x0b,0x89,0x47,0xaa,0x84,0x23,0x8c,0x78,0x84,0xa0,0x5c, +0x2d,0x1c,0xb1,0x62,0x07,0xdf,0x81,0xff,0xa0,0xe6,0xea,0x8a, +0xe6,0x9c,0x1a,0x62,0xd8,0x3c,0xac,0xed,0xac,0x8c,0x6d,0x39, +0xa1,0xe1,0x47,0x94,0xe7,0x96,0xee,0x9c,0xea,0x78,0x96,0x18, +0xb6,0x72,0xaf,0x22,0xaf,0x6c,0x0e,0x8c,0x89,0x61,0x73,0x4a, +0xb1,0x8d,0xb3,0xa1,0x86,0xad,0xc2,0xaf,0xc2,0xbb,0x90,0x03, +0x47,0x62,0xd8,0x1c,0x62,0xcd,0x4f,0x58,0x10,0xc3,0x76,0xa8, +0x3e,0xac,0x36,0xa8,0x94,0xe4,0x81,0xd6,0xff,0xbb,0xda,0x29, +0x5e,0x12,0x76,0x20,0xd8,0xc0,0xc4,0x64,0x9c,0xca,0x88,0xce, +0xd0,0x89,0xe1,0x5d,0xa7,0x1a,0x2d,0x52,0xdb,0x78,0x46,0x76, +0xc2,0x74,0x4c,0x2c,0x07,0x8b,0x58,0x58,0x17,0x0e,0xd3,0x4c, +0x60,0x9c,0x4a,0x93,0x55,0xde,0x8d,0xd4,0xbe,0xb8,0x6f,0x94, +0x70,0x30,0x2c,0x81,0xf7,0x98,0x14,0x4d,0x85,0xdf,0x98,0x9a, +0xf4,0xcc,0x7a,0x55,0xe1,0xeb,0x19,0x6c,0x7e,0x55,0x61,0x67, +0x72,0x23,0xa7,0x71,0x10,0x05,0x59,0x1d,0xd0,0x77,0xb5,0x22, +0x1a,0x89,0x29,0xae,0xce,0xab,0xcf,0x6c,0x22,0x4a,0x24,0xf4, +0xa5,0xb2,0x7b,0x19,0x76,0xa0,0xe5,0x58,0xe9,0x11,0xd3,0x02, +0x4a,0x08,0x2b,0x7d,0x4d,0x37,0x56,0x4c,0xd2,0x47,0x30,0x67, +0x11,0x7b,0xa2,0xe1,0x58,0xcb,0xb1,0x2e,0x0e,0x2b,0x29,0x7e, +0x0d,0x73,0x3e,0x65,0x84,0x6b,0xc0,0xa3,0x10,0x49,0xa1,0xd9, +0x12,0x0a,0x95,0x9a,0x36,0x1c,0x5c,0x07,0x0e,0x95,0xf7,0x65, +0x7f,0x1d,0xd7,0x6f,0x4c,0x9d,0x8e,0xf7,0x32,0xba,0x6d,0x22, +0x10,0x9b,0x10,0xa7,0x93,0x3c,0xe4,0x74,0x02,0x24,0x0a,0x45, +0x43,0x14,0xda,0x24,0x77,0x3a,0x97,0x87,0x30,0x5c,0x75,0x43, +0x78,0x43,0x92,0x6a,0x2f,0x59,0xc2,0x05,0x04,0xc3,0x99,0x43, +0x96,0x30,0x62,0xd8,0x12,0x5e,0x78,0xc1,0x12,0xce,0xec,0x17, +0x56,0x31,0x83,0xff,0xa1,0x14,0xea,0x85,0x6f,0x60,0x2f,0x16, +0x92,0xe9,0xf2,0xf1,0x38,0x6c,0x0e,0xc4,0xea,0x1e,0x7e,0x4a, +0x46,0x7d,0x9e,0x8c,0xfa,0xbc,0x34,0xea,0xf3,0xf7,0x59,0xd1, +0x66,0x01,0x12,0x6f,0xf6,0x60,0x6b,0xec,0x0d,0xaa,0xf0,0x16, +0xbd,0xa4,0xe0,0x37,0xa6,0x3a,0x2d,0xb3,0x4e,0x55,0x88,0x64, +0xf7,0xd1,0x4b,0x47,0xbc,0xff,0xc2,0xde,0x0c,0x78,0xd3,0x77, +0x30,0xbd,0xe1,0x75,0xf0,0x66,0x06,0xb8,0x63,0x54,0xa7,0xea, +0x3c,0x67,0xf3,0x5e,0x28,0xa6,0x23,0x8d,0xaa,0xe1,0x62,0x1a, +0xda,0x1d,0x28,0x89,0x8f,0x8f,0x5f,0x51,0x4c,0x65,0x83,0x9f, +0x78,0x03,0x7f,0x43,0x06,0xaf,0x23,0x37,0x77,0x9a,0x23,0x01, +0x34,0x8d,0x0c,0xfe,0xad,0x51,0xbd,0x3a,0xab,0x89,0x5a,0xb4, +0xa2,0x76,0x32,0x97,0x0a,0xf2,0x48,0x00,0xc5,0xcb,0x07,0xff, +0x56,0xbf,0x30,0x91,0x11,0x0f,0x81,0x03,0xda,0xe7,0xaf,0x19, +0xa8,0x19,0xcc,0x0d,0xcc,0xc6,0xdb,0xba,0xc4,0x55,0x5a,0x58, +0x7d,0x70,0x19,0xbb,0x2b,0x68,0x67,0xc8,0xb6,0x90,0x44,0x0d, +0x1e,0x7f,0x72,0x1a,0xf3,0xc5,0xf8,0xa3,0x5a,0x4e,0xf8,0x60, +0x40,0x91,0x20,0x52,0x76,0x87,0x15,0x9d,0x36,0x21,0x58,0xc8, +0xce,0x0e,0x5e,0xa7,0xfb,0xa9,0x4a,0xa5,0x59,0x59,0x4f,0x56, +0x67,0x5c,0x9d,0xd2,0xb1,0x98,0x93,0x9f,0x1d,0x3b,0x54,0x03, +0x93,0xf9,0xda,0x42,0x6b,0xcc,0x1f,0x4e,0x0e,0x89,0x0e,0x39, +0xa8,0x14,0x12,0x7e,0xe4,0xa4,0xc2,0xa9,0x33,0x27,0x5a,0xab, +0x95,0xf1,0xa7,0x2c,0x76,0x54,0x84,0x49,0xec,0xec,0x90,0xb5, +0xe4,0x07,0x2b,0x4c,0xcb,0xcf,0x65,0x74,0xc5,0x35,0xd0,0x1f, +0x3c,0x76,0x3c,0xb2,0x0e,0xa6,0xf3,0xb5,0xa7,0x2d,0xb1,0xca, +0xa1,0xe4,0xd0,0xcf,0x82,0x23,0x95,0x42,0x22,0x8e,0xd2,0x1f, +0x3c,0x49,0x7f,0x50,0x95,0x15,0xb6,0xe8,0x91,0x39,0x28,0x23, +0xc6,0xb9,0x42,0x4c,0x78,0x3e,0x9c,0x12,0x9e,0x0b,0x27,0xa3, +0x78,0xfe,0xa0,0x3c,0x9c,0x02,0xa4,0x70,0x4a,0xd1,0x8a,0x1d, +0x32,0xce,0x34,0x9c,0x14,0x87,0xe4,0x6c,0xf3,0xa8,0x70,0xd2, +0xa0,0x88,0xee,0xb9,0x21,0x8c,0x23,0x88,0xba,0xbc,0x6c,0x97, +0x97,0x91,0x8a,0xbc,0x82,0x2e,0xf6,0xc8,0xc3,0xe9,0x6f,0x16, +0x7b,0x56,0xf6,0x0b,0x7b,0x98,0xc1,0x3f,0x49,0x38,0x89,0x80, +0xcb,0x04,0x60,0x35,0x61,0x37,0x82,0x55,0x78,0x02,0x5e,0xc5, +0x08,0x99,0x0e,0x2f,0x2e,0xdd,0x80,0x31,0x3d,0x55,0x47,0xf6, +0x6d,0x58,0x45,0x3e,0x8a,0x57,0xc1,0x14,0x20,0x1f,0xfd,0x6e, +0xdf,0xff,0xdd,0x8a,0x8e,0x4c,0xaf,0xbf,0x62,0x45,0x07,0xee, +0x9b,0xa1,0x7c,0xab,0x7c,0x83,0x0c,0x93,0xd6,0x72,0xde,0xaf, +0xce,0xb9,0xc3,0xa3,0x82,0x83,0x60,0xf0,0x43,0x2d,0x6d,0x4d, +0x5f,0xe4,0x5f,0xd6,0x2b,0xe4,0x7d,0xb4,0xf5,0x96,0x99,0x99, +0x0e,0x21,0x31,0xed,0x06,0xfe,0x85,0x20,0x61,0xf8,0x7c,0x62, +0x51,0x24,0x66,0x91,0xd8,0x1a,0x37,0x8a,0x9c,0xac,0x64,0x7d, +0xe0,0x6e,0xa6,0xb7,0x20,0x6f,0x54,0x62,0x8d,0xeb,0x17,0xa6, +0x31,0xe2,0x1d,0x7a,0x8d,0xf5,0xd4,0x7b,0xed,0x6b,0xf0,0x38, +0x4d,0x18,0x07,0xe3,0xa5,0xc7,0x4a,0xdd,0x2f,0x60,0xea,0x42, +0x5d,0x61,0x7e,0x3b,0x2b,0x28,0x11,0x8b,0xbe,0x1e,0x6a,0x89, +0x29,0x0a,0xd5,0x44,0x30,0x95,0x7c,0x62,0x2a,0x3b,0x30,0x69, +0x3b,0x81,0xa7,0x96,0x24,0xdb,0xbc,0xc1,0x05,0xa8,0x07,0xe7, +0x08,0x93,0xe0,0x81,0x68,0xc4,0xe2,0x5c,0x5c,0x8b,0xc0,0x01, +0x8f,0xc1,0x0e,0x8c,0x30,0x15,0xa6,0x48,0xcd,0x13,0xa9,0xfd, +0x4b,0x20,0xea,0xa0,0x59,0x75,0x13,0xe2,0x50,0x45,0x5f,0x8e, +0xac,0x79,0x72,0x50,0xde,0x3c,0x89,0xa4,0xcd,0x13,0xa9,0xfd, +0x3b,0x2a,0x06,0x94,0x87,0x62,0x40,0xd6,0x05,0xa0,0xcd,0x13, +0xd1,0x2d,0x10,0x61,0x07,0x18,0x0b,0x0e,0x8c,0x1c,0x84,0x49, +0x37,0xf0,0x8f,0x04,0x04,0xfd,0x97,0x13,0x6c,0x06,0x01,0xe1, +0x5d,0x0a,0x02,0x4d,0xb0,0x88,0x60,0xc2,0x2e,0x5a,0x32,0x10, +0x9e,0x4f,0xb0,0xb1,0xfd,0x84,0xc7,0x07,0x57,0x0b,0x73,0xd0, +0x97,0xfb,0x96,0x80,0x9a,0xae,0xb0,0x80,0x0e,0xd9,0x89,0x8c, +0xb8,0x92,0x8c,0x58,0x65,0x25,0x82,0x9f,0xc1,0x18,0xff,0xcc, +0x08,0xab,0xf1,0x22,0x32,0xe4,0x4a,0x12,0x11,0xba,0x07,0xd1, +0x2c,0x08,0xfa,0x99,0xc5,0xd7,0xc4,0x71,0x48,0x3f,0x52,0xf3, +0xd0,0xbe,0x43,0x5c,0x2e,0x7b,0xb9,0xb0,0xa7,0xae,0xb4,0x86, +0x6b,0x10,0xc7,0xeb,0xe2,0x76,0xf6,0x80,0xbb,0x9e,0xb3,0xae, +0x37,0xb7,0x8f,0xdd,0x79,0x68,0xfb,0x91,0x3d,0x47,0x4f,0xea, +0xf0,0x17,0x4e,0x5c,0x3e,0xd9,0x1b,0x4d,0x86,0x05,0xaf,0xb1, +0x29,0xda,0x0a,0x4f,0xe9,0x41,0x73,0xf5,0xf4,0x98,0x87,0x9e, +0xe8,0xee,0x53,0x67,0x63,0x38,0x7c,0xa1,0xf4,0x65,0x0e,0xba, +0x2f,0xe3,0xa0,0x67,0x71,0x37,0xe5,0xcd,0x72,0x2a,0xe8,0x3f, +0x93,0x73,0x50,0xec,0xd0,0x7a,0x01,0x45,0xeb,0xa3,0x21,0x0e, +0x6a,0x91,0x34,0xec,0x95,0x11,0xaf,0xfc,0xff,0xc8,0x00,0xd2, +0xfb,0x54,0x0f,0xc6,0x47,0x1e,0x0b,0x0e,0x0d,0x0e,0xe5,0x0f, +0x77,0xe0,0xb9,0xf8,0x67,0x98,0x7b,0x1f,0x6f,0xea,0x80,0x4d, +0x5f,0x6a,0x2f,0x81,0x2d,0x3a,0x78,0xcb,0x6a,0x98,0x03,0x3f, +0x63,0x9e,0xf1,0xde,0xb0,0x67,0xd9,0xe2,0x15,0x55,0xba,0xfc, +0xdd,0xbb,0xdd,0x5f,0xc4,0x3e,0xe4,0x62,0xa0,0xa6,0x13,0xc7, +0x31,0x31,0xc7,0x3f,0x3b,0x79,0x48,0x05,0xbf,0x09,0x1f,0xd4, +0x54,0x2a,0x08,0x73,0x85,0xff,0xbc,0x54,0xaf,0x6e,0xc2,0x38, +0x34,0xfb,0xc7,0x9f,0x18,0xbc,0x60,0x0e,0x9a,0xf9,0xe3,0x2f, +0x0c,0x2c,0x80,0xe9,0x68,0xfa,0xec,0xdf,0x58,0xfc,0x89,0xe2, +0x2f,0xd3,0x67,0x32,0x82,0x1b,0xa9,0x63,0xa9,0x2f,0x2e,0xaa, +0x7c,0x29,0x6f,0x28,0x24,0xd0,0x90,0xa2,0x8b,0x2a,0xb4,0xa1, +0x10,0xfd,0xca,0x86,0x42,0x20,0x05,0x49,0x6d,0x88,0xa8,0x69, +0x48,0xc9,0x41,0xfa,0xe4,0x06,0xc6,0x04,0x24,0xd3,0x97,0x41, +0x9a,0x4b,0x40,0x52,0x7e,0x2e,0x8e,0xf6,0x52,0xa2,0x3e,0x27, +0x25,0xd3,0x08,0x48,0xca,0xfd,0xc2,0x27,0xcc,0xe0,0xbb,0xc4, +0x73,0x44,0xc4,0x46,0x7c,0x16,0x1e,0xe9,0x17,0xcc,0x1f,0xea, +0xc6,0x8b,0xf0,0xd7,0xb0,0xe8,0x09,0xde,0xda,0x0e,0x5b,0x9f, +0x68,0x2f,0x85,0x6d,0xba,0x78,0xdb,0x52,0x58,0x08,0x5f,0x63, +0x55,0xc6,0x73,0xc5,0xee,0x15,0x8b,0x17,0x57,0x18,0xf0,0x77, +0xef,0x5f,0xb8,0x17,0xf7,0x8c,0x80,0x54,0x2f,0x81,0x74,0x42, +0x02,0x69,0x0c,0xa0,0x9a,0x5a,0x05,0x61,0xf6,0xc0,0x6b,0x04, +0xa4,0x16,0x02,0x52,0x8b,0x04,0x52,0x0b,0x01,0xe9,0x8e,0x33, +0x82,0x23,0x53,0xf0,0x11,0x16,0x2f,0xa2,0x6f,0x78,0x1e,0xf9, +0x0b,0x8e,0xb0,0x5a,0x15,0x28,0xa3,0x39,0x85,0x68,0x39,0xeb, +0x64,0x3e,0xdc,0x28,0x50,0xd3,0xcf,0x84,0xd8,0x5b,0xac,0x88, +0x32,0xcc,0x53,0x0c,0x12,0x75,0x2b,0xd3,0xf8,0xd0,0x4e,0xff, +0x56,0xbf,0x7a,0x4e,0x78,0x08,0xdf,0xfe,0xff,0x03,0xe0,0x9c, +0x1b,0xf8,0x0f,0x02,0xa0,0xc9,0xcb,0x6c,0x34,0x87,0x00,0xc8, +0x0f,0x55,0x3a,0x09,0xc0,0x7d,0x14,0xc0,0xee,0x17,0x00,0x9c, +0xd0,0x2f,0xcc,0x61,0xc4,0x20,0x58,0x82,0x66,0xe0,0x8f,0xf7, +0xc2,0xc7,0xe0,0xcb,0x3c,0xad,0xea,0x68,0x2b,0xfa,0x9c,0xc3, +0xfa,0xc2,0x5c,0xd8,0xc9,0x24,0xe4,0x27,0x14,0xc6,0xe6,0x6b, +0xc6,0xf2,0x11,0xae,0x61,0xfb,0x83,0x9d,0x89,0x87,0x15,0xe7, +0xe2,0xf1,0x8c,0x9b,0x9e,0x99,0xcd,0x7a,0xc7,0x0c,0x53,0xde, +0x59,0x17,0x67,0x80,0x79,0x0f,0x36,0xff,0x95,0x11,0xde,0x15, +0x1e,0x11,0xdc,0x9a,0x48,0x06,0xf7,0xc3,0x44,0x34,0x05,0xbf, +0xff,0x07,0xd3,0x2e,0x7b,0x15,0xff,0x4d,0x78,0x9f,0x15,0x74, +0x13,0x08,0x96,0x4d,0x84,0xbd,0xd6,0xaa,0xa3,0x3f,0x98,0x28, +0x83,0xc3,0xe6,0x07,0xed,0xb8,0x4f,0x19,0x3c,0x55,0x31,0xae, +0xf2,0x64,0xed,0xf1,0x16,0x8e,0x7c,0x0c,0x31,0xc2,0xeb,0xe0, +0xf2,0x7c,0xf7,0x97,0x82,0x75,0x4b,0x4a,0xc9,0x9c,0xe7,0xbb, +0xbf,0x87,0x5e,0xd5,0xfd,0x7d,0x05,0x81,0xc9,0x7b,0xbe,0x6f, +0xf4,0x11,0x21,0xd3,0x05,0xdb,0xa5,0x68,0x3b,0x35,0xda,0x5f, +0x7d,0x4c,0xfc,0xd5,0x6f,0xcc,0xda,0x23,0x32,0x7f,0x15,0x44, +0xfc,0x95,0x1e,0x4d,0xc9,0x36,0xe6,0x62,0x41,0xde,0x28,0x7f, +0xf5,0x5b,0xbf,0xf0,0x06,0x33,0x38,0x51,0x98,0x80,0xfe,0x50, +0x9f,0x02,0xe6,0x5a,0x82,0x75,0x17,0x71,0x8c,0xc1,0xc4,0x9c, +0x24,0x11,0x57,0xfd,0xce,0xa0,0x21,0x72,0xa9,0x70,0xad,0x75, +0x6b,0xec,0xfa,0xa3,0x02,0xbf,0x9f,0x8a,0xe7,0x72,0x55,0xb0, +0x82,0x8d,0x29,0x3c,0x55,0x14,0x5d,0xa4,0x17,0xcb,0x7b,0x03, +0x32,0x87,0x0f,0xf7,0x4e,0x2f,0x35,0xe2,0x53,0x0b,0x52,0x0a, +0x93,0x8b,0x32,0x76,0xe4,0xed,0x2a,0x56,0xb7,0xde,0x69,0xac, +0xa5,0x67,0x5a,0x64,0xc0,0xb7,0x37,0x37,0xb6,0x57,0x5e,0x28, +0xd6,0x29,0x37,0xac,0x30,0x4f,0xcd,0xe1,0x73,0x03,0x69,0xd1, +0x8e,0xed,0x57,0x32,0x8e,0x8f,0xd0,0x0a,0xd8,0xe6,0xae,0xa9, +0x04,0x57,0x07,0xc6,0x23,0x0f,0xf8,0xc0,0x02,0x94,0xf7,0x4d, +0x2e,0xd6,0xe7,0x33,0x4a,0x52,0x2a,0x52,0x2a,0x38,0x71,0x41, +0xa7,0xd0,0xca,0xa6,0xb6,0x27,0x77,0xc4,0xb7,0x73,0x03,0x13, +0x4c,0x89,0x43,0x4a,0x7a,0xc0,0xc2,0x79,0x30,0x44,0x49,0xe5, +0x89,0xe5,0x09,0x15,0x1c,0x1e,0xc7,0x84,0x00,0xb7,0x7f,0xb2, +0xe9,0xa7,0xfb,0x7b,0xdd,0xfa,0xfc,0x6f,0x72,0x79,0xf5,0x28, +0xcb,0x3e,0x4f,0x2f,0xc9,0xba,0x22,0x9f,0x0f,0xaa,0xf6,0x38, +0xeb,0x5d,0xce,0x09,0xc7,0x45,0x45,0xea,0xa8,0xda,0x03,0x25, +0xed,0xb0,0x3f,0x43,0xd2,0x0e,0x8a,0x58,0x41,0x5e,0x22,0xea, +0x47,0x4a,0xc4,0x87,0x43,0x08,0x37,0x0d,0xf7,0xd7,0xe5,0xe1, +0x38,0xf5,0x06,0xfe,0x99,0x84,0xa3,0xc1,0xcb,0xf9,0x3c,0x93, +0x84,0xe3,0x07,0xc3,0xf9,0xfc,0xb7,0xc5,0xf1,0x83,0x7e,0x61, +0x2a,0xf3,0xef,0x0f,0x04,0x4b,0x04,0x71,0x78,0x35,0x8e,0x63, +0x2b,0x15,0xc9,0x17,0x1b,0xc8,0x17,0x84,0x94,0xad,0x11,0x5e, +0xd2,0x07,0x4b,0x58,0xcc,0x2b,0xe2,0x25,0xb7,0xc9,0x17,0x82, +0x11,0x7e,0x87,0x04,0x5c,0x0d,0x49,0xd4,0x1a,0x29,0x51,0x6b, +0x48,0xa2,0x22,0x58,0x8b,0xda,0xe1,0x4f,0x5d,0x56,0x18,0x07, +0x08,0xb5,0x8b,0x0b,0x75,0xbf,0x65,0x43,0xcd,0xfd,0x8c,0x3d, +0x75,0x39,0x9c,0xc6,0x44,0x39,0x1c,0xb1,0x8c,0xb0,0xe7,0x6c, +0x23,0x82,0xc3,0x6c,0x27,0xce,0xa0,0x47,0x3c,0x7d,0xc7,0x5c, +0x2c,0xcc,0x39,0x9f,0xa0,0x1a,0xd7,0x1a,0x7d,0xe9,0xf8,0x55, +0x0e,0x0e,0x33,0x09,0x85,0x09,0xc5,0x71,0x25,0xf4,0x5d,0x94, +0x37,0xfe,0xa7,0x4a,0x6a,0x34,0x12,0x88,0x23,0x95,0x54,0xa6, +0x4f,0xff,0xae,0x92,0xca,0x03,0x51,0xb1,0x0f,0x7f,0x45,0x02, +0x51,0x53,0x6e,0xf4,0x35,0x47,0x02,0x91,0xea,0xd3,0x31,0x24, +0x10,0x65,0xb5,0x21,0x98,0xc0,0xa4,0x4d,0x61,0x92,0xf4,0x29, +0x09,0xc4,0x84,0x2e,0x92,0xb5,0x6f,0x2b,0x8b,0x63,0xfa,0x05, +0x45,0x46,0x8c,0x04,0x1f,0x04,0x5b,0xee,0xe1,0x59,0xf8,0x1b, +0x98,0xd5,0x8f,0xdf,0xcb,0x6d,0xc5,0x1b,0xc4,0xc9,0xb0,0xa1, +0xd5,0x03,0xff,0x43,0x0d,0xa6,0xc3,0x37,0x78,0xda,0x1a,0xd8, +0xa9,0x8f,0x77,0xc2,0xa4,0x2e,0x3c,0x09,0x6f,0x61,0xe0,0xd7, +0x81,0x8d,0x08,0xd7,0x2f,0x80,0x77,0x2e,0x6b,0xef,0x04,0x8e, +0x19,0xf0,0xec,0x21,0xb1,0x5b,0x44,0x8c,0x75,0x91,0x64,0xac, +0x8b,0x48,0xd8,0x7c,0x07,0x66,0x68,0xde,0x8f,0xdf,0x33,0xad, +0x73,0xd0,0x8f,0x3f,0xcf,0x61,0x61,0xb6,0x29,0x9a,0x3e,0x8f, +0x94,0x82,0xe9,0x8a,0x3f,0x4f,0x9f,0xc5,0x08,0xd7,0x61,0x05, +0x92,0x95,0x49,0xbb,0x91,0x28,0xb9,0x44,0xf8,0xb7,0xbc,0x2f, +0xeb,0x9b,0xb8,0x9b,0xc6,0x32,0x85,0xe9,0x40,0x30,0xf1,0xa1, +0x0a,0x53,0xf2,0xdd,0x74,0x8d,0x81,0x18,0x96,0xc0,0x17,0x43, +0xe7,0x5a,0xc4,0x65,0x8a,0xc9,0x4d,0xc1,0x99,0x48,0xa1,0xf3, +0xed,0x0d,0x49,0xdd,0x84,0x8e,0x3f,0x5c,0xcc,0x24,0x5b,0x28, +0xdc,0x62,0xce,0xa4,0xa6,0x94,0xab,0x12,0xe6,0x50,0x60,0xfd, +0x3d,0x0f,0x1c,0xb0,0x77,0xaf,0x72,0xe1,0xeb,0xce,0x9c,0xa9, +0xcc,0x28,0xe3,0x52,0xd9,0x02,0xa7,0xfc,0xcc,0x9c,0xac,0xcc, +0x6c,0xa5,0x5c,0xf3,0x62,0xbb,0x0a,0x27,0x53,0xb7,0x7d,0xde, +0x6a,0x3e,0x39,0x86,0xfc,0xc3,0x9c,0xcb,0xf9,0x67,0x4b,0x3b, +0xec,0x7b,0x5d,0x6e,0x7b,0x64,0xb5,0xf0,0xdb,0xb3,0xb4,0x72, +0x4c,0x4e,0x37,0x54,0x95,0x34,0xe7,0x5c,0xe2,0xba,0x1a,0xa1, +0x84,0x89,0x4f,0x8b,0x4b,0x8f,0x49,0x37,0x4c,0xe4,0x5d,0x77, +0x9a,0xe9,0xa8,0x1b,0x72,0x89,0x30,0x9f,0x25,0xee,0xb5,0xa0, +0xbc,0x8c,0xab,0x10,0xc7,0x9b,0xe3,0x5e,0xd6,0xc5,0xdb,0xd1, +0xcf,0xd2,0xd7,0x36,0xdb,0x32,0xdb,0x39,0xd9,0xd5,0x89,0xcf, +0x0b,0x29,0xf5,0x2f,0xf6,0xe7,0xc0,0xca,0x0c,0x1b,0x32,0xae, +0xb6,0xfa,0xb6,0xf0,0x9e,0x31,0x37,0xb0,0xfb,0x6b,0x64,0x51, +0xea,0x58,0xe5,0xd1,0xc4,0x61,0x0d,0xc6,0xd7,0xc8,0xd5,0xda, +0xd2,0x89,0xbb,0x29,0xbe,0x86,0xb0,0x11,0x5c,0x65,0x13,0x53, +0xe3,0xd3,0x63,0x52,0x77,0xc7,0xf3,0x11,0xc4,0x7d,0x07,0xfa, +0x70,0x90,0x22,0xbe,0x36,0xb0,0x9a,0x89,0x72,0x3b,0xea,0x36, +0xda,0x7d,0x9b,0x29,0x3c,0x61,0x6e,0xe6,0x64,0x57,0xcb,0xdd, +0xf7,0x59,0x6e,0x70,0x4d,0xed,0x80,0x65,0xdd,0xa0,0x25,0x71, +0xdf,0xa9,0x24,0xac,0xc5,0xd4,0x4a,0x21,0x95,0x11,0x53,0x09, +0xb4,0xd5,0x42,0x2a,0x31,0xdb,0x8a,0x00,0xd4,0x6c,0x37,0xe5, +0x54,0x6b,0x66,0xf2,0x9e,0xd6,0xf6,0xd6,0xc6,0x76,0x9c,0x50, +0xff,0x03,0xca,0x95,0xcc,0x36,0x5d,0xa9,0x2e,0x1b,0x6d,0xb6, +0xed,0x88,0xd9,0x4e,0x78,0xc1,0x6c,0x5b,0xc8,0xcc,0x76,0x9d, +0xdc,0x6c,0x4b,0xb1,0xc8,0xf6,0xe1,0xdb,0x24,0x16,0x77,0xbe, +0x4c,0x8a,0xaa,0x84,0x14,0xff,0x1a,0x22,0xc5,0x88,0xe0,0x20, +0x2b,0x19,0x29,0xb6,0x33,0x17,0xf3,0xf3,0x2e,0x26,0x0e,0x93, +0xe2,0x5f,0xfd,0x02,0xcb,0x88,0xbf,0x0b,0x4b,0x51,0x8e,0x41, +0xbd,0xfa,0x59,0xab,0xb2,0x6a,0xde,0xa8,0xda,0xb4,0xe7,0xc0, +0x45,0x0e,0x74,0x6c,0x18,0xeb,0x4c,0x77,0x5d,0x73,0x0d,0x13, +0x1b,0xa5,0x72,0xab,0xa6,0xda,0xa6,0xff,0xc5,0xda,0x5b,0x80, +0xc7,0x71,0x25,0xed,0xc2,0xb6,0x63,0x75,0xb7,0x03,0xde,0x80, +0x8f,0xb6,0x47,0xde,0x48,0xa6,0x98,0x1d,0xc7,0xcc,0xcc,0x96, +0x2c,0x66,0x66,0x66,0x66,0x46,0x5b,0x8c,0x33,0xc2,0x11,0x4b, +0x23,0x66,0x26,0x4b,0x32,0x43,0x8c,0x49,0x1c,0x27,0xf1,0x6e, +0xb2,0xe1,0x4d,0xb2,0xc9,0x66,0x6b,0xb4,0xd5,0xda,0xff,0x3f, +0x2d,0x39,0xd9,0xdc,0xdd,0xef,0xb9,0xf7,0xbb,0xf7,0xf9,0x9e, +0x79,0x22,0x75,0x46,0xee,0x99,0xee,0xaa,0xb7,0xde,0x7a,0xab, +0xce,0xe9,0x73,0x6e,0xd6,0x8e,0x4b,0x66,0xd6,0xdb,0x52,0xd0, +0x95,0x51,0xc2,0xac,0xda,0x44,0xe4,0x3e,0x15,0x5e,0x15,0x1e, +0x7a,0x09,0x27,0x93,0xce,0x25,0xb7,0x0e,0x35,0x5f,0xa9,0x9d, +0x32,0x2b,0xe1,0x83,0x8c,0xec,0x8f,0xda,0x18,0x71,0x17,0x83, +0x42,0x2f,0x86,0x2d,0xcf,0x31,0x7d,0x96,0x0d,0x1b,0x0b,0x7f, +0x2c,0x96,0x14,0x84,0xe7,0xd3,0x57,0x4f,0x03,0xef,0x72,0xdb, +0xe1,0x86,0xdd,0x38,0xa7,0x4c,0x30,0xa2,0x98,0x2d,0x7b,0xca, +0x0a,0x2b,0x30,0x8d,0xa0,0x09,0xeb,0xae,0xf0,0xb6,0xb3,0x30, +0xb7,0xf1,0x94,0xd4,0xdb,0xf7,0x35,0x8f,0x8e,0x2b,0xfa,0x24, +0xb8,0x7b,0x2d,0x5b,0x64,0xa1,0xf2,0x29,0xd3,0x51,0x5c,0xdc, +0xae,0xa1,0x5c,0x8f,0xa6,0xe6,0xac,0x92,0x51,0x45,0x1d,0xd6, +0x43,0xe1,0x65,0x6f,0x65,0x61,0xe3,0x2d,0xa9,0xb3,0x1f,0x68, +0x1c,0x1c,0x6a,0xea,0x97,0xe0,0x81,0x75,0xe2,0xbf,0xfd,0x9c, +0x69,0x93,0xca,0x9b,0x34,0x94,0xeb,0xd0,0xc6,0x9c,0x85,0x05, +0x21,0xc4,0xcf,0xc5,0xc6,0xda,0xc9,0xaf,0xde,0x91,0xef,0x6e, +0xec,0x1f,0xac,0xa7,0xc5,0x81,0xac,0x8e,0x78,0x3b,0xd9,0x3b, +0xcc,0xbd,0xd7,0xd5,0xd0,0xd7,0x4f,0xdf,0x9b,0x39,0x80,0xae, +0x73,0xed,0xa8,0xf9,0xb0,0x78,0x5e,0xc7,0x0f,0x51,0xdf,0x35, +0xff,0x7b,0x2b,0xd4,0xe3,0xbf,0x6a,0x85,0x2e,0xfd,0x25,0x2c, +0x06,0xe6,0x5b,0xa1,0xff,0xea,0xa3,0xff,0xcf,0x30,0xea,0xec, +0xb8,0x72,0x2d,0xf9,0x3c,0xe7,0xe7,0xa2,0x6f,0xea,0xbc,0x06, +0xf8,0x5d,0x41,0x5b,0xa2,0x91,0x24,0xc7,0x9d,0x0f,0xd6,0x71, +0x37,0x1f,0x70,0xe1,0x9b,0x46,0xe4,0x57,0x0a,0x47,0x38,0xb0, +0x89,0x26,0xb5,0x36,0xb5,0x06,0x15,0xa6,0x43,0xd5,0x7c,0xc8, +0x88,0xcf,0xa4,0x5f,0x2f,0x87,0x92,0xd9,0xe5,0x24,0x39,0x33, +0xb7,0x38,0xa7,0x24,0x4b,0x2e,0x81,0x73,0x63,0x78,0x92,0x49, +0xcf,0xbf,0x54,0x50,0xa0,0x76,0x87,0x6d,0xcf,0x6a,0xcb,0x6a, +0xcf,0xce,0x0d,0xcd,0x0d,0xcd,0x09,0x1b,0xa8,0xe4,0x43,0x6f, +0xf8,0x5e,0x71,0x9b,0xb4,0x0e,0xe2,0xa5,0x81,0x32,0xbf,0x22, +0x5f,0xb3,0x24,0xd3,0x64,0xe3,0xd4,0xc9,0xcb,0xd3,0x8f,0xfa, +0xef,0xd8,0x35,0xf2,0x3e,0xb6,0xae,0x96,0xce,0x36,0x91,0xc5, +0xe1,0xc5,0x61,0x25,0x0d,0x6d,0xf5,0x5d,0xf2,0xd6,0x01,0xca, +0xa9,0xdd,0x61,0x7d,0x91,0xf5,0x96,0xe1,0xbc,0xd4,0x47,0xe6, +0x5e,0xe8,0xe6,0x55,0xc1,0x87,0x38,0x7a,0xdb,0x78,0xbb,0x45, +0x16,0x45,0x15,0x45,0x16,0xba,0xdb,0xf3,0x83,0x6e,0x43,0x0e, +0x1d,0xce,0x21,0xc1,0xa1,0x21,0xa1,0xe1,0x9e,0x69,0x1e,0x97, +0x3c,0x2f,0x66,0x99,0xf0,0xd3,0x19,0x53,0x99,0x53,0xd9,0xdc, +0x31,0x36,0x0c,0xcf,0x99,0xc0,0x31,0x36,0xe4,0xa0,0x9e,0xf1, +0x3a,0xc3,0x06,0x33,0xfe,0xe9,0xe0,0xf4,0x60,0xeb,0xf5,0xac, +0xdc,0xec,0x4b,0xb9,0x49,0xb0,0x12,0x09,0xdf,0xde,0x47,0x13, +0x18,0x17,0x5d,0x14,0x9b,0x1e,0x13,0x23,0x51,0x3e,0x56,0x7e, +0xff,0xef,0xc9,0x02,0x7a,0xc5,0x82,0x79,0xce,0x6f,0xce,0x11, +0xbf,0xd2,0xd9,0x7b,0xb4,0x60,0x6e,0xbb,0x57,0xf5,0x39,0x95, +0xff,0x94,0xce,0xce,0x06,0xed,0x71,0xd1,0x12,0x17,0x7a,0xb6, +0x9c,0xa7,0x78,0x83,0xfe,0x39,0xbf,0xcd,0x09,0x33,0xfe,0x79, +0x1b,0x51,0x7b,0x68,0xde,0x6f,0x73,0xe3,0x3f,0x46,0x4a,0x75, +0x22,0xbc,0xfa,0x00,0x3e,0x86,0x29,0xd4,0x11,0xfd,0x56,0x9d, +0x5b,0x2b,0x52,0xbc,0x5f,0xbc,0x8f,0xd8,0x7f,0x59,0x25,0x0c, +0xc2,0xff,0x47,0xc3,0x4a,0x6f,0x5e,0x98,0xd1,0xb0,0x32,0x12, +0x87,0xca,0x26,0x9e,0x6b,0x8d,0xc2,0xcb,0x59,0x0f,0xc4,0xa6, +0xfe,0x3f,0x1f,0x29,0x5f,0x65,0x04,0x13,0xa8,0x20,0x7a,0x97, +0x1d,0xef,0x7b,0xdf,0xa5,0x1c,0x64,0x0c,0xc7,0x98,0x1a,0xed, +0xa1,0x7d,0x93,0x46,0x1c,0x7e,0x0f,0x81,0x24,0xcc,0xd0,0xfe, +0xb0,0x8d,0x65,0xbb,0x05,0x3f,0x38,0xde,0xf7,0x51,0xc5,0x34, +0x37,0xb3,0x37,0x80,0x46,0x56,0xcd,0xfb,0xe2,0x02,0xe1,0x1b, +0x68,0x0e,0x2c,0x37,0x66,0x67,0x6c,0xab,0x69,0x8c,0xd4,0x3c, +0x65,0x37,0x08,0x95,0xc4,0x25,0x5e,0x05,0x3c,0xd8,0xc2,0xe8, +0xc2,0xd8,0xa2,0xd8,0xc6,0x49,0x5e,0x7f,0xd4,0xea,0xbe,0xdf, +0x03,0xfa,0xb9,0x26,0x70,0x82,0x29,0xb6,0xab,0x37,0x6d,0xb1, +0xe6,0xf0,0x2e,0x53,0xd7,0x5b,0x33,0x22,0x6d,0xb3,0x52,0xf0, +0xe1,0xc6,0x36,0x7b,0x1c,0xed,0xda,0x6c,0xf9,0x82,0xc2,0x02, +0x59,0x41,0x31,0x87,0x8d,0x6c,0x44,0x5a,0xc4,0xc5,0xc8,0xb4, +0x5c,0x1d,0x1e,0xd6,0x95,0xc1,0x81,0x06,0x78,0xa1,0x89,0xc3, +0x76,0x88,0x21,0x18,0xc3,0x86,0xa7,0x85,0xa7,0x46,0xa4,0x51, +0x4d,0xc6,0xc2,0x3a,0xf4,0x25,0x11,0xf4,0x7f,0xc3,0x53,0x39, +0x08,0x1d,0x61,0xff,0x8a,0x56,0x24,0x2c,0x55,0xdc,0xc2,0x90, +0x03,0x97,0xcb,0xac,0xd2,0x0e,0x4f,0x92,0xe8,0xae,0x39,0x9b, +0x3f,0x6f,0x52,0x38,0x70,0x78,0x8d,0xd6,0x39,0x2d,0xf7,0xe5, +0x5f,0xcd,0xf5,0xbc,0xe2,0x4f,0x87,0xec,0x74,0xd5,0x12,0x1f, +0x15,0xb2,0x13,0x7b,0x5e,0x7a,0x79,0xa2,0xfa,0x88,0x9f,0x9e, +0xb7,0xf9,0x1b,0x51,0xa4,0xe0,0x6c,0xee,0x91,0x0c,0xed,0x41, +0x6a,0xf3,0xbb,0x09,0x77,0x62,0xef,0xfc,0x5f,0xa4,0xd5,0xe7, +0x62,0xf8,0x7f,0x9b,0x56,0x63,0xc1,0x8b,0x58,0x41,0x0a,0xcd, +0xf4,0x29,0x66,0xf8,0xce,0xb8,0x10,0x30,0x05,0xda,0x60,0x8a, +0xaf,0xad,0x61,0xa4,0xc6,0x2a,0xcf,0x98,0x81,0x92,0x92,0x5e, +0x0d,0xe5,0x3b,0x63,0xec,0x3a,0xf8,0x81,0xe8,0xa1,0x3a,0xaa, +0x9d,0x00,0x43,0x76,0xe6,0x9c,0xeb,0x7c,0x2a,0xc5,0xc1,0x93, +0xe4,0xd3,0x5d,0x3b,0x18,0xe5,0xdd,0xe6,0xf9,0x8c,0x2a,0x38, +0xee,0x26,0x70,0xf9,0x24,0x5e,0xa6,0x5a,0x58,0x9d,0x7c,0x0a, +0xa6,0x3b,0x58,0x4a,0x43,0x04,0x4c,0xb7,0xd3,0xfa,0x59,0xf9, +0x6d,0xd5,0x7f,0x6a,0xdd,0x87,0x73,0x33,0x1d,0xfe,0x9f,0xb5, +0xae,0x91,0x38,0x96,0xf0,0xd5,0x7d,0x18,0xa1,0xb6,0x38,0xf8, +0x9f,0x63,0x09,0xcb,0x28,0xad,0x7f,0xc0,0x1c,0x4c,0x31,0x48, +0xb4,0x9f,0xa3,0x75,0xa7,0xe5,0x16,0xa2,0x2d,0x86,0x99,0x2b, +0x75,0xcf,0x07,0x95,0xde,0x15,0xf1,0xf7,0xc1,0x43,0xf8,0x8a, +0x99,0x35,0x82,0x10,0x02,0xb1,0x68,0x65,0x42,0x9d,0xba,0x1c, +0x25,0x6c,0xca,0xf9,0x84,0x1d,0xb1,0xa7,0x38,0xd8,0xe5,0xc3, +0xe0,0xa6,0xd4,0xfd,0xb1,0x87,0xd5,0x0d,0x12,0x62,0xa3,0xed, +0x68,0x6d,0x51,0x20,0x9a,0xf3,0x61,0x65,0xcb,0xfb,0x05,0x1a, +0x05,0x4f,0xb3,0x3f,0x86,0xfd,0x6a,0xef,0xe2,0x46,0x36,0xab, +0x2b,0x7b,0x24,0xa3,0x85,0xc2,0x80,0x46,0x5c,0x56,0x47,0xf6, +0x70,0x26,0x15,0xa3,0xeb,0xe8,0x07,0x3a,0x9b,0xc0,0x36,0xfa, +0x81,0x6b,0x99,0x54,0xfa,0x81,0x71,0xf4,0x03,0xcf,0x78,0x33, +0xb8,0x31,0xf5,0x54,0xdc,0x76,0x75,0x93,0xa4,0xc8,0x08,0xfb, +0xe5,0x67,0xc4,0x6b,0xba,0xce,0x3c,0xaa,0x69,0x7d,0x2f,0x5f, +0x23,0xff,0x4f,0x59,0x1f,0xc0,0x3e,0xb5,0x77,0xa9,0xd8,0x86, +0x1a,0x6a,0xe6,0xc4,0xf7,0xc5,0x09,0xae,0xaf,0x51,0xfb,0x26, +0x3e,0x15,0x97,0x82,0x70,0x27,0xee,0x96,0xa6,0xc6,0xe6,0xae, +0x8d,0x36,0xfc,0x50,0xc7,0xd4,0x64,0xd3,0x08,0x87,0x5d,0xb5, +0xc4,0xc3,0xc6,0xca,0xd2,0xd2,0xa3,0xc1,0x86,0x1f,0x6c,0x1d, +0x1d,0x69,0x1a,0xe0,0x20,0x82,0xea,0x39,0x7b,0x7d,0x03,0x7d, +0x5d,0xc7,0x06,0x6b,0x7e,0xba,0xfb,0xc6,0xd5,0xae,0x2b,0x1c, +0x0e,0xcb,0x89,0xa7,0xbd,0xb5,0x89,0x89,0x33,0x7d,0x6f,0xb4, +0x73,0x7c,0xb2,0xa1,0x97,0x9b,0xd9,0xbe,0x6d,0x8e,0x14,0xa2, +0x1a,0x5d,0x23,0xf9,0xe2,0xe7,0xe3,0x5a,0xd5,0xf8,0x12,0x69, +0xb8,0x57,0xfe,0x75,0xee,0x43,0xeb,0x7c,0x3e,0xf1,0x54,0xd8, +0x4e,0x6f,0x4a,0xe6,0x66,0x60,0x2b,0x8e,0x2d,0x18,0xe4,0xe9, +0xf7,0x88,0x4e,0x89,0x9a,0x88,0x1c,0xe6,0x90,0x11,0x49,0x41, +0x74,0xca,0xfc,0xd8,0xc2,0xad,0x7f,0xe9,0xbe,0x25,0xf7,0xe0, +0x7d,0xea,0x14,0xcd,0xff,0xcc,0xb5,0x2b,0xa8,0x53,0x94,0xbf, +0x19,0xe0,0x71,0x58,0x6e,0x2c,0x92,0xc2,0x38,0x73,0xad,0x6e, +0x3e,0xd7,0x66,0xcd,0xe5,0x5a,0x78,0xa8,0x5c,0xc2,0x08,0x4e, +0xdf,0x13,0x3c,0x0d,0xab,0x23,0xa4,0xc9,0x17,0xa3,0x63,0x25, +0x71,0xe2,0x2c,0xb1,0x8a,0x91,0xbc,0xb1,0x6b,0x6a,0xdf,0xea, +0x53,0xc1,0xb6,0xc2,0x45,0x1b,0x0f,0xac,0x50,0xaf,0x33,0x2d, +0xce,0x97,0xe5,0x4b,0xf3,0x25,0x42,0xd4,0x14,0x9c,0x87,0x20, +0x7c,0x01,0x7f,0x27,0x6e,0x79,0x04,0x0b,0x98,0xce,0xf2,0xd2, +0x4e,0x0d,0xe5,0x4e,0xb6,0x3c,0x52,0x45,0xd8,0xae,0x14,0x17, +0xc7,0x7b,0x6b,0x8c,0x46,0xad,0xaa,0x09,0xac,0x1a,0x63,0x95, +0xec,0x39,0x6a,0xe1,0xf2,0xf7,0x59,0xa1,0x5b,0x9b,0x18,0xc3, +0xc6,0x71,0x16,0x34,0x54,0x8d,0xe1,0x9d,0x71,0x56,0xb9,0x50, +0x8b,0x5a,0xbc,0x9c,0x22,0xda,0x8c,0x96,0x8b,0xc3,0x6d,0xed, +0xed,0x8a,0xfe,0xec,0xbc,0x9c,0x8b,0x94,0x6c,0xd7,0xe3,0x4b, +0x3c,0xe6,0x51,0x78,0x3f,0x83,0xa0,0xdd,0x2c,0x06,0x99,0x10, +0x08,0xda,0x85,0x41,0xcc,0xcc,0xd9,0x83,0xbf,0xed,0x47,0xce, +0xd3,0xeb,0x9d,0xff,0xaa,0x1f,0x19,0xfe,0x5f,0xf5,0x23,0xff, +0xcb,0xf6,0xb6,0x9e,0x48,0xaf,0xaf,0x3f,0x80,0x67,0x94,0x5e, +0xf5,0xc4,0xba,0xb7,0x3a,0xe7,0xdf,0xe8,0x55,0xb9,0xf0,0xdf, +0xe8,0xb5,0x48,0xa4,0xd7,0x1b,0xf3,0xaa,0x65,0x32,0xfb,0x3e, +0x85,0xb7,0xb0,0xe0,0x91,0xf2,0x75,0x46,0xb8,0x0a,0x4d,0xa4, +0xa7,0x58,0xd6,0xa1,0xd1,0xcf,0x1a,0x15,0xaa,0xe8,0xa1,0x0b, +0xeb,0x91,0x98,0xdf,0xa8,0x21,0x65,0xbf,0x2e,0xf8,0xae,0xf4, +0xeb,0x1a,0xbf,0x01,0xfe,0x78,0xd0,0xe6,0xf0,0xcd,0x71,0xdc, +0x55,0x3d,0x5c,0xc6,0x6a,0xd7,0x04,0xdd,0x56,0x9f,0xd9,0xf6, +0x17,0x6a,0x9f,0x3a,0x8a,0xc0,0xba,0x39,0x04,0xd6,0x51,0x04, +0x2e,0x13,0x5e,0x27,0xb4,0x6c,0xad,0x16,0x16,0xb2,0x86,0xc6, +0x44,0xb9,0x4a,0x5f,0x30,0x56,0xae,0x1d,0x63,0x4f,0x28,0x59, +0xa2,0x8b,0xfb,0xae,0xb0,0xb0,0x6f,0x0d,0xd1,0xc6,0x7d,0xd7, +0xe8,0xc1,0x2a,0xa2,0x85,0xfb,0x6e,0xb0,0x33,0x2a,0x98,0x4e, +0x62,0xba,0x82,0x27,0x22,0x7f,0x4b,0x82,0x7f,0xdd,0x47,0xbc, +0x9b,0xf5,0xc6,0x1d,0x1b,0x1d,0x9d,0xf8,0x5e,0xb7,0x31,0x93, +0x46,0xf7,0xce,0x2e,0x3e,0x35,0x69,0xc0,0x7b,0x9e,0x19,0x69, +0x25,0x18,0x7f,0x2e,0x74,0xaf,0xa7,0x96,0x04,0x7c,0xc5,0x36, +0xc1,0x7f,0xc1,0x8c,0x85,0x67,0x73,0x8e,0xfc,0x22,0xae,0xef, +0xc4,0xdc,0xe1,0x84,0x7b,0x98,0x4b,0x6e,0xb6,0x5c,0xbf,0xdc, +0xdc,0x6b,0xdb,0xce,0xfb,0x38,0x5c,0x30,0xd3,0xf6,0xfc,0xc5, +0x86,0x92,0x07,0xf0,0x39,0xb5,0xa1,0xe1,0x7f,0xda,0x70,0x8d, +0x30,0x44,0x35,0xdd,0xe1,0x14,0xbd,0x5f,0xbb,0xe4,0x73,0x74, +0x39,0x39,0x97,0xa2,0x9e,0xdb,0x90,0xd2,0x25,0xfb,0x58,0x29, +0x61,0xfe,0xb9,0x08,0xc6,0x88,0xb0,0x19,0xfe,0xa1,0xdc,0x8c, +0x5b,0xee,0xc2,0xd9,0x31,0x3c,0xfb,0x9e,0xc1,0x11,0x3c,0x6d, +0x02,0xa7,0xcf,0xb0,0x33,0x0b,0x3e,0xa0,0xc6,0x6a,0xa6,0xc6, +0x6a,0x9e,0x33,0x56,0x33,0x05,0xcf,0xa9,0xe3,0xe4,0x3e,0x5c, +0x3a,0xc9,0xe2,0x25,0x4a,0xf9,0x0f,0xe0,0xd2,0x09,0xf1,0xe8, +0x65,0xf2,0x08,0x2e,0x1d,0x63,0x95,0x9e,0xe8,0xf4,0x9f,0x66, +0xf9,0xcb,0x71,0xe2,0xde,0xaa,0x37,0xec,0x50,0xef,0xec,0xc4, +0xf7,0xbb,0x4d,0x99,0x34,0xbb,0xd4,0x37,0xf2,0xbd,0xbe,0xbf, +0x1a,0x25,0x41,0x2b,0xec,0xa0,0xb7,0xb6,0x04,0x3c,0xc5,0x47, +0x99,0xfe,0x3b,0x46,0xf9,0x4b,0x1a,0x31,0x56,0xee,0x1b,0x17, +0x9f,0xf5,0xcd,0x27,0xd7,0xdb,0x6e,0x5d,0x6f,0xea,0xb7,0x6f, +0xe3,0xbd,0xec,0xce,0xea,0x1a,0xfc,0x0f,0x5b,0x67,0x76,0x13, +0xde,0x22,0xe0,0x06,0x27,0xc6,0xf1,0x04,0x30,0xb0,0x6f,0x0c, +0xe3,0xd8,0xdc,0xa2,0x9c,0xa2,0x9c,0xc2,0x90,0x6c,0xfe,0xe7, +0x6b,0x4f,0x1e,0x4d,0xfd,0x99,0xeb,0xc0,0x58,0xb6,0xb4,0xa2, +0x58,0x5e,0x24,0xb7,0x28,0xe6,0xdd,0x8c,0x34,0x35,0x77,0xda, +0x36,0x38,0xf2,0xbd,0x95,0x1d,0x35,0x4d,0xf5,0x1c,0x38,0x33, +0xc1,0x9e,0xbe,0x9e,0x6e,0x5e,0xde,0xf5,0xee,0xf5,0x7e,0xe5, +0x6e,0x5e,0x7c,0x6d,0x88,0xc2,0xaf,0xde,0x27,0x2c,0x2a,0x24, +0x3a,0x38,0xda,0xbf,0xc1,0xbd,0xc9,0xbf,0xc2,0xc5,0x9b,0xaf, +0x0e,0x69,0xf0,0xae,0xf1,0x75,0x08,0xb6,0x09,0x35,0x0f,0x97, +0x5b,0xf0,0x9d,0xc5,0xed,0x25,0x2d,0xa5,0x7e,0x36,0x0e,0xc6, +0x56,0x8e,0x1d,0xce,0x7c,0x6b,0x53,0x53,0x47,0x5d,0x07,0x37, +0x82,0x0c,0x1a,0x1b,0x83,0x31,0xba,0xad,0x85,0xb7,0x0d,0x50, +0x36,0x39,0x01,0x77,0xc0,0xc1,0x08,0xdf,0x66,0x94,0xc6,0x33, +0xa7,0xfe,0xdd,0x51,0xd0,0x2e,0x94,0x8a,0xbe,0x18,0x8f,0x50, +0x3c,0xf7,0x45,0x11,0xf5,0xc5,0x5d,0xea,0xb4,0xd6,0xfb,0x95, +0x5f,0xe6,0x3f,0x12,0xc7,0xa6,0x4e,0x85,0xec,0x72,0x9d,0xdb, +0xe6,0xcc,0x96,0x94,0xfc,0x6a,0x78,0x71,0x78,0x66,0x78,0xae, +0xd4,0x7b,0x9e,0xa7,0x7f,0x35,0xfc,0x52,0xc8,0x52,0x3e,0x22, +0xf6,0x78,0xc2,0x01,0x4e,0x58,0x4d,0x0e,0xc0,0xd1,0x2e,0x3c, +0xda,0x0d,0x06,0x5d,0xf8,0x02,0x2b,0x2b,0x2e,0x2c,0x29,0x28, +0xb6,0x96,0xf1,0xf0,0x7a,0x17,0x9a,0x76,0xc3,0xa1,0x6e,0x3c, +0xd4,0x6e,0xe0,0x8c,0xfb,0xed,0x61,0xbf,0x3d,0xda,0x3b,0xc0, +0x1b,0x8c,0x7d,0x84,0x2c,0xa6,0x34,0xbc,0x30,0x52,0x82,0x2f, +0x3b,0x30,0xca,0xa4,0x0d,0xa4,0xaf,0x41,0xd1,0x58,0xd9,0xd4, +0x14,0xda,0x14,0xa2,0x08,0x6a,0xe8,0xe2,0xdd,0xab,0xdd,0xe4, +0xae,0x15,0x45,0x8a,0x9c,0x96,0x8c,0x76,0xee,0x3b,0x26,0x1d, +0x17,0xe5,0x6c,0xbd,0xac,0xdd,0xe8,0xde,0x9b,0x59,0xd4,0x53, +0xff,0x77,0xde,0x4e,0xee,0x83,0x8c,0x8a,0xdd,0xe5,0xf8,0x87, +0xb0,0x55,0x0d,0x37,0x3f,0x32,0x3a,0x86,0x0b,0xad,0x28,0x1b, +0x5e,0xf4,0x4e,0xf1,0x4f,0x08,0x0c,0x90,0xfa,0x17,0x06,0x14, +0xf8,0x3a,0xf0,0xb5,0xb1,0xb5,0xd1,0xb5,0xd1,0x61,0xfe,0xbe, +0x81,0x0e,0xfe,0x1c,0xbe,0x05,0x6f,0x93,0xb8,0x90,0x98,0xd0, +0xe0,0x60,0x71,0xb9,0xb2,0xee,0xe2,0xd8,0x92,0x88,0x92,0x48, +0xa9,0x64,0xe6,0x77,0x82,0x36,0x01,0x13,0xbc,0xc5,0x16,0x15, +0x17,0x94,0xfe,0x52,0xed,0x85,0x8a,0xd5,0x9e,0x14,0x95,0x33, +0xfb,0x98,0x8b,0x01,0x69,0xfe,0xc9,0x41,0x9c,0x5f,0x62,0x54, +0x8a,0xf3,0xf2,0x9d,0x62,0xb5,0xf7,0x27,0xe6,0x7e,0x55,0x65, +0x07,0xad,0xf6,0x9a,0x32,0xfb,0xd3,0x47,0xb8,0xd9,0x03,0x5d, +0x33,0xb6,0x3d,0xb3,0xb6,0xed,0x8c,0x52,0x0a,0x4b,0x88,0x20, +0x6d,0x57,0x4a,0x19,0x41,0x9c,0xff,0xd4,0xa1,0x94,0x3a,0xb1, +0xb3,0xcb,0xf0,0x47,0x32,0xdc,0xd1,0x36,0x40,0xab,0xbd,0x72, +0x3e,0xc0,0xd9,0xcd,0x69,0xae,0xda,0xfb,0x92,0x54,0xfb,0x97, +0x79,0x97,0x78,0x88,0x73,0x61,0x5b,0x02,0x1b,0x82,0xe4,0x1c, +0x5a,0x84,0x91,0x32,0xcf,0x62,0xd7,0x02,0xe7,0x69,0x5a,0xed, +0xb5,0xd1,0x6a,0xaf,0x8e,0x43,0x37,0x5a,0xed,0xb9,0xe7,0xd9, +0x67,0xda,0xcf,0x57,0x7b,0x5d,0x51,0x4d,0xbf,0xa0,0x9a,0x06, +0xdc,0x9f,0x28,0xaa,0xf5,0x9f,0xa3,0x9a,0x66,0xa0,0x44,0xbf, +0x5f,0x24,0xd2,0xe0,0x9c,0x44,0xd2,0x9b,0xef,0x4a,0xff,0xc2, +0x9b,0x97,0x7f,0x8b,0x6a,0xca,0x9b,0x2f,0x3c,0x52,0x12,0x66, +0x36,0x65,0x2b,0x01,0x7b,0xf0,0xbc,0x37,0x7e,0x0a,0xde,0x34, +0xc4,0x37,0x37,0xcd,0xfd,0x3c,0x0f,0x87,0xe1,0xdb,0x09,0xdc, +0xf7,0x99,0xde,0x76,0x3c,0x85,0xb1,0x0c,0x66,0xa6,0xe0,0x59, +0x27,0x5c,0xa8,0x3e,0x68,0xd5,0x05,0xaf,0x15,0xc0,0xa1,0x74, +0xc8,0x94,0xdc,0x62,0x66,0xd4,0x20,0x87,0x62,0xad,0x81,0x62, +0xad,0x61,0x0e,0x6b,0x0d,0x4f,0xc5,0x95,0x8c,0x86,0xc9,0x26, +0x38,0xf8,0x0d,0x03,0xaf,0x08,0x6f,0x91,0x84,0xbe,0xd0,0xab, +0x51,0x6d,0x6e,0x31,0x7c,0x89,0x53,0x89,0x6e,0xae,0x2d,0xa7, +0xdc,0x5a,0x41,0xa2,0xbb,0x45,0x71,0xf4,0x0b,0x12,0x1d,0xb9, +0xd9,0x17,0x29,0x69,0xc8,0xef,0x97,0x7f,0x97,0xf5,0xc4,0x22, +0x8f,0x4f,0x39,0x1d,0xb2,0x26,0x84,0x26,0x64,0x2b,0x08,0x20, +0xc5,0x06,0x45,0xc7,0x73,0x74,0xbb,0x8b,0xf8,0xa4,0xcb,0xd1, +0x8f,0xc2,0x27,0x39,0xe4,0x62,0x48,0x9e,0x56,0xee,0xdb,0xa9, +0x9a,0x43,0x79,0x7c,0xfa,0x9d,0xc4,0x4f,0x63,0x6f,0x70,0xa0, +0x4d,0xf9,0xb7,0xed,0x7e,0xd5,0x17,0x05,0x8f,0xc4,0x36,0xce, +0xe9,0xa0,0x5d,0xe2,0x66,0x2e,0xf1,0x60,0x23,0x26,0x21,0xbd, +0xf9,0x24,0xf4,0x9c,0x40,0x24,0xcf,0x09,0x64,0xbe,0xc5,0x9f, +0x70,0x37,0xe6,0xce,0x73,0x63,0xa2,0xf0,0x00,0x6e,0x53,0x63, +0x9e,0xfa,0x4f,0x8d,0xaf,0x46,0x35,0xfe,0xb7,0x34,0x9d,0xeb, +0x25,0xd8,0x3e,0x4f,0xe7,0xa6,0x62,0xf3,0xf5,0x37,0xf3,0x35, +0xee,0xc3,0xcb,0x6a,0xf8,0xcd,0x23,0x10,0x98,0x7f,0x2e,0xfb, +0x84,0xc0,0x1b,0x57,0x6e,0x74,0x97,0xdc,0xe5,0x72,0x71,0xd3, +0x5e,0xa6,0xd8,0x5a,0xe5,0x1e,0xd3,0x5a,0x5c,0xd2,0xaa,0x41, +0xa5,0xd2,0x12,0x36,0xd4,0xce,0xd7,0xd2,0xc9,0xa1,0xdb,0x9b, +0xef,0x1f,0x6b,0x9d,0x2e,0x9f,0xe6,0xda,0x91,0xb0,0x91,0x79, +0x11,0x79,0x11,0xb9,0x63,0x35,0x63,0x6d,0x6d,0x3d,0x5c,0x87, +0xb0,0xcc,0x02,0xae,0xb2,0xbe,0x81,0x2e,0x41,0x46,0x01,0x6e, +0xc5,0xee,0x52,0xaf,0x42,0x3f,0x67,0xbe,0x3b,0xb2,0x27,0xa2, +0x27,0x8c,0xc3,0x60,0x4b,0x30,0x62,0x1c,0x6d,0xb5,0x9d,0xd6, +0x5a,0x73,0x33,0x53,0x90,0x41,0x4d,0x9f,0xff,0xbe,0xb8,0x42, +0xcf,0x6b,0x64,0x1f,0xe6,0x7f,0xc4,0x0a,0xa1,0xb3,0xbb,0x08, +0x54,0xb3,0x55,0x6e,0xf7,0x3b,0x6b,0x3b,0x32,0x3f,0x94,0x5c, +0xd1,0x61,0xcc,0x4b,0x23,0x46,0xd4,0x6f,0xa2,0xdd,0x0a,0xa6, +0xd8,0x9c,0x16,0xc4,0x3d,0xd2,0xf2,0x1e,0x0d,0xe5,0x22,0x61, +0x9f,0xa0,0xcd,0x82,0x2a,0xbd,0xf3,0x54,0xc3,0x08,0x3f,0x7d, +0x37,0x0e,0x58,0x16,0x4a,0xf6,0x10,0xdf,0xa4,0xac,0x7a,0x8d, +0xb1,0x8f,0xf7,0xb0,0xca,0x53,0xf8,0xce,0x1c,0x63,0x44,0x2a, +0x5c,0xfe,0xc5,0xde,0x7d,0x54,0x38,0x29,0xee,0xcb,0xbf,0xce, +0x7b,0x64,0x99,0xcf,0x27,0x9c,0x0a,0xdd,0xe1,0x71,0x41,0x5c, +0xd9,0xc3,0xfe,0x39,0x55,0xf7,0xfe,0x8b,0xaa,0x5f,0x16,0x19, +0x43,0xa4,0xea,0x81,0x7f,0x51,0x75,0xf0,0x45,0x82,0x36,0x83, +0x5d,0xb0,0x16,0xf6,0xb0,0xb8,0x16,0x7f,0x47,0x9e,0x7d,0xb7, +0x9b,0x7d,0x0e,0xe6,0xb7,0x1e,0xc0,0x0f,0xd4,0xfe,0xe6,0xff, +0xb2,0x7f,0xe2,0x73,0xfb,0xaf,0xa7,0x14,0xfd,0x06,0xa5,0x68, +0xfd,0x5f,0xa7,0x3d,0xeb,0xcf,0x37,0xbf,0x6f,0xcc,0x81,0x99, +0xea,0xfd,0x39,0x8a,0x7e,0xfd,0xb1,0xf2,0x2d,0x66,0xf6,0x2b, +0x5c,0x4f,0x94,0xec,0x18,0x8d,0xf5,0x85,0xb0,0x6c,0x04,0x97, +0xfd,0x0c,0xaf,0x8d,0xe0,0x6b,0x3f,0xc3,0x9b,0x63,0xf8,0x7b, +0xa6,0xb2,0xb5,0xac,0xbd,0xa8,0xc9,0x44,0xc6,0xc7,0xb8,0x86, +0xda,0x06,0x38,0x88,0xfb,0x32,0x15,0x2b,0xca,0x3a,0x0b,0xdb, +0x4c,0x8b,0x79,0xdf,0xb7,0x2d,0x36,0x6a,0x1f,0x6b,0x36,0xe3, +0x8b,0xe5,0xb2,0x8a,0xa2,0x0a,0x6e,0x26,0x0c,0x78,0x6a,0xde, +0x1e,0xaa,0x9d,0x34,0x70,0x3b,0xf9,0x19,0x98,0x95,0xac,0xf2, +0x8e,0x58,0x06,0xf4,0x3c,0x15,0xdf,0xd2,0x9b,0x7f,0x8b,0xb2, +0xf0,0x0e,0x42,0xbf,0x8b,0xc1,0x85,0xac,0xf2,0x3e,0x1e,0xfb, +0x0f,0x68,0xe3,0x13,0x4a,0xb2,0xff,0xcf,0xe0,0xc4,0x94,0x30, +0x52,0xea,0x2a,0xb3,0x29,0xb2,0xeb,0x28,0xe6,0x63,0x7b,0xc2, +0xfa,0x23,0x5a,0xc4,0x51,0xf5,0x34,0xd2,0x76,0xab,0xfe,0xdb, +0xdc,0xdb,0xe6,0x79,0x7c,0xa2,0x91,0xcf,0x26,0x17,0x7d,0x71, +0xcf,0x5d,0x63,0x52,0x6c,0x5d,0x7a,0x3a,0xdf,0xb8,0xbf,0x88, +0x8f,0x1f,0x0d,0xbd,0x1b,0x31,0xc0,0xe1,0x1f,0xe2,0x48,0x9e, +0x5e,0xde,0xce,0x8c,0x0b,0xe2,0x58,0xc3,0xcd,0x84,0x8f,0x63, +0xa7,0xfe,0x67,0x35,0xd7,0xac,0x8d,0xb8,0x0a,0xd1,0xc1,0x09, +0x8a,0xec,0x9c,0x8c,0x8c,0xec,0x14,0x75,0x78,0x07,0xb9,0xfa, +0x5e,0x5c,0x0f,0x0b,0xa2,0x0b,0x92,0xd2,0x62,0x63,0x24,0x89, +0xf1,0x2a,0x49,0x03,0xa0,0x35,0x80,0x5a,0xb0,0x8e,0xb9,0x92, +0x3f,0x55,0x38,0x2a,0x0d,0x1c,0xe0,0x57,0x7a,0xe3,0xda,0x70, +0x5c,0x9a,0x98,0x6f,0xc1,0x4f,0xd0,0xf2,0x7f,0x32,0x97,0x8a, +0x66,0x34,0xb2,0x82,0xa3,0xac,0xa7,0x91,0x96,0xd1,0x36,0xab, +0x4a,0x0b,0xfe,0xa7,0x89,0x6b,0x53,0x85,0xf7,0x38,0x78,0xeb, +0x7d,0x52,0xdd,0x22,0x6f,0x2b,0xed,0xb0,0xaa,0xe2,0x23,0xdd, +0x82,0x1c,0x03,0x3d,0x38,0x8c,0xbb,0x46,0x2a,0x68,0xfa,0x94, +0xfa,0xf4,0x57,0xf2,0x51,0x8a,0xd0,0xa6,0xd0,0x5a,0x6e,0xc6, +0x28,0xf6,0xdf,0x95,0x9c,0x70,0x78,0x76,0x3b,0x99,0x00,0x9a, +0xdf,0xf1,0x07,0xe1,0x90,0xb8,0x68,0x90,0x9c,0x6c,0x86,0x45, +0x5f,0x33,0xc3,0xb4,0x74,0x80,0x45,0xdf,0xe1,0x22,0x56,0x69, +0x43,0x9d,0xf3,0x1f,0x69,0xf1,0xfe,0x9c,0xc7,0xc4,0xb4,0x28, +0x6a,0xda,0x53,0xc1,0xbb,0xe6,0xc7,0xd8,0x69,0x5a,0x34,0x95, +0xfd,0xc6,0x63,0x34,0x2d,0xaa,0x46,0x8a,0x1e,0x3b,0x9a,0xa1, +0x2d,0x8e,0xb1,0xd3,0xf2,0x55,0x04,0xf9,0x1f,0xbc,0x09,0xbe, +0xb8,0x19,0x5e,0x64,0x61,0x8d,0xea,0x77,0xf8,0xe2,0x7a,0xe6, +0xff,0x6c,0x71,0xbc,0xc5,0x78,0xd5,0x79,0x36,0x7b,0x77,0xd4, +0xd6,0x57,0x35,0x95,0x29,0x1c,0x14,0x7c,0xa4,0x6f,0x88,0x4f, +0x48,0x40,0xa8,0x22,0xa2,0x25,0x86,0x16,0x59,0xab,0x46,0xd0, +0x97,0xc9,0xad,0xcf,0x6e,0xcc,0x52,0x18,0xe7,0xf0,0x29,0xee, +0xc9,0x1e,0x09,0x5e,0x1c,0x9e,0x32,0x83,0x3d,0x4c,0xb4,0x43, +0x98,0x73,0xb0,0x6b,0x40,0x83,0x4f,0x93,0x7f,0xb5,0x9b,0x2b, +0xdf,0xe0,0xad,0x70,0xab,0xf4,0xf2,0x73,0xf3,0xf6,0x72,0xf3, +0x6e,0xb4,0xe4,0x2b,0xca,0xca,0xcb,0xca,0xca,0x39,0xcc,0x82, +0x3f,0xa0,0x2f,0xb2,0xac,0x4c,0x1c,0x34,0x9d,0x90,0x55,0x0c, +0x6b,0x50,0xc6,0x7f,0x03,0xb2,0xd8,0xd2,0xd0,0xb2,0xf0,0xd2, +0xa8,0xaa,0x4e,0x1e,0xc3,0x95,0x0b,0xd9,0xff,0x9e,0xd3,0x71, +0x81,0xf2,0x95,0x79,0x5b,0x0b,0xcb,0xf0,0x28,0x69,0xe8,0xaf, +0x1a,0x29,0x9b,0xe2,0xba,0x98,0x62,0xe3,0x5a,0x13,0x85,0x25, +0xa7,0xf4,0x1d,0x7c,0x6e,0xff,0xd5,0xa8,0x4b,0xbe,0x00,0xf7, +0xad,0x2c,0xba,0x5b,0x12,0x70,0x7f,0x0b,0xdd,0x99,0x99,0x3d, +0xa8,0x29,0xf6,0x0b,0xfe,0x65,0x70,0x91,0x55,0x1e,0xfc,0x6a, +0xf0,0x39,0x1d,0x32,0x67,0x70,0xec,0x00,0x77,0xe2,0xad,0x63, +0xa5,0x63,0x65,0xdf,0x6a,0xc1,0x0f,0xf4,0x8d,0xdc,0x6a,0xbe, +0xc3,0x29,0x7d,0x2a,0xe7,0x98,0x66,0x7e,0x04,0xe3,0xb9,0x13, +0x04,0x2f,0xd2,0x64,0x59,0xed,0x54,0xee,0xdc,0xd3,0xca,0x07, +0x77,0x05,0x74,0x78,0x75,0x70,0xa0,0x3b,0xa7,0x57,0x8e,0xfe, +0x2f,0x7a,0x45,0x49,0x66,0x8e,0x91,0x21,0x59,0x5f,0x59,0xa7, +0x9c,0xaa,0x82,0xc8,0xea,0xa8,0xc0,0x50,0xbf,0x70,0x9f,0x48, +0x97,0x12,0x17,0x99,0x7b,0x51,0x80,0x33,0x5f,0x9b,0x50,0x17, +0x57,0x17,0xe3,0x1e,0xe5,0x16,0xed,0x12,0x5b,0xe1,0xcc,0x0f, +0xc9,0xfa,0xcb,0xba,0xe4,0xcd,0x11,0xcd,0xe1,0x8d,0xe1,0xd5, +0x1d,0x7c,0x80,0xd4,0x4f,0xea,0x5f,0x54,0x5d,0x5c,0x59,0x5c, +0x51,0x1a,0x52,0xc1,0x57,0x35,0x05,0xca,0x02,0xa5,0xfe,0x52, +0x09,0x7d,0xa7,0x44,0x5e,0xe2,0xde,0xc0,0x07,0x84,0xf8,0x86, +0xfb,0x44,0xb8,0x94,0xba,0x14,0xbb,0x17,0xfa,0xbb,0xf1,0x75, +0xf1,0xf5,0xb1,0xf5,0xd1,0xee,0x91,0xae,0x51,0xce,0xb1,0x9c, +0xf2,0x13,0x21,0x8b,0xcc,0xea,0x74,0x2a,0x47,0xc0,0x06,0x27, +0x18,0x5a,0xc9,0x49,0x73,0xa4,0x1c,0xfc,0x0d,0x5f,0x99,0x82, +0xbd,0x06,0x8c,0x0c,0x14,0x2a,0x18,0x6f,0x07,0x67,0x99,0x34, +0x4b,0x15,0x3c,0xeb,0x00,0xa7,0x99,0x54,0x53,0x15,0x51,0x59, +0x1d,0x63,0xd2,0xf4,0x54,0x66,0x25,0x4c,0xea,0xb4,0x0a,0xec, +0xef,0xc2,0x83,0x4c,0xda,0xa8,0x0a,0x1c,0xa6,0x4a,0x8b,0x49, +0x6b,0x1f,0xcb,0x7a,0x5c,0x34,0x56,0x2a,0x09,0xee,0xd0,0x0c, +0x3d,0x11,0x77,0x30,0x49,0x22,0xc5,0x62,0x15,0x6d,0xdc,0x3b, +0x05,0xaf,0xc0,0x97,0x4c,0x52,0x74,0x3c,0x7d,0x71,0x98,0x2e, +0x2c,0x99,0xd9,0x2c,0xf6,0xab,0x7d,0x93,0x02,0x38,0xdf,0xc4, +0xc8,0x64,0x97,0x5f,0x66,0x8b,0x3d,0xa8,0xae,0xec,0xc9,0x17, +0x1f,0xa5,0x1e,0x48,0x9f,0xe0,0x66,0xdf,0xee,0x9d,0xd1,0x61, +0xd0,0x11,0xec,0x88,0x10,0xd3,0xa5,0x8c,0x61,0x84,0x18,0x9a, +0x91,0xbb,0x95,0x31,0xf6,0xec,0xec,0x12,0x61,0x31,0x19,0xee, +0x6a,0x1f,0xae,0xee,0xd1,0xaf,0xe0,0x03,0x1c,0x5c,0xec,0x2d, +0x9d,0x38,0xe5,0xc0,0x77,0x62,0xaf,0xda,0xb3,0xc4,0x4d,0xec, +0x55,0xb7,0x06,0x2a,0xe6,0x7a,0xd5,0xe1,0xa4,0xdc,0xbd,0xd8, +0x39,0xdf,0x51,0xec,0x55,0x77,0x84,0x75,0x04,0x37,0xce,0xf7, +0xaa,0x5d,0xf3,0x6c,0x32,0xed,0x6e,0x64,0xf3,0xc9,0xfd,0x71, +0xbd,0xcf,0x7b,0xd5,0x34,0xe1,0x7e,0xfd,0x00,0x46,0x68,0x3c, +0x1c,0x98,0x23,0xfc,0x39,0xf5,0x92,0xe4,0xf7,0x4b,0x53,0x63, +0x00,0x9e,0x30,0x07,0x53,0x74,0x13,0xe7,0x7b,0xd5,0x8e,0xcb, +0x2d,0x44,0xc2,0xff,0xb5,0xa9,0xf1,0x3c,0xe1,0x3e,0x79,0x04, +0x5f,0x33,0xff,0x5c,0xaa,0x74,0x21,0xc2,0x02,0xb0,0x54,0x2e, +0x60,0x47,0x55,0xe9,0x81,0x0d,0x3d,0x10,0x36,0xad,0x20,0x37, +0x60,0x81,0x16,0x0b,0x2b,0x55,0x6f,0xc0,0x62,0x2d,0x56,0xf9, +0x5a,0x29,0x45,0x6c,0x12,0x45,0x6c,0x1a,0xcd,0x3a,0x37,0x61, +0x81,0xa6,0xf8,0xa7,0x9b,0xb0,0x58,0x93,0xfe,0x29,0x8d,0xe6, +0xce,0x24,0x9a,0x3b,0xd3,0x56,0x91,0x5b,0xb0,0xe0,0xbc,0xf8, +0x97,0x5b,0xb0,0xf8,0x3c,0x8b,0xb3,0x86,0x24,0xcc,0xd9,0xc3, +0xde,0xdd,0xb3,0xcd,0x8d,0x57,0x34,0xb5,0x0f,0x56,0x74,0x72, +0x2d,0xaa,0x65,0x21,0xd5,0x9e,0xb2,0xc0,0xf6,0x7a,0x3e,0xb2, +0xca,0xbf,0x31,0xbc,0x8c,0x03,0x37,0x5f,0x52,0xeb,0xa9,0xb0, +0x29,0x77,0xeb,0xac,0xe3,0x43,0x5b,0xdc,0x7b,0xfd,0x14,0x1c, +0xbe,0x70,0x91,0x84,0xb9,0xfb,0xbb,0x7a,0x78,0xb5,0xb9,0xf3, +0x8d,0x8a,0x86,0xce,0xf2,0x56,0x0e,0xd4,0xd0,0x86,0x0c,0x61, +0x33,0x2b,0xab,0x94,0xca,0xf3,0x4a,0x8d,0x28,0x9d,0x07,0x45, +0xf9,0x87,0x89,0x83,0xbb,0x16,0xb0,0x84,0x09,0xf2,0x0e,0xf0, +0xf0,0xf5,0x1c,0x0f,0x9b,0x0a,0x9e,0x0e,0x30,0xf0,0x38,0xed, +0xbf,0x3b,0xaa,0xc4,0x84,0xff,0x6b,0xd9,0xc7,0x2d,0xb7,0x07, +0x87,0x82,0x86,0x02,0x07,0xfc,0x1b,0x06,0xa9,0xe8,0xb5,0xad, +0xb0,0x2f,0xeb,0xed,0x6a,0x1e,0xaa,0xbe,0xcc,0x61,0xe7,0x69, +0x52,0x52,0x51,0x56,0x5d,0x56,0xc3,0xc1,0x51,0x26,0xc4,0xca, +0xcb,0xc1,0xde,0xcd,0x4c,0x6e,0x55,0xea,0x2c,0xe5,0x66,0x4e, +0xe8,0xfe,0x67,0xe6,0xee,0xa1,0x99,0xbb,0xe9,0x7e,0x05,0xcd, +0xdc,0x56,0xff,0xca,0xdc,0xce,0xf3,0x99,0x5b,0x3f,0x4f,0x4f, +0x9c,0x4e,0x39,0x1d,0x35,0x17,0x4f,0x2f,0x47,0x3e,0x2f,0xb2, +0xfa,0xe7,0x63,0x67,0xae,0x27,0x67,0x28,0xba,0xec,0xfb,0x07, +0x30,0x09,0xd3,0x78,0xe4,0x97,0x3e,0x54,0xc1,0xaf,0x2e,0xfb, +0xbd,0x30,0x04,0xcf,0xa8,0x46,0xd2,0xf9,0x75,0x4e,0xab,0xb9, +0x58,0x46,0x8d,0xcc,0x4d,0x6e,0x9e,0x6b,0x79,0x3c,0x10,0x5d, +0xf6,0xc9,0x63,0xf8,0x9e,0x99,0x8d,0x80,0xa7,0x64,0x12,0xd4, +0x0d,0x26,0x26,0x61,0xe9,0x20,0x2e,0xbd,0x65,0x74,0x1e,0xd5, +0xc5,0x1f,0x2f,0x59,0xc2,0x4b,0x06,0xec,0x8c,0xd6,0x30,0xf5, +0xd5,0xc5,0xf7,0x59,0xfc,0x0b,0x66,0x12,0x38,0x86,0x16,0x48, +0x6b,0xc9,0x0b,0xaa,0xf4,0xc8,0x92,0x1e,0x6d,0x83,0x65,0x64, +0xef,0xda,0x8f,0x59,0xf8,0x46,0x75,0xef,0xea,0x8f,0x59,0x65, +0x5a,0x2a,0x75,0xdf,0xc5,0x8f,0x58,0xac,0x45,0x75,0x12,0x1f, +0x18,0xe5,0x15,0xe6,0x2b,0x2e,0x36,0x5a,0x58,0x56,0x20,0x2f, +0xa8,0x33,0x2f,0xe1,0xfd,0xcf,0xdb,0x1e,0x32,0xd4,0x6e,0x75, +0xe4,0x8b,0x8a,0xa5,0x25,0x45,0x65,0x1c,0xfe,0x30,0x3e,0x06, +0x7f,0x1d,0xc4,0xed,0x4f,0xe0,0x9d,0x7e,0x7c,0xe7,0x11,0xbc, +0xd3,0x87,0xef,0x3c,0x84,0x63,0x03,0xb8,0x8f,0x2d,0xa9,0x92, +0x55,0xe7,0x51,0xba,0x8c,0xc3,0x0b,0xe4,0x21,0x68,0x1c,0x67, +0x51,0x83,0x32,0xd3,0x23,0xd0,0xa0,0x17,0xf0,0xe0,0x3c,0x89, +0xa1,0xa9,0x3d,0x52,0x21,0xb6,0x91,0x3c,0x2a,0x0c,0x44,0x9b, +0x56,0xce,0xb5,0x91,0xca,0xbe,0xcd,0x7d,0x24,0xb6,0x91,0x4e, +0x86,0x6f,0xf3,0x9e,0xdb,0xab,0xc5,0x89,0x14,0x9b,0x4a,0xa9, +0x4d,0xbb,0xa9,0x1a,0xba,0x12,0x75,0x59,0xb4,0xe9,0xe2,0x48, +0x52,0x70,0x46,0x4c,0x14,0x62,0x1b,0xe9,0x6e,0xe2,0xed,0xd8, +0xbb,0x9c,0x50,0x8d,0xbb,0xc8,0x13,0xd0,0x38,0xc8,0x2e,0x1d, +0x56,0x7e,0x40,0xfa,0xd3,0x7b,0xd3,0xfb,0x32,0x39,0x3c,0x3a, +0x0c,0x27,0xd9,0xa6,0x0c,0x45,0x56,0x73,0x56,0x76,0x5c,0x76, +0x7c,0x76,0x7c,0x5b,0x19,0x9f,0x08,0x49,0x9d,0x98,0xe4,0xcd, +0x86,0xb5,0xf9,0x75,0xf9,0x35,0xba,0x87,0xf2,0x85,0x51,0x05, +0x51,0xf9,0x91,0xb6,0xc9,0x36,0xa9,0xd6,0xa9,0x83,0xad,0xfd, +0xdd,0xa3,0x23,0x6e,0xf5,0xbc,0xbf,0x8f,0x97,0xb7,0x9b,0x77, +0x6c,0x61,0x54,0x51,0x74,0xa1,0xa2,0xae,0xa1,0xb1,0xbe,0xd5, +0xa5,0x9a,0x0f,0xf4,0xf0,0xf6,0xf4,0xf4,0x8d,0x2a,0x8c,0x2e, +0x8c,0xcb,0xf5,0xf2,0xe2,0x5b,0xfc,0x3b,0xdd,0x1b,0x7d,0x68, +0x6d,0x13,0x15,0x1a,0xc5,0x85,0x86,0x5c,0x0c,0x5d,0xae,0xfc, +0x06,0x08,0x69,0xf1,0xeb,0xf0,0x68,0xf4,0x0e,0xa5,0x6f,0x86, +0x46,0x73,0x17,0x43,0xc3,0x2e,0x85,0x2e,0xcf,0xb1,0xeb,0x4d, +0xef,0x49,0xef,0xc9,0x94,0xcc,0x5f,0x91,0x62,0xee,0x8a,0x72, +0xe2,0xe8,0x2b,0xbe,0xbd,0x82,0x0f,0x6a,0xf3,0xee,0xf0,0x69, +0xf0,0x08,0xe6,0x0b,0x63,0x0a,0x62,0x0a,0xa2,0xed,0x93,0xed, +0x52,0xed,0xd2,0x86,0x5b,0x06,0xbb,0xc7,0x47,0xe9,0x95,0xf8, +0x7a,0xbb,0x7b,0xb9,0x7a,0xc7,0x14,0x45,0xd1,0x57,0x73,0x9d, +0xa2,0xb1,0x51,0xbc,0x12,0x3f,0x0f,0x2f,0x4f,0x77,0x7a,0x25, +0x51,0xf4,0x4a,0x7c,0x7d,0xf8,0x1c,0xec,0xb2,0x83,0x2e,0x16, +0x4b,0x60,0x11,0x71,0x80,0xf8,0x2e,0x36,0x9d,0xfa,0x0f,0x93, +0x1c,0x20,0x89,0xc1,0x9f,0x37,0x90,0x0a,0x67,0x99,0x6b,0x89, +0x5d,0xbf,0x8c,0x8f,0xe8,0x09,0xed,0x0c,0x6d,0xe6,0x94,0xad, +0xa1,0xa4,0xda,0xb9,0xcc,0xb1,0xcc,0xa1,0xaf,0x94,0x0f,0xe9, +0x0e,0xee,0x0a,0x6e,0xe6,0x66,0x6b,0xd3,0x48,0x9c,0x73,0x98, +0x9d,0xbf,0x5b,0x7f,0x38,0x5f,0xd7,0x55,0xdc,0x59,0xd0,0xc5, +0x29,0x1b,0x28,0x6f,0xd5,0x77,0x96,0x76,0x14,0x77,0xda,0x48, +0xf9,0x68,0xe7,0x60,0x47,0x7f,0xaa,0x6d,0x0d,0xc5,0xdd,0x50, +0xce,0xe2,0xfb,0x6c,0x7e,0x51,0x9e,0x34,0xb7,0x88,0xfb,0x1a, +0x96,0x61,0x1a,0x2e,0xfb,0x88,0x49,0x8a,0x49,0x88,0x8e,0x8b, +0x11,0x1b,0x82,0x4f,0x67,0x4e,0x32,0x21,0x69,0x41,0xc9,0x61, +0xea,0x81,0x49,0x91,0xa9,0xae,0xcb,0xb7,0x33,0xc5,0x76,0x2a, +0x7f,0x66,0xee,0x57,0x56,0xb4,0xe4,0x6a,0xe4,0xd6,0x67,0xf6, +0xa6,0xf7,0x72,0xb3,0x67,0x5a,0x67,0x7c,0xba,0x67,0x7d,0x9a, +0x18,0xf8,0x1e,0xae,0x12,0x13,0x5c,0x37,0xc6,0xc2,0x97,0x68, +0x41,0x84,0xf6,0x16,0x65,0x3b,0x23,0xb4,0xaf,0x26,0xf4,0xb7, +0x1b,0x3b,0xab,0x8e,0xf7,0xc9,0x50,0x6b,0x4b,0x57,0x55,0x3b, +0x2d,0xf8,0x02,0xdd,0xdc,0xdc,0xac,0x3d,0x38,0x65,0xd7,0x47, +0xa4,0x3a,0xa8,0xcc,0xb7,0xc4,0x47,0x9c,0x4b,0xab,0x08,0xaa, +0x09,0xa2,0x48,0x33,0x0f,0x27,0x65,0xde,0xc5,0x9e,0x05,0x6e, +0xb4,0xe0,0x8b,0x69,0x0e,0x6f,0x0e,0xae,0xe1,0xd0,0x95,0x52, +0xa6,0x57,0xae,0x73,0xb6,0xd3,0x75,0x5a,0xf0,0x75,0xc6,0xb6, +0x47,0x37,0xd0,0xf8,0x3b,0x3c,0x73,0x91,0x08,0x07,0xde,0x3b, +0x87,0xa1,0xf8,0xc3,0xec,0xa1,0x1b,0x57,0x66,0x76,0xe9,0xde, +0x98,0x39,0x24,0x90,0x6f,0x94,0x07,0x98,0xd9,0xe2,0x59,0x2a, +0x7a,0x33,0x67,0x76,0x09,0x99,0x2c,0x56,0x2b,0xb7,0x11,0x8f, +0x3a,0xf3,0x26,0x97,0x0a,0x37,0x27,0xbe,0x25,0x64,0xc4,0x4d, +0xe1,0x2b,0x2e,0x47,0xfe,0x84,0x7c,0xdb,0xff,0xed,0xb5,0x67, +0xf7,0x9e,0xea,0x3c,0xd1,0xba,0xa6,0xdf,0xd1,0xcd,0xeb,0x5c, +0x3e,0x7c,0xed,0xc0,0xf4,0xbd,0x6b,0x57,0x6f,0xf5,0xdd,0xb2, +0x6a,0xe0,0x6d,0x35,0x75,0x34,0x4f,0xeb,0x6c,0xbf,0xb1,0x63, +0xf2,0x64,0xa7,0xbb,0x3d,0x7f,0xc7,0xf9,0x99,0xd1,0x1f,0xb5, +0xf7,0x6b,0xbd,0x63,0xb0,0xd5,0x8e,0x53,0x1a,0x80,0x3e,0x69, +0x0b,0x1c,0x73,0x50,0x78,0xb6,0x76,0xf3,0x1e,0x0a,0x8b,0x76, +0xa7,0x2a,0x0e,0xbf,0xde,0x45,0xdc,0xeb,0x4d,0x5a,0x1d,0x2b, +0x5d,0x1c,0xf9,0xce,0x90,0x71,0x27,0xfa,0x3d,0xa0,0xba,0x8d, +0x74,0x06,0xf4,0x3b,0x36,0x7a,0x76,0x74,0xf2,0x1e,0x4d,0x36, +0x6d,0x4e,0xd5,0x9c,0xb8,0xef,0x99,0x19,0x19,0xc5,0x33,0x4f, +0x8c,0x31,0x0c,0xc9,0xec,0xe9,0x91,0x49,0x68,0x9c,0x59,0x8a, +0x6f,0x7d,0xc7,0xce,0x1c,0x1c,0x20,0xc1,0x8d,0x5e,0x0a,0x5f, +0xb9,0xab,0x27,0x5f,0x17,0xd4,0xe0,0x55,0xe9,0xc5,0x65,0xcc, +0xfa,0x12,0x9f,0xde,0xe0,0x3b,0x91,0xcf,0xfa,0x7f,0x6e,0x86, +0x65,0x55,0xb0,0xc5,0xac,0x88,0x8f,0x40,0x95,0xa0,0x8d,0xbe, +0x7b,0x62,0x61,0x41,0x32,0xbc,0x7e,0x11,0xd4,0x39,0x58,0x3b, +0x81,0x6b,0x61,0x89,0x09,0x2e,0xc1,0x36,0x3c,0xcc,0x60,0x77, +0x24,0x6e,0xb5,0x98,0xdf,0x6f,0x64,0x12,0xb6,0x8a,0x6b,0x43, +0x8f,0x88,0xfb,0x8d,0x84,0x53,0x50,0x9d,0xc9,0xc3,0xbd,0x72, +0xfc,0xbd,0xfd,0x3b,0xc6,0xc7,0xcf,0xea,0xb4,0xda,0xf0,0x93, +0x63,0x83,0xd7,0x3b,0x1f,0x16,0x6b,0x97,0x9b,0x56,0x3b,0x37, +0xd8,0x4e,0x17,0x64,0x4d,0xc8,0xc0,0x91,0xb7,0xa8,0x50,0xc1, +0x7f,0x28,0x5f,0x25,0xc6,0xb0,0x7f,0x9c,0x15,0x5e,0xc4,0x51, +0x12,0x57,0x13,0x57,0x1b,0x5d,0xed,0x11,0xc2,0x97,0x78,0x15, +0xb9,0x16,0xb9,0xd6,0x14,0xf3,0x18,0x8d,0x21,0x30,0xc4,0x16, +0xfb,0x4a,0xbd,0xa5,0x5e,0x8d,0xd5,0x7c,0x74,0x53,0x64,0x63, +0x98,0xc2,0x3f,0x84,0x87,0x30,0x08,0x61,0xb7,0xe1,0x2b,0x24, +0x52,0x11,0xd1,0x14,0xd2,0xe8,0x15,0xc8,0x53,0x2f,0x7b,0x94, +0xba,0x72,0x67,0xf0,0x0b,0xd2,0x7c,0xb9,0x7e,0xb2,0xfa,0x6a, +0x95,0x8d,0xdc,0xae,0xd4,0xae,0xa9,0x8a,0x0f,0x1e,0xf6,0x1b, +0xf3,0x19,0xad,0xbe,0x5d,0x7e,0xbf,0xf8,0x03,0x67,0x0a,0xd0, +0x73,0x91,0x3a,0xa1,0x06,0x81,0xdd,0xfe,0xdd,0x7e,0x9d,0x1e, +0x7e,0xbc,0xc2,0x4a,0x61,0x5e,0x67,0xe1,0x7f,0xc6,0xf3,0x82, +0xab,0x2e,0xa7,0x3c,0x09,0x3f,0x13,0x61,0xd3,0xc8,0x1d,0x58, +0x00,0x5f,0xb2,0xb8,0x50,0xdc,0xea,0x34,0xf1,0x1a,0x26,0xb2, +0x82,0x6d,0x38,0x29,0xf6,0x2d,0x76,0x2a,0x70,0x6f,0x29,0xe7, +0x63,0x9b,0x23,0xdb,0x22,0x14,0xd4,0xcc,0x9f,0xce,0x34,0x91, +0x1c,0x59,0xb6,0x2c,0xbb,0x58,0xbf,0x80,0xf7,0xdb,0x6f,0xa7, +0x69,0x66,0x34,0xe0,0xc2,0x77,0xf6,0x35,0xf6,0x57,0x0f,0x72, +0xb0,0x90,0x0a,0x6c,0x13,0xfc,0x4c,0x69,0x08,0x9f,0xa1,0xd9, +0x28,0x68,0xf5,0xa2,0xd6,0x00,0x78,0x0d,0x30,0xb3,0x44,0xb0, +0x23,0xb0,0xf8,0xef,0x60,0xbf,0xe2,0x27,0x58,0x36,0x8a,0x7f, +0x15,0xe4,0xf0,0xc3,0x28,0x8b,0x67,0xe0,0x3e,0xc1,0xc5,0x3f, +0xc1,0x62,0x06,0x17,0xa3,0x8c,0xd0,0x4b,0xf0,0xc6,0x05,0xac, +0xf2,0x25,0x3c,0x4d,0x6a,0xab,0xc2,0x4a,0x83,0x8b,0x03,0xa5, +0x12,0xdf,0x40,0x79,0x74,0x45,0x64,0x59,0xb8,0x04,0xad,0x20, +0x1d,0xde,0x64,0x42,0x83,0xaa,0xe2,0xaa,0xa3,0xe4,0x51,0x92, +0xca,0xea,0x10,0x59,0x50,0x51,0x60,0x81,0x84,0xaa,0x9d,0x74, +0x71,0xd9,0x62,0x5d,0xd2,0x1e,0xde,0x16,0xdc,0x16,0xe8,0xec, +0x6b,0xef,0x67,0x17,0x58,0xef,0xc1,0xf7,0xd7,0xf4,0xd5,0x77, +0x29,0x9a,0x82,0x14,0x81,0x0a,0xff,0x7a,0x05,0xef,0x5d,0xe9, +0x55,0xe9,0x29,0x6f,0xa8,0xa9,0xad,0xad,0xac,0x73,0xa3,0x46, +0xf2,0xf3,0xf5,0xf3,0xf4,0x77,0xae,0x76,0xac,0x74,0xa6,0x09, +0x56,0xe7,0x28,0xa9,0x8c,0xae,0x8c,0xac,0x08,0xaf,0xaa,0xe1, +0xc3,0x4b,0x82,0x8b,0xfd,0xa5,0x1c,0xea,0x58,0x93,0x30,0x69, +0x90,0x34,0xa0,0xd0,0xc7,0x9f,0xaf,0x8e,0xad,0x88,0x96,0x47, +0x71,0xf8,0x4d,0x0b,0xbd,0x62,0x5c,0x0c,0x8b,0xd9,0x24,0x0c, +0x20,0xe8,0xf9,0xb6,0xd1,0x3f,0x96,0x4f,0x6c,0x00,0x4f,0x56, +0x48,0x34,0x21,0xb8,0x17,0x77,0xc0,0x5e,0x56,0xb9,0x04,0xf7, +0x12,0xdc,0x0e,0x7b,0x61,0x3b,0x33,0x25,0xae,0x2b,0xb8,0x17, +0x0e,0xe0,0x5e,0x76,0xe9,0xcc,0xcb,0xca,0x2f,0x89,0xb5,0x7c, +0xaa,0x79,0x72,0x50,0xd1,0x27,0xe9,0x12,0x5e,0x60,0x65,0xe5, +0x45,0xe5,0x85,0x15,0x17,0x8a,0x78,0x1d,0x6a,0xf9,0x45,0x9b, +0x71,0xd9,0xb9,0x46,0x33,0xbe,0xa2,0xa0,0xbc,0xb0,0xbc,0x88, +0x13,0xd7,0x6f,0x89,0x09,0x59,0x7d,0x0c,0x5f,0x52,0x1f,0xb6, +0xba,0xfe,0x43,0xfd,0xb7,0x05,0xb0,0x46,0x32,0xe3,0x09,0xe7, +0x30,0xed,0x13,0x68,0x1d,0x11,0xef,0x78,0x39,0xf1,0xf5,0xb2, +0xf4,0xb0,0xf2,0xb7,0xa8,0xb0,0x2a,0xb3,0x28,0xf3,0xb2,0xe6, +0xa7,0x42,0x2f,0x87,0x8c,0x86,0x70,0xf8,0x39,0x73,0xb9,0x73, +0x74,0xa0,0x67,0x84,0xeb,0xc7,0x4a,0x82,0xe7,0x3e,0x81,0x73, +0xcc,0xf4,0x1e,0x42,0x7f,0xd1,0x92,0x38,0xc1,0x82,0xec,0x46, +0x4d,0x36,0xbd,0x2e,0xbd,0xbe,0x51,0x4d,0xb9,0x57,0x75,0x37, +0x9e,0x7b,0xc6,0x2a,0x0f,0xee,0x26,0x78,0xe1,0x19,0x5c,0x60, +0x04,0x85,0x08,0x01,0xef,0x11,0xf4,0x7e,0x4f,0x07,0x8b,0x98, +0x4d,0xf1,0x39,0xc6,0xf0,0xa6,0x14,0xf8,0x32,0x60,0x6b,0x24, +0x69,0xa3,0x27,0x23,0x0f,0xc6,0xec,0x8b,0x93,0x28,0x17,0x24, +0x13,0x9f,0xd8,0xfc,0x3a,0x8d,0xfb,0xec,0x57,0xc5,0xb0,0xa0, +0xfe,0xa3,0x26,0xff,0x11,0xfe,0x8c,0xd7,0x7a,0xbf,0xad,0x11, +0xdc,0xd7,0x3a,0x18,0xc2,0x6a,0xd7,0x07,0xdf,0x54,0x07,0x27, +0xa6,0x47,0x56,0xd6,0xae,0xf1,0x98,0x35,0x94,0xa9,0x6c,0x63, +0x97,0x42,0x11,0xdc,0x23,0xfe,0x69,0x01,0x69,0xfe,0x17,0x73, +0x2c,0x79,0x50,0x2b,0x80,0xd7,0xa5,0x3f,0x96,0xa4,0xf4,0xf3, +0xa7,0x62,0x0f,0xc6,0xef,0x4b,0xe0,0x1e,0x83,0x6f,0x1f,0xfa, +0x8e,0x41,0x05,0x6a,0xb0,0xa6,0x35,0xa1,0x93,0xea,0xe0,0xc5, +0x74,0xca,0x64,0x2d,0x1a,0xbd,0xac,0x99,0x4c,0x45,0x17,0x9d, +0x58,0xff,0xc4,0x3c,0xb9,0x46,0x0d,0xfb,0x6d,0xc1,0x8f,0x65, +0x8f,0x2b,0x43,0x06,0xf8,0x53,0xc1,0xdb,0xc2,0x37,0xc7,0x72, +0xd7,0x21,0x1f,0x0e,0x61,0xda,0x0d,0xe8,0x19,0x13,0xc8,0xdd, +0x53,0x67,0x84,0x57,0x31,0x9d,0xc5,0xd4,0x50,0x3c,0xa9,0x8d, +0xbc,0xfa,0x84,0xc5,0x0d,0x58,0x23,0x07,0xdd,0x0c,0x88,0x94, +0x7c,0xca,0xfc,0x00,0x87,0x08,0xea,0xdd,0x00,0x3d,0x06,0x12, +0xb5,0x08,0x6a,0xde,0x00,0x4d,0x46,0x38,0x86,0x5a,0x34,0x19, +0xeb,0x1d,0x67,0x21,0xf1,0x21,0x39,0x8e,0x9a,0x0f,0x59,0xe5, +0x91,0xe3,0x04,0x75,0x1e,0x02,0x15,0xac,0x35,0xc2,0x30,0x81, +0x6b,0x43,0x78,0x6d,0x0a,0xbe,0x18,0xc2,0x2f,0x26,0x75,0x0c, +0xf0,0x5d,0x0b,0x78,0x57,0x1f,0x07,0x2d,0x60,0x50,0x0b,0xff, +0x69,0x3e,0xd3,0x3d,0x2c,0x2c,0x65,0x96,0x42,0x9d,0xb2,0x94, +0xe0,0x2e,0xd6,0xf9,0xa2,0x53,0x9a,0xc3,0xc5,0x6c,0x7a,0x87, +0xcb,0x73,0x41,0x2d,0x17,0x96,0x16,0x5d,0xec,0xe7,0x4f,0x26, +0x1d,0x4b,0x3a,0x94,0xc2,0xdd,0x02,0x97,0x5e,0x74,0x19,0x86, +0x4a,0x71,0x74,0xa0,0x34,0xf8,0x5d,0x75,0xb0,0x60,0xba,0x4b, +0x64,0xdd,0x1a,0x8d,0xac,0x81,0x4c,0xc5,0x18,0xf5,0x58,0x8f, +0x84,0xec,0x5a,0x8d,0x2a,0xf6,0xb3,0x9c,0xbf,0x94,0x7c,0x52, +0x1e,0xd2,0xc3,0x9f,0x0f,0xdf,0x14,0xb5,0x2d,0x91,0x9e,0x58, +0x08,0x9b,0x31,0xff,0x1a,0xf4,0x0f,0x09,0x7b,0xaf,0x5c,0xd0, +0x15,0x16,0x8a,0x3b,0xf1,0xa8,0xa6,0xe1,0xc2,0xf3,0x6b,0xd4, +0xc7,0x1d,0x86,0x3e,0x2a,0xfd,0x28,0xf7,0x4f,0x12,0x30,0x86, +0xcd,0x04,0x0d,0xae,0x81,0x01,0x33,0xa9,0x4d,0xe8,0x2f,0x6d, +0x16,0x2f,0xad,0x20,0x68,0xc8,0xa4,0x57,0x5c,0x92,0xcb,0xd5, +0xc4,0xf7,0x55,0xc1,0xe0,0x02,0x1a,0x30,0x4a,0x3d,0x55,0x34, +0xbf,0x0e,0xe6,0x0c,0xee,0x13,0x0c,0x49,0x53,0x4d,0x5b,0x47, +0x55,0xab,0x79,0x3d,0x1f,0xe2,0xe1,0xe6,0xe6,0x4e,0x59,0x76, +0x64,0x27,0x19,0x17,0xf6,0xc3,0xeb,0x3a,0xf8,0xba,0xb0,0xc1, +0x58,0xb9,0x88,0xd5,0x37,0xc4,0xc5,0xce,0x68,0xef,0x54,0x6e, +0xc8,0x43,0xe2,0xe8,0xdf,0xdb,0xbb,0xff,0xc8,0xe5,0xa2,0xf9, +0x55,0x30,0xcf,0x65,0xba,0x77,0xc1,0x2b,0xce,0x90,0x62,0x5a, +0x36,0xc1,0xa3,0x4b,0x27,0xbe,0xd4,0xae,0x43,0xa5,0xe3,0xdf, +0x60,0x23,0xa9,0xf5,0xad,0xf5,0xaa,0x72,0x1b,0xad,0xe7,0x03, +0x5b,0xbc,0x15,0xbe,0xb5,0xdc,0x52,0x90,0x2b,0xa7,0x88,0x78, +0xe1,0x2f,0xa6,0x66,0xd9,0x80,0x46,0x36,0xa8,0x67,0xc3,0xeb, +0x05,0x92,0xb4,0xee,0x63,0xc9,0x47,0x52,0xf6,0xa7,0x4a,0x86, +0xc1,0xaf,0x13,0xfd,0xba,0x40,0xb1,0x9e,0x35,0x2a,0x0d,0xbd, +0xa6,0x0e,0x1e,0x4c,0x5b,0x49,0x61,0xb3,0x46,0x33,0x6b,0x58, +0xa8,0x62,0x85,0x16,0xac,0x77,0x62,0x7a,0xad,0x46,0x09,0xfb, +0x59,0xe6,0x5f,0x0a,0x3f,0x29,0x0b,0x69,0xe7,0xcf,0x85,0x6f, +0x8f,0xdf,0x94,0xca,0x0d,0x52,0xeb,0x48,0xb0,0x70,0x10,0x46, +0xfb,0x84,0x9d,0x13,0x9a,0x46,0xc2,0x92,0xc3,0x2c,0x6e,0x08, +0x3b,0x6c,0x7a,0x48,0x7d,0xc8,0xb1,0xe3,0x9a,0xfc,0x66,0xc1, +0x7d,0x09,0x58,0x83,0x84,0xa0,0xf1,0x20,0x18,0x33,0x97,0x2d, +0x09,0xfd,0x65,0xc9,0x62,0xc6,0x56,0x82,0x66,0x4c,0x7a,0x69, +0x7a,0x69,0xa9,0x1a,0x98,0x30,0x90,0xa1,0x6a,0x8a,0xc6,0xa3, +0xac,0xd2,0xc8,0x94,0xa0,0xc5,0x28,0xf5,0x4d,0x86,0xb0,0x8d, +0xc0,0x6b,0xc2,0x2d,0x7c,0x8d,0x9d,0x59,0x87,0x67,0xc8,0xe0, +0xf1,0xaf,0x66,0xcf,0x82,0xfa,0x05,0x3c,0x0b,0x5f,0x9a,0xb1, +0x69,0xc2,0x56,0x4b,0xa5,0x06,0xeb,0x60,0x86,0x2f,0x06,0xe0, +0xa5,0x98,0x22,0x63,0x1e,0xf2,0x4a,0x60,0x43,0x95,0xe2,0x7b, +0x2e,0x97,0x51,0xac,0x85,0x83,0xc1,0x90,0x1b,0x51,0x38,0xce, +0xe3,0xc5,0x22,0x5c,0x56,0x65,0x33,0x22,0xae,0x21,0x52,0x4a, +0xac,0x05,0xc3,0x7e,0x16,0x8e,0xe2,0x3e,0x02,0xfd,0x26,0xd8, +0x9f,0x41,0x91,0x93,0x3b,0xf3,0x47,0x1a,0x95,0x7b,0x50,0xc9, +0xe2,0xc9,0x28,0x5c,0x6f,0x83,0x8c,0xfa,0x90,0xfd,0x10,0xbc, +0x51,0x0c,0x5b,0xd3,0xe1,0x98,0x04,0x3e,0x81,0x10,0x54,0xf9, +0x51,0x6c,0x36,0x69,0x3e,0x63,0x94,0x8f,0x67,0xff,0x40,0x94, +0x6e,0xb7,0xc7,0xcf,0x01,0xa7,0x8b,0x1c,0xce,0xff,0x3a,0x6b, +0x7c,0x47,0x70,0x3b,0x60,0xa4,0xb4,0x9e,0x60,0x67,0x2f,0x2a, +0xdf,0x26,0x17,0x7e,0xbc,0xce,0x0c,0xac,0x21,0x3f,0xde,0x58, +0xc3,0x2a,0xf3,0x74,0x29,0x0b,0xc0,0x8b,0x94,0x06,0x66,0x0f, +0x63,0x3c,0x01,0xd5,0xeb,0xe2,0x7e,0xa6,0x0b,0x41,0x95,0xfa, +0x42,0x0b,0xe8,0xe1,0x09,0x54,0x25,0xe7,0x41,0xf5,0x16,0xa3, +0x5c,0xad,0x4d,0xf0,0x15,0xfa,0x8f,0x5f,0x61,0x85,0xed,0xf8, +0x90,0x3c,0x1c,0x3a,0x0e,0xaf,0x98,0xe1,0x37,0x4c,0x70,0x52, +0x48,0x72,0x48,0x4a,0xa1,0x09,0x7f,0xb5,0xf4,0x4e,0xc5,0x90, +0x3c,0x69,0x98,0x0f,0x8e,0x0f,0x48,0x08,0x48,0x10,0x97,0x3d, +0x6c,0x21,0xa1,0x2e,0xbe,0xce,0x9e,0x5e,0x1c,0x6c,0x34,0xc7, +0x3f,0xb2,0xd6,0x95,0xa1,0xbd,0xea,0x3d,0x4c,0x6b,0x49,0x49, +0x8b,0xc6,0xe7,0xac,0x8d,0x4c,0x65,0x85,0x13,0x1b,0x9c,0x94, +0x5b,0xaf,0xf1,0x13,0xdb,0xdb,0xda,0x35,0x58,0x4f,0x33,0xc5, +0xf6,0xab,0x84,0x12,0xd9,0x32,0xf1,0x59,0xee,0xc5,0x58,0x47, +0x6e,0xf6,0x4f,0xdf,0xec,0xbc,0x6e,0xa9,0xe0,0x9d,0x75,0x8d, +0xf4,0xb5,0xed,0x39,0x68,0x06,0x15,0x32,0x62,0x37,0xad,0xd7, +0xab,0xd7,0xd7,0xc5,0xdb,0x4c,0x1b,0x5c,0x35,0xed,0x15,0xa7, +0xd3,0xcf,0xd4,0x90,0x5f,0xdc,0xcb,0xfc,0x87,0x7b,0x97,0x50, +0x45,0x8e,0x4b,0x52,0xb3,0x7f,0x83,0xab,0xd4,0x39,0x5c,0xed, +0x4b,0x95,0x0c,0x81,0x7f,0x17,0xfa,0xb7,0x83,0x62,0x2d,0x6b, +0x54,0x16,0xf6,0x1c,0x57,0x05,0xcd,0x1a,0x6d,0x22,0xae,0xcc, +0xd0,0x92,0xf5,0x4e,0xca,0x9e,0xc3,0x55,0xc6,0x5f,0xf2,0x29, +0xae,0x3a,0x45,0x5c,0x25,0x6e,0x4a,0xe3,0xfa,0x28,0xae,0x78, +0x2c,0x18,0x86,0x11,0x56,0xf8,0xce,0x9c,0xa0,0xc9,0x30,0x45, +0xc9,0x65,0x73,0x32,0x0c,0xc6,0xe6,0x14,0x3d,0x0e,0x54,0x9e, +0x99,0xb3,0x22,0x7c,0xca,0xd4,0x20,0x4b,0x15,0x8c,0x4d,0xc4, +0x55,0x8e,0x0d,0x69,0x60,0x8d,0xd1,0xc0,0x9a,0x35,0x98,0xf5, +0x21,0xdd,0x33,0xe7,0xec,0xaf,0x29,0x8f,0xcd,0x5e,0x16,0x8e, +0xb1,0x33,0x49,0xcf,0xc8,0xec,0x39,0x18,0x9f,0xa1,0x7e,0x50, +0xc5,0x7a,0x5a,0x77,0x74,0x8e,0x2b,0xea,0x07,0x68,0x1c,0xbd, +0x3c,0x01,0x2f,0xe7,0x32,0x75,0x56,0x37,0x3d,0xe1,0x98,0x63, +0x69,0x1f,0xbf,0x5a,0xbe,0xbd,0xce,0xbc,0x8e,0x83,0xd0,0x1e, +0xac,0xeb,0x62,0x3e,0xc9,0x7a,0x9a,0x7b,0xa3,0x28,0xbc,0x93, +0x0f,0xc0,0x97,0xd1,0x29,0x15,0x77,0x2c,0xcf,0x75,0x50,0xb9, +0xf5,0x38,0x3d,0xe3,0x3d,0x0d,0x27,0x2c,0xb5,0x03,0x5f,0xd6, +0xd2,0x77,0xb7,0xef,0x9a,0x60,0x9a,0xa0,0xdb,0x66,0x9e,0x10, +0x4d,0x03,0x61,0xc9,0x66,0x06,0x37,0x87,0x1d,0x32,0x3d,0xa8, +0x3e,0x6c,0xd7,0x75,0xbb,0xf2,0xdd,0xfc,0xf7,0x25,0xc0,0xa0, +0x3a,0x83,0x5c,0x6a,0xb6,0x15,0xac,0x98,0xb3,0xcf,0x1b,0xd4, +0x3e,0x3d,0x47,0x93,0x0f,0xa7,0x52,0xfb,0x8c,0x41,0x60,0x37, +0x06,0xf6,0x42,0x23,0x2e,0xfe,0x77,0x03,0x19,0x14,0xa9,0x98, +0xd3,0x9b,0x74,0x4f,0xa3,0x06,0x2a,0xa3,0x81,0xf7,0x6d,0x01, +0x35,0x50,0x07,0x7f,0x2e,0x62,0x7b,0xdc,0xe6,0x54,0x6e,0x9c, +0x22,0x5a,0x1d,0x0b,0x47,0x60,0x74,0x40,0xd8,0xc9,0xa2,0xce, +0x26,0xca,0x35,0x23,0x60,0xc8,0x4c,0x8a,0x4b,0x07,0x1b,0x99, +0x51,0x1b,0xd9,0x11,0x23,0x34,0x61,0x33,0xca,0x2e,0x95,0xa5, +0xd3,0x3c,0x9b,0xae,0x0a,0x46,0x46,0x68,0x34,0x67,0x24,0x8b, +0x09,0x1a,0x60,0x68,0x34,0xbb,0x91,0x78,0x27,0xe6,0x57,0x6a, +0xdc,0x85,0x64,0x48,0xc1,0x59,0x2b,0x98,0x30,0xc3,0x5e,0x6b, +0xe8,0x35,0x9c,0x5d,0x34,0x09,0xb5,0xfd,0x58,0x3b,0xc0,0x7e, +0x9f,0xf1,0x63,0xce,0xb3,0xd2,0xe0,0x7e,0x3e,0xf2,0x20,0xbe, +0x12,0x8f,0x6f,0x2c,0xc7,0x44,0x08,0x64,0x3d,0x75,0x8e,0x7b, +0xa3,0x69,0x70,0xb9,0x01,0x0f,0x3e,0xd5,0x5f,0x8d,0x34,0x7d, +0x41,0xf1,0x77,0x8c,0x31,0xa8,0x0d,0xb9,0xa2,0x0e,0x89,0x4c, +0x4f,0x79,0x69,0x87,0xc6,0x6d,0x56,0xaf,0x54,0x65,0x27,0xbb, +0x54,0xd9,0x4c,0xed,0xa2,0x63,0x24,0xbc,0x78,0xf8,0x17,0xbb, +0x0c,0x39,0x74,0xde,0xa8,0xb8,0x5d,0xf0,0x50,0x02,0x2f,0xe0, +0x32,0x06,0x5f,0x10,0xed,0x42,0x71,0xf3,0x87,0x9c,0x39,0x3e, +0xea,0x39,0x92,0x7c,0x38,0x65,0x4f,0xaa,0x64,0x00,0x42,0xba, +0x30,0x84,0xf2,0xd1,0x5b,0x94,0x8f,0xc2,0xae,0xab,0x83,0xdf, +0x6f,0x70,0x63,0x89,0x76,0x94,0x8f,0x72,0x6a,0x35,0xa4,0xec, +0x9f,0x33,0x7f,0xc8,0xfb,0x63,0x79,0x48,0x37,0x7f,0x36,0x6c, +0x6b,0xfc,0x06,0x11,0x37,0x25,0x94,0x8f,0x8a,0x86,0x60,0xbc, +0x57,0xa0,0x39,0x57,0xeb,0x1d,0x4a,0x3c,0x43,0x94,0x78,0x26, +0x2c,0xc8,0x10,0x98,0x58,0x50,0xb3,0xd8,0x13,0x53,0x34,0x63, +0x9f,0x33,0x4f,0x86,0x2a,0x98,0x98,0xa2,0x09,0xa3,0x34,0x55, +0x45,0x9b,0x51,0xb0,0x61,0x84,0x9b,0x28,0x27,0x49,0x91,0x09, +0x11,0xf1,0x54,0x73,0x6c,0xc2,0x78,0xe6,0xa2,0x7f,0xc0,0xa5, +0xa0,0xe5,0x39,0x16,0xb0,0x28,0xeb,0x6f,0x59,0x5f,0xe6,0x49, +0xf6,0x39,0xaf,0xf6,0x44,0xe2,0x5b,0x66,0xca,0xc3,0xa9,0x76, +0x20,0xe3,0x9f,0x5e,0xe7,0xd6,0xe1,0x72,0x56,0x66,0xa3,0x02, +0x2f,0x32,0x9d,0x65,0x25,0x1d,0x1a,0x00,0x78,0x81,0x15,0x9f, +0x40,0xcc,0x29,0xa2,0xe2,0x3a,0x9c,0xec,0xc7,0x04,0x33,0x48, +0xc0,0x64,0xdc,0xc8,0x96,0x1a,0xab,0xc0,0xab,0xcc,0x70,0x69, +0x49,0xaf,0x06,0xc4,0xfe,0x34,0xb2,0xfa,0x29,0x3b,0xbb,0x7f, +0x0b,0x69,0x83,0x4e,0x17,0x16,0x3b,0x0f,0x93,0x0e,0xe8,0x74, +0x62,0xa1,0x1e,0x17,0x10,0x8f,0x76,0xbb,0x5e,0x67,0x85,0x83, +0x1b,0xdf,0xe6,0xd1,0x6b,0xa3,0x70,0xe2,0x84,0xd2,0x9f,0x09, +0x74,0xfa,0x31,0xf1,0x49,0xc7,0x92,0x57,0xa6,0x6c,0x4c,0x95, +0x2c,0x55,0x96,0x29,0xab,0x49,0x2e,0x53,0xb9,0x12,0xd8,0x73, +0x50,0x72,0xa4,0x72,0x92,0xc7,0x91,0x0f,0x90,0xff,0x14,0xd6, +0xa8,0x4d,0x2b,0x77,0x8e,0x0b,0x3b,0x9f,0x6a,0xef,0x17,0x56, +0x1a,0x2b,0x57,0xea,0xb1,0xb8,0x06,0x5f,0xdd,0x8e,0xfd,0x87, +0xd4,0xe5,0xfa,0x50,0xf8,0x3e,0xbc,0x70,0xa7,0xfc,0x67,0x49, +0x2e,0x1e,0x62,0x9c,0xa5,0xe7,0xdf,0x59,0x77,0x06,0x77,0xeb, +0x4b,0xea,0x4d,0xbf,0x6c,0xf9,0xb8,0xf7,0xf6,0x98,0x04,0x9e, +0x30,0xf6,0xe6,0xe6,0xf6,0x3a,0x6e,0xc7,0xaa,0x8f,0xcb,0x8f, +0x97,0xb9,0x59,0xf3,0xd7,0x22,0xaf,0x87,0x5d,0x0b,0x59,0x6b, +0x8b,0x6f,0x78,0xe1,0xde,0x90,0x52,0x7d,0x1e,0xce,0x57,0xc2, +0x96,0x6e,0x78,0xe9,0xfa,0x4f,0x2e,0x3f,0xd9,0xff,0xcd,0xa6, +0x71,0x98,0xdf,0xd2,0xb5,0xa5,0xed,0xed,0xa6,0x5b,0xbd,0x63, +0xa3,0xed,0x57,0xb8,0x41,0xfc,0x96,0x2d,0xaf,0x28,0xa9,0x90, +0x56,0x72,0x73,0x52,0xe9,0x43,0x12,0xc0,0x6a,0x85,0x78,0xe1, +0x8b,0xe7,0xd4,0x9b,0xac,0xaf,0xb4,0xf4,0x36,0x56,0x29,0x24, +0x79,0x79,0xd9,0x69,0xf9,0x89,0x7f,0xd2,0xe4,0x5b,0x7a,0x0e, +0x4d,0xc5,0xe4,0xc7,0x5f,0x8c,0x8b,0x93,0xc4,0xc6,0x26,0x65, +0xaa,0x48,0xe5,0x39,0xd5,0x1d,0x6a,0xb5,0xac,0x52,0x5b,0xd5, +0x9f,0xd5,0x8f,0xf0,0xdf,0x6e,0x42,0x4f,0x6a,0xab,0x6c,0xab, +0x29,0xaf,0x94,0xe4,0x15,0xe4,0xa4,0xe6,0x27,0xc2,0x8b,0xef, +0xf0,0xad,0xbd,0xb8,0xf0,0xe3,0x98,0xfc,0xd8,0xd4,0xf8,0x78, +0x49,0x5c,0x1c,0x3d,0xad,0xa8,0x2a,0xa7,0x4a,0x3c,0x6d,0x29, +0x64,0x2a,0xe3,0x09,0xbe,0x3d,0xfa,0x93,0xd8,0xb0,0xce,0x49, +0x51,0x87,0xfd,0xc8,0x36,0xf4,0xe3,0x2e,0x58,0x10,0x9b,0x97, +0x78,0x31,0x3e,0x4e,0x12,0x1f,0xa7,0x92,0x44,0xd1,0xee,0x30, +0x82,0xf6,0x0f,0x8c,0x4e,0xa0,0x99,0x19,0x58,0xe0,0x72,0xe6, +0xd0,0xe1,0x63,0xa8,0x7e,0x56,0x5d,0x6e,0x0c,0x2a,0x53,0x77, +0xaf,0xe6,0xbc,0x2b,0x01,0xa9,0x3b,0x31,0x04,0x1d,0x36,0x7a, +0xcb,0x09,0xaa,0x0f,0xdf,0xdc,0xa2,0xa0,0xa9,0x77,0xf9,0x5f, +0x9e,0xfe,0x3d,0x07,0x58,0x9a,0x5f,0xf2,0xf1,0xa5,0x3b,0xeb, +0x60,0xf9,0xba,0x86,0x69,0x1e,0x55,0x3f,0x3f,0x0b,0x0b,0x62, +0xbe,0xe2,0x40,0xff,0x32,0x9a,0xd0,0xca,0xe4,0xfc,0x04,0x9e, +0x87,0xb5,0x7a,0xb8,0x76,0xee,0x79,0x0f,0x3c,0xc6,0x08,0x9f, +0x80,0x2f,0x09,0x67,0x8d,0x42,0x1c,0x0c,0x9c,0xd5,0x6b,0xed, +0x5a,0x2a,0x2b,0xab,0x64,0x55,0x92,0xcc,0xec,0x8c,0x4b,0x59, +0x29,0x53,0xc6,0x7c,0x73,0x87,0xe9,0x40,0x7c,0x7e,0xf2,0xa5, +0xf8,0x04,0x49,0x42,0x62,0x4a,0xa6,0x4a,0x41,0x79,0x6e,0x43, +0xbd,0x5a,0x29,0x0b,0x61,0xaa,0xe1,0xac,0x49,0x88,0x8b,0x91, +0x87,0x7a,0x83,0x53,0x63,0x85,0xbc,0x5c,0x2a,0x97,0x64,0x66, +0x65,0x5c,0xcc,0x48,0x7b,0xef,0x0c,0xaf,0xe8,0x38,0x3b,0x15, +0x9f,0x9b,0x94,0x9e,0x10,0x2f,0x49,0x88,0x4f,0xce,0x50,0x29, +0x92,0xe7,0xd5,0x37,0xd0,0x93,0xd6,0x0b,0x33,0x64,0xfa,0x72, +0xd7,0xed,0x8a,0xc7,0x5c,0x27,0x46,0xb0,0xb9,0xb2,0x1c,0x59, +0x96,0xd4,0xbc,0x80,0x0f,0xd2,0xd6,0x3b,0x76,0xc4,0xac,0xc6, +0x9c,0x6f,0xad,0x6e,0x69,0xac,0x6f,0x96,0x9b,0x35,0x58,0x74, +0xdb,0x1b,0x38,0x9d,0xf2,0xda,0x17,0x24,0xd7,0xe7,0xff,0x5c, +0xfb,0x41,0xfb,0x8d,0x41,0xce,0xe8,0xd1,0x4f,0xae,0xb0,0x6e, +0x39,0x3c,0x65,0x0a,0xa6,0x55,0x68,0xde,0xc1,0x25,0xdb,0xaa, +0xfb,0x4e,0x6b,0xe0,0x1a,0xd0,0x24,0xe9,0xe9,0x97,0x2e,0xa5, +0xab,0x51,0x66,0x0d,0xd3,0x75,0x33,0xb3,0xb4,0xb3,0xee,0xf2, +0x18,0x09,0xbc,0x42,0x45,0xc5,0x7b,0x9f,0x91,0x89,0x6b,0x5d, +0xf7,0xe5,0x1f,0x70,0x3d,0xe8,0xc1,0x96,0x2b,0x8a,0x1b,0xf3, +0xea,0x39,0xb0,0x19,0xc3,0x0b,0x7f,0x82,0x3d,0x23,0xb8,0xe7, +0x63,0x38,0x3d,0x82,0xa7,0x3f,0xd1,0xdd,0x83,0xc7,0xcc,0xe0, +0xd8,0x5e,0xdc,0x69,0x06,0x3b,0x77,0xe2,0x79,0x13,0xd8,0xcb, +0xf8,0x1d,0x3f,0xbe,0x6d,0x9f,0x5e,0x8d,0x21,0xdf,0x54,0xa5, +0xa8,0xab,0x6f,0xac,0x36,0x51,0x98,0x77,0xdb,0x1a,0x5a,0x9e, +0x72,0xda,0xef,0x5f,0xaf,0xcf,0xff,0xa9,0xfe,0xbd,0xbe,0xab, +0x13,0x9c,0xf6,0x13,0x58,0xe0,0x08,0x1b,0x96,0xc3,0xd7,0x4c, +0x2e,0xbd,0x28,0x64,0xf0,0x95,0x2d,0x8d,0x63,0xa7,0x34,0x60, +0x87,0x33,0x81,0xe5,0x7f,0x7f,0xf2,0x73,0x36,0xbc,0xc8,0xe5, +0x30,0xb9,0xb8,0xe4,0x03,0x5a,0x1a,0xac,0x5e,0x27,0xae,0xd3, +0xb1,0xfc,0xcb,0x83,0xa0,0x12,0x4b,0x3d,0x62,0x3d,0x8d,0xce, +0x70,0x00,0x4c,0x27,0xd1,0x14,0xd6,0x5e,0xa0,0x1e,0x39,0x63, +0x00,0x67,0xf0,0x00,0x1a,0xeb,0x81,0x16,0x13,0xb3,0xf5,0xc4, +0x0a,0xfc,0xc3,0x5b,0xdc,0x71,0x7a,0x77,0xa1,0x3a,0x1e,0x86, +0xb6,0x56,0x76,0x3d,0x9e,0x63,0x41,0x57,0x72,0xf2,0xf8,0xa5, +0xca,0xbf,0xa7,0xd1,0x54,0xbc,0xbd,0xaa,0xe7,0xac,0xc6,0xf5, +0xe9,0xde,0x77,0x65,0x8f,0xb8,0x0e,0x2a,0xac,0x73,0xa5,0x39, +0xd2,0x6c,0x29,0xd7,0x0f,0x0b,0x98,0x9c,0x8c,0xf4,0xec,0x54, +0x75,0xd8,0x8d,0x2f,0x2b,0xfa,0x70,0x1b,0x30,0xb1,0x79,0xf1, +0x97,0x12,0x28,0xb8,0x62,0x29,0xb8,0xe2,0xc0,0x7c,0x04,0xcd, +0x1e,0x98,0x9c,0x40,0x3d,0x33,0x30,0x40,0x35,0xe6,0xe0,0xb1, +0xe3,0xa8,0x4a,0xc1,0x65,0x04,0x0b,0xae,0x5e,0x9b,0xca,0xbd, +0x47,0x43,0x6f,0x2d,0x63,0x9b,0xef,0x7b,0x52,0xf7,0xfc,0x71, +0x63,0x49,0x8d,0x65,0x73,0x55,0x53,0x7d,0xbd,0x42,0x52,0x61, +0x52,0x6f,0xd1,0x63,0xaf,0xef,0x74,0xd2,0xf3,0x60,0x88,0xdc, +0x80,0xff,0x53,0xd5,0x07,0x1d,0x37,0x07,0x39,0x93,0x87,0x3f, +0xb9,0x8b,0xf7,0xff,0x27,0xa6,0x60,0x4a,0x45,0x58,0x04,0xdf, +0x52,0xe5,0x62,0x84,0xdf,0xc2,0x57,0x6c,0xaa,0x43,0x8a,0x4b, +0xb2,0x1f,0x67,0x10,0x17,0x18,0xab,0xb7,0x1c,0x5f,0x12,0x1f, +0xad,0x87,0x97,0x99,0x0f,0x5b,0x1b,0xdf,0x2f,0xd6,0x28,0x7d, +0x96,0x07,0x07,0xd2,0xe0,0x24,0x87,0x86,0xa0,0x0e,0xb6,0x13, +0x82,0xb6,0x11,0x68,0x09,0x2b,0x18,0xe1,0x53,0xf8,0x82,0x84, +0xb1,0xc6,0x21,0x0e,0x46,0x22,0x16,0x9b,0x2b,0x2b,0xab,0xa5, +0x55,0x22,0xac,0xd2,0xb3,0x52,0xc6,0x8d,0xf9,0xa6,0x4e,0xab, +0xbe,0xf8,0x7c,0x0a,0xab,0x04,0x49,0x62,0x22,0x85,0x55,0x41, +0x45,0x6e,0x7d,0x9d,0x5a,0x19,0x0b,0xae,0xaa,0x61,0xac,0x59, +0xa8,0xb3,0x89,0xa7,0x7a,0xbd,0x93,0xa2,0xbc,0xbc,0x82,0x62, +0x31,0x23,0x33,0xe3,0x62,0x66,0xda,0xfd,0xb3,0x7c,0x53,0x87, +0xd6,0x64,0x7c,0x1e,0x05,0x70,0xbc,0x24,0x3e,0x9e,0x02,0xb8, +0xb0,0x22,0xaf,0xae,0x81,0x9e,0xa4,0x74,0xc5,0xdf,0x93,0xf4, +0xd3,0x17,0x8f,0xa7,0x9c,0xe3,0xf0,0xf7,0xe0,0xc8,0x08,0x93, +0x38,0x4e,0x32,0x32,0x54,0x68,0x1e,0x8f,0xd1,0x77,0x31,0x36, +0xb1,0xb6,0xe9,0xa2,0x06,0xbf,0x46,0x53,0x67,0x96,0xf2,0x7d, +0xd2,0xaa,0x68,0xec,0xa8,0xe9,0xe2,0xa0,0x9e,0x49,0xc7,0xd7, +0x52,0xf1,0xb5,0x84,0xd3,0x9c,0x75,0x72,0x54,0x84,0xf3,0xf2, +0x73,0xe2,0x0e,0x08,0xb7,0x99,0x6b,0xf5,0x8d,0xef,0xe6,0x6b, +0x14,0x3c,0xcd,0x84,0xe5,0x69,0x70,0x80,0xc3,0x71,0xa6,0xa4, +0x49,0xda,0x94,0xdf,0x64,0x96,0xc7,0xfb,0xed,0x32,0x3b,0x70, +0x56,0x87,0x03,0x8d,0xd9,0x85,0x04,0xb9,0x77,0xaa,0xfb,0x4f, +0x6b,0x5c,0x9d,0xee,0xbe,0x2b,0x7b,0x40,0x83,0x20,0x48,0x74, +0x5b,0x11,0x75,0xdb,0xe0,0x9c,0xdb,0xe6,0x06,0xb1,0x0e,0xe2, +0x6b,0x8d,0x7d,0xb8,0x1b,0x5e,0x8a,0xcb,0x4d,0xb8,0x14,0x1b, +0x4b,0x2f,0x5b,0x25,0x99,0xba,0xcd,0x6a,0x04,0xad,0x1e,0x98, +0x9e,0x40,0x43,0x33,0x30,0x14,0xdd,0x76,0xfc,0x18,0xf2,0xe7, +0x44,0x4e,0x58,0x30,0x79,0xfb,0x7a,0xd6,0x5d,0x49,0x0e,0x75, +0x9b,0x5d,0xbe,0xe7,0x49,0xbd,0xf3,0x27,0x8c,0x25,0x75,0x96, +0x2d,0xd5,0x8a,0x86,0x3a,0x85,0x44,0x6e,0xda,0x48,0x63,0x49, +0xdf,0xf1,0x94,0xc7,0xfe,0x60,0xea,0xb6,0xcf,0xaa,0x9f,0x74, +0xdc,0x18,0xe6,0x0c,0xdf,0xa3,0xb1,0xb4,0x62,0x39,0x7c,0x2e, +0xc6,0xd2,0xec,0x97,0x33,0x47,0xff,0x17,0xab,0x57,0xcd,0x5b, +0x3d,0x7d,0xde,0xea,0xcd,0x9d,0x96,0x7d,0xd4,0x80,0x99,0xd4, +0x80,0x89,0x89,0x29,0x19,0x2a,0xf9,0xbf,0x58,0xdd,0x63,0xde, +0xea,0xc6,0x9e,0x22,0x03,0x94,0x57,0x3c,0xb7,0xfa,0xa5,0xcc, +0xd4,0xe7,0x56,0x8f,0xcb,0x4f,0x4e,0xa3,0xae,0x8a,0x17,0x27, +0x95,0x15,0x3d,0xb7,0x3a,0x28,0xf7,0x11,0x4c,0x16,0x36,0x30, +0x07,0x2a,0x7c,0x9f,0xa8,0x83,0x94,0x96,0x38,0x34,0x19,0x7f, +0xcc,0x1a,0xca,0x55,0x56,0x60,0x36,0x6b,0x15,0x2b,0x1d,0xd6, +0x80,0xd5,0xa0,0xcf,0x9a,0x82,0x03,0xc1,0x1d,0x48,0x23,0x49, +0x1c,0xee,0x1c,0x23,0x34,0xbe,0xd3,0xd5,0xa9,0x7c,0x88,0x36, +0x70,0x33,0x31,0xb7,0xb1,0xe9,0xf2,0x18,0x0d,0xbe,0x4a,0x5d, +0x73,0x7d,0xe6,0x4f,0xe4,0xe4,0x49,0x5a,0xd5,0x79,0x31,0x78, +0x39,0x0c,0xb7,0x6a,0xe1,0xeb,0xea,0x63,0x96,0x2a,0xf7,0x60, +0x7d,0x39,0x1c,0x81,0x9b,0x6a,0xb0,0x6f,0xa6,0x62,0x4c,0xe0, +0x59,0x74,0x3e,0x42,0x74,0x71,0x95,0x15,0xac,0xc2,0x90,0x09, +0x08,0x81,0xdf,0x0f,0xe0,0xef,0xaf,0xb0,0x30,0x40,0xe5,0xaf, +0xc4,0x8a,0x26,0x64,0xff,0x09,0xaa,0x56,0x4f,0x0c,0xe0,0x89, +0x2b,0x46,0x8c,0x60,0x8c,0x2b,0xc9,0xb9,0x04,0x13,0x3b,0x4b, +0xf5,0x41,0x6f,0x95,0x9e,0x89,0xa2,0x77,0xef,0xab,0xc1,0x2e, +0x5c,0x4d,0x75,0xcb,0x6a,0x33,0x06,0x96,0xab,0x9e,0x89,0x34, +0x73,0x73,0x13,0xff,0xd6,0xd6,0x53,0x72,0xfb,0xa1,0x1a,0x84, +0x53,0x24,0xc5,0x24,0x67,0x15,0x69,0x00,0x6b,0x86,0x6f,0xb0, +0x6e,0xc5,0x51,0xed,0xea,0xc3,0x4c,0x5d,0x41,0x61,0x93,0xc6, +0x00,0xeb,0x40,0xeb,0x53,0x76,0xf6,0x02,0x2e,0x24,0x16,0x90, +0x69,0x80,0xa9,0x16,0x90,0xc2,0x5e,0x0c,0x4f,0x8b,0x48,0x89, +0xda,0x15,0xbd,0x3d,0x76,0x6d,0x42,0x8e,0x29,0xff,0x59,0xee, +0xd3,0x82,0xf7,0x8b,0x7c,0xec,0x8d,0x3c,0x37,0xf8,0xd4,0x58, +0xf1,0x94,0x11,0x06,0x3e,0x83,0x95,0x6a,0x70,0xcc,0x40,0x47, +0x1c,0x23,0xdc,0x43,0x86,0x30,0xff,0x26,0xd4,0x8e,0x60,0xed, +0x35,0x03,0xc1,0x7c,0x92,0xca,0xf3,0x96,0x11,0x6c,0x79,0xc0, +0x8a,0x63,0x4a,0x5a,0x64,0x58,0xd6,0x57,0xda,0x59,0x21,0xce, +0x34,0xa9,0x8a,0x0a,0x0c,0xf3,0x8b,0xf0,0x89,0x74,0x29,0x76, +0x91,0xba,0x17,0x06,0x78,0xf0,0xb5,0x09,0xf5,0x71,0xf5,0xb1, +0xee,0x91,0xae,0x31,0xce,0x71,0xe5,0xae,0xfc,0xb0,0xac,0xbf, +0xb4,0xbb,0xa2,0x39,0xb2,0x39,0xb2,0x21,0xa2,0xba,0x99,0xf7, +0x97,0xfa,0x17,0xf9,0x15,0x56,0xcb,0x2a,0x4b,0x2a,0x4a,0x42, +0xcb,0xf8,0xea,0xc6,0x40,0x69,0x00,0x7d,0x4b,0x52,0x25,0xab, +0x2c,0x96,0x97,0x78,0xd4,0xf2,0x01,0xa1,0x7e,0xe1,0xde,0xe2, +0x08,0x95,0x38,0xa6,0xe4,0xc5,0xd7,0xc7,0x37,0xc4,0x34,0xc6, +0xb8,0x45,0x38,0x47,0x3b,0xc5,0x72,0x67,0xd1,0x99,0x38,0xa2, +0xaa,0x03,0xa8,0x1e,0x54,0x6e,0x7e,0x02,0xa4,0x0b,0x49,0x27, +0x9c,0x58,0x37,0x05,0xab,0x0c,0x59,0x19,0x94,0xa9,0x60,0x82, +0x1d,0x9c,0x67,0xd2,0x6c,0x54,0xf0,0xbc,0x83,0x38,0xb2,0x64, +0xa1,0x82,0xa7,0x1d,0xe0,0xa4,0x38,0xb2,0x34,0xfb,0x26,0x93, +0x3a,0xaa,0x02,0x07,0xbb,0x68,0x8a,0x4f,0x1d,0x50,0x11,0xa7, +0xee,0x1c,0x63,0xd2,0xda,0xc6,0xb2,0xdf,0xcb,0x1b,0x93,0x89, +0x03,0x4a,0x91,0x27,0xe2,0x0f,0x26,0x4b,0x8a,0x30,0x43,0x45, +0x07,0x57,0x4d,0x7d,0xcf,0x40,0xb8,0x23,0xfd,0xf0,0x51,0x47, +0x16,0x47,0x0f,0xce,0x1f,0x80,0x85,0xb0,0x90,0x80,0x13,0x7e, +0xd8,0xa5,0xdc,0xd7,0xf3,0x4f,0xc6,0x4e,0xb9,0xc1,0x01,0x6f, +0xa2,0x13,0x98,0xb1,0x87,0x7d,0x36,0xf9,0xe1,0xeb,0xe1,0x72, +0x13,0x1e,0x24,0x65,0xb0,0xb0,0xe9,0x83,0x66,0x9f,0x2e,0x1e, +0x0a,0x98,0x50,0x9b,0x1f,0x43,0x61,0x89,0xf7,0x0f,0x9e,0x92, +0x9a,0xb1,0xb7,0x6b,0x71,0x51,0xcd,0xda,0x0a,0x09,0x2d,0xd5, +0x5e,0x23,0x98,0xd3,0x07,0x39,0x0c,0x7c,0x60,0x43,0xb0,0xb2, +0x0f,0x2a,0x19,0xfc,0x60,0x1f,0xb1,0xc4,0x9c,0x41,0x16,0xae, +0x8b,0xb5,0x60,0xa5,0x25,0x35,0x73,0x9a,0xf2,0x2a,0x19,0xe8, +0xed,0x1a,0x55,0x4c,0x70,0x3f,0x32,0x5e,0x9b,0xed,0x8f,0xaf, +0xdc,0xd1,0x65,0xc7,0xff,0xfc,0xe5,0xc4,0xc7,0x2d,0xb0,0x94, +0xfb,0x94,0x39,0x9c,0x7a,0x3a,0x56,0x5f,0xdd,0x3c,0x3e,0x3a, +0x58,0x6b,0xf9,0x61,0xa6,0xd8,0x48,0xe5,0x16,0xf3,0x51,0x77, +0xe5,0x07,0x25,0x1a,0x45,0xd7,0xb2,0x1f,0xc0,0x5a,0x35,0x6c, +0x65,0x0a,0xe4,0x79,0x95,0xb9,0x95,0xc6,0x32,0xde,0x67,0xb7, +0xc9,0xf6,0xc3,0x67,0x38,0xe1,0x35,0xb4,0x27,0xf0,0xd2,0x7b, +0x9d,0xe3,0x45,0x37,0xb9,0x1c,0x74,0xba,0x02,0x5b,0x98,0xfc, +0x9c,0x8c,0xbc,0x24,0x75,0x50,0xdb,0xd6,0xdc,0x8d,0xcb,0x3f, +0x8d,0xcd,0x8d,0xcf,0x8c,0x8f,0x95,0xc4,0x46,0xab,0x24,0x5d, +0x81,0x9d,0x63,0xb8,0xf3,0x29,0x33,0x91,0x37,0x56,0x38,0x20, +0x0b,0x19,0xe2,0x57,0x78,0xe0,0x8a,0x28,0x7c,0x23,0x35,0xcf, +0x94,0x1f,0x4b,0xbf,0x96,0x75,0x3d,0x97,0x3b,0x86,0x16,0x26, +0x70,0x96,0xf5,0xd7,0x3b,0xaf,0xbd,0x4e,0x87,0x53,0xee,0x8a, +0x22,0x3a,0x47,0x90,0xd5,0xc3,0x0c,0x4b,0xaa,0x82,0xef,0xc8, +0xae,0x14,0x8f,0x96,0x4c,0x78,0xf4,0x7b,0xf7,0x7b,0xb4,0x75, +0xf1,0x4e,0xf5,0x4e,0x35,0xce,0x55,0xdf,0xb4,0x5f,0xed,0x53, +0x5c,0xa1,0x72,0xa1,0x49,0xfb,0x96,0xcd,0xdf,0x9c,0xdd,0x03, +0x9c,0x02,0xad,0x03,0xdb,0x6c,0xf9,0xe1,0xba,0x11,0x45,0x4f, +0xeb,0x44,0xc4,0xb5,0xc8,0xfb,0x91,0x65,0x97,0x79,0xcc,0x1e, +0xc6,0x65,0xd3,0x3a,0x8f,0x39,0x19,0xde,0x23,0x49,0x70,0x42, +0x07,0x87,0x91,0x63,0x4a,0xcc,0x54,0xbe,0x67,0xfa,0x4a,0xa4, +0xdd,0x34,0x76,0x0b,0xb3,0xb2,0x0a,0x29,0x6d,0xdd,0xc4,0x97, +0xab,0x87,0xa9,0xa0,0x7a,0x29,0x32,0x27,0x21,0x25,0x31,0x46, +0x82,0xdb,0x32,0xc8,0x0e,0x87,0x1d,0xde,0xb8,0xc8,0x5b,0x4e, +0xe5,0xc9,0x62,0xc5,0xa7,0x4d,0x7f,0x14,0x6b,0x35,0xbd,0x99, +0x15,0x04,0xbd,0xe1,0x9c,0x8e,0x40,0x45,0x8d,0xe0,0x35,0x7d, +0x15,0x8a,0x75,0xae,0x28,0xbd,0x68,0x65,0x69,0x08,0xde,0xcc, +0x2c,0xeb,0x41,0xe8,0xfd,0x3a,0x8e,0xa0,0xe3,0x87,0xcc,0x8d, +0xbc,0x6b,0x85,0xa3,0xd2,0xa0,0x01,0x7e,0xb5,0x0f,0x1e,0x88, +0xc4,0xd7,0x92,0xf3,0xcc,0xf9,0xc9,0xcc,0xeb,0x59,0xd7,0x72, +0xe8,0xfd,0x7a,0x53,0x6d,0xc4,0xba,0xe9,0xed,0x36,0xdc,0xea, +0x52,0x65,0xcc,0xff,0x7d,0xe0,0xe3,0xab,0x05,0xf7,0x68,0xc1, +0xf4,0x3a,0xe3,0x77,0x76,0xbb,0x3e,0xbe,0x62,0x56,0x65,0xc4, +0x97,0xe4,0x16,0xe7,0xca,0x72,0x5b,0xbc,0x9b,0x3c,0x6b,0xbd, +0x3a,0x5b,0xf8,0xa0,0x1a,0xaf,0x46,0xaf,0xda,0xa7,0xfd,0x97, +0x47,0xf3,0x6e,0x8b,0x32,0xe9,0xdc,0x88,0xfd,0x37,0x26,0x41, +0xbe,0x5e,0x5e,0xce,0xfe,0xad,0xae,0x7c,0x77,0x43,0x5b,0x5b, +0x55,0x63,0x40,0x39,0x2f,0xef,0x5b,0x3f,0x64,0xd4,0x15,0x3c, +0x2a,0xb9,0xc1,0xe6,0xa4,0xa7,0xe7,0xd0,0x44,0x7a,0x72,0x0d, +0x15,0x69,0x07,0xbf,0x89,0xca,0x4b,0x16,0xb7,0x9d,0x03,0xa9, +0x50,0x4b,0x60,0x0a,0x8a,0x71,0x8a,0x15,0x1a,0xbf,0x23,0xc9, +0xa0,0x69,0x88,0x5f,0x6d,0x16,0xfd,0xfe,0x84,0xe9,0x9e,0xdb, +0xbc,0x9c,0xb0,0xd9,0x62,0xce,0x52,0x87,0xb5,0xf8,0x52,0x4b, +0x37,0xae,0x06,0x95,0xe8,0x82,0x24,0xf1,0x5c,0x7c,0x2d,0x9d, +0x38,0x38,0x98,0x38,0x9f,0x74,0xaf,0x33,0xe7,0x1f,0xb5,0x4f, +0x74,0x76,0x76,0x73,0x4b,0x67,0x5c,0x66,0x9e,0x12,0x83,0x83, +0xe8,0x6d,0xac,0xcc,0x10,0xf7,0x73,0x15,0x4e,0xa3,0x05,0x49, +0xba,0x0a,0x27,0x86,0xf1,0xc4,0x53,0x66,0x3c,0x6f,0xa4,0xb0, +0x47,0x1a,0xd4,0xc7,0xef,0xf4,0x45,0xf5,0xf0,0x15,0xc9,0x79, +0x16,0xfc,0x60,0xe6,0x68,0xd6,0x88,0xe8,0x73,0x4d,0x73,0x38, +0xc8,0xfa,0x18,0x1e,0x37,0x38,0xea,0x5a,0x65,0xca,0xff,0x79, +0xe0,0xfa,0xe5,0xfc,0x5b,0xd4,0x06,0xaf,0x31,0x41,0x5a,0xc7, +0x8d,0xd7,0x58,0xd2,0x28,0x28,0xca,0x29,0xcc,0x2e,0xcc,0x69, +0xf0,0xae,0xf7,0xac,0xf4,0xee,0x50,0xf0,0xa1,0x35,0xbe,0x4d, +0x7e,0xb5,0xef,0xf6,0xf4,0x0f,0xe5,0xdd,0xa4,0x26,0xc8,0xd5, +0xee,0xb1,0xff,0xd0,0x22,0xd4,0xc7,0xcf,0xcb,0xc3,0xbf,0x85, +0x8a,0xf9,0x46,0x45,0x7b,0x45,0x63,0x50,0x09,0x5f,0xd6,0xb3, +0x67,0xd0,0xba,0x23,0x6c,0x44,0x72,0xf3,0x17,0xa1,0xba,0x7a, +0x5d,0x43,0x2f,0xbe,0xf9,0x65,0x74,0x7e,0xd2,0xa5,0xb8,0x68, +0x09,0x0c,0x52,0x3e,0xeb,0xaa,0xea,0x6a,0xe8,0x68,0x52,0xf8, +0x29,0xfc,0x1a,0xfc,0x9a,0x3b,0x79,0xbf,0x2a,0xaf,0x1a,0xcf, +0x1a,0x9a,0x74,0x1a,0x2b,0x1a,0x1c,0x1b,0xf9,0x40,0x4f,0x3f, +0x6f,0x1f,0x1f,0x97,0x3a,0xd7,0x1a,0x8f,0x0a,0x4f,0x67,0x5e, +0x11,0xd2,0x14,0xd0,0xec,0xef,0xee,0xeb,0xec,0xef,0x18,0xc2, +0xc1,0x8f,0xc8,0x10,0xa8,0x34,0x40,0x2f,0xbc,0x01,0x5e,0x86, +0x58,0x09,0xc7,0xd9,0xd4,0xa0,0x94,0xc0,0x94,0x00,0x0e,0x2f, +0x08,0xab,0x2f,0xc3,0x77,0xf0,0x12,0x13,0x6b,0x14,0x65,0x10, +0x61,0x1c,0x96,0x16,0x96,0x16,0x7e,0x31,0xcf,0x88,0xbf,0x9f, +0xfb,0x45,0xd1,0x3d,0x59,0x4e,0x44,0x4e,0x44,0x76,0xe4,0xa0, +0x9c,0x0f,0x9e,0xf2,0xbc,0xef,0x3b,0x6c,0x1b,0xcc,0x4b,0xfd, +0xa5,0x3e,0x45,0xde,0x6e,0x49,0x8e,0x49,0x8e,0x29,0xc5,0x63, +0xd2,0xf1,0xc2,0x31,0x0e,0xce,0x61,0xdb,0x6a,0x46,0x66,0xa4, +0xf2,0x29,0xd3,0x2f,0x2d,0xa5,0xa5,0xcc,0xc7,0x54,0x1e,0x65, +0x57,0x67,0x56,0x65,0x55,0x8a,0x1b,0xf0,0xa4,0x50,0x8f,0x9d, +0x37,0xc1,0x2f,0x0e,0x89,0x1b,0x8f,0x5c,0x13,0xb7,0x51,0xee, +0xfa,0x8d,0xc7,0x96,0xe2,0x12,0x45,0x17,0xbe,0x04,0x2f,0xc4, +0x16,0x25,0xa7,0xc4,0xc6,0x49,0x90,0xc9,0x24,0x6e,0xf6,0xd6, +0xce,0xba,0x1e,0xd4,0x63,0xd7,0xda,0x86,0xba,0x9a,0x7a,0xa8, +0xc7,0x0e,0xcf,0x3c,0x26,0x3e,0x2b,0xcf,0x6f,0x5c,0xf5,0x4e, +0x9b,0x01,0xff,0xd3,0x57,0x77,0xbf,0xa9,0x9c,0x13,0x7a,0x72, +0x64,0x3e,0xd8,0x0c,0xcc,0xea,0xd6,0x29,0x1e,0x17,0x7f,0x7f, +0xe2,0xcf,0x1e,0xb0,0x80,0xa3,0xc5,0xfe,0x5b,0x04,0x36,0x64, +0xc1,0xba,0x7c,0x58,0x2f,0xbd,0x38,0xc6,0x9f,0x4f,0x3e,0x97, +0x7c,0x3e,0x95,0xfb,0x33,0x9c,0x1f,0xc3,0xf3,0x4f,0xe0,0x30, +0x7c,0x29,0xfc,0x01,0xbf,0x84,0x03,0x07,0xc5,0x67,0x50,0xce, +0xbd,0xcd,0x9e,0x4f,0x3d,0x9f,0x7a,0xee,0x22,0x07,0x96,0x62, +0xd3,0x30,0x81,0x5e,0x4a,0x02,0x4b,0xeb,0x84,0x04,0x02,0x09, +0xf0,0x2a,0x26,0xb0,0xa7,0xdb,0x49,0x79,0x7f,0xf9,0x64,0xe1, +0x88,0x43,0x29,0x1f,0x6d,0x12,0x69,0x1a,0x62,0xcd,0xe1,0x3e, +0x58,0x46,0x4a,0x6d,0xa4,0x56,0x52,0x03,0xf1,0xa1,0xe0,0xa9, +0xa8,0x01,0xf1,0x49,0xe1,0xad,0x98,0x47,0x20,0x6f,0x1a,0xf3, +0x18,0x48,0xc6,0x18,0xe2,0xb9,0xc9,0x08,0xd5,0x8c,0x56,0x4f, +0xfa,0xf0,0x53,0xc0,0x4d,0xc3,0xda,0x36,0x58,0xc4,0x0d,0x09, +0x2f,0xe9,0xb1,0xab,0x70,0x2d,0xa9,0x72,0x91,0xdb,0x14,0xdb, +0xf5,0x57,0xf1,0x11,0x3d,0x81,0x3d,0x01,0x6d,0x9c,0xf0,0x3b, +0x8c,0x26,0xad,0x97,0x9b,0x1e,0x95,0xdc,0x31,0x2b,0xe5,0xc3, +0x2f,0xf8,0x6a,0x3a,0x99,0x70,0xd0,0x0e,0x7b,0x48,0x85,0xa5, +0xcc,0x5c,0xaa,0x3f,0x52,0xc2,0x47,0x4d,0x87,0x0f,0x87,0xf4, +0x73,0xb8,0x25,0x98,0xe4,0x1b,0x64,0xeb,0x64,0x9e,0x9f,0xc8, +0xe7,0x53,0xee,0x24,0x5e,0x8d,0x9d,0xa0,0xf6,0x99,0x99,0xa4, +0x89,0x55,0xf9,0x3a,0x9c,0x84,0x8f,0xf4,0xb1,0x8e,0xde,0xc3, +0xd7,0xba,0xf8,0x35,0x32,0x50,0x67,0x88,0x1f,0xc1,0x21,0xe1, +0x75,0x7c,0x1d,0xba,0xf4,0x85,0xdd,0xd3,0x8f,0xe0,0xdd,0x63, +0x57,0x94,0xbb,0xf5,0x98,0xd9,0xeb,0x78,0x80,0x4a,0xe6,0x6c, +0x90,0xe4,0x81,0x9a,0x68,0x25,0xbd,0x64,0xbd,0x14,0xdd,0x14, +0xee,0x73,0xd8,0x33,0x8a,0x7b,0x9e,0xc0,0xdb,0xf0,0x15,0xce, +0xe0,0x57,0xb0,0xf1,0x20,0xee,0x31,0x85,0x3d,0x5b,0x58,0xdd, +0x54,0xdd,0x34,0xdd,0x34,0xea,0x6b,0x65,0x19,0xc1,0xc4,0x55, +0x90,0xc8,0xc2,0x46,0x4c,0x24,0x90,0x08,0x8b,0x30,0x91,0xd5, +0x69,0x27,0xa5,0x03,0xa5,0x93,0x05,0xa3,0x4e,0xc5,0x7c,0xac, +0x49,0x94,0xa9,0xf8,0x38,0xf5,0x46,0x50,0x25,0x25,0x36,0x45, +0x96,0x85,0x86,0x1d,0xa5,0x7c,0xdc,0x54,0x74,0x7f,0x44,0x3f, +0x07,0x66,0xc2,0x03,0x52,0xe9,0x5c,0x66,0x27,0xb3,0xe9,0x91, +0xf3,0x91,0x7d,0x21,0x5d,0x81,0x6d,0x1c,0xbe,0xe1,0x4e,0xca, +0xad,0xa4,0xe6,0x85,0x7a,0x83,0xc5,0x7c,0xf4,0x95,0xc8,0xa1, +0xd0,0x01,0x0e,0x93,0xd0,0x83,0x28,0xa6,0x6a,0x1f,0xc9,0xee, +0x5a,0x15,0xf3,0x91,0x9a,0x81,0x5a,0xee,0xc6,0x1c,0x6c,0x81, +0x9d,0x24,0x4f,0x3f,0x5b,0x37,0xe3,0xec,0x48,0x81,0x38,0x41, +0xff,0x4a,0xec,0xa4,0xb8,0x70,0x88,0xc8,0x70,0xee,0xf3,0x0c, +0xf7,0x87,0x39,0x86,0xcb,0x9f,0x63,0xb8,0x53,0x94,0xe1,0xdc, +0x99,0x7f,0xae,0x11,0xf6,0x10,0xd8,0x9c,0x05,0xeb,0xf3,0x61, +0x53,0xd1,0xc5,0x71,0x8a,0x07,0xcd,0x79,0x3c,0x9c,0x1b,0xc7, +0x73,0x4f,0xe0,0x14,0x7c,0x21,0x6c,0xc4,0x2f,0xe0,0xd8,0x41, +0xd4,0x35,0x06,0xdd,0xb7,0xd9,0x33,0xa9,0xf4,0x45,0xf1,0xe0, +0x28,0xe2,0x41,0xdc,0x5b,0x2f,0x9e,0x85,0x63,0x62,0xb3,0x2e, +0x1e,0x54,0x31,0x9e,0x3d,0xde,0x46,0x2a,0x28,0x1e,0x8a,0x46, +0xec,0x45,0x3c,0x44,0x98,0x05,0x53,0x3c,0x1c,0x81,0x37,0x48, +0x19,0xc5,0x83,0xcc,0xa0,0xab,0x9c,0xe2,0x21,0xb2,0x5f,0xc4, +0xc3,0xfe,0xd9,0x9d,0x22,0x6d,0xe5,0x8b,0xb4,0x65,0xf9,0x15, +0x75,0x79,0x85,0xad,0xcc,0xb6,0xbf,0x92,0x8f,0xe8,0x0d,0xea, +0x0e,0x6c,0xe7,0x70,0xa5,0x0b,0xa9,0xb0,0x92,0x99,0x17,0xe9, +0x8d,0x94,0x52,0xe7,0x46,0x0c,0x07,0x53,0xe7,0x56,0xa1,0x3b, +0x69,0x99,0x6c,0x7c,0x58,0x72,0xd7,0xbc,0x84,0x8f,0xa0,0x30, +0x70,0xa1,0x77,0x7d,0x18,0xb6,0x53,0x97,0xe7,0xe8,0x64,0x9c, +0x1f,0x7f,0xee,0x72,0x71,0x93,0xac,0xa3,0xb0,0x8d,0xf8,0x27, +0x15,0x19,0xde,0x2f,0x7b,0xbf,0xfe,0x4e,0xad,0x24,0x33,0x28, +0x2b,0x38,0x33,0x64,0x98,0x7e,0xfd,0x07,0x21,0x3f,0xf9,0x3f, +0xb5,0x0e,0xe1,0x8b,0xac,0x8a,0x4c,0xf2,0xcd,0x9c,0xa3,0x6c, +0x23,0x6d,0xa2,0x6e,0x83,0xe4,0x1a,0x9c,0xee,0x86,0x37,0x4d, +0xcb,0xf8,0x30,0xcd,0xa0,0xd3,0x01,0xa7,0x23,0x1a,0xe9,0xab, +0xbe,0xfd,0x8f,0x8a,0x9f,0x6b,0xbe,0x17,0x37,0x64,0xdd,0xed, +0xbb,0xcb,0xf3,0x50,0x6c,0x59,0x6c,0x49,0x5c,0xb1,0x93,0x23, +0xdf,0xad,0x33,0xbc,0xbf,0xe3,0xb0,0xf7,0x41,0xf7,0x23,0xae, +0xe7,0x39,0xe5,0x92,0x99,0x7d,0xc4,0x18,0xf5,0x8e,0x18,0xbe, +0xc7,0x5c,0xc4,0x1e,0x2f,0xd4,0xda,0x8a,0xab,0x7b,0x6d,0xf8, +0xef,0x61,0x67,0x13,0xd8,0xa6,0xc3,0x30,0xf7,0x21,0x83,0xa5, +0x71,0xb8,0x3e,0x0e,0x5f,0x50,0x37,0x4a,0x8e,0x89,0xb4,0x5d, +0x6e,0xc2,0xc8,0x74,0x55,0x86,0x98,0x7b,0xb5,0xad,0x1f,0xe6, +0x69,0x48,0xe1,0xd5,0x5c,0x58,0x0f,0x0f,0xd4,0xa8,0x8c,0x9e, +0x4d,0x15,0xdc,0x08,0x2c,0xcb,0x86,0x57,0xf3,0xe0,0x75,0x11, +0x77,0x06,0x49,0x06,0x29,0x06,0x22,0xee,0xde,0x19,0xc5,0x77, +0x3e,0x84,0x15,0xf0,0x0d,0x3e,0xc5,0x6f,0xe0,0xcd,0x03,0xb8, +0xc1,0x14,0x36,0x6c,0x61,0x8d,0x52,0x8d,0xd2,0x8c,0x28,0xee, +0xf6,0x2b,0x2b,0x09,0xa6,0x6e,0x11,0x9f,0xe2,0x7f,0x73,0xee, +0x29,0xfe,0xbf,0x60,0x2a,0x6b,0xdc,0x41,0x4a,0x06,0x8a,0xa7, +0x0a,0xc6,0x9c,0x65,0x7c,0x9c,0x31,0xf5,0x06,0x85,0xdd,0x9b, +0x20,0x21,0x32,0x9b,0x22,0x8b,0x02,0xfd,0xb6,0x12,0x3e,0x7e, +0x3a,0x66,0x30,0x92,0xc2,0xee,0x80,0xf0,0x90,0x54,0x38,0x95, +0xd8,0xcb,0xac,0xa9,0x83,0x22,0xfb,0xc3,0xbb,0x82,0x3a,0x38, +0x64,0x3d,0x49,0x99,0x65,0x91,0x79,0x81,0x4e,0x7f,0x31,0x1f, +0x73,0x35,0x72,0x28,0x6c,0x50,0x5c,0x68,0xd8,0x9b,0xd4,0x4f, +0x57,0x3d,0x2e,0xba,0x27,0x0e,0x28,0x9f,0x0b,0xd1,0xf2,0x32, +0x12,0x97,0xd8,0xde,0x47,0x72,0x75,0xb3,0x75,0xd2,0xcf,0x0e, +0xe6,0xf3,0x69,0x77,0x93,0xae,0xc6,0x8b,0x33,0xeb,0x74,0x67, +0x8e,0x10,0xaa,0x81,0xb6,0xea,0xe0,0x56,0x34,0x33,0x00,0x33, +0xdc,0x87,0xc6,0x86,0x4a,0x93,0xcb,0x68,0x06,0xfb,0xc0,0x89, +0xf9,0xe7,0x0a,0xc1,0x84,0xc0,0xea,0x6c,0xd0,0xc8,0x83,0x55, +0xe2,0x9d,0x5e,0x48,0xa6,0xaf,0x54,0x7a,0xa7,0x47,0xc7,0xf0, +0xe8,0x13,0xd8,0x0d,0x5f,0x0b,0x2f,0xe2,0xd7,0xb0,0xfd,0x20, +0x1e,0x35,0x81,0xa3,0x5b,0xd8,0x0b,0xa9,0x5a,0xa9,0x17,0x28, +0xee,0x0c,0x94,0x15,0x84,0xc2,0x7f,0x31,0x24,0x89,0x0b,0x16, +0x24,0x11,0x48,0x82,0x25,0x98,0xc4,0x9e,0xa7,0x3c,0x44,0x43, +0xac,0x70,0xd4,0xb1,0x84,0x8f,0x31,0x8e,0x34,0x0d,0xa5,0xf7, +0xba,0x0d,0x7e,0x4f,0x4a,0xac,0xa5,0x96,0x45,0x06,0x9d,0x65, +0x7c,0xec,0x54,0xd4,0x60,0x38,0xc5,0xdd,0x5b,0xb3,0xed,0xe4, +0x06,0xb4,0x6a,0x5d,0x51,0xbe,0x22,0xac,0x11,0x5e,0x61,0xe1, +0x2b,0x78,0x8f,0xa0,0x1d,0xb6,0x82,0x1d,0x8b,0x96,0xab,0xc4, +0xf0,0xb3,0x2d,0xb6,0xe9,0x95,0xf3,0x11,0x7d,0x21,0x73,0x40, +0x54,0x75,0x23,0xe5,0x96,0x34,0xfc,0x74,0x87,0x4a,0x68,0xf8, +0x45,0x0c,0x8b,0xe1,0x97,0x8e,0x9e,0xa4,0x69,0xaa,0xfe,0x91, +0xec,0x5d,0x4b,0x31,0xfc,0x02,0x34,0xdd,0x28,0x10,0xb7,0xc1, +0x2e,0x31,0xfc,0x74,0x32,0xce,0x8e,0x8a,0xe1,0x97,0x78,0x35, +0x8e,0x86,0xdf,0x4c,0xea,0x8c,0x3b,0x01,0x56,0x1b,0x59,0x3c, +0x6f,0xa0,0xd4,0x99,0x64,0x67,0xd7,0x08,0xea,0x04,0x4e,0x8d, +0xe1,0xa9,0x0f,0xe1,0x38,0x7c,0x25,0xac,0xa6,0x34,0x72,0xf8, +0x00,0x5e,0x30,0x81,0x0b,0x5b,0x98,0xb3,0xa9,0xe7,0xd2,0xce, +0xa6,0x65,0x51,0x81,0xb2,0x21,0x1b,0xde,0xca,0x9b,0x67,0x68, +0xad,0x64,0xcd,0x14,0xad,0x14,0xce,0x44,0x99,0x2f,0x12,0xf0, +0x2b,0x22,0x01,0x1f,0x9a,0x27,0xe0,0x37,0x28,0x01,0x9f,0xa4, +0x01,0x37,0x40,0x09,0x78,0xd4,0x9e,0xde,0xb8,0x49,0xc4,0x1c, +0x01,0x1f,0xa2,0x04,0x5c,0x66,0x23,0xb3,0x94,0x1a,0xce,0x11, +0x70,0xa4,0x48,0xc0,0x33,0xe2,0x6a,0xd2,0xc2,0x12,0xac,0x80, +0xcd,0xf8,0xc9,0x3a,0xa6,0x44,0x4f,0xe5,0x03,0x66,0xb0,0xa2, +0x7c,0x50,0x03,0xde,0x83,0x9d,0xac,0x2e,0xb8,0x12,0xdc,0x8e, +0x05,0xb0,0x9d,0x8d,0xc1,0x6a,0x12,0xba,0xcf,0xfb,0xa0,0xf5, +0xa9,0x3e,0x07,0x7e,0xf8,0x71,0xd3,0x67,0xf2,0x3f,0x72,0xb0, +0x2f,0x89,0x74,0x1d,0x6f,0xdd,0xd7,0xb8,0x7d,0xb4,0x89,0xf7, +0xfe,0xc8,0xf9,0x4f,0xf6,0xf7,0x38,0xc1,0x0b,0x7f,0xf7,0x8b, +0xb5,0xc4,0xb0,0x9d,0xb7,0x16,0x2f,0x5a,0x4b,0x46,0xc9,0x4a, +0xb4,0xd6,0xf4,0xbc,0xb5,0xb2,0x7f,0xb5,0x16,0x25,0xab,0x08, +0xad,0x00,0x4d,0x57,0x8a,0x9a,0x9d,0xbf,0x58,0xeb,0xdc,0xe8, +0xdc,0xd3,0x44,0x57,0xe7,0xc8,0x6a,0xc1,0x8c,0x01,0x59,0x3b, +0x0d,0x1b,0xd0,0x96,0xad,0x2f,0xaf,0xa9,0x2c,0x2b,0xb3,0x55, +0xf0,0x01,0x81,0x9e,0xde,0x0e,0x81,0x25,0x91,0x3c,0x6e,0xfb, +0xb3,0xce,0x36,0xdc,0xc6,0xc8,0x65,0xde,0xf5,0xee,0xb5,0x1e, +0x95,0x12,0x3b,0xaf,0xfa,0xd0,0xda,0x90,0xaa,0x60,0x09,0x5a, +0xe2,0x86,0xe9,0x1f,0x98,0x99,0xcd,0xd6,0x44,0x78,0x8c,0x6b, +0x95,0x8f,0x19,0x83,0xef,0x89,0x91,0xe0,0x3c,0xc1,0x42,0x8e, +0x70,0x81,0x28,0x97,0x0e,0x0a,0x4b,0x47,0xe1,0x53,0xb0,0x98, +0x35,0x43,0x0b,0xb8,0x6f,0x8a,0xff,0xb4,0x84,0x7f,0xea,0x0b, +0xef,0x98,0xff,0x63,0xd9,0xb0,0x70,0x94,0xc1,0x7b,0x70,0x83, +0x80,0x0c,0x5f,0x40,0x19,0x03,0xf7,0x54,0xe1,0x05,0x50,0xe0, +0x0b,0xac,0x50,0xf6,0x94,0xd4,0x05,0x34,0x78,0x57,0xf8,0xb5, +0x37,0xf0,0xfe,0x8d,0xfe,0xd5,0x7e,0xd5,0x1c,0x3c,0x5b,0x41, +0x6a,0x2b,0xab,0x6b,0xab,0x9b,0xed,0xab,0xf9,0x60,0xaf,0xe0, +0x20,0x6f,0x7f,0x6a,0x1c,0xbc,0x4e,0x3a,0xdd,0x3a,0x1d,0x14, +0x36,0x13,0x0d,0xbc,0x7b,0x9f,0x5d,0xb7,0x53,0x03,0x37,0x6b, +0x8c,0xeb,0xc8,0x54,0x57,0x77,0x6f,0x4d,0xb7,0x69,0x25,0xef, +0xeb,0xe2,0xe0,0xa4,0xef,0xcc,0x29,0x2f,0x3e,0x23,0x55,0xce, +0x15,0x8e,0xc5,0xf6,0x57,0xa5,0x14,0x5f,0xc1,0x9d,0x01,0xad, +0x1c,0x56,0x46,0x11,0xa9,0x43,0x9e,0x6b,0xb6,0xd5,0xb5,0x5c, +0x3e,0x79,0x20,0xae,0x33,0xb2,0x8d,0xa2,0x26,0x76,0x26,0x86, +0x7c,0xa1,0xb3,0x15,0xb5,0x8d,0x94,0x17,0x26,0xd8,0x7f,0x12, +0xe1,0x0b,0x02,0x6f,0x65,0xc3,0xca,0x3c,0x58,0x2d,0xa5,0x24, +0xad,0x99,0xa4,0x99,0xa2,0x29,0xd2,0xc2,0xe9,0x31,0x3c,0xfd, +0x04,0x76,0xd1,0x60,0x59,0x32,0x1f,0x2c,0x47,0x4c,0xe0,0x88, +0x18,0x2c,0x17,0xd2,0x2e,0x50,0x5a,0xd0,0x9f,0x0f,0x96,0x17, +0xc4,0x60,0xd9,0x36,0x1f,0x2c,0x34,0x77,0xb0,0x9a,0xbf,0x04, +0x8b,0x43,0x09,0x1f,0xfb,0x9b,0x60,0x29,0xb5,0x2e,0xb2,0x94, +0x1a,0x74,0x88,0xc1,0x12,0x3d,0x10,0xde,0xcf,0xcd,0x48,0xd0, +0x94,0xc8,0x47,0x4b,0x2f,0x17,0x4e,0x18,0x51,0x12,0xd0,0x0e, +0xd7,0x0b,0x34,0xe0,0xb0,0xce,0x48,0xe9,0x32,0xc1,0x60,0x9f, +0x82,0xc4,0x0f,0x47,0x4e,0x44,0x74,0x9b,0x84,0xf1,0xa5,0xd6, +0x32,0xb3,0x7c,0x0b,0x2e,0x50,0xf8,0x94,0xc6,0x56,0xa9,0xd6, +0x94,0xf2,0x82,0xf0,0x8a,0x70,0x81,0x85,0x87,0xd0,0x4a,0xb0, +0xf4,0x67,0x28,0xa5,0x0c,0x28,0xee,0x7f,0x5e,0x8a,0x2a,0x48, +0x8f,0xed,0x3f,0x78,0x0e,0x9c,0x3e,0x31,0xcc,0x82,0xff,0x05, +0x1c,0xa9,0x79,0x91,0xee,0x20,0xc5,0x31,0x0d,0xb3,0x10,0x0a, +0x9c,0x1c,0x0a,0x9c,0xe6,0x5f,0xc3,0x4c,0xcb,0x5f,0xd3,0xed, +0xb7,0xc0,0x39,0x3b,0x56,0x30,0xc7,0xf7,0x62,0x98,0x81,0xd5, +0xcc,0x47,0xc4,0x6e,0xad,0xe1,0xbe,0x93,0x67,0xda,0xad,0xf8, +0xf7,0xdf,0xbb,0xfa,0x4d,0xdf,0x8f,0xdc,0x8c,0x03,0x2d,0x9d, +0xd1,0x85,0x29,0x1c,0xc8,0x1f,0xcf,0x19,0x35,0xce,0xe7,0x23, +0xf0,0x75,0x3f,0x54,0xb1,0xdd,0xc1,0x09,0x0b,0x30,0x04,0x76, +0x58,0xe1,0x71,0x4b,0x38,0x6e,0xc4,0x9c,0xa3,0x02,0xe7,0xfc, +0xc5,0x6c,0x33,0x1e,0x56,0x66,0xc0,0xda,0x5c,0x58,0x59,0xc4, +0x0d,0xb2,0x17,0x68,0xd4,0x69,0xa6,0x71,0x63,0x70,0x7a,0x10, +0x4f,0x0f,0x50,0x3e,0x3a,0xcb,0xca,0x03,0x64,0x95,0x45,0xb5, +0x85,0x75,0xb4,0x18,0x5c,0x54,0x8d,0x2f,0x74,0xad,0xf4,0x39, +0xef,0xa2,0x6d,0xa5,0x1f,0x5d,0x17,0x5e,0x17,0x51,0xe5,0x14, +0xc9,0x97,0xfa,0x95,0x79,0x49,0x7d,0xea,0x0a,0xf9,0xa4,0xa4, +0xe4,0xc4,0xa4,0xa4,0x46,0x53,0xfe,0xf2,0xf5,0xbe,0x3b,0x2d, +0xf7,0x9a,0x4e,0x75,0x9e,0x1d,0xbe,0xd0,0x3c,0xca,0x9b,0xdc, +0xb2,0x7b,0xe0,0xf9,0x78,0x1c,0xd4,0x2a,0x61,0x5d,0x1e,0x6c, +0xe5,0x86,0x18,0xe1,0x15,0xd0,0x25,0xeb,0x56,0xc1,0x1b,0xb4, +0x54,0x5f,0xff,0xbd,0x19,0xae,0x83,0xbf,0xc3,0x3a,0x16,0x0e, +0x0a,0x83,0xc4,0x19,0x98,0x50,0x78,0x25,0x09,0xde,0xe0,0xe0, +0x15,0x26,0x19,0x97,0x85,0xe3,0x52,0x67,0x5c,0xcc,0x09,0x2d, +0xf0,0x37,0x62,0xa9,0x7c,0x71,0x90,0x15,0x4e,0x26,0x13,0xc7, +0x8d,0xc7,0xf0,0x77,0x47,0x8e,0xb7,0x98,0xf3,0xf5,0x8d,0x55, +0xf5,0x15,0x0d,0x9c,0x70,0x64,0x5c,0x99,0xc1,0x2a,0x86,0x1b, +0x2e,0x57,0x8e,0x73,0x70,0x02,0x5f,0x21,0xa8,0x81,0x2a,0xa0, +0xc1,0xc2,0x0e,0xd4,0x20,0xa0,0x41,0xc9,0x52,0x43,0x9c,0x68, +0xc4,0x90,0x32,0x37,0x5a,0x48,0xbb,0x75,0x14,0xf3,0x71,0xad, +0x91,0x4d,0x61,0x2d,0x1c,0xec,0xc5,0x97,0x48,0x65,0xb3,0xb4, +0x45,0xda,0x21,0x4e,0xc6,0x70,0x8e,0x74,0x0b,0x76,0xe7,0x22, +0x71,0x88,0x94,0xb8,0xcb,0x9c,0xf3,0x9d,0xc4,0xbd,0xc2,0x3a, +0x22,0xda,0xc3,0x9b,0x38,0x71,0x5f,0x12,0x52,0xdf,0x51,0x3d, +0x22,0xed,0xb5,0x2b,0xe6,0xa3,0x1c,0x82,0x1d,0x3c,0x5d,0x38, +0xd8,0xfd,0x03,0xc9,0xb7,0xcf,0xb5,0xc8,0x70,0x1a,0xc9,0xe5, +0x53,0x7a,0x13,0x7a,0xe3,0x68,0x29,0x01,0xfb,0x67,0x8a,0xc9, +0x4c,0x69,0xff,0xec,0x07,0xb8,0x8a,0xc1,0x0d,0x21,0x1b,0xcc, +0x0f,0xaa,0x8f,0x5a,0xa9,0x5c,0xfd,0xae,0x1c,0x96,0xc0,0x66, +0xb5,0x99,0xdc,0x6c,0x12,0x5a,0xeb,0x53,0x17,0x58,0xe1,0xe4, +0xcb,0xd7,0x06,0xd5,0xf8,0x97,0xfb,0x72,0xd8,0x88,0x77,0xc8, +0x17,0xef,0xf7,0x5f,0xce,0xf9,0x5c,0xac,0x08,0xde,0x1e,0xd1, +0xff,0xe1,0x40,0x73,0x2f,0xff,0xce,0x3d,0xad,0x2b,0x31,0x9f, +0x73,0xb0,0x71,0x08,0x37,0xc3,0x22,0x23,0x5c,0x84,0x1a,0x16, +0xf0,0x26,0x13,0xbb,0xdd,0x48,0x7f,0xd7,0x59,0xf1,0xa1,0x61, +0x6f,0x02,0xb7,0x29,0xb3,0xdd,0x66,0x46,0x74,0x48,0x3d,0xb8, +0xf9,0xb0,0xe8,0xa6,0x43,0x1a,0xc1,0xcd,0x8b,0x3d,0x85,0xed, +0xe4,0x19,0xd3,0x5b,0x24,0xed,0xd0,0x80,0x93,0x08,0x18,0x39, +0xf6,0x00,0xb2,0x3c,0xd7,0xb1,0xdf,0x53,0x85,0xe0,0x89,0x59, +0x0a,0x56,0x6b,0x31,0xfd,0x7f,0xcc,0x62,0x66,0x5e,0xc6,0x2f, +0x48,0xa7,0xb0,0xb4,0x85,0x32,0xe2,0x5b,0xb3,0xc7,0xf0,0x2d, +0x98,0x72,0x43,0xc1,0x11,0x04,0x67,0xe1,0x6d,0xfb,0x7f,0x2c, +0xeb,0x16,0x8e,0xb6,0xb3,0x94,0x3d,0x34,0x89,0x9b,0x5f,0x79, +0x74,0x75,0xa8,0x38,0xd7,0x43,0xed,0x31,0x03,0x27,0x4d,0x48, +0x70,0x79,0x68,0x69,0x60,0x09,0x07,0xcb,0x8f,0xae,0x65,0x60, +0xc7,0x63,0x9a,0xd7,0x98,0xf0,0x88,0x90,0xd0,0xa0,0xc8,0x06, +0x7f,0x1e,0x55,0x18,0x20,0xaa,0xe5,0xb2,0x4a,0x79,0x71,0x99, +0x5b,0x25,0x0f,0xdc,0x51,0x66,0x76,0x1f,0x5e,0x26,0x93,0x8d, +0x9d,0x4d,0x35,0x8d,0xe6,0x95,0xbc,0x9f,0xbf,0x83,0xaf,0x91, +0x2f,0x37,0xe3,0x3c,0x41,0xda,0x03,0x3a,0xbc,0x1a,0x3d,0xc6, +0x1b,0x79,0x0f,0x85,0x5d,0xa3,0x4b,0x05,0x87,0xc5,0xfe,0xa4, +0xd2,0xb7,0xdc,0xa7,0xd8,0xeb,0x0a,0xe5,0x8b,0xa6,0x90,0xfa, +0x80,0x1a,0x0e,0x6b,0xa3,0x89,0xd4,0x3b,0xcf,0x2f,0xc7,0xed, +0x6a,0x1e,0x9f,0xd4,0x12,0x57,0x1f,0x59,0x4b,0xe5,0x8e,0xcb, +0x8c,0x26,0xb1,0x51,0x7a,0xf5,0xa1,0xd7,0x20,0x24,0x0c,0x60, +0xc2,0xa8,0x91,0x29,0x06,0x59,0x41,0x90,0xa5,0xb8,0xf8,0x7c, +0x09,0x81,0x37,0xb2,0xe1,0xb5,0x3c,0x78,0x43,0x4c,0x27,0x86, +0x54,0x52,0x18,0x8a,0xdc,0xf1,0xf6,0x18,0xbe,0xfd,0x04,0x56, +0x51,0x49,0xf1,0x47,0x2a,0x29,0x34,0x0e,0xe2,0x26,0x13,0xd8, +0xb4,0x85,0x35,0xa4,0x92,0xc2,0x90,0x72,0xc7,0x41,0x51,0x52, +0xa4,0x6c,0x82,0x14,0x16,0x56,0xd0,0x2a,0x05,0x52,0xbe,0xc7, +0x14,0xd6,0xa8,0x9d,0x4a,0x8a,0x92,0xa9,0xfc,0x5f,0x24,0x45, +0x38,0x65,0x0e,0x8d,0x5f,0x24,0x85,0x41,0x7b,0x09,0x1f,0x37, +0x1d,0x33,0x20,0x4a,0x8a,0x9e,0x55,0x04,0xad,0x94,0xd1,0x60, +0xc5,0x0a,0x5a,0x62,0xe4,0xb3,0xc0,0xb1,0x89,0xae,0xfe,0xe1, +0x27,0x62,0xcb,0x9d,0xf8,0x4f,0x8a,0x3b,0x15,0x79,0x97,0xb9, +0x51,0x7b,0xc6,0xb9,0x24,0xb6,0x5b,0xfd,0x3a,0xd3,0x52,0x58, +0x58,0xab,0x51,0xc9,0xda,0x17,0xa8,0x78,0x6a,0xb3,0x71,0xc9, +0x19,0xf9,0x1a,0x5d,0x40,0x90,0x65,0xeb,0xf7,0x12,0x41,0x1b, +0xef,0x28,0xb5,0x19,0x23,0xa8,0x22,0xd6,0xf8,0x59,0x3f,0x0b, +0x9f,0xed,0x24,0x96,0xf8,0xd9,0x20,0x8b,0xa7,0xd7,0x93,0x4a, +0xa7,0x52,0x3b,0x99,0x75,0xb7,0xa8,0x95,0x43,0xbb,0x83,0xda, +0x39,0xa5,0x6f,0x02,0x31,0xc7,0xcf,0x86,0x59,0x2c,0x0e,0xa0, +0xea,0x45,0x6a,0x56,0xa0,0x3b,0x20,0xd2,0x49,0xe4,0x5c,0x1e, +0x0a,0x43,0x2f,0xd2,0x38,0x5d,0xf3,0x48,0xfa,0xae,0x0d,0xa5, +0x93,0xf3,0xc1,0x9a,0x1e,0x94,0x4e,0xde,0x82,0xbd,0x24,0x4f, +0x4f,0xa4,0x13,0xf1,0x49,0x03,0xaa,0x5e,0x28,0x9d,0x28,0x65, +0xf8,0x2a,0xb9,0x19,0xf8,0xd8,0x75,0xd4,0xbb,0xbe,0x8f,0xb7, +0x68,0x38,0xd0,0x76,0x81,0x3a,0xe3,0x31,0xaa,0x92,0x8f,0xaa, +0xde,0x6d,0xe9,0x6b,0x73,0x6b,0xe3,0x5d,0xbd,0x0e,0xbb,0x1d, +0x0b,0xa3,0x19,0xcb,0x4c,0x69,0x4c,0xd6,0x5f,0xdd,0xdb,0xb3, +0xae,0xdb,0xd3,0x92,0xbf,0xef,0x75,0xd3,0xf3,0xa6,0x2b,0x47, +0xab,0x8a,0x3d,0xca,0xc3,0x93,0xf8,0x31,0xec,0xd7,0xc1,0xfd, +0xf8,0xfb,0xf9,0x5f,0x77,0x0c,0x94,0x5b,0x70,0x0f,0x76,0x32, +0xd7,0x15,0xd3,0x6d,0x83,0x9d,0x76,0x5d,0xfc,0x71,0xdd,0xc3, +0xb6,0xf8,0xa2,0x5d,0xad,0x09,0x2f,0xcf,0x93,0xe7,0x55,0xe4, +0x73,0x42,0xea,0x75,0xa5,0x1b,0x34,0x09,0xe6,0x57,0x95,0xe6, +0x30,0x44,0xb5,0xc1,0x59,0xb6,0xc4,0x50,0x05,0x76,0x32,0x43, +0x65,0x25,0xfd,0x1a,0xca,0x53,0x6c,0x79,0x6c,0x45,0x4c,0x79, +0x0c,0x37,0xbb,0x12,0xae,0x12,0xbf,0x7e,0xd7,0x1e,0xef,0x26, +0x63,0x1f,0xbe,0xc5,0x59,0xe1,0x58,0x63,0xc7,0x29,0xef,0xc0, +0x5b,0xc4,0xdf,0xc1,0xcb,0xc9,0xc9,0x7d,0xc8,0x8d,0xef,0x50, +0x74,0x8e,0x56,0x51,0x19,0xe7,0x35,0x1b,0x41,0xa6,0xa1,0x59, +0x8f,0xc1,0xcf,0x2f,0x90,0xdd,0xf1,0xc7,0xb5,0x8e,0xa8,0x8f, +0x7b,0xa8,0x3c,0xf8,0x3c,0xfb,0xbb,0xf7,0xd5,0xae,0xe8,0xb1, +0x4b,0x67,0xc6,0x60,0x1d,0x19,0x83,0x45,0x35,0xf0,0xaa,0x0c, +0x54,0x0d,0x8a,0xf8,0x58,0x7c,0x31,0x64,0x95,0xc3,0xdb,0x9c, +0xf1,0x4f,0x61,0xb0,0x08,0x16,0xab,0x5d,0x86,0x9c,0x69,0xcc, +0x01,0x3d,0x5d,0xd4,0x5b,0xa9,0xf7,0xb3,0x31,0x8b,0xa6,0x2e, +0x78,0x0a,0x5f,0xc4,0x1d,0xea,0xca,0xe3,0x6c,0x7d,0x95,0xcb, +0xa0,0xe9,0xb8,0x63,0xab,0xc4,0xc5,0xab,0xd9,0xa3,0xd3,0xa1, +0xd9,0x5e,0x82,0x3b,0x28,0x57,0x5a,0x8e,0xe0,0x2a,0x38,0x63, +0x8e,0x67,0xce,0xce,0xfd,0xc4,0xf5,0x66,0x60,0x8d,0xbb,0x71, +0x33,0xd3,0xdd,0xd6,0xd4,0x5e,0xdb,0xe5,0xd0,0xc0,0x7b,0x5a, +0xd8,0xd9,0x9a,0xbb,0x34,0x3a,0xf3,0x42,0xc6,0xb8,0xd2,0x0f, +0xd4,0x04,0xf3,0x11,0x7a,0xcb,0x7f,0x10,0xde,0x3e,0xc4,0x16, +0x19,0xab,0xdc,0x62,0x5a,0x8b,0x8b,0xea,0x33,0x35,0x9a,0x5d, +0x69,0x2e,0x5e,0xdb,0x02,0x7b,0x32,0x61,0x99,0x24,0x97,0xc9, +0x3c,0x53,0x71,0xb0,0x7f,0x9f,0x87,0xae,0xad,0xb1,0xa1,0x79, +0xb3,0x31,0x3f,0x31,0xd0,0x37,0xde,0x32,0xdd,0x6e,0x38,0x64, +0x78,0xdd,0xb0,0xed,0x32,0x7f,0x7e,0xc2,0xec,0xb2,0xd3,0x14, +0x07,0x9c,0xf2,0x16,0x71,0xef,0x36,0x19,0x77,0xab,0xb3,0x77, +0xe6,0x5b,0x7c,0x26,0xf5,0xea,0x9d,0xb9,0x59,0xc7,0x06,0x12, +0xd6,0xe1,0xdf,0xef,0xd7,0x6a,0xef,0xc7,0xd7,0x39,0xc9,0x9d, +0xe5,0x76,0x1c,0xad,0xeb,0x57,0x93,0x60,0x7b,0x3f,0x7b,0x0f, +0xf7,0x4e,0x2f,0xbe,0xa9,0xad,0xa1,0xaf,0xa2,0x87,0xc3,0x3f, +0xce,0x56,0x90,0xda,0x67,0xd9,0x1f,0xc1,0x1a,0x35,0x1b,0x06, +0x5f,0x4a,0xd9,0xe2,0x73,0x40,0x1d,0x3c,0x61,0x80,0xa0,0xa2, +0x1f,0x14,0xe2,0x13,0x3a,0x33,0xae,0xe4,0x24,0xd3,0xda,0xe6, +0x55,0xe7,0x56,0xed,0x5c,0x29,0x71,0x73,0x6e,0x0f,0x6c,0xf1, +0xaf,0x0b,0x90,0x20,0x81,0x45,0x06,0x94,0x98,0xf4,0x0d,0x41, +0x7f,0x0b,0x1e,0x98,0x55,0x9b,0x80,0x8b,0xc0,0x62,0xcc,0x04, +0xc4,0xd0,0x32,0x5e,0x6b,0x37,0x23,0x33,0x56,0xb9,0xc9,0xf4, +0x96,0x97,0xf6,0x69,0x28,0x1f,0xe2,0xa9,0xaf,0xc0,0x9a,0x9d, +0x5d,0x80,0x8b,0x48,0xa3,0x47,0x8b,0x43,0xa3,0x83,0xf8,0x44, +0xde,0x4e,0xd0,0x1a,0xa6,0x9f,0x72,0xd2,0x12,0x4f,0x6a,0xcd, +0xfd,0x44,0x35,0x73,0xd0,0xc2,0x9d,0xf8,0x26,0xd3,0xde,0x56, +0xdf,0x5e,0xd9,0xe1,0x54,0xcf,0xfb,0x58,0x38,0xdb,0xd9,0xb8, +0xd6,0x3b,0xf1,0x42,0xca,0xb8,0xd2,0x1b,0x5e,0x12,0x4c,0x86, +0x95,0x26,0xf0,0x8a,0xb0,0xf9,0x38,0x2b,0x35,0x51,0xb9,0xca, +0x74,0xca,0x4a,0xba,0x34,0x94,0xe7,0xd9,0xda,0x0a,0xcf,0x01, +0xcb,0x71,0xd7,0x36,0x09,0x7a,0x82,0x0a,0x89,0x68,0x0f,0xea, +0x0f,0x6a,0xb5,0xf7,0xe7,0xab,0x9d,0xcb,0x1d,0xcb,0xec,0xc5, +0x8d,0x0c,0x56,0x91,0x50,0xbb,0x00,0x47,0x1f,0xb7,0x0e,0x5f, +0xbe,0xa1,0xad,0xb6,0xb7,0xac,0x9b,0x83,0x00,0x41,0x83,0x06, +0x1d,0xbc,0x02,0x2c,0x33,0x41,0x13,0x07,0x3d,0x58,0x2a,0xce, +0xee,0xea,0x33,0xa5,0xe1,0x8b,0xbf,0x43,0x96,0x81,0x43,0xf0, +0x3b,0x42,0xdf,0xfc,0x1d,0x2e,0x65,0x84,0x0f,0xd0,0x96,0x54, +0x7e,0x92,0xfd,0x1e,0xac,0x53,0xb3,0x65,0xf0,0xb5,0xd4,0xdd, +0x01,0x07,0xd5,0xc1,0x44,0x5c,0xaf,0xaf,0xb6,0x17,0x6a,0xa9, +0xa1,0xb8,0x02,0x82,0x33,0xcc,0x31,0x7f,0xf9,0x23,0x8d,0x19, +0x0d,0x78,0x7d,0xf6,0xfc,0xd5,0x4f,0xe0,0x2a,0x20,0x5e,0xfd, +0x02,0x5a,0xc0,0x69,0xb6,0x89,0x56,0x07,0xa5,0x5b,0xb1,0x47, +0x38,0x74,0xf5,0x16,0x84,0x99,0xb1,0xab,0xc7,0x9c,0x7e,0x52, +0x87,0xbf,0x32,0x03,0xd5,0x95,0x03,0x1a,0xcf,0x58,0x5d,0x99, +0xca,0xac,0xe3,0xcc,0xab,0x04,0x6c,0x71,0x21,0xda,0x32,0x4a, +0x63,0x55,0x58,0x08,0x7e,0xb8,0x90,0x15,0x5c,0xd0,0x88,0xbc, +0x85,0x61,0x7f,0x65,0x67,0x9c,0xdf,0x22,0x78,0xe9,0xaf,0x70, +0x89,0x99,0x75,0x16,0x77,0x0e,0x0c,0x5b,0x85,0x61,0x8c,0xd2, +0x27,0x9d,0xfc,0x04,0x97,0x56,0xb3,0x4b,0x95,0x7b,0x95,0x32, +0x12,0x9d,0x1a,0x95,0x1a,0xa7,0x1e,0x91,0x1c,0x7f,0x29,0x78, +0xf9,0x0e,0xa6,0xd0,0x49,0xe5,0x6b,0xa6,0xb7,0xb4,0xa8,0x2e, +0x57,0x23,0xa7,0x32,0xab,0x29,0xbd,0x8b,0x6a,0x0c,0x26,0xb3, +0x28,0x5d,0x2a,0x55,0x83,0xce,0x1e,0xb4,0xe9,0x01,0xeb,0x1e, +0xb4,0xee,0x84,0xd3,0x5d,0x78,0xba,0xdb,0xd0,0x1e,0x8f,0x3a, +0xc0,0x51,0x47,0x74,0xb6,0x03,0x67,0x3b,0xb4,0xb5,0x83,0xa5, +0xcc,0x69,0x2b,0xb3,0x5d,0x36,0xea,0x75,0xd6,0x37,0x9b,0x47, +0x7b,0x6a,0xc7,0x25,0xf0,0xc9,0x0f,0xa4,0xa6,0xac,0x52,0x5e, +0x51,0x25,0xb7,0x56,0xd8,0x77,0xbb,0x58,0x7a,0x6b,0x07,0x1c, +0x0c,0xaa,0x32,0xe7,0x9f,0xd5,0xbc,0x5b,0x3f,0xd1,0x3e,0xe1, +0x7c,0xdb,0xf3,0x43,0xbf,0xaa,0x61,0xfe,0x44,0xb5,0x6e,0xad, +0x45,0xc3,0x50,0x4f,0xd3,0x58,0xf9,0x6d,0xee,0xee,0x30,0xb6, +0x31,0x52,0x79,0x01,0x8d,0x78,0x5a,0x5a,0x7a,0x9d,0x34,0xbb, +0x70,0xd6,0x82,0x83,0xf8,0xe3,0xc4,0xa6,0xcd,0xb3,0x27,0x64, +0x94,0x83,0xb3,0x4c,0xb8,0x89,0xaf,0x9d,0x3d,0xe5,0x11,0x75, +0xfc,0x2b,0xe9,0x85,0x72,0x6a,0xbc,0x18,0x7c,0x1d,0x8a,0x6c, +0xb1,0x03,0xa5,0x57,0xfa,0x20,0x38,0x81,0x3d,0x27,0x0f,0xfe, +0xb3,0xba,0x72,0x2d,0xd3,0x5b,0x5c,0xdc,0xac,0x71,0x83,0xd5, +0x2f,0x55,0x01,0x4d,0x76,0xd6,0x9a,0x8a,0x38,0xb0,0x34,0x43, +0x4b,0x06,0x1e,0xe0,0x8f,0xc4,0x32,0x3a,0xaf,0x4b,0x03,0xfe, +0xf6,0x93,0xc0,0x5d,0xa9,0x81,0x5e,0x1a,0xba,0xbd,0xf0,0x23, +0x19,0x01,0x07,0x33,0x56,0x38,0x86,0x2f,0x13,0x0b,0x0c,0x1e, +0x62,0x67,0x0e,0x59,0x10,0x8c,0x1a,0x82,0x28,0x66,0xf6,0xd0, +0x6e,0x02,0xc1,0xc6,0xe2,0xfa,0xa5,0x87,0xc6,0x69,0x45,0x1b, +0x35,0x4e,0x6d,0x38,0xa0,0x54,0x92,0xaa,0x8a,0x0a,0x79,0x99, +0xbc,0xca,0xa6,0xd1,0xa9,0xd3,0xcd,0xc6,0xd3,0xc0,0xff,0x54, +0x50,0x95,0x25,0xff,0x7e,0xed,0xf5,0x86,0x91,0x0e,0x7a,0x87, +0x1e,0x1f,0xf8,0x54,0x0d,0xf0,0x27,0x6a,0x75,0xea,0xcd,0x9b, +0xba,0x7b,0x1a,0x47,0x2b,0x6e,0x89,0x9b,0x4d,0x57,0x33,0x85, +0xf2,0x7c,0xca,0x6a,0x96,0x85,0xbc,0xf7,0x51,0x9b,0x0b,0xe7, +0x0d,0x38,0xe1,0xb5,0x6a,0x02,0xea,0xe8,0x3d,0x0c,0xde,0xa0, +0x86,0x27,0x77,0x31,0x45,0x0e,0x34,0xce,0x07,0x65,0xe2,0xea, +0xca,0x26,0x6c,0x4e,0x72,0x63,0xbb,0x79,0x87,0x6d,0xad,0x61, +0x8d,0xc4,0xcb,0x6d,0x38,0xa0,0xcb,0xbf,0xcb,0x5b,0x82,0x47, +0x60,0x89,0x01,0x2e,0xc1,0x03,0xcc,0x60,0x55,0x77,0x43,0x83, +0xc2,0xb5,0x91,0x77,0x77,0x33,0x76,0xd3,0x0f,0xa8,0x71,0xe2, +0xb3,0x33,0xe8,0x2b,0x93,0x6a,0x91,0x09,0x56,0xf9,0x13,0xac, +0xa5,0xb6,0xf3,0xe8,0x0e,0x1e,0xa1,0x8a,0x87,0x09,0x37,0xf5, +0xb7,0x77,0x71,0xe5,0x04,0x8d,0x4e,0x52,0xe1,0x43,0xb5,0x8b, +0xeb,0xdc,0x82,0x9a,0x61,0x8a,0x90,0x7a,0x0e,0xf5,0x71,0x23, +0xa9,0xec,0x2a,0x9f,0xc8,0xeb,0xb6,0x29,0xe4,0x13,0xec,0x42, +0x2d,0x82,0x1d,0x39,0xa5,0x11,0x56,0x90,0x3e,0xa8,0x80,0x65, +0xb3,0xf1,0xb8,0x0c,0x4a,0x50,0x0d,0x43,0xfa,0xd9,0xb1,0x8f, +0xb3,0x65,0x57,0x34,0x42,0x3a,0x54,0xa2,0x74,0x0e,0x26,0x6f, +0x59,0x4e,0xcd,0x3e,0x08,0x21,0x51,0xec,0xb9,0x8a,0xdf,0x98, +0x7d,0x8c,0xd5,0x2f,0x53,0x01,0x1b,0x76,0xd6,0x0e,0xd4,0x28, +0x4e,0x4d,0x28,0x4c,0xe1,0x3d,0x9c,0x9d,0x37,0xbb,0x72,0xe1, +0x5f,0x05,0x72,0x45,0x01,0xfd,0xba,0x2c,0xf6,0xc3,0x2c,0xa5, +0x58,0x47,0x13,0xb6,0x16,0x69,0x51,0x1c,0x3d,0x02,0xd1,0xd4, +0xd8,0x3b,0x08,0x84,0x18,0x61,0x08,0x35,0xf6,0x04,0x31,0xc2, +0xe8,0x09,0x76,0xe9,0x88,0xf2,0x29,0x31,0x52,0xbe,0x30,0x81, +0x6f,0xff,0x04,0xfb,0x27,0x70,0xff,0x5f,0xf4,0x36,0xe0,0x7e, +0x23,0xd8,0x2f,0xee,0x55,0x2c,0xd8,0x93,0x9b,0x9f,0xf4,0xff, +0x50,0x0b,0x4b,0xb9,0x41,0x3c,0x01,0x86,0xb0,0x86,0x4d,0xb4, +0x0e,0x33,0x0d,0x75,0x1e,0x0d,0xe7,0xe5,0x43,0x15,0x53,0x05, +0x97,0xb9,0x21,0xb4,0x84,0x85,0xe2,0x0c,0x4d,0x6b,0x2c,0x62, +0x31,0x2c,0x04,0xb7,0xe8,0x21,0xab,0x3e,0x66,0x3f,0x0d,0x6f, +0xd4,0xc0,0x1f,0x32,0x21,0x58,0x02,0x37,0x99,0xe0,0xad,0x2e, +0x7b,0x8c,0x8e,0x9b,0xdc,0x76,0x79,0xe4,0xf3,0xa1,0x59,0x00, +0xaf,0xd8,0xd1,0xb5,0x7f,0xea,0xb8,0xa9,0xe1,0x05,0xcb,0x43, +0x0e,0xcd,0x86,0xfc,0xfb,0xdd,0xb7,0x46,0x2e,0x5f,0x19,0x35, +0xbc,0x6e,0xf6,0x9e,0x8d,0x62,0x92,0x3f,0xde,0xa5,0x33,0x68, +0x31,0xc6,0x6d,0x82,0xbf,0x13,0x5c,0x23,0x7e,0x27,0x33,0xbb, +0x88,0xe6,0x50,0xf4,0x83,0xcf,0xc0,0x8f,0xa5,0x52,0xed,0x20, +0x01,0x06,0xbc,0x91,0x61,0xaf,0x62,0x38,0xf1,0x49,0xf2,0x4a, +0xf6,0x4c,0x92,0x0f,0x55,0x5e,0x97,0x8d,0xea,0x95,0xf1,0x51, +0xba,0x41,0xa7,0x02,0x74,0x8e,0xc4,0x1e,0x8a,0x3f,0x3f,0xb7, +0x9d,0xc7,0xa2,0x02,0xd8,0x54,0xf5,0xd7,0x6a,0x0e,0x6d,0xc7, +0x49,0xf4,0x50,0xd0,0xed,0xa0,0x41,0xe3,0x10,0xbe,0xca,0x52, +0x7e,0x4e,0x6a,0xc9,0x2d,0xbd,0x43,0xeb,0x3e,0x1b,0xe5,0xc6, +0x3e,0x3c,0x35,0x00,0x3a,0xfd,0xa8,0x33,0x62,0x60,0x86,0x46, +0xd6,0x60,0x64,0xc5,0x42,0x2f,0xfe,0x8d,0x3c,0x96,0xdd,0xad, +0x99,0x52,0x5c,0xf3,0xb8,0xeb,0xff,0x51,0x50,0xe5,0x65,0xfe, +0x54,0x99,0x41,0xb9,0x59,0xd5,0x9d,0xc1,0xe1,0xa9,0xfa,0x29, +0xae,0x03,0xcf,0xbc,0x0b,0xd6,0xc3,0x68,0x7d,0x4f,0xff,0x94, +0xd8,0x82,0xd6,0x3c,0x8d,0xa7,0x2d,0xe0,0x2b,0xd6,0xd7,0xce, +0xc6,0x5e,0xd7,0xc5,0xa2,0xc1,0xae,0xc5,0xb6,0xcf,0xc6,0x85, +0x6f,0x77,0xe8,0x74,0xef,0xf5,0xb6,0x0a,0x32,0x0e,0xd7,0x89, +0xe6,0x84,0x7d,0x54,0x30,0xa2,0xba,0x72,0x21,0xa8,0xb3,0x78, +0x7d,0x33,0x75,0x4e,0xae,0x09,0x8b,0x47,0x29,0x1b,0x27,0x94, +0x87,0x37,0x44,0x95,0x1a,0xd2,0x92,0x26,0x48,0xe6,0x97,0x17, +0xca,0xcd,0x70,0xc7,0x89,0xa0,0xc6,0x14,0xe5,0x17,0x16,0x14, +0xe4,0xdb,0x56,0xf3,0x4d,0x59,0x8a,0x1c,0x45,0x76,0x72,0x1f, +0x6f,0x97,0x68,0x9b,0x64,0x9b,0x24,0x2d,0x2d,0x2a,0xcf,0x2b, +0x31,0x90,0xf2,0x71,0x41,0x91,0x3e,0xe1,0x81,0xfb,0xe2,0xf7, +0x24,0x6e,0x4d,0xc9,0x33,0xe6,0x61,0x69,0x1e,0x2c,0x96,0xc1, +0xe2,0xd2,0xf3,0x86,0x6b,0x0c,0x51,0xe2,0x4e,0x29,0xe1,0x4e, +0xe9,0x95,0xaa,0xd1,0xba,0x6e,0xdf,0x11,0xbf,0xe9,0x80,0x95, +0xde,0xf8,0x46,0x30,0x6e,0x8f,0x16,0x67,0xe2,0x9d,0x2b,0x85, +0x2d,0x0a,0xf8,0x5d,0x17,0xfc,0xce,0x1e,0xd6,0x79,0xc2,0xa6, +0xc8,0xe2,0x49,0x1e,0x55,0x8b,0xf0,0xa5,0xca,0xb5,0xf5,0x1f, +0x35,0xdf,0xee,0x18,0xea,0xe1,0xd6,0xc6,0x11,0x53,0x2f,0x7d, +0xbf,0x73,0x81,0xc7,0xaa,0x75,0xea,0x6c,0xea,0xb9,0x76,0x74, +0x27,0xf7,0x22,0x1f,0x86,0x5c,0x0b,0xae,0x1a,0xe4,0x2f,0x54, +0x1e,0x93,0x6b,0x16,0x72,0x68,0x88,0x26,0x04,0xec,0x8a,0xc0, +0xa9,0x0a,0xf6,0x36,0x27,0x8c,0xf3,0x78,0xd8,0x03,0xed,0x82, +0xd0,0x21,0x8e,0xca,0xc3,0x8e,0x99,0x9d,0x24,0x68,0xca,0xfd, +0xa1,0x7f,0xbf,0x7e,0x08,0xdf,0x60,0xd4,0x70,0xb6,0xc2,0x40, +0xec,0x84,0x6c,0x24,0xce,0x43,0xd1,0x54,0x8a,0x97,0xa9,0x81, +0x33,0x2e,0x62,0x3b,0xa6,0x5b,0x6f,0x37,0x5e,0xd7,0xa9,0xe2, +0x7d,0x34,0xad,0x77,0xdb,0xe9,0x70,0x42,0x16,0x06,0x30,0x18, +0x1d,0xb0,0x52,0x1b,0x17,0xaa,0x4f,0xb8,0x74,0x3d,0xac,0x79, +0x4f,0x06,0x0b,0x24,0xb4,0x8a,0xcb,0xb8,0x0a,0x19,0x50,0xc2, +0xe4,0xa3,0x6a,0x85,0x76,0xb3,0x5d,0xb5,0xdb,0x54,0x56,0xc1, +0x95,0x06,0x38,0xca,0x9b,0x36,0xa8,0x08,0x7f,0x53,0xa6,0x12, +0xb7,0x49,0x8f,0x7e,0xe7,0x3e,0x13,0x6f,0xbe,0xcd,0xaa,0xcd, +0xbc,0xc1,0x84,0x03,0x47,0x74,0x23,0x98,0x4d,0xc5,0x66,0x36, +0x73,0x15,0x57,0x11,0x7a,0x50,0x80,0xab,0x58,0xe1,0x01,0x5a, +0x90,0xcc,0xde,0x8c,0xa1,0xf4,0x09,0x0e,0xb2,0xf1,0x2d,0xe6, +0x2a,0x55,0x30,0x50,0xc0,0x18,0xa6,0x5b,0x64,0xd8,0xa9,0xa3, +0x94,0x59,0x3a,0x53,0x3c,0x73,0x9a,0xc0,0x5a,0x23,0x5c,0x8b, +0x1b,0x85,0x21,0x98,0x55,0x0e,0xb1,0xc2,0xec,0x5f,0x88,0x19, +0xac,0xdf,0x86,0xab,0x2d,0x60,0xf5,0x5a,0x7c,0xfc,0x03,0xac, +0x1c,0xc2,0x95,0x7f,0x66,0x87,0x0a,0x6e,0x94,0xf5,0x55,0x05, +0x0e,0xf0,0x26,0xfe,0x67,0x42,0xce,0xc4,0x70,0xf8,0x54,0x79, +0x0a,0x3e,0x67,0x69,0xfe,0xf8,0x82,0xac,0x07,0xdd,0xef,0x98, +0x31,0xd4,0x25,0xa0,0xfb,0x13,0xea,0xb2,0xb3,0x2f,0x09,0xab, +0x88,0x7f,0x9c,0x6b,0xb4,0x53,0x0c,0x07,0x4b,0x7f,0x1c,0x5a, +0xf3,0x33,0xfd,0xef,0x3d,0x43,0x61,0x27,0x1b,0x96,0x14,0x96, +0x12,0x91,0x92,0x6b,0xc0,0x5f,0x29,0xf9,0xba,0x79,0xb8,0x92, +0x7b,0x06,0x6f,0x92,0x1f,0x86,0xd6,0xfe,0xfc,0xed,0xd0,0xc6, +0xf7,0x8c,0x84,0x43,0x4c,0x58,0x72,0x04,0xfd,0x7b,0xa1,0x31, +0xff,0xb0,0xe2,0x07,0xc5,0x54,0x5d,0xe2,0x10,0xef,0x1e,0x65, +0x1e,0x61,0x1e,0xc9,0x29,0xaf,0x84,0x13,0x9c,0x48,0xdd,0x7d, +0x17,0xba,0xd4,0x1e,0x1b,0x1d,0x66,0xf1,0xd1,0xdf,0xf7,0xc1, +0x1f,0xbb,0x4a,0x4a,0x3b,0xd5,0xbf,0x62,0x0d,0xca,0x54,0xf0, +0x14,0x0c,0x12,0xb4,0x5f,0x0f,0xf6,0xe2,0x1e,0xab,0x3f,0xa1, +0xfd,0x6a,0x66,0x29,0xdc,0x9e,0x51,0x90,0x82,0xe2,0xfc,0x92, +0x6c,0xd9,0x05,0xaa,0xe5,0x23,0x62,0x43,0xa3,0xc3,0xa8,0x0e, +0xc0,0xdb,0xca,0xcd,0x70,0x9b,0x81,0x76,0xfc,0x33,0x81,0x56, +0xd8,0x3a,0x2d,0xbc,0xa0,0x07,0x1b,0xb0,0x15,0x8f,0xe8,0xc0, +0x11,0xc1,0xed,0x06,0x55,0x88,0x87,0xae,0xb2,0x42,0x0e,0x5c, +0x22,0x38,0xd4,0x0b,0x43,0x0c,0xf2,0x8b,0x71,0xa8,0x5f,0x3c, +0x18,0xa2,0x4a,0x7b,0xc8,0x0a,0x87,0x98,0x83,0xbb,0xa8,0x76, +0x57,0x1a,0x50,0xf1,0x8e,0x99,0xeb,0x09,0xae,0x98,0x80,0x15, +0xcc,0xb8,0x11,0x99,0x80,0x95,0x46,0x2c,0x1a,0xdb,0x10,0x43, +0x5c,0x71,0x99,0x05,0x23,0x55,0x58,0x69,0x88,0x2b,0x19,0x24, +0xf8,0x16,0x49,0xd2,0xb3,0x75,0xc1,0x85,0x41,0xc5,0xa6,0x3c, +0xbc,0x51,0x77,0x67,0x2c,0xef,0x53,0x8e,0x4a,0xf0,0x03,0x57, +0xe0,0x00,0x2c,0x1d,0x13,0xe4,0x26,0xcc,0x52,0xa5,0x7c,0x26, +0x9a,0x7c,0xa6,0xb9,0x5d,0x58,0x69,0xf4,0x8f,0x05,0x13,0xac, +0xf0,0x64,0x33,0x69,0xf2,0x68,0x70,0x90,0x3b,0xf5,0xd5,0x8b, +0x0f,0x7b,0xf5,0x79,0x37,0x72,0x70,0x2e,0x8d,0x44,0xba,0x78, +0x3b,0x7a,0x7a,0xf6,0x78,0xf1,0xcd,0xad,0xf5,0x9d,0xe5,0x9d, +0x1c,0x98,0x9f,0x21,0x8a,0xbc,0xc6,0xbc,0x86,0x42,0xd7,0x6e, +0xfe,0x74,0xc0,0xce,0x88,0x4d,0x49,0x1c,0x9a,0xb3,0x21,0x69, +0xa1,0x69,0x61,0x17,0xf3,0xcc,0xf9,0x6b,0x39,0xdf,0xc9,0xae, +0x95,0x26,0x0d,0xf0,0xee,0x09,0x8e,0x09,0x4e,0xc9,0x1c,0xac, +0x65,0x15,0x99,0x8d,0x59,0x0d,0xd9,0xc5,0x1b,0x7b,0x77,0x7d, +0xa5,0xd9,0xdc,0xcf,0xef,0x9a,0x72,0xbd,0x17,0xfd,0x8c,0x13, +0x32,0x83,0x88,0xcd,0x45,0xc7,0x24,0x6f,0x75,0xaf,0xa4,0xb8, +0x44,0xb7,0xe5,0xe7,0x99,0x22,0x73,0x9a,0x41,0x6e,0x95,0xd6, +0x0c,0xe4,0x6b,0xe4,0xf7,0xa6,0x8f,0x3d,0x55,0xc3,0x69,0xf3, +0x2f,0x99,0x94,0xfd,0x9e,0x46,0x3b,0xf4,0x5b,0x6c,0xf9,0x6f, +0x6f,0xf4,0xdc,0xcf,0xfe,0x81,0x83,0xe4,0x60,0x82,0xd6,0xd3, +0x54,0x6f,0x61,0x3b,0x56,0x91,0x71,0x1d,0x4d,0x76,0x75,0xd8, +0xd6,0x75,0xeb,0xd5,0x87,0x6c,0x87,0x86,0x15,0x23,0xe5,0x23, +0x12,0xe5,0x1d,0x5c,0x77,0x4d,0xb9,0x5d,0xfb,0x2c,0x23,0x8c, +0xd0,0xda,0x36,0x4f,0x91,0xd5,0x94,0xa1,0xe0,0x94,0x6d,0x5b, +0xe8,0x4d,0x77,0xce,0x18,0x11,0xf8,0x64,0x1c,0x3f,0xf9,0x48, +0x13,0x03,0xd1,0x18,0x2e,0x68,0xe1,0x05,0x3c,0x69,0xf8,0x8f, +0x55,0x97,0x85,0x6d,0x0c,0x86,0xec,0x24,0x91,0xac,0x76,0x5c, +0xc8,0x0a,0x2b,0xf5,0x5a,0xcb,0x21,0x79,0x77,0x55,0x75,0x8d, +0x24,0x2f,0x2f,0x2b,0x2d,0x2f,0x19,0x16,0x9e,0xe6,0x9b,0x06, +0x36,0x4f,0x47,0xe5,0x25,0x5c,0x8a,0x8f,0x93,0xc4,0x46,0xcf, +0x4d,0xd8,0xca,0xaa,0xaf,0x53,0xab,0x60,0x21,0x55,0x95,0x9e, +0x95,0x28,0x9e,0x55,0x6d,0x31,0x24,0xef,0xaa,0xfe,0x6f,0x9d, +0x25,0x64,0x88,0x83,0xb4,0xfa,0xda,0xc2,0x67,0x37,0xc6,0x66, +0xd6,0x9a,0xdc,0x54,0x7e,0x76,0x01,0xf5,0xd9,0xd9,0x8d,0x66, +0x64,0x66,0x23,0x5e,0x9c,0xdd,0xc8,0x80,0x11,0x2d,0xeb,0x93, +0x32,0x54,0xa4,0x95,0xe2,0x09,0x72,0xfd,0x08,0xf6,0x42,0x64, +0xe0,0x5a,0x3b,0xf5,0x5a,0xf3,0x7f,0x7d,0xc7,0x45,0xf1,0x3b, +0x4e,0xcd,0x7f,0x47,0x7e,0x82,0x38,0xc9,0x0b,0x7a,0x63,0xfe, +0xed,0xa4,0xf8,0x50,0xf1,0x76,0xfe,0xb7,0x27,0x89,0x60,0xf8, +0xff,0x89,0x7b,0x0f,0xf0,0x2a,0xaa,0x6e,0x6f,0x5c,0x91,0x33, +0x33,0x20,0x46,0x51,0x77,0x9c,0x24,0x78,0x8e,0x74,0x94,0x8e, +0xf4,0x5e,0x42,0x0f,0xe9,0xbd,0xf7,0x4e,0x1a,0x21,0x84,0x10, +0x52,0x49,0x01,0xd2,0x7b,0xef,0xbd,0xf7,0x42,0x20,0x3d,0xf4, +0xde,0x51,0x01,0x0b,0xd8,0x05,0x0b,0xef,0xbb,0xe6,0xb8,0x26, +0xde,0x6f,0x9f,0x04,0x04,0xbd,0xaf,0xf7,0xbd,0xdf,0xfd,0x7b, +0xff,0xdf,0x73,0x9e,0x27,0x33,0xb3,0x67,0xef,0xbd,0x7e,0x7b, +0xf5,0x75,0x72,0x66,0xb6,0x11,0x39,0x8e,0x5b,0xef,0x18,0xa0, +0xdd,0x7b,0xb0,0xc1,0x00,0x37,0x2c,0x36,0x12,0x92,0x7a,0xd0, +0xfe,0x63,0x56,0xa8,0x1c,0xde,0x4e,0x68,0xc1,0x6f,0x76,0x20, +0xb3,0x53,0x06,0x3f,0xb0,0x3f,0x9d,0xfe,0xe6,0xea,0xe5,0x6b, +0xd6,0xed,0xbc,0xd6,0xf6,0xf5,0x5a,0x8b,0xa9,0x33,0xf8,0x41, +0x63,0x38,0x8e,0x5d,0x5a,0xe3,0xf2,0xe9,0xc8,0x56,0xb8,0xf9, +0xf9,0xb4,0x97,0x0b,0xab,0x99,0x27,0x19,0x5e,0x0f,0xed,0xc4, +0x8a,0x35,0x09,0xf0,0x32,0x74,0x94,0x96,0x3b,0xd4,0x95,0x14, +0x95,0x66,0x96,0xa9,0xc4,0x25,0x28,0x5e,0x61,0x7b,0x6e,0x0d, +0x5f,0x57,0x52,0x56,0x96,0x59,0x1a,0x1b,0x1f,0x7b,0x34,0x2e, +0xea,0xec,0x1a,0xbe,0xa6,0x5a,0xff,0x62,0x78,0xca,0xa1,0xd8, +0xb0,0x43,0x2a,0x41,0x21,0x51,0x31,0x92,0xa4,0xec,0xf8,0xa2, +0x12,0xd5,0x26,0x73,0x07,0xd6,0x3a,0x68,0x8f,0x9b,0x87,0xd4, +0xbd,0x31,0x3c,0x25,0x22,0x36,0x34,0x54,0x25,0x34,0x9c,0xde, +0x4d,0xce,0x89,0x2d,0xcd,0x57,0x6d,0x62,0x71,0x02,0xf5,0x44, +0x60,0x69,0x28,0xfe,0x73,0xa0,0x5f,0x98,0x2d,0xf4,0x18,0x23, +0x55,0x0b,0x34,0x25,0x34,0x2f,0x4d,0x40,0x64,0x20,0x07,0xc6, +0x91,0xa8,0x58,0x49,0x52,0x56,0x7c,0x51,0xe9,0xbf,0x9c,0x2c, +0x8c,0xde,0x7d,0x3a,0x99,0xb9,0x25,0xc5,0xea,0x6d,0xe8,0x20, +0x2d,0x77,0xfc,0x77,0x58,0xab,0xf4,0x2f,0x3d,0xc5,0xaa,0x24, +0x9f,0x23,0x37,0x23,0xe9,0xcd,0x29,0xcd,0x49,0x2d,0x3a,0xe9, +0x8a,0x77,0xa7,0x5a,0xe0,0x04,0xed,0x0f,0x5a,0x8d,0xf8,0xb4, +0xbc,0xf4,0xbc,0xd4,0x7c,0x4e,0x5c,0xde,0x7f,0x13,0xe6,0x09, +0x2f,0xa3,0x19,0x9b,0xdf,0x92,0xdb,0x96,0x45,0x8b,0x69,0x1f, +0xaa,0x69,0xef,0x46,0xe0,0xae,0x83,0xa8,0x24,0x5d,0x13,0x1a, +0xe8,0xa0,0xa5,0xf6,0x01,0x93,0xa3,0x29,0xf9,0x82,0xf9,0xb6, +0xa4,0x0f,0xb8,0x4c,0x59,0xa6,0xa2,0xb8,0x37,0x01,0x15,0x55, +0x9a,0x15,0x88,0x8f,0x96,0x91,0x4f,0x60,0x59,0x17,0x2e,0xbb, +0x63,0x88,0x76,0x1f,0xc0,0x06,0x23,0xdc,0xb0,0xd2,0x58,0xd8, +0xdd,0xcd,0xe2,0x67,0xcb,0x88,0x05,0x45,0xec,0x69,0xee,0x24, +0x2d,0x73,0xaa,0x2e,0x29,0x28,0xcd,0x28,0x1d,0xfd,0x69,0x5d, +0xe4,0xd0,0x5a,0xbe,0xa6,0xa4,0xa4,0x2c,0xbd,0x64,0x14,0xf1, +0xe0,0x5a,0xbe,0xaa,0xd2,0xe4,0xd2,0x21,0xba,0x64,0x8a,0x38, +0x38,0x94,0xf2,0x2f,0x91,0x72,0xb7,0x58,0xb5,0xd9,0xd2,0x96, +0xb5,0x0d,0xd9,0xe3,0xe9,0x25,0xf5,0xaa,0x57,0xdc,0x0d,0x0d, +0x53,0x09,0x53,0x70,0x37,0x29,0x27,0xb6,0x24,0x5f,0xb5,0x99, +0xa5,0xe5,0x8f,0x9b,0x22,0x13,0x12,0xa1,0xaf,0x5f,0x98,0x20, +0xf4,0x1a,0xa3,0x35,0x0b,0x9d,0x40,0xcb,0x8a,0xf8,0x59,0x10, +0xcf,0x8a,0xb9,0xa8,0x49,0xe0,0x63,0x4c,0xc2,0x8f,0x19,0x88, +0x84,0x57,0xc9,0x7f,0x77,0x62,0xcb,0xff,0x09,0x6e,0x25,0xc1, +0x4d,0x6e,0x4e,0xba,0x70,0xc1,0x47,0x86,0xe8,0x34,0x1f,0xd4, +0x0d,0x51,0x7d,0x8d,0xb1,0x60,0xd1,0x8d,0xdb,0xef,0xb3,0xc2, +0xdd,0x2f,0x09,0x2d,0xf5,0x4a,0x75,0xf4,0x04,0x83,0x01,0x1d, +0x46,0x4b,0xa8,0x22,0xe8,0x4c,0xab,0x17,0x67,0xc5,0xb6,0x7d, +0x83,0x64,0x74,0x86,0xe0,0x50,0x3e,0x3a,0x56,0x92,0x90,0xa5, +0x00,0xd8,0x6e,0x65,0xc1,0xda,0x86,0xee,0xf1,0xf2,0x96,0xfa, +0xd4,0x47,0xfc,0x0e,0x90,0x2a,0x4a,0xb6,0x02,0x60,0xbb,0x95, +0x09,0x05,0xe8,0x61,0x49,0x01,0x3a,0x57,0x95,0xe4,0x2b,0x00, +0xd2,0xec,0xf4,0x68,0x5c,0xe4,0x00,0x45,0x54,0x5a,0x5c,0x96, +0x5e,0x1c,0x1b,0x1f,0x33,0x0a,0xb0,0xa2,0x5c,0x62,0x8a,0x17, +0xc1,0xc1,0x48,0xfc,0x8f,0xbe,0x7e,0xf8,0x4d,0x38,0x6d,0x82, +0xf3,0x59,0xb0,0x58,0x49,0xf3,0x76,0x70,0x46,0x73,0x76,0xd8, +0x0d,0x2b,0x09,0xa4,0xc1,0x45,0xea,0x23,0xcd,0xce,0xff,0x2e, +0x82,0x7f,0x0d,0x24,0x39,0x22,0xee,0x05,0x20,0xc5,0x05,0xff, +0x97,0x40,0xf4,0x59,0x61,0x21,0x78,0x13,0xdc,0x43,0xd7,0xbe, +0x87,0x55,0x82,0x9b,0x72,0x96,0xea,0xce,0xd2,0x2e,0x5c,0xaa, +0xd0,0x9d,0xd9,0xb0,0xc1,0x10,0x37,0xac,0x32,0x16,0x5c,0xbb, +0x59,0x9a,0x29,0x8d,0x27,0x47,0x66,0x47,0xaa,0x87,0x9a,0x71, +0x76,0x61,0xc1,0xfb,0x4d,0xd5,0xe6,0x2a,0x5e,0x31,0xfb,0x80, +0xb9,0x5c,0x51,0x72,0x8a,0x2a,0xe0,0xe9,0xa4,0xbb,0x31,0xb0, +0x88,0x13,0x67,0xe9,0xc0,0xdb,0xcc,0x21,0x7c,0xc3,0xf9,0x7d, +0x94,0x6c,0x6c,0x50,0x84,0x92,0x4f,0x5b,0x81,0x4d,0x86,0x19, +0x8a,0xfd,0xda,0x7a,0x29,0x5f,0x0f,0x8d,0xf2,0xf5,0x05,0xc1, +0xdb,0xb0,0x76,0x23,0x82,0xf7,0xfe,0x2b,0xc1,0x1f,0xf0,0x34, +0x7b,0x26,0xf8,0x4c,0xc5,0x72,0x9e,0x0a,0xbe,0x9a,0x0a,0x3e, +0xa3,0x24,0x66,0x44,0xf0,0xa7,0xd7,0xf2,0xe5,0x65,0x12,0x0b, +0xfc,0x08,0xac,0x8d,0x47,0x74,0x6f,0xbc,0x42,0xf7,0x66,0xb3, +0x34,0x5e,0x9a,0x93,0x73,0x10,0xbb,0xf3,0x8c,0xb0,0x4a,0xe4, +0xc4,0x55,0x2c,0x9c,0x15,0xc6,0x10,0x8c,0xc6,0x58,0x88,0x66, +0xc5,0x88,0x50,0x02,0x1f,0xa1,0x01,0x63,0x72,0x6e,0x14,0xd7, +0x1f,0x35,0xdd,0x86,0x2a,0xa4,0xef,0xdf,0x82,0xcb,0x00,0x3f, +0xa2,0xcc,0xbd,0x36,0xc2,0xdc,0x25,0x5d,0xb8,0xe4,0x8e,0x11, +0xda,0xcd,0x19,0x61,0xee,0x6a,0x63,0xc1,0xb1,0x9b,0x85,0x1d, +0x60,0x47,0xf6,0xcc,0xd7,0x9a,0x8d,0x92,0xb9,0x0d,0x34,0x23, +0x1c,0xfb,0xf8,0xd4,0xa7,0x79,0xff,0xe0,0x12,0x99,0xdc,0xe9, +0x97,0x17,0xc2,0x1b,0x93,0x15,0x3b,0xe7,0xbe,0xfa,0xad,0xfa, +0x0f,0x3e,0xdf,0x70,0xb8,0x10,0xbf,0x27,0x10,0x3f,0x80,0xf1, +0x8c,0xb8,0xf2,0x30,0x31,0x57,0x98,0x85,0x85,0xe3,0x88,0xb0, +0x5f,0x30,0x0b,0x2a,0xdd,0x6a,0x2a,0xec,0x8c,0xe2,0x98,0x67, +0x66,0x51,0x59,0x69,0xfa,0x82,0x39,0xc7,0x4a,0x12,0x47,0x74, +0xa9,0xc5,0xd2,0xfa,0xa9,0x2e,0x29,0xac,0x2e,0x52,0xb1,0xc8, +0xd0,0x70,0xaa,0x69,0x89,0xd9,0x71,0x74,0x91,0x2d,0x8a,0xe7, +0xec,0xdc,0x7f,0x37,0x67,0x46,0xe8,0x35,0x51,0x98,0xf3,0xbe, +0x10,0x22,0xaa,0x0d,0x09,0x6a,0xa0,0x86,0x81,0x2b,0xd9,0x74, +0x3d,0xc9,0x25,0xa6,0x39,0x2f,0x97,0xfa,0xf0,0x6a,0x91,0xe8, +0xb3,0xe2,0x87,0x4e,0x04,0x6e,0x52,0x0b,0xbf,0xc9,0x40,0xd8, +0x1f,0x2d,0xdc,0xe6,0x39,0xad,0xe4,0xc8,0xb8,0x51,0x5a,0xf4, +0x6e,0x4e,0x1c,0xd5,0xdb,0x51,0x0b,0xf7,0xb0,0x70,0xfa,0x57, +0x4b,0x29,0x29,0xfe,0x9d,0xa1,0x7f,0x5c,0x8a,0x12,0xdc,0x90, +0x73,0xe4,0xfe,0x08,0x53,0x15,0x46,0x3e,0x1b,0xd4,0x8d,0x50, +0x9d,0x6a,0xac,0x33,0x65,0xea,0x2d,0xd1,0x93,0x1c,0x6b,0x3b, +0x71,0xb6,0xaa,0xd7,0xa6,0x91,0xf7,0x36,0xb5,0xd3,0xb5,0xb5, +0xf1,0x1b,0x0c,0x3e,0x73,0xe8,0x2a,0x07,0xb3,0x85,0xf9,0xf8, +0x1f,0xc3,0x9d,0x8c,0x46,0x50,0xa6,0xee,0x67,0xb9,0x20,0xa9, +0xba,0x53,0xa1,0x12,0xda,0x6b,0x79,0x40,0xe7,0x80,0xfe,0x41, +0x15,0xe1,0xf5,0xaf,0xd8,0x7c,0xd4,0x1f,0xc4,0xc9,0x30,0x1d, +0xdf,0xa9,0xeb,0xe6,0x77,0xf5,0x5b,0x0d,0xec,0x3e,0xcb,0x55, +0x0b,0x5f,0x13,0x1a,0x3d,0x8e,0xc0,0x04,0x5a,0x29,0x8c,0x85, +0x23,0xa8,0x82,0x47,0x18,0x71,0xc7,0x63,0x62,0xfa,0x67,0xdf, +0x34,0x6a,0x71,0x4f,0x55,0xe1,0x99,0x6f,0x52,0x18,0xe0,0x08, +0xf2,0x11,0x4d,0x0b,0x79,0xae,0x69,0x6d,0x96,0x96,0x2f,0x68, +0x5a,0x64,0x6c,0xc8,0xef,0x9a,0xa6,0x10,0x42,0x9b,0xc2,0xa7, +0x7a,0x11,0xb0,0x37,0x16,0x7f,0xa3,0x42,0x60,0x85,0x53,0x26, +0x8a,0x6d,0xaa,0x6f,0x9b,0x13,0xb8,0x8d,0x29,0x78,0x9b,0x81, +0x43,0xd4,0x32,0x7f,0x97,0x68,0x3b,0xe5,0xe3,0x73,0x73,0x8a, +0x8c,0x0b,0x09,0x7d,0xe6,0x1d,0x14,0x93,0xb5,0x5b,0x9a,0xfc, +0x11,0x6b,0x99,0x4a,0x6c,0x3c,0xc5,0x1a,0x35,0xb4,0x86,0x2a, +0xcc,0x0b,0x58,0xd7,0x28,0xb0,0x5e,0x1e,0xc1,0x1a,0xae,0xa2, +0xd4,0x25,0x94,0x93,0xf3,0x71,0xa7,0xe3,0xce,0xc4,0x73,0x0e, +0xa7,0x5a,0xd9,0x93,0xf1,0xa7,0x12,0xce,0x26,0x1e,0x3e,0xc6, +0x6b,0x46,0x6a,0x45,0x6a,0x47,0x71,0x3d,0xb0,0xe8,0x18,0x2e, +0xea,0x06,0x8d,0x2e,0xd4,0x68,0xd3,0xb2,0xc6,0xed,0x66,0xb0, +0xdd,0x18,0x97,0x99,0xc3,0x32,0x7d,0x76,0x67,0xd4,0xce,0xe8, +0x9d,0x87,0x39,0x21,0x18,0x79,0x02,0x3f,0x74,0xe1,0x0f,0x9d, +0x0c,0xa8,0xf6,0x77,0xdc,0x4e,0xfd,0x98,0x83,0x49,0xcc,0x61, +0xfb,0x68,0xfb,0x43,0x4e,0x9c,0xcb,0xa1,0x83,0x21,0x4e,0x6a, +0xc8,0x30,0xb9,0xc6,0x92,0x5f,0x98,0x4b,0x15,0x85,0x67,0xd2, +0x65,0xc9,0xad,0xf1,0x7d,0xb1,0xf7,0x38,0x71,0xae,0x21,0xcc, +0x65,0x82,0xb7,0x5a,0x1a,0xe1,0x2b,0xb6,0x15,0x26,0xbc,0x01, +0x4e,0x45,0xe3,0xbb,0xbb,0x56,0xe0,0x3a,0x13,0xa8,0x38,0x42, +0x53,0x8c,0xc0,0xc9,0x76,0xd2,0x02,0xdb,0xfe,0xfc,0x96,0xfc, +0xe2,0x02,0x95,0x94,0xa4,0xf8,0xe8,0xe4,0x28,0x18,0xa3,0xc9, +0x97,0x37,0xcd,0xec,0x0b,0x49,0x8c,0x50,0xfc,0x54,0x3e,0x34, +0x34,0x32,0x4e,0x92,0x92,0x9d,0x98,0x57,0xac,0x9a,0x00,0x31, +0x47,0x58,0xb3,0x83,0x81,0xd3,0x14,0x63,0x7a,0xf3,0x9b,0x0a, +0x8a,0xf2,0xe9,0x98,0x84,0xe8,0xa4,0x28,0x90,0x28,0xc6,0x4c, +0xeb,0x0b,0x4d,0x38,0x14,0x13,0x1a,0xa2,0x12,0xa6,0xf8,0x9d, +0xfc,0xb3,0x31,0x4d,0x27,0xc4,0x15,0x8a,0xe7,0x60,0x2d,0x08, +0xbc,0xb6,0x4b,0x7c,0xef,0x4c,0xb9,0x7c,0x95,0xe7,0x59,0xe1, +0x3d,0x0d,0x7c,0x8d,0x1d,0x5e,0x65,0x45,0xe0,0xc3,0xc3,0x8c, +0xf9,0x81,0x03,0x93,0xed,0xff,0x02,0x47,0x2f,0xc5,0x71,0xf4, +0x77,0x1c,0x59,0x8a,0x39,0x13,0x21,0xe6,0x30,0x6b,0x7e,0xf0, +0xc0,0x34,0xfb,0x51,0x1c,0xf9,0x45,0x05,0x7f,0xc4,0xd1,0x1b, +0x9a,0x10,0x1e,0x33,0xf2,0x03,0xfc,0x88,0xe7,0x63,0xd6,0xe2, +0xfc,0xe1,0x55,0xac,0x92,0xe0,0x37,0x12,0xd5,0xfe,0xac,0xf0, +0xa8,0x45,0xa3,0xda,0xf5,0x55,0x04,0x77,0x32,0x45,0x30,0x5e, +0x02,0xf6,0x7d,0xe2,0x7c,0x03,0x5a,0xb1,0xef,0xc5,0xf1,0x92, +0xc9,0x06,0xdf,0x32,0xbb,0x71,0xa9,0x64,0x9e,0x81,0xb0,0xbd, +0x6f,0x17,0xa3,0x0b,0x4b,0x15,0x3b,0x80,0xad,0x62,0xab,0x60, +0xa9,0x44,0x2c,0x74,0xf9,0x7f,0xac,0xc1,0x42,0xcc,0x1c,0x32, +0x00,0x47,0xf5,0x86,0xe0,0x7b,0xfc,0x0d,0xbf,0x67,0xd1,0x0e, +0x5c,0xfe,0x77,0x35,0x5a,0x88,0xbe,0x48,0x70,0x1b,0x1e,0x85, +0x6d,0xd4,0x2f,0xf7,0xca,0xc7,0x51,0x17,0x32,0xf5,0x18,0x4e, +0xfd,0xc8,0x08,0x1d,0x97,0xc3,0x26,0x23,0xdc,0xb4,0xd1,0x58, +0x58,0x4b,0x5d,0x48,0x87,0xf8,0x1b,0x89,0x82,0x60,0xd8,0xda, +0x8b,0x5b,0x41,0x0b,0xe6,0xc1,0x15,0xf1,0x1d,0xbc,0x02,0xea, +0xa2,0x0d,0xa3,0x51,0xeb,0xf9,0xc5,0xd7,0xaa,0xf0,0xb2,0x2e, +0xbe,0xcc,0x4e,0xf5,0x5b,0xbf,0x7a,0xbb,0x54,0xa8,0x33,0xc1, +0x05,0xac,0xcd,0x45,0x45,0x76,0x40,0x69,0x84,0x84,0x8d,0x84, +0xec,0xb8,0xa2,0x22,0xd5,0x0e,0x6b,0x53,0xd6,0x3e,0xcc,0x77, +0xef,0x1e,0xe9,0xde,0x9a,0xc8,0xe4,0xc8,0xf8,0x91,0x58,0xa2, +0xb8,0x9b,0x1d,0x5b,0x54,0x40,0xef,0x1a,0xb1,0xa6,0x81,0xbb, +0xed,0x9c,0xa5,0x30,0xd7,0x44,0xfc,0x8f,0x9e,0x7e,0xb8,0xc3, +0xe6,0x59,0x7f,0x71,0xb6,0xec,0x46,0xdc,0x17,0x2a,0x49,0xcc, +0xec,0xf8,0x13,0xb3,0xe0,0x75,0x35,0xd0,0x66,0x52,0xfa,0x25, +0x93,0xe5,0xfb,0x68,0x9e,0x82,0xc5,0xe0,0xcc,0x8a,0x5a,0xe2, +0xfb,0xa4,0xbc,0x34,0xaf,0x24,0xbd,0x2c,0x6e,0x64,0x89,0x27, +0xd6,0xf0,0x95,0x65,0x85,0x65,0x69,0xd4,0xe9,0x2b,0x84,0x77, +0x7c,0x2d,0x5f,0x56,0x26,0x31,0xc3,0x96,0x3e,0x16,0xd4,0x71, +0x1b,0x79,0x06,0x20,0x22,0x25,0x2a,0x36,0x34,0x5c,0x25,0xec, +0x10,0xf5,0xbd,0x14,0x40,0x71,0xfe,0xef,0x00,0x5c,0xa4,0x34, +0x87,0x6c,0x41,0x8b,0x91,0x35,0x44,0xc6,0x84,0x52,0x19,0x87, +0x8f,0x74,0x8a,0x2b,0x2a,0xa4,0x9d,0x58,0x54,0xc7,0x55,0xa4, +0xc4,0xb5,0xbc,0x24,0xaf,0x34,0xbd,0x54,0xe5,0x29,0x51,0xea, +0x8f,0x4b,0x47,0x89,0xc6,0xc7,0xc4,0x47,0x1c,0x5b,0xc7,0x97, +0x95,0x4a,0x0c,0xb1,0x85,0xf2,0xf5,0xf8,0x5f,0xf3,0xf5,0x8e, +0x18,0x4b,0x60,0xee,0x71,0x9c,0xfb,0x4f,0xa6,0x3e,0xbe,0x36, +0xae,0x22,0x3e,0x35,0x20,0x65,0x7f,0x4a,0x40,0x53,0x29,0xef, +0xd5,0xe7,0x30,0xe8,0xda,0xee,0xe8,0xcb,0x67,0xee,0xcb,0xf4, +0xcb,0xdc,0x6b,0x16,0xa9,0x13,0xa5,0x1b,0x9d,0xdf,0x5a,0x74, +0x22,0xb3,0x95,0x03,0xfd,0xe3,0xe2,0x6b,0x4c,0x4c,0xe9,0xd1, +0xd2,0x32,0x55,0x9a,0x8f,0xec,0x11,0x57,0xa2,0x17,0x83,0xe9, +0xe1,0xe8,0xae,0x8f,0xf3,0xa4,0x1d,0x76,0x27,0x40,0x39,0x17, +0xb4,0x13,0xc0,0x4b,0x05,0x54,0x98,0x83,0x76,0x7b,0x8d,0x7d, +0x2c,0xb9,0x23,0xfb,0xf7,0x1f,0x09,0x50,0x8b,0x33,0x6d,0x8f, +0xe9,0x8e,0x3b,0x11,0xa7,0x32,0x0d,0x67,0x9a,0xc2,0x4c,0x7c, +0x03,0xd7,0x9b,0x08,0xef,0x9d,0xc0,0xf5,0xec,0x97,0xf2,0x68, +0x82,0x4a,0x78,0x1a,0x94,0x58,0xdc,0x8d,0xe7,0xc9,0xa8,0xf0, +0x42,0xc2,0xf8,0xbf,0x10,0x5e,0x44,0x7c,0xd8,0xbf,0x11,0xde, +0x03,0x45,0x46,0xb7,0x80,0xc5,0x6c,0xb7,0xbf,0x92,0x4e,0xec, +0xd1,0xd8,0xa8,0xee,0x35,0xff,0x5a,0x3a,0x91,0x29,0x11,0x8a, +0x9f,0xb6,0xff,0x3b,0xe9,0x8c,0x6a,0xd8,0xff,0x8d,0x74,0x46, +0x88,0xae,0xfd,0x5d,0x3a,0x82,0xad,0xdc,0x84,0x3a,0x91,0xd9, +0xb7,0x8d,0xd0,0xf6,0x43,0x58,0x6f,0x84,0xeb,0xd7,0x19,0x0b, +0xda,0xdd,0xa8,0xfe,0x09,0x2b,0x6c,0xc3,0x4e,0x02,0x6b,0x61, +0x3f,0xae,0xfd,0x8a,0xb9,0x92,0x7a,0x21,0xb3,0x2f,0xcb,0xef, +0x38,0x3f,0xcd,0x0d,0xd7,0xec,0xc5,0x77,0xc3,0x53,0x8d,0xf9, +0xc1,0xf8,0xd3,0x89,0xa7,0x92,0xb8,0x65,0xb8,0x04,0xf7,0xc3, +0x92,0x75,0xb8,0x55,0x5c,0xdc,0x2b,0x8c,0x81,0x37,0x71,0x31, +0xeb,0x14,0xe9,0x14,0xe5,0x1a,0x9d,0x64,0xcc,0x5f,0x4b,0xbe, +0x9e,0x71,0x29,0x33,0x6e,0x5f,0xbc,0x7f,0x9c,0x7f,0x67,0x26, +0x1f,0x7a,0x26,0xe0,0xea,0xfe,0x3e,0xeb,0x20,0x3e,0xd9,0x27, +0xc9,0x33,0xc9,0x23,0x20,0x6a,0x7f,0xd4,0xfe,0x68,0x1a,0x87, +0x61,0x12,0x9e,0xc4,0x77,0xd9,0x14,0x23,0x09,0xbc,0xce,0xb4, +0xe6,0xe6,0xb6,0xca,0xe0,0x47,0xd4,0x63,0x71,0x31,0xa4,0x10, +0x78,0x09,0xdf,0xc1,0x97,0x18,0x28,0x57,0x46,0x16,0xde,0x01, +0x56,0xb1,0x99,0xc7,0x07,0xe4,0x50,0x6a,0x44,0xcc,0xa8,0x80, +0x14,0x6b,0x8f,0xa7,0x02,0x6a,0xb1,0xb2,0x62,0xed,0x42,0x7d, +0xf7,0xf8,0x48,0xf7,0xd4,0xd2,0x84,0xf8,0xa9,0x75,0x29,0x12, +0x0b,0x85,0x80,0x5a,0xac,0xcc,0x58,0xd3,0x03,0xbb,0xad,0x9d, +0xa5,0xa5,0xce,0x95,0xa5,0xf9,0x54,0x1e,0x4f,0x79,0xd3,0x47, +0x3d,0x42,0x69,0x51,0x59,0x5a,0xc9,0x68,0x42,0xdc,0xbf,0x46, +0xc1,0x1b,0x4b,0x1c,0x78,0x9a,0x41,0xc2,0xcf,0x8a,0x74,0x67, +0x0e,0x8b,0x03,0xf8,0x0f,0x02,0xc9,0x30,0x80,0x46,0xac,0xe5, +0xf9,0x88,0x51,0xff,0xf1,0xd4,0xb6,0x15,0xd4,0x5b,0xad,0x2c, +0x15,0xd4,0x7d,0x7c,0xa4,0xbe,0xb5,0x54,0x2e,0x71,0xcf,0x6c, +0x3b,0x71,0x44,0x78,0xad,0x94,0xba,0xc9,0x01,0x0f,0x6b,0xa7, +0x7f,0x45,0xbd,0x8c,0x52,0x2f,0x7e,0x4e,0xbd,0x4c,0x62,0x48, +0xe5,0xa2,0x23,0xdf,0x4e,0xe5,0x32,0x5d,0x21,0x97,0x65,0x23, +0x72,0xd9,0x60,0x2c,0x6c,0xec,0xc6,0xd5,0x9f,0xb0,0x60,0x06, +0x2f,0x11,0x0c,0x05,0x43,0x08,0x65,0x7b,0x94,0xe9,0x89,0x31, +0x3d,0x11,0x79,0xd4,0x25,0x30,0xf5,0x01,0x4e,0x55,0xec,0x69, +0x03,0x53,0xbf,0xa2,0x27,0x62,0x29,0x6e,0x7f,0xaa,0xc8,0xa1, +0x61,0x8a,0x4c,0xfb,0x19,0x9f,0x2c,0x15,0x8a,0xec,0xeb,0x23, +0xdd,0x5b,0x1b,0xf9,0x9f,0xf9,0x64,0x3d,0xc2,0x27,0x5b,0x05, +0x9f,0x2a,0x46,0xf4,0x56,0x65,0xd4,0x73,0xf6,0xac,0xe1,0x2b, +0x46,0xf8,0x14,0xf3,0x4c,0x8f,0x47,0x32,0xed,0x0e,0xb0,0x36, +0x11,0xa1,0xb7,0x1f,0xbe,0x52,0xf0,0x69,0x2e,0x2b,0x14,0x5f, +0x21,0xdd,0xe2,0x0a,0x63,0x56,0x30,0x5a,0x41,0x44,0x27,0xa3, +0x6f,0x99,0x60,0xab,0x83,0x66,0xfe,0x26,0x1c,0x0c,0x32,0x87, +0x2d,0xa3,0x4c,0xc3,0xdc,0x39,0xf7,0xb0,0xe0,0x30,0x5b,0xb5, +0x95,0x4c,0xae,0x81,0xe4,0x22,0x73,0xab,0xb4,0xb0,0x3f,0x43, +0x96,0xda,0x96,0x78,0x25,0xe6,0x23,0x0e,0x9b,0x98,0xe4,0xd2, +0xd4,0x9a,0xe4,0x1a,0x0e,0x2e,0x32,0xc3,0x0f,0xb1,0x45,0xc1, +0xf1,0x0e,0x34,0x61,0xad,0x9f,0xe9,0xfa,0x48,0xd9,0xfd,0x8c, +0xe3,0x16,0xbf,0xaf,0x83,0xfa,0xa9,0x3f,0x73,0x9c,0x9a,0xeb, +0x5f,0xae,0x63,0x84,0xe3,0x2f,0xae,0x83,0x72,0x5c,0x3e,0x5b, +0x3e,0x83,0x34,0xb1,0xd7,0xbc,0xbe,0xdd,0x0b,0x13,0xfc,0xb2, +0x69,0xaa,0x9d,0xd4,0x8c,0x6f,0xf6,0x69,0x5e,0xe6,0xb6,0x31, +0xda,0x9b,0x71,0xac,0x11,0x26,0xda,0xe5,0xe8,0xf1,0xf0,0x6a, +0xe1,0xd7,0x85,0x57,0xca,0x39,0x5b,0x16,0x96,0xc2,0x87,0xa4, +0xdc,0xb4,0xdb,0xf1,0xce,0x6e,0x0e,0x2f,0x32,0x37,0x2a,0xbb, +0x1a,0xca,0x8f,0x73,0x70,0x1f,0x7f,0x20,0x30,0x79,0x78,0x22, +0x4e,0x66,0x85,0x1b,0x8f,0x89,0xb6,0x98,0x79,0x92,0x85,0x6f, +0xc4,0x6c,0x52,0x0b,0x97,0xeb,0xf0,0x72,0xcd,0xd3,0xbf,0x9f, +0x00,0x83,0x77,0x6b,0xe0,0xfb,0x06,0xfc,0xbe,0x45,0x07,0x67, +0xc1,0x5d,0x3b,0x5a,0x18,0x25,0xb0,0xfa,0xe5,0xbe,0x27,0xa5, +0xd0,0xc4,0x34,0x65,0xe6,0xd6,0xca,0xaa,0x59,0x9b,0x4c,0x49, +0x09,0x2b,0xb6,0xc3,0x39,0x02,0x6c,0x23,0x6e,0xe9,0xd0,0xb3, +0xc4,0x8d,0x0e,0xf0,0x12,0xe3,0xb0,0x3f,0x3d,0x28,0x73,0x5f, +0xea,0x01,0x15,0x7c,0xcd,0x5e,0xd8,0xd6,0xa4,0x78,0x90,0x29, +0x27,0x35,0x3b,0x2d,0x8f,0x33,0xc9,0x22,0x61,0xfb,0x82,0xfd, +0x02,0xbc,0x39,0x7c,0x9b,0xa9,0xca,0x0a,0xc9,0x0d,0xcc,0x0f, +0xc9,0x54,0xf1,0x10,0x35,0xc9,0x13,0x88,0xd4,0xc1,0x37,0xd9, +0x34,0x07,0x09,0x70,0x4c,0x53,0x76,0x4e,0xbd,0x0c,0x22,0xf1, +0x1f,0x38,0xc8,0xc2,0x09,0xc8,0x25,0x36,0x18,0xd9,0xca,0x42, +0xe4,0x6a,0x62,0x85,0x91,0xed,0xac,0xe0,0x85,0xef,0x12,0xc7, +0xd0,0x84,0x6a,0x59,0x2a,0x5c,0x32,0x67,0x95,0x7e,0x9d,0x7e, +0x93,0xc0,0x35,0xbc,0xf4,0x10,0x6a,0x60,0x33,0xc6,0xb3,0x75, +0x85,0x35,0xe5,0x95,0x35,0x5c,0x03,0x02,0x9b,0x9e,0x91,0x9e, +0x91,0x9a,0xa9,0x93,0xcb,0xef,0x58,0x35,0x73,0x2b,0xaa,0x9a, +0x14,0x9a,0xf2,0xc5,0xa9,0x45,0x29,0x85,0x69,0x1c,0x4a,0x20, +0x03,0x27,0xce,0xff,0x0c,0x03,0x6d,0x41,0xc3,0x12,0x1d,0xac, +0xc1,0xc1,0x0c,0x35,0xed,0x20,0xe8,0x8b,0xaf,0xd0,0x67,0xfe, +0x17,0x18,0x6c,0x03,0x5a,0x16,0xe8,0x62,0x05,0x2e,0x26,0xa8, +0x63,0x0d,0xa1,0xdf,0x7c,0xe5,0xc4,0x7e,0xd8,0xe8,0xfd,0xb9, +0x54,0x18,0xc3,0x34,0xe7,0xe7,0xb4,0xc9,0xee,0xb2,0xb6,0x49, +0x12,0xcc,0x95,0xcf,0x24,0xbe,0x7b,0x9c,0xbc,0x6d,0x7c,0x69, +0xe9,0xc8,0x34,0x17,0xd5,0x15,0x57,0x97,0x72,0xc8,0xe3,0x78, +0x02,0x0e,0x3b,0xd0,0x81,0x01,0xe1,0x3c,0xc1,0xc0,0xb9,0x10, +0xc8,0xc2,0xcc,0xc5,0xe4,0x73,0xd8,0xbf,0x98,0xad,0x13,0xe7, +0x13,0xcc,0x81,0x83,0x8a,0x9f,0x1b,0x5d,0x09,0x25,0xe8,0x33, +0x17,0x7c,0xa8,0xd9,0xa0,0x29,0xa9,0xc8,0xae,0x2e,0xac,0x2c, +0x2e,0xf2,0x2b,0xd8,0x97,0x11,0x58,0x59,0xc9,0x1f,0xcc,0xf4, +0xcf,0xf3,0xcb,0x2f,0x29,0x2a,0x28,0xca,0xca,0x77,0xaf,0xe2, +0x03,0xf7,0xee,0xf5,0xf5,0xf1,0xf5,0x29,0xdc,0x93,0xef,0x9f, +0xe1,0xb1,0x9b,0xcf,0x0e,0x2e,0xf2,0x2f,0xd9,0xeb,0xe9,0xe7, +0xb1,0xdf,0xeb,0x20,0x37,0x0b,0xed,0x88,0x56,0x60,0xc6,0x49, +0x59,0xd5,0x37,0x1a,0xbd,0x67,0xa0,0x7b,0x3a,0xb5,0x51,0x73, +0xf9,0x67,0x44,0xeb,0x43,0x1c,0xbf,0x15,0x0f,0x6b,0x14,0x69, +0xf3,0x8f,0xcb,0xef,0x96,0x9f,0xab,0xe2,0x2c,0x04,0x69,0x1b, +0x7b,0xc1,0xe3,0xae,0xd7,0x63,0xcf,0xa2,0x93,0x3c,0xc6,0x9f, +0xc5,0xb7,0x2e,0x69,0x7e,0xc1,0xa1,0x3b,0x6a,0x92,0xaf,0x3b, +0x06,0x4e,0x94,0x9d,0xe6,0x92,0x98,0x72,0xcd,0x53,0x26,0xdf, +0x59,0x72,0xe2,0x6d,0x1c,0xa3,0x78,0xd5,0xb5,0x2f,0x6c,0x61, +0xfb,0x71,0x0b,0x01,0x7f,0xd8,0x82,0xfe,0x8c,0x90,0xaf,0x38, +0xdf,0x82,0xa1,0xb8,0x85,0x15,0x93,0x8f,0xd1,0xf0,0x39,0x7e, +0x19,0x0b,0x1f,0x2a,0xdf,0x87,0x37,0xe8,0xb1,0xf3,0x3e,0x59, +0x86,0xef,0xdc,0x67,0xc5,0x12,0x91,0x8a,0x45,0x03,0x56,0xe0, +0xb2,0x21,0x58,0xf6,0xec,0xa0,0x81,0x13,0x69,0x42,0x9a,0x61, +0x42,0x33,0xe8,0xae,0xec,0xec,0x0e,0x19,0x5c,0x1a,0x0e,0x13, +0x09,0x0b,0x7b,0x21,0x88,0xe0,0x8a,0x1f,0x61,0x05,0x33,0xa4, +0x0c,0x2b,0x66,0xe0,0x0a,0x06,0xf6,0x28,0xff,0x08,0x1a,0x33, +0xe8,0x42,0x0a,0xe5,0x6f,0x52,0x1a,0x3f,0xf4,0xe2,0x0f,0x17, +0x35,0xb6,0xe1,0x7d,0x43,0xb8,0xbf,0x4c,0x7c,0xd7,0x40,0xfe, +0x4b,0x1f,0x2b,0xda,0x62,0x1d,0x31,0x8b,0xd6,0x8d,0xd6,0x8e, +0xe6,0xee,0xc2,0xbc,0x5e,0x9c,0x77,0x4d,0x73,0x13,0x2e,0x30, +0x84,0x05,0xcb,0xd8,0x5d,0x87,0x77,0x1d,0x31,0x38,0x12,0x6f, +0xc0,0xc3,0x1b,0x31,0xb0,0x22,0x09,0x24,0x69,0x5c,0xcb,0x41, +0x22,0x2c,0xed,0x45,0x9d,0xfb,0xb0,0xaa,0x17,0x57,0xfd,0xde, +0x15,0x57,0x33,0xc2,0xab,0xf8,0x25,0x41,0x43,0xc6,0x3a,0x2c, +0xa5,0x45,0x06,0x63,0xe1,0x44,0xff,0x6f,0xaf,0xe9,0x43,0x0d, +0x7b,0x70,0xc6,0x46,0x7b,0xb4,0x75,0x2c,0xd4,0xe6,0xc1,0xa3, +0xf9,0xa7,0x33,0x99,0xa0,0xaa,0x78,0x75,0xa9,0x32,0xb3,0xb3, +0x64,0xcf,0x35,0xc5,0x0b,0x39,0xda,0x73,0xf3,0x5a,0x65,0x9f, +0xb3,0xda,0x39,0x12,0x25,0xb9,0x5c,0xf8,0x27,0xe9,0xcc,0xc9, +0x6a,0x92,0xf5,0xb2,0xba,0xa9,0x92,0xed,0xf8,0x88,0xb5,0x0d, +0x4a,0x6a,0x92,0x15,0xb0,0xb0,0x30,0x19,0x3e,0x48,0x03,0x95, +0x12,0xdf,0x63,0x3c,0x72,0x7b,0x71,0x76,0x20,0x7e,0x10,0xc9, +0x9d,0xd3,0xc6,0xf7,0xd8,0x2d,0xa5,0x7b,0xaf,0x48,0xd1,0x1f, +0x67,0x90,0x43,0x59,0xe1,0x47,0x83,0x43,0x83,0x42,0xf8,0x48, +0x78,0xf7,0x97,0xbe,0xa9,0xa0,0xab,0x8b,0xba,0xf8,0x8e,0x01, +0x0d,0x38,0xc1,0xf8,0xb6,0x03,0x4e,0xff,0x10,0xdf,0x6a,0x32, +0xe5,0x2f,0x3f,0x29,0xfd,0x25,0xe1,0x1b,0x2e,0x49,0x2c,0x1e, +0x14,0x92,0x98,0xc4,0xb8,0x23,0xb1,0x51,0xd2,0x6b,0xb8,0xa8, +0xa1,0x49,0xf2,0x39,0x6e,0x26,0xc2,0x7a,0x6d,0x71,0xaf,0x70, +0xa9,0x97,0x75,0x1c,0x24,0xc2,0x2b,0xe2,0x14,0xf1,0x15,0xc5, +0xef,0x46,0x2f,0x13,0x7d,0x6c,0xec,0x67,0xa1,0x71,0x1a,0xd1, +0xc5,0x46,0x6a,0x51,0x8d,0x53,0x88,0x0e,0x36,0x0e,0xb1,0xe8, +0x2d,0x12,0x72,0xbf,0xf8,0xf3,0xc6,0xd3,0x6d,0xce,0xad,0xfc, +0x2e,0xbb,0x55,0x2e,0x2b,0xf6,0x72,0xc2,0x1b,0xc7,0xc9,0x75, +0xef,0x3b,0x6e,0x1f,0xdb,0x94,0x75,0xf3,0x9b,0x1a,0x57,0xd7, +0xae,0x2a,0xe6,0x94,0xe0,0xac,0x10,0x44,0x7a,0x92,0x4e,0xa4, +0x1e,0x4b,0x73,0xb2,0xb6,0xb4,0x31,0xf7,0x38,0x66,0xc7,0xd7, +0x14,0x57,0x57,0x56,0x54,0x73,0xf0,0xc6,0x74,0xec,0xd0,0xa7, +0x6e,0x70,0x3e,0x6a,0xc0,0x2b,0x5a,0xb8,0x42,0xe8,0x83,0x15, +0x5a,0xf8,0x0a,0x1a,0xc2,0x7c,0xe8,0xe9,0xc7,0x9e,0x9f,0x20, +0xbf,0x4f,0xfc,0x80,0x49,0x49,0x4f,0xc9,0x48,0x4e,0x87,0x55, +0xdd,0xa0,0x74,0xe3,0xfa,0x6d,0xae,0x13,0xfb,0xd9,0xbc,0xac, +0x9c,0xec,0x8c,0x2c,0xad,0x1c,0x5e,0x97,0xf6,0xd7,0xc3,0xb7, +0x5d,0x8b,0x8c,0xf9,0x0b,0xb9,0x37,0xab,0xce,0xd6,0x73,0x70, +0x9c,0xb1,0x74,0xd0,0x72,0x5a,0xeb,0xee,0x51,0xe7,0x52,0xb7, +0x37,0xcf,0xd6,0x8b,0x2f,0x08,0xa8,0x74,0x2b,0x75,0xf3,0x0a, +0xdd,0x1d,0xe6,0x1e,0xee,0x5b,0xe1,0x59,0xb9,0x2f,0xc7,0xc2, +0x8f,0xcf,0x39,0x58,0xea,0x55,0xe8,0x65,0x1a,0x6c,0x14,0xa6, +0x17,0xce,0x85,0xc3,0x4c,0x62,0xd2,0xbd,0x65,0xc8,0xa0,0xc1, +0xce,0x8a,0x1f,0x70,0xb8,0xa4,0x7b,0xc2,0x88,0x4b,0xc7,0x85, +0xb4,0x6d,0xf3,0x90,0x7e,0x83,0xa3,0x25,0xdf,0x67,0x7f,0x5e, +0xbf,0xcf,0x90,0x83,0xc3,0xe2,0x66,0x82,0xca,0x0b,0x4f,0x03, +0x23,0x83,0xed,0x68,0xa8,0x0d,0xca,0x38,0x9e,0x9d,0xe3,0xa4, +0x3f,0xcd,0x4a,0x5a,0xac,0xf5,0x75,0xcb,0xf1,0xa1,0xb8,0x9b, +0x34,0xa3,0x5d,0x9c,0x72,0x77,0x03,0x7c,0xa8,0x26,0x1c,0x64, +0x52,0xcf,0x48,0x94,0x7e,0xd5,0x01,0x3b,0xd2,0x4b,0x53,0x5a, +0x1e,0xa2,0x7b,0x51,0xce,0xe6,0x54,0xc0,0xac,0x0b,0x30,0xe6, +0xd3,0xb3,0x8f,0x55,0x5a,0xb0,0x91,0x2d,0xc8,0xcd,0xcd,0xcf, +0xc8,0x33,0x28,0xe0,0xb5,0xd5,0x67,0x69,0xe3,0x04,0x87,0x22, +0x33,0xfe,0x6c,0xc1,0x85,0xca,0x81,0x3a,0x0e,0xea,0x18,0x27, +0x4b,0x33,0xeb,0x5d,0xf6,0xae,0x8d,0x8e,0xf5,0x1e,0x25,0x76, +0xee,0x7c,0xe9,0xde,0x06,0xfb,0x0a,0xe7,0x3d,0x41,0x3e,0xc1, +0x5e,0xc1,0x2e,0xad,0x2e,0x35,0xbb,0xcb,0x6c,0x76,0xf3,0x25, +0x7e,0xb5,0x0e,0xe5,0xce,0x26,0xfb,0x0d,0x02,0xb4,0x0e,0x72, +0xb5,0x38,0x1e,0x8e,0xc2,0xeb,0x43,0x78,0x4e,0x07,0xde,0xc2, +0xa3,0xf8,0xaa,0x2e,0xbc,0x8a,0x43,0xac,0xf5,0x41,0xcb,0x83, +0x16,0xc1,0x99,0x54,0x17,0xb9,0xaa,0x5f,0x9a,0xbe,0x69,0x8f, +0xea,0xe7,0x6d,0x02,0xac,0x03,0xac,0x02,0x15,0x0f,0x19,0xb0, +0x6c,0xba,0x5b,0x6f,0xe6,0x89,0xac,0x63,0x39,0x2a,0xae,0x66, +0xa6,0xa6,0x16,0xce,0x6d,0xf6,0x7c,0x53,0x4d,0x4b,0x5b,0x6d, +0x07,0xf7,0x05,0xf5,0x47,0xa5,0x86,0x50,0x8a,0x9b,0x51,0x1d, +0xde,0xd1,0xc6,0x90,0x93,0x27,0x84,0x05,0x26,0x27,0x21,0x44, +0x9b,0xa6,0x2e,0xea,0xb0,0x99,0x51,0x82,0xab,0xe9,0xe4,0xf1, +0x2c,0x58,0x7c,0xe4,0xf1,0xe3,0x47,0x8f,0x8e,0xc2,0xd2,0x59, +0x8f,0x6c,0x5a,0x8d,0x8a,0x0d,0x92,0x62,0x60,0x1d,0x7f,0xf8, +0xa6,0x24,0x8e,0x69,0xb1,0x80,0x97,0xde,0x6b,0x6f,0xc7,0x7d, +0xb0,0x0f,0x03,0x70,0x7f,0x87,0x25,0xb5,0x91,0xb1,0x4d,0xed, +0xb1,0x47,0x0e,0xaf,0x3b,0x82,0x6b,0x0d,0x23,0x8c,0x7c,0x6c, +0x6d,0x55,0x66,0xce,0x8a,0xc1,0x25,0x8f,0x67,0x72,0xdd,0xdd, +0x64,0xd3,0xb5,0x68,0xe0,0xae,0x5f,0xbb,0x76,0x0d,0xb8,0x23, +0xd7,0x36,0x5e,0xdb,0x14,0x83,0xdc,0xa6,0x4d,0xea,0xea,0xc8, +0xc5,0x6c,0xba,0xc6,0x29,0x09,0xd3,0xc6,0xda,0xfd,0x1a,0xd8, +0x4c,0xb3,0xef,0xeb,0x63,0x7f,0x0d,0x84,0x09,0xbf,0x05,0x32, +0x4a,0x82,0x2f,0x4e,0x20,0xcd,0xbf,0x06,0xda,0xd1,0x53,0x0d, +0x7a,0x0a,0x13,0x7e,0x0d,0xc4,0x09,0xcc,0x48,0x5f,0x98,0xd8, +0xcc,0xb6,0x2a,0x8f,0x1c,0x5a,0x94,0xff,0xfa,0x8a,0x0e,0x1c, +0x8b,0x13,0x60,0x22,0x4c,0xa0,0x2d,0x4f,0x4f,0x5a,0x94,0xff, +0x7d,0x0b,0xa5,0xfd,0xeb,0x58,0x82,0xaf,0x34,0xc3,0x2b,0xac, +0x1d,0x4d,0x4f,0xff,0xf3,0xd9,0xca,0xff,0xe2,0x2e,0xa5,0x3a, +0x32,0x1a,0x26,0xd0,0x0b,0x9c,0x30,0xd2,0xfe,0xaf,0xce,0x57, +0xfe,0xbb,0x3e,0x23,0x4b,0xbd,0xd7,0xcc,0xde,0x57,0x56,0xfc, +0xbd,0xa7,0xfc,0xaf,0xcf,0x47,0x17,0x79,0x8f,0xc2,0xbe,0xaf, +0x3c,0x7a,0xbc,0xa7,0xfc,0x5f,0x5f,0x8f,0x2e,0x6f,0x79,0xf3, +0xbd,0x11,0xd0,0x7f,0x3c,0xae,0xfc,0x97,0xed,0xa3,0x4b,0x5a, +0x0e,0x13,0xee,0x8d,0x02,0xfc,0xcf,0x67,0x2b,0xff,0xfa,0xee, +0x53,0x49,0x0a,0xbe,0x82,0x6f,0xb3,0x98,0xf3,0x4c,0xb0,0x82, +0x86,0xe0,0x0b,0x13,0x46,0xae,0x47,0xa5,0x4b,0xef,0x6b,0x34, +0x8b,0x83,0xcf,0xaf,0x35,0x04,0x0d,0xda,0x61,0xf0,0xf7,0x01, +0x39,0x62,0x8e,0x9d,0xe0,0xfb,0xfb,0xe5,0xa0,0x98,0x83,0x13, +0x46,0xae,0x9f,0xf6,0xcf,0x11,0x07,0xed,0x04,0x8d,0xe7,0xd7, +0x83,0xe2,0x20,0xed,0xa0,0x68,0x50,0x2c,0x57,0xcc,0x11,0x72, +0x9a,0x45,0x8a,0xe1,0xe9,0xf2,0xc5,0x41,0x21,0x87,0x4e,0x4f, +0x89,0x3e,0x5d,0x1d,0xed,0x30,0xd8,0x2c,0x6a,0x8c,0x74,0xd0, +0x18,0xed,0x30,0x48,0x3b,0x68,0x8c,0x74,0x18,0x19,0xe1,0x2b, +0xfa,0xda,0x09,0x74,0x9a,0x67,0xd7,0x1a,0x22,0x45,0x42,0x1b, +0x06,0x9f,0x8d,0xf0,0x15,0x35,0xec,0x84,0xc1,0x91,0x0e,0x1a, +0xa3,0x1d,0x28,0x14,0xda,0x30,0xf8,0x74,0xc4,0x6f,0x81,0x4f, +0xb9,0xf0,0x1c,0x86,0xa2,0x69,0x94,0x13,0x2f,0x22,0xa1,0x3d, +0x9e,0xf6,0xd4,0x78,0x0e,0xd8,0xd7,0x4e,0xcc,0x79,0xc6,0x26, +0xdf,0xdf,0x61,0xfe,0x16,0xf8,0xac,0xed,0x45,0xe8,0xf4,0xea, +0xd9,0xbc,0x2f,0x2c,0x40,0xc3,0x4e,0x1c,0xfc,0x9d,0xb1,0xcf, +0xe9,0x8d,0x4c,0x31,0xda,0xf8,0xe7,0xd5,0xd2,0x3f,0xd4,0x04, +0xff,0xb8,0x60,0xba,0xca,0xd1,0xb6,0xe7,0x6b,0xf6,0x1d,0xc1, +0xdb,0xfc,0x9c,0x35,0x23,0x83,0x69,0x77,0x85,0x58,0xec,0x9e, +0xe3,0x1a,0xe9,0x3c,0xd2,0xfc,0x7c,0x82,0x51,0x26,0xf9,0x8e, +0x00,0x6e,0xfe,0x9d,0x55,0x4f,0x69,0xd1,0x9b,0x0a,0x49,0xda, +0x3d,0xe7,0xcd,0x68,0xf7,0x91,0x76,0xc5,0x1c,0x20,0x8e,0x7d, +0x4a,0x9d,0xd2,0x57,0xb8,0x0d,0xea,0x41,0x46,0x27,0x1b,0x65, +0xf4,0x88,0xc6,0xfd,0xde,0xe9,0xa9,0xce,0xd9,0x89,0xbe,0x2f, +0x74,0x1c,0x69,0x1c,0x19,0x4a,0xbb,0x8d,0x62,0x56,0xf0,0xf3, +0xd9,0x64,0xa3,0x10,0x46,0x39,0x3c,0xa2,0x9f,0xcf,0xbb,0x3d, +0xd5,0x50,0x3b,0x51,0xe3,0xc5,0xae,0x23,0xad,0x4f,0xe7,0xa3, +0x4e,0x4d,0x21,0x2b,0x3b,0x05,0x43,0x46,0xfb,0xe4,0x34,0x3f, +0x55,0x00,0x3b,0xc5,0x12,0x9f,0x62,0xb3,0x7b,0xa6,0x8b,0xcf, +0x3b,0x2a,0xdc,0xe0,0x68,0xcb,0xb3,0x6e,0x8a,0xb9,0x34,0x14, +0xca,0xaf,0x60,0xe3,0xe8,0x64,0x83,0xcd,0x4f,0x05,0x4f,0x1b, +0x35,0x46,0x1a,0x15,0xd8,0xec,0x9e,0x29,0xee,0x0b,0x5d,0x47, +0xa6,0x1b,0x6d,0xfa,0xbd,0xe3,0xef,0x7c,0xfb,0x13,0xc4,0x17, +0xd8,0xf7,0x47,0x98,0xcf,0x59,0xf8,0x07,0xa8,0x2f,0xb0,0xf1, +0x8f,0x88,0x5f,0xa0,0xf0,0x22,0xf0,0x3f,0xb0,0xf9,0x45,0xda, +0x7f,0xbc,0xf1,0xa7,0xb5,0x3e,0xd5,0x90,0x7f,0xbd,0xe2,0x3f, +0xea,0xfb,0x8b,0xc3,0xfe,0x20,0x3e,0xbb,0x3f,0xa0,0x7b,0x51, +0x88,0xa3,0xb8,0xed,0xec,0xfe,0x48,0xed,0x85,0x09,0x35,0xfe, +0x85,0x90,0x5f,0x5c,0xed,0x9f,0x48,0xfd,0x09,0xe0,0x0b,0x94, +0xfe,0x25,0xbe,0x17,0x6f,0x8d,0x8c,0x12,0xa2,0x57,0x13,0x48, +0x04,0x5b,0xfa,0x49,0x84,0x44,0xa4,0x47,0x4c,0xa4,0x1f,0x5b, +0x1c,0x39,0xd2,0x2b,0xda,0x2e,0xab,0x1a,0x8b,0xc1,0xa8,0x0f, +0x7a,0x10,0x4a,0x3f,0x8a,0x63,0x30,0xfd,0xe8,0xa3,0x1e,0x4d, +0xc4,0x43,0x51,0x71,0x0c,0x96,0xc1,0x22,0xf0,0x21,0xad,0xef, +0x09,0xaf,0xad,0x64,0x91,0xc5,0xd7,0x6a,0xbc,0xfe,0x09,0x63, +0x24,0xf1,0xf8,0x15,0xbe,0x6e,0xa3,0x20,0x22,0xff,0x98,0xfc, +0x79,0xd6,0x3f,0x53,0x95,0xfd,0xf6,0xea,0xbf,0x27,0x53,0x2f, +0x48,0xc8,0xb1,0xe6,0xf6,0x8e,0x8b,0xaa,0xd7,0x2d,0x8e,0x2f, +0x5f,0x63,0x69,0xad,0x7b,0x40,0xda,0x11,0x20,0x69,0xcd,0x28, +0xab,0x3c,0xa1,0x76,0xac,0xca,0xc3,0x5a,0x16,0xc4,0xda,0xf9, +0xb9,0xd9,0xd8,0x4b,0x71,0x3a,0xbe,0x2b,0x31,0x83,0xaa,0x76, +0xf4,0x61,0xff,0x46,0x00,0xcd,0xc2,0x0e,0xd2,0x99,0x52,0x5b, +0x39,0xa8,0x7a,0xc1,0xb8,0x75,0xf5,0x0e,0x3b,0x4f,0x3b,0x1f, +0x69,0xed,0x6e,0x49,0x6d,0x7e,0x55,0x41,0x1b,0x05,0xe0,0x69, +0x27,0x0b,0x65,0x1d,0xdc,0xbd,0x8c,0xa4,0x66,0x56,0xc7,0x98, +0xc1,0x3a,0x4f,0x0b,0x59,0x18,0x6b,0xee,0xe2,0x6e,0x68,0xba, +0xbb,0xa0,0x71,0x8f,0xd4,0xc1,0x43,0x62,0x5d,0xd6,0xe6,0x71, +0x55,0xed,0xb3,0x81,0x63,0x37,0x07,0x5c,0x1a,0xf4,0x53,0x65, +0x7f,0x23,0xb6,0x6a,0xf9,0xeb,0x04,0x75,0xb0,0x49,0x62,0x09, +0x16,0x1f,0x1e,0xff,0xe2,0x4c,0xcb,0x2e,0x68,0x63,0x0d,0xf5, +0x49,0x3c,0x1d,0xb9,0xf0,0xef,0x13,0xf5,0x61,0x70,0x20,0x0f, +0x7b,0x06,0xee,0xde,0x35,0xe9,0xda,0x60,0xec,0xe3,0xe7,0xb6, +0x5f,0x16,0xc9,0xa4,0xc3,0x0a,0x09,0xe8,0x77,0xe2,0x01,0x26, +0x10,0x0f,0xb4,0x47,0x48,0x0a,0x72,0x0b,0xb3,0xda,0xd4,0xfa, +0x2a,0x5d,0x4c,0x28,0x3f,0x8c,0xdc,0x1d,0x75,0xcd,0xdd,0x0b, +0x1a,0x7d,0x15,0xeb,0xb7,0x2a,0x6b,0xf5,0xbc,0xa2,0xf6,0xf7, +0xe9,0x9d,0xc3,0xd8,0xcf,0xfb,0x07,0xee,0x7e,0x6c,0x74,0x7c, +0x93,0x81,0xbb,0x87,0xcb,0x01,0x59,0x54,0x4c,0xce,0x83,0xc1, +0x73,0x8f,0x2e,0xa9,0x6c,0x62,0x56,0x1a,0xad,0x9b,0x87,0x6f, +0xa9,0x2e,0xec,0xda,0xf9,0xad,0xb4,0x65,0xac,0xbe,0x6b,0x5d, +0xb7,0x2c,0x93,0xed,0xae,0xae,0x1d,0xe8,0xaf,0x71,0x31,0x96, +0x06,0xb2,0xc6,0xae,0x2e,0xfa,0xd2,0xbf,0x0d,0x89,0x3f,0xb8, +0x13,0x58,0x28,0x8c,0x93,0x74,0x62,0x35,0xbe,0xd3,0xf1,0x05, +0xec,0x60,0x71,0xb1,0x38,0x41,0xf2,0x37,0x0a,0xf8,0x24,0x55, +0xbe,0xb6,0xb4,0xaa,0x9a,0x1e,0xd5,0xf3,0x26,0x6d,0xcb,0x97, +0x9b,0x58,0xed,0x34,0xaa,0x72,0x6d,0x0b,0x91,0x46,0xb2,0x86, +0x21,0x2e,0x0e,0xba,0xaa,0x9b,0xfb,0xcd,0xbe,0xfc,0xb2,0xbf, +0xeb,0xca,0xa0,0x4b,0xa3,0x61,0x9a,0x14,0xa7,0x3c,0x22,0xad, +0xd5,0x65,0xdd,0xdd,0xd5,0x5e,0x36,0xd2,0x60,0xd6,0xc6,0xcd, +0xdb,0xd8,0xd8,0xad,0xb4,0x55,0x0a,0x1b,0xd1,0x98,0x58,0xba, +0x78,0xe8,0xea,0xba,0x54,0x74,0x48,0x33,0xd9,0x0e,0xaa,0xcd, +0x83,0xb5,0xbb,0x2d,0xff,0x3e,0x56,0x04,0x52,0x56,0xdc,0xed, +0xb9,0xf9,0x35,0xbc,0xa9,0xfa,0xc0,0xfc,0xc2,0xec,0xc5,0xfa, +0x7a,0xcb,0x57,0xf7,0x98,0x5e,0x3f,0x51,0x5d,0xdc,0x94,0x27, +0x8d,0x3b,0x1c,0xb0,0x50,0x77,0xe7,0xac,0xed,0x2a,0x9f,0x83, +0x19,0xd1,0x77,0xad,0xed,0x96,0x65,0xb1,0xdd,0x35,0x75,0xfd, +0x7d,0x35,0xce,0x0a,0xa1,0x98,0xb8,0x39,0xff,0x8d,0x42,0x81, +0xed,0xe0,0x46,0x1e,0x9d,0xb8,0x0a,0xd3,0x61,0xba,0xc9,0xb5, +0x59,0xb3,0x4c,0x36,0x51,0xbf,0x30,0xfd,0x84,0xfa,0x23,0x19, +0x5a,0x25,0xfd,0x95,0xbf,0x12,0xf6,0x37,0x90,0x6d,0xde,0x7d, +0x0f,0x64,0x27,0xd9,0x07,0xe5,0x7d,0xe7,0xcf,0x97,0x1b,0x2c, +0x92,0x6a,0xb3,0x8b,0xbc,0x0d,0xb6,0xfd,0x7d,0xc0,0xf6,0x52, +0x16,0xfd,0x05,0x79,0xb9,0xb2,0xf2,0xff,0xbe,0x23,0x05,0xf7, +0xff,0x91,0x27,0xc5,0xb3,0xc2,0x78,0xf2,0x67,0x5c,0x50,0xa7, +0xc0,0xfb,0xb7,0xa2,0xf3,0xfa,0xbb,0xdd,0xac,0xb8,0x51,0xb1, +0xfb,0xc4,0x5f,0x02,0xff,0x5f,0x17,0xaa,0x70,0x43,0x79,0xd4, +0x21,0x6b,0xb2,0xbf,0xbb,0x68,0x36,0x4a,0x78,0x69,0xc4,0x39, +0x7f,0xf8,0xff,0x0f,0x04,0xbf,0x43,0xbf,0xfb,0x6d,0x33,0xef, +0xfd,0xce,0xfb,0x64,0x51,0x4c,0xda,0xff,0x2b,0xbf,0xfd,0x5f, +0xe1,0xdc,0x7f,0x88,0x3c,0xf3,0xe9,0x46,0x6e,0xde,0x8e,0xfb, +0x65,0xd1,0x31,0x39,0x0f,0x07,0xcf,0xfe,0x3f,0xf0,0xe9,0xff, +0x15,0x4a,0x07,0xe5,0xbf,0xf0,0xf6,0x7f,0x93,0xe7,0xda,0x46, +0xc3,0xec,0xa8,0x33,0x6f,0x30,0x4c,0x97,0xc5,0xb3,0x6d,0xe9, +0x7f,0x76,0xfc,0xc1,0xd2,0x28,0xd6,0x30,0xd8,0xc5,0x71,0xd4, +0xf1,0x4b,0xd1,0xf2,0xaf,0x3d,0x9a,0x3f,0x84,0x10,0x85,0xf3, +0x97,0xa5,0xb3,0x7f,0x0a,0x09,0x74,0xd8,0x58,0x45,0x20,0x90, +0xbd,0x10,0x08,0x0e,0xb2,0x8a,0xf0,0xf0,0x37,0x7a,0xe1,0x15, +0xff,0xad,0x80,0x80,0xac,0xf2,0x5f,0xe3,0xff,0xaf,0x62,0xc5, +0xdf,0xe5,0x76,0x70,0xda,0xff,0xc8,0x29,0xd2,0xac,0x7a,0x22, +0x79,0x1e,0x5a,0x9e,0x87,0x1b,0xd9,0xd7,0x78,0x84,0x28,0xe2, +0x86,0x22,0x9a,0x48,0x5f,0x88,0x26,0x4a,0x72,0x7d,0xe5,0x2b, +0xb8,0x54,0x78,0x08,0x4b,0xaf,0x88,0x73,0x36,0xc3,0x52,0xf1, +0x21,0x2e,0xdd,0x4c,0xab,0xcc,0xa9,0xca,0x70,0xec,0xca,0x14, +0xe1,0xe1,0x93,0x2b,0x78,0x6c,0xf3,0x13,0xf1,0xe1,0x14,0x46, +0x58,0xbe,0x99,0xfc,0xb9,0x4d,0xa9,0x5c,0x19,0x5a,0xaf,0x4c, +0x17,0x1e,0xfe,0x74,0x05,0x5b,0x37,0xff,0x2c,0x3e,0x9c,0xc6, +0xc0,0xc7,0xb4,0x5b,0xdb,0x95,0x69,0xc2,0xc3,0x9f,0xaf,0x60, +0xdb,0xd3,0xb6,0x4f,0x68,0x5b,0xeb,0xd3,0xb6,0xd6,0xcd,0x3f, +0x89,0x0f,0xa7,0xd3,0x5a,0xe0,0x5b,0xe5,0xcb,0x53,0x84,0x2f, +0x9f,0x4e,0xf6,0xe5,0x94,0x2d,0xac,0x7c,0x93,0x32,0x1c,0x95, +0x7b,0x4b,0x16,0x30,0xa8,0x24,0x32,0xcb,0xb1,0x5c,0x12,0xc9, +0xac,0x84,0x72,0x7c,0x4d,0x60,0x24,0x73,0x19,0x88,0x1a,0xf6, +0xa6,0x5a,0xdd,0xa5,0x0c,0xa9,0xb4,0xcf,0x12,0x06,0x3d,0x86, +0xdf,0xa5,0x1d,0x70,0xb7,0xfc,0x5d,0xc9,0x42,0x06,0x52,0x47, +0xee,0xbe,0xf2,0x6f,0x67,0x90,0x6f,0xfb,0x33,0x59,0x25,0x28, +0x51,0x86,0xcd,0x74,0xd4,0x6a,0x66,0x89,0xc8,0x98,0xe2,0x61, +0x49,0x14,0x63,0x0a,0x87,0x97,0xd0,0x31,0xab,0x19,0xd8,0x48, +0xc7,0x08,0x11,0xca,0x17,0xd7,0x09,0xdf,0xdd,0xba,0x88,0x01, +0xdb,0x6e,0x89,0xdf,0xad,0xdb,0xc6,0x0a,0x71,0x7f,0x6e,0x51, +0x02,0x2b,0x65,0x50,0xa2,0xb3,0x6c,0x62,0x74,0x44,0x66,0x0f, +0xba,0x49,0xa2,0x19,0x1f,0x70,0xd3,0xa5,0xb3,0x6c,0x64,0x60, +0x82,0x62,0x16,0x99,0xf2,0x69,0x3d,0x01,0x06,0x4e,0xa3,0xa6, +0xe6,0x80,0xa8,0x78,0x95,0xb2,0x30,0xf7,0xdf,0xb7,0x28,0xf8, +0xf4,0x07,0xa6,0x6f,0x56,0xbc,0x46,0x92,0xea,0xcd,0x69,0x49, +0x2c,0x43,0xd5,0xe6,0xb4,0xe4,0x47,0x06,0x23,0x84,0x09,0x54, +0x87,0xe4,0x92,0xd9,0x0c,0x6a,0x63,0x87,0xe4,0x30,0x83,0x3b, +0xa1,0x43,0x32,0x83,0x81,0x83,0x28,0xe2,0x21,0x71,0x9c,0x44, +0x09,0x3a,0x95,0xc1,0x1a,0x4e,0x29,0xc6,0x58,0xe1,0x29,0xc5, +0x98,0x24,0x3a,0x26,0x76,0x74,0x8c,0x39,0xb6,0x2b,0xc6,0xe8, +0x43,0xbb,0x62,0x4c,0x34,0x1d,0x93,0xa4,0x18,0x23,0xd8,0xcb, +0x1b,0xc8,0xf4,0x3c,0xe4,0x32,0x70,0x4a,0x72,0x84,0x21,0x0f, +0x33,0x0e,0x01,0x7b,0xf0,0xbb,0x7d,0x9c,0x17,0x8e,0x23,0x53, +0xf2,0xe7,0x66,0xe0,0xeb,0xc9,0x11,0x46,0x3c,0x8c,0x0f,0xff, +0x29,0xf8,0x91,0x1f,0x77,0x12,0xa7,0x12,0x1c,0x53,0x82,0x8b, +0x0b,0x70,0x7e,0x6a,0x38,0xed,0x3e,0x3b,0x0c,0x96,0xee,0x85, +0x31,0x3e,0x1c,0xe8,0x88,0xd6,0x04,0xb6,0xb5,0x5d,0xf9,0x18, +0xe6,0xa8,0x82,0xb5,0x2e,0xda,0xb0,0x38,0x51,0x4f,0x07,0x17, +0x3a,0x49,0x03,0xe0,0x5d,0x02,0xf5,0xba,0x58,0x4f,0x6b,0xa3, +0x02,0xe1,0x36,0x41,0x17,0xbf,0x60,0x18,0x03,0x86,0xf9,0x91, +0xdd,0x68,0xe8,0x1f,0x04,0x4a,0xfa,0x51,0x19,0xf8,0x06,0x1a, +0xf9,0x27,0x18,0x82,0x51,0x7e,0x1a,0x8e,0x41,0x27,0xbf,0x78, +0x23,0x70,0x29,0xcc,0xc1,0x55,0xfd,0x49,0x01,0xd4,0xa0,0x9d, +0x0b,0x25,0x81,0xe2,0xe7,0x64,0xa0,0x1b,0xce,0x1a,0x0f,0x0a, +0xeb,0xc5,0x55,0xcc,0x00,0xde,0x21,0x50,0x06,0x67,0xb1,0x8c, +0x55,0xec,0xf7,0xe7,0x4b,0x5c,0x82,0xd2,0x6b,0x65,0x8a,0xc7, +0xb5,0xcd,0xaa,0xbd,0xad,0x6d,0x1c,0x34,0x5d,0x54,0x2a,0xad, +0x6f,0x1f,0xeb,0xe9,0xad,0xb8,0xa6,0x72,0xa8,0x15,0xe3,0xed, +0x24,0x30,0xce,0x10,0x27,0xb2,0xf8,0xaa,0x7f,0xa2,0x19,0x48, +0x72,0x25,0x28,0x63,0xb7,0x57,0x78,0x5e,0x95,0x82,0xe6,0x71, +0x06,0xae,0x42,0x14,0x31,0xae,0xdb,0x59,0xa7,0x57,0xe6,0x61, +0xc1,0x0f,0x79,0x9f,0x72,0xed,0x71,0xe6,0x60,0xf3,0x6d,0xb2, +0x13,0x97,0x7f,0xb0,0x06,0xd7,0x7b,0x1e,0x8e,0xe6,0x33,0x4d, +0x63,0x8f,0x80,0x66,0x0d,0xb0,0xdf,0x5c,0x84,0x0d,0x2a,0xe2, +0x16,0xd1,0x86,0x0c,0x25,0xf5,0xa4,0xb4,0xa4,0xed,0xef,0xe4, +0x57,0xee,0xc5,0x57,0x82,0x70,0x76,0x54,0x9c,0x19,0xdf,0x1f, +0xdb,0x13,0xd7,0x15,0xcf,0x2d,0x45,0x7d,0x33,0xd0,0x8f,0x62, +0x97,0xba,0x5a,0x2c,0x73,0x95,0x96,0x59,0x4a,0x1e,0xb5,0xb4, +0x9d,0xfd,0x45,0x35,0x01,0xb6,0x77,0xe1,0x76,0x8a,0x78,0x88, +0xb2,0xa1,0xd9,0xbd,0xd1,0xad,0xda,0x83,0x8b,0x67,0xaa,0x9a, +0x25,0xb1,0xac,0x5b,0x85,0x5d,0x8d,0x75,0x75,0x5d,0x5f,0xf9, +0xf9,0xe2,0xdb,0xc6,0xb9,0xfc,0x5e,0x75,0x1f,0x2d,0x77,0x23, +0xb3,0x3a,0xb3,0x6a,0x9b,0xd2,0x88,0x23,0xbc,0xa7,0x43,0x6c, +0x74,0xcb,0x9e,0x13,0x2e,0xc7,0x9d,0x54,0x4c,0xb6,0xef,0x34, +0x5f,0xe2,0x56,0x66,0xc6,0x3f,0xa8,0xbb,0xd2,0x33,0x70,0x83, +0x83,0x88,0xbb,0xc4,0x48,0x90,0xf6,0xb0,0xc3,0xd9,0x78,0x91, +0x88,0xab,0xfa,0xc0,0x9f,0xbd,0xe8,0x7b,0xcb,0xe5,0x86,0x5d, +0x51,0x27,0xbf,0xb6,0x79,0x49,0xe3,0xda,0x32,0x0e,0x26,0xb3, +0x72,0x6d,0xdc,0x41,0x7c,0x56,0xd8,0x6a,0xe9,0xbb,0x70,0xf0, +0xd8,0x84,0x3d,0x22,0xce,0x91,0xb4,0x30,0xf7,0x6a,0x4f,0xdf, +0xaa,0x7e,0xc2,0xe1,0xb7,0xc5,0x04,0x5f,0x72,0x37,0xd9,0x68, +0x2a,0xad,0xb1,0x91,0xdc,0x1d,0x6a,0x39,0x07,0x44,0xf5,0x30, +0x2c,0x97,0x98,0xd0,0x64,0x21,0x4b,0x1e,0x4f,0x82,0xca,0xf7, +0x35,0x05,0x94,0xbb,0x04,0xf3,0xb9,0x5e,0x79,0x0e,0x19,0x2e, +0x9c,0xef,0x21,0x12,0x54,0xe9,0xdf,0x38,0xd2,0x94,0xb6,0x3f, +0xcd,0x2f,0xd5,0x8f,0xc3,0x4d,0x4c,0x7a,0x7e,0x4a,0x5e,0x62, +0xae,0x71,0x26,0xef,0xb6,0xd6,0x78,0xc7,0x1a,0xad,0x7a,0x3b, +0xfe,0x58,0x53,0x7d,0x43,0xfd,0x31,0x0e,0x36,0x30,0xfb,0xf0, +0xad,0xb9,0x73,0x70,0x81,0x45,0x91,0x39,0x0f,0x9b,0x7b,0xfe, +0x09,0xe3,0xb2,0x61,0x11,0x07,0x0b,0x3e,0x25,0x66,0x30,0xd8, +0xc5,0xe2,0xcf,0x8a,0xc7,0x97,0xee,0x32,0x7b,0xe7,0x6c,0xd0, +0x41,0x7e,0x77,0x9e,0x19,0x0f,0xef,0x57,0x7d,0x7d,0x3f,0x0f, +0xc6,0x73,0xb1,0x59,0x31,0xd9,0x39,0xaa,0xe2,0xdb,0x47,0x24, +0xd1,0x62,0x16,0x29,0xb2,0x2f,0xb6,0x28,0x36,0xd9,0x1a,0xb6, +0xfa,0xd0,0xfa,0x88,0xe6,0x07,0x0d,0x8f,0x1b,0xe0,0x2d,0x4a, +0xcf,0x11,0x27,0xda,0xe1,0x2b,0x16,0xb3,0x8c,0xa3,0xf9,0x38, +0x13,0x18,0x93,0x0c,0x2a,0x69,0xf0,0x72,0x96,0x4a,0xca,0xfe, +0x94,0x7d,0xc9,0xfe,0xc7,0x8b,0x79,0xc7,0x4f,0xcd,0xbf,0x70, +0x3e,0xcb,0x29,0x09,0x51,0x42,0x0f,0x59,0x78,0x6c,0x7a,0xfb, +0xc2,0x2a,0x0e,0x56,0xea,0x88,0x61,0x43,0x50,0xc8,0x7e,0xec, +0xf5,0xd0,0xfe,0x33,0x33,0x0e,0x42,0x30,0x8a,0x68,0x35,0x6d, +0x6c,0xd9,0x56,0xe5,0x69,0xc2,0x5f,0xd8,0x7d,0xd9,0xfe,0x94, +0x2d,0x07,0x4e,0x9f,0x93,0xb5,0xd4,0x61,0x8f,0x59,0x80,0x8e, +0x4e,0x8a,0xb7,0x98,0x7b,0x34,0xc1,0x24,0x78,0xe9,0x0e,0x58, +0x70,0x4a,0x37,0xe5,0x51,0x04,0x7e,0x60,0xf6,0x98,0x59,0xd9, +0x68,0xb8,0x57,0xda,0xf0,0x77,0x9a,0xfa,0x4f,0x16,0x5f,0x3b, +0xdc,0xca,0x8b,0x53,0x19,0x58,0x40,0xb9,0xbd,0xd2,0xc1,0x6a, +0x96,0xad,0xb4,0xd8,0x5c,0x02,0x6c,0x67,0xf7,0xd9,0x9f,0x54, +0x1f,0x1a,0xb2,0x70,0x69,0x26,0xa1,0xb2,0x12,0xa5,0x4c,0x11, +0xde,0x22,0xc6,0xe2,0xec,0x56,0xe6,0x6e,0xcd,0x99,0xdb,0x55, +0x4f,0x2c,0x0b,0x79,0x9f,0x65,0x54,0x38,0xae,0x94,0x8f,0xf0, +0x03,0x41,0x1a,0x97,0x5e,0x76,0x37,0x1d,0x91,0x07,0x15,0xc7, +0xd9,0x23,0x40,0x54,0x60,0x85,0xe2,0x39,0x4e,0xb9,0x1b,0xf1, +0x43,0xe5,0x39,0x94,0x95,0x96,0x05,0x94,0x4b,0x06,0x83,0xf0, +0x0a,0x28,0xc7,0xc2,0x56,0x0e,0x9d,0x99,0x94,0x5c,0x2a,0x81, +0x42,0xd3,0x0c,0xde,0x75,0x95,0xc1,0x96,0x75,0xba,0x75,0xf6, +0xfc,0x89,0xe6,0xfa,0xfa,0xfa,0x2e,0x4e,0x4c,0x0c,0x22,0x19, +0xa9,0x89,0x09,0x89,0x6a,0xf1,0xc9,0x91,0xc1,0xe9,0xb2,0x53, +0x5b,0x1e,0xcc,0xbe,0xbd,0xba,0xa6,0x8d,0x5f,0x7b,0x7b,0xfe, +0x63,0xad,0x8b,0x5c,0xde,0xfe,0x80,0x54,0x3f,0x35,0xdf,0xfd, +0x21,0xbe,0xfb,0x65,0xbb,0xed,0xcc,0x34,0xad,0xcc,0x1a,0xac, +0xf9,0x13,0xfd,0xed,0x27,0x2b,0x9b,0x38,0x17,0x7c,0x4c,0xbc, +0x57,0x98,0x6e,0xda,0x65,0x5c,0x6d,0xcb,0xb7,0xb6,0xd6,0x36, +0x94,0x77,0x71,0x30,0x9b,0x89,0x30,0x0c,0x30,0xf7,0xb1,0x73, +0xaf,0x70,0xaa,0x72,0x2a,0xf7,0x74,0xe0,0x6b,0x7c,0x1a,0xdd, +0xaa,0xdc,0x1d,0xac,0x8d,0xdd,0x76,0xfa,0x15,0x58,0xf2,0xb0, +0x72,0xe0,0xab,0xa7,0xb0,0xb6,0x30,0x29,0x54,0x2d,0x92,0xf2, +0x39,0xb9,0x15,0x6a,0x90,0x7d,0x2b,0x5c,0x74,0xcd,0xa9,0x71, +0x7d,0x65,0x26,0xce,0x6a,0x60,0xaf,0x55,0xf7,0x7f,0x54,0xfa, +0x0b,0x87,0xbd,0x54,0xfd,0x5e,0xf6,0x34,0xdd,0x69,0x2a,0xad, +0xb4,0x96,0x5c,0x1f,0x6a,0x38,0x07,0xca,0xaa,0xb0,0xd8,0x8c, +0xc5,0x2a,0x7c,0x9f,0x2a,0x88,0x5d,0x17,0xf5,0x1c,0xef,0xcb, +0x2f,0x11,0x03,0xdc,0xc9,0xe0,0x18,0x53,0x63,0x94,0xba,0x4b, +0x73,0x8d,0x25,0xf0,0x61,0xe3,0xb9,0x2b,0x30,0x49,0x15,0x93, +0xd6,0x12,0x48,0x31,0xc4,0x14,0x56,0x3e,0xb9,0x99,0x84,0x76, +0x05,0xf6,0xee,0x1f,0x30,0x0d,0xe1,0x73,0x8c,0x73,0xf4,0x52, +0x8c,0xb9,0x35,0x68,0x45,0x60,0xed,0x95,0xfb,0xdf,0xe5,0xc3, +0x36,0xe3,0x44,0xde,0x1f,0x57,0x6f,0xdd,0x80,0x4b,0x77,0x70, +0x4d,0x30,0x8d,0x1c,0xec,0x09,0xe8,0xf3,0xeb,0x35,0x3d,0xc8, +0x17,0x18,0xe6,0x1a,0x64,0x18,0x72,0xe2,0x2a,0xf4,0xfc,0xef, +0xda,0x90,0xb1,0x38,0xa7,0x85,0xfd,0xaf,0x0c,0x08,0x96,0x1b, +0xb1,0x4a,0xd7,0xe5,0x2f,0x91,0x5e,0x78,0x07,0xf2,0x99,0x50, +0x5c,0xb0,0x63,0x15,0xbe,0x6f,0x56,0x60,0xc1,0xc7,0x1d,0x91, +0xc0,0xf6,0xc1,0xeb,0x54,0x74,0xce,0xaa,0xe2,0x78,0x46,0xbe, +0x06,0xf5,0x47,0x60,0xfb,0x2b,0x60,0xe7,0x8e,0xc2,0xa6,0x61, +0xfd,0x7d,0x32,0x0a,0x76,0xd9,0x8e,0x32,0xca,0xd2,0xd5,0x97, +0x3f,0xfd,0xbe,0x00,0xb6,0x71,0x98,0x85,0x0b,0x49,0x50,0xdf, +0xfe,0xbe,0x7d,0xdd,0xcf,0x81,0xe3,0x73,0xe0,0x97,0xf6,0xdc, +0x74,0xfd,0x13,0x70,0x25,0x70,0x93,0xdf,0x27,0xb3,0x71,0x96, +0x39,0xcc,0x60,0xc3,0x91,0x31,0xdb,0x3c,0x53,0xbf,0x8a,0x4e, +0xc9,0x9c,0xef,0xff,0x2c,0x05,0x54,0x38,0x98,0x74,0x80,0xd9, +0x15,0xbd,0xfd,0x90,0xad,0xd4,0x3d,0x32,0x24,0xcc,0x41,0x4d, +0x9d,0x49,0x36,0x95,0x5c,0x62,0xce,0x95,0x16,0xf4,0xa7,0xc8, +0x92,0x5a,0xe3,0x3f,0xbe,0xa4,0xda,0x8f,0x9a,0xdf,0xb1,0x82, +0x28,0x4e,0x20,0x56,0xbd,0xc2,0x38,0x51,0x22,0x8e,0xeb,0x6d, +0x67,0x21,0x1b,0x6a,0x09,0x1e,0xc4,0x6c,0x38,0xc8,0x62,0x06, +0xf5,0xd0,0x47,0xf0,0x25,0x2a,0x1d,0x35,0xf7,0x1c,0x13,0x1e, +0x16,0xd5,0x9f,0xbb,0x4c,0x85,0x73,0x18,0xb6,0x4a,0x8c,0x18, +0x34,0x56,0xbc,0x72,0x2c,0xde,0x00,0xe3,0x59,0x61,0x67,0x2b, +0x11,0xde,0xed,0x11,0xdf,0xa5,0xbe,0x25,0x55,0xee,0x44,0x0e, +0xd4,0xed,0xed,0xd8,0x53,0x63,0x7b,0x80,0xcf,0xf7,0x28,0xb2, +0xcd,0xb7,0xe0,0x1a,0x70,0x19,0x59,0xd4,0x39,0xb3,0x7d,0x41, +0x35,0x07,0xcb,0x75,0x15,0x1b,0x4b,0xe7,0xb3,0x1f,0x7b,0x3e, +0xb0,0xff,0xcc,0x82,0xb3,0x06,0x73,0x72,0xb0,0xde,0xa7,0x73, +0xaf,0xa2,0x7b,0x81,0x6b,0x89,0x75,0xb6,0x2d,0x27,0xc4,0x88, +0xae,0xc4,0x65,0x8a,0xa9,0xc6,0x2e,0x27,0x4e,0x98,0x66,0x20, +0xda,0x77,0xb0,0xdf,0x35,0x5d,0xfe,0xac,0x06,0xc6,0x72,0x49, +0xac,0xa8,0xa6,0x78,0xb6,0x50,0x87,0xc5,0x37,0x9c,0xb4,0x97, +0xea,0x4a,0x1b,0x2c,0xbf,0xbe,0xd8,0x79,0xed,0x08,0xcc,0x54, +0x01,0xed,0xdf,0xe3,0x46,0x5a,0xdd,0x48,0xdc,0x30,0xad,0xf6, +0xb6,0xb1,0x75,0xd0,0x72,0x56,0x39,0xcc,0x56,0xd8,0x7d,0xdc, +0xd5,0xdd,0x5f,0x76,0xe9,0xbf,0x15,0x39,0xa2,0x89,0x71,0xed, +0xce,0x3a,0xdd,0x32,0x4f,0x45,0xe4,0x38,0xed,0xda,0xed,0x44, +0x23,0xc7,0x47,0x64,0x17,0x2e,0x9e,0xbf,0x0a,0x77,0xb8,0xe5, +0x18,0xf3,0xa0,0xd3,0x00,0x63,0x1f,0x5e,0x82,0xf5,0x9c,0x98, +0x2e,0x2a,0xff,0x59,0xbb,0xd6,0xb4,0x2c,0x69,0x5c,0x57,0x3a, +0x22,0x24,0x41,0x43,0x6e,0x4f,0x9a,0xca,0x8a,0xea,0x64,0xa9, +0x6c,0xad,0x67,0x91,0x83,0x83,0xd7,0x1e,0x57,0x69,0x28,0xeb, +0x54,0xba,0xb7,0x49,0xea,0x7e,0x9e,0xe4,0xa6,0xa5,0xe5,0xe7, +0xa7,0x87,0xec,0x97,0x46,0xb0,0xfb,0x83,0x43,0xf6,0xed,0x0b, +0x49,0xcb,0x95,0xa2,0x7d,0x01,0x31,0x4e,0x08,0xc1,0x45,0x6e, +0xb3,0xd7,0x7f,0xa0,0xd2,0xee,0x7c,0xfb,0x71,0x13,0x8c,0x4f, +0x85,0xa5,0x8a,0xe7,0x02,0x7f,0x20,0x9b,0xbe,0x75,0x79,0x14, +0x04,0x0b,0x0c,0xa3,0xf8,0x74,0x5c,0xde,0x84,0xec,0xad,0x99, +0x1c,0x4c,0x84,0x88,0xd1,0x70,0x51,0x29,0xf6,0x11,0xbd,0xa6, +0x1d,0x0d,0x9a,0x54,0x43,0xa6,0x9a,0x89,0x2b,0xba,0xc0,0x8f, +0xed,0xf6,0x1d,0x72,0x1d,0xb0,0xe3,0x86,0x9d,0xa3,0xc8,0xd9, +0xce,0xe6,0x9e,0x92,0xab,0x11,0xad,0x3c,0x5a,0x5a,0x49,0xe0, +0x55,0x73,0x54,0x66,0xb7,0x04,0xc6,0x5b,0x9e,0xcf,0x94,0xa0, +0x1a,0xbb,0xb3,0xcc,0xe3,0x94,0x14,0x66,0x76,0xe2,0x4c,0xc6, +0x23,0x24,0x83,0xc6,0xdd,0xe9,0x2c,0xcc,0xaf,0xd9,0x6b,0xe5, +0xe1,0x6c,0xe5,0xaa,0x02,0x9f,0xd0,0x78,0xef,0x58,0x6d,0x5a, +0x6f,0x56,0xe9,0x67,0xce,0xb7,0x7b,0x1f,0x73,0x69,0x71,0xe2, +0x70,0x2c,0xc6,0x12,0x98,0x59,0xf7,0xf0,0xdb,0x1e,0xd8,0x68, +0x5d,0xc8,0x1b,0xe1,0xf2,0x75,0x2b,0xa9,0xa7,0xe7,0x94,0x7e, +0x9d,0x24,0xbf,0x46,0x0d,0x7b,0x1b,0xf3,0x54,0x75,0xa4,0x39, +0x26,0x12,0x58,0x58,0x4f,0x0d,0x5b,0x4d,0x55,0x74,0x86,0x29, +0x64,0x7e,0xee,0x8c,0x34,0x7c,0x33,0xe9,0x90,0x29,0x0f,0x24, +0xe2,0xe7,0xe0,0xfb,0xfb,0x39,0xd8,0x74,0x97,0x60,0x7c,0x2f, +0xc4,0xb3,0x18,0x47,0x2d,0x72,0x4e,0xde,0xf2,0xb4,0xf7,0x12, +0xc3,0xcd,0xf8,0x27,0x87,0xbe,0x0c,0xfd,0xc2,0x9f,0xeb,0xc1, +0x09,0xe4,0x83,0x42,0x9c,0x9c,0x87,0x93,0x52,0xc2,0xa9,0x22, +0xf2,0xe1,0x30,0xdd,0xff,0xdb,0xbd,0x9c,0xfa,0x36,0x92,0xe7, +0x91,0xef,0x98,0xe1,0x5a,0x9d,0xcd,0x07,0x55,0xf9,0xb5,0xf8, +0x57,0x70,0xab,0xec,0x49,0x81,0x5b,0x9e,0x53,0x9a,0x5b,0x4d, +0x36,0x1f,0x5c,0x11,0x50,0xb7,0xb7,0x8e,0x13,0x2e,0xa3,0x16, +0xf1,0x5f,0xe1,0xac,0x6d,0x46,0x8d,0xfc,0x17,0x73,0xf1,0xc3, +0x06,0xf6,0x7a,0x4d,0xff,0x47,0x25,0x3f,0x73,0xd8,0x53,0x42, +0x93,0x1f,0x8f,0x3f,0xb9,0xa9,0xf5,0xe6,0xac,0xf8,0x9d,0x38, +0x9b,0x5c,0xf8,0xb1,0x0a,0xc6,0xa6,0xc3,0x46,0xd3,0x78,0x3e, +0x0c,0x67,0x7b,0xe1,0xcb,0x3b,0xde,0xe7,0x60,0x1f,0xfc,0x83, +0xa4,0xe2,0xca,0x6a,0xe4,0x2e,0x4e,0x6d,0xae,0xe1,0x35,0x1e, +0x7b,0xc2,0x98,0x50,0x98,0xc5,0x7d,0x87,0xd3,0x9f,0xf9,0xb5, +0xd9,0xd4,0xa3,0x37,0x96,0x15,0x57,0xd2,0x9a,0xa8,0xda,0xb3, +0xc8,0xd1,0xd1,0xd3,0xd7,0x8d,0xd6,0x44,0xbb,0xcb,0xf6,0x34, +0x4a,0x2b,0xc7,0x52,0x21,0x67,0xcb,0x52,0xd8,0x6c,0x85,0xe8, +0xd3,0x42,0x0e,0x48,0xc3,0xd8,0x03,0x21,0x21,0xfb,0xa4,0xf8, +0x25,0x5a,0x13,0xea,0x9f,0x87,0x6a,0xda,0xb8,0xd4,0xe4,0xc4, +0x84,0x04,0xb5,0x84,0xc4,0xa8,0xb0,0x14,0xd9,0xf9,0x0d,0x5f, +0xcc,0xbe,0xbd,0x86,0xfa,0xf5,0xad,0x17,0xb7,0xdd,0xd8,0x75, +0x31,0x24,0x3d,0x24,0x35,0x34,0xe3,0xa9,0x77,0xdf,0x13,0x30, +0xe2,0xdd,0xed,0x2d,0xb4,0x2c,0x4c,0xb8,0x5f,0xdf,0xa3,0xa9, +0x82,0x94,0xea,0x01,0x83,0x3e,0x78,0x97,0x1c,0xac,0xf0,0xab, +0xf7,0x2b,0x77,0x3d,0xc0,0xe7,0xf9,0x14,0x38,0x67,0xbb,0x70, +0x3e,0xa1,0x23,0x4d,0xfe,0x15,0x2e,0xb4,0xc9,0xbb,0xc0,0x29, +0xd3,0x8d,0xc3,0x57,0xab,0x88,0x79,0x89,0x66,0xa9,0x76,0xde, +0x3e,0x4b,0xfe,0xf8,0x81,0x53,0x3e,0xfd,0x1e,0x1c,0xac,0x2e, +0x26,0x9b,0x70,0xcd,0xe4,0x15,0xb8,0xd1,0x2f,0x8f,0x26,0x89, +0xda,0x65,0x30,0xee,0x9b,0xdb,0xb0,0x85,0xc3,0x83,0x6b,0x88, +0x71,0xe9,0x8e,0x12,0xfd,0x6c,0x7f,0x73,0xbe,0x3b,0xf0,0x9c, +0x4f,0x8f,0x17,0xa7,0x04,0xaa,0xca,0xc2,0x3b,0x6c,0x57,0x4e, +0x47,0x5d,0x4d,0xaa,0x8b,0x86,0x54,0x7c,0xeb,0xa2,0x20,0x65, +0x07,0x73,0x2b,0xaa,0x2b,0x33,0xfd,0xd7,0xd0,0xcb,0x4b,0xc2, +0x24,0x16,0xc6,0xba,0x75,0xe9,0x99,0x7a,0x39,0xec,0x0a,0x97, +0x1e,0x66,0x2e,0x1c,0x72,0xab,0xb5,0x53,0xb3,0xf7,0x75,0x30, +0x08,0x95,0x45,0xdd,0xd5,0x10,0x9b,0x18,0xa1,0xe5,0xff,0xf3, +0x14,0x4a,0x10,0x14,0x44,0x6e,0xf5,0x9c,0xb8,0x5d,0x2a,0x33, +0xab,0x96,0x68,0xfa,0x39,0xb9,0x99,0xaa,0xa9,0xbb,0x7e,0xf4, +0x83,0xec,0x63,0xf6,0x87,0x9a,0x8f,0xae,0x76,0x55,0xb9,0xe9, +0x65,0x49,0xfb,0x2a,0x24,0x37,0xf6,0x58,0x74,0xaf,0x51,0x43, +0x66,0xf3,0x2c,0xdc,0x89,0x1a,0x97,0x67,0x02,0x2b,0x83,0xe4, +0x0c,0x22,0xbc,0xc9,0x5e,0x6d,0xac,0x6b,0xe9,0xce,0xb6,0x7d, +0x5f,0x8a,0x3f,0xdd,0x52,0x5c,0x36,0xd4,0xb5,0xf6,0x3c,0xbd, +0x04,0x91,0x85,0x77,0xec,0xce,0xac,0xd0,0x73,0xb4,0xd7,0x0f, +0xa4,0xe4,0x2f,0x05,0x59,0x95,0x9a,0xa9,0x99,0x38,0xbb,0x9a, +0xf8,0xcb,0xa2,0xae,0xae,0x13,0x1b,0x29,0xf9,0x59,0xca,0xb0, +0x93,0x3d,0x7b,0x17,0xde,0xc2,0x5c,0xc9,0x5d,0x06,0x97,0xc0, +0x2d,0x98,0x01,0x1e,0x8a,0x62,0xe7,0x15,0x5c,0xab,0xb7,0x54, +0x12,0x25,0x04,0xaf,0x1b,0xce,0x55,0x6c,0xb5,0xa2,0x98,0xbc, +0xae,0xae,0xa1,0x2b,0xfd,0x39,0xad,0xea,0xba,0xe6,0xae,0x8c, +0x17,0x68,0x39,0x9e,0x59,0x63,0xe0,0xf6,0x8c,0x96,0x5d,0xa9, +0xa5,0x9a,0x85,0xdb,0x8b,0xb4,0xa6,0x8c,0xcc,0x51,0x55,0x57, +0xd3,0x9a,0xfa,0x7c,0x8e,0xf2,0xba,0xfa,0xd6,0xb4,0x17,0xe6, +0x70,0x39,0xb3,0xd1,0xc4,0xc3,0x5e,0xff,0xe0,0xc8,0x1c,0x4e, +0xa5,0xb6,0x6a,0xd6,0x1e,0xae,0x26,0x01,0x4f,0xe7,0x90,0x6f, +0xc3,0x3d,0x04,0x98,0x33,0xb7,0x60,0x89,0x4c,0x28,0x59,0xbf, +0x32,0x8a,0xed,0x0d,0xb2,0x6a,0xd4,0x53,0x9b,0x6e,0x32,0x1b, +0x37,0xe0,0x96,0xe3,0x73,0x7f,0xee,0xef,0xa8,0xeb,0xcb,0x90, +0xc5,0xd3,0x72,0x6c,0xec,0x6e,0x53,0x75,0x8b,0xdd,0x45,0x8d, +0x9e,0x52,0x4b,0x43,0x89,0x49,0x43,0x87,0xc7,0x45,0xb5,0x54, +0x38,0x4d,0x76,0x39,0x0c,0xfe,0x2c,0xbb,0xcb,0xfe,0xd8,0x38, +0x78,0xba,0xb7,0xc9,0x4e,0x5d,0x8a,0x9b,0xd8,0x0d,0xf6,0x76, +0x46,0x52,0x25,0x58,0xac,0x0c,0xea,0xec,0xad,0xfb,0xb0,0x11, +0x33,0x24,0x0f,0x19,0x74,0x81,0xcb,0x60,0x09,0x7e,0x92,0xf9, +0x0c,0xae,0x46,0xcd,0x1d,0xcb,0x29,0x2b,0x8e,0xac,0x19,0xce, +0x66,0xe4,0x4a,0x0a,0x0c,0xca,0xd7,0x5e,0xc0,0x10,0xa0,0xdf, +0xb8,0x45,0x0d,0x5f,0xd3,0x1e,0x01,0x31,0x34,0x17,0x94,0x2e, +0x0d,0xd4,0xf5,0xe5,0x8c,0xa2,0x70,0x30,0x5d,0xa4,0xe3,0x54, +0xd4,0xe8,0x34,0x82,0xa2,0xad,0xd7,0xe3,0x23,0xb5,0x64,0x38, +0x47,0x56,0x9b,0x52,0x14,0xb7,0xd8,0x1f,0x8f,0x0f,0xde,0xb9, +0x72,0x42,0x81,0x62,0x0d,0xbb,0xc1,0xd8,0x6e,0x2b,0x45,0xd1, +0x1e,0x44,0x7e,0xbc,0x74,0xe2,0x4e,0xad,0x4c,0xa7,0x51,0xb2, +0x6b,0xb7,0x99,0xeb,0x36,0xb5,0x19,0xc6,0x97,0x1f,0xc9,0x1e, +0xb0,0x3f,0x74,0x5f,0xfe,0xf1,0x7c,0x87,0x9b,0x5e,0x81,0xf4, +0x62,0xad,0xe4,0x86,0x9b,0x46,0xf7,0x34,0x35,0xfc,0xe0,0x43, +0x7c,0x99,0xd2,0xdc,0xf8,0x05,0x8e,0x81,0x0f,0x64,0x82,0x93, +0xf2,0xff,0x74,0xa8,0xd2,0xaf,0xf3,0xe4,0x32,0x82,0xaa,0xcc, +0x60,0x87,0xa4,0xab,0x21,0xbf,0xb2,0x5e,0xf5,0x84,0x63,0x95, +0xae,0xb1,0xa3,0xb7,0x65,0x90,0xb4,0xe3,0x80,0xa4,0x32,0x2d, +0x3b,0xbd,0x54,0xad,0x2c,0x2b,0xc8,0x57,0x16,0xc9,0xfa,0x05, +0xf9,0x79,0xf8,0x4a,0xe7,0xae,0x93,0x58,0x80,0x39,0x3b,0x6c, +0x22,0xfe,0x42,0x84,0x57,0xd9,0x6b,0xe7,0x6a,0x2f,0xde,0x6d, +0x34,0x99,0x25,0xc5,0x4f,0x3f,0x56,0x5c,0x9e,0xa9,0xbd,0x78, +0xbf,0xd1,0xf8,0x7d,0xc5,0x25,0xfc,0x48,0xc5,0xba,0xe3,0x06, +0x8e,0x9d,0x6f,0x60,0xa2,0xb5,0x8f,0xca,0xf5,0x8e,0xc7,0x8e, +0xea,0x4d,0x6a,0x4b,0x1d,0x2c,0x0d,0xf6,0xc8,0xa2,0x3e,0x5f, +0xa5,0xd0,0x8d,0x5f,0x37,0xc9,0x3f,0xa4,0x4e,0x14,0x56,0x78, +0xe8,0x43,0x36,0x4e,0x95,0x98,0xac,0x20,0x98,0x04,0xd3,0x3c, +0xf4,0x20,0x0f,0x5f,0xa3,0xb5,0xe4,0x1b,0x40,0xb3,0xa6,0x24, +0x9c,0x56,0x31,0x80,0x79,0xf0,0x9a,0x64,0x19,0xce,0xa2,0xe1, +0x1b,0x57,0x54,0xf4,0xd3,0x60,0x3f,0x55,0xa2,0x24,0xef,0x12, +0xde,0x24,0x5f,0x5e,0xbc,0x00,0x1c,0xb0,0xdb,0x2e,0x2c,0x58, +0xb8,0x75,0x3b,0xb2,0xc8,0x5d,0xda,0xfe,0x50,0x36,0xfc,0x9a, +0xf8,0x26,0x11,0xbe,0x8a,0x63,0x2f,0xe2,0x2c,0xf0,0x17,0xf5, +0x24,0x3f,0xc9,0xbd,0x97,0x88,0x5f,0x46,0x31,0x5b,0x60,0x26, +0xee,0x15,0xf4,0x24,0xd3,0x87,0xbd,0x19,0xb9,0x9d,0xb0,0x83, +0x18,0xec,0x6e,0xeb,0x95,0x9d,0x64,0xfb,0x2a,0xdb,0xfa,0xfa, +0x2b,0xad,0x0d,0xa4,0xda,0xac,0xe1,0x6e,0x6b,0x7d,0x29,0xa8, +0xe2,0x4e,0x72,0x19,0xf3,0x15,0x55,0xbb,0xaa,0x32,0x78,0xb1, +0x97,0x81,0x87,0xd7,0xf1,0x89,0xe4,0x1e,0x83,0x1f,0x0a,0x2b, +0x68,0x2e,0x75,0x9e,0x16,0xed,0x28,0xc1,0x5c,0x23,0x54,0x96, +0x44,0x0b,0xb2,0x0d,0x74,0x42,0xa1,0xfe,0xbf,0xdb,0x73,0x67, +0x38,0xa9,0xcc,0xc8,0xaf,0x90,0x65,0xb0,0x15,0x41,0xf9,0xbb, +0x77,0x1f,0xdc,0xe7,0x21,0x0d,0x62,0x3d,0x32,0xf7,0x55,0x4a, +0xa9,0x34,0xff,0xe2,0x8e,0x92,0x30,0x46,0x3e,0x93,0xdc,0xc0, +0x0b,0x1b,0x80,0x1d,0x9e,0x79,0x4f,0x3e,0x93,0x16,0xf1,0xc3, +0x8a,0x86,0xf5,0x90,0x01,0xb3,0x6f,0xe0,0x6c,0x88,0x87,0xf5, +0x37,0x30,0x65,0xd8,0x9b,0x15,0x9a,0x95,0x6f,0xe0,0x62,0xf9, +0xcc,0x65,0xf4,0x5c,0x49,0x88,0x5e,0xa3,0xf8,0x4e,0xcb,0x86, +0x7e,0x14,0x5f,0x0e,0xd1,0xe3,0xc8,0x77,0x5a,0x36,0x38,0x72, +0xa4,0x57,0xb4,0x5d,0x56,0xf9,0xdf,0xf8,0x4e,0xab,0x1f,0x34, +0x48,0x2f,0x36,0x51,0x32,0x29,0xbd,0x98,0x02,0xae,0xbb,0xc4, +0x2c,0x4c,0x31,0x1c,0xf9,0x5f,0xe3,0x47,0xe4,0xcf,0x33,0xfe, +0x99,0xa2,0xec,0xb7,0xf1,0xff,0x9e,0x84,0x93,0x7c,0x37,0xc1, +0x37,0xe9,0xe5,0xa3,0xa1,0x1e,0xd8,0x8a,0x86,0x27,0xc1,0x10, +0x74,0x8d,0x86,0xe0,0x11,0xc6,0xc0,0x9b,0x2c,0x86,0xe1,0x66, +0x42,0x9b,0xf5,0x71,0x2b,0x23,0xac,0x57,0x46,0x5d,0x3a,0x8b, +0x2e,0xf3,0x37,0x92,0xc7,0x3e,0xe1,0x9f,0x54,0xc1,0xc4,0xec, +0x33,0xf0,0x05,0x93,0x14,0x17,0xa3,0x78,0xb1,0xb0,0x0f,0xbe, +0x5d,0x71,0x02,0x77,0xc3,0xc4,0xa0,0xa4,0xb0,0xe8,0xb0,0x60, +0x95,0x88,0x70,0x49,0x04,0xbc,0x0f,0xed,0x7d,0xe2,0x8f,0x7f, +0x27,0xe9,0xf5,0xf2,0x83,0x24,0xda,0x2d,0xca,0x3d,0x72,0x37, +0x87,0xb6,0x46,0x60,0xc4,0x38,0xe3,0x9c,0xad,0x38,0x7e,0xf2, +0xbc,0x66,0x6b,0xfe,0xfa,0xa5,0x81,0x1b,0x2d,0x9f,0x72,0xd4, +0x59,0xdb,0xa2,0x8b,0x91,0xe0,0xd7,0x83,0x8e,0x60,0x0b,0x3b, +0x7b,0xf0,0x31,0x93,0xdd,0x9c,0xde,0x9a,0xda,0xc1,0xc1,0x97, +0x3d,0xf8,0x09,0x93,0x50,0x1e,0x57,0x19,0x57,0xc9,0xfd,0x8d, +0xa8,0x0e,0xc8,0x79,0x92,0x52,0x91,0x58,0x99,0x58,0xad,0x93, +0xcc,0x47,0x38,0x87,0xbb,0x86,0xb9,0x73,0xe8,0x67,0x04,0xf6, +0x8c,0xed,0xb4,0x1d,0x4b,0xf1,0xa5,0xb5,0x35,0x34,0xb7,0xaa, +0x69,0xaa,0xad,0xa9,0xe7,0x30,0x61,0xb0,0x0d,0xda,0xad,0x87, +0xe0,0x21,0x7e,0xcd,0x16,0x37,0xe6,0xb7,0xe4,0x50,0x58,0x5f, +0xf4,0x30,0xe2,0xfb,0x8a,0xd7,0xc9,0x1a,0x40,0x3b,0x1a,0xb0, +0x4a,0x37,0x84,0xf7,0xa9,0x00,0x3f,0x86,0x79,0x8f,0xbe,0x92, +0xea,0x33,0xf3,0x96,0x2c,0xc3,0xa5,0x68,0xae,0x8a,0x16,0xf7, +0x71,0xd9,0xd7,0x4b,0xa4,0xfd,0xcc,0xfb,0x5f,0xae,0x84,0xb9, +0xb0,0x43,0x55,0xbe,0x44,0x70,0x27,0x8f,0xe6,0x7d,0x84,0xf3, +0x70,0x8b,0xaa,0x39,0x8b,0x3b,0x57,0xe2,0x9c,0x0f,0x16,0xd0, +0x0e,0x5f,0x7d,0xfa,0x29,0x2c,0x03,0x4b,0x55,0x30,0x5b,0x0a, +0xcb,0xe6,0x7f,0x26,0xcd,0x1e,0x9e,0x45,0xd6,0x9c,0xd5,0xbb, +0xe6,0x73,0x9b,0x83,0x59,0x6d,0xb8,0x0a,0x5e,0x85,0xd9,0x6d, +0xd4,0x12,0x58,0x53,0x64,0x37,0x33,0xc9,0x15,0x49,0x95,0xf1, +0x15,0x56,0x49,0xfc,0xc1,0x15,0xde,0x1b,0x5d,0x0d,0x1b,0xbc, +0xf8,0xdc,0xb2,0xec,0xda,0x8c,0x7a,0xee,0x3e,0xbe,0x8a,0x8b, +0xac,0x41,0xca,0x78,0xaf,0xd3,0xdd,0xb8,0x64,0x67,0xb5,0x3d, +0x7f,0xe7,0xdc,0xe0,0xf9,0xdc,0x6f,0xb9,0x04,0xac,0x3b,0x06, +0x75,0x09,0x4c,0xd6,0xbc,0x36,0xed,0xfb,0x1b,0x39,0x71,0x36, +0x5c,0x21,0x87,0xd2,0xc3,0x63,0x42,0xc2,0x43,0x0f,0xf1,0xd1, +0x9f,0x3e,0x68,0x5f,0x04,0x6f,0x9b,0xe1,0xdb,0x53,0xac,0xbe, +0x67,0xc2,0x16,0xb9,0xbf,0xbf,0x69,0x5e,0x8d,0x0b,0x7f,0xea, +0x4e,0xc1,0xa5,0xc4,0x4f,0xb9,0x58,0x71,0x5c,0x27,0xfc,0xc8, +0xc4,0xc7,0x1e,0x89,0x39,0x2c,0x3d,0x87,0xaf,0xd6,0x95,0x49, +0xfe,0xfe,0xf5,0x46,0xd2,0x02,0xa6,0x0b,0x7f,0x64,0x93,0x8b, +0x93,0x4a,0x12,0x4a,0x0c,0x32,0xf8,0x43,0xbb,0xc3,0x3d,0x42, +0x3d,0x39,0xc5,0x37,0x3d,0xeb,0x19,0x9b,0x79,0x1a,0xab,0x56, +0xec,0xac,0xb6,0xe0,0x1b,0x2a,0xeb,0xea,0xaa,0x1b,0x39,0xbc, +0xda,0x4b,0x0b,0xb8,0xf6,0xc5,0xa8,0xc2,0x66,0x98,0xd3,0xfc, +0x99,0x69,0xca,0xca,0xae,0x97,0x81,0x88,0xb7,0xd8,0xcc,0xe2, +0xf4,0x92,0xb4,0x52,0x4e,0x07,0xf5,0xc8,0x65,0x68,0xdf,0xc2, +0x62,0xbb,0x05,0x81,0xf6,0xcd,0xd8,0xce,0xfc,0xfd,0xa0,0x45, +0x3b,0x7c,0x9b,0x38,0xe2,0x24,0xd3,0x0f,0x57,0xad,0xa9,0x32, +0xe3,0x2b,0xcb,0x4a,0x2a,0x0b,0xab,0x39,0x14,0x07,0x05,0x53, +0xb6,0xa0,0x23,0xb7,0x3b,0xb3,0x97,0x13,0xe6,0x89,0x0b,0x88, +0x61,0x7e,0x30,0xce,0x58,0xd1,0xab,0x01,0xe3,0x3c,0x14,0xc5, +0xd1,0x81,0x9c,0xa8,0x6e,0x0c,0x09,0x90,0x44,0x1c,0x8b,0x3a, +0xde,0xad,0x5a,0xa5,0xed,0xca,0x9a,0xc4,0x9b,0x24,0x99,0x4a, +0xf1,0xcd,0xb0,0x78,0x63,0x50,0x4e,0xa9,0xc1,0x25,0x57,0xf0, +0xbd,0x9f,0xb5,0x55,0x5a,0x7c,0xeb,0x33,0xe2,0x5a,0x39,0x07, +0xc1,0x8a,0xd8,0xd4,0x9a,0x57,0x9a,0x15,0x7b,0x5a,0xf3,0x6d, +0x7b,0x3b,0x3d,0x8e,0x39,0xd2,0xc4,0xde,0x50,0x58,0x4c,0xbc, +0xe1,0x65,0x97,0x7f,0x38,0x7e,0x6a,0xe9,0xc7,0x17,0xeb,0x16, +0x6e,0xcf,0x57,0xb7,0x38,0xa4,0x1d,0xae,0x1f,0x51,0xfe,0x4b, +0x39,0xbc,0x49,0xc3,0x8a,0x51,0x26,0xbf,0x0f,0x89,0x07,0x4e, +0xda,0x3d,0xc5,0x31,0x9a,0x4f,0x30,0xb8,0x97,0xf4,0x24,0xe3, +0x46,0xba,0x4a,0x96,0xae,0x84,0xda,0xce,0x29,0xe2,0x76,0xcc, +0xa9,0xd5,0xa9,0xc6,0xdd,0x8e,0xaf,0x73,0xae,0xb1,0xad,0xb5, +0xe0,0xf0,0x17,0x5c,0x4f,0x30,0x32,0x18,0xe7,0x6e,0x45,0xa9, +0xb4,0xc3,0xf5,0xf8,0x4f,0x85,0xff,0x4c,0x81,0x77,0x55,0x7e, +0xc4,0xf2,0xc5,0x4c,0xba,0x91,0xe4,0x1a,0xd3,0x90,0x9b,0xd7, +0x22,0x93,0x77,0xa0,0x29,0x8b,0xbb,0x8f,0x90,0xe1,0xa8,0x9e, +0x07,0xc0,0xc8,0xe7,0xb1,0x60,0x82,0x11,0x64,0x0e,0xe8,0x7d, +0xcb,0x60,0x0c,0xc6,0x13,0x0d,0x88,0x3b,0xcb,0x08,0x26,0x58, +0x48,0x3c,0x9b,0x1c,0x5b,0x28,0x05,0x5b,0xbe,0xce,0xad,0xde, +0xba,0xca,0x8e,0xc3,0x52,0x7c,0x9d,0xc4,0xf6,0xc4,0x0c,0x9c, +0x51,0x2d,0xf9,0x16,0x8d,0x58,0x3c,0x07,0x93,0xc8,0x59,0xcc, +0xd5,0x60,0x84,0x5f,0x31,0x8f,0x9c,0x85,0x29,0x1a,0xbd,0xc2, +0x6a,0x3c,0x2a,0xae,0x66,0xf1,0xcd,0x1c,0xd2,0x06,0x2f,0x95, +0x81,0x72,0x36,0xbc,0x61,0x56,0xc0,0x07,0xe0,0xdb,0x3e,0xa8, +0x64,0xf7,0x01,0x27,0xbc,0xa4,0xd8,0xa2,0x32,0x19,0xa7,0x40, +0x32,0x75,0xd0,0xee,0x02,0x75,0x08,0x3b,0x21,0x41,0x13,0x13, +0x70,0xbb,0x36,0x6c,0x67,0xa2,0xd0,0xc9,0x04,0x57,0xe2,0x64, +0x5c,0xd5,0x4a,0x6b,0x93,0x89,0xb0,0xf4,0xb8,0xe2,0x85,0x01, +0xdb,0x47,0xf6,0x82,0xd9,0x76,0x0c,0xdf,0x80,0x09,0xb8,0xbc, +0xb9,0x9f,0x47,0x35,0x58,0x61,0x0a,0x2b,0xa2,0xc0,0x81,0x83, +0x9d,0x0c,0x9c,0xc1,0xc9,0x04,0xa6,0x0d,0xe1,0x34,0xe8,0x84, +0x15,0x43,0xe2,0x56,0x1d,0x70,0x18,0x36,0x98,0x2e,0x24,0x69, +0x89,0x49,0x5b,0x74,0x04,0xe7,0x21,0x54,0x67,0x94,0xe4,0x53, +0x84,0x0f,0x48,0x24,0x8c,0xbf,0xd9,0xbb,0x01,0xd6,0x32,0xe5, +0xe9,0xa5,0x19,0x45,0x99,0xbe,0x5d,0xbc,0x8e,0xe3,0x66,0x8f, +0xcd,0x07,0x32,0x8c,0xf9,0x92,0xa4,0xb2,0xe4,0xd2,0x14,0x0e, +0x67,0x2d,0x31,0xbc,0xc7,0x06,0xe3,0xcb,0x2e,0xa8,0xb4,0x03, +0x5f,0xaf,0xb7,0xe0,0xbb,0x9f,0xe4,0xff,0x90,0x74,0x87,0x22, +0x88,0x46,0x15,0x09,0xfe,0xdc,0x23,0x8c,0x65,0xa3,0xef,0x4a, +0x12,0xe3,0x63,0xe2,0x22,0xa4,0xc7,0xf1,0xb5,0xea,0x2a,0x33, +0x98,0x10,0x99,0x11,0x12,0x17,0x1c,0xae,0x22,0x0e,0x89,0xbb, +0xc8,0x5d,0x18,0x23,0x8f,0xc0,0x05,0xc3,0xb7,0x58,0x48,0x94, +0x97,0xd0,0xa2,0xff,0x03,0xff,0x59,0x7a,0x5b,0x6a,0xac,0xf8, +0x4b,0x9f,0x15,0xc2,0xab,0x71,0xb0,0x90,0x3b,0xc7,0x1c,0x99, +0x1c,0xbd,0xe8,0x90,0x1e,0xe7,0x11,0x1d,0x12,0xbc,0x47,0xcd, +0x41,0x21,0x9d,0x46,0xa6,0xbd,0xb8,0xe4,0x78,0xa2,0x2c,0xe5, +0x74,0xdc,0xc3,0x18,0x58,0xcb,0x61,0x80,0x31,0x23,0xa4,0x0c, +0x9f,0x22,0x7d,0x77,0xef,0xaf,0x18,0x90,0x7f,0x8f,0x86,0x8c, +0xf8,0x39,0x5e,0x20,0x9a,0x50,0x7e,0x9a,0x91,0xf3,0x07,0xc8, +0xfd,0xe1,0x79,0xcb,0x98,0x61,0x03,0x10,0xc8,0x69,0xbc,0xa5, +0xc9,0x80,0x03,0xaa,0x93,0x73,0xdf,0xec,0xec,0x16,0x36,0xa1, +0x91,0xb8,0x89,0x85,0x69,0xc2,0xeb,0x04,0xb3,0xe6,0x42,0x16, +0x4d,0x14,0x1e,0x2d,0x24,0x3f,0x33,0x67,0x4a,0x6b,0x4f,0xc8, +0x40,0x8f,0xfd,0x2a,0xfb,0xc2,0x47,0x8f,0x55,0x1f,0x6f,0xff, +0x68,0x7e,0xb6,0x14,0x9c,0xe1,0xf5,0xb3,0x53,0xd9,0x5d,0xde, +0x6e,0x46,0x32,0xd4,0x63,0xe7,0x05,0x6e,0x5b,0x3d,0x43,0x75, +0xc6,0xc5,0xd5,0x5f,0x07,0x4a,0xd1,0x19,0x95,0xd8,0x2a,0x61, +0x36,0x39,0x5b,0xdb,0x3d,0x98,0x29,0xc5,0x14,0x56,0x37,0xd3, +0xa5,0xfb,0xac,0x2a,0x2c,0x86,0xb7,0x48,0x7f,0x60,0xad,0xb1, +0xa6,0xaa,0xa6,0x8b,0x31,0x4d,0xae,0x95,0xe4,0xb6,0x5b,0x68, +0xb0,0x47,0x16,0xa2,0xe1,0x47,0x49,0x1f,0x8b,0x8a,0x03,0xe0, +0x0d,0xd1,0x70,0x3d,0x03,0x99,0x22,0x27,0x89,0x62,0x51,0x71, +0x58,0xcf,0x2a,0xc9,0x55,0x7e,0x7d,0x85,0xc4,0xac,0x61,0x51, +0x53,0xfc,0x65,0x0d,0xd6,0x4b,0x22,0x99,0xf5,0x50,0x6f,0x09, +0x2b,0x25,0xb8,0x78,0xe7,0x23,0x06,0x26,0x8a,0xc6,0x12,0x90, +0x30,0x50,0xf8,0xeb,0x04,0x89,0xf0,0xea,0x25,0x1a,0xc6,0x1a, +0x40,0x85,0x08,0x45,0xab,0xc4,0x22,0x6c,0x5c,0x2f,0x97,0xde, +0xa4,0x33,0x1c,0x6b,0x25,0xe7,0xc5,0xe4,0x04,0x56,0x58,0x29, +0x84,0x1a,0xb4,0x89,0x6e,0x62,0x97,0x44,0x9f,0x36,0x9f,0x6c, +0x25,0x37,0xc4,0x32,0xe1,0xc2,0x9a,0xe1,0x77,0xe8,0x55,0x43, +0x2b,0x91,0xab,0xb2,0xc3,0x13,0x87,0x55,0x25,0xc2,0x19,0xc1, +0x87,0x88,0x8b,0xc4,0xf7,0x29,0x1b,0x3e,0xa7,0x86,0x08,0x33, +0x5a,0x4f,0xd2,0xf4,0xed,0x8d,0x56,0x6d,0x9c,0x21,0x15,0x37, +0xdc,0x13,0x96,0xb3,0x60,0xb7,0xfd,0x1e,0x2d,0x63,0x76,0x6e, +0x5f,0x8e,0x76,0x52,0x71,0xf9,0x3d,0xc5,0x77,0x1f,0xf2,0xbd, +0x44,0x5c,0xce,0xa2,0xdd,0x85,0xe5,0xb0,0x13,0x76,0x5e,0xb8, +0x07,0x76,0x52,0x61,0xf9,0x72,0x71,0x03,0x8b,0x33,0x6c,0xb4, +0xf1,0x0d,0x7c,0xc3,0xe6,0x24,0xcc,0x90,0x0a,0x1b,0x28,0xb1, +0x2c,0x70,0xa3,0xca,0x07,0x4f,0xa8,0xf6,0xad,0x87,0x0d,0xfd, +0xe2,0x45,0x7d,0x58,0x83,0xeb,0x51,0x15,0x9f,0xd0,0x5c,0xcd, +0x18,0x7d,0xf5,0xe5,0x13,0xfa,0x69,0x01,0x3f,0xbc,0x43,0x1e, +0x4e,0x86,0x23,0x4e,0x3e,0x01,0x13,0x39,0xad,0xc3,0xd4,0x30, +0x8d,0x80,0x0a,0x2d,0x81,0x5f,0xc1,0x7d,0x30,0x0d,0xa3,0x70, +0x1a,0xad,0xd6,0x5f,0x81,0x38,0x54,0x61,0xf0,0x53,0x41,0x87, +0x80,0x4c,0xac,0x41,0x19,0xad,0x52,0xa2,0xe4,0x1f,0x13,0x1f, +0x3d,0x03,0x0d,0x54,0xde,0x5c,0x6e,0xc0,0xc3,0x6b,0x57,0x2e, +0x9f,0xcb,0xbf,0xc5,0x25,0x31,0x79,0x9b,0x86,0xb4,0x80,0xdd, +0x54,0xd5,0xc7,0xe3,0xc4,0x6b,0x96,0x27,0xbd,0x7b,0x38,0xf9, +0xfb,0xe2,0x5a,0x62,0xfd,0xc4,0x08,0x5e,0x32,0x7c,0x60,0xe8, +0xc9,0xd7,0x18,0x54,0xef,0xaa,0xdc,0xb9,0x36,0x78,0x51,0xc8, +0xfc,0x88,0xb6,0x9f,0x9b,0x60,0x62,0x15,0x8c,0xd3,0xce,0xe2, +0x3d,0x90,0x33,0xc3,0x69,0xe6,0x53,0xfd,0x8f,0xec,0x3f,0xea, +0x7f,0x24,0x51,0x9b,0x07,0x3e,0x19,0xe6,0x64,0xc2,0xb8,0xfc, +0x54,0xdf,0xd4,0x3d,0x29,0xbe,0xdc,0xf0,0x5e,0x08,0x25,0x60, +0xd2,0x89,0x26,0x0c,0x54,0x8a,0x99,0xd4,0xad,0xb7,0xdf,0x82, +0x1a,0x68,0xc1,0x2f,0x87,0x95,0x87,0x1e,0x43,0x5f,0x37,0xf6, +0x7d,0xa4,0x78,0x58,0xa3,0x83,0xe0,0xde,0x9b,0xb0,0x97,0xc1, +0xbd,0xf8,0x2a,0x81,0xbd,0x6b,0x71,0x2f,0x23,0x6c,0x14,0x67, +0x90,0x53,0x90,0xab,0x75,0x5a,0x58,0x28,0x2a,0x8b,0x0b,0x59, +0xb8,0x03,0xbf,0x52,0x9f,0x84,0xb9,0x10,0x49,0xb9,0xda,0x26, +0x37,0x26,0x66,0x1d,0x3a,0x1d,0x3a,0x75,0xce,0xe6,0xfc,0x29, +0x87,0x6e,0xdb,0x6e,0x0b,0x4e,0xbe,0xd3,0x81,0xcc,0x1d,0xd2, +0xee,0x33,0xbb,0xc4,0x61,0xbe,0x01,0x84,0x32,0xad,0x5a,0xe7, +0xb5,0xbe,0xd5,0xe2,0xc4,0x7f,0x1e,0x26,0x37,0xfb,0xfa,0x07, +0xea,0xcf,0x98,0xd7,0xf1,0xae,0x3a,0xfa,0xfa,0xdb,0x2d,0x38, +0x50,0x8d,0x27,0x86,0xc2,0x8c,0x5e,0x56,0x6c,0xc7,0x95,0xc4, +0xf8,0xb8,0x7a,0xdf,0xf6,0x66,0x27,0x73,0xfe,0xbc,0xed,0x39, +0x93,0x01,0x23,0x4e,0xae,0x8a,0x6f,0x91,0xac,0x90,0x1c,0xfa, +0xa9,0xe8,0xe3,0xe7,0x0d,0x6a,0xf5,0x9b,0x9f,0xe7,0xb0,0xd0, +0x10,0x0e,0x31,0xd5,0x16,0xc7,0x4d,0xae,0x98,0x72,0x62,0x26, +0xe6,0x4f,0x36,0x90,0x1b,0xf7,0x2d,0x65,0xc4,0x9b,0xb0,0x87, +0xdc,0xef,0x1f,0x3a,0xd5,0x7c,0xc6,0xbc,0x9e,0x77,0xd4,0xd6, +0xd6,0xdd,0x60,0xce,0xe1,0x02,0xfc,0x85,0x5c,0x82,0x97,0x4e, +0xc0,0xa4,0xb2,0x5f,0x74,0xf3,0x79,0x77,0x7c,0xc5,0x1a,0xc7, +0x6f,0x9f,0xc9,0x09,0x96,0x90,0x44,0xd0,0x6d,0x36,0xb8,0xb1, +0xf0,0xbe,0xe2,0xbd,0x21,0x6e,0xdf,0xa3,0x1b,0xdb,0xa7,0x0c, +0x6e,0x8f,0xe9,0x51,0xe9,0x2e,0xe8,0x12,0x68,0x14,0x56,0x6e, +0x60,0x72,0x6b,0x72,0x5a,0xd2,0xea,0xb9,0x76,0x9c,0xc5,0x26, +0x15,0x25,0x16,0x27,0x14,0x1b,0x25,0xf1,0x7e,0x33,0x6d,0xe6, +0xec,0x5a,0xd3,0xe0,0xc4,0xc7,0x27,0x24,0x24,0xc6,0x27,0x72, +0xc2,0x99,0x2a,0x02,0x9e,0x18,0x6d,0x0c,0x3a,0x38,0x01,0xdf, +0x67,0x23,0x36,0x87,0xac,0x0e,0xd9,0xc2,0xc1,0x2e,0x26,0x06, +0xe7,0x86,0xe2,0xf4,0xf0,0x4d,0x9c,0x71,0xe4,0x81,0x30,0x4b, +0x35,0x13,0x26,0xcb,0x50,0xd2,0xcf,0x9c,0xac,0x28,0xbc,0x9a, +0x2a,0x4b,0xfb,0x3c,0x19,0xde,0x03,0x27,0x55,0xea,0xca,0x92, +0xea,0x13,0x07,0xe3,0x2a,0x14,0xaf,0xa1,0x52,0x22,0x89,0x75, +0x09,0x7d,0x71,0x35,0x8a,0x57,0xcb,0x7b,0x62,0xa8,0x31,0x6c, +0x53,0xfc,0x2e,0x9b,0x89,0xde,0x1a,0xb6,0x2a,0x64,0x33,0x07, +0x16,0x0c,0x9d,0x0d,0x67,0x86,0xae,0x95,0x1a,0x47,0x04,0x84, +0x59,0xab,0x69,0x33,0xd9,0x06,0x92,0x33,0xcc,0xe9,0xca,0xe2, +0x9b,0xa9,0xb2,0xf4,0x4f,0x93,0x40,0x0d,0x9c,0x55,0x87,0xa7, +0x43,0x32,0x09,0xf3,0x08,0xb0,0xdb,0xe7,0xcc,0x21,0xcb,0xe4, +0x57,0xe7,0xd4,0x65,0x36,0x70,0xb6,0xd8,0x44,0xd5,0xf3,0x32, +0x0d,0xd0,0x9d,0xca,0xa0,0x72,0x95,0x1e,0x51,0x73,0xe4,0xf9, +0xbd,0xcb,0x38,0x55,0xd1,0x34,0xf5,0x2a,0x3d,0x0a,0xe1,0x20, +0x25,0xce,0x16,0xa6,0x26,0xe6,0x2e,0x95,0x76,0xfc,0x89,0xa6, +0xee,0xee,0xfa,0x2e,0x0e,0x6f,0x55,0x10,0x67,0x73,0x13,0x63, +0x43,0xe7,0x6a,0x07,0xbe,0xa7,0x61,0xb0,0xbf,0xf6,0x38,0x07, +0x45,0xf8,0x1a,0xb1,0xd1,0xdc,0xa5,0xbd,0xcb,0xb6,0xc2,0x86, +0x3f,0xd7,0x7a,0xe1,0x62,0xdb,0x69,0x0e,0x6f,0x94,0x12,0x1b, +0x1d,0x1d,0x6d,0x4d,0xdb,0xa0,0x96,0xc0,0xc6,0x83,0xd5,0x0e, +0x41,0x7c,0xb6,0x5d,0xb6,0x45,0x86,0x69,0x4b,0x36,0x1f,0x9d, +0x52,0xe4,0x7e,0xbe,0xf3,0xc2,0x85,0xa6,0xd3,0x2a,0x62,0x12, +0xe6,0x90,0x9a,0x73,0xc5,0xf7,0x53,0x3f,0xb2,0x4a,0xe5,0x43, +0xd4,0xf7,0x6e,0x74,0xd5,0xe4,0x68,0x9a,0xa9,0x4b,0x32,0x8d, +0xd2,0xf5,0x52,0xb6,0x77,0x66,0xf0,0xa1,0x67,0x0e,0x0e,0x05, +0x76,0x73,0xc8,0x05,0x92,0x24,0x8d,0xf8,0x4d,0x5b,0x54,0x8f, +0x27,0x1f,0xbe,0x12,0x79,0x29,0xf4,0x82,0x8a,0x12,0xfc,0x28, +0x84,0x90,0xce,0x8f,0x2b,0xee,0x64,0x5d,0x87,0xf5,0xf1,0xb0, +0x2a,0x07,0x66,0x34,0x7a,0xf7,0xf0,0xf8,0x9e,0x13,0xae,0xdd, +0x8f,0xa6,0xd1,0x07,0x56,0x78,0xcc,0x35,0x5d,0xcf,0xa1,0x39, +0xa4,0x93,0x4b,0xf6,0xa7,0xad,0x4e,0x9a,0xd5,0x75,0xf1,0xfa, +0xc7,0xb6,0x75,0x6d,0xab,0xe7,0xe4,0x1f,0xe2,0x3b,0xa4,0x51, +0xbf,0x71,0x7b,0x89,0x4e,0x6f,0x19,0xbf,0xa7,0xcf,0xee,0x9a, +0x3d,0x25,0xa2,0x81,0xb6,0x24,0xa2,0xef,0xc0,0x45,0xff,0x13, +0x7a,0xc1,0x7c,0x8e,0x61,0x86,0x76,0xb2,0x36,0x27,0x9e,0x6d, +0x24,0x97,0xec,0xce,0x9b,0x9d,0x34,0x69,0xe8,0xe2,0x0d,0xbb, +0x36,0xf6,0x6c,0x69,0xe4,0x84,0x4b,0xa8,0x4f,0xbe,0x4b,0xfe, +0x2a,0xfd,0xb3,0x1c,0x2f,0x4a,0x70,0x85,0x1b,0xea,0x1d,0xc4, +0x3d,0x91,0xa9,0xfa,0xfc,0x83,0xd8,0xcf,0xe3,0xef,0x27,0x72, +0x38,0x17,0x8f,0xeb,0xc0,0x71,0x54,0xc7,0x52,0x1d,0xe1,0x3f, +0x86,0xb0,0x01,0xd4,0xe1,0xe4,0x10,0x9e,0x64,0xc5,0x16,0x3c, +0x47,0xae,0xfd,0xb3,0x1f,0x54,0xab,0x9e,0xe8,0x16,0xf2,0x2e, +0xf8,0x8a,0x19,0x8e,0xdb,0x3c,0x8b,0x53,0x82,0x7e,0xf9,0x46, +0x62,0xd4,0xb3,0xf6,0x94,0x56,0x83,0xbd,0x25,0x35,0xa0,0xdb, +0x9a,0xbd,0x46,0x1c,0xe8,0x8b,0x07,0x49,0xb6,0x96,0x04,0x66, +0x33,0xdd,0xd9,0x79,0x1d,0x32,0x68,0x83,0x9c,0x53,0x98,0x03, +0xfe,0x10,0x7d,0x4a,0xbc,0xa0,0x05,0xa9,0xe8,0x8f,0x75,0x5a, +0x50,0x87,0xc7,0x58,0x7c,0x04,0x9f,0x11,0xa3,0xee,0x15,0x67, +0xb5,0x1b,0xa8,0xd9,0x0c,0x3a,0x7e,0xa4,0xd9,0x6f,0xc0,0x41, +0xa0,0xb8,0x9a,0xe0,0xdb,0x0b,0xce,0x2a,0x1e,0x85,0xd9,0x8c, +0x96,0x5a,0xf0,0x2e,0x32,0xec,0x6c,0x5b,0xbd,0xc9,0xd6,0xd2, +0x62,0xcd,0xef,0x5b,0x7a,0x4f,0xc5,0x3f,0x7d,0x14,0x66,0x1d, +0x2c,0x52,0x13,0x7c,0x99,0xd4,0xb3,0x12,0x25,0xe1,0x0d,0xf9, +0x0a,0xd2,0x96,0xd5,0x9e,0xdf,0x52,0x54,0x74,0xa0,0xf0,0x40, +0x7e,0xe0,0xbe,0x03,0xbe,0x01,0x3e,0x81,0x1e,0x79,0x5e,0xd9, +0x7b,0x32,0x3c,0xdc,0xf9,0x82,0xe0,0xc2,0x83,0x45,0x07,0x5d, +0x03,0x9c,0x03,0x1d,0x82,0x0b,0xed,0xf8,0xf6,0xcc,0xb6,0xbc, +0xe6,0xc2,0x32,0xff,0x12,0xff,0xc2,0x80,0xca,0x6a,0xde,0x3f, +0x7b,0x2f,0xfd,0x94,0xe7,0x96,0xe4,0x17,0xe4,0x7b,0x55,0xf0, +0x59,0xd9,0xfb,0x33,0xf7,0x65,0xee,0xcd,0x52,0x29,0xcd,0x29, +0xce,0x29,0xc8,0xdb,0x5d,0xc5,0xfb,0xee,0xf3,0xf4,0x77,0xf7, +0xf7,0xc8,0xdb,0x9d,0xe3,0x9d,0xe1,0xe9,0xce,0x17,0x85,0x14, +0x07,0x96,0x04,0xba,0x04,0x38,0x1e,0x70,0x08,0xa6,0x6c,0xf3, +0x25,0xb8,0xe8,0x04,0xb0,0x6c,0x42,0xbc,0x62,0xdb,0xaf,0x1b, +0x3b,0xaa,0xaa,0xd7,0x5d,0x0c,0x4b,0x3e,0x74,0xf8,0x50,0x84, +0x4a,0x68,0x98,0x24,0xb2,0xe3,0xc7,0xb6,0x19,0x37,0x4d,0xd6, +0xa3,0xcc,0x1a,0x26,0x30,0xfe,0xc6,0xd6,0x56,0x2b,0x2d,0xcb, +0x6d,0xf8,0xfb,0x27,0xea,0x3b,0x93,0x06,0x38,0x41,0x03,0xa7, +0x92,0xab,0xdd,0x25,0x2d,0x49,0x27,0xb8,0x24,0x5c,0xd8,0x0d, +0x0b,0x93,0x98,0x64,0xa3,0x0e,0xcb,0xbb,0x06,0x55,0x2d,0xfc, +0xc6,0x76,0x9d,0x13,0x7b,0x8e,0x71,0xa0,0xdc,0x86,0xb3,0x6e, +0x1a,0xaf,0xc7,0x09,0xd6,0x4f,0x98,0x00,0x4b,0x5b,0xf3,0x6d, +0x56,0x9c,0x98,0xba,0x91,0xe0,0x0c,0x79,0x2f,0xcc,0x60,0xc5, +0xb3,0xd6,0x44,0x0b,0xb5,0x4f,0xb1,0xc2,0x16,0x2d,0x82,0xba, +0xa7,0x68,0xa9,0x37,0xa0,0x45,0xbd,0x9e,0xad,0x16,0xbb,0x6b, +0x3d,0xd9,0x88,0xa5,0x46,0x50,0x8a,0x41,0x28,0x65,0xb3,0x68, +0x34,0x1b,0xc7,0x74,0xe6,0x2b,0xde,0x38,0xe2,0xfd,0xa4,0x67, +0xca,0x75,0x16,0x11,0x3b,0x48,0x33,0xde,0x6c,0x81,0x0b,0x60, +0x29,0xb2,0xe2,0x82,0xa1,0x2e,0xf8,0xb4,0x19,0x3f,0x6d,0x61, +0x21,0x15,0x2c,0x09,0xa6,0xb6,0x42,0x2a,0x83,0xa9,0xab,0x08, +0xa4,0x5a,0x61,0x2a,0x23,0xbc,0xe1,0x4b,0xea,0x9d,0xab,0xec, +0xab,0x2c,0xda,0xab,0x78,0xaf,0x56,0xe7,0x76,0xc7,0x7a,0xaa, +0x04,0xaf,0xc8,0xdb,0x08,0xba,0xb3,0x78,0x36,0x18,0xe7,0x6d, +0x47,0x99,0xb4,0xcf,0x54,0x72,0x1d,0xe6,0x65,0xc0,0x0e,0xa0, +0xc1,0x79,0xa5,0xbc,0x78,0x80,0x15,0x57,0x52,0x95,0x80,0x9b, +0x14,0x42,0x7a,0x51,0x4a,0x59,0x52,0xb1,0x41,0x32,0x1f,0xbe, +0x3b,0xdc,0xe7,0xa0,0x17,0x37,0x0d,0x6f,0x32,0xf2,0xc5,0x78, +0x9d,0x18,0x33,0x7b,0x0f,0xa5,0x94,0xc8,0xc0,0xc7,0x96,0x4d, +0x2a,0x49,0x2c,0x4d,0x2c,0xa3,0x65,0x4a,0x0f,0x8d,0x37,0x29, +0x17,0x13,0xaf,0xc7,0xde,0xe3,0xe0,0xe5,0x1e,0xbc,0x8f,0xe5, +0x56,0x46,0xd4,0x2b,0xb9,0xe3,0x54,0xad,0xe9,0xf8,0xf2,0x7c, +0x2e,0x26,0x31,0x26,0x39,0x59,0xf5,0x07,0x56,0x2f,0x4b,0x82, +0x1c,0x2e,0x65,0x77,0x87,0xa7,0x96,0xcb,0x2e,0xb0,0x9f,0xe4, +0xfd,0xd4,0x7c,0xaa,0xc6,0xed,0x38,0x6f,0xe8,0xbe,0xc4,0x79, +0xd3,0x7e,0xee,0xb1,0x0e,0xee,0x67,0x77,0x96,0xf9,0x0d,0x49, +0x61,0x23,0x93,0x97,0x19,0x9f,0x92,0x22,0xab,0xb5,0xfe,0xfe, +0xa3,0xb3,0x0f,0x9a,0x81,0x51,0xa1,0x49,0x86,0x5e,0xf1,0xbe, +0x6e,0xe9,0x00,0xd3,0x90,0x9d,0xd3,0x20,0x83,0xf1,0xac,0x49, +0xb6,0x04,0xa3,0x84,0xdd,0x04,0xc6,0x32,0x87,0x97,0x45,0x6e, +0x08,0xdd,0xc1,0xcd,0x61,0x50,0x0b,0x94,0x08,0x6a,0x7d,0xa6, +0xd8,0x2b,0x5a,0x4b,0xf1,0x3e,0x0e,0xad,0xb9,0xa8,0xc5,0x28, +0x7d,0x26,0x6f,0x27,0xc3,0xf2,0x73,0x42,0x25,0x74,0xc1,0x03, +0xf6,0x1b,0x7c,0x40,0xe0,0x1c,0xcd,0xe1,0x97,0x30,0x69,0x7a, +0x12,0x98,0xc9,0x74,0xe5,0xe5,0x36,0xc9,0xe4,0x4d,0xe2,0xab, +0xac,0xa8,0x82,0x32,0xf2,0x19,0x04,0x2f,0x61,0xc1,0x55,0xf9, +0x33,0x88,0x5f,0xc2,0x0e,0x6b,0xe3,0x34,0xf2,0x35,0x04,0xcf, +0x53,0xb4,0x7c,0x0d,0xf1,0xf3,0x58,0xf1,0x33,0x31,0x84,0x08, +0x2e,0x3d,0x68,0x07,0x2c,0xec,0x3f,0x81,0xfb,0x7f,0x64,0xae, +0x24,0x9d,0x4f,0xe9,0x4d,0xf7,0xeb,0xe5,0xf1,0xa5,0xdd,0xb8, +0x3c,0x14,0x3f,0x38,0xa2,0xd8,0x9d,0xf7,0x4c,0x5c,0xfc,0x29, +0xd9,0x6c,0xf4,0x35,0x01,0x5f,0x64,0x51,0xf1,0xac,0xa9,0xbe, +0x7c,0x32,0xd9,0xde,0xb4,0xa5,0xcf,0xe4,0x0c,0x87,0x29,0xc6, +0x10,0xc8,0x1c,0xd3,0xbe,0xa8,0x7f,0xde,0x81,0x13,0xad,0x61, +0x33,0xb1,0xd3,0x33,0xb3,0xd8,0xe9,0x50,0x69,0xc6,0x5f,0x6c, +0xe9,0xeb,0x6e,0x3d,0xcb,0x89,0xaf,0x0e,0x7b,0x91,0x27,0xb0, +0x5a,0x3e,0x09,0xf7,0x0e,0x47,0xb0,0xd4,0x53,0x2f,0x26,0x28, +0x11,0xea,0x68,0xa2,0x23,0xe7,0x45,0x07,0x02,0xf7,0x50,0x7d, +0xe8,0xdb,0x0e,0xfc,0xc9,0xf2,0x2b,0x1d,0x5c,0x8b,0xf7,0x84, +0x31,0x9a,0xe2,0x3c,0x23,0x61,0x1e,0xad,0x5e,0x96,0xb0,0xd9, +0x54,0x85,0xa6,0x30,0x9d,0x99,0x79,0x6d,0x8a,0xdd,0xdd,0xa6, +0xf5,0xe0,0xb4,0xd3,0x2c,0x4e,0x16,0x78,0xa2,0xa3,0x31,0xc4, +0x9a,0x4c,0x27,0x87,0x4c,0x5d,0x02,0x34,0x03,0x72,0x6c,0xf8, +0x2f,0x72,0x9b,0x5b,0x12,0x2f,0x70,0xe7,0x4c,0x19,0xc7,0x9c, +0x83,0x6d,0x52,0x78,0xc5,0x5c,0x9c,0x42,0x59,0x02,0x27,0xb4, +0x49,0x60,0x64,0x5c,0xa6,0xac,0x15,0x5e,0xd3,0x66,0xf1,0x9d, +0xb1,0xc6,0xe2,0x94,0x6e,0x36,0x52,0xf1,0x1a,0x51,0xef,0x66, +0xcf,0x7a,0xe7,0xc6,0x16,0xde,0xa9,0xc6,0xa6,0xd2,0x46,0xf1, +0x7c,0xdf,0x61,0xf9,0x4d,0xe2,0x63,0x60,0xb0,0x0b,0x95,0xb7, +0x96,0xe9,0xf3,0xed,0x25,0x0d,0x25,0x55,0xc5,0x9c,0x39,0x58, +0x1e,0x63,0x4b,0xf7,0x56,0xef,0x6d,0xdc,0x33,0x92,0x69,0x5c, +0xb1,0x38,0xe9,0x73,0x82,0x43,0x82,0x4b,0x49,0x77,0x4b,0x55, +0x6b,0x7a,0x27,0x97,0xcc,0xa4,0x5b,0x54,0xd8,0x75,0x5b,0x73, +0xc2,0x27,0x62,0x14,0x51,0x0f,0x93,0x08,0x57,0x2f,0x0e,0x88, +0x9e,0x7a,0x17,0xc5,0x61,0xd6,0x27,0xda,0x37,0xda,0xf7,0x70, +0x8a,0x2e,0xff,0x5d,0xba,0xa2,0x10,0x60,0xb3,0x38,0xdc,0x70, +0x06,0xb6,0xb3,0xa5,0xf1,0xc5,0x71,0x45,0x71,0x1c,0xaa,0x09, +0xb6,0x8a,0x2d,0xad,0x3e,0x04,0x0f,0x46,0x7c,0x4d,0xfc,0x94, +0xf4,0x62,0xdd,0x15,0xa8,0xa2,0x25,0xf9,0x83,0xe1,0x37,0x87, +0xbe,0x83,0xc6,0x41,0x6c,0xbc,0xca,0xca,0x67,0x0a,0xaf,0x2a, +0x36,0x82,0xf7,0x00,0x9a,0x90,0x79,0xad,0x22,0xe8,0x7d,0x19, +0xbc,0x19,0xf4,0x56,0x3c,0x5f,0xeb,0xad,0x8e,0xde,0x8c,0xb0, +0x6b,0x3f,0x01,0x0f,0x9c,0xcd,0xa8,0x87,0xae,0x0b,0x53,0x0f, +0xe3,0x94,0xe4,0x5f,0xc9,0x77,0x11,0xdb,0x28,0x9b,0x43,0xbb, +0xa5,0x76,0x61,0x5e,0x07,0x75,0xd5,0xf0,0x2d,0x26,0x53,0x57, +0x02,0xca,0xcc,0x9d,0xce,0xd2,0x0b,0x19,0xb2,0x94,0xb6,0xc4, +0xc1,0x07,0xaa,0x78,0x8b,0x49,0x2e,0x49,0xa4,0x1f,0xcd,0x34, +0xde,0x1b,0x5f,0xd7,0xc0,0x37,0x17,0x2c,0x68,0x37,0xe3,0xaf, +0x5c,0xe9,0xbe,0x5f,0xff,0x25,0x87,0x77,0x44,0x53,0x12,0x19, +0x9b,0x7e,0x36,0xe9,0x74,0xdc,0x6d,0x95,0x8b,0x67,0xba,0x4e, +0x76,0x5c,0xb1,0x6d,0xe1,0x1d,0xb5,0x1c,0x4d,0xad,0xad,0xb8, +0x2c,0x16,0x8e,0x69,0x61,0x3f,0x8b,0xd9,0xce,0xf8,0x3a,0xbe, +0x87,0x9b,0xa5,0xc7,0x2c,0x3e,0x87,0x97,0xdb,0xbf,0x2c,0xfd, +0x4a,0x25,0x36,0x29,0xee,0x68,0x42,0x04,0xbc,0x86,0x0b,0xf9, +0x63,0xed,0x38,0x0e,0x66,0x85,0x64,0x04,0xc7,0x87,0x04,0xab, +0xe0,0x46,0x61,0x12,0x39,0x8c,0x2f,0x07,0xcf,0x75,0x5d,0xd5, +0xeb,0xc3,0xd7,0x7f,0x9d,0xfe,0x73,0x2c,0xbc,0xcc,0x09,0xad, +0x78,0x96,0xc0,0x7a,0x6a,0x51,0xab,0xf4,0x61,0x15,0xbe,0x23, +0x2a,0xc1,0x3b,0xb0,0xb0,0x1f,0x17,0x02,0xc7,0x0c,0x65,0x9e, +0x2f,0xee,0xaa,0x72,0x39,0xce,0x1b,0xb9,0x6f,0xf1,0x58,0x73, +0x90,0x13,0x4d,0xcf,0xf4,0x08,0x4a,0x46,0x67,0x04,0x07,0x0c, +0xa2,0x99,0xa7,0x28,0xb7,0x25,0xa2,0xcb,0xa0,0x90,0x83,0x59, +0xb4,0x6e,0x4e,0x2d,0x4d,0x2e,0xd0,0xa2,0x96,0xee,0x1d,0xe2, +0x15,0xe8,0xcd,0xe1,0x1e,0x31,0x67,0x50,0x70,0x61,0xf0,0x5d, +0x51,0x8d,0xd0,0xa0,0x5e,0x95,0x5d,0xe3,0x58,0xc6,0x07,0xed, +0x3e,0xe8,0x75,0xc0,0x2b,0xa0,0x84,0x8f,0x48,0x0e,0x4d,0x08, +0x0d,0x09,0x0d,0xe1,0xa3,0xb2,0x98,0x96,0xb3,0x6d,0x5f,0xe4, +0x7f,0xc1,0x75,0x4e,0x81,0x39,0x7a,0x38,0x07,0x59,0x7d,0x70, +0x67,0x3d,0xf0,0xd5,0x55,0x74,0x5d,0x93,0x50,0xa9,0xca,0x98, +0x3f,0xd6,0xd9,0xd8,0x5a,0xd1,0xcc,0x89,0x93,0x07,0x84,0xc5, +0x6c,0x52,0x6c,0x4c,0x7c,0x84,0xf4,0x5b,0x94,0x35,0x37,0x49, +0xe0,0x2a,0xcc,0x23,0xb4,0x21,0x31,0x52,0x0a,0xfc,0xac,0xf2, +0x26,0x9c,0xf8,0x4d,0x70,0x4a,0x78,0x42,0x70,0xa0,0xca,0xa1, +0x30,0x49,0x54,0x3d,0x2c,0xeb,0xc0,0x65,0xa0,0xc4,0x74,0x27, +0x1e,0x4f,0xee,0x4c,0x3d,0xd0,0xc6,0xcf,0xf7,0x43,0x49,0x30, +0xbe,0x16,0x9d,0x6a,0xc1,0x77,0xc4,0x76,0xc4,0xb5,0xc7,0xd3, +0x98,0x8d,0xf3,0x2d,0x61,0x12,0xeb,0xeb,0x64,0x6a,0xb3,0xd2, +0xb6,0xc4,0x92,0xff,0xae,0xb7,0xb1,0x35,0xa9,0x97,0xfa,0xe6, +0xf9,0xdd,0xcc,0x35,0xf0,0x25,0x05,0x65,0xb9,0xf5,0x19,0xd5, +0xf6,0xb9,0x7c,0x90,0xcb,0x7e,0xb7,0xfd,0x5e,0x1c,0xda,0xf5, +0x93,0xdc,0x3d,0x59,0x5e,0x19,0x5e,0x8d,0xf9,0x7c,0x70,0x69, +0x40,0x65,0x40,0x11,0x27,0x2c,0x12,0x1d,0xa9,0xee,0x54,0x5d, +0xd2,0xdd,0x8a,0x25,0x86,0x90,0xcd,0x7a,0x6e,0x5b,0xa4,0x83, +0xcb,0x2d,0x8a,0x75,0x79,0x30,0x3a,0xfd,0xf9,0x95,0x94,0x7b, +0x34,0x5f,0x4e,0x5d,0xfe,0x70,0x0b,0x68,0x6b,0x16,0x0f,0xf0, +0xb8,0xec,0xd8,0x87,0x83,0x5e,0x17,0x69,0x0d,0x6e,0x20,0x48, +0x89,0xa8,0x7a,0x0d,0xbe,0x84,0x41,0xd4,0x67,0x52,0x8b,0x52, +0x8a,0x13,0x4b,0x75,0x53,0xf8,0x08,0xef,0x30,0xcf,0x60,0x4f, +0x0e,0xa7,0x89,0x5d,0x02,0xc7,0xac,0x8d,0xd2,0x09,0xb7,0x91, +0x3a,0x45,0x1c,0x0c,0xb4,0x53,0xd3,0x63,0x32,0x0c,0x24,0x03, +0xcc,0x99,0xb2,0x92,0x33,0xe9,0xb2,0xd4,0x81,0x84,0xab,0x30, +0x5e,0x55,0xe4,0x6e,0x0a,0xaa,0xcc,0xf0,0x75,0x1c,0x24,0x72, +0x13,0xb8,0xd7,0x2f,0x2a,0xff,0xf6,0xf2,0xd0,0x10,0x3c,0xe8, +0x67,0x85,0xb7,0xe5,0x6b,0xc8,0x5a,0xac,0xb9,0xcd,0x8a,0x6f, +0x52,0x45,0xb7,0x86,0x48,0xb0,0x56,0xfc,0xe6,0x74,0x21,0x81, +0x31,0x30,0x09,0xc7,0xb0,0xc2,0xee,0xeb,0x64,0x25,0xd6,0x7c, +0xc2,0x62,0xb5,0xe8,0x4f,0x60,0x08,0xdf,0xc4,0x21,0x96,0x9a, +0xc3,0x10,0xc1,0x21,0xa0,0xd7,0x2c,0xda,0x9a,0xd0,0x71,0x0e, +0x74,0x18,0x7c,0x88,0xd6,0x04,0xac,0x9b,0xd1,0x9a,0x15,0x0c, +0x16,0x93,0xa0,0xe6,0x7d,0xbd,0x07,0xaa,0x1c,0x03,0xf9,0x6c, +0xb7,0x7c,0xfd,0x34,0x5a,0x9a,0x9f,0xa5,0xe6,0x50,0x7b,0xb5, +0xf0,0xeb,0x94,0x1b,0xe6,0xa9,0x7c,0xd8,0x16,0xbf,0xc5,0x2e, +0x1a,0x1c,0xf8,0x81,0x0d,0xc9,0x32,0xc9,0xd4,0x49,0xd1,0x6d, +0xa7,0x59,0xd2,0x50,0x60,0xff,0x81,0xe3,0x1c,0xbe,0x75,0x90, +0xa4,0x6e,0x4b,0x5a,0x17,0xab,0x79,0x4c,0xb1,0x9b,0xc9,0xa1, +0x4b,0xc1,0x94,0x13,0x70,0xfe,0x17,0x72,0xfb,0xfb,0x01,0xd0, +0x4a,0x84,0x08,0xee,0x6b,0xe6,0x08,0xae,0x0d,0xc2,0x25,0xc1, +0xeb,0x39,0x83,0xb0,0x03,0x41,0xf6,0x6a,0xa6,0x4c,0xba,0x96, +0xa4,0x87,0x39,0xdd,0x50,0x71,0x3f,0x5d,0x96,0xfe,0x59,0x3a, +0xac,0x8e,0x01,0x1f,0x0e,0xe7,0xc0,0x3c,0x6d,0xea,0xa5,0xc6, +0xea,0xc1,0x2b,0x4c,0x24,0x06,0x9b,0xe0,0xa2,0x8d,0xf3,0xb9, +0x0c,0xa1,0x83,0x98,0x76,0x6f,0x1b,0x34,0x6c,0xb0,0xb3,0xe6, +0xfb,0x1c,0x2e,0x28,0x9e,0xc0,0x15,0xd4,0xe1,0x25,0x32,0x2c, +0x83,0x24,0xb9,0x8c,0x45,0x43,0xf1,0x2b,0x22,0xd4,0x83,0xaa, +0x58,0xcf,0x8a,0xbf,0xc2,0x3d,0xda,0x79,0x2b,0xed,0xec,0x60, +0xc9,0xf7,0x3a,0x9c,0x35,0xe8,0xa5,0xf9,0xc8,0x51,0x71,0x8b, +0xe2,0xd1,0xdc,0x53,0x8a,0xff,0x29,0x6d,0x47,0x3d,0x6d,0x78, +0x0b,0x5f,0x65,0xe7,0x38,0x1b,0xcc,0x50,0x3c,0x9a,0xfb,0x65, +0x4b,0xd7,0x50,0xdc,0x0d,0x95,0x44,0x66,0x71,0xea,0xe8,0xa3, +0xb9,0xa1,0x23,0xf9,0xc8,0xaf,0x9a,0x72,0x6b,0x22,0x1a,0x30, +0xf1,0x8d,0x71,0x8d,0xb1,0xcd,0x5a,0xf1,0xfc,0x61,0xdb,0x68, +0xbb,0x28,0x7b,0x6e,0xa6,0xce,0x37,0xcc,0x1e,0xd4,0x30,0xc2, +0xc5,0xd3,0xf0,0xdd,0x1e,0x6b,0xfe,0x1f,0x30,0xbb,0x1f,0xd6, +0x97,0x82,0x05,0x27,0x98,0x31,0xc3,0xd6,0xd4,0x33,0xff,0xfa, +0xde,0xae,0xdf,0xde,0x63,0xc1,0x44,0x68,0x22,0x41,0x17,0xf6, +0xde,0xf4,0xeb,0x33,0xf3,0xe7,0xf3,0x0c,0xf2,0x37,0xa4,0x6d, +0xa3,0x25,0xf8,0x0c,0x52,0xfa,0x79,0xe6,0xcf,0xf1,0x4f,0xf4, +0x13,0xf9,0xa8,0x69,0x41,0x73,0xbc,0x96,0x71,0xf2,0x6d,0x10, +0x46,0x34,0xd1,0x9c,0x41,0xa3,0xd5,0x38,0x06,0x57,0xa3,0x92, +0xb4,0x4e,0x0f,0x54,0xff,0xf1,0xf5,0xb7,0xe9,0x30,0x9f,0xa6, +0x49,0x99,0xb8,0xf0,0xe6,0x0a,0x2a,0xdb,0x71,0x75,0x0a,0x3d, +0x03,0xb5,0xcd,0x3f,0x80,0xa1,0x2a,0x30,0xb8,0x9c,0x74,0x3e, +0x28,0xfd,0x21,0xfb,0x13,0xc3,0x6c,0x3e,0x70,0xb5,0xc7,0x4c, +0x9b,0x55,0x1c,0xa6,0xbb,0x90,0xba,0x4f,0x4a,0xe1,0x95,0xd4, +0xfb,0x46,0x69,0x7c,0xf0,0x12,0xef,0xc9,0x2e,0x9b,0xa8,0x20, +0x7e,0x11,0x3e,0x20,0x6e,0x07,0x5d,0x83,0x5c,0x82,0x15,0xff, +0x1f,0x1d,0x37,0x48,0x1d,0xc8,0x4e,0x4d,0x5a,0x9d,0x4e,0xd5, +0x85,0xa9,0x18,0xc3,0x1a,0x05,0x18,0x1e,0x34,0x0d,0x4e,0xd5, +0xe6,0x8f,0xa5,0x1f,0xcf,0xec,0xca,0xe6,0xb0,0x0e,0x95,0xd9, +0x9c,0x5d,0x92,0x7f,0x30,0x27,0x72,0xf3,0x8f,0xc9,0xa0,0x9b, +0x6d,0xc8,0x68,0xc8,0xaa,0xcb,0xe2,0x86,0x04,0x9a,0x9c,0x9c, +0x10,0xf6,0x29,0xf6,0x59,0x5f,0xa1,0xd8,0x14,0x41,0x07,0x7e, +0x55,0xfc,0xab,0xdf,0x68,0x0e,0xd9,0x85,0x0c,0x1a,0x1b,0x80, +0x21,0x13,0x8c,0xd3,0xd6,0xce,0xc2,0x55,0x1a,0x65,0x7a,0x3c, +0x68,0x5d,0xff,0x0a,0xc6,0xa5,0xc3,0x7a,0x0e,0x3c,0xf7,0x31, +0x5b,0x22,0x96,0x87,0x1a,0x4a,0x2d,0xc3,0xfc,0x03,0xb6,0xab, +0xcd,0x50,0x6c,0xc0,0xf3,0x84,0xf9,0xac,0xae,0xfa,0x66,0xa6, +0x2c,0xed,0x54,0xe2,0x57,0x9f,0xa9,0xf6,0x61,0x35,0x8d,0x82, +0x1b,0xe5,0x8b,0xc8,0xa0,0xb8,0x84,0xcd,0xac,0x4d,0xaf,0x4d, +0xad,0xd3,0x4d,0xe3,0x3d,0xa6,0x9b,0xce,0x58,0xb1,0xb8,0xdd, +0x86,0xef,0xec,0xae,0xef,0xab,0x18,0xe0,0x70,0x78,0x78,0x17, +0xf9,0x0a,0xf4,0xe5,0x7e,0x98,0x34,0x7c,0x95,0x05,0x63,0x21, +0x9e,0xe0,0x24,0xc8,0x87,0x49,0x8c,0x7c,0x83,0xc8,0x93,0xcd, +0x4c,0xdc,0xa5,0x98,0x6b,0xb7,0x55,0x45,0x6d,0xe6,0xf0,0xf6, +0xa8,0x0d,0x87,0xd6,0x72,0x6b,0xf4,0xae,0x31,0xe1,0xeb,0x83, +0xd7,0x1d,0xdc,0xc4,0x09,0x73,0x98,0xc3,0xe1,0x47,0xc2,0x0f, +0x87,0x73,0x26,0xa1,0x41,0x07,0xad,0xd4,0xa6,0x31,0xb9,0x86, +0x92,0xef,0x98,0x0b,0x35,0x25,0xb7,0xb2,0x64,0xb1,0x19,0x71, +0x19,0xb1,0x99,0xdc,0x47,0x03,0x9b,0x98,0xa4,0x13,0xf1,0x03, +0xf1,0xa7,0xb9,0xeb,0x0c,0xbe,0x09,0x1e,0x44,0xff,0x88,0xfe, +0x61,0x23,0x29,0x7e,0xc1,0x24,0x9c,0x8c,0xef,0x8f,0xed,0xe2, +0xee,0xe9,0x92,0x16,0x9f,0x76,0x97,0x4a,0xb7,0xda,0x66,0xde, +0xb3,0xc2,0xa2,0xc9,0xae,0x90,0x13,0x03,0xd6,0x10,0x2a,0xa0, +0x41,0x9c,0xc4,0xc0,0xdd,0x2c,0x92,0xd2,0x9f,0x34,0x98,0xd8, +0xcf,0xc1,0x97,0x4c,0xb4,0x66,0x84,0x6e,0x84,0x29,0xb7,0xf2, +0x14,0xf1,0x28,0x37,0xab,0xb7,0x2f,0x76,0xb5,0xe1,0x5b,0xbd, +0xdb,0x5c,0x2b,0x76,0x73,0x4a,0x42,0xb1,0x30,0x8d,0x64,0x15, +0x67,0x96,0x64,0xd0,0x3c,0xe9,0x16,0x7c,0x2c,0x06,0xe1,0xc7, +0x4f,0x18,0x9b,0x15,0xdb,0xd5,0x37,0x99,0x54,0x9b,0xf2,0x59, +0xa9,0x99,0x69,0x99,0xe9,0x1c,0x0e,0x0d,0x9e,0x81,0x8e,0x1e, +0xec,0x00,0x07,0x47,0xb6,0xb8,0xb0,0xb0,0xb8,0xa0,0x94,0x13, +0x26,0x30,0x47,0xde,0x8b,0x9a,0x1a,0xa6,0xce,0xed,0x0a,0x0f, +0x09,0xd2,0x52,0x9b,0xcb,0x64,0xe9,0x49,0xbe,0x60,0x1e,0x96, +0x55,0x7d,0x9b,0x26,0x4b,0xbd,0x13,0x07,0x2f,0xc7,0xc2,0x5c, +0x6e,0xb8,0x5c,0x7c,0x8b,0xe6,0x08,0x3b,0x69,0x8e,0x10,0x41, +0x73,0x04,0x79,0xa4,0x7c,0x0f,0x59,0x2a,0x8e,0xfb,0x94,0x45, +0x13,0xf1,0x2a,0xc1,0x37,0x85,0x5a,0x78,0x93,0x11,0x2e,0xce, +0x22,0x8b,0xc4,0x71,0x0f,0x58,0x58,0x82,0xbd,0x24,0x98,0x5d, +0xe5,0xbd,0x7b,0xa6,0x89,0xb4,0xc8,0x72,0xb0,0xb4,0xa9,0xbc, +0xa8,0x54,0x25,0x31,0x31,0xf6,0x68,0x52,0x24,0xbc,0xb1,0x8c, +0x2f,0x6f,0xc5,0x97,0xae,0x07,0x27,0x1f,0x52,0xbc,0x96,0x35, +0x34,0x24,0x32,0x4e,0x92,0x59,0x9c,0x54,0xde,0xad,0x9a,0x4e, +0x23,0xc6,0x46,0x1a,0xe3,0x35,0x35,0x30,0xff,0x2c,0xfd,0x73, +0x54,0x1f,0x8e,0x6a,0x9d,0x3e,0x05,0xf9,0x8a,0x3f,0x39,0xfd, +0x98,0xc3,0xc0,0x0c,0xc5,0x57,0xe2,0x35,0xc3,0x73,0xb0,0x06, +0x66,0xb2,0xfa,0xea,0x0b,0x75,0xf0,0x0d,0xd3,0x72,0x23,0xbe, +0x3e,0xab,0x26,0xbb,0x92,0xea,0xda,0xde,0xa1,0x56,0x61,0x35, +0x9b,0x65,0x22,0xb9,0xc5,0x7c,0x5b,0x5b,0x74,0x37,0x43,0x96, +0x7e,0x3e,0xf6,0xce,0x4f,0xaa,0xe2,0x25,0x26,0xaf,0x20,0xbb, +0x20,0xab,0x98,0x13,0x26,0x41,0x00,0xd9,0x21,0xb6,0x9d,0x67, +0x85,0x36,0x1c,0x4b,0xb6,0x8a,0x6d,0x97,0x58,0xe1,0x11,0x9d, +0xd4,0x30,0xd4,0x37,0x5c,0x57,0x4d,0xbb,0x4b,0x34,0x00,0x35, +0x63,0xa6,0x2e,0xaf,0x2a,0xbf,0xbc,0x90,0x03,0x67,0x26,0x5a, +0xc3,0xd1,0x13,0x67,0xda,0x14,0x98,0xf0,0x5f,0x95,0xf6,0x94, +0xd4,0x97,0x27,0xc5,0x27,0x47,0x27,0x45,0x83,0xc9,0x5a,0xbe, +0xa4,0x0b,0xd5,0xaf,0x04,0x26,0x86,0x45,0x1d,0x0a,0x53,0x09, +0x09,0x0a,0xa7,0x8b,0xc8,0x4f,0x2d,0xad,0x57,0x85,0x5e,0xe6, +0xc8,0x86,0x68,0xad,0x30,0x53,0xea,0xbd,0xd9,0x38,0x82,0x71, +0x8c,0x6e,0x70,0xfa,0x59,0x19,0x98,0x80,0x3d,0x34,0x63,0x1a, +0x5b,0x58,0x97,0xd7,0x98,0xdd,0xc4,0xc1,0x31,0x06,0x37,0x1e, +0x79,0x3f,0x7c,0xa9,0x74,0x47,0x44,0xd0,0x3e,0x53,0xb5,0x8d, +0x4c,0x86,0xbe,0xe2,0x55,0x2e,0x75,0xb5,0xdf,0xa7,0xc8,0x52, +0xbe,0x8f,0xf9,0x19,0x7c,0x55,0xf1,0x53,0x26,0xb5,0x2a,0xa5, +0x2a,0xa9,0x46,0x37,0x9b,0xf7,0xc2,0xf1,0x66,0xef,0x6d,0x5a, +0xd4,0x61,0xc9,0xe7,0x14,0x66,0x17,0xd2,0x95,0x88,0xde,0xec, +0x8c,0x42,0xcf,0x9f,0x15,0xdb,0xde,0x1f,0xcf,0x53,0x18,0x16, +0xa7,0xd8,0xf7,0x5e,0xb4,0xbb,0x4b,0x20,0x02,0xa7,0x7e,0xf6, +0x18,0x66,0xde,0xe8,0xdd,0x70,0x47,0x77,0x0d,0x4e,0xa1,0x7f, +0xd4,0x0d,0xaf,0xe2,0xcc,0xef,0x97,0xe0,0x14,0x8c,0x80,0x29, +0x8b,0x70,0xa3,0x3e,0x6c,0xc4,0x45,0x27,0x61,0x11,0x6c,0xe8, +0xc7,0x0d,0x0f,0xd8,0x36,0xc1,0x83,0xcc,0xc1,0x29,0xdf,0xb2, +0x42,0x3d,0x1a,0x11,0xdc,0x82,0x73,0x61,0x0b,0x8b,0xdf,0x2f, +0x22,0x28,0xfd,0x10,0xa4,0x2c,0xb5,0x6b,0x29,0x01,0xe9,0x03, +0x9a,0xae,0x2b,0xc9,0x0d,0xe5,0xe6,0x04,0x7c,0xbb,0xd1,0xf7, +0x8e,0x16,0xee,0xa6,0xc6,0xb2,0x5e,0x1b,0x69,0x6a,0x60,0x24, +0x7f,0xa5,0x07,0x13,0x18,0xf1,0xaa,0xf8,0x0f,0xaa,0x26,0xcb, +0xe4,0x8b,0xd0,0x6b,0x38,0x9b,0x85,0x15,0xb0,0x84,0xe0,0x4b, +0xc2,0x00,0xbc,0xc4,0x40,0x23,0x9d,0x3a,0x80,0xd5,0xde,0xe3, +0xa8,0xe1,0x22,0xad,0xb4,0x6a,0x2a,0x2c,0x2e,0xca,0x2d,0x55, +0x49,0x48,0x4e,0x38,0x9a,0x18,0xf9,0x91,0x3a,0xdf,0x90,0x57, +0x56,0x98,0x5f,0x9e,0x98,0x14,0x4f,0x2f,0x3f,0x5e,0xcf,0x37, +0x34,0x6e,0x3e,0x1f,0x92,0x1a,0x7a,0x54,0xf1,0xfa,0x33,0xc5, +0xe6,0xe4,0xe9,0xc5,0x89,0x95,0xc5,0xaa,0x59,0x06,0x01,0xac, +0xa9,0xbf,0xab,0xb5,0xa7,0xd4,0xba,0x39,0x34,0x25,0x2c,0x26, +0x24,0x44,0x25,0x22,0x82,0xaa,0x4f,0x6a,0x51,0x7c,0x45,0x81, +0x6a,0x0e,0x8b,0x4b,0xd0,0x95,0x80,0x9e,0x9e,0xf8,0xf5,0xc0, +0x90,0x60,0xa9,0x37,0x28,0x7c,0xa9,0x4b,0xd3,0x79,0xd1,0xd2, +0x8c,0x08,0x96,0x18,0x2b,0x5a,0x32,0xf0,0x19,0xbc,0x4e,0xa2, +0x46,0xb6,0x6d,0xa7,0xd3,0xe5,0x18,0xec,0x67,0x2d,0xf6,0x39, +0xd9,0xec,0x96,0x5a,0xb7,0x84,0xa6,0x84,0x1e,0x0d,0x0d,0x1b, +0xdd,0x09,0x3d,0xad,0x30,0xbe,0xb2,0x40,0x35,0xdf,0x70,0x1f, +0xab,0xe3,0x63,0xbf,0xcb,0x99,0xa2,0x6d,0x2c,0x2a,0x2a,0xc8, +0xab,0x54,0x49,0x4c,0x4a,0x88,0x49,0x8c,0xf8,0x68,0x23,0x5f, +0x9f,0x5f,0x5e,0x94,0x5f,0x91,0x90,0x98,0x70,0x34,0x21,0xf2, +0x93,0xb5,0x14,0xad,0xfa,0x45,0x8a,0x36,0x86,0xa2,0x55,0xba, +0x29,0xaf,0x20,0xdd,0x0e,0x2d,0xf6,0xed,0x56,0x8d,0x9d,0xbc, +0x6d,0xab,0x69,0xbb,0x59,0x2d,0x07,0x8b,0xbc,0xc8,0x6f,0xe3, +0x06,0x85,0x8b,0x10,0x04,0x97,0xd8,0x8b,0x78,0x89,0xca,0x48, +0x3c,0x8a,0x93,0x15,0x1b,0x8b,0xd2,0x12,0xb0,0x33,0x27,0xa7, +0x43,0x26,0xef,0xc6,0x6e,0x16,0xfb,0x50,0x85,0x96,0x05,0x5b, +0x69,0x59,0xb0,0x85,0x96,0x05,0xbb,0x96,0xb0,0x62,0x13,0xaa, +0x91,0x07,0xb0,0x75,0x91,0xa2,0xe5,0x01,0xec,0x5a,0xc4,0x0e, +0x4f,0x52,0x27,0x8e,0xad,0xfa,0xdd,0xa6,0x8a,0x90,0xd4,0xe9, +0xd0,0x63,0xda,0x64,0xc5,0x09,0xd7,0xa9,0xa6,0x9d,0x42,0x65, +0x06,0x49,0xd0,0x4a,0xed,0x65,0xd2,0x56,0xa7,0x96,0xa1,0x82, +0xbe,0xb4,0x73,0x2a,0xe0,0x38,0x0d,0x25,0x4c,0xa6,0xb9,0xe4, +0x11,0xd3,0x94,0x95,0x55,0x27,0x33,0x80,0x3c,0x82,0xe6,0xd7, +0xc1,0x9c,0x11,0xbf,0x11,0x75,0xc8,0x59,0x18,0xd3,0x06,0xef, +0x16,0xfe,0xa2,0x9b,0x4b,0x15,0x6c,0xac,0x13,0xbe,0xaa,0x35, +0x83,0x13,0x74,0xc0,0x95,0xc4,0x16,0xc7,0x94,0xc4,0x50,0x57, +0x62,0xbe,0x8e,0x51,0x12,0x36,0x0a,0x35,0x04,0xde,0xbc,0xf4, +0xf5,0x77,0x05,0x3f,0xd0,0x34,0xa5,0xf0,0x83,0xc7,0x73,0x41, +0x4d,0xbd,0xec,0x04,0x8f,0x6a,0x97,0xe7,0x3f,0xf4,0xf8,0x92, +0xdb,0xc1,0x78,0xcd,0x5f,0x36,0x0f,0xdf,0xda,0xc1,0xe1,0xd4, +0xe1,0x59,0x04,0xe6,0xc2,0x8c,0x3e,0x9c,0xf1,0x08,0x26,0x52, +0x87,0x3e,0xf1,0x21,0x2c,0xec,0xc5,0x85,0x3f,0xea,0xcd,0xc0, +0x39,0x86,0x30,0x67,0x21,0x2a,0xe1,0xaf,0xa0,0x34,0x0b,0x17, +0x19,0xc0,0x22,0x9c,0xcb,0x6e,0x13,0xe4,0x04,0x0c,0x66,0xa2, +0x01,0x23,0x38,0x55,0x12,0xd1,0x17,0x27,0x2b,0xb6,0xde,0xa0, +0xbe,0xa4,0x39,0x3b,0xa7,0x4d,0x26,0xe4,0xe3,0x1e,0x63,0x56, +0xd8,0xae,0x4c,0x6f,0xcc,0x1c,0xb9,0x41,0x98,0xb6,0x9c,0xd1, +0x1b,0xc1,0xc6,0x2c,0x46,0xe0,0x6e,0x32,0xd0,0xde,0x3d,0x50, +0x35,0x68,0x5b,0xc6,0x7b,0x18,0x5b,0x19,0xe8,0xdb,0x73,0xd0, +0x6e,0x4e,0x06,0x3b,0x7b,0x4e,0xd6,0x0e,0xd9,0xd0,0x36,0x43, +0x13,0x1d,0x03,0x5a,0xf6,0x34,0xfd,0x42,0xa9,0xbc,0x47,0xa9, +0xc0,0x19,0x0c,0x24,0x67,0x8e,0xf5,0x9c,0xaf,0x3b,0x4d,0x87, +0xb8,0xeb,0x99,0x68,0xe8,0xd8,0x72,0xd0,0x63,0x4b,0x4e,0x77, +0xf6,0x9f,0xab,0x3d,0x65,0x57,0xca,0xbb,0xe9,0x1b,0x6a,0xea, +0xda,0xd3,0x38,0xc7,0x0a,0x3b,0x48,0xba,0x85,0xe4,0x73,0xa6, +0x2d,0x3d,0xaf,0x56,0x06,0x02,0xfa,0x99,0x50,0xab,0xb9,0xc0, +0xc2,0x7c,0x65,0xda,0xfc,0x31,0xd3,0x96,0x95,0xd9,0xa4,0x68, +0xf6,0x36,0x81,0x95,0x8a,0xe6,0x97,0xe1,0x9f,0x44,0x0f,0x9e, +0xd0,0xe2,0x36,0xcb,0x80,0xb8,0x3b,0x99,0xd9,0x5b,0xed,0xa9, +0xb0,0xe7,0xdb,0x4a,0xbb,0x5a,0x6a,0x9b,0x38,0xac,0xad,0x20, +0x2e,0x76,0xe6,0x8e,0xd6,0x7b,0x4a,0xed,0xf8,0xce,0xb2,0xe3, +0x2d,0x75,0xad,0x5c,0xe0,0x22,0xe2,0x62,0x65,0x6c,0x66,0xec, +0x5a,0x66,0xcf,0xf7,0xd4,0xf5,0x9d,0xa8,0xa3,0x85,0xbd,0x73, +0x25,0xed,0x66,0x62,0x69,0xee,0x49,0x87,0x76,0x56,0xf7,0xb4, +0xd6,0x77,0x72,0x82,0x8d,0xf8,0x09,0xb1,0x67,0x3c,0x0f,0x25, +0xd6,0xcb,0x04,0x03,0x90,0x0c,0x8a,0xef,0xe9,0x7e,0xc5,0x1e, +0xc1,0x12,0x17,0xca,0xcb,0x31,0x53,0x38,0x78,0x80,0xf6,0x6c, +0x66,0x51,0x7a,0x49,0x6a,0xa9,0x61,0x26,0x1f,0xe2,0x1e,0xe4, +0xb1,0x9f,0x66,0x86,0xb3,0xc5,0xa9,0xfd,0xbd,0xf0,0x84,0x09, +0x0d,0x6b,0xb1,0x04,0x35,0x18,0xdf,0x01,0x93,0x63,0x60,0x50, +0xe5,0x8e,0x68,0xc6,0xa8,0x17,0xfa,0x9f,0x93,0xb6,0x33,0x0d, +0x59,0x59,0xb4,0x66,0x53,0x67,0x8d,0xf3,0x25,0xc3,0x99,0xfb, +0xc9,0x23,0x38,0x3d,0x8b,0xc5,0xd3,0x38,0x9b,0xfc,0x02,0xa7, +0xa7,0xb2,0x4a,0x60,0x23,0xbf,0x47,0xac,0x66,0xe8,0x2f,0xdf, +0xb0,0xb5,0xc9,0x9c,0xbf,0x73,0xf3,0xf4,0xf7,0x9d,0x3f,0x73, +0x72,0xfb,0xe1,0x7b,0x64,0xd7,0x75,0x8b,0x2b,0x2e,0x37,0x4e, +0x81,0x4a,0x09,0x4c,0x49,0x82,0x0f,0xb8,0xb6,0x93,0xe8,0xcc, +0xa4,0xf5,0xa4,0xf4,0x26,0xf5,0x1a,0x24,0xf1,0xfb,0x71,0xba, +0x13,0x2e,0x57,0xc7,0xd7,0x1a,0xcd,0xf8,0xc2,0xfa,0xbc,0x96, +0x9c,0x8e,0xb4,0xe9,0x45,0x1f,0x34,0xcd,0xb3,0x5f,0x67,0xbc, +0x71,0xf3,0xd6,0x3a,0x7d,0xfe,0xdc,0x85,0xee,0xcb,0x4d,0xd7, +0xeb,0x37,0x75,0x6e,0x19,0xdc,0xc6,0x89,0xe3,0x7f,0xa5,0xa5, +0xd3,0xd4,0x45,0xb0,0xce,0x10,0xd7,0x2d,0x81,0xa9,0x86,0x68, +0x00,0x9f,0x83,0x01,0x0b,0xb1,0xa8,0x47,0x22,0x70,0xe2,0x7e, +0x1c,0x6f,0x8b,0x2f,0x3b,0x3e,0x09,0x00,0xe6,0x10,0xa8,0x70, +0x62,0x41,0x28,0xb1,0x7b,0x7f,0x1d,0x2a,0xad,0xdd,0x58,0x6b, +0xcc,0x57,0x54,0x14,0x95,0xe7,0x97,0x73,0xe2,0xea,0x7e,0x21, +0x86,0xad,0x3a,0x5e,0xd9,0x57,0xd4,0xc7,0x09,0x2f,0x2f,0x27, +0xdd,0xe2,0xcb,0xc6,0x2c,0xdc,0xc1,0xd3,0x24,0x69,0x7f,0xd2, +0xfe,0xc4,0x80,0xb6,0x02,0xde,0xbf,0xdb,0x7b,0xc0,0xa3,0xd3, +0x6e,0x1f,0x9f,0x16,0x90,0xea,0x9f,0xb2,0xcf,0xf4,0x90,0x71, +0xa4,0x7e,0xf4,0x99,0xde,0x53,0x17,0x5a,0x86,0xec,0xaa,0x79, +0x77,0x2b,0x6b,0x13,0x0b,0x8b,0xa0,0xcc,0xc0,0xcc,0x03,0x99, +0x0d,0x2d,0x55,0x1d,0x45,0xcd,0x36,0xe5,0xbc,0x9f,0x83,0x87, +0xa5,0x93,0xfd,0x81,0xcc,0x80,0x8c,0xc0,0x34,0x77,0x47,0xbe, +0xc5,0xbd,0xd3,0xbe,0xd1,0x21,0x30,0xf0,0x40,0xd0,0x81,0x60, +0xee,0xb0,0xbb,0xdb,0x11,0x37,0xb5,0x78,0xa3,0x53,0xb1,0xa7, +0xe2,0x4e,0x26,0xa8,0x60,0x62,0x3f,0xa4,0xb1,0x4d,0xf1,0x8d, +0x09,0x75,0x09,0xdc,0x8e,0xcd,0xa4,0xc4,0x3a,0xd7,0x2a,0xdb, +0xac,0xb3,0x88,0x3f,0xd0,0xe9,0xd7,0xe5,0xd3,0xcc,0x61,0x0d, +0xf5,0x7d,0x0d,0xc7,0x2b,0x87,0xf2,0x07,0xcd,0xf3,0x79,0x7f, +0x3d,0x0f,0x03,0x67,0x4b,0x1a,0x1e,0xde,0x0a,0x23,0x1a,0x9f, +0x3a,0x82,0x5a,0x00,0xb8,0x71,0xb0,0x69,0x08,0xb7,0x32,0x51, +0xd7,0x0f,0x7f,0x72,0xe4,0xcb,0x73,0xe9,0xa7,0xb2,0x7b,0x73, +0x5d,0x68,0x7e,0xc6,0xd8,0xe1,0x3c,0x6f,0x9c,0x13,0xc2,0x0d, +0x1f,0x60,0x5d,0xc2,0x5d,0xc3,0x5d,0x23,0x32,0xb4,0x78,0x78, +0xa5,0x18,0x26,0xd6,0x7d,0x52,0x1e,0x32,0xc0,0x5b,0x04,0x1a, +0x1c,0xd0,0x0d,0xe4,0x84,0x69,0xb0,0x92,0xcd,0xc3,0x03,0xad, +0x38,0xff,0xf2,0x87,0x55,0x16,0xa7,0x12,0x12,0xce,0xe5,0x41, +0x28,0x6f,0x52,0x24,0x19,0xfe,0x44,0x38,0x4f,0x74,0xe0,0x1e, +0x4d,0xda,0xdf,0x9f,0x46,0x7a,0xe3,0xbb,0x13,0x4f,0x24,0xc7, +0x2c,0x8d,0x5d,0x93,0xa0,0xce,0xe1,0x52,0x06,0x5f,0x83,0x49, +0x44,0x54,0xd3,0x85,0x8d,0xc3,0x13,0x4f,0xc9,0x27,0xc2,0x42, +0x06,0xff,0x89,0x3c,0x41,0xe3,0x43,0xef,0xdb,0xcc,0x97,0xf6, +0xbb,0x48,0xda,0x7f,0x4c,0x01,0x25,0x30,0x51,0xad,0xd3,0x66, +0xa1,0x5c,0x59,0x7c,0xfb,0xa4,0xf0,0x36,0xd5,0x8c,0x68,0xf9, +0x97,0xc4,0x0a,0x8d,0xb6,0xe3,0x94,0xa9,0x38,0xae,0xc1,0x90, +0xaf,0xaa,0xae,0x6a,0xaa,0xe8,0xe2,0xc4,0x86,0x53,0xf2,0xc9, +0x6c,0xed,0xcd,0x8a,0xcf,0xf3,0xbf,0xe5,0xe0,0x27,0xdc,0x44, +0x60,0x60,0x08,0x07,0x60,0xe2,0x4e,0x9c,0x88,0xe5,0x3a,0x50, +0x8e,0xa1,0x0c,0x9a,0xa8,0x4f,0xc1,0x3c,0x94,0x49,0xab,0x35, +0xc1,0x13,0x26,0x50,0xa3,0x61,0x12,0x40,0x46,0xd3,0xd2,0x44, +0x9c,0xf4,0x03,0xbe,0x0c,0x56,0xf8,0x76,0xfd,0x69,0x1e,0x23, +0x61,0xea,0xa6,0x47,0x60,0xa6,0x8a,0xe9,0xb0,0x89,0x68,0xb2, +0xd3,0xfd,0x2c,0x96,0x2d,0x90,0xb6,0x98,0x35,0xb5,0xb5,0x9d, +0xcc,0xaa,0x53,0x89,0x4f,0x4d,0x3e,0x9a,0x18,0x7a,0x19,0x5f, +0xe7,0xdb,0x1b,0x36,0x83,0x52,0x78,0x66,0x58,0x4c,0x60,0x98, +0x4a,0xb0,0xe2,0x45,0x72,0x69,0x55,0x71,0xe5,0xfd,0xaa,0x67, +0x58,0xb8,0xae,0x6c,0xc4,0xa2,0x64,0x9f,0xcd,0xe6,0x15,0xd2, +0x66,0xb3,0x86,0xb6,0xca,0x8e,0xcc,0xaa,0xff,0xc3,0xd7,0x5b, +0x40,0x67,0x71,0x7c,0x7f,0xe3,0x40,0xc9,0xee,0x62,0x69,0x4b, +0x3b,0x74,0x13,0x68,0x82,0x14,0x28,0xee,0x0e,0x41,0x43,0x80, +0x10,0x79,0xe2,0xee,0xee,0x06,0x21,0x1e,0x48,0x82,0x87,0xb8, +0xbb,0xbb,0xbb,0xbb,0xe0,0x4e,0x29,0xd4,0xa0,0x06,0xd4,0x28, +0xd2,0xbb,0x4f,0xef,0xe6,0xfb,0xff,0xcf,0xd2,0x7e,0x7f,0xe7, +0xfd,0x9d,0xf7,0x9c,0xf7,0xe4,0x9c,0x7d,0x26,0x4f,0x66,0x37, +0xb3,0x73,0xe7,0xde,0xfb,0xf9,0xcc,0xdc,0xb9,0xa3,0x14,0x9f, +0x12,0x7f,0x31,0xf1,0xe4,0x33,0x54,0xe2,0xdb,0x1b,0x56,0xc3, +0x9c,0x53,0x19,0x51,0xb1,0x61,0x27,0x95,0xc2,0xa5,0xfb,0x52, +0xaa,0xe3,0xab,0xae,0x28,0x0f,0xd2,0x97,0x6b,0x94,0x7f,0x49, +0xb4,0x6c,0x77,0xb8,0xa9,0x07,0x73,0x62,0x31,0xeb,0x1c,0x91, +0xa9,0x77,0xb7,0x68,0xb0,0xa0,0xbb,0x50,0xe9,0x18,0x4e,0x33, +0x3a,0xbc,0x4d,0xaf,0xca,0x84,0x87,0xe9,0x3f,0xdc,0x81,0xf7, +0x20,0x44,0x19,0x06,0x8d,0x28,0xc5,0xf6,0x39,0xef,0x77,0xce, +0x5f,0xc5,0x3d,0xc4,0x29,0xcc,0x9e,0x8a,0xc2,0x91,0x1d,0xce, +0x79,0x58,0x3e,0x44,0x3d,0xfc,0x0d,0xf1,0x1a,0x19,0x44,0xcf, +0x57,0xe0,0x2e,0xbc,0x8f,0x1f,0xb1,0x99,0x85,0x19,0x65,0x49, +0xf9,0x06,0x94,0xff,0x1e,0x0b,0xf3,0x08,0xf6,0xe1,0x36,0x4e, +0xdc,0x19,0xa2,0x44,0xda,0x7b,0x10,0xbd,0xff,0x62,0xa0,0x0a, +0x3b,0xc8,0x88,0xbc,0x07,0x18,0xf1,0xe9,0x46,0x26,0x53,0x47, +0xe1,0x2e,0xd3,0x9c,0x9d,0xd1,0xa1,0x2a,0x57,0xc6,0x60,0x16, +0x67,0x6c,0xa0,0x5e,0x14,0x37,0xc1,0x24,0x09,0x59,0x6d,0x90, +0xb6,0x26,0x6e,0x02,0x96,0xb6,0x35,0x4c,0xfe,0x84,0xd8,0xa2, +0xe1,0x51,0x5c,0xb4,0x14,0xb9,0x7a,0x63,0xbe,0xac,0xa2,0xbc, +0xb1,0xac,0x83,0x13,0x4b,0x47,0xe5,0x4a,0x6c,0xf5,0x83,0xb2, +0xa7,0xb9,0x2f,0x38,0xe1,0x12,0x4e,0x23,0xef,0x4e,0x19,0xbf, +0xaf,0xbd,0x17,0x33,0xee,0x6b,0xed,0xc5,0x69,0xc6,0x30,0x0d, +0xa9,0x53,0x3a,0x84,0x71,0xa8,0x0d,0x71,0x07,0xb0,0xd6,0x14, +0x6a,0x77,0xe2,0x25,0x33,0xb8,0xb4,0x05,0x07,0x8d,0xe4,0x07, +0xfa,0xf1,0xcb,0x6f,0x21,0xbf,0x1b,0xf3,0x1f,0xc1,0x58,0x0f, +0x8e,0xdd,0x81,0x5c,0xd0,0xc6,0xdc,0x1b,0xb0,0x8d,0xd1,0x06, +0x8e,0x1c,0xc4,0x8c,0x5b,0xec,0x5a,0x0c,0x21,0xa0,0xb3,0x0e, +0x75,0x18,0xc1,0x78,0x0e,0x5a,0xff,0x08,0xd6,0xd4,0x51,0x70, +0xc2,0x56,0x02,0xdf,0x22,0x61,0xd3,0x4a,0x92,0x4b,0x93,0x4a, +0x0d,0xd3,0xf9,0x28,0xcf,0x48,0xb7,0x08,0x4f,0x6e,0xb5,0xe8, +0xc0,0x84,0x9c,0x0b,0x3e,0x1b,0x7c,0x2e,0x5d,0xc6,0x3f,0xcc, +0x78,0x90,0x79,0x27,0xe7,0xe8,0x96,0xed,0xfb,0x17,0x69,0xd5, +0x59,0xf0,0xbf,0x5f,0xf9,0xee,0xd1,0xcd,0x9f,0x38,0x3c,0x83, +0xca,0x2c,0x85,0x9e,0x30,0x85,0x69,0xcd,0x91,0x66,0x89,0xaf, +0xb1,0x12,0x9e,0x4d,0x2b,0xe1,0x1e,0xe3,0x2b,0x22,0xb7,0x10, +0x4c,0x07,0xc5,0xa4,0xff,0x4c,0x1f,0xb9,0x22,0x38,0x0c,0xb1, +0x13,0x1f,0x0a,0x57,0x09,0xee,0x7d,0x06,0x7b,0x19,0x48,0x39, +0x4e,0xd0,0x1d,0x2e,0x83,0x3b,0x8b,0x09,0xd2,0x49,0xc3,0x33, +0xc0,0x94,0xd2,0xb1,0x89,0xdd,0xe6,0xe4,0x39,0xec,0x5d,0xc5, +0x9a,0x4e,0xdd,0xc2,0xea,0x87,0xeb,0x45,0xea,0x9c,0xe2,0x60, +0x1a,0x2b,0x8c,0x61,0x1f,0x81,0x16,0xdc,0x86,0x2d,0x2c,0x58, +0x4b,0x07,0x2c,0xb5,0xc0,0x5e,0x68,0x61,0x31,0x95,0xd2,0x58, +0xd9,0x01,0x90,0xd1,0x6f,0x51,0x46,0xb9,0xc8,0x97,0x94,0x8a, +0x28,0x0a,0x15,0xc2,0x33,0x02,0xa1,0xad,0x4c,0xb7,0xed,0xb8, +0xc3,0x4d,0x97,0xb2,0x01,0x1e,0x57,0xdf,0x59,0xf8,0xca,0xf3, +0x3b,0x4e,0x83,0xf1,0xd9,0x82,0x53,0x16,0xe1,0xbc,0x43,0x65, +0x46,0xfc,0x78,0xe5,0x70,0x7d,0x47,0x0b,0x07,0xd3,0x61,0x3d, +0xc9,0x30,0x6e,0x34,0x1e,0x32,0xe3,0xd0,0x97,0xe9,0xef,0x6e, +0xec,0x4f,0xef,0xe5,0xc4,0xf1,0x10,0x32,0x71,0x76,0xe4,0x2d, +0xe8,0xca,0x55,0x58,0xd4,0x35,0x20,0xf0,0x89,0x58,0x87,0x9f, +0x30,0xf2,0x0b,0xe5,0xc4,0xc9,0xd2,0xcc,0x59,0xe6,0xec,0xd8, +0xe0,0xd3,0x7c,0xa2,0x8d,0x03,0x1b,0xb8,0x23,0xca,0xc4,0x56, +0xc6,0x25,0xc6,0xe9,0x8c,0xf3,0xd9,0x64,0x29,0x27,0x58,0x3a, +0xcc,0x2a,0x7e,0x56,0x1b,0xdd,0xcb,0x1b,0x07,0xe9,0x86,0x68, +0x85,0x73,0xe0,0x05,0x8a,0x6c,0x2f,0x7e,0x02,0x93,0x17,0xc0, +0x76,0x9d,0xb2,0x1e,0xfe,0x50,0xa1,0x7e,0x85,0x55,0x6d,0x5f, +0x45,0x6f,0x6b,0x4b,0x3b,0x47,0x09,0x46,0x20,0xc1,0xc7,0xdf, +0xc1,0x63,0x06,0x3f,0x99,0xba,0x1a,0x1f,0x3f,0xa3,0x78,0x6d, +0x96,0x94,0xfe,0xb1,0x0d,0x3f,0x64,0x93,0x72,0x93,0xf2,0x12, +0x72,0x2e,0x9e,0xbb,0x70,0xee,0xe2,0xb9,0xee,0x1c,0x3e,0xac, +0x36,0xb4,0x36,0xa4,0x8a,0x83,0x49,0xbd,0x78,0x80,0x49,0x2a, +0x48,0x28,0x88,0xcb,0x37,0x4e,0xe4,0x83,0x77,0xd9,0xef,0x33, +0x34,0xe5,0x92,0x97,0x83,0x9e,0x3e,0xea,0xa1,0xa2,0x21,0x30, +0x6c,0x24,0x12,0x27,0x5c,0xbc,0x1d,0x3f,0x6c,0x34,0xe3,0xaf, +0xfc,0x59,0xf4,0x3a,0xee,0x27,0x2e,0x51,0xcc,0x1d,0x7a,0x97, +0xda,0xeb,0x42,0xec,0x69,0x95,0x5b,0xb8,0xa3,0xae,0xe1,0x30, +0x6c,0x88,0xca,0x8a,0x39,0x1f,0x4e,0xf5,0xf0,0xa4,0xc2,0x69, +0x98,0xf7,0x6b,0x23,0x53,0xeb,0x58,0x53,0x5d,0xd1,0x5a,0xd8, +0xa1,0x54,0xc3,0xe4,0xb8,0x67,0x39,0x66,0x38,0x99,0x27,0xf2, +0xd1,0x01,0x27,0xfd,0x22,0x03,0xb8,0xb5,0x13,0xef,0xf5,0x3f, +0x83,0xe0,0x2e,0x0c,0xbe,0xfb,0xee,0x7a,0x87,0x81,0xb7,0x42, +0x0a,0x49,0x2c,0x48,0xc8,0x8f,0x2f,0x90,0x9a,0xb1,0xd3,0x55, +0x5d,0x4f,0xa7,0xc9,0x99,0xaf,0xae,0x2b,0x6d,0xc9,0x6f,0xe3, +0x7a,0x98,0x7c,0xe7,0x5c,0xab,0x2c,0xbb,0xae,0x5c,0x9e,0xb6, +0xba,0x4e,0x6a,0xf7,0xe4,0x5e,0x06,0x5d,0x26,0x9e,0x12,0xe1, +0x6b,0x50,0x12,0x95,0xd6,0xb0,0x19,0x06,0x0a,0x0f,0x99,0xc6, +0xec,0xdc,0x16,0x55,0xe1,0x20,0x9e,0x9b,0xf8,0x80,0xc5,0xf7, +0x84,0x07,0x64,0x0f,0xee,0x7c,0xc0,0xc2,0x4e,0x9c,0x45,0x76, +0xe1,0xce,0x2f,0xa9,0xca,0x2c,0x90,0x77,0x12,0xb4,0x67,0xf1, +0x47,0x5f,0x5c,0xb3,0x1b,0x67,0xaa,0xf4,0x1b,0x28,0x3c,0x85, +0xcf,0x8a,0x40,0x0d,0xfe,0x52,0x96,0xdb,0x80,0x1d,0xe5,0xdc, +0xd4,0x05,0xfe,0x22,0x5f,0xb8,0x82,0xc5,0xc5,0xb8,0x80,0xf4, +0xb9,0x0c,0xda,0x74,0x59,0x71,0x98,0x00,0x1a,0x3a,0xa8,0x81, +0x41,0x4c,0x4f,0x63,0x5b,0x7b,0x5d,0x87,0x59,0x39,0x6f,0xa9, +0xa5,0xa9,0x7f,0xc0,0xaa,0xde,0x8e,0xcf,0x49,0xcb,0x49,0xcb, +0x4e,0xe7,0x44,0xa3,0x31,0xd8,0x2c,0x68,0x50,0xce,0x7d,0x94, +0x4d,0x33,0x51,0x00,0x35,0xa6,0x3d,0x3b,0xab,0x51,0x55,0x58, +0xc4,0x66,0x84,0xa7,0x87,0xa7,0x87,0x35,0xb5,0xf0,0xfa,0x23, +0x7b,0x47,0x35,0xdb,0xb8,0x01,0xac,0x23,0xa2,0xc6,0x1d,0x41, +0x83,0x11,0x35,0x68,0xcb,0x04,0x8d,0x7d,0xa2,0x06,0xd5,0x9e, +0x9f,0xa9,0xc3,0x75,0xc2,0xc3,0xfa,0xb8,0x7a,0x17,0x35,0xab, +0x86,0x7c,0x59,0x73,0x69,0x67,0x7e,0x27,0x27,0x36,0x8f,0xcb, +0x0f,0xb0,0x79,0xd7,0x72,0xef,0x65,0x3d,0xe0,0x30,0x46,0xfc, +0x55,0x02,0xf8,0xf3,0x9f,0xfc,0x06,0x4b,0xef,0xf6,0xef,0xff, +0x52,0x7f,0x17,0xaa,0x50,0x80,0x7f,0xd0,0xe8,0x16,0x2e,0x7d, +0xb1,0x09,0x55,0x29,0xc0,0x57,0x5d,0x8f,0x6a,0x06,0xa0,0x86, +0xeb,0x47,0x28,0xc0,0xdf,0x37,0x88,0xfb,0x7e,0x60,0x85,0x16, +0xaa,0xae,0x4e,0xa7,0x13,0x29,0x72,0x22,0xec,0xcd,0xe1,0xf1, +0x2b,0xdd,0x57,0x6d,0x1b,0x79,0x7b,0x13,0x2b,0x53,0x13,0x4b, +0xca,0x17,0xb5,0xc5,0xe9,0xac,0x87,0xbf,0xfb,0x31,0xd7,0xc0, +0x72,0x7d,0xbe,0x30,0xb3,0x30,0xab,0x20,0x9b,0xc3,0x97,0xec, +0xfe,0x42,0xff,0x1b,0x2a,0x8f,0x98,0xa6,0x9c,0x9c,0x36,0x55, +0xf0,0x62,0x0d,0x72,0x15,0x30,0x86,0x15,0x6f,0xc9,0x0d,0x29, +0x59,0x50,0x79,0xc1,0x36,0x62,0x3d,0x25,0x08,0x9b,0x25,0x82, +0x30,0xff,0x1d,0x41,0x78,0x22,0x11,0x84,0xa7,0xf2,0x36,0xa2, +0x2b,0x4c,0x1f,0x65,0xe1,0x15,0x7e,0x43,0x06,0x5e,0x34,0x3f, +0x2b,0xf9,0x96,0xeb,0xc5,0x57,0x13,0x7f,0x5f,0x95,0xf7,0x81, +0x37,0xeb,0xbf,0xdb,0x76,0x8d,0xd6,0x52,0xee,0x91,0xfa,0xd8, +0xee,0xed,0xca,0xfb,0x8f,0xbb,0xec,0x50,0x39,0xc0,0xa4,0x1f, +0x55,0xb8,0xc5,0xc0,0xa4,0x8e,0xeb,0x2f,0x7e,0xd5,0x7d,0xa8, +0x7e,0x5d,0x55,0x1c,0x7e,0x42,0x26,0x66,0x5d,0xa5,0x63,0xf7, +0xd0,0x88,0xa8,0x2f,0x63,0xdb,0x90,0x10,0x34,0x8e,0x5e,0x66, +0xb1,0x52,0x65,0xd4,0x5d,0xa1,0x9b,0x3a,0xa5,0xf7,0xc1,0x44, +0xb9,0xe2,0x28,0x2b,0x7c,0x20,0xae,0x25,0xc2,0xda,0xa3,0xe2, +0x5a,0x4a,0xf7,0x15,0x04,0x67,0x82,0xaa,0x57,0xc1,0xaa,0x53, +0x3a,0xa1,0x44,0xbd,0x1d,0xd5,0x07,0xc1,0xb4,0x13,0x4d,0x7b, +0x75,0x4d,0x50,0xdd,0x02,0xd4,0x0d,0x70,0x9b,0x15,0x6c,0x93, +0xa1,0x86,0x05,0x68,0x68,0x8a,0xdc,0x18,0x73,0x25,0x6e,0x94, +0x3a,0xc4,0xb3,0x1d,0xbc,0xc9,0x69,0xd9,0x59,0xed,0xb3,0xdc, +0x28,0xac,0x6e,0xc7,0xd5,0x43,0xb0,0xbd,0x13,0xb7,0xf7,0xca, +0x4c,0x50,0x66,0x01,0x32,0x7d,0xdc,0x67,0x05,0xfb,0xb4,0xd8, +0xc3,0x67,0x35,0xce,0x1d,0x39,0x17,0x67,0xc2,0x5f,0xbb,0x74, +0x3d,0xf6,0x6a,0x1c,0xa7,0x87,0x9f,0x99,0xca,0x4d,0x74,0x27, +0xd2,0x8d,0xe5,0xe9,0x47,0x27,0x2c,0x4c,0xe5,0xd9,0xa0,0x70, +0xb7,0x6f,0x3f,0x2b,0x1a,0x51,0x0a,0xd2,0xe9,0xd1,0xef,0xd4, +0xea,0xd8,0xd8,0xc4,0x5b,0x36,0x9b,0xd7,0x9a,0x54,0x72,0x50, +0x7a,0x90,0x8c,0x9a,0x8f,0xca,0x5a,0xf4,0xda,0x1b,0x79,0xab, +0x31,0xbd,0x41,0x59,0x27,0x37,0x71,0x04,0x6d,0xc8,0xed,0xfe, +0xce,0xcb,0xe5,0x23,0xe6,0xe5,0xbc,0x8f,0xb1,0xb9,0xce,0x11, +0x2b,0x0e,0xde,0x9c,0x25,0x8e,0x91,0x09,0xb5,0xaa,0x30,0x5d, +0x07,0xa7,0xb3,0x7b,0x0a,0x4f,0x3c,0x56,0x81,0x26,0xa6,0x3b, +0x9d,0x0e,0xeb,0x9b,0xac,0x6e,0xae,0xc2,0x4a,0xaa,0xd1,0xac, +0x3c,0x8c,0x24,0x57,0x24,0x54,0xc5,0xd7,0xe9,0xc5,0xf3,0xa7, +0x1d,0xa3,0x5d,0x4f,0x7a,0x70,0x68,0x44,0xc1,0x29,0xe3,0xb2, +0x57,0xcf,0x74,0xb3,0x5d,0x99,0x19,0xff,0xba,0xff,0xc6,0xb5, +0xa6,0x5f,0xb8,0xd1,0xfd,0x8c,0x45,0xf6,0x89,0x11,0x15,0x58, +0xce,0x34,0xa6,0x65,0x54,0xab,0xb6,0xb0,0xc6,0x69,0x0a,0x46, +0x54,0x4a,0x01,0xd1,0x71,0xf9,0xaa,0xd7,0x20,0xb8,0x87,0xd5, +0xe8,0x22,0x36,0xd9,0xba,0xb9,0x3a,0x29,0xfe,0xb6,0xfc,0x78, +0xd8,0xe5,0xd0,0x66,0xea,0xf6,0xfe,0xf2,0x26,0x5d,0x99,0xed, +0x39,0xf5,0xf9,0x9e,0x5d,0xfc,0x76,0x1b,0x9c,0xed,0xb2,0x30, +0x2c,0xcb,0x90,0x6f,0x4d,0xec,0x4a,0xee,0x4e,0xe7,0x70,0x19, +0x6e,0x95,0xc1,0x5a,0xf6,0xd4,0x02,0xcb,0xf9,0xf3,0x71,0x76, +0xbd,0x09,0xff,0xf4,0x65,0xcd,0x37,0xf1,0x5f,0x53,0x9b,0x60, +0x32,0x24,0x1c,0x62,0x12,0xe2,0x62,0x2f,0xc5,0xa8,0xfc,0x8e, +0xfb,0xda,0xeb,0x96,0xc0,0xee,0xa8,0xb4,0x53,0x71,0xe1,0x11, +0x4a,0x21,0xe1,0x0a,0x67,0x80,0x01,0x6e,0x04,0x39,0x46,0xbe, +0x78,0x3e,0xe9,0xc6,0xae,0x6b,0x7a,0xb8,0x1f,0xf7,0x9a,0x0a, +0xc3,0x3d,0xf8,0xcd,0x38,0x8b,0x0b,0xc5,0x12,0x32,0x20,0xcc, +0x32,0x1c,0x85,0xbf,0xc5,0x53,0xf8,0x37,0x2b,0x68,0x40,0x18, +0x11,0x67,0x7d,0x21,0xcc,0x62,0xc4,0x59,0xf8,0x01,0x11,0x66, +0x6d,0x13,0x67,0x31,0x8a,0xf2,0x47,0xc0,0x93,0x9c,0x10,0xfa, +0x13,0xd4,0x52,0xcd,0x1b,0xf6,0xc8,0xba,0x8e,0xb6,0xd9,0x7a, +0xf2,0x85,0x21,0x05,0xc1,0x85,0x41,0x1b,0xa3,0xd7,0x9e,0x5e, +0x71,0xe6,0x5e,0xc3,0xfd,0xce,0xf1,0x0e,0xab,0x6a,0x5e,0xc7, +0x7a,0xa7,0xc9,0x66,0x6b,0xff,0x74,0xbf,0x0c,0xdf,0xf4,0xfe, +0xf2,0xce,0xaa,0xae,0x5a,0xcf,0x3c,0xfe,0x2b,0x13,0x1b,0xfc, +0xe4,0x16,0x98,0xb7,0xa1,0x79,0x03,0xec,0x01,0x3d,0xdc,0x53, +0x07,0xa6,0xad,0x68,0xda,0x6c,0x64,0x87,0x36,0x36,0x60,0xe3, +0x4c,0xd9,0xac,0x1e,0xec,0x71,0x44,0x17,0x6b,0x70,0x39,0x88, +0x1f,0xb5,0x9a,0x6c,0x14,0x66,0xb2,0x8e,0x3e,0x16,0xde,0x26, +0x3e,0x2e,0xd9,0xce,0xd9,0x6e,0x99,0x4e,0x8e,0xfc,0x17,0xce, +0xb7,0x5d,0x6f,0x3a,0x9d,0x3d,0xc7,0x9f,0x5d,0x8c,0x93,0xce, +0xa3,0xc2,0xdc,0x64,0xca,0xe3,0x3e,0x82,0x39,0x71,0x09,0xf0, +0xb1,0x2a,0xea,0x5c,0x06,0x3d,0xf6,0xaf,0xf8,0xb7,0x49,0x7f, +0x26,0x73,0x78,0x43,0x08,0x22,0x0f,0xeb,0x4b,0xdb,0xe3,0x6f, +0x73,0xb0,0x68,0x0f,0x63,0x9f,0x11,0xd4,0xa5,0x72,0x85,0xa9, +0xcd,0xce,0xaa,0x55,0x1d,0x65,0x2d,0x32,0x14,0x76,0xe8,0xb1, +0xa1,0x31,0xb1,0x99,0xd2,0x59,0xb2,0x67,0x59,0xb5,0xd3,0xb6, +0x9b,0x9c,0x54,0x30,0x34,0x9c,0xe0,0x87,0xf5,0xf0,0x21,0xd3, +0xe9,0x44,0xea,0x61,0xb6,0x13,0x8b,0x7b,0x9d,0x89,0x1d,0x7e, +0xd8,0xcc,0xc2,0x9e,0x39,0x30,0xdb,0x0e,0x67,0x53,0xb6,0x84, +0x8b,0xc8,0x58,0x6d,0x57,0x6b,0x65,0x2f,0xd7,0x2a,0xce,0xb3, +0x84,0xaf,0x59,0x4f,0x47,0x5b,0x57,0x7d,0x6f,0x8b,0x62,0x9b, +0x0a,0xfb,0x5a,0x27,0x2f,0xbe,0xc6,0xa3,0xde,0xbb,0xc5,0xd7, +0x3a,0xd8,0x24,0x4c,0x16,0x99,0x6d,0xc9,0xdf,0x4a,0xbf,0x9a, +0x3b,0x54,0x72,0xc5,0xe3,0x9e,0xef,0xd3,0x13,0x19,0xed,0xfc, +0xc1,0x4c,0x9d,0x5c,0x83,0x62,0x69,0x02,0x59,0x89,0xbc,0x71, +0x7d,0xe2,0xf5,0xd4,0xa9,0xaa,0x93,0x5f,0xdd,0xb0,0xb1,0x72, +0x45,0x39,0x27,0xde,0xa2,0xcf,0x7e,0x53,0xfe,0x4b,0xed,0xf5, +0x3a,0x87,0x66,0xfe,0x88,0xeb,0x06,0x8f,0x25,0x7e,0x94,0x0f, +0x05,0x0a,0x0f,0xc9,0xaf,0xa0,0xb9,0x7c,0xe8,0x57,0x50,0x1e, +0x40,0xe5,0x57,0xfa,0x9f,0xa1,0xa6,0x74,0x99,0x69,0x08,0x33, +0x97,0xb3,0xf2,0xed,0xe2,0x5d,0x82,0x5b,0x99,0x6c,0x2d,0x05, +0x50,0x65,0x7a,0xf2,0xf2,0xfa,0x28,0xa3,0xd5,0x62,0xd1,0xd0, +0x94,0x4c,0xcc,0x1d,0x97,0xcf,0x65,0x91,0xc7,0x76,0x32,0x20, +0x66,0x1b,0x02,0xfb,0x39,0xeb,0x75,0xc1,0xf7,0x9c,0xaf,0x0a, +0x2a,0x19,0x52,0x42,0x17,0xf1,0xb9,0xfb,0xd6,0x75,0x2b,0xdb, +0x2c,0xf9,0xdf,0xde,0x34,0xfc,0x99,0x0e,0x1c,0x07,0xbb,0xf1, +0x8b,0x31,0xf8,0x02,0x16,0x0c,0xe0,0x02,0x38,0xc4,0xe0,0x71, +0x3c,0x44,0x2e,0x96,0x5e,0x2c,0x2d,0x57,0xfe,0x15,0xb6,0xe2, +0x21,0xaa,0x01,0x53,0x85,0x37,0xa4,0x3d,0x4f,0xb2,0x4a,0x6a, +0x3a,0x78,0x10,0x59,0x36,0xdd,0x50,0x41,0x50,0xaf,0x22,0xd6, +0x57,0x0d,0xae,0xe8,0xf5,0xd8,0x3a,0xf3,0xc3,0x46,0x83,0xda, +0x2d,0x9a,0x9c,0x58,0x1e,0x45,0x6e,0xf5,0x8e,0xde,0xad,0xbf, +0x67,0x5e,0xcc,0xbb,0x6b,0xe8,0x69,0x1f,0x31,0xe3,0x2e,0x8a, +0x1f,0x93,0x1f,0x6c,0xbe,0x92,0x5d,0x51,0x69,0xba,0xdb,0x0d, +0x53,0xf3,0x9e,0x70,0x1d,0x58,0xf5,0x9f,0xc9,0x97,0xe5,0x97, +0x61,0x25,0x1b,0xa2,0x6e,0x86,0x93,0x2d,0x37,0x71,0xd7,0xf7, +0x37,0xab,0xed,0x51,0x96,0x85,0x7a,0x18,0xa9,0x58,0x33,0xa9, +0x47,0x14,0x7a,0x98,0xdb,0x2d,0x1d,0xaf,0x55,0x85,0x3e,0xc8, +0x22,0xd8,0xc0,0x7c,0x5d,0xf6,0xb0,0xe1,0x76,0xa7,0x5b,0x1b, +0x8f,0xf3,0x96,0xe1,0x36,0x53,0x34,0x0a,0xcc,0x36,0xe6,0xa5, +0x05,0xa3,0xc2,0x38,0x0e,0x1b,0xc1,0x11,0x0d,0xa9,0xd1,0x37, +0x54,0xf8,0x91,0x69,0xcf,0xcc,0xa4,0x48,0x46,0x07,0x4e,0xb0, +0xe2,0x11,0xb0,0x20,0x4f,0x04,0xc5,0x4d,0xac,0xf1,0xd4,0x55, +0xa2,0xe2,0x73,0x36,0x0f,0x8f,0x12,0xa3,0xa3,0x07,0x4d,0x76, +0x38,0x56,0x99,0xf2,0xdf,0xb4,0xdc,0x1b,0x19,0xbe,0xc6,0x81, +0xef,0x59,0x72,0xd5,0xe2,0xaa,0x6e,0xb7,0x5e,0x6b,0x33,0x6f, +0x3a,0x7c,0x68,0x4c,0xbb,0x9d,0x76,0x7c,0x08,0x45,0x79,0xf6, +0xef,0x50,0xde,0x32,0xe4,0x1a,0x8c,0x24,0x94,0xd7,0x54,0x46, +0xe1,0x76,0xf9,0x65,0xf9,0x67,0x6c,0xc5,0xbd,0x92,0xaf,0xb3, +0x7f,0xe4,0xa0,0x7f,0x62,0x1b,0xc9,0x30,0x92,0x96,0x73,0x47, +0x2a,0xf3,0x3a,0x53,0x54,0xd3,0x7a,0x62,0xc7,0x2e,0x76,0xd7, +0xba,0xd4,0xbb,0x37,0x7a,0xd6,0xf6,0xf0,0x5a,0x6d,0xba,0xfd, +0xe6,0x57,0x38,0xf8,0x74,0x08,0xd5,0x19,0xbf,0xa6,0xe3,0xad, +0xa1,0x1d,0x1c,0x7c,0x30,0x88,0x5e,0x4c,0x66,0x67,0x5a,0x4f, +0xca,0xa0,0x2c,0x99,0x3f,0xa9,0x17,0x66,0x18,0x6c,0xca,0xe1, +0x4a,0x03,0xf8,0x84,0x39,0x61,0x79,0xcc,0xc6,0xcf,0x9e,0x43, +0x63,0x7d,0x58,0xcb,0x18,0x1f,0xd4,0xd6,0x53,0xb7,0x68,0x30, +0xe3,0x5b,0xab,0x9a,0x6b,0x1b,0x1a,0x38,0x2c,0x64,0x37,0x15, +0x07,0x3c,0x53,0x81,0x5b,0x4c,0x77,0x5e,0x66,0xb7,0xea,0xcf, +0xac,0x76,0x96,0x02,0x32,0xf8,0x90,0xb5,0x3c,0x95,0xd6,0xab, +0x0a,0x8e,0x30,0xc0,0x9e,0xf7,0x3a,0xe7,0x10,0x13,0xc0,0x05, +0x9e,0x0e,0x3e,0x75,0x7c,0xae,0xb8,0x44,0xd0,0x23,0x77,0x86, +0x87,0xef,0xd4,0xfe,0x60,0x94,0xc3,0x7b,0x1e,0x30,0x39,0x74, +0xc8,0x84,0x93,0x6f,0x38,0x4d,0xec,0x6e,0x1c,0xfc,0xce,0xbc, +0xc5,0xc2,0x83,0x1f,0x30,0x1d,0xd9,0xdd,0xb2,0x9f,0xc3,0xf3, +0xb9,0x24,0xcd,0x2a,0xd7,0xa6,0xd0,0x8e,0xc3,0x5d,0x4c,0x61, +0x53,0x5e,0x4b,0x4e,0xa7,0xb4,0xb3,0xb3,0x87,0x88,0x3b,0x99, +0x9a,0x9a,0x8a,0xfa,0xb2,0x66,0x0e,0xa2,0x98,0x52,0xfb,0x2a, +0xa7,0x1a,0x17,0xda,0x35,0x7f,0xfe,0x4c,0x9c,0x5a,0x9d,0x9b, +0x5c,0xeb,0x5a,0x81,0x2b,0x00,0xe5,0x14,0x58,0xcf,0x35,0x23, +0xcf,0x26,0x5f,0x4d,0x1e,0x4b,0x18,0x92,0xc5,0xf1,0xa7,0x8d, +0xa2,0x34,0x23,0x0f,0x71,0xab,0x65,0xdf,0x32,0x41,0x8b,0x02, +0xe6,0xfb,0x6e,0x6f,0x75,0x6c,0x76,0x6a,0xb2,0x77,0xdb,0x65, +0xb1,0xff,0xe8,0x91,0x7a,0x73,0xfe,0xca,0x8d,0xee,0x7b,0x75, +0x8f,0xab,0xdc,0x2a,0x5d,0xaa,0x1c,0x38,0xe1,0x19,0x6c,0x27, +0x30,0xbf,0xa7,0xdb,0x14,0xe6,0xe1,0xae,0xa7,0xe0,0xda,0x8d, +0xae,0x8f,0xd8,0x81,0xd4,0xe1,0xcc,0xce,0x5c,0xaf,0x36,0xfe, +0x80,0xcf,0x22,0xff,0x9d,0xa7,0x32,0x2c,0xf8,0x9c,0xd8,0xdc, +0x4b,0xf9,0x71,0x9c,0x3a,0x4e,0x79,0xc9,0x16,0x27,0x16,0x25, +0x15,0x24,0xf9,0xb4,0xf2,0x07,0x7d,0x56,0x04,0x6f,0x39,0x95, +0x6a,0xce,0xb7,0xc4,0x77,0x27,0x76,0xa7,0x70,0x1b,0x70,0x8f, +0x19,0xec,0xd9,0x88,0x1b,0x2d,0x61,0xe3,0x3a,0x3c,0x68,0x06, +0x07,0x57,0x49,0xe5,0xf9,0xac,0xdf,0x3e,0x8d,0x9d,0x2b,0x8f, +0x54,0x99,0xf1,0xc0,0x7c,0xdd,0xf9,0x55,0xd2,0x4d,0x2e,0x11, +0xd3,0x07,0xa0,0x0b,0xa6,0x60,0x57,0x3f,0xa4,0x27,0x32,0xa9, +0xfb,0x06,0xf7,0xc1,0xcc,0xed,0xa5,0x7d,0xfc,0xea,0x71,0xb5, +0x7b,0xde,0x5f,0x70,0x7b,0x84,0xb5,0x64,0x23,0x4e,0x79,0xca, +0x8a,0xd6,0x94,0x23,0x14,0x7c,0x9b,0xf7,0x3c,0xeb,0x39,0xf7, +0x94,0x39,0x85,0xb3,0x83,0x90,0x73,0x5e,0xe0,0x5d,0xe6,0x53, +0xec,0x53,0xc8,0x09,0xd7,0x61,0x23,0x59,0x87,0x53,0x7e,0x64, +0xa1,0x6a,0x1d,0x41,0xee,0x47,0xe0,0x18,0xac,0x92,0x8e,0xa9, +0x9e,0xb2,0x0a,0xa7,0x30,0xb0,0x65,0xce,0x73,0xe0,0x56,0x51, +0xdd,0x89,0x12,0x34,0x48,0xd7,0xee,0x2b,0x1a,0x77,0xb4,0x6b, +0xba,0x78,0x83,0x36,0xe3,0x7e,0xdb,0x31,0x8a,0x5c,0x07,0x71, +0x35,0x13,0x40,0x51,0x68,0x18,0x1d,0x16,0x53,0x06,0xd0,0x8c, +0xc9,0xe8,0x4c,0xed,0x4d,0x1e,0xd4,0x4f,0xe6,0x4f,0xc9,0xc2, +0x0d,0x43,0xe9,0xb0,0x98,0x6b,0x48,0xc7,0x56,0x90,0x45,0xa0, +0xb5,0x3f,0x1d,0x16,0x9f,0x1b,0x80,0x02,0x63,0x79,0xc4,0xc0, +0x40,0xd3,0xb2,0xde,0x82,0x6f,0xac,0xac,0xab,0xae,0xae,0xe5, +0xb0,0x9c,0xdd,0x56,0x1c,0xf0,0x54,0x05,0xca,0x99,0xce,0xdc, +0xcc,0x2e,0xd5,0x1f,0x58,0x5d,0x3a,0x2c,0xde,0xc3,0x4a,0xd6, +0xea,0x54,0x6a,0x8f,0x2a,0xb8,0x42,0x0e,0x7b,0xde,0xf3,0x9c, +0xe3,0x69,0x3f,0xee,0xc4,0x99,0x50,0x3a,0x2c,0x90,0x61,0x32, +0x8c,0x15,0xde,0x32,0x83,0x65,0x79,0x9d,0xc9,0xaa,0x29,0x74, +0xc4,0x76,0x2b,0x8b,0x9f,0x30,0x95,0x35,0xe5,0xf5,0x25,0x94, +0x34,0x1b,0x7b,0x49,0xeb,0x0c,0x61,0xd2,0x3a,0xc3,0x89,0xbf, +0x86,0xe7,0x83,0xa6,0x0e,0x6a,0xe2,0x27,0x7a,0xf0,0x09,0xc6, +0xb2,0xe6,0xc1,0x66,0x61,0x96,0x91,0xa9,0x32,0xbe,0x35,0xb5, +0x3d,0xbd,0x2d,0x93,0xc3,0x1a,0x9c,0xc9,0x66,0x6b,0x2b,0xfc, +0xca,0x74,0x67,0x4b,0x67,0x60,0xf5,0xb2,0xf5,0x19,0x75,0x99, +0x75,0x59,0x9c,0xf0,0x3d,0x34,0x13,0x97,0x6b,0x3a,0xdf,0x5a, +0xb7,0x59,0x7a,0xf1,0x5d,0xa6,0x7d,0x6a,0xf5,0xea,0x9c,0xb8, +0x0f,0x8e,0x91,0x40,0x99,0xb3,0xcc,0xc2,0xba,0xd9,0x9e,0xef, +0xe9,0x69,0xba,0x5c,0x78,0x87,0xf2,0x21,0x34,0x24,0xa9,0x56, +0xd9,0xd6,0x05,0xb6,0x1c,0xae,0x61,0xf2,0x9b,0x72,0x5b,0xb3, +0xba,0x38,0x45,0x21,0x58,0x6e,0x44,0x06,0xd0,0xfc,0x91,0x1e, +0x9e,0xc0,0xb5,0x13,0x07,0x7b,0x07,0xe1,0xb9,0xfc,0x7d,0xd4, +0x78,0xc1,0x0a,0xfb,0x7f,0x23,0x79,0x1b,0xbf,0xdb,0x09,0xcc, +0xae,0xaa,0x5e,0xca,0xd5,0xbf,0xd8,0x77,0xd7,0xe3,0x31,0xa7, +0xce,0xf8,0xec,0xd2,0xdc,0x81,0xd3,0x76,0x51,0xb5,0x06,0xee, +0xab,0x3b,0x5f,0xe7,0x7d,0xcf,0xe1,0x2c,0xd4,0x23,0xc6,0x90, +0xd5,0xc7,0x8a,0x5a,0xf8,0x80,0x84,0x97,0x84,0x96,0x84,0x14, +0xbb,0xf8,0xf1,0xb9,0x5e,0xb9,0x6e,0x59,0xce,0xc5,0x59,0x3c, +0x86,0x51,0xb3,0xd1,0xcb,0xe6,0xf9,0xe6,0xbb,0x67,0xbb,0x57, +0x97,0xf2,0x21,0x95,0x81,0x95,0x7e,0xe5,0x9e,0x01,0x3c,0x04, +0x42,0x23,0x8b,0x53,0x91,0x25,0x41,0xe5,0x01,0xd5,0xbe,0x15, +0x1e,0xbe,0x7c,0x81,0x6f,0x81,0x5b,0xbe,0x2b,0xb7,0x12,0x9f, +0x91,0xb6,0xa1,0xfa,0x91,0xca,0xf1,0x0a,0xeb,0x52,0xeb,0x22, +0xeb,0xea,0x12,0xde,0xa7,0xdb,0xa3,0xd7,0xa5,0xb7,0xec,0x5a, +0xc1,0xed,0x9c,0x87,0xf6,0x99,0x7c,0xe8,0xe1,0x40,0xad,0x00, +0x3d,0x8f,0x56,0xb7,0x16,0xd7,0x66,0x37,0x4f,0xbe,0xd1,0xb2, +0xde,0xbc,0xd6,0xc2,0x4d,0xc3,0x41,0xcb,0x52,0x8f,0x13,0x06, +0x60,0x25,0x81,0x60,0x54,0xa7,0xf4,0x12,0xfc,0x21,0x98,0x60, +0x30,0x68,0x02,0xa5,0x9a,0x15,0xd6,0x04,0x17,0xec,0x80,0x05, +0x2c,0xf8,0x49,0x21,0xab,0x0b,0x9e,0xe0,0x02,0xd6,0x19,0x43, +0xa5,0x33,0x24,0xd2,0x2a,0x2e,0xd5,0x74,0x2a,0x97,0x1b,0x3b, +0xb1,0x7b,0x42,0x4c,0xf5,0x64,0x2a,0x5a,0x5f,0x9d,0x4a,0x8f, +0x3e,0x17,0x19,0xa5,0x74,0x32,0x5a,0xfa,0x6b,0x75,0x7c,0x6d, +0xbb,0x72,0x99,0xb1,0x33,0xbb,0xd5,0xfd,0xf0,0xde,0x43,0x2a, +0xd5,0x56,0xed,0x6d,0xd5,0x1d,0xd9,0x75,0x4a,0x71,0x49,0x71, +0xb1,0x09,0xd1,0xbf,0xe1,0x47,0x7c,0x77,0x63,0x75,0x6b,0x6e, +0x63,0x5c,0x4a,0xfc,0x85,0xf8,0x98,0xa7,0x38,0x9b,0xaf,0x6b, +0xdc,0x02,0x33,0xa2,0xd2,0xa3,0x2f,0x9e,0x3c,0xa5,0x24,0xfe, +0x7e,0x9b,0xe4,0x79,0xe5,0x39,0x65,0xb8,0xd7,0x17,0xf2,0xa1, +0x55,0xc7,0xeb,0x8e,0x57,0x71,0x8a,0x72,0x03,0x79,0x2a,0xb9, +0xaa,0xab,0x89,0xc1,0xc6,0x42,0x51,0x1f,0x3b,0xf1,0x77,0x35, +0xd1,0x87,0xca,0x21,0x16,0x66,0xe3,0x30,0xf9,0x21,0xe7,0x51, +0xf1,0xad,0xea,0x7e,0xff,0x6e,0xbf,0x76,0x9f,0xf2,0x16,0xde, +0xb1,0xc0,0x2e,0xdf,0x2e,0xb7,0x2e,0xbf,0xa6,0xa8,0xb2,0xc4, +0xb1,0x8a,0x77,0xf2,0x72,0xf0,0xb5,0x3e,0xa6,0x59,0x7a,0xa8, +0xe8,0x50,0x4e,0x80,0x2d,0x3f,0x1c,0xdc,0x1f,0xd4,0x13,0xa8, +0x17,0x70,0x34,0x48,0x3d,0x9c,0x13,0x77,0x02,0x4b,0xf4,0xe0, +0xfb,0x61,0x16,0xbb,0xa8,0x86,0xe8,0x43,0xc1,0x10,0x2b,0xbc, +0xb4,0x23,0x62,0x36,0x83,0x8d,0x51,0x6b,0xb5,0x51,0x45,0xa5, +0xc7,0x55,0x61,0x0c,0xe6,0x67,0x01,0x0b,0x67,0x94,0x05,0x7b, +0x06,0xa7,0x9e,0x24,0x3b,0x8d,0x70,0xb2,0x2d,0x72,0xfe,0xd2, +0x4e,0xb9,0x0f,0xcb,0x61,0x52,0xeb,0xb7,0xa3,0x9c,0x98,0x6f, +0x46,0x29,0x7e,0x81,0x01,0x2b,0xd8,0xe0,0x49,0x02,0x9f,0xd7, +0x00,0x19,0xfa,0xe3,0x0b,0xb7,0x66,0x7e,0x35,0x85,0x0e,0x86, +0xb8,0xd0,0x93,0x13,0xe7,0x60,0x00,0x19,0x00,0x77,0x28,0xc6, +0x22,0x7c,0xc4,0x82,0x07,0x14,0x11,0xa4,0x66,0x01,0x36,0xb2, +0xf2,0x62,0x27,0x82,0x33,0xd7,0xe3,0x67,0x32,0xdc,0xe7,0x96, +0xa3,0xcf,0x83,0x76,0x23,0x2c,0x1e,0x83,0xd9,0xcf,0xe9,0x8b, +0x7b,0xc3,0xaf,0x64,0xc8,0xe0,0x96,0xc5,0x63,0x9b,0xca,0x7e, +0x1e,0xe7,0xdc,0xde,0x78,0xd3,0xe4,0x7b,0x0e,0x12,0x46,0x31, +0x0b,0x94,0xc0,0x6f,0x04,0xfd,0xde,0x6a,0x2d,0xc0,0x02,0xe9, +0xe2,0x20,0x03,0x07,0x54,0xc2,0x0b,0xba,0x10,0xcd,0x58,0x6c, +0xd8,0xb2,0x17,0x67,0x1f,0xac,0x31,0xe5,0xc7,0x6b,0x87,0x1a, +0xbb,0xda,0x38,0xbc,0xc0,0xae,0x2f,0x73,0xfa,0x43,0x45,0x30, +0x63,0xda,0xf2,0xb3,0x3b,0x55,0xff,0x62,0xb5,0x73,0x14,0x70, +0x8e,0x68,0xce,0xea,0x45,0x64,0xf6,0xab,0xde,0x12,0x8e,0xb0, +0x8b,0x84,0x72,0x42,0xef,0x2f,0x00,0x25,0x56,0x0d,0x87,0x48, +0x45,0x4d,0x49,0x7d,0x7e,0x13,0x07,0x85,0x4c,0x81,0x7d,0xa9, +0x53,0x95,0x2b,0x27,0x6e,0xc4,0x7d,0x94,0x54,0x0b,0x33,0x29, +0xa9,0x56,0x84,0x65,0xf2,0x76,0x82,0xaf,0xe5,0x06,0xf0,0x9a, +0xd5,0xc4,0x65,0x44,0x7c,0xf0,0x5c,0x78,0xc0,0x88,0x0f,0x70, +0x29,0x11,0x1e,0xac,0x10,0x1f,0x30,0x3f,0x4a,0x87,0x92,0x1d, +0x1c,0x14,0xb7,0x1a,0x80,0x06,0x9e,0x66,0x0e,0x86,0x1f,0x88, +0xd4,0x8a,0x4a,0xd1,0xe6,0x41,0x25,0x17,0x64,0x4d,0x30,0xb5, +0xec,0xec,0x30,0x6f,0x16,0xa1,0x19,0xa6,0x11,0xc6,0x41,0x10, +0x6e,0x21,0x97,0x05,0x15,0xc8,0xc1,0x08,0x4a,0x41,0x33,0xb5, +0x15,0x60,0x1d,0xd3,0x9d,0x53,0x40,0x1d,0x66,0xbd,0xa8,0x4c, +0xf1,0xfc,0x14,0x58,0x4a,0xbe,0x19,0xef,0xd6,0xa6,0xd2,0x8e, +0xbd,0x06,0x77,0x7b,0xd0,0xe0,0x4b,0x58,0xd7,0x8d,0xeb,0xee, +0x80,0x7a,0x17,0xaa,0xdf,0x97,0xed,0x45,0xd9,0x7d,0xbd,0xbd, +0xb8,0xdf,0x1c,0xf6,0x1f,0xc0,0x75,0x66,0xb0,0x6e,0x17,0xea, +0x99,0xc2,0xe5,0x23,0x18,0x83,0xb3,0xb5,0xcd,0xc6,0xb7,0xaa, +0x19,0x3f,0xc4,0xfd,0x94,0x87,0xec,0x17,0xf6,0x51,0xe7,0xb4, +0x55,0x5a,0x16,0x82,0x65,0x4c,0x7b,0x46,0x46,0x9b,0xea,0xdb, +0x87,0x74,0x34,0x1d,0x12,0xee,0x11,0xdb,0x66,0xb3,0x66,0xb3, +0x6a,0x17,0x4b,0xbe,0xcf,0xa9,0xc5,0xa9,0xcd,0x86,0x13,0x3c, +0x5a,0xc9,0x01,0x94,0xdd,0x61,0x31,0x1f,0x93,0x89,0x55,0xc7, +0xd1,0x3e,0xbd,0x06,0x67,0x4b,0x7e,0xd0,0x61,0xc4,0xac,0xcb, +0x9c,0x13,0x62,0xe0,0x08,0x25,0x92,0xb2,0x2f,0xd9,0xcb,0x78, +0x9a,0xa8,0xe1,0x91,0x87,0x2c,0x44,0xab,0x91,0x87,0xa0,0xa7, +0xc6,0x4e,0xd8,0xe1,0x2b,0x72,0x13,0xa6,0x74,0xc1,0xbc,0xe2, +0x37,0x7a,0x79,0xbc,0x17,0x2a,0xd8,0xe2,0x74,0xcd,0xc5,0x9c, +0x90,0x43,0x41,0xc3,0x56,0x3c,0xf2,0x0d,0xad,0x3b,0x07,0xf4, +0xb6,0xa2,0xb4,0xf1,0x26,0x4a,0x78,0x49,0x2a,0x4a,0x8b,0xcb, +0xf3,0x2b,0x38,0xb8,0x62,0xc8,0xa0,0x5a,0x0c,0x1e,0x88,0xdc, +0xac,0x22,0x8b,0x3e,0xe9,0x61,0x39,0x57,0x87,0x49,0x92,0x8e, +0xb7,0xbe,0x5e,0x5a,0xfd,0x24,0x4d,0x35,0xfd,0x45,0x12,0x1c, +0x05,0x0d,0xe5,0x97,0xf8,0x03,0x9b,0x51,0x9a,0x56,0x9e,0x5c, +0x6e,0x9e,0xc6,0x7b,0xef,0x72,0xd1,0x3b,0x22,0xe3,0x60,0xfe, +0xc4,0xa7,0x04,0xa7,0xad,0x2d,0xee,0xd0,0x50,0x1d,0x1e,0x6a, +0xbe,0x99,0x71,0x8f,0x6b,0x44,0x77,0x36,0x31,0x23,0x21,0x3d, +0x2e,0x9d,0x6b,0x7f,0xc5,0x24,0xc4,0xc6,0x4a,0x91,0x0f,0xab, +0x50,0xa1,0xba,0x05,0x97,0xc3,0xa4,0xc8,0xa4,0xe8,0x0b,0x91, +0x91,0x4a,0x51,0x51,0x0a,0xd1,0x10,0x03,0xa6,0x3d,0x68,0x7a, +0xc7,0x94,0xbe,0xae,0x29,0xc5,0xc1,0xca,0xcc,0x8e,0xfd,0x7b, +0xf1,0x93,0xc3,0x2a,0xf9,0x26,0x6f,0x87,0xae,0x8e,0xc4,0xdf, +0x56,0x4a,0xc4,0x25,0x8c,0x4d,0xb2,0x8f,0xba,0xf6,0x81,0x83, +0x66,0x4a,0xc5,0xe6,0x55,0x85,0x95,0x65,0x65,0x95,0x4a,0x79, +0x66,0xe5,0x16,0x8d,0xf6,0x7a,0x76,0x07,0xdd,0xf7,0x9e,0xc8, +0x37,0xe4,0xbf,0xce,0x7f,0xd8,0x70,0xa5,0x87,0x33,0xb8,0xff, +0xda,0x05,0x96,0xcc,0x85,0xe7,0x4c,0xca,0xb0,0xc2,0xc4,0x73, +0xf9,0x5e,0x12,0xc4,0x1a,0x05,0xda,0x1b,0x39,0xa9,0x94,0xd8, +0x56,0x17,0xe4,0x17,0x65,0x14,0x4a,0x47,0x07,0x5c,0x8c,0x3b, +0xd3,0x67,0xc4,0x57,0x37,0x5a,0xb5,0x9e,0x4a,0x8e,0xb9,0x10, +0x15,0xa5,0x14,0xfd,0xce,0x72,0x14,0x5c,0x2a,0x2b,0x55,0xce, +0x61,0xc1,0x79,0x4e,0x10,0x6b,0x1a,0xe8,0x64,0xe2,0xa1,0x52, +0xe6,0x58,0x91,0x9b,0x97,0x97,0x9e,0xaf,0x74,0xf1,0x52,0xec, +0x85,0x4b,0x67,0x6f,0x6b,0xf0,0x55,0x0d,0xda,0xc3,0xf4,0xa6, +0x73,0x51,0xef,0xce,0x2f,0xb8,0xa4,0x90,0x96,0x97,0x48,0x01, +0x21,0xbd,0xa9,0x10,0xff,0x43,0xa4,0x50,0xf7,0x33,0x2a,0x30, +0x1d,0xa9,0x49,0x41,0x16,0xde,0x3f,0x99,0x1a,0x75,0x2e,0x5c, +0x3a,0xac,0x50,0xe1,0x74,0x37,0x6c,0xe9,0xc6,0x2d,0xe0,0x68, +0x82,0x8e,0xb8,0xcc,0x0c,0x78,0xc6,0x4f,0x4d,0x4f,0x7d,0xfd, +0xde,0x22,0x4b,0xfe,0xd9,0x83,0xa1,0x07,0xc9,0x5f,0x71,0x09, +0xd8,0xd3,0xcb,0xc0,0x54,0xe1,0x16,0x09,0xb3,0x73,0x51,0xf7, +0x75,0x69,0xf1,0xe7,0xcb,0x9a,0x6a,0xaf,0x67,0x51,0xe5,0xf9, +0xdd,0x97,0xe4,0x79,0x94,0x98,0xa4,0xb9,0x35,0x17,0xf2,0x61, +0xb5,0xc7,0xba,0x8e,0x55,0x73,0xf8,0x8a,0xfe,0xbb,0xb8,0x04, +0x05,0x38,0xca,0x84,0xeb,0xb9,0x99,0x58,0x58,0xdb,0x36,0x7a, +0x74,0x1f,0x1b,0xe1,0x14,0xff,0xd6,0x17,0xe6,0x11,0x51,0xeb, +0x8e,0x30,0x1b,0x24,0x54,0x95,0x52,0x98,0x5c,0x9c,0x50,0x4c, +0x51,0x55,0x8c,0xdf,0x49,0x2f,0x29,0x52,0x63,0xb3,0xd8,0x26, +0x6c,0x63,0x76,0x9f,0x35,0x8e,0xb2,0x51,0x71,0x8e,0x0e,0x0b, +0xb5,0x9d,0x7b,0x94,0x49,0x33,0x50,0xb8,0xc2,0x5c,0x2f,0x2b, +0x19,0x4f,0x55,0x4d,0x1b,0x89,0xbb,0x01,0x9c,0xb2,0xb8,0xed, +0x9e,0xa0,0xc5,0xfc,0x67,0x09,0xac,0xa0,0x56,0xe9,0xd0,0x92, +0x91,0x97,0xb0,0x7c,0x88,0xca,0x6d,0x01,0xcc,0x1d,0xc0,0xb9, +0xb0,0x44,0x86,0x4b,0x76,0xb0,0x49,0x75,0x09,0x75,0x97,0xaa, +0x0c,0x53,0xf9,0xa8,0x2d,0x7e,0x8b,0x9d,0xf6,0xf7,0xf9,0xf2, +0x59,0xb5,0x19,0x4d,0x69,0x4d,0xdc,0x33,0x5c,0xc0,0x08,0x08, +0xfe,0x64,0x37,0x3e,0xf8,0x82,0x85,0x07,0x94,0x35,0xed,0xc0, +0x07,0x8f,0x59,0x51,0x5d,0x9a,0x6f,0x78,0x7f,0xec,0x1a,0x5c, +0x84,0x1b,0x2c,0x5e,0xc4,0x34,0x02,0x36,0x20,0x93,0xe2,0x34, +0x36,0x50,0x36,0x95,0xed,0x91,0x67,0x98,0xea,0xf8,0xee,0x60, +0xe7,0xc0,0xfe,0xe0,0x0a,0x0e,0xff,0xc2,0x24,0xd2,0x7c,0xbb, +0xe4,0x87,0xd4,0xbb,0xa6,0xa9,0x7c,0xc4,0x61,0xff,0xed,0x76, +0x9a,0x1c,0xe4,0x81,0x29,0xc9,0x34,0xcd,0xd4,0x4b,0xd1,0xef, +0x4c,0xe7,0x4f,0x0e,0x05,0x0f,0x85,0x74,0x71,0xb8,0x24,0x8c, +0xa4,0x1e,0x4e,0xd8,0x1b,0xab,0xd3,0x97,0xc4,0x9f,0xbd,0x11, +0x75,0x3d,0xfc,0x3a,0xf5,0x97,0xf1,0xf2,0x05,0x24,0xe9,0x54, +0x75,0x93,0xd9,0xa0,0xd6,0x80,0x7e,0xa3,0x92,0xab,0x53,0x9b, +0x5b,0x87,0x43,0x9b,0xb5,0x92,0xf8,0x1e,0xd3,0x52,0xd7,0xdc, +0x5e,0xd6,0x64,0x5f,0xc5,0x3b,0x1a,0xea,0xe8,0x1b,0x3a,0x56, +0xd9,0xf0,0xc9,0x09,0x0a,0x58,0x2e,0xa8,0xb3,0xc2,0x02,0x91, +0x23,0xbe,0x3f,0x9c,0x85,0xe5,0xe7,0x41,0xe0,0xd0,0x86,0x89, +0xed,0xb9,0xd4,0x7b,0xb1,0x97,0x83,0xe2,0x61,0x71,0xb3,0xde, +0xcf,0x14,0xed,0x14,0x05,0x61,0x9c,0x1f,0x1e,0x3f,0x7e,0xfa, +0xd8,0x99,0xe3,0x67,0xd2,0x64,0xfc,0x1f,0xf9,0xa0,0x58,0x73, +0xa7,0x34,0xaa,0x97,0x37,0x0b,0x39,0x1a,0x74,0x38,0x24,0x07, +0xb6,0x66,0xc0,0x81,0x14,0xd0,0xe1,0x60,0x25,0x83,0x59,0x89, +0xa8,0x5b,0xb5,0x48,0x25,0x4f,0x7b,0x34,0x2e,0xf1,0x72,0x01, +0xe8,0xf0,0xb6,0x05,0x0a,0x13,0x9f,0x0b,0x87,0x08,0xba,0xa1, +0x2a,0xb8,0xb1,0xf0,0xed,0x1c,0x5a,0x5a,0x42,0x4b,0xc3,0xa8, +0x45,0x4a,0x9a,0xca,0xfa,0xb2,0xba,0x1d,0x72,0xf8,0x10,0x4b, +0x3f,0x33,0x1f,0x8a,0x6f,0xf4,0x60,0x0a,0x29,0xb5,0xc9,0xb7, +0xcc,0xb1,0x6e,0xca,0xe7,0x43,0x5a,0xfc,0x7a,0x7c,0x5a,0x38, +0x61,0x42,0xdc,0x4e,0x22,0xbe,0xf4,0x82,0x49,0x01,0x37,0xac, +0x4e,0xf0,0x85,0x87,0x8a,0x17,0x65,0x6d,0xe2,0xc4,0x5f,0x31, +0x9c,0x74,0x41,0xbd,0xc5,0x80,0x30,0x5b,0x9c,0x27,0x7e,0xc4, +0xc2,0x4f,0xf0,0x94,0x02,0xb1,0x7a,0x0a,0xc4,0xea,0xa9,0x73, +0x59,0x86,0xf5,0xbf,0x51,0xbb,0x19,0x4b,0x41,0x04,0x38,0x5c, +0x84,0xe8,0x42,0xd8,0xdd,0xeb,0x33,0xc0,0x1b,0xe2,0x11,0x3c, +0x1b,0x84,0xee,0x73,0xfd,0x56,0x9a,0x7e,0xa6,0xb6,0xa3,0xcf, +0x81,0xbf,0x7d,0xbf,0xfb,0x45,0xc5,0x4f,0x9c,0x70,0xde,0x83, +0xf4,0x1f,0x1a,0xda,0x52,0xbb,0x6b,0xb0,0x8a,0x77,0xf8,0xd2, +0xe8,0x2b,0x83,0x9b,0x1c,0xcc,0x15,0x55,0xc9,0xa8,0xb8,0xe1, +0x15,0x3b,0x9c,0x17,0x78,0xc5,0xe3,0xb6,0x67,0x8f,0x92,0xde, +0x89,0x32,0xf3,0xd2,0xa3,0xb9,0xba,0x4a,0xfa,0x38,0x4d,0x5c, +0xa0,0x2b,0xbc,0xc7,0x18,0x2e,0xc6,0xc9,0xdb,0x30,0x60,0x75, +0x85,0x2e,0x0f,0x17,0x60,0xca,0xf3,0x3b,0x8d,0x40,0x28,0xb6, +0xc4,0x2b,0x80,0x89,0x4c,0x23,0x12,0x98,0x7c,0x00,0xe2,0x70, +0x4a,0xd9,0x08,0x8f,0x41,0xcf,0x71,0xfa,0x37,0xfa,0x2f,0xa9, +0x9b,0xb9,0x2a,0x7f,0x44,0x4c,0x28,0xa3,0x9f,0x25,0xfe,0xda, +0x3b,0x74,0x1b,0xfd,0x7a,0xc1,0xef,0x91,0x7e,0xaf,0xf0,0x2b, +0xce,0x61,0xc4,0x41,0x3c,0x46,0xa2,0xb2,0x62,0xce,0x45,0x9c, +0x7a,0x97,0xef,0x7f,0xee,0xc3,0x7e,0x35,0xd0,0x35,0x40,0x5d, +0x9c,0x69,0x04,0x53,0x99,0x08,0x9c,0xed,0x8c,0x4b,0x76,0xa2, +0x22,0xa5,0x05,0x97,0x5f,0x16,0xfe,0x19,0xff,0x23,0x97,0x28, +0x66,0x0c,0x0a,0x71,0xff,0x4e,0x0a,0x0e,0xa0,0x6a,0x4d,0x93, +0x42,0x9d,0xe0,0x4c,0x0c,0xe1,0xec,0x00,0x0b,0x93,0x10,0x08, +0x18,0xdc,0x46,0x03,0xb6,0x77,0x0e,0x18,0x3c,0xa2,0x9f,0xa2, +0x25,0x7c,0x44,0x26,0xe6,0x0d,0xc8,0xe7,0xc1,0x7b,0x03,0x58, +0x6d,0xc8,0x16,0xe2,0x66,0x82,0xba,0x27,0x97,0x3a,0xad,0x57, +0x69,0xf5,0x52,0x68,0xfe,0x3d,0x0d,0x26,0x81,0xa5,0xf2,0x98, +0x19,0xf5,0xc1,0xa2,0x36,0x11,0xb4,0xcd,0x44,0x6d,0x16,0xd6, +0xc0,0x16,0x02,0x56,0xb7,0xd1,0x4a,0x7a,0x8e,0xd5,0x23,0xfa, +0xa9,0x08,0xa5,0x82,0x03,0x89,0xce,0x8a,0xba,0x10,0x11,0x19, +0x11,0xc9,0xc7,0xc0,0x8c,0x57,0xfd,0x9f,0x81,0xae,0x3e,0x6d, +0xe9,0x47,0x46,0x30,0x43,0x6a,0xa9,0x13,0x2e,0xde,0x8c,0x1f, +0x34,0x9a,0xf1,0xd7,0x5f,0x15,0xbf,0x8a,0x97,0xa6,0x2f,0xb3, +0x87,0x84,0x3c,0x26,0x21,0x4e,0x6a,0xe9,0x65,0x5c,0x54,0xdb, +0xa8,0x20,0x3c,0xa6,0x22,0x87,0xff,0x0f,0x4f,0x62,0x15,0xbb, +0x65,0x2f,0x2d,0x84,0x4a,0x05,0x6b,0xfd,0x16,0xf6,0x34,0xea, +0x04,0xa1,0x82,0x31,0xbe,0xdf,0xe3,0xc4,0x0f,0xc3,0xdc,0x7c, +0xf8,0x38,0x01,0x4c,0x39,0x98,0x26,0x92,0x85,0x4c,0xb6,0x9e, +0xc2,0x0f,0x4c,0x63,0x4e,0x4e,0xab,0xaa,0xf0,0xe1,0x3d,0xf6, +0x2c,0xea,0x84,0xe3,0x54,0x73,0x9c,0xd5,0x63,0xcf,0xf7,0x83, +0x4a,0x16,0x7c,0x18,0x27,0xd5,0x9c,0x29,0x92,0x45,0xff,0xab, +0x66,0xeb,0x10,0x2b,0x16,0xcf,0xb9,0x58,0x7a,0xa1,0xac,0x42, +0x19,0x02,0x80,0xc5,0xcb,0x2c,0xe8,0xcf,0xf9,0x8e,0xa5,0xe5, +0x19,0xb4,0xac,0x28,0x4c,0xa6,0x2a,0x34,0x04,0x89,0x76,0x63, +0xcd,0x50,0xd6,0x8f,0x65,0x77,0x75,0xf6,0x63,0xa2,0x74,0x49, +0x33,0x82,0x34,0x7d,0x56,0xae,0x44,0x35,0x78,0x31,0x93,0x5f, +0xe3,0x94,0xe5,0x98,0xe9,0x98,0xa1,0x54,0x9b,0x55,0x9d,0x5d, +0x9e,0x73,0xbc,0x98,0x7f,0xdd,0x83,0x71,0xdd,0x32,0x33,0x3c, +0x63,0x0a,0x33,0x99,0x63,0xae,0x1d,0x11,0x5d,0x61,0x5d,0x21, +0x4a,0xb2,0x20,0xcd,0xf0,0xc3,0xa7,0x32,0x1c,0x78,0x4a,0xa5, +0xcf,0x47,0x6e,0xd0,0xf8,0x4c,0xa5,0xd7,0x51,0xe1,0x06,0x28, +0xe4,0xc3,0x64,0xb0,0x56,0xa6,0x02,0x9b,0x50,0xcf,0x21,0x35, +0xe3,0x95,0x0f,0x32,0xaf,0x70,0x9d,0x98,0x32,0xb1,0x7b,0x4c, +0x3e,0x03,0xe6,0xb1,0xa1,0x3a,0x3e,0x87,0x6c,0x35,0xb8,0x01, +0x8d,0x0a,0x2b,0x5d,0x65,0xa3,0x50,0x77,0x99,0x8a,0x39,0x93, +0x65,0xa0,0xd0,0xc2,0xdc,0xef,0xac,0x7f,0x79,0xcb,0xbb,0xdd, +0x6c,0x5c,0x55,0x68,0x04,0x1d,0xe2,0x16,0xe8,0x14,0xec,0x10, +0xa2,0x93,0xaf,0x9b,0xab,0x9f,0xce,0xc1,0xfe,0x25,0xa4,0x23, +0xb8,0x23,0xa8,0xed,0x04,0x87,0xbf,0x31,0x5f,0xa4,0xdd,0xce, +0xbd,0x52,0xc8,0x55,0x8b,0x93,0x09,0xe8,0x74,0xa1,0xce,0x2d, +0xb0,0xea,0x42,0xab,0xeb,0x7a,0x87,0xe7,0x33,0x49,0x79,0x89, +0x79,0x09,0xb9,0x66,0x19,0xfc,0x09,0x1d,0x0f,0x43,0x47,0xf3, +0x0e,0x2f,0x3e,0x3b,0x2f,0xb3,0x28,0xa3,0x84,0x83,0x4f,0x0e, +0xe2,0x5e,0x73,0xd8,0xbb,0x1e,0x83,0x4d,0x85,0xb4,0x1e,0x3c, +0xc1,0x28,0xfe,0x06,0xba,0x04,0x1e,0x09,0x3b,0x37,0x31,0xb9, +0x35,0xf9,0xad,0x69,0xf5,0x5c,0x1b,0xaa,0xb1,0x49,0x85,0x89, +0xc5,0x09,0x45,0x06,0x89,0xbc,0xff,0x12,0xb3,0xe5,0xfb,0x77, +0xd6,0x3b,0xf0,0x89,0x89,0x09,0x49,0x89,0x89,0x9c,0xfc,0xe3, +0x5a,0x3a,0xd0,0x28,0x58,0x78,0x04,0x2e,0xbd,0xe8,0x72,0x5b, +0xa6,0x8e,0xe6,0x26,0x60,0xbe,0x13,0x8f,0x9a,0xc2,0xd1,0x2d, +0xe8,0x6c,0x22,0x84,0xf7,0xa2,0x2f,0x23,0xae,0x00,0x37,0x12, +0xe9,0x71,0xc2,0x2e,0xc0,0x99,0xc3,0x4f,0x99,0x82,0xea,0xbc, +0xfa,0xec,0x06,0xce,0x14,0x5b,0x09,0xf0,0x4f,0x28,0x85,0xec, +0x9a,0x03,0xfc,0xf7,0xf4,0x13,0xcc,0xc5,0x44,0x02,0xd1,0xd0, +0x84,0xfb,0x90,0x63,0xd3,0x0d,0x28,0xc3,0xe8,0xc8,0xce,0x69, +0x57,0x15,0x54,0xc5,0xc5,0xa2,0x2b,0x2b,0x4e,0x82,0xbb,0x04, +0x16,0x3d,0xc1,0x45,0xd2,0x1d,0x8b,0xbe,0x97,0xce,0x0e,0xba, +0xea,0x49,0x70,0x2a,0x7c,0x42,0x95,0x64,0x08,0x3f,0x21,0xb4, +0x30,0x03,0x3f,0x61,0x45,0x6f,0x7d,0x92,0x63,0x9f,0x6b,0x91, +0x61,0xda,0x91,0xcd,0x07,0xf7,0x9c,0xe8,0x08,0xa4,0x3c,0xfa, +0x07,0xbc,0x48,0xea,0xaf,0x96,0x7f,0x9b,0xf6,0xd8,0x2c,0x8d, +0x0f,0xdf,0xef,0xb3,0xc7,0x89,0x5a,0xaf,0x04,0xd0,0x27,0xd9, +0x46,0xe9,0xb2,0xd4,0xc3,0xbd,0xe9,0x7c,0xc4,0xd5,0x90,0x91, +0xa0,0x7e,0x0e,0xe7,0x87,0x92,0x14,0xcd,0xf8,0xbd,0x17,0x35, +0x06,0x12,0xf9,0xb3,0x77,0xa3,0x6f,0x45,0x5c,0xa3,0xda,0x6b, +0x27,0x3c,0x25,0xe0,0xdc,0x83,0xce,0x8f,0x20,0xb4,0x17,0x43, +0xa5,0x57,0xf5,0x36,0x01,0xef,0x9d,0x68,0x65,0x0a,0x56,0x5b, +0x31,0xc4,0x44,0x28,0xed,0xc5,0x18,0x46,0x4c,0x86,0x07,0x24, +0x40,0xcd,0x7a,0xd7,0xe7,0xfb,0x2a,0x0d,0xf9,0x5f,0xef,0x0e, +0x3d,0xc9,0xa0,0xca,0xca,0xa4,0x6d,0xe9,0x3c,0xf2,0xad,0x5a, +0x55,0x3f,0xbf,0xfb,0xa6,0xe5,0xad,0xc0,0xdb,0x5c,0xb8,0xe8, +0x4d,0x60,0xee,0x10,0xf5,0x33,0xd3,0x9f,0x0f,0xe2,0x29,0x83, +0xef,0x71,0x3a,0xae,0xd0,0x87,0x15,0x78,0x85,0x31,0x8c,0x34, +0x88,0x32,0x8a,0x4e,0xd5,0xe1,0x61,0x56,0x0e,0xcc,0x2d,0xfb, +0xb1,0xec,0xdc,0x10,0x6f,0x1b,0x61,0x11,0x69,0x7e,0x92,0x83, +0x22,0x9c,0x4b,0xe0,0x14,0xdc,0xc6,0xdd,0x38,0x9b,0xcd,0xd0, +0x57,0x78,0xc3,0x74,0xe6,0xfc,0xd3,0x3f,0x07,0x68,0xff,0x50, +0xe8,0xd2,0x4c,0xf0,0x23,0xda,0x09,0x1f,0xfd,0xb7,0x37,0x94, +0xa5,0xde,0x48,0xdc,0x4e,0xb2,0x06,0xd3,0xc7,0x92,0x07,0x29, +0x98,0x89,0xd2,0x8e,0xd4,0x0f,0x31,0xe1,0x30,0x84,0xe2,0xbd, +0x22,0xfd,0xa2,0xed,0xe9,0xba,0xdd,0x59,0x7c,0xc4,0x98,0xef, +0x77,0x01,0x83,0xd4,0xaf,0x2e,0x14,0x8e,0x4a,0x7a,0x19,0x4d, +0x69,0xe4,0xe6,0xdd,0xb4,0x10,0x41,0x0b,0x9e,0x17,0xbc,0xcf, +0xfb,0xa8,0x18,0xe9,0xf7,0x31,0x54,0x39,0x4f,0xa0,0x82,0x11, +0xbe,0xdf,0xeb,0xc4,0x8f,0xc0,0xbc,0x7c,0xf8,0x28,0xe1,0x5f, +0x95,0x9b,0x2f,0xa9,0xdc,0x4f,0xff,0x55,0xb9,0x07,0xff,0x2a, +0xa7,0x29,0xce,0xea,0xb5,0xe7,0x07,0xe0,0xd3,0x2c,0xf8,0x28, +0x0e,0x4c,0x38,0x78,0xff,0x5f,0x35,0xfe,0xf1,0xbf,0x35,0xdb, +0x86,0xd8,0x89,0xc5,0x18,0x49,0x7c,0xc2,0x3d,0xc3,0xdc,0x29, +0x4a,0x2d,0xfd,0x76,0x78,0x0b,0x44,0xbd,0x1c,0xc6,0x1c,0xbd, +0x37,0x18,0xb5,0x5c,0xef,0x57,0xec,0x61,0x5d,0xc2,0x9c,0x22, +0x1c,0x22,0x32,0x65,0xfc,0x6f,0x15,0x4f,0xea,0xaf,0x36,0x70, +0xc0,0x41,0x1b,0xa1,0xfa,0x5c,0x4e,0xf5,0xd9,0x9f,0xc2,0x90, +0xcb,0xd2,0x71,0xe0,0x4f,0x24,0x62,0xa5,0x28,0xe9,0xb3,0xfc, +0xaf,0x2c,0x82,0x01,0x8c,0x51,0x50,0x16,0x65,0xc1,0x14,0x32, +0xf2,0x63,0x30,0xf7,0xab,0x1f,0xbf,0xb1,0xe9,0xe2,0x77,0xec, +0xc1,0xf7,0xf6,0xe1,0xfb,0x86,0x1c,0xc8,0x0f,0x4f,0x9c,0x65, +0xd7,0xd5,0xba,0xfe,0xa2,0x02,0xc7,0x98,0xee,0xbc,0xbc,0x2e, +0x55,0xf0,0x60,0x35,0x73,0x15,0x28,0xac,0x8c,0x92,0xce,0x1d, +0x92,0xcf,0xc3,0x11,0x29,0x38,0xfb,0x2c,0xb5,0x7f,0x78,0x58, +0xa8,0x80,0xc3,0x8c,0xe2,0xdf,0x9c,0xe0,0x4b,0xee,0xb4,0x1c, +0xf8,0x16,0xcb,0xdb,0x61,0x14,0xb6,0x4d,0xe4,0x63,0x0e,0x83, +0x9d,0x01,0xb8,0xe6,0x00,0x2a,0xaa,0xf4,0x98,0x2b,0x3c,0x86, +0xcf,0xa5,0x95,0x8d,0x01,0xe5,0x3f,0x40,0xb4,0xc2,0xfc,0x2d, +0x07,0x6d,0x6f,0x6d,0x82,0x7c,0x4b,0xec,0xa0,0xee,0xe0,0x3c, +0x1b,0x1a,0x74,0x22,0x30,0x30,0x90,0xc3,0xd3,0xe6,0xa0,0xcf, +0xf8,0xf8,0x7b,0xf9,0xb9,0xfb,0x5d,0x8d,0xba,0x11,0x79,0x33, +0x72,0x73,0xd0,0xfc,0x48,0xe9,0x78,0x32,0x73,0x1e,0x74,0x52, +0x61,0x6e,0xde,0xcb,0xda,0xbf,0x8e,0xbf,0x0e,0x78,0xe6,0x5f, +0xdc,0xce,0x6f,0xcb,0xdb,0x90,0xb3,0x25,0xbb,0xab,0xa8,0xa1, +0xb2,0xa2,0x8e,0x83,0xa5,0x5d,0xe2,0x21,0x26,0x27,0x37,0x27, +0x2f,0x2b,0x97,0x83,0x1f,0x81,0x60,0x7f,0x07,0x25,0xff,0x13, +0x1a,0xc2,0x74,0x22,0x5f,0x76,0x70,0x62,0x19,0x03,0x13,0x78, +0x90,0xa0,0x6b,0x2b,0xb8,0x32,0x03,0x36,0xa4,0x15,0x7c,0x6d, +0x58,0x31,0xd4,0x9e,0x80,0xab,0x15,0xba,0x32,0x90,0xd7,0x4e, +0xc0,0xd7,0x8a,0x2a,0xa3,0x21,0xce,0x21,0x56,0x18,0xd9,0xce, +0x0a,0x15,0x56,0x04,0xcf,0xb4,0xc3,0x19,0x06,0x4f,0x61,0x01, +0x39,0x90,0x7e,0x24,0xd5,0x20,0x29,0x2b,0x3d,0x2b,0x33,0x3b, +0x8b,0x83,0x7c,0xc6,0xcd,0xdd,0xde,0xcf,0xe8,0x04,0xa7,0x08, +0x0f,0x9e,0x92,0x6b,0xc0,0x66,0x80,0x72,0x2c,0xe8,0x72,0x30, +0x0b,0x2d,0xa0,0x0b,0x2c,0x40,0x69,0x00,0x95,0xfe,0x94,0x2d, +0x46,0x0d,0xe9,0x32,0x0b,0x78,0xa1,0x6f,0x00,0x8b,0x1f,0x68, +0xee,0xc1,0x0a,0x34,0x65,0xd0,0xe9,0x14,0xce,0xd2,0xfa,0x4c, +0x25,0x45,0x18,0x20,0xa6,0x7d,0xd2,0x61,0x2b,0xf6,0xd6,0xfc, +0xb0,0xe3,0x2d,0xd9,0xff,0x1c,0xc0,0x72,0x80,0x7e,0xe7,0x68, +0x4d,0xb1,0xfe,0x0d,0xfd,0x7e,0x23,0x4e,0x68,0xd2,0x20,0xa8, +0x01,0xcb,0x41,0x83,0xc1,0xcb,0x62,0x1a,0xc1,0x4f,0xd6,0x8d, +0x00,0xa7,0x0a,0x47,0x51,0x5b,0x17,0xde,0x47,0x45,0x76,0x95, +0xbb,0xd1,0xe7,0x52,0xc0,0xe7,0x0f,0x2d,0xed,0x83,0xb1,0xf7, +0xff,0xd9,0x80,0xb2,0x1f,0x36,0xce,0x15,0xce,0x48,0x67,0xb1, +0xe0,0x3c,0xc8,0x26,0x55,0x7a,0x65,0x7b,0x72,0xf6,0xf7,0x65, +0xf1,0x41,0x77,0xdc,0xbf,0xf0,0x1c,0xe6,0x44,0x0d,0x0c,0x22, +0x6d,0xb7,0x8a,0x6f,0x65,0x5f,0x37,0xc9,0xe4,0x43,0x0e,0xfb, +0x69,0x5b,0x6b,0x72,0xc2,0xfa,0x50,0x12,0xf1,0x30,0xe8,0xaa, +0xff,0xb8,0x69,0x24,0x5f,0x20,0xcb,0x3d,0x90,0xbc,0x8f,0x5b, +0x10,0x4b,0x2e,0xde,0x8c,0xb9,0x1d,0x79,0xcd,0xe4,0x34,0x9f, +0x7c,0x34,0x7e,0xef,0x39,0x4d,0x0a,0xac,0x5e,0xc8,0x77,0x91, +0x9c,0x8e,0x8c,0xae,0xd4,0xee,0xa3,0xb9,0x94,0x5e,0x7c,0x68, +0x84,0x1f,0xee,0x5f,0xd6,0x6b,0xc9,0xd7,0xf7,0x56,0x0f,0x97, +0x8e,0x73,0x50,0xa3,0xc7,0xe0,0x47,0x51,0x68,0x79,0x82,0x0a, +0xff,0x40,0xa4,0xbf,0xd3,0xa1,0xb9,0xb8,0xfc,0xdd,0x7c,0xac, +0x12,0xf3,0xaa,0x7b,0x00,0x14,0x32,0x55,0x73,0xe0,0xe3,0x64, +0x30,0x83,0x8f,0x95,0x61,0x06,0x2b,0x22,0x85,0x79,0x31,0xb0, +0x0d,0x56,0x8e,0xe2,0x4a,0x90,0x69,0xa3,0x0c,0x0f,0xe9,0xc2, +0x4e,0x26,0x04,0x3f,0xb0,0xc4,0xb9,0xf8,0x21,0x2e,0x6e,0x35, +0xe7,0x5f,0xc2,0xf4,0x26,0x78,0x2f,0xe9,0x0d,0xf5,0x98,0x5d, +0xe3,0x82,0x0f,0x93,0x78,0xe9,0x7c,0x1c,0x05,0xda,0x2c,0x6e, +0x6a,0x6d,0xa1,0x36,0x6e,0x55,0x64,0x66,0x54,0x5c,0x58,0xb8, +0x12,0xec,0x3e,0x4c,0x34,0xa1,0xf6,0x2a,0x75,0x5d,0x77,0xa5, +0x46,0xb6,0x67,0x76,0xa6,0x75,0x69,0x15,0xf0,0x1e,0xc8,0x99, +0x21,0xa7,0xb1,0xaa,0xd7,0x9c,0xaf,0xee,0x2c,0xef,0x29,0xee, +0xe3,0x60,0x48,0x9f,0xc1,0x0f,0xa2,0xd0,0x3a,0x10,0x3f,0x50, +0x39,0x18,0xe9,0xe7,0xa8,0x3e,0x17,0x37,0xbe,0x6b,0xe4,0x02, +0xe6,0xaf,0xbe,0x41,0xa9,0x91,0x79,0xff,0x34,0x72,0xb6,0xd4, +0xc8,0x09,0x55,0xf1,0x30,0x39,0x1d,0x9b,0x79,0x33,0xf9,0xea, +0xa5,0x6f,0x94,0xee,0x8d,0xf5,0x0e,0x76,0xdf,0xb0,0x6d,0xe3, +0xed,0x74,0xed,0xcc,0xcd,0xed,0xb8,0x58,0x16,0x3a,0xb4,0xa4, +0xa8,0xa9,0x4c,0x7b,0x54,0xc4,0x75,0x78,0x58,0xa5,0xd3,0xfc, +0x17,0x98,0xd2,0xfd,0x43,0xc5,0x73,0xa5,0x4b,0xb4,0xa9,0xf1, +0x31,0xb0,0x13,0x65,0x7c,0x57,0x27,0x25,0x00,0x1a,0x11,0x19, +0x91,0xb1,0x11,0x91,0x4a,0xa8,0x25,0xcc,0x25,0x67,0x71,0x52, +0xd8,0x6a,0xa7,0xed,0x83,0x7e,0x7c,0xd3,0xb3,0xcc,0x57,0xb1, +0x30,0x89,0x83,0xcb,0x58,0x44,0x5f,0xa1,0x9f,0xbe,0x02,0x3c, +0x01,0x81,0xc4,0x9f,0x88,0x0f,0x8a,0x0b,0xea,0xca,0xe1,0x83, +0x6e,0x07,0xdc,0xf1,0x1b,0xb1,0x38,0xc1,0xa7,0x7b,0xa7,0xb9, +0xa7,0xba,0x59,0xc6,0x98,0x9d,0x36,0x3f,0x33,0xfe,0x0d,0xf5, +0x9f,0x23,0xc0,0x9a,0x96,0xf1,0xde,0x3a,0x6e,0x47,0x5d,0x74, +0x02,0x0b,0x8f,0x17,0x1d,0x2f,0x6c,0xb8,0x5c,0x7b,0xbb,0xf4, +0x86,0x49,0x11,0xef,0xaf,0xe9,0xa9,0xe9,0xa6,0x1f,0x96,0x19, +0x9a,0x11,0x96,0xee,0x6a,0xcd,0xf7,0x58,0xf6,0x19,0x77,0xe8, +0xf9,0xd8,0xfa,0x3a,0xfa,0xb9,0x79,0x9f,0xf3,0x3a,0xef,0x7d, +0x3e,0x5e,0x9f,0xef,0xbf,0x34,0x10,0xd7,0x1f,0xcf,0x89,0x6b, +0x47,0x84,0xcd,0x6c,0xc5,0xa5,0xf2,0xb8,0xb2,0x78,0x0e,0xde, +0x00,0x21,0xe0,0x0e,0xb3,0x47,0xba,0x64,0xd4,0x74,0xb8,0x8f, +0x18,0xcb,0xd0,0xcb,0x02,0xbc,0xf6,0xe0,0x05,0x73,0xb8,0xb0, +0xf3,0x5d,0x19,0x33,0x28,0x59,0xbe,0x98,0x7f,0xb1,0xa0,0x48, +0x19,0x66,0x82,0xaa,0xe9,0xea,0x83,0x2d,0xcc,0xb0,0xa9,0x3e, +0x8b,0x11,0xa1,0x1b,0xb5,0x17,0xa9,0xb4,0x3a,0x95,0x75,0xe4, +0xb4,0xa7,0xf7,0x29,0xfd,0x8c,0x73,0x7a,0xe0,0x00,0x2a,0x31, +0x71,0x05,0x97,0x8a,0x62,0x8b,0x39,0xca,0xc7,0x93,0xfb,0x20, +0x19,0x74,0x0f,0x20,0x8f,0x07,0x7a,0x60,0xce,0xd7,0xa8,0xda, +0x27,0x64,0x1a,0x2f,0xde,0xf6,0xcc,0x94,0x42,0x62,0xfe,0x10, +0xea,0x32,0xb0,0x59,0x48,0x24,0x7b,0x70,0xf3,0x03,0x16,0x36, +0xe3,0xfb,0x64,0x27,0x6e,0x7e,0xc4,0x8a,0x8b,0x50,0x20,0x99, +0xb2,0x64,0x8d,0x84,0x23,0xbd,0xd9,0x7c,0xcc,0xe5,0xb0,0x3b, +0xe1,0x83,0x1c,0x26,0x51,0x47,0x59,0xfb,0x75,0xee,0xef,0xc9, +0xbf,0x9a,0x26,0xf1,0xa7,0x36,0x9c,0xd8,0xe8,0xba,0x8d,0xaa, +0xe5,0x2f,0xf2,0x41,0xa2,0x07,0x57,0xd8,0xd1,0x03,0x3f,0xec, +0x82,0x8f,0x0e,0x4b,0xb3,0x62,0x33,0xaf,0x6e,0xba,0xa5,0xfe, +0x3d,0x27,0xaa,0x84,0x11,0x99,0xda,0xa6,0x03,0x0b,0x74,0x6b, +0x4d,0x78,0x98,0x72,0xe5,0xfb,0x2f,0xc6,0xbf,0xe2,0x84,0x2d, +0xa8,0x46,0x06,0xc4,0x54,0x43,0x50,0x5d,0x8c,0xf1,0xe2,0xe5, +0x2b,0x37,0xe5,0x93,0x35,0xae,0x08,0x97,0x31,0xfb,0x4f,0x56, +0x6f,0xce,0x62,0x64,0xff,0x64,0x85,0x69,0xe2,0x1a,0x32,0x31, +0x19,0x92,0x40,0x87,0x89,0xda,0xe7,0x68,0xb1,0xd9,0xa4,0xce, +0x92,0xff,0x7d,0xb4,0xe3,0x76,0xf2,0xf7,0x9c,0x14,0xc4,0xc0, +0x98,0xe4,0x85,0x74,0xab,0x00,0xc7,0x54,0x66,0x66,0x94,0xaa, +0xde,0x64,0xcd,0xb3,0x14,0x76,0xaf,0x62,0xfd,0xa2,0xe3,0x8a, +0x55,0xdf,0x80,0x25,0x3b,0x31,0x19,0xc7,0x88,0x7c,0xf2,0xb6, +0x89,0xc9,0x8c,0xa2,0xbc,0x5b,0x58,0x44,0x3a,0xea,0x5b,0x9a, +0x1a,0x3b,0x9c,0xaa,0x78,0x13,0x6d,0x7d,0x53,0x2d,0x6b,0x6e, +0xd3,0x37,0xa0,0xd6,0x89,0x6a,0x77,0xa1,0x00,0x9c,0xc5,0x7c, +0x74,0x06,0xd3,0xfd,0x78,0xc8,0x02,0x0e,0x6d,0x45,0x3f,0x0b, +0x68,0x67,0xd6,0x9b,0x2c,0xb1,0xc3,0x19,0x4e,0xb9,0x66,0x7c, +0x4d,0x5a,0x55,0x6a,0x55,0x3a,0x87,0xf5,0x43,0xad,0x70,0xc3, +0x66,0x18,0xbe,0x65,0x93,0x63,0x92,0x63,0x12,0x4e,0x57,0xd6, +0xf3,0xde,0xf9,0xda,0xb5,0x36,0xd4,0x00,0x2e,0xec,0x64,0x26, +0x46,0x45,0x35,0xf2,0x33,0x68,0xc9,0x8f,0xe3,0xf9,0x89,0x3b, +0xac,0xe0,0x2c,0xaf,0x22,0xc8,0x2d,0x01,0x8e,0x85,0xd5,0x73, +0xfe,0x44,0x6e,0x31,0x03,0x6b,0xe6,0x00,0xf7,0x96,0x42,0x09, +0xf1,0x07,0xdc,0x49,0x70,0x0e,0x25,0x56,0x73,0x18,0x9c,0x83, +0x0f,0x08,0xcc,0xc1,0x61,0x8a,0xbb,0x05,0x2b,0x58,0x4c,0x06, +0x4a,0x7a,0xca,0x3a,0xab,0xb8,0x2b,0x8c,0x87,0x5b,0x59,0x44, +0xe3,0xf1,0xaa,0x40,0x25,0x14,0xa8,0x40,0xbe,0x84,0x1b,0xbb, +0x58,0xbc,0x61,0x4d,0xe0,0xc6,0x16,0xbc,0x41,0x1d,0x80,0x4c, +0x88,0x25,0x83,0xa8,0xcd,0x5e,0xb9,0x32,0x78,0xbb,0xfb,0x6b, +0x93,0x0a,0x5e,0x7f,0xa5,0xc6,0x76,0xb5,0x83,0xdc,0x66,0xf8, +0x10,0x74,0x06,0x50,0xe7,0x0f,0xed,0xa5,0x68,0x6a,0x08,0xa6, +0x54,0x9d,0x4f,0x19,0xc0,0x6d,0x66,0xc9,0x6e,0x64,0x75,0x70, +0xb6,0x59,0x89,0x21,0x5f,0x95,0x51,0x95,0x51,0x91,0xc1,0x89, +0x9f,0x8c,0x0d,0x81,0x5c,0x7f,0x5c,0xd0,0x65,0xd3,0x23,0xea, +0x9b,0x5d,0xea,0x2c,0xea,0xad,0xcb,0x95,0x1c,0x1d,0x1a,0x7d, +0xeb,0x3c,0x6b,0x3c,0x94,0xf0,0x2f,0xe6,0x4e,0xf3,0xb5,0xb6, +0x91,0x1e,0x4e,0x44,0xa8,0x24,0xd7,0x5c,0x46,0x1d,0x86,0xac, +0x6b,0x7a,0x78,0xc3,0x56,0xcd,0x56,0xcd,0x2a,0x0e,0x54,0xc5, +0x29,0xc4,0xa0,0x7d,0x7f,0xd7,0xa1,0x1a,0x37,0x53,0xfe,0x86, +0xf3,0x75,0xeb,0x11,0x4b,0x0e,0x02,0xd1,0x55,0xda,0x3f,0x20, +0xc7,0x29,0xec,0x84,0x15,0x16,0x92,0x87,0xaf,0xc7,0x41,0xa9, +0xee,0xad,0x7e,0x21,0xef,0x80,0x53,0x0c,0x91,0xdb,0xb3,0x8c, +0x13,0x56,0xc0,0x3e,0x42,0x6b,0xcc,0x40,0x39,0x95,0xcc,0x5e, +0xf9,0xd7,0x44,0xd7,0x08,0xf3,0xfb,0xe9,0xe5,0xa2,0x09,0x5c, +0xb4,0x1c,0xed,0xa0,0x6e,0x8a,0x5e,0x72,0x7a,0xa9,0x47,0x83, +0x1d,0xd8,0x48,0xdc,0xdc,0x1d,0x3c,0xad,0x7c,0xb8,0x46,0xbc, +0x20,0x4d,0x19,0x2d,0x9f,0x88,0xa7,0xb4,0xf8,0x9a,0x16,0x0e, +0x99,0xc3,0xd0,0x51,0x51,0xd1,0x54,0xd8,0xc9,0xe2,0x12,0x23, +0x5c,0xe7,0x80,0xf3,0x7c,0x73,0x4c,0xf8,0x81,0xf4,0x2b,0x19, +0x37,0xb2,0x39,0x3c,0x3b,0xda,0x22,0xf8,0xdb,0x8e,0x41,0x39, +0x5b,0xe9,0xd5,0x58,0xe7,0x51,0x61,0x5f,0xe9,0x58,0xac,0x04, +0xcb,0x7b,0x30,0x92,0xb9,0x5e,0x37,0xde,0x3a,0xd0,0xcd,0x89, +0xf5,0xb0,0x9c,0xe8,0xe2,0xc1,0x51,0x16,0x42,0xe7,0x80,0xba, +0x2e,0xaa,0x33,0x10,0x3c,0x67,0x14,0x74,0x74,0x59,0x0a,0xcf, +0xd6,0x12,0x08,0x63,0x1c,0x8f,0xd9,0x1d,0xb7,0xa1,0x7e,0xf2, +0x3d,0x06,0x52,0xf6,0x90,0xfc,0xb0,0xbc,0xf0,0x9c,0x30,0x4e, +0x9c,0xc4,0x8c,0xe4,0x0e,0x17,0x0c,0x51,0xc5,0xda,0xc2,0x88, +0x3e,0xb8,0x87,0x8c,0x08,0xfe,0x32,0x56,0xf4,0xb7,0x24,0x82, +0xbf,0xb6,0xe8,0x4f,0x85,0xa3,0x27,0xbc,0x4f,0xfa,0x70,0x25, +0xdb,0xd5,0xdd,0x3a,0xd8,0x74,0xd5,0xa6,0x82,0x37,0xdd,0x69, +0xac,0xa9,0x6d,0xc0,0x69,0xfd,0x00,0xaa,0x3d,0xa8,0xfa,0x55, +0xd6,0x55,0xc8,0x1e,0xc0,0xec,0x6b,0xba,0x47,0x30,0xff,0x9a, +0xce,0x11,0xbc,0x60,0x08,0x17,0x34,0xc7,0xae,0x42,0xfe,0xd1, +0xd0,0x6d,0xb8,0xda,0x14,0x56,0xaf,0x47,0x5d,0x63,0x38,0xcf, +0xa8,0xe9,0x6d,0xb0,0xc0,0x49,0x56,0x85,0x74,0x10,0x66,0x56, +0x65,0x56,0x66,0x71,0x38,0x34,0xd8,0x07,0x99,0xc6,0x43,0xf0, +0x33,0x7b,0xe9,0x5c,0xdc,0xd9,0x4b,0x67,0xab,0xe8,0x20,0x2c, +0x36,0xaf,0xb3,0x2b,0x70,0x75,0xe6,0xcb,0x82,0xcb,0x82,0x8a, +0x29,0xfc,0x8e,0x61,0xba,0xca,0x5b,0x2b,0x1b,0x6b,0xb8,0x89, +0x15,0x20,0x23,0x30,0xdc,0x83,0xc3,0x8c,0x3d,0x4e,0x21,0xc6, +0xc2,0x07,0x7d,0x2c,0x3e,0xc3,0xf7,0x88,0x29,0xfd,0x92,0xc5, +0x8d,0x53,0xe9,0x5f,0x4c,0x59,0xe1,0xc4,0x0e,0x3a,0xbc,0x32, +0x77,0xb1,0x13,0x9a,0x18,0x4a,0xda,0xa8,0xa1,0x70,0xc2,0xab, +0x98,0xc8,0xd2,0x82,0x0d,0xc1,0x29,0x68,0x09,0x53,0x58,0x41, +0x3d,0x90,0x40,0xe6,0x56,0xcc,0x64,0xa4,0xe4,0x10,0x37,0x89, +0xfb,0x03,0xed,0xd7,0x86,0x77,0x2c,0x3c,0xf9,0x9e,0x23,0x83, +0xcb,0xab,0x0e,0x48,0x7b,0x54,0x2b,0x74,0xa8,0xb3,0xd5,0x63, +0x86,0xee,0x76,0xfe,0x98,0xff,0x90,0x5a,0xc2,0x63,0x7b,0xcc, +0x3e,0xd7,0x3a,0xd0,0x62,0xc7,0xc7,0x27,0x24,0x24,0xc6,0x27, +0x72,0x13,0xd3,0x47,0x21,0x0c,0x9e,0xe2,0x06,0xdc,0xc6,0xe6, +0xca,0x14,0x60,0x11,0xd3,0x96,0x57,0xd0,0xa2,0x2a,0xb4,0xb3, +0x89,0x21,0x0a,0x13,0x99,0x62,0x19,0x79,0x0b,0xae,0xf2,0x25, +0x58,0x32,0x11,0xcf,0x82,0x9b,0x84,0x75,0x56,0x0b,0x2d,0xb0, +0x9a,0x11,0xba,0xf1,0x2b,0x82,0x4f,0x61,0x1a,0x3c,0x65,0xf0, +0x29,0xee,0x26,0xf4,0x19,0x33,0xf1,0x29,0xa3,0x28,0x8c,0xca, +0x53,0xc9,0x43,0x0d,0x35,0x51,0x19,0x5d,0x58,0x7c,0x18,0x82, +0x2a,0x86,0xc8,0xa8,0xf4,0x1b,0x29,0x8c,0x82,0x72,0x0e,0x6c, +0x85,0x6f,0x94,0x61,0x83,0xbc,0x7a,0x80,0xc5,0x85,0x13,0x2c, +0x19,0x78,0x59,0x06,0xd3,0x12,0x41,0x89,0x1b,0xed,0xc3,0x28, +0x26,0xbd,0x2d,0xa5,0x2b,0xb1,0xc9,0x20,0x95,0x3f,0x86,0x8b, +0xed,0xf0,0x03,0x83,0xad,0x35,0x7a,0x7c,0x41,0x4d,0x7e,0x53, +0x56,0x7b,0xea,0xda,0xa2,0xcd,0x2d,0x3b,0xed,0x35,0x0d,0xf5, +0x0e,0x9a,0xd6,0x9a,0xf2,0xd7,0xba,0xfb,0x87,0x5a,0x2e,0x37, +0xea,0xf4,0xe8,0x5f,0x31,0xa9,0x1e,0xe2,0x35,0xbb,0x4c,0x06, +0x1d,0xc7,0x39,0x51,0x4f,0x68,0x24,0x18,0x89,0x6b,0xc4,0xfc, +0x3e,0xc1,0x07,0x32,0xc4,0x2d,0x5b,0xd8,0x14,0x0b,0x85,0xfb, +0x4c,0x5d,0x56,0x56,0x83,0xaa,0x60,0x83,0xab,0x21,0x92,0x85, +0xc3,0x68,0x4d,0xfc,0xc6,0xdd,0xc6,0x9d,0x06,0x6c,0x02,0xf9, +0x3a,0xa3,0x2a,0xcd,0x22,0x2d,0x0e,0xab,0xc0,0x8c,0x1c,0xd3, +0x74,0xd5,0x72,0xb0,0x68,0xf3,0xe1,0x9b,0xfb,0x6b,0xae,0x15, +0x5e,0xe3,0x84,0x6c,0x5c,0x42,0x62,0x70,0xea,0xf1,0xe5,0x0e, +0x5b,0x6d,0x9f,0x1c,0xfb,0xed,0x0c,0xf5,0x4a,0xd4,0xf6,0xee, +0x21,0x78,0xa5,0xeb,0x32,0xb0,0x70,0x51,0xca,0x74,0x6d,0x45, +0x60,0xdd,0x0d,0x5c,0x47,0x9d,0x54,0x9e,0x60,0x45,0x28,0x29, +0x7f,0x3b,0xbc,0x00,0x64,0xba,0xd4,0x77,0x2f,0xd7,0xa3,0x1e, +0x34,0x1c,0x3f,0xb2,0xc1,0xf9,0x8b,0x51,0xb9,0xd9,0x8c,0xff, +0x0a,0xa6,0x54,0xfd,0x95,0xf0,0x3b,0xf5,0xdc,0x35,0xa3,0x42, +0x02,0xe5,0xba,0xd2,0x29,0x7c,0x3f,0xe0,0x86,0xc6,0xa6,0x4d, +0xb0,0xe2,0x54,0x66,0x74,0x6c,0x78,0xa4,0x92,0x7c,0xf7,0x9f, +0xc4,0xed,0xbe,0xd6,0x6b,0x03,0x49,0x88,0xbd,0x47,0x86,0x96, +0x57,0x53,0x21,0xda,0x40,0x85,0x36,0x15,0xa2,0x21,0x15,0x62, +0x17,0x15,0xa2,0xa9,0x24,0x44,0x93,0xcf,0x8f,0x4a,0x42,0xcc, +0xa2,0x78,0x74,0xda,0x18,0x15,0xe0,0x0b,0x2a,0xc0,0x5d,0xef, +0x04,0xb8,0x84,0x69,0xcf,0x95,0x04,0xd8,0xc9,0x5e,0x8a,0xb9, +0x14,0x13,0x1b,0xc3,0x69,0xe0,0x0a,0x82,0x2f,0xa8,0xa0,0x5e, +0x30,0xf8,0x42,0x12,0xd4,0x0b,0x2a,0xa8,0x17,0x54,0xc9,0x27, +0xcb,0x67,0x92,0xf1,0x3b,0x90,0x37,0x80,0x79,0x0f,0xb5,0xd5, +0x30,0xed,0xa1,0x8e,0x1a,0xc6,0x19,0x42,0xdc,0x81,0xb1,0x3b, +0x90,0xc6,0x50,0xc7,0xa6,0x4b,0x3c,0x9d,0x9c,0xdc,0x2c,0xbc, +0xbc,0x1b,0xbc,0xaa,0xbc,0x8b,0xec,0x7c,0xf8,0x52,0xdf,0x32, +0xf7,0x62,0x57,0xbf,0x70,0x9f,0x48,0xaf,0x93,0x3e,0x0d,0x3e, +0xb5,0x3e,0x65,0x36,0xbe,0x7c,0xb1,0x77,0xb1,0x47,0x81,0xbb, +0x4d,0x84,0xc5,0x49,0xa3,0xe8,0x1c,0x03,0x1e,0x22,0x1b,0x60, +0xfb,0xf7,0x3f,0xc3,0xa7,0x5c,0x3b,0xd6,0xb2,0x99,0x19,0xe9, +0x99,0xa9,0x59,0x46,0x79,0xbc,0xe9,0xd1,0x3d,0xe6,0xc8,0x39, +0x49,0x27,0xdc,0xe5,0x8d,0x94,0x76,0xd7,0x70,0x54,0x3a,0x04, +0xd6,0xeb,0x53,0x0b,0x6f,0xb3,0x08,0x13,0x0c,0x7f,0x8c,0x64, +0x97,0x1e,0x3b,0xa8,0x7d,0x50,0xa5,0xc3,0x46,0xe1,0xd6,0xe3, +0x92,0xef,0x60,0x96,0x72,0xc2,0x1b,0xec,0x18,0x91,0xef,0x90, +0xe1,0x7e,0x56,0x68,0x43,0x43,0x02,0xd3,0x64,0x38,0x4d,0xe4, +0x0d,0x05,0x9e,0x76,0xef,0x36,0x36,0x4b,0x5f,0x01,0x3e,0x65, +0x7a,0xf2,0x72,0x28,0x86,0x57,0x7f,0x3b,0x40,0x09,0x1d,0x32, +0xa4,0xd3,0xb9,0xd5,0xa1,0xd9,0xa2,0xa5,0x81,0x77,0x68,0xb7, +0x6e,0x36,0xaf,0xa1,0x9c,0xec,0xbe,0xfc,0x34,0xf1,0xf2,0x76, +0xf0,0x35,0x39,0xee,0x5f,0x16,0x98,0x7f,0x2c,0xdf,0x3e,0x80, +0x2f,0x38,0x9e,0x1b,0x98,0xe7,0xef,0x1f,0xe5,0x17,0xed,0x1d, +0x73,0xbc,0x2c,0xb0,0x28,0x20,0xcf,0xee,0x18,0x9f,0x7b,0x22, +0x27,0x30,0xfb,0x98,0x5d,0xb4,0x65,0x8c,0xe9,0x99,0x2c,0x4b, +0x1e,0x62,0xf2,0x40,0xed,0xce,0x97,0x7f,0x71,0xd5,0x54,0xe7, +0x32,0x52,0xd2,0x53,0x53,0x53,0xcd,0xf3,0x78,0x99,0xf9,0x4e, +0x57,0x9c,0xe1,0x57,0x60,0xc7,0x5f,0xce,0x18,0xce,0xee,0x2e, +0xe0,0x44,0x77,0x71,0x06,0x19,0xee,0xa9,0x18,0xbd,0x74,0x8b, +0x7b,0x85,0x6a,0x43,0x82,0x89,0x3e,0x7e,0x40,0xe1,0xdb,0x24, +0x7d,0x5c,0x07,0x0e,0xba,0x98,0x60,0xfa,0x9c,0x39,0x67,0x15, +0x62,0xa1,0x67,0xc1,0xc9,0x8b,0xc1,0x87,0xe8,0x6f,0x13,0x17, +0x5a,0x08,0x0b,0x77,0xa1,0x22,0x93,0x69,0x43,0xa9,0x6b,0x6f, +0x66,0x56,0xa7,0xea,0xc8,0xcb,0xce,0x25,0x2c,0xfe,0x67,0x13, +0x69,0xf6,0xad,0x0e,0xa8,0x75,0xaf,0xab,0xe1,0xdd,0x2a,0x5d, +0x8b,0x6c,0x8b,0x38,0x5c,0x8e,0x26,0xc4,0x93,0x8d,0xc0,0xf3, +0xf8,0x72,0xac,0x4e,0x3e,0xd9,0x79,0x1c,0x5e,0x62,0x56,0x0b, +0xfc,0xdc,0xf5,0x9f,0xd9,0xe6,0xac,0x30,0xcb,0x96,0xa4,0xb2, +0x95,0xf0,0xbe,0x2d,0x0b,0x29,0xa8,0x2d,0x79,0xe5,0x05,0xb0, +0x9f,0x09,0x76,0x71,0x08,0xdc,0xe7,0x5b,0x62,0xc3,0xbf,0xae, +0x69,0x6d,0xce,0xec,0xe6,0x60,0x8e,0x3d,0x63,0x55,0x18,0xd8, +0xa7,0x02,0xef,0x33,0x15,0x29,0xe9,0x45,0xaa,0xe5,0xac,0x59, +0xb6,0x82,0xf5,0x52,0xd6,0xff,0x64,0x62,0x81,0x6a,0x3d,0x58, +0x49,0x4e,0x59,0x8b,0x3a,0x65,0x27,0xc9,0x29,0xff,0x6d,0x2e, +0xdc,0x20,0xde,0x5f,0x18,0xbc,0x31,0xbb,0x6b,0xe9,0xc5,0xb7, +0x1e,0xe9,0x59,0x56,0xbe,0x8f,0xc3,0x7d,0x50,0xa1,0x4b,0x87, +0xe0,0x36,0xa6,0xfb,0x5e,0xd3,0xd3,0xbc,0xaf,0x4c,0x0b,0xf9, +0xc0,0x1d,0xb6,0x2b,0xf4,0xf7,0xb5,0x38,0xf0,0x99,0xf9,0x0a, +0x13,0xd3,0x47,0xe8,0x10,0x6c,0xc0,0x8d,0xb8,0x84,0xcd,0xd5, +0x53,0x00,0x45,0xa6,0x35,0x5f,0x1a,0x82,0x6d,0x6c,0x42,0x88, +0x82,0x18,0x8a,0xe3,0x52,0x80,0xd4,0xb2,0x27,0xaf,0x61,0xc9, +0xc3,0x01,0x35,0x69,0x07,0xc4,0xf2,0x2f,0x65,0xbb,0xf6,0x1a, +0xde,0xc7,0x25,0x2f,0x37,0xe1,0xe7,0x18,0x03,0x9f,0xaf,0xc3, +0x23,0x86,0x70,0x04,0xd7,0x8f,0xc1,0x7a,0xd8,0x3f,0x80,0xfb, +0x7f,0x64,0x3b,0x05,0x4f,0xb2,0x0a,0x97,0x3f,0x67,0xe5,0xd4, +0xb1,0x12,0x6c,0xa0,0x8c,0xae,0x81,0x99,0x98,0xbe,0x89,0xe0, +0xbc,0x55,0x30,0x8f,0x85,0xe5,0x38,0x8f,0xc0,0xbc,0x17,0x48, +0x8b,0x46,0x7d,0x84,0xfe,0xf3,0x59,0x28,0x25,0x61,0x33,0x3e, +0x4c,0x02,0x7f,0xf0,0x80,0x49,0xbe,0x5f,0x18,0x07,0xf1,0x69, +0x2e,0x19,0x56,0x69,0x96,0xb6,0x51,0x56,0x51,0x96,0x51,0x1c, +0xa5,0xc4,0x3a,0xc2,0x42,0xd4,0x81,0xad,0x3a,0xb8,0x15,0x0f, +0x89,0x0b,0xe1,0x10,0x5e,0x60,0xf7,0x47,0xee,0x39,0xa5,0x16, +0x9d,0xac,0xcd,0xc3,0xaa,0x6c,0xf8,0xbc,0x00,0x14,0x4b,0x0b, +0xd6,0xf2,0x13,0x1f,0xfc,0xcd,0x91,0xdc,0x03,0x83,0xba,0xa0, +0xb0,0xbf,0xa2,0x9f,0xc7,0x59,0x77,0xad,0x47,0xfd,0x7a,0x39, +0x2d,0xc6,0xcf,0xc0,0x58,0x0b,0x67,0xab,0x97,0xd1,0x51,0x3e, +0xed,0xce,0xcd,0x2b,0x39,0x0f,0xb8,0xdf,0xf0,0x08,0xe9,0x40, +0x7d,0x4b,0x56,0xf8,0x78,0x0e,0x25,0x21,0xf5,0xf8,0x3e,0x03, +0x57,0xa0,0x9e,0xd0,0xd2,0xc7,0x50,0xcf,0x62,0x9d,0xd8,0x4e, +0xb0,0xeb,0x11,0xd4,0x76,0x61,0xed,0x17,0x14,0xd3,0x34,0xe2, +0x97,0x13,0x1f,0x0f,0xfd,0x01,0x5d,0xcc,0x0e,0x61,0x2b,0x41, +0xf7,0x07,0xe0,0xce,0xa0,0xbb,0x94,0x0d,0xc3,0x7d,0x0f,0xba, +0x53,0xeb,0x19,0x08,0x2a,0x04,0xb5,0x7f,0xa2,0xfd,0x10,0x83, +0xeb,0xbf,0xa5,0x4e,0x7b,0xe9,0xbd,0x81,0x7d,0x8f,0x64,0x12, +0xf2,0x93,0xed,0xdc,0x69,0xf8,0x08,0x97,0xfe,0xb5,0x05,0xd7, +0xd3,0x3e,0x5b,0xbf,0x16,0x8d,0x0c,0x80,0x7a,0xd8,0x71,0x58, +0x07,0xda,0x8c,0x70,0xf2,0x25,0xf1,0x28,0xf6,0x2a,0xf2,0x2d, +0xe4,0x52,0xe0,0xc3,0x4b,0x30,0x0f,0x16,0x28,0x83,0x8a,0xb8, +0x48,0xf7,0xd5,0x6e,0x16,0xbb,0x3d,0xd0,0x12,0xe7,0xa3,0xa5, +0x4a,0x97,0x0d,0x2c,0x03,0xa7,0x02,0xb0,0x8e,0x83,0xbd,0x52, +0x8c,0xef,0xaa,0xd1,0x75,0x2f,0x56,0x9f,0x75,0x38,0xe3,0x78, +0xc6,0x89,0x5b,0x1d,0x79,0xfc,0xc4,0xa1,0xb9,0x5b,0xa5,0x58, +0xd7,0xef,0x98,0x9f,0x1a,0x1a,0xe1,0x83,0x0c,0xd5,0x4b,0x85, +0xb1,0x45,0x97,0x8a,0x72,0x42,0xf2,0x82,0xf3,0x43,0x38,0x2c, +0x17,0xde,0x12,0xd8,0xb7,0x95,0x41,0xe6,0x2c,0x4e,0x8b,0xc1, +0x29,0x2a,0x38,0x1d,0x14,0x2d,0x60,0x2a,0xcc,0x55,0xc6,0x3b, +0xb9,0x64,0x35,0x6e,0x7e,0xc6,0xf6,0x4a,0x31,0x68,0xf3,0x16, +0x4b,0x22,0xda,0xf0,0x4e,0x44,0xaf,0xa8,0x88,0x14,0xa1,0x4b, +0x7e,0x80,0x98,0xf4,0xed,0x1d,0xd5,0x95,0xd2,0x10,0x8c,0x3a, +0xde,0xd7,0xe9,0x33,0xe6,0xae,0xc1,0x6a,0xa2,0x2b,0x57,0x18, +0x65,0xc5,0x2b,0xf8,0x39,0xc1,0x78,0x21,0x05,0xe2,0xd9,0x09, +0x05,0xdc,0x4c,0x4c,0x7a,0x77,0x8d,0xcb,0xea,0x9d,0x2c,0x29, +0x1d,0xbc,0xaf,0x3b,0x68,0xc4,0x81,0x4b,0x1a,0x81,0x85,0x54, +0xef,0x17,0xb2,0xea,0x94,0x85,0x96,0xf4,0x96,0xdc,0xcb,0xec, +0xd6,0xcc,0xe6,0xc3,0x8c,0x7c,0xb6,0x7b,0xe9,0x73,0xe2,0x4c, +0x99,0xfc,0x83,0x11,0x46,0xe4,0x6b,0x49,0x58,0x97,0xc7,0xf5, +0x63,0xf5,0x3a,0xc7,0xf9,0x12,0x87,0x32,0xcd,0x0c,0x2b,0xce, +0x86,0x1a,0x31,0x24,0x6b,0x2f,0x4b,0x99,0x0a,0x34,0xd0,0x44, +0x17,0x78,0x8a,0xf4,0x56,0x38,0x4a,0x87,0x76,0x16,0xea,0x3c, +0x6f,0xee,0x1d,0xfd,0xef,0xa1,0x9d,0x7b,0xa4,0x9d,0x81,0xc1, +0xef,0x0e,0xed,0x14,0x4c,0x84,0x5c,0x02,0x35,0xe2,0x3c,0x43, +0x78,0x82,0x81,0xac,0x90,0xed,0x48,0xe0,0xae,0xb8,0xc8,0x10, +0x7e,0xc6,0x1c,0x16,0xef,0xc1,0xfb,0xe4,0xbb,0xc2,0xef,0x2a, +0x6e,0x76,0x78,0xb6,0xf2,0xea,0xb6,0x07,0x7d,0xd7,0xf8,0x73, +0xe8,0xfb,0x13,0x39,0x68,0xa7,0x4e,0x8b,0x85,0x26,0xfc,0x93, +0xe2,0x6f,0xca,0x6f,0xb5,0x71,0x35,0x86,0x64,0x87,0xc1,0x1a, +0x17,0x9c,0xe2,0x51,0x60,0xc2,0xbf,0x29,0x7f,0xdd,0xf4,0xf5, +0x08,0x47,0x41,0xfc,0x47,0xe4,0x4d,0xf9,0x9b,0xa6,0x6f,0x46, +0x3d,0xda,0xf8,0xed,0xfa,0x6b,0x5c,0xf1,0x3d,0x0f,0xea,0xb7, +0xa8,0x85,0x96,0x3f,0x19,0x12,0x3f,0xbb,0xa6,0x75,0x44,0xfc, +0x88,0x11,0xf4,0xf0,0x1b,0xd2,0xc7,0x3e,0xce,0xef,0xc9,0x2b, +0x2f,0x4c,0x4a,0x4c,0x38,0x9f,0x72,0x06,0xf6,0xee,0xe6,0x2b, +0xbb,0x70,0xe5,0xb5,0xb0,0x84,0xe8,0xd8,0x93,0x27,0x95,0x42, +0x43,0xa3,0x63,0x15,0x32,0xf2,0x93,0xf3,0xdb,0x95,0xb3,0xb5, +0x8f,0xb3,0x47,0x9d,0x02,0x50,0xc9,0x59,0x25,0xd7,0x51,0xc1, +0x94,0xc9,0x6d,0x40,0x95,0x81,0xb0,0x84,0xa8,0x0b,0xb4,0x5a, +0x58,0x18,0xad,0x96,0x55,0x90,0x5c,0xd0,0xa2,0x9c,0x4b,0xab, +0x1d,0xb1,0x09,0x40,0xe2,0xa4,0x52,0x64,0xf8,0x55,0x51,0x4f, +0x61,0x65,0x91,0x52,0x62,0x62,0xa2,0xf4,0xec,0xad,0x47,0xf8, +0x8b,0xb1,0x0a,0x86,0xe2,0xe7,0xfa,0xc2,0xe7,0xa8,0x78,0x19, +0x14,0x85,0xcd,0x43,0x54,0x64,0x5f,0x0a,0x4b,0x89,0x47,0x98, +0x5b,0xb8,0x5b,0x04,0x07,0xa1,0x0f,0x87,0xd5,0x40,0x5b,0x17, +0xb5,0xf1,0x43,0x3d,0xf8,0x10,0x13,0x58,0xcb,0x10,0x8b,0x70, +0x6b,0x69,0xb9,0xbf,0x39,0xa5,0x35,0xbd,0x25,0x43,0x5a,0xee, +0x67,0xa5,0xe5,0xfe,0xe7,0x4c,0x67,0x56,0x6e,0x9b,0x2a,0x0c, +0xb0,0x75,0xe9,0xb5,0x99,0xb5,0x59,0x1c,0x14,0x5d,0x23,0x82, +0x2a,0x96,0x1b,0x83,0x0f,0xfe,0xc2,0x3e,0x83,0x5f,0x08,0x45, +0xa3,0xbf,0x0c,0xd1,0xaf,0xea,0x98,0x32,0xf4,0x23,0x23,0x95, +0x23,0x4d,0xad,0xed,0x6e,0x0d,0xbc,0x8d,0xad,0x89,0xa3,0x8e, +0xb4,0x2e,0xf3,0x86,0x58,0x59,0x9a,0x3b,0x68,0xbb,0x97,0x59, +0xf3,0xe3,0xd5,0xfd,0xcd,0x1d,0x5d,0x1c,0xec,0xc1,0x74,0x72, +0xb9,0xe6,0x4a,0x5b,0x57,0x9f,0x4b,0x03,0x6f,0x6e,0x6e,0xe8, +0x70,0xd8,0x85,0xc3,0x65,0x6f,0x89,0x89,0x89,0x81,0xed,0x21, +0xc7,0x0a,0x4b,0xfe,0x4a,0xdd,0xd5,0xee,0x9e,0x41,0x8e,0x7a, +0x36,0x12,0xe6,0x19,0xe2,0x13,0xe8,0xcb,0xa1,0x83,0xb8,0x6f, +0xac,0x4f,0xd8,0x64,0x3c,0x2e,0xec,0xc3,0x7c,0x26,0x2b,0x2f, +0xbd,0x30,0xbd,0x98,0xc3,0x78,0x0c,0x24,0x7f,0x09,0x9b,0xe6, +0xb3,0xe2,0x26,0x13,0x22,0x6c,0x42,0x4e,0xdc,0xc4,0x28,0x42, +0x99,0xfc,0x10,0x31,0xeb,0x3d,0x3c,0x62,0x5c,0x6f,0x67,0xcd, +0x0f,0x38,0x5e,0xd3,0xef,0x31,0xe6,0x3a,0xf1,0x16,0x69,0x48, +0x6a,0x4a,0x69,0x4a,0xe5,0xd0,0x7f,0x91,0x14,0xd0,0xf4,0x9c, +0x69,0xca,0xce,0x6b,0x56,0x85,0x70,0xb6,0x39,0xad,0x31,0xbd, +0x3a,0xed,0xf4,0x30,0xef,0x1e,0x29,0xcd,0x3b,0x71,0xa0,0x09, +0x93,0x86,0x70,0x12,0xac,0xd4,0xc1,0x95,0xd2,0xe6,0xd6,0xa9, +0x68,0xce,0xda,0x46,0xd8,0x9c,0xb4,0x8f,0xe6,0x04,0x55,0xb8, +0x45,0x9e,0x26,0xc1,0x8c,0xc2,0xab,0x95,0x5e,0xfd,0xfc,0x41, +0x0f,0x9c,0x15,0x80,0x53,0xa2,0x38,0xf4,0x64,0x71,0xcf,0x49, +0x5c,0xa1,0x46,0xd5,0xa8,0xcf,0xe6,0x81,0x94,0xbe,0x7d,0xc9, +0x25,0xd8,0xae,0x04,0x73,0xc5,0x7d,0xb4,0xc9,0xbf,0x0d,0x61, +0x27,0x23,0xee,0x38,0x2a,0x35,0x6b,0xc8,0x48,0x9a,0x05,0xe9, +0x77,0x18,0x37,0xec,0x33,0xe2,0x0a,0x77,0x91,0x7f,0xe7,0x3b, +0x98,0xff,0xf7,0x7c,0x87,0x98,0xcc,0xfc,0x3b,0x43,0xa2,0x08, +0xd7,0x21,0x86,0xa4,0x3a,0xa6,0x9a,0xa5,0x9a,0x79,0x9d,0xf2, +0x8c,0xf2,0x88,0xa6,0x0a,0x05,0x1f,0x0b,0x73,0xa8,0x89,0x5a, +0xa3,0x87,0x6b,0x70,0xb6,0x38,0x07,0x66,0xe3,0x31,0xd6,0x30, +0xd2,0xe0,0xa4,0x5e,0x54,0x9a,0x0e,0x0f,0x4c,0xee,0x9f,0x85, +0x2f,0x2a,0xe3,0x8e,0xc5,0x1d,0xbb,0x14,0xd8,0x93,0xc9,0x87, +0x3d,0x0e,0xf8,0xf3,0xc4,0x6d,0xee,0x91,0xd0,0x4a,0xd0,0x0a, +0xbc,0xa8,0xcb,0xe8,0x9b,0x43,0x0b,0x01,0xb4,0x20,0x6a,0x4b, +0x98,0xfc,0x3d,0x60,0xf1,0x3d,0x89,0x52,0xd1,0xd2,0x4c,0x5a, +0x9a,0x38,0x1d,0x48,0xee,0x63,0xe5,0x5e,0x06,0x6c,0x28,0x49, +0xc1,0x4a,0x35,0xa8,0x64,0x05,0x0b,0x31,0x8e,0x3c,0x02,0x73, +0x78,0x2e,0x1a,0xe0,0x73,0x30,0xda,0x89,0x11,0x06,0x10,0x81, +0x9f,0x0e,0xc2,0xa7,0x70,0x76,0x90,0xc5,0x3e,0x28,0x23,0xa8, +0xf2,0x02,0x54,0x98,0xc1,0x95,0xe4,0x05,0x2c,0x5a,0x49,0xf1, +0xbe,0x39,0x01,0x95,0x65,0xa8,0xc2,0x80,0xe1,0x6f,0x04,0x16, +0x2d,0xc3,0x45,0x54,0x58,0xc3,0xc2,0x67,0xc4,0x37,0xc2,0x27, +0xd2,0x27,0x92,0x83,0x13,0xdf,0x0d,0x6d,0x86,0xa3,0x3a,0x78, +0x14,0x15,0xf5,0x29,0x3f,0xbf,0xc4,0x5a,0x85,0x58,0x85,0xd9, +0x44,0xa6,0xd0,0x71,0x99,0xda,0x9c,0xde,0xfc,0x2e,0x0c,0xe5, +0x3d,0x36,0x4b,0x5b,0xe1,0x27,0xa6,0x33,0x5b,0x1a,0x97,0x83, +0x6c,0x45,0x5a,0x45,0x3a,0xa5,0x59,0x10,0x07,0x1f,0x92,0xc6, +0x8c,0x9c,0x6a,0xd5,0x5e,0xd6,0x2c,0x4d,0x41,0x93,0x9a,0x16, +0xcf,0xe8,0x84,0x4a,0xd5,0x11,0xb0,0x07,0x1d,0xcc,0xc4,0x24, +0x56,0x2f,0x3f,0x70,0x4c,0x45,0xf0,0x9c,0xd3,0xfc,0x4f,0x25, +0x93,0x74,0x85,0x23,0xb8,0x94,0xf5,0x88,0x79,0x57,0xc9,0x95, +0x56,0xca,0xa3,0xc8,0x40,0x26,0x55,0x42,0x43,0x6a,0xf1,0xd7, +0xe2,0xaa,0x9f,0x58,0xc1,0x77,0xce,0x5a,0x5c,0xff,0x13,0x2b, +0x2e,0x98,0x98,0x49,0xe4,0x73,0x7a,0x71,0x2f,0xe5,0x7d,0x4b, +0x7a,0x71,0xc9,0xf7,0x7a,0x1b,0x50,0x4b,0xba,0x2c,0x30,0x81, +0x05,0x94,0xfc,0xa9,0x31,0xc2,0x5a,0xda,0x00,0x5a,0xd2,0x82, +0x0f,0x59,0x3c,0x26,0xce,0x24,0xdf,0x97,0xff,0xde,0x3f,0xde, +0xe5,0xd2,0xcc,0x6b,0x9a,0xaf,0xb5,0xd8,0xe6,0xcb,0x09,0x9f, +0x3f,0x26,0xdf,0x38,0xff,0x64,0x7a,0xdd,0xaa,0xaa,0x9d,0x3f, +0xdc,0xb6,0x62,0x70,0x47,0x19,0x65,0xf4,0xdd,0x82,0x07,0x39, +0x95,0x15,0x7d,0x31,0xfc,0x64,0x78,0x04,0x7f,0x9a,0x3e,0x7d, +0xea,0x20,0x4e,0x05,0x1d,0x19,0xea,0xa0,0xaa,0x01,0x65,0xae, +0xe1,0x38,0xdb,0x1e,0x17,0xac,0x46,0xd2,0x68,0xc6,0x3f,0x78, +0x5b,0xfe,0xf6,0x9f,0x63,0x9f,0x47,0x84,0x14,0x69,0xaa,0x88, +0x02,0xce,0x27,0xb8,0xb3,0xb1,0x51,0x01,0x9a,0x85,0xf3,0x04, +0x13,0x8c,0x28,0x55,0xb2,0xdd,0xb1,0x77,0x2f,0x32,0xbb,0x6a, +0x8d,0x79,0x20,0x3f,0xff,0xf4,0x73,0x19,0x4c,0xe6,0x12,0x98, +0x2a,0x64,0x80,0x5d,0x0e,0x2a,0x4b,0x6b,0x06,0x79,0x5c,0xf4, +0xc7,0x92,0x9f,0xac,0xe9,0xd7,0x60,0x2c,0xbe,0x20,0xc3,0x94, +0x53,0xec,0x05,0xf5,0x21,0x71,0xb5,0x3e,0xec,0xc5,0xbd,0x68, +0xa2,0x07,0x26,0x68,0x85,0x71,0x7a,0xc2,0xe5,0x61,0x4c,0xa4, +0x03,0x42,0x51,0x60,0x28,0xe2,0x3a,0x51,0xed,0x5b,0xe7,0x5f, +0xac,0xeb,0xc7,0x17,0x7b,0x15,0x7a,0x64,0xbb,0x72,0x02,0x73, +0x8e,0x14,0x55,0x16,0xd6,0xe5,0x54,0x69,0xe5,0xf1,0x41,0x2e, +0x5e,0x96,0xee,0x8e,0x9c,0xd8,0x63,0xf0,0xf7,0xbc,0x41,0x06, +0xe7,0x89,0xdd,0xa4,0x33,0x2f,0xbf,0x59,0x55,0xf8,0xe0,0xa8, +0x48,0x70,0xb7,0x84,0x21,0xc4,0xa8,0x10,0x22,0xcc,0x87,0x34, +0xfc,0x09,0x3f,0x61,0xd3,0xcd,0x14,0x60,0x3a,0xd3,0x96,0x9d, +0x4d,0x31,0xc5,0x87,0xe2,0x6c,0xd1,0x90,0x15,0xfa,0x61,0x0d, +0x75,0xfa,0x5a,0xd8,0xc0,0xa2,0x2d,0x28,0x11,0xcb,0xd2,0x7d, +0x55,0xc6,0x59,0xc7,0x2c,0xf9,0xbe,0xa0,0x3b,0x9e,0x9d,0xde, +0x5c,0xee,0x7a,0x62,0x53,0xb6,0xb7,0xda,0x30,0xc7,0xd7,0x82, +0x1f,0x3c,0x71,0xcb,0xbd,0xcb,0x87,0x13,0x54,0x70,0x35,0x69, +0x31,0x68,0xd1,0xa9,0xd6,0x18,0x2d,0xe7,0x5d,0x6e,0x59,0x8d, +0xdb,0x76,0x71,0x13,0x06,0x94,0x19,0x5f,0xb9,0xdc,0x76,0xb5, +0xf4,0xb2,0x41,0x21,0xef,0x25,0xb3,0xd6,0xa1,0x74,0x50,0x88, +0x85,0x25,0xa4,0x58,0x96,0xaf,0x9b,0x79,0xe4,0x5a,0x06,0x1f, +0x7c,0x23,0x60,0xcc,0x77,0x80,0xc3,0x82,0x30,0x92,0xa1,0x9d, +0x64,0x10,0x7f,0xf0,0x6a,0x22,0x1f,0x73,0xfb,0xd4,0x48,0xe8, +0x30,0x95,0x46,0x2e,0x9c,0x23,0x27,0x33,0x22,0x2f,0x45,0x44, +0x86,0x46,0xf0,0x67,0x62,0x53,0x86,0x13,0x06,0x2e,0xdd,0x52, +0x1a,0x1c,0x6f,0x1d,0xad,0xbf,0x69,0xdf,0xc4,0x7b,0xe9,0x7b, +0x5a,0xb8,0xda,0x72,0x35,0x2c,0x74,0xcb,0x70,0x84,0xc5,0x6c, +0x0f,0x0a,0x0e,0x3f,0xc4,0xfd,0x14,0xe4,0x3e,0xfa,0xab,0xf1, +0xc7,0x82,0x9f,0xde,0x65,0x7e,0x88,0x8b,0xf9,0x02,0x95,0xf8, +0xce,0x66,0x85,0x38,0xf9,0x34,0x22,0xbc,0x1e,0x10,0x5f,0x33, +0xc2,0x03,0xfc,0x99,0x80,0xab,0xd8,0x84,0xfe,0x2c,0xfa,0xfb, +0xe3,0x67,0x54,0x44,0x2a,0x5d,0xa6,0x5d,0x5f,0x96,0x7f,0x9f, +0x09,0x53,0x95,0xca,0x6c,0x06,0x2a,0x06,0xdb,0xea,0x1a,0x95, +0x9c,0xeb,0xdc,0x9c,0x0c,0xed,0xcd,0x7c,0x95,0x12,0x5a,0xe3, +0x3a,0x62,0x7b,0x39,0x38,0x80,0xe2,0x62,0x29,0x37,0xdc,0x13, +0xa6,0x25,0x47,0xda,0x96,0xb7,0x14,0x83,0xd9,0x8b,0x05,0x17, +0x0a,0x8b,0x94,0xc5,0x29,0xa0,0x49,0xce,0xe1,0x94,0x93,0xab, +0xbc,0x76,0xf4,0xf9,0xf3,0x95,0x3f,0xa7,0xbc,0x96,0x72,0x49, +0xc8,0x8f,0x05,0x12,0x9c,0x24,0xee,0x82,0x49,0xac,0xa0,0x8b, +0xd5,0x84,0xde,0xcf,0xd2,0xfb,0xbf,0x67,0x9a,0x72,0xff,0xb9, +0xff,0xb4,0x09,0x0b,0xca,0x6e,0xc4,0xd9,0x59,0x66,0x6b,0xe4, +0x5b,0x66,0xc5,0x0f,0x97,0x8f,0xb4,0x35,0x34,0x72,0xfe,0x0b, +0x89,0xbd,0xed,0x51,0x4b,0x99,0x67,0x89,0x05,0x7f,0xa5,0xe6, +0x6a,0x4f,0x4b,0x2b,0x87,0xa3,0x35,0xc4,0xc1,0x4e,0xdb,0x42, +0xe6,0x59,0x6a,0xc1,0x5f,0xae,0xbd,0xd2,0xdd,0xd4,0x46,0xf1, +0xf7,0x46,0x79,0x1a,0x29,0xc1,0xa9,0xbf,0xaf,0x84,0x8f,0x17, +0xd7,0x0c,0xf0,0xf8,0xc9,0xcb,0x8d,0x3f,0x3a,0xfe,0x45,0xe9, +0xb0,0x31,0xac,0x62,0xec,0x37,0xef,0xdb,0x81,0xd3,0x36,0xd7, +0x1a,0xf1,0xf0,0xc9,0x1f,0x3f,0xfe,0x51,0x0c,0x53,0x39,0xf1, +0xab,0x2a,0xa2,0x0f,0x2d,0x43,0x2c,0x7e,0x89,0x0b,0x88,0x1e, +0xc8,0x87,0x59,0xbc,0xf9,0x2e,0x28,0xa8,0x6a,0x88,0x15,0x12, +0x71,0x94,0x0c,0xa1,0x06,0xa8,0xc1,0xda,0x21,0x91,0x5a,0xda, +0x55,0xa8,0x86,0xfb,0xf4,0x61,0x1f,0x5a,0xe3,0x09,0x3d,0x21, +0x63,0x18,0x83,0xc1,0x9a,0xc5,0x6f,0x81,0xa1,0xb5,0xaa,0xf4, +0xd9,0x21,0x71,0x39,0x19,0x80,0x63,0x50,0x84,0xb5,0xf8,0x25, +0x0b,0x81,0xff,0xc4,0xfa,0xa8,0xc1,0x46,0x56,0xf1,0x6f,0x4b, +0xf9,0x3c,0x72,0xb8,0x55,0x73,0xd8,0xec,0x32,0x87,0x97,0x0c, +0xe0,0x38,0x53,0x61,0x5f,0xe7,0xdc,0x48,0xdd,0xb1,0x3a,0x53, +0x5b,0x5e,0x55,0x55,0xde,0x60,0x53,0xc7,0x5b,0x1b,0x98,0x58, +0xeb,0x38,0xd4,0x58,0xf2,0x29,0x09,0x29,0x89,0xc9,0x09,0x1c, +0x16,0x09,0x71,0x50,0xc6,0x56,0x1e,0x57,0x98,0x68,0x12,0xbf, +0x22,0x6f,0xc0,0x48,0x3e,0x0f,0xe3,0xa5,0x65,0x00,0x23,0x69, +0x63,0xed,0x3c,0xa1,0x1a,0xe6,0x31,0x14,0x58,0xde,0x22,0x60, +0x01,0x3b,0xd1,0x82,0xda,0x49,0x5a,0x50,0xa7,0x05,0x75,0x50, +0x27,0x27,0x6c,0xbc,0x6d,0xdd,0x9c,0x1a,0xbc,0xf9,0xaa,0xc6, +0xaa,0xf6,0xbc,0x36,0xea,0x57,0x96,0x91,0x63,0x0d,0xee,0xed, +0x6e,0x75,0x4e,0x9e,0x7c,0xad,0x53,0x89,0x43,0xb1,0x3d,0xb7, +0x45,0x4c,0x20,0x1d,0xf0,0xd6,0x72,0x18,0xfe,0x23,0x3a,0xe3, +0x7f,0x58,0x61,0x35,0x5c,0x23,0x3b,0xf0,0xed,0x63,0x16,0xde, +0xe2,0xc7,0x64,0x23,0xbe,0x7d,0x4a,0x55,0x6c,0xaf,0x60,0x4f, +0xec,0xce,0x39,0x9f,0x75,0x57,0x51,0x03,0x7b,0x43,0x4c,0xa3, +0xd0,0x3e,0x78,0x9d,0xa3,0x99,0xb6,0x49,0x93,0x1d,0x7f,0x73, +0xb4,0xf5,0x4a,0x9e,0xa4,0xae,0x4b,0x21,0xcd,0x10,0xed,0x37, +0x31,0x97,0xaa,0x62,0xeb,0x9b,0x94,0x61,0x15,0x6c,0x1c,0x58, +0xcc,0x96,0x76,0x17,0xf4,0xe4,0xf6,0x1b,0x64,0xf3,0x41,0x7a, +0xfe,0x7a,0x1e,0x06,0x1c,0x3a,0x19,0xc2,0x7a,0x06,0x37,0x3c, +0x24,0xe6,0xbd,0x9a,0xc3,0x26,0xf5,0x76,0x36,0x52,0x56,0x05, +0xfd,0x6e,0x63,0x0e,0xb4,0x07,0x48,0x68,0x8b,0x6f,0xbf,0x7f, +0x83,0xf1,0x31,0xbe,0xd8,0xa9,0xd4,0x28,0xc3,0x86,0x82,0xe8, +0x89,0x49,0xe4,0xc6,0xd7,0x75,0x0f,0xb2,0xe1,0x23,0x0e,0x56, +0xa0,0x23,0x4e,0x92,0x82,0x26,0xfe,0x60,0xea,0x33,0xb3,0xea, +0x55,0xe5,0x1b,0x30,0x0e,0xc3,0x58,0x2c,0xf1,0x5a,0xbb,0x66, +0xb1,0x0a,0xdc,0x12,0xa2,0x08,0xce,0x87,0xe5,0x30,0x9f,0x99, +0x98,0x89,0x69,0xd2,0x3f,0x18,0x34,0x96,0x5c,0x59,0x9f,0xc3, +0x88,0x31,0x75,0x65,0x42,0xa1,0x19,0x89,0x6b,0x8b,0xed,0x1e, +0x56,0x86,0xf9,0xb8,0x9c,0x11,0xf7,0x8a,0xca,0x04,0xf9,0xf5, +0xc3,0x30,0x4d,0x15,0xb4,0xf0,0xb0,0x0c,0xa6,0xe3,0x07,0xec, +0x2a,0x2f,0xe3,0x15,0x56,0x2a,0x45,0xba,0xdf,0xb5,0xb4,0x0e, +0xfc,0xeb,0xe4,0xbe,0xda,0x0f,0x9b,0xe6,0x0a,0xb1,0xef,0xb0, +0x1a,0x74,0xcb,0x1f,0x10,0xa7,0x43,0x5b,0x8f,0xa0,0x8a,0xa1, +0x94,0xeb,0x6e,0xde,0xd8,0xcf,0x97,0xcb,0xbe,0xe3,0x12,0x99, +0x92,0x6d,0x6f,0xb5,0x40,0x51,0xaf,0x8c,0xc2,0xf7,0x8f,0x87, +0xd6,0x0f,0x3b,0xdc,0xe4,0x84,0x93,0x13,0xb7,0x08,0xee,0x65, +0xb2,0x8f,0x2a,0xc0,0xe7,0x94,0x37,0xe6,0xf7,0xa9,0xca,0x7b, +0xb4,0x58,0xb4,0x33,0x21,0x13,0xfc,0xb8,0x9c,0x67,0x71,0x1b, +0x1e,0x25,0xa8,0xf5,0x4a,0xe7,0x33,0x54,0xc7,0xb9,0x0c,0xca, +0xc2,0x71,0xc9,0x41,0xe4,0x55,0x7a,0xec,0xfb,0xfe,0x2c,0x84, +0xa9,0xc9,0xa0,0xa8,0x24,0x30,0x8c,0x0c,0x0e,0x13,0x1c,0xbb, +0x0f,0x63,0x0c,0x5e,0x46,0x6b,0x72,0xb1,0xe4,0x42,0x89,0xb4, +0x2f,0x77,0x6c,0x27,0x83,0x17,0xc5,0x35,0xa4,0x1b,0xee,0x43, +0x94,0xf8,0x3e,0x36,0xb3,0xb4,0x10,0x41,0xdf,0x07,0xb3,0x80, +0xa7,0x68,0xea,0x99,0xb0,0x92,0xb8,0x86,0xba,0x84,0x3a,0x87, +0x73,0x10,0xf4,0x7c,0x78,0xd5,0x3f,0xc1,0x93,0x1f,0xe9,0xc1, +0x47,0xd4,0x6b,0x59,0x84,0x58,0x84,0x59,0x49,0x68,0xaa,0x25, +0xb5,0x35,0xbd,0xf5,0x9d,0xd7,0xe2,0x24,0xaf,0xf5,0x82,0xe9, +0xca,0xce,0x6b,0x97,0x82,0x27,0x1b,0x33,0x1b,0xb2,0x1a,0xb2, +0x39,0x70,0x17,0x66,0x92,0x5a,0xff,0x3a,0xcf,0x12,0xaf,0xfa, +0x3a,0xde,0xb7,0xd4,0xb7,0xd0,0x27,0x97,0x03,0x3f,0xc6,0xea, +0xb0,0x8e,0xd9,0x1e,0x27,0xb5,0xfa,0x43,0x1d,0xda,0x23,0x76, +0x6e,0xfc,0x80,0xe1,0xb8,0xd5,0x0d,0x67,0x35,0xaf,0x75,0x27, +0x3e,0x0b,0xcb,0x32,0xe1,0xe1,0x83,0x9c,0x37,0x25,0xdf,0x37, +0x3c,0x71,0x7c,0xe1,0xfb,0x3a,0x28,0xb3,0x87,0x5f,0x9f,0xb5, +0x2b,0xef,0x40,0xd9,0x57,0x1d,0x97,0xc7,0x3a,0x1f,0x71,0xed, +0xe2,0x90,0x31,0x44,0xb2,0x68,0xb0,0x83,0x44,0x3a,0x84,0xb8, +0xf9,0xb9,0xb4,0xf9,0xf3,0x25,0xf5,0xd9,0x75,0xe9,0x2d,0x1c, +0xbc,0x11,0xcb,0x48,0xfa,0xf1,0xf4,0x80,0x8c,0x00,0xf3,0x28, +0xfd,0x18,0x9d,0x18,0x0e,0x3e,0x80,0x70,0x38,0x83,0xe1,0xdf, +0xcb,0x36,0x60,0x20,0x9e,0xa1,0x50,0x6e,0x0e,0xbb,0x2e,0x6a, +0x45,0xcc,0xc6,0xb3,0x89,0x14,0x35,0xc8,0x52,0xc1,0x3c,0x17, +0x66,0x17,0x67,0xf8,0xa6,0xfb,0xa6,0xf9,0xf6,0x96,0xf2,0x1e, +0x37,0xed,0xaf,0x3b,0x0f,0x49,0x0b,0x89,0x36,0xd4,0xb5,0xe3, +0x6e,0x69,0x67,0x4a,0xd0,0xbb,0x9d,0x29,0x70,0x50,0xda,0x9a, +0xf2,0xf7,0x61,0xb9,0x25,0x19,0xc0,0xdf,0xbe,0x50,0xdf,0x8d, +0xaf,0xd1,0x87,0xd5,0x3e,0x6f,0x78,0xce,0x4c,0xc5,0xc6,0xce, +0xd8,0x55,0xdf,0x33,0x5f,0x87,0xef,0x2e,0x6f,0xaa,0xa8,0xab, +0x0f,0xc3,0x45,0xee,0x2b,0xf6,0x7d,0xd6,0x6b,0xcd,0x53,0xa6, +0xb1,0xa1,0x18,0x74,0xa0,0x46,0x19,0xd6,0xb3,0x6a,0x78,0x9c, +0x1c,0xbf,0xeb,0x77,0xcd,0x6b,0xdc,0xdc,0x87,0x2f,0xd7,0x2e, +0x39,0x94,0x77,0x80,0x93,0x3f,0x11,0x83,0xc8,0x82,0x8c,0x55, +0xf9,0xdb,0x4b,0x9f,0xb6,0xde,0xea,0x6f,0xbf,0xca,0x35,0x63, +0xec,0x3d,0x28,0x82,0xdb,0xe8,0x6f,0x0a,0xdb,0xb6,0xe1,0x4a, +0x73,0x58,0xb9,0x01,0x5d,0xe1,0x81,0x0c,0x1f,0xa0,0xcd,0xf7, +0xb0,0xa4,0x0b,0x97,0xdc,0x61,0xfb,0x2f,0x0d,0xa6,0x75,0x65, +0x85,0x74,0xf1,0xfa,0x41,0x87,0xc2,0xf7,0x9c,0xe5,0x70,0x00, +0x32,0xf7,0x61,0x8f,0xa9,0x90,0xc3,0xda,0x9a,0x1d,0xb1,0xdd, +0xea,0xba,0xb3,0x4a,0xb3,0xc1,0xb8,0xd9,0xca,0x89,0x6f,0x73, +0x1a,0x74,0xbb,0xe6,0xb1,0xd6,0x7b,0xc1,0x71,0x9c,0x11,0x91, +0x43,0xad,0xd6,0xc2,0x2c,0x98,0x5d,0xf6,0xa6,0xf1,0x85,0x0b, +0x4c,0xf5,0x02,0x72,0x82,0x53,0x14,0x7a,0xe5,0xef,0x93,0x1e, +0xa7,0x61,0xa3,0x06,0x07,0x6f,0x0f,0x6f,0x4f,0x6f,0x5f,0xee, +0x9c,0xb7,0xf7,0x79,0x9f,0xb9,0x89,0x86,0x43,0xb1,0xa3,0x97, +0x86,0xe3,0x95,0xf0,0xea,0x28,0xdc,0x66,0xbb,0xe2,0xdb,0x13, +0x9a,0x12,0x93,0x8e,0x27,0x05,0x26,0x04,0xb5,0xe7,0xf3,0xc7, +0xc7,0x1d,0xbe,0x74,0xeb,0xb2,0x09,0xe0,0x33,0x8f,0x65,0x79, +0x67,0x79,0xea,0x47,0x1f,0x8e,0xd6,0x38,0x7d,0xff,0xe6,0xa3, +0xdf,0x47,0x7f,0x30,0xaf,0xe0,0x3d,0xcd,0x6d,0xf5,0xcc,0xf5, +0x42,0xb2,0x03,0x73,0x03,0x73,0x9b,0xba,0xda,0x46,0xca,0xfb, +0x7a,0x92,0x3a,0x53,0x9a,0x52,0xbc,0x7b,0xf9,0xf5,0x7e,0xf8, +0xd1,0x09,0x9c,0x72,0x26,0xc5,0x90,0x6f,0x8e,0xed,0x8c,0xef, +0x4c,0x08,0x70,0xf4,0xb2,0xf7,0x72,0x0d,0xce,0x0c,0x4e,0x0f, +0x4d,0xe3,0xf0,0x5e,0xe6,0xff,0xad,0xd6,0xab,0x70,0x27,0xb1, +0x3f,0x69,0x77,0xca,0x31,0x3a,0x41,0x87,0xaf,0x4f,0x6a,0x48, +0x6e,0x48,0xe1,0xb0,0x6e,0x13,0x9b,0x6e,0xa4,0xf0,0x05,0xd3, +0x90,0x95,0x41,0x11,0x6e,0x0f,0xdb,0x46,0x41,0x7d,0x6d,0x06, +0x45,0xb8,0x6e,0xe1,0xf6,0x61,0x36,0x11,0xdc,0x6b,0xb6,0xad, +0xab,0xa1,0xaf,0xbc,0x87,0xc2,0xe2,0x32,0x03,0x70,0x64,0x7d, +0xad,0x5d,0xed,0x6c,0xed,0x39,0x5c,0x80,0xb3,0xff,0x2f,0xbd, +0x2e,0xd8,0x41,0xfe,0xd5,0x5e,0xe6,0xff,0xad,0xbd,0x62,0x26, +0xf3,0xaf,0xbe,0x0b,0x7f,0x82,0x32,0x29,0xd7,0x2e,0xdf,0x99, +0xbb,0xbb,0x2f,0x97,0x3f,0xf1,0xc0,0xfd,0x91,0x27,0xb5,0xca, +0xb7,0x31,0x86,0xd4,0x5f,0xab,0x7a,0x90,0x77,0xdf,0x24,0x93, +0x3f,0x71,0xd0,0x63,0x8f,0x93,0x81,0xb4,0xa6,0x41,0x01,0x35, +0x7e,0x70,0x6e,0x5b,0xb4,0x81,0x8a,0x2c,0x26,0x2c,0xd2,0x6c, +0xae,0x8c,0xc9,0x30,0x51,0x18,0x64,0xee,0x14,0x96,0x3c,0x4e, +0x51,0x4d,0xbe,0x73,0xe9,0x25,0xac,0x52,0xc6,0xe9,0x7f,0x80, +0x42,0x37,0x2a,0xfc,0xf2,0xee,0xfa,0x0c,0x3e,0xe8,0xc1,0xaf, +0xc4,0x10,0x46,0xe0,0x84,0xa0,0xff,0x42,0xd8,0x5e,0x09,0xc2, +0xfa,0x4b,0x10,0x56,0xf3,0x1f,0x08,0xab,0xf0,0xbf,0x21,0xec, +0x12,0x98,0x44,0x56,0x2f,0x7e,0xc6,0xfe,0x89,0x0b,0xc9,0x8a, +0xc5,0xbf,0xb0,0xc2,0x53,0xf1,0x24,0xc5,0xaf,0xa6,0x14,0xbf, +0xca,0x28,0x7e,0x35,0xdc,0x89,0xe1,0x06,0x10,0xfe,0x0f,0x7e, +0x3d,0x4d,0xf1,0x6b,0xcf,0xff,0xc6,0xaf,0x0b,0x56,0xb2,0x13, +0xd3,0xee,0x91,0xa5,0x8b,0xff,0x60,0x85,0x05,0x38,0xeb,0xff, +0x04,0xb2,0x0b,0x96,0xe1,0x02,0x46,0x9c,0xb1,0x94,0x44,0xb7, +0x87,0x77,0x87,0xb5,0x38,0x9d,0xe4,0x33,0xac,0x52,0x2d,0x93, +0xcc,0x39,0xf4,0xa1,0xe4,0xb7,0xe0,0x51,0xe6,0x9b,0x78,0x98, +0x6c,0x99,0xc4,0x9f,0x5e,0x1c,0xba,0xf0,0xf8,0x6e,0x0e,0x76, +0xd1,0x27,0xa7,0xe9,0xa5,0x1e,0x4e,0xdc,0xdd,0x9c,0xc2,0xc7, +0x5c,0x0f,0xff,0x32,0xbc,0x9f,0xfb,0x2c,0x82,0x24,0xed,0xbb, +0xb4,0xea,0xe2,0xe6,0xf6,0x64,0xfe,0xfc,0xe3,0xe8,0x5f,0xa3, +0xee,0xd2,0xb1,0xd7,0x21,0x3f,0x42,0x3c,0x5b,0x8d,0x06,0xec, +0xaa,0x1d,0xec,0xf9,0x26,0x97,0x3e,0xc3,0x6a,0x6b,0x4e,0xdc, +0x86,0xef,0x53,0x83,0x15,0x8a,0x4b,0x2d,0xf1,0x3d,0x95,0x7e, +0xbb,0x9a,0x9f,0x72,0x9e,0x27,0xc1,0x6a,0x25,0xf8,0x18,0x33, +0x3f,0x67,0xa8,0x91,0xb9,0xcf,0x74,0xe4,0xe4,0x77,0xab,0xca, +0xeb,0x30,0x82,0x15,0xdc,0x27,0x3c,0xc8,0x60,0x12,0xcc,0x2e, +0xb9,0x9c,0x1b,0xd5,0xcb,0x3b,0x47,0xea,0x47,0x98,0x9c,0xe4, +0xa0,0xfa,0x11,0x5b,0x80,0x8b,0x1f,0xe3,0x67,0xbf,0xed,0xaa, +0xeb,0xe4,0xcd,0x1b,0x6c,0x7b,0xdd,0x87,0x9b,0xcb,0x1b,0xeb, +0xab,0x6a,0x9d,0xea,0x79,0x1f,0x77,0x57,0x77,0x27,0x9f,0xe0, +0xa6,0xf0,0xd6,0xe8,0x36,0x0e,0xe6,0x08,0x33,0xf1,0xce,0xc4, +0x6a,0x26,0xe8,0x5c,0xe8,0xd9,0x88,0xf3,0x1c,0x8c,0xcb,0x27, +0x4b,0xb3,0xd5,0x0e,0x30,0x85,0x15,0x3f,0x42,0x03,0x82,0xef, +0x03,0x65,0x2f,0x0c,0x45,0x76,0x99,0xc4,0xad,0xdd,0x60,0xc8, +0xb6,0xd6,0xd1,0x86,0x6f,0x75,0xea,0x31,0xa9,0xb3,0xe0,0x04, +0x16,0x96,0x11,0xa4,0xd4,0x0d,0x38,0x56,0x4c,0xc0,0x72,0x12, +0x3b,0x78,0xf1,0xf2,0x1d,0x65,0x4a,0x76,0x74,0x19,0x88,0x19, +0x21,0xa8,0x6a,0xfc,0x2d,0x4e,0x67,0x96,0x79,0x1c,0xde,0x6c, +0xa4,0x52,0xac,0xff,0xdd,0x60,0xf9,0xcd,0xd8,0x6b,0x4a,0x09, +0xcc,0xde,0xc4,0xe1,0x35,0xb0,0x72,0x2e,0x5c,0x64,0xd2,0x87, +0x15,0x30,0x8d,0xa1,0x48,0xf8,0x3b,0x98,0xac,0xaa,0x28,0x6f, +0x93,0x57,0x13,0xa7,0x3c,0xb3,0x7c,0x9b,0x34,0x37,0x47,0xbe, +0x33,0xac,0x27,0xa0,0x32,0x98,0x83,0x8f,0xc5,0x16,0xd2,0x2d, +0xce,0xb8,0x0c,0xdf,0x82,0x05,0xdb,0x13,0x52,0x94,0x9a,0xda, +0x5c,0xf0,0x94,0x37,0x2e,0xf0,0xfb,0x7c,0x7d,0xe9,0x9e,0xc6, +0xa3,0xdd,0x4a,0xd0,0x59,0x73,0xba,0x1f,0x7f,0x71,0x70,0xad, +0xf6,0x6c,0xf0,0x6d,0x56,0x32,0xf4,0xcb,0x77,0x29,0xf2,0x28, +0xf6,0x52,0x42,0xb3,0x00,0x8a,0x98,0xa3,0x4a,0x7b,0x2d,0x47, +0x1d,0xef,0xba,0x2b,0x89,0x27,0x40,0x9d,0x29,0x2a,0x2c,0x2c, +0x2e,0x28,0xb7,0xac,0xe0,0x35,0xb7,0xad,0x3a,0xb8,0xca,0xaa, +0xd4,0x94,0xef,0x29,0xed,0x2a,0x6b,0xab,0xe6,0x70,0xf6,0x11, +0x8c,0x84,0x1b,0x5a,0x88,0x66,0x80,0x1a,0xe2,0x6a,0x93,0xbf, +0x3f,0xee,0x15,0xd5,0x6e,0xb2,0x78,0x1d,0xfa,0x09,0x24,0xe0, +0x42,0x4c,0x60,0xe0,0xfa,0x1c,0x58,0x08,0x85,0x94,0x7a,0x88, +0x69,0x74,0xb0,0x95,0x7a,0x55,0x38,0xe5,0xb9,0xb7,0x54,0xf0, +0x01,0x35,0xde,0x75,0x7e,0xd4,0xa7,0x3c,0xc4,0x4f,0x48,0x69, +0x59,0x59,0x4d,0x51,0xb3,0x79,0x31,0x7f,0xdc,0xc9,0xc7,0xd3, +0xc7,0x93,0xa3,0x60,0xe2,0x4f,0xd2,0x6c,0xdf,0x64,0x55,0x65, +0x3a,0x54,0xc1,0xbb,0xf6,0x58,0x77,0xd8,0xd7,0x70,0x13,0x8e, +0xb8,0x95,0x8c,0x75,0xb4,0x74,0x95,0x76,0x18,0x17,0xf2,0xde, +0x76,0x36,0xd6,0x7a,0xb6,0x9c,0x90,0xfc,0x92,0x14,0xda,0xe4, +0x5b,0x67,0x5a,0x5c,0x4e,0xe7,0x83,0x7b,0x8e,0xb7,0xf9,0x36, +0x71,0x58,0x12,0x46,0xd2,0xad,0x92,0xec,0x13,0x8c,0xc7,0xe9, +0xf0,0xea,0x3b,0xd9,0x1a,0xda,0xcc,0x29,0xfe,0x6d,0x52,0x43, +0xf6,0xbc,0x36,0x05,0xce,0x03,0x66,0x0d,0xf4,0x0d,0xdd,0xab, +0xbf,0x6c,0x55,0xc3,0x7b,0x18,0xd8,0xe8,0xd9,0xda,0x06,0xbe, +0x8c,0x7a,0x15,0xfb,0x07,0x07,0x5a,0x03,0xe2,0x4d,0x43,0x70, +0x67,0xac,0x0f,0x6f,0xd8,0xbb,0xc8,0xa8,0xd4,0x8c,0xef,0x2a, +0xed,0xae,0x6a,0xad,0xcb,0x77,0xcb,0x75,0xce,0x72,0xf2,0xf5, +0xf1,0xf0,0x71,0xf5,0x3d,0x51,0x1e,0x58,0x1a,0x94,0x6f,0xeb, +0xcd,0xe7,0x04,0xe4,0xf9,0xe4,0x7a,0x7a,0x1c,0x77,0x0b,0x74, +0x0d,0xa6,0xfd,0x51,0x9b,0x5b,0x93,0x5f,0x55,0x90,0xed,0x9d, +0xe5,0x9d,0x1a,0xd0,0x5a,0xce,0x47,0x16,0x86,0x94,0x07,0x95, +0x55,0x16,0x95,0x16,0x15,0x15,0x67,0xda,0xa7,0xda,0x25,0xdb, +0x6c,0xdb,0x88,0xd3,0x36,0xa1,0xca,0xa1,0x52,0xea,0xa8,0xe6, +0x5c,0x05,0xee,0xeb,0x2f,0xbe,0xe4,0xe2,0xed,0x2e,0xd9,0xd8, +0x2a,0xaf,0xf5,0xf0,0x38,0xac,0xb2,0x9d,0xc9,0x95,0x29,0xdc, +0x64,0xfe,0xe8,0xee,0x05,0x65,0x38,0xac,0x03,0xc6,0x1b,0x41, +0x49,0xb5,0xbe,0xb6,0xa2,0xbe,0xa0,0x81,0xeb,0x61,0xce,0xe0, +0xa5,0x61,0x6c,0x85,0xf5,0xe8,0xce,0x89,0x4f,0x61,0x31,0xa1, +0x70,0x2c,0x41,0xca,0x98,0xcb,0x0a,0x3f,0x4c,0x85,0x4f,0xc5, +0x6a,0xfc,0x94,0x91,0x92,0xc8,0xda,0x11,0xf3,0x16,0xdd,0x66, +0x59,0x95,0x9b,0x19,0x3f,0xe6,0xd2,0xef,0xd8,0x6b,0xcb,0xc1, +0x8f,0x74,0x30,0xc2,0x23,0xac,0x35,0x83,0x13,0x58,0xc1,0x0a, +0x24,0x88,0xc0,0xaf,0xd8,0x61,0x06,0xa7,0xb0,0x8b,0xdd,0x09, +0xed,0xc4,0xca,0xd1,0xc0,0xed,0xb0,0x6f,0xa1,0x0d,0x7f,0xad, +0xe4,0x72,0x7d,0x7b,0x33,0x87,0x50,0x43,0x2c,0xec,0x8c,0x5c, +0x0e,0xfb,0x16,0x59,0xf3,0xd7,0x4b,0x47,0x1b,0xbb,0x5a,0x39, +0x90,0x4d,0x1c,0x21,0xdf,0x42,0x48,0x17,0x86,0x3c,0xfe,0xf7, +0x9a,0xda,0x8d,0x71,0x6c,0x76,0x51,0x56,0x79,0x6a,0x89,0x59, +0x1a,0x7f,0xa5,0x7c,0xbc,0xa9,0xa3,0xc5,0xb3,0x91,0x37,0xb6, +0x3c,0x64,0xaf,0xee,0x53,0x6c,0xc1,0x67,0x24,0x9c,0xf4,0x0e, +0xf3,0x3a,0xe6,0xa9,0x84,0xfa,0x4c,0x66,0x49,0x46,0x69,0x5a, +0xa9,0x59,0x16,0xef,0xbc,0x43,0x6f,0xeb,0xee,0xc3,0x15,0x16, +0x7c,0x71,0x61,0x41,0x61,0x7e,0x11,0x27,0x72,0xa3,0xad,0x42, +0x59,0x0f,0x3b,0x31,0x55,0x30,0x24,0x0f,0xaa,0xef,0xf4,0x0c, +0x0f,0x7b,0xd4,0xf3,0x7a,0x86,0x87,0xad,0xf7,0xb8,0x71,0x2e, +0xc6,0xc4,0xa8,0x63,0x5f,0xaf,0x46,0x3d,0x7d,0x99,0x1b,0x8e, +0xd7,0x2c,0x46,0xcd,0x39,0xd0,0xc3,0xb9,0xe4,0x31,0xd8,0xef, +0x60,0xc5,0x2d,0x45,0xc4,0x09,0xdf,0x33,0xc5,0x69,0xfb,0x97, +0xf5,0xd8,0xf2,0xf7,0xdf,0x8e,0x80,0x72,0xf5,0x1b,0x0e,0xd6, +0x22,0xf9,0xa7,0x82,0xf9,0xd4,0x2d,0x68,0xff,0x2d,0x75,0xbd, +0x26,0xb5,0x64,0xd7,0x9f,0xc6,0xc0,0xb9,0xc3,0xcc,0xa1,0xde, +0x91,0xfb,0x0d,0x57,0xac,0x6a,0x79,0x37,0x7d,0x4b,0x5d,0x1b, +0xdb,0x63,0x7f,0x46,0xbd,0x91,0x84,0x6e,0x38,0x20,0x3e,0x35, +0x84,0x00,0xc6,0xf2,0xd0,0xba,0x7d,0x0b,0x8c,0x4a,0xcc,0xe8, +0xd0,0xee,0xad,0x6e,0x7f,0x27,0xf4,0x6c,0x47,0x1f,0x5f,0x77, +0x6f,0x17,0xdf,0xc0,0xf2,0xe3,0xa5,0x27,0x0a,0xfe,0x11,0xba, +0x77,0x1e,0x15,0xba,0xeb,0x09,0xe7,0xa0,0x12,0x53,0xbe,0x3e, +0xb7,0x36,0xbf,0xa6,0x20,0xc7,0x4b,0x12,0x7a,0x1b,0x15,0x7a, +0x51,0x70,0x59,0x50,0x45,0x55,0x61,0x79,0x71,0x71,0x71,0x86, +0x7d,0x9a,0x6d,0xb2,0xcd,0xd6,0x0d,0xa8,0xb0,0x05,0x3f,0x7d, +0x27,0xf4,0x8f,0xaf,0x82,0xc2,0x57,0x0f,0xdf,0x09,0xdd,0xd6, +0x56,0x79,0x8d,0x87,0x87,0x86,0xca,0x66,0x49,0xe8,0x77,0x98, +0x57,0x3d,0x92,0xd0,0x8f,0x6a,0x83,0xe1,0x7a,0x2a,0xf4,0x86, +0x9a,0x4a,0x49,0xe8,0x7d,0x92,0xd0,0x47,0xb1,0x1d,0xb6,0xa2, +0x0b,0x27,0x3e,0x04,0x6f,0x62,0x1f,0x6c,0x17,0x6c,0x1b,0xc2, +0x41,0xb9,0xb4,0xf8,0x12,0x05,0x53,0x86,0xb1,0x41,0x0f,0x58, +0x8c,0x9a,0xaf,0xf7,0x17,0xf6,0xb0,0xf6,0xe1,0xf6,0xe1,0x76, +0x91,0x19,0xba,0xfc,0xdb,0xca,0xdf,0xea,0x7f,0xa4,0x94,0xe4, +0xdd,0x14,0xb7,0xe7,0x17,0xb2,0xd7,0x26,0x77,0x2d,0xbc,0xf8, +0x8e,0x23,0xfd,0xcb,0x2b,0xf6,0x71,0x94,0x87,0xbf,0x5b,0x2a, +0x53,0x67,0xfa,0xef,0xb6,0xfe,0x90,0xf7,0xc8,0xb4,0x90,0x3f, +0xae,0x66,0xb5,0x5c,0x57,0x9a,0xe2,0xce,0xca,0x57,0x98,0x98, +0x21,0x4d,0x71,0x8f,0xe1,0x06,0x5c,0xf3,0x6e,0x95,0x85,0xff, +0x77,0x8a,0xbb,0x83,0x95,0xd6,0x58,0x62,0x63,0x28,0x6d,0xc1, +0x5e,0x92,0xea,0x9c,0x66,0x9e,0x6a,0xee,0x76,0xca,0x35,0xca, +0x25,0x8a,0x03,0x57,0xf8,0x54,0x20,0xf8,0x29,0xac,0x91,0xe1, +0x1a,0x9c,0x2b,0x12,0x98,0x8b,0xc7,0x58,0xbd,0x48,0xdd,0x93, +0x3a,0xef,0xe6,0x58,0x66,0xe5,0xc0,0x7b,0x85,0xaf,0xaa,0xe2, +0x02,0xe2,0x03,0x2e,0x05,0xf6,0x66,0xf0,0xa1,0x8f,0x03,0xfe, +0x3c,0x7e,0x9b,0xc3,0x24,0x81,0x25,0x5f,0x63,0xf9,0x36,0x06, +0x7c,0xa1,0x9c,0x60,0xf9,0x66,0x28,0x67,0x85,0x6f,0xf1,0x24, +0x35,0xe2,0xc0,0x49,0xb0,0x73,0x0c,0xd5,0x08,0x6d,0xca,0x2c, +0x1c,0x63,0x14,0x85,0x9d,0x82,0x2b,0x69,0xce,0xcc,0x6c,0x54, +0x1d,0x60,0x0d,0x52,0x15,0x34,0x30,0x94,0x75,0x8c,0x4e,0xae, +0x50,0xbd,0x0a,0xfd,0x94,0x86,0xfc,0x8d,0xf1,0xac,0x56,0x71, +0xe0,0x65,0x15,0xb9,0xce,0x9c,0xff,0xb3,0x52,0x18,0xeb,0x18, +0x93,0x5a,0xa1,0x7a,0x19,0x06,0x68,0x25,0xfc,0x6f,0x25,0x8c, +0x02,0x6b,0x82,0xa7,0x1f,0xc3,0x69,0x46,0x30,0xa5,0x3e,0xfc, +0xcc,0x63,0x29,0xec,0x67,0x9d,0x78,0x47,0xda,0xc2,0xef,0xdc, +0x8f,0xce,0x3f,0x6a,0xaf,0xc3,0x24,0xe9,0x62,0x6b,0x04,0xb6, +0x38,0x03,0x2f,0x18,0xfc,0x3d,0x99,0x3a,0xbe,0x1b,0x30,0x83, +0xd0,0xdf,0x92,0x60,0x06,0x8b,0x5d,0xe2,0xfb,0xf4,0x3d,0xeb, +0xdf,0x0e,0x7c,0x39,0x68,0xdb,0xcc,0xab,0x19,0x7f,0x6e,0x81, +0x73,0x9c,0x39,0xa1,0xfb,0x7b,0xf2,0xa7,0x33,0x4c,0x37,0xfe, +0xc3,0xb8,0xae,0x87,0x5f,0xde,0x85,0x8a,0xfd,0x0b,0x6b,0xa9, +0x2b,0xef,0x78,0x37,0x2b,0xbc,0x6f,0x54,0x56,0xef,0x60,0xcd, +0x8f,0x38,0xde,0x93,0x66,0x85,0x85,0x97,0x77,0x88,0x98,0x87, +0x47,0xe5,0x1f,0x6b,0x4e,0x7c,0x8c,0x1a,0x42,0x9e,0x96,0xf8, +0x48,0xe8,0x11,0x1e,0xb1,0x13,0x9f,0x61,0x20,0x31,0xe9,0x55, +0x1b,0xd3,0xab,0x77,0xb2,0xe2,0x87,0x1c,0xef,0xe9,0x0e,0x18, +0x71,0x14,0x6b,0xef,0xf9,0x9f,0x09,0xde,0x83,0x68,0xae,0x4b, +0x3b,0x99,0x63,0x57,0x3a,0xe8,0x2f,0xb4,0x51,0x29,0xd4,0xfe, +0xa5,0xb9,0xef,0xbf,0x13,0xbc,0xdf,0xec,0x91,0x52,0xd1,0x06, +0xbe,0x4b,0xfd,0x06,0x05,0x82,0x83,0x14,0x49,0x7b,0x3e,0xe2, +0xe4,0x3f,0x91,0xb4,0xbf,0xf6,0x2f,0xff,0x27,0x3e,0x75,0x96, +0x11,0x30,0xff,0xc4,0xa7,0x2e,0xd9,0x81,0x8a,0x8d,0x52,0x24, +0x6d,0xd1,0xab,0x38,0x29,0x92,0x36,0x73,0xe8,0x7f,0x22,0x69, +0x47,0x71,0x71,0x6d,0xa3,0x42,0x2d,0xac,0x26,0x18,0x1c,0x8c, +0x6b,0x0c,0x70,0x9e,0x4a,0xa7,0x8d,0xc2,0x18,0x2c,0xc9,0xa3, +0xb4,0xf4,0xa2,0x32,0x14,0x83,0xf2,0x44,0xc2,0x7c,0x36,0xcb, +0x40,0x8a,0x61,0x93,0xf2,0xeb,0xca,0xbb,0xf1,0x0c,0x0b,0x37, +0xa4,0x05,0xd3,0x98,0x93,0xf8,0xb9,0x29,0x2a,0xa9,0x74,0x39, +0x2a,0x0c,0xc2,0x67,0x69,0xb0,0x0d,0xe2,0x95,0xa1,0x14,0x16, +0x4f,0xc4,0xa1,0x82,0xb4,0xa2,0xf5,0x8b,0x34,0xc7,0xd8,0x26, +0xdd,0x91,0xcc,0xe2,0x6c,0x7a,0xc7,0xb1,0x36,0xa7,0x31,0x97, +0x16,0x27,0x57,0xbe,0xca,0xbe,0x4e,0x56,0x64,0xc6,0xc1,0x7f, +0xca,0x89,0x7f,0x87,0xd3,0xb8,0x43,0x3b,0xfd,0xae,0xd6,0xae, +0x4e,0xbb,0xd4,0x94,0xc3,0x06,0xf4,0x26,0xc7,0xbb,0x1d,0x2e, +0x3b,0xb7,0x3b,0xba,0xf1,0x35,0xd6,0x75,0x3a,0xc5,0xb4,0x67, +0xfe,0x53,0x49,0x02,0xba,0x1d,0x2f,0xdb,0x77,0x38,0xb8,0xf3, +0xf5,0x36,0xf5,0x47,0x4b,0x8d,0x38,0xc5,0x1f,0xa5,0xb4,0xd3, +0xe3,0xc2,0x36,0x6a,0x54,0x6b,0x72,0x9b,0xd3,0xa4,0xb4,0xd3, +0x9b,0xa4,0xc8,0xcd,0xa2,0xf8,0x22,0xc3,0x44,0xfe,0xd8,0x52, +0xcb,0x15,0x1a,0xbb,0x1a,0x9c,0xa4,0xb5,0xe1,0x84,0xf8,0x44, +0x4e,0xa8,0xb1,0x26,0x9d,0xa8,0xfc,0x35,0x65,0xb2,0x5d,0xd2, +0x8e,0xb8,0x03,0xdb,0x70,0xa1,0x05,0x2c,0xcc,0x1f,0x84,0x75, +0x18,0x72,0x17,0x5c,0x7b,0x44,0x4f,0x53,0xb0,0xdb,0x8f,0xfe, +0xb8,0x6e,0xf0,0x38,0x8b,0x47,0xc1,0x81,0x44,0x7a,0x06,0xd9, +0x1f,0x77,0xa1,0xde,0x8f,0xc9,0xab,0xce,0xad,0xcd,0xac,0xe7, +0xac,0xa4,0xac,0xd0,0xfc,0xc3,0x7f,0x03,0x38,0x1f,0x4b,0x01, +0x9c,0xd5,0x76,0xd2,0x53,0x2d,0x58,0x61,0xe1,0x9c,0x4e,0xfa, +0x40,0x56,0x7c,0x2d,0x9d,0x85,0xb3,0xe0,0x21,0x2e,0x90,0xea, +0x2c,0x78,0x4c,0x3f,0x85,0xc1,0xbd,0x04,0x94,0xc4,0x03,0xa6, +0xc2,0x8c,0xad,0xe2,0x0a,0x13,0x61,0xc5,0x5a,0x71,0x86,0x89, +0x30,0xc3,0x68,0x18,0x8c,0x07,0x7b,0xd9,0x89,0xc9,0x91,0x24, +0xdb,0x3e,0xdb,0x2a,0xc3,0xac,0x35,0x8b,0x0f,0xe9,0x0e,0x6e, +0x3f,0xd1,0xc0,0x61,0x0f,0x9e,0x23,0x35,0x57,0x4b,0xbe,0x49, +0x7d,0x64,0x91,0xca,0x47,0x1c,0x08,0xd8,0xe7,0xa2,0xcd,0x51, +0xe6,0x2f,0x23,0x59,0xc6,0x69,0xfa,0x29,0x87,0xa5,0x20,0xf9, +0x2b,0xa1,0xc3,0x21,0x7d,0xb4,0x6d,0xa1,0x24,0x49,0x33,0x7e, +0xbf,0x86,0x72,0x6f,0xd2,0xb9,0xdb,0xd1,0x37,0x4f,0x5e,0x53, +0x52,0x84,0x72,0xc1,0x91,0x44,0x65,0x46,0x9f,0x8f,0x38,0xf5, +0x6e,0x5a,0x4d,0xf9,0xf1,0xc0,0x8e,0x7f,0x46,0x04,0x31,0x84, +0x99,0x4c,0x24,0xce,0x76,0xc0,0x45,0x9b,0xdf,0x25,0x5c,0xb8, +0xf1,0xaa,0xe4,0xf5,0xbb,0x88,0xe5,0x9c,0x7f,0x46,0xc4,0xf9, +0x4b,0x67,0x54,0xae,0xe1,0xd2,0xba,0x26,0x05,0x39,0x07,0x8f, +0xc8,0xe1,0x46,0xf5,0x01,0x13,0x8a,0x5d,0x53,0x4d,0x20,0x9c, +0xe9,0xd4,0xbd,0x69,0x70,0xdd,0x91,0x13,0x1d,0xde,0x25,0x79, +0x35,0xb3,0x3c,0x22,0x25,0x79,0xbd,0xd9,0x3c,0x28,0x25,0x79, +0x15,0x88,0x78,0x46,0xca,0xe4,0xaa,0x3e,0xf2,0x4b,0x3b,0xbe, +0xb5,0x7a,0x26,0xc3,0x3d,0xf8,0x8d,0xc0,0x68,0x8b,0xbb,0x8c, +0x85,0x5d,0xb8,0x1a,0x37,0xb3,0xd9,0x26,0xd2,0x72,0x7c,0x7b, +0xe6,0x3f,0x99,0x5c,0x17,0xf7,0xe1,0x62,0x69,0x5b,0xb6,0x94, +0xc9,0x55,0x73,0x84,0x35,0xf9,0x27,0x93,0xab,0x96,0x94,0xc9, +0xf5,0x87,0x9c,0xa6,0xe6,0xc4,0xeb,0xdc,0xb5,0x77,0x99,0x5c, +0x5b,0x54,0x40,0xc1,0x42,0x5c,0x22,0x65,0x72,0xed,0x97,0x32, +0xb9,0xc6,0xa5,0xab,0xb6,0x80,0xe2,0xbf,0x99,0x5c,0x97,0xf4, +0xb2,0x67,0x30,0x9f,0xb4,0xf9,0x35,0x79,0xd5,0xb9,0x36,0x36, +0xf3,0x4e,0xd5,0xb6,0x15,0x36,0x52,0x26,0xd7,0x42,0xb9,0x2f, +0xc9,0xf7,0xc8,0x73,0xcf,0x75,0xe9,0xcb,0xe7,0x43,0xcb,0x42, +0x8a,0x83,0x8b,0x38,0xd8,0xd1,0x83,0x2d,0x4c,0x5a,0x6e,0x72, +0x6e,0x52,0x9e,0x61,0x26,0xef,0xae,0x61,0xa2,0x75,0xd0,0x84, +0x9a,0xc3,0xfa,0xf2,0xda,0xaa,0xb2,0x3a,0x4e,0xb0,0xea,0x21, +0xc9,0x79,0x49,0xb9,0x89,0x79,0x46,0x69,0x7c,0xc0,0x51,0x27, +0x6d,0x53,0xa3,0x76,0x37,0xbe,0xb8,0xb4,0xb0,0x22,0xb7,0x8a, +0x7b,0xc6,0x14,0x78,0xe4,0xba,0xe7,0xb9,0xf4,0xe6,0xf1,0xa1, +0xe5,0xff,0x3c,0x4d,0xb7,0x87,0x11,0xa3,0x71,0x88,0xc0,0x32, +0x6a,0x97,0x96,0xb1,0xc2,0x1e,0x09,0xec,0x2d,0x13,0xa6,0xc3, +0x32,0x56,0x3c,0x63,0x4d,0xb4,0xf1,0xc2,0x38,0x2b,0xec,0xd6, +0x26,0xe3,0x90,0xa5,0xcd,0xe6,0x8b,0x1c,0x81,0xaa,0x09,0x5f, +0xac,0x82,0x6f,0x34,0xc5,0x0d,0xc6,0xc2,0x06,0x9c,0x32,0x02, +0x53,0x84,0xfd,0x7d,0xe2,0xfe,0xab,0xac,0x4c,0x8a,0x43,0x28, +0xbc,0x09,0x85,0xcc,0x88,0x06,0xb9,0x09,0x0d,0x1a,0xac,0x28, +0xb7,0x22,0x50,0xa8,0x8e,0x85,0x0c,0x7c,0x75,0x9b,0x40,0x83, +0xba,0xb4,0x1a,0x28,0x77,0x84,0x2b,0x04,0xec,0x87,0xd1,0x1e, +0x52,0x20,0x64,0x84,0xd2,0xd0,0x95,0x9a,0xb8,0x12,0x5d,0x64, +0xe0,0x82,0x29,0x68,0xa6,0x07,0x66,0xd8,0x8d,0xc1,0x32,0xa1, +0x74,0x04,0x23,0x99,0x89,0x8f,0xe4,0x15,0x44,0x1f,0xba,0x86, +0xd8,0x0a,0x34,0x23,0xc3,0x38,0xa1,0xc7,0xb6,0x6e,0xa3,0x5f, +0xd4,0x0d,0x51,0x6e,0x3c,0x75,0x08,0xeb,0xf4,0xd9,0xc1,0x77, +0xb3,0x49,0xc1,0x50,0x84,0x8d,0xd2,0x6c,0x52,0x08,0x14,0x12, +0xea,0x10,0xf6,0xc3,0x06,0x56,0xca,0x0b,0x1a,0x4b,0x7a,0x71, +0x36,0xdb,0x76,0xab,0xe1,0x61,0xd5,0x13,0x33,0xda,0x89,0x76, +0x21,0x0e,0x41,0x4e,0x5c,0xfd,0x7c,0x98,0x62,0x40,0x01,0x30, +0x47,0xf1,0x15,0xbe,0x8f,0x8b,0x4c,0x40,0xc6,0x1e,0xdd,0xbe, +0xef,0xe0,0x2e,0xfd,0x2a,0x6b,0x3e,0x27,0x23,0x9b,0xfe,0x70, +0xe2,0xcc,0x81,0x21,0x90,0xe9,0x0f,0x09,0x87,0xd9,0xd8,0xb3, +0x8d,0x35,0xfe,0x35,0xae,0x8d,0xae,0x15,0x4a,0x8e,0xee,0xe5, +0x3e,0x65,0x1e,0x85,0xee,0x4a,0xe8,0xcc,0xb4,0xb6,0x34,0xb4, +0xd7,0x76,0x71,0x62,0x1f,0x38,0x12,0xfb,0x66,0xcb,0x36,0x8b, +0x1a,0x17,0x1b,0xbe,0xc7,0xb1,0xd1,0xa1,0xc5,0x86,0x83,0x17, +0x78,0x9f,0x54,0x37,0x6c,0x7c,0x10,0x9e,0x7a,0xf2,0x7c,0x44, +0x84,0x52,0x74,0x74,0xf4,0xf9,0x33,0x29,0x67,0x52,0x4f,0xa7, +0x2a,0x0d,0xf6,0x36,0xf7,0xd7,0x8c,0x5a,0x97,0xf3,0xbe,0x66, +0xce,0xa6,0x16,0x56,0xe1,0xa5,0x21,0x65,0xc1,0x15,0x35,0x0d, +0xe5,0xcd,0xf9,0x9d,0x1c,0x7c,0xd8,0x8f,0xdf,0x1b,0xc1,0x72, +0xc6,0x4e,0x4d,0x47,0x6f,0x93,0x51,0x95,0x25,0x5f,0x95,0x5f, +0x9e,0x5f,0x5a,0x94,0xeb,0x9e,0xe5,0x99,0xe1,0x65,0x67,0xaa, +0x6f,0xaa,0xeb,0x5c,0x65,0xc1,0x8f,0xd4,0xf5,0x75,0x36,0xb6, +0xa7,0xb9,0xa7,0xb8,0x27,0xb9,0x5b,0x1c,0xd8,0xbb,0x7f,0x9b, +0x79,0xb9,0x19,0xff,0x45,0xfb,0xb5,0xf1,0xf6,0x2b,0x5c,0xbc, +0x43,0xac,0xbd,0xcd,0xff,0x4f,0xd9,0x7b,0x40,0x47,0x71,0x6c, +0x6b,0xa3,0x60,0x50,0x77,0x1b,0xdb,0x18,0x63,0x17,0xb4,0x84, +0x2d,0x61,0x30,0xc1,0x44,0x93,0x4d,0x0e,0x12,0x59,0x39,0x6b, +0x24,0xcd,0x28,0x8d,0x72,0xce,0x12,0xca,0x20,0x30,0x18,0x84, +0x50,0xce,0x39,0x6b,0x94,0x35,0xca,0x39,0x21,0x72,0x34,0xe0, +0x40,0xb2,0x8d,0x71,0xce,0xf6,0x6e,0x79,0xb7,0xce,0xfd,0xab, +0xe5,0x73,0xce,0xbd,0xf7,0xbf,0xf7,0xad,0xf7,0xde,0x9a,0xb5, +0x66,0x7a,0xf5,0x74,0xcf,0x74,0x57,0x57,0xed,0xfd,0x7d,0x55, +0x7b,0x7f,0x5b,0x0b,0x67,0x06,0xb8,0xed,0xd6,0xd6,0x93,0x94, +0xe7,0xef,0x30,0xbf,0xb4,0x0e,0xc2,0x8a,0xef,0xe3,0x3f,0xf7, +0xf8,0x56,0xe7,0xf4,0x85,0xb3,0xe7,0x52,0x12,0x29,0x79,0x80, +0x14,0xf2,0x13,0x13,0xa2,0x08,0x72,0x0a,0x50,0x72,0x7e,0x8c, +0x98,0xbf,0x82,0x38,0x77,0x98,0x0c,0x58,0x36,0xbb,0x39,0xf0, +0x3d,0xce,0x83,0x36,0xed,0x14,0xf8,0xfb,0xa3,0x3b,0x01,0x16, +0x4c,0x90,0x65,0x27,0x13,0xb1,0x84,0x5c,0x86,0x19,0xad,0xf0, +0x66,0xd1,0x6f,0x16,0x79,0x7c,0xc0,0x94,0x0c,0x9a,0xf1,0x52, +0x4e,0xf8,0x0b,0xf4,0x09,0x3d,0xe4,0x35,0x34,0xa1,0x98,0x2e, +0x5a,0xf8,0x9e,0xb8,0x5f,0x53,0xdc,0x35,0xbb,0x61,0xed,0xc1, +0xf7,0x1d,0x6e,0x3b,0xd8,0xb4,0x8f,0x83,0x19,0xd4,0x7f,0x15, +0xc6,0xe2,0x26,0x0b,0xd4,0xd1,0x1e,0x72,0xa3,0x26,0x79,0x75, +0x26,0xec,0x83,0x6a,0x2d,0x08,0x17,0xce,0x4f,0x9e,0xc6,0xf5, +0x6c,0xae,0xb1,0x06,0x2c,0x64,0xba,0x72,0x8a,0xbb,0x75,0x26, +0xd4,0x93,0x1c,0xfb,0x8b,0x38,0x9f,0xc0,0x81,0xf5,0x23,0x5f, +0x82,0x41,0x3f,0x1a,0xfc,0x0c,0xba,0xfd,0xa8,0xfb,0xcc,0x74, +0x1d,0x6e,0xb3,0x82,0x6d,0x4b,0xf1,0x00,0x83,0x6e,0x9b,0x89, +0x17,0xbe,0x6a,0x86,0x4b,0x8c,0x56,0xf4,0x3b,0xf1,0x97,0x61, +0xda,0x30,0xac,0xa8,0x87,0x39,0x1c,0x28,0x0c,0x09,0x0e,0x8e, +0xde,0x80,0x6c,0xa9,0x52,0x67,0x36,0x1e,0x21,0x30,0x0f,0xe4, +0x38,0x8f,0x9d,0x0d,0x8f,0x85,0xe5,0xc4,0x2b,0xca,0x23,0xc6, +0x3d,0x86,0xa3,0x90,0x81,0x82,0x91,0x17,0xfe,0x5e,0x39,0x7b, +0xd5,0x94,0x12,0x99,0x14,0xd6,0x3e,0xca,0x3e,0xda,0x21,0x3e, +0xc3,0x78,0x6a,0x85,0xe2,0xef,0x95,0x33,0x0d,0x49,0x8e,0x53, +0x5a,0xa1,0x90,0xe6,0x7a,0xfa,0xd9,0xc6,0xec,0xa6,0xdc,0x86, +0x5c,0x0e,0xfe,0x84,0x71,0x02,0x61,0x43,0x18,0x06,0xaf,0x1b, +0xe1,0x0d,0x9c,0x0b,0xc5,0x26,0x58,0x8c,0xd3,0xcd,0xa1,0x13, +0x4f,0xe1,0x3c,0x26,0xdf,0x54,0xe3,0x4f,0xa6,0xb3,0x40,0x52, +0xe6,0x89,0x83,0xcc,0x21,0xcc,0x64,0x31,0x72,0x21,0xf1,0xdd, +0xa8,0xd0,0xd5,0x3f,0xd2,0xe5,0xcc,0x5f,0xb9,0xd9,0xf3,0xb8, +0xfa,0x19,0x87,0x07,0xc4,0x20,0x02,0xad,0x03,0xa0,0x0f,0xb3, +0x60,0x26,0xa4,0x58,0x54,0xf1,0x8b,0xf0,0x04,0x6e,0x5a,0x84, +0xcd,0x32,0x6e,0xf6,0xc4,0xcb,0x82,0x26,0xf9,0x06,0x2a,0x21, +0x1d,0x37,0xb2,0xd9,0x15,0xd9,0xb5,0x69,0x95,0xa6,0xe9,0x7c, +0xbc,0x77,0x8c,0xfb,0x31,0x6f,0x0e,0x99,0xc9,0xd9,0xf0,0x3b, +0x34,0x30,0x93,0x3a,0x0f,0xa9,0xbb,0x9c,0x32,0x8e,0x92,0xbb, +0x7c,0xfd,0xbb,0x81,0x95,0x7f,0x1b,0xc7,0xb9,0x96,0x30,0xeb, +0x9f,0xe9,0x1c,0x5b,0xa6,0xd2,0x39,0xae,0xfe,0x97,0x74,0x8e, +0x0c,0xc9,0x38,0x9e,0x3b,0xa5,0x7d,0x05,0x57,0x50,0xe3,0x08, +0xa6,0x80,0xc4,0xb3,0x5d,0xd1,0xe5,0xd0,0xe0,0xec,0xc4,0xab, +0x5d,0xd5,0x8a,0x46,0x3b,0x0e,0xfe,0xa3,0x99,0xd0,0x01,0xe9, +0x03,0xab,0x58,0x0a,0x20,0x94,0xc4,0xb5,0x43,0xd6,0x65,0xd7, +0xa0,0x74,0xe4,0x3b,0x5d,0x3b,0x15,0xad,0x14,0xd7,0x7a,0x49, +0xde,0x7d,0x95,0xa2,0x0b,0xe6,0xe9,0xc0,0x51,0x5c,0x63,0xf1, +0x0d,0x12,0x16,0x67,0xf8,0xb8,0x2c,0xb3,0xd2,0x2e,0x33,0xfe, +0x65,0xa0,0xa2,0x3d,0xe9,0x29,0xe5,0x7f,0xcb,0xce,0xf7,0x98, +0xc2,0x86,0x05,0x50,0xc3,0xa4,0x8e,0x6a,0xe0,0x53,0x58,0x4d, +0x40,0x0f,0xe2,0x51,0x8f,0x95,0x2a,0xb8,0x48,0xf7,0x97,0x46, +0xef,0x6f,0x05,0xbd,0xbf,0xac,0xda,0xf4,0x7f,0xdd,0x5f,0x94, +0x37,0xf7,0xf6,0xa4,0x14,0x5a,0x4a,0x6f,0xcf,0x5a,0x58,0x41, +0xd2,0xb6,0x37,0x1a,0x3d,0xd8,0x5d,0xdb,0xcf,0x1f,0xba,0xe6, +0x76,0x35,0xfc,0x3a,0xb7,0x8f,0x09,0xdb,0xad,0xdc,0xb9,0x59, +0x0a,0xd0,0x7f,0x7c,0xa7,0xfb,0x8b,0xac,0xcf,0x29,0x63,0x58, +0x44,0xbc,0xdb,0x1c,0xbb,0x9d,0x1a,0x5c,0x9c,0xf8,0x16,0xd7, +0x66,0x45,0x3d,0xbd,0x81,0x6f,0x5b,0x08,0xae,0x46,0x3b,0x58, +0xcd,0xa2,0x0a,0xe7,0x90,0x76,0xd7,0x36,0x87,0x66,0xdb,0x26, +0x35,0xef,0xde,0x61,0xdf,0x25,0x6f,0xe0,0x4c,0xc4,0x7c,0xe2, +0x1e,0xef,0x12,0xe7,0x9c,0xc0,0x51,0xac,0xc5,0x0d,0x21,0x07, +0xb3,0x1e,0x0e,0xa0,0x87,0xe5,0x7d,0x9c,0x85,0xf3,0xcd,0x61, +0x3e,0x5e,0x63,0x6d,0xe3,0x6d,0x13,0xec,0x4f,0xd0,0x0e,0xf1, +0x6b,0x3e,0xcc,0xae,0x7a,0x50,0xce,0xc1,0x1f,0x41,0x04,0x97, +0x3a,0xf7,0x00,0xd1,0x81,0x23,0xb8,0xd2,0xe2,0x2b,0x7c,0x83, +0xc5,0x17,0xfc,0x9c,0x96,0x4b,0x37,0xfd,0xe3,0xbf,0x6e,0xfa, +0xdd,0xf3,0x9d,0xc6,0xb0,0x76,0x01,0xa4,0x4d,0xdd,0xf4,0x15, +0x29,0x7b,0x78,0x3f,0xf8,0xe1,0x7e,0x56,0x1c,0xf7,0x26,0x59, +0xc3,0x19,0x17,0x53,0x86,0xed,0xd3,0xf9,0x13,0x06,0xc7,0xcd, +0x62,0xac,0x38,0x54,0xc2,0x4a,0x52,0x62,0x5a,0xbc,0x2d,0xdd, +0xb0,0x27,0x87,0x8f,0xbb,0x18,0xfc,0x34,0x64,0x98,0x5a,0xfd, +0xfb,0x10,0x40,0xdc,0x22,0x94,0xc7,0x94,0x14,0x3c,0x7f,0x0e, +0x33,0x46,0x70,0x06,0x94,0x19,0x62,0x99,0x84,0x9b,0xff,0x62, +0x5d,0xa2,0x9c,0xa2,0x1d,0x63,0xf2,0x4d,0x78,0x78,0xa1,0xf1, +0x59,0xfd,0xe7,0xed,0x9c,0xe0,0x0e,0x73,0xc8,0x60,0xe7,0xf0, +0xd5,0xc6,0x21,0x7b,0x15,0xef,0x69,0xa3,0xb0,0x74,0x70,0x09, +0xb9,0x17,0xfb,0xe0,0xe4,0x7d,0x0e,0x16,0xab,0xc6,0xc0,0x58, +0xfc,0x03,0x8d,0x47,0x3d,0x61,0x1f,0x63,0x7b,0xe4,0x5d,0xfd, +0x25,0xae,0xa5,0x56,0xfc,0xa5,0xd2,0xeb,0x8d,0x23,0xed,0xb9, +0x21,0x39,0xc1,0x59,0x41,0x01,0x81,0x5e,0x81,0xee,0x81,0xd1, +0x25,0xd1,0x85,0x31,0x39,0x0a,0x3f,0x3e,0x33,0x2a,0x27,0x34, +0x3b,0xd8,0x2b,0xdc,0x23,0xc2,0x2b,0xba,0xcc,0x8a,0xaf,0xcb, +0xad,0x2b,0xa8,0x2d,0xcc,0x0c,0xce,0x08,0x4e,0x0d,0xeb,0xa8, +0xe1,0x8f,0x17,0xc6,0x95,0xc4,0x16,0xab,0x4a,0x6b,0x4a,0xcb, +0x4b,0x33,0xfd,0x33,0xfc,0x53,0xfd,0xde,0x5f,0x83,0x73,0x37, +0xe1,0x0c,0xbb,0x0a,0x4b,0x1e,0xa6,0x77,0xc3,0xec,0xc7,0x1f, +0x3f,0xe2,0x92,0x7d,0x93,0x7c,0xfd,0xb4,0x36,0x44,0xfa,0x1d, +0xd2,0x7e,0x5f,0x52,0x49,0x7d,0xc0,0x7c,0xd9,0x3e,0x00,0x0c, +0xbc,0x6a,0x06,0xef,0x6d,0xa5,0x88,0xb0,0xac,0xa4,0xa4,0x3c, +0xaf,0x9c,0xeb,0x60,0x72,0x51,0x71,0x07,0x4f,0xc3,0x72,0x5c, +0xd2,0xde,0xc9,0xef,0xbd,0x65,0xf9,0xdc,0xed,0x27,0xee,0x31, +0x3c,0x27,0x62,0x0c,0xcc,0x10,0x62,0xa8,0x39,0xe9,0x10,0x96, +0x10,0xdf,0x68,0x9f,0x68,0xef,0x58,0x0e,0x62,0xbf,0x1d,0x5a, +0x05,0xc6,0x26,0x68,0xbc,0xdc,0xfc,0x47,0xcc,0x60,0x95,0xd1, +0xae,0xb1,0x6e,0xf1,0x19,0xa6,0xbc,0x2a,0xbd,0x2e,0x43,0x95, +0xc5,0x61,0xed,0x7b,0x6c,0x8e,0x21,0xb5,0x75,0x9d,0xb9,0x45, +0xad,0xd2,0x4a,0xb7,0x2a,0x5b,0x95,0xa3,0xca,0xe5,0x2a,0xc4, +0x5d,0xe4,0xe2,0x35,0x21,0xe0,0xf0,0xc5,0xbf,0x5e,0x14,0xbf, +0x61,0x2e,0x5a,0x10,0x21,0x60,0x52,0x26,0x06,0x30,0x82,0xe1, +0x04,0x43,0x82,0x4b,0xdd,0x2a,0x02,0x73,0x7c,0xbd,0xf8,0xf2, +0xc8,0x3a,0xff,0xd2,0x60,0x2e,0x4e,0x4c,0x24,0x21,0xaa,0x88, +0xba,0x98,0x86,0xce,0xaf,0x4a,0xbf,0xcf,0x7d,0xa4,0xa0,0xa0, +0x65,0x7f,0xe4,0x6e,0xcf,0x7d,0xe1,0x9f,0x9c,0xfc,0xfc,0xcc, +0xcf,0x1c,0xe8,0x74,0xa2,0xce,0x2f,0xb2,0x25,0x18,0x6c,0x4f, +0x29,0xd8,0x39,0x9c,0x9d,0x86,0x2f,0xd4,0xae,0xf0,0x97,0xb9, +0xd9,0xcb,0x1d,0xeb,0xdc,0xf9,0xa6,0x86,0x9a,0x96,0x72,0x75, +0xb6,0x6f,0x8e,0x7f,0x41,0x40,0x95,0x73,0x4b,0xc6,0x85,0xee, +0x5c,0xd0,0xe1,0x5d,0xf2,0x35,0xc4,0x19,0x94,0xc8,0xee,0x80, +0x53,0xb8,0x83,0xe9,0x44,0x5b,0x02,0x6b,0xef,0x53,0xc6,0x72, +0x7d,0x3b,0x31,0x0e,0xdb,0x18,0x72,0x38,0x36,0xdd,0x96,0xbf, +0x9a,0xf5,0x65,0xe9,0x70,0x31,0x7d,0xf8,0x21,0x13,0xe3,0xc4, +0x06,0x94,0x6c,0x95,0xd5,0x88,0xc5,0x5d,0x45,0x79,0x3f,0x7f, +0x50,0x6d,0xdf,0xe5,0x36,0xc6,0x61,0xcf,0x29,0xe2,0x65,0x20, +0xb7,0x36,0x72,0x6a,0x71,0xe4,0xc7,0xdb,0xfb,0xc6,0x6a,0xaf, +0x70,0xc2,0x24,0x5e,0x27,0x5d,0xdf,0xd6,0x7f,0x57,0xfc,0x90, +0xeb,0xc5,0xc1,0xc9,0xbf,0x2e,0x4e,0x0c,0xc2,0x01,0x36,0x6c, +0xb7,0xdb,0x6a,0xcb,0x65,0xd7,0xf5,0xfa,0x77,0x9c,0xd9,0xc6, +0xe9,0x1d,0x73,0x3f,0xa0,0x6d,0xc2,0x64,0x19,0x6a,0x8c,0x30, +0xdf,0xb4,0x5c,0xf9,0xe6,0x07,0x9b,0x07,0x86,0x37,0x75,0xa8, +0x6d,0xa4,0xa6,0xfd,0x21,0xbe,0x7f,0xe9,0x5a,0x37,0x8e,0xdb, +0x5e,0x37,0xc0,0xf5,0xf8,0x10,0x7c,0x0d,0x31,0xd9,0x0a,0xce, +0xb0,0x61,0xfb,0x76,0xc9,0x71,0x95,0x55,0x21,0x7d,0xa6,0xf3, +0xda,0x2e,0x37,0x75,0x77,0x26,0x27,0x27,0x7d,0x98,0x76,0x0a, +0x4e,0xe3,0x6c,0xbe,0x7a,0x00,0x83,0x61,0xda,0xb1,0xd4,0x13, +0xa7,0x8f,0x9f,0xd0,0x8c,0x8d,0x3b,0x79,0x2e,0xab,0x30,0xbd, +0x38,0xb9,0x54,0x13,0x4e,0xf7,0x63,0xe2,0x38,0x73,0x41,0x58, +0x40,0x0c,0xf6,0x5d,0x62,0x2d,0x71,0x1a,0x49,0x74,0x0e,0x0e, +0xd2,0x0f,0xa4,0x5c,0xfd,0x91,0xaa,0xba,0x2d,0x65,0x98,0xbb, +0x27,0x63,0x3c,0x73,0xc2,0xba,0xb4,0x7f,0x50,0x88,0xf3,0x61, +0x29,0x03,0x43,0x86,0x24,0xe4,0xf4,0x85,0x12,0x9d,0x5a,0x98, +0x6e,0xc8,0xe2,0xbc,0x99,0xf6,0xe2,0xfc,0x4e,0x6a,0xa9,0x9f, +0x50,0x4b,0xed,0x19,0xed,0x1e,0xfd,0x5f,0x2d,0xb5,0xd1,0xbf, +0x62,0x1c,0x24,0x4b,0x6d,0x17,0xad,0xf8,0xdb,0x52,0xff,0x2b, +0xc6,0x81,0x91,0x66,0xe5,0xbf,0x66,0xba,0xf3,0x24,0xab,0x3b, +0xc0,0x36,0x65,0x37,0xe6,0x34,0xe6,0x49,0x2e,0x8e,0x97,0xe6, +0x12,0xf2,0x65,0x14,0x58,0x54,0xb3,0xc2,0xb4,0x10,0x02,0x3f, +0x63,0xa5,0x0c,0x02,0xb1,0x9f,0xdd,0x03,0x5d,0xc4,0x51,0x69, +0xed,0xa1,0xef,0x5f,0x46,0x9b,0xb3,0x62,0xb4,0x51,0xad,0xe6, +0xf0,0x59,0x1d,0x71,0x74,0xb4,0x72,0x33,0xf4,0x2b,0x73,0xe0, +0x2f,0x55,0x8d,0xb4,0xb4,0xb7,0x73,0xb0,0x7f,0xd2,0x9c,0x7c, +0x0e,0xbe,0x5d,0xe8,0xfb,0x10,0x7c,0xba,0xd0,0xe7,0x21,0x9c, +0xec,0xc6,0x58,0x36,0xb7,0x34,0xb7,0x3a,0xa3,0xd2,0x26,0x8b, +0xbf,0x58,0x39,0xd2,0xda,0xae,0xf6,0x6e,0xe2,0x6d,0xed,0xf5, +0x9d,0x8e,0x04,0x94,0xd9,0x4b,0x73,0x09,0xb4,0xcf,0x86,0x51, +0x84,0x70,0x84,0xc9,0x29,0xcf,0xaa,0xcc,0xac,0x94,0xe5,0xf0, +0x1e,0xdb,0xac,0xb6,0xee,0x3b,0x58,0x6d,0xcf,0x97,0x94,0x14, +0x95,0x14,0x94,0x70,0xe2,0x4b,0xa3,0x6d,0xc2,0xe9,0x5e,0x56, +0xdc,0x3b,0xf1,0x12,0xb1,0xb4,0xd4,0x97,0xeb,0x79,0x56,0xda, +0xf3,0xb7,0xeb,0xaf,0xf5,0x0c,0x8e,0x70,0x8b,0xf1,0x09,0x79, +0x08,0x96,0x5b,0x59,0xb4,0x44,0xf2,0xf7,0x96,0xdd,0xcc,0x8d, +0x68,0xf9,0xb9,0x14,0xd0,0x38,0x61,0x49,0xe4,0x1d,0x16,0x9d, +0x16,0x0d,0xee,0x0a,0x7e,0xc4,0xa5,0xcb,0xb1,0xdb,0x9e,0x83, +0x76,0xac,0x24,0x67,0x71,0x4e,0x02,0xbe,0x1d,0x7f,0x90,0x33, +0x3f,0x7e,0x2c,0xda,0x66,0xc1,0x36,0x26,0xc7,0x5c,0xe3,0x33, +0xe6,0x66,0x75,0xc9,0x9d,0x6c,0x9d,0xec,0x87,0xa9,0xa0,0x0d, +0x16,0x5a,0x14,0x50,0xa5,0xb4,0xa4,0x0e,0x9f,0xaf,0xe3,0xc0, +0x19,0x62,0xa4,0xf0,0x0f,0x5f,0xe4,0xd1,0x4e,0x92,0x6a,0xde, +0x7c,0x4c,0x8f,0x13,0xbe,0x9f,0x87,0xaf,0x27,0xa2,0x56,0xec, +0x4e,0x6d,0xdb,0x13,0x61,0xd1,0x8a,0x05,0x6b,0xa5,0xe1,0xfb, +0x15,0x73,0xbd,0xae,0xec,0x6e,0xa6,0x4e,0xf6,0xf3,0x0b,0xd4, +0x9b,0x1a,0x6b,0x61,0x0a,0x93,0xd2,0x74,0x61,0xe8,0x7c,0xa3, +0x04,0xe4,0x63,0xb0,0xdb,0x8a,0x1a,0x75,0x1e,0x03,0x99,0x53, +0xfb,0xe2,0x37,0xc6,0xe8,0x71,0xe2,0x6b,0x77,0x88,0x43,0x87, +0xe1,0x80,0x79,0xb3,0x9b,0x82,0x1f,0x70,0x1e,0x96,0x75,0xda, +0x72,0xc2,0x73,0x33,0x22,0x57,0x18,0x38,0x18,0xf8,0x54,0x2a, +0xf8,0x2b,0xaa,0x6b,0x9d,0x9d,0x5d,0x9c,0xf8,0x66,0x1d,0x91, +0xd9,0xef,0x97,0xef,0xf7,0xae,0x94,0xf3,0x77,0xea,0xee,0xf7, +0xf6,0x50,0x24,0xc5,0x88,0x9a,0xe4,0x2a,0xbc,0xd0,0x01,0x6f, +0x96,0xfc,0x66,0x9e,0xcf,0xfb,0xe1,0x4c,0x25,0xce,0x32,0x5c, +0xca,0x4d,0x64,0x43,0x32,0x31,0x33,0xdd,0x69,0xba,0xd5,0xa9, +0xc2,0x9e,0x7f,0xac,0x7e,0x72,0x79,0x70,0x9c,0x13,0x35,0x6b, +0x89,0x91,0xf1,0x26,0xa3,0xf5,0xd2,0xbe,0xaf,0xda,0xbe,0xbd, +0x39,0x32,0x4e,0x7d,0xa7,0x20,0xfc,0x49,0x3a,0xf3,0x72,0x5a, +0x74,0xfa,0x59,0xd3,0x74,0x8d,0xc3,0x28,0xb2,0x8e,0xb1,0x29, +0xcd,0x3a,0xc5,0x2c,0x6c,0x49,0x81,0xd5,0x19,0xf0,0x56,0x59, +0x70,0x37,0x8f,0x2f,0x07,0xe3,0xda,0x28,0x5c,0x7b,0x8a,0xbb, +0x6c,0x84,0x0b,0xd9,0x03,0x15,0x21,0x37,0xb5,0x71,0x87,0xb8, +0x80,0xb8,0x45,0x4a,0x69,0x7a,0x1c,0x7c,0x05,0xd3,0x46,0x70, +0x1a,0x54,0x1a,0x61,0xa5,0x64,0x77,0x27,0xff,0x2f,0xbb,0xfb, +0xb4,0x9d,0x7b,0x12,0x44,0x84,0xdd,0xc6,0x62,0x88,0xf0,0x64, +0x90,0x75,0x19,0x26,0xc2,0x0c,0x71,0x8d,0x38,0x83,0x85,0x3f, +0xe0,0x26,0xb1,0xc0,0x9e,0x41,0x16,0x7a,0xde,0x21,0x66,0xd8, +0x33,0x4c,0x37,0x16,0x11,0x53,0xec,0x19,0x61,0x31,0x54,0x24, +0xe4,0x69,0xc9,0x97,0xcd,0x97,0xdb,0xdc,0xd5,0xbc,0xbe,0xf3, +0x56,0xcf,0xcd,0x21,0x9c,0xb0,0xa0,0x8b,0xdc,0x0b,0xfc,0xcc, +0xf3,0xa1,0x53,0x45,0x1f,0xbf,0xb7,0x79,0xab,0x6a,0x2b,0x05, +0xfe,0xc2,0x9e,0x89,0x19,0x44,0x9d,0x9b,0xdd,0xac,0xd3,0xce, +0x9a,0x65,0x68,0x98,0x60,0x02,0xeb,0x71,0x3c,0xad,0x5a,0x27, +0x93,0xfd,0x2d,0x1d,0xa6,0xe7,0xfd,0x5e,0x1e,0xd8,0xc9,0x6f, +0x09,0x79,0x27,0xe2,0xed,0x78,0x6e,0xdc,0x84,0xfa,0x21,0xe3, +0xb2,0xa0,0x9b,0xda,0xc2,0xf4,0x22,0x4a,0xd1,0x85,0x69,0x42, +0x21,0x1e,0x65,0xb3,0xeb,0xd3,0x1b,0xd2,0xe9,0x63,0x3e,0x3c, +0x28,0xee,0xb4,0x00,0x23,0x26,0xc1,0x2b,0xd6,0x2d,0xca,0x95, +0x3b,0x8c,0xab,0xc9,0xcf,0x90,0xbc,0x94,0x15,0x5f,0xc5,0x6a, +0x22,0x4c,0xc7,0x3e,0x71,0x3a,0x6b,0x64,0x49,0x84,0x45,0x26, +0xa2,0xa5,0x70,0x98,0x8e,0x0b,0x81,0x25,0xc6,0x68,0x3a,0xc6, +0x4e,0xcc,0x58,0x4b,0x16,0x63,0xf2,0x6f,0x2c,0x1e,0x8e,0xa3, +0x2c,0xc0,0x74,0x9c,0x05,0xd3,0x45,0x44,0x1f,0x4d,0x2f,0xb3, +0x02,0xab,0x24,0x90,0x8c,0x33,0x31,0x99,0x81,0x2d,0x38,0x93, +0x74,0xbb,0x5d,0xb1,0xea,0xb0,0xa1,0xee,0x55,0xde,0x65,0xd8, +0x2d,0x6b,0x94,0x24,0xec,0x5f,0x22,0x9e,0xb5,0x06,0xfd,0x8e, +0x55,0x2e,0x2e,0x7c,0xb7,0xc7,0x88,0xb5,0xca,0xb3,0xa4,0x94, +0xaf,0x71,0xbd,0xde,0x32,0xd0,0xdd,0x31,0xa8,0x69,0xaf,0x72, +0x57,0xd8,0x3b,0x5a,0x78,0x69,0x8a,0xba,0x66,0xe4,0x56,0xdd, +0xcd,0xc1,0xfa,0x76,0xc7,0x46,0xde,0xdb,0xf9,0xa0,0xcd,0x21, +0x1f,0x6a,0x01,0x03,0x84,0xf3,0x04,0x98,0x11,0x64,0xa0,0xd2, +0x10,0x2b,0xf1,0x05,0x53,0x78,0x01,0xff,0xc1,0x38,0x47,0x39, +0xc6,0x38,0x4c,0xb5,0x3f,0xd7,0xf8,0x6d,0xc3,0xf3,0x8e,0xf8, +0x51,0xde,0x39,0xdc,0x31,0xc2,0x21,0x92,0x9b,0x08,0x85,0x67, +0x64,0x90,0xba,0xd8,0xf1,0x2b,0xfd,0x77,0x3a,0x1f,0xd9,0x54, +0xf2,0x56,0xab,0xf4,0xb7,0xee,0xdb,0xcf,0xed,0x87,0x39,0xb0, +0x6b,0x10,0x77,0xfd,0x62,0xbc,0x04,0x0f,0x59,0xc0,0x21,0x9c, +0x83,0xce,0x16,0x50,0xc9,0xbc,0xb7,0xe7,0x1d,0x23,0x64,0x64, +0x15,0x56,0x7c,0x4d,0x4e,0x55,0x76,0x55,0x2e,0x27,0xbe,0x35, +0x36,0x0c,0xd7,0xcd,0x2e,0x0a,0x46,0x6c,0xd2,0xa9,0xf3,0x1f, +0x24,0x9d,0x6a,0x6a,0xe1,0x3d,0xeb,0x1d,0x9a,0x1c,0xab,0x94, +0x4a,0xbe,0x31,0xb0,0xce,0xa7,0xc6,0x8b,0xc3,0x87,0xcc,0xb5, +0xd6,0xb1,0x8e,0xc1,0x1e,0x0e,0x7d,0x71,0x40,0x5a,0x98,0xb8, +0x8e,0x33,0x58,0xbc,0x6e,0x49,0xe8,0xc6,0x2b,0x52,0x96,0xc1, +0x44,0x24,0x35,0x5c,0x63,0xea,0x81,0x8e,0xce,0x3e,0x85,0x8a, +0x37,0x3e,0x7c,0xd0,0x6c,0x97,0x8c,0xc3,0x99,0x8f,0x41,0xd6, +0x8d,0xb2,0x3b,0x02,0x07,0xf2,0xc9,0x02,0xec,0x66,0xf0,0x5c, +0x20,0x6e,0xd6,0xc5,0xd9,0xda,0x3d,0x36,0x1a,0x0f,0x41,0xa7, +0x02,0x4c,0x20,0x43,0xeb,0x19,0x34,0xe9,0xa2,0xdc,0x16,0xe4, +0x5b,0xf0,0x82,0x0d,0x3c,0x63,0x71,0x9a,0x19,0xbe,0xea,0x80, +0x6f,0x79,0x14,0xc9,0xf8,0xb6,0x7f,0xda,0xb9,0xa6,0xd1,0x5e, +0x61,0xb1,0xcd,0x45,0xf8,0x88,0xad,0x88,0x28,0x6b,0xb2,0xa8, +0x37,0x51,0x99,0x14,0x6a,0xfa,0x2a,0x9b,0x62,0x9a,0x23,0x1b, +0xc2,0x34,0xf1,0x0b,0x66,0xbc,0x7c,0xb4,0x6a,0x50,0xc5,0x41, +0x5d,0x2f,0xb3,0x02,0x7e,0x27,0xab,0x27,0x17,0x7f,0xc3,0x82, +0x8b,0xf8,0x07,0xb9,0x2d,0x2c,0xd6,0x63,0xc5,0xc5,0xf6,0x44, +0x58,0xbc,0x53,0x5c,0xcc,0xfc,0x53,0x3d,0xdc,0x18,0x0b,0xc7, +0x8c,0x8c,0xf1,0xac,0x05,0x9c,0x35,0xba,0xf8,0x4f,0xf5,0xf0, +0xdc,0x41,0xcc,0x65,0x70,0xec,0x7d,0x62,0x8b,0x04,0xe7,0x1f, +0xc6,0x15,0xb6,0x25,0xe6,0xbc,0x94,0xdc,0xc4,0xf5,0xdf,0xfb, +0x8a,0x13,0x5e,0x62,0xc2,0xcf,0x44,0x9d,0x8e,0xd2,0x0e,0x3f, +0x15,0x77,0xc2,0x7d,0x01,0x2a,0x98,0x2c,0x5b,0x0a,0x21,0x99, +0x1b,0xaa,0xb4,0xde,0x34,0x9d,0x0b,0x55,0x67,0x55,0x83,0x5a, +0xe2,0x72,0x26,0x2d,0x27,0x35,0xef,0x02,0xb5,0xbf,0xfe,0x93, +0xba,0x44,0x99,0x90,0x56,0xaf,0x03,0x6b,0x21,0x09,0x02,0x27, +0x0d,0x30,0x10,0x2a,0x59,0xeb,0x65,0xf8,0xc2,0x51,0x0c,0xb7, +0x2b,0x32,0xe5,0x21,0xae,0x1b,0xde,0xfc,0x68,0x0c,0x96,0x72, +0x3d,0xb8,0x85,0x39,0x54,0x16,0x72,0x43,0x1b,0x22,0x99,0xf6, +0x82,0x82,0x16,0x9d,0x3f,0x59,0x93,0x7c,0x0d,0x9c,0xcf,0x4e, +0x2e,0xa6,0x1d,0x12,0x52,0x98,0x0f,0xe4,0x27,0x9d,0xe2,0xdc, +0x38,0x8c,0x65,0x84,0x8f,0xa4,0x92,0x32,0xb3,0xb1,0x9e,0x4d, +0x6b,0xbc,0xd0,0x72,0xae,0x83,0x42,0x38,0xac,0x25,0x8e,0x55, +0x26,0x55,0x8a,0x3c,0x3f,0x47,0xbe,0x37,0x74,0xc4,0xa7,0x31, +0x80,0xfb,0x9b,0xfa,0x0d,0xe2,0xfb,0xec,0xc8,0xd5,0x9e,0xbb, +0xea,0xc7,0x36,0xe5,0xbc,0xdd,0x2a,0x93,0xad,0x87,0xf4,0xb8, +0x43,0xf0,0xea,0x94,0xd4,0xf2,0x6f,0xc6,0x8b,0x71,0x87,0x25, +0xec,0xa0,0xf4,0xcf,0xd2,0x02,0xf2,0x98,0x2d,0xbb,0x56,0x18, +0x2c,0xb2,0xae,0x94,0xf1,0x55,0x39,0x55,0xb9,0x15,0xb4,0x53, +0xbc,0x39,0x3a,0x0c,0x2a,0xb3,0x51,0xda,0x29,0xd2,0xe2,0x1b, +0x9b,0x7c,0xea,0x9d,0x9a,0x5c,0xaa,0x34,0x95,0x6e,0x75,0xfe, +0x2a,0x9f,0x2a,0x6f,0x4d,0x1c,0x62,0x2e,0xb6,0x0e,0x75,0xf4, +0xf4,0x70,0x93,0xcb,0x61,0x58,0x8a,0xf2,0xad,0x98,0x98,0xce, +0x9a,0x49,0x6b,0xd5,0x9b,0x60,0x3e,0x6c,0x62,0xf0,0xf6,0x4c, +0xba,0xa5,0x25,0x6d,0x6d,0x42,0x23,0x02,0x9b,0x70,0x09,0x6e, +0x62,0x84,0xd5,0x1e,0x84,0x02,0x7e,0x15,0xce,0x64,0x27,0x4f, +0x61,0x15,0xe9,0x1e,0xe8,0x7a,0x5c,0x76,0xcd,0xaa,0x8a,0x0f, +0x33,0xb5,0xd9,0xa4,0xa0,0xa6,0x3c,0x02,0xd6,0x91,0x06,0xcb, +0x86,0x03,0x65,0xc6,0x7d,0xf5,0x7c,0xd0,0x88,0xd3,0x1d,0x8f, +0x1e,0x0e,0x4e,0x1d,0x27,0xf4,0x94,0xd9,0xa8,0x62,0x66,0xff, +0xf5,0x86,0x30,0x41,0xd0,0x7d,0xc8,0xc2,0x1c,0xf5,0x65,0xa0, +0xbf,0x0f,0xa3,0xc1,0x45,0xe8,0x1d,0xc4,0xba,0x87,0x46,0x5b, +0xb1,0x04,0xeb,0x18,0xb4,0x0d,0xc5,0xf7,0x8f,0x52,0xaa,0xd5, +0xa7,0xbc,0x09,0x6b,0x8b,0x60,0xe7,0x39,0xd0,0xd7,0x84,0xe8, +0x5d,0x68,0x2c,0xa3,0xf0,0x69,0x70,0x14,0xdc,0x61,0xee,0x58, +0x9f,0x31,0x23,0xfe,0x88,0x71,0xc4,0x3b,0xd2,0x3b,0xca,0x33, +0x8a,0x83,0x9b,0x12,0xb8,0x4a,0x35,0xc1,0xd4,0xf7,0xcc,0xbf, +0xc2,0x6f,0x59,0x0f,0xea,0x7e,0xdd,0x62,0xf3,0x4c,0xf9,0xef, +0x1b,0x3e,0xae,0xbf,0xd7,0xc6,0x09,0x0d,0xc2,0x74,0xb2,0x0f, +0xd7,0xdf,0x65,0xd1,0x7e,0xe6,0x03,0x58,0xbf,0x8b,0xc5,0xe7, +0xe2,0x41,0xca,0xba,0xbf,0xb2,0x18,0x85,0x7e,0xd1,0x86,0x3a, +0x54,0x41,0x07,0x3e,0x24,0xb8,0x10,0xbf,0x82,0x85,0xec,0x6c, +0x61,0xd3,0xc4,0x0e,0xa2,0x10,0x92,0xdb,0x31,0xfa,0x12,0xa4, +0x76,0x62,0xea,0x88,0x85,0x29,0x26,0xda,0x43,0xa2,0x01,0x2b, +0xde,0x84,0xd7,0xff,0x96,0x92,0xa1,0x24,0x3d,0x8e,0x4c,0x6a, +0x0d,0x4d,0x68,0xc1,0xab,0xc3,0x78,0xcd,0x8c,0x15,0xe6,0x6e, +0x20,0x72,0xf0,0x32,0xc4,0xe3,0x72,0xa1,0xb9,0x03,0xcf,0x8d, +0x83,0xb9,0x8a,0x55,0x45,0x14,0x56,0x65,0x55,0x67,0xd4,0x6a, +0xb6,0x88,0xd7,0xec,0x84,0x34,0x36,0x31,0x32,0x3e,0x3c,0x3a, +0x82,0x9b,0xec,0xb2,0x24,0x28,0x3b,0xb1,0xcc,0x73,0xbd,0x76, +0x8f,0x9b,0x46,0xc3,0x2f,0x69,0xf0,0x0a,0xd8,0x69,0xa9,0x2d, +0x58,0x28,0x11,0xf5,0x88,0xa0,0x67,0x21,0xea,0xb1,0xc2,0x77, +0x30,0x97,0x5c,0xb9,0xdb,0x23,0x8e,0xc8,0x84,0xfd,0x47,0xd1, +0xd0,0x0e,0x0c,0x51,0x6b,0xad,0x54,0xcd,0xe9,0x2e,0xd3,0x9a, +0x97,0xd7,0xa2,0x03,0x6f,0x3c,0xec,0x62,0xc5,0x24,0x8c,0x24, +0xed,0xb4,0x8b,0x5a,0xa3,0x03,0x9e,0x90,0x32,0xe7,0x2d,0xc8, +0x92,0xb7,0x7f,0x61,0xc1,0xce,0x92,0x94,0x87,0x54,0x79,0xe5, +0x07,0x36,0x55,0xf2,0x11,0x95,0xbe,0x35,0xfe,0x45,0x9c,0x94, +0x49,0xf4,0x26,0x11,0xf7,0xdf,0x16,0x5e,0x82,0x21,0xf4,0xfc, +0xef,0xf2,0x15,0x71,0x7e,0x1c,0x6e,0x14,0xdb,0x85,0xf5,0xcc, +0xee,0x53,0xff,0x92,0xaf,0x70,0x5a,0x60,0x20,0x45,0x62,0x5c, +0x62,0xae,0x56,0x96,0x8f,0x67,0xea,0x64,0xfc,0x53,0xbe,0x62, +0xdd,0x5d,0x61,0x3f,0x33,0xf9,0x11,0x1c,0x26,0x87,0xcb,0x82, +0x69,0xa7,0x7f,0x9b,0x51,0xe7,0xe6,0xa9,0x69,0xa7,0xb7,0xc8, +0xd1,0xc0,0xb9,0x94,0x4d,0xb9,0xc6,0xa5,0x4e,0xd5,0x54,0x82, +0x63,0xed,0xc7,0x87,0x30,0xc8,0x51,0x03,0x5e,0x33,0xc4,0xb7, +0xd8,0xf7,0x22,0x53,0xcd,0x1f,0xe5,0x6a,0x4c,0x38,0xdc,0x23, +0xbb,0xf1,0xe6,0x7d,0x16,0x6e,0x4e,0x89,0x57,0xdc,0xfc,0x94, +0x5d,0x89,0xcf,0x09,0xae,0x85,0x45,0x46,0xb8,0x08,0x77,0x98, +0xd0,0x5e,0x5d,0x72,0x11,0x4a,0x60,0x2d,0x23,0x2c,0xa3,0xb6, +0x38,0xa6,0x39,0xac,0x3f,0xa2,0xda,0x39,0x8a,0xcf,0xf3,0x2a, +0xb4,0xc8,0x54,0x72,0xe2,0x5c,0x64,0x49,0xfb,0xad,0x8a,0xcf, +0x33,0xef,0x5a,0x67,0xf2,0x31,0x87,0x02,0xb7,0x2b,0xf4,0xa9, +0xd9,0x00,0x2b,0x92,0x6b,0x93,0x63,0x9a,0x66,0xda,0x93,0xc5, +0xc7,0x8d,0x1c,0x1b,0x8e,0xec,0xe6,0x70,0x55,0x0c,0xc9,0x38, +0x9c,0xb2,0xe7,0x9c,0x51,0x7f,0x8a,0x24,0x5d,0x71,0x23,0xe6, +0x2a,0xb5,0xd0,0x9f,0x4d,0xe8,0x13,0x7b,0xe1,0x9b,0x4e,0xac, +0xed,0x80,0xb1,0x2e,0x1c,0xeb,0x33,0xb5,0xc6,0x0e,0x3b,0xe8, +0x90,0xb3,0xd8,0x9d,0x47,0x6c,0xda,0x0d,0xdb,0x8c,0x54,0x5e, +0xb6,0xfc,0xb8,0xdb,0x90,0x73,0xbf,0x82,0x1b,0x37,0x27,0x68, +0x2b,0x88,0x60,0xcb,0xfe,0x63,0xbe,0x3e,0xb9,0xe6,0x72,0xd5, +0x6e,0x54,0xd6,0xd0,0xc5,0x5b,0x76,0xe9,0xf5,0x1f,0x6a,0x94, +0x46,0xaf,0x8e,0x64,0x4d,0xb7,0xb0,0xf1,0x6e,0x6e,0x31,0xef, +0x9e,0xc8,0x72,0xe0,0x61,0x66,0xda,0x70,0x75,0xd6,0x45,0xee, +0xba,0x37,0xe3,0x9c,0x17,0xdb,0xa3,0xfd,0x23,0xd3,0x98,0x99, +0x55,0xa1,0x93,0xcf,0xda,0x67,0x68,0xf8,0x2e,0x65,0x63,0x4f, +0x26,0xa5,0xeb,0x54,0x53,0x73,0x3e,0x83,0x2d,0xd9,0x4c,0xc4, +0x5e,0xbc,0x22,0xf4,0x32,0xa6,0x50,0x44,0xe4,0xa2,0x7e,0x07, +0x8b,0x57,0x44,0x6d,0x72,0x57,0xaa,0xb9,0x56,0xfb,0xbb,0x79, +0x31,0xef,0x8e,0x33,0x65,0xc8,0xe9,0x2d,0xe7,0x26,0xd4,0x50, +0xf0,0xf7,0x11,0x82,0xfe,0x46,0x22,0x13,0xf5,0x7b,0x58,0xa8, +0xc7,0x55,0xe4,0x7e,0xf8,0x4f,0xee,0x57,0xbc,0xcb,0xba,0x79, +0xa3,0xea,0x45,0xf5,0x7b,0xf3,0x38,0x71,0x0d,0xce,0x27,0x3f, +0x16,0x7e,0xdd,0x30,0x50,0xef,0xd9,0xcc,0x3b,0x78,0xbf,0xeb, +0xb9,0x32,0x92,0xa2,0x8a,0x5d,0x13,0x89,0xe4,0xdb,0xe4,0xaf, +0x33,0x1e,0x95,0xf9,0xb5,0xf3,0x3b,0x82,0x56,0xc4,0xa3,0xc6, +0xc9,0x13,0x7b,0xc2,0xb7,0xfa,0x19,0xf6,0xf8,0xf3,0x95,0x97, +0xf3,0x3e,0xba,0x70,0x89,0xa3,0x4f,0x6e,0x2f,0xe9,0xc1,0x39, +0x0f,0xe1,0xad,0x1e,0x7c,0xeb,0x23,0x8b,0xbd,0xb8,0x40,0x06, +0x0b,0xb6,0xe2,0x6c,0x19,0xcc,0xde,0x80,0xcb,0x6c,0xe0,0xa7, +0x5e,0x5c,0xfa,0x05,0x4b,0x79,0xa9,0x26,0x71,0x56,0xdb,0xb5, +0xd9,0xd5,0x7b,0x38,0xf0,0x3d,0xca,0x16,0x17,0xb5,0x82,0x9b, +0x58,0x3a,0x48,0x8a,0x6d,0x0a,0x2c,0xb2,0x4d,0x7b,0x73,0xf9, +0xa8,0xe1,0xd0,0x91,0x90,0x2e,0x6e,0x13,0xee,0x24,0x89,0x5d, +0x71,0x03,0xd1,0xbd,0x76,0x71,0x7c,0xa6,0x75,0xaa,0xed,0x05, +0x6b,0x4e,0xec,0x59,0x45,0x94,0x6d,0xe6,0xfd,0xb2,0x26,0x37, +0xca,0xc7,0x5d,0xfa,0x6d,0x5a,0xe4,0xdc,0xc4,0x59,0x13,0x02, +0xef,0xe1,0x3d,0x5b,0x98,0x83,0xd3,0xf0,0x4d,0x19,0xbc,0x49, +0x69,0xec,0xab,0x32,0x78,0x95,0x82,0xfa,0x99,0x6c,0xb6,0x15, +0x85,0xc6,0xea,0xdc,0x5c,0xda,0xdd,0xd7,0x3c,0x97,0x0d,0x80, +0x77,0x7b,0x0f,0xbb,0x02,0xa6,0x11,0x9c,0xb6,0x16,0xa6,0xb1, +0xa2,0x9f,0xa8,0x26,0xe0,0x0d,0x66,0xf8,0xde,0x1a,0x36,0x5b, +0xa6,0x71,0x8f,0x69,0xc9,0xa1,0xd8,0x49,0xd0,0xc4,0x2e,0xd1, +0x96,0x85,0xd9,0x90,0x4b,0xf6,0xc3,0x92,0x5b,0x4c,0x37,0x2e, +0x21,0xb0,0xe4,0x2e,0x2e,0x61,0xa1,0x31,0x85,0xc0,0xac,0xe7, +0x38,0x8b,0x9d,0xac,0xc4,0x6c,0x69,0x4e,0x48,0xfd,0xef,0x39, +0x21,0x0d,0x37,0x9c,0x65,0xbc,0x94,0xe2,0x97,0x9f,0x7e,0x26, +0x5e,0xd1,0x76,0x11,0x32,0x8a,0xa4,0xb6,0x03,0x27,0xbc,0x66, +0x83,0x4f,0x0e,0x0b,0xba,0x6c,0x57,0x46,0x7b,0x76,0x43,0x76, +0x58,0x2f,0xef,0x13,0xeb,0x1a,0xeb,0x1c,0xcf,0x3d,0xb0,0x5a, +0xc7,0xca,0xe3,0xed,0x8f,0xcb,0x13,0xb3,0xad,0xf8,0xa6,0x64, +0x75,0xaa,0x3a,0x8d,0x13,0xb7,0x1c,0x82,0x87,0xd6,0xa2,0x7f, +0xdf,0x0f,0xd7,0x29,0x8e,0xf1,0x3f,0xee,0x7f,0x22,0xe4,0x54, +0xae,0x15,0x7f,0x2b,0x17,0x66,0xb7,0x8e,0x57,0x72,0xe5,0xc2, +0x33,0x22,0x16,0x40,0x83,0x50,0x80,0x3a,0x6c,0x56,0x63,0x6a, +0x43,0x0a,0x45,0x39,0x5a,0xfd,0xf8,0xd0,0x0a,0x16,0x31,0xc7, +0x3d,0x13,0xdc,0xa2,0x69,0xff,0xfe,0x66,0x72,0x0f,0xf9,0x03, +0x5e,0x9f,0x90,0xe3,0xe1,0x49,0x0a,0x5c,0x08,0x6c,0x24,0x7b, +0x84,0xdf,0xee,0x31,0xc2,0x31,0x6a,0x72,0x7e,0x81,0xfd,0x4b, +0x58,0xd9,0xcc,0x45,0xb8,0xff,0x77,0x16,0x57,0xcf,0x84,0xfd, +0xc8,0x49,0xd9,0x6c,0xec,0x42,0xd2,0xa0,0xec,0xb4,0x52,0x59, +0xb6,0x34,0xf0,0x5e,0xbd,0x0e,0x5d,0xca,0x56,0x0e,0x8f,0xe1, +0x7e,0xd2,0xa7,0x6e,0xe9,0x53,0x0d,0xd9,0x4a,0xc2,0xf9,0x4e, +0x32,0x3b,0x49,0x4d,0xef,0xf3,0x2f,0xc8,0x10,0x68,0x94,0xc0, +0x4e,0x30,0xd5,0xea,0x85,0x48,0xf6,0x03,0xbf,0x53,0xfe,0xa7, +0x02,0x39,0x7c,0x4f,0x34,0x11,0x0e,0x0b,0x26,0x18,0xc6,0x9c, +0x2f,0x3b,0x5f,0x91,0x54,0xc9,0x41,0xa6,0x54,0xec,0x21,0xa9, +0x26,0xa9,0xe6,0x5c,0xf9,0x83,0xf4,0x7b,0x59,0x57,0x73,0x7c, +0xfb,0x78,0x4f,0xd4,0x46,0xd3,0x20,0xf4,0x59,0x80,0x81,0x2c, +0x5a,0x07,0x23,0x2f,0x5b,0xa1,0x7d,0x4e,0xe8,0xff,0x1f,0xc9, +0xd6,0xb0,0xfd,0x09,0xb9,0xf7,0x24,0x39,0xed,0x91,0xce,0xe9, +0xa0,0xd3,0xbe,0x1f,0xf8,0x72,0x14,0xbc,0xe3,0x5a,0xdc,0xf7, +0x3f,0x32,0xb0,0xe1,0x86,0x0b,0xb9,0x0f,0x77,0x76,0xb3,0xa2, +0x36,0xed,0xfa,0x38,0x6f,0xdd,0xb8,0xb4,0xea,0x72,0xe4,0x7f, +0x14,0xdc,0x51,0x77,0x8f,0x24,0x4d,0x05,0x7b,0xa4,0x3e,0xfa, +0x57,0xc1,0x9d,0x4b,0x1a,0x38,0x13,0xbe,0x23,0x3b,0xf0,0xce, +0x27,0x12,0x01,0x83,0x3b,0x9b,0xf0,0x8e,0x54,0xc8,0x00,0x08, +0x71,0x8c,0x30,0x0b,0x33,0x09,0xe7,0xe0,0x00,0xac,0x81,0x5b, +0x96,0x98,0xb3,0x54,0x98,0xce,0xde,0xcc,0xb9,0x92,0xdf,0x5f, +0xec,0xdf,0xcb,0x3b,0x45,0x98,0x1d,0x33,0x8c,0xe6,0xbe,0xb5, +0x78,0x9b,0x35,0x8a,0xd3,0x4f,0x30,0x39,0x91,0x63,0xc1,0x0f, +0x5e,0x18,0x49,0x1d,0x4a,0xe7,0xf0,0xcf,0x15,0x90,0x63,0x2e, +0xce,0x1f,0xba,0xf5,0x3d,0x5a,0xb2,0x1e,0xf1,0x1e,0xc7,0xbd, +0x4f,0xe4,0x98,0xf0,0x3f,0x95,0xc0,0x6b,0xea,0x87,0x0d,0xdc, +0xb0,0x70,0x8d,0x3e,0x3e,0xe1,0x5d,0xfa,0xf8,0x9c,0xd8,0xdc, +0xfa,0xcc,0x29,0x90,0xea,0x38,0x24,0xfa,0x99,0x83,0x3b,0x13, +0xe7,0x19,0xe3,0x1e,0xe9,0xca,0x6d,0x9f,0x02,0xa9,0x6d,0x4b, +0x59,0xeb,0x99,0xef,0x60,0xdb,0xaf,0x2c,0xae,0x9d,0x09,0x6d, +0xf8,0x02,0xb6,0x31,0x6f,0xe3,0x79,0xf2,0x71,0xd3,0xc5,0xae, +0xbe,0x41,0x79,0x03,0xaf,0xb0,0x31,0x50,0xe8,0x79,0x72,0xf0, +0xe0,0x0b,0x32,0xec,0x71,0xd7,0xaa,0x5f,0xd6,0xd0,0xc1,0x5b, +0x77,0xea,0xf5,0x98,0xd5,0xd1,0x0e,0x18,0x35,0xd1,0x48,0xc4, +0x9d,0xa6,0xb0,0x08,0xe7,0x30,0x56,0xf8,0xba,0x19,0xbc,0xc6, +0x9e,0x3e,0x78,0xd2,0xf0,0x84,0x05,0x87,0x2f,0x99,0xc1,0x74, +0x26,0x08,0x5f,0x51,0xac,0xdb,0xb7,0xae,0x57,0xce,0x3f,0xfc, +0xbd,0xeb,0xcf,0x32,0xd0,0xa2,0x4c,0x8f,0xf9,0x60,0xe7,0xc9, +0xc3,0x89,0x76,0xdc,0xe1,0x84,0xc0,0x58,0xf9,0x82,0x77,0x99, +0x3c,0x63,0x8d,0xa7,0xcc,0xe3,0xa6,0xaa,0xaf,0xb3,0x74,0x52, +0xfa,0x93,0x6f,0x25,0x3d,0xe6,0x3e,0x1d,0xde,0xc5,0x9c,0x1d, +0x3e,0x77,0xe9,0xaa,0xd6,0x47,0xc3,0xfb,0xee,0x30,0xf0,0x39, +0x6e,0x26,0xfd,0xdf,0xb6,0x7c,0x53,0xf6,0x88,0xeb,0xc3,0xaf, +0xfe,0x96,0xee,0x75,0x61,0x83,0xf6,0x38,0xaf,0x31,0x5e,0x76, +0x5f,0x6f,0x74,0x37,0xe5,0xdf,0xba,0xe1,0xee,0xbb,0xb4,0x0f, +0x32,0x59,0x06,0x1a,0xd7,0x98,0xdf,0xda,0xaf,0x7e,0xfb,0xbd, +0xd9,0x83,0x83,0xd7,0x75,0xc4,0x7e,0x6a,0x8d,0x60,0x3d,0xce, +0x66,0x2c,0x70,0xfd,0x00,0x7b,0x0c,0x3b,0x08,0xa5,0x65,0x17, +0xcf,0x5d,0xe7,0x60,0x03,0x73,0xf4,0x8c,0xc1,0x69,0x53,0xed, +0xd9,0xc2,0x28,0xbc,0x49,0xbe,0x87,0x69,0xea,0xaf,0xd2,0x7e, +0xe5,0x52,0x44,0x66,0x50,0x60,0x52,0x98,0xf4,0xc5,0xdd,0x1b, +0x7f,0xc4,0x99,0x75,0x03,0xfc,0x4a,0x98,0x61,0xf3,0xc0,0xff, +0x67,0x7a,0xc2,0x10,0x1e,0x85,0x21,0x73,0x1c,0xc2,0xfd,0xe6, +0xb0,0x9a,0x09,0x5c,0x62,0xbf,0x6d,0xf5,0x22,0xee,0x8c,0x70, +0x9a,0x78,0x76,0x3a,0x75,0x3a,0x36,0xba,0xb8,0xf2,0x6a,0x67, +0xb5,0xbd,0x4a,0xce,0x89,0x6b,0x61,0x15,0x31,0x87,0xc4,0x21, +0x56,0xb8,0xfd,0x01,0x89,0x3c,0x14,0x74,0xc8,0xdf,0xb4,0x23, +0x94,0xaf,0x1c,0x2c,0xbf,0x9f,0x7f,0x99,0xc3,0x1a,0xdc,0x43, +0x8e,0x8d,0xf9,0xde,0x0f,0x1c,0xb0,0x0d,0xe5,0x2b,0xcc,0xcb, +0xf5,0xf2,0x0c,0x38,0xf1,0xda,0x47,0xc4,0x14,0x7a,0x47,0x58, +0xd8,0x85,0x87,0x89,0x47,0xa7,0xbc,0xdb,0xb1,0x5e,0xe9,0xc6, +0xab,0x5d,0xa9,0xf5,0xb2,0xa5,0xc0,0xf9,0x33,0xea,0xcb,0x63, +0xa8,0x2f,0x37,0x9d,0x39,0x84,0x31,0xe6,0xac,0xb0,0xb1,0x95, +0xa0,0x8e,0xe5,0x13,0x7c,0x9b,0x59,0xe4,0xa7,0x5c,0x29,0x97, +0x56,0xfb,0x3a,0x2b,0x7a,0xce,0x7d,0x4c,0xfb,0xdd,0xfa,0xa4, +0x51,0x03,0x58,0xb6,0x00,0x2a,0x98,0x8c,0x51,0x0d,0x6c,0x64, +0x50,0xdb,0x76,0x1c,0xa6,0xe9,0xe0,0x3f,0x30,0x95,0x22,0x89, +0xc3,0x50,0x8e,0xb1,0xf8,0x29,0x0b,0x47,0xa0,0x9c,0xe0,0x16, +0x7c,0x83,0x7a,0x84,0xd9,0x13,0xf7,0x1a,0x09,0xe8,0xfe,0x36, +0xb0,0x18,0xd6,0xfe,0x3a,0xf8,0x0e,0xac,0x02,0x8d,0x61,0x7c, +0x81,0x2d,0xe8,0xc9,0x1f,0x49,0xef,0xb2,0xc9,0xe4,0xe3,0x64, +0x11,0x86,0x21,0xe6,0xdc,0x76,0x26,0xb7,0x37,0xab,0x27,0x63, +0xc4,0x32,0x93,0x0f,0x45,0x56,0x89,0x73,0x2c,0x70,0x1a,0x7d, +0x1e,0xda,0x97,0xbe,0x81,0xe9,0x37,0x3b,0x0e,0xdc,0xb2,0xda, +0x8f,0x5a,0xf4,0xcd,0x50,0x3e,0x8e,0xd3,0xbf,0x32,0xc0,0xb7, +0x68,0x73,0xbd,0x75,0x44,0xb2,0xc7,0xcb,0x22,0xd8,0x88,0x33, +0x91,0x14,0xcf,0xe2,0x5a,0x1b,0x58,0xc2,0x84,0xec,0xb7,0xb6, +0xdf,0x68,0x5e,0x65,0xcf,0x3f,0x1b,0x6d,0xef,0x29,0x69,0x4e, +0x4e,0x3d,0x7f,0x26,0xf9,0x24,0xbc,0x83,0x5a,0x7c,0x9d,0x1a, +0x17,0xc0,0x9c,0xf8,0xb4,0xe3,0xe7,0x8e,0x27,0x68,0xc6,0x51, +0x07,0x74,0x21,0x2b,0x39,0xe7,0x7c,0xae,0x26,0x6c,0xea,0xc5, +0xd5,0xcc,0xd9,0x9c,0xb3,0xb9,0xf9,0x5a,0x05,0xb0,0xb8,0x17, +0x17,0x5f,0x05,0xed,0xef,0xd9,0x2a,0xbf,0xb4,0xc2,0xf4,0xc2, +0xd4,0x42,0x4d,0xf1,0xc1,0xc0,0x65,0x28,0x1d,0x64,0x27,0xbd, +0x26,0x36,0x10,0xa7,0x36,0xdb,0x4e,0x59,0x83,0xbb,0x23,0xdf, +0xe7,0xdc,0xea,0xd4,0x46,0xa1,0x9e,0x7a,0x9c,0xf2,0x29,0xad, +0xcb,0x2c,0x3c,0xa7,0xdd,0x1a,0x56,0x7d,0x8f,0xab,0x58,0xf1, +0x72,0x14,0x71,0xed,0x30,0x1b,0x90,0xb5,0xb8,0x52,0xf3,0xee, +0x44,0xcd,0xbb,0x1d,0x07,0x73,0x9e,0x91,0xa7,0xeb,0x36,0x31, +0xa0,0x33,0xef,0xd9,0xd3,0x75,0x92,0xb4,0xfd,0x2a,0x02,0x6b, +0xbf,0xc7,0xb5,0xec,0xe4,0x0b,0x8d,0x24,0x08,0x35,0x3c,0x71, +0x96,0xd9,0x92,0x1e,0x37,0x7e,0x1c,0x66,0x36,0x83,0x76,0xc1, +0xaf,0x9c,0x70,0x65,0x2f,0x41,0xdd,0x15,0xa0,0xcb,0xce,0x86, +0x93,0x82,0x03,0x39,0x09,0xfc,0x1f,0x43,0x6f,0x83,0x91,0x29, +0x1a,0x49,0xd3,0x9b,0xb3,0xa5,0xc9,0x61,0x25,0x2e,0xde,0x88, +0x73,0x9b,0x65,0xfc,0xcd,0xdf,0xca,0x7f,0x4b,0x7e,0x2e,0x49, +0x95,0x8f,0xfc,0xbd,0x72,0x76,0xee,0x94,0xf6,0x03,0xdc,0xd6, +0xd4,0xbc,0x07,0xd6,0x1f,0xcf,0x3d,0xf1,0x61,0x6c,0xbc,0x26, +0x94,0xc2,0x13,0x62,0x01,0xbe,0x6c,0xdd,0xae,0xf1,0x9d,0x4f, +0x0f,0xaa,0x06,0xf8,0xad,0xd7,0x64,0x17,0xed,0x7f,0xe0,0xf0, +0x92,0x9c,0xf8,0xe8,0xda,0x1b,0x1e,0xb2,0x50,0xcb,0xf9,0xbb, +0x97,0x7a,0xef,0xd6,0xde,0xe7,0xa8,0x57,0x5d,0x4b,0xfa,0xf0, +0xb1,0xf5,0xdd,0x65,0xb8,0x4e,0x1c,0x1c,0xba,0x24,0xcc,0x33, +0x18,0x16,0x06,0x71,0xf3,0x4f,0xac,0xd5,0xbc,0x65,0x7b,0xe8, +0x3b,0xae,0x24,0x1f,0xec,0x0b,0xa4,0xa3,0xb7,0xd6,0x9e,0xff, +0x68,0xac,0xe6,0x4a,0xf2,0x33,0xee,0xde,0x1a,0xc6,0xbc,0x28, +0xba,0x57,0xfb,0xf3,0x6d,0xe2,0x3c,0x38,0xc5,0x50,0x4a,0xf5, +0x22,0xf1,0x3d,0x79,0xa1,0x42,0xe7,0xf1,0x1f,0xf8,0x22,0x2b, +0xce,0x43,0x8a,0xe9,0xe6,0x2d,0x17,0xe7,0x31,0xb3,0x2f,0x4f, +0xb4,0xd3,0x2e,0x97,0x34,0xcc,0x4e,0x2c,0xc1,0x20,0xe2,0x38, +0x6c,0x7e,0xc9,0xa9,0xc5,0xd9,0x9b,0xaf,0x08,0xac,0xf5,0xa8, +0x72,0xe7,0x50,0x01,0x9a,0x50,0x37,0x28,0xfe,0x69,0x01,0x65, +0xa8,0x89,0x7b,0x99,0xca,0xba,0xd2,0x86,0xbc,0x5a,0xbb,0x42, +0xde,0xdb,0xcc,0xce,0xc8,0x54,0x51,0xe7,0xc0,0x67,0xa4,0x69, +0x88,0x38,0x38,0xf1,0x2a,0x98,0x88,0xff,0xe8,0x17,0xfe,0x01, +0xd6,0xe2,0xc5,0xa5,0x6c,0x8e,0xb9,0xc6,0x27,0x4c,0x57,0x4e, +0x41,0x8f,0x8e,0xd0,0xc6,0xa6,0xc5,0x6a,0x4c,0x66,0x96,0x91, +0x49,0xcd,0x81,0x09,0x4d,0x98,0x39,0x8c,0x2d,0x14,0x9a,0xea, +0x62,0x1f,0x29,0x2e,0x2b,0xae,0x29,0xaa,0xcd,0x09,0xcb,0x0e, +0xcd,0x0a,0xad,0xae,0xe1,0xa3,0x4b,0x22,0x4b,0x23,0x4a,0x8b, +0x9b,0xf3,0x5b,0x33,0xeb,0x5d,0xf2,0xf8,0x78,0x9f,0x68,0xcf, +0x08,0xcf,0x88,0x92,0x88,0xa2,0xc8,0x7c,0x5f,0x6f,0xbe,0x20, +0xac,0x28,0xa8,0x30,0x20,0xc4,0x3d,0xc8,0x33,0x28,0x90,0x83, +0x4a,0x4f,0x7a,0x76,0x49,0x4d,0xa1,0x2a,0x37,0x34,0x27,0x34, +0x33,0xac,0xaa,0x86,0x8f,0x29,0x8a,0x2c,0x0d,0x2f,0x2b,0x6e, +0x29,0x68,0xcd,0xa8,0x77,0xa5,0x67,0x53,0x1c,0x1e,0xe1,0x19, +0x56,0x1a,0x56,0x1c,0x99,0xef,0xe7,0x43,0xcf,0x2e,0x0e,0x2c, +0xf6,0xa3,0x67,0x7b,0xd1,0xb3,0xc5,0x49,0x78,0x43,0x2a,0x36, +0xb1,0xcc,0x7b,0x93,0x76,0x97,0xab,0x46,0xdd,0xcf,0x69,0xf0, +0x12,0xd8,0x6a,0xb5,0x5b,0xb1,0x70,0x4e,0xd4,0x25,0x82,0xee, +0x54,0x99,0xf0,0xeb,0x90,0x48,0xe2,0x7d,0xa4,0x5f,0x89,0x28, +0x0e,0x2f,0xfe,0x6f,0xd7,0x10,0xe8,0x19,0x14,0x50,0xe3,0xc5, +0x97,0x94,0x97,0xd6,0x14,0xa9,0x72,0x43,0x72,0x42,0xb2,0x43, +0xab,0xa4,0xeb,0x8f,0x28,0x0b,0x2f,0x2b,0x69,0xc9,0x6f,0xc9, +0xac,0xe7,0x20,0x9e,0x72,0x94,0xe8,0xa2,0xc8,0xb2,0x88,0xd2, +0x92,0x96,0xc2,0xd6,0xcc,0x06,0x65,0x1e,0x1f,0xe7,0x1d,0xe5, +0x21,0x5d,0x53,0x78,0xc9,0xb1,0x3c,0x1f,0x6f,0x3e,0x3f,0xbc, +0x38,0xa0,0xc8,0x3f,0xd4,0x3d,0x90,0x5e,0x53,0xad,0x17,0x4f, +0x5b,0xa3,0x9a,0xfe,0x5a,0x68,0x76,0x48,0x56,0x18,0x75,0x8a, +0xcb,0x27,0x64,0x04,0x67,0xc1,0x4d,0x57,0x51,0x1b,0x5f,0x1f, +0x7c,0x32,0x71,0x62,0xf3,0x20,0xbc,0x2e,0xae,0x69,0x84,0xa7, +0x30,0x0b,0x9f,0x36,0x0a,0x5b,0xd5,0xe2,0xd6,0x5e,0x33,0x1b, +0xf1,0x5d,0x47,0xe1,0x5d,0x57,0x16,0x33,0x94,0x04,0x32,0x1c, +0x31,0x83,0x11,0x9e,0xce,0xc3,0x4a,0x35,0x65,0xe5,0xd8,0x24, +0x0e,0x93,0x07,0x6b,0xe0,0x55,0x7d,0x08,0x54,0x16,0x74,0xf0, +0x6b,0x73,0xf7,0x15,0x18,0x97,0x8c,0x14,0x0c,0x94,0x76,0xd5, +0x84,0xe5,0xf1,0x0f,0xd5,0x58,0xd0,0x39,0x55,0x36,0x4f,0x0d, +0xb1,0x2d,0x18,0xdb,0x0a,0xef,0xc3,0x4c,0xbc,0x89,0x33,0xbf, +0x73,0xc2,0xfc,0xd6,0x5f,0xe8,0xf6,0x18,0xf5,0x65,0xcb,0x9d, +0xd0,0xdb,0x19,0xbc,0x1d,0xd1,0xc0,0x19,0x0c,0xec,0xf1,0x9c, +0x23,0x7c,0xcd,0xbc,0xef,0x89,0x9c,0x1f,0x2e,0x8f,0xcc,0xb1, +0xe7,0x3f,0x4f,0xff,0x24,0xf7,0x56,0x21,0x67,0xc0,0x3a,0x9d, +0x72,0xf8,0x40,0xfe,0x41,0x9a,0x8c,0x87,0xf7,0x33,0x61,0x71, +0x0e,0xbc,0x54,0x94,0xd8,0xce,0xef,0x8d,0xdb,0x9e,0xb0,0xfe, +0x38,0xf7,0x11,0x3b,0x98,0xdf,0x55,0xd4,0x58,0xcc,0x6d,0x81, +0x4f,0x89,0x33,0xca,0x5b,0x58,0xe1,0xe1,0x3c,0x67,0x74,0x6f, +0x61,0xdb,0x71,0x1d,0x71,0xc4,0x7c,0x35,0x0b,0xf9,0x5b,0x89, +0x3d,0xe6,0x77,0xb2,0x70,0x95,0x76,0x76,0xd7,0x42,0xef,0xe2, +0x80,0x32,0xca,0xd2,0x18,0x45,0xa0,0x4d,0x88,0x39,0x6d,0x0d, +0xe1,0x90,0xa4,0xc5,0x34,0xbb,0xf6,0xa3,0xee,0xc6,0x27,0x1c, +0xa4,0x0a,0x6f,0x51,0x18,0x90,0x55,0x9d,0x59,0x93,0x5e,0x6b, +0x9c,0xca,0x27,0xf8,0xc4,0x79,0x1c,0x73,0xe5,0xd0,0x50,0x7c, +0x0b,0x0e,0x31,0x9e,0x16,0x26,0x9e,0xef,0x06,0x70,0x1e,0x90, +0x4a,0x86,0x8d,0xa0,0xc1,0x04,0x1b,0x16,0x43,0xbe,0x31,0xd6, +0xb0,0x58,0x15,0x87,0xdb,0x2c,0xf0,0x75,0xed,0x5e,0xbb,0xf6, +0x3f,0xf2,0xe1,0xe5,0x54,0x58,0xaf,0x09,0x73,0xc5,0x39,0xa3, +0xc2,0x61,0x3c,0xc2,0x9c,0x6d,0x3d,0xdb,0xde,0xa5,0x25,0x84, +0x82,0x0d,0x41,0x06,0x37,0x00,0xc3,0x82,0x0f,0x32,0x04,0xa4, +0x19,0x19,0x86,0x15,0xe7,0x58,0x11,0xea,0x48,0xce,0xd8,0x9d, +0x72,0x8e,0xf7,0xe0,0xf0,0x1d,0x06,0x14,0xf3,0xd2,0xea,0xcf, +0xb7,0x9c,0xed,0xe4,0xe8,0xf7,0xaf,0x30,0xc6,0x18,0x4a,0x60, +0x91,0x01,0xe5,0x0a,0x93,0xe6,0x30,0x89,0xb6,0x97,0xc0,0x16, +0x56,0x0c,0xfd,0x3f,0x24,0x04,0x4e,0xcc,0x07,0x96,0x0c,0x8a, +0x65,0x16,0xac,0xf0,0x09,0xa5,0x1b,0xc3,0x93,0x2f,0x9b,0xb1, +0x96,0xb8,0xec,0x7f,0xa4,0x03,0x4e,0xac,0xba,0x43,0x0f,0xcb, +0xa1,0x87,0xe5,0xe0,0xec,0xbf,0xb7,0xf0,0x86,0x68,0x43,0xbe, +0x6e,0xed,0x19,0x4d,0xba,0xc7,0x4d,0x25,0x42,0x4d,0x01,0x8f, +0xe8,0xa9,0x28,0xd3,0x33,0xcc,0xbf,0xa0,0xca,0x61,0xb4,0x34, +0x86,0x79,0x14,0x50,0xae,0x72,0x93,0x32,0x00,0xe1,0xf1,0x6f, +0x44,0xa8,0x01,0x3f,0xb1,0x86,0x11,0x3c,0xad,0x08,0xb2,0xe2, +0xca,0xa9,0x2a,0x1e,0xb5,0xc2,0x7c,0x6a,0xc9,0x58,0x58,0x33, +0x8a,0x6b,0x60,0x3b,0xd3,0x97,0xd3,0x9d,0xdf,0x52,0xe4,0xdd, +0xc3,0x6f,0x52,0xe0,0x02,0x0f,0x9c,0x16,0x95,0x6d,0xc1,0x77, +0xa4,0x0c,0xa4,0xf5,0x67,0x51,0xd6,0x82,0xba,0x26,0xb0,0x9d, +0x8d,0xc7,0x17,0x6c,0x28,0x6e,0xd0,0xc0,0x37,0x9a,0xad,0xf9, +0xe7,0x7f,0x34,0x3d,0x49,0x7e,0x42,0xed,0x9c,0x7c,0x44,0x38, +0x2a,0xc9,0xaf,0x9f,0x4f,0xd4,0xfe,0x1a,0x37,0x76,0x34,0xad, +0x84,0x75,0x27,0x32,0xe2,0x93,0x62,0xe3,0x34,0x85,0xf7,0xb7, +0x10,0x61,0x17,0x04,0x8d,0x8a,0xc7,0x4d,0xc0,0x55,0xdc,0x85, +0x11,0x86,0x10,0x81,0x8f,0x2e,0xc1,0x23,0x38,0x3e,0xce,0x06, +0x7e,0x45,0x82,0x3f,0x93,0xff,0xe1,0x72,0xd7,0x2a,0x8c,0x6f, +0xde,0xd3,0x86,0xd3,0x4b,0xb7,0x71,0xf8,0x39,0x34,0x90,0xf0, +0xad,0xee,0xab,0x1c,0x76,0xf4,0xf9,0xf1,0xed,0x9f,0x36,0xfc, +0x5a,0xf8,0x74,0x4a,0x8a,0x3a,0x87,0x24,0x17,0x26,0x17,0x9e, +0xcf,0x37,0x4e,0xe1,0x23,0xde,0x0f,0x58,0xed,0xb1,0x81,0x83, +0x2f,0x99,0xc4,0xc0,0x13,0x01,0xc7,0x03,0x38,0x71,0xb6,0x19, +0xa4,0x8a,0xfa,0x38,0x8f,0xc9,0x31,0x91,0xea,0xfd,0x15,0x16, +0xf6,0xea,0xc0,0x6e,0x36,0xf5,0xfc,0x54,0xf9,0x4d,0x53,0xdc, +0xd7,0xdc,0x86,0x86,0xb0,0x23,0x26,0x33,0x4e,0x5a,0x38,0x8e, +0x8b,0xd3,0x48,0x84,0x70,0x38,0x39,0x8c,0x2f,0x31,0xa5,0x5f, +0x15,0x3d,0xcb,0xfb,0x8e,0x83,0xa1,0xc9,0x34,0x82,0xdb,0xa7, +0x62,0xe6,0x17,0xfd,0x97,0x98,0x79,0x99,0x35,0x35,0x5a,0xe3, +0x13,0x9a,0xac,0x58,0x88,0x4b,0x49,0x5a,0x59,0x7a,0xad,0x84, +0xae,0x32,0x99,0x44,0xbf,0x44,0xef,0x13,0x5e,0x5c,0xac,0xf8, +0x0a,0xe9,0x6b,0xea,0xea,0x52,0xa9,0x15,0x8d,0xbc,0x8f,0x93, +0x9d,0xbd,0x8c,0x1a,0xcc,0x4d,0x1f,0x10,0x97,0x36,0x45,0xbb, +0xb3,0xca,0xd1,0x85,0x6f,0x75,0x6f,0x73,0x69,0xb1,0xe7,0xaa, +0x7c,0x89,0xcc,0x6a,0xaf,0xe9,0x6e,0xc7,0x5a,0x19,0xff,0xa4, +0xf7,0xce,0x50,0xcf,0xe0,0x54,0x28,0x82,0xe3,0xdf,0xa1,0x08, +0x6e,0x03,0x52,0x28,0x42,0x64,0x59,0x64,0xd9,0x7f,0x86,0x22, +0x14,0xfe,0x2b,0x14,0x41,0xff,0x80,0xb5,0xda,0x59,0x0a,0x45, +0x50,0xfd,0x3b,0x14,0x21,0xad,0x30,0x85,0x92,0x4e,0x29,0x14, +0xc1,0xc0,0xda,0xb2,0xf3,0xff,0x0e,0x45,0x70,0xeb,0xff,0xcf, +0x5f,0x33,0xee,0x65,0xb6,0xd2,0xe1,0xb4,0xf7,0xf0,0x66,0x93, +0xd5,0x36,0x1c,0xce,0xfb,0x02,0xd2,0x07,0x31,0xfd,0x13,0xa3, +0x1d,0xd8,0x65,0x01,0x5d,0x1b,0x44,0xc6,0x42,0xb0,0x64,0xf0, +0x2d,0x03,0xea,0xad,0x71,0xaf,0xbc,0xd0,0x82,0x1f,0xcf,0x1b, +0xcf,0xbf,0x58,0xc0,0xe1,0xe0,0x78,0xb7,0xe0,0x44,0x3b,0xf1, +0x4f,0x6c,0x76,0x7c,0x26,0xf5,0xd2,0x8d,0xcd,0xbc,0x67,0xf5, +0xd1,0x4e,0x79,0xa9,0x34,0xff,0x89,0x5e,0xcc,0x0d,0xf5,0x95, +0x8e,0x91,0x3e,0x0e,0xad,0x30,0x82,0x14,0xc4,0x57,0x85,0x57, +0x86,0x71,0x08,0xcc,0xd5,0xf2,0xcb,0x55,0x17,0x6b,0x38,0x78, +0x83,0x11,0xad,0x30,0x80,0x3c,0x12,0x9c,0xde,0x67,0x45,0x27, +0x1b,0x22,0x38,0x6d,0x14,0x9d,0x98,0xd9,0x50,0x3d,0xe1,0x46, +0xe4,0xcd,0x56,0x2d,0x96,0x35,0x1e,0xb6,0xfc,0x90,0x7b,0x97, +0x5b,0x97,0x33,0x37,0xe1,0x41,0xd9,0xaa,0xac,0xc4,0xb1,0xcc, +0xad,0xac,0xbd,0xb2,0x49,0x55,0xab,0x52,0x52,0xb2,0xe0,0xe9, +0xe0,0xaa,0xf0,0x0f,0x29,0x08,0x2b,0x38,0x56,0xd0,0x56,0xd5, +0xa4,0xaa,0xaa,0x55,0xd6,0xf1,0x01,0x7e,0xae,0x9e,0x4e,0x01, +0xe1,0x55,0x51,0xd5,0xf1,0xd5,0x96,0x71,0xbc,0x0a,0xd9,0xaf, +0x90,0x01,0x97,0x65,0x9c,0xf8,0x26,0xae,0x20,0xa0,0xc0,0x7d, +0xec,0x9f,0x57,0x2f,0xde,0xad,0xf9,0x8c,0x6b,0x47,0x7f,0x1b, +0x58,0xc7,0x46,0x7b,0x06,0xb9,0x3b,0xbb,0x79,0x94,0xd9,0x57, +0xbb,0x16,0x78,0x39,0xf1,0xaa,0x08,0x75,0x60,0x6d,0x90,0x5b, +0x80,0x7d,0x80,0x59,0x40,0xb9,0x2d,0x5f,0x92,0x51,0x94,0x5e, +0x98,0xc1,0xf9,0xc0,0xca,0x45,0xb8,0x87,0x3d,0xae,0x17,0x7f, +0x20,0xfa,0x08,0x07,0xb6,0xcc,0x69,0xe3,0x53,0xf6,0x27,0x9c, +0x38,0x65,0x62,0x74,0xbc,0x72,0xc1,0x5a,0x26,0xcb,0x5a,0xe3, +0x09,0x73,0xb3,0xa4,0x40,0xaa,0x69,0xda,0x9b,0x7c,0xfb,0xec, +0xd7,0x1c,0x1a,0x33,0x17,0xaa,0x53,0x3a,0x93,0xaa,0x39,0x7c, +0x02,0x4a,0x72,0xd5,0xe5,0x0a,0x65,0xdf,0x8d,0x5d,0xbc,0xd5, +0xdf,0xec,0x5b,0xc8,0xc5,0x8b,0xe4,0xc6,0x40,0x41,0xd7,0xef, +0x5a,0x3f,0xe0,0x74,0xc6,0xbc,0x38,0xaa,0x47,0xbb,0x8d,0x69, +0xcc,0xca,0x6a,0xd2,0xb9,0xcc,0xda,0xe7,0x68,0x6c,0xf1,0x60, +0x83,0x12,0x93,0x4b,0x28,0x75,0x44,0x47,0x16,0xdf,0x3a,0x19, +0xa0,0x2f,0xd3,0x16,0xe5,0xa2,0xce,0xff,0x56,0xd5,0x7c,0xe2, +0x19,0x74,0x10,0xbc,0x67,0x07,0xd9,0x4c,0x84,0xcc,0x57,0xa1, +0x50,0x3a,0xd7,0x79,0x35,0x07,0xaa,0xed,0xfd,0xf8,0x32,0x07, +0x95,0x93,0xda,0xd5,0xc1,0xd7,0x32,0x40,0x3f,0xb4,0xd8,0x86, +0xbf,0x55,0x7a,0xb1,0xba,0xa7,0xb1,0x4f,0x79,0xd1,0xfb,0x66, +0x50,0x49,0x1f,0x6f,0x50,0x64,0x55,0x21,0xaf,0xee,0xef,0x69, +0x18,0x29,0x92,0x4a,0xb9,0xca,0x84,0x1a,0xe2,0x52,0xea,0x59, +0xea,0x57,0x5e,0x5f,0x59,0xa3,0xaa,0xa8,0x75,0xab,0xe5,0x83, +0xbc,0x3d,0xdc,0xbd,0x02,0x22,0xf3,0xa3,0xf3,0x63,0xf2,0x1b, +0xaa,0x6a,0x54,0xa5,0x2a,0xd7,0x6a,0x3e,0xcc,0xdf,0xdf,0xcb, +0x27,0xf0,0x58,0x75,0x5c,0xed,0xf1,0x5a,0x9b,0x78,0xbe,0x0c, +0xd9,0x5b,0xb4,0x85,0xb7,0x2c,0xe5,0x44,0x1b,0x4a,0x4b,0x93, +0x6b,0x2e,0xf4,0x9d,0xab,0xe6,0x60,0x01,0xc8,0x51,0x8b,0x79, +0x7c,0xad,0xe3,0x4e,0xf1,0xc7,0x5c,0x07,0xea,0xca,0xe0,0x25, +0x36,0xde,0x33,0xc2,0xcd,0xc7,0x2d,0xa0,0xdc,0xbd,0xca,0xaf, +0xd0,0x5b,0xc9,0x57,0x44,0xd4,0xf9,0x96,0x07,0xfa,0xf9,0xbb, +0xfb,0x2b,0x02,0xab,0x14,0x7c,0x5e,0x7a,0x6e,0x46,0x4e,0x3a, +0xe7,0x0f,0xd3,0x28,0x99,0x9e,0xcf,0x26,0xee,0x3b,0x7e,0x28, +0xee,0x30,0x47,0x81,0xf5,0x19,0x93,0x0f,0x6c,0x12,0x1d,0x39, +0xb7,0xc4,0xf8,0x38,0x77,0x49,0x95,0xd4,0x56,0xe3,0x22,0x33, +0x56,0x5c,0x70,0x29,0x5d,0x27,0xb5,0xe7,0xfc,0x4d,0xa9,0xad, +0x3d,0x84,0x7c,0x32,0x20,0x72,0x96,0xf0,0x12,0xce,0x5d,0x37, +0x69,0x3a,0x78,0x0d,0x0a,0x26,0xe6,0xbc,0x07,0x73,0x59,0x9b, +0x79,0x38,0xd7,0x85,0x7e,0xca,0xd1,0x94,0x2c,0x4d,0xd8,0xec, +0x65,0xa4,0x0d,0x99,0xad,0x2c,0xec,0xa5,0x17,0xba,0x08,0x3d, +0x6f,0xb3,0xa5,0xa1,0x1a,0x3d,0x1f,0x65,0xfd,0x08,0x0b,0xb5, +0x92,0x9a,0xd1,0x9c,0x95,0x17,0x04,0x35,0x6b,0xe7,0x76,0x93, +0xe0,0xc4,0x94,0x6a,0x1d,0xd0,0x6b,0x47,0x0f,0x56,0x18,0x55, +0x90,0xea,0x8c,0x2c,0x95,0xce,0x5d,0x56,0x99,0xad,0xb1,0x3e, +0x98,0x8d,0x38,0x99,0x9c,0xa7,0x03,0x9b,0x71,0xd7,0x4e,0x56, +0x3f,0xc1,0xd5,0xc1,0x45,0x5b,0xe5,0xa6,0xd1,0xdb,0x95,0xd7, +0xf3,0xb1,0x56,0xdd,0x5d,0x7c,0x95,0x95,0x17,0x46,0xb5,0x6a, +0x37,0x3a,0x10,0x4c,0x91,0xd3,0x6e,0x12,0x2b,0x0b,0x91,0x7b, +0xbb,0xf8,0xd4,0x07,0x35,0x87,0xab,0xe5,0x41,0x7c,0x91,0x5d, +0xa5,0xa2,0xce,0xc5,0xd3,0xdb,0xd1,0xdf,0x26,0xa8,0xc4,0x8e, +0x1f,0xac,0xe8,0xa8,0x69,0xac,0x6f,0x72,0xed,0xf0,0xee,0x0d, +0x28,0xeb,0xe2,0x6d,0x4b,0x9d,0x2a,0x3d,0x6a,0xd5,0x7d,0x95, +0x63,0xb9,0x37,0xb8,0xc9,0xe2,0xed,0x04,0x3c,0xa9,0x8b,0xf1, +0x64,0x66,0xff,0xf5,0xae,0x70,0x87,0xa0,0x19,0xd3,0xac,0x6e, +0xe8,0x2d,0xeb,0xa2,0xad,0x99,0xc9,0xd2,0x6e,0x59,0x94,0x56, +0x6c,0x9c,0xc7,0xbb,0xae,0xd2,0x5d,0xbb,0xfe,0x40,0xab,0xbd, +0x04,0xaf,0x30,0x0f,0x5c,0x59,0x17,0x5c,0xb9,0x74,0x13,0xee, +0x3a,0x54,0x69,0xc6,0x83,0xf9,0x47,0x30,0x03,0xa6,0x35,0xc1, +0x01,0x0e,0xd2,0x18,0xf1,0x13,0x78,0x8d,0xb8,0x1f,0x73,0x8b, +0x72,0x8d,0xe6,0xe0,0xd8,0x8f,0xc3,0xcb,0x41,0xdf,0x18,0xf5, +0xf1,0x15,0x33,0x78,0x05,0x93,0x59,0x79,0x94,0x3c,0xc6,0x51, +0xca,0x14,0x6d,0xc9,0x68,0xcd,0x6c,0xcd,0xe6,0xb0,0x96,0x02, +0xfe,0x5c,0x43,0x8d,0x2f,0xfe,0x99,0x73,0xd3,0xcb,0xb6,0xe4, +0x34,0xe7,0x35,0xe7,0x73,0xc2,0x0a,0xf8,0x95,0x04,0x3b,0xba, +0xda,0x39,0x3b,0x73,0x18,0xca,0xb4,0x36,0x35,0xb6,0xd5,0x76, +0x73,0x9b,0xf1,0x28,0x81,0x9d,0x3b,0x19,0xe5,0x69,0xf7,0x93, +0x9e,0xda,0xb8,0x99,0x81,0x80,0x79,0xe7,0x55,0xe7,0x1a,0x9a, +0xb4,0x1e,0x50,0x46,0xac,0xcf,0x36,0xe1,0x53,0x42,0xed,0xa8, +0x4f,0x5c,0x7a,0x95,0x0e,0x58,0x19,0xa2,0x1b,0x6b,0x59,0x16, +0x30,0xaa,0x0d,0x84,0x82,0xbf,0x9c,0x4e,0x1d,0x58,0xc4,0x5a, +0xe6,0x6a,0xcc,0xfe,0x4b,0x73,0x62,0x0b,0x99,0xb4,0xb8,0xc8, +0x40,0xe5,0x39,0xc8,0xcc,0x01,0xc3,0x5a,0x9f,0x7e,0x1e,0x8f, +0x78,0x62,0x42,0x14,0x3e,0x3a,0xcd,0x61,0x27,0x8b,0xa5,0x61, +0x48,0x69,0xb3,0x86,0x76,0x8f,0xec,0x0b,0x98,0x5f,0x04,0xef, +0x9c,0x85,0x12,0xcd,0x09,0x0b,0xc6,0x08,0x16,0x93,0xf5,0x93, +0x9a,0x5f,0xb2,0x2a,0x4c,0x24,0x36,0x90,0x68,0xcf,0x06,0x60, +0xac,0x2d,0x44,0xb1,0xa7,0x83,0x3f,0x08,0x3b,0x15,0xbe,0xe5, +0xd8,0xa6,0xd8,0x35,0xc7,0xd3,0x6c,0xf8,0x4f,0x52,0x3e,0xc9, +0xfa,0x38,0xd7,0xd7,0xc8,0xd4,0x7d,0xa9,0x47,0xb9,0x35,0x0f, +0xd6,0x37,0x07,0xbe,0x04,0x57,0x2d,0x58,0x63,0x62,0xc4,0xd2, +0xe6,0x2e,0x22,0x9f,0x43,0x62,0x2f,0x26,0x7e,0x0a,0x29,0x7d, +0x98,0x72,0xd1,0x58,0xcc,0x18,0xa3,0x3d,0x39,0xaf,0x8f,0x7a, +0xc1,0x6c,0x21,0x98,0x24,0xe6,0x26,0x9c,0x89,0x8b,0x8b,0x95, +0x42,0xe2,0x5e,0xf9,0x63,0xe0,0xed,0xbf,0xa3,0x3e,0x5e,0xfa, +0x5b,0x6e,0xf4,0x75,0x37,0x5c,0xb2,0x73,0x4a,0x6e,0x74,0xfc, +0xe7,0x92,0x5f,0xce,0x7f,0x49,0x1d,0x5e,0xd6,0x94,0x88,0xe7, +0x14,0xb0,0xef,0xc6,0x79,0xaa,0x16,0x0d,0xd8,0x45,0xf1,0xbc, +0x57,0xbb,0x63,0xb7,0xa2,0x91,0x72,0xb9,0x76,0xd7,0x16,0xfb, +0x06,0x5b,0x0e,0x92,0xc4,0x55,0x04,0x8f,0x0e,0xc1,0x51,0xd0, +0x44,0xad,0x75,0x6c,0xa6,0x4c,0xe3,0x53,0xa6,0x21,0x2f,0xb7, +0x5d,0x47,0xf0,0xc7,0x2d,0xec,0xf1,0x94,0x04,0xfa,0xba,0xd4, +0x74,0xb5,0xbb,0xa3,0x87,0xeb,0x10,0x57,0xda,0xc0,0x23,0xd6, +0xd9,0xdd,0xca,0xdd,0xce,0xcf,0xbd,0xcc,0xad,0xc4,0xab,0xc0, +0xdd,0x8d,0x6f,0x0e,0xe9,0xf0,0x56,0x7b,0x73,0x78,0x50,0x6c, +0x1d,0x02,0x33,0x06,0xcf,0xc2,0x5d,0xd2,0xe4,0xd5,0x6e,0xad, +0x72,0x68,0x6c,0xe4,0xbd,0xd5,0x8a,0x1e,0x67,0x95,0x14,0xe0, +0xbd,0x86,0xe0,0xdc,0x5f,0x61,0x2e,0x33,0xf4,0x0e,0xf9,0x15, +0x34,0xdf,0x61,0xf1,0xba,0x2d,0x81,0xb9,0x8b,0x70,0x2e,0x03, +0x87,0x7f,0x27,0xa0,0xb9,0x08,0x35,0x19,0xea,0xb3,0x9b,0x09, +0x6a,0x9b,0x5f,0x94,0x42,0x4c,0xb6,0xe2,0x3c,0xeb,0xfb,0x14, +0xd5,0xe0,0x1b,0x32,0xdb,0x9d,0x2e,0xda,0x15,0xe6,0x77,0x5a, +0x7a,0x86,0x92,0x1e,0x51,0x4a,0xb9,0x39,0xe9,0xe6,0x41,0x49, +0x4e,0xf9,0x01,0x93,0x31,0xa4,0x31,0x7b,0x22,0x50,0xf0,0x25, +0x9f,0xdd,0x1a,0x79,0x50,0xf5,0x19,0xed,0x9c,0x9d,0x92,0x0c, +0x74,0x65,0x5a,0x25,0x45,0x5c,0x1e,0x2b,0xf6,0x2f,0x5f,0xbb, +0xa7,0xc1,0x9e,0xaf,0x2d,0xaf,0xa9,0xa9,0xac,0xad,0xb7,0x6d, +0xa5,0x34,0xf6,0xa8,0xdd,0x4e,0xf9,0x7a,0xe7,0x2a,0x0b,0xfe, +0xbb,0xf6,0xc7,0x3d,0xb7,0x06,0xee,0x9a,0x3e,0xb1,0xf9,0x5a, +0x51,0x35,0xc8,0x6f,0x6a,0xd9,0xd1,0x71,0xb0,0x8f,0x13,0x3d, +0x8f,0x93,0x44,0x78,0x0d,0xe6,0x0f,0xe3,0x7c,0x30,0x32,0xa6, +0xcc,0x69,0x95,0x19,0x75,0xb6,0x31,0x38,0xc7,0x01,0x17,0xbe, +0x83,0x9a,0xad,0x32,0xfe,0xa1,0x24,0x1d,0x93,0xf2,0x3d,0x6d, +0xe1,0xea,0x31,0x21,0xe5,0x9f,0x99,0xbc,0xbf,0xe0,0x21,0x75, +0xf3,0x52,0xd8,0x9b,0x90,0x7b,0x3c,0x29,0x26,0x56,0x13,0xaa, +0xe1,0x30,0x49,0xcd,0xa0,0xaf,0x4c,0x0e,0xce,0x33,0x41,0xc6, +0x32,0x83,0xfd,0xc6,0x56,0xed,0x8a,0x1e,0xb7,0x01,0x2e,0x59, +0x9c,0x4b,0xc6,0xbc,0x1e,0x59,0x8f,0x3a,0x34,0x75,0xf1,0x26, +0x6d,0xdb,0x7a,0x8c,0x6a,0x39,0x5c,0x22,0x2e,0x26,0xb0,0xac, +0x1e,0x6c,0x6e,0xc1,0x4b,0x37,0x82,0x47,0x78,0x9c,0x7f,0x00, +0xb7,0x1d,0xc5,0xad,0xee,0x14,0x55,0xba,0x48,0x0a,0x45,0x6c, +0xed,0xad,0xee,0x86,0x47,0x1c,0x24,0x52,0x54,0x79,0x9c,0xc9, +0xae,0xc9,0xac,0x4d,0xaf,0x31,0xa1,0xa8,0xd2,0x3b,0x8e,0x0e, +0x2a,0x0e,0x75,0x29,0xaa,0xdc,0xc9,0x78,0x5b,0x99,0x79,0xac, +0x0d,0xe4,0xf0,0x75,0x58,0x4b,0x28,0xb8,0x39,0x1f,0x13,0x17, +0x15,0x4d,0x7b,0x0b,0x07,0x3a,0xa3,0xa8,0x03,0x3b,0x98,0x9e, +0xec,0xae,0xfc,0xa6,0x22,0x9f,0x1e,0x7e,0x8b,0x03,0xce,0x73, +0x7f,0x3b,0x2a,0xc7,0x82,0x6f,0x4f,0xe9,0x4b,0xef,0xcd,0x94, +0xb0,0xd3,0x2e,0x13,0xd8,0x44,0xb1,0xd3,0x74,0x7b,0x9c,0x8e, +0x33,0xf0,0x8d,0x26,0x6b,0xfe,0xd9,0x6f,0x0d,0x8f,0x93,0x1f, +0xd3,0x1b,0xb5,0x1b,0xfe,0x37,0x76,0xfa,0x16,0x77,0x74,0x34, +0x6a,0xc0,0x07,0x52,0xe5,0x77,0x0e,0x97,0x49,0xda,0x5d,0x0e, +0xc8,0x11,0x90,0x12,0x10,0x39,0x16,0xc1,0x9a,0xde,0xc6,0x14, +0x02,0x4d,0xa0,0x08,0x54,0x93,0x01,0xd3,0x7f,0x23,0xd0,0x95, +0x14,0x81,0x5a,0x49,0x08,0xf4,0x6d,0x23,0x7c,0x1b,0xbf,0x31, +0x87,0x6f,0xd0,0xf6,0x22,0x45,0xa0,0x0b,0x25,0x04,0x3a,0x30, +0xa1,0x4b,0xac,0xfa,0x77,0x8f,0x19,0x49,0x08,0xf4,0xa2,0xf2, +0xbe,0xd1,0x80,0x15,0x77,0x03,0xb6,0x10,0x73,0xe1,0xaf,0x21, +0x56,0x1c,0xc4,0x5b,0x44,0x38,0x01,0xb6,0xe2,0x09,0xa9,0x8b, +0xd8,0x13,0xab,0xbe,0x6d,0x97,0x8c,0x1b,0xdd,0x24,0x0c,0xfa, +0xc0,0x68,0xd8,0x82,0x03,0xb7,0x5f,0xc9,0xd7,0xc2,0xcb,0x6b, +0xd8,0x9f,0x44,0x33,0x02,0x9f,0x89,0x0f,0xf0,0x33,0x16,0xd2, +0xc1,0x8c,0xa0,0xcd,0xe7,0x60,0xc3,0x8c,0x6e,0xa4,0x03,0xcb, +0x71,0x23,0x2b,0xbe,0x8b,0xe5,0xff,0xaf,0xa5,0xa9,0xff,0x13, +0xb0,0x4e,0x95,0xa6,0x16,0xa7,0x41,0x08,0x59,0x83,0x36,0x5f, +0xb3,0x90,0x3a,0x0f,0x1c,0xa9,0x43,0xa4,0x18,0x41,0x84,0x17, +0x88,0x77,0xbd,0x77,0xad,0x77,0x75,0x1f,0x70,0x15,0xa0,0x99, +0x09,0x9b,0xb8,0x36,0x5c,0xcd,0x66,0x5e,0x49,0xbb,0x98,0x32, +0x64,0x94,0xcc,0x27,0x5a,0xc6,0x1f,0x8d,0x3d,0xc4,0x2d,0x34, +0xfe,0x96,0x09,0x5d,0x1c,0xb0,0xd0,0x6f,0x5b,0x8f,0xb2,0x53, +0xd9,0xee,0xe4,0xb2,0xdb,0xf2,0xc0,0xfe,0x23,0x4d,0x36,0xfc, +0xed,0xeb,0x43,0x77,0xd4,0x9f,0x54,0xfa,0x57,0xfa,0x56,0x78, +0x71,0x13,0x73,0xdf,0x23,0x7a,0x45,0x07,0xaa,0x8f,0x36,0x5e, +0xed,0x1d,0xb8,0x58,0x77,0x9d,0xfe,0xd4,0x3f,0xd8,0xd4,0x9a, +0x54,0x55,0x72,0x1d,0x27,0xcc,0x1f,0x10,0x5f,0x95,0xe6,0x12, +0x6b,0xcf,0x52,0x4c,0xf7,0x7b,0xbf,0x98,0xc4,0x34,0x0e,0x56, +0x8d,0xe7,0x0c,0xc0,0xe2,0x24,0x58,0x93,0x09,0x2f,0x95,0x07, +0xf6,0xf1,0xc8,0x05,0xe3,0x9a,0x58,0xdc,0x7e,0x3a,0xe2,0x90, +0xa7,0xae,0xd2,0x5a,0xed,0xc9,0x47,0x58,0xc1,0x6b,0xcc,0x19, +0x8f,0xd3,0x5e,0xa7,0xe8,0xc0,0x5c,0x64,0x09,0x0b,0x18,0x2f, +0x3c,0xb8,0x0b,0x5f,0xc1,0x39,0xf8,0x42,0x93,0x9c,0xff,0xea, +0xd3,0x6b,0x4f,0x3b,0xfe,0x68,0xb0,0xee,0x96,0x0f,0x39,0x1d, +0x52,0xee,0xf4,0x7d,0x3f,0xb4,0xd8,0x9a,0xff,0xba,0xe4,0x8b, +0x86,0x8f,0xba,0x6e,0x2b,0x3e,0x71,0x7b,0x14,0xc0,0xe1,0xec, +0x89,0x61,0x52,0xa3,0xa8,0x33,0x2e,0xb1,0xee,0x29,0xe7,0x43, +0x7a,0x5c,0xc7,0xbc,0xda,0x68,0x2f,0xc5,0x77,0x48,0xbc,0x3a, +0xbc,0x37,0xbc,0xde,0x32,0x9a,0x2f,0x50,0xe6,0xdb,0x66,0x38, +0x70,0x62,0x1d,0xe6,0x91,0xd2,0x87,0xc5,0x5f,0x17,0x7c,0xc3, +0xfd,0xc9,0xc4,0xe1,0xbc,0x10,0xe4,0x1c,0x16,0x79,0x55,0x79, +0x55,0x78,0x95,0x73,0x13,0x76,0x8b,0x88,0xa7,0xa5,0x42,0x6e, +0xee,0x62,0xda,0x6c,0xdd,0xe9,0xdc,0xcf,0xcd,0xfe,0x64,0x8a, +0xc8,0xe7,0x4a,0xeb,0xe3,0x38,0x48,0x60,0x00,0x8f,0xdb,0x82, +0x11,0xe6,0xd6,0xb0,0x3e,0x86,0x7b,0xec,0x70,0xad,0x42,0x8a, +0x3e,0x79,0xb7,0xed,0x97,0xd1,0x7c,0x29,0x6f,0x34,0x6f,0x0b, +0xbc,0x64,0x0c,0xef,0xd9,0x16,0x0f,0xf2,0xb8,0xbd,0x73,0xf5, +0xa0,0xff,0x75,0x0e,0x4e,0x52,0x0a,0xf9,0x15,0x9e,0xb3,0x05, +0x2b,0x6c,0x63,0x8d,0x41,0x45,0x5c,0xdd,0xcd,0x3d,0x4d,0x02, +0xcb,0x9d,0xf8,0x91,0x8a,0xb1,0xba,0x96,0x16,0x0e,0xaf,0xd4, +0x10,0x0f,0xa5,0x85,0x9b,0x79,0x00,0xdd,0x37,0x54,0x31,0xd4, +0xd4,0xa2,0xe6,0xc4,0x2c,0x7b,0x62,0x0a,0x0f,0x46,0x58,0xf8, +0x14,0x77,0x90,0x4b,0x15,0x23,0xf5,0x1d,0xed,0x3e,0x0d,0xbc, +0xc2,0xc5,0xd4,0xd5,0x38,0x98,0xc3,0x37,0x1e,0x13,0x7b,0xb9, +0xb9,0xb3,0xbe,0x6f,0x85,0x9c,0xbf,0x5c,0x3b,0xde,0xd2,0xd9, +0xcb,0x89,0x71,0x86,0xf4,0x3a,0x53,0x87,0x59,0x34,0x9b,0x39, +0x84,0xa9,0xe6,0xac,0xf0,0x55,0x39,0x39,0xa8,0xbf,0xd6,0x01, +0x67,0xf8,0x15,0xda,0xf3,0x30,0xa3,0xe6,0xa7,0xce,0xbb,0xd7, +0xb8,0x6b,0xae,0x64,0xd5,0x3a,0x9c,0x69,0x85,0xeb,0x9d,0x29, +0xc4,0x81,0xd5,0x2d,0x30,0x77,0xe4,0xa7,0x1f,0xb8,0xc9,0xcd, +0x78,0x8f,0x0c,0x82,0x1c,0xca,0x30,0x5d,0xaa,0x6b,0xf0,0xe7, +0x07,0x04,0x94,0x6a,0xd8,0xf8,0x19,0xa5,0xf0,0xb3,0x9c,0x9b, +0x78,0x94,0xaa,0x56,0xac,0xde,0x83,0x72,0x27,0x0a,0x78,0x21, +0x98,0xe0,0x26,0x3a,0x94,0x36,0xb1,0xb3,0x85,0xf1,0x89,0x47, +0xe4,0xc0,0x1e,0x8a,0x16,0x2f,0x30,0x98,0x14,0x85,0x3b,0x4d, +0x91,0xd3,0xee,0xb5,0xd2,0xb8,0x0e,0x6f,0xe5,0x80,0x35,0xa4, +0x68,0x81,0xed,0x84,0x6a,0x50,0x5c,0xc0,0x66,0x4d,0x2e,0x22, +0xb8,0xee,0x63,0xd0,0x84,0x56,0xd4,0xbc,0x03,0x5b,0x7b,0x71, +0xeb,0x6d,0x33,0x3d,0xdc,0x64,0x03,0x9b,0x74,0x71,0x1e,0xb6, +0xc2,0xbc,0x9d,0xb8,0x4f,0xaa,0xc8,0xba,0x70,0x18,0x16,0xc2, +0x3a,0x66,0x48,0x78,0x8b,0xe0,0xd9,0x63,0xc8,0x6f,0xc7,0xe9, +0xda,0x9d,0x0a,0x8d,0x2f,0x60,0x6e,0x21,0x2c,0x87,0x1c,0x2d, +0x78,0x03,0xf6,0x89,0xcf,0xf1,0x4d,0x36,0xd3,0x42,0x03,0xe6, +0x30,0xea,0xfc,0x02,0xb5,0xce,0xc4,0x5c,0xec,0x60,0x21,0x14, +0xd3,0x89,0x5b,0xb3,0xad,0xda,0xa9,0xd2,0x4d,0xc9,0xab,0x7d, +0xbb,0x1d,0x54,0x2e,0x1c,0xde,0x2b,0x20,0xa8,0xbc,0x03,0x4a, +0x06,0x67,0xcd,0xdc,0x8b,0xca,0x8f,0x58,0xe1,0x32,0x85,0xc6, +0xae,0x6a,0xbb,0x0e,0xc7,0x2a,0x77,0x25,0xdf,0xea,0xdb,0x6d, +0x57,0xe7,0x44,0x79,0x43,0xa2,0xe0,0x29,0xad,0x7d,0x5e,0xd8, +0xc5,0xa4,0x5b,0x69,0x5c,0x62,0x5a,0xf2,0xf2,0x5a,0x75,0xe0, +0x43,0x58,0x32,0x80,0xb3,0xe1,0xcd,0x5f,0xfa,0x96,0xc0,0x1c, +0x73,0xbc,0xb2,0x1f,0x32,0x2d,0x31,0xd3,0x84,0xa5,0xae,0x96, +0xc8,0xdb,0x2c,0x3a,0x2d,0xea,0x3d,0x15,0xfc,0xb0,0xb2,0xd3, +0xa9,0xdb,0x9e,0x13,0xd6,0x06,0x10,0x31,0x1b,0xc6,0x85,0x6c, +0x7c,0x97,0xcd,0x6c,0x4c,0xaf,0x97,0x26,0xfc,0x17,0x0f,0xe2, +0x2f,0x16,0xb0,0x92,0x39,0xee,0x11,0xef,0x1e,0xeb,0xca,0x89, +0x69,0x78,0x80,0x38,0x74,0x18,0xf5,0x9b,0x35,0xbb,0x2b,0xf8, +0x41,0x97,0x61,0x59,0xa7,0x1d,0x27,0x7c,0x70,0x93,0xfc,0x04, +0xf2,0x65,0x2c,0xca,0x71,0x35,0xf9,0x05,0xe4,0x4b,0x58,0x51, +0xc0,0x77,0x49,0xf3,0xed,0xf2,0x27,0x99,0xf7,0xad,0x32,0xf9, +0xd8,0x7d,0x21,0x3b,0x5d,0xf4,0x39,0xb8,0x0d,0x3b,0x89,0x3b, +0x7a,0xe3,0x5c,0x7c,0x03,0x0f,0x1e,0x91,0xdc,0xb1,0xe9,0x1d, +0xea,0x6e,0x97,0x35,0x43,0x08,0x27,0xee,0x3c,0x42,0x7c,0x51, +0xc3,0x19,0x67,0x19,0x2c,0xeb,0x76,0xe5,0xaf,0xc1,0x0b,0x9d, +0xb0,0xa0,0xf4,0x37,0x4e,0x70,0xc2,0x17,0x08,0x4c,0xa7,0xe8, +0x72,0x3a,0x8b,0x17,0x31,0x85,0x5c,0x53,0xf7,0xf5,0x76,0x5c, +0x92,0xd7,0xf2,0xee,0x16,0xd6,0x32,0x7d,0x25,0x07,0x59,0x7f, +0x90,0x56,0xc7,0x76,0x8b,0x7a,0x2b,0x75,0x1d,0xef,0x36,0xe8, +0xd0,0xef,0xd8,0x42,0x5b,0x63,0x25,0x78,0x90,0x5c,0x73,0x8d, +0x47,0x4c,0x5b,0x7e,0x61,0x8b,0x0e,0xb5,0x4c,0x3b,0x86,0x70, +0x05,0xcc,0x9f,0x92,0x64,0x85,0x97,0xcc,0x70,0xe4,0x3d,0x48, +0x35,0xc3,0xd4,0xed,0xe6,0xe0,0x8c,0x39,0x2c,0xe4,0x09,0xfb, +0xa4,0xd9,0x72,0x6d,0xa1,0x00,0xed,0xd8,0x9c,0x7f,0xce,0x96, +0xcb,0x86,0x44,0x27,0x73,0x70,0x64,0xe2,0x3d,0x63,0xa5,0xd9, +0xf2,0xdd,0x53,0xb3,0xe5,0x2a,0x69,0xb6,0x7c,0x31,0xaa,0x7e, +0x63,0xc5,0xbd,0xc7,0x48,0xf8,0x41,0xf7,0x0d,0xb6,0x47,0xba, +0x3c,0xf8,0xbe,0x7b,0xcd,0xdf,0xe5,0x5d,0xe3,0x20,0x22,0x99, +0xd8,0xa2,0xf2,0x6d,0xd4,0xc1,0x80,0x75,0xd2,0x0d,0x86,0x7d, +0x49,0x1f,0xf7,0xd6,0x2e,0x08,0xe4,0xbe,0x45,0x0d,0x69,0x6d, +0xf9,0x05,0x54,0x31,0xd4,0x26,0x9c,0x27,0x9f,0x34,0x8d,0xff, +0x3d,0xbd,0x2e,0xb7,0x31,0x50,0xe8,0x7a,0x72,0xf0,0x99,0x34, +0xbd,0x7e,0xef,0xef,0xe9,0x75,0xab,0x4e,0xdd,0xa9,0xe9,0x75, +0x10,0x26,0x5e,0x25,0xb7,0xa1,0x54,0x6f,0xfc,0x36,0x64,0x0f, +0x61,0xf6,0x5d,0xc3,0x7d,0x58,0x7a,0xd7,0x68,0x1f,0x9e,0x36, +0x87,0xd3,0x7a,0xac,0x10,0x29,0x86,0x92,0xde,0xc7,0x95,0xdf, +0x65,0xc3,0xab,0xdc,0xe5,0x7e,0x4c,0x63,0xd2,0xeb,0x25,0x39, +0x7e,0x8b,0x0b,0x7c,0xd4,0x2a,0x17,0x9c,0x79,0x68,0x0d,0x07, +0xd3,0xfc,0xd8,0xf6,0xda,0x80,0x0e,0xf9,0x88,0x7d,0x97,0xa6, +0xdc,0xb3,0x5b,0xd6,0x64,0x55,0x66,0xa7,0x89,0x3b,0xc0,0xc0, +0x04,0x0d,0xf0,0x00,0xd3,0xd3,0xd5,0x36,0x50,0x36,0x60,0x57, +0xc9,0xfb,0x98,0x2b,0x6d,0x65,0x8e,0x8d,0x6e,0xfc,0x71,0xf1, +0xc3,0x51,0xc1,0x0a,0x16,0x8a,0xba,0x83,0x82,0x2e,0x2c,0x13, +0x5f,0x5f,0xcc,0xe4,0x5b,0x68,0x3c,0x65,0x54,0x39,0x99,0x85, +0x29,0x3a,0xb5,0xb2,0x4f,0xc7,0x2e,0x8d,0x76,0x5d,0xd6,0xec, +0xd4,0x1f,0x33,0xfa,0xc8,0x54,0xd5,0xcb,0xef,0x1d,0x36,0xbe, +0x28,0xbf,0xc2,0xb9,0x0f,0x12,0xc5,0x83,0x80,0x47,0xb1,0x5f, +0x4a,0x7a,0xf7,0xf1,0x2b,0x82,0xb7,0xb9,0xea,0x49,0x09,0x9d, +0xd1,0xe4,0x5c,0xea,0xd9,0xb4,0x74,0x2d,0x18,0x64,0x6b,0x3d, +0x4a,0xaa,0x8b,0xeb,0x0b,0x9a,0x35,0xf3,0xf6,0x56,0xee,0x6d, +0xd3,0x93,0x1f,0x32,0x30,0xd9,0x6e,0xc1,0x1d,0x80,0xf9,0xe4, +0xd8,0x9d,0x80,0xbb,0x81,0x97,0xec,0xa2,0xf8,0xb2,0x23,0xc5, +0x7a,0xf9,0x7b,0x39,0x74,0x0d,0x27,0xc5,0xb7,0xf2,0xbe,0x4c, +0xbb,0x63,0x9d,0xc6,0x1f,0xd7,0x3d,0xb6,0x25,0xe8,0x00,0x37, +0x7b,0xa2,0x5c,0xa8,0x24,0xea,0xae,0xea,0xe1,0xc2,0x3b,0xdc, +0xcd,0x5e,0x2c,0x65,0x32,0xcb,0xd2,0xcb,0xd2,0xca,0x64,0x19, +0xbc,0xcf,0x66,0x7b,0xbd,0xc3,0x06,0x0d,0x4a,0xbe,0xb4,0xb8, +0xb0,0x24,0xbf,0xb4,0xd8,0xb6,0xc6,0xa9,0xc9,0x55,0xee,0x66, +0xea,0xab,0x1b,0x58,0x26,0xe3,0x3f,0xae,0xba,0xac,0xea,0x55, +0x0f,0x38,0x5d,0x75,0xbf,0xef,0x55,0xde,0xcd,0xeb,0x55,0x19, +0xd6,0xca,0x1a,0x38,0xd1,0x59,0x4a,0x4a,0x4d,0xa4,0x10,0x4c, +0xb6,0x99,0xcd,0x74,0xd4,0xb8,0xca,0x74,0x65,0xe7,0xd3,0x11, +0x13,0x79,0x8c,0x55,0x55,0x3b,0xb6,0x79,0x54,0xca,0xaa,0x35, +0xbd,0xbc,0xbb,0xbc,0xeb,0x7d,0x9b,0x9c,0x35,0x71,0x0b,0xbc, +0x65,0x86,0x6f,0xe1,0x26,0xa6,0xbb,0x4a,0xdd,0x52,0xd9,0xac, +0xac,0xe0,0xfd,0x5c,0x14,0xce,0x76,0x01,0x35,0x3e,0x7c,0x18, +0x0e,0x0f,0x41,0x0a,0xbc,0x85,0x89,0x8c,0xd0,0x09,0x3d,0xe4, +0x98,0x59,0xa0,0xbd,0x9b,0x8b,0xa2,0xd5,0xab,0x33,0x7c,0x90, +0xc3,0xe1,0x77,0x48,0xa1,0x77,0x9e,0x5b,0xf6,0x54,0x3d,0x83, +0xd6,0x88,0xba,0xb0,0x1a,0x0e,0x0d,0x4e,0x92,0x04,0xfb,0x70, +0xab,0x50,0xc7,0xf6,0x48,0xbe,0xb8,0xbd,0x60,0x34,0xb5,0x83, +0x0b,0x9b,0xdc,0x49,0x06,0x85,0x4e,0x8b,0x71,0x61,0xfb,0xe4, +0x46,0x71,0x3b,0x2b,0x00,0xdc,0x26,0x62,0xe7,0x80,0xd0,0xc9, +0x88,0x9d,0xef,0x10,0xfa,0x8d,0xd8,0xc9,0xd8,0xcc,0x14,0x3a, +0x4d,0xe9,0xe7,0x6c,0xe1,0x9d,0x1f,0x88,0x93,0xda,0xb9,0xd1, +0xa5,0xbe,0x1f,0x34,0xaa,0x81,0xcf,0x84,0x8d,0xd4,0x83,0x6d, +0x61,0x33,0x2f,0x67,0x8c,0xa7,0x0e,0x19,0x26,0xf3,0x27,0x2c, +0xe3,0x8e,0xc6,0x1c,0xe2,0x90,0x31,0xfa,0x85,0x09,0x5e,0xec, +0xff,0xb6,0xcf,0xb6,0x5e,0xd7,0x1e,0xd7,0x6e,0x27,0xa7,0xdd, +0x66,0xfb,0xf7,0x1c,0xa1,0x38,0xe3,0xfe,0xcd,0xb1,0x3b,0x1d, +0x0f,0x1b,0x3d,0x1b,0xdd,0x9b,0x94,0x9c,0x30,0x2a,0x94,0x48, +0xca,0x00,0x8d,0xea,0xda,0xde,0x52,0x89,0x6e,0x7c,0x40,0xe9, +0x46,0x5a,0x51,0x6a,0xb1,0x69,0x1e,0xef,0xb6,0xf2,0xc0,0x7b, +0x5b,0xfe,0x93,0x6e,0x58,0x51,0xba,0xb1,0x09,0xa7,0xed,0xc0, +0xad,0x47,0x24,0x15,0x30,0x83,0x3b,0x30,0xeb,0x87,0x16,0x30, +0xe5,0x20,0x8e,0xc1,0x55,0xc2,0x56,0x12,0xe2,0xe8,0x69,0xa7, +0xa4,0x3c,0xc1,0x8b,0x69,0x69,0xaa,0x6f,0xab,0xee,0xe6,0xc4, +0xa3,0x22,0x47,0xca,0x1e,0x96,0x7c,0x5d,0xf4,0x35,0x07,0x1c, +0x85,0xcd,0xf3,0x82,0x90,0x95,0x2f,0x76,0xaf,0x72,0xaf,0xf0, +0x28,0xe3,0x60,0x52,0x02,0x5a,0x6b,0xb6,0x30,0x6e,0xa7,0x3d, +0x4f,0x79,0x6b,0xe3,0x72,0x06,0x1c,0xe7,0x9d,0xaf,0x39,0x57, +0xd7,0xa0,0xf5,0x88,0xa2,0x51,0x7d,0xb6,0x81,0xd2,0x88,0xc5, +0x8c,0x5f,0x5c,0x5a,0xa5,0x0e,0xd8,0x1a,0xa3,0x17,0x6b,0x55, +0x12,0x38,0xa2,0x0d,0x1a,0x4c,0x67,0xb6,0x54,0xc8,0x6c,0x11, +0x6b,0x4d,0x59,0x84,0x70,0x65,0xe2,0x33,0xb2,0x7f,0xb3,0xf8, +0x22,0x66,0x30,0x98,0x10,0x8e,0xef,0x1d,0xc6,0xd9,0xda,0x23, +0x76,0x1a,0x77,0x41,0xa7,0x00,0xf4,0xa4,0x94,0x24,0xf9,0x44, +0xca,0xb0,0x38,0x9f,0x7a,0x80,0xc9,0x13,0x44,0x96,0x90,0x49, +0x0d,0xc2,0x3b,0xd0,0x0e,0xa7,0xf1,0x3b,0xb6,0xa4,0xb2,0xb0, +0x3a,0xaf,0x86,0x13,0xb6,0x32,0x67,0xf0,0xe5,0x93,0x38,0x2b, +0xce,0x88,0x53,0x9e,0x88,0x88,0xf1,0x58,0xb0,0x8d,0x49,0x37, +0xa7,0x9d,0xfe,0x72,0x4d,0xcd,0x68,0x86,0x4e,0xf6,0xdd,0x64, +0x78,0xf5,0x2c,0xec,0xe3,0x44,0x39,0x93,0x51,0x9a,0x56,0x92, +0x52,0x6a,0x94,0x46,0xf9,0xf8,0x74,0xfd,0x95,0x4b,0xf6,0xd4, +0x59,0xf0,0x4d,0x55,0x2a,0x55,0x35,0xed,0x52,0x6f,0xb0,0xbb, +0x2b,0x03,0x9f,0x68,0x0b,0x87,0x28,0xec,0x2b,0xa0,0x7f,0xf2, +0x32,0x6b,0x96,0xa7,0x81,0x0b,0x59,0xda,0x70,0x49,0x52,0x41, +0xa3,0xb7,0x20,0x92,0x92,0xbb,0x69,0x17,0x88,0x38,0x93,0x39, +0x1a,0x9b,0x75,0x5d,0x07,0x4c,0xa1,0x07,0x9a,0xf1,0x0b,0xb6, +0xb4,0xa1,0xb8,0x29,0xbf,0x99,0x13,0xde,0x66,0x70,0xeb,0xe9, +0x65,0xf1,0x5b,0xb4,0xf7,0x27,0x1c,0x0b,0x31,0x59,0xb0,0x8e, +0xc9,0x31,0xa5,0x36,0xec,0x69,0x53,0xeb,0x4f,0x99,0x3a,0x19, +0xdf,0x26,0xfd,0x0c,0xfe,0x5a,0xe2,0x01,0x26,0xa3,0x3a,0xbd, +0x36,0xad,0xd6,0x24,0x8f,0x77,0xc7,0xd7,0x8c,0x51,0x63,0xfd, +0xaa,0x0e,0x3b,0xbe,0xb0,0xb8,0xa0,0x24,0xaf,0x84,0x13,0xcd, +0x58,0x9c,0x56,0xee,0x03,0xd3,0xb5,0x61,0x92,0xe9,0x9e,0x2a, +0x5e,0xf3,0x32,0x6b,0x9c,0xa7,0x21,0xf6,0x08,0xbd,0xc4,0xb4, +0x4b,0xaf,0xeb,0x40,0x9d,0x97,0x0d,0x7f,0xcb,0xf5,0x8a,0xe3, +0xb8,0x2d,0x87,0xe7,0x71,0x06,0xb9,0xad,0xbc,0x6e,0x7f,0x59, +0x56,0xdf,0xc3,0x9b,0x76,0xed,0xe9,0xd5,0x6b,0xe0,0x84,0x6f, +0x36,0x10,0xdc,0x87,0xf1,0xb0,0x8f,0xc5,0x27,0xe2,0x0d,0x72, +0xff,0xf7,0x71,0xe0,0xeb,0xff,0x29,0x96,0x6a,0x89,0xdc,0xde, +0x77,0xa9,0x59,0xfa,0x6b,0x42,0x87,0x5c,0x81,0xc2,0xa3,0xe3, +0x57,0x20,0x77,0x08,0x73,0xaf,0x18,0x1e,0xc5,0x42,0xe9,0xed, +0x8c,0x39,0x9c,0x39,0xca,0x4e,0xbc,0x8b,0x01,0x64,0x63,0xfa, +0xba,0xcc,0x2d,0x25,0x23,0x15,0x7d,0x75,0x5d,0xed,0x5c,0x3b, +0x5e,0x63,0x33,0xb3,0x32,0xb2,0xd2,0xb3,0xe4,0x45,0xbc,0xad, +0xe1,0x56,0xc3,0xa5,0xae,0xa5,0x0a,0xbe,0xa7,0xa0,0xbd,0xb4, +0xa9,0xac,0xd6,0xaf,0x21,0xa8,0x25,0x6c,0x57,0xc8,0xba,0xa8, +0xb7,0xe3,0xb2,0xa8,0x47,0x9f,0x9f,0xfb,0x67,0xc1,0x73,0xd5, +0x8f,0x6e,0x30,0x23,0xf2,0x8f,0x18,0x6e,0xf2,0x19,0x84,0x92, +0x41,0xbf,0x6b,0x0a,0xb5,0x5b,0x75,0x3b,0xaf,0x68,0x3a,0xda, +0x61,0x45,0x41,0xce,0xfc,0x3d,0xc4,0xc9,0xcb,0x36,0xd0,0x2c, +0x54,0x56,0x20,0x2f,0x73,0xaa,0x93,0x84,0xac,0x5f,0x27,0xfd, +0x81,0x77,0xed,0xba,0x5d,0x6a,0x3a,0x79,0x9b,0x16,0xdd,0x0e, +0x9b,0x72,0x4e,0xb8,0x24,0xae,0x26,0xa0,0xee,0x41,0xf5,0x65, +0x48,0xec,0xc2,0xc4,0x8b,0x50,0xd0,0x83,0x05,0xa3,0x26,0x26, +0x78,0x41,0x06,0x17,0x8c,0x30,0xdc,0x0e,0xc2,0xf5,0xa5,0x38, +0xd5,0xca,0xa3,0xa3,0x0c,0xca,0x82,0x08,0xce,0xde,0xa2,0x86, +0xe9,0x3a,0x14,0xa3,0x9a,0x5b,0x01,0xbf,0x83,0xdd,0x66,0xef, +0xb1,0x4c,0xa1,0x5d,0x6e,0xf6,0x43,0x67,0x6b,0x7d,0xca,0xa7, +0x14,0xa7,0x6e,0xc8,0x18,0x37,0x82,0xf7,0x17,0x08,0x89,0x53, +0x34,0x08,0x9e,0x82,0x92,0xc4,0x66,0xc6,0x9d,0x8b,0x8b,0x39, +0x9e,0xc0,0x9f,0x4c,0x4a,0x2d,0xbb,0x50,0x9b,0xd4,0xac,0x59, +0xeb,0xd3,0x38,0x5c,0x36,0x98,0xde,0xa8,0x79,0x2e,0x35,0xf9, +0x4c,0x52,0xe2,0x10,0xf2,0x7c,0x53,0x85,0x39,0xbc,0x91,0x98, +0x1d,0x9f,0x14,0x77,0x5c,0x33,0xe1,0xc4,0xa9,0x24,0x8d,0x94, +0xaa,0x0b,0xad,0xbd,0x5a,0x63,0x36,0xc6,0xec,0xfa,0x58,0x03, +0xfd,0xa5,0xda,0x67,0x53,0x3f,0x4c,0x4d,0xd3,0x82,0x2f,0xc0, +0x74,0x00,0x4d,0x61,0x9a,0x29,0x4e,0x43,0x7b,0x4b,0xb0,0xa7, +0x3d,0x03,0x97,0x1d,0x58,0x82,0x3a,0x8b,0xb4,0x1b,0x6d,0x7e, +0xfc,0xe8,0xda,0x33,0xd5,0x5d,0xcd,0x24,0xfa,0xab,0xe7,0x4f, +0xc2,0xbb,0xb8,0x89,0x57,0x77,0x68,0x8c,0x09,0x8f,0xa4,0x58, +0xc4,0x57,0x84,0x42,0x34,0xa5,0x8e,0x2b,0xa3,0x21,0x8d,0x3a, +0x2e,0x93,0x41,0xd1,0xd0,0x02,0xac,0xa6,0x62,0x11,0x8f,0x51, +0xa7,0xdd,0x19,0x4e,0x8c,0xd9,0x25,0x21,0x7b,0x8d,0x56,0x69, +0x37,0xb8,0x76,0xdc,0x29,0x1a,0x4a,0x29,0xd1,0x3c,0x97,0x46, +0x2f,0xee,0xc4,0x08,0x6a,0xf3,0x8d,0x55,0xe6,0xa0,0x99,0x98, +0x13,0x7f,0x2e,0x2e,0x41,0x33,0xe1,0xf8,0xc9,0x24,0x8d,0xd4, +0xda,0x0b,0xea,0x61,0xad,0x31,0x56,0xd8,0x8b,0x5a,0xd4,0xb1, +0xe7,0x2f,0x9b,0xf2,0x78,0xf9,0xbf,0x4d,0xad,0x0f,0xe7,0x53, +0xa6,0x92,0x3f,0x35,0xf9,0x4d,0x06,0x3c,0x6e,0x59,0xf6,0xc8, +0x1a,0xdb,0x79,0x59,0xe7,0xa1,0x1e,0x8b,0x7a,0x49,0xb0,0x40, +0x8f,0x7c,0xd4,0x3c,0xda,0xdd,0x3d,0x28,0xaf,0xe3,0x1d,0x65, +0xc6,0xf2,0x83,0x1e,0xdc,0xec,0x27,0x52,0xce,0x9d,0x4a,0xd8, +0xb6,0x8f,0xc9,0x53,0xe5,0xb5,0x66,0x48,0x39,0x77,0x4b,0xd8, +0x94,0x92,0x0b,0xa5,0xc9,0xa5,0x56,0x29,0x7c,0xd8,0x32,0xa7, +0x55,0x86,0x3b,0xa9,0xd7,0x39,0x9f,0x4c,0x5f,0x17,0xb8,0xbf, +0x66,0xfe,0x4c,0x8c,0x9a,0xf5,0x87,0xec,0x2f,0x71,0x98,0x60, +0x0d,0x1e,0x4c,0x9b,0xc9,0xb8,0xd9,0x45,0x17,0xa9,0x44,0xd6, +0x7e,0xe2,0x6a,0xe6,0x60,0x6f,0xa2,0xac,0xb1,0xe3,0x2f,0xb6, +0xf5,0xf4,0x34,0x5d,0xe1,0xb0,0xd8,0x83,0xc4,0xfb,0x1e,0x73, +0x0e,0x73,0x97,0xc4,0x70,0x0b,0x6a,0xf3,0xea,0xb3,0x1b,0xb9, +0x09,0x2f,0xd1,0x55,0x8a,0xb8,0xde,0x30,0xf6,0xa8,0x1d,0x6f, +0x2b,0x3e,0x33,0xc6,0x35,0xf8,0x10,0x9e,0x1a,0x88,0x9c,0xb5, +0xc0,0xe1,0x5a,0x5c,0xc1,0xe6,0xda,0x68,0xc0,0x7c,0xa6,0x23, +0xfb,0xef,0xc4,0x32,0xbe,0x0f,0xf9,0x4b,0x2c,0x12,0x81,0x27, +0xc6,0x26,0x63,0xac,0xf8,0x21,0xba,0x50,0x6e,0x7c,0x1d,0x35, +0xd9,0xce,0x79,0xa0,0x79,0x93,0x7e,0x42,0xd9,0xef,0x24,0x51, +0xe6,0x1d,0x69,0x11,0x59,0xe0,0xc4,0x3f,0x28,0x6c,0x68,0x4a, +0xb9,0xc6,0x8d,0xd9,0x30,0xee,0xb9,0xd1,0x2d,0xda,0x3f,0xd8, +0xe2,0xa4,0x94,0x6b,0x56,0x69,0xf4,0x77,0xae,0x59,0xdb,0x1f, +0x46,0xec,0xa4,0x02,0x63,0x09,0x2c,0xbe,0x8e,0x8b,0xa5,0x9f, +0x58,0x7c,0x93,0x7e,0x0a,0xd5,0x7f,0x10,0x2b,0x9c,0xec,0x67, +0xf1,0x00,0x9a,0x90,0x5c,0xe7,0x5c,0xfb,0x4c,0x59,0x6b,0x2e, +0x1f,0xdd,0x13,0xd9,0x11,0x29,0xd5,0x2f,0xc4,0xd3,0x44,0x75, +0xa5,0xf4,0x71,0xfa,0x27,0xf2,0x74,0x3e,0x4e,0x2f,0x74,0x9f, +0xa7,0x21,0x07,0x8e,0xb4,0xe1,0xb2,0xad,0x32,0xcd,0xd2,0x0e, +0x77,0x64,0xf1,0xf1,0x97,0x62,0x46,0xa3,0xfa,0x38,0xe4,0xa2, +0x48,0x8a,0x7e,0xb2,0xee,0x01,0xad,0xee,0xd4,0xd3,0xb7,0x4e, +0xde,0x48,0xb8,0xa6,0x09,0xc5,0x07,0x48,0x4b,0x40,0x93,0xaf, +0xca,0xa3,0xa9,0x99,0xf7,0x50,0xb9,0xd4,0xb8,0x48,0x09,0x6d, +0x31,0x42,0x22,0xc1,0x65,0x3d,0xdf,0xb2,0x52,0xc5,0xa5,0x53, +0xda,0xb0,0x0e,0xb9,0x9a,0x76,0x5c,0xf1,0x67,0x74,0x7a,0xe2, +0x99,0xb8,0x38,0xcd,0x84,0x04,0x8d,0x44,0x38,0x05,0x07,0x7a, +0x70,0xff,0x1d,0x6b,0x5d,0x34,0x92,0x81,0x09,0x6a,0x31,0x5b, +0xf6,0xed,0x47,0x72,0x58,0xbb,0xc0,0xe6,0xcf,0x91,0xa9,0x82, +0x4b,0x90,0x05,0x71,0x04,0xdc,0x98,0x04,0xdf,0x28,0xf7,0x63, +0x5e,0xb4,0xf1,0xa8,0x15,0x39,0x22,0xf4,0x60,0x18,0x93,0x53, +0x9b,0x5d,0x97,0x51,0xcd,0x81,0xa2,0x4f,0xf4,0x64,0xc4,0xd7, +0x97,0x4e,0x55,0x57,0x72,0xb2,0x54,0xfe,0xaf,0xd5,0x95,0xec, +0x3b,0xfe,0x5d,0x5d,0xe9,0xe4,0x39,0x8d,0xf4,0xa2,0x94,0xaa, +0x7f,0x57,0x57,0xb2,0x0e,0x73,0xb5,0xf6,0xfa,0x6f,0xd5,0x95, +0xce,0x24,0x9d,0xbe,0x7d,0x88,0xaf,0x69,0x32,0x1c,0xfe,0x6f, +0xd5,0x95,0x8a,0x52,0x2a,0xa7,0xaa,0x2b,0x79,0xae,0x22,0xa2, +0x4c,0x57,0x90,0xb1,0xf0,0x0a,0xb2,0x94,0xa3,0x3f,0x45,0x96, +0xed,0xc1,0xe7,0x44,0x90,0xdd,0x17,0x65,0x2c,0xba,0x49,0x2a, +0xce,0x2f,0x3e,0x95,0x96,0x32,0x8d,0x31,0x81,0x8c,0x8c,0x36, +0x5d,0xcf,0xbf,0xcd,0x35,0xa1,0x3b,0x9b,0x9a,0x73,0x21,0x27, +0x39,0x5b,0x96,0xce,0xfb,0xe9,0x19,0x1d,0x38,0x60,0x57,0x2e, +0xe7,0x6b,0x4b,0x6a,0x2b,0x2b,0x6b,0x0a,0xac,0x2b,0xed,0x5a, +0x9d,0x2c,0x9c,0x0e,0x79,0x6c,0x0b,0x2c,0xb2,0xe6,0x3f,0x2f, +0xbf,0xd7,0x72,0xb1,0x97,0x33,0xbd,0xff,0xa7,0x1b,0x2c,0x59, +0x00,0xcf,0x98,0xcc,0x61,0x0d,0xfc,0x85,0xc1,0x57,0x56,0x96, +0x75,0xeb,0xea,0x08,0xc6,0xf4,0x99,0xe0,0xdc,0x4d,0x30,0x97, +0x15,0x63,0x13,0x48,0xd2,0x79,0x0d,0x38,0xc4,0x1c,0x33,0xf3, +0xb6,0x96,0x2b,0x9c,0x9a,0xbd,0x7b,0xc2,0xc7,0x68,0xcb,0xdb, +0x4f,0x3c,0xa5,0x20,0xd7,0xd4,0x14,0x97,0x6f,0x44,0xae,0xd1, +0x9a,0x2f,0xad,0x2e,0x6f,0x29,0x93,0xaa,0x63,0x8e,0x4c,0xbc, +0xcb,0x56,0xdc,0x29,0x79,0x98,0xf3,0x25,0x37,0x61,0x81,0x1f, +0x93,0x3e,0x9c,0xc5,0xaa,0x6f,0xd5,0x3f,0xa8,0x7e,0x6a,0x53, +0xc8,0x47,0x3b,0x1e,0x73,0x8e,0x54,0x72,0x2d,0x8b,0xff,0x4e, +0x97,0x63,0x6c,0x80,0xc1,0x57,0x71,0xa1,0x35,0x58,0xb0,0x06, +0x1b,0x75,0xf7,0xed,0x30,0xaa,0x75,0xe0,0x0b,0x72,0xf3,0x73, +0xf2,0x73,0x39,0x71,0xe6,0xe0,0x30,0xe8,0x99,0x0d,0x09,0x87, +0xd8,0x33,0x67,0x3f,0x3c,0xa3,0xd5,0xa2,0x0a,0xaa,0xf7,0x6c, +0xf6,0x9c,0xca,0x98,0x0b,0xa8,0xf0,0x2a,0xf6,0xd2,0x44,0x4b, +0xa6,0xb9,0xad,0xa1,0xbd,0x96,0xfe,0x6b,0x0d,0xf4,0x11,0x73, +0x48,0x1d,0x62,0xc1,0x17,0xe7,0x90,0x1f,0x99,0x30,0x45,0x88, +0x73,0xa0,0x0b,0xe7,0xc5,0x88,0xe7,0xfe,0xa0,0xfc,0xec,0xda, +0x08,0x8b,0x55,0x53,0xea,0x52,0x67,0xa6,0x78,0xd7,0x30,0x9e, +0x31,0x63,0x05,0x6d,0x7c,0x43,0x4a,0x47,0xd3,0xa3,0x6d,0x2b, +0x66,0x62,0x2d,0xa5,0x55,0xd2,0x2a,0xef,0x59,0x89,0x56,0x59, +0x42,0x19,0xc1,0xcd,0xa8,0x03,0x9b,0x59,0x78,0xee,0x40,0xe8, +0x31,0xaf,0xa1,0x1e,0xe5,0xe7,0xdf,0x4f,0xbc,0x40,0x7a,0xf1, +0x00,0xdb,0xa9,0xae,0x52,0xa7,0x77,0x50,0x22,0x99,0x7f,0xb8, +0x4f,0x06,0xd3,0x8f,0x96,0x0d,0xf3,0xa8,0x71,0xd1,0xa5,0x2f, +0xb8,0x83,0xd3,0x67,0x82,0x2d,0x64,0x06,0xc8,0xed,0x2f,0xb7, +0xe0,0x5b,0xcb,0xeb,0xca,0x2b,0xcb,0x38,0x19,0x3b,0xb1,0x13, +0xab,0x08,0x84,0xfd,0x34,0x8a,0x84,0x2d,0xeb,0x2e,0xbb,0x51, +0x78,0xcd,0xb8,0x88,0x0f,0x3f,0xe8,0xbf,0xdb,0xd3,0x98,0xc3, +0x16,0x13,0xd0,0xc0,0xfd,0x4c,0xe4,0x87,0x91,0x67,0x8e,0x69, +0xe3,0x6b,0x26,0xf0,0x0a,0x05,0x10,0x5a,0x0e,0x9b,0x56,0xac, +0x6a,0xb7,0xe3,0x7f,0xfd,0xad,0x17,0x5e,0xc8,0x81,0xe5,0x1c, +0xac,0xc5,0xff,0x18,0x87,0xff,0x80,0xe9,0xd4,0x88,0x0f,0xc2, +0x1d,0x12,0x36,0xe4,0x7b,0xc5,0xa7,0xd7,0x32,0x80,0xaf,0xb1, +0x2c,0x37,0x2d,0x34,0xe1,0xea,0xb1,0x8b,0x9c,0xcd,0xfb,0x30, +0x2f,0x4f,0x8b,0x82,0x81,0x15,0x18,0xc6,0x8a,0x73,0xf4,0xa4, +0x92,0xeb,0x43,0x93,0x73,0x47,0xbe,0x87,0xf4,0x61,0x4c,0xbf, +0x0b,0xe9,0x03,0x98,0x7e,0x8b,0xa5,0xee,0x78,0x37,0x41,0xd3, +0x1b,0x60,0xca,0xa0,0xa9,0x54,0xa5,0xde,0x74,0xbf,0x54,0x1c, +0x0d,0xee,0x81,0x40,0x4e,0xa4,0x1f,0x4f,0x8a,0x8e,0x89,0xa3, +0x76,0xfe,0x39,0x6c,0x1a,0xc1,0x4d,0xf0,0x9d,0x31,0x7e,0x87, +0xbb,0x4c,0x61,0x23,0x13,0x81,0x33,0xf5,0x71,0xc6,0xba,0xa5, +0x0d,0x96,0xfc,0x93,0x1f,0xda,0x9f,0xa7,0x49,0x6b,0xfc,0xdb, +0xc7,0x84,0xb7,0x98,0x0b,0x49,0x67,0x93,0x12,0xb5,0x7f,0xc7, +0xfd,0x2d,0x6d,0x1a,0x42,0xeb,0x2e,0xe2,0x9f,0xef,0x5f,0xe0, +0x5f,0xc8,0xe5,0xc0,0xea,0x34,0x7a,0x29,0xeb,0xb4,0x60,0x89, +0xa8,0x30,0x85,0x35,0x46,0xec,0xce,0x53,0x07,0x12,0x8e,0x6a, +0x3b,0x0f,0xba,0x0d,0x7b,0x8e,0x5a,0x7b,0xf0,0x6d,0x7b,0x7a, +0x74,0x07,0x0e,0xb9,0xe2,0x46,0x69,0xfe,0xe0,0x4d,0x7c,0xa9, +0x85,0x32,0x74,0xca,0x5a,0x3e,0x83,0xd7,0xd4,0xb0,0xea,0xf2, +0xde,0x1b,0x87,0x6e,0x99,0x9c,0x39,0xf9,0x61,0xe2,0x99,0x93, +0xdc,0x86,0xf8,0xa0,0x50,0xdd,0x05,0x38,0x8d,0xc9,0x37,0xd2, +0xf8,0x95,0xf9,0xb6,0xa9,0xe1,0x8f,0x5c,0x9d,0xfc,0xe8,0x82, +0x98,0x82,0x18,0x4e,0x1c,0x98,0x88,0x20,0x91,0x7b,0xfd,0xb7, +0x05,0x1c,0xed,0x08,0xe0,0x2b,0xaf,0x54,0x3f,0x2d,0xb8,0xc7, +0x61,0x1a,0xda,0x90,0xf0,0xdb,0xfe,0x9f,0x05,0x5d,0x91,0x05, +0xf1,0xa5,0x47,0x2a,0x76,0xe4,0xeb,0x71,0x94,0xf0,0x2d,0x21, +0xb9,0x8f,0x52,0x9e,0xfd,0xa2,0x35,0x06,0x86,0xef,0xb1,0xf8, +0x4e,0x22,0x6e,0x88,0xc5,0x05,0xda,0x07,0x47,0x8f,0x5e,0x35, +0x96,0x84,0x55,0x1a,0x85,0xab,0xc4,0x5e,0xd8,0xd9,0x89,0x86, +0xc3,0xb0,0x16,0xde,0xc7,0xb5,0x7d,0x56,0xd6,0xb8,0x02,0xdf, +0x87,0x15,0x66,0xac,0x78,0x01,0xc2,0x48,0xfa,0xb6,0x76,0xc3, +0x47,0xbb,0x6b,0x06,0xf8,0x7d,0xd7,0x1c,0xaf,0x84,0xdd,0xe4, +0xf6,0x31,0xa1,0xbb,0x9c,0x76,0xac,0xdb,0x57,0x63,0xc9,0x3f, +0xbb,0xdd,0xf7,0x45,0x16,0x25,0x05,0x4f,0xde,0x25,0xfe,0xed, +0x6e,0x5d,0xee,0x0d,0xae,0x6e,0x7c,0xbd,0x52,0xe5,0x50,0x6d, +0xcb,0x41,0xc0,0x13,0xb2,0x7b,0xe9,0x7d,0x16,0x56,0xef,0x26, +0xf7,0xff,0xd8,0xcd,0x8a,0x1f,0xac,0x25,0xcd,0x2e,0x8d,0xf6, +0xf5,0x36,0x0d,0x2d,0xbc,0x4f,0x97,0x63,0x8f,0x4b,0x23,0x87, +0xfa,0x98,0x47,0xe0,0xd5,0x21,0x7c,0x15,0x5e,0xfe,0x62,0x10, +0x43,0x2c,0x1e,0xe2,0xcb,0x92,0xd4,0x9f,0x0e,0xde,0x62,0x6c, +0xe2,0xad,0x13,0x64,0x53,0x65,0x60,0x5e,0xc8,0x87,0xd7,0xab, +0x1e,0x56,0x9c,0x1e,0xe2,0x95,0x71,0x8e,0x71,0x0e,0x09,0xdc, +0xc4,0x16,0x61,0x27,0xc1,0xbb,0xa2,0x16,0x3c,0x87,0x03,0xd8, +0xd2,0x07,0x45,0x8c,0x0c,0x58,0x72,0x10,0xfd,0x6e,0xb0,0x43, +0xe2,0x26,0x82,0x0b,0x9d,0x46,0xe1,0x65,0xa9,0x7a,0xc6,0x7c, +0xf3,0x07,0x52,0x56,0xdd,0x0b,0x3e,0x2e,0x07,0xe4,0xda,0xa5, +0x26,0x1f,0xf5,0x16,0xa9,0xcf,0x3f,0xd6,0xbc,0xc0,0xac,0x4c, +0xee,0x35,0x84,0x95,0x0b,0x20,0x8b,0x49,0x1f,0xd2,0x98,0x5c, +0x0e,0x33,0x48,0xf6,0x30,0x85,0xd7,0x23,0xf6,0xe9,0xfc,0x71, +0x83,0x04,0xd3,0x68,0x2b,0x0e,0x7d,0x61,0x15,0x29,0x35,0x2d, +0xde,0x9a,0x29,0x65,0x95,0xc5,0x5e,0x0c,0xfa,0x3c,0x78,0x98, +0x9b,0x28,0xc7,0xbd,0x04,0xe3,0x1f,0x41,0x3c,0xc5,0xe9,0xd5, +0x13,0xf7,0x88,0x48,0xff,0x38,0x9d,0x39,0x6a,0x86,0xac,0x2d, +0x3a,0x2b,0x0a,0xcc,0x78,0x98,0x5e,0xfe,0xac,0xe2,0x56,0x0d, +0x67,0x03,0x42,0x37,0x7b,0xc7,0xfb,0x59,0xc0,0x9f,0x81,0x05, +0x43,0x3c,0xa6,0x0d,0xe2,0xeb,0xb7,0x6d,0xee,0x72,0xe8,0x84, +0xdb,0xc9,0xc3,0xc6,0xa1,0xb6,0x8a,0x21,0x3a,0x8c,0x2a,0x2c, +0x46,0x14,0x4f,0x5d,0xb9,0xd8,0x35,0x24,0xc8,0xd8,0x7e,0xb7, +0xdc,0xa8,0xc3,0xa0,0x7d,0x5f,0xdd,0x9e,0xc1,0x12,0xde,0xf5, +0x9e,0xeb,0x25,0x65,0x6f,0xf3,0x40,0xeb,0xcd,0xb2,0x21,0x0e, +0xe6,0xe6,0x92,0x20,0x53,0xbb,0x9d,0x0a,0xb3,0x0e,0x83,0x9e, +0x5d,0x0d,0x7a,0x83,0x65,0xbc,0xeb,0x2d,0xe7,0x71,0xa7,0x41, +0xf5,0x50,0xd3,0x95,0xd2,0x3e,0x6e,0xd2,0x12,0xff,0x83,0xc0, +0x2d,0x48,0xc5,0x4c,0x0a,0x47,0xa5,0x58,0xf2,0xd7,0x98,0xd6, +0xc2,0x3c,0xb5,0x0e,0xf4,0x8a,0x2f,0x8a,0x2f,0x50,0x0f,0x07, +0x91,0x44,0x51,0x6c,0x5c,0xa4,0xc8,0x0a,0x71,0xe2,0x5b,0x63, +0x2e,0x85,0x76,0x04,0x73,0x79,0x47,0x88,0x43,0xb1,0x41,0xa9, +0x7d,0x76,0x98,0x03,0xdf,0x11,0x35,0x1e,0xd4,0x16,0xc2,0x8d, +0xe2,0xcb,0xff,0x4b,0x2d,0x71,0xdd,0xff,0xab,0x96,0x78,0xb7, +0x54,0x4b,0xdc,0x91,0xdc,0x1a,0xec,0x1a,0xff,0xbb,0x96,0xb8, +0xb5,0xad,0xe1,0xff,0xc7,0x5a,0xe2,0x7f,0x99,0x4e,0x28,0xc8, +0xa0,0xf8,0xe2,0xbd,0x83,0x7b,0xf0,0x39,0xb5,0xda,0x7a,0x67, +0x0c,0x4f,0x99,0x6b,0x3b,0xbb,0xda,0x7a,0x5b,0xf9,0x17,0x1a, +0xf3,0x1d,0x15,0x4d,0x95,0xb5,0x35,0x51,0xf8,0xa6,0xfb,0x1a, +0xdd,0x45,0xbd,0x8e,0x3c,0xe5,0xd6,0xa6,0xd9,0x60,0x0d,0xb9, +0x5a,0xb0,0x90,0x3d,0x82,0xa1,0x24,0xf8,0xa6,0xdf,0x25,0x8f, +0x31,0x7b,0x7f,0x5e,0x65,0x56,0x75,0xb4,0xe4,0x20,0x37,0xf1, +0xe9,0x75,0x82,0xfe,0x1d,0xfa,0x6a,0xa7,0x7e,0x0e,0x07,0x6d, +0xc1,0x82,0xb1,0xf3,0xda,0xe9,0x8b,0x8b,0xbd,0x73,0xad,0x78, +0xd8,0xdd,0x02,0xaf,0x34,0xd5,0x3f,0xe6,0x2e,0x30,0xc5,0xb6, +0xdd,0x5e,0xb7,0xfd,0x39,0xac,0x52,0x80,0xaa,0x8d,0xe9,0x0f, +0xbf,0x1a,0x79,0x3f,0x92,0x13,0x65,0xf8,0x80,0x5c,0x65,0x5a, +0xf3,0x72,0x7b,0x28,0x2d,0xc4,0x2b,0x38,0xd8,0x0f,0x99,0xe0, +0x8c,0x1e,0x9b,0x59,0x81,0x75,0x25,0x6a,0x49,0x8f,0x11,0x22, +0x4c,0x30,0x01,0xb5,0x24,0x48,0x21,0x87,0x6a,0x82,0x87,0x47, +0xe0,0x30,0x8b,0x2e,0x4b,0x89,0x6b,0x81,0xac,0xd0,0x29,0x23, +0xd4,0x95,0x6f,0x8e,0xeb,0x0b,0x6f,0x0c,0xe5,0xb2,0x6d,0x89, +0xb2,0xd0,0xba,0xc4,0x21,0x33,0xd4,0x8d,0x6f,0x8b,0xe9,0x0d, +0x69,0x0e,0x96,0x54,0x4b,0xb4,0x88,0x6b,0x95,0x59,0x95,0x43, +0x9e,0x97,0x92,0xef,0x0c,0x1f,0xf0,0x6b,0xf2,0xe1,0x80,0xbf, +0x42,0x5a,0x14,0xcd,0x46,0x95,0xc6,0xbd,0xb5,0xbc,0xff,0x90, +0xd3,0x88,0x73,0x17,0x27,0x7e,0x8a,0x56,0xa4,0xb7,0xaf,0x79, +0xa4,0x78,0xcc,0xaa,0x88,0x0f,0x36,0x77,0xb7,0x90,0xd1,0xd6, +0xec,0xca,0x23,0x7e,0x27,0xcf,0x97,0xeb,0xfc,0x68,0x84,0xd3, +0x59,0xab,0xbc,0xb0,0x4b,0xda,0x70,0x96,0x51,0xe7,0xe4,0x34, +0xe8,0x5c,0x63,0xcd,0x72,0x34,0xb6,0xd3,0xc6,0x34,0xa2,0x20, +0x60,0x0c,0x8d,0xd9,0x33,0x39,0x1f,0xe6,0xd2,0x26,0x8a,0xd2, +0xc7,0x28,0xf6,0xd8,0x87,0xc7,0xce,0x44,0x69,0xe3,0x76,0x63, +0xd8,0xca,0xc4,0xa0,0xb3,0x05,0x2e,0xc4,0x97,0x70,0x35,0x27, +0x14,0xe3,0x5b,0x3f,0xde,0x6a,0x63,0x0b,0xbd,0xf2,0x3d,0x73, +0x7c,0xbb,0x1b,0x78,0xa7,0x07,0xc6,0xcf,0xad,0xc7,0x6c,0x7d, +0xf9,0x2a,0xb7,0x3a,0x5b,0x3a,0x56,0x51,0xc5,0xa8,0xba,0xaa, +0xba,0x0b,0x9a,0x65,0xe5,0xbc,0xe7,0x01,0xfd,0xb5,0xc6,0x86, +0x2d,0x0a,0xbe,0xac,0xa2,0xbc,0xae,0xac,0x9e,0x73,0xbc,0xb6, +0x1c,0x17,0x8b,0xcf,0x87,0x47,0x85,0x59,0x6c,0xd5,0x11,0x6a, +0xaa,0xb6,0x0f,0xc3,0x92,0x64,0x30,0xa0,0x88,0x39,0x19,0x0d, +0xfa,0xf1,0x4d,0xca,0x8e,0xf7,0x35,0x5e,0xe2,0x51,0x0b,0xb6, +0x5b,0x80,0x76,0x2c,0xb8,0x48,0xd1,0xaa,0x3c,0x09,0xb8,0xe2, +0x71,0xc5,0xa3,0xdb,0x21,0x80,0xaf,0x37,0xaf,0x36,0xa9,0x38, +0xcc,0x89,0xe3,0x45,0x64,0xb9,0xe9,0x8f,0xec,0x08,0x36,0x12, +0xc7,0xc2,0xe0,0x36,0xed,0x1b,0x5b,0xf1,0xc1,0xc7,0x4c,0xa3, +0xfb,0x95,0x4f,0x2b,0x2f,0x5d,0xf8,0x4e,0x73,0x94,0x59,0x38, +0xef,0xe4,0xe6,0x00,0x7b,0xf3,0x23,0x1c,0x58,0xb3,0xf0,0x00, +0x57,0x12,0x05,0xe3,0x73,0xe2,0x42,0x95,0x0e,0x70,0x9f,0xb1, +0xf8,0x00,0x9f,0x10,0x78,0xb0,0x04,0x1f,0xd0,0x91,0xd7,0x34, +0x61,0x44,0x12,0xf0,0x45,0xcb,0x23,0x38,0xd7,0x96,0xba,0x75, +0x78,0xbb,0xf7,0xa3,0x6f,0x52,0xe1,0x2d,0xee,0x67,0xdc,0xcc, +0x58,0xe5,0x87,0x5e,0xd4,0xfe,0x95,0x69,0xcd,0x28,0x6c,0xd0, +0xe9,0x61,0xad,0xb2,0x34,0x0e,0xad,0x61,0xfd,0x13,0x53,0xa4, +0xc5,0x57,0x60,0xd7,0x8e,0xc0,0x3b,0x98,0xf6,0xa5,0xd1,0x7a, +0xfc,0x00,0xdf,0x19,0x7e,0xce,0xa2,0xb5,0xe8,0x46,0x4e,0x9e, +0xcb,0xbe,0x99,0x72,0xf5,0xdc,0xa7,0x9a,0x6d,0xc3,0x8d,0x83, +0x35,0xe3,0x2e,0x2d,0x7c,0x88,0x5d,0xb0,0x53,0x80,0x1b,0x07, +0xfd,0x26,0xf8,0x80,0xc5,0x33,0xde,0xd4,0x59,0xcf,0x99,0x12, +0xb6,0xbc,0xf7,0x6b,0xd3,0x97,0x25,0xcf,0x34,0xcf,0x5d,0x90, +0x84,0x2d,0x7f,0xc7,0x7d,0x7c,0x77,0xeb,0x12,0xd8,0x96,0x90, +0x1d,0x7b,0x2e,0x36,0x5e,0x13,0x37,0x09,0xcb,0x24,0x11,0xca, +0x84,0x55,0xbe,0x3b,0xfa,0x24,0x11,0xca,0x8c,0xdf,0xce,0x4a, +0x22,0x94,0xb7,0x44,0x42,0xf0,0xbd,0xbb,0x4b,0x9f,0x79,0x7c, +0xc1,0x19,0x33,0x1e,0x1b,0xde,0x5b,0x87,0xeb,0xf5,0xca,0x2c, +0xf9,0xf2,0xcc,0xd2,0xac,0x92,0x2c,0x0e,0x3f,0x19,0x1d,0x86, +0x9b,0x66,0x63,0xf0,0x29,0x5b,0x1a,0x5d,0x16,0x53,0x41,0x8d, +0xbb,0xf2,0x2a,0xf9,0xe6,0xe2,0xe8,0xd5,0xdc,0x5b,0xd4,0x46, +0xe4,0x1c,0xbc,0x78,0xf8,0x7b,0x43,0x0e,0x9f,0x5a,0x11,0xb8, +0x49,0x1d,0xd7,0x4d,0xea,0xb2,0x46,0x85,0xf7,0xc8,0xdd,0x61, +0x5c,0x20,0x70,0xe6,0x22,0x87,0x8b,0xcd,0xee,0xe9,0x32,0xb8, +0x3c,0x1c,0x5f,0x37,0xc4,0x69,0xda,0x1d,0x1e,0x1a,0xb7,0x80, +0xe4,0xc3,0x3c,0x78,0x5f,0xeb,0xda,0x27,0xe2,0x5c,0x36,0x38, +0x3e,0x38,0x3e,0x28,0x21,0xdb,0x98,0xff,0xa8,0x76,0xac,0xea, +0x72,0xfd,0x89,0x11,0xde,0x3f,0x3a,0x20,0xc6,0x3f,0x86,0x83, +0x9f,0x04,0x8a,0xa7,0xee,0xe3,0x07,0x74,0xe4,0x60,0x25,0x0b, +0x5f,0x05,0x11,0xf8,0x09,0x53,0x6c,0x41,0x8e,0xfd,0xec,0x64, +0xe4,0xe7,0x24,0xee,0x5e,0xc8,0xe7,0x11,0x43,0xf2,0x70,0x3e, +0xcf,0xac,0x68,0x73,0xe6,0x2e,0x0e,0x4e,0x40,0x3c,0x89,0xdb, +0x17,0xfa,0x7e,0x88,0x51,0x7b,0x08,0x5f,0x72,0xa9,0xe4,0xcb, +0xcc,0x3b,0x9c,0xa0,0x9b,0x44,0x94,0x4a,0x5b,0x0f,0x53,0xbf, +0x72,0x27,0x7e,0xb8,0x72,0xb0,0xa9,0x49,0xcd,0xe1,0x8d,0x5a, +0xa2,0x74,0x92,0x29,0xcd,0xfc,0x2a,0x1c,0xf9,0x91,0xea,0xc1, +0xd6,0x96,0x76,0x0e,0xb6,0x4c,0x5a,0x92,0x2f,0xc0,0xae,0x0b, +0xed,0x1e,0x82,0x5d,0xa7,0xf4,0x1e,0xd4,0x83,0xde,0x6c,0x6e, +0x59,0x4e,0x75,0x7a,0x85,0x2c,0x9b,0x1f,0xaa,0xea,0x6f,0x6e, +0x51,0xfb,0x34,0xf2,0x0a,0xb9,0xb1,0x93,0x49,0x40,0xb9,0x82, +0xcf,0xba,0x10,0xef,0x13,0xe3,0x2d,0xa5,0x00,0xee,0x62,0x24, +0x31,0xa1,0xcc,0x2a,0x7a,0x98,0xd7,0x56,0xfb,0xed,0x07,0x0e, +0xd6,0xd8,0xf3,0x45,0xc5,0x05,0xc5,0x12,0x27,0x9e,0x35,0xa2, +0x16,0x5c,0x7a,0x59,0x71,0xc9,0xc4,0x8b,0x44,0x66,0x6d,0x22, +0x3f,0xe2,0x59,0x29,0xe7,0xaf,0x35,0x8c,0x77,0xf7,0x0e,0x71, +0x2b,0xf1,0x31,0x79,0x08,0x07,0xb6,0x4a,0xc8,0xfc,0x8d,0xbf, +0xb7,0xec,0x66,0x6e,0xc0,0x03,0x5f,0x4c,0x25,0x48,0xfe,0x45, +0x3e,0x87,0x3b,0x1b,0xc7,0x3f,0x87,0x84,0x21,0x4c,0xf8,0xc4, +0x50,0x8a,0xdf,0xa5,0x6f,0x01,0xe6,0x10,0xb0,0x91,0x85,0x64, +0x9c,0x4e,0x84,0x0d,0x83,0xe2,0x86,0x27,0x06,0x9b,0xc5,0x05, +0x16,0xc2,0x02,0x8a,0x55,0xf0,0x75,0xb4,0x46,0x0e,0x83,0x74, +0xb5,0x2b,0xcd,0xc1,0xf9,0x0e,0xac,0xfe,0xb2,0xf4,0x17,0xcd, +0x14,0x1c,0xb8,0x04,0x03,0x29,0x4c,0xe9,0x12,0xd8,0xb9,0x1e, +0x5c,0x74,0x2b,0x06,0x79,0x8c,0xb8,0x83,0x4e,0xf0,0x22,0xbc, +0xae,0x85,0x43,0x30,0x87,0x78,0xb0,0xdb,0x9d,0x1d,0xde,0x3e, +0xa2,0xad,0xb2,0xbf,0xa5,0x6e,0x6c,0x2c,0x28,0xd5,0x4c,0x4d, +0xbf,0x70,0x3a,0xe3,0xc4,0x4f,0xfb,0x79,0x55,0xdb,0xaa,0x2b, +0xb1,0xa9,0x89,0x1f,0xc6,0xc7,0x69,0xc6,0xc7,0x25,0x9e,0xd7, +0xc8,0x29,0x4b,0xab,0x55,0x6b,0x35,0xb1,0x82,0xee,0x3c,0x0f, +0x76,0x9b,0x8b,0xdb,0x0e,0x6b,0xed,0x3a,0x87,0xbe,0x9a,0x9a, +0xea,0xec,0x3c,0xcd,0xb4,0x8c,0x0b,0xa7,0x33,0x8f,0xc3,0xdb, +0x4b,0xf9,0xba,0x76,0x5c,0xf0,0x75,0x6c,0xda,0xf1,0x33,0x09, +0x09,0x9a,0x71,0x71,0x94,0xd3,0xe5,0x54,0xa4,0x56,0x77,0x68, +0x35,0xb2,0xb3,0x05,0x7d,0xe1,0x17,0x12,0x54,0xee,0x52,0xef, +0x5b,0xe2,0xec,0xca,0x57,0x85,0xb4,0xb8,0x95,0x06,0x2a,0x28, +0x08,0x37,0xf7,0xaf,0xb0,0xe3,0x55,0x79,0xb5,0x85,0x35,0x45, +0x1c,0x3a,0x43,0x20,0xee,0xa0,0x66,0x25,0xd3,0x52,0xe3,0x5b, +0xa6,0x2d,0x2f,0x97,0x1a,0xba,0x2d,0x94,0x8f,0xb8,0xb2,0x95, +0x91,0x55,0xc7,0x2a,0x63,0xca,0xba,0x78,0x79,0x81,0x7d,0xb9, +0x53,0x75,0x7d,0x65,0x7d,0x6d,0xa5,0x4a,0x51,0xcb,0x07,0x78, +0xba,0x7a,0x7b,0xf8,0xbb,0xaa,0xbc,0xeb,0x43,0x9a,0x38,0x38, +0xdb,0x8f,0x3f,0x30,0x19,0xe5,0x69,0x15,0x29,0x55,0xc6,0xe9, +0xfc,0x09,0xaf,0x78,0xef,0x18,0x5f,0x0e,0x3f,0xb4,0x02,0x7f, +0x26,0xc4,0x2d,0xc0,0xcb,0xc7,0x87,0xc3,0xf5,0x4f,0x89,0x4d, +0xdf,0x81,0x51,0x0b,0x29,0x0e,0x7b,0x58,0x79,0xc3,0xb4,0xd7, +0x8a,0x13,0x96,0x8d,0x90,0x22,0xdb,0x46,0x79,0x87,0x13,0x87, +0xa5,0x4c,0x4b,0x73,0x7d,0x47,0x65,0x2f,0xed,0xfa,0xe8,0x49, +0x8f,0x94,0x22,0xb6,0x5d,0xe5,0xfc,0xa0,0xcb,0x55,0x73,0x49, +0xf5,0xc6,0x3b,0x99,0xdc,0x15,0x34,0xf6,0xb1,0xa2,0x86,0x1d, +0x11,0x34,0xf6,0x8a,0x1a,0x0c,0xda,0xb7,0xfc,0xff,0x16,0x86, +0x86,0x69,0x6f,0x93,0xe1,0xa6,0xb1,0xc1,0xc6,0x01,0x4a,0x57, +0x3d,0xec,0x2c,0xac,0x4c,0xdc,0x38,0xc1,0xf8,0x3b,0x32,0xe2, +0x78,0xd9,0xb0,0xd3,0x5a,0xdd,0xc6,0x3b,0x74,0x1e,0xba,0x6c, +0xd9,0xc2,0xcd,0x9e,0xf0,0xe8,0x20,0x30,0x0b,0x8e,0xf5,0xe1, +0xb1,0xcf,0x28,0x14,0xfe,0x0c,0x2d,0x1e,0x40,0x68,0x3f,0x86, +0x3e,0x32,0x7f,0x1f,0x7d,0xac,0xc0,0x67,0x17,0x1a,0xe1,0x67, +0x60,0xb4,0x0d,0x23,0xac,0x21,0x82,0xba,0x36,0x71,0xeb,0xc4, +0x46,0xe2,0xd0,0x6a,0xad,0xb6,0x51,0x79,0xd0,0x8b,0x76,0x6d, +0x77,0xed,0x70,0xe4,0xc0,0xa3,0x80,0x78,0xb4,0x2b,0xba,0x1d, +0x9a,0x94,0x2e,0x7c,0xab,0xcb,0x94,0x00,0x00,0x2e,0xdc,0x41, +0x3a,0x5d,0xda,0xe5,0x6a,0x9b,0x06,0x35,0xef,0xda,0x65,0xdb, +0x63,0x27,0x29,0xc6,0xac,0x22,0xf2,0x0e,0x83,0x3e,0x93,0x46, +0x7a,0xee,0x90,0x72,0xd4,0xb6,0xdb,0x8e,0x13,0x3c,0x60,0x1d, +0xd9,0x80,0x9a,0x5f,0xb0,0xf0,0xe9,0x06,0x82,0x3a,0x5f,0x80, +0x0e,0x83,0x9f,0x4a,0xfa,0xf2,0x9a,0xab,0xa5,0x25,0x3f,0xe3, +0x79,0xdf,0x80,0xce,0x6a,0x96,0xf2,0xc8,0xc7,0x94,0xf5,0xd9, +0x0f,0xc0,0x2b,0x92,0x1a,0xd0,0x32,0x8b,0x2f,0x71,0x0e,0x45, +0x36,0x5e,0xce,0x4b,0xed,0xb5,0xcb,0xf4,0xff,0xec,0x2a,0xed, +0x4b,0x7a,0x4a,0x9b,0x63,0xe5,0xf9,0x6e,0x03,0x58,0xbb,0x40, +0x98,0xc5,0xa4,0x8e,0x69,0x4c,0x16,0x80,0x9a,0xf8,0xe0,0x4c, +0x07,0x9c,0x75,0x74,0x79,0x8f,0x0b,0x7f,0x43,0xca,0x2e,0x5f, +0x50,0xf1,0x1b,0x37,0xfb,0x2f,0x1d,0xc8,0x94,0x12,0x79,0x8f, +0x7f,0x01,0x8d,0x03,0xd8,0xf8,0xdc,0x64,0x2d,0x16,0x5b,0x42, +0xf1,0x06,0x3c,0x86,0x3f,0x83,0x33,0xeb,0xb8,0x65,0xd5,0x66, +0xe4,0xf7,0x4a,0x55,0xc5,0xf9,0x07,0xbf,0x3d,0x2b,0xfc,0x85, +0xbb,0x80,0x37,0x86,0xe1,0x46,0x0a,0x53,0xb8,0xfc,0xfb,0xf5, +0xa0,0xf3,0xbe,0x54,0x6d,0x69,0xc1,0xc7,0xef,0x3d,0x72,0x7c, +0xc4,0x89,0xdb,0x22,0x08,0x35,0x81,0x49,0xb1,0x71,0xd1,0xb1, +0xfc,0xc9,0xa4,0xcc,0x5b,0x17,0xae,0x9e,0xfb,0x44,0xb3,0x6f, +0xac,0x65,0xb4,0xee,0x1a,0x35,0xa6,0x01,0x16,0x7e,0xf6,0xde, +0xce,0x1c,0x8c,0x98,0x50,0x8a,0x81,0xe7,0x7d,0xa7,0x8c,0xe9, +0x01,0xed,0x4e,0xc5,0x03,0x98,0xde,0xfc,0xbc,0xe8,0xcb,0x7f, +0xca,0x04,0xff,0x82,0x9b,0x25,0x99,0x60,0xec,0x14,0x46,0xa6, +0x94,0x7c,0x57,0xf9,0x6d,0xef,0x0b,0x9e,0x52,0xf2,0x95,0x8c, +0xa8,0x10,0x4c,0x5b,0xe6,0x0c,0xea,0xc2,0x19,0x16,0xa2,0xf0, +0x0c,0x81,0x33,0x70,0x18,0xcf,0x50,0xb0,0x0f,0x96,0xa4,0xc2, +0xbe,0xc4,0xa6,0xc0,0xac,0xa3,0x80,0x8f,0x18,0x0e,0x1a,0xf0, +0xed,0x94,0x4a,0x3d,0xeb,0x92,0x9a,0x9e,0x92,0xc1,0xdc,0x21, +0x3b,0x49,0x46,0x3f,0xd8,0xca,0xd7,0xee,0x3f,0x67,0xb5,0xcc, +0x02,0x8c,0xb0,0xc5,0x06,0x5a,0xcc,0x31,0x1a,0x8b,0x20,0xda, +0x04,0xd5,0x36,0xa0,0xde,0x30,0xfc,0x05,0x74,0xf6,0x62,0xe7, +0x28,0xc4,0x43,0x11,0xc6,0x0f,0x41,0x7b,0x2f,0xb6,0xf7,0xd7, +0xfc,0xaf,0xf3,0x5f,0x28,0x0f,0x24,0xbd,0x7e,0x37,0x6d,0xd5, +0x2e,0xb5,0xed,0xbc,0xa2,0xe5,0x50,0xb7,0x4d,0x05,0xb7,0x1f, +0x65,0xa4,0xdf,0xff,0xa6,0x6d,0x97,0xa2,0xb6,0x93,0xb7,0x6d, +0x3b,0xd8,0x6d,0x55,0xc1,0x09,0x29,0x38,0x8f,0xa0,0xee,0x18, +0xe8,0x32,0x10,0x6b,0x4c,0xf0,0xe0,0x98,0x54,0xdc,0x2d,0x76, +0x11,0x39,0x84,0xba,0xd7,0x59,0x38,0x36,0x0f,0x0e,0x1e,0x42, +0xba,0x47,0x0f,0x2b,0x08,0xae,0xdc,0xd5,0x0b,0x1a,0x3a,0xb0, +0x00,0xad,0xad,0xe0,0xcd,0x8d,0xec,0x2a,0x2b,0xf7,0x65,0x4e, +0xda,0x65,0x66,0xbf,0xb7,0xb7,0xb4,0xa5,0x7e,0x42,0x9f,0xea, +0xa6,0xcc,0xd1,0x43,0x60,0xb4,0x40,0xf0,0x9d,0x9a,0x9b,0x12, +0xfe,0x03,0xda,0x48,0xb8,0x6b,0x90,0x6b,0x90,0x6f,0x54,0x4d, +0x54,0x55,0x54,0xb9,0x7d,0x10,0x5f,0x6e,0x57,0x69,0x5a,0x6a, +0xec,0x12,0x6e,0x1b,0x6e,0x13,0x25,0xe9,0x31,0xb8,0x0a,0x6b, +0xdf,0xf9,0xd6,0x7c,0xd5,0xa2,0x49,0x6f,0x36,0xf0,0x44,0xd0, +0xc9,0xe0,0x93,0xd9,0xa6,0xfc,0xf3,0xa2,0xdf,0x9a,0x6f,0x37, +0x64,0x79,0x65,0x78,0xa7,0x7b,0xf7,0x96,0xf2,0xe1,0x43,0xc1, +0xa3,0x41,0x83,0xb5,0x4d,0x35,0x1d,0x05,0x0d,0x9c,0xa8,0x0d, +0x4a,0x72,0x22,0xef,0xc4,0x07,0xb1,0x09,0x31,0xf1,0x92,0x6e, +0xd4,0xf3,0x81,0xb5,0x60,0x62,0x8e,0x26,0x92,0x6e,0x94,0x06, +0x13,0x87,0x6f,0xb8,0xe2,0x92,0xed,0xf8,0x6a,0x93,0x8c,0xbf, +0xfc,0x73,0xc9,0xaf,0x53,0x15,0x58,0x73,0x87,0xa4,0x5a,0x2f, +0x53,0x0b,0xf6,0x97,0x70,0xb5,0x54,0xd7,0xb4,0x05,0xde,0x23, +0xea,0x6f,0x54,0x3f,0xe7,0x4a,0x11,0x59,0x35,0x93,0x93,0xc3, +0x13,0x57,0x60,0x03,0x1b,0xa3,0xeb,0xb5,0xc4,0x7e,0x05,0x37, +0xb8,0xbb,0x6d,0xdd,0x46,0x2d,0xdd,0x08,0x5f,0xb9,0xb6,0xb9, +0x94,0xcf,0x35,0xca,0xdc,0x6a,0xe8,0xf8,0xe3,0x5b,0xc7,0xaf, +0x6d,0x6e,0xeb,0xe0,0x18,0xf8,0x12,0x6a,0x5f,0xd7,0xc1,0xeb, +0x2c,0xac,0x43,0x3d,0xa9,0x4a,0xf8,0x3a,0xd0,0xa4,0x26,0x6d, +0x78,0x62,0x39,0x09,0xac,0xf1,0xaf,0x0a,0x2e,0x2a,0x2d,0xab, +0xac,0x2d,0xa8,0x54,0xe4,0xf3,0x61,0x3e,0x6e,0x4e,0x1e,0x9e, +0x4d,0xee,0x2a,0xb7,0x4a,0xea,0xa5,0x95,0x15,0x24,0xb0,0xd6, +0xbf,0x32,0xa8,0xa8,0xac,0xb4,0xa2,0xb6,0xb0,0x8a,0x7e,0x1f, +0xea,0xe3,0xe1,0xec,0xee,0x41,0xbf,0x77,0xad,0x70,0xe7,0xc0, +0xb3,0x52,0x3a,0xbf,0x22,0xa8,0xa8,0xb8,0xa4,0xaa,0xae,0xb0, +0xf2,0x5f,0xdf,0x4b,0xe7,0xbb,0x57,0xba,0x73,0xa2,0xa3,0x38, +0x49,0xa2,0x3f,0x09,0xfe,0x29,0xfc,0xa6,0x5d,0x34,0x9f,0xa1, +0xcc,0x94,0x94,0xe4,0xe3,0x7d,0x13,0x7c,0x12,0xa4,0x59,0x9a, +0x97,0x85,0x79,0xf8,0x32,0xac,0x35,0xc3,0xb5,0x38,0x4b,0x9c, +0x07,0xb3,0xd0,0x9f,0xb5,0x8e,0xb6,0x8c,0xb3,0x88,0xcb,0x32, +0xa1,0x58,0xbf,0xe4,0xc7,0xca,0xaf,0xea,0xce,0x87,0x9c,0x0f, +0x4d,0x0a,0xe7,0x30,0x72,0x62,0x26,0xb9,0x81,0xaa,0x83,0x0c, +0x98,0x80,0x8a,0xa0,0x6a,0x3f,0xa8,0x58,0x38,0x74,0x9a,0x60, +0xb7,0x10,0x01,0xdd,0xac,0x78,0x00,0x93,0x09,0x28,0x85,0xb9, +0xa8,0xa4,0x68,0x26,0x8d,0x74,0x17,0xf4,0x94,0x76,0x56,0xb6, +0x86,0x34,0x07,0xd5,0x86,0x55,0xd4,0xf1,0x7e,0x05,0x1e,0x85, +0xee,0x05,0xaa,0x92,0xaa,0x92,0xd2,0x12,0x4f,0x0a,0xab,0x03, +0x3d,0x03,0x5d,0x83,0x1c,0x4a,0x1c,0x0a,0x5d,0x73,0x03,0x3d, +0xf8,0xda,0xe8,0x86,0x88,0xc6,0x70,0x65,0xa8,0x53,0x98,0x53, +0x14,0x77,0x4f,0x5c,0x48,0x7c,0x62,0xdd,0x62,0x5d,0xe3,0x39, +0xb8,0x4a,0x71,0x2c,0x1b,0x7e,0x32,0xec,0x54,0xc4,0x07,0xe9, +0xb6,0xfc,0xf5,0xec,0xc7,0x25,0x43,0xc5,0xdc,0x53,0xf8,0x98, +0xd8,0xe0,0xa7,0x4c,0xc4,0xa9,0xc8,0x0f,0x22,0xa5,0xfd,0x0f, +0xb2,0x7f,0x28,0xbf,0x5c,0x7e,0xa2,0x8b,0x57,0x46,0xdb,0x1c, +0xb3,0xa6,0xae,0x3f,0xe1,0x34,0x71,0xbb,0x1e,0xfd,0x3b,0xbc, +0xa8,0x55,0x69,0xed,0xc7,0xe2,0xeb,0x79,0x38,0xb7,0x6f,0x8f, +0x76,0x89,0x47,0x5b,0xda,0xf9,0x8e,0x0c,0xe0,0x79,0xa7,0x42, +0x0d,0xbc,0xf8,0x23,0xf1,0x2d,0xa1,0x17,0x95,0x17,0xec,0xc6, +0xab,0x8e,0x35,0x05,0x57,0x52,0x54,0xeb,0x55,0x47,0x7c,0x4a, +0xdc,0x8a,0xdd,0xf2,0x29,0xf8,0xad,0x8d,0x6a,0x0d,0xa8,0x0c, +0xe2,0x70,0xd7,0x66,0xe2,0x5d,0xac,0x2c,0x71,0xcb,0x0f,0x71, +0xa5,0xc7,0xb5,0x06,0x56,0xd3,0xe3,0xfc,0x54,0xf4,0x38,0x65, +0xa9,0xab,0xb4,0xaf,0xee,0x58,0x2b,0x7d,0x7a,0xd4,0xe4,0xbc, +0x48,0xdb,0x22,0x86,0x71,0x4d,0xc8,0x50,0xe9,0x80,0x3b,0xe4, +0x42,0xf1,0xa4,0x2e,0x0b,0x9b,0xbb,0x1f,0x5f,0xaf,0x01,0x0d, +0x0e,0x6e,0x31,0x9e,0xa7,0x7d,0x12,0x03,0xb4,0xfd,0x13,0xa3, +0x12,0xec,0x16,0xd0,0x91,0x91,0x63,0xa9,0x01,0xbb,0x99,0xc7, +0x35,0xc5,0x03,0xe9,0x3a,0x29,0x4d,0xe7,0xda,0x3e,0xd6,0x9a, +0xf4,0x36,0x83,0x7a,0xc6,0x67,0xc3,0xea,0xc3,0xe8,0xeb,0x58, +0x60,0xcc,0xd7,0xa6,0x54,0xa7,0x54,0xa6,0x70,0x98,0x0b,0x55, +0xac,0x03,0xce,0x79,0x67,0x2b,0x7e,0x78,0xb4,0x8a,0x3e,0x97, +0x73,0xd7,0xe1,0x8d,0xcf,0xfb,0x60,0x1f,0xd7,0x86,0xc1,0xcc, +0xa1,0xb2,0xd0,0x07,0xda,0x10,0xfb,0xcf,0x59,0xfb,0xe9,0xac, +0x71,0xbe,0x44,0xf8,0xbe,0x21,0x70,0x92,0x39,0x63,0x74,0xca, +0x32,0x9e,0xa2,0xdf,0x30,0x46,0xb8,0x2f,0x49,0x5c,0x6f,0xc2, +0x36,0x36,0xbd,0x3b,0x79,0xe0,0xec,0x45,0x0e,0xe6,0x63,0x07, +0xe9,0xf2,0xe8,0xb7,0xab,0x55,0xaa,0x5b,0x78,0x57,0xb5,0x65, +0xa7,0x63,0x15,0xbd,0x05,0x43,0xe1,0x38,0x59,0x0f,0xae,0xf8, +0x1d,0xcc,0x33,0xc2,0x79,0xd4,0x4a,0xbb,0xae,0x37,0xfd,0x12, +0xd7,0xad,0x37,0xf9,0x12,0x7b,0x2f,0x41,0xaf,0xf0,0x2b,0x7a, +0xa3,0x9f,0x54,0x65,0x04,0xcc,0x99,0xbe,0x92,0xe2,0x5e,0x1d, +0x70,0xf8,0x72,0x74,0x3d,0xac,0xfb,0x92,0x15,0xe3,0xc0,0x55, +0x92,0x53,0xc9,0x87,0xd5,0x2c,0x3d,0x6c,0x35,0xc1,0x3a,0x58, +0x0d,0x75,0x0c,0x7e,0x83,0x74,0xff,0x3a,0xba,0x7f,0x1d,0x0b, +0x1f,0xe3,0x3a,0x02,0xeb,0xa0,0x4e,0x2a,0xba,0xf4,0x17,0x13, +0x4b,0x30,0x80,0x51,0x26,0xa4,0x34,0xe8,0x7c,0x07,0xe7,0x40, +0x49,0xc1,0x52,0x4b,0x45,0x5d,0x6d,0x49,0x2d,0xa7,0xc6,0x49, +0x36,0x37,0x2f,0x3b,0x2f,0x2b,0x9f,0x13,0xcc,0xa0,0x75,0x32, +0x0a,0x5b,0x21,0x84,0xd9,0xff,0xfe,0xba,0x83,0xb8,0xe4,0x70, +0x95,0x0d,0x5f,0x9b,0x5d,0x9d,0x5b,0x95,0xcb,0xe1,0x5e,0xc8, +0x66,0x2d,0xf7,0x2f,0xb4,0x47,0x5f,0xef,0x02,0xda,0x2c,0x27, +0xeb,0xe1,0x8d,0xd1,0x51,0x98,0xc9,0x0d,0xbd,0xcd,0x1c,0x2e, +0x0b,0xfd,0x67,0x9a,0x70,0x4e,0x8b,0xce,0x27,0x52,0x9a,0xb0, +0x9e,0xf0,0x33,0x99,0x9c,0x7e,0x63,0x62,0x3a,0x83,0x2f,0xce, +0xd4,0x9b,0x9c,0x7e,0x9b,0x15,0x7c,0x30,0x88,0xf8,0xfb,0xba, +0xfa,0x39,0x07,0x72,0xf8,0x98,0x69,0x2e,0xaf,0xaf,0xa8,0xa9, +0xe2,0x16,0x23,0x4f,0xe0,0x1c,0x73,0xda,0x29,0xd1,0x2d,0xd6, +0x8b,0xc3,0x08,0x46,0xb8,0x0d,0xd3,0x09,0x4e,0xc7,0x46,0x36, +0xbd,0xf6,0x42,0x63,0x92,0xe4,0x52,0x61,0x22,0x91,0xe0,0xfb, +0x97,0xc0,0x77,0xf2,0x47,0xf4,0xfd,0x3f,0x94,0x7d,0x67,0x74, +0x14,0x47,0xb7,0x2d,0x69,0xba,0xdb,0x18,0x0b,0x8c,0x5d,0x72, +0x4b,0x82,0x19,0x72,0xce,0x26,0x67,0x91,0x04,0x48,0x28,0xe7, +0x9c,0x23,0x12,0x42,0x08,0x65,0x04,0x42,0x01,0x24,0x24,0x94, +0x73,0xce,0x28,0xe7,0x9c,0x33,0x39,0x9a,0x6c,0x8c,0xc1,0x36, +0xce,0xd9,0x7c,0xa7,0xc7,0x67,0xe4,0xfb,0xaa,0xc5,0x77,0xdf, +0x7a,0x6f,0xdd,0x7b,0x7f,0xdc,0x35,0x4b,0x33,0xad,0xea,0x54, +0x5d,0xe1,0xd4,0xde,0xd5,0xa7,0xf6,0xb9,0x06,0x5b,0x59,0x79, +0xd8,0x78,0x1c,0xa1,0x25,0xe3,0x74,0x3e,0x95,0x52,0xc4,0x5d, +0x70,0x09,0x22,0xc7,0xa5,0x2c,0xac,0x68,0xbd,0x7f,0xb5,0xe2, +0x4b,0x0e,0x0a,0x99,0x93,0x97,0xfc,0xa2,0x4e,0x49,0xfd,0xa3, +0x82,0x2f,0xb8,0x8a,0x75,0x9f,0x69,0x26,0x01,0x75,0xe6,0x4e, +0x75,0xe6,0x50,0x8a,0x2c,0xb1,0xfe,0x52,0x7d,0xcc,0x00,0xa7, +0xf8,0xd1,0x18,0xac,0x18,0xcf,0x7d,0x7b,0x0d,0x31,0xdc,0x29, +0xc7,0x90,0xaf,0x4d,0x14,0xab,0x9f,0x66,0x00,0xca,0x59,0x33, +0x7a,0xfb,0x29,0x47,0x30,0xc8,0xbc,0x50,0x87,0x87,0x88,0x5e, +0x98,0xf3,0x78,0x18,0xd6,0x73,0x9d,0xf4,0x42,0x87,0xcb,0xc4, +0xe5,0xd0,0x01,0xff,0xcf,0x72,0xe8,0xf1,0xf9,0x50,0x4a,0xe0, +0x32,0x13,0x6d,0x1a,0x65,0x75,0xce,0x81,0xc3,0x10,0x46,0xb8, +0x0b,0x73,0x09,0xce,0xc5,0x2a,0x36,0xb5,0x39,0xa1,0x5d,0x54, +0x9a,0xef,0xc5,0xcf,0x88,0x63,0xad,0x61,0x9d,0x6d,0xa1,0x9b, +0x23,0xdf,0x79,0x72,0xc0,0xb9,0xce,0x83,0x53,0x12,0xec,0xe4, +0x0c,0x01,0xe3,0x21,0x9c,0x0b,0xab,0x0c,0x71,0x15,0xce,0x31, +0x78,0x8a,0x53,0x19,0x8c,0x70,0xc1,0x6d,0x38,0x05,0x17,0x4a, +0x9b,0x1d,0x7e,0x07,0x95,0x36,0x51,0x96,0xc9,0x5c,0x05,0x68, +0x29,0xae,0xb9,0x88,0x33,0xce,0x6d,0x97,0x5a,0x44,0x84,0x9e, +0x73,0x53,0x3b,0xc6,0xe4,0x18,0x48,0x7a,0x99,0xeb,0xe5,0x45, +0x8f,0x53,0x65,0xe9,0x2f,0xe3,0x41,0x35,0x16,0x9c,0x38,0xdc, +0xc2,0xc4,0x16,0x5c,0x2a,0x28,0x54,0x05,0xc3,0x3d,0xe4,0x6b, +0x60,0x6b,0x7e,0x49,0x05,0x25,0x4a,0x59,0x53,0xf0,0x83,0x96, +0x65,0x6f,0x90,0xab,0xeb,0xe7,0x37,0xc0,0x34,0x87,0xbf,0x82, +0x60,0x12,0x77,0x88,0x09,0xc2,0x49,0x4e,0x38,0x79,0x2b,0x4e, +0xe2,0xf0,0x33,0xc5,0x0c,0x22,0x9f,0x8d,0xbe,0xe3,0xc1,0xc3, +0x7f,0xb1,0xc2,0xf3,0x69,0x30,0x4d,0x51,0x82,0xd3,0x18,0xe1, +0x09,0xc4,0x91,0x5e,0xd3,0x1e,0xcd,0xe6,0xa3,0xcd,0x6d,0xbc, +0xdd,0x4d,0xd3,0x1b,0xa6,0xbd,0xdc,0x41,0x45,0x1b,0xf9,0xf5, +0xda,0x5f,0x6f,0x1e,0xfd,0xe4,0xda,0xcd,0xef,0x5e,0xb5,0xf4, +0xd3,0xa5,0x3a,0xf4,0x61,0x66,0xca,0x6b,0x89,0x81,0x70,0x7d, +0x88,0x1d,0xef,0x1a,0xdf,0x48,0xc0,0x40,0x3e,0x07,0xe3,0xc6, +0x23,0x47,0x18,0x4a,0xf0,0x68,0x4f,0x50,0x11,0xaa,0x41,0x85, +0x91,0xef,0x51,0x5c,0x24,0xfd,0x18,0x0d,0xac,0x3e,0xb2,0x68, +0xc6,0x26,0x76,0x5f,0xee,0x8d,0xed,0xe7,0x04,0x0b,0x08,0x56, +0xa4,0xa1,0x25,0x83,0xa6,0x27,0x71,0x0b,0x2d,0xfa,0x59,0xd2, +0x36,0xab,0x07,0x5f,0x36,0xfd,0x9c,0x0f,0x93,0x55,0x68,0x1d, +0x05,0xac,0xdb,0xb3,0x1f,0x17,0x1c,0xa8,0x32,0xe6,0x61,0xf3, +0xcb,0x5b,0xaf,0x12,0x9f,0x50,0x1a,0x93,0xb2,0xeb,0xe9,0x76, +0xd8,0xba,0xb6,0x92,0x82,0xe3,0xe5,0xcf,0xb6,0xdd,0xf7,0x7b, +0x2d,0x4a,0xb8,0x67,0x10,0xc5,0x3c,0x98,0x29,0xcc,0x63,0xda, +0xb1,0x92,0x38,0x96,0x59,0x94,0x3a,0x88,0x6b,0xcf,0xdb,0x02, +0xba,0xbc,0xeb,0x7c,0x68,0x2b,0x7a,0x2b,0x1f,0x23,0xb8,0x18, +0x0f,0xc0,0x2e,0x5d,0xdc,0x85,0xbb,0x61,0xb1,0x3e,0x9a,0x0b, +0xb9,0x60,0xce,0x8e,0x97,0x8d,0xdf,0x25,0x6f,0x41,0x57,0x6e, +0x80,0x31,0xe3,0x3d,0x2c,0xb5,0xb7,0x9b,0x09,0x7e,0x22,0x7c, +0x0d,0x9f,0x30,0x72,0xfd,0xf1,0x1a,0xe2,0x3e,0x66,0x76,0xdf, +0xae,0xdb,0xe6,0x38,0x9f,0xed,0x9f,0xe7,0x93,0xe7,0x6d,0x12, +0xa5,0x7f,0x41,0xe7,0x02,0x07,0xf3,0xe1,0x0c,0x5c,0xc4,0x33, +0x6f,0xa0,0x74,0x40,0xf1,0xb5,0x11,0x64,0xae,0xc3,0x93,0x78, +0x11,0x4e,0xe2,0x62,0x76,0x79,0xd4,0xe2,0x0b,0xab,0xa3,0x13, +0x0c,0x78,0x38,0x9c,0x08,0xce,0xe9,0xb0,0x21,0x27,0xd3,0x2f, +0xdd,0x2f,0x35,0x90,0x53,0xd8,0x08,0xea,0x04,0xb6,0x52,0x1e, +0xbd,0x95,0x11,0xe6,0x29,0xe3,0x3e,0x98,0x07,0xfb,0x28,0x03, +0x3d,0x4b,0x5b,0xcc,0xbf,0x80,0x52,0x28,0xe4,0x7e,0x84,0x05, +0x7d,0xb8,0xe0,0x17,0xa3,0x65,0xa8,0x6a,0x02,0xaa,0x2b,0x69, +0x53,0xf8,0x15,0xa6,0xcc,0x43,0xa9,0x31,0x48,0x71,0xe3,0x00, +0x6c,0x04,0xb5,0x7e,0xb6,0x03,0x6e,0x12,0x3c,0x7e,0x16,0x97, +0x1e,0x44,0x22,0xed,0x74,0x1e,0x83,0xe9,0x45,0x30,0x33,0x11, +0x76,0xa9,0x34,0x3b,0xb4,0x18,0x55,0x58,0x36,0x54,0xf1,0xe8, +0x29,0xea,0xaf,0xe8,0x48,0x7e,0x64,0x5a,0x33,0xb3,0xda,0x64, +0xf2,0x7a,0xcc,0x60,0x15,0xc3,0xe3,0xcd,0x94,0xa2,0xac,0x96, +0xef,0x47,0xfb,0xf1,0x2c,0x56,0x3e,0x2a,0x9c,0x26,0x5e,0x1d, +0x36,0x03,0xf6,0x8d,0xae,0x1e,0x3c,0x6c,0x80,0xe5,0xec,0xf8, +0xaa,0x93,0x44,0xf1,0x70,0x89,0xf0,0x90,0x15,0xfe,0x56,0xcc, +0x24,0x71,0x35,0x97,0xea,0x1a,0x55,0x41,0x99,0x6d,0x72,0x6a, +0x31,0xae,0xb0,0xaa,0xaf,0xe6,0x31,0x8e,0xf5,0xec,0xb4,0x1e, +0xb6,0x6f,0x12,0x61,0xff,0x6e,0xb2,0x02,0x35,0x7e,0x62,0x71, +0xf1,0x34,0xd0,0x58,0x4a,0xfb,0x86,0xd2,0xdf,0xaa,0x60,0x40, +0x9a,0x32,0x33,0x9b,0x64,0x7f,0x89,0x61,0xb3,0x70,0xb6,0x35, +0xeb,0x1d,0x95,0x50,0x22,0xa3,0x57,0x6e,0x2b,0xef,0xae,0x6f, +0x6e,0xf6,0x68,0xe1,0x3d,0xdd,0x9c,0x3c,0xdc,0x4e,0x73,0xb0, +0xd0,0xfc,0x29,0xec,0xeb,0xc7,0x7d,0x2f,0xf5,0xb7,0xa0,0xce, +0x4b,0x83,0x2d,0xb8,0xd6,0x18,0xd6,0xee,0x32,0x5e,0x8d,0x12, +0x0a,0x0f,0x70,0x36,0xeb,0xe4,0x67,0xe1,0xeb,0x18,0x92,0x6f, +0xcc,0xd7,0x66,0x35,0xe4,0x56,0xe5,0x73,0x38,0x6d,0x40,0xd0, +0x1a,0x7c,0x01,0x3a,0xdb,0x7a,0x11,0x58,0xa3,0xfc,0x80,0x6e, +0xe9,0x78,0xa2,0xf0,0x8a,0x8c,0x5f,0x1c,0x7a,0x0b,0xcb,0xe5, +0x52,0x16,0x97,0x1b,0x91,0x1f,0x14,0x0d,0xab,0x18,0x41,0x94, +0xfd,0x43,0x01,0xf4,0x41,0x60,0x51,0x8a,0x23,0x04,0x92,0xbe, +0x14,0x63,0x01,0xce,0xc7,0x79,0xa4,0x41,0xbb,0xe6,0x50,0xe9, +0xfe,0xc1,0x12,0xfe,0xc4,0x03,0x97,0x7b,0xce,0xc3,0x9c,0xa2, +0x09,0x4f,0x93,0xab,0x37,0x5a,0x6e,0x17,0xdf,0x36,0xc9,0xe3, +0xfd,0x74,0x6d,0x34,0x8d,0x0c,0x38,0x61,0x26,0x7c,0x4a,0x8a, +0x74,0x0b,0x8f,0x65,0x1e,0x1c,0xce,0xe6,0x83,0x1e,0x9c,0xbe, +0xe1,0x3b,0xc8,0xa1,0x55,0x30,0xc9,0xd0,0x4d,0x39,0x9c,0x70, +0x74,0x34,0x85,0x8f,0xb8,0x13,0x76,0xfb,0x8c,0x28,0x0a,0xd5, +0x05,0xde,0xe4,0x78,0xb0,0x47,0xb0,0xb8,0x5a,0xff,0xf5,0x8f, +0x43,0x2b,0xa1,0x58,0x17,0x8b,0xd7,0x1a,0x7c,0x8b,0x0a,0xd6, +0x2d,0xc4,0x25,0xd4,0x25,0x34,0xc7,0x80,0xff,0xa5,0xee,0x69, +0xed,0x93,0x16,0xae,0x1e,0x1e,0x10,0x0c,0x0c,0xc4,0xf5,0x06, +0x38,0x47,0xda,0x35,0xa1,0x81,0x59,0x08,0x7b,0xc4,0x17,0xce, +0xc5,0x20,0x1b,0x4f,0x10,0x43,0xaf,0x18,0x88,0x61,0x73,0x26, +0x44,0x30,0x7b,0xf0,0x32,0x0b,0x8f,0x44,0x11,0xcc,0x88,0x30, +0x5c,0x6e,0x8a,0xaa,0xa2,0x08,0xe6,0xb0,0x28,0x82,0xb9,0x5d, +0x14,0xc1,0x2c,0x85,0x95,0xe3,0xf1,0xf8,0x9e,0x78,0xc6,0x2f, +0x4c,0xf3,0x84,0x08,0x66,0x0f,0x66,0xb3,0xf8,0x31,0x3d,0xe3, +0x54,0x9b,0xe3,0x98,0x4b,0x8b,0x93,0x1b,0x5f,0x63,0xdf,0xa0, +0x57,0x62,0xce,0x09,0x6c,0x05,0xf1,0xe9,0x70,0xbc,0xea,0xd0, +0x4e,0xd3,0xea,0xed,0x1b,0x8e,0x89,0x22,0x98,0xed,0xe8,0x49, +0x7c,0xbb,0xec,0xaf,0x39,0xb7,0x39,0xb9,0xf3,0xb5,0x36,0x0d, +0x3a,0xa5,0x94,0x52,0xb1,0x55,0xe4,0x54,0x97,0xc3,0x55,0xfb, +0x4e,0x47,0x77,0xbe,0xde,0xb6,0x51,0xab,0xdc,0x98,0x8e,0x50, +0x1f,0xc0,0x12,0xf2,0x45,0x67,0x97,0x25,0x7c,0x84,0x1e,0x37, +0xe1,0x4a,0x37,0x6e,0x7a,0x06,0xca,0x5d,0xa8,0xfc,0x19,0x2c, +0xed,0xc2,0xa5,0x0f,0x0d,0xd4,0x71,0xe7,0x43,0x43,0x75,0x5c, +0x66,0x01,0xcb,0xf6,0xa1,0x8a,0x05,0xa8,0xec,0xc4,0xa5,0xe6, +0x90,0x74,0x14,0x9d,0xf0,0x23,0x73,0x8b,0xee,0xad,0x1a,0xa6, +0x77,0x70,0xff,0x08,0x0b,0xfb,0x85,0xc9,0xb4,0xcf,0xcf,0x65, +0xb3,0xa8,0x25,0xfe,0x80,0x69,0xcd,0xa6,0x8d,0xf2,0xed,0xad, +0x5e,0x76,0x7c,0x8a,0x10,0x4b,0x6d,0x25,0x93,0x7a,0x2b,0xe5, +0x5a,0xe2,0xb0,0x5e,0x3c,0x1f,0x69,0x18,0x7e,0xe4,0x9c,0x06, +0xb7,0x42,0xef,0x35,0x13,0xb0,0xd0,0x77,0xbe,0xf7,0xd6,0x56, +0xfb,0x26,0xfb,0x66,0x2b,0x57,0x75,0xcb,0x43,0xc7,0xb4,0x44, +0xff,0xd9,0x1b,0x5d,0x77,0xea,0x1f,0x97,0x1e,0x2f,0x75,0x2f, +0x73,0x69,0xec,0xe4,0x3d,0x9a,0x3d,0xeb,0xbd,0x6a,0xba,0x60, +0x46,0x09,0xc8,0x52,0x61,0x07,0x27,0x2c,0x02,0x51,0x13,0x61, +0xe7,0x67,0x2c,0xec,0xc4,0x0f,0xc8,0x4e,0xdc,0xf9,0x8c,0x55, +0x68,0x61,0x15,0x29,0x7a,0x59,0xf0,0x43,0xf6,0x0f,0xdc,0xb7, +0xcc,0x79,0xfc,0xc4,0x1f,0x3f,0x70,0xc0,0xc9,0x5e,0x55,0xde, +0x57,0xbc,0x4b,0x39,0xe1,0x5c,0x03,0x3d,0x6c,0xe5,0x33,0x16, +0x1c,0x77,0x92,0x67,0xb0,0x7e,0x27,0x8b,0xee,0x16,0x64,0x2b, +0xae,0xfc,0x82,0xa6,0x28,0xc3,0xfa,0xad,0xb8,0x9e,0x51,0x92, +0xcb,0xe5,0x87,0xa8,0x15,0x1b,0x03,0x1d,0xc5,0x8a,0x37,0xc7, +0xd6,0x29,0x54,0x51,0x67,0x8c,0xa2,0x49,0xf9,0xb9,0xf1,0x63, +0x04,0x3d,0x18,0x97,0xf3,0x29,0x14,0x83,0x6c,0x85,0x08,0x88, +0xa6,0x2c,0xa2,0xb3,0xa6,0xad,0xb9,0xb4,0x99,0x02,0xd6,0x2f, +0xd8,0x8c,0x9c,0x8c,0x9c,0xb4,0x5c,0xdd,0x1c,0x7e,0xff,0xe2, +0xd5,0x5b,0x70,0xfd,0xce,0x6a,0x73,0xbe,0x22,0xab,0x3c,0xab, +0x2c,0x47,0xec,0x3f,0xd9,0xac,0xc9,0x52,0x9c,0xbc,0x1f,0x3d, +0xad,0x0b,0x75,0x79,0x08,0xe8,0x01,0xd5,0xcf,0x47,0x61,0x31, +0x37,0x84,0xbb,0x19,0xad,0x52,0xaf,0xbb,0x52,0xf0,0x64,0xba, +0xf3,0x8b,0xda,0x65,0xdf,0x88,0xf3,0x9d,0x18,0x24,0x1c,0x26, +0x1e,0xce,0xd6,0x2e,0x96,0xee,0x1c,0x76,0x32,0x1d,0xd5,0xcd, +0x75,0xb5,0xf5,0x1c,0xce,0xc0,0x0d,0x04,0x2e,0x31,0xd1,0x26, +0x11,0x56,0xa1,0xb6,0x1c,0x9e,0x66,0x84,0xeb,0x30,0x9f,0xe0, +0x7c,0xac,0x66,0xd3,0x5a,0x12,0x3b,0xe3,0xfa,0x68,0x23,0x9d, +0x23,0x6f,0x27,0x38,0xcc,0x62,0xaa,0x37,0x2e,0x3b,0x80,0x53, +0xa4,0xbd,0x46,0x92,0xcf,0xe1,0x93,0x0a,0xd8,0x0d,0x05,0xaa, +0x77,0xe5,0x56,0x70,0x96,0x1d,0xb7,0x42,0x0d,0x02,0x33,0xe5, +0x73,0x71,0x26,0xab,0xd8,0xbe,0x9b,0x9c,0xb1,0x0a,0xb2,0x3b, +0x69,0xce,0xa1,0x8a,0x11,0xcc,0xdb,0xc5,0x9c,0x8a,0x39,0x1d, +0xed,0x2f,0x35,0x3a,0x67,0x14,0x6e,0x1c,0x91,0xa8,0xcf,0x77, +0x25,0x75,0x25,0x77,0xa7,0xf8,0xef,0xb0,0x32,0xde,0x6a,0xde, +0x68,0xc2,0xff,0x38,0x3a,0xf4,0xa4,0x00,0xa6,0x36,0xa7,0xb4, +0xa4,0x36,0xa7,0x5d,0x1c,0xe4,0x9d,0xc2,0x9c,0xce,0x3b,0x87, +0x73,0xb1,0x79,0xb1,0x79,0xf9,0xaa,0x0f,0x81,0x19,0xa0,0x1c, +0xb7,0xa8,0x2d,0xbb,0x2e,0xbb,0x8d,0x83,0x66,0x7c,0x4a,0xa8, +0x9d,0xfe,0x74,0x00,0x37,0xb3,0x05,0xf5,0xb9,0x8d,0x79,0x9d, +0xc7,0x32,0xf9,0x20,0xd3,0x00,0x1b,0x1f,0x3b,0x0e,0x95,0x8c, +0x40,0x19,0x97,0x52,0x22,0x0a,0x4b,0x31,0x68,0x0c,0x82,0x60, +0xff,0x00,0xa3,0x04,0xdf,0xc8,0xcd,0x49,0x40,0xa7,0x6f,0x87, +0x6f,0xa3,0xa5,0x1f,0x5f,0xec,0x50,0x6c,0x96,0x63,0xc3,0x09, +0x61,0x78,0x9c,0x74,0x0c,0x55,0xdd,0x2e,0xfe,0x9a,0xbb,0xd1, +0x87,0xf9,0x4c,0x46,0x65,0x7a,0x65,0x4a,0x85,0x51,0x1a,0xef, +0xb9,0xc2,0x6a,0x8b,0xba,0x7a,0x93,0x03,0x5f,0x54,0x94,0x5f, +0x92,0x5b,0x5a,0x6c,0x54,0x69,0xde,0x60,0x6b,0x65,0xa3,0xeb, +0xb2,0xcb,0xb5,0xdc,0x9c,0x7f,0x5e,0x7f,0xa3,0xb1,0xa7,0xb3, +0xcf,0xe2,0xba,0xed,0x63,0xc7,0x8a,0x2e,0x7e,0x5f,0xbd,0x76, +0xb3,0x79,0x3b,0x87,0x2f,0x44,0x71,0xcd,0xe4,0x4f,0xd9,0x4c, +0x0b,0xc9,0x5d,0xa6,0x3d,0x3b,0xa7,0x55,0x06,0x5d,0xbb,0xd8, +0xca,0xe6,0xea,0xa1,0x82,0x2e,0xd3,0x1c,0xfe,0x94,0x91,0xa7, +0xbe,0xbd,0x29,0x87,0x1d,0x8a,0xe9,0x23,0xf0,0x88,0xe9,0x7d, +0x41,0x4e,0xb7,0xf9,0xb4,0x78,0xd7,0x59,0xf9,0xf2,0x65,0x2e, +0xa5,0x36,0x05,0x76,0x9c,0x5c,0x3d,0x9e,0x04,0x68,0x9c,0x34, +0x70,0xb6,0xb4,0xef,0x3c,0xde,0xef,0x7b,0x35,0x31,0x95,0x57, +0xd8,0x62,0x2b,0x01,0x0b,0xd8,0x8f,0x16,0x4c,0x0f,0x25,0x6e, +0x5f,0xfe,0xb2,0x99,0xa5,0x68,0x5f,0x4a,0x0e,0xe1,0x4b,0x4c, +0x1d,0x03,0x1b,0x28,0xc6,0xb4,0x31,0x48,0x83,0x0e,0x5a,0x57, +0x7b,0xd9,0x2c,0x23,0x09,0x2c,0x65,0x7a,0xf3,0x72,0x7a,0x45, +0xcf,0xd7,0xb7,0x77,0x59,0x25,0xf0,0x56,0x27,0x7f,0xcf,0xd3, +0xfd,0x67,0x1e,0x2b,0x4f,0x12,0x7e,0x24,0x0a,0x6f,0xe6,0xb7, +0xde,0xe1,0xfb,0xb9,0x3f,0x73,0xe0,0x2b,0x7a,0x8e,0x7a,0x45, +0xf8,0x70,0xc7,0xcf,0x07,0x45,0xd9,0xab,0xd1,0x61,0x3a,0xdd, +0x58,0x8c,0xf9,0x73,0xad,0x22,0x67,0x28,0x4b,0x96,0x52,0x7b, +0xb9,0x3e,0xee,0x4b,0x4e,0x71,0xdd,0x18,0xbc,0x19,0xbf,0xa5, +0x7b,0x0e,0xe3,0x52,0xeb,0x88,0xce,0xd0,0x81,0x73,0x8d,0x96, +0x41,0x7c,0x9a,0x6d,0xba,0x76,0x82,0x71,0x55,0x1a,0x9f,0xe1, +0x5a,0x90,0x98,0x9f,0x98,0x97,0xa4,0x82,0x11,0xe0,0xcd,0xba, +0xe1,0xc7,0x1b,0xd5,0xf1,0xd0,0xbe,0x52,0x3a,0x60,0x99,0x7e, +0xfe,0xeb,0xb7,0x75,0xb0,0x81,0x83,0x22,0x66,0xfc,0xf3,0x1f, +0x49,0xd1,0xeb,0xb4,0xdf,0x2f,0xff,0x65,0x94,0xc0,0x47,0x2f, +0x0a,0x5b,0xed,0xb3,0x99,0x13,0x96,0xbc,0x25,0x70,0x58,0x9f, +0x71,0x88,0x76,0x16,0x5d,0xf9,0xd5,0x19,0x4a,0x3c,0x13,0x6a, +0xc4,0x98,0x29,0x43,0x60,0x82,0x3b,0xd8,0x2a,0x1c,0x22,0x48, +0x98,0x13,0x61,0xa9,0x15,0x32,0x38,0xa8,0x83,0x86,0xac,0x71, +0x89,0xf7,0x55,0x29,0xa8,0x31,0x1d,0xd9,0xd9,0x6d,0x14,0x31, +0x19,0xe4,0x48,0x94,0xe0,0x27,0x61,0x0d,0x71,0x09,0x76,0x0a, +0x76,0x3a,0xc3,0xd1,0x7a,0x7e,0x7f,0x18,0xdf,0x07,0x4d,0x5d, +0xd4,0x7c,0x27,0x26,0x16,0xcf,0x5a,0x86,0x58,0x9d,0x79,0x17, +0x30,0x2d,0xad,0x25,0x5d,0x0c,0xf1,0x51,0xfd,0x4e,0x4c,0xec, +0x0d,0xd3,0x9d,0x93,0xdf,0x21,0x83,0x6e,0xb6,0x39,0xbb,0x39, +0xa7,0x89,0xa2,0xd5,0x9f,0x71,0x0b,0x19,0xc4,0xf4,0x89,0x68, +0x97,0x68,0xc9,0x26,0xf7,0xc5,0xf7,0xc5,0xf6,0x71,0xc2,0x09, +0x08,0x50,0x78,0x7d,0xc1,0x80,0x46,0x0a,0x1c,0x28,0x01,0xd5, +0x6a,0xd7,0x7e,0x1e,0x95,0xdd,0xd0,0xc8,0x17,0x8d,0xc2,0x38, +0x71,0xda,0x60,0xc7,0x29,0xdc,0xb1,0x12,0xe7,0x4a,0x7b,0xac, +0x07,0x9f,0xd7,0x7c,0x9b,0xff,0x83,0x0a,0xd8,0x30,0xfe,0x9b, +0xd5,0x0d,0x70,0xfe,0xfe,0x72,0x0a,0x33,0x64,0x0f,0x7f,0xb8, +0x1b,0xff,0x83,0x08,0x33,0x96,0xfd,0x72,0x0c,0x36,0x6e,0x2f, +0xa5,0x30,0x63,0xd5,0xd3,0x4d,0x83,0xbe,0x5f,0x70,0xb0,0x09, +0xf2,0x88,0x62,0x1d,0x4c,0x17,0xd6,0x31,0x0d,0x78,0x85,0x38, +0x5e,0x31,0xbd,0x62,0x9b,0xe7,0xe5,0xcc,0x77,0xf8,0xf5,0x78, +0xd6,0x79,0x53,0x8b,0xc9,0x89,0x16,0xb3,0xbf,0xdb,0x18,0x66, +0xe3,0x99,0x5b,0xd0,0xdb,0x8d,0x07,0x9f,0xc1,0xa2,0x2e,0x5c, +0xf4,0x00,0xb6,0x74,0xe1,0x96,0x87,0xfa,0xb4,0xa4,0xc5,0xaf, +0x4d,0x16,0xa2,0x2f,0xe8,0x22,0x0b,0x58,0xb4,0x13,0x0f,0x98, +0x43,0xeb,0x11,0xf4,0xc3,0xd9,0x86,0xe6,0x83,0x5b,0xf7,0x9b, +0x3e,0xa0,0x34,0x5f,0xb4,0x98,0x0b,0x90,0xc1,0x95,0x13,0x16, +0x53,0x8d,0x69,0xcb,0xce,0xa4,0x16,0xf3,0x3e,0xb5,0x98,0x04, +0xd2,0x44,0xcd,0xcc,0x10,0x37,0xca,0xbb,0xce,0x7e,0x33,0xb4, +0xfe,0x9d,0x1f,0xfc,0x54,0x03,0x98,0x8a,0xa9,0xac,0xdd,0x19, +0xfb,0x50,0x07,0x51,0x80,0xaf,0x3e,0xb5,0x3e,0xbd,0x41,0x14, +0xe0,0x5b,0x2c,0x0a,0x66,0xbe,0xa0,0xc5,0x9f,0xdf,0x2a,0xca, +0xb0,0xd5,0x67,0xd5,0x67,0xd7,0xe5,0x70,0x82,0x9a,0x30,0x8d, +0xec,0xc7,0x43,0x0f,0x58,0x38,0x84,0x33,0xa8,0x01,0x3c,0xf4, +0x8c,0x1d,0xc6,0x28,0xb2,0x0b,0x77,0x3c,0x65,0xc1,0x77,0x17, +0xa1,0xa3,0xf3,0x2e,0x16,0x83,0xcd,0xa9,0x25,0xdc,0x41,0x2d, +0xa1,0xaf,0x32,0xec,0xdb,0x8a,0x14,0xaa,0x40,0xdf,0x3b,0xf5, +0xbf,0x50,0x51,0xfd,0x2f,0xf4,0xd9,0xd0,0xce,0x89,0xdb,0xcf, +0x33,0xf8,0x17,0xa6,0xb0,0x0e,0x21,0xf6,0x67,0x9d,0xce,0xd1, +0x9b,0xd7,0xa5,0xd6,0xa5,0xd7,0x89,0x37,0x5f,0xce,0x66,0x1f, +0x93,0x3c,0x63,0xda,0x73,0xf2,0x5b,0xc4,0x78,0x62,0x35,0x19, +0x13,0xea,0x7f,0xb0,0x5c,0x20,0xe4,0x30,0x2e,0xb4,0xfb,0x9c, +0x8d,0x34,0xf2,0xb4,0xdf,0xef,0x50,0xeb,0xc0,0x7f,0xd1,0x5d, +0x3b,0x9c,0x78,0x97,0xeb,0x43,0x09,0x13,0x44,0xc9,0x67,0xe0, +0xc5,0x14,0x6b,0x7e,0x34,0xad,0x27,0xa3,0x23,0xeb,0x8a,0x13, +0xff,0xb0,0xa5,0x6e,0x28,0xe1,0x2e,0xd7,0xbb,0x8a,0x71,0xc8, +0x3e,0xdb,0x24,0x1d,0x60,0x2a,0xd3,0xd2,0x2a,0x65,0xc3,0xac, +0x7d,0xba,0xe4,0xb0,0x33,0x1b,0x18,0x15,0x97,0x2b,0xfb,0xe2, +0x55,0x0b,0x92,0xdb,0x30,0xbd,0x05,0xa7,0x5f,0x37,0xd3,0x32, +0x60,0x93,0x73,0x13,0x73,0xe3,0xb3,0x6d,0x52,0xf9,0x73,0x36, +0x01,0xb6,0x9e,0x2e,0x0d,0x27,0xf9,0xb4,0xcc,0x94,0xac,0x94, +0x6c,0xee,0xd1,0x61,0x9c,0x6d,0x77,0x8b,0xb9,0x60,0xe6,0xe3, +0x62,0xe1,0x19,0x55,0xcf,0xfb,0x86,0xfb,0x84,0x9f,0x8c,0xe0, +0x7e,0xbf,0xdd,0x32,0xff,0xf6,0x9f,0x2d,0x0b,0xe9,0xc9,0x9a, +0x6c,0x52,0x6e,0x02,0x3d,0xd9,0x36,0x59,0x3c,0xd9,0xc6,0xd3, +0xb5,0xfe,0x24,0x9f,0x9e,0x99,0x96,0x9d,0x42,0x8b,0x2d,0x63, +0x7c,0x0d,0x11,0x94,0x14,0x05,0x0a,0x25,0x56,0x70,0x82,0x2f, +0xc9,0x51,0xc5,0x8a,0x9b,0xac,0xb0,0x02,0x27,0x91,0xc3,0x8a, +0x15,0xb7,0xc5,0xad,0x29,0x44,0x43,0xb1,0xe2,0x0e,0x8b,0xaa, +0x98,0x4d,0x60,0x72,0xc1,0x4f,0x0d,0xa3,0x4d,0xf6,0xf5,0xfc, +0x31,0xd7,0x4f,0xdd,0x97,0x06,0xd3,0xee,0xd3,0x40,0x7e,0x3e, +0xf9,0xd2,0xfb,0x85,0x0b,0xb5,0x3f,0x3b,0x6b,0x36,0x54,0xae, +0xce,0x9b,0xf0,0x55,0x2c,0x23,0x2d,0x9d,0x95,0x43,0xf9,0x9f, +0xfd,0x4f,0xbe,0x8a,0x85,0x05,0xf9,0x85,0x39,0x85,0x45,0x96, +0x95,0x0e,0x8d,0x2e,0xd6,0x2e,0xfa,0x27,0x0e,0x88,0xbe,0x8a, +0x4f,0xae,0x5c,0xaf,0xea,0x6e,0x19,0xb0,0xbf,0xe5,0xfa,0xf8, +0x78,0x69,0x17,0xbf,0xff,0x8a,0x4e,0xa5,0x59,0x1d,0xa7,0x48, +0x81,0x0f,0x08,0x46,0xf6,0xfc,0x77,0xee,0x8a,0x3b,0xd8,0xf2, +0xea,0xd2,0xd6,0xbc,0x1a,0xcb,0x22,0x3e,0xd0,0xcd,0xdb,0xce, +0xdb,0xa3,0xd9,0x87,0x5f,0x3e,0xe1,0xad,0xb8,0x8c,0x69,0x2a, +0x3b,0xd1,0xe4,0x5b,0xe1,0x5e,0xad,0x62,0xe7,0x55,0x79,0xbc, +0xcc,0xb5,0xd8,0x55,0x65,0xd3,0x84,0xb3,0x22,0x23,0x24,0xf7, +0x90,0xb8,0xd8,0xd8,0xd8,0x38,0x29,0xa5,0x50,0xc1,0x06,0x27, +0x2d,0x9d,0x1d,0x6d,0x1a,0x3d,0xda,0xfd,0xfb,0x39,0xec,0x5f, +0xfe,0x5f,0x1d,0x16,0xf5,0xc5,0xb0,0x1c,0x13,0x8e,0x8a,0xb4, +0xf0,0xdf,0xb9,0x2e,0x72,0x14,0xba,0x1e,0x26,0x66,0x87,0x0e, +0xda,0xe0,0xfb,0x36,0x45,0x96,0xfc,0xf5,0xa2,0xab,0x57,0x7a, +0xeb,0x39,0xd0,0x67,0x4e,0x58,0x3b,0x39,0x18,0xbb,0x7b,0x97, +0xb8,0x57,0xb8,0x97,0xda,0x1d,0xe7,0x2b,0x7c,0xae,0x9c,0x2c, +0x3f,0x69,0x70,0xe2,0xe0,0xa9,0x2d,0x01,0x85,0xa6,0x3c,0x04, +0x0f,0xc0,0xdc,0x37,0xc3,0xf0,0x09,0xd7,0x80,0xf6,0x6c,0x41, +0x41,0x4e,0x61,0x66,0x09,0x27,0x3c,0xed,0xfd,0x67,0x92,0x29, +0x23,0x08,0x38,0x46,0x6c,0xcf,0x52,0xfa,0x77,0x8d,0xfd,0xb3, +0xe0,0xd7,0x2b,0xaf,0x5a,0x3d,0xdb,0xf9,0x5d,0x8e,0x5b,0x7d, +0x96,0xf9,0x73,0xc0,0xe8,0x62,0x28,0xab,0x59,0xec,0xf9,0xb9, +0x14,0x8c,0x99,0xb6,0x82,0xbc,0x66,0xd9,0x4b,0x56,0xb7,0x40, +0x82,0xd3,0xa8,0x5d,0x7d,0x2d,0x38,0x93,0x73,0x59,0xe1,0x97, +0x43,0xcf,0x85,0x86,0xf2,0x91,0x40,0x47,0xf8,0x61,0xa4,0x7d, +0x48,0x9b,0xf6,0xa1,0x1d,0xfa,0xb0,0x8e,0x39,0x83,0x33,0xad, +0x29,0x79,0xe3,0x50,0xd6,0x62,0xc1,0x7f,0x07,0x4c,0x3d,0x4c, +0x4e,0xfa,0x8d,0x4b,0x52,0x34,0x5c,0x15,0xe2,0x44,0x51,0xf3, +0xcb,0x51,0x52,0x98,0x82,0x3b,0x5a,0x9a,0x25,0x3f,0x0a,0x33, +0x09,0xac,0xc8,0x84,0x45,0x75,0x30,0xb9,0x99,0x9a,0x98,0x79, +0xf6,0xb8,0xd0,0x1d,0x0f,0x87,0x70,0x18,0xc4,0x62,0x8d,0x3b, +0x2e,0xdc,0x8e,0xef,0x4b,0xbb,0xac,0x46,0xbf,0xaa,0xff,0x2d, +0x17,0x16,0xa8,0xc0,0xcf,0xfb,0xaf,0x0a,0x33,0x15,0x73,0x98, +0x70,0xbc,0x4c,0x12,0x46,0x2e,0xdf,0x78,0xa0,0x0a,0x2f,0xd1, +0x98,0x76,0xa9,0x7e,0xc1,0x89,0xbc,0x0b,0x6a,0x1c,0x7a,0x96, +0x66,0x89,0x07,0xd5,0x21,0x54,0x7d,0x17,0xa7,0x6e,0xa9,0x01, +0x48,0x69,0x96,0x3e,0xb4,0x47,0xd9,0x52,0xe4,0x9b,0xe8,0x18, +0x06,0x93,0x2b,0xdf,0x26,0xfe,0x48,0x33,0x54,0x3e,0x22,0x5c, +0xfe,0x77,0x86,0x5e,0xe2,0xaa,0xc6,0x66,0xc9,0x98,0xe0,0x41, +0xb0,0x47,0xb0,0x07,0xf1,0xed,0x05,0x5e,0x20,0x94,0xc7,0x7c, +0x8b,0x7a,0x2c,0x6a,0xad,0x22,0xc7,0xa8,0x25,0xd1,0x32,0x82, +0xa3,0xcc,0x39,0x5c,0xa8,0xbe,0x1c,0x37,0x1e,0x2d,0xa3,0xa6, +0xfe,0xc8,0xa3,0xd7,0x30,0x3d,0x1d,0x76,0x71,0xe0,0xe0,0xcf, +0x1c,0x8c,0xdc,0x1a,0x66,0x24,0xb5,0x3d,0x1f,0x18,0xa8,0xa9, +0xb6,0x9c,0xc9,0xd6,0x97,0xfc,0xc6,0xbc,0xac,0xad,0x7a,0x98, +0x21,0x4b,0xbb,0x9a,0xf8,0xe6,0xb5,0xea,0x00,0xe6,0x4d,0x2c, +0x73,0x72,0x20,0x11,0xd9,0x11,0xd1,0x67,0xcf,0x9f,0x15,0xc5, +0x6d,0xa5,0xbf,0xf6,0x2f,0x05,0x7d,0x03,0x5a,0xe5,0x13,0xcb, +0x9c,0xce,0x21,0x71,0xc6,0x25,0xbb,0x26,0xe6,0xf4,0xae,0xfe, +0x56,0xf4,0x4e,0x0b,0x3e,0x67,0xe8,0xff,0x2e,0xc2,0x19,0xc0, +0xc5,0xb5,0x4d,0x12,0x18,0x15,0xbc,0x08,0xde,0x32,0xf8,0x73, +0x27,0xe3,0x70,0xc9,0x39,0xc6,0x45,0xba,0xc6,0xf0,0x0d,0x73, +0x51,0x3d,0xea,0x68,0xb8,0x2e,0xb7,0xc9,0xf0,0x09,0xe3,0x8b, +0xd3,0x9d,0x36,0x68,0xa9,0xd7,0x9b,0xf1,0x0f,0xbe,0x6e,0xfb, +0xab,0x18,0xe6,0x72,0xf0,0x21,0x13,0xbd,0xff,0xa2,0xee,0x05, +0x73,0xee,0x58,0x54,0xb0,0xbf,0xbd,0xda,0x61,0x26,0xcd,0x50, +0x32,0xc6,0xdc,0xa9,0xa9,0xfa,0x2e,0x49,0x16,0x3f,0x10,0x7f, +0x3d,0xee,0x11,0xd7,0x35,0x68,0xc5,0xc4,0x8d,0xc6,0xde,0x8a, +0xfd,0x8c,0x6b,0x1b,0xb4,0x85,0x05,0x0c,0x45,0x62,0x27,0x48, +0xeb,0xf7,0x95,0xbf,0xe4,0x89,0x2a,0x9c,0xf9,0xff,0xb0,0x23, +0xf2,0x3b,0x94,0x87,0x04,0xee,0x39,0xbe,0xdc,0x72,0xd9,0x88, +0x7a,0xe7,0xd6,0x98,0xad,0xdc,0xfe,0x50,0x37,0x2d,0xa9,0x39, +0x93,0xa1,0x23,0xe9,0x61,0xbe,0xac,0xbd,0xfe,0xfd,0xaf,0x36, +0xcf,0x0d,0x3f,0x93,0x29,0x16,0x41,0x21,0xf9,0xed,0x08,0x83, +0xb3,0x17,0xb3,0xb1,0xf5,0x97,0x1a,0x9a,0x54,0xfd,0x15,0xd3, +0x48,0xca,0x58,0xc2,0xad,0xcb,0x0f,0xb8,0x3f,0x18,0xf5,0x98, +0x23,0x31,0x7a,0x52,0x25,0xf9,0x26,0x79,0x14,0xc9,0x2a,0x4b, +0xbf,0x92,0x54,0x7a,0x2c,0x85,0x0f,0x3f,0x11,0x7a,0x3c,0xd0, +0x83,0xc3,0x3d,0x8a,0x19,0xc2,0x29,0x61,0x06,0x33,0xee,0xf8, +0x9c,0xd0,0xda,0x5b,0x6e,0x00,0xf3,0x58,0x5a,0x7b,0x76,0x38, +0x6f,0x09,0xad,0x3d,0x0b,0xfe,0x73,0x98,0x5c,0xf5,0x36,0x51, +0x5c,0x9c,0x74,0x65,0xf4,0x5d,0xed,0xc5,0x45,0x49,0xbf,0xc6, +0xf5,0x8d,0x4d,0x9b,0x61,0xf9,0xf9,0xec,0xf0,0xd8,0xd0,0x73, +0x2a,0xa1,0x67,0x25,0x51,0xb4,0x0d,0xcc,0x19,0xc2,0x39,0xa0, +0xc3,0xc0,0x05,0x8c,0xf8,0xcf,0x78,0xf4,0x28,0xc7,0xed,0xe2, +0x52,0x1e,0xb9,0xb8,0x94,0xa7,0x53,0x71,0x90,0x98,0x87,0x27, +0x76,0xcb,0x9e,0xb3,0xb0,0xb9,0x04,0x16,0x36,0xc2,0xec,0x0e, +0x9f,0x41,0x1e,0x59,0x73,0x5c,0xe8,0x82,0xcb,0x7c,0x29,0x3f, +0xd5,0xc4,0x16,0x76,0xf7,0x15,0xdf,0xe7,0x52,0x78,0x20,0x86, +0xb8,0xa3,0x23,0xe7,0x07,0xac,0x7e,0xae,0x04,0x97,0xb0,0x4a, +0xdf,0xcb,0x2b,0xc8,0xa8,0x73,0x8f,0x63,0x8f,0x4d,0x55,0x1b, +0x6f,0xd1,0x6a,0xd0,0xaa,0x5f,0xcd,0x09,0xd3,0xf1,0x13,0x12, +0xf0,0xce,0x7f,0x46,0x07,0x5f,0x09,0x6f,0xe0,0x15,0x5a,0xff, +0x08,0x51,0x43,0xe3,0x2b,0x0d,0x28,0x16,0x1d,0x5a,0x29,0x7a, +0xc6,0xe4,0xe6,0xab,0x36,0x7f,0xbd,0x92,0xc5,0x72,0x63,0x22, +0x4a,0x56,0x68,0x78,0x39,0x68,0x5b,0xd7,0x5a,0xf3,0x8f,0xc6, +0x6a,0x07,0x33,0xbf,0xe0,0x7e,0xdc,0xc3,0x18,0xe6,0x06,0x5e, +0x97,0xc2,0x8c,0x9d,0x14,0xb1,0x08,0xde,0x40,0x08,0x4e,0x66, +0xbc,0x23,0x12,0xcb,0x64,0xb7,0x60,0x21,0x3b,0xde,0x6e,0x45, +0xae,0x39,0x5e,0xb3,0x1c,0x30,0xaf,0x69,0xe5,0xcd,0x3a,0x0f, +0xf7,0x6a,0x36,0x70,0xc5,0xe3,0xcb,0xc8,0x7d,0x98,0xd4,0x0f, +0xaa,0x57,0xfe,0x32,0xcd,0xe3,0xdd,0x71,0x9a,0x25,0xbe,0x77, +0x64,0x39,0x27,0x3c,0x82,0x4d,0x04,0x1a,0x06,0xb1,0xe1,0x37, +0xed,0x25,0x78,0xc5,0x10,0xae,0xe0,0x6c,0xbc,0x63,0x20,0xd7, +0x1d,0x12,0xdf,0xd9,0x42,0x9f,0x5c,0x46,0x4e,0x9b,0x9e,0xb2, +0xf1,0x71,0xe0,0x0a,0x58,0xe8,0x31,0xc0,0xab,0x2c,0xe6,0x9d, +0xc0,0x59,0x38,0x15,0xf7,0x48,0x3b,0x6c,0xef,0xfc,0x59,0xfb, +0x75,0xde,0xd7,0x2a,0xb1,0x49,0xf1,0x97,0x2e,0x47,0xde,0xc3, +0xe5,0x7c,0x67,0xc3,0x61,0x58,0x18,0x9e,0x71,0xf6,0xf2,0xd9, +0x30,0x95,0x90,0x73,0x17,0xe2,0x52,0xaf,0x26,0x0e,0x5f,0x7e, +0xac,0xd2,0x3a,0xd6,0x30,0x5a,0x71,0x8b,0xcb,0x04,0x5d,0x32, +0xfe,0xcf,0xb0,0xd0,0x04,0x26,0xf0,0x92,0xbd,0x86,0x2f,0x29, +0x76,0x53,0x78,0x51,0x5e,0x92,0xa5,0x2f,0x81,0xf7,0x98,0xf6, +0xdc,0x7c,0x4a,0xca,0x1a,0xe8,0xf8,0x8a,0xa9,0x94,0x45,0xbe, +0x01,0xd9,0x3a,0x16,0xf6,0x29,0xbf,0x81,0x85,0xeb,0xd8,0xf1, +0xaa,0x10,0x12,0x83,0x53,0xcf,0xaf,0xf2,0xd9,0xd9,0xe3,0xcb, +0x97,0xbf,0x49,0xf9,0x13,0xa6,0xa8,0x42,0x1d,0x7e,0x48,0x7e, +0x00,0xd9,0x2a,0xf1,0xb0,0x77,0xf1,0x39,0xff,0xc1,0x59,0x44, +0x21,0x1d,0x18,0x03,0x37,0x78,0xcd,0xa2,0x1b,0xce,0x27,0xdf, +0xc3,0x86,0xd5,0x2c,0x6e,0xc0,0xc5,0xe4,0x67,0xd8,0xb0,0x9c, +0x55,0xfa,0x7b,0x3f,0x38,0x93,0x76,0x85,0x37,0x9b,0x95,0x9b, +0x91,0x9b,0x9a,0xeb,0x9c,0xc3,0xa7,0xe5,0x2c,0xeb,0x39,0x97, +0x18,0x11,0x1d,0x19,0xae,0x72,0x3e,0x54,0x72,0xa1,0x09,0x3e, +0x69,0xc2,0x4f,0x9a,0x4c,0x1c,0x70,0xf7,0x75,0x79,0xb4,0x16, +0xee,0x6c,0x32,0x72,0xc0,0x25,0x0e,0xb4,0x1e,0x4e,0x7b,0x5a, +0x78,0x1f,0x3a,0x59,0x68,0xcf,0xbf,0xa8,0x6d,0x2e,0xcb,0x68, +0xe7,0x92,0xf0,0xfd,0x3e,0x78,0x3f,0x89,0xc9,0x35,0xbc,0xeb, +0xf9,0xd6,0x33,0xab,0x95,0x5f,0x57,0xb6,0xff,0xca,0x89,0x6a, +0x0a,0x4d,0x2a,0x06,0x80,0xb5,0x65,0x32,0x21,0x4b,0x82,0xe6, +0x4e,0x14,0x73,0x46,0x5b,0x4a,0x70,0xa1,0x33,0xcc,0x67,0x2e, +0x9a,0x49,0x50,0xea,0x0c,0x73,0x98,0x68,0x63,0x09,0xee,0x84, +0x52,0xfc,0x0d,0x4b,0x71,0x27,0x13,0xdd,0x2f,0x01,0x59,0x3d, +0xd2,0xfd,0x3d,0x12,0x58,0x54,0x8f,0x4b,0x98,0x98,0x8a,0xfe, +0xe4,0x81,0x8c,0x96,0x6c,0x15,0xff,0x46,0x43,0x7f,0xed,0x33, +0x47,0xcf,0xab,0xa4,0x63,0x84,0xc4,0x16,0xd9,0x01,0x4f,0x7a, +0x3d,0xaf,0xe3,0xc7,0xdc,0x97,0x79,0xe5,0xda,0xf2,0x30,0xbb, +0xa9,0xab,0x2e,0xab,0x75,0x22,0x2b,0x8f,0x45,0xef,0xa6,0xc4, +0x8b,0xd2,0x9f,0x4d,0x43,0xfd,0x43,0x02,0x83,0x83,0x55,0xf0, +0x77,0x6b,0x68,0x65,0x0e,0x3b,0xac,0x3d,0x85,0x73,0x4f,0x65, +0x59,0xf2,0xb0,0xb7,0x02,0xa6,0x76,0xdd,0x1f,0xe6,0xe0,0x00, +0x53,0x7e,0xb2,0xde,0xa7,0xcb,0xef,0xf4,0x71,0x2f,0x4f,0x7b, +0xcf,0xa6,0x93,0x7c,0x73,0x75,0x65,0x75,0x61,0x75,0x4f,0xe0, +0x68,0xf0,0x83,0x33,0xd9,0xed,0x3c,0xce,0x2e,0x5e,0x5d,0xa2, +0xd9,0xc6,0xb9,0x50,0xee,0x8f,0xe7,0x31,0x09,0xce,0xb3,0xd5, +0x9a,0x04,0x8e,0x55,0xe3,0x31,0x8a,0xf7,0xc4,0x68,0x1f,0x93, +0x70,0x2f,0x4e,0x62,0x41,0xf5,0x31,0xb1,0x5d,0xd9,0xca,0xde, +0x51,0x44,0x10,0x03,0x1f,0x66,0xb9,0xa6,0x36,0xf6,0x1c,0x97, +0x66,0x99,0x42,0x56,0xc3,0x37,0x4d,0xb9,0xbf,0xab,0x24,0x31, +0x45,0x8b,0xe1,0x7d,0x07,0xc8,0x72,0xce,0xee,0xe1,0x71,0xb8, +0x66,0xdd,0xe8,0x4f,0xaa,0xa8,0x77,0x96,0x9c,0xb2,0xf7,0x70, +0x33,0xf5,0xa8,0xf1,0xe4,0x7b,0xaa,0xea,0x1a,0x8a,0x3b,0x29, +0x9e,0x9b,0x2a,0x9f,0x42,0xce,0xda,0x05,0x39,0xf8,0x39,0x0c, +0x7a,0xf0,0x57,0x06,0x8a,0xae,0xa7,0x76,0x72,0x3d,0x8a,0x8d, +0x6c,0x6e,0x77,0x46,0x4f,0x4a,0x87,0x6e,0x26,0x1f,0xb0,0xd0, +0x0c,0x3f,0x54,0x5f,0xda,0x6b,0xc7,0xd7,0x74,0x5e,0xe9,0x2b, +0xea,0xe7,0x60,0xe1,0xf8,0x64,0x5c,0xce,0xe4,0xe8,0x48,0x80, +0x30,0x1d,0x05,0x05,0x9d,0x32,0x41,0xce,0xe2,0x5d,0xc5,0xc7, +0xc4,0xd6,0xcf,0xda,0xdf,0x2a,0x80,0x83,0xb4,0x5f,0x47,0x96, +0xc2,0x79,0x71,0xdd,0xdf,0x2f,0x7a,0xb0,0x88,0x3e,0x87,0x9a, +0x1e,0xa8,0x61,0x2d,0x6b,0x1e,0x68,0x16,0x64,0x1c,0x9c,0xa5, +0xc3,0x03,0x69,0x84,0x69,0x1d,0xbf,0x0e,0x70,0x3f,0x43,0x33, +0x09,0x40,0x35,0x07,0x5c,0xaa,0x85,0xef,0x0d,0x39,0xf2,0x37, +0xe1,0xc3,0x36,0xd8,0x94,0x07,0xf3,0x39,0x08,0x39,0x4f,0x1a, +0xf1,0xfd,0x66,0x54,0xcf,0xc7,0x8f,0xae,0x16,0xf0,0x41,0x30, +0xd3,0x16,0xf6,0x39,0xc0,0x0c,0x4a,0xf9,0x2c,0xe4,0x7b,0xc8, +0x49,0x94,0xe2,0x0d,0x41,0x1d,0x6e,0xa0,0xec,0x0d,0xcc,0x1f, +0x54,0xe8,0x19,0xc2,0x2a,0x56,0xae,0x3f,0x1e,0x46,0x4e,0xbc, +0x8e,0x82,0x35,0x31,0xf0,0x2f,0x71,0xa6,0xfa,0x72,0xcf,0xe5, +0x5e,0x71,0x8a,0x72,0x60,0x58,0xb1,0x57,0xff,0x1e,0xb5,0xe1, +0x45,0xfe,0x18,0xe7,0x8d,0x81,0xbe,0x17,0x7c,0xa3,0x7c,0x2f, +0xa4,0x8b,0x6f,0x25,0x0a,0x40,0x5a,0xf7,0xb4,0x22,0xbc,0x8f, +0x37,0x0a,0xdc,0xef,0xbf,0x37,0x28,0x0f,0xb6,0x65,0xc2,0xfe, +0x74,0xd0,0xe6,0x28,0x1e,0x88,0xc5,0xf2,0x24,0xd4,0xa8,0x5b, +0x54,0xa4,0x3d,0x96,0x98,0x74,0xb5,0x10,0xf4,0x79,0x9b,0x02, +0xc9,0xf8,0x66,0xc1,0x96,0x94,0xb1,0x37,0x06,0xd6,0xb1,0xa8, +0x67,0x41,0x5e,0x30,0x11,0xda,0xfe,0x36,0x0e,0x56,0x0d,0xee, +0x7c,0xfb,0x60,0x49,0x77,0xf2,0x73,0x6e,0x64,0x07,0x63,0x93, +0xeb,0xd7,0x27,0xbd,0x75,0x18,0x9f,0x32,0xf0,0x14,0xa6,0x11, +0x3d,0xc6,0x2f,0x3c,0xb5,0x50,0x76,0xe7,0x35,0x0b,0x3f,0x29, +0xf6,0x92,0x90,0xc7,0xee,0x30,0xe5,0xe4,0x6d,0x8b,0x00,0xbe, +0xe4,0x70,0xe5,0xbc,0xdc,0xad,0x1c,0x46,0xae,0x26,0x86,0x67, +0x0f,0x9f,0x3d,0x18,0xc6,0xc1,0xc7,0x70,0x68,0x00,0x0f,0xfd, +0xa6,0xbf,0x04,0xf7,0x1b,0x51,0x82,0x35,0x87,0x3d,0x10,0x76, +0x20,0x42,0xef,0x42,0x12,0xcd,0xeb,0x47,0xe9,0x60,0x5d,0x0a, +0x5c,0x05,0x05,0x55,0x7b,0xe5,0x8f,0x88,0x9e,0x21,0x16,0x0c, +0xea,0x1a,0x62,0x9c,0x29,0xc4,0x59,0x8c,0x76,0x41,0x81,0xc5, +0x48,0x17,0xe4,0xf5,0x62,0x1e,0xa3,0xe8,0xc7,0x7e,0x22,0x0f, +0x81,0xfd,0xe3,0x21,0x0c,0x04,0x5a,0x92,0xed,0xb8,0xe7,0x73, +0x56,0x90,0x6e,0x27,0xb8,0xeb,0x73,0xd8,0xc5,0x0c,0x6c,0x27, +0x9f,0xc3,0xe1,0xed,0xec,0xf8,0x21,0x8c,0x24,0x2f,0xe5,0xe1, +0x5b,0x46,0x41,0x6d,0x5c,0x40,0x35,0x56,0xde,0x8a,0xa3,0x44, +0xaf,0xc5,0xf5,0x7e,0xc4,0xcf,0x9c,0x62,0x0f,0x93,0x54,0x94, +0x54,0x98,0x58,0xc8,0x09,0x01,0x3d,0xe3,0x1a,0xa2,0x58,0x51, +0xe4,0xe9,0xc8,0xd3,0x11,0xbe,0x1c,0x1e,0x34,0x83,0x8d,0x8c, +0xbf,0xc9,0x29,0x13,0x2f,0x13,0xcb,0x18,0xf3,0x68,0xf3,0x98, +0x24,0x13,0x1e,0x62,0x52,0x21,0x84,0xe6,0x2f,0x87,0x6b,0x67, +0x71,0xc9,0x39,0xdc,0x18,0x8e,0xbb,0x23,0x4b,0xbb,0x8a,0xfa, +0xf2,0xfa,0x39,0x41,0x95,0x49,0xdb,0xd0,0xa0,0x33,0x6a,0x5d, +0x77,0xa2,0xe3,0x62,0x46,0x57,0x15,0x70,0xbc,0x55,0xb5,0x04, +0xfb,0xf4,0x88,0x61,0x85,0x6e,0x89,0x5e,0xbe,0x97,0x1d,0x3f, +0xea,0x37,0xea,0xd3,0xe7,0xc5,0x29,0x09,0x79,0xf2,0xe7,0x44, +0x47,0x57,0xb1,0xd1,0x14,0xf6,0x30,0xbe,0xae,0x27,0xdc,0x3d, +0x8f,0x87,0xa4,0x85,0xa4,0x9d,0x49,0xf1,0x70,0xe2,0x9b,0x7d, +0xba,0x5d,0x5b,0x5c,0x82,0xcf,0x04,0x87,0x04,0x9d,0x39,0x11, +0xed,0x15,0x7d,0x3c,0x26,0xc5,0x8c,0xff,0x2a,0xe1,0xcb,0x94, +0xdb,0xa9,0x86,0x66,0xfb,0x5c,0x17,0x9f,0x28,0x34,0xe7,0x61, +0x5b,0xf7,0xaf,0x9f,0x8d,0xbe,0x75,0x2c,0xe7,0xcf,0x07,0x9f, +0x0b,0x09,0x3b,0x83,0xe4,0x2c,0x3f,0xd4,0xdb,0xd3,0xdf,0x7b, +0xd3,0xb6,0x8c,0xf7,0xb0,0x75,0xb1,0xb3,0x77,0x08,0xca,0x0c, +0xcc,0x0c,0xcc,0xa8,0xae,0x29,0xaf,0xa9,0x68,0x3a,0x9e,0xc7, +0xc3,0x75,0xe6,0xb8,0xb6,0xb5,0xe1,0x61,0xb3,0x4a,0x67,0x3e, +0x55,0x5c,0x35,0x9b,0xca,0xa1,0xaf,0x10,0xd0,0x86,0x6e,0x43, +0x60,0xd0,0x8c,0x06,0x7d,0x60,0xd0,0x82,0x06,0x3d,0xe0,0xd6, +0x86,0xd6,0x6c,0x76,0x41,0x5a,0x5e,0x52,0xb6,0x45,0x16,0x1f, +0x76,0x3a,0xd4,0x27,0xe0,0x14,0x87,0x9f,0x30,0x19,0xb9,0x69, +0xb9,0x29,0x39,0xb6,0x79,0xbc,0xb0,0xbc,0x57,0x71,0x80,0x81, +0x8d,0xe8,0x49,0x70,0x4b,0x1b,0x93,0x90,0x28,0x11,0xc3,0x69, +0x6e,0xc1,0x45,0xa4,0x0f,0xb6,0x98,0xb0,0xb8,0x65,0x05,0x19, +0x82,0x2d,0x06,0x2c,0x68,0x2b,0xe6,0x12,0x93,0x26,0x8f,0x6b, +0x91,0xdf,0x73,0x0a,0x27,0x26,0x29,0x3f,0x31,0x3f,0x21,0x9f, +0x13,0xfe,0xec,0xfa,0x67,0x92,0x05,0x38,0x31,0x51,0xfe,0x91, +0xfe,0x11,0xfe,0x1c,0xae,0xb0,0x02,0x55,0x26,0xd0,0xdc,0xd7, +0xcc,0xcb,0xdc,0x21,0xda,0x3e,0xc6,0x2e,0x26,0xd9,0xf4,0x5d, +0x21,0xa7,0xd1,0x42,0x8e,0xa1,0xa6,0x62,0xf5,0x59,0xdc,0x11, +0x8e,0x1a,0x91,0x25,0x1d,0x85,0x3d,0xb9,0x3d,0x9c,0xb0,0x8b, +0x49,0xdd,0xd2,0x78,0x60,0xc8,0xb5,0xd2,0xbf,0xeb,0xc2,0xbb, +0x42,0xb6,0xa0,0x85,0x3c,0xa2,0x45,0x0c,0xcb,0x75,0x8b,0xf4, +0x73,0xbd,0x1c,0xf9,0x91,0x80,0x51,0xdf,0xfe,0x13,0xb4,0x03, +0xd9,0xc8,0x5f,0x92,0x70,0x87,0x50,0xeb,0x60,0x27,0x6e,0xc3, +0x78,0xf2,0xd5,0xd7,0x70,0x5c,0xbe,0x93,0xf2,0xda,0xac,0x9a, +0xf4,0xfa,0xe4,0x3a,0x4e,0x30,0x41,0x6d,0x02,0xde,0x43,0xe8, +0x0d,0x0b,0xb4,0x71,0x01,0xce,0x64,0x32,0x1a,0x52,0x1b,0x93, +0x1b,0x0c,0xd3,0x79,0xff,0xd5,0x2e,0x2b,0x8d,0x76,0x77,0xbb, +0xf2,0x25,0x75,0x05,0xcd,0xb9,0x2d,0x1c,0xed,0xdd,0xab,0x31, +0xce,0x00,0xe2,0x70,0xf2,0x55,0x98,0x0c,0x17,0x87,0xf0,0x22, +0xa3,0xb8,0xaf,0x29,0xae,0x26,0xda,0x80,0x91,0xd4,0xfc,0x1b, +0x88,0x8a,0x63,0x25,0xb8,0x81,0x11,0x66,0xe1,0x7e,0x72,0x1d, +0x1e,0x6b,0x5d,0x15,0x58,0x85,0x8e,0x82,0x65,0x85,0xd9,0x62, +0xb0,0xa0,0xc7,0x60,0x0a,0x8f,0x19,0x25,0x81,0x13,0xfc,0x08, +0x06,0x07,0xe3,0x2a,0x23,0xca,0x5b,0x3b,0x6d,0x25,0x23,0xb0, +0x24,0x0f,0x76,0x43,0x8c,0x38,0x1b,0xa8,0x3c,0x9e,0xb0,0x50, +0x54,0x4b,0xfa,0x8a,0x69,0x98,0x98,0x3e,0xec,0xc2,0x30,0x16, +0x46,0xc5,0xe9,0xc3,0xa8,0x30,0x5c,0x62,0x26,0x4e,0x1f,0x3a, +0x4b,0x06,0x60,0x61,0x3a,0x6c,0x15,0x17,0x29,0x96,0xc2,0xbc, +0xf1,0x78,0x9c,0x2c,0x9e,0xf1,0xed,0xbf,0x63,0xe8,0x74,0x61, +0x1c,0xab,0x48,0xc5,0x6b,0xa4,0xf8,0x69,0xce,0xf3,0xb4,0xaf, +0x39,0x51,0xea,0xb7,0x5c,0xff,0x4f,0x26,0x10,0x37,0x3b,0xa0, +0xea,0x01,0x9c,0x54,0x76,0x84,0xcf,0x29,0xc9,0x2c,0xcf,0xac, +0xe0,0x14,0x5b,0x06,0x1f,0xc3,0x22,0xc1,0x9f,0x85,0x04,0x7f, +0xe2,0xd7,0xe6,0x3a,0xe6,0xde,0xe2,0xec,0xc1,0x57,0x3a,0xd4, +0xe8,0x15,0x99,0x73,0xf0,0xb6,0x8c,0xf8,0x76,0xba,0x8e,0x39, +0xb5,0xd3,0xb4,0x1a,0xfb,0x5a,0xed,0x12,0x33,0x6e,0x7c,0xa3, +0x42,0x42,0x04,0xee,0x8d,0x82,0x63,0x61,0x04,0x96,0x11,0xbf, +0x6e,0x97,0xeb,0xae,0x1d,0x74,0x7f,0x95,0x75,0x8d,0x4e,0xb1, +0x31,0x07,0xff,0xaa,0x20,0xa7,0xbb,0x9c,0x6f,0x38,0x89,0xd1, +0x77,0x6a,0x6d,0xeb,0x8e,0x95,0x1a,0xd1,0x66,0xbe,0x5e,0xa8, +0x24,0x1d,0x77,0x4a,0xee,0x67,0x5c,0x83,0x45,0xf1,0xb0,0x3c, +0x07,0x3e,0xa8,0xf1,0xec,0xe6,0xf1,0x7d,0x0f,0x5c,0x18,0x8c, +0x3b,0x2e,0x9c,0x51,0x3f,0xb1,0xdd,0x52,0x93,0x3b,0x80,0xdb, +0x48,0x44,0xda,0xf9,0x84,0x77,0x4b,0xa9,0xff,0x05,0x92,0x11, +0x94,0xc0,0x36,0xa6,0x3d,0xab,0x2d,0xa7,0xb6,0xe0,0x78,0x17, +0xbf,0xd7,0x1e,0xdf,0x77,0x59,0x12,0x9c,0x6d,0xcc,0x37,0x27, +0xb5,0xa7,0xb4,0x53,0x4e,0xba,0x1c,0xd7,0xea,0xc1,0x32,0x36, +0x6c,0xa1,0x03,0x4e,0x5a,0x88,0x1f,0x52,0x9c,0xf9,0xe2,0x97, +0xca,0xcf,0xe3,0x3f,0xa7,0x98,0xcc,0x78,0x50,0xd0,0xfd,0xf7, +0x3a,0xea,0x67,0xb8,0xbe,0xad,0x56,0x22,0x6c,0x17,0xdc,0x49, +0x93,0x41,0xb9,0x51,0x91,0xee,0x40,0x19,0xef,0xd7,0xef,0x76, +0xd5,0xa9,0x8f,0x43,0x35,0xdc,0x44,0x42,0xdb,0x7c,0x7b,0x4f, +0x74,0x98,0x06,0xf0,0xa5,0x96,0x05,0x66,0x19,0xd6,0x1c,0x0c, +0x61,0x10,0xd1,0x86,0xd5,0xe8,0x76,0xcb,0xf0,0x08,0x3a,0xe2, +0x6a,0x1d,0xf3,0x31,0x64,0x0e,0x9a,0xdf,0x43,0xf3,0x21,0x30, +0x17,0x26,0xa3,0x0a,0x6a,0x30,0xe9,0xa6,0x12,0xd8,0xcd,0x34, +0xa5,0xe7,0xd4,0xc8,0x40,0xe5,0x6a,0xb7,0x36,0x30,0x14,0xb4, +0xbc,0x80,0x55,0x64,0x11,0xae,0xfa,0x83,0x15,0x26,0x2f,0x22, +0xb8,0xe1,0x0f,0xb1,0x4b,0xb8,0xe1,0x2a,0x51,0x40,0x68,0x95, +0x28,0x20,0xe4,0xf0,0x4e,0x40,0x68,0x03,0x32,0x14,0x21,0xcc, +0x3b,0x4d,0x30,0x86,0x71,0x08,0xa3,0xb4,0x47,0x18,0x1f,0x1a, +0x67,0xfa,0x9f,0x82,0x1f,0xfc,0x85,0x7e,0x0f,0xc0,0x1a,0x76, +0xe0,0x6e,0xb6,0x28,0xbf,0xa4,0x24,0xbf,0x84,0xd2,0xa5,0x12, +0x36,0x2d,0x23,0x25,0x3d,0x25,0xc3,0x28,0x93,0xb7,0x39,0xbc, +0xf3,0xd0,0x4e,0x87,0x12,0x07,0x3e,0x3d,0x91,0x7e,0x92,0x39, +0x9c,0x0e,0x07,0xf0,0x7d,0xbd,0x57,0xb8,0xd1,0x1e,0xa6,0x58, +0xe2,0x2c,0x7b,0x98,0x65,0x8a,0x53,0xec,0x60,0xe3,0x9b,0x11, +0x0c,0xd0,0xfb,0x06,0x35,0xec,0x81,0x98,0xe2,0x72,0x7b,0x58, +0x6e,0x88,0x2a,0x76,0xa0,0xf9,0xc3,0xc8,0x01,0xf6,0x48,0x89, +0xcf,0x53,0x29,0x5c,0x62,0x1a,0x32,0xb2,0xea,0x64,0x77,0x58, +0x93,0x6c,0xc9,0xb8,0x12,0xfc,0x4a,0xa2,0x26,0x4a,0x3e,0x38, +0x94,0xbf,0xf0,0x93,0x38,0xa0,0xed,0x60,0x5a,0x32,0x1b,0x73, +0xab,0xf3,0x69,0xb9,0x6b,0xd8,0xe3,0x64,0xe7,0x95,0xc1,0xb9, +0x26,0x7c,0x7d,0x52,0xf3,0x44,0x5c,0xf8,0xe5,0x38,0x5f,0x0f, +0x54,0xd9,0xf3,0x8b,0x5d,0xe7,0xaf,0xc4,0xd9,0x75,0xe6,0xfc, +0x67,0x3f,0x96,0x3d,0x8b,0x7f,0x4a,0x8b,0x5d,0x7f,0x40,0xb0, +0xa0,0xc5,0x2e,0xba,0x3f,0x0f,0xe3,0xdc,0xd6,0x6a,0x89,0xb0, +0x89,0x16,0x7b,0x48,0x80,0x8f,0xaf,0xd7,0x69,0x0e,0xa3,0x99, +0x92,0xbc,0x92,0xc2,0xa2,0x22,0x6e,0xcf,0x3c,0x02,0x1f,0x1e, +0xc4,0x0f,0x19,0x68,0x3a,0x47,0xad,0xf3,0xd2,0xed,0x6c,0x89, +0x82,0xda,0xeb,0xbd,0x90,0x05,0x7b,0x19,0x3a,0xd6,0x9d,0x27, +0xf9,0xf9,0xf9,0x25,0x79,0xe5,0xd9,0x7e,0x59,0xfe,0x69,0x81, +0x35,0x95,0x7c,0x68,0x7e,0x60,0x51,0x40,0x51,0x7e,0x65,0x76, +0x65,0x5a,0xa9,0x63,0x3e,0x7f,0xde,0x37,0xf4,0x64,0x88,0x4f, +0x40,0x7e,0x60,0xde,0x99,0x8c,0xe3,0x5e,0x7c,0x56,0x48,0x81, +0x5f,0x81,0x8f,0xff,0x89,0xd3,0xde,0x7e,0xfe,0x13,0x4a,0x3a, +0x4e,0x44,0x7c,0x3b,0x5d,0xe0,0xd4,0x4f,0x87,0xd2,0xca,0xa0, +0xf2,0xc0,0x32,0x0e,0xb6,0x8b,0x4a,0x3a,0x19,0x85,0x69,0x85, +0xc9,0x85,0x86,0x59,0xbc,0xc7,0x3e,0xd3,0xc3,0x07,0x0c,0x5b, +0x1d,0xf8,0xfa,0xca,0xda,0xda,0x2b,0x0d,0x9c,0x90,0xa7,0x5c, +0xe8,0x5e,0xe0,0x52,0xe8,0xd4,0x9b,0xcf,0x07,0x57,0x05,0x95, +0x07,0x94,0x89,0x6a,0x39,0x78,0x9f,0x49,0x2b,0x4c,0xa1,0xe3, +0x82,0x51,0x3a,0x7f,0x4a,0xc3,0xe9,0xb0,0xb1,0x41,0x87,0x1b, +0x5f,0x56,0x51,0x54,0x95,0x5f,0xc3,0x29,0x2e,0x28,0x66,0x13, +0x5c,0x19,0x86,0xef,0xe9,0xcc,0x97,0xf6,0xd9,0x4b,0x6e,0xc2, +0xf4,0x2c,0x0a,0xf5,0x77,0xa8,0x82,0x0b,0x18,0x2b,0x86,0x70, +0x29,0x9b,0x63,0x28,0xba,0xdb,0x76,0x67,0x8b,0x98,0xe1,0x47, +0xbc,0xcb,0xca,0xdf,0x8c,0x2b,0x11,0xfd,0x2b,0x26,0x75,0x56, +0x2d,0x23,0x77,0x1a,0x1e,0x67,0x3f,0xe1,0x3a,0x10,0xc0,0x01, +0x9a,0x16,0xe3,0x7e,0x36,0xcb,0x44,0x02,0x9f,0x32,0x6d,0x39, +0xb9,0x0d,0x32,0x58,0xa9,0x58,0x39,0xbe,0x63,0x4c,0x98,0x02, +0x5d,0x6c,0x88,0xe6,0x71,0x3d,0x2b,0x63,0xab,0x6e,0xc7,0xc1, +0xe3,0x23,0x16,0x1e,0x7c,0xb5,0x76,0xab,0x7e,0xb7,0x89,0xbd, +0x93,0xb9,0xab,0xc1,0xf1,0x5a,0x33,0x7e,0xb4,0xba,0xb7,0xa1, +0xa5,0xb5,0xc7,0x7a,0xc0,0x71,0xc4,0x93,0x53,0xdc,0x13,0x2c, +0x89,0x4b,0x9d,0x71,0xa3,0x59,0xb9,0xbb,0x03,0xdf,0xe1,0x3d, +0xe0,0x50,0xe7,0xc2,0xd5,0xd0,0xd6,0xe7,0x52,0x6f,0xd4,0x6c, +0x7a,0xc5,0xd5,0x9e,0xef,0xf6,0x1a,0xb0,0xaf,0x77,0xe2,0x44, +0xbf,0x76,0xb9,0xd8,0xd3,0xe2,0x42,0xcf,0x9e,0x0b,0xe3,0x23, +0xdf,0xc0,0xda,0x61,0x5c,0xfb,0xce,0xaf,0x7d,0x97,0xe8,0xd7, +0x1e,0x30,0xe1,0xd7,0xbe,0xe1,0x3f,0xfd,0xda,0x93,0xff,0xed, +0xd7,0x2e,0x15,0x91,0x5f,0x3c,0xa5,0xcc,0x93,0x51,0xab,0xa9, +0x95,0x62,0x69,0x21,0x91,0xc0,0x92,0x2c,0x98,0x57,0xfb,0x97, +0x48,0x99,0x69,0x27,0x94,0xb9,0xe1,0x7e,0x4a,0x99,0x1d,0x58, +0x1c,0xa6,0x5d,0x7b,0x07,0xa5,0xcc,0xdd,0x56,0xc3,0xaf,0xea, +0x7e,0xcd,0x85,0xc5,0x2a,0xf0,0x8a,0x52,0xe6,0x59,0x8a,0x59, +0x0c,0xee,0x00,0xbf,0x7f,0xfb,0xa7,0x77,0x9c,0xe4,0xcb,0xfe, +0x3f,0xff,0xf4,0x93,0xff,0xe9,0x9f,0x5e,0xba,0x33,0xef,0x00, +0x27,0xac,0xa3,0x0d,0x21,0x61,0x24,0xee,0x06,0x65,0x82,0xf0, +0x00,0x4d,0x28,0x55,0xb8,0x26,0xe6,0x3c,0xf5,0xfc,0xe5,0x89, +0x9c,0x47,0xbd,0x81,0x4f,0x86,0xf1,0x93,0x77,0x39,0xdf,0xa0, +0x0f,0x2b,0x98,0x20,0x9c,0xaa,0x8b,0xd3,0x36,0x2f,0xa9,0x35, +0xe6,0x9f,0xfd,0xd8,0xfc,0x5d,0x92,0x28,0xce,0xb1,0x65,0x22, +0xe7,0x71,0x62,0xce,0x7f,0xc1,0x23,0x4d,0x2d,0x92,0x1c,0x0a, +0x02,0x0d,0x85,0xe4,0x41,0x56,0xf1,0xf0,0x0c,0x09,0xd9,0xeb, +0xb3,0xfd,0xd4,0xd1,0x76,0x1f,0xbe,0xe4,0x66,0xf9,0xab,0x1c, +0x9a,0x91,0x48,0x34,0x27,0x41,0xf7,0x4f,0x7d,0xee,0x7b,0xd3, +0xe2,0x14,0x5f,0x78,0xb4,0x64,0x67,0xf6,0x01,0x4e,0xbe,0x41, +0x71,0x80,0xf4,0x37,0x8d,0xf4,0xd6,0xb7,0x3b,0x35,0xf0,0x1e, +0x76,0x7a,0x86,0xa6,0xce,0x9e,0x6d,0xa7,0x3a,0x82,0xbb,0x38, +0xb0,0x13,0x18,0x85,0xf6,0xf8,0x62,0xc6,0x2d,0xd2,0x2d,0xc2, +0x3d,0x2a,0x4d,0x04,0x59,0x79,0xb0,0xb6,0xe1,0x79,0xd9,0xf9, +0x01,0x0a,0xb2,0x8e,0x06,0x1f,0x09,0xe1,0xa0,0x0c,0xa6,0xb3, +0xad,0x28,0xfd,0x01,0xe7,0xc1,0xba,0xd5,0x35,0x3d,0xbc,0x66, +0x83,0x7e,0x8f,0xe5,0x10,0xd7,0x21,0xcc,0x21,0xf8,0xe4,0x2f, +0x78,0xc2,0xe0,0x9a,0x69,0xd4,0x46,0x3c,0xa1,0x36,0x42,0x09, +0xfe,0x06,0x81,0x24,0x06,0xc4,0x07,0x26,0x04,0x76,0xe5,0xf2, +0x01,0xf7,0x4f,0xdd,0x3b,0x39,0x6a,0x19,0xc0,0x67,0x9e,0x48, +0xf7,0x48,0x73,0xb3,0x88,0x34,0x8b,0x32,0xbd,0x70,0xed,0x8b, +0xdb,0xd4,0x38,0x02,0x6b,0x56,0xce,0x9f,0xd0,0x71,0xd3,0x74, +0xd5,0xf1,0x2f,0xf6,0x2b,0x3e,0x5d,0xd4,0x78,0xad,0xe6,0x5e, +0xf9,0x6d,0xd3,0x62,0xfe,0x94,0xe6,0xf1,0xa3,0xee,0x86,0x21, +0x59,0x21,0x99,0x67,0x32,0xdc,0x6c,0xf8,0x5e,0xab,0x3e,0xa3, +0x0e,0x83,0x93,0xf6,0x27,0x1d,0x7d,0x3c,0xbc,0xa2,0x3d,0x63, +0xbc,0x62,0x12,0x0c,0xf8,0x81,0xcb,0x83,0x94,0x6e,0x73,0x8a, +0xb5,0x23,0xc2,0x26,0xb6,0x2a,0xbe,0x2a,0xbe,0x22,0x81,0xfb, +0x29,0x81,0xc0,0xe6,0xd7,0x0f,0x81,0x4d,0x07,0x2d,0x0e,0xd6, +0x9e,0x62,0x0e,0x46,0xad,0x3b,0x73,0x44,0x7a,0x3c,0x22,0xe0, +0xbc,0xb3,0xda,0x76,0x91,0xa9,0xbf,0x66,0xc6,0x2a,0x0b,0xaf, +0x66,0xca,0xb2,0xef,0xc5,0xff,0xf0,0x50,0xf5,0x89,0xe2,0x8c, +0x31,0xb8,0xb3,0x61,0xb8,0x5e,0x7f,0x39,0xae,0xda,0xce,0x7d, +0x0e,0x6d,0xc4,0xcf,0xd0,0x5e,0xd7,0xd2,0xbe,0xc1,0x81,0xef, +0x6a,0xeb,0xb8,0x53,0x38,0xc8,0x75,0xe1,0x6d,0xd2,0x6d,0xd3, +0x67,0xd0,0xa8,0xdb,0xd4,0xcc,0x5b,0x5f,0x33,0x1f,0xb0,0x68, +0xe2,0x8a,0x15,0x4b,0x89,0x4b,0x58,0x72,0xb5,0x0c,0x52,0xf5, +0x30,0x8d,0xdd,0x57,0xe4,0xf7,0x98,0x36,0x2a,0xd1,0xdf,0xb0, +0x8d,0x1a,0xd3,0x09,0x89,0xe6,0x35,0x6c,0x1f,0x5c,0x21,0x35, +0xbb,0x6b,0x16,0xe4,0x2f,0x1d,0xa2,0x4f,0xf4,0x9b,0xc7,0x6f, +0x2e,0x4f,0x39,0xc5,0x41,0xbc,0x47,0x1a,0xbe,0x2a,0x01,0x49, +0xf2,0x77,0x46,0x29,0x7c,0xc4,0x86,0x13,0x38,0xcd,0xfd,0x00, +0xb7,0x19,0x62,0x49,0xae,0x56,0xfa,0xbe,0xe4,0x83,0xbd,0xb9, +0x7c,0xf8,0xad,0xe0,0xc7,0x41,0x63,0x1c,0xa6,0x63,0x1b,0xa9, +0xfb,0x22,0xff,0x97,0xd4,0x9f,0x4c,0x93,0xf9,0xb0,0x4f,0x03, +0x36,0xba,0x6e,0xa3,0x48,0x32,0x55,0xa8,0x22,0x7d,0x5d,0xf5, +0x43,0xa5,0xf7,0xb9,0x7b,0x3d,0x78,0x9d,0x49,0x2b,0x4a,0x29, +0x4e,0x2c,0x34,0x4e,0xe3,0xbd,0xb7,0x58,0xee,0xd9,0xa7,0xd9, +0xe8,0xc8,0x97,0x97,0x96,0x94,0x17,0x5e,0x29,0xb3,0xac,0xb6, +0x6f,0x72,0xb1,0x74,0xd7,0x3f,0xa1,0xee,0xe9,0x9d,0xcb,0xdb, +0x38,0xea,0xd8,0x1e,0xb5,0x77,0xcd,0x77,0xcb,0x73,0xcf,0x71, +0xb2,0xe7,0x9f,0xdb,0x3d,0xb2,0xfd,0xcc,0xfa,0x6c,0x44,0x68, +0xe4,0xd9,0x48,0xee,0xe2,0xea,0x65,0x31,0x4b,0xd4,0x92,0x0d, +0x24,0xf0,0x11,0x28,0xc7,0x27,0xc2,0xc7,0x32,0x0c,0xba,0x01, +0x67,0x58,0x98,0x94,0xf8,0xaf,0xa4,0xdf,0x52,0x73,0x03,0x73, +0x03,0xf2,0xfc,0xda,0xaa,0x79,0xc3,0x51,0xed,0xe1,0xc3,0xfd, +0x76,0xc7,0xf9,0xb2,0xd3,0xa5,0xa7,0x4b,0x4e,0x2d,0x0f,0x9f, +0x1f,0x89,0xd3,0x2e,0xbc,0xee,0x79,0x73,0xf3,0xf1,0x75,0xcb, +0x5a,0x5e,0xdb,0x74,0xeb,0xb1,0x0d,0x46,0xde,0xb9,0x9e,0xb9, +0x9e,0x79,0x03,0x35,0x3d,0x0d,0xdd,0xcd,0x59,0xde,0xfc,0xf3, +0xaa,0x1b,0xd5,0x7d,0x8d,0xc3,0xb6,0xf7,0x9c,0x5e,0xbb,0x94, +0xf4,0xf0,0xdb,0xaa,0x34,0xab,0x4d,0xeb,0x39,0xbc,0xe3,0x20, +0x06,0x84,0x1a,0xbd,0xc7,0x02,0x0b,0x8b,0x13,0xb2,0xbe,0x90, +0x79,0x77,0x4a,0xce,0xac,0x47,0x69,0x14,0x2e,0x55,0x43,0x0f, +0x76,0x4d,0xd8,0x11,0xab,0xc3,0xd2,0x1e,0xd7,0x96,0xb1,0xf4, +0xe1,0xc4,0x3e,0x15,0xc1,0x0b,0x3c,0x08,0xc5,0x5a,0x3e,0xfa, +0xc7,0xad,0x6d,0x1c,0xad,0x9b,0x5d,0xdb,0xbd,0x06,0x39,0x3c, +0xb9,0x8f,0xac,0xc2,0xd8,0x1f,0x58,0xc1,0x5f,0x31,0x42,0xfe, +0xb0,0x7d,0x65,0xff,0xa5,0x45,0x6d,0x27,0xbf,0xbe,0x7b,0x53, +0xf3,0x8a,0x26,0x4e,0x71,0x1b,0xd5,0xc9,0x1f,0xf5,0xdf,0x77, +0xdc,0xec,0xb1,0x6b,0xe4,0x35,0xad,0x36,0xda,0x2f,0x73,0xa3, +0x76,0xe3,0x1b,0x00,0x92,0x10,0x98,0x40,0x1b,0x67,0x57,0x1e, +0x1f,0x74,0xef,0xf4,0x3d,0x9f,0x51,0x0a,0xeb,0x33,0x4e,0xa4, +0x79,0xa4,0xb9,0xdb,0x44,0x5a,0x46,0x59,0x5e,0xb8,0xfe,0xc5, +0x9d,0x77,0x4d,0xf3,0x0a,0x7f,0x42,0xdb,0xf5,0xa8,0x0b,0x6d, +0x9a,0xa7,0xe9,0xa7,0xf1,0x6a,0xed,0xfd,0xf2,0xdb,0x26,0x13, +0x4d,0x53,0xd3,0xcd,0x80,0x36,0xcd,0xac,0x90,0x0c,0x37,0x6b, +0xbe,0xdf,0xb2,0xcf,0xb8,0x53,0xdf,0xc7,0xfe,0xa4,0xb3,0x8f, +0xc7,0xf1,0x68,0xfa,0x89,0x49,0x34,0xe0,0x07,0x2f,0x0f,0x5d, +0x1e,0x4c,0x98,0x68,0x9a,0x9b,0xd9,0xf2,0xcb,0x65,0xf1,0x65, +0xf1,0x62,0x20,0x96,0xcd,0x64,0x10,0x83,0x93,0x58,0x98,0xac, +0x47,0xe1,0x4e,0x04,0x1e,0x63,0x13,0xfa,0xe2,0xfa,0x63,0x29, +0x14,0xd4,0x84,0x00,0x85,0xe6,0x17,0x0c,0x6c,0x4d,0x85,0xad, +0x25,0x30,0xab,0xda,0xb5,0x8f,0xc7,0x0f,0xdc,0xf0,0x90,0x2f, +0x6a,0x84,0x71,0xf8,0x2d,0x8b,0xeb,0x43,0x70,0xb7,0x0e,0xce, +0x91,0xf6,0xdb,0xd7,0x7d,0x5e,0xf0,0x5d,0xfa,0x0f,0x2a,0x70, +0x8c,0xf1,0xdf,0x70,0xc4,0x10,0x67,0x1e,0x28,0xa7,0x58,0xfe, +0xc3,0x87,0x2f,0xef,0x5f,0xfe,0x9d,0x4b,0x62,0x92,0xe7,0xbf, +0xd2,0x84,0xc5,0xdb,0x45,0x2f,0x5d,0xb5,0xc7,0x7b,0x07,0x7c, +0x5f,0x8b,0xea,0x56,0x39,0x44,0xf1,0x01,0xbc,0x2f,0x7c,0xc0, +0x74,0xe1,0x15,0xe2,0x7a,0xc5,0xe2,0x8a,0x63,0xbe,0xa7,0x0b, +0xdf,0xe2,0xd7,0x7e,0xbc,0xc6,0x9b,0x53,0x7c,0x1e,0x4e,0x32, +0x0d,0x53,0x8f,0x26,0x6a,0xf7,0xe4,0xf0,0x91,0xa3,0xa1,0x77, +0x42,0x29,0xa6,0xc8,0xc5,0x76,0x52,0x4f,0x5b,0x5e,0xda,0xbb, +0x96,0xe7,0xbf,0xd1,0x85,0xb6,0x3c,0xe1,0x63,0xe8,0x22,0x96, +0x67,0xcd,0xc3,0xcc,0xc3,0xb9,0xb8,0x2b,0xb1,0x95,0xd5,0xaa, +0x9d,0xa0,0x5c,0xc7,0xd6,0xb8,0xdc,0xbc,0x3b,0xf6,0x7d,0xfd, +0x2b,0x15,0x9b,0x62,0xd7,0x5d,0xfa,0x6b,0x75,0x74,0x55,0xd2, +0x50,0x19,0xa4,0xb0,0x70,0x70,0x35,0x5b,0xd4,0x5d,0x7c,0x35, +0x7b,0xc4,0x20,0x97,0x3f,0xa3,0x7f,0xea,0xe0,0x09,0x5d,0x0e, +0x29,0xeb,0x5b,0x48,0x07,0x47,0x55,0x43,0x50,0xb5,0x61,0x1c, +0x45,0xcd,0x11,0xa9,0x59,0x38,0x35,0x08,0x51,0x89,0x86,0x7c, +0x47,0x42,0x67,0x62,0x47,0x52,0xc8,0x4a,0x37,0x0d,0xf5,0x23, +0x0d,0xd6,0xfc,0xcb,0xc7,0x2d,0x2f,0xb3,0x61,0x56,0x5f,0x6a, +0x6f,0x5a,0x0f,0x05,0x4a,0x76,0x82,0x09,0x39,0xd3,0x13,0xd4, +0x71,0xba,0xd3,0xfc,0x34,0x5f,0x60,0x29,0x86,0x10,0xe4,0x04, +0xc3,0x67,0x44,0xf1,0x21,0x6b,0x5f,0x6c,0x36,0x6f,0x1b,0x32, +0x9b,0xb6,0xab,0xd4,0x3b,0x7c,0xff,0xcd,0x53,0x60,0x7b,0x60, +0x92,0x8a,0x82,0xc5,0xd5,0x22,0xa4,0x84,0xb9,0x4c,0x63,0x9e, +0x88,0x29,0x9b,0xf1,0x8c,0x09,0x0b,0x39,0xca,0x60,0x3b,0x1e, +0x8d,0x5b,0x98,0x6c,0x43,0x31,0x44,0x5f,0xcb,0xbf,0x77,0x65, +0xb2,0x34,0x5f,0xd3,0x89,0xdb,0x0e,0xdd,0x95,0xc7,0xb4,0x1b, +0xec,0xf9,0x5b,0xf7,0xc7,0x7e,0xac,0x7b,0xc5,0x79,0x62,0x26, +0x71,0x58,0xaf,0xb5,0xe4,0xa8,0x76,0xbd,0x1d,0x7f,0xff,0xe1, +0xcd,0x3f,0x1a,0xbf,0xa5,0xe5,0xe0,0x26,0x38,0x91,0xa0,0x8b, +0xe2,0x7b,0x01,0x0e,0xea,0x70,0x19,0x9b,0x55,0x9d,0x5e,0x9d, +0x52,0xa1,0x93,0xc6,0x87,0xbb,0x9f,0x75,0x0a,0x71,0xe1,0x70, +0x32,0xfa,0x32,0x6e,0x97,0x3c,0x62,0x8e,0x4b,0x7d,0xa3,0x4f, +0xc5,0x9c,0x8a,0x49,0xd0,0xe3,0x0b,0x63,0x0b,0xe3,0x0a,0x62, +0xa3,0x50,0x3d,0x04,0x3f,0x74,0x58,0xd2,0xed,0xc8,0x77,0x81, +0x24,0x1b,0x16,0xc4,0x83,0xee,0xc3,0xc4,0xdb,0x29,0xd7,0x53, +0x39,0x85,0x1a,0xce,0x60,0xb3,0xf4,0x25,0xbf,0xbf,0x33,0x22, +0xc2,0x42,0x36,0xf7,0x72,0x6e,0x7c,0x6e,0x3c,0x07,0x53,0xa0, +0x9c,0x80,0x4a,0x36,0x90,0xda,0x1f,0x9b,0x68,0xc3,0x58,0xe9, +0x80,0x1f,0xbb,0xe3,0xa6,0x20,0x0e,0xdb,0x58,0x3c,0xe9,0x8b, +0x0b,0x8e,0xe0,0x74,0x3a,0x48,0xf5,0x7c,0x5b,0xf1,0x57,0x06, +0xa8,0xa8,0x40,0xf7,0x81,0x31,0x8a,0xdd,0x7f,0x65,0x14,0x3b, +0x51,0x46,0x62,0x2b,0x2f,0x55,0x57,0xab,0xc2,0x4e,0xb0,0xc6, +0x08,0x56,0x33,0xec,0xf0,0xf9,0xfd,0x91,0x5c,0x2d,0xd8,0x92, +0x2b,0xf6,0xd5,0xfa,0x05,0x66,0xed,0xe5,0xbc,0x5f,0xaf,0xf3, +0xa8,0x57,0x03,0x27,0x9f,0x89,0x3f,0x13,0x6c,0x63,0x2e,0xb7, +0xc5,0x76,0xf4,0xa8,0x0e,0x41,0x13,0x3b,0xfe,0x11,0x6a,0x10, +0x8c,0xec,0x87,0x48,0x56,0x49,0xbe,0x5f,0xbe,0x8d,0x40,0xd6, +0x08,0x66,0xfd,0x72,0x6c,0x19,0xe6,0x8b,0x5f,0xd1,0x7a,0x10, +0x7d,0x90,0x31,0x4f,0x77,0x5a,0x70,0x70,0xf9,0xfa,0x6d,0x2a, +0x1d,0x36,0x63,0xfd,0x1d,0xc3,0x75,0xa3,0x2a,0xc2,0x6b,0x26, +0x06,0x57,0x9d,0xc7,0xd9,0xfe,0x1b,0xb8,0xdd,0x81,0x2e,0x21, +0xfb,0xd5,0x70,0x29,0x93,0xa7,0x2b,0x81,0x39,0xcc,0xdb,0x9e, +0x2b,0xbf,0x15,0xc9,0x8a,0x7f,0x4d,0x85,0x65,0x60,0xa1,0x3a, +0x3e,0x85,0x49,0x2d,0x48,0xa1,0x1f,0x6e,0xec,0x47,0xc8,0x5f, +0x79,0x8d,0x51,0x38,0xe1,0x30,0xd1,0x16,0x0c,0xaf,0xd2,0xfb, +0x1d,0xa6,0x6c,0xf9,0xd8,0x56,0xac,0xf8,0x42,0x7b,0x2b,0x46, +0xe9,0x43,0xd4,0xa6,0xab,0xaf,0xa0,0x62,0xd3,0xb5,0x57,0x90, +0x3a,0x8c,0xa9,0x0c,0xee,0x46,0x03,0xf2,0x83,0xce,0x2a,0xec, +0xc4,0xbd,0x38,0xdd,0x58,0x0c,0x57,0x8e,0xd3,0x0d,0xe9,0x8f, +0xff,0x35,0xf0,0x17,0x9a,0x71,0x13,0x9a,0x4e,0xd4,0xfc,0x6e, +0xa6,0xbf,0x20,0xaf,0x5f,0x5c,0x30,0x3f,0x75,0x10,0xa7,0xc2, +0x2c,0x98,0xda,0x4f,0x7f,0xf6,0xb2,0x8a,0xf7,0x0d,0x09,0xbe, +0x87,0x21,0xf0,0x1e,0x4b,0x8f,0x7e,0x8f,0x60,0x02,0xbc,0x07, +0x09,0x0c,0xde,0xc4,0xdd,0x84,0x5e,0x2a,0x04,0x66,0xb1,0xd0, +0x8e,0xb3,0x08,0x3d,0x23,0x01,0x67,0x89,0xe3,0x99,0x7c,0x0e, +0xb9,0x09,0xf9,0x47,0xaf,0xde,0x9c,0x70,0x99,0xbd,0xa5,0x7d, +0x04,0xf3,0xc5,0xaf,0x4b,0x86,0x70,0xe9,0xa8,0x28,0x6a,0x92, +0x41,0xe0,0x94,0x62,0x04,0x4f,0xb1,0x42,0xd3,0x2e,0x32,0xae, +0x06,0x65,0x9a,0xf8,0x42,0xae,0xb6,0x72,0xdc,0xdb,0xe0,0xef, +0x39,0x43,0x38,0x89,0xb1,0x16,0x16,0x88,0x1a,0x95,0x1a,0xc0, +0xb2,0xd8,0x34,0xfe,0x11,0x01,0xd5,0xaa,0x7f,0x75,0x3d,0xe9, +0x72,0x68,0xe1,0x77,0x59,0x2d,0xb5,0x47,0x72,0x9c,0x13,0xda, +0xef,0x91,0xdf,0x3c,0x61,0xba,0xd5,0x2f,0x56,0xb5,0xbd,0xfc, +0x8a,0x16,0xfc,0xa0,0x63,0x61,0xc5,0x84,0x5f,0x2f,0x43,0x1e, +0x42,0xbe,0xfa,0xd5,0x87,0x13,0xb7,0x16,0x5d,0xf8,0xf3,0xc5, +0x2f,0xf1,0xd6,0xea,0xac,0x70,0x13,0xd3,0x49,0xc6,0x50,0xd2, +0x93,0xd8,0xaf,0xb9,0xf1,0x16,0x23,0x41,0x87,0xd1,0xa7,0xbd, +0x6b,0xe6,0x21,0x2c,0xb3,0x13,0x5d,0xe2,0x2a,0xba,0x61,0xe5, +0xf5,0xfb,0x60,0xc2,0x41,0x10,0x13,0x6d,0x7e,0x41,0xef,0x9c, +0x0d,0x67,0x7d,0xee,0x44,0x90,0xae,0x1a,0x2e,0x64,0x32,0xa8, +0xb5,0x57,0x66,0xde,0x74,0x17,0x3f,0xc9,0x95,0x29,0x8a,0x29, +0x0f,0x32,0xb2,0x3f,0xe4,0xbe,0x2d,0xb0,0xc4,0x84,0x7f,0x91, +0xff,0xa8,0x76,0xac,0x9b,0xeb,0xa5,0x97,0x1e,0x74,0x1d,0xb3, +0xe9,0xb1,0x6e,0x6c,0xe3,0x8d,0x3b,0x0d,0x9a,0xf5,0x6a,0x39, +0x03,0xcc,0x25,0x76,0xe7,0x92,0x29,0xc0,0xdb,0x7f,0x0c,0x0f, +0xb2,0xbb,0x4b,0xfd,0x3e,0x97,0x42,0x23,0xd3,0x9d,0x95,0xdf, +0x22,0xfb,0x86,0xd5,0xc9,0x97,0xe0,0x74,0x76,0x18,0x0e,0x90, +0x31,0xed,0xd1,0xfd,0xad,0xea,0x3d,0x75,0xbc,0xe5,0x33,0xfd, +0x3b,0xda,0x63,0xe2,0x22,0xae,0x4b,0xe4,0xde,0x9d,0x8e,0x27, +0xe5,0x0f,0x4c,0x4a,0xf8,0x93,0x47,0x2d,0xf7,0x68,0xea,0xd1, +0xa1,0x4c,0x43,0x0c,0x31,0xb2,0x13,0x2b,0xc4,0x07,0x8a,0x32, +0x80,0xa8,0xdd,0x57,0x9f,0x40,0x85,0xf8,0x95,0x36,0x24,0xea, +0x21,0xec,0xc4,0x5d,0xe4,0x89,0xd6,0x6e,0xfc,0x8e,0x52,0x09, +0x74,0x3e,0x8d,0xb3,0x34,0xc5,0x30,0xe8,0xd6,0x92,0x7b,0xf0, +0x61,0x29,0xcc,0x87,0x53,0xaa,0xc0,0xc8,0x2f,0x0d,0xb3,0xde, +0x18,0x4d,0xed,0xaa,0xc6,0xb7,0xba,0x6b,0xf1,0x84,0xf8,0xb5, +0xc3,0x90,0x92,0x0f,0x09,0x1a,0x19,0xca,0xfd,0x06,0xd1,0x11, +0x24,0xac,0xae,0x32,0xfd,0xf7,0x04,0xdd,0x80,0x61,0x4a,0x8b, +0x1a,0xcd,0xda,0xf6,0x55,0x6a,0x0f,0x97,0xf1,0x9e,0x63,0xe6, +0x8f,0x1c,0xba,0x38,0xc5,0x43,0xf1,0xf5,0xfd,0x40,0xeb,0x83, +0x92,0x9b,0x86,0x85,0xbc,0x8f,0xb6,0xdd,0x61,0x6b,0x6a,0x59, +0xb6,0xc2,0x4a,0x52,0x68,0x94,0x77,0x28,0xdd,0xe0,0x7a,0x1a, +0x7f,0x76,0xf8,0xf4,0xbd,0x53,0xd4,0x2c,0x06,0x84,0x93,0x24, +0xc3,0xf8,0x7d,0x46,0xaa,0xd7,0x63,0x25,0xc3,0x11,0x8f,0xc2, +0xfb,0xa4,0x4a,0x72,0x6d,0xf9,0x63,0xa2,0x7b,0x14,0x3b,0x6f, +0xea,0x1c,0xc5,0x70,0x63,0x08,0xd7,0x1b,0x1b,0x81,0x4e,0xbd, +0xd1,0x11,0x48,0xe9,0xc7,0x14,0x66,0x9c,0x55,0xc4,0x13,0x98, +0x7e,0xbd,0xab,0x27,0x6d,0x94,0x4b,0xc2,0x83,0xc3,0xf0,0x3e, +0x93,0x7a,0xf9,0x52,0x6a,0xa4,0x14,0xf8,0x4d,0x95,0x4d,0xf8, +0xc9,0xab,0xf3,0x89,0x61,0x71,0xe7,0xc3,0x54,0xce,0x85,0x4a, +0x22,0x87,0x60,0x53,0x37,0x6e,0xba,0xcf,0x0c,0x24,0xf4,0x27, +0xb7,0xa7,0xf9,0xb7,0xf1,0x0b,0x4f,0xe3,0xfc,0x70,0xfc,0x38, +0x3a,0xd9,0x82,0x1f,0x88,0xbd,0x1a,0x77,0x35,0x9e,0x3b,0x82, +0x96,0xe6,0x70,0x84,0xf5,0x36,0x3d,0x6c,0xba,0xd4,0x84,0x13, +0x6e,0xc2,0x0f,0xe4,0xa4,0xba,0xc5,0x9e,0x43,0x7a,0x2d,0x4e, +0x7c,0x73,0x43,0x6d,0x6b,0x79,0x3b,0xf7,0x2b,0xe3,0xad,0xee, +0xa0,0xbd,0x69,0x5f,0xa3,0x03,0xff,0xea,0xd1,0xe0,0xc3,0x8a, +0x5f,0xb8,0x9f,0x18,0xb3,0xe8,0x63,0xe7,0x6d,0xa5,0x8e,0xe1, +0xc1,0x21,0x66,0x6a,0xfb,0x99,0x4c,0x53,0xc9,0x4d,0xe6,0x69, +0x55,0xc9,0x9d,0x4c,0x59,0x4a,0xd7,0xe5,0xcf,0x7e,0x56,0xc5, +0x7a,0x26,0x39,0x27,0x29,0x27,0x31,0x97,0x83,0x2b,0x8a,0x13, +0x64,0x40,0xf1,0xe9,0x3d,0xed,0x83,0x8a,0x85,0x46,0xf0,0x0f, +0xab,0x7f,0x0c,0xa7,0xd9,0xa1,0xb3,0x65,0x81,0x21,0x0f,0x91, +0xa3,0x6f,0x5b,0x9a,0x29,0x92,0xc6,0x93,0x57,0xe1,0x64,0x22, +0xd3,0xbc,0x16,0xde,0xb7,0x83,0x68,0xdd,0xfc,0x41,0x1e,0x3d, +0x3a,0xf0,0xfd,0x56,0x9d,0x6b,0xb4,0x4e,0x17,0x40,0x01,0x09, +0x3c,0xee,0x73,0xfc,0x94,0x77,0x48,0xed,0x99,0xca,0xd0,0x52, +0xcb,0x53,0x7c,0x81,0x5d,0x89,0x41,0xa1,0xbe,0x53,0x90,0x55, +0x90,0x0d,0x45,0x92,0x95,0x60,0x0e,0xff,0xc2,0xf8,0xf1,0xb9, +0x6c,0x70,0x54,0x48,0x54,0xc8,0xc5,0xb3,0xcf,0x03,0x7e,0x0a, +0xbe,0x6b,0x13,0xca,0xa7,0xda,0xa7,0x19,0xa5,0x18,0x05,0x46, +0x05,0x46,0x06,0x44,0x71,0xe0,0xfe,0xa7,0xa0,0xbc,0x10,0x56, +0x1b,0xe3,0xea,0x45,0x0a,0xe5,0x3f,0xd0,0x9f,0xb5,0x3a,0x67, +0x79,0xde,0x3c,0x9c,0xa2,0xd3,0x37,0x39,0x9f,0x17,0x3c,0x2a, +0xbd,0xec,0x7f,0xd9,0x3f,0x2e,0xb0,0x36,0x95,0x4f,0xb7,0x78, +0x58,0xf8,0x73,0xfd,0x83,0x6a,0x95,0x74,0xf7,0x54,0x8f,0x64, +0xaf,0xde,0x22,0xfe,0x4c,0xa7,0xdf,0xd0,0xe9,0x81,0xca,0xea, +0xaa,0xa6,0x82,0x2a,0x0e,0x5f,0x09,0x57,0x89,0x31,0xf4,0xf7, +0xb3,0x60,0x86,0x4f,0x48,0xe3,0xf7,0x65,0xbf,0x66,0x3f,0xe7, +0x7a,0xf0,0xdc,0x38,0x0e,0xca,0x87,0x69,0x57,0x0f,0xd9,0xe3, +0xbd,0xdc,0x6e,0x39,0xd7,0xb3,0xaf,0x79,0xcb,0x76,0xd5,0x83, +0xe7,0xdc,0x0d,0xa5,0xf6,0x4c,0x86,0xae,0xa4,0x99,0x79,0x52, +0x75,0xf5,0xbb,0x9f,0x1d,0x9f,0x98,0x3f,0x94,0x8d,0xfb,0xc3, +0x3a,0x32,0x80,0x75,0x46,0x0c,0x7c,0x0a,0x75,0x04,0xeb,0x0c, +0xa0,0x8e,0x85,0x7f,0x68,0x9f,0x5e,0xfc,0x0b,0x2c,0x66,0x70, +0xb1,0x28,0xd7,0xb9,0x78,0x29,0x2e,0x66,0x94,0x84,0x67,0x72, +0x65,0x72,0x1f,0xf6,0x1c,0x1a,0xb9,0x0b,0xcb,0xfa,0x70,0xd9, +0x67,0x7a,0xfb,0x70,0xcf,0x67,0xfa,0xfb,0x70,0xae,0x09,0xcc, +0x3d,0x20,0x86,0x77,0x92,0x92,0x54,0xa7,0x74,0xf3,0x14,0x33, +0xef,0xf0,0x13,0x11,0x5e,0x11,0x1c,0xe5,0x5a,0xb3,0x84,0x0f, +0x71,0x16,0xac,0x36,0xc0,0xd5,0xf8,0x81,0xe2,0x43,0xf8,0x80, +0xda,0x11,0x93,0x73,0x46,0x61,0x86,0xe1,0x69,0xba,0x14,0x8a, +0xe7,0xfe,0x5a,0xf8,0xa6,0x62,0xc2,0x0b,0xdb,0xbf,0x3b,0x83, +0x0f,0xfd,0xfc,0xf4,0xef,0x01,0x77,0x39,0xf8,0x0f,0x08,0x21, +0xd5,0x3b,0x9e,0x1d,0x80,0xe9,0xba,0x57,0xfa,0xf9,0x25,0x5d, +0x5a,0xdd,0xee,0x63,0x1c,0x1c,0xea,0xdd,0xc5,0x94,0x54,0xb9, +0x96,0x58,0x94,0x38,0x66,0xa9,0x1c,0xb7,0xaf,0x0f,0x6d,0xf5, +0xad,0xf2,0x57,0xa1,0xb4,0x23,0xa5,0x32,0xa9,0xe6,0x72,0xbd, +0x7e,0x2a,0x7f,0xd1,0x3e,0xc2,0x29,0xd4,0x9d,0x43,0x1b,0x53, +0xd0,0x60,0xec,0x35,0x34,0xcd,0xb6,0x39,0x54,0x98,0xf2,0xbf, +0xf4,0x3f,0xbd,0xd6,0xfe,0x3d,0xa7,0xc8,0x02,0x35,0x72,0x1f, +0xcb,0x0e,0x30,0x60,0x0a,0x65,0x04,0xcb,0xf6,0x41,0x19,0x2b, +0x44,0x88,0x3a,0x68,0xcb,0x70,0x11,0x7b,0xb9,0x2a,0xae,0xae, +0x51,0xb5,0x59,0xd7,0x9e,0x75,0x88,0x71,0xbd,0xe0,0x21,0xc5, +0xc5,0x26,0x20,0x65,0x82,0xb7,0xb8,0x1b,0xea,0x9b,0xb4,0xda, +0xf0,0xb7,0xae,0x37,0xdc,0xcb,0xfd,0x5d,0x94,0x6e,0x0b,0x1e, +0x83,0x60,0xd8,0xd0,0x87,0x1b,0x60,0x19,0xa3,0xf4,0xf7,0x2a, +0xf9,0x52,0xa2,0x70,0xbd,0xcf,0xc0,0xce,0x64,0x50,0xcf,0x02, +0x69,0xb5,0x38,0x71,0x42,0xbc,0x50,0x3d,0x08,0x6d,0xc3,0x39, +0x2c,0x61,0xf1,0x94,0x3f,0xea,0x8a,0xb1,0x98,0xbb,0xec,0xfa, +0x81,0x2f,0x07,0xbd,0xcb,0xe0,0xaa,0x22,0xb8,0x32,0x8a,0x9f, +0x50,0x99,0x94,0xb4,0xe4,0x37,0xe5,0xb5,0x3b,0x94,0xf0,0x21, +0x0e,0xc1,0xae,0x7e,0xce,0x01,0xe5,0x7c,0x64,0x72,0x58,0x7c, +0xd8,0xb9,0xb0,0xf3,0x7c,0x54,0x06,0xd3,0x72,0xad,0xf5,0xeb, +0xfc,0x6f,0xb8,0xf6,0xf9,0xb0,0xca,0x00,0x57,0x21,0x67,0x00, +0x5e,0xac,0x17,0xbe,0xbf,0x1d,0xe7,0xe1,0x5c,0x9c,0x51,0x69, +0xca,0x77,0x75,0x34,0x34,0x5f,0xa1,0x68,0x70,0xfe,0x90,0xb0, +0x91,0x4d,0x9a,0x20,0x7f,0xdf,0xa3,0xb4,0xa9,0x51,0x22,0x84, +0x40,0x3a,0x51,0xac,0xfe,0x5d,0x58,0xcd,0xe0,0x8f,0xe3,0xbb, +0x09,0xf8,0xbc,0x42,0xf3,0x6e,0x30,0x7f,0x8d,0xe6,0x5d,0x60, +0xfe,0x0d,0x6e,0xd3,0x60,0xd3,0xcc,0x25,0xed,0xcc,0x40,0x6a, +0xda,0xa0,0x4c,0x98,0xaa,0x70,0x50,0x1c,0x63,0x61,0x2e,0x14, +0x91,0x4d,0x30,0xf3,0x15,0xd3,0xad,0xfc,0x1a,0x67,0x6e,0x64, +0x40,0x4d,0x19,0x66,0x7e,0x83,0x33,0x59,0x25,0xa1,0x18,0x16, +0x13,0x93,0x2f,0x5a,0xbb,0x6c,0xe1,0x23,0xdc,0x75,0x0b,0xec, +0xbb,0x51,0xf2,0xf0,0x4d,0xf7,0xba,0x3b,0x30,0xa9,0x1b,0x27, +0x3d,0x37,0xda,0x81,0xbc,0xf8,0x35,0xd5,0x1c,0xa6,0x6a,0xac, +0x31,0xff,0x4e,0x1d,0x59,0x73,0x70,0x3c,0x82,0x5b,0xf1,0x23, +0x3b,0x8b,0x96,0xad,0xe6,0x16,0xdd,0x0c,0xee,0x1b,0x80,0x7d, +0x50,0x4d,0xc1,0xc3,0x7b,0x62,0xf8,0x99,0x9f,0x45,0x19,0xac, +0x16,0xd9,0x6f,0x7d,0xac,0x30,0x63,0x25,0x31,0x67,0x4e,0x9d, +0x8f,0x2f,0x97,0x81,0xc9,0x57,0xc2,0x67,0xf8,0xb7,0xe2,0xb3, +0xaf,0xd8,0x70,0x9c,0x66,0xb3,0x73,0xe1,0xe1,0x6a,0x6b,0x1e, +0x66,0x3c,0xe8,0xfd,0x33,0x19,0x3e,0xe2,0xee,0xa0,0x31,0x73, +0xb8,0xd0,0xbf,0x4f,0x7a,0x95,0x69,0xca,0xce,0xec,0x94,0xc1, +0x47,0xac,0x69,0xae,0xc4,0x44,0xf8,0x8e,0x8e,0x3d,0x18,0x25, +0x8e,0x3d,0x39,0x0e,0x44,0x03,0xf9,0x3b,0x2c,0xf0,0x74,0xd8, +0x53,0x47,0xfe,0x21,0x2b,0x9f,0x7d,0x56,0x8c,0x00,0x1e,0x05, +0xef,0xb3,0x10,0x85,0x7b,0x09,0xce,0xa6,0xdb,0xb3,0x59,0x94, +0x1b,0x93,0x9d,0x38,0xe5,0x19,0x0b,0x5b,0x45,0x37,0x34,0x6e, +0x27,0x8b,0xbb,0x45,0x37,0xb4,0x29,0x5f,0xd0,0x14,0x65,0xe0, +0xb6,0x22,0x47,0x6b,0x76,0xb5,0x58,0xb3,0x3a,0x9f,0xd1,0x5e, +0x91,0x04,0x5b,0xb2,0x80,0xaf,0x12,0x6b,0x76,0x96,0x17,0x6e, +0x09,0x46,0x23,0x5a,0xb3,0xe5,0x14,0x9f,0x04,0xa0,0xae,0x31, +0xaa,0x49,0x3b,0x6d,0x7b,0x81,0x2f,0x03,0x83,0xcb,0xe0,0xac, +0x42,0x47,0xa9,0xf1,0x17,0xf0,0x07,0x31,0x80,0x82,0x21,0x16, +0x07,0x71,0x3e,0xd1,0x87,0x97,0xc3,0xac,0x10,0x84,0xeb,0x89, +0x82,0xfc,0x21,0x10,0x66,0x3c,0x6f,0x33,0xdd,0x9b,0xf1,0x6f, +0x39,0xb5,0x0c,0x43,0x56,0xb0,0x54,0xac,0x24,0x70,0xf2,0x19, +0x9a,0x75,0x83,0xd9,0x73,0x34,0xeb,0x02,0xb3,0x17,0xb8,0x55, +0x4b,0xac,0xa1,0x56,0xa6,0x2f,0x25,0xbd,0x5f,0x26,0x4c,0x53, +0x68,0x89,0x35,0x44,0xa0,0x90,0xec,0x84,0x59,0xcf,0x68,0x0d, +0x3d,0xc7,0x59,0x3b,0x18,0xf8,0x58,0x19,0x66,0xbd,0xa0,0xa3, +0xf8,0xb8,0x3f,0x16,0x92,0x01,0xb0,0x87,0x12,0xcc,0x14,0xd5, +0x00,0x1c,0xa0,0x98,0xe0,0x46,0x5c,0x05,0x1b,0x69,0xe5,0x8d, +0xca,0x67,0x90,0xa7,0xa0,0xbd,0x6b,0xf0,0x29,0xac,0xea,0xc1, +0x55,0xcf,0x0d,0x77,0xa0,0xb6,0x58,0x5d,0xcb,0xcc,0x60,0xd9, +0x2e,0x56,0xa1,0x09,0x7b,0x88,0x21,0x5c,0x1c,0x64,0x4b,0x26, +0xe2,0x0b,0xf7,0xeb,0xb3,0x7f,0x6f,0xc4,0xad,0x64,0x09,0x4c, +0x7d,0xdc,0xad,0xb8,0x6e,0xfe,0x14,0xa7,0x2e,0x31,0xfb,0x0d, +0xdf,0xdb,0x6a,0x0e,0xa9,0xab,0xb1,0xdc,0x04,0xca,0x71,0xf5, +0x08,0xac,0x86,0xbc,0x3e,0xcc,0xfb,0x1e,0x52,0xba,0xf7,0xc0, +0x7b,0xbf,0x31,0x0a,0x25,0xe5,0x9e,0x6d,0x30,0x15,0x94,0xb0, +0x12,0x95,0x28,0xf2,0x80,0x43,0xe2,0x2a,0xfd,0x4a,0xda,0x5a, +0xa6,0x6e,0x34,0x7b,0x4d,0xeb,0x7c,0xfc,0x34,0xc4,0xd1,0xa7, +0x3e,0xf7,0x6f,0x31,0x83,0x73,0x06,0xec,0x00,0x7d,0xe8,0x01, +0xd0,0x84,0x52,0x0c,0x13,0x83,0x1e,0x68,0xbd,0xd3,0x2f,0x50, +0x86,0xcd,0x14,0x92,0x7c,0x07,0xf3,0x88,0xe7,0x19,0xaf,0x50, +0xaf,0xb3,0x1c,0x58,0xfe,0x3c,0xb0,0x1c,0xd6,0x3c,0x84,0x4e, +0x8c,0xc2,0x4e,0x60,0x15,0xea,0xac,0x5f,0xb8,0x7f,0xf8,0xe9, +0x70,0x4e,0x98,0x66,0xac,0x50,0x66,0xad,0x42,0x52,0xf5,0x60, +0x5a,0xe3,0x37,0xd5,0x3f,0xf5,0xaa,0x08,0x37,0xe0,0x2f,0x02, +0xff,0x81,0xfe,0x58,0xcb,0x6e,0xd7,0xa0,0x1b,0x27,0xc5,0x0d, +0x03,0xc3,0x41,0x36,0x0a,0xf5,0x02,0x51,0x62,0x86,0x1f,0xf4, +0x38,0xf1,0x83,0xa0,0x92,0x0f,0x1f,0x27,0x80,0x25,0x07,0x93, +0x14,0xca,0x4b,0x99,0x1c,0x7d,0xc9,0x97,0x4c,0x43,0x4e,0x5e, +0xab,0x4c,0xf8,0xf0,0x36,0x7b,0x11,0x75,0xcf,0xa2,0xc4,0x1a, +0x67,0xf4,0x38,0xf0,0x3d,0xa2,0xd4,0xdc,0xec,0xcb,0x60,0xce, +0xc1,0x54,0x85,0xf2,0x72,0xf1,0xc8,0x97,0x4c,0x43,0xee,0xc4, +0x91,0xcd,0x83,0xac,0xe2,0xa2,0x72,0x6c,0xe9,0xa5,0xf2,0x2b, +0xaa,0xe0,0xff,0x16,0xaf,0xb3,0xa0,0xa9,0x4c,0xdb,0x8f,0x3f, +0x4c,0xa1,0xdb,0x8a,0xc7,0x70,0x8d,0xa0,0x2e,0x4a,0x41,0x97, +0x56,0xc0,0x52,0x58,0x48,0x1c,0x83,0x9d,0xcf,0x38,0x85,0xd2, +0xc7,0x01,0xa5,0x21,0x5a,0x44,0x6b,0x7e,0x86,0x0e,0xec,0xc2, +0x0e,0x98,0x4f,0x1f,0x68,0xfb,0x29,0x89,0x30,0xd5,0x40,0xf1, +0x11,0xab,0x17,0x92,0xaa,0x03,0x73,0x1a,0x60,0x6a,0x35,0x30, +0x7d,0x2a,0xb5,0x72,0x0b,0x62,0x28,0x84,0xd1,0x1b,0xfd,0x6e, +0x4c,0x50,0x13,0x35,0x41,0x93,0x95,0xcf,0x1d,0x57,0x22,0x7d, +0x4d,0x83,0x3d,0x75,0x1d,0x4e,0xf5,0xbc,0xa7,0x9d,0xbe,0x91, +0x85,0xb3,0x57,0x9b,0xef,0xc4,0x4c,0x87,0xa9,0xc0,0x28,0xf6, +0x8c,0x2f,0x62,0xdc,0x23,0xdc,0x22,0x3d,0x26,0x66,0x3a,0x26, +0xe5,0xc1,0x8a,0xfa,0x27,0xa5,0xe1,0x03,0xbc,0x49,0xd0,0xb1, +0xe0,0xa3,0x13,0x33,0x1d,0x0c,0xdb,0x8c,0x73,0xbf,0xc5,0xf9, +0xb0,0x62,0x4d,0x4d,0x0f,0x7f,0xac,0xc1,0xb0,0xdb,0x7a,0x88, +0x6b,0x12,0x67,0x3a,0xae,0xbd,0x85,0x6b,0x13,0x33,0x1d,0x2c, +0x5e,0x13,0xf5,0xc6,0xff,0x56,0x8b,0x21,0xea,0x8c,0x6f,0x78, +0x4a,0xb1,0x0c,0x28,0x6d,0x86,0x56,0x5c,0xc8,0x56,0xb7,0x94, +0xf7,0xe4,0x77,0x71,0xed,0xe8,0xc3,0xa6,0x16,0xa6,0x14,0x26, +0x17,0x19,0x66,0xf0,0x1e,0x2b,0x75,0xd6,0xed,0x3e,0x54,0x67, +0xcd,0xa7,0xa7,0x49,0x30,0xf7,0x0f,0x5a,0xd8,0x4b,0x8c,0x56, +0xe3,0x47,0x07,0xaa,0x28,0x77,0x5b,0xf8,0xe2,0x3a,0x4c,0x4d, +0x80,0xdd,0xdc,0x6b,0xcc,0x60,0x8c,0x0a,0xbc,0x07,0xa4,0xcf, +0x98,0xf6,0x8c,0xac,0x56,0x19,0x48,0x59,0xf3,0x5c,0xc9,0xf8, +0x07,0xde,0xe4,0x35,0x2c,0x12,0x94,0x70,0xd1,0x73,0x50,0x1f, +0x40,0xf5,0x3f,0xf5,0x17,0xe2,0x2e,0x23,0xd8,0xb5,0x03,0xe7, +0x29,0x94,0x60,0xde,0x46,0xdc,0x6b,0x08,0x7b,0x71,0xc5,0x30, +0xac,0x80,0x83,0x83,0x2c,0xfc,0x29,0xdc,0x27,0x01,0xb6,0xc7, +0x2d,0xdd,0x1c,0x38,0x34,0x63,0xea,0x1a,0xaa,0xda,0xca,0x29, +0xc6,0x59,0x88,0x9b,0x08,0x4e,0xde,0x04,0x93,0x59,0x08,0xc6, +0xc9,0x64,0x03,0x4c,0xfe,0x9a,0x81,0xfb,0xa7,0x09,0x6a,0x21, +0x01,0x2d,0x5a,0x31,0xa8,0x45,0x7f,0x61,0x1e,0x6a,0xb1,0xe3, +0xc1,0x9d,0xe4,0x15,0x65,0x53,0x0c,0x2c,0x50,0x06,0xe6,0x6b, +0x71,0xa2,0x17,0x46,0xe4,0xfb,0x88,0x71,0xdf,0xae,0x31,0x6d, +0x51,0x70,0xf3,0x9a,0xd3,0x53,0xed,0x3e,0x0a,0x3e,0x96,0xd4, +0x12,0xd8,0x78,0x8c,0xf6,0xa1,0x8b,0x8a,0x11,0xa1,0x5f,0x18, +0x61,0xc7,0x3f,0x46,0x43,0x62,0xd2,0xbb,0xf5,0x86,0x4e,0xbd, +0x8b,0x25,0x3f,0xe2,0xfc,0xfc,0xd8,0x90,0x11,0x27,0x4c,0x09, +0x27,0x78,0x0c,0xf4,0x29,0x61,0x1d,0x43,0x7d,0x42,0x37,0xf4, +0x51,0x9f,0xc5,0xcb,0x06,0x04,0x2d,0x68,0xba,0x05,0x0b,0xd1, +0xca,0x34,0xc9,0x02,0xf5,0x19,0xb4,0xc4,0x8d,0x04,0xc9,0xba, +0x6b,0xa2,0xe0,0xfb,0x21,0xb4,0xd0,0x05,0x35,0xe4,0xd8,0x55, +0x8e,0x06,0x0b,0x6c,0xc5,0x18,0x21,0xcd,0x7d,0xa3,0x97,0x1f, +0x4d,0x2c,0x89,0xfc,0x62,0x2f,0x6c,0x50,0x13,0xfc,0x45,0xc5, +0x4d,0x25,0xf8,0x5c,0x70,0x27,0x3d,0xbd,0x1d,0x37,0xea,0x6f, +0x71,0xb0,0x4d,0x11,0x8b,0xf3,0xc5,0x78,0x94,0x13,0xb3,0x96, +0x39,0xed,0x32,0x21,0x0a,0x72,0x46,0x14,0x0e,0x6c,0x5e,0x73, +0x76,0x63,0x6a,0xbd,0x5e,0x3a,0x7f,0x7c,0xde,0x01,0x9c,0xbd, +0x6e,0x23,0x17,0x0b,0x7b,0xc5,0x20,0x39,0xa3,0xff,0x8e,0xa6, +0x73,0x4f,0xb7,0xc7,0x84,0x4b,0xa7,0x06,0xc8,0xac,0x77,0xff, +0xa8,0x81,0xb8,0x5e,0x73,0xd0,0xe9,0x8e,0xfe,0x80,0x31,0x27, +0xf4,0x3f,0x24,0xdd,0x4b,0x7b,0x70,0x59,0x21,0x4e,0xbf,0x56, +0xc8,0xfb,0x82,0xc4,0x18,0x56,0x58,0xfc,0x26,0xae,0xab,0x52, +0x22,0xf7,0xfe,0xec,0x87,0x45,0x25,0x7f,0xe8,0xe5,0xf2,0xa7, +0x97,0x1a,0x51,0x22,0xb6,0x41,0x7c,0xbf,0xa2,0xf5,0xbf,0x7e, +0x04,0x61,0xf3,0x00,0x81,0x85,0xc2,0xe6,0x0d,0x94,0x4b,0x66, +0x5a,0x4a,0xe8,0x98,0xda,0x94,0x9d,0xdd,0x20,0x7b,0x31,0xda, +0xa5,0x7b,0x8d,0xfe,0xfd,0x0b,0x2f,0x0c,0x41,0x5f,0x0f,0xee, +0x1b,0x83,0xb9,0x5d,0x38,0x77,0x14,0x36,0x75,0xe1,0xa6,0x31, +0x3d,0x1d,0x34,0x14,0xbf,0xd6,0x5b,0xc0,0x7a,0xdd,0x09,0x57, +0x67,0x1d,0xdc,0x63,0x06,0xdd,0x06,0x18,0x36,0xef,0x90,0xc5, +0xdd,0x63,0x87,0x58,0x0b,0x51,0xbd,0x67,0xbf,0x7c,0xd6,0x7f, +0x79,0x4e,0xc1,0xf3,0x0d,0xd1,0x45,0xc3,0x51,0x16,0x0b,0x31, +0xf6,0xbf,0x3e,0xf1,0x05,0xd0,0x21,0xe2,0xc5,0xd9,0xdb,0xe8, +0x46,0x37,0x0e,0x8e,0xb1,0x70,0x56,0x87,0x8c,0x81,0xa6,0x0e, +0xab,0x50,0x12,0x69,0xe2,0xff,0x52,0x13,0x55,0x02,0x3d,0x84, +0xb2,0x85,0x6b,0xf4,0x32,0xc7,0xc8,0x35,0xd0,0x3c,0x46,0x1b, +0x94,0xa5,0xfc,0x10,0xe9,0x63,0xa1,0xe2,0xb2,0xf8,0x86,0xcc, +0xf8,0x8a,0x6f,0x0f,0x8f,0xba,0xc7,0x31,0xfc,0x3c,0x3e,0xbb, +0xc8,0xe1,0x65,0x16,0x1f,0xf8,0xe1,0x87,0x3b,0x70,0x86,0xb4, +0xcf,0xea,0x15,0x48,0x0b,0x61,0x61,0x2c,0xdc,0x56,0x91,0x6b, +0xc2,0x56,0x66,0x5c,0x13,0x19,0x72,0x43,0x3e,0x53,0x93,0xcd, +0xa4,0x63,0xcf,0x30,0xae,0x17,0x86,0x19,0x3d,0x98,0x4c,0xb4, +0x15,0xba,0x57,0x29,0xfb,0x52,0x68,0x12,0x45,0x15,0xe3,0x7a, +0x3e,0xad,0x4c,0xf6,0x40,0x78,0x08,0xfb,0xc6,0x67,0xd2,0xab, +0x69,0xd5,0xf8,0xdd,0x95,0x0a,0xa5,0x4c,0x5b,0x76,0x56,0xb3, +0xec,0x19,0x6b,0x98,0x23,0x41,0x18,0x22,0xe8,0xfb,0x1c,0x7c, +0x99,0xa1,0x1d,0xe4,0x39,0x84,0x8b,0x8a,0x03,0x12,0xa1,0x81, +0xa8,0x0f,0xc3,0x34,0x6b,0x36,0x1d,0x2e,0x4e,0xb8,0x23,0x2c, +0x61,0xa2,0xed,0x24,0xb8,0xc0,0x05,0xe6,0x31,0xd1,0xb6,0xff, +0xe9,0x8e,0x60,0x21,0xba,0x23,0x24,0xe3,0xef,0x98,0x8c,0xbb, +0x98,0xe8,0x2e,0x09,0xcc,0xaf,0xc3,0x05,0x4c,0x74,0x9b,0x04, +0x16,0xd5,0x89,0xee,0x08,0x35,0x7d,0x89,0x43,0xa9,0x6d,0x59, +0x2a,0xa7,0xeb,0x0c,0x83,0xb4,0xc3,0x8e,0x44,0xaa,0xa4,0x61, +0x88,0xc4,0x12,0xa7,0x0d,0x3f,0x64,0x84,0x44,0x0a,0x39,0xa8, +0xc5,0x4d,0x84,0x93,0x6c,0x85,0x36,0x01,0xc3,0x2a,0x34,0x64, +0x68,0x31,0x6e,0x24,0xbf,0xe0,0x9e,0x65,0x2c,0xa8,0xde,0x25, +0x8e,0x2b,0x1a,0x59,0xbc,0xa9,0xf0,0x24,0x72,0x17,0xda,0x51, +0x4b,0x6a,0xe0,0x42,0xed,0xf8,0x7a,0x57,0x08,0x66,0x42,0x63, +0xce,0x45,0x87,0x49,0x31,0x91,0x11,0x16,0xd7,0x10,0xb7,0xc5, +0x6c,0x5c,0x5a,0x5c,0x5a,0xba,0x2a,0xfc,0x43,0x4f,0x56,0xfc, +0xf9,0x06,0x0e,0x31,0xfe,0xbe,0xf6,0x67,0xb6,0x86,0x65,0x39, +0xf3,0x7f,0xa6,0x0f,0x94,0x14,0x75,0x72,0x20,0x09,0x62,0x5c, +0x32,0xcf,0x75,0x49,0x41,0x95,0xa9,0x4c,0x49,0x2b,0x96,0x65, +0xb3,0xd6,0xc9,0x12,0x2f,0x9c,0xc1,0x86,0x44,0xc6,0x67,0xc8, +0x72,0xc0,0x9d,0x55,0xfc,0x49,0x49,0xae,0xf0,0xa7,0x8b,0xe2, +0x4f,0x06,0xa4,0x87,0x88,0x03,0xfc,0xce,0xde,0x74,0xfb,0xf2, +0xf8,0xdb,0x53,0x85,0x6d,0xfc,0x92,0xa2,0xdd,0xc5,0x87,0x1a, +0x38,0xc5,0xce,0x08,0xa2,0xe9,0xba,0xf5,0xe4,0xfc,0xa0,0x3c, +0x6b,0xbe,0x37,0x65,0x28,0xa3,0x3f,0x97,0x73,0x07,0x07,0xd6, +0xde,0x7c,0x83,0x37,0xee,0x0b,0xcf,0xb4,0xe2,0x41,0x3f,0x19, +0x94,0x5a,0x9a,0x9f,0x73,0x70,0x9a,0xf1,0x8b,0x39,0x7d,0xe1, +0x8c,0x34,0x20,0xea,0x7c,0xa4,0xab,0x1a,0xaa,0x32,0x99,0x76, +0x22,0xc5,0xbc,0x5d,0x94,0xdd,0x9e,0x2c,0x4b,0xac,0x8c,0xad, +0x6e,0x54,0x55,0x54,0x33,0x95,0x69,0xe5,0xe9,0xc5,0x99,0x9c, +0xd2,0x0b,0x79,0x1b,0xf9,0x67,0xf2,0x98,0xf0,0x00,0x46,0x61, +0x90,0xfd,0x0a,0x07,0x09,0x3c,0x52,0xc4,0x21,0x0f,0x17,0xd1, +0xdd,0x1a,0x36,0xea,0xe3,0x32,0x6b,0x58,0xa6,0x83,0xff,0x5c, +0x85,0x95,0x6d,0xb8,0x72,0x90,0x19,0x48,0x1c,0x4b,0xeb,0xcc, +0x0b,0x6c,0xe1,0x4d,0x03,0x75,0x83,0x37,0x45,0x70,0xd8,0xdc, +0xdf,0x2e,0x2c,0x63,0x53,0xad,0x27,0x04,0xb1,0x72,0xf3,0x3b, +0x65,0xf2,0x5a,0xc5,0x6c,0x56,0x21,0xc5,0xd9,0xe4,0x31,0x5c, +0xda,0xc3,0x82,0x9d,0xf2,0x63,0xc8,0xd9,0xc3,0x8e,0xdb,0xd2, +0x94,0xa7,0x70,0x69,0x97,0x98,0xf2,0x14,0x72,0x76,0xb1,0x78, +0x14,0x97,0x93,0x98,0x90,0x0b,0xa7,0x22,0x43,0xb8,0xc0,0xf0, +0x73,0xd1,0x9e,0x6a,0x38,0x85,0x49,0xb1,0x12,0x5d,0x6b,0xba, +0x0a,0xd3,0xca,0x33,0x64,0xe9,0x65,0x49,0x3d,0xb1,0x3d,0x9c, +0x22,0xd8,0x0a,0xd4,0x99,0x13,0xa6,0x5a,0x3e,0x28,0x09,0xce, +0xa5,0x40,0xeb,0xc3,0xec,0x37,0x4d,0x65,0x9f,0x53,0x92,0x73, +0xb6,0x8b,0xc0,0x36,0x38,0x38,0x8c,0x07,0x61,0x19,0x1c,0x18, +0xc2,0x03,0xb0,0x1c,0x2c,0x47,0x50,0x97,0x2d,0xeb,0xce,0xeb, +0xcb,0x68,0x36,0xcc,0xe2,0x43,0xac,0x4e,0xeb,0x7b,0x1a,0x71, +0x94,0x12,0x14,0x75,0xe5,0x76,0x66,0xf5,0x18,0xe5,0xf0,0x2e, +0x38,0x55,0x0f,0x67,0xef,0x59,0x5d,0x6f,0xc9,0xe7,0x16,0x65, +0x17,0x65,0x14,0x72,0x8a,0xbf,0x46,0x6e,0x08,0x07,0x46,0xd9, +0xf1,0xb1,0xa5,0xe4,0x33,0xf0,0x93,0x17,0x61,0xc3,0xf8,0x8f, +0x74,0x80,0x94,0x4f,0x26,0xb4,0x91,0x1d,0x82,0x9d,0x0c,0x9c, +0xa0,0xe0,0x9b,0x5e,0x7c,0x1b,0x2e,0x67,0x15,0xdd,0x4d,0x04, +0x76,0xa2,0x06,0xee,0x64,0x84,0x4f,0x8e,0x12,0x7a,0xe7,0x6d, +0xd4,0x60,0x28,0xba,0x53,0xc4,0x54,0x6b,0x31,0xb5,0x1b,0xe8, +0x18,0xb5,0x0d,0xb7,0xc1,0x36,0x56,0x7c,0x31,0x9f,0x40,0x84, +0x8f,0x3b,0xc7,0xfb,0x2c,0x85,0x69,0xb6,0x8a,0x79,0xb8,0x7f, +0x04,0x3e,0x81,0x37,0xb8,0x6f,0x94,0xa2,0xcc,0xb7,0xf8,0xc9, +0x08,0xec,0x57,0xac,0x65,0xf0,0xdb,0x9d,0xc4,0x0e,0xbc,0x5b, +0x28,0x1c,0x51,0xb6,0x83,0xd0,0x16,0x56,0xb1,0x0e,0xa7,0x93, +0x16,0xf4,0xb6,0x63,0xe5,0xef,0x2b,0xb7,0xe0,0x19,0x3b,0x16, +0x67,0xad,0x25,0x06,0xf6,0x4c,0x24,0xbb,0x3d,0x64,0xfb,0xb9, +0x35,0x67,0x39,0x8a,0x44,0x24,0x49,0xf0,0x7e,0xfa,0xcb,0xcc, +0xd3,0xcd,0xfc,0x9a,0x10,0xfc,0xe8,0x2c,0x7e,0x12,0xc5,0x21, +0x61,0x2d,0x23,0x53,0xac,0xe1,0x93,0xec,0x5f,0xb3,0xde,0x16, +0xaa,0xf8,0x3a,0x19,0xf9,0x6b,0x84,0xe4,0xda,0xf3,0xa8,0x86, +0x37,0xae,0xb5,0xc9,0x25,0x36,0xd7,0xe0,0x86,0xe2,0x1b,0xe6, +0x6d,0xc9,0xdd,0xee,0xdf,0x55,0xa9,0x95,0x5c,0x21,0xc6,0x3c, +0xcf,0x5d,0x8b,0x7a,0x6c,0x26,0x2d,0xf8,0x7d,0x14,0xec,0x66, +0x35,0xc8,0x40,0x59,0x31,0x93,0x0e,0x9b,0xdb,0x0f,0x90,0x23, +0x58,0x76,0x8b,0x85,0xd7,0x47,0xc8,0x2d,0x68,0x3b,0xc2,0xe2, +0x9f,0xb6,0x14,0xb7,0x96,0x51,0xdc,0xfa,0x5a,0x19,0xda,0x34, +0xb0,0x8d,0xf2,0xac,0x02,0xf9,0x6a,0x6a,0x4c,0xfe,0xe9,0xa6, +0x2d,0x44,0x53,0x1b,0x9d,0xd9,0xa4,0xf4,0xa4,0xf4,0xc4,0x74, +0xa3,0x22,0xde,0xdb,0xd8,0xc5,0x4a,0xdf,0xbe,0xd1,0x93,0xdf, +0x6a,0xf6,0xf7,0xc7,0x3d,0x8c,0x22,0xe4,0x1a,0xb5,0x3e,0xa3, +0x6c,0x71,0x6e,0x41,0x41,0x6e,0x11,0x27,0x57,0xa5,0x3d,0x66, +0xdc,0x1d,0x37,0xcb,0xdd,0x19,0x1d,0x90,0x10,0x4d,0xc5,0x1f, +0x37,0x58,0x9c,0x8f,0x3a,0x94,0x23,0xde,0x3a,0x24,0x06,0x2a, +0xee,0x62,0x63,0x02,0xa3,0x83,0x2e,0x84,0x2c,0x0c,0x59,0x72, +0x1e,0xdf,0x8f,0x48,0x36,0xe2,0x7f,0x4e,0xfe,0x35,0xed,0x55, +0x86,0xb3,0xf3,0x7e,0x6f,0xfc,0xc4,0x27,0xdf,0x88,0x87,0x4b, +0x5d,0x0f,0x1e,0x02,0xaf,0x0a,0x6e,0x3a,0x96,0xa2,0x94,0x42, +0x22,0x6d,0x5e,0xa3,0x7d,0x38,0x7a,0x0f,0x9e,0xf5,0xe3,0xb3, +0x4e,0x6d,0x85,0xd5,0xd5,0x3f,0xe0,0xeb,0x01,0x5a,0x07,0x3e, +0x20,0xa5,0x43,0xec,0x37,0xb0,0x1e,0x22,0x71,0xfd,0x2b,0x98, +0x0c,0x4b,0x3e,0x1f,0xd8,0xfe,0x54,0x6f,0x17,0x7e,0x4a,0xbf, +0x76,0x1a,0x3d,0xc3,0x25,0x6f,0x37,0xe1,0x3a,0x8c,0x84,0x75, +0xeb,0xd1,0xd0,0x10,0x0c,0x91,0x5a,0xd6,0xf5,0xa0,0xc5,0xd4, +0xc9,0xe7,0x10,0x58,0x69,0xce,0xe0,0x33,0x47,0x0a,0x91,0x0e, +0xa3,0x91,0xb4,0xc3,0x42,0x02,0xc6,0xe0,0xdc,0x0c,0xb6,0xf0, +0x83,0x6a,0x17,0xcc,0xdf,0xcc,0xa2,0x6e,0x04,0xea,0x86,0xe0, +0x66,0xe9,0xe6,0x70,0xbf,0x00,0x0d,0xb5,0x35,0xa2,0x83,0xcf, +0x37,0xcc,0x4f,0x0d,0xf5,0x30,0x23,0x4d,0x96,0x0d,0xbb,0x92, +0x28,0xcf,0xd6,0x54,0x05,0x99,0x82,0x1e,0xba,0x6b,0x03,0x59, +0x8d,0x9f,0x7e,0xcf,0x0a,0x7b,0xf1,0x4b,0x12,0xf8,0xc2,0xed, +0x7b,0xe7,0xc7,0x26,0x3e,0x7c,0xdd,0xee,0xaa,0x95,0xb9,0xdb, +0x38,0x7c,0xfc,0x98,0xe0,0x9c,0x25,0x30,0x47,0x5c,0x9a,0x4c, +0xef,0x3b,0xe7,0x37,0x9c,0x43,0x4d,0xf4,0x2f,0xbd,0x04,0x74, +0xff,0x80,0xb7,0x8b,0x60,0x2d,0xcc,0x1c,0x52,0xcc,0xfd,0x67, +0xca,0xf0,0x6d,0xf8,0x7d,0x94,0xed,0x13,0x83,0xeb,0xe5,0x0b, +0x33,0x85,0x7c,0x34,0xf8,0xbf,0xb2,0x7d,0xfa,0x03,0x0a,0x5d, +0x23,0x30,0x65,0xc2,0xde,0x85,0x10,0x56,0xb0,0x7f,0x10,0x5c, +0xbb,0x02,0xdf,0xfe,0x44,0xb3,0xbf,0x41,0xae,0xc5,0x0a,0x56, +0x98,0x42,0x7e,0x85,0xbc,0xa5,0xac,0xe2,0x5f,0x68,0x45,0x20, +0x9e,0xb2,0xc4,0x78,0x56,0xb0,0x81,0x15,0x64,0x21,0xe6,0xbd, +0x93,0xe7,0xcb,0xc3,0xa9,0x98,0xc7,0x80,0x3a,0x4a,0x48,0x8f, +0xeb,0x6d,0xe3,0x4e,0xf3,0xfa,0x56,0xde,0xaa,0x53,0xb3,0xcb, +0xa4,0x8e,0xc3,0x11,0x3c,0x40,0xee,0x37,0x0e,0x76,0x75,0x88, +0xf2,0x7c,0xf6,0x66,0x06,0xd6,0x47,0xc5,0xc9,0xfc,0xd9,0xbb, +0xc9,0xdf,0xca,0x7a,0xff,0x28,0xb3,0xf2,0xce,0x61,0x8a,0xc3, +0x62,0xe3,0x2f,0x25,0x24,0xa8,0xb6,0xb0,0xd6,0x29,0x12,0x63, +0x6a,0xf6,0x4f,0x84,0x27,0x96,0xca,0x84,0x4d,0x57,0x15,0xbb, +0x3b,0x3a,0xc1,0x8b,0xb2,0x1b,0xaf,0x4e,0xb0,0x80,0xd9,0xa8, +0xc9,0xe6,0x65,0x17,0xe4,0x65,0xe6,0x71,0x65,0x18,0xc9,0x26, +0x26,0x25,0x24,0x26,0x24,0x59,0x65,0xf2,0x6e,0x16,0x9a,0x96, +0xdb,0x4f,0xe4,0x39,0xf1,0xe9,0xf1,0xe9,0x09,0xe9,0x09,0x9c, +0x3a,0xec,0xdd,0x62,0x38,0x8a,0x3b,0x3d,0x60,0xb6,0x17,0x2e, +0xf0,0x80,0x05,0x5e,0x48,0x3c,0x60,0xcf,0xd8,0x20,0xae,0x35, +0xbc,0x3a,0x91,0xec,0x81,0x8b,0x3d,0x60,0xb1,0xeb,0x44,0xf2, +0xed,0x41,0x2b,0xd6,0x3a,0xd7,0xaf,0x47,0x0a,0x59,0x4c,0x46, +0x6a,0xdc,0xe5,0x64,0x59,0xd2,0x49,0xc9,0x53,0xa6,0x23,0x3b, +0x87,0xda,0xa5,0xbb,0x7a,0xac,0xa2,0x98,0x3e,0x40,0x2f,0xcc, +0xa8,0xc3,0x19,0xed,0x40,0x1a,0xf0,0x86,0x13,0x28,0x5b,0xe3, +0x74,0x17,0x98,0x6e,0x8a,0x9f,0x38,0xc1,0xad,0x06,0x16,0x3c, +0x95,0x7b,0x81,0xd4,0x21,0x69,0x87,0xf9,0x0d,0xf8,0xd0,0x09, +0x3e,0xfe,0xcf,0xfd,0x1f,0x3b,0xc1,0xa3,0x06,0x16,0xe3,0x71, +0x26,0x39,0x13,0x12,0x18,0x1c,0x70,0x86,0x43,0x1f,0xa6,0x20, +0xb3,0x20,0x2b,0x27,0x9b,0xdb,0xbf,0x9d,0xc0,0x87,0x4e,0xe2, +0x5b,0xe8,0xca,0x20,0x32,0x08,0xab,0x0d,0xd9,0x22,0x6c,0x26, +0xd4,0x1e,0xed,0x81,0x03,0x0c,0x2e,0xc7,0x4f,0x49,0x7e,0x46, +0x61,0x6e,0x7e,0x7e,0x7e,0x50,0x6e,0x70,0x46,0x68,0x41,0x19, +0x1f,0x9a,0x1e,0x94,0x15,0x98,0x95,0x9b,0x9f,0x9d,0x97,0x9a, +0xe5,0x53,0xc0,0x9f,0x0d,0x0a,0x0e,0x0c,0x0a,0xf0,0xcb,0xf1, +0xcf,0x3a,0x93,0x72,0xda,0x87,0xcf,0x3c,0x9f,0x77,0x26,0x3f, +0x38,0x20,0xd0,0x3f,0x38,0xf0,0x2c,0xa7,0xf4,0x0b,0x18,0x10, +0x78,0x2d,0x6c,0xfd,0x94,0xc9,0xaf,0x2e,0x68,0x4e,0xaf,0xe7, +0xda,0x70,0x1f,0x9b,0x5c,0x94,0x54,0x9c,0x58,0x6c,0x90,0xc4, +0xfb,0x2c,0x33,0x5b,0xa1,0xbe,0xab,0xc1,0x91,0x4f,0x4a,0x4a, +0x4a,0x4e,0x4a,0xe6,0xe4,0x2a,0x5b,0xc8,0x93,0x07,0x83,0x4f, +0xcb,0x9e,0x53,0xec,0x5b,0xc9,0xa6,0x97,0xa5,0x95,0x27,0x97, +0xeb,0x25,0xf3,0xde,0x1b,0x8c,0x36,0x1e,0x38,0x50,0x6f,0xc3, +0xe7,0xe6,0xe6,0xe6,0xe7,0x14,0x54,0x5b,0x36,0xda,0xb4,0xdb, +0xeb,0x59,0x1f,0xb2,0xdd,0xe1,0x58,0x69,0xc4,0x7f,0xd9,0xfa, +0xa8,0xf3,0x5a,0xef,0x5d,0xfd,0xe7,0x66,0xaf,0x6c,0xaf,0x0c, +0xf0,0x3b,0x9a,0xd4,0xdb,0x8e,0x52,0xcb,0xbb,0x02,0xa2,0xc9, +0x59,0xcf,0x00,0xc7,0xd3,0xae,0x1c,0x1d,0x5d,0x8b,0xaa,0xf2, +0x6b,0x73,0xea,0x39,0x41,0x72,0x8c,0x24,0xa7,0xd3,0x4f,0x06, +0x07,0x61,0x8c,0xaf,0xae,0xd5,0xb1,0xc3,0x3a,0x16,0x6d,0xb6, +0x5d,0x6e,0x7d,0x9c,0x62,0x2b,0xfa,0x10,0x50,0xfe,0x0a,0x95, +0xd9,0x6e,0x65,0x50,0xfe,0x96,0xfe,0x62,0x20,0xea,0x11,0x98, +0xf7,0x15,0xce,0x13,0x93,0xe6,0x7d,0x4b,0x7f,0xc1,0xa8,0x8a, +0x0c,0xb9,0x3f,0x35,0x1f,0xb4,0x69,0xec,0xe4,0x0d,0x5b,0x77, +0x77,0xea,0x55,0x73,0x18,0x8a,0x9b,0x49,0x9e,0x43,0xae,0x55, +0x96,0x79,0x7b,0x0e,0x1f,0xd4,0x1d,0xd8,0xee,0xd7,0xc0,0xe1, +0x4b,0x8c,0x21,0x75,0x37,0xca,0xbf,0x48,0x7f,0x6a,0x91,0xce, +0x9f,0x39,0x78,0x52,0xdd,0x45,0x87,0x83,0x38,0xd0,0x23,0x39, +0xc6,0x99,0xfa,0xa9,0x47,0x7b,0xd3,0xf9,0xb3,0x37,0x82,0x47, +0x02,0xfb,0x38,0x94,0x06,0x93,0x14,0xad,0xc4,0xfd,0xb1,0x1a, +0xfd,0xc9,0xfc,0xc5,0x7b,0x11,0x77,0xce,0xdd,0xe4,0xc0,0x0f, +0x03,0x09,0x2c,0xa8,0x03,0xbd,0xbb,0xc0,0xdc,0x39,0x3d,0xc8, +0xe3,0x6c,0x0d,0xdc,0xa4,0x89,0x1b,0x5c,0x38,0xa5,0x67,0xa2, +0xa4,0x64,0xa1,0xb0,0xfd,0x00,0x93,0x5b,0x93,0xd3,0x94,0x2a, +0x4a,0x4a,0xce,0x63,0x93,0x8a,0x12,0x8a,0x13,0x8a,0x4d,0x93, +0xf8,0x80,0xa5,0x8e,0xab,0x74,0x77,0xd7,0xbb,0xf0,0x69,0x59, +0x12,0x61,0xf9,0x23,0x02,0xc7,0x86,0x28,0xdf,0x9b,0x58,0x8f, +0xab,0x6c,0xf0,0x08,0x67,0x32,0xa8,0x1d,0x8a,0xf3,0xec,0x70, +0xa6,0xf4,0x6c,0x6b,0x48,0x53,0x48,0xb5,0x4b,0x28,0x9f,0xe5, +0x90,0x6d,0x9d,0x6e,0x5e,0x9e,0xc6,0x87,0xfb,0x86,0xf9,0x9e, +0xf3,0x6d,0x77,0xe2,0x6f,0x83,0xac,0x14,0xd6,0x24,0x82,0x21, +0xf7,0x3b,0x83,0xeb,0xa2,0x71,0xc6,0xd9,0xed,0x52,0x8b,0xc8, +0xd0,0x73,0x1e,0x6a,0xda,0x4c,0x8e,0xa1,0xa4,0x87,0xb9,0x5a, +0x56,0xf8,0x24,0x55,0x96,0xf6,0x32,0x1e,0xe6,0xc6,0x02,0xa5, +0x09,0x6b,0x7b,0x19,0xd0,0xd2,0x26,0x2f,0x81,0xa9,0xfa,0x39, +0x15,0x3e,0xe0,0x12,0x99,0x64,0x9c,0xd1,0xb8,0xfc,0xab,0x89, +0x15,0xba,0x9b,0x60,0x9a,0xf3,0x5f,0xc1,0x6f,0xb9,0x43,0x4c, +0xf0,0x7c,0x67,0x9c,0xbc,0x6b,0x1e,0xa7,0x98,0x04,0xf6,0xe4, +0xbc,0xe7,0x84,0x76,0xe5,0x02,0x26,0xb7,0x3a,0x5b,0x94,0xae, +0x74,0x42,0x3a,0x38,0xa9,0x5c,0x43,0x15,0xb6,0x5d,0x19,0x54, +0x6e,0xd2,0x5f,0x61,0x5b,0x22,0xe9,0x32,0xed,0xd6,0x6c,0xd2, +0x6c,0x6a,0xe3,0x1d,0x6e,0x98,0xdf,0x30,0xef,0xe1,0xc6,0x67, +0x60,0x38,0x85,0xba,0xd7,0x28,0x30,0xa5,0x87,0x2d,0xbc,0x29, +0xca,0x4b,0xce,0xc5,0xab,0xe4,0x87,0x1b,0xbf,0x7d,0x73,0xef, +0x27,0xd7,0x2e,0x7e,0xdf,0xaa,0x95,0x9f,0xae,0xd2,0xe1,0x14, +0x5f,0x6a,0x91,0xaa,0x9b,0xc5,0x2f,0x53,0x9e,0xda,0xa4,0xf2, +0x61,0xff,0x16,0x95,0x34,0x9f,0x10,0x95,0x4c,0x7b,0x27,0x2a, +0x79,0xfe,0xda,0x99,0x91,0x33,0xbd,0x1c,0x4e,0x3b,0x43,0x12, +0x35,0x13,0xf6,0x6b,0xa8,0x76,0x26,0x89,0xa2,0x92,0xe1,0xb7, +0x54,0x94,0xa0,0x4d,0x30,0x22,0x09,0x71,0xb1,0x09,0x17,0xa4, +0xb0,0x01,0x3f,0xac,0x6e,0xc5,0x95,0x30,0xfd,0x6c,0xea,0xf9, +0xd8,0xb0,0xb3,0xe2,0x34,0x6b,0x14,0x5c,0x82,0x63,0xbd,0x78, +0xec,0x8e,0xb1,0x06,0x1a,0x9a,0x52,0x9b,0xcb,0x33,0x9b,0xd7, +0x6e,0x46,0xc9,0x51,0x69,0xb9,0x39,0x4c,0xba,0x33,0xd8,0x97, +0x44,0x21,0x2c,0xc5,0x76,0x5e,0xa9,0xee,0x7b,0x4d,0x8f,0xed, +0x34,0x53,0xa9,0xb2,0xee,0xae,0x6a,0xa8,0xab,0x6c,0x54,0xa1, +0x86,0xd9,0xdf,0xe1,0x84,0xb3,0xb3,0x9b,0x63,0x91,0x53,0xbe, +0x63,0x9e,0xbb,0x03,0x5f,0x13,0x58,0xeb,0x5f,0xe3,0x6f,0xe8, +0x74,0xc8,0x7d,0xab,0x4f,0xb1,0x29,0xff,0x7d,0xc5,0xd3,0x86, +0xeb,0x5d,0x5d,0x9e,0x5d,0xee,0x5d,0x2e,0x55,0x9d,0xbc,0x65, +0xb5,0x6d,0x85,0x6d,0x69,0x6b,0x73,0x4d,0x77,0xc9,0x30,0xed, +0x13,0x1e,0x6c,0x4a,0x56,0x72,0x76,0x72,0x36,0x57,0xcb,0xc8, +0x57,0x0a,0xe7,0x88,0xc2,0xd8,0x00,0x0e,0x2b,0xb4,0x51,0x02, +0x57,0x0d,0x14,0x87,0x86,0xee,0x43,0x33,0x73,0x71,0xdf,0x05, +0x83,0x70,0x4b,0x4e,0xf3,0xbc,0x4f,0xd0,0x51,0xf1,0xc5,0x49, +0xb6,0x9e,0x88,0xa0,0x7e,0x6f,0xae,0xfa,0x39,0x4b,0x96,0xf5, +0x5d,0x3c,0xcc,0x82,0x76,0x55,0x3c,0x02,0xea,0xe0,0xce,0x8c, +0x7f,0xab,0x43,0x4e,0xb2,0xc6,0x81,0x8e,0x26,0x2e,0xd2,0x0a, +0xc7,0x9a,0xd2,0xfc,0x92,0x8c,0x09,0xe5,0xca,0x4b,0x97,0x2f, +0xf4,0x6b,0xf3,0x55,0x55,0x56,0xfd,0xe1,0xa9,0x91,0xb1,0x61, +0xe7,0x55,0xc2,0xce,0x5f,0x8c,0x93,0x24,0xe5,0x25,0x94,0x57, +0xa8,0x16,0xb1,0x90,0xbe,0x82,0xd0,0x7f,0x53,0xf2,0xe2,0xcb, +0xcb,0x54,0x0b,0x2c,0x4e,0xb1,0xe6,0x81,0x4e,0x66,0xf4,0x02, +0xce,0x55,0x45,0x79,0x25,0x19,0x05,0x13,0x17,0x88,0xbf,0x70, +0x73,0x2f,0x5f,0x53,0xad,0x77,0xeb,0x7c,0x5a,0xa4,0xa8,0xfc, +0x24,0xe8,0xec,0x24,0x5b,0x62,0x0e,0xc4,0xe8,0x48,0xf1,0x03, +0xf0,0x60,0x94,0xfe,0x5e,0x4c,0x1b,0xe6,0x03,0xbc,0xf3,0x0d, +0x54,0xc3,0x41,0x6a,0xc5,0x6b,0x0b,0xab,0xcb,0x2b,0xaa,0xb9, +0x7a,0x04,0x36,0x3d,0x23,0x3d,0x23,0x35,0x93,0xf2,0xa1,0xa3, +0x3b,0x96,0x6a,0xa0,0xaa,0x59,0xa1,0x39,0x5f,0x9c,0x5a,0x94, +0x52,0x98,0xc6,0xd1,0xa7,0xcc,0xc0,0x0f,0xd7,0xbe,0xc2,0x10, +0x7b,0xd0,0xb2,0x46,0x27,0x5b,0x70,0xb2,0x40,0x6d,0x07,0x08, +0xfd,0xea,0x5b,0xf4,0x59,0xfb,0x15,0x9e,0xb5,0x03,0x1d,0x2b, +0x74,0xb3,0x01,0x37,0x33,0xd4,0xb3,0x85,0xb0,0xef,0xbf,0x75, +0x61,0x3f,0x6d,0x38,0xf9,0x5a,0x2a,0x4c,0x61,0x9a,0xf2,0x73, +0x5a,0x65,0x2f,0x58,0xfb,0x24,0xca,0x9d,0xe5,0x4b,0x89,0xef, +0x29,0x97,0x93,0x76,0xbe,0x1c,0x7e,0xce,0x34,0x15,0xd5,0x16, +0x57,0x95,0x72,0xc8,0x53,0xcc,0x02,0x4e,0x47,0xd1,0x89,0x81, +0x6f,0x14,0x8f,0x88,0x4e,0x48,0xc6,0xa8,0x4c,0xb8,0xf3,0xbd, +0xe2,0xd7,0xfe,0x6b,0xd0,0xbb,0x98,0xc5,0x5e,0xa1,0x9f,0x72, +0xe8,0xc0,0x8d,0x6c,0xad,0x62,0x2d,0xc1,0x1c,0x38,0x03,0x39, +0x0c,0xba,0xa2,0x23,0xb9,0x92,0x5d,0x55,0x58,0x51,0x5c,0xe4, +0x57,0xe0,0x9f,0x11,0x52,0x51,0xc1,0x9f,0xc9,0x0c,0xc8,0xf3, +0xcb,0x2f,0x29,0x2a,0x28,0xca,0xca,0x3f,0x5e,0xc9,0x87,0x9c, +0x3e,0xed,0xeb,0xe3,0xeb,0x53,0x78,0x2a,0x3f,0x20,0xc3,0xcb, +0x93,0xcf,0x3e,0x5b,0x14,0x50,0x72,0xfa,0x84,0x9f,0x57,0xa0, +0xf7,0x19,0x4e,0xe9,0xef,0x35,0xc2,0x5b,0xa2,0xf3,0xc5,0xce, +0xd7,0x87,0xaf,0xe9,0x5b,0xf1,0x77,0xb4,0x1e,0x6e,0xbf,0xbe, +0x91,0x22,0xc3,0x4e,0xa1,0x9b,0x7c,0x39,0xda,0xff,0xcd,0x37, +0x3a,0xfd,0x5b,0xb6,0xe8,0x18,0xaf,0x5f,0x3f,0x6a,0xfc,0xa5, +0x6c,0x70,0x9a,0x99,0x5b,0x45,0xbb,0xac,0x94,0x6d,0xaf,0xa9, +0xe8,0xe9,0xa9,0xf1,0xb4,0x96,0x9e,0x64,0xad,0xdd,0x3c,0xcd, +0xa4,0x4a,0x7f,0x6f,0xc5,0x19,0xe4,0xce,0xdf,0x21,0x1a,0x8c, +0x12,0xce,0x98,0xd6,0xf1,0x77,0x88,0x15,0x85,0x36,0x35,0xf2, +0x62,0xb2,0x6f,0xbc,0xe3,0x33,0xba,0x59,0xf8,0xf7,0x34,0x62, +0xf6,0x4f,0x48,0x0f,0xdd,0xac,0x95,0xaf,0x21,0x7b,0x14,0x8d, +0xa2,0xf3,0xdd,0x4f,0x60,0x4a,0x6e,0x9e,0xee,0xb2,0x7a,0x29, +0x75,0xba,0x7b,0xb2,0xb3,0x5f,0x75,0xb8,0xbc,0xbe,0xbd,0x4d, +0x6a,0x5e,0x27,0x31,0xb5,0xb1,0x37,0x52,0x57,0x3d,0x5a,0x68, +0xd1,0xb1,0x45,0xda,0x70,0xa8,0xd4,0xd2,0x58,0x55,0xff,0x84, +0xb3,0xb5,0x8d,0x18,0xfe,0xba,0xb7,0xad,0x79,0xe0,0xa1,0xaa, +0x92,0xe0,0x37,0xed,0xef,0x90,0x8e,0x7f,0x42,0x18,0xec,0xfe, +0xf7,0x86,0xd2,0xdf,0x21,0xc2,0xa7,0xe4,0x9f,0x90,0x83,0x7f, +0xd3,0x6d,0x41,0x43,0x6e,0x45,0xec,0x8a,0x03,0x6a,0xa4,0x19, +0x4c,0x4d,0x71,0x5e,0x4b,0xcb,0xa9,0x3c,0x37,0x59,0x28,0xe3, +0x76,0x2a,0xc0,0x4e,0x86,0xaf,0xa6,0xfd,0xaf,0xf7,0x88,0x17, +0x64,0xff,0xa7,0x0b,0x2a,0xce,0xff,0xcf,0xa7,0x45,0x83,0x07, +0x41,0x5b,0xdc,0xb2,0x72,0xe1,0x26,0xd9,0x5e,0x16,0xa6,0x7e, +0x07,0xeb,0xbf,0x85,0x43,0x6a,0x3d,0x0c,0x85,0xc5,0xeb,0xd7, +0xe2,0xd4,0xef,0x64,0x8f,0xd8,0x3f,0x37,0xe1,0x96,0x1f,0xd1, +0x56,0x8d,0x1e,0x2d,0xb4,0x10,0x8a,0x8c,0xb6,0xfc,0xf8,0xe7, +0x2b,0x9a,0x8e,0x53,0xd7,0x20,0x3d,0xe6,0x90,0x9a,0x19,0x83, +0x87,0x90,0x9e,0x37,0x75,0x0d,0xbd,0xc6,0xc2,0x57,0xb0,0x65, +0x25,0xd0,0xa3,0xdb,0xf5,0xc5,0xb5,0x28,0x16,0x12,0xe1,0x0a, +0x03,0xba,0x68,0x21,0xf9,0x8a,0xa5,0x60,0xfb,0x88,0x44,0x71, +0x97,0xc1,0x5d,0x78,0x44,0xa2,0xf4,0xb7,0x8e,0x7c,0x84,0xa0, +0x1e,0xdd,0xa3,0xb8,0xc2,0xa0,0x2e,0x3d,0xf2,0x53,0x71,0xf9, +0xee,0x11,0x89,0x70,0x97,0x81,0x5d,0xf4,0x48,0xa5,0x0e,0x43, +0x3a,0xd6,0x7a,0xcb,0x1b,0xd1,0x7b,0x10,0x5a,0xff,0x99,0xc7, +0x88,0xca,0x19,0x85,0x04,0x5a,0x0d,0xd1,0x7b,0xbc,0x11,0xbc, +0x0d,0xb1,0x95,0x55,0x6a,0x37,0x20,0xd7,0x61,0x0e,0xa4,0x33, +0xd7,0x87,0x6b,0x5e,0x24,0xc8,0xb2,0x99,0x6d,0x09,0xc3,0x6e, +0xd7,0xd5,0x20,0x0d,0xe7,0x5c,0x87,0x8f,0x98,0x1e,0xaf,0x72, +0x33,0x29,0x46,0x30,0xba,0x4e,0x15,0x3f,0xc8,0xf6,0x30,0xab, +0x9c,0x3c,0x75,0xc5,0x7f,0xcd,0x3c,0x4f,0x98,0xc9,0x94,0xda, +0xe5,0x07,0x89,0x59,0xc5,0x09,0x8a,0x26,0x22,0x98,0xd1,0x06, +0xcf,0x55,0xb2,0xc7,0xcc,0x0f,0x0d,0x15,0xa3,0xe2,0xbf,0x3d, +0x57,0xca,0x7b,0x64,0xf0,0x91,0x16,0xce,0xc1,0x34,0x56,0x4b, +0xdf,0x6d,0x5b,0x94,0x2c,0x98,0x79,0x11,0xa5,0x5f,0xa3,0xa5, +0x86,0xe9,0x30,0x47,0x8b,0x11,0x33,0x27,0x98,0x83,0x8f,0x60, +0x8e,0x3e,0x92,0x07,0xac,0xc2,0x1c,0x4e,0x29,0xcc,0xf1,0x94, +0x44,0x49,0xb8,0x28,0xe4,0x88,0x7b,0x4e,0x4d,0xa4,0xa2,0x0f, +0xdd,0xe3,0x23,0xd9,0xcf,0x2a,0x75,0xbc,0x14,0x53,0x2d,0xe8, +0xf1,0x16,0x92,0x7e,0xf1,0x78,0x4b,0xba,0xd7,0x52,0x82,0xd6, +0xd3,0xfe,0xbb,0x64,0xf1,0x32,0x77,0xc5,0x13,0x2c,0x27,0x52, +0xd1,0x82,0xee,0xb1,0x90,0x18,0xb3,0xf4,0xb8,0xdf,0xff,0x9b, +0x64,0x25,0x08,0x82,0xcd,0x44,0xbe,0x04,0xfd,0x6e,0x43,0xeb, +0xb8,0x1b,0xa3,0x24,0x4f,0x13,0xfe,0x22,0xe3,0x4b,0xc0,0xef, +0x30,0xb6,0xca,0xe9,0xff,0xe0,0x01,0x1b,0x88,0xf0,0x0a,0x2f, +0xc2,0x46,0x41,0x3a,0x1e,0xc6,0xc8,0xcd,0x9c,0x09,0x7e,0xb6, +0x03,0x2e,0x2a,0x5e,0x3d,0x66,0x95,0xe4,0x57,0x84,0x5f,0x88, +0xe2,0x6b,0xca,0x09,0x37,0x2a,0xa4,0xf2,0x08,0x66,0xdc,0xb2, +0x9e,0xc0,0x67,0xcf,0xf1,0xa2,0xf0,0xf5,0x1e,0x56,0xa9,0x4b, +0x87,0xc0,0x94,0x6f,0x61,0xed,0x77,0x70,0xe4,0xff,0x6d,0x18, +0x70,0xe7,0x1f,0x29,0x2b,0x56,0x49,0x1c,0x81,0x3b,0xff,0x5f, +0x63,0x38,0x82,0xf4,0xd8,0x29,0x6b,0x65,0x78,0x87,0x66,0xec, +0xeb,0x6c,0x72,0x5b,0x7e,0xfc,0x30,0x03,0x99,0xe3,0xc7,0xdf, +0x6d,0x29,0xc9,0x3f,0x14,0x42,0x89,0x8b,0xeb,0x85,0x70,0x77, +0x59,0x49,0xec,0x95,0x4a,0xd5,0x1f,0x63,0x61,0x4d,0xc2,0xf7, +0x49,0xd1,0x37,0xf8,0x35,0xe1,0xb8,0x22,0x6a,0x45,0x74,0x5c, +0x53,0x5c,0xe3,0xe5,0xaa,0x63,0x71,0x7c,0xb4,0xfb,0x45,0x87, +0x18,0x7b,0x2e,0x9c,0x31,0x3e,0x10,0x1b,0x67,0x22,0x8b,0x39, +0x26,0x89,0x1e,0xbe,0x17,0xd3,0xa7,0x16,0xcf,0xc4,0x38,0xc7, +0xb8,0x1c,0x57,0xc5,0xf7,0x2c,0xb7,0xad,0xc2,0xc9,0xaa,0x1b, +0x47,0xf4,0x5f,0xc3,0x22,0x98,0x46,0x31,0xb4,0x4d,0x8f,0xf4, +0x4d,0x40,0x9f,0xd1,0x6e,0xd5,0xa5,0x7b,0x8c,0x70,0x4d,0xb8, +0x34,0xeb,0xa8,0x04,0x0e,0x24,0xbf,0xfd,0x02,0x54,0x55,0x81, +0x1e,0xff,0x1a,0x35,0xa4,0xbb,0xb0,0x96,0x84,0x0e,0x9e,0x7f, +0x72,0xf1,0x31,0x97,0x52,0x55,0x9b,0x50,0xab,0x96,0x9c,0x72, +0x29,0x26,0x59,0xe6,0xbb,0xd6,0x65,0x8f,0xad,0x31,0x87,0xbe, +0x71,0xe4,0xd1,0xd0,0x9d,0x17,0x4d,0xd2,0xf8,0xcd,0x69,0x5b, +0xf2,0x8f,0x70,0xfe,0x5e,0x9e,0xe7,0x8e,0xab,0x99,0x1c,0xaf, +0xe8,0xa7,0x1d,0xc6,0xe9,0x39,0xf9,0xac,0xed,0x09,0x6c,0xcd, +0x97,0x1d,0xcd,0x90,0xe0,0x47,0xc1,0xa7,0x75,0xdd,0xd4,0x34, +0xad,0xe0,0x08,0xa4,0xc4,0xca,0x6a,0xe3,0x4a,0x63,0x73,0xa4, +0x07,0x2f,0x4b,0x42,0x62,0x8e,0x7b,0xa8,0xe2,0x8b,0x6b,0xa8, +0x01,0xac,0x54,0x38,0x05,0xaa,0x24,0x18,0x36,0xe9,0xc3,0xea, +0x0d,0xc0,0x19,0x38,0xf2,0x2f,0x70,0x72,0x3f,0xce,0xcb,0xc4, +0x55,0xd4,0x8e,0xfd,0x28,0xdf,0x4a,0xf0,0xfd,0x6c,0x9c,0x9f, +0x86,0x2b,0xe2,0x22,0x34,0x78,0x4a,0x4b,0x54,0xce,0x06,0xc3, +0x0c,0xda,0xd7,0x15,0x43,0x14,0xbf,0x57,0x82,0xf2,0x37,0xb0, +0x58,0x15,0x66,0x6d,0x7f,0x88,0xfc,0x16,0x9c,0xe6,0xeb,0x84, +0x8b,0xa4,0xd9,0x47,0x24,0x8d,0x30,0x1f,0x26,0x17,0x3e,0x54, +0xfb,0xb6,0xd7,0x72,0x2b,0x4e,0xc2,0xc9,0x87,0xd1,0xfb,0xa4, +0x4c,0x49,0x7e,0x5d,0x7e,0x84,0xe0,0x94,0x4c,0x5c,0x90,0x85, +0xca,0x89,0x11,0x9a,0x3c,0x7c,0x12,0x01,0xf3,0xcf,0xc0,0xa4, +0x10,0x0e,0xe6,0x29,0x02,0x49,0x88,0xa9,0x7d,0x84,0xad,0xda, +0xd1,0xe0,0xbc,0xd7,0x31,0xb2,0x1b,0x7e,0xd5,0x36,0xbe,0x81, +0xa1,0x21,0xa7,0xa4,0x17,0x2f,0x83,0x03,0x1c,0x95,0x0c,0x28, +0x5c,0x8e,0xc2,0xdf,0xac,0x62,0x87,0x82,0x6b,0x33,0xfb,0xe3, +0xcd,0x50,0x77,0x73,0xad,0x4a,0x6d,0x4b,0x5d,0x4e,0xb9,0x5a, +0x75,0x6a,0xb0,0xae,0x6c,0x45,0x6c,0x8b,0xf5,0xf7,0x6a,0xbd, +0x43,0xc9,0xe9,0x6d,0xf4,0x46,0xab,0x84,0x23,0xc4,0xc6,0x2e, +0xea,0xbc,0x83,0x0c,0xa6,0xb3,0xa2,0x13,0x4e,0x7b,0x62,0xe4, +0x55,0xde,0x26,0xd2,0x24,0xca,0xe8,0x22,0x07,0x1f,0x6b,0x22, +0xcf,0xee,0xbf,0x78,0x28,0xc6,0x34,0x96,0xd3,0x61,0x7b,0xa3, +0xef,0xc6,0x3e,0xb8,0x4c,0x87,0x0f,0x16,0x67,0xd8,0x6c,0xd9, +0xb6,0x56,0x75,0xe3,0x0b,0x9b,0x6b,0x5f,0x34,0xb7,0x7e,0x21, +0x85,0x83,0x6c,0x6a,0x63,0x6b,0x62,0x9b,0x1a,0xb0,0xf7,0xcd, +0x76,0xed,0xb6,0xb3,0xdb,0xeb,0xe0,0x98,0x9c,0xe3,0x20,0x0b, +0xd2,0x94,0x04,0xb5,0x76,0x9c,0xef,0x54,0x03,0xe6,0xde,0x03, +0x60,0x60,0xda,0xa2,0xc7,0xb8,0x42,0x36,0x0c,0xc7,0xc8,0x3d, +0x8f,0xa7,0x26,0xfd,0x56,0x14,0x2f,0x19,0x77,0xed,0xee,0x3d, +0x40,0x61,0x65,0x9d,0x22,0x82,0xd8,0x06,0x04,0x38,0x58,0x7a, +0x54,0x34,0x8f,0x0c,0x0d,0xbe,0xa8,0x95,0x2a,0x09,0x41,0x7f, +0x11,0x18,0xab,0x10,0x4b,0x4e,0x47,0x15,0x16,0x2c,0x7e,0x83, +0xeb,0xe6,0xe3,0x5c,0x0f,0x3d,0x3c,0x22,0xcd,0x3f,0x22,0x19, +0xa5,0x75,0xf5,0x61,0xe5,0xcf,0x6a,0x30,0xfd,0xae,0xf6,0xc2, +0x58,0x59,0x2c,0x2e,0x59,0xa8,0x81,0xd5,0xde,0xb4,0x2e,0x9a, +0xe5,0x8b,0x89,0x4e,0xe5,0xce,0x8a,0x5d,0x39,0xbe,0x7a,0xfc, +0xd3,0x80,0x87,0xde,0x23,0x9e,0x9c,0x67,0x18,0x39,0xba,0xde, +0xd7,0x19,0xa7,0xc9,0x2c,0x40,0x4f,0x33,0xb8,0x1b,0x8d,0x8d, +0x02,0x75,0xfd,0xb5,0x4e,0xab,0x14,0x6a,0x5d,0x2b,0x18,0xca, +0xef,0xcb,0x55,0xf9,0x4b,0xb1,0xe9,0x46,0xf6,0x7c,0x61,0xbb, +0xa4,0x1e,0xa6,0xbd,0x2c,0x1a,0x52,0x7b,0xde,0xec,0x7a,0x54, +0xd3,0xd5,0x43,0x3d,0x46,0xe6,0x68,0x9e,0x9c,0x61,0x2d,0x0b, +0xd5,0x92,0x84,0x76,0x0d,0x9c,0xa3,0xcf,0x38,0xed,0xe6,0xe8, +0x9f,0xbf,0xab,0x5f,0x43,0x8e,0x96,0x9f,0x81,0x9c,0x21,0x17, +0x1b,0x2e,0x34,0x5c,0xac,0x3e,0x12,0xc5,0xc7,0xbb,0xc7,0x3b, +0x5f,0x76,0xc2,0xb9,0x01,0xc8,0xae,0xf6,0xc2,0xd5,0x5c,0x04, +0x93,0xfc,0x15,0x05,0x88,0x59,0xbf,0x1f,0x4e,0xe0,0x43,0x70, +0x52,0x28,0xaa,0xe0,0x74,0x55,0xcb,0x38,0x8d,0xcb,0x3e,0xd2, +0x9b,0x97,0x2f,0xdc,0xbf,0x7c,0xa5,0xa0,0x5f,0xa5,0x0f,0x3e, +0xf9,0xf5,0x4b,0x90,0x64,0x71,0xf1,0x46,0x71,0xc6,0x0e,0xaa, +0x3b,0x22,0x75,0x82,0xad,0xa5,0xc6,0x59,0x4e,0x8d,0x6e,0xf7, +0x4d,0x1d,0xf8,0x7a,0xf5,0x2e,0x8b,0xab,0x7e,0x5e,0x4e,0xb6, +0xbe,0x5a,0x81,0x57,0xf4,0xf9,0x17,0x45,0x43,0x0d,0xb5,0xd7, +0xb8,0x98,0xa4,0xe4,0x4b,0x49,0x6a,0xb0,0x36,0xee,0xa7,0x37, +0x62,0x9b,0x52,0x5d,0xf9,0x2d,0xca,0x12,0xa5,0x67,0x15,0x2b, +0x48,0x56,0x5f,0xd2,0x8d,0x67,0xaa,0x8d,0xd1,0xfd,0x17,0x06, +0xa5,0x7f,0x9d,0x1f,0xd3,0x5e,0xa9,0x8a,0x53,0x8e,0x1e,0x45, +0x2e,0x86,0x0e,0x9d,0x2b,0x40,0x99,0x2c,0x7e,0xb8,0x6c,0x70, +0x7d,0x15,0x07,0x66,0xec,0xb7,0x5f,0x5c,0x8e,0x7f,0x2c,0x8b, +0xbe,0x26,0xb9,0xa0,0xbe,0x2d,0x7a,0x8d,0x1a,0x1c,0x3a,0x4a, +0x89,0x6f,0x8a,0xb3,0x6b,0x82,0x87,0x1a,0x4e,0xd2,0x30,0x5c, +0xbf,0xf9,0xbe,0xde,0x6f,0x30,0xed,0x6a,0xe7,0x57,0xb2,0x5e, +0xf6,0x99,0xc7,0x6b,0xd3,0xaf,0x8e,0x70,0xf8,0xe0,0x2d,0x31, +0x76,0x3f,0xa9,0x7e,0xc4,0xb1,0xb2,0xbb,0xb7,0xa1,0xea,0x76, +0x55,0x5d,0xe4,0xd9,0x46,0x71,0x4c,0x16,0x18,0x02,0xf3,0xb7, +0x7c,0x87,0xb3,0xd7,0xaa,0x5b,0x6c,0xd8,0x2e,0x85,0x6c,0x2d, +0x0a,0xc0,0xd7,0xe8,0xc0,0x1a,0x9c,0xc5,0xea,0x1f,0xd2,0x3d, +0x6c,0x61,0xda,0x6e,0xc5,0xb7,0xf6,0xb4,0x76,0x57,0x37,0x72, +0x98,0x75,0x1d,0xbe,0x67,0x81,0xfd,0xe9,0x5e,0xe7,0x13,0xb5, +0xef,0x62,0x06,0x8f,0xe1,0x24,0x55,0x94,0x6d,0xda,0x82,0xf3, +0x03,0x02,0x62,0xe3,0xfc,0xa4,0xb1,0x5a,0x92,0x8b,0x85,0x05, +0x31,0x05,0x6a,0xb0,0x9f,0x9a,0x81,0x69,0x70,0x20,0x86,0x96, +0xf2,0x66,0x78,0x48,0x40,0xe9,0xe6,0x57,0x3f,0x34,0xc0,0x14, +0x6e,0x6c,0x9c,0x1c,0x16,0x6e,0xb1,0x2e,0x5b,0xd5,0x0f,0xcc, +0x33,0xe1,0xf0,0x0a,0x7e,0x4f,0xe0,0xe0,0xc3,0x47,0xbf,0xc0, +0x26,0x55,0x50,0xd1,0x10,0x99,0xcc,0xfc,0x63,0x07,0x70,0xbd, +0x96,0x54,0x49,0xfe,0xa7,0x18,0x40,0x77,0x2d,0x6e,0x42,0x3f, +0x54,0x46,0xcf,0xbd,0x15,0x1a,0xfc,0x9f,0x8d,0x6f,0xbb,0x7e, +0x1b,0xe5,0x14,0x73,0x1e,0x08,0x87,0xd9,0x2f,0x07,0x9f,0x5d, +0xbf,0xf7,0x80,0xb6,0x98,0x8f,0xe5,0xd6,0xe4,0x00,0xca,0xb0, +0x00,0x33,0x1e,0x80,0x91,0xe0,0xc4,0x04,0xe3,0x59,0x9c,0x82, +0x1f,0xe2,0x25,0xdd,0xf2,0x83,0x3c,0xb4,0xde,0x87,0x8f,0x61, +0x67,0x1c,0xdc,0xe3,0xb0,0x94,0x0e,0x5e,0x9f,0xbe,0x25,0x77, +0xf0,0x96,0x30,0x07,0xaa,0xee,0x28,0xc6,0x35,0x20,0x5f,0x31, +0x07,0xfb,0x34,0xa8,0xf1,0x3d,0x27,0x5c,0x23,0xb0,0xf2,0x10, +0xae,0x54,0xcc,0x3b,0x02,0xc0,0x2e,0xa6,0x63,0x8e,0xca,0x12, +0x5c,0xb6,0xb3,0xfe,0x18,0x0f,0xbb,0xde,0xc0,0x41,0x58,0xd0, +0x02,0xaa,0xa2,0xe3,0xd2,0x36,0x36,0xe7,0x88,0xa8,0x18,0xd0, +0x51,0x54,0xd8,0x2a,0x13,0x96,0xc2,0xff,0x21,0xee,0x2d,0xa0, +0xab,0xba,0xba,0x7d,0x71,0x0a,0x9c,0xbd,0x37,0x95,0x94,0x02, +0x8b,0xee,0x24,0xed,0x39,0xb8,0xbb,0xbb,0x86,0x40,0x80,0x10, +0x77,0x77,0x77,0xf7,0x10,0x02,0x01,0x4a,0xdc,0xdd,0xdd,0x43, +0x5c,0x49,0x82,0x05,0x77,0x6b,0x29,0x15,0xa0,0x50,0xa1,0x46, +0x3b,0xf7,0xe9,0xdc,0x79,0xef,0xbf,0x4e,0xe0,0xb3,0x7b,0xbf, +0x77,0xc7,0x7b,0xe3,0xde,0x31,0xfe,0x83,0x91,0xc3,0x3e,0xc9, +0x96,0xb9,0xd6,0x9a,0xf6,0x3b,0x67,0xcd,0xdf,0xd4,0xbd,0x4a, +0xaf,0x7e,0x5f,0x50,0x23,0xe1,0x5f,0xfa,0x3c,0xf5,0x78,0xa9, +0x16,0xca,0x57,0xaf,0xad,0x58,0x91,0xbb,0x86,0x5b,0x20,0x7e, +0x42,0x60,0x10,0x94,0x81,0x05,0xe3,0x16,0x18,0xd9,0x95,0xc6, +0x3b,0x61,0xf7,0x7c,0xdc,0x88,0x2d,0xf8,0x01,0x17,0x01,0xbd, +0x24,0xe0,0xb9,0xc7,0x73,0xd7,0xaf,0xf6,0x04,0xf2,0x0d,0x6b, +0xab,0x97,0x97,0xac,0xe6,0x94,0x84,0x0c,0xa1,0x95,0x38,0x82, +0xce,0x9e,0xa8,0x26,0xd4,0x43,0x57,0xcb,0x4c,0x75,0x70,0xef, +0xfa,0x46,0xd4,0xbf,0x91,0xb5,0x46,0x30,0x84,0xcf,0x6f,0xba, +0xac,0x38,0xb8,0x7d,0xd1,0x2e,0xe5,0x6e,0x03,0x60,0x9f,0xdd, +0xfe,0xa5,0x01,0x26,0x2b,0x87,0x5d,0x90,0x28,0xc9,0xd3,0x41, +0x9d,0x94,0xc1,0x8a,0x2c,0x58,0x12,0x0f,0xf3,0x39,0x31,0x66, +0xaf,0xb0,0x81,0x89,0xc3,0x77,0xa3,0xf0,0x93,0x00,0x54,0xe6, +0x44,0xcb,0xbd,0x72,0x8d,0xeb,0xd4,0xdf,0x8f,0xfc,0x41,0x74, +0x6e,0xc8,0x59,0xf1,0xfc,0x3e,0xe1,0x30,0xee,0x15,0x7d,0x34, +0x04,0x1f,0xd4,0x15,0x3f,0xdb,0x47,0xc3,0xc3,0x05,0x81,0x23, +0x37,0xc1,0x41,0x30,0x65,0x22,0x31,0x7e,0x29,0xce,0xc6,0xf4, +0x0d,0xb5,0x74,0xea,0x5a,0x5f,0xc2,0x24,0x50,0x8f,0x87,0x97, +0xe2,0x0f,0x27,0x79,0x25,0xe1,0x37,0xb9,0x0b,0xd9,0x83,0x2b, +0xf0,0xc8,0x3e,0x8a,0x48,0xa3,0xd0,0x7c,0xc7,0x0c,0xdc,0xb4, +0xa6,0x8d,0xce,0xcf,0x1e,0xaa,0xca,0x1f,0x67,0x41,0x30,0x07, +0xe1,0xee,0x0c,0x32,0xc7,0x96,0x1e,0xd6,0x90,0x1a,0xc4,0x04, +0x86,0x1f,0x50,0x9d,0xc1,0x64,0xee,0x91,0xfc,0xce,0xfc,0x78, +0xba,0xf6,0xdb,0x1c,0x59,0xc6,0xd5,0x54,0x3a,0x17,0x13,0x54, +0x5e,0xa1,0xe2,0xe3,0x22,0x07,0xa1,0x8b,0x14,0x9f,0x2e,0x19, +0x28,0x3c,0xa7,0x9e,0xcf,0x5b,0xe1,0xc7,0x7b,0x71,0x12,0xbe, +0x3b,0x6f,0xc0,0x88,0xbf,0x34,0xdc,0x35,0xd4,0x30,0xc8,0x81, +0xeb,0x21,0x06,0xb7,0x69,0xaf,0xc3,0x1d,0x5b,0xa5,0xcd,0x07, +0x24,0xa0,0xf1,0xf5,0x97,0xaf,0xc1,0x4e,0xe5,0x02,0x78,0xd0, +0x80,0x26,0xdc,0xa3,0x69,0x23,0xcc,0x8b,0x05,0x2e,0xe2,0xfb, +0xa0,0xb4,0x41,0x7e,0x6e,0x01,0xb2,0x59,0x38,0x2b,0x95,0x3b, +0xa6,0x80,0xc6,0xef,0x1d,0xf9,0x25,0xea,0x55,0x60,0xda,0x00, +0x3f,0xab,0x70,0x59,0x16,0x7e,0x98,0xca,0x69,0x62,0x04,0x5d, +0xdc,0x18,0x58,0x17,0x00,0xe3,0x7d,0xd3,0xcf,0xf0,0x38,0xbe, +0x0c,0xd7,0x14,0xe1,0x8a,0x74,0x0e,0x7f,0x11,0xaf,0x10,0x50, +0x6f,0xbb,0xf3,0x10,0x96,0xa9,0x9c,0x00,0x6b,0x89,0x3e,0xda, +0x30,0x27,0x71,0x8a,0xae,0x0e,0xae,0x70,0xe2,0x76,0x82,0x94, +0x9c,0x85,0x46,0x5d,0xaa,0x37,0x9a,0xc2,0x7d,0x82,0xce,0x01, +0xd1,0x30,0x1e,0xf4,0x0b,0xe2,0xfa,0xd1,0x30,0x38,0x0a,0x3e, +0x30,0x88,0xa3,0xb7,0xa7,0x87,0x49,0xc6,0x60,0x58,0x90,0x81, +0xef,0xa0,0x63,0x40,0xa2,0x09,0x38,0x15,0xe5,0xe1,0xc6,0xc1, +0xe4,0x50,0xd8,0x48,0x0f,0x25,0xa3,0xb7,0xc4,0xc7,0xa4,0x1f, +0x2e,0x1a,0x0f,0x0b,0x5b,0xc4,0xf5,0xe2,0x16,0x16,0xfe,0xb7, +0xf0,0x2e,0xc1,0x32,0xbc,0x08,0x65,0x54,0x73,0x18,0x9a,0x4c, +0xed,0xaf,0xf6,0xbc,0x29,0x85,0x43,0xbd,0x78,0x88,0x71,0x89, +0xcc,0xac,0x97,0xc1,0x7c,0x16,0xcc,0x6b,0xbd,0xac,0x6d,0x1c, +0xb4,0x5d,0x94,0x4f,0x1d,0xaf,0xb0,0x3f,0x75,0xf2,0xf3,0xde, +0xbe,0x33,0x55,0x37,0x95,0x8f,0xb4,0x61,0xa2,0x9d,0x04,0x26, +0x19,0xe2,0x47,0x2c,0xbe,0x1b,0x9c,0x66,0x0e,0xef,0xe4,0x49, +0xf0,0x05,0x7e,0x4a,0xce,0xa5,0xf4,0xa7,0xb5,0x65,0x84,0x74, +0xf1,0x6b,0x7c,0x91,0x3b,0x8c,0x33,0x8e,0x25,0x98,0xf1,0x43, +0xf1,0x03,0x09,0x3d,0x89,0xdc,0x3a,0xd4,0x37,0x03,0xfd,0x38, +0x76,0xbd,0xab,0xc5,0x7a,0x17,0x69,0x85,0xa5,0xe4,0x55,0x5b, +0xfb,0xc8,0x6b,0x95,0x44,0xd0,0xe8,0x41,0x0d,0x56,0xb0,0x47, +0x67,0x62,0x5c,0xaf,0xd9,0xa8,0x53,0xee,0x65,0xc1,0x9f,0xf3, +0xb9,0xe0,0xda,0xef,0xcc,0x81,0xfa,0x43,0xb2,0x1f,0x37,0x2e, +0xde,0x8a,0xbb,0x3c,0xb3,0x8d,0x79,0x38,0x54,0x0b,0xec,0x77, +0x37,0x40,0x8d,0x9a,0x5b,0x9f,0x7c,0x22,0xa9,0x1f,0xaa,0xbc, +0x52,0x7a,0xdf,0x38,0x9f,0x0f,0x50,0xf3,0xd5,0x72,0x37,0x32, +0x6f,0x30,0xad,0xb5,0x29,0x3f,0x7a,0x92,0xf7,0x76,0x38,0x75, +0xa2,0xd5,0xaf,0xcf,0xa5,0xd7,0x51,0xd9,0x54,0xe3,0x80,0xf9, +0x5a,0xb7,0x72,0x33,0xfe,0x69,0xe3,0xcd,0x81,0xe1,0x3b,0xa7, +0xdd,0x9b,0xdd,0x6a,0x3d,0xb9,0x44,0xa6,0xa6,0x45,0x12,0xcf, +0xba,0x57,0xd9,0xd5,0x59,0xd3,0xb8,0x01,0x36,0x64,0x47,0xcb, +0xda,0xe6,0xad,0x15,0x1c,0xcc,0x32,0x10,0xb7,0x0c,0x42,0x30, +0x7b,0xdd,0xff,0x9e,0xeb,0x1d,0x5b,0x0e,0x39,0x34,0x21,0xc6, +0xe2,0xe2,0x56,0xe6,0x49,0xdd,0xc5,0x07,0x35,0xaf,0x2d,0x8b, +0x79,0xdf,0xf5,0xb6,0xda,0xfa,0x2e,0x1c,0xee,0x86,0x9f,0x08, +0x6e,0x62,0xf1,0x1d,0x77,0xd3,0x5d,0xa6,0xd2,0x3a,0x9b,0xc7, +0xe7,0x5a,0x2f,0x9d,0x04,0xa2,0x0c,0x1b,0x59,0xe1,0x89,0xf8, +0x29,0x11,0x3e,0xd6,0x17,0x3f,0xa6,0x39,0x91,0x92,0xfc,0x01, +0xc9,0xf3,0x2e,0x74,0xcc,0x72,0xa9,0xcd,0xe6,0xa3,0xab,0x82, +0x5a,0x42,0xaa,0xb8,0x95,0xce,0x24,0x33,0x38,0x23,0x30,0x3d, +0x88,0xc3,0x5d,0x4c,0xa6,0xa2,0x27,0x7d,0x91,0x71,0x0e,0xef, +0xb6,0x55,0x47,0x6d,0x87,0x6e,0xa3,0x1d,0xdf,0xd9,0x70,0xba, +0xb5,0xae,0x8b,0x83,0x5d,0x4c,0x20,0x4e,0x5d,0xbc,0x04,0x97, +0x5a,0x94,0x98,0xf1,0xa0,0x3e,0xf8,0x27,0x4c,0xca,0x85,0x95, +0x95,0x99,0x7c,0x54,0x75,0x70,0x63,0x68,0x8d,0x62,0xbf,0xed, +0x5f,0xa4,0xc4,0xae,0xcc,0xa2,0xd4,0x54,0x3d,0x66,0xcb,0x91, +0x1d,0x47,0x4f,0x3f,0x6b,0xfa,0xb9,0x09,0xa6,0x18,0xe7,0xf2, +0xf6,0xa8,0x6c,0x8b,0xef,0x58,0x2d,0x31,0x39,0xce,0x27,0x98, +0xc2,0x84,0x54,0x50,0xc9,0x80,0x71,0x39,0xca,0xa9,0x21,0x69, +0xc1,0xa9,0xc1,0x3d,0x25,0xbc,0xe3,0x13,0x8b,0xa7,0x4e,0x97, +0x38,0xf0,0x46,0x4f,0x02,0x67,0x7b,0xf1,0x2c,0x03,0x8d,0xb8, +0x85,0xf8,0x2f,0xde,0xa5,0x8b,0x1f,0x7b,0xe4,0x99,0xf2,0xb0, +0xb0,0xe6,0xe5,0x93,0x02,0x78,0x8f,0x8b,0xcf,0x39,0x95,0x9b, +0xab,0x22,0x4e,0x33,0xa5,0xda,0xa7,0x27,0xf4,0x91,0x15,0xdd, +0xf3,0x3a,0x56,0x57,0x73,0xb0,0x51,0x57,0x8c,0x3c,0x0b,0x45, +0xec,0x23,0xaf,0xa7,0xf6,0x5f,0x9b,0x73,0xa3,0x53,0x30,0x8a, +0x68,0xb5,0xec,0x6e,0xd1,0xa8,0xf1,0x36,0xe5,0x6f,0xba,0x5d, +0x73,0x18,0xb2,0xe7,0x14,0x5e,0x86,0x80,0xfb,0x69,0x50,0xf9, +0xf3,0x21,0x98,0x19,0x96,0xf1,0xdb,0x69,0x8e,0x3f,0x6e,0x15, +0x3a,0x3a,0x72,0x0a,0xce,0xe5,0x38,0x02,0x3f,0x31,0x7e,0x66, +0x56,0x36,0x07,0xdd,0xab,0x6d,0xf8,0x87,0x2d,0x43,0xe7,0x4b, +0x6f,0x73,0x6d,0xe2,0x5c,0x16,0x56,0x2c,0x25,0xab,0xd9,0x4d, +0x0e,0x56,0x0b,0x6c,0xa5,0xa5,0xe6,0x12,0x60,0x3b,0xfa,0xaf, +0xfc,0xaa,0xf2,0x8c,0x15,0xf7,0xcd,0x26,0x46,0xe2,0xe2,0x36, +0xe6,0x71,0xdd,0xc8,0x3f,0x56,0xc3,0xc0,0x95,0x43,0x35,0xf8, +0xf1,0xff,0xb8,0x1a,0x0f,0x46,0x97,0x13,0x81,0xd7,0x17,0x79, +0x6a,0xb0,0x13,0xe5,0x41,0xe4,0x88,0x7d,0xb0,0xb3,0x87,0x87, +0x63,0x99,0x6d,0x89,0x6d,0x91,0xab,0x0b,0xdf,0x10,0xda,0xe1, +0xdb,0xe8,0x63,0xe9,0xaa,0xe5,0xb3,0x2b,0xa4,0xc8,0x8a,0x07, +0x93,0xc1,0xdf,0x7e,0x4d,0x82,0x79,0x1c,0x3a,0x32,0xe9,0x79, +0xa9,0x79,0x29,0xf9,0xa6,0x19,0xbc,0xd7,0x5e,0xfd,0x03,0x3b, +0x4d,0xeb,0xec,0xf9,0xce,0xda,0xd6,0xa6,0xba,0x0e,0x4e,0x38, +0x53,0x40,0x0a,0xc2,0x82,0xd2,0x83,0x54,0x03,0x42,0xa2,0xfd, +0x43,0x64,0x1e,0xf6,0xe6,0x87,0x2c,0x4d,0x9b,0xac,0xf9,0xbe, +0xa1,0x8e,0xf3,0xb5,0x6d,0x5c,0x46,0x5a,0x52,0x62,0xb2,0x6a, +0x62,0xea,0xb1,0x23,0xa9,0xb2,0xcb,0xbb,0x9e,0x2e,0xbe,0xbf, +0xa5,0xae,0x9d,0x3f,0x70,0x75,0x16,0x4c,0xd0,0xba,0xc6,0x89, +0xb9,0x58,0x4f,0xf0,0xe0,0x30,0x1c,0x64,0x85,0x55,0x38,0x9e, +0x38,0x6f,0x30,0xd9,0xbf,0x4d,0xa7,0xde,0x81,0xef,0x6d,0x69, +0x6e,0xa9,0xe9,0xe4,0xe0,0x10,0x5d,0xf7,0x8f,0x97,0x2e,0xc1, +0x15,0x56,0x85,0x74,0x21,0x8c,0xcf,0xc3,0x38,0x98,0x16,0x0f, +0xfb,0x38,0x74,0x62,0xd2,0x0b,0xd2,0x0a,0xd3,0x8a,0x38,0x71, +0xd3,0x72,0x62,0x82,0xcf,0x4f,0x33,0x8f,0xab,0x2f,0x8c,0x9c, +0xfe,0xce,0xb2,0x88,0x77,0xde,0x64,0x6b,0x6b,0xec,0xcd,0xa1, +0x3a,0xac,0x20,0xcb,0x5c,0xac,0xf6,0xd9,0x4a,0xeb,0xac,0x25, +0x0f,0xfa,0xdb,0xce,0x81,0x44,0x05,0x3e,0x34,0xa6,0x43,0xd7, +0x12,0xbe,0x20,0xdb,0x4e,0xaf,0x6d,0xde,0xf6,0x4f,0x6a,0x7e, +0xcd,0xff,0xbe,0xcb,0x5d,0x3b,0x4e,0xb0,0x86,0x36,0x62,0x80, +0x07,0x18,0x1c,0x6f,0x6c,0x8c,0x9f,0xba,0x4b,0xf3,0x8d,0x25, +0xb0,0xba,0xf9,0xca,0x4d,0xf8,0x44,0x85,0x3a,0x88,0xbd,0x04, +0xd3,0x06,0x21,0x8d,0x85,0x45,0xa3,0x12,0x72,0xb8,0x27,0xfc, +0x4c,0xf0,0x59,0xd3,0x68,0x3e,0xdf,0x28,0x4f,0x3f,0xcd,0x88, +0x13,0x97,0xc2,0xe2,0x37,0x8b,0xf2,0x65,0xdd,0xc5,0xfb,0x35, +0x7f,0x50,0x59,0x7c,0x37,0x8c,0x2d,0x8a,0xd0,0x47,0x17,0x25, +0x04,0x37,0xab,0xef,0xc0,0x75,0xfb,0xcb,0x2d,0x79,0xd8,0x76, +0xf3,0xab,0x1f,0x0b,0x60,0x2f,0x37,0x5a,0xa4,0xf8,0x6a,0x7c, +0x9c,0xbb,0xc9,0xd8,0x52,0x49,0xe8,0x5a,0x5d,0x06,0xa2,0x02, +0x1b,0x8c,0x58,0x61,0x7d,0x28,0x29,0x34,0xc9,0x33,0xcc,0xd1, +0xef,0xc9,0xe2,0x23,0xcf,0x84,0x0c,0x05,0x0e,0x8c,0xd1,0xb6, +0x1d,0x25,0x87,0x71,0xc5,0xfe,0x4d,0xb8,0xd0,0xbc,0xc8,0x82, +0x4f,0x38,0x41,0xdd,0xf0,0xf9,0x3b,0xd4,0x05,0x3a,0xa9,0x88, +0xef,0xe1,0xde,0x33,0xf0,0x31,0x23,0x7a,0xef,0x20,0xff,0x3c, +0xa4,0x92,0x2e,0x7e,0xfb,0xe9,0xb7,0x26,0xcd,0x0a,0x3f,0x88, +0x81,0x63,0x72,0x87,0x28,0xe4,0xce,0x33,0xce,0xd3,0xa3,0x72, +0xc3,0x5c,0x58,0x48,0x82,0x71,0xf3,0xde,0x1d,0xb8,0x7e,0x7f, +0x05,0x95,0x6e,0x0b,0x95,0xae,0x88,0x4a,0x87,0xff,0x2b,0x9a, +0x14,0x19,0xe6,0x1b,0x64,0x19,0xf6,0xe6,0xf0,0x11,0x03,0x21, +0x43,0x41,0x0a,0x19,0x82,0xe5,0x4f,0x88,0xe1,0x62,0x9c,0x6f, +0x0e,0x73,0x99,0x23,0x28,0x31,0x57,0x9b,0xa7,0x5f,0x43,0x95, +0x85,0xb9,0x3c,0xf4,0x75,0x3a,0x28,0x73,0xa0,0x1a,0xc6,0xec, +0x38,0xae,0x7d,0xd4,0x59,0xea,0x7e,0x34,0x3a,0xc6,0x41,0x75, +0x37,0x93,0x6a,0x2a,0xb9,0xc1,0x5c,0x2e,0x2f,0x1c,0x4e,0x93, +0xa5,0xb4,0x25,0x7e,0x7e,0x5d,0x65,0x08,0x35,0x59,0xf1,0xd3, +0xb9,0x74,0xe0,0x66,0x26,0xf8,0x89,0xbb,0x34,0x8f,0xce,0xf1, +0xaa,0xa6,0x4b,0x37,0x15,0x60,0x64,0xaf,0x01,0x8b,0x46,0x98, +0x4a,0x93,0x7c,0x03,0x4c,0x64,0x61,0xcf,0xe8,0x04,0xaa,0xb1, +0x7a,0x54,0x63,0x85,0xa9,0xa7,0x48,0x07,0xe4,0x5a,0x9d,0x11, +0x26,0x89,0x12,0x71,0x12,0x0b,0x37,0xe0,0x21,0xc1,0x08,0xcc, +0x85,0x08,0xea,0x5b,0x36,0xca,0x9d,0x48,0x58,0x43,0x40,0xa7, +0x5f,0x9d,0x6d,0x18,0x5f,0xec,0x5e,0x66,0x99,0x6b,0xc7,0xe1, +0x19,0xf8,0x90,0x88,0x11,0x67,0xa1,0x90,0xfd,0x5c,0x61,0x9a, +0x16,0x65,0xbd,0xfc,0xaa,0xae,0xf9,0x1d,0x2b,0x68,0xca,0xb6, +0x81,0x05,0x17,0x54,0x25,0x11,0x0d,0xbe,0x5d,0xfe,0xf5,0xf4, +0x92,0x22,0xd7,0x32,0x6b,0x7a,0x89,0xa8,0x83,0x95,0xc4,0x50, +0xb4,0xef,0x60,0x7e,0x68,0xb9,0xf1,0x75,0x1d,0x4c,0xe4,0x52, +0x58,0xab,0x52,0xd7,0x99,0xa6,0x07,0x0f,0x3a,0x2b,0xa3,0x85, +0x62,0x23,0xad,0x0e,0x8b,0x93,0x1d,0xb5,0xd7,0xe9,0x4a,0x9b, +0x2c,0x5f,0x5c,0xeb,0xba,0x7d,0x12,0xe6,0x2b,0x8f,0x6d,0x22, +0xf9,0x5f,0x34,0x6e,0x68,0x54,0x79,0xdd,0xfa,0x7b,0xdc,0xc8, +0x68,0x18,0x8b,0x1b,0xa6,0xb5,0x3e,0xd6,0xb6,0x8e,0x5a,0xce, +0xca,0x27,0xd8,0x2a,0xbb,0xcf,0x7b,0xfa,0x87,0x2a,0xae,0x2b, +0xc7,0xfe,0x73,0xd4,0x78,0x2f,0x38,0xd5,0x0c,0x26,0xe4,0x4b, +0xc4,0x98,0xf8,0xff,0xb8,0x70,0x5b,0x5b,0xd7,0x36,0x6f,0x2f, +0x1f,0x5b,0xb8,0x2b,0xe2,0x3e,0x1a,0x14,0x0e,0x36,0x68,0x97, +0x7b,0x2b,0x82,0xc2,0x45,0xd7,0x3e,0x27,0x1a,0x14,0x3e,0xa7, +0x41,0x61,0xc3,0xb2,0x6d,0xb8,0xd7,0x3d,0x8f,0x06,0x05,0x9d, +0x06,0x98,0xf8,0xec,0x06,0xec,0xe2,0x94,0xfe,0x9a,0x2b,0x7f, +0x4a,0x1c,0xbc,0xfd,0x9d,0x65,0x87,0x59,0xa7,0xf2,0x80,0x96, +0x96,0x8a,0xe2,0x46,0x69,0x3a,0x5b,0xef,0x59,0xea,0x28,0x1d, +0x4d,0xc7,0x10,0x62,0x5c,0xac,0x60,0x26,0x30,0xeb,0x40,0x73, +0xc6,0x27,0x26,0xb9,0x40,0xf6,0x33,0x0b,0x86,0xc5,0x3e,0x01, +0x4e,0x01,0x96,0xfe,0xca,0x15,0x4e,0x37,0x1a,0xfb,0x4e,0x57, +0x75,0x28,0x1f,0xa9,0xc3,0x14,0x2f,0xc9,0x3d,0xd3,0xcd,0x14, +0xc7,0x46,0x25,0x59,0xfd,0x91,0x29,0x91,0xb7,0x5d,0x23,0xa1, +0x51,0x51,0x41,0x41,0xd1,0x99,0x79,0xd2,0x14,0x36,0x2f,0x23, +0xb3,0xb0,0x30,0x33,0x2a,0x54,0x8a,0xb7,0x0a,0x48,0x14,0xae, +0x74,0x5d,0xb4,0x73,0x51,0x87,0x3b,0xff,0xe0,0x55,0x33,0x4c, +0xca,0x80,0xd5,0x27,0xe3,0xf9,0xef,0x3d,0x49,0x1a,0xf2,0x4d, +0xc8,0x3c,0x9c,0xdb,0x59,0xc3,0xef,0xfc,0xd1,0xe5,0x97,0x68, +0x58,0x6a,0x72,0x8c,0x17,0x53,0xf1,0x15,0xb1,0x2e,0xd1,0x2b, +0x33,0xca,0xf7,0x74,0xe4,0x07,0x42,0x06,0x7d,0xdb,0x7c,0x38, +0xd8,0x3e,0x42,0xf4,0x66,0xcd,0x34,0xc3,0xe5,0x7e,0x79,0xe6, +0x3c,0xec,0x2c,0x87,0xf7,0x6f,0x0d,0xc3,0x04,0x0e,0xee,0x8a, +0x99,0x6f,0xfd,0x96,0xd8,0xad,0xd8,0x87,0xd4,0xdd,0x0f,0x0b, +0xd8,0x3b,0x21,0x5f,0xb9,0x5f,0xf6,0x2e,0x6a,0xe3,0xd5,0xab, +0x16,0xd5,0x6f,0x2b,0xe0,0x7e,0xa2,0x8b,0xa0,0x2e,0x7f,0x4e, +0xf2,0x7d,0x32,0x03,0xf3,0x5c,0xeb,0xb3,0xf8,0xb0,0xda,0xc8, +0xa2,0x90,0x32,0x2e,0x6e,0x21,0x09,0xaf,0x8b,0x2a,0x0c,0xae, +0x70,0x8e,0xe2,0x0b,0x3d,0x33,0x83,0x73,0xdc,0x39,0x21,0xb4, +0x8d,0x2c,0xcf,0x9f,0x97,0x81,0x53,0x52,0x62,0xa9,0x5f,0x21, +0x47,0x7f,0x8b,0x7a,0x12,0xc2,0x89,0x3b,0x69,0x08,0xd8,0xf7, +0x85,0xc3,0xd7,0x87,0xe1,0x43,0xc3,0x38,0x3e,0x1d,0xa7,0xb5, +0x2c,0xba,0xbd,0x8a,0xc3,0xef,0x4e,0x90,0xdb,0x4f,0x5b,0x7e, +0x48,0x87,0x8f,0x0d,0x12,0xf8,0x18,0x9c,0xe2,0xb8,0x41,0x7d, +0x13,0x27,0x7f,0x0c,0xef,0x91,0x25,0x05,0x1b,0x32,0x66,0x24, +0x1f,0xa1,0x21,0x69,0x7c,0xec,0xb3,0xa8,0x27,0xa1,0x1c,0x7e, +0x89,0xef,0x13,0xe0,0x8f,0xc0,0xdc,0xe0,0xef,0x03,0xd2,0x7b, +0xf9,0x45,0xc5,0x38,0xb3,0x00,0x3f,0x49,0xe3,0xf0,0x49,0x0c, +0x51,0x34,0x01,0x39,0xa4,0x58,0x49,0x05,0xa5,0xa7,0x89,0x29, +0xaa,0xba,0x49,0xf3,0x4d,0x25,0xb0,0xb2,0xf1,0xf2,0x75,0xea, +0x5d,0xe0,0x20,0xd5,0x7c,0x63,0x4c,0x79,0xab,0xf9,0x58,0x0a, +0xba,0xd4,0xb1,0xbd,0x38,0xcd,0x3c,0xa8,0xbe,0x78,0xab,0xfa, +0x3b,0xcb,0x7c,0xde,0x77,0xa7,0xa3,0x89,0xb1,0x27,0x87,0x07, +0x61,0x23,0x59,0xe4,0x62,0xb6,0xcf,0x4a,0x5a,0x6b,0x2d,0x79, +0x38,0xd8,0x7a,0x11,0xde,0x55,0x01,0xc6,0x84,0x5a,0x01,0x2b, +0x77,0x23,0x4d,0x15,0x25,0x35,0xb2,0x6c,0xb6,0xc6,0xbb,0xd4, +0xd1,0xc1,0xdb,0xcf,0x5d,0x1a,0xc1,0x7a,0x54,0xfa,0x35,0x49, +0xab,0x27,0x06,0x47,0x66,0xe4,0xca,0xd2,0xd8,0xdc,0xac,0x8c, +0x82,0xfc,0xac,0xc3,0xa1,0xd2,0x18,0x36,0x34,0xf2,0x70,0x88, +0xf4,0x29,0x26,0x12,0x8d,0x6b,0xfb,0xee,0x6a,0x5e,0x3b,0x9c, +0x19,0x9d,0x11,0x95,0xc9,0x15,0x86,0x05,0xa7,0x05,0xa9,0xfa, +0x07,0x1f,0xf6,0x0b,0x93,0xb9,0xdb,0x9b,0x6b,0x59,0x99,0x34, +0xda,0xf0,0xbd,0x83,0x9d,0x17,0x6a,0xa8,0x37,0xcf,0x48,0xa4, +0xde,0x3c,0x21,0x35,0x2e,0x26,0x4d,0x76,0x7d,0xf7,0x93,0x85, +0x0f,0xb6,0x72,0xa2,0xcd,0x0f,0x24,0xaa,0x22,0xb0,0x21,0xa0, +0xc6,0x35,0x9c,0x2f,0xf4,0x2e,0x72,0xca,0xf1,0xe0,0x7c,0xa2, +0x48,0x64,0x55,0x60,0x63,0x60,0x95,0x2b,0xb5,0x2c,0xcf,0x22, +0xe7,0x2c,0x2a,0xf5,0x7b,0x35,0xc4,0xa4,0xfc,0x60,0xb9,0x7e, +0x7e,0xb0,0x05,0xdf,0x1d,0x7e,0xd1,0x67,0xd0,0x8b,0xc3,0xf5, +0xd8,0x4b,0x40,0xb7,0x1c,0xd8,0xe7,0xf7,0x40,0xdd,0xbc,0x8c, +0x57,0xc3,0xad,0xb3,0x36,0xe3,0xee,0x20,0x0e,0x36,0xd1,0x31, +0x1a,0x97,0x6b,0x94,0x1b,0xe6,0x06,0x9b,0xf1,0x7d,0x11,0x57, +0x7c,0x06,0x7c,0x39,0xa1,0x9f,0xda,0xc0,0xdb,0x64,0x42,0xbe, +0x38,0x91,0xc0,0x1c,0x48,0xd1,0xab,0xc2,0x0f,0xb0,0x40,0x02, +0x0b,0xd6,0x2b,0xbe,0x13,0x4f,0xd4,0xaf,0xa2,0xb9,0x72,0xae, +0x44,0x09,0x7c,0xe5,0x97,0x15,0x5f,0x46,0x27,0x0e,0x79,0xc2, +0x6c,0xc8,0x95,0x3c,0x36,0x21,0x38,0x07,0x53,0x86,0x3d,0xe1, +0x03,0x28,0xa0,0x19,0xba,0x81,0x3c,0x9a,0xa0,0x4a,0x2e,0x2e, +0xce,0xc0,0x35,0x63,0x1f,0x30,0x6c,0x3e,0x09,0x73,0xa3,0x81, +0x0f,0xe3,0xa0,0x72,0x23,0xf1,0x1f,0x72,0xba,0xee,0x32,0x68, +0xe8,0xcf,0x37,0xea,0xd7,0xef,0x2b,0xd3,0xe7,0x74,0x03,0x48, +0xc0,0xb0,0xe3,0x0d,0xd7,0x21,0x7d,0x3f,0xbe,0x41,0xbf,0x61, +0x5f,0x89,0x2e,0x27,0x3a,0x88,0x3d,0x04,0x2e,0xb7,0xc0,0x42, +0x90,0xc0,0x36,0x15,0x58,0xbc,0xf0,0x5b,0x5c,0x3d,0x17,0x55, +0xbd,0x2c,0x70,0xb7,0x34,0x4f,0x5d,0xd2,0x0d,0xdb,0x40,0xb5, +0xf2,0x19,0xc5,0xd3,0x57,0x0f,0xce,0xc0,0x69,0xf8,0xde,0x4a, +0x6c,0x71,0x94,0x29,0x09,0x9f,0x0a,0x96,0x24,0xb3,0x3f,0x63, +0x28,0xe3,0xc2,0xfe,0x6c,0x3e,0x6a,0x6f,0xa4,0x66,0xa4,0x2e, +0x6e,0x0b,0xe7,0x93,0x0f,0xc0,0x82,0x1c,0x1b,0x5c,0x6b,0x86, +0x4a,0x5a,0xf8,0x91,0xf2,0x65,0xef,0x4b,0xa0,0xd2,0x07,0x1f, +0xb7,0xc3,0x1e,0xe5,0x4b,0xc9,0x92,0x5b,0x29,0x95,0x3e,0x07, +0x54,0xb0,0x24,0x30,0x44,0xc3,0xc7,0x21,0x31,0xd9,0x49,0x1a, +0x77,0x40,0x72,0xac,0xa5,0xed,0x58,0x9d,0xea,0xef,0xcd,0xdd, +0x70,0xe6,0x4f,0xbd,0x33,0x33,0x0e,0xcb,0x20,0xa4,0x84,0x8c, +0x2c,0xe8,0x46,0x49,0x19,0x2a,0x5d,0x29,0xe0,0x3d,0xe1,0x23, +0x4b,0x60,0x0f,0xfe,0x46,0x1d,0xb6,0x85,0x30,0x85,0x74,0xc6, +0xb7,0x27,0xb4,0x24,0x1e,0xbf,0xc4,0x3b,0xc5,0x59,0x1f,0x37, +0x3f,0x71,0x14,0x34,0x79,0x8d,0x93,0x29,0x78,0x68,0xe3,0xf1, +0x35,0xa7,0x76,0x25,0x28,0x1f,0x60,0xef,0x1f,0xff,0xfa,0xb3, +0xc7,0xf1,0x89,0x33,0xf8,0x64,0x5c,0x63,0xb8,0x1f,0xd7,0x3b, +0x56,0x52,0x1c,0xa1,0xd1,0x72,0xeb,0xe5,0x51,0xd0,0x55,0xb8, +0x45,0x13,0x72,0xbc,0xe5,0x54,0xcf,0x30,0x55,0xb4,0x4c,0x98, +0x51,0x03,0x2a,0xd2,0x03,0xe9,0x12,0x0f,0x9c,0x19,0x81,0x52, +0x8a,0xc2,0x37,0xa7,0xad,0xcc,0x5f,0x2e,0xbd,0x9e,0x74,0x22, +0xef,0x64,0x6e,0x42,0x96,0x72,0xf2,0x60,0xc1,0x60,0xff,0x2f, +0x06,0x15,0xbc,0xe3,0xf6,0x63,0x46,0x71,0xb6,0x54,0x84,0x5d, +0x8a,0xbd,0xf6,0x1b,0xb0,0x50,0x51,0x52,0xf1,0x99,0x1e,0x7c, +0xb6,0xe1,0xe2,0x97,0x50,0xa8,0x78,0xc9,0x1d,0xc6,0x5c,0x06, +0x36,0x52,0x57,0x8c,0x2b,0x9d,0xd0,0x25,0x1c,0xaf,0x25,0xd0, +0x44,0x93,0x45,0x47,0x9f,0x15,0x6b,0xe7,0x4a,0xbb,0x2d,0x2e, +0x3f,0xa8,0xbb,0x97,0xf7,0x4c,0x59,0xb8,0xa1,0x7d,0x09,0xae, +0x8c,0x8e,0x7b,0xc9,0x40,0x4f,0x3c,0xe8,0x66,0xc1,0xd6,0x26, +0x6e,0x74,0x21,0xfe,0x48,0x92,0xda,0xe3,0x7b,0x06,0x54,0x84, +0x41,0x9c,0xcd,0x28,0xc1,0x9f,0xc2,0x43,0xf2,0x13,0x54,0x2e, +0x1c,0xf9,0x09,0x32,0xcf,0x62,0xe6,0x4f,0x9a,0x0b,0xb1,0xf2, +0xa7,0x43,0x0b,0x31,0x4e,0x17,0xe2,0x16,0xb2,0xf0,0x04,0xa7, +0x10,0x08,0x67,0x02,0x4d,0x1c,0x34,0x2d,0x8d,0x07,0xdc,0xf9, +0x33,0x97,0x3a,0xee,0x96,0x5f,0xe7,0x3a,0x45,0x75,0x36,0xbb, +0x3a,0xb3,0x26,0xbd,0x46,0x2f,0x9b,0x22,0xc2,0x71,0x06,0x4b, +0x56,0xaf,0xef,0xb0,0xe5,0x07,0x06,0x5a,0x87,0xeb,0xce,0x71, +0x3f,0x28,0x78,0x68,0x37,0xcd,0x5e,0x84,0x1e,0xcb,0xa4,0xb5, +0xba,0x60,0xff,0xf2,0xc5,0xf3,0x5c,0xf8,0x44,0x39,0x85,0xc9, +0xc7,0x4f,0x9e,0xaf,0x04,0xf7,0x25,0x75,0xe7,0x78,0x0c,0xff, +0x75,0xe1,0x37,0xb0,0x49,0x05,0x87,0x5e,0x91,0x73,0x58,0xa8, +0xc3,0x42,0x22,0x1e,0x24,0xea,0x5a,0x8b,0xb4,0x96,0x98,0xd6, +0xeb,0xf1,0xdf,0xf7,0x7f,0x77,0xf1,0xee,0x65,0x9a,0xe7,0xfd, +0x24,0x08,0x64,0x2b,0x8b,0xd3,0x8f,0xc6,0x9b,0xc2,0xb4,0x64, +0x89,0x25,0xab,0x5f,0x1c,0x74,0x41,0x0a,0xea,0xcc,0xe9,0xec, +0xec,0x26,0x59,0x87,0xa2,0xa3,0xc6,0x21,0xdc,0xca,0x7a,0xc5, +0xa4,0x95,0xc9,0x5a,0x59,0xd8,0x9c,0x7a,0xa2,0x07,0x37,0xc6, +0x4a,0xee,0x43,0x24,0x7b,0xc4,0x23,0xda,0x25,0xdc,0xab,0x2f, +0x84,0xcf,0x6d,0xce,0x6e,0x4b,0x3d,0xcd,0xb5,0x62,0xfb,0x4d, +0xf8,0xac,0x17,0x3f,0x3b,0xab,0x83,0x6a,0xe8,0x81,0xc6,0x2c, +0x46,0x7b,0xa3,0x4c,0x03,0x3f,0x90,0xf6,0xda,0x4b,0x6e,0x82, +0x72,0x0d,0xac,0x87,0x58,0x15,0x98,0xc3,0xe2,0x34,0xd1,0x9a, +0xc8,0x39,0x8c,0x1c,0xf5,0x39,0xf7,0x9a,0x15,0x6e,0x4e,0x84, +0xf7,0xc5,0x6c,0x7c,0x9f,0x91,0x7f,0xa2,0x28,0xa6,0xe6,0xc1, +0xc6,0x10,0x57,0x6e,0x01,0x0d,0x7d,0xbc,0xad,0x0e,0xb7,0x0d, +0x50,0x63,0x3b,0xac,0x34,0x44,0x1b,0x20,0x2b,0xd1,0xcc,0x44, +0xe8,0xef,0xc3,0x3d,0x74,0x62,0x27,0xc8,0xdb,0x09,0xda,0xb2, +0x98,0x13,0x85,0x2e,0x1a,0x38,0x43,0xda,0x67,0x2a,0xb9,0x0b, +0xcb,0x72,0xc1,0x1f,0xea,0x55,0x60,0xb9,0xbc,0x70,0x98,0x15, +0xe7,0x8d,0x1a,0x11,0xcc,0x78,0x02,0x19,0x03,0x98,0xf1,0x15, +0x44,0xc3,0x7d,0x54,0x56,0xd4,0xfe,0x96,0xa5,0x95,0xeb,0xa5, +0xf2,0x47,0xbc,0xa2,0xbd,0xa2,0x7c,0xb9,0xf9,0xa3,0x16,0x43, +0x14,0xc0,0x66,0x30,0x80,0x66,0xc4,0x80,0xf1,0x8d,0x4d,0x2f, +0x95,0x81,0xaf,0x25,0x9b,0x5a,0x9a,0x52,0x96,0x4c,0xc3,0xdc, +0xca,0x01,0x9c,0xcf,0x64,0x5e,0x4f,0x79,0x10,0xff,0x2d,0x07, +0xe3,0x07,0xf0,0x7f,0x1b,0x81,0x29,0x73,0x62,0x65,0xec,0xb6, +0x28,0x0d,0x6e,0x39,0xe8,0xe9,0xa3,0x9e,0x95,0x11,0x68,0x30, +0xf6,0xb8,0x76,0xeb,0x62,0x9c,0xb9,0xac,0x81,0x86,0xbc,0xf7, +0xbe,0x78,0xf4,0x6d,0x2f,0x4c,0xe3,0xd0,0x8a,0xd5,0x2b,0x0b, +0x1a,0x92,0x9e,0x67,0x1a,0x73,0xf3,0x5b,0x64,0x30,0x81,0x35, +0xc9,0x95,0x88,0xfb,0x84,0xf7,0x09,0x6a,0x7c,0x43,0xaf,0x41, +0x0d,0x54,0x26,0xa0,0xb1,0x1c,0x35,0x28,0xf0,0xde,0x29,0xf8, +0x10,0x38,0x06,0x9e,0x17,0x47,0x3b,0x0e,0x09,0xb9,0x78,0x4c, +0xdc,0xc1,0x66,0x75,0xe5,0x5e,0xce,0xec,0xd7,0x48,0xe4,0x23, +0x0f,0x05,0xac,0xf3,0xdb,0xcc,0x09,0x6e,0x8c,0x36,0x8e,0xc7, +0x79,0x0b,0xf0,0x06,0x2a,0x57,0x1f,0xe2,0xe1,0x0f,0x58,0x01, +0x73,0x5f,0x57,0x00,0xcf,0xa5,0x88,0x33,0x50,0x9d,0x29,0xd0, +0x92,0xc0,0x3c,0x66,0xa8,0xb4,0x78,0x48,0x26,0x28,0x43,0xe6, +0x45,0x0a,0xda,0xef,0xcb,0x4d,0x89,0x5e,0xe7,0xde,0xce,0xbd, +0x75,0x6e,0xc6,0xfc,0x0d,0xe7,0x4b,0xb6,0xe7,0x2d,0x39,0xf9, +0xaa,0xd1,0x2d,0x64,0x77,0xd3,0xfe,0x1e,0xdd,0xe1,0x6f,0x9f, +0x9e,0x83,0xf1,0xe5,0x30,0x9b,0x6b,0x47,0x2d,0xb6,0xf2,0x5e, +0xc1,0x4f,0x29,0xd7,0xb9,0x2e,0x31,0x52,0x0f,0x26,0x2d,0x67, +0xb1,0xda,0x18,0x7d,0x71,0x2e,0xaa,0x4b,0x7b,0xac,0x28,0x24, +0x9f,0x35,0x02,0x3b,0x4a,0xc0,0x45,0x59,0x50,0x65,0x02,0x70, +0x82,0xe9,0x92,0xcd,0x9b,0xf7,0xdd,0x33,0xfc,0xda,0xe1,0xa9, +0xb1,0x2f,0xdf,0xbc,0xec,0xec,0xca,0x5b,0x9b,0xf6,0xea,0xad, +0x31,0x9b,0x69,0x5b,0xae,0x4b,0x03,0x4f,0xe7,0x8b,0xfe,0xbb, +0x23,0x23,0x87,0x6e,0x1a,0xde,0xb7,0xe6,0x44,0x2d,0x6a,0x01, +0x09,0x9d,0xf1,0x5d,0x3d,0x2a,0xdf,0xc1,0x29,0xf6,0x98,0x66, +0xd0,0x22,0xaf,0xdd,0x9c,0xb8,0xd8,0x92,0xe8,0x74,0x6f,0xef, +0xdb,0xdd,0xe0,0x66,0xc2,0xdf,0x76,0xb8,0x6e,0x75,0xc9,0x94, +0x0b,0xc0,0x89,0xc4,0x0e,0xc7,0x1b,0x20,0xb7,0x6d,0x61,0xbf, +0x0d,0xff,0xe0,0xf7,0x11,0x50,0x6e,0x7a,0xcd,0x29,0x41,0x99, +0x7c,0x17,0x29,0xb3,0x2d,0xb3,0x2e,0xb6,0xe8,0xaf,0xe4,0x43, +0x1a,0x83,0xea,0x82,0xea,0x68,0xb6,0x34,0x88,0x2d,0x4c,0x4e, +0x65,0x56,0x65,0x5a,0xa5,0x6e,0x36,0xef,0xb6,0xd6,0x60,0xcb, +0x2e,0x8d,0x4e,0x3b,0xbe,0xb9,0xa1,0xa1,0xb5,0xaa,0x9d,0x83, +0xdf,0x50,0x42,0xaa,0xeb,0xcb,0x5b,0x8a,0x4f,0x73,0xcf,0x99, +0x72,0xdb,0x12,0xeb,0x52,0x8b,0xbe,0x0a,0x3e,0xb8,0x29,0xb8, +0x2e,0x90,0x5e,0xac,0x35,0x88,0xd7,0x99,0xcc,0xca,0x8c,0xaa, +0xd4,0x4a,0xbd,0x4c,0x9a,0x11,0x5b,0x6f,0xd6,0xd6,0xe0,0x04, +0xcf,0x51,0x8e,0xcc,0x2e,0x5d,0x59,0xb7,0xed,0xf4,0xb3,0xcb, +0xd7,0x3f,0x6f,0x7e,0xc9,0x75,0xa3,0x2e,0x5b,0xd8,0x99,0xdb, +0x9d,0xd5,0xc3,0xf5,0x8c,0x4a,0xf5,0x40,0xcd,0x9b,0x45,0x13, +0x03,0x5c,0x41,0x57,0x6e,0xb6,0xb4,0xdd,0x04,0x66,0x01,0x7b, +0x0b,0x48,0x25,0xcc,0x52,0x16,0x8e,0x30,0x0e,0x5b,0x0f,0x6a, +0x6c,0x34,0xda,0xd8,0xaf,0x31,0x62,0x78,0xc7,0xc8,0x93,0xef, +0x55,0xbb,0xb2,0xff,0x73,0xfd,0x0d,0x36,0x0b,0xdc,0x70,0x7c, +0x70,0x99,0x36,0x0f,0x4a,0x25,0x30,0xa1,0xf9,0xbb,0xc1,0x6f, +0x8d,0x7f,0xb5,0x05,0xd6,0x87,0x13,0x5f,0x09,0x37,0x08,0xbc, +0x62,0x22,0xad,0xc2,0xad,0x82,0xad,0x38,0x3c,0xc7,0x24,0xd6, +0xc7,0x37,0x34,0xaa,0x28,0x09,0x56,0x82,0x09,0x89,0x8e,0x8c, +0x8a,0x0c,0x8d,0xe4,0xce,0x41,0xcc,0x69,0x8c,0xa9,0x1d,0x7b, +0xad,0x86,0x60,0xd0,0xc4,0x0f,0x14,0xfb,0x7a,0xb2,0x53,0x72, +0xf5,0x53,0xf9,0x63,0x11,0xb1,0x21,0x51,0x21,0xdc,0x3c,0x51, +0xa5,0x93,0xd1,0xb7,0x5f,0xe4,0x80,0xfe,0xd6,0x05,0x86,0x3c, +0x2c,0xab,0xfd,0xa3,0xfa,0x56,0x23,0xe7,0x02,0x1e,0xf5,0xec, +0x5d,0x27,0x98,0xe0,0x09,0xcb,0x5d,0xf3,0xcf,0xf0,0x78,0xf5, +0xfc,0xf6,0x5e,0xf3,0x61,0x4e,0x0c,0xee,0x27,0x77,0xe3,0xef, +0xa4,0x5e,0x4e,0x37,0xd2,0x54,0x37,0xda,0xe2,0x5c,0x61,0xc3, +0xc3,0x94,0xe1,0xdf,0x7e,0x1f,0x06,0xce,0xbe,0x9c,0x8f,0xf6, +0x8f,0xf4,0x0f,0x0f,0xb0,0x3f,0x66,0x7d,0xcc,0xf2,0xf8,0x60, +0xcf,0xf0,0xb9,0xfe,0xcb,0x8e,0x55,0xbc,0x97,0xb3,0xbb,0x8b, +0xbb,0x6b,0x58,0x41,0x58,0x7e,0x58,0x5e,0x7d,0x5d,0x6d,0x73, +0x65,0xb3,0x73,0x05,0xef,0xe3,0xe4,0xe6,0xe4,0xe6,0xee,0xdc, +0xc0,0xbb,0x78,0xb4,0xdb,0x34,0xdb,0x34,0xd8,0x2a,0xfb,0xf9, +0xf9,0xfa,0xfb,0x06,0x70,0xa1,0x61,0x27,0x43,0x55,0xe5,0xdf, +0x82,0x33,0x09,0xb3,0x71,0x33,0x73,0x30,0xe7,0xce,0x9b,0xd7, +0x3b,0x3b,0xaa,0x38,0x47,0x84,0x5a,0x49,0x0d,0x99,0x5c,0x0b, +0xc9,0x00,0x73,0xbe,0xb1,0xe2,0xea,0x90,0x7d,0x9d,0x55,0x8b, +0xac,0xa1,0xa3,0xb2,0x33,0x7f,0x88,0x6b,0xc1,0x44,0x51,0x6d, +0x50,0x98,0xca,0xe2,0x42,0x17,0x82,0x6a,0xf5,0x8a,0xbd,0x1a, +0x6a,0x6a,0x04,0xd4,0x1c,0x51,0x8d,0xc2,0xad,0x2b,0xa4,0xa3, +0xac,0xba,0x32,0xaf,0x5e,0xd1,0xd3,0xdc,0xa5,0xd6,0xab,0xdb, +0x97,0x83,0x53,0xe8,0x47,0xac,0xec,0xf5,0x5c,0x77,0x3b,0x19, +0xe4,0xd9,0x14,0xbb,0x51,0x24,0x11,0x01,0xfa,0xe2,0x20,0x76, +0x32,0xd6,0x71,0x56,0xc7,0x2d,0x4f,0x24,0xd3,0x64,0x6d,0x5b, +0x3a,0xcc,0xcc,0x85,0xf7,0x0a,0x8f,0xb7,0xf3,0xea,0xd1,0x1b, +0x63,0x56,0x1f,0xe1,0xbe,0x07,0x03,0xf6,0xc7,0xd9,0x30,0xd7, +0x01,0xec,0x82,0xf2,0xfb,0xf9,0xcd,0xc9,0xea,0x69,0xda,0x59, +0xc3,0x55,0x7d,0xb5,0x5d,0x8d,0x1c,0xee,0xf8,0x8d,0x88,0x6a, +0x0d,0x82,0x1a,0xb3,0x73,0xa2,0xa3,0xa8,0xd6,0x44,0x03,0xfa, +0x4b,0xf0,0x23,0x03,0x78,0xeb,0x4b,0xf6,0x62,0xd2,0xd9,0x94, +0xf6,0xd4,0xc0,0x7e,0x7e,0x41,0x10,0xae,0x8e,0xc5,0xf7,0x4f, +0xd4,0x54,0x57,0xd6,0x94,0x52,0x45,0xca,0x65,0x6e,0x2d,0x7e, +0xb1,0x1e,0xde,0xdb,0xdb,0xd0,0xcf,0xe3,0x3b,0xe7,0xb6,0x5c, +0xd3,0xbe,0xcd,0x81,0xdf,0x19,0x1a,0x40,0xfc,0x1a,0x83,0x1a, +0x43,0x1b,0x39,0xd8,0x7c,0x06,0xdb,0x99,0xac,0xd6,0xf4,0xf6, +0x94,0x76,0x6d,0xea,0x75,0x2c,0xa2,0x2d,0xc3,0xe9,0x6a,0x5b, +0x32,0x8d,0x55,0xb5,0xd5,0x15,0xb5,0x96,0x35,0xbc,0xe1,0xa1, +0x3d,0x86,0x6b,0xcc,0xeb,0xcc,0xf9,0x8e,0xb2,0xd6,0x8a,0xa6, +0x6a,0xce,0x94,0x26,0x64,0x61,0x8e,0x41,0x4e,0x7e,0xce,0x1c, +0x36,0x1a,0xc2,0x31,0xe6,0xc0,0xce,0x75,0xfb,0x50,0xa2,0xd7, +0x68,0xcc,0x7f,0xdd,0x79,0xb3,0xff,0xfc,0x50,0x8a,0x09,0xdf, +0xff,0xa6,0xf8,0x69,0x0b,0x3e,0x34,0x82,0x87,0xeb,0xc5,0x55, +0x06,0xc2,0xaa,0x85,0x8a,0xcd,0x47,0xfa,0x12,0xd8,0xc3,0xb4, +0xe5,0xe7,0x34,0xcb,0x7e,0x16,0x16,0x0e,0x8a,0x0b,0x9f,0xb0, +0xc2,0x4c,0x61,0x1f,0xd9,0x7e,0x73,0xdb,0xd9,0x5d,0xdd,0xb6, +0x8e,0xfc,0x03,0x83,0x9b,0xc6,0x8f,0x76,0x73,0xf8,0xb2,0x91, +0xe4,0x3a,0x16,0x38,0x15,0xd3,0x47,0xe8,0x31,0xc5,0x0d,0xf9, +0x8d,0x39,0x4d,0x34,0x16,0xac,0x97,0x4f,0x25,0x9e,0x2e,0x0e, +0x4e,0x87,0x5c,0xbd,0x2a,0xdc,0xcb,0x7c,0x8a,0x2c,0x5d,0xf8, +0x92,0x90,0x72,0xff,0x32,0x3f,0xd3,0xc0,0x43,0xc1,0xdb,0x43, +0x8b,0x4c,0x78,0x38,0x7a,0x16,0x94,0xbe,0x3b,0xfb,0x82,0x2e, +0xd8,0x82,0xf3,0xb0,0xa2,0x1b,0x57,0xf4,0xeb,0xe1,0x4a,0x63, +0x56,0xc1,0x3a,0x93,0x92,0x61,0x9a,0xc7,0xdb,0xeb,0x6a,0x5b, +0xec,0x70,0xae,0xb0,0xe6,0x7b,0x4b,0x3a,0x2a,0x9b,0x1a,0x38, +0xa1,0x3d,0x96,0xe8,0xd7,0xea,0x55,0x19,0x95,0xb8,0x3a,0xf2, +0xdd,0x01,0xbd,0x3e,0x3d,0x5e,0x0e,0x21,0x56,0xa1,0xc6,0x11, +0x25,0x26,0xfc,0xa5,0x82,0xa1,0xe2,0xae,0xf2,0x6b,0x36,0x97, +0x2c,0xcf,0x58,0xd7,0xb7,0xf3,0xe6,0xcd,0xda,0xad,0x07,0x9b, +0x2f,0x76,0xb4,0x9f,0xa9,0x1c,0xe1,0xda,0xc4,0x19,0xa6,0xf0, +0x15,0xeb,0x6d,0xa6,0xe0,0x1f,0xe4,0x9a,0x71,0x84,0x74,0x87, +0x0d,0x86,0x5d,0x0a,0x2d,0xa4,0x8a,0xdc,0x7f,0x67,0xd1,0x7d, +0xa7,0x6b,0x9c,0x3a,0xe3,0xb8,0x7f,0xdd,0x6e,0x1c,0xdc,0x5c, +0x64,0xc4,0x9f,0xcf,0xeb,0xcf,0xed,0xcc,0xe5,0xf0,0x05,0x6b, +0x1d,0x67,0x1d,0x67,0x73,0x3c,0xcd,0x88,0x87,0x25,0xd9,0xb0, +0x2e,0x1f,0x24,0x45,0x47,0x7b,0xf9,0x7d,0xd1,0xeb,0xa2,0x56, +0xc7,0x70,0xc0,0xd0,0xe5,0xff,0x15,0xc7,0xc3,0x47,0xe6,0x10, +0xe6,0x96,0x35,0xc0,0xaf,0xcb,0xd8,0x97,0xa9,0x97,0x33,0x5c, +0xdb,0xdb,0xd4,0xda,0x6c,0xd9,0xc8,0x3b,0xd9,0x6b,0x9b,0xab, +0x3b,0x9b,0x14,0xda,0x95,0x39,0x52,0x38,0x16,0xc5,0x60,0x8d, +0xb0,0x8c,0x64,0x39,0x96,0xbb,0x76,0xb9,0x71,0x34,0xe6,0x74, +0xd5,0x96,0xd5,0x66,0x37,0x73,0x33,0x70,0x2e,0x01,0xcf,0x1a, +0xe6,0xb4,0xdf,0x80,0xdf,0x0d,0x3f,0x4e,0xac,0x63,0xae,0x95, +0xf6,0x97,0xb4,0x94,0x28,0xaa,0x5c,0xd7,0x90,0x6e,0xe1,0x80, +0x39,0x6b,0x3b,0xd1,0x44,0x3c,0xd0,0xf7,0xdf,0xd8,0xee,0x76, +0x5a,0xb1,0xdd,0x6d,0xa9,0x29,0x83,0x0f,0x6c,0xf1,0x10,0x6e, +0x42,0x43,0x69,0x37,0xc5,0xa3,0xea,0xe0,0xd8,0x09,0x7e,0x70, +0x5f,0xa5,0x07,0x54,0xd7,0xb2,0x78,0xe8,0x28,0x9a,0x84,0xe1, +0x32,0xe9,0xfa,0x23,0x81,0x21,0xfb,0x55,0xe7,0x33,0x79,0x9a, +0x92,0xef,0x28,0x46,0x6c,0x82,0x0f,0x14,0xdb,0xdd,0xb6,0xa4, +0x82,0x29,0x68,0xa8,0xc0,0x4c,0x71,0x15,0x8b,0x3b,0xdf,0x6e, +0x77,0x83,0x2f,0x44,0x4d,0x72,0xe6,0x75,0x29,0xb0,0x69,0x40, +0x0c,0x53,0x29,0x72,0x98,0xe6,0xbf,0xc0,0x74,0x21,0x87,0xa1, +0xf0,0xd1,0xbf,0xdb,0xf2,0x56,0x00,0x27,0xc8,0xe1,0xec,0xe8, +0x84,0xa8,0xe8,0xf0,0x28,0x3e,0x2e,0x3e,0xfd,0x6c,0xf2,0x60, +0xc2,0x0d,0xe5,0xa1,0x8b,0xed,0xe7,0x9b,0xae,0xdb,0x9d,0xe6, +0x3d,0xf5,0x3c,0xcc,0x5d,0x6c,0xb8,0x7a,0x16,0x7a,0x75,0xf0, +0x1c,0x8b,0x79,0xee,0x38,0x19,0x3f,0x1a,0x6b,0x9d,0xf5,0xe8, +0xcf,0x96,0x67,0xc5,0xcf,0xdf,0x36,0x7b,0xa1,0x81,0x57,0xd1, +0xec,0x45,0xb8,0x0b,0xdf,0x13,0x30,0x17,0x7d,0x2e,0xb3,0xa0, +0x91,0x04,0x9a,0xb9,0x30,0xad,0xc6,0x87,0x2e,0xe8,0x14,0x57, +0xdc,0x13,0x8e,0x7e,0x47,0x39,0xbc,0xcc,0x62,0x98,0x3b,0xae, +0x53,0x9b,0x21,0xed,0xb5,0xeb,0xbc,0x51,0xfd,0x2c,0x1f,0x26, +0x28,0x57,0xd8,0x0c,0x56,0x0f,0x75,0x34,0xb6,0x28,0x3b,0x35, +0xba,0x39,0x19,0xd8,0x9a,0xf8,0x28,0xa7,0x74,0x24,0x75,0x25, +0xf4,0x71,0xb0,0x13,0x85,0xb9,0x4c,0xa6,0x91,0xe4,0x6b,0x05, +0x7b,0x5e,0xbb,0x4c,0x98,0x8d,0x41,0xec,0xa9,0x92,0xcf,0x4a, +0x4b,0x55,0x44,0x09,0x68,0x8e,0xb5,0x95,0x59,0xea,0xb9,0x79, +0xc0,0x6f,0xac,0xad,0x4c,0xbc,0xa2,0x37,0x97,0xb7,0x33,0x59, +0x22,0xae,0xfd,0x9e,0x85,0x34,0x2c,0x26,0xd4,0x9b,0xbe,0xb9, +0xfe,0x1b,0xa6,0xb5,0xe0,0xcd,0xf5,0xc7,0x58,0x50,0x59,0x4f, +0x9c,0x9c,0x74,0x6c,0x0c,0x7d,0x2a,0x2d,0xf9,0xb3,0x55,0xe7, +0x3a,0x9a,0x5b,0x38,0xbf,0x59,0xc4,0xce,0xe6,0xa0,0x85,0x8e, +0x47,0xb9,0x39,0x7f,0xa9,0xfe,0x72,0x5f,0x5b,0x3b,0x87,0xe7, +0xeb,0x89,0xbd,0xed,0x21,0x73,0x1d,0x8f,0x0a,0x73,0x7e,0xa4, +0xe1,0x52,0xef,0xe9,0x0e,0x4e,0xe9,0x67,0xc1,0x9f,0x80,0x45, +0x2d,0xbc,0x73,0x2f,0x1b,0x3e,0xe0,0x60,0xf2,0x5c,0x46,0xb3, +0x2c,0xf8,0xba,0x14,0x96,0x30,0xfd,0x05,0x39,0x1d,0xb2,0xd2, +0x61,0x58,0x24,0xce,0x78,0xac,0xb9,0x51,0x9c,0x8c,0x8b,0xce, +0xff,0x0c,0x81,0x6c,0xe4,0x8a,0x65,0x7a,0x78,0xc0,0x93,0x93, +0xbb,0x01,0x43,0xd4,0x71,0x39,0xeb,0x19,0x9d,0x5a,0x21,0xfb, +0x01,0x12,0xb7,0xb3,0x34,0xf0,0xfe,0x4a,0x40,0x05,0x0e,0x0d, +0x8e,0x46,0x18,0x08,0x47,0x51,0x45,0xdc,0xc2,0x66,0xd5,0x65, +0xd0,0x8c,0xf0,0x50,0x0a,0x1f,0x6e,0x1a,0x6c,0xec,0xa3,0xc7, +0x09,0x76,0xcc,0x8e,0x5d,0xb8,0x44,0x1d,0x6f,0x1d,0x2c,0xa2, +0x01,0xe6,0xc6,0x75,0x30,0xbc,0x33,0x04,0xef,0x72,0x29,0x18, +0x86,0x4b,0x18,0x05,0x67,0x31,0x61,0x7a,0x8a,0x0b,0x7b,0x68, +0x42,0x03,0x61,0x83,0xac,0x82,0x44,0xc5,0x9c,0x94,0xb8,0x14, +0x39,0x15,0x2a,0x48,0x54,0xc2,0x6a,0x42,0x2b,0x83,0x2b,0x29, +0xac,0xe9,0xff,0x3b,0x89,0x8a,0x41,0x0e,0xef,0xba,0xcb,0x78, +0xaf,0x9a,0x5e,0xbb,0xfd,0x18,0x89,0x4a,0x65,0x33,0x27,0x58, +0xf6,0x93,0x37,0x7c,0x29,0xfa,0x99,0xbc,0x9f,0xba,0xc3,0x3e, +0x43,0xdd,0x2e,0x57,0xbe,0xa2,0xaa,0xa4,0xae,0xb0,0x9e,0xfb, +0x8e,0x51,0xdc,0xad,0xc8,0x61,0xa0,0x90,0x0f,0xad,0x7d,0x73, +0x37,0xed,0x7e,0x06,0x8b,0xf1,0x03,0x12,0xe2,0xe2,0x6b,0xef, +0xe3,0xc4,0xe1,0x05,0xa6,0xad,0x28,0xb4,0xca,0xb7,0x29,0xb0, +0x58,0xd9,0xc4,0xaf,0xd8,0xbb,0xc8,0x2b,0xc7,0x43,0x19,0x3f, +0xd3,0xff,0xeb,0x93,0x21,0x2c,0x66,0x8a,0xab,0x0a,0x6b,0x72, +0xca,0xb9,0x6d,0xa3,0x0c,0x51,0x54,0x9f,0xcf,0x65,0x3a,0x0b, +0xf2,0xba,0x64,0xc2,0x7a,0x4d,0x71,0x3b,0x3b,0x3a,0x93,0x02, +0xab,0x5d,0x90,0x23,0xbe,0x83,0xb3,0x58,0x45,0x6f,0x90,0xa9, +0x4c,0x47,0x1e,0x9d,0x45,0x61,0x85,0x38,0x4d,0x0c,0x62,0x85, +0xa3,0x42,0x00,0xc1,0x9b,0x17,0xe1,0x26,0x85,0xa5,0xb8,0x8e, +0x98,0x54,0x1e,0xac,0x32,0xcd,0xf7,0xb6,0xe2,0x07,0x82,0x2e, +0x78,0xf5,0x79,0x72,0x95,0x8b,0x88,0x59,0x95,0x66,0xb5,0x61, +0xbe,0xb7,0x25,0x7f,0x26,0x78,0xc4,0xa3,0xc7,0x93,0xa6,0xfc, +0x9f,0xc9,0x77,0x92,0xf2,0xe6,0xe2,0xb6,0xc2,0xd3,0xba,0x15, +0x7c,0x88,0xa5,0xa7,0xa1,0x9b,0x29,0x27,0xaa,0x3a,0x2d,0x05, +0x4d,0x6d,0xd4,0x9c,0xaf,0xf7,0x33,0xa6,0x30,0x0e,0x11,0x0e, +0x91,0x4e,0x0a,0x82,0xde,0xfa,0xf4,0xba,0xcc,0xfa,0x2c,0x0e, +0xab,0x97,0x2b,0x38,0x72,0x6f,0x33,0x5d,0x79,0x45,0x6d,0x0a, +0x82,0xde,0xba,0xec,0xfa,0xdc,0xba,0xdc,0xc3,0x67,0x78,0xcf, +0x08,0x8f,0x08,0x05,0xc9,0x6e,0xe8,0xf7,0x0d,0xf2,0x39,0x67, +0x59,0x71,0x75,0x1d,0x09,0x69,0xf5,0x69,0xf7,0xab,0x31,0xf2, +0xe6,0xcb,0x9c,0xcb,0xec,0x0a,0xec,0x68,0x4c,0x1a,0xd5,0x22, +0xf9,0x86,0x8a,0x7d,0xd4,0xed,0xb9,0xb9,0x54,0xc3,0xae,0x6b, +0x8b,0x77,0x59,0xd1,0x81,0x8e,0xec,0x06,0xac,0x11,0xe3,0x57, +0xb2,0xd9,0x86,0x92,0xbb,0x8a,0xfa,0x76,0xfa,0xb7,0x1e,0xac, +0x1c,0x9d,0xc8,0x82,0x20,0xfc,0x45,0xc4,0x3d,0xe7,0x85,0x3d, +0x2c,0xda,0xa2,0x03,0xf1,0x6e,0xb6,0x6c,0x75,0xaa,0x74,0x75, +0xe0,0x1b,0xbd,0xda,0xad,0xab,0x9c,0xb8,0x3a,0x9c,0x45,0xbc, +0x1b,0xac,0x3b,0x1d,0xab,0x9d,0xed,0xf9,0x66,0x8f,0x36,0x8b, +0x72,0x97,0xbf,0x61,0x19,0x6d,0x2c,0x3c,0xaf,0xa5,0x8d,0xa7, +0x0c,0xe0,0x94,0xd6,0x85,0x0b,0x50,0xa8,0x75,0xf1,0x02,0xe4, +0x0e,0xd2,0x50,0xe4,0x3b,0x5a,0x4e,0x1c,0x62,0xd2,0x1a,0x14, +0x3d,0xf1,0xe2,0xc1,0x6f,0x54,0xc6,0xc2,0x8c,0xd3,0x57,0xcf, +0x17,0xd2,0x50,0xf5,0x0d,0x13,0x7c,0x32,0x28,0x2e,0x54,0x1a, +0x18,0x17,0x7a,0xc2,0x45,0x15,0x8d,0xc7,0x3a,0x71,0x68,0x30, +0xd7,0x9a,0x52,0xfb,0x32,0x64,0xc9,0x95,0xf1,0xa7,0x4f,0x0e, +0x71,0xa3,0x96,0x46,0x90,0xc6,0xf8,0x1f,0xdc,0x64,0x80,0xbe, +0x6e,0xb9,0x86,0x7c,0x73,0x72,0x7d,0x72,0x4d,0x2a,0x87,0xce, +0x50,0xca,0x1a,0x2f,0xc0,0x77,0x0e,0x62,0xb0,0x45,0x89,0x1e, +0x0f,0x51,0xd4,0x2d,0xdd,0x3e,0x0f,0x73,0xb8,0x7e,0x5c,0xc7, +0x68,0x94,0xf9,0xbf,0x6d,0x38,0x52,0xa8,0x68,0xc4,0xa1,0x97, +0x2f,0x41,0x9e,0x1d,0x9d,0x2d,0xb0,0x8a,0x66,0x22,0xc7,0x2d, +0x8e,0xd9,0x46,0x53,0xe5,0x08,0x65,0x84,0x9b,0xf0,0x21,0xc1, +0x0f,0xb1,0x81,0x4d,0x6f,0x4a,0x6e,0x8d,0xef,0x54,0x10,0x35, +0xd5,0x11,0x9b,0x2a,0x9d,0x4a,0xab,0x3c,0x2f,0x5b,0xbe,0x2f, +0xf0,0xac,0x47,0x93,0xcf,0x5b,0x92,0xbf,0x68,0xdb,0x50,0xdb, +0x00,0xbb,0x61,0x37,0xbe,0x72,0xa8,0x64,0x64,0x8c,0xe4,0x6f, +0x15,0x9b,0xdf,0x9b,0xdd,0x97,0xd6,0xa5,0x95,0xcd,0x87,0xcc, +0x36,0xc5,0x8f,0x76,0xcd,0xeb,0xb3,0xe5,0xeb,0xbb,0x2b,0x07, +0x4a,0xcf,0x70,0x30,0x73,0x74,0x3c,0x2e,0x60,0xf2,0xb4,0x25, +0x30,0xed,0xef,0x24,0x7f,0xe2,0x3c,0x0c,0x22,0x31,0x19,0x51, +0x09,0xd1,0x31,0x51,0x8a,0x2e,0xdf,0x4c,0xfb,0xe0,0xc5,0x1f, +0x2a,0x9f,0x73,0xbd,0xa8,0x0c,0x8b,0x0e,0xe1,0x22,0x9c,0xa5, +0x0b,0x65,0xac,0x8d,0xe2,0x5b,0x26,0x5c,0x87,0x9f,0xcc,0xad, +0x33,0xe1,0xcf,0xb4,0x77,0x75,0x34,0x28,0xea,0x25,0x2f,0x0a, +0xbb,0x58,0x85,0x37,0x3b,0x26,0x05,0x09,0x2e,0x69,0x6d,0x96, +0x3c,0x82,0x40,0x12,0xa2,0xa0,0xfe,0x9b,0xa7,0x89,0x93,0x86, +0xed,0xf8,0xcb,0x30,0xa5,0x03,0xd6,0xe4,0xc3,0x0c,0x0e,0xc2, +0x8f,0x90,0xe6,0x31,0xea,0xbf,0x02,0x9c,0x3a,0x52,0xc8,0x87, +0xc0,0x64,0x1b,0xd8,0x65,0xaf,0xa0,0xfe,0x13,0x76,0xc3,0x17, +0xc4,0x3a,0xda,0x28,0x5a,0xff,0x70,0x52,0x67,0x7c,0xf7,0x29, +0x85,0xa0,0xc3,0x38,0x13,0x9e,0x69,0xe1,0x33,0xdc,0xa1,0x07, +0x3b,0x98,0x93,0x3a,0x27,0x8c,0x8f,0x5a,0x68,0x1e,0xd6,0x8c, +0x31,0x88,0x4b,0xd6,0xe1,0x7b,0x12,0x87,0x53,0xce,0xa6,0x07, +0x2c,0xb4,0xdc,0xba,0x62,0x53,0xa7,0x39,0xff,0xfa,0xd7,0xde, +0x97,0xc5,0xf0,0xde,0x85,0x8c,0x73,0x99,0xdd,0x99,0x1c,0xbc, +0xc4,0x77,0xc8,0xad,0x5f,0x7a,0xe0,0xbd,0x4a,0x50,0xe1,0x7a, +0xc4,0x0f,0x60,0xaf,0xb0,0xe0,0x9c,0x68,0x8f,0x99,0x2c,0x66, +0x79,0xd2,0x21,0x4c,0xc1,0xa5,0xd2,0x0e,0x4b,0xf8,0x08,0x56, +0xb7,0xc3,0xfa,0x04,0xc8,0x51,0x86,0xab,0x8c,0xff,0x1c,0x87, +0x85,0x3a,0x6b,0xac,0xee,0xb9,0x3c,0xf6,0x7a,0x6a,0xe0,0xcf, +0xd7,0xcc,0x6d,0x59,0x39,0xb0,0x51,0x67,0xe7,0x8e,0x03,0x4b, +0x0d,0xeb,0xf4,0xf9,0x17,0x83,0xf7,0x2f,0x8f,0xdc,0xeb,0xdd, +0x7b,0xf1,0xc0,0xfd,0x43,0xb5,0x67,0xf8,0x1d,0xc3,0x3a,0x97, +0xcc,0x6e,0x70,0x78,0x43,0x58,0x48,0x42,0x6f,0xbb,0xfd,0xe8, +0x7d,0xc5,0x30,0x88,0x2f,0xd7,0xa8,0x5f,0x98,0xb3,0x93,0xc3, +0x1a,0x48,0x27,0x11,0xdb,0xdd,0x16,0x3b,0xee,0x19,0xf4,0xe5, +0x1b,0xef,0xd5,0xff,0x94,0xfd,0xc5,0x18,0x55,0x93,0x3d,0x29, +0x76,0x2d,0x74,0x29,0x74,0x3c,0x53,0xcc,0x87,0x55,0x85,0x55, +0x84,0x94,0xbf,0xa5,0x6a,0xca,0x2c,0xca,0x28,0x4a,0x2d,0x52, +0x50,0x35,0xa9,0x19,0xef,0xdf,0x63,0xa0,0xf0,0x32,0xd5,0xf5, +0xf5,0x55,0x4d,0x9c,0x60,0xd1,0x47,0xd2,0x8b,0xd2,0x8a,0x53, +0x8a,0x14,0xac,0x4c,0x1a,0x8e,0xfb,0x8d,0xf4,0xa9,0x97,0x29, +0xaf,0x2a,0xa9,0x29,0xac,0xe3,0x5e,0x30,0x85,0x1e,0x05,0xee, +0x05,0x2e,0x03,0x45,0x7c,0x78,0x45,0x78,0x49,0x68,0xa9,0x82, +0xc6,0x89,0x19,0x3d,0x2b,0x6e,0x20,0x68,0xe4,0xb8,0xd0,0x60, +0xa3,0xb4,0xdb,0xe6,0xf2,0xcb,0x46,0x60,0x13,0x60,0x97,0xb2, +0x7c,0x35,0xec,0x1f,0x5d,0x7d,0x86,0x81,0xc4,0x53,0x10,0x77, +0x0a,0x3c,0x4a,0xfd,0x06,0xf8,0x00,0xb4,0xc2,0xa8,0xe3,0x78, +0x51,0x55,0xbe,0x0a,0xa3,0x89,0x08,0x0f,0x05,0x60,0xc4,0x6c, +0x31,0x8f,0xc0,0x6a,0x98,0x85,0xb3,0x86,0x68,0x1e,0x3f,0xe7, +0xcd,0x7f,0x4b,0x17,0xe0,0x44,0x36,0xd3,0x4c,0xf2,0xe3,0x1b, +0x5f,0x03,0x79,0xa3,0x4b,0xf1,0x5b,0x16,0xcc,0xc1,0x86,0xe0, +0xac,0xc7,0x30,0x8b,0x19,0x9a,0x0e,0x73,0x36,0xe2,0x1c,0x06, +0xcc,0xa6,0x3f,0x86,0xa5,0x1b,0x59,0xa5,0xbf,0x0e,0xca,0xd7, +0x93,0x73,0xe2,0x6e,0x36,0xaf,0x2e,0xbb,0x2e,0xad,0xfa,0x50, +0x26,0xef,0x3a,0x63,0x35,0x4e,0xde,0xb8,0xfb,0xb4,0x25,0x3f, +0xd0,0x3d,0x74,0xb5,0x9d,0xce,0x9d,0x71,0x36,0x31,0xee,0xdf, +0x75,0x5e,0x4f,0x51,0x71,0x74,0xce,0xe1,0xb6,0x76,0xff,0x9b, +0xca,0x2a,0xe3,0xfe,0x1d,0x17,0x74,0x9b,0x9c,0x14,0x75,0x46, +0xb7,0x74,0x86,0x0c,0x38,0x58,0x42,0xa5,0xdb,0x37,0x1c,0xf0, +0x85,0x14,0xfe,0x64,0xba,0xf3,0x8a,0x29,0x64,0xfc,0x90,0xd5, +0xca,0x95,0xe0,0x2c,0x7c,0xce,0x1a,0xb8,0x25,0x35,0x0d,0x83, +0x26,0x4c,0x81,0xc8,0x3f,0x65,0x67,0x44,0x5d,0x3d,0xb8,0xc3, +0xa2,0xd9,0x0a,0xdc,0x88,0x93,0x56,0xa9,0x7c,0x87,0xfa,0x04, +0xa7,0xad,0xb8,0xa4,0xa8,0xb1,0xda,0x83,0x96,0x5a,0xf0,0x29, +0x32,0xec,0x62,0x5b,0xbd,0x99,0xd6,0xd2,0xd2,0x43,0x3f,0xb6, +0x9e,0xb9,0x90,0xf8,0xa6,0xc6,0xea,0xf1,0x76,0x45,0x8d,0x95, +0xff,0x9b,0x32,0xb1,0x12,0xb9,0x0f,0x29,0xf4,0x2c,0x74,0xcf, +0x77,0xa5,0x13,0x1b,0x51,0x1e,0x56,0x12,0x56,0x42,0xb3,0x55, +0xc5,0x32,0x65,0xe4,0xa7,0xe7,0xa7,0xe4,0x1b,0xe4,0xf2,0x6e, +0xfb,0x4d,0xb4,0xd4,0x4d,0x5a,0xe9,0x32,0x29,0x7a,0x03,0xd6, +0xd3,0x60,0xd0,0x47,0xd2,0xf2,0x53,0x0b,0x52,0xf2,0x0d,0xb3, +0xf8,0x00,0x5d,0x57,0x7d,0x4b,0x33,0xce,0x76,0x2b,0xbe,0xd4, +0x65,0xd0,0xe5,0x24,0xda,0xae,0x44,0x35,0x69,0x9f,0x93,0xe4, +0x05,0xec,0x4a,0x85,0xc3,0xa0,0xa5,0x72,0x5a,0x1e,0xdf,0x27, +0x6e,0xb8,0xc4,0x96,0x85,0x16,0x97,0x14,0x94,0xe5,0x96,0x2b, +0xff,0xc0,0x14,0x7a,0xd2,0x95,0x74,0xa5,0xf1,0x22,0xbc,0xe2, +0xcd,0x03,0xe9,0x4a,0xae,0x18,0xdd,0x41,0x5e,0x5d,0xe9,0xda, +0xff,0x13,0x9a,0x0f,0x41,0x56,0x07,0x66,0x35,0xb3,0xf7,0xd2, +0x07,0x33,0x5a,0x32,0x22,0x3a,0x78,0x83,0xd0,0x75,0xe1,0x38, +0x39,0x26,0xcd,0x92,0xcf,0x39,0x95,0x13,0x9f,0x7d,0x8a,0x73, +0xc3,0x79,0x43,0x6c,0x79,0x52,0x71,0x52,0x41,0x92,0xe2,0xcf, +0x61,0x1b,0x22,0xf0,0xbd,0x23,0xe9,0xd4,0xc7,0x27,0x76,0x26, +0xb5,0x24,0x73,0x16,0x68,0x69,0x05,0x96,0xfa,0xb8,0xc7,0x0a, +0xf6,0x18,0xa0,0xad,0x05,0xd8,0xea,0xa3,0x86,0x15,0xcc,0x67, +0x9d,0xed,0x0f,0x3a,0xe2,0x24,0xdb,0x32,0x33,0x1e,0x54,0x7b, +0x47,0xda,0x0b,0x47,0x68,0x94,0x5c,0x37,0x0c,0x3b,0x61,0x1e, +0xee,0x1c,0x86,0xf5,0x29,0x4c,0xb1,0xe6,0x15,0x2b,0x58,0x69, +0x5a,0xd6,0xcb,0xe3,0xc7,0xad,0xbb,0x9a,0x1c,0x9b,0xb9,0x15, +0x8a,0x76,0xdb,0x8a,0xc7,0xc1,0xbc,0x05,0xc4,0x00,0xe7,0x0d, +0xb2,0xf0,0xca,0x80,0xe0,0x9c,0x41,0x98,0xc3,0xe0,0xab,0xf9, +0x04,0xe6,0xd1,0xbf,0x32,0x60,0x39,0x7d,0x08,0xe6,0xe8,0xd3, +0xe8,0xea,0x29,0xff,0x9a,0xd8,0xa3,0xbe,0x16,0xce,0x5d,0x32, +0xd6,0x2c,0xbc,0xbc,0xaa,0xa2,0xb9,0xbc,0x93,0x13,0x4b,0xcf, +0xc9,0x95,0xd9,0x9a,0xfb,0x15,0xdf,0xe4,0x7f,0xcf,0x41,0xf1, +0xa8,0x11,0x49,0xa5,0x3e,0x76,0x31,0x33,0x52,0x90,0xdf,0x99, +0x26,0x4b,0x2a,0x4f,0xa8,0x8c,0xaf,0x3b,0xed,0xd3,0xe9,0x3f, +0x10,0x54,0x3a,0xc0,0xa3,0x52,0x97,0x5a,0x8f,0xf1,0x08,0x07, +0x61,0x03,0x22,0xc3,0xa4,0x15,0xa5,0x16,0x27,0x53,0x75,0xbf, +0x0e,0x56,0xa8,0x7f,0x0b,0xdc,0x07,0x46,0x67,0x1a,0x81,0xa5, +0x1a,0x85,0x9f,0x56,0x10,0xc9,0xc4,0xfa,0xc5,0x04,0x1c,0x0e, +0xe4,0x30,0xc5,0x08,0x7c,0x19,0x23,0xf5,0x2d,0x66,0x38,0xc1, +0xb2,0xc2,0x98,0x6f,0xcf,0x3f,0x5d,0xd8,0x58,0xcc,0xe1,0x41, +0x56,0xa3,0xc4,0xff,0x9e,0x14,0x9e,0x31,0x1d,0x0a,0x6a,0xff, +0x67,0xac,0x61,0x9e,0x04,0x59,0xfc,0x9e,0x75,0x8b,0xca,0xa8, +0x94,0x81,0x19,0x0c,0xb1,0x27,0xdd,0x8f,0x7b,0x1d,0x0f,0xe3, +0x82,0xe3,0x8e,0xc6,0xd8,0xa8,0x86,0xca,0xdf,0x27,0x6a,0x38, +0xed,0x16,0x6b,0x48,0xc3,0xf7,0x1c,0x9c,0xfa,0x1b,0x0b,0xfb, +0xa6,0xc3,0xb4,0x39,0x38,0x8d,0x81,0x5b,0xd3,0xf1,0x93,0xdf, +0xe0,0x13,0x06,0x1d,0xb1,0x8c,0x14,0x79,0x94,0x7b,0xd4,0x7a, +0x73,0x98,0xc4,0x54,0x95,0x97,0x56,0x15,0xd6,0xd2,0xf8,0xd3, +0xd2,0x48,0x44,0x43,0x66,0x67,0x60,0xde,0x5d,0x19,0x24,0xb2, +0xe0,0x3f,0x02,0xc1,0x3f,0xc3,0xc2,0x57,0x76,0x43,0x3c,0x4a, +0x97,0xa1,0xe7,0x22,0xb4,0xa1,0xd9,0xca,0xfb,0xea,0xa3,0x66, +0xec,0x9c,0x76,0x87,0xdf,0xa4,0x82,0x39,0x33,0x54,0x52,0x3c, +0x28,0x03,0x47,0x56,0x23,0x47,0xa2,0x24,0x9f,0x2f,0x4f,0x21, +0xc5,0x9b,0x61,0xfc,0x5e,0x98,0xbb,0xb7,0x82,0x4e,0xc2,0xfc, +0x6b,0x4b,0xee,0xb8,0x5f,0xa2,0x4f,0x30,0x84,0x95,0x8c,0xa5, +0xf6,0x56,0x4b,0x9c,0x64,0x5e,0x46,0xa1,0xed,0xec,0xf3,0xbf, +0x5f,0x2d,0x7b,0xc1,0x89,0x19,0xa3,0x87,0xc9,0x6b,0xd0,0x92, +0x7f,0x82,0x27,0x47,0x8f,0x2a,0xfa,0x01,0xad,0x25,0x38,0x5d, +0xa8,0x87,0xe9,0x8c,0xd0,0x8b,0x3b,0xc8,0x19,0xbc,0x67,0xc8, +0xc2,0x67,0x96,0x24,0x6c,0xb9,0xdf,0x2a,0x97,0xd5,0x0d,0xcb, +0xaa,0x71,0x5c,0xe1,0xec,0x81,0x3c,0x3e,0xe8,0xb5,0x13,0x4c, +0xf2,0xb9,0x5a,0x76,0xb1,0xf2,0xfb,0x82,0x5f,0xb9,0x6f,0x53, +0x49,0xd0,0x72,0xaf,0xd5,0xf6,0x6b,0x5a,0x97,0x35,0xcc,0x2a, +0x9f,0xd3,0x93,0xcf,0x07,0xfc,0x68,0x0d,0x1f,0x7a,0x5d,0xae, +0xb9,0x5e,0xf5,0xac,0xe8,0x7b,0x4e,0x8c,0x10,0x07,0x88,0x10, +0x07,0x73,0xc5,0x5d,0x1b,0xd8,0x2c,0x7d,0xc9,0x4d,0xa6,0x25, +0x47,0x11,0xa8,0x7d,0x31,0x55,0xec,0x51,0x74,0x4f,0xff,0x95, +0x78,0xd7,0x3b,0x36,0xba,0x56,0x78,0x38,0xf3,0x75,0x9e,0x8d, +0x4e,0x65,0xae,0x5c,0x15,0x4e,0x21,0xde,0x8d,0x4e,0x0d,0xce, +0xd5,0xee,0xce,0x7c,0xbd,0x47,0x93,0x63,0xb9,0x33,0x9d,0x9d, +0xd9,0x82,0x12,0xe9,0xc0,0xd8,0x6e,0x88,0xa5,0xaf,0x3d,0x10, +0x0a,0xfe,0xc8,0xb1,0xa9,0xb9,0x29,0x79,0xc9,0x05,0xfa,0x69, +0xfc,0xb1,0x90,0x23,0x41,0xd1,0xfe,0x14,0x3d,0x88,0xbe,0x67, +0x6e,0x31,0xf3,0x28,0x6e,0x3e,0xec,0x17,0xed,0x17,0xe1,0xef, +0x78,0xcc,0x2e,0xce,0xf6,0xf8,0xf0,0xd9,0xb3,0x57,0xfb,0xee, +0xda,0x54,0xf2,0xbe,0x8e,0xde,0x4e,0x9e,0xce,0xe1,0x85,0xe1, +0xf9,0x61,0xf9,0x0d,0xcd,0x75,0x9d,0x55,0x9d,0xd6,0x95,0xbc, +0x9f,0x8d,0xbb,0x9d,0xab,0x93,0x6b,0x23,0xef,0xe0,0xd2,0x61, +0xde,0x6c,0xd9,0x60,0xa9,0xec,0xeb,0xe5,0xeb,0xed,0xe7,0xcb, +0x85,0x84,0x9c,0x0c,0x51,0x4d,0x34,0xbd,0x99,0x70,0x23,0x69, +0x24,0x55,0xd9,0xf8,0xa0,0xba,0xc1,0x3a,0xc7,0x6a,0x0b,0xaa, +0xfb,0x67,0x7f,0xfb,0x73,0x10,0x94,0x39,0xe1,0x54,0x23,0xa9, +0xea,0xaa,0x1c,0x2e,0x18,0xa1,0x50,0xee,0x84,0x78,0x6c,0x58, +0x30,0x84,0xa9,0x6c,0xb8,0xbe,0xa7,0x81,0x9b,0x19,0x37,0x6c, +0x54,0x61,0xe5,0xa0,0xe2,0x14,0x15,0x6a,0x21,0xb5,0x66,0xf2, +0x4c,0x24,0x6d,0xcc,0xa5,0xc6,0xca,0x1b,0x17,0x9d,0x9a,0x6c, +0x3a,0x64,0x58,0xfe,0x1d,0xc1,0x3d,0xbd,0x14,0x66,0xe2,0x9e, +0x55,0x04,0xf6,0x18,0x53,0x60,0x74,0x1e,0xd3,0xc9,0xd1,0xc0, +0xc3,0x01,0xe1,0x3e,0x1c,0x3e,0x45,0xbc,0x00,0x17,0xe4,0x6b, +0xf0,0x28,0xae,0x51,0xf0,0x6a,0x50,0xa5,0x79,0xd3,0x36,0xa3, +0x4a,0x94,0xb2,0x69,0x79,0xa9,0xf9,0xe9,0xa5,0x1c,0x1e,0xc7, +0x4d,0x04,0xdd,0xcf,0xf6,0xc3,0x5f,0xb0,0x91,0xc5,0xbf,0x90, +0x23,0xd7,0x60,0x50,0xb1,0xc7,0xe4,0x1a,0xb8,0x10,0xb7,0x30, +0xd7,0x30,0xe7,0x70,0x0e,0x9e,0xc2,0xf8,0xb3,0x14,0xab,0x55, +0x6a,0x61,0xe5,0x2c,0xdd,0xd7,0x38,0xca,0xda,0x87,0xdb,0x85, +0xdb,0x46,0xe6,0xeb,0xf2,0xbf,0x37,0x7e,0xd3,0xf0,0x45,0x3b, +0x07,0x4e,0x42,0x2f,0x09,0xfa,0x2c,0xe4,0x64,0xa8,0x14,0x77, +0xe2,0x37,0x42,0x17,0x7c,0x83,0x07,0x5e,0x82,0xc7,0x90,0xf8, +0xa7,0x3e,0x58,0x30,0xc3,0x4b,0xc9,0xa9,0xfc,0xcf,0x0a,0x0a, +0x55,0x9a,0x1e,0x2e,0x65,0x31,0xd1,0x88,0xc0,0x78,0xe6,0xf0, +0x5e,0x5f,0x5b,0x7d,0xcb,0x66,0x1b,0xfe,0xea,0xb9,0x9a,0xc1, +0xcc,0x27,0xdc,0x93,0x4d,0x8c,0x51,0x7e,0xe8,0x79,0xe9,0xeb, +0xcd,0xe2,0x1e,0x46,0xd8,0x03,0xd3,0xc9,0x52,0xc6,0x2f,0x36, +0xa9,0x5c,0x76,0x03,0x3e,0x62,0x51,0x5f,0x74,0x24,0x90,0x3d, +0x88,0xd9,0xbf,0x6b,0xcd,0xc6,0x14,0x03,0x48,0xc1,0x69,0xd8, +0x6a,0x20,0x9f,0x3e,0x88,0xdd,0x8c,0x92,0xfc,0x9e,0xbc,0x8b, +0x8c,0x9a,0xe9,0xc9,0x3f,0x59,0x36,0xca,0x18,0xc8,0x99,0x45, +0xa3,0x6b,0xf5,0x60,0x84,0x51,0x9b,0x87,0xdc,0x66,0x5c,0x76, +0xa8,0xc6,0x90,0x7f,0xda,0xf0,0x4d,0xcf,0xed,0xf3,0x1c,0xc5, +0x18,0x66,0x07,0x76,0xec,0xc3,0x89,0xda,0x3a,0x43,0x9a,0xdd, +0x06,0x4d,0xe6,0x76,0xd4,0xe1,0x0f,0xd8,0x0c,0x98,0x2d,0xb3, +0x45,0xd6,0x05,0x67,0x04,0x14,0x68,0xf3,0xc2,0xa2,0x8b,0x60, +0x07,0xdb,0xbf,0x83,0x85,0x34,0xab,0x59,0xcf,0x56,0x55,0x97, +0xd5,0x15,0xd4,0x73,0x00,0x8c,0xd2,0x5f,0xdb,0xe5,0x3b,0x88, +0xf8,0x25,0x2c,0x3e,0x84,0x8b,0xf1,0xa8,0x2e,0x1c,0x65,0x8e, +0x63,0x8b,0x21,0x5a,0xd2,0x90,0xb6,0xae,0x9b,0x9a,0x84,0x25, +0x6c,0xbe,0x0e,0x8e,0x09,0xf0,0x88,0x13,0xbe,0x64,0x70,0x3f, +0x1d,0x81,0x69,0xc5,0x86,0x5a,0xf5,0x6c,0x77,0x33,0xfe,0x7a, +0xf8,0xd7,0xee,0x9d,0x74,0x49,0xfc,0x15,0xad,0x4e,0xc6,0x97, +0xc3,0xe4,0xc1,0x67,0x97,0x1d,0xbb,0xf8,0xed,0xfa,0xf8,0xae, +0x31,0x32,0xbe,0x9c,0xb0,0x54,0xf4,0x21,0xe2,0x7c,0xc6,0x35, +0x3c,0xab,0x46,0x26,0x38,0x69,0x89,0x7e,0xec,0xc1,0x06,0xdf, +0xf3,0x52,0x81,0xe2,0x15,0x45,0xc1,0x3a,0x05,0x83,0x5a,0x05, +0x12,0x71,0xfa,0x7d,0x02,0xca,0xf5,0x30,0xff,0xd6,0xeb,0xaf, +0xe9,0xd5,0xcb,0x76,0xe2,0x27,0x6a,0x38,0xc3,0x95,0xcb,0xc0, +0xe3,0x04,0xb6,0xb5,0xc0,0xf6,0x27,0x30,0xee,0x67,0x87,0x6e, +0x7e,0xc9,0x4a,0x5c,0xbb,0x11,0x77,0x38,0xd0,0x14,0xe7,0x82, +0x3c,0x97,0xdc,0x52,0x57,0x13,0x79,0x3c,0xc5,0x62,0x5b,0x28, +0xce,0xd0,0xc6,0x77,0x15,0x9f,0xcf,0x5e,0x87,0x59,0xf9,0xb0, +0x05,0x3a,0x54,0x40,0x47,0x5e,0x35,0xc8,0x8a,0x2b,0x47,0xa9, +0x1a,0x64,0x3c,0x86,0xac,0x3e,0xcc,0xba,0x0f,0x27,0x61,0x04, +0x67,0x30,0x69,0xc5,0x69,0xa5,0xa9,0xe5,0x86,0x29,0x7c,0xac, +0x57,0x8c,0x4f,0x94,0x2f,0x37,0x73,0x54,0x6d,0x08,0x3e,0x80, +0x0c,0x46,0x18,0xaf,0x4b,0x4c,0xe8,0xe2,0x28,0x2a,0xcb,0xfd, +0xed,0x59,0x05,0xaf,0x6f,0x12,0x75,0x8d,0x0b,0x07,0x50,0x46, +0xe3,0x59,0xd2,0xad,0x53,0x8f,0xb9,0x3f,0x06,0xf0,0x01,0x16, +0x99,0x1a,0x51,0x00,0xed,0x84,0x2b,0xb6,0x2e,0xc7,0x19,0xcb, +0x1a,0x4d,0x14,0x9f,0xc7,0x3e,0xfc,0xaa,0x9b,0x02,0x32,0x34, +0x61,0xf5,0x8b,0x02,0x07,0xa5,0x67,0x99,0x86,0xec,0x9c,0x36, +0xd9,0x1f,0xac,0x19,0x75,0x88,0x87,0x05,0x07,0xf2,0x9a,0x39, +0xb9,0xe1,0x98,0xda,0x61,0x4d,0x6e,0x15,0x83,0xc6,0x0a,0x4e, +0x57,0xbd,0xcf,0x41,0x8f,0x41,0x3d,0xc5,0x67,0xf3,0x7a,0x6b, +0x50,0x8f,0xf9,0xbf,0x1f,0xd2,0x56,0xd1,0x95,0xd0,0x71,0xc8, +0x58,0xc5,0x38,0x52,0xfe,0x36,0x8e,0xc3,0xbe,0x1c,0x8e,0x7b, +0x3b,0x90,0xbe,0xbf,0x8f,0x98,0x91,0xb3,0xb7,0x49,0x43,0x56, +0x66,0x93,0xec,0x2b,0xd6,0x24,0x4f,0x32,0xcf,0x95,0x0d,0x3e, +0x92,0x42,0x47,0x67,0x80,0x5e,0x7a,0xec,0xa2,0x00,0x3d,0x5d, +0x73,0x69,0x87,0x95,0xe4,0xea,0x60,0xf9,0x5d,0x98,0xa0,0x92, +0xf1,0x07,0x2e,0x63,0x8d,0x4a,0x43,0x06,0xa4,0xa2,0x54,0xd1, +0x7f,0xef,0x3f,0x8a,0x28,0xdf,0x26,0x32,0xe4,0x60,0x89,0x5e, +0x8d,0x69,0xf3,0xd0,0xb9,0xd3,0x37,0xcb,0x1e,0x72,0x1d,0xf8, +0x8b,0x09,0x34,0xb1,0x41,0x9a,0x2e,0xfa,0x96,0x16,0x36,0xad, +0xce,0xdd,0xbe,0x67,0x4c,0xbc,0xf9,0x4a,0xdd,0x46,0xe3,0x2e, +0x4b,0x73,0x47,0x3d,0x8f,0xfd,0xfe,0x95,0x86,0xfc,0x8d,0x92, +0x91,0xc6,0x81,0xce,0x01,0x9b,0x11,0xa7,0x5b,0xde,0x34,0x75, +0x33,0x95,0xcf,0x26,0xf7,0x59,0xc8,0x8c,0x87,0xe4,0x2c,0xb0, +0xaf,0xf3,0x3a,0xcb,0xa3,0xa5,0x33,0x86,0x46,0xe2,0xbd,0xe3, +0x1c,0x5e,0x63,0xd1,0xdd,0x07,0xe7,0xec,0xc2,0x29,0xd2,0x01, +0xd3,0xcf,0x41,0x56,0x01,0xab,0xe3,0xc1,0x46,0x59,0xae,0x0e, +0xee,0xcc,0xa8,0x3a,0xae,0x25,0x7f,0xc8,0xb9,0x99,0xac,0x98, +0x27,0xde,0x22,0x60,0x0b,0x33,0xc6,0xbe,0x5a,0xfc,0xdb,0x7f, +0x0b,0x71,0xc1,0x42,0x36,0xc3,0x58,0xf2,0x05,0xd3,0x56,0x5a, +0xdc,0x2a,0x13,0x26,0x8e,0xce,0x17,0xf7,0xb3,0x60,0xaa,0xa8, +0xff,0x9d,0x01,0x53,0x61,0x06,0x33,0x3c,0x9d,0x9e,0x3b,0x95, +0x6a,0x00,0x18,0x4f,0xa7,0xbf,0x58,0x88,0x53,0x59,0x25,0xc1, +0x43,0x98,0x46,0xca,0xac,0x61,0xda,0xf0,0x57,0x77,0x6b,0x80, +0x55,0x06,0xab,0x1e,0x34,0x64,0x12,0x0a,0x4e,0x15,0x15,0xa9, +0x8c,0x80,0x5a,0xaf,0xb8,0xd5,0x14,0x8c,0x35,0xd9,0x80,0x93, +0x41,0xc7,0x83,0xa5,0x38,0x85,0xc9,0xaa,0x4a,0xaf,0x4e,0xae, +0xd4,0x49,0xe1,0x63,0x2c,0x42,0xad,0xbc,0x8d,0x38,0x30,0x66, +0x3c,0x96,0xef,0xd2,0xc5,0x77,0x2c,0xb8,0x66,0x7c,0xd9,0x09, +0xcf,0x3b,0xf0,0x79,0x27,0x3c,0x84,0x00,0xdc,0xcb,0xa6,0xe7, +0xa6,0xe6,0x27,0x67,0xeb,0xa7,0xf2,0xb1,0xa1,0xd1,0x81,0x87, +0x43,0x38,0x9c,0x29,0x5a,0x0e,0x0e,0x32,0x50,0x0e,0xa3,0xc4, +0x14,0xcb,0x7b,0x59,0x28,0x5f,0xf9,0xe6,0x40,0x9e,0x8d,0xf1, +0x64,0x15,0xe3,0x7b,0x34,0xb5,0x54,0xf6,0x9a,0x1a,0x0f,0x6b, +0x5c,0x14,0xda,0x27,0xfd,0x4d,0x41,0xb6,0x5a,0x2f,0xbb,0xa3, +0xf8,0x50,0x5f,0x57,0xdc,0x4f,0x20,0x63,0x54,0x13,0x33,0x58, +0xf9,0x64,0x58,0x4a,0xc4,0x3b,0xc3,0xc2,0x1d,0x46,0xbc,0x33, +0x9b,0x08,0x77,0xf4,0xc4,0x3b,0x8c,0x3c,0x14,0x57,0x91,0xfe, +0xff,0x35,0xc3,0x98,0xba,0xb8,0x5b,0xf2,0x64,0x72,0x5b,0x6f, +0x37,0xba,0x9a,0x09,0x51,0x34,0x8a,0x24,0x8d,0xc6,0x12,0xab, +0xd8,0xac,0x6e,0x19,0x98,0xb2,0xe0,0x56,0x15,0x7b,0x1e,0xed, +0xbd,0x24,0xb0,0x8a,0x05,0xa3,0xca,0xa3,0xe7,0x50,0xc7,0x5b, +0x02,0xcb,0xd8,0x4b,0xf9,0x97,0x4b,0x07,0xab,0x3c,0x06,0xf8, +0xe5,0xa6,0xf8,0xbe,0x0b,0x32,0x41,0x59,0x7a,0x7c,0x4d,0x52, +0x43,0x4a,0x23,0x05,0x61,0xf3,0x59,0x9c,0x1a,0x92,0xa2,0x0b, +0xef,0x53,0x5d,0x5e,0xc5,0xe2,0x27,0xc1,0x29,0x3a,0x40,0xe8, +0xb1,0x29,0xbb,0xb5,0xc0,0xe5,0xb6,0xf4,0x07,0xa6,0x2f,0xb3, +0x90,0x7a,0xdf,0xe5,0x63,0xd1,0xff,0x00,0x3b,0xda,0x29,0x9f, +0xab,0xe8,0x50,0xaa,0xa5,0xe8,0x50,0xaa,0x82,0x09,0x04,0x6c, +0xe0,0x19,0xda,0xb0,0xd8,0x00,0x5b,0x68,0x0a,0x09,0xfe,0x30, +0x8d,0x45,0xb5,0x95,0x64,0x00,0x88,0x11,0x45,0x89,0xb8,0x8d, +0x88,0x8b,0xb0,0x42,0x58,0xc4,0x18,0x28,0x62,0x6c,0xff,0x55, +0xa0,0xf0,0xbe,0x1f,0xc7,0x13,0xe8,0x57,0xc7,0x7e,0x46,0x98, +0x85,0xf3,0x49,0x9f,0x18,0x6b,0xc2,0x2a,0xfa,0xce,0x50,0x0f, +0xbb,0xf9,0xf2,0x8f,0xd7,0x73,0x9f,0x73,0xc9,0x68,0x7c,0x01, +0x8c,0x93,0x99,0x9c,0xe5,0x7f,0x68,0xc2,0x76,0x8d,0xb2,0x41, +0x1e,0x17,0x0c,0xcd,0xb8,0x68,0x75,0x83,0x83,0xba,0x41,0x3c, +0xfb,0xad,0xd6,0x6a,0x6c,0x31,0x80,0x5c,0xc6,0x66,0xcf,0xc2, +0x83,0xb8,0xc0,0x80,0x4b,0x05,0x07,0x62,0xd5,0x66,0xd0,0x6e, +0x58,0xe7,0x6c,0xce,0x0f,0x3b,0x75,0xd9,0xf7,0x58,0x73,0xc5, +0xe8,0x4e,0x8c,0x7b,0xd5,0x86,0x34,0x4e,0x3b,0x99,0xf3,0x57, +0x6c,0x2f,0x9b,0x0c,0xd3,0xf5,0xfc,0x94,0xe6,0x19,0xfb,0xf1, +0x5d,0x3d,0xb9,0xd5,0xf0,0x42,0x61,0x3f,0x2b,0x6a,0xe2,0x5c, +0xf2,0x42,0x98,0xb2,0x8c,0x15,0x85,0x24,0xe2,0x8e,0x13,0xac, +0xf1,0x5d,0x8d,0xf9,0x03,0x63,0x8d,0x8f,0xfb,0xc6,0x1a,0x1f, +0xc3,0x4e,0xfc,0x98,0x7c,0x2f,0x4c,0x59,0xc2,0x8a,0x53,0xa8, +0xac,0x3f,0x0a,0x53,0x16,0x51,0x59,0x1b,0xe5,0xa6,0xc4,0xa4, +0x43,0xb3,0xf3,0x50,0xbd,0x9b,0x39,0x7f,0xc9,0x71,0xd0,0x76, +0xd0,0x92,0x03,0xe5,0x6c,0x42,0x33,0x3c,0x1d,0x0a,0x90,0x0b, +0xe0,0x93,0x6a,0x9f,0x7e,0x1e,0x67,0xb8,0xa1,0x79,0x08,0xc6, +0x1e,0x1f,0xa3,0xe4,0x49,0xf0,0xc7,0xe5,0x9b,0xf1,0x53,0x69, +0xbf,0x8d,0xe4,0x0b,0x98,0x5d,0x45,0xa1,0x74,0xab,0x8a,0xd0, +0x0c,0x5b,0x18,0xb1,0x19,0xdf,0x25,0xd7,0x85,0xe0,0xbd,0xac, +0xf8,0x6a,0x26,0xd1,0xef,0xdd,0x39,0xa8,0xde,0xec,0x62,0xc1, +0xdf,0xb0,0xbd,0x6a,0x76,0xd1,0x88,0x93,0xab,0x0e,0x11,0x71, +0x23,0x2e,0x10,0x36,0x32,0x86,0xbf,0x13,0x2d,0xbc,0x7e,0x81, +0xc5,0xab,0x38,0x89,0x38,0xe3,0x04,0x73,0x9c,0xb4,0x67,0x41, +0xaf,0x1d,0x7f,0xfb,0xcf,0x21,0x50,0xa9,0x7e,0xcd,0xd1,0x74, +0xa6,0x87,0x88,0xca,0x8c,0xe7,0x31,0xaa,0x68,0x5f,0x08,0x07, +0x61,0x8b,0x18,0x8b,0x29,0xac,0x5e,0x75,0x10,0xf5,0xc9,0x1f, +0x33,0xcd,0xf9,0xd9,0x4d,0xb2,0x4b,0xac,0x61,0x96,0x04,0xb3, +0xbe,0x20,0xb8,0xfe,0x01,0xac,0x67,0x06,0xb7,0x91,0x07,0xb0, +0x65,0x1b,0xb5,0x94,0x42,0x05,0x41,0xdc,0x66,0xea,0x9f,0xb6, +0x5e,0x00,0x16,0x02,0x98,0xa0,0xd5,0xdb,0x8d,0x70,0xa6,0x5f, +0xbe,0x11,0x0f,0xab,0xab,0x7f,0xba,0x5b,0x0c,0x13,0x29,0xd0, +0x9c,0xc9,0x98,0x16,0x05,0x5d,0x92,0xbe,0x69,0x57,0xa4,0x68, +0xd0,0xa3,0x9b,0x25,0xd9,0x8f,0x1f,0xb2,0x2e,0x47,0x53,0xaa, +0x65,0xdf,0x42,0xfc,0xa2,0x0b,0xb0,0x58,0x5c,0xc0,0xee,0x42, +0x5d,0x12,0xe9,0x1c,0xea,0xea,0xef,0xc6,0x61,0xa5,0xd8,0x76, +0xa1,0x5f,0x3e,0xd9,0xf8,0x82,0xd0,0x26,0xae,0x63,0x0a,0x2a, +0x73,0x2a,0x33,0x6b,0x39,0x7c,0x20,0x96,0x11,0xe1,0x63,0xf9, +0x64,0xf1,0x63,0x56,0x1c,0x06,0x19,0xb9,0x5c,0x36,0x5c,0xd5, +0x57,0x5f,0x17,0x5a,0x1b,0x52,0x1b,0xb4,0xc7,0x7c,0x93,0xdd, +0x22,0xf7,0x72,0x33,0xfe,0x8f,0xc6,0xa7,0x9d,0xf7,0x07,0x7b, +0xdc,0x7b,0x9d,0xfb,0xec,0x1a,0xdb,0x78,0xb3,0x46,0x8b,0x3a, +0xab,0xaa,0xbe,0xd3,0x1d,0x9d,0xad,0x3d,0x34,0x9f,0xb1,0x35, +0xb7,0xb0,0x32,0xb4,0x73,0x2d,0x74,0xcd,0x77,0xcd,0xaf,0xab, +0xa8,0xae,0xae,0xa8,0xa7,0xf9,0x8c,0xa7,0xb3,0x9b,0xbb,0xb3, +0xb7,0x75,0x91,0x75,0xa1,0x45,0xa1,0xab,0x3d,0x7f,0x3a,0xe4, +0x74,0x48,0x73,0xb0,0x8d,0xb7,0x99,0xbf,0x7e,0x10,0x8d,0x2b, +0xf9,0x70,0x93,0xf4,0x09,0x9b,0xbb,0x31,0x77,0x08,0x1c,0xbb, +0xd0,0x71,0x00,0xa2,0xba,0x30,0xaa,0x57,0xcb,0x14,0x33,0x7b, +0x4f,0xb0,0xd9,0x29,0x91,0xc5,0x91,0x85,0x11,0x85,0xca,0xb0, +0xa9,0x17,0x5b,0x19,0x6a,0xdf,0x34,0xc3,0x32,0xa4,0x20,0xe6, +0x90,0xa9,0xae,0xba,0x45,0x1b,0x05,0x31,0xe5,0xf5,0xd5,0x95, +0x75,0xdc,0x4b,0x26,0x27,0x20,0xd7,0x3f,0xdb,0x8f,0x8b,0x32, +0x45,0x0f,0x0b,0xf0,0x30,0x42,0x7d,0x0b,0xd0,0xd7,0xc7,0x93, +0xe6,0xc2,0x62,0x13,0xec,0x5f,0x80,0xac,0x39,0xb0,0x5a,0x63, +0xaf,0x28,0xbd,0x00,0x52,0xa1,0x67,0x0b,0xda,0x32,0x39,0x66, +0x12,0xd0,0x64,0xba,0x15,0xed,0x53,0x6f,0x03,0xd3,0x8d,0xcc, +0x85,0xb1,0xd7,0x57,0x2c,0x5a,0x0a,0x76,0x24,0x35,0x2f,0x35, +0x37,0x39,0xcf,0x28,0x8b,0xf7,0xd7,0x73,0xd1,0x33,0x33,0xeb, +0x74,0xe3,0x4b,0xcb,0x8a,0x2a,0xf2,0x2a,0xb9,0xef,0x99,0x42, +0xef,0x7c,0xaf,0x02,0xb7,0xde,0x52,0x3e,0xb2,0x24,0xa2,0x30, +0xbc,0x90,0x22,0x9e,0x5e,0x06,0xbf,0x42,0x17,0x62,0x84,0x99, +0x03,0xd4,0xd5,0x2e,0xa4,0x18,0x23,0x73,0x88,0xfd,0x05,0x13, +0x09,0xc6,0x0c,0x42,0x0c,0x03,0x57,0x29,0xc8,0x48,0x1d,0x84, +0x54,0x06,0xaf,0xce,0xa3,0x1a,0x13,0x73,0x81,0x85,0xde,0xe9, +0x90,0xaa,0x85,0xa9,0x8c,0x12,0xcc,0x95,0xcf,0x21,0x77,0x58, +0x78,0x2f,0x15,0xf8,0x82,0xc7,0xd5,0xde,0x5d,0xfc,0x06,0x0f, +0xfc,0x34,0x08,0x55,0x63,0x38,0x6c,0x60,0xd1,0x2a,0x0a,0x17, +0xd8,0xe2,0xc7,0xd2,0x0e,0xc7,0x56,0x05,0x0f,0xcd,0xe2,0x78, +0xb0,0x54,0x86,0x3b,0x60,0xc8,0xc0,0xbe,0x5f,0x88,0x38,0x85, +0x75,0xce,0xf3,0xdc,0x60,0xb1,0xdc,0xf0,0x80,0x32,0x44,0xe0, +0x1d,0xd1,0xae,0x03,0x8e,0xf6,0xa0,0x47,0x1b,0x78,0xf4,0x8e, +0xbd,0x0e,0x50,0xa8,0xa4,0x60,0x10,0xaa,0x63,0x6a,0x33,0x72, +0x1b,0x14,0x6d,0x21,0x2b,0x3c,0xcf,0xdd,0xec,0x79,0x51,0xfd, +0x44,0x19,0xe5,0xd4,0xef,0x65,0x1b,0x4a,0x7e,0x63,0x9a,0xf2, +0x15,0x04,0x91,0x6d,0x68,0x62,0xc2,0x82,0xef,0x74,0x58,0x25, +0x4e,0x66,0xec,0xf2,0x3d,0x57,0x99,0x2d,0x30,0xd5,0x56,0x6e, +0x70,0x18,0xbe,0xd3,0xfd,0xaa,0xf2,0x5b,0x65,0xf1,0x3d,0xaa, +0x55,0x39,0x86,0x92,0xdf,0xdf,0x52,0x4d,0xb6,0xa1,0x33,0xfb, +0x2b,0xbe,0x4f,0x7c,0x37,0x59,0x2f,0x31,0x3f,0xd4,0xe2,0xc4, +0xf7,0xdd,0xee,0xf8,0xa1,0xec,0x1b,0xaa,0x5e,0xa9,0xc4,0x67, +0x93,0xd5,0x12,0x0b,0xed,0x66,0xfa,0xbb,0x9b,0x9d,0xdf,0x97, +0x7f,0xcb,0x89,0xd1,0xb8,0x98,0xfc,0x0a,0x65,0x73,0x59,0x74, +0xc2,0x8d,0xa4,0x07,0x3f,0x35,0x63,0x9e,0xc1,0xa7,0xa4,0x17, +0x3f,0x35,0x65,0x9e,0xd3,0x83,0x01,0xfc,0xd4,0x88,0x79,0xfb, +0x99,0xd7,0x1a,0x2c,0xfc,0x86,0xbe,0x9c,0xd4,0x83,0x93,0x6b, +0x2e,0x7e,0x03,0x85,0x8a,0x97,0xb1,0xef,0xef,0xd1,0x8c,0x62, +0x04,0xc3,0xe8,0x74,0xea,0xfb,0xa6,0x42,0x1a,0x9b,0x6f,0x20, +0xf9,0x9a,0x79,0x50,0xd7,0x72,0x39,0x43,0x96,0x79,0x3d,0x11, +0xa6,0x9c,0x84,0x99,0x9c,0xb8,0x93,0x49,0xa3,0x38,0x37,0xa5, +0x40,0x2f,0x8f,0x77,0x5f,0xba,0x63,0xce,0x36,0x8d,0x36,0x2b, +0x3e,0x37,0x3b,0x37,0x37,0x37,0x8f,0xc3,0x6f,0xd8,0xcd,0xe5, +0x3e,0x5f,0x49,0x85,0x85,0x4c,0x6f,0x5e,0x51,0xa7,0xec,0x07, +0x56,0x9b,0xfa,0xcf,0x0f,0x59,0xf1,0xa6,0x90,0x4e,0x4c,0x9b, +0xb7,0x75,0xe8,0x54,0xb8,0x98,0xf0,0x23,0x9e,0xd7,0xec,0x87, +0xed,0x38,0xe1,0xce,0x00,0x59,0x7b,0x02,0x25,0xd1,0x9a,0x52, +0xcb,0xd8,0xf0,0x20,0x13,0xd5,0x83,0x10,0x87,0x67,0x99,0xc2, +0xf2,0x82,0xca,0xbc,0x2a,0x45,0x25,0xee,0x47,0xe4,0xba,0xcb, +0x05,0xb7,0x2b,0xe6,0x0d,0xbd,0xfc,0x81,0x2e,0x8d,0xa6,0x03, +0x75,0x1c,0xfc,0x82,0x56,0x04,0x66,0x42,0x30,0xd2,0x88,0x39, +0x88,0xe7,0xc9,0xa3,0x9b,0x34,0xdf,0xed,0x7f,0x64,0x51,0xcf, +0xeb,0xac,0x5f,0x33,0x6f,0xc7,0x41,0xaa,0xee,0x31,0xf2,0xf9, +0x8a,0xa5,0x5e,0x9e,0x02,0xab,0x73,0x61,0x7a,0x8d,0x82,0x4a, +0x4a,0xc9,0x0b,0x57,0x87,0xa1,0x4e,0xcc,0x18,0x95,0xd4,0xc1, +0x48,0x5c,0xe7,0x82,0x53,0xa5,0x91,0xf7,0x82,0xbe,0x0a,0xbb, +0x60,0x16,0xc1,0x67,0xd8,0x67,0x9a,0xa4,0x1b,0xfb,0x1d,0xf5, +0x8b,0xf5,0x3d,0xca,0x81,0x33,0x4c,0x15,0xa6,0xe3,0xd4,0x37, +0xcd,0xac,0x3f,0x12,0xa7,0xc3,0x47,0x18,0xc0,0x1a,0x46,0xeb, +0x1f,0xd6,0x3d,0x92,0xa1,0xa5,0xa0,0x51,0x7b,0x59,0xfc,0xac, +0x2a,0x31,0x20,0x21,0x30,0x21,0xb8,0x36,0x8d,0x3f,0x1e,0x1d, +0x17,0x1d,0x77,0xb8,0xcb,0x9a,0xef,0x07,0xe5,0x72,0xd0,0x4d, +0x00,0x47,0x8e,0xe6,0xc3,0xb6,0xcc,0x68,0xab,0x2b,0xb9,0x83, +0xb5,0xbb,0x18,0xb0,0x80,0x5a,0x82,0xb5,0xdb,0xa1,0x56,0xc1, +0x8b,0xf5,0x01,0xf9,0x4d,0x78,0x7f,0x0e,0x8b,0xd7,0xc4,0x07, +0x04,0x7c,0x1e,0x8c,0x11,0x50,0x3d,0x44,0x93,0x6e,0x05,0x19, +0xd5,0x06,0x4d,0x85,0x12,0xb5,0x31,0xfd,0xe9,0x99,0x03,0x32, +0x41,0x22,0xee,0x56,0xd0,0x50,0x4d,0x81,0x62,0xb2,0x0d,0x26, +0x3f,0x60,0x7a,0xa6,0x3f,0xc4,0xc9,0x5b,0x19,0xf8,0x68,0x3a, +0x4c,0xfe,0x5c,0x41,0x26,0x29,0xdc,0x93,0x7f,0x4c,0xee,0xc3, +0xae,0xed,0xe7,0xee,0xc3,0xfc,0x01,0x9c,0x7f,0x45,0x67,0x3f, +0xee,0xba,0xa2,0xbb,0x1f,0x29,0xd6,0x9d,0xb9,0x9d,0xc5,0x50, +0x51,0x46,0x32,0x1c,0x32,0x4d,0xd2,0x4c,0x7c,0x63,0x7d,0x62, +0x7d,0xe8,0xc8,0x1c,0xff,0x4b,0x82,0xb8,0x3f,0xf3,0x7f,0xf8, +0xfb,0xc0,0xfa,0x14,0xfc,0x70,0xfe,0xbf,0x86,0xdc,0xe4,0x40, +0x84,0x06,0xd2,0xb9,0xfe,0x0b,0x0d,0x98,0x64,0x56,0x3e,0xc8, +0x2f,0x68,0xd9,0xd7,0x61,0x77,0x91,0x03,0xdd,0x7e,0xea,0x2a, +0x52,0x8b,0x53,0x4a,0x92,0xca,0x74,0xd3,0xf8,0xa3,0x9e,0xb1, +0x3e,0x87,0xfd,0x38,0xf4,0x30,0x06,0x5d,0xc6,0xe6,0xc0,0x7e, +0xab,0x25,0x8e,0xe5,0x34,0xc7,0x66,0xba,0x1f,0x8e,0xf4,0x3c, +0xe5,0xc4,0xdc,0x27,0xff,0x99,0x0b,0xce,0x18,0xfb,0x08,0xac, +0xea,0xc3,0x55,0x2f,0xf4,0x96,0xe1,0x0a,0x13,0x58,0x81,0x13, +0x86,0x19,0x53,0x77,0xe2,0x7e,0xcc,0xe3,0xa8,0x7b,0x1c,0x77, +0x2a,0xf7,0x54,0x5e,0xbe,0x4a,0xb7,0xae,0x39,0x1b,0x78,0x32, +0xe8,0x64,0xb0,0xd4,0xe5,0x98,0x73,0x9c,0x4b,0x5c,0x86,0x11, +0x5f,0x99,0x50,0x99,0x58,0x99,0x18,0xa5,0xe5,0x63,0x65,0x6a, +0x7f,0xda,0x92,0x3f,0xdf,0x57,0x37,0x92,0xfd,0xd5,0xef,0xf9, +0x3c,0xd5,0x56,0x15,0x32,0x0b,0xc7,0x19,0xc1,0x38,0xd4,0x3f, +0x07,0xfa,0xf0,0xde,0x00,0xbe,0xf7,0x9a,0x7d,0x43,0xa3,0x77, +0x03,0xb6,0x1f,0x3c,0x77,0x69,0x8c,0x46,0xef,0x9e,0xce,0x0e, +0xdc,0x7e,0x4f,0x77,0xc7,0x18,0x8d,0x9e,0xfa,0xff,0x18,0x8d, +0x9e,0x30,0x0e,0xc2,0x49,0xe3,0xe6,0x87,0xbb,0x81,0xd5,0xa9, +0x1e,0xe0,0x57,0xb4,0xab,0x9d,0x71,0x19,0xe1,0x40,0xad,0x7f, +0x1b,0x53,0xd2,0x62,0x57,0xa2,0x5f,0x64,0x9d,0xa1,0xec,0x6b, +0xd3,0x11,0xdd,0xe7,0xdf,0x1c,0xa2,0x8c,0x36,0x4c,0x7a,0x4d, +0x72,0x7d,0xe2,0x1b,0x1a,0xbd,0x23,0x0e,0x51,0x6f,0x68,0xf4, +0xf6,0x31,0xf6,0x7b,0x0f,0x1a,0xaf,0xb1,0xab,0x32,0xe1,0x5f, +0x0f,0xdc,0xbb,0xda,0xfe,0x9c,0x13,0xb3,0xff,0x1d,0x8d,0xde, +0x12,0x51,0x95,0x04,0x1e,0x0d,0x38,0x16,0x78,0x4c,0xc1,0x9e, +0x5b,0x5d,0xaf,0xd2,0xae,0x6d,0xad,0x20,0xd2,0x3b,0xee,0x26, +0xb5,0x8b,0xb1,0x8f,0xb1,0x8b,0xcd,0x30,0xe4,0xeb,0x93,0xeb, +0x52,0xeb,0x53,0x22,0x37,0x7b,0xea,0x1a,0x9a,0x74,0x5a,0xf3, +0x23,0x97,0x1b,0xee,0x64,0xc3,0xb8,0xf2,0x94,0xf2,0xe4,0xf2, +0x14,0xee,0x27,0xd8,0x41,0x70,0xd1,0x46,0xa3,0xc7,0x6f,0xf8, +0xf5,0x66,0x0c,0xd0,0x54,0x92,0x86,0x77,0x21,0x9d,0x1a,0xce, +0x5d,0x16,0x16,0xa4,0xc0,0x92,0x5c,0xf8,0xa8,0xda,0x93,0x1a, +0xce,0xbb,0x5e,0xb8,0x24,0x1c,0x35,0xa8,0xe1,0x54,0xb3,0xe8, +0x1d,0x82,0xda,0xa6,0xa8,0x22,0xed,0xb4,0x94,0xf4,0x82,0x4a, +0x25,0xd5,0x6c,0x33,0x15,0x61,0xb5,0x42,0xd9,0x3f,0xc5,0x2e, +0xf2,0x33,0x4c,0xea,0xc5,0x49,0xdf,0xc3,0xa4,0x3e,0x9c,0xf4, +0x02,0xa6,0xf5,0xe1,0x53,0x31,0x0c,0x3a,0x58,0xfc,0xe0,0xc4, +0xfa,0x58,0x3d,0xa9,0x6e,0x6c,0x64,0x94,0x89,0xaa,0xa6,0x02, +0xda,0x9e,0x67,0x6e,0x97,0x54,0x3c,0xca,0x90,0xa5,0xdd,0x49, +0xf8,0x05,0x16,0xab,0x60,0x2b,0x74,0x93,0x17,0xbf,0x2f,0x63, +0x67,0xd3,0xa4,0xe4,0xfb,0xdf,0x97,0xb0,0xd0,0x1c,0x4d,0x7e, +0x87,0xbf,0x66,0xb3,0xa3,0x51,0x28,0x25,0x3f,0xff,0x3e,0x9f, +0x85,0x3e,0x51,0x93,0xf4,0x82,0xcf,0xad,0x31,0x7b,0xb9,0x3d, +0x66,0x2f,0xf7,0x70,0x83,0x0e,0x43,0xed,0xa5,0x85,0xe9,0x4f, +0xcb,0xec,0x97,0x09,0x8c,0xb8,0x8a,0xed,0x35,0xa3,0xb3,0x35, +0x99,0xce,0xd6,0x7b,0x30,0x99,0xdc,0xc6,0xc9,0xbb,0xdf,0x1c, +0xdd,0xc3,0xc9,0x3b,0x18,0xd1,0xc2,0x8c,0xc4,0x76,0x86,0xf7, +0x47,0xb4,0x39,0x44,0xf3,0xd9,0x56,0x99,0x66,0xa9,0xa6,0xdc, +0x3c,0x50,0x26,0x99,0x3a,0x99,0xfb,0x92,0x77,0xb4,0xa7,0xf3, +0x47,0xaf,0x46,0x3c,0x8a,0x1c,0xe4,0x28,0x24,0x1e,0x22,0xc5, +0x9f,0xe7,0xbe,0x4e,0x86,0x77,0xcc,0x52,0xf8,0xa3,0x73,0xc3, +0x66,0x07,0x6e,0xe3,0x60,0x02,0x94,0x92,0xd4,0x5d,0x09,0x4b, +0xe2,0xd7,0x77,0xa5,0xf1,0x27,0x1f,0xc5,0xbe,0x8a,0xb9,0xc5, +0x29,0xfd,0x35,0x9e,0x06,0x1f,0x33,0x46,0x3f,0x3a,0xeb,0x82, +0x8c,0xce,0xc6,0x6e,0x38,0x8d,0xf6,0x6c,0x41,0x43,0x5e,0x73, +0x76,0x0b,0x07,0xe1,0x0c,0xee,0x3b,0xb1,0xe4,0xe8,0x1a,0xe9, +0xa1,0xb8,0xe8,0x20,0x2b,0xd5,0x83,0x4c,0xa6,0xbe,0xe4,0x1c, +0x73,0xa3,0xbe,0xf6,0x87,0x14,0x59,0xca,0x8f,0xf1,0xbf,0x43, +0x90,0x0a,0x96,0x31,0xa9,0x35,0xa9,0x35,0xc9,0x75,0x7a,0x39, +0x7c,0xd0,0x0c,0xa7,0x45,0x06,0x9b,0xbb,0x2c,0xf9,0x84,0xc4, +0xf8,0xc4,0x84,0x24,0x4e,0xb4,0x60,0x17,0x15,0x79,0xbf,0x92, +0x82,0x16,0xd3,0x97,0x5f,0xd0,0x2b,0x03,0x89,0xa2,0xc7,0xa4, +0x78,0x1b,0xce,0x90,0xa4,0xf8,0xcf,0x92,0x8e,0x4b,0x61,0x3b, +0x7e,0x58,0xdb,0x81,0xeb,0x80,0x8d,0x48,0x8f,0x89,0x3f,0x1c, +0xa9,0x7c,0xf8,0x4d,0x49,0xba,0xeb,0x00,0xba,0x5e,0xd1,0xdf, +0x8f,0xd6,0x46,0x60,0x8d,0xca,0xcc,0xba,0x85,0xeb,0xf1,0xbd, +0x83,0xd2,0x0a,0x53,0x60,0xae,0x5c,0x1c,0x48,0xbd,0xaf,0x9c, +0x82,0x9b,0x19,0xcf,0x74,0x87,0x9d,0x06,0x5a,0x1b,0x4d,0x95, +0x6b,0x2c,0xfb,0x6a,0x4e,0xd7,0xd5,0x35,0x2b,0x83,0x19,0x13, +0x68,0xe7,0xee,0x64,0xe7,0x6a,0x5b,0x62,0x5b,0x68,0x53,0xe0, +0x6a,0xc3,0x37,0x86,0xd0,0x7f,0x41,0x3a,0x4e,0xbb,0xdd,0xd7, +0xf8,0x16,0x1b,0xf1,0x3f,0x57,0x7f,0xd9,0x78,0xb5,0xa7,0xdf, +0x63,0xc0,0x6d,0xc0,0xb1,0xb6,0x87,0x37,0xa9,0xb3,0xa8,0xb2, +0x2a,0xef,0x68,0x6d,0xec,0x2e,0x1f,0xe6,0xba,0x30,0x90,0xe2, +0x82,0xf4,0xfc,0xf4,0x7c,0xae,0x81,0x41,0x13,0x61,0x22,0xf1, +0x65,0x0d,0x83,0xec,0x0d,0x5c,0xa4,0x95,0xb6,0x8d,0x65,0x45, +0xa5,0x39,0x25,0xca,0x09,0x49,0xa7,0x3e,0x4b,0x3a,0x36,0xa4, +0xcd,0xd7,0xd5,0x99,0x0e,0xc4,0xa4,0x1f,0x4d,0x88,0x8e,0x56, +0x8e,0x89,0x89,0x53,0x54,0x90,0x27,0x55,0xd6,0xa8,0x14,0xb1, +0x50,0xb1,0x80,0xd0,0xb7,0xe9,0x05,0x49,0x55,0x55,0x2a,0x85, +0xa6,0xfe,0xac,0x49,0x90,0x83,0x81,0xab,0xb4,0xca,0xae,0xbe, +0xb8,0xa8,0x24,0xbb,0x58,0x39,0x71,0xac,0xa0,0xfc,0xc6,0x2e, +0xbe,0xbe,0xfe,0xe0,0xe5,0x98,0xf4,0x63,0x8a,0x82,0x72,0xe8, +0x59,0x4f,0x70,0x1f,0x7e,0x00,0xfb,0xa8,0xf6,0xd6,0x08,0x14, +0x42,0xbe,0xde,0x8b,0xaf,0xd9,0xeb,0x62,0xd5,0xdb,0x23,0x25, +0xa1,0x4e,0xe8,0x24,0xd0,0xb9,0x1b,0x3b,0xe9,0xb1,0xf6,0xdf, +0x8f,0x21,0x7d,0xfa,0xdb,0x5f,0xca,0x3b,0x60,0x23,0x81,0x73, +0xa2,0xb8,0x5f,0xe8,0xc4,0x58,0x9a,0xe3,0xbe,0x2f,0x7c,0x48, +0xe4,0x7b,0xc5,0x35,0x12,0xf9,0x5d,0xd6,0x7e,0x34,0x85,0x62, +0x12,0xf8,0x55,0xb8,0x03,0xbf,0x49,0x94,0xfe,0x7a,0x5f,0x98, +0x4c,0x46,0xc7,0xfe,0x74,0x87,0x6d,0x19,0x4d,0x26,0xc2,0x5d, +0xf8,0x55,0xa4,0x3f,0x12,0x25,0xf9,0x97,0xd0,0x4e,0xf0,0x7b, +0xfc,0x15,0xbf,0xa7,0x6f,0xc1,0x41,0xc8,0x83,0x02,0x31,0x8f, +0x71,0x10,0x82,0x09,0xea,0x8a,0x05,0xb8,0x92,0x81,0x24,0x4c, +0x87,0x24,0x48,0x97,0x8c,0xb5,0xdd,0xfd,0xc0,0x90,0x60,0x81, +0x90,0xa7,0xa8,0x33,0xa7,0x17,0x00,0xbd,0x50,0xa2,0x38,0x7e, +0xaf,0x59,0x41,0x21,0x9c,0x8e,0xf4,0x5c,0x09,0xac,0x14,0x0b, +0x40,0x57,0x28,0x60,0x94,0xfe,0xda,0x4c,0x63,0x27,0xd2,0xfb, +0xa1,0x03,0x8b,0xbf,0xbd,0xb9,0x80,0x9e,0xce,0x3a,0x2a,0x20, +0x77,0x06,0xbd,0x80,0xfe,0xd0,0xd3,0x05,0x7a,0xba,0x58,0x40, +0x87,0xf9,0xa5,0xdc,0x91,0x00,0x95,0x04,0x7f,0xc3,0xef,0xa9, +0x2c,0x22,0x95,0x45,0xc8,0x67,0xc5,0x10,0x07,0x2a,0x8b,0x40, +0x65,0x61,0x21,0x83,0x4a,0x43,0x7f,0xa8,0x2c,0x74,0x02,0xae, +0xca,0x8f,0x90,0xca,0xfc,0x10,0x2f,0xd9,0xa8,0x94,0xf5,0x0a, +0x09,0xf1,0x92,0x8e,0x4a,0x19,0xaf,0x90,0xfc,0x4a,0x99,0x5c, +0xca,0x56,0xe6,0xe7,0x57,0x4a,0x63,0x47,0xf5,0x88,0x7c,0x89, +0x7c,0xc9,0xe8,0x12,0x2a,0xb9,0x7e,0x2c,0x69,0x64,0x3d,0x93, +0xd7,0xe7,0x39,0x9f,0x8f,0xff,0x51,0xd9,0xba,0xae,0xcb,0xef, +0x92,0xea,0xeb,0xaf,0xbf,0xfe,0x1d,0xb8,0x65,0x4f,0xf0,0x9d, +0x10,0x59,0x4a,0x5e,0x72,0x71,0x99,0x0a,0x8c,0x5b,0xf7,0x04, +0x39,0xe4,0xd6,0xad,0xc7,0x71,0x7e,0x49,0x01,0xc9,0xa1,0xd2, +0x19,0xf9,0x4b,0x36,0xe0,0xbb,0x2a,0xb3,0xbf,0x5e,0x0b,0xe3, +0x2e,0x74,0x95,0xb6,0xd7,0x4b,0xe3,0x97,0xb8,0x1c,0x5a,0x17, +0xea,0x71,0x94,0x77,0x62,0xbf,0x6a,0x20,0x0f,0xca,0x0a,0x6e, +0x5d,0x52,0x39,0xc7,0x16,0x04,0xa4,0x46,0x84,0x49,0x03,0xfd, +0x24,0xae,0x5e,0x36,0x81,0xe6,0xaa,0x6b,0xf7,0xde,0x78,0xf2, +0xd5,0xf0,0x95,0x2f,0x73,0x0b,0x8f,0x1d,0x4f,0x93,0x15,0x1e, +0xcd,0xc9,0x8f,0xc9,0xe7,0x62,0xb3,0x22,0x6b,0xaa,0x55,0x9e, +0xdd,0xba,0xf2,0xfc,0xf9,0xad,0xfd,0x2b,0x3d,0x22,0x3d,0x8e, +0x44,0x4a,0x0f,0x87,0x64,0x87,0x14,0x27,0x71,0xf1,0xa9,0x85, +0x49,0xb9,0xaa,0x4f,0x86,0x0e,0xac,0x5b,0xbf,0x4f,0x7d,0xbd, +0xa9,0x5d,0x51,0xad,0xa7,0x2c,0xa0,0x4c,0x12,0x91,0x1b,0x70, +0x24,0x58,0x45,0x87,0xd5,0xc8,0xdb,0xfb,0xd0,0x57,0xaa,0x24, +0x1c,0x8f,0x25,0xf0,0x02,0x7e,0x96,0x74,0x74,0x14,0x0d,0x0f, +0xab,0xc0,0xfb,0x0b,0x7e,0xc1,0x77,0x75,0xf4,0xfc,0xad,0x6d, +0xa4,0x6e,0xae,0x6e,0x75,0x92,0x76,0x1b,0xdd,0x12,0x5d,0x55, +0x7c,0x77,0xc1,0x7c,0xfc,0x40,0xbf,0x48,0xb7,0xc3,0x4a,0x06, +0x2f,0xb0,0x83,0xe0,0x39,0xb8,0x24,0xb1,0x6f,0x09,0xec,0xeb, +0x51,0x79,0xf5,0xc5,0x93,0x1f,0x3a,0x7b,0x82,0x9d,0x1a,0xa4, +0x17,0x0e,0x5e,0xb8,0x24,0x69,0xa8,0xeb,0x2b,0xec,0x54,0xfd, +0xe9,0xd1,0xda,0x45,0xa6,0x81,0xa6,0xf6,0xf6,0x32,0x25,0xb9, +0x01,0x0d,0x07,0xac,0x47,0xf2,0x86,0x3c,0xa7,0x0b,0xf1,0xaf, +0x94,0xf5,0xdb,0xfa,0x03,0x86,0x55,0x7f,0x7b,0xf8,0xd5,0x0f, +0x9d,0xa1,0x9d,0x8e,0x4d,0x32,0xfc,0x1a,0x9e,0xe3,0x37,0xf8, +0x5c,0xe2,0xe4,0x18,0x62,0x69,0xa9,0xb2,0xf0,0x8b,0x0d,0x3f, +0x0f,0xf7,0x17,0x0f,0xb5,0x49,0xe3,0x17,0xbb,0x1c,0x7c,0x3b, +0x29,0xdf,0x35,0x90,0x1b,0x95,0x85,0x57,0xaf,0xab,0xf4,0xb2, +0x39,0x31,0xa9,0xd1,0xb1,0x47,0x8e,0x1f,0x39,0x2a,0xd5,0x33, +0x77,0xf4,0xd7,0x51,0xdd,0xb6,0xff,0xf2,0xa3,0xc6,0x9c,0xe6, +0x8a,0x4a,0x19,0x5c,0x80,0x4b,0x70,0x1e,0x2f,0x49,0x2a,0x3d, +0xb3,0x1d,0x9d,0x54,0xb6,0xec,0x3f,0xb0,0x4d,0xdb,0xa9,0xe4, +0xac,0xb9,0x34,0x25,0x36,0x36,0x21,0x56,0x35,0xea,0x48,0x4c, +0x84,0xcc,0x94,0xdd,0x5b,0xa8,0x71,0xc3,0x4b,0xaa,0xf4,0xd7, +0xa7,0x54,0xb7,0xc5,0x85,0xa2,0xa6,0xb8,0x40,0x38,0x24,0x2c, +0x10,0x34,0x25,0xf8,0x07,0x75,0xac,0xf0,0x87,0x38,0x0d,0xfe, +0x10,0xa6,0xe1,0x1f,0xc2,0x54,0xaa,0xe5,0x3a,0x72,0x19,0x41, +0x15,0xe6,0x6c,0xa7,0xa4,0xa7,0xa9,0xb0,0xba,0x51,0xa5,0xcf, +0xb1,0x46,0xd7,0xd8,0xd1,0xc7,0x32,0x52,0xda,0x19,0x26,0xa9, +0xce,0xc8,0xcd,0x2c,0x57,0xad,0xc8,0x89,0xf4,0x97,0x1d,0x63, +0x03,0x23,0x03,0x3d,0xfd,0xa5,0x4b,0xb7,0x4b,0x2c,0xc0,0x9c, +0x1d,0x75,0x1a,0x1d,0x47,0xee,0x0f,0xf4,0x3d,0x28,0x97,0x99, +0xd5,0x4a,0x0e,0x05,0x3a,0xb9,0x99,0xaa,0xaa,0xb9,0x3e,0xfa, +0x49,0xf6,0x39,0xfb,0x53,0xdd,0xa3,0x5b,0x3d,0x35,0x6e,0x7a, +0x39,0xd2,0xc1,0x2a,0xc9,0x5d,0x3f,0x8b,0xfe,0xad,0xaa,0xc8, +0xec,0x59,0x80,0x07,0xf0,0xe0,0x8d,0xf9,0x0a,0x02,0xb8,0xd4, +0x2c,0x22,0x4c,0x61,0x6f,0x35,0x37,0xb4,0xf6,0xe7,0xda,0x2e, +0x94,0xe2,0xaf,0xf7,0x15,0x6f,0x9b,0x1a,0xda,0x06,0xde,0xbe, +0x05,0x91,0x85,0x8f,0xed,0x46,0x36,0xea,0x39,0xda,0xeb,0x87, +0x4b,0x4f,0x30,0xd7,0x23,0xad,0xca,0xcd,0x54,0x4d,0x9c,0x5d, +0x4d,0x82,0x65,0x71,0xb7,0xb6,0x8b,0xcd,0xd4,0x4a,0x74,0x84, +0xdf,0x49,0x07,0xaa,0xb0,0xff,0x4f,0x82,0xb3,0xe2,0x1f,0xe2, +0xef,0x04,0x0e,0xb0,0x97,0x1e,0xc3,0x54,0xcc,0x97,0x3c,0x66, +0x70,0x2d,0xdc,0x87,0x79,0xe0,0x29,0x59,0xcb,0xe0,0x66,0x4c, +0x95,0xc4,0x09,0x51,0xdb,0x47,0xf3,0x19,0x41,0x67,0xba,0x42, +0xa6,0x86,0x86,0xa6,0x9e,0xcc,0x7f,0x88,0x58,0xdb,0x70,0xba, +0x27,0xeb,0x9f,0x44,0x74,0x1c,0xd9,0x6a,0xe0,0xf6,0x37,0x11, +0xed,0xca,0x2d,0x55,0x2d,0xdc,0xfe,0x49,0x44,0xf9,0xa0,0x3c, +0x9b,0x58,0x35,0xb2,0x0d,0x39,0x87,0xfd,0x64,0x71,0xac,0x6f, +0x48,0x84,0x9b,0x4f,0x48,0x7a,0x45,0x88,0xd4,0xce,0x43,0xe2, +0x9f,0x5f,0xe9,0x35,0xac,0x7a,0xa9,0xb5,0xb6,0xb7,0xc1,0xbf, +0xd4,0x39,0x5e,0x96,0xcc,0xd6,0xc6,0x17,0x97,0xd4,0xaa,0xb4, +0x3b,0x54,0xe9,0xda,0xb8,0x86,0xba,0x05,0x4a,0x9b,0x3d,0x24, +0xa5,0x99,0x79,0x19,0x15,0xaa,0x15,0xb9,0x51,0x41,0xb2,0xe3, +0x6c,0x60,0x48,0x94,0xbb,0x54,0x14,0x46,0x2b,0xfe,0xff,0x9c, +0x75,0x79,0xd1,0xff,0xfc,0x90,0x7e,0x1c,0xcd,0x26,0xc2,0x7b, +0xec,0xed,0xcb,0xf5,0xd7,0x1e,0x37,0x9b,0x2c,0x90,0xe2,0x57, +0x9f,0x2b,0xde,0x8e,0xd4,0x5f,0x7b,0xd2,0x6c,0xbc,0x50,0xf1, +0x16,0x7e,0xa1,0x82,0xed,0xbf,0x8b,0x13,0x97,0x1b,0x98,0x68, +0x05,0x51,0xc9,0x1e,0x7a,0xee,0xaf,0xdd,0xad,0xba,0xce,0xc1, +0xd2,0x80,0x4a,0xf1,0xcd,0xe6,0x31,0x7d,0x90,0xc0,0x56,0x72, +0xc0,0xd3,0xd1,0xfc,0xa0,0xaa,0xbe,0x6b,0xe3,0x0b,0x59,0x17, +0x0b,0x33,0xe0,0xa3,0x7b,0xc0,0x80,0x4c,0xb1,0xc3,0x7e,0x64, +0xd1,0xfa,0x43,0x26,0xb8,0x48,0x8a,0x5f,0xb0,0x5e,0xfe,0xce, +0x81,0x9e,0x41,0x0d,0xba,0x7c,0x41,0x56,0x61,0x56,0x61,0x2e, +0x17,0xc5,0xce,0x18,0xdc,0xf5,0xeb,0xab,0x91,0x2b,0x8f,0x1b, +0xa4,0xe2,0x63,0x39,0x21,0x78,0x25,0x8e,0xed,0x0b,0xb7,0x6c, +0x51,0x53,0x9d,0xa9,0xbd,0x04,0xb5,0x51,0xeb,0xfc,0xd2,0x3f, +0x6e,0x76,0x35,0xf7,0xe7,0xc8,0x12,0xb7,0xdd,0x97,0xe7,0x32, +0x10,0x8e,0xfb,0xc9,0x4f,0x35,0x95,0xa7,0xdb,0x2a,0xbd,0x76, +0x4a,0x43,0xd8,0x65,0xc6,0xcb,0x56,0x2e,0x97,0xe2,0x45,0x8a, +0xc7,0xd4,0x2d,0x6d,0x0f,0xed,0xb1,0x3a,0xf7,0xab,0xf4,0x67, +0xf6,0x97,0x8e,0x73,0x37,0x2f,0x76,0xda,0xee,0xa1,0xee,0x27, +0x3f,0x8a,0x8c,0xdd,0x5e,0xa6,0x55,0x2f,0xf9,0x6f,0x88,0x28, +0xdd,0x24,0xfc,0xf6,0x9f,0x9f,0xab,0x24,0xb7,0xff,0x1f,0xba, +0xbd,0xd8,0x9e,0x49,0x40,0x8d,0xbd,0xf5,0x04,0xb6,0x62,0x96, +0xe4,0x19,0x83,0xf6,0x70,0x03,0x4c,0x20,0x50,0xb2,0x5c,0xd1, +0xdd,0xec,0x90,0xd6,0x66,0x6a,0x1c,0x71,0x5b,0x47,0x73,0x19, +0xe1,0xb4,0xf0,0xfc,0xdf,0x08,0x02,0xb3,0xde,0xda,0x4c,0x73, +0xef,0xbf,0xd8,0x4c,0x6b,0xef,0xbf,0xda,0xcc,0x16,0xfd,0xbf, +0xdb,0x8c,0xad,0xc2,0x66,0x5c,0xff,0xa1,0x60,0x72,0xa3,0x48, +0x02,0xef,0x5c,0xbf,0xf4,0xfb,0x97,0xd6,0xfd,0xb3,0x0b,0x64, +0x6e,0xc9,0x92,0x83,0x99,0x6e,0x45,0x83,0x2a,0x03,0x75,0xf5, +0x97,0x47,0x1a,0x5d,0x5d,0x8a,0xa5,0xdd,0x3d,0x92,0x41,0x07, +0xa3,0xda,0x6d,0xaa,0x8b,0x76,0x19,0xcf,0x9c,0x77,0xc5,0xfe, +0xdb,0x30,0x59,0xdd,0x51,0xc9,0x95,0xa8,0x62,0x37,0x2b,0x15, +0x1d,0x07,0x37,0x0d,0x2d,0xbb,0xaa,0x41,0x07,0xa9,0xb1,0xb9, +0xe4,0x40,0xfb,0x79,0xdb,0x6f,0x55,0x95,0xe4,0x11,0xf4,0x8e, +0x1f,0xde,0xa6,0x77,0xb4,0x3a,0x83,0x93,0xf2,0x64,0x36,0xc9, +0x92,0x3d,0xe9,0x6e,0x25,0x63,0xb7,0xbc,0x75,0xb3,0xcd,0xd5, +0xa5,0x4c,0x7a,0x86,0xde,0xd2,0xda,0xa0,0x76,0x8d,0x2a,0xbe, +0xb3,0x95,0xde,0xf3,0x96,0xed,0x8f,0x11,0xb2,0xf6,0xa3,0x92, +0x3b,0x87,0x8b,0x5c,0xe8,0x3d,0xed,0xdd,0x76,0xee,0xb5,0xa8, +0x1a,0xb4,0x96,0x1e,0xa2,0xf7,0x1c,0x18,0xb1,0x7d,0xa5,0x2a, +0x3e,0x41,0x2d,0x02,0xeb,0xd9,0xd8,0xa7,0x92,0x04,0xc6,0xb1, +0xb0,0x2a,0xe4,0x8c,0xea,0xd7,0xcd,0x7d,0xfd,0x45,0xb2,0xc4, +0xd5,0x0f,0x85,0x96,0xad,0xe2,0x07,0x8c,0xda,0x21,0x97,0x7d, +0x9b,0xed,0x7b,0x7f,0x94,0xc2,0xd3,0xad,0xa3,0x8a,0x2c,0x63, +0xcd,0x74,0xe1,0x7d,0xf6,0xd6,0x48,0xc3,0xd5,0x07,0x63,0x2a, +0xfd,0xf5,0x1b,0x95,0x3e,0x70,0x17,0xc7,0x6d,0xb5,0xb1,0xd7, +0xf2,0x96,0xbe,0x51,0x62,0xf9,0xd2,0xff,0x71,0x59,0x95,0x28, +0xd2,0xa2,0xe9,0x41,0x6b,0x22,0x6b,0x9c,0xd7,0xef,0xf0,0x40, +0x15,0xd8,0xcb,0x2f,0x41,0x0b,0xb4,0x0f,0x7c,0x8f,0xec,0x16, +0x53,0x7b,0x93,0x50,0x59,0xdc,0xa3,0xed,0xa3,0x47,0xe9,0xa3, +0xc1,0xe4,0x7f,0x7c,0x9e,0x5c,0xee,0x12,0x75,0xe3,0xd6,0x1b, +0x8a,0xcf,0x6c,0x6f,0xf6,0xb7,0xde,0x78,0xd4,0xab,0x33,0x4f, +0x3a,0x9f,0x9d,0x6b,0xaa,0xb3,0x85,0x1a,0x85,0xaa,0xdc,0x4b, +0xc1,0xa3,0x9c,0xa1,0x86,0x1f,0x4a,0x8e,0x33,0xa7,0x60,0xbc, +0x04,0x4a,0xb7,0x8e,0x7a,0x3d,0x84,0x50,0xf6,0x3e,0x7c,0x00, +0xea,0xf8,0xbb,0xe4,0x2b,0x06,0x5d,0x84,0x75,0x60,0x04,0x57, +0x25,0xf0,0x00,0x7f,0x20,0x17,0xd3,0x7a,0x7a,0x5e,0xd3,0xf0, +0xad,0x7b,0x71,0xb6,0x14,0xdd,0x46,0xbd,0x20,0x92,0xf9,0xe3, +0xe2,0x55,0xf8,0x04,0xd8,0xfd,0xe7,0xd5,0x93,0x64,0xfb,0xa0, +0x8e,0x5c,0xad,0x72,0xd0,0x92,0x19,0xb0,0xba,0x6e,0xf6,0x07, +0x14,0xac,0x43,0xa7,0x18,0x88,0x15,0x03,0x89,0xa6,0x9b,0xf9, +0x1e,0x29,0x4a,0xa1,0x1c,0x3e,0x61,0x6e,0xd6,0x5b,0x1e,0x90, +0x29,0xc1,0xdc,0x93,0x44,0xd8,0xc3,0x1e,0x83,0x59,0x92,0x24, +0xa6,0x03,0xa7,0x3d,0xc7,0x63,0xdf,0xc1,0xb1,0x76,0x98,0x46, +0xdf,0x1e,0xc3,0x59,0x12,0x71,0xcf,0x6d,0xb9,0xcf,0x16,0x76, +0x13,0x86,0x58,0xe1,0x54,0xc9,0x31,0xc6,0x0a,0xa6,0x6e,0x84, +0x10,0xc9,0x96,0x51,0x1f,0x46,0x88,0x39,0x45,0xc0,0xfd,0x5f, +0x9e,0x9c,0xc2,0xfe,0x8b,0x68,0x26,0xcc,0xc3,0x3d,0xe4,0x77, +0xe6,0x9f,0x65,0x99,0xc3,0xec,0x99,0x08,0xef,0xbe,0x79,0xb8, +0x3e,0xfb,0x46,0x9e,0xf7,0x19,0x25,0xc8,0x8b,0x22,0x5f,0xb5, +0x0d,0x5c,0xc8,0x95,0x25,0xcc,0xbb,0x2c,0x30,0xa8,0xa9,0x03, +0x13,0xb6,0x31,0x33,0x1d,0x0f,0x6d,0x58,0x6a,0x7d,0x1f,0x56, +0x48,0x41,0x85,0x85,0x55,0xdd,0x77,0x9f,0xde,0xaa,0x75,0xdc, +0x51,0x2c,0xbd,0x56,0x2b,0x79,0xed,0x79,0xe8,0xcc,0x5c,0x55, +0x54,0x5d,0xbf,0x08,0xeb,0xb0,0xe9,0xc9,0x52,0x78,0x5f,0x06, +0x95,0xd4,0x6c,0x23,0xff,0x2b,0x79,0xdc,0x14,0xf2,0x80,0x12, +0xf3,0xaf,0x93,0xa3,0x90,0xe8,0x93,0x7f,0x95,0x48,0x4a,0x25, +0x5a,0x3d,0x1d,0x9e,0xc1,0x35,0x7c,0xf6,0x08,0xae,0x80,0x03, +0x0b,0xdc,0xf0,0x43,0xe0,0xe1,0x63,0xbd,0x87,0xc8,0xc9,0xb0, +0x15,0xef,0xe1,0x35,0xb8,0xb7,0x65,0xd4,0x8b,0x11,0xdc,0xe5, +0xf3,0x08,0x18,0x33,0x97,0x9a,0xad,0xb4,0x65,0xfb,0xd8,0x43, +0x0e,0x36,0x07,0xa5,0x68,0xcc,0x28,0x09,0x8b,0xa7,0x3f,0x92, +0x7b,0x6d,0xa1,0x27,0x66,0x8c,0x9d,0xf8,0x88,0xde,0x2d,0x83, +0x11,0x0a,0xf1,0x19,0xc5,0x6a,0x6d,0x2c,0x34,0x09,0xcb,0x25, +0x17,0xc4,0x89,0x6a,0x14,0xd9,0x62,0x93,0xb8,0x42,0xa2,0x4d, +0x53,0xd2,0xc6,0x48,0xf2,0xe3,0x39,0x18,0x0f,0xbb,0x60,0xa7, +0x0e,0xbc,0xb3,0x48,0xdf,0xc1,0x55,0x83,0xea,0x25,0xdc,0xa7, +0x81,0xf8,0xfe,0xb7,0x89,0x8c,0x46,0x61,0x83,0xf3,0x90,0xea, +0xe8,0xcc,0x37,0xf1,0xab,0xa6,0xa1,0xae,0x2d,0xfd,0x1f,0xee, +0xa5,0xb2,0xa1,0xb1,0x2d,0xe3,0x9f,0xdc,0x8b,0xcb,0xc8,0x2e, +0x13,0x4f,0x7b,0xfd,0x88,0x31,0xf7,0xe2,0x54,0x6e,0xab,0x6a, +0xed,0xe9,0xaa,0xd0,0xf2,0x37,0xee,0xc5,0xf4,0x3c,0xd1,0xb3, +0x6f,0xbd,0x25,0x03,0x6b,0x76,0xa4,0xa5,0x73,0xf8,0x42,0xd3, +0xbe,0xf9,0xd2,0x55,0xec,0x7c,0xc7,0x7d,0x5a,0xd4,0x8f,0x56, +0x47,0x91,0xa7,0xc3,0x57,0x1e,0xd7,0xc8,0x0c,0x9a,0x24,0x07, +0x7c,0x5c,0xcd,0x75,0x55,0xcd,0x3c,0x1b,0x9e,0xcb,0xba,0x59, +0x98,0x0c,0x53,0xae,0x03,0x3b,0xe6,0x47,0x2d,0x47,0x56,0x6f, +0xd7,0x1b,0xf3,0xa3,0x5f,0xb3,0xbe,0x01,0x1e,0x81,0x3e,0xc1, +0x35,0xba,0x7c,0x7e,0x56,0x5e,0x66,0x5e,0x0e,0x77,0x98,0x9d, +0xd1,0xbb,0xeb,0x85,0x54,0x4d,0xf8,0x83,0xfc,0x50,0x51,0xd1, +0xd0,0x58,0xea,0xbd,0x5b,0xe1,0x1d,0xad,0x96,0x6e,0x5d,0x2e, +0x15,0xef,0xe0,0x03,0xf2,0xdf,0x4e,0x29,0x60,0xf1,0x7f,0x2c, +0x55,0xfc,0x47,0x89,0xbb,0x95,0x8d,0xa3,0x96,0x8b,0x72,0xb5, +0xf5,0x83,0x9e,0x81,0x33,0x55,0xb7,0xfe,0x63,0xa1,0x62,0xb2, +0x19,0x48,0xf2,0x25,0xc2,0x2f,0xe7,0x89,0x71,0xc3,0x81,0x06, +0xbd,0x0a,0xcf,0x37,0xf5,0xe9,0x03,0xce,0x1c,0xec,0x79,0xa0, +0xa8,0x4f,0x5f,0xb4,0x15,0x77,0x7a,0x29,0xea,0xd3,0xb5,0x6a, +0x80,0x7d,0x71,0x1d,0x76,0x73,0xa3,0x9f,0x8a,0x36,0xff,0xa8, +0x85,0xdf,0x18,0x80,0x13,0x22,0x71,0x51,0x5c,0x82,0x19,0x3f, +0xf8,0xb7,0x5a,0x78,0x3d,0x33,0xd0,0x8b,0x63,0xd7,0xba,0x5a, +0x6e,0x70,0x95,0x96,0x59,0x4a,0x7e,0x6e,0xed,0xb8,0xfc,0x9b, +0x4a,0xd2,0x9b,0x5a,0x78,0x25,0xb0,0x91,0x1f,0xa0,0x5a,0x97, +0x7f,0xac,0x17,0x3f,0x08,0x39,0x0c,0xe3,0x4c,0xe3,0xd2,0x71, +0x02,0x7e,0x18,0x92,0x6c,0x02,0x1f,0xe4,0xa7,0xae,0xc6,0x4f, +0x82,0x52,0x4c,0x40,0xa5,0x30,0x13,0xa5,0xbd,0xc9,0x51,0x20, +0x83,0x4f,0x0b,0x8f,0xf5,0xe1,0xa7,0x41,0x12,0xc1,0x1d,0xf7, +0x91,0xeb,0x8d,0x43,0xfd,0x1d,0xb7,0x6a,0xdc,0xab,0xdc,0x4b, +0xbd,0x2a,0xbb,0x79,0xdf,0x4a,0xcf,0x1a,0xb7,0xea,0xca,0xa1, +0xe2,0xcb,0x05,0x77,0x4f,0xc6,0xf3,0x16,0x45,0x21,0xea,0x41, +0xda,0x7e,0x26,0xca,0x8e,0xf5,0x0e,0x75,0x2e,0x65,0x3e,0x96, +0x7c,0x9d,0x5f,0x8b,0x4b,0x8b,0x93,0xdd,0x3e,0x53,0xb3,0xfd, +0x2e,0xdc,0x81,0x13,0xc4,0xb2,0x4f,0x78,0x17,0x2b,0xc4,0x77, +0xfb,0x28,0xf8,0xdb,0x45,0xfd,0x02,0x86,0xe3,0x2e,0x08,0x67, +0x61,0xd3,0xa8,0x2a,0xd1,0x6d,0x3e,0xd0,0xac,0x53,0xc9,0xc1, +0x2c,0x63,0x71,0x73,0x3f,0x04,0xb1,0x7d,0xfe,0x43,0xae,0xc3, +0xb6,0x1c,0x85,0x6b,0xd5,0xc4,0x44,0x5c,0xd8,0xcc,0xdc,0xa9, +0x1d,0x7a,0x54,0xfe,0x87,0x75,0x09,0x1f,0xb4,0xc9,0x55,0xd7, +0xc2,0x99,0xc3,0x35,0xb0,0x93,0xe0,0x3b,0x5e,0xa6,0x07,0x4c, +0xa5,0xd5,0x96,0x92,0x3b,0xe7,0x5b,0x2e,0xc1,0xc7,0x2a,0xb0, +0xce,0x84,0x15,0x3f,0x45,0x33,0xd2,0x87,0x8e,0x26,0x63,0x05, +0x8c,0xdf,0xbc,0xad,0x91,0xaf,0xcb,0xe1,0xa3,0x2a,0xc7,0x6a, +0xe4,0x57,0xe1,0x6c,0x12,0x34,0x56,0xfe,0xbe,0xec,0xdf,0x94, +0xbf,0x37,0x87,0x54,0xb9,0x46,0xf2,0x19,0x21,0x19,0x81,0xe9, +0x81,0x8a,0x22,0xfa,0x74,0xc5,0x9e,0xa1,0x42,0x93,0x1c,0xde, +0x6d,0x8b,0x91,0xc6,0x36,0x9d,0x46,0x7b,0xbe,0xbd,0xa1,0x5d, +0x51,0x44,0x2f,0x4c,0xf9,0x91,0x98,0xc1,0xd9,0x1e,0x8a,0x07, +0x71,0x0b,0x81,0x2f,0x98,0x80,0x25,0xbb,0xb4,0x91,0xf7,0x2c, +0x30,0xe5,0x61,0x41,0xcd,0x8b,0x27,0x85,0x8a,0x12,0xf7,0xdc, +0x37,0x25,0xee,0x0c,0xfa,0x8a,0xb9,0xa4,0xc4,0xae,0xd4,0xa2, +0x4c,0x51,0x50,0x1f,0xbb,0xe3,0xe8,0xe9,0xa7,0x8d,0x3f,0x37, +0xc3,0x54,0xe3,0x1c,0xde,0x09,0x95,0x6c,0x71,0xbc,0xf9,0x6c, +0xe3,0xe3,0x7c,0x82,0x09,0x4c,0x4c,0x05,0xe5,0x0c,0x78,0xe7, +0x3f,0x17,0xd4,0x2b,0x0d,0x08,0x25,0x04,0xf6,0xe6,0x67,0xa3, +0xac,0x3f,0x39,0x02,0xa4,0x70,0xa0,0x20,0xae,0x0b,0x0f,0x06, +0xc7,0x7c,0x0f,0x9b,0xf2,0xe8,0xd1,0xe6,0xd0,0xc3,0xbf,0x1a, +0x1f,0x4f,0x9f,0x8d,0x1b,0x42,0x13,0xcd,0x61,0x63,0x5e,0xda, +0x52,0x54,0x0f,0x91,0xc8,0x1f,0xcc,0x21,0x56,0x67,0x04,0x4e, +0x9c,0x28,0x72,0x03,0x1d,0x2c,0xe4,0xbe,0x99,0xf6,0x5c,0x3a, +0xed,0x38,0x28,0xaa,0x90,0x5c,0xaf,0x6c,0x87,0x74,0xb7,0x8a, +0x5c,0xfe,0x70,0x55,0x78,0x73,0x64,0x15,0xa7,0xee,0x42,0xd2, +0x82,0xd3,0x02,0x53,0x03,0x38,0x0a,0x3f,0x52,0xf3,0x52,0x0a, +0x52,0x8a,0xac,0x72,0x79,0xef,0x75,0x76,0xfb,0x75,0x0c,0xaa, +0x1d,0xf8,0xb6,0xd6,0xaa,0xa6,0xb2,0x2e,0x8e,0xba,0xad,0x60, +0x9c,0xbe,0x73,0x31,0x4e,0xb2,0x2e,0xb4,0xe4,0xe1,0x93,0xbe, +0xaf,0x80,0xa3,0x13,0x58,0x96,0xcd,0xc7,0x54,0x87,0x37,0x47, +0x54,0x71,0xf2,0x39,0xe2,0x6c,0xe2,0x7f,0xdd,0xe5,0x5b,0xd7, +0x2f,0xec,0x7c,0xf9,0x3c,0xfb,0x7c,0x8b,0x7c,0x53,0x93,0xc3, +0x3a,0xb1,0x7a,0x47,0x2b,0xbf,0x29,0xff,0xa5,0x12,0x94,0xe9, +0x4d,0xbd,0x50,0xc5,0x0b,0x27,0xba,0x2d,0xb6,0x39,0xce,0xa7, +0x9a,0x3d,0x4f,0xfb,0x21,0xfd,0x41,0xae,0x72,0x4a,0x50,0x4a, +0x70,0x72,0x10,0x87,0x17,0x40,0x20,0xdd,0xe8,0x61,0xce,0x3a, +0x6e,0x27,0xe6,0x10,0xc2,0x86,0xcc,0x31,0xd2,0x5c,0xea,0x91, +0x6b,0xc5,0x83,0xa4,0xf6,0xe6,0x37,0x59,0xf0,0x11,0x17,0x9f, +0x7d,0x32,0x2b,0x47,0x45,0x09,0xae,0x08,0x4f,0xc9,0xa3,0xbf, +0xd7,0xf7,0x9b,0xc2,0x4f,0xac,0xa2,0xec,0x5f,0xd3,0x9d,0xd3, +0xbe,0x4f,0x56,0xb3,0x9b,0x1d,0xcd,0xe7,0xd9,0x49,0xcb,0x2d, +0x24,0xc0,0x74,0xf4,0x53,0x33,0x78,0xc6,0x42,0xd1,0x7c,0x22, +0x48,0x07,0x44,0x29,0x83,0x21,0x78,0xff,0xff,0xbd,0xe6,0x5f, +0x09,0xac,0xe5,0x8f,0x08,0xb5,0x5f,0xe6,0xef,0xf6,0x8b,0x32, +0xf6,0xff,0x50,0xa8,0x6c,0x63,0xeb,0xf0,0xef,0x0a,0x95,0x85, +0x9e,0x04,0x62,0x5c,0x7f,0xa0,0x41,0xb7,0xc2,0xeb,0x4d,0xed, +0x71,0xbf,0x13,0x35,0xf8,0x47,0x44,0x13,0xd7,0x2c,0xdf,0x8c, +0xfb,0xdd,0xc6,0x6a,0x8f,0x9b,0x60,0xe2,0xb3,0xeb,0xb0,0x83, +0x1b,0xad,0x14,0xa7,0x13,0x71,0xf3,0xbf,0xd4,0x31,0xff,0xad, +0xd8,0x7e,0x26,0x15,0x47,0x57,0xd8,0x48,0x12,0x4e,0x4a,0x40, +0xe3,0xec,0x1d,0x98,0x00,0xce,0x2a,0xe2,0xbb,0xb8,0xef,0x0c, +0x7c,0x0c,0x85,0x8c,0xa2,0xb0,0x7d,0x33,0x2e,0x34,0xe3,0x84, +0x27,0xb0,0x90,0xc4,0xb4,0x47,0xf4,0x85,0x0d,0x98,0x44,0xf3, +0xb9,0xe6,0xb9,0x46,0xa9,0xe6,0x1c,0xcc,0x86,0xd9,0x24,0x18, +0x97,0x98,0xae,0xc7,0x45,0x9a,0x8a,0x1a,0xfa,0xd5,0xd7,0x2e, +0xbf,0x2e,0x80,0x4d,0x1c,0xfe,0x11,0x4a,0x0a,0xcc,0xf3,0x4c, +0x33,0x4d,0x7b,0xa8,0x41,0xf4,0x86,0xf5,0x05,0xf7,0x70,0xe2, +0x6e,0x51,0xf5,0xbf,0x12,0xa2,0x5f,0x6e,0x46,0x40,0xa3,0x1b, +0x35,0xbe,0x30,0xdc,0x84,0x1a,0xe6,0xa0,0x81,0x09,0x1b,0x98, +0x2c,0x33,0xc9,0x03,0xa6,0x26,0x27,0xab,0x5a,0x86,0x56,0x49, +0xa4,0x79,0xb0,0xe6,0x4e,0xee,0x4d,0xe3,0x4c,0x3e,0x5c,0xcd, +0xe3,0x80,0x23,0x7d,0xfe,0x15,0x8a,0x0d,0x0a,0x35,0x6a,0xf6, +0x34,0x1e,0x1a,0xac,0xe0,0x9d,0xfb,0x1d,0xef,0x86,0x9e,0xe3, +0x84,0xf2,0x23,0x44,0x94,0x1a,0x09,0x52,0x66,0x74,0x9e,0xc8, +0xbf,0x9d,0x24,0x6f,0x0b,0xfe,0xbc,0xcf,0x45,0x97,0x5e,0x05, +0x7b,0x28,0xc6,0x11,0xd0,0x69,0x04,0xf6,0xf9,0x65,0xd8,0xcc, +0x25,0xb2,0xe6,0x25,0x1a,0xb8,0x6e,0xe9,0x56,0xdc,0xe3,0xae, +0xac,0xf4,0xd7,0x62,0x0a,0x9a,0x7d,0x37,0xd8,0x69,0xe9,0xbb, +0x72,0xf0,0x93,0x91,0xb8,0xb0,0x9d,0xfd,0xbc,0x6e,0xe4,0x7e, +0xed,0x1f,0x1c,0xbe,0x04,0x6d,0x82,0x1b,0xd8,0xd9,0x5e,0x86, +0xdb,0x8c,0xa5,0xb5,0xb6,0x5f,0x9e,0x6d,0xa3,0xcb,0x39,0x5d, +0x99,0xa6,0x8b,0xa2,0x8d,0x3b,0x09,0x08,0x39,0xec,0x17,0x22, +0xb3,0x35,0xb0,0x34,0x70,0xb2,0x6d,0xb4,0xe6,0xbb,0x87,0xba, +0xcf,0x29,0x4a,0x73,0xd3,0x52,0x92,0x92,0x54,0x93,0x52,0xe2, +0x22,0x33,0x65,0x17,0xd4,0x9f,0x2d,0xbe,0xbf,0xa5,0xb6,0x9d, +0xdf,0x75,0x77,0xc5,0xab,0x03,0xb7,0xb8,0x82,0xb0,0xe0,0xf4, +0x40,0x55,0x5f,0xd1,0x82,0xe4,0xeb,0xe7,0x69,0x65,0xea,0xf6, +0x51,0xc5,0xef,0x0e,0xb8,0x17,0xd1,0xc7,0xad,0x15,0xf7,0x11, +0xb0,0xfc,0xf2,0x73,0x98,0x5c,0x0a,0xd6,0x06,0x29,0x7c,0x00, +0xea,0x1f,0x98,0x8f,0xc6,0x5b,0xb8,0x4d,0xf0,0x8a,0x14,0xe9, +0x15,0xe8,0xe4,0x68,0xf7,0xe5,0xf2,0xa1,0x57,0x83,0x87,0x83, +0xfa,0x39,0x1a,0x97,0xe5,0x6e,0xa4,0xb9,0xa2,0xb4,0x5a,0x96, +0xcd,0xd6,0x7a,0x95,0x38,0x3a,0x7a,0xf9,0xbb,0x29,0x0a,0x8c, +0x2b,0xfc,0x9a,0xa5,0xd5,0x13,0x83,0xa2,0xdf,0x14,0x18,0x67, +0x64,0x14,0x16,0x66,0x44,0x87,0x49,0x63,0xd8,0xb0,0xe8,0xe8, +0x20,0x29,0x3e,0x47,0x6b,0xd2,0x37,0xd4,0x71,0xae,0xae,0x9d, +0x4b,0x4f,0x4d,0x56,0x08,0x99,0xac,0xa8,0x1f,0xbe,0xb2,0xf3, +0xdb,0xc5,0x0f,0xb6,0xd6,0xb5,0xf3,0x7b,0xc7,0xaa,0x8f,0xa3, +0x33,0xa3,0xd3,0x0f,0x67,0x71,0x05,0x21,0xa1,0x54,0x54,0xbf, +0xd0,0x37,0x5c,0x12,0x16,0x5a,0x16,0x26,0xdc,0x5f,0x33,0xae, +0xbd,0x9d,0x64,0x51,0x1b,0x3f,0x27,0xe1,0x8a,0xca,0xe2,0x4a, +0xb7,0xb0,0x37,0xc5,0xc6,0xee,0x9c,0x6f,0xf4,0x9b,0x62,0xe3, +0x4a,0xe7,0x08,0xbe,0xc8,0xb3,0xd8,0x29,0xd3,0x83,0xc3,0x77, +0x6b,0x89,0x69,0xf9,0xc1,0x32,0xbd,0xfc,0x20,0x4b,0xbe,0x37, +0xfc,0xa2,0xef,0x20,0xfd,0xdd,0x06,0xec,0x21,0xa0,0x5d,0x0e, +0x93,0x9e,0xde,0x87,0x7d,0x66,0xe5,0xfc,0x6e,0xdc,0x3a,0x77, +0x2b,0xaa,0x05,0x2a,0x8a,0x8d,0xd7,0x13,0xfd,0x8a,0xfd,0xe5, +0x46,0xd9,0x21,0xe6,0x7c,0x7f,0xc4,0x65,0x9f,0x7e,0xc5,0x36, +0xe8,0x29,0x8a,0x2d,0x86,0xde,0x7e,0xae,0x8a,0x12,0xfa,0x8a, +0x80,0x96,0xe6,0xca,0x92,0x06,0x45,0x09,0xbd,0x57,0x89,0x83, +0xb4,0x46,0x83,0x84,0xd0,0xa1,0xd1,0x01,0xe7,0x4b,0x93,0xd9, +0xfc,0x37,0x03,0x0e,0x91,0x8a,0x09,0x1e,0xc4,0xdf,0xd4,0xca, +0x76,0x8c,0xc4,0xe3,0x41,0xcb,0xf0,0xdf,0x8c,0x9c,0x95,0x6f, +0xec,0x22,0x19,0xb8,0xa9,0x11,0xc7,0xdd,0x9f,0xd3,0x5d,0xcd, +0xef,0xfa,0xd1,0xe5,0x55,0x14,0x2c,0xe3,0xd0,0xf8,0x24,0x89, +0xc2,0x65,0xee,0x8b,0xb6,0x2f,0xec,0xf2,0xe0,0x1f,0xfe,0xd2, +0x08,0xe3,0xd2,0x61,0x0b,0x27,0xbe,0xbb,0x82,0x18,0xae,0x66, +0x36,0x39,0x59,0xcd,0xb1,0x19,0xf3,0x05,0x5c,0x67,0xdf,0x95, +0x5f,0x54,0xe0,0x29,0x96,0xbd,0xd5,0xe9,0x2b,0xfe,0xf7,0x5d, +0xef,0xd9,0x95,0x74,0x52,0x9d,0x5e,0xf7,0x56,0xa7,0xd1,0x11, +0xfd,0x08,0x75,0x13,0x46,0x34,0x88,0x94,0xc9,0x83,0x48,0x58, +0xbd,0x5f,0x5b,0x60,0xa3,0x5d,0x08,0x5f,0xec,0x56,0x6c,0x9b, +0xe3,0xc0,0x61,0x27,0x5e,0x20,0x36,0xa1,0xd9,0x8a,0x0d,0xe2, +0x2f,0x73,0x61,0x7c,0xc5,0xcb,0xd6,0xa8,0x3a,0xbe,0x21,0x37, +0xa2,0xc1,0xaf,0x23,0xb0,0x56,0xd9,0x36,0xac,0xc0,0xab,0xd0, +0x25,0xdb,0x55,0x79,0xb5,0xc3,0x3c,0xaf,0x75,0x91,0x1c,0x68, +0x1b,0xe0,0x2f,0xec,0xf6,0x3a,0xb7,0xc7,0x52,0xc8,0x3e,0xc3, +0x08,0xfa,0xe8,0x4c,0xdc,0xe6,0x99,0x6b,0xec,0x77,0xe2,0x84, +0x39,0x06,0xa2,0x7d,0x27,0xfb,0xa2,0xf9,0xe6,0xd7,0x4d,0xf0, +0xee,0x89,0x04,0x5e,0x54,0xad,0x24,0x0a,0x4e,0x84,0xf5,0xba, +0xd2,0x46,0x4b,0xc9,0xcb,0x6b,0x9d,0xb7,0x61,0xbe,0x0a,0xbd, +0x01,0x4d,0xca,0x4e,0xc8,0xed,0x89,0x51,0xfd,0xc1,0x06,0x1d, +0x05,0x6b,0xc1,0x59,0xdf,0x11,0x97,0x3e,0x27,0x4e,0x8c,0x5d, +0x4d,0xbc,0x2b,0xbc,0xca,0x7d,0x4a,0x5d,0x1c,0xf9,0x6b,0x07, +0xef,0xec,0x3a,0xaf,0xd1,0xd0,0xcc,0xfb,0x55,0x78,0x55,0x79, +0x54,0x3f,0x39,0x7f,0xe9,0x6a,0xd3,0x3d,0x3a,0x69,0x4b,0x4d, +0xe1,0x67,0xd6,0x55,0xcf,0xc0,0x70,0xb7,0x05,0x07,0x7f,0xe2, +0x0a,0xba,0x72,0x8d,0xc0,0x3c,0xbf,0x06,0x3b,0x4c,0x4b,0x79, +0x6a,0x43,0x2b,0xb7,0xe1,0x01,0x57,0x4e,0x8c,0xa4,0x20,0xaa, +0x39,0xac,0xc7,0xa7,0xd5,0x33,0xaf,0x8b,0xb7,0xaa,0x36,0x29, +0x77,0xca,0xe5,0xe4,0xee,0xf8,0x01,0x71,0xa8,0x37,0x6d,0x34, +0xaf,0xf4,0xa5,0xd6,0xe1,0xd9,0xe1,0xd6,0x42,0xdd,0xd5,0xf4, +0x2f,0x88,0x31,0x6e,0x54,0xdf,0x86,0x2a,0x6e,0x59,0x26,0x3c, +0x2c,0x6c,0x7a,0xf2,0x7c,0x00,0x76,0x58,0x97,0xf2,0xf8,0x87, +0x25,0xd9,0x80,0x9b,0x6d,0x60,0xf3,0x2a,0x54,0xb3,0x06,0x35, +0xd7,0x4e,0xf8,0x1a,0x3d,0xad,0x59,0xbc,0x85,0xcd,0x04,0xe6, +0x55,0x3c,0x7d,0x76,0x16,0xd4,0xac,0x2b,0x79,0x43,0xdc,0xb6, +0x6d,0x2b,0xf2,0xfe,0x1c,0x4c,0x85,0x8d,0xc4,0xae,0xc2,0xa4, +0xcc,0x3a,0x2f,0xd2,0x82,0x6f,0xa1,0x4f,0x6f,0xf7,0xa2,0xa6, +0x71,0x48,0x50,0x53,0xf4,0x36,0xf9,0xcb,0x0c,0xce,0xa1,0x3f, +0x5e,0x35,0x81,0xab,0xb6,0x2c,0xac,0x04,0xf5,0xb7,0xde,0x7b, +0x36,0xd6,0x50,0x6d,0xf2,0x71,0x91,0x1d,0x61,0xfd,0x33,0x42, +0xf3,0x0e,0x4b,0x71,0xd2,0x97,0x46,0x1b,0x50,0xc3,0x8c,0xfa, +0x9e,0x93,0x1b,0x98,0x4c,0xf3,0xbf,0xf9,0x1e,0x48,0x80,0x6d, +0xa7,0xd9,0x9a,0xa4,0xc2,0xe2,0x1a,0x95,0x54,0xb6,0xd1,0xab, +0xd4,0x41,0x5a,0xbb,0xef,0xdf,0x93,0x2e,0x08,0x38,0x93,0x44, +0xa8,0x7b,0x68,0x38,0x9a,0xf5,0x78,0xf3,0xcd,0x43,0xd4,0x5f, +0xdd,0xe0,0x60,0xef,0x49,0x52,0xb2,0xbb,0x7a,0x5f,0xbd,0x6e, +0x4f,0x39,0xef,0x34,0xec,0x75,0x31,0xe8,0x1a,0xd5,0xe5,0x79, +0xf2,0x27,0x64,0xc9,0x3c,0x9c,0xbb,0x11,0x95,0xad,0x8a,0x4d, +0xf8,0xeb,0xe5,0x97,0xab,0xce,0xd5,0x71,0x78,0x74,0x90,0x66, +0xd0,0x43,0x8d,0xbd,0x2d,0xad,0x6d,0xdc,0x68,0xeb,0x29,0x12, +0x8d,0x2b,0xdc,0x16,0x6d,0x5f,0x40,0x95,0xf1,0xfe,0x4f,0x8d, +0x30,0x21,0x8b,0x2a,0xe3,0x8b,0xe9,0x19,0xb8,0xba,0x0e,0x27, +0x7c,0x31,0xe3,0x5f,0xf8,0x1b,0x62,0x47,0xa7,0x90,0x98,0xce, +0xa0,0x3b,0xa1,0x7d,0xc6,0x91,0x7c,0x81,0x41,0xae,0x56,0x86, +0x01,0x87,0xfb,0x41,0x46,0x8a,0xf5,0xf3,0x75,0x73,0x74,0xa8, +0xcf,0x88,0x3c,0x13,0x7c,0x2e,0xe0,0x1c,0x37,0x20,0x4e,0xa1, +0x9e,0xf6,0xfe,0xb7,0xbf,0x97,0x83,0x81,0x61,0x1a,0xef,0x87, +0x1a,0xbb,0x37,0xe1,0x8e,0xdd,0x9c,0x12,0xc8,0xa6,0x83,0x37, +0x7b,0x0b,0xa6,0xc0,0x7c,0x7c,0x25,0x51,0xec,0xa7,0x13,0x56, +0xc2,0x32,0xb8,0x23,0xd9,0xc2,0xe0,0x14,0xcc,0xdf,0x8f,0xd3, +0x25,0xc7,0x05,0xd9,0x4e,0x05,0x56,0x0a,0xfc,0xbf,0x3e,0xd3, +0xe0,0x08,0xa9,0xcb,0x2e,0xac,0x92,0x65,0xb1,0x55,0x11,0x85, +0xae,0xae,0xe1,0x41,0x9e,0xd2,0x48,0xd6,0x33,0x27,0xa8,0x4e, +0xaa,0x74,0x46,0x08,0x24,0x1d,0xe7,0x32,0x1b,0x13,0xee,0x70, +0x49,0x58,0xd4,0x0e,0xc9,0x4c,0x62,0xc2,0xc9,0xf8,0xe3,0xd2, +0xb6,0x35,0x55,0x25,0xe1,0x35,0x92,0x5f,0x98,0x60,0x7d,0x4b, +0x73,0x0d,0xb3,0x52,0xaa,0x93,0x67,0x4e,0x37,0xa4,0xde,0xa6, +0x67,0xe9,0xb7,0x81,0x7e,0x12,0x93,0xb2,0xb7,0xd6,0xf1,0xb2, +0x7e,0x49,0x23,0x9f,0x6a,0x0f,0xe3,0x52,0x61,0x5c,0xce,0xcd, +0x5c,0xe5,0x63,0x6d,0xce,0x47,0x2c,0x63,0xcd,0x8e,0x2a,0xc3, +0xc4,0x1f,0x5a,0x31,0xce,0xf6,0x67,0x9c,0xc4,0x3a,0x1c,0xb3, +0x3f,0xee,0x70,0xe2,0x54,0x1c,0xaf,0xd9,0xef,0xd0,0x13,0xda, +0xc7,0xfd,0xd9,0x8a,0xef,0x3f,0x80,0x77,0x4e,0xe3,0x3b,0x5f, +0x58,0x6d,0xb2,0x61,0x92,0x8a,0x92,0x8a,0x12,0x0a,0x6d,0xd2, +0xf8,0xc3,0x1a,0x21,0x46,0xbe,0xf6,0x0d,0x7e,0x7c,0x76,0x61, +0x46,0x69,0x5a,0x39,0x37,0xb4,0x0d,0x59,0x3b,0xc6,0x7b,0x30, +0x2e,0xed,0x48,0x7c,0xec,0x31,0xe5,0xe8,0x23,0x92,0xe3,0x83, +0x57,0x5a,0xf7,0x3f,0xb7,0x5e,0xb1,0xcd,0xf6,0x06,0x13,0xb3, +0xd7,0x5b,0xd3,0x42,0x97,0x93,0xff,0x82,0x53,0x48,0x49,0x40, +0x4d,0x46,0x62,0x6d,0x16,0x4c,0xe0,0xad,0x8b,0x0f,0xe3,0x3b, +0x96,0xed,0x7e,0xdf,0xc4,0x29,0x9a,0x2e,0x4e,0x6d,0x77,0x66, +0x8a,0xcb,0x43,0x0a,0x9d,0x4b,0xbc,0xb2,0x94,0x7d,0xdc,0xcb, +0xa2,0x6a,0x03,0xf2,0x42,0x95,0x37,0x3e,0x31,0xdf,0xc4,0x1c, +0xc7,0x72,0x6b,0xba,0xc6,0x49,0xb8,0xaa,0x7e,0xce,0x25,0x73, +0x0e,0x03,0x30,0x9a,0x1c,0x4b,0x8e,0x49,0x8a,0x39,0x72,0x24, +0x96,0x3f,0xfe,0xff,0x31,0xf7,0x1d,0xe0,0x51,0x1c,0xc9,0xc2, +0xd8,0xd6,0xcc,0xac,0x01,0x0b,0x1b,0xbb,0x75,0x2b,0xed,0x79, +0x06,0x83,0x09,0x06,0x4c,0xce,0x39,0x07,0x81,0x40,0x28,0xe7, +0x9c,0x73,0x40,0x59,0x42,0x20,0x40,0x02,0x0c,0x0a,0x80,0xd2, +0x2a,0xe7,0x2c,0xa1,0x9c,0x25,0x82,0xc8,0xd9,0x04,0x13,0x6c, +0x30,0x60,0x1b,0xfb,0xce,0x04,0xc7,0x9a,0x75,0x8d,0xee,0xfd, +0xbd,0x12,0x3e,0xdf,0xef,0x77,0xf8,0xec,0x7b,0xe2,0xbe,0xfb, +0xfa,0x93,0xba,0xb7,0x7b,0xba,0xaa,0xba,0xba,0xbb,0x42,0xcf, +0x4c,0x4d,0x22,0x9b,0x5f,0x54,0xd1,0x98,0xde,0x2a,0x2b,0x5f, +0x75,0xcd,0x66,0xe9,0x12,0x07,0x18,0xc1,0x05,0x9a,0x6f,0x5c, +0xba,0xd2,0x22,0xdb,0x5e,0x5e,0x5e,0x54,0x90,0xa7,0xbe,0x39, +0xaf,0xdf,0x0c,0x0e,0x5c,0xfc,0xbe,0xbd,0xfb,0x76,0xf3,0x97, +0x16,0x94,0x96,0x33,0xd2,0xad,0x47,0x04,0x76,0xd4,0xb2,0x25, +0x11,0xe5,0x11,0x35,0xe1,0x05,0x8d,0x72,0xd4,0xec,0x5e,0xdf, +0xea,0x75,0x46,0x66,0xc2,0x7a,0x6d,0x30,0xb6,0xc6,0x61,0xc6, +0x79,0xf6,0xf2,0xda,0xac,0x0a,0x65,0x11,0xdd,0x8a,0x2b,0x9d, +0x08,0x68,0x34,0xa1,0x06,0x8c,0xb7,0xc6,0xf1,0x63,0xed,0x9e, +0xa0,0x29,0x0e,0xb6,0x85,0x86,0x66,0x7c,0x9d,0xed,0xe5,0xa0, +0x82,0x14,0x15,0x64,0x15,0xa6,0x94,0xa7,0x78,0x64,0x05,0x96, +0x04,0x66,0x6c,0xc9,0xde,0x92,0xb7,0x45,0x86,0x81,0x6c,0x6e, +0x5a,0x56,0x9a,0x32,0x5d,0xb6,0x19,0x17,0x91,0x30,0xe7,0xcd, +0xf6,0x7e,0x4e,0xa1,0x7b,0xc2,0x3e,0x08,0xdd,0x93,0x68,0x27, +0x87,0x61,0x89,0xf0,0xca,0xfe,0x6f,0x53,0x93,0xa3,0x0e,0xd2, +0xd4,0x50,0x20,0x77,0xef,0xf2,0x68,0x73,0x69,0x74,0x0c,0x92, +0x67,0x86,0x66,0x04,0x2b,0x83,0x37,0xec,0x58,0x13,0xbb,0x74, +0x57,0x6e,0x65,0x4e,0x5d,0x5e,0xb3,0x0c,0xf6,0x34,0x4a,0x2b, +0xed,0xa9,0x37,0xf9,0xba,0xfa,0x1e,0x25,0xde,0x5e,0x0a,0x9a, +0xbd,0x63,0xef,0xa8,0xc6,0x72,0xe2,0xa8,0x5e,0x75,0x85,0x1e, +0x2c,0x80,0x39,0xd7,0x70,0x0e,0xbc,0x07,0x7a,0xd7,0x30,0x4f, +0xaa,0xe1,0xc4,0x63,0x5a,0xd7,0x70,0xb6,0xe8,0x3c,0x9b,0x96, +0x35,0x45,0x19,0xfc,0x89,0x14,0xa4,0x24,0x17,0x08,0x62,0x07, +0x97,0x15,0x91,0x12,0xca,0xe3,0x5b,0x6c,0x68,0xc4,0xd6,0x30, +0x41,0xea,0xe0,0x02,0x53,0xb6,0x15,0xf0,0x5b,0xfc,0x89,0x6b, +0x44,0x66,0x8d,0x20,0x26,0x1b,0x73,0xfe,0x61,0x11,0x7e,0x82, +0x74,0x99,0xf3,0xcb,0x8a,0x28,0xe2,0x55,0x31,0x6c,0x51,0x96, +0xb2,0x44,0x10,0x2f,0x73,0xc5,0x61,0x19,0xfe,0xbc,0xa4,0x2b, +0x25,0xb3,0xae,0xe1,0xe1,0x6e,0x3c,0xc8,0x45,0x4d,0x72,0x1d, +0x4e,0x2d,0xe1,0x30,0x93,0x8a,0xa9,0xa0,0xf0,0xcc,0xdc,0xbc, +0xcc,0xcc,0xbc,0xbc,0x8c,0xf0,0xa0,0xe0,0x88,0xf0,0x20,0x01, +0x5e,0xd6,0x0a,0xee,0xaf,0xa3,0x7f,0xb4,0x2e,0x5c,0x5d,0xf7, +0x8a,0xd6,0xcf,0xd7,0xe5,0xf6,0xd7,0x05,0x0b,0xe8,0x8f,0x2f, +0xab,0x7b,0xd3,0x9a,0xbe,0xde,0xc1,0x41,0xbf,0xf4,0x56,0xd7, +0xa9,0x7b,0x07,0x07,0xfd,0xd2,0xbb,0xef,0xba,0xdc,0xfe,0xba, +0x5f,0x7a,0xff,0x7b,0xb8,0x35,0xc5,0x5d,0xaa,0xa7,0x04,0xb3, +0xd0,0x93,0xa6,0x2c,0xcc,0x02,0x9a,0x43,0x16,0x4d,0x9e,0xd0, +0x97,0xd3,0x5f,0xb4,0x5e,0x70,0xd4,0x00,0x2d,0x90,0x19,0x4e, +0xbb,0x2d,0xf4,0x8e,0x60,0x3f,0xbb,0x0d,0xb2,0x63,0xa0,0xa5, +0xf8,0x9b,0x86,0x06,0xc6,0xa1,0x39,0x98,0x43,0x1c,0xdd,0x1a, +0x8f,0xcf,0xdd,0x10,0xde,0x51,0x4d,0xfb,0x81,0x3b,0xb7,0xa8, +0x7e,0x1c,0xbe,0xa4,0xa3,0x6e,0xa2,0x29,0x8e,0xd7,0x15,0xc7, +0x11,0xfc,0x92,0xf6,0xff,0x12,0xf2,0x81,0xeb,0x9d,0x86,0x1c, +0x35,0xda,0x26,0xa8,0x76,0x92,0xe9,0xaa,0x0d,0x0f,0x38,0xec, +0x92,0x62,0x08,0xec,0x86,0xae,0x07,0xbd,0x1b,0xa6,0x43,0x17, +0xee,0xe6,0xc4,0xf7,0xc0,0x8a,0x74,0x17,0xfa,0xe8,0xad,0xf3, +0xf3,0xdb,0x20,0xe0,0xac,0x70,0x1c,0x3a,0x1b,0x1d,0x14,0xe8, +0x80,0x43,0xef,0xc2,0xac,0x70,0x61,0x83,0x5f,0xf1,0xd9,0xd3, +0x85,0xa5,0xdd,0x42,0x01,0xb7,0xca,0xd3,0x7e,0xd9,0xaa,0x4a, +0x87,0xe3,0xb1,0x02,0x4e,0xc9,0x03,0xed,0xa9,0xe0,0xac,0x00, +0x67,0xd0,0xfe,0x1c,0xa6,0xe4,0x09,0xc7,0x13,0x2b,0x1b,0x2e, +0xe9,0x5c,0xf5,0x6c,0x5c,0xc5,0x4b,0x47,0xa8,0x53,0xd6,0x5a, +0x53,0xd3,0xa2,0x8c,0x4b,0xdf,0x91,0x2a,0x14,0xe5,0x44,0x65, +0x06,0x84,0xc4,0x25,0xc4,0xc5,0xc7,0xc6,0x6b,0x2b,0x4b,0x43, +0x0f,0x46,0xf9,0x44,0xc6,0x33,0x95,0x41,0x1e,0x5c,0x6c,0xec, +0x9e,0xdd,0xb1,0x42,0x54,0x69,0x68,0x4c,0xba,0x6f,0xec,0xae, +0xb8,0x5d,0x71,0x71,0xda,0x81,0xd9,0x51,0xe1,0x85,0xa1,0xcc, +0xf6,0xe8,0xb8,0xc8,0x48,0x1d,0x9b,0x1a,0xd7,0x56,0x5e,0x74, +0xa2,0xa2,0xb1,0xbf,0xb7,0xb2,0x54,0xfe,0x07,0x7b,0xff,0x9d, +0x0a,0x5e,0x4d,0x05,0x23,0x45,0xe1,0xdb,0xc4,0xd3,0xbf,0xa8, +0xb2,0xb2,0xa8,0xa8,0xa2,0xa2,0xc8,0xdf,0xc3,0xc3,0xdf,0xdf, +0x53,0x10,0xc7,0x6b,0xfd,0xaf,0x3a,0xb4,0x45,0x7b,0xf2,0xe3, +0x9d,0x13,0x37,0x13,0x85,0x40,0x76,0x5d,0xec,0x62,0xb3,0xa9, +0x8a,0xa9,0x8b,0xbb,0xce,0xc6,0xd2,0x5f,0x0b,0x13,0xef,0xe8, +0xff,0xa8,0xa0,0x33,0x99,0x4d,0xc0,0x0c,0xc6,0x80,0x02,0x82, +0x21,0x18,0x69,0x8e,0x66,0x74,0x8f,0x8e,0x41,0x05,0x06,0x63, +0x30,0xd0,0x1c,0x4c,0x85,0x5a,0x0d,0x5c,0x84,0xc3,0x41,0x13, +0x96,0x09,0x47,0xd4,0x8e,0xb0,0xba,0xb8,0x08,0x16,0xc3,0x70, +0xd4,0xc4,0x65,0xbc,0x31,0x87,0xcb,0x50,0x5d,0x5c,0xcc,0xef, +0x83,0x21,0xe4,0x93,0xce,0xc6,0xee,0x7c,0xc1,0xb4,0x90,0x71, +0x0a,0xf5,0xf0,0x37,0x53,0xac,0x77,0x68,0xba,0x2b,0xb4,0x72, +0x77,0x1a,0x5a,0xce,0x76,0x96,0x06,0x38,0x65,0xf2,0xdd,0xf9, +0xcc,0xd1,0x60,0xcb,0xfa,0x05,0xea,0xb8,0x98,0x4b,0x50,0x0b, +0xc9,0x85,0x25,0x30,0x48,0x18,0x60,0x42,0x56,0x43,0x31,0xb9, +0xc3,0xde,0xc3,0x89,0xcc,0x55,0x76,0x02,0xcc,0x62,0xba,0x53, +0x2a,0x1b,0xce,0xe9,0x5c,0xb1,0x6b,0x9f,0xcb,0xe3,0x12,0x69, +0xd4,0x79,0x16,0x6c,0x35,0xe0,0xdd,0xaf,0xb8,0xc6,0xe2,0x20, +0x47,0x21,0x84,0x73,0xf2,0xdb,0x6c,0xcf,0x6b,0x8a,0xfa,0x5b, +0x08,0x2c,0xbb,0x41,0x3d,0xd5,0x9d,0x10,0xbb,0x08,0x78,0x0a, +0x6d,0xd9,0x22,0xe4,0x31,0x16,0x77,0xde,0x40,0x9e,0xe2,0xbc, +0xaa,0x81,0x9c,0xe5,0x53,0x18,0x2b,0xa8,0x3f,0xa0,0x36,0xb6, +0xfd,0x29,0x70,0xc0,0xb5,0x8f,0xc1,0xb1,0x54,0x95,0x73,0x38, +0xd6,0x72,0x0c,0x72,0xbc,0x38,0x7f,0x19,0x69,0xcc,0x2e,0xa8, +0xa2,0x0a,0xa8,0x2a,0xb4,0xc0,0xde,0x3e,0x34,0xd0,0x9d,0x2a, +0x20,0xf7,0xec,0xc0,0x46,0xf5,0xc7,0x3a,0xaf,0x11,0x34,0x54, +0x8d,0xc5,0x3f,0xb1,0x74,0x6c,0xba,0x1d,0x26,0xb0,0x11,0x96, +0x32,0xfb,0xa5,0xaf,0xd0,0x71,0xa9,0x18,0xcc,0xc2,0xc2,0x2d, +0xcf,0xef,0xba,0x44,0xeb,0x9a,0x24,0xe7,0xc0,0x06,0xd6,0x33, +0x0f,0xef,0x9e,0xbf,0x05,0x1a,0x3a,0xf0,0xc6,0xdc,0x07,0xf8, +0x0e,0xbe,0xa3,0x3b,0x73,0xa6,0x0f,0x7f,0xdd,0x87,0xf9,0x30, +0xa7,0xe9,0xe8,0x43,0xc5,0x57,0x2d,0x06,0x73,0x85,0x28,0x6e, +0x85,0xe9,0xf2,0xd5,0xeb,0xd4,0x94,0x07,0x31,0x33,0x39,0xd5, +0xf8,0xe7,0x03,0x86,0xab,0xf0,0x94,0xdc,0x67,0xbf,0x3f,0x6a, +0x3e,0x5d,0x88,0xe1,0xa6,0x1b,0x9a,0x8d,0x9a,0x6a,0x53,0x77, +0xc2,0x99,0xd7,0xb3,0x60,0xd6,0xb7,0x9c,0xdb,0x00,0xc3,0x15, +0xf0,0xde,0xa3,0x07,0x94,0xd1,0x2f,0x2f,0x3d,0x31,0x5f,0x29, +0x24,0x72,0x37,0x73,0xce,0x1c,0xfb,0x8b,0x0e,0x0c,0x7e,0xef, +0x02,0xbe,0x8e,0xaf,0xae,0xdb,0xb8,0xd1,0x95,0x3f,0x6d,0xc1, +0x1c,0x2f,0x6b,0xa9,0xb9,0xa9,0xf8,0xf8,0x88,0xe3,0x02,0x6a, +0xde,0xac,0x30,0x35,0x1d,0xcb,0xcf,0x63,0xc5,0x66,0x69,0xd5, +0x73,0xf1,0x8a,0x8f,0x60,0x34,0x81,0x41,0x97,0x71,0x90,0xa8, +0x54,0xbb,0xa6,0x67,0xa5,0x14,0x66,0x29,0x88,0x38,0xfa,0x36, +0x37,0x5f,0x35,0x85,0x48,0xe6,0x58,0xc6,0x41,0xa1,0x68,0xce, +0xc0,0x77,0xbd,0x0b,0x9f,0x4f,0x7d,0xb2,0xca,0x9f,0xf8,0x4b, +0x63,0x3e,0xdc,0xca,0xd4,0x94,0x57,0x95,0x5c,0x54,0x7c,0x7b, +0xd8,0x70,0x9c,0x10,0xcd,0xbd,0x67,0x6c,0x30,0x7a,0x9a,0x53, +0xdd,0x71,0x67,0x7e,0xbd,0x25,0x1d,0xc7,0x99,0x0d,0xf0,0x9a, +0x02,0x26,0x7e,0xf9,0x98,0xba,0x90,0x23,0x27,0x7d,0x8a,0x6f, +0x2c,0x72,0xf2,0xb4,0x70,0x13,0x76,0xb0,0xb9,0x70,0x88,0x81, +0xeb,0xd7,0x58,0xf0,0xeb,0x7d,0x3e,0x8b,0x44,0x3d,0xba,0x2c, +0x46,0x7f,0xad,0xee,0x2c,0x4c,0xb9,0x8f,0xc3,0xa7,0x1b,0xdb, +0x6c,0x74,0x13,0x62,0xf7,0xd5,0xc1,0xa2,0xfb,0x7f,0xa5,0x06, +0x1e,0xa7,0x8d,0x83,0x58,0x1c,0xba,0x90,0xfa,0x7a,0x8b,0xd0, +0x47,0x07,0x97,0x7c,0x89,0x83,0x60,0x02,0xbf,0xe7,0x2a,0x19, +0x67,0xd0,0xf3,0x44,0x48,0xe6,0x9e,0x1c,0xeb,0x79,0xf2,0xb8, +0xc7,0x60,0x2c,0xbf,0x8d,0x1b,0x6b,0x60,0x30,0x8e,0x17,0x17, +0xff,0xc6,0x1a,0x99,0xab,0x56,0x55,0xd2,0x66,0x74,0xbd,0x0e, +0x82,0xfa,0xad,0xb3,0xea,0xde,0xf7,0x98,0xcf,0x59,0xd1,0xf5, +0x37,0xe8,0x5b,0x4f,0xe9,0x9b,0x77,0xff,0x0b,0x78,0xed,0xc9, +0xc6,0xe3,0xd3,0x0b,0x84,0x03,0xdc,0x8d,0xc2,0x8e,0x33,0x9f, +0xea,0xc0,0x2b,0x33,0xaf,0xe2,0x68,0x1c,0x3d,0x73,0x19,0xbe, +0x32,0xab,0x63,0xfd,0x8d,0x00,0x7e,0x3b,0x37,0x3d,0x70,0xe3, +0xa6,0xb1,0x3a,0xf8,0xda,0xfd,0x29,0x30,0x8f,0x17,0x57,0x6a, +0x4c,0x36,0x6d,0xfc,0x48,0xc8,0xe0,0x6e,0x74,0x37,0x3e,0x7c, +0xd8,0x6d,0xbf,0x88,0x8f,0xe0,0x16,0x9b,0xda,0x4f,0xe6,0x51, +0xd2,0x78,0x77,0x43,0xc7,0xa7,0x42,0x1e,0x77,0xf7,0x54,0xe7, +0xb7,0xdf,0x9e,0x32,0x9f,0xcd,0x07,0x71,0xb3,0x36,0x58,0xbc, +0xfb,0x9b,0xb4,0x8b,0x73,0xb5,0x60,0xe8,0x4d,0x18,0x49,0xb7, +0xa4,0x8f,0x0e,0x2c,0x99,0x04,0x83,0x70,0x02,0x8e,0x1e,0x3f, +0x0e,0x47,0xa1,0xf0,0xc5,0x0c,0x18,0xfe,0xd9,0xe1,0x96,0x93, +0xd5,0x7c,0xe2,0x6e,0x27,0x5c,0x34,0x63,0x02,0x4e,0x45,0x8e, +0x1a,0x2e,0xf0,0xcd,0xdf,0xb9,0xd4,0xd3,0xf3,0xf8,0x67,0x2e, +0x19,0xd2,0x4c,0x5c,0x8c,0x7f,0x7b,0xfe,0xc4,0x27,0xad,0x21, +0xef,0x7d,0x31,0x0f,0xde,0x07,0x5d,0x9d,0x36,0x0e,0x56,0xdf, +0x86,0x49,0x8f,0x1f,0xf2,0x46,0xec,0xa4,0x99,0xb3,0x71,0x36, +0x5a,0xe9,0xa0,0xd5,0x5d,0x9c,0xf3,0xe5,0x2c,0x5e,0x7c,0xaa, +0xf5,0xf0,0xd3,0x4f,0x61,0x36,0x58,0xeb,0x80,0xd5,0x2c,0x98, +0x3d,0xf9,0x1e,0xbd,0xe8,0xf1,0xa4,0x5b,0x38,0x09,0x57,0xe9, +0x58,0x71,0xb8,0x6e,0x1e,0x4e,0x1c,0x3f,0x85,0x9f,0x06,0x39, +0xa4,0x71,0x84,0xf8,0xda,0x3c,0x0e,0x39,0x7c,0xad,0xd2,0xef, +0x47,0x78,0x99,0x49,0xc0,0x87,0x38,0x8c,0x1a,0x0f,0x60,0xa1, +0xba,0x42,0x7e,0x0d,0xf7,0x28,0xfb,0xbf,0xb1,0x8b,0x31,0x5a, +0xff,0x1b,0xf2,0x51,0xf6,0xd7,0xf8,0x31,0x5b,0x0a,0x25,0x6d, +0xf5,0xcd,0x2d,0x17,0x74,0xae,0x5a,0x77,0xcc,0x59,0x68,0x63, +0x67,0x10,0xc1,0xb7,0x84,0x33,0x8d,0x69,0xc5,0x65,0x9d,0x8a, +0xb6,0x72,0x1f,0x3b,0x61,0x0b,0xe7,0x18,0xec,0x69,0xef,0xc4, +0xd3,0xd9,0x7b,0x9b,0xb1,0x84,0xf2,0x66,0x0c,0xe0,0x06,0x7a, +0xc8,0x78,0x4e,0xdc,0x4d,0x6c,0xdb,0xb8,0x9e,0x6a,0x5f,0x6b, +0xba,0xf3,0xad,0xdc,0xbd,0x4c,0x2c,0xbc,0x73,0x6b,0x03,0x79, +0x67,0x1f,0xc6,0xae,0xb8,0xc9,0xe7,0x43,0xc5,0xbd,0x63,0x6d, +0xd7,0x8f,0xb9,0x1f,0x32,0x4a,0x16,0xe2,0xb9,0xd6,0xe4,0xaa, +0xf2,0x63,0x3a,0xe7,0xcd,0x1a,0x17,0xe8,0x3a,0xfa,0x3a,0x06, +0xf0,0x55,0xde,0x4c,0x55,0x4e,0x79,0x6e,0x13,0xa5,0xd7,0xd7, +0x91,0xfa,0xc7,0xce,0x5e,0x7e,0xa6,0x03,0x3e,0x2b,0x38,0x09, +0xd2,0xc9,0x83,0xd3,0x0d,0x7a,0xd0,0xb4,0x81,0xc3,0x4d,0x58, +0xc7,0xd8,0x80,0xf5,0x74,0x2e,0x4e,0x1c,0x44,0x12,0x30,0x1a, +0xa7,0xbf,0x80,0xb9,0xa9,0x93,0x86,0x12,0x4b,0xff,0x30,0xb7, +0x10,0x21,0x8e,0x4d,0x81,0xb9,0x0c,0x18,0xb5,0x62,0x04,0x1b, +0x89,0x11,0xcd,0x3b,0x99,0xdc,0xac,0x3c,0x65,0x93,0xe2,0x48, +0x99,0xbb,0x39,0x1d,0xb0,0xa9,0x97,0x8b,0x81,0x95,0x57,0x6e, +0xed,0x66,0x35,0xbf,0x6c,0x8b,0x1b,0x7d,0x2f,0x2b,0x3e,0xef, +0x3e,0xf6,0xc9,0x27,0xe6,0xed,0x4b,0x85,0x81,0x27,0xeb,0x90, +0xf4,0x1a,0x31,0xf5,0xf4,0x77,0x09,0x13,0x76,0xed,0xcd,0xfc, +0xbc,0xe7,0xcc,0xe3,0x8b,0xda,0xcb,0xd9,0x79,0xa6,0x8b,0x27, +0xe1,0x9b,0x3a,0x53,0xdb,0xd7,0xfd,0xe5,0xfe,0xd1,0x63,0x9f, +0xdc,0x36,0xed,0x58,0xce,0x5f,0xa6,0x0e,0xa1,0x99,0x87,0xbb, +0x91,0x91,0x47,0x75,0x17,0x9f,0xce,0x75,0x55,0x54,0x1d,0x3b, +0x5a,0xe9,0x6e,0x36,0xf0,0x53,0xf3,0x92,0x6a,0x01,0xc1,0x0a, +0xfc,0x53,0xcb,0x03,0xd0,0x65,0x71,0x86,0x34,0x94,0x39,0xca, +0xc2,0x54,0xf1,0x55,0x66,0xc0,0x31,0xe9,0x53,0xb7,0xad,0x29, +0xb5,0xbc,0xb2,0x5b,0xe7,0x9c,0x79,0xd3,0x9c,0x39,0xe6,0xb6, +0xeb,0x4c,0xcb,0x3d,0x9a,0xa2,0xf9,0x38,0xce,0x24,0xda,0xdd, +0xc5,0x40,0x67,0xe5,0x51,0xcb,0x2f,0xbe,0x38,0xda,0x7e,0xb9, +0xc7,0xfd,0x90,0x49,0x2a,0x8f,0x23,0x1f,0x93,0xc6,0x8a,0xe2, +0xae,0xae,0x0a,0x3f,0x7b,0x3e,0x9a,0xb3,0xf7,0xf4,0x37,0x33, +0xf3,0x2c,0x6a,0xa4,0xda,0x1b,0xcd,0x88,0x8d,0xbb,0x8f,0x81, +0x81,0x7b,0x69,0x0b,0xe5,0x4c,0x4b,0x55,0x59,0x4f,0x8f,0xfa, +0x53,0x18,0x03,0x3f,0x59,0xc7,0xd0,0x95,0xcc,0x30,0x32,0x9c, +0xb3,0xa0,0xdb,0xe2,0x6a,0x67,0x45,0x41,0x5d,0xb6,0x10,0xbf, +0x3b,0x7c,0xaa,0xc1,0xba,0x71,0x6b,0xb5,0xaf,0xb0,0x9f,0x74, +0x5f,0xff,0x12,0x86,0xeb,0x7c,0x66,0x75,0x7e,0x02,0x3f,0x03, +0xdf,0x24,0x5d,0x95,0xd5,0x47,0x8f,0x54,0xba,0x99,0xf1,0x91, +0x9c,0xb9,0xa7,0x1b,0x9d,0xb7,0xaa,0xae,0x01,0x9f,0xac,0xb5, +0xb0,0x9f,0x3c,0xee,0xfc,0x10,0x46,0xc3,0x68,0xf3,0x2b,0xe3, +0xc6,0x99,0x2f,0x57,0x6b,0x85,0xce,0x15,0x8f,0xa9,0x79,0xd8, +0x41,0xd4,0x52,0x8f,0xfd,0xb5,0xd4,0x83,0x6a,0x6a,0x20,0x1d, +0x22,0x6b,0xfc,0x8f,0x7c,0x26,0x9c,0xe0,0x3e,0x2b,0x39,0x72, +0xee,0x5c,0x89,0xf1,0x34,0x5e,0x9f,0x9b,0xe6,0x6f,0xbc,0x66, +0xe0,0x17,0x53,0x1e,0x1c,0x7b,0x3e,0x1d,0x52,0xe3,0x73,0xdb, +0x34,0xaf,0x89,0xe3,0xc9,0xf3,0xd1,0xff,0x32,0x89,0xaa,0x99, +0xa2,0x17,0xf9,0x5d,0x93,0x97,0xd2,0xfb,0x3a,0xe9,0x13,0xb8, +0x2c,0xc8,0x60,0x10,0xf3,0x07,0xe4,0xb4,0xc4,0xc0,0x3e,0xf2, +0xff,0x13,0xd8,0xa7,0x52,0x5e,0x00,0x95,0xfb,0xa5,0x6c,0xd2, +0x27,0x99,0xf9,0xdf,0x29,0x99,0x2d,0x6d,0xdb,0xd8,0xdf,0x16, +0xf4,0x42,0xaf,0x26,0xac,0xfb,0x0f,0x91,0xdf,0xcb,0xe1,0xc3, +0x7f,0x8a,0x4a,0x6c,0xc4,0xbb,0xe4,0x57,0xe2,0xbe,0xe3,0x01, +0x67,0x01,0xa5,0x44,0x2d,0xef,0x39,0x98,0x0c,0xd1,0xcc,0x7f, +0x92,0x9e,0x62,0x6c,0x20,0x6a,0x91,0xde,0xa7,0x12,0xf8,0x7f, +0x4f,0x25,0x08,0xff,0x49,0x82,0xcb,0x28,0xc1,0x6a,0x45,0xd0, +0xa7,0x2c,0xf8,0xe7,0x2b,0x0b,0xde,0x38,0xfa,0x79,0x7a,0x62, +0xf5,0x73,0xb7,0xf6,0x2c,0x35,0xd5,0xd6,0x77,0x71,0xf6,0x97, +0x33,0x7f,0xd9,0xda,0x36,0x3a,0x60,0xf9,0x9b,0x5b,0xbb,0x87, +0x6e,0xdf,0xa1,0xff,0xff,0xf6,0xfd,0x02,0x87,0xd9,0xa9,0xb7, +0xf6,0x97,0xe2,0xab,0xa4,0xf5,0x67,0x2d,0xc2,0x3d,0xd3,0x22, +0x03,0xcf,0xae,0x02,0x29,0x9f,0xf4,0x6b,0x87,0x04,0xee,0xf7, +0x68,0x12,0xbe,0x57,0x80,0x8d,0xff,0x94,0xbf,0x70,0xf2,0xdd, +0x3f,0xa8,0x5d,0x06,0x7c,0x30,0x39,0xd2,0xcb,0x44,0xad,0x3d, +0xfe,0x3f,0x0d,0xc3,0xff,0x6f,0x0d,0xd3,0xab,0x28,0xfe,0xe7, +0x43,0x38,0x8a,0x43,0xff,0xb9,0xd6,0x19,0x70,0x52,0x25,0x83, +0x7f,0xcb,0xd2,0x15,0xef,0xc1,0x1c,0xf2,0x2b,0x55,0xd5,0xa7, +0xbe,0x78,0x43,0x1f,0xa2,0x56,0x40,0x6a,0xb5,0xc4,0xff,0x83, +0x5a,0x52,0x1f,0x47,0xdd,0x26,0x98,0x84,0x0e,0x34,0x25,0x61, +0x12,0xd0,0x1c,0x92,0x68,0x72,0x80,0xbe,0x9c,0xfe,0xa2,0xf5, +0xc2,0xdf,0x86,0x68,0x50,0x29,0x62,0x04,0x86,0xb0,0x8d,0x26, +0x75,0x1e,0x4d,0x93,0x11,0x1a,0xe2,0x36,0x9a,0xd4,0x79,0xb4, +0x80,0xef,0x8a,0xcc,0xbf,0x43,0xf2,0x24,0xf5,0x07,0x04,0xfe, +0x97,0x82,0x52,0x73,0x9c,0xd5,0x14,0x77,0xab,0x66,0x90,0x2a, +0x65,0x56,0x31,0x75,0x64,0x8a,0x23,0xb3,0xdc,0xdd,0x23,0xc3, +0xfc,0xa8,0x23,0xe3,0xa7,0x0c,0xab,0xe2,0xeb,0x7a,0x67,0x10, +0xb1,0x76,0xbe,0x54,0xab,0xfe,0x22,0xd0,0xf3,0x2f,0x83,0x5b, +0x5a,0xcf,0x69,0xc1,0x3e,0x08,0x75,0xf3,0xa5,0x3a,0x4e,0x1c, +0xaf,0xd5,0x5f,0xd0,0x04,0x87,0xdf,0x00,0xd5,0xfe,0x3c,0x50, +0xd0,0xfa,0xbc,0x16,0xa9,0xe5,0x17,0x24,0x83,0x9f,0x21,0x11, +0x5f,0xfd,0x3b,0xb6,0xcd,0xaa,0xa9,0xa4,0x26,0x23,0xbb,0x44, +0x48,0xe7,0x4a,0x22,0xb2,0x5d,0xdd,0x22,0x42,0x7d,0xf9,0x28, +0xce,0x37,0x23,0xb4,0x9a,0x6f,0xec,0x9d,0x4a,0x3b,0xce,0x56, +0x5f,0xbf,0x5d,0x0b,0x0c,0xc5,0x3a,0x66,0x1e,0x3b,0x1e,0xf3, +0xf4,0x51,0x8f,0x89,0x65,0xf5,0x41,0xef,0x7d,0xc8,0x63,0x66, +0xb3,0x60,0x20,0xd5,0x31,0x9a,0x62,0x93,0x16,0xb8,0x8a,0xb5, +0xcc,0x42,0x16,0x97,0x4b,0x56,0xb4,0x1d,0x57,0x8a,0x56,0xcc, +0x02,0x16,0x5c,0xa5,0x5a,0x46,0x53,0x95,0xf1,0x7c,0x2c,0x08, +0x14,0xcd,0x6f,0x43,0xa7,0xe8,0xfb,0xe9,0xd0,0x54,0x0d,0x7d, +0x3e,0x20,0x08,0xd3,0x7a,0x4e,0x8b,0x94,0xf5,0xaf,0x51,0xac, +0x78,0x86,0x02,0xce,0xff,0x8c,0x4b,0xcc,0xa4,0xb8,0x2a,0xff, +0x0e,0xd1,0xc3,0x6d,0x4b,0x3f,0xc4,0x34,0x35,0x2e,0x03,0xad, +0x3f,0xdc,0xd2,0xcb,0xa8,0xa9,0x78,0x9f,0x52,0xb1,0x80,0x5d, +0x84,0x79,0x56,0x7d,0x54,0x58,0x81,0xde,0x12,0x4a,0x05,0xdd, +0xda,0x13,0xd5,0x54,0xe8,0x68,0xa9,0x9f,0x1e,0xa4,0x54,0xe4, +0xfc,0x5c,0xc8,0x7b,0x56,0xd0,0x84,0xa0,0x7f,0xb1,0x12,0xfb, +0x26,0x14,0x5a,0xb4,0x60,0x22,0xb8,0x31,0xf1,0x2c,0xbc,0x83, +0x6e,0xcc,0x57,0x2c,0x9a,0x42,0x05,0xdd,0x2d,0x19,0xcc,0x34, +0x96,0xba,0xf2,0x36,0xcc,0x2e,0x16,0x79,0xb0,0x61,0xde,0x67, +0xc1,0x18,0xf3,0xd0,0x1a,0x8b,0xa8,0xd1,0xff,0x54,0x0b,0x26, +0x81,0x87,0xba,0xcf,0x28,0xf4,0xe8,0xef,0x53,0xfe,0x73,0x9f, +0xd1,0x68,0xa7,0xee,0x33,0x02,0xec,0x98,0x89,0xea,0x3e,0xb9, +0xfd,0x7d,0xc4,0x5d,0x0b,0xc8,0xaf,0x37,0xe9,0xaf,0x37,0xb1, +0x50,0xfe,0xaf,0xf7,0xac,0x33,0x78,0x13,0xf5,0x26,0xfc,0xa3, +0x06,0x9b,0x25,0xa7,0x1a,0xae,0xf5,0xef,0x75,0xfc,0x2f,0xa0, +0x5d,0x0c,0xd9,0x4e,0xfe,0xb0,0x87,0xfe,0xdb,0x76,0xe0,0x7f, +0xc3,0xa8,0xee,0xed,0xf9,0x6d,0x8f,0xff,0xbf,0x80,0xc4,0x98, +0xed,0xe4,0x67,0x57,0xff,0xdf,0x3d,0x2a,0xf8,0x6f,0x18,0xc6, +0xce,0xed,0xe4,0xe7,0x63,0x83,0xdf,0x3a,0x5a,0xe0,0x1b,0x34, +0xd4,0x46,0xa2,0xf0,0x0f,0x46,0x62,0x24,0xa7,0x36,0x1d,0xf9, +0xff,0x86,0x41,0xf8,0xef,0x21,0x7d,0xa7,0x0e,0xbf,0xb2,0x22, +0xff,0x1b,0x48,0xdb,0xb1,0x9d,0xfc,0xfd,0x58,0x42,0xf8,0xd7, +0x86,0x27,0x0f,0x71,0x1a,0x6a,0x5b,0x52,0x48,0xe5,0x7e,0x65, +0x61,0xf2,0x68,0xa3,0xa1,0xb6,0x2b,0x85,0x7f,0xb0,0x2b,0xa3, +0x38,0xb5,0xb5,0xf9,0x5f,0x31,0x05,0x41,0x7b,0xc8,0x3f,0x1c, +0x6a,0x3c,0xc7,0x2c,0xbd,0x0f,0x96,0x44,0x6d,0x65,0x0a,0x4a, +0xee,0x57,0xb6,0xe7,0xc0,0x8d,0x01,0x8d,0xc1,0x79,0xa0,0x45, +0x22,0xb5,0x72,0xfe,0xe9,0xc9,0x49,0xb3,0xc6,0xf3,0xce,0x46, +0xfe,0xab,0x47,0x53,0xb2,0xff,0x3f,0x77,0xcc,0x6d,0x22,0x2d, +0x21,0x97,0x1c,0xeb,0x16,0x6d,0xf0,0x0c,0x70,0x0e,0xe2,0x2b, +0x02,0x98,0x12,0x65,0x61,0x76,0xbd,0xa2,0x2d,0x2f,0xc0,0x46, +0xf0,0x5c,0xc3,0xcd,0x74,0x72,0xdb,0x64,0x54,0xed,0x71,0xa6, +0xab,0x3c,0xaf,0x2a,0x4d,0x48,0x88,0x62,0x37,0x67,0x46,0xe7, +0xf1,0x6d,0xf5,0x8e,0x2c,0x1a,0x76,0x93,0xf2,0x82,0x9c,0x6e, +0xfe,0xac,0x19,0x6b,0xef,0x1a,0xec,0xe0,0x1c,0x90,0x59,0xf9, +0x02,0x8e,0xe9,0xaa,0xf0,0x2a,0xb1,0xf2,0xf4,0xf7,0xd9,0x2a, +0xc4,0x81,0xae,0x99,0xa4,0xdf,0xd5,0x96,0xc0,0xfa,0xa4,0x54, +0x06,0xb4,0x2a,0x6e,0x37,0x1f,0xfb,0xfe,0x07,0xdb,0x9e,0xf9, +0xc2,0x65,0x5c,0x47,0x36,0x78,0x3a,0x99,0xd8,0xb9,0x16,0xd6, +0xf1,0xc0,0x70,0x75,0x35,0x05,0x4d,0x87,0x2b,0x9c,0x37,0x0e, +0xfc,0x09,0x58,0x24,0xec,0x27,0x47,0x1a,0xf2,0x3b,0x72,0x05, +0xa7,0x2c,0xc6,0x27,0x32,0x28,0xc4,0x51,0x61,0xec,0x5d,0x7b, +0x4a,0x68,0xe6,0x4e,0x96,0xd5,0x1e,0x39,0x94,0x1b,0xea,0x93, +0xca,0x37,0x66,0x31,0xcd,0xa1,0xce,0x25,0x46,0x8a,0x19,0xe6, +0xfa,0xa3,0xc6,0x74,0x6c,0x7c,0xf0,0x02,0x0e,0x9a,0xa3,0xa4, +0x21,0xa4,0x34,0xda,0xb3,0xc8,0x5a,0x31,0xdf,0xc6,0x70,0xc4, +0xc8,0x16,0xc3,0xdb,0x2d,0x95,0x85,0xa5,0x54,0x7e,0x59,0x75, +0x89,0xfa,0x66,0xa8,0xcb,0xe2,0xdc,0x99,0xe4,0x64,0x65,0x6d, +0x77,0xd3,0xa1,0x40,0x2a,0x02,0x18,0xce,0xc9,0x25,0xc0,0xce, +0xc4,0xb3,0xee,0xd4,0x0b,0x98,0xa0,0x23,0x74,0x82,0x66,0x98, +0x6f,0x18,0x3d,0xba,0x5b,0xff,0xfe,0xf1,0xa6,0xc2,0x86,0x7c, +0xc1,0xaf,0x8c,0x71,0x0f,0xf1,0x0b,0xb6,0x51,0x6c,0xf4,0xaa, +0x3d,0x2d,0x24,0x83,0x6f,0x26,0xf7,0xc0,0xfa,0xe2,0x34,0xde, +0x49,0xa3,0xb3,0xdc,0x49,0x5f,0x88,0xc3,0xb9,0xf1,0xdc,0xc9, +0x8a,0xba,0xee,0x81,0x9f,0x9f,0x10,0x48,0x27,0x90,0x7b,0xbe, +0x71,0xed,0x57,0xe7,0xeb,0x37,0x70,0x4e,0xe1,0x21,0x6e,0xc2, +0x02,0x33,0xfb,0x2e,0xcc,0xe5,0x06,0x7e,0xdc,0x9f,0x4b,0x77, +0x89,0xfb,0xd6,0xb4,0x4c,0x65,0x4a,0x6a,0xfe,0x01,0x61,0x97, +0x52,0xb9,0x5b,0xa9,0xf8,0xa8,0xb9,0xe1,0x54,0xf5,0x96,0x52, +0xdf,0x4c,0xa1,0xe0,0x52,0x9d,0x21,0x17,0xbc,0x75,0x5b,0x90, +0x10,0xc2,0x1d,0x88,0x08,0x4e,0xdc,0xac,0x58,0x68,0x6f,0xbf, +0xde,0x36,0xd7,0xbb,0x3a,0x42,0xd8,0xcd,0xf9,0xec,0xf0,0x0f, +0xf7,0xd6,0xd9,0x9c,0x16,0x5a,0x14,0xcb,0xc7,0x72,0x2e,0xdb, +0x83,0x36,0xbb,0xe9,0x58,0xd7,0xfa,0x3c,0x81,0x97,0xda,0x2b, +0xce,0x76,0x79,0x95,0x2d,0xe3,0x71,0x18,0x2c,0x22,0x35,0x85, +0x85,0xad,0xad,0x85,0x01,0xae,0x54,0x06,0xbb,0x06,0x04,0x5a, +0xdb,0xf8,0x17,0xd4,0xf0,0xc7,0xb0,0x93,0x98,0x78,0x67,0x56, +0x14,0xa4,0x67,0xe4,0x27,0x0b,0x4f,0xd9,0x96,0xfc,0x28,0x6f, +0x27,0xb7,0x08,0xc3,0x17,0xb0,0xca,0xca,0xe9,0xcc,0x9a,0xfb, +0x06,0xf8,0x44,0xd3,0xad,0xb7,0x56,0xbd,0xf5,0xc0,0x85,0x6d, +0x3a,0x94,0x5b,0xd7,0x9a,0xe7,0x67,0xc8,0xa3,0x61,0x17,0x98, +0x71,0x37,0xdc,0x9a,0xd7,0x0e,0xfc,0x34,0x7e,0xa0,0x7a,0x83, +0xe4,0x27,0xa7,0xf6,0x3d,0xa4,0xba,0x2d,0x75,0xf3,0xe6,0x6d, +0xd1,0x7d,0x0f,0xa9,0x26,0x47,0xe7,0xf3,0x45,0xd2,0x50,0x02, +0x67,0xcc,0xf0,0x0c,0xf7,0x82,0xb0,0xa6,0x29,0x9f,0x61,0x0d, +0xda,0xba,0x35,0xfc,0x67,0xac,0x4b,0x25,0x2b,0xe2,0xd8,0xca, +0xd5,0x29,0xb3,0x2b,0x05,0x51,0xd3,0x4c,0xd2,0x79,0x01,0xeb, +0xe9,0x3c,0x15,0xc4,0xf6,0xe6,0x4c,0x1c,0xd4,0xaa,0x59,0xfd, +0x84,0x6d,0xed,0xf8,0x0e,0xdf,0x63,0x4e,0xb3,0x28,0x07,0x3d, +0x78,0x15,0xde,0x60,0x36,0xb1,0x03,0x3e,0x64,0x5d,0x38,0x42, +0xac,0xc5,0x71,0x66,0xd2,0x9f,0x59,0xf7,0xac,0xb0,0x6a,0xbe, +0xf9,0x05,0x1c,0xeb,0xcd,0x91,0xf4,0xc8,0x0d,0xd7,0xe6,0x75, +0x66,0x1e,0xbe,0xae,0x5b,0xf8,0x38,0xb6,0x61,0x8b,0x67,0xbe, +0x8d,0xc2,0xd2,0xaf,0x6f,0x5d,0xb5,0xd1,0x99,0xec,0x5b,0x56, +0xd5,0xb9,0x87,0x5a,0xf2,0x7c,0x8d,0x79,0x34,0xea,0x06,0x17, +0xae,0xa9,0x2a,0xf7,0x50,0x7b,0x4e,0xff,0x4f,0xee,0x85,0x2e, +0xec,0xbf,0x13,0xf0,0x1f,0x59,0xd7,0x54,0x7d,0xdc,0xeb,0x3a, +0xf1,0xcd,0x77,0x66,0x27,0x66,0xce,0x34,0xd3,0x1f,0x35,0xba, +0x4b,0xff,0x9e,0xd0,0xa0,0x61,0xe2,0x75,0xe8,0xa4,0xd0,0xc6, +0x9d,0x2a,0xaf,0x39,0x7c,0xb8,0xcc,0x59,0x9f,0xb7,0xe2,0x36, +0x7a,0xbb,0x98,0xbc,0x58,0x5d,0xda,0x6e,0x26,0x2d,0xeb,0x82, +0xf9,0x7f,0x44,0x97,0x0e,0x34,0x35,0x91,0x7d,0x4a,0xcc,0x43, +0xad,0xc4,0x6c,0xa9,0x12,0x6b,0x36,0xbc,0xdd,0x4a,0x95,0x58, +0x8a,0x90,0x80,0xf3,0xbb,0xc4,0x65,0x66,0x96,0x3f,0x2b,0xb1, +0xc3,0x4d,0x35,0xcf,0x94,0x98,0x2b,0x55,0x62,0x1e,0xcf,0x94, +0xd8,0x87,0x64,0xd2,0xac,0x7f,0xa4,0x65,0xe6,0x73,0x69,0x99, +0x7c,0x0b,0x27,0xff,0x9a,0x96,0x7b,0xbf,0xd0,0x32,0x4b,0x4d, +0xcb,0x59,0xbc,0x4d,0xfa,0x56,0x82,0x39,0xdb,0x5e,0x9f,0xd9, +0xca,0x17,0xb4,0x87,0xb0,0x66,0x01,0xbe,0x5e,0xdb,0xa8,0xd7, +0xf8,0x42,0x96,0xc1,0x95,0xd6,0x43,0xc7,0x8e,0xba,0x95,0x6c, +0xdc,0x2f,0x78,0x26,0x30,0x2e,0x89,0xe1,0x69,0x15,0x3a,0xa5, +0xf9,0x99,0xf5,0xb5,0x05,0x11,0xc1,0xd9,0x7c,0x79,0x39,0x53, +0x14,0xe0,0x93,0xbb,0x41,0xa1,0x6b,0xeb,0x66,0x68,0x58,0x13, +0x70,0x72,0xbb,0x50,0x16,0xc7,0x54,0xc5,0xe6,0x44,0x7b,0xe8, +0x78,0x84,0x84,0x5b,0x3b,0xf9,0xa6,0x57,0x04,0xf0,0x9e,0xde, +0x8c,0x63,0x79,0x6d,0xc4,0x61,0xc5,0x80,0x13,0xb8,0x98,0x8a, +0x05,0x3d,0x08,0xbd,0xd0,0xb8,0xe6,0x53,0x2b,0x3d,0x36,0x62, +0xc7,0x8e,0x08,0xde,0x93,0x6a,0x51,0x77,0xd6,0x39,0x3b,0xfc, +0x10,0xdf,0xc3,0xbe,0x88,0xb5,0x50,0x43,0xec,0x5d,0x82,0x9c, +0xac,0x83,0x4a,0x8f,0xf2,0x60,0x64,0x86,0x16,0xdc,0xa2,0x6a, +0xfb,0xf3,0x9d,0x25,0x05,0xa5,0xa9,0x7c,0x82,0x75,0x17,0x15, +0xf9,0x2f,0x00,0x6b,0x8f,0xf4,0x19,0xb1,0x05,0xde,0x1e,0xde, +0x64,0xcc,0x58,0x18,0x84,0x67,0xa8,0xb8,0x85,0x41,0x70,0x86, +0xb1,0x60,0xed,0xf1,0x4d,0x5b,0xe4,0x5f,0xc0,0x5d,0x2c,0xfc, +0x13,0x5d,0x6a,0xee,0x38,0xdc,0x0d,0xdf,0x62,0x76,0xb1,0xce, +0xf0,0x96,0x0b,0x0c,0x67,0xac,0x58,0x17,0x1c,0xee,0x42,0x6b, +0xe2,0x58,0x37,0x78,0xcb,0x83,0xd6,0x98,0xb3,0x9f,0x53,0x72, +0x8e,0xb0,0xf5,0xa0,0x5d,0x09,0x2c,0x13,0xcf,0x56,0x21,0x5b, +0x87,0xda,0xcc,0x51,0xf6,0x73,0x50,0x07,0xaa,0x1e,0x68,0x56, +0x1c,0x95,0x0c,0xc8,0x02,0x18,0x42,0x95,0xcc,0x0f,0xf8,0x3e, +0x0e,0xc2,0xa9,0x14,0xf7,0x6d,0x78,0x8d,0x49,0x60,0xef,0xe0, +0x6b,0x4c,0x0f,0x8b,0x83,0x60,0xca,0x8f,0x30,0x89,0x31,0x66, +0x17,0xe0,0x10,0xe6,0x45,0x4c,0xc5,0x3d,0xe2,0x02,0x32,0x73, +0x18,0x43,0x87,0x0e,0x1a,0x78,0x35,0x70,0x25,0xb3,0xc9,0xf1, +0x30,0x5b,0x9e,0x99,0x56,0x92,0x2c,0xc0,0xdb,0xa2,0x36,0x63, +0xc9,0x9a,0xe3,0x18,0x67,0x94,0x0d,0x3c,0x76,0x69,0x26,0x9d, +0x13,0x7b,0x58,0xc6,0xe1,0x1a,0x0c,0x61,0x1c,0x20,0xae,0x1e, +0xd7,0x53,0x18,0x10,0xca,0x34,0x72,0x74,0x05,0xbc,0x47,0x9e, +0x7f,0x83,0xed,0x77,0xaf,0x80,0x5f,0x6e,0xc0,0x49,0xef,0xa2, +0x0f,0x09,0xb4,0x75,0x33,0x72,0xb7,0x93,0xed,0xf1,0xf5,0xf9, +0xc0,0x47,0x91,0x64,0x02,0x8b,0xf6,0xc1,0xcc,0x83,0x30,0x32, +0x55,0x3b,0x23,0x24,0x2d,0x34,0x25,0xbc,0xb1,0x42,0xee,0x72, +0x74,0xcd,0x0d,0xcb,0x16,0x07,0x2f,0x79,0x6e,0x48,0xa1,0x7f, +0x81,0xef,0xdc,0x1d,0x13,0x76,0x8e,0xda,0x55,0x56,0x5f,0x79, +0xa4,0xa8,0x4d,0x06,0xd7,0x3b,0xa5,0x1b,0xe6,0x6c,0x94,0x94, +0x44,0xc4,0xef,0xbb,0xb1,0x1a,0x5e,0x81,0xed,0x5d,0xb8,0xfd, +0xb6,0xe1,0x7c,0x0c,0x31,0x83,0x10,0x7c,0x05,0xf3,0xd9,0x17, +0x40,0xf8,0x03,0x89,0x6e,0x06,0xc5,0x05,0x78,0xed,0x5e,0xfe, +0x8f,0xb2,0x24,0x36,0x6f,0x14,0xbc,0x35,0x0b,0x46,0xad,0x28, +0xee,0x90,0xe3,0x82,0xdb,0xb3,0xae,0xbb,0xdd,0x97,0xad,0x66, +0x5d,0xa6,0xcc,0x5e,0x82,0x53,0x17,0xcb,0x40,0x13,0x4f,0x12, +0x7c,0xc9,0x4c,0x7c,0xdc,0x85,0xd9,0x30,0x17,0xdc,0xba,0xd0, +0x0d,0xa6,0x1b,0x48,0x43,0x90,0x85,0x0f,0x0c,0x5f,0x04,0x75, +0xe3,0x25,0x4d,0xf2,0x43,0xf9,0xf1,0xb6,0xec,0x6b,0x32,0xf8, +0x33,0xeb,0xb5,0x3b,0x40,0xfd,0x09,0x87,0xd8,0x6d,0x3b,0x3c, +0x14,0x23,0xd8,0x14,0x3b,0xe6,0x5b,0xf6,0x44,0x41,0x46,0xdb, +0x01,0x21,0xb1,0x76,0x5f,0x55,0x97,0x0e,0xae,0x65,0xf7,0x26, +0x7d,0xb0,0x3f,0x49,0xa7,0xda,0xdc,0x95,0xdb,0xf9,0xc1,0xce, +0x3d,0x3b,0x79,0x9c,0x68,0x0f,0xef,0xb2,0xa1,0x46,0x16,0x3e, +0xf3,0x36,0xcb,0xb6,0x56,0x10,0x5d,0x98,0x67,0x8e,0xf3,0xd6, +0x58,0x5f,0x90,0xde,0xed,0x14,0xdf,0x3d,0xc7,0xde,0x31,0x25, +0x36,0x06,0x7a,0xf6,0xa7,0xd9,0xb8,0x31,0x81,0x1b,0x8c,0x8d, +0xab,0xdc,0xe4,0xa7,0xce,0x94,0x7c,0x94,0x00,0x1a,0xb2,0x13, +0xec,0xaa,0xdd,0x66,0x3b,0x9c,0x79,0xdf,0xd8,0x98,0x1d,0x41, +0x0a,0x07,0x36,0xd9,0x96,0xa9,0x63,0x5b,0xb3,0xf3,0x1b,0xf6, +0x0b,0x07,0x5a,0xf7,0x36,0xec,0x85,0xb7,0x64,0xa3,0x58,0xb8, +0x83,0x1e,0xe4,0x40,0xf7,0xde,0xd6,0xbd,0x20,0x93,0xe1,0x4b, +0x3d,0xd6,0x7d,0xb0,0x76,0xbd,0x17,0xbc,0xc1,0xc0,0xa0,0xd2, +0x4d,0x7e,0xfa,0x4c,0xc9,0xf5,0x04,0x60,0x64,0xa7,0xd9,0x65, +0xbb,0x2d,0x62,0x5d,0xfb,0x60,0x05,0x2a,0xcc,0xd9,0x83,0xb6, +0x4c,0x27,0xdb,0x9c,0x9f,0xdd,0x9a,0x24,0x0c,0x3c,0xcf,0x6c, +0xa4,0x4d,0x04,0xf3,0xd8,0xcf,0x8e,0x5d,0xbb,0xdc,0xf1,0xb9, +0xac,0x06,0xe3,0xb8,0x54,0x65,0xb2,0x32,0x39,0xc3,0x3c,0x47, +0x6e,0x32,0x6b,0xc6,0x1a,0x1c,0x6a,0x53,0x64,0x2d,0xbf,0x5b, +0x79,0xa9,0xe9,0x48,0xb7,0x0c,0xbc,0x59,0xe7,0x4d,0xa6,0x66, +0xab,0x6d,0x7d,0x2a,0x3d,0x2a,0xdc,0x4b,0x1d,0x3d,0xe4,0xe5, +0xfe,0x65,0x5e,0x25,0x9e,0xab,0x9c,0xe6,0x79,0xbe,0xef,0x97, +0x6f,0x21,0xef,0x50,0xb6,0x67,0xb6,0xe6,0xc8,0x30,0xb8,0xa7, +0x01,0x3a,0x1d,0x7a,0x38,0xfc,0x11,0xe2,0x09,0x74,0xe2,0x74, +0xec,0x7c,0x01,0xd3,0x8d,0x79,0x18,0x4f,0x22,0xeb,0x82,0x5a, +0x83,0x2a,0xcc,0x43,0xe5,0x45,0x16,0xd9,0xce,0xa9,0x9e,0x32, +0x2c,0xc0,0xb7,0x49,0xcf,0x1d,0xd1,0x61,0xce,0x71,0xd0,0xc6, +0xe1,0x6c,0x41,0x4d,0x5e,0x43,0x56,0xad,0x51,0xb6,0x3c,0xd4, +0xda,0xd7,0xd2,0xd7,0x51,0x86,0x4a,0xb6,0xa9,0x30,0xbc,0x2a, +0xa0,0x2e,0xb0,0x44,0xdb,0xc2,0xbf,0xc8,0x37,0xd7,0x35,0xd7, +0x55,0x1b,0x87,0xb0,0xb0,0x63,0x1a,0x59,0x80,0xd6,0x16,0x60, +0xc1,0x45,0x8c,0x59,0xbc,0x0a,0x05,0xc7,0x02,0x2b,0x39,0xcc, +0x6c,0xfd,0xfc,0x81,0x12,0x86,0xc9,0x60,0x2d,0xbb,0x7b,0x7d, +0x9c,0xc5,0x76,0x5b,0x99,0xef,0xce,0xc8,0x18,0x3b,0xc5,0x78, +0x36,0xd9,0x9c,0xb9,0xcd,0x5e,0x6e,0x55,0x9e,0x49,0x11,0x92, +0x4f,0x26,0x9e,0xfb,0x4c,0x07,0xb7,0xde,0x7a,0x11,0x4b,0xfa, +0x7d,0x69,0x03,0xd9,0x7e,0x60,0x5b,0x7c,0xcc,0xf6,0xe8,0xad, +0xf2,0xd8,0x83,0x6c,0x75,0x5d,0xd3,0xc5,0x8c,0xd3,0xb2,0x43, +0x93,0x9e,0x1a,0x8e,0x19,0x67,0x0e,0x1b,0x39,0x8f,0x59,0x53, +0x46,0x4c,0xd0,0x2b,0xb7,0x92,0x37,0x96,0x55,0x96,0x15,0x96, +0xc8,0x30,0xfe,0x18,0x14,0x70,0x09,0xf1,0xf1,0x09,0xb1,0xfc, +0xc3,0xb1,0x35,0x87,0x18,0x78,0x1f,0xb5,0x08,0x14,0xc0,0x84, +0x6e,0x9c,0x00,0x4e,0x9b,0xd0,0x09,0x47,0x99,0xc2,0x28,0xca, +0xa7,0x79,0xa6,0xa2,0x4e,0xf7,0x0b,0x90,0x6e,0xb1,0x58,0x44, +0x9a,0x71,0x23,0x97,0x56,0x96,0x52,0x92,0x54,0x68,0x93,0x21, +0x0f,0x5d,0xea,0xb8,0xc4,0xc6,0xbc,0xda,0x4d,0x9e,0x5f,0x98, +0x5b,0x91,0x55,0x25,0x5b,0x0e,0xaf,0x12,0x6c,0xc3,0xd3,0xd0, +0x5e,0x8b,0xec,0x91,0x07,0xf0,0xe6,0xf4,0x6e,0x60,0x58,0xdc, +0x6b,0x4a,0xba,0x3f,0x33,0xe5,0xa6,0x4d,0x21,0x47,0x61,0xa5, +0x11,0x87,0x2b,0xa7,0x92,0x23,0x9f,0x19,0x73,0xa0,0xdf,0x41, +0x55,0x74,0x54,0x33,0x27,0x5d,0xc7,0x73,0xc4,0x5e,0xfc,0xaa, +0x51,0x17,0xf4,0x24,0x0f,0xd4,0xe3,0x40,0xd0,0x9a,0x06,0xa3, +0x3e,0x63,0xdb,0xb5,0xbe,0xc0,0x51,0x53,0x58,0xf5,0x6b,0x4a, +0xa3,0xbe,0xc2,0x51,0x2f,0x60,0x48,0x96,0xe8,0x49,0x30,0x95, +0x55,0x16,0xa4,0x16,0xa7,0x94,0x19,0xa6,0xc8,0xb7,0xfb,0x44, +0x79,0x84,0x7b,0xcb,0xd0,0x54,0x4a,0x3f,0x5a,0x2f,0x8e,0x76, +0x3c,0xca,0x1a,0x89,0x43,0x88,0x34,0xfa,0x2f,0xe2,0x68,0x56, +0x1a,0x8d,0xdb,0xc8,0x5f,0xc5,0xd1,0x13,0x38,0x69,0xb4,0x35, +0x11,0x47,0x8f,0x93,0x46,0xbf,0x88,0x85,0x31,0x06,0xdb,0x48, +0x71,0x7e,0x7e,0x61,0x76,0xb1,0xec,0x23,0x76,0xd7,0x26,0x33, +0x57,0x7c,0xdb,0x39,0xcb,0x4e,0xfe,0xa8,0xfc,0x61,0xf5,0xfe, +0x2b,0x54,0x34,0x27,0x2c,0xfb,0xca,0x03,0x38,0x37,0x65,0x8b, +0x1c,0xdf,0xa8,0x5c,0xd2,0x18,0x7b,0x5c,0x06,0x84,0x8d,0x0a, +0x0a,0x0f,0x09,0x8f,0xac,0xf7,0x97,0x97,0x55,0xe4,0x96,0xa4, +0x57,0xca,0x2a,0xb0,0x89,0xdb,0x9f,0x9a,0x94,0x96,0x98,0x6e, +0xa7,0x94,0x07,0x9b,0x78,0xd8,0x5a,0xda,0xcb,0x70,0xfc,0x27, +0xa4,0x31,0xfa,0x68,0x50,0x4b,0x60,0x5e,0x9d,0xdc,0x29,0x67, +0x53,0x81,0xa5,0x52,0x06,0xaf,0xe1,0x9b,0xc4,0xd1,0xcb,0xc4, +0x77,0xb9,0x4f,0x81,0xa3,0xfc,0x42,0xe9,0xf1,0xf2,0xba,0x72, +0x2a,0xc1,0xa6,0x50,0xa6,0x88,0x36,0x90,0xca,0x19,0xaf,0x20, +0xf8,0x5d,0x19,0x7c,0xc7,0x8e,0xd6,0xc0,0xef,0x2a,0x68,0x8e, +0xdf,0x2d,0x27,0xf0,0x9d,0x3b,0x7e,0xc7,0xbe,0x83,0xa3,0xc9, +0x67,0xe9,0x1f,0xe5,0xf5,0x14,0x7b,0xd5,0xca,0x37,0xf9,0xaf, +0x08,0x9b,0x15,0x25,0x13,0x7f,0x88,0x25,0xab,0x0b,0xe6,0xe4, +0x2f,0x55,0x6e,0x76,0x90,0x5f,0x8a,0xbc,0xb3,0xf9,0x92,0xbf, +0x6c,0xe0,0x59,0x94,0x8a,0xf9,0x64,0x29,0x0c,0x33,0xc2,0x61, +0xe8,0x60,0x09,0xab,0xd9,0xf0,0xd9,0xcb,0xf1,0xa5,0xd1,0x63, +0xab,0x1d,0xe4,0x7f,0xf9,0xcb,0xe5,0xaf,0x52,0xa9,0xfe,0xc2, +0xaf,0xe8,0xce,0x57,0x9a,0x33,0x3f,0xb0,0x35,0x99,0x4a,0xea, +0xd7,0xbf,0x71,0x8d,0x43,0x15,0xe6,0x10,0x71,0x36,0x86,0x48, +0xb3,0xd5,0xef,0x2d,0xb4,0x13,0x1c,0x7a,0x13,0x86,0xb2,0x38, +0x14,0x35,0x09,0x0c,0x5d,0x80,0x43,0x59,0x1b,0x0d,0x18,0x3a, +0x97,0xe6,0x86,0xe8,0x45,0x1a,0xaa,0xeb,0x4e,0xe6,0x34,0x5b, +0x17,0xc9,0xa3,0x1c,0xad,0xf5,0x3c,0xfc,0x64,0xb0,0xe8,0x09, +0x29,0xf4,0xae,0x30,0xcf,0xb7,0xa2,0xea,0x3b,0xb4,0xd6,0xfd, +0x88,0x6f,0xc5,0x0b,0x18,0x98,0xa4,0x29,0x99,0x93,0xe0,0x6d, +0x41,0x31,0xc1,0xdb,0x65,0x30,0xed,0x42,0xdb,0x1a,0x18,0x63, +0x86,0x63,0x1c,0xb8,0xf8,0xb2,0x7d,0xe5,0x7b,0xcb,0x2d,0x12, +0xe5,0xbb,0x46,0x6e,0x99,0x1b,0xb4,0xbe,0xd1,0x57,0xae,0xac, +0x4e,0x69,0xdd,0x7f,0x58,0xd6,0x86,0x2b,0x58,0xa7,0x2d,0x4e, +0x5b,0x9d,0xb6,0x25,0x5b,0xc8,0x0f,0x25,0xd7,0xa4,0x54,0xa5, +0xca,0x90,0x9a,0xd4,0x7e,0x5c,0xc1,0xc1,0xfc,0xe4,0xbc,0x64, +0x99,0x38,0xb8,0x90,0x2c,0xfe,0xe4,0x93,0x16,0x9c,0x77,0x0f, +0x26,0xb6,0xe0,0xc4,0x07,0x26,0xd3,0x71,0x84,0x0d,0x8c,0x98, +0x89,0x33,0x6d,0x60,0xf7,0x5c,0x8c,0xb1,0x86,0x18,0x5c,0x82, +0x83,0xd4,0x2f,0x3f,0xfe,0x85,0x3d,0x94,0x99,0x59,0x2d,0xc0, +0xfc,0x8f,0x38,0xbc,0x66,0x49,0x4a,0x7c,0x2b,0x5c,0x72,0xdd, +0x6b,0xcb,0xe5,0x9b,0x2b,0x3d,0x6b,0x7d,0x4a,0x5e,0xc4,0x70, +0xbf,0xc0,0x44,0x82,0x63,0x8f,0x3d,0x16,0xbd,0xc6,0xf5,0xc0, +0x58,0xd4,0xe4,0x72,0x4b,0x72,0x2a,0x32,0xca,0xcd,0xf3,0xe4, +0x11,0x2e,0x7e,0x8e,0x3e,0xae,0x32,0x1c,0xcc,0x36,0xe4,0x6c, +0xa9,0x0c,0xae,0x0f,0x2a,0xd3,0xb6,0xde,0x5c,0xe8,0x98,0xe5, +0x99,0xe2,0xab,0x8d,0x3c,0x5b,0x98,0x19,0x56,0xe4,0x5b,0xe3, +0x57,0xaa,0x6d,0xef,0x5b,0xec,0x93,0xe3,0xaf,0x0c,0xd0,0x16, +0x23,0xb1,0x90,0x60,0x41,0x3e,0x7b,0xa9,0xb4,0xe7,0x50,0x55, +0xa3,0xec,0x90,0xa4,0xb0,0x86,0xb3,0x9c,0x87,0xbf,0xb5,0xff, +0xa6,0x60,0x99,0x05,0x96,0x5b,0x40,0x39,0xbe,0x89,0x3c,0x97, +0x6e,0xc9,0xc0,0x6b,0x6c,0x43,0x76,0xc6,0x21,0x01,0x34,0xa9, +0x40,0x7d,0x01,0xc3,0xba,0x8f,0x37,0x49,0x7b,0x69,0x43,0x4d, +0x59,0xbd,0xec,0x47,0x76,0x6b,0x40,0x54,0x60,0x44,0x50,0xb8, +0x32,0x28,0xcb,0x3f,0xcb,0xdb,0x57,0x9e,0x13,0x55,0x1c,0x9c, +0x17,0xb2,0x75,0xcb,0x96,0xe8,0x2d,0x5b,0xc3,0x33,0x02,0x73, +0x02,0xb2,0xbd,0x7c,0xe4,0x99,0xd1,0x45,0xc1,0x39,0x21,0x5e, +0x41,0x6e,0x21,0x8e,0xa1,0x45,0xf6,0xf2,0x33,0x65,0x47,0xab, +0x5b,0x9a,0x64,0xee,0xb0,0xab,0x8a,0x6b,0x74,0xec,0x76,0x3b, +0xe7,0x59,0xdc,0x28,0x37,0x2a,0xb2,0x29,0x71,0xa9,0x6c,0x6d, +0xaf,0xe9,0xce,0xea,0xa0,0xea,0xdc,0xda,0x16,0x46,0x73,0x11, +0x6e,0x7e,0x2e,0xae,0xae,0x16,0x87,0xbd,0xcf,0x44,0xdc,0x30, +0xdf,0x26,0xcf,0x9b,0x7c,0x68,0xd9,0x89,0x8d,0x32,0xf4,0x61, +0x1b,0x9b,0x2a,0xbb,0x73,0x4f,0xcb,0x2a,0x51,0x9b,0xdb,0x9f, +0x96,0x94,0x9e,0x98,0x6e,0x9d,0x2c,0x0f,0xd4,0xb3,0x30,0x5c, +0x6e,0x23,0x13,0x4f,0xa3,0x01,0x91,0x76,0x58,0x42,0x00,0x2e, +0x1a,0xa9,0x0e,0xc4,0xa9,0x9e,0x76,0x65,0xad,0x00,0xf3,0xc0, +0x97,0x93,0x46,0x6c,0x26,0x1e,0x26,0x4e,0x0e,0x4b,0x6c,0x2b, +0x9c,0xe5,0x97,0xeb,0x3b,0x5a,0x6b,0xcf,0xc9,0xc4,0x91,0xc8, +0x10,0xa3,0x1e,0x8b,0xfa,0x0d,0xf5,0x2e,0x1e,0xf2,0x33,0xf6, +0x87,0x6d,0xba,0x4c,0x5f,0xc0,0x62,0xc8,0x94,0x9c,0x09,0xae, +0x80,0x5d,0xec,0xc9,0x83,0x3d,0x29,0x6d,0xa9,0xa1,0x1d,0xf2, +0x69,0x7e,0x38,0x21,0x08,0x87,0xed,0x39,0x40,0xed,0x8f,0xbd, +0x87,0x13,0x8e,0x24,0xc9,0x70,0x1b,0xce,0xb7,0x84,0xf9,0xb8, +0x01,0x5f,0x52,0x87,0xdc,0x7d,0x44,0x29,0x57,0x4f,0xa3,0x2e, +0xac,0xe0,0xa4,0x0e,0x9c,0x4b,0x4e,0x52,0x67,0xc2,0x08,0x37, +0x49,0x89,0x54,0x83,0xfc,0x48,0x66,0xc0,0x8f,0xf7,0x59,0xf1, +0x65,0xdc,0x4c,0x4a,0x8f,0x14,0x5e,0x4b,0x3d,0x62,0xa1,0x94, +0x6f,0xd9,0xb8,0x79,0xd5,0x66,0x6b,0x19,0x46,0xc1,0x3b,0x24, +0xc7,0xad,0x68,0x61,0x8a,0x79,0x6b,0xb6,0x7c,0x5b,0x87,0xdf, +0xf5,0xcd,0xf5,0x32,0xf5,0x33,0x4c,0xb7,0xd4,0xcf,0x30,0xd9, +0xd3,0xa4,0xbe,0x51,0x44,0xf3,0xbe,0x67,0x98,0xec,0xa1,0x2f, +0xa7,0xbf,0xec,0xd5,0xcf,0x30,0x0d,0xfe,0xd7,0x77,0x8e,0xf2, +0x55,0x61,0x64,0xd3,0x2a,0x2c,0xb0,0x14,0xc5,0x76,0xac,0x61, +0x71,0xe9,0x26,0xe2,0x34,0xc9,0x78,0xc9,0xe2,0xb5,0x15,0x76, +0xf2,0xa2,0xdc,0x82,0xc2,0x9c,0x02,0x19,0x96,0x1e,0x81,0xbf, +0x70,0x85,0x35,0x39,0xb5,0x59,0x2d,0x32,0x50,0xd9,0x11,0xf4, +0x60,0x93,0x94,0x49,0xca,0xc4,0x0c,0xf3,0x2c,0xb9,0xeb,0x28, +0xfb,0xb5,0xb3,0x17,0x57,0xd9,0xcb,0x0b,0x0b,0xf2,0x0a,0x72, +0x0a,0x0a,0xcd,0xca,0xed,0x6a,0x9c,0x2d,0x9c,0xf5,0xbd,0x56, +0x05,0x14,0x5a,0xcb,0xaf,0x17,0x9d,0xad,0x3e,0xd2,0xd8,0xe5, +0x70,0xca,0xe3,0xaa,0x6f,0x7e,0xab,0x7c,0x75,0x91,0x51,0xa9, +0x75,0xcd,0x95,0x4b,0x6d,0xf7,0x32,0xbf,0x96,0x61,0xd1,0x32, +0x92,0x96,0x9d,0x96,0x93,0x92,0x27,0x83,0x95,0x6c,0xd8,0x02, +0xc7,0xd5,0x1b,0x0d,0x1c,0xeb,0xbc,0xda,0x02,0x7a,0x64,0x30, +0xc5,0x88,0x84,0x56,0x78,0xd5,0x7a,0x96,0xba,0x78,0xcb,0x4b, +0x03,0xca,0x9d,0x0a,0x5c,0x07,0x72,0xcc,0x8e,0xaa,0x04,0xf2, +0xcc,0x41,0x28,0xb5,0x90,0xf7,0xbb,0x12,0x85,0x3f,0xca,0x12, +0xfe,0x99,0x2b,0x01,0x9e,0xd2,0x5b,0xa4,0x0b,0x9d,0x61,0xfa, +0xc6,0x7e,0xa7,0x41,0x1f,0x3f,0x78,0xa7,0xcf,0x9d,0xc8,0x50, +0x87,0xcb,0x18,0x38,0xa2,0xa0,0x4e,0x35,0x85,0x74,0x48,0x17, +0xa5,0x2f,0x7a,0xaa,0xc5,0xcc,0x0e,0x29,0x53,0xb4,0xe7,0x9a, +0x25,0x43,0xf2,0xa4,0xf6,0xfb,0x93,0x07,0xef,0x53,0xe2,0xf6, +0xcf,0x7c,0x62,0x00,0x2f,0xd9,0xe7,0x53,0xda,0x34,0x9a,0x16, +0xb7,0x84,0x9c,0x91,0x81,0x4d,0x3b,0x3a,0xde,0x85,0x55,0x6d, +0x78,0x82,0x3d,0xa8,0xdc,0xaf,0x4c,0x4a,0xb3,0xca,0x95,0x07, +0x6d,0xb2,0x37,0xb0,0xf7,0xac,0x76,0x91,0x17,0x64,0xe7,0x17, +0xe5,0x94,0xc8,0x9e,0xce,0x56,0x6b,0x1e,0x6b,0x36,0xcc,0x40, +0xd7,0x0a,0x5f,0xb7,0x1c,0x48,0x3e,0x8e,0x12,0x63,0x06,0xce, +0xd5,0xd9,0x5e,0x4e,0xd6,0xc3,0x4c,0x73,0x9c,0xa9,0x6b,0x7b, +0x4e,0x1a,0xdd,0x29,0x8e,0x3e,0xc3,0xde,0x36,0xf9,0xbf,0xb9, +0x3a,0x7a,0x3d,0x44,0xdd,0x9d,0xfb,0x23,0xde,0xcd,0x3f,0xb8, +0x46,0xec,0x40,0xce,0xae,0x95,0x6a,0x2e,0xc1,0x38,0x76,0xe0, +0x1c,0x1b,0xe8,0xc6,0x3c,0xee,0x99,0xcb,0x84,0x9d,0xd2,0x02, +0xf5,0x17,0xd3,0xa8,0x97,0x33,0xa0,0x4b,0x32,0x58,0xa5,0x41, +0x46,0xf7,0xc0,0x78,0x4c,0xb9,0xb0,0x71,0x0d,0x7e,0x80,0xe3, +0x7b,0xbe,0xe1,0xc4,0x29,0xba,0x44,0x7a,0xd5,0x52,0x7c,0x95, +0x45,0x57,0xe4,0x08,0xfa,0x52,0x5d,0x98,0x66,0xc1,0xc0,0x4b, +0x6c,0x63,0x86,0x5a,0x36,0x7b,0x42,0x5a,0xbb,0x74,0xd7,0x92, +0x13,0xdf,0x5b,0x43,0x3a,0x2d,0x9a,0xf5,0x1b,0xd6,0x35,0x57, +0xc8,0xad,0xae,0x38,0x74,0x98,0xb7,0xcb,0xf0,0xda,0x1e,0xe2, +0xbd,0xd6,0xc3,0x6a,0xa5,0xc5,0x21,0x67,0xf9,0x85,0x8e,0x96, +0x9e,0x8a,0xeb,0x03,0xb9,0x1e,0xcb,0x54,0xac,0xda,0x17,0x6b, +0x09,0xae,0xb0,0x0a,0x92,0xe7,0xba,0xe5,0xda,0x29,0x1d,0x65, +0xb0,0x09,0x08,0x09,0xb1,0xf1,0x35,0xf7,0x73,0x94,0x49,0x04, +0x47,0xf4,0x3c,0x14,0xed,0x27,0xf7,0xa8,0xbf,0x67,0xc2,0xe6, +0x53,0xb7,0x2c,0xb3,0x46,0x86,0x4f,0x66,0x11,0xea,0x8c,0xd5, +0x07,0x96,0xda,0xf8,0xc9,0xf3,0xfd,0xf2,0x5d,0x73,0x9d,0x64, +0xb0,0x6a,0x2a,0x31,0x58,0xcc,0xc6,0xa1,0xb5,0x25,0x98,0x73, +0x61,0x63,0x96,0xae,0xc1,0xb7,0x1d,0xd5,0xc1,0x94,0xa6,0xb5, +0xdd,0xff,0x34,0x0b,0x5e,0xa7,0x17,0xa8,0x9d,0x31,0xcb,0x67, +0xce,0x98,0xbd,0x62,0x32,0x9b,0x6c,0xc1,0xdc,0x67,0xaf,0x54, +0xe5,0x1f,0x39,0x20,0x24,0x9f,0x4e,0x3c,0x7f,0x57,0x07,0x23, +0x12,0x06,0x74,0x05,0x6d,0x15,0xcf,0x91,0xff,0xb3,0xed,0x31, +0x42,0x6d,0xc3,0xb0,0x90,0x8b,0xd6,0xe4,0x0f,0x5a,0x1f,0x1d, +0x58,0x30,0x90,0x6b,0x6b,0x96,0x6a,0x2b,0xd9,0xe1,0xbd,0xdd, +0x67,0x9b,0xaf,0x0c,0x8d,0x2c,0x61,0x09,0x6b,0x3f,0x69,0xfd, +0xfc,0xb9,0xeb,0x2a,0xac,0xe5,0x87,0xca,0xaa,0xab,0x2b,0x6a, +0x65,0xf8,0xe1,0x61,0x18,0x0d,0xcd,0x33,0xa8,0x5d,0x90,0x66, +0xc5,0xc0,0x10,0xf5,0x17,0xbe,0x6a,0x04,0x90,0xf0,0x23,0x2e, +0xbd,0x20,0xb5,0x30,0xa5,0x48,0x26,0xbe,0xd2,0x8e,0x4f,0x59, +0xf5,0xd7,0xe0,0x13,0x0b,0x65,0xe3,0xf1,0x3c,0xb9,0x04,0xcd, +0xab,0x38,0x6c,0xb6,0x26,0xd0,0xbc,0x12,0x9b,0x07,0x94,0xf9, +0xc7,0xc5,0x45,0xa4,0x11,0xe7,0xc0,0xab,0x30,0xae,0x11,0xc7, +0x01,0x63,0x8e,0xcc,0x1a,0xee,0x40,0xc9,0xfe,0xb2,0x84,0x12, +0x9b,0xfd,0xf2,0xc8,0x39,0x01,0xcb,0x3d,0x2d,0xea,0x7c,0xe5, +0x99,0x25,0xca,0xca,0xb4,0x1a,0xd9,0xc7,0xf8,0x2a,0x4e,0xb6, +0x87,0x3f,0xb1,0x81,0xcb,0x0c,0x97,0xd3,0x41,0x39,0xc9,0x3f, +0x3a,0x7b,0xe4,0x8c,0xf2,0x2b,0x59,0x32,0x96,0xb5,0x43,0x59, +0x32,0x9b,0x36,0xa5,0x61,0xd3,0xc7,0x4b,0x2b,0x1a,0xe5,0x8b, +0xce,0x9a,0x5c,0xdd,0xfc,0xa1,0x0c,0xf3,0xcf,0x92,0x9d,0xc9, +0xd1,0xf1,0xdb,0xb6,0x46,0x51,0x0f,0xfb,0xb3,0xfb,0x4d,0x33, +0x60,0xb8,0x05,0x0e,0x7f,0xd7,0xee,0x33,0x36,0x66,0x8c,0xdb, +0xe4,0x8d,0xf3,0xaa,0xdc,0xe5,0x47,0x3f,0xca,0xba,0x10,0x7f, +0x57,0x96,0x2c,0xbd,0xdc,0x06,0x7f,0x65,0x0f,0xec,0xff,0x60, +0xdf,0x0e,0xfe,0x28,0x0e,0xae,0x29,0x63,0x34,0xc5,0x58,0xd5, +0x9d,0x81,0x19,0xe8,0x58,0x71,0x01,0xd9,0x9a,0x16,0xfd,0xc1, +0x96,0xad,0x31,0xdb,0xe5,0x71,0x69,0xbf,0xd7,0xd5,0x4f,0x4c, +0xd8,0x47,0x5d,0xfd,0x8f,0xc7,0xd6,0x54,0x33,0xd4,0x52,0x1a, +0x45,0x9e,0xe3,0xe8,0xe3,0xbc,0x01,0x9d,0x14,0x99,0x4a,0x41, +0xd2,0x4a,0x93,0x4b,0x93,0x0a,0xa8,0x21,0x12,0xb6,0xc2,0x79, +0x99,0x9d,0x99,0xec,0xe6,0xf4,0x76,0x60,0x1a,0xf1,0x30,0x9e, +0x87,0x23,0x8d,0xc8,0x76,0x3e,0xa8,0xe7,0x2a,0x3c,0x0a,0x0a, +0xf3,0x2a,0xb3,0xaa,0xb5,0xc1,0xa5,0x9d,0x95,0x0c,0xc2,0xc9, +0xec,0xf6,0xbb,0xec,0x6c,0x14,0x48,0x17,0x2c,0x31,0xe3,0x70, +0xc9,0x54,0xd2,0x79,0xd7,0xbc,0xcf,0xc5,0xb7,0x84,0xed,0xed, +0x9c,0x94,0x4d,0xfd,0x4c,0xd4,0xd3,0xb3,0x16,0x9f,0xb4,0x52, +0x2f,0x9f,0xc3,0xcf,0xad,0x09,0x0a,0x73,0x40,0xe0,0xe0,0x6d, +0xda,0x09,0x84,0x4f,0x51,0xe0,0x8e,0x68,0x81,0xf0,0x80,0xe6, +0x03,0x38,0x9c,0xb1,0xe2,0xad,0x7f,0xe6,0x4c,0x3f,0x29,0xff, +0xb4,0x3a,0xed,0x8a,0x2c,0x91,0x4d,0x5d,0x76,0xde,0x17,0x14, +0x8e,0x6a,0x67,0x7a,0xd4,0xa1,0x4d,0xb5,0x71,0xbf,0xdb,0x99, +0x56,0x9e,0x25,0xfd,0x2e,0x74,0x88,0x83,0xbc,0xdf,0xa9,0x96, +0xed,0xf2,0x7d,0xe6,0x49,0x17,0x3a,0xfc,0xdf,0x3d,0x69,0xe8, +0xcd,0x20,0xfd,0x0e,0x74,0x71,0x93,0xbc,0xdf,0xa5,0x1e,0x48, +0xa9,0x0e,0xb1,0x2a,0x6f,0xf2,0xcc,0x81,0xde,0xc8,0x86,0xcd, +0x5e,0x8a,0x2f,0x8d,0x50,0x3b,0xd0,0x4f,0xff,0x72,0xe9,0xab, +0xfd,0xff,0xd4,0x81,0x6e,0x5f,0xca,0x49,0xfb,0xbf,0x23,0xd2, +0x6c,0x08,0x11,0x67,0x73,0x26,0xf8,0xfa,0xcf,0x0e,0xb4,0x8d, +0x06,0x0e,0xbd,0xdd,0xef,0x49,0xbf,0x41,0x3d,0xe9,0x79,0x7f, +0xc4,0x83,0x86,0x4a,0x08,0x27,0x37,0xe1,0x65,0x95,0xd6,0xed, +0xde,0x37,0x59,0x23,0x7f,0x3f,0x5b,0x41,0x53,0x54,0xc0,0x97, +0xe4,0x4c,0x55,0xc9,0xb1,0x14,0x21,0x81,0x35,0x4c,0xa9,0xf2, +0x3d,0xa3,0x10,0xb5,0x6f,0x4b,0x83,0xd9,0xd5,0xc1,0x0d,0xc7, +0x84,0x65,0xac,0x61,0xb0,0xc3,0x6a,0x5e,0x1a,0x32,0x9f,0xd5, +0x54,0x39,0xc1,0x37,0xa4,0xd9,0xbf,0xd8,0x88,0xef,0x7d,0x73, +0xbe,0x4a,0x0b,0x5f,0xbe,0x49,0x77,0x82,0xd5,0xcf,0x75,0xf4, +0x12,0x51,0x53,0x5d,0xf7,0x40,0x8b,0x62,0x10,0x35,0x6f,0x4b, +0x43,0x9e,0x61,0x80,0x4a,0x71,0x32,0xb1,0x2d,0xf2,0x3b,0xca, +0xab,0xde,0xbc,0xdd,0xab,0x05,0x2f,0x2f,0x64,0x35,0xe1,0x4b, +0x0d,0x71,0x08,0x7b,0x31,0xd7,0xc1,0x50,0xb8,0xca,0x1e,0xcb, +0x6d,0xb8,0xc8,0x8b,0x83,0x6f,0x4b,0xda,0xec,0x7a,0x77,0x5f, +0xc3,0xad,0x42,0x1c,0x7b,0x6c,0xab,0x7b,0xc9,0x7a,0x85,0xa4, +0x50,0x63,0x15,0x8b,0xc9,0x42,0x7c,0xb9,0x57,0x6b,0xbe,0xea, +0x4d,0xf6,0x68,0x51,0x71,0x33,0xa5,0xd9,0xaa,0xbf,0x4e,0xd2, +0x9c,0x4f,0xa1,0xf4,0xd5,0x3d,0xd0,0xea,0xc3,0x20,0x0e,0xb9, +0x2d,0x69,0xf6,0x63,0xf8,0x56,0xfc,0x9a,0x2c,0x04,0xda,0xef, +0xb6,0xea,0x4d,0xee,0xa8,0x5f,0x91,0x2d,0xaf,0x29,0x1e,0xc2, +0xa1,0xea,0x98,0xc9,0x17,0x1b,0x72,0x8f,0xf1,0x57,0x39,0x43, +0x87,0xdc,0x8b,0x82,0x38,0x78,0xbe,0xa4,0xcd,0xad,0x2f,0x71, +0x3f,0xb6,0x95,0x8f,0xe3,0x0c,0xb7,0xfa,0xba,0xaf,0xd7,0x91, +0x14,0x74,0x53,0xb8,0xc3,0x0c,0xd2,0x5c,0x5c,0x74,0x54,0x50, +0xbd,0x39,0xbf,0x97,0x8e,0x76,0xa1,0xba,0x8e,0x8a,0x96,0xbe, +0x3a,0x71,0xc8,0x7c,0x49,0x53,0x5d,0x37,0x5d,0x83,0xe2,0x90, +0x34,0xd5,0xa1,0x97,0x9f,0xe1,0x28,0xa1,0x78,0x6d,0xfd,0xfc, +0x8d,0x84,0xde,0x37,0x6f,0xab,0xe8,0x68,0x6f,0xd2,0x7e,0x87, +0xa0,0x80,0x9c,0xf1,0xad,0x32,0x4c,0xe1,0x13,0xb8,0x63,0x29, +0x25,0x55,0x67,0x74,0x44,0xed,0xf9,0xd2,0x60,0x6e,0xb5,0x43, +0xb0,0x21,0xbf,0x8c,0x3b,0xd6,0x10,0xbc,0x5a,0x90,0x86,0xdc, +0xe6,0x34,0x55,0x3c,0xc5,0x7a,0x13,0xe9,0x0c,0xcd,0xef,0x7d, +0x93,0x33,0x2a,0xf6,0x6f,0xe6,0x69,0x1d,0xc5,0x4a,0xeb,0x44, +0xcd,0xf9,0xd2,0x90,0xfe,0xba,0xe9,0x1a,0x7d,0x18,0x68,0x17, +0x51,0xb3,0x0f,0x03,0x18,0xfd,0xd6,0xbb,0x14,0xea,0x27,0xdd, +0x87,0x70,0x57,0x2e,0x57,0x5d,0xbb,0xdf,0xda,0x1f,0x29,0xba, +0x2f,0x8e,0xee,0xf2,0x6b,0xf8,0xea,0x4c,0x73,0xa7,0x8d,0xbe, +0xcf,0xe2,0xe8,0xa2,0xa3,0xd6,0xcf,0xaf,0x66,0x28,0xc5,0xa9, +0x54,0xb4,0x54,0xb0,0xc7,0x6a,0xda,0xeb,0x1a,0x1a,0xdc,0x6a, +0xe5,0x13,0x46,0xe3,0xbb,0xf3,0x51,0x6e,0x93,0x6b,0xa5,0x0e, +0xa5,0x54,0x76,0xbc,0x52,0x26,0x46,0x9e,0x23,0xe6,0x95,0xeb, +0xab,0x0d,0x8a,0xfc,0x6d,0xe5,0xc7,0x03,0x4e,0x78,0x74,0xba, +0xc9,0x60,0xf5,0x47,0x44,0x17,0xe7,0x4c,0x58,0x80,0xcb,0x7d, +0x94,0xd4,0x2d,0xd1,0xab,0x00,0xd9,0xc3,0x8b,0xb0,0x4c,0xd6, +0xcb,0x4b,0x56,0xcf,0x62,0x62,0x86,0x37,0xca,0x67,0x6e,0xc6, +0x57,0xb7,0x21,0x1f,0x1b,0x6f,0x23,0x3f,0xba,0xaf,0x6b,0x5f, +0x7b,0xa2,0x6c,0x3a,0x1a,0xda,0x80,0xe1,0x4e,0x6e,0x8e,0xa7, +0xd5,0x6c,0x77,0xbe,0xd0,0x8e,0x79,0xd4,0xd8,0x74,0xea,0x3b, +0x9d,0x24,0x58,0xdb,0xa2,0x8e,0x89,0x29,0xbe,0x09,0x8f,0x48, +0xe7,0x28,0xf8,0x62,0x12,0x87,0x2f,0xe1,0xa0,0x1a,0x97,0xaf, +0xbf,0x62,0x92,0xb0,0x1e,0x65,0xe6,0x2c,0x18,0xe2,0x23,0x22, +0x26,0xa9,0xfc,0x99,0xb5,0xac,0x94,0xd4,0xeb,0xcf,0xa8,0xd6, +0x6b,0x75,0xa2,0x37,0xf7,0xdd,0x27,0xcc,0x89,0xd6,0xfa,0xc6, +0x93,0x3a,0x17,0xac,0xda,0x66,0xce,0xb6,0xb7,0xb1,0x08,0xe7, +0x8f,0x84,0x30,0x55,0x69,0x79,0x25,0x1d,0x8a,0xd6,0x42,0x7f, +0x57,0x61,0x07,0xe7,0x12,0xe0,0x61,0xef,0xce,0xe3,0xdb,0xa8, +0xc1,0x18,0x50,0x1c,0x5a,0x7f,0x00,0x07,0xa3,0x75,0xe3,0x44, +0xbb,0x3e,0x28,0x67,0x71,0xb8,0x02,0x53,0x18,0x53,0xb0,0x5e, +0xc4,0xc5,0xc1,0x1d,0x92,0x40,0x45,0xc5,0x18,0x56,0xf3,0x27, +0x93,0x7f,0x33,0x3a,0xfc,0x25,0xe9,0x3b,0x22,0xfe,0x89,0x6b, +0xcf,0x6c,0xa9,0xae,0x4c,0x76,0x5f,0xcf,0x4b,0x6f,0x5e,0x10, +0x79,0xae,0x27,0xab,0xb4,0xa2,0x2c,0x3d,0x74,0x21,0xfd,0x79, +0x51,0xfc,0x33,0x07,0x1a,0x9e,0xed,0x86,0x16,0x7e,0xce,0x7a, +0xdb,0xf9,0xdd,0xec,0xf9,0x1d,0x9e,0x55,0x8e,0x0a,0xa7,0xcd, +0xce,0xc6,0xdb,0x84,0xb8,0x4f,0xd6,0x4b,0x75,0xac,0xd8,0xa0, +0xf5,0x7f,0x05,0xa1,0xa9,0x3a,0x35,0xe0,0x01,0xcb,0x7b,0x1d, +0xd5,0x01,0xcb,0xff,0x1b,0xc6,0xf6,0xe1,0xc0,0x8f,0xcd,0x96, +0x8e,0xed,0x79,0xe1,0xf1,0x5f,0xc1,0x45,0x86,0xb3,0x06,0x32, +0x40,0x3e,0x2c,0xdf,0x42,0xee,0x1d,0x3e,0xf3,0xdd,0x1d,0xf7, +0xce,0x79,0xd9,0x82,0xf7,0x7e,0xc6,0xf1,0x60,0x54,0x41,0x8f, +0xce,0xe1,0xc2,0xb2,0xaa,0xd6,0x3c,0x1f,0xe7,0xac,0xbe,0x60, +0xdf,0xde,0x0e,0x15,0x1b,0x14,0x8b,0x37,0x99,0xbd,0x33,0xa6, +0xcb,0xf9,0x72,0x84,0x50,0xb6,0x83,0x69,0xd8,0x76,0xc0,0xc5, +0x4a,0xc7,0xd4,0xd7,0xd3,0xc5,0x26,0xa0,0xe0,0x84,0x37,0x6f, +0x6e,0xc5,0xac,0xab,0x6a,0x75,0xb8,0xa4,0x80,0x1b,0x5a,0xe7, +0xbb,0xbb,0xae,0xe5,0x09,0x16,0x4d,0x8c,0x5e,0x50,0x88,0x8b, +0x95,0xc2,0xc0,0xeb,0xc3,0xa7,0x42,0x0e,0x6c,0x6f,0xe0,0x60, +0x8e,0xfe,0x93,0x89,0xe3,0xd7,0x8f,0x45,0x5d,0x5c,0x77,0x66, +0xcc,0x23,0x1e,0xbe,0xde,0x43,0x2e,0x36,0x77,0xde,0xc8,0x17, +0x4c,0x9a,0x98,0xb5,0x21,0xa1,0x1e,0x76,0x0a,0x53,0xef,0xf3, +0xdf,0x08,0x9f,0x71,0xdf,0x94,0x9d,0xef,0x6e,0xc8,0x71,0xdf, +0x98,0xce,0xf7,0xd4,0x31,0xd7,0x82,0x1c,0xbb,0x56,0x2a,0x46, +0x1b,0x4c,0x43,0x63,0x34,0xe9,0x99,0xfa,0x8d,0x20,0x2d,0x83, +0x4f,0xc9,0x37,0x15,0x17,0xba,0xda,0x6a,0xf4,0xde,0xe5,0xb7, +0xe3,0x3c,0xba,0xe1,0x6e,0xa8,0x26,0x92,0xea,0xd4,0x7e,0x99, +0x15,0x9d,0xed,0xe6,0x1e,0x1d,0xda,0x27,0xb3,0x52,0xd5,0x2f, +0x60,0x19,0xf4,0x4e,0xec,0x0b,0xfb,0x5b,0x56,0x9d,0x5f,0x79, +0xb0,0x8f,0x33,0xd7,0xd4,0x3f,0x8b,0xaa,0x8b,0xaa,0xfa,0xa3, +0x18,0x5f,0xeb,0x63,0x54,0xc0,0xe9,0x95,0xb6,0x41,0x6e,0x66, +0x91,0xfc,0x2e,0xca,0x28,0xdf,0x2c,0x57,0x85,0x6b,0x90,0x8f, +0x75,0xa8,0xb0,0xf3,0xcc,0x52,0x75,0xd8,0x62,0xa3,0xbe,0xf0, +0xe1,0xc5,0xd5,0x65,0xd5,0xc9,0x7d,0xe1,0xc3,0xaf,0xf5,0x89, +0xbd,0x90,0x6b,0xcb,0xed,0xfd,0x9d,0x2d,0xa3,0xf9,0xb8,0x6b, +0xea,0xab,0x96,0x51,0xa1,0xb7,0x54,0x2d,0xf4,0x06,0x4e,0xdd, +0x5b,0xaa,0x9c,0xc8,0x26,0xb7,0x29,0x41,0xf3,0x62,0x64,0x52, +0x68,0xfb,0x59,0xb0,0x6a,0x42,0x2b,0x58,0x00,0xe6,0x8d,0x68, +0x0e,0x72,0xee,0xc3,0xe4,0x9b,0xd9,0xc7,0xab,0x64,0x9f,0x4a, +0x27,0x89,0x58,0x08,0xb3,0xf1,0x7f,0x70,0x10,0x97,0x66,0xc3, +0x3c,0x60,0xeb,0x32,0x94,0xf5,0x82,0xf8,0x0e,0xa6,0x4a,0x97, +0xa8,0x26,0xb8,0x16,0x4d,0x4e,0x35,0x74,0x3c,0xca,0x16,0x0c, +0x0a,0x99,0x75,0xd1,0x11,0xce,0xde,0x0a,0xd7,0xe0,0xbe,0xf0, +0xf4,0x3f,0xc2,0x1b,0xc7,0x9f,0x45,0xa7,0xb7,0x3f,0xbd,0x68, +0x95,0x55,0x5f,0x54,0xe5,0x5b,0x5c,0xd0,0x66,0xbf,0xe0,0xa0, +0x90,0x62,0x7d,0xb9,0x32,0x8d,0x26,0x75,0x74,0x7a,0x7c,0xb5, +0x71,0xfd,0x4d,0xde,0x4c,0x1d,0xfd,0x3e,0xbb,0xa4,0xb4,0x24, +0xb7,0x3f,0xe8,0xbc,0xc7,0x94,0x75,0x93,0x79,0xe9,0x36,0x7e, +0x46,0x4e,0xd5,0x37,0x7e,0x5a,0x20,0x18,0x96,0x32,0x46,0x91, +0xa1,0x3e,0xee,0x0a,0xeb,0xe0,0xe3,0x8f,0x05,0x18,0xc4,0x3d, +0xca,0xed,0x69,0xad,0xc8,0x0e,0x30,0x48,0xe3,0x7b,0x2a,0x98, +0x4f,0x02,0x1d,0xeb,0x37,0x29,0x26,0x99,0xbf,0x8f,0xfa,0xb8, +0xa9,0x73,0xd2,0x97,0x02,0x14,0x69,0xb5,0x14,0xd4,0x76,0x51, +0x6b,0x61,0xd1,0x65,0xb1,0x6e,0xe5,0x82,0x38,0xb6,0x73,0xeb, +0xe6,0x3a,0x6b,0xc5,0x12,0x8b,0xbe,0x98,0xff,0x1d,0xef,0x5f, +0x17,0x72,0xae,0x10,0x7b,0xff,0xe3,0xdf,0x08,0x4f,0xb8,0xa7, +0x45,0xc7,0x1b,0x0f,0x15,0x3b,0xac,0xe4,0xd1,0x82,0x5b,0xe9, +0xe7,0xe8,0xc2,0x6b,0xfe,0x34,0x8e,0x2a,0xb8,0x75,0x31,0xd1, +0xce,0x41,0x0a,0xd7,0xd8,0xbe,0xe1,0x3c,0x84,0x37,0x1a,0xfb, +0x87,0xf3,0x9a,0xcb,0xd1,0x35,0xfa,0x0e,0x76,0x38,0x55,0x3d, +0x9c,0xb0,0xa0,0xd0,0xd0,0x90,0x50,0x19,0x7c,0xb1,0x72,0x43, +0x1c,0xd7,0xbc,0x23,0xb2,0xdc,0x55,0xb1,0xde,0x67,0x2e,0xda, +0xa0,0x65,0xd1,0xdc,0xf3,0xd5,0xca,0xf2,0xe6,0x03,0x42,0xc2, +0xfa,0xcb,0xa0,0xcf,0xe6,0x9b,0xa7,0xa6,0xa5,0x1c,0x4c,0xcd, +0xd0,0xde,0xce,0xe1,0x1b,0x85,0x46,0xb7,0x8e,0x55,0xd6,0xc1, +0xa0,0x4c,0xbe,0x37,0x49,0x7c,0x8f,0xcc,0xc5,0x35,0xc1,0x1b, +0x12,0xef,0x32,0xe2,0x9f,0x57,0xf6,0x66,0x5c,0x06,0x6b,0xae, +0xb8,0xeb,0x2e,0x26,0x32,0xd7,0xa8,0xf5,0x04,0x57,0xe0,0x25, +0xf0,0x67,0xc4,0x96,0x23,0xe4,0x51,0x5a,0x49,0x76,0xb6,0xb2, +0x8f,0x3b,0xd3,0xc3,0xe7,0x5a,0x4c,0xe5,0x25,0x53,0xac,0x22, +0x7e,0x51,0x5d,0x0f,0x05,0x78,0x9b,0xfb,0x22,0xbd,0xbb,0x30, +0x2f,0x29,0xc4,0x3c,0x85,0x3f,0x96,0xc7,0xdc,0x8e,0xf4,0xae, +0xb3,0x51,0xcc,0x77,0x9f,0x8e,0xa6,0x68,0x5a,0x35,0xe3,0x93, +0xb6,0x92,0xba,0x3b,0x4a,0xc1,0xb0,0x90,0x31,0xda,0x16,0x1b, +0x1c,0xa8,0x80,0xfd,0xdf,0x92,0x35,0xa1,0xae,0xc1,0x3e,0x91, +0x1d,0x4f,0x79,0xd0,0xe4,0xbe,0x55,0xb6,0x97,0xe6,0x65,0xf9, +0xe8,0xf2,0x9a,0x20,0xa9,0x32,0xff,0xe5,0x17,0x12,0x44,0x56, +0x92,0xff,0x5b,0xd1,0xda,0x31,0x59,0xda,0xf2,0x4f,0x3f,0xa2, +0x20,0xee,0x44,0x83,0x7f,0x12,0xc6,0xbd,0x7e,0x12,0xf9,0x9c, +0xbd,0x51,0xd3,0xf6,0xa1,0xa0,0xda,0x01,0xc3,0x2e,0x4f,0xe5, +0x16,0xb9,0x5a,0xad,0x10,0x7a,0x77,0xe0,0x30,0x0e,0x0e,0xaf, +0xfc,0xb7,0xda,0x34,0xef,0x39,0x11,0xd5,0x25,0xd5,0xa5,0xde, +0x4b,0x6c,0x49,0x6f,0x03,0x51,0xa5,0xa9,0xd2,0x7a,0xd3,0x38, +0x69,0x1a,0x18,0x90,0x7f,0xb2,0xfa,0x03,0xa8,0xe5,0xfd,0xcb, +0x06,0xe1,0x44,0x4b,0x6a,0x6f,0xfc,0xd3,0x8d,0xd0,0x2e,0x16, +0x72,0xcf,0x1e,0x52,0x7b,0xee,0xa1,0xf7,0xef,0x7c,0x4a,0xe5, +0x1f,0x6e,0x19,0x04,0xf5,0x46,0x91,0x4e,0x40,0xf3,0x53,0xe2, +0x15,0x69,0xb3,0x74,0x85,0x13,0x67,0xc3,0x5f,0x09,0x22,0xac, +0x02,0x64,0x11,0x31,0x92,0x00,0xa2,0x1e,0xe2,0x8b,0xb8,0xdf, +0x98,0x81,0x7f,0x23,0xb8,0x2c,0x62,0xea,0xca,0x49,0x7c,0x9b, +0x53,0xd7,0x85,0xc2,0xf3,0xa9,0x77,0xb4,0xe1,0x2b,0x1c,0x8f, +0x73,0x59,0xa5,0xa9,0xfa,0xc3,0xed,0xb5,0xd9,0xea,0xf8,0x7a, +0xa5,0x92,0x11,0x27,0xea,0xe0,0x7c,0x82,0x77,0x41,0x06,0x77, +0x59,0x7c,0x80,0xd5,0x24,0xbe,0x7a,0x6f,0x6d,0x93,0x0e,0xdc, +0x45,0x19,0x3b,0xd0,0xef,0xad,0x4b,0x85,0xf0,0x3e,0x81,0x59, +0x0f,0x1f,0xdd,0x4c,0x83,0x77,0x64,0x49,0x6c,0x1a,0x8e,0xfc, +0x66,0x19,0x2c,0x98,0x50,0x71,0x44,0x8e,0x3e,0x30,0x78,0xe5, +0x5d,0x18,0xa9,0x03,0x76,0x7a,0x68,0xc7,0xe1,0xd8,0xd5,0xb3, +0xa8,0x4f,0xcc,0xf0,0x62,0x20,0x78,0x90,0x96,0x0b,0x87,0xee, +0x16,0x7e,0xb6,0x29,0x5b,0x1e,0x34,0xc3,0x65,0xae,0xdd,0x06, +0x19,0x3e,0x76,0x20,0x1d,0x97,0x6b,0xbe,0xcf,0xb8,0xb6,0x29, +0x43,0x1e,0xb5,0xc2,0x65,0x8c,0xcd,0xba,0x17,0x70,0xf7,0x22, +0xbb,0x77,0x28,0x79,0xff,0xe4,0x8a,0xe3,0x16,0xe7,0x2e,0x75, +0x5e,0xbc,0xd0,0x76,0xca,0xa6,0x5e,0x6e,0xbc,0x5a,0x7f,0xe3, +0x26,0x07,0x99,0xf7,0xb1,0x88,0x33,0x57,0x75,0xae,0xeb,0x4b, +0x27,0x71,0x38,0xa7,0x34,0xa2,0x1e,0x55,0x6b,0x56,0x56,0x93, +0x00,0x17,0x93,0xb8,0x74,0x94,0x3d,0x98,0x02,0xef,0x8d,0x95, +0x49,0xf7,0xc4,0x51,0xc4,0x04,0x16,0x73,0x11,0x38,0xd8,0xf0, +0x7d,0x7c,0x75,0x52,0x83,0x9d,0x1c,0xc8,0xf7,0x67,0xe1,0x65, +0x25,0x8c,0x96,0x35,0xbc,0x80,0x7b,0x54,0xe9,0xbd,0x0c,0x41, +0xfe,0xd1,0x94,0xcf,0x5d,0xbf,0x93,0xc1,0x9e,0xc3,0x58,0x04, +0x63,0xf4,0x71,0x0c,0x2a,0x4d,0x60,0x2b,0xeb,0x36,0x6a,0xee, +0x34,0x7c,0x7b,0x7c,0x8d,0xa5,0x1c,0x86,0x7d,0xf1,0xed,0xd7, +0x69,0x30,0x58,0x96,0x24,0x91,0x1e,0x91,0x24,0xb1,0xf9,0x38, +0xec,0xeb,0x19,0xf0,0xa7,0x71,0x2f,0xe2,0x66,0xe0,0xe7,0xd2, +0x28,0xd2,0x90,0x55,0x9f,0x5d,0x93,0x2b,0xf3,0x84,0x11,0x4b, +0x30,0xc6,0x1c,0x62,0x70,0x2d,0x66,0x98,0x8b,0x5f,0x74,0x62, +0x09,0xac,0x85,0xf8,0x4e,0x8c,0xbf,0x0e,0x13,0xca,0xb8,0x9a, +0xd0,0xfa,0xd0,0x86,0xb0,0xa2,0x4e,0x39,0x2e,0xbe,0x3c,0xef, +0x82,0xcb,0x4d,0xd9,0x1a,0xd6,0x71,0xd6,0xac,0xb5,0x38,0x71, +0x9d,0x0c,0x2e,0x80,0x2e,0xc9,0xd0,0x3b,0x62,0x7e,0xcd,0x46, +0x86,0xf5,0xec,0xc5,0xe6,0xee,0x2e,0xe5,0x69,0x19,0xbc,0x27, +0xc5,0x91,0xc2,0xaa,0xb2,0xee,0xac,0x46,0xf3,0x3c,0x79,0x88, +0xa5,0xb7,0x79,0x70,0x80,0x0c,0x4f,0x7c,0x45,0xf2,0xfd,0x0a, +0x1c,0x8a,0x8c,0x3b,0xf2,0xe5,0xa1,0x0d,0x7e,0xad,0x3e,0x75, +0x2f,0x62,0x58,0x17,0xa5,0x91,0x04,0xc2,0xf1,0x00,0x66,0x18, +0x8a,0x4f,0x8f,0x61,0x05,0x1c,0x80,0x3d,0x47,0x71,0x0f,0x38, +0xea,0xa1,0x23,0x86,0xbf,0x88,0x0d,0x3d,0x4d,0xd2,0x23,0x3b, +0x0e,0x46,0xef,0x8b,0xd9,0x11,0xb3,0x43,0xbe,0x6b,0x3f,0x5b, +0x56,0xdb,0x70,0x26,0xeb,0x94,0xac,0x66,0xda,0x13,0xb3,0xb1, +0x13,0x6d,0x60,0x0d,0xe7,0x39,0x7b,0xde,0xc8,0x59,0xeb,0x8a, +0x1c,0xe4,0xd5,0xc5,0x65,0xa5,0xf9,0xc5,0x32,0x3c,0xd8,0x09, +0x15,0x5c,0xfc,0xde,0x7d,0xf1,0xbb,0xf8,0x07,0x23,0xab,0x2a, +0x18,0xb8,0x1b,0x4c,0xac,0xd3,0x19,0x1c,0x69,0xc7,0x85,0xc7, +0x26,0xe4,0x0b,0x10,0xf0,0x11,0x94,0xe2,0x31,0x2c,0x3d,0xc7, +0xed,0x41,0x85,0xd7,0x4a,0x7c,0x69,0x7d,0x91,0x2d,0x5d,0x1d, +0x1f,0x36,0x7c,0xb6,0x17,0x26,0xca,0x4e,0x61,0x04,0x6b,0x95, +0x11,0xda,0xcc,0x1f,0x61,0xab,0xd3,0x32,0x0e,0x09,0x33,0x28, +0xa5,0x74,0xe6,0xac,0x60,0xed,0x8b,0xb8,0xbb,0xea,0x8e,0x6f, +0x12,0x17,0x7c,0xdb,0x6c,0xca,0xfc,0xc5,0x25,0x96,0xf2,0x8a, +0xf2,0x92,0x8a,0xfc,0x1a,0x99,0xc4,0x76,0x8b,0x16,0x5c,0x4e, +0x73,0x76,0x77,0x46,0x8f,0x4c,0x5c,0x22,0x59,0x13,0x1c,0x0c, +0x2f,0x6f,0xfc,0x3c,0xec,0x4b,0x19,0xac,0x69,0x43,0x53,0x18, +0x6e,0x86,0xc3,0x71,0x9d,0x15,0xcc,0x67,0xc3,0x27,0x1a,0x4f, +0xc5,0x61,0x38,0xa8,0xca,0x4e,0xfe,0xf4,0x61,0xe7,0x59,0x75, +0xc8,0xfd,0x24,0x69,0x78,0x87,0x38,0x3c,0x91,0x55,0x8e,0x38, +0xbd,0xf4,0x2f,0xef,0xcb,0x34,0x2f,0x8b,0x07,0x08,0x2a,0xc5, +0x6c,0x74,0xe2,0xe0,0x11,0x3c,0x44,0xfa,0xc7,0xd0,0xb2,0xa6, +0x38,0x51,0xe5,0x48,0xf0,0x11,0x3e,0x04,0xfa,0xc7,0x80,0x93, +0x98,0x0d,0xca,0xbe,0x4f,0xb7,0x31,0xe6,0x84,0x7a,0xa8,0xd9, +0xe0,0xc4,0xf6,0xb7,0xe1,0x23,0xda,0x4a,0x0d,0xfb,0x21,0xaa, +0x2e,0x0a,0x48,0xa2,0x80,0xd8,0x7e,0x30,0xf0,0x88,0x02,0x52, +0x9f,0xd7,0x6d,0x26,0x10,0x08,0x6b,0xa8,0x7c,0x0f,0x82,0x20, +0xa4,0x39,0x06,0xd2,0xb4,0x06,0x57,0x61,0x10,0x06,0x01,0xcd, +0x21,0x50,0x1d,0x6a,0xd1,0x86,0x9a,0xed,0xb3,0xc0,0x96,0x26, +0x75,0x6e,0x43,0xd3,0x2c,0xca,0x3f,0x5b,0x9a,0xd4,0xb9,0x8d, +0x00,0x8b,0x35,0x60,0xd0,0xbd,0xcf,0xbe,0xff,0x7e,0xe6,0x67, +0x38,0x08,0x07,0xcd,0x9c,0x36,0x72,0xe4,0xbd,0x69,0xfd,0xb1, +0x1c,0xa9,0x4b,0xd1,0xf7,0xa5,0x32,0x77,0xf7,0x30,0x5b,0x4b, +0x1d,0xcb,0x2c,0xeb,0x2a,0x37,0xde,0xbd,0xaa,0x39,0x94,0x3a, +0x9b,0x2d,0xd9,0x55,0x55,0x42,0x65,0x25,0x13,0xc0,0xcd,0xb1, +0x37,0x5b,0x11,0xc1,0xfb,0xec,0x60,0x6c,0xc5,0xe1,0xcd,0x9c, +0xcf,0x7e,0x66,0x45,0x86,0x7d,0xd7,0x1d,0x9d,0x42,0xae,0xd2, +0x83,0x71,0xaf,0x6a,0x09,0x6d,0x55,0x74,0x34,0xab,0x2f,0xae, +0xaa,0xce,0x6a,0x6d,0xd7,0x69,0x0f,0x6b,0x76,0xaf,0xfa,0xe5, +0x2b,0x6c,0xf7,0xee,0x7d,0x00,0xc2,0xcc,0xfb,0xda,0x0d,0x0e, +0xc6,0x05,0xfa,0x0a,0x03,0xc3,0x40,0x07,0x07,0xa1,0xef,0x33, +0x6c,0x0d,0x0e,0x86,0x05,0x06,0x0a,0x7d,0x63,0x75,0xc5,0xcc, +0x19,0x1f,0xa0,0x70,0x6f,0xa6,0x4c,0x53,0xb5,0x7a,0x0b,0xa1, +0x28,0x92,0x98,0x15,0x99,0x6a,0x14,0xe5,0x9c,0x69,0xc5,0x71, +0xf7,0xf3,0x8a,0x6f,0xee,0xdc,0xf9,0xf6,0x9b,0x39,0x77,0x46, +0x6f,0x89,0xde,0xb3,0x6b,0xab,0x90,0x5c,0x90,0x54,0x54,0xa2, +0xa3,0xfe,0x3d,0x7a,0xce,0x9c,0xd1,0xbe,0x49,0xfe,0xc9,0x81, +0x7c,0xfc,0xd6,0xe8,0xbd,0x5b,0x14,0xea,0xdf,0xef,0xde,0x99, +0xf3,0xcd,0xf9,0xe3,0x55,0xdd,0x15,0x82,0x57,0x1f,0xe5,0xe1, +0xbc,0xcf,0x4e,0xc6,0x96,0xd3,0xfc,0x56,0x7c,0x9d,0x88,0xef, +0x48,0xab,0xc5,0x77,0xc4,0xd5,0x12,0xfd,0x63,0x34,0x45,0xa5, +0x4a,0x9f,0x00,0xef,0x8a,0x3c,0x87,0x66,0xf3,0xc8,0xf8,0xaf, +0x03,0x02,0xbe,0x1e,0xcf,0x88,0x57,0xbf,0x26,0xfe,0x85,0xe3, +0xc7,0x17,0x05,0x30,0xb8,0x43,0x5a,0x47,0xe0,0x8d,0x27,0x4f, +0xe1,0x75,0x78,0x63,0xcc,0x13,0x7c,0x1d,0xdf,0x18,0x3b,0x46, +0xfd,0xff,0xe9,0x58,0x78,0x5d,0xa8,0xd1,0x18,0x39,0xfb,0xee, +0xf7,0xdf,0xdf,0x55,0xff,0xcd,0x1e,0x39,0x72,0xf6,0xec,0x91, +0x02,0x5e,0x85,0xc5,0xa4,0x06,0x79,0x57,0xee,0xa7,0x71,0x5a, +0x35,0xf8,0xb6,0x2b,0x27,0x55,0xa0,0x3f,0x09,0xa0,0xe0,0x0a, +0xa9,0xfb,0xfd,0xe7,0x22,0x8a,0xc4,0x3f,0xe0,0xeb,0xf7,0x18, +0x6c,0xc5,0xd7,0x08,0xbc,0xed,0x8a,0x6f,0x53,0x93,0xd9,0x4d, +0x8c,0x27,0xdf,0xfb,0xbf,0x77,0x1d,0x19,0x05,0x8e,0x40,0x0d, +0x94,0xe1,0x3b,0xfb,0x85,0xf1,0x09,0xcb,0xd6,0xbc,0xaf,0x33, +0xf9,0xe2,0xda,0x2f,0x78,0x31,0x8e,0x05,0x8d,0x7b,0x9f,0x82, +0x06,0xc8,0xa6,0xdf,0x41,0x59,0x9c,0x20,0x6d,0x43,0x15,0x59, +0x69,0xda,0xfd,0xe1,0xe5,0xee,0xee,0xcb,0x42,0x47,0x27,0x0b, +0xec,0x97,0x5f,0x02,0xfb,0xed,0x8d,0x35,0xa8,0x51,0xca,0x57, +0xb3,0x5f,0x5c,0x5a,0x39,0x65,0xca,0xca,0x15,0x53,0xe8,0x0c, +0xa7,0x51,0x13,0xc4,0x95,0x7a,0x73,0x5e,0xdb,0x70,0x29,0x4e, +0x76,0x41,0x17,0x59,0x05,0x9b,0x5b,0x5a,0x94,0xdc,0xa4,0x38, +0xbe,0xb7,0x21,0xb4,0xc6,0x51,0x56,0xc4,0xd6,0xd4,0x37,0xe7, +0x1d,0x4d,0x90,0xe1,0xf7,0xea,0xf7,0x3c,0x8d,0x4d,0xbc,0xab, +0x0f,0xf1,0xae,0xac,0xc1,0xbe,0x7a,0x8b,0x1b,0x8a,0x1b,0x2d, +0x1d,0x97,0x05,0xf8,0x81,0xeb,0x89,0x6b,0x09,0xaa,0x75,0xe8, +0xbb,0xb6,0x21,0xfb,0xf8,0x1e,0x59,0x53,0xe1,0xb6,0xe0,0x52, +0xa1,0x82,0x75,0x03,0x57,0x5c,0x09,0x53,0xd1,0x67,0xbf,0x2c, +0x02,0x8f,0x11,0xfd,0x3d,0xa6,0xa1,0xf6,0xae,0xa9,0x30,0xfc, +0x14,0xbc,0x75,0xfb,0xfa,0xad,0x25,0xa7,0xf1,0xad,0x54,0x7c, +0x43,0x56,0x6d,0x67,0x9c,0x63,0xa8,0x80,0xf5,0x46,0x64,0x07, +0x0c,0x37,0x84,0x37,0x66,0x7d,0x04,0x4b,0x22,0x61,0x2c,0x92, +0x16,0x9c,0x1e,0x90,0xee,0x75,0xc0,0x6f,0xaf,0xe9,0x5e,0xdb, +0x30,0x17,0x6f,0x99,0xb4,0xab,0x8d,0xf8,0xee,0xf1,0xda,0x1e, +0x18,0xd9,0x4c,0x97,0xf2,0x58,0x78,0x0b,0x96,0x2a,0x67,0x2d, +0x36,0xc2,0xe1,0x3b,0x70,0xb8,0x73,0xb9,0x5d,0x96,0xc9,0x1e, +0xba,0x42,0x5c,0xc5,0x13,0xa4,0x39,0xaa,0x3e,0xb0,0x82,0x8f, +0x7f,0x8a,0xe4,0xf0,0xc2,0xd5,0x0c,0x0e,0xde,0x4e,0x25,0xc6, +0xcb,0x3a,0x26,0xdc,0x32,0x7d,0xfb,0x19,0x63,0x74,0x50,0x0f, +0xde,0xa5,0x76,0xa3,0x09,0x4d,0xef,0x02,0x0f,0x7a,0x4f,0xed, +0xef,0x2f,0x3b,0xc1,0x63,0xa0,0x54,0x49,0x4d,0x18,0x7c,0x0b, +0x34,0x61,0xfe,0x5f,0x1b,0xef,0x5c,0xed,0x16,0x2e,0x71,0x8f, +0x6e,0x7d,0x08,0x83,0x32,0x94,0xbb,0x77,0xa7,0xf3,0x37,0xdd, +0x98,0x7a,0xef,0x02,0x6b,0x63,0x9d,0x55,0xdc,0x55,0xd3,0xc6, +0x39,0x13,0xa8,0x15,0x83,0x6f,0xf5,0xc5,0x2b,0xb5,0x56,0x0d, +0x25,0xe9,0xdb,0x92,0xa3,0xa2,0xb6,0x6d,0x8b,0x8a,0x4a,0xde, +0x96,0x9e,0x9e,0x9c,0x9c,0xce,0x83,0xac,0x80,0xfc,0x63,0x85, +0xfa,0x02,0x21,0x96,0x4a,0x9d,0x02,0xd4,0x0a,0xe4,0x34,0x53, +0x41,0x8b,0x80,0xc5,0xa9,0x12,0xd6,0xae,0xa6,0x3d,0xe2,0x82, +0x02,0xa2,0xd8,0x96,0xc2,0xb2,0xea,0xb4,0xd8,0xf4,0x1d,0x07, +0x85,0xb2,0xc4,0xfc,0x82,0x6a,0x9d,0xac,0x58,0x65,0xcc,0x41, +0x3e,0xf7,0x80,0x32,0xa7,0x44,0x27,0x3d,0x2e,0x75,0xe7,0x7e, +0x1e,0xe6,0xb2,0x1d,0xa5,0x25,0x75,0x75,0x3e,0xa5,0x16,0x82, +0xa4,0xc9,0x7e,0xd3,0xd5,0x90,0x93,0xd4,0x12,0x52,0xae,0x1d, +0x5c,0x69,0x1f,0xef,0x12,0x8a,0x3e,0xc8,0xca,0x2d,0x02,0x6c, +0x3c,0xc3,0xec,0x65,0xc1,0x47,0xd1,0x82,0x05,0x8b,0x99,0xa4, +0x9e,0x4d,0x4c,0xc9,0xac,0xad,0x2d,0x6b,0xce,0xd7,0x06,0x3f, +0x60,0x4b,0xd2,0xf3,0x63,0x0f,0x46,0x68,0x27,0x47,0xec,0x0d, +0xf2,0x8e,0xc4,0xa9,0x0b,0xe4,0x7b,0x22,0x99,0x39,0x3b,0x17, +0x2c,0x98,0xad,0xf0,0xe6,0x1e,0xdd,0xfd,0xf8,0xaf,0x99,0x82, +0xb8,0x90,0x2d,0x55,0x6e,0x09,0x0a,0x8e,0xdc,0xe2,0x23,0x48, +0x83,0x58,0x87,0x20,0x77,0xcf,0xd0,0xa4,0x88,0xe4,0xed,0x42, +0xf0,0xb6,0xad,0x21,0x01,0x3a,0xa1,0x49,0xe1,0x69,0xdb,0xf8, +0x90,0xad,0xdb,0x42,0x36,0xeb,0x44,0xc7,0x6f,0x39,0x18,0xc3, +0xcf,0x63,0xf5,0x6d,0xd2,0x0f,0x05,0x08,0x3b,0x0f,0x32,0xb6, +0xac,0x27,0x5c,0x20,0xd2,0x60,0xd4,0x16,0x07,0x73,0xa2,0x17, +0x8e,0x24,0xd9,0xa9,0xca,0x6c,0x1e,0x46,0xb3,0x99,0xa9,0x91, +0xa1,0xa1,0xd1,0x91,0xe1,0x02,0x8e,0x63,0x23,0xa2,0x95,0xd9, +0x42,0xc4,0x7b,0x24,0x33,0x2d,0x23,0x93,0x07,0x81,0xcd,0x4e, +0x8d,0x0c,0x0b,0x8d,0x8e,0x08,0x16,0xf0,0x6d,0x36,0x7c,0x4b, +0x46,0xb6,0xb0,0x75,0x2c,0xc9,0x4a,0xcb,0xcc,0xe4,0x7f,0x60, +0x73,0x53,0xc3,0xc3,0xc2,0xa3,0xc3,0x83,0x85,0x77,0x68,0x0b, +0xed,0xa5,0xa9,0x2a,0x17,0xcf,0x13,0xa3,0x60,0x2e,0xac,0xd1, +0xa6,0xc2,0xa2,0x90,0x5a,0x70,0xac,0xdc,0x25,0xc7,0x3e,0x2e, +0xd8,0x23,0xc4,0x2b,0xc9,0xa6,0x21,0xe4,0x1b,0x33,0x39,0xe5, +0x8b,0x85,0x8f,0x8f,0x93,0x53,0xa9,0x6f,0x87,0x40,0xf9,0xb5, +0x73,0x47,0x5c,0x74,0x94,0x8e,0xaf,0x32,0x24,0x77,0x3b,0x1f, +0x13,0x13,0x1b,0x19,0xa6,0xe3,0x96,0x1f,0x58,0x16,0xcb,0xef, +0x88,0x89,0x8d,0xda,0xa2,0xe3,0x56,0xe8,0xdd,0xc2,0x53,0xd6, +0x5f,0x68,0xcf,0x68,0xaa,0x11,0x4a,0x36,0x80,0x85,0xb8,0x8e, +0xc5,0x58,0x7c,0x4c,0x76,0xc6,0x30,0x6e,0xbe,0xf6,0x11,0xfa, +0x8a,0x79,0xec,0xc1,0x83,0xf1,0x69,0xa9,0x3a,0xf9,0xdb,0x72, +0x42,0x52,0xf8,0xb4,0xe4,0xa4,0xcc,0x6c,0x9d,0xc2,0xad,0x39, +0xc1,0xc9,0x7c,0xf2,0x81,0xa4,0x8c,0x6c,0x9d,0x8a,0xa0,0x2a, +0x07,0x9e,0x32,0xca,0x27,0x32,0x2d,0x37,0x4f,0x99,0x56,0xaa, +0x66,0xe0,0x84,0xcc,0x4f,0xe7,0x3d,0x52,0xec,0x29,0x63,0x66, +0x2f,0xbe,0x75,0x27,0x46,0xd8,0xa3,0xc4,0xa9,0xb7,0xbc,0x95, +0x7b,0xf3,0x92,0x33,0xb4,0x0f,0x66,0xe4,0x27,0x96,0x44,0x81, +0x1f,0x9d,0xaa,0xe6,0xcd,0xb5,0xde,0x99,0xce,0x89,0x5b,0xe5, +0xf5,0x98,0xc6,0xc2,0xdc,0x8d,0x44,0xcd,0x36,0xd0,0x66,0x25, +0x35,0xe3,0x28,0xb3,0x22,0x78,0xca,0xac,0x70,0xca,0x2c,0xca, +0xc4,0x4c,0x81,0x32,0x91,0x32,0x2a,0x54,0xc8,0x78,0x8f,0x84, +0x6e,0x89,0x08,0xe7,0x29,0xb3,0x82,0xa3,0x33,0xb2,0xb3,0x28, +0x83,0x05,0xca,0xc4,0xcc,0xb4,0x88,0x70,0x21,0x65,0x2c,0x6d, +0x8b,0x0c,0xe7,0xdf,0xa1,0x4d,0x99,0x99,0x59,0xa9,0x99,0xb9, +0xc2,0x0f,0xb4,0x25,0x3c,0x8c,0x32,0x4e,0x89,0x83,0xe8,0x7a, +0xdb,0x50,0xc2,0x35,0xd5,0x64,0xb4,0x5f,0xd0,0x81,0x28,0xae, +0xc5,0xbb,0xd0,0x6d,0x4b,0x54,0xec,0x8e,0x18,0xbe,0x2c,0x36, +0x30,0xdf,0x4d,0x11,0x16,0x19,0x1b,0x13,0x23,0xe4,0x6e,0x0f, +0x51,0xfa,0x2a,0xa2,0xa2,0xe3,0x76,0xee,0xa0,0xfc,0xe3,0x3a, +0x7c,0x4b,0x9d,0x9c,0x7c,0x7c,0x2c,0x78,0x49,0x93,0x33,0xfb, +0x26,0xa4,0xc1,0x26,0xc9,0x2b,0x44,0xdb,0x23,0x78,0x97,0x7d, +0xb6,0x0b,0xb0,0xe8,0x23,0x2f,0xb4,0xa8,0xb0,0x69,0x0c,0x93, +0x05,0x1b,0x51,0x4f,0xf8,0x1e,0x58,0x90,0x7a,0x6e,0x6b,0xa2, +0x73,0xa6,0x77,0xed,0xe6,0x66,0x6d,0x64,0xc1,0x2f,0xaa,0x24, +0x31,0x3f,0xe3,0xa0,0x76,0x46,0x72,0xde,0x5e,0xa5,0xf7,0x2d, +0x9c,0x2a,0x57,0xee,0x61,0xee,0xec,0xbc,0xb5,0x60,0xb6,0x4e, +0x19,0xfb,0x68,0xde,0xdd,0x09,0x99,0xbc,0xb8,0x90,0x2b,0x4d, +0x53,0xe6,0xe5,0xa6,0x45,0xfa,0x50,0x36,0x72,0x0e,0x55,0x41, +0x15,0xd9,0x19,0x49,0xc9,0x07,0xf8,0xe0,0xe4,0x9c,0xad,0x85, +0x8a,0xec,0xcc,0xa4,0xb4,0x64,0x21,0x24,0x25,0x67,0x5b,0xbe, +0x22,0x35,0x2d,0xfe,0xe0,0x41,0x61,0x1e,0xa7,0x1f,0x65,0xe3, +0x12,0xc0,0xc7,0xa8,0x85,0x36,0x2e,0x81,0x93,0x24,0x34,0x32, +0x95,0xf2,0x60,0x34,0x97,0xa9,0x4c,0xa5,0xfe,0xae,0x3a,0x9c, +0xfe,0x38,0x2e,0x22,0x32,0x3a,0x94,0x7f,0x14,0x41,0xc2,0x23, +0xd2,0x28,0xef,0x04,0x2e,0x5b,0x99,0x9a,0x95,0x9d,0x11,0x1d, +0x4c,0xf9,0xc6,0x85,0x47,0x6c,0x09,0xe5,0x9f,0x6c,0x25,0x61, +0xe1,0xb4,0xed,0x07,0x2e,0x37,0x33,0x35,0x2b,0x33,0x93,0x36, +0xbd,0xc3,0x85,0x47,0xd2,0x16,0xfc,0x12,0xcf,0x11,0x91,0x2e, +0x62,0x69,0x30,0x75,0x47,0x1e,0xa8,0x44,0x82,0x16,0x47,0x83, +0x39,0xfb,0x30,0x4f,0x9b,0x00,0x0b,0x54,0x0f,0x3a,0xc4,0x25, +0xc1,0xbe,0x32,0xb8,0x3c,0xa4,0x25,0x29,0xa7,0xa1,0xeb,0x1b, +0xba,0xe4,0x38,0x8b,0x52,0x9f,0xba,0xba,0x92,0xd2,0x0e,0xba, +0x45,0xb9,0x9d,0xfb,0x53,0xe3,0xd2,0x15,0x25,0x39,0xca,0xdc, +0x03,0x42,0xcc,0x41,0x65,0x6c,0x96,0xa2,0xba,0x20,0xbf,0x2c, +0x51,0xd8,0x71,0x30,0x3d,0x36,0x4d,0x51,0x5d,0x56,0xd8,0x22, +0x50,0xee,0x5f,0x88,0x68,0xb7,0xab,0xe1,0x4b,0x4e,0x81,0x05, +0xe7,0x81,0xf3,0xe8,0xa6,0x01,0x3a,0xfb,0xec,0x46,0x74,0x26, +0x07,0x77,0x32,0xd5,0xbe,0x19,0xf6,0xfa,0x3a,0xf3,0xb8,0x83, +0x31,0x5b,0xe2,0xa3,0x15,0x9b,0x43,0xb6,0x85,0x6c,0x15,0xd2, +0xb6,0x85,0x27,0x85,0x2a,0x02,0x42,0xb6,0x06,0x6f,0x13,0x92, +0xb7,0x47,0xd0,0xb2,0xa7,0x7b,0x90,0x03,0xdd,0xa3,0x9c,0xcf, +0x96,0xc8,0xe0,0xa0,0x2d,0xca,0x52,0x35,0x2f,0xff,0x9a,0xf9, +0xf1,0xa7,0x8f,0x74,0xbc,0xf7,0x30,0xb3,0x17,0x2c,0x9e,0x13, +0xc3,0x47,0xee,0x59,0x80,0x53,0x23,0xbd,0x83,0xf6,0x46,0x24, +0x6b,0x47,0x1c,0x8c,0xcd,0x4f,0x2f,0x01,0x3a,0x2b,0xf2,0xfc, +0xe6,0xb2,0xda,0xda,0xcc,0x94,0x44,0x79,0x3d,0xa4,0x71,0x45, +0x58,0x49,0xb2,0x95,0x5b,0xc2,0x85,0x77,0xb8,0x60,0xba,0xd9, +0xc2,0xc2,0x53,0x73,0xf9,0x1f,0xb8,0xcc,0xcc,0xb4,0x2c,0x7e, +0xec,0x56,0x92,0x9d,0x41,0x5b,0x28,0xd3,0x82,0x23,0xa2,0x43, +0xc3,0x28,0xa3,0xe9,0x8e,0xe5,0x32,0x33,0xd2,0x32,0xf9,0xf7, +0x22,0x68,0xaf,0xe8,0x08,0xba,0xa3,0x29,0xdb,0xa2,0x43,0xe9, +0x24,0xd0,0xdd,0x3c,0x5a,0xcd,0xe8,0x6c,0x7e,0x00,0xcf,0x9c, +0x26,0x8a,0xeb,0x49,0x6c,0x6a,0xe4,0xde,0xad,0xdb,0xd4,0x61, +0xee,0xcf,0x7f,0xd6,0x3a,0xed,0x07,0xb6,0x2a,0xb9,0x22,0xb5, +0x28,0x3d,0xb0,0x5e,0x6e,0xe0,0x3d,0x29,0x60,0xd9,0xf6,0x54, +0x5b,0x79,0x71,0x42,0x45,0x52,0xc5,0x7e,0xd9,0x64,0x7c,0xc9, +0xfa,0x29,0xb7,0x63,0xb9,0xf7,0xb2,0x55,0xf3,0xca,0xac,0xe5, +0x47,0x2e,0x16,0x1c,0x4d,0xb8,0x24,0x8b,0xc7,0x13,0x5d,0xd0, +0xc6,0x26,0xec,0xdb,0xbb,0x2f,0x8e,0xaf,0x9d,0x52,0x53,0xc5, +0x40,0x02,0xb4,0x11,0xdb,0x52,0xc3,0x52,0xa3,0x9c,0x10,0x5b, +0xf9,0xf1,0xcd,0x9d,0xfe,0xad,0xde,0xb2,0xce,0xa9,0x24,0xbb, +0x3b,0xf3,0x68,0xda,0x09,0xab,0x0c,0xb9,0x1f,0x0e,0x75,0x1c, +0x65,0x32,0x55,0x06,0x7e,0xa6,0xd8,0xc9,0xb9,0x59,0x3b,0xda, +0xdb,0xba,0x94,0xd9,0xc9,0x2b,0x4a,0xca,0xca,0x8a,0xcb,0x65, +0x9b,0x39,0xf3,0xac,0xd0,0x4e,0xfe,0x22,0x5b,0xa3,0xcc,0xa8, +0x12,0x60,0x30,0x67,0xa9,0x64,0xf0,0xcf,0xeb,0xb8,0xd0,0xb8, +0x84,0x22,0xe1,0x63,0xae,0xf5,0x5c,0xed,0x87,0xe5,0x37,0x0b, +0xe7,0x67,0xcd,0x4f,0x99,0xd7,0x9e,0x2e,0xdf,0x76,0x33,0xe8, +0xa1,0xdf,0x2d,0x19,0x56,0xed,0x25,0x31,0xe3,0x82,0x17,0x79, +0xe8,0x36,0x78,0xc9,0xab,0x2e,0xe4,0xdd,0x4b,0x85,0x41,0xb2, +0x01,0x8b,0x32,0x00,0xce,0x1a,0x7f,0x30,0xbe,0x01,0x0c,0xd1, +0xa2,0xb0,0x4e,0x31,0xfb,0x58,0x0a,0xea,0x14,0x75,0x28,0x71, +0xa7,0x38,0x94,0xc2,0x55,0x31,0x63,0x58,0xd4,0xc7,0x16,0x66, +0x37,0x8b,0xeb,0xa0,0x85,0x79,0x87,0x85,0x28,0x94,0xa8,0xa5, +0xf3,0x2a,0xf3,0xd3,0x3c,0xad,0x4b,0x23,0xc5,0x2f,0xbe,0xbf, +0x8c,0x6d,0x2b,0xbf,0x97,0xbe,0x18,0xb9,0x8a,0x1a,0x4d,0x5a, +0x54,0x09,0x9f,0x51,0x87,0x0b,0x7a,0x0b,0xcf,0x30,0xf7,0x59, +0x9c,0x45,0x81,0x4c,0xa3,0x40,0x66,0xb1,0xf8,0x06,0xb6,0xa9, +0xc3,0x05,0x69,0x42,0x1b,0x33,0x83,0xa5,0x46,0x80,0x84,0xb3, +0x28,0x10,0xd5,0x34,0xad,0x0b,0x8b,0xc5,0xbf,0x7e,0x74,0x01, +0xc3,0xd7,0x7c,0x24,0xfd,0x75,0xf1,0x1a,0x4e,0x8c,0xff,0x75, +0x8d,0x26,0x24,0xad,0x7b,0x76,0x0a,0xb0,0x56,0x7d,0x0a,0xb0, +0xe6,0x77,0xbe,0xaf,0x36,0x6b,0xf2,0xfd,0xbf,0x9f,0x02,0xac, +0x56,0xdb,0xff,0xba,0xf3,0xf0,0xfd,0xf1,0x53,0xd5,0x2f,0xd4, +0xc5,0x93,0xc7,0x9d,0x57,0xa8,0xba,0xff,0x85,0x3f,0xef,0x76, +0x2e,0x7f,0x2c,0xb4,0xf4,0xf3,0xe7,0x38,0xf7,0x79,0xc9,0x61, +0xca,0x1f,0x93,0xa9,0xfc,0xa6,0xbf,0xc7,0x7f,0x50,0x6d,0x21, +0xa8,0x3b,0xa7,0x3f,0x6e,0xf8,0x1d,0x6a,0x2f,0xe8,0x82,0xee, +0x9d,0xfe,0x98,0xe2,0x73,0x80,0x47,0x5d,0x01,0x57,0xe2,0x75, +0x02,0x63,0x8f,0x3c,0x85,0x61,0xd7,0x3b,0x9c,0xf5,0x4a,0x78, +0xbc,0x86,0xc0,0xc4,0x96,0xec,0x2a,0xaf,0xd4,0x81,0x1f,0xb5, +0x70,0xac,0xf1,0x18,0x1c,0xb6,0xcc,0xa2,0xe6,0xa4,0x2f,0x0f, +0x57,0xe1,0x47,0x26,0xd1,0x6f,0x9f,0x8f,0x97,0x8e,0xa6,0x66, +0xa2,0x06,0xbe,0xf1,0x53,0x24,0xbc,0x41,0x87,0xa9,0xa5,0x81, +0xf1,0xb4,0x18,0x4f,0x8b,0x07,0x34,0xa4,0x21,0x3f,0x45,0x8a, +0x43,0xa8,0x1f,0xf0,0xba,0x86,0xb4,0x8b,0x16,0x77,0xd1,0xe2, +0x3e,0x8d,0x5e,0xe6,0xa7,0x48,0x15,0x43,0xad,0xc0,0xc1,0x1a, +0xbd,0x31,0xb4,0x18,0x43,0x8b,0x71,0x1a,0xbd,0xff,0x43,0x8b, +0xff,0xc3,0x69,0xfe,0xa4,0xa1,0xf1,0xb7,0xc8,0x9f,0x68,0x7a, +0x56,0x84,0x37,0x7e,0x29,0xc6,0xff,0xbd,0x28,0x0e,0xf9,0xa5, +0xb8,0xeb,0xef,0x45,0x15,0xf3,0x4b,0x31,0xe6,0x97,0xe2,0xff, +0x3c,0x2b,0xe2,0x30,0x4a,0xd9,0x30,0x5a,0x7c,0xe9,0x27,0x0d, +0x42,0xc1,0x0d,0x53,0xd7,0x8b,0xc7,0x71,0x28,0x81,0x58,0x50, +0xc7,0xfd,0x8f,0x55,0x1f,0x05,0xe2,0x19,0x4c,0xa0,0xe9,0x0c, +0x35,0x25,0x4f,0xa8,0x9b,0xce,0x60,0x22,0x24,0xe2,0x19,0x1e, +0x5f,0xe7,0xe8,0x65,0x66,0x68,0x86,0xb1,0x82,0x26,0x1d,0x8c, +0x1e,0xa1,0x6c,0xec,0xeb,0x25,0xa0,0x26,0x8b,0x67,0x80,0xf6, +0x82,0x33,0x94,0xcd,0xeb,0x28,0x74,0x75,0x13,0x4d,0xb1,0x3c, +0x6a,0x72,0x40,0x9b,0x68,0x52,0x03,0x0c,0xd3,0xa0,0x14,0xbc, +0xfe,0xb7,0x48,0x56,0x72,0xfb,0xb9,0xa4,0x29,0xea,0xf6,0x53, +0xf3,0x3a,0xa4,0x8b,0xba,0xf0,0xba,0xa4,0x0b,0x7e,0xcf,0x72, +0xf5,0x33,0x30,0xea,0x46,0x2c,0x90,0x74,0xf1,0x75,0x51,0x17, +0xfd,0x9e,0xe5,0xe9,0x7f,0xf0,0xe2,0xbe,0xf1,0x47,0xf6,0xa1, +0xf9,0x5b,0x24,0xe5,0x11,0xfb,0x33,0x97,0xfb,0xd8,0xf2,0x53, +0x7f,0xe5,0x33,0x6e,0x71,0x6a,0xde,0xab,0xc3,0xd4,0x78,0x13, +0x08,0x86,0xf5,0x34,0xa9,0x83,0xde,0xd3,0x5c,0x1d,0xec,0x1e, +0xd7,0x63,0x5f,0x4e,0x7f,0xd1,0x7a,0xb5,0x3b,0x65,0x44,0x60, +0x2b,0xdd,0xbf,0x46,0xf4,0x7f,0x34,0xd2,0x1c,0xb7,0xd2,0x64, +0x48,0xf7,0x70,0x34,0xd2,0x7a,0xba,0xc7,0xb7,0xaa,0xfd,0x35, +0x77,0x5c,0x0a,0xcb,0xc0,0x0b,0x3c,0x41,0x9d,0xbb,0xd3,0xb4, +0x94,0xda,0xa5,0x9e,0xe8,0x85,0xea,0xdc,0x5d,0xd0,0xfc,0x78, +0x19,0x51,0x3d,0x55,0x3d,0xf5,0x29,0xed,0x7d,0xda,0xfb,0x94, +0xd1,0xfc,0xe9,0xdd,0x65,0xa4,0x94,0x96,0x69,0x8d,0x0f,0xa3, +0xa9,0xea,0xf9,0x94,0x60,0x2d,0xf4,0x25,0xaf,0x72,0xac,0x55, +0x27,0x5a,0xf2,0x82,0xda,0xfe,0x72,0xb9,0x57,0x7f,0x1b,0xd6, +0xaa,0x9f,0x4e,0x11,0x4f,0x92,0xd4,0xae,0x94,0xa3,0x29,0x27, +0x75,0xd3,0xe5,0xd1,0xab,0xb7,0xe8,0x6d,0x31,0xc0,0x45,0x91, +0xf2,0xa4,0x75,0x30,0x4e,0x69,0x8f,0x33,0x2d,0x51,0x73,0x23, +0xbe,0xa1,0x7d,0xd6,0xef,0x0c,0xe8,0x74,0xc2,0x9f,0x9a,0x60, +0xa5,0xf6,0x99,0x24,0xe6,0xc3,0xfd,0x25,0xfe,0xeb,0x74,0x30, +0x3f,0x38,0x6c,0xad,0xbf,0x73,0x42,0x92,0x2b,0x1f,0xb7,0x8e, +0x89,0xad,0x6b,0x8c,0xad,0x54,0x7c,0x57,0xdb,0x06,0x87,0x7f, +0x34,0x3c,0x3c,0x62,0x9b,0x00,0x61,0xf9,0xe4,0xf4,0xb8,0x36, +0x64,0x0a,0x51,0xf3,0x5c,0xb6,0xdc,0x07,0xde,0xb0,0x01,0x6e, +0xfd,0xb7,0xd4,0x40,0x3f,0x21,0xfa,0x93,0x96,0x7d,0x4d,0xf1, +0x75,0x09,0xbb,0xce,0xc8,0x5d,0xe3,0xec,0x76,0x59,0xed,0xde, +0x09,0x7a,0xf2,0xb5,0x7b,0xf6,0xe3,0x86,0xb9,0xbb,0x66,0xec, +0x5d,0x16,0xaf,0xbd,0x8e,0xfb,0x68,0xd7,0xbd,0x0f,0x3e,0xd9, +0x97,0x30,0x42,0x9e,0x84,0x33,0x4c,0x74,0x71,0xb6,0x4b,0x89, +0x9e,0x1c,0xd6,0xd6,0x7d,0xf8,0xd5,0x4e,0x30,0x90,0x49,0x9b, +0xd0,0x9c,0xec,0xaa,0xdb,0xdb,0x7e,0x4c,0x07,0xd8,0x54,0x18, +0x51,0x0e,0x3a,0xfc,0xba,0x64,0xc6,0x1b,0xdf,0x89,0xa2,0xdb, +0x75,0xb0,0xce,0xfc,0x83,0x53,0xb3,0x26,0xf3,0x17,0x13,0x77, +0x67,0xee,0xc9,0x88,0x4f,0xd3,0x4e,0x3a,0x92,0x7d,0xa4,0xeb, +0xa9,0x71,0xb1,0xdc,0x65,0x71,0xac,0x69,0x9c,0x03,0x95,0xba, +0x6b,0x54,0x6b,0x48,0xb9,0x47,0x93,0x67,0x97,0xcf,0x0c,0xf7, +0xd1,0x7e,0xef,0x6e,0xc9,0x36,0x92,0xc3,0x6b,0x59,0xf0,0x6a, +0xd5,0xa3,0xd6,0x87,0xf6,0xf0,0x8a,0x27,0xbc,0x16,0x99,0x75, +0x58,0xfe,0x6e,0xfa,0xa4,0xc2,0xf9,0xe5,0xd7,0x1b,0x4f,0x76, +0x1e,0x3a,0x22,0xab,0xc3,0x5b,0x5c,0x5a,0x46,0x6a,0x66,0x4a, +0xa6,0x61,0xb6,0xdc,0x7a,0xd1,0xac,0x0d,0x13,0x6d,0xab,0xcc, +0xe5,0xb5,0xd9,0xb5,0xf9,0x35,0xc5,0x32,0x9c,0xb4,0x87,0x98, +0x77,0xad,0x3a,0x6e,0x7c,0xc8,0xd1,0x56,0x7e,0xcc,0xf9,0xa2, +0x41,0xa7,0xa9,0x4c,0x24,0x61,0x64,0x7d,0x99,0x59,0xb5,0x47, +0x75,0x52,0x92,0x1c,0x1a,0x59,0x4f,0x67,0x53,0x97,0x75,0x5e, +0x32,0xe9,0x55,0x14,0xe8,0xb5,0x2b,0x8f,0x1b,0x1d,0x72,0xb1, +0x91,0x1f,0x71,0x3a,0x67,0x74,0xc4,0x44,0x26,0xae,0xc0,0x33, +0x04,0x8e,0x1f,0xc1,0xe3,0x37,0xe1,0xe0,0x61,0x3c,0xf8,0x21, +0x14,0x1f,0xc6,0xe2,0xb3,0x1b,0xd6,0xa9,0xcf,0xd2,0x94,0x2b, +0x70,0x8f,0x09,0xec,0x59,0x88,0xad,0xc6,0xd0,0x3a,0xed,0x14, +0x2b,0x4d,0x80,0xeb,0x04,0x4d,0xf4,0x41,0x0b,0x07,0xb3,0x13, +0x5d,0x8d,0xde,0xb5,0xe5,0x0b,0x36,0x7e,0xd9,0xd0,0x71,0x3c, +0xfe,0xba,0xf6,0x7e,0x76,0xc6,0xc1,0x4f,0x96,0xc2,0x74,0x85, +0x18,0xc5,0x26,0x9f,0x66,0xa4,0x3d,0x2c,0x6a,0x4d,0x3d,0x05, +0xac,0xa0,0x09,0x17,0x54,0x8b,0x89,0xf1,0xe1,0xb9,0xa7,0xd6, +0x1f,0x72,0xb2,0x96,0x9f,0x75,0xfe,0x44,0xef,0x08,0xa5,0x71, +0xb4,0x74,0x84,0x88,0x02,0x94,0x9d,0xc6,0x32,0x68,0x5a,0x8d, +0x4d,0x98,0xa7,0x07,0x79,0x92,0xc0,0xe1,0x35,0x71,0x34,0x31, +0xee,0x9a,0x7e,0x4e,0xef,0x90,0x9b,0x95,0xfc,0x84,0xcb,0xbd, +0x75,0x3d,0xc6,0x32,0x88,0x96,0x66,0x12,0x7c,0x73,0xf2,0x39, +0xd0,0x10,0x60,0x09,0x7a,0x6d,0x84,0x09,0x38,0x88,0x1b,0x6f, +0xa1,0x8f,0x1a,0xf6,0x7c,0xfe,0x86,0xef,0xea,0x4f,0x9d,0x4e, +0xb8,0xd1,0x47,0xc2,0xdd,0x85,0x30,0x45,0x21,0x3a,0xb1,0xc9, +0x67,0xe9,0x7a,0x7c,0x20,0x5e,0x25,0x3d,0x1d,0x55,0xd7,0x8e, +0xe8,0xa4,0x73,0xd5,0xfd,0x01,0xe0,0xdd,0xf8,0x28,0xce,0x2f, +0x35,0xa4,0x78,0x27,0xbf,0xd5,0x2a,0xd0,0xcd,0xd1,0x5e,0xa6, +0xf9,0xd3,0x6c,0x90,0x91,0xc7,0x8b,0x6e,0xbc,0xfb,0xee,0xa2, +0x45,0xe3,0xc6,0xdd,0x58,0xf4,0xed,0xb7,0x37,0x6e,0x3c,0xe6, +0xd7,0x69,0xe9,0x9a,0x39,0xe8,0xea,0x9a,0x35,0x9c,0x3b,0xd7, +0xa5,0xfe,0x73,0x50,0xdf,0x72,0x98,0x5c,0x4f,0x20,0x45,0xb5, +0x00,0x53,0x58,0x71,0x45,0xef,0x82,0x9f,0xcb,0x9a,0x2a,0x40, +0x8e,0xdc,0x68,0xef,0xfc,0xf0,0x43,0xcb,0xce,0x45,0x8b,0x2d, +0xcd,0x57,0xac,0x68,0x37,0xff,0x48,0xe8,0xd4,0xb0,0x0e,0x28, +0xaa,0x15,0xd2,0xb9,0xda,0xc2,0xa2,0xd6,0xb6,0x42,0x7f,0x67, +0x8a,0xd9,0x39,0xc0,0xdf,0x8a,0xd7,0xfc,0xc9,0xc3,0x9c,0x6c, +0x3e,0xea,0x7a,0xd1,0xfd,0x88,0x51,0xa0,0xbc,0xc6,0xa8,0x6a, +0x4d,0xa1,0x91,0x4c,0x3f,0x88,0x04,0x1d,0x73,0xb9,0xe4,0x71, +0xd4,0x30,0x40,0x5e,0x6d,0x54,0xbd,0x26,0xdf,0x80,0x52,0x26, +0x5b,0x4f,0x4e,0xc0,0x27,0xcc,0x62,0x56,0x1f,0x3f,0xa1,0x9b, +0x6d,0x88,0xaa,0x85,0xa8,0x63,0xd8,0x0b,0xfd,0x31,0xec,0xd5, +0x91,0xed,0xf9,0xfe,0xc8,0xf6,0x94,0x36,0x41,0xbc,0xab,0x8e, +0x75,0x5f,0x4d,0x11,0x16,0x47,0xe7,0xf8,0x25,0xf1,0x29,0x6d, +0x05,0xd5,0xf5,0x8d,0xb2,0x35,0xac,0x81,0x85,0xfb,0x52,0x63, +0x9d,0x28,0xce,0xad,0xff,0xf3,0x00,0xdf,0xa9,0x1e,0xa8,0xa1, +0xb8,0x09,0xbf,0x62,0xc4,0x05,0xf6,0x1f,0x59,0xf5,0xfb,0x21, +0x82,0x9b,0xd6,0xef,0xc2,0x3b,0x52,0xf5,0xd9,0xef,0xc1,0x4b, +0xc1,0xfd,0x2e,0xea,0x74,0x96,0x0d,0x24,0x71,0xb3,0x41,0xff, +0x3f,0x4f,0x9c,0xa6,0xea,0x47,0xd8,0xf8,0xbb,0xe6,0x42,0x35, +0xae,0x7f,0x25,0x2c,0xe9,0x5b,0x09,0x70,0x58,0xeb,0x97,0x1f, +0x9a,0xaa,0x57,0x55,0x49,0xe4,0x92,0xde,0x2a,0x3c,0x65,0xaa, +0xda,0xd8,0xcd,0xf5,0x5a,0xe0,0x72,0xe2,0x7c,0xc1,0xe2,0xca, +0xc6,0x4b,0x56,0xee,0xf2,0x23,0x6b,0xdb,0x57,0x35,0x2c,0x97, +0xa9,0xec,0x41,0x83,0x48,0xdf,0xe2,0x29,0xf1,0x5b,0x56,0x1f, +0xd2,0x08,0xba,0x4a,0x51,0xe0,0xca,0x89,0xe3,0x70,0x11,0x81, +0x3f,0xe1,0x0d,0xfc,0x13,0x07,0x05,0x5f,0x10,0x33,0xf4,0xed, +0xe2,0xb0,0x1b,0x37,0x12,0x37,0x1c,0xa6,0x8f,0xa3,0xd7,0xbf, +0xd7,0xe9,0x28,0x3f,0x0f,0x83,0x8e,0xc3,0xf8,0x5a,0x78,0x43, +0xa6,0x32,0x45,0x03,0xd2,0x85,0x37,0xcf,0x71,0xdf,0x25,0x3e, +0x3e,0xf0,0x79,0x6a,0x58,0x97,0x3c,0x80,0xea,0x19,0xe7,0xed, +0x18,0xa6,0x38,0x60,0xc6,0x7c,0xf5,0xd5,0xbe,0x84,0x2f,0x84, +0xf5,0x78,0xdd,0x0c,0xaa,0x39,0x33,0x83,0x31,0x76,0x38,0xc1, +0x2e,0xd7,0x54,0x0e,0xeb,0x8e,0xc1,0x4b,0xdd,0x05,0xf7,0x65, +0xfb,0xd1,0xeb,0x38,0x78,0xed,0x67,0xf3,0xe6,0xc3,0x2b,0xfa, +0xb0,0xc2,0x30,0xf7,0xb0,0x1c,0x15,0x8d,0x23,0x9a,0x4c,0x7a, +0xa8,0x5c,0xf4,0x15,0x5f,0x25,0x90,0xfd,0x2e,0xbc,0x04,0x23, +0x8f,0x4a,0xcb,0xa4,0x6f,0xc5,0x75,0x47,0x70,0x02,0xd5,0xf2, +0x62,0x2c,0xae,0x26,0xcd,0x39,0x19,0x0d,0x02,0x28,0x38,0x83, +0x4c,0x06,0xc7,0xa3,0x25,0x67,0xb7,0x25,0xa5,0x49,0x80,0x75, +0xd0,0x0c,0xe7,0xf1,0x5b,0xe9,0x20,0xb7,0xb4,0x7c,0xf3,0x65, +0x1e,0x9f,0x88,0x5d,0x04,0x5f,0x1a,0x89,0xd9,0xdf,0xab,0xcf, +0x46,0xc4,0x9d,0x9c,0xca,0x72,0x37,0x41,0x2b,0x8c,0x04,0x6a, +0x8f,0x59,0xe3,0x47,0x04,0xa7,0xc0,0x3c,0x98,0xc2,0xc2,0x63, +0x69,0x03,0x69,0x5d,0xdb,0xb4,0xba,0x7a,0xc1,0xe9,0x12,0xb9, +0xf3,0x27,0x56,0x97,0x6d,0x7b,0x64,0xbd,0x8e,0xb8,0x8b,0x9c, +0xbf,0xd2,0x7a,0xad,0xec,0x8a,0x41,0xbe,0xdc,0x6b,0x8d,0xd5, +0x8a,0xf5,0xeb,0x64,0x62,0x3a,0x2c,0x27,0x45,0x6b,0xf2,0x56, +0x2a,0x17,0x5f,0x50,0xca,0xc3,0x6e,0x05,0x5e,0xf2,0x3b,0x23, +0xc3,0xa2,0x28,0x92,0xb6,0xe2,0xa0,0x6e,0xe2,0xfc,0xb3,0x07, +0xe4,0xb1,0x1f,0xc7,0x5c,0x8c,0x38,0xff,0x3b,0xad,0x69,0x7c, +0x1d,0xda,0x09,0x0c,0x83,0x87,0x71,0xec,0x08,0x7c,0xd9,0xa3, +0x18,0x38,0x78,0x8d,0xf9,0x58,0x7a,0xed,0x47,0x7b,0xac,0xfe, +0x9d,0x71,0x09,0xf1,0xcf,0xd0,0x41,0xa8,0xb1,0xfd,0x36,0xd3, +0x58,0x97,0x5b,0x51,0xaf,0x93,0xc6,0x35,0x79,0x95,0x5a,0x99, +0xfb,0x79,0xdb,0x6f,0xe1,0x6d,0x32,0x99,0x9e,0x8c,0x96,0xa6, +0x9b,0x8a,0x3b,0xad,0x16,0xcb,0xd6,0xd8,0xda,0x58,0x39,0x0a, +0x28,0xc3,0x41,0x0c,0x04,0xd8,0x62,0xf9,0xef,0x84,0xbf,0x05, +0x76,0x90,0x15,0x76,0xa5,0x4d,0x7e,0x42,0x6d,0x29,0xe3,0x5c, +0x50,0x16,0xdc,0xa1,0x38,0x5c,0x55,0xde,0x26,0x1c,0xe4,0x5a, +0xdd,0x4a,0x0c,0x78,0xab,0xe6,0x76,0xb6,0xbb,0xbc,0xb8,0x56, +0x48,0xe6,0xea,0xbd,0x4a,0xac,0xec,0xbc,0x82,0xdd,0x43,0x78, +0xf7,0x32,0xa6,0xbe,0xb0,0xbe,0xe4,0x9c,0xe2,0x56,0x97,0xfd, +0x5a,0x43,0x77,0x2f,0xeb,0x6d,0xc2,0x2e,0xee,0xe8,0xb6,0x2a, +0x17,0x43,0x9d,0x25,0x86,0x56,0x33,0x7f,0x67,0x40,0x33,0x9c, +0x2a,0xbe,0x4e,0x60,0x13,0xd4,0x31,0xa7,0xb0,0xe9,0xb4,0x83, +0xde,0x74,0x8b,0x07,0x68,0xcd,0x82,0x35,0x94,0x92,0x38,0x16, +0x27,0x63,0x34,0x03,0xbf,0x37,0x78,0xe3,0x6e,0x3a,0x88,0x95, +0xf6,0x25,0xcd,0xfd,0x83,0xc8,0x2f,0x0f,0x6e,0x53,0xf4,0x94, +0x1f,0xea,0xa6,0x44,0x77,0x7a,0x57,0x19,0xdb,0x05,0x45,0x06, +0x87,0xf1,0xb6,0x49,0x4a,0x88,0x60,0x20,0xc2,0x1a,0x8d,0xd8, +0xad,0x38,0x97,0x49,0x60,0xab,0x73,0x8a,0xb2,0xda,0x15,0xd7, +0x3a,0x2d,0xe7,0xce,0x35,0x35,0x9c,0x2a,0xfc,0x3e,0x54,0xb0, +0x43,0x63,0xa2,0xe5,0xd9,0xcf,0xe1,0xcd,0x8f,0xbe,0xfc,0xb8, +0x5b,0xb8,0xc2,0x8e,0x5b,0x6d,0xb0,0x3e,0x7c,0x6a,0xfc,0x1e, +0xf9,0xa1,0xac,0x8a,0xa2,0x6e,0xc5,0x95,0x6e,0x8b,0xf9,0x73, +0x8d,0x0c,0x67,0x08,0x0d,0x1a,0x47,0x2b,0xfb,0x63,0xd7,0x79, +0x54,0x19,0x19,0x7a,0xba,0x9b,0x51,0x65,0x60,0x56,0xe9,0x76, +0xf4,0x77,0x32,0xe7,0x9e,0xea,0x15,0xea,0x11,0x4c,0xb7,0x81, +0x3f,0x41,0x85,0x35,0x8b,0x53,0xa9,0x37,0x63,0xc4,0xfe,0x6e, +0x0a,0xa7,0x18,0xb5,0x5f,0xee,0xa9,0x3a,0x74,0x58,0x1d,0x44, +0xd0,0x2e,0xd5,0xab,0xb2,0x5b,0xe7,0x6c,0x67,0xf3,0x9d,0x3b, +0x9d,0x76,0xba,0xa6,0x5e,0x1e,0x76,0xea,0x20,0x82,0x87,0xa3, +0xab,0xd4,0x41,0x04,0x8d,0x2c,0xa7,0xa8,0x83,0x08,0x76,0x55, +0xf4,0x07,0x11,0xf4,0x2c,0x36,0x33,0xf3,0xec,0x0f,0x22,0x58, +0xe1,0xdf,0xa5,0x0e,0x22,0xd8,0x53,0xd5,0x1f,0x44,0xd0,0xbd, +0xcc,0xc0,0xc0,0xbd,0x3f,0x88,0x60,0x95,0x4f,0xcf,0xef,0x1c, +0xc4,0x0c,0xf8,0x80,0x3c,0x3e,0xdf,0x73,0x36,0xf3,0xf3,0x5d, +0xfb,0xe4,0x4e,0xa1,0x9e,0x81,0xe6,0x8a,0x65,0xa6,0x1d,0xb7, +0xee,0x1c,0x3d,0x76,0xff,0xaf,0x6d,0x6b,0xa7,0xe1,0xf0,0x25, +0x93,0xe6,0x9a,0x0a,0x4a,0xb0,0x24,0x47,0x2b,0xaa,0x3b,0xfb, +0x78,0x55,0x6d,0x6c,0xe4,0xd1,0x17,0xe7,0xcf,0xac,0xd2,0x5d, +0xcd,0xab,0x91,0xaa,0x19,0x44,0x02,0x43,0x63,0x0e,0x19,0x91, +0x01,0x0d,0xea,0xed,0x2d,0x64,0x67,0x62,0x17,0x75,0xf6,0x66, +0x41,0x17,0x33,0x5f,0x1d,0x9d,0x41,0x42,0x8e,0x72,0xe7,0x26, +0xfb,0x19,0x9c,0xa7,0xce,0xe1,0x03,0x3c,0xcf,0x40,0xe6,0x29, +0x43,0x11,0x8e,0x9d,0xc2,0x0d,0x1b,0x58,0xa8,0xd0,0xa2,0xfd, +0x37,0xc0,0x86,0xbf,0x57,0x71,0xe2,0xfb,0xa7,0x08,0xcd,0x8f, +0xfd,0x43,0x3d,0xab,0xf9,0x48,0xeb,0x97,0xfe,0x9f,0xb0,0xc8, +0x51,0xdf,0x52,0x8d,0x6d,0xfe,0x3f,0x60,0x9b,0xfb,0x0b,0x36, +0xf1,0x94,0xd6,0xb9,0xd5,0xe2,0x93,0x8b,0xe7,0xd0,0x45,0xf7, +0xa2,0xf4,0x64,0xb5,0x2e,0x27,0x3a,0x68,0xc1,0x7b,0x2a,0x7f, +0x4a,0xde,0x72,0x89,0xb5,0xc7,0xdd,0xb4,0x8f,0x03,0xec,0x5e, +0x26,0xb2,0xcc,0x22,0x16,0xc6,0xf6,0xfa,0x33,0x9a,0xf0,0x8a, +0x16,0xbc,0x43,0x1d,0xd8,0x04,0x16,0x46,0x50,0x07,0xf6,0x0b, +0x16,0x57,0x51,0x24,0xcb,0x28,0x92,0x29,0x2c,0xbe,0x4d,0x1d, +0x58,0xba,0xea,0x75,0xa8,0x03,0x4b,0xe5,0xd5,0x52,0x8a,0x66, +0x95,0xda,0x81,0x4d,0xd5,0x82,0x4d,0x14,0xe8,0x6c,0x76,0xb2, +0xc4,0x9a,0x52,0xa0,0x71,0xac,0x09,0xec,0x9e,0x42,0x81,0xce, +0x66,0x61,0x83,0x1a,0xa8,0x2a,0xe3,0xf9,0x4f,0x2d,0x4a,0xed, +0xbd,0x33,0xc8,0x1f,0x0d,0xcb,0xab,0x5a,0xf0,0x73,0x8c,0x66, +0xd5,0xd0,0xdf,0x78,0x20,0x32,0xec,0x79,0x71,0x9f,0x7b,0xdd, +0xff,0x1d,0xa4,0xcc,0x33,0xa4,0x70,0xfa,0x67,0xec,0x62,0xd6, +0x6f,0x60,0x37,0xd0,0xfa,0xc3,0x2d,0xbd,0x95,0x6a,0xba,0xb4, +0xfa,0xe9,0x7a,0x8d,0xd2,0x75,0x9f,0xc5,0xf9,0x94,0xae,0x39, +0x94,0xae,0x99,0x2c,0xd5,0x1f,0x7d,0x74,0x0d,0xa1,0x74,0x4d, +0x67,0x61,0x1e,0xa5,0x6b,0x29,0xa5,0x4b,0xac,0x7a,0x7e,0x60, +0x64,0x31,0xe1,0xf9,0x71,0x9a,0xa5,0x51,0xea,0x98,0xcb,0xc3, +0xfb,0x91,0xbd,0x4a,0x91,0xdd,0x63,0x71,0x16,0x45,0x36,0x9d, +0x22,0x9b,0xc5,0xe2,0xe0,0x7e,0x64,0x1c,0x45,0x36,0x83,0x85, +0x19,0x14,0xd9,0x7c,0x35,0xb2,0xdc,0x9f,0x71,0xfc,0x8f,0x16, +0x8c,0x15,0xeb,0xe8,0x52,0x5a,0x8a,0x79,0x36,0x7d,0xf1,0x9a, +0x6d,0x40,0x6f,0x39,0xe4,0xa9,0xd7,0xfb,0x18,0x75,0xd8,0x6b, +0x90,0x6b,0xc1,0x88,0x7e,0xe8,0x5a,0x14,0xfa,0x97,0x2c,0xae, +0xa1,0xd0,0x57,0x50,0xe8,0xd3,0x59,0x94,0xf7,0x43,0x7f,0x93, +0x42,0x9f,0xc8,0xc2,0x2a,0x0a,0x5d,0x4f,0xcd,0xe2,0x40,0x2d, +0x58,0x4b,0x81,0xce,0x67,0x27,0x63,0x9e,0x61,0x1f,0x50,0x43, +0xd0,0x9b,0x46,0x81,0xce,0x61,0x61,0x6d,0x1f,0x50,0x77,0x2d, +0xf5,0x23,0xae,0x67,0xab,0x2e,0x7c,0x52,0xdb,0xff,0x88,0xab, +0xfa,0xe7,0xe9,0xaa,0x0b,0x77,0x6b,0xd5,0x8f,0x7e,0x3d,0x7b, +0xe2,0x55,0xf7,0x1a,0x6a,0x4c,0x36,0x36,0xdf,0x18,0xc2,0xef, +0x66,0x6f,0xfa,0xe8,0x56,0x2c,0x57,0xcc,0x72,0xb6,0x31,0x0e, +0x14,0xfa,0x9f,0x7f,0xa5,0xeb,0x71,0x03,0xf9,0x7c,0xfd,0x11, +0xd4,0xe6,0x71,0x38,0x6b,0xe2,0x9a,0x5c,0x5e,0x5d,0x9f,0x59, +0x93,0x22,0xec,0xca,0xca,0xdc,0x5d,0xa0,0x80,0xb7,0x3e,0xbd, +0x0e,0xaf,0xf4,0xf8,0xb7,0x3b,0x55,0x0a,0xb5,0xa0,0x71,0x79, +0x32,0x67,0x17,0xee,0xeb,0x40,0x4d,0x21,0xa5,0x8f,0xeb,0x7e, +0x5b,0x05,0xbe,0x39,0x6b,0x09,0xbe,0xbc,0xb8,0x7e,0xd3,0x69, +0x1f,0x21,0x96,0x33,0x8d,0xb2,0xf7,0x35,0xd6,0x71,0xc9,0xdf, +0x5c,0x1e,0xc9,0x6f,0xe3,0x8c,0x23,0x9c,0x3d,0x37,0xea,0xcc, +0xba,0x6a,0x41,0x37,0xcc,0xaa,0xaf,0xba,0xe1,0x65,0x1e,0x4b, +0xe1,0x04,0x59,0x60,0x5e,0x75,0x4d,0x28,0xe5,0xae,0x75,0x56, +0xde,0xba,0xdd,0xe1,0xb1,0x94,0xf7,0xe1,0x96,0x5a,0xb8,0xcf, +0xe7,0xc1,0x1a,0xcf,0x12,0xbd,0x8d,0xde,0xe3,0xf9,0x59,0xec, +0x34,0xe7,0xda,0xae,0xea,0xec,0xe2,0x7a,0xa5,0x00,0x06,0xec, +0x83,0x0a,0x1f,0x1b,0xea,0x9f,0xb8,0x8b,0xf6,0xe4,0xd6,0xa9, +0x53,0x9f,0x7c,0xbc,0xe1,0xf4,0x82,0x05,0x1b,0xf4,0xe6,0xcd, +0x3d,0xb5,0xe1,0x96,0x00,0xea,0xaf,0x65,0xc2,0xd5,0x6b,0x78, +0x15,0xe2,0xe1,0x9b,0x6b,0xd2,0xca,0x5e,0xff,0xbb,0x2c,0x3e, +0x15,0xf7,0x13,0x13,0xf7,0x86,0xc3,0xdd,0x55,0x8d,0x87,0x0f, +0x57,0xd9,0x9b,0x9a,0xb8,0x3b,0x98,0x50,0x08,0x4d,0x5a,0xaa, +0x49,0x30,0xf3,0x82,0x34,0x72,0x0d,0xcc,0xec,0x9d,0xc4,0x41, +0xab,0x16,0xd0,0xc9,0x18,0x74,0xfb,0x73,0x78,0x0d,0x5e,0x9b, +0xd6,0x6a,0x9c,0x20,0x24,0x71,0x1d,0x07,0x2e,0xd6,0xc3,0x4b, +0xd4,0x6d,0x5c,0x7a,0x0d,0x87,0xf0,0xe8,0xcb,0x5e,0xd3,0x25, +0x30,0x96,0xfd,0xb0,0xd1,0x69,0xa5,0xe0,0xc4,0xad,0xb0,0x77, +0x5a,0xc1,0xe3,0x58,0x76,0xbd,0x06,0xcc,0x64,0x6f,0xb5,0xda, +0x2f,0x14,0x1c,0xb8,0x85,0xd6,0x76,0x0b,0x78,0x9c,0xc9,0x6a, +0xc2,0x30,0x71,0x22,0x81,0x64,0xd0,0xbd,0x88,0xfb,0x7b,0xfd, +0xaf,0xc0,0x97,0x30,0xf7,0x22,0xa7,0x9a,0x08,0x37,0xc9,0x12, +0x76,0x0a,0xa6,0x32,0xbb,0xd9,0x69,0x90,0x4a,0x17,0x08,0x0c, +0xc7,0xc7,0xf8,0x2a,0x7e,0x8a,0x6f,0xa9,0xe6,0x31,0xea,0x4f, +0x8a,0x8d,0xa0,0x42,0xe1,0x2a,0x5b,0x0b,0x3e,0x0c,0xcc,0x61, +0x6b,0xd1,0x47,0xfd,0xca,0xcc,0xd3,0xbe,0xa3,0xb7,0xc7,0x78, +0x8a,0x0a,0x49,0x7c,0x5b,0xfc,0x33,0x23,0x4d,0x81,0xd7,0x48, +0x31,0x4c,0x63,0x12,0xd9,0x12,0x9c,0x56,0x8f,0x21,0x0c,0x8e, +0xa0,0x38,0x57,0x1f,0x26,0x33,0x3f,0x05,0xce,0x0a,0x06,0x2b, +0xa8,0x50,0xb7,0xa3,0x9a,0x38,0x01,0x12,0xd0,0x16,0xec,0x30, +0x1e,0x3f,0x40,0x27,0x6a,0x58,0xed,0xc7,0x21,0xc7,0x66,0xc1, +0x4b,0x9f,0x5f,0xb9,0xfc,0x50,0x80,0xdd,0xf3,0x70,0x37,0x67, +0x64,0xe3,0xe6,0xb8,0xce,0xa3,0xee,0x4b,0x70,0x83,0x25,0xb0, +0x0a,0x7c,0xc0,0x13,0x96,0xe3,0xf2,0xbe,0x8f,0x3c,0xf6,0xe5, +0xe3,0xc6,0xd6,0x7e,0xb4,0x98,0x87,0x6b,0x57,0xc8,0x54,0x71, +0xc2,0xe7,0x2c,0xf8,0xa1,0x2d,0x69,0xb7,0x8d,0x5f,0x66,0x63, +0x21,0x0b,0x08,0xf2,0xda,0xe2,0xa1,0x58,0x76,0xe5,0x04,0xdb, +0x9a,0x7b,0xb2,0xd8,0x43,0x30,0x3c,0x62,0xd5,0xb0,0xfb,0x6a, +0x63,0xb3,0x76,0x41,0x5e,0x59,0x6a,0x85,0xe2,0xe8,0x72,0x7b, +0xd6,0x21,0xd4,0x34,0xa0,0x94,0x72,0xfb,0x18,0xfc,0x8d,0x74, +0xb4,0xcf,0xb8,0x67,0xde,0xb8,0x37,0xfe,0xeb,0x9d,0x8c,0xd8, +0x78,0x51,0x6a,0x64,0xc7,0xef,0xdc,0x13,0xdf,0xd9,0x78,0xff, +0x9e,0x45,0x3b,0x3a,0xa2,0x23,0x23,0x3e,0xc6,0xc5,0xc4,0xc2, +0xf2,0xfe,0xcc,0x4e,0xfb,0x3d,0xbb,0xc6,0x27,0x31,0x52,0xe3, +0x6a,0xb1,0x91,0xfd,0x3a,0x69,0xef,0x2e,0x73,0xfb,0x19,0x33, +0x3b,0x2c,0xc1,0x11,0x1c,0xa9,0xbc,0xdc,0xa0,0xca,0xfc,0x97, +0x57,0x49,0x8f,0xa5,0x4f,0xfe,0x25,0x3e,0xcd,0xef,0xc4,0x6b, +0xa4,0xdd,0xe2,0xde,0xfd,0xc6,0xce,0xf8,0x3d,0x3b,0xc7,0x53, +0x48,0x17,0xc5,0x46,0x6e,0xe7,0xd7,0xf1,0x7b,0x1b,0xcd,0xef, +0xcd,0x68,0xef,0x40,0x35,0x24,0xf1,0x13,0xe9,0x31,0xb1,0xec, +0x98,0x39,0xc3,0xde,0x7c,0xd7,0xde,0xa4,0xaf,0x29,0xa4,0xd5, +0x52,0x23,0x97,0x34,0x7e,0xd7,0x1e,0xfb,0xce,0x99,0xf7,0x2d, +0x2d,0xa0,0x0f,0x92,0x18,0xfc,0x3b,0x40,0xe1,0xe2,0xdf,0x03, +0x4a,0x75,0x59,0xf5,0x05,0xa9,0x33,0xad,0xd5,0x2d,0x31,0xe9, +0x2c,0x92,0xfb,0x1f,0x76,0x3c,0xef,0xd2,0x2d,0xc3,0x99,0x6b, +0x48,0x81,0x47,0xbe,0x4b,0xae,0x8b,0xac,0x77,0x26,0x7e,0x74, +0x15,0xf6,0x8b,0x9d,0x6c,0x38,0x5e,0x42,0x16,0xd7,0xe2,0x89, +0xc9,0x55,0x2b,0xe5,0x70,0xfb,0x1b,0xf8,0x33,0x38,0x2b,0xc5, +0x41,0x49,0x5b,0xe4,0x87,0x8b,0xfc,0x8f,0x38,0x5e,0x70,0x3d, +0xac,0xad,0xf9,0xd3,0x26,0x95,0x05,0x09,0xe9,0xf4,0x3b,0xea, +0xdf,0x6a,0x1a,0x2c,0x2f,0xb1,0x2e,0x34,0xce,0x35,0x93,0x99, +0x84,0x93,0xd0,0x0e,0xbf,0x63,0x81,0xad,0x46,0x21,0xf2,0x22, +0xeb,0x22,0xe3,0x6c,0x73,0x19,0x1a,0x49,0x76,0x04,0xe3,0x2e, +0x43,0x1c,0x84,0x9e,0xc5,0x50,0x68,0x05,0xcb,0xb3,0x68,0x09, +0xcb,0x56,0xe2,0x32,0xe9,0x83,0x75,0x30,0x13,0x5b,0xd1,0x60, +0x1d,0x07,0xa9,0xa0,0x22,0x50,0x44,0x7f,0x14,0x51,0x41,0x71, +0x4b,0xf5,0x98,0x54,0x19,0x56,0xac,0xca,0x37,0xec,0xc8,0x91, +0x07,0xf7,0xb8,0x5f,0xf2,0x3c,0x26,0xc3,0x8b,0x52,0x13,0x81, +0xb7,0x4e,0xc1,0x2b,0xf0,0x6a,0x0d,0xbc,0x22,0x2b,0xe2,0x8a, +0x93,0x43,0x7a,0xdc,0x2e,0x7b,0xf5,0x68,0x9b,0x84,0x14,0xd8, +0x17,0x5a,0x66,0x5b,0x6b,0xf7,0x4e,0x5b,0xad,0x1a,0xce,0xba, +0xcd,0x98,0x3c,0x1d,0x39,0x53,0xd9,0xa8,0x6f,0x88,0xc4,0x22, +0xac,0x56,0x9d,0xba,0x28,0xbd,0x2d,0xb2,0x9c,0x9a,0x01,0x0f, +0x49,0x9d,0xc9,0xaf,0x18,0x30,0x75,0x31,0xc9,0xf1,0xcd,0xf1, +0xca,0xf6,0x92,0xf5,0x4e,0x5c,0xa9,0xe2,0xd8,0x5d,0x8b,0x63, +0xd6,0x46,0xe9,0xcb,0xa4,0xf3,0x2b,0xc5,0x66,0x76,0x35,0xae, +0x40,0xe1,0x7d,0x8c,0x58,0x5f,0xb1,0x4a,0x0e,0xdf,0x3e,0x82, +0x69,0xb0,0x36,0x57,0xe4,0x29,0x23,0xba,0x8b,0x02,0x8e,0x3a, +0x9c,0x57,0x33,0x62,0x00,0xdf,0x63,0x39,0x2c,0x96,0x50,0x97, +0xaa,0x14,0x16,0x6c,0xc4,0x05,0x98,0x69,0x06,0x4a,0x6e,0x2b, +0xbe,0xbe,0x6a,0x16,0x6d,0x64,0x2a,0xcd,0xe5,0xb0,0xe4,0x87, +0xfb,0x37,0x0e,0xf4,0x3d,0x3f,0x96,0x8c,0x23,0xfe,0xba,0x10, +0x96,0xbe,0x53,0xd9,0x29,0x47,0x63,0x78,0x65,0xd1,0xbd,0x2d, +0xd4,0x23,0xa3,0x94,0x2c,0x24,0xbf,0x46,0xfc,0x6b,0xc2,0x84, +0xb2,0x7f,0x4d,0x47,0x08,0x4c,0x20,0xf5,0x39,0x59,0xf5,0x82, +0x58,0xbd,0x51,0xaa,0xc5,0xf7,0xb8,0x34,0x23,0x46,0x74,0x03, +0x6d,0xe2,0xf9,0xbd,0x21,0xfc,0xd9,0xf2,0x73,0xd3,0x00,0x79, +0xeb,0xd4,0xc3,0xa8,0x5d,0x85,0x83,0x64,0x52,0x4e,0x1a,0xb9, +0xfd,0xa8,0x15,0x06,0xe7,0xc0,0x2b,0x06,0xe9,0xf2,0x60,0x7c, +0xd5,0x12,0x07,0xad,0x9d,0x3f,0x90,0xaf,0xf7,0x60,0xa0,0x2a, +0x9a,0x04,0xa2,0xb6,0xd3,0xb8,0x4d,0x4b,0x8b,0x6d,0xe5,0xd4, +0x32,0x2f,0xcd,0x28,0x97,0xe1,0x77,0xad,0xa2,0x29,0x97,0xd1, +0x9e,0xde,0x7d,0xb0,0x5b,0x46,0x85,0x7a,0x33,0x09,0x8f,0x28, +0x8f,0xaa,0x08,0x2b,0x09,0xd6,0x2e,0x2c,0x0e,0x49,0xf7,0xcb, +0x08,0x48,0xd5,0x06,0xfd,0x8d,0x4d,0x7f,0xb1,0x04,0x5d,0x9c, +0xc7,0x26,0x1e,0x4c,0x3c,0x90,0x70,0x40,0x06,0xe6,0x35,0x92, +0x91,0x2b,0xd8,0xb1,0x71,0x3b,0x62,0x63,0x76,0xc6,0xc8,0xf0, +0x1d,0xd4,0xb5,0x9c,0xd8,0x74,0x92,0x85,0x4b,0xb0,0x96,0x22, +0xc9,0x2e,0xe0,0x20,0x7b,0x13,0xf1,0xc7,0xec,0x22,0x5a,0xd8, +0x48,0x7c,0x31,0xbb,0x84,0x83,0x98,0x09,0xa4,0x38,0xa0,0xc0, +0x2d,0xdb,0xa3,0x32,0x57,0x1e,0x58,0x17,0x58,0x16,0x98,0x27, +0x2b,0x45,0x2d,0x82,0x7e,0x6c,0xf2,0xc1,0xe4,0xe4,0xfd,0xc9, +0xb2,0xef,0xd9,0xe2,0xd4,0x94,0x7c,0xa1,0x84,0x73,0x38,0xc8, +0xb8,0xa0,0x06,0x17,0xb9,0x6b,0x9f,0x52,0x68,0xb2,0xb3,0xe0, +0x36,0x1f,0xd8,0x92,0xb5,0x93,0x77,0x73,0x35,0xf5,0x5a,0x1f, +0xa4,0xf4,0x90,0x17,0x27,0x17,0xa5,0x16,0xa4,0xe5,0x87,0x16, +0x87,0x57,0x44,0x1a,0x44,0xac,0x8b,0x59,0x13,0x97,0xec,0x24, +0xff,0x34,0xf1,0x4e,0xfa,0xe5,0xc2,0x93,0xc1,0x57,0xa2,0x3e, +0xd9,0x9e,0x5a,0x2b,0xd7,0x4f,0xd0,0x4f,0x36,0x49,0x6f,0xc8, +0xa9,0x2c,0x2a,0xa8,0x90,0xe1,0xc3,0x43,0xa4,0xb2,0x32,0xa7, +0xfe,0x40,0x85,0xeb,0x01,0x79,0x8c,0x67,0xa8,0x87,0x8f,0xaf, +0x0c,0xce,0xea,0x11,0xff,0x20,0xf7,0x30,0xe7,0x48,0x87,0x0c, +0xd7,0x2c,0xff,0xdc,0x01,0xe5,0xf5,0x4b,0xa2,0x2d,0xd9,0xbc, +0x35,0x70,0x5b,0x60,0x8c,0x0c,0x46,0x9d,0x68,0xd6,0x87,0x61, +0x16,0x38,0x6c,0x96,0xed,0xa7,0x38,0x83,0xf3,0xdc,0xe6,0x19, +0xe3,0xbd,0xe3,0xa0,0x8d,0xbc,0x24,0xa9,0xe4,0x40,0x69,0xb2, +0x0c,0xd7,0x2c,0xe4,0x52,0xad,0x98,0xf3,0x6c,0x4d,0x5a,0x5a, +0x85,0x00,0x96,0x5c,0x71,0x4a,0x71,0x4a,0x51,0xaa,0x0c,0x0e, +0x1d,0x23,0xe1,0xbb,0xf6,0x65,0x08,0x20,0xff,0x78,0x69,0x3b, +0x0c,0xc1,0xb5,0x57,0x4c,0x97,0xe3,0x1c,0x1c,0xd6,0x76,0xf3, +0xc3,0x9d,0xdc,0x04,0x7f,0xc7,0x29,0xf6,0x7c,0x9e,0x33,0xf3, +0x43,0x7b,0xf5,0x49,0x18,0xa4,0x93,0xd4,0x83,0x0a,0xce,0x2e, +0x2b,0xb2,0x8d,0xbf,0xcc,0x56,0xa5,0xa7,0x55,0x09,0xad,0x9c, +0x6d,0x1a,0xb3,0x9e,0x2b,0xc1,0x51,0xa4,0x45,0x7a,0xcb,0x06, +0xa6,0x53,0xab,0x65,0x95,0xb5,0x38,0xa3,0x15,0x37,0x80,0x9c, +0xd3,0xec,0x11,0xdb,0x48,0x59,0x6e,0x51,0x41,0x41,0xb1,0x0c, +0xc3,0x9b,0x9f,0x82,0xbb,0xc9,0x58,0xee,0x80,0x13,0xf3,0x90, +0x2d,0x4f,0x57,0x96,0x09,0x70,0x80,0x2a,0x9e,0x83,0x19,0x07, +0x32,0x0f,0x64,0xca,0xa0,0xb8,0x01,0x53,0xd9,0xa4,0xcc,0x04, +0x9a,0x6c,0x13,0xe5,0x71,0xa1,0xb1,0xa1,0x3b,0xc2,0x64,0x38, +0xd2,0x01,0xde,0x60,0xbd,0xd7,0x59,0x1b,0xe9,0xdb,0xca,0xc4, +0xa7,0x60,0x48,0xb6,0x7b,0x04,0x5b,0xf9,0xda,0xc9,0x6a,0x6d, +0xb3,0x5d,0xdc,0x75,0x02,0x77,0x6c,0xa3,0x4e,0x2c,0xbb,0xdf, +0x86,0xa9,0x66,0xeb,0xf2,0x8a,0xba,0x6a,0x22,0xeb,0x9c,0x9b, +0x85,0x82,0x43,0x45,0xdd,0xfb,0x9b,0x65,0xc5,0x38,0x5f,0xd2, +0x6d,0x12,0x47,0x71,0x4f,0xa5,0x31,0xe4,0xd8,0xc1,0xbb,0x99, +0x87,0xb3,0x62,0x6b,0xe5,0xbe,0x31,0x4e,0x31,0x2e,0xdb,0x65, +0xb0,0xac,0x8b,0xcb,0x98,0x58,0xb7,0xec,0xcb,0x75,0x79,0x87, +0xe4,0x2e,0x45,0x7e,0x45,0x21,0x25,0x25,0x79,0xe5,0xa5,0x19, +0x85,0xbe,0xa5,0xf2,0x60,0xdf,0xcd,0x01,0x41,0x61,0x5b,0xf3, +0xb7,0x17,0xc7,0x96,0xcb,0x9e,0x80,0x2b,0x6e,0x93,0xde,0x66, +0x43,0xe3,0xc2,0x77,0x47,0xee,0x96,0xc1,0x6e,0xaa,0xc1,0xac, +0x70,0x42,0x1b,0x07,0x13,0x66,0x13,0x73,0x9c,0xd0,0xc9,0x49, +0x67,0x16,0x92,0x16,0x70,0xb7,0xe1,0xd0,0xdd,0x99,0x80,0xbb, +0x15,0xba,0xb3,0x9e,0xf8,0x84,0x40,0xcc,0x21,0xb6,0x24,0xa2, +0x22,0xa2,0x3a,0x22,0xbf,0x5e,0x8e,0xc3,0x0e,0x6f,0x68,0xf5, +0x3e,0x2d,0x33,0x61,0xbd,0xd5,0x5f,0xc9,0xd6,0x34,0xce,0x75, +0x94,0x57,0x67,0x54,0x64,0x94,0x66,0xc9,0xc4,0x84,0x65,0x64, +0xc7,0xfe,0xd8,0xbd,0xdb,0xb7,0xef,0xdc,0x29,0xdf,0x95,0xce, +0x16,0x14,0x97,0x35,0x2a,0x5b,0x65,0x65,0xab,0x2e,0xdb,0xad, +0x5c,0xe2,0x04,0xef,0x70,0x21,0xa6,0xba,0x4b,0x57,0x5a,0xe4, +0x38,0xcb,0x8b,0xf3,0x0a,0xf2,0xb2,0x73,0x64,0xb8,0xa9,0x11, +0x4c,0xb9,0xc4,0xf8,0x7d,0xf1,0x71,0xfc,0xe9,0x35,0xc5,0xc5, +0x0c,0x04,0x3f,0x26,0x0d,0xa8,0x01,0x63,0x6c,0x71,0xcc,0x58, +0x87,0x27,0x68,0x8e,0x83,0xed,0xa1,0xae,0x11,0x5f,0x07,0x73, +0x4e,0xba,0x08,0x73,0x48,0x96,0x59,0xbd,0xcb,0x71,0x77,0x19, +0x86,0xb2,0x87,0x2b,0xeb,0x6a,0x33,0xbb,0x64,0xcb,0x31,0x9e, +0x04,0xd9,0x6c,0x76,0xf4,0x77,0x0d,0xdf,0x13,0xf6,0x41,0xd8, +0x9e,0x44,0x07,0x39,0x68,0x26,0x82,0xc6,0xfe,0x6f,0x52,0x8b, +0x1d,0xe4,0xb5,0xb9,0x1e,0x9d,0x1e,0x6d,0xae,0x4d,0xda,0x2e, +0x61,0x99,0xc1,0x19,0x41,0x19,0x41,0xda,0x7a,0x3b,0x56,0xc6, +0x2e,0x89,0x2b,0xa8,0xcb,0xab,0xcf,0xaa,0xa7,0x2c,0xa8,0x97, +0x96,0x3b,0x52,0x1f,0xf6,0x1d,0xd5,0x47,0x64,0x26,0xbe,0x6b, +0x07,0xc3,0xb9,0xc8,0xf5,0x46,0xf3,0x96,0xac,0x2a,0xf1,0x94, +0x5f,0xbf,0xd6,0xd2,0x73,0xf0,0xae,0x2c,0x09,0xb7,0x4f,0x66, +0x53,0xec,0x99,0x3b,0x6c,0x49,0x6a,0x5a,0xa1,0x00,0x45,0xa7, +0x9a,0x36,0xdc,0xe3,0xa4,0x21,0x91,0x04,0x8f,0xc3,0x02,0x38, +0x4e,0x4d,0x20,0x69,0x12,0xf1,0x68,0x15,0xf5,0xa4,0x39,0x92, +0x5e,0x6b,0x25,0x27,0xbd,0x06,0x1f,0x91,0x59,0xed,0x9f,0xb2, +0x2a,0x63,0xbc,0x43,0xf0,0x63,0xb8,0x05,0x1f,0xb3,0xd4,0x54, +0xc9,0x20,0x69,0x4e,0xd4,0xda,0x29,0x49,0x49,0x29,0x10,0xe0, +0xfd,0x0b,0xb5,0x6b,0x4e,0xdb,0xea,0xa1,0x89,0x33,0x98,0x50, +0x41,0x27,0xdd,0x06,0x2d,0x32,0xab,0xeb,0xd3,0xff,0x47,0xdb, +0x7b,0x40,0x47,0x71,0x6d,0x5d,0xc2,0xa4,0xae,0x2a,0x30,0xc8, +0xc6,0xf6,0xc5,0x25,0x61,0x4b,0xe4,0x0c,0x06,0x91,0x83,0x88, +0x22,0x08,0xe5,0x9c,0x73,0xce,0x28,0x23,0x09,0x14,0xc9,0x26, +0x2a,0xe7,0x2c,0xb5,0x72,0x46,0x39,0x67,0x72,0xce,0xc9,0x44, +0x1b,0x07,0x70,0xc2,0xa7,0xda,0xa7,0xf4,0xde,0xdc,0x16,0xb6, +0xdf,0xfb,0xe6,0xcd,0xac,0xf9,0xe6,0x5f,0xf3,0x2f,0xd6,0x12, +0xb5,0xba,0xd4,0xf7,0xee,0x7b,0xee,0x39,0x7b,0xef,0xa3,0xae, +0xaa,0x66,0x84,0x75,0x5b,0x49,0x6e,0x70,0x89,0x4b,0x96,0x67, +0x79,0x3e,0x1f,0x5a,0xea,0x55,0x1b,0x94,0xcd,0x89,0xd5,0x8e, +0xe4,0x6b,0x93,0x55,0x4c,0xac,0x03,0x89,0xf1,0x73,0xb3,0xf0, +0x0f,0x2e,0xf3,0xe6,0x4b,0x0a,0x8a,0x9b,0xd3,0xca,0x38,0x50, +0xd8,0x42,0x22,0x4a,0x7c,0xea,0xc2,0xf2,0xdc,0x03,0xf8,0xf4, +0x90,0x1c,0xf7,0x5c,0x07,0x0e,0x54,0xa8,0xd1,0x4c,0x0f,0xca, +0xf0,0xc9,0x75,0xb1,0x39,0x68,0x7a,0xc8,0xe8,0x48,0x4a,0x5d, +0x7a,0x5b,0x72,0x2f,0x07,0xba,0xf5,0x38,0xfb,0x21,0x7c,0x56, +0x8f,0x9f,0xbd,0xb0,0x51,0xc5,0xf1,0x0e,0x30,0x7e,0x1d,0xf2, +0x0e,0x2f,0x99,0x28,0xa3,0x30,0xf3,0x30,0x3b,0x9d,0x23,0xfc, +0x49,0xbb,0x37,0xa7,0x7f,0x8f,0xbf,0x95,0xaa,0x98,0x67,0x5f, +0x95,0xe3,0xdf,0xe6,0x74,0xd1,0xbd,0x5d,0x11,0x10,0x8a,0x09, +0x2d,0x45,0x66,0xba,0xed,0x1a,0x54,0x5d,0xaa,0x5c,0x60,0xff, +0xa2,0xab,0xaf,0xb3,0xac,0x47,0x31,0x39,0x3f,0xbe,0xe0,0x54, +0xe9,0x29,0xdf,0x78,0xbf,0xb4,0x3d,0x65,0x26,0x03,0x26,0x2f, +0x4d,0x0a,0xcf,0xf2,0xb8,0xe2,0x95,0xf9,0xe3,0x77,0x4a,0xc3, +0xbb,0x9e,0x90,0x9a,0x90,0xd2,0xbd,0x25,0x81,0xd9,0xe5,0xbc, +0x3f,0x45,0xe5,0x9c,0xc5,0xdd,0xc7,0x1d,0xc4,0x37,0xcf,0xa1, +0xc0,0x39,0x2b,0xc8,0x93,0xaf,0x0a,0xad,0x0a,0xac,0xf4,0xe7, +0xf6,0x5b,0x91,0x40,0x4d,0x2f,0x3d,0x0f,0x9b,0x4a,0x3f,0xbe, +0xa6,0xa3,0xfc,0x46,0x66,0x0f,0xa7,0xf0,0xc7,0x17,0x53,0x02, +0x0b,0x42,0x3a,0xc2,0x6e,0x35,0xbc,0x2d,0x81,0xc9,0xd9,0xb0, +0xc2,0x24,0x8d,0x8f,0x44,0x85,0x90,0xf9,0x7b,0xd6,0xed,0xfb, +0x25,0x1a,0x3e,0x3b,0x06,0xcb,0x38,0x98,0xdf,0x8b,0xf3,0x61, +0xa6,0x29,0x6d,0xdd,0x62,0x30,0x82,0xc1,0x23,0xc1,0x38,0xcf, +0x68,0x9a,0x72,0x9b,0xc7,0x20,0x4c,0xc8,0x81,0x45,0xc7,0xe1, +0xb0,0xe2,0x77,0xcc,0x97,0x47,0xe6,0x1d,0xdc,0xae,0xec,0x7f, +0x34,0xf6,0x40,0xf0,0x54,0x47,0x26,0xde,0x4c,0xd2,0x40,0x4d, +0x5d,0x76,0xcb,0x69,0x95,0x84,0x6b,0x27,0x40,0x02,0xf3,0x94, +0xe4,0x43,0x80,0x26,0x73,0x02,0xed,0xd3,0x70,0x65,0x01,0x8e, +0x77,0xdd,0x62,0xa3,0x67,0x64,0x56,0x63,0xcf,0x37,0x37,0xd4, +0xb6,0x95,0xf5,0x65,0x1a,0x64,0x3b,0x50,0xa7,0xef,0xd9,0x90, +0x7a,0xa6,0x2d,0x07,0x76,0xf0,0xb6,0xf9,0x92,0xd3,0x42,0x23, +0x09,0x29,0xf3,0xaa,0xf4,0xcb,0x73,0xf1,0xe4,0x0b,0x03,0x8b, +0xdd,0x73,0xdc,0x39,0xba,0xeb,0x4a,0x04,0xb5,0x85,0x2f,0x61, +0x67,0xaf,0xf8,0xa5,0x21,0x6c,0x11,0xbf,0x44,0x1d,0x43,0xd0, +0xc1,0xbb,0x03,0x70,0x17,0xb4,0x99,0x25,0x30,0x9e,0x14,0x5d, +0x2f,0x06,0x2e,0xf5,0xbe,0x69,0x36,0x1f,0xb1,0xde,0x17,0x19, +0xdf,0x1d,0x1c,0xa6,0x40,0x24,0xc9,0x36,0x28,0x41,0x26,0x7d, +0x45,0x7b,0x2e,0x1f,0xf6,0xd4,0x07,0x24,0xc1,0x83,0x94,0x51, +0x1f,0xc8,0x94,0x09,0xe6,0xd4,0xc3,0x09,0xf6,0xf8,0xa9,0x53, +0xc7,0x4e,0x1e,0xaa,0x5b,0xcf,0x17,0xe5,0xd9,0x3f,0x39,0x1c, +0x1f,0x73,0xfc,0xc0,0x21,0xc5,0x98,0x03,0x92,0xc3,0xbd,0x17, +0x6b,0x77,0xbf,0x72,0x58,0xba,0xd1,0xe9,0x22,0x13,0xbb,0xd3, +0x4f,0xcb,0xd6,0xa0,0xc0,0x85,0xaf,0x6e,0xc8,0x19,0x3a,0x71, +0x8e,0x13,0x88,0x25,0xa9,0x91,0xdf,0x48,0x3a,0xba,0x06,0x47, +0x3f,0xb4,0x5f,0x67,0xc3,0x9e,0xc9,0x3e,0x9d,0x73,0x32,0xc7, +0x31,0x81,0x8f,0xd1,0x0f,0x33,0xdd,0x63,0x5b,0x1e,0xc4,0xa7, +0x64,0x25,0xe5,0x25,0x14,0x70,0xfd,0xeb,0x91,0x75,0xfe,0x99, +0x09,0x37,0x75,0xb0,0xdc,0x66,0x96,0xeb,0xc6,0x5f,0xec,0x68, +0x38,0x1b,0x7f,0x81,0x3b,0x8d,0x06,0xf5,0x60,0x70,0x9a,0x89, +0xd3,0xaa,0x70,0x38,0x67,0x92,0x5b,0xc9,0x6b,0x75,0x3a,0xb7, +0x86,0x77,0x70,0xc3,0xa6,0xcd,0x94,0x06,0x6a,0x98,0xc2,0x7d, +0x65,0x61,0x35,0xa1,0x39,0xf5,0x94,0x06,0x3a,0x75,0x9a,0x7d, +0xce,0x71,0xa6,0x8c,0xb7,0xae,0xb1,0x15,0x7e,0x28,0xa7,0x81, +0x9a,0xcc,0xb2,0xf4,0xc2,0x74,0x6e,0xb0,0x91,0x14,0xe6,0x65, +0x16,0x25,0x96,0x70,0xa7,0x98,0x44,0xcf,0xf4,0x80,0x12,0xff, +0x8c,0x88,0xac,0xfd,0xf9,0xfb,0x39,0x0c,0x67,0x72,0x53,0xb3, +0x52,0xd3,0x53,0x39,0x90,0xe2,0x46,0x22,0xaf,0x3d,0x98,0xca, +0x86,0x3a,0x05,0x3a,0xec,0x71,0x0c,0x3e,0x16,0xfc,0x55,0xf0, +0x48,0xf5,0x4e,0x3e,0x03,0xcc,0x99,0x77,0xc9,0x09,0xfb,0xe9, +0xbf,0x7d,0xd5,0x79,0xbc,0xd3,0x39,0xaf,0xb3,0x9e,0x35,0xae, +0x21,0x7c,0x46,0x50,0x46,0x70,0x5a,0xa0,0xf6,0x41,0x5a,0xc0, +0x47,0x72,0x2a,0x72,0xea,0x72,0x1a,0x38,0x2b,0x71,0x26,0x39, +0x48,0x19,0x27,0xfa,0xc0,0xc1,0xc3,0xfc,0xe1,0x53,0x4c,0x5e, +0x51,0x69,0x7d,0x6a,0x23,0x57,0xbc,0xe3,0xb6,0xfd,0xe6,0x4d, +0xce,0x94,0x71,0x02,0xcc,0x75,0x37,0x6f,0x37,0xcf,0x76,0xe5, +0x4b,0xf3,0x73,0x73,0xd2,0x33,0x28,0xe3,0x34,0x00,0x8d,0xca, +0xa9,0xe3,0xa7,0x0f,0x29,0x0f,0x6e,0x29,0x2a,0x94,0x40,0xe0, +0x4f,0x94,0x71,0xc6,0xc2,0x02,0x1b,0x5c,0xf0,0xef,0x8c,0xf3, +0x21,0x65,0x1c,0xe1,0x02,0x4c,0x20,0x61,0x59,0x5e,0xb9,0x3e, +0x69,0x01,0xde,0x7c,0x41,0x54,0x59,0x60,0xc6,0x5e,0x6e,0xc5, +0x13,0x9b,0xd5,0x58,0xe8,0x08,0x85,0xcc,0x69,0xfc,0xb2,0x72, +0xfa,0x79,0x4b,0x5a,0xae,0x89,0xa7,0x4a,0x53,0x60,0x0c,0xef, +0x90,0x1b,0x8d,0x63,0x2c,0x9b,0xfc,0x5f,0x1e,0x01,0x5e,0x11, +0x3e,0xad,0x73,0x65,0xa8,0x2a,0xae,0x24,0xdf,0xd7,0xe2,0x41, +0xa7,0xb7,0xf8,0x01,0xe3,0x7a,0xd8,0xf5,0x88,0xdb,0xd1,0x04, +0x3b,0xfe,0xd7,0xf8,0xdf,0x52,0x2f,0x67,0x1c,0xaa,0xe3,0x5d, +0x63,0x6d,0x63,0x2d,0x0f,0xd2,0x6d,0xff,0x4e,0x50,0x22,0x8d, +0x3f,0x83,0x87,0xf1,0x2c,0x26,0xd1,0x91,0x8a,0x4a,0x49,0x5a, +0x2a,0x95,0xb6,0xc4,0xff,0x2a,0x2a,0x49,0xcc,0xe9,0x74,0x2a, +0x2a,0xe9,0xef,0x45,0x25,0xf4,0x60,0x18,0x87,0x33,0x1d,0xe0, +0x63,0xb9,0xa8,0x18,0xea,0xd8,0xe4,0x3a,0xf1,0xc5,0xb9,0x45, +0x05,0xf9,0x52,0x4e,0x34,0x2e,0xfc,0x7f,0xb9,0x59,0xc2,0x76, +0x64,0x49,0x33,0x78,0x58,0xb3,0x22,0x67,0xf4,0xff,0x62,0xd7, +0x84,0x79,0x19,0x04,0x3c,0xac,0xd0,0x83,0x11,0x4d,0x45,0xc9, +0xff,0x8f,0x1b,0x08,0x17,0x67,0x90,0xb3,0x21,0xf5,0xee,0x55, +0xca,0x72,0x21,0x8d,0x97,0x0b,0xe9,0x86,0x11,0x21,0xbd,0xcf, +0x46,0xbb,0x05,0x5a,0xf8,0x3b,0x71,0xb5,0x76,0x59,0xce,0x23, +0xe2,0x1b,0xac,0xec,0x2b,0x17,0xdf,0x62,0xa6,0x8e,0x8a,0xaf, +0x0a,0xd8,0x58,0x13,0x69,0xb6,0xb4,0x38,0xab,0xd0,0xbb,0x98, +0x0f,0xf3,0x0b,0xf0,0x0b,0xdc,0x4b,0x45,0xb4,0x70,0x44,0x44, +0xdd,0x30,0xe6,0x6f,0x11,0x4d,0x72,0xe4,0x7b,0x13,0x9f,0xa4, +0x77,0x65,0x1e,0x94,0xcb,0xb1,0x73,0x8c,0x33,0x95,0xe3,0x2d, +0x9d,0x6c,0xc6,0xe2,0x9a,0x7f,0x93,0xe3,0x62,0x2e,0x15,0x6a, +0xa9,0xd2,0x2e,0xa2,0x4a,0xbb,0x48,0xae,0xb4,0x8b,0xda,0x59, +0x05,0x58,0x27,0xfb,0x80,0x38,0xfc,0xc6,0x86,0x99,0xf8,0x9b, +0x05,0xda,0x1a,0xca,0xc9,0xf7,0x47,0x4a,0xbe,0x37,0xd3,0x14, +0x13,0xf6,0x25,0x84,0x27,0x84,0x55,0xe5,0xf0,0x9e,0x83,0xce, +0xe7,0x7d,0xea,0x5d,0x43,0xf9,0xb4,0xa0,0xf4,0x3d,0xd9,0xee, +0x76,0x07,0xcd,0x0e,0x19,0x1f,0xce,0x3a,0x9b,0xdd,0x92,0x41, +0xc9,0x7c,0x23,0x25,0xf3,0x47,0xf0,0x59,0xdd,0x9f,0x64,0xee, +0x08,0xe3,0xd7,0x32,0x38,0x01,0x66,0x91,0xf7,0x74,0x1b,0xe4, +0xc1,0x97,0x85,0x97,0xee,0xad,0xda,0xc3,0xc9,0x42,0xbe,0x25, +0xf6,0x2b,0xe4,0xda,0xf6,0x09,0x13,0xa6,0x65,0xbc,0x7e,0x44, +0xdb,0xee,0xde,0xac,0x1f,0x48,0x7c,0xcc,0xc5,0xfd,0x4f,0xda, +0x56,0x40,0xb5,0x8d,0x4a,0xdb,0x8d,0xbf,0xa4,0xcd,0x61,0x05, +0x59,0xd9,0xfa,0x94,0x11,0xf7,0xe3,0x64,0xe2,0x97,0xeb,0x50, +0xe0,0x94,0x15,0x38,0xc2,0xdd,0x01,0x94,0xbb,0x85,0xf8,0x1c, +0xb2,0xb2,0xe3,0x29,0xb3,0x52,0x95,0x3c,0x35,0x59,0xc9,0x88, +0x11,0xb8,0x81,0xd4,0x74,0x96,0x5f,0xcb,0xec,0x76,0xce,0xe0, +0x03,0xb4,0xbc,0xf5,0x3d,0xec,0x38,0x21,0xfd,0x47,0x12,0xed, +0xe7,0x6e,0xe5,0x1f,0x58,0xea,0x4d,0x35,0xbf,0xa4,0x21,0xb3, +0x86,0x2b,0x3e,0x44,0xde,0x0b,0x55,0x45,0x21,0xff,0x5e,0xba, +0x38,0x91,0xf6,0xfa,0x54,0x63,0x14,0xa8,0xc6,0xac,0x46,0xd5, +0x25,0xca,0x05,0x8e,0xcf,0x3a,0xfb,0xbb,0xca,0xff,0xd6,0x18, +0x9f,0x78,0xff,0x34,0xbf,0x32,0xe3,0x11,0x8d,0xa1,0x06,0x64, +0xc5,0xb7,0xe6,0x4f,0xde,0x29,0x41,0x19,0x3e,0x22,0xe5,0xf0, +0xf0,0x2f,0xe5,0x65,0x85,0x09,0xb7,0xfe,0x9b,0x6a,0x8b,0x2b, +0x61,0xd4,0x7f,0xa8,0xac,0x02,0x6c,0x14,0x68,0x1b,0x63,0x31, +0xf8,0x10,0x46,0x9f,0x00,0x27,0x4e,0x9c,0x60,0x01,0x37,0x98, +0x08,0x5c,0xb4,0x7d,0x03,0xae,0xb6,0xe4,0x84,0xdf,0xad,0x09, +0x78,0xb2,0x2d,0x25,0xf5,0xe5,0xd5,0x55,0x6e,0xd5,0xfc,0xda, +0x35,0xc8,0x68,0x20,0xeb,0x90,0x63,0xc3,0x77,0xe7,0xb4,0xe7, +0x35,0x17,0x70,0xf2,0x47,0x2e,0x3a,0xe1,0x7d,0xb2,0xa9,0x6e, +0x65,0x8d,0x5a,0x11,0x07,0xd3,0x4d,0xc4,0xf5,0x5d,0xb0,0x97, +0xbd,0x1c,0x78,0xd7,0xfd,0xa6,0x23,0x27,0x6e,0xbb,0x4a,0x3a, +0x45,0x65,0x53,0xba,0xf5,0x56,0xb2,0x67,0xc4,0x34,0x26,0x0f, +0x27,0xa0,0xa2,0x6f,0xa2,0x05,0x28,0x4a,0xbb,0xb1,0xa8,0x23, +0xd1,0x18,0xa4,0x60,0x58,0x1f,0x64,0xec,0x6a,0xa7,0x6b,0xa7, +0x58,0xe9,0x78,0xb3,0xb7,0xe9,0x7c,0xee,0x7d,0xc5,0xa8,0xb3, +0x78,0xcc,0x54,0x02,0x77,0xe4,0xb7,0xb8,0x2b,0xd3,0xf7,0x33, +0xb8,0x0b,0x2f,0x92,0x0c,0xff,0x2c,0xb7,0x0c,0xc7,0xca,0x74, +0x1a,0xc1,0xe0,0xba,0xbd,0xc5,0x1c,0x1e,0x39,0x40,0xc4,0x2d, +0xdd,0x10,0xce,0x5e,0x0d,0xbc,0xe3,0x7e,0xcb,0x21,0xbf,0x85, +0x5f,0x7f,0x76,0x45,0xf5,0xa6,0x42,0x0e,0x66,0xb1,0xaf,0x3d, +0x48,0xb6,0x57,0x8e,0x53,0xb2,0xe7,0xfb,0xdf,0xaf,0xdf,0x5b, +0x42,0x17,0x5b,0x27,0x4b,0x20,0xfd,0x71,0x9d,0x09,0xf5,0x49, +0xa1,0xcd,0xfc,0xba,0x20,0x1c,0x1b,0x81,0x0b,0x0f,0x9f,0xb4, +0xe4,0x7b,0x8e,0x77,0x9e,0x6c,0x3d,0xcd,0xad,0x44,0x23,0x2b, +0x30,0x3a,0xc4,0xae,0xf6,0xb0,0x5e,0xed,0xa1,0x5c,0x64,0x23, +0x79,0x53,0xdf,0x70,0xee,0x37,0xa5,0xd3,0xa0,0xd1,0x82,0x1a, +0x2c,0x7c,0x8d,0x8b,0x88,0x46,0xb1,0xef,0x75,0x65,0xd0,0x69, +0x43,0x1d,0xc6,0x3d,0x22,0xb9,0x42,0x05,0xe6,0xb2,0x60,0x55, +0xb6,0xc7,0xde,0xde,0x59,0xd7,0x5d,0xb1,0xc4,0xfe,0x7e,0x6b, +0x7b,0x67,0xf1,0x35,0xc5,0xd8,0xb3,0x78,0xca,0x51,0x02,0xe3, +0x4d,0x70,0x32,0x8b,0x1f,0xec,0x8d,0xb3,0x84,0x71,0x99,0x12, +0xf8,0x48,0xd4,0x20,0x66,0x95,0xda,0x95,0xfa,0x45,0xbe,0x56, +0x7c,0x9f,0xff,0x90,0x7b,0x87,0x1b,0x07,0x3b,0xee,0x8d,0xdc, +0x65,0xae,0x86,0x9b,0x7d,0x8f,0x1c,0xe5,0x53,0xcd,0x4f,0x1c, +0x03,0x9d,0x72,0x60,0xbf,0xbd,0x02,0x5b,0x15,0xe5,0x97,0xbe, +0xd6,0x90,0xa8,0x27,0xa0,0x9d,0x76,0xb8,0x09,0x75,0xf7,0xc5, +0x0e,0xc0,0xfa,0xd4,0xc3,0x8d,0xa8,0x16,0x11,0x7d,0xcb,0xec, +0x48,0xe2,0x66,0xdc,0xb8,0xff,0x94,0x0d,0x6c,0x4e,0x8d,0xd7, +0x45,0xed,0x7d,0xa7,0x6c,0x41,0x37,0x2d,0x79,0x95,0x44,0x4c, +0x83,0x2e,0x82,0x41,0xbd,0x10,0xc4,0xce,0x13,0x55,0xc8,0x85, +0xf0,0xbb,0xfe,0x57,0x7d,0x0b,0xce,0xf2,0x9b,0x4a,0x56,0x48, +0xb7,0x65,0x73,0x6f,0xcd,0xf1,0x76,0x3b,0x2b,0x8b,0x80,0x68, +0x82,0x80,0x99,0x1d,0xc5,0x10,0xe7,0xd3,0xce,0x60,0x1f,0xf8, +0x11,0x88,0xc3,0x79,0x18,0xc7,0xe0,0x75,0x55,0x9a,0x97,0x6d, +0xb5,0xcc,0xbd,0xdc,0xcb,0xfd,0xa5,0xb7,0x6d,0x0b,0xf9,0x80, +0x5d,0x76,0x8e,0x46,0x81,0x1c,0x6e,0x86,0x23,0x04,0x27,0xb0, +0xab,0xbd,0x7c,0xd4,0x5d,0x94,0xab,0x5d,0x6f,0xd6,0x9f,0x6d, +0x3e,0xf6,0x56,0x11,0xc6,0xb3,0xb2,0x0d,0x91,0xc4,0xd7,0xd2, +0xcb,0xc1,0xd5,0xd5,0xb4,0xc8,0xb4,0xd0,0x21,0xcb,0xd5,0x99, +0xaf,0x0f,0xeb,0x08,0xe8,0xdc,0x63,0xe6,0xa0,0xeb,0xb9,0x2d, +0xb0,0xc4,0x96,0xbf,0x95,0x77,0xb9,0x76,0xa0,0xab,0x21,0xa0, +0x2e,0xb0,0x24,0xb8,0xa6,0x9a,0xf7,0xc9,0x74,0xc8,0xb3,0xc9, +0xaf,0xaa,0x29,0x6b,0x94,0xb6,0xd1,0x7d,0x69,0x97,0x6d,0x23, +0xbd,0x55,0x6d,0xb5,0x75,0x67,0x5d,0x6a,0xf9,0x45,0x73,0x70, +0xf6,0x5a,0x54,0xb2,0xcd,0x35,0xe7,0xaf,0x14,0x8c,0xdc,0x9e, +0x8f,0x07,0xbb,0x59,0xc1,0x06,0x2e,0x10,0xb3,0x0a,0xcd,0x4a, +0x83,0x22,0x5f,0x6b,0xbe,0xdf,0x6f,0xc8,0xa3,0xc3,0x95,0x83, +0xed,0xf7,0x69,0xf4,0x56,0x2f,0xda,0x80,0x9b,0x7d,0xd2,0x4c, +0x79,0xd0,0x2a,0x07,0xe6,0xdb,0xab,0xb0,0x85,0x13,0xd7,0x89, +0x4e,0x74,0xa7,0xdb,0x13,0xce,0x26,0x85,0x36,0xf1,0xeb,0x82, +0x71,0xcc,0xdf,0x3b,0xdd,0xf1,0xaf,0x9d,0x3e,0xcc,0xae,0xf2, +0xb4,0x5e,0xe5,0xa1,0x5c,0x48,0x77,0xba,0xae,0xe9,0xc2,0xaf, +0x74,0xa7,0x77,0xb5,0xe0,0x2e,0x56,0x41,0x26,0x15,0x96,0x11, +0x28,0x67,0x47,0x30,0xd5,0xbb,0xd4,0xf1,0x8b,0x66,0xe3,0xdc, +0x75,0xef,0x31,0x5d,0x2d,0xbc,0x58,0x2c,0xc7,0xf4,0x15,0x2b, +0x1a,0xc2,0x82,0x3f,0x1f,0x04,0x40,0x27,0x59,0x19,0x20,0x7f, +0x10,0xc0,0xb4,0x91,0x49,0x4e,0x74,0x9e,0xf8,0xb7,0x74,0x5a, +0xe3,0x69,0x25,0x9f,0xc4,0x5a,0xf2,0xb6,0xbe,0xe1,0xfc,0xdf, +0xe9,0x24,0x38,0x50,0x13,0x6f,0x5a,0xb1,0xbb,0xca,0xa0,0x70, +0x8f,0x35,0xdf,0xe7,0x77,0xfe,0x5f,0x0b,0x92,0x3f,0x74,0x60, +0xb3,0x6f,0x86,0xfc,0x03,0xdc,0xbf,0x16,0xf4,0xdf,0x85,0xa4, +0x0f,0xbf,0x92,0x81,0xf7,0x90,0x9a,0xf9,0x0d,0x23,0x19,0xbe, +0xf4,0x2f,0x48,0x6d,0x72,0x48,0xc6,0x56,0x60,0x4c,0x33,0xdc, +0x53,0x9e,0xe1,0x05,0xff,0x5a,0xf7,0xee,0x16,0xdc,0xcd,0x0a, +0x76,0xa2,0xe9,0xff,0x05,0x24,0x08,0x94,0x75,0x13,0xf1,0xb3, +0x1e,0xe1,0x33,0x16,0x7e,0x17,0x89,0x9c,0x46,0x1e,0xfc,0x49, +0x23,0xe3,0x2d,0xe0,0x3a,0x13,0x89,0x8b,0xd4,0x37,0xe0,0x2a, +0x4b,0x0e,0xea,0x70,0x1c,0xf9,0x5f,0x71,0x47,0xfb,0xdf,0xe4, +0xc2,0x0d,0x67,0xe5,0x12,0x71,0x43,0xf7,0x08,0x75,0xd0,0x62, +0x76,0xcc,0x6b,0xe6,0xff,0xe2,0x94,0x19,0x94,0x3d,0x02,0x64, +0x3e,0x24,0x10,0xb8,0xff,0x3e,0x81,0x48,0xee,0xe2,0xe6,0x3f, +0xc9,0xe3,0x07,0xca,0x1d,0x59,0x7e,0xd9,0xce,0x69,0xae,0x94, +0x0b,0x22,0x4b,0x82,0x6a,0x43,0x4a,0xfe,0x0b,0x77,0xdc,0x73, +0xbf,0xf1,0x1f,0xdc,0x91,0x33,0xc2,0x1d,0x15,0xff,0xe2,0x0e, +0xd9,0x4e,0x99,0x33,0x45,0x30,0xde,0x34,0x2a,0x0f,0xc7,0xa3, +0xa2,0x4f,0xa2,0x25,0x28,0x16,0x77,0x63,0x71,0x47,0x8a,0x31, +0x14,0x81,0x41,0x7d,0xb0,0x91,0x8b,0xad,0x9e,0x83,0x62,0x85, +0xd3,0xcd,0xee,0xe6,0x8b,0xb9,0xf7,0xe4,0x08,0x86,0x47,0xe3, +0x67,0x24,0xd3,0x2f,0xdb,0x25,0xdd,0xb5,0x22,0x4d,0x3e,0x71, +0x1d,0x55,0x45,0x3c,0x24,0x9f,0xb8,0x8b,0x4e,0x7c,0x85,0x52, +0xe4,0x2d,0xc7,0xfc,0x66,0x5e,0xed,0xec,0xf2,0xea,0x8d,0x74, +0x9d,0x33,0x59,0xd0,0xc0,0x0f,0x48,0x54,0x69,0x70,0x5d,0x48, +0x89,0xdb,0x3e,0x3e,0xc7,0x33,0xc7,0x39,0xd9,0x8b,0x13,0x6c, +0xc4,0xfb,0x44,0xf8,0xcc,0x48,0xfc,0x8c,0xfd,0x0b,0xc5,0xdf, +0x71,0x48,0xb0,0x1c,0x89,0x83,0xb4,0x33,0xf9,0x6f,0x14,0x76, +0x7a,0xf6,0x34,0x0e,0xd7,0xbb,0x5b,0x2e,0xca,0xe3,0x50,0x4f, +0x51,0xd4,0xfe,0xe7,0xea,0x0f,0x1f,0x24,0xe2,0xd6,0xae,0x91, +0xd5,0xdf,0x7d,0xcf,0x9c,0x9b,0x6b,0x97,0xd7,0xae,0x93,0xca, +0x57,0x0f,0xbb,0x29,0xed,0x46,0x51,0x8a,0x0d,0x29,0x75,0xa5, +0x20,0x46,0x02,0x41,0x41,0x0c,0xc7,0xfc,0x05,0x02,0x2e,0xc9, +0xfa,0x89,0x99,0xb8,0xb0,0x9e,0x79,0x5c,0x3e,0x74,0xb7,0xec, +0x37,0x9b,0x5c,0xde,0x7f,0x8d,0x83,0xae,0x91,0x07,0x87,0xea, +0xb0,0x83,0xe0,0x68,0x2f,0x8b,0xad,0x16,0xca,0xe5,0xf6,0x92, +0x47,0xfd,0xf5,0xe7,0x81,0x28,0xc1,0x5a,0x53,0x56,0x98,0xad, +0x4b,0xe0,0x47,0x26,0xc0,0xd2,0xd6,0x5e,0xcb,0xab,0xc4,0x9e, +0xbf,0x57,0xdb,0x33,0x90,0x7f,0x83,0x3b,0x2b,0xce,0x66,0x61, +0xe9,0x62,0xb2,0x9c,0x5d,0xe7,0x6c,0x33,0xd7,0x41,0x5e,0x24, +0xc0,0x34,0x76,0x5c,0xf8,0x45,0xe9,0x25,0x9b,0x2d,0x7f,0xc6, +0x02,0x6f,0x24,0xf2,0xac,0xc2,0x1f,0x93,0xa9,0x78,0x64,0xf9, +0x64,0xd2,0x70,0x94,0xa7,0xf1,0x51,0xd2,0x90,0xda,0xd0,0x62, +0x6e,0x98,0x43,0x33,0x92,0xe7,0x58,0x60,0x9d,0x6f,0xb1,0x23, +0x66,0x43,0xec,0xe6,0x83,0x75,0x2f,0xab,0xde,0xd4,0xc0,0x27, +0x66,0xe9,0xbc,0x13,0x2a,0x3a,0xe0,0x68,0xdb,0x45,0xe6,0xd4, +0x61,0x58,0xc0,0xd8,0x78,0x50,0x4a,0x82,0x51,0x69,0x8a,0xf1, +0xa1,0x09,0x7b,0xe3,0xf7,0xb6,0xe6,0xf1,0x2e,0x4f,0xac,0x5f, +0xb8,0x9e,0xe7,0x84,0x08,0x50,0x21,0xc9,0xa1,0x49,0xc1,0x89, +0xc1,0x14,0x3a,0x93,0x90,0x91,0x90,0x95,0x98,0x63,0x9a,0xc6, +0x7b,0x6e,0x30,0xd5,0xd8,0xa8,0x5f,0xed,0xc4,0x77,0x37,0x56, +0x56,0x96,0x34,0x70,0xb0,0x99,0x09,0xc1,0x4f,0x17,0x2d,0xc6, +0x25,0xd6,0xf2,0x87,0x8e,0xed,0xe8,0xfe,0x1d,0x26,0xa4,0xc3, +0xd2,0xa2,0x64,0x3e,0xaa,0x64,0x6f,0x0d,0x85,0x82,0x4d,0x62, +0x1f,0x81,0xbe,0x56,0xec,0x63,0xa0,0x92,0x5a,0x82,0xa0,0xc5, +0x5b,0xf5,0x91,0xf7,0xce,0x34,0xe7,0x61,0x7e,0xe9,0x77,0x4f, +0x32,0xe1,0x03,0xee,0x44,0xfa,0xf1,0xf4,0x74,0x25,0x91,0x98, +0xd3,0xc6,0x5b,0x43,0xf6,0x2d,0xc9,0x0a,0x4c,0x0f,0xa4,0xfa, +0x4e,0xf3,0xa2,0x20,0x34,0x2f,0x24,0x8f,0x9b,0x89,0xa3,0x89, +0xf7,0x8a,0x95,0x86,0x38,0xdf,0x33,0xcb,0x96,0x87,0x5d,0xd5, +0xbf,0xd0,0xb7,0x7d,0x74,0xea,0xe0,0xa9,0x83,0x27,0x0f,0xd0, +0xdf,0x8a,0xca,0x0b,0x2d,0x0c,0xc9,0xf7,0xd8,0xc7,0x27,0x44, +0x25,0x46,0x26,0x50,0xa3,0xaa,0xcd,0x24,0x24,0x27,0xa4,0xc6, +0xa7,0x5a,0x26,0xf1,0xce,0x7a,0x46,0xd6,0xeb,0x9d,0x6b,0xdc, +0xf9,0xb6,0x82,0x9a,0xc2,0xf2,0x32,0x4e,0x78,0x8c,0x6f,0xc8, +0x7e,0x50,0x06,0xad,0xac,0x43,0xcd,0xa8,0xb5,0x37,0xe6,0x3b, +0x58,0x9f,0x41,0x8f,0xd6,0x87,0x45,0xff,0x4c,0x65,0x63,0x26, +0xae,0x09,0x3b,0x6d,0x05,0x6b,0x32,0x12,0x17,0xe3,0xce,0xd0, +0xd3,0xd6,0xb0,0x23,0x33,0x15,0xbf,0x90,0x0c,0x8f,0xed,0x25, +0xd0,0xda,0x88,0xad,0x4c,0x3f,0x36,0x10,0x58,0x96,0xf7,0xba, +0x3f,0xfb,0x31,0x77,0x22,0xf1,0x44,0x46,0xa2,0x92,0x38,0xc9, +0x0e,0x6e,0x33,0xfe,0x86,0x9b,0x5d,0x71,0x6a,0x30,0x27,0xf8, +0xe1,0x0b,0xd2,0x04,0xe9,0x36,0x5d,0xc2,0x78,0x71,0x9c,0x38, +0x9e,0x85,0x2b,0x70,0x8f,0xe0,0x7e,0x4c,0x87,0xfd,0x2c,0x9e, +0xa3,0xe6,0x3f,0xcf,0x27,0xc7,0x3b,0xdb,0x6b,0xe7,0x01,0xb5, +0x43,0x1b,0x0f,0x57,0x0f,0xd4,0xdf,0x29,0xb9,0x66,0x91,0xc8, +0x7b,0xef,0xb4,0x5c,0xe9,0xa0,0x19,0x76,0x2c,0xec,0xab,0xf0, +0x63,0xa7,0xac,0x79,0x60,0x4f,0x03,0x89,0x87,0x71,0xc9,0x79, +0xce,0x7c,0x43,0x3e,0x75,0xce,0x6d,0xf6,0x7d,0x8a,0x0a,0x7f, +0x2c,0x94,0xa9,0x10,0xff,0x35,0x8e,0xf2,0x6c,0x82,0x1f,0x4d, +0xc5,0xf9,0x0d,0xec,0x83,0xf2,0x73,0x77,0xca,0xde,0x71,0xd8, +0x00,0x7a,0xc4,0x0c,0xd7,0x30,0x33,0x7d,0x4d,0x36,0x9a,0x29, +0x97,0x39,0x3c,0xee,0x3b,0x7b,0xfe,0x18,0x4c,0x51,0xc4,0xed, +0x38,0x9d,0x6c,0xbd,0xb5,0xf4,0x8d,0xe6,0x75,0x2e,0x2b,0x7c, +0x6f,0x62,0xf0,0xd4,0xa0,0xd0,0xe8,0x80,0x50,0x15,0x07,0x63, +0x1b,0x63,0x57,0x87,0x2a,0x3b,0xbe,0xa5,0xa7,0xa5,0xbf,0xf4, +0x2c,0x97,0x94,0x10,0x77,0xfa,0xf4,0xd4,0xd3,0x71,0x87,0x23, +0x92,0x55,0x06,0x77,0xbc,0x5c,0x78,0x67,0x03,0x67,0x49,0xdf, +0x99,0x65,0x94,0xa1,0x9b,0x6c,0xd0,0x96,0xca,0xc7,0xb4,0x84, +0xdc,0x0e,0x6f,0xe7,0x60,0x43,0x18,0x09,0x44,0x2d,0xbd,0xb9, +0xb8,0x5d,0xad,0xd0,0x82,0x07,0xdd,0x47,0x77,0x40,0x21,0x0f, +0xcc,0x8e,0x9e,0xe4,0xc5,0xe5,0xa1,0x24,0xc7,0x30,0x4b,0x3f, +0x4d,0xaf,0x8d,0x12,0x43,0xf7,0xde,0x81,0x40,0xda,0xbc,0xfe, +0x61,0x2b,0xc4,0xbd,0x9f,0xfe,0x9a,0x7c,0xfa,0xa4,0xe0,0xa9, +0xd4,0x36,0x07,0x84,0xab,0x78,0x3a,0x58,0xeb,0xdb,0x5a,0xc8, +0xa7,0xef,0x6e,0xee,0x2f,0x6b,0xe0,0x92,0x12,0xcf,0x8c,0x4c, +0x7f,0x48,0x3e,0xfd,0xce,0x97,0x0b,0xee,0xa8,0x71,0xc3,0x8b, +0x1c,0x48,0x4c,0x4b,0xd0,0xed,0xfd,0x6d,0xa6,0x11,0x7c,0xa6, +0x21,0xc5,0x61,0x48,0x73,0x0d,0x68,0xfe,0xa0,0x96,0x2e,0x9d, +0x7f,0x63,0x11,0xcd,0x36,0xed,0x47,0x77,0x61,0x52,0x1e,0x98, +0xfe,0x35,0xbf,0x51,0x96,0x5e,0x9a,0x7e,0x7b,0x3a,0xbf,0xbf, +0x67,0x6f,0x7f,0xe0,0x00,0x27,0xb3,0xc7,0x48,0x22,0x8f,0x13, +0xf3,0x3e,0x4e,0x36,0x39,0xfc,0x9f,0xe1,0xc3,0x1d,0xb0,0x93, +0xfc,0x15,0x2c,0x89,0x3c,0x5a,0x30,0x45,0x09,0x56,0xcb,0xbd, +0x98,0x54,0x36,0xf3,0xfd,0xc4,0xed,0xa6,0xfb,0xf9,0xcc,0x91, +0x00,0x70,0xba,0x78,0x90,0x80,0xf6,0xc3,0x3b,0x30,0xa9,0x00, +0xac,0x8c,0xe3,0xf9,0xa0,0x91,0x18,0xec,0x50,0xe3,0x66,0xc0, +0x8b,0x3f,0x57,0x4d,0x67,0xdd,0xd7,0xb7,0x77,0x20,0xa8,0x8f, +0xfb,0x63,0x12,0xcd,0x91,0xff,0x6f,0x8b,0xc6,0x69,0xc8,0xff, +0x5f,0x03,0x9e,0x28,0xbb,0x4b,0xfe,0xdd,0x58,0x52,0x75,0xd8, +0x5c,0xb7,0xe2,0xbd,0xe3,0x64,0x65,0x1a,0x6b,0x49,0x34,0x2e, +0xd5,0x5c,0x8f,0x0b,0x2c,0x73,0x68,0xc9,0x69,0x0e,0xdc,0x02, +0x09,0xb8,0x2a,0x89,0x1f,0xe0,0xae,0x6e,0xf8,0x8c,0x81,0x9d, +0x62,0x05,0x89,0x39,0xbb,0xbf,0x23,0xac,0xd3,0x22,0x8a,0xcf, +0x32,0x4c,0xb1,0x8c,0xb3,0xa7,0x6c,0x0b,0x33,0x49,0x28,0x2e, +0xb2,0x58,0x8d,0x0b,0xb5,0x8b,0x6c,0x78,0x50,0xbd,0x7c,0xf1, +0xb7,0x2c,0x58,0xc7,0xe1,0xbb,0x30,0x92,0x6b,0x98,0x66,0x95, +0x64,0xdf,0x9a,0xcc,0x47,0xb6,0x87,0xb5,0x87,0xb6,0x50,0xa9, +0xeb,0x90,0x59,0x92,0x11,0xdd,0x7e,0x68,0xb2,0x0e,0x35,0xac, +0x28,0x51,0x9f,0x5c,0xc3,0xa4,0x58,0x4a,0xee,0x32,0xa5,0x69, +0x29,0x25,0x2a,0x68,0x7b,0x9a,0xd4,0x74,0x97,0xde,0x4c,0xbf, +0x66,0x96,0xcc,0xef,0x53,0xf7,0xd6,0x74,0xb1,0xe2,0xe0,0x22, +0xa8,0x91,0x6c,0x8d,0xd2,0xed,0x55,0x3a,0xed,0x45,0xbc,0x47, +0xab,0xfb,0xad,0xd0,0x21,0x4e,0x28,0x8c,0x25,0xd4,0x0f,0x0b, +0xca,0x8c,0x38,0x57,0xe4,0x89,0x65,0xb9,0x66,0xa5,0x8e,0xd4, +0x8f,0x8a,0xad,0xff,0x39,0xf7,0x76,0x57,0x0e,0x67,0xe0,0x61, +0x02,0xba,0x95,0xc0,0xbc,0xbc,0x02,0x9b,0x2d,0xf2,0x79,0x4d, +0x5c,0xb5,0x48,0x0d,0xb7,0x7b,0x51,0x01,0x3a,0x23,0x87,0x20, +0xd7,0xe9,0x87,0xa6,0xff,0x82,0x90,0xfc,0x2f,0x08,0x36,0xa7, +0x49,0x6d,0x4f,0xf1,0xcd,0x8c,0xab,0xff,0x5b,0x08,0xcd,0x1e, +0x37,0xf7,0x5e,0xe0,0xa8,0x2c,0xcd,0xf9,0xd3,0x49,0xed,0x79, +0xef,0xa4,0xfe,0x9e,0x58,0xaf,0x0a,0xd8,0x57,0x97,0x61,0x93, +0x45,0x1e,0xbf,0x1b,0x57,0x2d,0xde,0x88,0x3b,0x3c,0x39,0x99, +0x1e,0xfe,0xf0,0x17,0x0f,0xff,0x9f,0x30,0x88,0xa7,0xe0,0x14, +0x1d,0x5a,0xab,0x52,0xbf,0x70,0x8f,0xcd,0x7f,0x0c,0xcd,0xbc, +0xba,0x02,0x1b,0xe9,0xd0,0x1a,0xb8,0x72,0xc9,0xc8,0xd0,0x42, +0x74,0xec,0x7f,0x0f,0x32,0x8e,0x1e,0xf6,0xfa,0x1b,0x03,0x23, +0xe4,0xfe,0x17,0x1b,0xbe,0xff,0x4f,0x1b,0x6e,0x5d,0xe6,0x63, +0x67,0xe7,0xac,0xef,0xae,0x58,0x6c,0xf7,0xb0,0xad,0xbd,0x47, +0x7a,0x45,0xf1,0xc0,0x59,0x3c,0x2d,0xb7,0xe1,0xa6,0xef,0x6d, +0xf8,0x19,0x4b,0x90,0x64,0x4a,0xc4,0x93,0xb0,0xe9,0x4f,0xa7, +0x71,0x85,0x4a,0xff,0x88,0xd3,0x90,0x8b,0xdf,0xfa,0x11,0xa7, +0x21,0xdc,0x12,0x7f,0x27,0xe6,0x74,0x05,0xba,0x7f,0x05,0xa7, +0x8d,0x5a,0xa0,0x9d,0x23,0x16,0x48,0x1e,0x0f,0xaf,0x0c,0x9a, +0x60,0xfa,0x95,0x20,0xa1,0xfb,0x43,0x2d,0xd0,0x1f,0x63,0x64, +0xde,0xa4,0x3a,0x3f,0x5f,0x7e,0xed,0x41,0x71,0x40,0xbe,0x8b, +0x73,0x40,0x80,0x8f,0xfc,0xda,0x83,0x82,0x80,0x6a,0x65,0x71, +0x6a,0x11,0x89,0x28,0x0e,0xa9,0x08,0x29,0xdc,0x13,0xc1,0x53, +0x05,0x76,0x4f,0xf5,0xe1,0x84,0x55,0xc9,0x24,0x28,0x22,0x65, +0xe4,0x3b,0xcc,0x52,0x52,0x72,0x73,0x93,0x23,0x46,0xbe,0xc3, +0x2c,0x32,0x22,0x48,0x59,0x34,0xf6,0x23,0x11,0xd2,0x90,0x8a, +0xbd,0x52,0x9f,0xfd,0x7c,0xb6,0x6f,0xb6,0x47,0x8a,0x2f,0x87, +0x93,0x8b,0x88,0x69,0x91,0x6e,0x81,0x45,0x7a,0xa8,0x3d,0xdf, +0xb2,0x6f,0xc0,0xbf,0x93,0xb6,0xb6,0xe6,0x54,0xf6,0x34,0x2e, +0xef,0xba,0xa9,0x7d,0x39,0x3a,0x39,0x2a,0x29,0x2a,0x99,0xcb, +0x0e,0x0b,0x8d,0xdf,0x3b,0x35,0x24,0x34,0x26,0x20,0x4c,0xc5, +0xdb,0xc9,0x4a,0xcf,0xd6,0xbc,0xdc,0x99,0x6f,0xed,0x6a,0x94, +0x93,0x5e,0x62,0xc2,0x99,0x33,0xf1,0x53,0x4f,0xc7,0x1f,0x8a, +0x49,0x50,0xb9,0xac,0xfe,0x64,0xc1,0x9d,0x8d,0xdc,0xf0,0x03, +0x6d,0x02,0x3a,0x45,0x74,0x3b,0x6e,0xc1,0x56,0xbb,0x5c,0x7e, +0x1b,0xaa,0x4d,0xdf,0x88,0x1b,0x43,0x38,0x50,0x85,0xb5,0xc4, +0xb4,0x50,0xab,0xc0,0x3c,0x2d,0xcc,0x96,0x6f,0xdf,0x3f,0xe4, +0xdf,0x1e,0xc0,0x09,0xd5,0xc3,0xec,0xdf,0xc2,0xef,0x29,0xeb, +0x20,0x22,0xdf,0x2b,0xf0,0xac,0x90,0x8a,0x3e,0xe4,0x6e,0x6d, +0xef,0x9f,0x22,0x6e,0x01,0x3f,0xb0,0x81,0x96,0x76,0x54,0xdb, +0x39,0xbd,0x48,0xb2,0xce,0xc5,0x76,0x8e,0xbd,0xdc,0x55,0x03, +0xdb,0xd8,0x71,0xf1,0x27,0xa5,0x97,0xc6,0x2c,0xd8,0xe1,0x77, +0xc4,0x69,0x4f,0x80,0xbb,0x4a,0x34,0xeb,0x26,0x0d,0xac,0xa9, +0x91,0xe6,0x55,0x2a,0x27,0xb2,0xe5,0xbe,0x05,0xce,0xca,0xc3, +0xd1,0x21,0xb4,0xb8,0xe5,0x1b,0x72,0x29,0xf0,0xb6,0xc7,0x6d, +0xc7,0xbc,0x26,0xba,0x21,0x7f,0x59,0x3f,0x99,0x87,0x15,0x09, +0x8d,0x8a,0x0a,0x09,0x89,0x4a,0xca,0x54,0x8e,0x63,0x33,0x93, +0x92,0xb2,0xb3,0x93,0xa2,0x42,0x95,0x71,0x4b,0x2a,0x49,0xc1, +0x0d,0x95,0xd3,0xee,0xce,0x6e,0x2a,0xe5,0xb7,0x7d,0x67,0xfd, +0xf6,0x18,0x2c,0xe5,0x30,0x4f,0xfc,0x84,0xdc,0xfb,0xb9,0xea, +0x5d,0x12,0x6c,0x30,0x3b,0xc3,0x47,0xe2,0x97,0x5e,0xf3,0x37, +0x2d,0xe0,0x14,0x04,0x1d,0x41,0x9d,0xc0,0x3f,0xf1,0x0f,0x4b, +0xe8,0xc7,0x40,0xbc,0x64,0x0e,0x97,0x1c,0x58,0x58,0x46,0xdd, +0xca,0x7b,0x8b,0x08,0x9f,0x60,0x29,0x71,0xf6,0x0d,0x70,0x55, +0x89,0x61,0x83,0x92,0xc2,0x32,0xa3,0x95,0x71,0xc2,0x63,0xd3, +0x35,0xa8,0x61,0x49,0x53,0xfc,0xd8,0x1a,0xf9,0x33,0xce,0xff, +0x4c,0x71,0x38,0x09,0x6a,0x75,0x6c,0xe9,0xe9,0x9c,0x9c,0x52, +0xa5,0x04,0xb6,0xca,0x37,0xdf,0x59,0xb9,0x6c,0x17,0x09,0x8b, +0x8c,0xa4,0x08,0x93,0x33,0x28,0xc2,0x8c,0xa4,0xe4,0xec,0xec, +0x64,0xf9,0x1d,0x69,0x02,0x55,0x97,0xfd,0x3b,0xbc,0x35,0x5c, +0x2c,0x5b,0xf7,0xf0,0x35,0x3d,0x94,0x1d,0xae,0xd2,0x54,0x3a, +0x46,0xf2,0xb6,0x95,0xec,0xaa,0x30,0x68,0x2d,0xe4,0x5d,0x7b, +0x7d,0x87,0x42,0x2e,0x53,0x74,0x83,0xb2,0x50,0xf2,0x2f,0x60, +0x5d,0x72,0xa0,0x0c,0x7e,0x88,0x1f,0x13,0xe7,0x3d,0x81,0x23, +0x90,0x12,0xc3,0x32,0x28,0xa4,0xf1,0x7f,0x43,0xfa,0x8a,0x92, +0x8f,0x1c,0x52,0x71,0x7a,0xea,0x08,0xa4,0x8d,0x75,0x6c,0xc9, +0x99,0xdc,0xdc,0xe2,0x11,0x48,0x79,0x4e,0x23,0x90,0xa2,0xa2, +0x82,0x43,0xa2,0x93,0xe4,0x90,0x32,0x13,0x93,0xfe,0x84,0xf4, +0x3b,0x85,0x14,0xb6,0xcd,0x5b,0xd3,0xd5,0xaa,0xd5,0x8f,0xaf, +0xe9,0xa5,0x90,0x2e,0xbf,0x87,0xb4,0x85,0x42,0x32,0xa6,0x90, +0xdc,0x3a,0x7d,0xcf,0x05,0x53,0x98,0xff,0x10,0xe3,0xfe,0x2a, +0x38,0x61,0xa7,0xec,0x97,0xff,0x2d,0x90,0x63,0x7f,0xb2,0xe0, +0xff,0x16,0x88,0xc6,0xbf,0x62,0x73,0x86,0xee,0x5e,0x72,0x76, +0x4e,0x52,0x64,0xa8,0xf2,0xf7,0x3a,0xff,0xb1,0x5e,0xd1,0x04, +0x3f,0xf9,0x0b,0xdb,0x7f,0x09,0x57,0xfe,0xe6,0x62,0x8d,0x0a, +0xa3,0x7f,0x85,0x4b,0x18,0x3b,0x6c,0xf1,0xb7,0x31,0x9c,0x2b, +0x7b,0x42,0x16,0xcc,0xc1,0x59,0x6b,0x51,0xf1,0xbf,0x36,0x8c, +0x50,0xc4,0xf6,0x8c,0x74,0x94,0xdc,0x70,0xdd,0x71,0x12,0x89, +0xaa,0x9e,0x0b,0x37,0x2f,0x68,0xf1,0xe6,0x6f,0xff,0x50,0x05, +0xa3,0x93,0x41,0xed,0xd8,0x71,0x1e,0x32,0xa9,0x4f,0xda,0xf2, +0x83,0xfb,0x4f,0x51,0xb0,0x88,0x3b,0xce,0x5a,0x1c,0x3a,0x72, +0x34,0x05,0xd7,0x55,0x4e,0xbb,0x33,0x5b,0xf1,0x57,0x4c,0x25, +0x31,0xcd,0x21,0x37,0xc3,0xda,0xcd,0xa9,0x40,0x9a,0xa6,0xeb, +0x50,0x65,0x46,0x4d,0x98,0x46,0x72,0x8d,0x32,0x0d,0xde,0xcb, +0x6f,0xef,0xde,0xfe,0xe0,0x5e,0xae,0x97,0xe6,0x1b,0xe8,0xdc, +0x7d,0xfc,0x2e,0x1f,0x8c,0x4c,0xe2,0xf8,0x40,0xd4,0xd8,0xb6, +0x0e,0xb7,0x6e,0xa5,0x74,0xbd,0x5d,0x56,0x4f,0xcc,0x4f,0xbd, +0xcf,0xc0,0xf9,0x8a,0x2d,0xde,0xb7,0x7f,0x7c,0x3f,0xb1,0xe2, +0x5f,0xd3,0xbe,0x8d,0x82,0xc5,0x74,0x5a,0xb3,0xc3,0x47,0xe9, +0xb4,0x6b,0x69,0x22,0xcf,0x52,0x1c,0xe6,0xd2,0xff,0xbb,0xd3, +0x4e,0xa7,0x3c,0x7c,0xef,0x19,0x30,0x85,0x60,0x6e,0x1c,0xc7, +0xfb,0xe1,0xee,0xad,0x8b,0x70,0xd3,0x36,0x4e,0xd8,0x8c,0x8b, +0xc9,0x7f,0x46,0xa1,0xde,0xb5,0x96,0x97,0x87,0x69,0x1d,0x2a, +0xda,0xc8,0x9f,0x9d,0x28,0x5b,0x48,0xf5,0x9f,0xce,0xd3,0x66, +0x4e,0x8d,0x87,0x51,0xba,0xde,0xfb,0x79,0xa6,0xff,0x6b,0x9e, +0x88,0x0e,0xaa,0xf3,0x83,0x74,0x9e,0x19,0x7f,0xcf,0x63,0x41, +0xe7,0x09,0x40,0x8d,0x2d,0x8b,0x71,0xf3,0x16,0x4e,0x48,0x82, +0xb7,0x34,0xaa,0x5f,0x7a,0x2c,0xd8,0x32,0x9f,0x46,0xf5,0xce, +0xdb,0xf7,0x8b,0xe3,0x20,0x03,0x7f,0x22,0x5b,0x7f,0x70,0x7f, +0x13,0x09,0x4b,0x4c,0x8f,0xf0,0x49,0xb8,0xae,0x0a,0x47,0xdd, +0x9d,0xc5,0x21,0xe0,0x8f,0xff,0x67,0x5c,0x85,0xb2,0x32,0xa2, +0x9f,0x6f,0x9c,0x61,0x94,0x14,0xe0,0xc4,0xf7,0xed,0xef,0xd9, +0xd7,0x15,0xc4,0x09,0x3e,0xa8,0x4a,0xf6,0x14,0xf9,0x16,0xf8, +0xe5,0x7b,0xb8,0xf0,0x97,0xb5,0x6f,0x6e,0xe9,0xd3,0xa8,0xaa, +0xe5,0x03,0x8a,0x7c,0x8b,0x7d,0x4a,0x1e,0xf7,0x9d,0xbb,0x52, +0x73,0x9b,0x32,0xd0,0x32,0x0b,0xf8,0x95,0xf5,0x34,0x32,0x36, +0xde,0x6a,0xcd,0x0d,0x2b,0x6c,0xa7,0x7a,0x93,0x07,0x1f,0xdd, +0xbc,0x0e,0x8a,0x96,0xd9,0x54,0xca,0x26,0xce,0xd3,0x47,0x9d, +0x40,0x0e,0x56,0x82,0x02,0x1d,0x5f,0x3f,0xdd,0x24,0x29,0xd0, +0x81,0x3f,0xbf,0xbf,0x27,0xac,0x2d,0x98,0xb3,0x93,0x2f,0x31, +0x21,0xb8,0x19,0x4e,0x62,0x87,0x3d,0x9c,0x36,0xc7,0xa3,0x0e, +0x70,0xd4,0x18,0x13,0x18,0xe1,0xc9,0xd6,0xff,0x90,0xc9,0x3f, +0xff,0xe0,0xb0,0x50,0x0d,0x77,0x79,0xa5,0x9b,0xf1,0x60,0xfc, +0x5e,0xa9,0xb7,0x72,0xff,0x98,0xa0,0x4b,0x7a,0xc2,0x07,0x02, +0x7a,0xfc,0x2a,0xab,0x79,0xe3,0x02,0xed,0x02,0xbd,0x2c,0xee, +0x38,0xd6,0x12,0xd0,0xca,0x83,0x89,0x14,0xc7,0x14,0xf3,0x0c, +0xaa,0x7b,0xe3,0x96,0x68,0xe1,0xee,0x20,0x2a,0x1b,0x13,0x65, +0xb7,0x48,0x8e,0x67,0x9e,0x43,0x9a,0xf3,0xd9,0x0c,0x3e,0xbc, +0x22,0xe0,0x6c,0x70,0x15,0x87,0x5f,0xa3,0x94,0xbc,0x4e,0x87, +0x31,0x45,0xaf,0xeb,0x23,0xcb,0xf9,0xca,0xf4,0xfd,0x95,0x01, +0x8d,0xc1,0x65,0x8a,0x0e,0xe1,0x59,0xbe,0x54,0x3c,0x3c,0x14, +0x97,0x3b,0xcf,0xf1,0x5d,0x15,0xc1,0x81,0x9e,0x31,0xfe,0xc4, +0x6e,0x2a,0xf7,0x7c,0xa8,0x0c,0x69,0x5d,0x98,0xce,0xd8,0x87, +0xa5,0xd6,0xa9,0x6c,0xc4,0x4c,0xe2,0x3e,0xc3,0x42,0x4b,0xdb, +0x95,0x13,0x66,0x19,0x8b,0x4e,0x4d,0xec,0xb7,0x35,0x57,0x9f, +0xd4,0xc0,0x07,0x87,0x4f,0xf1,0xa2,0xa2,0x94,0xe0,0x47,0xae, +0x7a,0xab,0x0c,0x94,0xab,0x6c,0x24,0xaf,0x2f,0x37,0xdd,0x80, +0xb9,0x4a,0x74,0x18,0x79,0x2b,0x07,0x40,0x4e,0x87,0x9e,0x0a, +0x3d,0x15,0xd6,0x42,0x81,0x5c,0x0b,0xbe,0x1a,0xd0,0x6f,0x1d, +0xca,0x27,0xfb,0x26,0x79,0x26,0x7a,0x3a,0x1c,0xb4,0x3d,0x64, +0x7b,0x78,0xe8,0xd1,0x45,0x90,0xf4,0x01,0x67,0x21,0xe5,0xf7, +0xe8,0x79,0x6a,0xb9,0xeb,0xed,0xa5,0xed,0x4a,0x48,0x6e,0xf5, +0xb9,0x8a,0xeb,0x45,0x97,0xcd,0xf2,0xf8,0x40,0x4d,0x6f,0x4d, +0x4f,0xa3,0xfd,0xa9,0xfb,0x53,0x23,0x92,0x3d,0x6c,0xf9,0x56, +0x9b,0x76,0xd3,0x46,0x23,0x3f,0x3b,0x3f,0x27,0x7f,0x0f,0xbf, +0xa3,0x7e,0xc7,0xfc,0x8e,0x9d,0x36,0xe4,0x3b,0x4e,0x76,0x9c, +0xea,0x38,0xcd,0x89,0x4b,0x7b,0x85,0xd5,0x6c,0xfe,0x49,0xfa, +0xef,0x14,0x2d,0xe3,0x58,0x82,0x46,0x58,0x2a,0x68,0x42,0x29, +0x9a,0xf7,0x41,0x60,0x8b,0x78,0x9c,0x39,0x5e,0xf2,0x55,0x69, +0x99,0xd2,0xa5,0x77,0x38,0x06,0xea,0x60,0xcc,0x4f,0xad,0x73, +0x2e,0xc1,0x98,0x76,0x3c,0x76,0x49,0x47,0x03,0xe3,0x30,0x86, +0xc5,0x84,0x68,0x54,0x37,0xc2,0x99,0xca,0xed,0x0e,0xed,0x30, +0x35,0x03,0xa6,0x9d,0x06,0x67,0x45,0x08,0xa3,0x5c,0x09,0x71, +0x64,0xfa,0xa5,0x77,0x4c,0xaf,0x06,0xb9,0x04,0xdb,0x35,0x58, +0xdc,0x6e,0x43,0x60,0xfb,0x4e,0xdc,0xce,0x5c,0xc6,0x4b,0x04, +0x55,0xae,0x83,0x0a,0xd3,0xae,0x4e,0xae,0xc3,0x2c,0x75,0x56, +0x7c,0x99,0x4f,0x92,0x8c,0xce,0x68,0x9d,0xd4,0xa1,0x2e,0xfe, +0x48,0x5f,0xf4,0x95,0x98,0x0e,0x0e,0x8f,0xe1,0x59,0x52,0xfe, +0x30,0xe3,0x6d,0xc2,0x0f,0xe6,0x71,0x7c,0xec,0xf2,0xb0,0x15, +0x9e,0xeb,0x38,0x99,0x12,0xf5,0xa3,0x9b,0x51,0xe5,0x36,0x0b, +0xfa,0x53,0x60,0xd6,0x66,0x9c,0xc5,0x60,0x11,0x9a,0x93,0x5b, +0xf9,0x77,0xcb,0xdb,0xea,0xdc,0x1a,0x78,0x4b,0xd7,0x9d,0x9e, +0x5b,0x83,0xa9,0x65,0x69,0x20,0x97,0xfc,0xaf,0x78,0x0d,0xb8, +0x14,0xb7,0xf2,0xfa,0x15,0xea,0xe5,0xbb,0xf3,0x68,0x2e,0x5f, +0x13,0x0e,0x10,0x94,0xe0,0x04,0x36,0xd9,0x54,0xf2,0x2b,0xd3, +0x90,0x9a,0x5e,0xab,0x02,0x07,0xd9,0x72,0xd7,0xdc,0x8c,0xec, +0xac,0xac,0x2c,0x45,0xf4,0x63,0xcd,0xf3,0x3c,0x2f,0x29,0xc3, +0x13,0xa6,0x21,0x2d,0xb5,0x5a,0xe5,0x22,0x6b,0x98,0x22,0xd9, +0x88,0xb7,0x58,0xb7,0xe8,0xb8,0x4a,0x95,0x4b,0x10,0x04,0x1b, +0x30,0x89,0x4d,0xcb,0x48,0xc9,0x4c,0xc9,0xe2,0xe0,0x39,0x73, +0x6c,0xd7,0x11,0xf3,0x03,0x16,0x9c,0xd7,0xa1,0xe8,0x18,0x97, +0xa9,0x4e,0x4c,0xa2,0xa5,0xa4,0x9d,0x69,0x2b,0xca,0x6a,0x49, +0x54,0x49,0xea,0x3d,0x79,0xf5,0x38,0x8c,0xe3,0xc4,0xd1,0x4c, +0x42,0x7a,0x5c,0x7a,0x5c,0x86,0x49,0x06,0xef,0xa3,0x66,0xb8, +0x7d,0x9b,0x11,0x07,0x6a,0x98,0x8b,0x6b,0x58,0x9c,0x17,0xae, +0x66,0xbe,0x53,0xb9,0xd9,0xa9,0xa6,0x3b,0xa7,0x27,0xf1,0x9e, +0x22,0xac,0x85,0xed,0x04,0x55,0x9f,0x80,0x2a,0x83,0x2b,0xd1, +0x83,0x9c,0x28,0x38,0x2e,0x2d,0x51,0x02,0xd5,0x35,0x8c,0x30, +0xe9,0x31,0xd9,0x88,0x9b,0xef,0xb2,0x61,0xe2,0x22,0x72,0x1d, +0x15,0x81,0xcc,0x87,0x60,0xdd,0xfc,0x76,0x7e,0x7e,0xa1,0x5a, +0xa9,0x76,0xf5,0xc5,0xa2,0xfe,0xf2,0xee,0x3a,0x87,0x6a,0xde, +0xc4,0x41,0xdb,0x6d,0xa7,0xaf,0x7d,0xb9,0x7b,0xf5,0x9e,0x46, +0x4e,0x98,0xd4,0x25,0xae,0xed,0xd7,0xd2,0x17,0xe7,0x99,0x00, +0x32,0xab,0x0c,0xf0,0x23,0x6b,0x5c,0xe5,0x95,0x65,0xc6,0x3f, +0x48,0xbf,0x99,0x73,0xb1,0x80,0x9b,0xc5,0x3a,0x1d,0x72,0x3c, +0xec,0x70,0x38,0xd1,0x98,0x87,0xcd,0x19,0x30,0x3b,0x17,0x3e, +0x2c,0x3a,0xd0,0xce,0xaf,0x0f,0x5f,0xb1,0x7f,0x41,0x24,0x07, +0x13,0xd9,0xf3,0xc5,0x9d,0xe5,0x67,0xab,0xa9,0x0e,0x3e,0x14, +0xde,0x90,0x17,0xa0,0xa3,0xda,0xfd,0x02,0x3e,0xe8,0xc6,0x0f, +0x5e,0x1a,0x2f,0x43,0x9d,0x97,0x46,0xcb,0x70,0xac,0x31,0x8c, +0x55,0x65,0xb1,0x06,0x8c,0x49,0xf2,0x8a,0xce,0x9d,0x2f,0xd5, +0xca,0xba,0xf8,0xb5,0xd7,0xcd,0xaf,0x07,0xdf,0xe0,0xb6,0x31, +0x81,0x1b,0x6d,0xd5,0xe6,0x6f,0x2d,0x35,0xe6,0xbf,0xbf,0xd1, +0xfb,0x34,0xf5,0x25,0x27,0xb3,0x15,0xef,0x90,0x2e,0x1d,0x88, +0x43,0x03,0x90,0x18,0xd2,0x2d,0xa0,0xb9,0xa3,0x65,0x02,0x91, +0xac,0xcf,0x82,0x85,0x5b,0x70,0xd9,0xf6,0x72,0x13,0x1e,0x76, +0x3e,0x79,0xf9,0x38,0x15,0x24,0xdc,0x19,0x26,0x19,0xc7,0xdd, +0xd9,0x04,0x6a,0x5f,0x56,0x74,0xf2,0x38,0xfd,0xd6,0xb2,0x6b, +0x7b,0x7e,0xe4,0x68,0x0b,0xfb,0x29,0xb1,0x8f,0xb4,0x8e,0xb2, +0x8c,0xe6,0xa0,0x0b,0x94,0x7a,0x50,0x09,0x26,0xbc,0xee,0xc1, +0x18,0xa3,0xe7,0x38,0x01,0x17,0x18,0xc1,0x02,0xbc,0xc8,0x1a, +0x47,0x1b,0xc7,0x9a,0x1c,0x48,0xd2,0xe5,0x61,0x62,0x26,0x4c, +0x95,0xbe,0x90,0x72,0x30,0x41,0xd8,0x4d,0x60,0x32,0xea,0x33, +0x91,0xd4,0x6f,0xc2,0x95,0x29,0xa8,0x94,0xcc,0x80,0x3e,0x28, +0xb1,0x62,0x34,0x7e,0x4f,0xd2,0x7a,0x52,0x06,0x13,0x7a,0xac, +0x92,0xf9,0x18,0x9d,0x28,0xc3,0x7d,0x66,0x1c,0x86,0xc1,0x5c, +0x92,0x6f,0x98,0xbf,0x3e,0x59,0x57,0xce,0xb7,0x83,0xfe,0x5f, +0x07,0xf4,0xd0,0x10,0xac,0x17,0x62,0x88,0xa1,0x90,0xd7,0x8b, +0x54,0x1d,0xc0,0xad,0x17,0xdd,0xe0,0x73,0x6d,0xfc,0x1c,0x2d, +0x0d,0xc1,0x12,0x17,0xb3,0xe2,0x42,0xe8,0xa6,0x21,0xe8,0x7a, +0x1f,0x82,0x35,0x34,0x04,0x41,0x37,0x38,0x75,0x1a,0x02,0x1b, +0xb5,0x79,0x5b,0x4b,0x8d,0xf8,0x1f,0x6e,0xf6,0x3e,0x4d,0x7b, +0xc9,0x15,0x89,0xd4,0xe2,0x7d,0xde,0x8b,0x9f,0x8f,0xe0,0x8e, +0x35,0x7a,0x41,0x71,0x2f,0x34,0x84,0x85,0x78,0x81,0x31,0x8e, +0x36,0xa2,0xb8,0x13,0x29,0x6e,0x05,0x39,0xee,0x57,0xc5,0x47, +0x7b,0x78,0x3b,0xba,0x56,0x8b,0x68,0x4e,0x30,0x06,0x15,0x02, +0xfe,0xbd,0xe8,0x0f,0xd3,0xb4,0x69,0x9b,0xe6,0x6c,0x08,0xce, +0xb8,0x1b,0x8f,0x19,0x08,0xed,0x7d,0x78,0x94,0x11,0x59,0x60, +0x49,0xfa,0xbf,0xaf,0x22,0x9c,0xae,0x62,0x1f,0x5d,0x45,0x81, +0x61,0xfe,0xba,0x64,0xbd,0xf6,0x0c,0x3e,0x62,0xe0,0xfd,0x2a, +0x64,0x5b,0x65,0xb7,0x89,0xce,0x7a,0xcc,0x7e,0xa0,0xbb,0x1e, +0x8f,0x1b,0xc1,0xf1,0x0d,0x83,0xf7,0x21,0x7b,0xc3,0xd0,0x7d, +0x48,0xef,0xa1,0x84,0x25,0xfa,0xa3,0x03,0x51,0xc5,0x8f,0xc4, +0x92,0xde,0x16,0x61,0x8c,0x10,0x86,0x1f,0xbd,0x80,0x59,0x9d, +0xa2,0x8b,0x29,0x2b,0x0c,0x8b,0x55,0xc4,0x25,0x3a,0xb1,0x4a, +0x05,0xce,0x40,0x05,0x9c,0xc5,0x5f,0x0d,0xa1,0x91,0x36,0xf8, +0x15,0x78,0x97,0xd5,0x2e,0xf2,0x3f,0xa7,0x0c,0x7b,0x99,0xb3, +0x19,0x99,0x67,0x55,0x60,0x26,0xab,0x9b,0x21,0xa1,0xb9,0x3d, +0x3c,0x46,0x30,0x21,0x2f,0xce,0xd1,0xec,0x90,0x98,0x93,0xa5, +0x21,0xd6,0xa6,0x36,0xca,0x75,0xce,0xfd,0xdd,0x79,0x17,0x4e, +0xfc,0xac,0x78,0x0e,0xc7,0x30,0x96,0x85,0xe1,0xcd,0xca,0x9d, +0x9b,0xf0,0xbc,0xfc,0xb2,0xd0,0x1c,0x6a,0xa9,0xfc,0x0f,0x9e, +0x29,0x54,0x79,0x7d,0x13,0x3f,0x96,0xdf,0xc6,0xba,0x99,0xc0, +0xf9,0x95,0x78,0x9e,0x51,0x80,0x03,0xb2,0xa7,0xc4,0x0e,0x4d, +0x34,0x70,0xc6,0x2c,0xe4,0x6a,0x4c,0xf9,0x92,0xb2,0xd2,0xfa, +0x92,0x56,0x4e,0x2c,0x1f,0x92,0xcd,0x60,0xcb,0x6e,0x4a,0x1f, +0x67,0x7d,0xc3,0x09,0xdd,0x68,0x42,0xb0,0x94,0x29,0x01,0x46, +0x02,0xf7,0x7b,0x44,0xc1,0x08,0xfc,0x18,0x6f,0x64,0x24,0xb8, +0xca,0x08,0xe6,0x32,0x0e,0xb8,0x54,0x82,0xaa,0x46,0xb2,0x39, +0x3d,0x73,0x18,0x1d,0x58,0x4a,0x70,0x29,0x16,0xb2,0xf5,0x40, +0x5f,0xe4,0x87,0xa7,0x93,0x7e,0x61,0xba,0xfe,0x79,0xf8,0x5e, +0xcc,0xc1,0xef,0x59,0xc1,0x1e,0xea,0x08,0x6e,0x16,0xa7,0xc3, +0x66,0xca,0xc1,0xc7,0x20,0x92,0x1c,0x3e,0x91,0x3a,0x18,0xd7, +0x7f,0xea,0xa6,0xe2,0x95,0x73,0xad,0xfd,0x4d,0xd7,0x1c,0xea, +0x79,0x17,0x3d,0x67,0x4b,0x3b,0x5b,0xae,0x8c,0x85,0x16,0x5d, +0xec,0x66,0x31,0xdd,0x95,0x3a,0xc2,0x19,0xb8,0x43,0xb9,0xc5, +0xfa,0xc9,0x6f,0x8d,0xcf,0x8b,0x5e,0x29,0x9e,0x38,0x73,0xea, +0xf8,0xa9,0x03,0xa0,0x84,0x5a,0x7c,0x6b,0x13,0x12,0xd8,0x1a, +0x95,0x1a,0x75,0x22,0x32,0x5a,0x51,0xa6,0x25,0xd4,0x13,0xf1, +0x8e,0x2e,0xc8,0x2f,0x64,0x59,0xad,0x8e,0xda,0xa8,0x84,0x0b, +0x6a,0x4d,0xf8,0x8a,0xba,0xd2,0xb3,0xc5,0x4d,0x9c,0xf8,0xf1, +0xc0,0x35,0xe8,0xdc,0x3e,0x28,0x64,0xe3,0x6b,0xb6,0xfe,0x59, +0xc9,0xeb,0xac,0x9f,0x39,0xe8,0x65,0x86,0x65,0xab,0xc9,0x11, +0x1c,0x1d,0xb9,0xc4,0x63,0x5d,0x57,0x00,0x5f,0xf5,0x4d,0xca, +0x2f,0x27,0x60,0x34,0x27,0xcc,0x11,0x9f,0x11,0x78,0x0e,0x9d, +0xf8,0x9c,0x22,0x9d,0x2f,0x6b,0x24,0xf8,0x56,0x66,0x04,0x6f, +0x59,0x2d,0x9c,0x4b,0xe7,0xf8,0x46,0xb8,0xc3,0x88,0x77,0x70, +0x36,0x11,0xee,0x2c,0x16,0xef,0x30,0x70,0x19,0xd5,0xc8,0xf7, +0x1a,0x0b,0xf1,0x9f,0x46,0xb2,0xb6,0x1e,0x4a,0xd7,0x78,0x9d, +0x34,0x5d,0xab,0xba,0x53,0xf2,0x48,0x3b,0x8b,0xf7,0x59,0xe7, +0xa4,0x6a,0xb6,0x91,0x13,0xf3,0x0d,0xfe,0x50,0xec,0x63,0xc4, +0xf3,0xb5,0xc4,0xef,0xba,0xe7,0x4d,0xb7,0x0b,0x06,0x41,0x7c, +0x85,0x66,0xe9,0xf6,0x42,0x6a,0x9a,0x20,0x51,0xb0,0x21,0x07, +0xe1,0x73,0x50,0xe8,0x41,0x05,0x30,0x30,0x40,0x03,0x9c,0x61, +0x04,0x8a,0x4c,0x04,0x7e,0xe2,0x88,0x33,0x17,0xe2,0x67,0x75, +0x16,0xfc,0x1d,0x18,0x55,0xfc,0xee,0xcc,0xf7,0x5c,0x9c,0x58, +0xdc,0x27,0x9c,0x61,0xce,0x9c,0xfc,0xea,0xe4,0x21,0xe5,0x47, +0xa8,0x5a,0x53,0xb7,0x01,0x16,0xc4,0xa6,0x1d,0x38,0x1e,0x11, +0xad,0x28,0xac,0x87,0x49,0x04,0xc2,0xdb,0x31,0xfc,0x1e,0x9c, +0xe9,0xc0,0x33,0x57,0xf5,0x76,0x60,0xac,0x19,0xc4,0xaa,0xa1, +0x9f,0x39,0xf8,0xad,0xc1,0xd3,0xa6,0xc2,0xf5,0x4e,0x9a,0x88, +0x68,0x2e,0x7e,0x4d,0x20,0x1a,0xde,0xa2,0x1a,0x4e,0x65,0x53, +0x0c,0x69,0xc3,0xc2,0xb4,0x66,0x66,0x34,0xab,0x08,0x5f,0x88, +0x4e,0xa2,0x1b,0x0b,0x56,0x50,0x4b,0x70,0x06,0xf0,0x30,0x83, +0xe9,0x43,0x9e,0xd0,0x83,0x79,0xc8,0xcb,0x6f,0x55,0x97,0x15, +0x92,0x94,0x15,0xbd,0x3b,0xbe,0xd9,0x44,0xcb,0x70,0xe5,0x35, +0x93,0x1b,0x41,0xd7,0xe5,0x4c,0xb4,0xc9,0x72,0xc3,0x4c,0x79, +0x19,0xfe,0x74,0x73,0xf0,0xeb,0xf4,0x57,0xb4,0x55,0x13,0xe7, +0x11,0x51,0xe5,0x1b,0xf8,0xae,0x13,0xbf,0x7b,0xfa,0xfe,0xa7, +0xc0,0x74,0x89,0x5b,0xc4,0xb5,0xc6,0x86,0xdd,0x78,0x8f,0x71, +0x3f,0xe0,0x76,0xd0,0xfd,0x70,0x92,0x01,0x0f,0xa3,0x33,0x60, +0x42,0xf1,0xeb,0x8a,0x98,0x5e,0xde,0x32,0xd4,0x30,0xcc,0x60, +0x3f,0x15,0x95,0xa7,0x6c,0x35,0x6e,0xf8,0x1a,0x95,0x61,0xe1, +0x82,0xaa,0x66,0x7e,0x47,0xa3,0x49,0xbb,0x63,0x6f,0x4f,0x65, +0x57,0xd3,0xd9,0x16,0xa7,0x5a,0xde,0xc9,0xd2,0xd2,0xc9,0xc4, +0x63,0x4f,0xdb,0xde,0xee,0x88,0x7e,0x8e,0xa6,0xb6,0x58,0x86, +0x07,0x88,0x4d,0xa4,0x79,0xa4,0x69,0x14,0x07,0xed,0x30,0xb3, +0x07,0x67,0xc2,0x84,0x37,0x3d,0x78,0xc2,0xe8,0x5b,0x5a,0xfb, +0xcb,0x8d,0x60,0x39,0x0e,0xb1,0x86,0xd1,0xfa,0xb1,0x86,0x23, +0x9c,0x45,0xa8,0x76,0x16,0x7f,0x5f,0xcc,0xed,0xfa,0x86,0xc8, +0x9f,0x7e,0x90,0xd8,0x63,0x99,0xcc,0x47,0xeb,0x46,0x1a,0x85, +0x9b,0x53,0x77,0x06,0xb3,0x48,0x81,0x51,0xc1,0xfa,0x94,0x11, +0x1f,0x38,0xe0,0xf7,0xc4,0xbf,0x9b,0x93,0x6f,0x7d,0x13,0xc1, +0x5f,0xe9,0xd6,0xff,0xca,0x6a,0xe2,0x7c,0x22,0xde,0x7e,0x2d, +0xdc,0x66,0xc4,0xdb,0x34,0x0b,0x84,0xdb,0x0b,0xc5,0xdb,0xcc, +0x10,0xae,0x21,0x69,0xb9,0xc9,0x79,0x89,0xf9,0xfa,0x69,0xbc, +0xdd,0xe2,0x5d,0xea,0xf3,0x34,0x2b,0xac,0xf9,0x81,0x9a,0xee, +0x96,0xc6,0x2e,0x0e,0x74,0x18,0xbf,0xdd,0xae,0x26,0x16,0xd6, +0x9e,0xe5,0x4e,0xe5,0x6e,0x85,0xf6,0x4e,0x7c,0x69,0x60,0x9d, +0x7b,0x99,0xbb,0x91,0xfd,0x2e,0xd7,0xf5,0x1e,0x25,0x16,0x3c, +0x38,0x3c,0x81,0x4f,0x61,0xf4,0x00,0xec,0xe4,0x1a,0x58,0xb8, +0x85,0x41,0x04,0xd6,0x01,0xdf,0x85,0xfc,0xd7,0x3a,0xab,0xd0, +0x15,0x7d,0x17,0x19,0xc3,0x00,0x7e,0x31,0x04,0x5f,0xc0,0x02, +0x5a,0x0a,0xff,0x80,0x75,0x84,0x92,0xd9,0x3a,0x5c,0xc8,0x28, +0xc8,0x52,0x64,0xc1,0x24,0x4f,0x9a,0x55,0x9c,0x56,0x66,0x9a, +0xcd,0x87,0xba,0x06,0xba,0x78,0xbb,0x72,0xe2,0x64,0x13,0xd9, +0xc4,0x2e,0x46,0x9c,0x56,0x42,0x42,0x8b,0x43,0xa4,0x81,0xb9, +0xd6,0x3e,0x7c,0x7e,0x60,0xb6,0x7f,0x06,0x6d,0xa9,0xf7,0xe3, +0x7e,0x02,0xd5,0x18,0x62,0x00,0x9b,0x71,0x23,0x2e,0x62,0x0f, +0x2f,0x8c,0x5e,0x14,0xfe,0x25,0x75,0x55,0xcc,0xb1,0x35,0x87, +0x57,0x47,0xeb,0x71,0xd6,0x07,0x22,0x22,0x9d,0xa6,0x7e,0xc9, +0xa4,0xe9,0x48,0x5e,0x32,0x43,0x45,0x05,0xb7,0x92,0x54,0x92, +0x6f,0x9d,0x7e,0x7b,0x1c,0x08,0x87,0xbb,0x98,0xf8,0x8e,0xf8, +0x4b,0x27,0x3b,0x39,0x59,0x20,0xc6,0x92,0xa6,0xb4,0xf4,0x46, +0x15,0xb8,0x60,0x88,0xb7,0x50,0x91,0x4d,0x36,0xa7,0xc5,0x7f, +0x9a,0x9c,0x4d,0x97,0xb3,0x53,0x2f,0xb6,0x8a,0x5c,0x27,0xdc, +0x07,0x43,0x2a,0xc0,0x0c,0x9b,0x6c,0x29,0x81,0xca,0x9f,0x08, +0x7c,0x65,0x82,0x5f,0xb1,0x38,0x17,0x08,0x71,0x29,0xb0,0x2a, +0xb0,0x4f,0x0b,0x70,0xe4,0xeb,0x23,0x5a,0xfd,0xaa,0xfd,0xb9, +0xbc,0xdd,0xc4,0x25,0xdf,0x2a,0xdf,0x21,0x9d,0x1a,0xdf,0xba, +0x7d,0x2d,0xfe,0xd5,0x01,0x5c,0x0d,0x5a,0x90,0x80,0x25,0xcb, +0x0d,0x51,0xdd,0x23,0x97,0x6e,0x99,0x71,0x35,0x8c,0x7a,0x56, +0x04,0x13,0x38,0x08,0x62,0xcc,0x8f,0x38,0xc5,0xda,0x2b,0xbb, +0x1d,0x08,0x3d,0x60,0x31,0x75,0x01,0x93,0x66,0x2c,0x79,0xcd, +0xdc,0x29,0xcd,0xea,0x4f,0x56,0x49,0xea,0x39,0xd5,0x72,0xfc, +0x2d,0x27,0xbe,0x33,0x65,0x14,0x84,0x02,0x4d,0xf2,0xc7,0xc4, +0xed,0xff,0x98,0x48,0xf3,0xf5,0x14,0x65,0x37,0x6b,0x34,0xdd, +0x41,0x59,0x7d,0x14,0xa5,0x37,0x13,0xbe,0xa4,0xb8,0xb8,0xba, +0xb8,0x81,0x13,0x73,0x86,0x64,0x13,0xd9,0x9a,0xbb,0xe5,0xaf, +0x72,0x7f,0xe2,0x60,0x0b,0x2a,0x91,0xac,0xfa,0x8c,0x86,0xf4, +0x16,0x9d,0x74,0xde,0x0a,0x67,0x1b,0xcc,0x9b,0x81,0x92,0x26, +0x4b,0x7e,0xe0,0x42,0xf3,0xf9,0x9a,0x6b,0x9c,0xf0,0xd5,0x10, +0x23,0xea,0x0e,0xef,0x20,0xdb,0x7d,0xf3,0xcb,0x9b,0x2a,0xab, +0xce,0x56,0xa8,0xdc,0x1c,0x84,0x4d,0x30,0x05,0xa6,0xbd,0xe6, +0xda,0x44,0x4f,0x3d,0x00,0x76,0xee,0x4e,0x9c,0x89,0xa3,0xb7, +0xe9,0x70,0xfa,0x16,0xce,0x96,0xda,0x4a,0xfa,0x9d,0x66,0x30, +0x4a,0x59,0x18,0xcb,0x34,0xe7,0xe6,0x37,0xab,0xc0,0x2e,0x56, +0x27,0x5d,0x82,0x0e,0x14,0x50,0xf4,0x7b,0xba,0xd5,0xc4,0x19, +0xb3,0x47,0xf0,0x48,0x8b,0xa5,0xd5,0x45,0x8d,0x23,0x78,0x3e, +0x61,0x2b,0xee,0x94,0x3c,0xcf,0xfe,0x91,0x3a,0x44,0xd1,0x8c, +0x40,0xdc,0x20,0xc6,0x41,0x03,0x54,0x0c,0x0d,0x8f,0xd5,0x81, +0x62,0x6c,0xc0,0xaf,0x74,0xe1,0x2b,0x7c,0x89,0xd7,0x74,0x64, +0x6b,0x86,0xb0,0x99,0x52,0x77,0x02,0x1d,0xcb,0x12,0xcd,0x76, +0xa0,0x32,0x8e,0xa5,0x83,0x19,0xd3,0xc5,0x95,0x54,0x4a,0xcf, +0x72,0x62,0xe6,0x90,0x4c,0xc2,0xd6,0xdd,0xaf,0xf8,0x26,0xff, +0x37,0x4e,0x46,0xc4,0xf9,0x64,0x3a,0x7c,0x64,0x03,0x92,0x3d, +0x40,0xfb,0x91,0x78,0x5d,0x70,0x64,0xa8,0x1e,0x0c,0xe0,0xa7, +0x6f,0x70,0x02,0x27,0x1a,0x0b,0x0a,0xc4,0x0b,0x15,0x8d,0x90, +0x5d,0xbb,0xa0,0xc3,0x86,0x7f,0xf2,0xfb,0x00,0x7c,0x56,0x0a, +0x3c,0x07,0x66,0xa2,0x16,0xa9,0xde,0x5e,0xbd,0xa5,0x7c,0xcb, +0xa2,0x30,0xfc,0x24,0x0c,0x95,0xf6,0x5f,0x86,0xa9,0xdd,0xb0, +0xb8,0x13,0x56,0x68,0x66,0xf2,0x26,0xb8,0x49,0x07,0x97,0x6f, +0xc1,0x99,0xde,0x47,0xbc,0x8e,0x7a,0x1f,0x4d,0xd4,0xe4,0x41, +0x3f,0x0d,0x9c,0xf3,0x61,0xb6,0x34,0xc5,0x3b,0xc5,0x3b,0xd9, +0x67,0xa0,0x8c,0x37,0x85,0x8f,0xb5,0x61,0xb2,0x0e,0xb5,0x1b, +0x0a,0x90,0x4e,0xb1,0x5a,0xa0,0x99,0x3a,0xc5,0x2a,0x19,0xc1, +0x5a,0x5e,0x5a,0x56,0x53,0xda,0xcc,0x89,0x45,0xe7,0x65,0x93, +0xd9,0x9a,0x3b,0xe5,0xcf,0xf3,0xde,0x70,0xc2,0x2a,0xea,0x17, +0xf6,0x66,0x06,0x65,0x05,0x64,0x3f,0xee,0x7d,0x72,0xbf,0xfd, +0x21,0x8d,0x6e,0x89,0x9e,0x60,0xc1,0x5a,0x69,0xef,0xd2,0xdd, +0x6e,0x65,0x56,0x6f,0x5c,0x6b,0x59,0xea,0x6a,0xc5,0x5f,0xb6, +0x7b,0xa4,0x7b,0xd1,0x88,0xc3,0x7f,0xe8,0xc1,0xa0,0xb8,0x01, +0xcd,0x98,0x0c,0x5d,0x09,0x6c,0x63,0xda,0x33,0x33,0x3a,0x54, +0x84,0x15,0x10,0xce,0xfa,0x68,0x58,0x6c,0x35,0x31,0x6c,0x77, +0xe7,0xcf,0x5f,0x1b,0x78,0x5e,0x44,0x87,0x19,0xa1,0xae,0xff, +0x29,0x15,0xa4,0x52,0x69,0x45,0x51,0x1d,0x27,0xa6,0x0e,0xc9, +0x46,0xb3,0x75,0x0f,0x2a,0x5f,0xe7,0xbd,0xe3,0x84,0xc1,0x00, +0x22,0x46,0x0e,0xe7,0xcf,0xd6,0x97,0xad,0xec,0x5f,0xcf,0xec, +0x16,0x8a,0x09,0x0e,0x83,0x09,0x0c,0x33,0x38,0x2c,0x9a,0x10, +0xca,0x8b,0xc3,0x68,0xc5,0x1a,0x8d,0x43,0x3f,0xfa,0xb2,0x1f, +0xfb,0xbf,0xd8,0x03,0xa9,0xb4,0xb8,0x5c,0x3e,0x6a,0xca,0x90, +0xf0,0x0f,0xb6,0xfe,0x41,0xd5,0x77,0x05,0x30,0x8a,0x13,0x96, +0x4c,0x23,0xcb,0xeb,0x67,0x57,0x2e,0xc9,0x0b,0x32,0xe6,0x7f, +0xd8,0xf3,0xc6,0xe3,0x89,0x13,0xb7,0x62,0x78,0x3e,0xb1,0x8e, +0x4e,0xa0,0x45,0x33,0x89,0x85,0x59,0xb0,0xfa,0x17,0x30,0x1b, +0x82,0x20,0x83,0x6c,0xde,0x18,0xcd,0xd6,0xe2,0x26,0x64,0x71, +0x36,0xcd,0x04,0x2d,0x51,0x9b,0xd5,0xd6,0xd8,0xae,0xa3,0x66, +0x5c,0x69,0xce,0x9f,0x6f,0x1a,0x68,0xed,0xea,0xe2,0xcc,0xd9, +0x75,0x85,0x9e,0x8f,0x95,0x81,0x67,0x7a,0x32,0x73,0xda,0x55, +0xc0,0x89,0x35,0xc8,0x92,0xe0,0x01,0xb6,0x57,0x38,0x45,0xea, +0x70,0x74,0x15,0x4e,0xca,0x41,0x95,0xc1,0x74,0x3e,0x18,0x14, +0x5d,0x60,0xaa,0xfd,0x6f,0x9c,0x18,0x73,0x94,0x84,0xe2,0x47, +0x9e,0xf8,0x81,0x3e,0x8e,0xed,0xf6,0xe4,0x07,0x81,0xad,0x82, +0x29,0x19,0x30,0x85,0x6e,0x4c,0x28,0x5d,0x80,0x23,0x1a,0x6b, +0xe1,0xcc,0xf9,0xef,0xa3,0x52,0x52,0x5c,0x27,0xa5,0xfa,0x5f, +0x7c,0x4e,0x36,0x8b,0x2d,0xb9,0x59,0xf8,0x28,0xe3,0xa5,0xfc, +0x83,0x15,0x0d,0x82,0xf3,0x86,0xc0,0x0e,0xbb,0x41,0x51,0x17, +0x15,0xb1,0x04,0xed,0x06,0x61,0x1e,0x2b,0x7c,0x8f,0x55,0x84, +0xf6,0xca,0x6c,0x51,0x77,0x41,0x6f,0x56,0x87,0x6e,0x0a,0xbf, +0xd7,0xc4,0x4f,0xd7,0x53,0x87,0x43,0x5f,0x43,0x4a,0x2c,0x1e, +0xfa,0xce,0xfa,0x4e,0x66,0xd7,0x7d,0x6e,0x7a,0xdc,0x74,0xdb, +0x62,0xb1,0xc8,0x09,0x27,0xf8,0x16,0xea,0xf3,0x30,0xa5,0x14, +0xc6,0x34,0x3f,0xbb,0xf8,0x8d,0xcd,0x2b,0xf3,0xa7,0xe6,0x55, +0xdd,0xfc,0xaa,0xd6,0x15,0xcd,0x6b,0xeb,0xaf,0x5d,0x6e,0x7f, +0x5c,0xfc,0x33,0x27,0x2a,0xe2,0x34,0x52,0x50,0x5d,0xd2,0x56, +0xdc,0xcd,0x41,0x34,0xe3,0xb7,0xc2,0x7a,0x8b,0xba,0x8e,0x66, +0x99,0x4e,0x91,0x89,0xbc,0xb9,0x38,0xf1,0x7e,0x13,0x77,0xe2, +0xb4,0x69,0xef,0xcb,0xb9,0xa4,0xa4,0x5a,0x2e,0xed,0xf9,0x43, +0xb2,0x8f,0xd8,0xea,0xbb,0xa5,0x2f,0x72,0x69,0x16,0xbd,0x1c, +0xbe,0x4a,0x90,0x65,0x3c,0x63,0x4f,0x57,0xaa,0xc0,0x2f,0x60, +0x3b,0x80,0x43,0xc2,0x14,0x7d,0x71,0x0a,0xf6,0xe8,0x81,0x15, +0x7b,0x04,0xad,0xcc,0x70,0x34,0xae,0xa5,0x81,0x32,0xe7,0x41, +0x03,0x26,0xf5,0xc3,0xe7,0xa7,0x80,0xb6,0xb8,0xb3,0x10,0x99, +0xdd,0x85,0x41,0xe7,0x95,0x61,0x22,0xd3,0x9c,0x91,0x49,0x19, +0x6e,0x27,0x6b,0x98,0x29,0xf1,0x15,0x2e,0x13,0xf7,0x75,0x56, +0xeb,0xb4,0xd5,0xdb,0x3d,0xf8,0x81,0xab,0x3d,0x4f,0x2b,0x9e, +0x70,0xa2,0x1a,0x5a,0x11,0x8f,0x9b,0x86,0xaf,0x6d,0x06,0x4c, +0xbc,0xf8,0x36,0xcd,0x76,0xd5,0x6a,0xb9,0x8a,0xc7,0x51,0x74, +0x56,0xf2,0x14,0x53,0xc1,0x31,0x23,0xc9,0x50,0x5a,0x52,0x5a, +0x53,0xdc,0x38,0x02,0x4f,0x81,0xb2,0x4d,0xd9,0xcb,0xbc,0xb7, +0x1c,0x68,0xcc,0x24,0x29,0x15,0x49,0x15,0x71,0xe5,0xba,0x49, +0xbc,0x1f,0x72,0xdb,0x71,0xf2,0x82,0x85,0x0d,0x66,0x7c,0x41, +0x41,0x5e,0x51,0x6e,0x31,0x27,0xee,0x3d,0x77,0x07,0x4a,0x84, +0xdd,0x78,0x9d,0xcd,0xaf,0xc8,0xa9,0xca,0xac,0xe6,0x84,0x29, +0xab,0x19,0x9c,0x78,0x10,0x83,0x42,0x51,0x41,0x59,0x2d,0xca, +0xd7,0x6e,0xdb,0x54,0x5c,0xcc,0x64,0xe8,0x49,0x60,0x1e,0x03, +0x63,0x2b,0x07,0x61,0x62,0x86,0x4a,0x06,0x4c,0x3c,0x03,0x01, +0x30,0x59,0x09,0xa6,0xb3,0xb4,0x63,0x7c,0x47,0xd0,0x1b,0x94, +0xc0,0x9b,0x41,0x6f,0xd4,0x25,0xe0,0x4d,0xb9,0xc9,0x9b,0xf9, +0x1b,0xdf,0x76,0x8a,0x6f,0xf4,0x08,0xbe,0xaa,0xca,0xaa,0xa6, +0x8a,0x1e,0x4e,0x6c,0x19,0x92,0x2d,0x62,0xcb,0xae,0x15,0x3d, +0xc8,0x7a,0xc6,0x45,0x60,0x3d,0x01,0xdd,0x38,0xf0,0x48,0x86, +0x95,0xd9,0x59,0x41,0x99,0x41,0xe9,0xc1,0x4d,0x55,0xbc,0xe1, +0x8d,0x8d,0x8f,0xd4,0x2f,0xdb,0xb9,0xf1,0x15,0x9e,0x55,0x2e, +0x95,0xce,0x33,0x22,0xf1,0xe3,0x68,0xfc,0xe8,0x60,0xcf,0xf5, +0x8e,0x87,0x35,0x37,0xf4,0xb3,0x79,0xa7,0x4d,0x5a,0x8b,0xb4, +0x36,0xa9,0x1e,0xe1,0x65,0x1f,0xe2,0x09,0xd2,0x8b,0xa5,0x30, +0x49,0x07,0x27,0xa1,0x1a,0x9b,0x5a,0x92,0x54,0x92,0x50,0x6a, +0x98,0xc2,0x07,0x6e,0x73,0x5c,0x6b,0xa6,0xd3,0xec,0xcc,0xe7, +0x15,0x67,0x97,0x66,0x95,0x73,0x60,0x8e,0x0b,0xb1,0x5d,0x1f, +0xda,0xd1,0x73,0x08,0x3c,0xa1,0xb7,0x1f,0x7b,0x81,0xea,0xda, +0x5f,0x94,0xfd,0xf7,0x16,0x17,0x17,0x17,0x57,0x49,0x29,0x63, +0x67,0x0f,0xc9,0x3e,0x90,0xc7,0xf0,0x55,0xde,0xcf,0x9c,0xa0, +0x3d,0xac,0x43,0x6e,0x35,0x5d,0xee,0xed,0xec,0xb1,0xab,0xe7, +0xcd,0x8c,0x34,0x4d,0xb6,0xd9,0x3a,0xf4,0xf8,0x0d,0xee,0x1f, +0xe2,0x20,0x4f,0x20,0x78,0xfc,0x27,0xed,0x39,0x18,0x3a,0xec, +0xc5,0xf8,0x1e,0xf4,0x39,0xe4,0x75,0x28,0x49,0x8f,0x87,0xb9, +0x45,0x20,0xc9,0x87,0x4f,0x6a,0x62,0xfb,0xf8,0xd5,0x01,0x5b, +0x42,0xd7,0x85,0x71,0xf0,0x04,0x66,0xb3,0xe5,0xf8,0xe5,0xaf, +0xb8,0x1a,0x02,0x71,0x5c,0x45,0x2f,0xbf,0xb8,0x79,0x7b,0xa7, +0x69,0x0f,0xf7,0x52,0x68,0x26,0x33,0x44,0xd5,0xdf,0x58,0x41, +0x15,0x57,0x10,0x1c,0x27,0xaa,0xc2,0x38,0x5a,0xea,0x61,0x14, +0x98,0xc3,0x5f,0x95,0x52,0x6d,0xca,0x17,0x15,0x4b,0x6b,0x8a, +0xe4,0xb9,0x37,0x20,0xfb,0x8c,0x2d,0xbf,0x2d,0x7d,0x9e,0xf5, +0x03,0x47,0x2b,0x64,0x2f,0xed,0xe4,0x0e,0xa9,0xf6,0xbf,0x80, +0x45,0x3d,0xb8,0xe8,0xa5,0xfe,0x32,0x3c,0x24,0xff,0x41,0xed, +0xdc,0x0c,0x55,0x56,0xc8,0x16,0x3f,0x23,0xdd,0x9b,0x20,0x01, +0x8f,0x80,0x44,0x9f,0x32,0x61,0x18,0x26,0xac,0x31,0x86,0x5e, +0xd6,0x63,0x3a,0xcd,0x3d,0xd4,0xd0,0x28,0x32,0xe4,0xc1,0xea, +0x0e,0x4c,0xbc,0x9d,0x0e,0x4a,0x5c,0x1c,0x93,0x4e,0x3b,0xd1, +0xb1,0xbb,0xc0,0x7e,0x75,0x51,0x37,0x8f,0xda,0x37,0xa7,0x0d, +0x79,0xfe,0xca,0x61,0x0c,0xc4,0x13,0xd8,0x84,0x3a,0xcc,0x3e, +0xdc,0xc4,0x0a,0xcb,0xa6,0xa0,0x56,0x1a,0x03,0x3a,0xa0,0x45, +0x21,0x86,0xff,0x7b,0x31,0x53,0x88,0x65,0x95,0xe5,0x2d,0x65, +0xfd,0x9c,0xd8,0x39,0x20,0x53,0x63,0x0b,0x2f,0xe7,0xdd,0x4a, +0x7b,0xc8,0xc1,0xf0,0x30,0x4d,0x89,0xcc,0x1e,0xcc,0xfc,0x09, +0x4e,0xc0,0xcc,0x0b,0x9d,0x9a,0x30,0x0d,0x4f,0x3c,0x83,0xb6, +0x2e,0x6c,0xbb,0xa7,0xa7,0x86,0xf9,0x26,0x90,0xbf,0x02,0x23, +0xcd,0x20,0x52,0x15,0xbb,0x4d,0xa1,0x7b,0x29,0x46,0x9a,0x42, +0x24,0x4a,0x99,0x45,0x29,0xb6,0x43,0x3f,0x29,0xd5,0xeb,0x39, +0xb3,0x38,0xce,0xc5,0x74,0x91,0x83,0xb2,0x54,0xff,0xe7,0xf6, +0x82,0xce,0x93,0x0f,0x14,0xe3,0x98,0xb5,0x27,0x07,0x36,0xc1, +0xec,0xa9,0xf0,0x80,0x49,0xe8,0x97,0xe0,0x0d,0x06,0x8c,0x84, +0x01,0xda,0xe9,0x18,0xbd,0x60,0xc1,0x08,0xa7,0x93,0xa5,0x68, +0xf4,0x8a,0xc2,0x3b,0x48,0xe1,0xd9,0xa2,0xc9,0x6e,0x9c,0x3e, +0x73,0x64,0x6b,0x8b,0xa4,0xd2,0xaa,0x22,0xb9,0x5e,0x0d,0xca, +0x26,0xb0,0xd5,0xf7,0x4a,0x5f,0xe5,0xd2,0xad,0xfd,0x41,0xfc, +0x92,0x18,0xa7,0x49,0x56,0xa3,0x2e,0xeb,0x13,0x1b,0x5f,0xa8, +0x32,0xc4,0xc2,0x8e,0xb4,0x23,0x1d,0xb8,0x2d,0x42,0xf2,0x1a, +0x92,0xd9,0x48,0xe7,0x7d,0x6e,0xa1,0x6e,0xdd,0x21,0x7c,0x6e, +0x43,0x66,0x6b,0x72,0x0b,0xd7,0x88,0x7d,0xb7,0x41,0xda,0x89, +0xd2,0x6b,0x5a,0x68,0x8e,0xd1,0xb8,0x83,0x45,0xff,0x20,0x5c, +0xbc,0x0e,0x3f,0x55,0xee,0x74,0x96,0xbc,0x82,0x59,0x79,0xd4, +0x51,0x85,0x2b,0xc1,0x47,0xb0,0x62,0x1e,0x8b,0x24,0xfa,0x94, +0x31,0x4c,0x4e,0x92,0x68,0xb3,0xfa,0xd9,0x41,0x17,0x95,0xc1, +0x82,0xa9,0x4f,0x4b,0xaf,0x57,0x41,0x91,0x82,0xc4,0xb1,0xf6, +0x3b,0x70,0x92,0x91,0x72,0x85,0x81,0x04,0xbe,0x38,0xdf,0xff, +0x1c,0xa6,0x29,0xd5,0x68,0xb0,0xf0,0x07,0x9e,0x24,0xf3,0x98, +0x80,0xd8,0xf8,0x7c,0x15,0xf0,0xd9,0x8d,0xfb,0x59,0xe3,0xac, +0x90,0x41,0x65,0x18,0xc7,0x34,0x66,0xa6,0xd7,0xa9,0xc0,0x27, +0xac,0x41,0xa6,0x44,0x01,0x62,0xdf,0xeb,0xfa,0xee,0xbf,0xda, +0xa8,0xe2,0x92,0x92,0x5a,0xa9,0x5c,0xde,0x06,0x69,0x72,0x54, +0xdc,0x29,0x7e,0x96,0xfd,0x3d,0x27,0x9b,0x83,0x4b,0x49,0x3f, +0xf6,0xc1,0x68,0x4d,0x5a,0x7f,0x0d,0xfa,0xac,0xf0,0x6c,0x39, +0x11,0xf3,0xb0,0x00,0x42,0xf0,0x1a,0xce,0x1f,0x51,0xb1,0x8f, +0x99,0xf6,0xec,0x6c,0xca,0xe9,0x83,0xb4,0x6f,0xd7,0x06,0x2f, +0x82,0x2b,0xc4,0xb9,0xb0,0x82,0x4d,0xc5,0x6c,0xe2,0xbc,0xde, +0x64,0xb3,0xea,0x8e,0x06,0x6b,0xfe,0xf9,0x8d,0xf3,0x4f,0xea, +0x9f,0x73,0x70,0x3c,0x9a,0x5c,0x54,0xef,0xdf,0xd8,0xb1,0xa6, +0xa3,0x96,0x37,0x7b,0xac,0x77,0x5b,0xe3,0x1a,0xe5,0xa0,0xa3, +0x14,0x88,0x0d,0x9a,0xec,0xc2,0xe9,0x33,0x46,0x62,0x5c,0x5a, +0x5a,0x36,0xd2,0xcf,0x95,0x0d,0xca,0x3e,0x67,0x2b,0x6e,0x15, +0x7f,0x9d,0xfd,0x9a,0x93,0xcd,0x12,0x1b,0xc8,0xee,0x7a,0xfd, +0x36,0x2b,0xca,0xb1,0x1b,0xba,0xd0,0x89,0xd9,0x2b,0x0d,0x2f, +0x89,0x2a,0xe5,0xc0,0xb7,0x0b,0xef,0x32,0x09,0x45,0xf1,0xd2, +0xb8,0x62,0x0e,0x6e,0x77,0xd1,0x0e,0xf1,0x74,0xfe,0xa9,0x82, +0x93,0x05,0xfa,0xf1,0xfc,0x61,0xdf,0x43,0xbe,0x87,0xfc,0x38, +0x2c,0x30,0x81,0x14,0x26,0xd6,0x27,0xd6,0x37,0x7a,0x0f,0x87, +0x7b,0x4c,0xc0,0x92,0xd9,0xef,0x15,0xee,0xbd,0x97,0x3a,0x4c, +0x1d,0x13,0xca,0x48,0x16,0x3a,0xda,0xa6,0x1b,0x6d,0x2a,0xcd, +0xf8,0xda,0xfc,0xca,0xa2,0x72,0x29,0x27,0x32,0x03,0x5d,0xf0, +0xc6,0x64,0x40,0x18,0xcb,0x16,0x04,0x17,0xec,0x2d,0xda,0xcb, +0x61,0x39,0x3c,0x23,0x89,0x5e,0x29,0xde,0x72,0x57,0xba,0x80, +0x49,0x97,0xa6,0x95,0xa4,0x94,0x72,0xb8,0x18,0xf7,0x11,0xa9, +0x34,0xbf,0x24,0xaf,0x8c,0xc2,0x60,0xf2,0x3c,0x8b,0xbc,0x4b, +0xe8,0x79,0x19,0xce,0x23,0xdf,0xc3,0x9b,0x85,0x2c,0xbe,0x31, +0x25,0xf0,0x66,0x26,0xbe,0xa1,0x14,0xb1,0x8f,0xae,0xd1,0x1e, +0x8d,0x35,0x71,0xe6,0xdc,0xf7,0x69,0x5e,0x51,0xde,0x54,0xda, +0xcd,0x89,0x4d,0x03,0xb2,0x65,0x6c,0xf1,0xd5,0xfc,0xfb,0x19, +0x5f,0x73,0x87,0x44,0x7d,0xd2,0x74,0xa6,0x35,0xbe,0x25,0xf1, +0xe4,0x1a,0xbe,0xfb,0xc4,0x91,0x6f,0xdb,0x93,0x5b,0x52,0xea, +0x52,0x15,0x63,0xda,0x5c,0x22,0x6c,0x22,0x2d,0xa3,0x14,0x8f, +0xfc,0xd8,0x14,0xdf,0x90,0x78,0x36,0x59,0x31,0xa6,0xdd,0x31, +0xca,0x21,0xda,0x21,0x56,0xf1,0xc8,0x77,0x4d,0x71,0x8d,0x09, +0x8d,0x89,0x8a,0x31,0x1d,0x0e,0xd1,0x76,0xb1,0xf6,0x07,0x14, +0x8f,0x5e,0x35,0x3a,0x72,0x62,0x8b,0xfd,0x41,0xbb,0xc3,0xf6, +0x47,0x15,0xcf,0x98,0xd5,0x9f,0xac,0x3f,0x55,0x7f,0x5a,0xf1, +0xe4,0x02,0xfb,0x03,0xf6,0x87,0xec,0x0f,0x2b,0x9e,0x31,0xaf, +0x3b,0x45,0x5f,0x89,0x53,0x3c,0x39,0xc7,0x22,0xda,0x3c,0xd6, +0xfa,0xa0,0x22,0x3c,0x5a,0x45,0x60,0xcc,0x37,0x0d,0xc0,0x9e, +0x00,0x23,0xee,0x37,0x06,0x3f,0x3a,0x3c,0x23,0x46,0x5b,0xd9, +0xe9,0xe0,0xde,0x68,0xcf,0xa9,0x1b,0x99,0x14,0x63,0xc9,0x7d, +0xa6,0xbb,0x22,0xfb,0x7c,0xa2,0x4a,0xd2,0xcd,0x53,0xef,0x40, +0x4b,0x09,0x07,0x4c,0x9f,0x32,0x47,0x51,0xdd,0x6d,0xce,0x9c, +0x0d,0x9c,0xfc,0xe9,0x7b,0xa4,0x07,0x07,0xe2,0xd9,0xa7,0xba, +0x2b,0xd9,0x58,0x6c,0x34,0x82,0x72,0xd6,0x7b,0xd5,0xc2,0xad, +0xb8,0xd1,0xb0,0x88,0x0a,0xa7,0xdd,0xcd,0x6f,0x9f,0x26,0xfe, +0x4e,0x79,0x21,0x79,0xda,0xdb,0xd5,0xe0,0xba,0xa9,0xb0,0x9f, +0x47,0xf5,0xc1,0xd9,0x37,0x3c,0x1e,0xd3,0x8d,0xf7,0xa2,0x41, +0x71,0x41,0x43,0x3d,0x9c,0xfb,0x25,0x0d,0x8a,0x19,0x5f,0x54, +0x2a,0x3d,0x5b,0xd4,0xce,0x89,0x15,0x7d,0xb2,0x05,0xac,0xf4, +0x7a,0xde,0xa3,0x74,0x9a,0x32,0xa9,0x38,0x96,0xec,0xad,0xdf, +0xd3,0x10,0x50,0x6a,0xb2,0x87,0x2f,0x74,0x2b,0x74,0xcc,0x72, +0xe4,0xa0,0xe8,0x20,0x29,0xac,0xc9,0xad,0xcf,0xa9,0xd7,0x2f, +0xe2,0x43,0x6d,0x7c,0x4c,0x3c,0x2c,0x38,0x71,0x8e,0x81,0x6c, +0x55,0x1f,0x83,0xb1,0xc3,0xbb,0x48,0xa6,0xb1,0x04,0x14,0x98, +0x86,0xf4,0x8c,0x06,0x15,0xe1,0xb2,0xae,0x78,0x93,0x15,0xfd, +0x76,0x12,0xe1,0x2a,0xac,0x11,0x8f,0x7f,0xc9,0xa6,0x1a,0x4b, +0xee,0xfe,0x79,0xae,0x05,0xcb,0x87,0xc7,0xb1,0xc2,0x28,0xe1, +0x0f,0x22,0xaa,0x0f,0x0a,0xea,0x2c,0x6d,0x60,0x9c,0x89,0x6f, +0x8d,0x4d,0xbd,0x4b,0x91,0xbb,0x0b,0x5f,0xe3,0xd3,0x68,0x57, +0xec,0xc6,0x95,0xe3,0x0c,0xe2,0x5b,0x69,0xd7,0xec,0x5c,0xec, +0xe6,0xc4,0xd7,0x78,0x37,0x5a,0x17,0xb9,0x51,0xf0,0x4e,0x14, +0xbc,0x1b,0x1a,0xea,0xe3,0x5c,0xd5,0x11,0xf0,0x85,0x65,0xc5, +0x0d,0x45,0x5d,0x9c,0x58,0xdb,0x27,0x5b,0xc9,0x16,0x5c,0xcd, +0xbd,0x97,0xfa,0x84,0x93,0xed,0x14,0x03,0x49,0xbb,0x01,0x7c, +0x8e,0x46,0x4f,0xe1,0x50,0x3b,0x1e,0xba,0xc7,0x9e,0x4b,0xbc, +0x90,0xd6,0x95,0xe5,0xd3,0xc4,0xaf,0xf7,0xc5,0x09,0x81,0xcb, +0x62,0x53,0xad,0xf8,0x9c,0x13,0x79,0x27,0xf3,0x4f,0x72,0x3b, +0x90,0xbc,0x61,0xa5,0x71,0xd2,0xf8,0xfc,0x84,0x3d,0x8d,0xbc, +0x9a,0x0f,0x8e,0x0a,0x5b,0x14,0x93,0x64,0xc9,0xb7,0x9e,0xea, +0x8b,0xef,0x4d,0xe2,0x56,0xa0,0xb5,0x39,0x58,0xaf,0x44,0x7d, +0x2b,0xd0,0x57,0x45,0x47,0x73,0x70,0x5c,0x22,0x3f,0x5e,0xcf, +0xfa,0x6c,0xdd,0xb8,0x61,0xda,0xee,0x72,0x4b,0xea,0x52,0x1e, +0xf5,0x3e,0x4e,0xb8,0xcc,0xc5,0x61,0x7c,0x2f,0xd4,0x03,0xc1, +0xfa,0x5e,0x88,0xa7,0x91,0xdf,0x72,0x69,0x0b,0x4c,0x5d,0x2f, +0xed,0xe4,0x67,0x0e,0xa8,0xde,0xf2,0xbc,0xc3,0x81,0x1a,0x4c, +0x63,0xf0,0x38,0x14,0x90,0x95,0x48,0x9e,0xb2,0xf4,0x17,0x15, +0x29,0xf1,0x11,0x4a,0x7c,0xb7,0x55,0x09,0x7e,0xf1,0x02,0xbe, +0x60,0xf0,0xb6,0xfc,0xfb,0xba,0xc8,0x12,0x24,0x0c,0x68,0x7f, +0x4b,0xe0,0x8b,0x25,0xf8,0x05,0xcd,0x62,0x57,0xba,0x66,0xd7, +0x7f,0x5b,0x73,0x41,0x49,0x51,0x7d,0x21,0xad,0xd4,0x92,0x3e, +0xd9,0x5c,0x56,0x7a,0x33,0xef,0x51,0xda,0x4b,0xae,0xde,0x87, +0x0c,0xff,0xb3,0x4f,0xa8,0x07,0x2f,0x78,0xc2,0x5e,0xc2,0x27, +0x04,0xf6,0x88,0xbe,0xb8,0x88,0x49,0xa7,0x2d,0xfb,0x67,0x4c, +0x53,0x56,0x76,0x93,0x8a,0xac,0x06,0xcb,0x58,0xac,0xa4,0x53, +0xbc,0x84,0x15,0xcb,0x28,0x59,0x4e,0x79,0x09,0x6b,0x96,0xb1, +0xe2,0x31,0x9c,0x49,0xbe,0x83,0x15,0x8b,0xe4,0xaf,0x7c,0x07, +0x6b,0x16,0xb1,0xe2,0x34,0xfc,0x88,0x88,0x33,0xbb,0x29,0xb5, +0xc0,0x37,0x2c,0x46,0x8e,0x9c,0xd7,0x58,0xc4,0xa2,0x06,0xad, +0xb1,0xb7,0xa0,0x31,0x97,0x32,0xb4,0x39,0xc5,0xe4,0x89,0xfa, +0xc6,0xb8,0x60,0x35,0x65,0x0f,0x73,0x3e,0xbb,0x30,0xb7,0x22, +0xa7,0x9e,0x13,0x93,0x7b,0x29,0x8d,0x49,0xef,0x16,0xbc,0x48, +0xa3,0x34,0xe6,0x36,0xfc,0x03,0xd1,0xbb,0x69,0x77,0xc3,0xf3, +0x66,0x1f,0x28,0x16,0xc0,0x8c,0x33,0xb0,0x80,0xab,0x1d,0x40, +0x0b,0x26,0xa9,0x33,0xa1,0x2b,0xae,0xcb,0x38,0x8e,0x0f,0xc7, +0xcf,0xbd,0x70,0xa9,0x36,0xed,0x2f,0xde,0xe0,0x2a,0xe8,0x37, +0xc4,0x7e,0x5c,0x2e,0xfe,0xd2,0x23,0x74,0x42,0x8e,0x18,0x89, +0x63,0xd9,0x64,0x13,0xc9,0x8f,0x4c,0x71,0x7a,0x42,0x5e,0x9c, +0x4a,0xb1,0xf5,0xf9,0x4b,0x6d,0x57,0x6b,0x6e,0x28,0x56,0xa8, +0x37,0xec,0xe8,0xde,0xc5,0x61,0x87,0x4c,0x95,0x84,0xdc,0xd9, +0xf3,0xc0,0xe3,0x92,0x55,0x10,0x5f,0xae,0x51,0xb0,0x2e,0x4b, +0x8d,0xc3,0x6c,0x38,0x44,0xc2,0x37,0x05,0x6c,0x75,0xd9,0xd1, +0xe6,0xcb,0xd7,0xdc,0xcd,0xbb,0x95,0xf1,0x80,0x13,0x0e,0xa1, +0x3a,0x39,0x84,0x93,0xc3,0x90,0x73,0xc2,0x51,0xee,0xbf,0xee, +0x83,0x71,0x07,0x68,0xe3,0x72,0x9c,0xc5,0x0f,0x87,0x15,0x48, +0x12,0x2b,0xcc,0x62,0x0b,0x3d,0x72,0x2a,0x33,0xeb,0xd2,0x1b, +0x15,0x13,0xe7,0xe6,0x2e,0xaa,0x5c,0xea,0xba,0xd9,0x72,0xbb, +0xa6,0x06,0x87,0x39,0xc2,0x6a,0x22,0x7e,0xdc,0x7c,0x03,0x18, +0x38,0xcf,0x22,0x83,0x29,0x04,0x5c,0xaf,0xa0,0x2b,0xab,0xf0, +0x87,0xa1,0x20,0x25,0x38,0xf1,0xfe,0xaa,0xe7,0x3b,0x61,0x34, +0x87,0xdf,0xe9,0x41,0x3f,0xd3,0xbb,0xfc,0xd9,0x22,0xf8,0x64, +0x15,0x37,0xfc,0x21,0x0c,0x10,0xa3,0xc5,0x6b,0x56,0xcc,0xd8, +0x72,0xd6,0x8c,0x87,0x31,0x0f,0x9e,0xbc,0xee,0xff,0x91,0x7b, +0xb6,0x80,0x98,0x2f,0xd6,0x59,0xae,0xbe,0x8a,0x73,0x71,0x3e, +0xe6,0x34,0xf5,0x8c,0x0e,0x84,0x9c,0x06,0x8f,0x78,0xd0,0xcf, +0x57,0xcc,0xf5,0xcf,0xf1,0xcb,0xf1,0x6b,0xab,0xe6,0xd5,0x9f, +0xad,0x7d,0xb6,0xec,0xb1,0x8d,0x3b,0xdf,0xe8,0xd0,0x60,0x7b, +0xd6,0x1a,0x27,0x45,0x22,0x1f,0x83,0x33,0x0f,0xf7,0xdf,0xea, +0x7f,0xda,0xfc,0x84,0xb2,0x9d,0xf8,0x4f,0x62,0x1f,0x9d,0x50, +0xaf,0x02,0x7e,0x1a,0x18,0xcb,0xee,0x2e,0x0a,0xb8,0xa6,0x4c, +0xdd,0x73,0x63,0x66,0x16,0x6d,0x0e,0x96,0xb2,0xda,0xb4,0x75, +0x54,0x67,0x87,0xcb,0x36,0x13,0xd8,0x7b,0xe9,0x19,0x8c,0x8a, +0x83,0x75,0xbb,0x4f,0xf1,0x87,0x50,0x49,0x77,0x05,0xfa,0x6b, +0x72,0x0a,0x82,0x62,0x13,0xe9,0xfb,0xbe,0x00,0xc6,0xc7,0x81, +0x21,0x07,0xee,0x26,0xb8,0x15,0x63,0x85,0xd9,0x10,0x8b,0xdb, +0xbb,0xc0,0xb7,0x51,0x0c,0x62,0x8e,0x97,0x7e,0x55,0x56,0xa9, +0x54,0xf5,0xcd,0x42,0xc8,0xff,0x1e,0x46,0x9f,0xc5,0xd1,0x97, +0x61,0x42,0x13,0x06,0x5f,0xd4,0xdd,0x8d,0x5f,0xa1,0x01,0x8b, +0x69,0xa1,0xa8,0xa2,0x35,0x5f,0x59,0x78,0x19,0x40,0x6c,0xa4, +0x7a,0x52,0x0b,0x79,0x7b,0xde,0x19,0xda,0xe3,0xdf,0xec,0xcb, +0xb9,0x8a,0x17,0x59,0x9f,0xc8,0xc4,0x22,0x15,0x61,0xf2,0xb7, +0x5d,0xb8,0x54,0x18,0x67,0x28,0x8e,0xc3,0xc5,0x26,0xcf,0xd9, +0x63,0xe8,0x1d,0x8e,0x1f,0xae,0x5a,0xd8,0x6c,0xc9,0xbf,0x04, +0x26,0x1b,0x54,0x4e,0x40,0x38,0x77,0x53,0x24,0x8c,0x66,0x71, +0xd0,0x80,0xb2,0x70,0x91,0x69,0x4c,0x4f,0xab,0x55,0x29,0x61, +0x6d,0xd3,0x25,0xe2,0x23,0x59,0x04,0x89,0xda,0x10,0x38,0xcd, +0x7f,0x4b,0x5b,0x18,0x5f,0x78,0x2f,0x0f,0x46,0xa5,0xdc,0xe6, +0xf0,0x28,0x1e,0x22,0xd1,0xb7,0xfd,0x60,0x54,0xe0,0x35,0xf3, +0x20,0x3e,0x5f,0x33,0x7f,0x5a,0x92,0x1a,0x27,0xec,0x81,0x15, +0xe4,0xcb,0xcb,0xdf,0x30,0x9d,0xbb,0xc8,0x65,0x58,0xbf,0x8b, +0xc5,0xf5,0xf6,0x04,0xd6,0x1b,0xe3,0x7a,0xe6,0x32,0xca,0x3f, +0xcc,0xe9,0x85,0x8f,0x98,0x76,0x43,0xd2,0x0b,0x9f,0x18,0xb2, +0xb8,0xdd,0x91,0xe8,0xe1,0x47,0x03,0x2c,0x6c,0x9d,0x02,0x9f, +0xe8,0xe1,0x27,0xf2,0x3b,0x30,0x34,0xc8,0xd5,0xac,0xf3,0x45, +0x9d,0x35,0x5e,0xb5,0xbc,0xb5,0x87,0x9e,0xff,0xf6,0xbd,0x9c, +0x82,0xec,0x77,0xd9,0x3e,0x82,0x9a,0xe7,0xe1,0xd0,0xf0,0x1b, +0x3c,0x74,0x1e,0x34,0x59,0xd9,0xe7,0x48,0x88,0x38,0x24,0xfe, +0x84,0x2b,0xf5,0xff,0xf8,0xa0,0x1f,0x57,0x31,0x5a,0xc2,0x59, +0x82,0x2a,0xe2,0x6e,0x50,0x61,0xa9,0xf7,0x36,0x23,0x38,0x93, +0x1e,0xcf,0x94,0x1f,0x5b,0x11,0x9c,0x4f,0x8f,0xe7,0xd3,0xea, +0x78,0x20,0x84,0x12,0x58,0xf8,0xf3,0x77,0x4f,0x6a,0xe0,0x43, +0xee,0x0c,0x53,0x89,0xe3,0x61,0x9c,0x2a,0x2c,0x9f,0x56,0xd1, +0xc7,0xe3,0xe2,0x9f,0xa6,0xbd,0x30,0x7f,0xc7,0x69,0x30,0x36, +0xb3,0x96,0x7d,0x89,0x4b,0xe6,0x71,0x11,0x17,0x88,0xd5,0x39, +0x9d,0x2b,0xea,0x17,0x6c,0xed,0xf8,0x4b,0xba,0x03,0x1a,0x9d, +0x1a,0x9c,0x70,0x7d,0x2e,0x19,0x10,0x27,0xe9,0xb1,0x68,0x84, +0xe3,0xa8,0x13,0xfa,0x60,0x0b,0xce,0xda,0xb4,0xb0,0xdd,0x96, +0xbf,0xf7,0xdb,0x4d,0x98,0xd3,0x4a,0x07,0x05,0x5e,0x9c,0x4e, +0x06,0x05,0x25,0xdd,0x73,0xc2,0x32,0x31,0x49,0x5c,0xc6,0x9e, +0x83,0xdf,0x89,0xa0,0x84,0x91,0xa2,0x12,0xa3,0xf0,0x87,0xd2, +0x71,0xe2,0xd2,0xb4,0xf7,0x57,0xb8,0xa8,0x04,0x5f,0x0f,0xdb, +0xe1,0x20,0x8b,0x59,0x81,0xa8,0xa0,0x81,0x1f,0x28,0x77,0x5a, +0x49,0x6e,0xc2,0xd4,0x42,0x98,0x03,0x25,0x4a,0xf0,0x95,0xf0, +0x02,0xab,0x59,0xbc,0x5a,0x80,0x53,0x06,0x8c,0x95,0xab,0x3d, +0x6b,0xd3,0xce,0x74,0x65,0x83,0x11,0x6f,0x5e,0x28,0x41,0x0b, +0x81,0x21,0x7d,0xa2,0xa7,0x01,0xfb,0x5a,0x7c,0x4b,0x86,0xa0, +0x5a,0xa7,0x5f,0x38,0x22,0xce,0x12,0x8f,0xb0,0xf0,0x1d,0x5c, +0x24,0x58,0x0d,0x8a,0x50,0xcd,0x60,0x35,0xea,0xc8,0xff,0x56, +0x34,0x13,0xab,0x29,0x4f,0x4d,0x16,0xcc,0x09,0x24,0x35,0xfe, +0xfa,0x5d,0x2e,0xcc,0xa3,0x62,0xc1,0x1c,0xde,0x11,0x6b,0x10, +0x61,0xcd,0xb9,0x44,0x87,0x84,0x99,0x4c,0x45,0x9e,0x49,0xa5, +0x7e,0xe9,0x13,0xe6,0x71,0x79,0xde,0xdd,0x1c,0x95,0xb4,0x9e, +0xf8,0xab,0xa7,0x81,0xe5,0x86,0x4d,0x0d,0xa1,0x87,0x09,0xc6, +0x09,0xab,0xd4,0x31,0xca,0x81,0xfb,0x0e,0x77,0x90,0x68,0x34, +0x37,0x5e,0x31,0x5b,0x8d,0x92,0x0a,0x8c,0x7f,0x72,0x0e,0xb8, +0x44,0x70,0xe3,0x60,0x06,0x83,0x5f,0x1c,0x54,0x8d,0x32,0x56, +0xb6,0x89,0xd9,0x1b,0x65,0x3e,0x75,0x1b,0x93,0xaa,0x2f,0xb9, +0xc5,0xdc,0xa8,0xcc,0xbe,0x99,0xa6,0x92,0x7a,0xf5,0x0c,0x8c, +0x86,0x9d,0x4a,0xe2,0x42,0x43,0x46,0xb0,0x99,0x42,0xf9,0x2e, +0x06,0x0d,0xcd,0x55,0xa7,0x6f,0xaa,0xa1,0xe5,0x37,0xe9,0x49, +0x3f,0xb0,0x89,0xe0,0xc4,0xc1,0x1c,0x06,0x3f,0x3f,0xb8,0x2c, +0xca,0x50,0xd9,0x36,0x3a,0x2c,0xf2,0xcf,0x21,0xee,0x30,0xd7, +0x2a,0x46,0x86,0xb8,0x72,0x06,0xc6,0xc2,0x2e,0x25,0x71,0x0e, +0x5d,0x87,0x8f,0xec,0x16,0xa1,0x7d,0xb5,0xaa,0x1e,0xa8,0xd2, +0x26,0xb0,0xc5,0x81,0xda,0xc5,0x29,0x38,0xbb,0xd5,0x86,0x87, +0xa9,0xb0,0xb8,0x1d,0xdc,0x4e,0xc1,0x55,0x0e,0x96,0x52,0x31, +0x3e,0x72,0x08,0x57,0x45,0xce,0xe4,0xb6,0xc6,0x84,0x45,0x18, +0x4c,0x5d,0xc1,0xa4,0x69,0x4b,0x9e,0x31,0x4f,0xcb,0xcb,0xdf, +0x24,0xab,0xa4,0x80,0x24,0x0e,0x76,0x42,0xb3,0x12,0xee,0x81, +0x4d,0x8c,0xf0,0xcb,0xf0,0x25,0x82,0x6a,0x8c,0x6d,0x64,0x72, +0xa3,0x8a,0x2c,0x51,0x73,0x38,0x83,0x5d,0x2f,0xf5,0x7a,0xa8, +0x0c,0x5b,0x99,0xd6,0x2c,0x79,0x63,0x6e,0xcc,0xea,0xe4,0x51, +0x6f,0xf8,0x91,0x60,0x44,0x4b,0xb7,0x05,0xc6,0x5e,0xa9,0x80, +0x89,0x1c,0x8d,0xef,0x31,0xc7,0xa3,0x4e,0x07,0x3c,0x39,0xcf, +0x03,0x81,0xe1,0xc6,0x23,0x11,0xa4,0x6c,0x3e,0x81,0x79,0x5b, +0x2a,0x3d,0x9f,0xaa,0x92,0xd4,0x7a,0xb2,0xf7,0x8e,0x12,0x7e, +0xc3,0x1c,0x4f,0x3e,0x9e,0x92,0xa2,0xd4,0xab,0x69,0xc8,0x46, +0x1c,0x8b,0x38,0x16,0xa9,0x8c,0x83,0x86,0xd0,0xca,0x78,0xad, +0x5e,0x66,0x8e,0x8e,0xf6,0x9c,0x80,0xb8,0x93,0xbc,0xd6,0x5a, +0x8c,0x8a,0x86,0xc0,0x53,0xab,0x30,0xcb,0x66,0x15,0x32,0xdb, +0x6b,0x4d,0x79,0xf8,0xec,0x51,0x07,0x8c,0x4d,0x00,0x55,0x0e, +0x54,0x98,0xa5,0x47,0x36,0xc7,0x98,0x28,0x5b,0xc5,0xec,0x8f, +0x76,0x9c,0xba,0x8a,0x49,0xd1,0x97,0x3c,0x62,0xae,0x97,0xe7, +0xde,0x4f,0x56,0x49,0xbc,0x78,0xf2,0xd5,0x31,0x50,0xe4,0x86, +0xcd,0xbf,0x21,0x5f,0xe2,0x7c,0x43,0x98,0xcb,0xc6,0xe0,0x3c, +0xf3,0xd5,0x38,0x5a,0xbd,0x96,0x46,0xf7,0x93,0xc7,0xbd,0xc0, +0x26,0xc0,0x52,0xf9,0x18,0xcb,0xde,0x8f,0x11,0xbb,0x2f,0xc6, +0x61,0xea,0x5a,0xf9,0x18,0x0f,0x98,0x1b,0x25,0xd9,0x8f,0x52, +0x54,0x12,0x2f,0x9c,0x7c,0x09,0xbc,0x12,0x5a,0x7d,0xc3,0x28, +0x08,0x71,0x30,0x8a,0x38,0xef,0xb5,0x0f,0xb5,0xa5,0x7d,0xd5, +0xd1,0x6f,0x21,0x17,0xd5,0x7e,0x07,0xbb,0x3e,0xb4,0xfb,0x59, +0x7f,0x36,0xda,0x1a,0x80,0xed,0x34,0x5c,0x8f,0xb9,0xbf,0xb0, +0x87,0x91,0xb8,0xcf,0xc2,0x51,0x4b,0xea,0x2c,0xe8,0x16,0xfe, +0x5a,0x0b,0x9f,0x9e,0x86,0x19,0xdc,0x43,0xcc,0x66,0x36,0x05, +0xa4,0xeb,0xff,0x58,0x72,0xbf,0xe2,0x4e,0xbd,0x22,0xe8,0xc8, +0xb2,0x88,0x36,0x1a,0xe0,0x27,0x7a,0x34,0xaf,0x0e,0x63,0x9b, +0x15,0x6e,0xc4,0x51,0x38,0xa7,0xc5,0x8a,0x87,0x0f,0x60,0x45, +0x07,0x98,0x9d,0x82,0x5e,0x0e,0xbe,0x64,0xf0,0xe0,0x41,0x5c, +0x13,0x31,0x5b,0x59,0xfb,0xc0,0xfe,0x30,0x83,0xa9,0xcb,0x98, +0x74,0x5d,0xc9,0x0b,0xe6,0x51,0x69,0xf5,0x93,0x44,0x95,0x34, +0xe0,0x4e,0xc3,0x62,0xb8,0xa2,0x84,0x5e,0x0c,0xd6,0xc8,0xef, +0xa2,0x5e,0x4e,0x6d,0xe7,0x72,0x56,0x41,0x66,0x43,0xb3,0x40, +0x97,0x0e,0x3e,0x51,0x8f,0xb6,0xf9,0x87,0xb0,0x82,0x0e,0x3e, +0x03,0x95,0x5d,0x6a,0xcc,0x2b,0x9d,0xf3,0x3c,0x1c,0xf9,0x46, +0xef,0x56,0xa7,0x1a,0xe7,0x8c,0x1c,0xbe,0xda,0x11,0x78,0x58, +0xde,0x0d,0x96,0xa7,0xa1,0x5b,0x91,0xfa,0x5a,0x3c,0x74,0x10, +0x57,0x47,0xcc,0x52,0xd6,0x8e,0x8d,0x08,0x37,0x9c,0xba,0x54, +0x3e,0xd9,0x4b,0xe6,0x61,0x49,0xf5,0xe3,0x44,0x95,0x74,0xf8, +0x40,0x3e,0xd9,0x25,0x25,0x74,0x66,0xc4,0x3f,0x60,0x39,0x41, +0x1d,0x61,0x0a,0xe8,0xb0,0xf8,0x08,0xa7,0x91,0x6f,0xa1,0x60, +0x09,0x8b,0xbf,0x21,0x47,0xc4,0xdd,0xc2,0x36,0x61,0x37,0x2b, +0x4e,0xc0,0x4f,0xc9,0x03,0xb8,0xb6,0x9e,0xa5,0xa6,0x9f,0x90, +0x47,0x70,0x6d,0xad,0xfc,0x48,0x91,0x3c,0x85,0x6b,0x2b,0x59, +0x71,0x0a,0xb5,0xc1,0x17,0x4b,0x6e,0x75,0x34,0xb5,0x3a,0x54, +0xf3,0xae,0x0e,0xea,0xe6,0x9a,0xbe,0xd4,0x1f,0xdd,0x90,0xd9, +0x93,0xb4,0xea,0xe4,0xda,0xc4,0xda,0x5d,0x69,0xbc,0x1b,0x2e, +0x58,0x89,0xd3,0xe4,0x5f,0xc8,0xd0,0x66,0xc2,0x3f,0xbe,0x75, +0xe9,0x79,0xeb,0x0f,0x9c,0xd0,0xc1,0x1c,0xc3,0xf6,0x70,0xd4, +0x09,0x5e,0xc5,0x99,0x46,0xf8,0xec,0xd1,0x9a,0x8a,0x9b,0x98, +0x0c,0x2d,0x09,0xac,0x64,0x5e,0xb5,0x56,0x3f,0xcc,0x55,0x91, +0xbe,0x49,0x85,0x40,0x78,0xa2,0x34,0x3c,0x03,0xbb,0x89,0xa0, +0x76,0x41,0x54,0x63,0x04,0x5d,0x6a,0x37,0x71,0xb6,0x03,0x5a, +0x38,0xa2,0x81,0x7f,0x96,0x06,0x0f,0xa6,0x85,0x60,0x50,0x07, +0xd3,0x1b,0xe8,0x8c,0x83,0x32,0x77,0x92,0x5e,0x95,0x5c,0x93, +0x54,0xad,0x95,0xc4,0xdb,0xe0,0x82,0x4d,0xa8,0x44,0x67,0x1c, +0xdd,0x64,0xc1,0x7f,0x7d,0xe7,0xe2,0xcb,0x96,0xef,0x39,0xe1, +0x2a,0x83,0x7d,0xfb,0xd1,0x6a,0xef,0x4a,0x65,0xd3,0x28,0x77, +0x5f,0x3a,0xe1,0x0c,0x26,0x43,0x5b,0x02,0x3c,0xf3,0xaa,0xad, +0xfa,0x61,0x8e,0x4a,0xc1,0x77,0xc9,0x10,0x0c,0xbf,0x2a,0x89, +0xc7,0xd1,0x9d,0xa4,0x95,0xa6,0x94,0x25,0x97,0xeb,0xa4,0xf3, +0x66,0x38,0x93,0x26,0x19,0x8e,0x59,0xd1,0x68,0xce,0xdf,0xbd, +0x70,0xe1,0x56,0xfb,0x63,0x0e,0x32,0x18,0xff,0xd5,0x2e,0x5b, +0xcc,0x35,0xcd,0x1b,0xf4,0x1a,0xe9,0x36,0xd8,0xf3,0xdd,0x2e, +0xfd,0xb6,0x2d,0x76,0xea,0x9b,0xa8,0x83,0x90,0x98,0xd7,0x1a, +0xf1,0x10,0xf2,0x1b,0x6d,0xe2,0x36,0x5d,0x84,0x93,0x5c,0x2d, +0xa5,0xe1,0xb5,0xeb,0xc9,0x79,0x59,0xca,0xe0,0x70,0x8a,0x4c, +0x4f,0x76,0x66,0x70,0xf8,0xc6,0x3f,0x58,0x56,0x56,0x0a,0xc1, +0xa4,0x17,0x5b,0x81,0xf6,0xd6,0x3d,0x98,0x00,0x0b,0xa0,0xa4, +0x57,0xfc,0xc5,0x10,0xb2,0x71,0x01,0x7e,0x65,0x04,0x5f,0xd1, +0xba,0xaf,0x31,0x64,0x85,0x1b,0xdf,0x13,0xbf,0x7a,0xcf,0xb3, +0x1e,0xa5,0x54,0x71,0x2a,0x3d,0xca,0x1c,0x0a,0x1d,0xe9,0x4a, +0x9d,0xa9,0x3a,0x1c,0x44,0x45,0xd7,0xa5,0x38,0x65,0x5b,0x19, +0x2d,0xa0,0xc5,0x5f,0xd7,0xc2,0xf8,0x78,0x98,0x23,0x27,0x83, +0xd5,0x87,0xb7,0xc6,0x18,0x2a,0x3b,0x1f,0x8c,0x88,0xb0,0x9f, +0xba,0x90,0x49,0x32,0x94,0xbc,0x61,0x2e,0x97,0x16,0x5e,0x48, +0x92,0x27,0xff,0xd7,0xb4,0x41,0x14,0x77,0xe9,0x31,0x42,0xf6, +0xf0,0x00,0xb9,0x20,0x6b,0x05,0x17,0xf1,0x0a,0xce,0x64,0xd2, +0x69,0x0c,0x26,0x33,0x2d,0x59,0x19,0xad,0x2a,0x32,0x06,0x5f, +0xb1,0xa2,0xfa,0xf0,0x3b,0x72,0x09,0xee,0x03,0x8a,0xbc,0xa8, +0xc6,0xc2,0x7d,0x61,0x1c,0xc1,0x23,0x98,0x01,0x47,0xe8,0x52, +0x78,0x59,0x03,0xc1,0xa3,0x2c,0x16,0x86,0xe2,0xc2,0xed,0x38, +0x5d,0xb9,0xc7,0x48,0xf2,0x00,0x56,0x67,0xc2,0x0e,0x28,0x52, +0x02,0x23,0xd9,0xbe,0x7e,0x76,0x58,0x4f,0xd4,0x24,0xb2,0xcd, +0xbd,0x78,0x1e,0x26,0x43,0x41,0x2f,0x16,0xfc,0xaa,0x39,0x13, +0xb3,0xe5,0x2b,0x9b,0x4c,0xbb,0x33,0x61,0x82,0xdc,0xbc,0xd4, +0xf6,0x62,0xed,0xfb,0xa6,0xb2,0xca,0x10,0xaa,0x28,0x6d,0xff, +0x6c,0x20,0xdb,0xdf,0x87,0x5f,0x33,0x72,0xee,0x79,0x4c,0x70, +0x20,0x14,0xd7,0xec,0x44,0x25,0xe5,0x4e,0x63,0xc9,0x1d,0x58, +0x9c,0x0d,0x26,0x70,0x4e,0x09,0xb6,0xca,0x8e,0x77,0x0e,0x9f, +0x67,0x85,0xae,0x55,0xc4,0x0c,0x1d,0x3a,0x8c,0xcd,0xd0,0xc0, +0x0c,0x0c,0x4c,0xba,0xbb,0xc0,0x41,0xfe,0xc3,0xa6,0x03,0x6d, +0x3a,0x58,0x98,0x21,0x52,0xee,0xca,0x14,0xbf,0xc6,0x4c,0x48, +0xd1,0xc1,0x3e,0x6c,0xe9,0x87,0x63,0x70,0x6c,0x26,0xab,0x71, +0x70,0xc7,0x61,0xcd,0xa3,0x71,0x94,0xcc,0x67,0xc6,0xc3,0xec, +0x54,0x18,0x95,0x96,0x1c,0x96,0x14,0x9a,0x10,0xde,0x50,0xc4, +0xfb,0x34,0x39,0x75,0xba,0xd4,0x38,0x06,0xf1,0x29,0xfb,0x53, +0xc3,0x53,0xc2,0xdc,0x0e,0x3b,0x1c,0xb2,0x3b,0xcc,0xbd,0x85, +0x64,0x34,0xc4,0x2f,0x46,0xbe,0x44,0x79,0x3c,0xd3,0x9c,0x95, +0x46,0xed,0x4e,0x18,0x5e,0x1b,0x62,0x8d,0x60,0x19,0x41,0x9b, +0x73,0x60,0xc3,0xf4,0x68,0x93,0x73,0xe0,0xa1,0xcd,0x8a,0x9e, +0x36,0x04,0x6c,0x34,0xd0,0x86,0x81,0xc4,0x4b,0x04,0x3c,0x34, +0xd0,0x83,0x51,0x90,0x55,0x52,0x86,0xb9,0xf2,0xb4,0xe1,0xa7, +0x3c,0x90,0x70,0xcd,0xe2,0x44,0xf6,0xb8,0xf4,0xab,0x62,0x2a, +0x76,0x76,0xd0,0x25,0xff,0x02,0x14,0x56,0xae,0x42,0x2b,0x99, +0x96,0xcc,0xcc,0x16,0x15,0xb0,0x11,0xd7,0x63,0x0a,0x75,0xb8, +0xd1,0x38,0xd7,0x11,0x27,0x29,0xfb,0xbc,0xb4,0x82,0x31,0x2e, +0x37,0xcd,0xf6,0xf0,0x79,0xb6,0x45,0xda,0x79,0xda,0x7a,0xe1, +0xda,0xfb,0x77,0x47,0x14,0x3f,0x2f,0x83,0x89,0x39,0xbf,0x73, +0x60,0xda,0x8b,0xeb,0x61,0x0d,0x2c,0xe9,0xc3,0x25,0xa0,0xa6, +0x8b,0x6a,0x38,0xdf,0x00,0xe6,0xe3,0x1a,0xda,0x73,0x51,0x67, +0x1f,0x8c,0xa3,0xdc,0xf0,0x53,0xaf,0x2f,0x83,0x0e,0x07,0x1d, +0x09,0x3c,0x9c,0xac,0x4d,0xc5,0x2b,0x07,0xc6,0x14,0xfc,0x24, +0x8d,0x0f,0x39,0x13,0x72,0x26,0xb4,0xad,0x88,0x8f,0x09,0x88, +0x09,0x88,0x0a,0xea,0x76,0xe6,0x07,0xe0,0xd3,0x5c,0xe0,0x4f, +0x83,0x17,0x07,0xe7,0x99,0xd0,0x95,0x6e,0x6b,0x8d,0xd4,0x6d, +0x87,0xdc,0xaf,0xf9,0x3e,0x32,0xdc,0xc3,0x97,0xa8,0xd6,0xaa, +0x75,0xec,0x30,0x33,0xd1,0xb4,0x56,0x73,0x2d,0x33,0xe0,0x1f, +0xd4,0x5e,0x6e,0xed,0xee,0x6d,0x37,0xea,0xb7,0xbc,0x6e,0x57, +0xd5,0xcb,0xef,0xac,0x33,0x68,0xb6,0xea,0xa4,0x4e,0x6e,0xb7, +0xd0,0x4c,0x72,0xf3,0x32,0x73,0x32,0xf2,0x39,0x6c,0x13,0xcc, +0xda,0xd1,0xf8,0x3e,0xa8,0xb6,0xa2,0xea,0x9d,0x91,0x9f,0x37, +0x40,0xbb,0x1d,0xb7,0xb2,0x69,0x05,0x49,0xf9,0x89,0x85,0x66, +0xa9,0x7c,0x94,0xd7,0x7e,0xaf,0x50,0xda,0x84,0x13,0x26,0x39, +0x3f,0xa9,0x20,0x51,0x6a,0x98,0xc6,0x7b,0x2f,0x34,0x5e,0xb7, +0x6d,0x27,0x87,0xcf,0x71,0x80,0xbc,0x6e,0xba,0xde,0xdd,0x79, +0xb9,0xd1,0xb1,0xce,0xbe,0xca,0xa1,0xae,0x91,0x77,0x6a,0xb0, +0x6b,0xb4,0xae,0x2f,0xed,0xce,0x1e,0x4a,0xbc,0xca,0x5d,0xea, +0x42,0xd5,0xef,0xf5,0x17,0xe2,0x56,0x13,0xc8,0x62,0x62,0x8d, +0xf7,0x59,0x04,0xda,0x59,0xd5,0x99,0x57,0x9b,0x97,0x3b,0x3b, +0xf0,0x9d,0x6e,0x9d,0x8e,0x6d,0x76,0x56,0x3a,0x3b,0xcd,0x96, +0x3a,0x70,0x42,0x3a,0xd4,0x92,0x1b,0x30,0x77,0x1b,0x8b,0x73, +0x69,0xfb,0x70,0x07,0xe6,0x6e,0x92,0x1f,0x7d,0x42,0xee,0xc3, +0xdc,0x0d,0x2c,0x24,0xc9,0x6f,0x87,0x9e,0x9e,0x86,0x6c,0xee, +0x02,0xe9,0x2f,0x2d,0xf7,0xfb,0xba,0x2e,0x72,0x6d,0xc3,0x9e, +0xc6,0xb2,0x4f,0x59,0x23,0xd3,0x8d,0xd6,0x73,0x9c,0x17,0x54, +0x6e,0x68,0xd8,0xd2,0x66,0xed,0xc4,0x5f,0xb4,0xbd,0xec,0x74, +0xd7,0x7d,0xba,0x37,0x7e,0x1c,0x88,0xf3,0xa2,0xd2,0xf5,0x78, +0xd8,0x9e,0x06,0x0b,0x4a,0xe1,0xc3,0x06,0x18,0xe7,0x04,0x4a, +0xde,0xb0,0x2d,0x84,0x1a,0x35,0x53,0xd9,0x6d,0xca,0xfc,0x13, +0xd0,0x1b,0xad,0x07,0x60,0xa6,0xf0,0x29,0xce,0x1c,0x00,0x6b, +0x0c,0x60,0xc4,0xf3,0xc3,0xba,0xe4,0x37,0xd8,0x43,0x7d,0x5b, +0xc5,0xf0,0x41,0x16,0xfc,0x60,0x15,0xc1,0x15,0x42,0x29,0xac, +0x60,0xe0,0xee,0xb0,0x19,0x31,0x8d,0x4a,0xee,0x54,0x81,0x55, +0x2c,0x28,0x0e,0xc2,0xa4,0x7b,0xf7,0x6f,0x3b,0x35,0xf2,0x3b, +0x77,0xe1,0xe8,0xad,0x38,0xde,0x94,0x83,0x68,0x5d,0xd1,0x9b, +0x5d,0x29,0xf5,0x7d,0xa4,0x0c,0xd1,0x4c,0x73,0x6e,0x36,0x4d, +0x90,0x0d,0xac,0x7e,0x96,0x04,0x4d,0xa9,0xe1,0xd7,0x14,0x6c, +0xc9,0x20,0x2d,0x46,0x17,0xf6,0x51,0xea,0xfd,0x8c,0xbe,0x4c, +0xf7,0x4e,0x1e,0x19,0x37,0xf4,0x71,0xc5,0x59,0xb1,0x59,0x86, +0x7c,0xdf,0xc9,0xdb,0x09,0xf7,0x92,0x39,0xb4,0x42,0x5f,0x5d, +0xb0,0x67,0x3d,0x50,0x61,0x3d,0x7e,0x86,0xca,0xa8,0x50,0x6d, +0x40,0x3b,0x44,0x98,0x78,0x0b,0x26,0x65,0xc0,0x27,0x5c,0x9c, +0xe8,0x71,0x4e,0xf0,0x88,0x63,0xb2,0xf0,0xe3,0x47,0x38,0x11, +0x94,0x50,0xa1,0x92,0x5a,0xc2,0x99,0xf0,0xe1,0x4a,0x98,0xe2, +0x01,0x0a,0xdc,0xf0,0x68,0xb8,0x40,0x86,0x0f,0x0e,0xfd,0x06, +0xbe,0xb2,0xcf,0x59,0xf4,0x35,0x20,0xb0,0x5c,0x2c,0xc5,0xe5, +0x34,0xad,0xb5,0xc0,0x9d,0x1a,0x5c,0xf0,0xe9,0x47,0x1f,0x58, +0x0e,0x5f,0x0d,0xe0,0x42,0x56,0xda,0x2c,0xed,0xcb,0xed,0x31, +0xcc,0xe5,0x03,0x74,0x7c,0x74,0xdd,0xf4,0x38,0xbc,0xab,0x07, +0xe1,0x54,0xc0,0x9c,0xf4,0xc1,0x89,0xca,0xe8,0x31,0x3d,0x38, +0x86,0xa1,0xe7,0x21,0x14,0x92,0x06,0x18,0x7c,0x23,0xf8,0x92, +0xc0,0x76,0xef,0x5e,0xbf,0xb3,0x26,0xbe,0x7c,0x91,0x6d,0xb1, +0x59,0xae,0x29,0x27,0x2e,0x1f,0xe6,0x69,0xb8,0x6c,0x68,0xb8, +0x52,0xe5,0xe1,0xb2,0x85,0x95,0x04,0x67,0x09,0xe5,0x30,0x8b, +0x51,0xb8,0x23,0x68,0x13,0x98,0xfb,0xb0,0xe1,0x69,0xfc,0x2f, +0x1c,0x2c,0x62,0x6c,0x8f,0x5a,0x1f,0x70,0x55,0x76,0x39,0x10, +0x1a,0x6e,0x4a,0x45,0x2d,0xd5,0x84,0xaa,0xfb,0x37,0xa5,0x25, +0x57,0x92,0x54,0xe2,0x1a,0x4f,0x5e,0xbd,0xa5,0x84,0xae,0xb7, +0x75,0x37,0xe3,0x12,0x13,0x58,0xcc,0x1c,0x58,0xe3,0xa1,0x85, +0x53,0x37,0xca,0x33,0xa2,0x8b,0x60,0x07,0xbc,0x81,0x0e,0x16, +0x6b,0xf1,0x18,0xa1,0x74,0x12,0x8c,0x26,0xec,0x70,0x2e,0xcd, +0x0a,0x43,0xd9,0x66,0xda,0x20,0x38,0xb1,0xf2,0xfe,0x54,0x8f, +0x69,0xcb,0xca,0xa0,0xc1,0x16,0x61,0x72,0x2f,0x8b,0xbf,0xa3, +0x12,0x11,0xe7,0x63,0xdd,0x85,0xf3,0xf0,0x9a,0xd1,0xee,0x26, +0x58,0x06,0xe3,0xa1,0x8c,0x9a,0x5a,0x3d,0xd9,0x66,0x82,0x2e, +0xb0,0x54,0x07,0x97,0xa2,0xb9,0x11,0x98,0xd3,0x15,0x9a,0x1a, +0x09,0x16,0x3d,0x68,0x41,0xc3,0xe2,0xc2,0x0c,0x07,0x82,0x2d, +0xa1,0x19,0xb7,0xd5,0x00,0xb6,0x52,0x1f,0xb0,0xc1,0x40,0x98, +0xd6,0x87,0xeb,0x60,0x23,0x6c,0xee,0xc3,0xcd,0xf2,0xcb,0x9f, +0x9b,0xfe,0x31,0x8b,0x9c,0x87,0x6a,0xad,0x41,0xe1,0x43,0x71, +0xae,0xf8,0x21,0x2b,0x2a,0x84,0x92,0x8b,0xd0,0x00,0x37,0xf1, +0x17,0x91,0xb0,0xb2,0x5c,0xf9,0xb7,0xc2,0x39,0x52,0x63,0xeb, +0xc8,0xa2,0xd3,0x7e,0x82,0x4e,0x18,0x0a,0x4e,0xac,0xc2,0xa0, +0xac,0x91,0xe8,0xff,0x31,0x8e,0xf2,0xeb,0xc6,0xb5,0xc4,0x45, +0xc7,0x44,0x43,0x5b,0xa7,0x47,0xef,0xdc,0xba,0x5a,0xbd,0x8e, +0x72,0xde,0xa5,0xd7,0xf4,0x92,0x43,0x63,0x6b,0x6b,0xc7,0x85, +0xe2,0x16,0x0e,0x0e,0x15,0x13,0x57,0x7a,0x5e,0x8b,0x9e,0x3f, +0xbf,0xae,0x46,0xaf,0xa3,0x4a,0x7e,0xfe,0xbc,0xfc,0x7c,0xe7, +0x05,0x29,0x3d,0x1f,0x53,0x4c,0xdf,0x6f,0xfa,0xaf,0xf3,0xe5, +0xbc,0x6b,0xaf,0xc9,0x25,0xc7,0xc6,0x96,0xf7,0xe7,0xc5,0xf1, +0x62,0x3a,0x11,0xc6,0x0e,0x8a,0x63,0xe1,0x43,0x4d,0xaa,0xa0, +0xbf,0xea,0xc2,0xaf,0xb8,0x44,0x5c,0xae,0xfb,0xc7,0x8c,0x41, +0x71,0x1b,0x75,0x4e,0x0c,0xf8,0x12,0xea,0x9b,0x42,0x6d,0xa8, +0x73,0x7a,0x06,0x53,0x06,0x70,0x0a,0x48,0xb5,0x50,0x8a,0x1f, +0xeb,0xc1,0xc7,0x28,0xb0,0x36,0xe1,0x56,0xfb,0x2d,0xf6,0x67, +0xd0,0x82,0x99,0x5c,0xfd,0x6b,0xd5,0xdb,0x66,0xda,0xf6,0xca, +0x3e,0x23,0xa2,0xf9,0x70,0x01,0x4a,0x0c,0x64,0xa4,0x6f,0x33, +0xa3,0x29,0x94,0x10,0xbc,0x47,0x77,0xe1,0x1e,0x83,0xf7,0xde, +0x7f,0x48,0x75,0x0f,0xad,0x58,0x43,0xf9,0x87,0x54,0xf7,0xe4, +0x1f,0x52,0xc9,0x6a,0xe0,0x92,0xfc,0x59,0x5e,0xfc,0x00,0xf2, +0xe0,0xa0,0x8b,0x0e,0x68,0xf0,0xfe,0xbf,0x4f,0xf5,0xe0,0x53, +0x4c,0xc4,0x59,0xba,0xc2,0xcf,0x83,0xac,0xf8,0xf3,0x02,0xe2, +0x1c,0xea,0x18,0xe6,0x10,0xce,0xc1,0x0b,0x18,0xd3,0x8f,0x63, +0x40,0xaa,0x43,0x71,0x30,0xfa,0xc0,0xa0,0xc8,0xda,0xef,0xb3, +0xdf,0x6f,0x13,0x91,0xa9,0xcf,0x03,0x5b,0xfd,0x5d,0xd5,0xab, +0x46,0x0e,0x4c,0x84,0xa5,0x04,0x0c,0xe8,0xfb,0x0d,0x18,0x34, +0x14,0x3f,0x21,0xaf,0xae,0xdc,0x79,0xde,0xf1,0xc4,0xb4,0x82, +0x37,0x5b,0xbb,0x63,0xe3,0x8a,0xdd,0x9c,0xf0,0x39,0x68,0x92, +0xeb,0xbb,0x1f,0xa8,0x76,0x6f,0x69,0xa9,0xe7,0x4d,0x6e,0x6d, +0x78,0xbe,0xf5,0x12,0x95,0xdb,0x77,0xf0,0x8e,0x80,0xd2,0xc0, +0xc5,0x7b,0xf1,0x30,0xaa,0xf2,0x44,0xe5,0x89,0x8a,0x93,0x1c, +0x7e,0xc0,0xee,0xcc,0x0d,0xbc,0xac,0x0c,0x53,0x98,0x86,0x8c, +0x8c,0x46,0x95,0x6b,0xac,0x71,0x96,0x64,0x01,0x7e,0xc4,0x7a, +0xc4,0x24,0x54,0xa8,0xc0,0x07,0x6c,0xcb,0xa9,0xa6,0xd3,0x35, +0xa7,0xd3,0xc2,0xd3,0xc2,0x52,0xc2,0x9a,0x6a,0x78,0xdd,0x6b, +0x9b,0xee,0x6e,0xef,0xb5,0x73,0xe7,0x6b,0x3d,0xeb,0x9d,0x6a, +0x1d,0x17,0x47,0xe3,0x87,0xb1,0x38,0xf6,0x50,0x43,0x7f,0xd5, +0xf9,0xe2,0x41,0xc3,0x2c,0xde,0x6b,0xb7,0x9d,0xba,0xa9,0x06, +0x77,0xcc,0xc7,0xf7,0x2b,0xff,0xa9,0xa7,0x0c,0x5b,0x8f,0xf7, +0x9f,0x38,0x7f,0x52,0x31,0x66,0xad,0xb9,0x21,0x4e,0x30,0xe7, +0x0e,0xe3,0x36,0xe2,0x16,0xe6,0x1a,0xe6,0xb2,0x8f,0x83,0x47, +0x30,0xaa,0x17,0x47,0x41,0xb6,0x1e,0x66,0xcf,0x34,0xfc,0x15, +0xdf,0xb1,0xce,0xfb,0x9c,0xf6,0x3b,0x44,0x64,0x1a,0xf0,0xef, +0xaa,0x9e,0x55,0x3d,0x69,0xe0,0x64,0x93,0xa8,0x47,0x9a,0x2e, +0x5d,0x5e,0xb1,0xb9,0xfe,0x5e,0x77,0xef,0x85,0xb3,0xb7,0xb9, +0x46,0xbc,0xcf,0xe6,0x14,0x67,0x96,0xa6,0x95,0x19,0xa4,0xf1, +0x8e,0xeb,0x77,0x6f,0x5e,0xa0,0x55,0x6a,0xc9,0xe7,0xa7,0xe5, +0xa5,0xe7,0x64,0x9e,0xb5,0x6a,0x71,0xe8,0x71,0x5e,0xef,0x30, +0xcf,0x0d,0x27,0xfb,0x66,0x19,0xf3,0x30,0xa3,0x14,0xc6,0xd6, +0xbf,0x68,0x7f,0x6c,0xf9,0xa3,0x03,0x4c,0xf4,0xe0,0x44,0x5b, +0xb8,0x4d,0x32,0x33,0x25,0xd0,0xc6,0xb8,0x1a,0x99,0x99,0xab, +0xdb,0xe8,0xd6,0x9a,0x35,0xda,0xc8,0xef,0x04,0xf5,0x15,0x68, +0x21,0x8d,0xeb,0xc3,0x71,0x20,0xd5,0xa5,0x41,0x1f,0x65,0x00, +0xa3,0x70,0x98,0x71,0xdc,0xe7,0xb0,0xdf,0x7e,0x24,0xe8,0x63, +0xaa,0x5f,0x55,0x3e,0x6b,0x8c,0xee,0xe7,0x5d,0x43,0x9d,0xc3, +0x9d,0xc2,0x39,0x41,0x2a,0xcc,0x22,0xa1,0xc9,0xa1,0xc9,0x21, +0x49,0x0f,0xce,0x3e,0x1a,0x6a,0xef,0xe2,0x1a,0xc5,0x2c,0x23, +0x41,0x9d,0xb5,0x73,0xd6,0x73,0xda,0xea,0x6a,0x21,0x35,0x2d, +0xb4,0xc8,0xf3,0xb4,0xe7,0xaf,0x78,0x5f,0x76,0x1d,0x74,0xe5, +0xb0,0x68,0xf8,0x93,0x41,0x38,0x02,0xea,0xb8,0x6f,0x00,0xf6, +0x81,0x11,0xee,0x44,0x05,0x26,0xc3,0x48,0xf2,0x33,0xd3,0x9c, +0x21,0xbf,0xec,0xe3,0x3c,0x8b,0x17,0x70,0x03,0x41,0x75,0x60, +0x41,0x9d,0x19,0x40,0x96,0x80,0xfc,0x2f,0xf7,0x2c,0x2b,0x6e, +0xa2,0x09,0xa5,0x8e,0x93,0x50,0x9d,0x81,0x48,0xf9,0xc5,0x25, +0x46,0xf4,0xd8,0x88,0x1a,0x8b,0x30,0xe1,0x28,0xf9,0xb9,0x7f, +0xf6,0xfb,0x1c,0xe1,0xf4,0x81,0xa3,0x70,0xed,0xf7,0xd9,0x46, +0xbc,0xcf,0x91,0xc9,0x35,0x3f,0x55,0xff,0xdc,0x4c,0xe1,0x5a, +0x05,0x5b,0xee,0xb5,0xd8,0xcb,0x41,0x8f,0x4c,0x95,0xd8,0x2c, +0xdd,0x34,0x6f,0x95,0x76,0xb5,0x25,0xff,0xfa,0xc6,0x13,0x90, +0xd4,0x3f,0xe7,0x84,0x71,0x18,0x48,0x8c,0xee,0x2c,0xfb,0x7d, +0xd7,0x65,0x5b,0x77,0xfe,0xd2,0xf6,0xa7,0x33,0xfa,0xd7,0x53, +0xe1,0x03,0x8e,0x38,0xe0,0x68,0xd5,0xe9,0x38,0x77,0x51,0x99, +0x09,0x0f,0x8b,0x7e,0x7b,0xfd,0xba,0x04,0x3e,0xa6,0x0d,0x77, +0x31,0x7e,0xf8,0x6c,0x05,0xac,0x45,0xa6,0xb4,0x8b,0xc7,0x79, +0x6f,0x96,0xfd,0x6c,0x07,0xa3,0x38,0xd4,0x1f,0xde,0x43,0x7a, +0xe0,0x86,0xd1,0x90,0xb0,0x48,0xd4,0x16,0x17,0xb1,0xc2,0x47, +0xf0,0x0b,0xc1,0x18,0xbc,0x01,0x31,0xd4,0x61,0xdd,0x01,0x3f, +0x22,0x8f,0x99,0x73,0xb8,0xbc,0xbc,0xc6,0xf6,0xe1,0x58,0x28, +0xd0,0xc1,0x82,0x69,0x06,0xbf,0xe3,0x1f,0xac,0xd3,0xbf,0xc5, +0xf7,0x25,0x8d,0x2f,0x27,0xb8,0xc3,0x64,0xd2,0xdd,0xdc,0x73, +0xa1,0xba,0xc7,0xba,0x9c,0xf7,0x30,0xb7,0x33,0xb5,0x73,0x0a, +0xba,0x15,0x71,0xef,0xd0,0x6d,0x0e,0x66,0x96,0x0f,0x80,0x9e, +0xf8,0x0e,0xf5,0xfa,0x3d,0x60,0x0b,0x63,0xa9,0x33,0x5f,0x6f, +0x8e,0x5b,0xbe,0x29,0x3f,0x94,0x77,0xa9,0xa2,0xef,0x6c,0x5a, +0x50,0x5a,0x50,0x4a,0xa0,0xef,0x1e,0x77,0x5f,0x27,0xbf,0x88, +0xdc,0x88,0xac,0xa8,0x74,0x3b,0x5f,0x3e,0x29,0x3c,0x65,0x6f, +0x4a,0x90,0x57,0xa8,0x47,0x98,0x47,0x44,0xa1,0x29,0x5f,0x91, +0x56,0x9e,0x59,0x9a,0x95,0xb6,0x27,0xcd,0x27,0xd5,0x47,0xc7, +0x46,0xc3,0x59,0x67,0x4f,0x91,0x09,0x3f,0x54,0x74,0xb1,0x76, +0xb0,0x31,0x3e,0x34,0x2e,0x34,0x2e,0xac,0xa1,0x84,0x3f,0x90, +0x19,0x9b,0x15,0x93,0x55,0x9c,0x5f,0x94,0x9f,0x57,0xc0,0xc5, +0xb9,0x9f,0xf2,0xf0,0x54,0x5a,0x1e,0xe6,0xbb,0x4b,0x79,0x0d, +0x93,0x66,0x28,0xb9,0xcb,0xbc,0x68,0xec,0x02,0x06,0x3e,0x32, +0x00,0xd5,0x35,0x20,0x51,0x29,0xcc,0xcb,0x2b,0xc8,0x2c,0xe0, +0x9a,0x98,0x74,0xb4,0xba,0x81,0x07,0x61,0x1e,0xce,0x6c,0x6c, +0xe6,0xb7,0x5e,0x31,0x79,0xe1,0xfa,0x03,0xf7,0x18,0x5e,0x11, +0x31,0x02,0xc6,0x0a,0x11,0x54,0x24,0xc4,0x66,0x12,0x51,0xb4, +0x5f,0xba,0x4f,0x7e,0xa3,0x5c,0x91,0xb4,0x30,0xd9,0x3f,0xd1, +0x2f,0xc1,0xdf,0xcf,0xc7,0xdb,0xd7,0xd3,0x8f,0x26,0x9f,0xa7, +0x70,0xe8,0xcf,0xe4,0x2b,0xd3,0xc5,0x32,0x1a,0x1a,0x71,0x1c, +0x23,0x2f,0x83,0xf7,0xa1,0x61,0x6a,0xbe,0xa9,0x7c,0xd5,0x14, +0xdd,0xc7,0x3b,0xee,0x75,0x08,0xb5,0x0f,0xe3,0x64,0x87,0x84, +0x03,0x64,0x47,0x83,0x46,0xaf,0xe9,0x39,0x0e,0x53,0x0c,0xa9, +0xa8,0x96,0x3a,0x55,0xbb,0xd5,0x7b,0x71,0xa2,0x29,0x53,0x2d, +0x2d,0x2b,0x2b,0xad,0xb6,0xad,0xe1,0xad,0x8d,0x4c,0x6c,0xb4, +0x9c,0x2a,0x6c,0xf8,0xa4,0x33,0x49,0x71,0x89,0x71,0x1c,0xe6, +0x0b,0xf9,0x50,0xc4,0x96,0x07,0x4b,0x68,0x3f,0x60,0x4b,0xc0, +0x92,0x26,0x95,0x25,0xdb,0x35,0x85,0x1e,0xe8,0xd0,0x83,0xad, +0xb0,0x9d,0x84,0xd8,0x79,0x3b,0xb8,0xbb,0xd4,0xfa,0xf0,0xe5, +0xb5,0xe5,0x4d,0x39,0x8d,0x1c,0xee,0x5b,0x40,0x02,0xab,0x3d, +0x9a,0xdc,0xaa,0x5c,0xbc,0xf8,0x2a,0x57,0xa9,0x53,0x91,0x23, +0xb7,0x4c,0x8c,0x23,0xcd,0x82,0xc4,0xba,0x1f,0xfe,0x29,0x86, +0xe2,0x3f,0x59,0x61,0x13,0x5c,0x24,0x1b,0x44,0xc9,0x7d,0x56, +0x90,0xd0,0x66,0x6a,0xa5,0x28,0x79,0xca,0x2a,0x08,0x73,0x84, +0xc3,0x44,0xcd,0xe8,0x1e,0x9a,0x6c,0x33,0x16,0xa0,0x5b,0x0f, +0x4c,0x6e,0xf5,0x6c,0x01,0xcd,0xfe,0x6e,0x71,0x0f,0x93,0x51, +0x98,0x26,0x4d,0x91,0x9a,0xe6,0xf2,0xee,0x6a,0xc6,0xea,0xbb, +0x0c,0xcb,0x68,0xe5,0x66,0xe5,0xe5,0xe6,0x14,0x70,0x33,0xc5, +0x0d,0xc4,0x2b,0xcc,0x33,0xdc,0x83,0xb2,0xc2,0xe3,0x57,0xbd, +0x4b,0x47,0x38,0x61,0xa9,0xe1,0x2b,0x4a,0xc1,0xee,0xfb,0xdd, +0x22,0x5c,0x23,0x32,0x0c,0xf8,0x1f,0xab,0xef,0x57,0xde,0x39, +0xcb,0x41,0xa4,0x10,0x47,0x50,0x73,0x35,0x68,0xb2,0xa0,0x3c, +0xe5,0x6b,0xd4,0x5c,0xc5,0x80,0xca,0x14,0xd0,0x7c,0x8e,0x9a, +0x2c,0x56,0x18,0x11,0x34,0x59,0x0d,0x26,0x2c,0x04,0xa0,0x09, +0x59,0x05,0x26,0x5f,0x33,0xf2,0xab,0xe7,0xc0,0xe4,0x39,0xd5, +0x48,0xd1,0x1f,0xaf,0x92,0xd6,0x73,0x15,0x8f,0xb2,0x2e,0x1b, +0xa5,0xf1,0x21,0x3a,0xee,0x5b,0xad,0x0d,0x38,0xa1,0x08,0xd4, +0x49,0xa9,0x56,0xf1,0xa6,0x9c,0xed,0x7d,0x69,0x7c,0xf0,0x35, +0xef,0x7b,0x9e,0x83,0x1c,0xda,0xed,0x21,0x79,0xba,0xe9,0x1a, +0x29,0xea,0x03,0x29,0xfc,0xbe,0x1b,0x61,0x97,0x03,0xfa,0x38, +0xb4,0x8f,0x20,0x71,0xfa,0xf1,0x2b,0x4f,0xe8,0x9c,0x4f,0xe0, +0x0f,0x5f,0x88,0x7d,0x12,0xd5,0xc3,0x29,0x3c,0x84,0x87,0x04, +0xcc,0xfb,0x60,0xdc,0xbd,0x34,0x50,0xec,0x3b,0xd9,0x7f,0xaa, +0xf7,0x14,0x87,0x63,0xd8,0x75,0x05,0xc1,0x0f,0x95,0x61,0x37, +0xd3,0x9a,0x9b,0xdd,0xaa,0xd2,0xc6,0xea,0xa5,0x4b,0x36,0xe2, +0x4e,0xd6,0x32,0xf6,0x4c,0xa3,0x0a,0x8c,0x65,0xbb,0x4e,0x77, +0x9c,0x69,0x3b,0x53,0xe8,0x5f,0xe8,0x97,0xe7,0xdf,0x54,0xcf, +0xef,0xbe,0xb6,0xe4,0xfe,0xea,0x01,0x3b,0x67,0xbe,0xda,0xaf, +0xc6,0xbb,0xda,0x13,0xa7,0x46,0xe0,0x9c,0x58,0x5c,0x71,0xa8, +0xa3,0xab,0x65,0xa8,0x76,0x50,0x27,0x9b,0x77,0xd2,0x37,0x56, +0xdf,0xbe,0x13,0x95,0x8f,0xf0,0x71,0xba,0x4f,0x4e,0x3c,0x3b, +0xf9,0xfc,0x94,0xe2,0xfe,0xf9,0xcb,0xf5,0x51,0xcb,0x9c,0xfb, +0x63,0x8a,0x38,0x8d,0xe0,0x17,0x39,0x38,0x49,0x3a,0xab,0xee, +0x55,0xc7,0xf5,0x73,0x2d,0xd7,0xb8,0x76,0x71,0x36,0x5b,0x58, +0x9c,0x57,0x92,0x55,0xa6,0x97,0xc5,0x6f,0x9f,0x31,0x7b,0x25, +0xaa,0x6e,0xa3,0x95,0x3c,0x50,0xd4,0x5b,0xd6,0x5e,0xd5,0x6e, +0xd1,0xeb,0x70,0xde,0x7d,0x96,0x23,0x12,0x6f,0x5c,0x1e,0x96, +0x41,0x1d,0xf5,0xe6,0x2c,0x58,0x58,0x0b,0x1f,0xf6,0xc2,0x04, +0x13,0x98,0xe6,0x06,0xab,0xf6,0x70,0xa2,0x40,0x15,0x2b,0xee, +0x74,0xdc,0x99,0x33,0x67,0x38,0x61,0x02,0x63,0x61,0xb4,0xdb, +0x7c,0xa5,0xfd,0x96,0xca,0xdd,0x0d,0x46,0xd4,0x25,0xff,0xb1, +0x5d,0xb6,0x9b,0x74,0x8b,0x8e,0x6c,0x56,0x71,0x46,0x69,0xaa, +0xfc,0x53,0xf4,0x50,0xe7,0x10,0xb7,0x20,0x2f,0x0e,0x65,0xc6, +0x70,0x81,0xd9,0xb1,0x63,0xa1,0x29,0xaa,0x5a,0xe5,0xcb,0xaf, +0x76,0xed,0x82,0xf1,0x37,0x1e,0x7c,0xcf,0xfd,0xce,0x7c,0xbd, +0x14,0x3e,0xd8,0x05,0x3b,0x0c,0xf2,0xa9,0xbd,0x5b,0xd0,0x32, +0xaf,0x4d,0xed,0x32,0xf7,0x12,0x3f,0x23,0xb4,0xb1,0xc8,0xce, +0xca,0xcc,0x4c,0xc9,0xb2,0x2c,0xe2,0x37,0x2e,0x47,0xe5,0x35, +0xb8,0xc5,0x36,0x9f,0xd2,0x36,0x5b,0xfa,0xae,0xe3,0x41,0x2f, +0x07,0x86,0x8c,0x8d,0x89,0x81,0xd5,0x66,0x7b,0xcf,0x52,0x8f, +0x42,0xdf,0x6c,0x3b,0x0f,0xbe,0x24,0xa8,0x30,0xa8,0xc8,0x6f, +0x85,0x03,0x8e,0xf2,0xc0,0xcf,0xfd,0x73,0xe9,0xaf,0xde,0x18, +0x84,0x1d,0xef,0x68,0x6b,0xb6,0x86,0x0b,0x41,0x05,0x32,0x77, +0x26,0xae,0x58,0x8c,0x7b,0xad,0xf3,0x68,0xdd,0x2c,0xaa,0x80, +0xcf,0x07,0x7e,0xba,0xc6,0x81,0x1b,0x63,0xa6,0xbb,0xdd,0x64, +0xa9,0x8d,0xab,0xd4,0xbd,0xd0,0x23,0xc7,0xc6,0x95,0x2f,0x09, +0x2e,0x09,0x2a,0x0e,0xc4,0xb1,0xd6,0xa8,0xec,0x86,0x1b,0x82, +0x72,0x0c,0x79,0xd0,0xcc,0x87,0x39,0xd5,0x30,0xb1,0xa7,0xc6, +0xa3,0xca,0xbd,0xd2,0xb5,0xa5,0x8a,0xf7,0x28,0xf7,0x28,0x73, +0x2f,0x79,0xdb,0xfd,0xe0,0xea,0xa5,0xaf,0xb9,0x06,0x0c,0x63, +0x73,0xb3,0xb2,0xb2,0xd2,0xb3,0xe8,0xf2,0x75,0x85,0x18,0x82, +0xf3,0xbb,0xe7,0xf6,0x6e,0xbc,0xcf,0xc1,0x95,0x1e,0xd1,0x85, +0xc9,0x28,0x49,0x2b,0x4b,0xa9,0xa0,0x81,0x08,0x73,0x0a,0x73, +0x0d,0xf1,0xe4,0xf0,0x37,0x23,0xb8,0xc8,0xec,0x5a,0xbf,0x40, +0x0f,0x57,0x1a,0x53,0x8e,0xc9,0x89,0xcb,0x8e,0xcb,0x8a,0xe7, +0xc4,0x1d,0x03,0x43,0x70,0x5c,0x58,0x86,0x3e,0xec,0x0f,0xed, +0x37,0x86,0xba,0x6e,0x72,0x30,0x96,0xe9,0xdf,0x7e,0x4b,0xff, +0x47,0x73,0x0e,0x33,0x71,0x0d,0x83,0x6b,0x62,0xa7,0x2f,0x98, +0xa1,0xdc,0x64,0xdb,0x7b,0xae,0xf4,0x52,0xc6,0x3d,0x45,0x38, +0x8d,0xd3,0xa9,0x49,0xcd,0x32,0x96,0x7f,0xd8,0xd0,0x9e,0x9d, +0xd5,0xa6,0x22,0x38,0xb0,0x19,0x07,0x32,0x0f,0x64,0x1d,0xe0, +0x90,0x9d,0x47,0x30,0x0a,0x46,0x43,0x14,0x33,0x3c,0x8e,0x86, +0x92,0x86,0xc0,0x40,0x7e,0xf9,0xaf,0x01,0x4e,0x27,0xa7,0x2a, +0x4e,0x56,0x1f,0xaf,0xe3,0x20,0x0a,0xc7,0xd2,0x93,0x2f,0xe4, +0x2e,0x81,0x50,0x97,0xa0,0xf0,0x87,0x85,0xd0,0x43,0x70,0x49, +0xfd,0x9c,0x46,0xb5,0x01,0x0e,0x6e,0x75,0x89,0x9e,0x4c,0x66, +0x51,0x86,0x34,0xb5,0x44,0x2f,0x89,0xdf,0xeb,0x1a,0xe2,0x15, +0xe8,0xc3,0x89,0xa3,0x4d,0xe0,0x2a,0xa3,0xae,0x35,0xdf,0x0a, +0x57,0x38,0xe4,0x99,0xf1,0xa5,0xf1,0xc5,0xf1,0x45,0x09,0x1c, +0x7e,0xca,0xa2,0x7d,0x10,0x7e,0xb0,0x1b,0xc7,0x28,0x77,0x3a, +0x4a,0x6e,0xc3,0xc7,0xd9,0xa0,0x02,0x6e,0x4a,0xb4,0x49,0x78, +0x2d,0xb6,0xa3,0x2a,0x9b,0x46,0x31,0xce,0x60,0x1a,0x32,0x47, +0x9e,0x27,0xc8,0x16,0xc6,0x48,0x63,0x4a,0x62,0xb9,0xe1,0xcf, +0x9e,0x91,0xde,0xb2,0xa6,0xaa,0x9a,0x7a,0x0e,0xc6,0x31,0x0d, +0xf6,0x1d,0x6e,0x17,0x3c,0x39,0xd1,0x0d,0xbb,0x09,0xec,0xd1, +0x1b,0x1c,0x80,0xe0,0x36,0x0c,0xbe,0x0a,0x8e,0x6d,0xe8,0xd8, +0xa7,0x6b,0x80,0x66,0x16,0x60,0xb6,0x03,0xf7,0x30,0x1d,0x38, +0x95,0xe0,0xf1,0xc1,0x2e,0xf8,0x11,0x4c,0x59,0x7c,0x83,0x73, +0xc9,0x1b,0xa8,0x9b,0x47,0x7b,0x05,0x73,0x41,0x8d,0xe0,0xe2, +0x1a,0x1c,0xd7,0xa1,0x7e,0x4d,0xfe,0xe9,0xa8,0x18,0xc4,0xe4, +0x56,0x66,0x54,0xa7,0xd4,0x70,0xc2,0xa4,0xee,0xe1,0x5a,0x63, +0x90,0x31,0xfb,0x9c,0x42,0x5c,0xfc,0xdd,0x39,0xfc,0xd9,0x04, +0x7a,0x18,0x0d,0xcd,0xf9,0x26,0xb8,0xc0,0x29,0xdb,0x98,0x2f, +0x8c,0x2b,0x88,0xcf,0xa3,0x1b,0x30,0xab,0x7f,0x00,0x4e,0x08, +0x9f,0xa0,0x1d,0xfb,0xf4,0xec,0x85,0xb6,0xe6,0x6e,0x0e,0x3e, +0x62,0x9a,0x8d,0x06,0x6c,0xef,0x39,0x73,0xe8,0x83,0x1b,0x19, +0xe4,0x23,0x96,0x2c,0x5e,0xae,0xdc,0x6a,0xdb,0xd7,0x57,0x32, +0x94,0x7e,0x59,0xbe,0x01,0x0a,0xb8,0x82,0xc9,0x32,0x93,0xd0, +0x56,0xb4,0x31,0x23,0xbd,0x5e,0x45,0x98,0xc7,0xe6,0x1e,0xc8, +0x3d,0x98,0x4f,0x37,0xe0,0xd3,0x6d,0x04,0xa3,0xbf,0xa1,0xf4, +0x3b,0xcc,0xe0,0x78,0x42,0x77,0xc2,0x10,0x47,0xcb,0x45,0xfb, +0x03,0x72,0xb2,0xf8,0x44,0xe9,0xf1,0x32,0xda,0xf9,0x7c,0x49, +0xcf,0x5d,0x26,0xf4,0x04,0x8b,0x86,0xd4,0x6a,0x2e,0x90,0xa9, +0x10,0xdc,0xc1,0xa4,0x5e,0x4a,0x3e,0x97,0xd0,0xa7,0x7d,0x86, +0x8f,0x35,0x8c,0xd4,0xd8,0xb7,0x83,0xc3,0x0f,0x75,0x61,0x0c, +0x13,0x30,0xd3,0x7b,0x86,0xc7,0xda,0x1e,0x97,0x2e,0x97,0x2e, +0x07,0x6b,0x35,0x9d,0xed,0xeb,0x77,0xd5,0x98,0xf2,0x8f,0xae, +0x5d,0xbc,0xd5,0xfe,0xa4,0xd1,0xad,0xc9,0xa9,0xc9,0xb6,0xba, +0x83,0xb7,0x68,0xb6,0xae,0xb3,0xae,0xee,0x01,0x49,0x19,0x7c, +0x96,0x0a,0xab,0x38,0xe1,0x7f,0xd0,0xf5,0x1e,0xd0,0x51,0x1c, +0x4d,0xd7,0x30,0x69,0x67,0x06,0x1b,0xb0,0x01,0x37,0x1e,0x09, +0x23,0x91,0x73,0xce,0x39,0x08,0x44,0x52,0xdc,0x55,0xce,0x28, +0x0b,0x65,0x32,0x08,0xa1,0x88,0xc8,0xa0,0x9c,0x73,0xce,0x39, +0xe7,0x1c,0x40,0xe4,0x64,0xa2,0x31,0x60,0x6c,0x63,0x30,0x26, +0xd7,0xac,0x6b,0xd6,0xef,0xdf,0x2b,0xfc,0x3c,0xef,0x7f,0xce, +0xf7,0x7d,0x70,0xce,0x6a,0x58,0x76,0x47,0xdd,0xd5,0x55,0xb7, +0xee,0xed,0xe9,0xae,0x1e,0x4a,0x7d,0xfe,0x68,0xd2,0xe1,0x94, +0x43,0x29,0xb7,0x3b,0x6e,0xdf,0xaf,0x7b,0xc4,0x35,0x8a,0xbb, +0xa5,0x82,0x1a,0x6b,0xaf,0x2f,0xd5,0xd7,0xb5,0xb4,0xae,0xb4, +0xac,0xb0,0xcd,0x77,0xb1,0xe3,0xbb,0x6d,0x6f,0x6b,0xf7,0xc8, +0x38,0x4c,0x97,0x82,0x87,0xb8,0x01,0xd7,0xfd,0xbb,0x7a,0xa5, +0x31,0x45,0xe9,0x52,0xcb,0x41,0xc6,0xee,0xd3,0xb2,0xdd,0x6c, +0x65,0xd8,0xec,0xc1,0xb7,0x5d,0x6b,0x7c,0x92,0xf9,0x80,0x6b, +0x64,0x15,0x3d,0xb8,0x9c,0xe4,0x3c,0xca,0xfa,0x2d,0xed,0x25, +0x47,0x79,0xa1,0x3f,0xf2,0xde,0xc8,0x9a,0x4f,0x75,0xc8,0x77, +0xcc,0x71,0xcc,0xa6,0x39,0xab,0x09,0x1c,0x48,0x3b,0x30,0x05, +0xc0,0xc7,0xd1,0x86,0xd4,0xe0,0x5a,0x36,0xae,0x3f,0xa6,0x2f, +0xb2,0x83,0x76,0xeb,0xb8,0x51,0x80,0xd6,0x31,0x2a,0x82,0x87, +0xeb,0x7f,0x64,0xf6,0x4f,0xf1,0x9c,0xe4,0xbe,0xba,0xcd,0xb1, +0xd9,0xb1,0xd1,0x6e,0xd7,0x46,0xe9,0xd6,0x0d,0x5a,0x15,0x26, +0xfc,0xbd,0x6b,0xbd,0x37,0x1b,0x1e,0xe5,0x7b,0xe7,0x7b,0xe6, +0xb9,0x97,0x35,0xf3,0x6e,0x45,0x6e,0x05,0x6e,0x79,0x9c,0xfc, +0x3b,0xb0,0x24,0x5d,0x78,0x0c,0x36,0xc2,0xb9,0x2e,0x3c,0x07, +0x93,0x74,0xa8,0xf7,0xbb,0xcb,0xc0,0x1d,0x37,0xa2,0x8b,0x0c, +0x4c,0xa9,0xfa,0x1b,0xbb,0x02,0x87,0xe3,0x37,0x53,0xca,0x4c, +0x79,0xf8,0x16,0x86,0xde,0xfa,0x98,0x04,0xdf,0x50,0xed,0xb7, +0xb6,0x57,0x58,0x1b,0xc1,0x24,0xe3,0xb7,0x37,0xa7,0x01,0x41, +0x49,0x69,0x0b,0x8f,0x63,0x3e,0xaf,0x00,0xc6,0x95,0x2a,0x43, +0xf1,0xee,0x06,0x92,0xf3,0x38,0xe3,0xb7,0x74,0xda,0x8b,0x91, +0xca,0x5e,0xec,0xa5,0xbd,0x98,0xe2,0x92,0xef,0x92,0xe3,0x44, +0x7b,0x21,0xf7,0x12,0x64,0xe4,0x09,0xfb,0xf3,0xb5,0x5b,0x3f, +0x17,0x5d,0xe5,0x9a,0x44,0x2d,0x7d,0xf8,0x1f,0xd6,0xd5,0x44, +0xb6,0x7d,0x99,0x36,0x87,0xc3,0x70,0xaf,0x1e,0xec,0x15,0x47, +0xe3,0x7c,0x56,0xb9,0x32,0x80,0x28,0x57,0x06,0x50,0x73,0x71, +0x70,0x94,0x92,0xf5,0x92,0x04,0xe2,0x1c,0xb0,0xcb,0xdf,0xc2, +0x9f,0x83,0xaf,0xd8,0x2b,0x7d,0x1d,0xf7,0xf3,0xaf,0x73,0xf5, +0xe2,0x48,0x29,0x74,0xb1,0x6e,0x7a,0x96,0x7a,0xba,0xc6,0x1c, +0xfd,0x9a,0xae,0xdf,0x76,0xff,0x6d,0x41,0x31,0x3b,0xf9,0xcb, +0x31,0x97,0x62,0xbb,0xa8,0x8c,0x7d,0x87,0xd3,0xd8,0x44,0x5d, +0x09,0x70,0x4c,0x57,0x72,0x52,0x97,0x3a,0xbc,0x67,0x5b,0x62, +0xeb,0xe2,0xca,0x62,0x69,0x4b,0xfe,0x96,0xaf,0x27,0x38,0xbb, +0x17,0x6c,0xc5,0xd9,0xaf,0xb5,0x66,0x8b,0xaa,0x68,0xdb,0x0b, +0xb3,0x59,0xf9,0x78,0x63,0xea,0xf2,0x6e,0xa8,0x1f,0x8c,0x3a, +0x67,0xbc,0xd7,0x98,0xae,0xd9,0xa8,0x5d,0x6b,0xcb,0x5f,0xef, +0x6b,0xbd,0x5b,0x70,0x17,0xd6,0x9f,0x03,0x59,0x0c,0xcc,0x2c, +0xe2,0x5e,0xe1,0x1e,0x62,0xdb,0xa7,0x7d,0x53,0xbf,0x6d,0x97, +0x1b,0xdf,0x63,0x78,0x49,0xa3,0x52,0x8f,0x7b,0x3c,0x8b,0x74, +0x8a,0x0b,0x9f,0xb2,0xad,0x59,0x87,0xea,0x3c,0x5a,0x3d,0xca, +0x55,0x4c,0xf7,0xe5,0x38,0xe7,0x9b,0xa7,0x5a,0xa9,0xe8,0x2d, +0x14,0xd5,0x0d,0xe0,0x1f,0xc6,0x70,0x0d,0x0e,0xd1,0x43,0xb7, +0x1d,0x59,0x54,0x4a,0x87,0x3c,0xfa,0xab,0xa3,0x92,0x92,0xb9, +0x08,0x2c,0xbe,0x08,0xc5,0xe1,0x4c,0x25,0x25,0xe5,0x8c,0x21, +0x9c,0x5e,0x9d,0xd9,0xc9,0xa3,0xf7,0x55,0xfc,0xaa,0x57,0xfa, +0x70,0xa0,0x91,0x86,0x64,0x16,0x6d,0x97,0x38,0xe7,0x99,0xce, +0x52,0x71,0x3c,0xae,0xe8,0xa5,0xc9,0x0c,0x1a,0x6c,0x49,0xbb, +0x47,0x9b,0x7b,0x93,0x63,0x61,0x2d,0x6f,0x55,0xa2,0x5f,0x62, +0x9a,0xcd,0xe1,0x5e,0x4b,0x62,0xa9,0xad,0x67,0xbe,0xd5,0xa9, +0x74,0x17,0x7f,0xb3,0xea,0x4a,0x7b,0xdd,0x25,0x2e,0x53,0x93, +0xc8,0x72,0x8e,0xf4,0xab,0x41,0x3d,0x53,0x9a,0x94,0x54,0xa4, +0x7e,0x51,0x39,0x09,0xb0,0x1a,0xb3,0x58,0xa7,0xc0,0x88,0x62, +0xf5,0x67,0x7a,0xac,0xb0,0x66,0x17,0xb9,0x62,0x7d,0xd1,0xac, +0xd3,0xb0,0xbc,0x8a,0x37,0x68,0xd3,0x6e,0xd9,0x5e,0xcf,0x89, +0x7d,0x0a,0x37,0x02,0x1b,0x20,0x15,0x17,0xf6,0xc2,0x42,0xa0, +0xed,0x42,0x4d,0x36,0xd1,0x44,0x02,0x0b,0xa8,0xba,0x4d,0xac, +0x51,0x17,0xd6,0x28,0x0e,0x8a,0x81,0x2c,0x15,0x12,0x02,0xc1, +0xd4,0xa7,0x90,0xca,0xf4,0x2e,0x23,0x4f,0xa1,0x72,0x19,0x2b, +0xfe,0x6d,0x4e,0x20,0x75,0x29,0xa6,0x32,0xf0,0xf0,0x19,0x81, +0xca,0xa5,0x58,0x49,0xe5,0xfe,0x3f,0x72,0x4f,0xb2,0xa8,0x13, +0x26,0x88,0x73,0x2f,0xeb,0xed,0x14,0x7f,0xc0,0x09,0x9d,0x2f, +0xd8,0x9f,0x71,0x3a,0x31,0x48,0x3f,0x72,0x53,0x4d,0x38,0xcf, +0x54,0x25,0x25,0x14,0xaa,0x57,0xb0,0x06,0xf1,0x12,0x43,0xf1, +0x0c,0xeb,0x1e,0x14,0x9e,0xaf,0x1e,0xc7,0x82,0x34,0x0c,0x4c, +0xa3,0x61,0x72,0xe6,0xd1,0x5a,0x1e,0xc7,0xef,0x47,0x13,0x7f, +0xdc,0x71,0x92,0x6b,0x95,0xd2,0xe1,0x11,0x9b,0x08,0x5c,0x13, +0x6f,0xe0,0x35,0x16,0x37,0xcf,0x21,0xf2,0xdb,0x0d,0x8a,0x68, +0x78,0xa6,0xcd,0xc8,0xb7,0xe8,0x51,0x8d,0xd8,0x20,0x98,0x31, +0xa2,0xd9,0x12,0x22,0x98,0x99,0x8b,0x66,0x8c,0xdd,0x30,0xc1, +0xcc,0x94,0xfe,0xc4,0x6c,0x2c,0xa0,0x0a,0x2c,0x19,0x06,0x17, +0xde,0x2b,0x72,0xaf,0xe5,0xd7,0x7a,0xcc,0xf0,0xc6,0xef,0x8f, +0x70,0x42,0x43,0x0e,0xf9,0x70,0x18,0x38,0xcf,0xb7,0xee,0xd9, +0xad,0xfc,0xcc,0x5c,0x1c,0x91,0x33,0x59,0x59,0x29,0xe9,0xb1, +0xf0,0x98,0x98,0x76,0xb7,0x80,0xb3,0xf2,0xc5,0xad,0xb2,0x1b, +0xd4,0xc4,0xd9,0x77,0x75,0x36,0x52,0x17,0x99,0xd6,0xed,0xca, +0xca,0x0f,0x35,0x13,0x74,0xe9,0x90,0x1a,0xa2,0xb3,0xf2,0xc5, +0xec,0x9e,0x7c,0x3f,0x93,0xa8,0x70,0x20,0x18,0xcc,0xb8,0x07, +0x46,0xe5,0x50,0xb6,0x01,0x7b,0x84,0xa1,0x8a,0x1f,0xa8,0xfe, +0xdd,0xce,0x1e,0x5c,0xb3,0xd6,0x14,0xed,0x3c,0x52,0xf5,0x78, +0xf0,0x29,0xf9,0xf3,0x76,0x1a,0x48,0x38,0x18,0x85,0x23,0x19, +0xe3,0xcc,0xbd,0xbd,0x6a,0x10,0x45,0xd5,0x5f,0x4a,0xb9,0xfa, +0x73,0x56,0x1a,0x2f,0xc1,0x91,0xd0,0x41,0xc4,0xb4,0x2e,0x21, +0x8d,0x11,0xd3,0x28,0x12,0xf4,0x08,0x69,0xfa,0xac,0xd5,0x30, +0x6d,0x31,0xed,0x12,0x2b,0x3c,0xa6,0x0c,0x72,0x77,0x81,0x5d, +0x81,0x4b,0x9a,0x93,0x23,0x5f,0xb5,0xb7,0xd4,0xb3,0xd0,0x8b, +0x3a,0x47,0x9d,0x10,0x4a,0x0a,0xb2,0x0a,0x4b,0x33,0x8b,0xcd, +0x8b,0xf8,0x7d,0x2e,0x1e,0xae,0xbb,0xbd,0xa5,0xd5,0x96,0x8d, +0x8e,0x34,0x8f,0xff,0xd4,0x29,0xda,0x30,0x71,0xf9,0x31,0xf9, +0x91,0x85,0xd2,0x68,0x3e,0xd0,0xd9,0x8f,0x32,0x72,0x4a,0x17, +0x0c,0xe0,0x1e,0xe3,0x6a,0x6e,0x6b,0x6d,0x64,0xeb,0x51,0xe2, +0x9e,0xef,0x95,0xa1,0x4c,0xcd,0x7b,0x73,0x3d,0x72,0xdd,0xcc, +0xdd,0x0c,0x3c,0x76,0x78,0xe5,0x9b,0xf0,0xcd,0x19,0x75,0x99, +0x55,0x99,0x1c,0x9e,0x81,0x1c,0xb4,0x55,0xa6,0x19,0x03,0x09, +0x4c,0x62,0x1a,0x92,0x53,0xea,0xd4,0xc1,0x0c,0xe2,0xe1,0x0c, +0x5b,0xbd,0xb7,0x6e,0x5f,0xf3,0x81,0xbc,0x36,0x5e,0x2f,0xcb, +0x28,0xc7,0x32,0x8f,0xc3,0x58,0xd8,0x46,0xf2,0x4d,0x2b,0x2c, +0x9a,0x6c,0x38,0x7c,0xc4,0x34,0xd5,0x55,0x34,0xe4,0xb7,0x70, +0x68,0x80,0x55,0xe4,0x29,0x1b,0x19,0x2e,0x11,0x6c,0x98,0x0b, +0xa7,0xe9,0xdf,0x53,0xdc,0x72,0x56,0xf4,0x36,0x25,0x82,0xf7, +0x1c,0x4a,0x4b,0x93,0xb7,0x10,0x63,0xdd,0x6d,0xba,0x73,0xac, +0x4b,0x4c,0xf8,0xd7,0x8d,0xf7,0x6f,0x74,0x5d,0xa7,0x22,0xdc, +0x8f,0x3c,0x30,0xbf,0x61,0x70,0x77,0x6b,0x75,0x23,0xbf,0xee, +0xea,0xa6,0x2e,0x8d,0x7a,0xda,0xc9,0x5e,0x79,0x19,0xc1,0xe5, +0x54,0x23,0x99,0x6b,0xa3,0x39,0x16,0xc1,0x72,0x6d,0xf4,0x90, +0x87,0x81,0x07,0x8b,0x02,0x2a,0x08,0x7c,0xb5,0x03,0xbf,0xc2, +0xff,0x31,0x90,0x37,0x75,0xb2,0x18,0x2f,0xce,0x23,0x2d,0xaf, +0x2a,0x3e,0x14,0xc2,0x50,0x9d,0x44,0xde,0x0d,0x07,0xd9,0x23, +0x63,0x30,0x99,0x13,0xd3,0xa4,0x7f,0xab,0x74,0x33,0x62,0x6f, +0x23,0xf1,0x7a,0xb5,0xfb,0x95,0xd3,0x33,0xfd,0x83,0x7c,0xe9, +0xf2,0xe2,0x79,0x39,0x33,0x29,0xb7,0x60,0x04,0x81,0x4a,0x3c, +0x1d,0x54,0xc3,0x66,0x58,0xab,0x83,0x6b,0xb1,0x04,0xd4,0x74, +0xd0,0x10,0x1e,0xb0,0x3a,0xab,0x90,0xd5,0x44,0x9f,0xad,0x99, +0x94,0xd9,0x84,0x3f,0x06,0xf2,0xa0,0x1e,0x86,0x70,0x11,0x4c, +0x3d,0x0e,0x01,0xb5,0x75,0x10,0xbf,0x32,0xb3,0x9b,0xc7,0x63, +0xd7,0x71,0xcc,0x0d,0xad,0xc7,0x1c,0x9e,0xc5,0x70,0x22,0x2c, +0xa4,0xf1,0xcf,0xfc,0x85,0xd4,0x15,0x2a,0x2f,0x42,0x25,0xb4, +0xe3,0x74,0xd4,0x63,0x53,0x28,0xf0,0x2f,0xa5,0x48,0x96,0xd0, +0xac,0x0e,0xa6,0x0a,0x4d,0x03,0x9a,0x56,0x59,0xf9,0x0a,0x82, +0xa3,0xbb,0x60,0x1b,0x1e,0xfc,0xa4,0x37,0x09,0x9d,0x71,0x5b, +0x17,0x8c,0x66,0xf1,0x84,0xf8,0x90,0xc8,0x7d,0xa4,0x0a,0x1f, +0x4d,0xe1,0x1f,0x43,0x45,0x50,0xcf,0x1d,0xb8,0x20,0x5f,0x69, +0x28,0xfe,0xc3,0x42,0xbb,0x30,0x9e,0x84,0xd7,0x84,0xd6,0x5c, +0xa8,0x35,0x88,0xe0,0x4f,0x59,0x9e,0xb0,0x0e,0xb1,0xe6,0x70, +0xb2,0x01,0xa8,0x30,0xee,0xb8,0x55,0x8a,0x4b,0x97,0xe2,0xd8, +0x06,0x3b,0xfe,0x37,0x50,0xbf,0x08,0x9a,0x85,0x20,0xe3,0xe0, +0x79,0x27,0x43,0x6d,0x96,0x44,0xd2,0x6c,0x32,0xf4,0xd3,0x74, +0x75,0x8e,0xed,0xf0,0xdf,0x16,0x58,0xfc,0xaa,0x18,0x46,0xa6, +0x03,0x67,0x18,0xc3,0x1f,0x44,0x89,0x33,0x8e,0xb3,0xc5,0xc1, +0x7b,0x4f,0xed,0x3b,0xb5,0xf7,0x74,0x94,0x36,0xaf,0x2c,0x73, +0x32,0x32,0xed,0x43,0x4e,0xf6,0x6a,0xbe,0x35,0xd3,0xe3,0x8d, +0x15,0x7c,0xed,0x7c,0x4f,0x65,0x94,0xfc,0x8a,0xf2,0x6c,0xea, +0x91,0xd8,0x01,0x33,0x74,0x70,0x06,0x56,0xc2,0x48,0x1d,0xdc, +0x2c,0x4f,0x84,0xcd,0xac,0x58,0x26,0x1e,0x27,0x01,0x09,0x41, +0x17,0xfc,0x83,0x0f,0xfa,0xf2,0x21,0xd4,0xe7,0xc7,0xb7,0xe3, +0x78,0x18,0x2b,0xc5,0xb1,0xb8,0xd1,0x08,0x16,0x33,0x7e,0x94, +0x09,0x8c,0xa5,0x88,0x3e,0xac,0xc2,0x86,0x7f,0xfb,0xb9,0xf8, +0x7e,0xcc,0x0b,0x9a,0x37,0xd4,0xbb,0x41,0xc1,0x44,0x84,0x9f, +0x0f,0x0d,0x51,0xfb,0x80,0xd3,0x1b,0x8a,0x25,0x42,0x14,0x8c, +0x27,0xdb,0x7f,0x94,0xfd,0xe2,0x01,0x43,0x39,0x74,0xd3,0x87, +0x75,0x4c,0xd1,0xf4,0x96,0x75,0xd7,0x57,0x73,0xe2,0xae,0x33, +0xe4,0xca,0xcf,0x0d,0xcf,0x72,0x9f,0x19,0x66,0xf2,0x1e,0xf3, +0x6c,0x37,0xe9,0x68,0x50,0x07,0xa1,0x69,0x3f,0x6f,0x57,0xbe, +0x79,0xbe,0xc9,0x5a,0xbf,0x59,0x01,0xb3,0x83,0x3a,0x60,0x50, +0x23,0x8c,0x2c,0x87,0xaf,0xa4,0x49,0xbc,0x2d,0x7e,0x67,0x84, +0x44,0x8a,0x92,0x45,0x21,0x7c,0x94,0x14,0xd4,0xa2,0x61,0x53, +0x02,0x4c,0xcd,0x55,0x89,0xdf,0x17,0xb7,0x37,0x76,0x5f,0x5b, +0x21,0x6f,0xf2,0x87,0xec,0x37,0xe3,0x1f,0x07,0x86,0x5c,0xfe, +0x7f,0x1b,0x72,0xf6,0xe7,0xad,0x04,0x8f,0x0a,0x2f,0xe1,0x28, +0x2b,0x16,0x19,0x10,0xc1,0x13,0x47,0x88,0x9e,0x0c,0xea,0xe2, +0x77,0x04,0xaf,0xf5,0xb5,0xc1,0x39,0xe3,0x5e,0xb8,0xc6,0xfe, +0x36,0x0e,0xaf,0x51,0xa6,0x94,0x68,0x7c,0x91,0xfe,0x43,0x91, +0x6d,0x48,0xe0,0x1c,0xce,0xc5,0x73,0x8c,0xb0,0x0b,0xe6,0x12, +0x48,0xa4,0xd7,0x89,0x14,0xf4,0xee,0x08,0xd1,0x04,0x76,0x02, +0xdb,0x86,0x47,0x7f,0xd3,0x5b,0x80,0xfb,0x8d,0x61,0x28,0xee, +0xc4,0x51,0x46,0xc2,0x42,0xd1,0x11,0xd7,0x0d,0x4c,0x16,0xce, +0x60,0x1a,0x93,0x93,0xeb,0xd5,0x05,0xab,0x9e,0x76,0x56,0xb1, +0x55,0x64,0x89,0x7c,0xbb,0x54,0xb1,0x5d,0x43,0xb8,0x6c,0xa8, +0xd0,0xeb,0xb9,0x0d,0x51,0x72,0xc6,0x40,0xbc,0xcc,0x0a,0x3b, +0x05,0x8a,0x36,0x3b,0x71,0x03,0xec,0x64,0x29,0xa5,0xbc,0x4e, +0x50,0xd1,0xf3,0x23,0x38,0x41,0x39,0x8b,0xbb,0x95,0xdb,0x1b, +0x76,0xc0,0x02,0xdc,0xc1,0x8e,0x92,0x5f,0x95,0x77,0x90,0xb9, +0xd8,0x05,0xac,0x2e,0x65,0x3e,0x55,0x7f,0xe8,0xe2,0x0c,0x3a, +0x4c,0x33,0x58,0x0c,0x53,0xd8,0x93,0x1b,0x90,0xdd,0x82,0xd9, +0x37,0x94,0xb3,0x19,0xf7,0x5b,0xd7,0xc1,0xd7,0xe8,0xdf,0xaf, +0xa7,0x85,0x5e,0x66,0xe0,0xb5,0x15,0x13,0xed,0x58,0xfb,0x6c, +0x83,0xa5,0x1b,0xd7,0x2c,0xd3,0x51,0x29,0x32,0xcd,0x4d,0xcb, +0xcd,0xc8,0xc9,0x52,0xc1,0x2b,0xbd,0xc2,0xd7,0x6c,0x61,0x49, +0x5e,0x79,0x46,0x05,0x07,0x71,0x5b,0xd0,0xdb,0x0c,0xbc,0x35, +0xf1,0xa4,0x29,0x9c,0xd4,0xc4,0x62,0x13,0x28,0xc6,0x6f,0x7a, +0xe1,0x1b,0xb8,0xda,0xca,0x28,0xa4,0x42,0x11,0xb1,0x5a,0xbf, +0x79,0xed,0x0a,0xfd,0x52,0x33,0xfe,0x8f,0x1b,0xb7,0x9f,0x34, +0x3c,0xe2,0x84,0x58,0x0d,0xb2,0x15,0x35,0xaf,0xb3,0xa0,0x89, +0x23,0xc9,0x16,0xd4,0xbc,0x49,0x1b,0xe8,0x28,0x0f,0x26,0xcf, +0xf5,0x97,0xa0,0xab,0x91,0x70,0x82,0x76,0x58,0x53,0x31,0x9d, +0xc8,0x8f,0x48,0x15,0x47,0x36,0x0b,0x0a,0x83,0x01,0x5f,0x8f, +0x96,0xaf,0x34,0x10,0x15,0xac,0xd0,0x2d,0x4c,0x23,0xb3,0x7b, +0x60,0x0e,0x4e,0x62,0x93,0x4b,0x13,0xab,0x62,0xab,0x8d,0x12, +0x79,0x3f,0xab,0xa3,0xd6,0x07,0x28,0xba,0xf4,0xe2,0x9c,0xce, +0xd7,0x0c,0x7c,0xfb,0x84,0x04,0x94,0x1e,0x2d,0x3f,0x5a,0x60, +0x72,0x90,0x4f,0x76,0x8b,0x77,0x8e,0x71,0xe6,0x84,0x6f,0x69, +0x00,0xb6,0xe3,0xd1,0x8f,0xd2,0xc9,0xb8,0xcf,0x08,0xbe,0xf3, +0x62,0x51,0xdd,0x7a,0x01,0x7e,0xbf,0x56,0xad,0xc4,0x1c,0x06, +0x5d,0xed,0x7a,0x98,0xfe,0x46,0xb9,0x7d,0xf4,0x8c,0xd9,0x29, +0x83,0xe3,0xee,0x9c,0xe7,0x71,0xff,0x60,0x87,0xf1,0x94,0xab, +0x27,0xca,0x24,0x30,0x88,0xb9,0x9c,0x9d,0xd5,0x16,0xab,0x1e, +0x55,0x13,0xd6,0x09,0x83,0x54,0xb1,0x84,0x39,0x9f,0x72,0x2e, +0x35,0x55,0x35,0x97,0xea,0xea,0x6c,0xe1,0x33,0x09,0x8d,0x0e, +0x3b,0x1b,0x76,0xfc,0x19,0x7e,0xc3,0x97,0x14,0x64,0x3b,0xde, +0xef,0xcf,0xad,0xba,0x70,0x4d,0x25,0x82,0x09,0xdb,0x5a,0x61, +0xff,0x78,0x7b,0x6e,0x3d,0x3f,0xff,0xa6,0x7d,0xf3,0x73,0xd5, +0x77,0x66,0x53,0xd8,0xe5,0x5e,0x66,0xcb,0xb6,0xaa,0xad,0x01, +0x49,0x50,0x6c,0xf0,0x85,0x80,0x20,0x95,0xc0,0xa0,0x13,0x17, +0x24,0x71,0xe5,0x61,0x0d,0xfd,0xaa,0xf5,0xa6,0x36,0x2c,0xb2, +0x3e,0x3b,0x66,0xcf,0x57,0x2b,0xb1,0x6b,0xaa,0x2b,0x6e,0x4c, +0xaa,0x50,0xc1,0x6a,0x31,0x9c,0xc8,0xf7,0x18,0x28,0xf6,0xe8, +0x0a,0x9f,0x8c,0x14,0x87,0xbb,0x6e,0x83,0x8f,0x7c,0x81,0x91, +0xf8,0x89,0x15,0x7e,0x97,0x4b,0x49,0x88,0x55,0xe0,0x2e,0x5f, +0xdb,0x7a,0x7f,0x3e,0xa1,0x2e,0xba,0x31,0xbc,0x9e,0xc3,0x07, +0x17,0xc8,0x71,0x2b,0xff,0x5d,0x3e,0xf6,0x35,0x7e,0x7c,0x72, +0x75,0x6c,0x63,0x44,0x03,0x57,0x1d,0x4a,0x4e,0x5a,0x06,0x5b, +0xfa,0x58,0xd7,0x06,0xf0,0x89,0x0d,0xd1,0xad,0x17,0x1a,0x06, +0x3e,0x76,0xca,0x2c,0xd8,0xca,0xd7,0xba,0x8e,0xbe,0x57,0x17, +0xd9,0x7e,0xa1,0x89,0x13,0x1c,0xf1,0x25,0x11,0xe3,0x71,0x7a, +0xfb,0x1f,0xc2,0x9c,0xb9,0x9d,0x4c,0xec,0x0c,0xd2,0x82,0x17, +0x60,0x90,0x21,0x4d,0xee,0x41,0xa6,0xe0,0xcd,0x7a,0x6a,0x68, +0x52,0xee,0xb7,0x33,0xcb,0x84,0x87,0x09,0x97,0xef,0x5e,0x49, +0x78,0xc1,0x85,0x63,0x54,0x07,0x44,0x85,0x33,0x09,0x0b,0x1e, +0xc9,0x60,0x92,0x66,0x56,0x3b,0x8f,0x93,0xfb,0xd7,0xf6,0x7a, +0xdc,0xe2,0x46,0x09,0xcb,0xe4,0x6b,0x89,0x8d,0x10,0x56,0x8b, +0xc7,0x2e,0x42,0x64,0x3d,0x46,0x76,0x19,0xc9,0x30,0xc4,0x0a, +0x42,0x74,0x58,0x71,0x86,0xf8,0x8c,0xc8,0x7d,0x0d,0x14,0xbe, +0x86,0xf2,0x41,0xc6,0x8a,0x20,0xda,0x25,0x77,0xf9,0x2a,0x63, +0xc5,0x20,0x16,0x78,0x61,0x02,0xb1,0x06,0x37,0x5d,0x0c,0xb6, +0x16,0x2a,0xea,0xf0,0x7c,0x1f,0x18,0x16,0xb1,0x45,0x47,0x52, +0xf3,0x68,0x96,0x2a,0x54,0xa9,0x14,0xaf,0x58,0x0a,0x51,0x6c, +0x88,0x4f,0xe0,0xe1,0x63,0x47,0xb8,0x28,0xbc,0x41,0xfa,0x6f, +0x37,0x89,0x5d,0xe6,0x82,0xa6,0x16,0xea,0x5a,0x82,0x2e,0xaa, +0x2e,0x60,0x13,0x4c,0x25,0xb7,0x29,0x5d,0x48,0xaa,0x54,0x87, +0xef,0x1e,0x37,0xb0,0xe2,0x05,0xf4,0x21,0xb5,0xb0,0x00,0x4c, +0x71,0x17,0x1e,0x67,0xe9,0x85,0x11,0x99,0x36,0xe9,0x1d,0x0b, +0x96,0xc6,0x24,0xfb,0x40,0x9e,0x5b,0xf2,0xde,0xf2,0x5c,0xfe, +0x48,0xae,0x67,0x81,0x77,0x1a,0xf7,0xff,0x0c,0x10,0xc5,0x0c, +0xd4,0xa0,0xa0,0xa1,0x67,0x2a,0x6c,0x6f,0x41,0xc3,0x6e,0x56, +0x3e,0x48,0xb9,0x95,0x3b,0x5e,0xfc,0x16,0xe3,0x59,0x78,0xa0, +0xdc,0xda,0x97,0xd5,0x01,0x59,0x8c,0x22,0x58,0x19,0x6c,0x37, +0x60,0x31,0xde,0x60,0x84,0x7d,0x5e,0x04,0xb2,0xa4,0x98,0xc5, +0x88,0xeb,0x0f,0x90,0x1e,0x70,0xd6,0x67,0x05,0x7f,0xa4,0x9c, +0x69,0xae,0x01,0x8d,0xfe,0xd1,0xbf,0xb2,0x79,0x91,0xb9,0x51, +0xd9,0xd1,0x87,0xea,0x79,0xcd,0x3d,0xeb,0x7d,0x57,0x04,0xc5, +0x98,0xf3,0x25,0x17,0x8a,0xc3,0x8a,0xc2,0xb9,0xb5,0xf8,0xad, +0x11,0x8c,0x64,0xfd,0x35,0x1d,0x6c,0xd7,0x3a,0x66,0x5b,0xf1, +0xef,0x1a,0xeb,0x7a,0x63,0x9f,0x73,0xf0,0x1d,0x1a,0x76,0x82, +0xe1,0x9b,0x76,0x46,0xf1,0x93,0xf2,0xe9,0xc2,0x35,0xe8,0xc4, +0x88,0xe9,0x6c,0x9c,0x85,0xe4,0x31,0x53,0x97,0x48,0x29,0x17, +0x34,0x89,0x8b,0xc5,0x61,0xec,0x67,0x48,0x22,0x68,0xd9,0x52, +0x0d,0xb3,0x60,0x31,0x8b,0xb3,0x50,0x42,0xae,0xfd,0xb9,0x8d, +0x3a,0x69,0x35,0x78,0x11,0x61,0x08,0xbc,0x10,0x87,0xc0,0x76, +0x61,0x5a,0x8f,0xd8,0xaa,0xff,0x9b,0xc2,0x0a,0x19,0x7d,0xe1, +0x71,0x8f,0x38,0x8f,0x41,0x0b,0xc1,0x47,0xb9,0xb4,0xa5,0x4a, +0x0a,0x87,0x71,0x1d,0x5a,0xb3,0x27,0x16,0xf8,0xcd,0x3a,0x34, +0x9f,0x83,0x53,0xcc,0x99,0x35,0x27,0x56,0x04,0xca,0x38,0xf3, +0xa0,0x63,0x7e,0xbb,0xc6,0xe3,0xd7,0xca,0x75,0x1f,0x30,0x9c, +0xb9,0x96,0x97,0x7d,0x2f,0x4e,0x3d,0xf6,0x76,0xf8,0x9f,0x03, +0x1b,0xa1,0xfc,0x98,0xe8,0x96,0xe8,0xcb,0xa1,0xad,0x9c,0xdc, +0x1c,0x07,0x8a,0x42,0x7b,0x43,0x37,0x45,0xb8,0xb5,0xf2,0xe3, +0xe4,0xb9,0xce,0x12,0x8c,0x35,0x12,0x9e,0xd1,0x78,0xe6,0xf1, +0x04,0x65,0x7c,0x18,0x21,0x03,0x33,0xe5,0x31,0x96,0xec,0x89, +0x79,0x01,0xb3,0x8e,0xd0,0x5f,0xe2,0xca,0x9c,0x59,0x75,0x62, +0x59,0xa0,0x3e,0x67,0x19,0xec,0xe7,0x67,0x37,0x7e,0xb2,0xf2, +0x61,0xf1,0x3b,0xe6,0x72,0x6e,0xf6,0x8f,0xca,0xbd,0x56,0xe1, +0x6f,0xcf,0xc1,0x38,0x0e,0x6d,0x99,0xa8,0x96,0xa8,0xab,0xca, +0xbd,0x56,0x67,0xe1,0x5b,0x22,0xba,0xa2,0x9d,0xe0,0x3a,0xb0, +0xaf,0x72,0x12,0xbe,0xfb,0xc4,0x82,0xa3,0x38,0x93,0xe4,0xb2, +0xf7,0xb2,0x1f,0x95,0x5e,0xaa,0xe7,0xea,0xc4,0x6c,0x13,0x61, +0x05,0x6b,0xb5,0xc7,0xe0,0xc0,0xd6,0x43,0x9c,0x2e,0x96,0x98, +0x40,0x09,0x45,0xf2,0xad,0xac,0x32,0x94,0x17,0x28,0x05,0x56, +0x23,0x75,0x0f,0xc8,0x68,0x55,0xe6,0xd9,0x93,0xc4,0x3e,0xcd, +0xa1,0xda,0xa5,0xab,0xbf,0xb1,0xa7,0xa3,0xf5,0xa2,0x7d,0x29, +0x6f,0x21,0x33,0x32,0xd5,0xb3,0xf1,0x29,0xf2,0x2d,0xf3,0xab, +0xbc,0xd9,0xd0,0xdf,0xd5,0x79,0xd9,0xa1,0x84,0x37,0x93,0x1a, +0x98,0x6a,0xdb,0x06,0x95,0x04,0x95,0x1f,0xaf,0xbc,0x52,0xd5, +0xdb,0xd4,0xd0,0x61,0x57,0xc6,0x3b,0xd8,0x58,0xd8,0x1a,0x3a, +0x87,0xd4,0x9e,0x6c,0x38,0xdd,0xc8,0xc1,0xc5,0x2e,0xec,0x4f, +0x64,0x60,0x94,0x1e,0x4a,0xd8,0xbd,0x62,0xb4,0x4c,0x88,0x65, +0x2f,0xe8,0x87,0x4b,0x23,0x8d,0xac,0xf7,0x99,0x1d,0x32,0xf1, +0xcd,0x32,0xe4,0xeb,0x13,0xea,0x92,0xab,0xd3,0x23,0xed,0xa3, +0x1c,0x63,0x9c,0xf4,0x5c,0x76,0x7a,0x6b,0x1e,0x4c,0x37,0xe2, +0xaf,0xa4,0xf7,0xe7,0xf6,0x96,0xc4,0xdb,0x25,0x3a,0x25,0xed, +0x5e,0x2c,0x9b,0x6e,0x8d,0x12,0xf7,0x0c,0xca,0xfd,0x87,0x16, +0x7f,0x68,0xf8,0xad,0xb7,0x4c,0xaf,0xca,0xa6,0x66,0x7f,0xb5, +0x7b,0x4d,0x54,0x64,0x4b,0x06,0xcc,0xe7,0x2d,0xf2,0x24,0x7b, +0x84,0x27,0xc4,0x32,0x6f,0x5b,0xa1,0x2c,0x65,0xaf,0x35,0xdf, +0x75,0xf8,0x86,0x5b,0xad,0x37,0xa7,0x08,0x14,0x8f,0x12,0xb8, +0x0e,0x3d,0x78,0x9d,0xe9,0xc5,0x30,0x02,0x54,0xb4,0xa3,0x39, +0xfb,0x2b,0xa5,0xd0,0x38,0xdc,0x13,0x17,0x78,0xa1,0xaa,0x8f, +0x72,0x93,0xaf,0x5a,0x2a,0xcc,0xcc,0x06,0xae,0x80,0x53,0xee, +0x70,0x7d,0x4e,0x4c,0xa7,0x6d,0x5d,0xb1,0x7c,0x1b,0xd5,0x6d, +0xbf,0xde,0xbd,0xf3,0xba,0xf3,0x13,0x57,0x89,0x52,0x82,0xc7, +0x85,0x47,0x70,0x1c,0x53,0xef,0x40,0x6b,0x1b,0xb6,0x3e,0xd6, +0x5f,0x85,0xe5,0xc6,0x50,0xbe,0x89,0xc5,0xe7,0x07,0x88,0xd9, +0xf4,0xa5,0x38,0x62,0x81,0x46,0xb1,0x31,0x5f,0x56,0x90,0x9f, +0x9f,0x95,0xcf,0x89,0x9a,0x3d,0x42,0x28,0x5b,0x5c,0x5f,0xd4, +0x9e,0xdf,0xc9,0xfd,0x84,0x93,0x09,0x4c,0x04,0x16,0x27,0xb2, +0x5d,0xca,0x73,0x70,0x38,0x7a,0x01,0x5b,0x61,0x22,0xc1,0x89, +0x94,0xb7,0x4e,0x64,0x45,0x3d,0x8c,0x27,0x46,0xf2,0xe9,0xed, +0x2c,0x52,0x46,0x42,0x6c,0xaa,0xf4,0xab,0x2d,0x72,0x9d,0x6d, +0xf9,0x66,0xcf,0x0e,0xdb,0x3a,0x7b,0xee,0xf3,0x6d,0x52,0x6e, +0x58,0xb1,0x3c,0x73,0x7b,0x47,0x1e,0xbf,0xaf,0xdf,0xe6,0x17, +0x87,0x36,0x0e,0x1b,0xd1,0x99,0x38,0x2a,0x75,0x08,0xac,0xd6, +0xc7,0x4d,0xec,0xf6,0xb4,0xfd,0xb7,0xd4,0xc0,0x82,0x69,0x4c, +0x4a,0x6c,0x54,0x7f,0x36,0x70,0x0a,0xdd,0x30,0x56,0xdc,0xb2, +0x97,0x94,0xf5,0xe7,0x3d,0x4e,0xba,0x4e,0x93,0x80,0xaf,0x8e, +0xd7,0x06,0x07,0x3d,0x6e,0xd4,0x25,0xa8,0x26,0xb0,0x3e,0x13, +0xa6,0xd6,0xc0,0xd7,0x17,0xe1,0x6b,0x3d,0x98,0xb1,0x0b,0xb6, +0xec,0x49,0xea,0xe5,0x71,0x69,0x06,0x8e,0x2b,0x99,0xdc,0xf0, +0x7b,0xcf,0xdd,0x5b,0x5d,0x3f,0x73,0xb0,0xb4,0x53,0x5c,0xfd, +0x49,0x67,0x92,0x38,0xdb,0x00,0x16,0x32,0x2d,0xcb,0xee,0x6a, +0xbc,0xd2,0x9f,0x6a,0x89,0x63,0x5c,0x70,0xf1,0x41,0x4e,0x3e, +0x1b,0xee,0x10,0x23,0x8d,0x6d,0x3a,0x8b,0xcd,0x16,0x36,0x6f, +0xbd,0x68,0x7a,0x9b,0x03,0x10,0xc3,0x88,0xac,0x5d,0xbf,0x4e, +0xb7,0xd2,0x61,0x17,0xdf,0x63,0x7f,0xc9,0xac,0xcd,0x8c,0xa3, +0xd9,0xff,0x6b,0x62,0xed,0x1f,0x59,0xad,0x0e,0x07,0xb5,0xd1, +0x87,0x5d,0x93,0xb3,0xff,0x27,0x35,0x28,0x62,0x9a,0x12,0xd3, +0x68,0x58,0x0e,0x61,0x75,0xd3,0x24,0xa8,0xc6,0x76,0x81,0x27, +0xe9,0xd3,0xe8,0x5e,0x55,0xb3,0xa4,0xad,0x88,0xb7,0x7c,0x69, +0x70,0x5f,0xe7,0x16,0xa7,0x30,0xc6,0x12,0x72,0xfd,0x51,0xdd, +0x8b,0x9c,0x27,0x86,0x69,0xfc,0xde,0xf5,0xd6,0x4b,0x76,0x6a, +0x2a,0x97,0xb5,0x08,0x53,0xc8,0xe5,0x84,0x8b,0xc9,0x1d,0xe9, +0xfb,0x5b,0x78,0xab,0x23,0x06,0x3e,0x3a,0xc7,0x82,0x7e,0xe7, +0x2f,0xc5,0xf7,0x26,0xb5,0xa7,0xed,0x6b,0xe6,0x6d,0x7c,0x8c, +0x8e,0xea,0xf9,0x05,0xff,0xc2,0xf7,0xc6,0x75,0x27,0xb6,0xa5, +0xee,0x6b,0xe1,0x6d,0x7d,0x4c,0x7c,0xa5,0x7e,0xc1,0x4f,0x78, +0xdd,0x93,0x91,0x0b,0x65,0x01,0x7a,0xc1,0xfa,0x27,0x54,0xe2, +0x8c,0xba,0xc2,0x3a,0x23,0x3a,0xa2,0x55,0x22,0x17,0xeb,0xfa, +0xef,0x08,0xd6,0x0a,0x51,0x89,0x37,0xec,0x0d,0xbb,0x18,0xd5, +0x17,0xa3,0x12,0x39,0x6f,0xab,0x9f,0x46,0xc0,0xe6,0xe3,0x2a, +0xf1,0x06,0x57,0x22,0x6e,0x46,0x5f,0x8b,0x53,0x89,0x9a,0x73, +0x31,0x5c,0x02,0xda,0x17,0x08,0xcc,0x87,0xb1,0x25,0x30,0x31, +0x14,0x36,0x72,0x30,0x9f,0xc1,0xaf,0x4e,0xce,0xf0,0x59,0xa2, +0x66,0x16,0x78,0xd0,0x47,0x36,0x7e,0x15,0x93,0x24,0x95,0xdc, +0x64,0x5e,0x16,0x56,0xf6,0xc5,0xa9,0xa7,0xbd,0x0b,0xfb,0x0c, +0x9a,0xaa,0xe2,0x3c,0x03,0xe0,0x99,0x53,0xb8,0xde,0x85,0xb2, +0xb8,0x89,0x28,0xe1,0x6c,0xd7,0x91,0x2e,0x87,0x8b,0x96,0xad, +0xe6,0x55,0xb5,0xbc,0x41,0xab,0xb4,0x56,0xaf,0x9c,0x33,0xc5, +0x6b,0xc4,0xc6,0x3f,0x92,0x02,0xb2,0xb5,0x0e,0xda,0xb2,0x6b, +0xb3,0x0f,0x50,0xeb,0x14,0x33,0x4d,0x09,0x69,0xd5,0xea,0x6f, +0x59,0x3d,0x6a,0x1c,0xc2,0x76,0x82,0x25,0xe9,0xdb,0xde,0xbd, +0xae,0x7a,0x65,0x6b,0x31,0x6f,0xf9,0xdc,0xe0,0x8e,0xee,0x55, +0x4e,0x61,0x80,0xa9,0xe4,0xfa,0xdd,0xba,0x9f,0x73,0xef,0x1b, +0x65,0xf0,0x7b,0x37,0x5b,0xad,0xdc,0xb9,0x53,0xb9,0x33,0x6b, +0x13,0xf9,0x7b,0xa2,0xfe,0x3f,0x13,0x59,0xe1,0xe3,0x2d,0xe2, +0x19,0x1c,0x9e,0xab,0x0e,0xe7,0x61,0x08,0x14,0xb2,0xa9,0xfb, +0xd3,0xf7,0x67,0x1e,0xa8,0x68,0xe3,0x97,0x3d,0x34,0xbe,0x63, +0xf3,0x81,0xc3,0x78,0x29,0xec,0x65,0xd2,0x8d,0x8a,0x0c,0xab, +0x8d,0x39,0x71,0x3c,0x53,0xd4,0x94,0xd5,0x92,0xdc,0x64,0x94, +0xce,0x7b,0x6f,0xb0,0xd1,0xd0,0xd3,0x09,0xa8,0xf1,0xaf,0xf6, +0x2f,0xb1,0xf2,0xe1,0x53,0xf4,0x53,0x56,0x45,0x6f,0x6a,0x4d, +0xe4,0x4f,0xe4,0x85,0xe4,0x85,0xe4,0x97,0xda,0xf2,0x69,0x19, +0x29,0x99,0xc9,0x54,0xde,0x94,0xbe,0x61,0x83,0x50,0x75,0xdb, +0x6c,0x5c,0xbb,0x51,0xf9,0xc4,0x45,0xf6,0xfc,0x16,0x8c,0x88, +0x82,0x39,0xdc,0x9f,0x18,0xce,0xec,0x4c,0xdd,0x7f,0x4d,0xed, +0x0f,0xa6,0x3a,0x29,0xa9,0x49,0x79,0xf0,0xbc,0x69,0xb2,0x04, +0x37,0xb0,0x8a,0x4c,0xf8,0x40,0x32,0x9f,0xc5,0xbd,0xbf,0xf0, +0xd1,0x28,0x8c,0x3f,0x39,0x35,0x60,0xde,0x9e,0xe5,0x9c,0xfc, +0x8c,0xf2,0x39,0xb3,0x21,0xd2,0x5c,0xa6,0xac,0x9e,0x03,0x95, +0xe4,0xfe,0xe3,0xc2,0xe7,0x31,0x7f,0x72,0x94,0xf9,0x94,0xf6, +0x42,0x29,0x2c,0xec,0x12,0x79,0xe6,0x5c,0xca,0x59,0x4a,0x27, +0x1a,0x58,0x98,0x12,0x0e,0x12,0x2a,0x42,0x2b,0x3c,0xda,0x78, +0x1c,0x65,0x3b,0xd1,0x17,0xd7,0x9c,0xe0,0xa6,0xb3,0x38,0xd9, +0x6f,0xce,0xac,0x69,0x6a,0x0b,0x60,0x09,0x69,0x8b,0x6a,0x8e, +0xae,0x8f,0x3d,0xde,0xc2,0xef,0x0a,0xb4,0x08,0x32,0x0d,0xe6, +0xe0,0x5b,0x98,0xd4,0x8e,0x93,0x60,0xb0,0x1e,0x0e,0xc6,0x6d, +0x46,0x54,0x30,0xa8,0xb0,0x7a,0x41,0x5a,0xc7,0x77,0x84,0x44, +0x19,0xf0,0x17,0x23,0xfa,0x22,0xba,0x23,0x39,0x9c,0x8d,0xe3, +0x58,0xe5,0x7a,0xba,0xc1,0x14,0xfc,0x92,0x6a,0xd5,0xe1,0x05, +0xca,0x88,0x51,0xb3,0xac,0x56,0xbf,0x9c,0xfa,0x71,0x97,0x63, +0x9f,0x65,0x8b,0x05,0x87,0x5a,0x38,0x88,0xd8,0x04,0x28,0x47, +0x6a,0x97,0x36,0xda,0xb3,0x6b,0x73,0x0e,0x3c,0xfe,0xef,0x48, +0xbd,0x63,0x75,0x53,0x95,0x23,0xd5,0x05,0x16,0xa4,0x77,0x5b, +0xf7,0xfa,0x9a,0x55,0x2d,0xc5,0xbc,0xd5,0xb3,0x2f,0x23,0x25, +0xc3,0x94,0xff,0x73,0xa4,0xe4,0xc5,0x82,0x82,0xbc,0x62,0x42, +0x76,0x1e,0x59,0xeb,0xa9,0xd9,0xb4,0x8f,0x2f,0x7e,0x9a,0xf8, +0x24,0xf2,0x3e,0x57,0x8b,0x21,0x6c,0x44,0x6b,0x68,0xfb,0xf9, +0x76,0xc3,0x30,0xfe,0x04,0x8e,0xf1,0xc5,0x6f,0xbc,0xa7,0x73, +0x75,0xe8,0x05,0x9b,0xd8,0x07,0x09,0x0f,0x72,0x7a,0x0b,0x77, +0x37,0xf1,0xdb,0x9c,0xd7,0xef,0x9f,0x7b,0x90,0xc3,0x70,0x16, +0x13,0x8e,0xa1,0x3a,0x15,0x0c,0x6a,0x0d,0xbb,0xfa,0xe0,0x87, +0x14,0x98,0x7d,0x0e,0x92,0x55,0x5e,0x8a,0x75,0x5d,0x42,0xdd, +0x65,0x26,0xe4,0xe0,0xf1,0x43,0xc7,0x0f,0x37,0x78,0xf0,0xd9, +0x97,0x53,0x1e,0xc6,0x3d,0xe7,0xaa,0x70,0x30,0x83,0x27,0x2d, +0xa9,0xa4,0x1a,0x81,0x93,0xd4,0x4a,0x0c,0x60,0x18,0xa8,0x56, +0xc0,0xc8,0x70,0x98,0xaf,0x12,0xce,0x44,0xe0,0xbc,0x4a,0xe4, +0x94,0xa8,0x54,0xd0,0xc5,0x23,0x81,0x79,0x0e,0x30,0x01,0x82, +0x55,0xc5,0x1f,0xc5,0x07,0xff,0x7a,0x14,0x6c,0x16,0xb2,0x49, +0xc0,0xf5,0xc3,0xf7,0x8f,0x74,0x5a,0x1e,0xe5,0x93,0x0c,0x92, +0xd6,0x47,0x69,0x52,0x8d,0xba,0x84,0xa4,0x3f,0x8b,0x79,0x7b, +0xfe,0x93,0x71,0x28,0x7f,0x7a,0x6a,0xd0,0xbc,0xfd,0x2b,0xa8, +0x17,0x86,0x28,0xbd,0x50,0x57,0xf9,0x9d,0x3e,0xc1,0x8c,0xe4, +0xe6,0x67,0x14,0xa6,0x14,0x2b,0x9f,0xa4,0x3d,0x12,0xfd,0xf0, +0xd1,0xef,0x8c,0xdd,0xce,0xed,0xd2,0x65,0x96,0x39,0x16,0x7c, +0x79,0x5a,0x49,0x66,0x41,0x16,0x47,0x83,0x44,0xb6,0x62,0x93, +0x36,0x7e,0xa3,0x9b,0x6b,0xc6,0x03,0x7f,0xf5,0xb7,0xc7,0x57, +0x61,0xb0,0x72,0x9e,0xd9,0x10,0x55,0xe7,0x20,0x83,0x4b,0x17, +0x29,0x77,0x3d,0x6f,0x7a,0x4d,0x1d,0x99,0x74,0xc3,0x32,0xee, +0x22,0x73,0x1a,0x87,0x06,0xcf,0xf3,0xd3,0xe3,0x8c,0x03,0x8e, +0xf8,0x1a,0x8d,0x9f,0xa9,0x7c,0xce,0xf5,0x9a,0x79,0x58,0x94, +0xf7,0x63,0xbc,0x7a,0xc2,0xed,0x88,0x3f,0x42,0x61,0x2d,0xb7, +0x48,0x18,0x41,0x16,0x89,0xdc,0x0b,0x76,0x01,0x66,0x92,0x80, +0xde,0x43,0xd7,0x8f,0x34,0x5b,0x1c,0xe6,0x93,0xcc,0x93,0xb6, +0x46,0xe9,0x70,0xb8,0x07,0x39,0x92,0xfd,0x3c,0xee,0x7d,0xe8, +0x07,0xc3,0x70,0xea,0x8a,0xfe,0x73,0xbd,0x57,0x70,0xf2,0x12, +0x08,0x25,0x73,0x45,0xee,0x0f,0x96,0xe2,0xbf,0xb2,0x07,0x3a, +0xca,0x1e,0x38,0xfc,0x3d,0x98,0xe0,0x5b,0xc1,0x07,0xde,0xb2, +0x32,0x9c,0x49,0x44,0xf6,0x4f,0x81,0x65,0x44,0x23,0xcc,0x20, +0x01,0x7d,0x87,0xe9,0x4d,0xcd,0xe9,0x4d,0xcd,0xe8,0x4d,0x75, +0xff,0x7b,0xd3,0x77,0xa1,0x1f,0x8d,0xc2,0xf9,0x13,0x5f,0x6e, +0x2a,0xcc,0x85,0x60,0x22,0xb0,0x53,0x45,0x96,0x11,0xac,0x90, +0x27,0x62,0x39,0x2a,0xb6,0x9b,0xc8,0xe7,0xb5,0xca,0x18,0x71, +0x34,0xf4,0x13,0xec,0x9f,0x0a,0xfd,0x2c,0x65,0x45,0xfd,0x04, +0xfa,0x3f,0x61,0x3f,0xdb,0x39,0x0e,0xfa,0x3f,0xd3,0x9f,0xa3, +0x60,0x9f,0xb2,0x0d,0x7a,0xca,0x58,0x3e,0x01,0xdb,0xc9,0x4f, +0xe0,0x07,0xcf,0xd0,0xef,0x1e,0x38,0x67,0x74,0xc2,0x76,0xf1, +0x1e,0x6e,0xef,0xd8,0x0f,0x16,0xeb,0xf1,0x00,0x3e,0x83,0x03, +0x2b,0xbf,0x68,0x0a,0x4a,0xa5,0x08,0xd4,0xb6,0xb2,0x62,0xad, +0x5c,0x95,0x08,0x8e,0xd3,0xd1,0xf1,0x9a,0xfe,0x36,0x34,0x63, +0x70,0xf1,0x09,0x92,0x2a,0x4b,0x59,0x13,0xb3,0xb9,0x2d,0x99, +0xf7,0xbb,0x79,0xe0,0xe1,0xa1,0x2e,0x0e,0xed,0xf0,0x0a,0xc9, +0x78,0x16,0xf3,0x6e,0x20,0x1a,0x4f,0x4f,0x0d,0x9c,0xb7,0x77, +0x39,0x27,0xf4,0x27,0x12,0x5c,0xf3,0x2b,0xac,0x61,0xc0,0x8f, +0x12,0xb7,0xcd,0xbf,0xc2,0x66,0x46,0x9c,0xa6,0xdc,0x89,0xb0, +0x66,0x36,0xd2,0x37,0x0f,0xbe,0x26,0xb0,0x79,0x36,0x6e,0x56, +0xae,0x8c,0x55,0xb6,0x4e,0xaa,0x6c,0x9d,0x89,0x30,0x95,0x98, +0xb4,0xb7,0x82,0xdd,0xd2,0x0e,0xaa,0x21,0x4c,0x58,0xbf,0x88, +0x63,0xf4,0xef,0xd3,0xa2,0xc7,0x8d,0x55,0x35,0x5c,0x85,0x98, +0x4c,0x19,0x28,0x6b,0xe1,0x2e,0xf5,0xd4,0xf0,0x36,0xcd,0x34, +0xc9,0x30,0x4f,0xf6,0x70,0xe6,0xfb,0xf6,0xf7,0xed,0xe9,0xf1, +0xe2,0x30,0x45,0xfc,0xb6,0xfd,0x19,0x83,0x1b,0xe1,0x36,0x49, +0x30,0x4b,0xda,0x12,0xa5,0x43,0xdb,0x47,0xcd,0x7a,0xd3,0xa7, +0x85,0xa3,0x9a,0xfe,0x2a,0xc9,0x7c,0x1a,0xfb,0xfe,0xfc,0x47, +0xe3,0x30,0xfe,0x14,0x45,0x0b,0x65,0xfb,0x1e,0x00,0x95,0x92, +0x86,0x0f,0xc0,0x90,0x69,0x5f,0x4b,0x1e,0x80,0xdd,0x5a,0x56, +0x34,0xb5,0xa1,0x52,0x74,0x0d,0x1a,0x32,0x70,0xe6,0x21,0x01, +0xbb,0x35,0x68,0xc7,0xf8,0xe2,0x26,0x72,0x2e,0xfc,0x6c,0x44, +0xb8,0x6a,0xa9,0xd4,0x99,0x0d,0x39,0x7b,0xfc,0x4c,0x88,0x1a, +0x26,0x9a,0x43,0x24,0xb3,0x77,0xf9,0x2a,0x03,0xd4,0x74,0x49, +0x36,0xe5,0xc1,0xa2,0xf2,0xaf,0x3b,0x39,0xca,0xc9,0xa4,0x43, +0xcc,0x19,0xcb,0x93,0xbb,0x03,0x9d,0x39,0x8f,0x20,0x5f,0x3f, +0x6b,0xe5,0x92,0xc4,0x84,0x81,0xb9,0xf3,0xeb,0xc5,0x69,0x1d, +0x94,0xc5,0x35,0x87,0x95,0x9d,0x7f,0x4d,0x03,0xf6,0xb5,0x72, +0x53,0xbf,0x1a,0x9a,0x80,0x86,0x0e,0x6a,0xe0,0x16,0x50,0xd3, +0x43,0x43,0xa1,0x85,0xc2,0x96,0x62,0xc7,0x3f,0x43,0xfe,0x1d, +0x29,0x79,0xba,0xd0,0x40,0x3a,0x45,0x64,0x83,0x1b,0xfc,0x5a, +0xfc,0xcb,0x2d,0x8f,0xf0,0x71,0xd6,0x71,0x3b,0x23,0x0c,0xea, +0x12,0xf9,0x7d,0x2c,0x9e,0xc4,0xb1,0x24,0xeb,0x79,0xec,0xbb, +0x7f,0xf1,0x2f,0x50,0x89,0x7f,0xf0,0x26,0x97,0xe0,0x7e,0x21, +0x0e,0xf6,0xb3,0xa2,0xa5,0xb2,0xc4,0xc6,0x08,0x41,0x1d,0x47, +0xb0,0x1b,0xd1,0x8e,0x64,0x96,0x66,0xd6,0x25,0x56,0xeb,0xa6, +0xf0,0x3e,0x56,0xfb,0x4c,0x3d,0xad,0x39,0x91,0x18,0xc8,0xd5, +0x3a,0x19,0x91,0xcf,0x24,0xfe,0x95,0x3e,0x35,0xfb,0x4b,0xf4, +0x8f,0xf0,0xa9,0x4e,0x49,0xf6,0x71,0x76,0x34,0xe4,0x8e,0xfd, +0x27,0xe4,0xe4,0x19,0xf0,0x89,0x50,0x3d,0x2e,0x85,0xe3,0xf0, +0x5c,0xcc,0xc5,0xe7,0xe0,0x83,0x94,0x69,0x1b,0xc2,0x26,0x26, +0x18,0x25,0xda,0x5b,0x70,0xaa,0x76,0x8e,0x11,0x8d,0xa6,0xbb, +0xd7,0x5e,0x47,0x52,0x72,0x4a,0x99,0xb3,0x8c,0xd9,0x9a,0x79, +0xe0,0x9a,0xda,0x9f,0x4c,0x4d,0x4a,0x62,0x9d,0x3a,0xb0,0xac, +0x11,0xc5,0xb2,0x49,0xf3,0x59,0x97,0xc0,0xf0,0x12,0x75,0xd0, +0x01,0x23,0x76,0x9a,0xa0,0x45,0xc4,0x85,0x2f,0x84,0x85,0x8c, +0x18,0x80,0xe5,0xc4,0xff,0xca,0xc1,0xbb,0x87,0xdb,0x2d,0x8e, +0xf0,0xc9,0x46,0x29,0x9b,0xa2,0xb7,0x73,0xe8,0x31,0x9d,0x64, +0x3d,0x8b,0x7d,0x1f,0xfa,0x1f,0x5c,0xf7,0xa6,0xb8,0xde,0x0d, +0x67,0xc9,0x1c,0x71,0xe1,0x2b,0xd6,0x05,0x4d,0x48,0xc1,0xee, +0x52,0xd3,0x34,0xa7,0xda,0x02,0xfe,0x50,0x99,0x53,0xab,0x3b, +0xc5,0x82,0x5f,0x71,0x09,0x29,0x2d,0x2b,0x6b,0x4f,0xaf,0xb4, +0xc8,0xe5,0x0f,0xd9,0x3b,0x9b,0xed,0x76,0xa4,0x9d,0x38,0xb0, +0x96,0xfc,0x3d,0x5b,0xf7,0x9f,0xd9,0x2c,0xe8,0xca,0xed,0x88, +0xb9,0xf0,0xb0,0x09,0x33,0x6f,0x43,0x59,0x33,0x96,0xdd,0x93, +0xae,0xc7,0x54,0x33,0x48,0xd5,0x60,0x51,0x88,0x24,0x89,0xc6, +0x89,0x9b,0x22,0x77,0xb4,0x26,0xf3,0x41,0x97,0x0f,0xdf,0xf1, +0xa1,0x4c,0xc8,0x81,0xaa,0x9d,0xcc,0x5f,0x62,0xdf,0x5f,0xf8, +0x4c,0x23,0xef,0xd4,0xe4,0x80,0x39,0x7b,0x97,0x71,0x72,0x80, +0x8d,0x44,0x4c,0x45,0x4d,0x21,0x95,0x91,0x52,0xb7,0x59,0x2b, +0xce,0x79,0xc0,0xc2,0x5b,0xdc,0x47,0xe2,0x32,0x63,0xb3,0xa3, +0x33,0x0c,0x12,0xf9,0x40,0x4f,0x7f,0xaf,0x23,0x6e,0x1c,0xba, +0x30,0xd5,0x89,0xfe,0xd9,0xbe,0x39,0xbe,0x69,0x2a,0x26,0x07, +0xe3,0x0f,0xc5,0xef,0x8b,0xd9,0xab,0x82,0x5b,0x8d,0xe5,0xdf, +0xb4,0x31,0xf4,0x06,0xaf,0x49,0xa9,0xb0,0xc2,0xb9,0x17,0x7c, +0xc4,0x52,0xca,0x5f,0x84,0x7d,0xb0,0x83,0xcc,0x13,0x57,0xbc, +0xa4,0xec,0x78,0x87,0x7c,0x25,0xc1,0x96,0x28,0x06,0x66,0x6b, +0xe1,0x0f,0xec,0x7e,0x31,0x5d,0x4f,0xc8,0x64,0xc3,0x71,0x51, +0x36,0xfe,0x50,0x89,0x83,0x97,0xcd,0xc5,0x61,0x1a,0x38,0xd3, +0xa0,0x50,0x97,0x87,0x49,0x1d,0x30,0xf4,0xce,0xf3,0xdf,0x2a, +0x56,0x36,0x6a,0x77,0x38,0x54,0xec,0xae,0x8d,0x8e,0x68,0xcb, +0x03,0x67,0xde,0x38,0xd7,0x13,0xdd,0x8d,0x4b,0xad,0x2e,0xb9, +0xfc,0xac,0x72,0xeb,0x79,0xc7,0xfb,0x5a,0x18,0x2e,0xcd,0xe6, +0x9d,0xa6,0xd9,0x2c,0x91,0x6d,0x70,0x7f,0x75,0x18,0x86,0x9f, +0x00,0x55,0x0e,0x9a,0x19,0x19,0x8c,0x24,0xd6,0x05,0xdb,0x4b, +0xf5,0xd3,0xbd,0x2c,0xf9,0x8e,0x03,0xd7,0x9d,0x6b,0x3c,0x38, +0xc5,0x41,0x34,0x23,0xa2,0xc6,0xc5,0x67,0xd0,0x04,0xaf,0x58, +0x6c,0xa2,0x03,0x03,0x87,0xc0,0x0f,0x0f,0x51,0xe8,0xd0,0x97, +0x3f,0x24,0x94,0x78,0x4d,0x90,0xc1,0x04,0x0c,0x63,0xcd,0x8e, +0x9a,0x1e,0xb3,0x08,0x88,0xd1,0xe7,0xeb,0x62,0x1a,0xe2,0xeb, +0x13,0x68,0xea,0xc6,0xd1,0x6c,0x92,0xae,0xe4,0x3d,0xa5,0x8a, +0x29,0xf5,0xea,0xd0,0xc6,0x96,0xc6,0x95,0xc6,0x97,0x24,0x04, +0x76,0xf2,0xee,0xc7,0x5c,0xfd,0x5d,0xfd,0x39,0x38,0x0a,0x83, +0xba,0x70,0x10,0xe8,0xb2,0x72,0x63,0x5b,0x22,0x3e,0x96,0x0d, +0x94,0x3b,0x0f,0x50,0xcc,0xef,0x13,0x3e,0x81,0x06,0x73,0x02, +0xe7,0x1a,0x6d,0xc5,0x41,0x93,0x2a,0x4c,0xf8,0xeb,0xfd,0x2d, +0xd7,0xf2,0x7b,0xc3,0xa2,0xc3,0xcf,0x86,0x07,0xc3,0x5c,0x34, +0xe0,0x6b,0x6a,0x71,0x3a,0x68,0x07,0xc4,0x05,0x84,0xfa,0xfb, +0xab,0xf8,0xfb,0x85,0x5c,0x88,0xaf,0x8c,0x6e,0x3a,0xdf,0xaf, +0x02,0xda,0x62,0xbe,0xf2,0x21,0x8e,0xde,0x97,0x79,0x1b,0xe5, +0x43,0x9c,0x07,0x78,0x1a,0x66,0x42,0x06,0x3b,0x4a,0xae,0x17, +0x4d,0x70,0xec,0xda,0xca,0x9b,0xa6,0xea,0xb5,0x2f,0x13,0x61, +0x50,0x14,0x4c,0xe2,0x2a,0x28,0x2b,0x6c,0xbd,0xd2,0xfd,0x31, +0xfb,0x36,0x4d,0x7f,0x0e,0x46,0x54,0x68,0x7a,0x6d,0x97,0xcd, +0xd2,0xde,0xc0,0x59,0xc2,0x3c,0xf6,0xe4,0x54,0xbf,0xa5,0x9e, +0x1b,0x0f,0xb4,0x1d,0xeb,0x0f,0xbc,0x65,0x7e,0x94,0x0f,0xae, +0xf7,0xf0,0x75,0x3b,0xe6,0xe6,0xa7,0x02,0x47,0xdf,0x74,0xce, +0x04,0x1d,0x7d,0xd4,0x51,0xae,0xcc,0x09,0x67,0x1d,0x7c,0xed, +0xfd,0x9d,0x02,0x63,0xa4,0x7c,0x49,0x74,0x49,0x6c,0x49,0x1c, +0x87,0xf9,0x73,0x59,0x2a,0xd1,0xee,0x32,0x0d,0x49,0x4a,0xf6, +0xd9,0xca,0x16,0xc5,0x17,0x25,0x14,0x25,0xc6,0x2d,0x4c,0x5b, +0x5f,0xac,0xeb,0x61,0x64,0x6f,0x69,0x64,0x5d,0x66,0xc9,0xb7, +0xd6,0x55,0xd6,0x17,0x34,0x71,0x1a,0xbd,0xbf,0xd8,0x03,0x3f, +0x9e,0xa2,0x46,0x7c,0xa7,0x04,0x9d,0x0b,0x09,0x15,0x45,0x36, +0x2d,0x68,0xf3,0x33,0x68,0xb5,0xa0,0xd6,0x73,0x58,0x0a,0x13, +0xea,0x5a,0xac,0x81,0x92,0xe6,0xeb,0x86,0x5b,0x71,0xa2,0x19, +0x4c,0x5c,0x85,0x5b,0x4c,0x61,0xcb,0xd2,0x81,0xeb,0x25,0xb8, +0xc2,0x14,0x56,0x2c,0x47,0x2d,0x53,0xd0,0xc2,0xef,0x58,0x58, +0x22,0x5f,0x46,0x56,0x4d,0x79,0xcc,0x7e,0x40,0x15,0xb2,0x74, +0xca,0x33,0xda,0xe9,0xef,0xe4,0xe7,0x48,0x42,0x66,0x5c,0x56, +0x54,0xba,0x6e,0x34,0x1f,0xb4,0xc7,0xcf,0xeb,0xa8,0x37,0x75, +0x45,0xd1,0x41,0xa8,0x16,0x1c,0x18,0xf1,0x15,0x0a,0xc4,0xe3, +0x98,0x3b,0xed,0x15,0x07,0x3e,0x1f,0xba,0xa6,0x80,0xb6,0x3e, +0x6a,0xe3,0x10,0x19,0x0c,0xa1,0x23,0x6a,0xe7,0x6b,0xeb,0xe7, +0xa0,0xec,0x57,0x59,0x4c,0x59,0x6c,0x59,0x3c,0x87,0x85,0xd3, +0x59,0x2a,0x0b,0x1f,0xfe,0xb7,0x5f,0x25,0xf1,0xc5,0x89,0xc5, +0x89,0xdc,0xbb,0x53,0x04,0x14,0xc2,0x46,0x54,0xb0,0xe2,0x37, +0x30,0x99,0xe4,0x25,0xe4,0x24,0x67,0xa5,0xe6,0x1e,0xca,0x3d, +0x98,0x73,0xd0,0xc6,0xc3,0x64,0xaf,0xee,0x81,0x4c,0x3b,0xbe, +0x3f,0xbd,0x27,0xaf,0xa9,0xa4,0x70,0x4f,0x81,0x77,0xae,0x77, +0x69,0x19,0xef,0x9d,0xed,0x99,0xe5,0x91,0x59,0x55,0x56,0x58, +0x95,0xd6,0xc8,0x15,0xe3,0x6a,0x56,0x59,0x38,0x39,0x3c,0xde, +0x26,0x81,0xf7,0x75,0xdd,0xeb,0xe6,0xe6,0x71,0x30,0xfe,0x60, +0xec,0xa1,0x58,0x0f,0x17,0x3e,0x39,0x20,0xd9,0x3f,0xd9,0xff, +0xe0,0xd1,0x03,0xc7,0xf6,0x53,0x87,0xe9,0xb8,0x46,0x8e,0xb8, +0xed,0xf3,0xf2,0xdc,0xeb,0x91,0xe1,0x99,0xe6,0x99,0x1a,0x41, +0xff,0x84,0x47,0x70,0x3a,0xf8,0x81,0x34,0xb8,0x77,0x5b,0x95, +0xdb,0x97,0x57,0xf1,0x8e,0x15,0x7a,0x8d,0xd6,0xb9,0x5c,0x20, +0x56,0x10,0xdb,0x80,0xd8,0x72,0x75,0xd8,0xa1,0x87,0x52,0x56, +0x23,0x6b,0xff,0x6d,0x35,0x0a,0x4e,0x8d,0x09,0x54,0xb5,0xbc, +0x67,0x0d,0x12,0x95,0x3c,0xaa,0x95,0x32,0xde,0x52,0x93,0xe6, +0x79,0x39,0x5b,0xdb,0x72,0xf9,0x7d,0xbd,0xc6,0xef,0x1c,0x9a, +0x39,0x31,0x0a,0x43,0x48,0xe5,0xe5,0xa2,0x5f,0xe3,0xaf,0x1b, +0xc4,0xf1,0xfe,0xfa,0x6e,0x8b,0x6d,0xa5,0xdc,0x28,0x41,0x4b, +0x1e,0x4c,0x60,0x0a,0xd8,0x25,0xa5,0xc3,0x37,0xea,0x5e,0x4d, +0xf8,0xf5,0x21,0xb4,0xf1,0xc1,0xb5,0x67,0x54,0x7c,0xf4,0x1c, +0xd6,0xd9,0x5b,0x36,0x39,0xf1,0x55,0xcd,0xc5,0xd7,0x92,0xdb, +0x39,0xfc,0x01,0xff,0x1a,0xb0,0xa8,0x3b,0x6d,0xee,0x91,0x9b, +0x5d,0x5b,0xbe,0x58,0x74,0xb0,0x0c,0x06,0x0f,0x58,0xd4,0xee, +0x3f,0x16,0x2d,0x8d,0x2d,0xa3,0x9e,0x52,0x30,0xe3,0x8b,0x45, +0xeb,0x93,0x28,0xbf,0x83,0x76,0xb6,0x38,0xbe,0x38,0x81,0x5a, +0x54,0xf0,0x11,0xc6,0x91,0x02,0xdb,0x52,0xfd,0x54,0xcb,0xd6, +0x54,0xfe,0x60,0xbd,0x53,0xaf,0x5b,0x25,0x87,0x9b,0x71,0x34, +0x09,0x2e,0xf2,0xad,0xf1,0x2d,0x34,0x09,0xe2,0xe3,0x5c,0xe2, +0xed,0x22,0x76,0x2b,0x0b,0xb9,0x6f,0x23,0x5a,0x4c,0x5c,0x45, +0x74,0x6d,0x78,0x05,0xcd,0x83,0xfe,0xb8,0x8a,0xc5,0x9d,0x36, +0xb8,0x7c,0x21,0x7e,0xa7,0x56,0xb3,0xeb,0xe2,0x2f,0xb5,0x7f, +0x65,0x02,0xa3,0x22,0xec,0x62,0xce,0xe8,0x85,0xac,0x0a,0xb4, +0xe4,0x76,0x1f,0x3f,0xea,0xe7,0x38,0x7e,0x2b,0x13,0x6b,0x20, +0xb9,0xc6,0x5c,0x2a,0xc8,0xb8,0x14,0xab,0x1e,0x77,0x31,0xe2, +0xc1,0x39,0xe0,0x38,0x3d,0x26,0xb6,0x3a,0xa6,0x21,0xac,0x8c, +0x9b,0x0f,0xb3,0xc9,0x49,0xe7,0x40,0x27,0x7f,0x47,0x0e,0xdf, +0x51,0x86,0x24,0x2c,0xc0,0x65,0x24,0xc4,0x39,0xd8,0xd1,0xcf, +0x8e,0x13,0xd5,0x99,0xb0,0xb2,0xd0,0x72,0xe5,0x43,0xf4,0x6b, +0x68,0x4f,0x12,0xdc,0x53,0xcc,0xa2,0x5c,0xaa,0x93,0xf8,0xc0, +0xb2,0xc3,0x0d,0x3e,0x05,0x1c,0x7e,0xbf,0x97,0x24,0x58,0x24, +0xec,0x88,0xd4,0x6d,0x88,0xe3,0x83,0x7a,0x7d,0x2f,0x1d,0x6d, +0xe2,0xf0,0x38,0x9e,0x24,0x39,0xd7,0x52,0x5e,0x44,0xfe,0xa8, +0x2c,0xe5,0xb6,0xe5,0xf0,0x0a,0xef,0x9d,0x1c,0xcc,0x06,0x07, +0x12,0xa9,0x17,0xb9,0xea,0x8c,0x56,0x6b,0x28,0x7f,0xe6,0x6a, +0xf0,0xc3,0x80,0x6e,0x6a,0xe8,0x46,0xe1,0x16,0x49,0x4f,0x4d, +0x49,0x4b,0x4e,0xcf,0x30,0xcb,0xb7,0x29,0xb7,0x37,0x77,0xd4, +0x71,0x5b,0xe5,0x4a,0x59,0xdc,0xcf,0x25,0xd7,0x4a,0xda,0x6b, +0xda,0xac,0xae,0xd8,0x3d,0x70,0xcc,0x6e,0xe2,0x37,0x95,0xe8, +0x96,0x99,0x57,0x35,0xb7,0x94,0x5e,0xca,0x7a,0xc2,0x75,0x36, +0x63,0x2a,0x13,0x97,0x1d,0x93,0x1d,0x95,0x6d,0x1c,0xc3,0xbb, +0xaf,0xb0,0x5c,0xbf,0x89,0xe6,0x0b,0xf1,0x0f,0x72,0x74,0xa7, +0x9d,0x54,0x66,0x52,0xee,0xc8,0xa7,0xa5,0x52,0x41,0x91,0xc5, +0xe1,0x54,0xf0,0x81,0xd9,0x78,0x90,0x8d,0x49,0x88,0x4e,0x88, +0x4a,0xe4,0x20,0x93,0xd1,0x3c,0x65,0x70,0xc2,0x41,0xcd,0x21, +0xc4,0xcf,0xdf,0x62,0xbc,0x15,0x93,0x68,0x29,0xa9,0x65,0xee, +0xa5,0x17,0xf7,0x47,0xaa,0x47,0xb4,0x9c,0xbf,0xfc,0x87,0x2a, +0x76,0x31,0xa1,0xb1,0xa1,0xb1,0x17,0x62,0xb8,0xc2,0x3a,0x20, +0x96,0x6d,0x0d,0xf0,0x7d,0x23,0x7e,0xdf,0x68,0x6c,0x81,0x44, +0xf9,0x32,0xde,0x02,0xc6,0x3b,0x31,0xf2,0xc9,0xa7,0xc9,0xc1, +0x9d,0x9e,0x26,0xbb,0x6c,0x6c,0x6b,0xdc,0x9b,0xf6,0x77,0x5e, +0x08,0xbd,0x10,0x7a,0x3e,0x8c,0xc3,0x17,0xb8,0x99,0xec,0x40, +0xfe,0x0a,0x2b,0x37,0xc5,0xbf,0x49,0x0b,0x62,0x27,0x0b,0xa3, +0x43,0xe1,0xeb,0xb0,0x67,0x91,0x87,0x9a,0x79,0x1f,0xd4,0xc3, +0x9a,0x93,0x78,0x40,0x79,0x5c,0xfc,0x6b,0x90,0x9c,0xbb,0x00, +0x12,0x75,0x43,0x71,0x88,0xa9,0x30,0x44,0x5f,0x5c,0x63,0x2c, +0xac,0xd9,0x84,0x32,0x36,0xc1,0x58,0x59,0x3e,0xa4,0x3a,0x39, +0xa1,0x54,0xfd,0x47,0x61,0x51,0x9b,0xb8,0xa8,0x87,0x86,0x74, +0x18,0xb5,0xdc,0x03,0x18,0x53,0x0a,0x3f,0xc4,0xc1,0x0c,0xae, +0xbf,0x17,0xfb,0x98,0xc4,0xd6,0xd8,0xd6,0xc8,0x16,0x59,0x14, +0x7f,0x08,0xbf,0x76,0xc1,0x51,0xba,0x38,0x88,0xcb,0x47,0x3b, +0x36,0x26,0x23,0x2a,0x33,0x2a,0x4b,0x3f,0x95,0x0f,0x74,0xf3, +0xf7,0xf0,0xf5,0xe0,0xd0,0xd0,0x00,0x96,0x31,0xd6,0x9b,0xf4, +0x76,0x6e,0x31,0xa7,0x10,0x54,0x9d,0x5f,0x5e,0x52,0x52,0xc1, +0x81,0x1b,0xe3,0xea,0x6c,0xee,0x6e,0x7b,0x88,0x93,0xb1,0x6b, +0x82,0xd6,0x1e,0xdf,0x79,0x22,0xcc,0x88,0xef,0x0f,0xbb,0x17, +0x71,0x3f,0x8a,0xc3,0x69,0x94,0x27,0x24,0x1a,0x51,0xe2,0x5b, +0x9f,0x92,0x4a,0x51,0x7c,0x22,0xfb,0x20,0xea,0x7e,0xcc,0xa5, +0xe8,0x90,0x76,0x5e,0x27,0x70,0x63,0xe0,0xfa,0x40,0x2e,0x83, +0x6d,0xcf,0xef,0xaa,0x2f,0x6e,0xe4,0x6a,0x30,0x94,0x4d,0xce, +0x4a,0xca,0x4e,0xc8,0xe1,0xc0,0x9b,0x09,0xf0,0x09,0xf0,0xf1, +0xf7,0xa9,0x34,0xe3,0x0b,0x6b,0xf3,0xdb,0xb3,0xbb,0x92,0x70, +0x70,0xe1,0xd4,0xf6,0x99,0xd2,0xd5,0x6b,0x37,0xe0,0xe0,0x2d, +0x45,0xfa,0xfc,0xc7,0xdb,0x8f,0xee,0xf5,0x3d,0x6a,0x59,0x73, +0x65,0xc3,0xd3,0x8d,0x25,0xdd,0xfc,0xd2,0xbb,0x3b,0xef,0x9a, +0xdf,0xe7,0x14,0xeb,0xe0,0x35,0xf9,0x31,0xfb,0x51,0xf9,0xdd, +0xba,0x76,0xf7,0x76,0xd7,0x16,0x97,0xa2,0x46,0xde,0x26,0xdf, +0x2a,0xdf,0x32,0xa7,0xbe,0xb0,0xba,0xa4,0xb8,0xd4,0xa6,0x9c, +0xb7,0xb7,0xb3,0x76,0x32,0x77,0xd5,0x2e,0xd6,0xca,0xd3,0xcf, +0xa0,0x79,0xaa,0xed,0x60,0xeb,0xde,0x56,0x2f,0x5d,0x97,0x1d, +0x9e,0x5b,0xf7,0x71,0xf2,0xd8,0x38,0xe2,0x8f,0x63,0xbc,0x90, +0xd3,0x9d,0x68,0xf4,0xc9,0x1b,0x18,0x3f,0x4a,0x3e,0x94,0x87, +0x59,0x19,0x93,0xc4,0x8a,0xb8,0xca,0xe8,0x4a,0xbd,0x58,0xde, +0x0b,0x87,0xcb,0xf0,0xab,0xe5,0xcb,0x6a,0xac,0xf9,0xc6,0xe6, +0xca,0xde,0xa2,0xcb,0x1c,0x5c,0xdd,0xc0,0xe0,0xf8,0x10,0xf4, +0xf4,0xc3,0x11,0x6a,0xdb,0x83,0x3d,0x3d,0xb4,0xc6,0x2b,0x77, +0x7f,0x4b,0x25,0x30,0x8b,0xf9,0xb5,0xa6,0xe9,0x7d,0x8c,0x7a, +0x02,0x7c,0x17,0x01,0xf6,0xb0,0x4a,0x15,0x86,0xb1,0x8a,0x42, +0xc5,0x51,0xf2,0x1b,0x1c,0x96,0x1f,0xc0,0x3a,0xc5,0x0d,0x16, +0x8e,0x0a,0xa1,0x04,0xd7,0x41,0x0a,0xac,0x63,0x28,0xc1,0x7e, +0x42,0xa0,0xab,0x8b,0x3a,0x0d,0x3e,0xb4,0x20,0xb0,0x0e,0x3b, +0x68,0x32,0x92,0xab,0x3e,0x25,0xdd,0xf8,0x46,0x4a,0x95,0x67, +0xa1,0x10,0x4e,0x60,0x07,0x0b,0xcb,0x13,0x81,0xcf,0x7b,0x57, +0xe5,0xda,0xc2,0x4f,0x77,0xc0,0xef,0x3c,0xd1,0xf4,0xc8,0x80, +0xce,0x0a,0x73,0xc3,0x49,0xcb,0x71,0x8c,0x5a,0x93,0xe5,0xaf, +0xa0,0x5a,0x0a,0xf3,0x2f,0x40,0x88,0x0a,0x58,0x8a,0xe9,0x97, +0x84,0x74,0x58,0xdc,0xcd,0xfc,0x33,0x14,0xea,0x89,0xa2,0xf9, +0xf2,0x6f,0x70,0x44,0x6e,0xcb,0xea,0x29,0xcb,0x28,0x6e,0x80, +0x68,0xa0,0x8d,0xdf,0x40,0xaf,0x61,0x03,0xd6,0xe2,0x06,0x66, +0xd4,0xdf,0xba,0xc2,0xdf,0xf4,0xf7,0x85,0xc3,0x52,0x6d,0x5c, +0x8a,0x5e,0x52,0x18,0xad,0xcd,0x62,0xba,0x2b,0xae,0xa3,0x9f, +0x9a,0xa4,0x56,0x6b,0x0e,0xd3,0x60,0x4c,0x27,0x4c,0x4b,0x04, +0x07,0x15,0x3a,0x4c,0x38,0xe1,0xd4,0xa2,0xa0,0xf5,0x6a,0xeb, +0x83,0x0e,0x1d,0xda,0x31,0x7e,0x86,0xb2,0xc2,0xd2,0x07,0xe6, +0x59,0x65,0xfd,0x8b,0x68,0xf5,0x98,0x5f,0x2f,0xfc,0x0e,0x16, +0xaa,0x58,0xc4,0x9c,0xcb,0x3b,0x97,0x5f,0xa8,0xda,0xcf,0x8a, +0xd9,0xa0,0x4f,0x14,0x37,0xfa,0x07,0x3a,0xcf,0xea,0xe2,0xdd, +0xff,0xf4,0x9b,0xde,0xfb,0xee,0x7f,0x7a,0x3b,0x4a,0xfe,0x86, +0x52,0x58,0x85,0x35,0x7e,0x90,0x5b,0x33,0x5a,0x60,0x4d,0xc4, +0x27,0x2f,0x85,0x27,0x8c,0xf8,0x44,0x59,0x97,0xea,0xc9,0x1c, +0xf1,0x09,0x23,0x1c,0x40,0x1d,0x72,0x2e,0xe6,0x6c,0x4c,0xac, +0x6a,0xbf,0x8e,0x16,0xbb,0x1b,0x97,0xc9,0x60,0x11,0xeb,0x8b, +0x93,0xa4,0x1b,0x70,0xd6,0xb6,0x22,0x4a,0x1b,0x57,0xde,0xbe, +0xf1,0x3e,0x09,0x56,0x70,0x14,0xb0,0xcf,0x2d,0x3e,0xa9,0x13, +0x68,0xc1,0x19,0x06,0x1e,0xf2,0xd7,0xa3,0xed,0x8b,0x97,0x4a, +0xfe,0x64,0x7e,0x29,0xc9,0xbf,0x1f,0xaf,0x1e,0x7b,0xf9,0xc2, +0x55,0x98,0xa4,0x2a,0x3a,0xe3,0x2e,0x62,0x75,0x4c,0xea,0xa7, +0x4b,0x53,0x58,0x08,0xcc,0xef,0x10,0xc7,0x1a,0xc2,0x6a,0x8c, +0x60,0xb5,0xfc,0x77,0x04,0xea,0x07,0x2b,0x67,0xdc,0xbe,0x4f, +0x81,0x8d,0xa5,0x9f,0x0a,0x29,0xf5,0x53,0xf7,0xa6,0x23,0xa7, +0x2b,0x3f,0x88,0xe7,0x14,0x37,0xd9,0xbf,0x07,0xcb,0x2f,0x13, +0xf1,0xa1,0x0c,0xa2,0x29,0xeb,0x38,0xaa,0x98,0xd5,0x2b,0xbc, +0x83,0x0d,0x7b,0x19,0x1c,0xab,0xb5,0x64,0xce,0x62,0xb5,0x6a, +0xb3,0x97,0x7f,0x36,0x5c,0x0b,0x7d,0xa3,0x12,0xc1,0x44,0xcc, +0xea,0xd8,0xf2,0x7c,0x5e,0x5d,0x3d,0xbf,0xe0,0xf7,0x0d,0x4f, +0x61,0xac,0x6a,0x16,0x6c,0xa1,0x2c,0x63,0x05,0x9b,0x44,0xc5, +0xfc,0x14,0xe5,0x23,0xd7,0x7a,0x75,0xe1,0x1e,0x06,0x51,0x96, +0x91,0xcc,0x2a,0x34,0x30,0x8e,0x20,0x0f,0xa9,0x54,0x6e,0x22, +0xaf,0x34,0x0b,0x8f,0x5d,0xc8,0x33,0xa3,0x84,0x7f,0xe4,0x77, +0xc8,0xee,0x05,0xeb,0xe6,0xe2,0x82,0x19,0x25,0x86,0x3c,0xcc, +0x7e,0xff,0xe4,0x69,0x2e,0x0c,0xe5,0x22,0x98,0xec,0x29,0xbf, +0x2f,0x80,0x45,0x38,0xa8,0xb4,0x93,0xc7,0x39,0x7f,0xcd,0x7b, +0xe5,0xfc,0x92,0x13,0x6b,0xff,0xe1,0x69,0x4b,0x77,0xc9,0x93, +0x31,0x45,0x21,0x67,0xc1,0x9e,0x8a,0x62,0x9c,0x01,0x65,0x94, +0xd4,0xc0,0x2e,0x8c,0x22,0xf0,0xac,0x0b,0xa9,0xa2,0xf9,0x80, +0x13,0x09,0xcc,0xc0,0x07,0x38,0x83,0x11,0xcc,0xc0,0x97,0x88, +0xdf,0xf7,0x09,0xdf,0x83,0x09,0x1e,0x42,0x8e,0x4d,0x90,0x4a, +0x5e,0xd1,0xb6,0xa5,0x35,0xaa,0x43,0x96,0x18,0xa3,0x7c,0x9a, +0x29,0x11,0xf6,0x90,0x92,0x1e,0xb0,0xc3,0x08,0x18,0xae,0x8b, +0xc3,0xf1,0x28,0xda,0x75,0xbb,0xb0,0xe2,0x08,0xe8,0x21,0x8a, +0x5f,0x2f,0xfe,0x06,0x46,0xf2,0x33,0xac,0x14,0x7f,0x26,0x38, +0x01,0xf2,0x60,0x02,0x23,0xbc,0x47,0x63,0x22,0xae,0x83,0xef, +0x84,0x75,0x8c,0xe2,0x28,0x26,0x13,0xca,0xf2,0xae,0xe1,0x04, +0x46,0x7e,0x19,0x4a,0x88,0xf8,0x48,0x06,0x2b,0x98,0x53,0xb8, +0xdc,0x88,0xea,0xb4,0xcd,0xb9,0x26,0x3c,0x18,0x3f,0xba,0x02, +0x23,0xce,0x03,0x05,0xf6,0xe1,0x98,0xc7,0x6c,0xcb,0x3c,0x74, +0x59,0xed,0x0d,0x53,0x95,0x10,0x5f,0xa5,0x0e,0xcb,0x58,0x23, +0xe5,0x46,0xe1,0x65,0xac,0x53,0x70,0x64,0xa9,0x3a,0x24,0x81, +0x1e,0x05,0x31,0x4e,0x7e,0x8f,0x78,0xae,0x5a,0xbf,0x08,0xe7, +0xaf,0x28,0xa4,0xe6,0x98,0xf6,0xe4,0xd5,0x8b,0xb4,0xd7,0xd4, +0x1a,0x69,0xb3,0xdf,0x2d,0x86,0x19,0xcb,0x8b,0x3a,0x78,0x9c, +0xf5,0x64,0xc9,0x2f,0xee,0x3f,0x71,0x62,0xb7,0x42,0x41,0x8d, +0x61,0x4b,0x03,0x2e,0x55,0x19,0x70,0x0e,0xca,0x80,0x9b,0x49, +0x1d,0x6f,0x26,0x03,0x01,0x68,0x49,0xa0,0xa6,0x0d,0x6b,0x18, +0xf8,0x07,0xbf,0x27,0xa2,0x9e,0x01,0xd5,0xcd,0xee,0x96,0x66, +0x32,0x99,0xb5,0xb2,0x82,0xe8,0xa3,0xee,0x2e,0x10,0x65,0xdd, +0xf0,0x08,0xa7,0x31,0xed,0x2d,0x75,0xdd,0xd9,0x4d,0x9c,0xc2, +0x2f,0x94,0xc0,0x4c,0x3a,0x26,0xf4,0xdb,0x6f,0x35,0x08,0x2c, +0x01,0x11,0x97,0xd0,0xd0,0x9c,0x04,0x6f,0x09,0x90,0x8b,0x7d, +0xf7,0x23,0x61,0x48,0xe1,0xf9,0xc2,0x0b,0x05,0x17,0x38,0xca, +0x5f,0xb5,0xd2,0xf6,0x5d,0x52,0x03,0x96,0xa9,0x52,0xd6,0x10, +0xbb,0xcd,0x1a,0x27,0x4b,0x66,0x4d,0x64,0x3d,0x83,0x22,0x0b, +0xd5,0x61,0x34,0x5b,0x15,0x5a,0x11,0x56,0x12,0x1a,0x77,0x34, +0xce,0x27,0xf6,0x68,0x6d,0x09,0x6f,0x74,0x73,0xeb,0x3d,0xad, +0xce,0x5d,0x6e,0x7c,0xa9,0x5b,0xb9,0x43,0x89,0xdd,0xb2,0x40, +0x94,0x04,0x4f,0x3d,0x51,0xd9,0x53,0x7c,0x29,0xbb,0xcf,0x30, +0x99,0xf7,0xdc,0xe1,0xb0,0xc5,0x62,0x3b,0xe7,0xb5,0xe7,0xcc, +0xfe,0xf1,0x61,0x06,0x75,0xe7,0xda,0x2f,0x74,0x5f,0x50,0x09, +0x5a,0x6e,0xa1,0x8f,0x12,0x53,0x0e,0x6b,0x84,0x19,0x34,0xb4, +0x2e,0xfd,0x06,0xd6,0x34,0xb4,0xf4,0x95,0xa1,0x35,0x8d,0xfa, +0xd0,0x34,0x86,0xe2,0x2f,0xf5,0xa1,0x69,0xb4,0xbd,0xd3,0x18, +0xf9,0x0d,0x9c,0x4e,0x66,0xe5,0xaf,0x2e,0xd9,0x56,0x7d,0xab, +0xbd,0xb5,0xbf,0xfc,0x36,0x85,0xdc,0x26,0x36,0x35,0x27,0x39, +0x2f,0x3e,0xdf,0x20,0x89,0xb7,0x59,0xba,0x79,0x0d,0x0e,0xdb, +0x59,0x68,0xc5,0x97,0xa6,0x15,0x65,0xe4,0x67,0x95,0x59,0xd5, +0xda,0x36,0x3b,0x6e,0xb2,0x9d,0xe7,0x84,0x23,0x3d,0x52,0x8d, +0x79,0x18,0x5f,0xf4,0xa1,0xea,0xa7,0x96,0xbb,0xe6,0x2f,0x6c, +0x61,0xd0,0x6e,0x4e,0x5c,0x02,0x0f,0x48,0x42,0x82,0x04,0xd2, +0x19,0x57,0x63,0x2b,0x73,0x2d,0x6b,0xc3,0x0a,0xab,0x5a,0xfb, +0x26,0xaa,0x41,0xb5,0x85,0xe7,0x04,0x0e,0x37,0xe3,0xe1,0xfb, +0x10,0xda,0x82,0xa1,0x37,0xf4,0x35,0x07,0x8a,0xae,0xac,0x43, +0x4f,0x33,0xf0,0x5c,0x89,0xe7,0x4d,0x84,0xcb,0xad,0x18,0xc7, +0x88,0x1d,0xe2,0x2d,0x3a,0x2e,0xa6,0xd4,0x49,0x63,0x94,0x4e, +0x6a,0xa9,0x74,0xd2,0x89,0x50,0xae,0xac,0x3a,0x30,0x11,0x7f, +0x27,0x30,0x91,0x7a,0xe6,0x44,0x46,0x18,0x4c,0xc9,0x03,0x04, +0xc2,0x2b,0x5c,0x8f,0xaa,0x03,0x13,0x60,0x12,0xaa,0x08,0x92, +0x07,0x2a,0xfa,0xd9,0x28,0x2b,0xfa,0x99,0x2b,0x2b,0x2f,0x4e, +0x84,0xef,0xe9,0xf7,0xba,0x94,0xcb,0xf5,0xbe,0x87,0xe9,0xa8, +0x2c,0x6d,0x7e,0x0e,0x14,0xa4,0x0f,0x6c,0x99,0xc8,0xb0,0x73, +0x61,0x27,0xd5,0x60,0xd4,0x94,0xf2,0x2a,0x1c,0xf5,0xc1,0x3f, +0xfa,0xf8,0x79,0xca,0xf9,0xfd,0xfc,0x24,0x27,0x6f,0xc2,0xc6, +0x76,0xdc,0xf8,0x41,0x77,0x0a,0x1a,0x18,0xd1,0x2c,0xb9,0x7f, +0xed,0x96,0x75,0x93,0x57,0x97,0x9a,0xf3,0x30,0xf6,0x7d,0x71, +0x5f,0xcc,0x03,0xea,0x4c,0xf0,0x17,0x1d,0xd4,0x6f,0xc3,0xde, +0xc4,0xff,0x59,0xe0,0xd9,0xc4,0xe3,0x10,0xb7,0x39,0x01,0x38, +0xe3,0x14,0x87,0xb3,0xd8,0xed,0x81,0xab,0xb4,0x57,0xa8,0x75, +0xd8,0x77,0x3e,0x4c,0x7a,0x1a,0x76,0x59,0x85,0x8a,0x8a,0xa3, +0x7d,0x54,0x8f,0xcc,0xe8,0x40,0x64,0x44,0x46,0xe1,0x4a,0xda, +0x84,0x06,0xe3,0x4b,0xc2,0x7c,0xc5,0x4a,0x71,0x3e,0x2b,0xc8, +0x21,0x9e,0x88,0x0d,0xaf,0x84,0x06,0x46,0x6c,0xc0,0x99,0x44, +0x68,0x98,0x26,0x36,0x50,0xa4,0xd5,0x11,0xd6,0x91,0x36,0x5c, +0xcf,0xfa,0xe6,0xf9,0xe5,0x05,0x15,0x70,0xb0,0xad,0x0d,0x73, +0x98,0x88,0x9c,0x88,0xdc,0xb0,0x3c,0x0e,0xb2,0xdb,0x30,0x89, +0x09,0xcd,0xbc,0x90,0x75,0x3e,0x5b,0xb9,0x18,0xc0,0xeb,0xa4, +0xd7,0xc9,0x3d,0x1c,0x1e,0x30,0x06,0x77,0x26,0xc4,0x33,0xc4, +0x2b,0x98,0xd2,0x70,0x6d,0x63,0x58,0xc3,0x04,0xb8,0xfb,0x79, +0x1c,0xf3,0xe2,0x70,0xb9,0x31,0x7c,0xcf,0xd8,0xeb,0x2a,0x77, +0x62,0x15,0x9b,0xf3,0x85,0x99,0x79,0xd9,0xd9,0xb9,0x9c,0x28, +0xe9,0x6e,0x83,0x34,0xe3,0x6e,0x61,0x10,0x9b,0x76,0x20,0xfd, +0x50,0xc6,0xe1,0xe2,0x06,0xde,0xa8,0xc6,0xa2,0xc5,0xa1,0x93, +0xa6,0x4a,0xd1,0x74,0xc0,0xfc,0x07,0xa8,0xf9,0x6f,0x28,0xcd, +0x1f,0xaa,0x34,0x63,0x2a,0x35,0xa3,0xb0,0x0c,0xb7,0x93,0x48, +0xf7,0x18,0xcf,0x78,0x4f,0x0e,0xbf,0x65,0xe2,0x73,0x63,0xf3, +0xa3,0x0b,0x38,0xf1,0xcc,0xc0,0xc3,0x01,0xea,0x4a,0xf4,0x13, +0x23,0xc1,0x8d,0x64,0xe4,0xa6,0xe6,0x27,0xd3,0x66,0x6f,0x67, +0x52,0xdc,0xd3,0x3c,0x32,0x69,0x1b,0xca,0x70,0x16,0x79,0x0d, +0x69,0xb3,0x59,0x4c,0x33,0x21,0x90,0x36,0x05,0xd3,0x28,0x70, +0xa5,0x08,0x37,0x08,0x74,0xc2,0x71,0x85,0x3a,0x1e,0x87,0x2a, +0x03,0x51,0xd5,0x42,0xfe,0xba,0x51,0x9c,0xcd,0xc0,0x69,0xb0, +0x20,0x62,0x61,0x8b,0x50,0xc8,0xcc,0x1d,0x66,0x2c,0x16,0xb6, +0xb1,0xae,0xa2,0x0a,0x11,0xde,0xc0,0x44,0xf1,0x0d,0xd3,0x3d, +0x8f,0x34,0x0a,0x3e,0x16,0xac,0x78,0x4f,0x9c,0x43,0x20,0x45, +0xbe,0x06,0x6d,0x71,0x2d,0x9b,0x64,0xa1,0xd4,0x65,0x0d,0x49, +0xf1,0x54,0x3e,0x9c,0x52,0x54,0xe2,0x55,0x16,0x36,0x81,0x37, +0x41,0x9d,0xae,0x5a,0x61,0x2c,0x4c,0x62,0xc5,0xb1,0x73,0x49, +0x13,0x3c,0x30,0xa7,0xf8,0xb0,0x55,0x1e,0x41,0x6e,0xeb,0x6a, +0xe0,0x19,0x63,0xe1,0x62,0x1b,0xab,0x68,0x51,0xf4,0xd3,0xce, +0xca,0xe4,0x01,0x18,0xa6,0x78,0xc4,0x82,0xb1,0x40,0xb5,0x9c, +0x2a,0x64,0x82,0x2a,0x23,0x24,0xa3,0x2a,0x49,0xce,0x8f,0x2f, +0x8c,0x2f,0x31,0x4e,0xe1,0xfd,0x5d,0x7c,0xec,0xf6,0xdb,0x73, +0xf8,0x8f,0x91,0xf0,0xbc,0x9d,0x11,0xc7,0xa4,0x11,0xff,0x62, +0x9f,0xe2,0xa3,0xd9,0xa6,0x07,0xf9,0xa4,0x3d,0x09,0xbb,0xe3, +0xdc,0x38,0x61,0xa4,0xb8,0x82,0x26,0x69,0xf1,0x28,0x76,0x81, +0xf3,0x26,0x8c,0x35,0x81,0x58,0x1c,0xd7,0x0b,0x04,0x32,0xdb, +0x30,0xf3,0x0e,0x0b,0x0b,0x21,0x9c,0x6c,0x12,0x25,0x77,0x58, +0xfc,0xdd,0x8b,0x80,0x2a,0x5e,0x42,0x55,0x46,0x6e,0x06,0xae, +0x64,0xbd,0x28,0xb9,0x47,0x81,0x62,0xb0,0x7c,0x2c,0x31,0x13, +0xae,0x34,0x63,0xd2,0x6d,0xc8,0x6b,0xc6,0xbc,0x7b,0xb2,0xf5, +0x18,0x67,0x06,0x71,0x1a,0xac,0x78,0x40,0x61,0x42,0x7e,0x87, +0x8d,0xf2,0x14,0xf4,0x55,0x20,0x0b,0x5b,0x84,0x1c,0x82,0x5f, +0x41,0x05,0x7c,0x45,0x19,0x22,0xba,0x10,0x31,0x02,0xb7,0x08, +0x11,0x8c,0xfe,0xc0,0x34,0x81,0xda,0x03,0x16,0x6f,0xad,0x21, +0xf0,0x15,0x3e,0x42,0xfa,0xff,0x54,0xcd,0x7e,0x99,0x31,0xc8, +0x32,0x48,0xe0,0x03,0x3d,0xfe,0x33,0x63,0xd0,0x98,0xec,0x9f, +0x7d,0xec,0xbf,0x33,0x06,0x7b,0x94,0x33,0x06,0x2b,0x4c,0x84, +0x8f,0xad,0x8c,0x18,0x86,0xaf,0x48,0xa9,0x30,0x6b,0x60,0xc6, +0x20,0x5d,0x39,0x63,0xe0,0x08,0x3b,0xc8,0x5c,0x71,0xd6,0x1f, +0x14,0xe9,0xb7,0x52,0xcd,0x27,0xae,0xb9,0xaf,0xbb,0x4e,0x9c, +0x63,0x28,0xcc,0xd9,0x41,0xc3,0xb0,0x43,0xee,0x0e,0x1d,0xf8, +0xf2,0x8a,0xb0,0x86,0x11,0x0f,0xa3,0x21,0xc1,0xe4,0x1f,0x21, +0x99,0x81,0x97,0x1b,0x08,0x16,0xfd,0x08,0x45,0x0c,0xbe,0xc4, +0x6f,0xc9,0x3a,0x4c,0xbe,0xcf,0xc2,0x83,0x71,0x50,0xb4,0x8e, +0x66,0x7d,0x6c,0x12,0x1d,0x49,0x83,0x50,0x63,0x79,0x11,0x5e, +0x2b,0x16,0xe3,0x6b,0x56,0xf8,0x08,0x07,0x89,0x58,0x73,0x55, +0xa8,0x61,0xc4,0x1a,0x1c,0x4e,0x84,0x9a,0x75,0x62,0x0d,0xcd, +0xf7,0xdf,0xca,0xef,0x12,0xf7,0xf9,0x9b,0xe6,0xe2,0x94,0x99, +0x25,0x34,0x79,0x4f,0x7c,0x7f,0xff,0xe7,0x6c,0x18,0xc2,0x85, +0x33,0x99,0x53,0x9e,0x2d,0xa4,0x50,0x3b,0xa8,0x84,0x26,0xb6, +0xc9,0x6f,0x96,0xbe,0xde,0x4d,0x13,0xdb,0x2f,0xd8,0x4f,0xb0, +0xed,0x08,0x4e,0x33,0x42,0x56,0xad,0xdd,0xae,0xf2,0xf7,0xd4, +0x3f,0xa2,0x60,0xb6,0x0a,0x65,0x4e,0x71,0xc8,0x30,0x89,0xca, +0x02,0x8f,0xf5,0x29,0x69,0x4d,0xea,0xf2,0x12,0x4c,0x61,0xc1, +0x11,0x4f,0x11,0x9c,0x0b,0x7a,0x30,0x97,0x01,0x33,0x65,0xde, +0xeb,0xef,0xc2,0x7e,0x06,0x3f,0xe2,0x51,0x72,0xbe,0xe3,0xdc, +0xc5,0x9b,0xaa,0x34,0x6e,0xf5,0x19,0xa8,0x3a,0x4d,0x44,0xbe, +0x57,0xe0,0x61,0x1b,0x1e,0x9e,0xa4,0xdc,0x6f,0xf9,0x9c,0xa9, +0x4b,0x56,0xee,0xa6,0xcb,0x11,0x0f,0xd0,0xcc,0x47,0x45,0x45, +0x02,0x41,0xff,0xc3,0x48,0x36,0xa0,0x8a,0xda,0xfe,0x8a,0x3d, +0xd5,0x7b,0xaa,0xaa,0xf3,0xeb,0xab,0x8a,0xca,0x5c,0xaa,0x79, +0x77,0x27,0x1b,0x7b,0x7b,0x8f,0x03,0x45,0x07,0xf2,0x0f,0x67, +0x5a,0x78,0xf2,0xb9,0xce,0x45,0x66,0x45,0xc6,0xb2,0x03,0x5a, +0x07,0x74,0x8e,0x70,0x90,0x01,0x3d,0xc2,0x7a,0x9c,0xf7,0x5a, +0x77,0x36,0xce,0x55,0x58,0xb1,0x87,0x4e,0x1c,0x3e,0x71,0xe4, +0x64,0xbc,0x2e,0xff,0x21,0x07,0xbe,0xae,0xfc,0xb5,0x2a,0xd1, +0x3b,0xd1,0x3b,0x6e,0x6f,0x45,0x0e,0x1f,0xec,0x17,0xec,0x17, +0xe4,0xd7,0x6c,0xc7,0xdf,0xfa,0x54,0xfa,0x2a,0x19,0xbe,0xe3, +0x20,0x0e,0x43,0x51,0x63,0x60,0x9b,0xf3,0x5c,0xa6,0x25,0x21, +0xb5,0x55,0x5d,0x9e,0x27,0x0e,0x63,0xa1,0x97,0x2a,0x21,0x3c, +0x0b,0x3a,0x70,0x96,0x11,0xad,0xf4,0x08,0x8e,0xc3,0x0b,0x30, +0x8e,0x85,0x0b,0xca,0x2a,0x76,0x3f,0xd0,0xeb,0x1f,0x58,0xc1, +0x0c,0x65,0x24,0xac,0xf3,0xbc,0xb2,0x73,0x67,0x51,0xca,0x8c, +0x82,0x27,0x82,0x23,0x09,0x4c,0x08,0x3e,0xef,0x17,0x70,0xcc, +0x8f,0x0f,0x01,0x55,0x98,0xde,0x8d,0xd3,0x41,0x4a,0x65,0x2d, +0xae,0x92,0xc2,0x02,0xc6,0x17,0xc7,0x58,0xe3,0x04,0xa4,0xa0, +0x5b,0x6d,0xc1,0xff,0x06,0x4c,0x29,0x0c,0x8e,0x78,0xc7,0x45, +0x88,0x55,0xbd,0x42,0xd8,0xbf,0xc5,0x58,0x3f,0xe0,0x92,0xaa, +0x2a,0x89,0x90,0x89,0x8f,0xc9,0x82,0x17,0x6b,0xe1,0x6b,0xd3, +0xf7,0x7d,0xc0,0x14,0xc1,0x88,0x18,0x18,0xc5,0x35,0xe2,0x69, +0x36,0xa6,0x3a,0xb2,0x3a,0xac,0x52,0x3b,0x92,0x3f,0x8a,0xc4, +0x1a,0x27,0xad,0xc0,0xaf,0x9b,0x6c,0xf9,0xc6,0xab,0x55,0x4f, +0xf3,0x9e,0x73,0x60,0xca,0xec,0xa3,0x5c,0x61,0x08,0xfa,0x63, +0x05,0x1a,0x55,0xc8,0x78,0x50,0xf9,0xfd,0xaf,0xf7,0x37,0x61, +0x70,0xdb,0xd4,0x7b,0x38,0xec,0xe9,0x62,0x9a,0x30,0x3e,0x0a, +0xf9,0xe4,0x63,0xef,0x64,0xf0,0x95,0xa2,0x2f,0x8e,0xfb,0xf2, +0x43,0x02,0xbe,0x7a,0xe8,0xbb,0xad,0x1d,0x47,0x80,0x9e,0x94, +0x2a,0x9d,0xe9,0x06,0x94,0x53,0x1c,0xc3,0xd1,0x76,0x38,0x71, +0xe6,0x40,0xd5,0xd8,0x07,0x30,0xa8,0xe0,0x4b,0xd5,0xd8,0x9c, +0x6e,0xe1,0xc2,0xbf,0x0d,0x7d,0x8a,0x8b,0x2a,0x2a,0x57,0xc2, +0xac,0xa0,0xc4,0xe3,0xe7,0xfd,0x28,0xca,0xfb,0x4b,0x42,0x80, +0xff,0x28,0xfd,0x49,0xfc,0xd8,0x7b,0x47,0xd0,0xed,0x13,0x75, +0x05,0x0f,0x90,0xe0,0x55,0x38,0xc3,0x48,0x7b,0xa9,0xf5,0x20, +0x02,0xc6,0x51,0x84,0x4a,0x13,0x7e,0x24,0x9f,0x05,0xa6,0x43, +0x64,0x7e,0xd7,0x9e,0x8f,0x9f,0x0d,0xe1,0xf3,0x44,0x16,0xd7, +0xa0,0x07,0xf9,0x24,0xa8,0x4f,0xea,0xfb,0x04,0x36,0x1d,0x68, +0xf3,0xa7,0xee,0x2c,0x51,0xfd,0x4f,0xbd,0x59,0xa8,0x67,0x08, +0x7a,0x93,0x58,0xb9,0x01,0xb2,0xa4,0x4b,0x5c,0xfc,0xa7,0xce, +0x2c,0x71,0x92,0x4c,0x18,0xcc,0x1a,0x2e,0xc3,0x21,0x3b,0xd0, +0x6b,0x53,0x0e,0xed,0xe0,0xa9,0x5f,0xfe,0xec,0xad,0x04,0x09, +0x17,0x81,0x9d,0x17,0xa1,0x33,0x82,0xa9,0xa0,0xbd,0x91,0xe8, +0xc1,0xb9,0x45,0x59,0x5d,0x3c,0xee,0xbf,0x8b,0x5f,0x5d,0x91, +0x3d,0xe5,0x46,0xfd,0x6d,0x74,0x94,0xac,0xaa,0xdc,0xde,0x60, +0xd8,0x7a,0xf3,0x71,0xcb,0x5f,0xf9,0xf0,0x0d,0x35,0xa5,0x29, +0x18,0xc2,0x5a,0x36,0x78,0xd7,0x61,0xb3,0x43,0x4e,0x2d,0x87, +0xf8,0xac,0x96,0xb4,0xce,0xe8,0x36,0xfa,0xfe,0x21,0x18,0xac, +0x8f,0x83,0x29,0x31,0x4b,0x64,0xd1,0x73,0x2f,0x2e,0x58,0x87, +0xc3,0xd5,0x9a,0x6d,0xee,0xc3,0xd8,0x42,0x98,0x12,0x0a,0x5e, +0x2a,0x00,0xcc,0xbe,0x79,0xb6,0x2b,0xb4,0x35,0xf4,0xaf,0xd8, +0xde,0x71,0x7d,0x68,0xb2,0x87,0x2f,0x5b,0x5a,0xb7,0xf6,0xe2, +0x16,0x99,0xe1,0x66,0xcb,0xa5,0x0e,0x05,0x06,0xfc,0x2f,0x55, +0x3f,0x36,0x5f,0xea,0xeb,0x32,0xb8,0x69,0xfa,0xdc,0x9a,0x53, +0x0c,0x11,0x4a,0x08,0x35,0xd1,0x39,0xbf,0x00,0x3f,0x7f,0xea, +0x12,0x3c,0x65,0xf4,0x38,0xe6,0x8b,0x9d,0x67,0x19,0x80,0x3a, +0xe3,0x87,0xa3,0x77,0xe1,0xc4,0x19,0xc8,0x57,0x5a,0xf0,0x8f, +0x60,0x70,0xc1,0xa7,0x88,0xd7,0xca,0xea,0xbc,0xff,0x6b,0xe7, +0xe7,0x4a,0x3b,0x4b,0x20,0x1e,0x96,0x12,0x5c,0x43,0xdb,0xbc, +0x86,0xfa,0x59,0xaa,0x60,0x4b,0x82,0x13,0x43,0xce,0xf8,0x05, +0xf9,0x07,0xf0,0x27,0x60,0x3c,0x0c,0x6d,0xc3,0xa1,0x20,0x35, +0xa0,0x7e,0xf6,0x8d,0x31,0x70,0x8c,0x3f,0x8e,0x75,0xc4,0xe9, +0xab,0xf1,0xdb,0x0a,0x0b,0xfe,0xd2,0xbb,0xcc,0xf7,0x61,0xca, +0x95,0x62,0x49,0x9d,0x03,0x15,0x7f,0xcf,0x9c,0x3f,0xa9,0x76, +0x19,0x17,0x95,0x56,0x48,0xa0,0x51,0xd8,0x4b,0x70,0x1f,0x73, +0x1a,0xa7,0x7b,0xa2,0xba,0xd1,0xd2,0x2a,0x2b,0xbe,0xf3,0xf7, +0x42,0xf8,0x3e,0x12,0xd4,0x38,0x60,0x18,0x1c,0xe7,0x8b,0xa3, +0x3c,0x70,0x88,0x9a,0x47,0xe6,0xee,0x4c,0xd7,0x14,0x4f,0x13, +0xbe,0xf8,0x60,0xa5,0x57,0xa1,0x97,0x15,0x8e,0xd3,0x44,0x66, +0xfa,0x02,0x65,0x11,0x0e,0x47,0x30,0x79,0x09,0xa5,0xa7,0xe1, +0x77,0xae,0x42,0xd1,0x4d,0x7a,0xe4,0x4d,0x30,0x5e,0xfc,0x69, +0x26,0x93,0xa0,0x27,0xf9,0x89,0xa9,0x49,0x4a,0xa8,0x57,0x97, +0x8f,0xa3,0x6a,0x69,0x14,0xf4,0x09,0x0e,0x24,0x28,0x21,0xf8, +0x9c,0x5f,0xe0,0x80,0x15,0xc6,0xc3,0x37,0x9d,0xf8,0x0d,0xc8, +0xa4,0x28,0xc3,0x99,0x5f,0xac,0x30,0xd6,0x16,0x27,0x4e,0x47, +0x55,0xea,0x6d,0x8f,0x60,0x48,0xc1,0xe7,0xf0,0x3f,0x69,0x8b, +0x8b,0xba,0xbf,0xb4,0xf8,0xc2,0x49,0x6a,0x85,0x25,0xd4,0x0a, +0x42,0x0c,0x5e,0x25,0x0b,0x18,0xcf,0xe3,0xe1,0x05,0xea,0xf0, +0x19,0x34,0x7a,0x30,0x4d,0x20,0x52,0x91,0x60,0xb0,0x3e,0x4c, +0x63,0x4f,0xa3,0xf5,0x2e,0x3a,0x72,0x93,0x71,0x70,0x39,0x65, +0x16,0x0b,0x61,0x54,0xd3,0xbf,0x45,0x19,0x47,0x8b,0x43,0x18, +0xbd,0x9c,0x83,0x1d,0x6a,0xef,0x98,0xda,0xc4,0x94,0x2a,0x65, +0x29,0x55,0xc3,0x64,0xc9,0x5e,0xe1,0x3a,0xf1,0x5c,0x6d,0xbb, +0xd2,0x78,0x4b,0xb3,0x3b,0xdf,0x72,0xbd,0xf1,0x45,0xfe,0x13, +0x4e,0x1c,0x89,0x76,0xc4,0xeb,0xb6,0xe5,0x1f,0x8e,0x3d,0x26, +0x1e,0x7c,0x95,0x76,0xcd,0xa2,0x02,0xe5,0x59,0x7d,0xf1,0xc2, +0x2e,0x12,0x42,0xd9,0xce,0xf7,0x9d,0xf8,0xfd,0x97,0xb1,0x9b, +0x66,0x00,0x3f,0x28,0xc7,0x8e,0xc6,0xc8,0xac,0x81,0x18,0xb9, +0x0f,0x83,0xf2,0xff,0x8f,0x18,0x79,0x81,0xab,0x2b,0x2a,0x96, +0xc2,0x92,0x01,0x07,0x08,0x54,0x96,0x8e,0xa7,0x9c,0xfd,0x8e, +0xe0,0x04,0x77,0x28,0x71,0x54,0x21,0xf8,0xf6,0x11,0xbc,0x65, +0xf0,0xad,0x92,0x4a,0xbd,0x5d,0x82,0x6f,0x19,0xf8,0x19,0xcb, +0xc8,0xdb,0xd7,0xed,0x62,0xb8,0x11,0xbc,0x9f,0x2e,0x8e,0x34, +0x14,0x46,0xa2,0x25,0x65,0x58,0x49,0xff,0x3e,0x8b,0x4c,0xae, +0x53,0x07,0x23,0xf8,0xb6,0x83,0x15,0xf7,0xe0,0x50,0x52,0xba, +0xbb,0xc6,0xaa,0xcc,0xb4,0xb6,0x94,0x77,0x6e,0xb4,0x6d,0x70, +0x2c,0xa6,0xd1,0x5d,0x4d,0x99,0xba,0xde,0x4c,0xd4,0x7e,0x43, +0x5f,0xa6,0x1a,0xc1,0xd4,0xd9,0xbd,0xaf,0x41,0x5b,0xf9,0xb2, +0xb0,0x1d,0x17,0x32,0x62,0x34,0x5e,0xa0,0x6e,0x13,0x74,0xd6, +0x3f,0x80,0xba,0x8d,0x72,0x81,0xe1,0xe0,0x0e,0x1c,0x0c,0x7a, +0x32,0xda,0x1f,0x35,0x43,0x20,0xb4,0x3f,0x63,0x1c,0x70,0xf2, +0x7c,0xfc,0xae,0xc2,0x9c,0xbf,0xf3,0x29,0xf7,0x63,0xf8,0x4b, +0xda,0x9d,0x8c,0x2e,0x21,0xeb,0xdf,0xee,0x3c,0xc0,0x85,0x65, +0x15,0x12,0x41,0x07,0x0e,0x13,0x1c,0x81,0xd1,0x46,0x10,0x2d, +0x4e,0xa1,0x8c,0x3c,0xde,0x50,0xf9,0x74,0xa4,0x31,0x29,0xa9, +0x51,0x5d,0x50,0x79,0xda,0xbe,0x0c,0x46,0xb0,0xe2,0xd0,0x13, +0xc4,0x1b,0xc7,0x6b,0x21,0x3b,0x67,0x49,0xb9,0x05,0x5f,0x52, +0x52,0x58,0x96,0x5b,0xc5,0x89,0x83,0xbb,0x05,0x67,0x36,0xa3, +0x29,0xa9,0x35,0xa6,0x93,0x2a,0x46,0x71,0x36,0xd9,0xd3,0x6f, +0x7f,0xdb,0xae,0xdd,0xca,0x83,0xaf,0x34,0xaa,0xd4,0xc8,0xd6, +0xa2,0xa6,0xbe,0xf9,0xc5,0x53,0x94,0x10,0xea,0x3f,0xe0,0xda, +0x63,0xbb,0x70,0x2c,0x48,0xf5,0xa9,0x6b,0x2f,0x94,0xc1,0x74, +0x8a,0x4b,0x63,0x76,0x29,0xab,0x3a,0xfe,0x50,0x65,0xce,0x3f, +0x85,0x61,0x45,0x30,0x28,0xe2,0x0d,0x6d,0x65,0x69,0x0f,0x45, +0xd0,0x88,0x01,0x57,0x79,0x89,0x4b,0x2a,0x69,0xc0,0x14,0x50, +0x05,0xfe,0x0b,0x24,0x76,0x62,0xe2,0x73,0x5d,0x3c,0x86,0xfa, +0xe2,0x69,0xc1,0x59,0x38,0x4d,0xb5,0xf8,0x4c,0x6a,0xf7,0x97, +0x4a,0xbb,0x9f,0x1c,0x86,0x6f,0x5f,0x7f,0x19,0x80,0x59,0x74, +0x00,0x66,0xd1,0x01,0xc0,0xd1,0x78,0x9c,0x3c,0xcb,0x7d,0xd2, +0xd8,0xd3,0xec,0x54,0xc5,0x4b,0xad,0x36,0xd8,0x2e,0xdd,0xc3, +0x09,0xa3,0xae,0x93,0x6b,0xae,0xb7,0xec,0x2e,0x5b,0x14,0x37, +0xf1,0xda,0xb5,0x9a,0x35,0x9b,0x0a,0xa8,0xad,0xb5,0xe4,0xfa, +0xe4,0x48,0xeb,0xde,0x06,0xef,0x5a,0x8b,0xbd,0x7c,0x8e,0x4d, +0x96,0x65,0x92,0x19,0x27,0x52,0x22,0x40,0x8e,0xff,0xc7,0xc2, +0x27,0x40,0xe5,0x6d,0xfb,0x74,0xd0,0x97,0xa1,0x3e,0x7e,0x67, +0x04,0x23,0x68,0x58,0x8e,0x71,0xc4,0x29,0xcb,0x71,0x34,0xb5, +0xef,0xd5,0xf7,0x59,0x1f,0xc2,0x7e,0xa5,0x2d,0x4f,0xee,0x12, +0x42,0x95,0xf6,0x3d,0x7f,0x42,0xed,0xfa,0x80,0x7d,0x8b,0x92, +0xc8,0xcb,0x1b,0x77,0x9e,0x57,0xd3,0xc4,0x4c,0x7d,0xac,0x72, +0xea,0xbd,0xd9,0x2f,0xb7,0x95,0x34,0xf1,0xcb,0x3b,0xb5,0xee, +0x39,0x3e,0xe5,0x60,0x43,0x1b,0xfe,0xc0,0x14,0xd4,0xe6,0xb5, +0xa7,0xb5,0x98,0x66,0xf0,0x07,0x64,0xae,0x3b,0x5d,0xe8,0x2f, +0x9e,0xa4,0xe4,0xa7,0x0e,0xf3,0x75,0x36,0xaf,0x92,0x71,0xb0, +0x03,0xae,0x93,0xc3,0xf5,0xde,0x35,0x5e,0x15,0x56,0xde,0x7c, +0x8e,0x43,0xae,0x75,0xb2,0x0d,0x27,0xcc,0x11,0x27,0x93,0x16, +0xb4,0x7c,0xc3,0x96,0x46,0x94,0x44,0x66,0x47,0xed,0x6d,0xe0, +0xb7,0xed,0xc5,0xc1,0xfe,0x9b,0x4e,0xc5,0x9a,0xf3,0xf9,0xe7, +0xca,0x2f,0x54,0x84,0x71,0x8b,0xd0,0xc2,0x14,0x2c,0x66,0x60, +0xa3,0x09,0x34,0xd2,0x7c,0xb7,0x9d,0x4d,0x34,0x1c,0xa8,0x87, +0x90,0x98,0xac,0xac,0x51,0x08,0x59,0xad,0x98,0xf5,0x17,0x0d, +0xe6,0x18,0xf9,0x6e,0x32,0x93,0x3d,0x8e,0x26,0x66,0x20,0x63, +0x7d,0xd6,0x48,0x4d,0x70,0x84,0x5e,0xa1,0x19,0xff,0xb0,0xfa, +0x7a,0x73,0x59,0x57,0x78,0x64,0xd8,0x99,0xf0,0x13,0x30,0x0f, +0x25,0x7c,0x59,0x2d,0x4e,0x78,0xe7,0x1f,0x15,0x70,0x36,0x30, +0x90,0x8a,0x80,0x90,0x0b,0x51,0x89,0x11,0x59,0xa1,0xb9,0x2a, +0xb0,0xb9,0x19,0x37,0x7e,0x82,0x39,0xcd,0x94,0xb2,0x46,0x26, +0x47,0x26,0x85,0x27,0x9b,0x26,0xf1,0x7b,0xb5,0x1c,0x74,0x4d, +0xcc,0x6b,0x5d,0xf8,0xdc,0x9c,0xcc,0xfc,0xd4,0x42,0x4e,0xd8, +0x82,0x17,0xc9,0x23,0xe8,0x03,0x2d,0xec,0xfb,0x11,0x7e,0x6f, +0x16,0x8d,0xcc,0x5a,0xf0,0x77,0x53,0x33,0xc1,0xa8,0x99,0x5d, +0xa2,0x7c,0xe6,0x17,0xf6,0x0b,0x84,0x31,0x8f,0x44,0x0d,0xd2, +0x21,0x2e,0x7a,0xa2,0xb3,0x42,0x9c,0x68,0x08,0xff,0xc3,0x1a, +0x6c,0xc2,0x21,0xc6,0xe8,0xa6,0x97,0x69,0xc0,0x43,0xc8,0xed, +0x77,0x2d,0x95,0x34,0xb9,0x62,0xdc,0x45,0x88,0x0b,0x67,0x2a, +0xa7,0x01,0x67,0x0a,0xa7,0x35,0x32,0x28,0xc3,0xf1,0xea,0xc1, +0xaf,0x3b,0xa4,0xb7,0xa9,0xb7,0x5d,0x10,0xac,0xc9,0x09,0xf8, +0xe1,0x65,0xc7,0xbc,0x2f,0x05,0xd3,0xe9,0x5d,0xbe,0xff,0xb7, +0x60,0xfa,0x3c,0xfc,0x9e,0xa2,0xe7,0xdd,0xcf,0x79,0x1f,0x07, +0xa2,0x3a,0xf7,0x7f,0xeb,0xa5,0x3f,0x54,0xd6,0x4b,0x5f,0x0f, +0xb3,0x69,0x28,0x9d,0xf3,0x0f,0x50,0x01,0x41,0x4a,0x84,0x89, +0x98,0x62,0x02,0xce,0x94,0x7a,0xfd,0x0a,0xaf,0x09,0x78,0xe2, +0xeb,0x0e,0xfa,0x56,0x36,0x93,0x8b,0x7b,0x49,0x47,0x41,0x47, +0x65,0x55,0x9d,0x6b,0x05,0x6f,0xb7,0xcb,0xc2,0x51,0x46,0x69, +0xfe,0x92,0xcf,0xc4,0xd6,0xd2,0xca,0x51,0xea,0x9a,0x67,0xc3, +0x77,0x15,0xb7,0x54,0xd5,0x34,0x29,0xcf,0x9a,0x48,0x24,0x3d, +0xc5,0x3d,0x75,0xf5,0xad,0x2e,0x65,0xbc,0xb5,0x85,0xa9,0x83, +0x96,0x0b,0x47,0x75,0xe5,0x20,0x62,0x61,0x6a,0xb2,0x4b,0xcb, +0x21,0xcf,0x9a,0xef,0x2b,0xeb,0x6b,0xaa,0xef,0xe4,0x7e,0xc7, +0x51,0xe4,0x98,0xc7,0xb1,0x3d,0x87,0xa8,0x28,0xb1,0x14,0x35, +0x7a,0x5a,0x85,0xc9,0x26,0xbd,0x82,0x06,0x46,0x33,0x89,0xa9, +0x71,0x19,0xb1,0x59,0x1c,0x9e,0xc0,0x23,0x04,0x06,0x0b,0x14, +0x06,0x59,0x71,0xb2,0x29,0xa1,0x17,0x8c,0x38,0x99,0x26,0x8d, +0x80,0x81,0xbe,0x4e,0xf8,0xdc,0x3e,0x11,0x64,0x06,0xb4,0xaf, +0xa3,0x8d,0x28,0xdb,0xf5,0x47,0xe2,0x88,0xd3,0x56,0x0e,0xb8, +0xe4,0xe5,0xf7,0x59,0xef,0x43,0x7f,0xa7,0x7d,0x4d,0xeb,0xa4, +0xdc,0xf7,0x4b,0xa6,0xb8,0x8a,0x8b,0x4b,0x2b,0xb4,0x61,0x56, +0x70,0xe2,0xf1,0x33,0xfe,0x41,0x2a,0xf0,0xac,0x9c,0x34,0xe0, +0xca,0xc7,0x60,0x8d,0x0d,0x9d,0xd0,0x00,0x2e,0xab,0x50,0xc3, +0x12,0x34,0xd2,0x3a,0x61,0x11,0xa6,0xdd,0x82,0xb3,0x2d,0x62, +0x99,0x29,0x04,0x6e,0xc6,0x68,0x5c,0xd4,0x71,0x90,0x85,0x95, +0xf8,0xb5,0xf2,0xe3,0x96,0xac,0xe0,0x3a,0xae,0x81,0x7e,0x92, +0xa5,0xc3,0xb9,0x87,0x80,0x8a,0x78,0x81,0x0e,0xe4,0x4a,0xd1, +0xd7,0x44,0xf0,0x5d,0x48,0x47,0x56,0x30,0x32,0xee,0x02,0xe3, +0x9e,0x56,0xaa,0x25,0x1a,0x84,0x9b,0x84,0xba,0xda,0xd8,0x56, +0x1c,0xfb,0x93,0x74,0x25,0x7a,0xfe,0x24,0x5b,0x89,0xdf,0x9a, +0xc0,0xb7,0x38,0x96,0x45,0x6b,0x1c,0x4c,0xe1,0xeb,0xf8,0x59, +0xff,0x40,0xff,0xc0,0x81,0x54,0xca,0xb4,0x21,0x03,0xfa,0x06, +0x34,0xbc,0xc6,0x18,0x0f,0xf4,0x65,0x8c,0x13,0x4e,0x5b,0x41, +0xb3,0x9e,0x39,0x7f,0xe5,0x3d,0xcd,0x7a,0xbf,0x7e,0xc9,0x7a, +0xa1,0xff,0x8e,0xdb,0x1d,0x5c,0x57,0x56,0x2e,0x11,0x66,0x01, +0x95,0xec,0x9e,0x3f,0x82,0x27,0x03,0xf6,0xb8,0x8d,0x28,0x58, +0x13,0x28,0xd6,0xc4,0x83,0x78,0x59,0x88,0x83,0xcb,0xe8,0x77, +0x03,0x6a,0x18,0x7c,0xa3,0xac,0xd8,0xb5,0xe1,0x31,0x6c,0x60, +0x3a,0x57,0x91,0xc7,0xa0,0xb9,0x8a,0xc5,0x63,0x56,0x64,0x09, +0x6e,0x78,0xce,0xc2,0xa1,0x71,0xa0,0xb9,0x04,0x35,0x19,0x7c, +0x4d,0x83,0xfd,0xaf,0xec,0xdf,0x2a,0xfa,0x2a,0x77,0xd7,0xf0, +0xfa,0xce,0x4b,0x77,0xcf,0xd9,0xc7,0x09,0x93,0x1a,0xc8,0x83, +0xbd,0x2f,0x1d,0xae,0x3b,0x67,0xb7,0xf2,0xdb,0x4a,0x17,0x94, +0xaf,0x4f,0xe3,0x46,0x5d,0x17,0xd6,0x13,0x53,0xf9,0x87,0x16, +0x1c,0x0d,0x23,0x60,0x4a,0x1b,0x4e,0x81,0xe1,0x30,0xa4,0x45, +0xa1,0xc6,0xa6,0xa4,0x26,0xa6,0xc5,0xa6,0x18,0xa5,0xf1,0x36, +0xda,0xdb,0x74,0xe6,0x5b,0x96,0xd9,0xf0,0xe5,0x29,0xa5,0x59, +0x85,0xd9,0xdc,0x54,0x9c,0x69,0x4c,0xf9,0xf8,0x08,0x6a,0x30, +0xa8,0x21,0x38,0x9c,0x52,0x86,0xe1,0x2c,0xec,0x18,0x07,0x63, +0xe9,0xf5,0x58,0x06,0x76,0x8e,0xa3,0xb7,0xe0,0x71,0x38,0x2b, +0x4a,0x8c,0x95,0x58,0x3c,0x86,0x62,0x2e,0xf4,0xe1,0x08,0x42, +0xb1,0x72,0x04,0x8c,0x65,0x3a,0xe8,0x25,0xbd,0xe0,0xe9,0x1d, +0xc4,0x1f,0x30,0x9c,0x04,0x44,0x04,0x9d,0x0d,0xa4,0xc9,0x97, +0x0f,0xe9,0x83,0x15,0x2d,0xb8,0xe2,0xa1,0x74,0x0d,0x1a,0x9b, +0x82,0x06,0xe3,0xb9,0x63,0xf3,0xa6,0xd9,0x86,0x05,0x34,0x5f, +0x8e,0xfe,0xb1,0xfa,0x5a,0xdc,0x65,0x1a,0x2f,0x11,0xdd,0x60, +0xc2,0xc4,0x84,0x9d,0x8d,0x0c,0x51,0x83,0x41,0x9b,0x8a,0x1a, +0x24,0x82,0x17,0x70,0x14,0x3a,0x0e,0x3e,0xd4,0x5f,0x83,0x33, +0x4d,0x61,0x2c,0xeb,0xb9,0x6d,0xdd,0xe6,0x49,0xba,0x85,0x16, +0x94,0x5f,0x3e,0x6c,0xed,0x8f,0xbe,0x4b,0xbf,0x14,0xdb,0x03, +0xb1,0x11,0x4c,0xe4,0xa6,0xfe,0xad,0xa0,0xb6,0x21,0xbf,0x99, +0xc7,0x61,0x17,0x57,0xdc,0x70,0xbb,0x4a,0x43,0xec,0x8c,0x60, +0x47,0x21,0x31,0xe4,0xb4,0x7f,0x90,0x7f,0x90,0x12,0xd0,0x7f, +0x6a,0x5d,0x09,0x52,0x23,0x0a,0xe7,0x83,0x4c,0xde,0x32,0x81, +0xf8,0x9d,0x0b,0xce,0xda,0x8a,0x5f,0x95,0x99,0xf3,0xed,0xaf, +0x53,0xde,0x85,0x3e,0xa3,0x43,0x16,0xdd,0xfe,0x5f,0xf7,0x6b, +0xc7,0x65,0x25,0x65,0x12,0xf9,0x0c,0xf8,0x9e,0xb4,0xcc,0x64, +0x03,0x2b,0x82,0xaa,0x4e,0xd4,0x71,0x3d,0xcd,0xf8,0x3d,0x13, +0xd9,0x1c,0xd6,0x16,0xda,0x63,0x1e,0xca,0x9f,0xd4,0x0d,0x31, +0x0c,0x36,0xe3,0x34,0xcc,0x2e,0x33,0x41,0x56,0x81,0x76,0xfe, +0x8e,0xdc,0x14,0xd3,0x9f,0x19,0x4f,0x4d,0x47,0xa9,0x99,0x69, +0xa1,0x0d,0xdf,0xdb,0x5f,0x77,0xb3,0x88,0x52,0x63,0x8e,0xc9, +0x9b,0x5f,0xbd,0xae,0x5e,0xa7,0xa8,0x96,0x77,0x68,0x75,0xb9, +0xb8,0xf7,0x2e,0x87,0xfe,0xc2,0x58,0xe2,0xab,0xe5,0xb1,0xc9, +0xde,0xb4,0xc2,0x9d,0xaf,0xee,0x2c,0x7a,0xa4,0x3c,0x33,0xab, +0x0c,0x37,0x93,0x3d,0xd7,0x9c,0xaf,0x39,0xb6,0xd9,0x1e,0xe0, +0xcb,0x8c,0x4b,0x34,0xb3,0x34,0x39,0xf1,0x0d,0xae,0x27,0x78, +0xc0,0x07,0x27,0xda,0xe1,0x50,0xb5,0x5a,0xfb,0x2a,0x18,0x9c, +0x0c,0x5f,0x85,0xc1,0x26,0x95,0x6c,0xef,0x6c,0xe7,0x54,0xb7, +0x9c,0x02,0x1e,0x13,0x16,0x29,0x97,0x4b,0x5e,0x65,0x6a,0x13, +0xe2,0x6b,0xd5,0xe5,0x75,0x68,0xc5,0xc2,0x2c,0xac,0x24,0x87, +0x0a,0xbd,0x4b,0xf6,0x67,0x7a,0x7b,0xf0,0xa0,0xf9,0x9a,0x85, +0x48,0x8c,0x27,0x31,0xe5,0xd1,0xd5,0x91,0x75,0x5c,0x01,0x13, +0x66,0x13,0x69,0x1b,0xed,0xc0,0x89,0xdb,0x71,0x21,0x39,0x57, +0x78,0xb6,0xb8,0x4c,0x15,0xc6,0xb0,0x59,0x5e,0xca,0x1b,0x66, +0xe7,0xf1,0x78,0x80,0x3d,0x54,0xe4,0x55,0xb2,0x2f,0x8b,0x83, +0xff,0x89,0x24,0xe6,0xcb,0x99,0xa0,0xb3,0xc1,0x67,0x82,0xd4, +0x16,0x9a,0x3f,0x65,0x8e,0x4e,0x33,0x59,0x3f,0xcf,0x40,0x79, +0xbc,0xe5,0x90,0xfe,0x9e,0x57,0x89,0x94,0xcd,0xbe,0x60,0xf4, +0x4e,0x6e,0x0f,0x34,0x54,0x73,0x0e,0x09,0x3c,0xee,0x30,0x5e, +0xca,0xc4,0x98,0x48,0xba,0x98,0xae,0x9c,0xd8,0xab,0x31,0xea, +0xb1,0x57,0x2f,0x74,0x9f,0xa3,0xda,0x01,0x27,0x64,0x52,0x0c, +0xa8,0xa0,0x02,0x25,0x28,0x21,0xe4,0xac,0x5f,0xe0,0x00,0x03, +0x50,0x81,0x41,0x1d,0x38,0xe8,0x0b,0x03,0xe0,0x0d,0xe1,0x5b, +0x25,0x03,0xa0,0x19,0x6a,0x09,0x8e,0xa1,0x21,0x74,0xe3,0x43, +0xf6,0xc7,0xb0,0xdf,0xe8,0x78,0xa4,0x7e,0xc9,0x50,0xca,0xdc, +0x7a,0x1b,0x17,0x95,0x55,0x4a,0x7e,0x16,0xfc,0x09,0x5a,0x0a, +0x5b,0xc1,0x92,0x15,0x47,0xe1,0x3c,0xf2,0x09,0xee,0x4c,0x62, +0x45,0xdd,0x29,0xca,0x12,0x1c,0xc7,0xc1,0x89,0x85,0xfb,0xe8, +0x44,0xc0,0x89,0xa2,0x80,0x13,0x8b,0x91,0xf5,0x04,0xbe,0xa6, +0xe2,0xfc,0x6b,0xfa,0x36,0x7c,0x4d,0xf0,0x6b,0x9c,0x03,0xf4, +0xda,0x03,0xbb,0x09,0x95,0xe4,0xcf,0x0c,0x96,0x62,0xae,0x19, +0x9c,0x62,0xad,0xb7,0xcf,0x90,0xe2,0x24,0x63,0xe5,0x72,0xe9, +0x05,0x17,0x61,0xe8,0x95,0x94,0x5f,0xa8,0x57,0xa5,0x76,0x42, +0x6a,0x04,0x93,0xb4,0xf8,0xcd,0x4e,0x18,0xaf,0x93,0xa9,0x5c, +0xe2,0xd5,0xbe,0xb2,0xdd,0xea,0x1a,0x25,0xf4,0x4e,0x7b,0x88, +0xfe,0x8f,0x36,0x0f,0x5c,0x9f,0x36,0xc1,0xe8,0x4c,0x98,0x10, +0x01,0xd3,0xb8,0xda,0x76,0xd4,0x66,0x62,0x5b,0xa3,0xbb,0x22, +0xea,0x4c,0x63,0xf8,0x43,0xa8,0xbe,0x1b,0xa7,0x5a,0xe2,0x20, +0xee,0x3c,0xce,0xec,0x00,0x35,0xf8,0xaa,0xbc,0xce,0x11,0x86, +0xa2,0x5a,0x93,0x89,0x39,0xf2,0x38,0xd4,0xde,0xba,0x92,0x0a, +0x7e,0xde,0x10,0xa7,0xe0,0x72,0x18,0xcd,0x06,0x1f,0x0a,0x38, +0xe0,0xbf,0x9f,0xc3,0xef,0x2c,0xde,0x32,0x3e,0x9e,0x87,0x3d, +0x0e,0x78,0x54,0xf9,0x54,0xf9,0x94,0x1f,0xb1,0xf2,0x94,0x1e, +0xd8,0x7c,0x2c,0xd1,0x92,0xff,0x39,0xe9,0x66,0x7e,0x47,0x55, +0xfd,0x81,0x9a,0xfd,0x15,0x7b,0x63,0x53,0xf8,0x5c,0xc7,0x4b, +0x37,0x9a,0x7e,0x2c,0x7f,0xa4,0x52,0xb4,0xae,0x7a,0x63,0xfb, +0x66,0x4e,0xa1,0x2b,0x94,0x92,0x13,0x49,0xc1,0xa7,0x07,0xc0, +0x89,0xba,0xf9,0xa5,0x56,0x6d,0xe5,0x59,0x53,0xfa,0x13,0x4d, +0xfe,0xfa,0xe2,0xe5,0x33,0xb7,0xe1,0x70,0xea,0xe5,0x6d,0xaf, +0x53,0xde,0x86,0x3e,0xa5,0x56,0x8d,0x68,0x57,0x6a,0xbe,0xd0, +0x33,0xe7,0x4e,0xaa,0x35,0xe1,0xbc,0xe2,0x72,0x09,0xac,0x85, +0xf7,0x64,0xd5,0x95,0xc7,0x4c,0xeb,0x0e,0x72,0xe5,0xf9,0x0e, +0x16,0x27,0x5a,0x13,0x8d,0x55,0xb7,0x59,0x50,0x1d,0xf7,0x5c, +0x63,0x09,0x03,0xdd,0x18,0x4b,0xbc,0xfe,0xf2,0x85,0x41,0x27, +0x61,0x24,0xf7,0x8e,0x39,0x81,0x5f,0xf9,0xe0,0x60,0xd7,0x69, +0x1c,0x95,0x4f,0x9d,0xc4,0x25,0xd5,0x29,0xd5,0x31,0xa5,0xb4, +0x2c,0xbb,0x26,0xa9,0x91,0xbb,0xde,0x88,0x1e,0x4c,0x4c,0x7a, +0x74,0x7a,0x64,0x1a,0x07,0x4b,0x61,0x26,0x93,0x6f,0x91,0x5c, +0x11,0x57,0x16,0x5d,0xa5,0x12,0x3d,0x2d,0x79,0x6e,0xc1,0x82, +0xdd,0xab,0xad,0x36,0xe8,0x6d,0xe1,0x50,0x26,0x2c,0x23,0x9b, +0xe7,0xdd,0x62,0xe1,0xf4,0x66,0x32,0xf3,0xd6,0x1b,0x06,0x1d, +0xb0,0x95,0x24,0xa4,0x25,0x64,0xc6,0x65,0x72,0xf0,0x35,0x73, +0xd4,0x7e,0x9f,0x8b,0xab,0xbb,0x47,0xbc,0x47,0xac,0x67,0x0c, +0x37,0x4a,0xf0,0x90,0xdb,0x92,0x64,0xf7,0x44,0xa7,0xf8,0xdd, +0xf5,0xa9,0x7c,0x40,0xce,0xb1,0xbc,0x63,0xd9,0xf4,0x53,0xcd, +0xa8,0xcb,0x44,0xa5,0x45,0xa6,0x87,0xa7,0x19,0x51,0xa3,0x6f, +0x76,0xd2,0x94,0x19,0x57,0x38,0xf0,0x05,0x05,0xb9,0xe5,0xe9, +0x95,0x1c,0xdc,0x6c,0x26,0x51,0xe9,0xe1,0xe9,0x61,0x69,0x86, +0xd1,0xfc,0x51,0xcd,0xdd,0x9b,0x0d,0x0d,0xab,0x1d,0xf9,0xfc, +0xc2,0xec,0xf2,0xd4,0x4a,0xae,0x93,0x49,0x75,0x4b,0x71,0x48, +0xd8,0xdd,0x98,0xc6,0xfb,0x65,0x1f,0x2d,0xf0,0xcd,0xe1,0x60, +0x68,0x33,0xa3,0x38,0x84,0xbd,0x34,0x4d,0xa9,0xfc,0xda,0xb6, +0x10,0xf4,0x0d,0x29,0xb4,0x73,0xc6,0x94,0xfa,0x52,0x41,0xe3, +0x82,0xd3,0x37,0xe0,0x08,0xca,0xec,0x7b,0xde,0xa4,0xbf,0x0b, +0xa5,0xde,0x21,0xc6,0x76,0x0c,0xa8,0x66,0x25,0x4e,0xf4,0xe0, +0xc2,0x92,0x72,0x03,0x98,0x71,0x7c,0x40,0x14,0xa9,0x80,0x17, +0x4c,0x20,0x99,0x5e,0x69,0x1e,0x29,0x6e,0xcd,0xe9,0xfc,0xe1, +0xa2,0xfd,0x85,0x7b,0x73,0x39,0x28,0x3e,0x45,0x8e,0xd8,0xed, +0xb1,0x77,0x77,0xe1,0xc4,0x6f,0x4c,0xe5,0xa3,0x5a,0xd0,0x80, +0xc9,0xce,0x4f,0x2b,0x4d,0x2e,0xe2,0x16,0x2a,0x24,0x24,0xce, +0x44,0xf2,0x91,0xa9,0x4d,0x4a,0xa9,0x54,0x17,0x56,0xcb,0xc4, +0x4d,0xac,0xb8,0x4b,0x8f,0x08,0x9a,0xb0,0x4e,0x1c,0x31,0x87, +0x8d,0x31,0x97,0x3c,0x54,0x2e,0x93,0x2f,0x57,0x17,0x96,0x63, +0xae,0x78,0x80,0x05,0x41,0x70,0x25,0xf8,0x4b,0x07,0xfc,0xc2, +0xa2,0x2d,0xae,0x23,0x5e,0xf9,0x76,0x05,0x0e,0x19,0x9e,0xae, +0x7c,0xc5,0xbe,0x2a,0xf7,0x7c,0x0f,0x2e,0x7b,0x32,0x7d,0xcb, +0xbe,0xc0,0x21,0x93,0xbe,0x55,0xbe,0xbf,0xca,0x35,0xcf,0x83, +0x1b,0xd5,0x2c,0x2c,0x25,0x30,0x2f,0x05,0xe6,0xe5,0xc0,0x0f, +0x45,0x81,0x1d,0xfc,0xaa,0x23,0x8b,0x7d,0xe6,0x1f,0x53,0x0e, +0x50,0x74,0x17,0x46,0x03,0xa3,0x8d,0x2f,0x59,0xc7,0x13,0x0e, +0x27,0x1c,0x4e,0x72,0xf2,0x9b,0xd6,0xa4,0x31,0x39,0xa5,0x46, +0xfd,0x33,0xab,0x93,0x24,0xc1,0xef,0x70,0x0f,0xeb,0xe8,0x1f, +0x5b,0xae,0xfe,0x07,0x0b,0x5c,0x36,0x0c,0x2d,0xfa,0xa9,0x72, +0x77,0x2b,0xbf,0xd1,0x79,0xa6,0xeb,0xb4,0xfd,0x1c,0xa8,0x69, +0x63,0x33,0xbb,0x31,0xdd,0xeb,0xa1,0x1a,0xa6,0xba,0x90,0x4e, +0xf7,0x87,0x86,0x2d,0x36,0x95,0x75,0xbc,0x51,0xdd,0x86,0x16, +0xfd,0x62,0x6a,0x26,0x19,0xb1,0xf3,0x8b,0x2c,0x3c,0xa3,0x0e, +0x3a,0x4f,0x60,0x16,0x0c,0xfe,0x03,0xbe,0x33,0x2f,0xe5,0x97, +0x23,0x87,0x63,0x67,0xe3,0xda,0xb5,0x1c,0x1c,0xd0,0xa1,0x12, +0x6d,0xb3,0xc7,0xba,0x3d,0xcb,0xf7,0xa5,0xc9,0xf8,0xbb,0x69, +0xb7,0xb2,0xae,0xe5,0x70,0xc6,0x61,0x79,0x47,0xee,0x8e,0x87, +0x52,0xa6,0x25,0x31,0xb9,0x46,0x1d,0xc6,0xb1,0x3a,0x09,0x12, +0x9c,0xc9,0x8a,0x49,0x70,0x8d,0xec,0x5b,0x65,0xbe,0x50,0x7f, +0x5b,0xdb,0x6e,0xfe,0xd2,0xdd,0x96,0x3f,0x32,0x9e,0x73,0x42, +0x86,0x37,0x69,0xd3,0x68,0x9a,0x57,0xb2,0xb4,0x27,0x9b,0x77, +0x7c,0x61,0xf6,0xbb,0xd1,0x1d,0x1a,0xa1,0x5c,0x18,0x31,0x61, +0x6c,0x83,0x22,0x6a,0xd5,0x85,0x47,0x18,0x08,0x26,0x5a,0x68, +0x82,0xab,0x74,0x81,0x66,0xd2,0x14,0x5b,0x34,0xc2,0x95,0x38, +0x55,0xad,0xc1,0x48,0x02,0xdb,0x60,0x59,0x2d,0x1d,0xae,0x7c, +0x55,0xd8,0x20,0x16,0x33,0x1a,0x39,0x7b,0x6e,0xa9,0x5d,0x61, +0xea,0x53,0x52,0x1a,0xd4,0xc1,0x4d,0xb9,0x88,0x52,0xbc,0x2c, +0xec,0x21,0x06,0xd5,0xdb,0x2b,0x77,0xe4,0xbb,0x9b,0xf0,0xd7, +0x5c,0x2f,0x3a,0x75,0xdb,0x71,0x67,0xd0,0x86,0xe8,0xd6,0xaf, +0x6b,0xd8,0x58,0xe4,0x61,0xc2,0xdf,0x75,0xbe,0x61,0x7b,0xc5, +0x92,0xf3,0x45,0x96,0xd8,0xe0,0x10,0x5d,0x64,0x57,0xcf,0x6e, +0xb6,0xe1,0x1f,0xbf,0xbb,0x06,0x7c,0xf5,0x27,0x6e,0xd4,0x9f, +0xf2,0x0c,0x72,0xcb,0xf9,0xaa,0xdd,0x45,0xcb,0xa2,0x16,0x5e, +0xbf,0x5e,0xa3,0x6e,0x4b,0x11,0x27,0xf7,0xa0,0x6a,0x15,0x91, +0xb1,0x39,0x42,0xc1,0x1a,0x5a,0x04,0xa9,0xb0,0x46,0x8c,0x52, +0xb8,0xb1,0xeb,0xcb,0x1d,0x1f,0xaa,0xc1,0xdf,0x4c,0x7b,0x46, +0x6a,0x8b,0x3a,0xd8,0xb2,0x3b,0x93,0x24,0xb6,0xa0,0x4f,0xc4, +0x6f,0xa0,0x53,0xf8,0x46,0x79,0x4c,0x4c,0x16,0x91,0xd6,0xaf, +0x6f,0xdc,0x54,0xe2,0x6e,0xca,0xdf,0x76,0xba,0x6e,0x73,0xd9, +0x82,0xc3,0x19,0xe2,0x3e,0xf2,0xf0,0xfd,0x65,0xe0,0x2b,0x3e, +0x19,0x64,0xf1,0xb6,0x38,0x44,0x86,0xdc,0xda,0xd9,0x9c,0x72, +0xb2,0x6d,0x0b,0x81,0x39,0x3b,0x71,0x0e,0xc6,0xe8,0xcb,0x07, +0xf7,0xb0,0x8a,0x6f,0xf3,0x88,0x69,0xb5,0x6e,0xb5,0x6e,0xa1, +0xab,0x19,0x7f,0xc9,0xa5,0xd3,0xb1,0x6d,0x17,0x17,0x8d,0xf6, +0xc4,0xa0,0x61,0x63,0x8b,0x66,0xe9,0x6e,0x0a,0xb8,0x8e,0x57, +0xad,0x2e,0x9a,0x71,0xf2,0xf1,0xe2,0x12,0xb2,0x8d,0x71,0x0f, +0x88,0xce,0x53,0x17,0xf6,0xe3,0x7b,0x1c,0xc9,0xa2,0xb1,0x27, +0x12,0xfc,0x7e,0x8a,0x5a,0xb5,0x99,0x04,0xa6,0xc1,0xf0,0x32, +0x98,0x0b,0x76,0xaa,0x97,0x61,0x8f,0xb8,0x8e,0xdd,0x9c,0xb7, +0xef,0xba,0xda,0x0d,0xa6,0x31,0x55,0x59,0x26,0xc9,0x86,0xd5, +0x4d,0x91,0x28,0x96,0x3e,0xa4,0xa4,0x6e,0xa8,0x09,0x72,0x1a, +0x33,0x9b,0x6d,0xf9,0xbb,0x9f,0x7a,0x41,0xa5,0x98,0x5a,0x42, +0xa8,0x90,0xcf,0x22,0x61,0xed,0x17,0xba,0x2e,0xf4,0x6a,0x87, +0xf2,0xa7,0x74,0x4e,0x4a,0x4f,0x18,0x72,0xb8,0x41,0x1f,0x56, +0x31,0xde,0x78,0x4e,0x86,0x06,0xa8,0x86,0xc6,0x9d,0xd6,0x3c, +0x4c,0x06,0xfb,0x5e,0x70,0xc8,0x85,0x44,0x4e,0x58,0xd2,0xc3, +0x28,0xbe,0x6b,0x24,0xc6,0x75,0x3b,0xea,0xb4,0x8a,0x5d,0x29, +0xaf,0x72,0xea,0xb1,0xeb,0xb2,0xe2,0x4e,0xa2,0x15,0x31,0x6c, +0xd8,0xd4,0xaa,0x59,0x46,0xdf,0xbb,0xee,0x70,0xc5,0xb2,0xcf, +0x9c,0x13,0xe2,0x28,0xe9,0xc8,0xd7,0x2e,0x5a,0x9d,0xb7,0x41, +0xc3,0x6f,0xf1,0xb1,0x85,0x81,0xcd,0x30,0xa1,0x09,0x0c,0xf2, +0x61,0x81,0x76,0x1c,0xef,0x81,0xcb,0x74,0xd1,0xd5,0x14,0x89, +0xf7,0x29,0xef,0xd3,0x7b,0x4e,0x47,0xee,0xe4,0x61,0x66,0x3c, +0x2c,0x4a,0x07,0x2e,0x33,0xc6,0x2d,0xda,0x3d,0xd2,0xbb,0x2b, +0x9b,0x77,0xfb,0xa4,0x0f,0xf3,0x4d,0x3e,0x73,0xe2,0x4b,0x5f, +0xe2,0x84,0x43,0x4d,0x71,0xf8,0xe6,0x59,0x03,0xed,0xef,0x02, +0xd5,0xe2,0x8f,0xb4,0xfd,0x79,0x82,0x1b,0x01,0xae,0x0f,0x39, +0xe8,0xd5,0x51,0xe4,0x31,0xee,0xc1,0x6e,0xc7,0xdd,0x82,0x39, +0xf9,0x42,0x5d,0xc5,0x3a,0xd6,0x33,0xc4,0x23,0xc4,0xe3,0x44, +0xb4,0x36,0x0f,0xb3,0xf2,0x60,0x52,0x39,0x90,0xda,0x13,0x5d, +0xbc,0xa3,0xbf,0x83,0xbf,0x7d,0x00,0x07,0x49,0xba,0xc4,0xfe, +0x78,0x14,0x8d,0xec,0xef,0xd9,0xdb,0x2d,0x77,0x2f,0xb5,0x5d, +0xb6,0x6f,0xe0,0xad,0x65,0x32,0x63,0x7d,0x1b,0x0e,0xee,0xe9, +0x28,0x2a,0xd9,0x6d,0xd9,0x7b,0xaf,0xa9,0xfd,0xf5,0xef,0xe9, +0x58,0x87,0x58,0xc3,0x54,0x09,0x9e,0x65,0x45,0xb9,0xdc,0x80, +0x58,0xd5,0x18,0xd6,0x19,0x94,0xec,0xb6,0xe2,0xbb,0x1c,0x9b, +0xec,0x9a,0xac,0xb9,0x24,0x3a,0x62,0x16,0x0d,0xdb,0xdb,0x75, +0x2b,0x9c,0xad,0xf8,0x1e,0xfb,0x3e,0xb3,0x56,0x33,0xce,0x1b, +0x07,0x11,0x0f,0x1c,0x66,0x8b,0xc3,0xb5,0x66,0xb4,0x38,0xf0, +0xd7,0x60,0x70,0x03,0xfc,0x90,0xfd,0x81,0x1b,0x75,0x5f,0x9e, +0x43,0xfa,0x1d,0x3a,0x76,0x75,0x58,0x96,0x36,0xf0,0xa6,0xf5, +0xda,0x8d,0xba,0x25,0x1c,0xd8,0xfc,0xa3,0x4e,0x2e,0xdd,0x10, +0xf6,0x68,0x5e,0x92,0xff,0x8f,0xf8,0x17,0x73,0x89,0xaa,0x87, +0x3d,0x0a,0x4d,0x71,0x0f,0xf3,0x07,0x05,0x2d,0x28,0x14,0x56, +0x63,0x21,0x23,0x6e,0xd5,0x22,0x97,0xec,0x2f,0x99,0x77,0x98, +0x95,0x37,0xf0,0x66,0x0d,0x5b,0xdb,0xb4,0x2a,0x38,0xc1,0x0a, +0x3f,0x2a,0x77,0x2d,0x2c,0xc3,0xeb,0xac,0xf8,0x02,0x2f,0x91, +0x1b,0x30,0xa8,0x05,0xc6,0xe7,0x7e,0x94,0xa5,0xf2,0x6e,0x38, +0xd4,0x06,0xbf,0xda,0x3e,0x93,0xf2,0xad,0x1a,0xb9,0x0d,0x31, +0xab,0xd6,0xaf,0xd1,0x2b,0xa2,0x43,0xd3,0xe7,0xdc,0xee,0xd0, +0xba,0x8b,0xab,0x80,0xf1,0x44,0x26,0x9f,0xd2,0xc5,0x8a,0x31, +0xcb,0xc9,0x7e,0xa9,0xcd,0x3a,0xe3,0x1d,0x8d,0x5a,0x75,0x2b, +0x0a,0x35,0x3a,0x32,0x79,0xcf,0x6b,0x16,0x4f,0x76,0xd7,0x96, +0xd5,0x35,0xdc,0xcb,0xec,0xe3,0x60,0x4a,0x2a,0xd9,0xa3,0xbb, +0x6b,0xa3,0xd1,0xf6,0x26,0xad,0xc6,0x15,0xf9,0x9a,0x9d,0x39, +0xbc,0xfb,0x55,0xab,0x87,0x8e,0x35,0xd5,0xcd,0x55,0xd7,0x73, +0xfb,0x39,0x98,0x96,0x4c,0xf6,0x19,0x98,0xaf,0xb2,0xd0,0x6d, +0xdf,0x56,0xb7,0xba,0x70,0x5b,0x7b,0x01,0xef,0x72,0xc3,0xf2, +0xae,0x73,0x55,0x79,0x6d,0xfd,0x9d,0xec,0x2e,0x4e,0x31,0x0a, +0x0f,0x10,0xd3,0xba,0xad,0xcd,0x5a,0x4a,0x87,0xbe,0xe4,0x74, +0xc9,0xaa,0xc3,0x92,0xc3,0x11,0xe2,0x41,0x72,0xfb,0x73,0x07, +0xa8,0x16,0x7e,0x34,0x48,0xe7,0x5d,0x70,0xa8,0x39,0x0e,0xdf, +0x32,0x93,0x13,0x5e,0xc1,0x31,0x02,0xa5,0x5d,0x0a,0x89,0x0c, +0x0a,0xa8,0xf7,0xfd,0x28,0x95,0x6f,0xed,0xc6,0x4e,0x4a,0x53, +0x3a,0xe4,0xf6,0xc4,0xa4,0x4a,0xa7,0x5a,0xb7,0xc0,0x8d,0x86, +0xca,0xee,0x2e,0x4a,0xc6,0x38,0xe1,0x81,0x0b,0xc1,0xbc,0x2f, +0xc7,0x87,0xfd,0xd8,0x21,0x7e,0x30,0x04,0xaf,0x2f,0xc7,0x87, +0x2d,0x35,0x84,0xe9,0x5f,0x8e,0x0f,0x5b,0x64,0x28,0x9f,0xd4, +0x31,0x83,0x11,0xef,0x57,0x13,0xc3,0x3a,0x8d,0xa6,0xad,0x25, +0x34,0xd0,0xae,0x39,0x5d,0xb5,0xe9,0xb5,0xe4,0x84,0x56,0x58, +0xa1,0x3c,0x53,0x2c,0x73,0xe0,0x4c,0x31,0xd1,0x46,0xc1,0x93, +0x1f,0x3f,0x5c,0x04,0x95,0xd2,0x4f,0x06,0x19,0xbc,0x03,0x0e, +0x31,0x42,0x6e,0xe3,0x2c,0xaa,0xf4,0x4d,0x49,0xb7,0x30,0x41, +0xda,0x0f,0xaf,0xc4,0x24,0xe5,0x51,0x63,0x96,0x5f,0x8e,0x1a, +0x9b,0xa0,0x3c,0x6a,0x4c,0x98,0x26,0x7f,0xa1,0xac,0x2f,0x2e, +0xc3,0x59,0x4b,0x07,0xaa,0xe2,0x67,0x17,0xe6,0xd6,0x64,0xb7, +0x72,0x62,0x75,0xaf,0x5c,0x83,0xcd,0xbc,0x96,0x7a,0x37,0xee, +0x11,0x47,0x3b,0xb2,0x98,0xc0,0xd2,0x9d,0xb8,0x14,0x2d,0xf4, +0x84,0x43,0xbd,0xac,0x62,0x43,0x09,0xb1,0xaa,0x35,0xac,0x33, +0x2c,0x71,0x51,0xfa,0x50,0xa3,0x5d,0x93,0x15,0x77,0x04,0x65, +0xc4,0xa1,0xd2,0xa0,0xc9,0xac,0x84,0xfa,0x50,0x83,0x53,0x9b, +0x55,0x15,0xed,0xde,0x67,0xf1,0x7b,0x52,0x05,0x4b,0xf2,0x60, +0x67,0x0a,0xac,0xd5,0x8e,0xe7,0x7d,0x70,0xbb,0x27,0x6e,0x75, +0xc4,0x55,0x1c,0x56,0xe8,0x08,0xf1,0x17,0x19,0xbc,0xfc,0x98, +0x1c,0x83,0x15,0x07,0x60,0xee,0x1e,0x18,0x21,0x3b,0xc8,0x67, +0x21,0x49,0xc5,0xa9,0x89,0xb8,0x8c,0x13,0x03,0x71,0x35,0xb9, +0xfa,0xaf,0xd7,0xc9,0x52,0x68,0xb0,0x0d,0xb5,0xc3,0xaf,0xb4, +0x66,0x50,0x10,0x1a,0x4d,0x43,0x1e,0x6a,0x3a,0xb1,0x06,0xbe, +0xd1,0xc6,0x6f,0x30,0xcd,0x00,0xd2,0x70,0x18,0xb6,0x4a,0xe5, +0x6b,0xbb,0xf1,0x26,0x23,0x96,0x43,0x20,0xe9,0x76,0x6a,0x74, +0x68,0xda,0x55,0xda,0xc8,0x5b,0x55,0x1b,0xd6,0x18,0xd2,0x64, +0x88,0xe5,0xa4,0xd7,0xb1,0xd7,0xa2,0xd5,0xb2,0xa2,0x81,0xb7, +0xa8,0xdb,0xd1,0xaa,0x5b,0xc6,0xc9,0x75,0x70,0x24,0x39,0x6c, +0xe6,0x66,0xe0,0x68,0xc4,0x89,0xf3,0xa4,0xd0,0x4a,0xd3,0x47, +0x8e,0x01,0xe4,0xe0,0xaa,0x4b,0xb0,0x0a,0x9a,0x3a,0x95,0xf5, +0x96,0xe0,0x66,0x37,0x5a,0x32,0xd9,0x95,0x39,0x8d,0x29,0x75, +0x9c,0xa8,0x7d,0x8a,0xe4,0x39,0xe6,0x58,0xa7,0xdb,0xb5,0xe4, +0xf3,0xfb,0x6b,0xbc,0x6b,0xbc,0xca,0x38,0x7c,0x21,0x96,0xfd, +0xeb,0xb4,0x79,0x1f,0x64,0x69,0x4a,0xa7,0xb5,0xfe,0xe2,0xb4, +0x2f,0xe5,0xb9,0xe4,0x8a,0x5d,0x97,0x4d,0xa7,0x69,0x59,0x3d, +0x6f,0xdc,0xb4,0xb3,0x59,0xab,0x8c,0x03,0x1f,0x0f,0x82,0x7f, +0x09,0x65,0xf0,0x17,0xab,0x87,0xd3,0x88,0xb8,0xea,0x37,0x61, +0x15,0x23,0xae,0xc2,0x29,0x44,0x58,0x35,0x53,0xa4,0x97,0x5f, +0x55,0x93,0x7e,0xdb,0x4b,0x66,0x9d,0x26,0xe5,0x75,0xbc,0x59, +0xf3,0x96,0x8e,0x9d,0x95,0x9c,0x5c,0x21,0x6e,0x24,0xed,0xd8, +0xfa,0x06,0xd2,0xda,0xc4,0x5f,0x8c,0x21,0x61,0x26,0xd6,0x1b, +0x41,0x2e,0xeb,0xba,0x62,0xbe,0x05,0xae,0x31,0xce,0x96,0xf1, +0xa0,0xd7,0xff,0xf9,0x6a,0xf2,0x07,0x2e,0x82,0x49,0x9e,0xfa, +0x41,0x0b,0x8c,0xb7,0xe5,0x74,0xf1,0xb8,0xad,0x67,0x69,0xad, +0xdb,0x63,0x4e,0xbc,0x84,0x7e,0x84,0x06,0x6f,0x23,0x8c,0xcf, +0xfe,0x60,0x98,0xca,0xbb,0x0f,0x84,0xf4,0x4e,0xa5,0x19,0x55, +0x94,0xcf,0x59,0x73,0x5a,0x30,0xe7,0x1e,0xb4,0xb6,0x62,0xeb, +0x35,0xdd,0x6d,0x03,0xbb,0xa4,0xd6,0x63,0x82,0x29,0x24,0xac, +0xc2,0x66,0x13,0xf9,0xc2,0x56,0xbc,0xc4,0xe0,0x67,0xd8,0x4d, +0xcc,0x2b,0xa5,0x95,0xb2,0x02,0xea,0x7a,0xbd,0xbb,0x5b,0x9d, +0x9b,0xed,0x06,0xb0,0xd2,0xac,0x7a,0x7b,0xa3,0x4e,0xf1,0x6e, +0x33,0xbe,0xcf,0xe5,0xa2,0x4d,0x3b,0x45,0x1d,0x73,0xf1,0x0c, +0x81,0x63,0xc2,0x62,0x9a,0x07,0x17,0x0e,0x94,0x9d,0x1c,0xff, +0xa5,0xd0,0x9d,0x30,0x5e,0x2c,0x10,0x9d,0x59,0xf0,0x83,0x32, +0x82,0x9b,0xa9,0xc6,0xdd,0xcc,0xf4,0x7c,0x39,0x3b,0x6d,0x3b, +0xf2,0xac,0xc2,0x1d,0x33,0xc8,0xdd,0x4f,0x3d,0x4a,0x3c,0xa7, +0x7e,0xeb,0xf4,0x2f,0xc8,0xd3,0x6c,0x3b,0x8e,0x92,0x0b,0x63, +0xe5,0x81,0x17,0xfa,0xac,0x67,0x70,0x44,0xb6,0xfa,0x25,0x16, +0xb6,0x25,0x9c,0x6c,0x56,0x1e,0x78,0xf1,0x07,0xc4,0xb1,0x01, +0x8e,0xbe,0xce,0x87,0x5d,0xda,0x0e,0xf1,0xe9,0xb5,0xc9,0x8d, +0xb1,0xf5,0xca,0x03,0x2f,0x7e,0x84,0xdc,0x16,0xcc,0xbd,0xa1, +0x83,0x66,0x18,0x80,0x1a,0x2c,0xee,0xdf,0x8f,0x0b,0x96,0xe2, +0x58,0xb5,0x66,0x07,0xc9,0x6b,0x98,0x92,0x45,0xd9,0xa8,0x9f, +0x2a,0x8c,0x84,0xa5,0x33,0x58,0xfc,0x2e,0x30,0x94,0x4a,0xf0, +0x68,0x89,0x16,0x2b,0x1b,0x38,0xf0,0xc2,0x8c,0xa9,0x4c,0x4c, +0xac,0x52,0x17,0x5f,0xc0,0x27,0x62,0x52,0xaf,0xd5,0xa0,0x53, +0xb2,0xdb,0x82,0xef,0x77,0xec,0xb2,0xa5,0xc1,0x7e,0x0c,0xcd, +0x88,0x79,0xfd,0xb6,0x16,0xed,0x32,0x17,0x4b,0xfe,0xa2,0x43, +0x9f,0x65,0xbb,0x05,0x77,0x18,0x87,0x11,0x57,0x1c,0x6a,0x89, +0xc3,0xb7,0xcd,0x68,0xb1,0xe7,0x6f,0xc2,0xa0,0x36,0x50,0xcd, +0xfb,0xc8,0x41,0x85,0x26,0xc1,0xa1,0x56,0x5b,0x70,0xa4,0x81, +0x5a,0x31,0xe5,0x02,0x13,0xfa,0x7b,0x7e,0x85,0x1f,0x54,0xcb, +0xb5,0x59,0x40,0x0c,0x25,0x53,0x98,0xfd,0xc1,0x91,0x59,0xea, +0xe0,0xa9,0xf3,0xdf,0x03,0x33,0x24,0x54,0x5f,0x7d,0x39,0x30, +0xc3,0x28,0x59,0x32,0x4a,0x70,0x15,0xe6,0x93,0xfa,0x94,0xe4, +0x7a,0x75,0x70,0x8d,0x60,0x33,0xa9,0x92,0x19,0xb6,0x05,0xce, +0xae,0xce,0x69,0xe1,0x71,0x5c,0xd5,0xdc,0xba,0x1d,0xf5,0xbf, +0x37,0x3c,0x68,0xbf,0xda,0x6d,0x57,0xcd,0x6b,0x68,0x6d,0x32, +0x9b,0x65,0xc6,0x19,0xb6,0xec,0x6b,0x6b,0x55,0x2d,0xd1,0x13, +0xbf,0x46,0xc2,0x26,0x19,0x49,0xb0,0x34,0x99,0x80,0xf4,0xfa, +0xeb,0x57,0x95,0x1f,0xb9,0x46,0xbc,0x67,0x04,0xf1,0xac,0xf5, +0xca,0xf9,0xeb,0x70,0xa1,0x09,0x07,0x6f,0xb1,0x80,0x14,0x97, +0x65,0x97,0xe7,0x54,0xef,0xca,0xe5,0xf7,0x3b,0xed,0x71,0x76, +0xdf,0x1d,0x10,0x15,0x74,0xe6,0xf8,0x71,0x3f,0x3f,0xfe,0x38, +0xc8,0x0c,0xc4,0xcd,0x0b,0x99,0x44,0x33,0xc9,0x1d,0xa6,0x32, +0x29,0xa1,0x52,0x79,0x7e,0x52,0xf8,0x85,0xd0,0x70,0x2a,0x99, +0xc7,0xe3,0xe4,0xb2,0x32,0x09,0xdc,0xb9,0x4f,0x5a,0xab,0xea, +0x1b,0xaa,0x1b,0x6c,0x4a,0x78,0x27,0x6b,0x5b,0x3b,0x4b,0x47, +0x6e,0x6f,0x5d,0x40,0x6d,0x8d,0xea,0x25,0xfa,0xcd,0x69,0x6c, +0x82,0x99,0xe4,0x19,0x53,0x31,0xf0,0xcd,0x23,0x11,0x6c,0xec, +0xaa,0xa6,0x6d,0x30,0x62,0x7e,0x71,0x1d,0xaf,0xd9,0x61,0xda, +0xe2,0xd2,0xc8,0x29,0x4e,0x81,0x2a,0x31,0x85,0x61,0xec,0xb1, +0x65,0x0e,0x4b,0x17,0x6e,0x2b,0xb1,0xe5,0x5f,0x3d,0x6c,0xf9, +0x2d,0x91,0x12,0xff,0x2a,0x16,0x72,0xc6,0x99,0x7e,0x66,0x8f, +0xac,0x76,0x58,0x39,0x73,0x63,0xb9,0x1d,0xff,0xee,0xa7,0xd6, +0x97,0x29,0x20,0xa1,0xff,0x31,0xea,0xef,0xb9,0xf2,0x53,0x44, +0x34,0x60,0xe2,0x32,0x62,0x32,0x22,0xd3,0xf5,0xd3,0x78,0xd7, +0x25,0x9a,0x33,0x57,0xee,0x28,0xb3,0xe6,0x33,0x52,0x32,0xd2, +0xd2,0x33,0xb9,0x83,0xc2,0xd0,0x26,0xfc,0x83,0x4d,0x4c,0x49, +0x48,0x89,0x4f,0xe5,0x84,0x35,0x38,0x88,0xc1,0x31,0xe7,0xd0, +0xf7,0x18,0x4a,0xd4,0x56,0x06,0x1d,0x71,0xda,0x32,0x1e,0x87, +0x33,0x49,0x06,0x92,0x97,0x0c,0x0c,0xa9,0xee,0x84,0x6f,0xe3, +0xd5,0xe3,0x61,0xf8,0x19,0x38,0x0c,0x63,0x54,0x15,0x12,0x18, +0x45,0xcc,0x6a,0xf4,0xaa,0x07,0xf2,0xca,0x45,0xe7,0x76,0xc7, +0x36,0x1b,0x0e,0xf7,0xd1,0x94,0x7f,0xcd,0xe1,0xaa,0x65,0xaf, +0x59,0x59,0x23,0x6f,0xd8,0xb8,0xa9,0x75,0x2b,0x0d,0xdc,0xc3, +0x52,0x62,0x26,0x1c,0x6a,0x66,0x45,0xf3,0xa9,0xc4,0x5c,0x58, +0xd5,0xc4,0xe2,0x9c,0x61,0x4d,0xe2,0x2a,0x73,0x16,0x8f,0xe2, +0x3b,0x72,0x47,0x99,0xce,0x8b,0x3e,0x52,0xf7,0x75,0xc6,0xa1, +0x66,0xca,0x1c,0xcf,0x41,0x11,0x84,0x13,0x3c,0xd6,0xdd,0x2c, +0x0c,0x06,0x2d,0x56,0x1c,0x8c,0xaa,0xe4,0x67,0xe8,0x59,0xae, +0x7c,0x6e,0x20,0x37,0xa6,0x1e,0xb6,0xb3,0x5e,0x4b,0xe9,0x61, +0x57,0x1c,0xbb,0x6d,0x3b,0x2d,0xb9,0x17,0x30,0x8d,0xe0,0x7d, +0x21,0x12,0xee,0xb3,0xfa,0xa8,0x46,0x44,0xb5,0xe7,0x82,0x1a, +0x23,0xaa,0xe1,0x04,0x22,0xa8,0x2d,0x11,0xd5,0x18,0x5c,0xba, +0x9d,0x98,0xd6,0x6b,0xb6,0xec,0x28,0x53,0x7a,0xa5,0x43,0xbf, +0x65,0xa7,0x85,0x72,0x3a,0xf1,0x1c,0x81,0xd0,0x56,0x0c,0x85, +0x31,0x50,0xd1,0xaa,0x18,0x69,0x02,0x55,0xf8,0x33,0x33,0x37, +0x81,0x42,0x3d,0xa7,0x7a,0x55,0x77,0x3b,0x8b,0x43,0x9d,0x4d, +0xa6,0x19,0xaa,0xe5,0x1b,0xbd,0xec,0x2c,0xab,0x0f,0xfb,0x55, +0x25,0x82,0x99,0x1b,0x7e,0x6d,0x03,0x4c,0x19,0x0f,0xfd,0x4c, +0x54,0xab,0x04,0x5b,0x19,0xd1,0x1c,0x1a,0xc8,0x6e,0x1c,0x6a, +0x81,0xc3,0x35,0x67,0xb6,0xd8,0xf1,0xb7,0x94,0x19,0xad,0xe0, +0xa3,0x12,0x1d,0xe4,0x7e,0x44,0xf9,0x38,0x2b,0xc3,0x40,0x3e, +0xb4,0x93,0x55,0x3c,0x2e,0x27,0x7d,0xce,0x1d,0x8e,0xad,0x36, +0x25,0x4d,0xfc,0x17,0x8b,0x71,0xf2,0x21,0x78,0x99,0x64,0x55, +0xa5,0x37,0x25,0x35,0x18,0x24,0xf3,0x3e,0xa6,0xfb,0x4d,0x5c, +0x4d,0x38,0x71,0x2c,0xce,0xed,0x79,0x25,0xa4,0xce,0xe9,0x85, +0xb9,0x8c,0xb8,0xb8,0x80,0xf8,0xd6,0x1c,0xa8,0xdd,0x57,0x62, +0x7c,0x80,0xcf,0x76,0x4c,0xb3,0x4d,0xb0,0xe5,0xc4,0x1d,0x89, +0xe4,0x8a,0xe3,0x65,0xcb,0x1e,0xf3,0xb2,0x26,0xde,0xa8,0x7e, +0x73,0xcb,0xf6,0x32,0x4e,0x08,0xc3,0x15,0x64,0x0a,0xfa,0x23, +0xcd,0x5e,0x4d,0xb0,0x09,0x3f,0x5d,0x82,0x4f,0xa0,0x8f,0xde, +0xa8,0x36,0x50,0xe0,0xe5,0x6b,0xa6,0x2e,0x2d,0xad,0x4e,0x1d, +0xd2,0x31,0xec,0x03,0x2b,0x56,0x8b,0x27,0xc8,0x9d,0xcf,0x5d, +0xa0,0x52,0xf8,0xbf,0xf6,0xde,0x32,0x8b,0xc2,0xc5,0x56,0xd8, +0x4c,0xda,0xb0,0x1b,0x18,0xb8,0xd2,0x8e,0x57,0x60,0x10,0x64, +0xb5,0x61,0xd6,0x5b,0x68,0x6f,0xc7,0x1d,0x6c,0x66,0x7e,0x76, +0x4d,0x62,0xa9,0x7e,0x06,0xef,0xeb,0xe8,0x61,0xe8,0xe1,0xc0, +0x89,0x13,0x8d,0xa0,0x74,0x3a,0x46,0x18,0x43,0x04,0x0e,0xc2, +0x1a,0x23,0xa8,0x41,0x06,0x4b,0x8c,0xa1,0x80,0x39,0xb8,0x78, +0xaa,0x11,0x9a,0x18,0xa6,0xea,0xf3,0x60,0xdc,0x05,0xe3,0x2e, +0x87,0xc3,0x57,0x14,0x58,0xc3,0x29,0x3f,0x1b,0xb7,0x13,0x74, +0xf5,0xd2,0xba,0x79,0x94,0x76,0x4f,0x6b,0x3f,0xf8,0x9c,0xc3, +0xaf,0x84,0x7e,0x72,0xb4,0x68,0x5f,0xc5,0xa1,0x1c,0xa3,0x3d, +0x7c,0xaa,0x57,0x86,0x73,0xa2,0x2b,0x87,0xc6,0xd1,0xc4,0xba, +0xdc,0xb8,0xcc,0x38,0x9f,0x82,0x65,0xa7,0x5b,0xc3,0xee,0x06, +0x07,0x2e,0x0d,0x77,0x13,0xa3,0xba,0x2d,0x4d,0xdb,0x4b,0x29, +0x58,0x5e,0x71,0xba,0x6c,0xdd,0x6d,0xc9,0x1d,0x45,0x86,0x38, +0xfd,0xff,0xf9,0x6c,0xcf,0x17,0x3e,0x2b,0x2f,0x82,0x10,0x02, +0xdb,0x61,0x59,0x3b,0x2e,0x03,0xd1,0x00,0x45,0x9c,0x6d,0x04, +0xb3,0x71,0x3b,0x2e,0x31,0x82,0x25,0x98,0xd4,0x09,0x49,0xb0, +0xb1,0x9d,0xfd,0x67,0xb4,0x50,0x47,0x9a,0x9d,0x2a,0x1c,0xab, +0x6d,0xcb,0xea,0x78,0xfb,0x2a,0xcb,0x2a,0xcb,0x62,0x4e,0x7e, +0x0f,0x4b,0x48,0xe0,0xd3,0x23,0xcf,0xdc,0x7e,0xb7,0x3c,0xc6, +0xe7,0xcf,0x49,0x99,0x1f,0xb9,0x8c,0xc3,0x0b,0x50,0x4e,0x82, +0xe7,0x1f,0x9e,0xeb,0xb5,0xa5,0x71,0x0f,0x9f,0xff,0x30,0xe5, +0x65,0xc4,0x5b,0x4e,0xe4,0x14,0x9d,0xe4,0x09,0xf8,0xc9,0x1d, +0xff,0x3f,0xc2,0xde,0x3b,0xbc,0x8a,0xaa,0x0b,0x17,0x57,0x20, +0x33,0x03,0x62,0x44,0x64,0xe3,0x24,0x68,0x42,0x10,0x14,0xa9, +0xd2,0x3b,0x18,0x7a,0x7a,0x72,0xd2,0x7b,0xef,0x85,0x54,0x48, +0x25,0x09,0x09,0x01,0x91,0xf4,0xde,0x43,0x7a,0xef,0xbd,0x97, +0x93,0x46,0x6f,0x0a,0x82,0x20,0x20,0x60,0xc1,0xae,0xb8,0xe6, +0xb8,0x26,0xdf,0xbd,0x7b,0xf0,0x7e,0xf7,0xf7,0xdc,0xdf,0xfd, +0xe3,0x3e,0xe1,0x99,0x0c,0x73,0xce,0xec,0xec,0xb5,0xf7,0x2a, +0xef,0xbb,0x67,0xf6,0x5a,0xd8,0x33,0xd3,0xc3,0xc2,0x7c,0x45, +0x1c,0xc1,0x0a,0x2d,0xa8,0x60,0x41,0x7f,0x31,0x56,0x1c,0xa1, +0x27,0xe2,0x52,0x34,0x20,0xc3,0xce,0x63,0x56,0x3d,0xd6,0x6d, +0x5d,0xbc,0x43,0xb7,0xfe,0xb0,0x49,0x2b,0x07,0x53,0xa8,0x43, +0xb0,0x4d,0x0b,0xda,0x5e,0x7d,0xb1,0xed,0x08,0x3d,0xa1,0x01, +0x30,0x88,0x5c,0x86,0x59,0x5d,0xf0,0x5e,0xe9,0x9f,0xa6,0x85, +0xfc,0x31,0x9c,0xe3,0x8a,0xf3,0xf4,0x3f,0xa4,0x13,0x62,0x19, +0x44,0xf4,0xaf,0xdb,0xdc,0xf4,0xf8,0x62,0x52,0xaa,0x86,0xa1, +0x91,0x0e,0xeb,0xb9,0xb6,0x71,0x0c,0x65,0x72,0x7a,0xb3,0x46, +0x5e,0x55,0xc3,0x88,0x5c,0xea,0x4f,0x55,0x6f,0x8d,0xef,0xe8, +0xb1,0x1e,0xb7,0x41,0xdb,0x00,0xbe,0x28,0xa0,0x20,0x30,0xdf, +0xdf,0x3c,0xde,0x38,0x5e,0x96,0x70,0xa1,0xf3,0xc2,0x60,0xe1, +0x00,0x07,0x76,0x43,0xb8,0xf9,0x1b,0xd9,0x36,0xea,0xbe,0x60, +0x0e,0x13,0x66,0x1e,0x60,0x1a,0xe4,0x20,0x3b,0xcb,0xa7,0x99, +0xc3,0x6b,0x69,0xbf,0x66,0xbd,0x28,0x50,0x49,0x8f,0x4a,0x8f, +0x4c,0x8b,0xa8,0x2e,0xe0,0x13,0xe2,0xcf,0xc4,0x25,0xc4,0x35, +0xc9,0xf8,0xc2,0xea,0xe2,0xe6,0xfc,0xd6,0x6c,0x9c,0x5b,0x81, +0xb3,0x7b,0x34,0x5c,0x3f,0xb5,0x38,0x70,0xe8,0x70,0x83,0x29, +0x7f,0xf9,0xea,0xe0,0xf5,0xd6,0x9b,0xcd,0x07,0x7b,0x0e,0x8f, +0x1f,0xe5,0x66,0xf6,0x2a,0xca,0x89,0x43,0x97,0x59,0xaf,0x79, +0x93,0x87,0x03,0x3f,0xea,0xdc,0xe5,0xd8,0x6b,0xcb,0x29,0x54, +0x1d,0xc8,0x69,0x5c,0x1c,0x8a,0xf3,0x28,0xe3,0x71,0x82,0xd7, +0x4f,0xc0,0xbc,0xd3,0xf0,0x2e,0x37,0xa3,0xa9,0x45,0x06,0x9d, +0x47,0x2d,0xba,0xad,0xdb,0x3a,0x79,0xa7,0x1e,0x83,0x11,0x53, +0x3a,0x12,0x59,0x33,0x14,0x12,0x99,0x80,0x2d,0xa5,0x30,0x0b, +0xa4,0x82,0xce,0x94,0xcf,0xb7,0x16,0x15,0x36,0xab,0x0b,0x76, +0x78,0x59,0x2c,0x61,0x21,0x53,0x58,0x44,0xd0,0xf6,0x19,0xd8, +0x32,0xe2,0x51,0xd1,0x8d,0x5c,0x84,0xd9,0x1d,0xf0,0x5e,0xc9, +0x9f,0x26,0x05,0x7c,0x00,0xce,0x71,0xc7,0x37,0x0c,0x3f,0xe4, +0xa0,0x05,0xba,0x08,0xd8,0xae,0x45,0x5b,0x46,0x59,0x70,0x53, +0x84,0x92,0x1f,0x8c,0xd7,0xe2,0xfb,0xa6,0xf0,0xf5,0x08,0x8b, +0xbf,0x05,0x11,0xc7,0x76,0xcb,0x0e,0xab,0x06,0x4f,0x3b,0x7e, +0xc8,0xad,0xc3,0xb5,0xdb,0x81,0x13,0x22,0x71,0xb5,0xf4,0xf6, +0xe6,0xd3,0xc2,0xef,0x2b,0xc7,0xea,0xbd,0x87,0x79,0x3d,0xb7, +0x95,0xfe,0x1f,0x86,0x73,0x58,0xca,0x62,0x64,0x04,0x6e,0xd4, +0xc3,0x05,0x6a,0x03,0x8e,0x97,0xe0,0xfd,0x22,0xf8,0xf4,0x3c, +0x84,0xa9,0xc0,0x6b,0x62,0x83,0x5c,0x68,0xf8,0x56,0xce,0x88, +0x23,0xf9,0xe4,0x54,0x67,0xc4,0xc0,0x89,0x4e,0xbb,0x13,0x7c, +0xa1,0x63,0x9e,0x75,0x26,0x0d,0xd6,0x9b,0xb0,0x83,0xc4,0xe4, +0xc4,0x9d,0x8f,0x8d,0x8d,0x8e,0xe6,0x13,0x6e,0xc1,0xb2,0x51, +0x5c,0xf6,0x12,0x96,0x8f,0xac,0x66,0x0a,0x5a,0x0b,0x27,0xb3, +0xfb,0xcd,0xf3,0xf8,0x68,0xa3,0x70,0xc3,0x50,0x5b,0x0e,0x1d, +0x4d,0xe1,0x13,0x0d,0x5c,0x63,0x02,0xef,0x33,0xa1,0xfb,0x4d, +0xd7,0xaf,0xda,0x5a,0x63,0xcc,0xff,0xf5,0x7d,0xf3,0x9d,0xd4, +0x07,0x5c,0x2a,0x5e,0x1e,0x85,0x5c,0x26,0x35,0xe9,0x7c,0x72, +0x82,0xda,0xcf,0xf8,0x4e,0x4b,0xb7,0x92,0xf8,0x26,0xfc,0x4d, +0x24,0x85,0x31,0x6e,0x71,0xb7,0xe3,0x47,0x5c,0xe4,0x56,0xbd, +0x36,0x5c,0x38,0x55,0x77,0x3f,0x9c,0xe3,0x8c,0xf3,0xf4,0x3e, +0xea,0x77,0xe5,0xaf,0xc0,0xac,0x1e,0x58,0x52,0x46,0xd9,0xc4, +0x3f,0x4b,0x04,0x05,0x19,0x81,0x75,0x38,0xf1,0x48,0x6f,0x2b, +0x8e,0xe1,0xba,0xb1,0x57,0xd5,0x2a,0xbc,0x71,0xdd,0x16,0xea, +0xbf,0xfb,0x9c,0x95,0xbe,0x87,0xb7,0x1b,0x60,0x03,0xd4,0xaa, +0x0a,0xe7,0x99,0x99,0x37,0x20,0x82,0x50,0x44,0xd7,0x61,0x5a, +0x47,0xdd,0xa0,0xdc,0xa3,0xcf,0xb5,0xdf,0x81,0x53,0xac,0x3a, +0x45,0xc4,0x61,0xb9,0x30,0xcc,0x88,0x67,0x97,0x11,0x30,0xdb, +0x83,0x66,0x0c,0x24,0x2d,0xfe,0x0a,0x2c,0xf7,0xb0,0xe2,0xe3, +0x7d,0xc4,0xbc,0xf7,0xd0,0xb0,0xb6,0x14,0xb8,0x2f,0x39,0x5f, +0xb2,0x1e,0xb3,0xe2,0x14,0xfb,0x2a,0x89,0xe8,0x28,0xbe,0x2e, +0x38,0x32,0x26,0x90,0x43,0xf0,0xaf,0x09,0xf8,0x8b,0x99,0xf9, +0x60,0x83,0x14,0xcd,0x6d,0xff,0xbf,0x68,0x3e,0x04,0xaa,0x35, +0x34,0x9a,0x9f,0x4b,0x27,0xf0,0x97,0x1e,0xfe,0xc5,0xd8,0xcf, +0x81,0xbf,0x74,0xe8,0x6f,0x08,0x5a,0x41,0xee,0x1e,0xbb,0xed, +0x3d,0xed,0x51,0xd3,0xc7,0x1b,0xd4,0xee,0x69,0xd2,0x2c,0xe3, +0xc4,0x59,0xa8,0x4e,0xbe,0xaf,0xba,0x51,0x33,0xd1,0xec,0xd1, +0xc6,0x1b,0x7b,0x1e,0xf5,0xdf,0x12,0xfc,0x2a,0x69,0xf5,0xdf, +0x24,0x25,0x23,0xf5,0x7c,0xc6,0x29,0x60,0x51,0x89,0x6f,0x6c, +0xc5,0x59,0x2f,0x63,0x33,0xe3,0xcf,0x47,0xc7,0x4a,0x29,0x1f, +0x92,0x95,0x0a,0x5a,0x33,0x7a,0xee,0xaa,0x36,0x98,0xf8,0xb0, +0xb8,0xd8,0x4f,0x86,0x4a,0x5b,0xd5,0xea,0xed,0xc7,0x3b,0x5b, +0xda,0x2b,0x5a,0x54,0xe0,0xe1,0x39,0x92,0x4a,0x6f,0x4d,0x8f, +0x03,0x15,0x54,0xe6,0x1b,0xda,0x70,0x21,0x70,0xb1,0x99,0x71, +0x89,0x31,0x31,0x2a,0xb1,0xb1,0x09,0x49,0x4a,0x85,0x2d,0xe9, +0x7d,0x77,0x55,0xeb,0x4d,0x7c,0xe9,0xbd,0xfe,0x06,0xa8,0xb4, +0x5d,0xad,0xde,0x61,0xac,0xa3,0xa5,0xad,0xbc,0x45,0x65,0x66, +0x1b,0x1c,0x24,0x72,0xaf,0x3e,0xf7,0x5e,0x97,0x7a,0x0a,0x80, +0x5b,0xcc,0x5a,0x4d,0x6b,0x38,0x45,0x7a,0x30,0x89,0xb7,0x3a, +0x69,0x15,0xe6,0xd4,0x13,0xce,0x17,0xf7,0x64,0x0f,0xa6,0xf7, +0x73,0xe2,0xe2,0x74,0x12,0x6f,0x19,0x63,0x17,0x6a,0xdf,0x1d, +0xc9,0x97,0xf4,0x66,0xf5,0xa7,0xf6,0x73,0xe3,0x19,0x24,0xc1, +0x22,0xd6,0x3c,0xc2,0xa1,0x27,0x9a,0x2f,0xe8,0xc9,0x1c,0x4e, +0x19,0xa6,0xde,0xe2,0x3c,0x39,0x6d,0x1d,0x63,0x79,0xdc,0xbe, +0x37,0x9c,0x2f,0xe9,0xc9,0x1a,0xa3,0x5f,0x43,0x0d,0xbc,0x4d, +0x6c,0xda,0x75,0x7b,0x8c,0xea,0xbd,0x6d,0xf8,0x31,0x8f,0x09, +0x07,0x69,0x26,0xd6,0x51,0x9d,0x1a,0xc0,0x98,0x9f,0xe0,0x7c, +0xfd,0x18,0xac,0x98,0xf9,0x10,0x57,0x8c,0x79,0x41,0xcc,0x2a, +0xf4,0xb5,0x04,0x5f,0x7c,0x07,0xdb,0xcd,0x15,0x9b,0x87,0xf0, +0x4b,0x0a,0x74,0x28,0xb4,0xae,0x24,0x42,0xeb,0x3e,0xb1,0x95, +0xc1,0x78,0x71,0x05,0x8d,0x9f,0xe3,0x52,0xfc,0x34,0xbd,0x20, +0xc1,0xbf,0x7f,0xe3,0xa7,0x62,0x35,0x8d,0xcd,0xf5,0xc1,0x55, +0x01,0x95,0x7e,0x2d,0x15,0xfc,0xb1,0x1a,0xdf,0x0a,0x9f,0x62, +0xea,0x1e,0x39,0xf8,0x89,0xe0,0x09,0xac,0x16,0x72,0xa0,0x9a, +0x46,0x57,0x28,0xec,0x17,0x9f,0x32,0xe7,0xab,0x3f,0xaf,0xa9, +0x55,0xbd,0x01,0x0b,0x71,0xb6,0x94,0xca,0x14,0x94,0xfb,0x50, +0xf9,0x32,0xf0,0x83,0xd8,0x79,0x59,0x4f,0x1b,0x87,0xa5,0x3a, +0xf1,0x79,0x27,0x71,0xab,0x26,0x7e,0xa8,0x36,0x68,0x77,0x05, +0xde,0xbf,0x00,0xea,0xa9,0xe0,0xa0,0x02,0xe5,0x12,0xb8,0xbd, +0x4a,0x1c,0xda,0x2d,0x3a,0x2d,0xea,0x29,0x95,0x19,0x76,0xeb, +0x72,0xed,0x71,0xe0,0xe0,0xf3,0x58,0x82,0x0b,0x2f,0xc3,0x42, +0x66,0x52,0x9b,0xba,0x36,0x5f,0x6d,0x16,0x7d,0x6d,0x09,0xf8, +0x1e,0x45,0x5f,0x06,0x47,0xb6,0x11,0xfb,0x6e,0xdd,0x21,0x59, +0x33,0xa5,0x39,0x23,0x2e,0xe3,0xd6,0x7d,0xd2,0x2a,0x0d,0x43, +0xa9,0xf2,0x6c,0x47,0x89,0x9e,0x0c,0xb9,0xf0,0x57,0x25,0xb4, +0xfd,0x5e,0xf9,0x9f,0x9c,0xb0,0xc8,0x8c,0xe0,0xee,0xeb,0xb0, +0x9b,0x19,0x3b,0x4c,0xae,0xc3,0xfe,0xc3,0x2c,0x86,0xdb,0x91, +0x03,0xb8,0xfb,0x16,0x0b,0xc1,0x8b,0x61,0xff,0x01,0xdc,0xcf, +0xe0,0x5d,0x8a,0x2d,0x1f,0x5d,0x78,0x5e,0x37,0xd9,0xe6,0xd9, +0xcd,0x1b,0xb9,0xef,0xf2,0xd9,0x12,0xca,0x09,0xaf,0x35,0x91, +0xaf,0x42,0x1e,0xf9,0xde,0x72,0x2f,0x1f,0xe4,0x0f,0x35,0x6c, +0xa9,0x95,0x1e,0xb8,0x08,0x81,0x90,0x46,0x4e,0x65,0xc5,0xa5, +0xc4,0xc4,0xc4,0x44,0xf3,0xa7,0x6f,0x01,0x81,0x52,0x24,0x2f, +0x60,0xc5,0x08,0xae,0xf8,0xd1,0x64,0x0d,0xae,0x36,0x85,0xd5, +0xab,0xa9,0x3b,0x2a,0x05,0x86,0x39,0x7e,0xc0,0x66,0xeb,0xfa, +0x4d,0x55,0xc6,0xfc,0x8f,0xcf,0x1b,0xaf,0x65,0x3e,0xa2,0x66, +0xfa,0x74,0x0c,0x5a,0x99,0xd4,0xc4,0xcf,0xa9,0x99,0xfe,0x82, +0x0b,0x5b,0x7a,0x94,0xf0,0x2f,0xe1,0x2e,0x71,0x6b,0xb7,0xef, +0xb2,0x6f,0x74,0x77,0xe4,0x7b,0x5d,0x9a,0x5c,0xda,0xec,0x39, +0x61,0xd3,0x4a,0xf2,0x57,0x7b,0xf7,0x54,0x36,0x25,0x7d,0xf3, +0x98,0x73,0x1e,0x67,0xdd,0x12,0x82,0xb8,0x90,0x33,0xb1,0xa7, +0xdc,0x97,0x1c,0x62,0x72,0x6c,0x94,0x6e,0x31,0xf2,0xb2,0xdc, +0xce,0x4c,0xf5,0xf4,0xda,0xa4,0x8e,0xc4,0x1f,0x38,0xfc,0xc3, +0x92,0x06,0xe7,0x58,0x23,0x2f,0x87,0xcd,0x9e,0x1c,0x0a,0x94, +0xb0,0x39,0xf7,0x1a,0xca,0xcd,0xda,0x5d,0x1d,0xf9,0x01,0xc7, +0x51,0xb3,0x2e,0x4b,0x4e,0x11,0x4a,0x39,0xbd,0xa0,0x8d,0x53, +0x22,0x1d,0xc4,0x58,0xe1,0x28,0xc1,0x1d,0x9a,0xb0,0x83,0x05, +0x47,0xdc,0x41,0xf6,0xc1,0x8e,0x3b,0x0c,0xfc,0x63,0x43,0x76, +0xa3,0xe5,0x3d,0x16,0x2c,0xf1,0x1d,0xb2,0x13,0x2d,0xbf,0x66, +0xc5,0x1c,0x43,0x12,0x8c,0x4a,0xde,0xf8,0x86,0xf1,0x8a,0x01, +0x77,0x7e,0x12,0x94,0x5a,0xe0,0xfd,0xc2,0x3f,0x38,0xc5,0x87, +0x66,0x64,0x1b,0x5a,0x7e,0xc3,0x02,0x47,0x63,0xd3,0xa0,0xfb, +0xb0,0x63,0x97,0x5d,0x53,0x37,0xef,0xd0,0x61,0xd9,0x66,0xda, +0xc8,0x61,0x1d,0xc5,0x10,0x17,0xab,0x27,0xbb,0x3b,0xfa,0xdd, +0x9a,0x79,0x07,0x7b,0x33,0x17,0x7d,0x7f,0x4e,0x19,0x96,0x29, +0x5a,0x88,0x38,0x5f,0xe1,0x24,0xcc,0x67,0xb5,0x71,0x0b,0x11, +0x1f,0xff,0x25,0x3c,0x66,0xc4,0xc7,0xb8,0x89,0x08,0x8f,0x35, +0xc4,0xc7,0x0c,0xdc,0xfa,0x84,0x68,0xad,0x66,0x70,0x19,0xbe, +0xb5,0x17,0xbb,0xf6,0xa8,0x95,0xe9,0x42,0xcf,0xe3,0x3f,0x2e, +0x97,0x81,0xaa,0x4a,0x2a,0x53,0x81,0x94,0x2d,0x68,0x43,0xe7, +0x96,0xd2,0x8b,0x3c,0xb6,0x7d,0x85,0x1f,0xdc,0x85,0x65,0xaa, +0x60,0x86,0xcb,0x89,0x7c,0x74,0xf8,0x8b,0x86,0x6b,0xc6,0x75, +0xbc,0xaf,0xae,0xd9,0x41,0x63,0xca,0x1f,0xb7,0xc0,0x61,0xe2, +0xab,0x63,0xba,0xdf,0x50,0x36,0xe4,0xca,0x8f,0x0c,0x4d,0x3e, +0xa8,0x97,0x6a,0xce,0x8d,0x41,0x3a,0x75,0xb2,0x31,0x49,0xd1, +0xd1,0x51,0x27,0xf9,0x84,0xc4,0xec,0x4b,0xa9,0x13,0x49,0x5f, +0xaa,0x0c,0x8d,0xb4,0x0f,0x35,0x4e,0xb9,0x74,0xf0,0xfe,0x56, +0x7e,0x4e,0xde,0xae,0x5c,0xce,0x7f,0x2b,0x7a,0x17,0x78,0xa0, +0x32,0xb5,0x2c,0xa9,0xa2,0xf7,0x33,0x98,0xdd,0xf5,0xbc,0xfc, +0x7b,0x95,0xa4,0xb4,0xa4,0xcf,0x93,0xa5,0x04,0xb6,0xfb,0xf9, +0x9e,0x2e,0x25,0x21,0x9f,0x52,0x45,0xcf,0xbf,0xac,0x60,0xa1, +0xdd,0x73,0xf3,0x00,0xbe,0xc2,0xbc,0x42,0xa7,0x5c,0x6b,0x65, +0xe4,0xf2,0x93,0x1a,0xb1,0x7f,0xc0,0x7c,0x78,0x0b,0x4c,0xbe, +0x87,0x23,0x26,0xb5,0xbc,0xed,0x1a,0x3d,0x0d,0xad,0x8f,0x3d, +0x7b,0xdd,0x7a,0xdc,0xba,0xa6,0x1e,0x0d,0x3d,0x6d,0x79,0xc8, +0x41,0x89,0x1c,0xf3,0xa5,0x04,0x46,0x6a,0x18,0x29,0x83,0x40, +0xc6,0x53,0xd3,0x5e,0xd3,0x56,0xe7,0xc4,0x85,0xd0,0x92,0xd0, +0x22,0x47,0x07,0xfe,0xf6,0xfe,0xdb,0x5b,0xae,0xae,0xb3,0x3e, +0x6c,0xad,0x67,0x6f,0x85,0xaf,0x9f,0xe2,0xd3,0x0c,0xe0,0x50, +0x3e,0x1c,0x2a,0x81,0xcd,0x15,0x2a,0x99,0xc7,0x32,0x8e,0x65, +0xf8,0x53,0xcc,0xa0,0x70,0x7f,0x55,0x10,0x7c,0xad,0xd7,0xae, +0x91,0x40,0xbe,0xf1,0xfb,0x9c,0x3f,0xce,0xc3,0xeb,0xd4,0x26, +0xaf,0x2b,0xba,0xc8,0xcc,0x66,0x99,0x70,0x83,0xd1,0x72,0x5a, +0xe7,0xba,0xd4,0x87,0x13,0x37,0xa0,0xc6,0xab,0x5c,0x70,0x6f, +0x32,0xfd,0x52,0xbd,0x50,0x61,0x36,0x0b,0x73,0xdb,0x81,0x19, +0xba,0x35,0x25,0xed,0xe8,0x5b,0x4f,0xf0,0x6b,0x68,0x84,0xaf, +0x59,0x08,0x10,0xd7,0x90,0x8b,0xb5,0xc3,0x8d,0x9d,0x6d,0x7d, +0x0e,0x63,0xae,0x57,0xdd,0xea,0x46,0x78,0xdd,0x5a,0xd3,0x46, +0xbb,0x36,0xf9,0xa5,0xa6,0xdb,0x25,0xf7,0xb8,0x4e,0xfc,0xd2, +0x0c,0xb2,0xd8,0x30,0xc3,0x63,0xc6,0x76,0xe6,0xce,0x9d,0xde, +0x3d,0x41,0x03,0x96,0xc7,0xf8,0x2a,0x59,0xa3,0x55,0x87,0xad, +0x8b,0xa7,0x95,0xb7,0xfe,0x31,0x4e,0xdc,0xf8,0x90,0x80,0x1f, +0xec,0x42,0x3f,0x56,0xb0,0x41,0x7b,0xd2,0x6d,0xd0,0xa1,0xdb, +0x70,0x60,0xaa,0x9a,0x77,0xfb,0xc2,0xf6,0xb2,0xfd,0x20,0x37, +0xe3,0x8e,0x21,0xe4,0xf2,0x95,0x9e,0xab,0xd5,0x57,0x8c,0xcb, +0x78,0x1f,0x7d,0x5b,0x6d,0x3d,0x23,0x29,0x55,0xfb,0x06,0x52, +0xae,0x7f,0x41,0x27,0xef,0xf0,0x95,0x5c,0x3e,0xec,0x56,0xf0, +0x25,0x7f,0x39,0x87,0x55,0x51,0x24,0x57,0x3b,0xdd,0x30,0x65, +0xff,0xa5,0x74,0x3e,0xe1,0x8b,0x53,0xd3,0x11,0x93,0x54,0xb8, +0x3b,0x92,0x70,0xc6,0xa6,0xd4,0x57,0x7c,0xe6,0x73,0xd6,0xef, +0xcc,0x31,0xaa,0xf4,0xa6,0xf0,0x9c,0x39,0xe5,0x1d,0xe3,0x1b, +0xe9,0xc7,0x61,0xa4,0x19,0x0d,0xf1,0xb2,0x1d,0x9b,0x0e,0x21, +0x39,0x52,0x6b,0xc2,0xdf,0x6e,0x99,0x6a,0x1b,0xec,0xe2,0x70, +0xbd,0xf0,0x37,0x04,0x8b,0xcd,0x6c,0x59,0x65,0x71,0x55,0x41, +0x35,0x27,0x18,0xc1,0x72,0x98,0x3f,0x82,0xf3,0x19,0x9d,0x6f, +0xc9,0x26,0xbc,0xcc,0x26,0x57,0x25,0xd5,0x9c,0xaf,0xe1,0x2c, +0x31,0x8a,0xe4,0x54,0x67,0xd6,0xa4,0xd7,0x71,0x70,0xe7,0x13, +0x46,0x34,0xc7,0x29,0x02,0x73,0x85,0x70,0x9c,0xcb,0x7a,0xaf, +0x20,0x9d,0xa6,0x1d,0xb2,0x06,0xad,0x89,0x6a,0xde,0xfd,0xaa, +0xed,0x84,0x63,0x0f,0x37,0xe3,0x81,0xce,0xe4,0xe2,0x64,0xf7, +0x74,0xd5,0xa4,0x49,0x29,0xef,0x67,0x62,0x6b,0xa4,0x6f,0xc6, +0x09,0x79,0xb0,0x94,0x94,0x1b,0x97,0x18,0xe5,0xe9,0x5d,0xce, +0xe5,0xc3,0x2f,0x07,0x8f,0x07,0x0c,0xbd,0x12,0x25,0xc7,0x30, +0xc3,0x34,0x45,0xeb,0x62,0x1a,0x9f,0x70,0x2d,0x76,0x2c,0x72, +0x94,0x6a,0x63,0x05,0x9c,0x22,0xa7,0x5e,0x55,0x84,0x8f,0xa4, +0x21,0x3f,0x31,0xf7,0x5a,0xda,0xa5,0xc4,0xc7,0x2a,0x43,0x93, +0x6d,0xf2,0xa6,0xcb,0xce,0x6d,0xbc,0xbf,0x99,0x9f,0x9d,0x8f, +0x13,0x97,0xc4,0x42,0xbf,0x11,0x8e,0x53,0x6d,0xf4,0xc1,0x05, +0xf8,0x36,0x1e,0x50,0xeb,0x71,0xf8,0xf2,0x8f,0xd6,0xa7,0x17, +0x9e,0x49,0xf5,0xe5,0xa9,0x32,0xbe,0xc0,0x1d,0x7c,0x5f,0xbb, +0x52,0xa5,0xc2,0x89,0x06,0x4f,0x21,0x05,0xfe,0xa2,0x94,0xe5, +0x63,0x22,0x2e,0x79,0x21,0x2c,0x61,0x66,0x92,0x57,0x92,0xcf, +0x70,0x56,0xec,0x5a,0xbf,0x5d,0x43,0x41,0x7c,0xed,0x77,0x99, +0x7f,0x4a,0x35,0xe3,0xe1,0xa6,0x1d,0x11,0x96,0x7c,0x24,0x2e, +0x61,0x20,0x00,0x0f,0x93,0xe7,0x7a,0x9f,0x60,0x96,0xb1,0xf0, +0x68,0x8c,0xc5,0x7d,0x38,0x46,0xaa,0xc6,0xea,0x7f,0xcc,0x1b, +0x37,0x2c,0xe0,0x4f,0xea,0xba,0x7d,0xe4,0xad,0xcb,0x89,0x73, +0x64,0xc2,0x7f,0x28,0x6a,0x79,0xbb,0x99,0x9c,0x1c,0xf1,0x7e, +0x14,0xdc,0x63,0x7c,0x9c,0x2f,0xb5,0xab,0xdd,0x9e,0x2b,0xa3, +0x32,0x5c,0x53,0x2c,0x21,0x01,0xa6,0xfe,0x36,0xbe,0x8e,0x5c, +0x03,0xed,0xa8,0x4c,0xaa,0xf5,0x54,0xe8,0x8b,0x6f,0x21,0x87, +0xfb,0x69,0x47,0x6f,0xfc,0xd9,0xfc,0xb4,0xe4,0xa9,0xca,0xf9, +0x34,0xa9,0xa3,0x8f,0x70,0x33,0xdf,0xdb,0xba,0x03,0xd6,0x52, +0xa1,0x93,0x4e,0xc6,0xaa,0x44,0x46,0x9f,0x49,0xcc,0x9a,0x48, +0x1d,0x4d,0xba,0xa1,0x32,0x30,0xdd,0x3e,0xd1,0x78,0x9d,0x92, +0x34,0x71,0x1f,0x41,0x17,0x58,0x0a,0x32,0x39,0xca,0x40,0x15, +0xec,0xa0,0x0b,0x73,0xfe,0xf3,0xfa,0x38,0x58,0x81,0x0b,0xd3, +0xa2,0xd8,0x45,0x64,0x60,0x81,0x07,0xd0,0x52,0x06,0x19,0xd0, +0xc1,0xa2,0xc2,0x84,0xa0,0x16,0x2e,0xa7,0x28,0x0c,0x29,0x61, +0xa3,0x82,0x9e,0x5a,0x13,0xb0,0x7b,0x20,0x98,0xaf,0x7e,0x9e, +0xf9,0xa7,0x64,0x0b,0x0a,0x53,0xb1,0x95,0x8c,0xdc,0x69,0x7c, +0x56,0xf4,0x37,0xd7,0x83,0x83,0xc6,0x10,0xcd,0x46,0xed,0xf4, +0x3f,0xe4,0xac,0xef,0x31,0xe6,0x7f,0x31,0xf4,0xb2,0x65,0x20, +0x5f,0xa2,0x59,0x77,0xb0,0x5d,0xcf,0xce,0xdc,0xc8,0xf1,0x80, +0x57,0xb5,0x39,0x7f,0xbb,0x61,0xb2,0xab,0x6f,0xa8,0xdd,0xa2, +0xcf,0x6e,0xd8,0xab,0x76,0x98,0x37,0xaf,0xb3,0x6b,0x77,0x7d, +0x95,0xf5,0x1c,0x62,0xc8,0x99,0xc4,0xcc,0x8b,0xa9,0x93,0x49, +0xf7,0x54,0x3a,0xe4,0x4d,0x63,0xd5,0xd3,0xae,0x6d,0xfc,0x71, +0xeb,0x10,0xc7,0x40,0x37,0x2e,0xf3,0xff,0x10,0x7c,0x2e,0x6a, +0xaa,0xf5,0xd8,0xdf,0x7e,0xd9,0xfc,0xac,0xe4,0x39,0x9d,0xa1, +0xa4,0xc4,0xe4,0xb8,0x09,0x5c,0x48,0x05,0x97,0xc1,0xfc,0xf8, +0xdc,0x93,0x74,0xb6,0x55,0x84,0xfd,0xb8,0x8c,0x3c,0x84,0x48, +0x78,0x82,0x91,0x77,0xc1,0xe5,0xd5,0xde,0xfa,0x5b,0xaf,0xf6, +0xd6,0x5b,0xee,0xa5,0x74,0xf7,0x09,0x04,0x6d,0xc7,0x3a,0x0b, +0xa8,0xc3,0xc5,0x13,0xb0,0x18,0xda,0x07,0x59,0xb1,0x55,0xda, +0x5b,0xef,0xf0,0x21,0x3a,0x49,0x7b,0xeb,0xcd,0x19,0x7c,0x92, +0xf0,0xaf,0xb4,0xfe,0x92,0xb4,0x35,0x54,0x5a,0x78,0x5d,0x55, +0x08,0x90,0xf6,0x9a,0xec,0x78,0x0e,0x3b,0x18,0x88,0xfc,0x84, +0xa0,0xe6,0x73,0xd0,0x64,0x44,0x0d,0x69,0x23,0xfd,0x8e,0x55, +0x48,0x2f,0x06,0xff,0x44,0x40,0x73,0x15,0x6a,0x32,0xca,0x94, +0x6a,0xac,0x21,0xee,0xbd,0xd6,0xfd,0x66,0xbd,0xf6,0x4e,0xfc, +0xa0,0x5d,0xaf,0x75,0xbb,0x15,0x07,0xbd,0xe2,0x9b,0x04,0x34, +0xbe,0x83,0xf0,0xf5,0xf0,0x2e,0xbc,0x3e,0x82,0xf7,0xc5,0xbf, +0xe1,0xe9,0x08,0x0b,0x8f,0xe0,0x2d,0x62,0x9e,0xab,0x84,0xea, +0xb8,0x82,0x75,0x8d,0xce,0x6c,0x55,0x07,0x0b,0x08,0x83,0x2b, +0xd8,0x22,0x56,0xb0,0x86,0xe5,0x81,0x13,0x6a,0xb0,0x93,0x69, +0xce,0x2f,0xaa,0x57,0x17,0x3f,0x17,0xe6,0x13,0x7c,0x5d,0xba, +0x9b,0x11,0x34,0xcf,0x12,0xb4,0x41,0x4d,0xe9,0xf9,0xed,0xeb, +0x38,0x41,0x28,0x27,0xb6,0xc3,0x85,0xac,0xa8,0x85,0x29,0xe4, +0xf2,0x93,0x69,0x98,0xdd,0xf8,0x9d,0x45,0x0d,0xef,0xb1,0x41, +0x1f,0x67,0xe9,0xec,0xe6,0x84,0xf7,0xa5,0x6a,0x44,0x1a,0xf4, +0x5e,0x0d,0x56,0xb0,0xc0,0x6c,0xea,0x36,0xba,0x74,0x1a,0xf7, +0x53,0xb7,0xe1,0x7a,0xc7,0xf6,0xb2,0x1d,0x75,0x1b,0xc1,0x78, +0x82,0x5c,0xbe,0xda,0x7b,0xad,0xe6,0x2a,0x75,0x1b,0xde,0x7a, +0x36,0x5a,0xba,0x86,0x9c,0x50,0x0e,0x9b,0x49,0xb9,0x5e,0xa9, +0x76,0xde,0x21,0xc9,0xd6,0x6e,0x07,0x5d,0xf6,0x1f,0xa7,0x81, +0x87,0xba,0x0d,0xad,0x0c,0x83,0x64,0xcd,0xcb,0xe9,0xfc,0xe9, +0x2f,0x4f,0x5d,0x8c,0x98,0xa2,0xc1,0xfa,0xb2,0x62,0x21,0xb9, +0x06,0x9a,0x47,0x26,0xae,0xc1,0xf2,0x21,0x5c,0x2e,0x25,0xd1, +0xd1,0x94,0x0e,0x6b,0xcc,0x61,0xcd,0x11,0x56,0x30,0x46,0x33, +0xb2,0x1a,0xe6,0x7c,0x31,0x28,0x8e,0x5b,0xdc,0xc3,0x39,0x2b, +0x2d,0x7e,0x41,0x6e,0xb7,0x05,0xa4,0xac,0xc1,0x5a,0x6f,0x66, +0x0f,0xa8,0xc7,0xe5,0x46,0x4b,0x13,0x17,0x19,0x9d,0x90,0x98, +0x73,0x25,0x75,0x3a,0xe9,0x1b,0x95,0xc1,0xa9,0x8e,0x89,0xc6, +0x6b,0xce,0xad,0xbc,0xbf,0xc9,0x31,0x1b,0x6f,0x27,0x2e,0xfd, +0x95,0x12,0x4c,0xfc,0x2f,0x33,0x7d,0x53,0xd2,0x7e,0xfb,0xdb, +0x7f,0xb6,0x3c,0xbd,0xf0,0x54,0x25,0xf1,0x55,0xcc,0x78,0x4a, +0xb5,0xbf,0xb5,0x5e,0x49,0x5a,0xbc,0x9d,0x80,0x8d,0x90,0x3d, +0x8c,0xd9,0x3f,0x42,0xd2,0xa0,0x26,0x70,0x2f,0x98,0xff,0xcc, +0xa2,0x58,0x42,0xb2,0xd3,0x35,0xc7,0x76,0x0d,0xfd,0x3b,0xa1, +0x92,0xfa,0x0a,0xa7,0xa4,0xaa,0xbe,0x94,0xea,0xce,0x61,0xe1, +0x00,0xce,0x21,0x30,0x07,0xde,0xc0,0x39,0x2c,0x1e,0xb6,0x20, +0xd4,0xbe,0x38,0xe0,0xa4,0xcb,0x1c,0x01,0x8e,0x5e,0xe6,0x58, +0x65,0x58,0xac,0xf8,0x94,0xd8,0x2b,0x22,0xba,0xf0,0xf7,0x7e, +0x61,0x69,0xaf,0xb8,0x74,0x54,0xd7,0x44,0x5c,0x60,0x23,0x2c, +0xb0,0x62,0x85,0xe5,0x18,0x44,0x28,0xe9,0x6e,0xcb,0xaf,0xe5, +0x1a,0x66,0xfe,0xb4,0x57,0x34,0xb2,0xd1,0xc1,0x61,0x21,0x11, +0xe1,0x52,0x4e,0x17,0x8e,0x28,0x4a,0x3b,0xc5,0xb9,0x7d,0x90, +0xd1,0x29,0xfe,0xe6,0x00,0x1d,0xd6,0xf8,0x07,0xa3,0xf8,0x6a, +0x13,0xf9,0xcf,0x02,0x5b,0x85,0x96,0x0d,0x76,0xda,0x41,0xe7, +0x46,0x7c,0x9b,0xc9,0xb3,0x91,0x92,0xae,0x75,0xe7,0xe5,0xb5, +0xaa,0x3f,0x00,0x95,0x6e,0x54,0xe9,0xa5,0x93,0x35,0x73,0xcf, +0x9e,0xe0,0x56,0x98,0x80,0xad,0x2c,0x26,0xe1,0x3c,0xf2,0x05, +0x98,0x6b,0xb2,0x90,0x7f,0x86,0x04,0x94,0xb9,0x94,0xfa,0xe6, +0x79,0xf8,0xf0,0xd5,0x91,0x4d,0x01,0x15,0x21,0x1c,0x98,0x98, +0x93,0x56,0xaf,0x56,0x97,0x5a,0xc7,0x91,0x6a,0xde,0xab,0xd3, +0xb1,0xd5,0xb5,0x8a,0x9b,0xb1,0xa6,0xa1,0x7b,0xbc,0xad,0xad, +0xbd,0xa2,0xcd,0xe2,0x02,0xef,0xef,0xe9,0xec,0x66,0xec,0xce, +0x09,0xe7,0xbf,0x26,0x17,0xdc,0x8b,0xdd,0xf2,0x9c,0x27,0x73, +0xf8,0x88,0x8e,0xe3,0x2d,0x41,0x0d,0x94,0x53,0x51,0xff,0xe9, +0x9a,0xee,0x91,0x62,0x37,0x45,0x43,0x41,0x77,0x6c,0x73,0x64, +0x23,0x27,0xbd,0x23,0x36,0x8f,0xf4,0x0d,0x76,0xca,0x5b,0x2f, +0xd9,0x37,0xf0,0x9e,0xc6,0xae,0x96,0x8e,0xb6,0xfe,0xfd,0x5e, +0x3d,0xae,0xdd,0xb6,0x9e,0x7c,0xbb,0x65,0xbd,0x55,0xa5,0xa5, +0xbd,0x83,0x95,0xab,0xb9,0x57,0xb5,0x31,0x3f,0xd8,0xd8,0xd7, +0xdc,0xd5,0x59,0x62,0x93,0x67,0x93,0x65,0xa9,0xbb,0xe1,0xb0, +0xde,0x7a,0xc3,0x2a,0x13,0xfe,0xe9,0xe8,0xa5,0xe9,0xb1,0x2f, +0xb9,0x54,0xbb,0x24,0x6b,0x0b,0x55,0xdc,0xe7,0x6d,0xbd,0x55, +0xed,0x00,0x53,0xa0,0xa3,0x74,0x85,0x81,0xd7,0xe5,0x17,0xc1, +0x1f,0xd6,0x1d,0x03,0x9e,0x5a,0xad,0xba,0x82,0x9b,0x51,0x22, +0x0e,0x8c,0x5b,0x7c,0x7a,0xab,0xba,0xf0,0x3d,0xba,0x83,0x81, +0x3e,0x1a,0xe0,0x32,0x03,0x58,0xc6,0xee,0x38,0xab,0x79,0xea, +0xa8,0x9a,0x77,0x8d,0x7b,0x8d,0x4b,0xad,0xb3,0x15,0x3f,0xe0, +0xdc,0xe5,0xd2,0xee,0x12,0x88,0x8b,0xac,0x57,0x6c,0xdc,0xdc, +0x6b,0xc1,0x7f,0xfb,0x74,0xf0,0xcf,0x6a,0x50,0x6e,0x76,0x6e, +0x70,0xaa,0xb7,0xef,0x18,0xe0,0x1d,0x46,0x1c,0xfb,0x6d,0xfa, +0xb8,0x9c,0x6f,0x52,0xbe,0xfb,0x55,0x15,0x56,0x8a,0xfd,0xcc, +0x91,0x0b,0x81,0x57,0xd5,0x26,0x98,0xee,0x7c,0x69,0x85,0xd1, +0x97,0x35,0x2c,0x56,0x52,0x86,0xdf,0x15,0x77,0x89,0xa7,0xb1, +0x0b,0x95,0xe7,0x18,0x95,0xc7,0xe5,0x5f,0x79,0x1a,0xa8,0x3c, +0x76,0x0e,0x96,0xff,0xca,0x33,0xd4,0xd8,0xd7,0xd2,0xdd,0x51, +0x62,0x9b,0x6f,0x9d,0x65,0xa9,0xb3,0xe1,0x90,0xde,0x3a,0x49, +0x9e,0x67,0xa3,0x97,0xa7,0xe5,0xff,0x5b,0x9e,0xbd,0xe7,0xbd, +0xac,0xb7,0x2c,0xd9,0xcf,0x14,0x68,0x2b,0x5d,0x65,0x60,0xf6, +0x7f,0x05,0x52,0x31,0xa2,0x02,0xf5,0x0d,0x74,0x8d,0xb5,0x5e, +0xe2,0x84,0x09,0x9c,0x26,0x53,0x98,0xcb,0x9e,0x2b,0xf8,0xbc, +0xb0,0x48,0x15,0x42,0xb5,0x31,0x94,0x0d,0xfd,0x3c,0xec,0x5c, +0xb8,0x1a,0xa6,0xe8,0xc3,0x79,0x26,0x0c,0x5d,0x35,0xa9,0xd9, +0xef,0xc1,0x5d,0x5d,0xc6,0x3c,0x6c,0x83,0x9d,0x0f,0x60,0x5d, +0x2a,0x98,0xbd,0x5a,0x80,0x31,0xbf,0x87,0xea,0x70,0x04,0x8f, +0xb6,0x4f,0xf2,0x78,0x04,0x34,0x35,0x81,0x0f,0x03,0x27,0x0e, +0x42,0x60,0x25,0x71,0x9e,0xb4,0x9c,0xb6,0xea,0xb6,0xf7,0xe4, +0x87,0x2c,0x3a,0x8d,0x3b,0xf4,0xe9,0x54,0xc9,0xa9,0x44,0x3e, +0x32,0x4f,0x0b,0x37,0xdb,0xa0,0x7e,0xbf,0x5e,0xcf,0x1e,0x5b, +0x6f,0xbe,0xc5,0xac,0xd6,0xbc,0xcc,0xdc,0xc5,0xd1,0xc9,0xdd, +0xce,0xbb,0xda,0x94,0xef,0xac,0x6b,0x6b,0x6c,0x6a,0x29,0xb0, +0xcb,0xb6,0x4d,0xb7,0x32,0xdd,0x64,0x64,0xb8,0xdb,0xa0,0xca, +0x8c,0xff,0x62,0x78,0x78,0xa2,0xe7,0x26,0x97,0xec,0x90,0x68, +0x67,0xa3,0x8a,0xfb,0xcf,0x1f,0xb3,0xd5,0x5c,0x62,0x20,0xbd, +0x46,0x3f,0xc6,0xfc,0x30,0x34,0x09,0x41,0xb0,0xf6,0x38,0x2c, +0xb6,0x81,0xb9,0xea,0x5d,0x23,0x6d,0x93,0xcd,0xd7,0x39,0x61, +0x46,0x9c,0x4f,0xcc,0x9a,0x1d,0x5a,0x3c,0xda,0xbb,0x2b,0x1b, +0x6b,0xea,0x1b,0xdd,0x5b,0x78,0x1f,0x2f,0x57,0x6f,0x97,0xa0, +0xf0,0xb2,0xa8,0xb2,0xe8,0x8a,0xc1,0xda,0xde,0x8e,0xfa,0x56, +0xe7,0x26,0xde,0xcf,0xc3,0xc5,0xcd,0xe1,0xd8,0xc9,0xa6,0xb8, +0xa6,0xd3,0xcd,0xc6,0x71,0x7c,0x29,0xae,0xbc,0x8a,0xab,0x41, +0x0f,0x55,0x38,0xf1,0x4b,0xc8,0x26,0xd5,0xc7,0xdb,0x3c,0x6a, +0xbc,0xbc,0x1c,0x1d,0x9d,0xcd,0xdc,0x1a,0xac,0x79,0x58,0x05, +0x73,0x6e,0xc0,0xa2,0x32,0x78,0x97,0xeb,0x45,0x3f,0x33,0xd8, +0xcc,0xc6,0x98,0x87,0x5a,0xf8,0x58,0x1d,0xab,0x76,0xab,0xf5, +0x29,0xe5,0x84,0x56,0xd1,0x92,0xc8,0xb1,0x10,0x34,0x24,0xd6, +0xfe,0xc8,0x04,0xde,0xa5,0x9e,0xec,0xbc,0x0c,0x22,0xd8,0x88, +0x8f,0x36,0xed,0xc3,0xcd,0x87,0xa4,0xdc,0x17,0x7b,0xee,0xfe, +0xfc,0x24,0x57,0x7a,0x89,0x9c,0xc9,0x47,0xe6,0xa7,0xed,0xb0, +0x7f,0x97,0x54,0x2a,0x7b,0xd3,0xcd,0xb5,0x5f,0x86,0xfd,0xca, +0x49,0xf5,0x3c,0x13,0xc9,0x28,0xee,0x67,0x27,0x2e,0x0d,0xdd, +0xea,0x7e,0x60,0x59,0xc5,0x5b,0xac,0xd1,0xdb,0x79,0xe0,0x10, +0xb7,0x1d,0x16,0xc0,0x81,0x61,0x3c,0xf0,0xbb,0xe1,0x0a,0xa9, +0x6c,0xb1,0x3e,0xf5,0x2d,0x21,0x26,0x30,0xc1,0xac,0xdf,0xab, +0xa1,0x87,0xac,0x65,0xa5,0x39,0x5f,0x9b,0x57,0x4d,0x7f,0x38, +0x91,0x9f,0x18,0x83,0xeb,0xc6,0x93,0x82,0x3e,0x9b,0x19,0xdb, +0xdc,0xe6,0xdd,0x64,0xdf,0xec,0x58,0xad,0xe2,0xe6,0xda,0x14, +0xd8,0xe0,0x5b,0xeb,0xad,0x82,0x77,0x98,0x4b,0xed,0x13,0xdd, +0xc3,0x94,0x65,0x6e,0x85,0x87,0xc4,0xd7,0x58,0x9a,0x8b,0xc0, +0x3e,0xdf,0x5e,0x8f,0x1e,0x3b,0x2f,0xbe,0xd5,0xbc,0xd6,0xa2, +0xdc,0xdc,0xd9,0xc1,0xde,0xc5,0xc6,0x8b,0xce,0x45,0x4f,0x43, +0x47,0x73,0x4b,0x7b,0xa1,0x4d,0xae,0x4d,0x86,0x85,0xf1,0x46, +0x3d,0xfd,0x6d,0x06,0x55,0xa6,0xfc,0xbd,0x11,0xf9,0x54,0xff, +0x6d,0x2e,0xc5,0x2e,0xd1,0xd6,0x52,0x15,0x0f,0xf8,0xd9,0xee, +0x55,0xd3,0x91,0xac,0x65,0x82,0xf9,0x65,0x64,0x9a,0x4e,0xc5, +0x27,0x41,0xa0,0x62,0x41,0x75,0xab,0x73,0xb8,0x6d,0xa2,0xe9, +0x2a,0x07,0xab,0xc5,0x17,0x84,0x72,0xbf,0xeb,0x38,0x9b,0xc5, +0xeb,0x66,0x84,0x9e,0xbc,0x89,0xd7,0x19,0x65,0x85,0x06,0xfc, +0x4c,0xd0,0x1d,0x6b,0x84,0xe3,0x50,0x83,0xbe,0xe3,0xf0,0x79, +0x9f,0x38,0xc8,0x9c,0xaf,0xf9,0xbc,0xb6,0x4e,0xf5,0x2a,0xcc, +0xa3,0x8c,0xf1,0x0a,0xbd,0x6b,0x4e,0x2f,0xce,0xb9,0x02,0xca, +0x03,0x58,0x7a,0x45,0x4f,0x8b,0x52,0x89,0x18,0x16,0x73,0x4f, +0xe2,0xce,0xc3,0x94,0x31,0xf6,0xdb,0x5f,0x84,0xf7,0x4a,0x60, +0x69,0x0a,0x38,0xa9,0x40,0x1a,0x23,0x9a,0x40,0x20,0x69,0x1e, +0xad,0x9b,0xac,0xb9,0x61,0x57,0xc9,0x07,0x9b,0x04,0x58,0xfa, +0xd9,0x9e,0xe8,0x0d,0xec,0xf1,0xeb,0xb2,0xf5,0xe3,0x1b,0x4d, +0x2b,0xcd,0x4a,0x4c,0x7d,0x9c,0x3c,0xdc,0x5d,0xbd,0xa8,0x3a, +0x35,0xd5,0xd6,0x35,0x54,0x37,0xe5,0xda,0x67,0xda,0xa6,0x5a, +0xd9,0x6d,0xb1,0x34,0x3c,0x62,0x48,0x2f,0x4e,0x0f,0x75,0x8d, +0xb5,0x5c,0xe5,0x92,0x9c,0xcf,0x3b,0xda,0xab,0xe2,0xa1,0xf3, +0x81,0x0e,0xda,0x4b,0xac,0x98,0x7c,0x5d,0xa5,0x3e,0xe6,0xeb, +0x7e,0x39,0x1c,0x87,0x4f,0xc2,0x80,0x38,0x01,0xa7,0x0e,0x57, +0xeb,0x09,0xce,0xbb,0x42,0x89,0x98,0x5c,0x8b,0x5c,0x01,0x1b, +0x0a,0x3a,0x6c,0xec,0x08,0xd8,0x1c,0x45,0x1b,0xe6,0xae,0x94, +0xe2,0x73,0xfd,0x4d,0x58,0xcf,0x8c,0x1c,0x24,0x37,0x61,0xf3, +0x41,0x16,0xbd,0xec,0xc9,0x7e,0x5c,0x7f,0x9b,0x05,0xd7,0xc5, +0xb0,0x79,0x3f,0x6e,0x66,0x70,0x8c,0x52,0xcb,0xfb,0xa5,0x8f, +0xea,0x46,0xdb,0x3c,0xbb,0x78,0x53,0x77,0x4d,0x9f,0x9d,0x27, +0x38,0xf8,0xb1,0x95,0xdc,0x0e,0xbe,0xeb,0x73,0xd5,0xbd,0x72, +0x80,0xd7,0x6e,0xd8,0x55,0x77,0x40,0xa2,0x96,0xb5,0x0a,0x6b, +0x92,0xd7,0x96,0xdd,0x96,0x2e,0xed,0x50,0x0e,0x42,0x25,0x0b, +0x64,0x0f,0xad,0xef,0x32,0xe7,0xb3,0xf3,0xb3,0x0a,0xb2,0x0a, +0x38,0x51,0x7b,0xfa,0x6b,0x1a,0x81,0x11,0x3b,0xd9,0xf2,0xb6, +0xd2,0xce,0xa2,0x6e,0xca,0xc2,0xf7,0x31,0xb8,0xf0,0x34,0xba, +0x85,0xe3,0x3c,0xb5,0x3d,0xd1,0xc1,0x4e,0x87,0x96,0xa0,0x2a, +0xf3,0x6f,0x36,0xee,0xbf,0xeb,0xc6,0x60,0x7e,0x81,0x7a,0xbe, +0x54,0x77,0xd5,0x0b,0xde,0x51,0x85,0x25,0xec,0xcc,0x3a,0x6c, +0x22,0xff,0x66,0xdb,0xf8,0x1c,0x54,0xc7,0xf1,0xa9,0x11,0x2c, +0xc5,0xcf,0x71,0xb1,0x0c,0x16,0xe3,0x18,0x63,0x13,0x69,0x15, +0x65,0x11,0x9d,0xab,0xcf,0xc3,0xdb,0x75,0x30,0xbb,0xf5,0xe7, +0xae,0x84,0x31,0xde,0x21,0xdc,0x2e,0xdc,0x36,0x92,0x13,0xb6, +0xc3,0x6d,0xa9,0x28,0xdc,0x2e,0xa9,0x28,0xdc,0x3f,0xb3,0x3e, +0x23,0xfb,0x2e,0xdb,0xfe,0x12,0x02,0x1f,0x73,0x70,0x4c,0x8e, +0xc7,0x99,0x33,0x7d,0x67,0x87,0xce,0xc9,0x39,0x30,0x80,0x1a, +0x31,0x66,0xa6,0x85,0xf1,0x89,0xf3,0x3b,0x1d,0x90,0x90,0x65, +0xc0,0xff,0x52,0x0c,0xab,0xba,0x9e,0xd4,0xc6,0x8f,0xf3,0xe6, +0x61,0x87,0x42,0x0e,0x85,0x71,0xd0,0x09,0xd6,0x6c,0x05,0xee, +0x1b,0xc3,0x37,0x1f,0x1f,0x69,0xf1,0x6b,0xcb,0x4e,0x1f,0xab, +0x80,0xa3,0xbc,0xe5,0x05,0x25,0xb1,0xf2,0x3c,0x71,0x0a,0x77, +0x88,0xb0,0x8b,0xe0,0xa0,0x19,0x38,0x39,0x8d,0x73,0x9f,0xc3, +0xe2,0x71,0xfc,0xda,0x08,0xde,0xa3,0x7d,0x7c,0x47,0x06,0xef, +0xa0,0x9c,0xb5,0x8d,0xb4,0x39,0x69,0x19,0x9d,0x6b,0xc0,0x83, +0x72,0x2d,0xbc,0xd6,0xf2,0x43,0x17,0x27,0xb8,0x0a,0x06,0x44, +0x9c,0x03,0xbb,0x84,0x39,0x8c,0x38,0x07,0x03,0x09,0x68,0x33, +0xe7,0x8d,0x93,0xcc,0x53,0xad,0x38,0xa9,0x0e,0xcc,0x3f,0xef, +0x9f,0x23,0x1f,0x33,0xbe,0xf1,0xa9,0x75,0xea,0xf0,0x12,0xb4, +0xc7,0xb1,0x4e,0x58,0x6c,0x24,0x2e,0xc6,0x1c,0x23,0xd8,0xce, +0x9e,0x41,0x3b,0x63,0x9c,0x85,0x47,0x97,0xd5,0x9b,0xf3,0x14, +0x6a,0x72,0x97,0x41,0x2d,0x19,0xbc,0x39,0x58,0x2c,0xbe,0xc6, +0xe8,0x57,0x86,0xc8,0xd5,0xfe,0x66,0xba,0x0a,0xa4,0x77,0x54, +0x8e,0xb0,0xc6,0x85,0x4a,0xe2,0x50,0x0e,0x91,0x0a,0x8c,0x38, +0xd0,0x1e,0x56,0xfe,0x3b,0x8a,0x71,0x52,0x55,0x92,0x0e,0x19, +0xcc,0xc5,0xb8,0x7f,0x93,0x3b,0xf4,0xb3,0xce,0x51,0x4e,0xd1, +0x8e,0xd1,0xb9,0x86,0x3c,0xbc,0x56,0xfb,0x4b,0xeb,0x77,0x3d, +0x9c,0x50,0x2a,0x28,0x88,0xcf,0x0e,0x87,0x1d,0xc6,0xd2,0x66, +0x80,0x91,0x6b,0xfd,0x4f,0xeb,0xbe,0xe1,0xc4,0x25,0x94,0x23, +0xf9,0xdd,0xb2,0xfc,0xd1,0x59,0xda,0x0c,0xd0,0xa9,0xd3,0xbd, +0xb1,0x4e,0x93,0x2a,0x40,0x37,0xa5,0x76,0x59,0x0d,0x19,0x0d, +0x69,0x0d,0x86,0x99,0x7c,0x08,0x2a,0x99,0x21,0xb7,0x67,0x5d, +0xa7,0x05,0x9f,0x9d,0x97,0x9d,0x97,0x95,0xcf,0x89,0x2e,0x13, +0x77,0x20,0x81,0xf2,0xf8,0x0b,0x6c,0x71,0x63,0x61,0x53,0x5e, +0x33,0x07,0x0f,0xb7,0xbc,0x52,0x80,0xc0,0x70,0x54,0x56,0xdb, +0x1b,0x13,0xec,0x7c,0x64,0x09,0xbe,0xfb,0x2a,0x7b,0xfd,0x02, +0xe6,0xaf,0x5a,0x39,0xcc,0xcb,0x57,0x2f,0x80,0x05,0xa9,0x10, +0x00,0x8b,0x54,0xa5,0xb0,0xbd,0x1e,0xfb,0xc8,0x4b,0xb9,0x06, +0x1d,0x5a,0x7e,0x1c,0x1f,0x19,0x81,0x1a,0x1d,0x5a,0x0a,0xae, +0x09,0xca,0x19,0xdb,0x28,0xab,0x28,0xcb,0x57,0xd3,0xbf,0xa0, +0x0e,0x5e,0x6f,0xf9,0x49,0x9a,0x7e,0xc7,0x70,0xfb,0x08,0xdb, +0x08,0x4e,0x38,0x0a,0xc7,0x09,0xea,0x51,0x60,0xae,0xc7,0xa0, +0x1e,0x65,0xfd,0xd4,0x65,0x7e,0x80,0x7a,0x74,0x74,0x17,0x08, +0xc3,0xe4,0xf2,0x88,0x36,0x7c,0x8c,0xb1,0x5f,0x1a,0x7e,0x2a, +0x39,0xc9,0x63,0xab,0x31,0xd7,0x14,0x72,0x3f,0xc4,0x00,0x53, +0xf0,0x5f,0x81,0x67,0x4d,0xe1,0xac,0x06,0xe6,0x30,0x39,0x69, +0x09,0xa3,0xce,0xa1,0xce,0x74,0xf8,0x54,0xa0,0xf1,0xe5,0x98, +0x06,0x9c,0x87,0x59,0x72,0x6c,0x96,0x01,0x83,0xe7,0x35,0x8c, +0x5f,0x52,0xa2,0xe3,0x12,0xe9,0x7c,0xd2,0xe9,0x24,0x1d,0xb8, +0x9f,0x6b,0x9f,0xb7,0x7c,0xd3,0xc9,0x59,0x40,0x31,0x6e,0x9a, +0x80,0x4d,0x30,0x34,0x82,0x43,0x2f,0xa1,0x72,0x04,0x2b,0x7f, +0x87,0x58,0x56,0x06,0xe3,0x64,0x35,0x1e,0x7d,0xc1,0xc2,0x51, +0x5c,0x45,0x3e,0xc4,0xa3,0xbf,0x51,0x8d,0x3c,0x20,0x3c,0x21, +0xc3,0x58,0xf4,0x37,0xfb,0x24,0xfd,0x61,0xd6,0xad,0xdc,0x63, +0x03,0x3c,0x6a,0x1c,0x43,0xb3,0x48,0xd4,0x3d,0x97,0x6d,0xca, +0xdf,0x3d,0x7f,0x3f,0xe9,0xab,0x54,0x6e,0x85,0xf4,0x9c,0x21, +0x90,0xb5,0xde,0xbf,0xc3,0x1c,0xe7,0x1a,0x97,0x53,0xe7,0xcc, +0x5f,0xf9,0xfe,0x62,0xe9,0x0b,0x2e,0x0d,0x8d,0xe5,0x60,0x9c, +0xc6,0x94,0xae,0x7d,0x4e,0x0d,0xe2,0x40,0xc5,0x28,0x8f,0x73, +0xa7,0x36,0xf7,0x59,0xdd,0xe0,0x10,0x28,0x36,0x76,0x08,0xb3, +0x0f,0x97,0xb4,0xb2,0xea,0xdf,0x12,0x34,0x71,0x30,0x57,0x8e, +0xc3,0x32,0x50,0xa6,0x73,0xae,0x24,0x03,0x25,0x3a,0xe7,0x8e, +0x51,0x8e,0xd1,0xf6,0xaf,0xe6,0x7c,0x4e,0xed,0x1f,0x2d,0x2f, +0xba,0x39,0xe1,0x00,0x18,0x13,0x51,0xc5,0x14,0xde,0x61,0x62, +0x71,0x99,0x99,0x06,0x1e,0x3c,0x54,0x69,0xc2,0x83,0xfe,0x17, +0x77,0x61,0x61,0x16,0x68,0x72,0xb0,0x94,0x89,0xf5,0x0a,0x36, +0x0c,0x71,0xa6,0x36,0xc3,0x38,0x27,0x58,0xc6,0xfb,0xa8,0x79, +0xc7,0x85,0xc6,0x38,0x2f,0xc1,0x8f,0xa5,0xfc,0x62,0xa0,0xc2, +0x3c,0xac,0x2e,0x1f,0xcd,0x51,0xcf,0xe8,0x4a,0xb9,0xfa,0xb5, +0x2a,0x6e,0x63,0x72,0x6a,0xb3,0x1b,0xd2,0xca,0xa9,0x86,0x1c, +0x56,0x74,0x10,0x1c,0x15,0x3c,0x60,0x94,0x15,0x4b,0xc4,0xdf, +0x89,0x6d,0x98,0x4d,0x98,0xd5,0x2b,0x93,0x99,0x2f,0xc7,0xf9, +0x74,0x5e,0xdf,0x1d,0xc7,0x07,0xff,0x3f,0x93,0xb1,0x3e,0x69, +0xf5,0xca,0x64,0xde,0xaa,0xa5,0x66,0xfd,0x47,0x0f,0x07,0x4a, +0xc2,0xab,0x55,0xf3,0x9f,0xd1,0x84,0xc5,0x65,0xa2,0x2a,0x01, +0xdf,0x31,0xf4,0x85,0x77,0x99,0x47,0x69,0xf7,0xb3,0x6e,0xe5, +0x84,0x52,0xf9,0x57,0xfb,0xa3,0x7e,0x24,0x6a,0x27,0x64,0x19, +0xf3,0x77,0x12,0xef,0x26,0x7f,0x99,0xc2,0x51,0x0a,0xea,0x67, +0x0c,0x7e,0xf8,0x11,0x36,0xc9,0x84,0xdf,0xe4,0x98,0xcd,0x2a, +0x0b,0x2a,0x42,0x0a,0x81,0x45,0xf5,0x53,0x8d,0x6d,0x0d,0x59, +0x19,0xa9,0x9f,0xe7,0x24,0x40,0xf1,0x32,0xbe,0x6a,0x14,0xe3, +0x7f,0x08,0x4f,0x8b,0x4d,0x88,0x3b,0xa5,0x72,0x32,0xf2,0x74, +0x52,0x76,0x51,0x46,0x49,0x4a,0x99,0x0a,0xa4,0x8e,0x60,0xe2, +0x57,0x7a,0x7b,0x30,0xc6,0x14,0xc2,0x99,0x13,0xfa,0x87,0x9c, +0x71,0x8d,0x0b,0x87,0x6b,0x70,0x09,0xf9,0x49,0xbe,0x8a,0x76, +0x9c,0x1d,0xc7,0x7e,0x0a,0x52,0x68,0xc7,0x67,0xcb,0x60,0x36, +0x4e,0x30,0x52,0xe9,0x23,0x87,0x57,0xa3,0x3a,0xab,0xf6,0x97, +0x96,0x47,0x9d,0x67,0x46,0x79,0xb7,0x08,0x97,0x08,0xa7,0x48, +0x0e,0xd4,0xe1,0x5b,0x62,0x24,0xd8,0x89,0x7b,0x70,0x15,0x9b, +0x27,0x53,0x02,0x55,0x66,0x20,0xbb,0x9c,0x82,0xb4,0xad,0x0f, +0xc6,0x59,0x71,0x84,0xb2,0x2c,0xbc,0x3a,0x7e,0x03,0x32,0xa9, +0xb7,0xc2,0x4c,0x34,0x26,0xa0,0x06,0xd6,0xa8,0x46,0xf5,0x44, +0x06,0x1f,0xd0,0x70,0x3b,0x4b,0x70,0x7d,0x31,0xb2,0x1a,0xe6, +0xe9,0xe3,0x3c,0x6c,0x87,0x79,0x7a,0x38,0x6f,0x8d,0xe9,0x8f, +0xa2,0xeb,0x56,0x36,0x6e,0xd8,0x25,0xd8,0x39,0xc4,0xe9,0xb8, +0x0a,0xa4,0x48,0xda,0x39,0x8b,0xce,0x35,0x2b,0xc7,0x7e,0x8a, +0x05,0xe9,0x5c,0xbf,0xea,0x55,0x23,0xeb,0x14,0x4a,0x3d,0x40, +0x78,0xbe,0x21,0xff,0xb2,0xe3,0xc7,0xbe,0x6f,0xe5,0x9c,0x0d, +0x2b,0x18,0x09,0x2b,0x09,0x6d,0x88,0x83,0x76,0x06,0xf7,0xcc, +0xc1,0xf9,0xf4,0x7c,0x3e,0x8b,0x9a,0x73,0xa0,0x9d,0xf2,0x42, +0x7a,0x6d,0x1b,0x56,0x93,0x9f,0xba,0xef,0xf5,0x4d,0x4d,0x39, +0x76,0xf3,0xe6,0xa6,0xdb,0x2d,0xd6,0x39,0x71,0xc2,0xbb,0x2f, +0xc8,0x5d,0xa7,0xe7,0xe6,0xd7,0x8d,0x9b,0x07,0xf8,0x23,0x43, +0xeb,0xc6,0x34,0x5b,0xe8,0xec,0x6e,0x53,0x74,0x11,0x14,0x05, +0x17,0x10,0xd9,0x99,0x0f,0xc4,0x37,0xc8,0x1f,0xf2,0xe5,0xff, +0xaf,0x91,0xf9,0xf9,0xbf,0x23,0xe3,0x2a,0x8d,0x8c,0xf0,0x83, +0x90,0x44,0xf0,0xd7,0xdf,0xe1,0x57,0x06,0x7f,0x95,0x1e,0x54, +0xfc,0xba,0x14,0x7f,0x65,0xb6,0x8a,0x97,0xc9,0xc4,0xa4,0xb0, +0xc2,0x60,0x52,0xd0,0x12,0x0b,0x18,0xc1,0x01,0x37,0x11,0x71, +0xc5,0xdf,0xc2,0x0a,0x29,0xe1,0xda,0x46,0x22,0xac,0x40,0x7a, +0x42,0xad,0x79,0x8e,0x10,0x4b,0x9a,0x27,0xc0,0x12,0x73,0xe1, +0x35,0x03,0x7c,0x0d,0xcf,0xa0,0xe5,0xb8,0x1b,0xbb,0x19,0x1b, +0xa9,0x67,0x76,0x7a,0xe5,0xf7,0xaa,0x25,0xe7,0x11,0x27,0x95, +0xa9,0x6a,0x93,0x01,0x8b,0x71,0x52,0x99,0xaa,0x01,0xd6,0x85, +0xfa,0x3c,0xa7,0x18,0xda,0x9f,0xbf,0xe9,0x44,0x3d,0xa7,0x3e, +0xb9,0x42,0x58,0x42,0x44,0x23,0x58,0x20,0x18,0x31,0xf7,0xa8, +0xc7,0x11,0xff,0x30,0x82,0x3c,0xbc,0x8d,0xcb,0x5f,0xd5,0x85, +0x5f,0xc8,0xf4,0x48,0xa9,0xb4,0xe1,0x32,0x34,0xb2,0xa8,0xb7, +0x8d,0x0c,0xec,0xef,0xdc,0xd2,0xba,0x91,0xd2,0x03,0xb7,0xa7, +0x36,0x8f,0x2c,0x6e,0x73,0xe2,0xec,0xb3,0xc4,0x63,0x9b,0xed, +0xae,0xa3,0x47,0xba,0x1d,0xf8,0xeb,0xb7,0x87,0x7f,0x68,0x78, +0x4c,0x87,0xe6,0x4d,0x61,0x2b,0x81,0xa5,0x03,0x5f,0xfc,0x90, +0x06,0xef,0x73,0xbf,0xe3,0x56,0xc6,0xbc,0xe0,0xc4,0xa4,0xda, +0xef,0x4c,0x7b,0x56,0x71,0x93,0x7a,0x1f,0x6b,0x91,0xa3,0x74, +0x74,0x1d,0xeb,0x7f,0x3a,0xad,0x54,0x1d,0xd6,0x01,0xb3,0x7e, +0x1c,0x96,0x63,0xc6,0x53,0x83,0x8d,0x98,0x80,0xcb,0xc7,0xbe, +0x83,0x37,0xd8,0x53,0x38,0xd7,0x4c,0x1b,0xdf,0xb6,0xe6,0x50, +0xcd,0x99,0xfc,0x3e,0xb6,0x02,0xce,0xbf,0x94,0x63,0x8d,0x34, +0x9e,0xe7,0x97,0x1b,0xff,0x81,0x53,0x8c,0x6b,0x94,0xcb,0x49, +0x67,0x49,0x88,0x3f,0x6b,0x7f,0x6c,0xfd,0xb6,0x8b,0x8e,0xa9, +0x4b,0x98,0x73,0x84,0x53,0x04,0xa7,0x88,0x04,0x8e,0x46,0xf9, +0xdb,0x1f,0x3d,0xf3,0xfc,0x96,0x33,0x60,0xbc,0x36,0x7d,0xb2, +0x01,0x37,0x1c,0x2c,0x37,0xe3,0x2b,0xb2,0xcb,0x72,0x2e,0x64, +0x73,0xf8,0x15,0x85,0x60,0x57,0x8c,0x27,0xe1,0x1e,0x5b,0x7a, +0xb2,0xfc,0x64,0xe5,0x49,0x4e,0x74,0xba,0x4c,0xbe,0x9f,0x1c, +0xbf,0x9c,0x77,0x83,0xe2,0xbe,0xbc,0x23,0x93,0x5a,0x2f,0xf4, +0x39,0x7c,0x68,0x4e,0x28,0x79,0x96,0xe1,0x15,0x0a,0x86,0xc2, +0xbb,0x09,0xcc,0x03,0xef,0x41,0xf4,0xfe,0x1a,0x8e,0xc2,0xd7, +0x78,0xf4,0x2e,0xb8,0x0d,0xa1,0xdb,0x43,0x93,0xed,0x68,0x6b, +0x0e,0xb6,0x7b,0x71,0x3f,0x7e,0x0d,0xfb,0x77,0xa2,0xa7,0x05, +0x78,0xe2,0x3c,0x16,0x43,0x14,0xaa,0xc4,0xbb,0xcb,0xa1,0xcf, +0xa9,0xc5,0xd5,0x85,0x6f,0x75,0x69,0xb3,0x6f,0x7a,0xf5,0xea, +0x93,0x21,0xf1,0x8c,0xf0,0x88,0x90,0xea,0xc4,0xd5,0x3c,0x1c, +0xdb,0x0e,0x71,0x3f,0xca,0x31,0x45,0xf6,0x33,0xc6,0x6d,0x30, +0x7e,0x86,0xc3,0xac,0xe7,0x49,0x8f,0x68,0x8f,0x98,0x3c,0x23, +0xfe,0x87,0x9a,0x27,0x2d,0x77,0x3b,0xb8,0x50,0x61,0x1b,0xe9, +0x72,0xe9,0xb0,0x6b,0xb3,0x68,0xea,0xe0,0x3d,0xfa,0x6c,0xfb, +0xec,0x9a,0x39,0xe1,0x35,0x17,0xb2,0x09,0x95,0xbf,0x65,0x61, +0x8c,0x12,0xf1,0x45,0xdf,0xc2,0x22,0x09,0xaf,0xbc,0x47,0x40, +0x79,0x2d,0x2a,0x33,0x70,0x60,0xf1,0x0f,0xb0,0x68,0x2d,0x8b, +0x9f,0x49,0x09,0x21,0x56,0x38,0x8c,0xc0,0x9b,0xea,0x70,0x18, +0x3f,0x30,0x7d,0x8c,0x0b,0x58,0x9c,0xe5,0xe3,0xb4,0xca,0x56, +0xad,0x5c,0xef,0xf7,0xde,0xd2,0xc1,0xe4,0x47,0x2a,0xa9,0xcc, +0x9a,0xe4,0x5e,0x3d,0x58,0xb7,0x04,0x7e,0x60,0xd2,0xc7,0x95, +0x94,0x15,0x6b,0x05,0x07,0x72,0x1d,0x62,0xa0,0x5a,0xac,0xc2, +0x6a,0x88,0x39,0x8c,0x6d,0x56,0x8a,0x37,0xfa,0xd9,0x19,0xca, +0x18,0x89,0x5b,0x38,0x35,0x65,0xda,0xef,0xaa,0x87,0x72,0xda, +0xef,0x5f,0xe5,0x58,0x20,0xfb,0x13,0xe3,0x56,0xcb,0x5e,0xe0, +0x20,0xeb,0x7e,0xd2,0xed,0xa4,0x9b,0xd4,0xef,0x9f,0x6b,0x9e, +0xb7,0x3c,0xe8,0xe4,0x84,0x5c,0xe1,0x37,0xa2,0x25,0x6e,0xba, +0xc2,0x0a,0x9b,0x28,0x1b,0x3e,0x20,0x6e,0xba,0xc5,0x0a,0xee, +0xd8,0x4f,0xc4,0x7c,0x3c,0x0c,0x61,0xa8,0x83,0x4b,0x98,0x42, +0x33,0xa5,0xbf,0x99,0xbe,0x0b,0x85,0x7d,0xea,0xb0,0x17,0xc2, +0x59,0x23,0x58,0x4c,0x76,0x88,0x1f,0x3d,0x60,0x3b,0xa8,0xa6, +0x3b,0xda,0xe8,0xdb,0xae,0x77,0xaf,0xb2,0xe6,0x7f,0x6c,0xbb, +0x3e,0x28,0xd5,0xb4,0x09,0x3e,0x4d,0x2e,0xd9,0xcb,0xad,0x7a, +0x2d,0xda,0x3a,0x78,0xeb,0x7e,0xa3,0x7e,0xed,0x76,0xaa,0x5f, +0x49,0xf0,0x03,0xf9,0x18,0xe2,0x7f,0x94,0x7f,0xcc,0x94,0x4f, +0x96,0x5e,0xcd,0x19,0x36,0xcd,0xe7,0xa3,0x0c,0x82,0x3e,0xf5, +0xd3,0xe7,0xb4,0x65,0x37,0x31,0x7e,0x17,0x13,0x3b,0x76,0x3c, +0x3a,0x38,0x3a,0x28,0x5a,0xa5,0x9c,0x05,0x8b,0x4b,0x63,0x7b, +0xd9,0xca,0xc9,0xb2,0xeb,0xb9,0xc3,0x66,0xb9,0x7c,0xa4,0x41, +0xc0,0x3e,0x5f,0x03,0xee,0x53,0xe3,0xe7,0x68,0xc9,0x84,0x7f, +0x1e,0x4e,0x89,0x94,0x57,0x94,0xf7,0x49,0xbf,0xb8,0x0c,0x19, +0x5f,0x96,0x5e,0x9d,0x59,0x9d,0x13,0x8b,0x0b,0x8f,0xad,0x36, +0x5e,0xd3,0xe7,0xc9,0x5f,0x86,0x37,0x6a,0x81,0x49,0x87,0x0f, +0xca,0xb2,0xcb,0xb2,0xa9,0xf6,0x58,0x3d,0x43,0x94,0x03,0xfe, +0xcc,0x0a,0xea,0xd8,0x4a,0x7c,0x9f,0x9c,0x81,0xf5,0xe7,0xe0, +0x25,0x87,0xe1,0x4c,0xd2,0x40,0xe2,0x60,0xe2,0x20,0x07,0x13, +0x72,0x51,0x5f,0x76,0x8f,0x89,0xc1,0xd2,0x13,0x98,0xe8,0x8f, +0xa1,0x41,0x09,0x41,0x67,0x82,0xcf,0x64,0x53,0xeb,0x9f,0x4d, +0xf1,0x70,0xf3,0xfd,0x9a,0x53,0x83,0xbc,0x49,0xb8,0xe6,0x89, +0x7d,0xe1,0x45,0xb0,0x3d,0x1f,0x0e,0x64,0x81,0x3e,0x07,0x07, +0x99,0xf3,0x58,0x9d,0x86,0x47,0x5a,0x56,0x94,0xea,0x4f,0xa4, +0xa4,0x4f,0x5f,0x00,0x63,0xde,0x4e,0xca,0xb5,0x17,0x41,0x22, +0xef,0x78,0xc0,0xec,0x80,0x2b,0x56,0xa1,0x7c,0xe5,0xd1,0xda, +0xa5,0x45,0xdb,0xa4,0xc4,0x56,0xf0,0x37,0x55,0xc8,0x8b,0x23, +0x77,0xd2,0x5e,0x56,0x25,0x56,0x27,0x56,0x25,0x49,0x05,0x8d, +0xf4,0x4a,0x82,0xa7,0x28,0x02,0x6a,0xcf,0x2b,0x6c,0x57,0xff, +0x82,0x35,0x2f,0x54,0xfa,0x78,0x25,0x7b,0x2c,0x2e,0xad,0x46, +0x1d,0x08,0xdb,0x92,0xdc,0x94,0x5c,0x97,0x9c,0x13,0x91,0x1d, +0x9e,0x15,0xd1,0xdd,0xc0,0x5b,0xdc,0xd4,0xfe,0x4a,0x7f,0xcc, +0xd1,0x9b,0xaf,0xf7,0x6e,0x74,0x69,0x70,0xda,0x15,0xfb,0x41, +0xdc,0xea,0x33,0x2d,0xe3,0x75,0x97,0xca,0xa7,0x4c,0x0b,0x78, +0x7f,0x2d,0xb7,0x83,0x36,0x5a,0xdc,0xb9,0xc0,0xe0,0x73,0x21, +0x4b,0x52,0x8c,0xdb,0x13,0x07,0x12,0x87,0x93,0x55,0xe2,0xb6, +0x3b,0xca,0x96,0x5b,0x72,0xf8,0x44,0xd0,0x20,0x33,0x3d,0x93, +0xdf,0x40,0x8a,0xc2,0x55,0x72,0xd7,0xf7,0x09,0x94,0x7f,0x81, +0xe5,0x52,0xed,0xb5,0xf2,0x3b,0xf4,0x37,0xda,0xe3,0x77,0x04, +0x5a,0xbe,0xc0,0x16,0xe9,0x52,0xcb,0x1d,0xfa,0x5b,0xf1,0x36, +0x6e,0x21,0x6b,0x6b,0xf6,0x34,0x6a,0x77,0xdc,0x18,0x19,0xb8, +0xd4,0x2c,0xa5,0xc0,0x68,0x66,0x0b,0x2b,0x0b,0xa4,0x14,0x18, +0xf9,0xbc,0xf3,0x0e,0x7d,0xcd,0xb5,0xba,0x75,0xb6,0x7c,0x45, +0x41,0x69,0x61,0x69,0x51,0xa3,0x7d,0x87,0x53,0x9f,0xeb,0x41, +0xc7,0xf5,0x6e,0x38,0xd7,0xb7,0xc4,0x8c,0x07,0x52,0xf7,0x5b, +0xc7,0xfd,0xc1,0x5b,0xd6,0x8f,0x1d,0xff,0xf0,0xe0,0x44,0x0d, +0xb8,0x4b,0x52,0x53,0x53,0x52,0x52,0x52,0x39,0x48,0x67,0x7c, +0xcc,0xec,0xad,0xf4,0xed,0xcc,0x5a,0x1d,0x3a,0x5d,0xfa,0xe8, +0xc0,0x44,0x2b,0x22,0x49,0x7e,0x4d,0x76,0x7d,0x7a,0xb5,0x56, +0x16,0x1f,0xe7,0x19,0xe9,0x16,0xee,0xcd,0x61,0x85,0xc8,0x28, +0x4c,0x04,0x86,0xd1,0xc5,0xf5,0x44,0xbc,0xf3,0x9b,0x70,0x87, +0x11,0xef,0xe0,0x5a,0x22,0xdc,0xc1,0xd7,0xc5,0x3b,0x0c,0x84, +0x8a,0x9f,0x12,0xe3,0x98,0xdc,0x01,0xf5,0xbf,0x58,0xe1,0x8a, +0x3c,0x41,0x2e,0x4e,0x99,0x28,0xc1,0xec,0xa3,0x92,0x1d,0x7f, +0x16,0x94,0x62,0x04,0xf1,0x65,0x4a,0x4b,0xd9,0x8d,0x55,0x81, +0x3f,0xaa,0x09,0x1a,0xcc,0xe0,0xab,0x3c,0x88,0x73,0x58,0xad, +0x7c,0xa5,0x57,0xe9,0x2e,0xf4,0x15,0xdf,0x90,0x38,0xa7,0x18, +0xbb,0x93,0xce,0xdc,0xde,0x99,0xba,0x89,0xa7,0xa0,0xad,0x90, +0xe1,0xeb,0x4c,0x4e,0x63,0x56,0x6b,0x7a,0x0b,0x27,0xe8,0x66, +0x12,0xfd,0x6d,0x98,0x6d,0x22,0x3c,0x1b,0xc5,0x0a,0x69,0x03, +0xfe,0x2f,0x04,0x52,0x61,0x21,0xa6,0xb2,0xb0,0xbf,0x8e,0x08, +0xba,0x60,0x25,0xea,0x32,0x93,0xf8,0x11,0xf9,0x11,0x6e,0xad, +0x61,0x45,0x25,0xf1,0x26,0x11,0x56,0x0b,0xdb,0xf1,0x09,0x2e, +0x7d,0xf5,0x0e,0xc7,0x3c,0xa6,0x57,0x4a,0xc3,0x27,0xbc,0x23, +0x36,0x88,0x8e,0x2c,0xa6,0x08,0x47,0x09,0xbd,0xbb,0x19,0x17, +0x32,0xc2,0xbb,0x14,0xb2,0x60,0x09,0xe5,0x74,0x2e,0xe0,0xc4, +0xa2,0x0b,0x95,0xed,0x0f,0x58,0xb3,0x9c,0x06,0x4d,0x73,0xb8, +0x43,0x06,0xf1,0x0e,0x2b,0x25,0x91,0x4a,0xad,0xe4,0x20,0x03, +0x2e,0x62,0x2e,0x93,0x53,0x9e,0x59,0x91,0x56,0x26,0xcb,0xe2, +0x13,0x02,0xa3,0xbd,0xa5,0x25,0x78,0x43,0xbc,0x08,0x16,0x4c, +0x9c,0xff,0xa9,0xc0,0x98,0x20,0x0e,0x5d,0x2c,0xe0,0x28,0x63, +0x7f,0x44,0xdb,0x74,0xbd,0x75,0x85,0x0d,0xc5,0x45,0xe3,0x77, +0x6f,0xf4,0x3f,0xe5,0x7e,0x60,0x7a,0x36,0xde,0x3b,0xf4,0xd2, +0xa8,0xaa,0x8f,0xdf,0xd8,0x77,0x54,0xee,0x74,0x89,0x13,0xef, +0x0a,0x05,0x24,0xde,0x39,0xda,0x3e,0xca,0x95,0xdb,0x39,0x93, +0x31,0xf1,0x2d,0x98,0x29,0x76,0x23,0xcb,0xe4,0x34,0x64,0xb5, +0xa4,0x37,0x52,0x66,0x8f,0x73,0xc9,0x6e,0x71,0xe9,0x3d,0x16, +0x1f,0x63,0x1b,0x81,0x04,0x78,0x1f,0x13,0x58,0xe1,0x29,0x6c, +0x26,0x5b,0xc5,0xa5,0x8f,0xa4,0xab,0xde,0x52,0x4a,0x9a,0x0a, +0x7c,0x9f,0x11,0xe2,0xa5,0xf7,0x30,0x95,0xff,0xcd,0x82,0xb7, +0x6d,0x1c,0xb6,0x81,0xd6,0x20,0x6a,0x81,0x32,0x05,0x2a,0x09, +0x8a,0xf3,0x84,0x76,0xf8,0x42,0x46,0x85,0x4e,0x3a,0x7f,0xca, +0x2f,0x36,0x24,0xdc,0x97,0xc3,0x12,0xfc,0x56,0xb1,0x0d,0xbe, +0x65,0xf4,0x50,0x83,0x88,0x7d,0xcf,0x84,0x3e,0x46,0xec,0x43, +0x75,0x22,0xf4,0xad,0x15,0xfb,0x98,0xfc,0xc3,0x24,0xce,0x3f, +0x26,0x28,0x32,0x80,0x43,0x15,0xf1,0xe3,0xa9,0x1e,0xc8,0xb0, +0x9d,0x14,0x3e,0xc6,0xc3,0x4c,0xf6,0x85,0xcc,0xd2,0x8c,0x72, +0x4e,0x38,0x7c,0x88,0xfc,0x7b,0xaa,0x9b,0xc6,0x4b,0xdf,0x8c, +0xa2,0xdf,0x7c,0xef,0xd5,0x37,0x4b,0x6c,0xa7,0x85,0x8f,0x99, +0x99,0x46,0x1a,0x7e,0x7f,0x81,0xcc,0x95,0xac,0xe0,0xbf,0x18, +0x4b,0x7f,0x81,0x52,0x66,0x26,0x40,0xda,0x0c,0x9a,0xa9,0x81, +0x99,0x8c,0xe0,0xfc,0x92,0x40,0xa9,0x06,0x96,0x32,0xca,0xb0, +0x87,0x4e,0x79,0xbc,0x73,0x8c,0xfd,0x49,0x57,0xee,0xe8,0x4c, +0xba,0xfc,0x09,0x6c,0x55,0xec,0xfe,0x98,0x0e,0x40,0x66,0x4b, +0x5a,0x13,0x0d,0x3e,0x33,0x2f,0x88,0xd1,0x15,0xc7,0x29,0xef, +0x4b,0xe3,0xf0,0xee,0x05,0x58,0x9e,0x0a,0x47,0xb8,0x16,0x39, +0x9a,0x31,0x79,0xc3,0x59,0x43,0xe9,0x7d,0x26,0x69,0x7c,0x18, +0xb2,0x3e,0xb8,0xe8,0x08,0xbe,0x4d,0xd9,0x15,0xbe,0xc9,0x66, +0x94,0x66,0xd4,0x25,0x15,0x9b,0xa5,0xf2,0xa7,0x7d,0x4f,0xf9, +0xc5,0x85,0x70,0x6b,0x70,0xea,0xe5,0x27,0xb8,0xdc,0xfc,0xa1, +0x13,0x83,0xbc,0xef,0x27,0x9a,0xfb,0xd5,0x1a,0x6d,0xaf,0x5f, +0x6f,0xb8,0x9f,0xfd,0x93,0x0a,0x2c,0x66,0xcc,0xce,0xda,0x9e, +0xf1,0x50,0xf3,0x38,0x1b,0x73,0xca,0x6b,0xc9,0x41,0x26,0xd7, +0x54,0xe9,0x32,0x33,0x59,0x5e,0x2a,0x4f,0x53,0x4f,0xeb,0x49, +0x1c,0xfe,0x53,0x15,0x8f,0x32,0xe7,0xf3,0x3e,0xcf,0xcb,0x53, +0x6d,0x07,0xdf,0x21,0x5c,0xfb,0xfc,0x57,0x36,0xfa,0x44,0xbb, +0x4b,0x71,0x4d,0x61,0x63,0x41,0x8b,0x4a,0x26,0xbe,0x7d,0x61, +0x79,0xc7,0x2a,0xcf,0x23,0xb6,0xba,0xba,0x3a,0x4d,0x16,0xbc, +0x7c,0xaa,0x7b,0xb2,0xf1,0x62,0xbd,0x7e,0x87,0xfe,0xb0,0x2e, +0x27,0x5e,0x50,0x98,0x92,0x47,0xb0,0x7b,0x2b,0x2b,0x9a,0x48, +0x05,0x15,0xcf,0xfc,0x8d,0x67,0x58,0x21,0x05,0x0e,0x93,0xc4, +0xd4,0xc4,0x94,0xf3,0xd4,0xd8,0xe6,0x32,0x09,0xb8,0x36,0x12, +0x95,0x9d,0xf1,0x35,0xb7,0x5f,0x23,0x80,0x39,0x05,0x6b,0x38, +0xfc,0x76,0x19,0x79,0x02,0xbb,0x37,0x4b,0x37,0xbd,0x43,0xfe, +0xc6,0xca,0xa5,0x14,0x96,0x98,0x08,0x4f,0x09,0xce,0x9f,0xd8, +0x72,0xf9,0xd0,0x43,0x0e,0x7f,0x30,0x86,0x4b,0xcc,0xe4,0x91, +0x67,0xfb,0x61,0xa1,0x1e,0x37,0xf3,0x0e,0x7c,0x4e,0x8c,0xf6, +0x6f,0x3e,0xba,0xd4,0xa4,0x81,0x52,0xb8,0xd9,0x93,0xdf,0xde, +0x9c,0xba,0xcb,0x09,0xab,0xd0,0x90,0x8c,0x8a,0x81,0x26,0xac, +0x70,0x09,0x87,0x48,0xed,0x89,0xc6,0x13,0xcd,0x61,0x35,0x43, +0xfc,0xff,0xd9,0x46,0xab,0xdd,0xb0,0xcd,0x55,0x7b,0x6e,0x66, +0x3e,0x33,0xd5,0x35,0xd8,0xdb,0x36,0xe0,0xd8,0xca,0xff,0xef, +0x96,0xa4,0x3a,0x98,0xd5,0x45,0x1c,0x26,0xe1,0x6b,0xb2,0x7f, +0x28,0x04,0x64,0x58,0xd1,0x09,0x9c,0x08,0x3a,0xa1,0x1a,0x35, +0x0e,0x78,0x82,0x4e,0x52,0x7e,0x24,0x27,0x78,0x9f,0xda,0x9a, +0x13,0xa1,0x27,0x2b,0xd0,0x89,0x95,0x4a,0x95,0x04,0x90,0xc6, +0x71,0x70,0xc2,0x04,0x98,0x6b,0x80,0x73,0x31,0xe0,0xdf,0xdc, +0x4a,0x1a,0x70,0x8f,0xcc,0xbc,0x98,0xbc,0x0d,0xde,0x8a,0x52, +0xd6,0x08,0x4f,0x12,0xdc,0x08,0x87,0x61,0x23,0x23,0x3c,0x40, +0x2f,0x22,0x7e,0x04,0x44,0xf8,0x88,0x11,0x1f,0xe0,0x43,0xe9, +0xba,0x36,0xbd,0xae,0x58,0x4b,0x55,0x47,0x1c,0x97,0xc1,0x27, +0xcc,0x59,0xdc,0x66,0xbe,0x16,0xf7,0x68,0x56,0x53,0xe9,0x0c, +0x1f,0x4e,0xc3,0xbc,0x57,0xb9,0x95,0x66,0x61,0x2d,0x73,0xb4, +0x2c,0xf4,0x92,0xda,0x0f,0x4c,0x5b,0x5e,0x6e,0x9b,0x54,0x59, +0xfa,0x55,0x6e,0xa5,0xdd,0xac,0xfb,0xa9,0xf4,0x46,0x75,0x28, +0xa4,0x84,0x75,0xe6,0x92,0x1f,0x81,0x8d,0x68,0x8b,0x1b,0x29, +0xde,0xd8,0xa2,0xf8,0x82,0xe8,0xa0,0x09,0xee,0x35,0x84,0xbd, +0xcc,0x69,0xec,0x91,0xf6,0x48,0x28,0xe3,0x87,0x5d,0x94,0x03, +0xbd,0x0f,0x5b,0x27,0x40,0x96,0x0a,0xe3,0x9c,0x44,0xee,0x22, +0x4f,0xe3,0xce,0x93,0x2b,0xd4,0xb4,0xe3,0x22,0xc2,0x74,0x96, +0x68,0x30,0x05,0xfa,0x4a,0x2f,0x99,0xa7,0xf5,0xad,0x4f,0xa4, +0xe4,0x67,0x4a,0xa9,0xf0,0x09,0x4c,0xa9,0x62,0x22,0x23,0xba, +0x50,0x0f,0x53,0x7f,0xb7,0xf4,0x5e,0xfe,0x73,0x0e,0x4c,0x27, +0xc4,0xf5,0x86,0xb0,0x9e,0xf1,0xc7,0x8d,0xc6,0xf8,0xde,0x47, +0xa8,0xd4,0xa0,0xcf,0x57,0xd5,0x96,0x35,0x96,0x34,0x71,0xa2, +0xd6,0xf4,0x3d,0x38,0x2e,0x04,0xb0,0x78,0x5c,0xca,0xb6,0x32, +0x03,0x3b,0x70,0x86,0xfa,0x38,0x53,0x45,0x18,0x09,0xc1,0xcd, +0x96,0xb8,0x64,0x33,0xce,0xaa,0xd5,0xe1,0xcb,0x6b,0x8a,0xea, +0x0a,0x1a,0x38,0xf1,0xc0,0xc4,0x57,0x60,0x2c,0x04,0xa1,0x1e, +0x5b,0x7d,0xb7,0xf8,0x7e,0xce,0x33,0x0e,0x34,0xc6,0xf1,0x89, +0x11,0xa3,0x50,0x47,0x20,0xe0,0x3a,0x8e,0xae,0x50,0x07,0x31, +0x13,0x62,0x9e,0x21,0xe5,0x21,0x75,0x28,0x33,0x02,0x19,0xfe, +0x8e,0x11,0x86,0x42,0xe3,0x04,0x9e,0x61,0xc4,0xd2,0x46,0xa9, +0xae,0x82,0x8a,0x38,0x8b,0x15,0x7e,0x1c,0x22,0xc1,0xd7,0xdc, +0x1f,0xb8,0x5f,0xb2,0x0e,0xe2,0x1b,0x74,0x9b,0xb7,0x94,0x1e, +0x95,0x92,0xea,0x7e,0x46,0x50,0x4d,0x12,0x09,0xe6,0x30,0x7d, +0xc5,0xc5,0x83,0xea,0x8a,0x61,0x43,0x76,0xc6,0x64,0x2f,0x09, +0xc5,0x2d,0x4e,0xb8,0xf8,0xe0,0xd2,0x2a,0x6d,0xbe,0xb0,0x22, +0xb7,0x32,0xa7,0x9a,0x13,0x3f,0x1a,0xbd,0x03,0x2b,0x04,0x57, +0x54,0x67,0xcb,0xee,0x16,0x7e,0x95,0xf5,0x2d,0xf7,0x87,0x1c, +0x8b,0x64,0x8c,0xf0,0xcf,0x59,0x32,0x86,0x5f,0x1a,0x5f,0xc6, +0xa2,0xdd,0xb2,0x7b,0xec,0x59,0xd4,0x0a,0xc3,0x0f,0xf4,0x71, +0x41,0x8f,0x25,0xff,0xea,0x7d,0x86,0x8d,0xc9,0x60,0xcf,0x3d, +0x12,0x4f,0xc9,0x85,0x53,0xd7,0xe5,0x87,0xa1,0x88,0xf9,0xb3, +0x96,0xcc,0xac,0x18,0x57,0xac,0x60,0x51,0xee,0x43,0x1e,0x61, +0xd1,0x56,0x06,0xa7,0xc5,0x77,0x08,0xfc,0xfd,0x1d,0xfe,0xcd, +0x2a,0x2b,0x34,0x15,0x1f,0x12,0x28,0x1a,0xc3,0x22,0x58,0xa8, +0x8f,0x0b,0x31,0xda,0x18,0xa2,0x31,0x9e,0x41,0x73,0x7d,0x0d, +0x8c,0x41,0x0d,0xb5,0x06,0x23,0xb0,0x84,0x05,0x4f,0x60,0x56, +0x0a,0x2c,0x51,0x91,0x16,0x5f,0x17,0x3f,0xa2,0x04,0xf4,0x20, +0xbe,0xd3,0x2c,0xe7,0xd1,0x05,0x96,0x1f,0xf9,0x1d,0x2c,0x55, +0xc5,0xb4,0xaf,0x48,0xe5,0x57,0x85,0xf7,0xb3,0x9e,0x72,0xb0, +0x40,0x8e,0x03,0x32,0xe0,0x98,0xe3,0xb8,0xd5,0x01,0x55,0xf7, +0xe2,0x6b,0x54,0xa4,0x92,0xaa,0xfc,0xaa,0xdc,0x1a,0x4e,0xdc, +0x29,0xbf,0x0b,0x5b,0x85,0x10,0x16,0xde,0xf8,0x85,0xe8,0xb1, +0x1f,0x87,0x99,0xed,0xdb,0xa0,0xd6,0x6a,0xdd,0xd4,0xd5,0x3c, +0x9e,0xdb,0xa8,0x92,0x9c,0x95,0x76,0x2e,0x25,0x76,0x12,0x39, +0xbe,0xbd,0x49,0x0f,0xe6,0xc6,0xe7,0x9c,0x4a,0x8c,0xa1,0xf4, +0x2d,0xe6,0x6c,0x92,0x52,0x66,0x5d,0x62,0xdd,0xa8,0xea,0x24, +0x0b,0xcd,0x8b,0x8d,0xd8,0x15,0x11,0x56,0x3a,0xbb,0xd4,0x5a, +0xac,0xeb,0xdb,0xaa,0x06,0x72,0x6a,0x55,0x92,0x33,0x53,0xce, +0xa5,0xc4,0xdd,0xc3,0x77,0xf9,0x8e,0xe6,0xdd,0xb0,0x28,0x2e, +0x27,0x2e,0x31,0x9a,0xde,0x76,0xea,0x6c,0xa2,0x52,0x46,0x7d, +0x52,0xdd,0xa4,0xaa,0x9c,0x9d,0xd9,0x21,0x96,0x10,0x41,0xe9, +0x6f,0x51,0x89,0x95,0xea,0xa7,0x9f,0x24,0x19,0x58,0x2d,0xc7, +0x3a,0x6a,0x31,0x86,0x7d,0x7d,0xfc,0xa7,0x3f,0x5b,0xc1,0x6c, +0x1f,0x78,0x5b,0x3e,0x32,0x7e,0xbf,0xf5,0xb6,0x55,0x3d,0xef, +0xa3,0x63,0xa7,0xe3,0x60,0x1b,0xf6,0x5d,0xdc,0xcf,0x67,0xfe, +0xa2,0xe4,0x78,0x4c,0x6c,0x36,0xa6,0x14,0xd9,0x66,0xdf,0x96, +0xc3,0x2b,0xac,0xaa,0xac,0xf8,0xde,0xd2,0xde,0xea,0x8e,0xc6, +0x52,0x9f,0x22,0xaf,0x02,0xaf,0xa0,0x63,0xc7,0x8e,0xf9,0xf8, +0x47,0x57,0x9e,0x2c,0x8f,0xbe,0x60,0xef,0xcf,0xe7,0x04,0xe7, +0xfa,0x67,0xfb,0x06,0x86,0x05,0x84,0x07,0x44,0x56,0x5a,0xf2, +0x65,0xb9,0x65,0xf9,0x65,0x05,0xb9,0xae,0x39,0x4e,0x59,0xce, +0xf6,0xce,0xd6,0x1e,0x96,0xfe,0xf4,0x62,0x77,0x45,0x77,0x5d, +0x7b,0x63,0xaa,0x7f,0x6a,0x40,0x72,0x60,0x5f,0x29,0x9f,0x50, +0x1d,0x5f,0x17,0xd7,0x50,0x55,0x59,0x51,0x75,0xa1,0x8a,0x4b, +0xb7,0x4c,0x36,0x33,0x53,0xfd,0x24,0xc0,0xdb,0x44,0x6d,0xa3, +0x44,0xc2,0x1f,0x32,0xcf,0xdb,0x87,0x61,0x31,0xe8,0x9b,0x80, +0xd6,0x07,0xf0,0x81,0x7a,0x4b,0x73,0x7d,0x5b,0x79,0x07,0x87, +0x9d,0x67,0xc8,0x38,0xde,0x35,0xa2,0x20,0x28,0x04,0x37,0x59, +0x21,0xbf,0x15,0x5f,0xaf,0xd5,0xe5,0x4b,0x6b,0x8a,0x6a,0x0a, +0xea,0x39,0x71,0xeb,0xf8,0x5d,0xd0,0x15,0x3c,0xf0,0x30,0x5b, +0x75,0xa7,0xf8,0x5e,0xce,0xb7,0xd4,0xa5,0x6b,0x10,0x78,0x49, +0x99,0xf8,0x4b,0x16,0x0a,0x60,0x03,0x89,0x6e,0x3e,0xd9,0x12, +0xd5,0x54,0x5b,0x51,0x5d,0x55,0x5e,0x95,0xe3,0x9d,0xe5,0x95, +0xee,0x19,0xec,0x1d,0xe0,0xed,0xe7,0xcb,0x49,0xeb,0xff,0x91, +0x44,0x8e,0x5d,0x32,0x60,0xd8,0x13,0xaf,0x26,0x70,0x1f,0xbe, +0xfe,0x6a,0x02,0xf3,0xfe,0x9d,0xc0,0xb1,0xbb,0xb0,0x49,0x08, +0xc1,0x35,0x6c,0x85,0x34,0xdd,0xcf,0x38,0x85,0x6b,0x0a,0x19, +0x12,0x07,0xd1,0x9f,0xc5,0xe6,0xd3,0xa8,0xa3,0x87,0x2b,0xd5, +0x06,0x1c,0x95,0xae,0xc0,0xde,0x34,0x30,0x87,0x2e,0x55,0xd8, +0xc3,0x0a,0x6a,0xd8,0x44,0xd2,0x98,0x14,0xeb,0x0c,0xbb,0x6b, +0x47,0xcb,0xbb,0x78,0xdd,0x09,0xbf,0x91,0x98,0x6e,0xee,0x61, +0xcf,0xda,0xc7,0x4c,0x55,0x6a,0x65,0x7a,0x69,0x66,0x68,0x17, +0x6f,0x79,0xfc,0x70,0xd4,0x81,0xd3,0x99,0xb6,0x7c,0x79,0x62, +0x79,0x52,0x59,0x32,0xb7,0x6f,0xa7,0xed,0x75,0x36,0xc6,0xc1, +0xcf,0x44,0xdb,0xb0,0xd2,0x9e,0xbf,0x72,0x25,0xbb,0x2b,0xa5, +0x9f,0x4b,0x43,0xb7,0x3e,0x06,0x43,0xe0,0x10,0x49,0x49,0x94, +0x0a,0x42,0x75,0x1f,0xae,0xae,0xb2,0xbf,0x11,0x9f,0x15,0x9f, +0x78,0x2a,0x4e,0x25,0x36,0x4e,0xe9,0x6c,0xdf,0x17,0x3d,0x9a, +0x8f,0x99,0x8a,0xb4,0xf2,0xb4,0x0b,0x19,0x61,0xff,0x36,0x7a, +0x30,0x81,0x36,0x5a,0x41,0x1b,0x2d,0x4f,0xe1,0xf6,0x6e,0xb2, +0xbd,0xc3,0x46,0xdb,0xf8,0x1a,0xe9,0xc9,0x2a,0xed,0xf8,0xc9, +0xe9,0xc2,0xde,0x94,0xb1,0x7f,0x1b,0x15,0x2d,0x51,0x8f,0x08, +0xcc,0x9f,0x22,0xc3,0x2a,0x54,0x5b,0xc9,0x00,0x7e,0xfa,0xab, +0x29,0xa6,0xac,0x00,0x77,0x53,0x74,0x5f,0x6f,0x21,0x64,0x0c, +0xa2,0xdb,0xef,0xd4,0xb7,0xce,0xa6,0xbc,0xd6,0x88,0xb1,0x8d, +0xce,0xe9,0x56,0x57,0x14,0x6a,0xcf,0x94,0xb3,0x3b,0xab,0xbd, +0x1f,0xa8,0x81,0x19,0xd3,0x5f,0x74,0x61,0x40,0x1d,0x2c,0x59, +0xfd,0x52,0xa5,0x99,0x06,0xe1,0x26,0x31,0x14,0x98,0x09,0x09, +0xbf,0x7c,0x46,0x66,0x16,0x5c,0x52,0x2c,0x80,0x43,0xe3,0xa2, +0x9e,0x11,0xdb,0x29,0xe5,0xc4,0xb0,0x8c,0xff,0xc8,0x76,0x8d, +0xda,0xb8,0xb7,0x52,0xff,0xef,0x19,0xb0,0x00,0xac,0x54,0x6b, +0x74,0x59,0x61,0xbe,0xb8,0x85,0x08,0x5b,0x74,0xc5,0x2d,0x54, +0x3f,0x3d,0x15,0x5f,0x12,0x03,0x5c,0x81,0xa6,0xe2,0xd4,0xd8, +0x35,0x0a,0x2b,0x8a,0x27,0xa1,0x18,0x96,0x1d,0x91,0x0b,0x53, +0x68,0xcd,0xcc,0xa8,0xc1,0x3c,0x22,0x83,0xdb,0x72,0x16,0xca, +0xf0,0x5b,0x82,0xea,0x14,0x61,0xa8,0x33,0xe3,0x48,0x3d,0xdb, +0x36,0xf8,0x00,0xb7,0xb1,0x33,0xcb,0x7f,0x20,0x33,0x8b,0x26, +0x15,0x8b,0x60,0xb5,0x5c,0x54,0x96,0xb1,0x8d,0xf8,0xfe,0xab, +0xbf,0xe9,0xbc,0x5e,0x6d,0xc4,0x53,0xa9,0x83,0xfe,0x4d,0x65, +0xb0,0x56,0x6d,0x36,0x62,0xe1,0x8e,0xb8,0x87,0x08,0x7b,0x8c, +0xc4,0x3d,0x2c,0xe8,0x08,0xca,0x04,0xd4,0x71,0x1f,0xaa,0x33, +0xd4,0xd8,0xf7,0x11,0xda,0xd2,0x3e,0xfc,0x80,0xfa,0x6c,0x27, +0xf0,0x22,0xb0,0x0b,0xac,0xe5,0x68,0x0d,0x9b,0x21,0x44,0x8e, +0x6a,0x6c,0x45,0x4f,0xd5,0x64,0xc9,0x88,0x49,0x09,0x1f,0x64, +0xe0,0xaf,0xe3,0x25,0xe3,0xa4,0xa5,0x09,0x77,0xdc,0x8c,0x32, +0x19,0xf5,0x84,0xbb,0x30,0xc4,0x10,0x42,0x30,0x6c,0x1a,0xc2, +0xa8,0x93,0x64,0xf0,0xa6,0xe0,0x4b,0x42,0x06,0xfc,0xe4,0x81, +0xed,0xe6,0x01,0x7c,0xa5,0x7d,0x95,0x45,0x89,0x19,0x27,0xa6, +0xc1,0x32,0x2a,0xc2,0x45,0x39,0x8b,0x47,0xf0,0x14,0x99,0x79, +0x67,0x42,0xf1,0x0e,0x7c,0x28,0x17,0x67,0xc9,0xd8,0x7a,0x54, +0x25,0x68,0x11,0xff,0xb1,0xcb,0x27,0x6a,0xc3,0xb4,0xb3,0xbf, +0xa6,0xd3,0xce,0x5a,0xaa,0x36,0xcb,0x58,0xb8,0x2a,0xee,0x20, +0xc2,0x0e,0x23,0x71,0x07,0xab,0x7c,0x53,0xd1,0x45,0x6f,0x97, +0xcb,0xd9,0x5f,0x16,0xe3,0x57,0xc2,0x76,0xf8,0x8a,0x95,0xa1, +0x1a,0x41,0x0a,0x53,0x27,0x18,0x51,0x1b,0x79,0x82,0x0a,0x19, +0x6c,0x98,0x79,0x67,0x9c,0x36,0xbb,0x8c,0x01,0x7e,0x90,0xc0, +0xc4,0x46,0xa4,0x9f,0xd9,0xae,0x7e,0xd5,0xb8,0xeb,0x27,0x6a, +0x43,0x9e,0x4a,0xed,0xbf,0x66,0xbc,0x6a,0xbc,0x85,0x36,0x9e, +0xb4,0x58,0x5c,0x28,0x17,0x16,0xb2,0xf0,0x02,0xe5,0x04,0xcc, +0x06,0xd1,0x8c,0xba,0xfa,0xc0,0x41,0x31,0xdb,0x82,0xba,0xc2, +0x6f,0x98,0xbd,0x25,0x4e,0xd7,0xff,0x54,0xbd,0x64,0xa4,0xc3, +0xe2,0x6c,0x1f,0xf3,0x6d,0x66,0x6a,0x15,0x26,0xf7,0x47,0x6a, +0x7b,0x92,0x9f,0x52,0x77,0xb8,0x31,0x69,0x6c,0x27,0xa8,0x2e, +0x81,0xa8,0x57,0x2f,0x51,0x9f,0x64,0x94,0xaf,0xff,0xb7,0x77, +0x9d,0xa6,0x44,0x68,0x1d,0x11,0x5b,0x99,0x69,0xfc,0x99,0x08, +0x6b,0xc1,0x5f,0x5c,0xcb,0xc8,0x71,0x0f,0x81,0xb9,0xd0,0x8b, +0x73,0xd9,0x99,0xf9,0x63,0xe4,0xdf,0x3e,0x7e,0x20,0xc7,0x7f, +0x64,0x6c,0xdd,0xff,0x12,0xfd,0xff,0xee,0xdd,0xa4,0xb8,0x93, +0x48,0x5b,0x36,0x77,0xb2,0xa0,0x8d,0x6f,0x12,0x39,0xfc,0x23, +0x1b,0x17,0xac,0x45,0x5f,0xd1,0x9a,0x05,0x67,0x68,0x25,0xb8, +0x8a,0xd2,0xf8,0x55,0xcc,0x08,0xce,0x93,0xf8,0xfc,0x3a,0x09, +0xe2,0xbb,0x58,0x12,0x7c,0x87,0x5e,0x7f,0x87,0x05,0x87,0xc5, +0xf4,0xd2,0x3b,0xb8,0x4e,0x2a,0xab,0x28,0xfc,0x4d,0xba,0xf3, +0x69,0xa8,0x1e,0x64,0x4d,0x32,0x95,0xb4,0xf1,0x12,0xeb,0x72, +0x32,0xad,0x45,0xfd,0x02,0x0b,0xcb,0xd3,0x41,0x2d,0x1b,0x94, +0xcb,0x82,0x7b,0xf9,0x65,0x21,0xb8,0x34,0x0a,0xdf,0x3b,0xcd, +0x5d,0x32,0xa2,0x70,0xfd,0x70,0xc5,0xf1,0x1b,0x6a,0x62,0x24, +0x58,0x12,0x63,0xa8,0x1f,0x63,0x69,0xc4,0x8e,0x25,0x33,0x2a, +0x63,0x0a,0x15,0xa0,0x21,0xe8,0xbe,0x31,0x2b,0x18,0x8a,0x87, +0x89,0xb0,0xdf,0x48,0x3c,0x2e,0x94,0x0d,0xb1,0x9e,0x63,0xd4, +0xc9,0x8a,0xaf,0x51,0x2f,0x0b,0x53,0x70,0x9b,0xc8,0x30,0x55, +0xce,0x8a,0x2d,0x3b,0x08,0x5a,0xc5,0x7f,0xe4,0xb1,0x41,0x6d, +0xc0,0x43,0xa9,0xe5,0x37,0x69,0x4a,0x6d,0x54,0xdb,0x4d,0x59, +0x68,0x10,0xf7,0xd3,0x5b,0x4d,0xc5,0xfd,0x14,0x21,0x09,0xb3, +0x88,0x11,0xa6,0x8e,0xb3,0x90,0xba,0x8c,0xe8,0x63,0xea,0x14, +0x8b,0x6e,0x22,0x21,0x5f,0x95,0xdf,0x6b,0x91,0x77,0x7a,0xb4, +0xf3,0x32,0x67,0x4d,0xcf,0x4f,0x83,0x39,0xf8,0x63,0x90,0x5c, +0x0b,0xb8,0xe5,0x7d,0xdb,0xa1,0xba,0x9f,0x3f,0xda,0xba,0xbf, +0x71,0x7f,0x19,0xa5,0x47,0xbf,0x4a,0xbb,0xfe,0x46,0x93,0xc6, +0x13,0x27,0x0d,0x12,0xf9,0xcf,0xfe,0xd7,0xae,0x3f,0xde,0x08, +0x16,0x32,0x5e,0xd8,0xfc,0x29,0x5a,0x4b,0x3b,0xb2,0x07,0x6c, +0x79,0xa9,0xfc,0xf0,0x7d,0xf0,0xaf,0x87,0x7e,0x0e,0x84,0x71, +0x66,0xc6,0x22,0x8f,0x42,0x13,0x7d,0xdc,0x88,0xea,0x32,0xf8, +0x51,0xce,0x26,0x89,0xe1,0xc4,0x2d,0xdc,0x25,0xd2,0x39,0xb2, +0x0a,0x16,0x56,0xc3,0xba,0x3c,0x58,0x68,0x94,0xc5,0x47,0xe0, +0xfb,0xc7,0x70,0x9f,0x27,0x2e,0x36,0x0c,0x35,0x88,0x30,0x88, +0xca,0x33,0xe0,0x61,0x41,0x0d,0xcc,0x6f,0x87,0xd7,0x07,0x38, +0xf4,0xb9,0x4a,0x62,0x40,0x39,0x02,0xde,0x08,0x06,0xc6,0x38, +0x8a,0x2f,0xc5,0xd9,0x79,0xf8,0x46,0x16,0xbe,0xc9,0x29,0xde, +0xfd,0x85,0x54,0xe8,0xd5,0xed,0xac,0xd8,0xad,0x13,0xa5,0x79, +0x72,0x6f,0x6c,0x37,0x2c,0x6d,0x05,0xe3,0x0a,0x58,0x67,0x94, +0xc9,0x07,0xe1,0x3a,0x0b,0xf4,0xb4,0xc3,0xf7,0x03,0x3e,0x0b, +0x38,0x1b,0xf0,0xaa,0x8e,0xde,0xa2,0x5c,0x78,0xaf,0xe4,0x65, +0x45,0xa6,0x57,0x86,0x4f,0x9a,0xff,0x58,0x05,0xef,0x03,0x4a, +0xe6,0xb0,0xce,0xe6,0x0f,0x4e,0xf9,0x9f,0xdd,0x42,0x20,0x39, +0x19,0x14,0x15,0x1c,0x15,0x22,0xa5,0x90,0xb7,0x67,0xf3,0x2b, +0xf2,0xaa,0x33,0xab,0xf4,0xb2,0xf9,0x53,0xde,0x51,0xde,0xa1, +0x3e,0x1c,0xae,0x13,0x9d,0x99,0x80,0xcf,0xfc,0x69,0x4b,0x99, +0x94,0x8b,0xbf,0x9d,0x03,0x6a,0x85,0xf0,0x56,0xf5,0x07,0x38, +0x0b,0x55,0xb7,0xe3,0x51,0xcd,0x5a,0x19,0x0f,0x5a,0x5f,0xc3, +0xd2,0x6f,0x61,0x16,0xbc,0x21,0xa5,0xa1,0xd4,0x63,0xf3,0x0c, +0xa5,0x9c,0x27,0x03,0x85,0xd2,0x32,0xc5,0x45,0xb6,0xb6,0xbd, +0xaa,0xab,0xa2,0x8f,0x9b,0xf1,0x84,0x08,0x02,0x1b,0xf4,0x70, +0x03,0x7e,0x64,0x04,0xff,0x19,0x67,0x85,0x4f,0xf7,0x11,0x94, +0xff,0x00,0x72,0x46,0xdc,0x2d,0xc6,0x90,0x7f,0x57,0xa1,0x6a, +0x68,0xd3,0xb0,0x2a,0x0f,0x94,0x0d,0xb3,0xf8,0x70,0x54,0xf5, +0xc5,0xdd,0x5e,0xb8,0x48,0x3b,0x44,0x2b,0x54,0x3b,0x22,0x5f, +0x4a,0x6e,0xda,0x00,0x8b,0xba,0x81,0x1d,0xe5,0x30,0x62,0x94, +0x44,0x83,0x72,0x18,0xcc,0x0b,0xa0,0x23,0x13,0xc9,0x97,0xe3, +0xac,0x02,0x9c,0x9f,0x8d,0xf3,0x39,0x61,0x39,0x14,0x92,0x17, +0x20,0x5f,0xcd,0x5a,0xce,0x39,0xc8,0xae,0x0a,0x5b,0x1e,0xf9, +0x41,0x0c,0x07,0x2c,0xc5,0x63,0x31,0x8a,0x9d,0x04,0xb6,0x18, +0xe0,0x16,0x69,0xc9,0xf8,0x1a,0x75,0x6f,0x0f,0x36,0x13,0x88, +0x18,0xc0,0x88,0xaf,0x20,0x75,0x10,0x53,0xaf,0x1b,0x1e,0xc6, +0x38,0x0b,0x88,0xdb,0x83,0x01,0x96,0x10,0xb0,0x1d,0x53,0xcc, +0x85,0x9b,0x43,0x98,0xcf,0x88,0x47,0xc4,0xb9,0xa4,0x12,0x16, +0x55,0xc0,0xa6,0x1c,0x20,0xb2,0x0c,0xfe,0x24,0x6a,0x04,0xe0, +0x21,0x5f,0x7c,0xd7,0xf4,0xb8,0x49,0xb8,0x69,0x64,0x1e,0x1d, +0x15,0xa6,0x1e,0x5e,0xef,0xfc,0x75,0xe4,0xd4,0x18,0xef,0x19, +0xe6,0x11,0xee,0x16,0xc9,0xed,0x1c,0x24,0x71,0xf0,0x4e,0x14, +0xbc,0x75,0x02,0xde,0x30,0x8d,0xe6,0x8b,0x91,0xcd,0xc6,0x05, +0x19,0xb8,0x90,0x13,0xe6,0x61,0x96,0x94,0x20,0xf2,0x57,0xdc, +0x83,0x4b,0xd8,0x1c,0x63,0x25,0x60,0x99,0xbe,0xc2,0x82,0x57, +0x09,0x22,0x5d,0xa4,0x04,0x91,0x36,0x92,0xbd,0x2d,0x03,0x9e, +0x3a,0x16,0xf9,0xbf,0xdb,0x96,0x56,0x22,0x4f,0xb9,0x9d,0xa6, +0xd0,0x42,0x1a,0xe5,0xd5,0xd7,0xf2,0xae,0xc0,0xd2,0x54,0x58, +0x5e,0x00,0x0b,0xea,0x8e,0xf5,0xf1,0x38,0xcf,0x17,0x3f,0x8e, +0xc0,0x4d,0xa7,0x23,0xf6,0xf9,0xee,0x73,0x37,0xe5,0x50,0xf5, +0x0f,0x02,0xeb,0xf4,0x71,0x1d,0xbe,0x27,0x83,0xa7,0x72,0x56, +0xd8,0xdf,0x48,0xea,0xcd,0x6b,0x0c,0x4a,0x4c,0x86,0xca,0xf8, +0xe3,0x23,0xde,0x93,0x9e,0xfd,0x1c,0xae,0xc6,0x1d,0x24,0xae, +0x27,0x6a,0x38,0xb2,0xcd,0x34,0x86,0xcf,0xb3,0xcb,0xb2,0x4a, +0xb3,0xe1,0xc4,0xc5,0xe2,0x2a,0x52,0x03,0xef,0x54,0xc3,0xda, +0x7c,0xaa,0x97,0x99,0x54,0x2f,0xdf,0x3b,0x86,0xbb,0x3d,0x91, +0xc8,0x22,0x8d,0x4e,0x1a,0xc5,0x48,0x0b,0xeb,0xf3,0x4a,0x61, +0x4e,0xfd,0x1f,0x6d,0x71,0x54,0xca,0x93,0x1e,0xd1,0xee,0x31, +0xdc,0xb6,0x9b,0x24,0x16,0xe6,0x46,0x00,0x1b,0x02,0xaf,0x4b, +0xea,0xa9,0x91,0x8b,0x4c,0x16,0xce,0xe5,0x14,0xb9,0xb0,0x89, +0xc0,0x26,0xf1,0xb8,0x39,0x58,0x2d,0xc5,0xcf,0xcd,0xe1,0x73, +0x54,0x42,0x6b,0x73,0xb0,0xa6,0x93,0xbf,0x9c,0xcd,0x35,0x52, +0x02,0x65,0xa6,0xaf,0xa8,0xa4,0x4b,0x1d,0x56,0xc1,0x1e,0xc3, +0x31,0x08,0x1e,0x1d,0x62,0x71,0xce,0xdf,0x64,0x29,0xee,0xfe, +0x9b,0xc5,0xf2,0x39,0xa0,0x04,0xbb,0x91,0x02,0x29,0x28,0x55, +0xd8,0x90,0x12,0x9f,0x62,0xef,0x22,0x8f,0xe1,0x12,0x3e,0xb2, +0x32,0xa2,0x3c,0xbc,0x9c,0x83,0x9d,0x83,0xd8,0xc1,0xe4,0x5c, +0xc8,0xba,0x90,0x7e,0xc1,0x34,0x8f,0xf7,0xda,0x6f,0x71,0xe4, +0xa0,0x71,0xa7,0x0b,0xdf,0x5c,0xdb,0xd8,0x58,0xd5,0xc2,0x09, +0x76,0x83,0x24,0xeb,0x42,0x46,0x69,0xda,0x05,0x93,0x6c,0x3e, +0xe8,0xb0,0xeb,0x51,0x33,0x59,0x8f,0x17,0x5f,0x59,0x5d,0x5a, +0x5f,0xdc,0xc0,0x7d,0xc7,0x94,0x7a,0x96,0xb8,0x97,0xb8,0x0e, +0x15,0xf3,0xe1,0x75,0xe1,0x55,0xa1,0x55,0x1c,0x18,0x0e,0x32, +0x61,0x22,0x4b,0x28,0xd5,0xf7,0xaf,0x0e,0xae,0x09,0xad,0xe1, +0xe0,0xed,0x7e,0x8c,0x62,0xb2,0x6b,0xa4,0xf7,0xe4,0x8c,0x33, +0xf9,0x53,0x9e,0x31,0x9e,0x91,0x9e,0x1c,0xee,0xb4,0x82,0xa5, +0x4c,0x98,0x6f,0x88,0xaf,0xbf,0x1f,0x87,0xb5,0x16,0x10,0xc2, +0x18,0x98,0xef,0xb6,0x5a,0x6e,0x57,0x67,0xc1,0xdf,0x6a,0x98, +0x6c,0x1a,0x6a,0xe2,0xd0,0x80,0x5d,0x59,0xe1,0xfb,0xb7,0x9a, +0xb0,0x88,0xe9,0x28,0x2d,0xea,0x56,0x7f,0xc2,0x1a,0x17,0x29, +0xe1,0x5c,0xf1,0x4d,0x76,0x5f,0x74,0xd6,0x97,0xea,0xb0,0x04, +0x04,0x36,0xec,0x5c,0xf0,0x67,0x91,0x6a,0xbe,0x67,0xe2,0xe3, +0x2d,0x96,0xe0,0x4a,0x26,0xc7,0x4a,0x09,0xd6,0x32,0x5f,0x94, +0x94,0x0f,0xa6,0xaa,0x27,0x57,0x9c,0x6f,0x1a,0x51,0x1d,0x76, +0x9c,0x72,0xbd,0xe6,0x59,0xd3,0xc7,0xaf,0xe9,0xd5,0x1c,0x30, +0x1a,0xe2,0xc0,0x8d,0x99,0x69,0x79,0x41,0xae,0x35,0xde,0xbd, +0xd8,0x3d,0x61,0x57,0xc7,0x3b,0x18,0x69,0x59,0x1e,0x74,0xe3, +0x14,0x15,0x67,0x89,0xa1,0x5c,0xb7,0x4f,0xbb,0xdd,0xc9,0x8d, +0xbf,0xe2,0x34,0x65,0x25,0x95,0x75,0x1e,0x6b,0x27,0xf9,0xbe, +0x25,0xbe,0xa5,0xb4,0x83,0x06,0x4c,0x69,0x75,0x51,0x75,0x7e, +0x2d,0x87,0x56,0x18,0x48,0x9a,0x2a,0xeb,0x2a,0x2b,0xa9,0xac, +0x35,0x4c,0xe5,0xb1,0x9a,0x63,0xf5,0x01,0x94,0x25,0xd8,0x0b, +0x4f,0x08,0xb8,0x0f,0xa0,0xfb,0x3d,0x88,0x1c,0xc4,0x48,0x29, +0xed,0xe9,0x31,0x0b,0x38,0xb6,0x1b,0xed,0x2c,0xc1,0x6e,0x3b, +0x46,0x58,0x08,0x55,0x83,0x78,0x9a,0x11,0x8d,0x71,0x25,0x39, +0x7d,0x1f,0x54,0xe4,0xa8,0x02,0x2f,0x8c,0xf0,0x05,0x6e,0x92, +0xd1,0x48,0x10,0x8e,0xb3,0x0d,0x71,0xce,0xd6,0x0f,0x1b,0xcd, +0xf8,0x7b,0x2f,0xda,0xbf,0x4b,0x97,0xd2,0xc4,0x6c,0x1f,0x17, +0x3e,0x96,0x5e,0xcd,0x4f,0x3a,0xad,0xf6,0x1c,0xf7,0xb6,0x76, +0xac,0x87,0x3d,0xa7,0x33,0xe3,0x12,0xa3,0xa2,0x55,0xa6,0xe0, +0x53,0x52,0x71,0xb9,0xf2,0x71,0xe1,0x97,0x16,0xc5,0x7c,0xc4, +0xa7,0x41,0x3b,0x03,0xb5,0x39,0x5c,0x98,0x44,0xc2,0x6f,0x06, +0x7d,0x1d,0x72,0xd9,0x2a,0x88,0xbf,0xa0,0x5d,0xbe,0x3b,0xff, +0x20,0x27,0x6c,0x98,0x61,0x08,0x9c,0x82,0x1b,0x14,0x1a,0xbc, +0x2d,0xd9,0xc6,0x4b,0xa6,0xb7,0xa0,0xb0,0x5b,0x5d,0x50,0x17, +0x0f,0x8a,0x9e,0x2c,0xe8,0x42,0xbb,0x94,0x9d,0xe5,0x5d,0x78, +0xe7,0xbf,0xb9,0x53,0x55,0xa4,0xc5,0x24,0x85,0xbd,0x42,0x87, +0x14,0x74,0xe5,0xf4,0x65,0xf5,0xe9,0x66,0xf2,0x31,0xe6,0x91, +0xe6,0xe1,0xb6,0x1c,0xae,0x9f,0xc9,0x9a,0xbe,0x0e,0xf2,0xc3, +0xd3,0x8a,0x2c,0x46,0xbc,0x81,0x26,0x24,0xcf,0x2f,0xd7,0x2b, +0xc7,0xd3,0x28,0x5e,0x3f,0x41,0xef,0xcc,0xb5,0x87,0x37,0x81, +0x99,0x06,0xd6,0xac,0x9a,0x22,0x71,0xd7,0xa3,0x4e,0xba,0x21, +0x15,0x81,0x15,0x41,0xe5,0x1d,0xd3,0xcd,0x37,0xab,0xaf,0x9a, +0x95,0xf3,0x01,0xda,0x9e,0xda,0xee,0xc6,0x61,0x05,0xe1,0x79, +0xe1,0x79,0xee,0x76,0xfc,0x84,0xa5,0xdc,0x78,0xc8,0x20,0xd0, +0x35,0xc0,0x23,0xd0,0xd7,0xe5,0x33,0x97,0x73,0xae,0xe7,0x52, +0x8d,0xf8,0x8b,0x49,0x97,0x92,0x2e,0xa6,0x70,0xe2,0xba,0x29, +0x61,0x13,0xdb,0x95,0xdc,0x99,0xd2,0x91,0x52,0x28,0xe3,0x07, +0x8b,0x43,0x6e,0xf9,0x7e,0xe1,0x37,0x29,0x25,0x79,0x54,0x23, +0x90,0x0c,0x72,0x4c,0xa6,0xac,0x08,0xe9,0x68,0xd7,0xd0,0xf3, +0x1a,0x56,0xac,0x04,0x3b,0x52,0x79,0xb0,0x64,0x67,0xfe,0x9e, +0xd1,0x12,0x3e,0xfc,0xcb,0xc0,0x07,0xfe,0xd7,0x39,0x1c,0xc4, +0x01,0xd2,0xfd,0xb8,0xfc,0xe7,0xbc,0x9f,0xcc,0xb2,0xf9,0xc8, +0x0d,0x41,0x9b,0xed,0xb7,0xbf,0x2a,0xf9,0xbb,0x8d,0x9c,0xba, +0x73,0x35,0xfb,0x62,0xae,0xbc,0x50,0x25,0xac,0xc7,0x2a,0xd2, +0x20,0x4a,0x2b,0x5a,0xe5,0xd4,0xad,0xcb,0x99,0xd3,0x39,0x43, +0xf9,0x2a,0x11,0xdd,0x76,0x51,0x86,0xd1,0xda,0xb1,0x2a,0x71, +0x57,0x2f,0x67,0x4c,0x65,0x0f,0xe7,0xd1,0xef,0xd8,0x51,0x5b, +0xd5,0x39,0xa5,0x12,0x37,0x6d,0x78,0x26,0x5d,0x4b,0x16,0x6f, +0x90,0x60,0x78,0x56,0x25,0xdb,0x7a,0x2c,0x69,0x3c,0x65,0x2c, +0x4d,0x25,0xe3,0x88,0x6e,0x9c,0x56,0xbc,0xf6,0x19,0x95,0x2c, +0xeb,0xe9,0xe4,0x4b,0xa9,0x17,0x33,0x54,0x32,0xf6,0x1f,0x8a, +0xfd,0x34,0xee,0xd3,0x33,0x2a,0x39,0x96,0x37,0x53,0x6e,0xa5, +0xdd,0xc8,0x52,0xc9,0xd0,0x54,0x82,0xaa,0x0a,0x02,0x6f,0xbf, +0x68,0x7a,0x9e,0x02,0x6f,0x73,0xb0,0x86,0x31,0x3a,0xab,0x1d, +0xa3,0xaf,0x66,0x76,0x2a,0x2c,0x54,0x77,0xc9,0x6e,0x26,0xcf, +0x54,0xe9,0x4b,0xe6,0x51,0x4b,0xfb,0xa5,0x6c,0xf5,0xbc,0xbb, +0x49,0x77,0xfe,0x52,0x15,0xd7,0x9b,0x51,0x67,0x95,0x80,0xf3, +0xdc,0x0f,0xe1,0xeb,0x3b,0x39,0xf8,0x16,0x87,0x48,0x61,0x58, +0x61,0x68,0xd1,0xf1,0xae,0x7a,0xde,0x64,0x42,0x5f,0x7e,0x74, +0xd8,0xd1,0x87,0xaf,0x0c,0xa9,0x08,0x29,0x0f,0xfa,0x38,0x4e, +0xe3,0x34,0xce,0x39,0xf3,0x64,0xe0,0xf9,0xe5,0x3b,0x17,0x6d, +0x1a,0x79,0x7d,0x8b,0xed,0x7a,0x1b,0x4d,0xfd,0x0b,0x7d,0x0b, +0x7d,0x8b,0xc6,0x9b,0x87,0xdb,0x86,0xba,0x6c,0xea,0x78,0x7b, +0x17,0x03,0x07,0x6d,0x27,0x8f,0x62,0x4f,0x4a,0x7f,0x5c,0x9d, +0xf8,0xfb,0x8e,0x5f,0x3a,0xdc,0xb6,0x8b,0x8e,0x3f,0x79,0x3a, +0xfa,0x34,0x77,0x76,0xed,0xca,0x73,0x1f,0x2e,0x49,0xa7,0x7e, +0xf3,0x1d,0x58,0x9c,0x9c,0x0a,0x8b,0xd4,0x31,0xfc,0x12,0x44, +0xb1,0xf0,0x5a,0xea,0xdf,0x69,0xbf,0x65,0x72,0xe8,0xaa,0x41, +0xfe,0x70,0x78,0xec,0xf4,0xc8,0xba,0xb1,0x97,0xdf,0xd0,0xbf, +0xa5,0x7d,0x55,0x1b,0x27,0x5e,0x45,0x4d,0xf2,0x47,0xf3,0x0f, +0x3d,0x97,0xa5,0xd5,0x0f,0x1d,0xdb,0xcd,0x4e,0x2b,0x3d,0x69, +0x54,0x7f,0x0d,0x14,0x24,0x4f,0xd6,0x99,0x5f,0xee,0xdd,0xdb, +0xdd,0xd0,0x57,0xd4,0xa4,0x92,0x94,0x91,0x7a,0x3e,0x35,0xee, +0xc9,0x52,0xbe,0xae,0xa1,0xde,0xad,0xa5,0xad,0xb2,0xa5,0xa0, +0x5e,0x25,0x29,0x3d,0x25,0x31,0x2d,0xee,0x4f,0x5c,0xc4,0xb7, +0xb6,0x53,0x14,0x14,0x9d,0x17,0xf3,0xf9,0x7f,0x37,0x45,0xe4, +0x36,0xa5,0x75,0x4e,0xa9,0x76,0x1b,0xd9,0xb1,0xab,0x23,0x2c, +0xf6,0xef,0x50,0xd3,0x7c,0x16,0x93,0x17,0x7d,0x4e,0xda,0x6e, +0x11,0x4b,0xf9,0x64,0x4e,0x7d,0x5a,0xf7,0xa4,0x6a,0xbf,0x91, +0x35,0xfb,0x51,0xb8,0xe9,0xf6,0x2d,0x6a,0x61,0x17,0x83,0x2f, +0x06,0x0f,0x59,0x87,0xf2,0xb9,0x7e,0xd9,0xde,0xd9,0x9e,0x96, +0xa7,0x2d,0x12,0xcc,0xce,0x5c,0xfa,0xe6,0x3a,0x28,0x4d,0x00, +0x67,0x51,0xcd,0xfb,0xe9,0xba,0x6b,0xb9,0xea,0x1d,0x2f,0xa7, +0x83,0x54,0xde,0x36,0xdd,0x74,0xab,0xfa,0x9a,0x59,0x19,0x1f, +0xa4,0xed,0xa5,0xe5,0x69,0x1c,0x91,0x1f,0x91,0x1b,0x99,0xeb, +0x61,0xc7,0x8f,0x5a,0x8f,0x98,0xf4,0x1b,0x05,0xba,0x04,0xb8, +0x05,0xf9,0x78,0x7e,0xe6,0x79,0xce,0xf3,0x5c,0xaa,0x8c,0x1f, +0x4f,0x9c,0x48,0x1e,0xa7,0x7a,0xb8,0x79,0x5c,0xd8,0xc9,0x36, +0x24,0xd7,0x27,0xd7,0xa7,0x70,0xf0,0x8b,0xa0,0x44,0x80,0x31, +0x40,0x06,0xbd,0x4c,0x84,0xf3,0xa3,0x2c,0x76,0x8a,0x3a,0x64, +0x3d,0x06,0x9a,0x40,0x20,0xfa,0x4f,0x82,0x3f,0x9c,0x19,0xc5, +0x33,0xdf,0xb1,0xe2,0x0a,0x4f,0x52,0x76,0xb0,0x70,0x47,0xce, +0xae,0xe1,0x62,0xfe,0xe4,0x9d,0x90,0x87,0x81,0x54,0x17,0xab, +0xb0,0x8f,0xb4,0x3d,0x2a,0xf9,0x35,0xe7,0x67,0xf3,0x0c,0x3e, +0x7a,0xe3,0xf1,0x4d,0x2e,0x92,0x2e,0xfe,0x03,0x40,0xf2,0x4c, +0xfa,0x8b,0xc2,0x6e,0x04,0xde,0xf2,0x9f,0x50,0xb1,0x39,0x91, +0x73,0x8c,0xf2,0x3a,0x4f,0x15,0xab,0xd3,0xe6,0x09,0xe6,0x67, +0x2e,0x3d,0xbc,0x26,0x09,0xc2,0x5a,0x56,0xf3,0xbe,0xfa,0x1e, +0xda,0x6e,0xfa,0x27,0xca,0x42,0xca,0x83,0x4b,0xdb,0xa6,0x1b, +0x6f,0x56,0x5d,0x35,0xa7,0x82,0xe8,0x78,0x6b,0x7b,0x9a,0x44, +0xe4,0x45,0xe6,0x45,0xe6,0x78,0xd8,0xf3,0x23,0xd6,0xc3,0xa6, +0x7d,0xb2,0x00,0xe7,0x00,0xd7,0x40,0x6f,0xef,0x73,0xde,0x9f, +0x79,0x9f,0x4b,0x35,0xe6,0xc7,0x12,0xe5,0xc9,0x72,0x2a,0xc8, +0xfa,0x09,0x61,0x0b,0x5b,0x9f,0x54,0x9f,0x5c,0x97,0xc2,0x09, +0xda,0x14,0xcf,0x8e,0xf6,0x0d,0x8f,0xb7,0x8e,0x39,0xd6,0xf1, +0x6e,0xa6,0xe6,0xc6,0x36,0x0e,0x9c,0xd3,0x44,0xf0,0xc4,0x90, +0x6a,0x19,0xa4,0x8f,0x20,0xc3,0x96,0x7f,0x5f,0x0c,0xaf,0xe5, +0x3f,0xe3,0xf0,0x01,0x93,0x7b,0xc3,0x30,0xf1,0xe4,0x5e,0x7f, +0x8d,0x63,0xeb,0x54,0xe0,0x47,0x26,0xde,0x37,0xde,0x37,0xce, +0x9f,0x13,0x95,0x4c,0x21,0x42,0xdc,0x8b,0x9c,0x54,0x56,0xf5, +0x19,0x33,0x58,0x90,0x3f,0xa4,0x0e,0xf9,0xa9,0x6c,0xd6,0xc6, +0xbb,0xeb,0x41,0x75,0x65,0x43,0x1f,0xaf,0xd5,0x2d,0x1b,0xb4, +0x1f,0xe6,0x30,0x57,0xd8,0x47,0xd2,0x2b,0x32,0x5b,0x32,0x5a, +0x39,0xa8,0x60,0x12,0xfc,0xe3,0xdd,0xe2,0x5c,0x38,0x8c,0xc2, +0xef,0x88,0x77,0xa3,0x45,0x8f,0x73,0x8d,0x97,0x2b,0xdf,0xe2, +0x37,0x68,0xdb,0xe0,0xca,0xd5,0x9f,0x26,0x76,0xb2,0xc3,0x3a, +0x3a,0xb6,0x31,0x37,0x4e,0xdc,0x39,0x7e,0xd1,0x2a,0x92,0xbf, +0x70,0xb8,0x60,0x77,0xf6,0xde,0xfa,0x6c,0xbe,0xca,0xe1,0xd6, +0xd0,0xfd,0x2f,0xfb,0x2f,0xaa,0x88,0xb5,0xe8,0x41,0x5a,0x1e, +0x96,0xfc,0x92,0x2d,0x0d,0x63,0xec,0xc6,0xe3,0x9b,0x5d,0x77, +0x48,0x69,0x34,0x85,0x44,0x32,0x8c,0x9b,0xd8,0xd1,0x2b,0xbd, +0xb7,0xdb,0xbf,0xb1,0xac,0xe0,0xed,0xd6,0x18,0x6f,0xd7,0x39, +0xc8,0xe9,0x50,0xa2,0xb6,0x66,0x18,0xd7,0xfc,0x69,0x44,0x29, +0x96,0x19,0x6c,0xc3,0x05,0x68,0x69,0x06,0x25,0xcc,0xbe,0xfd, +0x5b,0x0c,0xd6,0x5b,0x86,0xdd,0x08,0xba,0x11,0x30,0x6e,0x7d, +0x82,0xcf,0x39,0x96,0x4d,0x07,0xdd,0x86,0x2a,0x8f,0x25,0x55, +0x9e,0x1b,0xa0,0x34,0x09,0xac,0x45,0x15,0xef,0xab,0xe7,0xa6, +0xe5,0xaa,0x7f,0xbc,0x3c,0xb8,0x3c,0xa8,0xac,0x7d,0xba,0x49, +0x72,0x62,0x65,0x7c,0xa0,0x8e,0x97,0xb6,0xa7,0x71,0x78,0x7e, +0x44,0x5e,0x84,0xa4,0x3c,0x63,0x56,0xa3,0xa6,0xfd,0x86,0x54, +0x79,0xdc,0x03,0x7d,0x3c,0x3e,0xf3,0xa0,0xea,0x43,0xc7,0x7c, +0x22,0x69,0x32,0x69,0xe2,0xbf,0x63,0xfe,0x43,0x76,0x6a,0x68, +0x4a,0x68,0x4a,0x98,0x4a,0x43,0x4e,0x95,0x4d,0x71,0x56,0x51, +0x76,0x51,0xb6,0x8a,0xf8,0x96,0x7c,0x0c,0x6a,0x8d,0x27,0x04, +0x7d,0x36,0xfd,0x54,0x4b,0x8b,0x4f,0xa3,0x73,0x8b,0x73,0xb5, +0x8a,0xab,0x7b,0x83,0x7f,0xbd,0x6f,0xb5,0x8f,0x0a,0x36,0x31, +0x63,0x1d,0x83,0x5d,0xbd,0x14,0x55,0xd8,0xe2,0xb0,0xf4,0x0a, +0x67,0xad,0x54,0x21,0x31,0xbf,0x9f,0x54,0x68,0x96,0x6c,0xcd, +0xdd,0x3e,0x42,0xc3,0xf6,0xbd,0xa0,0x47,0xfe,0xb7,0x39,0x6c, +0xc0,0x5e,0xd2,0xfe,0x4d,0xe9,0x2f,0x39,0x3f,0x99,0x65,0x52, +0xb5,0x0a,0xd9,0xec,0xbc,0x9d,0x13,0x8a,0xe1,0x43,0x42,0x6f, +0x51,0xc6,0x5a,0x46,0x19,0x3a,0x84,0xb3,0xe4,0xbf,0x02,0x5a, +0x51,0x01,0xa7,0x1f,0x5e,0x05,0xa5,0x71,0xaa,0x54,0x55,0xfc, +0x31,0x03,0x4f,0x1d,0x0f,0x83,0x13,0x65,0xc7,0xcb,0x42,0x4a, +0x5b,0xa7,0x1b,0x6e,0x54,0x5d,0xb5,0x90,0x94,0xca,0x47,0xdb, +0xcb,0x84,0xaa,0x54,0x6e,0x54,0x8e,0xa7,0x3d,0x3f,0x68,0x3b, +0x64,0xda,0x63,0x1c,0xe0,0x44,0x95,0xca,0xcb,0xef,0x33,0xdf, +0x73,0x7e,0xe7,0x52,0x8c,0xf9,0x91,0xa4,0xd1,0xe4,0x11,0x2a, +0xe0,0x27,0xe3,0x54,0xc0,0xe7,0xd9,0xa9,0x61,0xc9,0x61,0x54, +0xc0,0xbe,0x42,0x3a,0xa2,0x37,0x03,0x26,0x54,0x14,0x6f,0x00, +0x4f,0xf4,0x3a,0x0c,0x46,0x6d,0xa7,0x39,0x8c,0x33,0x05,0x2f, +0xa6,0xca,0xb9,0xc9,0xad,0x45,0xda,0x54,0xc0,0x34,0x54,0xd7, +0xd4,0x57,0xb5,0x38,0x34,0xf2,0x4e,0xa6,0x36,0xf6,0x32,0x97, +0x06,0x3b,0x3e,0x23,0x35,0x3d,0x25,0x3d,0x95,0xc3,0x52,0xe1, +0x04,0x54,0xb2,0x15,0x61,0x4a,0xa2,0x2d,0xba,0x10,0x70,0x80, +0x2d,0xe8,0xc0,0xf6,0x2d,0xa6,0x27,0x7b,0xe8,0xc9,0x11,0x38, +0x4c,0xc2,0x1c,0x02,0x1c,0x7d,0x5c,0x5b,0xfc,0xf9,0x9a,0xd6, +0xea,0x9e,0xa2,0x2e,0x0e,0x3d,0x3e,0x22,0x27,0x5a,0x7c,0x7b, +0x7c,0x9a,0xdc,0xfd,0xf8,0x3a,0xb7,0x32,0x97,0x32,0x27,0x6e, +0x8f,0x98,0x42,0x7a,0xe0,0xb1,0xed,0x18,0xfc,0x0f,0x51,0x86, +0xff,0x83,0xc5,0x75,0xf0,0x94,0x94,0x6a,0x16,0x6c,0xcb,0xde, +0x31,0x5c,0xc4,0x47,0xdf,0x3d,0xfe,0x38,0xe8,0x16,0x87,0xd9, +0xd8,0x45,0x9a,0x1e,0x14,0xff,0x9a,0xf9,0x93,0x45,0x3a,0x1f, +0xbb,0x29,0x74,0xb3,0xc7,0x0e,0x4e,0xd1,0x0d,0xc7,0xc9,0x36, +0x7c,0xfc,0x0d,0x0b,0x8f,0x69,0x20,0xdc,0x80,0x8f,0x9f,0xb1, +0xd2,0xba,0x0a,0x35,0x15,0x74,0x65,0xd3,0x6a,0x53,0xea,0x52, +0xea,0xa8,0xd2,0x9d,0x5c,0x11,0xb2,0xd9,0x7e,0x47,0x87,0x2b, +0x5f,0xd1,0x53,0x34,0x98,0x3b,0xcc,0x0d,0xa0,0x25,0xf2,0xc6, +0xc0,0x8b,0x73,0x8c,0xa0,0xd2,0x4c,0xd4,0x18,0xbe,0x06,0x27, +0xe0,0x81,0x19,0x56,0x1a,0x08,0x73,0x60,0xd1,0x18,0x2e,0x02, +0x4b,0x46,0x71,0xcc,0x8f,0xe8,0xb6,0x69,0x8d,0x58,0xd1,0xf1, +0x38,0x6f,0x01,0xc1,0x4c,0xb7,0xd1,0x65,0xe3,0x69,0x57,0x4e, +0x34,0x84,0x83,0xc4,0xc5,0xc4,0xd6,0x56,0xdf,0xa5,0xc6,0x86, +0xbf,0xd4,0x31,0x34,0xd0,0x7e,0x91,0x13,0xe6,0x88,0x67,0x08, +0x3c,0xc0,0xdd,0x13,0xcf,0xba,0xf0,0x99,0xfd,0xb7,0x86,0x94, +0xbd,0x3d,0x80,0xbf,0xf4,0x45,0xd6,0x5c,0x60,0x71,0x3d,0x7e, +0xc2,0xe6,0x5b,0x2a,0x81,0x1a,0xd3,0x9d,0x5b,0xd4,0xa9,0x0e, +0x1f,0x80,0xfa,0x10,0xaa,0x53,0xe2,0xf5,0x9e,0xc0,0x13,0x43, +0x83,0x09,0xd6,0x72,0x05,0x89,0xb7,0xf2,0x0a,0x93,0x45,0x14, +0x38,0xf2,0xdf,0x14,0xb5,0xb4,0xa5,0x5d,0xe1,0xa6,0x2c,0x19, +0xf7,0x82,0xa8,0x76,0xb5,0x97,0x36,0xe2,0x42,0x29,0xff,0x7f, +0x9b,0x01,0x89,0x3c,0x93,0x9c,0xa3,0xde,0x49,0x9d,0x19,0x8b, +0x8b,0xe7,0x58,0x88,0x0b,0x07,0xd9,0x78,0x2c,0x26,0x1d,0x81, +0xad,0x7e,0x8d,0x9e,0x2d,0x6d,0xbc,0x47,0xbd,0x53,0xad,0x53, +0x29,0x27,0x65,0xee,0x3e,0x4e,0xee,0x81,0x38,0x8c,0xe2,0x17, +0xc2,0xca,0x61,0x3c,0xc3,0x56,0x54,0x97,0xd4,0xe6,0x55,0xc9, +0x28,0xd4,0xf3,0x0a,0x74,0xf1,0x71,0xe7,0xb0,0x9b,0xe9,0x2e, +0x0a,0xae,0xf3,0x6d,0x3e,0x5e,0xac,0x62,0x11,0x54,0xed,0x5b, +0xec,0x5f,0xe4,0xaf,0x82,0x31,0x66,0xc2,0xbb,0x9a,0xf8,0x93, +0x19,0xfc,0xb4,0x5b,0x5c,0x6b,0xf6,0xcf,0xc2,0x61,0x06,0x27, +0xd0,0x96,0x80,0x07,0x13,0xe4,0xec,0xe1,0xec,0xec,0x33,0xe4, +0xc5,0x0f,0x74,0x75,0x8c,0x5d,0x18,0xe0,0x7a,0x45,0x0d,0x36, +0xa7,0x24,0xab,0x24,0xbd,0x44,0x96,0xcf,0x7b,0xef,0x39,0xb8, +0x6b,0x87,0x45,0x8b,0x2d,0xdf,0x5f,0xdb,0xdb,0xd5,0xd2,0xc7, +0x7d,0xe7,0xc8,0xe0,0xdc,0x0d,0xbb,0x31,0x54,0x8b,0x72,0x77, +0x30,0x1b,0x03,0xe6,0x6e,0x36,0x2c,0xa0,0xf4,0x3d,0x13,0xe7, +0xc1,0x5b,0x7b,0x41,0x57,0xb7,0x72,0x82,0x47,0xb7,0x1b,0xcb, +0x6e,0xc2,0x3c,0x55,0x9c,0x7a,0x46,0xb0,0xd0,0x18,0x0a,0x99, +0xcf,0xf0,0x0d,0xa2,0xe9,0x84,0xf3,0x2d,0xd7,0xfb,0x97,0x19, +0xf3,0xdf,0xd7,0xc0,0x9c,0xbe,0xfb,0x3d,0x54,0x18,0xa2,0x08, +0x20,0x33,0xae,0x68,0xcc,0xe6,0xeb,0x2b,0xc1,0x41,0xa6,0xb3, +0xa4,0xac,0x5d,0x5d,0x51,0x20,0xbe,0x67,0xc8,0x0a,0xba,0x8b, +0xe1,0x05,0xfd,0xc8,0xfc,0xd5,0x12,0xef,0xd1,0xff,0xfd,0xd1, +0x5a,0x16,0xf5,0x50,0x99,0x68,0x1f,0xf8,0x70,0xd3,0x1e,0xb3, +0x66,0x0b,0xfe,0xe1,0xc4,0x4f,0x8f,0xae,0xdd,0xe5,0x84,0x4d, +0x9d,0x44,0xe7,0xc0,0xd2,0x8d,0xbb,0xcc,0x5b,0x2c,0xf8,0x6f, +0xe4,0xbf,0x3d,0xba,0xfe,0x15,0x27,0x86,0x62,0x3c,0x39,0x72, +0x00,0xb9,0x15,0xdb,0x4c,0x9b,0x2c,0xf8,0x6f,0x27,0x81,0x79, +0x71,0xf3,0x1e,0x27,0x6c,0xec,0x22,0x47,0x0f,0xe0,0x9b,0x1f, +0x6d,0x31,0xa3,0x57,0x9f,0x8d,0xc3,0xdc,0x1f,0x6f,0xdd,0xa3, +0x50,0xf1,0xa8,0xe2,0x4b,0xa2,0xb7,0x16,0x6b,0x7e,0xa0,0x87, +0x78,0x19,0xc4,0x7f,0x34,0xfd,0x2b,0xd4,0x48,0x07,0x29,0xe9, +0x12,0x83,0xbb,0x66,0x0e,0x13,0x48,0x83,0x6f,0x20,0x5c,0x87, +0xe2,0xb6,0x62,0xf0,0xd7,0x42,0x7f,0x4c,0x84,0x7d,0x3a,0x18, +0x0e,0x57,0x30,0x0d,0x9b,0x40,0x5b,0x07,0x2f,0x5e,0xba,0xa6, +0x78,0xff,0xc8,0x25,0xb8,0xa8,0x83,0xda,0x14,0xb1,0xc9,0xa4, +0x26,0x77,0xe1,0xc0,0x7d,0x7a,0x88,0x96,0x41,0xf4,0xd6,0xe9, +0x47,0x30,0x20,0x1d,0x52,0xe4,0x98,0xc2,0x60,0x02,0x5a,0x13, +0x71,0x21,0xea,0x5c,0x84,0x85,0x0a,0x27,0x5c,0x78,0x11,0x74, +0x44,0x8d,0xef,0xb4,0x19,0xb8,0x8b,0x3d,0x64,0x4c,0xbc,0x6c, +0x0c,0x79,0x38,0x5b,0xfc,0x48,0x26,0x7c,0x84,0x46,0xe8,0xc8, +0x16,0xc8,0x94,0x40,0x8f,0x3a,0xf6,0x1c,0x4a,0x37,0xf5,0x84, +0x85,0x72,0xaa,0x39,0xb3,0x59,0xe5,0x7f,0xe6,0x9c,0x23,0x26, +0xa5,0x96,0xed,0xce,0xf2,0xeb,0x5f,0xf5,0x3f,0xad,0xfb,0xc9, +0xa4,0x9c,0xf7,0xdb,0xe4,0xbc,0xcb,0xe8,0xb0,0xcb,0x17,0x01, +0x3f,0x26,0x00,0xcb,0xc1,0xc4,0x18,0x4e,0x7e,0x31,0xf2,0xeb, +0xab,0x04,0xa7,0xdf,0xe9,0xaf,0xc7,0x62,0xe9,0xf0,0xb9,0x31, +0x7c,0xfe,0xd1,0xd4,0xaf,0x50,0x7c,0xc8,0xe4,0x03,0x51,0x0f, +0x55,0x18,0x34,0x0d,0x41,0xee,0xc0,0x6a,0xb5,0x7e,0xbb,0x2b, +0xcf,0xeb,0xe0,0xb5,0x74,0x58,0xa3,0x02,0x0e,0xcc,0x67,0x47, +0x12,0x74,0x63,0xed,0x38,0xd7,0x53,0x11,0x51,0x0e,0x4b,0x36, +0x48,0x0f,0x94,0x1e,0x33,0x97,0x9b,0xab,0x26,0x73,0xd4,0xb3, +0x47,0x52,0xae,0x27,0xde,0xe4,0xbe,0x1d,0xc1,0xdf,0x3a,0x98, +0xfb,0x82,0x32,0x9b,0x8a,0x8b,0x6b,0x50,0x69,0x70,0xa3,0xb1, +0xe9,0x21,0x9b,0xcd,0x2e,0x8d,0xe6,0xfc,0xc3,0xd6,0x1b,0xfd, +0xe3,0x23,0xed,0xa6,0x03,0x8e,0x13,0xfe,0x3d,0xc7,0x3b,0x52, +0xd3,0x46,0x4a,0x60,0x0d,0x6f,0x52,0xaa,0x14,0x26,0xbc,0x47, +0x9c,0x9b,0xec,0x1b,0xec,0xcb,0x9c,0x5d,0xf8,0x6e,0xff,0x4e, +0xaf,0x46,0x2f,0x1a,0x31,0x74,0x05,0x7f,0x82,0xc1,0xb0,0xd4, +0xf1,0x3e,0x14,0x8c,0x61,0xc1,0x03,0xfd,0x1d,0x58,0x2c,0x1d, +0xa4,0x9e,0x6e,0x9d,0x7a,0x04,0xc5,0x5b,0x3b,0x70,0x09,0x3a, +0xca,0xc0,0x11,0xd5,0x70,0x37,0xbe,0x9c,0x1c,0x85,0x7e,0x93, +0x29,0x78,0x89,0x86,0xa0,0x46,0xed,0x57,0xac,0xb8,0x44,0x50, +0x8b,0xc9,0xe9,0xc8,0x6a,0x4f,0x6f,0xa6,0xbc,0x2e,0xce,0x35, +0xda,0x2e,0xd2,0x86,0xc3,0x77,0x8d,0x61,0x0e,0x13,0x70,0xd0, +0xf7,0x80,0x97,0xe1,0x90,0xd7,0xb0,0xc7,0xb0,0xab,0xad,0xa9, +0x81,0xf5,0x6e,0xfb,0x66,0x2b,0xfe,0xeb,0x9e,0xcb,0xc3,0x03, +0x53,0x3d,0x1e,0xdd,0xee,0x5d,0x2e,0xad,0x7d,0xbc,0x7d,0xb3, +0x75,0xb3,0x4d,0xe3,0xc4,0xe3,0x86,0xdf,0xf3,0x61,0x1e,0x87, +0x15,0x68,0x4a,0xca,0xfa,0x2a,0xaf,0x96,0x5e,0xe3,0xa8,0x65, +0x47,0xae,0x3c,0xb6,0xc5,0x7c,0xaf,0x43,0xad,0x73,0xa5,0x67, +0x09,0x27,0xac,0x95,0x9e,0x12,0x19,0x42,0x3f,0x1a,0x52,0x77, +0x24,0x28,0x56,0x90,0x29,0x28,0xd7,0x9f,0x98,0x82,0xe2,0x21, +0x2c,0xbe,0x62,0xa8,0x85,0xe5,0xd2,0x21,0xd9,0x1c,0x92,0xf5, +0x59,0x85,0x3a,0x7e,0x4f,0x03,0x61,0x2e,0x7b,0xbc,0x34,0xbc, +0x34,0xbc,0x82,0x83,0xa4,0x41,0x71,0x1f,0x23,0x11,0xb7,0xf4, +0x52,0x4e,0x38,0x32,0x2c,0x6e,0x63,0x52,0x8a,0x93,0x8b,0x93, +0x4b,0x8c,0x52,0xf8,0x33,0x21,0x09,0x21,0xa7,0x43,0x38,0x54, +0x98,0xc1,0xf7,0x4c,0x5c,0x70,0x6c,0x70,0x34,0xfd,0x4f,0x95, +0x05,0x9c,0x63,0x22,0x02,0x43,0x83,0x8e,0x07,0x73,0x98,0x6e, +0x06,0x36,0x8c,0xb1,0xd5,0x41,0xfb,0x0d,0x4e,0x52,0x22,0x46, +0x66,0xe4,0xc9,0xd4,0x15,0xda,0xbf,0x6f,0x98,0xab,0x47,0x1f, +0xcb,0x80,0x35,0xaa,0x1d,0xe0,0x57,0xf6,0x1c,0xee,0x30,0xa3, +0x8e,0xf8,0x20,0xbc,0x4d,0xf2,0x02,0x0b,0x82,0x0a,0xe9,0x6d, +0x31,0x4c,0x61,0x69,0x7e,0x59,0x1e,0xe5,0x94,0xdf,0x61,0x05, +0x19,0xc0,0xcf,0x2e,0xea,0xe9,0x62,0x98,0x25,0x84,0x69,0xe2, +0x7d,0x73,0xb8,0x8f,0x73,0xa7,0x61,0x2e,0xbc,0x18,0xc2,0x17, +0x5f,0x50,0x79,0x7e,0x50,0x68,0x90,0x8b,0x30,0xaa,0xdb,0xc6, +0x3a,0x7b,0x97,0x45,0x55,0x84,0x55,0x85,0xaa,0x20,0x13,0x87, +0xaa,0xa7,0x51,0xe3,0x6c,0x53,0x7d,0x73,0x4b,0x6d,0xa3,0xac, +0x9c,0x77,0xb1,0xb7,0xb7,0xa5,0x08,0xe5,0x9c,0xb1,0xec,0x9c, +0x6c,0x49,0x9a,0x39,0x24,0x9e,0x87,0x84,0x0c,0x70,0x2e,0x54, +0xa9,0x09,0xa9,0x0e,0xae,0x0c,0x69,0x6b,0xe5,0xf7,0x8f,0x6f, +0x1f,0x3f,0xd2,0xc6,0xe5,0x5f,0x84,0xc4,0x61,0x4c,0x94,0x06, +0x64,0x54,0x3a,0x44,0x99,0x41,0x94,0x2e,0xa3,0xf8,0x40,0x4c, +0x26,0x23,0xe2,0xc6,0xab,0xd0,0x0b,0xba,0x33,0xca,0xa8,0x0b, +0x75,0x47,0xc5,0x65,0xa6,0x80,0xac,0xcc,0x08,0x67,0x3b,0xa3, +0xb3,0x7d,0xb1,0x09,0x0f,0xf1,0x63,0x2f,0xdb,0xda,0xa5,0xe4, +0x7e,0xee,0x53,0xe0,0x9e,0xca,0xb4,0x6f,0x84,0xf9,0xce,0x70, +0xc6,0xb8,0x68,0x94,0x47,0xf7,0x4e,0x7c,0xa3,0x4d,0x7f,0x82, +0x03,0x0b,0x48,0x23,0x3b,0xc4,0xac,0x07,0xd4,0xd8,0xf6,0x53, +0x63,0xfb,0xbf,0x95,0x86,0x1e,0x24,0x75,0x62,0xc4,0xeb,0xf8, +0x21,0x29,0xf7,0x2c,0x75,0xca,0x73,0x1d,0x28,0xe5,0xa3,0x5a, +0x03,0x3b,0x83,0xea,0x39,0xb8,0x8a,0xa9,0x44,0x86,0x7b,0x28, +0x6a,0x4a,0x2c,0x3b,0x5f,0x5e,0xa5,0x0a,0xcb,0xc0,0x61,0x14, +0xdf,0x60,0x2b,0xdb,0x4b,0x7b,0x73,0x5b,0x4c,0x8a,0xf8,0x28, +0xbb,0x63,0x26,0x5e,0x76,0x1c,0xd6,0x9b,0x80,0x1d,0xae,0x60, +0xfc,0xcf,0x05,0x7d,0x16,0xac,0xb6,0x14,0xf6,0xc8,0xa8,0xaa, +0xae,0x67,0x42,0xf7,0x5a,0x59,0x20,0x63,0x25,0x3d,0xce,0x53, +0x99,0x18,0xbf,0x76,0xe1,0x77,0x0e,0xb4,0x98,0x2f,0x21,0x84, +0xa0,0x65,0xb0,0x86,0x06,0xbe,0xa6,0xd6,0xed,0x70,0xf3,0xcb, +0xb6,0x2f,0x8b,0xfe,0x52,0x81,0x73,0xa8,0x83,0x7b,0x98,0x42, +0x63,0xa9,0x56,0xc2,0x40,0x5e,0x7e,0xaf,0x54,0xc3,0xee,0x25, +0x0b,0xdd,0x78,0x88,0x60,0x24,0x28,0x43,0x24,0x83,0x71,0x38, +0x48,0x92,0x9b,0x93,0xda,0xbb,0x55,0x21,0x12,0xdf,0x62,0xa4, +0xe7,0x49,0x0f,0x88,0xa1,0x1e,0x96,0x4c,0xd3,0xc3,0x79,0x73, +0x38,0x6f,0x38,0x31,0x01,0x25,0xd2,0xa1,0x70,0x08,0x0b,0x19, +0xf1,0x1f,0xf1,0x00,0x99,0x80,0x8f,0xe1,0x11,0x5a,0x4e,0x82, +0x25,0xfc,0x86,0x1f,0x4f,0x80,0x85,0xb8,0x7a,0x48,0x50,0xee, +0x9f,0x69,0xb7,0x82,0xff,0x98,0x4b,0x5b,0xc3,0xe6,0x6d,0x22, +0x76,0xe0,0xd9,0xcd,0xc2,0xd1,0xc5,0x76,0x70,0xa2,0x9b,0x15, +0x57,0xd3,0x48,0xda,0x85,0x9e,0xf6,0xac,0xf0,0x3f,0x16,0x77, +0xe1,0x71,0x7b,0x16,0xfa,0x96,0x92,0xfe,0x99,0x04,0x2b,0x16, +0xcc,0x71,0x0e,0xf1,0x73,0xf7,0x74,0xf2,0x70,0xc7,0xf7,0xcf, +0xf2,0x29,0x26,0x70,0x26,0x1d,0xce,0x65,0x42,0x48,0xa1,0x4a, +0xa9,0xb4,0xa1,0x31,0xbc,0xb7,0x91,0x37,0xe9,0xfd,0x74,0x4a, +0xa7,0xd3,0xda,0x87,0x2f,0x8b,0xa8,0x08,0xad,0x3c,0x81,0xea, +0xa7,0x70,0x75,0x3c,0x6e,0x48,0xa8,0x6d,0xa8,0x6b,0xa9,0x6a, +0xe5,0x84,0xb1,0xc1,0xff,0xbc,0x6b,0xf1,0xff,0xec,0xfa,0x0c, +0x2b,0xfe,0x46,0x40,0x15,0x96,0x7c,0x9e,0x08,0xef,0xaa,0xfb, +0xfb,0xf4,0xfa,0x0e,0xba,0x77,0xba,0xa9,0xb4,0xb6,0x3b,0x35, +0x3a,0xd6,0xda,0x55,0xaa,0xc0,0xa2,0x44,0x58,0x90,0x04,0x4a, +0xa9,0x05,0x11,0xf9,0xe1,0xb9,0x61,0xbd,0xb5,0xbc,0x67,0x9b, +0x5d,0xbb,0x7d,0x23,0x57,0x0b,0xe9,0xf8,0x60,0x58,0xd8,0x3c, +0x20,0x6e,0x96,0x1b,0xca,0xc4,0x65,0x96,0xc2,0x32,0x33,0xbc, +0x82,0xe9,0x70,0xc5,0x58,0x5c,0xcd,0x08,0xab,0xc1,0x85,0x60, +0xca,0x28,0xa4,0x30,0x70,0xdf,0x84,0x60,0xc9,0x28,0x45,0x96, +0xe2,0x1d,0x0a,0xbd,0x52,0x8c,0xa8,0xbf,0x15,0xee,0x2c,0xc6, +0x92,0x71,0x7a,0x29,0x43,0x83,0xb8,0x9f,0x68,0xf4,0xdb,0x79, +0x76,0xed,0x67,0x1f,0x9e,0x53,0x19,0x65,0x5f,0xed,0x9f,0x9b, +0xb0,0x9b,0x34,0x6e,0x37,0xed,0x6e,0xe5,0xed,0xe4,0x46,0xc3, +0x46,0xdd,0xdc,0x8c,0x36,0x5a,0x92,0x9b,0x83,0xbd,0xe3,0xd5, +0xa3,0x36,0x35,0xbc,0xbf,0x95,0x95,0x4c,0xc7,0x81,0x83,0xdf, +0x3f,0x23,0x6e,0x31,0xa9,0x0d,0xea,0x2f,0x0d,0x96,0xb1,0x9f, +0x96,0x86,0xdd,0x57,0x83,0x76,0xa6,0x3f,0xa7,0xa8,0x43,0x7d, +0x9a,0x35,0x2a,0x52,0xda,0x40,0xed,0xe7,0x1f,0xc5,0x5e,0x22, +0x95,0xf7,0x98,0x18,0x86,0xc2,0x41,0x2c,0x1c,0x35,0x34,0xa1, +0xfd,0xa0,0x07,0x8a,0x32,0xce,0x9b,0xb1,0xc2,0x2c,0xfc,0x94, +0x94,0x97,0x16,0x97,0x17,0x5c,0xb0,0x2c,0xe1,0xe1,0x78,0xbf, +0xb8,0x40,0xae,0x47,0x51,0x91,0x15,0xb8,0x33,0x16,0x81,0x45, +0x61,0xa5,0x7e,0xd9,0xd4,0xde,0xf2,0xad,0xfe,0x51,0xed,0x67, +0xb0,0xed,0x39,0x39,0xe1,0xe3,0xef,0xe5,0xeb,0xcf,0x61,0x3e, +0x33,0x74,0x21,0xaa,0xd4,0xbf,0x3a,0xbc,0x80,0xba,0x65,0xb1, +0x99,0x08,0xf3,0xfb,0xc5,0xf9,0xa3,0xf0,0x10,0x12,0x67,0x8c, +0x69,0x14,0xba,0x62,0x82,0xa2,0x15,0x88,0xda,0xe2,0x66,0x8b, +0x7f,0x96,0x0e,0x8a,0x07,0x19,0x03,0xb8,0x49,0x30,0x79,0x18, +0x92,0x99,0x49,0xb3,0x57,0xdd,0x61,0xc5,0x3b,0x76,0x94,0xa7, +0xcb,0x30,0x99,0x81,0x4b,0x72,0x02,0x25,0x32,0xa9,0x0e,0x88, +0x62,0x0f,0x35,0x1a,0x6a,0x96,0x39,0x57,0x0c,0xb4,0x30,0xd1, +0x14,0x12,0xf5,0x26,0xa7,0x21,0x47,0x6f,0x62,0x1a,0x0a,0x47, +0xe8,0x3c,0x81,0x8f,0xb8,0x8a,0x40,0xa9,0xa8,0x8b,0xa5,0xf7, +0x59,0x67,0x3d,0x7d,0x6d,0x5d,0x57,0x4e,0x38,0x80,0x79,0xd2, +0x9b,0xfc,0x8e,0xf1,0xf8,0xc6,0x61,0x9c,0xad,0x36,0xe8,0xd5, +0x73,0xb7,0xe4,0xeb,0x8c,0x97,0x2a,0xb0,0x0e,0xcd,0x70,0x89, +0x94,0x14,0x06,0x66,0x51,0x15,0x97,0x4a,0x35,0x1c,0x65,0xab, +0x5c,0x0b,0x32,0x0b,0x72,0xf2,0x73,0x54,0xf0,0xd4,0xf0,0x00, +0x54,0xf4,0x62,0x05,0x6c,0xf2,0x62,0xf3,0xf3,0xf2,0xe9,0x3f, +0x0e,0x66,0x98,0x73,0x5b,0x4e,0xef,0x8e,0xb3,0xe6,0x1c,0xe3, +0x62,0x4e,0x9a,0x2d,0x59,0x2a,0xa5,0xc9,0x79,0xc9,0xdc,0xae, +0x2c,0x9b,0xce,0x52,0xcf,0x9e,0x4a,0xfd,0xfe,0x3c,0x2c,0xe2, +0x44,0x65,0x26,0xff,0x42,0x2e,0xc5,0x23,0x1c,0x24,0x40,0x20, +0xd1,0xc3,0x87,0xd3,0x2c,0x5a,0xe0,0xc7,0x52,0xb9,0x20,0x75, +0x58,0xc9,0x08,0xa5,0x1f,0x13,0x2d,0x7c,0x78,0x85,0xc5,0x5f, +0x31,0x86,0x24,0x76,0x9e,0xef,0x1b,0x52,0x85,0x95,0xf8,0x01, +0x03,0x8f,0xa2,0x49,0x14,0x6b,0xee,0xeb,0xb3,0xc9,0x4f,0xad, +0xc4,0x6e,0x20,0xbf,0xf5,0x42,0x69,0xb9,0x4a,0x5a,0x5a,0xe2, +0xd9,0xd4,0xb3,0xf0,0x86,0x16,0x45,0xac,0x1a,0xe3,0xd1,0xa9, +0xf1,0x9f,0xc7,0x46,0xab,0xc4,0x9d,0xa2,0x34,0x37,0x2b,0x2f, +0xb3,0xa2,0x42,0xb5,0x84,0x3a,0x92,0x4f,0x15,0xf7,0x89,0x91, +0x35,0x96,0xf4,0xd1,0x43,0x92,0x25,0x24,0x59,0x8d,0xf7,0x43, +0x89,0x74,0x28,0x1a,0xc0,0x22,0x06,0x0a,0x66,0xdc,0x48,0x9f, +0xb8,0x77,0x50,0x58,0xd8,0x23,0x2e,0xec,0x83,0x27,0xe0,0x87, +0x4f,0xfa,0x84,0xdd,0x7d,0xe2,0xee,0x21,0x16,0x48,0x32,0x28, +0xa7,0x81,0x52,0xe6,0xf1,0x2e,0x3e,0x14,0xc3,0xf1,0x6c,0x02, +0xb6,0x2d,0xc9,0xb0,0x55,0xa2,0x06,0x3e,0xf7,0x7c,0x12,0xcc, +0x51,0xb7,0x10,0xd7,0x59,0x0b,0xeb,0xac,0xf1,0x0b,0xf4,0x83, +0x2f,0xac,0xc5,0x39,0xb6,0x02,0xc5,0x7a,0x9f,0x58,0xc3,0x22, +0xf6,0x98,0x8b,0xa3,0xb3,0xcc,0x79,0xd0,0x8d,0x9f,0xec,0xea, +0xe8,0xa9,0xec,0xb2,0xbc,0xc0,0x2b,0x78,0xc6,0x26,0xb8,0xdd, +0xb5,0xcd,0xa1,0xce,0x46,0x65,0xac,0xc6,0xab,0xd7,0xa1,0xc3, +0xb9,0x4e,0x65,0x66,0x9e,0x30,0x9b,0x40,0x2e,0x2e,0xc6,0x5c, +0x46,0x78,0xb6,0x18,0x2b,0x61,0x31,0x54,0x32,0xb8,0x03,0xdf, +0x26,0xf5,0x55,0x35,0x35,0x15,0x0d,0x8e,0xd5,0x7c,0xa0,0x87, +0xaf,0x9f,0x77,0x00,0x87,0x57,0x27,0x48,0x8d,0x7f,0xb5,0x6f, +0x99,0x4f,0x6b,0x35,0x1f,0x50,0x77,0xac,0xd6,0x97,0xc6,0x9f, +0x34,0x71,0x31,0x29,0x75,0x2a,0x76,0xcc,0xb3,0x9b,0xce,0xe1, +0xc3,0xfb,0x8e,0x77,0x04,0xb6,0x70,0x58,0x1d,0x45,0x72,0x1c, +0x32,0x5c,0x52,0xac,0xa6,0xd3,0xf9,0xd3,0xfd,0xb1,0x1d,0x91, +0xad,0x12,0x13,0x56,0xac,0x23,0xd4,0x5a,0x8c,0x26,0xc6,0xa1, +0x70,0x18,0x0b,0xa7,0xff,0x6b,0xce,0x89,0x66,0x90,0x68,0xc4, +0x0a,0x8a,0x19,0xea,0xb9,0x92,0x18,0xdb,0x98,0xf4,0x76,0x75, +0xe1,0xc4,0x15,0x31,0x61,0x70,0x02,0xc2,0xa0,0x08,0xc3,0x2e, +0x83,0x94,0x90,0x78,0x3f,0x5b,0x56,0x58,0x7c,0x21,0xaf,0x88, +0xab,0xc3,0x12,0x36,0x33,0x2b,0x23,0x2b,0x23,0xdb,0x2a,0x8f, +0xb7,0xd1,0xd3,0x36,0x5d,0x6d,0x53,0xe5,0xcc,0xe7,0x67,0xe4, +0x67,0xe4,0x65,0x70,0xab,0xe0,0xc0,0x4a,0xe3,0x6b,0xb8,0xd6, +0xed,0x6f,0x1f,0x5c,0xe0,0x0c,0x0b,0xbc,0x34,0xc2,0xd9,0x83, +0xbf,0xc4,0x65,0xc7,0x26,0x45,0xc7,0xaa,0x9c,0x8a,0x53,0x3a, +0x7d,0xfb,0xa7,0xc1,0x55,0xf0,0x1e,0xd3,0x92,0xd9,0x9c,0x5d, +0x9f,0x13,0xd2,0xcd,0xef,0xf2,0xdd,0x7a,0xe2,0xe3,0xa8,0x6c, +0x4b,0xbe,0x39,0xa5,0x25,0xad,0x39,0x83,0xc3,0xb7,0xf0,0x6d, +0x0b,0x8a,0x83,0xa2,0xf7,0x3b,0xaf,0xdb,0xbd,0xae,0xd1,0x94, +0xbf,0xf5,0xe3,0x85,0x6b,0x19,0x5f,0x71,0x69,0xe2,0xaa,0x61, +0x61,0x16,0x93,0x9e,0x7a,0x3e,0xf9,0xb4,0xda,0xcd,0x55,0x8d, +0x15,0x4a,0xb1,0xb0,0xe6,0xe6,0x18,0x6a,0xca,0x6e,0xe0,0x46, +0x57,0x98,0xe3,0x8d,0xef,0x3b,0xc3,0xfb,0x1e,0x38,0xcf,0x05, +0xb6,0x7f,0x21,0xb7,0x65,0xb5,0xaa,0x82,0xaf,0xa9,0x41,0x0e, +0xd3,0x56,0x90,0xdf,0xaa,0xde,0x2d,0x3d,0xd5,0x41,0x6d,0x61, +0x8c,0x44,0x85,0x87,0x47,0x04,0x47,0x70,0x98,0xc0,0x94,0xe4, +0x15,0xe7,0x17,0x16,0x72,0x5a,0x1b,0x09,0xbc,0x63,0x2a,0x25, +0x56,0xee,0x8b,0x22,0xd7,0xe0,0x83,0x23,0x6c,0x3d,0xde,0x27, +0x34,0xda,0x1e,0xa6,0xf0,0x15,0xdf,0xc5,0xed,0xa4,0x28,0xaf, +0x20,0xbf,0xa0,0x30,0x3b,0x3a,0x27,0x3a,0xfb,0x64,0x45,0x35, +0x7f,0x32,0xfb,0x64,0x76,0x74,0x76,0x5e,0x61,0x4e,0x51,0x66, +0x81,0xf7,0x05,0x3e,0x36,0x3c,0x3a,0x3c,0x2a,0x3c,0x2a,0x3b, +0x32,0x2b,0x2a,0x33,0xc0,0x9f,0xcf,0x8b,0xa1,0x3f,0xd1,0x11, +0x11,0x61,0x11,0xa1,0x51,0x14,0x82,0x46,0x41,0x03,0x81,0xa3, +0x63,0x78,0x14,0xa2,0xc1,0x72,0x1c,0x2d,0xc1,0xc5,0x00,0x5d, +0x90,0x65,0xb2,0xfa,0x33,0x06,0xd2,0x06,0x4d,0x32,0xf8,0x70, +0x5c,0xe4,0x8b,0x9c,0xd5,0x8a,0x3e,0x0f,0xbe,0x7c,0xb8,0x78, +0x24,0x5f,0xce,0xc1,0x62,0x8c,0x96,0x2a,0x00,0x9a,0x60,0x0e, +0x06,0x31,0x11,0x77,0xfc,0x7f,0x3e,0x7e,0xc5,0x32,0x82,0xcf, +0xf2,0xca,0x76,0xc8,0xb6,0xf7,0x8c,0xf1,0x8c,0xf5,0x38,0xc5, +0x81,0x35,0x7c,0x24,0x48,0xb5,0xc6,0xd6,0x1b,0x50,0xb6,0xb2, +0x42,0x94,0x6a,0x4f,0x79,0xb3,0x06,0x51,0xba,0x27,0x75,0x62, +0xf2,0xf4,0x79,0x58,0x54,0x0e,0x6c,0xf5,0x5f,0xcd,0xa9,0x41, +0x29,0x41,0xc9,0xc7,0x3b,0x72,0x79,0x33,0xe1,0xfc,0x38,0x7a, +0xb0,0xa2,0x42,0xf8,0x85,0x3c,0xc3,0x8a,0x0d,0x0c,0xc4,0x43, +0x05,0xc1,0x8a,0xb5,0x50,0x41,0x1d,0x5c,0x27,0x9c,0x27,0x59, +0xae,0xd9,0x96,0x99,0x96,0x81,0xf1,0x81,0xa7,0x03,0x4f,0x73, +0xe0,0x0a,0x6f,0x0b,0x6f,0xe3,0xdb,0xb0,0xd6,0x18,0xd7,0xe2, +0x5b,0xe2,0xdb,0xf0,0x16,0x06,0xb2,0x66,0x31,0xa6,0xb1,0xc6, +0x71,0x59,0x06,0x3c,0xbc,0x56,0xf8,0xe3,0x85,0xa7,0xd5,0xc9, +0x21,0xc9,0xc7,0x93,0x42,0xfb,0x73,0xf9,0x93,0xf7,0x83,0x7f, +0x0f,0xbb,0xc1,0x09,0xc7,0x84,0xcb,0x44,0xa6,0x8b,0xdb,0x2e, +0x1a,0xeb,0xa2,0x9a,0x05,0xa8,0x19,0x8c,0x4d,0xc2,0x36,0x03, +0xf9,0x24,0xac,0x1c,0xc4,0x95,0xcc,0xcc,0x61,0x54,0x27,0x37, +0xb1,0xf2,0xa0,0xf4,0x1c,0xb5,0x92,0x60,0xa5,0x26,0xa5,0xa2, +0x8a,0x55,0x38,0x42,0x60,0x58,0xb4,0xc3,0x61,0x30,0xd3,0xc1, +0x40,0xfc,0x6e,0x14,0x3a,0x60,0x17,0xbe,0xc9,0xda,0x9f,0xb1, +0x3d,0x6b,0xf7,0x59,0xba,0x39,0xff,0x22,0xed,0xa7,0xec,0xaf, +0x73,0xd2,0xc2,0x53,0xc2,0x53,0x22,0x7b,0x68,0xfc,0xee,0xf3, +0xbd,0x18,0xdc,0xe6,0x10,0xca,0x67,0x84,0x67,0x9e,0xc8,0x38, +0x11,0x7c,0x26,0xf0,0x6c,0xc0,0x59,0x0e,0xa4,0xf4,0xe2,0xe1, +0xb8,0x84,0xcd,0xb4,0x90,0xd6,0xe8,0xbb,0xf2,0x0b,0x28,0x6f, +0x2b,0xc3,0xf8,0x4b,0xac,0x29,0x1c,0x20,0xb8,0xf4,0x2e,0x2c, +0x65,0x46,0xf6,0x92,0xbb,0xb0,0x6e,0x2f,0x8b,0xbf,0x51,0x96, +0xb4,0x74,0x27,0x2e,0x65,0xc0,0xec,0x6b,0x02,0xeb,0x76,0x4a, +0x4f,0x00,0x85,0x0b,0x8a,0x24,0x72,0x5b,0x67,0xbf,0xb8,0xce, +0xec,0x9f,0xc5,0xc3,0xec,0x4c,0xb4,0xd8,0x4b,0x60,0xcb,0xc0, +0xb5,0x29,0x78,0x43,0x15,0x62,0xa8,0xb7,0x1f,0xb1,0x86,0x91, +0xff,0x49,0xda,0x7b,0x80,0x47,0x71,0x64,0x6d,0xa3,0x80,0x51, +0x77,0x1b,0x6c,0x8c,0x8d,0x0b,0x1a,0x81,0x25,0x92,0xc9,0x39, +0x07,0x05,0x10,0x19,0x94,0x67,0x46,0x39,0x07,0x24,0x50,0x42, +0x11,0x11,0x14,0x41,0x24,0x9b,0x24,0x50,0xce,0x59,0x42,0x01, +0xe5,0x9c,0x47,0x81,0x0c,0x42,0x60,0x13,0x6c,0xa2,0xb1,0x01, +0xb3,0x18,0x07,0x7c,0x5a,0x9c,0xd6,0xee,0xad,0x1e,0x81,0xbd, +0xdf,0xf7,0xef,0xbd,0xff,0x3e,0xcf,0x85,0xc7,0x52,0x7b,0xa6, +0x67,0xa8,0x93,0xde,0xf3,0x9e,0x53,0x5d,0x55,0x5b,0xb0,0xda, +0x06,0xaa,0xfd,0xd8,0x88,0xa3,0x11,0x47,0x23,0x35,0xa6,0x87, +0xe1,0x07,0xfb,0x67,0x1e,0x8c,0xb6,0xe2,0x1f,0x9c,0x02,0xb5, +0xd8,0x1f,0x12,0x7d,0x6d,0x4c,0x7c,0x67,0x78,0x71,0x82,0xfa, +0x51,0xd2,0x7d,0x0b,0x2e,0x35,0xe2,0xa5,0x1b,0x50,0x5b,0x8f, +0xb5,0x37,0xa0,0xb3,0x01,0x3b,0xdb,0x8d,0x98,0x65,0xa2,0x2b, +0x79,0x88,0x3c,0x7c,0x39,0x03,0xfc,0x0c,0xb3,0x9b,0xf9,0x49, +0xb9,0x4b,0xce,0xad,0xaf,0xe9,0x2d,0xbc,0x54,0x7a,0xbe,0xce, +0xa1,0x8c,0x37,0xb2,0xd9,0xe8,0xa2,0xbb,0xc3,0xb2,0xdc,0xb9, +0xd6,0xb3,0x39,0xe6,0xf4,0x19,0xfa,0xc7,0xf6,0x2c,0x3f,0x63, +0x3e,0xce,0xd9,0x80,0x3b,0x6c,0x33,0xcd,0xf9,0x9f,0xd2,0xee, +0x67,0xdf,0x2a,0xe0,0x90,0xb0,0x56,0x51,0x16,0x51,0xf2,0xa8, +0x38,0x4a,0xa9,0xd6,0xa7,0xc1,0x97,0x59,0xf0,0x49,0xc1,0x81, +0x26,0x7e,0xed,0x5e,0x9d,0x90,0x25,0xa1,0x1c,0x4c,0x67,0xcb, +0xd2,0xce,0xa5,0x15,0xd2,0xd2,0xf2,0x7e,0x5f,0x0d,0x91,0x81, +0x52,0xc9,0xde,0x5a,0x4b,0x40,0xd7,0x9a,0xc1,0x3b,0x76,0x94, +0xb4,0x18,0xa1,0xa5,0x46,0x3d,0x55,0x93,0x35,0xb8,0x37,0xc1, +0x4e,0xb8,0xa3,0x5e,0x0f,0x4b,0x16,0xb0,0xb8,0xe9,0x00,0x9a, +0xed,0xc5,0xd9,0x1a,0x0b,0x23,0x03,0x76,0xad,0x1b,0x87,0x1f, +0x33,0xc9,0x06,0xd2,0x93,0x38,0xbf,0x55,0x95,0xc3,0xa8,0x38, +0xcd,0x64,0x58,0x76,0x1a,0xcc,0x61,0x9d,0x3a,0x4c,0x15,0x1d, +0x58,0x71,0x21,0x7e,0x4e,0x4c,0x85,0x0f,0x3b,0xd8,0x5e,0x1b, +0x12,0x86,0xc4,0x77,0x8e,0xd1,0xd4,0x66,0x0f,0xfe,0xe2,0x9b, +0x3c,0xf8,0x20,0x0e,0xc6,0x70,0xa2,0xed,0x32,0xfa,0x0f,0xd7, +0x28,0x59,0x94,0x0f,0x55,0x62,0x8d,0x8c,0x55,0xd2,0xb4,0xd3, +0x06,0x91,0xd4,0x24,0x0d,0x78,0x87,0x85,0xfd,0x90,0x49,0x70, +0x11,0x6e,0x81,0x45,0x14,0x9d,0x6d,0xde,0x4d,0xea,0x3b,0x89, +0xe7,0x3b,0xae,0xc1,0x8c,0x81,0x49,0xfd,0x39,0x1b,0xbb,0x84, +0xf3,0xe8,0xce,0xf4,0x0f,0x03,0x86,0x7e,0x55,0xa5,0x92,0x3d, +0x8b,0x56,0xa4,0x03,0xc1,0x94,0x15,0xa4,0x63,0x73,0x71,0x26, +0x2c,0x83,0x99,0xef,0x67,0xf7,0xe7,0x4a,0xb3,0xfb,0x29,0xcd, +0xf4,0xc6,0x02,0x25,0x0b,0x95,0x93,0x09,0x2d,0xe8,0x66,0x82, +0x2e,0x0b,0x2e,0xd2,0x14,0xaf,0x2e,0x35,0x30,0xbe,0xba,0x4f, +0x94,0x58,0x20,0x63,0xdb,0x55,0x23,0x09,0xa0,0x23,0x29,0x92, +0x46,0x12,0x08,0x59,0x04,0x17,0xa3,0x36,0x2c,0xa6,0x23,0x99, +0x48,0x33,0xfd,0xb9,0x8c,0xe2,0xb3,0x59,0xc5,0x5c,0xa9,0xc8, +0xb1,0x31,0xf1,0x67,0xe2,0x4f,0xc7,0xeb,0xc7,0xf1,0x5b,0xe7, +0x4c,0xd7,0xc2,0xcf,0x65,0x05,0xe6,0x7c,0x6e,0x5c,0x4e,0x42, +0x4e,0x22,0x87,0x93,0x59,0x0c,0xf5,0xc6,0x09,0xab,0x70,0x98, +0x46,0x93,0xa5,0xda,0x8f,0x30,0x3e,0x1f,0x56,0xc1,0x7e,0x75, +0x98,0x0f,0x07,0xd9,0x9d,0x32,0xb9,0x2f,0x92,0x3d,0x49,0x16, +0x3c,0xcc,0x4d,0xbd,0x5e,0x5b,0xf8,0x88,0x83,0x0f,0x4c,0x19, +0xcb,0xb4,0x3d,0x57,0x35,0x60,0x39,0x53,0x19,0x97,0x54,0xa8, +0x59,0xcc,0x9a,0xc7,0xab,0xd9,0xe0,0x3c,0xd6,0x73,0x7f,0x74, +0x86,0x66,0x3d,0x24,0xb7,0xb0,0x58,0x73,0x8b,0x04,0xee,0x74, +0xdf,0xe9,0xba,0x8b,0xc2,0x3c,0x93,0x97,0x99,0x97,0x95,0x95, +0xcb,0xed,0xc2,0xe7,0x44,0xe8,0xa9,0x13,0x7b,0x98,0xbe,0x8f, +0x70,0x3c,0xa9,0xeb,0xdf,0x6c,0xcb,0xb6,0x2d,0x24,0xc2,0xed, +0x5a,0xf1,0x36,0x23,0xdc,0x41,0x75,0x52,0x2b,0xde,0xb1,0x63, +0xcb,0x71,0x1f,0x29,0x15,0xa2,0xb6,0x75,0x81,0xb1,0xf8,0x96, +0xd6,0x30,0x42,0x2b,0x4c,0x26,0x86,0xe2,0xc1,0xf3,0xb4,0x9a, +0x34,0xee,0xdb,0x4e,0x96,0x31,0x67,0x2b,0xb7,0x65,0x3b,0x65, +0xda,0xa5,0x8e,0xf5,0x70,0xaa,0x0b,0x2a,0x0f,0x3c,0xe7,0x3f, +0x16,0x75,0x06,0x0e,0xbb,0xd9,0x2b,0x83,0xbd,0xb3,0x71,0x47, +0xff,0xd8,0x4e,0x38,0x02,0x0b,0xa4,0xbd,0x62,0x42,0x60,0x25, +0x6e,0x9a,0xc4,0x24,0xc8,0xd5,0x1e,0x30,0x75,0x69,0xa9,0x94, +0xd8,0x5e,0xc1,0xc0,0x17,0x10,0xc3,0xfe,0x73,0x10,0xa8,0x0f, +0xa8,0x38,0x41,0x65,0x8b,0x3b,0xa6,0x6c,0xc5,0x0a,0xfa,0x42, +0x9a,0xa4,0x73,0x5a,0xc2,0xe3,0x02,0x18,0x0e,0x0b,0xa8,0x4d, +0x86,0x4b,0xdb,0x7e,0xaf,0xa4,0xac,0x5b,0x3c,0xb3,0x81,0xb4, +0x63,0x9a,0x9c,0x15,0x26,0x25,0x13,0xfa,0xed,0x9f,0x20,0x85, +0x1e,0x0f,0xf8,0x84,0xd0,0x77,0x3f,0xc1,0x95,0x8c,0xd8,0x4e, +0xc3,0xbf,0x0d,0x76,0x40,0x36,0x66,0xe0,0x5d,0x96,0x5e,0xa8, +0xac,0xb1,0x48,0xb2,0x06,0x4c,0x5e,0x49,0x84,0xb7,0xd0,0x0d, +0xd9,0xe2,0x07,0xff,0x1c,0xc6,0xf6,0xc5,0xa7,0x92,0xaa,0x34, +0x8a,0xe5,0x7d,0xad,0xe2,0x28,0xcc,0x86,0x6f,0xc5,0x32,0xfa, +0x0f,0xc4,0x2a,0xd4,0xc4,0xdf,0xfa,0x2e,0x10,0x38,0xb6,0x05, +0x8f,0x31,0x82,0xe2,0x32,0x81,0x94,0x2d,0x12,0x95,0x56,0x50, +0x6e,0x74,0x6c,0xbd,0xea,0xb5,0x1e,0xfa,0xda,0x7a,0x89,0xfb, +0x0c,0xc2,0x29,0x54,0x5f,0x8b,0xed,0x58,0xe1,0xc0,0x62,0x7a, +0x71,0x83,0x5e,0x9c,0x58,0x4c,0x6a,0x44,0x43,0x4a,0x9d,0x8d, +0x96,0xd0,0x0b,0x23,0x7b,0xb6,0x06,0x77,0x53,0x55,0xce,0x85, +0x99,0xe2,0x36,0x34,0x62,0x95,0x30,0x8d,0xc0,0x9f,0xeb,0xf1, +0x4f,0x66,0xc4,0x3d,0x55,0x2c,0x65,0x28,0xd9,0x37,0xd2,0xa3, +0x15,0x5b,0x54,0x8f,0x56,0x8c,0x27,0x78,0xfb,0x31,0xdc,0x66, +0xfa,0xcf,0xce,0x23,0xa6,0xf0,0xb0,0x83,0x05,0x75,0x7b,0x02, +0xb7,0xe7,0xe3,0x6d,0x46,0xd4,0x3d,0x44,0x6f,0x4f,0x50,0xb2, +0xc2,0x50,0x7c,0x4b,0xc0,0xb1,0x19,0x1d,0x81,0x40,0x58,0xb3, +0xd8,0x64,0x01,0xf1,0xf8,0x90,0x59,0x99,0x6a,0x7f,0xfd,0x4f, +0xf5,0x4b,0xc6,0xd2,0x83,0x13,0x1e,0xe6,0x8b,0x14,0x1a,0xb9, +0x8a,0xfb,0x6d,0x85,0x75,0x27,0x7f,0x18,0x7b,0x8a,0x59,0x70, +0xa2,0x73,0x15,0x8c,0x1f,0x07,0xc7,0x54,0x0f,0x4e,0x7c,0xc5, +0x88,0x43,0xe1,0x36,0x55,0x63,0x82,0x9c,0x3a,0xef,0x2c,0xaa, +0x2e,0x17,0xaa,0xae,0x24,0x49,0x5d,0x2e,0x03,0xea,0x9a,0x23, +0xa9,0x4b,0xb5,0x54,0xb5,0x15,0x97,0xb0,0xca,0x2b,0x0d,0x03, +0x0d,0x5a,0xdb,0xd9,0xb2,0x15,0x9b,0xd7,0x72,0xc6,0x30,0x12, +0x66,0xb5,0xe0,0xac,0x3f,0x4c,0x26,0xe1,0x62,0x73,0x58,0x8c, +0x23,0xd1,0xd4,0x0c,0xa2,0x99,0x65,0x5a,0xb3,0xb6,0x4e,0x32, +0xcf,0xb7,0xe2,0xf3,0x93,0xf2,0x92,0x72,0x93,0x38,0x91,0xef, +0x50,0x42,0xae,0xac,0x4b,0x30,0x60,0x8f,0x1d,0x3e,0x7e,0xe4, +0xd8,0xe1,0xb2,0x32,0xde,0xab,0xc4,0xb9,0xd4,0xa5,0xc0,0xd5, +0x8d,0x2f,0xde,0x59,0xe8,0x95,0xef,0xc9,0x61,0x0d,0xd3,0x59, +0xd5,0x52,0xd3,0xd0,0xc8,0xf5,0x2f,0x86,0x76,0x22,0x87,0xda, +0x76,0x16,0xbf,0xc3,0x49,0xc4,0x04,0x7e,0xeb,0x64,0xf1,0x3c, +0xbd,0x92,0x43,0x09,0x7d,0x4d,0x41,0xc3,0xbe,0x44,0xc6,0x0a, +0x5e,0x94,0xc5,0xc0,0x50,0xc8,0xc5,0xa1,0x6c,0xff,0x46,0x2c, +0xa5,0x83,0x0f,0x86,0x1c,0x2c,0xc5,0x7b,0x2c,0xbd,0xc8,0x26, +0xb8,0x14,0x57,0xc3,0x52,0x56,0x58,0xe2,0x4c,0xe8,0x3d,0x23, +0x30,0x97,0xa1,0x72,0xc0,0x33,0x32,0x5f,0x18,0x74,0xb7,0x45, +0xeb,0x81,0xc9,0x32,0x4c,0xa2,0x3f,0xb4,0xcd,0xef,0x88,0x83, +0xa6,0x29,0x5a,0xc4,0x21,0x1d,0x9d,0x82,0xbc,0x43,0x94,0xc3, +0x09,0x60,0x99,0xc3,0x2b,0xbd,0x6d,0xd7,0x3b,0x15,0x3b,0xf2, +0xdf,0x35,0x96,0x76,0x9e,0xf8,0x8d,0xbb,0x85,0x1f,0x31,0x0e, +0x29,0x7b,0xab,0x35,0x9e,0x33,0x85,0xc9,0xf1,0x85,0x9a,0x37, +0x59,0x9b,0x38,0xb5,0x15,0xda,0x6c,0x70,0xd4,0xc9,0x54,0xcd, +0x3f,0x61,0x39,0xfb,0x4f,0x46,0x48,0xa0,0x36,0x29,0xa5,0x36, +0x51,0xa0,0x01,0xc1,0xa4,0x47,0x90,0xc4,0xf4,0x9f,0x71,0xa4, +0xa6,0xfb,0xb5,0x83,0x15,0x96,0xcd,0x26,0x8b,0x31,0xe9,0x31, +0x2b,0xba,0xd8,0xd3,0xbb,0x72,0xe9,0x5d,0x96,0x73,0xc9,0x02, +0x4c,0x7a,0xca,0xa2,0xe9,0x74,0x8a,0x1d,0xb9,0xef,0x51,0x6c, +0x27,0xc5,0x8e,0x02,0x09,0x3b,0xfc,0x06,0xd4,0xbf,0x42,0x52, +0xbf,0xa0,0x45,0xab,0x6c,0xac,0x02,0x8f,0x35,0xec,0xaa,0xc3, +0xcb,0x8f,0xac,0x38,0x7a,0xdc,0x8c,0x87,0x55,0x27,0x40,0xfb, +0x34,0x4c,0x8d,0x4b,0xf4,0x4f,0xf0,0x8b,0x0b,0xaa,0xca,0xe3, +0x7d,0x9a,0xdc,0x3b,0xdc,0x6a,0x38,0x25,0x54,0x61,0xe0,0x25, +0x48,0x68,0xc4,0x84,0x9b,0x72,0x3d,0xfc,0xca,0x0a,0xbe,0xda, +0xca,0x88,0xe7,0x61,0xe6,0x40,0x74,0x25,0xa9,0xa2,0xeb,0x1e, +0x45,0xba,0x17,0x34,0x77,0x2d,0xbd,0x09,0x4b,0x19,0x08,0xd4, +0x23,0xa8,0x73,0x13,0x74,0x98,0xfe,0xac,0xe5,0xef,0x42,0x8e, +0xb8,0x13,0x58,0xaa,0x8d,0xf4,0x4d,0xaf,0x3b,0x04,0x74,0xb4, +0x51,0x87,0xa2,0x9c,0xf6,0x40,0xbc,0xf5,0x9d,0xf6,0x22,0x56, +0x87,0xcc,0x0f,0x9b,0x1d,0xe1,0x6e,0xc0,0x02,0x76,0x47,0x50, +0x4c,0x28,0xfd,0xbb,0x6f,0x6c,0xbf,0x8d,0xf8,0xf1,0xbf,0x05, +0x5c,0x9f,0x1e,0xd8,0x13,0x97,0x32,0xcb,0x0a,0xc7,0x5c,0x77, +0x37,0xbe,0xc6,0xab,0x61,0x5b,0x99,0x2b,0x27,0x6e,0xfa,0xfd, +0x7d,0x10,0xf6,0x2d,0x71,0x24,0x65,0xd6,0x95,0x3a,0x79,0x5b, +0xeb,0x69,0xc5,0xd4,0x61,0xf7,0xbd,0x6b,0x03,0x27,0x6e,0x45, +0x7f,0x52,0xd9,0x55,0x74,0x27,0xe9,0xaa,0x75,0x22,0xbf,0xd7, +0xd0,0x4b,0xcf,0xd9,0x9c,0x83,0xa4,0x28,0xe2,0x7e,0x80,0x96, +0x51,0x30,0x4d,0x86,0xf3,0x59,0xfd,0xd4,0xa0,0xeb,0x1a,0x30, +0x91,0xa9,0x4d,0x48,0xac,0xd5,0x7c,0xc8,0x9a,0x25,0xa9,0xe1, +0x20,0xaa,0xa3,0x4c,0x61,0x2f,0x2d,0x5d,0x3e,0xa8,0xc5,0x0f, +0x94,0xaf,0xab,0xa7,0xb6,0xc0,0x90,0x5a,0x1c,0xd2,0x61,0x61, +0x8a,0x6a,0x76,0xa0,0x66,0x3e,0xdd,0xe1,0x95,0x0c,0x59,0x3b, +0x60,0xcd,0x58,0x80,0xd1,0xad,0x30,0xaa,0x16,0x47,0x29,0x61, +0x68,0x35,0x0e,0x6d,0x81,0x4f,0x6b,0xf1,0xd3,0x0e,0xb3,0x77, +0x37,0x4e,0x72,0xf8,0xe3,0xfd,0x8d,0xfd,0x16,0x70,0x9d,0x7a, +0xdc,0x61,0xea,0x71,0x79,0x38,0x91,0x1a,0xb2,0xb5,0x83,0xc5, +0x64,0xca,0x33,0x64,0x10,0xae,0x64,0xbf,0xc7,0x0c,0x62,0x25, +0x9c,0xf9,0xbd,0xab,0xd9,0xf8,0xb5,0x78,0xc6,0x4a,0xb0,0x32, +0x17,0x23,0x2c,0x84,0x08,0x39,0x2b,0x16,0xdd,0xa1,0x06,0x0d, +0x97,0xb1,0x6d,0xaa,0x78,0xda,0x4a,0x5d,0x32,0x42,0x72,0x49, +0xfd,0x01,0x97,0x1c,0x2d,0xb9,0xa4,0x8d,0x2b,0xa9,0xf6,0x6e, +0x72,0x2d,0xb3,0x2f,0x29,0xe3,0x9d,0xab,0x2d,0x2b,0xed,0x73, +0xb9,0x20,0x74,0x23,0x5e,0xfb,0x4f,0xe5,0x6b,0x82,0xba,0x0c, +0xc7,0x4b,0x42,0xf6,0x68,0x50,0x92,0x58,0x93,0x94,0x54,0xa3, +0x79,0x8b,0x35,0x4b,0x56,0x9b,0xc6,0x36,0x80,0x26,0x29,0x76, +0xa8,0x58,0x9f,0xae,0x68,0x28,0xe0,0xfd,0x94,0x2e,0x57,0xdc, +0xaa,0x39,0x31,0x14,0x2d,0x48,0x59,0x63,0xf1,0xf5,0xa4,0x66, +0x1b,0xa9,0xff,0xb0,0x63,0xb3,0xab,0x1d,0x37,0xe2,0xad,0x91, +0xa0,0x43,0x5a,0x70,0x39,0xbb,0x2f,0x3f,0xac,0x40,0x3a,0x96, +0x52,0xaf,0x85,0xd6,0x6f,0xd1,0xb9,0xa7,0xf2,0x4e,0xe5,0x73, +0x90,0xda,0x8a,0xb1,0xcc,0x89,0x6c,0xd5,0xb1,0x94,0xa7,0xf8, +0xc3,0x3e,0x87,0x55,0xc7,0x52,0xfa,0x98,0xc1,0x36,0xe6,0xa0, +0xf7,0x01,0x9f,0x03,0xb4,0x80,0xdc,0x68,0x0e,0xcb,0x98,0x70, +0x8f,0x30,0xd5,0xb1,0x94,0x8b,0xcc,0x81,0x30,0x2e,0x06,0x56, +0x66,0xfa,0xb6,0x25,0xd6,0xfc,0xd9,0xac,0xbc,0x9c,0xec,0x5c, +0x4e,0x54,0xeb,0x68,0x81,0x18,0xf3,0x77,0xc7,0x52,0x06,0x65, +0x04,0x17,0x37,0xf0,0x66,0xd5,0x36,0xcd,0xae,0x1d,0x5c,0xbf, +0xaf,0x30,0x82,0xf4,0x73,0x90,0xd8,0xc7,0xb1,0x32,0x34,0x26, +0x38,0x83,0x16,0xef,0x33,0x18,0x61,0x3a,0x6e,0x91,0x8e,0xa4, +0xf4,0x8a,0xf7,0xe6,0x68,0x38,0xc5,0xe7,0xab,0x8e,0xa4,0x54, +0x9d,0x60,0x4b,0xef,0x18,0x4f,0xef,0x80,0x3d,0xb8,0x8b,0x64, +0xbc,0x3b,0x92,0x72,0x0d,0x93,0xe2,0x99,0xee,0x95,0xe1,0xc3, +0xf5,0x2f,0x29,0x27,0x34,0x73,0x4f,0x47,0xfa,0x15,0x53,0x9c, +0xc9,0x4b,0x88,0x99,0xc9,0x8a,0x8d,0x1b,0x48,0x91,0xa2,0x78, +0x7d,0x86,0x61,0x4b,0x11,0x1f,0xd8,0xe5,0x7a,0xcb,0xa3,0x89, +0x43,0x6f,0x5a,0xd1,0xd5,0xb6,0xd5,0x3c,0xcc,0xbc,0x66,0x9e, +0xc7,0x07,0x1b,0xd9,0x2e,0x76,0xb4,0xe5,0x84,0xd3,0xb0,0x89, +0x40,0xcc,0x24,0x8c,0x91,0x8e,0xd1,0x83,0x68,0x12,0x11,0x17, +0x79,0x2a,0x3c,0x2c,0x34,0x94,0x8f,0xfa,0x06,0x16,0x49,0xab, +0x4c,0x5f,0x80,0x51,0x3b,0x1a,0x49,0xbb,0x77,0x19,0xc8,0xc1, +0x60,0x36,0xce,0x45,0xe9,0xfc,0xcc,0x20,0x6d,0xc3,0x79,0xd3, +0x97,0x9d,0xb3,0xe6,0xff,0x78,0x56,0x75,0xf3,0xc4,0x2d,0x2e, +0x1a,0x1f,0xd3,0xc0,0x62,0x4e,0x9f,0xf8,0xea,0x64,0x94,0x06, +0x8c,0xc2,0xb9,0x65,0xd5,0x6a,0x2d,0x82,0x29,0x01,0x52,0x7d, +0xe1,0x6e,0xdc,0x2d,0x0e,0x16,0x32,0xee,0x47,0xbc,0xa3,0x76, +0x6a,0xf8,0x1f,0xdc,0x1b,0xb1,0x7d,0xdc,0x72,0x26,0xd1,0x5c, +0xed,0x09,0xd3,0x9a,0x9f,0x53,0x71,0x5a,0xf3,0x4c,0xd9,0xf1, +0xb6,0x9b,0xea,0xe2,0x5a,0x05,0xcc,0x63,0xc2,0xe5,0x0a,0x93, +0xc9,0x1e,0x1c,0x9e,0xd9,0x44,0x70,0xc9,0x54,0x58,0xc2,0x42, +0x22,0x2e,0x21,0x13,0x61,0xc9,0x1b,0x46,0xc8,0x11,0x37,0x12, +0x41,0x5b,0x9c,0x2e,0x3d,0x19,0xf8,0x0b,0x45,0x40,0xac,0xb9, +0x09,0x35,0x0c,0xd6,0xe0,0xc7,0x04,0x6a,0x56,0x53,0x78,0xb4, +0x1e,0x0a,0x35,0x2b,0xe9,0x6f,0x0a,0x66,0x7b,0xc8,0xb7,0x79, +0x0f,0x9a,0x9a,0xaa,0xb6,0x55,0xf3,0x56,0x8e,0x5a,0xf6,0x7a, +0x7e,0x1c,0x3c,0xbe,0x42,0x2e,0x79,0xf4,0xd8,0x35,0xb9,0x14, +0x36,0xf1,0xd6,0xa5,0xeb,0x6a,0xf5,0xf3,0x69,0x8d,0x20,0x13, +0x7e,0x23,0x41,0x3e,0x79,0x7b,0xf3,0x83,0xb3,0x82,0xc7,0xe6, +0x14,0xfb,0xa7,0x04,0x26,0xec,0x4c,0x1a,0x9b,0x59,0x03,0x5b, +0x60,0x1a,0x6e,0xa9,0xb2,0x70,0xc4,0xb5,0x94,0xe9,0xaf,0xb5, +0x67,0xf0,0x5f,0x13,0xc9,0x25,0x8a,0xe6,0x93,0x70,0x64,0x37, +0x68,0xd4,0x88,0x23,0xf0,0x4f,0x61,0x44,0x0d,0xe5,0x58,0xd2, +0xa3,0xef,0xa3,0xbb,0x61,0x34,0x03,0x75,0xe1,0x04,0x46,0xea, +0xe3,0x48,0x06,0xba,0x46,0xe3,0x98,0x8b,0x30,0x86,0xe9,0xf7, +0xc2,0x99,0xa4,0x1b,0x4e,0x1a,0xb1,0x02,0x45,0x48,0x12,0x58, +0xe5,0x59,0xef,0x59,0xec,0x1c,0xc4,0x17,0x6d,0x2b,0xb0,0x49, +0x77,0xe4,0x44,0x4d,0x4a,0x15,0xf6,0x39,0xf9,0xda,0x7b,0xef, +0xa8,0xde,0xc9,0x9f,0xad,0xca,0xaa,0x4e,0xac,0xe2,0xa0,0xcc, +0x96,0xd8,0xc4,0xab,0xc9,0x71,0x22,0x1b,0x70,0xf0,0x44,0xba, +0xe6,0x77,0xe6,0xf3,0x58,0xa7,0xc4,0x3d,0xad,0x1a,0x30,0x87, +0x29,0x4a,0x48,0xc8,0xd7,0x14,0x7f,0xb8,0x4a,0xb6,0xe2,0xe8, +0x4b,0x6c,0xdf,0x16,0xf1,0x0c,0x81,0xb7,0xfd,0x0b,0xf1,0x2d, +0x2b,0xbc,0xa1,0xb6,0x13,0x6b,0x3b,0x85,0x5a,0x46,0xac,0xfd, +0x92,0x08,0xb5,0xc6,0x62,0x2d,0x63,0x3f,0x54,0xa8,0x35,0xa4, +0xbf,0x69,0x1d,0x61,0x40,0x60,0x5c,0x3a,0x0c,0x2a,0xb9,0x5d, +0xba,0xa3,0x9a,0xd7,0xda,0x3e,0xcd,0x1b,0xc7,0x04,0x71,0x42, +0xfd,0x39,0xf2,0x5b,0x20,0x7c,0xe8,0xf1,0xcb,0xf6,0xfc,0x16, +0x7e,0x7a,0x01,0x7e,0x54,0x38,0x29,0x83,0x1b,0x21,0x78,0x9c, +0x26,0x86,0x96,0xd1,0xf1,0xce,0x9a,0xe0,0x0f,0x0b,0xdb,0x71, +0x21,0xcc,0x81,0xd5,0xb4,0xd8,0x83,0x71,0x30,0xb3,0x9d,0x52, +0x3b,0xa2,0x8f,0x04,0xb7,0xca,0x29,0xe9,0x1f,0x87,0xce,0x32, +0xd8,0x26,0x4e,0x63,0x8d,0xca,0xfd,0xce,0x7f,0xab,0x0e,0x13, +0x8c,0xf0,0x0b,0x76,0xa2,0xdf,0x5a,0x5d,0x53,0x8d,0x3c,0x83, +0xab,0x6d,0xf9,0xe7,0x4f,0x3d,0x1a,0x1b,0xcd,0x4c,0x8d,0xbe, +0xbf,0x00,0x42,0xc7,0x09,0xbb,0x98,0xe8,0x6e,0x35,0xb4,0x68, +0x27,0xd0,0x07,0xe6,0x9d,0x68,0x4e,0x29,0xa9,0x61,0xa7,0xa8, +0x65,0x02,0x6b,0x31,0x12,0x8d,0x4c,0xc0,0x08,0xfb,0x28,0x0f, +0x2c,0xbb,0x4c,0x2e,0x82,0x9c,0xf9,0x47,0x5a,0x54,0xc7,0xbc, +0xdd,0x6a,0x42,0xb2,0xbe,0x58,0xc0,0x62,0x8b,0xd1,0x69,0x63, +0xa8,0xa1,0x9f,0xbe,0x4b,0x7d,0xf8,0xaf,0xb1,0x2d,0x69,0xc7, +0x25,0x74,0x6c,0xeb,0x95,0xb8,0x81,0x8e,0x6d,0x6e,0x3b,0xce, +0xfd,0xff,0x39,0x36,0x9f,0xbe,0xc1,0xc4,0xae,0xd5,0xa0,0xdd, +0xb2,0xd2,0xc1,0x91,0xef,0xb2,0xbd,0x60,0x5c,0x69,0xcf,0xa5, +0xa2,0x21,0x71,0x6a,0x32,0x6e,0x57,0x54,0x3b,0x38,0xf3,0x1d, +0xf6,0x17,0x0c,0xcb,0xec,0x69,0x39,0x5f,0x05,0x63,0xc8,0x63, +0x98,0x29,0x8c,0xc0,0x99,0xf7,0x60,0x73,0x1b,0x6e,0x96,0xa6, +0x60,0xd7,0x2b,0x60,0xfd,0x2a,0x9c,0x26,0x8e,0x80,0x69,0x8b, +0x71,0x93,0x0c,0x36,0xe1,0x8c,0x4e,0x98,0x01,0x06,0x34,0x9d, +0x6d,0xa4,0x7c,0xc5,0x9e,0xf1,0x8c,0x8c,0x39,0xa7,0xd9,0xb7, +0x19,0x3e,0x55,0x8a,0x2e,0xb2,0x3f,0x56,0xb0,0xf8,0xab,0x0f, +0x9a,0x4a,0x4f,0x44,0x6a,0x34,0x38,0xa9,0x01,0x0f,0xf3,0x4b, +0xc0,0x55,0x18,0xa2,0xfe,0x1d,0x0c,0xed,0x37,0x64,0x37,0x64, +0x7b,0x5f,0xd6,0x68,0x60,0x6a,0xd3,0x52,0xea,0x35,0xc1,0x8d, +0x35,0x4d,0x53,0xeb,0x5f,0x01,0x17,0x09,0x0e,0x9e,0x07,0x83, +0x59,0x38,0x8c,0x83,0xc9,0x6c,0x18,0xfc,0x82,0xc1,0xc3,0xb8, +0x88,0xfc,0x84,0xcc,0x3c,0x06,0x66,0x8c,0x06,0xe6,0x05,0x32, +0x94,0xbe,0x5d,0x14,0xde,0x12,0xa3,0x7b,0x1b,0xbe,0x31,0x6e, +0xb1,0x75,0xe1,0xbb,0xcd,0xae,0xea,0x76,0x6b,0x73,0xb7,0xc5, +0x13,0xe4,0x07,0xe0,0x4a,0xe0,0x8b,0x58,0xd8,0xc0,0x09,0x1a, +0x4c,0xf0,0x0a,0x2b,0x6d,0xbd,0x8d,0xfa,0x17,0xac,0x7a,0xbc, +0x7a,0x65,0x7e,0x7c,0xa1,0x6e,0xab,0xee,0x95,0x4d,0x06,0xd6, +0xba,0x4e,0x8b,0x3d,0xf3,0x8d,0xf9,0x67,0xc5,0xdf,0xd7,0x5d, +0x6b,0xa7,0x9f,0xb5,0xbb,0xbe,0xa3,0xb0,0x8b,0xdf,0x9c,0x6f, +0x58,0xae,0xa8,0xfd,0xee,0xae,0xf2,0x45,0x26,0x0c,0xe2,0xea, +0x70,0x25,0x9b,0x7b,0x31,0xf3,0x9b,0xf8,0x2e,0xae,0x46,0x8c, +0x37,0xf9,0x95,0x3d,0x89,0xe7,0xf6,0xa2,0x1c,0x3f,0xc4,0xe9, +0x1c,0x18,0x0b,0xfa,0xe4,0xeb,0x8e,0xaf,0xce,0x1f,0xbd,0xcc, +0x41,0x39,0x13,0x69,0x17,0xa0,0xb3,0xd3,0x90,0xc3,0x53,0x62, +0x0d,0xc1,0x31,0x0b,0x3a,0x81,0xd5,0x84,0x72,0x34,0x34,0xa6, +0x65,0xad,0x3f,0x3b,0xdb,0xc3,0x6c,0xba,0xbd,0x46,0x96,0xd1, +0x0f,0x55,0xb5,0xca,0x63,0xb7,0xa8,0x3d,0x16,0x9f,0xf9,0x7e, +0x2d,0x2c,0x1e,0x27,0x1c,0x62,0x62,0x2e,0xa8,0x8d,0x80,0x2b, +0xc2,0x09,0x92,0x9e,0x98,0x9e,0x92,0x96,0xca,0x51,0x7f,0x19, +0xcd,0x46,0xe2,0x67,0xa6,0x1b,0x90,0xb5,0x2e,0x93,0xce,0xd8, +0xbc,0x78,0xfe,0x79,0x2c,0x4c,0xe6,0x1e,0xa1,0x19,0x63,0x90, +0xbd,0x93,0xa6,0x83,0xc9,0x4c,0x53,0x62,0x4a,0x8d,0xe6,0xcf, +0xac,0x8c,0xe6,0xbc,0x61,0x38,0x85,0xf5,0x0c,0x8b,0xa1,0x09, +0xc3,0x18,0xe4,0x10,0x8d,0xeb,0xd8,0xbc,0xd2,0xdc,0xaa,0xb4, +0x72,0xae,0x12,0x53,0xd9,0xb8,0x4c,0xe9,0x90,0x16,0xd3,0x58, +0xde,0x79,0xfa,0x42,0xfc,0x74,0xb2,0x0e,0x77,0x42,0x49,0xac, +0x6e,0x1b,0xde,0x55,0x28,0xad,0xdc,0x78,0xa5,0xac,0x73,0x55, +0x83,0x2e,0x27,0x1c,0x85,0xd9,0x24,0xd8,0xdd,0xc7,0xd9,0x87, +0xe2,0x51,0x30,0x93,0x5f,0x9c,0x7b,0x2e,0xb3,0x94,0xd3,0xc3, +0xa5,0x04,0x56,0xe3,0x14,0x5c,0xcd,0xc0,0xbe,0xd1,0x30,0x85, +0x3a,0xef,0x14,0x56,0x24,0xe2,0x1c,0x8a,0x02,0x0b,0xba,0x06, +0x84,0x93,0x19,0x51,0x04,0xa4,0xc2,0xb9,0x2b,0xa6,0x4a,0xc2, +0xfd,0x58,0xd9,0xd0,0x79,0xfc,0x9d,0x70,0x7a,0xb0,0x68,0x9c, +0x10,0xc1,0xc4,0x5c,0x54,0xdb,0x04,0x9e,0x24,0xa8,0xc4,0xad, +0xc6,0xfd,0x9c,0xbd,0x37,0x5f,0xec,0x76,0xce,0x21,0xc3,0x85, +0xe2,0xd1,0x17,0x7d,0x59,0xe4,0x82,0x81,0x01,0x66,0x5b,0x08, +0xfd,0xcd,0x6c,0xff,0xf8,0xb9,0xc4,0xb2,0x65,0x7d,0xa7,0xbc, +0xd4,0xd9,0x9e,0xef,0x70,0xbd,0x6e,0xd2,0x64,0xce,0x09,0x89, +0x41,0x24,0x39,0x27,0xb9,0x30,0xe1,0xac,0x69,0x22,0x1f,0xb2, +0x63,0xcf,0xb6,0xa0,0xed,0x9c,0x38,0xcb,0xbc,0x6f,0x52,0x0b, +0x23,0x2e,0xcb,0x20,0xa1,0x85,0xc1,0xb9,0xc1,0x99,0x26,0x7b, +0xf9,0x34,0xff,0x54,0x6f,0x29,0x93,0x78,0x52,0x5e,0x68,0xd9, +0xbc,0x8e,0x7e,0x87,0xab,0x3d,0xdf,0xee,0x72,0x55,0xd6,0x6a, +0xc6,0x09,0x1b,0x44,0x69,0x15,0x5c,0x7b,0x0b,0xb6,0x5f,0x80, +0x08,0xc8,0x12,0x8b,0x31,0x0b,0x22,0x0d,0xb0,0xd1,0x1c,0x1a, +0x67,0xb3,0x10,0x25,0xac,0x21,0xc6,0xe2,0x8a,0x2e,0xb6,0x4a, +0xb4,0x1f,0xb0,0x19,0xa7,0x09,0xfa,0x03,0x36,0x1b,0xc1,0xce, +0xf9,0xdb,0x66,0xed,0xff,0xa7,0xcd,0xc4,0x66,0xf8,0x83,0x08, +0x2b,0x0c,0xc4,0x15,0xb4,0xae,0x8f,0x80,0x1c,0x8a,0xae,0x8e, +0x8e,0xdb,0x3c,0xbd,0x8a,0xbd,0x0b,0x03,0xb2,0xec,0x5d,0xf9, +0xb3,0x1e,0x15,0xb6,0x15,0xd6,0x86,0xbb,0x56,0x07,0xae,0xd9, +0x45,0xdd,0x03,0x7a,0x84,0xc5,0x38,0xef,0xe5,0x96,0x99,0xb8, +0xa8,0xdf,0x91,0xf5,0x8f,0xf2,0x3f,0x18,0x70,0x28,0xc1,0x80, +0x07,0x3e,0x0f,0x34,0xab,0x5e,0x96,0xe4,0x6e,0xcf,0xd9,0x9e, +0xee,0x55,0x5f,0xc1,0xef,0x2c,0x77,0x69,0x70,0x6e,0xa8,0x2a, +0x2e,0x2f,0xcf,0xa2,0x19,0x3a,0x1f,0x8e,0x90,0xf6,0x17,0x55, +0xcf,0x72,0x1e,0x70,0xcd,0xf8,0xa6,0xff,0xed,0xe5,0xbe,0x16, +0xf0,0x65,0xfd,0x74,0x1d,0xe7,0x19,0x4c,0xe3,0xee,0xad,0xef, +0xd6,0x5d,0xa5,0xbe,0x36,0xc8,0x6d,0xa5,0xc6,0x5a,0x26,0x5e, +0x5f,0xad,0x87,0x16,0x1f,0xf5,0x57,0x5e,0xbc,0x34,0xbe,0xbd, +0xf6,0x8a,0xa6,0xc8,0x83,0x1b,0xa1,0xe5,0x4f,0x0c,0x7c,0xc2, +0x42,0x0c,0xae,0xa3,0xe2,0xd1,0xeb,0x31,0x94,0x1f,0x75,0x08, +0x5f,0x91,0x8e,0x29,0x6c,0xc3,0xc5,0xca,0xde,0xe2,0xef,0xcc, +0xb3,0x79,0xd7,0x79,0xd6,0x5a,0x26,0xeb,0x39,0x3d,0xf8,0x18, +0x34,0xda,0x51,0xe3,0x37,0xe3,0x29,0xb8,0x50,0x0e,0x0b,0xf1, +0x63,0x74,0x36,0xa5,0x6e,0xbd,0x62,0xe5,0xb4,0x8d,0x38,0xdc, +0xe4,0xac,0x19,0x5f,0x98,0x7c,0x36,0xb9,0x20,0x85,0x13,0x87, +0x75,0x76,0x43,0xab,0xa0,0x8e,0x47,0xd9,0xd6,0x8a,0xfa,0xea, +0x9a,0x46,0x4e,0x98,0xe7,0x45,0x9a,0x5e,0x94,0xbf,0xc8,0xfc, +0x9e,0x8e,0xf2,0x4e,0xff,0xdb,0x0b,0x7d,0xad,0x60,0xcd,0x06, +0xe8,0xba,0xce,0x35,0x99,0xc6,0xdd,0x5c,0xa7,0xd4,0x59,0xa9, +0xbe,0x2e,0xd8,0x7d,0x8d,0xc6,0x16,0x26,0xde,0x40,0xed,0x22, +0xf3,0xba,0xfa,0xd2,0x8b,0x97,0x8a,0xdb,0x9b,0xaf,0x69,0x8a, +0xe3,0x03,0x48,0x95,0x7b,0xa5,0x73,0xa1,0x4b,0xe9,0x39,0xde, +0xbb,0xc4,0xae,0xca,0xa9,0x98,0xc3,0x68,0x2c,0x20,0xa0,0x06, +0x07,0x51,0x8d,0xc5,0x83,0xa8,0x2b,0x1d,0x33,0x76,0x10,0x3f, +0xa2,0xb1,0x1e,0x07,0x95,0x64,0xdb,0x7e,0x97,0xfd,0xce,0x07, +0x7a,0x60,0x68,0x2f,0x2c,0xac,0x86,0x91,0xd6,0x59,0x7c,0x90, +0xa1,0xcf,0x06,0xcf,0x8d,0xbb,0xa5,0x69,0x85,0x9c,0xd2,0xdb, +0xc5,0x2f,0xb3,0x6e,0x5b,0xa6,0xf3,0x41,0x7a,0xde,0xcb,0x3d, +0x37,0x86,0xa4,0xec,0x4b,0x09,0x4d,0xf4,0x70,0xe4,0x6b,0xe4, +0xad,0xeb,0xab,0x37,0x79,0x6e,0xdd,0x6e,0xb4,0xdd,0x22,0xf4, +0x68,0xe8,0x91,0xd0,0xa3,0xd1,0x72,0xfe,0xfa,0x99,0xeb,0x09, +0x17,0x92,0x5c,0x90,0x31,0x5c,0x32,0x6f,0x4b,0x91,0x35,0x0f, +0xea,0x2f,0x1f,0xc3,0xd2,0x5c,0xb0,0xb3,0x4c,0xe4,0xa3,0x5c, +0x0e,0xb8,0x45,0x6e,0xe7,0x84,0x0f,0x37,0x50,0x0a,0xb7,0xe3, +0x57,0x70,0x17,0x3e,0xc1,0x4f,0x69,0x30,0xc5,0xe5,0x9e,0x4a, +0x97,0x9f,0xe1,0xa3,0x02,0x43,0x3c,0x43,0x77,0x72,0x4b,0xfa, +0x6f,0x74,0xc0,0x18,0xf0,0x54,0xa2,0x27,0xcd,0xda,0xd6,0x70, +0x8c,0x94,0xff,0x5c,0xf0,0x47,0xe2,0x7d,0xae,0x06,0x33,0xfb, +0xfb,0x95,0x7d,0x97,0x60,0x36,0x1b,0xb6,0xc6,0x67,0xa2,0xcb, +0x34,0xae,0x61,0x75,0xf9,0x82,0x45,0xea,0x6b,0x77,0x79,0xdb, +0x6b,0x98,0x32,0x89,0x72,0xb5,0x4e,0xe6,0x7a,0x49,0xed,0x9f, +0x2f,0x5c,0x7e,0xb2,0xe9,0xd5,0xc4,0x66,0x08,0x23,0x13,0x71, +0xe1,0x1b,0x96,0x6a,0x7d,0x11,0x41,0x35,0x9a,0x88,0xd4,0xa8, +0xa1,0x62,0x84,0x1e,0x52,0x5a,0x20,0x3d,0xb6,0xe9,0x5a,0xc4, +0xfb,0x6c,0xf3,0xf0,0x70,0xf3,0xde,0x97,0x16,0x92,0x16,0x96, +0x56,0x5a,0x58,0x52,0x91,0x5b,0xe6,0x5c,0xcc,0x07,0x6c,0xf7, +0xd9,0xe1,0xe1,0x15,0x52,0x14,0x51,0x72,0xa0,0xdc,0x74,0x3f, +0x9f,0x87,0x73,0x9f,0xe0,0x47,0xa0,0x39,0xa5,0xa8,0x96,0x77, +0xc9,0xdf,0x91,0xef,0x5d,0xc0,0x89,0x32,0xe9,0x39,0xbb,0x91, +0x4f,0xef,0x01,0x97,0x27,0x6d,0xee,0x8e,0x7e,0x16,0xb0,0x8c, +0x0d,0x77,0x0d,0x76,0xf2,0x71,0xdc,0x99,0xef,0x99,0xef,0x93, +0x4e,0x29,0x79,0x81,0x7f,0xb1,0x67,0x8e,0x8f,0xa7,0xab,0x8b, +0x9b,0x8d,0x07,0xd7,0x57,0x15,0x46,0xea,0x5e,0x14,0xff,0x9c, +0xf1,0x3d,0xd7,0x84,0x0d,0xfd,0x6f,0xbb,0xfb,0xda,0x60,0x35, +0xbb,0x6b,0xf5,0xf6,0xd9,0xe6,0xd3,0x2e,0xaf,0x6b,0x5e,0x75, +0x74,0x25,0xb7,0x6e,0xdf,0xf6,0x8d,0x1a,0x32,0x26,0xde,0x50, +0xad,0x9d,0xf9,0xa9,0xfc,0xe2,0x8b,0x97,0x56,0xb7,0x8d,0x7b, +0x34,0xc5,0xb1,0x05,0xa4,0x0d,0xa3,0x14,0xec,0xbc,0x15,0x04, +0xfd,0x85,0xa5,0xe0,0xcf,0x22,0xa2,0x8e,0xf4,0xbc,0x7d,0x2b, +0x7e,0xc8,0x3a,0xa0,0x07,0xc9,0xaa,0x4a,0x6b,0x48,0x28,0x97, +0xa5,0xf3,0x7b,0xcd,0x02,0x64,0x5e,0x16,0x53,0x42,0x71,0x70, +0xc4,0xd4,0x03,0xa7,0x8d,0x79,0xd8,0x18,0x07,0xd6,0x59,0x30, +0xaf,0xf0,0x70,0x27,0x6f,0x15,0x61,0x16,0x29,0xdb,0xcf,0xe1, +0xc2,0x58,0x12,0x5a,0x1d,0xd4,0x12,0x7c,0x4e,0x16,0xc4,0xa7, +0xb9,0xa4,0xcb,0xe3,0x29,0x6c,0xbc,0x1d,0x75,0x9c,0x6c,0x67, +0x3c,0x0f,0x9e,0x2e,0xd6,0x14,0x7e,0xc4,0xcd,0x60,0x61,0x88, +0x16,0xc8,0x1a,0x03,0xcb,0x1e,0xc5,0xb3,0xde,0xa8,0x8f,0x9f, +0xe1,0xf4,0x06,0x6a,0x4a,0x4d,0xe9,0x9c,0x8b,0x1d,0x5f,0x43, +0x19,0x07,0xc3,0xc4,0x1a,0x66,0x4b,0x9a,0xdf,0x79,0x8d,0x16, +0xa6,0x5c,0xda,0xff,0x12,0xbc,0x59,0x59,0xba,0x5a,0xff,0x48, +0xa1,0x8c,0x24,0x2c,0xee,0xdc,0xf0,0x42,0xf7,0x6c,0x2b,0xbf, +0xe8,0xba,0xfc,0x66,0xc0,0x0d,0x6e,0x1d,0xe3,0xaf,0x6b,0xa9, +0x85,0x83,0xd6,0x9c,0x55,0xf0,0x7f,0xf4,0x5e,0x78,0x24,0x2d, +0x6c,0xdb,0xdc,0x6f,0x44,0x6c,0x42,0xcd,0xc3,0x14,0xe1,0x1c, +0x34,0xc2,0x0c,0x25,0x65,0xa8,0xc3,0x7e,0x6d,0xc7,0x33,0xf2, +0x9f,0x29,0xf0,0x2e,0x97,0xc1,0x72,0xec,0x62,0x4d,0x22,0x8c, +0x23,0x4d,0xa2,0x62,0x0d,0xa9,0x0b,0x25,0xc3,0x94,0xfc,0x57, +0x05,0xdc,0xba,0x1f,0x49,0x4a,0x7b,0x7c,0x67,0x6c,0xbb,0x75, +0x3c,0x1f,0x6e,0x14,0x26,0xdf,0x63,0xc9,0xe1,0x57,0x94,0x03, +0x65,0xcb,0x73,0x56,0xc5,0x9b,0x34,0xa5,0xf0,0xa1,0x9d,0x3b, +0x1f,0xfa,0xb5,0xd2,0xfc,0x9a,0xdf,0xd7,0x4b,0x76,0x6a,0x6f, +0x5c,0x85,0xea,0x6b,0xce,0xca,0x78,0x18,0x73,0xf3,0xde,0xfd, +0xd4,0x7f,0x70,0xd1,0x4c,0xf2,0x82,0x3b,0x7a,0x30,0x58,0xaf, +0xa0,0x9d,0x9f,0x74,0x6d,0xed,0x37,0xbe,0xbd,0x14,0xa5,0xfb, +0x2f,0x13,0x9a,0x01,0x92,0xb7,0xaa,0x81,0x36,0xd3,0x92,0x96, +0xde,0xaa,0xd9,0xd7,0x48,0x0b,0xfb,0xfd,0x66,0x03,0x4b,0x5c, +0x58,0x7c,0x2c,0xae,0x22,0x03,0x7b,0x27,0x7e,0x2c,0x1d,0x6a, +0x7a,0xc5,0x14,0xa4,0xbd,0xe8,0x9c,0x4c,0xc1,0x09,0xbb,0x98, +0x75,0x11,0x7a,0xfb,0xf5,0xa2,0x62,0xf5,0x79,0x58,0x93,0x0c, +0xab,0xf3,0x60,0x54,0xf1,0xe1,0x2e,0x5e,0x7f,0xdf,0xa6,0x90, +0x75,0x61,0xdc,0xeb,0x6b,0x24,0xab,0x3d,0xa5,0x33,0xb1,0xcd, +0x22,0x99,0xdf,0x67,0xb4,0x47,0x11,0x68,0xc5,0x61,0x13,0x7c, +0x41,0xf2,0x15,0x67,0xb5,0x92,0x64,0xad,0xe9,0xfc,0x9e,0x4e, +0x8f,0xfb,0x3e,0xcd,0x74,0xb4,0x29,0x7d,0x39,0x54,0x6b,0xe7, +0xd7,0xff,0xac,0x7b,0xb6,0x8d,0x5f,0x70,0xdd,0xf4,0xbd,0xd6, +0xcc,0xb5,0xf0,0x83,0x35,0x67,0xe5,0x3c,0x0c,0xba,0x79,0xe9, +0x61,0xd2,0x4f,0x9c,0xe0,0x9d,0x42,0x30,0xcc,0x04,0x74,0x70, +0x1e,0x83,0x31,0xa6,0xf8,0x05,0x5a,0xa2,0x97,0x46,0xad,0x19, +0xac,0x00,0xe3,0x4b,0xf0,0x79,0x0c,0x6c,0x55,0x3d,0xfb,0xb1, +0xe5,0x22,0xf2,0xb0,0x14,0xf5,0x2b,0xba,0x78,0x34,0x81,0x6d, +0x26,0xf0,0x05,0xc4,0xa8,0x63,0xa3,0x78,0x8c,0xd8,0x86,0x59, +0x84,0x99,0x47,0x70,0xd0,0x00,0x73,0x94,0x38,0x07,0x3e,0xfc, +0x5d,0x89,0x89,0xb2,0x57,0x34,0xed,0x6a,0xc9,0x40,0x8b,0xaa, +0xdc,0x38,0xc2,0x30,0xd2,0x38,0x2a,0x86,0xaa,0x7c,0x5c,0x32, +0x7c,0x99,0xf7,0x2a,0x9f,0xdb,0xfc,0x8c,0xa4,0xb6,0x27,0x50, +0x95,0x5b,0xc5,0xf3,0x11,0x46,0xa1,0xf2,0xdd,0x54,0x88,0x53, +0x30,0x91,0xe4,0x28,0x72,0x56,0x25,0x98,0x36,0x27,0xf3,0x21, +0x5d,0x3e,0x0f,0x54,0x2a,0xcf,0xee,0x3b,0x47,0x12,0x96,0x74, +0x6d,0x7c,0xbe,0xba,0x90,0x9a,0xfe,0x9a,0xac,0x37,0xa0,0x87, +0x0a,0xe1,0xa7,0xa3,0xd0,0x42,0x46,0x25,0xc4,0x07,0x37,0xaf, +0x3e,0x4c,0x7a,0xc6,0x09,0xdb,0xa9,0xf3,0x3a,0x76,0x89,0x3e, +0xc6,0xe0,0xd8,0xaf,0x85,0xae,0xcc,0x91,0x36,0x8b,0x10,0x79, +0x98,0x49,0xf8,0x58,0x68,0x82,0x85,0x4a,0x1a,0xa5,0xc3,0xff, +0x54,0x62,0x86,0xec,0x37,0x1c,0x8e,0x7a,0x32,0xd0,0xc3,0xf3, +0xac,0x61,0x84,0xfe,0x7e,0xc3,0x03,0x2a,0x4f,0x48,0x82,0x89, +0x39,0xbf,0xe7,0x73,0x16,0x42,0x5c,0x37,0xfa,0xb2,0xf8,0xe6, +0x31,0x49,0x6b,0x4f,0xe8,0x8a,0x6b,0xb7,0x4a,0xe0,0xc3,0x0d, +0x43,0x14,0xbb,0xa9,0x47,0xc4,0xc1,0x24,0x92,0x4b,0x3d,0x22, +0xc1,0xa4,0x99,0x96,0x6c,0x9d,0x3e,0x0f,0x7c,0xe9,0xf0,0xde, +0x1a,0xf6,0x8d,0x26,0xd4,0xb5,0xe5,0x06,0x94,0x66,0x04,0x99, +0x40,0x10,0x1e,0x61,0xb4,0x64,0x4b,0x6c,0x17,0xba,0xe7,0x28, +0xf8,0xbb,0x85,0xb7,0x2b,0x7a,0x1b,0x38,0x4c,0x45,0x23,0xd5, +0x4a,0xee,0xa5,0x4c,0x53,0x5a,0x5a,0x93,0x26,0xb4,0xb2,0x97, +0x1a,0xbb,0x94,0xad,0x97,0xec,0x68,0x19,0x69,0x6d,0x6f,0x6f, +0xe3,0xcc,0x81,0x25,0x6c,0x66,0xfb,0xd7,0xd0,0x24,0x90,0xb0, +0xbc,0x7b,0xeb,0xf3,0xb5,0xd4,0x5e,0x8b,0x2e,0xcb,0xae,0xfa, +0x5f,0xe5,0xd6,0x33,0x7e,0xda,0xa6,0x5a,0xc8,0xaa,0x44,0x55, +0xbb,0x79,0xfd,0x61,0xd2,0x73,0x2e,0x5f,0xa4,0x15,0xcc,0x52, +0x25,0x2e,0xa5,0x60,0x3b,0x44,0x89,0x79,0xb2,0x37,0xf8,0x11, +0x6e,0x90,0xc1,0x06,0xbc,0xc8,0x18,0x84,0x6f,0xdd,0xaf,0x1f, +0x15,0x4b,0x73,0xd5,0xb4,0x14,0x98,0x93,0x07,0x83,0xce,0x1e, +0xe9,0xe4,0xcd,0x43,0x4c,0x43,0x8d,0xc2,0xb9,0x1f,0x6e,0x50, +0xa9,0x12,0x25,0xa9,0x12,0xf9,0x30,0xc3,0x10,0xf9,0x6e,0x0b, +0x0e,0x93,0xa9,0x9f,0xe7,0xca,0x73,0xa9,0x54,0x2d,0xa9,0xfc, +0xbe,0x4e,0xef,0x87,0x92,0x54,0x7d,0x2f,0xa9,0x9f,0x6b,0x4d, +0xc7,0x21,0x2b,0xf1,0x73,0xe3,0x22,0x1a,0xf0,0xea,0xe7,0x61, +0xd8,0xf3,0xef,0x7f,0xe3,0xc4,0xbe,0x28,0x92,0xb4,0xf2,0x96, +0xfe,0xef,0x9b,0xf3,0xdb,0xf8,0x69,0x17,0x36,0x5d,0xf2,0xbf, +0x44,0x47,0xb8,0x53,0x47,0x7f,0x15,0x8e,0xd4,0x93,0x22,0xe2, +0xe3,0xde,0x6f,0x1f,0x25,0x3f,0xe7,0x68,0xe1,0x97,0x4a,0xb1, +0xb8,0x5e,0x06,0x2c,0x55,0xb7,0xdc,0x14,0xe4,0xd8,0xce,0x6e, +0x8a,0xd8,0x18,0xb9,0x31,0x2a,0x86,0x0e,0x6d,0x5e,0x32,0x2c, +0xc8,0x03,0xa6,0x80,0xe2,0x87,0x59,0xa8,0x69,0x98,0x31,0x8d, +0xd6,0x5a,0x58,0xd7,0x81,0xeb,0x60,0x38,0x2b,0x74,0xb6,0x90, +0x15,0x53,0x71,0xc4,0x0c,0x1c,0xa7,0x5f,0x4c,0xef,0x9d,0x72, +0x0b,0x46,0xbd,0x79,0xf8,0x3b,0x27,0x26,0x88,0xf3,0x48,0x46, +0x5b,0x72,0x47,0x7c,0x9b,0x65,0x12,0x1f,0x6a,0xb4,0xd7,0x2c, +0x88,0xfa,0x4c,0x11,0x75,0xfc,0x3c,0x45,0xbe,0x56,0xa2,0x5c, +0x35,0x7c,0x8f,0xfb,0xbe,0xcd,0x5c,0x5f,0xc2,0x51,0x32,0x93, +0xc6,0xd2,0x97,0xf4,0x3f,0x2d,0xbd,0x52,0x03,0x69,0x47,0x37, +0x98,0x07,0xe4,0x35,0x8c,0x95,0x4e,0x8d,0x1a,0x9d,0x20,0x53, +0x83,0x4f,0x24,0x53,0xd4,0x6a,0xf6,0x5d,0x31,0xe8,0xff,0x86, +0x15,0x17,0x4a,0x3e,0xb6,0xf8,0xc2,0xfa,0x97,0x52,0xa0,0xcc, +0xbf,0x6e,0x32,0x10,0x28,0x7e,0xba,0x66,0x5a,0x38,0x54,0xa5, +0xf8,0xc1,0x37,0xaf,0xa8,0x02,0xa5,0x0b,0x17,0x92,0x52,0x9c, +0x5f,0x84,0x46,0x29,0xb8,0xb0,0x23,0x93,0xdf,0x0b,0x73,0xdc, +0x40,0xe1,0x02,0xb3,0x38,0xbc,0xbb,0x9f,0x84,0xe3,0x72,0x5f, +0x5c,0x6e,0x84,0xb3,0x5b,0x3c,0xf9,0xf3,0xa0,0x95,0x07,0x3a, +0xb1,0xb0,0x84,0xc3,0xeb,0x58,0x4c,0x60,0x9e,0x12,0xe7,0xc1, +0xb0,0x3f,0x94,0x98,0x22,0x7b,0x4d,0xb1,0x48,0x57,0x06,0xba, +0xd8,0xc9,0x18,0x45,0x18,0x44,0x1a,0xa9,0xac,0x35,0x21,0x05, +0x66,0xe4,0xff,0x5e,0x70,0xb8,0x83,0xb7,0x0a,0x95,0x87,0xca, +0xc2,0xb9,0x47,0x3d,0x34,0x42,0x12,0xa5,0x08,0x91,0x5c,0x30, +0x54,0xe5,0x82,0x67,0xa8,0x0b,0xe6,0xc8,0x73,0xb5,0xe2,0x4d, +0x9a,0x25,0x50,0xf2,0x1e,0x88,0x90,0x4c,0x1a,0xe6,0xf1,0x4b, +0xbb,0x36,0x3e,0x5b,0x43,0xc1,0x71,0xf1,0x35,0xf9,0x8d,0x80, +0xeb,0x52,0x98,0xeb,0x28,0xb4,0xff,0x8a,0x90,0x2b,0x0f,0x93, +0x7f,0xe2,0xfa,0x36,0x8b,0x1f,0x12,0x5d,0x18,0xb9,0x03,0x46, +0xec,0x83,0x2f,0x39,0x74,0x33,0xa6,0x1e,0x19,0x87,0x1f,0x55, +0xe3,0x94,0x1e,0x1c,0xca,0x89,0x93,0xa3,0x88,0xf2,0x4d,0x19, +0x8c,0x49,0x83,0xcf,0x65,0xf1,0x7c,0x30,0x7e,0xe2,0x86,0xc3, +0xcd,0xe6,0x72,0x07,0xf0,0x06,0xb1,0x0c,0x55,0x84,0x9a,0xd2, +0x00,0xaf,0x1f,0x88,0xa4,0x61,0x34,0x92,0xd2,0x69,0x24,0x0d, +0x1b,0x88,0xa4,0xce,0x7f,0x8b,0xa4,0x89,0xc9,0x30,0x93,0xca, +0xc1,0xc1,0x55,0x69,0x73,0xbe,0xb5,0xb9,0x3a,0xd9,0xda,0x1b, +0x42,0x16,0x86,0xcc,0x0a,0x6b,0x01,0xcd,0x12,0x98,0x7d,0x0e, +0x16,0x1b,0x24,0xf1,0x6e,0xa8,0xe3,0x88,0x8b,0x64,0x38,0xd5, +0xe7,0xb0,0xcf,0x61,0xef,0x23,0x92,0xfc,0x33,0x93,0x60,0x6e, +0x3a,0x30,0x59,0xa7,0x77,0x46,0xef,0x8c,0xf6,0xed,0xcc,0xe0, +0xdd,0x61,0x8c,0x23,0x7c,0x6a,0x0b,0x43,0x38,0xd1,0x18,0xe5, +0x24,0xb5,0xed,0xbd,0x2e,0x8c,0x06,0xc2,0x31,0x96,0xa2,0x05, +0x0d,0x47,0xad,0x77,0xe1,0x48,0x75,0xd1,0x42,0x1d,0x77,0x6a, +0xdf,0x37,0xc4,0x73,0x92,0xde,0x0c,0x64,0xe7,0x9f,0x93,0x02, +0xe6,0xd9,0xed,0x17,0xd9,0x30,0x9c,0x3b,0xc5,0x64,0x22,0xf3, +0x68,0x16,0x7c,0x3a,0xa5,0x44,0xc9,0xe3,0x27,0xaf,0x57,0xfd, +0xb8,0xfd,0x4f,0x4e,0xb4,0x76,0x21,0x71,0x2b,0x5a,0xb7,0x3c, +0x5e,0x5b,0xd4,0xc2,0xaf,0xbc,0x6c,0x71,0x3d,0x50,0x15,0x6e, +0x3a,0xf2,0xf7,0xc8,0x32,0x54,0xd2,0xdb,0x33,0x1a,0x6e,0x46, +0xe4,0x6f,0x04,0xc9,0x94,0xfd,0x4e,0x5d,0x7a,0xad,0x8c,0x32, +0xec,0xf3,0x8c,0x24,0xb7,0x81,0x4a,0xee,0x29,0xc9,0x30,0x2b, +0xff,0x8f,0xb3,0x47,0x3a,0xf8,0x01,0xd4,0xe1,0x20,0x56,0x98, +0x45,0xa0,0xa2,0x13,0x2b,0x18,0xc8,0xa1,0xe5,0xa1,0xeb,0x2c, +0x7d,0xe4,0x8d,0xbe,0x6c,0xf7,0xe0,0xaf,0x00,0x77,0x15,0xa6, +0x56,0xc1,0x07,0x5c,0x83,0x38,0xdb,0x98,0x9d,0x44,0x59,0x84, +0x14,0x96,0xb1,0xff,0x1b,0x6c,0x72,0x54,0x61,0xf9,0x5e,0xba, +0x56,0xd5,0x36,0x9a,0xe7,0x48,0x3c,0x4d,0x83,0xcf,0x74,0x25, +0x2c,0xbc,0xae,0xb8,0x19,0x38,0x00,0xe8,0x56,0x5a,0x13,0xa5, +0x2c,0xf8,0x5b,0xef,0x79,0x29,0x0b,0x0a,0xaf,0x69,0x51,0xbf, +0xaa,0x63,0x66,0xf3,0xc2,0x12,0x1f,0x4b,0xfe,0xb9,0xeb,0x4f, +0x16,0x77,0x64,0x1c,0x8e,0x12,0x91,0x6c,0x57,0xcd,0xe3,0xde, +0x36,0x10,0xbf,0x63,0x75,0x73,0xbd,0x7a,0x35,0x9e,0x49,0x87, +0x39,0xd3,0x32,0xce,0x86,0x95,0xa7,0xaa,0xd1,0xd2,0x40,0x3c, +0x03,0xaf,0x09,0x7c,0xa9,0xc4,0x2f,0x61,0xd8,0x2f,0xed,0x78, +0x4a,0xfe,0x82,0x9a,0x78,0x89,0x0c,0x96,0xd0,0x94,0x64,0x1a, +0x61,0x12,0x69,0xaa,0x4a,0x9b,0x24,0x19,0x26,0xe6,0xff,0x9c, +0x47,0x45,0xb5,0x0b,0xb3,0x0a,0xb3,0x88,0xe0,0x84,0xb3,0x42, +0x00,0x29,0xc7,0xcf,0x0a,0x70,0x72,0x0a,0x8e,0x6f,0x4b,0xe5, +0xf7,0xc0,0x78,0x2f,0x98,0xea,0x0c,0x9f,0x70,0xe2,0x14,0xd1, +0x96,0x54,0xc3,0xa7,0x19,0xb0,0xf8,0x34,0x2c,0x30,0x8d,0xe1, +0x23,0x71,0x7e,0x30,0x4e,0x71,0xc4,0x61,0x9c,0x79,0x94,0x94, +0x75,0xbb,0x62,0xda,0xad,0xe3,0x68,0x0a,0x18,0xc8,0xba,0x87, +0x29,0x1a,0xe5,0x28,0xb2,0x57,0xc5,0x1b,0x0f,0x64,0xdd,0x07, +0xfe,0x6d,0x54,0xec,0x68,0x95,0xd8,0xed,0x1b,0x9f,0xe9,0x50, +0x07,0x5f,0xd2,0x63,0xde,0x4b,0xc5,0x5e,0xcb,0x04,0xe8,0x5a, +0x6b,0x4d,0xd1,0xa3,0x76,0x7a,0x7d,0xb3,0xeb,0x51,0xd2,0x53, +0x4e,0xd8,0x41,0xab,0x1d,0x70,0xe8,0x44,0x07,0x28,0x84,0x3d, +0x5d,0xe2,0xd7,0xc6,0xe0,0x86,0x85,0xa8,0x6f,0x42,0x6b,0x84, +0x5f,0x31,0xc0,0x58,0x48,0xef,0xc2,0x08,0x46,0x34,0x82,0x9b, +0x44,0x75,0x64,0x03,0x0c,0xfb,0x47,0x3b,0x7e,0x2d,0x7f,0x46, +0x45,0x54,0x31,0xe8,0xf3,0x8c,0x2c,0xc2,0x74,0xbf,0xec,0x80, +0x34,0x9b,0xf9,0x79,0x32,0x4c,0xc8,0x7f,0x91,0x7f,0x44,0xa9, +0x12,0xd1,0x3c,0x9c,0xeb,0xe3,0x2f,0x90,0x80,0xeb,0xee,0xf7, +0xdd,0x2f,0x59,0x07,0xf0,0x45,0x5b,0xcf,0x2d,0xc9,0xd8,0xc8, +0x89,0x31,0x25,0x24,0xb9,0xed,0x9d,0x04,0x91,0x54,0x82,0xbd, +0x54,0x82,0x03,0x30,0x85,0xf2,0x86,0xec,0x55,0x71,0x26,0xcd, +0x14,0xa5,0xba,0xde,0x49,0xe0,0xda,0xd7,0x4d,0x02,0x74,0x6d, +0xb5,0xa6,0xe9,0x51,0x33,0xfd,0xa3,0xb7,0xe3,0x51,0xe2,0x53, +0xca,0x1a,0xe2,0x96,0xb4,0x6d,0x78,0xaa,0x43,0x4d,0xb9,0xac, +0xc7,0x52,0x92,0x09,0xf4,0xfa,0xe7,0x93,0xee,0x3b,0x30,0x09, +0x95,0x5d,0xa0,0x84,0x19,0xda,0xdd,0x7d,0x13,0xc4,0x1d,0x0c, +0xd8,0x61,0xb4,0xb4,0x8c,0xca,0x1a,0x26,0x31,0x5d,0x68,0x4d, +0xe8,0xc5,0x0c,0xb4,0x66,0xc5,0x67,0x68,0x47,0xe0,0x8b,0x76, +0xfc,0x02,0x86,0xbd,0x90,0xa8,0xdc,0x0f,0x54,0x92,0xd9,0x72, +0x98,0x4d,0x25,0x51,0x44,0xc8,0x22,0xcd,0xa2,0x24,0x49,0x46, +0xa5,0x48,0x92,0x14,0x1c,0x69,0xe7,0x6d,0x29,0x2f,0x32,0x0b, +0xe7,0x04,0x5e,0x30,0x26,0xb8,0x8d,0x7e,0xdf,0x36,0x16,0x6c, +0x47,0xd3,0xaf,0xda,0x86,0x33,0xa4,0x6d,0xf8,0x96,0x92,0x24, +0x6a,0x8e,0x33,0xed,0x36,0x54,0x18,0xc3,0x30,0xf9,0x3e,0x2a, +0x4c,0x28,0x7c,0x49,0xb2,0x64,0x92,0x30,0x4d,0x49,0x7c,0x58, +0x97,0xef,0x03,0xff,0x76,0x9a,0xf2,0x4c,0xfa,0x36,0x10,0xbc, +0xc5,0x24,0xd5,0x24,0xd4,0xc5,0x37,0x1a,0x27,0xf0,0x4e,0xb8, +0xd8,0x18,0x47,0xae,0x99,0x53,0x6b,0xc5,0xd7,0x9d,0xaf,0xec, +0x2d,0xf9,0x9e,0xab,0xec,0x37,0xbb,0x00,0xa7,0xc1,0xb7,0x13, +0x7d,0x41,0x1b,0x76,0x76,0xe2,0x4e,0x58,0x09,0x51,0x4c,0xff, +0x42,0x98,0x4b,0x12,0x17,0xf5,0xac,0xfd,0x4d,0x8f,0x1a,0x72, +0xfa,0xf5,0xad,0xb7,0xfc,0x6e,0xd0,0x88,0xf3,0xd5,0x31,0xd2, +0xa2,0x9f,0x97,0x22,0xee,0xa3,0x9b,0x37,0x1f,0xa4,0x3c,0xe7, +0x0a,0x44,0x03,0x22,0xf5,0x76,0x56,0xc3,0x70,0x60,0x95,0x58, +0x29,0x03,0x35,0x1a,0x73,0x26,0x32,0x30,0x41,0x25,0xb3,0x39, +0x62,0x53,0xe4,0x26,0x15,0x66,0xce,0x4f,0x86,0x25,0xf9,0xc0, +0x4a,0x34,0x54,0xb6,0xcf,0x30,0x54,0x3f,0x9c,0x7b,0x76,0x9d, +0xa6,0x88,0xa4,0x4e,0x9a,0x22,0x12,0x69,0x8a,0xd8,0x67,0xb6, +0x8b,0xa6,0x88,0x7c,0xd0,0xa0,0x29,0x22,0x4f,0x2b,0x51,0xa6, +0x4a,0x11,0x9e,0x52,0x8a,0x18,0xd1,0xb7,0x57,0x9a,0x85,0xdf, +0xa2,0xc4,0x2d,0x10,0x06,0xd6,0x9d,0x68,0x3d,0x30,0x0b,0xcf, +0xfd,0x3d,0x0b,0xbf,0x5b,0x35,0x0b,0x6f,0x39,0xb5,0xd1,0x4d, +0x35,0x0b,0x9f,0xdc,0xc1,0xc1,0x18,0x0c,0x43,0x73,0x19,0x98, +0x63,0x3c,0x46,0x9b,0x08,0xd9,0x9d,0xb8,0x83,0x11,0x03,0xfa, +0x12,0x49,0xfc,0x92,0x8e,0x8d,0xcf,0x24,0x66,0xba,0xf4,0xba, +0xfc,0x86,0x2a,0x24,0xfd,0xb4,0x2d,0xb4,0x71,0xc8,0x3b,0x8e, +0x75,0x51,0xa2,0x27,0xb0,0xbe,0xdf,0x9a,0xd8,0x86,0x5a,0x86, +0x53,0x13,0x40,0x1b,0xcc,0x56,0xe2,0x6c,0xf8,0xe8,0x77,0x69, +0x06,0xe7,0x15,0x4d,0xde,0xab,0x64,0xb0,0x0a,0x2f,0xb1,0xc6, +0xe1,0x46,0xfb,0x8d,0x0f,0x48,0x3c,0x49,0x3d,0x05,0xa6,0xe4, +0xfd,0x92,0xcf,0x6d,0x7a,0x4e,0x83,0x24,0xa1,0x2b,0x56,0x29, +0x51,0x53,0xc3,0x50,0xf9,0x1e,0x9a,0xb2,0x4f,0x50,0xab,0xe4, +0xc8,0x72,0x56,0xaa,0xb2,0x00,0xe5,0x49,0x0f,0x55,0x2e,0x76, +0x4c,0x15,0x24,0xca,0x0d,0x3f,0x49,0x0e,0xb5,0xa4,0xc7,0xac, +0x37,0xb0,0x57,0x0a,0x12,0x1d,0x6b,0xed,0xc9,0x12,0x36,0xfc, +0xda,0xdb,0xa5,0x62,0xc8,0x21,0x21,0x44,0xdc,0x2e,0xac,0x15, +0xb6,0xb3,0xe2,0x50,0x71,0x81,0xd4,0xf3,0xea,0xc4,0x3e,0x69, +0xaf,0xe7,0x22,0xe2,0x18,0x66,0x13,0x6e,0x4d,0x41,0xbe,0x05, +0x26,0xb7,0xe3,0x64,0x18,0xfe,0xaa,0x1d,0x8f,0xd1,0xf0,0x18, +0x8e,0x8b,0xe4,0xb0,0x08,0x2f,0xb2,0x32,0x8a,0x00,0x32,0x15, +0x02,0x7c,0x9a,0x0c,0x1a,0x79,0xcf,0xf2,0x39,0x93,0xe7,0x24, +0xb9,0x3d,0xbe,0xfb,0x5d,0x08,0x87,0xcb,0xa4,0x10,0x8e,0xa2, +0xa3,0xcb,0x96,0xa9,0x42,0x38,0x99,0x06,0x80,0xef,0x43,0xbf, +0x36,0xae,0x4f,0x6d,0x33,0xe9,0x5a,0x71,0x19,0x87,0xd7,0x4f, +0x6a,0x2c,0xe6,0xed,0x5f,0x6f,0x80,0xe1,0x46,0xf7,0x39,0xfc, +0x01,0x9f,0x90,0xde,0xef,0xaf,0xc3,0x98,0xc2,0x9f,0x2d,0xb2, +0x78,0xcf,0x85,0xfa,0xf8,0xf1,0xba,0x15,0xdc,0x7f,0xb1,0x06, +0xaa,0xdf,0x08,0x46,0x12,0x15,0x8f,0x1d,0x22,0xc9,0xf6,0x67, +0xaf,0x8a,0xc6,0x46,0x33,0x12,0xd9,0x7d,0x31,0x40,0x76,0x65, +0x52,0x0e,0x87,0x44,0x71,0xfd,0xfb,0x75,0x4b,0xe2,0x4d,0x67, +0x32,0xa0,0xf6,0x0f,0x7f,0x53,0x62,0x82,0x8a,0x9e,0xaa,0xd4, +0xde,0xc5,0xa8,0xd4,0xae,0xa2,0xa7,0x1a,0xc9,0x30,0x35,0xff, +0x57,0x29,0x0b,0x5b,0x87,0x9a,0x85,0xca,0xa9,0x32,0xb2,0xbf, +0xfe,0x6b,0xb1,0x53,0xd8,0x75,0xc9,0x16,0xef,0xcb,0x04,0x6a, +0x0b,0xea,0x5c,0x27,0x55,0x38,0x4d,0xcb,0x84,0x01,0xce,0xba, +0x53,0x85,0xd3,0x7d,0xb4,0x8c,0x27,0xd7,0xee,0x37,0xbe,0xce, +0x83,0x11,0x5c,0x3d,0x4a,0x8d,0x9e,0x45,0xec,0x01,0x87,0xdd, +0x96,0x41,0xae,0xcd,0xc1,0x7c,0x56,0x73,0x5a,0x7b,0x4c,0x1b, +0xd7,0x80,0x9e,0x03,0xb3,0xad,0x5e,0x98,0xc6,0xa2,0x57,0x20, +0xce,0xdb,0x82,0x9c,0x46,0x8b,0xe3,0x65,0xf8,0x3c,0x0f,0x26, +0x1e,0x87,0x9d,0x63,0xe1,0x29,0x13,0x30,0xd7,0x65,0x99,0xd1, +0x1a,0xd9,0x55,0xe7,0x5b,0x9e,0xf7,0x2c,0xfc,0xf8,0x92,0x45, +0xd5,0xab,0xba,0xd7,0x2a,0xe4,0x1b,0x6d,0x96,0xbb,0x14,0xca, +0xf9,0xfb,0x95,0xbd,0x4d,0x5d,0xdd,0xed,0xf2,0xab,0x96,0xf7, +0xed,0x0a,0x94,0xbc,0x56,0xc5,0xd6,0x7a,0xf3,0x16,0x4e,0xcc, +0xeb,0x5b,0x4c,0xe2,0x96,0x34,0x6e,0x7c,0xa2,0x7d,0xb6,0x85, +0xd7,0xba,0x61,0x73,0x23,0xa8,0x97,0xd3,0x63,0x02,0x75,0x1d, +0xb5,0xe6,0x48,0xf0,0xf3,0xac,0xb7,0xf5,0x71,0xc2,0x0f,0x9c, +0xb0,0x15,0x7b,0xa5,0xe9,0x59,0x39,0x2c,0x60,0xb0,0x5e,0xbc, +0x47,0xdc,0x22,0x9c,0x23,0x1c,0x23,0x25,0xf3,0x7f,0xde,0x8e, +0x9f,0xc3,0xb0,0xa7,0x6d,0xb8,0x47,0xf1,0x40,0x6a,0x58,0xc9, +0x61,0x0a,0x75,0x4e,0xf3,0x08,0xf3,0x48,0x8b,0x03,0x31,0x14, +0x53,0x3e,0x48,0x86,0x51,0x79,0xf7,0x73,0x39,0xbb,0x97,0x24, +0x51,0x19,0xd7,0x75,0x5a,0x69,0x13,0xcb,0xef,0x37,0x8c,0x90, +0xed,0xa3,0xce,0x19,0x00,0xd3,0x29,0x64,0x64,0xad,0x8c,0x35, +0x52,0x41,0x86,0xdf,0xa3,0x00,0x69,0xff,0xfc,0x43,0x92,0x73, +0x2e,0x69,0xd9,0xf8,0x54,0x9b,0x46,0xc9,0x0a,0x8a,0x76,0x41, +0x03,0x08,0x6e,0xa7,0x3d,0x43,0x32,0xe0,0xcf,0x14,0x11,0x13, +0x9e,0x72,0x7d,0x4e,0x78,0x99,0x6c,0x62,0x8e,0x3f,0x3d,0xf6, +0xc3,0x5d,0xf5,0x0b,0xe2,0x0c,0xf6,0xc8,0xcc,0x03,0xf8,0x41, +0x24,0xe5,0x26,0x7a,0xf2,0x6b,0x4c,0x18,0x0e,0xdf,0x87,0xc3, +0xf6,0x4c,0xe7,0x84,0xe1,0xcc,0xd1,0xc8,0x23,0x91,0x47,0xf7, +0x73,0x36,0xfb,0x77,0xfb,0x2b,0xa4,0x3d,0x4f,0x4c,0xd4,0x5e, +0x32,0xf7,0xca,0x0a,0x6e,0x27,0x68,0x1e,0x4f,0x3c,0x96,0x74, +0x3c,0x99,0xfb,0xae,0x7d,0x35,0x73,0xe6,0xbb,0xe8,0x57,0x27, +0x5e,0x73,0xd7,0x19,0xfc,0x04,0x6e,0x11,0x6f,0x56,0xf7,0xc8, +0xca,0xc3,0xab,0x34,0xb0,0x89,0x39,0xfd,0xe3,0xa9,0x1f,0x4f, +0x3c,0xe0,0x9a,0x96,0x93,0x6a,0xe7,0x66,0x45,0xb9,0x55,0x79, +0x05,0xef,0x5a,0x67,0xa6,0xb4,0x2f,0xe3,0x44,0x56,0xda,0x9d, +0x69,0x9c,0x12,0xc7,0xc1,0x87,0xcf,0xdb,0x30,0x52,0xf1,0x84, +0x7a,0xc9,0x2c,0x19,0xcc,0xc2,0x6e,0x46,0x11,0x2e,0xdf,0x6f, +0xa6,0xca,0x0e,0x1f,0x27,0xc3,0xb8,0xfc,0xa7,0x79,0x34,0x3b, +0xbc,0x0f,0x99,0xe0,0x47,0x24,0xfe,0x61,0xec,0xcb,0x33,0xaf, +0x38,0x68,0x65,0x0e,0x4e,0x3e,0x30,0x3d,0x52,0x9b,0x33,0x7b, +0x4c,0xb6,0xd7,0x19,0x5d,0xb4,0x2f,0x75,0x75,0xe5,0x6b,0x9d, +0xdb,0x8d,0xce,0x59,0x71,0xa2,0x9a,0xe1,0x3b,0x90,0xa5,0x01, +0xb3,0xdf,0x30,0x5c,0x95,0x31,0xf6,0x4a,0x20,0x2b,0xcf,0xa2, +0xe1,0xdc,0x38,0x00,0xb2,0x92,0xc6,0xde,0x6a,0x8c,0x5e,0xcd, +0xf8,0x44,0x49,0x13,0x4b,0x02,0xcc,0xeb,0xc4,0x03,0x02,0x31, +0x11,0x09,0xfa,0x99,0xc0,0x58,0xf6,0x30,0x3a,0xb8,0xe3,0x20, +0x1c,0x85,0x43,0x2a,0x6c,0x28,0x71,0x84,0x4f,0xaa,0x60,0xfc, +0x31,0xd8,0xc6,0x81,0x9a,0xc8,0x32,0xb2,0xdc,0xa0,0x46,0x8d, +0x1f,0x98,0xea,0xa4,0xd4,0x0a,0xe9,0xd1,0x3c,0x79,0x8a,0x5a, +0xff,0x2c,0xe1,0x27,0x12,0xb7,0xf8,0xbd,0xf2,0x6f,0x58,0xdd, +0x50,0x21,0x43,0xa0,0x0e,0x55,0xbe,0x9e,0x4a,0xf9,0x4a,0x29, +0x1d,0xf5,0x8d,0xdf,0x45,0x7c,0x97,0xbb,0x2e,0xb3,0x59,0xdb, +0xe8,0xcd,0xd7,0x5d,0xaf,0x7e,0x96,0xfb,0x80,0xc3,0x97,0xe8, +0x4a,0x02,0x6e,0x3a,0xbd,0xf0,0xe8,0x34,0xf7,0xe6,0x4b,0x0c, +0xca,0x16,0xe4,0xac,0xe1,0x70,0xaa,0xa8,0x4b,0xb1,0xc2,0xf6, +0x1d,0x56,0xa8,0x2b,0x51,0x1d,0x86,0x3d,0x6b,0xc7,0x48,0xf9, +0x13,0xea,0x2c,0x33,0x65,0x30,0x93,0x3a,0x8b,0x59,0xc4,0x5f, +0xca,0x4a,0x81,0x71,0x79,0x3f,0xe4,0x71,0x86,0x2f,0x24,0xd1, +0xbb,0xdf,0xe5,0x97,0x70,0xd9,0x5e,0xea,0x2c,0x7b,0x60,0x9a, +0xe4,0x2c,0xab,0xe2,0x54,0xce,0xd2,0xed,0xfb,0x50,0xca,0x2f, +0xc2,0x1a,0xb8,0x4c,0x8c,0x84,0xcc,0x6e,0x1c,0x05,0x31,0x30, +0xa4,0x13,0x87,0x80,0x8b,0x09,0xc5,0xe6,0xa5,0xaa,0x5f,0x13, +0x4c,0xfe,0xc4,0x18,0x16,0x3b,0x85,0x5d,0xd4,0xc7,0x5b,0x36, +0x3d,0xd1,0xa6,0x68,0xb7,0xb2,0xc7,0xea,0x86,0x8a,0x12,0x04, +0xea,0xd8,0x6a,0x4f,0x97,0x28,0xc1,0x3f,0x6e,0xaa,0x64,0x82, +0x15,0xfd,0xe6,0x2a,0x58,0xb3,0x52,0x0d,0x75,0xbc,0x12,0xc7, +0xd3,0x5c,0xd9,0x8e,0x51,0x72,0x29,0x57,0xaa,0xec,0x7a,0x89, +0x55,0xa8,0x86,0x2a,0xf9,0xf5,0x27,0x29,0x30,0x3e,0xef,0xc7, +0x7c,0x4e,0x18,0x04,0x85,0xd2,0x56,0xe9,0x31,0x94,0x1f,0x8b, +0xba,0xe2,0x3b,0x9b,0x29,0xdf,0x0f,0x9c,0xda,0x6c,0x1f,0x4c, +0x55,0x79,0x79,0x9c,0x04,0x72,0xd4,0x66,0xd2,0xc0,0xfb,0x58, +0xd4,0x24,0x17,0x36,0x5c,0x5f,0x50,0xab,0xdb,0x50,0xc6,0xdb, +0xdd,0xda,0xf0,0xcc,0xe0,0x2a,0x87,0xaf,0x30,0x8f,0xdc,0xbd, +0x7e,0xf9,0x87,0x9a,0x47,0x66,0x05,0xbc,0xfd,0x52,0x43,0x1d, +0xbd,0x2d,0x14,0x20,0x3c,0xfb,0x28,0xa5,0x9c,0x60,0x84,0x13, +0x68,0xc1,0x2f,0x04,0x77,0xb0,0xfd,0xba,0xd4,0x81,0x54,0xe0, +0x55,0xf8,0x17,0x78,0x49,0x05,0x88,0xc5,0x5f,0x08,0x77,0x51, +0x62,0xf0,0xe0,0x2d,0x9a,0x90,0x5b,0x37,0x94,0x0f,0xca,0x7e, +0xb1,0xca,0xe2,0x77,0x2c,0x35,0x5b,0xbe,0x41,0x9f,0x83,0x6f, +0xc1,0x86,0x28,0x75,0x1b,0x97,0x56,0xcd,0x6d,0x2c,0xe2,0x1d, +0x7f,0x34,0x7f,0x6c,0x7a,0x93,0x13,0x3f,0x11,0xcf,0x12,0xfb, +0x30,0xab,0x70,0x4b,0x55,0x59,0xfe,0x17,0xee,0xc5,0xff,0x1b, +0xee,0xd1,0xb2,0xdc,0xe8,0x5d,0x59,0xce,0x27,0xc3,0xa4,0xbc, +0x97,0x79,0x1c,0x74,0xc3,0x87,0xa4,0xf1,0x5a,0xd9,0x77,0x39, +0x2f,0x65,0x59,0x7c,0xe0,0x52,0x4f,0x3d,0x47,0x03,0xe7,0xf3, +0x9e,0xbd,0x81,0x0f,0xe4,0x01,0x7c,0xee,0xac,0xd2,0x55,0xf5, +0x9b,0x0c,0xd6,0xac,0x92,0xcd,0x74,0x28,0xa0,0x34,0xa6,0xf6, +0xfb,0xce,0x2b,0xdf,0x5c,0x5c,0x7d,0xc7,0xe4,0x47,0xdb,0xb3, +0x4a,0x7e,0x41,0xf5,0x6a,0xa5,0x51,0x2f,0x27,0x7e,0x10,0xf0, +0x7f,0xa2,0xe4,0x89,0xff,0x89,0x92,0x3e,0x0f,0xfc,0x25,0x36, +0x9b,0x30,0xc0,0x66,0xd7,0x0f,0x34,0x75,0x7a,0xe4,0x03,0x19, +0xcb,0x5f,0xc7,0x52,0x6b,0x82,0x64,0xc3,0x3f,0x6e,0x5e,0x90, +0x50,0xbd,0x8f,0xef,0x2f,0x26,0x1b,0x18,0x1f,0xd5,0x24,0xab, +0x29,0x7c,0x20,0xdc,0x12,0x57,0x89,0xb7,0x7e,0x67,0x23,0x71, +0x88,0xc5,0x2a,0x1c,0xa3,0x5f,0x60,0xc5,0xc3,0xac,0x9e,0xae, +0x37,0x31,0xf0,0x19,0xf7,0x03,0xca,0x99,0x2d,0x99,0x01,0x4a, +0x8d,0xef,0x99,0xca,0xa4,0xc4,0x3a,0xe9,0x60,0x48,0xb3,0x14, +0x35,0x33,0xea,0xff,0x48,0x5d,0x06,0x58,0x16,0x87,0xf5,0x4f, +0x27,0x0e,0xe1,0xd6,0x2a,0x87,0x68,0x82,0xe9,0x4a,0x9c,0x0e, +0xc3,0x5f,0x4b,0x0d,0xa2,0x97,0x34,0xcf,0xa9,0x1a,0x44,0xe7, +0x07,0x1a,0x44,0x07,0xde,0x31,0xdd,0x09,0x79,0x2f,0xa8,0x43, +0xac,0x10,0x6a,0x08,0x4d,0xd3,0x9d,0xf0,0x11,0x4b,0xf3,0xa5, +0x9e,0xd4,0xaa,0xed,0x84,0x4f,0x58,0x5c,0x8b,0x85,0xaa,0xfc, +0x1c,0xa3,0x92,0xd6,0xf0,0x7d,0xeb,0x68,0x0a,0x95,0x56,0xca, +0x80,0xaa,0x2a,0xed,0x5d,0x7e,0xde,0xd6,0xd7,0x43,0x02,0x74, +0x6c,0xb4,0xbf,0x94,0xec,0xf9,0x4b,0x6f,0xe7,0xa3,0xc4,0x1f, +0x69,0xc6,0x8a,0x5f,0xdc,0xb6,0xf1,0x27,0xc9,0x87,0x97,0xf6, +0x58,0xf4,0x06,0xf4,0x72,0xa0,0xef,0x4b,0x30,0x50,0x30,0x82, +0x40,0x56,0xfc,0x0c,0xd7,0x48,0xed,0xd4,0x9b,0xf8,0x11,0x4d, +0x5e,0x98,0x4f,0x40,0xb3,0x1d,0x35,0x61,0xf8,0xcf,0xed,0x78, +0x44,0xfe,0x13,0x1d,0xee,0x7c,0x39,0xcc,0xa7,0x15,0xbf,0x3c, +0xdc,0x74,0xbf,0x5c,0x15,0x6a,0x23,0x93,0xe1,0x8b,0xfc,0x67, +0x79,0x87,0x95,0xbc,0x03,0x0d,0x4f,0x49,0xc4,0xf5,0x38,0x9a, +0x5c,0x00,0x7b,0x00,0xe4,0x71,0xa5,0xb4,0x68,0x10,0xa6,0x33, +0xf5,0x29,0x69,0xd5,0x9a,0xc2,0x01,0x31,0x80,0xbd,0x80,0x0b, +0xc8,0xef,0x00,0x93,0x59,0x31,0x0e,0x3d,0x48,0xb2,0x92,0x52, +0x59,0xa5,0xb5,0x8a,0xfd,0xa9,0x9c,0x3c,0x42,0xca,0xe4,0x12, +0x30,0xbd,0xcf,0xe4,0xd4,0xc9,0x85,0x2f,0xa4,0x3d,0xbe,0x00, +0x26,0xb0,0x23,0xe0,0x2b,0x6a,0xbf,0xb8,0xc5,0xad,0x1b,0x7f, +0x94,0x70,0x65,0xf9,0x0d,0xcb,0xf7,0xb8,0xf2,0x2e,0x06,0x5f, +0xde,0x54,0xd1,0xdc,0xbe,0xcf,0x28,0xb3,0x44,0x5f,0x26,0x07, +0x38,0x35,0x88,0x6e,0x13,0x43,0x14,0xa0,0xc7,0xf8,0x21,0xa7, +0x86,0x9f,0x2b,0x80,0x63,0xdc,0x71,0xb1,0x1a,0x0e,0x93,0x0b, +0xa9,0xed,0xba,0x8c,0x08,0x5b,0xc8,0x7f,0x0e,0x52,0xe6,0xef, +0x20,0x55,0x11,0xda,0xe7,0x03,0x84,0xd6,0x42,0x45,0x68,0x1b, +0x85,0x0c,0xe9,0xe1,0x04,0x57,0x96,0x16,0x97,0x6a,0xd8,0x26, +0x5a,0xfc,0x77,0xf1,0x2a,0xe8,0x88,0x9f,0x91,0x0e,0xe8,0x34, +0xed,0x86,0x9f,0x45,0x6d,0xe9,0x78,0xdf,0xc1,0x50,0x45,0x70, +0x3d,0xb5,0xec,0x7a,0x69,0xf3,0x9a,0xbe,0x65,0x04,0x3f,0xed, +0x84,0x8d,0x18,0xf2,0xc6,0x68,0x22,0x7a,0xe3,0xc6,0x0e,0xf8, +0x94,0xc5,0x43,0xf0,0x11,0x89,0x5d,0x51,0xb5,0xf5,0x9e,0x2e, +0x2d,0x1a,0xd7,0x5e,0x73,0xbc,0x16,0x7c,0x4d,0x95,0xc9,0x1c, +0xb5,0x66,0x49,0x60,0xfa,0xbc,0xb7,0x4d,0x95,0x5c,0x09,0xcd, +0x64,0xa7,0xaa,0x4f,0x56,0x1f,0xaf,0x31,0x8d,0xe6,0x0f,0xdb, +0x1c,0xb4,0x3b,0x60,0xc7,0xe1,0x34,0x19,0x68,0x30,0x1e,0xb8, +0xc1,0x18,0x17,0x2f,0xc0,0x51,0xf5,0x4e,0xfc,0x0b,0xd0,0xbc, +0x04,0xeb,0x8b,0xc0,0x94,0x83,0x97,0x4a,0x46,0xec,0x12,0x27, +0x10,0xe7,0x70,0xbb,0x70,0x5b,0x6a,0xb9,0x56,0x18,0xdd,0x8e, +0xa3,0x61,0xd8,0x8f,0x6d,0x18,0xa2,0x78,0x44,0x15,0x31,0x55, +0x0e,0x53,0xf1,0x32,0xcd,0xc2,0x8a,0xfd,0x16,0x2a,0x6b,0x73, +0x29,0xc0,0xe7,0x3d,0xce,0x93,0x0e,0xe4,0x30,0x24,0x19,0x0e, +0x59,0xc6,0x19,0x46,0x5b,0xf7,0x6d,0x08,0x5b,0x17,0x51,0xfa, +0x73,0x31,0x7c,0x9c,0x09,0x9c,0x2c,0x56,0xda,0x8f,0xda,0x0d, +0x47,0xdb,0xe3,0x60,0xe9,0x89,0x48,0x3f,0xd5,0xf6,0x19,0x23, +0x92,0x60,0x64,0x3a,0x0c,0xca,0x3d,0xe3,0x13,0xe3,0x73,0xda, +0xaf,0x25,0x8b,0xf7,0xf8,0xc5,0x1a,0x86,0xb9,0xdd,0xe6,0xc4, +0xc3,0xc8,0xbe,0xcb,0xe7,0xb6,0xb1,0x54,0x73,0x03,0xf9,0x3c, +0xe8,0x3f,0xe5,0xf3,0xb7,0x16,0x42,0x3b,0xc1,0x79,0x8c,0xf2, +0x62,0xc3,0x8d,0xba,0xef,0x6c,0xf2,0x78,0xc5,0x2c,0x99,0xd6, +0x96,0x8d,0x1c,0xe5,0x75,0x30,0xaf,0x15,0xe7,0xc1,0x60,0x53, +0x4a,0x6c,0x16,0x98,0xc1,0x02,0xea,0xa6,0x5b,0xa5,0x27,0x8b, +0x56,0x6f,0x5a,0x24,0x9f,0x68,0x91,0x63,0xc3,0x57,0xa7,0x55, +0x66,0x94,0x65,0x72,0x10,0xc3,0x6c,0xf3,0x51,0xf8,0x98,0x04, +0x70,0x5b,0x30,0xcc,0x0c,0xc2,0x70,0x19,0x4e,0x65,0xa5,0x9d, +0x66,0x3f,0x65,0xea,0x92,0x53,0x6b,0x34,0x61,0x3e,0x84,0xb5, +0x62,0x58,0x11,0xdb,0x5b,0x74,0xb5,0xaa,0xb6,0x8e,0xab,0xc4, +0x1c,0xb6,0xa6,0xb0,0xa2,0xb8,0xac,0x8c,0x03,0x07,0xa6,0xdf, +0x1e,0x8a,0x48,0xdc,0xd2,0x96,0x4d,0x3f,0xe8,0x16,0xb6,0xf0, +0x2b,0xae,0x53,0xf8,0x97,0x9a,0x82,0x01,0xba,0x36,0x5a,0x5f, +0x4a,0x56,0x78,0x45,0xc9,0x2e,0x75,0xbd,0x5c,0x91,0xfa,0xd3, +0x84,0x76,0x9c,0x00,0xc3,0x5e,0x4a,0x41,0xf3,0x23,0x55,0xe3, +0x3c,0x39,0xcc,0xa3,0x05,0x92,0x9c,0x16,0x48,0xf2,0x81,0x02, +0x89,0xc6,0x78,0xc1,0xf3,0x3c,0x55,0xa9,0x67,0x29,0x95,0x7a, +0xf7,0x7a,0x25,0x52,0xdb,0xf9,0xce,0x7f,0x06,0xaa,0xba,0x08, +0x55,0x55,0x97,0x25,0x75,0x83,0xa5,0xaa,0x6e,0xa0,0x10,0x12, +0x56,0x0b,0x4e,0x44,0x2e,0x9c,0x6e,0xc7,0x60,0x5a,0xe5,0x1c, +0x6e,0xa7,0xd5,0xeb,0x1c,0x43,0x9c,0x83,0x21,0x72,0x08,0x41, +0x6d,0x56,0x9c,0x0e,0x14,0xd4,0x97,0x36,0x6f,0x7c,0x22,0xb9, +0xca,0x8a,0x1e,0xab,0x9e,0x01,0xd2,0x43,0x31,0x60,0x8a,0x84, +0x01,0xaf,0x07,0x30,0x20,0x4f,0xaa,0x75,0x26,0xb6,0xe3,0x44, +0x18,0x4e,0x07,0x79,0x54,0x15,0xd9,0x0b,0x28,0x29,0xc3,0x0b, +0x8c,0x2c,0xdc,0x34,0x72,0x20,0xb2,0x3f,0x4c,0x86,0x31,0xb9, +0x8f,0x73,0x68,0x64,0x53,0x96,0x16,0x29,0xb1,0xb4,0xc7,0x50, +0x41,0x9a,0xdd,0x5a,0xec,0xea,0xac,0xca,0x2a,0x79,0xdb,0x26, +0x45,0x9d,0x45,0x31,0x87,0xd5,0x18,0x3b,0x10,0xc6,0x12,0x1c, +0xbd,0x0f,0xe3,0xfd,0xaa,0x30,0xce,0xfe,0xb7,0x30,0xa6,0x84, +0x5c,0xe1,0x49,0xca,0x57,0x14,0x4d,0xc9,0x9c,0xd7,0x9a,0xc5, +0x07,0xfc,0xe8,0xfe,0xab,0xeb,0xf7,0x1c,0xba,0xe1,0x05,0xe2, +0x1e,0x79,0xfa,0xac,0x26,0x24,0x1a,0x61,0x36,0x6b,0x90,0xe5, +0xdf,0xa3,0x41,0x23,0xb4,0x2e,0x39,0x99,0x22,0xe9,0x6c,0xd6, +0x34,0x55,0x0d,0xd7,0xb3,0x78,0xfb,0x20,0x29,0xbd,0x9f,0x05, +0x43,0x63,0x5e,0xc9,0x63,0xf9,0x88,0x19,0xbe,0x93,0xb6,0xeb, +0x51,0x74,0x3b,0xd2,0x97,0x43,0x62,0x57,0xd5,0x19,0x3c,0x90, +0x2a,0xbb,0xd5,0x97,0xed,0x2e,0xef,0xba,0x22,0x61,0x01,0x2d, +0x79,0x67,0xbe,0xe3,0x18,0x8f,0x13,0x69,0x58,0x04,0x8b,0x23, +0x49,0x12,0x1a,0x35,0xe3,0x2a,0xf8,0x0c,0x47,0x95,0xd7,0xf3, +0x86,0xe7,0x9d,0xae,0xfa,0x7c,0xdb,0x58,0xde,0xd8,0x5a,0x50, +0xe5,0x5e,0xc9,0xfb,0x3a,0x39,0xd9,0x3b,0xb8,0x85,0xb4,0x45, +0x76,0x1e,0xbc,0xc4,0xc1,0xea,0x0e,0x71,0x2b,0xf3,0x75,0xc9, +0x57,0x65,0xe5,0xea,0xa0,0x2d,0x6c,0xe9,0x14,0xa3,0x70,0x17, +0x8b,0xe7,0x42,0x71,0xa3,0x01,0xce,0xd1,0x68,0xd9,0xd6,0x06, +0xe3,0xd2,0x60,0xe2,0x29,0x70,0x1e,0x7b,0x47,0x9c,0xc6,0xec, +0x8c,0xf2,0x8e,0xf2,0x3e,0x14,0x67,0xc2,0xff,0x23,0xf9,0xa7, +0xbc,0x07,0x85,0x61,0xed,0xbc,0xe3,0x5e,0x87,0x7d,0xb6,0xa1, +0x9c,0x30,0x96,0x85,0x6c,0x69,0xbd,0xce,0xbf,0x4c,0xe1,0x5f, +0x8c,0x98,0x27,0x86,0x13,0xd7,0x08,0xa7,0x08,0xfb,0x08,0x69, +0x8e,0x40,0x45,0x5f,0x3e,0x7c,0xd6,0x86,0x11,0x8a,0xc7,0x34, +0x33,0xaa,0xe8,0x4b,0xb7,0x44,0x5f,0x22,0x07,0xe8,0x0b,0x97, +0x0c,0xa3,0xf3,0x1e,0xe7,0x72,0x56,0x3f,0xff,0x7b,0x79,0x3c, +0xc0,0xdc,0xf6,0xbc,0x63,0x6e,0xff,0xa3,0x3c,0x16,0x1a,0x84, +0x45,0xe4,0xd0,0xcf,0x30,0x52,0x89,0x23,0x41,0x8b,0xa9,0x48, +0x28,0x4b,0x2a,0x49,0xf3,0x6a,0xe0,0x57,0x3b,0x4d,0x76,0x9f, +0xb7,0x3b,0xd9,0x82,0x3f,0x17,0x5d,0x1e,0x53,0x11,0xcb,0xe1, +0x0c,0x1c,0x2f,0x83,0xcf,0xd8,0x03,0xf3,0x6d,0x51,0x7d,0x0e, +0x32,0x05,0x5b,0xf9,0x7b,0xcf,0x8b,0x41,0x2d,0xfa,0x27,0xee, +0x94,0x18,0xa8,0x14,0xcc,0x99,0xd3,0xaa,0xfd,0x27,0x1e,0xe3, +0x9a,0x8a,0x9a,0x25,0xb0,0x72,0x7f,0xe2,0xfe,0xe8,0xd0,0xb0, +0xb1,0xd0,0x29,0xae,0x24,0xd2,0x0a,0x0c,0x7d,0x35,0x60,0x98, +0xda,0x24,0x6a,0x9b,0xbe,0x6b,0xa6,0x6c,0xff,0x97,0xdb,0xc8, +0x99,0xe5,0xa5,0x5b,0x6f,0xaf,0xa2,0x01,0xb1,0xa9,0xc7,0xed, +0x5a,0xf0,0x0d,0xca,0xf9,0x77,0xe9,0x6e,0xd7,0x5e,0xa1,0x77, +0xd6,0x8c,0xff,0xee,0x46,0xed,0x93,0xb8,0xc7,0x9c,0x70,0x24, +0x8a,0xf4,0xcf,0x52,0xf6,0xcd,0x62,0xc5,0x7c,0x71,0x1d,0x91, +0x4e,0x0e,0x1a,0x0c,0xc3,0xee,0xb6,0xa2,0x83,0xd9,0x0d,0x1a, +0x1b,0x23,0x15,0x30,0x12,0xaf,0x32,0x76,0x11,0x36,0x91,0x0e, +0x07,0x62,0x8d,0xf9,0x9f,0x53,0x60,0x58,0x7e,0x6f,0xf6,0x91, +0x36,0xde,0x23,0xc2,0x2d,0xc2,0x35,0x92,0xc3,0xf5,0x10,0x41, +0x32,0x4c,0x33,0x56,0xc4,0x18,0x36,0x24,0xf0,0x11,0xdd,0x01, +0x8f,0x03,0x69,0x59,0x6c,0x89,0x5b,0x48,0x9c,0x32,0xe6,0xfc, +0x29,0xa5,0xdd,0x19,0x3e,0xca,0x60,0xbf,0x69,0xa8,0x05,0xa5, +0x38,0xc7,0xfa,0xc6,0x92,0x1c,0xbf,0x1c,0x9f,0x6c,0x9f,0xe5, +0xfb,0x17,0x44,0xcd,0x3e,0x54,0x54,0x5b,0xac,0xcc,0x57,0x72, +0x50,0xd5,0x8a,0x91,0xd2,0x52,0xc9,0x20,0x33,0xd0,0x66,0x7c, +0xe4,0xee,0xa6,0xdb,0xac,0xb9,0xa3,0xbe,0xbe,0x47,0x7d,0xc7, +0x45,0xcb,0x60,0xc5,0x29,0x58,0x14,0x0b,0x9f,0xc7,0x8d,0x4d, +0x0a,0x4e,0x0c,0x8e,0x0f,0xae,0x39,0xc7,0xdb,0x5c,0x34,0xbe, +0x66,0xd2,0xc6,0x89,0xcd,0x94,0x98,0x48,0x84,0xef,0xa9,0xd4, +0xfa,0x5a,0x71,0xdd,0xb2,0x67,0xa0,0x07,0xa4,0xfd,0xbe,0xbc, +0xbd,0xd9,0xfd,0x30,0xf1,0x27,0x1a,0xf1,0x26,0x04,0x26,0x2b, +0x69,0xf5,0xfa,0xd1,0xab,0x36,0x3c,0xae,0x78,0x4e,0x93,0xf6, +0x22,0x19,0xad,0x5e,0xaf,0x30,0xb4,0x7a,0x95,0x9a,0x3b,0x52, +0x56,0x4f,0x81,0x89,0x79,0x2f,0x0a,0xfe,0x8e,0x78,0x88,0xc7, +0x91,0x04,0xd6,0xc0,0x1d,0x1c,0x82,0x06,0x6c,0x9c,0x42,0x0d, +0x56,0xd2,0x2c,0x99,0x4c,0xb3,0xe4,0x06,0x71,0xab,0xf8,0x15, +0x2b,0x7c,0x0a,0xff,0x22,0x78,0xe7,0x09,0xdc,0x61,0xc4,0xaf, +0xf0,0xf4,0xfb,0x4c,0x19,0xcf,0x47,0x18,0x84,0xab,0x2a,0xf2, +0x28,0x9a,0x5e,0x68,0xcd,0xfb,0x57,0x88,0x3d,0xf2,0xa3,0xe9, +0x65,0xf1,0x66,0x02,0x77,0x16,0xe0,0x1d,0x66,0x84,0xa0,0x10, +0x8e,0x13,0xf8,0xb0,0xa4,0xbd,0xb4,0xb8,0x28,0xe6,0xcc,0xc9, +0xaf,0xe2,0xa2,0x20,0x64,0x02,0x5f,0xd0,0x8a,0xee,0x2f,0xf7, +0x0d,0x6c,0xba,0x1e,0x16,0x12,0x75,0x3c,0x36,0xf5,0x4c,0xc6, +0x89,0xac,0xb1,0x10,0xd8,0x8a,0x7e,0x77,0x8c,0xb4,0x71,0x9b, +0x19,0x38,0x32,0x7b,0x36,0xeb,0xbb,0xe0,0x78,0x67,0x0e,0xf5, +0x20,0x9c,0xc4,0x2d,0x6b,0xde,0xf4,0x44,0x9a,0x06,0x59,0x79, +0x8d,0x82,0xc9,0xf5,0xff,0xd0,0x03,0x53,0x21,0xde,0x7f,0x6a, +0x6e,0x75,0x4b,0x60,0xf2,0x77,0x73,0x4b,0xf3,0xef,0xe6,0x96, +0x05,0x0d,0x83,0x2f,0x85,0x65,0xc4,0x54,0x98,0x2f,0xae,0x46, +0x0d,0x36,0x51,0xd5,0x1d,0xaf,0x4b,0xc8,0x2c,0xd7,0x14,0x56, +0x5e,0xeb,0x60,0x69,0x5a,0x98,0x48,0xf0,0xba,0xf2,0x3a,0x04, +0xc1,0x57,0xac,0x38,0x1a,0x9d,0xff,0xbb,0xa6,0x97,0x30,0x01, +0x57,0xd2,0xb1,0x80,0x0e,0x4e,0x62,0x47,0xf4,0xb9,0xc0,0xe7, +0x24,0x78,0x7b,0x80,0x97,0xc7,0xf6,0x1a,0x6f,0x1e,0xb5,0x60, +0xb4,0x30,0xa6,0x49,0x1c,0x73,0x19,0x56,0xd5,0x32,0x57,0x76, +0xdf,0xdf,0xfb,0xeb,0xde,0xd4,0x36,0x1e,0x63,0x4b,0xbf,0x2c, +0xb5,0xac,0xbf,0x9a,0xdd,0x99,0xdf,0x58,0xd4,0x66,0x77,0xc5, +0xe9,0xfe,0xb6,0xfc,0x76,0x7e,0x75,0x91,0x71,0x89,0x75,0x69, +0x6f,0x77,0x63,0x6f,0xde,0x43,0xae,0x4a,0x9c,0x60,0x0e,0xf7, +0x59,0xdf,0xad,0xce,0x72,0x7d,0x6b,0x9b,0x5a,0xb7,0x46,0xaf, +0x36,0x33,0x1f,0xbe,0x50,0x56,0x6a,0x5e,0x6f,0x63,0xb7,0x53, +0xee,0xb7,0xc5,0x3f,0xd1,0x93,0x37,0xcf,0xc3,0xd1,0x3d,0x30, +0x86,0x42,0xe8,0x98,0x2b,0xf0,0x65,0xbd,0x38,0x59,0x1c,0x0d, +0xbf,0x32,0xb6,0xd6,0x73,0x5c,0x31,0xde,0x25,0x95,0x92,0xaf, +0xa4,0xef,0x93,0x2e,0xa5,0x72,0xb6,0xb0,0x60,0x8b,0xc8,0x5a, +0x0a,0x2c,0x8e,0xc6,0xe5,0x6c,0x4d,0xfe,0xae,0x12,0xbf,0x22, +0x9f,0x82,0xb1,0x36,0xde,0x05,0xdb,0x33,0x7c,0xd2,0xdd,0xc6, +0x62,0xa4,0xc5,0xdb,0x61,0xcd,0x78,0x84,0x39,0x5b,0x92,0x9a, +0x93,0x51,0xce,0x89,0x81,0xd2,0x9e,0xa6,0x9a,0x57,0x40,0x93, +0x41,0x4d,0xdc,0x40,0xae,0x42,0xfa,0x26,0x16,0x89,0x1d,0x59, +0x8f,0x9a,0x3d,0x2c,0xbc,0x42,0x9e,0xe4,0x5b,0x29,0x77,0x3c, +0xdb,0xc9,0xe1,0x5b,0xe6,0x87,0x5c,0x65,0x51,0x5e,0x23,0x27, +0x3d,0xc9,0x3e,0x93,0x40,0x50,0x3b,0xcd,0xa3,0x23,0x8c,0x70, +0x04,0x6e,0x93,0xc3,0x36,0x64,0x30,0x44,0x26,0x9c,0x53,0xe2, +0x51,0x46,0x74,0x85,0xaf,0xfe,0x0b,0x0e,0x95,0x2b,0xe5,0x88, +0xff,0x1b,0x31,0x7a,0x57,0xbd,0x1c,0x6e,0xe7,0xdf,0x55,0x3c, +0x42,0x99,0xb0,0x82,0xec,0xb3,0xf0,0x97,0x79,0xca,0x39,0xec, +0x95,0x92,0xd2,0x70,0xf4,0x94,0x83,0x27,0x2e,0xef,0x86,0xe5, +0xb0,0xa7,0x9d,0xe2,0xd7,0x70,0x38,0xda,0x8e,0xf3,0x99,0x8c, +0xaa,0x8c,0xa6,0xa4,0x26,0x0e,0xc5,0x43,0x24,0xd3,0x35,0xc3, +0x36,0xc9,0xa1,0x25,0x83,0xdf,0x5d,0xb7,0xab,0x26,0xa0,0x9c, +0x43,0x57,0xfc,0xf5,0xbf,0xe3,0x53,0x23,0xfa,0x76,0xf4,0x45, +0x12,0x69,0xff,0x76,0x2f,0x33,0xe1,0x58,0x2b,0xdb,0x6f,0x58, +0xf2,0x5f,0x34,0xab,0xfb,0xa6,0x48,0x1b,0xa7,0xce,0x43,0x67, +0x61,0x1e,0x63,0x0c,0x0b,0xc8,0x04,0xac,0xff,0x53,0x7a,0x72, +0x33,0xf2,0xff,0xde,0x87,0x1e,0x43,0x8b,0x96,0xfc,0x97,0xf9, +0x47,0x3a,0x28,0x13,0xb4,0x0c,0x33,0xa3,0x02,0x5b,0xc3,0x68, +0x92,0xc3,0x5e,0xcf,0xeb,0x29,0x6d,0xa9,0xe3,0xaa,0x45,0x5b, +0x0b,0x40,0xd6,0xc5,0xd7,0x22,0x40,0x3f,0x90,0x33,0xc1,0x70, +0x73,0x08,0xa7,0x05,0xd7,0x3c,0x36,0x49,0x2e,0x9d,0x3e,0x50, +0xaf,0xda,0xd0,0x7e,0x0c,0x04,0xb7,0xb0,0xe2,0x3f,0x8c,0xfe, +0x3f,0x5a,0xd1,0x26,0x52,0x4c,0xbf,0x6b,0x45,0xbf,0x35,0x11, +0xba,0x88,0xf7,0xf7,0x46,0xaf,0xcd,0x6f,0x58,0xf9,0xf2,0x4d, +0xab,0x3b,0x67,0xe5,0x2d,0xe3,0xd0,0x11,0x5a,0x65,0xd8,0x8a, +0x76,0x4c,0xfb,0xad,0xa6,0x57,0x05,0x8f,0xe5,0xa9,0xbc,0xe7, +0x12,0xdb,0x59,0xb2,0x4d,0x55,0x9e,0xbc,0xf8,0xa6,0x43,0x68, +0x17,0x58,0x71,0x37,0xce,0x64,0x93,0xcc,0xd4,0x60,0x0c,0x53, +0x9d,0x92,0x40,0x81,0xa5,0xe0,0x08,0xdb,0xaf,0x05,0xf1,0x24, +0x66,0x55,0x99,0xfe,0xb7,0xab,0x29,0x3f,0xd8,0x74,0xc5,0xf5, +0x6a,0xf0,0x55,0x55,0xce,0x74,0xd2,0x9a,0x2b,0xe5,0xcc,0x1f, +0x7b,0x5b,0x1f,0xc7,0xff,0x40,0x6d,0xaf,0x4f,0xe0,0xb3,0x76, +0xfc,0x0c,0x86,0xfd,0xd0,0x86,0xc1,0x8a,0xfb,0x54,0x15,0x93, +0xe4,0x30,0x09,0x2f,0x33,0x16,0x11,0xe6,0xfb,0x2d,0x55,0x21, +0xad,0x96,0x02,0x24,0xef,0x41,0x1e,0x25,0xc5,0x2e,0xe1,0x8e, +0xe1,0x76,0x34,0xa4,0xcf,0xc3,0x7d,0x82,0xbf,0x34,0x7f,0x4b, +0x99,0x49,0x16,0x8b,0xda,0xe8,0x4f,0x60,0x1d,0x0c,0xc3,0x75, +0x6c,0xff,0x02,0x18,0x45,0x6d,0x97,0xb9,0x32,0xce,0x48,0xd5, +0x6f,0xf0,0x7f,0x14,0x40,0x51,0xd9,0x8b,0x62,0x78,0x82,0x32, +0xae,0xfb,0x74,0xbb,0xed,0x5f,0xbd,0x9c,0x81,0xb6,0x4d,0x1c, +0xad,0x50,0x9e,0x6a,0x67,0x57,0xf2,0x6b,0x95,0xdb,0x85,0xb9, +0xc5,0x1d,0x60,0x46,0x19,0xc5,0x10,0x23,0x0a,0x95,0x01,0x93, +0xd9,0x55,0xd7,0xac,0x7b,0x82,0x7a,0x54,0xac,0xc6,0x56,0x7b, +0xda,0x1a,0x55,0x73,0xbb,0xf3,0xb1,0xc4,0xfa,0x35,0xf1,0x10, +0xa1,0x0c,0x68,0x98,0x30,0x9d,0xe9,0x1f,0x8a,0xd7,0xdf,0x35, +0xaa,0x87,0x53,0xf7,0x3d,0x28,0x7f,0x4a,0x1d,0x71,0x8e,0x1c, +0xe6,0x50,0x8a,0xa3,0x08,0x97,0x45,0x2a,0x06,0x44,0x48,0x86, +0xcf,0x73,0x1f,0xe4,0x50,0x11,0xdc,0x23,0x5d,0x23,0x9d,0x23, +0xb9,0x3e,0x7d,0xb8,0x4b,0xc4,0x6c,0x13,0x08,0xc4,0xbb,0xf8, +0x99,0xf4,0x18,0xc6,0x1b,0xa6,0x2e,0x35,0x95,0x1a,0xed,0x3a, +0x1c,0x62,0xc5,0x7e,0xb4,0xfc,0xdb,0x2f,0x23,0xa8,0x5f,0x4a, +0x0d,0xeb,0x30,0x15,0x10,0xff,0xaf,0xba,0x7c,0xad,0x21,0xa9, +0x5a,0x73,0x6e,0x4e,0xc1,0xe2,0xb6,0x4c,0xde,0xe7,0xa9,0xf3, +0x53,0x87,0x6f,0x38,0x7c,0x72,0x90,0x78,0x2d,0x70,0x5e,0x26, +0xdb,0x58,0xe7,0xc2,0x77,0x7d,0x53,0xfb,0x2a,0xff,0x07,0x9a, +0xb9,0x3f,0x15,0x9e,0x10,0x05,0x68,0xb1,0xa1,0x2b,0xcd,0xec, +0x26,0x38,0x67,0x9b,0xf1,0xf0,0x69,0xc3,0xd5,0x1b,0x09,0xbf, +0x70,0x30,0x68,0x32,0x63,0x9c,0x15,0xa2,0xd4,0x80,0xa1,0xcc, +0xb9,0xc4,0xa4,0x73,0x9a,0x17,0x59,0x8b,0x24,0x35,0xad,0xa9, +0xac,0xef,0xfe,0x13,0xd9,0x9a,0x3f,0x4b,0x4f,0xda,0x25,0xbc, +0x86,0x3d,0xad,0xb8,0xe7,0x85,0xc9,0x6c,0xe9,0x91,0x5c,0x9f, +0xa9,0xac,0x38,0x07,0x1c,0x48,0xcc,0x92,0xda,0xcd,0x0f,0x56, +0x51,0xff,0x5f,0x7d,0xc3,0xa1,0x27,0x48,0x0a,0xed,0x20,0x5d, +0x57,0xed,0x45,0x92,0x79,0x1f,0xf5,0x36,0x3e,0x4e,0x78,0xc2, +0xc1,0xe4,0x7e,0x2b,0xe2,0x16,0x3e,0xd0,0x7a,0x6b,0x83,0xe1, +0xed,0x38,0x1c,0x86,0x3d,0x6c,0xa5,0x31,0x74,0x9b,0x1a,0x5a, +0x5d,0x0e,0xea,0x78,0x85,0xb5,0x8e,0xb0,0x8c,0xb4,0x91,0x32, +0xf2,0x9b,0x14,0x18,0x99,0x77,0x37,0x97,0x13,0x5e,0x9b,0x91, +0x45,0x69,0xda,0x05,0x9b,0xca,0x7a,0x5b,0xda,0x2e,0x9c,0xbd, +0xc6,0x55,0x63,0x05,0x9b,0x94,0x15,0x9f,0x1d,0x9b,0x63,0x99, +0xc2,0xbb,0x2c,0xd0,0x5e,0x85,0x8c,0x22,0xc7,0x82,0xaf,0xcb, +0xa8,0xc8,0x29,0x29,0x28,0xb1,0x2b,0x77,0xae,0xd9,0xae,0xeb, +0x3c,0xcf,0x73,0x62,0x70,0xaa,0x9c,0x87,0xe1,0x19,0xbf,0x97, +0x3e,0x68,0xbc,0x65,0xfd,0xc4,0xed,0x57,0x3f,0xae,0x7f,0x18, +0x38,0x91,0x84,0xf6,0xd8,0xee,0x68,0x89,0xf6,0x1f,0x30,0x88, +0x94,0x85,0xd0,0x8c,0xe6,0x0e,0x33,0x48,0x26,0x75,0x92,0x18, +0xc3,0xc6,0x44,0x3e,0xbc,0x3b,0x40,0x72,0x12,0xc1,0x74,0x39, +0x89,0x8b,0x57,0x83,0xd3,0x8c,0xb7,0xb9,0x8d,0xb5,0xa1,0xb3, +0xc5,0x39,0x87,0x2a,0x37,0x8a,0x71,0x6f,0xcd,0xbc,0xc8,0xe6, +0xcc,0xad,0xf9,0xc6,0x65,0xdd,0x8d,0x0d,0xdd,0x85,0xd2,0x60, +0x9e,0xb0,0xa7,0xce,0x9e,0x2c,0x3a,0x51,0xcc,0xc1,0xbf,0x5a, +0x28,0x1a,0x1e,0x3f,0x7b,0xac,0xe8,0x6b,0xfa,0x3f,0x8f,0x9a, +0x45,0x7f,0xe6,0x5c,0x7b,0xce,0x85,0xc4,0x16,0x50,0x3f,0x01, +0xd3,0xe2,0x40,0x2d,0xcb,0xb7,0x99,0xc7,0xc1,0x81,0x38,0x2d, +0x0c,0x17,0x1e,0xde,0xbb,0xd5,0x67,0xe3,0x76,0x8b,0xb5,0x57, +0x1c,0xde,0x87,0xc2,0x5f,0xfd,0x41,0x15,0x7d,0x8c,0x66,0x62, +0x97,0x53,0x7d,0xea,0xe6,0xd5,0xf3,0xe7,0x7c,0xd4,0x02,0x2c, +0x60,0x38,0x73,0x74,0xfb,0x91,0x1d,0x47,0x3c,0x39,0x64,0xcd, +0x61,0x08,0x13,0x84,0x9b,0xcc,0x70,0xc4,0x02,0x1c,0x5c,0x66, +0xc7,0x5f,0xbd,0xdb,0xf0,0xa8,0xf0,0xf7,0x42,0xab,0x2a,0xfb, +0x46,0x17,0x23,0xd7,0x4d,0xde,0xeb,0x02,0x33,0xcd,0xf9,0xbb, +0x59,0xb7,0xcf,0x5d,0xa9,0xbb,0x64,0x7f,0xd3,0xfd,0x5b,0x8a, +0xd2,0x5c,0x5f,0x07,0xc9,0xb7,0x2f,0x32,0x4e,0xb7,0x68,0xc8, +0xe6,0x77,0x35,0xb9,0x77,0x7a,0xd5,0x70,0xf8,0x05,0x7e,0x49, +0x22,0xab,0x82,0x9b,0x77,0x9f,0x33,0x0f,0xe1,0x53,0x5d,0x92, +0xad,0x62,0x1c,0x38,0x2c,0x12,0xcf,0x10,0xa7,0x77,0x1d,0xaf, +0xff,0x4c,0x19,0xcf,0xb3,0x0a,0x5a,0x98,0x0d,0x50,0xc6,0x8f, +0x06,0xda,0x83,0x9c,0xe1,0x73,0xea,0xa0,0x71,0x7f,0x53,0xc6, +0x7d,0xff,0x2f,0x94,0xb1,0xcf,0x6b,0x0d,0xf1,0x36,0x73,0xb2, +0xb3,0x76,0x35,0x2f,0xb7,0xab,0x75,0x93,0xa6,0x31,0xed,0xfa, +0x42,0xc8,0x73,0xa3,0x39,0xb8,0x53,0x2e,0x24,0xb4,0xb3,0xfd, +0x07,0x1e,0x90,0xff,0xdd,0xae,0x8b,0x66,0xfe,0x77,0x4b,0x4f, +0xc8,0xa6,0xfc,0x3d,0xbd,0x32,0xbd,0x29,0xb1,0x5e,0x91,0xc2, +0xef,0xb5,0xd8,0x65,0xe6,0x63,0xce,0xe1,0x65,0x9c,0xd5,0xf9, +0xb3,0xb0,0x68,0x56,0x27,0xcc,0x62,0xf0,0xa7,0x7c,0x12,0x52, +0xb3,0xbb,0x26,0xe8,0x9c,0xf9,0x2e,0x3e,0xc3,0x25,0xc5,0x29, +0x9e,0xca,0xd6,0x8d,0x94,0x08,0xfe,0xc7,0x26,0x1e,0xf3,0x77, +0x13,0x6f,0x64,0x0a,0x68,0xe4,0x3f,0x53,0x51,0x86,0x50,0xab, +0x70,0x4a,0x99,0x04,0x4d,0xe1,0x23,0x32,0x05,0x15,0xf8,0x5b, +0x97,0xa4,0x11,0xfc,0xb3,0x1b,0xfe,0x84,0x69,0xe8,0x87,0x83, +0xd8,0x24,0x13,0xb5,0x1f,0x98,0x9a,0xd4,0x94,0x5a,0x69,0xb5, +0x9d,0xf3,0x6f,0xac,0x38,0x02,0x3b,0xfe,0xcb,0xd6,0x1f,0x1c, +0x7f,0x37,0x89,0xf1,0x6c,0x60,0x12,0x43,0x21,0xb5,0x84,0xa4, +0xa9,0x6c,0x6b,0xed,0x49,0x03,0x93,0x18,0xdd,0xaa,0x9c,0x61, +0x2d,0xc6,0x12,0x4a,0xba,0x4c,0xc0,0x19,0x1e,0x89,0xce,0xf8, +0x88,0x52,0x50,0x13,0xdc,0x2b,0x87,0x2f,0x99,0x28,0x1c,0xa6, +0x58,0x8b,0xc3,0x0d,0xf3,0xcc,0x79,0xf8,0xf2,0x56,0xc7,0xcf, +0xd1,0x30,0x96,0x7b,0x83,0xe6,0xcc,0xa6,0xcc,0xa0,0xcb,0x1a, +0xdf,0x30,0x55,0xc9,0xd2,0xd6,0xfd,0x1c,0x6b,0x41,0x6b,0x99, +0x49,0x6b,0x59,0x8f,0x48,0xe9,0x8c,0x29,0x19,0x2c,0x67,0xe7, +0x09,0x9b,0x09,0xbe,0xfe,0x11,0x5e,0x33,0x38,0x61,0xe8,0x6c, +0x7c,0xfd,0x82,0x9d,0x25,0x66,0x10,0x15,0x3f,0xfc,0x9f,0x33, +0x22,0x27,0xe4,0xcf,0xff,0xc7,0x8c,0x08,0xe5,0x54,0x52,0x03, +0x6d,0xb4,0xc4,0x29,0x7f,0xce,0xe7,0x5a,0x84,0xb1,0x24,0xcf, +0xbd,0xc8,0x2c,0x6d,0x5b,0x4d,0x01,0xbf,0xbb,0xd4,0xbd,0x6d, +0x27,0x75,0xfb,0x7a,0x5c,0x44,0x8a,0xcb,0x8a,0xdb,0xd2,0x2b, +0x6d,0x72,0xf8,0x60,0xe7,0x1d,0x16,0x1e,0xae,0x9c,0xb8,0x84, +0xe2,0x57,0x72,0x7b,0xc2,0xfb,0xc9,0x93,0x81,0x5a,0xed,0xe0, +0xff,0x9c,0x3c,0xd9,0xa9,0x6a,0x1d,0xbd,0xe5,0xfb,0xd6,0x91, +0x93,0x15,0x27,0x2a,0x8e,0x57,0x70,0xa2,0x23,0x73,0xd8,0xf9, +0x10,0xfd,0xcb,0xad,0xb1,0x63,0x4c,0x2f,0x78,0x5c,0xd8,0x73, +0x81,0xf2,0xfc,0x20,0x5d,0x17,0xed,0x85,0x6b,0x28,0xcf,0x7f, +0xd2,0xdb,0xf4,0x38,0xfe,0x09,0x75,0x8e,0x33,0xab,0x4a,0x0c, +0xbe,0x91,0xea,0xce,0x43,0x27,0x0e,0x9d,0x38,0x7c,0x82,0xbb, +0xc2,0x1c,0x74,0x3c,0xe8,0x18,0xe5,0xc8,0x09,0x0e,0xcc,0xa9, +0xaa,0x53,0x55,0x27,0xab,0xb8,0x8b,0xf5,0x0c,0x5e,0xfc,0x96, +0x1c,0xf1,0x3d,0xec,0x77,0xd8,0x97,0xc3,0xe9,0xcc,0xf1,0x9c, +0x63,0xd9,0xc7,0x72,0x38,0x50,0xe8,0x90,0xf7,0x97,0x73,0x99, +0x23,0xbe,0x47,0x54,0x6f,0xbb,0xd9,0x91,0x88,0x15,0x6a,0x38, +0x83,0x39,0x91,0x7b,0x22,0xef,0x78,0x2e,0x07,0x26,0x2b,0xc8, +0xfb,0xcb,0xb9,0xcc,0xe1,0x9d,0x87,0x7c,0x0e,0xed,0xe4,0x44, +0x17,0xd1,0x9b,0x6c,0x0b,0x77,0x8a,0x70,0x8c,0x90,0xc0,0xec, +0xe3,0x36,0xfc,0x18,0x86,0x3f,0x6a,0xc5,0x9d,0x66,0x77,0xa9, +0xd2,0xc6,0x2b,0x60,0x3c,0x05,0x33,0x2b,0x0a,0x66,0xd6,0x12, +0x98,0xfd,0x99,0x02,0x9f,0xe5,0x7d,0x97,0xcb,0x35,0x09,0xab, +0x88,0xf8,0xa9,0xe0,0x2d,0x7c,0xca,0x2a,0xf0,0x03,0x22,0x0e, +0xbe,0x2c,0x0c,0x66,0xfa,0xd3,0x71,0x98,0x84,0x40,0x2b,0x62, +0x8d,0x54,0x08,0x34,0x90,0xa6,0xdc,0x70,0xf3,0x7b,0xac,0x8a, +0xe1,0x0f,0x18,0xaa,0xb0,0x4a,0xb8,0xf0,0x23,0xfd,0xcc,0x15, +0xfa,0x19,0x71,0x30,0xfd,0xb8,0x30,0x78,0x93,0x38,0x98,0x81, +0xb0,0x89,0xe4,0x62,0xd0,0x8f,0xae,0xd7,0xdc,0x73,0x6b,0x79, +0xfd,0xc2,0x39,0x15,0x5b,0x52,0x39,0xfc,0x27,0x6a,0x90,0x6f, +0x33,0x9e,0x55,0xb6,0x96,0x6e,0x2f,0xe5,0xad,0x3c,0x16,0x6f, +0x5b,0xb3,0x4b,0x5a,0x74,0xd1,0x77,0x86,0xe0,0x81,0x5e,0xa3, +0xb5,0x78,0x0c,0xc3,0x18,0x6c,0xdc,0x87,0x13,0x2d,0x71,0xa2, +0x46,0xeb,0xb6,0x16,0x98,0x9d,0x08,0x33,0xbf,0x86,0xea,0xb1, +0xe0,0xb3,0x05,0xd7,0xdb,0xc1,0x7a,0x13,0xdc,0x28,0xae,0x6c, +0x86,0xb9,0xf0,0x39,0x6a,0xb6,0x82,0x26,0x68,0xcc,0x5d,0xc4, +0x24,0xd8,0xa8,0xf5,0x30,0x95,0x89,0xf1,0x55,0x9a,0xf0,0x06, +0x4d,0x3b,0xc1,0x00,0x86,0x9c,0xab,0x75,0xfb,0x03,0x0d,0x3a, +0xc1,0x97,0xed,0xf7,0xba,0x4d,0x73,0x40,0xcd,0xfb,0x1c,0xe0, +0xf8,0x77,0x0e,0x58,0x3c,0x90,0x03,0x1a,0x54,0x39,0xa0,0x0c, +0xc7,0x11,0x7b,0x58,0x6f,0x88,0x3e,0xb0,0x0c,0x7c,0x4c,0x58, +0x30,0x9a,0x44,0x50,0xfd,0x3c,0x65,0x29,0x34,0x77,0xc6,0x13, +0x18,0xd6,0x8e,0xc3,0x60,0xd8,0x83,0x56,0xf4,0x54,0x65,0x85, +0xb1,0x72,0x18,0x4b,0xd3,0xbf,0x75,0x84,0x55,0xa4,0xcd,0x7e, +0xaa,0xc8,0x17,0xc9,0xc0,0xe6,0xde,0xc8,0xa2,0x75,0x9a,0xcf, +0x7e,0xcf,0xfd,0x1e,0x07,0x38,0x21,0x54,0xe0,0xc9,0x65,0x50, +0xdf,0xc2,0x8a,0x4d,0xd8,0x43,0xe2,0x95,0xef,0x35,0x46,0xd1, +0x9d,0x16,0x67,0xe8,0x06,0x33,0x49,0xa6,0x69,0xc6,0xca,0x58, +0xc3,0x86,0x44,0x5a,0xc6,0xf9,0x3f,0x0a,0xa4,0xe8,0xde,0xa3, +0x4d,0xf0,0xf3,0x4b,0xf0,0x39,0x03,0xb2,0xad,0x04,0x35,0x2e, +0x81,0x06,0x83,0xbd,0x38,0x98,0xc0,0xe7,0x9b,0x90,0xbe,0xb8, +0xf9,0x2a,0x01,0x8d,0x4d,0xa8,0x41,0xcb,0x19,0xed,0x81,0x75, +0x4d,0x3b,0xa4,0x75,0x4d,0x2b,0xfe,0x5e,0xd7,0xb4,0xea,0x34, +0x7c,0xf9,0xf7,0xba,0xa6,0x9d,0x4d,0x6e,0xef,0xd7,0x35,0x05, +0x5c,0x82,0xf8,0x46,0x8c,0xbf,0xa9,0xd0,0xc3,0x23,0x56,0x70, +0x64,0x2b,0x23,0xce,0x84,0x49,0x24,0x76,0x49,0xe3,0xa6,0x47, +0xda,0x85,0xd2,0x14,0x95,0xed,0x0d,0x55,0x6b,0x24,0x48,0xd7, +0x51,0x7b,0x9e,0xa4,0x97,0xa7,0xd2,0x14,0xd5,0x13,0x4e,0x58, +0x80,0x89,0x04,0x97,0xdc,0x84,0x25,0x0c,0x04,0xbc,0x5f,0xec, +0x24,0xee,0xa6,0xc1,0xff,0x9e,0xe5,0x34,0x0f,0x30,0xa3,0x0f, +0x29,0x33,0xda,0x45,0x99,0xd1,0x87,0x03,0xcc,0xe8,0x02,0x4b, +0x99,0x51,0xa4,0xa5,0xe4,0x63,0x30,0x94,0xd6,0xef,0xf9,0x0f, +0x72,0xb9,0x97,0x82,0x39,0x81,0x25,0xda,0x48,0xbf,0xca,0xe3, +0xfd,0xd2,0x28,0x98,0x8b,0x83,0x88,0xe5,0x21,0x8b,0x81,0x25, +0x51,0xf3,0x59,0x8f,0xbf,0x96,0x44,0xe5,0x46,0x52,0x94,0xce, +0x5c,0x19,0x6b,0x2c,0xf9,0x5e,0x97,0xff,0x43,0x7f,0x15,0x45, +0xda,0x4c,0x12,0x95,0xb1,0x5d,0x03,0x14,0xc9,0x28,0x42,0xe5, +0x7b,0xc1,0xbb,0x89,0xeb,0xdf,0x6b,0xa5,0xea,0xb7,0x95,0xbb, +0x72,0xb7,0x2f,0x90,0x32,0xab,0x4a,0x9d,0x5c,0xfd,0xfa,0x7c, +0x7e,0x67,0xa7,0xfd,0xf7,0x2e,0x0d,0x9c,0xb8,0x49,0xb5,0x3e, +0xaa,0xf0,0x4e,0xf2,0x55,0xab,0x04,0x7e,0x9f,0xa1,0xd7,0x5a, +0x67,0x33,0x0e,0x92,0x0e,0x12,0xb7,0x81,0xf5,0x51,0x72,0x69, +0x7d,0x54,0x8a,0xb4,0x74,0x48,0xf3,0x7f,0xaf,0x8f,0x9a,0x23, +0xb4,0x10,0x18,0xf7,0xed,0xb3,0xbb,0x39,0xcf,0x69,0x58,0x67, +0xcd,0xff,0x5d,0x07,0xc6,0x4b,0x8f,0x41,0xe0,0xb8,0x6f,0xe6, +0xdf,0x70,0xfd,0x8e,0xdb,0xc8,0xb8,0x6b,0x69,0x69,0xe1,0x84, +0x35,0x1c,0x05,0x28,0x63,0x72,0x46,0xfb,0x9c,0xe1,0xcd,0x35, +0xc5,0xcd,0xfc,0x96,0x2b,0x6e,0x97,0x77,0x5f,0x1e,0x98,0xf7, +0xd3,0x56,0xcd,0xfb,0xfd,0xd4,0xdb,0xf6,0x28,0xe1,0x07,0x0e, +0xca,0xa9,0x1c,0x0a,0xb8,0xd6,0xc6,0x8a,0x26,0x62,0x0a,0x71, +0x0e,0xb3,0x8f,0xb0,0x53,0x35,0xc3,0x55,0xb3,0x7e,0x92,0x26, +0x77,0x2b,0x1e,0x50,0x4d,0xaa,0x66,0xfd,0x2e,0x48,0xb3,0x7e, +0xfb,0x07,0x66,0xfd,0xd8,0x64,0x18,0x93,0xff,0x28,0x8f,0x83, +0x68,0xf0,0x21,0xb0,0x1b,0xdd,0x71,0x37,0x0b,0x69,0xb0,0x9b, +0xe0,0x6e,0xf0,0x85,0xdd,0x2c,0xde,0xb3,0x21,0x38,0x0e,0x07, +0xc1,0x38,0x16,0x52,0xa8,0x43,0xc3,0x38,0xf8,0x10,0xc7,0xb1, +0x62,0x01,0xae,0x1e,0x68,0x2b,0xb6,0x0f,0x4c,0x13,0xca,0x07, +0xa6,0x09,0x07,0xe0,0x3f,0xd6,0xb8,0x29,0x51,0x6a,0x2b,0x3e, +0x0c,0xa0,0x79,0xd0,0x00,0x8f,0x90,0x83,0xc7,0xd5,0x92,0x8a, +0x4e,0x94,0xd4,0xa9,0x17,0xc8,0xdc,0x58,0x9d,0x20,0x2b,0x1d, +0x7d,0x8d,0x65,0x0f,0xc3,0x63,0xa3,0x8e,0x86,0x45,0x8e,0x0d, +0x8f,0x3c,0x44,0xdf,0x2d,0x39,0x49,0xdf,0xcd,0xa7,0xef,0x2e, +0xdd,0x61,0x32,0x7b,0x83,0x46,0xa1,0x75,0x6b,0x65,0x59,0x65, +0x56,0xf9,0xd8,0x93,0xd1,0x27,0xbe,0x3e,0x1d,0x05,0x23,0xf1, +0x13,0xbe,0xb3,0xbc,0xa2,0x2a,0xab,0xfc,0x24,0x2d,0xb5,0xa3, +0x0f,0x00,0x83,0x23,0xf8,0x73,0x55,0x74,0x5c,0x4c,0x64,0xec, +0x01,0xe9,0x68,0xe0,0x11,0x42,0x8a,0xf0,0x27,0x39,0x19,0x73, +0xf2,0xe8,0x89,0x03,0x4f,0xe9,0x9b,0x25,0x85,0x39,0xce,0xf7, +0x2e,0x17,0x54,0x1c,0xbb,0x32,0x36,0x9a,0x39,0xb9,0xa9,0xc2, +0xf9,0xfe,0xe6,0xfc,0x3a,0x7e,0x76,0x8f,0x53,0xe3,0x63,0xf5, +0x5f,0x2d,0x27,0xb3,0xcb,0xbd,0xad,0x16,0x6f,0xd0,0x58,0x06, +0xcc,0xfe,0xb8,0xfd,0xd2,0x16,0xfb,0xe1,0xd2,0x4e,0x12,0xf1, +0x65,0x27,0xeb,0x2e,0xa9,0xd7,0x58,0x3a,0xb2,0xc8,0xee,0xde, +0x32,0x7d,0xae,0x46,0x89,0x53,0x53,0xdd,0xb9,0xfa,0xa4,0xf2, +0xb1,0xd8,0x08,0x6b,0xc9,0x99,0x55,0xc5,0x06,0xb7,0x24,0xfc, +0xdd,0x7a,0xd5,0xfd,0xca,0xee,0xab,0x2a,0x8c,0x7e,0x47,0xfc, +0x1e,0x53,0xe2,0x47,0x31,0xba,0x4f,0x2b,0x89,0x44,0xd9,0x46, +0x38,0xec,0x73,0xaa,0x0d,0xe3,0x93,0x6a,0x63,0xea,0x4f,0xd5, +0x72,0xf8,0xe0,0x04,0x39,0x60,0x1b,0xea,0xb8,0xc7,0xb9,0x3a, +0x94,0x4f,0xa9,0x8a,0xab,0x3f,0x53,0xcf,0x55,0x9f,0x20,0x87, +0x6c,0x22,0x6d,0x76,0xdb,0xd7,0x86,0xf3,0x49,0xf5,0xb1,0xcd, +0xc7,0xeb,0x39,0x7c,0x78,0x9c,0x1c,0xb6,0xda,0x6f,0xb3,0xd7, +0x9e,0x7e,0x34,0xb9,0xf6,0x74,0xdb,0xf1,0x06,0x0e,0x3d,0x44, +0x19,0xf9,0x9b,0x3e,0x7a,0x9b,0xdd,0xa1,0x40,0x31,0x4e,0x0e, +0xe3,0xf0,0x0a,0x63,0x45,0x81,0xc2,0xfa,0x1d,0x7d,0xfc,0x34, +0xef,0x5e,0x2e,0x2d,0x11,0x55,0x8c,0x33,0x82,0xeb,0x5b,0x2f, +0xcc,0xa6,0x1c,0x1b,0xa7,0xb4,0x3f,0x17,0x96,0xce,0x69,0x67, +0xe2,0xa7,0x93,0x26,0x3c,0xf3,0x46,0x36,0x11,0x0f,0x59,0x42, +0x10,0xeb,0xb5,0x76,0x8d,0x01,0x4e,0x36,0x90,0x98,0xf0,0x84, +0x4b,0x77,0xae,0x24,0x3e,0xe1,0x4e,0xe1,0x29,0x25,0x9c,0x3a, +0xc5,0x24,0xce,0x7f,0x60,0x0a,0x53,0x36,0x64,0xb7,0xf3,0x38, +0xe9,0xe2,0xf2,0x2e,0x8f,0x1b,0x5c,0xff,0xf8,0x1e,0x8a,0xd7, +0x12,0xa6,0xfc,0x1b,0x5e,0xbb,0xfe,0x07,0xbc,0x1e,0x01,0x5e, +0x34,0xcb,0x9f,0xd6,0x29,0x30,0xb9,0xb1,0x9a,0x46,0xbf,0xf1, +0x65,0xcf,0xf3,0xbb,0xaf,0xa8,0x9a,0x55,0x6e,0x5a,0xcb,0xd7, +0x52,0x05,0x7d,0xdf,0x5b,0x2f,0x35,0xab,0xfa,0xbe,0x46,0x0f, +0xe2,0xa8,0x54,0x5c,0x70,0xaa,0x70,0xf6,0xe4,0x73,0xfd,0x0a, +0xb7,0x17,0xb8,0x73,0x68,0x0f,0x63,0xa1,0xb0,0x4d,0xfc,0x55, +0x01,0x19,0x38,0x16,0x75,0x99,0xbc,0xe2,0xac,0x73,0x49,0x85, +0x36,0x69,0xbc,0x97,0xcc,0xd6,0x48,0x66,0x5f,0xe4,0xc0,0x9f, +0x38,0x7e,0xfc,0xf8,0x89,0x13,0x9c,0x28,0xb6,0xf5,0x7d,0x02, +0x46,0xe2,0x3f,0x5b,0x84,0x7f,0x82,0x42,0xec,0x9e,0xce,0x26, +0xc8,0xd5,0xee,0x30,0x0d,0x09,0xa9,0x8d,0x9a,0x42,0x0d,0x7b, +0xfc,0xe0,0xf1,0x43,0xc7,0x0f,0x71,0xe2,0x3f,0xf7,0x90,0x56, +0x74,0x35,0xbb,0x45,0xf3,0xd3,0x28,0x05,0x8c,0xc2,0xeb,0xac, +0x6d,0x84,0x4d,0xa4,0x9d,0xa4,0xad,0x57,0x29,0xf0,0x51,0xfe, +0x37,0xd9,0xb4,0x22,0xd9,0x1e,0xb1,0x2d,0xc2,0x85,0x06,0x49, +0x07,0x0c,0x6d,0xc3,0xa1,0x30,0x9c,0x85,0x03,0x78,0x86,0x64, +0x64,0x67,0x9c,0x4d,0x2b,0x4c,0xdc,0x95,0x10,0x14,0x1f,0x54, +0x70,0x96,0x0f,0xc9,0xdc,0x93,0xb5,0x3b,0x2b,0xa3,0x3c,0xa5, +0x32,0xae,0xc4,0x25,0x99,0x8f,0xf0,0x0a,0xd9,0xb1,0xc7,0x63, +0x77,0xc6,0xee,0xf4,0x3d,0x29,0xde,0x9e,0x7c,0xea,0xae,0x34, +0xff,0x74,0xdf,0x40,0x77,0xff,0x1d,0xfe,0x7e,0x1c,0xe4,0x78, +0x48,0x9f,0x2e,0x48,0x2b,0x4a,0x0a,0x4a,0x0c,0x8a,0xdb,0x95, +0x7f,0x96,0x0f,0x4d,0xdf,0x93,0x15,0x9c,0x9d,0x51,0x91,0x5a, +0x19,0x5b,0xb2,0x8d,0x7e,0xda,0x73,0xdf,0x8e,0x3d,0x3b,0x76, +0x65,0xed,0xca,0xd8,0x93,0xe2,0xe3,0x45,0x3f,0x9d,0xe1,0x9b, +0xbe,0x33,0xc8,0xdd,0xdf,0x83,0x7e,0xba,0x9f,0xdb,0xf7,0x7f, +0x36,0xe1,0x6c,0x71,0x2b,0x89,0xeb,0x88,0xed,0x3e,0xd5,0x61, +0x77,0x86,0xe2,0xbc,0xaa,0x09,0x07,0xbd,0x94,0xc5,0x47,0x78, +0xed,0xdb,0xb1,0xfb,0xdd,0x38,0xa4,0x6f,0x0a,0x4a,0xf3,0x4f, +0xf3,0x0b,0x74,0xf3,0xdf,0xe1,0xe7,0x5b,0xe8,0xc9,0x67,0x66, +0x67,0x16,0xa6,0x17,0x25,0x05,0x26,0x06,0x26,0x04,0xe6,0xa9, +0x64,0xc8,0x0e,0xce,0xa1,0x32,0x54,0xc4,0x95,0x70,0x10,0x86, +0x46,0x24,0x34,0x83,0x4a,0xa5,0x1a,0x57,0xdc,0xc0,0xb8,0xf6, +0xee,0xd8,0xbd,0x3d,0x38,0x2b,0x38,0x73,0x6f,0xb2,0xb7,0x17, +0x9f,0xb2,0x2b,0x9d,0x8e,0x2b,0x50,0x35,0xae,0x42,0x0f,0x5e, +0xd2,0x48,0x7a,0x61,0x62,0x10,0xd5,0x08,0xcd,0xac,0x0f,0xfb, +0x6a,0xc8,0x3f,0x07,0x77,0x0b,0x57,0x41,0x09,0xdd,0xec,0x13, +0xec,0x26,0xd0,0x2b,0x1e,0xc3,0x71,0x8c,0xd4,0x61,0xfb,0x88, +0xa9,0x4d,0x49,0xab,0xd7,0xec,0xab,0x10,0x3f,0x61,0xc5,0x71, +0xf8,0x39,0xb9,0x03,0x87,0xb5,0x59,0x70,0x1c,0x7d,0x07,0x12, +0xb4,0xd9,0x7e,0x2b,0x24,0xe4,0x1e,0x1c,0x5e,0x25,0xbd,0x72, +0x0f,0x12,0x56,0xb1,0x62,0x07,0xa6,0x53,0x78,0x09,0xd6,0xd5, +0xdf,0xa8,0x51,0xe7,0x5a,0xd5,0x90,0xdd,0x1a,0x7f,0x75,0x2c, +0x9c,0x9f,0x86,0x93,0x99,0x18,0x6b,0x35,0xe0,0x99,0xd2,0xb4, +0xe4,0x32,0x4d,0x61,0x82,0x38,0x9b,0x85,0x3f,0xe8,0x87,0xb1, +0xf1,0x3b,0x68,0x64,0xb0,0x0d,0x5d,0xc9,0xf1,0xec,0xaf,0xf3, +0xbe,0xce,0xa7,0xcc,0x5d,0x5a,0xfb,0xf1,0x85,0xf0,0x94,0x54, +0x64,0x94,0xe5,0x95,0x14,0x9e,0x75,0xae,0x74,0x6d,0xda,0xbe, +0xc6,0x69,0x81,0xc7,0xf4,0xa0,0x14,0x2b,0x5a,0x80,0x66,0xbe, +0x2e,0x7d,0xd0,0xd4,0xeb,0xf8,0xd8,0xfd,0x17,0xdf,0xf4,0x26, +0x7e,0x61,0xa6,0x6e,0xfe,0xd6,0xe2,0xf3,0xb5,0x0d,0xad,0x85, +0xe7,0x39,0x65,0x23,0xfe,0xcc,0xc4,0xa7,0xc5,0xa6,0x9d,0x4e, +0x97,0xc5,0xf1,0xdb,0xb5,0x74,0xb5,0x17,0x5a,0x71,0x13,0x70, +0x0e,0xa9,0xbc,0xd9,0x0c,0x43,0x33,0x1e,0x71,0xf5,0x58,0xf7, +0xcf,0xc1,0x17,0xfb,0x2e,0x50,0x2a,0xb9,0x67,0xad,0x39,0x0e, +0xb1,0x5e,0xca,0xf5,0xe8,0x55,0xaf,0xd6,0x51,0x37,0xd9,0xeb, +0x21,0xd3,0xb0,0x61,0x62,0x37,0xab,0xb5,0x31,0xbd,0x35,0xf5, +0x7f,0xfc,0x68,0xfb,0x9d,0xd1,0x05,0x4d,0xa1,0x11,0x22,0x88, +0xa7,0xb5,0xbd,0x83,0x62,0x9b,0xac,0xc4,0xae,0xd2,0xbd,0xe6, +0xd8,0xf1,0xe3,0xc7,0x8e,0x1d,0xa7,0x63,0xc4,0x72,0x82,0x4f, +0x2d,0xe1,0x29,0x73,0x03,0x2b,0x48,0x1b,0x7a,0x3c,0x82,0x48, +0xca,0xca,0xa5,0x5d,0xb5,0x08,0x7b,0x3a,0xe5,0x74,0xea,0xa9, +0x54,0x8b,0x44,0x3e,0x70,0x93,0xd3,0x46,0x23,0xcb,0x32,0x67, +0xbe,0x30,0x3f,0xbf,0x28,0xb3,0x94,0x83,0x45,0x4b,0xd0,0x42, +0x01,0x16,0x4b,0xb0,0x41,0x26,0xbc,0x51,0xe2,0xe9,0x47,0x8c, +0xb4,0x98,0x74,0x22,0x11,0xfd,0x7b,0x84,0x85,0xd0,0x8c,0xbb, +0x99,0x33,0x99,0x67,0xb2,0xa3,0xb3,0x8d,0xce,0xf0,0x51,0xbe, +0x91,0xde,0xe1,0xb4,0xfa,0xd1,0x17,0x2b,0x04,0x5b,0x2f,0x46, +0x71,0xd4,0x60,0xbf,0xbb,0xc6,0x8e,0xc8,0x90,0x50,0x87,0x71, +0x0a,0x58,0x68,0x4a,0xeb,0xfa,0x0f,0x60,0xaa,0x0c,0xa7,0x52, +0xc0,0x1c,0x62,0x8a,0xce,0x1d,0xb5,0x70,0x9e,0x89,0x35,0x57, +0xbb,0xcb,0xf4,0xe4,0xe5,0x9d,0x8f,0xd7,0x8c,0xa9,0x39,0xde, +0xdb,0xa3,0xde,0x25,0xda,0xdd,0x14,0xfc,0x59,0xf1,0xa5,0x60, +0x4b,0xf0,0xec,0x3f,0x07,0x5f,0xa0,0x92,0xcf,0x64,0xf6,0x6e, +0xb2,0x99,0x4c,0x05,0xbf,0xb2,0xa1,0x5a,0x67,0xa3,0xba,0xf1, +0x3e,0x1f,0x85,0x86,0x03,0x13,0xb3,0x45,0xad,0x99,0xb9,0x51, +0x59,0xff,0x8f,0x87,0x0e,0xf7,0x4c,0xce,0x6b,0x56,0xdc,0x68, +0xf8,0x33,0xed,0x3e,0x27,0xf8,0x38,0x12,0x3d,0xfc,0xf3,0x26, +0x0b,0x7f,0xe2,0xc7,0x44,0x07,0xff,0xbc,0xcd,0x4a,0x03,0x1e, +0x4f,0xc4,0x23,0x37,0x84,0xf5,0xd0,0x8e,0x5f,0x33,0x31,0xaa, +0x01,0x1b,0xd2,0x01,0xfb,0x45,0x78,0x87,0xf9,0x70,0xb8,0x55, +0xac,0x15,0xfc,0x99,0x35,0x87,0x2d,0x22,0xed,0x35,0xdc,0x0e, +0x84,0xec,0xb1,0x1f,0xb7,0x96,0x89,0x93,0xab,0xf5,0x32,0xd7, +0xf3,0x72,0xbb,0xe3,0x34,0xe3,0xbb,0x4f,0x5c,0x05,0x35,0x75, +0xd1,0xff,0x96,0x70,0x84,0x11,0x7f,0x5f,0x40,0x9e,0xda,0x7f, +0x6f,0x7a,0x41,0xa3,0xe2,0x66,0x23,0xa8,0xa5,0x3d,0xe2,0xea, +0xb0,0x70,0x60,0x98,0xb3,0xd9,0xbd,0xeb,0xac,0x70,0x88,0xed, +0x12,0xee,0x8a,0x5e,0xa5,0xce,0x6a,0x3a,0x4e,0x4f,0x33,0x0d, +0x7b,0x26,0x76,0x8b,0x5a,0x13,0xd3,0x53,0x55,0xf7,0x87,0xa6, +0xe0,0x27,0xb8,0x90,0xd5,0x22,0xf7,0x0d,0x2b,0x70,0xf8,0x09, +0xd1,0x12,0xb9,0xbb,0x2c,0x64,0x8a,0xf3,0x49,0xb2,0x47,0xba, +0x22,0xce,0xb5,0x26,0x85,0x0f,0x29,0xdf,0xd5,0x1a,0x5c,0xc0, +0x89,0xf3,0xf0,0x14,0x69,0xec,0x29,0x78,0x98,0xd0,0x6b,0x16, +0xcf,0x87,0x6c,0xf1,0xd6,0xb6,0xda,0xc2,0xc1,0x05,0x90,0x93, +0x64,0xab,0x24,0x93,0x18,0x59,0x73,0x3c,0x1f,0xae,0xdc,0xdd, +0xb1,0x87,0x82,0xf3,0xca,0x50,0x12,0xb7,0x39,0x7a,0xf5,0x31, +0x43,0xe5,0x69,0xfe,0xf0,0xd5,0xc8,0x6b,0x21,0x97,0xa5,0x3d, +0x7b,0xfb,0xb4,0x89,0xad,0xd0,0x54,0x87,0xa7,0xcf,0x43,0x21, +0x1d,0x5f,0x87,0xcc,0x14,0x13,0x6c,0x21,0xc1,0x50,0xda,0x57, +0x79,0x04,0x0d,0x9d,0xf3,0x7d,0x97,0x80,0x65,0xc3,0xd6,0x3b, +0xe1,0x10,0xe7,0x05,0x5c,0xdb,0xda,0x92,0x55,0x7a,0xea,0xc6, +0x61,0xde,0xb6,0x1a,0x3b,0x24,0xb5,0x56,0x30,0x17,0x4a,0x6b, +0x7f,0x7b,0xb2,0xed,0xbe,0xf5,0x25,0xcd,0x92,0x6f,0xaa,0x80, +0x49,0x7a,0xc8,0xd5,0xb2,0x1d,0x78,0x93,0x52,0xc9,0x30,0x43, +0x4c,0xb6,0x15,0x7e,0xaa,0xc3,0xbc,0xf3,0xe0,0x56,0xc8,0x16, +0x07,0x67,0x14,0x24,0x15,0xc4,0x16,0x8d,0xad,0xe8,0xff,0xd0, +0x5a,0xb8,0xc6,0x1e,0xd8,0x13,0x1e,0xbc,0x6f,0x37,0x77,0x92, +0x72,0xc3,0x8b,0xdf,0x35,0xf5,0x0f,0xb6,0x14,0xf6,0xe8,0xa3, +0x8b,0x0d,0xb8,0xa0,0xfa,0x0c,0x36,0x51,0x32,0x76,0x55,0x52, +0x32,0x25,0xb4,0xa3,0x9e,0xd6,0x4b,0x0c,0x72,0x37,0xa9,0x06, +0x1d,0xb0,0x40,0x5f,0xdc,0xcf,0xd2,0x0b,0x39,0x99,0x8a,0xc3, +0x5f,0xb3,0xe0,0x27,0x23,0xf9,0x81,0x85,0x9e,0x69,0x7e,0xa5, +0x67,0xf9,0xa0,0x5c,0x8f,0x02,0xaf,0x74,0x5a,0xb9,0xce,0x85, +0x16,0x72,0xdf,0xf7,0xc5,0xee,0x5f,0xf6,0x25,0xd6,0xf1,0x3a, +0x31,0x6b,0xe2,0x37,0x26,0x75,0x66,0x37,0x9f,0xad,0xa9,0xe4, +0xca,0xf1,0x5b,0x36,0x2b,0xd7,0x21,0x2d,0x32,0x42,0xfa,0x33, +0x16,0xcc,0xe0,0x15,0x8e,0xee,0x04,0x3d,0x71,0x7a,0xb5,0xf0, +0x51,0x7d,0x7f,0xa9,0x0d,0xf4,0x3b,0x88,0x63,0x51,0xaf,0x13, +0x46,0xc3,0x03,0xb4,0x6a,0x67,0xed,0x9d,0x64,0xae,0x1b,0x7c, +0x72,0x9c,0xf8,0xaa,0xd4,0xd2,0xf4,0xc2,0x8c,0x02,0xff,0x73, +0x41,0x95,0x7b,0xd6,0xef,0x59,0x11,0xfa,0x65,0x44,0xa2,0x2d, +0x0f,0x1f,0x27,0xfc,0x96,0xf2,0x24,0x97,0x13,0x7d,0xe0,0x27, +0xe2,0x08,0xee,0x55,0x2c,0x6c,0x18,0xed,0x08,0x41,0x55,0xac, +0x38,0x9d,0x96,0x0e,0x95,0xe8,0xee,0xc4,0x0a,0x38,0xba,0x12, +0x03,0x9d,0x58,0xdc,0x6f,0x4f,0xf0,0xb4,0xa8,0xec,0x10,0xa2, +0x61,0x1c,0xb3,0xd7,0xce,0x57,0xee,0x64,0xc6,0xb5,0x6c,0x2d, +0x70,0x96,0xa9,0xbb,0x07,0x06,0x9b,0x69,0xb8,0x4a,0x7b,0x52, +0x95,0x30,0x3d,0xcd,0x45,0x3d,0x5d,0xdb,0xeb,0xec,0x3b,0x34, +0x4b,0x1a,0x8a,0x2e,0x27,0xb6,0x70,0xb0,0xc9,0x9f,0x7c,0xfd, +0xb5,0x1a,0x54,0x31,0x4e,0x3e,0xd6,0x01,0x26,0xbb,0x14,0xa9, +0x56,0x19,0xce,0xf9,0x9c,0xa0,0x2e,0x4a,0xdb,0xab,0xed,0xaa, +0x87,0x13,0x35,0x78,0xa2,0x16,0xe6,0xd6,0xe0,0x77,0xf6,0x30, +0xdc,0x0e,0xa7,0xb1,0x67,0xe2,0xcf,0x24,0x9c,0x49,0xb4,0x4f, +0xe3,0xfd,0x6d,0xdd,0x1c,0x0d,0x1c,0x0b,0xdc,0xf8,0xfc,0xd4, +0xcc,0xb4,0xb4,0x74,0x0e,0xf4,0x6d,0xd0,0xc1,0x1e,0x1c,0xcc, +0xb1,0xc2,0x56,0x78,0x53,0x8b,0x69,0xad,0x14,0x8c,0x9c,0xfb, +0xe4,0x04,0xa7,0x76,0xc2,0x54,0xf8,0x15,0x3f,0xe8,0x80,0xd9, +0xe2,0xcc,0x22,0xe1,0x93,0x9a,0xfe,0x4a,0x7b,0xf8,0xd7,0x0e, +0x51,0x1d,0x67,0x77,0xc0,0x07,0x6c,0xa7,0x2f,0x71,0x01,0xcf, +0x72,0x16,0xd6,0x8d,0x76,0x81,0x3d,0xe5,0xac,0x38,0x73,0x12, +0x29,0x47,0x4f,0x17,0xb6,0x6f,0xf0,0xe8,0x72,0xdc,0xed,0xc2, +0x42,0x03,0xa6,0x12,0x5a,0x01,0x87,0x96,0x9b,0xb8,0xa0,0x8e, +0xf4,0x63,0x0f,0x5a,0xb2,0xb0,0x07,0x86,0x53,0xc6,0x5c,0x46, +0x19,0x33,0x04,0xbb,0xbe,0xbf,0xda,0x47,0xaf,0xf4,0xca,0x40, +0x8f,0x11,0x1d,0x74,0x89,0x13,0xea,0x54,0xb2,0xc2,0xa4,0xd1, +0xaa,0xdf,0x10,0x3c,0x1a,0xf4,0x9c,0x90,0xbe,0xf3,0xad,0x0e, +0xb1,0x7f,0x3b,0xa8,0x86,0xc5,0x42,0x2c,0x21,0x89,0xc9,0xf1, +0x29,0x71,0xc9,0x2e,0xf1,0x3c,0x6c,0x84,0xb1,0xfd,0x2b,0x70, +0x2c,0x2c,0x62,0xdc,0x43,0xd3,0x77,0x25,0xee,0x8d,0xdd,0x3b, +0x16,0x4b,0x6c,0xdf,0x8e,0xae,0x63,0x50,0x07,0xe6,0x13,0x2b, +0xb1,0xb5,0x91,0x15,0x56,0xce,0x27,0x21,0x81,0xbb,0xfc,0xf7, +0x04,0x73,0xb8,0x8f,0xc9,0x8f,0x0d,0x4d,0xdb,0x9b,0xba,0x3b, +0x91,0x12,0x2e,0xa7,0x3e,0x75,0x82,0xde,0xe7,0xc1,0x1b,0x5e, +0xe2,0xb2,0x6e,0x70,0x13,0xa7,0x77,0x0b,0xc3,0x9b,0xfb,0xcf, +0x59,0x00,0x1a,0x51,0x9b,0xbb,0x75,0xc3,0x32,0xb6,0xdb,0x9a, +0xd8,0x82,0x4b,0x1d,0x0b,0x5b,0x46,0xdb,0x82,0x5f,0x9d,0x64, +0xc6,0x89,0xa4,0x9e,0xba,0x25,0x2b,0x08,0xa3,0xeb,0xd1,0xcf, +0x86,0x05,0x33,0x71,0x0b,0xe9,0x05,0xf5,0x5a,0x54,0xbf,0xac, +0xfa,0x79,0x09,0xe6,0xd6,0xe3,0x3c,0x56,0x3a,0xd4,0x2d,0x3a, +0xd3,0x2a,0x8e,0x3f,0xe0,0x1b,0xea,0x15,0xea,0xcf,0xe1,0x50, +0x26,0x36,0x33,0x26,0xe3,0x54,0xaa,0x6d,0x12,0xef,0xa7,0x67, +0xad,0x6d,0x26,0xe7,0x12,0x71,0xe8,0x25,0x18,0x5b,0x8f,0x9f, +0xd3,0x9b,0xcf,0xd0,0x9b,0xa5,0xe7,0xaf,0xfc,0x42,0x3d,0xa5, +0x9b,0x87,0x30,0xf1,0xd9,0xb1,0x59,0xa7,0x33,0x6d,0xe3,0x79, +0xcf,0x15,0xb6,0x5a,0x1b,0x0c,0x8a,0x9c,0xf8,0xb4,0xd4,0xd4, +0xcc,0xd4,0x6c,0x0e,0x7b,0xdb,0x6b,0xe1,0x56,0x03,0x4e,0xef, +0x85,0xa1,0xb5,0x38,0xf4,0x32,0x0c,0x4d,0x67,0xf3,0x5c,0x13, +0x13,0x93,0xd2,0x92,0x32,0xc6,0xe2,0x35,0xfa,0xe6,0xab,0x06, +0xb6,0xff,0x18,0xec,0x22,0x97,0x60,0xf8,0x56,0x16,0x1a,0x47, +0x5f,0x82,0x51,0x5b,0x59,0xb1,0x1c,0x87,0xd0,0xf2,0x6b,0xf8, +0x16,0xe9,0x95,0xcb,0x30,0x6a,0x8b,0xf4,0xca,0x87,0x74,0xe4, +0xc3,0xd7,0xb2,0xc2,0xaa,0x5e,0xb2,0x16,0x47,0xf5,0xb2,0x92, +0x52,0xa6,0x11,0xb4,0xe8,0x06,0x0b,0x1a,0x08,0xd3,0xba,0x28, +0x47,0x99,0xd1,0x2c,0x7c,0xd4,0xd8,0x5f,0x6a,0x05,0xa2,0x05, +0x55,0x8a,0xa2,0x0b,0xa6,0xb1,0x5d,0x4e,0x34,0x9a,0xdd,0x6a, +0xa4,0x9d,0xfd,0xec,0x21,0xb0,0x86,0x15,0x67,0xe0,0x68,0xea, +0x7a,0x6e,0xf6,0x92,0x6f,0xd7,0x60,0x00,0xfd,0xfd,0x11,0x66, +0x11,0x71,0x68,0x21,0xdc,0x04,0x63,0x34,0x64,0x4e,0x25,0x9c, +0x4c,0x38,0x1e,0x67,0x15,0xcd,0x1f,0x0e,0x8d,0xda,0xbd,0x7f, +0x2f,0x87,0x1a,0xf8,0x03,0xfc,0x8b,0x39,0xea,0x79,0x64,0xc7, +0x01,0x2f,0xce,0x2f,0x2a,0x24,0xdc,0x6e,0x9c,0x1e,0x93,0x60, +0x4b,0xa9,0x50,0x53,0x49,0x72,0x7d,0x8c,0xe6,0xe9,0xd2,0x93, +0xed,0x5f,0x77,0x73,0x28,0x96,0x48,0xa7,0x71,0x3b,0x49,0x4b, +0xda,0xa6,0xdf,0x05,0x8d,0x1a,0xd4,0xb8,0x09,0x5f,0xd4,0xe0, +0x17,0x37,0x61,0x66,0x1d,0x4e,0x62,0x12,0x72,0xe2,0x0a,0x4e, +0xe7,0x58,0xc7,0xf2,0x91,0x5e,0x21,0xee,0x7b,0x7d,0xb8,0xc9, +0x4c,0x62,0x41,0x5c,0xfe,0x99,0x1c,0x8b,0x04,0xde,0x7b,0x9e, +0x6c,0x89,0x81,0x51,0x89,0x23,0x9f,0x94,0x94,0x94,0x92,0x48, +0xeb,0xec,0xdb,0xca,0x5a,0xe8,0x65,0x23,0xc3,0xaa,0x7c,0xf3, +0x4a,0xb3,0x2f,0x9c,0xa9,0x18,0xeb,0x90,0xb0,0xdf,0x73,0x97, +0x75,0xe0,0x8e,0xb1,0xd0,0x27,0xe8,0x10,0x37,0x4c,0x3a,0xc7, +0x8a,0x8b,0xa8,0x75,0x6f,0xc2,0xc7,0x7a,0xac,0xd0,0x76,0x8d, +0x6c,0xc3,0xa4,0x52,0xe9,0x25,0x83,0x81,0x97,0xec,0x87,0x6a, +0xe1,0xc7,0x77,0xd9,0x3e,0x1d,0x3d,0x12,0x91,0xb5,0x2f,0x2b, +0x24,0xc5,0x63,0x2f,0x4f,0x19,0xca,0xce,0xe8,0x3d,0x1c,0x72, +0x97,0x49,0xbc,0x67,0x8c,0xc7,0x29,0xcf,0xaa,0x58,0xfe,0xc0, +0xd9,0xf0,0xa2,0x7d,0xf9,0x14,0xa5,0xc3,0xc9,0x19,0xd7,0xd3, +0x56,0xc7,0x5c,0xea,0xa3,0xf9,0x83,0xd5,0x07,0xaa,0xc3,0xca, +0x39,0x49,0xbd,0xf3,0x09,0x1a,0x74,0xd3,0x82,0xfc,0x15,0x6a, +0x76,0x81,0xbe,0x38,0xa3,0x41,0xf8,0xb8,0xa1,0xbf,0xcc,0x1a, +0x44,0x6b,0xaa,0x5e,0xfd,0x2e,0xd0,0x64,0xbb,0x5c,0x89,0x03, +0xb8,0x55,0x4b,0xea,0x75,0x80,0xc0,0x6a,0x49,0xbd,0x23,0x49, +0x35,0xba,0x39,0xb0,0x82,0x38,0xba,0x1a,0x03,0x1d,0x58,0x1c, +0x24,0xca,0x49,0x05,0x7e,0xae,0x84,0x51,0x15,0xd2,0xe6,0x13, +0x93,0xaa,0xf0,0x0b,0x36,0x3e,0x2d,0x2e,0x2b,0x3a,0xdd,0x36, +0x8e,0x8f,0xf4,0x0b,0xf1,0xda,0x17,0xc8,0xcd,0x63,0x32,0xcf, +0xa6,0x16,0x27,0x15,0x73,0xb0,0x6e,0x63,0x33,0x7c,0x80,0xae, +0xcc,0xa9,0xa4,0x53,0x49,0x27,0x92,0x6c,0x62,0xf8,0x83,0xbb, +0x0e,0xec,0x3a,0xb0,0x9b,0xc3,0xf9,0xf8,0x41,0xcb,0xb5,0x47, +0x8c,0x8b,0x96,0xa9,0xbe,0xae,0x49,0x8e,0x33,0x9f,0x9e,0x94, +0x9e,0x9c,0x4a,0x75,0x55,0xdc,0x58,0x04,0x1d,0xd5,0xf8,0x45, +0x37,0xf5,0x72,0x58,0x49,0x0d,0x59,0x4c,0x0d,0x69,0x88,0xc6, +0x4c,0x74,0xfc,0xc9,0xa4,0x13,0x71,0x96,0xd1,0xfc,0xa1,0x90, +0xa8,0xdd,0x91,0xd4,0x90,0xe3,0xf0,0xa9,0x64,0x48,0xf7,0x23, +0xdb,0xf6,0x53,0x43,0x1e,0x0c,0x8b,0xb4,0x1b,0xb7,0x5a,0x32, +0x64,0x2f,0xd3,0x7d,0x56,0x65,0xc8,0xb2,0x93,0x2d,0x5f,0x5f, +0xa3,0x86,0x2c,0xa5,0x86,0x9c,0x04,0xbe,0x64,0x3b,0x26,0x15, +0xb3,0x90,0xb4,0xee,0x9d,0x76,0xe7,0xe1,0x04,0xa2,0x84,0xe1, +0x32,0x16,0x87,0xcf,0x1a,0xb8,0x10,0x3a,0xd7,0x90,0xf0,0xec, +0xbd,0xd9,0x21,0xa9,0x9e,0x7b,0xf8,0xe4,0x80,0x44,0xef,0x68, +0x3a,0xd0,0x3a,0x1d,0x92,0x55,0x9e,0x73,0x39,0xa6,0xc2,0x21, +0x8e,0x8f,0x70,0xf5,0xdc,0x12,0xe8,0xc1,0x81,0x3f,0x8c,0x24, +0x09,0x3b,0x62,0x76,0x9c,0xf4,0xac,0xa2,0xe4,0xb2,0x28,0xac, +0x70,0xef,0x59,0x0e,0x3f,0x8b,0x24,0x31,0xae,0xa7,0x2d,0x8e, +0x3b,0xd5,0x9e,0xe2,0x0f,0xd5,0x46,0xd6,0x84,0x55,0x70,0xf8, +0xaf,0x5d,0xc4,0x08,0x87,0x77,0x53,0xe7,0x4e,0x17,0x6e,0x12, +0x78,0xd3,0x8a,0x6f,0x7a,0x05,0xcd,0x56,0x51,0xf3,0xde,0xd6, +0x55,0xe2,0x28,0x33,0x61,0xd4,0x5a,0x7c,0x63,0x06,0x6f,0xb4, +0xc4,0x19,0x8a,0xb7,0x23,0xda,0xc4,0x15,0x0c,0x36,0x89,0xd7, +0x08,0x78,0x0a,0x35,0x38,0x0d,0x3d,0x54,0x73,0x8f,0xe6,0x4c, +0x63,0x4a,0x52,0x8d,0xa6,0xf0,0x51,0xff,0x22,0x51,0xc1,0xd2, +0xba,0x94,0xd2,0xbe,0x30,0x69,0x9f,0x1c,0xa6,0x9b,0xd2,0x3a, +0x7a,0x71,0x92,0x32,0xa1,0x11,0x7d,0x76,0xd2,0x99,0x0f,0xee, +0x4d,0xe8,0x7e,0x17,0x42,0x9a,0x31,0xa4,0xc7,0x64,0x3d,0xee, +0xb4,0x80,0x9d,0x5a,0x68,0x6f,0x09,0xf6,0xcb,0x71,0x9f,0x85, +0x90,0xdf,0x8c,0x07,0x19,0xfc,0x16,0x3f,0x20,0x5d,0x93,0xa1, +0x00,0x86,0x75,0xe0,0x6f,0xa6,0xb0,0xb6,0xff,0x8b,0xd5,0x82, +0x87,0x5c,0xf4,0xd8,0x6a,0x2a,0x8c,0xee,0xc0,0x71,0x70,0x85, +0x85,0xc3,0xe2,0x4e,0xe9,0xa4,0x86,0x1b,0xa8,0x8b,0x9f,0xb1, +0x09,0xff,0x7e,0x52,0xc3,0x7a,0xe9,0xa4,0x06,0x03,0xa8,0x20, +0xb4,0x32,0xe6,0xe1,0x73,0x46,0x39,0x70,0x88,0x89,0xba,0xea, +0x10,0x93,0xb9,0x7d,0xd5,0x04,0xd5,0xf1,0x43,0x58,0x29,0xc7, +0x95,0xb4,0x2a,0x50,0x37,0x43,0x7d,0x41,0x1d,0xf4,0xd9,0xdb, +0xb8,0x90,0x88,0x69,0x02,0x23,0xa4,0xa1,0x11,0x9b,0x58,0x12, +0x7b,0x2e,0x86,0x3a,0x86,0x7e,0x9b,0xb8,0x5e,0x01,0x32,0x26, +0xd2,0x23,0xdc,0x6d,0xef,0x36,0x6e,0x03,0xe5,0x8e,0xbf,0x40, +0xec,0x34,0xb6,0xbf,0xb5,0x95,0x98,0x0b,0xf2,0x16,0x56,0x18, +0x34,0x99,0x4c,0xc6,0xd8,0xdf,0x59,0x31,0x9a,0x96,0xd4,0x34, +0x03,0x80,0x3d,0x8b,0x5d,0x38,0x9b,0xfc,0x0a,0xc7,0xbf,0x64, +0xc1,0x3e,0x89,0x40,0x2c,0x0e,0xc5,0x58,0x66,0xea,0x34,0xe2, +0x10,0x69,0x1d,0x69,0x11,0x99,0x51,0x9d,0xda,0x1c,0x5f,0x69, +0x96,0xce,0x87,0xd9,0xf8,0x6f,0xf0,0xb7,0x5a,0x16,0xba,0x38, +0x5c,0xfb,0x40,0x8c,0x29,0x0f,0x93,0x13,0x61,0x9d,0x74,0x2c, +0x0f,0x87,0xe9,0x35,0x64,0x6f,0xed,0xae,0xa6,0x5d,0x15,0x16, +0x7e,0x7c,0xba,0x53,0xba,0x59,0x82,0x03,0x27,0xdc,0xcb,0x20, +0x8d,0xee,0x97,0xcc,0xeb,0x2c,0xcb,0xaa,0x78,0xdb,0x7a,0xc3, +0x06,0x8b,0x52,0x0e,0x9b,0x70,0x1d,0xb9,0x5e,0xd1,0xda,0x50, +0xdb,0x66,0x57,0xc4,0x3b,0x5b,0xca,0x6d,0xf5,0xb7,0xd3,0x3a, +0xad,0x45,0x70,0x25,0x3d,0xb0,0x80,0x92,0x1f,0x16,0x33,0x61, +0xce,0x7a,0x54,0x98,0x0b,0x86,0x2d,0x6c,0x03,0x6c,0x94,0xe4, +0x1b,0x46,0xe5,0x33,0xf9,0x4b,0x3e,0xa3,0x36,0x71,0xab,0x02, +0xcc,0x98,0x08,0x8f,0x30,0x49,0x3e,0x4c,0x04,0x35,0xa2,0x8f, +0xa7,0x2f,0xb2,0x70,0x1a,0x07,0x93,0xcd,0x78,0xfa,0x0a,0x2b, +0xc8,0x71,0x01,0x15,0x3a,0x71,0x1a,0x6b,0x31,0x74,0x32,0x26, +0xfe,0xce,0xe2,0xc4,0xe5,0x04,0xfb,0x70,0x0d,0xcc,0x42,0xc5, +0x12,0x69,0x73,0xa9,0x2b,0x4c,0x63,0x52,0x46,0x9d,0x26,0x6c, +0xa2,0xc8,0x67,0x02,0x9f,0x11,0x2d,0x8c,0xba,0xcb,0x0a,0xfa, +0x7e,0x44,0xda,0x24,0x19,0x13,0x19,0x3c,0x62,0x45,0xce,0x3a, +0x15,0x58,0x66,0xda,0xd7,0x16,0xf0,0x01,0xb5,0x9e,0x75,0x3b, +0xaa,0x39,0x3c,0x72,0x84,0xf8,0x9b,0x6f,0x93,0xdb,0xba,0x94, +0xbb,0xf0,0x8d,0x35,0xd5,0x17,0x33,0xa5,0x5e,0xd6,0x06,0xd2, +0xf4,0xb7,0x8c,0x06,0x8d,0x96,0xe7,0xa4,0x63,0x29,0xfe,0x93, +0x8c,0xbf,0xf6,0x0d,0x21,0x8d,0x6c,0x76,0xe0,0xd9,0x80,0x52, +0xbf,0xfc,0x36,0x1e,0xb9,0x1e,0xc7,0x2e,0xff,0x26,0x4e,0x9f, +0x09,0x50,0x58,0x19,0xe0,0xc7,0xeb,0x73,0x15,0x7c,0x55,0x4e, +0x49,0x4e,0x7e,0x36,0x67,0xc5,0xf6,0x0d,0x15,0x9d,0xc9,0xd5, +0x5f,0xeb,0x61,0x78,0x0e,0x68,0x70,0xf5,0xe2,0x50,0xd8,0x28, +0x68,0x76,0x8a,0x56,0x58,0xc6,0xe2,0xc9,0x60,0x5c,0x6e,0x88, +0x93,0x34,0x5a,0xdc,0xae,0xc2,0x82,0x54,0x58,0xf6,0x35,0xa4, +0x8c,0x05,0x25,0x13,0x3c,0x71,0xdb,0x0c,0xc5,0x42,0xfb,0xdb, +0x3b,0x1e,0xfa,0xfc,0x28,0x0f,0xe4,0x0b,0x27,0x95,0xcf,0x6d, +0x5d,0x6a,0xb6,0x7e,0x8b,0xbe,0x96,0x59,0xa1,0x9c,0xbf,0xdb, +0x76,0xf5,0x42,0xdb,0x8d,0x86,0xcd,0x1d,0x06,0xbd,0xc6,0xc5, +0x2d,0xfc,0xda,0x36,0xd3,0x0b,0xb6,0xd7,0x39,0x31,0xbb,0x6f, +0x34,0x89,0xb3,0xcd,0x75,0xae,0x77,0xe0,0x70,0x33,0xd3,0x50, +0x95,0x5f,0x15,0x5b,0xcb,0xc1,0x02,0x31,0x93,0x40,0x15,0x5e, +0xea,0xff,0xac,0xf3,0x25,0x9c,0x52,0xe2,0xa9,0x9b,0x10,0xdd, +0x8a,0xd1,0x3d,0xac,0xea,0x0c,0x32,0xb4,0xbc,0x06,0x96,0x0c, +0x5a,0xd2,0x3c,0x03,0x96,0xeb,0xd1,0x92,0x19,0x01,0xa1,0x7d, +0xf7,0x88,0xbf,0xcc,0xdc,0x00,0x47,0xac,0xcb,0x93,0xf3,0xc0, +0xf6,0x5e,0xbe,0x94,0xf2,0x0d,0x17,0xcd,0xa4,0xac,0x6b,0x96, +0xfd,0xb6,0xae,0x80,0x0a,0x3b,0xe4,0xba,0x53,0x87,0x7f,0x33, +0x07,0x7a,0x33,0x88,0xa0,0xde,0xbf,0x1b,0x57,0x33,0x29,0xc6, +0x6a,0x94,0xc8,0xd7,0xa7,0xa4,0xd0,0xd2,0xac,0x44,0x34,0x67, +0xb1,0x05,0x37,0x10,0x30,0x6a,0x40,0x23,0x06,0x6e,0x3b,0x10, +0x39,0x28,0xdb,0x59,0xfc,0x97,0xe8,0x4b,0x9a,0x31,0xe7,0x26, +0xc4,0x43,0x35,0xf6,0xf4,0x8f,0xe9,0x78,0x05,0xe5,0x6d,0x58, +0xfe,0x2d,0x2d,0xd6,0xa0,0x9e,0xa0,0x63,0x2f,0x38,0x32,0x30, +0x55,0x4e,0xc4,0xf1,0xed,0xdf,0x80,0x2d,0xf4,0xb0,0x68,0x8b, +0x09,0x84,0xbe,0x39,0x15,0x1d,0x59,0xb1,0x11,0xac,0xe8,0xf5, +0x1a,0x74,0x64,0xa4,0x45,0x0b,0x55,0x24,0x49,0xbf,0xca,0xfe, +0xb1,0x2c,0xab,0x8d,0x5f,0xd2,0xea,0x5e,0x1b,0x54,0x43,0x55, +0x1f,0x64,0x66,0xa5,0x8f,0x1f,0xac,0xcf,0x91,0xf3,0x7f,0xf6, +0x9e,0xbf,0x9c,0x74,0x83,0x13,0x3c,0x28,0xfd,0x06,0xe3,0x53, +0x6c,0xea,0xc2,0xdb,0x86,0xf0,0xf9,0x1a,0x7a,0x33,0x0e,0xba, +0xb8,0xba,0xd5,0xb1,0x87,0x03,0xa7,0x16,0x0c,0x85,0x41,0xcc, +0xb7,0xd1,0xbd,0xb1,0xe7,0xe3,0x7d,0x1b,0x79,0x1c,0xe1,0x8b, +0xab,0xf7,0xe1,0xca,0xa3,0xb1,0x66,0xfc,0xb5,0xaf,0x6f,0x1c, +0xbf,0x7e,0x8a,0x9b,0x82,0x41,0xe6,0x60,0xcd,0x3a,0xaf,0x5d, +0x27,0x9b,0x60,0x9c,0x21,0x4d,0x80,0xdd,0xb8,0x77,0x29,0xe5, +0x47,0x2e,0x1a,0x37,0x30,0x01,0xa7,0xf6,0xba,0xed,0x72,0xf6, +0x77,0x1e,0x8b,0x4b,0xcc,0x68,0x84,0xfb,0xb9,0xf9,0x6c,0xf3, +0xda,0xde,0x1d,0xd0,0xe9,0xdf,0xe1,0x67,0xb4,0x5d,0x6f,0xe7, +0xc2,0x60,0x7a,0xff,0x6f,0x59,0x8f,0x4b,0xaf,0xd7,0x7f,0xb3, +0xfd,0x86,0xdb,0x0d,0xd7,0xb3,0xcd,0xbc,0x61,0xd1,0x86,0xa2, +0x4d,0x67,0xdb,0xea,0x2b,0xda,0x73,0x2f,0x71,0xbf,0xb5,0xe2, +0x77,0x4c,0x4a,0x71,0x72,0x71,0x7c,0x21,0x87,0x02,0xec,0x23, +0x0d,0xb8,0xc6,0x9a,0x85,0x83,0xa2,0x1b,0x55,0xd1,0xd1,0x5e, +0x08,0x85,0x0a,0xac,0xea,0xff,0xac,0xfd,0x15,0x7c,0xd5,0x86, +0x5f,0x7d,0xc3,0xc2,0x66,0xa8,0x25,0xb8,0xb9,0x07,0x36,0x33, +0xb8,0x59,0x32,0xd6,0xe6,0xb5,0xd4,0xc6,0x7d,0xea,0xf3,0x89, +0xaf,0x7c,0x9b,0xb5,0xa5,0x8b,0x65,0x86,0x75,0xaa,0x43,0x52, +0x46,0x4e,0x5a,0x7e,0x6a,0x01,0x37,0xe2,0xed,0x07,0x82,0x92, +0x74,0xc0,0x16,0xf4,0x7a,0x65,0x34,0x1d,0xed,0x71,0x8b,0xb2, +0x7f,0x54,0xd7,0x55,0x28,0xde,0xd4,0x05,0x8f,0xf0,0xd9,0xcf, +0xb4,0x34,0x13,0x51,0x30,0x24,0x09,0x56,0x79,0xce,0xf5,0x8e, +0x1c,0x1a,0x59,0x53,0x53,0x31,0x09,0xa1,0x49,0xa1,0x29,0xa1, +0x05,0x2d,0xfc,0xaa,0x76,0xd7,0xa6,0xa0,0x3a,0xaa,0x50,0x7f, +0x85,0xb9,0x3e,0x8e,0xd8,0x98,0x2b,0x79,0xc1,0x8d,0xab,0x17, +0x92,0x6f,0x71,0x70,0x66,0x12,0x11,0x06,0xcf,0x15,0x07,0x33, +0x73,0x45,0x33,0x3a,0xd2,0xa4,0x5e,0x48,0x80,0x4a,0xbc,0xd1, +0xff,0x59,0xc7,0x4b,0xc8,0x57,0x62,0xfe,0x2d,0x96,0x16,0x8e, +0xb1,0x04,0x34,0xe1,0x04,0x6a,0xb2,0xa2,0x43,0x09,0xb5,0xeb, +0x75,0x6a,0x57,0x74,0x94,0x06,0xed,0xb8,0x8e,0x9a,0xaf,0x6f, +0x2b,0xe6,0x10,0x2c,0x86,0xf9,0x50,0xcc,0x8c,0xe8,0xf3,0x05, +0x17,0x92,0xcf,0x76,0x97,0x37,0x57,0x56,0x35,0x73,0x69,0xed, +0xb0,0x12,0xb7,0x81,0x1a,0x78,0xb4,0xa3,0xc7,0xc0,0xc1,0xaa, +0x2e,0x72,0x5a,0x5e,0xa8,0xa1,0x03,0xae,0x6c,0xf2,0x82,0x72, +0x76,0xbb,0xbb,0xad,0xa7,0x95,0x0f,0x27,0xc3,0x00,0x05,0x04, +0xe0,0x0a,0x1c,0xa7,0x9a,0x96,0x57,0x63,0x6a,0xd3,0x28,0xf8, +0xc3,0x62,0xf0,0x6d,0x63,0xfb,0x17,0xc1,0x77,0x24,0xaa,0x55, +0xf5,0x44,0xe1,0x3f,0xfe,0x1f,0xe6,0xde,0x03,0xac,0x8a,0x6b, +0xeb,0x1b,0xb7,0x30,0x33,0xc7,0x86,0x31,0xc9,0xc6,0xe3,0x39, +0xc9,0x8c,0x1d,0x3b,0x56,0xb0,0x50,0xa4,0xa3,0xd2,0x7b,0xef, +0x48,0x53,0x10,0xbb,0x82,0xbd,0xe7,0x26,0x36,0x2c,0x58,0x50, +0xb0,0x17,0x8a,0x20,0xbd,0xa8,0x20,0x88,0x14,0x15,0x04,0xc4, +0xde,0x8d,0x3d,0x96,0xe4,0x66,0xcd,0x71,0x1d,0xf2,0x7d,0x7b, +0x30,0xc9,0x35,0x79,0x2f,0x89,0xc9,0xbd,0xef,0xf7,0xff,0x3f, +0x3e,0x38,0x6d,0xef,0x3d,0x6b,0xaf,0xf5,0x5b,0x6d,0x97,0x33, +0xec,0xe9,0x2d,0xc5,0xdb,0xb2,0x77,0xcc,0x28,0x92,0x8f,0x8e, +0x42,0xc5,0xbc,0x5e,0x2b,0xb7,0xb8,0xcb,0x0b,0xd6,0x17,0x6f, +0x2c,0xda,0x2c,0x1b,0x89,0x13,0x5d,0xa1,0x3f,0x17,0xed,0xe8, +0xe2,0xac,0xef,0x96,0xe2,0x23,0x7f,0x5c,0x55,0x50,0x16,0x7f, +0x99,0x4a,0xd7,0xaf,0x14,0xfa,0xb0,0x1b,0xd7,0x7f,0xb3,0x61, +0x35,0x0f,0xdd,0x50,0x33,0x2d,0x1b,0x3b,0x03,0xbb,0x74,0xdb, +0xf2,0x6f,0x96,0x2e,0xe9,0x21,0xde,0x97,0xbe,0xf4,0xf7,0xee, +0x21,0xbc,0x63,0x9b,0xe7,0xa9,0xaf,0x91,0x4a,0x48,0x84,0x77, +0xd8,0xa0,0x1e,0xcb,0xc1,0x1e,0x91,0x21,0xda,0x18,0xfa,0x8a, +0x83,0x50,0x1c,0x48,0x7a,0x62,0xe8,0x8f,0xd4,0xda,0x5b,0x88, +0x7d,0x09,0x7c,0x72,0xae,0xb1,0x6c,0xcf,0x2d,0xda,0x72,0xd4, +0x59,0x88,0xda,0xc4,0xee,0x1e,0x77,0xc3,0x09,0x3e,0xb1,0x3b, +0x50,0x28,0xa7,0xce,0xdd,0xb4,0x28,0xb8,0x42,0x06,0x21,0xc5, +0xb8,0x02,0xcc,0x9d,0xd0,0x1c,0x17,0x7b,0x80,0x3f,0x3b,0xd5, +0xce,0xc2,0x0b,0x35,0xdc,0x64,0xa2,0xbb,0xd8,0x89,0xcc,0xf6, +0x8b,0x0a,0x08,0x0f,0xc9,0x8e,0x96,0xa7,0x66,0x1c,0xcb,0xdd, +0x97,0x2b,0xc3,0x2a,0x6d,0x12,0x93,0x1b,0x95,0x13,0x79,0x22, +0x40,0xfa,0x8e,0xc2,0xd1,0x80,0xfd,0x54,0xdf,0xc7,0x61,0x08, +0x85,0x10,0xf7,0x0c,0xb8,0x22,0xe4,0x9e,0x42,0xb7,0x62,0xbc, +0xab,0x8e,0x83,0x6c,0x0e,0xbb,0xae,0x1b,0xbb,0xc2,0x89,0x77, +0x58,0xb9,0x78,0xa9,0x87,0xd2,0x96,0xdd,0xe9,0xce,0x94,0xb1, +0xf5,0xfb,0x0e,0xde,0xd8,0x26,0x6c,0x69,0x58,0xff,0x1a,0x86, +0x28,0xb0,0xfb,0x1b,0x16,0x87,0xd1,0xe4,0xec,0xe9,0xdb,0xa1, +0x5c,0x5f,0xec,0x4b,0x9e,0xbd,0x1d,0x42,0x8f,0x83,0xc8,0x9b, +0xb7,0xd4,0x7d,0x34,0x45,0x91,0xcd,0x49,0x9b,0xf7,0x6d,0xda, +0xe7,0xb9,0x53,0x3e,0x7f,0x4c,0xb8,0x85,0xb3,0xfd,0x71,0x3f, +0x79,0x6a,0xda,0xe1,0x9c,0xe4,0x42,0xd9,0x23,0x76,0xb9,0x4b, +0x9c,0xe7,0x6c,0xbf,0xb9,0x07,0xe6,0xee,0x9d,0xbf,0x27,0x3c, +0x54,0x9e,0x34,0x37,0x79,0xe6,0xbe,0xa8,0x48,0xbf,0xc0,0x20, +0xe7,0xb0,0x54,0x6f,0x39,0xc8,0x1f,0xd5,0x42,0xc7,0xfd,0xa0, +0x2b,0x3b,0xc9,0x41,0xba,0x29,0x39,0x35,0xf6,0x96,0xd3,0x38, +0xec,0xe8,0x0e,0x1d,0x71,0xfc,0x38,0x6e,0x6b,0x76,0x7c,0xce, +0x86,0x6c,0xd7,0x0d,0xf2,0x95,0xb6,0x8b,0xec,0x16,0xd8,0xc8, +0x60,0x08,0x76,0x3c,0x0b,0x1d,0x9f,0x9e,0x1e,0x0a,0xe3,0x59, +0x75,0x12,0x76,0x26,0xab,0xf2,0xe2,0x4e,0x2d,0xca,0x0e,0x5d, +0x26,0xdf,0xe1,0xbb,0xdd,0x2b,0xde,0x53,0xfa,0x0c,0xc9,0x68, +0x92,0x7c,0x63,0xe7,0x0f,0x9b,0xa0,0xad,0x4f,0xbc,0x7c,0x75, +0xbf,0xd8,0xde,0x73,0x0d,0x65,0x60,0x01,0x87,0xc9,0x76,0xc7, +0x6d,0x56,0x9b,0x8d,0xb2,0xb6,0xca,0x57,0x5d,0x58,0x74,0x7d, +0x71,0x89,0xac,0xd7,0x12,0xb2,0xd9,0x64,0xc3,0x90,0xaf,0x75, +0x73,0xb7,0xc8,0xaf,0xaf,0x7c,0xb5,0xfc,0x32,0xaf,0xf9,0xce, +0x58,0xb5,0x98,0xa8,0x75,0xbf,0xb5,0x19,0xae,0xee,0xef,0x02, +0xc3,0xf0,0x0e,0x6a,0xa9,0xa7,0x54,0x89,0x44,0xe5,0x8a,0xb5, +0x54,0x9f,0x77,0xb9,0x30,0x30,0x84,0x2d,0xde,0x97,0x7c,0x4a, +0x80,0xef,0x91,0xc0,0x1d,0xd0,0xe1,0x9a,0x87,0x99,0x90,0x06, +0xd1,0xc5,0x84,0x53,0xbb,0xe0,0x67,0xe4,0x8a,0xe8,0x32,0x91, +0x9e,0xb9,0x11,0xd1,0x45,0x5f,0xed,0xc2,0xae,0xa2,0x14,0xe2, +0xa6,0x8a,0x32,0xf1,0x0b,0x70,0xe7,0xd4,0x5f,0x60,0x7f,0xf2, +0x1c,0xee,0x0e,0xe6,0x34,0x61,0x8e,0xaa,0x89,0x18,0xe1,0x24, +0x77,0xd1,0xf0,0x14,0xda,0x51,0xdb,0xb6,0x3c,0x92,0xe0,0x5b, +0x71,0x30,0xbc,0xe5,0x1c,0x71,0x00,0xc1,0xc2,0xe7,0x50,0xc8, +0x36,0x6f,0xc7,0x0c,0x02,0x17,0xc1,0x1a,0x2f,0xb2,0xe2,0x0c, +0x5f,0x02,0x85,0xda,0x58,0xc8,0xaa,0xc7,0x6e,0x25,0xf7,0xc0, +0x77,0x0c,0x27,0xfe,0x03,0x4f,0x11,0x70,0x71,0x40,0x17,0xd4, +0xe2,0xbe,0x4e,0xf8,0x47,0xc2,0x0e,0xc5,0x2d,0xee,0xe8,0xf6, +0xa3,0x3b,0x0e,0xec,0x8a,0xc9,0x93,0xdb,0x07,0x8f,0x8c,0xd2, +0x5f,0xbc,0xc3,0x53,0x7e,0x6c,0x43,0x4a,0x7c,0xea,0x36,0xd9, +0x64,0x6e,0xf1,0x3f,0x96,0x7c,0xb5,0x84,0xc7,0x4f,0x5d,0xa0, +0x13,0xbb,0x70,0xb4,0xbf,0xad,0x95,0x57,0x86,0x9f,0xbc,0xe9, +0x6c,0xf1,0xcd,0x3d,0x6f,0x65,0xf0,0x25,0xae,0x28,0x87,0x15, +0x6f,0x4a,0xd8,0xe6,0xbb,0x98,0x4b,0x44,0x53,0x38,0x82,0x3f, +0x0d,0xe3,0x12,0xdc,0x98,0x1b,0x6c,0x76,0x82,0xf4,0xd1,0xb5, +0xfe,0x6a,0x2d,0xf5,0x5c,0xee,0x9f,0x22,0x4b,0xf0,0x64,0xe1, +0x39,0xe8,0x06,0xf3,0x39,0xec,0x86,0x93,0x08,0x28,0xaf,0x52, +0xf5,0xd2,0x7c,0x0a,0x4e,0x04,0x9e,0xc1,0x32,0x36,0x35,0xe2, +0xea,0x93,0xd3,0xd0,0xe5,0x00,0x7c,0xd6,0xc3,0x71,0xef,0x1c, +0x6c,0xeb,0xdb,0x6b,0xca,0xb8,0x1e,0x30,0x78,0x04,0x97,0x94, +0x9a,0x94,0x95,0x90,0x2e,0xcb,0x45,0x4b,0x2e,0x7e,0x7f,0xfc, +0xfe,0x4d,0xfb,0x1d,0x37,0xcb,0x67,0x0e,0x70,0x1b,0x68,0x64, +0x90,0x11,0x2c,0xdf,0x1c,0x1f,0xbf,0x79,0x73,0xbc,0x4c,0x3c, +0x02,0xeb,0x89,0x3d,0x0c,0xe6,0x92,0x90,0xcb,0x47,0xcd,0xc6, +0x5e,0x45,0xc5,0x72,0x7d,0xd0,0x08,0xfc,0x71,0x21,0xf4,0x90, +0xa9,0x97,0x8c,0x22,0x4b,0xa7,0xcf,0x0b,0x9a,0x1d,0x26,0xc3, +0xfe,0xec,0xbe,0x94,0xa4,0xb4,0xdd,0x27,0x64,0x6e,0x78,0x82, +0x80,0xd6,0xb7,0x94,0x03,0xc5,0x5a,0xa0,0xf5,0x8c,0x1e,0x81, +0x72,0x6a,0x15,0x3a,0xf8,0x63,0x47,0x94,0xf5,0x39,0xe1,0x2a, +0xa7,0x09,0x7f,0xc7,0x62,0xe8,0xb9,0x19,0x02,0x65,0x34,0xbd, +0xfc,0x0a,0x07,0xac,0xe8,0xb7,0x68,0x8a,0xcc,0x71,0x69,0xdc, +0x22,0x47,0xe5,0x40,0x69,0x73,0xcf,0x33,0xb6,0x36,0xfb,0xf0, +0x8d,0xdd,0xc2,0xce,0xc6,0x2d,0x20,0x03,0x5f,0x85,0x9a,0x73, +0x64,0xf1,0xff,0x50,0x8c,0x43,0xcf,0x6f,0xb1,0xa7,0xd4,0x6e, +0xcf,0x67,0xf4,0x18,0x37,0x86,0x24,0x06,0x25,0xfa,0xec,0xf4, +0xcc,0xdb,0x2d,0x5f,0x58,0xb4,0x20,0x6f,0x5e,0x86,0x0c,0x6f, +0xe1,0x57,0x24,0xbd,0xfa,0xf0,0xed,0xed,0xd7,0x69,0xee,0xb2, +0xd8,0x2c,0xc6,0x64,0xaa,0x9d,0x0c,0xbe,0x06,0x07,0xb2,0xcb, +0x75,0x87,0xd3,0xb6,0x49,0xc5,0x09,0xf2,0x25,0x55,0xb1,0xe5, +0x0b,0x4e,0xcb,0xf0,0xcb,0x58,0xb2,0xc5,0x7a,0x93,0xe9,0xd7, +0x96,0x67,0xe2,0xe5,0x6b,0xeb,0x56,0x5e,0x5a,0x5a,0x23,0xd3, +0x7c,0x25,0xf1,0x0c,0x44,0xbd,0x61,0x6c,0x52,0x0a,0xe5,0xcd, +0x09,0xca,0x1b,0x1b,0x6e,0xcb,0xbe,0xf8,0x03,0x9b,0xf6,0x3b, +0x6c,0x96,0xcf,0x18,0xe0,0x32,0xd0,0xc0,0xe0,0x44,0x90,0x7c, +0x4b,0x7c,0xfc,0x96,0xf8,0x2d,0x32,0x71,0x0e,0x74,0x27,0xd2, +0x6f,0x09,0x7c,0x9e,0xf6,0xfc,0x64,0xd8,0x69,0xf9,0xe0,0x20, +0xfc,0x3c,0x02,0x47,0xd3,0xa4,0x85,0x66,0xd3,0x13,0x97,0x62, +0xb7,0xc8,0x7e,0x7c,0x6c,0xde,0x82,0xac,0xf9,0x69,0x81,0x8b, +0xe4,0x7b,0x5a,0x28,0xcd,0xd8,0x21,0x5f,0x31,0x6b,0xd9,0x9c, +0x65,0x73,0x8a,0x7d,0xe4,0xb9,0x8f,0xf7,0xff,0xb0,0x8d,0x72, +0x11,0x0a,0xcc,0x2a,0xc4,0x4f,0xf0,0x15,0x8b,0x73,0x61,0x18, +0x59,0x32,0x7d,0x5e,0xf0,0x2c,0xca,0xcf,0xa1,0xec,0xfe,0xe3, +0x49,0x69,0x89,0x27,0x64,0xce,0x98,0x4e,0xc3,0xe0,0x17,0x34, +0x0a,0xa6,0xfd,0x26,0xaf,0xe8,0x51,0x0c,0xc5,0xae,0x04,0x73, +0xd8,0x6f,0x72,0xbf,0xce,0x2f,0x56,0x9c,0x85,0x93,0x5c,0xb3, +0x2f,0xee,0xa4,0xcc,0x79,0xf1,0x33,0x73,0x5e,0xd1,0x23,0x5e, +0xc2,0xcb,0x24,0xbd,0xea,0x08,0xe5,0x04,0xcd,0x94,0x17,0x9b, +0xcd,0x68,0xe1,0x44,0x3c,0xe5,0xc4,0x6e,0xd7,0x1d,0x8e,0xdb, +0x26,0x9f,0xda,0x2e,0x5f,0x52,0xbd,0xb0,0x85,0x13,0xbd,0x62, +0xc9,0xd6,0xdf,0x73,0xe2,0x85,0xc4,0x89,0xfb,0xe2,0xd8,0x51, +0xec,0x5e,0xca,0x89,0xed,0x12,0x27,0x4c,0xb8,0xf8,0x7d,0x9b, +0x29,0x4a,0x9c,0x24,0x94,0x78,0x0c,0x32,0x6e,0x41,0x09,0xc5, +0x08,0x45,0x89,0x8a,0xa7,0xae,0xe1,0xb7,0xdb,0x2b,0x6d,0x3f, +0x6a,0x7b,0xa5,0xab,0x13,0xb8,0x62,0x02,0x2e,0x76,0x10,0x37, +0xb5,0x6c,0xaf,0xd4,0x51,0x4d,0xa6,0x1c,0x98,0x1f,0x3c,0x87, +0x72,0xa0,0x37,0xbb,0xef,0xf8,0x5e,0x09,0x51,0xee,0x2d,0x88, +0x7a,0x40,0x91,0x54,0x44,0x11,0xf5,0x98,0x1e,0x71,0x01,0x3a, +0xd0,0xfe,0x3e,0xa0,0xfd,0xa4,0xb7,0x7a,0x3e,0xa6,0xc7,0x15, +0x63,0xc8,0x9e,0xa0,0xdd,0xbf,0x05,0xc3,0x8d,0xdf,0x80,0xc1, +0x3c,0xc6,0x58,0x62,0xc1,0x3f,0x7e,0x06,0xc3,0x56,0x09,0x0c, +0x4b,0x7f,0x06,0xc3,0x17,0x12,0x18,0x36,0xfe,0x96,0x05,0x4f, +0xc1,0x91,0xea,0xba,0x38,0x6e,0x1c,0xbb,0x27,0x75,0x4f,0xd6, +0x76,0x49,0x51,0xc6,0xb6,0xb0,0x60,0xe3,0x7e,0x97,0xcd,0xf2, +0xd9,0xda,0xde,0x83,0x2d,0x0c,0x4e,0x84,0xc8,0x13,0x93,0x18, +0xd5,0x0f,0x54,0x20,0xa5,0x38,0x81,0xab,0xba,0x56,0xf2,0xa0, +0xf0,0x95,0xe7,0x61,0xb9,0x0b,0x32,0x36,0x83,0x8c,0xf5,0x64, +0xfe,0x34,0x9c,0xee,0x5b,0x82,0x7d,0xa1,0x8f,0x3d,0xf6,0xc1, +0x11,0x2e,0x30,0x02,0x47,0xa0,0x9d,0x33,0x2c,0x67,0x8d,0x4d, +0xc6,0x5a,0x0f,0x71,0x3e,0xea,0x2e,0xcf,0xd8,0x97,0xb6,0x2f, +0xf5,0x80,0x0c,0xe7,0x72,0x13,0xf7,0xcf,0x6a,0xe2,0x21,0x82, +0x3d,0xb5,0x53,0x5a,0x4c,0xc1,0x73,0x8e,0x89,0x0c,0xea,0x61, +0x28,0xe7,0xbd,0x6a,0x4b,0xa6,0xf0,0x92,0x03,0x2e,0x03,0x3a, +0x9f,0xbd,0x53,0x15,0x56,0x20,0x37,0x74,0xd0,0x76,0xef,0x19, +0x26,0x83,0x36,0x5c,0x61,0x66,0x5e,0x76,0x56,0x9e,0x4c,0x6d, +0x08,0x19,0x64,0x69,0xd4,0xfc,0xa0,0xb9,0x94,0x71,0x5a,0x6c, +0xd2,0xf1,0xc4,0xb4,0x5d,0x27,0x64,0xde,0x92,0xb5,0x92,0xdf, +0xa4,0xe9,0x4b,0xa1,0x16,0xc8,0x6f,0xd3,0x23,0x86,0x49,0x8c, +0xeb,0x75,0x13,0x7b,0x49,0xb7,0x7a,0xdd,0xa6,0xc7,0x64,0x5d, +0xaa,0x45,0x7b,0x7c,0x76,0x78,0xe6,0x4b,0x8c,0x9b,0xdf,0xc2, +0xb8,0x7b,0xb8,0xee,0x3d,0x76,0xae,0x49,0xd8,0x91,0x18,0x67, +0x2f,0x83,0x0d,0x60,0x2f,0x31,0x8e,0x62,0xa7,0x58,0xc2,0xce, +0x7b,0xc6,0xf1,0xef,0xb5,0xc8,0x52,0x51,0x12,0x2f,0xf1,0x6d, +0x49,0x4d,0x0f,0x4d,0x31,0x0a,0xbe,0x27,0xc0,0xd6,0x9c,0x6a, +0xda,0x04,0x6d,0xa4,0x85,0x05,0x07,0xd6,0xcb,0xb0,0x07,0x67, +0xb7,0x77,0x4e,0x19,0xff,0x8c,0x3d,0xb9,0x63,0x77,0x96,0xd0, +0xc4,0x79,0xec,0x66,0x06,0xe8,0x72,0x31,0x2b,0x36,0x1f,0x11, +0xa0,0x07,0x97,0xb2,0xfe,0xf8,0x86,0x43,0x1b,0xb6,0xc7,0x6e, +0x5b,0xb8,0x35,0x36,0xff,0xb8,0xdc,0xbb,0xde,0xee,0x9a,0xf3, +0xd9,0x80,0x69,0xf2,0x63,0x91,0xc7,0x83,0x8f,0x05,0x18,0x2f, +0x1f,0xb2,0x72,0xe4,0xea,0xf4,0x73,0x47,0xaa,0xf7,0x57,0xba, +0xec,0x94,0xcf,0x9c,0x14,0x6e,0xe6,0x3f,0x49,0xf6,0xd5,0xec, +0x39,0x5f,0xcd,0x53,0x6e,0x74,0xca,0xfc,0x26,0xff,0x9b,0xa2, +0x0d,0x3d,0x56,0xea,0x05,0xda,0x0f,0x74,0x93,0xe1,0x6b,0x9c, +0x4a,0xe0,0xba,0x38,0x4e,0x97,0xdd,0x93,0xb2,0xf7,0x3d,0x70, +0x0d,0x7f,0x06,0xae,0xf3,0x66,0xf9,0x2c,0x6d,0xcf,0xc1,0xa6, +0x06,0x27,0x24,0xe0,0x6e,0xa2,0xf6,0x4d,0x06,0x8b,0x40,0x97, +0x02,0x6e,0x41,0x0b,0xe0,0xbe,0xa4,0x7c,0xdb,0x2b,0xf1,0xcd, +0x53,0xe2,0x5b,0xf7,0x7b,0xd8,0x5d,0x62,0x52,0xf7,0x07,0xf4, +0x28,0x3e,0x57,0xfb,0x10,0xbd,0x63,0x16,0x69,0xf6,0x59,0xd5, +0x67,0xf3,0x6a,0x8e,0x35,0xc8,0xb2,0x30,0x81,0x4b,0x3c,0xb8, +0xf3,0xf0,0x8e,0x23,0xce,0xbb,0xe5,0x41,0xba,0xb6,0xc6,0xc3, +0xac,0xa9,0x8b,0x3d,0x9c,0x78,0x70,0xef,0xfe,0xe4,0x54,0xdf, +0x93,0xfe,0x05,0x41,0xb6,0x81,0x06,0xa1,0xda,0xd3,0x92,0xdc, +0xe5,0xd0,0xee,0xf8,0xbd,0xac,0xda,0xa2,0x6a,0xef,0xab,0x81, +0x8f,0xc2,0x65,0xcd,0x27,0xa0,0x9e,0x8a,0xe0,0xde,0xcf,0x22, +0x78,0x40,0x8f,0x10,0x19,0x4f,0x36,0x6e,0xdc,0x40,0xff,0xc9, +0x20,0x8e,0x8d,0x71,0x09,0xf1,0x70,0xf6,0xf5,0x3c,0x19,0x98, +0x17,0x5a,0x24,0xc3,0xf9,0xc3,0xa8,0x78,0x76,0xfb,0xee,0xf0, +0xcc,0xdd,0x25,0x8f,0xa5,0xb8,0x9e,0x4f,0xc5,0x73,0xa1,0x45, +0x3c,0x87,0xee,0x6c,0xbb,0x46,0x71,0xbd,0xc4,0x7c,0xa6,0x71, +0x18,0xc5,0xf5,0x52,0x09,0xd7,0x6e,0x09,0x8e,0x5b,0x27,0x17, +0x51,0xf1,0x54,0xc5,0x95,0x2f,0xa4,0xe2,0xe9,0x1e,0x47,0xe2, +0xa7,0x48,0xe2,0x39,0x1d,0xbf,0xae,0x05,0xd6,0x3d,0x34,0x1f, +0x4b,0xb0,0xae,0x15,0xc7,0x8d,0xa5,0xb0,0xde,0xfb,0x1e,0xd6, +0xe3,0x28,0x83,0x36,0x51,0x06,0xb9,0x48,0x0c,0xfa,0x00,0xd6, +0xef,0xd4,0x37,0xc8,0x94,0x7d,0x36,0x47,0x1c,0x33,0xca,0x8b, +0x0b,0xce,0x1d,0xbd,0x44,0x8b,0x5e,0xf9,0x75,0xa5,0xd7,0x9b, +0x53,0xf8,0xf2,0xd7,0x95,0x5e,0x8d,0xa7,0xd4,0x01,0x6c,0xda, +0xd9,0x03,0xd2,0x4a,0xaf,0xcf,0x37,0x40,0xaf,0xed,0xd0,0x76, +0x5f,0xcc,0x29,0x79,0xef,0xb9,0xd8,0x7b,0x09,0x0e,0x59,0x1b, +0x6b,0x15,0x65,0x16,0xe6,0x9a,0x13,0x21,0x9f,0xe5,0x0e,0xdc, +0xaf,0x8b,0xb8,0xba,0xd2,0x90,0x82,0x8d,0x45,0x21,0xbc,0x97, +0xf3,0x88,0xd8,0x82,0x85,0x39,0x0b,0xd2,0x83,0x16,0xc9,0xdf, +0x77,0x36,0x3d,0x41,0xbe,0x68,0x76,0xec,0x9c,0x05,0x73,0x32, +0x7c,0xe4,0x35,0xd7,0xf2,0xef,0x1d,0xfb,0xfe,0x98,0xe7,0x49, +0xff,0xfc,0x60,0xc7,0x90,0xc9,0x51,0x96,0xd2,0xd2,0xae,0xa6, +0x03,0x8d,0x69,0x55,0xf9,0x95,0x7e,0x75,0x61,0x0d,0x33,0x64, +0xd8,0x5e,0x75,0x8e,0x1c,0xf6,0x3d,0xee,0xb0,0xd7,0x4d,0x5a, +0xda,0x55,0x14,0x71,0x2e,0x8a,0x26,0x8a,0xdd,0xa5,0xa5,0x5d, +0x39,0xf3,0x8b,0x17,0x9e,0x70,0x5f,0x4c,0x9b,0xdd,0xe5,0xb9, +0xd5,0x4f,0xa6,0xee,0x00,0x9d,0xa8,0x9e,0x2c,0x08,0x92,0xe4, +0xdd,0x9d,0xca,0x7b,0xcf,0xff,0xd4,0x93,0x3b,0x92,0x9e,0x84, +0xff,0x46,0x4f,0xee,0xd0,0xa3,0xb8,0x64,0x09,0x89,0x76,0x0d, +0xf2,0xf5,0x0e,0xf1,0xcc,0xf0,0xcb,0x0f,0x3b,0x2d,0x53,0xef, +0xc5,0x32,0x92,0x46,0xc5,0xb0,0xfd,0x43,0x31,0x2c,0xa1,0x62, +0xd8,0xf9,0x8b,0x18,0x96,0xfe,0x4b,0x0c,0x5b,0xa6,0x48,0xe6, +0xe5,0x54,0xbc,0x5c,0x92,0xc3,0xb2,0x9a,0x96,0xcf,0xa9,0xf1, +0x04,0x9b,0xeb,0x69,0x38,0x51,0x46,0x03,0x99,0x2d,0xfb,0xb6, +0xec,0xdf,0x7c,0xd0,0x69,0x8b,0x7c,0x65,0xcc,0xf2,0xe8,0xa5, +0xd1,0x32,0x54,0xaa,0x0b,0xe0,0x25,0x6b,0xb0,0xc6,0x61,0x85, +0x3f,0x1f,0xb6,0x6a,0xf1,0xa2,0x20,0xa5,0x3b,0x9b,0xe0,0xc2, +0x9c,0x62,0xcf,0xb7,0x7c,0x4a,0x61,0x6b,0xe9,0xc6,0xcb,0xd0, +0x59,0x81,0x2f,0x1a,0xa1,0x99,0xfd,0xa9,0x1d,0x74,0x20,0xb8, +0x65,0x29,0x7e,0x32,0x15,0x65,0x7c,0xb1,0x1f,0x93,0x0d,0x9f, +0x6f,0x87,0x41,0x90,0xa8,0x80,0x0c,0x38,0xd1,0xfc,0x0f,0x6c, +0xc7,0x25,0x38,0x32,0x0f,0xa5,0xbd,0x36,0x85,0x82,0x2a,0x4f, +0x2d,0x70,0xaa,0x1d,0x63,0x89,0x21,0x6e,0xb9,0xca,0xa9,0x2d, +0xf1,0x30,0x79,0x34,0xa6,0xf0,0xde,0xe3,0x22,0x9d,0x87,0x0f, +0x8a,0x46,0xdd,0xf2,0x1a,0x37,0xc6,0xf3,0xde,0xc8,0x11,0xac, +0xca,0xf2,0x35,0x19,0x87,0x5b,0x6e,0x71,0xea,0xb1,0x98,0x48, +0xf0,0x6e,0xf1,0x45,0xe8,0x0f,0x89,0x1c,0x6a,0x63,0x04,0x81, +0xb1,0x2f,0xa9,0x2d,0x14,0x8f,0x07,0x91,0xc5,0x27,0xe7,0x9d, +0x89,0x3b,0x36,0x35,0x4e,0xbe,0x2b,0x72,0xaf,0xd3,0xb6,0x60, +0x19,0x16,0x61,0x27,0x72,0xfc,0x72,0xd2,0xd3,0xf8,0x46,0x9f, +0xad,0xf2,0xe5,0xe6,0xf3,0x47,0x45,0xd2,0x18,0x31,0x12,0x02, +0xc9,0x4e,0x8f,0x1d,0x0e,0xf1,0x8e,0x39,0x09,0xf2,0xe5,0xe5, +0x71,0xa5,0xb1,0x14,0xd9,0x9a,0x71,0x64,0xab,0x95,0x34,0x49, +0x92,0xbf,0x45,0xbe,0xf6,0xe2,0xca,0x8b,0x4b,0x2e,0xca,0xa4, +0x9f,0x30,0xfe,0x82,0xa8,0xf5,0x2f,0x8b,0xed,0xa1,0x14,0x43, +0x7e,0x9e,0xc5,0x72,0x78,0x3f,0x29,0x24,0x31,0x65,0x84,0x3a, +0x47,0x1c,0xc8,0x1a,0xae,0x75,0xa3,0x4c,0x09,0x5d,0xb9,0x28, +0x2e,0x90,0xc6,0xc6,0x09,0xce,0x4c,0x05,0x5b,0x73,0xf8,0xe0, +0xf9,0x6d,0xc2,0xb6,0xb2,0x8d,0x97,0x40,0xa6,0x50,0x0f,0x6c, +0x10,0xf5,0xd9,0xe6,0x89,0xe8,0x42,0x1e,0x41,0x3f,0xb1,0x1d, +0x0e,0xbb,0x0f,0x13,0xce,0xe0,0x84,0xa7,0x0e,0xb8,0x18,0x79, +0x75,0x3b,0xd0,0x1e,0x81,0x13,0x9d,0x61,0x22,0x1a,0x94,0x83, +0x01,0xe8,0x97,0x72,0x62,0x5f,0xb1,0x9a,0x06,0x7f,0xe7,0x69, +0xd8,0x77,0x1e,0x3f,0x21,0x13,0xf0,0xfc,0x0d,0x0e,0x0d,0x83, +0x49,0x7f,0x5c,0xf1,0x9a,0xc3,0xc1,0x1a,0xb0,0x02,0x35,0x70, +0x05,0xab,0xea,0xd8,0x93,0xec,0x9a,0xb6,0xd7,0x79,0x5b,0xc8, +0xc9,0x44,0xf9,0x92,0xcc,0x79,0x67,0x16,0x1e,0x95,0xe1,0xb7, +0x18,0x4f,0x4e,0xd6,0xed,0x7f,0xb8,0xad,0xde,0x63,0x9b,0x7c, +0x99,0xd5,0xec,0x71,0x41,0xd6,0x92,0x9f,0xf5,0xa4,0x1d,0xde, +0xe9,0xb8,0xc5,0xa9,0x40,0x9a,0x15,0x8a,0x3d,0x1b,0x5b,0x28, +0xc3,0x9e,0x8b,0xc8,0xb6,0x49,0x9b,0x8c,0xbf,0xb1,0x2b,0x96, +0x66,0x85,0x56,0x5c,0x58,0x72,0xa1,0xa5,0xc3,0x5f,0x12,0x75, +0xa7,0x3a,0xb8,0x0e,0x67,0xd1,0xa6,0xa5,0xc3,0xd4,0xc3,0x4a, +0x1d,0x7e,0x8f,0x82,0x5e,0xea,0x1c,0x40,0x8a,0x02,0x97,0x15, +0x01,0x14,0x05,0x8b,0x16,0x05,0x2b,0x5d,0xa4,0x0e,0x9f,0x61, +0x2b,0x0f,0x1d,0xa8,0xdc,0x4e,0x51,0xb0,0xe1,0x92,0xf4,0x51, +0x2e,0x55,0x83,0xd8,0x89,0x55,0xa7,0xc1,0x03,0x82,0x1a,0x67, +0x60,0x02,0x5a,0xff,0x60,0xd7,0x1b,0x8d,0xd1,0xfc,0x0c,0x68, +0x72,0xaa,0x85,0x99,0x54,0xd4,0x49,0x57,0x39,0xec,0xa8,0xbe, +0x42,0x93,0x0d,0x2d,0x68,0x07,0xf4,0x40,0xe8,0xa1,0x57,0x11, +0xf6,0xe3,0x92,0xd2,0xf7,0xe4,0x6c,0x4f,0xf7,0xda,0x22,0x5f, +0x32,0x75,0xae,0xd7,0xec,0x60,0x69,0x84,0x7c,0x57,0x5a,0x62, +0xce,0xae,0x93,0xde,0xbb,0xe4,0x91,0x83,0x5d,0xb1,0x9d,0xad, +0xe1,0x71,0x7f,0xf9,0x8e,0xdd,0x3b,0x92,0x76,0x1e,0x90,0xa9, +0x5d,0x4b,0x73,0xa1,0xac,0x18,0xbb,0x41,0x67,0x4e,0x4c,0x10, +0x3d,0xc9,0x78,0x4c,0xba,0xc9,0xa9,0x8d,0xf0,0x6b,0xa9,0xbd, +0x4f,0x29,0xd0,0xf0,0x53,0x1c,0xf9,0xcb,0xb9,0x58,0x8b,0x6d, +0xc8,0x92,0x0c,0x0a,0x91,0xa3,0x12,0x44,0x28,0xeb,0xb6,0x86, +0xc8,0xb0,0x9c,0xa6,0x94,0x29,0x75,0xc9,0x8f,0xb7,0x34,0xd0, +0x97,0xae,0xb0,0x9c,0xab,0x1b,0x61,0x23,0x8d,0x39,0xfa,0x90, +0x9d,0x9e,0x3b,0x9c,0xb6,0x38,0xe6,0x26,0xc8,0x97,0x95,0x51, +0x88,0x50,0x8e,0x7d,0x1a,0x27,0x71,0xcc,0xe4,0x1b,0xdb,0x82, +0x16,0x88,0xd4,0x50,0x8e,0xa9,0xdb,0x86,0x48,0x5b,0x33,0x3f, +0xa5,0xef,0xd7,0x7c,0xe7,0x21,0xa9,0xd0,0xdb,0x7a,0x28,0xa3, +0x2a,0x64,0xd4,0xa2,0x42,0x9b,0x24,0x15,0x5a,0xf5,0xb3,0x0a, +0x75,0xa7,0x2a,0x74,0x9f,0x32,0xcf,0xbe,0x85,0x79,0x92,0x0a, +0x79,0x4a,0x2a,0x54,0xcc,0x56,0x1c,0xdc,0xff,0x9e,0x79,0x2d, +0x2a,0x74,0xaf,0x11,0xde,0xb2,0xea,0x42,0x48,0x25,0xb9,0xdc, +0xb1,0xb9,0xe9,0xf3,0xd3,0xe7,0x1f,0x2c,0x91,0xa3,0x46,0xc9, +0xd8,0x73,0xb3,0x2a,0x68,0x36,0x1d,0x63,0x37,0x9a,0x66,0xee, +0x5e,0x07,0x9d,0xe5,0x27,0x77,0x67,0xec,0x4d,0x4d,0x96,0x05, +0x70,0xf0,0x39,0x4c,0x22,0xf1,0x9e,0x79,0xbe,0x15,0x41,0x32, +0x5c,0xcc,0x56,0x9c,0xcc,0xcd,0xdf,0x5a,0x28,0x13,0x6b,0x75, +0x29,0xa3,0xff,0x71,0x95,0x83,0x7f,0x60,0x37,0xaa,0x3b,0xff, +0xa0,0xba,0x53,0x34,0x87,0xa0,0x0f,0x28,0xc0,0x87,0x03,0x5d, +0x2d,0x94,0xd3,0x73,0x39,0x0b,0x63,0xb5,0xc0,0x07,0x15,0xe8, +0xc3,0x61,0xfa,0x49,0x02,0x5d,0x8a,0xb0,0x0b,0x7d,0x0a,0x5d, +0x08,0x76,0xf1,0x02,0x7a,0x1a,0xa6,0x85,0x5d,0x3c,0xe8,0x09, +0x96,0xa8,0x1f,0x11,0x70,0x6c,0x40,0x8b,0x42,0xb0,0x68,0x6a, +0xf9,0xff,0x26,0x7e,0x66,0xc5,0xed,0x70,0x67,0xce,0xb2,0x29, +0x3b,0x12,0x33,0x05,0xb8,0xa8,0x36,0x54,0x7f,0xc6,0x41,0x57, +0x58,0x46,0x4c,0x5e,0x36,0xb0,0xf0,0xc9,0x40,0x62,0xf4,0xb2, +0x89,0x05,0x32,0x90,0x8c,0x7f,0x79,0x93,0x15,0x47,0xa3,0x17, +0x59,0x72,0x72,0x5e,0x49,0xdc,0xb1,0x50,0x49,0x45,0xf7,0x38, +0x6d,0xa3,0x04,0x1f,0xa2,0x2a,0x7a,0xe4,0xf2,0x9e,0xe7,0x9b, +0x1b,0xa5,0xb5,0x03,0x66,0x0b,0x46,0x4e,0xb7,0x95,0x81,0x37, +0x04,0x51,0xc4,0x26,0x38,0xc6,0x3b,0x64,0xbf,0x57,0xd1,0x38, +0xaa,0xa2,0x9c,0xa4,0xa2,0x9b,0x26,0x7e,0x63,0x97,0x4b,0x11, +0x7b,0x69,0xd5,0x85,0xa5,0x17,0xa5,0x8f,0xd5,0x41,0x18,0x79, +0x2b,0x76,0x2a,0x51,0x77,0x7a,0x02,0x37,0xe0,0x79,0xb3,0x2d, +0x3e,0x87,0xea,0x61,0x88,0x2e,0x80,0x7d,0xd5,0x3a,0xce,0xef, +0xb4,0x4a,0xb9,0xe6,0x39,0x22,0xb5,0xa8,0xeb,0x71,0x05,0xae, +0x67,0xa1,0x4a,0x0b,0x56,0x40,0x22,0xae,0xe0,0xd4,0x7b,0x28, +0xd7,0x4e,0x78,0x1d,0x0e,0x38,0xec,0x94,0x7f,0x44,0x1e,0x73, +0x66,0x5a,0xc1,0xd4,0x7c,0x19,0x5c,0x41,0x4b,0x92,0x5d,0x78, +0xec,0xf4,0xfe,0x33,0x5e,0xfb,0xe4,0x33,0xdd,0xa7,0x79,0x04, +0xf9,0xc8,0xc0,0x41,0x1d,0x43,0x72,0x3c,0xb2,0x9c,0x53,0x6d, +0xce,0x1d,0x95,0x87,0x56,0xf9,0x96,0x06,0xe4,0xca,0x9a,0x43, +0xd1,0x83,0x54,0x96,0xe5,0x96,0x1f,0x29,0x73,0xde,0x27,0x8f, +0x72,0xf3,0x75,0xb6,0xf3,0x90,0x89,0x3b,0x68,0x0c,0xbe,0xdf, +0x35,0xc9,0x79,0xa7,0x7d,0xf5,0x0e,0xf9,0xc2,0xca,0xd9,0xa5, +0x31,0x94,0xee,0x43,0x8b,0x48,0x82,0xd3,0x16,0x8f,0x8d,0x53, +0xaa,0xe2,0xe5,0xab,0xaa,0x97,0x9f,0x89,0x3d,0x2d,0xd3,0xec, +0x25,0xda,0x80,0x1d,0x81,0x9d,0xea,0x7e,0x66,0xd0,0x84,0x4e, +0x9c,0x66,0x2f,0x20,0xaa,0x87,0xc4,0x94,0x85,0x87,0x3f,0xe9, +0x33,0xf5,0xac,0xa6,0x26,0xb4,0x51,0xcd,0x20,0x01,0xfb,0xe6, +0xa7,0xf1,0x09,0x6c,0xda,0xbe,0x3d,0xd9,0xd9,0xb3,0xf7,0x84, +0x09,0x8b,0xd9,0xb0,0xd9,0xf3,0x03,0x04,0x70,0x9f,0x47,0xa0, +0x6a,0x16,0x03,0x2b,0x1e,0x50,0x43,0x80,0xf4,0x4c,0x53,0x7c, +0xa3,0x0a,0x20,0x90,0x57,0x8f,0x79,0x2c,0x6e,0xd5,0x78,0x7f, +0xa2,0x09,0x9d,0x55,0xbd,0x09,0x4c,0x9f,0xca,0x50,0xa7,0x8a, +0xd3,0x4f,0x30,0x53,0xb8,0x96,0x8b,0xfe,0x15,0xd2,0x32,0x29, +0xcb,0xe9,0xbf,0x9c,0xd1,0x7b,0xd5,0x2d,0xcf,0x61,0xdc,0x87, +0x17,0xfd,0xed,0x68,0xe6,0x86,0x96,0xc7,0x18,0xe8,0xd7,0x72, +0x46,0xef,0x89,0xde,0xd8,0x9b,0x48,0x8d,0x59,0x1e,0x95,0x0a, +0x6b,0xaa,0x9e,0x88,0xdf,0x12,0xe8,0xba,0xc2,0xec,0x2e,0xb6, +0x51,0xa2,0x86,0x97,0x25,0xf6,0x0e,0x11,0xf0,0x30,0xbb,0xf1, +0xca,0xc9,0x92,0xf3,0xb9,0xae,0xe7,0xe4,0x93,0x3c,0x5d,0x2c, +0x57,0x21,0x23,0xd3,0xb5,0xb9,0xc7,0x22,0x9f,0x70,0x5d,0x1f, +0x3a,0x28,0xa1,0x5d,0x45,0x15,0xf4,0x3b,0x26,0x7c,0xb3,0x85, +0x81,0xaf,0xd9,0x55,0x56,0xa1,0x1e,0x5e,0x61,0xf9,0xb6,0xf2, +0x2b,0x25,0xa9,0xb5,0x9b,0x1f,0xc9,0xee,0x57,0xb2,0x98,0x0c, +0x84,0x54,0x65,0xb9,0x1a,0x6c,0x12,0x70,0x09,0xfb,0x60,0xdf, +0xd1,0x9c,0x7a,0x25,0x7e,0x87,0xb7,0x88,0x89,0xdb,0xe9,0x7b, +0x2b,0x05,0x48,0x60,0x07,0xcd,0x88,0x0e,0x34,0x51,0x6a,0x8a, +0x6e,0x2a,0x05,0xe9,0xdd,0x60,0x27,0x7d,0xe8,0xa9,0xa1,0xe2, +0x87,0x1f,0x4c,0x2a,0x50,0x89,0x0a,0x13,0xbb,0xde,0xfc,0x69, +0xad,0xaa,0xec,0xa3,0xb7,0xf8,0x2a,0xf6,0x56,0xf6,0x74,0x6b, +0xeb,0x80,0xe9,0xe3,0x04,0x6b,0x76,0x5c,0xc0,0xd1,0x2a,0x41, +0xfd,0xd9,0x54,0xa2,0x8a,0x51,0x6f,0x64,0xae,0x72,0xcd,0x31, +0xe2,0x46,0x66,0xb1,0x3a,0xbb,0xa5,0x05,0x25,0x28,0x7e,0x6e, +0x41,0x81,0xca,0x3f,0x6c,0x41,0xf3,0x47,0xf1,0x2a,0xc1,0x4e, +0x95,0x93,0x32,0xa3,0xf8,0x51,0xe3,0x98,0x3e,0x1c,0x0c,0x81, +0xde,0x05,0xb3,0x4b,0x17,0x54,0x2e,0xef,0x61,0x7c,0x09,0x04, +0xce,0x7a,0xbd,0xf5,0x36,0xd7,0x24,0xb0,0x02,0x03,0xf9,0xd0, +0x33,0x67,0x26,0xbe,0x54,0x3e,0xae,0xb9,0xfc,0x16,0x58,0xc3, +0x2b,0x03,0x26,0xb9,0x44,0x78,0xb8,0x0a,0x4d,0x01,0x4e,0x8d, +0xd8,0x8e,0xb2,0x6b,0x84,0x3e,0xf6,0x11,0xea,0x56,0x90,0x47, +0x45,0x65,0xd7,0xf9,0x5d,0xec,0xed,0x34,0x77,0xfb,0x63,0x02, +0x75,0xf6,0x9e,0x8c,0xe7,0x89,0x69,0xa7,0xeb,0x15,0x62,0xc7, +0xed,0x24,0xa7,0x30,0xe7,0x48,0xb6,0x32,0x81,0x2d,0xcf,0xf5, +0xb3,0x71,0x89,0xf0,0xb6,0xa7,0x10,0x70,0xf0,0xbc,0x78,0x29, +0x54,0xf8,0x50,0xe2,0x9a,0xa2,0x93,0x2a,0x95,0x60,0x20,0x9a, +0x8f,0xee,0x3b,0x4a,0x30,0xe2,0x40,0xe3,0x25,0x58,0x5e,0x87, +0x81,0xca,0x6f,0x59,0x18,0x08,0x96,0xfa,0xa8,0xf1,0x92,0x46, +0xb9,0x6f,0x47,0xa1,0xc5,0x7d,0x0c,0xa4,0x6c,0x73,0x12,0xa9, +0xc1,0x0d,0x04,0x8b,0xfb,0x6f,0x1f,0xd0,0xfb,0xa8,0x31,0x10, +0x69,0x99,0x81,0xca,0xe1,0x2c,0xd2,0xb3,0xeb,0xa0,0x31,0x90, +0xb6,0xd1,0xf7,0x01,0x98,0x8f,0x06,0x5a,0x5a,0x35,0x40,0x25, +0x27,0xa8,0x35,0x26,0xcb,0x11,0xba,0x3e,0xcb,0xc2,0x81,0x97, +0x92,0x5d,0xa8,0xef,0xd5,0x59,0xc5,0xd4,0x71,0xa8,0xb3,0xaa, +0x04,0xfa,0x5b,0x26,0x07,0xd2,0x7a,0x5d,0x9f,0x07,0x3a,0x32, +0x9a,0x60,0x2b,0xee,0x27,0x10,0x83,0x21,0x97,0x20,0x04,0x62, +0x9a,0x30,0x06,0x42,0x2c,0x31,0x04,0x63,0x58,0xcd,0x45,0xaa, +0x2d,0xc4,0xb1,0xa8,0x31,0xbc,0x44,0xb9,0x83,0x4d,0xdb,0x4f, +0xf1,0x3c,0x8b,0xe2,0x79,0x11,0x3b,0x63,0xde,0x92,0x19,0xab, +0x04,0xef,0x6d,0x61,0xfb,0x03,0x4e,0x52,0x75,0xee,0x29,0x1e, +0x23,0xf7,0xe0,0xe0,0x18,0x56,0xf3,0x47,0xd5,0x5c,0x12,0xb0, +0x7f,0x7e,0x2a,0x85,0x7f,0xea,0xfb,0xe2,0xe1,0xb4,0xef,0xe1, +0xb3,0x28,0xfc,0x35,0x83,0x55,0x27,0xc8,0x3b,0x7d,0x3c,0xc4, +0xd4,0x73,0x3f,0xe9,0xc3,0x21,0x86,0x8a,0xa4,0x92,0xa0,0x09, +0xf0,0x86,0xb0,0x0a,0x56,0x03,0x7f,0x15,0x4c,0xc0,0x04,0xf9, +0xab,0xb8,0x1a,0x57,0x21,0x6f,0x88,0x26,0x7c,0x83,0x16,0x70, +0xaf,0x0b,0x41,0x9b,0x87,0x0e,0x2c,0x68,0xbf,0xf6,0x42,0x0e, +0xb9,0xfe,0x5e,0xa8,0x2d,0x60,0x07,0x16,0xb5,0xfb,0x17,0x02, +0x27,0x68,0x82,0x2b,0x54,0x10,0x70,0x52,0x69,0x43,0x77,0x8e, +0xe6,0x8e,0xee,0xae,0x9e,0x60,0x8c,0x76,0xcc,0x4a,0xf5,0x53, +0x08,0x32,0x56,0xcf,0xe5,0xa8,0x3a,0x41,0x23,0x69,0x14,0xa9, +0xcd,0xb4,0x46,0x5f,0x46,0xe7,0xce,0xf5,0x49,0xa0,0xa1,0x84, +0x6e,0x0f,0x6e,0x41,0x2f,0xe8,0x35,0xa6,0x66,0xcc,0x11,0x21, +0x6a,0x22,0x73,0x79,0x5e,0xa9,0xbf,0x8e,0x62,0xa8,0xa3,0xef, +0x38,0x7e,0x11,0x6b,0x66,0x7a,0xfa,0xd2,0x14,0x01,0xe7,0xc0, +0x6a,0x86,0x76,0x49,0x0c,0x53,0x19,0x93,0xd1,0x5c,0x6f,0x0f, +0xe7,0x51,0xfc,0x72,0x76,0x94,0xfb,0xd9,0xef,0x1f,0x65,0xe6, +0x9d,0xcb,0x10,0x3c,0x2b,0x19,0x6b,0x5f,0xdb,0xc9,0xf8,0xa9, +0x02,0x07,0x3e,0x18,0x08,0x9f,0x42,0xbb,0x73,0x8d,0x37,0x76, +0xf2,0x1b,0x59,0x83,0xbd,0x67,0xad,0x9f,0x29,0xa1,0xe3,0xc5, +0x97,0xf0,0x09,0x74,0xb0,0xab,0xb6,0x4b,0x17,0x3c,0x6d,0x98, +0xf2,0xe9,0xe9,0xbe,0x06,0x8a,0xf1,0x41,0x2e,0xfa,0xfc,0x0a, +0xd6,0xcc,0xed,0xf4,0x2b,0xe1,0x26,0xa5,0x2d,0x51,0x1c,0x40, +0xb0,0x4d,0x1d,0xb4,0x11,0x77,0x42,0x37,0x4e,0xbd,0x0d,0xaa, +0x19,0x63,0x14,0xb1,0xdf,0x04,0x56,0x35,0xfc,0x06,0x51,0x7b, +0xc0,0x51,0x56,0xf4,0xc0,0x03,0x8c,0xa6,0xea,0xa9,0x6a,0x29, +0x51,0xf7,0x3f,0xb8,0xd4,0x8c,0x49,0x9f,0x76,0x38,0xdc,0x52, +0xd1,0xd7,0xc9,0x75,0x00,0xbf,0x84,0x1d,0xe8,0x58,0xf2,0xe6, +0x61,0x66,0x66,0x79,0x86,0xe0,0x55,0x25,0xd1,0x63,0x8d,0x5d, +0x14,0x38,0xe4,0xbb,0x61,0xd0,0x07,0x7a,0xdf,0x7d,0x02,0xdd, +0xae,0x46,0x66,0x7a,0xa6,0xf1,0x9b,0x39,0x38,0x31,0x97,0xc1, +0x2b,0x8d,0x1c,0x65,0xfa,0x79,0x82,0xfd,0xbe,0x1b,0x24,0x7d, +0x8f,0xf4,0xfe,0xb7,0xf0,0xe9,0x03,0xdf,0x12,0xbb,0x34,0xfe, +0x9b,0x8d,0x60,0x18,0xfc,0x7c,0x34,0x70,0x38,0xa2,0x07,0x4d, +0x09,0xa1,0xb3,0x01,0x1a,0x42,0x6f,0x8c,0x52,0xe2,0x44,0x6c, +0x33,0x0c,0x07,0x0b,0x0d,0x5f,0x93,0xef,0xca,0xca,0x5e,0xf1, +0x5b,0xd9,0x57,0x65,0x4e,0xda,0x03,0x1c,0x1d,0xb5,0x85,0x65, +0xac,0xb6,0x63,0xd9,0x77,0x82,0xa6,0x6a,0x2f,0xdc,0xa4,0x0c, +0x9e,0x8d,0xa1,0x13,0x41,0xc0,0x06,0xb6,0x79,0x20,0xa4,0x49, +0x9f,0x3c,0x6b,0x11,0xef,0xf8,0x6f,0x47,0x43,0x97,0x57,0xe5, +0x15,0x0f,0xf6,0xf3,0xf1,0xac,0xe1,0x81,0x2a,0xcf,0xbb,0x4a, +0x68,0xdf,0x70,0x0f,0xfa,0x41,0x3f,0x93,0x7b,0xd8,0x5e,0xd7, +0xda,0xd3,0x70,0xa6,0xb0,0x82,0x7d,0x30,0xcb,0xa1,0x42,0x5b, +0x89,0x5d,0x86,0x8f,0xc6,0xf1,0x42,0x83,0xd6,0xdb,0xa2,0xf3, +0x77,0xf9,0x64,0xf6,0x4e,0xb1,0x6d,0xdf,0xbe,0x1e,0xb6,0x7a, +0xc2,0x1c,0x56,0xd7,0xf3,0xfc,0x5b,0x01,0xd4,0x5a,0x8f,0xb3, +0x4f,0x37,0x51,0xad,0xbb,0x9a,0xed,0xa6,0xa3,0x13,0xe0,0x66, +0x28,0xc4,0xb2,0x46,0x01,0xa7,0x1f,0x53,0x18,0x74,0x16,0x6f, +0x52,0xa7,0x7e,0x4d,0xda,0x3c,0x08,0x51,0x4a,0x98,0x08,0x6d, +0x9e,0xc0,0x60,0xe8,0x37,0xe0,0x05,0x4d,0x9a,0x85,0xd1,0xc3, +0xf1,0xd3,0x91,0x79,0xae,0x15,0x61,0xc2,0xba,0xd5,0x68,0x98, +0x39,0xf8,0x3e,0x72,0x40,0x3b,0xfa,0x06,0x3f,0xfb,0x57,0xaf, +0x1c,0x07,0xfc,0xda,0xab,0xb3,0xaf,0x04,0xc9,0x92,0x47,0xb6, +0x06,0x65,0x71,0x92,0x56,0x6b,0x20,0x87,0x65,0xb4,0x9a,0xa4, +0x25,0xfc,0xef,0xb4,0xc4,0x8a,0xfb,0x50,0x8f,0x04,0x38,0xdf, +0x6a,0x13,0x3f,0xc2,0x4b,0x72,0x97,0x85,0x69,0x62,0x5b,0x26, +0x9e,0x85,0xe9,0xea,0xb6,0xcc,0x1d,0x16,0x13,0x45,0x6b,0x66, +0x02,0xf5,0x0d,0x67,0xe1,0x0a,0xb9,0x24,0x2e,0xb4,0x64,0x61, +0xaa,0x7a,0xe1,0xfb,0x33,0x4d,0xd1,0x9d,0xd6,0x00,0xa9,0x84, +0x1e,0x8b,0x52,0x79,0xea,0x5d,0xa4,0xda,0xba,0x2c,0x24,0xaa, +0xad,0xa9,0x7a,0x3f,0x16,0xdf,0xd1,0x6c,0x9a,0x1d,0xb6,0xbb, +0xaa,0x3f,0x28,0x95,0xd0,0xe5,0xea,0x0d,0xd0,0x02,0xa2,0x5f, +0x3b,0xfc,0xa0,0x10,0x6d,0xcc,0x5c,0x5e,0x58,0xe2,0x39,0x5e, +0x61,0xe8,0xed,0x61,0x4c,0x69,0x1e,0xe5,0x56,0x0b,0xb2,0x55, +0x02,0x1a,0xb3,0x18,0x17,0xdc,0x9a,0x27,0xd3,0x84,0xe2,0x55, +0x30,0x81,0x9c,0x87,0x35,0x2c,0x75,0xfa,0xbd,0xa8,0x21,0xf7, +0xe6,0xcf,0xb3,0xe0,0x06,0x83,0x51,0x40,0x5f,0x9c,0x8c,0x5d, +0xb1,0x17,0xda,0x0a,0x5e,0x2c,0x76,0x32,0x4d,0xbf,0x70,0x72, +0xe7,0x9e,0x12,0x01,0x1a,0x6b,0xcd,0x36,0xb0,0x79,0x7b,0xd2, +0x32,0xaa,0x15,0x2f,0x8c,0xef,0xe2,0x08,0x1c,0x6e,0xac,0x3b, +0x68,0x4a,0x5a,0x50,0x69,0x0c,0xbf,0x9a,0x73,0x5d,0x35,0x35, +0x7c,0x92,0x82,0x86,0x95,0x9a,0x1e,0xd0,0x17,0xb2,0x81,0x03, +0x47,0xf0,0x84,0x75,0x68,0x09,0x63,0x71,0x07,0x26,0xa0,0x01, +0x8e,0xc1,0x15,0x3c,0x24,0x6e,0x25,0x4d,0x45,0xe9,0x8d,0xfc, +0x2d,0xf6,0x4a,0x51,0xa8,0x91,0x71,0xc0,0x54,0x67,0x01,0x09, +0x3b,0x39,0x24,0xa3,0x41,0x02,0x80,0x6a,0x1b,0x81,0x68,0x23, +0x06,0x8b,0x38,0xa4,0x87,0x51,0x9c,0x2a,0x06,0xa8,0xaf,0x6a, +0x4b,0x3d,0x06,0x3d,0xaa,0xfa,0x62,0x05,0x59,0xcd,0xe1,0xff, +0xc1,0x6e,0x0c,0x6c,0x95,0xac,0x82,0xe8,0x46,0xb0,0xed,0x23, +0x7d,0xe8,0x02,0x5d,0x0a,0x1e,0x96,0xac,0xe7,0x37,0xb3,0x9e, +0xf1,0x99,0x16,0xd0,0x56,0x09,0x6c,0x63,0x23,0x74,0x16,0xe0, +0x74,0x73,0x0c,0x07,0xcf,0xf4,0x08,0xce,0xe0,0x0c,0x02,0x7c, +0x4c,0xf8,0xa9,0xac,0x71,0x40,0xfe,0x35,0x01,0x66,0x70,0xe2, +0x2d,0x2d,0x0c,0xe0,0x4c,0x43,0x02,0xac,0xf8,0x30,0xd6,0x2a, +0x24,0xbb,0x5e,0x80,0x00,0x09,0xef,0xfb,0x08,0x6a,0x56,0x8f, +0x7c,0xeb,0xcb,0x67,0x5f,0x64,0xc6,0x1f,0x73,0xad,0x7e,0xaa, +0x80,0xcf,0x9f,0x5c,0x01,0x1d,0xfe,0x9f,0x2c,0xe8,0xbc,0x9a, +0x88,0x9f,0x0f,0xf7,0xb0,0x35,0x9a,0x26,0x64,0x59,0x32,0xaf, +0xf3,0xcf,0xdd,0x06,0x4d,0x05,0x35,0x49,0x3c,0xb4,0xc5,0xaf, +0x70,0x2d,0x4d,0x35,0xdb,0xa2,0x35,0x2f,0xd1,0x95,0x46,0xd0, +0x1a,0x34,0x51,0x06,0x6b,0x61,0x1d,0x68,0x82,0x0c,0xac,0x79, +0x58,0x43,0x69,0x51,0x69,0x53,0x5a,0x46,0x71,0xd8,0x6d,0x8c, +0x2e,0x0e,0xe0,0x25,0x13,0x38,0x60,0xcc,0x5d,0xe8,0x26,0x48, +0x9f,0x3f,0xa2,0x56,0x90,0xc6,0x79,0x6a,0xd8,0x81,0x4f,0x1a, +0xe1,0x09,0x0d,0x9b,0xd4,0x8d,0xa2,0x7d,0x73,0x8c,0xda,0x9e, +0xd3,0x14,0xbd,0x54,0x36,0x04,0x1b,0x1a,0xa1,0x81,0xde,0x7e, +0xd3,0x28,0x9a,0x37,0xc7,0xe8,0x49,0xc4,0x26,0x10,0x64,0x4e, +0x1b,0xd7,0xce,0xe7,0xd7,0x62,0x1b,0x03,0xb1,0x33,0x7c,0x65, +0x8c,0x63,0x8d,0x38,0x6c,0xe7,0x72,0xef,0x7b,0xe8,0xf5,0xf2, +0x3e,0x0c,0x12,0x28,0x64,0x60,0xd0,0x8b,0x51,0x28,0x1f,0xe6, +0x69,0x69,0x10,0x26,0x64,0x5b,0x30,0x4f,0x0b,0x2e,0x3c,0x00, +0x2d,0x05,0xd8,0xe3,0x17,0x94,0xc2,0xb5,0xb8,0x8e,0xfa,0xdd, +0xae,0x68,0x25,0x91,0x4d,0xc3,0x47,0x55,0xcc,0x1d,0xbc,0x46, +0x5b,0xba,0x76,0x87,0xbe,0x02,0xee,0xab,0x3b,0xe3,0x7d,0x29, +0x9a,0x11,0x93,0x49,0xdd,0xf7,0xe2,0xa3,0x3e,0x75,0x90,0x67, +0xde,0x47,0xfd,0xe8,0x7b,0x73,0xc9,0x4d,0x7c,0x49,0xf0,0x93, +0xeb,0xba,0xf0,0x09,0x2f,0x9e,0x84,0x47,0xc6,0xb8,0x49,0xed, +0xc9,0x0e,0xf6,0xce,0xbd,0xde,0x98,0x9b,0x59,0xb5,0x53,0x58, +0xd8,0xc4,0x0c,0x9c,0x67,0x65,0x86,0xed,0x15,0x92,0x58,0x6d, +0x08,0xac,0x63,0xa1,0x63,0x4f,0x2a,0xbb,0xaf,0xa8,0xe3,0x16, +0xf5,0x20,0x0f,0x2e,0xe2,0x41,0xe6,0x2d,0x87,0x89,0x30,0x07, +0x3f,0xff,0x91,0x59,0x2f,0x7e,0x49,0x5f,0x29,0x71,0x41,0xfc, +0x8c,0xc0,0x45,0x95,0x36,0xbd,0x52,0xf7,0x96,0x84,0xac,0xb2, +0x23,0xaa,0x76,0xab,0x59,0xb5,0x0d,0xae,0x14,0xe9,0x1f,0xb3, +0xba,0xb9,0xdd,0x38,0x8a,0x8b,0x36,0x9c,0xba,0x17,0x44,0x32, +0x1b,0x39,0xb1,0x17,0x44,0x30,0xa0,0xd1,0x52,0x59,0x2a,0x2c, +0xaa,0xd7,0xb2,0x6a,0x35,0xfe,0xc4,0x0c,0x52,0xc5,0xdc,0x52, +0xab,0xd7,0x73,0xa2,0x1a,0x7e,0x62,0x5e,0x48,0xcf,0x7f,0x14, +0x37,0x13,0x74,0x00,0x05,0x76,0xa1,0x62,0xf9,0x8a,0x62,0xbe, +0x0b,0x38,0x50,0x46,0xd0,0x23,0x95,0x9f,0xc4,0x88,0x2e,0x68, +0xcf,0x5f,0xf9,0x8a,0x80,0xd6,0xf3,0x47,0x30,0xa8,0xc5,0x65, +0x0d,0x7a,0x3e,0x02,0xb5,0x50,0x6b,0xf0,0x48,0x1c,0xd4,0xe2, +0xb2,0x06,0x0d,0x7e,0x08,0x5a,0x34,0x06,0xb0,0x90,0x24,0x12, +0xc4,0x61,0xf7,0x9b,0xa6,0x40,0xe0,0xf3,0x9b,0xf5,0xd0,0x9d, +0x87,0x5c,0x49,0x2e,0x2a,0x6d,0x0c,0x22,0x66,0xc1,0x01,0xe6, +0xbc,0x2b,0x6b,0x1e,0x9c,0x7d,0x59,0x80,0x20,0xd8,0xcf,0x69, +0xba,0xc3,0xf7,0xa4,0x0e,0x34,0xbe,0x65,0x51,0x37,0x09,0xba, +0xf7,0x87,0xd9,0xca,0xff,0x41,0xc1,0x42,0xec,0xd1,0x0b,0x0d, +0xe3,0x04,0x23,0xd6,0x3b,0x34,0xca,0x59,0x80,0x45,0xc5,0x1f, +0x43,0x89,0x95,0xb8,0x97,0x60,0x2d,0xea,0x32,0x43,0x38,0xb8, +0x0a,0x86,0xcc,0xc0,0xa4,0x06,0x77,0x68,0xa3,0x04,0xf9,0x95, +0x2b,0xf0,0xb9,0xd0,0x42,0x13,0xd4,0x72,0xf0,0x5c,0x8b,0x92, +0xfb,0x5b,0xb2,0x24,0x86,0x5c,0x21,0x38,0xe2,0xde,0x50,0x50, +0xfc,0x58,0x5d,0x01,0x7d,0x8e,0xf3,0x09,0xe7,0x99,0xa7,0x49, +0xc7,0xf3,0x1b,0x94,0x37,0xb3,0x1d,0x06,0xe9,0x86,0x39,0x39, +0x07,0x09,0x79,0xd6,0xcc,0xd5,0x33,0xd9,0x57,0xa1,0x9d,0x02, +0xfa,0x9a,0xbf,0xa4,0x24,0xb4,0xb7,0x33,0x45,0xc5,0x74,0x7e, +0x91,0x1d,0x33,0x68,0x6e,0x58,0xa0,0xa9,0x72,0xb4,0x73,0xd9, +0x8f,0xf7,0x4e,0x54,0x5e,0x3a,0x25,0x78,0x54,0x31,0x13,0xec, +0x3d,0xc7,0x61,0x07,0x05,0x75,0x76,0x50,0x4a,0xc4,0x33,0xc6, +0xb8,0xb4,0x59,0x5b,0x8f,0xb2,0x64,0x29,0x45,0xb1,0x9e,0xea, +0x30,0xc1,0xf0,0x01,0x16,0xe8,0x82,0xae,0xdf,0x59,0x40,0xb8, +0x20,0x5a,0xdc,0xa1,0xa0,0xc1,0x3e,0xc6,0xf9,0xd0,0x03,0xe4, +0x8d,0xf9,0xd0,0x47,0x10,0x3d,0xef,0xb4,0x00,0x6e,0x33,0x85, +0x22,0xc5,0xca,0x7d,0xae,0xf9,0x0b,0x08,0xa6,0x52,0x56,0x7d, +0x01,0xfe,0xcc,0x23,0x6a,0x08,0x70,0x1d,0x23,0x3d,0xbf,0x45, +0x54,0x9f,0xa1,0x01,0xb3,0x8e,0x6b,0xfe,0x0c,0xc7,0x31,0xc3, +0xa8,0xa5,0x40,0x7b,0xe6,0x1e,0xd7,0xdc,0x09,0x06,0x30,0xeb, +0x39,0x55,0x27,0x18,0xcd,0x3c,0xe7,0x9a,0x3b,0xc3,0x58,0xe6, +0x1b,0x4e,0xd5,0x19,0x7a,0x33,0x0f,0xa5,0xba,0x56,0x34,0x5e, +0x37,0x13,0x2b,0xc8,0x1a,0x0e,0x6b,0xd0,0x8b,0xe9,0xcf,0x89, +0x5d,0xa8,0x14,0x44,0x5c,0x42,0x0b,0x63,0x01,0x38,0xd0,0xaa, +0x20,0x1d,0x5e,0x4b,0x3f,0x8b,0xbd,0x54,0xdd,0x11,0xbe,0x62, +0x06,0x53,0xc2,0x47,0x8a,0x87,0x88,0x38,0x05,0xe3,0xa5,0x52, +0x00,0x1e,0x52,0x29,0x00,0x2f,0x7a,0xa5,0xb6,0xc5,0x8d,0x0c, +0xe6,0xea,0x51,0x92,0x5d,0x55,0x2b,0x89,0x78,0x43,0x3d,0x91, +0x69,0x12,0x57,0x1a,0xab,0x07,0xb2,0xea,0x1b,0xa2,0x11,0x63, +0xa4,0x3e,0xd2,0xc8,0x6a,0xce,0x14,0x55,0xa4,0xea,0x3b,0x55, +0xf9,0x80,0x2a,0xd0,0xff,0xc9,0xb4,0xa5,0x7b,0x89,0x04,0x86, +0xa1,0xf5,0x45,0xb0,0xfe,0x5e,0xfa,0xbf,0x2f,0x0b,0x4f,0x29, +0x39,0x4f,0x38,0xbc,0x07,0x93,0x69,0x67,0xe1,0x1e,0xd8,0x31, +0x4f,0x39,0x94,0x6e,0x42,0x5f,0x2b,0xb4,0xee,0x03,0xd6,0xf4, +0x7f,0x1c,0x46,0x93,0xdd,0x41,0x34,0xf2,0x06,0x7d,0xeb,0x01, +0xcd,0xe5,0xdf,0x59,0xa3,0x3e,0xcd,0x04,0xf6,0x8a,0xd5,0x52, +0x7f,0x5e,0xa1,0xc7,0x71,0x5b,0xb1,0x07,0x4c,0xa7,0x5c,0x50, +0xd3,0x43,0xa4,0x2d,0xa3,0xe9,0x46,0xc3,0xa6,0x3a,0x31,0x99, +0x6a,0xab,0xea,0x2b,0x71,0x3e,0x01,0x8b,0x87,0x61,0x0d,0x38, +0x01,0xdb,0xd3,0xb8,0x4d,0xd5,0x93,0x18,0xa5,0xd9,0x5f,0x9a, +0xc5,0xaf,0x5e,0xc7,0xb9,0x85,0x4e,0xb7,0x16,0xfc,0xeb,0x2a, +0xa1,0x94,0x03,0xf6,0x52,0x13,0x68,0xbd,0xf0,0xaa,0x71,0x38, +0x2a,0xf8,0x7a,0x31,0xc5,0xd3,0x8f,0xfb,0x4d,0x52,0x8c,0xf6, +0xf7,0xd7,0xe7,0x5d,0xa0,0x2d,0x0b,0xc3,0x1d,0x1b,0xfa,0xf7, +0xb7,0x9e,0x84,0x2c,0x7f,0x69,0x11,0xb9,0x78,0x2c,0xa7,0x8c, +0x7a,0xf8,0x33,0xc7,0xfc,0x28,0x20,0x99,0xe1,0x9c,0x83,0xef, +0xf9,0xdb,0x52,0x90,0x9e,0x4d,0x28,0x9e,0xdb,0xe9,0xd2,0x50, +0xd0,0x18,0xda,0xdd,0x05,0xc5,0xd5,0x88,0x52,0xab,0xc3,0xfc, +0x06,0x68,0xba,0xd1,0x9c,0x38,0xe1,0xfe,0x1a,0x6e,0x52,0x64, +0xb8,0xbb,0xa1,0xa2,0x3e,0x99,0x5c,0xcb,0xaa,0xae,0xe7,0xc1, +0x8f,0xad,0xca,0x9d,0x62,0x30,0x64,0x92,0x9d,0xb6,0x30,0x82, +0xed,0x3f,0xa9,0xe2,0x99,0xd4,0xc6,0x3d,0xd2,0xaf,0xd8,0xe2, +0x5a,0x18,0x9f,0x51,0xce,0xd8,0x1c,0x8b,0x28,0xba,0xa4,0x78, +0x5b,0x7b,0xfa,0x3b,0xfe,0x21,0xfb,0xb2,0xd6,0xad,0xef,0xa4, +0x48,0x6f,0xa7,0xb9,0x42,0xaa,0x15,0xd3,0x78,0xfc,0x54,0xf5, +0x0f,0x0a,0x18,0x82,0x6d,0x1f,0xa2,0x31,0x9a,0x60,0xbb,0x91, +0x38,0x84,0xa7,0x95,0xbf,0x27,0x86,0xa9,0xee,0x17,0x22,0xf9, +0x35,0xa3,0x27,0xa8,0x12,0x6f,0x60,0xd3,0x06,0xee,0xe2,0xe1, +0x94,0xd2,0xab,0x0a,0xaa,0xf8,0xed,0xee,0xbe,0x2f,0xa9,0x8b, +0x0a,0xbe,0x7e,0x0e,0x79,0x76,0xa1,0xe2,0x35,0xff,0x88,0x7d, +0x75,0xc1,0x6e,0x88,0x81,0xdf,0x14,0x6b,0x01,0xfd,0x58,0xd3, +0xc0,0xea,0x6b,0x12,0x05,0x77,0x48,0xbf,0x53,0x86,0x8d,0xe1, +0x7c,0x56,0x19,0x63,0x7b,0x38,0xac,0xb4,0x56,0xf1,0xe6,0x72, +0xc5,0x4b,0xfe,0xa0,0xba,0xc7,0x09,0x16,0x86,0x41,0xbb,0x07, +0xd4,0xc9,0xf5,0xc3,0x76,0xcf,0x69,0x70,0x65,0x8c,0xed,0x07, +0x63,0x7f,0x01,0xee,0xc0,0x48,0xf2,0xb2,0x6e,0xb2,0xce,0xe8, +0xc9,0xf6,0x03,0x84,0x65,0x70,0xb6,0x25,0x0d,0xd4,0x27,0x62, +0x24,0x76,0xa8,0x83,0x0e,0x30,0x9e,0x1e,0xee,0xb0,0x4d,0x9e, +0x27,0x4c,0x79,0xe4,0x1e,0x99,0x8f,0x50,0x47,0xb2,0x9a,0x7d, +0xc5,0x27,0x04,0x8d,0x4f,0x8f,0x82,0xf6,0x0f,0x4a,0xcb,0xa1, +0x07,0xd5,0x73,0xee,0xd4,0x96,0x94,0xe3,0x69,0xbb,0x43,0xa7, +0x6e,0xe3,0xd7,0x2c,0x5c,0xb7,0x60,0x01,0x35,0xce,0x4d,0xe3, +0xa1,0x7d,0x59,0xe1,0xbe,0x8c,0x14,0x3e,0xa3,0x6f,0xdd,0x2d, +0x36,0x37,0x6a,0x77,0x20,0x8d,0x1a,0x77,0x1c,0xd9,0x9c,0x9e, +0xa9,0x80,0xae,0x13,0xaf,0x63,0x3b,0x23,0xbb,0xa9,0x53,0xa6, +0xf3,0xab,0xd9,0x92,0xc5,0x31,0x99,0x2e,0xca,0xa9,0xb3,0x16, +0x4c,0x8f,0x13,0x96,0xb2,0x67,0xe2,0x22,0x53,0xed,0x95,0xba, +0x9e,0x16,0x68,0x28,0xd4,0x64,0x93,0x07,0x99,0xa9,0xc5,0x69, +0x07,0x17,0x4c,0xdd,0xc5,0xa3,0x15,0x37,0x26,0x2a,0xca,0xd7, +0x66,0xfa,0xd9,0xe7,0xbc,0xa8,0x9d,0x49,0x1a,0x53,0xf3,0x1a, +0xf9,0x23,0x6c,0x43,0xaa,0xaf,0xb1,0x71,0xb8,0x8f,0x89,0x10, +0xc5,0x1a,0x87,0xe7,0x37,0xb6,0xf8,0x63,0x0f,0x22,0x76,0x62, +0xeb,0x53,0x27,0x59,0x8c,0xf7,0xf0,0x1f,0x20,0xe0,0xdd,0x09, +0xf0,0x9a,0x85,0xee,0x8d,0x75,0xd0,0xfe,0x66,0x70,0x81,0xdd, +0x41,0xe1,0xbd,0x54,0x29,0x0a,0x53,0x54,0xcb,0x48,0x78,0x62, +0xdc,0x21,0x1a,0x6a,0x1c,0x4a,0xdc,0x99,0x9a,0xba,0x60,0xe7, +0x0c,0x1a,0x6a,0xcc,0x58,0x10,0x17,0x2e,0x34,0x8f,0x0e,0x26, +0x62,0xc6,0x0d,0x75,0x06,0xab,0x39,0x42,0x55,0x45,0x0c,0x8a, +0xc2,0xea,0x79,0x55,0xc7,0x1b,0xcd,0x06,0x0f,0xcd,0xd9,0x77, +0x2c,0x92,0xd6,0xea,0xbd,0x7f,0x3f,0xb8,0xb0,0x77,0xc6,0xe3, +0x51,0xb4,0x66,0x06,0x71,0x70,0x03,0x66,0x41,0x04,0xfa,0x31, +0x2f,0x38,0x4c,0x80,0x55,0xcc,0x06,0x71,0x65,0xcb,0xdb,0xc1, +0x51,0xd5,0x81,0xdc,0x50,0xb9,0xdd,0x68,0x9e,0xc4,0x79,0x85, +0x4e,0x73,0x12,0x4c,0xb8,0x0f,0x88,0x9f,0x62,0x35,0xce,0x23, +0xa4,0x85,0xf8,0x96,0x4b,0x5b,0x2b,0x3d,0xf7,0x90,0x81,0xff, +0xea,0x4b,0x0d,0x68,0x3c,0xf6,0x38,0x63,0xb7,0x57,0xf8,0x86, +0xbb,0x76,0xe4,0x78,0x4d,0xbd,0xe2,0xae,0x6f,0x86,0xcb,0x7e, +0x7e,0xc3,0x7d,0x4a,0x31,0xf7,0x51,0x3c,0x78,0x5f,0x52,0x82, +0x0c,0xf6,0x83,0xf6,0x03,0x28,0xec,0x27,0x42,0xfb,0xef,0x68, +0x7c,0xdc,0x17,0xdb,0x7f,0xf7,0x1e,0x20,0x03,0xb0,0x2f,0x7f, +0x59,0xeb,0x71,0x79,0x0d,0xc8,0xf8,0xab,0x2c,0xc8,0xca,0x27, +0xeb,0x0c,0x73,0x98,0x8c,0x32,0xc1,0x90,0x45,0x99,0x43,0xcd, +0x13,0x81,0xb2,0x86,0xf6,0xb5,0x78,0x0d,0xfb,0x5e,0x3b,0xfe, +0xad,0x06,0xdd,0xbf,0xd1,0xbc,0x82,0x83,0x64,0x9c,0xd9,0xba, +0xe6,0x8c,0x80,0xff,0x43,0x54,0x2b,0x6e,0x8c,0xde,0xc0,0xfe, +0x3b,0xc8,0xff,0xac,0x16,0x58,0x4c,0x5b,0x81,0xde,0xad,0xa3, +0xff,0x7d,0xa7,0x35,0xd8,0x33,0x27,0x9d,0x46,0x08,0x1e,0x37, +0x52,0xb9,0x87,0xde,0xc5,0x6e,0x89,0xfc,0xc6,0xef,0xde,0x77, +0x54,0x25,0x23,0xd8,0xb5,0xca,0xf0,0x87,0x5b,0x67,0x0a,0xa1, +0xe3,0x6e,0x7e,0x53,0x36,0x53,0xb7,0x3d,0xe9,0x44,0x89,0xf2, +0x4c,0x4a,0x88,0xa9,0x45,0x84,0x4f,0xf8,0x4c,0xa1,0xd0,0x95, +0x29,0xc9,0x49,0x29,0xbf,0xaf,0x80,0xb6,0x6e,0xb7,0x7b,0x69, +0x07,0x18,0x0f,0x58,0xc4,0xaf,0xf2,0x67,0x8c,0x97,0x45,0xcc, +0xf4,0x55,0x3a,0x44,0xe4,0x5c,0xb9,0x74,0xb4,0xb8,0x34,0x5b, +0xf0,0x2e,0x67,0x26,0x7b,0x05,0x4e,0x1a,0x20,0xc5,0x08,0x62, +0x0d,0x75,0x8f,0xed,0xc5,0x7e,0xd8,0xa9,0x0e,0x3a,0xc1,0xe0, +0x86,0xbe,0x6c,0xe8,0x92,0x6d,0x69,0xc2,0x69,0xf3,0xe1,0x6a, +0xc2,0x79,0x84,0x46,0x39,0x49,0xf1,0x3c,0x0d,0x82,0xc7,0x67, +0x7a,0x57,0xc4,0x48,0xaa,0x2d,0x41,0xaa,0x13,0x67,0x1a,0x7e, +0xa1,0xf6,0x66,0x71,0xce,0x77,0x02,0xdc,0xbd,0x81,0xaf,0x59, +0xec,0x6e,0x6c,0x8e,0xed,0x5b,0x72,0x89,0x46,0x0a,0x3a,0x74, +0x62,0xae,0x72,0x6a,0x6f,0x18,0x21,0xc5,0x09,0xde,0xa0,0xc3, +0xdc,0xe0,0xd4,0xd2,0x4d,0xe9,0xf9,0x6b,0x22,0x1a,0xe3,0x27, +0xd4,0x83,0xa8,0x8d,0x69,0x40,0x39,0x80,0xa3,0xa5,0xfb,0x31, +0x57,0x38,0xf5,0x74,0xe8,0x40,0x7d,0x86,0x38,0x1d,0x7a,0x32, +0x97,0xa5,0x2b,0xe5,0xfb,0xab,0x8e,0xcc,0x35,0xa9,0x6e,0x7f, +0xa9,0xae,0x2a,0x9e,0x50,0x18,0x0e,0x63,0xd6,0x72,0x18,0x81, +0x7d,0x98,0xa1,0x1c,0x1c,0xa3,0x91,0xf3,0x2e,0xda,0xf0,0x43, +0x0e,0xfd,0xa1,0x9f,0xe4,0x20,0xfc,0x69,0x7d,0x6a,0xc2,0x93, +0xa8,0xb3,0x3b,0x08,0x3e,0x0c,0x95,0xef,0x02,0x32,0x31,0x71, +0x4e,0xd5,0x2c,0x5e,0x35,0x12,0x57,0x33,0xd7,0x39,0xb5,0x1f, +0x8c,0x61,0x36,0x71,0xa2,0x1f,0xa5,0x8e,0x92,0x55,0x4e,0xa3, +0xee,0xce,0xd9,0xcc,0x3d,0x73,0x09,0xce,0xa2,0x31,0x81,0x6b, +0x9c,0xa8,0x83,0xb5,0x4c,0x85,0xd8,0xdb,0x1c,0x4b,0x58,0xf5, +0x00,0xa8,0x62,0xac,0xd4,0xa3,0x25,0x6f,0x72,0x93,0x54,0xbd, +0x82,0xbd,0xec,0x85,0xb2,0xac,0xf2,0xad,0xc2,0x2e,0xd6,0x61, +0x6b,0x79,0xe0,0x05,0x25,0xec,0xd5,0xae,0x7a,0xc0,0x96,0x84, +0x1e,0xf2,0xe6,0x71,0x0b,0x6b,0x13,0x91,0x53,0x4e,0xe3,0x08, +0x87,0x08,0x7f,0x5b,0xe9,0xd2,0x3b,0x74,0x86,0x8b,0xa0,0x39, +0x53,0x65,0x40,0xa1,0x7c,0x49,0xdd,0x89,0x15,0x6b,0x2c,0x7f, +0x3e,0xa3,0x37,0x37,0x13,0x97,0xf4,0x19,0x05,0x3c,0x6c,0x61, +0xcf,0xa7,0xf8,0x3b,0x08,0x4d,0x6c,0x79,0x4a,0x4e,0xa5,0x74, +0x59,0x90,0x7e,0xa8,0x44,0x78,0x60,0xad,0x8d,0x7b,0xb9,0x49, +0x0e,0x81,0x0e,0xcb,0x68,0xa6,0x56,0xbe,0xcc,0x31,0x6b,0x92, +0x12,0xf7,0xbe,0xb2,0xa6,0x3e,0x65,0xa3,0x18,0x47,0xbc,0x0f, +0x46,0x1c,0x5e,0xc0,0x67,0xa5,0x30,0xf3,0x93,0x96,0xed,0xde, +0xa7,0x48,0xdc,0x9c,0x9c,0x98,0xca,0x6f,0xdf,0xb7,0xeb,0x40, +0xba,0xa2,0x20,0x26,0x25,0x3a,0x91,0x0f,0x8c,0x60,0xf6,0xcc, +0xdd,0xba,0x70,0xb6,0x62,0xc1,0xca,0x39,0x0b,0xc2,0xf9,0x25, +0xb3,0x63,0x67,0x86,0x2a,0x34,0xdf,0x09,0xaa,0x19,0x1f,0x93, +0x63,0x69,0x06,0x8b,0x4b,0xc9,0x3b,0x69,0xa8,0x41,0x1a,0x71, +0xc0,0x43,0x34,0x8b,0x56,0x52,0x46,0xd2,0xbc,0x2b,0x8d,0xdf, +0xc1,0x1e,0xda,0xbb,0xfd,0xd0,0x26,0xa1,0x60,0x69,0xda,0xac, +0xec,0x20,0xd9,0x45,0xae,0xcc,0xd3,0x38,0xd5,0x45,0xb9,0x88, +0x0d,0x6b,0xc9,0xc1,0xa4,0xde,0xbe,0x33,0xbd,0x24,0x39,0x5c, +0x91,0x11,0xad,0x89,0xcd,0xbe,0xb0,0xb4,0x28,0x3e,0x37,0x95, +0x99,0x7d,0x6c,0x69,0x72,0x9a,0x22,0x67,0x77,0xfa,0x9e,0x4c, +0x7e,0x7f,0xd1,0xce,0x13,0xc5,0x8a,0xca,0xd9,0x69,0x61,0x47, +0x78,0xbf,0x70,0x66,0xdf,0xb4,0x6d,0x73,0xc2,0x14,0xfe,0x0b, +0x43,0xe7,0x07,0xf3,0xb3,0x3c,0xe3,0xa6,0x7a,0xd0,0x40,0x46, +0x57,0xa2,0x94,0x66,0x4e,0xfc,0xfb,0xcc,0x49,0xca,0xa7,0x84, +0xf7,0xf9,0x94,0xa0,0x5e,0x9f,0x4b,0x70,0xc5,0x28,0x58,0xc1, +0x42,0xd5,0x7e,0xe6,0x24,0x35,0x83,0x9d,0x35,0xcc,0x69,0x64, +0x1a,0x3f,0xaa,0xc0,0xae,0x6e,0x5a,0x66,0x99,0xdc,0xf9,0x60, +0xe4,0xc9,0x55,0x65,0x32,0x71,0x3c,0xbb,0xd2,0x35,0x2a,0xd4, +0x63,0x5e,0xda,0x14,0xf9,0xc5,0x23,0x45,0x67,0x37,0xdf,0x97, +0x41,0x9b,0x3a,0x6c,0xc7,0x42,0xb7,0x85,0xbd,0xea,0x71,0x84, +0x12,0x47,0xf6,0x32,0xc5,0x6e,0x0b,0x05,0xb8,0x0e,0xed,0xc9, +0xed,0x9a,0x10,0xe3,0x9d,0x82,0x7a,0x0c,0xdb,0xb8,0xb3,0x26, +0xe3,0x8e,0x52,0x0a,0xcc,0x6f,0x93,0x2b,0x22,0xd9,0xc8,0xfa, +0x1d,0xbd,0x34,0xf5,0xba,0x72,0xf7,0xce,0xaf,0xd7,0x27,0x08, +0x18,0x52,0x07,0xf3,0xb8,0x1d,0xb9,0xf9,0xbb,0x4b,0x95,0x6f, +0x4f,0x3b,0xe8,0x18,0x86,0xb9,0x3b,0x86,0x0a,0xf9,0xd6,0x4c, +0x63,0x41,0xfe,0xe5,0x7f,0x2a,0x60,0xf0,0xf0,0x87,0xa8,0x65, +0xef,0xbd,0x30,0xd6,0x9b,0xbf,0x62,0x3e,0x84,0x5b,0x17,0x37, +0x7f,0xdd,0x3c,0xa5,0xad,0x6d,0xe2,0xb9,0x18,0x41,0x9b,0xca, +0xee,0xa9,0x78,0x83,0xb4,0x8c,0xc3,0x59,0xd2,0xd0,0x49,0xbd, +0x89,0xd1,0x9c,0xab,0xfa,0x9a,0xe8,0x17,0x07,0xd4,0xae,0xe4, +0xe1,0x71,0x38,0x83,0x16,0x5c,0xc3,0x4a,0x06,0x2c,0x38,0x38, +0x18,0xcd,0xe0,0x18,0xae,0x6e,0x05,0x03,0x84,0xbb,0xe6,0x95, +0x6d,0xb6,0x99,0xc7,0xd9,0xc9,0x0c,0x0c,0xe6,0x4c,0xb6,0x30, +0x38,0x84,0x53,0xcb,0x33,0x19,0x18,0xca,0x99,0xc7,0x33,0x9a, +0xfe,0xe2,0x5d,0x6a,0x17,0x6a,0xc6,0xbe,0xae,0xcc,0x3d,0x56, +0x78,0x94,0x26,0x63,0xa6,0x47,0xcf,0x04,0x5c,0x52,0xd6,0x97, +0x14,0x41,0xfb,0x54,0x61,0xef,0x05,0xa6,0x36,0xe9,0x70,0xce, +0x59,0x65,0xf9,0x09,0x2f,0x03,0x97,0x05,0xfe,0xd1,0x11,0xc2, +0x59,0x6f,0x26,0xbb,0x68,0x77,0x55,0x35,0xf5,0x62,0x93,0x6f, +0x69,0xdb,0xf8,0x4e,0xf7,0x9a,0xce,0xaf,0x64,0xeb,0xa7,0xbb, +0x66,0x5b,0x2a,0x4d,0x5d,0x3c,0xb1,0x7d,0xb8,0x30,0x6f,0x12, +0x63,0x31,0x37,0xda,0xdf,0x59,0x69,0x3f,0xb5,0xf0,0x5a,0x49, +0x62,0xce,0xe1,0x14,0xc1,0xa9,0x80,0x09,0xf0,0x5c,0x68,0x3d, +0x45,0x01,0x8d,0xc3,0xc9,0x86,0x6d,0x1b,0xb6,0xad,0xdf,0xbe, +0xe7,0x82,0xfc,0xce,0xbe,0xf4,0xcc,0x0a,0xe5,0xa9,0x8c,0x19, +0x7e,0x47,0x84,0x35,0x4b,0xd7,0x2c,0x5d,0xbb,0x64,0xfe,0x24, +0xb9,0xde,0xec,0xd0,0x60,0x3b,0xa5,0x7b,0xc8,0xa1,0xdc,0x28, +0x6a,0x12,0x0a,0x54,0xce,0x64,0x7a,0xc8,0x02,0x4f,0x07,0x85, +0x43,0xa2,0xe7,0xd1,0x10,0x1e,0xdb,0x60,0x9b,0x02,0x6f,0x68, +0x0f,0xed,0x99,0x39,0x19,0x45,0x4b,0x4a,0x95,0xa5,0x45,0xdb, +0x93,0x33,0x04,0x68,0x8f,0xed,0x0b,0x0a,0xb0,0x0d,0xb4,0x61, +0x8e,0x66,0x24,0x16,0x95,0x2b,0xca,0x17,0x14,0x4d,0xcf,0xe0, +0x81,0xde,0xf0,0x2e,0x40,0xfa,0x90,0x49,0x0e,0xf1,0xdc,0xee, +0xac,0x74,0xf6,0x5c,0x32,0x27,0x44,0x40,0x5a,0xdd,0xdb,0x9b, +0x81,0xcf,0x70,0x13,0xb9,0x9d,0x5f,0xfa,0x94,0xbf,0xc0,0x3e, +0xcd,0x77,0x1e,0x3b,0xd6,0xc7,0x79,0xa8,0x30,0x89,0x1d,0xea, +0x53,0x4a,0x43,0xa2,0x8f,0x85,0x2c,0x86,0x69,0x7c,0x0c,0xb0, +0x21,0x41,0x54,0x13,0x18,0x09,0xda,0x30,0x12,0xb5,0x4b,0x0f, +0xa0,0x29,0x35,0x2f,0x46,0x2c,0x9a,0xa2,0x0f,0x53,0x8a,0x6b, +0x5b,0x79,0xf2,0x47,0xb5,0x34,0xc5,0x4f,0xc4,0x17,0xa4,0x89, +0x05,0x7a,0xcf,0xf9,0x00,0xd2,0xe7,0x48,0xcb,0x39,0xcf,0x6c, +0x31,0x75,0x5f,0x93,0xf1,0x62,0x04,0xce,0x50,0x47,0x8c,0x17, +0x33,0xa0,0x84,0x46,0x31,0xb2,0xba,0x3b,0xdc,0x2f,0x51,0x8c, +0xd9,0x08,0x16,0xfc,0xf1,0xd9,0x1f,0x79,0xf0,0x3f,0x0c,0x80, +0xea,0xd4,0xe1,0xbf,0xf7,0xdb,0x62,0x3f,0x38,0x43,0x9a,0xc4, +0x4c,0x23,0x56,0xf3,0xa8,0xf8,0x98,0xa8,0x7a,0xa2,0x53,0x35, +0x38,0xc1,0xec,0x3a,0x9c,0x0d,0x4e,0x53,0xd0,0xa9,0xb9,0x27, +0xab,0x99,0x42,0x1f,0xc0,0xec,0x96,0x07,0x62,0x9b,0xdf,0x3d, +0x57,0xb7,0x69,0x39,0xe0,0x6c,0xaa,0xf6,0x9d,0x54,0x9e,0xad, +0x0e,0x65,0x86,0xaa,0xda,0x11,0x13,0x55,0x25,0x76,0x6a,0xae, +0xa4,0x07,0xd3,0x4b,0xf0,0x88,0x03,0x66,0xc8,0x23,0x64,0x90, +0x1d,0x3a,0x02,0x19,0x9a,0x0f,0x37,0xaa,0xc6,0x90,0x91,0x79, +0x11,0xe7,0xf8,0xc3,0xec,0xb9,0xbc,0x94,0x87,0x0f,0x7d,0x53, +0xec,0x85,0x68,0xd6,0xde,0x37,0x62,0xa4,0xa0,0xb9,0x59,0x95, +0xf0,0xe7,0x83,0xaa,0x1f,0x53,0x08,0x53,0x34,0xfe,0xb4,0x9d, +0x77,0x3d,0x3f,0xce,0x58,0x52,0xfc,0x7c,0x8c,0x49,0x6d,0x4d, +0xda,0x60,0xaa,0x1e,0xfb,0x6f,0x51,0xf0,0xa3,0xca,0xa7,0x35, +0x36,0xe2,0x3d,0x8d,0xbf,0xfc,0x44,0x53,0x9c,0x41,0x93,0x67, +0xa3,0xb3,0x81,0x20,0x80,0x70,0x36,0xab,0xa9,0xc9,0x29,0x0b, +0x05,0x14,0x9c,0x02,0x8d,0xf8,0x52,0xad,0x8c,0x94,0xc4,0x5a, +0xbe,0x89,0xad,0x4d,0x59,0x10,0x12,0x12,0x31,0xdf,0x82,0xfa, +0x30,0x8b,0x88,0x3d,0x19,0x82,0x5a,0x27,0x52,0x4a,0x08,0xd5, +0x4c,0xb5,0x34,0x16,0xa4,0x66,0x96,0xa8,0x3f,0xa3,0x2d,0x04, +0x49,0xbf,0xc6,0x70,0xf6,0x64,0x4b,0x0b,0xfc,0x2f,0x2d,0x64, +0x4a,0x2d,0x5c,0x61,0xeb,0x8e,0x2f,0x08,0x0e,0x89,0x5c,0x60, +0x2e,0x4c,0xa4,0x2d,0x24,0x66,0x08,0xce,0x78,0xa2,0xb5,0x1a, +0x19,0x29,0x7b,0xde,0xd7,0x98,0x1f,0xf2,0x61,0x0d,0x4d,0xd1, +0x56,0xda,0xc0,0xc4,0xb2,0x4f,0x16,0x5a,0xbf,0x46,0xa5,0x12, +0xbb,0x18,0x4e,0xa0,0xe9,0x2f,0xb9,0x6e,0xf1,0x6d,0x8c,0x70, +0xb8,0x91,0x31,0xdb,0xed,0x52,0x74,0x53,0x71,0xb5,0xa0,0xb8, +0x91,0x6a,0xec,0x83,0xd3,0x16,0x28,0xdb,0x24,0x80,0x31,0x0b, +0x71,0x99,0xad,0xf9,0x0b,0x4d,0x91,0x7f,0xa7,0x14,0xf3,0x49, +0x5a,0x03,0x5a,0x3e,0x9c,0xe5,0xc1,0x48,0xd7,0xc3,0x44,0x94, +0xbe,0x61,0xdd,0x71,0x9a,0x2f,0x74,0xc5,0x96,0x7f,0xc7,0x7c, +0x81,0x5e,0x53,0x4f,0x77,0x9c,0xf2,0x1d,0xf3,0x2e,0x41,0x1e, +0xd5,0x0a,0x5e,0xb5,0x44,0x1a,0x8b,0x6d,0x7b,0x39,0xea,0xdc, +0x5c,0x3e,0x39,0x3f,0x3c,0x99,0x89,0xd8,0x3b,0x27,0xf1,0x8c, +0xe2,0x4c,0x72,0x62,0xca,0x5e,0x3e,0x35,0x79,0x4e,0x3e,0x63, +0x3f,0xd7,0x2c,0x0a,0xdb,0x2a,0xa4,0xb2,0x5b,0x69,0xd9,0xf0, +0xc4,0x85,0x87,0xf9,0x6d,0xec,0xe1,0xc4,0xdd,0x54,0x27,0x77, +0x47,0xd3,0x84,0x20,0x7a,0xc1,0xc2,0x70,0x89,0x06,0x55,0x82, +0x6a,0x90,0xa4,0xb2,0xef,0x1f,0xb7,0xa8,0xec,0xfb,0xc7,0x54, +0x65,0xd1,0x55,0xa3,0x95,0x27,0x9a,0xaa,0x08,0xda,0xaa,0x55, +0xb1,0x4b,0x6d,0x6d,0x71,0xc9,0xc5,0x8b,0x1e,0x25,0x16,0x16, +0x1e,0x2e,0x56,0x7c,0x91,0x56,0x46,0xd2,0xfe,0x0c,0x9a,0x07, +0x66,0x24,0xcd,0x0a,0x09,0x99,0x3b,0x2b,0x44,0x98,0xc3,0x86, +0xcc,0xdd,0x4f,0xd9,0x37,0x48,0x2c,0x22,0xb6,0x87,0x5d,0xcf, +0xe5,0xee,0x3f,0x9a,0x95,0xb0,0x6e,0xc7,0x9a,0x04,0x7e,0xfd, +0xfa,0xbb,0xb1,0x4c,0x31,0xd7,0x7f,0xef,0x9a,0x28,0xc6,0x7e, +0x45,0xec,0xe2,0x79,0xca,0x39,0x4b,0x92,0x0e,0x1e,0xdb,0x91, +0xb4,0x2b,0x41,0x08,0xcc,0x60,0xe6,0x2d,0x9a,0x1d,0xe1,0x24, +0xd1,0xff,0x4e,0x21,0x5e,0x20,0x29,0xb5,0x68,0xf1,0xed,0x1c, +0x9a,0x00,0x4f,0xc0,0x94,0x5f,0x2f,0xe8,0xc3,0x41,0xe2,0x5b, +0xe2,0xb5,0x67,0x5a,0xf2,0x62,0x3e,0x33,0x8b,0x89,0xdd,0xb6, +0x6c,0xcf,0x5e,0x45,0xf2,0x96,0x84,0xfd,0x07,0x0e,0x2c,0x1a, +0x71,0x83,0xdf,0x17,0xcf,0x94,0x70,0xf3,0x57,0x31,0xb5,0x5e, +0xc1,0x39,0xd4,0x44,0xcf,0xf2,0x73,0x69,0xe9,0xf0,0x72,0x71, +0x3b,0x81,0xc1,0xd8,0xe1,0x58,0x2e,0x76,0x83,0xae,0x40,0xff, +0xa6,0xe5,0x22,0xbd,0xa6,0xed,0xf5,0xfb,0x8e,0x34,0xa9,0x62, +0x8d,0x5a,0x92,0xb5,0xc3,0x04,0xa6,0x63,0x5b,0x06,0x97,0xe1, +0x74,0xb5,0xfd,0x15,0x50,0xc3,0x76,0x7c,0x72,0x05,0x9e,0xc0, +0x37,0xa8,0xbe,0x22,0xae,0x95,0xe6,0xad,0x3a,0x33,0xaa,0xfe, +0x6a,0x3d,0xb2,0x58,0xdd,0x1e,0xfc,0xa8,0x54,0xe6,0xa9,0xc2, +0xc8,0xa4,0xa3,0x53,0x53,0x62,0xf9,0x35,0x5c,0xf0,0x82,0x59, +0x81,0x42,0xc4,0xd9,0x4c,0x98,0xc4,0xdd,0x2d,0x2c,0xb9,0xdf, +0x14,0x92,0x17,0x96,0x24,0x84,0x07,0x30,0xc7,0xe3,0xf6,0x85, +0x7b,0x29,0x5c,0x67,0x44,0x3b,0xf2,0xd3,0xae,0xb2,0x2f,0xc3, +0xcb,0x8c,0xed,0x02,0x03,0x4d,0xf9,0x53,0x71,0x24,0x7b,0xf7, +0xbe,0x54,0xca,0xe8,0x94,0xdd,0x11,0x8e,0x82,0xbe,0x1f,0x17, +0x38,0xa3,0xa8,0x94,0x9a,0x4c,0x37,0xb1,0xab,0xb4,0xb8,0x74, +0x39,0x57,0x85,0xce,0xcc,0x65,0x76,0x32,0x38,0x33,0xf0,0xfd, +0x1d,0x75,0x57,0x36,0x94,0x7a,0x24,0x2b,0x36,0x0d,0xdb,0x30, +0x98,0xa9,0xee,0x4d,0x09,0x1e,0xab,0x9a,0x44,0x42,0x3c,0xe6, +0xdb,0x98,0x2a,0xd0,0xfe,0xe7,0x41,0xad,0x8e,0x8f,0x0f,0x17, +0x57,0xf3,0x6f,0x4c,0x4f,0x94,0x8d,0xa8,0x62,0x32,0x8a,0xf6, +0x54,0xd5,0x2b,0x7e,0x1d,0x5e,0xea,0xa0,0x13,0xed,0x31,0x85, +0xef,0x57,0x3f,0xd5,0x91,0x81,0x10,0x6b,0x92,0x9c,0x59,0x94, +0x50,0xa6,0x94,0x46,0x96,0x06,0x3e,0x1f,0x89,0xc4,0x25,0xce, +0x2b,0x32,0x54,0x50,0x97,0xc1,0x97,0xa4,0x64,0x67,0xe1,0xf1, +0x74,0x5e,0xf4,0xc7,0x46,0x66,0x4e,0xb0,0xe7,0x62,0x47,0xa5, +0x34,0xdc,0x34,0x70,0xf0,0x43,0x20,0x92,0x45,0xd7,0x23,0xbf, +0xe7,0x8c,0x1d,0xbb,0x39,0x73,0x53,0x79,0xb6,0x02,0x7c,0xb1, +0x07,0x74,0xc2,0x7f,0xd0,0x77,0xf5,0xc0,0x4e,0xe8,0x1b,0xb0, +0xc9,0x61,0x73,0x30,0x5f,0x05,0xdd,0x08,0x8c,0x7b,0x7e,0x1d, +0x06,0xf2,0xef,0x5f,0xa6,0x8f,0xe3,0x82,0x56,0xfa,0x2c,0x09, +0x11,0xd4,0x17,0xd8,0xc5,0x19,0xab,0xf2,0x4f,0x52,0x91,0xcf, +0x55,0x8d,0x26,0xda,0x97,0x6d,0xa9,0x97,0xe8,0x78,0xf9,0xfc, +0xab,0x57,0x66,0xe7,0xb1,0x23,0x76,0x30,0xb3,0xd5,0xe6,0x4f, +0x6b,0x55,0xe6,0x1c,0x3b,0xcf,0xd7,0xb0,0xe7,0x73,0xa6,0xd9, +0xd8,0xf8,0x4f,0xb3,0x15,0x26,0xb3,0xb6,0xfe,0xc7,0x2a,0x69, +0x8a,0xae,0xea,0x4d,0xb0,0x73,0xa3,0x79,0xd1,0x32,0x7e,0x25, +0xe7,0xb1,0xc4,0x64,0x62,0x2f,0x85,0x76,0xb1,0xd1,0x95,0x30, +0x3e,0xab,0x9c,0xb1,0x3b,0x1c,0x56,0x42,0x33,0xf6,0x3a,0x9a, +0xb1,0x1f,0x50,0x2b,0x32,0x7e,0xce,0xd8,0xbf,0x84,0x36,0xe6, +0xf5,0xee,0x3b,0x84,0x8d,0x5c,0xde,0xb6,0xab,0x19,0xd0,0x55, +0xd1,0x32,0xce,0xc1,0xff,0x3a,0xce,0x31,0xd6,0xdf,0x47,0x9f, +0x77,0x83,0x36,0x2c,0x0c,0xb5,0x6b,0xea,0x3b,0xd0,0xda,0x02, +0xdb,0xf2,0x97,0x62,0x49,0xed,0xb1,0xac,0xb3,0x3f,0x8f,0x73, +0xac,0x17,0x50,0x63,0x18,0x67,0xef,0x57,0x79,0x53,0x80,0x9d, +0x38,0x9b,0x7c,0x57,0x37,0x65,0x28,0x4d,0xf7,0xb5,0x69,0xba, +0x5f,0xc6,0xfe,0x9c,0x36,0x65,0xdc,0x94,0x32,0x5d,0x7a,0xce, +0x92,0xcb,0x37,0xe0,0x34,0x9b,0x4e,0x05,0x76,0xb1,0x45,0x78, +0xf0,0xe4,0xa6,0xba,0x1d,0x3b,0xab,0x81,0xb1,0x64,0xf7,0x9b, +0x30,0xb8,0x9d,0x6d,0xf1,0x79,0x9a,0xaa,0xf6,0xa2,0x39,0x49, +0x39,0x99,0x78,0xea,0x9c,0xe2,0xe7,0x8c,0xd1,0x70,0xf2,0xbc, +0x70,0x2f,0x7e,0x64,0x5d,0xb8,0xef,0x8d,0xc9,0x4c,0x44,0xd0, +0x02,0x77,0x07,0xc5,0xcf,0x99,0xe5,0xd5,0xea,0xbd,0xa9,0x85, +0xfc,0x43,0xf3,0xd4,0x3c,0x06,0x0f,0x89,0x1c,0x01,0xae,0x7c, +0xf2,0xf0,0x80,0x25,0x53,0x67,0xcd,0x10,0xf0,0x2c,0xac,0x63, +0xb6,0x1d,0x38,0xb2,0x29,0x4d,0x89,0x17,0x34,0x90,0x73,0xa8, +0x79,0x9c,0xbd,0x3d,0x7d,0xff,0x21,0x01,0xce,0xe2,0x3a,0x66, +0xe9,0xcc,0xa8,0x55,0x61,0x4a,0xcd,0x1f,0xc1,0xf6,0x97,0x71, +0x8d,0x5f,0xb9,0x74,0xb9,0xe2,0xc5,0x87,0x5c,0xea,0xf7,0xcc, +0xfb,0xb2,0xd1,0x51,0x61,0x13,0x77,0x23,0x25,0xb7,0xfe,0x89, +0xe2,0xb7,0x49,0xec,0xf0,0xd3,0x46,0x0d,0xd3,0xf8,0xd5,0x9c, +0xc5,0x34,0x27,0xdb,0x5e,0x8a,0x7a,0xb1,0x1f,0xf9,0x96,0xe6, +0xb4,0x9c,0x94,0xd3,0x4a,0x94,0xe8,0xd0,0x9c,0x96,0x93,0x72, +0x5a,0xe9,0xed,0x02,0x48,0x9f,0xd9,0x84,0xb2,0x4d,0x9c,0x34, +0x2a,0x32,0x4a,0x1a,0x15,0xa1,0x49,0xb2,0x21,0x41,0xae,0xca, +0xe4,0x87,0x9b,0x79,0x39,0xaf,0xf6,0xf3,0xf1,0x29,0xcc,0x99, +0x84,0xbd,0xc7,0xcf,0x28,0xcf,0x1f,0x70,0x1d,0x29,0x78,0x57, +0x72,0xa0,0xfd,0xfc,0x36,0xf4,0x86,0x3e,0x83,0x6f,0xa1,0xb6, +0xb0,0x8a,0xc6,0x17,0x52,0xdc,0x51,0xcc,0x02,0x5b,0xea,0xa7, +0xad,0xed,0xec,0x8d,0xac,0xb0,0x8a,0xbe,0x69,0x9d,0x73,0xc3, +0x10,0xa5,0xf6,0x54,0x2b,0xdd,0x05,0xc2,0xca,0x08,0xc6,0x7e, +0xf1,0xf4,0x85,0x7e,0x34,0xab,0xcc,0xbc,0x50,0x9e,0x9c,0x5b, +0x90,0x21,0x78,0x9d,0x61,0x9c,0xfc,0x22,0xec,0xf5,0x14,0x1f, +0xce,0x6a,0xd2,0xdc,0x31,0x9a,0xa0,0x07,0xf4,0xc3,0xa1,0xb0, +0x88,0xfe,0xeb,0x07,0x43,0xc1,0x03,0xdc,0x29,0x5b,0x87,0xe2, +0x22,0xfa,0x8f,0xde,0x47,0x77,0xbe,0x42,0x0b,0xc6,0x82,0x26, +0x45,0xe1,0x38,0xbe,0x8a,0x95,0x4e,0xb1,0x03,0x8e,0xc5,0x71, +0xd8,0x72,0x14,0xac,0x59,0xe9,0x54,0x7a,0x2a,0x00,0xb7,0x82, +0x98,0x64,0x7a,0x9e,0x9e,0xc5,0xa7,0x95,0x32,0xc1,0x49,0x33, +0x0f,0xe4,0x2a,0xaa,0x72,0x53,0xab,0x69,0xf4,0x57,0x9d,0x1b, +0x6e,0x1d,0x38,0x7b,0xd6,0xd4,0x58,0xe1,0xb8,0x23,0x53,0xb2, +0x3f,0x3d,0xaf,0x96,0x26,0xc1,0xfa,0xd5,0xf8,0x09,0x7e,0xa2, +0x3f,0x05,0xdb,0xd0,0xb8,0xc2,0x4f,0xfa,0x16,0xcd,0x01,0x71, +0xb1,0xa5,0x7a,0x1c,0xfa,0xd3,0x28,0xc5,0x5c,0xd5,0x91,0x7a, +0x99,0x27,0x43,0xa9,0x61,0xfa,0xe4,0xc9,0x53,0xa0,0x9d,0x1d, +0xf6,0x94,0x16,0xef,0x3a,0x6c,0x28,0xb2,0xfc,0x49,0xad,0x17, +0xd7,0x2f,0xdd,0xe3,0xf7,0xb1,0xf7,0xae,0x5b,0x0e,0x1a,0xa4, +0x6f,0x39,0x46,0x98,0xcd,0x8e,0xd1,0xbf,0xf4,0x42,0xa8,0xca, +0x20,0x77,0x83,0x59,0x5d,0x6f,0xc6,0x97,0x7b,0x78,0x9a,0x99, +0xbd,0x35,0x69,0x41,0x8a,0xf2,0xe4,0xc1,0x03,0x59,0xc2,0x53, +0x8c,0xe6,0xa0,0x43,0x10,0xa9,0x75,0x63,0x63,0x97,0x2f,0x5f, +0xc4,0xcf,0x66,0xe3,0x56,0x6c,0xd9,0x45,0xcd,0xe0,0x37,0xaa, +0xae,0x64,0xc0,0x55,0xc3,0xb7,0x6f,0xaf,0x5e,0xfd,0xee,0x3b, +0xc3,0xab,0x7d,0xfb,0x1a,0x1a,0x0e,0xe0,0xab,0xb5,0x6a,0x4e, +0x65,0xd5,0xd4,0x9c,0x0a,0x9c,0x3c,0xd9,0x5d,0xfa,0xcb,0xaa, +0x69,0x99,0x09,0x68,0x20,0x97,0x28,0x81,0x2c,0x8d,0x15,0xd3, +0x09,0x84,0x62,0xd0,0x25,0x08,0x82,0xd0,0x26,0x0c,0x85,0x20, +0x4b,0x0c,0xc2,0x50,0x4a,0x75,0x88,0x78,0x8a,0x14,0xc3,0x74, +0xf6,0x56,0x1f,0xc6,0x3e,0x3f,0x3b,0xa8,0x42,0x79,0xb1,0xa0, +0xe0,0xde,0x1d,0xdf,0x6c,0xcf,0xdd,0xc2,0x3c,0x17,0x26,0x75, +0xf1,0xe1,0x39,0x9e,0x0a,0x9f,0x98,0x99,0xa1,0x34,0xa2,0x9f, +0x1a,0x71,0x20,0x9b,0x7a,0x16,0x0d,0xf8,0x92,0x71,0xa4,0x35, +0xfd,0x54,0xde,0x64,0x78,0x9e,0x43,0x6d,0xe9,0xb1,0x93,0x05, +0xf1,0xfc,0x7a,0xd6,0x6f,0xeb,0x91,0xa9,0xc5,0xca,0xaa,0x13, +0x65,0xd7,0x2f,0x45,0x65,0x85,0xed,0x17,0xc2,0xfd,0x99,0xa3, +0xf3,0x13,0x67,0x04,0x28,0xfc,0xe7,0x46,0x87,0xf1,0x6b,0xd8, +0x88,0x59,0x07,0x4b,0x85,0x6c,0x77,0x6f,0xce,0x79,0x7e,0x74, +0x10,0xbf,0x8a,0x0d,0x9c,0x79,0xa4,0xa4,0x30,0xf9,0xe0,0xd1, +0xbd,0x42,0x58,0x21,0x13,0x1e,0x13,0x1e,0x64,0xa4,0x78,0x3f, +0x7a,0xa2,0xc7,0x7e,0x1b,0x4f,0x73,0xf2,0x90,0x79,0x0b,0x22, +0x5d,0x14,0xbf,0x8c,0x13,0x8c,0x97,0x14,0xb2,0x13,0x67,0xf6, +0x7e,0x9c,0xe0,0xa5,0x00,0x77,0x6f,0x36,0xaf,0x68,0xa1,0x3f, +0x9d,0x14,0x7f,0x0f,0xdf,0x3e,0x61,0x69,0xa8,0xdf,0x76,0x6a, +0xe8,0xd3,0x41,0xcc,0x2a,0x3c,0x09,0x32,0x0f,0xee,0x8f,0x9e, +0xe1,0x4b,0x74,0x22,0x2d,0x09,0xd3,0x05,0xc9,0x1d,0x6c,0x62, +0x9a,0x19,0x8d,0xab,0xf6,0x85,0xe7,0x60,0xe7,0x5d,0x16,0xb7, +0x81,0x19,0xe3,0x86,0x3e,0x86,0x2c,0xdc,0xde,0x40,0xd6,0x60, +0x00,0xf4,0xff,0x8b,0x6d,0x59,0x6b,0xfc,0xff,0x86,0xa3,0xf8, +0xd8,0xf1,0xb7,0xb4,0x69,0xfc,0x71,0x3f,0xff,0xda,0xdc,0x9d, +0x98,0x24,0x6d,0x30,0xfb,0xd7,0x70,0xf4,0x5f,0xab,0xad,0x1a, +0x81,0xeb,0xff,0x15,0x43,0xfd,0x49,0xdd,0x77,0x11,0xd2,0xcf, +0x49,0xfd,0xbb,0x00,0x0b,0xaf,0x97,0xfe,0x76,0x3a,0xf1,0x8f, +0x69,0xa8,0x52,0xf7,0xf8,0x9b,0xa3,0x1d,0x38,0xfe,0xd6,0x5f, +0x79,0x51,0x03,0x46,0xb6,0x1a,0x9d,0x99,0xe9,0x7c,0xc8,0xc5, +0x74,0x5c,0xd0,0x5a,0xc9,0xbf,0x2a,0x90,0xa5,0x28,0xff,0x2b, +0xb1,0x1d,0x75,0xd8,0x15,0x04,0xe3,0x90,0x0c,0xc4,0x09,0x8b, +0x05,0xcb,0x84,0x3f,0x0a,0xe8,0x7e,0x1f,0x03,0x9e,0x5e,0xb6, +0x19,0xdb,0x55,0x8d,0x7f,0x1e,0xd0,0xe3,0xaf,0xce,0xb1,0xf2, +0x7f,0x30,0x49,0xaa,0x3a,0x07,0x96,0xbf,0x81,0x54,0xab,0x25, +0xdf,0xb9,0xfe,0xf8,0x01,0x7a,0x5a,0x2f,0x16,0x01,0x87,0x5a, +0x89,0xcc,0xff,0x80,0x8a,0x06,0xb8,0xf2,0x37,0x42,0xeb,0x7f, +0x37,0xc3,0xaa,0x2a,0x47,0xe7,0xdf,0xea,0xc8,0xff,0x2c,0xf3, +0xce,0x05,0x77,0xfd,0xab,0x2f,0xef,0xee,0xab,0x42,0xfe,0x3d, +0xc5,0x3f,0x45,0x0c,0xfe,0x1f,0x13,0xb8,0xff,0xf6,0x9d,0x0d, +0x1e,0x7f,0x8f,0xfa,0x23,0x04,0x27,0x4b,0xde,0xf2,0xe7,0x09, +0xef,0x0e,0x30,0x99,0x87,0xb5,0x78,0xe1,0xce,0x14,0x3d,0x14, +0x39,0x10,0xf5,0x08,0xf6,0xab,0xa6,0x3e,0x77,0x05,0x8e,0xe6, +0xb0,0xab,0xee,0x18,0x69,0xf2,0xbb,0x13,0x8b,0x03,0x74,0xef, +0x41,0x57,0x01,0x46,0xff,0xe9,0xcc,0xad,0xaa,0x1a,0xdf,0xfc, +0xdd,0xa1,0xc6,0xff,0xda,0xa4,0xaf,0x6a,0xad,0xdf,0x6f,0xa6, +0xd0,0xfe,0x5b,0xed,0xbe,0x93,0x63,0x87,0x7f,0x09,0xf1,0xbf, +0xd7,0xec,0x90,0xe2,0x56,0xe0,0xfb,0xdf,0xe3,0xc8,0xd7,0x86, +0xff,0xdf,0x4b,0x65,0xdb,0xcb,0xbf,0x01,0x59,0xf1,0x4b,0x29, +0x9b,0x36,0x46,0xfd,0x22,0x4f,0x98,0x08,0x06,0xd2,0x22,0xf0, +0xa2,0x22,0x34,0x06,0x7d,0xa0,0x7f,0x9e,0x45,0x34,0xde,0x35, +0x40,0x7a,0xdf,0xd3,0x93,0xf9,0xf8,0x69,0xeb,0x3b,0xd2,0x6f, +0x5d,0xfd,0x0b,0x1f,0x1f,0x5d,0x0f,0xe6,0xab,0xbb,0x7c,0x30, +0x24,0xf0,0xd1,0xd5,0xbe,0xc1,0xa9,0xad,0x08,0xf8,0xa3,0xdb, +0xf8,0x0e,0xf5,0xfe,0x0e,0xf3,0xfe,0x7c,0x3e,0xfc,0x9d,0xb3, +0xc1,0x6f,0x3c,0xb4,0x0d,0x81,0xb1,0x18,0xcc,0xa2,0xd6,0x4d, +0x53,0xf8,0x0c,0x3e,0xbb,0x59,0x0f,0x5a,0x3c,0x04,0xc3,0x50, +0x69,0xcd,0x07,0xac,0xd0,0x23,0xb0,0x87,0x3e,0x35,0x0f,0x0a, +0xb0,0xe2,0xdd,0x58,0xab,0xa0,0xec,0x3a,0xe1,0x7f,0x6f,0x86, +0x5a,0xbc,0x69,0xf9,0xff,0x64,0x26,0x5c,0x35,0x0d,0x7b,0x7e, +0xa0,0xd6,0xff,0xe9,0x6b,0x54,0x67,0x77,0xfc,0x7b,0x69,0x37, +0x2f,0xa9,0x6f,0x6d,0x2a,0xfe,0x3f,0x7e,0x67,0x3f,0x64,0xff, +0xa6,0x82,0xab,0xef,0xbd,0xfa,0x5f,0xa3,0x6a,0xe8,0xf9,0xd6, +0x40,0xab,0x7e,0x3a,0xb1,0x15,0xa1,0x3f,0xc5,0x4e,0xad,0x86, +0x4a,0xff,0x7b,0x50,0x2b,0x9c,0xf3,0x97,0x82,0x2a,0xa5,0xea, +0x32,0x41,0xbd,0x5e,0x06,0xa8,0x58,0x24,0x58,0xec,0xf8,0x2b, +0x31,0xd5,0x99,0x65,0x9b,0x46,0x14,0xda,0x34,0x44,0xf4,0xf8, +0xf8,0x05,0x13,0xfc,0x7f,0x67,0x91,0x03,0x5c,0xc7,0xdf,0xb9, +0xc5,0xff,0x42,0xa3,0x62,0x24,0x1e,0xfa,0xd0,0x25,0xfe,0xe5, +0x26,0x55,0x67,0x5b,0x71,0x7e,0xea,0xf9,0x10,0xfc,0xbb,0x55, +0x1a,0xff,0x1d,0x36,0x3c,0xb1,0xfb,0x3b,0x43,0xaa,0x5f,0xa9, +0x9c,0x3e,0x60,0x9e,0xfa,0x9d,0xef,0x2f,0xe3,0x47,0xef,0x94, +0xaa,0xce,0xbf,0x72,0x40,0x8d,0x61,0xbf,0xde,0x1f,0xa6,0x3a, +0xd9,0x8a,0x1d,0xc8,0xd9,0xfa,0x4b,0x21,0xd5,0x0e,0xd5,0xfd, +0xd6,0xa8,0x69,0xee,0x85,0x5f,0xfe,0x5c,0x4e,0xd5,0x0b,0xf9, +0xd6,0x95,0x42,0xbc,0x4f,0xb0,0xd7,0xeb,0x81,0xe0,0xc1,0x83, +0xf5,0xd7,0xa0,0xb8,0x77,0xef,0x7e,0x85,0x9e,0x3c,0x2b,0x65, +0xf2,0xb7,0xc9,0x07,0x76,0x1d,0xd8,0x91,0xd4,0x03,0xba,0x72, +0x33,0x7c,0x22,0xbd,0xc3,0xfc,0x5c,0xae,0xc8,0x03,0xa7,0x57, +0xe8,0x4d,0xb1,0x9c,0xe8,0x3a,0x3e,0xae,0xc7,0xba,0x0d,0x4c, +0x75,0x52,0x66,0x61,0x9d,0x02,0xb4,0xb1,0xfd,0x63,0x1c,0x8d, +0xa3,0x50,0x43,0x07,0xb5,0xf9,0x5a,0xad,0xc7,0x17,0xce,0xbf, +0xe1,0x6b,0xd9,0x37,0x17,0x6c,0x75,0x74,0x26,0xd9,0xf6,0x13, +0x2c,0xd8,0x7e,0x93,0xce,0x3f,0x16,0x3e,0x7e,0x89,0x85,0x4a, +0x8e,0x59,0x7f,0x3f,0xde,0xf8,0x4f,0x56,0x67,0x88,0x57,0x7d, +0x7e,0x8f,0xf1,0xbf,0xdf,0x98,0x2a,0xec,0xb7,0xf1,0xde,0x9f, +0xb4,0xd5,0x2a,0x94,0x9b,0xe3,0x8a,0xc9,0x1f,0xad,0x28,0xf9, +0xf3,0x96,0xfb,0x19,0xfc,0x5d,0xeb,0x7e,0xfb,0xda,0x7f,0xf6, +0xea,0x3f,0xe6,0xf6,0xb7,0x2f,0xfe,0x4e,0x54,0x32,0xf8,0x97, +0x51,0x2b,0x9a,0x97,0xae,0x23,0x3e,0x49,0xb1,0x87,0xa8,0x91, +0x3d,0x94,0xb4,0x2b,0x3f,0x7f,0xee,0xae,0x19,0xd4,0xc8,0xce, +0x98,0x1b,0xeb,0x23,0x88,0x23,0xb5,0x5a,0x79,0xf2,0x17,0x96, +0x97,0xa8,0xf8,0x89,0xbf,0xc9,0xcc,0x3e,0xbe,0x62,0x3a,0xf6, +0xff,0x20,0x2e,0xfa,0xf8,0x7a,0xa5,0x49,0xad,0xa5,0xa2,0x1f, +0xdf,0xc6,0x90,0x4b,0x7f,0x83,0xab,0x1f,0xbf,0x6c,0xe5,0xdd, +0x1c,0xcc,0xf8,0x57,0xdf,0x7e,0xb7,0x9c,0x49,0xf9,0xc1,0x72, +0x26,0xe5,0xaf,0x0b,0x02,0x6f,0xfe,0x14,0xcd,0xc1,0x3e,0x9c, +0x25,0xad,0x67,0xba,0x2c,0xad,0x67,0xaa,0x7c,0xbf,0x9e,0x69, +0x80,0x30,0x82,0xd5,0x7e,0xbf,0x9e,0xe9,0xa3,0x5f,0xaf,0x7a, +0x6b,0xf6,0x37,0xba,0xf7,0xbf,0xb6,0x00,0x56,0x55,0xe9,0xd9, +0xda,0x8c,0xd3,0x9f,0x47,0xcf,0xaa,0x06,0xf8,0xf2,0xef,0xe4, +0xe1,0xad,0xaf,0x41,0x55,0xcd,0x84,0x90,0xd6,0xe8,0xe1,0xdf, +0xc5,0xbd,0xd3,0x20,0xea,0xb5,0x97,0xc4,0xb5,0xff,0x2b,0x8b, +0xbb,0x54,0x5a,0x5e,0xad,0xbd,0xba,0x5c,0x65,0x4b,0xe0,0x1f, +0x43,0xf2,0x60,0xb5,0xef,0x10,0xfc,0x07,0x8b,0x5f,0x6b,0x00, +0xcf,0xde,0xfa,0x9a,0x59,0xc3,0xa1,0xde,0x28,0xd0,0x1b,0xc3, +0xac,0xe6,0xc6,0x7d,0xcd,0x20,0xef,0x03,0x79,0x15,0x2c,0xf6, +0x6e,0x64,0xbe,0xe1,0x80,0xfe,0x5f,0x85,0x79,0x7f,0xb2,0x4a, +0x4a,0xd5,0x81,0x3a,0xe8,0x56,0x5e,0xba,0x40,0x55,0x4e,0x7e, +0xde,0x9e,0xf4,0x6f,0xb7,0x2e,0x09,0xa8,0x35,0x8c,0x6c,0x48, +0xde,0xff,0xf5,0xc1,0x96,0xd9,0xb1,0xfe,0xd2,0xa6,0x25,0xb3, +0x60,0x5f,0xeb,0x99,0x02,0xee,0x9c,0x43,0xb0,0xbf,0xb4,0x69, +0xe9,0x72,0x66,0x5e,0xd5,0x01,0x01,0xee,0xe3,0x69,0x66,0xcd, +0x9c,0x59,0x5f,0xc5,0x28,0x5b,0xf6,0x0d,0x76,0xfc,0x0b,0xfb, +0x06,0xdf,0x79,0xff,0x57,0x27,0xf5,0x55,0x4f,0x69,0x24,0x81, +0xbe,0xc7,0x98,0xa7,0xf6,0x7a,0x1c,0x06,0x1f,0x67,0x1e,0xda, +0x4f,0xe0,0x30,0xe0,0x38,0x63,0xcb,0x41,0x40,0x24,0x65,0xe1, +0x07,0x17,0xc3,0xce,0xdd,0xe1,0x20,0x38,0x92,0x19,0x79,0xee, +0x3a,0x07,0xbe,0xd3,0x98,0xf3,0x9c,0x54,0x11,0xf8,0x96,0x0b, +0x75,0xf8,0x64,0x22,0x9d,0x06,0xb7,0x54,0xd2,0x54,0xfd,0xa0, +0xea,0x4b,0xde,0x2e,0xb5,0xaa,0xc0,0x8e,0x4a,0x6c,0x37,0xc5, +0x59,0x7b,0xa6,0xb0,0x6e,0x39,0x83,0x27,0xd8,0x2d,0x67,0xd3, +0x8f,0x9d,0x39,0x14,0x5c,0x23,0x37,0x09,0xf1,0x72,0x5f,0x3e, +0x52,0x66,0x64,0x73,0x95,0xed,0xbd,0xbd,0xd1,0x06,0x34,0x95, +0xd0,0xa9,0xf2,0xec,0xab,0x03,0xc2,0xfa,0xed,0x0c,0xec,0x66, +0x57,0xfa,0xc5,0xcc,0xf0,0x99,0x91,0x63,0x27,0x3f,0x97,0x72, +0xb2,0x38,0xbe,0x51,0x76,0xa3,0x92,0xc5,0x83,0x0f,0x49,0x6d, +0x76,0x84,0xe3,0x56,0x01,0xbf,0x66,0x2b,0x12,0x4f,0x1e,0xad, +0x55,0xa2,0x88,0x6b,0xc9,0x44,0x9f,0xf4,0xf2,0xa5,0x02,0x24, +0xb1,0x53,0x16,0x04,0x4f,0xd7,0x57,0x6a,0x8a,0x91,0x54,0xfb, +0x8d,0xce,0x05,0xc2,0x97,0xc0,0x9f,0xcb,0x6a,0xba,0x6a,0x2f, +0xcd,0xd9,0x7f,0x69,0x1f,0x68,0xc8,0xe3,0xf7,0xd9,0x04,0x6a, +0xb1,0x33,0x53,0xc5,0x61,0x2d,0x74,0x66,0xc4,0x7e,0xbd,0xc9, +0x89,0xf4,0xa4,0x06,0xfe,0x0a,0xdb,0x90,0x3e,0x77,0x6a,0x68, +0xe8,0x5c,0x13,0x61,0x22,0x6b,0x12,0x9a,0x94,0x2e,0xa8,0x87, +0x53,0xfb,0x22,0x35,0xc2,0xc3,0x97,0xe7,0xb2,0xae,0x36,0xd1, +0x46,0xbe,0x44,0x5e,0x6a,0x44,0x9c,0xb8,0xeb,0x37,0x8d,0xa8, +0x35,0xf5,0x3f,0x68,0x24,0x74,0xea,0x07,0x8d,0x50,0xb5,0xb0, +0x20,0x06,0x45,0x5e,0x17,0xe7,0xf3,0xab,0xb9,0xbe,0xa6,0xcc, +0x18,0x0e,0x06,0xbc,0xbd,0x30,0xaf,0x78,0xed,0xa5,0x15,0x3d, +0x6c,0x2e,0x81,0x26,0x67,0xb5,0xde,0x72,0x93,0xfb,0x36,0xd9, +0x06,0xee,0x4e,0x29,0x74,0x68,0x64,0x72,0x6b,0xd3,0x12,0x72, +0x95,0xc9,0x6c,0xc9,0xc9,0x70,0x5f,0xdf,0xa8,0x68,0xff,0x38, +0xe1,0x90,0x1d,0x53,0xb2,0xbb,0xbc,0xf8,0x86,0xe2,0xa1,0x69, +0x75,0xbf,0x49,0xae,0x33,0x23,0xdd,0xf9,0x7b,0xae,0xba,0xfb, +0x8d,0x95,0xa8,0x31,0xdc,0x76,0x80,0x50,0xb7,0x80,0x54,0x14, +0xe6,0x34,0xf1,0x49,0xec,0xb9,0x33,0x0b,0x3d,0x4e,0x0a,0x18, +0x83,0x7d,0x19,0x8f,0xe4,0x98,0xf4,0x62,0x85,0xe6,0x3b,0xaf, +0x8f,0x5c,0x2b,0x27,0xae,0x53,0xf9,0x11,0xf4,0x47,0xbd,0xc1, +0x7d,0xc6,0x08,0x13,0x39,0x68,0xff,0x04,0x46,0x3c,0x06,0x0b, +0x65,0x31,0x0b,0x16,0x30,0x42,0x07,0xdb,0x3f,0x11,0xae,0x70, +0xdf,0x8f,0x41,0xbd,0xe7,0xe8,0x4f,0xb9,0xbb,0x4e,0xa4,0x4c, +0xf4,0x07,0xbd,0xe7,0xdf,0xdf,0xa3,0xf7,0xb1,0xfd,0x30,0xa4, +0x65,0x2c,0x94,0x1e,0x2c,0x5a,0x20,0xad,0xd7,0x7e,0x18,0x6d, +0xa3,0xcf,0x3d,0xd0,0x1b,0x0c,0x52,0x69,0x07,0x69,0x96,0x4a, +0x1f,0x3b,0xe7,0xd8,0xc2,0x58,0x20,0x65,0x38,0xb1,0x6e,0xbf, +0x15,0x4c,0x00,0xf7,0xd5,0x4c,0x13,0x87,0xee,0xab,0x2f,0xc2, +0x04,0xf3,0xfd,0x8e,0xd4,0xc1,0xd3,0x87,0xfe,0xb6,0xd4,0x2f, +0x6d,0x13,0x1f,0x12,0x08,0x43,0x93,0x4b,0x54,0xaf,0xfc,0x1b, +0xd1,0x1f,0xcc,0x2c,0xd1,0x0c,0xc3,0x3e,0x76,0x3f,0xa2,0x8f, +0x68,0x4e,0xee,0x89,0xfc,0x9f,0xec,0x47,0x3c,0xae,0xda,0x21, +0xed,0x47,0x7c,0xf8,0x7e,0x3f,0xe2,0x43,0xe6,0xbd,0x12,0x62, +0xef,0xc7,0x86,0x90,0x05,0x99,0x8f,0xaf,0x42,0x6f,0xe8,0xad, +0x73,0x15,0x33,0x31,0x4b,0xc7,0x10,0x7b,0xf3,0x2a,0x53,0x2d, +0xbb,0xc8,0x20,0xab,0xf9,0x3c,0x0e,0x87,0x0e,0x68,0x0d,0x5f, +0x30,0x1b,0xb9,0xb4,0x53,0x5f,0xad,0x3b,0x25,0xd4,0xb1,0x30, +0xaa,0xc1,0x4f,0x47,0x50,0xab,0xb5,0x2a,0x8e,0x67,0x5e,0xde, +0xcb,0xc3,0x53,0xdc,0x2a,0xad,0xef,0x14,0x36,0x32,0xe6,0x2c, +0xea,0x99,0xe6,0x3c,0x69,0x19,0xe7,0x1c,0x4c,0x6a,0x61,0xb8, +0x6a,0x08,0x74,0x64,0x69,0x13,0xa3,0xbd,0xfc,0x69,0x90,0x3b, +0x88,0x59,0xa9,0xfe,0x1e,0x0c,0x2d,0xa8,0x45,0x72,0x10,0x47, +0x13,0xf8,0x9e,0x03,0x6f,0x74,0x61,0xb0,0x2d,0x30,0x17,0xa6, +0xbd,0x52,0x42,0xb7,0x86,0xab,0x40,0x80,0xb1,0x68,0x18,0x79, +0x50,0x98,0x61,0xc1,0xd4,0x2f,0xc8,0xf1,0x31,0x54,0x8c,0xf3, +0xf3,0xd3,0xe7,0xe7,0xb1,0x93,0x4c,0x52,0x1a,0x0d,0x05,0x5c, +0x0a,0xf3,0x98,0xf1,0x6a,0x0b,0x56,0x53,0x4c,0x53,0x85,0x12, +0x2b,0x7d,0x56,0xc7,0xdb,0x7d,0x38,0x3f,0x9f,0x1d,0xee,0x73, +0xea,0xf1,0xcd,0x13,0x99,0xe5,0xa9,0x82,0x5f,0x39,0x63,0x1d, +0xe8,0x60,0x8b,0x1a,0x0a,0xec,0x7d,0x73,0x02,0xc8,0xa1,0xc3, +0xb9,0xaa,0x9b,0xf1,0xfc,0x46,0xd6,0x24,0xa1,0xdc,0xe1,0x8d, +0x12,0x3e,0x2b,0xbb,0x0e,0x1d,0x7f,0x70,0xac,0xb0,0x4d,0x15, +0xfc,0x1d,0x99,0xf2,0x19,0x29,0x81,0xe6,0x0a,0x93,0x30,0xef, +0x71,0xfc,0x02,0x76,0xa2,0x57,0xc1,0x83,0x16,0xda,0x67,0x13, +0xe8,0xaf,0x5b,0x73,0x57,0xdc,0x43,0x93,0x57,0xf5,0x4e,0x38, +0xc4,0x58,0x60,0x25,0xf6,0x67,0x55,0xa3,0x36,0x92,0xd5,0x6a, +0x7f,0x58,0xce,0x49,0xab,0x02,0xed,0x09,0x3c,0xe1,0xd4,0xfd, +0x0e,0x2c,0xb7,0x62,0xd2,0x63,0x0e,0x45,0xdb,0x29,0x46,0xb9, +0x06,0x0c,0xe4,0x67,0xb0,0x03,0x5d,0x73,0x1e,0xd4,0xa4,0xe6, +0x56,0x51,0x52,0xce,0x31,0xe6,0x21,0xae,0xa6,0x3a,0x0a,0x54, +0xdc,0x31,0x80,0x11,0x30,0xa8,0xa9,0x11,0xda,0x5f,0x0e,0xcd, +0xf6,0xd8,0x2b,0xed,0x51,0x2c,0x5a,0xc8,0x60,0xaa,0xe4,0x46, +0x18,0x82,0xfc,0xa3,0x89,0x34,0x48,0x19,0xdc,0x54,0x0f,0xdc, +0x2d,0xdf,0x33,0xb6,0xfb,0xa4,0x2d,0x8a,0xc6,0xa1,0xcf,0xf5, +0x81,0xc5,0x9e,0x3d,0x5e,0x73,0xd0,0x6e,0x3c,0x1a,0x80,0x26, +0xc6,0x28,0xd1,0x6a,0x88,0x11,0x0a,0x42,0xad,0xd6,0xfd,0xd3, +0xf9,0xaf,0xf9,0x7d,0xec,0x9b,0xd3,0x3e,0xa3,0x75,0xdd,0x7c, +0xfa,0x09,0xb3,0xd9,0xfe,0x6e,0xf9,0x77,0x5b,0x52,0x84,0xfe, +0x44,0x35,0x04,0x57,0x30,0xb5,0xe2,0x08,0x0c,0x36,0x87,0x9e, +0x98,0xc8,0x36,0x0f,0x85,0xb5,0xbf,0x48,0xbc,0xef,0x2d,0x03, +0xca,0x64,0xb6,0xbc,0xfc,0xc6,0x76,0x3e,0x9e,0x35,0xdf,0x59, +0xe9,0xf5,0x42,0x09,0x9d,0xcf,0x37,0xc1,0xa7,0xf0,0xa9,0x6d, +0x13,0x76,0x1e,0x64,0xe3,0x65,0x19,0x27,0xac,0x60,0xaf,0x2d, +0x71,0x28,0x47,0x56,0x89,0x64,0x9c,0x01,0xf6,0x15,0xea,0xb4, +0xee,0x17,0x96,0xdc,0xe3,0x0f,0xb1,0x0f,0x0b,0x5c,0x46,0x8f, +0xf6,0x76,0x19,0x29,0xcc,0x60,0xc7,0x78,0x95,0xdc,0x17,0xe0, +0x27,0xad,0xeb,0x27,0x73,0xae,0xd1,0x28,0xb1,0xe9,0xa4,0xbf, +0xbe,0x7e,0x90,0xbf,0x11,0x8d,0x12,0x0d,0x82,0x72,0xae,0x0b, +0xef,0xb7,0x76,0xa3,0xc6,0x4d,0x30,0x40,0x4d,0x88,0x51,0x82, +0xd5,0xb3,0x26,0xe8,0x09,0xc2,0x88,0x2b,0x38,0x08,0x07,0x1b, +0x99,0x22,0xa7,0x97,0xe7,0x56,0x39,0x4b,0xda,0xa4,0x68,0x92, +0x3e,0xa8,0x09,0x19,0xe8,0xd7,0x03,0x5e,0x61,0x27,0x72,0xef, +0x74,0xfe,0x1b,0xda,0xb5,0xd7,0xa7,0x7d,0xc6,0x8c,0x72,0xf3, +0xe9,0x4f,0xbb,0xd6,0xcf,0x2d,0x5f,0x12,0x4c,0xa4,0xe4,0x36, +0xfe,0xfa,0x26,0xc5,0x17,0xb4,0xda,0x7f,0xb6,0x49,0x11,0x5c, +0xc5,0x61,0xad,0xef,0x52,0x04,0x71,0x2c,0x8d,0xa6,0xc7,0x5a, +0xb2,0x10,0xa3,0xfe,0xf9,0x4c,0x53,0x4c,0xa7,0x35,0xfe,0xdf, +0xee,0x52,0xec,0x2c,0x4e,0x25,0x40,0x38,0x18,0x0c,0x9f,0xa7, +0x81,0x2e,0x0f,0x5f,0xb0,0x10,0xf1,0xc4,0x07,0xdb,0xf5,0x9f, +0xe8,0x87,0x9a,0xc2,0xcc,0x8d,0x6c,0x7a,0x42,0xfa,0x91,0x52, +0xc5,0x35,0xf3,0xd3,0xa8,0x83,0x3a,0xe6,0x6e,0x06,0xce,0xe9, +0x51,0xe9,0x8b,0xf9,0xd5,0xf6,0xc6,0xa2,0x82,0xa3,0xe8,0xe3, +0x6a,0x60,0x38,0x0c,0xc2,0x36,0xb7,0xf1,0x26,0xe6,0x60,0x9f, +0x49,0xe8,0x25,0x20,0x6d,0x6e,0xf7,0x03,0x72,0x2a,0xfd,0xc8, +0x53,0xbe,0x9a,0x7d,0x9a,0x1e,0xe5,0x1e,0x10,0x1d,0xe9,0x2a, +0xe0,0x18,0xd6,0x25,0xfa,0x78,0x76,0x8b,0x84,0xf7,0x51,0xd3, +0xe5,0xc1,0xa0,0x1f,0x87,0xf4,0x30,0x9e,0x53,0x45,0x83,0x19, +0x03,0x1a,0x5c,0xb3,0x74,0x14,0x77,0xe2,0x0e,0x82,0xb1,0x2e, +0x0c,0xe8,0x73,0x10,0xeb,0x02,0xfc,0x0c,0x1a,0xa5,0x48,0x95, +0x8a,0x08,0x2e,0xe6,0x7a,0x5d,0xb0,0x85,0x2f,0x80,0x3b,0x57, +0x53,0xbb,0x91,0xdf,0xcc,0xda,0x6e,0x29,0xf4,0xfa,0x41,0x02, +0x62,0xd9,0xf7,0x02,0x44,0x72,0x6a,0xb9,0x01,0xc1,0x2f,0x38, +0x73,0xdf,0xf0,0x29,0xbc,0x33,0x6b,0xe3,0x7d,0xbc,0x4e,0xfa, +0x81,0x27,0xf1,0x81,0x16,0x6a,0x72,0x93,0x42,0xa2,0xec,0x78, +0x17,0xd6,0x31,0xf8,0x78,0xb5,0x00,0x5d,0x68,0x83,0x76,0xe2, +0xf7,0xe4,0xc5,0x85,0x93,0x30,0x9e,0x07,0x05,0x0b,0x23,0x1b, +0xfd,0x86,0x4d,0x0e,0x0e,0x33,0x99,0x25,0x1c,0x99,0xcc,0x40, +0x9b,0x94,0x33,0x65,0xdf,0x29,0xa0,0xe7,0xb0,0x9b,0x78,0x02, +0x4f,0x0c,0x1b,0x8f,0x3d,0x07,0x9c,0xb5,0x85,0x36,0x61,0x7c, +0xea,0x45,0x66,0xc2,0xc1,0xa0,0xa3,0xf5,0x2d,0xbb,0xee,0x4e, +0x11,0x74,0xe2,0x90,0x87,0x76,0x26,0xb0,0x05,0xe2,0xa1,0x5d, +0x03,0xf0,0x3c,0x38,0x71,0xcd,0x7d,0x0c,0x88,0xd8,0xd4,0x9b, +0x1d,0xa5,0xe7,0x2d,0xcd,0xc3,0x70,0x2c,0x6a,0xeb,0xfe,0x6c, +0x22,0xcc,0x48,0x3d,0x9c,0x84,0x5d,0x78,0xb0,0x1e,0x0e,0xc2, +0x46,0x3c,0x59,0x2f,0xb6,0x6f,0x8e,0x6e,0x59,0xcc,0x12,0x40, +0x68,0xb0,0x93,0x58,0x0f,0x89,0xb0,0xe9,0x5f,0xb7,0xdb,0xa8, +0x34,0x89,0xee,0xe9,0x80,0x8a,0x58,0x7e,0x6d,0xff,0x29,0x22, +0x0b,0x36,0x0e,0xd8,0xde,0x90,0xeb,0x65,0x7b,0xe2,0xf6,0xd3, +0xa6,0x1c,0x18,0x2e,0xbc,0x27,0xdc,0x7b,0xa4,0xd9,0xd4,0xc8, +0x89,0x73,0x84,0xe3,0x56,0xcc,0x0f,0x47,0xce,0x9c,0x7f,0xa3, +0x00,0xe5,0xa0,0x3b,0x98,0x82,0x27,0x86,0xea,0x61,0xe7,0x96, +0xed,0x92,0xeb,0x88,0xbe,0x2a,0xfa,0x3a,0x5e,0x81,0x6d,0x70, +0xe5,0x7a,0x73,0xb4,0x3e,0x3c,0xc2,0x6d,0x2d,0xfb,0x3b,0x5d, +0x48,0x1d,0xf4,0x12,0x1f,0x60,0xaf,0x3a,0xf8,0xc9,0x1c,0x7b, +0xa9,0x1f,0x40,0x2f,0x69,0x33,0xd3,0x63,0xd5,0x37,0xc4,0x1c, +0x23,0xd5,0x91,0xac,0xce,0xd4,0x8c,0xba,0x9a,0x94,0xd4,0xeb, +0xbb,0x85,0xb9,0x0d,0x0c,0xb6,0x99,0xed,0xe4,0xd0,0x53,0x81, +0x5d,0xea,0x26,0x43,0x37,0x5e,0xcc,0x6b,0x29,0x19,0x4b,0xae, +0x35,0x47,0x1b,0xc0,0x42,0x0e,0xba,0x18,0xe1,0xf7,0x68,0xc1, +0xe8,0x72,0xa2,0x2e,0x84,0xc3,0x05,0x74,0x63,0x1e,0x70,0xb8, +0x0d,0x46,0x63,0xd7,0xcb,0x34,0x06,0x97,0x5e,0x37,0x8e,0x76, +0x3f,0x5b,0xa5,0x7d,0xbb,0xa5,0x73,0x9d,0x54,0x9b,0x88,0x68, +0xce,0x42,0xef,0x8d,0x54,0xbe,0xf8,0xb9,0x1f,0xae,0x1e,0x0e, +0xab,0x75,0xe0,0x73,0x7f,0xe9,0x92,0xde,0x54,0x9b,0x9b,0xaa, +0x62,0xae,0xb3,0x28,0x42,0x37,0x69,0xcb,0xd6,0x67,0xb9,0xb0, +0xe0,0x16,0x73,0xfd,0xfd,0x36,0x44,0xf1,0x1b,0x62,0xa0,0x8a, +0x6e,0x52,0x07,0x70,0xa8,0x58,0xc1,0x6c,0xe0,0xa0,0x7b,0xa1, +0x18,0x0c,0xc1,0x0c,0x25,0xc5,0x48,0x0c,0xe0,0x40,0xb1,0x59, +0xf2,0x2d,0x5a,0x5e,0x2d,0xe6,0xab,0x13,0xc1,0x5e,0x4f,0x75, +0xe1,0x04,0xa4,0x3f,0xbd,0x0b,0xbd,0xa0,0xf7,0xd0,0x5b,0x98, +0x4e,0x99,0x33,0x8e,0x3a,0xac,0x26,0xad,0x6f,0xaf,0x15,0xc0, +0x48,0x1e,0x7a,0xb0,0x30,0xe2,0xaa,0xf7,0xf0,0x11,0x06,0x1e, +0x38,0x5c,0xc0,0x1e,0x2c,0x8e,0x34,0x28,0x7e,0xd4,0x02,0xd5, +0x19,0x04,0x6a,0x70,0x10,0xcd,0x9c,0xaf,0x39,0x51,0xb7,0xd0, +0xfd,0xda,0x59,0x9a,0x55,0xc3,0xfc,0xe6,0x68,0x4e,0xd5,0x9f, +0x82,0xed,0x4b,0xce,0xda,0x2f,0xc4,0x9e,0xb7,0x62,0x6d,0x03, +0x32,0xaa,0x04,0xf8,0x92,0xd3,0x14,0x17,0xaa,0x9e,0x13,0xdc, +0xa1,0x6d,0x81,0x5d,0xe2,0x04,0x63,0xd6,0x23,0x3a,0xca,0x43, +0x18,0x7e,0xe1,0xf9,0x7d,0x0e,0x3b,0xec,0x7e,0x63,0x01,0x5b, +0x94,0x1f,0x92,0x21,0x4c,0x52,0xb7,0x21,0x2d,0xef,0x6a,0xa1, +0x43,0xf8,0x2d,0x1d,0xd2,0xeb,0xa7,0x4b,0xaf,0xd7,0x60,0xb1, +0x06,0xbb,0x33,0xa3,0x39,0xa8,0x03,0x9e,0xd1,0xdb,0xdb,0x10, +0x20,0xed,0xcf,0xef,0x7e,0xad,0x1c,0x64,0x02,0xcc,0x94,0x68, +0xd1,0xc6,0x30,0x62,0xed,0xfb,0x9e,0x12,0x7f,0x89,0x12,0x05, +0x1c,0xe6,0xa4,0xce,0x73,0x04,0xbb,0x35,0x4d,0xa4,0x97,0x2d, +0x31,0x23,0xbf,0xf3,0x3c,0x53,0xb3,0x2b,0x2b,0x95,0xa6,0x5f, +0x39,0xbe,0xc6,0xb6,0x33,0xc3,0x9d,0x22,0x85,0x1c,0x3b,0xe6, +0xc2,0x89,0xec,0xf2,0x47,0x0a,0xe8,0x6a,0xd5,0x88,0xdd,0xdf, +0x07,0xa1,0x7c,0x9c,0x2d,0x63,0xb5,0x30,0x38,0x62,0x9c,0x72, +0xb4,0x57,0x51,0x43,0x53,0x46,0x7a,0xe5,0x71,0x21,0xb8,0x86, +0x19,0x1f,0xe0,0x41,0x01,0x20,0xed,0x89,0x1b,0x46,0xea,0x45, +0x6b,0x53,0xb4,0x6a,0xd6,0x9e,0xa0,0x92,0xd6,0xbb,0x3f,0x51, +0xd5,0x11,0x75,0x14,0x8b,0xee,0xc6,0xae,0xd8,0x1f,0xfb,0x37, +0xba,0x82,0xbb,0x20,0x46,0x5d,0x53,0xcf,0x63,0xb1,0x97,0xdf, +0xe1,0x27,0x8f,0x73,0x8f,0x40,0x2f,0x41,0x9c,0xd7,0x32,0x2d, +0x7a,0x9d,0xa8,0xa2,0xd1,0x92,0xb9,0xc9,0xa9,0x3d,0xa0,0x2d, +0xea,0xa4,0x48,0xe2,0xd5,0x49,0x11,0x3d,0xa0,0x1d,0x73,0x9b, +0xda,0x00,0x9c,0xdc,0x32,0xa5,0xe1,0x4c,0x60,0x76,0x10,0xcc, +0x8f,0x64,0xd6,0x71,0x38,0x3f,0x1c,0x67,0x07,0xd1,0xa8,0x50, +0x15,0x4d,0x1d,0x3c,0xa7,0xb6,0x38,0x81,0xfd,0xb7,0x4a,0x79, +0x9d,0x90,0x04,0x49,0xb9,0xb4,0x12,0x26,0xe5,0xa2,0x90,0x24, +0x65,0x2f,0x03,0xb6,0x8a,0x66,0x19,0x4c,0x03,0x6d,0xc6,0x82, +0xa6,0x22,0xcb,0xc5,0x1b,0x04,0x54,0x38,0x91,0xb9,0xc7,0x61, +0x2a,0x74,0x97,0xaa,0xa4,0x02,0x91,0xae,0x10,0x0d,0xd4,0x32, +0xb0,0x92,0x22,0xcd,0x62,0xe4,0xa5,0x84,0xa8,0x18,0xbf,0x64, +0x5a,0x66,0x4a,0xc5,0x07,0x04,0xf2,0x59,0x71,0x32,0x3a,0x32, +0x77,0x38,0x7c,0x0a,0x7d,0xa4,0x6a,0xd2,0xe1,0x2e,0xa7,0x96, +0x6e,0x62,0x3e,0xed,0x85,0xb3,0x38,0x9e,0xc0,0x3d,0x4e,0xbc, +0x89,0xd7,0x99,0x2b,0xa2,0xc2,0x14,0x2b,0x58,0xf5,0x4d,0xb8, +0xce,0x4c,0x94,0xb6,0x90,0xe4,0x8b,0x0e,0xa4,0x14,0x66,0xa8, +0x32,0x71,0x46,0x29,0xe4,0xfc,0xd4,0xb3,0x45,0x51,0x9e,0x12, +0x7c,0x8b,0x3a,0x0c,0xb4,0xb7,0xc3,0x9e,0xd4,0x6d,0xf5,0x94, +0x0e,0xda,0x06,0x34,0xc0,0xe9,0x59,0x41,0x1d,0x1c,0x23,0x1d, +0xda,0x71,0x20,0x15,0xb9,0xc1,0xe1,0x35,0xe8,0x29,0x71,0xe5, +0x1a,0xf4,0xa6,0x99,0x8c,0xad,0x98,0x4c,0x20,0xc7,0x19,0x67, +0x34,0x67,0xc2,0x0c,0x67,0xcc,0xa1,0x20,0xcb,0x14,0x47,0x12, +0x51,0x06,0x93,0x99,0x4b,0x1c,0xed,0xc6,0xe4,0x28,0x5b,0xa8, +0xc7,0xa1,0x52,0x2f,0xa4,0x83,0xa6,0xf8,0x89,0x46,0xbe,0xb8, +0xd6,0x87,0xbe,0xd6,0x4d,0x3c,0xf0,0x51,0x9b,0x39,0x28,0x52, +0xfa,0x11,0xf3,0x0c,0x9f,0x53,0x71,0xfc,0x1a,0x43,0x23,0x31, +0xb3,0x49,0x7f,0x03,0x57,0xbc,0x33,0x33,0xef,0xb2,0xe2,0x9f, +0x43,0xce,0xa1,0x3d,0xda,0x0d,0xb5,0xef,0xc5,0xd7,0x47,0x91, +0xba,0xf2,0xdc,0x37,0xfc,0x2b,0xf6,0x75,0xb9,0x9f,0xb9,0x6d, +0xa0,0xaf,0xb9,0x80,0x9e,0xac,0x45,0x60,0xde,0x79,0x1a,0x1b, +0xdf,0x54,0x45,0x53,0xa8,0x36,0x35,0xef,0x32,0xba,0xba,0x86, +0x75,0x8f,0x0b,0xf1,0x31,0x57,0xf4,0x7a,0x6a,0x0f,0x76,0x60, +0xff,0xec,0xdc,0x3f,0x2f,0x07,0xe7,0x79,0xec,0xe4,0x77,0xd1, +0x57,0x38,0xf8,0xf5,0xe7,0xb5,0xd9,0x7e,0x0e,0xb9,0x75,0xe7, +0xb3,0xf2,0x6a,0x05,0xf0,0x64,0xeb,0xb2,0x7c,0x6d,0x29,0x01, +0xbb,0xc5,0xf5,0xc4,0x39,0x79,0xfa,0xd1,0x52,0x45,0xc3,0xb9, +0xec,0xef,0x78,0x68,0xc3,0xbe,0x2c,0x0f,0x30,0x71,0x8b,0x89, +0x72,0x9c,0x2b,0x59,0xb6,0x5b,0x29,0x27,0x4b,0x6f,0x2a,0xe0, +0xd3,0xa1,0xb5,0x94,0x1a,0x87,0x61,0x16,0xf8,0xa9,0x5e,0xb6, +0xd3,0xdd,0x08,0x5e,0xf3,0xdd,0xe7,0xe2,0x41,0x82,0x35,0x1b, +0xd8,0xdf,0x93,0xfb,0x6b,0x6f,0x54,0xbb,0x38,0xf5,0x9b,0x26, +0x22,0xd1,0x29,0x91,0x2f,0x7c,0x40,0xbe,0xd4,0x6f,0x0d,0x32, +0xb8,0xcc,0xee,0xe6,0x4c,0x3e,0xa5,0x92,0xb1,0x4f,0x0c,0x4c, +0xab,0x52,0x5c,0xab,0xcb,0x7e,0xce,0x27,0xe2,0xd9,0x34,0x16, +0x26,0x3f,0xbe,0x08,0x9a,0xf0,0xc9,0xd0,0x3a,0xda,0xa6,0xfd, +0x50,0x43,0xec,0x2c,0xc0,0x4d,0xe8,0x48,0xde,0x5c,0xf4,0x37, +0x35,0xb4,0x0c,0xe9,0x2f,0x2c,0x81,0x85,0x2d,0x88,0x7e,0x2b, +0x2d,0xc2,0xff,0xf2,0x32,0x4d,0xa4,0xf4,0xf1,0xcb,0x0b,0xd0, +0x93,0x3d,0x3d,0xeb,0x80,0x2b,0x8f,0x23,0x80,0x31,0x43,0xa6, +0x65,0x23,0xa2,0xea,0x73,0x82,0x9a,0x4d,0x56,0x30,0x86,0x17, +0x0f,0x5c,0x19,0xbf,0x81,0x3d,0xb3,0x33,0xa3,0xb8,0x4a,0x01, +0x1a,0x83,0x4b,0xd1,0x18,0x2d,0x86,0x4a,0xbf,0x64,0x98,0xe6, +0x5e,0x42,0xe9,0x1d,0xce,0xa1,0x86,0x67,0xea,0x8d,0xd3,0xfb, +0x52,0x32,0x8e,0x0b,0xae,0x79,0x8c,0x47,0x50,0x94,0xa7,0x89, +0x02,0xaa,0x57,0x90,0xcb,0x65,0xb9,0x6f,0xf9,0x26,0xf6,0x75, +0x99,0x9f,0xb9,0x4d,0x90,0xaf,0x99,0x80,0x06,0xac,0x71,0x50, +0x0b,0xef,0xaf,0xa9,0xa2,0x08,0x5c,0x6a,0x6a,0xde,0x6d,0x04, +0xc8,0x5e,0xc9,0x73,0xb7,0xb7,0xf1,0x8d,0x34,0x10,0x50,0x34, +0x12,0xbb,0xb2,0xd0,0xb6,0xba,0xe4,0x61,0x43,0x40,0xb6,0x67, +0x22,0x4d,0x62,0x8f,0x52,0x63,0x18,0xba,0x27,0xf6,0x30,0x85, +0xc3,0xe1,0x3d,0xbb,0xd2,0xd3,0xe6,0xef,0x8a,0xa6,0xa9,0x41, +0xf4,0xfc,0xd8,0x30,0xa1,0x79,0x44,0x10,0x11,0x33,0xaf,0xa9, +0x33,0xa5,0x5d,0x84,0x13,0x7f,0xde,0x45,0xd8,0xe9,0x5a,0xb3, +0x21,0x7c,0x62,0xce,0xbe,0x6b,0x8f,0xba,0xad,0x55,0x94,0x74, +0x95,0x86,0xbe,0x66,0xec,0x1d,0x33,0xe9,0x67,0x08,0x98,0x11, +0x1c,0xd4,0x42,0x30,0xcc,0x45,0x0f,0xe6,0x31,0x87,0xb6,0xa0, +0x37,0xa1,0x82,0xd9,0x20,0xae,0xb9,0xd6,0xbc,0x8b,0x93,0x84, +0xd5,0x4c,0xfd,0x85,0xd5,0xfb,0xdd,0x08,0xd8,0xe6,0x12,0x74, +0x68,0x71,0xed,0x3b,0x89,0xd8,0x9d,0x2d,0xcc,0x9b,0x17,0x18, +0x1c,0xbe,0xd8,0x5a,0x50,0x7f,0x66,0x2e,0xf2,0x6c,0xd9,0x91, +0x39,0x21,0xa1,0xf3,0x17,0x1a,0xb4,0x5c,0xd2,0xb0,0x44,0xa3, +0x30,0xbd,0xaa,0x34,0xe4,0x98,0x4d,0xbc,0xf0,0x0d,0x77,0x21, +0x3e,0x35,0xbd,0x40,0x91,0x1b,0x72,0xc8,0x65,0x2b,0xbf,0xe1, +0x56,0x8d,0x3a,0xb3,0xa5,0x15,0xca,0x84,0x3f,0xea,0xfe,0x86, +0x9b,0x4d,0x2d,0x05,0x5b,0x02,0xda,0x4f,0x9e,0x9a,0x83,0x3d, +0xd8,0x3f,0xad,0x83,0x4f,0xa0,0xeb,0xd0,0xcb,0x2d,0xf2,0x35, +0xc3,0xae,0x7c,0xbd,0x56,0x43,0x79,0xd6,0x0b,0xea,0xd3,0xd9, +0x97,0x65,0x81,0x26,0x26,0x8e,0x81,0x03,0x05,0x6c,0xc7,0x0e, +0x72,0xc8,0x6a,0x68,0xc1,0x78,0x0c,0xb9,0xde,0xd4,0xbc,0xca, +0x08,0xb2,0x5a,0xc3,0x38,0xae,0xc1,0x69,0xe4,0xf7,0xf0,0x96, +0x50,0x2f,0x55,0x17,0x0f,0x93,0x56,0x50,0x8a,0x59,0x46,0xaa, +0x55,0x4d,0xfa,0x1c,0xe6,0x6b,0xfd,0x7b,0x9c,0x76,0x56,0x69, +0x13,0x00,0xb6,0x21,0xd7,0x57,0x47,0x70,0xab,0xcb,0xe7,0xee, +0x06,0xa5,0x3b,0xee,0xe2,0x37,0xbd,0xb8,0xd6,0xd2,0xa5,0xb6, +0x92,0x9d,0x6f,0x5f,0x66,0xf6,0xfd,0xa3,0xe2,0x53,0xcf,0x77, +0xf1,0xf1,0x05,0xcc,0xb9,0xad,0x7b,0x0f,0x9d,0x55,0x96,0x1d, +0x08,0xb5,0xb6,0x9f,0x1f,0x31,0x35,0x5a,0xc8,0x77,0x65,0x8a, +0x4e,0x1c,0xa3,0x2a,0xf4,0xa3,0x4b,0xcd,0x80,0xe1,0x9e,0x0e, +0x23,0x62,0xf9,0x15,0x3e,0x8c,0xd3,0xb2,0x59,0x33,0x5c,0x94, +0x0e,0x51,0x27,0x2e,0x96,0xed,0xcd,0x2d,0x4d,0x13,0x3c,0x4b, +0x19,0x4b,0xef,0xa8,0x29,0x06,0x2d,0x1b,0x06,0xd7,0x90,0x4b, +0xd0,0x55,0x1c,0x8a,0x5a,0x35,0x34,0xc8,0xd4,0x6e,0x44,0x96, +0x9d,0xbd,0x6c,0xeb,0x3e,0xa1,0x7e,0x72,0x7f,0xb5,0xf2,0xe7, +0x1d,0x83,0xaa,0xd1,0xe2,0x21,0x82,0xc8,0x4e,0xf4,0x3d,0x75, +0xae,0x32,0xef,0xf8,0x35,0x01,0xc4,0x26,0x75,0x57,0x16,0xdb, +0x4e,0x71,0x19,0x6c,0x99,0xed,0x5f,0x14,0x27,0xac,0x19,0x4f, +0xad,0x09,0xf7,0x7e,0x47,0xb9,0x98,0x89,0x7a,0x34,0x9b,0x55, +0x7b,0x81,0x16,0x35,0x6e,0x6f,0x0f,0xc1,0x0f,0xaf,0xa4,0x4d, +0x7f,0x99,0xa8,0xdb,0x62,0xf0,0xf7,0x12,0x43,0x0e,0xc2,0x43, +0x60,0x49,0x84,0x64,0xf2,0x97,0x46,0x60,0x58,0x04,0x33,0x8e, +0x13,0x33,0xf5,0x98,0x4a,0x4e,0xed,0x52,0x2d,0x59,0xf7,0xd1, +0x7b,0x20,0xbb,0x80,0xb9,0xca,0xe1,0xc9,0x7c,0xd4,0xdd,0x2b, +0x6d,0x1c,0x74,0xa9,0x62,0xaa,0x5b,0x84,0xbf,0x41,0xca,0x86, +0x3f,0x97,0x4c,0x60,0x18,0x6a,0xd1,0x20,0x84,0x06,0x58,0x13, +0x21,0x19,0x27,0x50,0x37,0x83,0x41,0xf0,0xa9,0x64,0xc3,0xa5, +0xc3,0x1d,0x69,0xcb,0xe0,0x04,0x3c,0x04,0x86,0xd2,0x18,0x6a, +0x38,0x71,0xdb,0x13,0x5d,0x14,0xc7,0xab,0x26,0x62,0x98,0xd4, +0xec,0xe3,0x37,0x43,0x0e,0x30,0x9b,0xb8,0x67,0x07,0xe1,0xf1, +0x0f,0xef,0xf7,0x32,0x5a,0x61,0x9f,0x1c,0xe6,0xb1,0x65,0x4b, +0x0f,0x26,0x93,0xcb,0x90,0xcd,0x8a,0x3a,0x78,0x82,0xa9,0x10, +0x35,0xcc,0xf0,0x10,0xab,0x1e,0x0e,0x27,0x18,0x7b,0x56,0x33, +0x8f,0xe6,0x75,0x55,0x34,0x2e,0xdd,0xce,0x56,0x95,0xa5,0xde, +0xda,0x28,0xec,0x62,0xc7,0x6d,0x2c,0x0b,0xaf,0x52,0xc2,0x36, +0xfc,0xa2,0x0a,0x3e,0x63,0x8b,0xa3,0x0e,0x7b,0xf0,0xb8,0x92, +0xb5,0x0f,0x39,0xfa,0x4c,0x30,0x62,0x87,0x84,0x4c,0xb7,0x97, +0x2e,0x3d,0xa6,0x47,0x7b,0x50,0x5c,0x7c,0xaf,0xf1,0x2e,0x2e, +0xff,0xa7,0x38,0xda,0x8c,0xca,0x9c,0x78,0x1c,0x8d,0x2e,0xe6, +0x61,0x25,0x7b,0x2e,0x63,0xfa,0x10,0xa1,0x89,0x7d,0x96,0x71, +0xf4,0x9c,0x74,0x59,0x7c,0xe4,0x70,0xb1,0x00,0x9f,0x59,0xe3, +0x17,0x34,0x74,0xb3,0x76,0x0c,0x1f,0xb7,0x5a,0x88,0x65,0x6f, +0xad,0x76,0x4c,0xb5,0x56,0xe2,0x76,0xf8,0xc2,0x9a,0xd5,0x7c, +0x37,0x56,0xfc,0x84,0xe6,0x11,0x6b,0x69,0x1e,0xa1,0x9a,0x49, +0xd3,0xc3,0xfd,0xee,0x60,0xf1,0x6d,0x58,0x03,0xf5,0x1f,0xbf, +0xd9,0x12,0xa1,0x4a,0x50,0x45,0xfe,0x9d,0x99,0x34,0x37,0xd5, +0xfc,0xff,0xe6,0x1e,0xab,0xbb,0x34,0xb0,0xfa,0xf7,0xf1,0xff, +0x04,0xee,0x5d,0x97,0x3e,0xe4,0x77,0x04,0x48,0x64,0x09,0x38, +0xd3,0x93,0x26,0xbd,0xd1,0xbf,0xcd,0x0d,0x60,0xa6,0x1b,0xf9, +0xb5,0xc4,0x07,0x84,0x7f,0x34,0x36,0x9f,0x3f,0xf9,0xed,0x5c, +0xc3,0x7f,0xec,0x10,0xc4,0x59,0x38,0xeb,0x83,0x45,0x63,0x4a, +0x71,0xd7,0x07,0x13,0x8d,0xfe,0xbf,0x6c,0xd5,0x86,0xbd,0x22, +0x21,0x77,0xb2,0x8e,0xd6,0x53,0xaa,0x0f,0x33,0x45,0x7b,0x12, +0x93,0x8b,0x94,0xc5,0x07,0x23,0x8c,0x84,0x48,0x60,0x69,0xb4, +0xdb,0x58,0x03,0xed,0x7f,0x34,0xbe,0x80,0x9f,0x09,0xde,0x17, +0x2c,0x27,0xa9,0xa7,0x19,0x8b,0x37,0xd8,0x67,0xd9,0x11,0x16, +0xd6,0x01,0x21,0x43,0x04,0x5f,0xf6,0xce,0x1a,0x8f,0xf2,0xd1, +0xca,0xf1,0x81,0xc1,0x96,0x33,0x85,0xa5,0xd3,0x19,0xaf,0x05, +0xb3,0x63,0x5d,0x95,0xf6,0xd3,0xf7,0x95,0xe4,0x24,0x1f,0xc9, +0x3a,0x20,0xf8,0x9d,0x62,0xec,0xc2,0x67,0x78,0x5a,0x28,0x86, +0x9c,0x73,0x7f,0xc5,0x6b,0x8a,0x0a,0x29,0x79,0x32,0xd6,0x71, +0xe8,0x15,0x27,0x98,0xfd,0xa5,0x79,0xef,0x92,0x65,0x9b,0x8c, +0xb3,0x3d,0xae,0x4d,0xef,0x71,0xe4,0x02,0xf3,0x91,0xde,0x99, +0x97,0x42,0xe0,0x5a,0x82,0x09,0xda,0x96,0xd8,0x29,0x4e,0x30, +0xfd,0x4b,0xef,0x2b,0x5d,0xb6,0x71,0xc4,0x59,0xa7,0x37,0x11, +0x3d,0x7e,0x4d,0xb4,0x3e,0x26,0x45,0xe3,0xff,0x4a,0x4a,0x00, +0x88,0x3a,0x7f,0x77,0x96,0xf3,0x63,0x9d,0x8c,0x4a,0x8e,0x9b, +0xfe,0xee,0x3b,0x54,0x9b,0x54,0x0a,0xf2,0x43,0xec,0xb0,0x32, +0x34,0x52,0xe2,0x44,0x1d,0xc7,0xde,0xb1,0x02,0x6a,0xda,0x80, +0x26,0xbb,0xc5,0x32,0xcb,0xfb,0x4a,0xd4,0x91,0x4a,0xb9,0xcf, +0x9e,0xe8,0x03,0x2b,0xb2,0x64,0xe2,0x68,0x76,0x65,0x70,0xcc, +0x2c,0xef,0x05,0xc7,0x6d,0xe4,0xf5,0x47,0x32,0xf3,0xb7,0xd4, +0xc8,0xa0,0x6b,0x25,0x8b,0xaf,0x6f,0x91,0x3b,0x67,0xa6,0xb9, +0xec,0x10,0xd4,0xc3,0xd9,0x92,0x1d,0x25,0xc7,0xee,0x4a,0x5b, +0x5c,0x69,0xb8,0x5a,0x07,0x95,0x1b,0xd9,0x90,0x43,0x97,0xfc, +0x6e,0x29,0xf7,0xee,0xfd,0xfa,0x9b,0x1d,0x02,0xf6,0xbe,0x08, +0x63,0xb8,0x1d,0xb9,0x85,0x7b,0x2e,0x2b,0x9f,0xe4,0x79,0x1a, +0x3a,0x85,0xf9,0xb9,0xcd,0x11,0x32,0x6d,0x98,0xcb,0x47,0x8a, +0xaa,0x1f,0x2b,0x80,0x8c,0xba,0x8e,0x9d,0x4d,0x7d,0xa4,0x2d, +0xae,0xd7,0xad,0x06,0x71,0x6b,0x17,0xce,0x5a,0x37,0x5b,0x69, +0x6b,0x9f,0x5c,0x36,0x4d,0x18,0xce,0xfe,0x7d,0x3f,0xaa,0x0a, +0xc5,0xf6,0x1f,0xd8,0xa3,0x8f,0x54,0x53,0x88,0xad,0xf9,0xa0, +0xd2,0x3f,0xa5,0xd1,0x99,0x7f,0xbf,0x09,0x0c,0xdd,0xf7,0x12, +0xac,0xda,0xcf,0xfc,0x6b,0xe3,0xb0,0xa6,0xaa,0xcb,0x7f,0x7d, +0xa3,0xd9,0x4c,0xb1,0x1f,0x29,0x16,0x7d,0x3d,0x58,0xe8,0x86, +0xf7,0x49,0x41,0x25,0x2c,0xba,0xcd,0x9a,0xd7,0x84,0x87,0x9c, +0xf1,0x62,0xd6,0xe0,0xe4,0x06,0x6f,0x4e,0x3d,0x0f,0x5d,0x48, +0x01,0x74,0x65,0x4f,0x3b,0x30,0x11,0x47,0x8e,0xcc,0x2e,0x54, +0x16,0xa6,0xa5,0xd6,0x94,0x86,0x1d,0x8d,0xd8,0x26,0xc4,0x3a, +0x33,0x7b,0x56,0xee,0x5e,0x36,0x4b,0x11,0x1d,0xb7,0x74,0x0e, +0xbf,0x8a,0x9d,0x3f,0x6b,0x4b,0xea,0x74,0x61,0xe2,0x6d,0xc6, +0x93,0xfd,0x93,0x84,0x55,0x75,0xf7,0x79,0xab,0x0b,0x0f,0xb6, +0x0c,0x26,0x7f,0x98,0xcd,0xaa,0xb6,0x0c,0x6c,0x75,0x35,0xc2, +0x47,0xe7,0x6f,0xaf,0x66,0xfd,0x9d,0x89,0xb3,0x8f,0xc9,0x2e, +0x54,0x43,0xea,0x5a,0x5d,0x76,0xf4,0x70,0x40,0xab,0x99,0x87, +0xf8,0x70,0x08,0xf9,0x83,0xf7,0xfe,0x35,0x63,0xae,0x1a,0xf2, +0xb6,0xd5,0xee,0x3d,0xdc,0xf9,0x5b,0x33,0x0f,0xaf,0x31,0xa4, +0x75,0x7e,0xfe,0x81,0x97,0x6d,0xee,0x69,0x47,0x0c,0xc4,0x8c, +0x6b,0x1c,0xb4,0x47,0xc5,0x1f,0xd1,0xfe,0x07,0xea,0xa5,0x1a, +0xf2,0xa2,0x75,0x66,0x0d,0x22,0xad,0xea,0x9e,0xf8,0x70,0x50, +0xeb,0x34,0x7f,0xa4,0x26,0xbe,0x82,0x83,0xff,0x6b,0x18,0x28, +0x4d,0x6e,0x65,0x2d,0xc6,0xc2,0xa2,0xd6,0x73,0xcf,0xbf,0x2e, +0xe6,0xd2,0xd2,0x56,0x56,0x2f,0x2d,0x04,0xbd,0xdf,0x65,0x77, +0xef,0x86,0xa9,0x26,0xb4,0xb6,0x20,0xe8,0xc1,0x7b,0x39,0xfe, +0x99,0xac,0x4a,0x8b,0x5a,0xeb,0xd4,0xa9,0xd6,0x25,0xf5,0xf1, +0x86,0x71,0x3d,0xcc,0x69,0x75,0xf1,0xc2,0x7f,0x96,0xd5,0x8b, +0x57,0xa4,0x8f,0x83,0xfd,0x57,0x83,0x23,0xb8,0x8f,0xab,0x7f, +0xd7,0xe4,0x7f,0x44,0x22,0x75,0x26,0x6d,0x3f,0x58,0xdc,0x6b, +0x29,0xee,0x24,0x4e,0xfb,0xa6,0xa5,0xc5,0xf0,0xb9,0x47,0x99, +0xd9,0x87,0x97,0xee,0x3d,0xa6,0xc8,0xdc,0x7d,0x7c,0x4f,0x3a, +0xbf,0x3f,0x77,0x67,0x4a,0x9e,0xe2,0xec,0xec,0x63,0x61,0x07, +0x79,0xbf,0xe9,0xcc,0xbe,0xe8,0x6d,0xf3,0xa6,0x29,0x82,0x17, +0x46,0xcc,0x0f,0xe3,0x67,0xf9,0xc5,0x45,0xf8,0x2a,0xfe,0x64, +0x6a,0xab,0xe1,0x2b,0xf2,0xf8,0x72,0x9e,0x64,0x5c,0x87,0xd2, +0x48,0xe4,0xb2,0xaf,0xce,0x70,0x33,0x5f,0x1c,0x29,0xe0,0x50, +0x6a,0x5c,0xcd,0xf2,0xbe,0x15,0xe0,0x9b,0x6f,0x48,0x48,0xf2, +0xc2,0xc3,0x7c,0x02,0x7b,0x38,0x79,0x77,0x46,0xc6,0x9c,0xdd, +0xd1,0xc2,0x62,0x36,0x7a,0xce,0xc2,0x10,0x8a,0xcf,0x0a,0x71, +0x0a,0x81,0x9d,0x62,0x3f,0x33,0x6c,0x42,0x27,0x56,0x9a,0x9a, +0x5e,0x41,0x5a,0x7e,0x6f,0xe3,0x21,0x63,0xca,0x69,0x6a,0x16, +0x50,0x84,0xe9,0x9e,0xb1,0x7f,0xf4,0xe8,0x4c,0xc5,0x9d,0x3b, +0xae,0x15,0x23,0x46,0xb8,0xda,0xeb,0xf2,0xa5,0x5a,0xc5,0x47, +0x53,0xf3,0xf8,0x83,0x6c,0xde,0xd1,0x70,0x0f,0x8f,0xe9,0xe1, +0xbe,0x42,0x0c,0xeb,0x3b,0x3d,0xb5,0x98,0x36,0xb7,0x50,0x35, +0x80,0xa8,0x06,0xe2,0xac,0x6a,0xc8,0x69,0x0e,0xa7,0xd1,0xfe, +0x36,0xf1,0x25,0x69,0x1e,0x08,0xb3,0xa6,0x60,0x8e,0x8a,0x5e, +0x3f,0x15,0x6b,0xc8,0xed,0x8a,0xfb,0xd7,0x2b,0x2f,0xfa,0x94, +0xc9,0xad,0x2d,0xc7,0x1b,0x8f,0xb6,0x96,0x69,0x8a,0x46,0xb4, +0x77,0x5e,0x87,0xe6,0x64,0xf0,0xbb,0xd8,0x8c,0x43,0xc9,0x85, +0x85,0x33,0x92,0x43,0x68,0x06,0x11,0x32,0x63,0x8e,0x17,0x85, +0x5a,0xb6,0xb8,0x91,0x8c,0xfd,0xc6,0x64,0xc3,0xe4,0xcd,0x32, +0x28,0x9c,0x82,0x99,0x1c,0x3a,0x1e,0xc7,0xb6,0x75,0x3a,0xa0, +0x70,0x0c,0x90,0x43,0x3f,0x0c,0x05,0x57,0x73,0xd1,0xf7,0x2b, +0x99,0xa8,0x9c,0xc2,0x69,0x8a,0x1d,0xc5,0x4a,0x52,0x6b,0xf9, +0xcc,0x0f,0xda,0xc6,0xc9,0xca,0x44,0xc1,0x16,0x1f,0xb0,0x23, +0x12,0xf4,0x33,0x5d,0xca,0xa4,0x1f,0x7e,0x37,0x22,0x3d,0x6f, +0xfe,0xe0,0x0d,0xa3,0x94,0xa0,0x57,0x89,0x7a,0x2c,0x6a,0x8d, +0x49,0xfd,0xce,0x90,0xbe,0x62,0xa5,0x18,0x4b,0xd0,0xec,0x29, +0x2a,0xe1,0x8b,0xf1,0x40,0x9c,0x42,0xe4,0x19,0x0e,0xc5,0x76, +0xe5,0x0e,0x32,0x35,0xb1,0x11,0x3d,0xd8,0xf3,0xee,0x97,0xbc, +0x1a,0x82,0x65,0x9a,0x2a,0x0d,0xd5,0x10,0x02,0x43,0x71,0xa7, +0x0d,0xf8,0x20,0x8d,0xd7,0xd6,0x6f,0x42,0x8d,0xd3,0x03,0x60, +0x98,0x63,0xb0,0x1c,0x38,0xb4,0x84,0xde,0x4e,0x70,0x65,0x9d, +0x0c,0x74,0xa0,0x47,0x25,0x55,0x3b,0x4e,0x34,0x24,0xe7,0x61, +0xa2,0x18,0x80,0xba,0xe7,0xc5,0xee,0xb6,0x38,0x46,0x1d,0x00, +0x13,0x6d,0x59,0x4d,0xf1,0x9f,0xe2,0x75,0x02,0x0b,0xed,0xd1, +0x9b,0xc3,0xee,0x79,0xd8,0xa7,0x09,0x59,0x68,0xe3,0xe5,0x27, +0x87,0xcf,0xb1,0x23,0x0c,0x33,0x02,0xad,0x05,0xb2,0x35,0xea, +0x20,0x7b,0x31,0xb6,0xff,0xb9,0xd7,0x30,0xa0,0x82,0xd3,0x54, +0x6d,0x50,0xad,0x27,0xe8,0x30,0x7d,0x2a,0x68,0x3a,0x2c,0x48, +0x43,0x56,0xed,0x63,0xbc,0xdd,0x4e,0x0c,0xbc,0x72,0x16,0xa7, +0x8c,0xd9,0x3d,0x21,0x63,0xf2,0x99,0x1e,0x41,0x3e,0xb7,0xa7, +0xbc,0x08,0x84,0x36,0x0b,0x7b,0x54,0x24,0x9a,0xc2,0x12,0xb0, +0x38,0x42,0xc3,0x8a,0x4e,0xaa,0x0c,0x82,0xab,0x38,0xe4,0x37, +0xe1,0xa4,0x04,0x54,0x24,0xc9,0x60,0xb9,0xad,0x7a,0xc8,0xf9, +0xef,0x39,0xe8,0x3d,0x1f,0xbc,0x62,0xc1,0x64,0xb5,0x0c,0x68, +0xeb,0xd0,0x41,0xdc,0x47,0x5c,0x6c,0x54,0x3c,0x3c,0xb7,0xc7, +0x54,0x0c,0x80,0x03,0xf6,0x78,0x00,0xc3,0x21,0xcf,0x8e,0x92, +0x3a,0x85,0x46,0x94,0xcf,0xb6,0x3f,0xd8,0x73,0x3b,0x71,0xe1, +0x59,0xf9,0xd8,0x79,0xe3,0x17,0xf6,0x5d,0x2c,0x53,0xb7,0x19, +0x47,0xa0,0x33,0x9a,0x82,0xbe,0x99,0xa8,0x31,0x7d,0x53,0x95, +0x1c,0x7f,0x3c,0x8c,0x03,0x6b,0x7a,0xc3,0x68,0x99,0xd8,0x0e, +0x87,0x90,0xdb,0x9b,0x5e,0x6e,0xbf,0x93,0xb0,0xe8,0xac,0x5c, +0x7f,0xf1,0xd0,0x25,0x3a,0x2b,0x65,0xd2,0x2e,0x38,0x13,0x52, +0x2f,0xf6,0x95,0x7e,0x8b,0x25,0x5c,0x2c,0x27,0x37,0x4d,0xa0, +0xad,0x0f,0x68,0xc5,0xca,0xaa,0xc4,0x09,0x53,0xb0,0x99,0xc5, +0x36,0x09,0x3a,0x99,0x16,0x35,0x32,0xb5,0x15,0x38,0x10,0xec, +0xf8,0x02,0x34,0xbd,0x61,0x8a,0x12,0xdc,0xab,0xd1,0x9d,0xc5, +0x51,0x03,0x53,0x40,0x63,0xb8,0xa0,0xf9,0x6e,0xa0,0x18,0x48, +0x30,0xf0,0x35,0x8e,0x81,0x01,0xfd,0xa1,0x9f,0x7d,0xb0,0x3c, +0x7f,0xf2,0xb9,0x49,0x97,0xac,0x65,0xea,0x99,0x93,0xc4,0x33, +0x6c,0xbd,0xe3,0x0d,0xf7,0xfb,0xfe,0x54,0x44,0xdb,0x54,0x83, +0x08,0x18,0x60,0x95,0x35,0x7c,0x8d,0xc9,0x1c,0x56,0x6e,0x42, +0xa1,0x02,0x3f,0x01,0x43,0x27,0x7f,0x39,0xf4,0x46,0x17,0x98, +0x60,0x2d,0x76,0xa3,0x32,0x1a,0x0f,0xc3,0x24,0x19,0x0d,0x11, +0x87,0x92,0x6a,0xb0,0x17,0xab,0xd0,0xbc,0x5a,0x1c,0x3b,0x05, +0xcd,0xd4,0x55,0x60,0x37,0x85,0xa2,0x76,0xbe,0x78,0x95,0xc0, +0xd7,0x36,0x18,0xce,0xa1,0x69,0x31,0x0e,0xba,0x8f,0x3d,0xa0, +0xbd,0x9b,0xa7,0x84,0xb6,0x0e,0xa0,0x3b,0x0a,0x4c,0x66,0xca, +0x56,0xa9,0x1b,0xec,0xc4,0x37,0xc8,0x55,0x02,0x07,0x36,0xb4, +0x2d,0xd5,0x0c,0x95,0x3d,0x81,0xc1,0x36,0x38,0x88,0xc3,0x35, +0x9b,0x50,0xaf,0x80,0xbe,0xb5,0x93,0xab,0xb7,0x1c,0x94,0xf8, +0x29,0x58,0x3a,0x41,0xf2,0x2a,0x19,0x0e,0x72,0x91,0x7e,0x1a, +0xbd,0xef,0xc6,0xed,0x7d,0x05,0x97,0x4d,0x0b,0x76,0x15,0x2a, +0xaa,0x38,0xdb,0x65,0x8c,0x15,0x37,0xfe,0x78,0xcc,0xed,0xe5, +0xfc,0x62,0x68,0x0b,0xc3,0x56,0x83,0x42,0x09,0xed,0x60,0x2a, +0x38,0x56,0xb5,0x98,0x77,0xda,0xe9,0x88,0xe9,0xd3,0xc1,0x68, +0xca,0xb2,0xa3,0x68,0x88,0x73,0xa6,0x4d,0x05,0x8f,0x29,0x4b, +0x4f,0xa0,0x1b,0x1e,0x0d,0xde,0x6a,0x0d,0xc7,0x33,0x53,0x28, +0xe5,0xdb,0x22,0xc0,0x14,0xe6,0x1c,0x3b,0x46,0x4f,0xb7,0x4e, +0x03,0x33,0x98,0x4a,0xc5,0xff,0x6e,0xbc,0xf4,0xfb,0x01,0x7a, +0x07,0x71,0x48,0x0e,0x72,0x97,0x03,0x5c,0xe5,0xd7,0x7d,0xef, +0x85,0x3f,0x89,0x91,0xa1,0x3b,0x87,0xe9,0xf1,0x68,0x50,0x4b, +0xa9,0x72,0x77,0x0c,0x94,0x43,0x4f,0x9c,0x06,0x3e,0xfa,0x20, +0x52,0xa6,0xac,0xe3,0xf2,0x97,0x15,0x2c,0x2f,0x5a,0x21,0xd3, +0x7c,0x37,0x46,0xe5,0x4f,0x70,0xdc,0x01,0x1c,0x5a,0x80,0x5c, +0x7d,0x90,0xa7,0xfc,0x52,0xe0,0x95,0xc8,0xeb,0xb4,0x76,0x57, +0xe4,0x38,0x9c,0x86,0x1a,0xb9,0xa0,0x3d,0x40,0x70,0x0e,0x62, +0x70,0x34,0x25,0xba,0x87,0x2b,0xac,0x54,0x52,0x0d,0xd0,0xac, +0x84,0x2c,0xb6,0x3c,0xb6,0x62,0x49,0xe5,0x32,0x99,0xe6,0x1b, +0xd1,0x83,0xa8,0x16,0x8b,0x1d,0x27,0xe1,0x79,0xf5,0x31,0x68, +0x98,0x84,0x0d,0x13,0x28,0x5f,0xfd,0xc4,0x42,0xaa,0x41,0xe0, +0x50,0x89,0x0e,0x4f,0x6d,0x86,0xe2,0xd7,0x36,0x54,0x4c,0x43, +0x51,0x97,0x43,0x8b,0x91,0xf9,0xa0,0x18,0x29,0xb8,0x04,0x32, +0xd8,0xff,0x3b,0x68,0xeb,0x0c,0xbe,0x4a,0xd0,0x1d,0x59,0xf9, +0x10,0x5c,0x2b,0x29,0x6c,0xf6,0xa9,0x94,0xa4,0xf4,0x7c,0xee, +0xf9,0x8c,0x73,0xce,0x47,0xe4,0x81,0x53,0x7c,0xec,0xdd,0x1c, +0xa9,0x2d,0x30,0x24,0xa7,0x4b,0x0b,0x6a,0x32,0xcf,0xb9,0x1d, +0x97,0x87,0x38,0x78,0x4f,0x71,0x75,0x96,0xa9,0x7f,0x82,0x0e, +0x04,0x64,0x14,0xc5,0x53,0x75,0xe0,0x41,0xc0,0xd1,0x72,0x39, +0x3e,0xcb,0x43,0xfb,0x2b,0x7d,0xc0,0x47,0x26,0x0d,0x30,0x96, +0x13,0xdc,0xc5,0x61,0xe3,0x11,0x9c,0x02,0xed,0x90,0x86,0xd1, +0x14,0x15,0x75,0x63,0xee,0x98,0xfc,0xe8,0x68,0xea,0x30,0xd4, +0x46,0xcf,0x3b,0xc7,0x47,0xfe,0x6d,0xf1,0xab,0xba,0x6b,0xd5, +0xd0,0xc1,0x03,0xfa,0x44,0x82,0xe5,0x32,0x19,0xdc,0xa1,0xa2, +0x1d,0xa6,0x9a,0x4f,0x22,0xa1,0x9b,0xcd,0xe2,0x23,0xa8,0xc1, +0xa0,0x8a,0x1d,0xe3,0xef,0x37,0x9e,0x86,0x13,0xd5,0xe0,0xc0, +0xe5,0xee,0x4d,0x2e,0xe0,0x45,0x8e,0x2d,0xc1,0x90,0x21,0x49, +0x43,0x0b,0x8c,0x2e,0xf7,0xf0,0xf4,0x7d,0xac,0x07,0xac,0x2b, +0x74,0x9b,0xdd,0xa3,0x72,0x9b,0x25,0xec,0x66,0x60,0x5e,0xb5, +0x34,0x7b,0xaa,0x9a,0x42,0x7e,0x48,0x06,0xe1,0xc4,0x8b,0xc3, +0xf3,0xce,0xcb,0x87,0x46,0x61,0xdf,0xa9,0x7d,0xe6,0xc8,0xd4, +0x06,0xa1,0xd2,0x8f,0x01,0xda,0x83,0xab,0xbe,0x38,0x39,0x8c, +0x2a,0x93,0x5a,0x2f,0x15,0xcd,0x2f,0x62,0x6f,0xa0,0x66,0xf1, +0x9d,0xbe,0xca,0x97,0xe0,0xd8,0xfd,0x38,0x24,0x1b,0x65,0xf5, +0xc1,0x1e,0xf2,0x1b,0xde,0x0f,0xc3,0x9e,0x51,0x29,0x78,0x71, +0xd8,0x71,0xc3,0xc0,0x04,0xbd,0xc3,0x39,0x27,0xf2,0x8a,0x8a, +0xce,0xba,0x1e,0x93,0xbb,0x3b,0x78,0xb8,0xfa,0x4e,0xd5,0xc9, +0x31,0xb9,0x60,0xf3,0x42,0x92,0x6a,0x1f,0x8c,0x04,0x7f,0x7d, +0x68,0x5e,0x2b,0x83,0xaf,0xb8,0xdc,0xa5,0xf9,0x2b,0xf2,0xa9, +0x22,0xbe,0xeb,0x2f,0x7a,0x93,0x40,0x68,0x3b,0x07,0xbe,0x58, +0x09,0x9f,0xd8,0xac,0x94,0xaf,0x77,0xd9,0xe8,0xb8,0xc5,0x49, +0x86,0x11,0xe0,0x67,0x83,0x7e,0xb1,0x2c,0x4e,0x1a,0x94,0x02, +0x9f,0x0e,0x13,0x5c,0xfc,0x18,0x54,0xbc,0x02,0xce,0x0f,0xa6, +0x2a,0x77,0xe1,0xe4,0x4a,0x98,0x0c,0x73,0xd8,0x6d,0x2e,0x3b, +0xdd,0x76,0x53,0x36,0x8a,0x05,0xaa,0xb9,0x04,0x34,0x76,0xbc, +0x49,0x7c,0xf1,0x7f,0xb9,0x7b,0x0f,0xf8,0xa8,0xaa,0x6d,0x7f, +0x1c,0x85,0x39,0x73,0x54,0x8c,0x02,0x1e,0x3c,0x99,0xe1,0xce, +0x20,0x55,0x04,0x14,0xe9,0xbd,0xd7,0xf4,0xde,0x7b,0xef,0x84, +0xf4,0x84,0x54,0xd2,0x87,0x49,0xef,0xbd,0x27,0x10,0xd2,0x7b, +0x2f,0xa4,0x27,0xf4,0x22,0xa0,0xa2,0xd8,0x2b,0x76,0xef,0x3a, +0xe3,0x9a,0xdc,0xf7,0xdb,0x93,0xa0,0xa2,0x57,0xdf,0xf3,0xbe, +0xfb,0xde,0xff,0x7d,0x3e,0x7f,0xf2,0x61,0x72,0x66,0x9f,0x7d, +0xf6,0x5e,0x6b,0xed,0x55,0xbe,0x6b,0x9d,0x93,0x7d,0x4a,0x02, +0x87,0xd9,0xb5,0xbe,0x6b,0x03,0x71,0x7e,0x08,0x2d,0xd7,0xde, +0xac,0x78,0xe6,0x4a,0x0b,0xcc,0xf6,0x71,0x07,0x5d,0x32,0xa6, +0x58,0xf9,0xeb,0xd5,0xa8,0x71,0x99,0x48,0x59,0x85,0xe6,0x4c, +0x71,0x07,0xf3,0x55,0x0a,0x50,0x59,0x0f,0x73,0x43,0x47,0xd8, +0xf5,0xc1,0xf8,0x44,0x18,0xce,0x51,0xb8,0x86,0x42,0xc5,0xfd, +0x74,0xed,0x65,0x35,0xf0,0xfc,0x6b,0x62,0x5d,0x73,0x32,0xeb, +0xb7,0x30,0xdf,0x06,0x3c,0x85,0x4d,0xa8,0x32,0xc5,0x69,0xa9, +0x92,0x40,0x0a,0xb1,0x68,0xca,0x5c,0x82,0xef,0x54,0x28,0xa5, +0x07,0xb2,0x64,0xe6,0x04,0xe7,0xc9,0x37,0xdf,0x75,0x6c,0x8d, +0xf6,0xc1,0x51,0x67,0x76,0xfc,0xde,0x6d,0x78,0x62,0xec,0x21, +0x0d,0xe5,0x97,0x29,0xc5,0x8e,0xd9,0xcb,0x18,0x30,0x21,0xd7, +0x68,0xf0,0xd1,0x74,0x59,0x1d,0x2c,0x78,0x5d,0xac,0x63,0x3e, +0xc3,0x88,0x92,0x05,0x04,0x0a,0xc7,0xf1,0xd8,0x14,0x1c,0x83, +0xd4,0x4b,0x24,0x8d,0x39,0x4e,0xec,0xfe,0x3a,0xa7,0x71,0x84, +0xe2,0xae,0xca,0xd7,0x92,0x23,0x5a,0x71,0x63,0xf1,0xbc,0xac, +0x9b,0xc1,0x2e,0x92,0xa1,0x67,0xe0,0x13,0x25,0xaf,0xd7,0x0e, +0xb6,0xf5,0x76,0xb4,0xb7,0x9a,0xb6,0xb0,0xe6,0xe6,0x3a,0xc6, +0x1a,0x66,0x4b,0x07,0xf6,0xbe,0xa1,0xf6,0xb5,0xb6,0x0d,0x3b, +0xb5,0xe6,0xee,0xbe,0x1f,0x74,0xcc,0x5d,0xcc,0x5c,0xad,0x4e, +0x76,0x5b,0xb3,0xbd,0x17,0xfa,0xeb,0x7b,0x1b,0x15,0x0a,0xf3, +0xf2,0x49,0xd0,0x0d,0xa7,0xe1,0x1f,0x44,0x61,0x8a,0x65,0xeb, +0x19,0x78,0x5d,0x1d,0x87,0xf8,0xb8,0x79,0x02,0x19,0x10,0x1c, +0x80,0x0d,0x5a,0xae,0x6c,0xb5,0x66,0x93,0x66,0xb7,0x1e,0x8d, +0x1f,0xab,0xc3,0x77,0x94,0xbd,0xa6,0x99,0x8a,0x8d,0x51,0xbf, +0x0b,0xdb,0x3e,0xd0,0x7f,0xaf,0xe5,0xd2,0x25,0x9d,0x3b,0x66, +0xef,0xbb,0xd1,0x93,0xb0,0x06,0x56,0x13,0x95,0xff,0x5c,0x76, +0x9e,0x81,0x97,0xd1,0x02,0x42,0xf1,0x49,0x6e,0xa3,0x4d,0xda, +0x25,0x56,0xfe,0xb7,0x16,0x74,0xfb,0x1c,0x45,0x60,0x48,0x93, +0xb3,0xcd,0x0c,0xf8,0x1f,0x80,0xe0,0x93,0xd0,0x13,0x99,0x4c, +0x5c,0x70,0x4b,0x2a,0x7a,0x56,0xa1,0xc7,0x4d,0x5a,0x6e,0x31, +0x0f,0x3c,0x6e,0x82,0x67,0x15,0xb4,0xa4,0xc6,0x90,0x13,0xbd, +0x51,0x78,0xda,0x03,0xfd,0xf7,0xd3,0x4a,0x10,0x2d,0xab,0x63, +0xb6,0x58,0xd9,0xec,0x10,0x63,0xe8,0x14,0x04,0xf2,0x3b,0x8a, +0x0b,0xba,0x44,0xd0,0x48,0x55,0xbd,0xd2,0x83,0x4f,0xf7,0xec, +0x19,0x2d,0x67,0x4d,0xdf,0xb0,0x80,0x39,0x3e,0x0f,0x68,0xb8, +0x42,0x64,0x24,0xab,0x22,0x68,0x05,0x1f,0xa6,0xe1,0xde,0x29, +0xe2,0x2a,0x34,0xb4,0x49,0x80,0x7a,0x09,0xad,0xc0,0xe2,0x00, +0xb7,0x23,0x9e,0xe6,0x94,0x55,0x88,0xf7,0xf4,0xe1,0x84,0x0c, +0xec,0x7e,0x0b,0x9c,0x3e,0x03,0x66,0x9c,0x3e,0x9f,0x93,0x57, +0x54,0x21,0xa8,0x0c,0x2a,0x70,0xcc,0x11,0xed,0xad,0x46,0x41, +0xff,0x9a,0x16,0x5d,0x73,0xf6,0x47,0x4b,0x58,0x68,0x72,0xcf, +0x9d,0x2e,0x88,0x4a,0x8b,0x8b,0x14,0x44,0x46,0xc6,0x05,0x46, +0x8a,0x70,0xe5,0x71,0xd4,0xd9,0x86,0xbb,0x76,0x13,0xa2,0x8e, +0x13,0xa1,0xc3,0x0b,0x36,0xb0,0xcc,0x13,0x16,0x85,0xe5,0x4c, +0xb0,0xc8,0x64,0xe0,0xd2,0x0a,0x9c,0xd7,0x42,0xe3,0xdf,0xb0, +0x94,0x91,0x11,0x9d,0x9c,0x80,0x13,0xb0,0x73,0x12,0x77,0x82, +0xa6,0x3a,0x6a,0x4e,0x53,0x14,0xb0,0x8a,0xb7,0x5f,0x3f,0xd7, +0x08,0xc2,0x12,0x60,0xb2,0x4f,0x8f,0xb1,0xf8,0x42,0x08,0xae, +0x39,0x85,0x0b,0x9d,0x89,0x8d,0x97,0x70,0x01,0x0c,0x2e,0x2d, +0xc5,0xa7,0xc6,0x5f,0xb9,0xd7,0x5f,0xdd,0x5b,0xdd,0x51,0xed, +0xd0,0xcd,0xe2,0x82,0xad,0xb8,0x76,0x1b,0xfe,0x4d,0xa5,0xce, +0x98,0xbd,0x52,0x7d,0xa3,0xe1,0x5a,0x13,0xf0,0x37,0xc0,0x2b, +0x7b,0x61,0x9d,0x37,0x3d,0xc1,0xed,0x27,0x0e,0x1f,0xec,0x64, +0x6f,0x31,0xa7,0xf1,0x19,0x6b,0x3c,0xe4,0x80,0x73,0xa7,0x42, +0xd9,0x06,0x98,0xdb,0x0a,0xfb,0xf3,0xe1,0x39,0x1a,0x12,0x9c, +0x99,0x30,0x62,0xaf,0xac,0xc7,0xab,0xa4,0xfd,0xfc,0x57,0x55, +0xb0,0x20,0xfb,0x4b,0x1a,0x42,0x33,0x99,0x30,0x9c,0xe7,0x86, +0x4b,0x3d,0xd7,0x92,0xe6,0xaa,0x6f,0xce,0xc3,0xb2,0x2c,0x78, +0x82,0x18,0xd9,0x1a,0xc5,0x4b,0x88,0x73,0x6b,0x50,0xd2,0x85, +0x36,0xc3,0xf1,0x45,0xf1,0x45,0x92,0x82,0x13,0x51,0x6c,0x06, +0xf2,0x4a,0x50,0x5c,0x8d,0xcf,0x39,0x46,0x3b,0xc6,0x38,0xc5, +0x94,0x68,0xb1,0xb0,0xb5,0x04,0x8e,0xd4,0xc3,0xca,0x56,0xdf, +0x19,0x77,0xf0,0x84,0x17,0xce,0xf3,0x0b,0xb8,0x73,0xfa,0xbd, +0x88,0xb7,0xc0,0xd8,0x10,0x62,0x2d,0x20,0x83,0xf0,0xf3,0xd3, +0x12,0x2e,0x9d,0xc1,0x95,0xb9,0xa8,0x54,0xb2,0xb2,0xba,0xb7, +0xb7,0xbb,0xaf,0xad,0xcf,0xa0,0x8e,0x35,0xd7,0x35,0xd0,0xd5, +0x37,0xc4,0x15,0x17,0x57,0xde,0xdb,0x0b,0x73,0xf5,0x6c,0xd8, +0x37,0xf1,0xc9,0xef,0xb6,0xc3,0x0a,0x2d,0x23,0x73,0x43,0x6b, +0x53,0x87,0x41,0x07,0x76,0xb0,0x75,0xb0,0x6b,0xa0,0x1b,0x28, +0x3b,0x58,0x72,0x0a,0x76,0x9c,0x26,0x82,0x19,0x90,0x9d,0x60, +0x50,0x02,0x5b,0x54,0x70,0x0b,0xe6,0x51,0x5b,0xad,0xac,0x89, +0x1e,0x2c,0x9f,0x04,0x31,0xbf,0xbd,0xb8,0x88,0xe8,0x41,0x36, +0x3a,0x5f,0x02,0x67,0x90,0xe0,0xb1,0x4b,0xdc,0xb3,0x2a,0x33, +0xa1,0x27,0x8b,0x41,0x6f,0x17,0x6b,0x78,0x41,0xc3,0xbf,0x09, +0x9f,0x92,0x0f,0xee,0xc8,0x50,0xe5,0x2e,0xbd,0x73,0x19,0xcd, +0x5f,0xce,0x79,0xb9,0x79,0xd7,0xb8,0xb2,0xa5,0xf1,0xc3,0x23, +0x0a,0x17,0xb1,0x20,0x54,0xf9,0x52,0xd1,0x76,0x48,0x06,0x87, +0x6a,0x82,0x3a,0x92,0x65,0xfd,0x0c,0xe6,0xf0,0x71,0x67,0x12, +0xda,0xe6,0xe3,0x36,0x82,0x3a,0xb2,0x4e,0xc8,0x35,0x2e,0x03, +0x9f,0x0f,0x7b,0xfd,0xc1,0x2b,0x10,0x1c,0xa2,0x67,0x7c,0x2a, +0xbc,0x4e,0xd4,0xeb,0xb8,0x8a,0xac,0x10,0xfe,0x43,0x05,0xfb, +0x30,0x19,0x9a,0x08,0xb2,0xc3,0x02,0x98,0x20,0x73,0x73,0x6f, +0x73,0x99,0x0c,0x06,0xa4,0x21,0x3d,0xf9,0x32,0xec,0xd1,0xb4, +0x65,0x89,0x47,0x37,0x80,0xf5,0x47,0xa0,0x8f,0x68,0xde,0x4a, +0x55,0x3e,0x04,0xcb,0xe7,0x90,0xb0,0x7d,0x8d,0xac,0x1b,0xa7, +0x49,0x10,0x0a,0xa7,0x7f,0x49,0xae,0x4f,0xc9,0xe7,0x10,0xb9, +0x6f,0xfa,0x0a,0xe6,0xef,0x07,0x7f,0x21,0x47,0x5f,0x92,0xd3, +0x14,0x5a,0xbf,0x3a,0x01,0xab,0x36,0x12,0xf4,0xc0,0xca,0xc8, +0x88,0x40,0x61,0xe0,0x2b,0x05,0xf7,0x37,0x89,0x8d,0x6d,0x78, +0x1b,0xbe,0xfe,0xee,0x24,0xe4,0x09,0xe1,0x47,0x6a,0xba,0x75, +0x33,0xa3,0xc9,0xbf,0xbd,0x1b,0x56,0x1d,0x82,0x53,0x5e,0x59, +0xc3,0x2c,0x1e,0x2b,0xc2,0x67,0xbb,0x54,0xfa,0x69,0x99,0xcd, +0x18,0xa5,0xf4,0xa9,0xac,0x8a,0x51,0xe7,0x5f,0x45,0x01,0x6c, +0x42,0x3e,0x48,0x74,0x8a,0x89,0xbe,0xb9,0xf7,0xe1,0xc2,0xfb, +0x7b,0x60,0x2e,0x2d,0x0b,0x25,0xae,0xfd,0x5b,0x99,0x94,0x79, +0x0b,0xb3,0x77,0xa9,0x92,0x70,0xc7,0x4e,0x87,0x52,0xb2,0xbd, +0xaa,0x0c,0x66,0xcb,0xeb,0x20,0x9b,0xc0,0xd1,0x12,0x59,0x3a, +0x03,0x65,0x58,0x4c,0xa1,0x2c,0x15,0x77,0x8c,0x10,0x5f,0x70, +0x4c,0xcb,0x52,0x81,0x23,0x4c,0xc0,0xe4,0x04,0x77,0x88,0x30, +0xb4,0x1c,0x3f,0x20,0x1e,0x63,0xbb,0x6c,0x01,0xd3,0x5f,0xfb, +0xc1,0xf5,0xab,0x57,0xcc,0xdb,0xd8,0x13,0xaa,0x5b,0x8e,0xe9, +0x3a,0xd2,0xf2,0x73,0x9f,0x11,0x3d,0x27,0x3e,0xc0,0x0a,0x69, +0xf8,0xd2,0xf8,0xdc,0x28,0x8b,0x0f,0x07,0x50,0xfd,0x6b,0xe4, +0x81,0x09,0xad,0xf8,0x3b,0x0f,0x4b,0x66,0xa8,0xe4,0x5a,0xc3, +0xc5,0x1a,0xaf,0x21,0x56,0xcf,0xe9,0xb8,0x93,0x8e,0x0f,0x7d, +0x1d,0x77,0x31,0x17,0x4b,0xaf,0xd6,0x0f,0xd6,0x7a,0x5f,0x64, +0xf5,0x1c,0x8f,0x3b,0xeb,0x79,0x91,0x9e,0x51,0xb2,0x70,0x66, +0x6f,0xaf,0xe9,0x8d,0x1b,0xbd,0xdd,0x77,0xef,0x18,0x77,0x1f, +0x3e,0x6c,0x6c,0xba,0x4f,0xd4,0xbb,0xb8,0xb3,0xa2,0xbc,0x51, +0x94,0x43,0x35,0x56,0x78,0x99,0x9b,0x9d,0xf2,0xb2,0x17,0x87, +0x50,0xf6,0xa7,0xca,0xbb,0x08,0x86,0x1f,0xe6,0xae,0x90,0xb5, +0xd7,0x00,0xef,0x55,0xe3,0xdf,0xc0,0x3b,0x5b,0xc6,0xdf,0x83, +0x6d,0xe3,0xb8,0x0d,0x4a,0x35,0xb6,0xe2,0x3b,0x5f,0x6b,0x50, +0x9c,0x00,0xb7,0x29,0x5e,0xc0,0xf2,0xb6,0xe2,0x05,0x2c,0x32, +0x86,0x24,0x08,0xf2,0x03,0x70,0x54,0x55,0x6e,0x32,0x05,0x4e, +0xdc,0x01,0x0a,0x56,0xe3,0x7c,0x66,0x5d,0xd6,0xd6,0x46,0xd5, +0x01,0x53,0x13,0xf6,0x8e,0xd6,0xb7,0xd6,0xc0,0x0f,0x26,0x60, +0x4f,0xa0,0x58,0xaf,0xdd,0xb2,0x58,0x06,0x02,0x30,0x8e,0xc2, +0xee,0x14,0x14,0xf6,0xe3,0x1c,0xd8,0xaa,0x4b,0xe0,0xf3,0xb3, +0x24,0x22,0xef,0xd4,0xe4,0x9e,0x24,0xf2,0xa0,0xb1,0x99,0xc8, +0xed,0x3b,0x12,0x2e,0xe1,0x25,0x6d,0x7c,0x89,0x8f,0x66,0x49, +0x28,0x68,0x59,0x01,0x4f,0x99,0x98,0x2a,0x60,0xf6,0x73,0xb0, +0xde,0x0c,0x3c,0x62,0x68,0x64,0x6d,0xf8,0xcb,0x48,0x18,0xcc, +0xdc,0x22,0xb6,0x4a,0x0e,0xc9,0x96,0x76,0x4a,0xc7,0x59,0x02, +0xa6,0x54,0xf8,0x87,0x2a,0x3c,0x6e,0x45,0x88,0xc2,0x3f,0x81, +0x17,0x62,0x60,0x9e,0xf0,0x53,0x30,0x80,0xd7,0xc6,0x89,0x3b, +0x4b,0x95,0x99,0x31,0xb8,0xb6,0x02,0x9f,0xef,0x7c,0x7d,0xc2, +0xde,0x88,0x1d,0x76,0x98,0x72,0xbb,0xee,0x45,0xbf,0xb4,0x85, +0x8f,0x6a,0xaf,0x36,0xc3,0x8b,0x3b,0xc5,0xba,0x0e,0x3c,0x5c, +0xf1,0x31,0xcc,0x33,0x04,0x47,0xe1,0x7b,0x38,0x77,0x14,0xb2, +0xa9,0x8e,0xd0,0xee,0xf0,0xde,0x33,0xc4,0x0a,0x97,0x13,0xe0, +0x8f,0xaf,0xfe,0x82,0x2b,0xa9,0xff,0x0c,0x57,0xf2,0xf3,0x5c, +0x19,0x13,0x77,0xc3,0x53,0x26,0xbe,0x45,0x36,0x6c,0x77,0xe9, +0x40,0x45,0xcf,0x39,0xba,0xc0,0x81,0x31,0xf1,0x30,0xf1,0x32, +0xf6,0x2e,0xb2,0x63,0x7b,0xcb,0x7a,0xca,0x49,0x93,0xd2,0x4f, +0xab,0x09,0x60,0x44,0x9d,0x19,0xc8,0x48,0xfd,0xcf,0x40,0x46, +0x2a,0x49,0x95,0x31,0x76,0x31,0xf4,0x30,0xf6,0x29,0xb6,0x63, +0x7b,0xca,0x06,0xce,0xf5,0x5c,0xa0,0x0b,0x9c,0x19,0x13,0x57, +0x93,0x93,0x86,0x5e,0xc5,0x0e,0x6c,0x5f,0x45,0x4f,0x65,0xef, +0x05,0xfa,0xdf,0xc0,0x95,0xf1,0xc7,0xff,0x1a,0x6f,0x1b,0x64, +0x8e,0xff,0x6d,0xf4,0x99,0xbb,0x89,0x31,0x73,0x37,0x39,0x65, +0xea,0x5b,0x6c,0xcb,0x76,0x95,0xf6,0x56,0x74,0x91,0x39,0x9c, +0x18,0x33,0x0f,0xb3,0x53,0x26,0x3e,0xc5,0xf6,0x6c,0x77,0x59, +0x57,0x79,0x97,0x62,0x8e,0xf5,0x32,0xb7,0x7f,0x0f,0xa3,0x26, +0xad,0x23,0x13,0x19,0xff,0x66,0xa2,0x7c,0x67,0xc6,0xdc,0xc3, +0xd4,0xcb,0xd4,0xbb,0xc8,0xe1,0xd7,0x89,0xf6,0x73,0xc3,0x8c, +0x83,0x8f,0xbd,0xbf,0x43,0x00,0x0d,0x0f,0x4f,0x60,0xbd,0x3c, +0x0f,0xba,0x4f,0x60,0xf7,0xae,0x13,0x32,0x47,0xbe,0x47,0x48, +0xa1,0x7d,0x4f,0x69,0x7f,0x55,0xf7,0x79,0xe5,0x5c,0x37,0xc6, +0xd4,0xdd,0xc4,0xd3,0xd8,0xa7,0xd0,0x89,0x08,0xa2,0xbb,0xa2, +0xe7,0xfc,0xcc,0xb5,0x13,0x8c,0x6f,0xa8,0x6f,0x98,0x6f,0x18, +0xdd,0x48,0x52,0xc4,0xf5,0x60,0x3a,0x81,0xa6,0x6f,0xaa,0xef, +0xc6,0x33,0xea,0x70,0x86,0x40,0xdf,0x75,0x0a,0xe8,0xdb,0x31, +0x03,0x7d,0x6d,0x1f,0x83,0xbe,0xeb,0x96,0x4f,0x7c,0x0f,0x2f, +0x52,0x61,0xd1,0xa1,0xd1,0x61,0x31,0x45,0xb6,0x2c,0x99,0x42, +0x21,0x6b,0x42,0x9e,0x89,0xbb,0x89,0x97,0x91,0x4f,0x91,0xfd, +0x2f,0xb2,0xe6,0x52,0x64,0x4b,0xff,0x1a,0x38,0x46,0xe0,0xff, +0x02,0x8e,0xdf,0x98,0x01,0xc7,0xf7,0x7f,0x06,0xc7,0xb2,0x57, +0xf1,0x4b,0x66,0x56,0x06,0x7e,0xcd,0xec,0xac,0xf8,0xe9,0x71, +0xe4,0x31,0xb3,0x42,0xf0,0x6f,0x64,0x67,0xe5,0x4f,0x38,0xda, +0xcb,0x4d,0x31,0x6e,0x01,0x2e,0x81,0xae,0xa7,0x69,0x18,0x51, +0xc3,0xcc,0x59,0x3c,0xfd,0x23,0x01,0x7a,0xfb,0x89,0x31,0xdc, +0xd8,0xfc,0xee,0x21,0x98,0xa3,0x77,0x48,0x6b,0x9d,0xda,0x56, +0x05,0x9e,0xfe,0xa4,0xef,0x9b,0xeb,0xf7,0x2e,0xc1,0x1c,0x0b, +0x60,0x3c,0x60,0x53,0x58,0x68,0x34,0x5b,0x64,0x33,0xcb,0x8c, +0x72,0xbe,0x23,0x63,0xea,0x61,0xac,0x50,0x9c,0x5f,0x99,0xf9, +0xe9,0x39,0xd9,0x19,0x06,0x63,0xa9,0x7f,0x07,0x6d,0x53,0xb5, +0xcb,0x19,0x63,0x77,0xa3,0x53,0xc6,0xbe,0xff,0x85,0xe0,0x2a, +0x64,0xfa,0x7f,0x06,0xc9,0x97,0xe1,0x41,0x38,0xb2,0x8b,0xe3, +0xdb,0xa5,0x11,0x0c,0xf5,0x43,0x3d,0x6e,0xb9,0x8e,0x2f,0xc2, +0x5e,0x5a,0x76,0x14,0xef,0x31,0x9d,0xc5,0xbd,0xe5,0x9d,0x95, +0x44,0x4c,0xe6,0x27,0x4d,0xbd,0xcc,0xfc,0xe9,0x51,0xa4,0x98, +0xae,0x92,0xce,0xb2,0xce,0x4a,0x22,0x26,0x0b,0x4f,0x33,0x6f, +0x33,0xdf,0x19,0x0b,0x70,0xfa,0x1f,0xc4,0xee,0xc5,0xaf,0xfd, +0x35,0x9b,0x78,0xe5,0x4f,0x10,0x7e,0xe0,0x0c,0xc2,0x8f,0xfe, +0x43,0x84,0x9f,0x32,0x8b,0xf0,0xa3,0x7e,0x46,0xf8,0x6b,0xff, +0xce,0x98,0xfb,0x9a,0xf9,0x9b,0x9f,0xce,0xb7,0x65,0x3b,0xf3, +0xba,0x8b,0x3a,0x4a,0x68,0x9c,0x83,0x8b,0x99,0xce,0xfc,0x0e, +0x72,0x7c,0x9a,0xf0,0xe8,0x63,0x11,0x60,0x1e,0x44,0x04,0xd8, +0x20,0x0b,0xfb,0xb3,0x4c,0x60,0x05,0x92,0x6c,0x7e,0x2f,0xb7, +0xd0,0x29,0x77,0x9c,0x95,0xcf,0xab,0xc1,0xc3,0x57,0x49,0x0a, +0x7d,0x50,0x91,0x09,0x6c,0xfb,0xa3,0x4c,0x00,0xd2,0xd1,0xfa, +0xaf,0x09,0x96,0xcb,0x91,0xbd,0xfc,0x5f,0xa6,0x0c,0xb0,0x96, +0xc1,0xc4,0x4b,0x90,0xc8,0xbf,0x83,0x92,0xbf,0xa4,0x0b,0x0f, +0x64,0x1a,0x0c,0xe7,0x49,0xfd,0x51,0x66,0x31,0x7d,0x83,0x92, +0x25,0xe0,0x3a,0xc6,0xc8,0xcd,0xc0,0xd3,0x48,0xe1,0xf7,0x7a, +0x4b,0x07,0x2b,0xfb,0xce,0xd3,0xc8,0xc7,0x0d,0x4c,0x7f,0x59, +0x6f,0x45,0xdf,0x79,0xff,0x26,0x56,0x31,0x89,0xa1,0xb7,0x02, +0x99,0xf7,0xfe,0xab,0xc8,0x5c,0x66,0xef,0xcf,0xf4,0x16,0x0c, +0x94,0xf4,0x96,0x07,0xb5,0xb0,0x46,0x5e,0x46,0xbe,0x46,0x81, +0x74,0x0f,0x61,0xbd,0xaf,0xb0,0x87,0x08,0x84,0xc8,0xdb,0xd8, +0xcb,0xc4,0xcf,0x28,0x80,0xc4,0xf1,0x2f,0x14,0x85,0xa0,0x9f, +0x07,0x74,0xd6,0x64,0x7f,0x99,0x88,0x88,0x6a,0x35,0xe3,0x1b, +0x10,0x15,0x16,0x22,0x8e,0xed,0xfe,0x65,0x64,0xe5,0x5a,0x2d, +0x70,0xb9,0x01,0xee,0x55,0x50,0x9b,0xa6,0x1c,0x11,0x1c,0x13, +0xe4,0x27,0x30,0xa8,0x75,0xee,0xe9,0xad,0xab,0xeb,0xef,0x77, +0xaa,0x33,0x16,0xc5,0xa2,0x80,0xf1,0x0a,0xca,0x3f,0x7f,0xbe, +0x20,0xbf,0x4c,0x9c,0x46,0x95,0x17,0x04,0xb9,0xbb,0x07,0x05, +0x9d,0x22,0x70,0x69,0x05,0x49,0x15,0xa6,0x37,0x51,0x7f,0x31, +0x5b,0xa0,0x42,0x51,0xc8,0x18,0xb9,0xff,0x56,0x3c,0xc4,0xba, +0x67,0x65,0x42,0xa4,0x3c,0x2b,0x25,0xfa,0x5f,0x1e,0xf7,0x18, +0xe1,0xca,0xc8,0xc1,0x41,0x4f,0xaf,0xc1,0xa1,0xaf,0xbf,0xb1, +0xe1,0xe2,0x45,0xfb,0x06,0x43,0x71,0x2c,0xbe,0xc4,0x9c,0x0a, +0xcc,0xbf,0x70,0xa1,0x30,0xbf,0x9c,0x50,0x5d,0x51,0x14,0xe4, +0xea,0x1a,0x10,0xe4,0x49,0xa8,0x56,0x21,0xbe,0xd6,0x9e,0xf8, +0x69,0xfb,0x40,0x1a,0xbe,0x56,0x51,0x24,0x5f,0x1f,0xcf,0xa4, +0x2f,0x0b,0x40,0x55,0x91,0xbe,0xfc,0x0d,0x8d,0xc0,0x70,0x3f, +0xa7,0x1c,0x5d,0xe0,0xf4,0x9f,0xa9,0xc2,0x4f,0x2f,0x71,0xa3, +0x8c,0x9b,0x67,0x88,0x77,0xb0,0x18,0xde,0x9a,0x19,0xe5,0x93, +0x34,0xdc,0x3d,0x41,0x22,0x96,0xba,0x62,0x14,0x31,0x9a,0x81, +0xe9,0x41,0xee,0xe5,0x58,0x5a,0x12,0x7b,0x36,0x36,0x56,0xf0, +0x38,0x6d,0xa2,0x3f,0xa5,0x0d,0xac,0xfe,0xed,0x5c,0x89,0xbb, +0x32,0x41,0xac,0xa1,0xaf,0xa2,0xab,0xca,0xbf,0x85,0x25,0x8e, +0xf3,0x94,0xa9,0x1f,0x3d,0x86,0x34,0xd3,0x53,0xd2,0x55,0xde, +0x5d,0x45,0x54,0xd0,0x8c,0x58,0x8d,0xc2,0x43,0xff,0x4f,0xcc, +0x75,0xe3,0x2a,0xa3,0xdb,0xe0,0x30,0x30,0xd0,0xd8,0x30,0x34, +0x64,0xdf,0x68,0x60,0xe0,0x60,0xaf,0x2b,0x6a,0x5e,0x5c,0x53, +0x94,0x5f,0x21,0x9a,0x61,0xcb,0x65,0x86,0xad,0x48,0xca,0x33, +0x20,0xff,0x02,0xe1,0x6e,0xeb,0xbf,0x9e,0xc5,0xc9,0x22,0xd0, +0x95,0x99,0x5d,0x86,0x80,0x66,0x76,0xd6,0x46,0x69,0xf9,0x67, +0x1b,0xfe,0x24,0xb3,0x93,0x1d,0xda,0xc5,0xcc,0xae,0x50,0x40, +0x23,0x3b,0xbb,0x66,0xf4,0x7f,0x77,0x5e,0x5d,0x46,0xbf,0xde, +0xb1,0xb7,0xbf,0xa1,0x7e,0x70,0xd0,0xa1,0xde,0xd0,0xd8,0xd1, +0x51,0x5f,0x24,0x9f,0xde,0xff,0x67,0x13,0x1f,0xce,0x63,0x2e, +0x14,0xe6,0x95,0x2b,0xf8,0x2e,0x38,0xed,0xea,0x16,0x48,0x0c, +0x24,0x92,0x22,0x8b,0x5c,0x2d,0x56,0x52,0xfa,0xe9,0x88,0xcc, +0x80,0xb1,0x4c,0xb5,0x4e,0xb3,0x4e,0x97,0x36,0x4b,0xdb,0x13, +0x1b,0x34,0xa4,0x6c,0xbc,0xab,0xc4,0x4e,0x62,0x8f,0x4b,0x2f, +0xe0,0xf3,0x4d,0x2b,0xdb,0xbd,0xf5,0x59,0x78,0xfd,0xd0,0x75, +0x03,0x13,0x81,0x8b,0xc7,0xe9,0x03,0xb1,0x22,0xa0,0x0f,0x6e, +0x1e,0x5d,0x23,0x5c,0x63,0xa0,0x8e,0xcf,0xd8,0x27,0x1b,0x66, +0x18,0x88,0xa7,0xd2,0x79,0x61,0x7d,0xb1,0xbd,0x8d,0x82,0x37, +0xab,0x6a,0x26,0xaf,0x8c,0x39,0xec,0xbf,0x28,0x32,0x4d,0x38, +0x9e,0xa8,0x9d,0x44,0x6b,0xf0,0xe3,0xef,0xdc,0x8d,0x19,0x11, +0x16,0xba,0x14,0xd8,0xe5,0x5b,0x8d,0x14,0xb1,0x21,0xf5,0xc1, +0x35,0xa7,0xcf,0xd3,0xef,0x65,0x74,0x5e,0xe8,0x17,0x0c,0xea, +0xd7,0x18,0x55,0x89,0x92,0xf9,0x3d,0xc1,0x57,0x03,0x3e,0x0a, +0x90,0x1e,0x49,0x39,0x94,0xb9,0x73,0x2c,0x91,0x0d,0xbf,0x17, +0x73,0x59,0x32,0x59,0x1f,0xd9,0x1c,0xd5,0x16,0x49,0x2b,0x6e, +0xf5,0x59,0x32,0x76,0x09,0x76,0x52,0x07,0xa9,0xa4,0xfe,0x6c, +0x9d,0xb4,0x5a,0x5f,0xca,0x4a,0xdc,0xce,0x3a,0x49,0x1d,0x69, +0x1b,0xdb,0xb3,0x12,0x7b,0xf1,0x35,0x93,0xb5,0xed,0x48,0x09, +0xd7,0x6a,0x3b,0x68,0xee,0x03,0xf1,0x31,0x38,0x63,0x2d,0xb6, +0xf6,0x36,0xf4,0xdd,0x2b,0xc4,0x27,0xd4,0x5a,0x3f,0x3d,0x25, +0xd6,0xf3,0xe1,0x21,0xef,0xfc,0x3b,0x3a,0x20,0x12,0xc2,0x92, +0x8f,0x6f,0xc1,0xdc,0xa2,0xb8,0xa2,0xa8,0x02,0xf1,0x67,0x54, +0xc2,0xe1,0xa4,0x03,0x29,0x2a,0x43,0x89,0x6c,0xd4,0xa5,0xd8, +0x9b,0xf1,0x57,0xeb,0x24,0x8d,0xf1,0x8d,0xf1,0xf4,0xf4,0xa2, +0x1b,0x4c,0x55,0x75,0xde,0xa5,0x37,0x2f,0xfb,0x38,0xb4,0x89, +0x5e,0x8d,0xd9,0x15,0xa1,0x1a,0x44,0xbb,0x15,0x9c,0xce,0xcf, +0x16,0xc0,0x7b,0x24,0x2d,0x08,0xe3,0xef,0xcc,0x3a,0x5a,0x60, +0x50,0x30,0x9c,0x31,0x95,0x72,0x3d,0x91,0x4e,0x0b,0x4a,0x0a, +0x08,0x10,0x28,0xdd,0x93,0x1d,0x66,0x74,0xee,0xfb,0x81,0x28, +0x54,0x94,0xd3,0x4f,0xe6,0x4b,0x37,0x4d,0x2d,0x15,0x54,0xc0, +0xfc,0x7a,0xee,0x70,0xa2,0x48,0x32,0xc2,0x93,0x1f,0x8a,0x47, +0x7d,0x87,0x6d,0x02,0x78,0x1e,0xf3,0x18,0xd8,0x27,0x85,0x57, +0x1b,0x61,0xc1,0xa8,0x2f,0x01,0x30,0xcf,0x68,0xe1,0x2b,0x8e, +0xb8,0x4b,0x42,0x2b,0x5d,0x95,0xa9,0x30,0x43,0xb8,0xe9,0xeb, +0x1d,0xb0,0x54,0x42,0xc3,0xd3,0x92,0xeb,0x63,0xdf,0x09,0x3a, +0x83,0xde,0x75,0xfb,0x4c,0xa4,0xe5,0xc7,0x3b,0xb7,0xad,0x60, +0x9f,0xb5,0xe0,0x84,0x85,0xf3,0x56,0x9c,0xbb,0xe7,0x2a,0x2c, +0x35,0x15,0x71,0x5f,0x62,0x1c,0x93,0xf3,0x51,0xe6,0x57,0xc9, +0x0f,0x55,0x53,0xd9,0xf8,0x95,0xa1,0x2b,0x43,0xb6,0x91,0xe0, +0x92,0xc5,0xdd,0x61,0x70,0xf3,0x37,0xf8,0xe4,0x6d,0x5c,0xfd, +0xa3,0x83,0x31,0xfb,0xae,0xce,0x90,0x43,0x97,0x13,0x7d,0xc1, +0xaf,0xe4,0x54,0xb0,0x20,0xf8,0x74,0x9c,0x7a,0xbc,0x08,0xe7, +0xc4,0x59,0x7b,0xaa,0x0a,0x3c,0x52,0x1c,0xb3,0xed,0x45,0x23, +0xe9,0xbc,0xd0,0x9a,0x98,0xca,0x4a,0x41,0x75,0x65,0xc6,0x27, +0x09,0xa2,0xab,0x09,0x55,0xd9,0x17,0x04,0xd2,0xec,0x88,0xac, +0xe0,0xbc,0xc4,0x44,0xb6,0xcb,0xed,0x1b,0x95,0x2e,0x57,0x7a, +0x00,0x86,0x35,0x29,0x30,0xb1,0x60,0xa2,0xb7,0x87,0xe2,0x9c, +0x90,0x1d,0xe3,0x91,0x6c,0xde,0x47,0x99,0xdf,0xa4,0xbe,0x43, +0x2b,0x6e,0xfe,0x1b,0x31,0x71,0x1d,0x92,0xb6,0x6a,0x81,0x26, +0xe5,0x22,0xb5,0x4e,0xb4,0x14,0xe1,0x8b,0x12,0xde,0x5d,0xd3, +0x75,0x83,0xcb,0x85,0x5b,0x2c,0x8d,0x4d,0xb5,0x9a,0x3d,0xef, +0x8b,0xc1,0x93,0x4a,0x0d,0x48,0x0a,0xf0,0x13,0x1c,0xd5,0xb4, +0x5e,0xbb,0xc3,0xb4,0xac,0xbd,0x28,0xa5,0x38,0xab,0x4c,0xa4, +0x9b,0xc7,0x0b,0x39,0x19,0x79,0xd2,0x4b,0xb0,0x47,0x72,0xdd, +0x5c,0xf1,0xa7,0x77,0x0b,0xdf,0xbf,0xf2,0x35,0x59,0x9f,0xe8, +0x42,0x31,0x3c,0x49,0x25,0x78,0x26,0x7a,0x26,0x79,0x8d,0x26, +0xb0,0xb1,0x65,0xf1,0x95,0x71,0x15,0x34,0x28,0x0f,0x52,0xf2, +0xb7,0x24,0x8c,0x75,0x40,0x46,0x79,0x79,0x55,0x5e,0xfb,0xad, +0x4b,0xee,0xe6,0xcd,0x62,0x30,0xc2,0x01,0x66,0xa0,0xb5,0xb3, +0xf5,0x7c,0xbd,0x75,0x23,0xeb,0x6c,0x63,0x64,0x6e,0xe6,0x3c, +0x93,0x31,0x96,0x31,0x47,0xc3,0x8f,0x85,0x1f,0x8f,0x08,0xaa, +0xf1,0x6f,0xf0,0x6b,0xd1,0xf4,0x61,0x8b,0x1c,0x0b,0x5c,0xf3, +0xdc,0x71,0x9d,0x0f,0xae,0xf2,0xc3,0x25,0x81,0x69,0x24,0xfc, +0xac,0x2c,0x86,0x57,0x4b,0x60,0x43,0x29,0x5d,0xa5,0x93,0x67, +0xe5,0x2e,0xb0,0x94,0xda,0x7a,0xa9,0x09,0x4f,0x38,0x15,0xb7, +0x16,0xa7,0x94,0xa4,0x15,0x8b,0xb5,0x72,0x79,0x11,0x3e,0x67, +0x3c,0xdc,0x05,0xfb,0x26,0x2c,0xbf,0xfb,0x6a,0xaa,0xe7,0x46, +0xeb,0xe9,0x6e,0xcf,0x11,0xd1,0x44,0xc6,0x44,0xfa,0x78,0x06, +0xbd,0x0d,0xe3,0x99,0x0b,0x1d,0xd5,0x3d,0x45,0x4d,0x46,0xd5, +0xac,0xbf,0xa5,0x8b,0xf1,0x49,0x17,0x5a,0x71,0xaf,0xe3,0x05, +0xc6,0x31,0xce,0x31,0xd6,0x31,0xce,0xf7,0xc6,0x9e,0x0e,0x5c, +0x50,0x4a,0x27,0xf3,0xef,0xc6,0xfe,0x3d,0xfa,0xcd,0x33,0x09, +0x03,0x6c,0xda,0x5a,0x14,0x67,0xe0,0x42,0xa1,0xa9,0xa1,0x24, +0xde,0x4e,0x9c,0x60,0x30,0x91,0xd8,0x9c,0xf8,0x56,0x80,0x32, +0xcc,0xf3,0x7c,0xd7,0xbc,0x44,0x9b,0x8e,0x51,0x55,0x8f,0xd5, +0x13,0xee,0xd3,0x49,0xcc,0xb0,0x10,0xe7,0x57,0x35,0x16,0x5d, +0x2d,0xb4,0xaf,0x65,0xf3,0x52,0x77,0xfb,0x1a,0xb9,0x79,0xdb, +0x29,0x5b,0x14,0x9e,0xac,0xf6,0xea,0x32,0x75,0x65,0xab,0xb5, +0x9b,0xec,0xc7,0x7c,0xe8,0x58,0xfe,0xca,0x84,0x4f,0x35,0x60, +0xbd,0x10,0x5e,0xfa,0x7c,0xec,0xe3,0x34,0xf1,0x0f,0xe9,0x3c, +0xfc,0x66,0x19,0x83,0xf4,0xf1,0xda,0x89,0x28,0x71,0x44,0xcf, +0x78,0xec,0x5d,0xe1,0xf0,0x64,0x52,0xf2,0x65,0xb1,0x56,0xa8, +0xaa,0xeb,0x4b,0x42,0x25,0xf8,0x94,0x00,0xed,0xd4,0xa2,0xa4, +0x82,0x7c,0xc1,0x3d,0xdd,0x8e,0x57,0xb7,0xe8,0x99,0x1f,0xd8, +0xdd,0x6e,0xff,0xbe,0xa8,0x83,0x72,0x34,0x37,0x32,0xd1,0xb4, +0xec,0xb1,0x67,0xdf,0x18,0x1b,0x1d,0xaf,0x1f,0xa2,0xc1,0x87, +0xd2,0x4a,0x30,0x48,0x32,0x17,0x8d,0x4b,0xe3,0x5a,0xe2,0x3b, +0x25,0xd7,0x95,0x41,0x63,0x94,0x08,0x7f,0xb1,0x9e,0x5f,0x7e, +0x5b,0xd3,0xf9,0x92,0xfe,0x91,0xf3,0xbe,0x56,0xa7,0xa3,0x03, +0x22,0xfc,0xc4,0x4a,0x1f,0x10,0x10,0x8a,0xc7,0xaf,0xfe,0xb8, +0x1d,0x36,0x13,0xd8,0xff,0xf1,0x15,0x98,0x77,0xd5,0xe9,0x3d, +0xe7,0x0f,0xc4,0x1a,0x7e,0xbc,0xba,0xd7,0xab,0x0f,0x69,0x09, +0x0e,0x9c,0xb0,0x46,0x4a,0x22,0xc2,0xc5,0x5b,0x6e,0xc1,0x16, +0x6d,0x12,0xe6,0x76,0x11,0x64,0x69,0x96,0x60,0x2e,0xb5,0x90, +0x4a,0x5a,0xce,0x36,0x49,0xeb,0xb4,0x89,0x49,0x3b,0x9d,0xb5, +0x93,0xda,0x18,0x4a,0x4d,0x24,0x66,0x12,0xfa,0xae,0x36,0xf2, +0x7b,0x71,0x89,0x10,0xe7,0x1d,0xb5,0x3d,0xbe,0x15,0x76,0xed, +0x87,0x66,0x33,0xb1,0xb1,0x87,0xea,0xa9,0xb5,0x42,0x14,0xec, +0xef,0xf9,0xd6,0x4d,0xac,0x49,0x8c,0x7a,0x61,0xfd,0xd7,0xea, +0xb0,0x45,0x08,0x5b,0xff,0xfe,0x16,0x3c,0x5f,0x16,0x5b,0x12, +0x59,0x2c,0x6e,0x94,0xb6,0x9c,0x6d,0x91,0x24,0xee,0x4e,0xde, +0x9e,0x7a,0x70,0x34,0x91,0x8d,0xbc,0x15,0xf3,0x76,0xdc,0x5d, +0x10,0x46,0xb3,0xd3,0x99,0x77,0x99,0xda,0xf6,0x82,0xbb,0xdf, +0xbc,0x7d,0xd2,0xb2,0x57,0x84,0x54,0xcc,0xcb,0x61,0x7b,0x02, +0x68,0xdb,0x22,0xdf,0xa2,0x3c,0x01,0xb7,0x9e,0xa0,0x88,0xe8, +0xb3,0xd1,0x92,0x18,0xd1,0x8a,0xdc,0x2d,0xc5,0xc7,0x4b,0x6e, +0x64,0xbd,0x9d,0xfa,0x51,0x22,0x9d,0xe1,0x9f,0xec,0xe7,0x2b, +0x50,0x02,0x4a,0xa6,0xcb,0xa8,0x7f,0xe5,0x43,0xb0,0xbf,0x28, +0x6f,0x84,0x87,0x2f,0x66,0xa8,0x64,0x14,0x08,0xca,0x60,0x4d, +0x2b,0x57,0x98,0x20,0x92,0x4c,0xf2,0xe4,0x13,0x12,0x54,0x35, +0xdd,0x29,0x80,0x55,0xd8,0xc1,0x80,0x49,0x02,0x9c,0x68,0x86, +0xd5,0x13,0xde,0xe3,0x2c,0x2e,0x53,0xc3,0xc3,0x8e,0x68,0x20, +0x51,0xa0,0x33,0x03,0xe6,0x0a,0xee,0x87,0x67,0x36,0xc2,0x4e, +0x62,0xdc,0x4b,0xef,0x4f,0xc1,0xdc,0x2e,0xff,0x37,0x6d,0x61, +0x8e,0x58,0xc5,0x97,0x57,0xb7,0xb1,0x74,0x9f,0xb9,0xe0,0x90, +0xbe,0xc3,0x72,0x54,0x7e,0xfd,0x16,0xac,0xd3,0x14,0xc9,0x0c, +0x30,0x97,0xc9,0xff,0x3c,0xf7,0xdb,0x94,0xef,0x8f,0xa6,0xb2, +0xb1,0x4b,0x4f,0x2f,0x0b,0xda,0x48,0x74,0x6b,0x0e,0x77,0x4d, +0x91,0x70,0x3f,0x89,0x2f,0xdc,0x21,0xa9,0x18,0x6d,0xa3,0xcf, +0x7e,0xa5,0x39,0xee,0x38,0x64,0x4f,0x37,0x79,0x55,0x7a,0x9c, +0x16,0x04,0x05,0xc5,0xec,0x22,0xe6,0x3d,0x3f,0xce,0xc0,0xe3, +0xb8,0xe0,0x54,0xaa,0x53,0x8e,0x8d,0x68,0x22,0x9d,0x17,0xd2, +0x18,0x5d,0x55,0x2c,0x38,0x5f,0x9b,0x09,0x4f,0x24,0x8a,0xde, +0x92,0x56,0xe7,0xd4,0x0b,0xa4,0x39,0x11,0xb9,0xc1,0xf9,0x09, +0x49,0xec,0x80,0x3b,0x2c,0xde,0x37,0xe4,0x4c,0x8f,0xc2,0x1b, +0xc7,0x29,0x08,0x30,0x61,0xa2,0x5e,0x0f,0x5e,0x1a,0xb4,0xe9, +0x4a,0x24,0x5b,0xf8,0x45,0xe6,0x67,0x69,0x1f,0x93,0x39,0xd3, +0x65,0x66,0x4c,0x6c,0xb7,0xa4,0xb3,0x56,0xa0,0x4a,0x49,0x9c, +0x12,0xcc,0x13,0xcd,0x70,0x8b,0x84,0x7d,0x57,0x17,0xe7,0x8d, +0x10,0x45,0x5e,0xa5,0x6f,0x60,0xa4,0xda,0xe9,0xf6,0xa5,0x18, +0x4a,0xa8,0xd4,0xc0,0xa4,0x00,0x7f,0xc1,0xa1,0x43,0xa6,0xf8, +0xf4,0xcb,0x9a,0xe5,0xad,0xa5,0xa9,0xa5,0x39,0x15,0x22,0x8d, +0x3c,0x5e,0x90,0xdb,0x19,0x0f,0x4f,0xc1,0xf6,0x77,0xcd,0x60, +0x39,0xac,0xfa,0xe1,0xd6,0xf7,0xc5,0x71,0xc5,0x51,0x45,0x22, +0x58,0x4a,0x25,0x9c,0x4c,0x3a,0x99,0xe4,0x39,0x99,0xc8,0xc6, +0x56,0xc4,0x55,0xc6,0x55,0xd2,0xf0,0xfa,0x08,0x35,0xad,0x2a, +0x61,0x0c,0xfc,0x73,0xcb,0x2a,0x6a,0xf3,0x87,0x3e,0x7a,0xd3, +0xd5,0xb8,0x4b,0x0c,0x7e,0x78,0x9b,0xe9,0xad,0x1b,0xed,0x6e, +0xed,0xb4,0x68,0x65,0x1d,0x6d,0xb5,0x4d,0x34,0x14,0xb7,0x32, +0x2d,0x64,0x91,0x4c,0x74,0x63,0x64,0x4b,0xf4,0x05,0x9d,0x28, +0x36,0xc5,0x2d,0xc5,0x39,0xd9,0x15,0x4f,0x55,0xe2,0xae,0x6a, +0xdc,0xd2,0x1e,0xa4,0xc7,0xc2,0x6e,0x0b,0xd8,0xef,0x0a,0x61, +0x1e,0x74,0x42,0xb0,0x34,0x3c,0x4a,0x60,0xe9,0x12,0xba,0x5f, +0x4e,0x05,0xe4,0xb5,0x15,0x26,0x11,0xdb,0x16,0xa9,0xa7,0xf0, +0x22,0x3d,0x62,0xdc,0x7d,0x04,0xbb,0x86,0xfc,0xb8,0x97,0x80, +0xdf,0x5f,0x7b,0x37,0x55,0x92,0x21,0xc9,0x14,0x4d,0x46,0x5d, +0x89,0xbc,0x15,0x95,0x3c,0xca,0xee,0x49,0x3d,0x94,0x76,0x22, +0x95,0xc6,0x77,0xf1,0x3f,0x48,0x36,0x95,0x0d,0x0b,0xcf,0xc1, +0x9c,0xb6,0xa0,0x41,0x76,0xb9,0x39,0x2e,0x3c,0x85,0x4b,0xc3, +0x08,0xce,0xda,0x26,0xdb,0xc2,0x20,0xe3,0x19,0x3b,0x21,0x99, +0x4c,0x18,0x57,0x56,0x97,0xc6,0x1f,0x93,0x1e,0x4f,0x56,0x51, +0x46,0x81,0x6b,0xe4,0xbd,0xb8,0x77,0x92,0x1e,0x28,0x6b,0x48, +0x63,0x5f,0x4b,0xdc,0x98,0xbe,0x43,0x79,0xb7,0xdf,0x51,0x7f, +0x02,0x80,0x13,0xf9,0xbd,0xcd,0x35,0x83,0x13,0x82,0xf7,0x8e, +0x0d,0xaf,0x40,0xbe,0xea,0x31,0x54,0x32,0x49,0xd6,0xcb,0xd1, +0x10,0x8d,0x13,0x27,0x3c,0x1c,0xdb,0xdb,0x25,0x78,0xd0,0xd4, +0x7c,0xef,0x66,0xa3,0x9b,0xae,0x91,0xb7,0x81,0x89,0xbe,0xa8, +0x4c,0xeb,0x5a,0xc9,0xbd,0xb2,0x07,0x25,0xca,0x29,0x0e,0x29, +0x8e,0x69,0xce,0xe3,0xe9,0x6c,0x64,0x43,0x54,0x63,0x74,0x53, +0x5b,0x66,0x7b,0x66,0x67,0x46,0xb2,0x65,0xaa,0x65,0xba,0xf5, +0x78,0x2a,0x7b,0xa6,0x2d,0xaa,0x33,0xa6,0x1b,0x84,0x95,0xac, +0xd2,0x0f,0xdc,0x5e,0x06,0x7e,0x82,0x4a,0x5e,0x41,0x69,0x76, +0x4a,0xa1,0xb0,0x20,0xef,0x4c,0x40,0xa9,0xf8,0xfd,0xc3,0xb0, +0xf0,0x95,0x1f,0xf6,0x35,0xf7,0xb2,0xcb,0xdf,0xc0,0xa7,0x3e, +0x59,0x7d,0x9f,0x2e,0xf1,0x74,0x2f,0x72,0x14,0xda,0x9f,0x0a, +0x0a,0xf4,0x16,0xaf,0xda,0x8d,0xeb,0x90,0x46,0x7a,0x13,0xad, +0xa8,0x45,0x4a,0x19,0x58,0x00,0xeb,0xa2,0x82,0xe0,0xa0,0x38, +0xf9,0x12,0x2f,0x17,0x0f,0xe2,0x6b,0xa9,0xb8,0x88,0x98,0xdd, +0x8a,0x58,0x92,0xe6,0x88,0xd3,0x54,0x79,0xd9,0x3f,0x02,0x3f, +0x09,0x68,0x21,0xe7,0x8a,0x27,0x19,0xf4,0x89,0xe1,0x25,0xf2, +0x25,0x0d,0xd2,0xcb,0x09,0xad,0xaa,0x04,0x39,0x58,0x48,0x54, +0xa4,0xf6,0x74,0x3c,0x1f,0xb7,0xc4,0xa2,0x7b,0x8c,0x5a,0xb3, +0xf9,0xc7,0xca,0xba,0xee,0x23,0xc8,0x7b,0xd3,0x0c,0xe2,0x92, +0x95,0x61,0x47,0x62,0x82,0x37,0xf1,0xea,0xa7,0x94,0xa7,0x12, +0x14,0x3e,0x5d,0x52,0xa1,0x0c,0x5e,0x49,0x3c,0x25,0x78,0x92, +0xfb,0x89,0x51,0x4f,0xdf,0x53,0xa4,0x27,0xba,0x94,0xc9,0x0b, +0xec,0x3b,0x33,0x72,0x53,0xf0,0x7d,0x7b,0xdd,0x1b,0x43,0xd7, +0xfd,0x9c,0x26,0x45,0x15,0x93,0xbc,0xa6,0xa3,0xbb,0x4a,0x8f, +0x08,0x71,0xbe,0xfa,0x51,0x5c,0x22,0x96,0xbd,0x0a,0x7b,0x98, +0xf4,0x65,0x89,0x38,0x2f,0x1a,0x79,0x57,0x25,0x6c,0x0a,0xcc, +0x8b,0x03,0xde,0x19,0x98,0x43,0x56,0xe4,0x35,0x92,0x5a,0xa9, +0x87,0x68,0x84,0x68,0x85,0x44,0xdf,0x3c,0x7b,0x5b,0xfa,0x80, +0x56,0xa5,0x36,0x9e,0xdd,0x95,0xb2,0x57,0xb4,0xd2,0x6b,0xdd, +0xa9,0x5d,0x27,0x89,0x2b,0x1e,0x6d,0xa9,0x6d,0xbd,0x2c,0xf8, +0x74,0xcf,0x04,0x2a,0xe1,0x8b,0x87,0x8f,0xa0,0xc0,0x3c,0xf5, +0x58,0x8e,0x99,0xc2,0x4e,0xc2,0xba,0xa3,0x26,0x1a,0x05,0x5f, +0xb5,0xb7,0x7f,0xf6,0x7e,0x8f,0x93,0x8a,0x9e,0xa7,0xde,0x61, +0x7d,0x51,0xb9,0xf6,0x8f,0x75,0xf0,0x44,0x35,0xf0,0xce,0x29, +0x27,0xdb,0xa6,0xd8,0x65,0xd8,0x4d,0xa5,0xb1,0x11,0x6d,0x91, +0x2d,0x31,0x2d,0x13,0xb9,0x93,0x39,0x53,0x39,0xb4,0xd2,0xfb, +0x32,0x11,0x83,0x73,0x3f,0x3f,0x0e,0xa5,0x26,0xa2,0x12,0xe2, +0x1e,0xce,0x74,0x6d,0x6b,0xb9,0x27,0xb8,0x32,0x76,0x1e,0x98, +0x68,0x11,0x77,0xd9,0x33,0x71,0x52,0x7e,0xb9,0x92,0x87,0xfb, +0xd3,0xb6,0x1a,0x2b,0x76,0x37,0x97,0x35,0x72,0xff,0x60,0x20, +0x42,0x1b,0x23,0x50,0x9c,0xcc,0x2f,0xce,0xcc,0x29,0x29,0x13, +0x8c,0xa9,0xf7,0xbc,0xbc,0x46,0xd7,0x44,0xdb,0xa6,0xc2,0xb3, +0x33,0x4c,0x14,0xc3,0x47,0xb1,0x74,0xfb,0xa8,0xeb,0x77,0x5a, +0x7e,0x2c,0xce,0xab,0xfb,0x72,0x13,0x68,0x0b,0xfb,0x3b,0x53, +0xb3,0x5a,0xc5,0x60,0x8a,0x1b,0x46,0x60,0x03,0xbc,0x30,0x46, +0xc9,0xf5,0x22,0x19,0x63,0xa9,0x6d,0x51,0xa3,0xa0,0xbe,0xa6, +0x70,0x70,0xb4,0x2e,0xc0,0xd1,0xc9,0xce,0xc7,0x50,0x22,0x52, +0xfa,0x69,0x19,0x37,0xc0,0xe8,0x49,0x0e,0x9f,0x3d,0x24,0x89, +0xef,0x8d,0xef,0x8d,0xeb,0xb9,0x2a,0xb9,0x72,0xf6,0x92,0x84, +0x9e,0x44,0x4b,0x7e,0x7c,0xbd,0xa4,0x26,0xbe,0x4a,0x35,0x9e, +0x4d,0x59,0xc7,0x93,0xa2,0x00,0x5f,0x38,0xbb,0x82,0xc8,0xd4, +0xc8,0x66,0x83,0x7e,0xba,0x4a,0x8e,0x96,0x78,0x32,0x8d,0x17, +0x3c,0x11,0x39,0xde,0x26,0x18,0x3e,0x5f,0xf0,0xc1,0x7b,0xc0, +0x9e,0x95,0xc0,0x52,0x51,0xa2,0x69,0x82,0x51,0x82,0x31,0x8d, +0xb6,0xd4,0xc9,0xe8,0xc4,0xa2,0xbc,0xd4,0xca,0xd4,0x32,0xf1, +0x71,0x29,0x2f,0xea,0x64,0xb4,0x87,0xaf,0xc0,0xb4,0xc2,0x7b, +0x48,0x22,0x9a,0xb8,0x7f,0xf6,0x5d,0x61,0xe2,0xab,0xbc,0x49, +0x2a,0xee,0x33,0xde,0xf5,0x6b,0x52,0xe9,0xb0,0x58,0x49,0x36, +0xc2,0x75,0x32,0x7b,0xc7,0x71,0xce,0x87,0xaf,0xbf,0x15,0xf2, +0x2e,0x7b,0x22,0xaa,0x68,0x65,0xf6,0xb6,0x1c,0x7c,0x52,0x39, +0x86,0xfa,0xdc,0xfa,0xd5,0x1b,0xf8,0x94,0x10,0x17,0x99,0xad, +0xc7,0xf5,0x09,0xe2,0xa9,0x58,0x1e,0x28,0xc5,0x56,0x5d,0xf9, +0x54,0xf8,0xb9,0xe4,0x13,0xfd,0x51,0x9c,0x9b,0xe9,0x9b,0x7c, +0x2a,0xc9,0x80,0x38,0x85,0x88,0xef,0x43,0x1f,0x86,0x7c,0xfa, +0xee,0x01,0x78,0x62,0xf3,0x2d,0x6d,0x7a,0x0c,0x46,0xd5,0x29, +0xa5,0x9f,0xf6,0xc8,0xac,0x19,0xdd,0x24,0xad,0x14,0xcd,0x14, +0x3a,0xb6,0x3d,0xae,0xb9,0x5a,0xa0,0x4e,0x49,0x5d,0x13,0x1c, +0x93,0x6c,0xd1,0xbc,0x14,0x1d,0x6b,0xf1,0x70,0x63,0xa8,0x1a, +0x0b,0x9a,0x76,0xe0,0xee,0x02,0x56,0x3e,0x49,0x76,0x29,0xb6, +0x29,0xb6,0xe3,0x89,0x6c,0x74,0x7d,0x4c,0x43,0x4c,0xfd,0x70, +0xf4,0xc5,0xe8,0x81,0x58,0x7a,0x7a,0x12,0x9f,0x63,0x6c,0xd2, +0x74,0xb3,0x1c,0x45,0x84,0xe7,0xb0,0xe6,0xa8,0xae,0x1a,0xc1, +0xc4,0xf9,0x9c,0xc1,0x0b,0xbd,0x51,0x61,0x6d,0xa2,0xec,0x8b, +0xbc,0x2c,0x4b,0x83,0x0c,0x73,0xe1,0x06,0x43,0xeb,0xcd,0x62, +0xee,0xe8,0x07,0x4c,0xce,0xf1,0xec,0x7d,0xa9,0xaa,0xe3,0x29, +0x6c,0xf4,0x58,0xd8,0x1b,0xc1,0x37,0x89,0x9a,0xed,0x20,0x3e, +0x51,0x23,0x55,0x35,0x4d,0x25,0x83,0x6e,0x3a,0xdb,0x9e,0xd8, +0x24,0x52,0x4b,0xe0,0xc5,0x3b,0x48,0xac,0x9c,0x04,0xf8,0x6c, +0x11,0x3e,0x5b,0xb6,0xbc,0x22,0x58,0x85,0x7d,0xcb,0xa1,0x53, +0x47,0x45,0x70,0x44,0x62,0xe5,0xba,0x49,0xb8,0x4a,0xa7,0xef, +0xf3,0xd6,0xd4,0x96,0xac,0x6e,0xb1,0x6a,0x26,0x2f,0xcc,0x3c, +0xda,0xd8,0x44,0x80,0x4f,0xdd,0xda,0x00,0x6b,0x61,0xfe,0xcd, +0xb1,0x87,0x53,0x36,0xfd,0x87,0x6a,0x44,0xd2,0xd4,0x6b,0x81, +0xdf,0x07,0xc0,0xbc,0x40,0x65,0xe9,0x81,0x94,0xad,0x99,0x5b, +0xa6,0x92,0xd9,0xb0,0xfb,0x31,0x6f,0xc7,0x5f,0x1d,0x3f,0x33, +0x71,0x66,0x34,0x8a,0x24,0x0b,0x8b,0x64,0xda,0x0c,0x1e,0xb9, +0x06,0xcf,0xac,0x01,0x4b,0x21,0xec,0x24,0x81,0x16,0x9e,0x7f, +0xc3,0xfa,0x43,0xa7,0x07,0xe2,0xe3,0x01,0xbc,0xa6,0x4d,0x4d, +0x07,0x8e,0x09,0xf6,0xec,0x35,0xc5,0x25,0x24,0xd6,0xee,0x92, +0xac,0x79,0x47,0x03,0x36,0x93,0x8b,0xf6,0x73,0x4e,0x0c,0xb0, +0x65,0xef,0x4e,0xc2,0x72,0x21,0x51,0x1e,0x76,0xf7,0xd1,0x76, +0x71,0xc9,0xa9,0xf4,0x93,0x09,0x76,0x93,0x09,0x6c,0x28,0xac, +0x3e,0x0d,0xdb,0x4e,0xc3,0xf3,0xc7,0xa2,0xd9,0x9c,0xe5,0x99, +0xab,0x32,0x57,0xc5,0x48,0xd8,0x1f,0xcd,0xf1,0xe5,0xbb,0xb8, +0x41,0x88,0x87,0xf1,0x89,0x8d,0xb8,0xde,0x4d,0xac,0xa8,0x93, +0x1c,0x62,0x3e,0xda,0xb2,0xa5,0x73,0x93,0x10,0x79,0xc7,0x77, +0xa3,0xd0,0x26,0x59,0x23,0xfb,0x98,0xf8,0x4a,0x2a,0x2f,0xf8, +0x7a,0xec,0x70,0x8d,0xe0,0xdb,0xa6,0xee,0x7b,0x40,0xc1,0x33, +0x4b,0xd1,0x1d,0x16,0x88,0xc6,0xcf,0x3b,0x4c,0xd9,0x13,0xd4, +0xa9,0x7c,0x2d,0xe7,0x61,0x2a,0x6c,0x92,0xd0,0x97,0xf8,0xa8, +0x29,0xc5,0x27,0xc3,0x77,0x07,0xd1,0x8a,0xfb,0x2b,0x61,0x4c, +0x5c,0x5b,0x7c,0x6b,0x93,0x40,0x5d,0xc2,0x73,0x4c,0xb0,0x4f, +0xb4,0x17,0xe1,0xe6,0x2a,0x5c,0x53,0x87,0xeb,0x3a,0x03,0xc8, +0xda,0x6d,0x31,0x87,0xd7,0x9d,0x60,0x97,0x7b,0xa2,0x63,0x92, +0x73,0xb2,0xfb,0x04,0x41,0x7f,0x95,0xb1,0xe7,0xe3,0xce,0xc3, +0x26,0x6f,0x36,0x75,0x4a,0x2b,0x4d,0x27,0x4d,0x37,0x5d,0x99, +0xd8,0xee,0x10,0x93,0x9a,0x9d,0x99,0x97,0x23,0x18,0xd7,0xaf, +0x44,0x8a,0x44,0x74,0x2a,0xad,0x20,0xb9,0x30,0x5f,0x70,0x59, +0xbb,0x71,0xcd,0x7a,0x2d,0xdb,0x63,0x47,0x7a,0x1c,0x3f,0x11, +0xb5,0x50,0xa7,0x3c,0x5d,0x4e,0x3a,0x9c,0xbc,0xe8,0xc9,0x76, +0xd4,0xb6,0x35,0x56,0x37,0xd2,0x8a,0x77,0xd5,0x31,0x75,0x9e, +0x07,0xdc,0xc5,0xc3,0xee,0xcd,0xcd,0x7d,0x93,0xb5,0x03,0xca, +0x7a,0xe7,0x4f,0x9a,0x9a,0x68,0x7b,0x7b,0x2a,0xcb,0xb7,0x81, +0x80,0xd1,0xf2,0xce,0xab,0xbd,0x70,0x2e,0x7f,0xe2,0xf2,0xb9, +0xd3,0xae,0x21,0x51,0x41,0xa1,0xfe,0x62,0xa5,0x1f,0x65,0x21, +0xcc,0xcf,0x4e,0x0f,0x16,0xc2,0x86,0xa8,0x40,0x38,0x2c,0x4e, +0xbe,0xcc,0xcb,0xc3,0x23,0xf8,0x7a,0x2a,0x32,0x0a,0xe7,0x18, +0x13,0x4e,0x9c,0x23,0xf0,0xe4,0x0b,0x98,0x33,0xb5,0xd1,0x0d, +0x17,0x04,0xc3,0x35,0xe5,0x63,0x7d,0x53,0x11,0xa1,0x03,0xa2, +0xec,0x31,0x5e,0x8e,0x96,0x4a,0xa6,0xb6,0x70,0x85,0xbe,0xe1, +0x66,0xfb,0x54,0x8b,0x34,0x17,0x31,0x77,0x09,0x12,0x98,0xdc, +0xc3,0x59,0xaf,0x25,0xee,0xba,0x2c,0x65,0xe3,0xee,0x47,0x7c, +0x10,0x7c,0x67,0xa6,0xde,0xf6,0x0c,0x63,0x90,0x64,0x94,0x64, +0x9e,0x1c,0xd5,0xe8,0x5f,0xeb,0x76,0xee,0x62,0xf2,0x58,0xca, +0xa5,0xa4,0xd0,0x7e,0x76,0x5b,0xf4,0x9e,0xa8,0x23,0x67,0x76, +0xb7,0xe1,0x93,0xe5,0xf8,0x9c,0x94,0x46,0x76,0x87,0xa3,0x8e, +0x21,0x89,0xdc,0xaf,0xba,0x8a,0x3f,0x0e,0x80,0xe7,0x7c,0x61, +0x47,0x20,0xbd,0xcf,0x7f,0xa5,0x35,0xee,0x14,0xba,0x9f,0x94, +0x4a,0xbd,0xc4,0xa5,0x25,0x99,0xc5,0x45,0x82,0x41,0xcd,0xba, +0x8d,0xdb,0xf5,0x9d,0x74,0x2c,0xeb,0x5d,0xae,0xfb,0x8b,0xfc, +0xc3,0x7d,0xc2,0x4e,0x85,0x12,0x49,0xd4,0xe6,0x9f,0xcb,0x2b, +0xcf,0xa1,0xa3,0xdb,0xfb,0xe3,0xc6,0x84,0x60,0x06,0x8b,0x27, +0x61,0x0e,0x81,0xdb,0xab,0xc3,0x78,0xd3,0x6e,0xa0,0xc5,0x54, +0x8c,0xe4,0x7e,0x76,0xeb,0x5a,0x44,0xe0,0xa8,0xe8,0x95,0xd3, +0x3b,0xfc,0x8f,0x79,0xd3,0x07,0xf2,0x5d,0x73,0x08,0x48,0xca, +0xc3,0xb9,0x0c,0x2e,0xcc,0x5e,0x9d,0xb7,0x3b,0x67,0x3c,0xef, +0x6e,0xf6,0xa7,0x59,0x8d,0x3e,0x15,0x1e,0x19,0xae,0xb4,0x7c, +0x04,0xf9,0x4c,0x45,0x45,0xd6,0xc5,0x8b,0x55,0x61,0x5e,0x21, +0xc1,0x81,0xae,0xbe,0xa2,0xbd,0x19,0xb6,0x05,0xe5,0xc4,0xd5, +0xf9,0xc8,0x52,0x99,0x0f,0xd5,0x37,0xe2,0x5e,0xfe,0xb1,0x0b, +0x47,0xea,0xd4,0xcf,0x1b,0xb8,0xb2,0xdd,0x3e,0x3d,0x3e,0xed, +0x01,0x34,0x5e,0xd5,0xe6,0x56,0x51,0xb0,0x77,0xff,0x5d,0x6b, +0x33,0x81,0xc5,0x46,0x5f,0xdc,0x2f,0x15,0x99,0x58,0x25,0x24, +0xda,0x89,0x6b,0x4b,0x0b,0x4a,0x2b,0x05,0xe3,0xda,0x0d,0xaf, +0xbe,0x6a,0xe0,0xa0,0x6a,0x77,0xde,0xf5,0xa2,0x8f,0xc8,0x37, +0xc2,0x3b,0xdc,0x33,0x74,0xd8,0x9d,0xfd,0xb8,0x85,0x17,0x36, +0x72,0x2b,0xea,0x81,0x10,0xfc,0xbe,0x6b,0x7a,0xe7,0x8a,0x4a, +0x17,0x3e,0x7b,0x51,0x0c,0xb7,0x08,0x68,0x28,0x40,0x27,0xa6, +0xf2,0x5c,0xce,0xd0,0x48,0x4d,0x88,0x57,0x80,0xf7,0x69,0xfd, +0x53,0x22,0xb5,0x6c,0xa7,0xa2,0x0a,0x81,0x62,0xe3,0x87,0x8f, +0x19,0xdc,0x86,0x73,0x4d,0x8f,0x6c,0x81,0x15,0x3e,0x9c,0xbf, +0x9b,0x78,0x8f,0xef,0x2a,0x6b,0xdc,0x2f,0x44,0x55,0x09,0x3e, +0xd9,0x67,0x0d,0x73,0x54,0x3d,0x59,0x5c,0x3c,0x00,0xca,0x2a, +0xe0,0x2c,0x04,0x5f,0x50,0x7e,0x13,0x08,0xa0,0xc6,0xcd,0xef, +0x63,0xba,0x18,0xcd,0x91,0x66,0x4a,0x6f,0x12,0x5f,0x2e,0x02, +0x73,0x09,0xbc,0x68,0x5c,0xb2,0x95,0x96,0xbf,0x56,0x8d,0x2b, +0x8a,0xab,0x05,0x8a,0x68,0x99,0xcc,0xfc,0xaa,0x10,0x97,0x7e, +0xa3,0x10,0xbf,0x8f,0x96,0x50,0x86,0xce,0x8c,0xa4,0xe3,0x6c, +0x57,0x42,0x2f,0xad,0x4e,0x49,0x8c,0x24,0x66,0x52,0x4b,0x1a, +0xab,0xa9,0xf4,0xfc,0xe4,0xfc,0x3c,0xc1,0x65,0xad,0xfa,0x8d, +0xeb,0xb5,0x6d,0x8e,0xa9,0x75,0xd8,0x7d,0x2c,0x2a,0xa4,0xdc, +0x7c,0xed,0x7c,0x2d,0x7c,0x2e,0xba,0xb1,0x63,0x17,0x7a,0x6a, +0xea,0x6a,0x68,0x78,0x9b,0x92,0x7a,0x24,0x9e,0x4c,0xf4,0x20, +0xd9,0x71,0x5c,0x65,0x7c,0x95,0xa4,0x8a,0x06,0xc3,0x51,0x6a, +0xfa,0x68,0x1c,0x63,0xea,0x95,0x5d,0x5b,0x7f,0x3e,0x6f,0x7c, +0xa8,0x2e,0xcc,0xf9,0x74,0x64,0xe0,0xe9,0x00,0xb1,0xd2,0x43, +0xc5,0xad,0x9e,0x79,0x30,0xff,0x10,0xe8,0x10,0xc0,0xb5,0xb0, +0xb5,0xfc,0x0d,0x51,0xd2,0x19,0x15,0xb7,0xbd,0xd6,0x5a,0x8e, +0xca,0x2d,0x96,0xf7,0xfa,0xee,0x76,0x01,0x35,0xa6,0x7c,0x6a, +0x88,0x67,0x87,0xcf,0xe2,0xf2,0x40,0x14,0x0b,0x71,0xcf,0xca, +0xce,0xdb,0xb7,0xef,0xb7,0xc0,0x2a,0xd8,0x02,0x3b,0xb5,0xf7, +0xbf,0x2f,0xbe,0x92,0xc8,0x03,0x0b,0x4d,0xdc,0x18,0xc3,0x7f, +0x77,0x33,0xbe,0x76,0x19,0xd5,0x84,0x78,0xec,0xa5,0x13,0x33, +0xaf,0x26,0x7b,0x59,0x36,0xc0,0x7c,0xe7,0x00,0x8b,0xbc,0xe0, +0xf9,0xa0,0xec,0x21,0x16,0x9f,0xcb,0xc3,0x17,0x2b,0x5e,0xab, +0xa3,0xf7,0xa0,0x07,0x73,0xbc,0xcb,0xee,0x9d,0x91,0xa1,0xc2, +0x82,0x5e,0x11,0x3c,0xdb,0xc6,0x2b,0xe8,0x6d,0xcf,0xec,0x11, +0x3e,0x6c,0xd4,0xdf,0x10,0x23,0xbe,0x14,0x52,0xfa,0x43,0xee, +0xfd,0xdc,0x4f,0x94,0x35,0xb3,0x42,0x5e,0x0b,0xd7,0x3a,0x7d, +0x58,0x39,0x56,0xca,0x4b,0x95,0xa6,0xa5,0x0b,0xa6,0x74,0x47, +0x37,0xab,0xeb,0x05,0xf9,0x6b,0x8b,0x70,0x91,0x25,0x2f,0xd4, +0xce,0x3a,0xd4,0x5e,0x68,0xe8,0x95,0x5f,0x57,0x96,0x5a,0x91, +0x5d,0x2f,0x56,0x4b,0xe5,0x85,0xbb,0x44,0x3a,0xb9,0x09,0x6e, +0x60,0x3a,0x11,0x76,0x01,0x08,0x2f,0x7c,0x5b,0xe7,0x3f,0xc0, +0xae,0x71,0x42,0xd6,0x15,0x95,0x89,0x43,0xf9,0x9f,0xb8,0x89, +0x4f,0x96,0xf2,0x16,0x43,0x22,0x22,0x9f,0x2c,0xdb,0x13,0xe2, +0x34,0x35,0x5e,0xce,0x8f,0xf0,0xc2,0xcc,0xb2,0x2d,0x82,0xd7, +0xa2,0x02,0xe0,0x88,0x38,0x69,0x8a,0x2c,0xef,0x61,0xc5,0xf2, +0x2e,0x16,0x72,0x4f,0xe1,0xab,0x4c,0x9c,0x4d,0xbc,0x9d,0xd4, +0x8e,0x46,0x4d,0xaa,0x4d,0xda,0x96,0xd0,0x26,0xd2,0x90,0xf2, +0xe2,0x6d,0x25,0x16,0x16,0x02,0x34,0xa2,0x52,0x73,0x93,0x72, +0x72,0x04,0x57,0xb5,0xaa,0x37,0xbe,0xa6,0xe3,0x74,0x54,0xa3, +0xc1,0xf9,0x03,0x51,0x3d,0xe5,0xea,0x63,0xeb,0x6d,0xea,0x35, +0xe0,0xce,0x4e,0xd6,0xf4,0xd6,0xd5,0xd6,0xd2,0x10,0x4b,0x25, +0xb8,0x25,0xb8,0x25,0x79,0x90,0x44,0x25,0xee,0x5c,0xfc,0x79, +0xc9,0x39,0x1a,0x34,0xa8,0x94,0xed,0x63,0x09,0x91,0x6f,0x4b, +0x3e,0x48,0x7e,0x5f,0x79,0xda,0x67,0x37,0x53,0x73,0x21,0x6b, +0x64,0xb8,0x21,0xdc,0x35,0x34,0x3a,0x24,0x2c,0x58,0xf4,0x2a, +0x65,0xee,0x99,0x5e,0x4d,0xa2,0xeb,0x94,0x6c,0x25,0x33,0x9a, +0x38,0x9a,0x34,0x2e,0x52,0x93,0xc6,0xea,0xc7,0x1f,0x91,0xe8, +0x2a,0xe3,0x66,0x6a,0x38,0x71,0x3c,0xa9,0x4b,0xa4,0x9a,0x10, +0x67,0x1c,0xaf,0x2b,0xd1,0x50,0xb4,0xa4,0x14,0x24,0x12,0xed, +0xba,0xab,0xd5,0xb9,0xf6,0x15,0x1d,0xe3,0xc3,0x87,0x5a,0x6c, +0xbe,0x14,0x8d,0x50,0x4e,0x56,0xfa,0xa6,0x07,0x8d,0xfb,0xec, +0xd8,0x77,0x27,0x26,0xc7,0x1b,0x87,0x69,0xd0,0xa1,0x12,0xf4, +0x13,0xf5,0x53,0xf4,0x27,0x12,0xd9,0x98,0xee,0xb8,0xe1,0xf8, +0x41,0x1a,0xb6,0x50,0x52,0x83,0xe4,0x63,0x29,0x06,0xc4,0xfd, +0x46,0x8f,0xc5,0x8e,0x90,0xa6,0x1f,0xc7,0xa8,0x69,0xf3,0xc5, +0x06,0xde,0xb9,0x4d,0x8d,0xe7,0x8b,0xc7,0xc7,0x6b,0x82,0x4c, +0x83,0x63,0x4f,0x47,0x06,0x91,0x6c,0x6e,0x9e,0xac,0x8b,0xd1, +0xc0,0x65,0xd4,0x91,0xc4,0xed,0x29,0xdb,0x53,0xe9,0xef,0x22, +0x91,0x77,0x1d,0x37,0x09,0x5f,0x3d,0x6a,0xaf,0x67,0xd1,0xef, +0xf0,0x71,0xa0,0xf8,0x6a,0xc8,0x9b,0xe1,0x6f,0x47,0x46,0xb8, +0xfb,0xb9,0xba,0x3b,0xa3,0x66,0xf1,0xa1,0x1a,0x8d,0x6b,0xc6, +0x76,0xec,0xf8,0x21,0x92,0xfe,0x1c,0xf1,0xf2,0xf1,0x3b,0xe5, +0xeb,0xee,0x3b,0xee,0xc9,0x36,0x54,0x5d,0xa8,0xaa,0xa8,0xbc, +0x14,0x75,0x27,0xe6,0xc3,0x18,0x02,0xbf,0x0f,0x27,0x69,0x24, +0xe9,0x27,0x91,0x2c,0xe0,0x42,0x7a,0x35,0xcc,0x21,0xe8,0x2e, +0xfa,0x83,0x38,0x7a,0x7a,0x0b,0x6c,0x62,0x8a,0x5b,0x72,0x86, +0xe1,0xb9,0x77,0x2d,0x8e,0xa7,0x89,0xf6,0xa6,0x1e,0xc8,0xd2, +0xcb,0xa4,0x4f,0x64,0xdb,0x14,0xe4,0x11,0x87,0x53,0x4a,0xc0, +0x41,0x7c,0xe3,0xd9,0x26,0x12,0x5a,0x28,0xfb,0xb3,0x76,0x09, +0x24,0xb2,0xac,0x4f,0xa6,0x4a,0x72,0xd2,0x33,0x4b,0x04,0xfd, +0x2a,0xf5,0xaf,0xac,0x36,0xb2,0xb2,0xf4,0x4f,0x0d,0xcf,0x0b, +0x27,0x20,0x2b,0xd7,0xc2,0x2a,0xcd,0x51,0x78,0xc0,0xc5,0x74, +0x99,0x44,0x8c,0x2f,0x0d,0x98,0x83,0xf8,0xf6,0x07,0x39,0x45, +0xf7,0x44,0x21,0x93,0x3c,0xbf,0x83,0x3b,0x42,0x4f,0x08,0x97, +0x9d,0x2c,0xfe,0xee,0x4e,0x51,0x7e,0x8b,0xf8,0xca,0x4d,0xe7, +0x1f,0x84,0x15,0xc5,0x49,0x09,0xf9,0x62,0x70,0xa1,0x12,0x5c, +0x13,0xdd,0x93,0x4e,0x8d,0x27,0x10,0x43,0x54,0xac,0x1a,0x0d, +0x4b,0x46,0x28,0xb9,0x57,0x2c,0xa3,0x27,0xb5,0x2b,0xa9,0x14, +0x94,0xd4,0xe5,0x0c,0x0c,0x37,0x05,0x7b,0x7b,0xd9,0x07,0x18, +0xc6,0x89,0xe0,0x9c,0xe2,0x66,0x4b,0x53,0xd3,0x40,0x4d,0x87, +0x5e,0x0d,0xeb,0x6e,0x6d,0xad,0x67,0xe6,0x40,0x1c,0xfd,0xeb, +0x04,0x02,0x1a,0x24,0x1a,0x27,0x9a,0x25,0xc5,0x35,0x07,0xd4, +0xbb,0x9f,0x1f,0x4c,0x1d,0x49,0x99,0x48,0x0e,0x1d,0x64,0xb7, +0x47,0x1d,0x38,0x73,0xe2,0xcc,0xae,0x0e,0x9c,0x57,0x8e,0xcf, +0x12,0x47,0xbf,0x64,0xa3,0xb5,0x9a,0xc1,0xa0,0x23,0xcc,0xf7, +0x14,0x03,0xe5,0x05,0x0b,0x82,0x60,0x4f,0xf0,0x29,0x95,0xd7, +0x9c,0xf0,0x15,0x72,0x72,0xf7,0xea,0xbe,0xaf,0x5c,0xc4,0x2a, +0xa7,0x78,0xf8,0x5c,0x0f,0x2c,0x54,0x03,0x5d,0x21,0xa8,0xc1, +0xb3,0x23,0x0f,0xab,0xc4,0x5d,0x71,0x3d,0xb1,0x83,0x44,0x58, +0x6e,0xa0,0xc1,0x54,0x4f,0x16,0x3e,0x7c,0xe3,0x56,0x78,0xc0, +0xa8,0x08,0x69,0xbf,0x4d,0x5e,0x27,0x3c,0xe8,0x23,0xf9,0x27, +0xf3,0x4a,0x04,0x5c,0x3e,0xf2,0x48,0xee,0x92,0xf9,0x52,0xd6, +0xd6,0xdc,0xcb,0x45,0x0f,0x0a,0xbe,0xcf,0xab,0xf7,0x2a,0x73, +0x4b,0x76,0x24,0x01,0x3a,0x43,0xe6,0xc3,0x48,0x1b,0x12,0xdb, +0x92,0xeb,0xd5,0x89,0x42,0x38,0xc6,0xd9,0x48,0x1c,0x50,0x25, +0x97,0x95,0xd6,0x24,0x36,0x25,0x5d,0x38,0x91,0xc4,0xc6,0xb9, +0xc5,0xd9,0xc7,0x3b,0xa3,0x20,0x93,0xc5,0xdd,0x39,0x2a,0xda, +0xb8,0x58,0x80,0x0c,0xc9,0xed,0x04,0xd7,0x26,0x52,0x33,0x07, +0x44,0x67,0x46,0x78,0x11,0x26,0x1a,0x51,0xfa,0xc2,0x65,0x6a, +0x65,0x9f,0x7e,0x58,0x5f,0x07,0x4c,0xb8,0x18,0x96,0x86,0x4b, +0xad,0x12,0x34,0x52,0x6c,0x94,0x2f,0x25,0xf2,0xa2,0xda,0x24, +0xfd,0x2d,0x02,0x50,0x09,0xe6,0x99,0x26,0xe8,0xa6,0x9a,0x88, +0x26,0x13,0x78,0x51,0x17,0xe3,0xfa,0x9b,0x04,0xb0,0x36,0x2c, +0x79,0x9c,0xa7,0xf4,0x93,0xb2,0xac,0x9a,0xc1,0x50,0x57,0xff, +0x1a,0x9f,0x06,0xef,0x56,0x65,0x4d,0x9f,0x12,0xc7,0x62,0x97, +0x02,0x0f,0x65,0x79,0xfe,0xa1,0x34,0x0d,0xae,0xfd,0x0d,0x5e, +0x83,0x5a,0x89,0xa5,0xb3,0xc0,0xcc,0xf0,0xe4,0xce,0x2d,0x16, +0xa5,0x9d,0x05,0xa9,0xa5,0x19,0xa5,0x22,0xcd,0x1c,0x5e,0x88, +0x5b,0xd4,0x49,0x92,0xce,0x5d,0x37,0x27,0x09,0xcc,0xd3,0x77, +0xfa,0xee,0x74,0xf9,0xf5,0x90,0xe4,0x41,0x71,0xcb,0xd7,0x7a, +0x0b,0xe3,0x6b,0xeb,0x6c,0x6c,0x67,0xde,0xe3,0xcc,0x56,0x37, +0x36,0x0e,0x56,0x75,0x93,0x45,0xd8,0x28,0x5b,0xc8,0x58,0xc4, +0x5a,0xc4,0x59,0xc6,0x79,0xde,0xda,0xdc,0x8b,0xcb,0xcf,0x93, +0xdc,0xe0,0xed,0x18,0x78,0x21,0xea,0xdb,0x33,0x89,0xc3,0x6c, +0x06,0x41,0x18,0x3b,0x32,0xf0,0x15,0xa1,0xae,0xda,0xd9,0x38, +0x3d,0x71,0x82,0xce,0xbb,0x89,0x5d,0x09,0xb7,0x4f,0x2b,0xc3, +0x1a,0xd7,0xaf,0xf5,0x6b,0xd5,0xe9,0x98,0x3d,0x07,0x63,0x4f, +0x08,0x5f,0x3f,0x96,0x94,0x6e,0x20,0x2e,0x2d,0xeb,0x28,0x7c, +0xab,0xd8,0xaa,0x8d,0xdd,0xee,0xab,0xe7,0xe6,0x61,0xa7,0x55, +0xe4,0x54,0xeb,0x36,0x60,0xe0,0xc2,0x36,0xa8,0x75,0x5a,0xdf, +0xf6,0xa2,0xc3,0xf8,0xcb,0x12,0x80,0xa7,0x06,0xc7,0x84,0xb0, +0x0f,0x9e,0xba,0xf4,0x30,0x51,0xdc,0x9a,0xd8,0x9a,0xd4,0x96, +0x48,0xcb,0x37,0xe3,0x3c,0x06,0x57,0x6e,0x6d,0xbc,0x14,0x27, +0x0e,0x1f,0x7b,0x23,0xe6,0x73,0xe1,0xf5,0x7b,0x49,0x29,0x6f, +0x8b,0xd5,0xcf,0xec,0x70,0x42,0xa1,0x50,0xf1,0xe2,0x9f,0x65, +0x4c,0x7a,0x49,0x72,0x51,0xa1,0xe0,0x6d,0xf5,0x8e,0x97,0x56, +0x68,0x9a,0xed,0x3b,0xd0,0x6a,0x0c,0x73,0x45,0x83,0x94,0xad, +0x99,0xb6,0xd1,0x41,0xa3,0x3e,0x47,0xf6,0xc1,0xc4,0xd5,0xa9, +0xd6,0x51,0x1a,0xea,0x29,0x8d,0x04,0xdd,0x64,0x22,0x4c,0x69, +0x6c,0x7b,0x7c,0x8f,0xe4,0x26,0xc9,0xab,0x88,0xbd,0x1e,0x5b, +0x7c,0xc8,0xab,0xb0,0xad,0xb5,0xb6,0xe4,0xda,0x95,0x86,0x20, +0xb3,0xc0,0x28,0xbf,0x30,0x1f,0xe2,0xc0,0x9f,0x96,0x15,0x32, +0x21,0x26,0xd1,0x66,0x36,0x02,0x5c,0xf2,0xde,0x5e,0x58,0x07, +0xec,0x5b,0x13,0x5f,0xbd,0x61,0x38,0xba,0xe9,0x82,0x48,0x9a, +0x7c,0x2f,0x1c,0x16,0x87,0x01,0x75,0x46,0x39,0x69,0x1c,0x9f, +0x49,0xc7,0x9d,0x39,0x38,0x37,0x57,0x39,0x5a,0x9d,0xf7,0xd0, +0xba,0x5f,0x4b,0x4d,0x70,0xc4,0xd0,0xfe,0x15,0x9c,0xa7,0x3d, +0x40,0xb0,0x6c,0x7b,0x76,0xb3,0x48,0xb6,0x0d,0x3b,0x98,0x82, +0xb7,0xf2,0x80,0x4a,0xfb,0xf0,0x44,0x3a,0x1b,0xb5,0xe1,0x34, +0x3e,0x19,0xb8,0x8b,0x56,0x7a,0x5b,0x66,0xc0,0xe0,0xe1,0xcb, +0xf0,0xfc,0x66,0x68,0x10,0x82,0x3d,0x3c,0xd5,0xf7,0xd9,0x84, +0x7a,0xff,0xd2,0x2a,0x71,0x40,0xb2,0x77,0x52,0x40,0x02,0x91, +0xf4,0xd5,0xb8,0x6b,0x71,0xb0,0xf0,0x8c,0x74,0x82,0xc5,0x1d, +0xe9,0xa8,0x9d,0x84,0xda,0x09,0x09,0x1a,0xec,0xbd,0x81,0xd8, +0xe8,0x76,0x31,0xec,0xf6,0x7c,0x68,0xa8,0x25,0xd0,0xdc,0xe1, +0x8e,0xaa,0x18,0xbe,0x7c,0x04,0x76,0xab,0x93,0xbc,0xe6,0x39, +0x2e,0x91,0x89,0x86,0x6e,0x9e,0x3a,0x95,0x84,0x7e,0xb8,0xfc, +0x0b,0x7c,0xfa,0x2e,0xae,0x07,0x4a,0xd9,0xde,0xac,0xe1,0x54, +0x69,0x40,0xa9,0x97,0xf2,0x90,0x66,0x99,0x91,0x85,0xe0,0xd0, +0x11,0x67,0xe4,0x8b,0xd6,0x49,0x0f,0x17,0xb9,0x5d,0xa4,0xe1, +0x65,0xe9,0x64,0xdb,0x75,0xc1,0x98,0x41,0xcb,0x8e,0xf5,0xda, +0xea,0x3b,0x70,0xe9,0xdf,0x8f,0xc3,0x6e,0x89,0x08,0xd6,0x7f, +0x34,0xf4,0x41,0xaf,0x5b,0xa7,0x59,0x9b,0x38,0x29,0x19,0x46, +0xd1,0x8a,0x27,0xff,0x0c,0x1c,0x99,0x9e,0xca,0x10,0x57,0x27, +0x2b,0x2f,0x5c,0x28,0x11,0x4b,0xd2,0x24,0xe9,0xe9,0x82,0xde, +0xfa,0xea,0x51,0xd1,0x7f,0x05,0x63,0x5e,0xa5,0x60,0xdb,0xf6, +0x0f,0xb4,0x9d,0x05,0x5e,0x41,0x91,0xd6,0x22,0x15,0xfc,0x68, +0xe4,0xa0,0x50,0xdd,0xd3,0xcd,0xca,0xa5,0xe0,0x64,0xb3,0x9d, +0x78,0xa2,0x94,0xe7,0x72,0x2e,0x30,0xbf,0x48,0x90,0x9b,0x9c, +0x54,0x29,0xea,0x84,0x1f,0x75,0x6e,0x0b,0xdf,0x6e,0x6c,0xe9, +0x1b,0xdd,0x33,0x82,0x0b,0xa6,0xc4,0x70,0x67,0x84,0x52,0x92, +0xfd,0x07,0x17,0x4f,0x58,0x1b,0x52,0x97,0x24,0x63,0x30,0xae, +0xff,0x0c,0x95,0xdf,0xc7,0x55,0x3f,0x28,0xdb,0x1b,0xf3,0x60, +0xfe,0xb6,0x0e,0xcd,0x43,0x82,0x43,0x52,0xad,0x93,0x38,0x47, +0x88,0xcf,0xaa,0x0c,0xbc,0xd7,0x96,0xd6,0x96,0xdd,0x22,0x56, +0xcf,0xe4,0x85,0x58,0x44,0x59,0x90,0x24,0x62,0xc1,0xfb,0xfb, +0x48,0x22,0x20,0x7e,0x67,0xf4,0x9e,0x54,0x34,0xe8,0xd2,0x6a, +0xd5,0x28,0x4a,0x4a,0x81,0x1b,0x84,0xa5,0xff,0x8a,0xee,0xbd, +0x14,0xfc,0x4d,0xe5,0x92,0xa9,0x85,0x40,0xef,0xa0,0x2f,0xae, +0xc1,0xfd,0xcb,0x2e,0xc2,0x3c,0x37,0xd1,0xf1,0x40,0x1e,0x8a, +0xea,0x40,0x70,0x10,0xec,0x84,0xa0,0xfd,0x45,0xef,0x7b,0x63, +0xc6,0xdd,0xaf,0x0c,0x88,0x61,0x84,0xd0,0xf9,0x81,0xe2,0xc6, +0xe0,0x22,0xaf,0x0f,0x82,0xa7,0x02,0xe8,0xcf,0xdc,0x5b,0xbd, +0x7d,0x05,0xbe,0x4e,0x91,0xb8,0x48,0x84,0x27,0xe2,0x8f,0x79, +0xee,0x17,0x68,0xdc,0xb4,0x87,0x7a,0x53,0x51,0xf1,0x18,0x0f, +0x4f,0xb7,0x1c,0x29,0x29,0x17,0x54,0xf5,0xa6,0xc1,0x56,0xa9, +0x08,0x56,0x48,0x07,0x0a,0x7a,0x05,0x75,0x36,0x25,0xce,0x79, +0x8a,0x1c,0x27,0x18,0x4c,0xec,0x60,0xb3,0x8b,0x72,0xc6,0x24, +0x6a,0xd6,0xcb,0x37,0xbf,0x8b,0x11,0xdd,0xca,0x4a,0xb2,0x49, +0x59,0x8b,0x62,0xbb,0x0f,0xd3,0x44,0xe3,0x24,0xe3,0x64,0xfa, +0x5b,0x4b,0x5c,0x75,0x1d,0x35,0x85,0xf8,0xfc,0x61,0x17,0xbd, +0x04,0x71,0x82,0x61,0xcf,0x29,0x58,0xee,0xf7,0x71,0x08,0xf0, +0x43,0xe0,0xb9,0x30,0x3a,0x92,0xbf,0x75,0xad,0x01,0x6e,0x89, +0x17,0xf9,0xf9,0x9f,0x95,0x06,0x88,0xcf,0x17,0x17,0x54,0x56, +0x08,0x06,0xf4,0x6b,0xb6,0x6d,0x36,0x70,0xd2,0xdc,0xf5,0xa3, +0x39,0xa8,0x83,0x36,0x2c,0xba,0x07,0xf3,0x45,0xc9,0xfc,0x4b, +0xd1,0x57,0x62,0x2e,0xc5,0xd1,0x60,0xca,0x97,0xdf,0xd8,0xce, +0xec,0xca,0x31,0xc8,0x90,0x14,0xd0,0xc5,0x92,0xd6,0x8c,0x77, +0x85,0xb0,0x3a,0x1e,0xe6,0x5a,0x77,0xaa,0x2c,0xcd,0x5c,0x9e, +0xbd,0x2d,0x8b,0x78,0x54,0x3c,0xce,0x54,0x96,0xe5,0x0c,0xf6, +0x54,0x86,0xf9,0xfa,0x78,0x7a,0xd9,0x05,0x8b,0x74,0x32,0xdd, +0x0a,0x09,0x88,0xfc,0xe9,0x6f,0x5c,0x26,0x59,0xa1,0x12,0x9e, +0x0e,0x95,0x82,0x3a,0x58,0x0d,0x19,0x36,0x36,0xf5,0x4e,0x55, +0x27,0xf3,0xbc,0x94,0x6b,0x2d,0x8a,0x0d,0x8c,0x04,0x06,0xce, +0xae,0xbb,0x77,0x9b,0x5d,0xb8,0x1a,0x22,0x8a,0x28,0x2a,0x89, +0x2e,0x13,0xf6,0xd5,0xb6,0xf4,0x0c,0xd9,0xb4,0x6b,0x19,0x3a, +0xbb,0x9a,0x87,0x88,0x77,0x8c,0x1f,0xb8,0xb8,0xee,0xb6,0xb3, +0x05,0xdb,0xea,0x52,0x15,0x50,0x14,0x4c,0x77,0xd9,0xe7,0x78, +0xfb,0x0b,0x1c,0xf6,0x24,0xec,0xcd,0x12,0xe9,0xf2,0x6f,0x86, +0x7e,0xed,0x64,0x23,0x70,0x30,0x8a,0xc0,0xf9,0xa7,0x45,0x19, +0x7a,0x3c,0x58,0x5d,0x78,0xfd,0xc2,0xb0,0xa0,0xd7,0xa8,0xe1, +0x48,0x0e,0xa1,0x7f,0x22,0xba,0x3e,0xbf,0x56,0x50,0x1c,0x52, +0x14,0x96,0x25,0x4a,0x4c,0x2c,0x3c,0x5d,0xed,0xdd,0xe3,0x40, +0xf2,0x9f,0x9b,0xbb,0x60,0xd1,0xf7,0xa3,0x17,0xaf,0x76,0x05, +0x74,0xba,0x34,0x8b,0x12,0x93,0x40,0x1b,0x0f,0xf1,0xe4,0x4b, +0xc0,0x90,0xa9,0x2d,0x08,0x72,0xf3,0x08,0x0a,0x73,0xf7,0xf1, +0x4f,0xcb,0x0d,0x10,0x37,0x27,0x16,0x54,0xd4,0x13,0x5f,0x22, +0x97,0x45,0x31,0x1f,0x6a,0x6d,0x44,0x96,0xaf,0x56,0x7d,0xb8, +0x41,0xbf,0xea,0x4c,0x2c,0x6b,0xe9,0xde,0xea,0xd7,0xe5,0xdb, +0x12,0xa0,0x8c,0x69,0x3a,0x40,0xb2,0xb7,0xb9,0x46,0x17,0x2d, +0x2d,0x05,0x66,0x3a,0x3e,0xf8,0x1c,0xae,0xda,0xd2,0xf7,0xb5, +0xb7,0x48,0x93,0x68,0xc3,0xf3,0x95,0x30,0xf7,0x28,0x9c,0x10, +0xc2,0xc6,0x77,0x3b,0xee,0x0f,0x38,0xb6,0x6d,0xed,0x14,0x43, +0xd2,0x30,0xa5,0xa8,0xbf,0xad,0x63,0xfe,0xb0,0x64,0xf6,0x3f, +0x5a,0x94,0x13,0x81,0xd1,0x0e,0x66,0xf6,0x5e,0x61,0xb1,0x0d, +0x3b,0x7b,0xf7,0x90,0x96,0x0f,0xe2,0xfa,0x3f,0xae,0xc9,0x71, +0xef,0x8c,0x33,0xb3,0x77,0x11,0x8b,0xec,0xd9,0xd9,0xfb,0x8a, +0xc4,0xd7,0xaf,0x93,0xed,0x60,0x2c,0xce,0x58,0x9c,0xb1,0x8c, +0x88,0x1d,0x97,0x4c,0x24,0x8c,0x68,0x92,0xac,0x4b,0x25,0x41, +0x25,0x59,0xc5,0x3c,0xc2,0x2a,0xdc,0x3a,0x22,0xf2,0x6e,0xdc, +0xdb,0x49,0xf7,0xb5,0xa4,0x6c,0xec,0xa6,0xc4,0xcd,0xe9,0x3b, +0x77,0xf9,0x1d,0xf5,0x33,0x0a,0x88,0x4f,0x62,0xfb,0x9a,0x6b, +0x2e,0x4e,0x08,0xde,0x3d,0x3e,0xbc,0x02,0x69,0xf5,0xa3,0xf8, +0x8c,0x49,0xb2,0x7e,0xb6,0xa6,0x68,0x2c,0x6d,0xa6,0x56,0xd7, +0x29,0xf8,0xa8,0xad,0xe1,0x8d,0xcb,0x1d,0x9e,0xea,0xfa,0xa7, +0x0c,0xcc,0x0c,0x45,0xa5,0xba,0xd7,0x4a,0xdf,0x2c,0x7d,0x50, +0xaa,0xa8,0xd5,0x39,0xa4,0x39,0x8f,0xfe,0x5c,0xab,0x6b,0xcd, +0x6c,0xcb,0xe8,0xc8,0x9c,0xad,0xd5,0x8d,0x3e,0xaa,0xd5,0x75, +0x75,0x66,0x74,0xa6,0x77,0xa7,0xd3,0x5a,0xf3,0x1c,0xfd,0x1c, +0xfc,0x1d,0x82,0x4a,0xec,0xd9,0xfa,0xfc,0xc6,0xa2,0xba,0x62, +0xba,0xe4,0x24,0xe3,0xe8,0xe7,0x14,0xe0,0x10,0x58,0xe4,0xc4, +0xd6,0xe5,0xd7,0x17,0x92,0x26,0xa5,0x1f,0x38,0x9d,0xff,0x7e, +0x4d,0x8f,0x4b,0xf6,0x67,0xda,0x8b,0xbb,0xcb,0xda,0x2b,0xfd, +0x9b,0x67,0x9e,0x40,0xb0,0xf0,0xa7,0xaf,0x91,0xb8,0xd3,0x51, +0xdc,0x5e,0xd6,0x51,0xe1,0xdf,0xc4,0x5a,0x9e,0xb2,0xf0,0x36, +0xf7,0x23,0x10,0xf8,0xc4,0xbf,0x52,0xfb,0x4b,0x22,0xf9,0x96, +0x57,0xb0,0x57,0x88,0x57,0xa8,0xa4,0x99,0x45,0xb5,0x18,0x49, +0xa3,0x74,0x2a,0xa1,0x45,0x59,0x55,0x1a,0x6f,0x29,0x51,0x93, +0xda,0x2b,0xcf,0xd4,0xff,0xa2,0xd5,0x9a,0xcd,0x3f,0x79,0x54, +0xff,0x33,0x85,0xb8,0x14,0x65,0xd8,0x91,0x24,0xf5,0x24,0x79, +0xcc,0x49,0x45,0xfd,0xaf,0x22,0xfe,0x5c,0x7c,0xa5,0x32,0x88, +0x13,0xa3,0xe3,0xa2,0xe3,0xa3,0xe3,0x94,0x8b,0xec,0x3a,0x8a, +0xba,0xca,0x3b,0x2a,0x94,0x73,0x5d,0x18,0x4b,0x4f,0x0b,0x1f, +0x73,0xbf,0x22,0x07,0x76,0x96,0xcc,0x7f,0xf3,0x09,0x26,0x21, +0xd1,0xd4,0xff,0x4f,0x8b,0x82,0x09,0x6e,0xcc,0xac,0xa8,0x8b, +0x6c,0xd9,0x59,0xa6,0xe8,0x3c,0xe7,0x59,0xa6,0x7c,0x1f,0x63, +0xea,0x5f,0x2b,0x1d,0x72,0x3f,0xe0,0xe2,0xbf,0x76,0xfb,0xfc, +0xa7,0xf5,0xb2,0x27,0x18,0x14,0x41,0xa8,0x36,0x86,0x22,0x93, +0x4c,0xfd,0x69,0x95,0x71,0xc7,0xa8,0xdb,0xf7,0x1a,0xbe,0xbf, +0xaf,0x32,0x6a,0xe3,0xa6,0x11,0xd8,0x04,0x22,0x4a,0xae,0xd7, +0xff,0x87,0x45,0x46,0xce,0xfc,0x38,0x63,0xef,0x6b,0xe3,0x6b, +0x1b,0x58,0x6c,0xcf,0x36,0x17,0xb4,0x94,0x34,0x96,0xd0,0x39, +0xae,0x8c,0x1d,0x59,0x1e,0xdb,0x80,0x22,0x47,0xb6,0xb1,0xb0, +0xa9,0xa8,0xb1,0x94,0x20,0xc9,0x61,0xce,0x8a,0x99,0xe5,0xdf, +0xaf,0x85,0x75,0x0b,0x24,0x3f,0xc1,0x92,0x3a,0x56,0x62,0x69, +0x7a,0xd6,0x54,0x18,0xdf,0x13,0xdf,0x17,0xd7,0x4d,0x5f,0xbd, +0x26,0x91,0x5c,0x12,0x4f,0xa2,0xf5,0xef,0xaa,0x93,0xca,0xb8, +0xe8,0x3f,0xad,0x4e,0xbe,0x78,0x56,0x02,0xe2,0x5f,0xaa,0x93, +0xd6,0x7f,0x5e,0x9d,0xbc,0x2e,0xb9,0x2b,0x7d,0x53,0x9a,0xb8, +0x9e,0x9d,0x29,0x4f,0x4a,0x2f,0xd4,0x9c,0xad,0x16,0xc2,0x01, +0x09,0x33,0xab,0xf7,0xc5,0x76,0xbf,0xac,0xc6,0xff,0x52,0xc9, +0x92,0x98,0xe1,0x69,0xc6,0x89,0x98,0xb9,0xfd,0x63,0x66,0x7e, +0x00,0x17,0x30,0xb3,0xe6,0x1d,0x58,0xcf,0xce,0x1a,0x3c,0x21, +0xa0,0x9c,0x1b,0x61,0x1e,0x2f,0x54,0x26,0x4d,0xb2,0xff,0x6a, +0xa9,0x93,0x96,0x73,0x9e,0xff,0x4e,0x69,0x13,0xaa,0x0d,0xfe, +0xc9,0xdb,0x16,0x38,0xfc,0x81,0x4b,0xfd,0x3f,0xa9,0x80,0x9e, +0x3c,0xc0,0xd8,0xb9,0xdb,0x9e,0xb4,0xf5,0xae,0xb0,0x67,0x9b, +0xca,0x5b,0xaa,0x1a,0xce,0xd3,0xc5,0x4e,0x8c,0xbd,0xbb,0x9d, +0xa7,0x9d,0x57,0xb9,0x23,0x69,0x6a,0xac,0x6c,0x3c,0x47,0x2b, +0xfd,0xfd,0x5f,0x2f,0x93,0xca,0xe6,0x61,0xc5,0x5f,0x7c,0x36, +0x65,0x3f,0xe7,0xfe,0xef,0xd6,0x53,0xb9,0x0d,0x41,0x7f,0xd1, +0x92,0x5f,0x56,0xfc,0xfd,0xcc,0xcf,0xb5,0xd3,0xff,0x7e,0x01, +0xd6,0x68,0x27,0x63,0xed,0x65,0xe5,0x6b,0x15,0x50,0x62,0xc3, +0xb6,0x14,0x75,0x94,0xb4,0x94,0xd3,0xf9,0x0e,0x8c,0x8d,0x97, +0xb5,0x9f,0xb5,0x1f,0x59,0xd5,0xd6,0xa2,0xd6,0x62,0xd2,0xa4, +0x78,0x97,0x5f,0xc6,0x5f,0xae,0x68,0x71,0x69,0x78,0x8a,0xf1, +0x53,0x3c,0x18,0x1a,0x4e,0xb7,0xa3,0x0a,0xff,0x9f,0x8a,0x5b, +0x65,0x7f,0xb1,0xb8,0x75,0xfb,0x9f,0x8b,0x5b,0x6b,0xa9,0x90, +0xa8,0xe0,0xa8,0x90,0xe8,0x22,0xbb,0x9f,0xfd,0xe7,0x74,0x74, +0xfb,0x1f,0xd4,0xba,0x64,0xfb,0xf6,0xfe,0x73,0xac,0xf8,0xd7, +0xb8,0x38,0x85,0x8e,0x8c,0x7f,0x50,0xf4,0x99,0x10,0x71,0x36, +0xee,0xf8,0x67,0x26,0x8a,0xff,0x22,0x13,0x37,0xfe,0x99,0x09, +0x96,0x8a,0x3b,0x23,0x89,0x88,0x10,0x3c,0xfe,0xa8,0x8e,0x68, +0x5a,0x33,0xe6,0x0f,0xf8,0xe0,0x00,0x95,0x15,0x8f,0x5d,0x55, +0x2b,0x9e,0xd3,0x11,0x3f,0xf6,0x9c,0x8e,0xd2,0xa4,0x6c,0xeb, +0xff,0x5e,0x31,0x4f,0xe6,0x89,0x27,0xff,0x9a,0x22,0xfe,0xef, +0x92,0x11,0x80,0x36,0xff,0xfc,0x40,0x53,0xd3,0xe2,0x3f,0x7b, +0x68,0xe9,0xff,0xaa,0x04,0xc9,0x65,0xa3,0x3e,0xd3,0x5c,0xda, +0x5a,0xd1,0x54,0xe5,0xd3,0xc8,0xda,0x9d,0xb4,0xf6,0xb4,0xf1, +0xa5,0xe5,0x3b,0x56,0xfd,0x61,0x5d,0x92,0x4b,0xd6,0x62,0x9a, +0x4a,0x9b,0xcb,0x9b,0xaa,0x7c,0xeb,0x49,0x5f,0x5b,0x2f,0x5b, +0x6f,0xfa,0xff,0x8e,0xf2,0x44,0x3c,0x4c,0x24,0xec,0xd4,0xd3, +0x57,0x5f,0x3f,0x30,0xe0,0x58,0x67,0x64,0xe2,0xe8,0x64,0x20, +0x92,0x1f,0xdb,0xf5,0xc7,0xa4,0x47,0x54,0x30,0xd5,0x85,0x79, +0x65,0xb3,0xb2,0x77,0x7b,0x24,0x7b,0xaf,0x59,0xd9,0xff,0xff, +0xfa,0x31,0x40,0x4e,0x53,0x96,0xcf,0xfc,0x61,0xcd,0xf7,0x8f, +0x8a,0xc3,0x5c,0x3c,0x59,0xb5,0x53,0xa7,0x3d,0x83,0x3d,0x43, +0xe3,0xba,0xce,0x8e,0x27,0x8d,0x91,0x14,0x22,0xce,0x26,0xde, +0x56,0x6a,0x4f,0xe3,0x91,0xff,0xc9,0xb2,0xf0,0x11,0x4a,0x1a, +0x79,0xf6,0x8c,0x34,0x32,0x47,0xca,0xe6,0xbb,0xb5,0x16,0xb5, +0x97,0xb6,0x94,0x29,0x4f,0x5f,0x7e,0xf7,0x8f,0xab,0xc3,0xb2, +0xb7,0xf1,0x29,0x85,0x6b,0xf7,0xb5,0xf2,0x27,0x58,0xec,0x17, +0xd7,0xfe,0xaf,0x71,0xe6,0x8c,0x6e,0x4c,0x40,0x50,0x4c,0x44, +0xa8,0x38,0xbe,0x55,0xda,0x95,0xd8,0xfd,0xbf,0xcd,0x59,0x89, +0x94,0x95,0xc4,0x29,0x1e,0x46,0x7d,0x5c,0x49,0x45,0xd3,0x39, +0x6d,0x7f,0xc2,0x63,0x06,0x1e,0x63,0x14,0x0a,0xa9,0x50,0x53, +0xf1,0x63,0x6a,0xaa,0x24,0xdb,0xce,0x91,0x34,0x66,0x05,0xa4, +0xea,0x9e,0x23,0x9e,0xa8,0x90,0x07,0x2f,0x6f,0x63,0x60,0x07, +0x24,0xe9,0x9d,0xc3,0xe5,0x98,0xc7,0x53,0x02,0x7b,0xd9,0x14, +0x83,0x3b,0x30,0xe9,0xa2,0x07,0x71,0x64,0x79,0xbc,0xfb,0xc6, +0x0c,0xae,0xc0,0xd4,0x21,0x0f,0x78,0x16,0x0a,0x79,0x4a,0x1d, +0x9c,0x26,0x03,0xda,0x60,0xca,0xe3,0xce,0x51,0xa0,0x85,0xa6, +0x8a,0x3d,0x56,0x77,0xc3,0x09,0x9e,0xfc,0x1a,0x85,0x7b,0xf0, +0x04,0xb9,0xde,0x85,0xeb,0x60,0xb8,0x6b,0x14,0x28,0x5a,0xc9, +0x49,0x45,0x1f,0xf9,0x39,0x0a,0x15,0xd7,0x6c,0xe2,0xcf,0x6c, +0x4d,0xc9,0x99,0x80,0x17,0x67,0x82,0x5e,0x8a,0xad,0x34,0x4d, +0xc0,0x5b,0x6e,0x82,0xde,0x3c,0x25,0x2e,0x8e,0xcb,0x57,0x9c, +0xf1,0x9e,0x69,0x45,0x2f,0x72,0xc6,0x4b,0xb1,0x3b,0x41,0xa7, +0x62,0xe3,0x36,0x13,0x30,0x25,0x17,0x98,0xf2,0x06,0x14,0x17, +0x98,0x91,0xd3,0x66,0x3c,0xb4,0x98,0xf7,0x47,0xcd,0x8a,0x71, +0xae,0x2a,0x2e,0x30,0x9b,0x69,0x45,0x53,0x72,0xc6,0x94,0x67, +0xc0,0x27,0xfd,0xbe,0xfd,0x83,0x66,0xc5,0xf6,0xcc,0x4b,0x18, +0xee,0x2b,0x24,0xb8,0x84,0x13,0x4d,0x47,0x50,0x32,0x33,0x5b, +0x06,0xaf,0x1c,0x84,0x50,0xf9,0x57,0x6f,0xf1,0x95,0x64,0x15, +0x1c,0xc7,0xc8,0xbf,0x82,0x50,0x5c,0x2d,0x17,0xc9,0x22,0xa8, +0x69,0xb3,0x66,0x06,0xae,0xdc,0xc2,0x50,0xee,0xab,0x5d,0x7c, +0xa5,0x6e,0x4e,0x8d,0x81,0x27,0x3f,0x81,0xd7,0x3e,0x25,0xe9, +0xff,0x63,0x9b,0xb0,0xc3,0xd5,0x7f,0x88,0xf8,0x8a,0x6d,0x33, +0x13,0x18,0xb8,0xfa,0x9b,0x8d,0xd7,0x4f,0x20,0xe9,0xfb,0xe4, +0x6b,0x62,0xbc,0xca,0x57,0xe2,0x6c,0xb8,0xe7,0x99,0x3b,0x5c, +0xdc,0x3e,0x4a,0x49,0x89,0xcb,0xff,0x69,0x1e,0x63,0x2b,0x8f, +0x6b,0xa6,0x94,0x38,0xb5,0x99,0x97,0x35,0xc0,0x7c,0xc5,0xdb, +0x1a,0x64,0xa2,0x79,0xb6,0x3f,0x05,0x37,0x93,0x83,0xa3,0xf3, +0x70,0xfe,0x4f,0xc1,0x8a,0xbf,0xc6,0x9a,0xed,0x8b,0x0b,0x9a, +0x29,0xeb,0x79,0x8f,0xff,0x9a,0xbd,0x12,0x17,0xc0,0x7c,0x58, +0xc0,0xc7,0xf9,0xb8,0xeb,0x8f,0x8e,0x95,0x60,0xe7,0x4c,0x4e, +0x65,0x0b,0x73,0x29,0xd8,0xd5,0xfc,0xcf,0x47,0x3b,0x9b,0xff, +0x93,0xb3,0x8a,0xab,0x8f,0x92,0x63,0x9c,0x3f,0xd3,0x0c,0xf3, +0xff,0xf0,0x78,0xe7,0x9f,0xb4,0x3f,0x76,0xfc,0x88,0x89,0xed, +0xcd,0xd4,0xf6,0x79,0xb6,0xdb,0x66,0x3e,0xb7,0x2b,0x38,0x18, +0x56,0x70,0x30,0x7f,0x3b,0xcc,0x27,0x2d,0x38,0x7f,0xdb,0xa3, +0xdf,0x8a,0xef,0xb3,0x84,0x6f,0xb7,0x7d,0x67,0x86,0x9c,0xdf, +0xfc,0xde,0xd9,0xfc,0x87,0xed,0xb3,0xc4,0x6e,0xc7,0xf9,0xef, +0xcc,0x4e,0xfd,0xfb,0xa3,0x9d,0x7f,0xd0,0xf6,0xcb,0xd1,0x8c, +0xe4,0x39,0x1f,0x0c,0x6a,0x86,0xd2,0xd9,0x65,0xe0,0xd4,0x30, +0x88,0x88,0xb0,0xf4,0xd1,0x5a,0x90,0x73,0x3a,0xcd,0x30,0xf9, +0xf3,0x37,0x35,0xd4,0x21,0x27,0x27,0x1f,0x75,0xcd,0x87,0x52, +0x5b,0x0c,0x7a,0xf4,0x65,0x18,0x4a,0xc9,0x0a,0x04,0xfd,0xdc, +0x33,0x1f,0x26,0x6d,0x51,0xe7,0xe7,0x6f,0xc3,0x30,0x49,0x4e, +0x92,0xaf,0x3f,0x05,0x13,0xf6,0xe4,0xf9,0x58,0xda,0x0c,0x41, +0x9c,0x0f,0xf5,0xe8,0xfb,0x30,0x96,0x92,0x61,0x83,0x38,0xb5, +0x99,0x86,0xa3,0x8a,0x0e,0x93,0xcd,0xa0,0xf3,0xa8,0xc3,0x51, +0x45,0x87,0x49,0xd2,0x41,0xe7,0x51,0x07,0x72,0x85,0x0f,0x04, +0xd9,0x62,0x29,0x97,0xff,0xf3,0x77,0x35,0x08,0x22,0x13,0x94, +0x72,0xc3,0x3f,0x5f,0xe1,0x03,0x3a,0xb6,0x38,0xf9,0xa8,0xc3, +0x51,0x45,0x07,0x1d,0xd2,0x61,0xf2,0x51,0x07,0x11,0xf3,0x8f, +0xe0,0x47,0x7c,0xff,0x4a,0x86,0xa2,0x69,0x96,0xfb,0xc7,0x29, +0xb1,0x95,0xfb,0x3c,0xea,0xa9,0xf3,0x2b,0xc1,0x3e,0xcd,0x84, +0xc4,0x47,0xc2,0x09,0xfa,0x85,0xcc,0x7f,0x04,0xff,0xdc,0xf6, +0x38,0xe9,0xb6,0x72,0xb5,0x9f,0xc7,0x7d,0x8c,0x01,0xb5,0x66, +0xc2,0xd4,0xcf,0x02,0xfd,0x75,0xbe,0x99,0x21,0x66,0x1b,0x7f, +0xcf,0x6d,0x10,0x21,0xe4,0xa7,0xe0,0xdf,0x32,0x1c,0x44,0xc6, +0x7e,0xd4,0xf6,0x33,0xcf,0x41,0x33,0xf4,0xda,0xfe,0x2a,0x9a, +0x99,0x8b,0x75,0xe4,0x3e,0x8a,0x45,0x69,0xfe,0x95,0xae,0x99, +0xce,0x33,0xcd,0xbf,0x0e,0x30,0x2b,0xa4,0xa0,0x19,0x82,0x6d, +0x7f,0x11,0xd5,0xa3,0xb9,0x74,0xe4,0x6a,0x8a,0x95,0x6c,0xfe, +0x55,0x36,0xb3,0xdd,0x67,0xda,0x15,0x63,0x70,0x3e,0x0a,0xb5, +0x0e,0xfa,0x59,0x5e,0x0a,0xc3,0x9e,0xb5,0xd5,0x99,0x01,0x67, +0x85,0x3d,0xa3,0x67,0x8f,0x75,0x7c,0xa4,0x6d,0xb6,0x10,0xf4, +0x9b,0xce,0x33,0xcd,0x33,0x03,0xcc,0x74,0x9d,0xa5,0x5e,0x21, +0xd9,0x5f,0x07,0x9d,0x25,0x67,0x56,0xda,0x33,0x1a,0xfa,0x78, +0xd7,0x47,0x7a,0x6a,0x0b,0x3a,0xbf,0xed,0x3e,0xd3,0xfe,0xcb, +0xb8,0xc4,0x11,0x29,0x56,0xaf,0x59,0x21,0xa2,0x9f,0xfb,0x95, +0x36,0x3f,0x52,0x8a,0x66,0x05,0xdb,0xbf,0xd0,0x6a,0xfb,0xb3, +0x86,0x3e,0xde,0x59,0xe1,0xbe,0x66,0xdb,0x7e,0xed,0xaa,0x18, +0x93,0xac,0x3e,0xcc,0x57,0x08,0xf8,0xe7,0x41,0x27,0x9b,0x1f, +0x29,0x05,0x69,0x56,0x9b,0x69,0x9e,0xa5,0xd5,0xf6,0x67,0xb5, +0xfe,0x4d,0xf7,0x99,0x61,0x67,0x1b,0x1f,0xeb,0xfc,0x8b,0x5c, +0xff,0x89,0xe4,0xc7,0xc4,0xfb,0x7b,0xb2,0x7f,0x15,0xf1,0xef, +0x48,0x7f,0x4c,0xcc,0xbf,0xe7,0xe0,0xb1,0x99,0x1e,0x67,0xe4, +0x77,0x0b,0xf1,0x38,0x15,0xbf,0x3f,0xf5,0x4f,0xfc,0x3f,0xd2, +0xa8,0x3f,0x93,0xc2,0x6f,0x2d,0xe4,0xb7,0x97,0xfe,0x66,0x99, +0x9b,0x7f,0x47,0xe9,0xe3,0x8b,0x3d,0xcb,0x45,0xb3,0xed,0xef, +0x67,0x7d,0x6c,0x58,0xb5,0x3f,0x54,0x87,0xc7,0xf9,0xff,0xa7, +0x29,0xff,0x89,0xd8,0xc7,0x66,0xfc,0x13,0x5a,0x1f,0x3f,0x39, +0x73,0x25,0x2c,0xe5,0xb6,0x32,0x32,0x7f,0x70,0x9a,0x26,0xff, +0x79,0x4a,0x7d,0xdc,0x20,0x18,0x32,0xbb,0xdd,0x8e,0xeb,0xbf, +0x26,0xc4,0xb9,0x07,0x26,0xe0,0xf9,0x40,0x31,0x54,0x5e,0xc1, +0xea,0xef,0xa1,0xfa,0x0a,0x56,0x52,0xf0,0x7c,0xc1,0xcd,0x09, +0xe0,0x09,0x3f,0xbc,0x6c,0xbc,0xff,0xbc,0xf8,0x52,0x23,0xef, +0x1b,0xf3,0x1d,0x63,0xa8,0x24,0x44,0x75,0x7c,0x82,0x60,0xb4, +0x78,0x8c,0x07,0xf2,0x1b,0xd4,0x41,0x70,0xe7,0xfa,0x17,0x1d, +0x04,0xe9,0x84,0x2b,0x86,0x73,0x39,0xa4,0xbf,0x46,0x88,0xcf, +0xec,0x26,0xc3,0xf9,0x8b,0xa1,0xe3,0x0a,0xf6,0x7c,0x0f,0x3d, +0x57,0xb0,0x83,0x0c,0x57,0xf8,0xe6,0x04,0xcc,0x17,0x7e,0x7e, +0xc3,0x78,0xff,0x05,0xf1,0x14,0x19,0xce,0x74,0xcb,0x18,0xbe, +0x20,0x44,0x43,0xa4,0x1e,0x0d,0x47,0x7e,0x83,0x21,0x2c,0x7d, +0xeb,0xfa,0x17,0x8a,0x3f,0x99,0x76,0xe7,0x94,0xfe,0x1b,0x2f, +0x72,0xe0,0x4e,0x2b,0xf6,0x9c,0x50,0xbc,0xf1,0xf6,0x09,0x42, +0xa8,0xe0,0xfa,0xbe,0x2f,0x2c,0xc4,0x2d,0x97,0x78,0xbb,0xab, +0xf5,0xaf,0x7c,0x22,0x80,0xb9,0x13,0xb7,0x09,0x5b,0x22,0xac, +0xbc,0x02,0xd5,0xdf,0x63,0xf5,0x15,0xa8,0xe4,0x13,0xb6,0x27, +0x0e,0x21,0x4f,0xb0,0xd1,0xf8,0xc4,0x7e,0x77,0x51,0xa3,0x0a, +0xef,0x9b,0xce,0xb1,0xfb,0x8a,0x97,0x64,0x93,0xab,0x09,0x83, +0xf1,0x22,0x25,0xb8,0xcc,0x25,0x31,0xc5,0xb9,0xc5,0x05,0x45, +0x85,0x34,0x1a,0x82,0x35,0xdf,0x01,0xe7,0xed,0x39,0x8c,0x2f, +0x69,0x36,0xea,0xb0,0xb0,0xf9,0xce,0x83,0x07,0x8d,0x20,0xa6, +0x21,0x1b,0x52,0xf1,0x30,0x55,0xd5,0x50,0xd9,0x5a,0xd4,0x44, +0xb7,0x60,0x21,0x3f,0xab,0x34,0xa3,0x24,0xad,0x58,0x27,0x93, +0xb5,0x7d,0x79,0x23,0x2e,0x58,0xbe,0x97,0x2e,0x01,0x01,0x63, +0xd8,0xbf,0x6f,0x54,0xb3,0xc1,0xce,0x82,0x1d,0xb3,0xbf,0xa3, +0x39,0x60,0x48,0x73,0xae,0x0f,0x98,0x00,0xa7,0x93,0xb6,0x27, +0x5d,0x69,0x0c,0xa0,0xce,0xd5,0x56,0xd6,0x97,0x36,0xd0,0x18, +0x86,0xd1,0x8c,0x61,0xdf,0xce,0x09,0xad,0x06,0x47,0x73,0x76, +0xd8,0xfe,0xae,0xe6,0x90,0x3e,0x0d,0x66,0xb0,0x88,0x81,0xfd, +0x94,0x44,0x3f,0xd6,0xf4,0x8c,0x35,0x8d,0x1b,0x29,0xf0,0x5c, +0x9c,0xd6,0x96,0xd8,0x2d,0x1d,0xa0,0xe1,0x10,0xae,0xa0,0xe4, +0x8c,0x7c,0x3d,0x83,0x8b,0x5f,0x1f,0x03,0xbe,0x18,0x4e,0xa0, +0xae,0x16,0x2c,0xc2,0x67,0xf8,0xeb,0x9c,0xf4,0x57,0x59,0x8a, +0xca,0x34,0x3f,0x6e,0xe9,0x1e,0x49,0xbc,0xad,0x9c,0x4a,0x6d, +0x4e,0xbf,0x7f,0x00,0x36,0x09,0xb9,0x08,0x2a,0x63,0x92,0x87, +0x96,0x70,0x91,0xa9,0x75,0xac,0xb7,0x2a,0xb1,0x6b,0xbf,0xc0, +0xfa,0xd5,0x39,0xb6,0x3b,0xd5,0xd3,0xb8,0x0e,0xf7,0x31,0xea, +0xe5,0x9e,0xd7,0x45,0xb0,0x9c,0xea,0xcd,0x2d,0x68,0x17,0x7f, +0xc1,0xd7,0xcd,0xe3,0xe1,0xd3,0xb8,0x82,0xef,0x16,0x96,0x71, +0x4e,0x0c,0x5b,0x34,0xf9,0x4a,0xf7,0x65,0xed,0x8c,0x2e,0xb4, +0x0f,0xf1,0xc1,0x48,0xbe,0x8a,0xc9,0x29,0xcb,0x2e,0xcf,0xaa, +0xa4,0xa1,0x15,0xde,0x94,0x6b,0xe1,0x9b,0x9f,0x51,0xf6,0xdb, +0x34,0x0f,0xaa,0x9a,0x5d,0x30,0x61,0xb3,0xd2,0x33,0x33,0x32, +0x33,0x68,0xec,0xbf,0x38,0x06,0x39,0xfd,0x98,0x03,0x36,0x4e, +0xfc,0xd2,0xd2,0xe2,0xf2,0xa2,0x2a,0x1a,0x1e,0x50,0x38,0x37, +0xf6,0xa5,0x33,0x87,0x44,0xda,0x91,0xe1,0xe1,0x86,0xc2,0x2d, +0x54,0xae,0x2e,0xef,0x4d,0xea,0x7e,0xc5,0xb9,0x8f,0x33,0xc5, +0x19,0x6f,0x26,0xc2,0x93,0x52,0xd8,0x48,0x6f,0x85,0x1f,0x98, +0x2d,0x78,0xff,0x3d,0xbe,0xdc,0x6e,0x03,0xa3,0x03,0x38,0xcc, +0xe7,0x8e,0x5a,0x30,0xaf,0xe3,0xfd,0x8f,0xf8,0xf2,0x9d,0xeb, +0x09,0x0d,0xb5,0x43,0x7c,0xd4,0x9b,0x37,0x84,0xb5,0xba,0x7c, +0x6e,0x24,0x84,0x09,0xe3,0xef,0xf2,0x76,0x7b,0xdd,0x58,0x54, +0x6e,0xd5,0x57,0x59,0x57,0x51,0x54,0xa1,0x9c,0x9c,0x92,0x78, +0x36,0x35,0x1a,0xe6,0x6c,0x67,0xcf,0xb5,0xac,0xbd,0x15,0x91, +0x1a,0x29,0x3d,0x13,0xa1,0x1c,0x11,0x1e,0x9b,0xc8,0xcb,0x2a, +0x4b,0x3d,0xdf,0x23,0xc8,0xe6,0xcb,0x07,0xe4,0x4b,0x98,0x41, +0xf0,0x87,0x32,0x6c,0xc0,0x7b,0x7c,0x08,0x80,0x32,0x06,0x37, +0xe3,0x3e,0xc5,0xab,0xb4,0x7f,0x32,0x50,0x6c,0x9d,0xf0,0x12, +0x55,0xf1,0x4e,0xd9,0x57,0xf9,0x6f,0xd3,0x38,0x40,0x25,0x17, +0x26,0x17,0x24,0xe5,0xeb,0x26,0xb2,0xa7,0x0f,0x7a,0xbc,0xee, +0xba,0x85,0x86,0xab,0x54,0x94,0x77,0x94,0x57,0x94,0x2f,0x8d, +0x5f,0x9b,0x80,0x35,0xa5,0x67,0xb4,0xd7,0x62,0x93,0x7b,0xc0, +0x94,0xef,0xa4,0xf7,0x80,0x59,0x00,0x9b,0xe3,0x91,0xed,0x9a, +0xe9,0x62,0x1c,0x65,0x18,0x63,0x10,0x3b,0xfe,0xce,0x65,0xe0, +0x8d,0x00,0x6d,0x52,0xc5,0x9e,0xd4,0x74,0x51,0x73,0xd6,0x0a, +0x28,0xf5,0x2f,0xf3,0x2b,0x69,0x98,0xa8,0xbb,0x51,0x79,0xc5, +0xa8,0x94,0xf5,0x51,0x75,0x53,0x75,0xd5,0x0b,0xc9,0x21,0x3f, +0x59,0xce,0x56,0x6c,0xaf,0x79,0x9f,0x61,0xbb,0xee,0x29,0xeb, +0x53,0xb6,0xa7,0x5c,0x76,0xc5,0xb1,0xc9,0xba,0xfd,0x89,0xe4, +0x27,0x59,0x59,0xfe,0xda,0x30,0xb7,0x85,0x5f,0x9b,0x58,0x93, +0x7c,0x21,0x29,0x25,0x28,0x39,0x30,0x29,0xb0,0x33,0x9f,0xcd, +0x71,0x1f,0x29,0x1e,0xae,0xea,0xa9,0x51,0xce,0x0a,0xcc,0x0c, +0xc8,0xf4,0xd3,0xb1,0xdc,0x69,0xb9,0xd3,0xa3,0xc4,0x98,0xbd, +0x5f,0x7d,0xbf,0x73,0xb0,0x33,0xdd,0x37,0xcd,0x27,0xc5,0xf7, +0x84,0xc6,0x2b,0x5a,0x2b,0x1d,0xca,0x8c,0xd8,0xaf,0x1a,0x3e, +0x1b,0x19,0x1f,0xa6,0x93,0x7c,0x13,0xfc,0x02,0x04,0x47,0x82, +0x7c,0x74,0x44,0x87,0xa9,0x3c,0x7d,0xde,0x18,0xf5,0xd1,0x85, +0x96,0x1f,0xa4,0xe2,0xcf,0x2c,0x61,0x91,0xca,0x43,0x51,0x59, +0x51,0x71,0x71,0x41,0x09,0x5d,0x4a,0xe5,0xa2,0xee,0x25,0x22, +0x8e,0x17,0x71,0x69,0x53,0x17,0xab,0x72,0xcd,0xfc,0xa6,0xeb, +0xbd,0xfe,0x96,0xa1,0x81,0xda,0x0e,0xdb,0x06,0xd6,0xcd,0xd2, +0xdc,0xcc,0xca,0x29,0x70,0x24,0x7c,0x22,0xe6,0x32,0x0d,0xc6, +0x94,0x7c,0x2b,0xec,0x62,0xd2,0xcb,0x33,0xeb,0x33,0x1b,0x68, +0x90,0x50,0x31,0x5e,0x67,0x9c,0x22,0xec,0x69,0x79,0xa6,0xfc, +0x59,0xa6,0xe0,0x78,0xf6,0xde,0xb4,0x03,0x7d,0x05,0x6c,0xe4, +0xf5,0xd3,0x6f,0x06,0x5e,0xa2,0x31,0x01,0xdb,0x98,0xda,0xfb, +0x05,0x5f,0xa5,0x7f,0x69,0x94,0xc6,0x46,0x6e,0x0a,0xdc,0xec, +0xb2,0x93,0x56,0x92,0x19,0x73,0x1f,0x31,0xf0,0x3c,0x58,0x0c, +0xa2,0xc5,0xa4,0xba,0x1a,0x4e,0x29,0x3e,0xd4,0xf4,0x41,0x0d, +0x9f,0xe7,0x73,0x4f,0x0d,0x30,0x38,0x75,0x03,0xa6,0x28,0xf9, +0x43,0x3c,0xcb,0x70,0x1b,0x0f,0xe2,0x6d,0xbc,0x26,0xb3,0x83, +0x6b,0xf8,0xf1,0x2d,0xee,0xc8,0xe0,0x3f,0x96,0x52,0xdc,0x46, +0x24,0x0b,0x96,0x79,0x0f,0x32,0x29,0xf8,0x70,0x0f,0x83,0x55, +0xf7,0xa0,0x8a,0xc2,0x0f,0x91,0x61,0x76,0x62,0xe6,0xdb,0x7c, +0xb8,0xb9,0x18,0xaa,0x76,0x62,0x15,0x25,0xd7,0x27,0x39,0x25, +0x2c,0x39,0xf7,0xf7,0xd6,0x7b,0xed,0xf6,0x6d,0xec,0x6e,0xeb, +0xd5,0x8e,0xb8,0xf8,0x24,0xcd,0xf5,0x8e,0x30,0xdf,0x79,0xc2, +0xd3,0x36,0xdf,0x58,0xd7,0xf4,0xb1,0x6b,0x1a,0x51,0xa9,0x65, +0x59,0x25,0xc9,0xfd,0xfb,0x65,0x36,0x8c,0x71,0xab,0x7a,0x8b, +0xe6,0x05,0x17,0x63,0x76,0xd2,0xf9,0xa2,0xfd,0x80,0x15,0xfd, +0x11,0xb1,0x68,0x39,0xcd,0x25,0x70,0x34,0x9f,0x8c,0xf6,0x06, +0x03,0xe5,0xdc,0x12,0x2c,0xe7,0xa3,0xf3,0xb7,0x4c,0x46,0x46, +0x92,0x34,0x33,0x12,0x16,0x6c,0x61,0xcf,0x77,0xe0,0x33,0xf7, +0xc2,0xd2,0xa2,0x25,0x11,0x61,0xca,0x67,0xc2,0x63,0x12,0x79, +0xb9,0x25,0x69,0xd5,0xcd,0x82,0x4a,0x7d,0x2f,0xfe,0x6e,0x0b, +0x97,0x4d,0xe6,0xa2,0x72,0xf3,0x91,0xaa,0x96,0xea,0xe2,0x52, +0x65,0xbc,0x86,0x4a,0x8c,0x6e,0xd7,0xfe,0xbe,0x23,0xf5,0xce, +0x26,0xec,0x0d,0xfb,0x2b,0xe6,0x13,0x26,0xb4,0x6c,0x85,0x36, +0x23,0xbf,0x86,0x9f,0xaa,0xeb,0xcb,0x4e,0x0c,0x6a,0x51,0xd3, +0x7b,0xa0,0x99,0xb1,0xc7,0x27,0x0d,0x91,0x3e,0xb0,0xa6,0xd7, +0x8a,0xbd,0xf3,0xe3,0x28,0x28,0xd7,0xfd,0x40,0xc3,0xa9,0x52, +0x06,0x9b,0xf1,0x09,0x68,0xe6,0xc3,0x6e,0x24,0x69,0x53,0x33, +0xcc,0xc5,0x66,0xfe,0xc8,0x62,0x72,0xf0,0x94,0x62,0xff,0x87, +0x3b,0xc4,0x2f,0xea,0x41,0xea,0x45,0x3e,0x77,0x7e,0xb1,0xfc, +0x15,0xbc,0xa3,0x25,0x1f,0x1d,0xe1,0x52,0xb8,0x75,0xf2,0x63, +0xb8,0x9d,0xca,0xd6,0xe1,0xc1,0x1a,0xaa,0x23,0xaf,0xa4,0x5d, +0xcc,0x79,0x6b,0xf2,0xb5,0xa1,0x94,0x79,0x85,0xa4,0x92,0x07, +0x56,0x10,0x98,0x44,0x44,0xa7,0xc2,0x4c,0x0b,0x07,0x65,0x42, +0xa0,0x87,0xb0,0x9b,0x18,0xd9,0x3f,0x36,0x31,0xf0,0x1c,0x08, +0xf0,0x39,0xfe,0xb4,0xab,0x3e,0x83,0x26,0x51,0xab,0x5d,0x37, +0x89,0xba,0x1d,0x79,0x75,0xdf,0xa4,0x91,0xac,0xd5,0x4c,0xd0, +0x6e,0xc8,0x87,0x54,0xf9,0x51,0x86,0x3b,0x6a,0x28,0x3f,0xca, +0x87,0x24,0x20,0x6b,0xd6,0xd7,0x3f,0x01,0x56,0x10,0xce,0x47, +0x6b,0xd4,0x20,0x52,0x87,0x57,0x71,0x09,0xb1,0x2d,0x6d,0xf8, +0x91,0x39,0x48,0x25,0x5e,0x4b,0x78,0xe3,0x4d,0x81,0x5c,0x97, +0x2a,0xad,0x2e,0xac,0xc9,0xaf,0xa5,0x39,0xf5,0x11,0xf9,0x46, +0x2a,0xa7,0x2e,0xab,0x21,0xa3,0x5e,0x3b,0x93,0xf5,0xde,0x68, +0xbd,0x5e,0x7d,0x6f,0xa7,0x1d,0x9b,0x95,0x1b,0x77,0x22,0xf6, +0x60,0xd4,0x7e,0xe5,0x5d,0xba,0xb7,0xa9,0x33,0xfb,0xc2,0xf7, +0x04,0x1f,0xa4,0xb9,0xad,0x54,0x7c,0xa4,0x24,0x32,0x3e,0x92, +0x36,0x3d,0x13,0x7c,0xda,0x52,0xb8,0x82,0x2a,0x30,0xe0,0x7d, +0x49,0x5d,0xb9,0x50,0x71,0x3b,0x57,0x9c,0x90,0x9d,0x98,0x93, +0x90,0x43,0xdf,0xbf,0xb8,0x9f,0x4a,0xed,0x4b,0x1e,0x49,0x9c, +0xa4,0xef,0x50,0xd3,0x46,0x72,0x3e,0xf3,0xd3,0x52,0xf5,0x7f, +0x2c,0xe5,0x3f,0x94,0x59,0x33,0x85,0x46,0x85,0x47,0xb2,0xd4, +0x06,0x8b,0xd9,0xd0,0x09,0xdf,0x1b,0xfe,0xbd,0x34,0xc6,0xe1, +0x35,0xa6,0xea,0xfd,0xdc,0xef,0x93,0x7f,0xd0,0x4b,0x65,0xa3, +0x97,0x87,0xac,0xf3,0xd8,0x4a,0xcb,0xea,0xe1,0x55,0x46,0x47, +0xa2,0x13,0x6f,0x20,0xc2,0x87,0x54,0xca,0x78,0xd2,0x70,0x42, +0x0f,0xfd,0x9e,0x36,0xd3,0x72,0xaa,0xd3,0xe9,0xbc,0x6b,0x6d, +0x0b,0xeb,0x71,0xce,0xac,0xd1,0xb6,0x8c,0xc6,0xad,0xf2,0xf9, +0x4c,0xfa,0x50,0xda,0x68,0xca,0x30,0x0d,0xdf,0x50,0xb1,0x6a, +0x31,0xda,0x51,0x46,0xf4,0xf6,0x71,0xc6,0xfd,0x9c,0x49,0x83, +0x6d,0x99,0xb3,0x0d,0xdb,0xee,0xd9,0xee,0x7c,0xce,0x9d,0xa8, +0xd3,0x45,0x4e,0xc2,0xf4,0xf4,0x37,0x8d,0x54,0x8f,0xd3,0x5c, +0xf6,0x88,0x3c,0x98,0xca,0xad,0xcb,0xae,0xcf,0xac,0xd7,0xca, +0x66,0xdd,0x97,0xeb,0x20,0x6f,0xcb,0x46,0xba,0x06,0xf6,0x31, +0xa6,0xad,0x3a,0xad,0x3a,0x35,0xce,0xa6,0xec,0xa8,0x63,0x9f, +0x5d,0x9f,0x15,0x1d,0x89,0xa6,0x8c,0x59,0x9b,0x4a,0x8f,0x56, +0x9d,0x93,0x29,0x3b,0xe2,0x30,0x6a,0xd1,0x67,0x41,0xcb,0x82, +0x8f,0x30,0x7b,0xa8,0xc4,0xab,0x09,0xb7,0x89,0x0c,0x63,0xa9, +0xb8,0xa3,0x31,0xfb,0x23,0xf7,0xd2,0x9b,0x75,0xdf,0xa2,0xce, +0x1c,0x08,0xdd,0x77,0x7a,0x3f,0xcd,0x39,0xce,0x8a,0x28,0x8a, +0x36,0x8e,0x08,0x09,0xb1,0x14,0xe2,0x13,0x0a,0x19,0x7d,0x4d, +0x5d,0xa9,0x2d,0xbb,0x93,0x27,0x4e,0xcc,0x56,0x48,0x89,0xfe, +0x68,0x68,0x07,0x95,0xda,0x9b,0x3c,0x9c,0x34,0x41,0xbf,0xad, +0x88,0xc3,0x9e,0x8c,0xae,0x44,0x2f,0xce,0x40,0x24,0x17,0x52, +0xa9,0x63,0x49,0x43,0x89,0xdd,0xf4,0x57,0xda,0x4c,0xa7,0x57, +0x9f,0x53,0x8d,0x6b,0x5d,0x1b,0xeb,0x72,0xce,0xb0,0xd9,0xa2, +0x94,0x96,0xbb,0xc8,0x27,0x98,0x9b,0x7f,0x1f,0x04,0xc1,0xf9, +0x1f,0x74,0x4b,0x58,0x67,0x9c,0x6b,0x8a,0x4f,0x1d,0x7d,0x99, +0x86,0xcf,0xe1,0x15,0x26,0x63,0x28,0x6d,0x38,0x75,0x88,0xe6, +0x44,0x54,0xac,0x3a,0x91,0x83,0x09,0xbd,0x7a,0x9c,0x71,0x39, +0xa7,0xd7,0x64,0x59,0xe6,0x6c,0xc9,0x76,0x79,0xf6,0x39,0xd6, +0x28,0xe4,0x70,0x47,0xa6,0xcf,0xe8,0x74,0x1d,0xe9,0x3a,0x5a, +0x4b,0xcc,0xea,0x86,0xc3,0x94,0xd5,0x98,0x19,0x09,0x75,0x98, +0xc1,0xe4,0x95,0xe5,0x95,0xe7,0x54,0x10,0x31,0xc2,0x7d,0x79, +0x39,0xde,0x07,0x3e,0x65,0xbe,0xf3,0xc8,0xd1,0x3d,0x46,0xe7, +0x8d,0xd9,0x82,0xcc,0xfc,0xec,0xbc,0x6c,0x1a,0x27,0x46,0x26, +0xe1,0x66,0x3f,0xde,0x04,0x47,0x07,0x7e,0x79,0x71,0x69,0x59, +0x49,0x39,0xcd,0xbd,0x46,0x49,0x96,0xc5,0xae,0x3a,0x73,0x84, +0x3e,0x71,0x26,0x3c,0xf8,0x84,0x70,0x15,0x95,0xa7,0xcb,0xfb, +0x9c,0xfa,0xa2,0xaa,0xe6,0xab,0x2c,0x71,0xfa,0xdd,0xa4,0x1f, +0xa5,0xf0,0x0a,0xbd,0x96,0x44,0x94,0xad,0xf2,0x75,0x0f,0xf8, +0xdc,0x3a,0x5c,0xc2,0x6c,0x94,0xaf,0xfb,0x90,0x2f,0x9f,0x7f, +0x84,0x99,0x35,0xb8,0xba,0x1e,0x96,0x98,0x60,0xef,0xe1,0x7a, +0x9a,0x2b,0xc2,0x0b,0x4c,0x38,0x7f,0xa7,0x87,0x07,0x3e,0x61, +0x2c,0x2a,0x31,0x9b,0xa8,0x68,0x3b,0x57,0x5e,0xa1,0x9c,0xa2, +0x08,0x27,0x31,0xb0,0x64,0x2b,0x5b,0xd5,0x8e,0xcf,0xdc,0x0a, +0x23,0xf1,0x24,0x92,0xc4,0x93,0x30,0x62,0xd9,0x39,0x65,0xa9, +0x55,0xfd,0x82,0x4c,0xbe,0xbc,0x43,0xbe,0x80,0xb9,0xf3,0xe3, +0x98,0xc2,0x32,0x75,0x4b,0x59,0x62,0xae,0x06,0x0a,0x73,0xa5, +0x15,0x0a,0x3f,0x87,0x19,0xc0,0xdb,0xb7,0xa1,0xbb,0x1f,0xbb, +0x6f,0x42,0x11,0x1c,0xc7,0xa2,0x2b,0xb0,0x17,0xf8,0xb0,0xae, +0x13,0xd7,0x5d,0xd7,0x3e,0x82,0xb9,0x8a,0x8f,0x97,0xcc,0xe1, +0x25,0x24,0x6d,0xc7,0x31,0x03,0x8f,0x43,0xc6,0x21,0xac,0x31, +0x84,0x9a,0x03,0x38,0x6a,0x00,0x1d,0x7c,0x67,0xbd,0x55,0x56, +0x68,0xee,0x52,0xa8,0xcb,0xc2,0xe9,0x56,0x98,0x37,0x94,0xf5, +0x80,0x4e,0xa5,0xb2,0xb7,0x2b,0xb6,0xb9,0x70,0xb5,0x28,0x1e, +0x62,0x51,0xbd,0xee,0xe5,0x16,0xa7,0x8b,0xb4,0x7c,0x2e,0x27, +0x63,0xcc,0x9b,0xf5,0x5a,0xf4,0xaa,0x89,0x37,0x19,0x76,0xee, +0x75,0xe8,0xb6,0xa1,0xb9,0xb8,0x1e,0xe6,0x28,0xe6,0x5e,0xe3, +0x63,0x04,0x26,0x33,0xa6,0x6d,0x27,0xba,0x35,0xea,0x14,0xea, +0xe5,0x30,0x6e,0xd1,0x6f,0x41,0xc3,0xae,0x1b,0x0c,0x98,0x6f, +0x43,0x73,0x8a,0x73,0x5a,0x8c,0x8e,0xef,0x82,0x23,0x35,0xbd, +0x18,0xb5,0x19,0xc7,0x99,0x85,0x3d,0xfc,0x72,0x9f,0x0d,0x7b, +0xf3,0xef,0x43,0x20,0xb8,0xf0,0x03,0x61,0xc5,0x14,0xfc,0x18, +0xdc,0xd0,0xb1,0xa6,0xff,0xc4,0x55,0x1a,0xc6,0x2e,0x22,0x45, +0x55,0x74,0x5a,0x56,0x68,0x55,0x98,0xe5,0x2a,0xc3,0x7e,0x88, +0xc3,0xef,0x30,0x0e,0x76,0x52,0x9e,0xe6,0x83,0xa7,0xc7,0x3d, +0x5b,0xbc,0x95,0xe5,0x3c,0xaa,0xa4,0x21,0xbf,0x39,0xab,0x5d, +0x2d,0x8f,0x8d,0x8f,0x96,0xc4,0xc4,0xc7,0xd0,0x10,0x8e,0x1f, +0x90,0x4e,0x0f,0xf8,0x21,0x56,0x41,0x0e,0xbe,0x2e,0x34,0x3e, +0xd4,0x83,0x7e,0x4a,0x45,0x75,0xad,0x09,0xae,0x35,0x29,0xd7, +0x67,0xcb,0xd2,0x4a,0xc8,0x0f,0x8d,0x95,0x63,0xfd,0x60,0x61, +0x38,0x0a,0x37,0xd1,0x9d,0xff,0xa0,0x75,0xb2,0xa7,0x6b,0x48, +0xf1,0xdc,0x7c,0xb7,0xf6,0xb8,0xe9,0xdb,0x36,0x34,0x9e,0xc2, +0x9b,0xa3,0xfd,0xe0,0x66,0x38,0x06,0x65,0x54,0x49,0x64,0x69, +0x54,0x79,0x14,0x3d,0x9d,0xc5,0x9d,0x60,0x40,0x0c,0xae,0x28, +0xe6,0x73,0xaa,0x20,0x66,0x50,0x8c,0x01,0x20,0xe6,0xcb,0x37, +0x4c,0xdb,0x32,0xb0,0x19,0x2c,0x70,0x33,0x1f,0xec,0x17,0x93, +0x23,0x37,0x72,0xa4,0xc4,0xf5,0x73,0xa9,0x0c,0xa8,0xf0,0x61, +0x7d,0x2e,0xbc,0x70,0xfe,0x8b,0x26,0xd7,0x3e,0xf6,0x15,0x7b, +0x7c,0xce,0x03,0x35,0x03,0x68,0x4c,0xe1,0x63,0xf2,0x49,0x7c, +0x69,0x37,0x2e,0x14,0xf5,0x9a,0x3d,0x80,0x25,0xd5,0xf0,0x5a, +0x22,0x44,0x29,0x83,0xb6,0xbc,0x6c,0x92,0x2b,0x83,0x35,0xc3, +0xd4,0xf4,0x34,0x74,0x12,0x60,0x72,0x6d,0x98,0x5f,0x41,0x3c, +0xa5,0xfc,0x29,0x1d,0xd8,0x31,0xbd,0x70,0x54,0xb6,0x90,0x78, +0x54,0xfc,0x04,0x95,0x19,0x34,0x8a,0x5a,0x63,0xb7,0x41,0x34, +0xe0,0xcc,0x6b,0xfd,0x3a,0x1d,0x94,0xc0,0x58,0xd0,0xa0,0xcd, +0x87,0xdc,0xc5,0x38,0x35,0x02,0x53,0x33,0x1b,0x1a,0x79,0x33, +0xf0,0x55,0x3f,0x7e,0x35,0xa9,0x82,0xaa,0xf8,0x11,0x1e,0xa7, +0xd0,0x2f,0x10,0x77,0x9e,0xc0,0xa7,0x44,0xdd,0xa6,0xbc,0x3b, +0x20,0x2a,0x05,0x5d,0x08,0x10,0xc0,0x42,0x48,0x5a,0xc7,0x47, +0xa7,0xb0,0x44,0x03,0xb0,0xcf,0xe6,0x19,0xf2,0x75,0x4b,0x02, +0xee,0x88,0x60,0x9c,0xb8,0xed,0xdc,0x5a,0xf1,0x08,0x5f,0x37, +0x97,0x77,0x04,0x47,0xf9,0x4e,0x91,0xe9,0x15,0xe2,0x36,0x3e, +0x54,0xe5,0xc7,0xf6,0x63,0xd9,0x69,0xde,0xc7,0xdc,0x42,0x7e, +0xa0,0xe3,0x29,0xcf,0x93,0x27,0x7b,0x1c,0xd9,0xfa,0xc6,0xfa, +0x9e,0xe2,0x01,0xba,0x45,0xbe,0x97,0x0f,0x0f,0xe5,0x77,0x18, +0xd0,0xd1,0xc0,0x25,0xf8,0x1c,0xac,0xd2,0xc0,0x26,0x9c,0x03, +0x4d,0x1a,0xb8,0x0a,0x9f,0x85,0x25,0x1a,0x24,0x75,0x50,0xd9, +0x82,0xf5,0xfa,0xb2,0xbc,0x41,0xcc,0x7d,0x4f,0x51,0x59,0xe1, +0xd4,0x99,0x56,0x8c,0xaa,0x87,0xa8,0x99,0xcf,0x20,0x70,0x40, +0x8a,0x9f,0x9a,0x9b,0x92,0x93,0x9c,0xa5,0x4d,0xdc,0x64,0x70, +0xe4,0xe9,0x33,0x41,0xf4,0x32,0xf9,0x8a,0xfe,0x5a,0x12,0x6a, +0x8f,0x32,0xf0,0xe2,0xe0,0xd7,0x9f,0xf6,0x7f,0x6b,0x5f,0xc1, +0x86,0xfb,0x85,0xfa,0x05,0xfb,0x3b,0xc7,0xd8,0xc7,0xd9,0xc5, +0x0d,0x74,0x0f,0x5c,0xec,0x99,0xb0,0x3f,0xc7,0xba,0x3b,0xb8, +0xd8,0x3b,0x3b,0x85,0xe4,0x85,0xe6,0x86,0xe4,0xd6,0xd6,0x5c, +0x68,0xa8,0x6a,0x74,0xac,0x66,0xbd,0x1c,0x5c,0x1c,0x5d,0x5c, +0xc3,0xb2,0x43,0xb3,0x42,0xb3,0x9d,0x9c,0xd9,0x56,0xdb,0x06, +0xdb,0x5a,0xbb,0x80,0x80,0x80,0xc0,0x80,0xd3,0xb4,0xc4,0xcf, +0x4f,0xe2,0x27,0x4c,0x32,0xb9,0x96,0x70,0x2d,0x75,0x3c,0x5d, +0xd9,0xc4,0x44,0xd5,0x7a,0xaf,0x2b,0x2d,0xbb,0x47,0xc2,0x47, +0xa0,0xa3,0x87,0xb5,0xb3,0x1d,0x3d,0x6a,0x7d,0xc1,0xcd,0x45, +0xe0,0x16,0x12,0x64,0x2a,0x32,0xa2,0xf2,0xcd,0x79,0x3d,0xd4, +0x64,0x43,0xc5,0x78,0x9f,0xe3,0x79,0xab,0x3a,0x71,0x75,0x63, +0x59,0x63,0x49,0x37,0x5d,0x87,0x49,0xf2,0x35,0x03,0x20,0xe7, +0xe3,0x66,0x2b,0x06,0x8f,0x36,0xc3,0x51,0x0a,0x8f,0xee,0x60, +0xe0,0xa8,0x35,0x1e,0xa5,0xa0,0x50,0x4e,0x31,0xb9,0x05,0x59, +0x05,0xe9,0xb9,0xce,0x19,0x2c,0xd8,0xb6,0xe3,0x7f,0xb4,0x6b, +0x5a,0xe2,0xd7,0x96,0x60,0x41,0x39,0x86,0xe7,0x06,0x66,0x9e, +0x4e,0x3b,0xad,0x8c,0x25,0x16,0x3f,0x2d,0xed,0xa0,0x70,0x78, +0x9c,0x09,0x0f,0x08,0xf6,0x0b,0xf4,0xa3,0x31,0x9b,0x3a,0x97, +0x71,0xa6,0x20,0xb8,0x28,0x22,0x5b,0x19,0xe7,0xca,0x5f,0x63, +0x6a,0xb8,0x7a,0x97,0x09,0x28,0x98,0x7e,0x05,0x0b,0xf8,0xdc, +0x97,0x70,0x80,0x91,0xd7,0x77,0x73,0xf5,0x94,0xbc,0x7e,0x03, +0xc3,0xd5,0x1b,0xca,0xeb,0x29,0x25,0xae,0xb2,0x89,0x39,0x76, +0xe6,0x68,0xd4,0xa1,0x68,0xfa,0x01,0xe8,0xf5,0xa1,0xde,0x6d, +0x70,0xe8,0x43,0x87,0x37,0xc0,0x14,0x74,0xd1,0x74,0x12,0x56, +0xc2,0xfc,0xf7,0x7b,0x36,0x8f,0xea,0x69,0x61,0x00,0xf9,0xd8, +0x61,0x72,0x1f,0xe7,0x83,0x58,0x0d,0xf5,0x50,0x17,0xf4,0xf6, +0xa3,0x9d,0x11,0xd8,0x1d,0x40,0x5d,0x23,0xd0,0xdd,0xc8,0x3f, +0x1a,0x73,0x30,0x76,0x5f,0x5c,0x0a,0xc9,0x42,0x54,0x33,0x60, +0x5d,0x16,0x2c,0x2f,0xa5,0x41,0x47,0xf6,0x80,0xd1,0x44,0xed, +0x57,0x34,0xbf,0xa4,0xe2,0xb0,0xcb,0x06,0x0f,0x6e,0xc0,0x95, +0xdd,0xe6,0xec,0xd7,0xb0,0xb9,0x1d,0x4c,0x13,0x81,0xe4,0x0a, +0x4b,0x29,0x94,0xc4,0xe0,0xb6,0xb0,0xd5,0x22,0xf5,0xa8,0xd0, +0x60,0x7d,0xe1,0x6e,0x2a,0x57,0x93,0xa0,0xee,0x37,0xcf,0xd7, +0xbf,0x93,0x2e,0xce,0x01,0x3a,0x09,0xd6,0xc2,0x2d,0x01,0x9a, +0x51,0x78,0xe9,0x1d,0xe6,0x20,0x06,0xdc,0xe2,0xbf,0x8b,0x41, +0x04,0x0e,0x88,0xbe,0xe4,0xc3,0xc7,0xaf,0x30,0xb8,0xea,0x4b, +0x58,0x45,0x29,0xc9,0xee,0xca,0xcc,0x18,0x78,0xa6,0x1b,0x9f, +0x79,0x43,0x7b,0x3f,0xfa,0x93,0x8f,0x57,0x4d,0x3f,0x45,0x32, +0xfa,0x51,0x74,0x40,0x55,0x70,0x38,0x80,0x81,0x66,0x10,0xb8, +0x13,0x6d,0xcd,0xc1,0x76,0x2b,0xc6,0x1b,0x71,0x53,0x7d,0x58, +0xf0,0x00,0xbc,0x3a,0xd1,0xeb,0x6d,0x90,0x76,0xa1,0xf4,0x36, +0x78,0x82,0x2a,0x7a,0x5e,0x23,0x83,0x4d,0xc7,0x81,0x2d,0xc1, +0xf1,0xc5,0x43,0x7c,0xee,0xe0,0x06,0xe6,0x10,0xfa,0xdf,0xe4, +0xe3,0xc1,0xa5,0xcc,0x30,0xbe,0xab,0xc3,0x6f,0xda,0x41,0xce, +0x64,0x93,0x2c,0x63,0x89,0x15,0x03,0xeb,0x36,0xe2,0x3a,0x8a, +0xa3,0x16,0xe3,0x96,0x0f,0x61,0x0b,0x25,0x4f,0xc4,0x97,0x99, +0x8b,0x98,0xad,0xc7,0xbf,0x28,0x5f,0x4b,0xe0,0xbb,0x0d,0x94, +0x63,0x0e,0xbe,0xa9,0x78,0xf1,0xc7,0x0c,0x7c,0x5f,0xa7,0x80, +0xef,0xf0,0x11,0xb7,0x9a,0x39,0x19,0xe6,0x1e,0xe6,0x1e,0x4e, +0x83,0xdf,0xb7,0xc3,0x2b,0x41,0x55,0x83,0x58,0xd9,0x4b,0x3a, +0xc4,0xc1,0x9e,0xe5,0x1b,0x05,0x19,0x86,0x98,0x84,0x65,0x68, +0xb1,0x9d,0x99,0xdd,0x39,0xdd,0x79,0x34,0xd6,0xe1,0x0b,0xfc, +0x7c,0x75,0xde,0x8f,0x54,0x4f,0x7e,0x61,0x97,0x18,0xfa,0xf9, +0x35,0xd9,0x35,0xd9,0x17,0x72,0x68,0xd8,0x3b,0x40,0x22,0x52, +0xce,0x4c,0x44,0x7a,0x07,0xde,0x96,0x4b,0xf0,0x6d,0x98,0x43, +0x59,0xed,0x38,0x7e,0xf8,0x80,0x49,0xb5,0x09,0x9b,0x97,0x99, +0x9b,0x99,0x4b,0x22,0xd2,0xd8,0xf0,0x04,0x0c,0xf4,0xe3,0x00, +0xd8,0xdb,0xf3,0xcb,0x4a,0x48,0x44,0xaa,0xa0,0xb9,0x17,0x29, +0xc9,0xd2,0xd8,0x15,0x11,0x47,0x68,0xb5,0xc8,0xf0,0x10,0x75, +0xe1,0x5a,0x45,0x44,0xfa,0x88,0xfa,0xb8,0xea,0xc2,0x17,0x99, +0x8a,0x88,0x04,0x73,0x12,0x60,0x3d,0xfd,0x2a,0x7c,0x4f,0x42, +0xd2,0x22,0x12,0x92,0x16,0xa1,0x90,0x84,0xa4,0x45,0x1f,0xf2, +0x61,0x17,0x0e,0x92,0xf0,0xb3,0xcb,0xd3,0x7d,0x85,0xb1,0xa8, +0xd4,0x7c,0xa4,0xb2,0xa5,0xaa,0xb4,0x5c,0x39,0x25,0x35,0xe1, +0x6c,0x5a,0x0c,0x2c,0x22,0xd1,0xa7,0x0d,0xe7,0xdd,0x0a,0x4f, +0x8d,0x96,0x46,0x44,0x28,0x87,0x87,0xc7,0x26,0xf0,0xb2,0xcb, +0x52,0xcf,0xf5,0x09,0x14,0x6f,0x7a,0x7b,0x91,0x53,0x66,0x5a, +0x8c,0xb6,0x72,0xaf,0x3f,0x30,0xb2,0xc1,0x17,0xaf,0x80,0x69, +0x3b,0x9a,0xd6,0x13,0xa7,0xac,0x8e,0xfb,0xeb,0xc0,0xb8,0x0d, +0x8d,0x5b,0x0c,0x6c,0xd0,0xca,0x0a,0xac,0x9c,0x70,0x3f,0xaa, +0xc3,0x7e,0x47,0x74,0xb2,0x04,0xa7,0xe3,0x7c,0x28,0x84,0x10, +0xe6,0x6e,0x7d,0x65,0x5b,0x32,0x71,0xe9,0xcb,0x8f,0x50,0xb6, +0x39,0x81,0xdd,0xa2,0x49,0xaa,0x2e,0x3f,0xaf,0x4e,0x3c,0xc8, +0x37,0xcb,0xe1,0xed,0xd7,0xe1,0x07,0x47,0x27,0xe4,0x8a,0x61, +0x1e,0xc6,0xf1,0xf7,0xc7,0xd8,0x6d,0x71,0x14,0x61,0xf0,0x69, +0x06,0x17,0xd4,0xc1,0x02,0xaa,0xcb,0x89,0xa9,0x83,0x85,0x4e, +0x7c,0x3c,0xe0,0x48,0x10,0xea,0x82,0x46,0x3e,0xec,0x5f,0x0c, +0x0b,0xed,0x71,0x21,0x05,0xbe,0xe8,0xcb,0x5c,0xcd,0x9a,0x2a, +0x1c,0xae,0x98,0x70,0xbb,0xed,0xf5,0x7e,0x40,0x4e,0x07,0x7b, +0x34,0x57,0xb3,0x40,0xaf,0x6c,0xac,0xb6,0xbb,0xad,0xba,0x87, +0x6e,0x93,0x2f,0x31,0x87,0xfb,0x7c,0x77,0x07,0x6b,0x17,0x9d, +0x93,0xe6,0xe5,0x56,0xe7,0x6c,0x6b,0x1d,0x3c,0xd8,0x1a,0xf7, +0x06,0xcf,0x16,0x2f,0xab,0xd3,0x46,0xa1,0x3a,0xe1,0x34,0x11, +0x4c,0x14,0xd3,0x2b,0x9f,0xd3,0xcf,0x87,0x85,0x89,0x30,0x3f, +0xf9,0x83,0x54,0xff,0x1e,0x36,0x18,0xb5,0xb1,0x23,0x0e,0x03, +0x84,0xe9,0x46,0xbc,0x87,0x40,0x49,0x13,0x81,0x12,0x13,0x7c, +0x67,0xcc,0xf1,0xf5,0xe4,0x07,0x0d,0xb9,0x83,0x47,0x51,0x87, +0x9f,0x6b,0xc0,0x83,0x43,0x54,0x6b,0x41,0x6e,0xbd,0xf8,0x06, +0xb7,0xbd,0x5f,0xbe,0xfd,0x22,0x5f,0xe9,0xba,0x6c,0x29,0x63, +0xc2,0xad,0xe8,0xc1,0xfd,0x37,0xc1,0xa4,0x07,0x4d,0xc6,0xb5, +0x35,0x50,0xdf,0x04,0xf4,0x0f,0xf1,0xb9,0xb5,0xdf,0x30,0xf0, +0x02,0xda,0x50,0x9a,0x05,0x01,0x23,0xa2,0x46,0xaa,0x25,0xa3, +0xb0,0x4d,0x0c,0xf3,0xf9,0x26,0x85,0x3c,0x5c,0xeb,0xc2,0xf7, +0x8d,0x4a,0x29,0x13,0x43,0x3a,0x86,0xbf,0xc4,0x47,0x5e,0x80, +0x81,0x91,0x86,0xa8,0xd5,0x9a,0x37,0x78,0xbd,0xea,0x0d,0x78, +0x5a,0x40,0xa0,0xed,0x04,0x73,0xa1,0x0f,0x5e,0x90,0xeb,0xe2, +0x0b,0x03,0xae,0x7c,0xf8,0xac,0x87,0xc1,0x4f,0x26,0xe1,0x13, +0x8a,0x4b,0x93,0xe7,0x30,0x87,0x1a,0xb4,0xda,0x8d,0x7b,0x27, +0x6f,0x36,0xbd,0x53,0xf2,0x1e,0xdd,0x89,0xa0,0x07,0xed,0xfc, +0x40,0x35,0x57,0x15,0x23,0x4d,0xf3,0x41,0x87,0x51,0xb7,0x31, +0xc3,0x53,0x6c,0xdd,0xb1,0x66,0xd5,0x5e,0x6d,0x1d,0x83,0x83, +0x66,0xeb,0x9c,0xab,0x0c,0x48,0x92,0x76,0xaf,0x67,0x7c,0x78, +0xc0,0x60,0xd2,0xf4,0xae,0x0d,0x2d,0xbf,0x0d,0x86,0x4c,0x58, +0x46,0x54,0x7c,0x04,0xf9,0xc7,0xc6,0xf6,0x83,0x66,0x0f,0x6a, +0x5e,0xa7,0x06,0x52,0xfa,0x52,0x1b,0xd2,0x03,0x3a,0xd8,0xcd, +0xfe,0xf8,0x6a,0xc4,0xe6,0xb8,0x6c,0x53,0xb6,0x4e,0xda,0x43, +0x92,0x44,0x5a,0x05,0x8d,0x4c,0xe0,0x18,0xdf,0x55,0x6d,0x8b, +0xd1,0x5e,0xeb,0x6a,0x53,0xf6,0x8b,0x81,0x5b,0x63,0x29,0x97, +0xe8,0x54,0xb4,0x1b,0x82,0xd7,0xa8,0xe4,0xc4,0xb3,0x49,0xb1, +0x22,0x58,0x82,0x4f,0xd4,0x35,0xf3,0x94,0x64,0xb1,0xdc,0x41, +0x06,0x8e,0x8d,0xe1,0x31,0xf8,0x52,0x75,0x7a,0x18,0x97,0xc8, +0x0e,0xab,0x4d,0x1f,0xc6,0xf5,0x9a,0x9c,0x7c,0x8c,0x78,0x82, +0xe9,0xad,0xb2,0x0a,0x12,0xe1,0x86,0x87,0xf9,0x65,0x78,0x82, +0x41,0x99,0x0e,0xbc,0x3e,0xbd,0x68,0x44,0xb6,0x08,0x96,0x51, +0x78,0x0f,0x05,0x33,0x11,0xce,0x7e,0x83,0xa8,0xdf,0x99,0xd7, +0xf2,0x28,0xc2,0x35,0xea,0xf0,0x21,0x71,0x31,0xfe,0x63,0x58, +0xb1,0x79,0xe7,0x4f,0x8b,0x13,0x99,0x03,0xd4,0xc9,0xc8,0xe4, +0x73,0x62,0xd0,0x01,0x9a,0xbb,0x2d,0x3f,0x4e,0xb8,0x99,0xc3, +0x0f,0xc7,0x27,0x74,0x76,0xe0,0x3a,0xf5,0x4a,0x13,0x16,0x0e, +0x5d,0x9d,0x82,0x39,0x59,0xb0,0x90,0xfe,0x0c,0xf5,0x28,0x95, +0x32,0x9f,0x21,0xd1,0x7b,0x54,0x4b,0x5e,0x5e,0x87,0x18,0x16, +0xf1,0x0d,0x0a,0x78,0xd3,0x43,0x32,0xd1,0x2c,0x05,0x9c,0x85, +0x1e,0x83,0x7c,0xbc,0x01,0x7c,0x3e,0xd2,0xb8,0xf0,0xb7,0xd4, +0x70,0x47,0xb3,0x19,0x7c,0x86,0x9c,0x7c,0x86,0x2f,0x57,0xc7, +0xd5,0x7f,0x4a,0x98,0x7c,0xe1,0x30,0x09,0x8b,0x9c,0x91,0x2a, +0x83,0xcf,0x91,0xde,0xcf,0x91,0x08,0xa7,0xcd,0x7d,0xc3,0xdc, +0xe8,0xbd,0x39,0x7a,0xe5,0xba,0x71,0x2d,0x7b,0x74,0xef,0xeb, +0x87,0x97,0xaa,0xd0,0xf8,0xe4,0xe7,0xe0,0x31,0x88,0x1e,0xf7, +0xd5,0x76,0x60,0x9d,0x3e,0xd4,0xad,0x93,0xf3,0x75,0x39,0x2d, +0x0a,0x85,0x87,0xf1,0x35,0x0d,0xdc,0x63,0x54,0xaa,0xcf,0xde, +0x2b,0x1f,0x29,0xee,0x2a,0xa2,0x31,0x99,0xbb,0x05,0x97,0xf9, +0x59,0x51,0x59,0x51,0x99,0x51,0x35,0xbd,0xac,0x79,0x95,0x66, +0xb5,0x6e,0x09,0x0d,0xbe,0x43,0x94,0x7c,0x00,0xb7,0x33,0x57, +0x2a,0xee,0xd4,0xdf,0xeb,0xa4,0xbf,0xa0,0xdc,0xad,0xbb,0x03, +0x3a,0x7d,0x14,0x78,0x28,0x1d,0x5f,0x64,0xde,0xe6,0x8c,0x77, +0xf2,0xe5,0xc6,0x26,0x0c,0x67,0xbc,0x55,0x6e,0x4c,0x71,0x2e, +0x6b,0x98,0x16,0xcb,0x66,0xd3,0x1a,0xbd,0xe1,0x73,0xac,0xd3, +0x90,0x65,0x8f,0x6d,0x23,0x3d,0x6d,0x81,0x47,0x98,0xb1,0xde, +0xb6,0xfe,0xca,0x3e,0x83,0x52,0xd6,0xc3,0xdc,0xca,0x54,0xdb, +0x9c,0xe6,0x52,0x80,0xc7,0x94,0x99,0x17,0x99,0xe4,0x1a,0x4e, +0xe6,0xb0,0x41,0x17,0x7d,0xbb,0xbd,0xda,0x69,0x2c,0x0f,0x61, +0x72,0x8c,0xd3,0x2c,0x93,0x75,0x26,0xd3,0xd8,0xe8,0xe1,0x88, +0xae,0xe0,0x4e,0x92,0x4c,0x3b,0x70,0x26,0x0c,0xd8,0x8e,0xa3, +0x2d,0x5c,0x51,0xc1,0x2b,0x68,0xa2,0x01,0x26,0xf2,0xdd,0x18, +0xa6,0xc1,0x9d,0x1b,0xc7,0x60,0x6a,0x7a,0x81,0x2c,0x87,0xc8, +0xf5,0xfa,0x23,0xec,0xf2,0xb4,0x0e,0xec,0x9c,0x5e,0x38,0x42, +0xb0,0xcb,0x2b,0x14,0x7e,0xfa,0x1b,0xec,0xd2,0xf6,0x75,0xda, +0x8c,0x00,0xeb,0x09,0x76,0xb9,0x8d,0x72,0x06,0xe4,0xda,0x28, +0x27,0x72,0xd3,0xe2,0xda,0x99,0xbb,0x93,0x37,0xaf,0x4f,0xdd, +0x33,0x6e,0x64,0xf7,0xae,0xdb,0xb2,0x63,0xed,0x21,0x1a,0x9f, +0x87,0xf9,0x10,0x3d,0x84,0xd1,0x30,0x4f,0x15,0xe7,0x61,0xbf, +0x2e,0xf4,0xe3,0x7c,0xfc,0x87,0x0e,0xe7,0x42,0xe1,0x4b,0xeb, +0x71,0xcb,0x3e,0x54,0x3d,0x51,0xa5,0xcd,0x4e,0x96,0x4d,0x54, +0x8c,0x57,0xd1,0xf8,0xed,0xc4,0x30,0xa7,0xa7,0x33,0xc5,0xa9, +0xcb,0x45,0xfc,0x2b,0x8d,0x97,0x5a,0xc6,0x3b,0x68,0xb8,0x35, +0x4c,0xe1,0x69,0xe4,0x33,0x97,0x3c,0x26,0xed,0x7b,0x1d,0x89, +0x44,0x8d,0xeb,0x8e,0x37,0x69,0x94,0xd3,0xb9,0x58,0xc5,0xc8, +0x75,0xbe,0xa5,0xb2,0x53,0x78,0xdc,0x11,0x4a,0xae,0x83,0x5b, +0x19,0x4e,0x87,0x44,0x5e,0x1d,0x4a,0xe9,0xa7,0xc3,0xb0,0x99, +0x19,0x94,0xef,0x48,0xe1,0x93,0xec,0xf4,0x0d,0x6e,0x27,0x7e, +0xa6,0xa8,0xc1,0x95,0xa7,0x57,0x1c,0x4f,0x63,0xcf,0x9c,0x8c, +0x38,0x19,0x72,0x8a,0xf8,0x77,0xf9,0x4e,0x18,0xc7,0xe7,0xa8, +0x68,0xf9,0xcb,0xfa,0x9c,0x90,0x6f,0xbf,0x03,0x17,0x19,0x63, +0xa4,0x79,0xb1,0x26,0x0b,0xad,0x13,0x30,0x77,0xa0,0x0c,0x9e, +0xa6,0x53,0xa8,0x0a,0x7c,0x1a,0x5e,0x30,0x80,0x16,0xf5,0xc2, +0x31,0x16,0xcf,0x74,0xa2,0xa8,0xd7,0xea,0x3e,0x0d,0x12,0xce, +0x9f,0x91,0x5f,0xba,0xce,0x5d,0xa2,0xe4,0x97,0x50,0x8f,0xb9, +0xc9,0x5d,0x3a,0xc4,0x37,0x9e,0xb7,0x4f,0x7e,0xe9,0x0e,0x5f, +0xc6,0x47,0x23,0xc6,0xac,0x4c,0xb5,0xd4,0x24,0xdb,0xc3,0x84, +0x1d,0x0a,0x9e,0xf2,0x6e,0xf1,0xa3,0x95,0xde,0x93,0xb5,0x13, +0xd9,0x5e,0x22,0x3a,0x1b,0x3f,0xdd,0xc1,0x1c,0xa1,0xdc,0x23, +0x53,0xeb,0xc4,0xf0,0x25,0x3c,0x49,0xb2,0xee,0xc3,0xf2,0x75, +0x5f,0xf1,0x63,0xd0,0xc6,0x10,0x9f,0xc0,0x0d,0xeb,0xea,0x8d, +0x58,0xd8,0xff,0xfd,0x24,0x30,0x49,0x10,0x40,0x3f,0xc4,0xef, +0xa8,0xc3,0x15,0x7e,0x63,0xa2,0x77,0xa8,0xb6,0xac,0x6c,0x62, +0x01,0x26,0x0a,0x0b,0xd0,0xe0,0x0a,0x19,0x1c,0xc0,0x51,0x18, +0xe0,0xe3,0x1c,0x7c,0x8a,0x91,0xcf,0xd3,0x81,0xad,0xd3,0x8b, +0x46,0x89,0xde,0xaf,0xa6,0x08,0x8e,0x16,0xfc,0xbc,0x56,0x83, +0xbf,0x2a,0xbb,0x02,0x67,0x66,0x2e,0xc6,0xe9,0x61,0x98,0x26, +0x56,0x78,0x04,0x6e,0x33,0x7d,0x68,0xcf,0x9f,0xaa,0x1b,0x6b, +0x1a,0x6c,0xb3,0xad,0x67,0x6d,0x5d,0xad,0xdc,0xcd,0x3d,0xe9, +0x1e,0x4c,0xbf,0xc4,0x3d,0x0d,0x99,0xd3,0x2e,0x98,0x09,0xed, +0x2a,0xd8,0x6f,0x0c,0xfd,0x6a,0xf2,0x67,0x8c,0x38,0x73,0x3e, +0x8a,0xf4,0x70,0x83,0x25,0xee,0xb7,0x2d,0x34,0x62,0x47,0x73, +0x47,0x73,0x47,0xf2,0x69,0xcc,0x1a,0x6f,0xe5,0x3c,0xac,0xc7, +0x61,0x84,0x9f,0x15,0x93,0x19,0x93,0x11,0x53,0xd9,0xc1,0x1a, +0x97,0x1d,0x2d,0x33,0xcc,0xf6,0xb4,0x60,0x5b,0xc2,0x3b,0x43, +0x9a,0x4e,0xd3,0xf2,0xed,0xd4,0x5b,0x55,0xf7,0xce,0xdf,0xae, +0x25,0x19,0x05,0xb7,0x88,0x91,0x7f,0x33,0xc4,0x7d,0x43,0xad, +0x9c,0xa7,0x21,0xff,0x66,0x9c,0x0f,0xed,0x48,0xe0,0x6e,0x1a, +0xe5,0xe0,0x6b,0xe7,0x67,0xed,0x4f,0xe3,0xdf,0x28,0xe2,0xc3, +0x93,0x99,0x09,0xce,0x43,0x9d,0x2f,0xf7,0x30,0x67,0x38,0x0f, +0x15,0xb9,0x07,0xc1,0x17,0x4e,0xdc,0x1e,0xe6,0x7a,0xdb,0x54, +0xf7,0xc8,0x80,0x7d,0x3d,0x7b,0xe0,0xe8,0x56,0xad,0x75,0x86, +0x34,0x2e,0x79,0x13,0x72,0xfa,0x30,0xe7,0x16,0xb7,0x13,0xd4, +0xa6,0x27,0x50,0x0d,0x3e,0x39,0x88,0xfd,0x46,0xd0,0xbf,0x5b, +0xfe,0x8c,0x21,0xe7,0x44,0xe1,0xb2,0x13,0xb8,0x45,0x1f,0x8f, +0x98,0x15,0xe8,0xb3,0xe3,0xf9,0x63,0x05,0x63,0xc4,0x30,0x9b, +0xc7,0xdb,0x38,0x37,0xab,0x09,0xf8,0x5a,0x7e,0x90,0xff,0xe6, +0x85,0xbb,0x75,0xb7,0x9a,0x68,0x98,0xea,0xa7,0xe4,0xdf,0xc0, +0xc7,0xcc,0x66,0xd4,0x7b,0x5f,0xe1,0x0e,0xc0,0x60,0x33,0x1a, +0x50,0x90,0xbc,0xf8,0x7d,0x30,0xdd,0xcc,0xc7,0xf5,0xc8,0x31, +0xa3,0xc1,0x57,0xbd,0xdb,0x7d,0xab,0xba,0x08,0x6f,0x47,0x4a, +0x0c,0xb3,0x69,0xf9,0x2e,0xf4,0x62,0x6e,0x71,0x6e,0x07,0xf9, +0x72,0x37,0x62,0xae,0x6e,0xbb,0xe4,0x6e,0x84,0xc8,0xd5,0x8a, +0xd7,0xb4,0xa5,0x0e,0x62,0x2a,0x2c,0xd4,0xc4,0xab,0xb8,0x14, +0x4a,0x34,0xb1,0x04,0x9f,0xd1,0x23,0xa9,0x4a,0x1c,0x2e,0xa3, +0x0a,0x74,0x78,0xf0,0x0c,0xd5,0x59,0x58,0xd4,0x29,0x86,0x30, +0xe8,0xb8,0x88,0x1d,0x7c,0xfc,0x07,0xe8,0x32,0xc6,0x6d,0x5a, +0xad,0x5a,0x35,0x2e,0x26,0xec,0x98,0xd3,0xa0,0x5d,0xbf,0x25, +0x2d,0x45,0x2b,0xc6,0xa8,0xf3,0x70,0x9f,0x8a,0xa2,0xee,0x33, +0x65,0x3f,0x65,0x3e,0x64,0x4a,0x83,0x66,0x12,0xe3,0xba,0xd1, +0xf4,0xf0,0x71,0x95,0x6e,0x1b,0xf6,0xea,0xf5,0x81,0x77,0x6a, +0x3e,0xa1,0x71,0x9f,0xdc,0x87,0x81,0xfe,0x56,0x30,0x86,0x67, +0x61,0x01,0x64,0xe8,0x57,0xb3,0xc4,0x07,0xc6,0xe0,0x41,0x7c, +0x12,0xfb,0xec,0x69,0x3c,0x60,0xc9,0xdc,0x9a,0xcd,0xcf,0x74, +0x4a,0x58,0x27,0x9c,0x6b,0xa2,0x48,0xda,0x68,0x45,0xe1,0xff, +0x5d,0x06,0xdc,0x35,0xb1,0x0a,0xbc,0x09,0xdc,0x4f,0xd3,0xfa, +0x28,0x8a,0x8f,0x4a,0x21,0xc8,0xdb,0x8f,0x4f,0x8a,0x06,0x6c, +0x79,0xf7,0xe0,0xb9,0x42,0x32,0xdc,0x72,0x81,0xf4,0x7b,0xf9, +0xda,0xf1,0x9f,0x96,0x6a,0xa0,0x94,0x2f,0x5b,0xba,0x9e,0x19, +0x27,0xbf,0x25,0xf9,0x67,0xf3,0x0b,0x04,0x10,0xa8,0x82,0x81, +0xfc,0xc0,0xb3,0x41,0x92,0x20,0x11,0xfa,0x6a,0x80,0x17,0x15, +0x84,0xf6,0x87,0x49,0x56,0xb5,0x15,0x77,0x77,0x90,0x44,0x74, +0x03,0xec,0xbc,0x03,0xeb,0x52,0x40,0x9f,0xa4,0xa2,0x29,0x68, +0x70,0x1b,0x45,0xb0,0x1f,0x8f,0x35,0x13,0xeb,0xd9,0x07,0xfb, +0x0f,0x83,0x72,0x10,0xd8,0xd2,0xe0,0x0a,0x2b,0x19,0x87,0x71, +0xb3,0x09,0xb3,0x4e,0x2b,0x17,0xb6,0xc7,0xb0,0x59,0xb7,0x59, +0x9d,0x56,0xe2,0x02,0x20,0x8a,0x81,0x09,0xdc,0xcd,0x4f,0xce, +0x48,0xce,0x48,0xca,0xe8,0x2b,0x61,0x83,0x6a,0x82,0xce,0x05, +0x9c,0xa3,0x61,0xd3,0x00,0x56,0x53,0x39,0x15,0x59,0x15,0xe9, +0x95,0x7a,0x39,0xac,0xcb,0x0e,0x83,0x7d,0x87,0xd4,0xdb,0x6d, +0xd9,0xc6,0xda,0xda,0xa6,0x73,0x2d,0xf4,0xfb,0x54,0x9e,0x57, +0x9e,0x67,0xae,0xa7,0x53,0x12,0x1b,0xe9,0x73,0xc6,0x27,0xdc, +0x97,0xa8,0xd2,0xf4,0xdc,0x89,0x1b,0xf0,0x46,0x2f,0xbe,0x71, +0x73,0xe6,0xf3,0x06,0xc5,0x19,0x72,0x09,0x4c,0x76,0x65,0x46, +0x45,0x5a,0xa5,0x6e,0x16,0xeb,0xb5,0xdb,0x66,0x9f,0xb6,0x5a, +0x97,0x13,0x7b,0xae,0xa6,0xbc,0xa1,0xa4,0x91,0xfe,0x9c,0x2a, +0x73,0x2c,0xb6,0x2f,0xb1,0xe9,0x2b,0x55,0xcc,0x79,0x5e,0x31, +0xa7,0xd9,0x00,0x85,0x0f,0xa6,0xc7,0x18,0xee,0x0a,0x9c,0x22, +0x89,0xc2,0x3a,0x7e,0xae,0x3e,0x0f,0x96,0x50,0x5d,0x05,0xb9, +0x9d,0x62,0x6e,0x33,0x7e,0x3b,0xfd,0x24,0xb1,0x09,0xee,0x3a, +0xb3,0x1b,0x93,0x08,0xd0,0x4c,0xc2,0x45,0xcc,0x0e,0x4c,0xba, +0xcf,0x7f,0x64,0xea,0x97,0x89,0xa9,0x07,0x2f,0x96,0x2f,0x9b, +0x2e,0x5f,0xad,0xc3,0x4d,0x0c,0x1f,0xa7,0xd4,0xb9,0xf3,0x0c, +0x56,0x80,0x21,0x54,0x50,0xf2,0x95,0xb8,0x80,0x18,0xad,0x36, +0x6c,0x9b,0x75,0xb0,0xab,0x29,0x02,0x33,0x0a,0x18,0x30,0x81, +0x0a,0x34,0xe1,0x4f,0x7b,0x03,0x3b,0x63,0xc0,0xb6,0xbf,0x35, +0x60,0x1d,0x85,0x01,0xcb,0x79,0xc3,0x1c,0x8f,0xcf,0x6d,0x47, +0x1f,0x06,0x7d,0xc9,0x70,0xbe,0x04,0xe2,0x25,0xcb,0xde,0x63, +0xcc,0xd0,0xf0,0x18,0x2e,0x25,0x0e,0x84,0x6e,0x30,0x64,0x6b, +0x2e,0xd4,0xb4,0x5e,0xe8,0xa1,0xe5,0xf5,0x63,0xb2,0x25,0xff, +0x8f,0xb5,0xf7,0x8c,0x8e,0xe2,0xd8,0xda,0x46,0x31,0x30,0xdd, +0x0d,0xc6,0x04,0xdb,0x85,0x0b,0x61,0x4b,0x04,0x91,0xb3,0x48, +0x22,0x23,0x89,0xa0,0x9c,0x47,0x39,0xe7,0x0c,0x12,0x02,0x44, +0x16,0x12,0x22,0x08,0x09,0xe5,0x1c,0x51,0xce,0x39,0xe7,0x2c, +0x72,0x36,0xc9,0x36,0xc1,0x18,0xdb,0x18,0x87,0x03,0xb6,0xd9, +0xad,0xb3,0x5b,0x7e,0xbf,0x1a,0x7c,0xce,0xb9,0xef,0x5d,0xef, +0xbd,0xf7,0xfb,0xf1,0x5d,0xcd,0x5a,0x33,0xbd,0x46,0x3d,0xdd, +0xbd,0xab,0x6b,0x3f,0xfb,0x79,0x76,0xed,0xaa,0xe6,0xab,0xbe, +0x2c,0x7d,0x96,0xfb,0x4a,0x18,0x59,0x84,0x1a,0x44,0xab,0x71, +0x57,0xaf,0xf9,0xb0,0x80,0xe5,0x72,0x48,0xe4,0xaa,0xdc,0xea, +0x3d,0x9b,0xfd,0x04,0xe9,0x30,0x57,0x5b,0x54,0x59,0x56,0x51, +0xed,0x58,0x4f,0x6d,0xe4,0x66,0x8e,0x3a,0x1e,0x95,0xf6,0x34, +0x39,0x2e,0x39,0x2e,0x29,0x4e,0xc0,0x2c,0xf1,0x0a,0xe4,0xf1, +0xc9,0xa7,0x92,0x22,0x92,0x23,0x04,0xa9,0x01,0x9d,0x09,0xd8, +0x83,0x2d,0xda,0xf3,0x5d,0xd3,0xd9,0x86,0x1b,0xdb,0xd8,0x00, +0x3b,0x48,0xb0,0x93,0xaf,0xab,0xbb,0x47,0xbd,0x1f,0xad,0xa9, +0xab,0x6e,0xce,0x63,0xd1,0xe7,0xc2,0x32,0x12,0x54,0xe3,0xd1, +0xec,0x5e,0xed,0xee,0x43,0xeb,0x3d,0xcb,0xdc,0x4b,0x5c,0x85, +0xf9,0x52,0x02,0x69,0x15,0x55,0xed,0x87,0xc4,0x0f,0xa4,0x74, +0xe9,0x03,0x5e,0x74,0x84,0x3b,0x64,0xb5,0xa4,0xfa,0x82,0x17, +0x55,0x19,0x60,0xad,0x90,0x54,0x7f,0x60,0xa6,0x28,0x29,0x9e, +0xac,0xdc,0xce,0x63,0x74,0x10,0xae,0xd3,0xc2,0xc9,0xca,0x1d, +0xd6,0xb2,0x6f,0x40,0xa5,0x18,0x4c,0x20,0x59,0x09,0x3e,0x18, +0x71,0x04,0x3d,0x7e,0xd4,0x11,0x09,0xb9,0x3f,0x32,0x7b,0x3b, +0x0f,0x63,0xf1,0x00,0xd9,0x5a,0xbe,0xbd,0xc5,0xa8,0x5d,0xc0, +0x3e,0x39,0x54,0x70,0x85,0xfb,0xcb,0x0e,0x96,0x87,0x08,0x92, +0x05,0x97,0x9f,0x9e,0x97,0x7e,0x31,0xd3,0xad,0x89,0xca,0x9d, +0x0c,0xbd,0xb5,0xf6,0x94,0xd8,0xd1,0xf4,0xd8,0xb4,0xb8,0x54, +0x66,0xd2,0x36,0x71,0x04,0x76,0xf0,0x0d,0x87,0x64,0xd2,0x2b, +0x1c,0xaf,0x48,0x5e,0x06,0xe0,0x14,0xbe,0x77,0x3a,0xdb,0x08, +0x61,0x1b,0x2b,0x60,0x22,0x09,0x0e,0xf0,0x0b,0x74,0x0f,0x6a, +0xf0,0xa1,0x35,0xc5,0x55,0x25,0xf9,0x65,0x02,0x96,0x58,0x90, +0xa0,0x7c,0x8f,0x12,0xf7,0x7c,0x37,0x2f,0x5a,0x1f,0x5c,0x1e, +0x54,0x12,0x28,0xcc,0x92,0x3e,0x65,0xe6,0xe8,0xda,0x0f,0x43, +0xad,0xd4,0x87,0xb5,0xbc,0x78,0x1a,0xc2,0x88,0xad,0xa4,0xdb, +0xce,0x8b,0xba,0xcb,0x88,0xa5,0xa4,0xdb,0xcd,0x50,0x76,0x1b, +0xa8,0xb3,0x20,0xb4,0xe6,0x3e,0xbc,0x82,0x3b,0x0e,0x7c,0x45, +0xb6,0x7f,0xa5,0x4d,0xa3,0x57,0xd1,0x8c,0xba,0xa2,0xa6,0xea, +0xa2,0x32,0xcb,0x7c,0x1a,0xe0,0x6d,0xe9,0x20,0x77,0x6b,0xf1, +0xea,0xb2,0xab,0x76,0x15,0x30,0x8c,0xfb,0xdf,0xed,0x71,0xec, +0x7f,0xbb,0xc7,0x67,0x8c,0xc1,0x3c,0xde,0x2e,0xa9,0xca,0xe1, +0xbf,0x38,0x53,0x7d,0x1c,0xef,0x88,0x9e,0x76,0xb9,0xe6,0x14, +0x4e,0x0f,0xff,0xd9,0xd4,0xf0,0x03,0x23,0x7c,0xfb,0x2e,0xc1, +0xbe,0x38,0xae,0x61,0x05,0x4c,0x72,0x82,0x73,0x46,0x39,0x7d, +0x14,0xfd,0xda,0x70,0x52,0xb3,0xf1,0x15,0x61,0x21,0xdc,0x24, +0x98,0xfe,0x18,0xd2,0xb9,0xcb,0x9b,0xc9,0x63,0x28,0xdb,0xcc, +0xe3,0x8f,0x56,0xac,0x4b,0xa7,0x7f,0xc3,0xc3,0xc3,0xe9,0x50, +0xb6,0x81,0x79,0xe0,0x64,0x38,0xa8,0x41,0xfe,0x39,0xcb,0xe8, +0xaf,0x59,0xfc,0x48,0xe3,0x48,0x00,0xd1,0x6e,0xd4,0xeb,0xb3, +0xba,0xcc,0x94,0xaf,0x1c,0x42,0xb9,0x72,0x97,0x3a,0xcf,0x06, +0x5f,0x41,0xb2,0xe1,0x6a,0x4a,0x2a,0x2a,0xca,0x6a,0x1d,0x6b, +0xa9,0x83,0x99,0xa5,0x83,0xa1,0x5b,0x85,0x03,0x4d,0x8a,0x4b, +0x64,0x2f,0x01,0x2f,0x8a,0x05,0x50,0xc8,0x17,0x1f,0x92,0x8d, +0x6e,0xab,0x26,0x19,0x56,0x99,0x5a,0x09,0x7a,0x3d,0x59,0xf4, +0xe4,0x95,0x90,0xbb,0x87,0xba,0x05,0xf4,0xc4,0x1b,0x24,0xff, +0x45,0xca,0x9b,0x0b,0x7f,0xc8,0x63,0xe9,0x59,0xd5,0x93,0xcb, +0x02,0xd7,0x09,0xe2,0xec,0x72,0xc2,0xe4,0x9c,0x1e,0xba,0xf0, +0x1d,0xd3,0xd9,0x86,0x39,0xdb,0xd8,0x0a,0xbb,0xc9,0x01,0xc7, +0x00,0x17,0x2f,0xf7,0xba,0x00,0x5a,0x59,0x57,0xd1,0x9a,0xcb, +0xfa,0xdc,0xb1,0x45,0x24,0xb8,0xd6,0xa7,0xc5,0xab,0xc6,0xc3, +0x8f,0x56,0x7b,0x14,0xbb,0x15,0xb9,0x08,0x2b,0xa5,0x14,0x76, +0x93,0x38,0x7b,0xe6,0x32,0xd2,0x21,0x89,0xb9,0xcd,0x76,0x78, +0x40,0x56,0x4a,0xdc,0xf7,0xbc,0xc8,0xe1,0xe7,0x64,0x89,0xc4, +0xbd,0x66,0x77,0xc9,0x66,0x64,0x2e,0xd1,0x6f,0x32,0xee,0xb5, +0xbf,0x22,0x60,0x84,0x05,0xf8,0x71,0x25,0xce,0xd5,0x1e,0xb5, +0xcc,0x90,0xb5,0x5c,0x65,0x69,0x59,0x65,0x71,0x9d,0x53,0x15, +0x75,0x31,0xb7,0x73,0x30,0x75,0xad,0x74,0xa0,0x09,0xb1,0x09, +0x71,0xf1,0xb1,0x0a,0x43,0x8e,0x42,0x11,0x9f,0x10,0x91,0x78, +0x3a,0x21,0x42,0x18,0x7d,0x06,0x56,0x44,0x1a,0x85,0x74,0x71, +0x94,0x37,0x43,0x03,0x82,0x8b,0xe0,0x33,0x58,0xc4,0x81,0x16, +0xbe,0x23,0xe0,0xc6,0xc4,0x9b,0x1b,0xdf,0x36,0x9d,0x6d,0x68, +0xb0,0x8d,0x9d,0xa0,0x43,0x42,0x1c,0xf7,0x3a,0xf9,0xb9,0xd7, +0xee,0xa5,0x65,0x75,0xa5,0xad,0xd9,0x2d,0x02,0xfa,0xce,0x27, +0x07,0x6a,0xfd,0x5b,0xfd,0x6a,0x3d,0xfc,0x69,0x85,0x47,0x81, +0x6b,0xbe,0xb3,0x80,0x95,0x71,0x8a,0xe3,0x28,0x29,0x32,0x47, +0x8b,0x14,0x79,0xf2,0x45,0x38,0x07,0xd9,0x31,0xdf,0xe2,0x23, +0xd2,0x02,0x2f,0x1d,0x14,0x36,0x59,0x2a,0x6c,0x52,0x56,0xd8, +0x84,0x2f,0xbf,0xe7,0xf1,0xfc,0x1c,0x52,0x61,0x51,0xa1,0x9d, +0x67,0xdc,0x55,0x49,0xf7,0x0f,0xb8,0xdf,0xf6,0xed,0x60,0x47, +0xc6,0x43,0xa4,0xb9,0xa7,0xf9,0x9b,0xbc,0x6b,0x96,0xc5,0xf4, +0x90,0x99,0xdd,0x5a,0x17,0x47,0x61,0xa4,0x0e,0xa6,0x91,0x25, +0xf8,0x92,0x19,0x0f,0x0d,0x23,0x31,0x44,0xc1,0x8c,0xe2,0xf2, +0x8d,0x53,0x69,0xf8,0x9e,0x50,0xbf,0xa3,0x8c,0x19,0xcd,0x97, +0x3e,0x15,0x67,0x8b,0x9f,0x72,0x2f,0x46,0x1f,0x91,0xab,0x23, +0x6d,0x0c,0xfe,0xae,0xb1,0x53,0x67,0x18,0xc8,0x60,0x3a,0xd7, +0x91,0x95,0xd9,0xae,0x32,0x32,0x1e,0xdf,0xf0,0xb8,0x18,0xcd, +0x18,0xa2,0xfd,0xc9,0x00,0x0d,0x0b,0x71,0x35,0x61,0xe0,0x35, +0x0e,0x0b,0xb9,0x3e,0x69,0x0d,0x71,0x0e,0x4d,0x6e,0x54,0x79, +0xca,0xff,0x79,0xf1,0x6d,0x19,0x4c,0xe9,0xf7,0xea,0xa1,0x8b, +0xed,0xd6,0xf8,0xa2,0x2c,0x58,0x80,0xb1,0x7a,0x78,0x8e,0x5f, +0x50,0x76,0xe0,0x37,0x65,0xb0,0xe0,0x6e,0xa4,0x16,0x5e,0x55, +0xb9,0xc9,0xeb,0xe5,0xca,0x70,0x12,0xff,0xef,0x84,0x68,0xd9, +0x97,0x10,0xdb,0x8d,0xb1,0x77,0x21,0x18,0xb4,0x31,0xf8,0x06, +0xac,0x02,0x1e,0x26,0xb7,0xe2,0x64,0x45,0x2e,0x34,0x96,0xbd, +0xcd,0xb7,0xff,0x07,0xf2,0xb0,0x42,0x1b,0xf7,0xa2,0x36,0xec, +0xd5,0xc2,0x33,0x96,0x70,0x46,0x03,0x2f,0x5a,0x40,0x12,0xef, +0x6f,0xae,0xe6,0x84,0xbb,0xdf,0xa7,0x43,0x9d,0x1b,0x7f,0xed, +0x4f,0xfe,0x3b,0x1b,0xfa,0xa3,0x39,0x18,0xbf,0x4f,0x86,0xae, +0xad,0x5a,0xdb,0xe0,0xd7,0x27,0x48,0xe2,0xc8,0x62,0x32,0x1a, +0x31,0xf8,0x07,0xe8,0x32,0x78,0x14,0x1d,0x6d,0xc8,0x2e,0x8c, +0xbd,0xc5,0x4b,0x33,0x22,0x08,0x4c,0x93,0x2a,0x71,0x1a,0x07, +0xf7,0xe1,0x3a,0x01,0xf5,0xf5,0xa8,0xce,0x89,0x74,0x3a,0x6e, +0x7e,0x0a,0x9b,0x59,0x80,0xdf,0x3d,0x72,0x9f,0x18,0xea,0x60, +0xe9,0x75,0xf6,0x76,0xda,0x1c,0x4e,0x6b,0x5f,0xba,0x01,0xa5, +0x8a,0xb7,0xe4,0x3e,0x4c,0xe6,0xd8,0xc5,0xce,0x27,0x3b,0x74, +0x37,0x99,0xaa,0x59,0x0b,0x38,0xf7,0x09,0x24,0xf5,0x62,0xd2, +0x37,0x46,0x1b,0xb0,0x4d,0x0e,0x6d,0xea,0x12,0x27,0x7f,0x4f, +0x49,0xb4,0x15,0x94,0x44,0xdb,0x36,0x47,0x41,0x49,0x2e,0xbd, +0xa7,0x24,0x7d,0x97,0xda,0x45,0x17,0xdb,0xcb,0xe2,0x58,0x69, +0x05,0xff,0xa8,0xec,0x7e,0xd5,0xed,0x5a,0x01,0xba,0x7b,0xd1, +0x95,0xbb,0xde,0x30,0xdc,0xd2,0xd7,0x29,0x60,0x00,0x9e,0xfd, +0x9f,0x04,0x64,0x1d,0x1e,0x24,0x5f,0x89,0x2e,0x9b,0x78,0xc9, +0xc5,0x9a,0x88,0x2e,0xeb,0x25,0x17,0x4e,0x51,0x3d,0xf8,0x84, +0x38,0xce,0x37,0x51,0xd7,0xd8,0x5d,0x6b,0x4b,0xbf,0x7a,0x70, +0xe5,0x75,0xdb,0xef,0xc2,0x88,0xdd,0xe8,0x37,0x44,0xe7,0x9e, +0xcd,0x1d,0xcf,0x2f,0xaf,0x00,0x2d,0x82,0x59,0xf1,0xb0,0x58, +0x68,0x1d,0xc6,0x10,0x2e,0xa5,0x2b,0xa9,0x27,0xbe,0x47,0x1e, +0x4f,0x0f,0xe3,0x94,0xbd,0x38,0xd3,0x64,0x96,0x50,0x8a,0x8f, +0xac,0x98,0x6e,0x39,0x79,0xa4,0xda,0x3a,0xb7,0x22,0xbb,0x26, +0xb3,0x7e,0x46,0xca,0xec,0xfc,0x05,0x8d,0x8b,0x5d,0xb6,0x9a, +0x6b,0x6d,0xdb,0x55,0x65,0x46,0x6f,0xdf,0xec,0xbb,0xdd,0x74, +0xaf,0x56,0xab,0x63,0xc7,0xa5,0xdd,0x82,0x24,0x8c,0x88,0x04, +0x57,0xae,0x01,0x07,0x73,0x74,0x58,0x0b,0x2b,0xe5,0x4c,0x55, +0x7c,0x07,0xae,0x3c,0x9c,0x61,0x71,0xe6,0x14,0x4e,0x0b,0xc1, +0x09,0x0e,0x38,0xd6,0xf5,0xcf,0x10,0xc5,0xf2,0x47,0x33,0x04, +0xe9,0xec,0x49,0xe2,0xb2,0x78,0x2b,0x4e,0xde,0xac,0x59,0x69, +0x45,0x4b,0x4b,0xf2,0x8a,0x73,0x4b,0x04,0x69,0x4b,0xbf,0x18, +0xc5,0x97,0xb7,0x97,0xf4,0xe5,0xf7,0x08,0x30,0x22,0x45,0x11, +0x87,0x70,0xf3,0x30,0xd3,0x53,0xc2,0x3b,0xd8,0xd0,0x85,0x1b, +0xfe,0xe4,0xdb,0xe3,0x5a,0x13,0x9a,0x52,0xfc,0x7a,0xe8,0xd2, +0x3d,0x73,0xc3,0x91,0x3b,0x93,0x6c,0x41,0x5b,0xa2,0xdb,0xa2, +0xdb,0x62,0x84,0x05,0xa8,0x6e,0x05,0xea,0xc8,0xf1,0x66,0x11, +0x66,0xa7,0x2d,0xcf,0x26,0x98,0x50,0xf8,0x30,0x11,0x96,0x66, +0xbf,0xcd,0x13,0x14,0x8f,0x1b,0x78,0x4c,0x1c,0x35,0x4c,0x0c, +0x77,0xda,0x56,0xdb,0xd1,0xaf,0x06,0xfb,0xaf,0xb7,0x3d,0x12, +0xc4,0xcf,0xf1,0x09,0xc9,0x2a,0xc9,0x28,0x49,0x2b,0x49,0xd1, +0xc9,0x35,0xa8,0x32,0x72,0xb3,0x96,0xdb,0x69,0x3a,0x55,0xda, +0xd1,0x5b,0x8d,0x3d,0xad,0x0d,0x5d,0x55,0xb6,0x2d,0x76,0xfd, +0xf6,0xd5,0xed,0xd4,0xa4,0xd5,0xa1,0xd5,0xab,0xa3,0xe7,0x69, +0xfe,0xab,0xf8,0xb7,0x42,0x53,0x1f,0xbb,0x15,0x49,0xd5,0x09, +0x35,0x09,0x75,0x96,0x49,0x34,0x18,0x27,0xfa,0xaa,0xea,0xce, +0x13,0xfc,0xa0,0x9d,0x2c,0x5b,0x01,0x1f,0x59,0xe2,0x47,0x6b, +0x5f,0x59,0xa3,0x2a,0x3c,0x01,0x55,0x1e,0x76,0x48,0x93,0x89, +0xfb,0xad,0x90,0xfb,0xa7,0x9e,0x09,0x30,0x85,0x3b,0xbd,0xf6, +0xc8,0x76,0xf7,0xdd,0xc2,0xa8,0x32,0x73,0xc0,0x7e,0x78,0xcc, +0x15,0x95,0x17,0x54,0xe4,0x54,0xda,0x97,0x50,0xa7,0x9d,0x9a, +0xeb,0xb7,0x59,0x56,0xd9,0xd1,0xb2,0xfc,0xbc,0xec,0xdc,0x3c, +0x01,0x16,0xfd,0x40,0xe0,0x56,0x07,0xde,0xe2,0xe0,0x2b,0xec, +0x23,0xce,0xa7,0xac,0x23,0x2c,0x22,0x84,0x61,0x58,0xd4,0x81, +0x8b,0x06,0xf9,0xa6,0x0b,0x4d,0xb1,0x4d,0x09,0x7b,0x3b,0x69, +0xc8,0x2a,0x1c,0x77,0x6e,0xc1,0xcc,0x44,0x6b,0x59,0x4b,0xf3, +0xf9,0xe8,0x16,0x15,0x73,0xdc,0x60,0x03,0x1b,0x74,0x15,0xf6, +0x9f,0xb1,0x39,0x17,0x67,0x41,0x61,0x7c,0x02,0xa8,0x66,0xbe, +0xcd,0x16,0xd0,0x66,0x0d,0xe9,0xf2,0xe9,0x77,0x6b,0x73,0xa9, +0x6b,0xa4,0xd6,0x4d,0x96,0xb5,0xe6,0xe5,0x82,0x21,0x86,0x10, +0xd7,0xd0,0xb8,0x1a,0x15,0x60,0x8c,0x6e,0x36,0xbf,0xad,0xe0, +0xe0,0x57,0xca,0xd0,0xc8,0x75,0xa4,0xe5,0x34,0xaa,0x3c,0xe0, +0x8d,0x73,0x64,0x73,0xf9,0x7e,0x46,0xc9,0x86,0x2c,0x86,0xf5, +0x9a,0xf4,0xda,0x6a,0xa9,0xfd,0x4d,0x93,0x61,0xa3,0x1e,0x61, +0xd4,0x94,0x11,0xf4,0xdb,0xc3,0x6d,0x37,0x4a,0xae,0x5a,0x17, +0xd3,0x40,0x53,0x5b,0x6d,0x5d,0x6b,0xa6,0x23,0xcd,0xc5,0xb7, +0xe4,0x3b,0x88,0xe9,0xc3,0x98,0xef,0x8c,0xf0,0x18,0x6a,0x4b, +0xe7,0x44,0x73,0xf1,0x1c,0x3f,0x7a,0x1b,0xec,0x19,0xf3,0xe9, +0x55,0xa4,0x06,0x74,0x09,0xbe,0x33,0x85,0x15,0xa3,0x9f,0x0d, +0x8e,0x7c,0x06,0xb3,0x39,0xd1,0x04,0xc7,0x12,0x7c,0xf2,0x0a, +0x9e,0x70,0xa3,0x09,0x38,0xf9,0xfd,0x40,0xa1,0x42,0x8c,0x7b, +0xc9,0x1a,0xde,0x28,0xb4,0xa4,0x9d,0x52,0xad,0x19,0x0f,0xe7, +0xa7,0x4b,0x9f,0xf5,0x8b,0x9f,0xf1,0xa2,0x1b,0xaa,0xb1,0xbd, +0x5f,0xb3,0xbd,0xf1,0x09,0x2e,0x24,0xf0,0x64,0x21,0xb2,0xcd, +0x29,0x78,0x8a,0x3c,0x2d,0xfe,0xa6,0xa3,0xbf,0xd3,0xbd,0x9e, +0x9a,0xd9,0x6b,0x3a,0xab,0x07,0x0a,0xf0,0x5f,0xb7,0xc9,0x35, +0x9f,0x5b,0xce,0x97,0x6d,0x2b,0xdb,0xa9,0x71,0xb3,0x76,0xf3, +0x8e,0x32,0x46,0x24,0xb9,0x91,0x8d,0xe4,0x38,0x2a,0x6d,0x31, +0x44,0x53,0xf7,0x3c,0x16,0xfe,0x2c,0xeb,0xde,0x3d,0xca,0x84, +0x6d,0x02,0x7c,0x82,0x8b,0x39,0xed,0xfc,0x83,0x37,0x94,0x61, +0x35,0xd7,0x9a,0x93,0xd9,0xaa,0xd2,0xdf,0x0f,0x9a,0xd2,0xe2, +0xdf,0xf4,0x16,0x48,0x4a,0xa8,0x77,0x19,0x3e,0xe1,0x47,0xb6, +0x2d,0x20,0xea,0xb8,0x88,0xf7,0x08,0x8b,0x63,0x02,0x6d,0x0e, +0x44,0xa1,0x8c,0xbf,0x82,0x4f,0xc9,0xb0,0xb4,0x88,0x8f,0x8c, +0x3b,0x1f,0x1f,0xa7,0x04,0x13,0x74,0x70,0x02,0x1f,0x71,0xfe, +0x54,0x64,0x84,0xb2,0xf4,0x99,0x91,0xf8,0x21,0xe7,0x36,0x17, +0xa7,0xec,0xc6,0x03,0x3b,0x0a,0xf5,0x29,0xd4,0xbc,0xfe,0xe5, +0x4e,0x1e,0xa8,0x30,0xe5,0x58,0x80,0x2a,0xc0,0xef,0x80,0xaa, +0x25,0x85,0x57,0x28,0xee,0xbf,0x83,0x33,0x6f,0x3a,0xfd,0x2e, +0xc0,0x17,0xa0,0x4a,0xfa,0x0f,0x5f,0xdd,0xd3,0x10,0x54,0xdc, +0x41,0xed,0x8a,0xf5,0x8a,0x6c,0xd2,0x59,0x8b,0x56,0x37,0x12, +0xd8,0x02,0x4a,0x7d,0xa8,0x04,0x4b,0xff,0xfd,0xb1,0x72,0x10, +0x17,0xf2,0xf9,0x5d,0x99,0x3d,0xc9,0xcd,0x96,0xa9,0xf4,0xb8, +0xdd,0x41,0xe3,0x20,0x73,0x61,0x16,0x97,0xdb,0x91,0xd1,0x91, +0xda,0x63,0x91,0x46,0x03,0x70,0xbc,0x19,0xce,0xda,0xb5,0x44, +0xe8,0x55,0xac,0xc3,0x3a,0x01,0xc6,0xbc,0xec,0x5c,0x75,0xc5, +0x42,0x1f,0xb5,0xaf,0xc8,0xf5,0xd7,0x59,0x3f,0xc3,0x31,0x20, +0x18,0xe0,0x4e,0xdc,0x09,0x3b,0x77,0xbf,0x4f,0x12,0xfb,0xf2, +0xc7,0x22,0x8f,0x47,0x9e,0x50,0x46,0x07,0x2b,0x90,0x73,0xfb, +0x35,0x8d,0x5d,0x71,0xaa,0x45,0xb1,0x0d,0x7d,0xdb,0xda,0x5f, +0x57,0xdb,0x15,0x17,0x1f,0x73,0x3e,0xfe,0x0c,0x18,0xe1,0x24, +0x5a,0xd5,0x8a,0xdb,0x61,0xec,0xf1,0xf8,0xf0,0xf3,0x8a,0x74, +0xe2,0xc9,0xd3,0x17,0xe2,0xd3,0xe2,0x32,0x63,0xb2,0x67,0x80, +0x67,0x17,0x3a,0x71,0x51,0xa9,0xe7,0xd3,0xd2,0x95,0x4a,0xde, +0xa7,0xab,0x6f,0x82,0x0e,0x8c,0xe5,0xcb,0xdd,0xb2,0x8b,0xd2, +0x0b,0x53,0xf3,0x67,0x48,0x6f,0xfa,0xaf,0xc2,0x2f,0x83,0xbc, +0xf4,0x6a,0x64,0x2b,0x31,0x40,0xed,0xcb,0xbc,0xb8,0x03,0x63, +0x08,0xb3,0x65,0x2a,0xa3,0xcf,0xd2,0x5f,0x95,0x04,0xa6,0xaa, +0xe3,0x54,0x0e,0x76,0x4d,0x7f,0x02,0x44,0x9d,0x67,0x67,0x53, +0xfb,0xf7,0x7f,0xcd,0xc7,0xe3,0x16,0x9c,0x0a,0x5b,0x58,0x1c, +0xd0,0x1c,0x59,0x4f,0x06,0xa4,0xad,0x7c,0x7a,0x75,0x4a,0x75, +0x52,0x8d,0x69,0x12,0x0d,0x5a,0xe1,0xb4,0x44,0x77,0x73,0xab, +0x2b,0x2d,0x6f,0x28,0x6a,0xce,0x6b,0x15,0xd0,0x02,0xf5,0x48, +0x78,0x7a,0xd8,0xf9,0x13,0xa1,0xc7,0x8e,0xd3,0xd3,0x30,0x06, +0x64,0xfd,0x28,0x03,0x23,0x13,0x34,0xc2,0x79,0x66,0x8c,0xa3, +0x1f,0xc7,0x69,0x2e,0x38,0x6b,0x11,0x7e,0x56,0x6f,0x43,0x1f, +0xc1,0x98,0xd2,0x3f,0xe3,0x5e,0x0b,0xf1,0x52,0xd1,0xa0,0x58, +0xc2,0xc5,0x5d,0x38,0x7f,0xe1,0xb4,0xf2,0x3d,0x9c,0x51,0xd3, +0x28,0x13,0xbf,0x3b,0x46,0x76,0xfc,0x7b,0xc8,0xd9,0x98,0x3b, +0xb7,0xfb,0xf4,0xb6,0x53,0x9b,0x85,0x2d,0x66,0x77,0xb9,0xf0, +0xad,0x7f,0x8f,0x28,0x2f,0xe1,0x22,0xff,0xfb,0x88,0xf2,0xbc, +0xbf,0x47,0x94,0xaf,0x97,0x17,0xdd,0x4b,0xfb,0xf7,0x88,0xf2, +0xd7,0x7d,0x9a,0x5c,0x5c,0x77,0x9c,0x62,0x44,0xf9,0x4b,0x0e, +0x3f,0x81,0x7d,0xff,0x1e,0x1d,0x7e,0xc1,0xc5,0xfe,0x3d,0x3a, +0xfc,0xd4,0x84,0xd4,0x07,0xb6,0x78,0x95,0xfa,0x55,0xd4,0xd1, +0x3d,0x25,0xf6,0x75,0x6e,0xf9,0x02,0xae,0x96,0x3e,0xfa,0x7b, +0x74,0x78,0x50,0x80,0xef,0x15,0xa3,0xc3,0xc6,0x11,0x56,0xc2, +0xa6,0x4b,0x24,0xa0,0xc4,0xb6,0xc6,0x4d,0x31,0x3a,0xdc,0xb4, +0xb7,0xd1,0xa7,0xc4,0x4f,0x50,0x3c,0xda,0xe8,0x00,0x69,0xc3, +0x2f,0xf9,0xa4,0xf4,0x84,0xf4,0xb8,0x74,0x8b,0x74,0xea,0xaf, +0x2b,0x37,0xd1,0xb2,0xab,0x74,0xa1,0xad,0x65,0xf5,0xd5,0x65, +0x35,0x82,0xf8,0x04,0xcf,0x91,0xee,0xde,0x9a,0x2b,0x45,0xdf, +0x08,0x37,0x3b,0xb1,0x9d,0x4b,0x2f,0x49,0x29,0x4d,0x28,0xb6, +0x48,0xa6,0x7b,0x37,0x38,0x68,0x68,0xe9,0xd7,0xb9,0xd3,0xec, +0xcc,0xac,0xec,0x8c,0xec,0x22,0x79,0x85,0x5d,0x83,0xb3,0xbd, +0xa7,0x89,0xef,0x76,0xef,0x22,0x1b,0xfa,0xb8,0xfa,0x72,0x55, +0x57,0x63,0xbf,0xcd,0x2d,0xe7,0xe7,0x2e,0x05,0x9d,0x74,0x43, +0x8d,0x7e,0x9d,0x55,0xa3,0x30,0x08,0xb6,0x64,0x9f,0xb6,0x9f, +0x95,0x93,0xa3,0x63,0x8b,0x4f,0xd7,0x9e,0xa1,0x98,0x78,0x8a, +0x21,0xd8,0x4a,0x0e,0x85,0x9f,0x88,0xd8,0x3b,0xd3,0x85,0x4b, +0x76,0x91,0x55,0x70,0x03,0x25,0xb9,0xcd,0x29,0x2a,0x03,0x8d, +0x36,0x5c,0x6c,0x61,0x4c,0xf1,0x85,0x52,0xa1,0xaf,0xc9,0x8a, +0xbb,0x50,0x13,0x5d,0x1f,0xc5,0xc8,0xcc,0xcf,0xdc,0x19,0x97, +0xd3,0xae,0x11,0x2e,0xc2,0x76,0xa7,0x5b,0xdc,0x29,0xd7,0x30, +0xe7,0x50,0x47,0x66,0x23,0x44,0x93,0xc8,0xa0,0xc8,0xbd,0xe7, +0xf6,0x08,0x18,0xc5,0xc5,0x14,0x5e,0x28,0xba,0x50,0x24,0x0c, +0xb9,0x92,0x8a,0x93,0xc5,0xa1,0x25,0xc7,0xf3,0x6a,0xe8,0x9e, +0x94,0x3d,0x49,0xde,0x89,0x8a,0x75,0xbf,0xed,0x49,0x5c,0x7e, +0x6c,0x49,0x5c,0x99,0x00,0x17,0xb8,0x13,0xeb,0x65,0x46,0x4d, +0x64,0x4f,0xda,0x9e,0x14,0xef,0xc4,0x60,0x6f,0xca,0xf6,0x3e, +0x51,0x72,0x44,0x10,0xe3,0xf1,0x12,0xc9,0x3a,0x92,0x75,0x28, +0xfb,0x50,0x63,0x25,0x95,0x77,0x1b,0x77,0xe8,0xb5,0x38,0xfb, +0xd3,0xfc,0xc3,0x79,0x87,0xf2,0x42,0xd4,0x4e,0x2d,0x8f,0x58, +0x78,0xe6,0x7e,0xc3,0xc3,0xce,0xab,0xed,0xf6,0x95,0xd4,0xd8, +0x61,0x93,0x7c,0x9d,0x43,0x50,0x5a,0x20,0x7b,0x75,0x95,0xb4, +0x95,0xb7,0x55,0x3a,0x94,0x51,0x27,0x3f,0x0b,0x6f,0x23,0x5f, +0xaf,0x4c,0xcf,0x2c,0x9f,0x74,0x4f,0x37,0xfa,0xd0,0xf3,0x8e, +0xe7,0x4d,0xf7,0xb0,0xd3,0xf4,0xec,0xfc,0xd9,0x91,0x38,0x6e, +0x66,0x22,0x13,0x7a,0x9f,0xc0,0xf4,0x98,0x38,0xf8,0x54,0x05, +0x2d,0x2e,0x83,0x35,0xff,0x2e,0xf6,0xcf,0x84,0x37,0xec,0xea, +0x5c,0x17,0x93,0xdf,0x3d,0xbf,0xf5,0x7b,0xee,0x56,0xd1,0x46, +0x97,0xd7,0xaf,0x29,0x5f,0x52,0x26,0x48,0x37,0x71,0x01,0xf9, +0xbd,0xf4,0x75,0xf5,0xf5,0x3a,0xb7,0x7a,0xaa,0xeb,0xa5,0xe6, +0xb3,0x20,0x50,0x31,0xaf,0x5b,0xbc,0x4b,0x50,0x8f,0xab,0x6d, +0xac,0xe8,0x2c,0x68,0x13,0x5a,0x30,0x96,0x4f,0xce,0x4d,0xcc, +0x4d,0xbc,0x68,0x9c,0x49,0x3d,0x97,0xec,0x58,0xb9,0x66,0x57, +0x03,0x53,0x59,0x89,0x32,0xcc,0x04,0x47,0xde,0x1d,0x97,0xcf, +0x5b,0x8f,0x9b,0x74,0x8a,0x18,0x71,0x31,0xb9,0x07,0xe3,0xff, +0xa8,0x03,0x5d,0x01,0xa2,0xb8,0xd1,0x67,0x62,0x06,0x19,0x2d, +0xbd,0xf2,0x03,0xd8,0x8c,0x18,0xf0,0xc6,0x38,0x40,0x70,0x0e, +0x44,0x2b,0x72,0x9b,0xfb,0x9d,0x48,0xb0,0xb3,0xb7,0x9d,0x2b, +0xa3,0xfc,0x81,0x5c,0x7d,0x6d,0x4d,0x53,0x59,0xbb,0xa0,0xce, +0x9c,0x02,0xd6,0x6f,0xe4,0x3c,0xce,0x79,0x9f,0xf6,0x55,0xc6, +0x95,0x1c,0xf8,0x4e,0x8f,0xa9,0x88,0xae,0xaa,0x51,0x7a,0x0c, +0x3b,0x50,0x9f,0x1f,0xf5,0xfd,0x53,0xb1,0xf4,0x7e,0x15,0xce, +0xe1,0x46,0x62,0x71,0x95,0xe2,0xa9,0xb8,0x7b,0x42,0x93,0x8a, +0x55,0xc0,0xda,0x10,0xbd,0x79,0x8b,0xfc,0xa0,0x41,0x65,0x16, +0xb7,0xda,0xd2,0x98,0xbc,0x85,0xd9,0xbc,0x65,0x86,0x6c,0xf2, +0x88,0x0a,0x68,0x28,0x70,0xc9,0x4b,0x5c,0x28,0x8d,0xe3,0x33, +0x4b,0xd2,0xcb,0x93,0x8b,0x75,0x92,0x29,0x23,0x89,0x5e,0x07, +0xbd,0x05,0x6c,0x92,0x16,0x42,0x36,0xe7,0xec,0xb4,0xd3,0x0b, +0x27,0xfa,0x95,0xb0,0x6b,0x5f,0xd1,0xfc,0x4d,0x6f,0xc3,0x0d, +0xe1,0x1d,0x6e,0x91,0xea,0x4c,0xc4,0x3a,0x34,0xb9,0xca,0x84, +0xdb,0xc0,0x20,0x27,0x9d,0x14,0xe7,0x12,0xcc,0x80,0x49,0x90, +0xc1,0x0d,0xe3,0x24,0xc2,0x36,0xca,0x19,0xe3,0x93,0x7e,0xb5, +0x24,0xec,0x9b,0x48,0xdb,0xd3,0x2e,0x47,0xbc,0x18,0xf7,0xe6, +0xc4,0x5f,0x61,0x2a,0xc1,0xa9,0xd8,0xc1,0xa7,0xd4,0xc6,0x34, +0xb0,0xbe,0x34,0x59,0x34,0x02,0x63,0x02,0x1f,0x55,0xdc,0x6d, +0xaf,0x7d,0xca,0xfa,0x83,0xf8,0x05,0x9e,0xe7,0x52,0x4b,0x93, +0xcb,0x92,0xca,0x4d,0x12,0x68,0x98,0xff,0x09,0xef,0x23,0x1e, +0x02,0xea,0x49,0x5f,0xc0,0x2e,0xce,0x47,0x6e,0xea,0xb3,0x98, +0x91,0xd7,0x70,0x31,0x92,0xec,0xc7,0x35,0x36,0x38,0x73,0x3d, +0x8e,0x2d,0xd5,0xa3,0xf9,0xa5,0x59,0x65,0x99,0x15,0x82,0xa4, +0x31,0xf8,0x08,0x0c,0xc4,0x7d,0xb8,0x8b,0x2f,0x7e,0x94,0xfd, +0x38,0xf5,0xa5,0x00,0x4b,0x06,0xf1,0x07,0x13,0x4e,0x7c,0x61, +0xcd,0x9a,0x02,0x57,0x2a,0x9e,0xbd,0xed,0x83,0x1c,0x01,0x0e, +0xd6,0x30,0x5e,0x21,0x4d,0x64,0x17,0xb7,0x92,0x8b,0xb4,0x3b, +0xe3,0x1a,0xc6,0x6c,0x9d,0xc3,0x81,0xdd,0xf4,0xc4,0xaa,0x98, +0xfa,0xa8,0x56,0x81,0xfd,0xff,0x23,0x6e,0x74,0x07,0x3e,0x23, +0xe2,0x58,0xf8,0x54,0x1a,0xcb,0x8b,0xe7,0x15,0x2d,0x6b,0xc0, +0x08,0xfa,0x1b,0x73,0x78,0x83,0xb6,0x97,0xc1,0x16,0x16,0xf4, +0xf1,0x93,0x47,0xfe,0x39,0xe2,0x44,0x66,0x0d,0xc3,0x2a,0x69, +0xc9,0x3d,0x03,0x4d,0x69,0x26,0xae,0x1a,0x7e,0xc7,0x5f,0x1b, +0x5d,0x49,0x46,0x26,0x88,0x13,0x24,0x19,0x07,0x63,0x0a,0xff, +0xac,0x81,0xf1,0x43,0xde,0x75,0xd4,0xc0,0x7b,0x83,0xdf,0xca, +0x3d,0x02,0x7c,0x08,0x35,0x6d,0xd2,0x77,0x76,0x70,0x0e,0xbf, +0xe0,0x71,0xb2,0x0f,0x7e,0xbe,0x17,0xe9,0xe1,0x4c,0x2b,0x5a, +0x1d,0xdb,0x14,0x5f,0x9f,0x28,0x30,0x5d,0x71,0x88,0x18,0xf8, +0x2c,0xf7,0x59,0x7a,0xa0,0xd0,0x96,0xbe,0xce,0x7f,0x55,0x75, +0xa3,0x56,0x50,0xc5,0xd3,0xe4,0xb2,0x18,0x63,0xc0,0x3b,0x8e, +0xd7,0x93,0x62,0xae,0xf2,0x38,0x66,0xbc,0x18,0xa3,0x2d,0xc5, +0x70,0x68,0x80,0x3b,0x08,0xcc,0xc8,0x84,0x0f,0xca,0x1f,0x55, +0x04,0x34,0xd3,0xcd,0xfe,0x0b,0xd9,0xe1,0x0e,0x09,0x62,0x5b, +0x11,0xf9,0x3d,0x04,0x26,0x04,0xfc,0xc3,0x3f,0xaf,0x8b,0x2e, +0x2c,0xc6,0x0f,0x8b,0x66,0xe7,0xb0,0x28,0x94,0x0f,0x0e,0xe4, +0x1e,0x90,0x0a,0x50,0x4e,0x82,0x85,0xc2,0xe0,0x30,0x56,0x73, +0xe9,0x9d,0x29,0xdd,0x89,0xbd,0xa6,0x09,0x74,0x3f,0x4e,0xf7, +0xc3,0x4f,0x36,0x2c,0x2c,0xb3,0xa4,0x05,0x65,0x17,0x2b,0x73, +0x6a,0xd2,0x70,0x42,0x19,0x8e,0xeb,0x9d,0x63,0xbd,0x45,0x5b, +0x73,0xc5,0xce,0x0a,0x13,0xfa,0xe2,0xf6,0xad,0x2f,0xbb,0x1f, +0xb6,0x6e,0x1b,0xd6,0x78,0xb8,0xa3,0x6a,0x90,0x6e,0xbe,0x67, +0x7c,0xcf,0xe1,0x3e,0xf3,0x76,0x53,0x62,0xc0,0xc5,0x0f,0xc4, +0x0e,0x5d,0xb8,0x21,0xf4,0x75,0x5b,0x70,0xd1,0x57,0xa3,0xef, +0x3e,0x55,0x62,0xd6,0xe7,0x95,0x64,0x97,0x65,0x95,0x0b,0xf0, +0xae,0x0f,0xbf,0xe6,0x92,0x0a,0x92,0x0a,0xe3,0x0b,0x15,0x15, +0x3e,0x1b,0x9c,0xd4,0x75,0x77,0xd7,0xda,0xd1,0x94,0xd4,0x94, +0xd4,0xe4,0xb4,0x73,0x3b,0xce,0xec,0x0c,0xd7,0x10,0x74,0x2d, +0x87,0xb8,0x30,0xcd,0xe3,0x5b,0x0f,0xaf,0x15,0xe0,0x17,0x2e, +0x32,0xec,0x5c,0x58,0x64,0x98,0x60,0x16,0x7e,0xfc,0xa8,0xed, +0xcc,0x85,0x5c,0x86,0xb9,0xec,0x47,0xee,0x7e,0x49,0xe9,0xc3, +0x14,0x95,0xf8,0x56,0xd9,0x4d,0x0e,0x06,0xc5,0x8b,0x24,0x0c, +0x3f,0x0e,0xc2,0x09,0xe6,0x38,0xd6,0xea,0xdd,0x3e,0xe0,0x4e, +0x00,0x15,0x30,0x64,0x37,0x89,0x34,0x88,0x34,0x3b,0x67,0x25, +0x60,0x36,0x17,0xdb,0x17,0xd3,0x77,0x61,0x48,0x18,0xb6,0x25, +0xd5,0xbe,0x55,0xee,0x79,0x5e,0x75,0x95,0x74,0x5f,0xb9,0x67, +0xbd,0x07,0x93,0xfb,0x73,0x24,0x4a,0x52,0xae,0x26,0x0e,0xc7, +0x0f,0x09,0x90,0xc7,0x9d,0xd1,0x3e,0x6d,0x7c,0xca,0x54,0x40, +0x6b,0x50,0x22,0x75,0x1e,0xd5,0x2e,0x05,0xee,0xd5,0x95,0x54, +0x91,0xdd,0x70,0xad,0x60,0x6e,0xae,0x35,0xb2,0x96,0x0c,0x4a, +0x07,0xf8,0xff,0x94,0xec,0x04,0x28,0x4a,0x76,0xd6,0xa8,0xb5, +0x3a,0x51,0x45,0x49,0x4f,0xf9,0x25,0x01,0xcd,0x60,0x3b,0x71, +0x44,0x0b,0x6d,0x9c,0x3d,0x17,0x85,0x1a,0x0b,0x5a,0x52,0x52, +0x52,0x5b,0xdc,0x24,0x48,0x17,0x87,0x47,0xa6,0xf0,0xd5,0x0f, +0xcb,0x5e,0xe6,0xfe,0x26,0x8c,0x2c,0x90,0x82,0xfe,0xaf,0xca, +0x9d,0x73,0xff,0xae,0xdc,0x59,0x6b,0xf6,0xf8,0x3f,0x95,0x3b, +0xde,0xff,0xa9,0xdc,0x09,0x3d,0xfe,0x9f,0xca,0x9d,0x5f,0xb9, +0x1b,0x55,0xff,0xaf,0x95,0x3b,0x33,0xdf,0x57,0xee,0x98,0x9d, +0xb3,0x54,0x96,0x3e,0xff,0xef,0x95,0x3b,0x81,0x5d,0x5e,0x15, +0x7e,0x55,0x8d,0xd4,0xb7,0xd4,0x42,0x51,0xb9,0xc3,0xf8,0xdb, +0xc4,0xff,0x54,0xe8,0xcc,0xfa,0x77,0x85,0xce,0xfc,0xff,0x87, +0x0a,0x9d,0x7f,0xd2,0x68,0x22,0xed,0xe7,0x02,0x4f,0x26,0xe6, +0xab,0x80,0x99,0x29,0x1f,0x7b,0xf1,0xc2,0xc5,0xe8,0x7c,0x01, +0xac,0xa0,0x19,0x57,0x71,0x65,0x0d,0x65,0x3d,0x39,0x8d,0x42, +0x03,0x3a,0xf1,0xc9,0x05,0x49,0xf9,0xf1,0x79,0xc6,0x29,0x74, +0xcf,0x1a,0x2d,0xfc,0x68,0x95,0x6e,0xb1,0x09,0xc3,0x3a,0x45, +0xf5,0xa7,0x80,0xd1,0xa0,0xc3,0x9f,0x40,0x15,0xed,0x25,0xb8, +0x69,0x53,0x23,0x63,0xad,0x73,0x1f,0x3f,0xfe,0xbe,0x14,0x3e, +0x14,0x18,0x40,0xe9,0x14,0x1d,0xb8,0xab,0x2c,0xfa,0x70,0xdd, +0x19,0x59,0x2d,0x2a,0xaf,0x79,0xa3,0x0c,0x99,0xb4,0xc8,0x8a, +0xc0,0x62,0xf8,0xe8,0x36,0x6c,0x49,0x80,0x70,0xe6,0xb1,0x4e, +0x1c,0x7e,0x16,0x81,0xd3,0x8e,0x6d,0x54,0xb6,0x3e,0x79,0xfc, +0x84,0xe5,0xcc,0xf5,0x5c,0xaa,0x89,0xec,0x7b,0xee,0x6e,0x59, +0x01,0xbb,0xf9,0xe9,0x2f,0xe2,0x60,0x36,0x50,0xa5,0x1f,0xd1, +0x13,0xf4,0x8d,0x50,0x1f,0x67,0x98,0x01,0xe5,0x4f,0x61,0xa0, +0x3e,0x2e,0xc1,0xd9,0x38,0x56,0xd0,0x15,0x7f,0x20,0x47,0xfc, +0x7c,0xcc,0x7d,0xdd,0x04,0xdc,0xc6,0x55,0xd6,0x96,0x35,0x15, +0x34,0x0b,0x7d,0xb8,0x93,0x30,0xde,0xf0,0x29,0x18,0xf1,0xa0, +0x8f,0x46,0x04,0x8c,0x40,0x19,0x8d,0xf8,0xc9,0x62,0xdd,0xc8, +0x5c,0x02,0x6f,0xfa,0xf1,0x0d,0x4c,0xd3,0xc3,0x1b,0xc8,0x64, +0xa6,0x01,0x9e,0xc1,0x4d,0x66,0xe2,0x66,0x0c,0x47,0x1d,0x2e, +0xcd,0x44,0x06,0x5b,0xb9,0xa6,0xac,0x9c,0x5a,0x15,0x08,0x17, +0x17,0xf5,0x33,0x7e,0x88,0xd9,0x38,0x86,0x58,0xac,0x37,0xd0, +0x55,0xdd,0xdd,0x60,0x47,0x7f,0xbd,0xfa,0xf8,0x59,0xf7,0x53, +0x01,0xdd,0x25,0x7b,0x76,0x9c,0x16,0x38,0xc9,0x62,0xca,0x22, +0x48,0xb4,0x2c,0xa3,0x38,0x1f,0xa3,0xd1,0x61,0x01,0xbe,0x63, +0x64,0x5a,0xcc,0x12,0x27,0x93,0x9b,0xa2,0xd0,0x29,0x09,0xd7, +0x98,0x8e,0x88,0x1a,0x35,0xc3,0x28,0xb8,0xa9,0x8b,0x7f,0x59, +0xc3,0x5f,0xbb,0xa5,0x35,0x56,0xff,0x54,0xee,0xe2,0x47,0x8f, +0x8a,0x9f,0x10,0x88,0xc7,0x65,0x18,0xcf,0xc1,0xb5,0xe9,0xb0, +0x0c,0x2e,0xe2,0x32,0x5e,0x4a,0x06,0x81,0x94,0xfb,0x57,0xb8, +0xe4,0x7b,0xd7,0x94,0xd0,0xbd,0x35,0xfe,0xd5,0xbe,0x2c,0x66, +0x5e,0x47,0x4a,0x2a,0x4a,0xca,0x2a,0x4b,0x9b,0x5c,0xf2,0xe9, +0x5e,0xd7,0xbd,0x01,0x1e,0x3e,0x02,0x58,0x4a,0x32,0xd2,0xe6, +0xd6,0xea,0x50,0x6d,0xd3,0x53,0x45,0x3d,0x5b,0xad,0xdb,0x9d, +0x2a,0x84,0xd1,0x15,0x67,0x89,0x8f,0xa3,0x9d,0x9d,0x85,0x6f, +0xab,0x33,0x1d,0xa8,0xeb,0xe8,0x2c,0x6f,0x13,0xc4,0x20,0x35, +0x12,0x52,0xed,0xd7,0xb4,0xb7,0x4c,0x7e,0x80,0x16,0xfa,0x14, +0xb8,0x66,0x33,0x78,0xf5,0x48,0x27,0x27,0xea,0x43,0x1a,0x0f, +0x95,0x9a,0x1e,0xa1,0x19,0xfe,0x99,0xce,0x29,0xee,0x82,0x98, +0xbd,0x9a,0xf4,0x48,0x63,0xbf,0x35,0x5e,0x83,0x6f,0x2d,0xe0, +0xed,0x16,0x49,0x4d,0xfe,0xcf,0x99,0xbd,0x92,0xe6,0x23,0xc6, +0xde,0xb6,0x8f,0xac,0x26,0x83,0xa3,0x1c,0x9f,0x5e,0x9a,0x5a, +0x92,0x54,0xaa,0x97,0x46,0x1d,0xf1,0xa3,0x75,0x38,0x11,0x65, +0x6b,0x5b,0xac,0xe9,0x97,0x03,0xd7,0x1f,0x74,0x7e,0x2d,0x8c, +0xac,0xc5,0x5b,0x04,0x05,0x2e,0xaa,0x3d,0xaa,0xad,0x49,0xe9, +0xce,0xe8,0x44,0xfe,0x2c,0xf3,0xf3,0x53,0xbb,0x05,0x5c,0x6c, +0x06,0x73,0xb9,0xb0,0xed,0xa1,0x9a,0xc7,0x18,0xfb,0xfa,0x89, +0x3b,0x7b,0x58,0x66,0x1b,0x76,0x64,0xbf,0xf1,0x4c,0xfc,0x84, +0x4b,0x37,0x97,0xc1,0x38,0xee,0x75,0x55,0xc9,0xb7,0xe9,0x2a, +0xd1,0x09,0x51,0x89,0x51,0x0c,0x0e,0xa7,0xf5,0xe1,0x04,0xc6, +0xbe,0x62,0x06,0x2e,0x0c,0x08,0x30,0x91,0x43,0x2d,0xf0,0x20, +0x7e,0xbc,0x7b,0xa4,0x73,0xa4,0x93,0xb2,0x94,0xc1,0xc5,0xf6, +0xc6,0x74,0x47,0xb7,0x0b,0x30,0x57,0x4e,0x86,0xf6,0xdd,0xf0, +0x6a,0xf1,0xad,0x69,0xa5,0x8e,0x25,0x3b,0x1b,0x8c,0x73,0x05, +0xdc,0x2b,0x8d,0x27,0x49,0x7d,0x09,0xfd,0xf1,0x7d,0xcc,0x1c, +0xee,0xac,0xe9,0x19,0xd3,0x08,0x4b,0x01,0x97,0x5f,0x22,0x4e, +0x25,0x1a,0xf5,0xa6,0x79,0x5e,0x76,0xf4,0x4a,0xd0,0x2d,0xb7, +0xc6,0x00,0xd6,0xed,0x8d,0x46,0x96,0x13,0xc5,0x7a,0x88,0x7d, +0xf1,0xfd,0x17,0xfa,0x4d,0xe2,0x28,0x73,0x10,0x93,0x93,0x0c, +0x12,0x76,0x18,0xc1,0x06,0xce,0x0b,0xb7,0xea,0xe3,0x7a,0x1c, +0x8f,0xb3,0x1a,0xac,0x69,0x5d,0x5b,0x75,0x5f,0xd9,0xb0,0x80, +0xf7,0x86,0x6e,0x40,0x9c,0xf6,0xb0,0xe8,0x8d,0xc3,0x7c,0xfe, +0x8d,0x9c,0xbb,0xe9,0xf7,0x04,0x26,0xb7,0x46,0xff,0x02,0x6b, +0x26,0x90,0x3a,0x14,0x02,0x49,0x9b,0xe0,0x1b,0x53,0x58,0x36, +0x4a,0x06,0x46,0x08,0xa8,0x70,0x78,0x1b,0x67,0x12,0xb4,0x3c, +0xb5,0xc0,0x43,0x4d,0xb9,0xcb,0x4b,0x56,0xff,0x8f,0x44,0x16, +0x24,0x6d,0x94,0xea,0x98,0x2a,0xea,0x96,0x36,0x13,0x71,0xb3, +0x99,0xb4,0x99,0x87,0xa2,0x58,0x02,0x35,0x10,0x87,0x35,0xfc, +0x64,0xf0,0x14,0xfd,0xc8,0x69,0x98,0xfc,0xb4,0x7b,0x3d,0x18, +0x9b,0xa3,0x31,0x8e,0xb7,0xfc,0x83,0x0b,0xc5,0x4f,0xbc,0x70, +0x81,0x26,0x4e,0xaa,0xb5,0xa1,0xfd,0xbf,0xe6,0xbe,0x89,0xf9, +0x96,0xd1,0xde,0xa4,0x3e,0x31,0x93,0xd1,0xde,0xc8,0xe8,0x33, +0xca,0x7d,0xb8,0xa2,0xaa,0xce,0x12,0xe6,0x9f,0xca,0x38,0x75, +0xee,0x44,0xd8,0x8c,0x5f,0xe0,0x3e,0xf9,0x6b,0x6c,0xaf,0xf8, +0x04,0xbc,0xa1,0x85,0xbf,0xa9,0x58,0x22,0xdc,0x4f,0xca,0xdd, +0xc6,0x65,0x97,0x1b,0x55,0x5b,0xd5,0xef,0x6d,0x9e,0x01,0x04, +0x3c,0x71,0x4d,0x2b,0xe8,0x36,0xa3,0xee,0x80,0xb5,0x29,0xee, +0x72,0x84,0x5d,0xf6,0xb8,0x92,0xf9,0xd7,0x14,0xce,0xdf,0xc2, +0xdc,0x5e,0xcb,0xb9,0xd8,0x9e,0x7e,0xd5,0x79,0xb5,0x37,0xf9, +0xbe,0x10,0x8f,0x16,0x9d,0x60,0x11,0xcf,0x25,0x99,0xb6,0x5b, +0xdf,0xb2,0x4f,0x71,0xa6,0xf7,0xb8,0xe6,0x2c,0xa6,0xb0,0x46, +0x5a,0x30,0x9f,0xc7,0x4a,0xfc,0x88,0xdc,0x87,0xb5,0xdb,0x79, +0xd8,0x36,0xfd,0x3e,0x6c,0xd8,0xce,0x4b,0x11,0x38,0x95,0x3c, +0x86,0xb5,0x9b,0x15,0xdf,0x3c,0x86,0x0d,0x9b,0x79,0x2c,0xc6, +0x48,0x82,0x33,0x71,0x1c,0xcc,0xe4,0x61,0x35,0x6b,0x0e,0x50, +0x3c,0x52,0x6a,0x26,0x8f,0x09,0x6f,0x49,0x5a,0x70,0x9a,0x57, +0xf2,0x9e,0x8a,0x34,0x1a,0x56,0x7c,0xb4,0xfa,0x18,0x83,0x9c, +0x95,0xb3,0x48,0x66,0x5e,0x5e,0x53,0x62,0xb1,0x77,0x2a,0x0d, +0xdb,0xbb,0xdf,0xf5,0xa8,0xe2,0xe1,0x35,0xb3,0x45,0x20,0x55, +0x59,0x15,0x17,0xcb,0x0a,0xaa,0xbc,0x9a,0x7c,0xba,0x7c,0x35, +0x3d,0x57,0x07,0x2c,0x3c,0x90,0x6b,0x49,0x61,0x6c,0xc1,0x6f, +0xd5,0x4f,0x5b,0x1f,0xb8,0x7e,0xe7,0xfd,0x5b,0x50,0x5e,0x2f, +0x5d,0x9d,0xb3,0xb5,0x48,0xa7,0xec,0x46,0x53,0x5f,0x67,0x4d, +0xbf,0xd0,0xc6,0xee,0x51,0x5a,0x76,0x72,0x4e,0x62,0x8e,0x59, +0x2a,0xf5,0xd2,0xd2,0xd4,0x5a,0xe9,0x2c,0xe0,0x58,0x16,0x39, +0x1b,0xee,0x75,0xc3,0xf8,0xdc,0x6f,0xd9,0x0e,0xad,0x7f,0x7d, +0x70,0x65,0xe4,0x32,0xa8,0xf3,0x87,0xb5,0x2c,0x71,0x9c,0xed, +0x3a,0xe1,0xb6,0x66,0xd3,0xb6,0x2d,0x4a,0x26,0x47,0x7c,0xcd, +0x94,0xed,0xb8,0x64,0x1d,0x59,0x2f,0x77,0xb7,0xb9,0xed,0xcf, +0xef,0xed,0xbf,0x31,0xba,0xac,0x22,0x0e,0xc1,0x49,0xe2,0xe3, +0x62,0xef,0x66,0xec,0x65,0x5c,0x6e,0x5b,0xed,0x5e,0x9b,0x90, +0x48,0xa1,0x17,0x6b,0x09,0xbe,0xb4,0x86,0x97,0xdc,0x1d,0xac, +0x27,0xbd,0xe8,0xfb,0x1c,0xc2,0xfa,0x30,0xec,0xba,0xb1,0x0e, +0x12,0x3e,0x21,0x2b,0x21,0x3b,0x2e,0xdb,0x2a,0x9d,0xee,0xd7, +0x76,0xd9,0x6d,0x64,0x5d,0xcb,0x84,0x4e,0x49,0x49,0x45,0x5e, +0x8d,0x00,0xab,0xd7,0xa2,0x95,0x1c,0xac,0xd6,0x62,0xbb,0x99, +0xf8,0x67,0x3f,0x26,0x3c,0xe7,0x14,0xb3,0x3c,0x1f,0x93,0x0b, +0x8e,0xe0,0x9f,0x2c,0x3b,0xc2,0x5b,0x5e,0x3c,0x7c,0x59,0x19, +0x7e,0xe4,0x9a,0x53,0x53,0xcb,0x55,0x2a,0x79,0xcb,0x54,0x99, +0x1d,0xbe,0xe0,0xf7,0x84,0xc7,0x15,0xa8,0xa4,0xf0,0x50,0x95, +0x76,0xb6,0x19,0xcb,0x8f,0xc9,0xfa,0xc5,0x4f,0xf8,0x23,0x07, +0xf6,0x87,0xf8,0x1d,0xac,0xf1,0xa6,0x35,0x85,0x35,0x75,0x39, +0x95,0x42,0x83,0xb4,0xb2,0x1f,0xbe,0x6f,0xc1,0xef,0x3b,0x8d, +0x18,0x3a,0xbe,0x45,0x07,0x1e,0x63,0x0f,0xa3,0xba,0xfe,0x1c, +0xe5,0x56,0x5b,0xd9,0x5d,0x98,0x9a,0xcb,0x70,0x30,0x59,0x09, +0x56,0x42,0xaa,0x31,0x2f,0x6e,0xc4,0x2b,0xe4,0x49,0xa3,0xfa, +0x4f,0xd2,0x93,0xa5,0x9b,0x9d,0x1f,0x33,0x10,0xe3,0x22,0x0f, +0x9e,0x39,0x74,0xfa,0xb0,0x80,0xd7,0xec,0x59,0xbf,0x76,0xd4, +0x5f,0xee,0x8e,0x3b,0x0f,0xa6,0xda,0x51,0x70,0xbd,0x08,0x1f, +0xf4,0xb7,0x31,0x72,0xd5,0xc0,0x9d,0x0d,0x3c,0xb3,0x2f,0xe2, +0x80,0x10,0x78,0xea,0x68,0x98,0xe7,0x4c,0x86,0xb7,0xa9,0xb6, +0x32,0xd0,0xe0,0x06,0x8b,0xb3,0x9a,0x52,0x54,0x92,0x4a,0xe2, +0x3b,0xa3,0x99,0x9f,0x3c,0xe3,0x62,0x33,0x2f,0x64,0x47,0x65, +0x0b,0x8a,0xba,0xec,0x27,0x30,0x8b,0xa0,0x4d,0x37,0xd8,0x70, +0xfd,0x96,0x44,0x51,0xc6,0xc7,0x63,0x81,0x33,0x31,0x47,0x9b, +0x3e,0x1e,0xe2,0xa7,0x83,0x9f,0x39,0xfa,0x71,0x93,0xff,0xa9, +0x0b,0x66,0xa4,0x1f,0xcb,0xe2,0x78,0x18,0x6b,0x8c,0x63,0xf9, +0x08,0xf4,0xe3,0x13,0xba,0x63,0x7a,0xa2,0x3a,0x99,0x2c,0x80, +0x43,0x52,0xdc,0x13,0x0e,0x2c,0x12,0xc0,0xa8,0x00,0xe6,0x55, +0x7a,0xf6,0x50,0x54,0xf6,0x42,0xb7,0x60,0x74,0x0d,0x13,0xf0, +0x5b,0x1e,0x57,0x06,0xe1,0xa6,0x45,0x38,0x5b,0xb9,0xcb,0xb1, +0xff,0xab,0xca,0x1f,0x72,0x5e,0xcd,0x80,0x3d,0x5c,0xf0,0x9a, +0xcd,0x72,0x5c,0xb4,0xb3,0x44,0x4e,0x61,0xc1,0xbd,0xdf,0x6f, +0xc5,0xbe,0x63,0xd2,0x3d,0x09,0xc7,0xc3,0x18,0x23,0xd8,0xbe, +0xb1,0xb0,0x8f,0xe2,0x9a,0x07,0x2b,0x7a,0xf6,0x3c,0x13,0xa4, +0xf9,0x62,0x21,0x71,0xa8,0x97,0x37,0x58,0x94,0x7b,0xdb,0xd2, +0x3e,0xaf,0x76,0x8f,0x36,0x17,0x21,0x09,0xdd,0x89,0x4d,0x8b, +0x76,0x97,0x41,0x35,0xc3,0x8b,0x4b,0x6e,0x97,0xec,0x7b,0x6c, +0x85,0x91,0xe9,0x4d,0x44,0x32,0x85,0x09,0xa2,0x29,0x57,0x89, +0xc5,0xc4,0xb9,0xc4,0xac,0xc4,0x3e,0x6b,0x8f,0x3b,0xed,0x3c, +0xd0,0xeb,0x5f,0xb7,0x57,0x18,0x5d,0xd2,0x48,0xbc,0x71,0x9c, +0x3d,0x4e,0xd8,0xb5,0xa0,0xcb,0x95,0xde,0x81,0x31,0x3d,0x8a, +0x9a,0x59,0x61,0xf2,0x15,0xf1,0x03,0xf2,0xc3,0xf0,0xcd,0x9b, +0x89,0xf7,0x98,0x2f,0x39,0xf4,0xc3,0x7c,0xe6,0xb4,0xd1,0xb1, +0x67,0x94,0x61,0x1e,0x8e,0x2b,0x6f,0x46,0xe5,0xdf,0x8f,0x26, +0x47,0x9c,0x0f,0x3d,0x31,0xe3,0x64,0xa8,0xec,0x74,0x3f,0x18, +0x77,0xa1,0x31,0x18,0x9b,0x31,0xc7,0xb7,0xb4,0x82,0x9d,0x9c, +0xb7,0xf6,0x76,0x9d,0x2d,0xb6,0x02,0xa8,0x41,0x35,0x09,0x6e, +0xf4,0x69,0xdf,0x53,0xee,0xbe,0x87,0x96,0x78,0x56,0xd8,0xe6, +0xba,0x0b,0x90,0x05,0x0b,0x49,0x88,0xab,0xaf,0xb5,0xb7,0x67, +0x4d,0x00,0xad,0xae,0x2b,0xef,0xb8,0xd8,0x2c,0x5c,0xc6,0xc5, +0x44,0xca,0x11,0xa7,0x8b,0x39,0x68,0xc9,0xd8,0x4b,0x72,0x75, +0x52,0xa5,0x00,0x16,0xbd,0x12,0xeb,0x6e,0x76,0xdc,0x49,0xdf, +0x13,0x9e,0x8c,0x59,0x6b,0xe0,0x32,0xf2,0x1b,0x14,0x2c,0xe0, +0xad,0xc6,0xcf,0xc5,0x82,0xdf,0x79,0x3c,0x8d,0x32,0x52,0xbd, +0xbf,0x36,0xa0,0x30,0xb8,0xbc,0x8a,0xfa,0x15,0xba,0x17,0xfa, +0xe4,0x08,0xce,0x78,0x92,0x1c,0x4d,0x09,0x8d,0x39,0x79,0xe2, +0xe4,0x09,0x7a,0xfa,0x42,0x52,0x4e,0x7c,0x7e,0x4c,0xd1,0x0c, +0x30,0xeb,0x46,0xa3,0x38,0xee,0x07,0xd3,0x95,0x2c,0x00,0xdb, +0x58,0x82,0x39,0x7f,0x78,0xad,0xa1,0x21,0x0a,0x1a,0x65,0xf6, +0xf4,0x79,0xdf,0xd5,0xe1,0xca,0x9e,0xb8,0xc4,0xd8,0xf3,0x09, +0xa7,0x60,0x25,0x52,0x5a,0xd3,0x22,0x83,0xb1,0x50,0x41,0xa0, +0x00,0xc7,0x61,0x01,0x07,0x3a,0xec,0x34,0x9d,0x5e,0xd7,0x2d, +0xdb,0xac,0x6b,0x1b,0xa9,0x5d,0xbb,0x5e,0xbb,0x55,0xb5,0x80, +0x03,0xcc,0x23,0xef,0xd4,0xf5,0xb6,0xb7,0xf6,0x39,0x54,0x50, +0x57,0x6b,0x33,0x07,0x5d,0x6f,0x61,0x32,0x08,0x23,0x4d,0x04, +0x9d,0x79,0xcc,0x3b,0x86,0x76,0xbb,0x71,0xa6,0x72,0x8f,0x85, +0xec,0x3e,0xac,0xc8,0x80,0x20,0xa8,0x50,0x82,0xa5,0x23,0x29, +0xbd,0xbc,0xf4,0x0d,0x76,0x13,0xdc,0xd9,0x07,0xf3,0xf9,0xd8, +0xe8,0xe8,0xd8,0xd3,0xca,0xdf,0x69,0x54,0xd6,0x6e,0xb8,0x71, +0x22,0x31,0xfc,0xc2,0x89,0x13,0x33,0x42,0x59,0x63,0xd6,0xc3, +0xa7,0x9d,0xf8,0xe9,0x55,0xae,0x35,0xb6,0x39,0xbe,0x21,0x39, +0xb0,0x8d,0xee,0x5f,0x3b,0x2b,0x7c,0xf1,0xcc,0x04,0x6b,0x59, +0x7d,0x43,0xd4,0x85,0x06,0x15,0x13,0x9c,0x6b,0x0d,0x93,0xf8, +0xfd,0x36,0xf6,0xb6,0x1b,0xe5,0x65,0x76,0xf4,0x46,0xcb,0x95, +0x6b,0x71,0x03,0x82,0x78,0xb7,0x8c,0x74,0xe2,0xba,0x2b,0x7c, +0x5b,0x5c,0x6b,0x7c,0xe3,0xfb,0xdf,0xad,0xc6,0x71,0xe1,0x8b, +0x14,0x3f,0x6c,0x68,0x8c,0xba,0xd0,0xc8,0x7e,0x38,0xdf,0x1a, +0x3e,0xe2,0xf7,0xdb,0xdb,0x39,0x2c,0x34,0x2d,0x75,0xa0,0x4f, +0x5b,0xaf,0xf5,0x25,0x5d,0x12,0x62,0x71,0x47,0x2f,0x68,0xc5, +0x71,0x09,0xc6,0xd7,0xe5,0x8f,0x6d,0xca,0xdb,0xe8,0xfa,0x4e, +0xd3,0x8e,0xa0,0x76,0x41,0xb2,0x97,0x90,0x74,0x88,0x2e,0x36, +0x83,0x4c,0x1d,0xdc,0x97,0x26,0xf0,0x62,0x26,0x43,0x12,0xc9, +0xe5,0xb9,0xe8,0xc2,0x49,0x2e,0xa8,0x44,0x44,0x97,0x55,0x8a, +0x4c,0xef,0x3f,0xb5,0x47,0x8e,0x93,0xfe,0xd1,0x07,0x4c,0x53, +0x62,0xd1,0x71,0x5c,0xaf,0x87,0x53,0x94,0xbb,0x6c,0x65,0xf7, +0x60,0x7e,0x3a,0xe8,0x41,0xb9,0x12,0x58,0xf1,0x10,0xc5,0x3c, +0x36,0x36,0x3a,0x2a,0xe6,0xac,0xf2,0xcb,0x9d,0xe5,0xf5,0xea, +0xd7,0x4e,0x26,0x9c,0x8c,0x3e,0xc9,0xfa,0xce,0x09,0xd9,0xe9, +0x2b,0x30,0xb9,0x13,0x27,0x7f,0xc9,0x35,0xc7,0x36,0x25,0xd4, +0x27,0xfd,0x77,0x73,0x1b,0x9a,0xa2,0x62,0x1a,0x55,0x76,0xe1, +0x62,0x6b,0x20,0xfc,0x41,0x63,0x3b,0xf3,0xd5,0x66,0xe5,0xf6, +0xf4,0x71,0x67,0xe7,0xa5,0xc4,0x21,0x21,0x0e,0x3d,0xfb,0x38, +0xf8,0x8d,0x05,0xd8,0x78,0x2e,0xd5,0xa8,0xcb,0xe2,0xa5,0x69, +0x59,0x33,0x9d,0x77,0xcd,0xbe,0x2b,0x98,0x85,0x5e,0xd5,0x4e, +0x54,0xbf,0xc7,0xb5,0xff,0xcf,0x86,0xa8,0x7f,0xdf,0x10,0xbb, +0x51,0xd5,0x1a,0xa6,0xf1,0xfb,0x4d,0xed,0xad,0x16,0xe8,0x95, +0x3a,0xd3,0x97,0xbd,0xad,0x3d,0x19,0x97,0xd8,0x21,0xfd,0x7a, +0x38,0x98,0x8a,0x53,0x18,0x20,0xd6,0xbc,0x34,0xc2,0x5c,0xd4, +0x04,0x2f,0x23,0xf4,0xc2,0xa5,0xe6,0x23,0xc5,0x7d,0xf8,0x0a, +0xa6,0x32,0x1a,0x36,0x06,0x80,0xc4,0x85,0xc4,0x86,0xc4,0x1e, +0xea,0xc8,0xa6,0x21,0x77,0x82,0xee,0xed,0x1d,0xb4,0x55,0xcc, +0xa4,0x49,0xf1,0x4d,0xf1,0xb6,0x8a,0xb0,0x3c,0x2d,0x3f,0x73, +0xed,0xc9,0x2d,0xe0,0x86,0x81,0xb3,0x2a,0xa1,0xfe,0x06,0x9e, +0x3a,0x1e,0x86,0x07,0x0a,0x82,0x0b,0x82,0xf3,0xeb,0x2f,0x57, +0xdf,0x29,0xbe,0x61,0x99,0x4f,0x83,0xf4,0x7c,0x75,0xbc,0xcd, +0x8f,0x64,0x1c,0x4e,0x3b,0x9a,0xe6,0xe5,0x48,0xfb,0x6c,0x7b, +0xe5,0x1d,0xc6,0x81,0x6e,0x81,0x1e,0x41,0xbe,0x3e,0x91,0xde, +0xe7,0x7c,0x22,0xe3,0xcc,0xe8,0x40,0xf4,0x50,0xcc,0x60,0xac, +0x20,0xad,0x18,0x12,0xd7,0xf0,0x55,0x31,0x95,0x31,0x15,0xb1, +0x82,0xd8,0xb1,0x94,0xc0,0x6f,0xe8,0xfd,0x1d,0x44,0xf7,0x60, +0xf4,0x4b,0xb3,0x55,0x18,0x6e,0x01,0xe1,0x6a,0xe8,0x8a,0xbf, +0x81,0x3e,0xef,0xb9,0x51,0x7d,0x0d,0x0a,0x5b,0x2b,0x6c,0x29, +0x70,0x8f,0x5e,0xfc,0x90,0xf9,0x9a,0x79,0xed,0xb5,0x3e,0xb8, +0x16,0xc7,0x65,0x2d,0xfb,0x66,0x25,0x7c,0xa8,0x5e,0xd9,0x4e, +0xf1,0xc3,0x6f,0x36,0x3d,0xf5,0xfc,0x5a,0xd8,0x02,0x9d,0x04, +0x23,0x71,0x05,0x44,0xf2,0xe0,0xc1,0xa2,0x1c,0x44,0xb2,0x7e, +0x1f,0xc9,0xe3,0x0f,0x60,0x48,0xf2,0x1c,0x72,0xac,0x33,0xcd, +0x9a,0x33,0xe9,0x91,0xfe,0x03,0x3d,0x41,0x2d,0x02,0xb8,0xa0, +0x06,0x29,0xea,0xcc,0xe9,0x4d,0xeb,0xb5,0x4f,0xa7,0x27,0x2c, +0x0e,0x5a,0x04,0xd9,0x0b,0x92,0x3a,0x8e,0x25,0x99,0x26,0x29, +0x3a,0x89,0x7a,0x5d,0x59,0x34,0xec,0xd2,0xd1,0xdb,0x47,0x7a, +0x05,0x2c,0xc1,0x36,0x52,0xff,0x2c,0xf7,0x97,0xd4,0x5f,0x2c, +0x13,0x69,0xa8,0xda,0xfe,0x35,0x6e,0xea,0x8a,0xa7,0xd4,0x41, +0xea,0xff,0x4f,0x97,0x2d,0x85,0x30,0x21,0x95,0xba,0xb6,0x7b, +0xf7,0xcb,0xad,0xe5,0x3d,0x54,0xfd,0xb6,0xf5,0x9d,0x03,0x77, +0x04,0x2d,0x2e,0x78,0x9b,0xc3,0xe6,0x05,0x9a,0x65,0x72,0xfa, +0xf3,0xdd,0x81,0xe7,0xe9,0x0c,0xeb,0x37,0x8e,0x9a,0x10,0xa7, +0x13,0xf6,0xa1,0x36,0x27,0x05,0xe8,0x80,0xcf,0xfb,0xf0,0x73, +0x98,0xf8,0xaa,0x17,0x4f,0xc9,0xbf,0x63,0xbc,0x6f,0xa9,0x39, +0x2c,0xc5,0x4b,0xbc,0xfc,0xa4,0x79,0xb8,0xfc,0x54,0x92,0x11, +0x85,0x29,0x99,0xf0,0x79,0xc9,0x0f,0xc5,0x02,0x9c,0x65,0x80, +0xfa,0x7f,0xd6,0x2a,0x04,0xcf,0x90,0x8c,0xbe,0xd4,0xa1,0xc4, +0x3e,0xbb,0x14,0x1a,0x66,0x18,0x6a,0x7e,0xc4,0x5a,0xc0,0x63, +0x30,0x8f,0xe4,0x9b,0x15,0x6c,0x4a,0x31,0xe9,0xcc,0xa0,0xc7, +0x87,0x02,0x9f,0x06,0xf7,0x31,0x6d,0x5b,0xcf,0x0e,0xda,0xdb, +0xde,0x35,0x58,0xdf,0xef,0x5c,0x4e,0x3d,0x2c,0xac,0x4d,0xed, +0x9c,0x05,0xd7,0xc1,0xe0,0xa1,0x6e,0xa5,0x7c,0x88,0xe9,0xc5, +0xf1,0x7c,0xc1,0x8f,0x39,0x30,0x26,0xe3,0xa5,0x80,0x8f,0xb9, +0xb8,0x82,0xd8,0x82,0x98,0x1c,0xe3,0x68,0x7a,0x6c,0x6b,0xe0, +0xec,0x3d,0xcb,0x05,0xf8,0x81,0x3b,0xe5,0x1f,0xee,0x7f,0x6a, +0xaf,0x20,0x7d,0x20,0x87,0x10,0x69,0x1b,0xf2,0x8a,0xca,0xcd, +0xef,0xb8,0xae,0xcc,0x8c,0x6e,0x15,0x48,0x8f,0xe3,0x93,0x57, +0x7f,0xb9,0x02,0x66,0x2c,0x64,0x6d,0xa7,0xdb,0x62,0xd6,0xe5, +0xd4,0x23,0x48,0xcd,0xe2,0x6b,0x92,0xba,0xa6,0x7f,0xd7,0x8f, +0xdb,0xca,0x7a,0xe8,0xda,0xdb,0x96,0x77,0x83,0xef,0x08,0x3b, +0x58,0xd3,0xd9,0x6e,0x9e,0xab,0x59,0x66,0x4e,0xff,0x71,0x6f, +0xf8,0x59,0xfa,0xf7,0xac,0xb9,0x70,0x3b,0x49,0x28,0x4c,0xac, +0x4d,0xaa,0x13,0x20,0x97,0x3b,0xb3,0xf7,0x94,0x47,0xb8,0x9b, +0x62,0xa0,0x3d,0x9b,0xc0,0x9c,0x3e,0x9c,0x03,0x13,0x7f,0xe9, +0xc3,0x28,0xf3,0x1f,0x59,0x3b,0xae,0x36,0x67,0xa4,0x68,0x88, +0x33,0x0b,0x35,0x09,0x33,0x3b,0x95,0xcc,0xda,0x71,0x62,0x26, +0x4c,0x2f,0x7a,0x51,0x78,0xb6,0x9f,0x7a,0x9e,0x74,0x0d,0x73, +0x09,0x13,0xe0,0x26,0x04,0x12,0xdf,0x6a,0xeb,0x56,0xd7,0x52, +0x1f,0x0f,0x5a,0xe3,0xdf,0x69,0x5f,0xe5,0x2e,0xa0,0x3d,0x8e, +0x27,0x99,0xbd,0xa9,0x43,0x49,0x7d,0xb6,0xac,0x8d,0x8c,0x4e, +0x98,0x1f,0x66,0x6d,0x74,0x0a,0x54,0x49,0x81,0x79,0xc1,0xa6, +0xd4,0xbf,0xdb,0x68,0xef,0xd3,0x7d,0xbd,0x4c,0x61,0x6a,0x10, +0x07,0x63,0xcd,0x5d,0xfa,0x8e,0xa5,0xb6,0xf4,0x46,0xe7,0x97, +0x77,0x9a,0x2f,0x31,0x80,0xed,0x10,0xdd,0x48,0x78,0x46,0x58, +0xd4,0x89,0xd0,0xe3,0x0c,0xde,0xe1,0xf3,0x77,0x7d,0xb3,0xc0, +0xd4,0x04,0x4d,0x71,0x96,0xb9,0xe2,0x11,0x9a,0xf8,0x89,0x2b, +0xce,0x5d,0xfa,0x3e,0xd1,0x7a,0x1f,0xc6,0x94,0xfc,0x11,0xab, +0x48,0xb4,0x16,0x0f,0x8a,0x71,0x8a,0x44,0x6b,0xf4,0x69,0xe5, +0xaf,0x51,0xad,0xb6,0x5e,0x26,0x3e,0x82,0xab,0x04,0x83,0x60, +0x02,0x77,0x3f,0xf9,0x56,0x5a,0x7f,0xc6,0x9e,0x6e,0x8a,0x13, +0x7d,0xd0,0x20,0x10,0x1d,0x43,0x05,0x2c,0xe7,0xd1,0xfb,0x28, +0x6a,0xc8,0x71,0x96,0x72,0xa7,0xbb,0x6c,0x18,0x96,0x64,0x81, +0x35,0xf8,0x29,0x3d,0x07,0xff,0xc5,0xb8,0x4e,0x6a,0xeb,0x1f, +0x86,0x3a,0xa3,0x01,0xb1,0x0d,0x77,0xff,0x0c,0x41,0x8c,0x37, +0xc2,0x1c,0x72,0x27,0xe6,0x7e,0xdc,0x1d,0x26,0x26,0x3f,0x40, +0x7f,0x1e,0xc6,0x61,0x07,0x79,0x05,0xf5,0xcb,0x78,0x9b,0xf1, +0x4b,0xb1,0xfe,0x27,0x1e,0xe7,0x8d,0x87,0xfa,0x45,0x58,0xcf, +0x4d,0x1e,0x59,0x0a,0x97,0xc9,0x91,0x88,0xc3,0x11,0x87,0x22, +0x84,0xa8,0xac,0xf3,0xd9,0x39,0x4a,0xe2,0x11,0x86,0xc9,0xb8, +0xc2,0x14,0x56,0xe0,0x1a,0x5c,0x62,0x06,0x4b,0xb6,0xf0,0xc1, +0x91,0x07,0x22,0x0f,0x2a,0x1b,0x1c,0xd6,0x3d,0x6a,0x1a,0x96, +0x66,0x4a,0xbb,0x13,0x07,0x52,0xfb,0xd2,0x0f,0xa1,0xcc,0x56, +0x6f,0x85,0x4e,0xad,0x3d,0xfd,0xe3,0xcb,0x81,0xa7,0x59,0xb0, +0xe8,0x62,0x7c,0x6e,0x42,0x4e,0x82,0xf0,0xce,0x8b,0x30,0x88, +0x5d,0xdf,0x8f,0xeb,0x41,0x13,0x76,0xb0,0x90,0x04,0xf3,0x8d, +0xff,0x9a,0xc3,0x08,0x1f,0xec,0x1a,0xe0,0xff,0xfa,0x40,0xfc, +0x9a,0x98,0x41,0x56,0x3f,0x8f,0x5d,0x38,0x9b,0x11,0xfd,0x47, +0x03,0x3c,0xd6,0xa3,0x0a,0xfb,0x2e,0x91,0x7d,0x67,0x36,0xbe, +0x0f,0x13,0xff,0x5d,0xa0,0xec,0xc8,0x62,0x5d,0xb2,0xa2,0x40, +0xd9,0x09,0x0a,0x08,0xae,0xc5,0x45,0xb0,0x96,0x71,0xfa,0x84, +0x91,0x17,0x44,0xae,0xba,0x63,0xbd,0x9a,0x76,0x8d,0x25,0x7d, +0xf5,0xe5,0xc3,0x9f,0x87,0xde,0xb1,0xbb,0x2a,0x9d,0x27,0x07, +0xc3,0xf7,0x9f,0xda,0x7f,0x4a,0x88,0x4a,0x3f,0x9f,0x9e,0xa1, +0x24,0x86,0x1b,0xe1,0x3c,0xdc,0x6d,0x02,0xbb,0x99,0x11,0x5a, +0xa6,0xa0,0xb5,0x85,0x67,0x26,0x44,0x86,0x28,0x6b,0x85,0x6c, +0x3d,0xb2,0xfb,0x64,0x9a,0x31,0xbd,0x92,0x7c,0x33,0xfd,0x5a, +0x66,0x08,0x8e,0x97,0xeb,0xe1,0xd8,0xdd,0x55,0xcc,0xd7,0x3f, +0xbe,0x7f,0xfd,0x79,0x36,0x2c,0x2e,0x4a,0x28,0x4a,0xcc,0x4f, +0x12,0x60,0x9c,0x23,0x01,0x7d,0xb0,0x1c,0x60,0xaa,0x56,0x03, +0xdc,0x07,0xd1,0x1d,0xe6,0x19,0xfd,0x35,0x67,0x18,0x42,0xc1, +0x6b,0x80,0x1f,0xdd,0x2e,0xce,0x24,0x16,0xf3,0xd4,0xf0,0xc3, +0xa5,0x9a,0x15,0x72,0xda,0x52,0x5d,0x59,0x55,0x5c,0x29,0x48, +0xa6,0x43,0x62,0x06,0x5f,0xd6,0x54,0xd6,0x5e,0xd2,0xcd,0xb8, +0xb6,0x95,0x62,0x2a,0xc5,0xf6,0xef,0x60,0x16,0x44,0xe0,0xac, +0xe7,0xbf,0xc0,0x82,0xeb,0x3d,0x3a,0x8f,0xcc,0xb6,0xa0,0xca, +0x23,0xd3,0x2d,0x3b,0x2d,0x6e,0xe3,0x82,0x9f,0xd6,0xe2,0x2c, +0x8c,0x80,0x59,0x6a,0xb8,0xcd,0x1c,0xb6,0xa1,0xda,0x10,0xe3, +0x26,0xdb,0x39,0x31,0x33,0x9b,0xec,0xcd,0xda,0x9b,0x1d,0x98, +0x2b,0xa4,0xc1,0xb2,0x44,0xd8,0x01,0x6a,0x4a,0xa0,0x2a,0xe9, +0x98,0x82,0xb2,0x19,0xbf,0xf9,0xec,0x8e,0x70,0x3d,0x65,0xb7, +0x5e,0xaf,0x7e,0x9f,0x21,0x6b,0x6f,0xda,0xb4,0xad,0x43,0xa3, +0x67,0x97,0x1f,0xae,0xd4,0xc7,0x49,0x38,0x01,0x27,0x37,0x30, +0x22,0xcf,0xc1,0xa4,0x1b,0x30,0xb5,0x0a,0x16,0x0e,0xef,0xb8, +0xaa,0x7b,0xdd,0x4c,0x38,0x15,0xa9,0x18,0x86,0x59,0x1d,0xb6, +0xef,0xe0,0x8e,0x99,0x73,0xb8,0x2c,0x23,0xd9,0xaf,0xdc,0xab, +0xba,0xea,0x77,0x19,0x2a,0xd9,0xc7,0xb2,0x8e,0x67,0x1f,0x17, +0xb0,0x16,0xde,0x91,0xd4,0xa7,0x71,0x3f,0xfc,0xae,0xd4,0x07, +0x3a,0xab,0x58,0xe7,0x88,0x40,0xb5,0x13,0x8c,0x28,0xe8,0x0e, +0x18,0x5e,0x33,0xbb,0x23,0xe0,0x73,0xe8,0x23,0x4b,0x51,0xe5, +0x27,0xbe,0x1e,0x6b,0x08,0x2a,0xaf,0x05,0x65,0x1e,0x66,0xa3, +0x32,0x01,0xe5,0x6f,0x51,0x99,0xdd,0x92,0x73,0x23,0xf7,0x49, +0x90,0x5c,0x6e,0x80,0xd3,0x77,0x17,0x99,0xd3,0x96,0xc2,0xba, +0x82,0xb2,0x02,0xc1,0x06,0xac,0x3a,0xf8,0xa2,0xfd,0x15,0xc1, +0x75,0x41,0x65,0xbd,0x14,0xa7,0xdd,0xb6,0x1f,0x0a,0xea,0x14, +0x90,0xe0,0x3a,0xd2,0xd5,0x50,0xd6,0x98,0xd2,0x2a,0x24,0x70, +0x29,0xf6,0x25,0xae,0x5d,0x4e,0x82,0xf8,0xb5,0x74,0x86,0x04, +0x9f,0xd9,0x77,0x76,0xdf,0x19,0x41,0xbc,0x77,0xa3,0x5f,0xda, +0x63,0x76,0x43,0xfa,0x8b,0xdf,0x77,0x6e,0xdf,0xd9,0xe0,0x73, +0x89,0xa6,0x14,0x3e,0x48,0x81,0xc9,0xe9,0x30,0x36,0x5d,0xc0, +0xed,0x97,0x41,0x9b,0x2f,0x88,0x29,0xb8,0x90,0x17,0x23,0xe0, +0x4c,0xd1,0x85,0x60,0x00,0xac,0x86,0x00,0x4e,0xfa,0x48,0x7a, +0x4a,0x7a,0xb0,0xea,0x0e,0x94,0x41,0x23,0x7e,0x37,0xfa,0xf1, +0xe0,0x6b,0xa8,0x1d,0xc0,0xda,0xbb,0xfc,0xc8,0x02,0x71,0x22, +0x41,0x75,0xb6,0x9f,0x3a,0x8f,0x7b,0x37,0x13,0x0c,0x64,0x10, +0xc0,0x61,0x20,0x4e,0x20,0x10,0xb8,0x13,0x03,0x39,0xd1,0xe0, +0x20,0x81,0x00,0x5c,0xc6,0xed,0x3c,0xa9,0x11,0xa6,0x11,0xae, +0x58,0x5b,0x1a,0xa6,0x92,0x11,0xe6,0x55,0xa3,0xeb,0x78,0x70, +0x47,0xf6,0xeb,0xad,0xf8,0x41,0xf7,0x33,0x0d,0x95,0x96,0x9f, +0x8a,0x61,0x7c,0x0a,0x4c,0x13,0xea,0xd1,0x80,0x6f,0xbf,0x7c, +0xf5,0x59,0xcf,0xb7,0x42,0x3b,0x9e,0x37,0x07,0x2d,0xde,0x52, +0x5d,0x77,0x9d,0xb5,0xb1,0x20,0x07,0x1b,0xfe,0xe4,0xfc,0x83, +0xab,0xbd,0xb7,0x79,0x0e,0x04,0xde,0x38,0xf0,0xa5,0xf9,0x21, +0x5a,0xb0,0xba,0x42,0xbd,0x73,0xa7,0x97,0x89,0xa3,0xb5,0xdc, +0xa5,0x4a,0x4e,0xfb,0x1a,0x5b,0xbb,0x6b,0x2e,0x09,0x6b,0xbf, +0x86,0x09,0xe6,0xa0,0x39,0x53,0x9c,0xc4,0xa5,0x0d,0xcb,0x96, +0x8c,0x04,0x13,0x69,0x50,0xda,0x25,0x0e,0xf2,0x3f,0x48,0xba, +0x04,0xce,0xc3,0x43,0x3c,0xcf,0xf5,0x61,0x01,0xbb,0x44,0xf8, +0x02,0x03,0xdf,0xb7,0xf1,0x73,0xe2,0xf0,0xbe,0x80,0x69,0x36, +0x0a,0xb5,0x16,0xb4,0xac,0xac,0xb4,0xae,0xb4,0x4d,0x90,0x4a, +0x2e,0x8d,0x7c,0xc6,0x57,0xdd,0x2f,0xfd,0x36,0xf7,0xb5,0x70, +0x78,0x54,0x9b,0x8c,0xac,0xee,0xdb,0x2d,0x82,0x54,0x22,0xc1, +0x0e,0x4e,0xac,0x17,0x7b,0xc9,0x22,0x69,0xd5,0x2f,0xbc,0xb8, +0x8a,0x51,0xd9,0x85,0xd2,0xaa,0x5f,0x15,0x5b,0x4b,0xc8,0x02, +0x69,0xd5,0x6f,0x8a,0xad,0xe5,0x64,0x9e,0xb4,0xea,0x0d,0x8f, +0x13,0x24,0x8e,0xbc,0xaa,0x7a,0x7d,0x75,0x68,0xc0,0xbd,0x91, +0x9a,0x98,0xad,0x31,0x5f,0xee,0x2b,0x88,0xab,0x7e,0x26,0xcf, +0x5c,0x7e,0x34,0xb9,0x6d,0x51,0xd5,0x4d,0x77,0x76,0x2f,0xeb, +0x5f,0x57,0xcb,0x42,0x84,0x5a,0x2a,0xb1,0x38,0x94,0xd1,0xab, +0x22,0x72,0x3c,0xfc,0xf2,0xd5,0xb1,0x41,0x7c,0xba,0x4d,0x06, +0x77,0xf5,0x14,0xc2,0x61,0x9e,0xb7,0x0c,0x06,0x70,0x70,0x34, +0xe2,0xca,0x1f,0x70,0x1a,0xaa,0x79,0x98,0x57,0x21,0x93,0xc6, +0xf3,0xeb,0x4a,0x7d,0x5f,0x28,0x83,0x07,0xd7,0x99,0x93,0xd3, +0xa9,0x02,0x7e,0xbc,0x61,0x96,0x0c,0xcf,0xf2,0xa3,0x5e,0x23, +0xc6,0x04,0x74,0xa4,0x52,0xd4,0xe1,0x26,0x3f,0x7a,0x3f,0x37, +0xba,0xb4,0x9f,0x17,0xab,0x47,0xdb,0x89,0xdd,0x9b,0x53,0xac, +0x01,0x4e,0x28,0xc1,0x1e,0x69,0x8b,0x29,0x28,0xa1,0x1b,0xef, +0x16,0xe9,0x7e,0xce,0x43,0x59,0x31,0x09,0xe1,0x73,0xee,0x30, +0xaa,0x39,0x20,0x5d,0x3a,0xa7,0xcd,0x81,0xbe,0x05,0xa1,0x0b, +0xe6,0x67,0xc2,0x2e,0x01,0x84,0x01,0x1c,0xc7,0x45,0x57,0x45, +0x55,0xd7,0x28,0x81,0x0f,0x6c,0xc6,0x59,0x3c,0xa6,0x5c,0xc0, +0xf8,0x41,0xfc,0x50,0xb9,0xd8,0xf4,0x4e,0x42,0xc2,0xb5,0x22, +0xd8,0x43,0x2d,0x0a,0x65,0x0c,0x7e,0xb4,0x18,0xe8,0xbc,0x62, +0xa0,0xd3,0xfb,0x1e,0x74,0x72,0xff,0x05,0x3a,0xb9,0xe6,0x7c, +0xff,0x7b,0xd0,0xf1,0x61,0xa0,0x93,0xa7,0x00,0x1d,0xdf,0xbf, +0x67,0x45,0xac,0x7e,0x3f,0xa9,0x59,0x67,0xc4,0x9e,0xf1,0xaf, +0x5f,0x1e,0xec,0xdc,0x86,0xbf,0xe3,0x5e,0xde,0x30,0x52,0x7e, +0xce,0x46,0xd9,0xc9,0xc5,0xd2,0xdb,0xcc,0x3f,0xd7,0x88,0x76, +0x94,0xd4,0x97,0x56,0xd7,0x1c,0xc3,0xb9,0xbe,0x4b,0x34,0x55, +0xbb,0x1c,0x29,0x8c,0x87,0xd5,0x05,0x4c,0x1b,0x56,0x2a,0x81, +0x1a,0xbf,0x15,0x0f,0x90,0x03,0x77,0x83,0xae,0x05,0x5c,0xb2, +0xdd,0x4b,0x4b,0x0c,0x0b,0xb5,0x73,0x76,0x08,0x23,0xcf,0xa5, +0x43,0x64,0x76,0xda,0xb2,0xdc,0x8d,0x45,0xdf,0x36,0xdd,0xea, +0x69,0xb9,0x2a,0x34,0x60,0xb4,0x68,0x6c,0x22,0x19,0x63,0xa7, +0xb5,0x98,0xc5,0x3b,0xdb,0xe8,0x3a,0xab,0x7b,0x6f,0x2e,0xd7, +0xab,0xb5,0x6c,0x70,0xf0,0xa0,0xcd,0x1e,0x7d,0x3e,0xd7,0xfc, +0x56,0xee,0x99,0x7d,0x00,0x3f,0x3c,0x91,0x65,0x41,0x61,0x4e, +0x06,0x7c,0x5c,0xfc,0x47,0xdd,0x4f,0x5e,0x30,0x3e,0x00,0x48, +0x88,0x20,0xed,0x1c,0xf1,0x22,0x66,0x87,0xb4,0x8f,0x6f,0x3f, +0x2b,0x20,0xb3,0xa1,0x03,0x57,0xbe,0x80,0xf9,0xed,0x38,0xff, +0x0e,0xdf,0x73,0xa1,0x2f,0xa5,0x3d,0x43,0x80,0xe5,0x8a,0x49, +0xae,0xfb,0xe0,0x36,0xee,0xb3,0x86,0x0d,0x1b,0x70,0xa9,0x2d, +0x2c,0x5d,0x8d,0x1b,0x18,0xfe,0x87,0x8f,0x8c,0x21,0x30,0x83, +0x0b,0xdd,0x1e,0xbc,0xcc,0x73,0x63,0x47,0x20,0x6d,0xfa,0x35, +0xef,0x6d,0xf2,0x53,0x26,0xe8,0x3b,0xf8,0xc4,0xee,0xb8,0xde, +0x98,0x01,0x79,0x1c,0x0d,0xc5,0xa5,0x41,0x38,0x59,0x17,0xa7, +0xb7,0x79,0xd3,0xaa,0x9b,0x05,0xb7,0x33,0xbf,0x14,0x2e,0xe1, +0x5c,0x0e,0x5d,0xad,0x50,0x09,0xe7,0xb0,0x98,0x84,0x1b,0x7f, +0x3b,0x9e,0x10,0x16,0x79,0x32,0xec,0xfd,0x58,0x68,0x42,0x5a, +0x6c,0x46,0x6c,0xf6,0x0c,0xd8,0xdb,0x89,0xde,0x8a,0xb1,0xd0, +0x74,0xc5,0x58,0xa8,0x5d,0x27,0xda,0xdd,0x04,0x13,0xd8,0x89, +0x26,0x57,0xe0,0xa3,0x77,0xaf,0x3a,0x97,0x5d,0x65,0xc8,0x6b, +0xcc,0xde,0xd4,0xac,0xbf,0x9b,0x05,0x1f,0xe9,0xa3,0x01,0xee, +0x04,0x83,0xdd,0x68,0x6b,0x0d,0xb6,0x3e,0xff,0x1e,0x87,0xf5, +0xb4,0x06,0x07,0x6e,0x9f,0xa6,0x81,0x1b,0x12,0xcb,0x42,0x2b, +0x0a,0x63,0x5a,0x86,0xeb,0xea,0xba,0xe2,0x13,0xde,0x0f,0xc4, +0x5a,0xe3,0x24,0x9a,0x99,0x97,0xe7,0x02,0x4a,0xf0,0x05,0xe3, +0xb6,0xb1,0xb0,0x79,0x86,0xa2,0x9e,0x72,0xdb,0x4d,0x14,0x60, +0x26,0xd2,0xf2,0x61,0x8a,0x2b,0x19,0x68,0x83,0x32,0x78,0x29, +0x49,0x02,0x44,0x12,0x03,0x34,0xbe,0xcc,0xeb,0xa2,0x62,0x01, +0xc8,0x0d,0x48,0x39,0xb8,0x3f,0x1d,0x3f,0xff,0x86,0x75,0xaa, +0xc9,0x23,0x6f,0xc4,0x1f,0x08,0x7e,0x0f,0x9f,0x72,0xa0,0x94, +0x0a,0x93,0xb3,0x60,0x4c,0x5e,0xe0,0x00,0x45,0x3b,0x5b,0xac, +0x3e,0x80,0xdd,0xe7,0x52,0x19,0x95,0x20,0x51,0x30,0x35,0x16, +0x84,0x44,0xc5,0xe3,0xbd,0xef,0x63,0x3d,0xdc,0xe0,0xf7,0xe0, +0x4c,0x1c,0xcb,0x5e,0x45,0x9b,0xcb,0x8d,0x29,0xe4,0x3e,0x82, +0xb9,0x40,0xcb,0x41,0x43,0x91,0x7d,0x1f,0x9d,0x0f,0x47,0x08, +0x24,0xe3,0x22,0x2e,0xec,0x7c,0x78,0x64,0x98,0x32,0x26,0x71, +0xe2,0xf7,0xd3,0xb1,0x98,0x8b,0x8a,0x3f,0x9f,0x10,0xaf,0x04, +0xcb,0xa0,0x88,0x6f,0x97,0x66,0x11,0xf7,0x1a,0x83,0x36,0xfb, +0x22,0x77,0x67,0xda,0xe9,0x33,0xe0,0x52,0xe3,0x2a,0xdc,0x5d, +0x49,0xf0,0x10,0xe7,0x7f,0x52,0x31,0xe4,0x64,0xa2,0x8b,0x36, +0xbc,0x41,0x41,0xd0,0x35,0x65,0x38,0xc9,0x75,0xe4,0xe6,0xb6, +0xa9,0xfc,0xce,0xeb,0x67,0xc9,0x26,0xff,0xd3,0x06,0xd2,0x08, +0x6e,0x78,0x8c,0x1f,0x7c,0xb3,0xf3,0x47,0x01,0xbe,0x1c,0x94, +0xbc,0xb8,0x82,0xb6,0xec,0xae,0x94,0x3e,0x01,0xfe,0x1a,0x1c, +0x2d,0x34,0x01,0xe0,0x8e,0x98,0x86,0x58,0xef,0xb5,0x17,0xf0, +0xb5,0x09,0x0c,0x72,0x3b,0x97,0xcf,0xdd,0x86,0x2b,0x36,0x95, +0x9a,0xd1,0xa6,0x8b,0x75,0x79,0x35,0x79,0x02,0xfe,0x71,0xb5, +0x4b,0x8c,0xb1,0xba,0x02,0xbf,0xf2,0x35,0xfb,0xeb,0x0f,0x34, +0x1d,0x10,0x46,0x0d,0x61,0x0c,0x79,0x36,0x7c,0xe3,0x7a,0xc7, +0x3d,0x01,0x3e,0xe0,0x3a,0xb7,0x5d,0xd7,0x7b,0x6a,0x2c,0x48, +0x91,0x58,0x49,0x20,0x58,0x8c,0xc1,0x60,0x7e,0xf2,0x88,0xa6, +0xa2,0xb6,0x67,0x07,0xe6,0xdc,0x61,0x6f,0x0c,0xf3,0xce,0xeb, +0x5f,0xba,0x02,0x39,0x8a,0xb7,0x8c,0x3e,0xcc,0xe0,0xc0,0x64, +0x34,0x99,0xc8,0xb3,0x4c,0x0a,0x2c,0x1b,0x7b,0x2b,0xdb,0xeb, +0x1a,0x9b,0x5d,0x2a,0xa9,0xb3,0x93,0xad,0xbb,0x85,0xaf,0x77, +0x4d,0x40,0x5b,0xc8,0x25,0x01,0x7e,0xee,0x65,0x94,0xb0,0xb8, +0x36,0x20,0xcb,0x3d,0xd7,0x2d,0x63,0x06,0xa8,0x80,0xdb,0x68, +0x24,0xba,0x89,0x9f,0x72,0x51,0x3e,0x31,0x7e,0xb1,0x01,0x82, +0x34,0x65,0x39,0x87,0x1f,0xec,0x33,0x31,0x50,0x57,0x6e,0x77, +0x6b,0x1d,0x2a,0xee,0x4a,0xbb,0x34,0x03,0xb2,0xbb,0x59,0xd3, +0x45,0xe7,0x44,0x5d,0xcc,0x53,0xaa,0x87,0x27,0x7c,0xf6,0xee, +0x32,0x93,0x06,0xbb,0xe5,0x76,0x38,0xce,0x07,0x67,0xec,0x57, +0x94,0x2d,0x7c,0x96,0x07,0x93,0xea,0xde,0xf4,0x76,0x39,0x5c, +0xf6,0xb9,0x1b,0xdc,0x7c,0xac,0x3a,0x21,0xae,0x2b,0x0d,0x04, +0x6a,0x95,0x27,0x93,0xaa,0x44,0x6d,0x82,0x63,0x98,0x5e,0x1a, +0xc3,0xc3,0xa1,0xe9,0xa0,0xc1,0xb6,0x35,0x38,0xc5,0xd6,0x18, +0xd0,0xc5,0x31,0xfc,0x72,0x6b,0xb2,0xc7,0xb3,0xe1,0x70,0xc3, +0x81,0xd2,0x90,0x19,0x18,0xca,0x45,0x14,0x9f,0x29,0x8b,0xac, +0x64,0x6c,0x2e,0x47,0x74,0x66,0x6c,0x2e,0x22,0xf2,0x78,0xd8, +0x89,0x50,0xc6,0xe6,0x66,0xc2,0xb8,0x1e,0x1c,0x07,0x26,0x66, +0x68,0x82,0x53,0x2c,0x40,0x50,0xf0,0x39,0x77,0x9c,0xbf,0x11, +0xa7,0xd6,0xd9,0xd2,0x2b,0x6f,0xf2,0xdf,0xc6,0xbe,0x64,0x74, +0x2e,0xb3,0xff,0x3d,0x9d,0x53,0x24,0x10,0xaf,0xe1,0xaa,0xea, +0x3a,0x19,0x7c,0x22,0xce,0x22,0x31,0xb5,0x17,0xea,0xa3,0x1a, +0xe5,0x17,0xe8,0x69,0xdc,0xee,0x8b,0xaa,0xa6,0x8b,0x1b,0xec, +0x69,0xf3,0xc3,0xd2,0x57,0x99,0xf0,0x81,0x00,0x1f,0x72,0xaa, +0x27,0x96,0x04,0xab,0x29,0xfb,0x16,0xba,0x17,0x7b,0xe4,0x06, +0x58,0xd2,0x9a,0xe0,0x16,0xdf,0x4a,0x3f,0x07,0xfc,0x54,0x83, +0x75,0xaa,0x31,0x6a,0xb5,0xd6,0x14,0xdc,0x41,0xeb,0x15,0x24, +0x9c,0x83,0x21,0xa1,0x9d,0xaf,0x1b,0xcd,0x27,0x43,0x23,0x1d, +0x30,0x53,0x7a,0xb2,0x50,0x31,0x07,0xed,0x09,0xd7,0x94,0x99, +0xde,0xaa,0x32,0x32,0x1d,0xe3,0x18,0x42,0x19,0x89,0x11,0x64, +0x08,0x8d,0xf9,0xc8,0xf4,0xf3,0x19,0x19,0x4a,0x70,0x54,0x1f, +0x8f,0xf2,0x47,0xce,0x1f,0x89,0x3c,0xaa,0x8c,0x9b,0x8c,0x61, +0x03,0x77,0x1c,0x5d,0x19,0x79,0xc4,0x0f,0x71,0x99,0x20,0x5e, +0xc4,0x2f,0x7e,0xbd,0xde,0xc8,0xe7,0x79,0x15,0xfa,0x14,0xee, +0xa9,0x6f,0xa6,0x86,0x97,0x2c,0x9e,0xfb,0xdd,0x17,0xd0,0xc1, +0x92,0xed,0x98,0xe1,0x95,0xeb,0x91,0xef,0x29,0x60,0x11,0x77, +0xb1,0x22,0xbb,0x32,0xb5,0xcc,0xa6,0x90,0xee,0xd5,0xb7,0xd5, +0x92,0x5b,0xd5,0x3b,0xd2,0xe2,0xe2,0xe2,0xaa,0xfc,0x1a,0xc1, +0xfe,0xf2,0x42,0x9c,0x2b,0xfd,0xd0,0x3f,0x28,0x4e,0xe4,0x4b, +0x74,0x61,0x06,0x6c,0xea,0x87,0x79,0xb1,0x60,0xc0,0xbc,0x2f, +0x16,0x0d,0xba,0x99,0xb4,0xf9,0x02,0x35,0x6b,0x2e,0x53,0x54, +0x82,0x4d,0x72,0x50,0x3e,0x01,0x6e,0x02,0x6c,0x02,0x4a,0x02, +0xaf,0x7a,0x5f,0xf5,0x6e,0x77,0x0a,0xa4,0x55,0xe6,0xa5,0x26, +0x45,0x3a,0x82,0x74,0x29,0x97,0x2c,0x34,0xfd,0x95,0x1f,0x60, +0xb4,0xc2,0x39,0x27,0xb8,0x49,0xf9,0xe6,0x06,0x7c,0xf8,0x88, +0xab,0xf1,0xba,0xfa,0x55,0xf1,0xe5,0xb8,0xd7,0x33,0x06,0xb9, +0x59,0xd3,0x4f,0xaf,0x0b,0xb4,0x37,0xd7,0x15,0x14,0x7a,0xfd, +0x21,0x8b,0x5c,0x8e,0x9c,0xff,0xa9,0xb8,0x12,0x15,0x10,0xbe, +0xe6,0xf1,0x21,0x3e,0x23,0xf0,0x70,0x1e,0x3e,0x64,0x72,0xdf, +0xf8,0x28,0x41,0xd5,0x0c,0xfc,0x30,0x6b,0x4e,0x31,0x7c,0xd8, +0xf5,0xc3,0xb5,0xae,0x07,0x0c,0xc1,0xbe,0x12,0x5b,0x0c,0xa5, +0x16,0x69,0xb2,0xd9,0xc8,0x06,0xde,0x40,0x57,0xcd,0x0a,0x65, +0xae,0x4b,0x2b,0xd6,0x35,0xad,0x1f,0xb6,0xf6,0xa2,0xd7,0x2d, +0x1f,0x38,0x3f,0xf1,0x9e,0x1d,0x80,0x93,0x0f,0xe2,0x17,0xc7, +0xb3,0x99,0x03,0xaf,0x4d,0x83,0x45,0xa5,0xf0,0x49,0x13,0x7c, +0xe1,0x00,0x4b,0x02,0x61,0xe9,0x11,0x61,0x34,0x5e,0x64,0x32, +0xf1,0x23,0xf0,0xef,0x46,0xff,0x9f,0xf9,0x7b,0x49,0xef,0x0a, +0x06,0xf3,0xbd,0x3b,0x28,0xa3,0xe4,0x93,0xf6,0xae,0x3b,0x29, +0x48,0x32,0xa8,0xeb,0xe5,0x41,0x0e,0x2f,0x89,0x05,0x9c,0xc2, +0x71,0x78,0xc8,0x12,0x0e,0xe1,0x47,0x4c,0xd3,0x41,0xbf,0x38, +0x93,0xc9,0x72,0x09,0x62,0xc8,0xf3,0x0b,0xf0,0x51,0xc2,0xb7, +0x29,0x71,0xa1,0xb1,0x27,0x63,0x4e,0xd6,0xe7,0xd2,0x83,0xf5, +0x7b,0x5a,0x82,0xcb,0x84,0x36,0xc8,0xc7,0xe9,0x97,0x61,0x41, +0x07,0x2e,0x78,0x68,0xb9,0x15,0xe7,0xd9,0xc0,0x3c,0x03,0xfc, +0x14,0xf3,0xe1,0x53,0x4d,0xce,0xf2,0x9c,0xc5,0x39,0xa7,0x48, +0xc1,0x7d,0x1d,0x11,0xa7,0xe1,0xd8,0xaf,0x61,0x4a,0x37,0x4e, +0x79,0x67,0x35,0x0b,0x3f,0xb1,0x84,0x4f,0x36,0xce,0x92,0xa6, +0xbd,0x5b,0x8d,0xec,0x84,0x04,0x97,0x77,0xc1,0x72,0x98,0xd6, +0x83,0xd3,0x5e,0xf0,0xf8,0x27,0x3a,0x93,0x3f,0x40,0x65,0x64, +0x09,0x5a,0x8c,0x26,0x32,0x76,0x06,0x6b,0xc8,0x5a,0xb1,0xeb, +0x39,0x27,0x5e,0x62,0x3c,0x47,0x6b,0xf3,0x5d,0x1e,0x88,0x16, +0xb9,0xfb,0xb5,0x16,0x2f,0x05,0x25,0x11,0x94,0x19,0x83,0x8c, +0x87,0xad,0x28,0x23,0x06,0x20,0xbb,0xcc,0x41,0xa8,0x35,0xd9, +0xb6,0xf9,0x01,0xdb,0x67,0xfa,0xd7,0xdb,0x36,0x72,0x92,0x9d, +0x27,0xeb,0x4a,0x13,0x8c,0x39,0xe6,0x28,0x13,0xc8,0x65,0x9c, +0x60,0xc0,0x89,0x5b,0x60,0x3c,0xf1,0x09,0x49,0x3c,0x91,0x7c, +0x24,0xf9,0xf0,0x0c,0x8d,0x08,0xd9,0x6d,0xbe,0x18,0x3f,0x65, +0x78,0x7a,0xc8,0x86,0x99,0xbc,0x76,0x15,0x9f,0x62,0x27,0xbb, +0xcf,0xd5,0xa7,0xa7,0xd6,0xab,0xc0,0x8a,0xbb,0x1d,0x5a,0x97, +0x79,0x4c,0xc4,0x15,0xa4,0x32,0xa0,0xc2,0xad,0xd8,0xad,0xa6, +0x8c,0xee,0xad,0xf5,0xae,0xf7,0x2a,0x65,0x94,0x58,0x4d,0x74, +0x25,0xce,0x61,0x32,0x68,0xc0,0xcf,0xf8,0xd4,0x8a,0x94,0xca, +0x84,0x32,0xb3,0x24,0x7a,0xca,0x3b,0xd4,0xfd,0xb8,0xa7,0xb0, +0x1c,0x4f,0x70,0xab,0x14,0x34,0xfd,0xdc,0x81,0xc8,0x58,0x33, +0x9a,0x1d,0x95,0x1d,0x9d,0x15,0x75,0x06,0x0d,0x4f,0xe0,0x47, +0x6e,0x0b,0x5a,0x3d,0x68,0x0b,0xc8,0xd2,0x40,0x39,0x06,0x6c, +0x2f,0xc7,0xf5,0x27,0xf4,0x24,0x0a,0x92,0xea,0x1c,0x3e,0x55, +0x2e,0xfb,0x9e,0xab,0xcb,0xc8,0xa8,0x53,0x11,0x97,0xf3,0xe9, +0x17,0xd8,0x2b,0x46,0x10,0xfb,0xa4,0x1d,0x64,0x5d,0x8e,0x66, +0xbe,0x6e,0xf9,0xfd,0xee,0xc1,0xeb,0xb5,0x5f,0x0b,0xad,0xe8, +0x24,0x56,0x99,0x4b,0x55,0x18,0x2e,0x17,0x35,0x78,0x6f,0x3d, +0xb9,0xc5,0x2e,0x27,0xfd,0x3a,0x79,0x87,0xf5,0x65,0x07,0x6f, +0xda,0x6a,0xdc,0x65,0x3b,0xe4,0xb6,0xcb,0x7b,0x63,0xd0,0xca, +0xc3,0x59,0x66,0xf4,0xdd,0xc5,0x1f,0xcb,0x1f,0x37,0x3d,0x70, +0x7e,0xee,0xf7,0x7a,0x9f,0x20,0xc9,0xc5,0x3c,0xc5,0x68,0xf7, +0xf8,0x0e,0x1c,0xff,0x86,0xaf,0x89,0xef,0xcf,0x2a,0xcb,0xdd, +0xd3,0x42,0x3d,0x83,0x8c,0x0e,0xca,0xc3,0x05,0x04,0xd8,0xd6, +0xcd,0xc3,0x17,0x70,0x9f,0x58,0xc2,0xa4,0xd9,0xf8,0xa1,0x0d, +0x7c,0x88,0x3c,0x4e,0xb1,0x84,0x5d,0xcc,0x33,0x46,0x8b,0xf1, +0x2d,0xf9,0x8e,0x07,0x1d,0xd6,0xd0,0x51,0xbc,0x3c,0xcc,0xf4, +0x94,0x71,0x84,0x50,0x04,0x1e,0x24,0xdf,0xa9,0xd8,0x30,0xd3, +0xaa,0x29,0x9f,0x1e,0xea,0xf6,0xbf,0xb2,0xaf,0x5e,0x08,0x67, +0xfd,0x18,0xcf,0xb7,0xc1,0x79,0x45,0x7d,0xa7,0xf8,0x39,0x91, +0x0c,0xef,0x88,0x9f,0x40,0x1f,0xee,0xe1,0x92,0xf2,0x12,0x0b, +0xe2,0x0b,0x8c,0x13,0x69,0x44,0xd0,0xc9,0x80,0xd0,0x3d,0x02, +0xae,0x67,0x9a,0x79,0x23,0xb7,0xed,0xac,0x65,0x98,0x93,0xb2, +0x67,0xc4,0xb1,0xa3,0xce,0x33,0xf5,0xb9,0x14,0x73,0xd9,0x15, +0xee,0x7a,0x71,0xe1,0xa5,0x64,0x95,0x94,0xc1,0x98,0x1b,0x20, +0x28,0x49,0x1b,0xef,0x89,0x86,0x9c,0x94,0xcf,0xe4,0x87,0x1e, +0x64,0xf6,0xf6,0xe2,0x9f,0x72,0xa6,0x40,0x32,0x71,0x3b,0x97, +0x72,0x29,0xf9,0x52,0xfc,0x25,0x93,0x78,0x7a,0x1c,0xc7,0x1c, +0x98,0xef,0x8f,0x63,0x06,0x8e,0xd1,0x84,0x92,0xf8,0xe2,0xf8, +0x12,0x01,0x56,0x71,0x3e,0xaa,0x0b,0x59,0x70,0x1b,0xb7,0xae, +0x96,0xe1,0xea,0xa7,0xbf,0x3d,0x87,0x0f,0x19,0xed,0x66,0xd8, +0xa6,0x8a,0x9f,0x73,0xe9,0x26,0x32,0x06,0x7d,0x4d,0x39,0x39, +0x6d,0x2a,0xe2,0x9a,0xab,0xbc,0xb8,0x14,0x9a,0xc8,0x36,0x7c, +0xc0,0xfa,0xcc,0x03,0x9c,0x4a,0x36,0xe1,0x83,0xaf,0x78,0x38, +0x2a,0x2d,0x27,0x99,0x7e,0x39,0xf2,0x64,0xf7,0x86,0x2c,0x7a, +0xbc,0xf6,0x60,0xcf,0xe1,0x52,0x01,0xdf,0x61,0x02,0x69,0xb8, +0x5d,0xf8,0x5d,0xf2,0x5d,0xeb,0x64,0x7a,0x42,0x67,0xdf,0x46, +0x17,0x3d,0x01,0x72,0xc0,0x9a,0xa4,0x5b,0x67,0x98,0x26,0x9a, +0xb5,0xa5,0xd2,0x93,0xfd,0x47,0xfa,0x0f,0xb7,0x0b,0x38,0xff, +0x18,0x49,0xd6,0x89,0xd7,0x88,0x36,0xea,0x4a,0xa0,0x67,0x6f, +0x84,0x5f,0x3f,0x7e,0x9d,0xf1,0x4d,0xe7,0x91,0x50,0xf2,0x83, +0xd1,0x0a,0x0c,0xb6,0x10,0x53,0x7a,0xf8,0x51,0x0d,0xe9,0x2d, +0x19,0xd1,0x36,0x19,0xd5,0xd6,0x14,0xaf,0x99,0x8f,0x1a,0x0d, +0xdd,0x83,0xc4,0x11,0xce,0x4c,0xba,0xc6,0x8b,0x9e,0x22,0x4f, +0x72,0x5b,0x73,0x86,0x53,0x9a,0xcd,0x33,0xe8,0x09,0xf3,0x10, +0x93,0x40,0x0b,0x01,0xef,0xcb,0xc5,0x95,0x92,0x3b,0x6e,0x51, +0x64,0x22,0x60,0x01,0xd7,0x9e,0x95,0xd5,0xaa,0x22,0xda,0x0f, +0xf5,0xf2,0xf8,0xbc,0x86,0x84,0x36,0x1e,0x6a,0x0f,0xa9,0xb5, +0x3a,0x48,0xb3,0xdc,0x32,0x1d,0x92,0x9d,0x59,0xf7,0x5b,0x46, +0x70,0x74,0xe8,0x01,0x78,0x40,0x2d,0x53,0xdb,0x78,0x8c,0xf1, +0x53,0xa6,0x81,0x75,0x58,0xe8,0x13,0x47,0x8c,0xc8,0x8a,0x41, +0x50,0xc5,0xc4,0xef,0x8c,0xd4,0xf0,0x34,0xaa,0xf6,0xff,0xc0, +0xa3,0x0b,0xe6,0x91,0x37,0xfd,0xf3,0x20,0xea,0xcf,0x01,0x2c, +0x35,0x65,0x12,0x3b,0x4a,0xd5,0xec,0x2d,0x5e,0xe2,0xdc,0x8f, +0xb9,0x1d,0x77,0x0d,0x65,0x0a,0xf3,0xf7,0xb2,0x9f,0xea,0x5e, +0x34,0x9f,0xe9,0xa3,0x6e,0x87,0x5c,0x8f,0xb8,0x1c,0x11,0x44, +0x2f,0xd1,0x96,0x7c,0x6d,0x73,0xd5,0xe6,0xe1,0xb6,0xda,0x66, +0xaa,0x71,0x6b,0x67,0xdf,0x5a,0x26,0x88,0xd6,0x9c,0x25,0x86, +0x2b,0x0c,0x9c,0xd4,0xdd,0x8a,0xac,0xe9,0x6f,0xed,0x37,0x2e, +0xf7,0x7d,0x23,0xc0,0x7f,0xe1,0x3f,0x08,0xae,0xb8,0xb7,0xe0, +0xa5,0xf7,0x0b,0xc1,0x88,0xf3,0x59,0xbd,0x72,0x15,0xae,0xda, +0x51,0x60,0x41,0x0b,0x53,0xf2,0x53,0x2f,0xa6,0x08,0xf8,0x68, +0xa8,0x1f,0xae,0x9b,0x0d,0xc3,0x63,0x3e,0xef,0x78,0xc1,0xf1, +0xa2,0xe3,0x82,0xe4,0x72,0x8d,0xfc,0x38,0x3c,0x78,0x2d,0xfd, +0xb6,0x10,0xcf,0xa5,0xef,0x1e,0xd6,0x79,0x6d,0x28,0xe0,0x13, +0x4b,0x02,0xd7,0xd1,0x14,0xaf,0x73,0x8a,0x14,0xc5,0x4a,0x32, +0xc4,0x5f,0x8b,0xbd,0x1c,0x37,0x98,0x70,0xae,0x9d,0x5a,0x44, +0x18,0x44,0xec,0x3e,0x23,0x3c,0x80,0xf5,0x9d,0xb8,0xfe,0x2b, +0xd0,0xe8,0x44,0x8d,0xeb,0x46,0x3a,0x68,0x68,0x0d,0x86,0x9b, +0x70,0xa3,0x35,0x6c,0xdc,0xc4,0x1b,0x9c,0xd1,0x39,0xb7,0xfb, +0x5c,0x8c,0x25,0xbd,0x16,0x7d,0xed,0xc2,0xe5,0x18,0xc1,0x9c, +0x87,0x2b,0x85,0x04,0xa6,0xbd,0xae,0xfe,0x3e,0x96,0x49,0x20, +0x58,0xca,0x99,0x9c,0xd5,0x0d,0x35,0x54,0xb6,0x08,0x3b,0x14, +0xa2,0xaf,0x98,0x15,0x2d,0x67,0x08,0xf0,0xac,0xb6,0xe1,0x6a, +0x8a,0x4a,0xfa,0xc3,0x0b,0x0f,0xfe,0x50,0x92,0x56,0x58,0xc0, +0x1c,0xee,0x34,0x4e,0xf4,0xdc,0x89,0x1f,0x6c,0x14,0xe0,0x05, +0x76,0x93,0xac,0x43,0x59,0x21,0xd9,0x07,0x9a,0x2b,0xa8,0xf9, +0x90,0xe1,0x80,0x76,0x8f,0xb3,0x1f,0x2d,0xda,0x5f,0xb8,0xbf, +0x60,0xdf,0xa2,0xf0,0xd9,0x11,0x38,0xfe,0xcc,0xb7,0x9d,0xdf, +0x5f,0x7b,0x70,0xc5,0xae,0x8a,0x1a,0x5a,0xa9,0x1b,0xa8,0xc9, +0xf7,0x66,0xf9,0x67,0xf9,0x67,0x0f,0xd6,0xf4,0xd4,0x77,0x37, +0xdb,0x95,0x53,0x47,0x37,0x23,0x27,0x5d,0x17,0xaf,0x1c,0xef, +0x6c,0x9f,0x4c,0x77,0x17,0xfa,0x95,0xf3,0x7d,0xa7,0x7b,0x0e, +0x27,0x4e,0x1d,0x8f,0x38,0x11,0x21,0x9c,0x5d,0xb6,0x30,0x72, +0xfe,0xcc,0x04,0xb3,0xff,0x56,0x94,0x74,0xf8,0x2a,0x1c,0xe3, +0x61,0x4c,0xdc,0xbb,0xf8,0x7f,0x24,0x09,0xe8,0x3e,0x9b,0xbc, +0x75,0x7a,0xee,0xf2,0xcc,0xb6,0xaa,0x8d,0xae,0xea,0x58,0xdb, +0xb0,0xb8,0x5e,0x90,0x6e,0xa0,0x06,0x79,0x5b,0xf3,0xaa,0xf5, +0x5a,0xa7,0x73,0x1d,0xd5,0xb3,0x5f,0xe3,0xb2,0x50,0x91,0x2e, +0xef,0x1b,0xd1,0x24,0x96,0xdd,0x5b,0x87,0xff,0xb5,0xee,0xd4, +0x43,0xc3,0x1e,0x4b,0xe1,0x81,0x74,0x93,0x3c,0x04,0xe6,0xbd, +0x33,0x13,0x41,0x5b,0x10,0xd7,0x70,0x07,0xd7,0x5b,0x6d,0xdc, +0xb6,0x6b,0xd7,0x15,0xf9,0x3d,0x9f,0x2f,0xcd,0x82,0x68,0xe5, +0x96,0xc1,0x2d,0x77,0x77,0x1b,0xda,0x6b,0xba,0xad,0xf7,0x2f, +0x31,0xa6,0x2f,0x2b,0xbf,0x6e,0xbe,0xd1,0x73,0xc9,0xea,0x96, +0xe3,0x1d,0xdf,0xf2,0x21,0xaa,0x5d,0xac,0x5f,0x6b,0xd6,0xf4, +0xf4,0xf1,0xc0,0xcf,0xf9,0x30,0x96,0x81,0xd1,0x46,0xbe,0xe8, +0x4a,0xde,0xfd,0xd4,0x21,0xa1,0x59,0xda,0xe5,0xc8,0x63,0x67, +0x38,0x5a,0x2c,0xc0,0xf9,0xca,0xb0,0x51,0xd4,0x27,0x51,0xfd, +0x51,0x97,0xae,0x2b,0xc1,0x10,0x17,0xe6,0x10,0xbc,0x75,0xaf, +0xa1,0x20,0x69,0xb0,0xab,0xe9,0xda,0x70,0xc5,0xb8,0xc6,0xd3, +0x8e,0x0e,0x78,0x3c,0x36,0xec,0x93,0x0b,0xe0,0x23,0x6d,0x25, +0xf8,0xd9,0xaa,0x41,0x10,0x54,0x40,0x1f,0x0d,0x8d,0x61,0x0a, +0x4e,0xe6,0x97,0xf9,0x5a,0x2c,0x54,0x2c,0x5d,0xf5,0x5d,0x63, +0x4b,0x5f,0xf4,0xbf,0x96,0xae,0xd2,0x82,0x35,0x33,0xc5,0x33, +0x5c,0xd2,0x65,0xd9,0x64,0x71,0xf7,0x4f,0xc4,0xa1,0xc9,0xb1, +0xce,0xa9,0xba,0x17,0xc6,0x97,0xc1,0xf4,0x54,0x58,0x2b,0x34, +0xe1,0x76,0x3e,0xf5,0x6a,0xca,0xa5,0x84,0x3e,0x83,0x38,0x1a, +0x2e,0x0f,0xd5,0x3b,0xb6,0x5b,0xc0,0x49,0xc6,0xef,0xb8,0x7d, +0x73,0x03,0x66,0xfb,0x6e,0xec,0xf1,0xe8,0xf6,0xe8,0x72,0x75, +0xdc,0x66,0xbc,0x6b,0xb3,0x4e,0x9d,0x25,0xfd,0xea,0xd6,0x95, +0x7b,0xed,0x4f,0x1a,0xbc,0x1b,0x3d,0x1a,0x5d,0x04,0xa8,0x11, +0x97,0x91,0xbd,0xa7,0xfc,0x23,0xfc,0x23,0x84,0xa8,0xca,0xf3, +0x55,0xd5,0x4a,0x60,0xf2,0x70,0x00,0xcf,0x98,0xfe,0x8e,0xf6, +0xbc,0xe7,0x79,0xef,0x73,0x3e,0xca,0x1e,0x11,0x6e,0xa7,0x5d, +0x4f,0x27,0x19,0xd1,0xaa,0x98,0xaa,0xb8,0xca,0xd8,0x50,0x54, +0xf3,0xc1,0x4f,0x97,0xa3,0xac,0xc5,0x9e,0xfe,0x09,0xd3,0x6b, +0x60,0x41,0x32,0x68,0x57,0xc6,0x97,0x27,0x94,0x24,0x08,0xb0, +0xbe,0x91,0x40,0xc3,0x8f,0x03,0x78,0xca,0xf4,0x29,0x36,0xac, +0x37,0x7e,0x2a,0xd9,0x5f,0x11,0xed,0xff,0x1c,0xe2,0x47,0x7b, +0x70,0x0c,0x29,0xfa,0x3a,0xff,0x87,0x8b,0xaf,0x04,0x98,0xca, +0xb8,0x17,0x0d,0x44,0xce,0x56,0xd5,0xbd,0xd4,0xa3,0xc8,0xb3, +0x80,0xdd,0xac,0xc7,0xe2,0x2d,0x02,0xab,0x86,0x71,0x1d,0x57, +0xda,0x57,0x7e,0x2b,0xff,0x9a,0x41,0x1e,0xdd,0xa3,0xe5,0xa7, +0xe9,0xa6,0x2d,0xe0,0x56,0x23,0xd6,0x36,0xbe,0x5c,0xe8,0xf9, +0xd0,0xc8,0x93,0xca,0xbb,0x42,0x77,0x86,0xed,0x38,0x95,0x6c, +0x48,0x6f,0xc4,0x5f,0x4d,0xbc,0x9a,0x74,0x08,0x95,0x8d,0x34, +0x70,0xca,0xa6,0x3a,0x39,0x85,0xc5,0xaf,0xaf,0xfe,0x99,0x06, +0x2b,0x7a,0x13,0xfb,0x92,0xfb,0x53,0x84,0x4b,0xbc,0x3c,0x54, +0x1e,0x6a,0x11,0x26,0x64,0xf2,0xe2,0x86,0xc3,0x04,0x42,0x41, +0x7b,0x18,0x4d,0xf8,0xff,0x71,0xf4,0xd9,0x46,0xb0,0x1a,0x43, +0x71,0xb5,0xe2,0xe3,0xed,0x35,0x78,0x0b,0x36,0xc3,0xdc,0x64, +0xf1,0xf7,0x91,0x73,0xe4,0xc9,0x4e,0x75,0x7c,0x8d,0x4e,0xbc, +0x5e,0xa4,0xe9,0x59,0x2b,0x65,0x7b,0x77,0xb9,0xb7,0xc9,0x9e, +0x1c,0x23,0xda,0x5d,0xdc,0x58,0x52,0x5b,0x75,0x0c,0x67,0x7a, +0x2d,0xdf,0x3a,0xb7,0x87,0x89,0xc4,0x8f,0x60,0x73,0x21,0xec, +0x50,0x8c,0x45,0xcc,0x1e,0xd1,0xed,0xe7,0x47,0xd3,0x31,0x93, +0xec,0xbb,0xb5,0xe7,0x92,0xcf,0xa0,0x5d,0x00,0x2d,0x37,0x2b, +0x31,0xcc,0xdb,0x29,0x88,0x97,0x16,0x92,0xfb,0xfd,0x7d,0x57, +0xea,0xee,0x09,0xf5,0xf8,0x92,0x4f,0xbb,0x98,0x7c,0x31,0x29, +0xd7,0x24,0x85,0x7a,0x6f,0xd2,0xdb,0x34,0x4b,0xbb,0xc4,0x86, +0xb6,0x97,0x34,0x54,0x55,0x56,0x57,0xdb,0xb4,0x39,0xf4,0xbb, +0x6e,0x76,0x5c,0xe0,0x8e,0x24,0x20,0x9f,0xd9,0xa4,0x52,0x09, +0x63,0x9b,0xbf,0xed,0x79,0x6e,0xf9,0xc6,0x09,0xc6,0xfa,0x14, +0xf7,0xd1,0xf9,0xc5,0xcb,0xab,0x37,0x37,0x0b,0xe8,0x0a,0x3b, +0x48,0x74,0x74,0x54,0x54,0x54,0xb4,0x00,0x6d,0x9c,0x8f,0xdc, +0xde,0x5a,0xcf,0x41,0xbf,0xd1,0xa2,0xdd,0xad,0x57,0xc8,0xc1, +0xef,0xc9,0xd7,0x81,0xdf,0x78,0xdc,0x77,0x2d,0xed,0xa6,0xdb, +0xea,0x37,0x56,0x6d,0x29,0x14,0x70,0x23,0x5e,0x25,0xa0,0x96, +0x03,0xdb,0xab,0x61,0x5d,0xf7,0xf1,0x5e,0x8a,0xeb,0x2d,0x71, +0x9b,0x3f,0xae,0x3f,0x28,0x28,0x9e,0x49,0xb3,0x85,0x64,0xb6, +0xa5,0x75,0x24,0x77,0x18,0x66,0xd2,0x00,0x9c,0x69,0x8c,0x33, +0xb7,0xa8,0xb6,0x39,0xd2,0xa6,0xbe,0xda,0xeb,0x65,0x77,0x05, +0xb8,0x68,0xcc,0x21,0x09,0x47,0xdb,0x43,0x38,0x59,0x59,0x2b, +0x34,0xd8,0x53,0x77,0x26,0xaa,0x72,0x99,0x06,0x32,0x20,0xdc, +0x3f,0x5a,0x7a,0x80,0x4b,0x57,0xc9,0x82,0x4f,0x13,0xc1,0x06, +0x88,0x92,0x62,0x02,0x72,0x04,0x2c,0x25,0x73,0x1d,0x70,0xa6, +0x3f,0xce,0x3a,0x92,0xc9,0x6c,0x50,0xce,0x80,0x25,0xd5,0xbf, +0xb7,0x0a,0x8c,0xb3,0x6e,0x21,0x87,0x2b,0x0e,0x54,0x1e,0x28, +0xb2,0xda,0x43,0x73,0xf7,0xe6,0x7b,0x64,0xf8,0x0a,0x1b,0xbd, +0xc9,0xfe,0xa6,0x7d,0xb5,0x01,0x55,0xd6,0xfe,0xb4,0xc8,0xa7, +0xd8,0x29,0x87,0x51,0xcc,0x22,0x98,0x43,0x56,0x2c,0x45,0x65, +0x4d,0x54,0x73,0xbe,0x68,0x49,0x1f,0x5e,0xbc,0x5f,0x72,0xb3, +0x3a,0xed,0x40,0xea,0x81,0xd4,0xfd,0x1a,0xfa,0xf3,0x2d,0x70, +0xa2,0x33,0x83,0x50,0x10,0x9a,0xde,0xf6,0xdd,0xbb,0x96,0xba, +0x27,0x29,0x20,0xd1,0x7f,0xd3,0x3a,0xfc,0x68,0x27,0xce,0xb0, +0x2a,0x60,0xa7,0x9b,0xd6,0x01,0x93,0x6e,0x3f,0x7c,0x24,0xc4, +0xec,0x89,0x0e,0xf0,0x57,0x52,0xdd,0xeb,0xaa,0xa5,0xbc,0x94, +0xcb,0x34,0x92,0x3d,0x63,0x34,0xa8,0xb5,0x0f,0x54,0x61,0xa1, +0x05,0x7c,0xa2,0xf9,0x4e,0xa5,0xab,0xbc,0xad,0xba,0xb6,0x5e, +0xc8,0xc7,0x54,0x62,0x04,0x15,0xc3,0xfc,0x64,0x28,0x60,0x80, +0x51,0xe0,0x52,0xe0,0x74,0xd1,0xbe,0xab,0x98,0x1e,0xaa,0x3e, +0x58,0x71,0xb0,0x42,0x00,0xf5,0x5e,0xac,0xe3,0xd2,0x8b,0x53, +0x8b,0x13,0x8b,0x4d,0xd3,0xa8,0xef,0x5a,0xf9,0x66,0x4d,0x9d, +0x16,0x57,0x5a,0x5b,0x55,0xd5,0x50,0xd2,0x24,0xc0,0x5b,0xc6, +0xbd,0x4a,0x2b,0x0b,0xeb,0x2e,0xd6,0x0b,0xdf,0x73,0x85,0x2e, +0x79,0x4e,0xf9,0xf6,0x9d,0x45,0x34,0xa4,0x26,0xa4,0xe2,0x00, +0xfb,0xb1,0x51,0x2f,0xde,0xe4,0x52,0x8a,0x93,0x4b,0x12,0x8a, +0x15,0xf3,0xf0,0xd4,0x9d,0x36,0x19,0xeb,0x08,0x62,0xc0,0xa8, +0x40,0xe6,0xe6,0xaf,0xaa,0xd8,0x5a,0xff,0xf2,0xea,0xcd,0xaf, +0x6a,0x5f,0x31,0x86,0x6b,0xca,0xe7,0xb4,0x64,0xb4,0xa5,0xb6, +0x0b,0xed,0xa3,0xca,0x66,0xb0,0x63,0x2f,0x8f,0xd6,0x72,0x5c, +0x89,0x3a,0x38,0x57,0xb9,0xc9,0x1a,0xe6,0x00,0x7f,0x07,0x48, +0x31,0xcc,0x99,0x21,0x86,0x73,0xee,0x5b,0xf4,0x75,0x36,0x58, +0x6e,0xe8,0xd2,0xb9,0x6c,0x71,0xcf,0x32,0x80,0x76,0xec,0xb8, +0xa6,0xfb,0x95,0xb9,0xba,0xf3,0x42,0x5f,0x1c,0x1b,0x52,0xc0, +0xe8,0xef,0xe4,0x3c,0x18,0x57,0xfb,0x43,0xef,0x0b,0xab,0x37, +0x2e,0xc0,0x07,0x0a,0xd2,0xaf,0x0a,0xcf,0xfa,0x95,0x3b,0xee, +0x78,0xd4,0x31,0xc4,0x51,0xc0,0x41,0x2e,0xa6,0x32,0x9a,0x79, +0xf9,0x64,0xf8,0x58,0xfc,0x2f,0x92,0x7e,0x34,0xeb,0x40,0x72, +0x08,0xbb,0x35,0x0e,0x60,0x23,0x47,0x2d,0x07,0xd0,0xd2,0x1f, +0xbc,0x02,0xdb,0x5a,0x70,0x5b,0x2f,0x98,0xb6,0xa0,0x8c,0x4b, +0xcf,0x4a,0xc9,0x49,0xca,0xb6,0xc9,0x60,0xba,0xb9,0x05,0x2d, +0x7a,0x61,0x73,0x0b,0x6e,0xee,0x31,0xb1,0xc0,0x8d,0x0e,0xb0, +0x51,0x8e,0x2e,0x0e,0xf0,0x31,0x07,0xbf,0x99,0x91,0xd2,0x23, +0x25,0x87,0x8b,0x43,0x0e,0x38,0x7a,0xb9,0x9b,0xbb,0xd4,0xba, +0xd0,0xbe,0xc6,0xda,0xa6,0x82,0xf6,0xd2,0xfd,0xa5,0xc1,0xc5, +0x41,0xe5,0x0d,0xd4,0xb7,0xd8,0xbb,0xc8,0x3b,0x2f,0xad,0x31, +0xae,0x2d,0xba,0x47,0xf8,0x19,0x8f,0x70,0x96,0x59,0x87,0xbb, +0x95,0x5b,0xb9,0x8a,0xcc,0xcc,0x1a,0x95,0x5f,0x78,0xeb,0x3c, +0x19,0x7e,0xec,0xc9,0x1f,0x3e,0x15,0x57,0xa0,0x02,0x79,0xb8, +0xf4,0x27,0xf3,0xa5,0x38,0xd6,0x1a,0x3e,0xe0,0x23,0x9d,0xce, +0x78,0x86,0xf9,0x06,0xa5,0x07,0xa5,0x05,0xa5,0x0a,0x12,0x67, +0x46,0x5a,0xb2,0x4e,0x64,0x1d,0xbe,0x78,0x24,0x7d,0x06,0xc8, +0xb9,0xd0,0x7d,0xc7,0x83,0xf7,0x07,0x0a,0xe0,0x25,0xd9,0x92, +0x2b,0xe2,0x98,0x2e,0x69,0xcc,0x10,0x0f,0x1f,0xc7,0xc0,0xa4, +0xb8,0x17,0x09,0x07,0x3a,0xe9,0x21,0x34,0xc6,0xd6,0x33,0x78, +0x70,0x66,0xa2,0xe5,0x7f,0x96,0x48,0x30,0x95,0x78,0x2b,0x91, +0xd7,0x97,0x34,0x2d,0x44,0xcd,0xad,0xff,0xf7,0x25,0x12,0x1e, +0x8b,0xea,0x3d,0xac,0x0b,0xe4,0x8d,0x04,0x92,0x9c,0x80,0x1c, +0xbf,0x2c,0x9f,0xee,0x5c,0x7a,0xac,0xf0,0x68,0xde,0x91,0x3c, +0x01,0x36,0x76,0x62,0x23,0x97,0x9c,0x95,0x94,0x15,0x9f,0x25, +0xcf,0xa0,0xbe,0xba,0xd6,0x46,0xbb,0xac,0x1b,0xdc,0x14,0x33, +0xe6,0xca,0x8b,0x2b,0x05,0xd1,0xa1,0x93,0x24,0x66,0x25,0x64, +0xc7,0x67,0x59,0xa4,0xd2,0xfd,0xa6,0x3e,0xe6,0x0e,0xb6,0x82, +0xcb,0x16,0x7c,0xc5,0x49,0xfc,0x71,0x9c,0xb1,0x05,0x17,0x2a, +0x77,0x7a,0xca,0x1e,0xc0,0xdc,0x02,0xd8,0x0a,0x8f,0x94,0x46, +0xa2,0x3b,0x25,0xf5,0x2b,0x5c,0xc1,0xe1,0x8b,0x79,0xd9,0x05, +0x19,0x85,0x33,0x5e,0x73,0x39,0x01,0xd9,0x7e,0xd9,0x3e,0xdd, +0x39,0xf4,0x68,0xd1,0x91,0xf7,0xa7,0x33,0xee,0xe4,0x56,0x8e, +0x6e,0x27,0xbf,0x5e,0x6b,0xd5,0xfd,0x05,0xed,0xfa,0x20,0xb5, +0x19,0x53,0x6b,0xf9,0xfb,0x49,0xbd,0xc9,0x75,0xc9,0xc7,0x9a, +0xa9,0xfc,0xf0,0xba,0xa3,0x38,0x35,0x2c,0xd1,0x81,0xa6,0x47, +0xa5,0x47,0xa7,0x45,0x09,0xbe,0x38,0xbf,0x8f,0x2f,0x8c,0xbd, +0x18,0x9b,0x1d,0xab,0xf8,0xf7,0x11,0xf5,0x63,0xf8,0x61,0x78, +0x92,0x03,0xed,0x89,0x69,0x89,0xad,0x8b,0x13,0xec,0xd1,0xc1, +0x51,0x31,0x71,0x65,0xa7,0x23,0xec,0x64,0x77,0xcc,0x1e,0x5c, +0xcc,0x51,0xc7,0x11,0x16,0xf0,0x5e,0x6e,0xfa,0x1e,0x38,0xc1, +0xa5,0xc0,0x96,0xc2,0xcc,0x8e,0xcb,0x4d,0x39,0x97,0x85,0x78, +0x5c,0xd7,0x0f,0x1a,0x30,0x1f,0x35,0xfa,0x61,0x7d,0x3c,0x77, +0xd1,0xe0,0x9a,0x23,0xac,0xb2,0x29,0xe8,0xa0,0xf8,0x59,0x83, +0x66,0x8d,0x47,0xad,0xb0,0x12,0xba,0x88,0xb9,0xe2,0x74,0x30, +0x7f,0x21,0x91,0xe3,0x7c,0xa6,0x9a,0x7e,0x95,0x33,0xc1,0xd6, +0x0b,0xaa,0x1c,0xfe,0xba,0x80,0xc0,0x7c,0xf6,0x5f,0x0e,0x1c, +0xa6,0x33,0x3f,0x33,0x7f,0xef,0x51,0x46,0x24,0xdf,0x3d,0xcf, +0xf5,0xa2,0x53,0x4f,0x2e,0xf3,0xa8,0x90,0xf2,0x03,0xe5,0x02, +0x6c,0xe8,0xc1,0xfa,0xbf,0xe7,0xb7,0x16,0x9a,0x31,0x8f,0xda, +0x68,0xb1,0xfd,0xfd,0xfc,0xd6,0x9a,0x8a,0x2a,0xc5,0xfc,0x56, +0x78,0x37,0x9b,0x94,0x94,0x17,0x54,0xe7,0xd6,0x0a,0x3f,0x72, +0xd9,0x01,0x59,0xec,0x56,0xf4,0xfc,0x7d,0x2b,0x8e,0xb2,0xb6, +0x31,0xec,0xc1,0x5b,0x5c,0x4a,0x61,0x52,0x51,0x42,0xa1,0xc2, +0xa1,0xb6,0xb8,0x6c,0x37,0xd5,0x17,0xec,0x24,0x43,0x62,0x58, +0x12,0x74,0x45,0x59,0x5c,0xd2,0x8f,0x87,0x61,0x3d,0x78,0xf4, +0xa2,0x07,0x7c,0xce,0x3d,0x4b,0x7a,0x94,0x76,0x29,0x23,0xb8, +0x9b,0xe2,0x14,0x1f,0xb4,0x38,0x80,0x16,0x11,0x89,0xe6,0xf4, +0xf1,0x85,0x6f,0x62,0x1f,0x27,0x08,0xf8,0xeb,0x3c,0xde,0x3b, +0x34,0xa1,0x56,0x05,0x02,0x0d,0xf9,0x36,0x46,0x78,0x17,0x6f, +0x29,0xe8,0x32,0x54,0xe9,0xbf,0x5f,0xf5,0x55,0xfa,0x37,0x42, +0x0b,0xeb,0x1c,0x37,0x5a,0xee,0x5c,0xad,0xeb,0x66,0x51,0xbe, +0xda,0x12,0x5c,0x79,0x3b,0xcb,0xed,0x06,0x5b,0xec,0x04,0x7b, +0x38,0xc8,0x1f,0xd5,0xdb,0xab,0xef,0x60,0xe4,0x57,0x1b,0xd8, +0x7a,0xa0,0xdf,0x62,0x3f,0x2d,0xd0,0x2d,0x35,0xaf,0x75,0xf4, +0x74,0x73,0xf4,0xb0,0xf0,0xac,0xb7,0xa3,0x3d,0xd5,0x2d,0x75, +0x35,0x0d,0x82,0xf1,0xed,0xef,0xfc,0x60,0xe2,0x4c,0xd1,0x81, +0x4b,0x1a,0x66,0x31,0x3b,0x7b,0xe4,0x2b,0x62,0x64,0x2c,0xad, +0xb1,0x82,0x6d,0x5c,0xb0,0xd7,0x1e,0x6f,0x7f,0xbf,0x23,0x29, +0x47,0x93,0x8e,0x25,0xf9,0xba,0xd1,0xc6,0xa0,0x0e,0xaf,0x46, +0xcf,0x23,0xc7,0x8e,0x1c,0x3d,0x7c,0x2c,0xe0,0x5c,0xc0,0x39, +0xff,0xc8,0x44,0x2b,0xfa,0x22,0xee,0xdb,0xc4,0xeb,0x49,0xe6, +0xd6,0x9a,0x9e,0xaa,0x7b,0x2e,0xda,0x50,0xd8,0xd0,0xf1,0xdb, +0x97,0x43,0x7f,0xba,0x15,0xd1,0xb0,0xa3,0x27,0x8f,0x86,0x1e, +0x77,0x3e,0xed,0x74,0xc6,0xf1,0x4c,0x7f,0x57,0x67,0x6f,0xd7, +0x55,0xa7,0x22,0xea,0xeb,0xe4,0xe9,0xe2,0xe2,0x72,0x38,0xed, +0x50,0xda,0xa1,0xd4,0x8a,0xca,0xe2,0xaa,0xd2,0x7a,0xbf,0x6c, +0x0a,0x57,0x38,0x3f,0x03,0x07,0x73,0x6d,0xeb,0x32,0x0f,0x5a, +0x5e,0x28,0xc3,0x60,0x31,0xa4,0x09,0xbd,0xfb,0xc1,0xac,0x11, +0xcd,0xba,0xdf,0xbf,0x77,0x81,0x77,0x13,0x3a,0xf0,0x19,0xb9, +0xc9,0xd9,0xf1,0x99,0xb6,0xe9,0xf4,0x64,0xf0,0xf1,0x7d,0x07, +0x83,0x04,0xfc,0x8c,0x4b,0xcb,0x4a,0xce,0x4e,0xcc,0x74,0xca, +0xa6,0xe2,0xa2,0x2e,0x69,0x87,0xa2,0x48,0x38,0x80,0xe0,0xfa, +0x16,0x2e,0x9a,0xfd,0x29,0x22,0x8e,0x1a,0x87,0xeb,0x71,0x1e, +0xe9,0x86,0xf5,0x96,0x3c,0xae,0x5f,0x44,0x58,0x77,0x31,0xe3, +0x25,0x2d,0x54,0x25,0x07,0x36,0xfa,0xae,0x75,0x50,0x77,0x3b, +0xe7,0x1a,0xe9,0x72,0x2e,0xc1,0x92,0xc2,0x81,0x14,0x30,0x4a, +0x03,0xe3,0x9c,0xc8,0x16,0x8a,0x9f,0x1f,0x43,0xa5,0x30,0x5c, +0x1c,0x9e,0xdf,0x9a,0xd3,0x99,0xd9,0x21,0x88,0xea,0xdc,0x61, +0x9c,0x21,0xb3,0x3a,0x95,0x1b,0x72,0x75,0x26,0x7c,0xc6,0x54, +0x67,0x46,0xa9,0xca,0x1f,0xbc,0x3c,0x47,0x86,0xd3,0xf0,0x23, +0x3e,0x38,0x3c,0x21,0x3b,0x5a,0x25,0x07,0x76,0xcb,0x24,0x4f, +0x2e,0xbd,0x47,0x36,0x32,0xb5,0xeb,0xaf,0xe9,0x56,0x9c,0x98, +0x85,0x3a,0xc4,0xac,0xd4,0x20,0xcf,0x38,0xdb,0xd7,0x93,0x0e, +0x1f,0xbc,0x14,0xdc,0xeb,0x2f,0x4c,0x7e,0xfa,0x3e,0xf3,0x7c, +0xa3,0x5f,0x31,0x9d,0xe6,0x4b,0x02,0xa9,0x4f,0x07,0xa4,0xbd, +0xa6,0xf0,0x0c,0x53,0x31,0x8e,0xcf,0x18,0x4e,0x1d,0x4a,0x1c, +0x64,0xe2,0xeb,0x10,0x8e,0xdd,0x83,0x1f,0x38,0xe3,0xd8,0xc1, +0x43,0x34,0xb5,0x32,0xa5,0x32,0xa9,0x4a,0x80,0x50,0xce,0x5e, +0x15,0x27,0xcf,0x43,0x73,0x1c,0x5f,0x63,0xa6,0xc8,0xd3,0xcc, +0x80,0x69,0x7f,0xa4,0xc3,0x54,0x26,0x97,0x56,0xa0,0x09,0x97, +0x61,0x24,0x83,0x2d,0x5c,0x4b,0x76,0x36,0xd3,0x1b,0x6b,0x7f, +0x1c,0xe4,0xff,0x9a,0x0d,0xda,0xc4,0x54,0xfc,0x6c,0x80,0xc7, +0x9f,0xde,0xe7,0x9d,0xfb,0xfe,0xb5,0x08,0x67,0x9f,0x19,0x3f, +0x20,0x2d,0x26,0xbd,0x70,0x9e,0x21,0xd8,0x20,0x3e,0xe4,0x21, +0x1a,0xf2,0x08,0xae,0x46,0x33,0x58,0xcd,0x1c,0x61,0xdf,0x7f, +0xa6,0x92,0x96,0x8f,0x1c,0x22,0xfd,0xd2,0xd9,0x77,0xc6,0xb3, +0x36,0x9a,0x7d,0xad,0xca,0x63,0x83,0x0f,0xae,0x5f,0x8d,0x0b, +0x94,0xbb,0xdd,0x64,0x3f,0xc1,0xfa,0x0a,0xd0,0x82,0x2e,0xa5, +0xdf,0x79,0x1c,0x8b,0xee,0xe4,0xc4,0xad,0x83,0x8f,0x0f,0xf6, +0xdb,0x1d,0xa6,0x59,0x66,0xd9,0x5b,0x12,0x77,0x0a,0xe8,0xb0, +0x92,0xe4,0x7d,0x9b,0xfc,0xf7,0x94,0xd1,0x73,0xaa,0x27,0x97, +0x05,0xad,0x13,0x46,0x74,0xe1,0x0c,0x31,0x42,0x43,0x0e,0x5d, +0xd4,0x58,0x80,0x5d,0x8f,0x53,0x94,0xeb,0xac,0x61,0x1e,0x08, +0xcf,0xfe,0x91,0x04,0xab,0x18,0x79,0x4c,0xc1,0x55,0x37,0xd6, +0x32,0xc5,0xf3,0x59,0x5d,0x17,0x45,0x35,0x98,0xb9,0xe5,0x0f, +0x70,0x55,0x82,0x09,0xb8,0x8a,0x34,0x3c,0x28,0x7c,0x99,0xfe, +0xd8,0x34,0x8b,0x9e,0xd0,0x08,0x58,0xec,0xa6,0x2b,0x60,0x82, +0x37,0xa9,0xb8,0x5d,0xf8,0x47,0xe2,0x43,0xd3,0x64,0x1a,0xbe, +0x3d,0x70,0xa1,0xaf,0xbe,0x30,0xf9,0x01,0xfc,0x42,0xc0,0xaf, +0x0f,0x36,0xbd,0x50,0x24,0x11,0x7e,0xc4,0xa9,0x30,0x75,0x1b, +0x7c,0x61,0x5e,0x34,0x4c,0x51,0xa5,0x07,0xa7,0x7d,0xb3,0x1d, +0xc6,0xa6,0x66,0xa5,0x64,0x27,0x67,0x33,0x0e,0x7a,0x91,0x4f, +0xcb,0x4a,0x63,0xf1,0xc2,0xb4,0x84,0x1a,0x2d,0x9b,0xbf,0x05, +0x67,0x1a,0x16,0xc9,0xe9,0xcb,0x86,0xaf,0x3b,0xae,0x0e,0x29, +0x1a,0x7a,0x03,0x7e,0x82,0xdb,0xe7,0x62,0x9c,0x9e,0x20,0xfa, +0x16,0x12,0x9d,0xd9,0x1c,0xae,0xc2,0xa9,0x6b,0xb1,0x71,0xb9, +0x72,0xa1,0x1e,0x74,0xbc,0xf9,0xe5,0x5e,0x1e,0xa8,0xce,0x50, +0x4c,0x25,0x52,0x85,0x09,0x9a,0xd0,0x3a,0xaf,0xe0,0x2a,0xc5, +0xba,0x1f,0x51,0xf5,0x39,0xac,0x52,0x82,0xed,0xb8,0x9a,0xb4, +0xb5,0x75,0x5e,0x2f,0xbf,0x6c,0x5e,0x44,0xf7,0x98,0xda,0x19, +0x5a,0xdb,0x0a,0x92,0xb5,0x9c,0x74,0xb4,0x0f,0x3c,0x2c,0xbb, +0x61,0x92,0x47,0xf7,0x1a,0x59,0xed,0x92,0xcb,0x19,0x93,0x1c, +0xa7,0xa8,0x92,0x71,0xe1,0x31,0xfd,0x04,0x7a,0xeb,0x28,0x86, +0x59,0x6d,0x64,0x5f,0xc2,0xf2,0x0c,0x08,0x56,0xa4,0xf1,0x57, +0x8c,0xe4,0xf4,0xf3,0xd2,0xfc,0x51,0x4b,0x82,0xc9,0x4f,0x21, +0xb9,0x1b,0x93,0x9f,0x31,0x66,0xf8,0x00,0x95,0x38,0x46,0xc8, +0x0a,0x18,0x20,0x25,0x28,0x26,0x86,0x06,0x1c,0xdf,0x27,0x2c, +0x1c,0xb5,0xef,0x83,0x09,0x8a,0xc5,0x34,0xd1,0x96,0xc8,0xb9, +0xa0,0x53,0x49,0xf9,0x2a,0x10,0xe4,0xc2,0x27,0xe4,0xc7,0x17, +0xc4,0x15,0x0a,0xb0,0xac,0x1b,0xe7,0x70,0x29,0x37,0xe3,0x1f, +0x46,0xbf,0x10,0xfe,0xe8,0xc6,0xe7,0x58,0xeb,0x68,0x09,0x06, +0x9c,0x1b,0xae,0xdd,0xbc,0x04,0x55,0x97,0x57,0x59,0x51,0x98, +0xf8,0xf8,0xf1,0xf3,0x4e,0xa6,0xbc,0x51,0xce,0x9b,0x15,0x1c, +0xec,0x53,0x1e,0xe2,0xaa,0x33,0xb2,0xea,0x54,0x60,0x1c,0x6f, +0x9d,0x21,0xc3,0xf3,0x62,0x08,0x81,0x89,0xdc,0xb9,0x55,0xa7, +0xb6,0x9e,0xd0,0x11,0x16,0x2b,0x1e,0x5d,0x30,0x8d,0xa0,0xce, +0xb7,0xa0,0xa3,0x58,0xc0,0x7f,0x06,0x13,0xad,0x2b,0x14,0x63, +0x2a,0x77,0xc5,0x15,0x04,0xbc,0x5a,0x61,0xdd,0xfd,0x3f,0x7e, +0x7b,0xba,0x00,0x3e,0xd7,0x82,0xe5,0x36,0x17,0x15,0x13,0x3c, +0x3b,0x70,0xda,0x7d,0x9d,0x17,0xa9,0xe9,0xc9,0x19,0x49,0x19, +0x0c,0xa5,0xf2,0xf8,0xb4,0xcc,0x94,0xcc,0x94,0x2c,0xfd,0x1c, +0x6a,0xba,0x6e,0xa5,0x16,0x4e,0x30,0x2e,0xb1,0xa2,0x8f,0xeb, +0xef,0xb6,0x0e,0xf5,0x09,0x70,0x92,0xdb,0xaa,0x8a,0x6b,0x97, +0x63,0xac,0x5c,0xf8,0xe7,0x78,0x8c,0x63,0x1d,0x70,0x25,0x98, +0x18,0xa0,0x89,0xa4,0x62,0x06,0xa3,0xbc,0xd9,0x56,0x1c,0x67, +0x8a,0xfe,0xfa,0xf9,0xcc,0x01,0x22,0x1f,0xfe,0xd6,0xd3,0xf0, +0x07,0x8b,0x04,0xf9,0x97,0x21,0x3f,0x8e,0x6b,0x98,0x03,0x13, +0x2c,0xe0,0xfc,0xd6,0x3c,0x76,0xc6,0xa0,0x2b,0xf8,0xe1,0x80, +0xf1,0x43,0x46,0xdf,0x6f,0x93,0xea,0xaa,0x86,0xee,0x92,0x76, +0xab,0x12,0xba,0xcf,0xc1,0xc3,0xce,0xd5,0x4d,0xc0,0xe6,0xb3, +0x24,0xa0,0xdd,0xbb,0xd1,0xb3,0xda,0xde,0x8f,0x56,0xb9,0x57, +0xb8,0x15,0xdb,0x0a,0x93,0xff,0x39,0x5b,0x1c,0x26,0xb8,0x17, +0x4a,0x8c,0xb0,0x04,0x0f,0xe0,0x2f,0xe0,0x83,0x21,0xc8,0x71, +0x69,0xe6,0xb2,0x9f,0xb8,0xb6,0xac,0xac,0x36,0x15,0x08,0x80, +0xa3,0x7c,0x9d,0x38,0x9b,0xb8,0xde,0x34,0xfc,0xca,0xba,0xcb, +0xd1,0x8b,0x76,0xca,0x87,0x36,0xd7,0x69,0x0b,0x92,0x12,0x1c, +0x25,0xfe,0xbb,0x4d,0x36,0x9b,0x5a,0xd7,0x3b,0xd3,0xe1,0xfe, +0xe1,0x67,0x95,0xf7,0x04,0xf4,0x92,0x4a,0xc8,0x77,0x4e,0x5f, +0x9b,0x5c,0x51,0xae,0xbf,0xdb,0x01,0xe3,0x73,0x14,0xcb,0x09, +0x95,0xff,0xf5,0xc1,0xe5,0x91,0xcb,0xb0,0x94,0x3f,0xb2,0xd3, +0x06,0x3f,0xb0,0x5f,0x2b,0x5c,0xd7,0x6a,0xd8,0xba,0x5d,0xc9, +0xe4,0xa8,0x9f,0x85,0xb2,0x23,0x97,0xac,0x2b,0xeb,0xe4,0x6e, +0x37,0xb6,0xfe,0xae,0x22,0x9e,0x83,0x0d,0x44,0xa2,0xdf,0x8b, +0x94,0xc3,0xb9,0xe3,0x97,0x48,0xf4,0xb5,0x62,0x45,0x8e,0x50, +0x32,0xe0,0x70,0x53,0xa7,0xd5,0xa4,0xb9,0x81,0xda,0x0d,0xee, +0xba,0x6e,0xd2,0x22,0xe0,0xf5,0x48,0xe2,0x6c,0xa4,0x6f,0xa4, +0xe5,0x50,0x6d,0x4b,0xef,0x77,0x5e,0xbf,0xda,0x72,0x9d,0xf5, +0xa9,0xfd,0x62,0x3a,0xb9,0x60,0x0d,0x4e,0xa9,0x32,0x47,0xde, +0xa4,0xe0,0xe0,0x1d,0x65,0xa6,0xeb,0x9a,0xd3,0xd3,0x6a,0x55, +0xba,0x78,0xf3,0x54,0x99,0x0e,0xf6,0xf2,0x5e,0xe1,0xf1,0x05, +0x2a,0xcd,0x3c,0x94,0x67,0x9e,0x6d,0xc7,0x92,0x23,0xb2,0x6f, +0xc4,0x49,0xfc,0x61,0xff,0xe0,0xa0,0xa0,0xe0,0x4e,0x3f,0x5a, +0x56,0x5e,0xde,0x98,0xd9,0x2a,0x34,0x49,0x2b,0xaf,0xbe,0x5f, +0xf0,0x6e,0xd8,0x00,0x77,0xe0,0x0f,0x68,0xc4,0xe3,0xc1,0xc3, +0xb8,0x49,0x07,0x65,0x8a,0x05,0xef,0xee,0xc3,0x8c,0x8b,0x60, +0x02,0xc7,0x94,0x18,0x04,0x45,0xad,0xe5,0xc5,0x3c,0xa9,0x9d, +0xe0,0x84,0xb4,0x59,0x85,0x6a,0x55,0x0f,0x9b,0xfb,0x7a,0x4a, +0x2e,0x09,0x30,0xa7,0x1b,0x5f,0x5d,0x36,0x34,0xc0,0xc7,0x96, +0x30,0x83,0xab,0x30,0x1e,0x90,0x3f,0x72,0x58,0xe6,0x89,0x5c, +0x20,0x7e,0x7a,0x34,0x9b,0x31,0xdf,0xf9,0x99,0x30,0xbd,0xf2, +0x6d,0xfb,0xaf,0x76,0x30,0xc5,0x07,0x3e,0x3f,0x24,0xa0,0x23, +0x34,0x90,0x00,0x2b,0xb9,0xa3,0x96,0xa7,0x46,0xb5,0x59,0xb3, +0x77,0x97,0x30,0x79,0x24,0xbd,0x81,0xc0,0x74,0xd0,0xef,0x42, +0xfd,0x27,0xa0,0xde,0x81,0xea,0x2f,0x60,0x2e,0xa8,0x34,0x75, +0x3a,0xc1,0x0c,0x9c,0x7b,0xdb,0x7c,0x27,0x7e,0x64,0x0d,0x1f, +0xa9,0xe3,0x32,0x6b,0x58,0xa6,0x86,0x93,0xac,0x61,0xd2,0x6a, +0x9c,0x6d,0x03,0xb3,0xd5,0x51,0xcd,0x0a,0xd4,0x70,0x3a,0x3f, +0xca,0x8b,0xa7,0x08,0xde,0x3e,0x8a,0x0b,0x1c,0x71,0x9c,0x72, +0xb7,0x6b,0xe5,0xcb,0xcc,0x57,0xf1,0xb0,0x62,0x06,0x13,0xae, +0xe9,0x4b,0xb8,0x0c,0x43,0xd9,0x1d,0xae,0x35,0x2b,0xb7,0x43, +0x65,0xa4,0x1a,0x0f,0xf1,0x23,0x9f,0x8d,0x56,0x13,0xe4,0x34, +0xaa,0xaf,0xda,0xaa,0xd4,0xbe,0x4e,0x83,0xb1,0x71,0xb0,0x98, +0xc9,0x9f,0x8f,0xf9,0x8e,0xeb,0xdd,0xbf,0xe7,0xdf,0x63,0x51, +0xd6,0xd2,0x02,0x3e,0xe7,0x83,0xb4,0x2d,0x17,0x1a,0x6d,0x17, +0x6c,0x61,0x36,0x7f,0x16,0xc7,0x9e,0x5c,0x19,0xb4,0x79,0x5f, +0xff,0xd1,0x5b,0x61,0x8f,0xad,0x8e,0xd0,0x14,0xd5,0x8b,0x6b, +0xeb,0x74,0xf6,0xdb,0xfa,0x3b,0xb9,0x39,0xd7,0x3b,0xd1,0xea, +0x86,0x92,0x86,0xbc,0x26,0x41,0x6f,0xe0,0x89,0x37,0x7c,0x38, +0x13,0x02,0xb8,0xb4,0x5e,0xd9,0xa8,0x91,0xc8,0xda,0x69,0x22, +0x18,0x33,0x5f,0x12,0x5f,0xf9,0x10,0x75,0xb5,0x27,0xfc,0x77, +0xcc,0x7d,0xd4,0xd4,0xbe,0xe3,0x47,0x27,0x60,0x36,0x89,0xee, +0x8b,0xba,0x72,0x57,0x09,0x26,0xa2,0x29,0xf7,0x7f,0x6c,0xbe, +0x14,0x33,0x72,0x9a,0x24,0xad,0xaf,0xd7,0xfd,0x6a,0x53,0x79, +0x37,0xdd,0x71,0xc7,0xfd,0xe6,0xc1,0xbb,0x82,0x26,0x77,0x70, +0x9b,0xf7,0x96,0x8d,0x9a,0x65,0x16,0xf4,0xab,0x3b,0x2d,0x2f, +0x52,0xbe,0x15,0xc4,0xa2,0xd1,0x62,0x82,0x93,0xb6,0xd7,0xdf, +0xb6,0x53,0x69,0xf8,0x31,0x03,0x3e,0x88,0x07,0xd5,0xff,0x6f, +0xc3,0xcf,0xcc,0x3d,0xb1,0x26,0x70,0xfb,0x81,0xde,0xe3,0x57, +0xc3,0xef,0x59,0x1d,0xa6,0xc9,0x4b,0x72,0x36,0x56,0xe8,0xef, +0xb1,0x70,0xb7,0xb3,0x72,0xa8,0xb6,0xa7,0x1d,0xcd,0xb5,0x2d, +0x25,0xed,0xc2,0x8e,0x81,0x67,0x6e,0xf0,0xf1,0xbf,0xec,0x9e, +0x37,0x62,0xf1,0xde,0x56,0xc9,0x64,0xf4,0x43,0xe2,0x1f,0xe6, +0x7d,0xd2,0x2b,0x5c,0x80,0x5e,0x18,0xd3,0x8b,0x63,0x60,0xe2, +0xa3,0x1e,0x74,0xb4,0xb8,0x83,0x13,0x71,0x8a,0x9c,0xdd,0x99, +0x1b,0xbc,0xc3,0x49,0xfb,0x30,0xa7,0x53,0xc9,0xc6,0xf4,0xc7, +0x2c,0xe0,0x8b,0xef,0x14,0x08,0x62,0xb1,0xd8,0xf1,0x77,0x13, +0xb9,0x61,0x23,0xb9,0x68,0x9a,0xbb,0x21,0xc9,0xb0,0x3d,0x8d, +0x9e,0x1c,0xde,0xff,0xed,0xfe,0x01,0x01,0x2c,0x51,0x97,0xa4, +0xf4,0x27,0x5d,0x8a,0xeb,0x77,0x48,0xa4,0x11,0x86,0xe1,0x26, +0x27,0xac,0x58,0xdf,0xd9,0x39,0x62,0xf0,0xaf,0xa9,0x3f,0xa7, +0x4d,0xc5,0xfe,0x01,0x7e,0xf4,0x8f,0x7b,0x64,0x34,0x62,0xe8, +0x0f,0x70,0x18,0xf9,0x9c,0x47,0x07,0x33,0x02,0xaa,0x52,0x05, +0x93,0x86,0xe2,0x72,0x51,0x8f,0xb8,0xad,0xd5,0xdd,0xb8,0xde, +0xb0,0xda,0x9a,0xbe,0xb8,0x75,0xeb,0x49,0xcb,0xaf,0x02,0x7c, +0x7c,0x92,0xdc,0xd4,0xba,0xaa,0xde,0xb3,0xaa,0xbd,0x86,0xca, +0xbf,0xd3,0x7d,0xbe,0xeb,0x96,0xa0,0x25,0x79,0x91,0xfe,0xeb, +0xcd,0x8f,0x2b,0x7e,0x34,0x2b,0xa0,0x01,0xeb,0xdd,0xb5,0xac, +0x0d,0xed,0x2f,0xb9,0xdf,0x09,0x78,0x6a,0x1e,0x48,0x2b,0x56, +0x34,0x6d,0xe9,0xd2,0xdd,0xb6,0x6d,0xb1,0x19,0x4e,0x71,0x2a, +0x36,0xa5,0xf0,0x71,0xeb,0x3f,0x86,0xbf,0x7e,0x7c,0x6f,0xf3, +0x4b,0x63,0x18,0x63,0x57,0x36,0x40,0xe7,0x34,0xaf,0xe9,0xdf, +0xf5,0x25,0x73,0xce,0x93,0x23,0x13,0x49,0x53,0x4f,0xfd,0x50, +0xf5,0x0d,0x87,0x32,0xea,0x6f,0xe6,0x6d,0xe5,0x61,0x1f,0xd4, +0xee,0xdf,0xe6,0xd5,0xea,0xe0,0x43,0xeb,0x2c,0xcb,0xac,0x0a, +0x2c,0x5d,0x9d,0x1c,0xdd,0xec,0x7c,0x4a,0xe4,0xb4,0xb5,0xb2, +0xb1,0xa6,0xb6,0x21,0xcb,0x2e,0xcd,0x2e,0xd1,0xca,0x4c,0xcd, +0xc0,0x70,0xbd,0x51,0xb1,0x9c,0x3e,0xee,0x1d,0xb8,0xd4,0x71, +0x4f,0x88,0x75,0x88,0xb6,0xb7,0x56,0x42,0xad,0x00,0xfb,0xad, +0xca,0x7a,0x5c,0xa6,0x9e,0x6c,0x88,0xfb,0xb5,0xf7,0x32,0xec, +0x83,0x95,0xfb,0x60,0x86,0x15,0x4c,0x52,0x81,0x09,0x49,0x44, +0x7c,0x3e,0x80,0xf9,0x7f,0xb7,0x41,0x22,0x97,0x89,0x40,0xbe, +0xbf,0x71,0xf7,0x9b,0xb6,0xd7,0xd6,0x25,0xd4,0x65,0xfd,0xee, +0x4d,0x6b,0x8c,0x04,0xf1,0x43,0x30,0x20,0xf7,0x76,0xde,0x52, +0x1f,0x50,0x6b,0xaf,0xa3,0xc6,0x2f,0x76,0x3e,0xd3,0xb8,0x29, +0xec,0x64,0x76,0x0e,0x5c,0x6f,0x7d,0x54,0xfd,0xa3,0x69,0x21, +0xf5,0x5b,0xef,0xa2,0x65,0x69,0x64,0x33,0xec,0x7a,0xc7,0xf7, +0xa9,0xf9,0x5e,0x5a,0xbd,0xa2,0x79,0x5b,0xaf,0xce,0x96,0xed, +0x8b,0xcc,0x70,0x92,0x73,0xa9,0x09,0x85,0x29,0x2d,0x6f,0x86, +0x9f,0x7c,0xf5,0x70,0xf3,0x4f,0x46,0x20,0xb3,0x2f,0x1d,0xa4, +0x38,0xb6,0x69,0x55,0xbf,0xe6,0x3d,0x66,0xe8,0x90,0xe8,0x4d, +0x4e,0xa6,0x9f,0x8a,0x3e,0x1e,0x7a,0x3c,0x94,0x46,0x00,0x81, +0x8f,0x07,0xf0,0x63,0x30,0x31,0x41,0x13,0x5c,0x6c,0x0a,0xb3, +0xb8,0xe3,0xf8,0x89,0x33,0xce,0x9a,0x87,0x4a,0x0d,0x36,0xf4, +0x6b,0x18,0x5b,0xfe,0x2e,0xee,0x17,0x46,0x63,0x2a,0x06,0xc5, +0xa4,0x7f,0xcd,0x04,0xfd,0x19,0x35,0x1b,0xea,0x64,0xe2,0x20, +0xde,0x24,0xa8,0x92,0x3e,0xa7,0x48,0xad,0xb3,0xb2,0x39,0xb7, +0x3f,0xe9,0x8e,0x00,0xc1,0xa2,0x32,0xfa,0xbd,0x81,0x84,0x3e, +0xe9,0xba,0x39,0x24,0xce,0x43,0x5f,0x49,0x19,0x5c,0xb9,0x30, +0xd3,0x43,0x0e,0x01,0xee,0x6e,0xc5,0x9e,0x95,0x5e,0x0d,0x8e, +0xde,0xb4,0xd2,0xa9,0xd6,0xab,0xc1,0xcf,0xd6,0x7d,0x77,0xc0, +0xd2,0x80,0x3c,0x4b,0xfa,0xae,0xfc,0x51,0x55,0x6f,0xfb,0xaf, +0xa6,0xf0,0xa1,0x2f,0xcc,0x39,0x2a,0xe0,0x90,0x58,0x47,0x70, +0x25,0x8b,0x99,0x2b,0x39,0xf0,0xc3,0x09,0x84,0xb1,0x8d,0x09, +0x8c,0x29,0x4a,0x02,0x6e,0x24,0xb0,0xd2,0x8a,0x0b,0x8c,0xdc, +0x17,0x19,0xac,0x8c,0xcb,0x39,0xf0,0x9c,0x1e,0x9d,0x1f,0x55, +0x58,0xa4,0xd4,0xc6,0x9c,0x6a,0x2a,0x3f,0xf9,0x67,0x30,0x21, +0xf0,0x93,0xb8,0x69,0x15,0x97,0x5b,0x99,0xdb,0x94,0x5a,0x23, +0x34,0xe3,0x6e,0x3e,0x31,0x3f,0x3e,0x3f,0x2e,0xdf,0x34,0x9e, +0x06,0x2d,0xb0,0x5c,0xb8,0x6d,0x73,0xad,0x1b,0xbd,0x98,0x2f, +0x1b,0x99,0x06,0x73,0x09,0xcc,0x32,0xc2,0x59,0x68,0x6b,0x26, +0x7a,0xb3,0x50,0xfe,0x6b,0x0e,0x09,0xf5,0x3b,0xe8,0x1a,0xec, +0x29,0xe0,0x02,0x2e,0xbf,0x22,0xb7,0x3a,0xb3,0x56,0x10,0x67, +0x2d,0x24,0x7e,0xeb,0xac,0xd6,0xeb,0xe8,0x57,0xdb,0xd1,0xbb, +0x77,0x7a,0x9e,0xd6,0xfc,0x26,0xc0,0x84,0x53,0xa4,0x67,0x5b, +0xeb,0xda,0xfa,0xe5,0x9d,0xe5,0xd4,0xf5,0x7b,0x9b,0x6f,0xe5, +0xf7,0x85,0xd1,0x45,0xc8,0x4e,0x4c,0xbf,0x47,0xca,0x77,0x4e, +0x07,0xfa,0x13,0xfb,0x04,0xc0,0x7a,0xd2,0x76,0xb3,0xfa,0x9b, +0x82,0x5f,0xcc,0xf2,0xe8,0xc1,0x75,0xfe,0x9a,0xae,0x06,0x6e, +0x97,0xfd,0xef,0x1c,0x78,0x66,0xbe,0x8f,0x16,0x2e,0xae,0xde, +0xd4,0xba,0xdb,0x58,0x6b,0xbb,0xd9,0x4a,0xa7,0x32,0x39,0xfd, +0xbe,0xf9,0xd1,0xc0,0xe5,0xfb,0x97,0x35,0xee,0x9b,0xbe,0xb0, +0x2f,0xeb,0xa3,0x6b,0x9a,0x35,0xfb,0x4c,0xee,0x0a,0xd2,0x8b, +0x9f,0x09,0xcc,0xfe,0x1e,0x67,0x2b,0x8e,0x39,0xfb,0x27,0xf6, +0x79,0x6c,0x2d,0xc9,0x72,0xc9,0xb2,0x4f,0xb7,0x6e,0xc9,0xa0, +0x47,0x3a,0x43,0x5a,0x0f,0xd6,0x0a,0xf8,0x04,0xa3,0x48,0xf5, +0xd5,0x92,0x67,0x29,0x8f,0x6d,0x52,0xe8,0x71,0xad,0xc0,0xed, +0x1e,0x86,0x02,0x63,0x8c,0xe6,0x24,0xc3,0x22,0xcd,0x34,0x49, +0xbb,0x33,0x95,0x86,0x5e,0x3d,0x32,0x78,0xa8,0x47,0xc0,0x2f, +0x8e,0x92,0x44,0xbd,0x58,0x8d,0xa8,0xdd,0x3d,0xf1,0xf4,0xdc, +0xdd,0xf0,0x5b,0xa1,0xd7,0x58,0x60,0x35,0x4c,0x24,0xb8,0xae, +0x1b,0x3f,0xbb,0x34,0xfb,0x31,0x2c,0x84,0xcf,0x5e,0xc1,0xe6, +0x6e,0xd8,0x23,0xf4,0x8c,0x66,0x18,0x8c,0x58,0xf0,0xd6,0x68, +0xab,0x86,0x4b,0xf0,0x0b,0xe6,0xfe,0x1f,0xfd,0xbe,0x1e,0x66, +0x18,0x82,0x96,0x51,0x30,0xbd,0x8e,0xba,0xcf,0x51,0x19,0x26, +0xe3,0xd8,0xd9,0x9b,0x91,0xea,0xe3,0x1a,0xab,0x62,0x7d,0x0a, +0x5b,0xfa,0x61,0xd6,0x6d,0x90,0x7d,0x0b,0xe3,0xd6,0x80,0xb2, +0x36,0xec,0x30,0x11,0xb0,0x5b,0xcc,0x23,0xe6,0xbd,0x4b,0xee, +0xed,0x6c,0x76,0xb7,0xa3,0x37,0x5c,0x5e,0x69,0x0c,0x98,0xb2, +0xbe,0xf7,0x42,0xf4,0x60,0x7d,0x2f,0xfc,0xc2,0xb1,0xd0,0xe3, +0xc7,0xdf,0xf7,0xbd,0x4f,0x07,0x15,0xd3,0x88,0x0c,0xd1,0x08, +0x37,0x9b,0xc0,0x2a,0xee,0x18,0x4e,0xb1,0xc7,0xcf,0x51,0x40, +0x95,0x46,0x5b,0xfa,0x0a,0xb8,0x1a,0x06,0x7a,0x6f,0x58,0xef, +0xab,0xbb,0xf4,0xbf,0xa8,0xfb,0x0e,0xb8,0x28,0x8e,0xf6,0xff, +0xb9,0x9b,0xdb,0xdd,0x6b,0x74,0x0e,0x8f,0xb6,0x77,0x1e,0xa7, +0xc1,0x5e,0x62,0x6c,0x31,0x76,0x8d,0x5d,0x11,0x45,0x54,0xec, +0x0d,0x1b,0x2a,0xf6,0xde,0x4b,0x62,0x57,0x6c,0x08,0x8a,0x25, +0xd8,0x15,0x0b,0x16,0x54,0x6c,0xd8,0x15,0x6b,0x12,0x62,0xd4, +0x18,0x34,0x92,0x44,0xa2,0x92,0xc2,0x9e,0xd9,0x33,0xf7,0x7f, +0xe6,0xb9,0x13,0xb1,0x9b,0xe4,0x7d,0xdf,0xdf,0xe7,0x7f,0xf3, +0x99,0xbd,0xdd,0xd9,0xa9,0xcf,0x3c,0xcf,0x33,0xdf,0x67,0x76, +0x76,0xd6,0x36,0xd7,0xc5,0x7d,0x12,0x95,0x3f,0x4e,0xdd,0xc3, +0x49,0x73,0x65,0x83,0xe1,0xcc,0x6f,0xeb,0x25,0xc3,0x3c,0xa9, +0xb6,0x5a,0xaa,0x7f,0x56,0xae,0x2f,0xb5,0x6e,0x2a,0xb7,0x96, +0x93,0x9a,0x4b,0x49,0xfc,0x67,0xf2,0x07,0xa3,0x64,0xda,0xa9, +0x62,0xd7,0x2b,0x7d,0xef,0x0c,0xcd,0x6f,0x3d,0xdc,0xb8,0x51, +0xf6,0x48,0x2d,0x79,0xe4,0x93,0xf0,0x9a,0xd5,0x5a,0xca,0xea, +0xf0,0xcd,0x2d,0x8d,0x92,0x26,0xe3,0xfb,0xf3,0x67,0xbe,0xc9, +0x2a,0x07,0x02,0xa2,0x88,0xda,0x08,0x02,0x42,0xd3,0xca,0x9d, +0xae,0x7f,0x57,0xed,0x6e,0xdb,0x64,0x9b,0x6c,0x58,0xb5,0x73, +0xe5,0x9e,0x15,0xa9,0x6a,0x49,0x27,0x37,0x92,0xab,0x86,0x4b, +0x55,0xe5,0x4e,0x72,0xdf,0x30,0xdb,0xa0,0x93,0x72,0x67,0xa9, +0x93,0x54,0xf7,0x84,0x5c,0x57,0x6a,0x24,0x85,0x9d,0x04,0xb0, +0x55,0xb9,0xa5,0x5c,0xd9,0xca,0x2f,0xd9,0xb9,0x68,0xe7,0xfc, +0x94,0xb6,0x71,0xc6,0xc9,0x65,0x07,0x96,0xe8,0x59,0x4f,0xbd, +0xdb,0x0e,0xa8,0x5d,0xf7,0xe1,0xba,0xfd,0x8d,0x4d,0x9b,0xd2, +0x57,0x9c,0x9e,0xf7,0xb5,0x5a,0xfa,0xd4,0xe6,0x27,0x37,0x7a, +0x2c,0xf5,0x3b,0x66,0x1f,0xd2,0x56,0xea,0x5d,0x5c,0x6e,0x60, +0xf7,0x93,0xea,0xf3,0x9f,0x35,0x9b,0xd4,0x71,0x58,0xcf,0xde, +0x3b,0x06,0xef,0x1f,0x71,0x34,0x6a,0xa0,0x71,0x6d,0xf8,0x96, +0xc8,0xd4,0x6e,0x03,0xfa,0x77,0x19,0xd2,0x72,0xf0,0xc6,0x36, +0xc6,0x8b,0x9b,0x0f,0x6d,0xd9,0xb1,0x4b,0xdd,0xee,0xfa,0x2f, +0x03,0x24,0x63,0xa0,0xad,0x09,0x1f,0x77,0x9a,0x7b,0xda,0xdb, +0x76,0x97,0x6d,0xe1,0xe7,0x21,0x09,0x82,0x54,0x4f,0x16,0x0c, +0x92,0x20,0x79,0xc9,0x82,0x20,0x37,0x68,0xcf,0x36,0xef,0xf3, +0x90,0x74,0x2c,0x58,0x67,0x90,0x74,0x10,0xac,0x13,0xdc,0x6d, +0x0b,0x9e,0x04,0x19,0x96,0x4c,0xdb,0xb2,0xb7,0xed,0xce,0x96, +0x27,0x7a,0x1d,0xf3,0x97,0x5b,0x47,0x49,0x1f,0xf1,0xc9,0x7d, +0x76,0xf4,0x4a,0xe9,0xaf,0x96,0xff,0xe0,0xb7,0x6f,0xda,0xba, +0x63,0xed,0x96,0x1e,0x5b,0x8c,0xfd,0x3a,0x45,0x44,0x45,0xf5, +0xdf,0xd2,0xd5,0x18,0xb7,0x90,0x93,0x37,0xda,0x1a,0x08,0xb6, +0xa2,0x76,0xb5,0x61,0xc8,0xbd,0x59,0x52,0xc9,0xcf,0x25,0x9b, +0x5a,0xee,0xca,0xcf,0x3d,0x3c,0x2f,0x7d,0x4e,0xba,0x5a,0x5a, +0x9f,0x61,0xaf,0xdc,0x3a,0x87,0x9f,0x22,0xaf,0x1b,0x2d,0xcf, +0x8f,0x95,0x47,0x8c,0x98,0x31,0x7c,0xe6,0x88,0x99,0xcb,0xc2, +0x8c,0x8f,0x92,0x24,0xf7,0x6d,0x57,0x93,0xa7,0xa6,0x1b,0x3b, +0x8c,0x6d,0x36,0xba,0xf1,0xd8,0x44,0xa9,0xea,0x0a,0xa9,0xfe, +0x12,0xa9,0x25,0x7b,0x3e,0x20,0xaf,0x5c,0x24,0xb7,0xda,0x12, +0x22,0xae,0x6e,0x71,0x6a,0xfe,0xa2,0xb3,0x6b,0xa4,0x96,0xc6, +0x6e,0x6b,0xb8,0xa7,0xa1,0xec,0xa9,0x7c,0x3f,0xd9,0x24,0xf5, +0x13,0xa4,0xef,0xfc,0xe0,0xac,0x38,0x9c,0x65,0xc8,0xcd,0x0d, +0x5f,0xec,0xde,0x70,0x64,0xe5,0xa1,0x9e,0x89,0xc6,0xb1,0x9d, +0x62,0x3b,0x0c,0xee,0xa1,0x96,0x5b,0x4b,0x4a,0x43,0x72,0xd7, +0xa4,0x4e,0x89,0x5d,0x76,0x27,0x19,0xc7,0xa6,0xc6,0x1e,0x1e, +0x9c,0xaa,0xb6,0x3d,0xb5,0x57,0x37,0x4c,0xfc,0x26,0x46,0x22, +0xc3,0x32,0x3b,0x8f,0x32,0xae,0x6d,0xb4,0x3e,0x64,0xe5,0x47, +0x6a,0x7b,0xae,0x3c,0xc1,0x70,0x50,0x4a,0x89,0x3a,0x66,0xf3, +0xb6,0x07,0xd9,0x7d,0x04,0xe9,0xbe,0x94,0x6d,0xa8,0x20,0xa7, +0xfc,0x20,0x48,0x29,0x60,0x6f,0x95,0x90,0x53,0x7e,0x01,0xc2, +0x68,0x9e,0xf4,0x37,0x0c,0xef,0xd4,0x70,0x88,0x5c,0x61,0xc2, +0xd2,0x28,0xa3,0x14,0xb9,0xf2,0xd6,0xfe,0x24,0x50,0x62,0x7e, +0x1d,0xf9,0xa8,0xc4,0x09,0xc7,0x44,0xa9,0x24,0xbf,0x67,0xd9, +0xb2,0x0d,0xa6,0x4d,0x42,0xdb,0xa5,0x5c,0x0f,0xd9,0x20,0x0c, +0x9c,0xb9,0x60,0xad,0x69,0x97,0x34,0xa7,0xe1,0x59,0x49,0x67, +0x2f,0x7b,0xa1,0x79,0x13,0xbb,0x28,0xeb,0xce,0x5e,0x16,0x40, +0xe9,0x35,0x31,0x48,0xfb,0xf7,0xca,0xfb,0x8f,0x37,0x6f,0x23, +0x6f,0xec,0x2a,0x6d,0xec,0x61,0x2f,0xd9,0xf9,0x4f,0xf7,0xfd, +0xf6,0xea,0xfc,0x2d,0x79,0x89,0x61,0xb7,0xb4,0x4a,0x0a,0x78, +0x3a,0x46,0x0e,0x90,0xe6,0xf7,0x90,0xb7,0xc8,0x9b,0xce,0xec, +0x97,0x62,0xa6,0x08,0xcd,0x56,0x8d,0xba,0x2d,0xda,0x4a,0xf0, +0xa9,0x2b,0x57,0x6c,0x33,0x5d,0x12,0xa2,0x96,0x73,0x52,0x84, +0xf0,0xb4,0xbd,0x04,0x90,0x3d,0x3c,0x52,0x0e,0xe7,0xa5,0xf9, +0xe9,0x86,0xdf,0xed,0x15,0xc3,0xf9,0x1e,0x53,0x16,0x6f,0x33, +0x49,0xd5,0xd8,0xf6,0x73,0x52,0xf7,0x48,0x66,0x1f,0x7b,0x18, +0x3a,0xc8,0x31,0x87,0x84,0x27,0x55,0xa2,0x0c,0xf2,0xb8,0x34, +0x69,0x1c,0xff,0xa1,0xaa,0xbd,0x3c,0xee,0xb0,0x60,0x6f,0x39, +0xcb,0x20,0xc5,0xb4,0x91,0x63,0x78,0x5b,0xcb,0xbe,0x06,0x69, +0x5b,0x4b,0x79,0x1b,0xef,0x2e,0x7d,0x63,0x2b,0x65,0xe8,0x37, +0xb6,0xef,0xf8,0xe8,0xf1,0x6a,0x69,0x8c,0x44,0x32,0x60,0x64, +0x6f,0xd6,0x4a,0x6e,0x26,0xf3,0xad,0x25,0x5e,0x5e,0x20,0x74, +0x1d,0xd7,0x6d,0x42,0xf7,0xc9,0x4b,0xc3,0x8c,0x3b,0x97,0xec, +0x5c,0xbe,0x6b,0x85,0x5a,0xde,0x12,0x22,0xac,0x6c,0xce,0xdd, +0xe2,0x0f,0x26,0x24,0xed,0x33,0x49,0xe9,0xc2,0xce,0xf8,0x94, +0x95,0x29,0x89,0x6a,0x69,0xb1,0x5c,0x13,0x2c,0xd5,0x5f,0x4f, +0xc8,0x25,0xa4,0xc5,0x52,0xe5,0xe3,0x72,0x65,0x69,0x88,0x70, +0x68,0x65,0xda,0xaa,0xbd,0x49,0x31,0xe9,0xc6,0x0f,0xbb,0xc8, +0x42,0x1f,0x59,0x33,0x62,0x45,0x5b,0xe3,0xfe,0xc5,0x07,0x96, +0xec,0x5f,0x0e,0xfc,0x22,0x97,0x6b,0x23,0x95,0x93,0x17,0x0b, +0x72,0x7d,0x95,0xec,0xf7,0xf1,0xce,0x4b,0x91,0xa6,0xc3,0x0f, +0x56,0x49,0xca,0x45,0x92,0xa8,0xde,0x25,0x17,0x17,0x8e,0x5d, +0x3c,0xfd,0xdb,0x86,0x2c,0x40,0x31,0xfd,0xdb,0x02,0xf0,0x1e, +0xf4,0x69,0xab,0xd0,0x46,0x35,0xd5,0x51,0x52,0x55,0x61,0x86, +0x65,0x42,0xc5,0xe8,0x4f,0x86,0x1e,0x19,0x77,0x6e,0xd2,0xf5, +0x36,0xe3,0x8c,0x2b,0xca,0xad,0xa9,0xb1,0xa3,0xf9,0x80,0xf6, +0xdd,0x3a,0xb7,0xee,0x02,0x68,0xfa,0xf8,0xbe,0xd4,0xfd,0x5b, +0x01,0xc5,0x9c,0xc9,0xe9,0x21,0x99,0x03,0xa5,0x58,0x3e,0x3e, +0x83,0x73,0x97,0xb2,0xef,0x1a,0x4e,0x48,0xea,0x35,0x52,0x59, +0x69,0x41,0x80,0x34,0xf3,0x63,0xb9,0x91,0x3d,0xcc,0xd6,0xd8, +0x16,0x26,0xb7,0xff,0x56,0x9a,0x76,0x44,0x9e,0x76,0x8f,0xff, +0x3a,0xee,0xfa,0xf2,0xf3,0xf1,0x50,0xd3,0x7e,0xb2,0x28,0xb7, +0x1e,0x2a,0x0f,0x0c,0x94,0x3f,0x14,0xe4,0x65,0xc3,0x64,0x63, +0x87,0x92,0xe2,0x5c,0xdb,0x11,0x43,0xfb,0x23,0x0d,0x4e,0xb6, +0x49,0xe9,0xd1,0xc5,0x98,0xd1,0xeb,0x72,0xd8,0xe1,0x76,0x6a, +0xe9,0xe3,0x3b,0x86,0xaf,0xee,0x2c,0x88,0xbb,0x6d,0xaa,0x26, +0xcf,0x14,0xe4,0x72,0x72,0x5d,0x43,0xfb,0xf4,0xfa,0x10,0xa5, +0x57,0x17,0xe3,0xf1,0x9e,0x99,0xe1,0x47,0x23,0xd4,0xd2,0xa5, +0x9e,0x86,0xaf,0xa5,0x6b,0xb5,0x04,0xbb,0x68,0x17,0xd9,0xc7, +0x43,0xce,0x48,0xbc,0x49,0x6a,0xf2,0xca,0xc7,0x43,0x52,0x0f, +0x66,0x38,0x3f,0x1e,0xb2,0xf8,0xf6,0xb3,0x8f,0x87,0x9c,0xe5, +0x64,0x95,0xf4,0xc0,0xf0,0x89,0x7c,0xed,0x1b,0x41,0x36,0xa8, +0xa4,0x6b,0x95,0xe4,0x6b,0xbc,0xbb,0x6d,0xb9,0xad,0x9a,0xe1, +0xdb,0xd4,0xef,0xce,0x7e,0x75,0xf5,0x4c,0x87,0x93,0xed,0xd3, +0xa2,0x76,0x1d,0x34,0x46,0xed,0x6f,0x7d,0xb0,0x55,0xda,0x91, +0xa3,0xfb,0x4e,0x6e,0x3d,0xd1,0x0e,0x90,0x49,0x44,0xd7,0x36, +0x91,0x11,0x8d,0xd3,0x1b,0x1d,0x08,0xdb,0x16,0xdd,0xd1,0x98, +0xd1,0xf7,0x5c,0xd7,0x73,0x1d,0x1b,0x36,0xab,0x19,0x5e,0xbb, +0xa7,0x7a,0xec,0x54,0xc3,0x61,0x39,0xf4,0x47,0x29,0xf4,0x10, +0x3b,0x56,0x4a,0xb7,0x87,0xda,0xc7,0x4a,0x79,0x82,0xac,0x9b, +0x55,0x6d,0x5a,0xb8,0x18,0x36,0x75,0xec,0x84,0x88,0xc0,0xba, +0x7c,0x7c,0x3b,0xee,0x0a,0x9f,0x95,0x9c,0x7c,0x73,0x99,0x29, +0xee,0xfa,0xfc,0x07,0x52,0xd9,0x00,0xf9,0xc3,0x47,0xbc,0xdc, +0x12,0x86,0x8d,0x1f,0x25,0x63,0x59,0x41,0x36,0xca,0x96,0x82, +0xb3,0x92,0x86,0x47,0x92,0xf1,0x03,0xc1,0x36,0x5f,0x9e,0x62, +0x38,0xff,0xe5,0xd1,0xbb,0x5b,0x7e,0x6d,0xbd,0xc6,0x38,0xa8, +0x6c,0x54,0xf5,0xb0,0x4f,0xc3,0x2f,0x75,0xca,0x8a,0xc9,0x6e, +0x3b,0xd4,0xb8,0xb9,0xf4,0xe1,0xca,0x67,0xeb,0x34,0x6d,0x5a, +0x37,0xb2,0x5e,0xef,0x2d,0x6d,0x8d,0x5f,0xed,0xfe,0xfa,0x68, +0xe6,0xa5,0x33,0x4d,0xae,0xb4,0xbd,0xd2,0x6d,0xdb,0x09,0xe3, +0xa7,0xbb,0x1b,0x1d,0x0e,0x3b,0xa3,0x96,0xff,0x5a,0x66,0x98, +0x7a,0x60,0xcc,0x91,0xb1,0xa9,0xdd,0x26,0x1a,0xe3,0xbb,0xc4, +0xb7,0x8f,0xeb,0xa8,0x96,0x75,0x52,0x80,0x61,0x45,0xeb,0xe5, +0x9f,0x2e,0xae,0x7d,0x70,0xa9,0x71,0xea,0xf9,0xb1,0x37,0xc7, +0x1d,0x53,0xcb,0xdd,0xe4,0xa3,0x86,0xf5,0x37,0x12,0x7f,0x5f, +0x24,0x91,0x88,0x45,0xc6,0x69,0x1f,0x8c,0x0e,0x19,0x5a,0x0b, +0xa4,0x52,0x5a,0x6d,0x88,0xab,0xbb,0xa0,0xcc,0xdc,0xca,0x47, +0x96,0x18,0x3f,0xfb,0x66,0xca,0xe3,0x49,0x57,0x40,0x55,0x2b, +0x9e,0xdc,0x30,0xd4,0xe9,0x58,0xb6,0xbb,0x6c,0x8e,0x4e,0x6e, +0x03,0xa6,0x4b,0xca,0x2f,0x07,0x6e,0x1c,0x55,0xdb,0x36,0x57, +0x31,0x58,0x0e,0xcb,0x8a,0xbd,0xb2,0x62,0xdb,0x80,0x8e,0x46, +0x89,0xeb,0xfd,0x47,0xb7,0xbc,0x76,0x6a,0x7b,0x05,0xd9,0xcf, +0x20,0xe9,0x23,0xa4,0x0f,0x7a,0x4b,0x35,0x46,0xac,0x07,0x5b, +0xb4,0xfc,0x2a,0xd9,0xb0,0xb1,0xe8,0x9e,0x8b,0xdb,0x8f,0xef, +0xde,0xb7,0xbf,0xed,0x06,0x63,0xe7,0xce,0x2d,0x7b,0xd4,0xed, +0xdb,0x70,0x4b,0xd8,0xce,0x8e,0x7b,0xdb,0xc4,0x18,0xf7,0x77, +0x3d,0xda,0xeb,0x6c,0xbf,0xa2,0x20,0xfb,0x31,0x72,0xa9,0xd1, +0x6b,0x00,0x3d,0x56,0x5b,0x2d,0x7d,0xb0,0x53,0xd2,0xc3,0x80, +0x1a,0x07,0xf6,0xbc,0x34,0x72,0x8e,0xd4,0x75,0x99,0x14,0xb6, +0x6e,0xc0,0x31,0xa3,0xdc,0x66,0x88,0xdc,0x75,0x92,0xbc,0xf4, +0x73,0xb5,0x3c,0x76,0x6c,0x7d,0x59,0x69,0x11,0x0f,0x75,0xf8, +0xea,0xcb,0x5d,0x97,0x12,0x1e,0xfa,0x4b,0xdf,0xc9,0x33,0x2e, +0x48,0x33,0xa4,0xcc,0xe3,0x4f,0xc3,0xf9,0x79,0x5b,0xe6,0xec, +0xd8,0x15,0xe0,0x2e,0xc9,0x4f,0x6e,0x19,0x6a,0x37,0xac,0xdc, +0x4e,0x2e,0xd9,0x76,0x63,0x84,0x51,0x2a,0x73,0xf2,0xc7,0x13, +0xdf,0x7e,0xa3,0xb6,0xed,0x93,0x43,0xc0,0x0c,0xf9,0xb2,0xd4, +0x31,0x99,0x1e,0xee,0xdd,0xd9,0x28,0x09,0xe1,0x0f,0xdb,0x48, +0xaa,0xfa,0x6a,0x39,0x7f,0x82,0xe1,0xc0,0xa6,0x5d,0x5b,0xb7, +0xa6,0x74,0xdc,0x6e,0x8c,0xee,0xd5,0xa5,0x6f,0xe4,0x80,0x76, +0x1b,0xbb,0x6c,0xed,0xb5,0x3d,0xaa,0xb7,0x71,0x7b,0xdf,0xdd, +0x03,0x0e,0x0c,0x92,0x49,0x84,0x1c,0xdc,0x4d,0xae,0xd2,0x2f, +0x11,0x08,0xf1,0x69,0x8a,0x54,0xe6,0x90,0xa4,0x3d,0x27,0xe9, +0x5b,0x48,0x25,0xa2,0xa4,0x46,0x3d,0x12,0xa0,0x86,0x55,0xb7, +0xcb,0x81,0x7b,0xcd,0xa0,0xbf,0x73,0xe4,0xbf,0x0c,0x19,0x76, +0xfd,0x43,0x69,0xe2,0x09,0xfb,0xca,0x70,0x69,0x48,0xa8,0xfc, +0x57,0x6b,0xe9,0x2f,0x79,0xa8,0x3d,0x34,0xec,0x4f,0xed,0x49, +0x7b,0x15,0x69,0xa8,0x20,0x67,0x77,0x36,0xa4,0x44,0x6e,0x6b, +0xb3,0x21,0xfc,0xf8,0x06,0xe3,0xe0,0x63,0xbd,0x4e,0xf7,0x49, +0x53,0xdb,0xda,0xc9,0xe1,0x86,0x9d,0x07,0x76,0x5f,0x5a,0x77, +0x2c,0x3c,0xc9,0x38,0xac,0x5d,0xcf,0xa6,0xbd,0xbb,0x40,0x1f, +0x2c,0x7e,0x92,0x63,0x18,0x26,0xb7,0x88,0x92,0x2b,0x7e,0x2a, +0x6b,0x52,0x3a,0x1a,0x57,0x7e,0x91,0xb8,0x3d,0x31,0x55,0x6d, +0x4f,0x3a,0xf6,0xa4,0x9a,0x90,0x74,0x3d,0xe1,0xe6,0x92,0xef, +0xd5,0x72,0x7b,0x3b,0x0c,0xf6,0x33,0x65,0x8f,0xef,0xb3,0xa5, +0x12,0xe7,0x8e,0x36,0xbb,0xd1,0xa6,0x86,0xac,0xb9,0xd1,0xb6, +0x46,0x8b,0x88,0x33,0x72,0x89,0xdb,0x1f,0xc9,0xee,0xf2,0x4c, +0xc9,0xbd,0xbc,0x5c,0x22,0x42,0x2a,0x21,0x7f,0x74,0x42,0xfa, +0x48,0x2a,0x73,0x54,0x2e,0x73,0x5f,0x78,0xd2,0x5b,0x9e,0x6d, +0x28,0xbb,0xa6,0xe6,0xee,0x16,0xe9,0xeb,0x0e,0xad,0x38,0xb9, +0xf0,0x9a,0x5a,0xaa,0x64,0xe3,0xe5,0xf2,0x7f,0x48,0x8d,0x8e, +0xdb,0x8d,0xa0,0x5d,0x8a,0xca,0xa5,0xed,0xbc,0x14,0xca,0xcf, +0x0c,0x9f,0xd4,0x69,0x6c,0xcf,0x41,0x9b,0x62,0xb7,0x8e,0xdc, +0xde,0x7d,0xa0,0x71,0x5d,0x97,0x8d,0x3d,0xb7,0xf6,0x1d,0xd0, +0xb9,0x4b,0x74,0xcb,0x7e,0x9b,0x3a,0x19,0xcf,0xee,0x38,0xb8, +0x6b,0xdb,0xc1,0xcb,0x61,0xb7,0xba,0xdf,0x1f,0xa1,0x7e,0x5a, +0xe9,0xc9,0x6a,0x43,0x49,0x59,0x93,0x2b,0xd8,0x2e,0xc9,0x83, +0x0c,0xa1,0xbf,0x3d,0xe4,0xa5,0x72,0x21,0x86,0x62,0xbf,0xe5, +0xf1,0xf2,0x22,0xb9,0x8c,0xe1,0x61,0x6d,0x7e,0xc2,0x6c,0xb6, +0xd8,0xb0,0x04,0x2f,0x95,0xf2,0x9b,0xb3,0x6c,0xf6,0xf2,0xe5, +0x01,0x5f,0xe5,0xc9,0x9c,0xf0,0xb4,0xd9,0xcf,0x06,0xb9,0x68, +0x03,0x30,0xb3,0xc0,0x18,0x2a,0x0a,0xe8,0xec,0x2a,0xa0,0x32, +0xf7,0x27,0xf5,0x9e,0x7c,0x65,0x60,0xdf,0x74,0x5a,0x2d,0x29, +0xd8,0xdf,0xe7,0x61,0xd2,0xe7,0xb2,0xf2,0xac,0xa4,0x94,0x56, +0x3b,0xff,0x56,0x9e,0x94,0x57,0xf2,0xf2,0x28,0xb6,0x83,0x8f, +0x28,0x5f,0xb7,0x0b,0x42,0xe8,0xde,0xe8,0xc7,0xa2,0xed,0xf6, +0x59,0xfb,0x57,0x7c,0xf3,0xa1,0x89,0xe7,0x4c,0xd2,0xf1,0x27, +0x8d,0x4f,0xdb,0x35,0x12,0x5b,0x3a,0xfd,0x95,0x64,0x33,0x4c, +0x5b,0x02,0xf8,0x68,0xc2,0xa4,0x29,0xc6,0x19,0x39,0xd2,0x47, +0x19,0xf2,0x47,0xd2,0x83,0x56,0xf2,0x03,0xb9,0x66,0x6b,0xa9, +0x12,0x3f,0x5a,0x56,0x35,0x93,0x69,0x85,0xe2,0x3b,0x22,0x8c, +0x77,0x7e,0xd9,0x97,0x13,0x97,0x03,0xd0,0xe8,0xe3,0x53,0xb6, +0x60,0x80,0x46,0x73,0xe6,0x4d,0x17,0x7f,0x97,0x1b,0xec,0xde, +0xcb,0xd9,0xf6,0xd4,0xc4,0xf5,0xe2,0x83,0x57,0xab,0xe3,0x9d, +0xeb,0xc5,0x2b,0x04,0x48,0xc5,0xec,0x5d,0x5a,0x4b,0x65,0x5b, +0x0a,0x9f,0xcc,0x6c,0x38,0xa5,0xa9,0xd8,0xe3,0x58,0x9f,0x13, +0xfd,0x4e,0x46,0xf6,0x35,0xee,0xad,0x7d,0xa8,0xde,0xd1,0x46, +0xbd,0xe5,0x4a,0x35,0x65,0x37,0xc0,0x5d,0xba,0xdd,0xc0,0x8a, +0xfe,0x92,0xee,0xa6,0xe4,0x95,0x2a,0x95,0x3e,0x57,0xe7,0x52, +0xa3,0x2b,0x61,0x9f,0xcf,0x98,0x3d,0xfd,0xf3,0x19,0xea,0x0f, +0x27,0x0f,0x1d,0x51,0x2f,0x50,0x26,0x6c,0xc1,0xf8,0xaf,0xfc, +0xcf,0x3b,0x77,0xfc,0xb1,0xd2,0x94,0x38,0x7e,0x15,0x5b,0x30, +0x6e,0x3f,0xfa,0x64,0xb4,0x61,0x4c,0x9d,0xc1,0xd5,0x87,0x34, +0xdd,0x3f,0xc4,0xb8,0xe1,0xfc,0xa6,0xef,0x57,0x7d,0xc5,0x04, +0xa4,0xbd,0x61,0xd4,0xd5,0xc1,0x37,0x87,0x9e,0xef,0x30,0xd4, +0xb8,0xae,0x49,0x72,0x8d,0xc4,0xfa,0x6a,0xdb,0x0a,0xb9,0x98, +0x61,0xe5,0xed,0x45,0x3f,0xe4,0x05,0x9c,0x92,0x5a,0x94,0x17, +0x64,0xeb,0x74,0xf9,0x43,0xb6,0xb4,0xfc,0xd3,0x93,0x4d,0x2f, +0xb4,0xba,0x86,0x9b,0x03,0xf4,0x34,0xc8,0x34,0x5d,0x56,0xee, +0xb4,0x6e,0xec,0xdf,0xd1,0x98,0x3f,0xe0,0x8f,0x68,0x49,0x11, +0xa9,0xb6,0xef,0x91,0xaa,0x1a,0x3e,0xe9,0x50,0x32,0x5a,0x0e, +0x88,0xd9,0x10,0x69,0x94,0xc4,0xcd,0xbf,0xed,0xb9,0x75,0x4c, +0x2d,0xd5,0x02,0xe8,0x7d,0x7c,0x7d,0xda,0xa6,0x5d,0xdb,0x3a, +0x6c,0x36,0x76,0xed,0x1d,0x36,0xa0,0xc1,0x90,0x46,0xeb,0xc3, +0x37,0x45,0xed,0x88,0xea,0x67,0xdc,0xdd,0x7f,0xff,0xa0,0x23, +0x43,0x2d,0x03,0x64,0x9f,0x11,0x72,0xe8,0xf8,0xc4,0xb6,0x46, +0xa9,0x56,0x82,0x54,0x62,0x83,0xe4,0xb6,0x97,0xed,0xe4,0x57, +0x7c,0xb0,0x54,0x67,0x34,0xdb,0xcc,0xaf,0x54,0xbc,0xec,0xb5, +0xda,0xba,0x49,0x6d,0xef,0x2c,0x43,0xd1,0x92,0x30,0xf8,0xb3, +0xc1,0x9f,0x0f,0xfa,0x2c,0x0e,0x84,0xc8,0x10,0x27,0x69,0xe2, +0x25,0xe5,0x0a,0x75,0xe8,0x29,0xdb,0xe0,0x0b,0xe9,0xf6,0x98, +0x48,0xc1,0x76,0xcd,0x3e,0xd8,0x60,0x1b,0x20,0xf5,0x15,0x46, +0x74,0xe9,0xd9,0xb6,0x43,0x84,0xfa,0x5c,0xd4,0xa1,0x8e,0xed, +0x03,0x3a,0x8f,0x1c,0x13,0x2e,0x7e,0xc4,0xa6,0xa4,0x6e,0xf2, +0xb9,0x29,0xa9,0x99,0x17,0xda,0x1f,0x8e,0xd8,0x63,0xda,0x7f, +0x6c,0xe7,0xb1,0xd5,0x07,0x61,0x80,0xcb,0xb5,0xaf,0x11,0xec, +0x46,0x9b,0x15,0x06,0x8b,0x61,0xb5,0x84,0x0e,0xaa,0x4f,0xe4, +0x61,0xa0,0xf5,0x7d,0x54,0xd2,0xb0,0xba,0x7c,0xfd,0x29,0xb5, +0xa7,0x7c,0x32,0x0d,0xa0,0xf1,0x66,0x69,0xae,0x61,0x49,0xcf, +0xa5,0x91,0x71,0x91,0x43,0xd9,0xf7,0x90,0xa6,0xab,0xa5,0x68, +0x49,0xb0,0x79,0xb3,0xef,0x58,0xb4,0x95,0x4b,0xcb,0x9c,0xdd, +0x5b,0xe2,0xe4,0xe1,0x42,0x87,0x49,0xed,0xa6,0xb4,0x9b,0x0a, +0x58,0xeb,0x71,0xc2,0xfd,0x35,0xdf,0x6f,0x88,0x6b,0x61,0x3c, +0xb8,0x7c,0xe2,0xcd,0x11,0xbf,0x8e,0xba,0xe2,0x6f,0xbb,0x2d, +0x6f,0x62,0xe6,0x92,0x59,0x6a,0x61,0x33,0xca,0x2d,0xbe,0x93, +0x6a,0x48,0xbd,0xed,0x0b,0xe5,0xde,0x52,0xa5,0x2a,0x80,0x36, +0xdb,0xa4,0x9f,0x96,0xbc,0xcb,0xf3,0x0d,0x36,0x0c,0xb9,0x25, +0x4a,0xc3,0xf9,0xd4,0xf8,0xf8,0x54,0xd3,0x57,0x42,0x44,0x3c, +0x67,0x0f,0x7f,0x52,0xd9,0x20,0x11,0x99,0x83,0xce,0x95,0x2a, +0x4b,0x9c,0xe1,0xcb,0xa7,0xf1,0xa3,0xf9,0x8e,0x53,0xe3,0xf6, +0x9a,0x24,0x1f,0xdb,0x1f,0x06,0x89,0x03,0x9c,0x00,0xec,0x3f, +0x7e,0x8c,0xe1,0x9c,0xbc,0xa9,0x19,0x2f,0x7d,0x2a,0x41,0x31, +0x9b,0x9a,0x48,0x9b,0x04,0xe9,0x9e,0x5c,0x95,0x81,0x4e,0x6f, +0x00,0x9d,0xb6,0xe6,0x00,0x3a,0x01,0xe3,0x80,0x4e,0xe7,0xed, +0xcd,0x99,0xb1,0xe6,0x2d,0x7b,0xb3,0xdd,0xcb,0x4f,0xfb,0x49, +0xde,0x52,0x80,0xec,0x0d,0xec,0x7d,0xc9,0x96,0x66,0x90,0x83, +0x84,0x1e,0x33,0x7b,0xce,0xea,0x39,0x6b,0x31,0xf4,0x88,0xcf, +0x32,0xa9,0xe4,0xaa,0x3f,0x56,0xcd,0x38,0x6c,0x6c,0x36,0xa9, +0xfe,0xe4,0xba,0x53,0x98,0x9e,0xf7,0x10,0x7e,0x92,0x35,0x92, +0xba,0x95,0x34,0xb4,0x53,0xd2,0x61,0x63,0xb9,0xc4,0x86,0xab, +0xc2,0xd7,0xa6,0x25,0x1d,0x48,0x4e,0xd9,0xd4,0x75,0x8b,0xb1, +0xcf,0x80,0x2e,0x43,0x9a,0x0f,0xee,0xb2,0xae,0xef,0x86,0xfe, +0xdb,0xd4,0x92,0x3d,0xfd,0xe9,0x08,0x7e,0xde,0x36,0xb6,0xce, +0xfb,0xe8,0x93,0xe8,0xa3,0x4f,0x93,0x2d,0x82,0x5c,0x6c,0x6a, +0x99,0x1a,0xb2,0x56,0x4c,0xeb,0x76,0x34,0xeb,0x8b,0xac,0xe5, +0xdf,0xfb,0x3f,0xa9,0x2b,0x55,0x30,0xd8,0xa5,0x48,0x1b,0xb4, +0xc2,0x60,0xff,0xd6,0xb0,0x6a,0xcc,0x9a,0x51,0x49,0x23,0x6a, +0x4d,0x2f,0x35,0xd3,0x32,0x53,0xfd,0x8b,0x94,0x23,0x45,0xc8, +0x39,0x37,0x9b,0x57,0x97,0xb3,0xe4,0x08,0x29,0xeb,0x03,0x41, +0x0e,0x9c,0x29,0x5b,0x67,0xc9,0xc6,0xcf,0x16,0x02,0x07,0x24, +0x2d,0x94,0xd2,0x17,0x49,0x23,0x56,0xad,0x1e,0x91,0x38,0x32, +0x7e,0xcc,0x81,0x0d,0xc6,0xae,0x87,0x1a,0x5d,0xec,0x00,0xba, +0xed,0x8e,0x54,0xd2,0x20,0xad,0x28,0x25,0xaf,0xe0,0x6d,0x3f, +0xfb,0xc9,0x1b,0x1e,0x48,0x1b,0x00,0x68,0x9d,0x7e,0xd2,0xd7, +0xb0,0x72,0xc7,0xb2,0x9d,0x4b,0x53,0x9a,0x2d,0x35,0x76,0x96, +0x4b,0xd6,0x92,0x03,0x64,0x0f,0x59,0xb1,0xbf,0x83,0xf1,0xce, +0xd7,0x17,0x7e,0x48,0x7b,0xa0,0xb6,0x5d,0xe6,0xe5,0x8c,0xf1, +0x72,0xd4,0xa8,0x8f,0xc4,0x76,0x93,0xfa,0x0e,0x6a,0x16,0x28, +0x5b,0xf0,0x01,0xb8,0x91,0xbf,0x7f,0x28,0xe5,0x66,0x92,0x69, +0xdd,0x8f,0xcb,0xa5,0xc1,0xd2,0xa5,0x80,0x7d,0x82,0x3c,0xd6, +0xfe,0xd8,0xd0,0x7f,0x63,0xf4,0xc6,0x3e,0x1b,0x4f,0x7c,0xbd, +0xf7,0xee,0x17,0x8f,0x01,0x31,0x1d,0x14,0xe2,0x37,0x2f,0xdf, +0xb2,0x6c,0x6b,0x8b,0x95,0xc6,0x48,0x39,0xa4,0x0a,0xe8,0x1a, +0x65,0xa5,0x7d,0xed,0x8d,0x59,0xe7,0xcf,0x7f,0x79,0xf8,0xb6, +0x5a,0x5a,0xc4,0x0f,0xab,0xd1,0xb7,0x61,0xe7,0xe6,0x6d,0x53, +0xdb,0xee,0xec,0xb0,0xb5,0x47,0x67,0xe3,0x91,0xbe,0xc7,0x7b, +0x1e,0xe9,0x5e,0xaf,0x7a,0xe9,0x26,0xb2,0xb6,0xdd,0x2e,0x68, +0x8d,0xfa,0xd8,0xa3,0x2b,0xdf,0xfc,0xb0,0x3d,0x66,0x6b,0xcc, +0xe6,0x41,0xc0,0x70,0xb7,0x6c,0xb7,0x0c,0x91,0x27,0xd3,0xa5, +0x3e,0xec,0xd0,0x7f,0xf7,0x49,0x49,0xb4,0x97,0xfc,0xaa,0x79, +0x6d,0x7b,0x80,0x5c,0xec,0x64,0x3f,0xe1,0xc9,0xc8,0xc3,0x06, +0x39,0xfa,0x78,0x58,0x1b,0xb9,0x0f,0x3b,0xb4,0xcf,0x7a,0x32, +0x8c,0x5f,0xf9,0x14,0x24,0x64,0x2a,0x3f,0x60,0x72,0x5c,0xb2, +0x49,0xa2,0xd2,0x10,0x1b,0x7d,0x1a,0x64,0xa7,0x52,0x23,0x61, +0xc4,0xc7,0x35,0x22,0xe5,0xee,0x03,0x57,0x83,0x59,0x35,0x66, +0xfb,0x2f,0xd7,0x93,0x24,0x4e,0x0d,0x26,0xa2,0x1b,0x1f,0xb1, +0x2e,0xf6,0xb4,0x28,0xc5,0xf1,0x7b,0x13,0x56,0xed,0x34,0xdd, +0x15,0xc2,0x56,0x70,0xb2,0x9b,0x74,0xdc,0x60,0x4f,0xca,0xb0, +0x25,0xf1,0xf6,0x24,0xb9,0xb2,0xe1,0x94,0x2d,0xa9,0x95,0xd0, +0x49,0xd5,0xcc,0x9e,0x74,0x4e,0xb0,0xdd,0x92,0xbb,0x18,0xfa, +0x6e,0xee,0xbe,0x39,0x3a,0xa9,0x77,0x2f,0xe3,0x9e,0xd8,0x1d, +0x31,0x5b,0xa0,0x9e,0xb6,0xb3,0x4f,0x6e,0x1a,0x1a,0x7e,0x62, +0xf7,0x92,0xe7,0xf0,0xf2,0x9c,0xb1,0x72,0x95,0x66,0xb2,0x87, +0x78,0x24,0x82,0xbb,0x2e,0x15,0x5b,0x29,0xb5,0x92,0x16,0x05, +0x48,0x6d,0x9f,0x24,0x1e,0xb7,0xfb,0x0b,0xf5,0x9f,0xba,0x19, +0x86,0x27,0x8f,0x58,0x3f,0x62,0x4d,0xa7,0xbe,0xc6,0xe4,0x98, +0x0d,0xfd,0x36,0x44,0x77,0x19,0x1f,0x31,0xae,0xf5,0x04,0xb5, +0xd4,0x4f,0x8a,0x93,0x7e,0x95,0x7d,0xbf,0x69,0xf1,0x89,0xec, +0x65,0xff,0x52,0x88,0x99,0x3e,0x70,0x7a,0xcc,0xcc,0xf8,0x56, +0x46,0x49,0xb7,0x56,0xd2,0x6d,0xbd,0xb9,0x61,0x15,0xe8,0xcb, +0x84,0xc1,0x07,0xb6,0x19,0x87,0xef,0x88,0xdd,0x31,0x64,0xfb, +0x8e,0xe4,0xed,0x9b,0xd7,0x27,0xf7,0xde,0x6d,0x1c,0x32,0xa4, +0xff,0xc0,0xe8,0x21,0xec,0x9b,0x05,0x63,0x0d,0x47,0xaf,0x1f, +0xb8,0xbd,0xe6,0xaa,0x3a,0x55,0x3e,0xf5,0x34,0xe2,0xe4,0x13, +0x8b,0xd4,0x54,0x18,0xd9,0xa2,0x53,0xf5,0x66,0x9f,0xa8,0x6f, +0x34,0x39,0xdb,0xb0,0x56,0x40,0xf3,0x41,0x83,0x5b,0x8b,0xcd, +0xf9,0xe5,0xe1,0xdc,0x35,0xfe,0xe6,0x9e,0xf4,0xef,0x7f,0x08, +0xbf,0x5c,0xef,0xac,0x49,0x3e,0x9f,0x6d,0x90,0xa3,0x72,0xa5, +0x28,0x5e,0x8e,0x02,0xd5,0x27,0x45,0x59,0xe4,0x28,0xe0,0x14, +0xd3,0x60,0x43,0x8e,0xd4,0xe2,0xc9,0x08,0x79,0xce,0xd3,0xab, +0xc2,0x9f,0x8a,0x27,0x17,0x80,0x31,0x5b,0x4b,0x4b,0xe4,0x50, +0x79,0xec,0xd3,0x12,0xa7,0x6d,0x79,0x52,0xad,0x58,0x5e,0xf6, +0x69,0xfa,0x61,0xa9,0x8a,0x62,0x6a,0xfb,0x9f,0x7e,0x49,0xbb, +0x34,0xff,0x21,0xc0,0xc7,0x45,0x25,0x8e,0xd7,0xbf,0x5b,0x66, +0xff,0x01,0x63,0xb9,0x1f,0x6b,0x7d,0x2f,0xf9,0x04,0xac,0x97, +0xea,0xdb,0x37,0xc9,0x55,0x84,0x84,0x70,0x4e,0x0a,0xe1,0xd3, +0x12,0xd9,0xd3,0xa5,0x2c,0x79,0x0a,0x98,0xf2,0x89,0xc2,0xd3, +0xba,0xf2,0x72,0x83,0x6c,0x94,0x56,0x03,0x73,0x01,0x8c,0xfb, +0xca,0x20,0x19,0xe5,0x0c,0xd9,0x08,0x10,0xf3,0xa0,0x6d,0xbd, +0x41,0x9e,0x35,0x4a,0xf6,0xab,0x25,0xfb,0x8b,0xc3,0x76,0x0d, +0x49,0x1d,0xb2,0x27,0x75,0xd3,0x81,0x3d,0x5b,0x53,0xa2,0x53, +0x8d,0x03,0x7a,0x77,0xe9,0xd1,0x63,0xe0,0xf0,0xad,0xc3,0x37, +0x8d,0x5a,0xd7,0x31,0xc6,0xb8,0xa1,0xcf,0xd6,0xf6,0x5b,0x23, +0x5a,0x0f,0x6f,0x3a,0xbc,0xf9,0x68,0xb5,0xb4,0x56,0x3a,0x65, +0xab,0x29,0xd7,0x10,0xe2,0x93,0x57,0x6c,0x88,0xdb,0xd0,0x68, +0xb5,0x71,0x52,0xdf,0xb1,0x7d,0x46,0xf5,0x53,0xcb,0x1e,0x4f, +0x3b,0xf1,0x23,0x67,0x8c,0x9a,0x31,0x7a,0xe6,0x8a,0x16,0xc6, +0xdf,0x92,0x25,0xdd,0xee,0xfb,0x7b,0x56,0x0e,0x5e,0x39,0x78, +0x79,0xec,0xae,0x64,0xe3,0xd4,0x09,0x53,0x27,0x4c,0x99,0x70, +0xb8,0xbb,0xf1,0xea,0xef,0x29,0x0f,0x12,0x24,0x83,0x5a,0x5a, +0x21,0xcf,0x97,0xeb,0xf2,0x09,0xcd,0x38,0xb0,0x09,0xd3,0xe3, +0x57,0x1f,0x31,0x3d,0xd9,0x68,0x57,0x09,0xd2,0x69,0x79,0xa6, +0x41,0x9e,0x2d,0x35,0x97,0x66,0xf3,0xf6,0x4e,0x2d,0x01,0x4d, +0xcb,0xf3,0x24,0x3f,0x41,0x9a,0xc7,0xb6,0xcc,0x0f,0x82,0xf3, +0x20,0xc1,0x16,0x29,0xb7,0x36,0x2c,0x38,0x31,0xef,0xec,0xd5, +0x00,0x69,0xb6,0x1c,0x06,0x74,0x9c,0xf0,0xa4,0xb4,0xa1,0x4f, +0x5a,0xc7,0x43,0x11,0x69,0x5d,0xba,0x1b,0xd3,0x3b,0xa7,0x75, +0xdc,0xd3,0x41,0x2d,0xa5,0xd9,0xdd,0x60,0x70,0xce,0x91,0xc6, +0x94,0x93,0x8a,0x48,0x8a,0x63,0xf2,0xb7,0xf6,0x7c,0xe9,0xde, +0x31,0x41,0xba,0x23,0x79,0x18,0xda,0x01,0x07,0x9a,0xe4,0x62, +0x42,0xaf,0x89,0x4b,0x76,0x99,0x6c,0x91,0x52,0x1d,0x36,0x30, +0x0b,0x2b,0xc2,0xb9,0x7c,0x50,0x88,0xab,0x53,0x4c,0x60,0x1e, +0xee,0xb4,0x7f,0x21,0xb4,0x5a,0x1f,0x7b,0x4a,0x94,0xaa,0xf3, +0x29,0x2b,0x57,0x6d,0x35,0xd9,0x67,0xdb,0xf4,0x06,0x59,0xc1, +0x32,0xe3,0x41,0xe8,0xce,0x82,0x62,0x93,0x3a,0x83,0x3a,0xb3, +0x37,0x96,0x17,0x18,0x2e,0x64,0x9f,0x95,0xe8,0xf6,0x9c,0xc8, +0x4d,0xc6,0xe8,0x0a,0x2d,0x64,0x65,0xd3,0x1a,0x6a,0x5b,0xb0, +0xf4,0x21,0xe0,0x04,0x48,0x50,0x94,0xd5,0x78,0x99,0x61,0x7f, +0xcb,0x7d,0x4d,0xb7,0xd7,0x3d,0xb3,0xd1,0xd8,0xeb,0xeb,0x4e, +0x17,0x3a,0xa7,0xab,0x9f,0x0e,0x93,0x47,0x1a,0x2e,0x64,0xa6, +0x5d,0xda,0x94,0x19,0xbe,0xce,0xd8,0xbf,0x79,0x54,0xe3,0x66, +0xad,0xd4,0xb6,0xf5,0x52,0x25,0xc3,0xfa,0xe6,0x6b,0x9b,0xc4, +0x37,0xb8,0xb0,0xc2,0x38,0xe6,0xfa,0xd0,0x0b,0x83,0x4f,0x82, +0x29,0x36,0xde,0xb0,0xa2,0x71,0x5c,0xcb,0xf9,0x75,0x2e,0x2c, +0x36,0x4e,0xff,0x6a,0xca,0xb9,0xb1,0x67,0xd4,0xee,0x4f,0x3a, +0xdb,0xb2,0x0d,0x52,0xf4,0x61,0x39,0xfa,0x86,0x34,0x3e,0x5d, +0x1e,0xcf,0x36,0xf9,0x1c,0x1c,0x29,0x0d,0xae,0x21,0x77,0x69, +0x2f,0x75,0xa9,0x2a,0x8f,0x8b,0xb4,0x6d,0x4c,0x97,0x67,0xf0, +0xf6,0x5a,0x32,0x35,0xfc,0x76,0x2a,0x44,0xda,0x24,0x69,0x33, +0xe4,0x5f,0x5b,0x4b,0xf5,0x9e,0xfa,0xf0,0xb1,0x53,0x63,0xa7, +0xc5,0x4e,0x55,0xdb,0x46,0xb5,0xb1,0xcf,0x10,0x58,0x9f,0x8d, +0x9c,0xb9,0x02,0x84,0xd6,0xb8,0x55,0xd2,0xef,0x96,0xb4,0xe9, +0x33,0x4f,0x18,0x3b,0x8f,0xee,0x32,0xa6,0xf3,0x38,0xb5,0x34, +0x4b,0x6e,0x63,0x90,0xa6,0x48,0x57,0xe5,0x5a,0xd0,0x54,0x20, +0xd0,0x1f,0x7c,0x5a,0x42,0xe2,0x7e,0x93,0xcd,0x64,0x6f,0x60, +0xef,0x2b,0x40,0x37,0xed,0x36,0xc8,0xbe,0x92,0x51,0xf2,0xe5, +0x4f,0xc8,0x46,0xe0,0x2e,0xd0,0xf0,0x46,0xe1,0xff,0xdf,0x7d, +0x24,0xef,0xc8,0xc7,0x0d,0x5d,0xa6,0xb5,0x9b,0xde,0x96,0xed, +0x23,0x19,0x70,0x48,0x0e,0x78,0xeb,0x3e,0x92,0x25,0x3b,0x48, +0x25,0x9b,0x08,0x61,0xd3,0x5b,0xcf,0x8c,0xc4,0x7d,0x24,0x85, +0xc5,0x52,0x68,0xc2,0x1f,0xab,0xd4,0x72,0x97,0xff,0xf2,0x3e, +0x92,0xd2,0x9f,0x4f,0xca,0x1a,0x4e,0x4a,0x49,0x61,0xa7,0x4e, +0x4a,0x89,0x47,0xe5,0xc4,0xb3,0xad,0x9a,0xcb,0x49,0xec,0x30, +0x37,0x42,0x9a,0x1b,0x26,0xd8,0x9e,0x3c,0x6d,0x60,0x90,0x5b, +0xff,0x28,0x8d,0x96,0x56,0xc9,0xa3,0x2f,0x48,0x11,0x52,0x28, +0x88,0xda,0xba,0xc4,0xd5,0x6b,0xe2,0x57,0xa9,0xb7,0xc8,0x49, +0xc2,0x92,0xa5,0x71,0x4b,0xe3,0x96,0x75,0x88,0x37,0x46,0x35, +0x6f,0xd2,0xb6,0x54,0xd4,0x86,0x1e,0xc6,0x95,0x71,0x2b,0xe3, +0xe2,0xe3,0xd4,0x25,0xa5,0x7a,0xa1,0xe1,0x97,0xe4,0x32,0xbd, +0xf3,0x07,0xc8,0x9e,0x3d,0x24,0xcf,0x7e,0x45,0xc7,0x08,0xf5, +0x1f,0x4e,0x5d,0x36,0x79,0xde,0xc4,0xc9,0xfe,0x53,0xa6,0x72, +0xd3,0xaf,0xe7,0xa6,0x97,0x94,0x82,0xf8,0x9d,0x4b,0x52,0x96, +0x6d,0x5d,0x3e,0x7c,0xbf,0xf1,0xe3,0x81,0x95,0x47,0x96,0x18, +0xbf,0xac,0xbd,0x31,0x65,0xc1,0xce,0x45,0x29,0xf8,0x1a,0x8c, +0x57,0xa4,0x44,0x85,0x89,0x75,0x7b,0x94,0xad,0x51,0x76,0x7b, +0x5b,0xe3,0xb5,0x9f,0xd7,0x5c,0x8a,0xfb,0x06,0x00,0x6a,0xc9, +0xa3,0x36,0x25,0xbf,0x78,0xe1,0x9c,0xf9,0xd3,0xc5,0xab,0x25, +0xb7,0x7f,0xc1,0x4d,0x96,0x4a,0x5f,0x3d,0x21,0xd7,0x69,0x7d, +0x45,0xae,0xd8,0x4b,0x52,0xf5,0x97,0x83,0x7b,0x48,0xc1,0xd1, +0xb2,0xb6,0xa7,0x54,0xf5,0xcb,0x8c,0x4e,0x42,0xe3,0x0d,0xc3, +0x2e,0x89,0xd2,0x72,0x7e,0x77,0xc2,0xca,0x5d,0xa6,0xfd,0x42, +0x9b,0x25,0x9c,0xdc,0xc4,0x76,0xc2,0x30,0x7e,0xcc,0x98,0xb1, +0xc3,0xc6,0xaa,0x81,0xaf,0x93,0xe2,0x57,0xaf,0x4c,0x4c,0x54, +0x37,0xae,0x68,0x90,0x7c,0xda,0xca,0x3e,0x3c,0x70,0xaa,0x87, +0xa1,0xb1,0xd4,0xe0,0x22,0x9f,0xfe,0xa9,0xe1,0x92,0x14,0xf2, +0xa9,0x20,0x47,0xc8,0x25,0x0c,0x72,0xe3,0xc6,0x52,0x63,0x41, +0x3a,0x20,0x37,0x34,0xc8,0xf5,0xa5,0x86,0x52,0x7d,0x5e,0x2e, +0x02,0x60,0x65,0x55,0x7c,0xc2,0xca,0x84,0xc4,0x65,0x13,0x97, +0x4f,0x5c,0x36,0xe1,0x8b,0x8d,0xc6,0x09,0x70,0x36,0x61,0x69, +0xfc,0xaa,0xe5,0x89,0x4b,0x12,0xfa,0xaf,0x31,0x4e,0x1e,0x3b, +0x71,0xf4,0x84,0x31,0xe3,0x96,0x8f,0x5d,0x3a,0x6e,0xc9,0xd0, +0x41,0xc6,0xf8,0x49,0xe0,0x26,0x8e,0x1d,0x3b,0x7a,0xec,0xa8, +0xf1,0x6a,0xd9,0xff,0x23,0xc3,0xc5,0xb2,0x53,0xf8,0x4e,0x93, +0x16,0xef,0x31,0x81,0xe5,0x69,0xfb,0xc2,0x20,0x29,0x17,0x72, +0x1d,0xd3,0x8f,0x08,0xbb,0xe7,0xed,0x9a,0xb7,0x6b,0xfe,0xac, +0x7d,0x46,0x59,0x98,0xc2,0x65,0x3c,0xde,0x5b,0xfc,0x88,0xa4, +0xdc,0x2f,0x2b,0x33,0x22,0x5b,0xcb,0x5c,0x67,0x89,0x6b,0x17, +0xda,0xf5,0x61,0x4b,0x41,0x16,0xa6,0x73,0xb6,0x7e,0x1f,0x1a, +0x8e,0x4a,0x3e,0xfb,0x65,0x9f,0x13,0x92,0x6a,0xaf,0xac,0x3a, +0x22,0x79,0xed,0x97,0xbd,0x32,0x22,0x5c,0xf1,0x2c,0x5d,0x7f, +0x0f,0x97,0x85,0xce,0x92,0x10,0x21,0x3c,0x8d,0x94,0x2e,0x1b, +0xda,0x48,0xb3,0x8e,0xb3,0x3d,0x5e,0xd8,0x8b,0xb1,0x47,0x33, +0x04,0x39,0x01,0xd7,0x0a,0x4c,0x3a,0x21,0xdc,0x92,0xd7,0x18, +0x3a,0xd8,0xe2,0x7e,0x3b,0x95,0xde,0xea,0xb1,0x3d,0xae,0x83, +0xad,0x43,0x3b,0xfb,0xe4,0x48,0xdb,0xe4,0x36,0x82,0x7d,0xeb, +0x37,0x86,0x13,0xf2,0xa4,0x70,0xe1,0x18,0xbe,0xbd,0xd6,0x54, +0xfa,0x42,0x9e,0x2c,0x7f,0x2b,0x48,0xcd,0xd8,0x2b,0xb3,0x95, +0x65,0x3f,0xa9,0xb2,0x60,0x8b,0xea,0x65,0xd8,0x1b,0x73,0xb8, +0xd7,0xce,0x2e,0xdb,0x77,0x1a,0x7b,0xec,0x6d,0xbf,0xa7,0x4b, +0xb2,0x7a,0x84,0xdc,0xc7,0x30,0x70,0x2a,0x7b,0x91,0x22,0x20, +0x1c,0xf0,0x59,0xb3,0x55,0x23,0xae,0x88,0x40,0xb1,0x7d,0x2b, +0x57,0xee,0x33,0x7d,0x29,0x44,0x24,0x70,0x1f,0x08,0x07,0x25, +0x93,0x61,0x5b,0xd7,0xdd,0x0d,0x92,0xda,0x1e,0xdc,0x64,0x8c, +0x3d,0xd1,0xf3,0x62,0x9f,0xbd,0x6a,0xfb,0x04,0x39,0xd2,0xb0, +0xf3,0xd0,0xb6,0xcb,0x2b,0xd3,0xa3,0x56,0x19,0xc7,0x77,0xee, +0xd7,0xb8,0x57,0x67,0xf6,0x98,0xf3,0xc9,0x37,0x86,0x58,0xd9, +0xbd,0x05,0x20,0x4a,0x5f,0x59,0xb3,0xa1,0xa5,0xf1,0xd6,0x37, +0x47,0x2e,0xee,0xb8,0xb6,0xfe,0xe0,0xb2,0x3d,0x8b,0xf7,0xa9, +0x17,0xf2,0x8b,0xbb,0x2c,0xed,0xb1,0xae,0xe3,0xf6,0xfa,0x87, +0x9b,0xde,0xab,0xfe,0xc5,0x19,0xa3,0x5c,0x44,0xd2,0xb5,0x94, +0xc8,0x50,0xc9,0x43,0x6d,0xe3,0xec,0xf5,0x0c,0x33,0x24,0xed, +0xb5,0xa3,0xf5,0xa4,0x9a,0x7c,0xf2,0xb2,0xf5,0xcb,0xd7,0xae, +0x18,0x06,0x7a,0xa1,0x77,0x83,0x98,0x06,0x63,0x97,0x47,0x1a, +0xd7,0x2f,0x4a,0x5e,0x9c,0xbc,0x44,0x2d,0x97,0xa8,0x14,0x71, +0x5b,0x98,0x28,0x2b,0xfa,0xb2,0xb7,0xd0,0x3c,0x76,0x74,0x32, +0xa6,0xff,0x9e,0xf0,0xcb,0xa2,0x6f,0xd4,0x0b,0xed,0x23,0x8f, +0xd8,0x22,0xf8,0x85,0x0b,0xe6,0xcc,0x9d,0x2e,0x1e,0x90,0xdd, +0xb6,0x6c,0xee,0x2c,0xe9,0x67,0x2c,0x9f,0x34,0x6f,0xe2,0x54, +0xff,0x7b,0x80,0xdc,0x8f,0xdd,0xfa,0xae,0xda,0x89,0x27,0xb9, +0x72,0x04,0x7f,0xac,0xad,0xe1,0xbb,0xa7,0x65,0xab,0xf0,0x4f, +0xcb,0xd8,0x02,0x0d,0xd2,0xd8,0x63,0xf2,0x58,0xfe,0x28,0xa8, +0x0b,0xbb,0xee,0xb4,0x4d,0x27,0x05,0xc9,0x9d,0x9b,0x0a,0xcb, +0x5b,0x73,0x97,0xf8,0xcd,0x4b,0xd8,0xd6,0x7e,0x0b,0xec,0xe6, +0xb6,0x82,0xbb,0x2d,0x0a,0x2c,0xbd,0xf0,0xa6,0xb2,0xa2,0xb5, +0xbc,0xbc,0xf1,0x06,0x00,0x0f,0x3e,0xdb,0x7f,0xde,0x7a,0x69, +0xab,0xba,0xa3,0xb4,0xef,0x90,0x70,0xad,0xef,0xc3,0x7e,0x52, +0x91,0xe8,0xe4,0x93,0x46,0x79,0xc5,0x45,0xd9,0xf3,0x64,0xf8, +0x79,0xb5,0x5c,0x49,0x0e,0x34,0x9c,0xdf,0xba,0x73,0x5b,0xe2, +0x76,0xf5,0x22,0x3e,0x31,0x7a,0x77,0xdf,0x4c,0x18,0x2c,0xaf, +0x02,0x04,0x9d,0x71,0x4c,0xaa,0x7d,0x52,0xae,0x7d,0x83,0x4f, +0x5f,0x7c,0x30,0x6e,0xe7,0xd2,0x51,0x9b,0x8d,0xfb,0xc0,0xe4, +0x3d,0xd4,0x40,0xfe,0x98,0x77,0x8e,0xe5,0xe9,0xab,0x97,0x1f, +0x31,0x49,0xba,0xa7,0x65,0xc3,0xa4,0x69,0x30,0x5a,0x95,0x1d, +0x21,0x07,0x8d,0x2b,0x3a,0x6d,0x79,0x1b,0xe3,0xa1,0x79,0xa7, +0x16,0x9c,0x5a,0xa4,0xae,0x2f,0x47,0x84,0x49,0x1f,0x09,0xb1, +0x5d,0x3a,0x46,0x96,0x69,0x96,0x12,0x69,0xfc,0xf5,0xcb,0xbd, +0x47,0x97,0x9c,0x57,0x2f,0x92,0x47,0x9e,0x92,0xaa,0xf0,0x0b, +0xe7,0xb3,0x3d,0x3b,0x24,0x9f,0xa2,0x7b,0xf6,0xc8,0x1e,0x79, +0x93,0xe2,0x26,0x2f,0x98,0x38,0xc9,0x5f,0x4a,0x94,0xbb,0x1b, +0x0e,0x49,0x6b,0x3b,0x5c,0xb0,0x95,0xb4,0x87,0xd8,0x4b,0x0a, +0x52,0x76,0xbe,0x41,0x5e,0x2b,0x4d,0x93,0xd6,0xf2,0xee,0x73, +0x6d,0x8d,0xfd,0x6e,0xda,0x76,0x56,0xaf,0x34,0x93,0xcf,0x1c, +0xd4,0x66,0x4b,0xad,0x40,0x39,0x88,0xe1,0xcb,0x3a,0x72,0xdd, +0xef,0x64,0xa5,0x14,0xf4,0x75,0xfa,0xf6,0x8b,0x5b,0x4c,0xf3, +0x79,0xd9,0x32,0xc8,0x50,0xba,0xe5,0xc5,0x47,0xa6,0x1f,0x84, +0x87,0xa7,0x2f,0xfe,0xfc,0xcd,0xf9,0x2e,0xcd,0x45,0xb9,0x8b, +0x50,0xbf,0x69,0xf7,0x4f,0x44,0xc8,0x23,0xde,0xb6,0xd3,0x50, +0x28,0x8b,0xc0,0xca,0xce,0x2c,0xee,0x40,0x16,0x81,0x59,0x87, +0x77,0x5c,0x80,0x2c,0x6a,0xf1,0x32,0x69,0x1d,0x1e,0xda,0x34, +0x2a,0x69,0x67,0x1f,0xb1,0x63,0x1b,0xae,0x4b,0xea,0xb9,0x01, +0x77,0x03,0xa5,0xd2,0xd9,0xf7,0xa5,0x50,0x93,0x3c,0x64,0x9f, +0xa1,0x74,0xf3,0x4b,0xbf,0x40,0xf6,0xb9,0x67,0x2f,0xfd,0xfc, +0xcd,0x59,0x96,0x7d,0x67,0xa1,0x5e,0xb3,0xee,0x35,0x45,0xf7, +0x8e,0xb6,0xd4,0x96,0x86,0xbb,0x61,0xc7,0x01,0xb4,0xc8,0x1a, +0x3e,0xb2,0x5f,0xdc,0x96,0xed,0x3b,0x12,0x52,0x96,0x9a,0x66, +0x26,0x24,0x7e,0x96,0x18,0x28,0x79,0xdc,0xfc,0x5a,0xa2,0xfb, +0xc7,0xee,0x88,0xdd,0x60,0xca,0x3e,0x2f,0x7f,0xc2,0x2f,0x1e, +0x3a,0x68,0xfe,0xc0,0x40,0xd9,0xa3,0x46,0x6d,0x59,0x59,0x2b, +0xa5,0xe5,0xf9,0x81,0xa6,0x19,0x42,0xdb,0x09,0x3d,0x87,0xb4, +0x0d,0xe8,0x9d,0x38,0x74,0xd3,0x38,0x71,0x92,0x10,0x31,0xae, +0x6f,0xff,0x56,0x01,0x95,0x2f,0x77,0x90,0x6a,0x4a,0x75,0xee, +0x1e,0x91,0xa8,0x28,0xaf,0x92,0x4e,0x19,0xea,0x76,0xde,0x76, +0xdd,0xb4,0x51,0xb8,0xbe,0x7f,0xdb,0xf5,0xeb,0x07,0xfa,0xd6, +0x15,0x63,0x84,0xba,0x9d,0xe0,0x4f,0x6a,0x2d,0x5f,0x30,0xb4, +0x08,0x1f,0x58,0x5a,0xac,0xc5,0x57,0xea,0xbb,0xeb,0xd0,0xf6, +0xc4,0xf5,0x3b,0x56,0x9a,0xa4,0x46,0xfc,0x9d,0x8d,0x31,0x5d, +0x4c,0xee,0xeb,0xa4,0x4b,0x13,0x0c,0x52,0xbd,0x2c,0xb0,0xbd, +0xa6,0x4a,0xd3,0x6a,0x4a,0x66,0xb9,0x9e,0x5c,0xaf,0xa6,0x6c, +0x96,0xa7,0xc9,0x53,0xb3,0x64,0xb3,0x54,0xcf,0x94,0xa5,0x92, +0xf9,0x4e,0x8f,0x25,0x8b,0x89,0xcd,0xcf,0x5b,0x0e,0x3c,0x96, +0x78,0x89,0x3f,0x50,0x5c,0xb6,0x88,0xb2,0x4e,0x90,0x2d,0x9d, +0x8a,0xcb,0xbc,0x28,0xcd,0x54,0xed,0x4e,0x5c,0xb3,0xc5,0xb4, +0x4c,0xd8,0x32,0x7a,0x6d,0x8f,0x1e,0xa3,0x87,0xf5,0x17,0x27, +0x0a,0xfd,0x13,0x87,0xef,0x16,0xdd,0xa7,0xdb,0xb6,0x4a,0x1b, +0x0c,0x67,0xed,0x03,0x9a,0x0b,0xee,0x44,0xa1,0x50,0xe8,0x6d, +0x26,0x7d,0xf1,0xc4,0x60,0xe2,0x7f,0x61,0xa3,0xf7,0xec,0xd9, +0xbc,0x98,0x54,0xc5,0xa1,0xd7,0xcc,0xd6,0xeb,0xfe,0x1c,0xe7, +0x6b,0xfb,0xd5,0x40,0x08,0x51,0x80,0x57,0x93,0xee,0xa4,0x33, +0x51,0x11,0xbe,0x7e,0xc3,0x66,0x6d,0x48,0xf1,0x1e,0xa3,0x63, +0x07,0x90,0xaa,0x7d,0x62,0x7b,0xf5,0x27,0x55,0xa3,0xbb,0xc5, +0xf4,0x25,0xc5,0xfb,0x77,0x8b,0xe9,0x46,0x8a,0x0f,0xe8,0x36, +0x2c,0x86,0x54,0x25,0x3c,0x61,0x3f,0x25,0xc4,0x17,0x89,0x85, +0x14,0x27,0x8b,0x5c,0x21,0x14,0x42,0xf4,0xc4,0x93,0xf8,0x92, +0x49,0x44,0xe1,0x48,0x25,0x0a,0x5a,0x0f,0xfe,0x67,0x41,0xa8, +0x1f,0x51,0xf5,0xed,0xd1,0xbb,0x3b,0xf8,0x61,0x7d,0x7b,0xf6, +0x1a,0x14,0x3b,0x68,0x60,0xcc,0x3f,0x2c,0xab,0xe4,0x2b,0x65, +0x19,0xa1,0x05,0x65,0xa0,0xac,0x83,0xd8,0x12,0x05,0x19,0xe5, +0x6a,0x93,0x96,0xa4,0x28,0xbe,0x7a,0x4d,0x29,0x2d,0xb0,0x94, +0x9e,0x58,0xca,0x18,0x2c,0x65,0x01,0xe4,0x05,0x3f,0x87,0x03, +0xfe,0x39,0xa2,0x83,0xda,0x06,0x15,0x84,0xb0,0xd2,0x78,0x28, +0xc9,0x8b,0x14,0x21,0xc1,0x85,0x42,0x15,0x44,0x20,0x6e,0xc4, +0x1b,0x4a,0x17,0x0b,0x85,0x2a,0x81,0x92,0xee,0xc4,0x87,0xf8, +0x13,0x53,0xa1,0x50,0x4a,0x34,0xc4,0x03,0x6a,0x1a,0x40,0xcc, +0x85,0x42,0x55,0x50,0x43,0x4f,0x62,0x20,0x81,0xa4,0x28,0xb1, +0x44,0x77,0x1b,0x30,0x8c,0x64,0xe2,0xf1,0x3a,0x1e,0x6f,0xe0, +0xf1,0x0e,0x1e,0xef,0xf7,0xef,0x15,0x1b,0x43,0x72,0xdf,0x7e, +0x1c,0xcc,0x62,0xe6,0xbf,0xfd,0x38,0x02,0xb2,0x23,0x76,0x76, +0x54,0x28,0xf1,0xa8,0xc6,0xa3,0x3b,0x1e,0x7d,0x47,0xf4,0x8f, +0x8d,0x51,0x04,0xbc,0xe3,0x08,0x19,0x29,0xcc,0x6f,0x3f,0x22, +0xfd,0x29,0x1e,0x95,0x78,0x54,0xb8,0x7a,0x84,0x1d,0x55,0xd8, +0x77,0x5a,0xa0,0xb2,0x1e,0xaf,0xdd,0xf1,0xa8,0xc6,0xa3,0x80, +0x47,0x1e,0x8f,0x1c,0x1e,0x35,0x78,0x74,0xc3,0xa3,0x07,0x50, +0xcb,0x52,0xe0,0xe2,0x9f,0x39,0x85,0x1f,0xc7,0x87,0x56,0x8d, +0x3c,0xde,0xc5,0xde,0x3b,0x09,0x4b,0xa1,0x90,0x73,0x45,0xd2, +0x08,0xce,0xb5,0x84,0xfb,0x4b,0xff,0x97,0x1e,0xce,0xf4,0xca, +0x55,0xca,0x24,0xe5,0x5a,0xe5,0x7a,0x65,0xb2,0x72,0xa3,0x72, +0xb3,0x72,0xab,0x72,0xbb,0x32,0x45,0xb9,0x2b,0x78,0xbf,0x33, +0x96,0x83,0xc7,0x58,0x2a,0xe5,0x04,0xe5,0x44,0xe5,0x24,0xe5, +0x14,0xac,0x91,0x0a,0xc3,0xbc,0x95,0x63,0x94,0x63,0x95,0xe3, +0x94,0xab,0x95,0x6b,0x94,0xeb,0x94,0x5f,0x28,0x37,0x28,0x37, +0x29,0xb7,0x28,0xb7,0x29,0x77,0x28,0x77,0x2a,0x77,0x2b,0x4f, +0x28,0x33,0x94,0x27,0x83,0x0f,0x14,0x94,0x5b,0x83,0x34,0xc3, +0xb4,0x6a,0x67,0x5a,0xf1,0x92,0x78,0x59,0xbc,0x29,0xde,0x16, +0xef,0x88,0xd9,0xe2,0x3d,0xf1,0xbe,0xf8,0xa3,0xf8,0xb3,0x98, +0x6b,0x32,0x98,0x9b,0x99,0x5b,0x9b,0xc3,0xcd,0x6d,0xcc,0x6d, +0xcd,0x11,0x58,0x03,0x2d,0xf9,0x13,0x53,0x28,0x94,0x13,0x9c, +0xd7,0x8a,0xdf,0xf1,0xda,0x4b,0xbc,0x22,0xde,0x12,0xbf,0x13, +0xbf,0x17,0xef,0x8a,0x3f,0x88,0x39,0xe2,0x4f,0xe2,0x03,0x93, +0xaf,0xb9,0xb9,0x39,0xcc,0xdc,0xce,0x1c,0x69,0x6e,0x6f,0xee, +0x60,0xee,0x88,0x3c,0xa7,0x02,0x3a,0x46,0x2a,0x4b,0x2a,0x67, +0xb1,0x52,0x91,0xc6,0x4c,0x5e,0xac,0xa4,0x2c,0xd4,0x88,0xd1, +0xdc,0x93,0x24,0x92,0x55,0x84,0xd1,0xc7,0x13,0xe4,0x51,0x49, +0xaa,0x00,0x37,0xb6,0x03,0x4f,0x0b,0xce,0x56,0x39,0x64,0xb8, +0xaa,0xe6,0xc8,0x86,0x2b,0x2d,0x49,0x72,0xe4,0x42,0xac,0x79, +0x98,0xd3,0x72,0xb2,0x16,0xee,0x80,0xa6,0x70,0x64,0x39,0x64, +0x47,0xae,0x23,0xc3,0x91,0x0f,0x14,0xcb,0x86,0x18,0x5a,0xa4, +0x5d,0x26,0xfe,0x7b,0x90,0x42,0x3f,0x47,0x26,0xe4,0x06,0xf1, +0x21,0xdc,0xb7,0x20,0x50,0x8b,0x31,0x7d,0x21,0x45,0x3e,0x4a, +0x83,0x2f,0x5c,0x11,0x28,0x8f,0xbc,0x21,0xa6,0x3f,0xe6,0xe9, +0x0f,0x9e,0xc5,0x64,0x1c,0xf5,0xac,0x0d,0x89,0x50,0x37,0x25, +0x72,0x57,0x45,0xe0,0x0d,0x37,0xa0,0xbb,0x07,0x38,0x3d,0xf2, +0x85,0x02,0x5a,0x6d,0x85,0x3b,0xa1,0xe0,0x94,0xa0,0x2d,0x4a, +0x42,0xba,0x52,0xe0,0x54,0xa4,0x3c,0x38,0x96,0xa2,0x22,0x1c, +0x3f,0x02,0xc7,0x81,0x76,0x61,0xfa,0xa5,0x3a,0x38,0x81,0x7c, +0x0c,0x4e,0x4d,0xea,0x83,0xd3,0x92,0x86,0xe0,0xb4,0xe4,0x53, +0x70,0x3a,0xe0,0xa3,0x46,0x40,0xbd,0x26,0xe0,0xbc,0x48,0x53, +0x70,0xde,0xa4,0x15,0x38,0x2d,0x69,0x0b,0xce,0x8d,0x44,0x82, +0x73,0x27,0x1d,0xc0,0xf9,0x90,0x8e,0xe0,0x7c,0x49,0x34,0x38, +0x0f,0x32,0x98,0x0c,0x81,0xb4,0xa3,0xc8,0x68,0xa8,0xd5,0x6c, +0x70,0x0a,0xa0,0xe5,0x7c,0x28,0x37,0x8e,0x2c,0x81,0xb4,0x4b, +0xc1,0xe9,0xc8,0x7a,0xb2,0x09,0xc2,0x37,0x83,0x53,0x92,0x1d, +0x64,0x17,0xd4,0x33,0x95,0x1c,0x80,0xf3,0x23,0xe0,0x04,0x72, +0x9a,0x9c,0x87,0x98,0x17,0xc8,0x25,0x28,0xf7,0x32,0x38,0x0d, +0xb9,0x4a,0xbe,0x82,0x90,0x9b,0xe0,0x7c,0xc8,0x6d,0x70,0x3e, +0xe4,0x0e,0x38,0x81,0x7c,0x0f,0x4e,0x4d,0x7e,0x00,0xe7,0x4b, +0x7e,0x03,0xa7,0x27,0x7f,0x80,0xd3,0x2b,0x13,0x94,0x09,0x44, +0x5f,0x2c,0xa8,0x58,0x30,0xd1,0x14,0x13,0x8b,0x89,0xd0,0x0a, +0xa5,0x4b,0xff,0x84,0x22,0x25,0xe0,0x0c,0xfa,0x12,0x5c,0xc1, +0x3f,0xa3,0x28,0x4f,0x55,0xa0,0x4b,0x55,0x28,0xb5,0x4a,0xc8, +0x9d,0xa2,0x03,0x8e,0x86,0xa3,0x0e,0x1c,0x25,0x5d,0xc1,0x29, +0x61,0xbc,0xe8,0x0e,0x31,0x06,0x80,0x53,0x90,0x31,0xe0,0x58, +0x8f,0xcc,0xc2,0xdc,0x93,0xc9,0x0d,0xa0,0xad,0x1e,0xb9,0x20, +0xd5,0x91,0x06,0x2e,0x19,0xce,0x32,0xc9,0x8b,0x3f,0x11,0x9c, +0x93,0x57,0xe6,0x92,0xd7,0xfe,0x58,0xba,0x37,0x84,0x27,0x00, +0x17,0x66,0xbd,0x12,0x9e,0xec,0x8a,0xcf,0xf4,0x05,0xab,0xb1, +0x0e,0xfe,0x3d,0xa0,0xc5,0x5d,0xa1,0xa6,0x03,0xb0,0x2f,0xc6, +0x00,0x45,0x94,0xd8,0x12,0x36,0x7a,0xa8,0x51,0x6e,0x58,0x9b, +0x54,0x10,0xcb,0x0c,0xe9,0x58,0xcb,0x28,0xb6,0x4c,0x89,0x2d, +0x53,0x62,0xcb,0x28,0xfc,0x17,0xc1,0x34,0x1c,0xa6,0xe1,0x30, +0x0d,0x87,0x9c,0xc7,0xb4,0xbd,0x3b,0x5c,0x31,0xfe,0x53,0x83, +0x26,0x0f,0x82,0x1e,0x62,0x79,0x29,0x31,0x2f,0x15,0xe6,0x45, +0x31,0x2f,0x4a,0x62,0xc1,0x39,0x79,0x42,0x8d,0xf9,0xaa,0xc8, +0x04,0x70,0x1a,0xf2,0x39,0x38,0x1d,0x59,0x06,0x4e,0x07,0x9c, +0x9d,0x08,0x34,0x5f,0x05,0x8e,0x07,0x4e,0x67,0xbc,0xce,0x7a, +0x54,0x8d,0x3d,0xaa,0xc6,0x1e,0x55,0x63,0x0b,0x38,0xe2,0x49, +0xbf,0xf2,0x6c,0x11,0x78,0x2f,0xb8,0x21,0xc4,0x19,0x87,0x74, +0xaf,0x46,0x7e,0x25,0x76,0x05,0x4f,0xcb,0x2b,0x8c,0x8a,0xe2, +0xb4,0xb2,0xa2,0x0d,0xdd,0xab,0x98,0x47,0x6b,0x28,0xe2,0xc0, +0x9f,0xa2,0x75,0x15,0xd7,0x95,0x16,0x65,0x69,0xba,0x91,0xee, +0x55,0x36,0x51,0xf6,0x54,0xc6,0x82,0x9e,0x4b,0x56,0x5e,0x50, +0x9e,0x52,0x1e,0x05,0x7f,0x41,0x79,0x83,0xd6,0x50,0xde,0x53, +0xfe,0x45,0xcb,0xd3,0xbd,0x2e,0x57,0x99,0xd6,0x28,0x70,0x75, +0x5d,0x6e,0x23,0x6d,0x44,0x63,0xe9,0x1c,0xba,0x96,0xe5,0x43, +0x8f,0x42,0xd9,0xd5,0xa0,0xbe,0x1a,0xe0,0x2d,0x33,0x8c,0x62, +0x21,0xa4,0x18,0xf9,0x00,0x24,0xae,0x14,0xf0,0x57,0x05,0x90, +0xb3,0x8f,0x48,0x65,0xd0,0x2f,0x55,0x21,0x4e,0x75,0x90,0xae, +0xda,0x20,0x4f,0x4d,0x41,0xbb,0xb4,0xc7,0x1e,0xe9,0x05,0x34, +0x19,0x03,0xed,0x9f,0x47,0x16,0x83,0x34,0xc4,0x83,0x04,0xa4, +0x90,0x9d,0x20,0x05,0xbb,0x41,0x0a,0xf6,0x92,0x7d,0x64,0x3f, +0xc8,0xc2,0x41,0x72,0x88,0x1c,0x26,0xe9,0x20,0x0f,0x47,0x49, +0x26,0x48,0xc2,0x65,0xe0,0xf7,0xef,0xc9,0x3d,0xa6,0xbf,0x1c, +0x39,0xa4,0x1d,0xe8,0x11,0xa7,0x26,0xab,0x06,0x54,0x57,0xe1, +0xd9,0x05,0xf0,0x99,0x50,0x8f,0x4b,0xc0,0xe3,0xa0,0xdb,0x40, +0xbb,0x30,0x8d,0xd6,0x1e,0x62,0xea,0x40,0xf3,0xe5,0x41,0x48, +0x2e,0x84,0xe4,0x92,0xda,0xc0,0xed,0x2c,0x3d,0xbb,0x13,0x0f, +0xe1,0x89,0xf0,0xbf,0x0a,0x7c,0x12,0xf8,0x7b,0x70,0xdf,0x9d, +0x08,0x90,0x8e,0x69,0x35,0x4f,0xe0,0x34,0x33,0xfc,0x17,0xc5, +0x54,0x13,0x48,0x18,0xfc,0xb7,0x03,0xdf,0xde,0x71,0x8b,0xcc, +0x76,0x1c,0x85,0x3e,0xe2,0xa0,0x44,0x11,0x4a,0x14,0xa1,0x66, +0x4c,0x4f,0xcd,0x76,0xdc,0x07,0xee,0x67,0xe9,0x3d,0x81,0xeb, +0x8b,0x42,0x8e,0xd5,0xa0,0x04,0x67,0x5a,0x56,0x62,0x1e,0xc4, +0xd8,0x0f,0xfd,0xac,0x85,0x5e,0x06,0x4d,0x0b,0x9e,0xa5,0xa3, +0x10,0xba,0x05,0x72,0x0a,0xc5,0xba,0xfb,0xb8,0xca,0xf7,0xc5, +0x3c,0x9c,0xe5,0x67,0x43,0x0b,0x39,0xc8,0x27,0x0d,0xf2,0xc9, +0x2b,0xa8,0xfd,0x6c,0xc7,0x11,0xa0,0x9e,0x16,0xf2,0x03,0x1d, +0x0e,0x3e,0x09,0xa9,0xa0,0x2d,0xc8,0xe9,0x1e,0xea,0xc1,0xd9, +0x50,0x5b,0x16,0x22,0x40,0xbe,0x79,0x90,0x9f,0x16,0xf3,0xab, +0xcd,0x74,0x3f,0x6b,0x35,0xd6,0xc1,0x17,0x78,0xae,0x0a,0xe4, +0x5e,0x0d,0xce,0xc2,0x20,0xa4,0x1d,0x9c,0xb7,0x87,0xf3,0x5b, +0x58,0x3b,0x67,0x9e,0xce,0x76,0x52,0x52,0x1d,0x28,0x70,0x04, +0xfc,0x1d,0xf0,0x1a,0xc8,0x33,0x1f,0xea,0x29,0x43,0xea,0x7c, +0xac,0x5f,0x3c,0xc4,0x79,0x5e,0x1f,0x67,0xfb,0x78,0x88,0x95, +0x8b,0xd4,0xc0,0x58,0x70,0x27,0x1e,0xbc,0x93,0x62,0xac,0x57, +0x18,0xdd,0x12,0x90,0x0a,0xcb,0x0a,0xca,0x61,0xfd,0xcc,0xfa, +0x29,0x1b,0x52,0x77,0x05,0x0e,0x1f,0x03,0x7e,0x31,0xb6,0x55, +0x84,0xbc,0x43,0x21,0x6f,0x11,0x28,0x6d,0x7e,0x96,0x27,0x50, +0xaa,0x1d,0xd4,0x62,0x02,0xc4,0x98,0x03,0xd7,0x0b,0x0a,0xfa, +0x36,0x17,0xfa,0x36,0x17,0xc7,0xb4,0x7b,0x90,0x17,0x94,0xe7, +0xea,0xa7,0x9f,0xf1,0xe8,0x2c,0xfb,0x27,0x86,0xc6,0xa0,0xaf, +0x8b,0xc2,0x7f,0x15,0xb8,0xaa,0xe6,0xb8,0x8d,0x7d,0xc6,0x46, +0xc3,0xf6,0x90,0xeb,0x6c,0xb8,0xc7,0xfa,0xec,0x1e,0xe4,0xca, +0x03,0x67,0x8b,0x90,0x4b,0x28,0xf0,0x76,0x28,0xf0,0xb6,0x16, +0x38,0x54,0x0b,0xbc,0x09,0xa3,0x21,0xdc,0xf1,0xc5,0x3b,0xd5, +0xe1,0xff,0x08,0xf8,0x3b,0xe0,0x15,0xe4,0x23,0xa8,0x1b,0x6b, +0x5b,0x0a,0x61,0x23,0xdb,0x25,0x08,0x53,0xc2,0x99,0x2f,0x9e, +0x29,0x90,0x73,0x95,0x1a,0x3d,0x93,0x62,0x4d,0x43,0x6d,0x28, +0x68,0x9b,0x8a,0xd0,0x52,0x0f,0xa8,0x3b,0xe7,0x38,0xe2,0xf8, +0xcd,0xf1,0xb5,0xc3,0x0e,0x67,0x67,0x09,0x75,0xe4,0xe3,0x08, +0x9c,0x05,0xf7,0xf2,0xe1,0x0e,0x68,0x55,0xd0,0xdb,0x76,0x18, +0x97,0x53,0xa1,0x5d,0x1e,0x70,0x27,0x1f,0xd2,0x68,0xc9,0x7b, +0xff,0xa0,0x2d,0xe0,0x41,0x96,0xd8,0xb9,0xfc,0x6c,0x34,0x76, +0xdd,0xcb,0x2b,0x74,0x2e,0x17,0x3e,0xc7,0x54,0x72,0xe1,0xb0, +0x77,0x94,0xf2,0x5b,0xc1,0x29,0xe7,0x2a,0x07,0xf2,0x00,0xba, +0x73,0xce,0xd1,0xde,0x89,0x23,0x0a,0x62,0xe7,0x92,0xbf,0xfd, +0x73,0xfc,0x0e,0xfe,0x57,0xc7,0x0f,0xae,0xb3,0xbc,0x82,0x76, +0x78,0x40,0x49,0xd9,0xd8,0xc6,0x3c,0x46,0x3b,0x2c,0x39,0x07, +0x7c,0xca,0x0b,0xa9,0xf3,0x88,0x2f,0x6b,0xd3,0x7b,0x94,0x93, +0xf7,0x8c,0x6a,0xce,0x7a,0x42,0x9e,0xf9,0x05,0xd4,0xe1,0x0a, +0x51,0xeb,0xa5,0x3e,0x78,0x46,0x2b,0x67,0xfc,0xb7,0xe4,0x7f, +0xdd,0xf1,0x08,0xfa,0xb9,0x70,0x48,0xc1,0x38,0x87,0x75,0xe6, +0xd0,0xbd,0xd8,0x1f,0xf9,0xd8,0xef,0xf2,0xb3,0x98,0xd0,0xbe, +0x1c,0x0c,0xcb,0x75,0xf6,0xeb,0x1b,0x4a,0xba,0x81,0x74,0x7a, +0x0a,0xe9,0x6e,0x17,0xa0,0xae,0xfc,0x67,0x75,0x74,0xb5,0x2b, +0x1f,0x50,0x9e,0x4c,0xfe,0xf1,0xcf,0xf1,0xe4,0x45,0x5e,0x2b, +0xd4,0x2f,0x2f,0xff,0x5e,0xc3,0xb3,0xef,0xe2,0x30,0xc7,0x9f, +0x85,0x4b,0x28,0xcc,0xad,0xaf,0xe7,0x21,0x86,0x73,0x5e,0xe5, +0xfe,0x77,0xb6,0x21,0x07,0x6a,0x9d,0x8b,0xb4,0xca,0xc7,0x63, +0x1e,0x84,0x64,0x39,0xce,0x02,0x6d,0x19,0x7a,0xfd,0x0d,0x29, +0x9f,0xcd,0xa8,0xfd,0x9c,0x23,0x20,0xa6,0x96,0xf5,0x89,0x53, +0x9e,0x58,0x7f,0x14,0x48,0x9a,0x8c,0xe1,0xda,0x17,0x4a,0xf6, +0xc1,0x58,0x69,0x8e,0x7b,0x8e,0xe3,0x30,0x72,0x10,0xc7,0x5e, +0x87,0x03,0xfb,0x2f,0x0b,0x34,0xa9,0xbf,0xe3,0x1a,0x22,0xa8, +0x34,0xc7,0x22,0x08,0xcb,0x00,0x8c,0x93,0x46,0x44,0x90,0xfa, +0x6c,0xe8,0x6d,0x4f,0x57,0x0d,0xef,0x43,0x2c,0xe9,0x59,0x8e, +0x85,0x72,0xd6,0xbe,0xc8,0xb7,0x20,0x1f,0xb9,0xff,0x50,0x3e, +0x7e,0x7d,0x1f,0xf9,0x70,0x5c,0x2b,0xc4,0xad,0xdc,0x8b,0x75, +0x01,0xcd,0x4e,0x10,0xf1,0x73,0x2f,0x25,0x72,0x5d,0x3b,0x6e, +0xb9,0x74,0x50,0xee,0x73,0xa9,0x7a,0x93,0xc6,0x82,0x38,0x3f, +0x3a,0x7e,0x87,0x5a,0xda,0xe0,0xea,0x26,0xd3,0x5e,0x10,0x92, +0xf7,0x72,0x8a,0x67,0x3c,0x8c,0xe7,0x76,0x3c,0x66,0x17,0x70, +0x61,0xde,0x7b,0xeb,0x2c,0x5a,0xa8,0x15,0xda,0x97,0x25,0xda, +0x45,0xaf,0x97,0x91,0xe8,0x4b,0xb4,0x7a,0x5d,0x5b,0x40,0x77, +0x33,0x2d,0x5e,0x04,0x29,0xc0,0xac,0x1c,0x0e,0x7a,0x98,0xf1, +0x55,0x26,0xf4,0x48,0x8a,0x8b,0x56,0x1e,0xae,0x52,0xc1,0xfa, +0x71,0xa4,0x00,0x85,0xb2,0xd8,0x7d,0xa8,0x7d,0x0a,0x5a,0x62, +0x69,0x90,0xc7,0x11,0x46,0x75,0x38,0xcb,0x74,0xfc,0x01,0x1c, +0x71,0x0d,0x4a,0xce,0x74,0x3c,0x29,0xd0,0x03,0x8c,0x92,0xb7, +0x5c,0xe7,0x4f,0xc1,0xff,0x50,0x80,0xbc,0xc9,0xab,0xe8,0xb9, +0xa0,0x8d,0xda,0x42,0x08,0x9d,0x20,0xae,0x7d,0xde,0x76,0xee, +0x75,0x54,0x02,0xee,0x78,0x3d,0x05,0x5f,0x27,0x83,0x99,0x85, +0xfa,0x3c,0xff,0xfd,0xb4,0x3d,0x8c,0x7e,0xd0,0xdb,0xae,0x54, +0x1c,0xd2,0xca,0xd9,0x93,0x39,0x2e,0x99,0xf6,0x05,0x1b,0x51, +0xfb,0xfa,0xde,0x67,0xed,0x74,0xca,0x21,0x72,0x79,0x1e,0x6a, +0xc5,0x42,0xdc,0xf5,0xac,0x74,0xc6,0x21,0x70,0xee,0xe1,0xd2, +0xb0,0xac,0x8c,0x7c,0xa7,0x5e,0x05,0x69,0xcb,0x06,0x4a,0x38, +0xfb,0xc3,0x03,0x4b,0x13,0x19,0x9d,0x0b,0x71,0x40,0x6e,0x61, +0xbe,0xc2,0x74,0xf2,0xb3,0x51,0xe0,0x85,0xbe,0xe7,0x5e,0xe6, +0x52,0x17,0x05,0xb2,0x9c,0xf4,0x85,0xf8,0xdc,0xcb,0xfc,0xe2, +0xd4,0x16,0x85,0xfa,0xd3,0xc5,0xbb,0xce,0x31,0xf8,0x55,0x1e, +0x03,0xbd,0xc4,0x34,0x03,0x57,0xd0,0x0e,0x66,0x83,0x65,0xa1, +0xf5,0xe5,0x0b,0xb4,0xf2,0xc0,0xda,0x6b,0xd1,0x02,0x77,0xf2, +0x41,0x06,0x4a,0x8f,0x53,0x82,0xce,0x22,0x5f,0x65,0x20,0xaa, +0xc8,0x45,0x6e,0xcb,0x76,0xfc,0xcc,0xfe,0x21,0x6d,0x2e,0xde, +0xcb,0x77,0xb5,0x35,0xef,0xb5,0x52,0xc9,0x6c,0x78,0xd1,0xc5, +0x43,0x9c,0xab,0xed,0xbe,0xc8,0x43,0x2f,0x20,0x08,0x57,0x1e, +0x72,0x21,0x39,0xca,0x7f,0x49,0xba,0x94,0x80,0x29,0x2d,0x80, +0xa1,0x08,0xd8,0x12,0x65,0x00,0xb3,0x96,0x07,0xeb,0x41,0x87, +0x76,0x74,0x11,0x32,0x17,0xec,0x68,0x23,0xd8,0xce,0xbb,0xc1, +0xda,0x62,0xf6,0x72,0x29,0xb0,0x12,0x8e,0x42,0x8c,0xef,0xc0, +0x32,0xa8,0x0c,0x29,0x8b,0x01,0xfa,0x0f,0x29,0x98,0x05,0x28, +0x06,0x8e,0x92,0xe2,0xe0,0x54,0x60,0x99,0x7c,0x00,0xf5,0x62, +0xf3,0x02,0x3c,0xce,0x0b,0x08,0x38,0x2f,0xa0,0x26,0xa5,0xc1, +0x69,0xa0,0x9c,0x32,0x50,0x07,0x36,0x47,0xa0,0x03,0xdb,0xa5, +0x02,0xce,0x21,0x55,0x84,0xf3,0x0f,0xc1,0xb9,0x91,0x4a,0xe0, +0xdc,0x71,0xd6,0xc0,0x03,0x4a,0xa9,0x0c,0x36,0x79,0x15,0x70, +0xde,0x38,0x83,0xe0,0x03,0x88,0x99,0x61,0x66,0x36,0x8f,0x60, +0xc0,0x79,0x04,0x3f,0xac,0xab,0x0a,0xea,0x3a,0x17,0xf2,0x9c, +0x07,0x4e,0x07,0xb5,0x9e,0x0f,0x21,0x4e,0x6b,0x7f,0x0b,0xd9, +0x0e,0xe7,0xcc,0xe6,0x17,0xa0,0x1d,0xbb,0x5d,0x96,0xbf,0x0e, +0x5a,0x92,0x0e,0x39,0x33,0xfb,0xdf,0x00,0x6d,0x3a,0x0a,0x1a, +0xfe,0x3b,0x70,0xee,0x68,0xe7,0x1b,0xd0,0xce,0xf7,0x43,0xcb, +0x9b,0xd9,0xa2,0x3e,0x0c,0xcb,0x43,0x1a,0x66,0x91,0xfa,0x20, +0xcd,0x4b,0xa3,0x5d,0xea,0x83,0x76,0xa9,0x07,0xda,0xa5,0x6e, +0xc8,0xb3,0x6c,0xde,0x8c,0xcd,0x9c,0x31,0xeb,0xb4,0x1c,0x5a, +0xa7,0x9e,0x80,0x72,0x8b,0xbe,0x71,0xbe,0xa4,0x2c,0xd2,0x85, +0xbe,0x30,0x5f,0xc2,0xda,0x5f,0x02,0xdb,0xaf,0xc2,0xf6,0x73, +0xd8,0x7e,0x1e,0xdb,0x2f,0x60,0xfb,0xd5,0xd8,0x7e,0x0d,0xb6, +0xdf,0x0c,0xf8,0xbe,0x36,0x48,0x65,0x5d,0x70,0x5a,0x52,0x0f, +0x5c,0x79,0x9c,0x59,0xb1,0xe2,0xcc,0x8a,0x15,0x67,0x56,0x44, +0x9c,0x59,0x31,0x91,0xc6,0xe0,0xca,0xe3,0xfc,0x4a,0x05,0x9c, +0x5f,0x29,0x46,0x9a,0x81,0x2b,0x4f,0x5a,0x90,0x96,0xd0,0x6b, +0x6c,0xae,0xc5,0x0a,0xd6,0x48,0x18,0xd4,0x28,0x1c,0x5c,0x71, +0xd2,0x06,0xdc,0x07,0x38,0xfb,0x62,0x20,0x11,0xe0,0x42,0x01, +0xa1,0xb7,0x23,0x01,0x38,0x13,0x13,0x08,0xf6,0x4a,0x7b,0xe8, +0x47,0x36,0x1f,0x13,0x84,0xf3,0x31,0xc1,0x68,0x87,0x7b,0xa3, +0x1d,0xee,0x85,0x76,0xb8,0x17,0x19,0x48,0x62,0xa0,0xf5,0x83, +0xc0,0x95,0xc4,0x79,0x1a,0x11,0x2d,0x73,0x37,0xb4,0xcc,0x3d, +0xd0,0x32,0xf7,0x26,0x63,0xc1,0x95,0x44,0xcb,0xdc,0xed,0x85, +0xf9,0x9b,0x85,0xe0,0xb4,0x64,0x11,0xb8,0xe2,0x38,0x97,0x63, +0xc5,0xb9,0x1c,0x11,0xad,0x77,0x37,0x9c,0x8f,0xf4,0x45,0x1b, +0xde,0x88,0x36,0xbc,0x1f,0xda,0xf0,0xee,0xaf,0xcc,0xf4,0x94, +0x75,0xcd,0xf4,0xb0,0xfe,0xe6,0xb0,0xbf,0x35,0xe4,0x18,0x39, +0x05,0x39,0xb3,0x59,0x1f,0x2b,0xce,0xfa,0x54,0xc0,0x59,0x9f, +0x10,0x72,0x05,0x5c,0x71,0x9c,0xfb,0xb1,0x92,0x2c,0xf2,0x2d, +0xb4,0x97,0xcd,0x00,0x05,0xe1,0x0c,0x50,0x10,0xf2,0x47,0x09, +0xe4,0x0f,0x0d,0xf2,0x87,0x99,0xdc,0x05,0xf7,0x01,0xd8,0x55, +0xf7,0x40,0x56,0xd8,0x9c,0x50,0x30,0xce,0x20,0x78,0xe0,0x0c, +0x82,0x07,0xce,0x20,0x78,0xe0,0x9c,0x50,0x08,0xce,0x09,0x99, +0x88,0x52,0x6d,0x65,0x76,0x87,0x7a,0xb0,0x66,0x04,0xd4,0xb7, +0x1c,0x7b,0x16,0x00,0x23,0x4a,0x36,0x68,0x0c,0x1e,0xb5,0x0c, +0x43,0x32,0x88,0x8f,0xf1,0xdc,0xc6,0x10,0x23,0xf9,0x57,0x3f, +0x18,0xb1,0x72,0xdf,0x38,0xfe,0xbc,0x01,0x0b,0xfe,0x8d,0xdc, +0xd3,0x50,0x03,0x3a,0x35,0x6a,0x2e,0xce,0x52,0x3a,0xd1,0x4f, +0x06,0xd4,0x5d,0x76,0xa1,0x1b,0x86,0xe2,0xfe,0x44,0xec,0xf3, +0x27,0x8c,0x2d,0xef,0xdf,0x1e,0xb5,0xe3,0xaa,0xe3,0x07,0xc7, +0x1d,0xd7,0x13,0x08,0xe7,0x68,0xa4,0x45,0x14,0x55,0x08,0x23, +0xbc,0x6c,0x0d,0xc0,0x19,0x85,0x72,0x58,0x59,0xf6,0x17,0x67, +0x49,0x5f,0x5f,0x77,0xa7,0xf5,0xf0,0x42,0xdd,0x33,0x5f,0xac, +0xbb,0x13,0xb7,0x31,0x2c,0x57,0xa0,0x3d,0xdf,0x4d,0x97,0x3f, +0x81,0x97,0xf4,0xc0,0x8b,0x4a,0x44,0xfa,0xd9,0xc0,0x47,0x22, +0xe4,0x1f,0x0a,0x3d,0x9b,0x86,0x6d,0xd0,0xa2,0xbe,0xf5,0xc5, +0x99,0x78,0x52,0x30,0x37,0xc7,0x6a,0xf0,0x14,0xfa,0xde,0x0e, +0x25,0x89,0xa8,0x4b,0xd8,0x68,0x2b,0xbe,0x92,0xbd,0x07,0x22, +0xe1,0x7c,0x57,0x4e,0x6e,0x88,0xf4,0x9c,0x33,0xbc,0x15,0x71, +0x2e,0x9a,0x73,0xcd,0xee,0x3a,0xa9,0xe2,0x5b,0x48,0xf7,0xff, +0x89,0x5e,0x89,0x63,0x06,0xe7,0x9c,0xef,0x45,0x1e,0xd3,0x39, +0x51,0xdb,0x33,0x2b,0x08,0xda,0x9e,0xf1,0x2c,0xed,0x6b,0xf0, +0x9b,0xf6,0x7d,0xe9,0xf0,0x3a,0x7e,0x7b,0x8e,0xdd,0x11,0xbd, +0xe5,0xbe,0x6c,0x85,0x14,0xdc,0x23,0x85,0x5a,0xae,0x7d,0x5f, +0xee,0xc5,0x31,0x39,0xb3,0xc0,0xda,0xce,0xc6,0x1e,0x75,0x8e, +0xe2,0xac,0x57,0x6d,0x18,0x9a,0xfb,0xaa,0x9d,0xfd,0x3a,0xdb, +0xfb,0xad,0x48,0xab,0x30,0x6f,0xf9,0xbe,0x35,0xbe,0xfc,0x9e, +0x31,0x3d,0x1c,0x77,0x1c,0x0f,0x1d,0x97,0x89,0x1b,0xc3,0xf6, +0x2f,0x94,0xa7,0x75,0xf5,0x01,0x94,0xe9,0xf8,0xc3,0xd5,0x36, +0xce,0x85,0x67,0x64,0xc7,0x5f,0x88,0xb4,0x1e,0x21,0x2a,0xb0, +0x15,0xa2,0x64,0xee,0x0b,0xb8,0x1c,0x6d,0x24,0x40,0x71,0x9e, +0xcf,0x2c,0xa6,0x02,0x2c,0xe3,0x81,0x96,0xd2,0xb3,0x78,0xee, +0x6f,0xa2,0xc3,0x9b,0x7a,0xdc,0x85,0xbf,0x50,0x8b,0xbd,0x5b, +0x9a,0x9c,0x9a,0xe0,0x99,0x34,0xbd,0xa7,0x96,0xc9,0x71,0xf6, +0x1a,0xe0,0xee,0x5c,0xe0,0x98,0x14,0xe0,0x72,0x11,0xf2,0x66, +0x32,0x95,0xe2,0x44,0x3f,0x30,0x3a,0x32,0xfa,0xe5,0xba,0xe6, +0xdb,0x55,0x2e,0xba,0x09,0xa0,0x05,0x72,0xa1,0xdc,0x9f,0x10, +0x87,0x91,0xc2,0xf6,0x49,0xa1,0xdc,0xed,0x80,0xed,0xb3,0x9d, +0xd8,0x15,0x63,0xe7,0x15,0x58,0xe6,0xb9,0x20,0x67,0x92,0xe3, +0xa1,0x2b,0xde,0x4f,0xae,0x96,0x3e,0x71,0xce,0x00,0x3c,0xc7, +0x53,0xaf,0x6f,0x09,0x93,0x35,0xf6,0x34,0xd3,0xf1,0xa3,0x8b, +0xdf,0x73,0x5f,0xb0,0xc4,0x9e,0x63,0x7f,0xdf,0x42,0xb3,0x15, +0x1e,0x0e,0xa9,0x50,0xbd,0xf2,0xc0,0x3b,0xa5,0xdc,0xf7,0xf5, +0xfc,0x09,0x35,0xb9,0xe5,0xc2,0xe6,0xf9,0x68,0x13,0x86,0xbc, +0xc2,0x61,0xa1,0x2f,0x5c,0xd1,0x82,0x94,0x36,0x94,0x88,0xdf, +0x5f,0xc8,0x4d,0x7a,0x05,0x67,0xba,0x50,0x28,0xd0,0x8c,0x69, +0x31,0x0f,0xcc,0x5d,0x0b,0x16,0x70,0xd6,0xf3,0xdc,0x0b,0x6a, +0x24,0xbe,0x20,0xc7,0x8c,0x92,0x8f,0x0a,0xd7,0xa6,0x50,0xcb, +0xfe,0x7a,0x6e,0x9f,0x14,0xb2,0x9b,0xb8,0x57,0xa4,0xd9,0xb7, +0x00,0xb5,0xe7,0xbf,0x32,0xff,0xf4,0xfb,0x1b,0xb9,0xc5,0x69, +0x7f,0xe6,0x61,0xdd,0x9f,0x51,0xe6,0x2c,0xda,0x11,0x32,0xd3, +0x92,0x05,0xd6,0x76,0x68,0x21,0x9a,0xb8,0xce,0x71,0x4e,0xcb, +0x59,0xf7,0xec,0x17,0xea,0xfe,0xeb,0x8b,0xd6,0x2d,0x50,0xe3, +0x19,0x65,0x72,0x51,0x2e,0xb5,0x2e,0x5d,0xfc,0x42,0xaf,0x16, +0xcc,0x4c,0xf9,0xbf,0xc6,0x52,0xd6,0xbe,0x51,0x47,0x28,0x61, +0xe4,0xa8,0x0b,0xf8,0x8d,0x00,0x7a,0x6b,0x02,0xb5,0x6b,0x06, +0x78,0x4c,0x0d,0x68,0xac,0x2d,0xc8,0x66,0x3b,0x40,0x59,0x5e, +0x88,0xa3,0xfc,0x00,0x1b,0x2d,0x05,0xe4,0x73,0x0c,0xb0,0x8a, +0x08,0x58,0xe5,0x36,0x60,0x46,0x86,0x46,0x3e,0x46,0x1c,0x52, +0x03,0x50,0x87,0x48,0x3e,0x81,0xbc,0x4a,0x21,0x22,0x54,0x22, +0x22,0xa4,0x88,0x08,0x55,0x88,0x08,0x39,0x44,0x84,0x3c,0x22, +0x42,0x0d,0x22,0x42,0x2d,0x62,0x41,0x1d,0x69,0x0e,0x4e,0x8f, +0x88,0x50,0x83,0x88,0xd0,0x0d,0x11,0xa1,0x12,0x11,0xa1,0x3b, +0x22,0x42,0x0f,0x44,0x84,0x9e,0x88,0x05,0xbd,0x10,0x0b,0x7a, +0x23,0x16,0xf4,0x41,0x2c,0xe8,0x8b,0x58,0xd0,0x00,0xb5,0x1c, +0x0c,0x79,0x0e,0x01,0xa7,0x47,0x24,0xa7,0x42,0x24,0x27,0x90, +0xc5,0xe0,0xf4,0x80,0xe7,0xe2,0x20,0xe7,0x25,0xe0,0x54,0x88, +0xea,0xd4,0x80,0xc6,0x4e,0x43,0x0d,0xcf,0x00,0x26,0x53,0x21, +0x26,0xd3,0x22,0x26,0x73,0x43,0x4c,0xe6,0x7c,0x1e,0xe7,0x86, +0x98,0x4c,0x81,0x98,0x8c,0xcd,0x94,0xdf,0x82,0x5a,0x31,0x64, +0xe6,0x8b,0x2d,0xf7,0xc0,0x96,0x1b,0xa0,0xe5,0x41,0x44,0x51, +0x2c,0x18,0x50,0x97,0x80,0xa8,0x8b,0xad,0x13,0xe8,0x80,0x4f, +0xcc,0x8a,0x21,0x96,0xd7,0x22,0x96,0x37,0x21,0x96,0x77,0xf6, +0x58,0x71,0xc4,0xf2,0xda,0x42,0xcf,0x98,0x78,0xd7,0x33,0x26, +0x86,0xe5,0x75,0x88,0xe2,0x3f,0x40,0x14,0x5f,0xa2,0x10,0x8a, +0x0f,0x41,0x14,0x1f,0x82,0x28,0xde,0x07,0x51,0x7c,0x10,0xa2, +0xf8,0x10,0x44,0xf1,0x21,0x88,0xe2,0x83,0x11,0xc5,0x2b,0x11, +0xbf,0x53,0xc4,0xef,0xbe,0x88,0xdf,0x0d,0x88,0xdf,0x55,0x88, +0xdf,0x39,0x52,0x13,0x9c,0x15,0x51,0xbc,0x3b,0xa2,0xf8,0x50, +0xec,0x2d,0x33,0xf6,0x96,0x19,0x7b,0xcb,0x0f,0x7b,0xab,0x28, +0x62,0xf6,0x92,0xd8,0x43,0x65,0xb1,0x6f,0xcc,0xd8,0x1f,0x65, +0xb0,0x3f,0xfc,0x11,0xa1,0x97,0xc2,0x5e,0xf1,0xc0,0x5e,0xf1, +0xc4,0x5e,0x09,0xc0,0x5e,0xf1,0xc2,0x5e,0x09,0x24,0x9d,0xc1, +0x59,0x0b,0xe1,0x74,0x0d,0xe2,0x74,0x0d,0xe2,0xf4,0x22,0x88, +0xd3,0x4b,0xbb,0xf8,0x8b,0xe1,0x74,0xbe,0xd0,0x13,0x34,0x27, +0x4e,0x2f,0x8d,0x38,0x9d,0x2f,0x84,0xd3,0x43,0xb0,0x77,0x43, +0xb1,0x5f,0xcb,0x22,0x4e,0x37,0x63,0x8f,0xfa,0x21,0x4e,0xe7, +0x11,0xa7,0x1b,0x11,0xa7,0xbb,0x21,0x4e,0xb7,0x20,0x4e,0x17, +0x0a,0xe1,0xf4,0x10,0xc4,0xe9,0x3e,0x88,0xd3,0x43,0x10,0xa1, +0xab,0x10,0xa1,0x87,0x22,0x42,0x37,0x23,0x1f,0x88,0xc8,0x01, +0x66,0xe4,0x80,0x52,0xc8,0x01,0x5e,0xd8,0xf7,0x5e,0x88,0xca, +0x83,0x11,0x95,0xab,0x10,0x95,0x73,0xc8,0x0d,0x65,0x10,0x95, +0xeb,0x91,0x27,0x02,0x5f,0x7d,0xae,0x87,0xa8,0x5c,0x44,0xfe, +0x28,0x5a,0xf0,0x2c,0x35,0x0e,0xea,0xa2,0xc2,0x51,0x36,0x93, +0xe9,0x3e,0xc6,0x1b,0x85,0x46,0xc6,0xc2,0xf8,0x28,0xf7,0xf9, +0x13,0x56,0x94,0xe8,0x3c,0xe7,0xd3,0x00,0x57,0x4c,0x8f,0xc2, +0x73,0x37,0xcf,0x66,0x42,0xdf,0x30,0x4a,0xa4,0x16,0xba,0x60, +0x6b,0x07,0x04,0xa8,0x4f,0x3c,0x3e,0x75,0xa3,0xc8,0x71,0x0a, +0xa4,0x9f,0x12,0x5b,0xc3,0x9e,0x8d,0x8a,0xc8,0x81,0x1a,0xe4, +0x3a,0x2d,0x72,0x9d,0x0e,0x39,0x4d,0x8f,0x9c,0xa6,0x40,0x1e, +0x53,0x22,0x77,0x51,0xe4,0x2e,0x37,0xe4,0x25,0x0e,0x79,0x89, +0x43,0x9e,0xe1,0x90,0x5b,0x78,0xe4,0x10,0x01,0x79,0x43,0x8d, +0xbc,0xe1,0x8e,0x7d,0xaa,0xc1,0x1e,0xe4,0xb0,0x77,0x34,0xd8, +0x2f,0x5a,0xec,0x11,0x8a,0x7d,0xc1,0x61,0x5f,0xa8,0xb0,0x2f, +0x38,0xec,0x05,0x35,0xf6,0x82,0x1a,0x7b,0x41,0x8f,0xbd,0x40, +0xb1,0x17,0xdc,0x90,0xf2,0xee,0x48,0x67,0x15,0x51,0xd2,0x38, +0x46,0x61,0x7a,0x5d,0x15,0x03,0xd4,0x11,0xff,0xb5,0xdd,0x91, +0x85,0xf4,0xce,0xfa,0x47,0x69,0x73,0x9f,0xcf,0x4f,0xfe,0xed, +0xb4,0xd9,0xce,0x79,0x2e,0x86,0xbf,0xfe,0x41,0x9d,0xf3,0x0b, +0x6c,0x31,0x9c,0xdf,0x7a,0x7f,0x0c,0x0d,0xfc,0xe8,0x9c,0xaf, +0x24,0xcf,0x46,0x1b,0xc7,0x2d,0x44,0x59,0xd9,0x4e,0x3a,0xa0, +0xcd,0x90,0xff,0xda,0x99,0xd6,0x8a,0xae,0x71,0xcc,0xf7,0xb5, +0x14,0xf7,0x7d,0x3b,0xbe,0x76,0xa4,0x00,0xf7,0x6a,0xc1,0x9a, +0x63,0xa8,0x28,0xdb,0x39,0xcb,0xfe,0x0c,0xf9,0xb2,0x99,0x3a, +0xb0,0x2e,0xd9,0x4c,0x28,0x43,0x5e,0x6c,0xbe,0xed,0x7d,0xb1, +0x33,0x79,0xbb,0x65,0x06,0x63,0x74,0xb2,0x73,0xde,0xd6,0xf5, +0x54,0xe4,0xf9,0xdc,0x72,0x76,0x41,0xff,0xe5,0x22,0x2e,0xce, +0x76,0xcd,0xf4,0xe7,0xbf,0xd0,0x26,0x5f,0xcc,0x23,0x8b,0xb8, +0xc3,0x9d,0x6b,0xe0,0xf2,0x70,0xd5,0x45,0x3e,0x8e,0xff,0x1c, +0xe2,0x4f,0xad,0x2b,0x37,0xed,0xb3,0xbc,0x5c,0xb4,0x7b,0x96, +0xf6,0x08,0x22,0x08,0xf6,0x24,0xc0,0x99,0x36,0x17,0x47,0x71, +0x2d,0xce,0xdb,0x3b,0x9f,0x50,0x64,0xbb,0x90,0x45,0x16,0x5c, +0x3f,0xef,0x17,0x17,0x25,0x9d,0x4f,0x84,0x70,0x65,0x8d,0x93, +0xd3,0x3c,0x5c,0x16,0x9a,0xef,0x1b,0x28,0x2d,0xba,0xda,0xed, +0x9c,0x37,0x7d,0x8c,0xc8,0xf9,0xda,0xb3,0xa7,0x65,0x6f,0x45, +0xe1,0x15,0x9d,0x78,0x06,0x6a,0xe9,0x0b,0x3c,0x92,0xe2,0x5c, +0x61,0xc2,0xea,0xe2,0x9c,0xc1,0x46,0x0b,0x2f,0x8b,0x3d,0xa7, +0xc4,0xe7,0x18,0x39,0xc0,0x37,0x4e,0xe4,0x7a,0x0b,0x74,0x85, +0x88,0x2b,0x37,0x34,0xb8,0x76,0xc3,0x1d,0x67,0xae,0xd8,0xac, +0x95,0x99,0xd4,0x80,0x91,0x28,0xaa,0x60,0xdd,0x00,0x1b,0x19, +0x06,0xc1,0x58,0x80,0x6b,0x3a,0x60,0x04,0x98,0x00,0xfa,0x7f, +0x19,0xae,0xed,0xf0,0xc7,0xf1,0x54,0x8f,0x23,0xa9,0x1e,0xf2, +0xd1,0x80,0x56,0xd1,0xe1,0x5a,0x33,0x36,0x92,0x0a,0x38,0x92, +0x72,0x38,0x92,0x0a,0x38,0x92,0xba,0x61,0xfe,0x0a,0x1c,0x4f, +0xd5,0xae,0xf1,0x8e,0x8d,0x44,0x3a,0x1c,0x89,0xb4,0x50,0x5a, +0x2f,0xd7,0x5a,0x10,0x2d,0x96,0x4a,0x71,0x3c,0x52,0xe1,0x48, +0xc4,0x61,0xf9,0x02,0x8e,0x44,0x3a,0x1c,0x89,0x0a,0xaf,0xe8, +0xe0,0x70,0xac,0xe1,0x50,0xb7,0x0b,0x90,0x47,0x2d,0xd4,0x92, +0x7a,0x1c,0xa7,0xd5,0x38,0x4e,0xab,0x51,0x63,0xba,0xa1,0xc6, +0x74,0xc7,0x71,0x5a,0x8d,0xe3,0xb4,0x1a,0xb5,0xa7,0x87,0x6b, +0x9c,0x66,0xb3,0x6d,0x7e,0x85,0x46,0x6b,0x4f,0x1c,0xad,0x55, +0xa8,0x4f,0x39,0xd4,0xa7,0x5e,0x38,0x42,0x17,0x79,0x65,0xed, +0x92,0xd1,0x85,0xa7,0xd8,0x08,0xad,0xc0,0x11,0x3a,0x00,0x31, +0x54,0xa0,0x6b,0x05,0x13,0xc3,0x50,0x41,0x88,0xa1,0x02,0x71, +0xcc,0x0e,0x46,0x2d,0x2c,0xe0,0x98,0xed,0x8f,0x63,0xb6,0x37, +0x6a,0x64,0x1f,0x1c,0xb3,0x75,0x2f,0x21,0xa9,0x21,0x90,0x3f, +0xd3,0xce,0x7a,0x1c,0x71,0xd5,0x38,0xe2,0x16,0x41,0x3c,0x15, +0x88,0xe3,0x6e,0x40,0xa1,0xb5,0x4e,0x46,0xd4,0xdd,0x7a,0x1c, +0x59,0xd5,0xa8,0xc1,0xdd,0x70,0x64,0x55,0xe3,0x0c,0x98,0x1f, +0x6a,0x73,0x0e,0xc7,0xd7,0x22,0xae,0x75,0x4f,0xce,0x15,0x4f, +0x0c,0x67,0x05,0xba,0xd6,0x3d,0xb1,0x51,0xd6,0xdf,0x85,0xb3, +0x9c,0x08,0x8b,0xe9,0x77,0x0f,0xd4,0xef,0x1c,0xea,0x77,0x2f, +0x1c,0x65,0x83,0x0b,0x30,0xd7,0xb3,0x75,0x4f,0xbc,0x6b,0xcd, +0x8f,0x5e,0x95,0x5b,0xee,0x21,0x22,0x04,0x36,0xb2,0xd6,0x55, +0xf8,0x29,0xaa,0x2a,0x1a,0x2a,0xda,0x28,0x3a,0x28,0x46,0x29, +0x66,0x28,0xe6,0x28,0x92,0x15,0x7b,0x14,0x99,0x8a,0xc7,0x4a, +0x3f,0x65,0x79,0x65,0x65,0x65,0x23,0x65,0x6b,0xe5,0x43,0x65, +0x34,0xae,0x93,0x99,0xa1,0x5c,0xaf,0xdc,0xac,0x4c,0x51,0xa6, +0x29,0xcf,0x28,0xb3,0x95,0x57,0x95,0x37,0xe1,0xf8,0x23,0xdc, +0xfd,0x5d,0xf9,0x27,0xb0,0x1b,0x4f,0x8d,0x54,0xa4,0x95,0x68, +0x0b,0x1a,0x4d,0x47,0xd0,0x71,0x74,0x0a,0x9d,0x43,0x57,0xd1, +0x2c,0x7a,0x5f,0xa5,0x52,0xf9,0xa9,0xca,0xab,0xaa,0xab,0x6a, +0xab,0x56,0xa9,0x5a,0xab,0xa2,0x54,0x31,0xaa,0x69,0xaa,0x45, +0xaa,0xe5,0x70,0x95,0xa2,0x3a,0xae,0xba,0xac,0xba,0x01,0xb5, +0xa9,0xab,0x8c,0xa3,0x61,0xb4,0x2d,0x8d,0xa0,0xed,0x68,0x24, +0xed,0x40,0x3b,0xd2,0x28,0xda,0x85,0x76,0xa7,0x3d,0x68,0x2f, +0xda,0x9b,0xf6,0xa1,0xfd,0x68,0x7f,0x3a,0x80,0xc6,0xd0,0x41, +0x74,0x30,0x8d,0xa5,0xc3,0xe8,0x58,0x3a,0x81,0x4e,0xa6,0xb3, +0xe8,0x6c,0x3a,0x97,0x2e,0xa4,0x8b,0xe8,0x12,0xba,0x8c,0xae, +0xa0,0xf1,0x34,0x81,0x26,0xd2,0xd5,0x34,0x89,0x26,0xd3,0x4d, +0x74,0x3b,0x4d,0xa1,0x7b,0x69,0x3a,0x3d,0x42,0x33,0xe8,0x49, +0x7a,0x8a,0x9e,0xa3,0xd7,0xe9,0xd7,0xf4,0x5b,0x7a,0x87,0x7e, +0x4f,0xef,0xd3,0x1c,0xfa,0x23,0xcd,0xa5,0xbf,0xd0,0xc7,0x34, +0x8f,0xfe,0x6a,0xf2,0x33,0x8f,0x31,0x8f,0x25,0x6a,0x1a,0xe6, +0xc8,0xa4,0x0b,0x1c,0x59,0x74,0x95,0x23,0x9b,0x9e,0x73,0x64, +0xd0,0x1b,0x70,0x7e,0x13,0xfc,0x2d,0xb8,0x7e,0x04,0x12,0x4d, +0x95,0x71,0x8e,0x5c,0x3a,0x17,0x42,0x56,0x82,0xc4,0xb3,0xab, +0x5b,0x10,0xff,0x16,0x4d,0x60,0x72,0x4b,0xe7,0x40,0x7f,0x08, +0x10,0x96,0x05,0xf9,0xb0,0x58,0xb9,0x98,0xd7,0x42,0xc7,0x35, +0xba,0x08,0xd2,0x27,0x80,0x16,0x61,0x29,0xb2,0xe9,0x1c,0xe7, +0x5d,0x48,0x91,0xc0,0xd6,0x51,0x60,0x58,0x98,0x23,0xdf,0x95, +0x22,0x1b,0x52,0x3c,0x8f,0x9d,0x05,0xb1,0xb3,0x31,0x36,0x8b, +0x97,0x86,0x35,0x9c,0x8b,0xb5,0x4c,0x83,0x78,0x69,0x10,0x2f, +0x03,0xb0,0x13,0xcb,0xa1,0x15,0xe4,0x10,0xe6,0xc8,0x81,0xf8, +0x79,0xae,0x9c,0x32,0x21,0x46,0x26,0xc4,0xc8,0x24,0x1a,0x88, +0x91,0x02,0x31,0x58,0x39,0x67,0x21,0x06,0xcb,0x23,0x1b,0x62, +0x24,0x40,0x8c,0x64,0x57,0xed,0x92,0xb1,0x84,0x1c,0xb8,0x93, +0x07,0x77,0x72,0xe0,0x4e,0x0e,0xdc,0xc9,0x83,0x3b,0x79,0x50, +0x53,0xb6,0x6a,0x47,0x85,0xed,0x72,0xb6,0x29,0x0b,0xc2,0x73, +0x01,0x3f,0x38,0xeb,0x9d,0x03,0x32,0x1e,0x07,0xed,0x0c,0x03, +0x3f,0x17,0xe8,0xc1,0xda,0x9c,0x00,0x9a,0x52,0x89,0xd4,0x59, +0x08,0xd4,0x79,0xd6,0x96,0x5c,0xb8,0x62,0x2d,0x67,0x47,0x01, +0xe9,0x17,0x86,0xf5,0xcd,0x7b,0x16,0x13,0xca,0xcc,0x81,0xb4, +0x39,0x44,0xc1,0x5a,0x05,0x31,0x17,0x40,0xf9,0x4a,0xda,0x8a, +0x84,0xb0,0x58,0x05,0x14,0x64,0x69,0xd2,0x20,0x7c,0x2e,0x94, +0xbf,0x08,0x6b,0xe2,0xcc,0x23,0x17,0xd3,0xb1,0x12,0xe0,0x0e, +0x1e,0xd9,0xf9,0x02,0x86,0xe2,0x58,0xbf,0xc1,0xb1,0x15,0xc8, +0x8b,0x02,0xf3,0x52,0xd1,0xf3,0x90,0xd7,0x05,0xf0,0x17,0xc1, +0xe7,0x60,0x69,0xe7,0x80,0x5a,0x1c,0x96,0x91,0x04,0xf5,0x85, +0x2b,0x57,0xff,0x67,0x12,0x1e,0xb8,0x22,0xb7,0x50,0x68,0xa6, +0x8b,0x2b,0xb2,0x5d,0x77,0x58,0xe8,0x0d,0xf8,0xbf,0x09,0x1e, +0x50,0x00,0xde,0xa1,0xae,0x9c,0x32,0x20,0x34,0x0d,0x72,0xbf, +0x89,0x35,0x80,0xb4,0x50,0xdf,0x73,0xd0,0x23,0x37,0x81,0xa7, +0x54,0x8a,0x4f,0x1d,0x19,0x8a,0x26,0x8e,0x0c,0xe5,0x18,0xf0, +0x63,0xa1,0x3f,0xdd,0xe9,0x16,0xc0,0x64,0x5b,0xc1,0x6f,0x03, +0xbf,0x1d,0xfc,0x41,0xf0,0x87,0xc0,0x1f,0x06,0x9f,0x0e,0xfe, +0x38,0xf8,0x13,0xe0,0x59,0x59,0x60,0x1b,0xd3,0x87,0x84,0x98, +0xc7,0x31,0x9b,0x19,0xf9,0xf3,0x1c,0x72,0xad,0x93,0xbe,0xd9, +0xc8,0xcb,0x49,0xc8,0xcf,0x69,0xac,0x3c,0xd6,0x16,0xa8,0x5b, +0x2e,0xb4,0x3e,0x09,0x12,0x38,0x43,0x59,0x0b,0x81,0xc3,0xe8, +0x4e,0xa8,0xe9,0x2e,0xf0,0xfb,0x20,0x64,0x3f,0xf8,0x1b,0x70, +0x7e,0x07,0xea,0xac,0xa4,0x3b,0x21,0xee,0x2e,0xa4,0xe2,0x4d, +0xe4,0x84,0xe7,0x94,0xc9,0xc5,0xdc,0x94,0xae,0x90,0x5c,0xbc, +0x97,0x5b,0x88,0x12,0xd9,0x84,0x2b,0x24,0x4f,0xcf,0x43,0xe9, +0xb3,0x14,0x58,0xb6,0x82,0xd5,0x11,0x8e,0x6c,0x1d,0x86,0x8a, +0xae,0x85,0xf8,0x0f,0xc0,0x3f,0x76,0x64,0x9b,0x47,0x43,0xb8, +0xea,0x05,0x0a,0xdf,0xc6,0xd4,0xcf,0x25,0x80,0x51,0xd3,0x99, +0x4f,0x0e,0xe6,0x03,0xb5,0x29,0xc6,0x56,0x35,0x92,0x62,0xd3, +0x42,0x2f,0x83,0xa6,0xae,0xe4,0x7a,0x02,0x38,0x0b,0x9f,0xe9, +0xe5,0x22,0x4a,0xcd,0x20,0xff,0xb5,0xdf,0xb3,0xe7,0xcd,0x85, +0x67,0x16,0xde,0xb5,0xe6,0xe5,0x9f,0x60,0xed,0xc2,0x73,0x57, +0xff,0x0c,0x73,0xff,0x8b,0xd2,0xb3,0xff,0xd9,0x1a,0xa5,0xb7, +0xe6,0x39,0xfa,0x65,0x3a,0xe2,0x2c,0x5a,0x06,0x62,0xaf,0x1c, +0x74,0x59,0x2f,0xce,0xc1,0xfe,0x13,0x2b,0x03,0x9f,0xee,0x66, +0x17,0x3c,0x87,0x7f,0x5b,0xcc,0xdc,0x7f,0xd7,0xc2,0x97,0xe7, +0x8b,0x5d,0xf6,0x68,0xee,0x8b,0xbc,0xf1,0xfe,0xab,0x70,0xde, +0x34,0x0b,0x5b,0x60,0x03,0xe5,0xbe,0xd3,0x4a,0xfa,0x57,0x5c, +0xf2,0xd2,0xea,0xa2,0xbc,0xb7,0xaf,0x23,0x81,0x7a,0x79,0xfc, +0x23,0x0b,0x32,0x13,0xe4,0x34,0x1b,0xe7,0xad,0x33,0x5c,0xeb, +0xbd,0xde,0xd4,0x3f,0x05,0xed,0x79,0x7b,0x4f,0xfe,0x3b,0x8b, +0xf3,0x85,0x27,0x13,0xb9,0x85,0xdd,0x7b,0xb6,0x27,0x9b,0xad, +0xfb,0x41,0x8b,0x83,0xb5,0x27,0xf9,0xbf,0x25,0x8f,0xae,0xa7, +0x29,0xb7,0xfe,0xf3,0x72,0xf9,0x66,0xea,0x15,0xd2,0x3f,0xb9, +0x6f,0x5f,0xfd,0xe2,0x92,0xb8,0x5c,0x97,0x04,0xbe,0x2f,0xf5, +0xb2,0xf1,0xe9,0x45,0xbe,0x73,0xe5,0xca,0x1b,0xd7,0xd3,0x64, +0xbd,0x38,0xab,0x83,0xab,0x35,0x88,0x4b,0xd3,0x67,0xbd,0xe3, +0x39,0xeb,0x7f,0x88,0x12,0xef,0x5a,0xb5,0x89,0x7c,0x90,0xe2, +0xa2,0x40,0xd6,0xcb,0xba,0xe1,0x4d,0xcf,0x74,0x5c,0xf4,0xca, +0x7b,0xff,0x3e,0x85,0x52,0x6e,0x81,0xfc,0x64,0x20,0xbf,0x31, +0x19,0x4a,0x2b,0x4c,0xff,0x57,0x35,0x5c,0x21,0x3a,0x67,0xbf, +0x38,0xa2,0xfc,0x93,0xf6,0xff,0xf7,0xa8,0xeb,0x7a,0x72,0x95, +0xfb,0xdf,0xac,0xc9,0x9b,0x34,0xc1,0xfb,0xac,0x94,0x7b,0xcd, +0x5a,0xa0,0xd7,0xea,0x46,0x1c,0x37,0x0b,0xf3,0x41,0xf6,0xfb, +0xf0,0xc1,0xbf,0x1c,0xf1,0x72,0xff,0x1d,0x57,0xff,0xe3,0x92, +0xf3,0xff,0x19,0x35,0xd9,0x6c,0xc8,0x6b,0x35,0x01,0x7b,0xe3, +0x25,0xdb,0x25,0xe3,0x29,0xef,0xdd,0xfa,0xf7,0xe2,0x9c,0x17, +0xe4,0x74,0x96,0x2b,0x4d,0x0a,0xc3,0x0a,0xef,0x25,0xf7,0xd9, +0x85,0xcb,0x79,0x7f,0x59,0xfd,0x3b,0x74,0x7f,0xdb,0x3a,0xe6, +0x82,0xba,0xa7,0xbd,0x4c,0xdd,0xc2,0xa3,0xd7,0xfb,0xe3,0x44, +0xd7,0xbc,0x79,0xee,0xbb,0xd7,0x6a,0xff,0x53,0x4e,0x7a,0xfb, +0xba,0xec,0xc2,0x7c,0x5b,0x30,0x07,0xf8,0xfc,0xd9,0x64,0x8a, +0x4b,0x76,0xb2,0xde,0x77,0xe4,0xff,0x9f,0x8c,0x88,0xfe,0xef, +0x85,0x3d,0xf3,0xff,0x3b,0x52,0xfe,0x5e,0x54,0x48,0xf8,0x1f, +0x95,0x73,0xe4,0x75,0x38,0xde,0x25,0xd9,0xaf,0xf4,0xfb,0xdb, +0xf5,0x81,0x0b,0xd5,0xe4,0xbe,0x6c,0x59,0x61,0xdf,0xcf,0xfa, +0x1f,0xb5,0x27,0xf3,0x15,0xe9,0xc8,0xfb,0x77,0xa3,0xc3,0x1b, +0xca,0x49,0x25,0xff,0x27,0xbf,0x17,0xf4,0x43,0xde,0xdf,0xd7, +0x3b,0xcf,0xb5,0xca,0x4b,0xb2,0xba,0xe5,0x25,0x2e,0xc8,0x7b, +0x55,0xaf,0xff,0xcd,0x72,0x5e,0x4b,0xeb,0x17,0xdf,0x9d,0xc4, +0xe7,0x12,0xb9,0x85,0xc6,0x92,0xfc,0xf7,0x1b,0xe5,0xdf,0x3d, +0x82,0xbd,0x2f,0xbf,0xbd,0x0f,0x1e,0x7c,0x6b,0xfa,0xb3,0xaf, +0x3c,0x53,0xbb,0x55,0x48,0x2f,0xe7,0xfc,0xf3,0x1e,0x7e,0x69, +0x55,0xd7,0xff,0x68,0xce,0xe0,0xfd,0xc6,0xd0,0xff,0x78,0xa9, +0x6f,0x7d,0x17,0xe6,0xed,0x23,0x3b,0xc6,0x48,0xc6,0x77,0x6c, +0xd9,0x9c,0x43,0xb6,0xeb,0x59,0xcd,0xb3,0x3b,0x69,0xff,0x35, +0x52,0x69,0x5f,0xfb,0x14,0xf0,0x6f,0xcd,0x03,0xfc,0x07,0xc6, +0x41,0x8f,0xff,0x2c,0xed,0x5d,0x52,0x99,0xf3,0xfe,0x73,0x6e, +0xff,0x62,0x36,0x24,0xff,0x7f,0xc8,0xd7,0x59,0xff,0x5d,0x9e, +0x7d,0x2f,0xf9,0xc9,0xfb,0xbf,0x68,0x4f,0xe1,0x79,0xc7,0xbf, +0xf7,0xc4,0xfe,0xef,0xf5,0xec,0xeb,0x35,0xe9,0x7f,0x42,0x67, +0xbc,0xe6,0x4d,0xa9,0x9c,0xff,0x58,0xcd,0xb5,0x6f,0xb5,0x0b, +0x73,0xde,0x61,0x37,0xe6,0xbe,0x71,0x45,0x67,0xf6,0x9b,0x6b, +0xf4,0xf7,0x69,0x82,0xe8,0x3e,0xe7,0xdf,0x69,0xe4,0xff,0xcd, +0x4c,0xd3,0xfb,0x73,0xfa,0x3f,0x5b,0x3d,0xf2,0xf7,0xca,0x29, +0xb4,0x0a,0xfb,0x05,0x8c,0xc8,0xec,0xc6,0xbf,0xcb,0x7d,0xae, +0xf7,0x8b,0xb2,0xde,0xbf,0xf6,0xb8,0x36,0xfe,0x1f,0xe1,0xf8, +0xbf,0xd7,0x57,0x58,0x4e,0xe6,0x3f,0x29,0xe5,0xdf,0xce,0x9a, +0xff,0xeb,0xfe,0xc9,0xfd,0xa7,0xd2,0xf0,0x7f,0xf7,0x73,0x3e, +0x4d,0x79,0x3d,0x4a,0xfb,0xcf,0x23,0xfd,0xbf,0x9b,0xff,0xab, +0xf1,0x5f,0x7d,0x77,0xf0,0xef,0x8d,0x47,0xff,0xa3,0x19,0xea, +0xec,0xd7,0x8f,0x9c,0xff,0xcd,0x67,0x7f,0x2f,0x94,0x33,0xec, +0x25,0xbd,0x51,0x68,0x65,0xdc,0xcb,0x52,0xf2,0x37,0xa5,0x33, +0xf7,0x9f,0xe1,0x8f,0x37,0xce,0x2d,0xbd,0xdf,0x6c,0x7c,0xca, +0x9b,0xd3,0xbc,0x3a,0x66,0xbd,0xaf,0x9d,0xf2,0x7c,0x25,0xf9, +0x3f,0xc3,0x32,0xff,0x49,0x04,0xf4,0x36,0x7c,0xf0,0xef,0xa4, +0xfb,0xff,0xcf,0xdf,0xab,0x23,0x00,0x7b,0xbe,0xf0,0x3f,0x2b, +0x7d,0xcb,0x7f,0x56,0xc3,0xfe,0xf7,0x47,0xcd,0xbf,0xa9,0x05, +0xf3,0xff,0x4d,0xc9,0xb8,0xa2,0x21,0xe3,0xff,0x92,0xdf,0xfe, +0xd9,0x53,0xd7,0xbf,0xad,0xc3,0x73,0xdf,0x77,0xae,0xff,0xff, +0x1a,0x7d,0xfe,0x1f,0xd6,0xee,0xf5,0x4f,0x5f,0x5f,0x78,0xd6, +0x8c,0x3b,0x24,0x64,0x16,0x8c,0x45,0x99,0x7f,0x17,0x0f,0x16, +0x2e,0xe7,0xc5,0x9e,0x7f,0x69,0xbe,0x0a,0xdf,0x28,0x2b,0x34, +0xce,0xc9,0xff,0x7c,0x9e,0xe2,0xa5,0x39,0x9c,0xb9,0x2f,0x8d, +0xa7,0x85,0xc6,0xd0,0xc2,0x73,0x7e,0xff,0x9a,0x9a,0x9f,0xbc, +0x34,0x0f,0x54,0x80,0x84,0x9d,0xab,0x47,0x5e,0xc6,0xc9,0xef, +0xdf,0x33,0xae,0x37,0x20,0x71,0xe5,0xb2,0xe3,0xda,0xff,0x40, +0x7e,0x94,0xc4,0x97,0x36,0xa1,0x4d,0x08,0xa1,0xcd,0x68,0x6b, +0xa2,0xa0,0x6d,0x68,0x5b,0xa2,0xa6,0xed,0x68,0x27,0xa2,0xa5, +0x5d,0x68,0x57,0xe2,0x45,0xbb,0xd3,0x3e,0xc4,0x87,0xf6,0xa5, +0xb1,0xc4,0x9f,0x0e,0xa7,0x23,0x49,0x08,0x1d,0x4d,0xa7,0x92, +0xe2,0x74,0x3a,0x9d,0x41,0x2a,0xd0,0x59,0x74,0x16,0xf9,0x90, +0x7e,0x4e,0xf7,0x92,0x4a,0xf4,0x00,0xcd,0x20,0xdd,0xe8,0x29, +0x7a,0x9d,0x0c,0xa4,0x5f,0xd3,0x1f,0xc8,0x38,0x9a,0x43,0x1f, +0x90,0xd9,0xf4,0x21,0xfd,0x95,0x2c,0x30,0xf9,0x99,0x8a,0x90, +0x25,0xe6,0xd1,0xe6,0xd1,0x64,0x99,0x79,0xac,0x79,0x1c,0x59, +0x0e,0x65,0xcf,0xc1,0xb2,0x45,0x28,0xbb,0x19,0x09,0xa0,0xcd, +0x69,0x73,0x52,0x8e,0xb6,0xa0,0x2d,0x48,0x33,0xda,0x92,0xb6, +0x24,0x4d,0x69,0x2b,0xda,0x8a,0x04,0xd1,0x30,0x1a,0x46,0x8a, +0xd1,0xd6,0x50,0xbf,0x00,0xa8,0x5f,0x1b,0x52,0x91,0xb6,0x85, +0x5a,0x16,0x87,0x5a,0xb6,0x23,0x25,0x68,0x24,0x8d,0x24,0x55, +0x68,0x7b,0xda,0x9e,0x94,0xa2,0x1d,0x68,0x07,0xa8,0x4d,0x47, +0xda,0x91,0x7c,0x40,0xa3,0x68,0x14,0xa9,0x4c,0x3b,0x41,0x4b, +0x4a,0x42,0x4b,0xba,0x90,0x08,0xda,0x15,0xda,0x53,0x1f,0xda, +0xd3,0x9d,0x34,0xa4,0x3d,0x68,0x0f,0xd2,0x9e,0xf6,0xa4,0x3d, +0x49,0x3d,0xda,0x8b,0xf6,0x22,0xed,0x68,0x6f,0xda,0x9b,0x34, +0xa0,0x7d,0xa0,0xb5,0x91,0xd0,0xda,0xbe,0xc4,0x44,0xfb,0xd1, +0x7e,0xa4,0x31,0xed,0x4f,0xfb,0x93,0xa2,0x74,0x00,0x1d,0x00, +0xa5,0x0f,0xa4,0x03,0x81,0x5e,0x31,0x34,0x86,0x58,0xe9,0x20, +0x3a,0x88,0x34,0xa2,0x83,0xe9,0x60,0x62,0xa6,0x43,0xe8,0x10, +0xd2,0x84,0xc6,0x02,0x8d,0x42,0x90,0x46,0xbe,0x40,0xa3,0x31, +0x40,0xcd,0xb1,0x74,0x2c,0x29,0x43,0xc7,0xd1,0xf1,0x44,0x45, +0x27,0xd0,0x09,0xa4,0x2c,0x9d,0x48,0x27,0x01,0x7d,0x27,0xd3, +0xc9,0xa4,0x34,0x9d,0x02,0x74,0xa4,0x48,0x47,0x1e,0xe9,0x58, +0x15,0xe8,0xf8,0x39,0xa4,0x9d,0x4d,0x67,0x93,0xea,0x74,0x0e, +0x9d,0x03,0x25,0xce,0xa5,0x73,0x49,0x6b,0x3a,0x8f,0xce,0x83, +0xf3,0xf9,0x74,0x3e,0xdc,0x5d,0x40,0x17,0x90,0xb6,0x74,0x21, +0x5d,0x48,0xda,0xd0,0x45,0x74,0x11,0xa9,0x45,0x17,0xd3,0xc5, +0x10,0x1e,0x47,0xe3,0x48,0x11,0xba,0x84,0x2e,0x21,0xb5,0xe9, +0x52,0xba,0x14,0xce,0x97,0xd1,0x65,0x90,0x6a,0x39,0x5d,0x0e, +0x77,0x57,0xd0,0x15,0xa4,0x15,0x8d,0xa7,0xf1,0xa4,0x25,0x5d, +0x49,0x57,0x92,0x30,0x9a,0x40,0x13,0xc8,0xc7,0x34,0x91,0x26, +0x92,0x40,0xba,0x9a,0xae,0x86,0xbe,0x4c,0xa2,0x49,0xa4,0x3c, +0x5d,0x43,0xd7,0x40,0xc8,0x5a,0xba,0x96,0x78,0xd2,0x75,0x74, +0x1d,0xf0,0xc1,0x7a,0xba,0x1e,0x38,0xe0,0x0b,0xfa,0x05,0x9c, +0x27,0xd3,0x64,0x52,0x93,0x6e,0xa0,0x1b,0x88,0x1f,0xdd,0x48, +0x37,0x12,0x81,0x6e,0xa2,0x9b,0xc8,0x47,0x74,0x33,0xdd,0x4c, +0xf4,0x74,0x0b,0xdd,0x02,0xa9,0xb6,0xd2,0xad,0x44,0x43,0xb7, +0xd1,0x6d,0xc0,0x3d,0xdb,0xe9,0x76,0x12,0x4a,0x77,0xd0,0x1d, +0x10,0x3f,0x85,0xa6,0x40,0xfc,0x9d,0x74,0x27,0x31,0xd2,0x5d, +0x74,0x17,0xd1,0xd1,0xdd,0x74,0x37,0xc4,0xdf,0x43,0xf7,0x90, +0x60,0x9a,0x4a,0x53,0xc9,0xa7,0x6c,0x47,0x3d,0xd2,0x01,0x38, +0xe9,0x00,0x31,0xd0,0x34,0x9a,0x06,0xe1,0x07,0xe9,0x41,0x88, +0x73,0x88,0x1e,0x82,0x3c,0x0f,0xd3,0xc3,0xc0,0x85,0xe9,0x34, +0x9d,0x58,0xe8,0x11,0x7a,0x04,0xea,0x79,0x94,0x1e,0x85,0x98, +0xc7,0xe8,0x31,0x88,0x79,0x9c,0x1e,0x87,0xbb,0x27,0xe8,0x09, +0xc8,0x39,0x83,0xb2,0x55,0x92,0xa7,0xe8,0x29,0x52,0x83,0x9e, +0xa6,0xa7,0xa1,0xfe,0x67,0xe8,0x19,0xe2,0x4d,0xcf,0xd2,0xb3, +0xc4,0x83,0x9e,0xa3,0xe7,0xc8,0x27,0xf4,0x3c,0x3d,0x4f,0xdc, +0xe8,0x05,0x7a,0x91,0x28,0x69,0x26,0xcd,0x84,0x38,0x97,0xe8, +0x65,0xc2,0xd1,0x2b,0xf4,0x0a,0x94,0x78,0x95,0x5e,0x83,0x12, +0xaf,0x03,0x37,0xbb,0x03,0x37,0x7f,0x0d,0xa9,0xb2,0xe8,0x37, +0x50,0xff,0x6f,0xe9,0xb7,0xa4,0x1a,0xbd,0x49,0x6f,0x42,0xda, +0x5b,0xf4,0x16,0xe4,0x79,0x9b,0xde,0x86,0xbb,0xdf,0xd1,0xef, +0xa0,0x3e,0x77,0xe8,0x1d,0x12,0x4e,0xbf,0xa7,0xdf,0x03,0xad, +0xb2,0x69,0x36,0xb4,0xfa,0x2e,0xbd,0x0b,0xe7,0xf7,0xe8,0x3d, +0x38,0xff,0x01,0xa4,0xc2,0x13,0xa4,0x22,0x87,0xd4,0xa5,0x3f, +0xd2,0x1f,0x49,0x1d,0xfa,0x13,0xfd,0x09,0xc2,0x7f,0xa6,0x3f, +0x43,0xda,0x07,0x20,0x2d,0x9e,0x20,0x2d,0x8f,0xe0,0xf8,0x98, +0x3e,0x86,0xd2,0xf3,0x68,0x1e,0xa4,0xfd,0x15,0xe4,0xa7,0x12, +0xc8,0x8f,0x1f,0x69,0x61,0x2a,0x02,0x52,0x14,0x80,0x52,0xa4, +0x01,0x29,0x1a,0x4b,0x9a,0x9b,0xc7,0x81,0x2c,0x69,0x40,0x96, +0x3a,0x29,0x3e,0x55,0x7c,0x4a,0xa8,0xa2,0x89,0xa2,0x09,0xa1, +0x6c,0x37,0x56,0xb6,0xd6,0x53,0x19,0x07,0xb5,0x64,0x32,0xa6, +0xa5,0x4d,0x69,0x53,0xc8,0x97,0x49,0x9a,0x16,0x25,0x4d,0x87, +0x92,0xa6,0x45,0x49,0x2b,0x87,0x92,0x16,0x88,0x92,0xe6,0x83, +0x92,0xa6,0xa5,0xe1,0x34,0x1c,0xe2,0x33,0x7d,0x50,0x86,0xad, +0xba,0x06,0xa9,0xeb,0x00,0x72,0xa5,0xa3,0x9d,0x41,0x96,0x3c, +0x41,0x96,0xba,0xc1,0x79,0x77,0x90,0xa2,0x52,0x20,0x45,0xbd, +0x40,0xc6,0x7a,0x83,0xe4,0xf8,0xd3,0x68,0x90,0x96,0x32,0x28, +0x2d,0x5a,0x90,0x96,0x18,0xe0,0xbf,0x41,0x20,0x21,0xa5,0x41, +0x42,0x62,0x81,0x52,0x43,0xe9,0x50,0xb8,0x3b,0x8c,0x0e,0x83, +0xb4,0xc3,0xe9,0x70,0xe0,0x98,0x91,0x20,0x2d,0x7a,0x3a,0x0a, +0xa4,0x45,0x07,0xd2,0x32,0x1e,0x24,0x64,0x02,0x48,0xc8,0x87, +0x20,0x21,0x53,0x81,0x17,0xa7,0x81,0x6c,0xe8,0xe8,0x4c,0x3a, +0x13,0x4a,0x67,0x12,0x52,0x82,0x7e,0x46,0x3f,0x83,0x10,0x26, +0x27,0x7a,0x94,0x93,0x0a,0x28,0x21,0x1e,0x28,0x21,0x5a,0x94, +0x10,0x1d,0x4a,0x88,0x3b,0x4a,0x88,0x01,0x24,0x64,0x31,0x84, +0x30,0xd9,0xf0,0x42,0xa9,0xf0,0x42,0xa9,0xd0,0xa2,0x3c,0x94, +0x40,0x19,0xf0,0xa5,0xab,0xe8,0x2a,0x90,0x70,0xc6,0xfd,0x2a, +0xe4,0x7b,0x33,0x72,0x7c,0x10,0x70,0xf9,0x46,0xd0,0x32,0x9b, +0x80,0xb3,0xfd,0x80,0xb3,0xb7,0x83,0x44,0xed,0x00,0x0e,0x16, +0x81,0x83,0x77,0x81,0x9c,0xa7,0x02,0xa7,0x9a,0xe8,0x3e,0xba, +0x1f,0xb8,0xf9,0x00,0x70,0x6a,0x28,0x70,0xea,0x21,0x88,0x73, +0x18,0xb8,0xd3,0x0a,0x7c,0x79,0x0c,0x42,0x8e,0x03,0x2f,0x5a, +0x91,0x0b,0x8b,0x21,0x17,0x8a,0xc8,0x79,0x1a,0xe0,0xbc,0x8b, +0xa0,0x1d,0xae,0x00,0x87,0x05,0x03,0x87,0x7d,0x05,0xfc,0x77, +0x83,0xde,0x00,0x9e,0x66,0x5c,0x25,0x20,0x57,0x71,0xc8,0x55, +0x3c,0xf2,0x93,0x11,0x39,0x49,0x44,0xee,0xb1,0xd2,0xfb,0xf4, +0x3e,0x68,0x37,0xc6,0x43,0x0a,0xe4,0x18,0x33,0xfd,0x85,0xfe, +0x02,0xb5,0x7d,0x48,0x1f,0xc2,0xdd,0x47,0xc0,0x3d,0x6a,0xe4, +0x1e,0x33,0x72,0x4c,0x39,0x93,0xd1,0x64,0x24,0x5a,0xe4,0x18, +0x33,0x72,0x4c,0x10,0x72,0x8c,0x15,0x77,0x2b,0x61,0x2b,0xfc, +0x6b,0x90,0xfa,0xb8,0x93,0x0c,0xc3,0x8b,0x69,0xb8,0x73,0x12, +0xdb,0x2d,0x2f,0xef,0xb5,0x68,0x4e,0x41,0x94,0xca,0x79,0xc0, +0x53,0x0a,0xe5,0x3c,0xd7,0xce,0xa7,0xee,0xc8,0x75,0x6a,0xe4, +0x3a,0x35,0x72,0x9d,0x1a,0xb9,0x42,0x85,0xbd,0x2f,0x60,0xef, +0xf3,0x48,0x4f,0x05,0x52,0x8f,0x22,0xdd,0x38,0xa4,0x06,0x45, +0x0a,0x28,0xb1,0x75,0x14,0x5b,0xa1,0xc0,0x1a,0x3a,0xf7,0x43, +0x56,0x12,0x2d,0xf7,0x18,0xce,0xcf,0xe1,0x5e,0x0b,0x5d,0xe9, +0x28,0xc5,0x38,0xc5,0x52,0xc5,0x7e,0xc5,0x0d,0x3a,0x45,0xf1, +0x18,0xdc,0x9f,0x4a,0xa2,0xf4,0x56,0x86,0x2a,0x1b,0x2a,0xbb, +0x2a,0x7b,0x2b,0x87,0x29,0xa7,0x28,0x93,0xb8,0x33,0xdc,0x19, +0xd0,0xaa,0x53,0x94,0x7b,0x95,0x7b,0xb9,0x51,0xca,0x43,0xca, +0xfb,0xd4,0x48,0xeb,0x02,0x0f,0x77,0x00,0x9d,0x1d,0x4d,0x63, +0xe0,0xee,0x28,0xe6,0xb8,0x4c,0x2e,0x16,0xdf,0x3f,0x38,0xc7, +0x4d,0x80,0xb0,0xeb,0xac,0x06,0x40,0xb3,0xbf,0x54,0xbe,0xaa, +0x92,0xaa,0x46,0xe0,0x5a,0xa8,0xa2,0x54,0xdd,0x55,0x83,0x55, +0x33,0xc0,0x2d,0x00,0xb7,0x54,0x95,0xa4,0xda,0xac,0xda,0xa3, +0xca,0x54,0xdd,0x54,0x65,0xab,0xec,0x5c,0x00,0x38,0x33,0xa4, +0x1d,0xc0,0x95,0xe4,0xca,0x73,0x35,0xb9,0x56,0x5c,0x07,0xae, +0x2b,0xd7,0x1b,0xae,0x63,0xb9,0x51,0x10,0x3e,0x8d,0x9b,0xc7, +0x25,0x70,0x7b,0xb9,0x43,0xdc,0x71,0x56,0x27,0x28,0x2f,0x0b, +0xda,0x13,0x8c,0x72,0x47,0x50,0xca,0x14,0x20,0x53,0xfd,0xa1, +0xed,0x6c,0x44,0x31,0x02,0x95,0x86,0x81,0xec,0x30,0xce,0x37, +0x21,0x57,0x5b,0x90,0xab,0x43,0x90,0x9f,0xad,0xa8,0xdf,0x8b, +0x81,0x1e,0x5f,0x01,0xdc,0xc8,0x38,0x36,0x14,0x39,0xb6,0x04, +0xf2,0x6a,0x49,0xa4,0x6d,0x29,0xe0,0xd5,0xed,0x20,0x65,0x3b, +0x81,0xf7,0x2a,0x01,0xef,0x9d,0x06,0xfd,0x72,0x16,0x38,0xad, +0x09,0xe8,0xb5,0xab,0x30,0x9a,0x32,0x8e,0x0a,0x43,0x5e,0x6a, +0x0d,0x9a,0xe8,0x47,0xd0,0x50,0x8c,0x73,0x22,0x91,0x67,0xda, +0x23,0xb7,0x74,0x10,0xaf,0x89,0xd7,0x48,0x47,0x31,0x4f,0xfc, +0x95,0x44,0x89,0x92,0x68,0x23,0x9d,0xa1,0xdf,0x26,0x83,0xa4, +0x4c,0x01,0x3f,0x15,0xfc,0x5c,0xa2,0x15,0x2f,0x81,0xbf,0x4c, +0xb4,0xd0,0xc7,0x2d,0x21,0x24,0x0c,0x7c,0x5f,0x26,0xe7,0xe0, +0x63,0x9e,0xdf,0x15,0x1f,0xbd,0x10,0xa3,0x0d,0xf8,0xb6,0xe0, +0x23,0xc1,0xb7,0x2f,0x14,0x83,0x63,0x69,0x60,0x0c,0xd5,0x02, +0x87,0x3c,0xcf,0x59,0x29,0x5e,0x72,0xe4,0x8b,0x97,0x71,0x65, +0x7e,0x4b,0xb6,0x5f,0x29,0xe6,0xd3,0xad,0x50,0x0c,0x0e,0x73, +0x72,0xd5,0xaa,0x20,0x54,0xa0,0x13,0x21,0x64,0x12,0x78,0x67, +0x9d,0x7d,0xe1,0xae,0x6f,0xc1,0x5d,0x9e,0x46,0x17,0xaa,0xab, +0xab,0x4c,0xd6,0x22,0x28,0x65,0x20,0xdb,0xb7,0x93,0x76,0x72, +0xe4,0x63,0xca,0x73,0x80,0xc7,0x28,0x8c,0xd4,0xda,0x67,0xf9, +0x41,0xce,0x50,0x3a,0x60,0x06,0x2d,0x70,0xf5,0xab,0xf5,0xe5, +0x20,0x95,0xef,0x2b,0xb5,0x51,0xb0,0xb8,0x10,0x16,0x01,0xbe, +0xdd,0xf3,0xb6,0x03,0xc2,0xd0,0x82,0x96,0xd4,0xd2,0x71,0xe0, +0xc7,0x17,0x8a,0xaf,0x7f,0x63,0xcc,0x31,0xcf,0x63,0x83,0x0e, +0x7b,0x9e,0x02,0xd0,0x99,0xab,0x46,0x7d,0x0a,0xb5,0xc8,0x59, +0x97,0x17,0xdb,0xae,0x7a,0x96,0x6f,0xa1,0xda,0xb5,0xc5,0x36, +0x17,0xea,0x15,0x08,0xeb,0xcf,0xa8,0x0f,0x88,0x47,0xeb,0x3c, +0x83,0x7e,0xc8,0x85,0x7e,0xc8,0x65,0x67,0xae,0x74,0x1e,0x74, +0xa4,0x23,0x97,0xae,0x05,0xbf,0x05,0xfc,0x56,0x47,0x36,0xdd, +0x0d,0x54,0xdb,0x03,0xe7,0xfb,0xe1,0xfc,0x14,0xf8,0xd3,0xb8, +0x06,0x3f,0xc3,0xf5,0xd6,0x44,0x06,0xbd,0x08,0xfe,0x96,0x23, +0x13,0xf2,0x4a,0x80,0x7c,0x2e,0x3b,0xb2,0xc5,0x27,0x80,0x6d, +0x29,0x68,0x80,0xe7,0xb5,0xa1,0xf8,0x36,0xc0,0x23,0x28,0xed, +0x12,0x7b,0x63,0x06,0xae,0x58,0xda,0x7c,0x48,0x9b,0x0f,0xd4, +0x65,0xf7,0x5c,0x57,0x90,0x3e,0x53,0xb4,0xb3,0x37,0x16,0x71, +0x9d,0xff,0x05,0xb8,0x73,0x11,0x3c,0xa4,0xa2,0x8c,0x5f,0x04, +0x7c,0xab,0xe1,0xd9,0xbb,0x1a,0x99,0x10,0xea,0xba,0x03,0xf9, +0x66,0xe2,0x7b,0x1b,0x4c,0xcb,0xa4,0x40,0x8a,0xbd,0x10,0xfe, +0x2d,0xb6,0x39,0x05,0x7b,0x7b,0x24,0x5c,0x6f,0x82,0xf0,0xf3, +0x58,0xa2,0xf3,0x2a,0x1f,0xae,0xa0,0x64,0xa0,0xe5,0x45,0xa4, +0xcb,0x23,0x96,0x0f,0xa6,0x39,0xc7,0xf6,0xd3,0xa5,0x49,0x50, +0x83,0xbd,0x05,0x67,0xe7,0xf0,0x0d,0x08,0x28,0x01,0xca,0xca, +0x02,0x6e,0x63,0x6d,0xb8,0x09,0x79,0xe4,0x60,0xe9,0x59,0xe2, +0x35,0xf8,0x97,0x5d,0xad,0x2b,0x68,0x0f,0xe6,0xc5,0xde,0xa9, +0x48,0xc1,0x37,0x46,0xb2,0x9e,0xb5,0x08,0x52,0x64,0x00,0x9d, +0x92,0xa1,0x45,0xc9,0x10,0xf3,0xf5,0x77,0x53,0x88,0x82,0xf5, +0x10,0x96,0x9a,0xc5,0xc2,0xe0,0xfa,0x32,0xdb,0x19,0x16,0xb0, +0x94,0xef,0x33,0xfa,0xb2,0xb7,0x22,0xa0,0x3f,0xf7,0x80,0x7f, +0x16,0xa2,0x64,0x57,0xce,0x96,0x40,0x2e,0x40,0x17,0x91,0xed, +0x54,0xc1,0xf2,0xca,0xc6,0x23,0x9e,0xe3,0x5d,0xa7,0x0c,0xae, +0xc2,0x34,0x1b,0xa0,0x1e,0x8f,0xb0,0xfe,0x5b,0xb1,0x45,0x4e, +0x09,0xe5,0xb1,0x5e,0x40,0xb5,0x67,0x54,0x67,0xbd,0x2b,0x3e, +0xc5,0x3c,0x2e,0xb3,0xf7,0x58,0x90,0x7f,0xd8,0xfb,0x16,0xac, +0x9c,0xc2,0xd2,0xcd,0xa8,0x9e,0x84,0x6d,0x71,0xf1,0x18,0xe9, +0x87,0x5a,0x7e,0xbf,0x82,0xbd,0x21,0xcd,0xe1,0x58,0xe4,0x7a, +0x53,0x1b,0xd7,0x73,0x65,0x3e,0x9b,0x5d,0x7c,0x66,0xe9,0xbf, +0xb0,0xa2,0x37,0xf7,0xd5,0x79,0x0d,0xe7,0xfd,0xc2,0xf6,0x93, +0x6b,0x3d,0x98,0x02,0x34,0x29,0x7b,0x6b,0x6c,0x15,0x8c,0xf7, +0x6b,0x01,0xcd,0x6e,0x01,0xb4,0x0a,0xe3,0x39,0x20,0xd1,0x3d, +0x6c,0xfc,0x66,0xa3,0x37,0x1b,0xb5,0x0b,0xde,0x08,0xbb,0xc2, +0x70,0x20,0xe0,0x3f,0xc0,0x7e,0x30,0xfe,0xde,0x07,0xd4,0xf6, +0x80,0x21,0x34,0xfa,0x18,0x46,0xd4,0x71,0x50,0x6f,0x2f,0x1c, +0xed,0x04,0xd4,0xc8,0x4a,0xc4,0x10,0x1c,0x62,0x64,0x15,0xcb, +0x19,0x5a,0xc9,0xb0,0x02,0xcf,0x72,0x67,0x5f,0x5e,0x00,0x7c, +0x40,0x11,0x1f,0x28,0x11,0x19,0x28,0x59,0x29,0x10,0x9f,0xe1, +0x03,0x25,0x22,0x03,0x35,0x94,0xf4,0x0d,0xa4,0x65,0x63,0x3c, +0x8f,0x08,0x91,0xc7,0x11,0xdd,0xb9,0xe3,0x78,0x24,0x48,0xaa, +0x0a,0xcb,0xa0,0x18,0x5b,0xc9,0xf6,0xcd,0x87,0x31,0xb3,0x99, +0xb9,0x19,0x1c,0x5b,0x9b,0x5b,0xbb,0xbe,0x21,0xa0,0x23,0x41, +0x8a,0xed,0x4a,0x77,0xae,0x1f,0x37,0x06,0xc6,0x9e,0x7b,0xbc, +0x92,0x17,0xf9,0x1a,0x7c,0x2b,0xa2,0x54,0xe8,0x81,0xb6,0x75, +0xd8,0x2e,0xfe,0x2f,0xfb,0xbf,0xeb,0x9e,0xae,0x02,0xbf,0x0e, +0xd2,0xce,0xb2,0x1b,0x9f,0x79,0xfb,0x82,0xe7,0xe7,0x7f,0xdb, +0x2f,0x01,0x3f,0xc6,0x6e,0x7c,0xfa,0x08,0xf2,0x7d,0xf4,0x62, +0xbe,0xff,0x71,0x3f,0xc3,0xce,0xbe,0x85,0x51,0xc7,0xf5,0x15, +0x83,0xc9,0x80,0x1c,0xde,0xf0,0xd5,0x03,0xfc,0x2e,0xc1,0xb7, +0xe2,0x4d,0xf1,0x96,0x78,0x5b,0xfc,0x4e,0xbc,0x23,0x7e,0x2f, +0x66,0x8b,0x77,0xc5,0x7b,0xe2,0x0f,0xe2,0x7d,0x31,0x47,0xfc, +0x51,0xfc,0x49,0xfc,0x59,0x7c,0x20,0xe6,0x9a,0x7c,0x4d,0x06, +0x73,0x98,0xb9,0xa3,0xe5,0x2f,0x8b,0x23,0xa4,0x42,0xc8,0x87, +0x21,0x61,0x21,0xe1,0x21,0xe3,0x43,0x26,0x84,0x4c,0x0c,0x99, +0x14,0x32,0xd9,0x5a,0xce,0x5a,0xde,0x5a,0xc1,0x5a,0xd1,0xfa, +0xa1,0xb5,0x92,0xf5,0x23,0x6b,0x65,0x6b,0x15,0x6b,0x55,0x6b, +0x35,0x6b,0x75,0xeb,0x1c,0xdc,0x37,0x4e,0x45,0x0c,0xef,0x4f, +0x77,0xa8,0xb7,0xc1,0xf5,0xa5,0x85,0xf1,0xca,0xa9,0xca,0x69, +0xef,0xf8,0xde,0x82,0x52,0xb9,0x1e,0x7a,0x7c,0x83,0x63,0xae, +0x83,0x77,0x2c,0x71,0x98,0xe1,0xdf,0xd3,0xb1,0xc6,0x51,0x17, +0x64,0x2b,0xc1,0x71,0x16,0xae,0xae,0x81,0x67,0xf7,0xb6,0x38, +0x22,0x1c,0xb3,0x1c,0x26,0xb8,0x4e,0x01,0xc9,0x9b,0x8a,0x7b, +0xb5,0x9e,0x85,0x98,0xec,0xe9,0x63,0x82,0xa3,0x84,0x63,0x99, +0xa3,0x17,0x5b,0x9b,0xe5,0x38,0xe2,0x18,0x04,0xe1,0xcb,0x1c, +0xa9,0x8e,0xd1,0xf0,0x7f,0xcd,0x91,0xec,0x18,0x06,0x29,0x26, +0xc0,0x9d,0x14,0x5c,0xbf,0xe1,0x7c,0xb3,0x9d,0xed,0xe4,0x94, +0xc1,0xe4,0x17,0x52,0x6f,0xc1,0xf9,0xb9,0x0c,0x88,0xc3,0xce, +0xb3,0x20,0x87,0x34,0xc8,0x8b,0xe5,0xc1,0xd6,0xa1,0xe7,0xc0, +0x59,0x2e,0xc6,0xcd,0x72,0xbd,0xbf,0x93,0x03,0x57,0x8b,0x70, +0xd7,0xa1,0x4c,0x88,0x9f,0x0a,0xf9,0xe7,0x61,0xcc,0x04,0x70, +0x3a,0x08,0x4b,0x00,0x3f,0x17,0xc2,0x27,0x60,0x19,0x2c,0xce, +0x59,0xa8,0xaf,0xf3,0x8d,0x01,0xe7,0x7e,0x8c,0x5b,0x1c,0xcd, +0xb0,0x9c,0x14,0x47,0x59,0x88,0xd1,0xcb,0xb1,0xc7,0xd1,0xd6, +0xf1,0x9b,0xe3,0x4b,0xc7,0x2e,0x47,0x47,0xc7,0xcf,0x8e,0xeb, +0x90,0xb6,0x2b,0xa4,0x3d,0x0d,0x79,0x9e,0xc5,0xf2,0xae,0x39, +0x0e,0xc2,0xf5,0x25,0x48,0xb1,0x0c,0xc2,0x32,0x0a,0xde,0x27, +0xc8,0xc0,0x36,0xdd,0x72,0xed,0x31,0x7b,0x04,0xf7,0xa5,0xb9, +0xe0,0x58,0xef,0xb8,0xe3,0xb8,0x82,0x21,0x32,0xee,0x27,0x3d, +0x17,0x72,0xd9,0x82,0xb4,0x62,0x39,0xfd,0xe0,0xf8,0x06,0xca, +0xf8,0x16,0xe8,0xf2,0x69,0x41,0x9a,0x1c,0xb8,0x66,0x6f,0x27, +0x0d,0x70,0x14,0x75,0x8c,0x75,0x14,0xc7,0x70,0x56,0x8f,0x2d, +0x10,0xe7,0x3e,0xe4,0x76,0xc2,0xd1,0x10,0x5b,0xbb,0xdf,0xd1, +0x03,0x72,0x8e,0x47,0x7f,0xc8,0x31,0xd3,0xf1,0xb5,0xe3,0x0c, +0xfa,0xdf,0x1d,0x3f,0x22,0x4d,0xcf,0x22,0x9d,0xd9,0x9b,0xed, +0x11,0x58,0xaf,0x23,0xd0,0x0e,0x46,0x9b,0x54,0xc7,0x48,0xc7, +0x4f,0x50,0xf6,0x2a,0x47,0x63,0x38,0x1e,0x71,0x5c,0x74,0x6c, +0x46,0x9a,0xb0,0xe7,0xb3,0x97,0x1c,0x8b,0xb1,0x9c,0x9f,0x1c, +0xa7,0x70,0x07,0xd8,0x9f,0x80,0x0e,0x87,0x1d,0xab,0x1d,0x5b, +0x1d,0x13,0x21,0xbc,0x23,0xe4,0x15,0x05,0x14,0x9a,0xeb,0x18, +0xe8,0x98,0xfb,0x97,0x03,0xf8,0x20,0x00,0x78,0xa0,0x1f,0xa4, +0xed,0x08,0x65,0x85,0x01,0xed,0x87,0x00,0xbd,0xcb,0x01,0xdd, +0xbb,0x42,0x58,0x43,0xa0,0x6b,0x6d,0xa0,0x69,0x3d,0xa0,0x67, +0x27,0x88,0xd1,0x16,0x42,0xab,0x42,0xde,0x5d,0xd1,0x8d,0x74, +0x58,0xa1,0xfc,0xea,0x70,0x5d,0x1e,0xee,0x75,0x81,0x7c,0xb7, +0x40,0xbe,0xc7,0x1d,0xc3,0x81,0xd2,0xed,0xa0,0x8e,0xfd,0xd0, +0xb7,0x87,0xeb,0xce,0x70,0xcd,0x76,0xea,0x79,0x0a,0xb5,0xf9, +0xd1,0x71,0x97,0xed,0x8c,0xa1,0x9c,0x0d,0xf6,0x04,0x51,0x2e, +0x54,0x2e,0x04,0xfd,0xc6,0xac,0x55,0x0e,0xed,0x54,0x1e,0x2c, +0xd4,0x70,0xd0,0xad,0x11,0xb4,0x03,0x58,0xb1,0x51,0xb4,0x27, +0x58,0x90,0x6c,0x96,0x26,0x10,0xb0,0xfc,0x00,0xb0,0x78,0x18, +0x6a,0x2e,0x8a,0x73,0x2c,0x1f,0xe0,0xec,0x4a,0x28,0xce,0xa8, +0x94,0x40,0x7b,0xb1,0x14,0x5a,0x8a,0xa5,0x01,0x4d,0xcf,0x03, +0x8b,0x73,0x01,0x60,0xa7,0x0a,0x60,0xff,0x2d,0x23,0x95,0x69, +0x3c,0xdd,0x49,0xaa,0x82,0x46,0x3e,0x4f,0x5a,0x01,0x3a,0xbe, +0x46,0xfa,0xa2,0x75,0x3f,0x08,0x2c,0xb0,0x1f,0xc9,0x60,0xb0, +0xc4,0x1f,0x91,0x89,0xec,0x8d,0x5f,0x32,0x5d,0x7c,0x68,0xa2, +0x64,0x26,0x58,0x51,0x46,0x92,0x68,0x1a,0x6b,0x1a,0x47,0x92, +0xcc,0x8d,0xcc,0x8d,0xc9,0x5a,0xf3,0x18,0xd0,0xfc,0xeb,0x71, +0x2f,0x36,0x15,0x51,0xe0,0xbe,0xe8,0x0c,0x45,0x32,0x7b,0x8a, +0x23,0x3a,0xe7,0xbe,0x23,0xb8,0x63,0x96,0x73,0xc7,0x69,0xe7, +0x1e,0x5d,0x79,0x78,0x94,0x5d,0x61,0x39,0xc8,0x11,0x79,0x90, +0x52,0xa7,0x8c,0x03,0xcb,0x7c,0x14,0xd8,0xbb,0x2b,0x60,0x14, +0xba,0x40,0x2f,0x82,0x35,0xf2,0x25,0xb3,0x08,0x89,0x27,0xe4, +0xae,0xc2,0x1d,0xb8,0xd8,0x0e,0xcf,0x0a,0xa0,0x4c,0x1b,0x36, +0x7b,0x44,0xa7,0xb1,0x39,0x3b,0xb6,0x5b,0x1e,0xe1,0x70,0x0f, +0x31,0x3b,0xf3,0xec,0xbb,0x1f,0x60,0x21,0xb0,0x19,0x0a,0x96, +0x92,0xed,0x47,0xc2,0xb1,0x7d,0xd1,0x71,0x07,0x77,0x15,0xd8, +0x1d,0x7d,0xe8,0x08,0x3a,0xeb,0x59,0x4a,0xdc,0x05,0x43,0x81, +0x5f,0x60,0xa1,0x98,0xb2,0x17,0x1b,0xcf,0x70,0xff,0x22,0x15, +0x1c,0x39,0xbc,0xab,0xc4,0x79,0x2b,0x25,0xa9,0x8a,0x5f,0xa9, +0x60,0xfb,0xde,0x71,0xb8,0x0b,0x82,0x3f,0x7a,0xe7,0x3e,0x58, +0xce,0x73,0x7f,0xb8,0xe7,0x8f,0xe7,0x1e,0xe8,0x9d,0xa5,0xea, +0x69,0x5b,0xda,0x11,0xec,0xae,0xe1,0x60,0xe3,0x8f,0xa6,0x63, +0xd8,0x3c,0x17,0xd8,0xed,0xf3,0xe9,0x92,0x67,0x63,0x14,0x29, +0x4b,0x62,0x95,0xbf,0x53,0x35,0x6d,0x45,0x7b,0x82,0x8d,0xb5, +0x5e,0x95,0xcb,0xa9,0xb0,0x0e,0x2c,0xf5,0x9f,0xa8,0xa3,0x15, +0x21,0x93,0x21,0x84,0xed,0x04,0xe0,0xfe,0x0e,0xad,0xe8,0xfe, +0xb6,0x6f,0xc8,0xc0,0xc8,0xb7,0x15,0x72,0xed,0x8b,0x5f,0x8f, +0x61,0xbe,0x8b,0xe3,0x13,0xd2,0xd8,0xd1,0x94,0xb4,0x72,0x44, +0x81,0x1f,0x4c,0x1a,0x3a,0xe6,0x12,0xa5,0xe3,0x5b,0xe2,0x8f, +0xfb,0xc3,0xb3,0xdd,0x85,0xb3,0x70,0xdf,0x2c,0xe6,0x7d,0x1d, +0xb7,0x48,0x19,0xc7,0x59,0xf4,0xbe,0xb8,0xcb,0x6b,0x16,0xee, +0xf7,0xd0,0xd0,0x31,0x15,0x77,0x8b,0x0d,0x01,0x4c,0xc2,0x7c, +0x45,0x47,0x2a,0x86,0x17,0x77,0xec,0x83,0xeb,0x2c,0x28,0x23, +0x80,0x54,0x71,0x44,0xa0,0x77,0xe6,0x7b,0x0b,0xee,0x5f,0x2b, +0x94,0xc7,0x2d,0xa2,0x87,0xb2,0x42,0xc0,0x87,0x42,0x5a,0x7f, +0xc8,0xdf,0x03,0xf7,0xe6,0x38,0x82,0xe7,0x5a,0x88,0x53,0xc7, +0xb1,0x05,0xe2,0x5d,0xc2,0xb8,0xec,0xba,0xa2,0x63,0x0d,0xdb, +0x41,0x04,0xe2,0xa7,0xc1,0x79,0x32,0xc4,0x3b,0x82,0xde,0xdb, +0x71,0x03,0xfa,0xfb,0x3e,0xb4,0xa5,0x5f,0x41,0x99,0x45,0x1c, +0x9b,0x20,0xaf,0xb3,0xe0,0x33,0x30,0x7f,0x67,0x3b,0xd2,0x30, +0x6f,0x3d,0xe4,0x15,0x02,0x61,0x55,0x1c,0x6b,0xd8,0x17,0x74, +0xde,0xe5,0x49,0x7d,0xc7,0x14,0xd2,0xdd,0x51,0x87,0x54,0x77, +0xcc,0x24,0xe5,0xe1,0xbc,0x31,0xf8,0x48,0xb8,0x66,0xe1,0xb5, +0x1c,0xa3,0xe0,0x7a,0x0e,0x09,0x77,0x74,0x21,0x15,0x1c,0xe3, +0xf0,0xbf,0x11,0xd0,0xe6,0x53,0xc7,0x0c,0x08,0x5f,0x48,0x5a, +0x40,0x58,0x2d,0xc7,0x74,0x48,0x3b,0x9f,0x04,0x39,0xf6,0xc0, +0xff,0x14,0x0c,0x0f,0x77,0x0c,0xc4,0xbc,0x19,0xdd,0xeb,0x3b, +0x62,0x20,0xde,0x20,0x26,0x15,0xd0,0x97,0x7d,0x15,0x4d,0x61, +0x6c,0x9e,0xad,0x9c,0xa3,0x9c,0xab,0x9c,0x07,0xbc,0xdb,0x92, +0x86,0xb3,0x79,0x28,0x86,0x7f,0xc0,0x92,0x8f,0xa2,0x9d,0x00, +0x73,0x45,0xd3,0xbe,0x6c,0x86,0x01,0xdf,0xf7,0x1f,0x06,0xbc, +0x3d,0x12,0x65,0x08,0xe4,0x9f,0x4e,0xa3,0xb3,0xc0,0x7a,0x5e, +0x02,0xd2,0x90,0x80,0x28,0x6f,0x3d,0xdd,0x46,0xb7,0xd3,0x1d, +0x20,0xf1,0xa9,0xf4,0x00,0xd8,0xc6,0x19,0x80,0xb7,0x4e,0xd3, +0x33,0x80,0xa0,0xce,0xa3,0xbc,0x5d,0x01,0x7c,0x87,0x32,0x07, +0x1a,0xe0,0x26,0x58,0xca,0xd9,0x88,0xf2,0x7e,0x02,0x9c,0xf7, +0x0b,0x7d,0x04,0xa3,0xff,0x4b,0xdf,0x15,0x12,0x1f,0x8a,0x8f, +0xc4,0xc7,0xcc,0x4e,0x16,0x7f,0x13,0x7f,0x17,0xff,0x10,0xf3, +0x99,0xb5,0x2c,0x3e,0x11,0xff,0x14,0x65,0xd1,0x2e,0x3e,0x15, +0xff,0x12,0x1d,0x26,0x62,0x52,0x98,0x94,0x26,0x0a,0xb8,0xc0, +0x8f,0xe9,0x0c,0xf3,0x58,0xe4,0x6b,0x35,0xb4,0x35,0x07,0x5b, +0xa8,0x04,0x94,0xf9,0x2d,0x84,0x95,0x77,0x4a,0x11,0x84,0xf9, +0x82,0x37,0x38,0x1e,0x00,0x07,0xe4,0xe0,0x0e,0x80,0x2c,0x4c, +0x0b,0xde,0xdf,0x75,0xed,0x8b,0xe9,0xb4,0xb4,0x27,0xc8,0x13, +0x93,0xa3,0xc5,0x80,0x2f,0x19,0x62,0x3d,0x0c,0x08,0xf2,0x59, +0xde,0xb9,0xa8,0x8b,0x94,0x34,0x0c,0xd0,0xbe,0x92,0x9c,0xc1, +0x7d,0x7a,0x9d,0x5f,0x47,0xc8,0x75,0xee,0xa1,0x86,0xff,0x2c, +0xef,0x7c,0xe8,0x7d,0xe7,0x6e,0xfe,0x1e,0xb8,0xdb,0x49,0x7e, +0x81,0x67,0xf1,0xfd,0x5d,0xde,0x19,0x3f,0x0f,0x77,0x31,0xe4, +0x5c,0xf1,0x75,0x8e,0x3f,0x70,0x1f,0x16,0x0f,0xd7,0xee,0x86, +0xda,0x82,0x7d,0x08,0xf3,0x70,0xa7,0x50,0xd9,0xf1,0x2b,0x96, +0xa7,0x75,0xc5,0x67,0xe9,0x44,0xd4,0x85,0x7f,0xe0,0x3e,0x2e, +0x1c,0xe6,0xed,0xac,0x83,0x3f,0xde,0xff,0x03,0x77,0x67,0xf9, +0xcb,0x55,0x8e,0xd6,0xb9,0x93,0x1f,0x51,0x3b,0x1e,0xc3,0xff, +0x6f,0xd0,0x9e,0xf2,0xa0,0x1f,0x3b,0xd2,0xce,0x6c,0xc6,0x11, +0x77,0x79,0x18,0x42,0x87,0xa2,0x3e,0x61,0x3b,0x3c,0x30,0x7d, +0x38,0x1d,0xf4,0xfd,0x6c,0xd0,0x2b,0x6c,0x97,0x87,0xa5,0x88, +0xe9,0x37,0xd0,0x8d,0x74,0x13,0xe0,0xfa,0x14,0x44,0xf6,0xfb, +0x68,0x1a,0xe0,0xfa,0x63,0x80,0xb8,0xcf,0x82,0xbe,0xbf,0x44, +0x2f,0x03,0xa2,0xff,0x1a,0xb0,0x7c,0x0e,0xcd,0xa5,0x0f,0xc5, +0x6b,0x2e,0xbd,0xa7,0x44,0xbd,0xa7,0x45,0xfa,0xf5,0xa2,0x2b, +0x0a,0xfa,0xc6,0xd7,0xd9,0x1a,0xd7,0x3e,0x30,0x9c,0x6b,0xff, +0x46,0x2d,0xee,0x5a,0x9d,0xe7,0xa2,0xda,0x1f,0xf8,0x9d,0x33, +0xf6,0xbc,0xa4,0x07,0x8d,0x85,0x71,0x67,0x33,0xd8,0x0f,0x77, +0x40,0xa3,0x8e,0x41,0x0b,0xc1,0x1d,0xb5,0xac,0x73,0xbf,0x32, +0xa6,0x6b,0x41,0xab,0xa2,0x96,0x2e,0x0d,0xd7,0x1a,0x97,0xc6, +0xf4,0xc5,0xb2,0x39,0xcc,0x97,0xed,0x37,0xea,0xef,0x8a,0xef, +0x0f,0x14,0xf0,0x66,0xdf,0xf7,0xc2,0x7d,0x2f,0xd8,0x3e,0x17, +0x71,0x30,0x7e,0xad,0xa4,0xfb,0xe9,0x6d,0xe7,0xb7,0xdb,0x14, +0x93,0xb8,0x66,0x2f,0x7c,0xbb,0xad,0x33,0x7e,0xbb,0x6d,0x29, +0x7e,0xbb,0x2d,0x93,0x7d,0xbb,0x4d,0xc1,0xb3,0x6f,0xb7,0x29, +0x6a,0x16,0x7c,0x51,0x8d,0xed,0xa6,0xce,0xbe,0xd4,0xe6,0xfc, +0x26,0x9b,0x95,0x94,0x84,0x96,0x56,0x26,0x35,0x48,0x5d,0xd2, +0x88,0xb4,0x20,0x6d,0x48,0x07,0xd2,0x95,0xf4,0x26,0x03,0x70, +0xdf,0x98,0x09,0x64,0x5a,0xa1,0x74,0xce,0x6f,0xb9,0x39,0xbf, +0xda,0x56,0x8c,0x94,0x22,0x15,0x48,0x15,0xf2,0x09,0xa9,0x47, +0x1a,0x93,0x96,0xa4,0x2d,0xe9,0x48,0xba,0x91,0x3e,0x64,0x20, +0x19,0x4a,0x46,0x93,0x89,0x64,0x7a,0xa1,0x74,0xce,0xaf,0xbd, +0x39,0xbf,0xeb,0x56,0x1c,0xda,0x5d,0x11,0xc6,0x94,0x9a,0xa4, +0x3e,0x69,0x42,0x5a,0x91,0x08,0x12,0x45,0xba,0x93,0x68,0x12, +0x43,0x86,0x91,0x31,0x64,0x12,0x99,0x51,0x28,0x9d,0xf3,0x7b, +0x70,0xce,0x2f,0xbf,0x7d,0x40,0xca,0x90,0x0f,0x49,0x35,0x52, +0x8b,0x34,0x20,0x4d,0x49,0x18,0x69,0x47,0x3a,0x91,0x1e,0xa0, +0xd1,0x07,0x91,0xe1,0x64,0x2c,0x99,0x4c,0x66,0x16,0x4a,0xe7, +0xfc,0x62,0x1c,0xfb,0x3a,0x1d,0xdb,0x1d,0xbb,0x2c,0x8c,0xcb, +0xd5,0x49,0x6d,0xd2,0x90,0x34,0x23,0xad,0x49,0x24,0xe9,0x4c, +0x7a,0x82,0xb5,0x39,0x98,0x8c,0x20,0xe3,0xc8,0x14,0xd7,0xfe, +0x61,0xce,0x74,0xec,0x8b,0x45,0xce,0xef,0xd7,0x85,0x90,0x12, +0xa4,0x1c,0xf9,0x88,0x7c,0x4c,0xea,0x90,0x4f,0x49,0x73,0x12, +0x4e,0xda,0x93,0x2e,0xa4,0x17,0xe9,0x4f,0x86,0x90,0x91,0x64, +0x3c,0x99,0x4a,0x3e,0x23,0x9f,0x77,0xeb,0x36,0x60,0x18,0xad, +0xf9,0xf6,0x63,0x8f,0x1e,0x03,0x07,0xd3,0x86,0x6f,0x3f,0xf6, +0x1c,0xd0,0xb7,0x0f,0x6d,0xf6,0x8e,0x63,0xcc,0xa0,0x81,0xb4, +0xf5,0xdb,0x8f,0xbd,0x46,0x0d,0x1e,0x46,0x23,0xdf,0x7e,0xec, +0x3d,0xb2,0x6f,0x4f,0xda,0xf9,0xed,0xc7,0x68,0x76,0xec,0xf9, +0xf6,0x63,0xbf,0xc1,0x55,0xaa,0xd2,0x7e,0xef,0x3a,0x56,0x2b, +0x4f,0x07,0xbf,0xfd,0x08,0x8d,0xeb,0x46,0x47,0xbc,0xfd,0x18, +0x33,0xa0,0x47,0x7f,0x3a,0xee,0x1d,0xc7,0xe1,0x03,0x63,0xe9, +0x94,0xb7,0x1f,0x07,0xc5,0xf6,0x8c,0xa1,0xb3,0xde,0x7e,0x1c, +0xcc,0x5a,0x37,0xef,0xed,0xc7,0xa1,0xac,0x67,0xe3,0xde,0x71, +0x1c,0x5a,0xbe,0x02,0x8d,0x7f,0xe7,0xb1,0x22,0x4d,0x7a,0xe7, +0xb1,0x12,0x4d,0x7e,0xc7,0x71,0xf8,0xe0,0xa1,0x74,0xeb,0xdb, +0x8f,0xc3,0x62,0xbb,0xf5,0xa4,0xbb,0xde,0x7e,0x1c,0xd1,0x2b, +0x76,0x18,0x4d,0x7b,0xc7,0x31,0x76,0x58,0x45,0x7a,0xf4,0xed, +0xc7,0x31,0xbd,0x62,0x07,0xd1,0x53,0x6f,0x3f,0xe2,0xfc,0x3e, +0x71,0x7d,0xf1,0x50,0x45,0x5e,0xfe,0x9e,0xa1,0xf3,0x0b,0x87, +0xce,0xaf,0x1d,0x3a,0xbf,0x6d,0xa8,0xc5,0xa3,0x8e,0x3c,0xff, +0x16,0xa2,0xf3,0xbb,0x88,0xbe,0x78,0x74,0x7e,0x9f,0xd3,0xf9, +0xfd,0x43,0x3f,0x3c,0x16,0xc1,0xa3,0x11,0x8f,0xfe,0x78,0x0c, +0xc0,0x32,0x3d,0xf0,0x7b,0x20,0xec,0xeb,0x7f,0xec,0xe8,0x83, +0x47,0x2f,0xd0,0x30,0x55,0x3d,0xd2,0x2a,0x5c,0xa8,0x70,0xbf, +0xa2,0xba,0xe2,0xa9,0x8a,0x37,0xaa,0x47,0xd5,0xcc,0xaf,0xb7, +0xa0,0xd1,0xd1,0x16,0x23,0xc2,0xd4,0x6d,0x7a,0xb7,0xab,0xda, +0xae,0x6b,0xa7,0xba,0x9d,0xba,0x76,0x9a,0xd0,0xb5,0x6b,0x74, +0x7a,0x74,0x93,0xe8,0x9e,0xd1,0x53,0xa2,0x97,0x46,0x6f,0x8e, +0x4e,0x77,0xd5,0x1f,0xc6,0x5e,0x21,0x9d,0xde,0xb4,0x8c,0xb2, +0x8c,0xb1,0x4c,0xb4,0x4c,0xb2,0x2c,0xb4,0x2c,0xb2,0xc4,0x59, +0x96,0x58,0x96,0x5a,0x96,0x59,0x96,0x5b,0xe2,0x2d,0x2b,0x2d, +0x09,0x96,0x44,0xcb,0x2a,0xcb,0x6a,0x4b,0x92,0x65,0x8d,0x65, +0xad,0x65,0x9d,0x65,0xbd,0x65,0xab,0x65,0x9b,0x65,0x87,0x65, +0x97,0x65,0xb7,0x65,0x8f,0x25,0xd5,0xb2,0xd7,0xb2,0xdf,0x92, +0x66,0x39,0x68,0x39,0x64,0x39,0x6c,0x49,0xb7,0x1c,0xb1,0x1c, +0xb5,0x1c,0xb3,0x1c,0xb7,0x64,0x58,0x4e,0x5a,0x4e,0x59,0x4e, +0x5b,0xce,0x59,0xce,0x5b,0x2e,0x58,0x32,0x2d,0x97,0x2c,0xd7, +0x2c,0x5f,0x5a,0xbe,0xb5,0x7c,0x67,0xf9,0xde,0x72,0xcf,0xf2, +0xc0,0x92,0x6b,0xf9,0xc5,0xf2,0xd0,0xf2,0xc8,0xf2,0xd8,0xf2, +0xab,0xe5,0x37,0xcb,0xef,0x21,0xe3,0xac,0x35,0x42,0xbe,0x15, +0xbf,0x16,0x6f,0xb0,0xb9,0x08,0xe5,0x5d,0x65,0xb6,0xf2,0x8e, +0xf2,0x7b,0x4f,0x7d,0xf0,0x15,0x73,0x13,0xef,0xbc,0xa0,0xb5, +0x5e,0x5b,0x82,0xaf,0x7a,0x0d,0x33,0xdc,0x0d,0x2c,0xe3,0xb5, +0x37,0xf8,0x9a,0x75,0x5e,0x11,0xd1,0x14,0x10,0x7c,0x3d,0xf8, +0xcb,0xc0,0x93,0xc1,0x5f,0x99,0x02,0x83,0xbf,0x0e,0xfe,0x26, +0xf8,0x86,0x57,0x0b,0xdf,0x99,0xaa,0x3c,0xff,0x9d,0x41,0x1d, +0xac,0xf3,0xbd,0x86,0x07,0xdf,0xb4,0x2e,0x08,0xb2,0x79,0x5d, +0xf4,0x29,0x57,0xb4,0x8a,0xef,0x6d,0x5f,0x29,0xf8,0x56,0xd0, +0xd9,0xe0,0xdb,0xd6,0x85,0xd6,0x45,0x45,0x8a,0x7b,0x36,0xf1, +0xec,0x6e,0x5d,0x1c,0xfc,0x9d,0x29,0xd8,0x2f,0xd2,0xb3,0xa9, +0x57,0xb2,0xf5,0x6b,0x6b,0x9c,0x4f,0xf9,0xe0,0xef,0x83,0xb3, +0xad,0x4b,0x8a,0xd8,0xfc,0xbb,0xf9,0xec,0xf3,0x59,0xed,0x9b, +0xef,0x2f,0x79,0xeb,0xbc,0x7b,0xf8,0x26,0x04,0xdf,0xb5,0x2e, +0x0d,0xbe,0x17,0xfc,0x43,0x31,0x4d,0xf0,0x7d,0xcf,0x93,0x9e, +0x77,0xcc,0xbf,0xfb,0xde,0xb5,0x2e,0x0b,0xce,0x31,0xc4,0x1a, +0xbd,0x83,0x7f,0xf4,0xff,0x33,0xc0,0x1c,0xb8,0x25,0x70,0x9f, +0x77,0xff,0xe0,0x9f,0xac,0xcb,0x7d,0xef,0x19,0x38,0xeb,0x8a, +0xe0,0x9f,0x3d,0x3b,0xf9,0x34,0x37,0xfc,0x16,0xfc,0xc0,0x24, +0x5a,0xff,0x30,0x26,0xf8,0x24,0xfb,0x6c,0xb7,0xc6,0x07,0xe7, +0x06,0xff,0xe2,0x5d,0xdf,0x67,0x94,0xe1,0xaf,0xa2,0x87,0xad, +0x2b,0x4d,0x66,0x5f,0x45,0xf0,0x43,0x6b,0x82,0x35,0xd1,0x9a, +0xe5,0x79,0x3d,0xf8,0x51,0x50,0x78,0xf0,0xe3,0xe0,0xbc,0xe0, +0x5f,0x83,0x7f,0xb3,0x4a,0x9e,0x27,0x8a,0xae,0x0b,0xfe,0xdd, +0x7b,0xbf,0xf7,0x6f,0xc1,0x7f,0x58,0x57,0x19,0xba,0x05,0xe7, +0x17,0x39,0x51,0xe4,0xcf,0x60,0xc9,0x78,0x33,0xd8,0xe6,0xff, +0x79,0xc0,0xb9,0x20,0xb7,0xa0,0x7b,0xfe,0x75,0xac,0xab,0x8d, +0x6e,0x9e,0x3d,0x83,0xff,0xf4,0xdc,0xe1,0x15,0x1b,0x2c,0x9b, +0x8a,0x06,0xdb,0x7d,0xd3,0x7d,0x57,0xfb,0xf9,0x16,0xb9,0x63, +0x95,0x03,0x4f,0x04,0xf9,0x05,0x75,0x0c,0x7e,0xea,0xd5,0x2d, +0xf8,0x2f,0x9f,0x33,0xc1,0x0e,0xef,0xb9,0xde,0x37,0x61,0xc0, +0xfc,0x4b,0x54,0x04,0x4e,0xf7,0xbb,0xe5,0xdf,0x5a,0x54,0x7a, +0x0d,0xb5,0x26,0x89,0xd4,0xe2,0x56,0x8c,0x18,0x96,0x8a,0x9c, +0xdf,0xf7,0x45,0xb4,0x9e,0x7b,0x44,0x5e,0x14,0x7c,0x33,0x45, +0x75,0xe0,0x15,0x51,0x23,0x6a,0xad,0x0e,0xcf,0x9f,0x7c,0x8a, +0xf8,0xf6,0x10,0x75,0xfe,0x9b,0x02,0x46,0x98,0x2c,0xbe,0x0f, +0xac,0x6b,0x8a,0xa4,0x5b,0xd7,0x06,0x5b,0x3c,0x63,0x03,0x7e, +0x30,0x2c,0xf3,0x36,0x8a,0x6e,0xfe,0x25,0xbc,0x83,0xac,0xeb, +0xac,0xeb,0xad,0x5f,0x88,0xee,0xa2,0x87,0xe8,0x19,0x58,0xd9, +0xeb,0x80,0xcf,0x49,0xd1,0xcb,0x9a,0x2c,0x7a,0x7b,0xa7,0x19, +0xa6,0xf8,0x79,0x17,0xb9,0x6b,0xdd,0x60,0x8c,0xb0,0x5e,0xf5, +0x8c,0xb3,0x6e,0x14,0x7d,0x44,0xdf,0xa2,0x8b,0xad,0x9b,0x44, +0x83,0xe8,0x57,0x74,0xbb,0xcf,0x79,0xb1,0x88,0x57,0xa6,0x77, +0x51,0xd1,0x28,0xfa,0x5b,0x37,0x1b,0xae,0x14,0x9d,0x5e,0x24, +0x58,0x0c,0x08,0xf8,0x44,0x0c,0x14,0x83,0x3c,0x55,0x9e,0x5b, +0xbc,0x76,0x79,0x39,0x7c,0x9b,0x17,0x53,0x18,0xea,0x59,0xb7, +0xf8,0x75,0x29,0x12,0x1a,0xd0,0x34,0xf0,0x43,0xaf,0xbe,0x01, +0x44,0x0c,0xf6,0xf6,0x2f,0x3a,0xcd,0x6f,0x9b,0xf5,0x86,0xd7, +0x48,0xd1,0x54,0x24,0x49,0x34,0x07,0x96,0x0c,0xd4,0x05,0xf5, +0xf5,0xb9,0xec,0xfb,0x85,0x58,0xb4,0x68,0x84,0xb1,0x85,0x68, +0x09,0xfc,0x29,0xb8,0xa8,0xcf,0xb2,0x22,0xd5,0xac,0x5b,0xc5, +0x10,0x6f,0x8b,0x4f,0x33,0xd1,0x2a,0x16,0x33,0x34,0x34,0x4c, +0x17,0x8b,0x9b,0x8a,0x99,0x8a,0x1b,0xd5,0x62,0x68,0x40,0x4c, +0xc0,0x8a,0xc0,0x4e,0x45,0x74,0x62,0x09,0xed,0x11,0xeb,0x36, +0xb1,0xa4,0x75,0xbb,0x58,0xca,0xf3,0x81,0xd7,0x1e,0xeb,0x0e, +0x9f,0x31,0x3e,0xf3,0xc4,0xd2,0xd6,0x14,0xc3,0x9d,0x22,0x97, +0x8d,0x77,0xfc,0xcf,0x07,0xb5,0x36,0xe7,0x58,0x77,0x1a,0x17, +0xf9,0x7f,0x62,0xdd,0x65,0xdd,0xed,0x5d,0xc1,0x48,0x4d,0x1f, +0x88,0x65,0xbd,0x36,0x89,0xe5,0x82,0xfa,0x79,0x87,0x78,0x0f, +0x37,0x8c,0x16,0xcb,0x8b,0x15,0x8c,0x4b,0x74,0xcd,0xc5,0x8a, +0x3e,0x9b,0x0c,0x8b,0xc4,0x0f,0xc5,0x4a,0xe2,0x47,0x62,0x65, +0xb1,0x8a,0x58,0x55,0xac,0x26,0x56,0xf7,0xaa,0x6a,0xdd,0xe3, +0xd3,0xdb,0x7a,0x53,0xfc,0xd8,0x38,0xd3,0x6b,0x84,0xf7,0x06, +0x9f,0xaf,0xfd,0xe6,0x05,0xea,0x7d,0xf2,0xfc,0xe3,0xc5,0x1a, +0x81,0xd3,0xc4,0x4f,0x8a,0xf6,0xb4,0xa6,0x8a,0x35,0xbd,0x97, +0x59,0xf7,0x5a,0xf7,0x19,0x5b,0xfb,0x9c,0x13,0x6b,0x89,0xb5, +0xc5,0x3a,0x62,0x5d,0xb1,0x9e,0xb9,0xa9,0x57,0x6a,0x31,0xce, +0xba,0x3f,0x50,0x10,0xeb,0x8b,0x0d,0xc4,0x86,0x81,0x13,0xc5, +0x4f,0x03,0x6e,0x88,0x8d,0x82,0xdd,0x3c,0x3b,0x58,0x6f,0x89, +0x8d,0xc5,0x26,0x62,0xb3,0xa2,0x87,0xfc,0xbe,0x0b,0xf6,0x12, +0x9b,0xfb,0xb6,0xf2,0xcd,0x32,0x54,0xd6,0x0f,0xf2,0xeb,0x28, +0xb6,0x08,0x9a,0x2c,0xb6,0x2c,0xaa,0x12,0x5b,0xf9,0x79,0x06, +0x7c,0x6a,0x3d,0xe0,0x5d,0x4a,0x0c,0x13,0x5b,0x8b,0x6d,0xac, +0xb7,0xc5,0xb6,0x62,0x84,0xd8,0x4e,0x8c,0x2c,0xf2,0xc4,0x9a, +0x16,0xd0,0x37,0xe0,0x17,0xb1,0xbd,0xa9,0x84,0xd8,0xc1,0x87, +0x37,0x0e,0xf7,0xf5,0xf5,0x5e,0xe8,0x13,0x2d,0x76,0xb4,0x1e, +0x0c,0x18,0x24,0x46,0x89,0x9d,0xc4,0xce,0xc5,0x84,0x60,0x85, +0xd8,0x45,0xec,0xea,0xb7,0x42,0xec,0x16,0x14,0xeb,0xd3,0xc9, +0x54,0xd2,0x7a,0x48,0xec,0x6e,0x3d,0xec,0xbf,0xd5,0x9a,0x2e, +0xf6,0xb0,0x1e,0x29,0x42,0xad,0xd7,0xc4,0x9e,0x62,0x2f,0xb1, +0xb7,0xd8,0xc7,0xf7,0x63,0x31,0x5a,0xec,0x6b,0xfd,0x45,0xec, +0x67,0x58,0x29,0xf6,0xb7,0x1e,0x15,0x07,0x58,0x8f,0x15,0x1d, +0x56,0x4c,0x6d,0x3d,0x5e,0x74,0xa6,0x4f,0x7f,0x4f,0x73,0x91, +0xda,0xe2,0x40,0x31,0xc6,0xfa,0x9d,0xcf,0x35,0x53,0xa9,0x40, +0x2f,0xeb,0x09,0x71,0x50,0x31,0xad,0x35,0xa3,0x88,0xc5,0x5b, +0x14,0x07,0x8b,0x43,0xc4,0x58,0xff,0xaf,0x02,0xda,0x8a,0x43, +0xad,0x27,0x8d,0xd5,0xac,0xa7,0xc4,0x61,0xbe,0x25,0x4c,0xa5, +0x3d,0xcb,0xf9,0xab,0x0d,0x9d,0xc4,0xe1,0xe2,0x08,0x3f,0x37, +0x71,0x64,0x31,0x37,0xef,0x8d,0xfe,0x75,0x03,0xea,0xfb,0x7f, +0x24,0x8e,0x16,0xc7,0x88,0x63,0xad,0xa7,0x3d,0x85,0xa0,0x50, +0xe3,0xca,0x80,0x86,0x3e,0x0b,0x7d,0xb7,0x8a,0xe3,0xc5,0x09, +0x01,0x15,0x3d,0xcb,0x88,0x13,0x8b,0xee,0xf6,0xe4,0xac,0x67, +0xfc,0x6d,0xd6,0xb3,0x1e,0x13,0xac,0xe7,0x3c,0x47,0xfa,0xf9, +0x88,0x93,0x8a,0x2e,0xf2,0xda,0x61,0x3d,0x6f,0xbd,0xe0,0x99, +0x51,0x44,0x1f,0x78,0x3f,0xf8,0x03,0xeb,0x45,0x6b,0xa6,0x4f, +0x1d,0x71,0xb2,0x38,0xc5,0x7a,0x49,0x9c,0x6a,0xbd,0x6c,0xb8, +0xe5,0x99,0x5e,0xb4,0x84,0xef,0x36,0x71,0x5a,0x91,0x91,0xe2, +0xf4,0xa2,0x07,0x8b,0xf0,0xd6,0x2b,0x1e,0x8f,0x0d,0x3b,0xdc, +0x37,0x98,0xca,0x8a,0x33,0xc4,0x99,0xe2,0x2c,0xf1,0x33,0x53, +0x39,0x6b,0xb6,0xd5,0x2e,0x7e,0x2e,0xce,0x36,0x95,0x17,0xe7, +0x88,0x73,0xc5,0x79,0xa6,0x0a,0xd6,0xbb,0xe2,0x7c,0x53,0x45, +0x9d,0x64,0xfa,0xd0,0xfa,0xb3,0xb8,0x40,0x5c,0x68,0xaa,0x24, +0x2e,0x12,0x17,0x5b,0x1f,0x98,0x3e,0x32,0x55,0xf6,0xde,0x64, +0xbd,0x2e,0xc6,0x99,0xaa,0x88,0x4b,0xc4,0xa5,0xd6,0x47,0xdc, +0x06,0x71,0x99,0xb8,0xdc,0x54,0x55,0x5c,0x21,0xc6,0xbb,0xad, +0x15,0x57,0xea,0xa3,0xc5,0x04,0x53,0x35,0xfd,0x40,0x31,0xd1, +0x54,0x9d,0x73,0x98,0x3e,0x16,0x57,0x89,0xab,0xad,0x4f,0xc5, +0x24,0x71,0x8d,0xb8,0xb6,0x98,0xd2,0x9a,0x2b,0xae,0x17,0x1e, +0xea,0xc3,0xc4,0x2f,0xc4,0x64,0x71,0x83,0xa9,0x86,0x35,0x4f, +0xdc,0x68,0xfa,0xc4,0xe3,0xa6,0xb8,0x49,0xdc,0x2c,0x6e,0x11, +0xb7,0x8a,0xdb,0xc4,0xed,0xa6,0x9a,0xd6,0x3f,0x8b,0xae,0xb5, +0xde,0x13,0x77,0x88,0x29,0xc5,0x74,0xe2,0x4e,0x71,0x97,0xb8, +0xdb,0x54,0x4b,0xdc,0xa3,0xfe,0xc3,0x83,0x13,0x53,0xad,0x4f, +0xb8,0xa4,0x62,0x1e,0xa6,0xda,0xe2,0x5e,0x53,0x1d,0x71,0xbf, +0x78,0xc0,0xfa,0x1b,0xef,0x2e,0xa6,0x89,0x07,0xb5,0x9b,0xc5, +0x43,0xe2,0x61,0x31,0x5d,0x3c,0x22,0x1e,0x15,0x8f,0x89,0xc7, +0xc5,0x13,0x62,0x86,0x78,0x52,0x3c,0x25,0x9e,0x16,0x2a,0x88, +0x67,0x4d,0xf5,0xc4,0x73,0xe2,0x79,0xd5,0x48,0xf1,0x82,0xf5, +0x07,0xae,0x84,0x78,0xd1,0x54,0x5f,0xcc,0x34,0xa9,0x4c,0x9c, +0x89,0x37,0x09,0x26,0xb5,0x49,0x63,0xd2,0x9a,0x74,0x26,0xbd, +0xc9,0xcd,0xe4,0x6e,0xf2,0x30,0x79,0x9a,0xbc,0x4c,0xde,0x26, +0x1f,0xd5,0x44,0xd5,0x2e,0xd5,0x3e,0xd5,0x51,0xd5,0x05,0xd5, +0x77,0x5c,0x28,0xd7,0x95,0x9b,0xc4,0x9d,0xe5,0xae,0xf0,0x1a, +0xbe,0x28,0xdf,0x80,0xef,0xc0,0xaf,0xe5,0x4f,0xf3,0xb9,0xfc, +0x6f,0xfc,0x1f,0x82,0x9b,0x60,0x15,0x4a,0x09,0x9f,0x0a,0x6d, +0x84,0xe1,0xc2,0x61,0x35,0xaf,0x6e,0xa7,0x1e,0xae,0x1e,0xa5, +0x1e,0xa3,0xd1,0x68,0xb4,0x9a,0xda,0x9a,0x71,0x9a,0xf1,0x9a, +0xb9,0x9a,0x0b,0x9a,0xc7,0xda,0xe2,0xda,0x86,0xda,0x25,0xda, +0x44,0xed,0x26,0xed,0x41,0x6d,0xa6,0x2e,0x58,0x57,0x43,0xd7, +0x49,0xd7,0x47,0x37,0x40,0xb7,0x5d,0xb7,0x5b,0xf7,0x8d,0xee, +0x9e,0xee,0xbe,0x3e,0x48,0x5f,0x54,0x1f,0xaa,0xaf,0xab,0x6f, +0xa0,0x6f,0xa6,0xdf,0xaa,0x4f,0xd7,0x1f,0xd1,0x1f,0xd7,0x7f, +0xe7,0xe6,0xe6,0x16,0xec,0x66,0x72,0xab,0xea,0x16,0xed,0xf6, +0x99,0xdb,0x12,0xb7,0x35,0x6e,0x1b,0xdc,0x76,0xb9,0x1d,0x75, +0xf7,0x71,0x0f,0x76,0x2f,0xe9,0xde,0xd8,0xbd,0x9d,0xfb,0x2a, +0xf7,0x1f,0xdc,0x1f,0x78,0xf0,0x1e,0x6a,0x8f,0xe3,0x1e,0x27, +0x3c,0xbe,0xf6,0x9c,0xe6,0x15,0xc6,0x6c,0x5b,0x55,0x2a,0xd7, +0x87,0x1f,0xc7,0xa7,0xa9,0xe7,0x6b,0x93,0xb4,0x6b,0x74,0x45, +0xdc,0xda,0xb8,0x87,0xb8,0x27,0xfb,0xb4,0x2c,0x32,0x24,0xa8, +0x95,0xa9,0xb9,0xa9,0x85,0xa9,0x99,0xa9,0xa9,0xf9,0x33,0xf3, +0xe7,0xe6,0xc5,0xe6,0x38,0xf3,0x22,0x73,0x82,0x79,0xb9,0x79, +0xa5,0x79,0x99,0x39,0xd1,0xbc,0xca,0x9c,0x6c,0xfe,0xc2,0xbc, +0xc6,0xbc,0xde,0x3c,0xcd,0x3c,0xd7,0xec,0x65,0xf6,0x34,0xbb, +0x9b,0x3d,0xcc,0xa2,0x39,0xd8,0x1c,0x68,0x0e,0x52,0x0d,0xd4, +0x3d,0x36,0x8f,0x32,0x8f,0x34,0x8f,0x30,0x0f,0x37,0x4f,0x37, +0xcf,0x30,0xcf,0x33,0x2f,0x34,0xcf,0x31,0x2f,0x30,0x2f,0x35, +0xc7,0x9b,0x93,0xcc,0xeb,0x34,0x7d,0xdc,0xa6,0x79,0x1f,0xe2, +0x46,0x68,0x83,0x74,0xc3,0xf5,0xb5,0xdd,0x45,0xcf,0x5c,0xaf, +0xde,0xc6,0xe4,0xa0,0xe3,0x7e,0x03,0xdd,0x76,0xfa,0x24,0x14, +0x89,0x0c,0xe0,0xf9,0x09,0xbc,0xc3,0x3f,0xcc,0x18,0x2b,0xf4, +0xf4,0xf2,0x34,0x3c,0x15,0x32,0xd5,0x63,0xd5,0xc5,0x34,0xdf, +0xfa,0x35,0xd5,0xbb,0xbb,0x7d,0xe8,0x76,0x95,0xfb,0xca,0xbd, +0xb4,0x31,0xd5,0xdd,0xe6,0x1f,0x53,0x2c,0x90,0xed,0x58,0x06, +0x96,0x44,0x7f,0xdc,0xad,0x71,0x0a,0x60,0xfb,0xe9,0x60,0x85, +0xcc,0x04,0xcb,0xe0,0x33,0x32,0x9b,0xcc,0x21,0x73,0x71,0xe7, +0xc6,0x05,0x64,0x21,0x59,0x44,0x16,0xe3,0x6e,0x8d,0xce,0xef, +0xeb,0xae,0x23,0xeb,0xc9,0x17,0x24,0x99,0x6c,0x20,0x9b,0xc8, +0x16,0xb2,0x95,0x6c,0x23,0xdb,0x5f,0xf3,0x75,0x4e,0xe7,0xb7, +0x39,0xd9,0x97,0x39,0x33,0xc8,0x29,0x72,0x81,0x5c,0x26,0x57, +0xc9,0x97,0xe4,0x26,0xb9,0x45,0x6e,0x93,0xef,0xf0,0x3b,0x9d, +0x77,0xc9,0x3d,0xf2,0x83,0xa2,0xa1,0x22,0x59,0x49,0x95,0xf1, +0xca,0x44,0x36,0x73,0xcf,0xc6,0x6d,0x18,0xbd,0xef,0xaa,0x7a, +0xa9,0x7a,0xab,0x06,0xaa,0x86,0xa8,0x46,0xaa,0x46,0x03,0x9f, +0x2c,0x56,0x25,0xaa,0x36,0xa9,0x76,0x02,0xbf,0xec,0x56,0xed, +0x51,0xa5,0x22,0xd7,0x9c,0x04,0xbe,0xf9,0x52,0xf5,0xb5,0xea, +0xb6,0xea,0x3b,0xd5,0x7d,0xd5,0x03,0xd5,0xaf,0xaa,0xdf,0x55, +0x7f,0xaa,0xec,0x9c,0x82,0x73,0xe3,0xbc,0x38,0x23,0x27,0x72, +0x66,0x2e,0x84,0xb3,0x72,0xc5,0x80,0xb7,0x4a,0x70,0x25,0xb9, +0x52,0x5c,0x35,0xae,0x3a,0x57,0x93,0xab,0xc3,0xb5,0x06,0x5e, +0xeb,0xc3,0x45,0x73,0x43,0xb8,0xe1,0xdc,0x08,0x6e,0x34,0x37, +0x96,0x1b,0x0f,0xbc,0x37,0x85,0x9b,0xc1,0x25,0x71,0xc9,0xdc, +0x06,0x6e,0x33,0xb7,0x9d,0xdb,0xcb,0xed,0xe3,0xf6,0x73,0x27, +0xb8,0xd3,0x8c,0x27,0xb9,0xaf,0xb8,0x2c,0x2e,0x87,0xfb,0x91, +0x7b,0xc8,0xc9,0xdc,0x53,0xee,0x2f,0xce,0xc1,0xab,0x81,0x4f, +0xdd,0x78,0x77,0xde,0x97,0x37,0xf0,0x41,0xc0,0xb1,0xa5,0xf8, +0x1a,0x7c,0x4d,0xbe,0x0e,0x70,0x6e,0x2b,0xbe,0x0d,0x1f,0x09, +0xfc,0x3b,0x0e,0xfa,0x61,0x06,0x3f,0x87,0x9f,0xcb,0xcf,0xe7, +0xe3,0x81,0x9b,0x93,0xf9,0xad,0xfc,0x4e,0x7e,0x1f,0x7f,0x80, +0x4f,0xe3,0x8f,0x00,0x6f,0x9f,0xe1,0xb3,0xf8,0xdb,0xfc,0x1d, +0xfe,0x07,0xfe,0xbe,0x93,0xcf,0xf9,0x3f,0x79,0x87,0xa0,0x12, +0x78,0xe0,0x77,0xa3,0xe0,0x2f,0x04,0x0a,0xc1,0x82,0x05,0x38, +0xbf,0xb8,0xf0,0x81,0x10,0x2a,0x94,0x04,0x09,0x28,0x2d,0x94, +0x17,0x2a,0x08,0x15,0x85,0x0f,0x85,0xaa,0xc2,0x27,0x42,0x43, +0x90,0x88,0xa6,0x42,0x73,0xa1,0xa5,0x10,0x0e,0x92,0xd1,0x56, +0x88,0x10,0xda,0x0b,0x9d,0x84,0x9e,0x42,0x2f,0xa1,0xb7,0xd0, +0x47,0x88,0x16,0xfa,0x83,0xb4,0x6c,0x17,0x0e,0x0b,0x47,0x84, +0x13,0xc2,0x59,0x21,0x53,0xb8,0x2e,0xfc,0x22,0x3c,0x14,0x6c, +0x82,0x43,0x4d,0xd5,0x2a,0x90,0x22,0x41,0x5d,0x4c,0x5d,0x47, +0x5d,0x4f,0xdd,0x40,0xdd,0x48,0xdd,0x02,0x64,0xaa,0xa7,0xba, +0x2f,0xc8,0xd5,0x08,0x26,0x59,0xc0,0x31,0x93,0xd4,0x53,0xd4, +0xd3,0xd5,0x33,0xd5,0xb3,0xd5,0x73,0xd5,0xf3,0xd5,0x8b,0xd4, +0x3b,0xd5,0xbb,0xd5,0x07,0xd4,0x27,0xd4,0xa7,0xd5,0xdf,0xa8, +0x7f,0x56,0x3f,0x54,0xff,0xae,0xfe,0x43,0x6d,0x53,0x3f,0x55, +0xff,0xa5,0x01,0x13,0x1d,0x25,0xd1,0x4d,0x13,0xa2,0x29,0xa1, +0xf9,0x48,0x53,0x05,0x64,0xb2,0x91,0xa6,0x99,0xa6,0xb9,0xa6, +0x85,0xa6,0xad,0xa6,0x9d,0xa6,0x8f,0x26,0x56,0x33,0x5c,0x33, +0x42,0x33,0x52,0x33,0x5a,0x33,0x06,0xa5,0x75,0x82,0x66,0x12, +0x48,0xec,0x42,0xcd,0x12,0xcd,0x4a,0xcd,0x06,0xcd,0x56,0xcd, +0x76,0x4d,0xaa,0x66,0xaf,0xe6,0xb0,0xe6,0xb8,0xe6,0x34,0xc8, +0xf1,0x65,0xcd,0x55,0xcd,0x97,0x9a,0xaf,0x34,0x37,0x34,0xdf, +0x6a,0x6e,0x6a,0x6e,0x69,0x6e,0x6b,0xbe,0xd3,0x7c,0xaf,0xc9, +0xd6,0xdc,0xd3,0x3c,0xd4,0x3c,0xd6,0xd8,0xb4,0xbc,0x36,0x40, +0x1b,0xa4,0xb5,0x82,0xb4,0x97,0xd5,0x96,0xd3,0x56,0xd4,0x7e, +0xa4,0xad,0xa2,0xad,0xae,0xfd,0x18,0x64,0xbf,0xb1,0xb6,0xab, +0xb6,0xb7,0xb6,0xaf,0xb6,0x9f,0x76,0xb2,0x76,0x9a,0x76,0xba, +0xf6,0x73,0xed,0x02,0xed,0x62,0xd0,0x08,0x4b,0xb5,0x2b,0xb4, +0x09,0xa0,0x17,0x40,0x4a,0xb5,0xeb,0x40,0x3b,0x6c,0xd6,0x6e, +0xd1,0x6e,0xd7,0xee,0x03,0x2d,0x71,0x54,0x7b,0x4a,0x9b,0xa9, +0xbd,0xac,0xbd,0xa2,0xbd,0xaa,0xfd,0x4a,0x7b,0x43,0x7b,0x5b, +0x7b,0x47,0xfb,0xbd,0xf6,0x07,0xed,0xcf,0xda,0x47,0xda,0xdf, +0xb4,0x92,0xf6,0xa9,0xd6,0xa1,0x23,0x3a,0x85,0x4e,0xa9,0xa3, +0x3a,0xb5,0xce,0x53,0xe7,0xa3,0x2b,0x02,0x7a,0xc5,0xaa,0x2b, +0xa3,0x2b,0xab,0x2b,0xaf,0xfb,0x50,0x57,0x1d,0x74,0x4c,0x3d, +0x5d,0x43,0x5d,0x33,0x5d,0x4b,0x5d,0x6b,0x5d,0x1b,0x5d,0x5b, +0x5d,0x04,0xe8,0x9c,0x5e,0xa0,0x75,0xa2,0x75,0xfd,0x41,0xf3, +0x0c,0xd2,0x0d,0xd6,0xc5,0xea,0x86,0xeb,0xc6,0xea,0x26,0xe8, +0xa6,0xe8,0xa6,0xe9,0xa6,0xeb,0x16,0xe9,0x96,0xe9,0x36,0xe9, +0xb6,0x82,0x4e,0x4a,0x01,0xad,0xb4,0x47,0xb7,0x57,0x97,0xa6, +0x3b,0xa2,0x3b,0xa1,0xcb,0xd0,0x5d,0xd0,0x65,0x39,0xb5,0x94, +0xee,0x27,0xdd,0x03,0xdd,0x63,0x9d,0xa4,0x77,0xd7,0xfb,0xe8, +0x03,0x5c,0x3a,0xab,0xac,0xbe,0xbc,0xbe,0xaa,0xbe,0x9a,0xbe, +0xba,0xfe,0x63,0x7d,0x6d,0x97,0x06,0x6b,0xa1,0x0f,0xd3,0x47, +0xea,0x3b,0xeb,0xa3,0xf5,0xfd,0xf4,0x03,0xf5,0x31,0xfa,0xc1, +0xfa,0x58,0xfd,0x0c,0xfd,0x52,0xfd,0x0a,0x7d,0xbc,0x3e,0x49, +0xbf,0x46,0xff,0x85,0x7e,0x03,0x68,0xb9,0x6d,0xfa,0x3d,0xfa, +0x54,0xfd,0x01,0x97,0xb6,0xcb,0xd0,0x9f,0xd5,0x5f,0xd4,0x67, +0xea,0xbf,0xd3,0xdf,0xd1,0x3f,0xd2,0x3f,0xd6,0xff,0xae,0xb7, +0xbb,0x09,0x6e,0x6a,0xd0,0x81,0x06,0xb7,0x00,0xd4,0x83,0x21, +0xa0,0x25,0x2a,0x81,0x36,0xac,0xeb,0x56,0xcf,0xad,0xbe,0x5b, +0x03,0xb7,0x46,0x6e,0x6d,0xdc,0xba,0x80,0x6e,0xec,0xeb,0x16, +0xe3,0x36,0xd8,0x6d,0x84,0xdb,0x04,0xb7,0x89,0x6e,0xd3,0x40, +0x53,0xc6,0xa1,0xae,0x5c,0xeb,0xb6,0x1e,0xf4,0xe5,0x4e,0xd0, +0x98,0x47,0xdc,0x8e,0xba,0x1d,0x77,0x3b,0xe1,0x96,0xe1,0x76, +0xd2,0xed,0xaa,0xdb,0x1d,0xb7,0x3c,0x37,0xc9,0xed,0x89,0xbb, +0x37,0xea,0x51,0xd1,0xbd,0x28,0xe8,0xc6,0x62,0xee,0x25,0x40, +0xa3,0x96,0x76,0xaf,0xe8,0x5e,0xd9,0xbd,0x01,0x68,0xd6,0x56, +0xa0,0x5b,0xdb,0xbb,0x77,0x74,0x1f,0xed,0x3e,0xde,0x7d,0xb6, +0xfb,0x52,0xd0,0xb3,0xab,0xdd,0x93,0xdd,0x37,0xb8,0x6f,0x76, +0xdf,0xea,0xfe,0x0d,0xe8,0xdc,0x1c,0xf7,0x07,0xee,0x36,0x77, +0xd9,0x83,0x78,0x28,0x3c,0x38,0xd4,0xbf,0x5a,0x0f,0xd1,0xe3, +0x03,0x8f,0x50,0x8f,0x12,0x1e,0x25,0x3d,0x3e,0xf4,0xa8,0xe2, +0x51,0xdd,0xa3,0xa6,0x47,0x5d,0x8f,0xd6,0x1e,0xe1,0x1e,0x6d, +0x3c,0x3a,0x78,0x74,0xf2,0xe8,0xe6,0xf1,0xff,0xd8,0x7b,0xef, +0xf0,0x2c,0x8a,0xee,0x6f,0x7c,0x66,0x37,0x09,0x49,0x48,0x2f, +0x77,0x72,0x97,0xdd,0xbd,0x99,0x99,0x3b,0x95,0x04,0x12,0x20, +0xf4,0xde,0x42,0xef,0x45,0x40,0xa4,0x77,0x10,0x10,0x03,0x22, +0xa2,0x22,0x22,0x20,0x76,0x44,0x41,0x1f,0x40,0x44,0x45,0xc4, +0x86,0xa8,0x88,0xa8,0x3c,0x56,0xec,0x88,0xa8,0x08,0x56,0x44, +0x44,0x54,0x44,0x54,0x9a,0x08,0xbf,0xcf,0xec,0x3d,0x4b,0xc6, +0x3c,0x3e,0xdf,0xf6,0xfe,0xae,0xf7,0xfa,0xfe,0xf1,0x5e,0xb9, +0xce,0x99,0xbd,0x37,0x5b,0x66,0xce,0xcc,0xf9,0x9c,0x73,0x66, +0x77,0xce,0xce,0x4b,0xbd,0x2a,0x75,0x41,0xea,0xa2,0xd4,0x65, +0xa9,0x77,0xa4,0xde,0x9d,0xfa,0x40,0xea,0x83,0xa9,0x1b,0x52, +0x1f,0x4d,0x7d,0x32,0xf5,0x99,0xd4,0xad,0xa9,0xcf,0xa5,0x6e, +0x4b,0xdd,0xe1,0x62,0xf8,0x6b,0xa9,0x6f,0xa4,0xbe,0x99,0xfa, +0x6e,0xea,0x07,0xa9,0x1f,0xa5,0x7e,0x9c,0xfa,0x49,0xea,0x67, +0xa9,0x5f,0xa6,0x7e,0x95,0xfa,0x4d,0xea,0xb7,0xa9,0xbf,0xa4, +0x9e,0x4c,0xab,0x97,0x76,0x51,0xda,0xac,0xb4,0xf9,0x69,0x0b, +0xd2,0x16,0xa6,0xbd,0x0b,0x7c,0x4d,0x4b,0xe7,0xe9,0x25,0xe9, +0xcd,0xd3,0xdb,0xa7,0xf7,0x49,0x1f,0x9e,0x7e,0x49,0xfa,0xb8, +0xf4,0x3b,0xd3,0x57,0xa4,0x3f,0x9d,0xfe,0x42,0xfa,0xbe,0xf4, +0x1f,0x33,0x32,0x32,0xf2,0x33,0xea,0x65,0x5c,0x9d,0xb1,0x20, +0x63,0x69,0xc6,0x8d,0x19,0x1b,0x33,0xb6,0x67,0xfc,0x94,0xd9, +0x2b,0xf3,0x86,0xcc,0x3b,0x32,0xef,0xcd,0x5c,0x93,0xf9,0x62, +0xe6,0xee,0xcc,0xf3,0x59,0x05,0x59,0x25,0x59,0xcd,0xb3,0x7a, +0xc2,0xcb,0x1a,0x94,0x4d,0xb2,0x2b,0xb2,0x7b,0x64,0xf7,0xcb, +0x9e,0x99,0x7d,0x59,0xf6,0x7b,0xd9,0x5f,0x66,0xff,0xe9,0xcb, +0xf5,0xb5,0xf3,0x75,0xf6,0x75,0xf3,0x4d,0xf5,0xad,0xf5,0x7d, +0xee,0xfb,0xd2,0x77,0x30,0xc7,0xca,0xc9,0xcf,0xa9,0x9b,0x33, +0x38,0x67,0x52,0xce,0x8c,0x9c,0xd9,0x39,0x77,0xe6,0xac,0xc9, +0xd9,0x99,0xf3,0x56,0xce,0x47,0xb9,0x0d,0x72,0x2b,0x72,0x67, +0xe6,0xde,0x9a,0xfb,0x60,0xee,0xe3,0xb9,0x5b,0x72,0x9f,0xce, +0x7d,0x21,0xf7,0xf3,0xdc,0x83,0xb9,0x27,0xfc,0x96,0xbf,0xd0, +0xdf,0xc8,0xdf,0xde,0xdf,0xc7,0x3f,0xd2,0x3f,0xcd,0x7f,0xbd, +0x7f,0x99,0xff,0x3e,0xff,0x1e,0xff,0xef,0x81,0xb8,0x40,0x38, +0x50,0x18,0x68,0x0a,0x6f,0x75,0x69,0xe0,0xce,0xc0,0xbb,0x81, +0x1f,0x02,0x3f,0x05,0xe3,0x82,0x81,0x60,0xc3,0xe0,0xda,0xe0, +0x3b,0xc1,0x2f,0x82,0x47,0x10,0x0b,0xa4,0x84,0x7a,0x87,0x16, +0x84,0x6e,0x0b,0xad,0x0b,0xdd,0x1f,0x7a,0x19,0x51,0x4e,0x8c, +0x15,0x6b,0xd5,0xb7,0xee,0xb3,0xd6,0x59,0xf7,0x5b,0xeb,0xad, +0x07,0xac,0x07,0xad,0x87,0xac,0x0d,0xd6,0xc3,0xd6,0x46,0xeb, +0x11,0x6b,0x93,0xf5,0xa8,0xf5,0x98,0xf5,0xb8,0xf5,0x84,0xb5, +0xdb,0xfa,0x50,0x46,0x50,0xd6,0xc7,0xd6,0x3e,0xeb,0x73,0xeb, +0x4b,0xeb,0x80,0x8c,0x71,0xac,0xc3,0xd6,0xf7,0xd6,0x11,0xeb, +0x07,0xeb,0x27,0xeb,0xa8,0x8a,0x47,0x7e,0xb3,0x4e,0x58,0xa7, +0xac,0x33,0xd6,0x59,0xeb,0x9c,0x75,0xde,0x36,0x11,0x23,0xc4, +0xcb,0xe8,0x40,0x7a,0xfb,0x76,0x86,0xf4,0xe4,0xed,0x1c,0x3b, +0x64,0x5b,0xb6,0x63,0xd7,0x81,0x97,0x9d,0x67,0x17,0xd8,0x85, +0x76,0x91,0x5d,0x0a,0x9f,0xb8,0x11,0x3c,0xe0,0x66,0x76,0x0b, +0xbb,0xa5,0xf2,0x68,0x5d,0x1f,0x36,0xea,0xb5,0xc2,0x23,0x75, +0x3d,0x51,0xfb,0x22,0x7b,0xa8,0xeb,0x6f,0x5e,0x62,0x8f,0x82, +0x37,0x09,0x5f,0xd2,0x9e,0x68,0x4f,0xb2,0x27,0x4b,0x7f,0xd1, +0xbe,0x14,0xde,0xe1,0x4c,0x7b,0x96,0x5d,0x65,0xcf,0x76,0xfd, +0x3e,0xf8,0x6c,0xf6,0x42,0x7b,0x89,0x7d,0x93,0x93,0xe3,0xe4, +0x3a,0x01,0xc7,0x72,0x6c,0x27,0xec,0x30,0xe9,0xd1,0x3b,0xf9, +0x4e,0x91,0x53,0xec,0xd4,0x75,0x1a,0x3b,0x2d,0x9d,0xf6,0x4e, +0x37,0x58,0x6e,0x69,0xbf,0xc7,0x39,0xe3,0x9d,0x09,0xce,0x44, +0x67,0x92,0x33,0xd9,0x99,0xe2,0x4c,0x75,0xa6,0x39,0x97,0x3a, +0xd3,0x9d,0x19,0xce,0x4c,0xe7,0x32,0x67,0x96,0x53,0xe5,0x9c, +0x74,0xed,0x76,0x1a,0x2c,0x38,0xec,0x36,0xac,0xb7,0x1d,0xee, +0x1a,0xee,0x06,0xab,0x5d,0x05,0xeb,0x3d,0x27,0x7c,0x6d,0x78, +0x41,0xf8,0x86,0xf0,0xe2,0xf0,0x8d,0xe1,0x5b,0xc2,0x77,0x86, +0x57,0x86,0xd7,0x84,0xd7,0x89,0xdd,0xe2,0x43,0xb1,0x07,0xf1, +0xe2,0x3e,0xf1,0x99,0xf8,0x5c,0x7c,0x09,0xbf,0xf0,0x1b,0x71, +0x50,0x7c,0x2b,0x7e,0x14,0x3f,0x89,0x9f,0xc5,0x2f,0xe2,0x57, +0xf1,0xbb,0x38,0x29,0x4e,0x8b,0x33,0xe2,0x0f,0x71,0x56,0xfc, +0x29,0xce,0x89,0xf3,0x11,0x12,0xa1,0x11,0x23,0x12,0x1b,0xa9, +0x15,0x81,0x19,0x8f,0x24,0x46,0x6a,0x47,0x92,0x23,0xa9,0x91, +0x80,0xfb,0x0d,0x10,0x19,0x81,0xd3,0x70,0x8a,0x79,0xa4,0xd6, +0xbe,0x5a,0x07,0x6a,0x1d,0xa9,0x75,0xac,0xd6,0xa9,0x78,0x12, +0x1f,0x1f,0x9f,0x16,0xef,0x8b,0xb7,0xe3,0xf3,0xe2,0x4b,0xe3, +0x2b,0xe2,0x5b,0xc5,0x77,0x02,0xbe,0x0f,0x06,0xbe,0x4f,0x03, +0xb6,0x2f,0x88,0x5f,0x0a,0x34,0x5f,0x15,0xbf,0x2e,0x7e,0x63, +0xfc,0xe6,0xf8,0x6d,0xf1,0x2f,0xc7,0xbf,0x15,0xbf,0x3b,0x7e, +0x5f,0xfc,0x01,0xa0,0xfa,0xf1,0xf8,0x33,0x09,0x06,0x90,0x3c, +0x23,0x21,0x90,0xc0,0x12,0x8a,0x12,0xca,0x13,0x9a,0x25,0xb4, +0x4b,0xe8,0x9a,0xd0,0x37,0x61,0x48,0xc2,0xa8,0x84,0x49,0xc0, +0xf1,0xb9,0x09,0x0b,0x12,0x96,0x26,0xdc,0x9e,0xb0,0x2a,0x61, +0x5d,0xc2,0xc6,0x84,0xcd,0x09,0xdb,0x80,0xd9,0x6f,0x01,0xaf, +0xf7,0x01,0x9f,0x8f,0x24,0x9c,0x48,0x38,0x07,0x74,0x4e,0x49, +0xf4,0x25,0xda,0x89,0x05,0x89,0xf5,0x13,0x9b,0x24,0xb6,0x49, +0xac,0x4c,0xec,0x9d,0x38,0x18,0xb8,0x3c,0x29,0x71,0x66,0xe2, +0xdc,0xc4,0x05,0xc0,0xe4,0xdb,0x13,0x57,0x25,0xae,0x03,0x06, +0x6f,0x4e,0xdc,0x96,0xf8,0x72,0xe2,0x5b,0x40,0xde,0x7d,0x89, +0x07,0x80,0xb8,0xc7,0x13,0xcf,0x00,0x67,0x13,0x81,0xb2,0xb9, +0xb5,0xc3,0xb5,0x0b,0x80,0xb0,0x15,0x40,0xd7,0x0e,0xc0,0xd6, +0xfe,0xb5,0x87,0xd4,0x1e,0x01,0x44,0x9d,0x56,0xbb,0x0a,0x38, +0xba,0xb0,0xf6,0x32,0xa0,0xe8,0xdd,0xb5,0x57,0xd7,0x5e,0x0f, +0x1c,0xdd,0x52,0x7b,0xbb,0x8b,0x9d,0xbb,0x6b,0xef,0xab,0xfd, +0x55,0xed,0xc3,0xb5,0x8f,0xd6,0xfe,0xad,0xf6,0x99,0x24,0x92, +0x14,0x07,0xf4,0xcc,0x02,0x7a,0x86,0x93,0xf2,0x92,0xea,0x26, +0x95,0x03,0x3b,0x5b,0x25,0x75,0x48,0xea,0x9a,0xd4,0x3b,0x69, +0x60,0xd2,0xb0,0xa4,0x51,0xc0,0xcc,0x69,0x49,0xb3,0x92,0xe6, +0x26,0x5d,0x03,0xc4,0x5c,0x96,0x74,0x7b,0xd2,0xdd,0x49,0xab, +0x93,0xd6,0x27,0x6d,0x4c,0x7a,0x22,0x69,0x6b,0xd2,0x8e,0xa4, +0x9d,0x49,0xbb,0x92,0xf6,0x02,0x21,0x0f,0x03,0x21,0x4f,0x25, +0x13,0xe0,0x63,0x5a,0x72,0x6e,0x72,0x38,0xb9,0x20,0xb9,0x3e, +0x90,0xb1,0x4d,0x72,0xd7,0xe4,0xbe,0xc9,0x43,0x92,0x47,0x25, +0x4f,0x4a,0x9e,0x99,0x3c,0x37,0x79,0x41,0xf2,0xd2,0xe4,0xdb, +0x93,0xe1,0x9d,0x27,0x6f,0x04,0x0e,0x6e,0x03,0x0a,0xbe,0x05, +0x04,0xdc,0x97,0x7c,0x20,0xf9,0x48,0xf2,0xf1,0xe4,0x33,0x29, +0x46,0x4a,0x22,0x70,0x30,0x90,0xc2,0x80,0x7e,0xe5,0x29,0xcd, +0x52,0xda,0xa5,0x74,0x4d,0xe9,0x9b,0x32,0x24,0x65,0x54,0xca, +0xa4,0x94,0x99,0x29,0x73,0x53,0x16,0xa4,0x2c,0x4d,0xb9,0x3d, +0x65,0x55,0xca,0x3a,0x20,0xdf,0xe6,0x94,0x6d,0x29,0x2f,0xa7, +0xbc,0x95,0xb2,0x3b,0x65,0x5f,0xca,0x81,0x94,0x23,0x29,0xc7, +0x53,0xce,0xa4,0x1a,0xc0,0xbd,0x8c,0xd4,0x40,0x2a,0x03,0xea, +0x95,0x03,0xf3,0xda,0xa5,0x76,0x05,0xe6,0x0d,0x49,0x1d,0x95, +0x3a,0x29,0x75,0x66,0xea,0x5c,0xe0,0xdd,0xd2,0xd4,0xdb,0x53, +0x57,0xa5,0xae,0x4b,0xdd,0x98,0xba,0xd9,0xc5,0xb8,0xd7,0x53, +0xdf,0x49,0xdd,0x9d,0xba,0x0f,0x98,0x76,0x28,0xf5,0xc7,0xd4, +0xe3,0xa9,0xa7,0x52,0xcf,0x21,0x26,0x4e,0x4c,0x4b,0x4b,0xf3, +0xa5,0x85,0xd2,0x58,0x5a,0x41,0x5a,0x69,0x5a,0xc3,0xb4,0x66, +0x69,0x6d,0xd2,0x3a,0xa5,0x75,0x4f,0xeb,0x9b,0x36,0x38,0x6d, +0x78,0xda,0x98,0xb4,0x49,0x69,0xd3,0xd3,0xaa,0xd2,0xe6,0x01, +0xf7,0x16,0xa7,0xdd,0x9c,0xb6,0x3c,0x6d,0x55,0xda,0xda,0xb4, +0x07,0xd3,0x36,0xa5,0x6d,0x4e,0xdb,0x9a,0xf6,0x62,0xda,0xab, +0x69,0x6f,0xa5,0xed,0x4a,0xfb,0x38,0xed,0xb3,0xb4,0x03,0x69, +0x87,0xd3,0x8e,0xa6,0xfd,0x96,0x76,0x26,0x9d,0xa4,0xc7,0xa5, +0x27,0xa5,0x67,0xa4,0xe7,0xa6,0x23,0x68,0x4f,0x2f,0x4a,0xaf, +0x9f,0x5e,0x91,0xde,0x2a,0xbd,0x43,0x7a,0xd7,0xf4,0xde,0xe9, +0x03,0xd3,0x87,0xa5,0x8f,0x4a,0x9f,0x90,0x3e,0x2d,0x7d,0x56, +0xfa,0xdc,0xf4,0x6b,0xd2,0x17,0xa5,0x2f,0x4b,0xbf,0x3d,0xfd, +0xee,0xf4,0xd5,0xe9,0xeb,0xd3,0x37,0xa6,0x3f,0x91,0xfe,0x4c, +0xfa,0xf6,0xf4,0x97,0xd3,0x77,0xa6,0xbf,0x97,0xbe,0x07,0x38, +0xfa,0x55,0xfa,0xa1,0xf4,0x1f,0xd3,0x8f,0xa7,0x9f,0x4a,0x3f, +0x97,0x11,0x93,0x91,0x98,0x91,0x96,0xe1,0xcb,0x08,0x65,0xb0, +0x8c,0x82,0x8c,0xd2,0x8c,0x86,0x19,0xcd,0x32,0xda,0x64,0x74, +0xca,0xe8,0x9e,0xd1,0x37,0x63,0x70,0xc6,0xf0,0x8c,0x31,0x19, +0x93,0x32,0xa6,0x67,0x54,0x65,0xcc,0x03,0xe6,0x2e,0xce,0xb8, +0x39,0x63,0x79,0xc6,0xaa,0x8c,0xb5,0x19,0x0f,0x66,0x6c,0xca, +0xd8,0x9c,0xb1,0x35,0xe3,0xc5,0x8c,0x57,0x33,0xde,0xca,0xd8, +0x95,0xf1,0x71,0xc6,0x67,0x19,0x07,0x32,0x0e,0x67,0x1c,0xcd, +0xf8,0x2d,0xe3,0x4c,0x26,0xc9,0x8c,0xcb,0x4c,0xca,0xcc,0xc8, +0xcc,0xcd,0xb4,0x33,0x45,0x66,0x51,0x66,0xfd,0xcc,0x8a,0xcc, +0x16,0x99,0xed,0x32,0x2b,0x33,0x7b,0x66,0xf6,0xcf,0x1c,0x92, +0x39,0x22,0x73,0x5c,0xe6,0x94,0xcc,0x99,0x99,0x73,0x32,0xe7, +0x67,0x2e,0xcc,0x5c,0x9a,0x79,0x6b,0xe6,0x0a,0xe0,0xf7,0xba, +0xcc,0x0d,0x99,0x8f,0x65,0x6e,0xc9,0xdc,0x96,0xb9,0x23,0xf3, +0xf5,0xcc,0x77,0x32,0xf7,0x64,0x7e,0x96,0x79,0x30,0xf3,0x48, +0xe6,0xb1,0xcc,0x13,0x99,0x67,0xb3,0x8c,0xac,0xf8,0xac,0x94, +0xac,0xac,0xac,0x40,0x56,0x18,0x08,0x5f,0x9a,0xd5,0x30,0xab, +0x59,0x56,0x9b,0xac,0x4e,0x59,0xdd,0xb3,0xfa,0x66,0x0d,0xce, +0x1a,0x9e,0x35,0x26,0x6b,0x52,0xd6,0xf4,0xac,0xaa,0xac,0x79, +0x59,0x0b,0xb2,0x16,0x67,0xdd,0x9c,0xb5,0x3c,0x6b,0x55,0xd6, +0xda,0xac,0x07,0xb3,0x36,0x65,0x6d,0xce,0xda,0x9a,0xf5,0x62, +0xd6,0xab,0x59,0x6f,0x65,0xed,0xca,0xfa,0x38,0xeb,0xb3,0xac, +0x03,0x59,0x87,0xb3,0x8e,0x66,0xfd,0x96,0x75,0x06,0xd6,0x21, +0x2e,0x3b,0x29,0x3b,0x23,0x3b,0x37,0xdb,0xce,0x16,0xd9,0x45, +0xd9,0xf5,0x61,0x2d,0x5a,0x64,0xb7,0xcb,0xae,0xcc,0xee,0x99, +0xdd,0x3f,0x7b,0x48,0xf6,0x88,0xec,0x71,0xd9,0x53,0x60,0x3b, +0xe6,0x64,0xcf,0xcf,0x5e,0x98,0xbd,0x34,0xfb,0xd6,0xec,0x15, +0xd9,0xf7,0x66,0xaf,0xcb,0xde,0x90,0xfd,0x58,0xf6,0x96,0xec, +0x6d,0xd9,0x3b,0xb2,0x5f,0xcf,0x7e,0x27,0x7b,0x77,0xf6,0xde, +0xec,0x2f,0xb2,0x0f,0x66,0x1f,0xc9,0x3e,0x96,0x7d,0x22,0xfb, +0xac,0xcf,0xf0,0xc5,0xfb,0x52,0x7c,0x59,0xbe,0x80,0x2f,0xec, +0xcb,0xf3,0xd5,0xf5,0x95,0xfb,0x9a,0xf8,0x5a,0xf9,0x3a,0xf8, +0xba,0xfa,0x7a,0xfb,0x06,0xfb,0x46,0xf8,0xc6,0xf9,0xa6,0xf8, +0x66,0xfa,0xe6,0xf8,0xe6,0xfb,0x16,0xfa,0x96,0xfa,0x6e,0xf5, +0xad,0xf0,0xdd,0xeb,0x5b,0xe7,0xdb,0xe0,0x7b,0xcc,0xb7,0xc5, +0xb7,0xcd,0xb7,0xc3,0xf7,0xba,0xef,0x1d,0xdf,0x6e,0xdf,0x5e, +0xdf,0x17,0xbe,0x43,0xbe,0xa3,0xbe,0xdf,0x7c,0x67,0x72,0x48, +0x4e,0x7c,0x4e,0x5a,0x8e,0x2f,0xc7,0xce,0x11,0x39,0x45,0x39, +0xf5,0x73,0x2a,0x72,0x5a,0xe4,0xb4,0xcb,0xa9,0xcc,0xe9,0x99, +0xd3,0x3f,0x67,0x58,0xce,0x18,0x58,0xae,0xe9,0x39,0x73,0x72, +0xe6,0xe7,0x2c,0xcc,0x59,0x96,0xb3,0x3c,0x67,0x55,0xce,0xba, +0x9c,0x8d,0x39,0x9b,0x73,0xb6,0xe5,0xbc,0x0c,0x3b,0xb6,0x2b, +0xe7,0xe3,0x9c,0x2f,0x72,0x0e,0xe5,0x1c,0xcd,0x39,0x91,0x73, +0x2e,0x37,0x2e,0x37,0x25,0xd7,0x97,0x1b,0xca,0x65,0xb9,0x05, +0xb9,0xa5,0xb9,0x0d,0x73,0x9b,0xe5,0xb6,0xc9,0xed,0x94,0xdb, +0x35,0xb7,0x67,0x6e,0xdf,0xdc,0xc1,0xb9,0xc3,0x73,0xc7,0xe4, +0x4e,0xca,0x9d,0x9e,0x5b,0x95,0x3b,0x2f,0x77,0x41,0xee,0xe2, +0xdc,0x9b,0x73,0x97,0xe7,0xae,0xca,0x5d,0x9b,0xbb,0x3e,0x77, +0x43,0xee,0xa6,0xdc,0x27,0x60,0x05,0xb7,0xe6,0xee,0xc8,0x7d, +0x3d,0xf7,0x9d,0xdc,0xdd,0xb9,0x7b,0x73,0xbf,0x80,0x35,0x3c, +0x92,0x7b,0x2c,0xf7,0x44,0xee,0x59,0xbf,0xe1,0x8f,0xf7,0xa7, +0xf8,0xb3,0xfc,0x01,0x7f,0xd8,0x9f,0xe7,0xaf,0xeb,0x2f,0xf7, +0x37,0xf1,0xb7,0xf2,0x77,0xf0,0x77,0xf5,0xf7,0xf6,0x0f,0xf4, +0x0f,0xf3,0x8f,0xf2,0x4f,0x80,0xad,0x9c,0xe5,0x9f,0xeb,0xbf, +0xc6,0xbf,0x08,0x16,0xf3,0x76,0xff,0xdd,0xfe,0xd5,0xfe,0xf5, +0xfe,0x8d,0xfe,0x27,0xfc,0xcf,0xf8,0xb7,0xfb,0x5f,0xf6,0xef, +0xf4,0xbf,0x07,0x2b,0xba,0xcf,0xff,0x95,0xff,0x90,0xff,0x47, +0xff,0x71,0xff,0x29,0xff,0xb9,0x40,0x4c,0x20,0x31,0x90,0x16, +0xf0,0x05,0x42,0x01,0x16,0x28,0x08,0x94,0x06,0x1a,0x06,0x9a, +0x04,0x5a,0x05,0xda,0x05,0x2a,0x03,0xdd,0x03,0x7d,0x03,0x03, +0x03,0xc3,0x02,0x23,0x02,0x63,0x02,0x13,0x02,0x53,0x02,0xd3, +0x03,0xb3,0x02,0x73,0x02,0xf3,0x02,0xd7,0x04,0x16,0x06,0x16, +0x07,0x96,0x05,0x6e,0x0d,0x2c,0x0f,0xdc,0x1d,0xb8,0x37,0xb0, +0x36,0xb0,0x3e,0xb0,0x21,0xb0,0x29,0xf0,0x44,0x60,0x4b,0x60, +0x6b,0x60,0x7b,0x60,0x47,0xe0,0xf5,0xc0,0x5b,0x81,0xf7,0x02, +0xbb,0x03,0x1f,0x07,0xf6,0x05,0xbe,0x08,0x1c,0x08,0x1c,0x0a, +0x1c,0x09,0x1c,0x0d,0x1c,0x0f,0x9c,0x08,0x9c,0x09,0x9c,0x0b, +0x1a,0xb0,0xd8,0x89,0xc1,0x94,0x60,0x46,0xd0,0x07,0xcb,0x6d, +0x07,0x59,0x30,0x2f,0x58,0x14,0x2c,0x0d,0x96,0x07,0x2b,0x82, +0xcd,0x82,0xad,0x82,0xed,0x82,0x95,0xc1,0xee,0xc1,0xbe,0xc1, +0x81,0xc1,0x61,0xc1,0x11,0xc1,0x31,0xc1,0x09,0xc1,0x29,0xc1, +0xe9,0xc1,0x59,0xc1,0xb9,0xc1,0xf9,0xc1,0x05,0xc1,0x45,0xc1, +0xa5,0xc1,0x9b,0x83,0xcb,0x83,0x77,0x07,0x57,0x07,0xd7,0x05, +0x37,0x04,0x37,0x05,0x37,0x07,0x9f,0x09,0x6e,0x0f,0xee,0x08, +0xbe,0x1a,0xdc,0x09,0x1f,0x60,0x57,0x70,0x4f,0x70,0x6f,0xf0, +0xb3,0xe0,0x57,0xc1,0x83,0xc1,0xc3,0xc1,0x1f,0x83,0xc7,0x82, +0xbf,0x05,0x4f,0x05,0xcf,0x86,0x48,0x28,0x26,0x14,0x1f,0x4a, +0x0a,0xa5,0x85,0xb2,0x42,0xb9,0xa1,0x50,0x28,0x1c,0xca,0x0b, +0x15,0x85,0x4a,0x43,0xe5,0xa1,0x8a,0x50,0xb3,0x50,0xab,0x50, +0xbb,0x50,0xa7,0x50,0xd7,0x50,0xcf,0x50,0xdf,0xd0,0xc0,0xd0, +0x90,0xd0,0xf0,0xd0,0xa8,0xd0,0xb8,0xd0,0xa4,0xd0,0xb4,0xd0, +0xcc,0x50,0x55,0x68,0x6e,0x68,0x3e,0x3c,0x8a,0x45,0xa1,0xa5, +0xa1,0x9b,0x43,0xb7,0x87,0x56,0x84,0x56,0x85,0x56,0xc3,0xbb, +0xd8,0x10,0xda,0x14,0xda,0x1c,0x7a,0x26,0xb4,0x3d,0xb4,0x23, +0xf4,0x6a,0x68,0x67,0xe8,0x9d,0xd0,0xae,0xd0,0x9e,0xd0,0xbe, +0xd0,0x17,0xa1,0x03,0xa1,0x43,0xa1,0x23,0xa1,0xa3,0xa1,0xe3, +0xa1,0x53,0xa1,0x73,0x96,0x61,0xc5,0x5b,0x69,0x96,0xcf,0x0a, +0x59,0x61,0x2b,0xcf,0xaa,0x6b,0x95,0x5b,0x4d,0xac,0x76,0x56, +0xa5,0xd5,0xd3,0xea,0x6f,0x0d,0xe9,0x71,0xab,0x35,0xdc,0x1a, +0x63,0x4d,0xb2,0xa6,0x5b,0x55,0xd6,0x3c,0x6b,0x81,0xb5,0xd8, +0xba,0xd9,0x5a,0x6e,0xad,0xb2,0xd6,0xc2,0x4f,0xd9,0x64,0x6d, +0xb6,0xb6,0x5a,0x2f,0x5a,0xaf,0x5a,0x6f,0x59,0xbb,0xe0,0x99, +0x7c,0x06,0xaf,0xe4,0x30,0x3c,0x91,0xdf,0xac,0x33,0x36,0x81, +0xe7,0x91,0x04,0x8f,0x23,0xd7,0xb6,0xe1,0x67,0x14,0xc1,0xbf, +0xa8,0x80,0x6f,0xd1,0xce,0xae,0xb4,0x7b,0xda,0xfd,0xed,0x21, +0xf6,0x08,0x78,0x0f,0x53,0xe0,0x2f,0xcc,0xb1,0xe7,0xc3,0x4b, +0x58,0x6a,0xdf,0x6a,0xaf,0xb0,0xef,0xb5,0xd7,0xd9,0x1b,0xec, +0xc7,0xec,0x2d,0xf6,0x36,0x7b,0x87,0xfd,0xba,0xfd,0x8e,0xbd, +0xdb,0xde,0x6b,0x7f,0x61,0x1f,0xb4,0x8f,0xd8,0xc7,0xec,0x13, +0xf6,0x19,0x87,0x38,0x71,0x4e,0x92,0x93,0x01,0x7f,0xc2,0x76, +0x04,0x7c,0x88,0xfa,0x4e,0x85,0xd3,0xc2,0x69,0xe7,0x54,0xc2, +0x7b,0xe8,0xeb,0x0c,0x76,0x86,0x3b,0x63,0xe0,0x41,0x4c,0x83, +0xb7,0x30,0xc7,0x99,0xe7,0x2c,0x70,0x16,0x39,0x4b,0x9d,0x5b, +0x9d,0xe5,0xce,0x2a,0x67,0xb5,0xf3,0xa0,0xf3,0x98,0xb3,0xc5, +0xd9,0xea,0xbc,0xe8,0xbc,0xea,0xbc,0xe5,0xec,0x72,0x3e,0x76, +0x3e,0x73,0x0e,0x38,0x47,0x9c,0x63,0xce,0x09,0xe7,0x6c,0xd8, +0x08,0xc7,0x13,0xd3,0xb8,0x82,0x7c,0xc7,0xd2,0x50,0x2e,0x20, +0x87,0x59,0x3a,0x31,0x9c,0xce,0x2c,0x03,0xbf,0xde,0x21,0x47, +0x58,0x26,0xca,0x9d,0xe4,0x07,0x96,0x85,0xf2,0x6d,0xf2,0x23, +0xcb,0x46,0xf9,0x2e,0xf9,0x89,0xf9,0x70,0x54,0x27,0x96,0x83, +0x5f,0xeb,0xc8,0xcf,0x2c,0x17,0xe5,0xfd,0xe4,0x18,0xf3,0xa3, +0x7c,0x8f,0xfc,0xc2,0xe0,0x35,0x18,0x5b,0xc8,0x71,0x16,0x44, +0x39,0x8f,0xfc,0xca,0x42,0x28,0x57,0x90,0xdf,0x98,0x85,0xf2, +0x2a,0xf2,0x3b,0xb3,0x49,0x0c,0x99,0x60,0xdc,0x45,0x4e,0x30, +0x87,0xc4,0x9a,0x49,0xe4,0x24,0x0b,0x93,0x43,0x11,0x87,0xc4, +0x98,0xc9,0xe4,0x14,0xab,0x43,0xe4,0x3a,0x91,0x14,0x72,0x9a, +0x31,0xf2,0x0f,0x6c,0xa5,0x92,0x33,0x8c,0x93,0xd5,0xc4,0x34, +0xd3,0xc8,0x1f,0x4c,0xa0,0x4c,0x27,0x67,0x59,0x04,0x65,0x06, +0xf9,0x93,0xe5,0xa1,0xcc,0x24,0xe7,0x58,0x3e,0xca,0x2c,0x72, +0x9e,0x15,0xa0,0xcc,0xa6,0x84,0x15,0xe2,0x5e,0x57,0x53,0xca, +0x8a,0x50,0x5e,0x43,0x0d,0x56,0x8c,0xf2,0x79,0x6a,0xb2,0xba, +0x28,0x9f,0xa3,0x31,0xac,0x04,0xe5,0x76,0x1a,0xcb,0x4a,0x51, +0x5e,0x4b,0xe3,0x58,0x3d,0x94,0xef,0xd3,0x5a,0xac,0x3e,0xce, +0xf7,0xd1,0x78,0x56,0x86,0x32,0x87,0x26,0xb0,0x72,0x94,0xb9, +0x34,0x91,0x35,0x40,0xe9,0xa7,0xb5,0x59,0x43,0x94,0x01,0x9a, +0xc4,0x1a,0xa1,0x0c,0xd2,0x64,0x56,0x81,0x32,0x44,0x53,0x58, +0x63,0x94,0x16,0x4d,0x65,0x4d,0x50,0xda,0x34,0x8d,0x35,0x45, +0xe9,0xd0,0x74,0xd6,0x0c,0x65,0x98,0x66,0xb0,0xe6,0x28,0xeb, +0xd0,0x4c,0xd6,0x02,0x25,0xa3,0x59,0xac,0x25,0x4a,0x4e,0xb3, +0x59,0x2b,0x94,0x82,0xfa,0x58,0x6b,0x94,0x11,0x9a,0xc3,0xda, +0xa0,0xcc,0xa3,0xb9,0xac,0x2d,0xca,0x7c,0xea,0x67,0xed,0x50, +0x16,0xd0,0x00,0x6b,0x8f,0xb2,0x90,0x06,0x59,0x07,0x94,0x45, +0x34,0xc4,0x3a,0xa2,0x2c,0xa6,0x16,0xeb,0x84,0xb2,0x2e,0xb5, +0x59,0x67,0x94,0x25,0xd4,0x61,0x95,0x28,0x4b,0x69,0x98,0x75, +0x41,0x59,0x8f,0xd6,0x61,0x72,0xad,0xd2,0x83,0x94,0xb1,0x6e, +0x28,0xdf,0xa0,0x9c,0x75,0x47,0xf9,0x10,0x15,0xac,0x07,0xca, +0xc5,0x34,0xc2,0x7a,0xa2,0x5c,0x4a,0xf3,0x58,0x2f,0x94,0x8b, +0xe8,0x22,0xd6,0x1b,0x3d,0x52,0x9f,0x16,0xb0,0x3e,0x64,0x59, +0x04,0xfd,0x66,0x96,0xd1,0x42,0xd6,0x17,0x65,0x39,0x2d,0x62, +0xfd,0x50,0x36,0xa0,0xc5,0xac,0x3f,0xca,0x86,0xb4,0x2e,0x1b, +0x80,0xb2,0x11,0x2d,0x61,0x03,0xd1,0x4b,0x15,0xb4,0x94,0x0d, +0x8a,0xa0,0x87,0xcd,0xc6,0xb4,0x1e,0x1b,0x8c,0xb2,0x09,0xad, +0xcf,0x2e,0x42,0xd9,0x94,0x96,0xb1,0x21,0x28,0x9b,0xd1,0x72, +0x36,0x14,0x65,0x73,0xda,0x80,0x0d,0x43,0xd9,0x82,0x36,0x64, +0x17,0xa3,0x6c,0x49,0x1b,0xb1,0xe1,0xb8,0x42,0x2b,0x5a,0xc1, +0x2e,0x21,0xb7,0x62,0x4f,0x6b,0xda,0x98,0x8d,0x40,0xd9,0x86, +0x36,0x61,0x23,0x51,0xb6,0xa5,0x4d,0xd9,0x28,0x94,0xed,0x68, +0x33,0x36,0x1a,0x65,0x7b,0xda,0x9c,0x8d,0x41,0xd9,0x81,0xb6, +0x60,0x63,0x51,0x76,0xa4,0x2d,0xd9,0x38,0x94,0x9d,0x68,0x2b, +0x36,0x1e,0x65,0x67,0xda,0x9a,0x4d,0x40,0x59,0x49,0xdb,0xb0, +0x89,0x28,0xbb,0xd0,0xb6,0x6c,0x12,0xda,0xb7,0x81,0xb6,0x63, +0x93,0x89,0xe9,0x74,0xa4,0xed,0xd9,0x14,0xfc,0x7e,0x98,0x76, +0x60,0x53,0x51,0xae,0x34,0x66,0xb3,0x69,0x28,0xd7,0x90,0xa3, +0xec,0x52,0x94,0x77,0xb3,0x54,0x36,0x1d,0xe5,0x6a,0x9a,0xcf, +0x66,0xa0,0xbc,0x07,0xc7,0xcf,0x54,0xc7,0x5d,0x46,0x0c,0x63, +0x0c,0x9b,0x85,0x5f,0x6f,0x1a,0x23,0xd8,0xe5,0x28,0xdf,0x32, +0x46,0xb2,0x2a,0x94,0x72,0x3c,0xcf,0xc6,0x7f,0x77,0xb1,0x2b, +0xf0,0x6b,0x2d,0x3d,0xc9,0xae,0xc4,0xaf,0x4d,0x6c,0x1e,0x7e, +0x6d,0xc4,0xc8,0xbb,0x0a,0xe5,0x23,0x18,0x71,0xf3,0x51,0xde, +0x69,0x18,0xec,0x5a,0x62,0x98,0xf1,0x6c,0x01,0x78,0x02,0xbb, +0x0e,0xfb,0xe6,0xd3,0x6e,0x6c,0x21,0x7e,0x25,0xb2,0xeb,0xd5, +0xaf,0x45,0x4a,0x7f,0x6e,0x20,0x46,0x78,0x30,0x5b,0x8c,0x5f, +0xf7,0x91,0xef,0xd9,0x12,0x5c,0xf5,0x51,0xb6,0x14,0xfc,0x5e, +0x76,0x23,0x8e,0x8f,0x61,0xcb,0xb0,0x3d,0x96,0xdd,0x84,0xff, +0x5f,0x4f,0x7f,0x67,0x37,0xab,0x9e,0xbd,0x05,0xe5,0x12,0xda, +0x91,0x41,0xa2,0xc6,0x0d,0xf4,0x04,0xbb,0x43,0xdd,0x77,0x25, +0x8e,0x1e,0xca,0x1e,0xc0,0xaf,0xa7,0xf1,0xeb,0x41,0x68,0xf2, +0x95,0xec,0x21,0x48,0xa5,0x92,0xa5,0xb0,0x0d,0xf8,0x35,0x8f, +0x3d,0x8c,0x23,0x5e,0x61,0x1b,0xc1,0x9f,0x61,0x8f,0x10,0x23, +0xc6,0xc7,0x1e,0xc3,0xfe,0xd3,0xec,0x09,0x1c,0x75,0xca,0x18, +0xc7,0x9e,0xc4,0x7f,0x06,0xb1,0x67,0xc1,0x2f,0x66,0xf2,0x1d, +0xd8,0xe1,0xec,0x15,0xf0,0xf1,0x6c,0x27,0xf8,0xb3,0xec,0x4d, +0xf0,0x09,0xec,0x5d,0xf0,0xcb,0xd8,0x2e,0xf0,0x2a,0xf6,0x01, +0xf8,0x34,0xb6,0x1b,0x7c,0x22,0xdb,0x03,0x3e,0x8c,0x7d,0x0c, +0x3e,0x8b,0x7d,0x02,0x7e,0x11,0xdb,0x0b,0x7e,0x29,0xfb,0x14, +0x7c,0x12,0xdb,0x07,0x3e,0x84,0x7d,0x06,0x3e,0x9d,0x7d,0x0e, +0x3e,0x99,0x7d,0x01,0x7e,0x09,0xfb,0x0a,0x7c,0x14,0x3b,0x00, +0x3e,0x83,0x7d,0x03,0x3e,0x85,0x7d,0x0b,0xbe,0x95,0x1d,0x02, +0x1f,0xcc,0xbe,0x03,0x1f,0xcd,0x0e,0x83,0xcf,0x64,0xdf,0x83, +0x4f,0x65,0x47,0x54,0xdb,0x7f,0x21,0x66,0x58,0x18,0x73,0xd8, +0xef,0x2e,0xca,0x51,0x76,0xc2,0x45,0x39,0x83,0x9d,0x74,0x65, +0x39,0x97,0x9d,0x72,0x71,0x2e,0x86,0x9d,0x76,0x71,0x2e,0x96, +0x9d,0x71,0x71,0x2e,0x8e,0xfd,0xe1,0xe2,0x5c,0x2d,0x76,0xd6, +0x1d,0x15,0x23,0xd8,0x9f,0x2e,0xd2,0x25,0xb0,0x73,0x2e,0xd2, +0x25,0xb2,0xf3,0x2e,0xd2,0xd5,0xe6,0xc4,0x45,0xba,0x24,0x4e, +0xdd,0x9e,0x9a,0xc3,0x0d,0x17,0xe9,0x52,0xb8,0xe9,0x22,0x5d, +0x2a,0x8f,0x71,0xc7,0xc5,0x04,0x1e,0x8b,0xf1,0x9d,0x44,0xd2, +0x79,0x9c,0x31,0x07,0xe3,0x31,0x99,0x64,0xf0,0x5a,0x28,0x53, +0x48,0x26,0x07,0xfe,0x02,0xe1,0xb2,0x78,0x82,0x8b,0x6f,0xd9, +0x3c,0xd1,0xc5,0x37,0x1f,0xaf,0xed,0xe2,0x5b,0x0e,0x4f,0x72, +0xf1,0x2d,0x97,0x27,0xbb,0xf8,0xe6,0xe7,0x29,0x12,0xdf,0x48, +0x80,0xa7,0x4a,0x7c,0x23,0x41,0x2e,0x71,0xfb,0x1a,0x12,0xe2, +0xe9,0x12,0xdf,0xc8,0x34,0x2e,0x91,0xfb,0x39,0x62,0x73,0x89, +0xdc,0xdb,0xc9,0xa5,0x5c,0x22,0xf7,0xb5,0x24,0xcc,0x25,0x72, +0xbf,0x4f,0xea,0x70,0x9f,0xc4,0x37,0xc2,0x78,0x8e,0xc4,0x37, +0xc2,0x79,0xae,0xc4,0x37,0x22,0xb8,0x5f,0xe2,0x1b,0x89,0xf0, +0x80,0xc4,0x37,0x92,0xc7,0x83,0x12,0xdf,0x48,0x3e,0x97,0x18, +0x10,0x22,0x05,0x5c,0x6a,0xb6,0x45,0x0a,0xb9,0x2d,0xf1,0x8d, +0x14,0x71,0x47,0xe2,0x1b,0x29,0xe6,0x61,0x89,0x6f,0xa4,0x2e, +0xaf,0x23,0xf1,0x8d,0x94,0x70,0x26,0xf1,0x8d,0x94,0x72,0x2e, +0xf1,0x8d,0xd4,0xe3,0x12,0xaf,0x05,0xa9,0xcf,0x25,0x5e,0x47, +0x48,0x19,0x97,0x78,0x9d,0x47,0xca,0xb9,0xc4,0xeb,0x7c,0xd2, +0x80,0x4b,0xbc,0x2e,0x20,0x0d,0x79,0xa1,0xc4,0x37,0xd2,0x88, +0x17,0x49,0x7c,0x23,0x15,0xbc,0x58,0xe2,0x1b,0x69,0xcc,0xeb, +0x4a,0x7c,0x23,0x4d,0x78,0x89,0xc4,0x37,0xd2,0x94,0x97,0x4a, +0x7c,0x23,0xcd,0x78,0x3d,0x89,0x6f,0xa4,0x39,0xaf,0x2f,0xf1, +0x8d,0xb4,0xe0,0x65,0x12,0xdf,0x48,0x4b,0x5e,0x2e,0xf1,0x8d, +0xb4,0xe2,0x0d,0xa4,0x16,0x90,0x6b,0x78,0x43,0x89,0x6f,0xa4, +0x0d,0x6f,0x24,0xf5,0x99,0x8c,0xe2,0x12,0xaf,0xeb,0x93,0x76, +0x5c,0xe2,0x75,0x19,0x69,0xcf,0x25,0x5e,0x97,0x93,0x0e,0x5c, +0xe2,0x75,0x03,0xd2,0x91,0x4b,0xbc,0x6e,0x48,0x3a,0x71,0x89, +0xd7,0x8d,0x48,0x67,0x2e,0xf1,0xba,0x82,0x54,0x72,0x89,0xd7, +0x8d,0x49,0x17,0x2e,0xf1,0xba,0x09,0xe9,0xca,0x25,0x5e,0x37, +0x25,0xdd,0xb8,0xc4,0xeb,0x66,0xa4,0x3b,0x97,0x78,0xdd,0x9c, +0xf4,0xe0,0x12,0xaf,0x5b,0x90,0x9e,0x5c,0xe2,0x75,0x4b,0xd2, +0x8b,0x4b,0xbc,0x6e,0x45,0x7a,0x73,0x89,0xd7,0xad,0x49,0x1f, +0x2e,0xf1,0xba,0x0d,0xe9,0xcb,0x25,0x5e,0xb7,0x25,0xfd,0xb8, +0xc4,0xeb,0x76,0xa4,0x3f,0x97,0x78,0xdd,0x9e,0x0c,0xe0,0x5d, +0x25,0xae,0x91,0x81,0xbc,0x9b,0xc4,0x35,0x32,0x88,0x77,0x97, +0xb8,0x46,0x06,0xf3,0x1e,0x12,0xd7,0xc8,0x45,0xbc,0xa7,0xc4, +0x35,0x32,0x84,0xf7,0x92,0xb8,0x46,0x86,0xf2,0xde,0x12,0xd7, +0xc8,0x30,0xde,0x47,0xe2,0x1a,0x19,0xcd,0xfb,0x4a,0x5c,0x23, +0xc3,0x79,0x3f,0xa9,0x01,0xe4,0x00,0xef,0x0f,0x7d,0xb8,0x92, +0x5f,0x05,0xfe,0x18,0x9f,0x0f,0xfe,0x38,0xbf,0x1a,0x7c,0x2e, +0xbf,0x46,0x62,0x0c,0x99,0x2d,0xdf,0xff,0x34,0x8f,0x72,0x89, +0x42,0xff,0xe0,0xd7,0x81,0xaf,0xe1,0x12,0x83,0xee,0xe3,0xd7, +0x83,0xdf,0xcf,0x17,0x81,0x3f,0xc0,0x81,0x3f,0xe6,0x97,0x7c, +0x31,0xf8,0xd7,0x1c,0xe8,0x63,0x7e,0xc3,0x81,0x3e,0xe6,0x4b, +0x1c,0xe8,0x63,0x2c,0xe7,0x40,0x1f,0x73,0x35,0xbf,0x49,0xae, +0xce,0xe0,0x37,0x83,0xaf,0xe3,0xb7,0x80,0xaf,0xe7,0xb7,0x82, +0x3f,0xc8,0x6f,0x93,0xab,0x5b,0xf8,0xed,0xe0,0x0f,0xf3,0x3b, +0xc0,0x1f,0xe1,0xcb,0xc1,0x1f,0xe5,0x77,0x82,0x3f,0xce,0x57, +0xc8,0xef,0x9a,0xf0,0xbb,0xc0,0x9f,0xe2,0x77,0x83,0x3f,0xcd, +0x81,0x4e,0xe6,0xb3,0x7c,0x15,0xf8,0x73,0xfc,0x1e,0xf0,0xe7, +0xf9,0xbd,0xe0,0x2f,0xf0,0x7f,0x80,0xef,0xe0,0x72,0x0d,0xc8, +0xcb,0x7c,0x8d,0x5c,0xd9,0xc1,0xd7,0x82,0xbf,0xce,0xef,0x03, +0x7f,0x83,0xaf,0x03,0xdf,0xc9,0xef,0x07,0x7f,0x93,0xaf,0x97, +0x6b,0x3d,0xf8,0x03,0xe0,0x6f,0xf3,0x07,0xe5,0xca,0x63,0xfe, +0x10,0xf8,0x07,0x1c,0xd8,0x66,0xee,0xe1,0xc0,0x36,0xf3,0x13, +0xbe,0x51,0xae,0x08,0xe5,0xc0,0x36,0x73,0x3f,0xdf,0x24,0xbf, +0x5d,0xc2,0x1f,0x05,0xff,0x9c,0x03,0xe7,0xcc,0x2f,0xf8,0xe3, +0xe0,0x5f,0xf1,0x27,0xe4,0xca,0x49,0x0e,0xac,0x33,0x0f,0xf2, +0xcd,0xe0,0xdf,0xf2,0xa7,0xc0,0x0f,0xf1,0x2d,0xe0,0xdf,0xf1, +0xa7,0xc1,0x0f,0xf3,0x67,0xc0,0xbf,0xe7,0x40,0x42,0xf3,0x07, +0xbe,0x55,0xae,0x62,0xe2,0x12,0x0f,0xaf,0xe3,0xdb,0xc0,0x17, +0xf2,0xe7,0xa5,0x4d,0x25,0x6d,0xf9,0x00,0xfc,0xe7,0x47,0xbe, +0x1d,0xfc,0x27,0xfe,0x02,0xf8,0x11,0x2e,0x57,0xa8,0xfc,0xc2, +0x5f,0x02,0x3f,0xce,0x77,0x80,0x1f,0xe3,0xff,0x04,0xdf,0xc0, +0x5f,0x06,0xdf,0xc8,0xe5,0xca,0x95,0x4d,0xfc,0x55,0xf0,0xc7, +0xf8,0x6b,0xe0,0x4f,0x70,0xb9,0x7e,0x65,0x33,0x7f,0x43,0xae, +0x2e,0xe2,0x40,0x59,0xf3,0x19,0x0e,0x94,0x35,0xb7,0xf2,0xb7, +0xc0,0xb7,0xf1,0xb7,0xc1,0xb7,0xf3,0x77,0xe4,0x5b,0x8f,0x5c, +0xae,0xb5,0xfe,0x27,0x97,0xdf,0x63,0x79,0x85,0xbf,0x0f,0xfe, +0x1a,0x07,0x06,0x9b,0xef,0x70,0x60,0xb0,0xf9,0x2e,0x07,0x06, +0x9b,0xef,0x73,0xb9,0x26,0x74,0x17,0x07,0x12,0x9b,0xbb,0xf9, +0x47,0xe0,0x1f,0x72,0xb9,0x42,0xf6,0x23,0x0e,0x3c,0x36,0x3f, +0xe6,0x72,0xa5,0xd5,0x5e,0x0e,0x3c,0x36,0x3f,0xe5,0xc0,0x63, +0x6b,0xab,0xa8,0x07,0xfe,0x9c,0xa8,0x0f,0xde,0x58,0xb4,0x04, +0x6f,0x22,0x5a,0x81,0x37,0x15,0xad,0xc1,0x9b,0x89,0x36,0xe0, +0xcd,0x45,0x5b,0xf0,0x16,0xa2,0x1d,0x78,0x4b,0xd1,0x1e,0xbc, +0x95,0xe8,0x00,0xde,0x5a,0x74,0x04,0x6f,0x23,0x3a,0x81,0xb7, +0x15,0x9d,0xc1,0xdb,0x89,0x4a,0xf0,0xf6,0xa2,0x0b,0x78,0x07, +0xd1,0x15,0xbc,0xa3,0xe8,0x06,0xde,0x49,0x74,0x07,0xef,0x2c, +0x7a,0x80,0x57,0x8a,0x9e,0xe0,0x5d,0x44,0x2f,0xf0,0xae,0xa2, +0x37,0x78,0x37,0xd1,0x07,0xbc,0xbb,0xe8,0x0b,0xde,0x43,0xf4, +0x03,0xef,0x29,0x30,0xb2,0xad,0x5e,0x02,0xb2,0xb5,0x7a,0x8b, +0x81,0xe0,0x7d,0xc4,0x20,0xf0,0xbe,0x62,0x30,0x78,0x3f,0x71, +0x11,0x78,0x7f,0x31,0x04,0x7c,0x80,0x18,0x0a,0x3e,0x50,0x0c, +0x03,0x1f,0x24,0x2e,0x06,0x1f,0x2c,0x86,0x83,0x5f,0x24,0x2e, +0x01,0x1f,0x22,0x46,0x80,0x0f,0x15,0x23,0xc1,0x87,0x89,0x51, +0xe0,0x17,0x8b,0xd1,0xe0,0xc3,0xc5,0x18,0xf0,0x4b,0xc4,0x58, +0xf0,0x11,0x62,0x1c,0xf8,0x48,0x31,0x1e,0x7c,0x94,0x98,0x00, +0x3e,0x5a,0x4c,0x04,0x1f,0x23,0x26,0x81,0x8f,0x15,0x93,0xc1, +0xc7,0x89,0x29,0xe0,0xe3,0xc5,0x54,0xf0,0x09,0x62,0x1a,0xf8, +0x44,0x71,0x29,0xf8,0x24,0x31,0x1d,0x7c,0xb2,0x98,0x01,0x3e, +0x45,0xcc,0x04,0x9f,0x2a,0xe0,0x43,0x58,0xd3,0xc4,0x2c,0xf0, +0x4b,0xc5,0xe5,0xe0,0xd3,0x45,0x15,0xf8,0x0c,0x01,0xef,0xc1, +0x9a,0x29,0xe6,0x80,0x5f,0x26,0xae,0x00,0x9f,0x25,0xe6,0x82, +0x5f,0x2e,0xe0,0x47,0x58,0x55,0x62,0x1e,0xf8,0x6c,0x01,0x4d, +0xb6,0xe6,0x08,0x68,0xb2,0x75,0x85,0x80,0x26,0x5b,0x73,0xc5, +0x35,0xe0,0x57,0x0a,0xe8,0xb1,0x35,0x4f,0x40,0x8f,0xad,0xab, +0x04,0xf4,0xd8,0x9a,0x2f,0xa0,0xc7,0xd6,0xd5,0x02,0x7a,0x6c, +0x5d,0x23,0xa0,0xc7,0xd6,0xb5,0x02,0x7a,0x6c,0x2d,0x10,0xd2, +0x8f,0xb8,0x9e,0x5c,0xcd,0x07,0x4a,0xbf,0x80,0x2c,0xe4,0x83, +0xa4,0xb7,0x42,0xa6,0xf0,0xc1,0x72,0x35,0x8b,0x28,0x03,0x7f, +0x40,0x94,0x83,0x6f,0x14,0x0d,0xc0,0x1f,0x11,0x0d,0xa5,0x17, +0x23,0x1a,0x49,0xaf,0x43,0x54,0x80,0x3f,0x21,0x1a,0x83,0x3f, +0x29,0x9a,0x80,0x6f,0x16,0x4d,0xc1,0x9f,0x12,0xcd,0xa4,0x37, +0x41,0xee,0x12,0xcd,0x31,0x6a,0xee,0xe1,0xb0,0xdf,0x66,0x57, +0x0e,0xfb,0x6d,0x76,0xe7,0xb0,0xdf,0x66,0x4f,0xfe,0xa5,0xfc, +0x7e,0x14,0x87,0x15,0x37,0xfb,0xf2,0xaf,0xc1,0x97,0x71,0xd8, +0x72,0xf3,0x66,0xfe,0x8d,0xfc,0x3e,0x15,0x3f,0x08,0x3e,0x85, +0xc3,0xa2,0x9b,0xdd,0x38,0x2c,0xba,0xd9,0x83,0xc3,0xa2,0x9b, +0xbd,0xf8,0x61,0xf9,0xae,0x2d,0x87,0x45,0x37,0xfb,0xf1,0x23, +0xe0,0xfd,0xf9,0x0f,0xe0,0x03,0xb9,0x5c,0x95,0x37,0x98,0xff, +0x04,0x3e,0x84,0x1f,0x05,0x1f,0xc6,0x7f,0x06,0x1f,0xce,0x8f, +0x81,0x8f,0xe0,0xf2,0x5b,0x55,0xa3,0xf8,0x71,0xf0,0x31,0xfc, +0x57,0xf0,0x71,0xfc,0x37,0xf0,0x09,0xfc,0x77,0xb9,0xfa,0x92, +0xcb,0x15,0x85,0x53,0xf9,0x49,0xf0,0x4b,0xf9,0x29,0xf0,0x19, +0xfc,0x34,0xf8,0x65,0xfc,0x0c,0xf8,0x2c,0xfe,0x07,0xf8,0xe5, +0xfc,0x2c,0x78,0x15,0xff,0x13,0x7c,0x36,0x3f,0x07,0x3e,0x87, +0x9f,0x07,0xbf,0x52,0x10,0xf0,0xf9,0x42,0xbe,0xc1,0x7a,0xad, +0x30,0xc0,0x17,0x0a,0x13,0xfc,0x06,0x21,0xbf,0xe2,0xb9,0x58, +0xc4,0x82,0x2f,0x11,0x71,0xe0,0x4b,0x45,0x2d,0xf0,0x1b,0x45, +0xbc,0xfc,0x26,0x96,0x48,0x00,0xbf,0x45,0xc8,0x55,0x7e,0xb7, +0x89,0xda,0xe0,0xb7,0x8b,0x24,0xf0,0x3b,0x44,0xb2,0xfc,0xf6, +0xa7,0x48,0x01,0xbf,0x53,0xa4,0x82,0xaf,0x10,0x69,0xe0,0x77, +0x0b,0x44,0x60,0xe6,0xbd,0x22,0x03,0x7c,0xa5,0xc8,0x04,0x5f, +0x25,0xb2,0xc0,0xef,0x12,0xd9,0xe0,0x03,0x04,0x22,0x2f,0x73, +0x90,0xc8,0x01,0xbf,0x48,0xe4,0x82,0x0f,0x15,0x7e,0xf0,0x8b, +0x45,0x00,0xfc,0x12,0x11,0x04,0x1f,0x29,0x42,0xe0,0xa3,0x85, +0x25,0xdf,0xb4,0x15,0x36,0xf8,0x78,0xe1,0x80,0x4f,0x14,0x61, +0xf0,0xc9,0xa2,0x0e,0xf8,0x34,0xc1,0xc0,0xa7,0x0b,0x0e,0x3e, +0x53,0x08,0xf0,0x2b,0x44,0x04,0x7c,0xae,0xc8,0x93,0xeb,0x12, +0x44,0x3e,0xf8,0x55,0xa2,0x00,0xfc,0x6a,0x51,0x08,0x7e,0x8d, +0x28,0x02,0x5f,0x20,0x8a,0xc1,0xaf,0x13,0x75,0xc1,0xaf,0x17, +0x25,0xe0,0x8b,0x44,0x29,0x31,0xc8,0x06,0x0e,0x6d,0x23,0x7b, +0xb9,0xfc,0x96,0xf0,0x9b,0x1c,0xda,0x46,0xde,0xe5,0xd0,0x36, +0xb2,0x82,0x43,0xdb,0xc8,0x1b,0x1c,0xda,0x46,0x36,0x72,0x68, +0x1b,0xd9,0xc2,0xa1,0x6d,0xe4,0x03,0x3e,0x52,0xfa,0xcf,0x64, +0x1c,0x1f,0x25,0xfd,0x67,0x32,0x9e,0x43,0xe3,0xc8,0x87,0x1c, +0x1a,0x47,0x3e,0xe5,0xf2,0x4b,0x87,0x63,0x39,0x34,0x8e,0xcc, +0xe7,0xd0,0x38,0xb2,0x8e,0x43,0xe3,0xc8,0x73,0x1c,0x1a,0x47, +0x5e,0xe4,0xd0,0x38,0xf2,0x1a,0x87,0xc6,0x91,0xb7,0x39,0x34, +0x8e,0xbc,0xcf,0xe5,0xca,0x90,0x8f,0x39,0x34,0x8e,0xec,0xe7, +0xd0,0x38,0xf2,0x0a,0x87,0xc6,0x91,0xb7,0x38,0x34,0x8e,0xbc, +0xc7,0xa1,0x71,0x64,0x0f,0x87,0xc6,0x91,0x7d,0x1c,0x1a,0x47, +0xfe,0xc9,0x2f,0x97,0xef,0x6e,0x73,0x68,0x9c,0xb1,0x5f,0xc0, +0x9a,0x91,0x97,0xf9,0x6c,0xe9,0xdb,0x93,0x31,0x7c,0x8e,0xf4, +0x16,0xc9,0x21,0x2e,0xdf,0x58,0x76,0xdf,0x22,0xa7,0x5d,0x6d, +0x60,0x28,0xed,0x6c,0xef,0x22,0x26,0xf9,0x95,0xcc,0x09,0xc3, +0x1a,0x93,0xdf,0x49,0xaa,0xbb,0xe2,0xa1,0x1b,0xc1,0x79,0x94, +0x92,0xa0,0x5c,0x67,0x46,0x0d,0x02,0xa9,0xd3,0x38,0x02,0x19, +0x93,0xc3,0xf2,0x6d,0x67,0xba,0x30,0x2c,0x57,0x04,0x5e,0x1f, +0x06,0x8a,0xd1,0xdf,0x09,0x74,0x95,0xc2,0x16,0x80,0x9f,0x20, +0xd0,0x4c,0x1a,0x21,0xb0,0xc0,0xb4,0x23,0x39,0x60,0x7f,0x80, +0x32,0x8f,0xb4,0xb1,0x81,0xcd,0x74,0xa0,0x0d,0x6c,0x26,0x4b, +0xed,0x3d,0xb8,0xcf,0x6f,0x24,0xc5,0x06,0x3a,0x93,0x13,0x04, +0xed,0x67,0xa9,0x44,0xca,0x6c,0x36,0x19,0x63,0x7f,0x8c,0xe3, +0xdb,0x93,0xd1,0xb6,0x5c,0xf1,0x3e,0xcf,0xfe,0x14,0xbf,0xf2, +0xc9,0xa8,0x30,0x22,0x2c,0x72,0x94,0x8c,0x08,0xc3,0xee,0xd3, +0x93,0x64,0x8a,0x03,0xbf,0x8f,0x7c,0x4f,0xe6,0x3a,0xf0,0xfb, +0xc8,0xcf,0x24,0xc1,0xde,0x8f,0xf2,0x18,0x49,0xb4,0xa1,0x9b, +0xf4,0x94,0x0d,0xdd,0xa4,0xa7,0xed,0x2f,0x70,0x2c,0x23,0x2d, +0xec,0x2f,0x51,0x0a,0xd2,0xca,0xfe,0x0a,0x65,0x3b,0x32,0xcc, +0xfe,0x1a,0x65,0x07,0x32,0xdc,0x3e,0x80,0xf2,0x0c,0x99,0x66, +0x7f,0x83,0xf2,0x0f,0x72,0xa9,0x7d,0x10,0xe5,0x59,0x32,0xd5, +0xfe,0x16,0xe5,0x9f,0xe4,0x4a,0x1b,0xba,0x4a,0x2b,0x6d,0xe8, +0x2a,0xed,0x62,0xa3,0xcd,0xf4,0x9c,0x0d,0x5d,0xa5,0xe7,0x6d, +0xe8,0xaa,0x41,0x6c,0xe8,0xaa,0x41,0x6d,0xb9,0xf6,0xf4,0xb8, +0x7c,0xff,0x1b,0xbb,0xee,0x82,0x4c,0xef,0x05,0x6d,0x03,0x7d, +0x22,0xd7,0x25,0xd9,0xd0,0x61,0x6a,0x12,0x8c,0x54,0x1a,0x4b, +0x30,0x46,0xc9,0x3d,0x61,0xe0,0x3f,0xe5,0xee,0xf7,0xb9,0x7f, +0x20,0xd0,0x28,0x43,0xbe,0x2b,0x6d,0x18,0xf2,0xcd,0x67,0x83, +0xfc,0xe8,0x7e,0x43,0xf1,0x88,0xbb,0x86,0xe6,0x27,0xf7,0x6b, +0x96,0xbf,0x10,0x68,0x14,0xad,0xe5,0x7e,0x0d,0x78,0x12,0xa1, +0xc6,0xe5,0x28,0xaf,0x02,0x5d,0x06,0x9a,0x05,0x42,0x5c,0x46, +0x4e,0x92,0xf4,0xb0,0xcc,0xc6,0x70,0x8a,0x40,0xa7,0xc8,0x69, +0x02,0x9d,0x22,0x67,0x08,0x74,0x8a,0xfc,0x41,0xa0,0x53,0xe4, +0x2c,0x81,0x4e,0x91,0x3f,0xdd,0xf7,0xa8,0xcf,0x11,0xe8,0x14, +0x39,0x4f,0xa0,0x53,0x94,0x10,0xe8,0x14,0x8d,0x27,0xd0,0x14, +0x9a,0x40,0xa0,0x29,0x34,0x51,0x66,0x75,0xa0,0xb5,0x49,0xc4, +0x5d,0xe9,0x09,0x4d,0xa1,0xc9,0x04,0x9a,0x42,0x53,0x08,0x34, +0x85,0xa6,0x12,0x68,0x0a,0x4d,0x23,0xd0,0x14,0x9a,0x4e,0xa0, +0x29,0x34,0x83,0x40,0x53,0x68,0x26,0x81,0xa6,0xd0,0x2c,0x02, +0x4d,0xa1,0xd9,0x04,0xb6,0x94,0xfa,0x08,0x6c,0x29,0xcd,0x21, +0xc0,0x5a,0x9a,0x4b,0x80,0xb5,0xd4,0x4f,0x80,0xb5,0x34,0x40, +0x80,0xb5,0x34,0x28,0xbf,0xb7,0x49,0x43,0x04,0x58,0x4b,0x2d, +0x02,0xac,0xa5,0xb6,0xfc,0x72,0x31,0x75,0x08,0xb0,0x96,0x86, +0x49,0x33,0xf0,0x3a,0x04,0x48,0x4b,0x0b,0x08,0xec,0x2d,0x2d, +0x94,0x5f,0x31,0xa7,0x45,0x32,0xcb,0x04,0x2d,0x26,0xb0,0xb7, +0xb4,0x2e,0x81,0xbd,0xa5,0x25,0x04,0xf6,0x96,0x96,0x12,0xd8, +0x5b,0x5a,0x8f,0xc0,0xde,0xd2,0xfa,0x04,0xf6,0x96,0x96,0x11, +0xd8,0x5b,0x5a,0x4e,0x60,0x6f,0x69,0x03,0x22,0xe5,0xdd,0x90, +0xc0,0xde,0xd2,0x46,0x44,0x8e,0xd4,0x0a,0x22,0x47,0x6d,0x63, +0xf9,0x5d,0x73,0xda,0x84,0xc8,0x71,0xde,0x94,0xc0,0xde,0xd2, +0x66,0x04,0xf6,0x96,0x36,0x27,0xb0,0xb7,0xb4,0x05,0x81,0xbd, +0xa5,0x2d,0x09,0xec,0x2d,0x6d,0x45,0x60,0x37,0x68,0x6b,0x02, +0x04,0xa0,0x6d,0xe4,0xd7,0xc4,0x69,0x5b,0x02,0x04,0x30,0x62, +0xed,0xa3,0xe8,0x0f,0xa0,0x9b,0x11,0x67,0xff,0x8c,0x2d,0x20, +0x9c,0x51,0xcb,0x3e,0x86,0x2d,0xa0,0x9c,0x11,0x6f,0xff,0x82, +0x2d,0x20,0x9d,0x91,0x60,0x1f,0xc7,0x56,0x06,0x28,0x13,0xd4, +0x0a,0x94,0x05,0x6a,0x0d,0xca,0x06,0xb5,0x01,0xf9,0x40,0x6d, +0x41,0x39,0xa0,0x76,0xa0,0x5c,0x50,0x7b,0x90,0x1f,0xd4,0x01, +0x14,0x00,0x75,0x04,0x05,0x41,0x9d,0x40,0x21,0x50,0x67,0x90, +0x05,0xaa,0x04,0xd9,0x20,0xb4,0xde,0x48,0xb6,0x7f,0xc5,0x96, +0x03,0xea,0x0a,0x0a,0x83,0xba,0x81,0x30,0x72,0x8c,0xee,0x20, +0x06,0xe2,0x20,0x01,0x8a,0x80,0xf2,0x40,0xf9,0xa0,0x1e,0xa0, +0x9e,0xa0,0x02,0x50,0x2f,0x50,0x6f,0x50,0x21,0xa8,0x0f,0xa8, +0x2f,0xa8,0x08,0xd4,0x0f,0xd4,0x1f,0x54,0x0c,0x1a,0x00,0x1a, +0x08,0xaa,0x0b,0x2a,0x01,0x95,0x82,0xea,0x81,0xd0,0xe3,0x46, +0xa2,0xfd,0x1b,0xb6,0xa4,0x85,0xad,0x6d,0xff,0x8e,0x2d,0x69, +0x65,0x93,0xec,0x13,0xd8,0x6a,0x00,0x6a,0x08,0x6a,0x04,0xaa, +0x00,0x35,0x06,0x49,0xfb,0xda,0xd2,0x3e,0x89,0xad,0xa6,0xa0, +0xe6,0xa0,0x16,0xa0,0x18,0x90,0x1c,0x01,0x3d,0xec,0x53,0x84, +0x52,0xd9,0x03,0x3d,0xed,0xd3,0xd8,0x92,0xbd,0xd0,0xcb,0x3e, +0x83,0x2d,0xd9,0x13,0xbd,0xed,0x3f,0xb0,0x25,0x7b,0xa3,0x8f, +0x7d,0x16,0x5b,0x43,0x41,0xc3,0x40,0x37,0x81,0x2e,0x06,0xdd, +0x0c,0x1a,0x0e,0xba,0x05,0x74,0x09,0xe8,0x56,0xd0,0x08,0xd0, +0x6d,0xa0,0x91,0xa0,0xdb,0x41,0xa3,0x40,0x77,0x80,0x46,0x83, +0x96,0x83,0xc6,0x80,0xee,0x04,0x8d,0x05,0xad,0x00,0x8d,0x03, +0x41,0xa3,0xe9,0x78,0x10,0x7c,0x77,0x3a,0xc0,0xfe,0x13,0x5b, +0x13,0x40,0x2b,0x41,0x13,0x41,0xab,0x40,0xd0,0x4a,0x7a,0x0f, +0x68,0x32,0x68,0x0a,0x68,0x2a,0x68,0x1a,0xe8,0x52,0xd0,0x74, +0x10,0xf0,0x80,0xfe,0x03,0x34,0x03,0xb4,0x1a,0xb4,0x06,0x34, +0x13,0xb4,0x16,0x74,0x1f,0x08,0x9a,0x4c,0xd7,0x81,0xee,0x07, +0x41,0xa3,0xe9,0x7a,0xd0,0x03,0x20,0x68,0x3a,0xad,0x02,0xcd, +0x06,0xcd,0x01,0x01,0xb3,0x69,0x5f,0xfb,0x1c,0xb6,0xe0,0x33, +0xd1,0x7e,0xf6,0x79,0x6c,0xc1,0x6f,0xa2,0xfd,0x1d,0x82,0xad, +0x79,0x20,0xe0,0x02,0x9d,0x0f,0xba,0x1a,0x74,0x0d,0x08,0x1e, +0x13,0x5d,0xe2,0x50,0x6c,0x2d,0x00,0xdd,0x00,0x5a,0x0c,0xc2, +0x58,0xa0,0xd7,0x81,0x24,0xa6,0x2f,0x75,0x24,0x8e,0xdf,0xe8, +0xc8,0x35,0x7c,0x88,0x39,0x1c,0xbf,0x1f,0xd1,0x99,0x13,0xb2, +0xf6,0x0a,0x78,0x11,0xd6,0x7e,0x01,0xaf,0xd9,0xfa,0x4a,0xa0, +0x4f,0x73,0xd0,0xa7,0x8e,0x23,0xe0,0x8b,0x58,0xa7,0x05,0xbc, +0x0a,0x3b,0x26,0x02,0xcf,0xc0,0x4e,0x12,0x9f,0x92,0x18,0x87, +0xdb,0xb6,0xf8,0x28,0x08,0xdf,0xc4,0x11,0x36,0xd0,0xc2,0x2e, +0x11,0xfb,0xb1,0x5d,0x60,0x43,0x0b,0xed,0x7e,0x91,0x38,0x42, +0xfd,0xb0,0x42,0xf6,0x9c,0x08,0x30,0xd2,0x9e,0x27,0xe0,0x1d, +0x39,0x25,0x02,0x47,0xdb,0xf7,0x0b,0xf8,0x30,0xb1,0x7b,0x22, +0x40,0xbb,0x64,0x3b,0x02,0x4d,0x72,0xda,0xd9,0x88,0x34,0xec, +0x9d,0x02,0x56,0x81,0x3e,0x6c,0x49,0x34,0xd8,0x68,0xc9,0xb1, +0xf0,0x88,0x25,0x51,0x62,0x93,0x25,0x51,0xe2,0x51,0x0b,0xd8, +0x49,0x1f,0xb3,0xe0,0xa1,0xd3,0xc7,0x2d,0x89,0x12,0x4f,0x58, +0x2d,0xc0,0x9f,0xb4,0xa4,0xed,0xd9,0x6c,0x49,0xc4,0x78,0xca, +0x82,0xe7,0x4e,0xb7,0x58,0xf0,0xdc,0xe9,0xd3,0x96,0x44,0x89, +0x67,0x2c,0x89,0x0f,0xcf,0x5a,0x12,0x2b,0xb6,0x5a,0x12,0x25, +0x9e,0xb3,0x24,0x1a,0x6c,0xb3,0x24,0x0e,0x3c,0x6f,0x49,0x4c, +0xd8,0x6e,0x49,0x34,0x78,0xc1,0x92,0x68,0xf3,0xa2,0x25,0x71, +0xe6,0x25,0x4b,0x62,0xce,0x0e,0x4b,0xa2,0xcd,0x3f,0x2d,0x89, +0x2a,0x2f,0x5b,0x12,0x4f,0x5e,0xb1,0x24,0xb6,0xbc,0x6a,0x49, +0x54,0x79,0xcd,0x82,0x6d,0xa7,0xaf,0x5b,0xc0,0x6f,0xfa,0x86, +0x05,0xdb,0x4e,0x77,0x5a,0xb0,0xf3,0xf4,0x4d,0x0b,0xb8,0x4e, +0xdf,0xb2,0x60,0xd5,0xe9,0xdb,0x16,0x2c,0x1c,0x7d,0xc7,0x82, +0x6d,0xa7,0xef,0x5a,0xb0,0xed,0xf4,0x3d,0x0b,0x96,0x9c,0xbe, +0x6f,0xc1,0xb6,0xd3,0x5d,0x16,0xec,0x3c,0xfd,0xc0,0x82,0x85, +0xa7,0xbb,0x2d,0x58,0x75,0xfa,0xa1,0x05,0x0b,0x4f,0xf7,0x58, +0xb0,0xed,0xf4,0x23,0x0b,0x68,0x43,0x3f,0xb6,0xe0,0x69,0xd0, +0x4f,0x2c,0x78,0x1a,0x74,0xaf,0x05,0x4f,0x83,0x7e,0x6a,0xc1, +0x03,0xa1,0xfb,0x2c,0xf8,0x1b,0x74,0xbf,0x05,0xef,0x9e,0x7e, +0x66,0xc1,0xbb,0xa7,0x9f,0x5b,0x12,0xcd,0xbe,0xb0,0x24,0x8e, +0x7d,0x69,0x49,0x1c,0xfb,0xca,0x92,0x5a,0xf4,0xb5,0x25,0xf1, +0xed,0x80,0x25,0xf5,0xe8,0x1b,0x4b,0xea,0xd0,0x41,0x6b,0x08, +0xc6,0x01,0xbc,0x52,0x7a,0xc8,0x82,0x67,0x4e,0xbf,0xb3,0xe0, +0x99,0xd3,0xc3,0x96,0x1c,0x69,0xdf,0x5b,0xf0,0x22,0xe8,0x11, +0x0b,0x1e,0x05,0xfd,0xc1,0x82,0x2f,0x41,0x7f,0xb4,0xe4,0x68, +0xfb,0xc9,0x82,0x7f,0x4e,0x8f,0x5a,0x72,0x0c,0xfe,0x6c,0xc1, +0x63,0xa7,0xc7,0x2c,0x39,0xce,0x7e,0xb1,0xe0,0xa5,0xd3,0xe3, +0x16,0xfc,0x76,0xfa,0xab,0x25,0x47,0x20,0x7c,0x52,0xfa,0x10, +0xac,0xb4,0x41,0x37,0xc0,0x46,0x1b,0x31,0x55,0x18,0x5b,0x54, +0xf6,0xac,0x9d,0x9f,0x88,0x28,0x17,0x16,0xfe,0xe2,0xe8,0x73, +0x77,0xf9,0x6d,0x7b,0x96,0x42,0xa0,0x53,0xe4,0x6e,0xf7,0x9b, +0xf7,0x86,0x31,0x8e,0x40,0x23,0x08,0x22,0x5f,0x63,0x0e,0x39, +0x84,0xad,0x2b,0xe4,0xec,0x1d,0x59,0xc9,0xe7,0xca,0xb9,0x4b, +0x32,0x92,0xa3,0x26,0xe2,0x46,0x01,0x5d,0x17,0x88,0xd3,0x83, +0xc7,0xec,0x9d,0x72,0xb4,0xc6,0x1c,0x94,0xe3,0x2b,0x35,0x24, +0x47,0x6a,0xdc,0x02,0x39,0xca,0x52,0x11,0x61,0xfa,0x2a,0xed, +0xfb,0xe5,0x28,0x8e,0x9d,0x1b,0x1d,0xd9,0x31,0x18,0x9b,0xb5, +0x9a,0x59,0xa7,0xe5,0x18,0x8e,0x87,0x6d,0xcd,0x29,0x8b,0xdd, +0x23,0xc7,0x69,0xd2,0x53,0x72,0x8c,0xa6,0x60,0x84,0xfb,0x97, +0x24,0xc3,0xa7,0x84,0x35,0xa0,0xf0,0x4b,0x08,0xac,0xee,0x24, +0x94,0x53,0xc8,0xa5,0x64,0x22,0x99,0x49,0xae,0x25,0x53,0xe1, +0xdd,0x2c,0x84,0x0d,0x96,0xdf,0x9e,0x9e,0x4f,0x56,0xc0,0xde, +0x5f,0x0d,0xdd,0x59,0x43,0x16,0xa1,0xbe,0xeb,0xc8,0x0d,0x64, +0x03,0xfe,0x96,0xb8,0x5f,0x60,0x5e,0x4a,0xb6,0xe0,0xef,0x46, +0xf2,0x1c,0xfc,0x81,0x65,0xe4,0x45,0xfc,0xdd,0x4c,0xfe,0x49, +0x5e,0x21,0xb7,0x90,0xd7,0xf0,0x77,0xbb,0xfb,0x05,0xe6,0x3b, +0xc8,0xbb,0xe4,0x7d,0xb4,0x5b,0x7e,0x81,0xf9,0x1e,0xf2,0x21, +0xd9,0x83,0xeb,0x7d,0x4c,0xf6,0x93,0xd5,0xe4,0x00,0xfe,0xd6, +0x93,0x43,0xf0,0xa0,0x1e,0xa0,0x9d,0xe9,0x03,0x34,0x96,0x3e, +0x04,0x77,0x63,0x8c,0x11,0x63,0x2c,0xa5,0x3b,0x8c,0xe5,0xc6, +0x4a,0xa3,0xb3,0x71,0x8f,0x71,0xaf,0xd1,0xc3,0x58,0x6d,0x3c, +0x67,0xf4,0x32,0x9e,0x37,0xb6,0x1b,0x93,0x8d,0x57,0xf0,0x37, +0xd5,0x78,0xc3,0xd8,0x65,0x4c,0x33,0xf6,0xe3,0x6f,0x8e,0x19, +0x63,0xc6,0x18,0x57,0x98,0xf1,0x66,0xa2,0x31,0xd7,0x4c,0x32, +0x8f,0x1b,0x57,0xc5,0xf8,0x62,0x7c,0xe6,0x98,0x98,0xaa,0x98, +0x2a,0x73,0x6c,0xcc,0xfe,0x98,0xfd,0xe6,0xb8,0x98,0x83,0x31, +0x07,0xcd,0xf1,0xb1,0x73,0x63,0xe7,0x9a,0x13,0x62,0xf7,0xc4, +0xee,0x31,0x27,0xc6,0x2d,0x88,0x5b,0x60,0x4e,0xaa,0xd5,0xac, +0x56,0x33,0x73,0x72,0x7c,0xed,0xf8,0xda,0xe6,0x94,0xf8,0x83, +0xf1,0x07,0xcd,0xa9,0x89,0x4e,0xa2,0x63,0x4e,0x4b,0x5c,0x9d, +0xb8,0xda,0xbc,0x34,0xf1,0x87,0xc4,0x1f,0xcc,0xe9,0x49,0xdd, +0x92,0xba,0x99,0x33,0x92,0x9e,0x4a,0x7a,0xca,0x9c,0x99,0x6c, +0x27,0xdb,0xe6,0x65,0x29,0xc5,0x29,0xc5,0xe6,0xac,0x94,0xa3, +0x29,0x47,0xcd,0xcb,0x53,0x43,0xa9,0x21,0xb3,0x2a,0xf5,0xd5, +0xd4,0x57,0xcd,0xd9,0xbe,0x4a,0x5f,0xa5,0x39,0x27,0xa7,0x2c, +0xa7,0xcc,0xbc,0xc2,0xbf,0xc4,0xbf,0xc4,0x9c,0xeb,0x5f,0xe7, +0x5f,0x67,0x5e,0x19,0x3c,0x16,0x3c,0x66,0xce,0xb3,0x1a,0x5b, +0x0b,0xcc,0xab,0xac,0xad,0xd6,0x73,0xe6,0x9b,0x8e,0xdf,0xf1, +0x9b,0x6f,0x3b,0xdc,0x11,0xe6,0x3b,0x4e,0x47,0xa7,0xd2,0x7c, +0x4f,0xae,0x9e,0x36,0x77,0x3b,0xa7,0x9c,0xd3,0xe6,0x9e,0xb0, +0x08,0x0b,0xf3,0xe3,0xf0,0xe0,0xf0,0x60,0xf3,0x13,0x96,0xc2, +0x52,0xcd,0xbd,0x62,0xa9,0xb8,0xd1,0xdc,0x27,0x3e,0x12,0x1f, +0x9b,0x9f,0x89,0xaf,0xc5,0xd7,0xe6,0x17,0xe2,0xa8,0x38,0x6a, +0x7e,0x29,0x8e,0x89,0x63,0xe6,0x57,0xe2,0xb8,0x38,0x6e,0x7e, +0x2d,0x7e,0x13,0xbf,0x99,0x07,0xc4,0x09,0x71,0xc2,0xfc,0x46, +0x9c,0x12,0xa7,0xcc,0x83,0x11,0x33,0x12,0x63,0x7e,0x1b,0x89, +0x8b,0xc4,0x99,0xdf,0x45,0x92,0x22,0x49,0xe6,0xe1,0x48,0x4a, +0x24,0xc5,0xfc,0xbe,0x7a,0x4d,0x86,0xcc,0x37,0x12,0xb1,0xd1, +0x53,0x32,0x7b,0x46,0x25,0x7c,0x8b,0xea,0xff,0xa4,0xc0,0x47, +0x5b,0x46,0x6e,0x75,0x49,0xae,0x3f,0x61,0xf0,0x78,0xda,0xc1, +0xb3,0x90,0x6b,0x50,0x62,0x49,0x1a,0xfc,0x9c,0x4e,0x64,0x38, +0xc6,0x84,0xe9,0xae,0x14,0xa1,0xee,0x57,0xde,0xa9,0xbb,0x7e, +0x44,0x1e,0x5d,0x02,0x2f,0xa6,0x07,0x3c,0x0d,0xb9,0x82,0x7a, +0x49,0xf4,0x0d,0x94,0x8a,0x09,0xf2,0x1b,0xd5,0xea,0x18,0x53, +0xad,0x30,0xa1,0xb8,0xaa,0x77,0x16,0xc5,0xfd,0xab,0xf7,0xe7, +0x6a,0xfb,0xbb,0xb9,0x6b,0x5f,0xae,0x76,0xdf,0x3c,0x5d,0x88, +0x11,0xa8,0xae,0xa8,0xd6,0xa9,0x10,0x77,0x65,0x62,0x1c,0x6a, +0xd8,0x1c,0xdb,0xf2,0x4b,0xe2,0x01,0x72,0x13,0xc6,0x60,0xd0, +0x1d,0xa3,0x36,0x79,0x0a,0x7f,0x0e,0xd9,0x81,0xbf,0xf0,0x85, +0xf6,0xc9,0xeb,0x0d,0x76,0xaf,0x9d,0xa6,0xd6,0xd6,0x60,0x5f, +0xdc,0xc7,0x68,0xdf,0x83,0x64,0x33,0xd9,0x4e,0xde,0x23,0xfb, +0xe0,0xab,0x9e,0xc0,0x01,0x36,0xed,0x49,0x47,0xd0,0x49,0x74, +0x3d,0x3d,0x6b,0xc4,0x19,0x69,0x46,0xc8,0xc8,0x33,0xca,0x8d, +0x16,0x46,0x4f,0x63,0x88,0x31,0xc5,0xa8,0x32,0xae,0xc1,0xe8, +0x7c,0xcf,0xf8,0xca,0x38,0x62,0x0a,0x73,0x9e,0xb9,0xc8,0xbc, +0xd5,0xbc,0xd7,0xdc,0x60,0x6e,0x36,0x5f,0x35,0x77,0x99,0x07, +0xcc,0x1f,0xcd,0x13,0x31,0x59,0x31,0x1d,0x62,0x06,0xc6,0x8c, +0x88,0x59,0x15,0x73,0x3c,0xe6,0x6c,0x6c,0x5c,0x6c,0x46,0x6c, +0x51,0x6c,0x45,0x6c,0x87,0xd8,0x29,0xb1,0x73,0x62,0x17,0xc6, +0xae,0x8a,0x5d,0x1f,0xfb,0x58,0xec,0xb6,0xd8,0xb7,0x30,0x2e, +0x0f,0xc4,0x9e,0x8d,0x8b,0x8f,0xcb,0x8a,0x13,0x71,0x2d,0xe2, +0xba,0xc6,0x0d,0x8c,0x1b,0x13,0x37,0x3d,0x6e,0x6e,0xdc,0xe2, +0xb8,0x15,0x71,0x6b,0xe3,0x36,0xc6,0x6d,0x89,0x7b,0x31,0xee, +0x1d,0x29,0xdd,0xf0,0x65,0x68,0x3f,0x83,0x2f,0x89,0x6d,0x07, +0xb8,0x28,0x3d,0x5b,0xb9,0x5e,0xd1,0x01,0x3a,0x92,0x32,0x47, +0x46,0x62,0x43,0xdd,0xe3,0x66,0xe1,0xb8,0x22,0xe9,0x91,0xba, +0xff,0x95,0xd1,0x1b,0xb7,0x9e,0x77,0xd7,0x55,0xca,0x33,0x47, +0xb8,0x67,0x62,0xcb,0xda,0x86,0xad,0xde,0x38,0x36,0x1e,0xd2, +0xc8,0xb5,0xb6,0x63,0x2b,0x8f,0x94,0x38,0x88,0x8d,0xd0,0xc7, +0x3d,0xc2,0x33,0xdd,0xe3,0xe4,0x0a,0xf7,0x2c,0x44,0x48,0x82, +0x14,0x85,0x09,0xfe,0xd3,0x8e,0xf4,0x70,0xfa,0xa3,0xec,0x49, +0x32,0x9d,0x81,0x6e,0x99,0x65,0xc9,0x35,0xb5,0x1d,0xac,0xcd, +0xe0,0x3d,0xa3,0xf7,0x0c,0xcb,0x9e,0xe1,0x0e,0x10,0x19,0xa3, +0x41,0xde,0x13,0x56,0x17,0x3e,0x6a,0x1c,0x46,0x57,0x2e,0x7a, +0xc3,0x5d,0x79,0x18,0x96,0xe3,0xa5,0x83,0x7b,0xbd,0x01,0xea, +0x7a,0x67,0xd5,0xf5,0x9e,0x96,0xa3,0xd2,0x91,0x31,0x69,0x0f, +0xeb,0x29,0xf7,0xaa,0x89,0xf0,0xf4,0x6d,0xd4,0xee,0x2f,0x2b, +0x16,0x9d,0x73,0x38,0xbe,0x2b,0xe9,0xe5,0x9c,0x51,0xe7,0xff, +0xa1,0xce,0x87,0xad,0xc5,0xaf,0x41,0x72,0x4d,0xbf,0x23,0x23, +0xd3,0xf6,0xd6,0x16,0xf7,0x8a,0x63,0xdd,0x2b,0x3e,0x29,0xaf, +0xe8,0x0c,0x55,0x48,0x18,0xe3,0x5c,0x7c,0x61,0x6b,0xf8,0x85, +0xad,0x3f,0x5d,0x19,0x74,0x70,0xb7,0x87,0x79,0x7b,0xa5,0xfc, +0x69,0x3c,0xbc,0x79,0x25,0x7f,0x9a,0x50,0x2d,0x7f,0x9a,0x23, +0xe5,0x0f,0x0f,0x5a,0xc9,0x9f,0xa6,0x21,0x26,0xb8,0x20,0x7f, +0x9a,0x20,0xe5,0x4f,0x33,0x3c,0xf9,0xe3,0x4c,0x25,0x7f,0x78, +0xed,0x9a,0xfc,0x69,0x12,0xcd,0x94,0xf2,0xa7,0x75,0x69,0x03, +0x29,0x7f,0x9a,0x50,0x53,0xfe,0xb4,0x80,0x36,0x90,0xf2,0x87, +0xe7,0x7f,0x5a,0xca,0x1f,0xe5,0x19,0x29,0x7f,0x5a,0x24,0xe5, +0x4f,0x1b,0x56,0xcb,0x9f,0x26,0x48,0xf9,0x23,0x4e,0x50,0xf2, +0x47,0x94,0xf0,0x2f,0xf2,0xa7,0x45,0xee,0xf5,0x06,0xa8,0xeb, +0x9d,0x55,0xd7,0x7b,0x5a,0x46,0x1f,0x52,0xfe,0xb4,0x81,0x94, +0x3f,0xf6,0xfd,0x5b,0xf9,0xd3,0xfa,0xb4,0x91,0x94,0xbf,0x7b, +0xfe,0x1f,0xea,0x7c,0x29,0xff,0xd3,0xae,0xfc,0xcf,0x48,0xf9, +0xd3,0x42,0x29,0x7f,0x5c,0x71,0xac,0x7b,0xc5,0x27,0xe5,0x15, +0xa5,0xfc,0x11,0x99,0x28,0xf9,0xab,0xad,0xe1,0x17,0xb6,0xfe, +0x74,0x65,0x50,0xe4,0x49,0xdd,0xf4,0x99,0x25,0x9e,0xd4,0xcd, +0x9c,0x6a,0xa9,0x9b,0x11,0x29,0x75,0xb3,0x8b,0x27,0x75,0xd3, +0x36,0x0b,0xaa,0xa5,0x6e,0xe6,0x48,0xa9,0x9b,0x61,0x4f,0xea, +0x66,0x8e,0x27,0x75,0xb3,0x95,0x2e,0x75,0x33,0x60,0xd6,0x91, +0x52,0x37,0x1b,0x9a,0xcd,0xa5,0xd4,0xcd,0x9c,0x9a,0x52,0x37, +0xeb,0x9b,0xcd,0xa5,0xd4,0xcd,0x16,0x66,0x8a,0x94,0x3a,0xca, +0x54,0x29,0x75,0xb3,0x5c,0x4a,0xdd,0x6c,0x51,0x2d,0x75,0x33, +0x47,0x4a,0xdd,0x6c,0xee,0x49,0xdd,0x6c,0xf9,0xaf,0x52,0x37, +0xcb,0xdd,0xeb,0x0d,0x50,0xd7,0x3b,0xab,0xae,0x27,0xe7,0xa5, +0x2b,0xa4,0xd4,0xcd,0xe6,0x52,0xea,0xb8,0xea,0xbf,0x95,0xba, +0xd9,0xc4,0x6c,0x29,0xa5,0xee,0x9e,0xff,0x87,0x3a,0x5f,0xce, +0x65,0xa7,0x48,0xa9,0x9b,0xa9,0x52,0xea,0x66,0x99,0x94,0x3a, +0xae,0x38,0xd6,0xbd,0xa2,0x9c,0x0d,0x6f,0x21,0xa5,0x6e,0xb6, +0xf3,0xa4,0xae,0xb6,0x86,0x5f,0xd8,0xfa,0xd3,0x95,0x41,0xb9, +0xdb,0x9a,0x34,0x67,0x3a,0x6a,0xfa,0xae,0xb1,0xdc,0x7c,0xd5, +0x91,0x4f,0x60,0x97,0xcb,0xac,0x8a,0x38,0xe6,0x24,0x8e,0xf9, +0xd9,0x7c,0xc1,0x95,0xe4,0x23,0x38,0xe2,0x7b,0xf3,0x90,0xb1, +0xdc,0x95,0xa6,0x8f,0x30,0x67,0x3c,0x89,0xc3,0x9e,0xcf,0xe5, +0x59,0xe6,0x77,0xce,0x44,0x12,0x8b,0x5f,0x9b,0xcc,0x6f,0xcd, +0xcf,0x2c,0x39,0xcf,0xff,0xbd,0x7b,0x05,0xf9,0x7c,0x17,0x7b, +0xdc,0xed,0xcb,0xdc,0x2b,0x7f,0xea,0xde,0x31,0xc5,0x19,0x17, +0xbd,0xb6,0x33,0xd9,0x2d,0x5f,0x75,0xef,0x21,0x9f,0x03,0xfc, +0xec,0x6e,0xc9,0xd9,0xfe,0x68,0x1d,0x64,0x4f,0xaf,0x35,0x77, +0xb8,0x7b,0x1f,0x93,0x5f,0x9c,0x37,0x9f,0xf5,0x8e,0x77,0x66, +0x78,0x47,0x85,0x6f,0x40,0xed,0xd6,0xc8,0x9a,0xb8,0x57,0xcf, +0xb0,0x36,0xa0,0x36,0x8f,0x98,0xcf,0xcb,0x96,0x38,0xd3,0x70, +0x85,0xef,0xa2,0x57,0x70,0x2e,0x75,0xeb,0xb0,0xc5,0xdd,0x9e, +0xea,0x6e,0xbb,0xf7,0x73,0x66,0xe2,0xf8,0x9f,0xcd,0xa7,0xcc, +0x6f,0xf0,0x3b,0x7a,0x85,0xc7,0xb1,0xe7,0x90,0xf9,0x8e,0xbc, +0x82,0x25,0x9f,0x5e,0x1c,0x72,0x6b,0xb0,0x9e,0xc4,0x44,0xdb, +0xeb,0xde,0x75,0xb1,0x7b,0x85,0xd7,0xdc,0xff,0x3c,0x8c,0x1a, +0xbc,0xe4,0xfd,0xc7,0x99,0x82,0x7b,0xbe,0xa4,0x6a,0x39,0xec, +0x82,0xcc,0xab,0x48,0x4c,0xfc,0x67,0xb1,0x33,0xe2,0xcf,0xb9, +0x67,0x2f,0x20,0x31,0xb5,0x17,0xa4,0xf4,0x4a,0xcc,0x74,0xcf, +0x7f,0x83,0x18,0xa9,0x87,0xdd,0xad,0xd7,0x89,0x91,0x78,0x91, +0x7b,0xc4,0x75,0xd8,0xea,0xeb,0xee,0x7b,0x8d,0x18,0xf1,0xef, +0xbb,0xfb,0xae,0x25,0x31,0xb5,0xaa,0xbc,0x6b,0x44,0x02,0xea, +0xac,0xde,0x24,0x1f,0x63,0xae,0x90,0x14,0x03,0xf7,0x4b,0xdd, +0x35,0xdb,0x1d,0x60,0x9d,0xbb,0x62,0x0c,0xf5,0x04,0x16,0xf7, +0x01,0xa6,0xad,0xa1,0xc9,0x34,0x85,0xa6,0xd2,0x74,0x9a,0x41, +0xb3,0x68,0x36,0x0d,0x02,0x0f,0x8a,0xa1,0xd1,0xe5,0xb4,0x21, +0x6d,0x44,0x1b,0xd3,0x66,0x66,0xd0,0x0c,0x99,0x96,0xe9,0x98, +0x61,0x93,0x99,0xdc,0x2c,0xc4,0xc8,0x6d,0x80,0xb1,0xd7,0x0c, +0xe3,0xad,0xa5,0xd9,0xda,0x6c,0xe7,0x66,0x91,0x78,0xc8,0xcd, +0x28,0xf0,0x38,0xfa,0x40,0x66,0x06,0x7b,0xdb,0x7c,0xd7,0x7c, +0xdf,0xfc,0x40,0xe6,0xee,0x34,0x3f,0x31,0xf7,0x99,0xfb,0xcd, +0xcf,0xcd,0xaf,0x20,0xb5,0x1f,0x62,0x7c,0xb1,0xbb,0xe3,0xfb, +0x26,0xac,0xaf,0xdd,0x39,0x25,0x35,0xe5,0x9d,0xd4,0x9c,0xd4, +0x87,0xab,0xbd,0x0e,0xa3,0x2b,0x65,0xd6,0x07,0x8e,0x5f,0xbe, +0x35,0x1c,0x5d,0x79,0x19,0x5d,0x77,0x09,0xbf,0x76,0x9f,0xb5, +0xdf,0xfa,0xcc,0xfa,0xdc,0xfa,0x42,0xae,0xa7,0xb4,0xbe,0x52, +0xef,0x11,0x1f,0xb2,0xbe,0xf3,0xde,0x25,0x76,0x6c,0xc7,0x91, +0x6b,0x1f,0x9d,0xb0,0x75,0xd4,0xfa,0xf9,0xc2,0x5b,0xc5,0x27, +0xad,0x33,0x72,0xcd,0xa2,0xf5,0xa7,0xfb,0x5e,0xb1,0x61,0x9b, +0x76,0x8c,0x1d,0x2b,0x57,0x20,0xaa,0xf7,0x8b,0x6b,0x3b,0x0c, +0x4e,0x9d,0x7c,0xcb,0x38,0xdd,0xce,0xb0,0x33,0xd5,0x9b,0xc6, +0xb9,0x76,0x40,0xae,0x0f,0xb4,0x2d,0xc4,0x7e,0xf2,0x8d,0x63, +0x2e,0xdf,0x39,0x76,0x84,0x7c,0x07,0x58,0xbd,0x79,0x5c,0x6c, +0xd7,0xb5,0x4b,0xe4,0x0a,0x3d,0xbb,0x9e,0x5c,0x97,0x67,0x97, +0xab,0xb5,0x78,0x4d,0xed,0x66,0x76,0x73,0xf7,0x6d,0xe4,0x56, +0xea,0x7d,0xe4,0xf6,0xea,0x8d,0xe4,0xce,0x76,0xa5,0x7c,0x2b, +0x19,0x71,0x63,0x77,0xbb,0x87,0xdd,0xd3,0xee,0x6d,0xf7,0xb1, +0xfb,0x79,0xef,0x27,0xcb,0x15,0x72,0xea,0x1d,0xe5,0xe1,0x72, +0x3d,0x9c,0x3d,0xd2,0x29,0x72,0xdf,0x55,0x76,0x57,0xbe,0xc9, +0x75,0x6f,0xde,0xfb,0xca,0x4e,0xb1,0x7a,0x63,0xf9,0x32,0x7b, +0x96,0x53,0x57,0xae,0x5d,0xb3,0x67,0xdb,0x73,0xdc,0x37,0x97, +0xe7,0xc9,0x35,0x6a,0xf6,0xd5,0xf2,0x0d,0x66,0xa7,0xc4,0xbe, +0xce,0x5e,0x68,0x5f,0xef,0xae,0x2e,0x5b,0xe2,0xd4,0x53,0xab, +0xca,0xdc,0x35,0x65,0x72,0x45,0x99,0xd3,0xc0,0x5b,0x4d,0x26, +0x57,0x92,0x79,0xab,0xc8,0xec,0xbb,0xdc,0xf5,0x63,0xf7,0x38, +0x4d,0xe5,0xaa,0x31,0xa7,0xb9,0xbd,0xc6,0x5d,0x2f,0xa6,0xd6, +0x88,0xc9,0x15,0x62,0xd5,0xeb,0xc3,0x9c,0x56,0x72,0x5d,0x98, +0xfd,0xa4,0x5c,0x13,0xe6,0xb4,0x71,0xda,0x22,0xb6,0xdd,0x6a, +0x3f,0x67,0x6f,0xb3,0xb7,0xdb,0x2f,0xaa,0x95,0x5f,0x6f,0x44, +0x57,0x7b,0xd9,0xef,0x44,0xd7,0x79,0xc9,0x15,0x4b,0xd1,0x55, +0x49,0xc1,0x63,0xd6,0xfe,0xea,0x95,0x49,0xf6,0x3c,0x7d,0x6d, +0x92,0xe3,0x64,0xde,0xeb,0x94,0xe4,0x0c,0xf6,0x55,0x06,0xe2, +0xac,0xaf,0xe2,0xe6,0x3b,0xa1,0xb8,0xf3,0xb5,0x9a,0xfd,0xdd, +0x3a,0x25,0x3b,0x26,0xa7,0x2c,0x29,0xc5,0xee,0x57,0xbd,0x5a, +0x09,0xf1,0xcd,0x29,0x78,0xde,0x72,0x76,0x82,0xc5,0x8c,0x43, +0x04,0x20,0x57,0x8e,0x3d,0xad,0xd6,0x8e,0xc9,0x35,0x40,0xfb, +0x63,0xbe,0x8c,0x39,0x18,0x9b,0x1c,0x5b,0x00,0x1f,0x4c,0xae, +0xed,0x99,0x1b,0x5d,0x4b,0x16,0xbb,0x37,0xf6,0xdc,0x85,0xf5, +0x64,0xf3,0x10,0x1b,0xc8,0x75,0x38,0xdb,0xe2,0xde,0x88,0xfb, +0xf6,0xc2,0xca,0xb2,0x82,0x5a,0x9d,0xdd,0xf5,0x33,0x13,0xe4, +0xda,0xb2,0x5a,0xe7,0xe3,0xe3,0x10,0x35,0xb4,0x77,0x57,0xc3, +0xb8,0x6b,0xcc,0xe2,0x6f,0x88,0xbf,0x25,0xfe,0x37,0x77,0x7d, +0x4b,0xa3,0x84,0x36,0x09,0x55,0x6a,0xb5,0xd9,0x3d,0x09,0x2f, +0xb8,0x6b,0x55,0x8e,0x21,0xae,0x90,0xab,0xce,0x96,0xba,0xeb, +0xce,0x56,0xbb,0x2b,0x4c,0xdc,0xd5,0x67,0x89,0x1f,0x24,0x7e, +0x9d,0xf8,0x83,0xbb,0x5a,0xa4,0xc4,0x5d,0x23,0xd2,0x4b,0xad, +0x0b,0x91,0xab,0x42,0xae,0x74,0x57,0xa4,0x6d,0x53,0xab,0x3d, +0x7e,0x50,0x2b,0x3c,0xea,0x27,0x35,0x75,0xd7,0x75,0x74,0x4b, +0xea,0x9e,0x34,0x3c,0x69,0x66,0xd2,0xaa,0xa4,0x4d,0x88,0x4e, +0xd4,0x1a,0x35,0xb9,0x5a,0x43,0xad,0x53,0xe3,0xee,0xda,0x8c, +0x0e,0xc9,0xfd,0xdd,0xf5,0x6a,0xd1,0x55,0x18,0xeb,0xb5,0x35, +0x6b,0x5c,0xad,0x5a,0xbb,0x22,0x65,0x75,0xca,0x83,0xee,0x3a, +0x8a,0x1f,0x52,0x8e,0xba,0xab,0x27,0x42,0xee,0x7a,0x89,0x7e, +0xee,0x0a,0x88,0x57,0x53,0xdf,0x48,0xfd,0x24,0xf5,0x4b,0x77, +0xa5,0xc3,0xc2,0xb4,0x77,0xd5,0x0a,0x87,0xe8,0xfa,0x06,0xb9, +0xba,0xe1,0x85,0x0b,0x2b,0x1b,0xe4,0xaa,0x06,0x6f,0x45,0xc3, +0x8b,0xee,0x5a,0x86,0x9e,0xd9,0xc4,0x5d,0xc1,0x70,0x59,0xf6, +0x97,0xee,0xda,0x05,0x6f,0xbd,0x82,0x5c,0xad,0x50,0xbd,0x56, +0xa1,0xc2,0x5d,0xa3,0xf0,0x82,0xbb,0x3e,0xe1,0x7a,0xff,0x7d, +0x88,0x99,0xe4,0x8a,0x84,0xc2,0xc0,0xd2,0xc0,0xbb,0x6a,0x15, +0xc2,0x11,0xb5,0xf2,0xe0,0xfe,0xe8,0x9a,0x03,0xf9,0xf6,0xbc, +0x7a,0x43,0x1e,0x11,0x91,0xf6,0x96,0xfc,0xd7,0x7f,0x79,0x4f, +0xfe,0xa8,0xf8,0x19,0xf1,0xd1,0x2f,0x88,0x8e,0x7e,0x45,0x6c, +0xf4,0x3b,0x22,0xa3,0x93,0x88,0x8b,0xfe,0xee,0x9d,0x79,0xc4, +0x49,0x91,0x58,0xc4,0x49,0xd5,0x6f,0xce,0x27,0x45,0x92,0x11, +0x2b,0xa5,0x56,0x23,0x53,0x4c,0x0c,0x3d,0x6f,0x5c,0x61,0x2c, +0x70,0x3a,0x1b,0xef,0x18,0x3b,0x8d,0xb7,0x8d,0x77,0x9d,0x4e, +0xc6,0x3a,0xe3,0x7e,0xf8,0xfe,0x5b,0x8c,0x79,0xc6,0x0a,0xe3, +0x2a,0xe3,0x2e,0x44,0x9f,0xc9,0x66,0x8a,0x99,0x6a,0xa6,0x99, +0xe9,0x66,0x86,0x99,0x69,0x66,0x99,0xd9,0x6e,0xfe,0xbc,0xe7, +0x11,0xbf,0x6e,0x37,0xae,0x35,0xde,0x87,0xff,0x92,0x63,0xe6, +0x9a,0x7e,0x78,0x1a,0x51,0x44,0xb5,0x5d,0x4c,0xad,0xe3,0xa2, +0xaa,0x30,0x23,0x66,0x9e,0x99,0x6f,0x16,0x00,0x5f,0x8b,0xcc, +0x62,0xb3,0xae,0x59,0x62,0x96,0x9a,0xf5,0x8c,0x07,0x11,0xed, +0x3e,0x64,0x2c,0x36,0x96,0x1a,0x8b,0xe0,0x2f,0x94,0xb9,0xd8, +0xdb,0xd0,0x6c,0x64,0x56,0x98,0x8d,0x81,0xc1,0x4d,0x81,0xc2, +0xcd,0x5d,0x1c,0x6e,0x05,0x24,0x6e,0x63,0xb6,0x05,0x1a,0xb7, +0x37,0x3b,0x98,0x1d,0xcd,0x4e,0x66,0x67,0xb3,0xd2,0xec,0x62, +0x6c,0x70,0x3a,0x1a,0x0f,0x23,0x9a,0x5e,0x63,0xdc,0x8d,0x58, +0xe5,0x1e,0x6c,0xbd,0x69,0xbc,0x65,0xdc,0x85,0x08,0x7a,0xad, +0xb1,0xc9,0xd8,0x68,0x3c,0x62,0xdc,0x89,0xe8,0x39,0xc1,0x98, +0x8f,0x08,0x7a,0xbe,0x31,0x2f,0x3c,0xd8,0xb8,0xcf,0x78,0xd4, +0xb8,0x17,0x51,0xf5,0xf5,0xb8,0xeb,0x12,0xe3,0x06,0xe3,0x4e, +0xe3,0x69,0xc4,0xa7,0x95,0xce,0x3c,0xc4,0xde,0xcf,0xc4,0xf8, +0x9c,0xd3,0xce,0x29,0xe3,0x59,0x63,0xab,0xb1,0x24,0x2c,0xa4, +0x4c,0x70,0xbc,0x92,0x09,0xee,0xf1,0x7f,0x5b,0x26,0xab,0xff, +0x0f,0x64,0xb2,0xc4,0xb8,0xd2,0x78,0xcc,0x78,0xdc,0x98,0x8b, +0xb6,0x1f,0x35,0xff,0x61,0xae,0x31,0xef,0x33,0xef,0x37,0x1f, +0x30,0xbf,0x34,0xbf,0x86,0xb5,0x7f,0x09,0xf6,0x3b,0x9a,0x03, +0x73,0xbd,0x9b,0x31,0xe7,0x61,0x78,0x0d,0x8f,0xc2,0xbe,0x3d, +0xe9,0xe6,0x49,0x7a,0xd6,0x7c,0xce,0xcd,0x2d,0xb4,0xc3,0x7c, +0xf9,0x42,0xbe,0xa4,0x37,0xdd,0x8c,0x49,0xef,0xb9,0x56,0x2f, +0x6a,0xf3,0x64,0xb6,0xa4,0x2f,0x60,0xf7,0x0e,0x98,0x07,0xdd, +0xdc,0x98,0xdf,0xa9,0xbc,0x49,0x3f,0xbb,0x99,0x09,0x17,0x21, +0x3e,0xfc,0xc9,0x3c,0x22,0x73,0xa9,0x99,0xc7,0x10,0x35,0x6e, +0x84,0xfd,0x7c,0xcc,0x7c,0x02,0xd1,0xe3,0x16,0xf3,0x19,0x73, +0xab,0x9b,0x95,0xe7,0x45,0xf3,0x9f,0xe6,0x2b,0xb0,0xa7,0xef, +0xb8,0xf6,0x74,0x97,0x9b,0x6b,0x53,0x66,0x62,0xda,0x6b,0x7e, +0x2a,0xe7,0x12,0xac,0xc6,0x56,0x13,0xab,0xa9,0xd5,0xcc,0x6a, +0x6e,0xb5,0xb0,0x5a,0x5a,0xad,0xac,0xd6,0x56,0x1b,0xab,0xad, +0xd5,0xce,0x6a,0x6f,0x75,0xb0,0x3a,0x5a,0x9d,0xac,0xce,0x56, +0xa5,0xd5,0xc5,0xea,0x6a,0x75,0xb3,0xba,0x5b,0x3d,0xac,0x9e, +0x56,0x2f,0xab,0xb7,0xd5,0xc7,0xea,0x6b,0xf5,0xb3,0xfa,0x5b, +0x03,0xac,0x81,0xd6,0x20,0x6b,0xb0,0x75,0x91,0x35,0xc4,0x1a, +0x6a,0x0d,0xb3,0x2e,0xb6,0x86,0x5b,0x97,0x58,0x23,0xac,0x91, +0xd6,0x28,0x6b,0xb4,0x35,0xc6,0x1a,0x6b,0x8d,0xb3,0xc6,0x5b, +0x13,0xac,0x89,0xd6,0x24,0x6b,0xb2,0x35,0xc5,0x9a,0x6a,0x4d, +0xb3,0x2e,0xb5,0xa6,0x5b,0x33,0xac,0x99,0xd6,0x65,0xd6,0x2c, +0xeb,0x72,0xab,0xca,0x9a,0x6d,0xcd,0xb1,0xae,0xb0,0xe6,0x5a, +0x57,0x5a,0xf3,0xac,0xab,0xac,0xf9,0xd6,0xd5,0xd6,0x35,0xd6, +0xb5,0xd6,0x02,0x8c,0x9d,0x1b,0x30,0xbe,0xd6,0x1b,0x0f,0xb8, +0x23,0x6c,0x13,0x46,0xd4,0x13,0xc6,0x93,0xc6,0x66,0xe3,0x29, +0xe3,0x69,0xf3,0x1e,0xb3,0xab,0xd9,0xdd,0xec,0x69,0xf6,0x36, +0xfb,0x9a,0xcb,0xcc,0x9b,0x11,0x33,0x4f,0x31,0xbb,0xb9,0x59, +0xac,0xfa,0xb8,0x79,0xac,0x06,0x9a,0x83,0xdd,0x2c,0x56,0x32, +0xa3,0xd1,0x28,0x73,0x8c,0x39,0xce,0x9c,0x60,0x4e,0x32,0xa7, +0x9a,0x97,0xba,0x99,0x8d,0x66,0x99,0x97,0xab,0x6c,0x56,0x32, +0xbf,0xd1,0xb5,0xe6,0x42,0xf3,0x06,0x73,0xb1,0xb9,0xc4,0x5c, +0x6a,0xde,0x68,0xde,0xa4,0xb2,0x1c,0xdd,0x61,0x2e,0x37,0xef, +0x34,0x57,0xb8,0x19,0xae,0x56,0x9a,0xab,0xcc,0xbb,0xcc,0x01, +0xe6,0x20,0xf3,0x22,0x73,0xa8,0x79,0xb1,0x79,0x89,0x39,0xd2, +0x1c,0x6d,0x8e,0x35,0xc7,0x9b,0x13,0xcd,0xc9,0xe6,0x34,0x73, +0xba,0x39,0xd3,0xcd,0x96,0x24,0xb3,0x0e,0xc9,0x6c,0x49,0x32, +0x43,0xd6,0xf5,0xe6,0x22,0x57,0x4b,0xf6,0x1b,0x2b,0xc3,0xc2, +0xa9,0x34,0xee,0x16,0x37,0xc2,0xf7,0x93,0x71,0xc3,0x18,0x20, +0xc2,0x38,0x32,0xc1,0xcd,0x90,0x33,0x89,0x8c,0x77,0xe7,0xcd, +0x26,0x90,0x99,0xe4,0x2a,0x6c,0x5d,0x4d,0xae,0x25,0x73,0xdc, +0xd9,0xb3,0x2b,0xdd,0xd9,0xb3,0x79,0xe4,0x2e,0x72,0x2f,0xfe, +0x23,0x67,0xcf,0xae,0x73,0x67,0xcf,0x16,0x92,0x6d,0xf8,0x5b, +0x44,0x3e,0xc1,0xdf,0x0d,0xee,0x0c,0xd8,0x62,0x77,0x06,0x6c, +0x89,0x9c,0x01,0x23,0xdf,0xbb,0x33,0x60,0x95,0x46,0x8c,0x31, +0x90,0xae,0x37,0x46,0x18,0x23,0xe9,0x49,0xe3,0x72,0xe3,0x72, +0x7a,0xda,0x98,0x6d,0xcc,0xa1,0x67,0xe4,0x5c,0x10,0x3d,0x2b, +0x96,0x8a,0xa5,0xf4,0x9c,0x86,0x4c,0x3e,0x23,0x9e,0x7c,0x47, +0x0e,0x93,0x23,0xe4,0x07,0xf2,0x23,0xf9,0x89,0xfc,0x4c,0x8e, +0x91,0x5f,0xc8,0x71,0xf2,0x2b,0xf9,0x8d,0xfc,0x4e,0x4e,0x90, +0x93,0xe4,0x14,0x39,0x4d,0xce,0x90,0x3f,0xc8,0x59,0xf2,0x27, +0x39,0x47,0xce,0xcb,0x09,0x73,0x6a,0x50,0x93,0xc6,0xd0,0x58, +0x1a,0x47,0x6b,0x21,0x96,0x4d,0xa0,0x89,0xb4,0x36,0xa2,0xce, +0xa8,0x1f,0x98,0xe6,0x7a,0x82,0x99,0xae,0x2f,0xe8,0xa3,0x39, +0x34,0x97,0xfa,0x69,0x00,0x5e,0x61,0x88,0x5a,0xd4,0xa6,0x0e, +0x0d,0xd3,0x3a,0x94,0x51,0x4e,0x05,0x8d,0xd0,0x3c,0xba,0x08, +0xb1,0x63,0xa1,0xeb,0x31,0xd6,0xa5,0x25,0xb4,0x94,0xd6,0x83, +0xe7,0x58,0x06,0xdf,0xb1,0x81,0xeb,0x3d,0x56,0xc0,0x7f,0x6c, +0x42,0x9b,0xd2,0x66,0xb4,0x39,0x6d,0x41,0x5b,0xd2,0x56,0xb4, +0x35,0x6d,0x43,0xdb,0xd2,0x76,0xb4,0x3d,0xed,0x60,0xcc,0x26, +0x47,0xd1,0xa6,0x7c,0xda,0x1e,0x2d,0x1c,0x23,0x5b,0x4c,0x4e, +0xd0,0x93,0xa8,0x59,0x2c,0xe4,0xd0,0x8d,0x76,0x43,0x1b,0xbe, +0x37,0xc6,0xd2,0xdf,0x71,0x9f,0x8e,0xf4,0x84,0x61,0x18,0x43, +0x0d,0x83,0xa5,0x18,0xe3,0x8c,0x41,0xc6,0xc5,0xc6,0x70,0x63, +0xbc,0x31,0xc1,0xb8,0xcc,0xa8,0x32,0xa6,0x19,0x13,0x8d,0x61, +0xc6,0x2c,0xe3,0x22,0xe3,0x52,0x63,0x92,0x31,0xc4,0x98,0x6e, +0x4c,0x36,0x2e,0x31,0x46,0x19,0x33,0x8c,0x29,0xc6,0x60,0x63, +0xb4,0x31,0xd3,0x98,0x4a,0x3b,0x1a,0x73,0xc8,0x77,0xb4,0x2b, +0xed,0x8c,0x6b,0xfe,0x8e,0x6b,0x4b,0x09,0xc4,0x91,0xc3,0x74, +0x21,0xbd,0x1e,0xd7,0x5f,0x44,0x4f,0xb8,0xf7,0xc8,0xa3,0x03, +0x21,0xb5,0x13,0x2c,0xd5,0x98,0x8d,0xfa,0xe5,0x93,0xa3,0xf4, +0x24,0xf9,0x5e,0x4a,0x94,0x9e,0xa2,0xa7,0xd1,0x66,0x81,0x7a, +0x77,0xa0,0x67,0xe8,0x1f,0xf4,0x2c,0xfd,0x93,0x56,0xd2,0x2e, +0xf4,0x1c,0xec,0x82,0x7c,0xd4,0x78,0xdc,0x90,0x12,0x8d,0xa5, +0x9c,0xfc,0xe0,0xb6,0xe3,0x47,0xf4,0xc7,0x4f,0xe4,0x17,0x5a, +0xcb,0xb8,0xfc,0x6f,0x7b,0xe0,0x7f,0x22,0xf3,0xff,0x81,0x9c, +0x8d,0x58,0x23,0xc5,0x88,0x33,0x52,0x8d,0x5a,0x46,0x9a,0x11, +0x6f,0xa4,0x1b,0x09,0x46,0x86,0x91,0x69,0xb4,0x32,0xb2,0x8c, +0xd6,0x46,0xb6,0xd1,0xc6,0xf0,0x19,0x6d,0x8d,0x1c,0xa3,0x9d, +0x91,0x6b,0xb4,0x37,0xfc,0x46,0x07,0x23,0x60,0x74,0x34,0x82, +0x46,0x27,0x23,0x64,0x74,0x36,0x2c,0xa3,0xd2,0xb0,0x8d,0x2e, +0x46,0xb2,0xe1,0x18,0x5d,0x8d,0xb0,0xd1,0xcd,0xa8,0x63,0x74, +0x37,0x98,0xc1,0x0d,0x61,0x44,0x8c,0x3c,0x23,0xdf,0xe8,0x61, +0xf4,0x34,0x0a,0x8c,0x5e,0x46,0x6f,0xa3,0xd0,0xe8,0x63,0xf4, +0x35,0x8a,0x8c,0x7e,0x46,0x7f,0xa3,0xd8,0x18,0x60,0x0c,0x34, +0xea,0x1a,0x25,0x46,0xa9,0x51,0xcf,0xa8,0x6f,0x24,0x1a,0x65, +0x46,0x6d,0xa3,0xdc,0x48,0x32,0x1a,0x18,0x0d,0x8d,0x46,0x46, +0x85,0xd1,0xd8,0x68,0x62,0xb4,0x34,0x9a,0x1a,0xcd,0x8d,0x16, +0x18,0xed,0xcd,0x68,0x0f,0x3a,0x88,0xf6,0xa4,0x83,0x69,0x2f, +0x7a,0x11,0xed,0x4d,0x87,0xd0,0x3e,0x74,0x28,0x1d,0x46,0x6f, +0xa2,0x17,0xd3,0x9b,0xe9,0x70,0x7a,0x0b,0xbd,0x84,0xde,0x4a, +0x47,0xd0,0xdb,0xe8,0x48,0x7a,0x3b,0x1d,0x45,0xef,0xa0,0xa3, +0xe9,0x72,0x3a,0x86,0xde,0x49,0xc7,0xd2,0x15,0x74,0x1c,0xbd, +0x8b,0x8e,0xa7,0x77,0xd3,0x01,0x74,0x02,0x5d,0x49,0x27,0xd2, +0x55,0x74,0x12,0xbd,0x87,0x4e,0xa6,0x53,0xe8,0x54,0x3a,0x8d, +0x5e,0x4a,0xa7,0xd3,0x7b,0xe9,0x3f,0xe8,0x0c,0xba,0x9a,0xae, +0xa1,0x33,0xe9,0x5a,0x7a,0x1f,0xbd,0x8c,0xae,0xa3,0xf7,0xd3, +0x59,0x74,0x3d,0x7d,0x80,0x5e,0x4e,0xab,0xe8,0x6c,0x3a,0x87, +0x5e,0x41,0xfb,0xd2,0xb9,0xb4,0x1f,0xbd,0x92,0xf6,0xa7,0xf3, +0xe8,0x55,0x74,0x3e,0xbd,0x9a,0x5e,0x43,0xaf,0xa5,0x4b,0xe8, +0x02,0x7a,0x03,0x5d,0x4c,0xbb,0xd3,0xeb,0xe8,0x32,0xba,0x94, +0xde,0x48,0x1f,0xa6,0x1b,0xe9,0x23,0x74,0x13,0x7d,0x94,0x3e, +0x46,0x1f,0xa7,0x4f,0xd0,0x27,0xe9,0x66,0xfa,0x14,0xdd,0x42, +0x9f,0xa6,0xcf,0xd0,0x67,0xe9,0x56,0xfa,0x1c,0xdd,0x46,0x9f, +0xa7,0xdb,0xe9,0x0b,0xf4,0x45,0xfa,0x12,0xdd,0x41,0xff,0x49, +0x5f,0xa6,0xaf,0xd0,0x57,0xe9,0x6b,0xf4,0x75,0xfa,0x06,0xdd, +0x49,0xdf,0xa4,0x6f,0xd1,0xb7,0xe9,0x3b,0xf4,0x5d,0xfa,0x1e, +0x7d,0x9f,0xee,0xa2,0x1f,0xd0,0xdd,0xf4,0x43,0xba,0x87,0x7e, +0x44,0x3f,0xa6,0x9f,0xd0,0xbd,0xf4,0x53,0xba,0x8f,0xee,0xa7, +0x9f,0xd1,0xcf,0xe9,0x17,0xf4,0x4b,0xfa,0x15,0xfd,0x9a,0x1e, +0xa0,0xdf,0xd0,0x83,0xf4,0x5b,0x7a,0x88,0x7e,0x47,0x0f,0xd3, +0xef,0xe9,0x11,0xfa,0x03,0xfd,0x91,0xfe,0x44,0x8f,0xd2,0x9f, +0xe9,0x31,0xfa,0x0b,0x3d,0x4e,0x7f,0xa5,0xbf,0xd1,0x87,0xe8, +0x06,0xda,0xde,0xd5,0x8e,0x39,0xc0,0xaa,0x12,0xf5,0x8d,0x80, +0x18,0xf7,0x29,0x7b,0x02,0x30,0x2a,0x0e,0x08,0x35,0x05,0xd8, +0x35,0x0d,0x88,0x35,0x1e,0x88,0x35,0x93,0x4c,0x24,0x97,0xe3, +0x6f,0x12,0x99,0x0d,0xd4,0x9a,0x4c,0xe6,0xe2,0x6f,0x2a,0x99, +0x0f,0x0c,0x9b,0xe6,0x62,0xd8,0x4c,0x17,0xc3,0x2e,0x23,0x2b, +0x80,0x62,0xb3,0xc8,0x4a,0xfc,0x55,0x01,0xc1,0xd6,0xe1,0x68, +0xf9,0x04,0x60,0x8e,0x3b,0xbb,0x7a,0x85,0xfb,0x04,0x60,0x2e, +0x79,0x0e,0x7f,0x57,0xba,0x4f,0x00,0xe6,0xb9,0x4f,0x00,0xae, +0x72,0x9f,0x00,0x5c,0xe3,0x3e,0x01,0xb8,0xd6,0x7d,0x02,0xb0, +0xc8,0x7d,0x02,0xb0,0xc4,0x7d,0x02,0xb0,0x94,0x7c,0x8c,0xbf, +0x65,0x64,0x2f,0xd9,0x4f,0x6e,0x72,0x51,0xf0,0x36,0x72,0x08, +0x7f,0xb7,0xc3,0x9b,0x58,0x4a,0xee,0x70,0xbf,0xc9,0xf1,0x00, +0xfc,0x87,0x95,0xe4,0x41,0xf8,0x2b,0xf7,0x90,0x8d,0xf0,0x5b, +0x9e,0x26,0x8f,0xc8,0x27,0x00,0xe4,0x15,0x58,0xfe,0xf7,0xc9, +0x6b,0x72,0xee,0x9f,0xbc,0x27,0xe7,0xfb,0xc9,0xfb,0x72,0x66, +0x9d,0x3e,0x23,0xad,0xa1,0x61,0x38,0x1d,0x61,0xd9,0x63,0xe0, +0xab,0x54,0x1a,0xb1,0xce,0x29,0xf8,0x29,0x71,0x72,0x36,0xdd, +0xa8,0xa5,0xc5,0x98,0x7b,0xe9,0x44,0x99,0xef,0xc7,0xf1,0x87, +0xd6,0x21,0xce,0x8c,0xae,0x4d,0xfd,0xc4,0xda,0x2b,0x73,0xfb, +0x44,0x63,0x4c,0x99,0xc1,0xc7,0xfa,0x12,0x31,0xe6,0xd7,0xd6, +0x01,0xff,0xc8,0xcc,0x35,0xd6,0x37,0x32,0xd6,0xcc,0x29,0x93, +0xd1,0x66,0xf6,0x4c,0xeb,0x70,0x20,0xac,0x56,0xaf,0xfe,0xe8, +0xae,0x5f,0xf5,0x62,0xcd,0x5f,0x11,0x6d,0xfe,0x6e,0x9d,0x40, +0xc4,0x79,0x2a,0x94,0x6c,0x9d,0xb6,0xce,0x58,0x7f,0x5c,0x88, +0x3b,0x89,0x4d,0x7d,0x9f,0xff,0x5d,0xf4,0x69,0x27,0xc9,0xec, +0x36,0xd1,0xac,0x36,0x32,0x02,0x15,0xbb,0x65,0xf6,0x9a,0x0b, +0x51,0xa8,0xdf,0x8b,0x43,0x6d,0x1b,0x71,0x68,0x18,0x91,0x28, +0x73,0x63,0xd1,0x88,0x9d,0x67,0xe7,0xcb,0xec,0x32,0xd5,0xb1, +0xa8,0x16,0x89,0xd6,0xc8,0x0c,0x53,0x23,0x1e,0x55,0x19,0x5f, +0xfe,0x1a,0x95,0xda,0xdd,0x64,0x54,0x9a,0xd5,0x3b,0xbb,0x02, +0x91,0x69,0x2f,0x37,0x36,0xed,0x8b,0xe8,0xb4,0xbf,0x97,0xcb, +0x45,0x66,0x71,0x89,0x46,0xa8,0xfe,0x25,0xd5,0x31,0x2a,0x22, +0xd4,0xd1,0x35,0xf3,0xb3,0xb8,0x71,0xea,0x94,0x0b,0x2b,0x6b, +0x67,0x78,0x91,0x6a,0x5a,0x3d,0x2f,0x56,0xf5,0xf2,0xab,0x5c, +0x88,0x57,0xaf,0x71,0xd7,0xdc,0x5e,0x17,0xcd,0x8d,0x92,0xf2, +0x90,0x97,0x0f,0x45,0xc6,0xac,0xd1,0x3c,0x28,0xf6,0x2d,0xb5, +0x4f,0xca,0x78,0xd5,0xcd,0x7d,0xb2,0xc7,0x5e,0x2e,0x63,0xd5, +0x68,0xbe,0x13,0x3d,0xdb,0x89,0xcc,0x75,0x12,0x7b,0x5e,0xe6, +0x39,0x89,0x66,0x39,0xb1,0xef,0xd7,0x73,0x9c,0xc4,0xee,0xb1, +0x37,0xfc,0x35,0xbf,0x89,0x8a,0x5f,0x37,0xdb,0x4f,0x79,0x39, +0x4d,0x62,0xd7,0x26,0xdb,0xf6,0x33,0xf6,0xb3,0x32,0x92,0xfd, +0xcf,0xb2,0x99,0xd8,0x3b,0x65,0x3e,0x13,0x2f,0x9b,0x89,0xcc, +0x65,0x82,0x08,0xf7,0x42,0xa6,0x0f,0x3b,0xbf,0x3a,0xd7,0x47, +0x34,0xd3,0x87,0xbd,0xf3,0xdf,0xc7,0xbc,0x71,0x0b,0x32,0xef, +0x4d,0x7d,0x35,0x67,0xb0,0x7d,0xbf,0x8c,0x78,0xad,0xbd,0x71, +0xe7,0xad,0xd3,0x7f,0x1f,0xf1,0xc6,0xee,0xf9,0xd7,0x88,0x37, +0xd9,0x76,0x23,0xde,0x89,0x6e,0x26,0x8c,0xaa,0x98,0xd9,0x88, +0x7a,0xa3,0x11,0xaf,0x8c,0x77,0xbf,0xb8,0x10,0xf1,0x16,0xba, +0x31,0xef,0x5c,0x37,0x87,0xc5,0xda,0xd8,0x87,0x62,0x5f,0x71, +0x23,0xdf,0x3d,0x32,0xf6,0x8d,0x3d,0x8f,0xe8,0x37,0x45,0xc5, +0xbf,0xab,0xdc,0x8c,0x2a,0xdf,0x7a,0xb9,0x26,0x10,0xfb,0x06, +0x6b,0x09,0xc4,0xbf,0xc5,0xb5,0xca,0x6a,0x35,0x43,0x14,0xdc, +0xeb,0x42,0x14,0xfc,0x66,0xad,0x3d,0xb5,0x8e,0xfe,0x6d,0x2c, +0x7c,0x50,0xe6,0x7d,0x50,0xf9,0x1e,0x64,0x3c,0x3c,0xde,0xcd, +0xeb,0xe0,0xc5,0xc4,0x0f,0xfd,0x25,0x2a,0xae,0x87,0xb8,0x78, +0x9c,0x1b,0x19,0xaf,0x70,0x63,0x63,0x99,0x77,0xa1,0x3a,0x32, +0xae,0x8e,0x8b,0x6b,0xe6,0x4c,0xf8,0x6b,0x74,0xec,0xe5,0x42, +0xf8,0xbb,0x18,0x79,0x42,0xd2,0x54,0xc4,0xc9,0x2b,0xdc,0x48, +0xf9,0x51,0xc4,0xca,0x5b,0x2e,0x64,0x39,0x90,0xf9,0x0d,0xa2, +0xf1,0xb2,0xad,0x45,0xcc,0x13,0x92,0xab,0xfe,0x25,0x73,0x01, +0xa2,0xe6,0xe4,0x57,0x2e,0xe4,0x7a,0xe9,0x7d,0x21,0x6e,0x7e, +0xe8,0x42,0xe4,0xec,0x65,0x1e,0xf0,0xa2,0xe7,0x3b,0xdc,0xf8, +0xf9,0x8d,0x68,0xd6,0x80,0xb4,0x7a,0x5e,0xa6,0x00,0x37,0x82, +0x8e,0x66,0x08,0xb8,0x33,0xfd,0x69,0x37,0x7a,0x96,0x59,0x01, +0x64,0x36,0x00,0x19,0x39,0xbb,0x99,0x00,0xfe,0x92,0x07,0x40, +0x66,0x01,0x98,0x29,0x33,0x00,0xa8,0xf5,0xff,0x95,0x7f,0x59, +0xfd,0x5f,0x86,0x68,0xfa,0xaf,0x2b,0xff,0xa3,0xd1,0xf4,0xe7, +0xb9,0x07,0x2f,0xac,0xf6,0x1f,0xe9,0x5f,0xe2,0x5f,0xa6,0xe2, +0xea,0xff,0x64,0x9d,0x7f,0xf0,0x98,0xbb,0xd2,0xdf,0x5b,0xe7, +0x2f,0x57,0xf9,0xd7,0xd7,0xd6,0xc0,0x0b,0x6d,0x15,0xbc,0xbb, +0x06,0xfe,0xbf,0x18,0x81,0xff,0x1f,0xc7,0xdf,0xb4,0x13,0x59, +0xfb,0xdf,0xc8,0x03,0xf4,0xbf,0x2a,0x07,0x10,0x74,0xb2,0x3a, +0x03,0xd0,0xea,0x7f,0xcd,0x01,0xa4,0xcf,0x8b,0x41,0x57,0x2f, +0x60,0x44,0x6a,0xe8,0xaf,0x18,0x21,0x11,0x42,0xce,0x8a,0xc5, +0xce,0x8d,0x9b,0x1f,0xb3,0xff,0xdf,0xcd,0x8a,0xc5,0xd7,0x96, +0xb3,0x62,0x49,0x4f,0x69,0x39,0x7c,0x8e,0x7a,0xb3,0x62,0x64, +0xed,0x7f,0x23,0x1f,0xc3,0xff,0xae,0x5c,0x0c,0xfe,0x7f,0x33, +0x0a,0x55,0x2e,0x86,0xff,0xf2,0x9c,0xd0,0xff,0x6f,0x33,0x42, +0x74,0x13,0xf9,0x50,0xfa,0x11,0xfe,0xae,0x7f,0x9d,0xad,0x16, +0x27,0xac,0x7d,0xe2,0xe3,0x98,0x5f,0xaa,0x67,0xab,0x51,0x9b, +0xdf,0xac,0x03,0xf0,0x23,0x54,0x76,0xbf,0xea,0x19,0x6b,0xd4, +0xe1,0xa8,0x37,0x67,0x2d,0xf6,0x7a,0x9e,0x84,0x38,0x29,0xe7, +0xad,0x85,0x9b,0x0d,0x43,0xfc,0x11,0xf5,0x20,0xc4,0x39,0xe9, +0x3d,0xa0,0x5e,0xc4,0xeb,0x0d,0x71,0xde,0x61,0xe2,0xd3,0xea, +0xb9,0x6b,0x78,0x0e,0xd1,0x9e,0x71,0x3d,0x86,0x08,0xb5,0x2d, +0xc8,0xe0,0xa3,0xbf,0x9b,0xbd,0x4e,0x7c,0x09,0xbd,0x55,0x57, +0xec,0xbf,0x30,0x7b,0xed,0xf6,0x9a,0xcc,0x1c,0xa7,0xf5,0x1c, +0x7c,0x84,0x48,0x6c,0xb5,0x8f,0xe0,0xe5,0x81,0x8b,0xce,0x5b, +0x47,0xe2,0xc4,0x17,0x17,0x7a,0xf3,0xc2,0xbc,0x75,0xa4,0x56, +0xf5,0xcc,0xb5,0xeb,0x15,0xb8,0x7d,0x2b,0xf3,0xb5,0xd9,0x93, +0x23,0xf1,0xd1,0xdc,0x6c,0x72,0xf6,0x3a,0x92,0xe8,0xcd,0x5f, +0xcb,0x1c,0x6c,0x51,0xaf,0x40,0xca,0x57,0xf6,0xb8,0xf8,0x3a, +0x3a,0x7f,0x2d,0x8e,0xc9,0xd9,0x6b,0x7b,0x89,0x9b,0x11,0xed, +0x26,0xf4,0xe0,0x11,0xfb,0x76,0xf1,0x83,0xcc,0x78,0xe6,0x34, +0x16,0x3f,0xdb,0x77,0xa1,0xb7,0x8e,0xcb,0x2c,0x66,0x91,0x18, +0xf1,0x8b,0xd3,0x32,0x9a,0xa7,0x2c,0x52,0x5b,0x9c,0x8e,0xa4, +0x46,0x52,0xd0,0xbb,0x1f,0x01,0x99,0xbe,0x95,0xd9,0xc0,0xfc, +0x5d,0xc5,0x47,0xe8,0xaf,0x0f,0x95,0x6d,0xfc,0xeb,0x7c,0xb0, +0x3b,0x1b,0x1c,0x73,0x5c,0x9b,0x0f,0xae,0x72,0x67,0x84,0x1f, +0xf2,0x72,0x39,0x69,0x73,0xc2,0xf3,0xb5,0x59,0xe1,0x2f,0x2e, +0x58,0xc7,0xf3,0xee,0xcc,0x70,0x33,0x17,0x6f,0xc6,0x28,0xab, +0xf8,0x9e,0xb2,0x88,0x11,0x0f,0x7b,0xa0,0x99,0xb7,0x48,0x8b, +0xa8,0x59,0xc3,0x28,0x0e,0x45,0xad,0xe0,0x7e,0xa0,0x51,0xe8, +0xdf,0xcc,0x0f,0xef,0x80,0x1d,0xd4,0xe7,0x87,0xa3,0x18,0x75, +0xb9,0xb2,0x7d,0x6a,0x5e,0xb8,0xf6,0x31,0xe8,0x7b,0xb5,0xdd, +0xf3,0xb2,0xfe,0x78,0x33,0xc3,0x4f,0x5f,0x98,0x1b,0xae,0x9e, +0x19,0x6e,0xa0,0xcd,0x0d,0x2f,0xbc,0x80,0x64,0x4f,0xba,0x56, +0x6e,0xb7,0xca,0xc4,0xc3,0xdd,0x1c,0x3c,0xde,0x0c,0xf1,0x9a, +0xea,0x39,0xe2,0x94,0x53,0x6a,0x96,0xd8,0x9b,0x21,0x96,0xf3, +0xc3,0x0b,0xdd,0xfc,0x37,0x7d,0xd2,0xc7,0xa5,0xef,0x83,0x3d, +0x5b,0x20,0xf3,0xdb,0x64,0xf6,0xca,0xbc,0x37,0xf3,0xc5,0xec, +0x3f,0x61,0xb1,0xba,0xf9,0xa6,0xc2,0x52,0x0d,0xce,0x99,0xa1, +0xb2,0xd2,0x3c,0xed,0xef,0xe3,0x9f,0xe6,0x5f,0x12,0x88,0x83, +0xbd,0xe9,0x1d,0x7a,0x59,0xe6,0x7e,0x81,0x86,0x73,0xcd,0x4b, +0xb7,0x69,0x92,0x1b,0xc1,0xcc,0x95,0x79,0xfa,0x11,0xbb,0xd4, +0x22,0x23,0x10,0xc5,0x24,0x92,0xda,0x24,0x09,0xb1,0x47,0x0a, +0x49,0x45,0x44,0x93,0x4e,0x32,0x48,0x26,0xc9,0x22,0xd9,0xc4, +0x47,0x72,0x48,0x2e,0xf1,0x93,0x00,0x09,0x92,0x10,0xe2,0x17, +0x1b,0x31,0x4e,0x98,0xd4,0x21,0x8c,0x70,0x22,0x48,0x84,0xe4, +0xa9,0x67,0x60,0x45,0xee,0x53,0xb0,0x12,0xf7,0x39,0x58,0x7d, +0x52,0x46,0xca,0x49,0x03,0xd2,0x90,0x34,0x22,0x15,0xa4,0x31, +0x69,0x42,0x9a,0x92,0x66,0xa4,0x39,0x69,0x41,0x5a,0x92,0x56, +0x88,0x5d,0xda,0x90,0x51,0xa4,0x1d,0x69,0xef,0x3e,0x2d,0xeb, +0x44,0x3a,0x93,0x4a,0xd2,0x85,0x74,0x25,0xdd,0x48,0x77,0xd2, +0xc3,0x7d,0x72,0xd6,0x9b,0xf4,0x21,0x7d,0x49,0x3f,0xd2,0x9f, +0x0c,0x20,0x03,0xc9,0x20,0x32,0x98,0x5c,0x44,0x86,0x90,0xa1, +0x64,0x18,0x19,0x4d,0x86,0x23,0xa6,0x99,0x4d,0xda,0x92,0xab, +0x11,0x47,0x4d,0x41,0xfc,0xb4,0x01,0xb1,0xce,0x9b,0x88,0x83, +0x56,0x20,0x22,0xda,0x88,0x88,0xe9,0x03,0xc4,0x61,0xe3,0x11, +0x0b,0x7d,0x4a,0xc6,0x22,0xe2,0x5a,0x87,0xe8,0xe9,0x45,0xc4, +0x4b,0x6f,0x23,0x4e,0x92,0xef,0x46,0xbd,0x42,0xde,0x22,0xef, +0x21,0x4e,0xda,0x87,0x58,0x6a,0x27,0x79,0x99,0x8c,0x71,0xdf, +0x11,0x9b,0x83,0x36,0xcf,0x76,0xdb,0x27,0xdf,0x50,0xbf,0x1a, +0x57,0x5f,0x88,0x5a,0x1e,0x40,0x3d,0x97,0x42,0x1e,0x13,0xc8, +0x48,0x1c,0x37,0x1a,0xf1,0xd7,0x28,0x48,0x6a,0x0a,0xe4,0x26, +0xa5,0xd5,0x02,0x2d,0x19,0x86,0xda,0xc8,0x98,0x6f,0x2a,0x22, +0xb4,0x24,0x77,0x46,0x6a,0x1b,0xf9,0x04,0x12,0xb2,0x88,0x43, +0xee,0x41,0x5b,0x63,0xdd,0xba,0xc4,0xb9,0x91,0x62,0x6d,0xc8, +0x6c,0x12,0xa2,0xb7,0xcb,0x10,0xf1,0x55,0xfd,0xad,0x7c,0xff, +0x27,0x12,0xfd,0x9f,0x48,0x71,0x0d,0xb9,0xd8,0xcd,0x0a,0xbe, +0x92,0xdc,0x4d,0x56,0x41,0x42,0xf7,0x41,0x06,0x57,0xe0,0xd7, +0x48,0xf9,0x46,0x1c,0x64,0xf0,0x1d,0xed,0x88,0xa1,0x22,0xe7, +0x88,0x2e,0xa1,0x8b,0xe8,0x22,0x32,0x82,0xfe,0x4e,0x4f,0x92, +0x91,0x86,0x7c,0x4b,0x7d,0x8c,0x31,0xc8,0x98,0x45,0xc6,0x1a, +0x55,0xc6,0x15,0xe4,0x3a,0x63,0x9e,0xb1,0x80,0xdc,0x60,0x5c, +0x8f,0xc8,0xf2,0x66,0xe3,0x4e,0xc4,0x94,0xcb,0xe5,0x5b,0x65, +0x64,0x25,0x62,0xca,0xfb,0xc9,0x3d,0xc6,0x83,0xc6,0xa3,0xe4, +0x3e,0x63,0x8b,0xf1,0x1c,0x79,0xd8,0x8d,0x2f,0x1f,0x97,0x6f, +0x98,0x91,0x27,0xe5,0x1b,0x66,0x64,0xb3,0x7c,0xb7,0x8c,0x6c, +0x97,0xef,0x96,0x91,0x17,0x10,0x6b,0x76,0x21,0x3b,0xe4,0xbb, +0x65,0xe4,0x9c,0x7c,0x67,0x8b,0x9c,0x97,0xef,0x6c,0x51,0x53, +0xbe,0xb3,0x45,0x63,0x65,0x94,0x49,0x6b,0xc9,0x77,0xb6,0x68, +0xbc,0x3b,0x4f,0x97,0x20,0x6e,0x14,0x37,0xd2,0xda,0xd5,0x6f, +0x17,0x41,0x76,0xd1,0x37,0xab,0x64,0x66,0x71,0xb9,0xbe,0xa1, +0x2b,0x99,0xa1,0xde,0x8b,0xa1,0x90,0x4b,0xf5,0xc8,0x3f,0x4a, +0x67,0xa5,0x25,0x45,0xb3,0xd1,0x7a,0xb9,0x68,0x65,0x26,0xda, +0xe0,0x6b,0x32,0xf3,0xac,0x97,0x77,0xf6,0xaf,0x59,0x67,0x43, +0x6f,0xea,0x19,0x67,0x55,0xb6,0xd9,0xe5,0x99,0xf5,0xff,0x5d, +0x9e,0xd9,0x9c,0xb2,0xea,0x0c,0xb3,0x32,0xbf,0x6c,0x75,0x76, +0x59,0x2f,0xb7,0x6c,0x34,0xb3,0xac,0x97,0x53,0xb6,0x3a,0x9f, +0x6c,0x16,0x95,0xb9,0x64,0xd3,0xf6,0x84,0xfa,0xc9,0xec,0xb1, +0x32,0x77,0xac,0xcc,0x1c,0x2b,0xf3,0xc6,0xe6,0x7e,0x56,0x33, +0x67,0xac,0xcc,0x18,0xeb,0xe5,0x8a,0x8d,0x66,0x8a,0x4d,0x1f, +0x99,0xb9,0x53,0xe6,0x88,0x8d,0x66,0x87,0x95,0xb9,0x61,0x59, +0x72,0xf6,0x8a,0x68,0x56,0xd8,0xac,0xf7,0x82,0x1f,0x44,0x33, +0xc1,0xca,0x3c,0xb0,0xff,0x9a,0x05,0xb6,0x3a,0x07,0x6c,0x34, +0xfb,0xab,0x78,0x50,0xcf,0xfc,0xea,0xe6,0x7d,0x75,0xb3,0xbe, +0xca,0x8c,0xaf,0x32,0xdf,0xab,0x97,0xeb,0x35,0xd0,0xb2,0x3a, +0xcb,0x6b,0xcd,0x1c,0xaf,0xd1,0x0c,0xaf,0xc1,0x63,0xe9,0xb3, +0x73,0xd6,0x56,0x67,0x77,0x95,0xb9,0x5d,0xab,0x33,0xbb,0xca, +0xbc,0xae,0x32,0xa7,0x6b,0x6e,0xbc,0x97,0xcb,0x55,0x3c,0x2a, +0x1e,0xab,0xce,0xe1,0xfa,0x1f,0x65,0x70,0x4d,0x7f,0xd8,0xcb, +0xdd,0x2a,0xf3,0xb6,0xba,0x59,0x5b,0x1b,0x46,0xf3,0xb4,0xd6, +0xcc,0xd1,0x1a,0x5c,0x28,0xf3,0xb3,0x6a,0xd9,0x59,0xdb,0xa5, +0x3f,0x2d,0x33,0xb2,0x06,0xaf,0x0e,0xec,0x93,0x79,0x58,0xa3, +0xf9,0x57,0xab,0xb3,0xaf,0x86,0xae,0xad,0x13,0xe3,0xe5,0x5d, +0xf5,0xf2,0xac,0x56,0x67,0x58,0x95,0xf9,0x55,0xfd,0x4b,0x2c, +0xea,0x5b,0x29,0x73,0xaa,0x8a,0xed,0xd1,0x7c,0xaa,0x32,0x9b, +0x6a,0x56,0xf3,0xec,0x7b,0xbc,0xcc,0xa9,0xd5,0x79,0x53,0x33, +0x3f,0x94,0xf9,0x52,0xa3,0xb9,0x52,0x65,0x96,0xd4,0x68,0x8e, +0xd4,0x68,0x76,0x54,0xdf,0x85,0xac,0xa8,0x7f,0xcd,0x87,0x2a, +0x73,0xa1,0xfe,0x6b,0x26,0xd4,0xbf,0xcf,0x83,0x2a,0xde,0xaf, +0xce,0x80,0x9a,0x33,0xbb,0x3a,0xfb,0xa9,0x7c,0x23,0x3c,0x66, +0xac,0xca,0xde,0xe8,0xe5,0x6e,0x94,0x99,0x1b,0x5f,0x73,0x33, +0x35,0x7a,0x79,0x1a,0xff,0x9a,0xa5,0xb1,0xf0,0x2f,0x19,0x1a, +0xa3,0xd9,0x19,0x65,0x6e,0xc6,0x7f,0x97,0x97,0x71,0x8f,0x96, +0x91,0x51,0xe6,0x63,0xac,0xce,0xc6,0xe8,0xe5,0x62,0x8c,0x66, +0x62,0xf4,0x72,0x30,0x56,0xe7,0x5f,0x7c,0xc9,0xcd,0xbd,0xf8, +0x55,0xdc,0x21,0x37,0xdb,0xa2,0xcc,0xb5,0x28,0x33,0x2d,0xca, +0x3c,0x8b,0x45,0xff,0x92,0x63,0x51,0x66,0x58,0xf4,0x72,0x2b, +0x46,0x33,0x2b,0x4e,0xae,0xf5,0x98,0x9b,0x53,0xd1,0xcd,0xa6, +0xe8,0xe6,0x52,0xac,0x15,0xdf,0x56,0x65,0x51,0x9c,0x18,0x5f, +0xa5,0x32,0x27,0xca,0xbc,0x89,0xff,0x9a,0x35,0xb1,0x3a,0x67, +0x62,0x34,0x5b,0x62,0xe3,0xbf,0x64,0x4a,0x94,0x79,0x12,0xa3, +0x59,0x12,0x65,0x86,0x44,0x99,0x1f,0xd1,0xcb,0x8d,0xf8,0xb2, +0x96,0x15,0xb1,0x66,0x4e,0xc4,0x68,0x46,0x44,0x27,0x51,0x24, +0x96,0x6a,0xd9,0x10,0x65,0x2e,0xc4,0xea,0x4c,0x88,0x32,0x0f, +0xa2,0xcc,0x81,0x78,0xff,0x85,0xdc,0x87,0xaf,0x27,0xee,0xd2, +0x72,0x1e,0xfe,0x47,0x19,0x0f,0xc5,0x85,0x5c,0x87,0x32,0xcf, +0xa1,0xcc,0x72,0x38,0x50,0xe5,0x35,0xac,0x99,0xd3,0xf0,0x09, +0x37,0x9f,0x61,0x75,0x36,0xc3,0xef,0x11,0xb7,0xcb,0x0c,0x86, +0xa5,0x49,0x4d,0xdc,0xbc,0x85,0xd1,0x7c,0x85,0xd5,0xd9,0x0a, +0x17,0x25,0xad,0xbc,0x90,0xa7,0xd0,0xcb,0x4b,0x58,0x9d,0x91, +0x50,0xe6,0x23,0xb4,0x93,0x1b,0x26,0xb7,0x77,0x73,0x10,0x5e, +0xa2,0xf2,0x0f,0xca,0xec,0x83,0xeb,0x92,0x5f,0xba,0x90,0x69, +0xb0,0x3a,0xcf,0x60,0x1d,0x37,0xbf,0x60,0x34,0xb7,0xa0,0xcc, +0x2a,0x18,0xcd,0x29,0x18,0xcd,0x26,0xf8,0xdd,0x85,0x2c,0x82, +0x7f,0xcd,0x1f,0x28,0x73,0x07,0xfe,0x6b,0xe6,0xc0,0xbf,0xcf, +0x1b,0xf8,0x9a,0x96,0x31,0xf0,0xb3,0xea,0x6c,0x81,0xd5,0x79, +0xd8,0xdc,0xaf,0x0f,0xc1,0xb6,0xa5,0x3d,0xed,0x6b,0x1a,0x90, +0x96,0x9d,0xa6,0x14,0x6b,0x6f,0xde,0x26,0xe1,0xc8,0x43,0xc6, +0x9c,0xb0,0x70,0xdf,0x1c,0x4f,0x27,0x27,0xcd,0x24,0x2d,0xea, +0x58,0x4f,0xde,0x97,0xdf,0xf1,0x91,0xdf,0xec,0x11,0xcb,0xc2, +0xbd,0xc3,0xbd,0xec,0x0f,0xec,0xdd,0xf6,0x87,0xf6,0x1e,0xfb, +0x23,0xfb,0x63,0xfb,0x13,0x7b,0xaf,0xfd,0xa9,0xbd,0x2f,0x3c, +0x24,0xdc,0x4f,0x7e,0x71,0xed,0xbf,0xf2,0x65,0x36,0xfb,0xa7, +0x70,0x0f,0x3d,0x1b,0xfa,0x7f,0xe7,0xeb,0x2d,0xee,0x93,0x47, +0xf9,0x04,0x52,0x3e,0x79,0x94,0x4f,0x20,0xe5,0x93,0x47,0xf9, +0x04,0xb2,0xb3,0xd5,0xc5,0xaa,0xb4,0xba,0x5a,0xbd,0xac,0x3e, +0x56,0x6f,0xab,0xaf,0xd5,0xde,0xea,0x68,0x75,0xb0,0x3a,0x59, +0xdd,0xac,0x1e,0x56,0x77,0xab,0xa7,0x35,0xda,0x1a,0x6f,0x8d, +0xb5,0xc6,0x58,0xe3,0xac,0x89,0xd6,0x04,0xf7,0xe9,0xe2,0xa5, +0xd6,0x54,0x6b,0x8a,0x35,0xcd,0x9a,0x61,0x4d,0xb7,0x66,0x5a, +0x43,0xd5,0xb3,0xc8,0x61,0xea,0x69,0x64,0x3f,0xf5,0xac,0xb2, +0xbf,0x7a,0x5a,0x19,0x7d,0xea,0x78,0xb9,0x35,0xcb,0xaa,0xb2, +0xae,0xb4,0xae,0xb2,0xe6,0x5a,0xf3,0xac,0x6b,0xad,0x6b,0xe4, +0xf3,0xc7,0xff,0x2c,0x9b,0xb0,0xfb,0x25,0xba,0xca,0x70,0x97, +0xff,0x79,0xe6,0xdd,0xff,0x28,0xeb,0x6e,0x24,0x88,0x1e,0x6c, +0x60,0xcc,0x35,0xae,0x22,0xc4,0xb8,0xda,0xb8,0x9a,0xc4,0xc8, +0x27,0xbd,0x24,0xd6,0x58,0x02,0xff,0xa3,0x96,0xb1,0xdc,0x58, +0x41,0x12,0x8c,0x95,0xc6,0x53,0x24,0xc9,0x78,0x0e,0x3e,0x47, +0x3e,0xbc,0x8d,0xd7,0x48,0x01,0xe4,0xfe,0x0d,0x29,0x76,0xbf, +0xeb,0x55,0xcf,0xfd,0xae,0x57,0x7d,0xf7,0xcb,0xd3,0x65,0xee, +0x37,0xa7,0xcb,0xdd,0xaf,0x4d,0x37,0x70,0xbf,0x18,0xdd,0xd0, +0xfd,0xe6,0x79,0x23,0xf7,0x5b,0xce,0x15,0xee,0x57,0x9c,0x1b, +0xbb,0x5f,0x6b,0x6e,0xe2,0x7e,0xa5,0xbc,0xa9,0xfb,0x95,0xf2, +0x66,0xee,0xf7,0xc9,0x9b,0xbb,0x5f,0x26,0x6f,0xe1,0x7e,0x93, +0xbc,0xa5,0xfb,0x25,0xf0,0x56,0xee,0xf7,0xb7,0x5b,0xbb,0x5f, +0xde,0x6e,0xe3,0x7e,0x73,0xbb,0xad,0xfb,0x55,0xed,0x76,0xee, +0xb7,0xbc,0xda,0xa3,0x1f,0x67,0x92,0x8e,0x90,0xe8,0xb5,0xe4, +0x5a,0xeb,0x3e,0xeb,0x09,0x72,0x8b,0x9c,0x51,0x27,0x6b,0x64, +0x16,0x44,0x72,0x9f,0xd3,0xcd,0xe9,0x49,0xee,0x77,0xc6,0x39, +0xb3,0xc8,0x43,0x4e,0x95,0x53,0x45,0x9e,0x71,0x4e,0x3a,0x27, +0xc9,0xb3,0x90,0x4b,0x3a,0xd9,0x0a,0xa9,0xd8,0x64,0x3b,0x24, +0x32,0x87,0xec,0x90,0xf9,0x0c,0xc9,0xab,0x32,0xa3,0x21,0x79, +0x3d,0x7c,0x63,0xf8,0x46,0xb2,0x33,0x7c,0x4b,0xf8,0x16,0xf2, +0x66,0xf8,0xce,0xf0,0x9d,0xe4,0xad,0xf0,0xca,0xf0,0x4a,0xf2, +0x76,0x78,0x4d,0x78,0x0d,0x79,0x27,0xbc,0x2e,0xbc,0x8e,0xbc, +0x1b,0x09,0x44,0x02,0xe4,0xbd,0xea,0x11,0x1e,0xb7,0xca,0xec, +0xca,0xd2,0x58,0x3a,0x83,0xe1,0x65,0x59,0x2c,0x9b,0xf9,0x58, +0x0e,0xcb,0x65,0x7e,0x16,0x60,0x41,0x16,0x62,0x16,0xb3,0x99, +0xc3,0xc2,0xac,0x0e,0x63,0x8c,0x33,0xc1,0x22,0x2c,0x8f,0xe5, +0xb3,0x02,0x56,0xc8,0x8a,0x58,0x31,0xab,0xcb,0x4a,0x58,0x29, +0xab,0xc7,0xea,0xb3,0x32,0x56,0xce,0x1a,0xb0,0x86,0xac,0x11, +0xab,0x60,0x8d,0x59,0x13,0xd6,0x94,0x35,0x63,0xcd,0x59,0x0b, +0xd6,0x92,0xb5,0x62,0xad,0x59,0x1b,0xd6,0x96,0xb5,0x63,0xed, +0x59,0x07,0xd6,0x91,0x75,0x62,0x9d,0x59,0x25,0xeb,0xc2,0xba, +0xb2,0x6e,0xac,0x3b,0xeb,0xc1,0x7a,0xb2,0x5e,0xac,0x37,0xeb, +0xc3,0xfa,0xb2,0x7e,0xac,0x3f,0x1b,0xc0,0x06,0xb2,0x41,0x6c, +0x30,0xbb,0x88,0x0d,0x61,0x43,0xd9,0x30,0x76,0x31,0x1b,0xce, +0x2e,0x61,0x23,0xd8,0x48,0x36,0x8a,0x8d,0x66,0x63,0xd8,0x58, +0x36,0x8e,0x8d,0x67,0x13,0xd8,0x44,0x36,0x89,0x4d,0x66,0x53, +0xd8,0x54,0x36,0x8d,0x5d,0xca,0xa6,0xb3,0x19,0x6c,0x26,0xbb, +0x8c,0xcd,0x62,0x97,0xb3,0x2a,0x36,0x9b,0xcd,0x61,0x57,0xb0, +0xb9,0xec,0x4a,0x36,0x8f,0x5d,0xc5,0xe6,0xbb,0x5f,0x40,0xb8, +0x96,0x2d,0x60,0xd7,0xb1,0x85,0xec,0x7a,0xb6,0x88,0xdd,0xc0, +0x16,0xb3,0x25,0x6c,0x29,0xbb,0x91,0x2d,0x63,0x37,0xb1,0x9b, +0xd9,0x2d,0xec,0x56,0xf7,0x0b,0x09,0x77,0x68,0xdf,0x48,0x58, +0xf9,0x6f,0xbe,0x92,0xf0,0x00,0x7b,0x90,0x3d,0xc4,0x36,0xb0, +0x87,0xd9,0x46,0xf6,0x88,0xfb,0xcd,0x84,0xc7,0xd8,0xe3,0xec, +0x09,0xf6,0xa4,0xf6,0xe5,0x84,0x67,0xd9,0x56,0xf6,0xdc,0xdf, +0x7c,0x3d,0xe1,0x95,0x0b,0xdf,0x4f,0xd8,0xc9,0xde,0x54,0xdf, +0x50,0x78,0xd7,0xfd,0x8a,0xc2,0x2e,0xf6,0x01,0xdb,0xcd,0x3e, +0x64,0x7b,0xd8,0x47,0xec,0x63,0xf6,0x09,0xdb,0xcb,0x3e,0x65, +0xfb,0xd8,0x7e,0xf6,0x19,0xfb,0x9c,0x7d,0xc1,0xbe,0x64,0x5f, +0xb1,0xaf,0xd9,0x01,0xf6,0x0d,0x3b,0xc8,0xbe,0x65,0x87,0xd8, +0x77,0xec,0x30,0xfb,0x9e,0x1d,0xf9,0xcb,0xf7,0x16,0x7e,0x89, +0x7e,0x71,0x81,0xfd,0xce,0x4e,0xb0,0x93,0xec,0x14,0x3b,0xcd, +0xce,0xb0,0x3f,0xd8,0x59,0xf6,0xa7,0xfb,0x05,0x48,0xc2,0x29, +0x37,0xb8,0xc9,0x63,0x78,0x2c,0x8f,0xe3,0xb5,0x78,0x3c,0x4f, +0xe0,0x89,0xbc,0x36,0x4f,0xe2,0xc9,0x3c,0x85,0xa7,0xf2,0x34, +0x9e,0xce,0x33,0x78,0x26,0xcf,0xe2,0xd9,0xdc,0xc7,0x73,0x78, +0x2e,0xf7,0xf3,0x00,0x0f,0xf2,0x10,0xb7,0xb8,0xcd,0x1d,0x1e, +0xe6,0x75,0x38,0xe3,0x9c,0x0b,0x1e,0xe1,0x79,0x3c,0x9f,0x17, +0xf0,0x42,0x5e,0xc4,0x8b,0x79,0x5d,0x5e,0xc2,0x4b,0x79,0x3d, +0x5e,0x9f,0x97,0xf1,0x72,0xde,0x80,0x37,0xe4,0x8d,0x78,0x05, +0x6f,0xcc,0x9b,0xf0,0xa6,0xbc,0x19,0x6f,0xce,0x5b,0xf0,0x96, +0xbc,0x15,0x6f,0xcd,0xdb,0xf0,0xb6,0xbc,0x1d,0x6f,0xcf,0x3b, +0xf0,0x8e,0xbc,0x13,0xef,0xcc,0x2b,0x79,0x17,0xde,0x95,0x77, +0xe3,0xdd,0x79,0x0f,0xde,0x93,0xf7,0xe2,0xbd,0x79,0x1f,0xde, +0x97,0xf7,0xe3,0xfd,0xf9,0xbc,0xea,0xaf,0x54,0xf2,0x05,0xfc, +0x3a,0xbe,0x90,0x5f,0xcf,0x17,0xf1,0x1b,0xf8,0x62,0xbe,0x84, +0x2f,0xe5,0x37,0xf2,0x65,0xfc,0x26,0x7e,0x33,0xbf,0x85,0xdf, +0xca,0x6f,0xe3,0xb7,0xf3,0x3b,0xf8,0x72,0x7e,0x27,0x5f,0xc1, +0xef,0xe2,0x77,0xf3,0x95,0x7c,0x15,0xbf,0x87,0xdf,0xcb,0xff, +0xc1,0x57,0xf3,0x35,0x7c,0x2d,0xbf,0x8f,0xaf,0xe3,0xf7,0xf3, +0xf5,0xfc,0x01,0xfe,0x20,0x7f,0x88,0x6f,0xe0,0x0f,0xf3,0x8d, +0xfc,0x11,0xbe,0x89,0x3f,0xca,0x1f,0xe3,0x8f,0xf3,0x27,0xf8, +0x93,0x7c,0x33,0x7f,0x8a,0x6f,0xe1,0x4f,0xf3,0x67,0xf8,0xb3, +0x7c,0x2b,0x7f,0x8e,0x6f,0xe3,0xcf,0xf3,0x01,0x7c,0x3b,0x7f, +0x81,0xbf,0xc8,0x5f,0xe2,0x3b,0xf8,0x3f,0xf9,0xcb,0xfc,0x15, +0xfe,0x2a,0x7f,0x8d,0xbf,0xce,0xdf,0xe0,0x3b,0xf9,0x9b,0xfc, +0x2d,0xfe,0x36,0x7f,0x87,0xbf,0xcb,0xdf,0xe3,0xef,0xf3,0x5d, +0xfc,0x03,0xbe,0x9b,0x7f,0xc8,0xf7,0xf0,0x8f,0xf8,0xc7,0xfc, +0x13,0xbe,0x97,0x7f,0xca,0xf7,0x89,0x16,0xee,0xb7,0x35,0x5b, +0x8a,0x56,0xa2,0xb5,0x68,0x23,0xda,0x8a,0x76,0xa2,0xbd,0xe8, +0x20,0x3a,0x8a,0x4e,0xa2,0xb3,0xa8,0x14,0x5d,0x44,0x57,0xd1, +0x4d,0x74,0x17,0x3d,0x44,0x4f,0xd1,0x4b,0xf4,0x16,0x7d,0x44, +0x5f,0xd1,0x4f,0xf4,0x17,0x03,0xc4,0x40,0x31,0x48,0x0c,0x16, +0x17,0x89,0x21,0x62,0xa8,0x18,0x26,0x2e,0x16,0xc3,0xc5,0x25, +0x62,0x84,0x18,0x29,0x46,0x89,0xd1,0x62,0x8c,0x18,0x2b,0xc6, +0x89,0xf1,0x62,0x82,0x98,0x28,0x26,0x89,0xc9,0x62,0x8a,0x98, +0x2a,0xa6,0x89,0x4b,0xc5,0x74,0x31,0x43,0xcc,0x14,0x97,0x89, +0x59,0xe2,0x72,0x51,0x25,0x66,0x8b,0x39,0xe2,0x0a,0x31,0x57, +0x5c,0x29,0xe6,0x89,0xab,0xc4,0x7c,0x71,0xb5,0xb8,0x46,0x5c, +0x2b,0x16,0x88,0xeb,0xc4,0x42,0x71,0xbd,0x58,0x24,0x6e,0x10, +0x8b,0xf9,0x40,0x3e,0x88,0x0f,0xfe,0xdb,0x2f,0x7f,0x36,0xe7, +0xfb,0xf9,0x67,0xfc,0x73,0xfe,0x05,0xff,0x92,0x7f,0xc5,0xbf, +0xe6,0x07,0xf8,0x37,0xfc,0x20,0xff,0x96,0x1f,0xe2,0xdf,0xf1, +0xc3,0xfc,0x7b,0x7e,0x84,0xff,0xc0,0x7f,0xe4,0x3f,0xf1,0xa3, +0xfc,0x67,0x7e,0x8c,0xff,0xc2,0x8f,0xf3,0x5f,0xf9,0x6f,0xfc, +0x77,0x7e,0x82,0x9f,0xe4,0xa7,0xf8,0x69,0x7e,0x86,0xff,0xc1, +0xcf,0xf2,0x3f,0xf9,0x39,0x7e,0x5e,0x10,0x41,0x85,0x21,0x4c, +0x11,0x23,0x62,0x45,0x9c,0xa8,0x25,0xe2,0x45,0x82,0x48,0x14, +0xb5,0x45,0x92,0x48,0x16,0x29,0x22,0x55,0xa4,0x89,0x74,0x91, +0x21,0x32,0x45,0x96,0xc8,0x16,0x3e,0x91,0x23,0x72,0x85,0x5f, +0x04,0x44,0x50,0x84,0x84,0x25,0x6c,0xe1,0x20,0xb4,0xab,0x23, +0x98,0xe0,0x42,0x88,0x88,0xc8,0x13,0xf9,0xa2,0x40,0x14,0x8a, +0x22,0x51,0x2c,0xea,0x8a,0x12,0x51,0xca,0x2f,0xe2,0x43,0xf8, +0x50,0x3e,0x8c,0x5f,0xcc,0x87,0xf3,0x4b,0xf8,0x08,0x3e,0x92, +0x8f,0xe2,0xa3,0xf9,0x18,0x3e,0x96,0x8f,0xe3,0xe3,0xf9,0x04, +0x3e,0x91,0x4f,0xe2,0x93,0xf9,0x14,0x3e,0x95,0x4f,0xe3,0x97, +0xf2,0xe9,0x7c,0x06,0x9f,0xc9,0x2f,0xe3,0xb3,0xf8,0xe5,0xbc, +0x4a,0x2c,0xe1,0xb3,0xf9,0x1c,0x7e,0xc5,0xff,0xb3,0xe8,0xff, +0x7b,0x2d,0x3a,0x9f,0xcb,0xaf,0x14,0x37,0xb9,0x76,0x5d,0xae, +0xeb,0x9d,0x03,0xbb,0x0e,0xeb,0x6e,0xcc,0x91,0xd6,0xdd,0x98, +0xe7,0xbe,0xc7,0x75,0x95,0xb4,0xee,0xf8,0x05,0xeb,0x6e,0x5c, +0x2b,0xad,0x3b,0xf6,0xc1,0xba,0x1b,0x6b,0xa4,0x75,0x37,0xd6, +0x4a,0xeb,0x6e,0xdc,0x2f,0xad,0xbb,0xf1,0x90,0xb4,0xee,0xc6, +0x06,0x69,0xdd,0x8d,0x87,0xa5,0x75,0x37,0x36,0x4a,0xeb,0x6e, +0x3c,0x22,0xad,0xbb,0xb1,0x49,0x5a,0x77,0xe3,0x51,0x69,0xdd, +0x8d,0xc7,0xa4,0x75,0x37,0x1e,0x97,0xd6,0xdd,0x78,0x42,0x5a, +0x77,0xe3,0x49,0x69,0xdd,0x8d,0xcd,0xd2,0xba,0x1b,0x4f,0x49, +0xeb,0x6e,0x6c,0x91,0xd6,0xdd,0x78,0x5a,0x5a,0x77,0xe3,0x19, +0x69,0xdd,0x8d,0x67,0xa5,0x75,0x37,0xb6,0x4a,0xeb,0x6e,0x3c, +0x27,0xad,0xbb,0xb1,0x4d,0x5a,0x77,0xe3,0x79,0x69,0xdd,0x8d, +0x17,0xa4,0x75,0x37,0x4e,0x4b,0xeb,0x6e,0xd6,0x72,0x57,0xa2, +0xe5,0x48,0xeb,0x6e,0xfa,0xa5,0x75,0x37,0x83,0xd2,0xba,0x9b, +0x8e,0xb4,0xee,0x66,0xa9,0xb4,0xee,0x66,0x3d,0x69,0xdd,0xcd, +0xfa,0xd2,0xba,0x9b,0x0d,0xa5,0x75,0x37,0x9b,0x48,0xeb,0x6e, +0xb6,0x90,0xd6,0xdd,0x6c,0x25,0xad,0xbb,0xd9,0x46,0x5a,0x77, +0xb3,0xad,0xb4,0xee,0x66,0x3b,0x69,0xdd,0xcd,0xf6,0xd2,0xba, +0x9b,0x1d,0xa4,0x75,0x37,0x3b,0xba,0xeb,0xd7,0x3a,0xc9,0x77, +0x96,0xcc,0x4a,0x69,0xe9,0xdd,0x35,0x1a,0xda,0xea,0x33,0xb5, +0xbe,0xcc,0x70,0xd7,0x96,0xfd,0xc5,0x07,0x8e,0x38,0x91,0x50, +0xc4,0x52,0x3e,0xb0,0xfc,0xf2,0x9a,0xb6,0x76,0x4b,0xec,0x73, +0x67,0x4d,0xda,0xfd,0x65,0xdf,0x47,0xee,0xbe,0xbf,0x1c,0x17, +0x49,0x71,0xf7,0xa5,0xd7,0xf0,0xae,0xd7,0xba,0xdf,0x27,0x90, +0x57,0x8e,0xce,0x6f,0xe1,0xbf,0xe6,0x74,0x12,0x43,0x1f,0x32, +0xc7,0x9a,0x6d,0x8c,0xd5,0x66,0xa5,0xb1,0xda,0xda,0x8a,0xed, +0xc3,0x64,0x0c,0x39,0x85,0x13,0x0b,0xc8,0x20,0xfa,0x2c,0x19, +0x6a,0xfc,0x44,0xda,0x18,0xb3,0xe0,0x6b,0xbd,0x4b,0x3a,0x1a, +0x7b,0x49,0x4f,0x72,0x8e,0x0c,0xa5,0x23,0xf0,0xbf,0x11,0xe7, +0xcf,0xd3,0xbd,0xf0,0xe5,0xaa,0x48,0x07,0x1a,0x22,0x25,0xf4, +0x7e,0xd2,0x05,0x65,0x1f,0x7a,0x3b,0xbc,0xbc,0x2a,0x9c,0x53, +0x45,0x1a,0x83,0xba,0x80,0xea,0x81,0x0a,0x40,0x7d,0x40,0x95, +0x8a,0x5a,0xc9,0x92,0x96,0x93,0x61,0xb4,0x8c,0x34,0xc1,0xf6, +0x25,0x6a,0xff,0x25,0xf4,0x37,0x12,0x30,0x1f,0xc2,0xbd,0xd6, +0x10,0xbf,0xb1,0x89,0x8c,0x86,0x07,0xd9,0xd2,0x78,0x09,0xe5, +0x68,0x50,0x57,0xd0,0x27,0xf8,0x7d,0x88,0x8c,0xa6,0xeb,0x48, +0x6b,0x23,0x9b,0x58,0xc6,0x5d,0xd8,0x97,0x4c,0x46,0x9b,0x03, +0x50,0x62,0xbf,0xf1,0x2d,0xfe,0x7f,0xa5,0x2a,0xd7,0xa0,0x1c, +0x41,0xea,0x1a,0x83,0x89,0xcf,0x78,0x83,0x5c,0x0c,0xcf,0xd4, +0x67,0x6e,0xc0,0xf6,0x5c,0xd0,0x14,0x92,0x82,0xff,0xe5,0xd1, +0x1e,0x38,0xe6,0x4a,0x12,0x41,0xd9,0xce,0xad,0x73,0x1f,0xc2, +0x50,0x1e,0x31,0xca,0x48,0x7d,0xfc,0x7f,0xa8,0x91,0x4a,0xca, +0x51,0x56,0x18,0xad,0x49,0x03,0xda,0x97,0xd8,0x46,0x11,0x29, +0x31,0xfa,0x41,0x06,0xb1,0xa4,0x2f,0x95,0x99,0x1e,0xf2,0xc8, +0x10,0x6a,0x91,0xa1,0xe6,0x72,0x1c,0x8b,0xfd,0x46,0x37,0xf7, +0xf8,0xa1,0xf2,0x1c,0x7a,0x0d,0x8e,0x3b,0x47,0xf2,0xe9,0xa5, +0x38,0xaf,0x1f,0x19,0x60,0xc4,0x92,0x4c,0x33,0x8f,0xd4,0x31, +0x32,0x48,0xae,0x91,0x44,0x32,0xe8,0x41,0xb8,0x04,0x13,0x48, +0x80,0x76,0x25,0xd7,0xc9,0x12,0xf7,0x5d,0x46,0x1d,0xdc,0xe7, +0x76,0x52,0x84,0xb2,0xa7,0xdc,0x2f,0x65,0x29,0xfb,0xc2,0x08, +0xc2,0xc3,0x9e,0x41,0xda,0x90,0x7b,0xce,0x97,0xca,0x24,0x0f, +0xc6,0x38,0xc8,0x73,0x01,0xc9,0xa6,0xbf,0x92,0x9e,0x86,0x1f, +0xed,0x68,0xe5,0x52,0x05,0xea,0x6f,0x1b,0xf2,0x7e,0x93,0x48, +0x9e,0xd1,0x81,0x34,0x92,0x44,0xfb,0x93,0xa9,0xc6,0x46,0xd2, +0x98,0xae,0x26,0x03,0x70,0xdd,0x42,0x9c,0x23,0xa9,0x01,0xce, +0xab,0x40,0x7f,0x4f,0x8a,0x1d,0x44,0x3a,0x42,0xee,0x05,0x6e, +0xbb,0xab,0xc8,0x1d,0xa0,0x87,0x41,0xf7,0x1a,0x55,0x34,0x5e, +0x6d,0xbf,0x0c,0xfa,0x1a,0x74,0x17,0xe8,0x09,0xd0,0x72,0xb3, +0x01,0xc9,0x33,0x9f,0x25,0xb5,0xd0,0xef,0xc5,0x46,0xfa,0xf9, +0x3f,0x20,0xfb,0x96,0x31,0xf1,0xa4,0x25,0x5d,0x0b,0x6f,0x7e, +0x29,0xa9,0x0f,0xd9,0x0c,0xa1,0x9c,0x64,0xa1,0xdd,0x79,0xe6, +0x2e,0xc8,0x64,0x2d,0xb1,0xe5,0x18,0x31,0x8b,0xdd,0xfe,0xee, +0x84,0xfb,0x15,0xd1,0x23,0xe8,0x67,0xb9,0x3d,0x19,0xc6,0x6a, +0x32,0xda,0x7f,0x11,0xce,0x99,0x4b,0xb8,0x79,0x05,0xe8,0x4e, +0xd0,0x48,0xec,0x93,0xe3,0xe0,0xef,0x48,0x8e,0x8b,0xd1,0x6a, +0x5c,0x28,0x92,0x63,0x42,0x51,0xa1,0x3b,0x3e,0x5e,0xc5,0xfd, +0xbd,0x31,0x51,0x93,0xaa,0xc8,0x28,0x77,0x4c,0xe8,0x24,0xc7, +0x84,0x1c,0x3b,0xb2,0xef,0xff,0x8e,0xe4,0x58,0xc0,0x38,0xd0, +0x89,0xc6,0x21,0x74,0x8e,0x25,0x03,0x69,0xdc,0xf9,0xfd,0x34, +0xf6,0xfc,0x2f,0x46,0x67,0xec,0xf7,0xc6,0x41,0x4d,0x42,0x5b, +0xdd,0x71,0xa0,0x53,0x02,0xc9,0xc4,0x58,0x19,0xa2,0xca,0xba, +0x17,0xc6,0xe5,0x6f,0xd0,0x41,0x8c,0x1d,0x63,0x33,0xc6,0x08, +0xc6,0x89,0x3b,0x0e,0xe4,0xbe,0xdf,0xc8,0x0b,0xa0,0x06,0xa0, +0x54,0x50,0x29,0x28,0x1b,0x64,0xab,0x7d,0x0f,0x80,0x5a,0x48, +0x1d,0x02,0xc9,0x6b,0x94,0x80,0x1a,0x81,0xfa,0x80,0x38,0xc8, +0x01,0xe5,0x83,0x42,0xa0,0x5c,0x50,0x3a,0xa8,0x4c,0xf6,0x3d, +0xa8,0xbe,0xda,0x6f,0xab,0x7b,0xac,0x54,0xdb,0x05,0xaa,0x94, +0xd7,0xcc,0x02,0x65,0x80,0x2a,0x41,0x0d,0x41,0x9d,0xd4,0xb5, +0xfb,0xb9,0xfd,0x19,0x25,0x39,0x96,0x22,0xa0,0xe6,0xa0,0x41, +0xa0,0x62,0x50,0x3d,0x90,0x5f,0x1d,0x2f,0xcb,0x2e,0xaa,0xee, +0x5e,0xbd,0x73,0x54,0x3b,0xbc,0x52,0x5e,0xe7,0x36,0x50,0x10, +0xd4,0x16,0xc4,0xa2,0x6d,0xa7,0xb2,0x0d,0xcd,0xd4,0xf9,0x95, +0xea,0xdc,0xe6,0xaa,0x0e,0x8d,0x41,0x5d,0x41,0xaf,0x83,0x26, +0x83,0xda,0x81,0x9e,0x03,0x09,0xb5,0xbf,0x09,0xa8,0xb3,0x92, +0xc7,0x2d,0x20,0x29,0xcf,0x5e,0xaa,0x4e,0x45,0x4a,0x16,0xf2, +0xd8,0x42,0x75,0xcd,0x49,0xa0,0x6f,0xd4,0x71,0x44,0x51,0x53, +0xd0,0x2a,0x75,0x2d,0x29,0xb7,0x2d,0xaa,0x6d,0xf5,0x54,0x1d, +0x5b,0xab,0x76,0xe5,0x2b,0x79,0xc9,0xed,0x56,0xaa,0x1f,0xca, +0x95,0xfc,0x73,0xd5,0xb9,0x96,0xba,0x67,0x2d,0xd5,0xe6,0xa0, +0x92,0x6f,0xa1,0x2a,0xa5,0x2c,0x52,0x54,0x3f,0x47,0x54,0xdf, +0x04,0xd4,0x35,0xe4,0xf6,0x2c,0x55,0x5a,0xea,0xfa,0x09,0xaa, +0x0f,0xe5,0xb5,0x06,0xaa,0x3a,0xd4,0x56,0xd7,0x60,0xea,0xba, +0xf2,0x7e,0x75,0xd4,0x75,0x52,0xd4,0xb9,0x8d,0xd4,0x35,0x07, +0x80,0x12,0x41,0x17,0xab,0xf6,0xd5,0xd3,0xea,0x18,0x0f,0xba, +0x59,0xf5,0x9d,0xac,0x57,0x4b,0x55,0x32,0x75,0x9c,0xd7,0x06, +0xef,0x58,0xbf,0x36,0x56,0x92,0x40,0xb1,0xaa,0x7d,0x19,0xea, +0xde,0x3e,0x45,0xb3,0x54,0x1d,0x6b,0xab,0x3a,0x0f,0x54,0xf7, +0xb4,0xb4,0xfd,0x29,0x8a,0x88,0xaa,0x5b,0x53,0xad,0x3f,0x0e, +0x81,0x5e,0xfc,0x2f,0xfc,0x3e,0xa4,0x6d,0xeb,0xff,0xd7,0x8f, +0xfb,0xef,0xfc,0xbf,0x26,0x91,0xff,0xe5,0xf4,0x30,0x68,0x82, +0x1a,0xef,0x1b,0xd4,0x38,0x5d,0xa6,0x74,0xab,0x48,0xf5,0x77, +0xa5,0xea,0xcf,0xab,0x14,0x86,0x78,0xe7,0xfa,0xd4,0xb8,0xea, +0xa8,0x8e,0xcd,0x52,0xa5,0xec,0xcb,0x0a,0x35,0xae,0xd3,0x55, +0x9f,0xd7,0x53,0xfd,0x1c,0xa7,0xf5,0x77,0x58,0xe1,0x40,0x53, +0x35,0x6e,0xe4,0x58,0xeb,0xa9,0x8e,0xcf,0x54,0xe7,0x86,0xd5, +0x76,0xb2,0xba,0x5f,0x53,0x35,0x9e,0x2b,0xb4,0x71,0x65,0x6b, +0x63,0x35,0x45,0x8d,0x8d,0xfa,0x0a,0x5f,0x82,0xea,0x3c,0xa9, +0x0f,0x69,0x6a,0x1c,0xe7,0x29,0x1d,0x68,0xa4,0xda,0x96,0xa1, +0xae,0x93,0xa3,0xca,0x04,0xa5,0x0b,0xb5,0xd4,0xfd,0x33,0x54, +0xfb,0xdb,0x6b,0x75,0x0d,0xfe,0x27,0x75,0x4d,0x57,0xc7,0xd6, +0xd7,0x74,0x2f,0x5b,0x1b,0xb3,0xde,0x18,0x2e,0x56,0x94,0xa1, +0xf0,0x46,0xe2,0xcb,0x1b,0x4a,0x96,0x1e,0x96,0xd6,0x53,0x38, +0x55,0xa9,0xb6,0x9b,0xa8,0x63,0x5f,0x50,0x18,0x9c,0xad,0xea, +0xd1,0x40,0x61,0x60,0x73,0xd5,0xa7,0xde,0x71,0xde,0xbe,0x7e, +0x7f,0xb3,0x2f,0x4f,0x6d,0x4b,0xec,0x71,0x60,0xf3,0x09,0xa8, +0x0c,0xd4,0x14,0x54,0x02,0xea,0x63,0x1e,0xa6,0x8f,0x81,0x9e, +0x05,0xdd,0x06,0xf2,0x45,0xb7,0x49,0x3a,0x28,0x1e,0xdb,0xf7, +0x83,0x5e,0x03,0x8d,0x02,0x75,0x57,0xe7,0x4b,0xfa,0x03,0xf4, +0x0b,0xf6,0x65,0xa0,0x3c,0x0d,0xfa,0x0a,0x94,0x07,0xea,0x06, +0xba,0x02,0x24,0xfd,0x8b,0x31,0xd1,0x63,0x69,0x3d,0x94,0x2d, +0x14,0xdd,0x8a,0xdf,0x23,0x40,0x9f,0x49,0xff,0x03,0xf4,0xa2, +0x79,0xd8,0xcc,0x41,0xd9,0xc0,0x3c,0x6c,0xb4,0x57,0xe5,0xca, +0xe8,0xb1,0xc6,0xbd,0x28,0x5b,0xa3,0xbc,0x1e,0x65,0x5b,0x94, +0xc3,0x51,0xb6,0x41,0x79,0x8d,0xfa,0x6d,0xa3,0x6c,0x82,0xf2, +0x66,0x55,0xca,0xeb,0x33,0x94,0x33,0xd4,0xbd,0x16,0x6b,0xf4, +0x5e,0x8d,0xdf,0x0f,0x82,0x1e,0x02,0x2d,0x53,0x74,0x3b,0xe8, +0x47,0xd0,0x75,0xd1,0x76,0x91,0x8e,0xd1,0x6b,0xba,0x54,0x08, +0xda,0x05,0xfa,0x06,0xf5,0x86,0x4c,0xc8,0xcf,0xa0,0xbe,0xa0, +0x67,0x40,0x2f,0x81,0x16,0x80,0xc6,0xe1,0x7f,0x41,0x25,0x57, +0xb4,0x01,0xfe,0xce,0x61,0x32,0x4a,0xc9,0x40,0xd6,0x45,0xca, +0x40,0xd6,0x6b,0x0e,0xa8,0x33,0xa8,0x31,0xa8,0x93,0x2a,0x97, +0x82,0x2e,0x06,0xdd,0x16,0xad,0x07,0x8d,0x44,0x89,0xac,0x05, +0xad,0x06,0xa1,0x0f,0xc8,0x2a,0xb5,0x2d,0xcb,0x35,0x4a,0xfe, +0x92,0x1e,0x51,0xf4,0xbc,0x3a,0x7f,0x49,0x54,0xa6,0x34,0x06, +0xe5,0x0e,0xd0,0xe3,0xd1,0xfb,0xd2,0x34,0x94,0xef,0x6a,0xed, +0xbf,0x14,0x34,0x1d,0x24,0xfb,0xef,0x16,0x75,0x5d,0xb4,0x9f, +0x62,0x3c,0x90,0x45,0xa0,0xb7,0x40,0xed,0x40,0xef,0x60,0xdf, +0x95,0xd1,0x7e,0xf6,0x88,0xc8,0xbe,0xcb,0x02,0xfd,0x00,0xda, +0x8d,0x7d,0x06,0xca,0x23,0x51,0x19,0xd1,0x38,0x25,0xbf,0x3f, +0x41,0x27,0xd5,0xf6,0x16,0xec,0x8f,0x45,0xf9,0xbd,0xba,0x46, +0x2e,0xa8,0x39,0x7e,0x3f,0x05,0xda,0x83,0xed,0x02,0x90,0x19, +0x95,0x2d,0x95,0x72,0x7f,0x14,0x74,0x10,0xf4,0x34,0x7e,0x5b, +0xaa,0x8c,0x55,0xf7,0xd8,0xad,0xfe,0x87,0x36,0x92,0x46,0x20, +0x8c,0x4d,0xf2,0x4a,0x74,0xfc,0xd1,0x44,0x75,0x6d,0x8c,0x61, +0xf2,0x13,0xe8,0x3c,0xb6,0xd1,0x7f,0x54,0x8e,0x41,0x8c,0x7d, +0xfa,0x6a,0xb4,0x7d,0xb4,0x14,0xf4,0x32,0xfe,0x7f,0x7d,0x74, +0xbf,0xac,0xa7,0x3c,0x4f,0x9e,0x43,0xe5,0xf8,0xc4,0x78,0xa4, +0x2d,0x41,0xb2,0x8d,0xc7,0xa3,0x63,0x42,0xb6,0x91,0x52,0x90, +0xc0,0xef,0x4d,0xa0,0xd1,0xa0,0x6d,0x20,0xc8,0x86,0xbc,0xa9, +0x64,0xb8,0x01,0x84,0xb1,0x4d,0x36,0x82,0x2e,0x01,0x75,0x57, +0x32,0xbc,0x5e,0x1d,0x27,0xeb,0xbd,0x13,0x74,0x0f,0xe8,0x46, +0x75,0xdc,0x3d,0xea,0xdc,0xeb,0x95,0xbc,0x0e,0xab,0xf3,0x3a, +0x80,0x2a,0x41,0xad,0x40,0x03,0xd4,0x58,0x99,0xa4,0xae,0x2f, +0xef,0x7d,0x91,0xea,0x47,0x29,0x83,0x62,0xd0,0xd0,0xa8,0x2e, +0xbb,0xe3,0xfa,0x2e,0x90,0x8c,0xe7,0xee,0x03,0xf5,0x8e,0xea, +0x8a,0x7b,0xfc,0x3d,0x6a,0x7c,0x4b,0x9a,0x0c,0x1a,0xa6,0xa8, +0x22,0xaa,0x37,0x2e,0x75,0xd3,0xe8,0x06,0xd0,0x65,0x8a,0xa4, +0x8e,0x0c,0x54,0xe7,0xf5,0x52,0xe3,0x58,0x8e,0x93,0x66,0xd1, +0xfe,0x25,0xf3,0x54,0xbf,0xcd,0x51,0xfd,0xfa,0x21,0x68,0x82, +0xd2,0xa3,0x2b,0x54,0x1b,0x3b,0xaa,0x7d,0x5d,0xd4,0x7d,0xbb, +0xaa,0x73,0xa5,0x5e,0xac,0x54,0xba,0xb2,0x1d,0xb4,0x50,0x8d, +0xf1,0x61,0x5a,0x29,0x75,0x69,0x30,0x68,0x9a,0x92,0x6d,0x95, +0xfa,0xdd,0x57,0xc9,0x68,0xb1,0xba,0x4e,0x37,0xd5,0xde,0x59, +0x4a,0x26,0x72,0x8c,0x0f,0x52,0xfb,0x5b,0xa8,0x3a,0xcf,0x54, +0xe3,0x7f,0x60,0x54,0x6f,0xdd,0x6b,0xdc,0xa6,0xae,0xdb,0x4d, +0xc9,0x0e,0xff,0xa3,0xc0,0x1a,0x9a,0xaf,0x7e,0xcb,0x3a,0xdc, +0xa9,0xfa,0xe2,0x06,0x75,0x6e,0x3b,0x45,0x9f,0xa9,0x71,0xb8, +0x53,0xd5,0x7d,0x86,0xaa,0xa7,0x2e,0xcb,0xee,0xda,0xf1,0x52, +0x06,0x57,0x83,0x24,0x9e,0x5d,0xa5,0xae,0x2d,0xaf,0xd9,0x5e, +0xe9,0xa1,0xfc,0x8d,0xb1,0x4a,0x6e,0x52,0xb2,0xdb,0xa5,0xee, +0xbb,0x4f,0xf5,0xed,0xcb,0xaa,0x3f,0xe4,0xbe,0x21,0xea,0xb8, +0xe5,0xa0,0xcb,0x15,0x46,0x2c,0xab,0xd6,0x39,0xda,0x36,0x7a, +0xbc,0x3b,0xbe,0xbf,0x8a,0xea,0x1b,0x79,0x42,0xe9,0x5c,0x7c, +0x54,0xb7,0x2e,0xe8,0xdb,0x69,0xf5,0xfb,0x0b,0xa5,0x77,0xdf, +0x2b,0x7d,0x7b,0x45,0xd5,0xe9,0x35,0x75,0xaf,0x4d,0x51,0x7c, +0xa0,0xc9,0x4a,0xcf,0x7e,0x8b,0x62,0x9f,0x7b,0xaf,0x63,0xa0, +0x73,0xd8,0x96,0xf7,0x68,0xa4,0xf4,0x32,0x01,0xe5,0x77,0x28, +0x8b,0xd5,0x18,0x7f,0x46,0xe1,0xd3,0xcf,0x4a,0xef,0xb3,0xb1, +0xbd,0x5e,0x9d,0xfb,0x92,0x92,0xc1,0x16,0xa5,0x97,0x5e,0x1b, +0xa6,0x28,0xdd,0x96,0xed,0xa8,0xa5,0xb0,0xe0,0xa0,0xa2,0x1f, +0x94,0x3e,0x3d,0xaa,0xda,0xf7,0x77,0x6d,0x78,0x4d,0x6b,0xc3, +0xeb,0x6a,0x7c,0x76,0x57,0x7d,0x33,0x43,0xc9,0x59,0xe2,0xe9, +0x1b,0x4a,0xf7,0x76,0x44,0xf1,0x84,0x9c,0x40,0x19,0x00,0x8d, +0x55,0xe3,0xfa,0xbc,0xa2,0x39,0x51,0x79,0xd1,0x74,0x45,0x8e, +0xb2,0x31,0x1f,0x29,0xac,0x3d,0xa9,0x70,0x44,0xe1,0x91,0xdb, +0x0e,0x23,0x2a,0x3f,0x17,0x4b,0x24,0xd6,0xf9,0xd5,0xb8,0xbf, +0x47,0xc9,0xf8,0xd5,0xa8,0x8c,0x68,0x2a,0xb6,0xff,0x01,0x3a, +0x03,0x2a,0x57,0xe3,0x59,0x8e,0xc3,0x1e,0xa0,0xba,0x4a,0xe7, +0x25,0x0e,0x15,0x29,0x9b,0x5b,0x4f,0x1d,0x17,0x54,0xb6,0x4a, +0xa8,0x52,0xd6,0xa9,0x54,0xd9,0x23,0xae,0xa8,0xae,0xb2,0xfb, +0x5c,0x1d,0x97,0xaf,0x7e,0x4b,0x7b,0x83,0x76,0x92,0x1c,0xed, +0x9a,0xc5,0xea,0x1a,0x8d,0x14,0x36,0x08,0x55,0x07,0x79,0xdf, +0x7e,0xea,0x5c,0x79,0xbd,0xfa,0xa0,0x90,0x3a,0x26,0xa4,0xae, +0xd3,0x43,0x5d,0xb7,0x9e,0xba,0x9e,0xec,0x8b,0x3a,0xea,0x9a, +0x61,0xb5,0xdf,0x6b,0x43,0x43,0xad,0x0e,0xb9,0x8a,0xa6,0xa9, +0xff,0xe7,0xa9,0x36,0x44,0x14,0x8d,0x51,0x36,0xb9,0x4c,0xdd, +0xab,0x4c,0xb5,0xdb,0x51,0xfb,0x25,0xc6,0x14,0xa8,0xf3,0xb8, +0xba,0xae,0x94,0x8d,0xad,0xae,0x33,0x44,0x61,0x62,0x99,0xd2, +0xfb,0x3c,0xd5,0x96,0x88,0x3a,0xaf,0x40,0x1d,0xd7,0x4b,0x51, +0x97,0x6a,0x3f,0xc9,0x3d,0xb6,0x85,0xc2,0xbc,0x52,0xd5,0xfe, +0x52,0x4d,0xd6,0x5e,0x5d,0xc3,0x6a,0x4c,0x15,0xa9,0x6b,0xf4, +0x56,0xdb,0xb6,0x26,0xf3,0x3a,0xaa,0x2c,0x52,0x58,0xd2,0x4b, +0x61,0x43,0x44,0xf9,0x04,0x5e,0x7b,0xb9,0x6a,0x53,0x73,0x55, +0xb7,0x6e,0xea,0xfe,0xf9,0xaa,0xfd,0x5e,0x9d,0xf3,0xd5,0xb1, +0x45,0xaa,0x1f,0x1a,0x28,0xb9,0x94,0x6a,0xc7,0x84,0xd5,0xff, +0xbc,0x6b,0x97,0x2a,0x5d,0x1a,0xa0,0xea,0xc5,0x94,0x7c,0xbb, +0xa8,0xdf,0x25,0x4a,0xa6,0x61,0xcd,0x3e,0x08,0xed,0x5e,0x0d, +0x54,0x9b,0x1c,0x35,0x0e,0xb8,0x1a,0x3f,0x4c,0xbb,0xbe,0x27, +0xd7,0x88,0xaa,0xaf,0x5e,0xe7,0xbe,0x6a,0x1c,0xd4,0x55,0xe3, +0x43,0x68,0xe3,0xdc,0x52,0x32,0xe9,0xa1,0x8d,0xbf,0x90,0x1a, +0x2b,0xdd,0xd5,0xb5,0xfb,0xd4,0x18,0x7f,0x11,0xad,0x64,0x6a, +0xac,0xcd,0xd6,0xf6,0x15,0xaa,0xeb,0x87,0x95,0x8c,0x9b,0xa8, +0xfa,0x87,0xd4,0xbd,0x43,0x4a,0x66,0x5e,0x3f,0x35,0x56,0x65, +0x99,0xd6,0xf7,0x5c,0xf3,0x73,0x0b,0x15,0x95,0x68,0x7a,0x55, +0xa8,0x8e,0x29,0x57,0xf7,0xf1,0xe4,0x54,0xa6,0xe9,0x5a,0xa9, +0x6a,0x77,0x48,0x1b,0x6b,0xde,0x3d,0x22,0x4a,0xfe,0x5e,0x1b, +0xda,0xab,0xf6,0x35,0x54,0xd4,0x4f,0xfd,0xae,0xa3,0xea,0xc6, +0xd5,0x7d,0xbc,0xe3,0x65,0xfd,0x25,0x9e,0xf6,0x57,0xd7,0x0b, +0x29,0x59,0x7a,0x63,0xae,0x8e,0x3a,0xa7,0x8e,0x92,0x6b,0x44, +0xd3,0xbd,0xee,0xaa,0xed,0x05,0x1a,0xb6,0x14,0x2a,0x7d,0xac, +0xa3,0xf6,0x0f,0x50,0x7d,0x52,0xac,0xae,0x53,0xac,0xae,0xdd, +0x5b,0xc9,0x93,0xa9,0xfa,0xd4,0xd1,0xc6,0x5c,0x5d,0x85,0x09, +0x75,0x35,0x1d,0xa9,0xab,0xd5,0x43,0x68,0x6d,0xf1,0xc6,0x58, +0xa7,0x1a,0xff,0xd7,0x8f,0x2b,0x50,0x63,0xce,0xaf,0xe1,0x53, +0x5d,0x75,0xaf,0x42,0xd5,0x96,0xbe,0xaa,0x9e,0xa5,0x4a,0x6e, +0x0d,0x54,0x3d,0x3d,0x1c,0xa8,0xa3,0xea,0xc2,0xd4,0xb6,0xa5, +0xb5,0xa7,0xbe,0x6a,0x4f,0x44,0xc3,0x92,0x7c,0x4d,0xdf,0x2d, +0x55,0x96,0xaa,0x73,0x86,0x68,0x75,0xac,0xab,0xae,0x59,0x4f, +0x8b,0x1d,0xbc,0x7b,0x75,0x57,0x3e,0x9d,0xd0,0x70,0xb9,0x44, +0xdd,0xb3,0x44,0x8d,0x81,0x52,0xd5,0x2e,0xa6,0x8d,0xbd,0x22, +0x75,0x9f,0x88,0x1a,0x2b,0x79,0x9a,0x1d,0xe8,0xa6,0xc5,0x29, +0x25,0xea,0x58,0x4f,0x3f,0x3d,0x9d,0x8a,0x68,0x63,0xda,0xd3, +0xd7,0x3a,0x5a,0xbb,0x0a,0x55,0x3b,0x85,0xba,0x66,0x85,0xa6, +0xbb,0x9e,0xdd,0xb0,0xd5,0xff,0x4a,0xd4,0xb1,0x76,0x0d,0x5c, +0xf5,0x8e,0xcf,0x57,0xfe,0xd6,0x20,0x6d,0xac,0x94,0x68,0x18, +0xd0,0x40,0xd5,0xab,0x48,0xd5,0xa1,0x50,0xd3,0xf5,0x3c,0x4d, +0x4f,0xbd,0x3e,0xf6,0x74,0xcc,0xd6,0xf4,0xdf,0xeb,0xbf,0x90, +0xc2,0xc5,0x3c,0x55,0xf6,0x50,0xff,0xaf,0xaf,0xce,0xf7,0xea, +0x6d,0xa9,0x31,0x5c,0xac,0x8d,0x9f,0x3a,0xaa,0x8f,0xf2,0xd5, +0xf9,0xc5,0x4a,0xd6,0xbc,0x86,0xfc,0x82,0x9a,0x4d,0x90,0xff, +0x4f,0xd6,0xb0,0xdf,0xc3,0xc4,0x46,0xea,0x58,0xbf,0x8a,0x8b, +0x8a,0x55,0x1c,0xe8,0xf5,0x61,0x58,0xd5,0x29,0x4f,0x6b,0x57, +0x85,0xaa,0x5b,0x44,0xc9,0x42,0x68,0x63,0xa1,0xb9,0x1a,0x7f, +0x5d,0x35,0x5c,0x2e,0xd2,0xda,0xe3,0xd9,0x77,0x79,0xdf,0x34, +0xad,0x0d,0x15,0xca,0x36,0x78,0x38,0x5b,0x57,0x5d,0xa7,0xb3, +0xf2,0x35,0x8b,0xb4,0x3a,0x35,0x56,0x75,0x29,0x56,0xed,0x71, +0x94,0xce,0x95,0x68,0x7a,0x16,0x56,0x6d,0x1a,0xa1,0xea,0xdf, +0x54,0xdd,0xf7,0x72,0x25,0xbf,0x80,0xaa,0x7f,0xb9,0xe6,0x0b, +0x08,0x0d,0x3f,0xf2,0x55,0x9d,0xca,0x34,0x0a,0xa9,0x36,0x04, +0xd4,0xbd,0xbc,0x71,0xd4,0x47,0x9d,0x33,0x41,0xb5,0xa5,0x8f, +0x26,0xc3,0x1e,0xea,0xdc,0x62,0xad,0xed,0xf9,0x6a,0xdb,0x51, +0xc7,0x78,0xe3,0x2b,0x4f,0xd3,0x6b,0xcf,0xf7,0x68,0xa0,0xe1, +0xb6,0xee,0xf7,0x84,0x54,0x1b,0xf3,0x15,0xe6,0x7a,0x3a,0x2e, +0xdb,0xeb,0x53,0xf2,0xe5,0x1a,0x8e,0x7a,0xfd,0x3e,0x59,0x5d, +0xa3,0xb5,0x86,0x59,0x8e,0x36,0x2e,0x85,0xc2,0xed,0x46,0xaa, +0x6d,0x1e,0x56,0x95,0x6a,0xf6,0xa7,0xb7,0xaa,0x73,0xb9,0x92, +0x85,0xdc,0x3f,0x51,0xd3,0xc9,0x3c,0x4d,0x57,0x74,0x3d,0xf4, +0xf0,0x20,0xa2,0x61,0xae,0xa5,0xfa,0x2e,0xa2,0x64,0x35,0x48, +0x1b,0xb7,0xde,0xb5,0x84,0xa6,0x6f,0x5e,0xbf,0x17,0x29,0x19, +0x75,0xd5,0x70,0xdc,0xc3,0x69,0xcf,0x0f,0xf1,0x6c,0x99,0xa7, +0xdf,0x4d,0xd4,0xf5,0x1a,0x69,0x75,0xb5,0x55,0xfb,0x8a,0x35, +0xfc,0x2b,0x53,0xf7,0xaa,0xaf,0xf5,0x5d,0x44,0x1b,0x83,0x05, +0x9a,0x0f,0xe8,0xd9,0x25,0x2f,0x0e,0xf5,0xfa,0xc3,0xd2,0x64, +0xec,0xe1,0x4c,0x73,0x25,0x97,0x42,0x75,0x7c,0x0b,0x4d,0xae, +0x25,0xaa,0x4e,0x75,0xd4,0x31,0xde,0x58,0x08,0xa8,0x63,0x4a, +0x54,0x3d,0x7b,0xa8,0xfb,0xf8,0x54,0xfd,0xf2,0xb5,0x31,0x15, +0xd4,0xf0,0xac,0x9d,0xa6,0x4b,0x21,0x4d,0xa6,0x1e,0xf5,0x56, +0xf5,0x2c,0xd3,0x30,0x56,0xd7,0x03,0xa6,0x61,0xae,0x77,0xff, +0x12,0x0d,0x37,0xfc,0xaa,0x3d,0x11,0x55,0xe7,0x52,0x25,0xeb, +0x62,0xcd,0x47,0xeb,0xa1,0xf5,0x7f,0x4f,0x4d,0x46,0x61,0xcd, +0xb6,0x7a,0x36,0xa6,0x4c,0xc3,0xca,0x3a,0x1a,0x8e,0x7b,0x3e, +0x94,0x6c,0x43,0x4b,0x55,0xef,0x5e,0x9a,0x3e,0x8d,0xd6,0x7c, +0x65,0x6f,0x4c,0x30,0x75,0x2d,0xcf,0x96,0xdb,0xea,0x77,0x03, +0x55,0x47,0xa6,0xf9,0x08,0xac,0x86,0x2f,0xd0,0x40,0x51,0xae, +0xba,0x6f,0x99,0xe6,0xff,0x78,0xfe,0x08,0xd3,0x6c,0xbe,0xa7, +0x5f,0xde,0xfd,0x8b,0x34,0x1f,0x29,0xa2,0xe1,0x46,0x40,0xf3, +0x03,0x8b,0x35,0xfc,0x2e,0xd4,0x7c,0x8b,0x2b,0x54,0xdc,0x5f, +0x4f,0xf5,0x8d,0x87,0xe7,0x05,0x5a,0xdf,0x34,0x56,0xf5,0xf3, +0xfc,0x93,0xd2,0x1a,0xb6,0xa1,0x5c,0x6d,0x67,0x69,0xbe,0xac, +0xd0,0x7c,0x0b,0x0f,0x6b,0x75,0x9c,0xb4,0x34,0x7c,0xcf,0x57, +0xd7,0x2b,0x50,0x78,0xd6,0x58,0xf3,0xa1,0xeb,0x68,0xf8,0x97, +0xa3,0x64,0xe4,0xd5,0xaf,0x81,0x76,0x7e,0x4b,0x85,0x1b,0xc5, +0x9a,0x1d,0x2a,0x52,0xb2,0xb0,0x55,0x3b,0x4a,0x35,0x5b,0xe6, +0xf9,0xd3,0xbd,0xb4,0xb1,0xd3,0x5c,0xf3,0xeb,0xf2,0x34,0x9f, +0x33,0xac,0xc5,0x1e,0x15,0xea,0x7f,0x39,0x5a,0x2c,0xd3,0x58, +0x8d,0x19,0x6f,0x4c,0x7a,0xed,0x0d,0x68,0xf7,0x6b,0xad,0xb6, +0xbd,0x39,0x23,0x5d,0xc6,0xfd,0x95,0xdc,0xfb,0xaa,0xff,0xe7, +0x69,0x78,0x1d,0xd1,0xfc,0x1e,0xa1,0xda,0x95,0xaf,0xc9,0xb0, +0xbe,0x16,0xa7,0x86,0xd4,0x7d,0x7b,0xaa,0xbe,0x6c,0xa0,0xf6, +0x97,0xa9,0x7b,0x15,0xaa,0xeb,0x97,0x6a,0xfe,0x7e,0x89,0x76, +0xbf,0x90,0x26,0x37,0xdd,0xce,0x55,0x28,0xf9,0x72,0x65,0x63, +0xc2,0x7f,0x13,0xff,0x95,0xaa,0xfa,0x59,0x35,0xec,0x66,0x44, +0x1b,0x2b,0xc5,0x4a,0x4e,0xba,0x7f,0x5a,0xaa,0xe1,0x5c,0x1d, +0x0d,0x6b,0x2c,0x0d,0x33,0x7a,0x68,0x63,0xa1,0x44,0xb3,0x2d, +0xbd,0x15,0x26,0xf4,0xd4,0x7c,0xcb,0x66,0xea,0xba,0xf5,0x35, +0x1c,0xf7,0xc6,0xa0,0x4f,0x9d,0x5f,0x47,0xf3,0x21,0xb8,0xea, +0x27,0x47,0xc3,0x1d,0x4b,0x93,0x59,0x40,0xf3,0xf5,0x4a,0xd5, +0xd8,0xa8,0xd0,0xfa,0x69,0xbc,0xe6,0xfb,0x78,0xf6,0xd9,0xd6, +0xb0,0x40,0xf7,0xd1,0x8b,0x34,0x9f,0xd8,0xd3,0x8f,0x86,0xea, +0x3a,0xb6,0x46,0x59,0xaa,0x8e,0xdd,0xd5,0xd8,0x6a,0xab,0xc6, +0x46,0x85,0x92,0x61,0xb1,0x16,0xe3,0x08,0xb5,0xbf,0x87,0x66, +0x8f,0xbd,0x31,0xa3,0x63,0xc1,0x8d,0x9a,0x1d,0xf2,0xfc,0x19, +0x47,0xc3,0xa5,0x72,0x25,0xcb,0x12,0xcd,0x46,0x95,0x69,0x71, +0x69,0xa9,0x86,0x35,0xc5,0xda,0x9c,0x48,0x58,0x8b,0xd1,0x4a, +0x34,0xbf,0xb3,0x9e,0xaa,0x5f,0x73,0x6d,0x3c,0x74,0xd7,0xf0, +0x25,0x5f,0xc5,0x5d,0x61,0xcd,0xbf,0xae,0xd0,0x30,0x7d,0xbe, +0x6a,0x43,0x91,0xa6,0x0b,0x15,0xea,0x77,0x37,0xd5,0x96,0x12, +0x75,0x8c,0x77,0xce,0x00,0x25,0x53,0x6f,0x2e,0xa6,0x42,0xc3, +0xa7,0x22,0x75,0x9f,0x88,0x36,0x7f,0xe2,0xd9,0x9a,0x92,0x1a, +0xf3,0x07,0x39,0xaa,0x3f,0xcb,0x35,0xdf,0x27,0xac,0xcd,0x15, +0x79,0x71,0x73,0xbe,0x16,0x97,0x44,0x6a,0x60,0x73,0x63,0x75, +0x3e,0x57,0xf7,0x2d,0xd3,0x70,0x33,0x4f,0x93,0x65,0x4b,0x75, +0x4d,0x6f,0x1c,0x34,0xd5,0x62,0xaf,0x3c,0x4d,0xd7,0x3c,0xdf, +0xd7,0x50,0xc7,0x7b,0x7e,0x50,0x27,0xa5,0x07,0x75,0x35,0xfd, +0xf3,0xab,0x7e,0xee,0xab,0xf5,0x51,0xa7,0xbf,0x89,0xb3,0x23, +0x5a,0xbc,0xe0,0x9d,0x1b,0x50,0x3a,0x54,0x57,0x9b,0x27,0x2b, +0xd5,0x70,0xc2,0xd1,0xec,0x6d,0x33,0x0d,0xef,0x4a,0xb5,0x38, +0xa7,0x4c,0xc9,0x3e,0xa4,0xf9,0xcd,0xf5,0xd4,0x7e,0x79,0x9d, +0x4c,0xed,0x78,0xae,0xf9,0x3d,0x9e,0x4f,0xe1,0x53,0xc7,0xd7, +0x57,0x32,0x1a,0xa5,0xe1,0x5e,0xae,0x1a,0xeb,0x5c,0x95,0x8e, +0xd6,0xc6,0x3c,0x0d,0xdb,0x85,0x86,0x51,0x1e,0xde,0x95,0x68, +0xbe,0x63,0x44,0xab,0x43,0x58,0xeb,0xa7,0xba,0x6a,0x9c,0x7a, +0xc7,0xf8,0x35,0xdf,0x29,0xa2,0xea,0xa5,0xeb,0x6f,0xa9,0x36, +0x1e,0x3c,0xbc,0xec,0xa1,0xee,0xe3,0xd9,0xdf,0xf1,0x9a,0x7d, +0xee,0xad,0xae,0xd5,0x5b,0xcd,0x53,0x95,0x28,0x19,0xe5,0x6b, +0x3e,0xa9,0xa7,0xe3,0x63,0xb5,0xf1,0xc2,0xb4,0x71,0x2a,0x34, +0xff,0xc3,0x8b,0xe5,0xc6,0x2b,0x1c,0xec,0xa1,0xc5,0x3c,0x4c, +0xf3,0xb1,0xbc,0x18,0xa3,0x50,0xd3,0xfb,0x12,0xd5,0x76,0x0f, +0x7b,0xc3,0x9a,0xcf,0x5f,0xa6,0x8d,0xe9,0x80,0x7a,0x0e,0xa0, +0xc7,0x05,0x01,0xcd,0x46,0xe8,0x54,0xa2,0xf9,0x2f,0x05,0x1a, +0x4e,0xf6,0xd0,0x74,0xb2,0xbe,0xd6,0xae,0x42,0xed,0x38,0x51, +0x23,0xf6,0xf7,0xe6,0x5e,0x0a,0x6a,0xcc,0x65,0x34,0xd6,0xe2, +0xb5,0x02,0xad,0x1f,0xbb,0xd4,0x68,0x73,0x1d,0x6d,0x9e,0xca, +0xd2,0x6c,0x93,0x37,0xc6,0x84,0x16,0x6b,0xe7,0x69,0x3e,0x53, +0x89,0xa6,0x7f,0x11,0xcd,0xc6,0x86,0x35,0x1d,0x12,0x35,0xfc, +0xdb,0xf1,0x9a,0x6f,0x24,0x34,0x7b,0x32,0x43,0xbb,0x8e,0x67, +0x43,0x9a,0x68,0x7a,0x53,0xa6,0x5d,0xd3,0xd6,0xfc,0x98,0x46, +0xaa,0x9d,0x8d,0xd5,0xb1,0x43,0x35,0x99,0x75,0x55,0xed,0x08, +0x6b,0xba,0x58,0xaa,0xd9,0x49,0x6f,0x7e,0xa9,0x54,0xd3,0x15, +0x2f,0xfe,0xee,0xaa,0x8e,0xaf,0xd0,0xfc,0xb3,0x52,0x4d,0x77, +0x3a,0xab,0xf6,0x94,0xa8,0xb9,0x97,0xf6,0xea,0x1e,0xb2,0x6e, +0x31,0xda,0xd8,0x8a,0x68,0x38,0xe4,0x8d,0x09,0xdd,0x37,0x69, +0xa2,0x30,0x2d,0xa2,0xcd,0xf3,0x15,0xa9,0x6b,0xd7,0xd7,0xfc, +0x8d,0x3c,0xcd,0xc7,0xcf,0xd3,0x6c,0x99,0xad,0x5d,0xbf,0x40, +0x6b,0x43,0x9e,0x86,0xc9,0xf5,0x35,0x1d,0x2c,0xd5,0x70,0xde, +0x6b,0x53,0x23,0xcd,0xcf,0xe6,0x35,0xe6,0x91,0xbd,0x3e,0x69, +0xad,0xcd,0x5b,0x7a,0xba,0xe1,0xc5,0xf1,0x5c,0xeb,0x9f,0xb0, +0xa6,0x53,0x21,0x6d,0x3c,0x5a,0xda,0xfd,0x84,0x16,0xd7,0x7a, +0x73,0x83,0x0d,0xb5,0x78,0xac,0x81,0xd2,0xd5,0x65,0x6a,0xbb, +0x42,0xb3,0x03,0x25,0x9a,0x1c,0x3d,0xbb,0xd4,0x4c,0xf3,0xcd, +0x8a,0x34,0x5b,0x96,0xad,0x6c,0x54,0x73,0x75,0x8e,0x5f,0xfd, +0xe6,0x5a,0xdf,0x78,0xba,0xe3,0xe1,0x53,0x58,0xab,0xb3,0x27, +0xeb,0x41,0x6a,0xbb,0x99,0x66,0x0f,0x4b,0xb5,0xf6,0x71,0xcd, +0xf6,0x7a,0x36,0xa6,0x87,0xe6,0xc3,0xcf,0xd4,0xea,0x57,0x47, +0xb5,0x3d,0x47,0xf3,0x1f,0x3c,0xb9,0x04,0xb4,0x98,0xb2,0x87, +0xa6,0x53,0x21,0x0d,0x87,0x9a,0xa8,0xeb,0x36,0xd0,0xfa,0xbb, +0x44,0x8b,0x11,0xc6,0x6b,0xed,0xc8,0xd7,0xe2,0x2c,0x6f,0x5c, +0x37,0xd6,0xec,0x8b,0xd0,0x62,0x66,0x47,0xdd,0xcb,0xd2,0xfa, +0xb8,0x8e,0xaa,0xa7,0x5f,0xbb,0x8f,0x3e,0xaf,0xe4,0xf9,0xca, +0xc5,0xda,0x38,0xc9,0xd3,0x7c,0xc7,0x50,0x8d,0x58,0x95,0x6b, +0xcf,0x5e,0xbc,0xd8,0xb7,0x48,0xf3,0xad,0x84,0xe6,0xff,0xd5, +0xd5,0x9e,0xef,0x44,0x34,0x7f,0xc9,0xaf,0xfe,0xe7,0x68,0x63, +0x4e,0x9f,0xc3,0x10,0x9a,0x8f,0x12,0xd2,0xde,0x47,0x29,0xaa, +0x31,0x27,0xde,0x5a,0xf3,0x3f,0x85,0x16,0x3f,0xf5,0xd0,0xe6, +0xbc,0x43,0x9a,0xae,0xd5,0xd5,0xc6,0x49,0xbe,0x56,0xc7,0x7a, +0xea,0x5c,0xa6,0x3d,0x27,0xb1,0xb4,0x79,0x02,0x5d,0x87,0x7a, +0x6a,0x73,0x20,0xb6,0x56,0x37,0x6f,0x3c,0xf9,0xb4,0x7a,0x78, +0x3e,0x69,0x6f,0x55,0x57,0xfd,0x79,0x47,0x71,0x8d,0x67,0x2d, +0x05,0x9a,0x7e,0x7b,0x71,0xbe,0x17,0x63,0x0d,0xd0,0x9e,0x53, +0x38,0x1a,0xc6,0x94,0x6a,0xfe,0x93,0xa5,0xc9,0xd9,0xd2,0xf0, +0xd9,0x9b,0x63,0xd3,0x63,0x3f,0xa1,0xc5,0x36,0x05,0x35,0x9e, +0x89,0x71,0xcd,0x0e,0x7a,0x63,0x48,0x9f,0xab,0xee,0xa7,0xcd, +0x2d,0xb4,0x55,0xba,0xef,0xcd,0x59,0x34,0xd7,0x74,0x2a,0xa2, +0xf9,0x7e,0xde,0xdc,0x71,0x81,0xe6,0xff,0xd6,0xaf,0xe1,0xf3, +0x79,0xb2,0x6f,0xa2,0xf9,0x6b,0xe5,0x5a,0xbd,0x5a,0xd4,0x88, +0x6f,0xbc,0x58,0xa4,0x8b,0xa6,0xb7,0x42,0xc3,0xcb,0xc6,0x5a, +0x1c,0xac,0xfb,0x5f,0xfa,0xbc,0x77,0xa9,0xd6,0x0f,0x4d,0xd4, +0xfd,0xea,0x28,0x59,0x35,0xd5,0xe6,0xe4,0xeb,0x6a,0xcf,0xfa, +0xb8,0xc2,0x7e,0xef,0x5e,0x1d,0x34,0x9f,0x4b,0xa8,0xf8,0xb6, +0xa7,0xe6,0xf7,0x17,0x68,0x38,0x59,0xa4,0xe6,0x88,0x85,0x16, +0x9b,0x96,0xd6,0x88,0x81,0x9b,0x68,0x7d,0x52,0xa8,0x8d,0xbd, +0x1e,0x6a,0x5f,0x99,0x36,0x87,0x93,0xa7,0xc5,0x53,0x9e,0x3e, +0x72,0xed,0x99,0x45,0x48,0xf3,0x53,0x0b,0x35,0x5b,0x5e,0xa0, +0x95,0x9e,0x9c,0x23,0xda,0xf3,0x9d,0x09,0x5a,0x5c,0xda,0x5c, +0xf3,0x15,0x42,0xda,0x73,0x87,0xe6,0x5a,0x8c,0xd5,0xbe,0xc6, +0x33,0xa4,0x7a,0x9a,0x7c,0xf2,0x6a,0x60,0x82,0xe7,0xa7,0x04, +0xb4,0x67,0x34,0xa5,0xda,0x7c,0x91,0x3e,0x46,0x8b,0x35,0x5d, +0xe5,0x5a,0x5c,0xec,0xc5,0xd6,0x79,0xda,0x3d,0x3c,0x1b,0x19, +0xd6,0x9e,0x69,0xe5,0x69,0xbe,0x20,0xd3,0xe2,0xe6,0x42,0xed, +0x79,0x58,0xa9,0x16,0x1b,0x70,0x6d,0x2e,0xcc,0x9b,0x43,0x1b, +0xae,0xfa,0xbe,0x50,0xe9,0x31,0xd3,0x9e,0xe9,0x79,0x3e,0x63, +0x1b,0x4d,0x9e,0xc5,0xda,0x35,0xbd,0x18,0xa2,0x40,0xc3,0xf0, +0x0a,0x6d,0xee,0xbb,0x50,0x9b,0xcb,0x28,0xd2,0xfa,0xa5,0xbd, +0x56,0xe7,0x3c,0x0d,0x47,0x27,0x68,0x36,0x29,0xa2,0xc9,0x83, +0x69,0x32,0x2e,0xd7,0xc6,0x4e,0x81,0x66,0x67,0x87,0x68,0x7e, +0x06,0xd7,0x4a,0xae,0xcd,0xd5,0x97,0x6a,0xf3,0x74,0xde,0x98, +0x2e,0xaf,0xd1,0x2f,0x05,0x5a,0xfc,0x5d,0x47,0xc9,0xc4,0xd3, +0xa9,0x8b,0x95,0x9e,0x96,0x69,0xf3,0x90,0x05,0x4a,0x1f,0xea, +0x6b,0x73,0x5f,0x79,0xda,0xf3,0xea,0x12,0xf5,0x6e,0x8d,0xe7, +0x63,0x46,0x34,0xff,0xa9,0x50,0xc3,0x6b,0x6f,0xfc,0x78,0x63, +0xb0,0x9f,0xb2,0xe5,0x9e,0xdd,0x6e,0xa4,0x3d,0x4b,0xf5,0x9e, +0xb3,0xb7,0xd3,0xe6,0x48,0xec,0x1a,0x73,0x06,0x9e,0xfc,0xda, +0x6a,0x7a,0x50,0xa8,0xfa,0xbb,0x81,0x36,0x5f,0xad,0xfb,0x8b, +0x79,0x35,0x9e,0x91,0x77,0xd3,0xe6,0xfa,0x4a,0xb4,0x7b,0x34, +0x56,0xbf,0x2b,0x34,0x0c,0x10,0xaa,0x0f,0xbc,0x67,0xab,0x77, +0xab,0x3a,0x96,0x6b,0xb8,0x52,0xae,0xe9,0xac,0xfe,0xfe,0x00, +0xab,0x31,0x6f,0xee,0x3d,0x33,0x6a,0xac,0xf5,0x65,0x1d,0xcd, +0xd6,0xb5,0xd2,0xe6,0x01,0xeb,0x6a,0xfa,0x58,0xa8,0xcd,0xfb, +0x44,0xb4,0xb8,0xc0,0xbb,0xcf,0x64,0xcd,0x9f,0xaa,0xa8,0x31, +0x7f,0xe1,0x61,0x63,0xb9,0xf6,0xde,0x44,0x63,0xcd,0x3f,0xe0, +0x35,0xde,0x5f,0xc8,0xd3,0xb0,0xa5,0x8e,0x86,0x75,0x21,0xed, +0x38,0x5b,0xf3,0x23,0xf3,0x34,0x9f,0x26,0xa2,0xcd,0x7b,0x84, +0x6b,0xf8,0x66,0x21,0x4d,0x97,0x23,0x5a,0x1c,0xb7,0x40,0xc3, +0x0d,0x47,0x8b,0x7d,0xba,0x6b,0x18,0xe8,0xd7,0x30,0xb0,0x44, +0xf9,0xab,0xba,0xdd,0x8f,0x68,0xb2,0xac,0xd4,0xde,0xcb,0x18, +0xae,0x3d,0x83,0xcf,0xd7,0xc6,0x64,0x89,0xe6,0xf7,0xe6,0x6b, +0xcf,0x96,0xb9,0xf6,0x9e,0x44,0x9d,0x1a,0x73,0x2f,0x0d,0x55, +0x9f,0x14,0xab,0xba,0x85,0x34,0x79,0x15,0xd6,0x88,0xc7,0xea, +0xa8,0x18,0xa6,0x8e,0x86,0x5b,0x91,0x1a,0xcf,0x6d,0xf3,0x34, +0x7b,0xdf,0x5d,0x8b,0x89,0xf2,0xb5,0x67,0xae,0x97,0x68,0xd7, +0x2d,0xd4,0xfc,0x48,0xfd,0x7a,0xfa,0xbb,0x0c,0x05,0xda,0xdc, +0x87,0x5d,0xc3,0x1e,0x17,0x68,0xcf,0xb8,0xcb,0xb5,0x39,0xa6, +0x52,0xed,0x39,0x79,0x48,0xc3,0x57,0xa6,0x3d,0xdb,0xd0,0xb1, +0xc5,0xb3,0xeb,0xe3,0xd4,0x35,0xeb,0x6a,0x7d,0x59,0xa6,0xe1, +0x68,0x85,0x86,0xdb,0x79,0x1a,0xce,0x32,0x85,0x5b,0xde,0xff, +0x73,0x34,0x59,0xea,0xf6,0xbe,0x5c,0xf3,0x1b,0xbd,0x67,0x71, +0xf9,0xda,0x5c,0x4a,0xb9,0x66,0x6f,0xf5,0x98,0xbc,0xab,0xe6, +0x7f,0xeb,0xb6,0xb8,0xa1,0x66,0x53,0xbc,0x3a,0xea,0xf3,0x80, +0x85,0x6a,0x6e,0xa3,0x97,0x86,0x61,0xb6,0x26,0xe7,0x22,0x4d, +0x8f,0x4b,0x6a,0x8c,0xb9,0x06,0x35,0xe6,0x69,0xd2,0xd5,0xef, +0x6e,0x9a,0x6e,0xe7,0x6b,0xf6,0xa7,0x81,0x86,0x89,0x5c,0xf3, +0x09,0xf3,0xb5,0x39,0x1a,0x5b,0xd3,0x01,0x4f,0x47,0xfd,0xda, +0x33,0x88,0xb6,0x5a,0x9f,0xeb,0x7d,0xcd,0xb5,0x67,0x41,0x4c, +0x8b,0x0b,0x8b,0x6b,0x8c,0x87,0x80,0xd6,0xc7,0x7d,0xb5,0xe7, +0x08,0xde,0x5c,0x6c,0x2f,0x55,0xcf,0xfa,0x5a,0xcc,0xd3,0x40, +0xc5,0x63,0x3d,0xb4,0x71,0xef,0xd3,0x74,0xb7,0x5c,0x8b,0xeb, +0xcb,0x6b,0xcc,0x39,0x37,0xd5,0x7c,0x30,0x1d,0xcb,0x03,0x9a, +0xdd,0xf7,0xf4,0xd1,0xaf,0xd9,0xd0,0x2e,0xaa,0xfe,0x15,0x9a, +0x5c,0x0a,0xb5,0x31,0xe3,0xe9,0x40,0x5d,0x0d,0x13,0xb9,0x36, +0x57,0x1c,0xd2,0x64,0xe6,0x3d,0x6f,0xaf,0x54,0x6d,0x28,0xac, +0xa1,0x73,0x9e,0xee,0x36,0xd1,0xc6,0x49,0xbe,0xf6,0x5c,0xdf, +0xd2,0xc6,0x42,0x03,0x4d,0xa6,0x05,0x9a,0x4f,0x5f,0xa0,0x8d, +0xf3,0x42,0x6d,0x9e,0xa4,0xb4,0xc6,0xf3,0xe6,0x3c,0x65,0xe7, +0x3c,0xdc,0xf5,0xe2,0xcd,0xba,0xda,0xd8,0x9b,0xa5,0xcd,0xed, +0x33,0xcd,0xb7,0x28,0xd1,0xec,0x79,0x6f,0xad,0xee,0x68,0x2f, +0xad,0xab,0xd9,0xe4,0xc6,0x6a,0x7f,0x4f,0xcd,0x3e,0x95,0x6a, +0xba,0x91,0xa7,0x64,0xe1,0xcd,0xe5,0x05,0x6b,0xe8,0x20,0xaf, +0x11,0x37,0xe6,0x69,0xf3,0x99,0xde,0xb3,0x0d,0xa1,0xc9,0x50, +0xd4,0x78,0x06,0xe8,0xe1,0x5b,0xa0,0xc6,0xb3,0xb5,0x42,0xed, +0xb9,0xb4,0x37,0x4e,0x9a,0x6b,0xf1,0xad,0xf7,0x4c,0xb2,0xb7, +0x86,0x1d,0xb3,0x34,0x7c,0x2e,0xae,0xf1,0xee,0x0e,0xd3,0x30, +0x93,0x2b,0x39,0xf6,0xd2,0xec,0x74,0x03,0x0d,0xbf,0x23,0x35, +0xde,0xd9,0xcb,0xd7,0xfc,0x27,0x47,0x7b,0x1e,0xeb,0xc5,0x40, +0xbd,0xb5,0xb8,0x8f,0x69,0xb6,0x2d,0xa0,0xd9,0xe4,0x1c,0xad, +0x6d,0xde,0x33,0x85,0x32,0x55,0x0f,0xa7,0xc6,0x58,0x2c,0x57, +0x3a,0xe3,0xe9,0xfc,0xff,0xd7,0xde,0x79,0x00,0x49,0x92,0x5e, +0x05,0x3a,0xab,0x52,0x2b,0xbb,0x5a,0xb1,0xab,0x1d,0xd7,0xa6, +0xbc,0xc9,0xcc,0xaa,0xcc,0xea,0xee,0x1a,0xdf,0x3b,0x7e,0xa6, +0xcd,0x74,0x57,0xf7,0x98,0x1d,0xb3,0x7e,0x56,0xbb,0xd2,0x9a, +0x99,0x85,0x55,0xa0,0x5d,0x2d,0x08,0x09,0xa3,0xd0,0x28,0x04, +0x42,0x42,0xbb,0x0b,0x42,0x88,0x43,0x42,0x78,0x38,0x02,0x38, +0x9c,0xf0,0x20,0x8e,0x23,0x38,0x24,0x1d,0x70,0x71,0x98,0x10, +0xdc,0x1d,0x4e,0x52,0x08,0x13,0x18,0xc1,0xe1,0x42,0x7d,0x7f, +0x56,0xbd,0x37,0xf5,0xd5,0x9b,0xac,0x99,0x59,0x10,0x17,0x5c, +0xdc,0x4d,0xc7,0x9b,0xcc,0xca,0xfc,0xf3,0xcf,0x3f,0x7f,0xf3, +0xfc,0x7b,0xff,0x37,0xe2,0x7b,0x6a,0xc0,0x53,0x0d,0x79,0xfe, +0x9c,0xf8,0x12,0x4e,0x88,0xaf,0x6b,0x0c,0x3b,0x01,0xc7,0x52, +0x71,0xda,0x0c,0x78,0xd3,0x69,0xd8,0x3d,0x6a,0x90,0x2f,0x3a, +0x18,0xdb,0x12,0xfc,0x38,0xb5,0x1f,0xd6,0xa0,0x23,0x38,0x01, +0x1c,0xb5,0x06,0xfb,0x56,0xd3,0xc8,0x0e,0xd4,0x87,0x7c,0x21, +0xe6,0xa0,0xd2,0xfb,0x4b,0xd0,0xa1,0x85,0xb0,0xf9,0x2b,0x4f, +0x44,0xfd,0x45,0x01,0xb2,0x74,0xc3,0xcc,0xad,0xad,0x82,0x17, +0x6b,0x90,0x7b,0x14,0x07,0x46,0xd0,0x59,0xb5,0xb1,0xae,0x77, +0x81,0x76,0x35,0xe0,0xef,0x5a,0x85,0x8d,0x31,0x82,0x9d,0x7b, +0x27,0x6c,0x34,0x65,0xf0,0x3e,0x2a,0x13,0x2f,0x1b,0x7b,0x4b, +0x02,0x5b,0x80,0xac,0xc3,0x2b,0xb4,0xb1,0x0b,0x3f,0xae,0x2e, +0xe4,0xa3,0x08,0x7a,0x40,0xd5,0x0d,0x4c,0x43,0xa6,0xea,0x81, +0x5f,0xda,0x8e,0x31,0x5c,0x46,0x7f,0x07,0x90,0x3f,0x94,0x2e, +0xae,0x83,0x1e,0xa9,0x5e,0x61,0x52,0xee,0x9d,0x31,0xb6,0x49, +0xf2,0x4f,0xf4,0x7f,0x9a,0x96,0xb1,0x2e,0xca,0xb3,0x3b,0x8c, +0xce,0xb2,0x07,0xdb,0x0a,0x75,0x49,0x45,0xf8,0x7e,0xa9,0x7e, +0x3c,0x16,0x3a,0x58,0x47,0x7b,0x54,0xef,0xbe,0x08,0xda,0x3e, +0x05,0xdc,0x4e,0xff,0xba,0x8e,0x91,0x17,0xab,0xe0,0x35,0x8a, +0x46,0x86,0x9f,0x05,0x2e,0xeb,0x00,0x37,0xab,0xdd,0x44,0xf5, +0xa6,0x5b,0x40,0x73,0x74,0xde,0x5d,0x02,0x5f,0x54,0x34,0x7a, +0x90,0x43,0xc0,0x5f,0xdb,0x8d,0xcf,0x43,0x08,0xfe,0x9a,0xfc, +0x34,0xdf,0xdf,0x02,0xad,0x6a,0x41,0x36,0x9c,0x30,0xbe,0x93, +0x45,0x99,0xdf,0x91,0xf1,0x27,0x9c,0x43,0xb9,0x16,0xf4,0x54, +0x55,0xf0,0x3a,0x7b,0x65,0x9e,0xe9,0x37,0x2d,0x8a,0xaf,0x7b, +0xda,0xee,0x6f,0x80,0x2c,0xaa,0x72,0xc9,0xdf,0x62,0xee,0x2a, +0xfe,0xdd,0x0d,0x5b,0x9a,0xce,0xe7,0x04,0xd7,0x02,0x8c,0x75, +0x6c,0xfc,0x68,0xa6,0x30,0x86,0x53,0xd7,0xb9,0x37,0x99,0x51, +0x6e,0x02,0xe7,0xaa,0xa7,0xe5,0xb5,0xaa,0x29,0xcb,0xe7,0x37, +0x8f,0x79,0x37,0xf5,0x96,0xb5,0x6b,0xb4,0x6d,0x1b,0xde,0xab, +0xcf,0x4d,0xe2,0xfa,0x66,0xb4,0x65,0x1b,0x7c,0x3d,0xa6,0x80, +0x93,0xa6,0x32,0xda,0xcc,0x76,0x6e,0xc5,0xbd,0xcd,0x78,0x87, +0xbe,0x4f,0xeb,0xd8,0x02,0x5d,0xf4,0x84,0xcc,0xb7,0x9d,0xb0, +0x23,0xc4,0x90,0xd1,0x13,0xf8,0x7f,0x75,0x44,0xb7,0x76,0x37, +0xe6,0xca,0xbd,0xa2,0x7b,0x50,0x5b,0xd7,0x19,0xc8,0x4e,0x7b, +0x60,0x27,0xfc,0x03,0xa3,0x83,0xe3,0x3c,0x55,0xfc,0xbe,0x0d, +0xf6,0xdf,0x81,0x7c,0xff,0x99,0xfe,0xf1,0x5e,0xc1,0x07,0xfb, +0x60,0x23,0x9c,0x06,0x9d,0x98,0x07,0x6d,0xae,0xc3,0x06,0x13, +0x81,0xf6,0xef,0x85,0x3e,0x59,0xfd,0x6d,0x2d,0x5e,0xab,0x62, +0xee,0x17,0x81,0x33,0xd5,0xde,0x19,0x00,0xbf,0xb4,0x44,0xb7, +0x13,0xe0,0x7a,0x00,0x5c,0x53,0x85,0x5f,0x42,0x03,0xfa,0x9e, +0xa2,0x5c,0xfb,0xb0,0xf8,0x43,0x3e,0x24,0x32,0xd8,0x59,0xa1, +0xc3,0xc7,0x44,0x57,0xd2,0x05,0x5d,0xdd,0x01,0x9f,0xe4,0x79, +0x89,0x85,0x09,0x80,0x87,0x02,0xd8,0x00,0x4b,0xc0,0x2f,0xaa, +0xbb,0x38,0x84,0x75,0x1c,0xc1,0xcf,0xb4,0x25,0xfe,0x92,0x27, +0x04,0xee,0x94,0xe3,0x1a,0xae,0xa9,0x1f,0x28,0x7f,0xd7,0xc1, +0xff,0xf3,0xb7,0x82,0xea,0xa0,0x57,0xe5,0xf7,0x61,0x94,0x3d, +0x01,0xdb,0x6f,0xc3,0x5c,0xd3,0xf8,0x8a,0x6d,0x28,0xaf,0xbe, +0xfc,0xc7,0xe5,0x99,0x15,0x53,0x7e,0x5d,0xde,0x77,0x42,0xf8, +0xcc,0x65,0x39,0x5f,0x91,0x7b,0x65,0xf0,0xb0,0x27,0x4c,0xbb, +0x8f,0x20,0x56,0xe3,0x14,0xae,0x1f,0x92,0x6b,0xeb,0x52,0xcf, +0xac,0x79,0x76,0x59,0xc6,0x5e,0xfb,0x66,0x1d,0x70,0x02,0xe7, +0x8b,0x28,0x7f,0x4c,0xe6,0xef,0xb2,0xd4,0x99,0x88,0x2c,0x78, +0x4c,0xe0,0x10,0x9e,0x5b,0x31,0xcf,0x1f,0xc1,0xbd,0xa3,0xf2, +0xfb,0x08,0x7c,0x9f,0xd7,0x31,0xbe,0x8b,0x28,0xb7,0x4b,0xea, +0x3e,0x2a,0xef,0x3d,0x2a,0x73,0xab,0x27,0xa0,0x31,0x66,0xcb, +0xd7,0x81,0x18,0xfc,0x48,0x03,0x34,0xb2,0x69,0x7c,0x4c,0x13, +0xe8,0xce,0x2a,0xb0,0xd1,0x54,0x71,0xad,0x89,0x7a,0xa6,0xc1, +0xc3,0x4f,0xc3,0xbe,0xd3,0x00,0xde,0xa3,0x1d,0xb0,0x04,0xba, +0x1e,0x00,0x07,0xce,0x82,0x2f,0xaa,0x80,0x8f,0x2b,0x19,0xfd, +0x58,0x62,0x64,0x8d,0x0a,0x68,0xbc,0xda,0x26,0x95,0x26,0xcd, +0xc1,0x16,0x37,0x27,0x6b,0xf9,0x00,0x62,0x15,0x12,0xc8,0x83, +0xca,0x8f,0x47,0xd0,0xdf,0xcc,0x43,0x4f,0x58,0x87,0xae,0x4d, +0xdb,0xd4,0x46,0x9b,0x43,0x39,0x6e,0xc7,0x37,0xd5,0x8d,0x4f, +0xe0,0x6e,0xd8,0x23,0x9a,0x58,0xfb,0x3b,0x8d,0x1c,0x59,0x04, +0x7e,0x8d,0xc0,0x73,0xce,0x98,0xe7,0xe9,0x4f,0x54,0x06,0x1e, +0xa1,0x3e,0x97,0xbc,0x50,0x88,0x31,0x69,0x19,0x3f,0xf6,0x08, +0xfe,0xec,0xfa,0xae,0x9d,0xb0,0x7b,0xab,0x1e,0x6c,0x12,0x31, +0x15,0x65,0xa1,0x15,0x8b,0x02,0xfb,0x60,0x7f,0x9e,0x93,0xfe, +0x99,0x03,0x5f,0x30,0x07,0xbf,0xe8,0x9d,0xe0,0x75,0xbb,0xf0, +0x01,0xdd,0x83,0x6f,0x53,0x9e,0xb6,0x64,0xec,0xca,0x81,0xb1, +0x9d,0x37,0xd0,0x57,0x8f,0xc9,0xda,0x39,0x00,0xfe,0x5d,0xfb, +0x87,0x6b,0xb7,0x27,0x6d,0xe6,0xef,0x1a,0x7c,0x0d,0x97,0xb0, +0x76,0xba,0xf0,0xf5,0xed,0x49,0x9c,0xd4,0x3c,0xca,0xef,0x84, +0x9c,0xdd,0x83,0x0f,0x73,0x2c,0xbf,0xb5,0x9e,0x1d,0x88,0xf1, +0x51,0xbf,0x76,0xc5,0x1d,0xcb,0x68,0x8f,0xc6,0x51,0x24,0x82, +0x53,0x7a,0xe0,0x77,0xeb,0xc0,0x87,0x73,0xe2,0x4f,0xa4,0xfe, +0xa3,0x7b,0xa4,0xdd,0xdb,0xc5,0x57,0xa3,0x23,0xbf,0x97,0xa4, +0xee,0x25,0xc1,0xe7,0xc7,0x70,0x4d,0xf1,0x96,0xea,0x1e,0x76, +0x81,0xd6,0xb4,0x8c,0xfe,0xb0,0x09,0xbf,0xbe,0x1a,0xe6,0x6a, +0x11,0x6b,0xb2,0x60,0xd6,0x7c,0x11,0x36,0xc1,0x26,0x74,0x34, +0xdb,0x8d,0xaf,0xcd,0x4e,0xe8,0x2c,0xb6,0x1b,0x9f,0xe9,0x36, +0x6c,0x63,0x6d,0xd8,0x02,0x54,0x86,0x7d,0xbd,0xd4,0xfd,0xbc, +0xc1,0x65,0x53,0x19,0xf1,0x5d,0x7a,0x54,0xd8,0x8c,0x78,0x06, +0x7e,0x13,0xbf,0x25,0x00,0x3f,0xc1,0x58,0x9a,0x9a,0x89,0x9f, +0xa9,0x1a,0xfb,0x16,0x6d,0x62,0x55,0xf8,0x25,0x15,0x60,0xe3, +0x8b,0xc0,0x3f,0x15,0xa0,0x4b,0x0c,0x8d,0x9c,0xb0,0xcd,0xf8, +0x4b,0xd5,0xf0,0x8d,0xca,0x83,0x46,0xd0,0x63,0x55,0x4c,0x3b, +0xab,0x06,0xea,0xe0,0x31,0x68,0x27,0xaa,0x42,0x67,0x3e,0x81, +0xef,0x9f,0x04,0x2d,0x60,0x4c,0x4e,0x09,0xf2,0x68,0x0d,0xf3, +0x66,0x1a,0xfa,0xaa,0x22,0x74,0x0d,0x15,0xd0,0x8b,0x29,0xd0, +0xbc,0x00,0xf7,0x02,0xd0,0x98,0x69,0xf4,0x89,0xce,0xab,0xad, +0xb0,0x1b,0x94,0xd0,0xe6,0x29,0xf8,0x00,0x50,0x27,0x5f,0x34, +0xb4,0x8c,0x3a,0x0f,0xfa,0xc7,0x54,0xe0,0x97,0xaa,0xf2,0xf5, +0x7e,0x59,0x57,0xf3,0xb0,0x3b,0x95,0x21,0xcf,0x95,0x31,0x0f, +0x6a,0x26,0x46,0xa0,0x66,0x70,0x71,0x1d,0xef,0x69,0x66,0xf8, +0x2b,0x55,0x21,0x3b,0xb2,0x7c,0x1d,0x6b,0x88,0x73,0x62,0xab, +0xb1,0x0d,0x4e,0x63,0xbc,0xe9,0x33,0xc7,0x67,0xa8,0x77,0x2b, +0x1b,0x7d,0xfe,0x9c,0x89,0xc7,0x9b,0x36,0x76,0x9f,0x1a,0xd6, +0x4a,0x15,0x7d,0xc1,0xfe,0x9b,0xc1,0x98,0x4c,0x63,0x3d,0xd5, +0x81,0xab,0x2b,0x90,0x1b,0x8a,0xf0,0xf3,0x2c,0xa3,0x2f,0xa6, +0xcd,0xba,0x28,0x1a,0xbf,0xc6,0x02,0xc6,0xbb,0x89,0xf9,0xdb, +0x34,0xbc,0xc0,0x94,0x59,0x5b,0x15,0xac,0xe5,0x26,0xd6,0x74, +0x84,0xb8,0x9b,0xed,0x98,0x1b,0x4d,0xe1,0xa5,0x43,0xc3,0x3b, +0x35,0x11,0x37,0x16,0x03,0xdf,0xed,0x00,0xbf,0xa0,0xba,0x95, +0x25,0xe8,0x48,0x3a,0x58,0xb3,0x13,0xd0,0x73,0xcf,0x22,0x5e, +0x26,0x04,0x28,0xfd,0x5f,0x15,0x5c,0xa5,0x74,0xf1,0x0e,0xb9, +0x36,0x2b,0x6d,0x5e,0x85,0xce,0xa5,0x07,0x1a,0x3a,0x23,0xf4, +0x2d,0x12,0xfe,0x63,0x35,0x03,0x94,0xe7,0x5b,0x12,0x7e,0xf6, +0xb0,0x3c,0xa3,0xbf,0x17,0x84,0x2e,0xad,0xc2,0xa6,0xfb,0x06, +0x59,0x1b,0x5d,0xac,0xd5,0x09,0x99,0x93,0xea,0xdf,0xbc,0x1b, +0xf8,0xa3,0x61,0x7c,0x05,0x1a,0xd0,0x93,0x6b,0x3c,0x4c,0x03, +0xf2,0x5c,0xc5,0x94,0xaf,0x01,0x47,0xd3,0xe6,0x56,0xc6,0xdc, +0xaf,0xdd,0x20,0x94,0xa1,0x0b,0x2c,0x00,0x5f,0x16,0x4c,0x5c, +0x47,0xcd,0x5c,0x8b,0x8c,0x7e,0xa0,0x0a,0x3c,0x37,0x8d,0x7b, +0x21,0xf8,0xc3,0x1a,0x68,0x50,0x05,0x3c,0x70,0x01,0x3c,0x73, +0xd5,0xbc,0x8b,0xc7,0x69,0xd8,0x33,0x2b,0x46,0x3f,0x64,0xcb, +0x54,0x33,0xfa,0x63,0xda,0xe0,0xfd,0x92,0xc1,0x19,0x15,0xd8, +0x56,0xe8,0x17,0x54,0x33,0xbe,0xb9,0x59,0x38,0x84,0x7e,0x36, +0x55,0x33,0x4e,0xdb,0x32,0xfa,0xbd,0x00,0xbd,0x61,0x1b,0x74, +0x56,0x75,0xc0,0xd3,0xd0,0x6f,0x4e,0xa1,0xfd,0x93,0x86,0x26, +0x4d,0x98,0xef,0xb5,0xb6,0x04,0xfa,0x4a,0xd5,0x80,0x37,0x6a, +0x38,0x56,0xcd,0x79,0x0d,0xf8,0x76,0x1b,0xf0,0x6d,0x0d,0x6d, +0x2e,0xa3,0x3d,0xd3,0x86,0xae,0x87,0xd0,0xf3,0xa9,0x7d,0x5a, +0x75,0x74,0x93,0xb2,0x4e,0x77,0x00,0x97,0x29,0x6e,0xb8,0x13, +0xef,0x2f,0xe1,0x5d,0x21,0xfc,0x6e,0x12,0xd3,0x3e,0xc6,0x3a, +0x96,0x8c,0x7d,0x4b,0x69,0x1b,0xed,0x03,0xc7,0xa1,0xb7,0xed, +0xc0,0x0f,0xa9,0x01,0xfc,0x58,0x41,0xac,0x58,0xdd,0xc4,0x06, +0x37,0x8c,0x9f,0x5c,0x04,0x7b,0x02,0xa1,0x69,0xfc,0x3b,0x43, +0x53,0x57,0xc5,0xc4,0x53,0x37,0xcc,0xf3,0x21,0xce,0x27,0x4d, +0x4c,0x55,0x68,0x7c,0x5e,0x6c,0xf9,0xc0,0xc4,0x37,0x36,0xcc, +0x33,0x4d,0xe0,0xa2,0x26,0xfc,0x82,0x03,0xc8,0x4d,0x55,0xa3, +0x87,0x69,0x9a,0xd8,0xa0,0xc0,0xd8,0x02,0xed,0xb7,0x07,0x78, +0x3e,0x44,0x59,0xeb,0xaf,0x63,0xeb,0xad,0xa3,0x9f,0x0a,0xa6, +0x6d,0x25,0x13,0x17,0x1d,0x80,0x97,0x0e,0x51,0x37,0xf9,0x92, +0x12,0xe8,0x35,0xe3,0xe4,0xaa,0x86,0x9e,0x07,0x23,0x7a,0xba, +0xa1,0x3d,0xb4,0x61,0xda,0x1b,0x9a,0xf7,0xb3,0xbe,0x10,0x36, +0x92,0xc0,0xf4,0x37,0xdb,0x57,0x35,0xdf,0x51,0x35,0x36,0xeb, +0x1a,0x68,0x6a,0xd5,0x7c,0x7b,0x0d,0xf2,0x75,0xdd,0xd8,0x4c, +0xeb,0xc6,0x3f,0xa7,0x64,0xd6,0xee,0x3c,0xf0,0x7c,0x15,0xe5, +0x22,0x94,0xd5,0x63,0x57,0xfa,0x6b,0xaf,0xd0,0xbc,0x49,0xdc, +0xdf,0x0e,0x5d,0x6c,0xd1,0xd8,0xb5,0x62,0xf0,0x31,0x53,0xc0, +0xf3,0x85,0x0c,0x1d,0x2f,0x79,0x0e,0xf5,0x41,0x53,0x59,0x66, +0x0b,0xf8,0x19,0xb5,0x0b,0x7c,0x1d,0x74,0x71,0x0d,0x33,0x6f, +0x62,0xf8,0xf6,0xa8,0xcc,0x3d,0x8d,0xf9,0x54,0x36,0x36,0xf4, +0x9a,0x89,0x65,0x2b,0x1b,0x79,0x89,0xe7,0xe5,0x0c,0xbc,0x54, +0x86,0xdd,0xb4,0x02,0xfc,0x5c,0x31,0x31,0x6d,0x13,0xb0,0x51, +0xd4,0x30,0x3e,0xf4,0x59,0x09,0xf0,0x2d,0xe1,0x35,0xd6,0xb8, +0xc6,0xa4,0x52,0xae,0xdc,0x63,0xc6,0xbf,0x9e,0xa1,0xf3,0xa8, +0x98,0xd8,0xbe,0x0a,0xae,0x15,0x8d,0x1c,0x56,0xc0,0x78,0x74, +0xc0,0x97,0x2d,0x43,0xe7,0xa3,0x6b,0x5a,0xfd,0xcd,0xbe,0x54, +0xfa,0xfe,0xa2,0xf0,0x41,0x3d,0x40,0x02,0x9f,0x84,0x45,0xd8, +0x2b,0xf5,0x77,0x6f,0x68,0x7b,0xe9,0x83,0xea,0xd8,0x77,0x65, +0xd8,0xa0,0x4a,0xa0,0x19,0x05,0xdc,0xe3,0xbc,0x9d,0x44,0xd9, +0x49,0x5c,0x2f,0x18,0xbe,0xb7,0x02,0xda,0x58,0xca,0xe8,0x8f, +0x69,0xc8,0x4a,0xd3,0x78,0xb6,0x68,0xe8,0xea,0x34,0xec,0x18, +0x94,0xa7,0xb2,0x6c,0x26,0xd3,0xd0,0xbb,0xa7,0xdf,0xf6,0xef, +0xe4,0x77,0x0f,0x31,0xce,0x0a,0x25,0xc4,0x9e,0x2a,0x0e,0x9a, +0x44,0x7c,0xf3,0x9c,0xf1,0x37,0x9b,0x45,0x0c,0xa0,0xc6,0x9e, +0xaf,0x1b,0x58,0x15,0xfe,0x7d,0x16,0x71,0x20,0xeb,0x78,0xf7, +0xaa,0xd0,0xc7,0x75,0x29,0x77,0x5c,0x8e,0x2a,0x0f,0xad,0x99, +0xeb,0x5a,0xdf,0x92,0x5c,0x53,0x3c,0xb1,0x0a,0x7f,0xae,0x35, +0xe8,0x1b,0x97,0x20,0xdf,0x6a,0x9f,0x6f,0x02,0x8e,0x62,0x9f, +0x17,0xf1,0xad,0x93,0x46,0x56,0x61,0x2c,0x76,0x19,0x65,0xb7, +0x98,0x39,0x31,0x01,0xb9,0x6a,0x02,0xe5,0xac,0xbd,0xac,0x6a, +0xe6,0x98,0xe6,0x50,0xe2,0xdc,0xaa,0x67,0x8c,0x75,0xcb,0xd8, +0xe7,0x52,0xdb,0xc3,0x5d,0x86,0x67,0x26,0x8d,0x21,0xef,0x59, +0x40,0x8c,0xe5,0x4e,0x8c,0x2d,0x79,0x5b,0x95,0xc7,0x27,0x31, +0x0f,0xd5,0x1e,0xa6,0xb2,0x48,0x47,0x8e,0xca,0xe3,0xcc,0xfb, +0xc3,0x7c,0x8a,0xbb,0x04,0x3f,0xc5,0xf0,0xd5,0xaa,0xc3,0x26, +0x35,0x0b,0x1c,0x59,0x46,0x3b,0x89,0xfb,0x42,0xc3,0x6b,0xd5, +0x33,0xe4,0xf8,0x9a,0xe1,0x81,0xa9,0x63,0x69,0x5c,0x47,0xfe, +0xa8,0x8e,0xa9,0xa7,0x6a,0x74,0x3b,0x15,0x73,0xac,0x65,0xf8, +0xdb,0xd4,0x80,0x97,0x2b,0x46,0x4f,0xcf,0xb2,0x96,0xe7,0xaf, +0x5e,0xe3,0x99,0x71,0xc7,0xeb,0x41,0x05,0x3c,0x44,0x05,0x36, +0x37,0xd5,0x9d,0x4f,0xa2,0x4c,0x03,0x32,0x52,0xd5,0xf0,0xf0, +0x15,0xf3,0x5d,0x65,0xf0,0xac,0x65,0x13,0x4b,0x5f,0x84,0xfc, +0x30,0x01,0x1b,0x46,0x01,0x3a,0xb3,0x2a,0xec,0xa6,0x93,0xd0, +0x37,0x50,0x4f,0xd8,0x05,0x8f,0x30,0x01,0xf9,0x6e,0x1b,0xc6, +0x4a,0xd7,0xde,0x56,0x89,0x6b,0x2e,0x20,0x5e,0x89,0xe7,0x47, +0x44,0x56,0xdf,0x06,0x9d,0x23,0x75,0x24,0xb7,0x21,0x66,0x47, +0x6d,0xbe,0x81,0x1c,0xeb,0xd0,0xa9,0xdc,0x0e,0x39,0x63,0x42, +0x62,0x4d,0x95,0x66,0x6f,0xc5,0x77,0xe8,0x3a,0xbd,0x0d,0x7c, +0x06,0xdb,0x55,0x81,0xed,0xf8,0xd5,0xa0,0x6f,0xdb,0x20,0xeb, +0x6c,0x95,0x6b,0x5b,0xf0,0xee,0x57,0xcb,0xf5,0x82,0x7c,0xcf, +0x66,0xe9,0xa7,0xcd,0xa0,0xdf,0x25,0xf8,0x61,0x29,0xce,0x38, +0x27,0x63,0x75,0x4e,0xc6,0x77,0x1e,0xbe,0xcf,0x6a,0xbf,0xed, +0x02,0x87,0xb7,0x61,0x0b,0xd9,0x01,0x19,0xa4,0x0e,0x5f,0x2f, +0xf2,0x03,0x11,0x64,0xb9,0xae,0x91,0xa7,0x98,0x13,0x8b,0xfe, +0xdc,0x15,0xf8,0xd8,0x91,0x8e,0x94,0x8d,0x1f,0x7f,0xd5,0xc4, +0xcb,0x34,0x11,0x3f,0xd5,0x36,0xfe,0x8a,0x4d,0xf0,0xe3,0x31, +0xe6,0xaa,0xfa,0x45,0x44,0xc0,0x2f,0x0f,0x83,0x6f,0x7b,0x12, +0xf1,0x96,0x7b,0xd0,0xd6,0x47,0x21,0xfb,0x35,0xe1,0xd3,0x57, +0x87,0x2d,0xba,0x01,0x59,0x2d,0x4b,0x36,0x29,0x1b,0xd9,0x65, +0x9b,0x9c,0xdf,0x9e,0x11,0xeb,0x44,0x99,0x43,0xcb,0x6f,0x31, +0xb8,0xb1,0x02,0xde,0xb3,0xea,0x8f,0xe6,0xd4,0x50,0x1f,0x73, +0x5b,0x3e,0x82,0xaf,0x0b,0x7d,0xb1,0xab,0x88,0xb7,0xdf,0x26, +0xdf,0xda,0xc2,0x5a,0xa7,0xad,0x80,0xb4,0xa9,0x64,0x74,0x27, +0x25,0xcc,0x6b,0xfe,0x6e,0xc9,0xda,0x8b,0xc1,0x2f,0xa8,0x6f, +0xcc,0x5e,0xf0,0xcb,0x89,0xe1,0x27,0x3a,0xf0,0x9f,0x09,0xe1, +0x1f,0x56,0xc5,0x77,0x44,0x28,0xcf,0x9c,0x38,0x11,0xea,0xaa, +0x19,0x9b,0x5d,0xdb,0xf8,0x1c,0xce,0x82,0x4f,0x57,0xfe,0x80, +0x7e,0x61,0x35,0xd8,0x2d,0x19,0xbf,0x37,0x07,0xdf,0xda,0xd9, +0x0c,0x3f,0xeb,0x19,0xf8,0xeb,0xcf,0xc1,0xff,0x83,0x36,0x23, +0xb5,0x9f,0x44,0x68,0x43,0x0d,0x36,0x16,0xc6,0x9e,0x76,0x8d, +0x5f,0x51,0x0d,0x71,0x01,0x21,0xfc,0x9f,0x1a,0xc6,0x4f,0x9c, +0xb1,0x46,0x2d,0xe0,0x2a,0xb5,0x4d,0xce,0xc1,0x66,0x9a,0x18, +0x1d,0x1f,0x7d,0xe3,0xe7,0xe0,0xab,0xc2,0x18,0x2f,0x95,0xe1, +0x3b,0xc6,0x76,0x3b,0x03,0x3b,0x70,0x1d,0x63,0xc9,0x18,0x02, +0xe6,0xc2,0x2c,0x01,0xa7,0xcc,0x1a,0xff,0xa8,0x10,0x7e,0x85, +0xb1,0xf1,0xcd,0xef,0x62,0x1c,0x26,0x4c,0xec,0x59,0xd3,0xe8, +0x6a,0xf8,0x6c,0x0c,0x7c,0xc5,0xb5,0x52,0xcd,0xb0,0x0d,0x91, +0xbe,0xcd,0x98,0x72,0xd3,0xe0,0xd5,0xa6,0xa1,0xdf,0x2d,0xc3, +0x07,0xa6,0x09,0x5e,0xab,0xec,0x8f,0xe6,0xfd,0x2b,0xa1,0x7f, +0xc8,0x5b,0xd2,0x7e,0x52,0x44,0x7c,0x64,0xd9,0xf0,0x8e,0x9a, +0x03,0xa1,0x6c,0x7c,0x54,0x22,0xa3,0x67,0x6c,0x62,0xee,0x57, +0x0d,0xdf,0x1a,0x65,0xc8,0x5c,0xac,0x7f,0x1a,0x6b,0xba,0x8c, +0x78,0xcd,0x19,0xac,0xab,0x08,0xfa,0xf9,0x92,0xd1,0xa5,0x2b, +0x9d,0x6d,0x03,0x8f,0x57,0x40,0xe3,0xa6,0x4c,0xdd,0xe4,0x3b, +0x55,0x2f,0xa9,0x3a,0x82,0x2d,0x78,0x2e,0x80,0x2f,0x9b,0xe6, +0x78,0xb8,0x1d,0x71,0x38,0x25,0xf8,0xab,0xa9,0x3e,0x75,0x33, +0x78,0x74,0xcd,0xf9,0x73,0x9b,0xf8,0xfd,0x6b,0x2c,0xc1,0x56, +0xd0,0x61,0xe6,0x9c,0xdb,0x26,0xf7,0x36,0xc9,0xb3,0xb7,0x4a, +0x7d,0x5b,0x80,0xbf,0x9a,0xa0,0x49,0xc7,0x31,0xee,0x75,0xe8, +0xa1,0xd4,0xf7,0x68,0x37,0xe6,0x4e,0x03,0x7a,0x86,0x26,0xf8, +0xd0,0x43,0xfe,0xd5,0x39,0x10,0x08,0x51,0x86,0xcd,0x76,0x5c, +0xd9,0xa6,0x3f,0x9a,0x4b,0x87,0x39,0x57,0x82,0x8c,0xba,0xda, +0x19,0xef,0x2a,0x8d,0x79,0x7f,0x04,0x1d,0x4e,0x0d,0xcf,0xb7, +0x71,0xde,0x02,0x0d,0x66,0xfd,0x01,0xbe,0x9f,0xf9,0xa6,0x42, +0xb4,0xcb,0xda,0xe5,0x02,0xe8,0x71,0x23,0xf8,0xc7,0xb7,0xd1, +0x86,0x19,0x13,0xf3,0x4d,0x7a,0xa2,0xeb,0xe4,0x2d,0x26,0x6e, +0xbf,0x62,0xe2,0x73,0x27,0xa1,0x6b,0xad,0x23,0xa6,0xa6,0x6e, +0xfc,0x72,0xaa,0x98,0x03,0x55,0xc4,0x53,0x54,0x8d,0xfe,0x90, +0xf9,0xc8,0x0a,0x26,0xfe,0x65,0xda,0xc8,0x15,0x13,0x90,0xdf, +0xd2,0x18,0xd6,0x97,0x0a,0x34,0x32,0x6c,0x37,0x35,0x73,0xbd, +0x62,0xfc,0xe4,0xaa,0xc6,0x17,0x97,0xf9,0x8a,0xab,0xa6,0x9e, +0x12,0xf4,0xd6,0x0d,0x23,0x43,0x95,0xf0,0x9b,0x7c,0x50,0x09, +0xf7,0x69,0x63,0xad,0x99,0x3a,0x6a,0xc6,0xde,0x5c,0x85,0xdc, +0x5b,0x01,0xbf,0xbd,0xd5,0x1f,0xcd,0x81,0xd5,0x02,0xc4,0x19, +0xb1,0x55,0xa4,0xaf,0x31,0xca,0x46,0x19,0xb4,0x37,0x34,0x36, +0x3d,0xd6,0x43,0xff,0x78,0xd6,0x5b,0x46,0xdf,0x14,0x8d,0xed, +0xd1,0xae,0xd9,0x86,0x89,0xeb,0x6f,0x9a,0xb1,0x69,0x66,0xdc, +0xab,0x1b,0x1b,0x42,0xdd,0x3c,0xd3,0xc8,0xb8,0xcf,0xb8,0xb4, +0xc3,0x86,0x3f,0xb7,0x65,0x6b,0xf0,0xdf,0x68,0xfa,0xa3,0x79, +0x66,0x03,0xd8,0x10,0x2a,0xe8,0x97,0xca,0x75,0x70,0x4f,0x16, +0xec,0xb8,0xc6,0xbd,0x06,0xe6,0x4c,0xcd,0xd8,0x4b,0xac,0x4f, +0x7c,0xc5,0xd8,0x22,0x1a,0x90,0x87,0x1b,0x46,0x7f,0x18,0xe0, +0x9a,0xf2,0x67,0x13,0xb8,0xd6,0x40,0x39,0xc6,0xb2,0x05,0xa6, +0x7f,0x03,0x73,0x1e,0x98,0xb6,0x54,0x4c,0x0c,0x78,0xc5,0x3c, +0xbf,0x0d,0xb8,0x9c,0xf1,0x5d,0x65,0x23,0xbf,0x14,0xb1,0xd6, +0x8b,0xe6,0x5b,0xca,0x38,0xa7,0x9c,0xc4,0x6f,0x2c,0x8f,0xf9, +0xb6,0x20,0xc3,0x0e,0xc5,0x35,0x7f,0xce,0x1f,0xcd,0x05,0xab, +0xc7,0x53,0xe2,0x27,0x7b,0x4a,0x7e,0x9f,0x11,0x7f,0xcb,0x53, +0xf0,0xcf,0x3c,0x05,0x7f,0xd4,0xd3,0x02,0x59,0xe7,0xea,0x47, +0xda,0xcb,0x80,0xf5,0x31,0xd7,0xe9,0x37,0xb9,0x8c,0x18,0xaf, +0x1e,0x7c,0xb5,0x7a,0xa2,0x37,0x5a,0xc4,0xf5,0x05,0xc8,0x35, +0x5b,0x8d,0xef,0x4f,0x4b,0xf0,0xc7,0xa4,0xf1,0x61,0x69,0x41, +0x6e,0x68,0x89,0xcd,0xbe,0x0b,0x9f,0xc1,0x06,0x7c,0x0e,0x76, +0x43,0x86,0x9b,0x83,0x4f,0x59,0xe4,0x8f,0xe6,0x67,0x6a,0x98, +0x58,0x9d,0x36,0x78,0x80,0xc8,0xcc,0x6b,0x82,0xd2,0xbe,0x19, +0x33,0x76,0x4d,0xa3,0xff,0x62,0x1e,0xbd,0x24,0x23,0x16,0x61, +0x16,0xbc,0x53,0x11,0x7e,0xb0,0xc4,0xb9,0x21,0xf0,0x57,0x84, +0xf9,0x51,0xc4,0xbd,0xa2,0xf1,0xa5,0x2e,0x1a,0x5f,0x1e,0xf2, +0x9d,0xe4,0x61,0x9b,0xe0,0xd7,0xa6,0x60,0x0b,0xa6,0x1e,0xbb, +0x62,0x7c,0x47,0x39,0xff,0x19,0x3f,0x5c,0x32,0x3e,0x39,0x15, +0xe3,0x0f,0xb5,0x3d,0x43,0x7f,0x59,0x81,0x9e,0xc8,0xae,0xa1, +0x9a,0xf9,0x96,0x4a,0xc6,0xb1,0x62,0xda,0x54,0xc8,0x38,0x27, +0xcf,0x32,0x6b,0x70,0x29,0x69,0xc8,0x9c,0x8c,0x67,0x07,0x76, +0xbe,0x16,0x7e,0x77,0xa0,0x7f,0xeb,0x60,0x4c,0x77,0xc3,0xdf, +0x9a,0xfb,0x54,0x2c,0x88,0x7f,0xf1,0x79,0x91,0x97,0x7b,0xc6, +0xc6,0x4e,0x5b,0x73,0x62,0xf8,0x02,0xe2,0x88,0x02,0x74,0x2a, +0xd4,0xbd,0x96,0xd0,0xc7,0x15,0x43,0x53,0x68,0x0b,0x9c,0x06, +0x6e,0x23,0xfe,0xb2,0xb1,0xe7,0x15,0x8c,0x5f,0x39,0xc3,0x1e, +0x3e,0x85,0xe7,0xaa,0x26,0xb6,0x9f,0xfc,0xc3,0x1c,0xf4,0x5a, +0xf4,0x57,0xa3,0x8c,0x54,0x87,0x9d,0x86,0xbe,0x58,0x45,0xf0, +0x89,0x4d,0xe3,0x3f,0xa1,0xf2,0xe2,0x12,0xe6,0x55,0x8c,0xef, +0x61,0xbe,0x32,0xe5,0x33,0x66,0x8c,0x2f,0xc3,0x1c,0xf8,0xb6, +0x3a,0xfc,0xa2,0x48,0x5b,0x19,0x7f,0xbc,0x17,0xeb,0x4a,0xf3, +0xae,0xad,0x80,0x57,0xa4,0x0c,0x6a,0xa1,0x0d,0xdd,0x23,0x65, +0xb0,0x2e,0xfa,0xab,0x64,0xf4,0xb4,0x25,0xb3,0x5e,0x34,0x2e, +0x9c,0xf9,0x89,0x98,0xbf,0x9c,0x7a,0xaa,0xa6,0xe8,0x06,0x43, +0xf0,0x5d,0xb1,0x89,0xb3,0x0b,0x8c,0x5d,0x9d,0xbe,0x75,0x36, +0x9f,0x5c,0xd9,0xcc,0xc7,0xf4,0x9d,0xe9,0x1e,0x3e,0xb2,0x6f, +0x55,0x2e,0xdd,0x8f,0xe4,0xc3,0xd7,0xff,0xdd,0x3f,0xea,0x39, +0xee,0x8f,0x94,0x7b,0x01,0xf7,0x2d,0xd8,0xf2,0xff,0xe6,0x20, +0xfc,0xfc,0x42,0xba,0xdf,0x4c,0x7f,0x0f,0xa0,0x29,0x99,0xdf, +0x3f,0x2f,0xf2,0xec,0xad,0x22,0x6b,0xa4,0xd7,0x7e,0x09,0xbe, +0xbe,0x25,0xf1,0xdf,0x4e,0xe7,0xfe,0x07,0x64,0xfe,0x6e,0x16, +0x5f,0xe7,0x65,0x59,0x87,0xdf,0x8f,0xf9,0xa8,0xfe,0xa0,0x87, +0xe5,0x99,0x25,0x39,0x3f,0x25,0x3c,0xe2,0xdb,0xfc,0x4f,0xe7, +0x35,0xa7,0xf8,0x79,0xa1,0xc3,0x3b,0x8c,0x3e,0x41,0x61,0x13, +0x60,0x9f,0x7f,0x25,0x57,0x46,0xce,0xcd,0xed,0xdc,0xcd,0x22, +0xbf,0xff,0x80,0x7c,0xc3,0x6f,0xf8,0xa3,0xfb,0x71,0x9d,0x00, +0xbe,0x29,0x60,0x0e,0xeb,0x1a,0xd7,0xbd,0x3e,0x6a,0x88,0xff, +0x5f,0x36,0x7a,0xea,0x55,0x29,0xa3,0xf8,0x7f,0x05,0x72,0x41, +0xcd,0xc4,0x82,0x35,0xa0,0xcf,0x38,0x81,0x35,0xd5,0x06,0x8e, +0x98,0x06,0xed,0xef,0x41,0xe7,0x52,0xf3,0x87,0xf9,0xf3,0x4a, +0xe0,0x55,0x4b,0xc6,0x47,0xb3,0x08,0xfd,0x3a,0xf9,0xe3,0x33, +0xc6,0x77,0x45,0xf3,0xa5,0x05,0xfe,0x68,0xce,0xc9,0x0e,0xfa, +0xa5,0x86,0xd8,0x8c,0x00,0xba,0x1d,0x8d,0x4b,0x2c,0x01,0x37, +0x15,0x21,0x57,0x6f,0x42,0x1c,0x79,0xdd,0xf8,0x1e,0xd4,0x8d, +0x4f,0xd9,0x1a,0xd6,0x7e,0x19,0xba,0x08,0xf2,0x2c,0x55,0x13, +0xeb,0x4c,0xb9,0x78,0xca,0xc8,0x5f,0x4d,0x63,0xff,0x52,0x1d, +0x67,0x11,0x34,0xa6,0x8c,0x7e,0x5c,0x37,0xb2,0x56,0x82,0xfe, +0x9c,0x04,0x3d,0x6e,0x18,0xf9,0x34,0x30,0x7e,0x5e,0xd3,0xe0, +0x33,0x1a,0x90,0x8f,0x68,0x87,0x6d,0x8b,0xff,0x7e,0x19,0x7c, +0x5c,0xcb,0xf0,0x1c,0x9b,0xd1,0xee,0x09,0xd0,0xb4,0x26,0xe4, +0x81,0x08,0x34,0xb8,0x00,0xbf,0xeb,0x22,0xf4,0x26,0xb3,0x82, +0xdf,0x97,0xc1,0xa7,0xcf,0xfb,0xc3,0xfc,0x11,0x4d,0xe4,0x11, +0x38,0x92,0x21,0xc3,0xee,0x30,0xfe,0x8a,0x53,0xa0,0x03,0x5d, +0xe8,0x7a,0x15,0x07,0xf4,0xe0,0xdb,0x30,0xe1,0x8f,0xe6,0x6f, +0x69,0x18,0x3a,0x35,0x0d,0x1d,0xfc,0xac,0x3f,0x9a,0xaf,0x6e, +0x0a,0x7d,0x49,0x9d,0x79,0x1d,0x3e,0x06,0xd6,0x1f,0xad,0x81, +0x58,0xb2,0x08,0xf2,0xaa,0xee,0xcd,0x16,0x8c,0xc6,0x2e,0xe6, +0x9f,0x73,0xf0,0x0d,0xfe,0xa7,0xfd,0x6f,0x17,0xfc,0x9f,0xee, +0x85,0xf7,0x09,0x07,0x1f,0x1f,0xec,0x29,0x77,0x85,0x2e,0xfc, +0xf0,0x00,0xfa,0x73,0x7a,0xc6,0xd8,0x23,0x18,0xef,0x60,0x65, +0xd9,0x4f,0xca,0xf5,0xdf,0xc2,0x9a,0x70,0x90,0x3b,0x31,0xd8, +0x6f,0x2a,0xe7,0xfa,0x20,0x77,0x4e,0xf6,0x9a,0xba,0xc5,0x1f, +0xec,0xbb,0xf7,0x19,0xb9,0x9e,0xf6,0xdd,0xdf,0x0d,0xf6,0x9b, +0x4a,0xf7,0xe2,0xca,0xa5,0xf5,0x7c,0xd6,0x1f,0xee,0x65,0x95, +0xd6,0x9d,0xee,0xc5,0xb5,0xdf,0x41,0x57,0xf6,0xa5,0xfa,0x94, +0xc4,0x87,0x2e,0xf9,0xa3,0x39,0xff,0x16,0x0c,0xcf,0xf3,0x25, +0x82,0x93,0x53,0x59,0xe5,0xcb,0x46,0xe3,0xcd,0xf3,0x4f,0x0b, +0xbe,0x4d,0xf7,0x66,0x4b,0xf7,0xf4,0xfa,0x28,0x74,0xea,0x2b, +0x88,0x2d,0x6d,0x81,0xef,0x6b,0x41,0x57,0xb4,0xc9,0x1f,0xee, +0xb9,0x43,0x3d,0x7d,0x04,0x39,0x40,0x71,0xff,0x87,0x65,0xac, +0x74,0xad,0x1e,0xce,0x88,0xa7,0x48,0x30,0xc7,0x4a,0xfe,0x30, +0xbf,0x6a,0x0b,0xf3,0x70,0x7a,0x54,0x56,0xc8,0xfd,0x86,0x8c, +0x65,0xea,0xeb,0x9c,0xee,0xb1,0xf8,0x8c,0xd0,0xa9,0x6f,0x11, +0x38,0x24,0xf0,0x95,0x0e,0x9e,0x90,0x18,0xd0,0x34,0x16,0xe5, +0x02,0xe8,0xd0,0xdc,0x80,0xfe,0xa4,0x3c,0x77,0x7f,0x6f,0xaf, +0x0b,0xd2,0x3e,0x1b,0x33,0xb9,0x2c,0xdf,0x7b,0x02,0x3e,0xd8, +0x87,0x21,0xe7,0xcc,0xc1,0xd6,0xab,0xed,0xef,0x40,0x16,0x5a, +0xf0,0x87,0xfb,0x68,0x28,0xee,0x3b,0x84,0xb8,0xfc,0x93,0xa2, +0xaf,0x8e,0x85,0x66,0xa5,0xf0,0x0b,0xfe,0x60,0xaf,0xb5,0x74, +0x4f,0xb4,0x74,0x5f,0xb7,0xef,0xf0,0x07,0xfb,0x98,0xfd,0x92, +0xc0,0x4f,0xc9,0x71,0xd3,0xe7,0x19,0x42,0xd9,0x8f,0xb1,0x28, +0xfe,0x40,0x29,0x2d,0xff,0x6b,0x7f,0xb0,0x7f,0xde,0x76,0xa1, +0x8b,0x3f,0x28,0x7b,0xa6,0xdd,0x28,0x9f,0xb1,0xe9,0xdf,0x38, +0x44,0x37,0x08,0xc1,0xe8,0xef,0xfe,0x9e,0x77,0xe4,0x2d,0xed, +0xef,0xfb,0x1d,0x7c,0x54,0x8e,0x7a,0x7e,0x51,0x8e,0x1f,0x15, +0xbe,0xab,0x8b,0xf8,0x59,0x9d,0x57,0x4b,0x82,0x57,0xef,0x40, +0x6c,0x40,0x20,0xbf,0x03,0xe1,0x55,0x6e,0xe4,0xbb,0x16,0x84, +0x57,0xfb,0x56,0x81,0x07,0xfd,0x41,0x2e,0xd5,0x74,0x2d,0x7c, +0xa1,0xc4,0x9a,0x47,0xf2,0xbe,0x14,0x4f,0x7c,0xc8,0xc1,0xcd, +0x02,0xe9,0x7c,0xfb,0x76,0xe8,0x4d,0x6f,0x13,0x48,0xeb,0xfd, +0x93,0xcf,0x0f,0x2f,0xeb,0x3f,0x21,0x7b,0xda,0x7a,0xc3,0x63, +0xff,0xfc,0xc7,0xae,0xf1,0xdc,0xdd,0xb2,0xbe,0x74,0xdf,0xad, +0x0f,0xcb,0x5e,0x85,0x3b,0x86,0x34,0xc3,0x77,0xed,0xcf,0xa7, +0xf4,0xef,0xfd,0xee,0xe8,0xf0,0x65,0xde,0xe1,0x0a,0xdf,0xf5, +0x9b,0xbf,0x77,0xc0,0x83,0xe4,0x3f,0x27,0x47,0xf1,0xfb,0xcb, +0x1f,0x1e,0x1c,0xfd,0x9c,0x3b,0x5f,0xf6,0x47,0xf3,0x44,0x5d, +0x0f,0x5e,0x8c,0x7e,0x79,0xbb,0xac,0xfb,0xcd,0x88,0x07,0x79, +0xdb,0x60,0x9f,0xd3,0x2b,0x31,0x86,0xea,0x5b,0x71,0x41,0xe0, +0x51,0x81,0x2f,0x46,0x5c,0xc7,0x1b,0x33,0xe6,0x1e,0x6d,0x60, +0xcc,0xb1,0xb0,0xe0,0x0f,0xf7,0x49,0x9a,0x86,0xfe,0x24,0x92, +0xf5,0xab,0x79,0x31,0x2e,0x99,0xf8,0x03,0xca,0x96,0xcf,0x48, +0xbb,0xe7,0x05,0x9e,0x11,0x7e,0xe1,0xfd,0xfe,0x30,0x97,0xbe, +0xea,0x2f,0x3b,0xb0,0x8f,0x75,0x11,0x7b,0xa6,0xb4,0x79,0x0e, +0xb6,0xca,0x2e,0x78,0x02,0xb1,0x0b,0xe6,0xfe,0xb3,0x7f,0x75, +0x7e,0x87,0x71,0x39,0x1d,0x0a,0x7e,0x76,0x4e,0x88,0x09,0x73, +0x9c,0x04,0x9e,0xd9,0x03,0x7f,0xd0,0x22,0xe4,0xd2,0x08,0xba, +0xee,0xa6,0xe4,0x05,0xa8,0x83,0x1f,0x2f,0x82,0x57,0x57,0x08, +0x40,0xfb,0xab,0x46,0x97,0x44,0x7e,0x54,0x73,0x71,0xb6,0x20, +0xa7,0xd7,0xa1,0x67,0xd4,0x98,0xdd,0xbd,0x88,0xa9,0xad,0xa2, +0x7f,0x34,0xdf,0x1e,0x7d,0x54,0x35,0xfe,0x73,0x11,0xfa,0xc5, +0x00,0xfe,0x87,0xdc,0x5b,0xb0,0x65,0xec,0x3a,0x55,0xcc,0x05, +0xd5,0xbf,0xec,0x47,0xf9,0x86,0xd1,0xb7,0x51,0xc7,0x5a,0xc3, +0xf9,0xaa,0xd0,0xa6,0x55,0xf8,0x50,0x2e,0x21,0x56,0x75,0xc9, +0x1f,0xe6,0xdd,0xaf,0x1a,0x7f,0xe2,0x86,0x89,0xfb,0x29,0x60, +0xee,0x75,0x4c,0x1c,0x9a,0x8d,0x89,0x99,0x32,0x76,0x97,0xe6, +0x18,0x3f,0xf7,0xaa,0xe9,0xe3,0x00,0xb6,0xaa,0xac,0x72,0x75, +0xf0,0x27,0x2d,0xe8,0x26,0x6a,0x88,0xdf,0x2e,0xa2,0xef,0xb8, +0x27,0x18,0x73,0x8a,0x96,0xa1,0x1f,0xb2,0xb1,0x60,0x55,0xf8, +0xf7,0xd6,0x4d,0xfb,0x19,0xe3,0xb0,0xec,0x0f,0xf7,0x46,0xeb, +0xc1,0xff,0x58,0x63,0xda,0xaa,0xf0,0x47,0x2d,0x9b,0xb9,0x46, +0x3f,0x83,0x49,0xac,0xb7,0x62,0x86,0xcf,0xdf,0x36,0xc4,0xa8, +0xaa,0xdd,0x5a,0xf3,0x98,0xc4,0x98,0x93,0x09,0x64,0xaf,0x2a, +0x74,0x97,0x5d,0x73,0x7f,0x0e,0xba,0xa7,0x69,0x63,0x2b,0x56, +0xdf,0x91,0xd3,0xc6,0xa6,0x1c,0x1a,0xbf,0xef,0x39,0xd1,0x2d, +0xbc,0xd2,0x1f,0xee,0x69,0xd1,0xc0,0xf8,0x14,0x8c,0xff,0x57, +0xc7,0xf8,0x73,0x85,0x19,0x76,0xa1,0xc0,0xd8,0x6d,0x2a,0x19, +0xb6,0x1c,0x6b,0xdf,0x09,0x32,0x6c,0x27,0x75,0x63,0x47,0x19, +0x57,0x67,0xe5,0x3a,0xef,0x38,0x63,0xd6,0x95,0xfa,0x32,0x77, +0x21,0x2f,0xb5,0x10,0x93,0x1f,0x19,0x99,0xb7,0x64,0x62,0x25, +0xe7,0x0d,0x6e,0xa9,0xfb,0xa3,0xb9,0x97,0x55,0x7f,0xa9,0x31, +0x10,0x5d,0xd9,0xa3,0x7e,0x8f,0xd0,0x4d,0x87,0xff,0xf3,0xf7, +0x09,0x6e,0xaf,0x88,0x6f,0xfc,0xc5,0xc1,0xb5,0x8d,0x4f,0x0f, +0x20,0x9f,0xd2,0xb1,0x9f,0x74,0xe7,0x7f,0xe5,0xf0,0xf4,0x3b, +0x07,0xf7,0x37,0x7e,0x47,0xca,0x3e,0x23,0x70,0x11,0xc7,0x8b, +0xe6,0x9a,0x7b,0xc7,0xc6,0x5f,0x0f,0x7e,0xf7,0xf7,0x96,0x1f, +0x94,0x79,0xfb,0xc6,0x3f,0x64,0x3c,0x9f,0xf5,0xdb,0xde,0xc3, +0xb5,0x8d,0x8f,0x65,0xbc,0xff,0x99,0xab,0x61,0xe3,0x53,0xc3, +0x63,0xba,0xd7,0xf1,0x86,0xe3,0xb3,0xf2,0xff,0x1d,0xed,0xbd, +0x38,0xda,0xf6,0x8d,0xf7,0xe1,0xd9,0xef,0xcc,0x7e,0x7f,0x7a, +0xfd,0xca,0x3d,0x7c,0xeb,0xc8,0x7b,0xbf,0x73,0xf8,0x5e,0x85, +0xfc,0x3f,0x39,0x78,0xcf,0xa0,0x0f,0xf3,0x6f,0x97,0x36,0x39, +0x19,0x64,0xe3,0x27,0x64,0x4c,0xf4,0x59,0xc7,0x4f,0x6d,0xfc, +0xb7,0x41,0xdf,0xa7,0xe5,0xfa,0xfb,0xc1,0x2b,0x48,0x99,0xdc, +0x7b,0x86,0xeb,0x22,0xe7,0xf8,0x83,0x8d,0xdf,0x95,0xfd,0x97, +0x5f,0x32,0x80,0xfc,0xb3,0x52,0xfe,0xa2,0x8c,0xc3,0xf7,0xb9, +0x6b,0xff,0xc3,0xc1,0x1f,0x3b,0xbe,0x66,0x8b,0x3b,0xfe,0xc9, +0x80,0xbf,0xf1,0x5f,0xe4,0xce,0x7f,0xd3,0xdd,0xff,0xc0,0xe0, +0x7e,0xff,0xf8,0xe7,0x52,0x7f,0xfa,0x9e,0x3f,0x94,0x77,0x1e, +0x97,0x71,0xfc,0x03,0xd3,0xd7,0x6b,0xc3,0xfe,0xeb,0xcf,0x91, +0xb4,0x1f,0x7e,0xd5,0x9d,0xff,0x90,0x83,0xbf,0x97,0x3a,0x7e, +0xdd,0xc1,0xaf,0x0e,0xfa,0x24,0x3d,0xcf,0x1a,0xa7,0xab,0xc6, +0xed,0x83,0x37,0x56,0x6e,0x64,0xee,0x11,0x7e,0x37,0x7b,0x7c, +0xc7,0x96,0xbf,0x38,0xf8,0xf6,0xb1,0xcf,0x8c,0x9b,0xef,0x84, +0x1f,0x00,0x6f,0x25,0xa0,0x73,0xa5,0x3f,0x1f,0x50,0x5f,0xfa, +0xd7,0x5f,0x6f,0xb3,0x72,0xed,0x71,0xac,0xcb,0x8f,0xcb,0xb5, +0x9a,0xc8,0xaa,0x69,0xb9,0x8f,0x41,0x97,0xb0,0x69,0x20,0x6f, +0xf5,0xd7,0xe5,0xaf,0x48,0xbd,0x25,0x33,0x07,0xb3,0xd6,0xa5, +0xde,0x4f,0x75,0x13,0x69,0x1e,0xdd,0x74,0xbf,0xf1,0x87,0x06, +0xc7,0x7e,0x99,0xed,0x78,0xfe,0x09,0xf3,0xdd,0x97,0xc6,0x9c, +0xbf,0x71,0xf4,0xda,0xc6,0x6f,0x9a,0x32,0x97,0xc6,0x8c,0x59, +0x22,0x3a,0x09,0x77,0xcc,0xe7,0x06,0xdf,0x9e,0xff,0x45,0x29, +0xff,0x84,0x39,0xde,0xc8,0xba,0xbc,0x64,0xd6,0xe5,0x13,0x63, +0xe6,0x95,0xde,0x8f,0xa5,0xbf,0xe3,0x81,0x2e,0x28,0xc5,0x09, +0xe9,0xfc,0xef,0xaf,0x87,0x5f,0xcc,0xf8,0xd6,0x4b,0x83,0xf9, +0xd1,0x9f,0x23,0x7a,0xef,0x74,0xc6,0x37,0x3e,0x8e,0x6b,0x04, +0xdb,0x27,0xe3,0xae,0x5d,0x12,0xbd,0xd3,0xa5,0x81,0x8e,0xa7, +0x3f,0xae,0x9e,0xd0,0xbc,0x4f,0x0e,0xfd,0x65,0x73,0xdf,0x27, +0xfa,0xad,0x8e,0xe8,0x0e,0x62,0x91,0x19,0x0e,0x08,0xcf,0xfb, +0xd4,0xf0,0xbc,0xbf,0xe6,0x4e,0xc3,0x7e,0xff,0x8d,0xc2,0x5f, +0x9c,0x93,0xf5,0x7b,0x46,0xf8,0xba,0xd7,0xc9,0xf1,0x7e,0x91, +0xab,0xd2,0xfa,0xee,0x93,0x67,0xd5,0x17,0xe0,0x84,0x94,0xbf, +0x53,0xf4,0x11,0xe7,0x84,0x96,0x3d,0x20,0xf0,0xa4,0xe8,0xed, +0xbf,0x47,0xde,0xf1,0x65,0xa2,0x67,0x49,0xaf,0xdd,0x2b,0x72, +0xe6,0x9a,0xc8,0x96,0x77,0xcb,0xfb,0xd6,0xe5,0x78,0x9f,0xb4, +0xe1,0xec,0x40,0x57,0x95,0xff,0x33,0x07,0x7f,0x21,0xf7,0x9e, +0x17,0xde,0x64,0xbf,0xf0,0x5f,0x47,0xfc,0x61,0xee,0x2c,0xf5, +0x0f,0x78,0xd0,0x1f,0xcd,0x9d,0xf5,0xa0,0xb4,0x7d,0x11,0x7c, +0xeb,0x8a,0xb4,0x9f,0xed,0x7d,0x12,0xcf,0x7c,0xbd,0x80,0xc6, +0xa7,0x78,0xf2,0xed,0x91,0xbc,0xeb,0xa8,0xd8,0x1a,0x0e,0xc1, +0x97,0x6b,0x9f,0x7c,0xdf,0x61,0x91,0xa7,0xd5,0x77,0xe2,0x3e, +0xb9,0x7e,0x52,0xda,0x7d,0x5a,0xbe,0xff,0x5e,0xe9,0xb7,0x75, +0x91,0xb9,0x4f,0x88,0xfc,0x91,0x5e,0xff,0x72,0xb9,0xf6,0xb0, +0xd4,0xf1,0x1a,0xa9,0xa3,0x27,0x72,0xe1,0x79,0xb9,0x76,0x8f, +0xf4,0xb1,0xee,0x9f,0xac,0xdf,0xb7,0x28,0xf5,0x9c,0x14,0xfd, +0x40,0x4f,0xca,0x9f,0x84,0xff,0x85,0xe6,0xa4,0x3a,0x0f,0x7d, +0xd6,0x3c,0x62,0xa5,0x34,0x46,0xee,0x41,0xf9,0x7d,0x4e,0xfa, +0xed,0x1e,0xd3,0xd6,0x8b,0x68,0xab,0xc6,0x5e,0x1d,0x10,0xb8, +0x47,0x40,0xfb,0xf3,0xd4,0x00,0xf2,0x6f,0x85,0xee,0x38,0x4b, +0x7f,0x6a,0xf5,0xa6,0x1f,0xbf,0x8e,0x3d,0x50,0xc6,0xe9,0xca, +0x6f,0xf5,0x3b,0xb9,0x8e,0xae,0x61,0xc4,0x7e,0x98,0x71,0xfc, +0xd7,0xb6,0xdb,0x5d,0x65,0x73,0xfc,0x9f,0x9f,0x67,0xbb,0xe3, +0x3b,0xf3,0xef,0xe9,0x8f,0xeb,0x9f,0x3a,0xf8,0x1d,0xc1,0x2d, +0x6a,0xe3,0x98,0x80,0xad,0x25,0x2b,0xd6,0xba,0x6c,0x64,0xa5, +0x24,0xc3,0x57,0xba,0x09,0xff,0x90,0x08,0xb6,0xac,0x16,0xe4, +0x6d,0xf5,0x05,0x56,0xfb,0xf6,0x14,0x64,0xee,0x2a,0x64,0x4b, +0xdd,0xe3,0x94,0xb6,0xe8,0xbd,0xfe,0x68,0xee,0x9d,0x55,0x7f, +0x34,0xc7,0x3b,0xed,0x05,0x3b,0xe1,0xe7,0xa0,0xfe,0xb8,0xeb, +0x90,0xf3,0x28,0xa7,0x6f,0xf1,0x47,0x73,0xaa,0x71,0x6f,0x05, +0xee,0x45,0x77,0x06,0x3a,0x94,0x12,0x64,0x8c,0x39,0xc4,0x93, +0x28,0xbf,0x5e,0x42,0x8c,0x62,0xe8,0x8f,0xee,0x2b,0x33,0x07, +0x1b,0x4f,0x15,0x36,0x9f,0x1a,0x6c,0x5e,0xda,0x0e,0xee,0xa7, +0xc1,0x1c,0xd2,0x27,0x20,0x63,0xd6,0xfc,0xd1,0xbc,0xcb,0x15, +0xd8,0x72,0xe8,0xbf,0x59,0x86,0x7f,0xbe,0xca,0x06,0x6a,0xd3, +0x6d,0x42,0xd7,0xd0,0x33,0xf1,0xe0,0x35,0xd8,0x15,0x5f,0x91, +0x8e,0x5d,0xfe,0x82,0xb7,0xb3,0x0f,0x89,0x17,0xe7,0x9f,0xf6, +0x0e,0xe4,0xcf,0x7b,0x07,0xbd,0xdc,0x17,0x78,0xb9,0xcf,0x7e, +0xee,0x66,0xcf,0xbb,0xe9,0xdc,0x46,0xbc,0x51,0x7f,0xd1,0xba, +0xe7,0x79,0x39,0x0f,0xff,0x6a,0xef,0x16,0x9d,0x5e,0x8a,0x5b, +0x9f,0x13,0x3c,0xf1,0x9c,0xe0,0xca,0xcb,0x02,0x8f,0x08,0x5e, +0x3a,0x39,0xd0,0x7d,0xe5,0x66,0x84,0x47,0x7e,0xf1,0xe0,0xd8, +0xbf,0x7f,0x59,0x9e,0xbb,0x8c,0x73,0x82,0x5c,0xcf,0x2d,0x08, +0xb8,0x39,0x94,0xfb,0xb6,0xc1,0xb1,0x7f,0xef,0x1d,0xa6,0xec, +0x73,0xd7,0xf8,0xfd,0xdc,0x98,0xfb,0x97,0x6f,0xb0,0xfc,0xa9, +0xd1,0xa3,0x9f,0xf2,0x42,0x07,0x07,0xed,0x4a,0xbf,0x25,0xb7, +0x68,0x8e,0x2f,0x97,0x6f,0x7c,0x4c,0xe0,0x91,0xe1,0xfd,0x3e, +0x2c,0x00,0x4e,0x4b,0x3d,0x3f,0x2d,0xe7,0x19,0xa0,0x38,0xb6, +0x0f,0x4f,0x09,0x9e,0x97,0x3a,0xd3,0x6b,0xb9,0x4f,0x4b,0x1d, +0x9f,0x30,0xdf,0x92,0x9e,0xff,0xa6,0xbc,0xfb,0xf5,0x43,0xd0, +0x67,0xf3,0xaf,0x40,0xdb,0xfe,0x62,0xf0,0x4c,0xee,0xa7,0x44, +0x97,0xfa,0xa9,0x01,0x2d,0x48,0xcb,0xf7,0xc7,0x4c,0xc6,0xa2, +0x4f,0x43,0x52,0x7a,0xf0,0x2e,0xf1,0x6b,0xf9,0x0a,0x07,0x6f, +0x1e,0xcc,0x2f,0xff,0xde,0x01,0xfd,0xf4,0xef,0x1a,0xd0,0xd3, +0x7e,0xfd,0x69,0x3b,0xbe,0x56,0x8e,0xaf,0x95,0x36,0x7d,0xed, +0xf0,0xdb,0xfb,0xef,0x0e,0xa5,0xee,0xbb,0x07,0x73,0x24,0xb5, +0x57,0xe5,0x5f,0x29,0x65,0x53,0x39,0xe9,0xd3,0x52,0xc7,0xd7, +0xca,0x33,0x1c,0x1b,0x77,0x6d,0x23,0x85,0xaf,0x71,0xf0,0x4d, +0x0e,0x1c,0x8f,0xb7,0xe1,0x78,0xe7,0x8d,0xd7,0x0f,0x9e,0xdf, +0x78,0x27,0xee,0xfd,0x8a,0x94,0x7d,0xe7,0xf0,0x77,0x5a,0xc7, +0xc6,0x47,0x4c,0x39,0xa9,0x23,0x77,0xea,0xea,0xf2,0x1b,0xfa, +0x2d,0x07,0xd0,0x17,0x4f,0x0d,0xfb,0xa0,0x3f,0x07,0x0e,0xe2, +0xde,0x9b,0xcd,0xef,0x2f,0x13,0xfe,0xe8,0x29,0xb9,0x7e,0x60, +0xb4,0x8e,0x5c,0x3d,0xe3,0xf9,0xfd,0x32,0x4e,0xee,0x7c,0xe3, +0x59,0x69,0x47,0x7a,0xfc,0x69,0xd1,0x1d,0x3e,0x27,0xc7,0xcb, +0x58,0x97,0x25,0x39,0xee,0x12,0xfb,0xdf,0x65,0x7f,0x64,0x8f, +0x90,0xdc,0x8b,0x06,0xb2,0x46,0x3a,0xb6,0xa9,0xac,0xd1,0x1f, +0xe3,0xd2,0x8d,0xaf,0xcb,0xfe,0x5c,0x4b,0x21,0xb5,0x21,0x3d, +0x3c,0x38,0xf6,0xaf,0xaf,0x83,0x37,0x78,0x07,0xce,0xb3,0x7e, +0x2b,0x3c,0x6f,0xee,0xdb,0xe3,0xf3,0x63,0x9e,0x4b,0x70,0x74, +0xbc,0xa5,0xff,0x93,0x03,0x3c,0x9b,0x5b,0x1a,0xf0,0x54,0xe3, +0x8e,0x57,0xd6,0xce,0x63,0xc3,0xeb,0x57,0x40,0xd7,0xe8,0x29, +0x29,0xff,0x73,0x72,0xfd,0xd4,0xd5,0xd0,0x7f,0xaf,0x37,0x3c, +0xa6,0x7d,0x9f,0x7f,0xbf,0xd0,0x33,0xc7,0xd3,0xe7,0x3f,0x24, +0xfc,0xfc,0xdb,0xc5,0xff,0xe6,0xef,0x06,0x36,0xb6,0x5c,0x22, +0xb6,0xb6,0x4f,0x8a,0xbd,0xb7,0x38,0x18,0x8b,0xdc,0x7f,0x91, +0x6f,0x3d,0x2d,0x74,0xf1,0x9b,0x84,0x3f,0x5b,0x83,0x3d,0x72, +0x51,0xf8,0xfc,0x7b,0x84,0xff,0x7b,0x5e,0xce,0xbf,0x58,0xe6, +0xcd,0x59,0xe1,0x7f,0xdf,0x2a,0xb4,0x2e,0xfd,0xfd,0xc3,0x32, +0x76,0xcb,0xb2,0x06,0xdf,0x23,0x3c,0x62,0xfa,0xec,0xef,0xc9, +0xf5,0xf7,0x4b,0x1d,0xa7,0xc5,0x5e,0xf1,0x26,0x79,0xe7,0xf7, +0x8a,0x4d,0xf0,0x19,0xe9,0xb3,0x07,0xe4,0xd9,0xb4,0x0d,0xa9, +0x5e,0x20,0xb5,0xcb,0xbe,0x48,0xec,0x23,0x07,0x87,0x3c,0x7d, +0xae,0x3c,0xb0,0x69,0xa7,0x36,0x70,0xef,0x55,0x62,0x27,0xb9, +0x45,0x6c,0x4e,0x93,0xa2,0xcf,0xb8,0x49,0xee,0xdd,0x34,0xb0, +0x8b,0x6e,0xfc,0xa3,0x9c,0x9f,0xc2,0x79,0xfa,0x0d,0x79,0xa9, +0xbf,0x3d,0xe8,0x83,0xfe,0xbd,0x9c,0x7c,0x7f,0xda,0xd6,0x97, +0x0f,0xf4,0xa7,0xfd,0xb9,0x5f,0x1e,0xf0,0xa2,0x37,0xea,0x67, +0xf6,0xff,0x0c,0xdf,0x78,0x3d,0xd8,0x2f,0xb8,0xa6,0x75,0x0d, +0x7f,0xfe,0x9a,0xf0,0xf1,0x8a,0x43,0x3e,0x2e,0x7d,0x9e,0xe2, +0x98,0x3f,0x1a,0xe0,0x71,0xef,0x6f,0x1c,0xfc,0xbe,0xf8,0x2f, +0xfc,0x85,0x8c,0x7f,0xaa,0xc3,0x5a,0x17,0xd9,0xea,0x1d,0xb2, +0xee,0xce,0xca,0x5c,0x5e,0x10,0xb9,0xf6,0x88,0x8c,0xf5,0x73, +0x32,0x8f,0x54,0x36,0xb9,0x4b,0xf4,0x09,0x07,0xa4,0xcc,0x47, +0x65,0xcd,0xdf,0x29,0xe5,0xee,0x87,0x8d,0xe2,0x6b,0xa4,0xfc, +0x5b,0x44,0xde,0xfc,0x3d,0xb9,0xbf,0x28,0xf3,0x57,0x73,0x02, +0xab,0xbd,0x43,0x73,0x7d,0x3e,0x24,0xed,0x79,0x42,0xea,0x79, +0xb3,0x1c,0xf7,0xc9,0xfc,0x7e,0x40,0xbe,0xa9,0x24,0xf3,0xf6, +0x88,0xcc,0xc9,0xe7,0x64,0x2e,0x9f,0x13,0x7b,0xf9,0xcb,0xa5, +0xad,0x7b,0x04,0xd7,0x6e,0x96,0xb6,0xf6,0xa4,0x7c,0x0e,0x36, +0xc3,0xd7,0x09,0xe8,0x1c,0x96,0xfb,0x7d,0x9a,0xb4,0x53,0xc6, +0x63,0xbf,0xd0,0xe0,0xa5,0x41,0xbf,0x6d,0xfc,0x82,0xd0,0x89, +0x27,0x05,0xd7,0x6a,0x99,0xb7,0x0b,0x3c,0x25,0xb4,0xe1,0x57, +0xe4,0x1b,0x2c,0xac,0x65,0xc0,0x41,0x81,0x2f,0x19,0xd4,0x95, +0xfb,0xce,0x21,0x1d,0x49,0xf1,0x57,0x8a,0xcf,0x52,0xda,0xe0, +0x1f,0x15,0x5c,0xf6,0x09,0xc3,0x67,0xe8,0xda,0xdf,0x2f,0xf5, +0xe8,0x7b,0x3c,0xc1,0xc7,0x9f,0x12,0x5c,0xf2,0x7d,0x83,0x63, +0xea,0xc3,0x77,0x65,0x5f,0xa6,0xd7,0x0e,0xf8,0xd5,0xbe,0x8f, +0xce,0x27,0x44,0xe7,0x25,0xfe,0x84,0x23,0x3e,0x3b,0x3f,0x26, +0xb6,0xe2,0x16,0x78,0xe9,0xd2,0x3f,0x23,0x56,0x45,0xf0,0xb2, +0x9d,0xc7,0xfd,0x76,0xfd,0x86,0x8c,0x53,0x2a,0x97,0x3e,0x2b, +0xf3,0xf5,0xbf,0x3a,0xf8,0x22,0x81,0x2f,0x1e,0x40,0x6a,0x7f, +0xce,0xa5,0xfc,0xf6,0x07,0x65,0x6e,0xbd,0x75,0x50,0xbe,0x0f, +0x6f,0x03,0x2f,0xfc,0x26,0x43,0x43,0x2f,0x4b,0xdf,0xe8,0x3a, +0x58,0x93,0xe3,0x09,0x99,0x03,0x0f,0xc9,0x1c,0xef,0xc8,0xbb, +0x9e,0x91,0x31,0x79,0x5c,0xf0,0xef,0x5b,0x84,0x8e,0xa7,0xfa, +0xd8,0xc6,0x00,0xfa,0x78,0xfc,0x59,0xc1,0xdd,0x7f,0x2b,0xf0, +0x41,0x81,0xbf,0x17,0x78,0xb7,0xe0,0xe9,0xb4,0xcc,0x7b,0xdd, +0x73,0xdf,0x24,0x3e,0x49,0x25,0xd0,0xf4,0x4f,0xcb,0x5a,0xe9, +0xc9,0xef,0xb4,0x9d,0x9f,0x83,0xbe,0xed,0x09,0x19,0x87,0x39, +0x7c,0xbf,0xd8,0x6d,0xfa,0xfa,0xdc,0xcb,0x22,0x87,0x7e,0xb7, +0xf8,0x13,0xa8,0x7c,0xb7,0x22,0xfe,0x2e,0x37,0xca,0x53,0xfc, +0x1f,0xe2,0xe7,0xff,0xa5,0x7c,0x7b,0x8a,0x13,0xae,0xc5,0xb7, +0xa7,0xbe,0x48,0xfd,0xe3,0x9f,0x0d,0xf8,0xe0,0xdc,0xda,0xc0, +0x46,0x9f,0xfa,0x7e,0xf5,0xc7,0xf9,0x9f,0x84,0xce,0xfe,0x83, +0xcc,0x87,0x05,0x91,0x4d,0x0f,0x09,0x6e,0x50,0x9f,0x26,0xdd, +0xe7,0xec,0x3b,0x04,0x16,0x45,0xbe,0x53,0x5d,0xc8,0x71,0xd7, +0xff,0x1b,0x42,0x8f,0x27,0x04,0x37,0x3c,0x25,0xf5,0xa9,0x2d, +0x37,0xf5,0x9b,0xfd,0x4a,0x99,0xd7,0xa9,0x4c,0xf9,0xcd,0x02, +0x6b,0xf0,0x2b,0x78,0xdc,0x1f,0xe6,0xd5,0x79,0x56,0xf0,0x9d, +0xca,0xba,0x6f,0x16,0xbf,0x87,0xcd,0xd2,0x27,0x07,0xa4,0x1d, +0x7f,0x2a,0xb8,0xf6,0xac,0xe0,0xaf,0x58,0x70,0xc0,0xaa,0xf0, +0xb8,0x9a,0xcb,0xe7,0x98,0x7c,0xe7,0xa2,0xd0,0x86,0x03,0xe2, +0x1b,0xd7,0x13,0x5d,0xd3,0xba,0xe8,0xce,0x56,0x65,0x8e,0xff, +0x8d,0x9c,0xbf,0x51,0xd6,0xc5,0xc1,0x01,0xcd,0xcf,0x2d,0x8b, +0xbf,0xd7,0x86,0x8c,0xcb,0x3f,0x0e,0x70,0x78,0xea,0x7f,0xe7, +0xfd,0xac,0xcc,0xf5,0x53,0xd2,0x2f,0xb3,0xc2,0x2b,0xdd,0xea, +0x0f,0xf7,0x92,0xd5,0x7d,0xa8,0x53,0xff,0x93,0x97,0x89,0x0c, +0xb5,0x4d,0x74,0x61,0x65,0x59,0x33,0xd3,0xf2,0x7b,0x9b,0xac, +0xad,0x2f,0x40,0x3f,0xbd,0x66,0xd0,0x4f,0xb9,0x57,0x08,0xde, +0x7e,0x85,0xe0,0xdc,0x06,0x78,0xa2,0x0b,0xe2,0xc7,0xa5,0xfd, +0x7b,0x49,0xd6,0x9d,0xfa,0x50,0x3c,0x2a,0xdf,0xb3,0x2a,0xe3, +0xf9,0x4a,0xd1,0xa1,0xb0,0x2f,0x4f,0x09,0x9f,0x94,0xe2,0xd4, +0x1f,0xf5,0x07,0x39,0xae,0x5e,0x2b,0xf0,0xd5,0x32,0xa7,0x5c, +0x9f,0xe6,0x4e,0x0e,0xbe,0x3b,0x37,0x3b,0x58,0xd7,0x7d,0x3c, +0xa4,0xba,0xe6,0x37,0x0c,0x7c,0xc9,0xfa,0x76,0xa3,0x0f,0x49, +0x9d,0x29,0x0f,0xf1,0x0d,0x82,0xa3,0x9a,0xd2,0x8f,0x7f,0x77, +0x83,0xeb,0xea,0x85,0xdc,0x7b,0xe3,0x68,0x19,0x95,0xeb,0xae, +0xc8,0x7a,0x5c,0x73,0x77,0x63,0xcd,0x3c,0x62,0xce,0x21,0x1b, +0x8f,0xac,0xaf,0x45,0x29,0x73,0x59,0xea,0x18,0xd3,0x3e,0x95, +0xed,0xb4,0x9d,0x1b,0x3f,0x74,0x9d,0x6f,0xb8,0x3c,0xe6,0x1b, +0xae,0xf5,0xfd,0x97,0x81,0x4f,0x1e,0xb8,0xba,0x9d,0x7d,0x79, +0x8e,0x6d,0x7e,0x6d,0x86,0x7c,0xcf,0xef,0x5c,0x44,0x1f,0x5c, +0x1e,0xaf,0x0f,0x18,0xe9,0x0b,0x95,0xa3,0xef,0x16,0xa8,0xca, +0xda,0xea,0x18,0x9f,0xe9,0x6d,0xa0,0x77,0x75,0xf8,0xb4,0x6b, +0x2c,0x52,0x1b,0xbe,0xcd,0xa1,0xd4,0x95,0x15,0x4b,0x1e,0x99, +0xf8,0x8f,0x8e,0x3f,0xcc,0x5f,0x1b,0xfb,0xa3,0x39,0xf1,0xb8, +0xff,0x68,0x22,0x74,0xd1,0xe6,0x4e,0xea,0xe1,0xd9,0x96,0x89, +0x55,0x6f,0x41,0x3f,0x18,0xc1,0xc6,0x1e,0xfb,0xa3,0xfb,0x83, +0x6a,0x3e,0x0b,0xea,0xbc,0xce,0x89,0xaf,0x0e,0xf3,0xf3,0x89, +0xee,0x2e,0xf7,0x31,0xf8,0x38,0x4f,0x64,0xf0,0xb8,0x9a,0xe7, +0x48,0xe3,0x17,0xef,0x94,0xe7,0xf7,0x23,0xf7,0x45,0x0d,0xb1, +0x32,0x6d,0xf8,0x4a,0xa9,0x8f,0xab,0xfa,0x1f,0x9d,0x17,0x1d, +0xfc,0x39,0xf0,0x2f,0xa1,0x3f,0xdc,0x7f,0xfc,0x28,0xfc,0xd1, +0xd7,0xfc,0xd1,0xbd,0xdf,0xd5,0x47,0x84,0x7b,0x97,0x04,0x82, +0x13,0xe6,0x85,0x77,0x25,0x6f,0x53,0xf1,0x87,0xfb,0xc0,0xc6, +0xd0,0x09,0xef,0x41,0x9b,0x62,0xf4,0x39,0xbf,0x99,0x7b,0x39, +0xab,0xaf,0x4b,0x0f,0x7e,0xe0,0x09,0xf4,0xa0,0x8a,0xbb,0x97, +0x8d,0x9e,0xf3,0x28,0xf4,0xa9,0x21,0xfa,0xa4,0x8e,0x77,0x75, +0x8c,0xcf,0x4e,0x82,0x3c,0x2d,0x5d,0xe4,0xa7,0x48,0x90,0x63, +0xe4,0x75,0x98,0x9b,0x8c,0xbd,0xbc,0x0f,0x31,0x62,0xc7,0xa4, +0x4f,0x03,0xe8,0x83,0xcb,0x88,0x59,0x48,0xd0,0xd6,0x15,0xe3, +0xdb,0x97,0xc8,0xb3,0x65,0xc4,0x4e,0x74,0xf0,0xfe,0x87,0xfd, +0xec,0xfc,0xed,0x55,0x29,0xf3,0x1a,0x3c,0x47,0x5f,0x92,0xc4, +0xf8,0x7a,0xe9,0xdc,0xd9,0x2d,0xf8,0x3e,0x42,0xae,0x82,0xeb, +0xc5,0x5e,0xf7,0xe0,0x03,0xa5,0x7b,0xb2,0x2d,0xe0,0x9b,0xb4, +0xae,0x87,0x85,0x8e,0xc4,0xfe,0xe8,0x7e,0xee,0x0d,0xe3,0xc3, +0xa3,0x39,0x0d,0xce,0xc0,0x07,0xea,0x14,0xfa,0xb6,0x82,0x35, +0xdc,0xc1,0xb9,0xfa,0x28,0x69,0xae,0xa7,0xbb,0xf0,0x7d,0x01, +0xe6,0x4f,0x2f,0x63,0xae,0xcd,0xe2,0x3c,0x34,0x73,0xe2,0x38, +0x7c,0xf4,0x58,0x57,0xc7,0xc4,0xde,0x06,0x68,0x7f,0x84,0xf9, +0xdb,0xf0,0x47,0xf7,0xac,0x0b,0x4d,0xae,0x89,0x40,0x78,0x51, +0xf6,0x61,0x68,0xc6,0x67,0x1b,0x7c,0xbb,0xea,0xb8,0xde,0x32, +0x75,0x72,0xcf,0xb0,0x9e,0xf9,0x0e,0xce,0x1b,0xf6,0x45,0x0d, +0x6b,0x90,0x39,0x5d,0x4b,0x58,0x07,0xcc,0xdb,0x5b,0xce,0x98, +0x03,0x6d,0xcc,0xc7,0x00,0xef,0x8f,0x65,0x4e,0x31,0xff,0x7f, +0x80,0xb8,0x78,0xc6,0x35,0x3c,0x6c,0xd6,0x82,0xc6,0xfc,0xd1, +0x4e,0x94,0x18,0xfb,0x4a,0xc7,0xe4,0xf2,0xe8,0xf9,0xc3,0xfd, +0x52,0x42,0xe4,0x31,0xa9,0xf8,0xa3,0xfb,0x8e,0xf4,0x4c,0x9c, +0x4f,0x08,0x9b,0x64,0x0b,0x32,0x68,0x0f,0x74,0x29,0x40,0xee, +0x8e,0x04,0x79,0x1c,0xce,0x9b,0x31,0x59,0x47,0xcc,0x6c,0x0f, +0xf6,0x95,0xc4,0xc4,0xa2,0xf6,0x32,0xec,0x5c,0xa4,0x63,0x3d, +0x8c,0x53,0x43,0x70,0x3d,0x73,0x91,0x84,0x78,0xa6,0x0a,0xdf, +0xff,0x0e,0x6c,0x30,0xdc,0x03,0xb2,0x87,0xf2,0xb1,0xc1,0xcf, +0x45,0x7f,0x34,0xc7,0x61,0x90,0x91,0xa7,0xa2,0x02,0xff,0xda, +0xc4,0xc4,0xbe,0x34,0x40,0x1b,0x6b,0x26,0x87,0x42,0x88,0xf2, +0x1d,0xc4,0xbc,0x73,0xfe,0xa8,0xaf,0xe2,0x7e,0xc4,0x02,0xd5, +0x60,0xe7,0x8d,0x85,0xee,0x57,0x4c,0xee,0x98,0x4e,0xc6,0x9a, +0xe5,0xbe,0x5f,0xda,0x57,0x0b,0xf8,0xd6,0x35,0x19,0xb3,0x10, +0xb8,0x7b,0x16,0x31,0x79,0x3d,0x7f,0xb8,0xb7,0x2e,0xf7,0xac, +0x68,0x49,0x3f,0x32,0xde,0x5b,0xd7,0xcd,0x3c,0x68,0x64,0x0f, +0xfc,0x42,0xdb,0x1f,0xdd,0xeb,0x57,0x73,0x6d,0xaf,0xfa,0xc3, +0x7d,0x04,0x9a,0x26,0xfe,0xa4,0xed,0x8f,0xee,0x71,0x7a,0x08, +0xb6,0xce,0xd0,0xbf,0x7a,0xbf,0x88,0xd0,0xe4,0x26,0x59,0x45, +0xee,0x9d,0x47,0x70,0xaf,0x0a,0x7c,0xab,0xb6,0xbf,0xa3,0x58, +0x4b,0xcc,0x03,0xae,0xf9,0xfe,0x39,0x46,0x3a,0x27,0x76,0xa0, +0xdf,0xe9,0x4b,0x5c,0x16,0x7d,0xaf,0xee,0xcd,0xa8,0x78,0xa5, +0x80,0x3e,0x55,0x5f,0xe3,0xe3,0x26,0x7e,0x4c,0xfb,0x78,0xde, +0x1f,0xcd,0x91,0x1b,0x4b,0xd9,0x55,0xac,0x67,0x2d,0xdf,0x36, +0x6b,0xa5,0x06,0x5a,0xb4,0x2a,0x63,0xb5,0x43,0xf8,0x9b,0xd0, +0xc4,0x8e,0xad,0xc1,0x9e,0x1a,0x61,0x4c,0x77,0xc9,0xdc,0x68, +0xa1,0xdf,0x76,0x4b,0x3d,0x33,0xe8,0xbb,0x6a,0x06,0x5d,0x51, +0x9f,0x5a,0xe6,0x78,0x29,0x99,0xd8,0xc8,0x08,0x3c,0x69,0x22, +0x7e,0xb0,0x1d,0xcc,0x0f,0xa5,0xa7,0x65,0x7f,0x34,0x77,0x33, +0xf7,0x76,0x66,0x4e,0xe4,0x2a,0x78,0xaa,0x16,0x68,0x76,0x13, +0x73,0xdd,0xf2,0x07,0x75,0xe3,0x57,0xbe,0x8c,0xfe,0xab,0xc2, +0xdf,0xb5,0x6e,0xe6,0x96,0xf6,0x45,0x4d,0xe8,0xf8,0x2a,0xf8, +0x68,0x85,0x08,0x6b,0xad,0x61,0x78,0x04,0xad,0x47,0xd7,0x74, +0xc1,0x1f,0xee,0xa9,0x1a,0x22,0xf6,0xb3,0x87,0x58,0xc3,0x55, +0xb3,0x26,0xab,0x98,0x7f,0x27,0xc1,0x03,0x9c,0x43,0x5f,0x5f, +0x30,0xf8,0x91,0xeb,0x66,0xd5,0xe0,0x5c,0xe6,0x90,0x5c,0xc1, +0xbb,0x1f,0x11,0x1e,0x4e,0xfb,0x77,0x0d,0xb1,0xb9,0xcc,0xe9, +0xdf,0x32,0x78,0x78,0x15,0x75,0x70,0xaf,0xd6,0x19,0xe0,0x0c, +0xfa,0x38,0x1c,0xc6,0x5a,0x2a,0xcb,0x7b,0xde,0x81,0xbc,0x1f, +0x05,0x93,0xdb,0x83,0x7c,0xca,0x5b,0x44,0xbe,0x4f,0x90,0x1b, +0x40,0x7d,0x0c,0xf6,0x1a,0xfe,0xa0,0x0e,0xfa,0xae,0x7e,0xc0, +0x67,0x0c,0x7e,0x0f,0x30,0x17,0x43,0x94,0x3f,0xef,0x0f,0x73, +0x4a,0x86,0x19,0xfe,0xce,0x81,0xa1,0x27,0x6d,0xf8,0xdf,0x57, +0x31,0x6f,0xab,0x58,0xab,0x5c,0x37,0x31,0xfa,0xaa,0x67,0x68, +0xa3,0xca,0x25,0xbb,0x30,0x8f,0x5a,0xc0,0x05,0xa1,0xf1,0x7f, +0x4e,0xc6,0xcc,0xb9,0xb2,0x69,0x7f,0xcf,0xf8,0x7b,0xaf,0xf8, +0xc3,0xfd,0x4b,0x13,0xd1,0xa3,0x87,0xa0,0xb9,0x4d,0xd0,0xb7, +0x3a,0xc6,0x9a,0x74,0x28,0x02,0x0e,0x62,0x4c,0xeb,0x25,0xf0, +0x52,0x73,0xc0,0xf7,0x31,0x70,0x5c,0x1d,0xf8,0x8c,0xb8,0x4f, +0x63,0x7c,0x4f,0x19,0x1a,0x46,0xda,0xdd,0x31,0x38,0x5a,0xe7, +0xfe,0x0e,0x19,0x67,0xc5,0xd9,0xcc,0xf5,0x18,0x9b,0xfe,0x8d, +0xd0,0x7f,0xfa,0x5d,0xa7,0x4c,0x3f,0x2a,0x2f,0xb5,0x03,0x63, +0x46,0xbf,0x1a,0xe6,0xbc,0xac,0xfb,0xa3,0x39,0xdb,0xaa,0xa6, +0xed,0xdc,0xff,0xfc,0x4e,0x19,0x5f,0x1b,0x73,0x1b,0x02,0x0f, +0x32,0xee,0x3b,0x41,0x5c,0xc4,0x93,0xa2,0x57,0xbb,0x08,0xde, +0x74,0xde,0xe4,0x90,0xd0,0x39,0xb2,0xe6,0x8f,0xee,0x8b,0xd2, +0x33,0xf1,0x04,0x4d,0xc3,0x4b,0xd8,0xbc,0xcb,0x89,0xc8,0x14, +0xda,0x27,0x8f,0x09,0x3e,0x64,0x3e,0xeb,0x07,0x4c,0xce,0x9b, +0xc4,0xf0,0x5d,0x41,0x06,0xdd,0xd8,0x2d,0x74,0xb3,0x0b,0xba, +0xd3,0x05,0xae,0x6f,0xa3,0xef,0xac,0xbc,0x4b,0x7e,0x50,0xd7, +0x4d,0x1d,0x63,0x1b,0x1b,0xda,0x16,0x1b,0x9e,0x97,0x7b,0xd1, +0x04,0xd0,0xb5,0xaa,0xdc,0xfb,0x90,0xb4,0xed,0xbc,0xa1,0x3d, +0x1a,0x3f,0x13,0x03,0x77,0xed,0xc5,0x7a,0xee,0x81,0xef,0xa7, +0xdc,0x46,0xfe,0x81,0x79,0x73,0xb5,0x4c,0xc9,0xf8,0x7f,0x2d, +0x80,0xc6,0xb7,0x44,0xb6,0xaf,0x62,0x2e,0x26,0xa6,0x6f,0x63, +0xcc,0xc5,0x10,0xfc,0xb8,0xe2,0xec,0xfb,0x0d,0xce,0xaf,0xa3, +0xbf,0x13,0xe4,0x08,0x48,0xc0,0x2b,0x28,0x6e,0x8a,0x0d,0x6d, +0x6f,0x03,0x07,0x75,0xc0,0x63,0xb5,0x85,0x1e,0x05,0xf0,0x49, +0xab,0x49,0xbf,0x2a,0x3e,0x59,0xf3,0x47,0xf3,0x94,0x35,0xcd, +0x38,0xc7,0xc0,0xbf,0x01,0xfc,0xb1,0x6a,0xe8,0xef,0x04,0xf5, +0xeb,0xbe,0xb1,0xf4,0x97,0x9b,0x30,0xf1,0x50,0x7b,0x41,0xdb, +0x7b,0x68,0xb3,0xe2,0x85,0x9d,0xd0,0x57,0x9d,0xc5,0x1c,0x4a, +0xc0,0xbb,0xcc,0x00,0xc8,0x47,0xaa,0xbf,0xda,0xac,0x3f,0x9a, +0xcf,0x9e,0xf1,0xf8,0xd4,0xc3,0x35,0x80,0x33,0x95,0xee,0x6c, +0x95,0x3a,0x96,0x30,0xa6,0x9a,0x23,0xff,0x28,0x78,0xf0,0x9a, +0xfc,0xae,0x63,0x0e,0xb4,0x80,0x07,0x67,0x4d,0x3c,0x4c,0xc7, +0x1f,0xdd,0xab,0x7e,0x06,0x3a,0xb8,0x13,0x78,0x57,0xcf,0xc8, +0x11,0xe3,0x60,0x16,0x71,0x30,0xa1,0xd4,0x15,0x1b,0x3e,0x69, +0xd5,0xc4,0xdd,0xf0,0x5e,0x33,0x83,0xce,0x86,0xa0,0x1d,0x94, +0xd1,0x9a,0x58,0x9b,0x89,0xc9,0x71,0x63,0x69,0x81,0x8e,0xc7, +0x1d,0x78,0x77,0x1b,0x7a,0x53,0x95,0x5d,0xb9,0xff,0x8c,0xca, +0xe7,0x9a,0x8f,0x7b,0x46,0xf8,0xa7,0x19,0xa3,0x27,0xa8,0x98, +0x35,0x55,0x30,0x6b,0xae,0x97,0xc1,0x2b,0x06,0xf0,0x2b,0x0c, +0x8c,0xff,0x27,0x71,0x60,0x03,0xf4,0x22,0x14,0xfc,0x79,0xd6, +0xf0,0xac,0x2b,0x90,0x2b,0x1b,0xd2,0x5e,0xbe,0x6f,0x15,0x38, +0xb7,0x63,0xe4,0xc2,0xd8,0xc8,0xf0,0x67,0xcc,0x78,0x76,0x0c, +0x9d,0xe9,0xc8,0xfb,0xf6,0x80,0x7e,0xeb,0x5e,0x31,0x4b,0x72, +0xff,0x3e,0x7f,0x98,0x1b,0x6e,0x1e,0x75,0x55,0xc0,0xab,0x36, +0x10,0x57,0x3d,0x2f,0xf7,0x76,0xfb,0xa3,0xfb,0x62,0x55,0x20, +0xf7,0xad,0xa1,0x8f,0xb8,0x27,0x35,0xf9,0xcc,0xa6,0xa1,0xf1, +0x25,0x23,0x1f,0x64,0xe5,0x64,0xed,0x00,0x47,0xed,0x18,0x33, +0xdf,0x3b,0xc8,0x71,0x61,0xf5,0x53,0xab,0x78,0x9f,0xca,0x94, +0xc4,0x3b,0x11,0xe4,0x00,0x1d,0xd3,0xf3,0x86,0x1f,0xe9,0x9a, +0x31,0x9a,0x81,0x9c,0x6b,0x79,0x92,0xa3,0x68,0xff,0xc3,0xf2, +0xae,0x09,0x7f,0x34,0x4f,0x2c,0x79,0xdb,0x9e,0xd1,0xc7,0x24, +0x86,0x8f,0x51,0x5a,0x76,0x1c,0xf8,0x80,0xf4,0xb9,0xeb,0x8f, +0xe6,0x8a,0xd4,0x38,0x77,0x6b,0x8b,0x08,0x32,0xd6,0x41,0x0c, +0xb9,0x83,0x7b,0x7d,0x32,0xe7,0x72,0x39,0xe3,0x7d,0x09,0x70, +0xf6,0x3c,0x9e,0x3f,0x81,0x3e,0x29,0x8c,0xb1,0x3f,0x30,0x96, +0xb3,0x8e,0x32,0x9a,0x57,0xa5,0x6d,0xf4,0x0e,0xda,0xaf,0xbb, +0x32,0x74,0x95,0x5d,0x7f,0x74,0xff,0xd8,0x2a,0xf4,0xda,0x6d, +0xc3,0x53,0x53,0xbf,0xbd,0x08,0x1a,0x57,0xca,0xf0,0xcd,0x09, +0x85,0x7f,0x6c,0x41,0x86,0x09,0x32,0xd6,0x7c,0x62,0xe8,0x5c, +0xe0,0x8f,0xcf,0x1b,0xbc,0xdd,0x8c,0x67,0xe4,0x0f,0x73,0x30, +0x72,0x0f,0x9b,0xc4,0xf0,0x1b,0xe4,0x7f,0xee,0xc2,0x37,0x71, +0x1d,0xe8,0x3e,0x13,0x8b,0x46,0xee,0xd6,0xf3,0x39,0xe8,0x8a, +0x76,0x60,0x6c,0xa8,0x5b,0x09,0xfc,0x61,0xee,0xbc,0x04,0x32, +0xf4,0x1e,0xd4,0x95,0x18,0x7e,0x39,0x86,0x6c,0x58,0x33,0x76, +0xb0,0xc4,0xc4,0xa0,0xea,0x9e,0xee,0x01,0xfa,0xe1,0x10,0xe8, +0xa8,0xe6,0x4b,0x8b,0x31,0xf7,0x6a,0xb0,0x07,0xe9,0x7e,0x8b, +0x4a,0x9b,0xa6,0xcd,0x7a,0x39,0x81,0x79,0x63,0xf5,0xc6,0x27, +0xfc,0xe1,0x7e,0x8e,0xcc,0xbb,0x7e,0x97,0xbc,0xef,0x35,0x72, +0xae,0xfa,0x83,0x13,0xe0,0x2b,0x8f,0xfb,0xc3,0xfd,0x88,0x43, +0xd0,0xcf,0x1a,0x6c,0xf9,0x67,0xfc,0x61,0x8e,0x7e,0xca,0x33, +0x17,0x30,0x8e,0xe4,0xef,0x5a,0x78,0x3e,0x06,0xbd,0xdb,0x03, +0x99,0x42,0xe5,0xe5,0x39,0xf4,0xcf,0x2e,0xd8,0x12,0x0a,0xc6, +0xfe,0xb3,0xdf,0xf0,0xce,0x75,0xe1,0x3f,0x03,0xe0,0x7f,0xe6, +0xd5,0x0c,0x50,0x7e,0xde,0xac,0x35,0xe6,0xb9,0xad,0x1a,0xfe, +0xa0,0x67,0xfa,0x36,0x36,0x38,0xa1,0x6b,0xf4,0x79,0x5c,0x03, +0x8f,0x19,0x99,0xc2,0xea,0xfe,0x34,0x6e,0x67,0x06,0xba,0xd9, +0xd0,0xc8,0x62,0xa1,0xf0,0xc4,0x31,0xf8,0x2d,0xad,0x6f,0xc5, +0xf0,0x1f,0xec,0x5b,0x2b,0x6f,0x6c,0x37,0xf2,0x67,0xd6,0xfa, +0x6e,0xf8,0xa3,0x79,0x68,0xe7,0x33,0xd6,0x35,0x75,0x98,0x3b, +0x41,0x4f,0xf6,0x19,0xdb,0x06,0xfb,0x75,0x8f,0xe8,0x7f,0xb8, +0x7f,0x80,0xdd,0x23,0x47,0x79,0xff,0xc4,0xf4,0x7f,0x20,0xdf, +0xdc,0xc8,0xd0,0x5d,0x04,0xb0,0x03,0x86,0x26,0xb7,0x40,0x2f, +0xc3,0x7e,0x53,0x97,0x76,0x1e,0x31,0xfc,0x74,0x13,0x7c,0x75, +0x04,0x5d,0x5a,0x47,0xe6,0xa4,0x8e,0x4d,0x0b,0x73,0x80,0xfa, +0xb1,0x9e,0xe1,0xbd,0x03,0xb3,0x2e,0xb4,0xdf,0xd4,0x1e,0x78, +0x01,0xf4,0xae,0x0b,0xba,0xaf,0xba,0xef,0xb2,0x91,0x93,0x66, +0xfc,0xd1,0x1c,0xd6,0x6d,0xb3,0x96,0x74,0x6d,0xed,0xf2,0x47, +0xf3,0x2a,0x25,0xc0,0x75,0x97,0x50,0x6f,0x80,0x79,0xce,0x7d, +0x46,0x38,0x8f,0xec,0x7e,0x8b,0xf6,0xdb,0x49,0xc3,0x23,0xd8, +0x6c,0x98,0x2f,0x79,0x97,0xb1,0xcd,0xea,0xf1,0x6e,0xd0,0xbb, +0x19,0x13,0x6b,0x12,0x41,0xd6,0xef,0x40,0xb6,0xa9,0xa3,0x4d, +0x1d,0x63,0x77,0x4b,0xa0,0x9f,0xa0,0xfe,0xa8,0x01,0xbe,0x3f, +0x84,0xfe,0xa0,0x6a,0x78,0x5f,0xd5,0xed,0x5c,0x30,0xfa,0xa8, +0x0a,0xbe,0xf9,0x2c,0x78,0xa1,0xc4,0xd8,0x9d,0x7b,0x88,0x49, +0xda,0x21,0xf3,0x4b,0x71,0xcf,0x9d,0xe0,0xe5,0xee,0x32,0x36, +0x94,0x86,0xb1,0x4f,0x05,0x06,0x57,0x30,0xaf,0xe8,0xfb,0x04, +0x5f,0xcc,0x60,0x7c,0x69,0x93,0xda,0x2d,0x78,0x3d,0x82,0x5d, +0x6f,0xcd,0x1f,0xcd,0xe7,0x7b,0x16,0xb2,0x64,0x64,0xf8,0x44, +0xe5,0xfb,0x66,0x8c,0x8c,0xa3,0xfc,0xea,0x63,0x82,0x8b,0xbb, +0x66,0xdc,0xc9,0x6b,0x45,0xe8,0x13,0xa5,0x5b,0xe7,0xd0,0xd7, +0xc7,0x8d,0x1e,0x6c,0x01,0xfc,0xd2,0x02,0xf4,0x58,0x55,0x33, +0x1f,0x03,0xdc,0x2b,0x19,0x19,0xb7,0x67,0xec,0x94,0x53,0xfe, +0x68,0x8e,0xd1,0x9e,0x19,0x6b,0xc5,0x69,0x73,0xa8,0x57,0xf9, +0x8d,0xb2,0x91,0x63,0x1a,0xfe,0xe8,0xbe,0x67,0xdc,0x5b,0x39, +0x36,0x7c,0x62,0x7b,0x18,0x3f,0x70,0x65,0xdf,0xb7,0xa6,0xd1, +0xa5,0xaa,0xef,0x87,0xe2,0xdc,0x4b,0x90,0xe1,0x1b,0xd0,0x29, +0xd5,0xe0,0xaf,0x52,0xcf,0xb0,0x31,0x24,0xd0,0xd7,0xc6,0x46, +0xd7,0x95,0x18,0x9d,0x0c,0xe5,0xab,0x18,0xba,0xe6,0xaa,0xd1, +0x79,0x15,0x31,0x17,0xef,0x30,0xb8,0x6c,0x3b,0xde,0xd7,0x46, +0xbf,0xab,0x9f,0x48,0x11,0xfd,0x15,0x81,0x2e,0xc5,0xc6,0x07, +0xa3,0x0d,0x1d,0xa6,0xf6,0xff,0x32,0xe6,0x7c,0xec,0x5f,0xbd, +0x7f,0x04,0xed,0x7a,0x2b,0x90,0x79,0x4e,0xc0,0x36,0x14,0x60, +0x9d,0x94,0x44,0x07,0xf6,0xb0,0x7c,0x6b,0xcb,0xd0,0xa4,0x93, +0x32,0xd6,0xda,0xfe,0x79,0xa3,0x3f,0x0c,0x04,0x3f,0xad,0xe2, +0x7b,0x6d,0x5f,0x52,0xaf,0x57,0x37,0xb9,0x41,0x88,0xb7,0x67, +0x8d,0xfd,0xa2,0x97,0x61,0x0b,0x8d,0x8c,0xbd,0xa8,0x0a,0x3f, +0x91,0xba,0xd1,0xbf,0x6a,0x0e,0xba,0x18,0x36,0x82,0x8a,0x3f, +0x9a,0xab,0x68,0x0f,0x74,0x2d,0x15,0xc3,0x97,0x26,0xc6,0x2e, +0x35,0x0d,0xfa,0x52,0xca,0xb0,0x1f,0xea,0x9a,0x6b,0x1b,0xff, +0x9e,0x3a,0x70,0x6f,0x04,0x7e,0xe1,0x68,0x86,0x9f,0x74,0x0d, +0xf4,0x60,0xc6,0xbf,0x7a,0xaf,0x60,0xe2,0x43,0xd2,0x1c,0xcd, +0xd9,0xd5,0x03,0xaf,0x7a,0x04,0x7d,0xf6,0xb0,0x3f,0xcc,0xb9, +0xd5,0x82,0x9e,0x6e,0x16,0x74,0xb1,0x01,0xdc,0x5e,0x42,0x1c, +0x24,0xfb,0x3a,0x82,0x2e,0x33,0x80,0x8c,0x37,0xef,0x8f,0xee, +0x83,0xa7,0xf9,0xb4,0xb8,0xb6,0x96,0x8d,0x0d,0x25,0x31,0x7a, +0x38,0xbb,0x57,0x49,0x0f,0xb2,0x88,0xae,0xbf,0x49,0x83,0xa3, +0x92,0x0c,0x3f,0x95,0x2a,0xfa,0x25,0x31,0xfe,0x09,0xa4,0xf1, +0xd5,0x0c,0x7f,0xac,0xd8,0x1f,0xdd,0x3b,0xa5,0x06,0x1b,0xc5, +0x14,0x6c,0x90,0xd5,0x8c,0xb1,0x27,0x2d,0x5c,0xc6,0xbc,0x55, +0x3e,0x34,0x00,0xbd,0x08,0xf0,0xdd,0x0d,0xff,0xea,0x9c,0x98, +0x05,0xa1,0x51,0x8b,0xfe,0x68,0x5e,0x7b,0xa5,0x73,0x5d,0x63, +0x9b,0xb1,0x72,0xe1,0x7e,0x7f,0x98,0x63,0x8b,0xbe,0x02,0x91, +0xe1,0x4b,0x03,0xd8,0x25,0x43,0x13,0x4b,0x5e,0x33,0xeb,0x49, +0x9f,0xbb,0x64,0x74,0x4f,0x4d,0xd4,0xd7,0x80,0xaf,0x4b,0xcb, +0xf0,0x9b,0xaa,0xbb,0x3d,0x8b,0xba,0x3b,0xb0,0xc9,0xd3,0x56, +0x1a,0x18,0x3f,0xa1,0x16,0x64,0x54,0x8d,0xe1,0x5d,0xf2,0x87, +0xb9,0x54,0x75,0x9d,0x1c,0x37,0xbc,0xc1,0xaa,0x3f,0xba,0x9f, +0x0d,0x65,0x7e,0xe6,0x7d,0x52,0xdd,0x59,0xdb,0xc8,0x1e,0x11, +0x78,0x80,0x36,0x7c,0x76,0x28,0x1b,0xeb,0x9e,0x9e,0x77,0xe2, +0x1b,0x95,0x57,0x5d,0x07,0xed,0x3f,0x01,0xfb,0xe0,0x09,0xc3, +0x5f,0xce,0xe0,0x5d,0x27,0xa0,0x47,0x3d,0xe3,0x8f,0xee,0x89, +0xd3,0xc3,0x5c,0x4a,0x32,0x70,0x62,0x98,0x21,0x6b,0xeb,0xda, +0x39,0x0e,0x7c,0xa8,0x65,0x0f,0x83,0xaf,0x0c,0x81,0xb3,0xdb, +0x19,0xbe,0x7a,0x1d,0xe4,0x6d,0x68,0x03,0xaf,0xed,0x94,0x76, +0xaa,0x6f,0xce,0x14,0xd6,0x41,0x15,0xfa,0xe9,0xc8,0xe0,0xd5, +0x18,0x7e,0x18,0x4d,0xa3,0xff,0xed,0xf9,0xa3,0xfb,0x88,0xe8, +0x33,0xf7,0x40,0x87,0x39,0x93,0xa1,0x83,0xad,0xe0,0x1b,0x56, +0x04,0x07,0x06,0xc6,0x9e,0x19,0x1b,0xfd,0x48,0x64,0xc6,0x34, +0x32,0xf2,0x48,0x0b,0x7a,0xa7,0x36,0xd6,0xde,0x31,0xf4,0x1d, +0xfd,0x04,0x59,0x77,0x29,0x43,0x66,0x48,0x32,0x78,0x73,0xbd, +0x36,0x83,0x75,0x58,0x31,0x7c,0x93,0xea,0xba,0x8b,0xb2,0xc6, +0x5a,0xe0,0x53,0x9b,0x86,0x77,0x08,0x8d,0xaf,0x4d,0x60,0xf4, +0x8a,0xea,0x1f,0xa3,0xd7,0x99,0x7b,0xbf,0x07,0x3c,0xdc,0x30, +0x7e,0xc8,0x0d,0xe3,0xf7,0x77,0x52,0x9e,0xb5,0xbe,0x9e,0xd5, +0x0c,0x9f,0x3c,0x8b,0xab,0x68,0x4b,0x58,0x00,0x4d,0x5a,0x83, +0x4d,0x7c,0x5e,0xf8,0xab,0x86,0xf1,0xa7,0x8c,0x4d,0x5e,0x05, +0x7e,0xdb,0xdd,0x58,0xd7,0xec,0xeb,0x05,0xac,0x95,0x00,0x3c, +0x63,0x0b,0xfc,0x6f,0x07,0x32,0x23,0x7d,0x8a,0x5a,0x90,0x1b, +0xa8,0x7b,0xde,0xe7,0x8f,0xe6,0x6e,0xdb,0x03,0x5a,0x4a,0xb9, +0xb1,0x22,0xf2,0xc8,0x5d,0x58,0x9f,0x4d,0xa3,0xdf,0x88,0x81, +0x4b,0xee,0x92,0x98,0x08,0xd5,0x1b,0xfc,0x15,0xf4,0xc7,0x0f, +0x60,0x8d,0xd6,0x8c,0xed,0x4b,0x75,0x89,0x0f,0x4b,0x3f,0xb8, +0xbe,0xcc,0xdd,0x8e,0xef,0xd4,0xa3,0xe6,0x14,0xbe,0xcb,0xbf, +0xfe,0x7e,0xbd,0xd6,0x77,0xfc,0x5a,0xbf,0x2d,0x50,0x7e,0xae, +0x1a,0x7d,0x71,0x15,0x3e,0x00,0xd7,0x83,0x71,0xe5,0xca,0xa6, +0x4c,0xe1,0x1a,0x65,0xd8,0xd6,0x62,0x46,0xdd,0xc9,0x0d,0xb6, +0xa5,0xfa,0xcf,0x6c,0xf3,0x41,0xb1,0x2f,0x6c,0x07,0x1f,0xae, +0xeb,0xe8,0x8c,0xe1,0x55,0x1e,0xf0,0x87,0x39,0xee,0x54,0x9e, +0x8e,0x86,0x76,0xe3,0xdc,0x97,0xfa,0xa3,0x7b,0xfd,0x68,0xae, +0x9a,0x27,0xfd,0xe1,0x9e,0xa3,0x89,0xb1,0x39,0xac,0x83,0x56, +0x9e,0x93,0x39,0x79,0x56,0xe6,0xc3,0x29,0xb9,0xb6,0x20,0xf4, +0x5d,0x6d,0xb7,0x6d,0xe8,0xd7,0x77,0x41,0x27,0xa5,0xfa,0x13, +0xae,0xe7,0x5d,0xe0,0xa1,0x63,0xcc,0xb5,0x5d,0x63,0x7c,0x3b, +0x98,0xc3,0x90,0x38,0xb7,0x8e,0xf3,0x05,0xd8,0x0a,0x5b,0x86, +0x46,0x75,0xc0,0x7b,0x30,0xdf,0x6a,0x09,0xb6,0xf6,0xdd,0x12, +0xff,0x43,0x7b,0x65,0x4f,0xc6,0xa1,0x87,0xef,0xdc,0x09,0x5f, +0x56,0xe5,0xc7,0x1e,0xf0,0x87,0xfb,0xd0,0x68,0x1e,0xc5,0x0b, +0xa0,0xe3,0x2b,0xfe,0xd5,0x39,0x08,0xab,0xf0,0xc5,0x4d,0xe0, +0xdb,0xa7,0x3a,0x64,0xe6,0x0a,0x52,0x79,0x41,0xfd,0x57,0xb6, +0xa3,0x0d,0xaa,0xe7,0xbc,0x07,0xba,0xfd,0xba,0xe1,0x31,0xe7, +0x8c,0x6c,0x55,0xcc,0xf0,0x73,0x5e,0x83,0xbc,0x6b,0x79,0xb6, +0x9e,0x3f,0xcc,0x25,0x19,0x82,0x96,0xf6,0xa0,0xdf,0xeb,0x99, +0xf8,0x03,0xda,0xf7,0x57,0xfd,0xd1,0x3d,0x3e,0xe9,0x1b,0x46, +0xfe,0x6d,0xd6,0x1f,0xdd,0x13,0x2a,0x02,0xdd,0x9d,0xc1,0xf5, +0xe3,0xc0,0xd5,0x2b,0xc6,0x87,0xa7,0x02,0x9b,0x63,0x08,0xdd, +0xc9,0x71,0xf0,0x6b,0x2d,0x63,0x83,0x0d,0xd1,0xa6,0x00,0xf2, +0x35,0xfd,0x54,0xa8,0x33,0x55,0x3a,0x30,0xe9,0x8f,0xee,0x4f, +0xa7,0xf4,0x60,0x49,0x68,0xfe,0x21,0x79,0xee,0x88,0xd1,0xb3, +0xed,0x07,0x4d,0xbd,0xd7,0xcf,0xde,0x73,0xeb,0x5a,0xd0,0x18, +0x13,0x5b,0x92,0x64,0xf8,0x40,0xb5,0xcc,0x58,0x67,0xed,0x3d, +0x19,0x42,0x26,0x63,0x1d,0xc7,0x33,0xec,0x89,0xa4,0xad,0xdc, +0xd3,0xd9,0xda,0xd5,0xac,0xec,0x55,0xf4,0x47,0xf7,0x50,0x50, +0x5e,0xe3,0x98,0x3f,0x9a,0x37,0xf6,0x80,0x69,0x57,0x6c,0xf4, +0x2c,0x09,0xca,0xef,0x90,0xb5,0x30,0x05,0x3e,0x2f,0x06,0x4f, +0xdd,0x30,0xdf,0xcc,0xfd,0x66,0x03,0xf0,0xf6,0x9a,0x43,0xde, +0xee,0xd5,0xd3,0xf6,0x47,0xf7,0xbb,0xaf,0x66,0xd0,0x3c,0x4b, +0x07,0x43,0x73,0x2c,0xe2,0x77,0x05,0x3a,0xa7,0xb6,0x91,0xcb, +0xb9,0x2f,0x58,0x69,0x4c,0x9d,0x35,0x63,0xcb,0xaa,0x62,0x9e, +0x4e,0x9a,0x76,0x15,0x05,0x2f,0xf5,0x32,0x7c,0x23,0x62,0xd8, +0xa5,0x74,0x3d,0x2c,0xf9,0xc3,0x3c,0x77,0x49,0x86,0x0f,0x8e, +0xd5,0x61,0xb7,0x8d,0x6f,0x37,0x7d,0x4d,0x22,0xf4,0x5f,0x0c, +0x5e,0x4a,0xed,0xee,0x0f,0x09,0xcf,0xc1,0x79,0x7f,0x1c,0x3e, +0xce,0x8b,0xe0,0xf3,0x94,0xaf,0x21,0x4f,0x7c,0x08,0xfc,0x6f, +0x7c,0x0d,0x19,0x3b,0x34,0xeb,0x37,0xce,0xb8,0x17,0xfb,0xd9, +0xfb,0xa7,0x5a,0x5d,0xac,0x8d,0x95,0x89,0xfd,0xab,0xf7,0x67, +0x0d,0x8d,0xed,0x27,0xcc,0xd0,0x61,0xd4,0x8c,0x3e,0xa2,0x2d, +0xdf,0xf7,0x80,0xd0,0xd5,0xc8,0xd8,0xb6,0x6a,0x58,0x97,0x75, +0xcc,0x43,0xca,0x5c,0xdd,0x0c,0x3f,0xa8,0xfb,0xe5,0xd9,0xc3, +0xc6,0x9f,0x32,0x00,0x4e,0xac,0xf8,0xa3,0xfb,0x9b,0x36,0x8c, +0xad,0xaa,0xe9,0x8f,0xee,0xc1,0xa2,0xfb,0x89,0x4c,0xc3,0xdf, +0x67,0x6f,0x06,0x3f,0xaf,0x71,0x62,0xeb,0x90,0xe3,0x35,0xef, +0xde,0x3a,0xec,0xfb,0x0d,0xd8,0x69,0x66,0x8c,0xdd,0x73,0xa7, +0x91,0xc5,0xaf,0x07,0x35,0xd8,0x4a,0xea,0x63,0xc6,0x53,0xd7, +0xfb,0x21,0xd0,0xad,0x30,0xc3,0xde,0x69,0xed,0x95,0xb1,0xc1, +0x9b,0x11,0xec,0x5e,0x81,0xb9,0x17,0x66,0xd8,0xd3,0xea,0x19, +0xf6,0xbe,0x96,0xf1,0x9b,0xb0,0x72,0x7a,0xcf,0x94,0x0d,0xc7, +0xc8,0xda,0x61,0x46,0x3c,0x90,0x9d,0xdf,0x55,0x13,0x33,0xa6, +0xb1,0x09,0x75,0xe0,0x66,0xa5,0x6d,0x8c,0x07,0x08,0x32,0xfc, +0x6a,0x27,0x32,0xe6,0x78,0xc3,0xe8,0x16,0x96,0x4d,0x7c,0xce, +0x6c,0x46,0x8c,0x4a,0x08,0xbd,0x63,0x00,0x79,0xb5,0x01,0x7d, +0x73,0x0b,0x3a,0xae,0x59,0xf0,0x48,0x9c,0xe7,0x4d,0x33,0x26, +0xd4,0x6d,0x74,0x4d,0x9f,0x4f,0x0b,0x5e,0x39,0x96,0x61,0x57, +0x6e,0x81,0x0f,0xba,0x9e,0xff,0x5b,0x3c,0x66,0x3c,0x13,0xe3, +0x9f,0x66,0xe7,0x51,0xc1,0xc8,0x86,0xc1,0x18,0xfc,0x13,0x1a, +0xdd,0x4b,0x03,0xe3,0x94,0x18,0x3f,0xb8,0xc4,0xf8,0xf8,0x53, +0x7e,0xaf,0x19,0x3e,0xc0,0xc6,0xb0,0x04,0x46,0xee,0x4d,0x32, +0xf0,0x14,0x7d,0xca,0x43,0xe3,0x8f,0x1c,0x64,0xf8,0xbb,0x59, +0xdf,0x9a,0x2a,0xda,0x13,0xf8,0x57,0xe7,0x91,0x6f,0x82,0x07, +0xce,0x8a,0xbf,0xa3,0x8d,0xc7,0xae,0xb7,0x0a,0xf4,0xdb,0x11, +0xe2,0x25,0xac,0x5f,0x49,0x60,0xe2,0xe7,0x9a,0x86,0xff,0xe3, +0xef,0xc0,0xf0,0x73,0xf4,0x6f,0xd8,0x61,0x78,0x95,0x18,0xe5, +0x43,0xf8,0xe4,0x3c,0x2c,0x40,0x99,0x6b,0xd5,0xf0,0xc5,0xab, +0xe0,0xe7,0x7a,0xe0,0x93,0x57,0xf0,0x9d,0x3d,0xf0,0xb8,0xcb, +0xb0,0x91,0xae,0x42,0xa7,0xd4,0x43,0x8c,0x4b,0x0f,0xbc,0x01, +0xc7,0x3d,0x80,0xce,0xba,0xe5,0x8f,0xee,0x7d,0xbd,0x4f,0xe8, +0xb1,0xc6,0xc0,0x70,0x1e,0xb5,0xa0,0xbf,0x4a,0xc6,0xf8,0x38, +0x26,0x19,0x73,0x80,0x79,0xe8,0xad,0x7f,0xe7,0x8d,0xae,0xab, +0xba,0x39,0xd2,0xcf,0xde,0xf2,0xae,0x77,0x1a,0x5f,0x84,0xba, +0x59,0x1b,0x25,0x7f,0x34,0x5f,0x7c,0x62,0xe2,0x3b,0x5b,0x46, +0xdf,0x5b,0xcd,0x68,0x53,0x9c,0xa1,0x0f,0x27,0x0d,0x27,0x0e, +0x88,0x0d,0x1e,0x08,0xa1,0x1b,0x0a,0xb1,0xc6,0x6b,0x66,0x0d, +0x66,0xed,0xf9,0x3e,0x6e,0xdf,0xab,0x26,0x6c,0xf0,0xc1,0x35, +0x9e,0xe7,0xfd,0x10,0x71,0x8e,0x81,0x19,0x2f,0xc6,0x8f,0x94, +0x4d,0x9c,0x7f,0x92,0xe1,0xf7,0x42,0x5a,0xd4,0x30,0xbe,0x6d, +0x8c,0xaf,0x6a,0x66,0xc4,0xe6,0xd2,0x2e,0xd7,0x30,0x3e,0xe2, +0x61,0xc6,0x3c,0xb2,0x7d,0x14,0x20,0x0e,0x22,0x34,0xf1,0xbf, +0x75,0xe3,0x67,0x61,0x9f,0xe3,0xd8,0x15,0x0c,0xbd,0x0c,0x8d, +0xad,0x5d,0xaf,0x4f,0x01,0xdf,0x54,0x0c,0xef,0x74,0x23,0xa0, +0xfe,0x2c,0x75,0xd1,0x53,0x76,0x4c,0x7c,0x43,0x08,0xb9,0x2e, +0xf0,0x87,0x7b,0x80,0xea,0xb8,0xaf,0x1a,0x7f,0xce,0x75,0xac, +0xe1,0x96,0xe1,0x45,0x2b,0x98,0x87,0x3b,0x8c,0x5e,0xe9,0x3c, +0xe4,0xa9,0x0e,0x62,0xcd,0x88,0x7b,0xf5,0x5a,0x07,0xeb,0xa8, +0x03,0x5c,0x1a,0x5d,0xe3,0xf9,0x2c,0x60,0x2e,0x88,0x20,0x43, +0xb6,0x2b,0x19,0xf9,0xae,0x63,0x74,0xb6,0xcc,0x49,0xa0,0xba, +0xe2,0x8a,0xf1,0x2f,0x64,0x8e,0x87,0xc0,0xf0,0x3e,0xd6,0x3f, +0x2c,0xce,0xb0,0x09,0xd2,0x96,0xc1,0xbd,0x57,0x3b,0xa6,0x4d, +0x25,0xa3,0x5b,0x0a,0x10,0x7b,0x1d,0x67,0xf8,0x5c,0x47,0x46, +0xff,0xd4,0xc1,0x58,0xb5,0x8d,0x6f,0x53,0x03,0xf5,0x26,0xf0, +0xf7,0xe9,0x60,0x5d,0xa4,0xd7,0xb6,0x80,0x47,0x9b,0x31,0xbe, +0xd0,0x96,0x67,0xa3,0x0e,0x8c,0xed,0xb1,0xb2,0x09,0x63,0xe6, +0x0a,0xa6,0xdd,0x05,0xe8,0xd9,0x02,0x94,0x9d,0x31,0x6b,0x31, +0x06,0x2f,0x1e,0x1a,0xdb,0x77,0x60,0x78,0x44,0xe6,0x98,0x98, +0x41,0x9b,0x3a,0xa8,0x63,0x9c,0x5c,0x56,0x35,0x3a,0x9b,0x10, +0x3e,0xd7,0x6d,0xe3,0x73,0x7f,0xd4,0xd8,0x00,0xc2,0x8c,0x58, +0x9c,0xc4,0xf8,0x32,0x34,0xfc,0xab,0xf7,0xf1,0xac,0x81,0xf7, +0x22,0x3e,0x59,0x01,0xdf,0x1a,0x18,0x7f,0x4e,0xf6,0x47,0x60, +0xe8,0x51,0xdd,0xf8,0x26,0xd3,0xc7,0x38,0xcb,0xd7,0xbd,0x7d, +0x0d,0x88,0x8c,0x3d,0xac,0x8d,0xfa,0xdb,0x46,0x6e,0x28,0x64, +0xd8,0xa8,0x2a,0x98,0x07,0x2d,0x7f,0x34,0xdf,0x00,0xfd,0x21, +0x5a,0xa0,0xc7,0x4d,0xd0,0xe2,0xb3,0xd0,0xd1,0xad,0x65,0xd8, +0xe5,0x69,0xe3,0xea,0xc1,0x3f,0x64,0x05,0xba,0xbb,0xa2,0xd1, +0x1b,0xd6,0xfd,0xd1,0x7d,0xe3,0x15,0x1f,0x2f,0xa1,0x4f,0x13, +0x8c,0xad,0xc6,0x1a,0x1c,0x13,0xde,0xfa,0x2c,0xf4,0x93,0xaa, +0x33,0x5f,0xcc,0xc0,0x03,0x11,0xf4,0xdd,0x3d,0x13,0x9f,0x17, +0x8f,0xa1,0x7d,0x8b,0x26,0xe6,0x4a,0x71,0xb7,0x3e,0xbb,0x57, +0xec,0x50,0xb4,0x19,0xb5,0x8d,0x1e,0x20,0xc4,0xfa,0x0f,0x0d, +0x8d,0xae,0x19,0x7e,0x96,0xb1,0x53,0x96,0x47,0xe5,0xfc,0xa2, +0x6e,0xa8,0x6e,0x74,0x53,0x0d,0xe3,0x47,0x58,0x33,0xf7,0xb8, +0xc7,0x78,0xcd,0xc4,0x04,0xd7,0xb0,0x06,0xd2,0xdf,0xbf,0x06, +0x9c,0xcf,0x3d,0xb7,0xcb,0x26,0x26,0x7f,0xbb,0xc1,0xfb,0x71, +0x86,0xbf,0x4e,0xcb,0xc8,0x13,0x09,0x74,0xd3,0x6d,0xe8,0xf4, +0x6d,0xcc,0x5f,0x92,0xc1,0x7f,0x90,0x67,0xde,0x6e,0x64,0x95, +0xc0,0xc4,0xfa,0x35,0x8d,0x0e,0x3a,0x32,0x31,0x7b,0x21,0x74, +0x68,0xea,0x6f,0x3e,0x09,0x3e,0x58,0xfb,0xe3,0x35,0xf0,0x75, +0x0f,0xe0,0x37,0x45,0x1d,0x40,0x88,0xb9,0x17,0x99,0xf8,0xdb, +0x32,0xe8,0x7d,0x03,0xb1,0xf3,0xd4,0xa3,0xdb,0x39,0xd2,0x35, +0xfc,0xac,0xd6,0x5b,0xf0,0x47,0xf3,0x2f,0x29,0x1e,0xd8,0x6f, +0x7c,0xc6,0xda,0x90,0xa3,0x03,0xe3,0xcf,0x6b,0x7d,0xcc,0xd4, +0x9f,0x4f,0xe7,0xee,0x1c,0xee,0x35,0x45,0x26,0x6f,0x19,0xbc, +0xd1,0x80,0x0f,0x9a,0xda,0xfc,0x19,0xd3,0x5a,0xf7,0xaf,0xce, +0x53,0xc1,0xf5,0xd1,0x06,0xde,0x6d,0x83,0x6f,0x66,0x0e,0x93, +0x70,0x8c,0x2f,0xb0,0x95,0x21,0xaa,0xfe,0x68,0x0e,0x83,0xd0, +0xd8,0x91,0x9a,0xfe,0xe8,0x9e,0x4f,0x75,0xfc,0xb6,0xf1,0x91, +0x91,0xe1,0xdb,0x69,0xd7,0xe4,0xfa,0x69,0x42,0x97,0xdc,0x44, +0x4c,0x6d,0xd3,0xc4,0xef,0xea,0x1e,0xc5,0x2c,0x57,0xc6,0xda, +0xd5,0xbd,0x90,0xb9,0xc7,0x54,0x11,0xa0,0xb6,0xab,0x29,0xd0, +0x27,0xdd,0x87,0x8c,0x7b,0xa3,0x15,0xf0,0x4c,0x0d,0xcf,0x4e, +0xa2,0x0d,0xdc,0xb3,0x6c,0x52,0xa0,0x00,0xbc,0x1c,0x1a,0xbd, +0x63,0x33,0x43,0xe6,0x0f,0x8c,0xcd,0xdc,0xde,0xa3,0x4f,0x12, +0xe7,0x81,0xfa,0x76,0x84,0x46,0x5f,0x11,0x18,0xfb,0x0b,0xcf, +0x6b,0x86,0x3e,0x07,0xe8,0x5f,0xea,0xe5,0x82,0x0c,0xd9,0x7f, +0x1c,0xd0,0xd7,0xb5,0x6e,0x70,0xea,0xb5,0x9e,0xcb,0xaa,0x77, +0x3f,0x70,0xb3,0xbd,0xcf,0x98,0x89,0x4a,0xc6,0xf7,0x58,0xa8, +0x18,0x1c,0x6c,0xef,0xd7,0x4c,0x3b,0x1b,0xe6,0x9b,0x18,0x5f, +0x12,0x82,0x06,0x54,0xe0,0x9b,0xc7,0xef,0x3e,0x24,0x3a,0x81, +0x00,0xbe,0x4e,0x3d,0xd0,0xf9,0x55,0xc1,0xcb,0x0a,0xab,0xd0, +0xd9,0x2f,0x0b,0xcf,0xa5,0x7b,0x13,0xb6,0xb1,0xce,0x74,0xfc, +0x8f,0x81,0x17,0x99,0xf6,0x47,0xf7,0x02,0xac,0x19,0x1b,0x25, +0xf1,0xb2,0xc6,0xec,0x1c,0x14,0xbc,0x73,0x87,0xd1,0xf9,0x29, +0x7e,0x9a,0xcb,0x90,0x31,0xb8,0x27,0xde,0x1e,0xf8,0x4c,0x97, +0x81,0xcb,0x2a,0x18,0xb3,0x95,0x8c,0xf8,0xd2,0xd8,0xd0,0x9f, +0xae,0x3f,0x9a,0x9b,0x4a,0x6d,0x18,0x75,0xc4,0xda,0xa8,0x6d, +0x76,0x97,0x3f,0x9a,0xd7,0xa4,0x39,0x26,0xc6,0xaa,0x6c,0xf4, +0x72,0x09,0xfa,0xbc,0x0c,0x1e,0xa8,0x67,0x68,0xdf,0x32,0xfa, +0x3c,0x30,0x72,0x7c,0xc3,0xd8,0x32,0x8a,0xfe,0x70,0xcf,0x6a, +0xfa,0xf0,0x2f,0x81,0xdf,0x6b,0x61,0x3d,0xb7,0x11,0xa3,0x51, +0x41,0x5f,0x86,0x26,0x36,0xa4,0x05,0xbf,0xdc,0x2c,0xdf,0x86, +0x86,0xf1,0xbb,0x28,0x18,0x5f,0x8c,0x82,0x89,0x4d,0x6e,0xfa, +0xd7,0xce,0x73,0x9d,0xfc,0x5f,0x06,0xed,0x17,0x78,0xad,0xf1, +0x02,0x74,0x65,0xc1,0x75,0xea,0x0e,0x8c,0xbc,0x19,0x8f,0xd1, +0x3f,0x47,0xd7,0xf0,0xb7,0xcd,0x6a,0xef,0xb8,0x7c,0x0e,0xc1, +0x35,0xda,0xd4,0x1a,0x73,0x2f,0xeb,0x1d,0x6d,0xff,0xda,0xf9, +0xce,0x43,0x53,0x57,0x3b,0xc3,0xde,0xd7,0x1e,0x63,0x0f,0xcc, +0xfa,0x3e,0xc6,0xd4,0x56,0x50,0xcf,0x99,0x31,0x3a,0xff,0xd8, +0xc4,0x21,0xde,0x91,0x11,0xa7,0xc5,0xb8,0xc2,0x64,0x8c,0x7e, +0x2b,0x11,0x9c,0x73,0x18,0x31,0x78,0xe3,0xbe,0xb7,0x9d,0x61, +0x2b,0xca,0xca,0xd9,0xa7,0x32,0xef,0xea,0x35,0xe6,0x52,0x9c, +0xe1,0x0f,0x50,0x32,0xf4,0xa0,0x65,0x74,0xab,0x71,0x86,0x9d, +0x93,0xb6,0x73,0xce,0x37,0x3b,0xde,0xdc,0xf3,0xe8,0x28,0xf0, +0x7b,0x1d,0x3c,0x52,0x03,0x36,0xf8,0xf2,0x35,0xec,0x2d,0x36, +0xef,0xc5,0x5e,0xe3,0xe3,0x50,0x35,0xfc,0x76,0xd1,0xc4,0x8e, +0x33,0x27,0x63,0x84,0x7e,0x9f,0xf1,0x87,0xb9,0x60,0xc2,0x0c, +0xdf,0xce,0x10,0xf8,0x30,0x42,0x1f,0xc5,0xe0,0x11,0xed,0x1a, +0xb0,0xd7,0xb5,0xbd,0x69,0x7d,0x4f,0xc3,0x57,0x77,0xcd,0xbf, +0x3a,0xff,0xcc,0x7e,0xb3,0x36,0xad,0xbf,0x27,0xf5,0xe4,0x75, +0xc3,0xb7,0x06,0xa0,0x51,0x4d,0x23,0x83,0xd3,0xb7,0x66,0x4e, +0xc6,0x23,0xf6,0x47,0xf3,0x20,0xd2,0xce,0xdd,0x34,0x72,0xd7, +0x0a,0xe4,0xa5,0xc0,0xc4,0x2f,0x87,0xc6,0x5e,0x50,0x37,0x7e, +0xc9,0x94,0x53,0x7a,0xb0,0x3d,0x2e,0x1a,0x1b,0x5f,0x4d,0x68, +0x6a,0x0d,0xfc,0xcb,0xa2,0xf1,0x1b,0x6a,0x41,0xfe,0xa7,0x0c, +0x57,0x84,0x3d,0x73,0xd9,0xb4,0x2d,0x06,0x3f,0x45,0x9c,0xd0, +0xc2,0x7b,0xe8,0x67,0xb9,0x84,0x78,0xd1,0x46,0xc6,0xfa,0x0d, +0x33,0xd6,0x58,0xdd,0xf0,0x0d,0x94,0x3b,0x5a,0xd0,0xa1,0xcc, +0x23,0x7e,0x8b,0xb4,0xb6,0x61,0xfa,0xb2,0x6e,0xec,0x39,0x45, +0x23,0xd7,0x6a,0x8c,0x63,0x98,0x81,0x0b,0x5a,0x06,0xd7,0x59, +0x9d,0x0c,0x7d,0xf0,0xea,0x46,0x06,0x5d,0x35,0x73,0x5f,0x63, +0x16,0x54,0xd7,0xa5,0x7c,0xde,0x8a,0x3f,0x9a,0xb7,0xb5,0x01, +0xfe,0x41,0xe3,0x8c,0x9b,0xc6,0xa7,0x64,0x15,0x73,0x3f,0x06, +0xff,0x62,0x63,0xf1,0x67,0xe1,0x2f,0xa5,0x7e,0x4f,0x47,0x0c, +0xff,0x60,0xf5,0x1f,0x51,0x46,0xec,0x7f,0x32,0x06,0x57,0x52, +0xbf,0x6a,0xf5,0x3d,0x0d,0x8c,0x47,0x96,0x8d,0x22,0x30,0xba, +0xa0,0x82,0xa1,0x41,0x21,0x6c,0xb1,0xb4,0x5b,0xb6,0x41,0x9b, +0x22,0xd3,0x57,0x2d,0xa3,0xdb,0xab,0x03,0xf7,0x47,0x18,0xcf, +0x96,0xc1,0x45,0x8a,0x6f,0x27,0x50,0x7f,0x13,0x65,0xeb,0xc6, +0xb7,0x2e,0x30,0x72,0x2d,0xf3,0x29,0x6e,0x82,0x2e,0x38,0xf6, +0x47,0xf3,0x06,0xea,0x7a,0x5b,0xc4,0xb5,0x5a,0xc6,0xba,0xd6, +0x31,0x0e,0x10,0xb7,0x37,0x81,0x7b,0xa4,0x0b,0x7b,0xe5,0x5d, +0xcb,0xc6,0x6f,0xc0,0xea,0xc4,0x6a,0x22,0x9f,0xec,0x83,0x8e, +0x7a,0x1f,0x6c,0xfd,0x75,0xf8,0x19,0x75,0x51,0x96,0xb1,0x98, +0xd6,0xae,0xc8,0x7d,0xe0,0x1b,0xf0,0xa9,0xd9,0x0d,0x3d,0x37, +0xed,0x0c,0x8c,0xd5,0xec,0x1a,0x1d,0x6a,0xd7,0xcc,0x39,0xe6, +0x4c,0xee,0x9a,0x98,0xee,0x26,0xda,0x54,0xc3,0xf5,0x00,0xba, +0x8b,0x2e,0xda,0xaf,0xef,0xeb,0x1a,0xdb,0x3c,0x7d,0x1d,0x5a, +0xc0,0x11,0x0d,0xf8,0xf7,0xa8,0x6d,0x9c,0xf2,0x66,0x17,0xfd, +0xb2,0x0f,0xcf,0xa9,0xfc,0xa7,0x31,0x1f,0xba,0xdf,0xe7,0x09, +0x7f,0x34,0x27,0xec,0x9a,0xc1,0xe7,0xd6,0x8f,0x71,0x05,0x31, +0x31,0x2b,0xe6,0xda,0xca,0x18,0x38,0x68,0xe4,0x2a,0xc6,0x9c, +0xd1,0x47,0x73,0xd6,0xac,0xf1,0x0e,0x7c,0xeb,0x96,0x64,0x1e, +0x15,0x11,0xbb,0x12,0x1a,0xbf,0x44,0xda,0x47,0xea,0xe8,0xc7, +0x18,0xeb,0xfd,0xb8,0xf0,0x22,0x3d,0xd8,0xea,0x57,0x20,0x6f, +0xad,0xc2,0x66,0xbf,0x84,0xfb,0x0b,0xb0,0xef,0xab,0x5f,0x5b, +0xdb,0x1f,0xee,0x2d,0x1f,0xfb,0xa3,0xf9,0x36,0x57,0x31,0xc6, +0x36,0x47,0x71,0xc7,0xf0,0x16,0xfc,0x1e,0xda,0x77,0x22,0x63, +0xef,0xea,0x18,0x5b,0x6c,0x92,0xa1,0x8b,0xad,0xfb,0xa3,0xb9, +0x92,0x56,0x8d,0xbc,0xdc,0x33,0x7a,0xfc,0x55,0xe0,0xf0,0x10, +0xdf,0x93,0xc0,0x3f,0x67,0xd1,0xd0,0x01,0xda,0xc2,0xba,0x19, +0x3e,0x28,0x2d,0xc3,0x6b,0xb4,0xa0,0x77,0x0d,0x33,0x7c,0x70, +0x75,0x8e,0xee,0x30,0x7a,0xa4,0x26,0x68,0x49,0x82,0x79,0x97, +0xc0,0x9f,0x28,0x34,0x76,0x70,0xfa,0x2c,0xdb,0xdc,0xa3,0x01, +0xea,0xdb,0x0a,0x1e,0x65,0x15,0xed,0x39,0x8e,0x98,0x62,0x6b, +0x7f,0xda,0x25,0x34,0x6a,0x09,0x3c,0x4d,0xd9,0xc4,0x77,0x32, +0xae,0xae,0x05,0xbc,0xdf,0x32,0xbe,0xae,0xbc,0xde,0x05,0x1e, +0x98,0xf1,0x87,0x39,0x72,0x16,0x8d,0x5e,0xe6,0x90,0xf0,0x16, +0xd3,0xe0,0x87,0xca,0x38,0x96,0xe1,0x0b,0x57,0x33,0xfa,0x41, +0xea,0x95,0x8a,0x86,0xb6,0xb6,0xcd,0xef,0x62,0x86,0x6f,0xaa, +0xf2,0xa7,0x5b,0xc7,0xc4,0x8a,0x94,0xaf,0x13,0x4b,0x72,0x2d, +0x68,0x5e,0xe3,0xbd,0x35,0xe8,0x32,0xf5,0xfb,0x16,0x64,0x3e, +0x6e,0x35,0xdf,0x1d,0xe3,0xbc,0x08,0xfd,0xeb,0x38,0x68,0x5c, +0xe7,0x7e,0x16,0x84,0x38,0x9f,0x82,0x4e,0x56,0x7f,0x2b,0xb4, +0xcd,0xef,0x29,0xc4,0x2b,0x4e,0xc1,0xb7,0x97,0xfa,0xa2,0x69, +0xe0,0xf1,0x08,0xf2,0x4c,0x64,0x78,0x84,0x36,0xf8,0x8f,0x0a, +0x64,0xac,0x8e,0xe1,0x5d,0xb8,0x56,0x9a,0xf0,0x4b,0x68,0x82, +0x2e,0xd1,0x96,0x7e,0xdc,0xc4,0x68,0xd7,0xe0,0xd7,0x5c,0x37, +0xf4,0xbd,0x96,0xc1,0x2f,0x67,0xc9,0xc2,0xfb,0x8d,0xdf,0x97, +0xea,0x4f,0x55,0xc7,0xbd,0xf8,0xff,0xf7,0x8d,0x7b,0xc1,0x10, +0x7e,0x9e,0xe1,0xb9,0x1b,0x84,0xb6,0xb1,0x9b,0x6c,0xf6,0x87, +0xb9,0x87,0x4b,0xfe,0x30,0xef,0x20,0x73,0xbe,0x2a,0xaf,0x5f, +0x18,0xee,0xf5,0x78,0x65,0x2f,0x9a,0xc7,0xe4,0xe8,0x0d,0xe6, +0x59,0x3e,0xdd,0x73,0xeb,0xed,0x78,0x5f,0x94,0x01,0x73,0x80, +0xaa,0x89,0x99,0xee,0x4a,0x5d,0xe9,0xbe,0x5a,0xe9,0xfe,0x5a, +0xe9,0xde,0xf3,0x3f,0xef,0x0f,0xf6,0xe2,0x7a,0xb7,0xe8,0xbb, +0x95,0x8e,0xd2,0x9f,0xb0,0x0e,0xbe,0x67,0x09,0xb4,0xa0,0x84, +0x35,0xdb,0x36,0xb1,0x33,0xb4,0x9b,0xab,0x9f,0x89,0xca,0x92, +0xb3,0xb0,0xcb,0x57,0x81,0x63,0x35,0x66,0x85,0x79,0x80,0x4b, +0x86,0x1e,0x56,0xe1,0xef,0x67,0x73,0xbe,0x05,0xd0,0xf1,0xce, +0x80,0x87,0xd8,0x6f,0x7c,0x7e,0x95,0x4e,0x1e,0x31,0x32,0x80, +0xf2,0x7f,0x47,0x8d,0xcd,0xc7,0xfa,0x52,0x14,0x0d,0x5e,0x68, +0x9b,0xd8,0x1b,0xca,0x5c,0xaa,0x1f,0x3a,0x6c,0x64,0x55,0xda, +0xfc,0x35,0x67,0x6a,0x55,0xe6,0x87,0xe6,0xdd,0x8a,0x4d,0xbc, +0xa9,0x8e,0xc9,0x56,0xe0,0x92,0x65,0xf0,0x08,0xb4,0xfb,0xdd, +0x81,0xb1,0xa4,0xed,0x6a,0xc1,0xd8,0x09,0x98,0xd3,0x3a,0x82, +0x9e,0x7b,0x2f,0x7c,0x0c,0x0b,0xfe,0x68,0x6e,0x1a,0xc5,0x79, +0x73,0xfe,0x68,0x5e,0xcb,0x39,0xe3,0xf7,0xc1,0x78,0x99,0x1a, +0x78,0x5a,0x1b,0x57,0x53,0x33,0x7a,0xac,0xd8,0xc4,0x7b,0x24, +0x19,0xfe,0x74,0xb1,0x89,0x5d,0xb2,0x76,0x04,0xc5,0xcf,0xea, +0xdf,0xb9,0x08,0x39,0xfa,0xac,0x59,0xa7,0xe4,0xcd,0xac,0xee, +0x30,0xc8,0xd0,0x75,0x44,0xfe,0x68,0xfe,0x9e,0x9a,0x99,0xf7, +0x3a,0xa7,0x8e,0xe3,0x7c,0x2a,0xc3,0x36,0x18,0xf8,0xa3,0xb9, +0xf7,0xc6,0xe9,0x2a,0x23,0xcc,0xe5,0xd8,0xe8,0xb8,0x68,0xcf, +0xaf,0x1b,0x7f,0x83,0x3a,0x62,0x8d,0x54,0x56,0x98,0x37,0x31, +0x36,0x21,0x7c,0xc9,0x15,0x7f,0x3e,0x28,0xc7,0x74,0x9f,0xe6, +0xaf,0x73,0x38,0x28,0xdd,0x2f,0xfb,0xd7,0xfd,0xc1,0x9e,0x6c, +0x0e,0x5f,0xe4,0xdf,0x37,0x98,0x5f,0xf9,0x6f,0x1e,0xc4,0x2e, +0xe5,0xdf,0x36,0xe0,0xa9,0xf2,0xf7,0x0f,0x64,0x99,0xfc,0x57, +0xc8,0xef,0xe2,0x80,0x27,0xcc,0xbf,0x6b,0xd0,0xae,0xfc,0x1d, +0x03,0x7a,0x9c,0x7f,0xbd,0xcc,0xcf,0x74,0xef,0xc0,0x77,0xc9, +0x7b,0x7e,0xc0,0x1f,0xec,0xdf,0x9a,0xee,0x07,0xf6,0x27,0xfe, +0x60,0xaf,0xb3,0x14,0xde,0x2b,0xd7,0xfe,0xd8,0x1f,0xec,0xfb, +0x9a,0xee,0x05,0x99,0xee,0x29,0xf8,0xed,0x0e,0x7e,0x4c,0xf0, +0xe0,0xff,0x72,0x90,0xee,0x9f,0x94,0xee,0xeb,0x98,0xee,0x6d, +0xf6,0x6d,0x46,0x6f,0x19,0x41,0x2e,0x5a,0x15,0x9e,0x60,0x56, +0xf0,0x11,0x71,0x71,0xba,0x56,0x5f,0x3d,0x98,0xef,0xf9,0x93, +0x62,0x37,0x7b,0x44,0xe2,0x8b,0xff,0xc1,0xd0,0xf2,0x35,0xf1, +0x6f,0xec,0xa0,0x7e,0xe2,0x3b,0xce,0xc1,0x2c,0x7d,0x73,0x53, +0x78,0x1c,0x8d,0xc3,0x5c,0x81,0x2e,0x66,0x05,0xf6,0xbf,0x0a, +0xf8,0xcf,0x96,0xe1,0x5b,0x38,0x07,0x63,0x7c,0x87,0xae,0xeb, +0xbd,0xc3,0x79,0x96,0xee,0xb1,0xd8,0x5f,0xcf,0x77,0x0a,0x0e, +0x48,0x65,0xce,0x6f,0x11,0x48,0xf7,0xe2,0xfb,0x22,0xe9,0xb7, +0x4b,0x32,0x47,0x64,0x2e,0xa4,0xfb,0xda,0xf6,0xf7,0xb6,0xbd, +0x6f,0x08,0x57,0xf6,0x1e,0x14,0xb8,0xb2,0x1f,0x32,0xf7,0x52, +0x7e,0x44,0xe2,0x9d,0x22,0x99,0xfb,0x9b,0xfc,0xe1,0x1e,0x08, +0x9a,0xef,0x41,0xf1,0x94,0xda,0xc1,0xa6,0x85,0x37,0x3f,0x23, +0x7d,0xf9,0x9c,0xb4,0x5f,0xf7,0x36,0x4b,0x63,0xb5,0xbf,0xdc, +0x1f,0xec,0xa9,0xfa,0x35,0xfe,0x8d,0xef,0xe1,0x38,0xfb,0x2f, +0x84,0x39,0xf3,0x5b,0x73,0x58,0x61,0x4f,0x46,0xdd,0x23,0x8e, +0xfb,0x38,0xf7,0xaf,0xdd,0x28,0x8f,0x31,0xfb,0xaf,0xd0,0xce, +0x71,0x65,0xfe,0x39,0x10,0xdd,0x20,0x34,0x46,0x7f,0xe7,0x3e, +0xea,0xe0,0xa2,0x1c,0x53,0xb8,0x1f,0xc7,0x14,0xb6,0x1a,0xde, +0xd1,0xfc,0xee,0xf7,0x6f,0x05,0x63,0x8a,0x39,0x99,0xd3,0x98, +0xee,0x08,0xf3,0xf3,0x51,0x7f,0xb8,0x1f,0xc9,0x8d,0x7c,0xd7, +0xb7,0x0a,0x1c,0x90,0x75,0x91,0xe2,0xbe,0x8b,0xb2,0x16,0x9e, +0x92,0xf9,0x98,0xd6,0xff,0x11,0x29,0x3f,0x23,0xfc,0x52,0x0a, +0x37,0x0b,0x44,0x86,0x4f,0x4c,0xfc,0x2b,0xfb,0xd5,0xfa,0xae, +0xae,0xfc,0x9f,0x0f,0x70,0x5e,0xee,0xb3,0x0e,0xde,0x28,0xb8, +0xe4,0xcd,0x2f,0x80,0x9f,0xfe,0x71,0xd9,0x6b,0x56,0x7f,0xbf, +0xea,0x3a,0xcf,0xdc,0x2d,0xeb,0x4b,0xf7,0xd1,0xfd,0x88,0xac, +0xcd,0xf7,0xfb,0xc3,0x3d,0xf7,0x76,0xba,0x36,0xa5,0x6b,0xf1, +0x83,0xee,0xf8,0x97,0x02,0xaf,0x83,0xee,0x1b,0x7b,0xda,0xe6, +0x7f,0xce,0xc1,0x8f,0xc8,0xf1,0x47,0xa5,0x5c,0x62,0x74,0xd6, +0x37,0xca,0x3f,0xdb,0x75,0x73,0x4a,0xf0,0x48,0xba,0xcf,0xe9, +0xdb,0x50,0x6e,0x87,0x8c,0xe5,0xa3,0x12,0x57,0x9e,0x82,0x2f, +0xf8,0x39,0x27,0xe7,0x76,0xee,0x95,0x8c,0x1f,0xbc,0xfa,0x37, +0xac,0x19,0x9f,0xa3,0x3a,0x64,0xe6,0x23,0xfe,0x30,0xef,0x55, +0x4b,0xe6,0x41,0x8a,0xab,0x6e,0x11,0xdc,0xf4,0x20,0x62,0xfd, +0x43,0xe3,0x53,0x55,0x92,0x39,0x73,0x46,0xe6,0xdb,0x6d,0xe0, +0xf7,0x55,0x4f,0x31,0x6d,0xf8,0x94,0xd0,0xbf,0x7a,0x8f,0x80, +0x50,0xe4,0x4d,0xf5,0x79,0xd8,0xed,0x7f,0x7e,0x73,0x2d,0x28, +0x2c,0x23,0x1e,0x57,0xf9,0xa0,0x3b,0x33,0x74,0x6f,0x2a,0xbf, +0xf7,0xa0,0xf3,0x5c,0x30,0xf6,0xe6,0xb9,0x0c,0xdf,0x63,0xf2, +0xca,0x49,0x46,0x6c,0x76,0x4d,0x68,0x81,0xe2,0xfa,0x75,0xf8, +0x60,0x9f,0x04,0x4f,0xdc,0x80,0xde,0xdb,0xd2,0x37,0x1b,0xc3, +0x45,0x1e,0xf1,0x8c,0xe1,0x07,0x67,0x8c,0xbf,0x5c,0x7b,0x4c, +0xbb,0x92,0x0c,0x59,0x9f,0x71,0x8d,0x6a,0x4f,0xd0,0xbd,0x80, +0x56,0x21,0x43,0x68,0xbb,0x54,0x4e,0xd9,0x8e,0x38,0x3f,0x1b, +0xb7,0xd7,0xce,0xb0,0x57,0x77,0x8c,0x1c,0x11,0xfa,0xa3,0xfb, +0x3b,0x85,0xa8,0x3f,0x31,0x31,0x24,0x33,0xa6,0x8e,0xb6,0x7f, +0x75,0x0e,0x88,0x22,0x74,0xf9,0xa1,0xe1,0x39,0x3b,0xd0,0xad, +0xd0,0x37,0x78,0xca,0xf4,0xf3,0x69,0xff,0xea,0x7d,0x03,0x99, +0xb7,0x2c,0x40,0x3f,0xb4,0xcd,0xbc,0xa8,0x23,0x27,0x02,0xe3, +0x17,0xd6,0x8d,0x9f,0x2b,0xf3,0xfc,0xae,0x80,0x4f,0x2a,0xc3, +0x6f,0x4c,0xfd,0xdd,0x4e,0xe2,0xbb,0x4f,0xca,0x3a,0xd5,0x1c, +0x95,0xeb,0xa6,0xbf,0xc9,0x27,0xb7,0x61,0xeb,0x88,0x8d,0xdc, +0x31,0xce,0xd7,0xac,0xe8,0x0f,0xf3,0x51,0x58,0x9f,0x8d,0x38, +0x23,0x96,0x2e,0xc9,0x18,0x77,0xfa,0xf2,0x6e,0x01,0x8f,0xd7, +0x33,0x63,0x12,0x65,0xd8,0x32,0x75,0xce,0xce,0x8b,0x1d,0xa9, +0x6a,0xe2,0xd1,0x75,0x6f,0x8f,0x59,0x63,0x13,0x52,0xbf,0xa4, +0x7d,0xfe,0xe8,0x7e,0x5d,0xfb,0x20,0xfb,0x74,0x51,0x9f,0xdd, +0xdb,0xae,0x0b,0x20,0x4e,0xdd,0x07,0x79,0x3e,0xf6,0x47,0xf3, +0x52,0xc4,0xc6,0x4e,0xcd,0x7a,0x6c,0xec,0x55,0x17,0x36,0xb4, +0x32,0x72,0x14,0x1c,0x17,0xbe,0x55,0x6d,0x23,0x8b,0x66,0x9d, +0xae,0x8c,0x89,0x73,0xa7,0x0e,0xd9,0xea,0x47,0x4b,0xc0,0x3d, +0xd4,0x4d,0xba,0xba,0x72,0xa9,0xdc,0x51,0xca,0xf5,0xfc,0x27, +0x73,0x0f,0x7b,0xe7,0x72,0x3f,0xee,0xdd,0x93,0xff,0x33,0xef, +0x60,0xfe,0x0d,0x0e,0x07,0x7f,0xcc,0x3b,0x96,0xff,0x6d,0x6f, +0xcd,0xfb,0x9c,0x77,0x4f,0xee,0x82,0xbb,0x77,0x61,0x63,0x23, +0xf7,0xdb,0x5e,0x33,0xff,0xb4,0x77,0x34,0x37,0xe5,0xc5,0xb9, +0x6f,0xf3,0x96,0xdd,0xf1,0x64,0xee,0x59,0xef,0xe6,0xfc,0x79, +0xf7,0xcc,0x79,0x6f,0x97,0x83,0x65,0x07,0x1d,0x07,0x81,0x83, +0x93,0x0e,0x96,0x04,0xf6,0xa7,0xc7,0xdc,0x9c,0x77,0x6f,0x6e, +0xd6,0xdb,0xed,0xea,0x78,0xc0,0xc1,0x52,0x7a,0xcc,0x7d,0xd6, +0x8d,0xeb,0x77,0xb9,0x77,0x7d,0xbf,0xb7,0x2d,0xff,0xef,0xbd, +0x87,0xf2,0x5f,0xed,0xed,0xcb,0xff,0x9c,0x3b,0x3e,0xe4,0xe0, +0xb8,0x83,0xdf,0x72,0xbf,0x3f,0xe9,0x3d,0x94,0xfb,0x90,0x77, +0x20,0xbf,0xc9,0x9b,0xce,0xbf,0xd7,0x5d,0x7b,0xa5,0xf7,0x90, +0x7f,0xc6,0x1d,0xdd,0xf5,0xfc,0x1f,0xbb,0xfb,0x6f,0x92,0xe3, +0x07,0xdc,0xf1,0x82,0xd7,0x76,0xef,0xda,0x9c,0xff,0x65,0xef, +0xbe,0xfc,0x97,0x7b,0x9b,0xfd,0xef,0x76,0xe7,0x5f,0xea,0xe0, +0x92,0x77,0x8b,0xbb,0xd7,0xc8,0xf5,0x5c,0x99,0x37,0x79,0x75, +0x77,0x3c,0xec,0xde,0xbf,0x2b,0x7f,0xd2,0xab,0xb8,0xe3,0x67, +0xf2,0xb3,0xde,0x8c,0xbb,0x7f,0x4f,0xfe,0x55,0xde,0x9c,0x3b, +0xee,0xcc,0x1f,0xf0,0xba,0xb9,0x53,0x5e,0x21,0x1f,0x79,0x71, +0xfe,0xb4,0xeb,0x83,0x9b,0xbc,0x53,0x0e,0xf2,0xf9,0x86,0x77, +0x77,0x6e,0xda,0xd1,0xbb,0xe7,0x5d,0x59,0x77,0x3d,0xbf,0xd2, +0x2f,0x7f,0x4f,0xfa,0x4c,0xee,0x2b,0x5c,0xb9,0xcf,0x79,0xcd, +0xdc,0x17,0xb9,0xe7,0x4e,0x7b,0x67,0xf2,0x37,0x39,0x7a,0xdd, +0xf0,0xca,0xf9,0xdb,0xbc,0xad,0xf9,0x9b,0xbd,0xdb,0x72,0x7f, +0xe4,0x55,0x73,0x8f,0x7a,0x13,0xb9,0xe3,0xde,0x5b,0xd3,0xa3, +0x7b,0xef,0x3b,0x73,0x45,0xf7,0x9e,0x67,0xbd,0xc8,0x1d,0xd7, +0xd2,0xeb,0xee,0xda,0xc1,0x5c,0xe0,0x9d,0xcb,0x4f,0x7a,0xdd, +0xfc,0xeb,0xbd,0x83,0xde,0x73,0x1b,0x71,0x3e,0xe7,0x79,0xf9, +0xd7,0xb9,0xfe,0xfc,0x2a,0x6f,0x53,0xee,0xaf,0xbd,0xb5,0x7c, +0xe2,0xbe,0x63,0x7f,0x1f,0x76,0xba,0xf6,0x17,0xf2,0xe9,0xfb, +0x1e,0xf7,0x1a,0xf9,0xa3,0xee,0x3d,0x0e,0x72,0x77,0x7a,0x4f, +0xe4,0xbf,0xd7,0xdb,0x95,0xfb,0x16,0xef,0x8c,0xab,0x37,0x74, +0xcf,0xa4,0xd0,0x75,0xcf,0xa5,0xbe,0xd9,0x8f,0xdf,0x74,0xce, +0x3b,0xec,0xfa,0x3d,0x70,0xf0,0x3d,0xee,0x7d,0xcf,0x39,0xf8, +0x2e,0x07,0xdf,0x9c,0x7f,0x3a,0xf7,0x52,0x77,0x4c,0xaf,0x7d, +0xc4,0xc1,0xef,0x3b,0x78,0xaf,0x83,0x1f,0x74,0xf0,0xbc,0xdf, +0x75,0x38,0xe2,0xc7,0xbd,0x97,0xb8,0x71,0x6f,0xe5,0x6f,0xdd, +0xf8,0x47,0xd7,0xf7,0xfb,0x5e,0xf4,0x52,0x6f,0x5f,0xee,0x83, +0x6e,0x3d,0x7c,0xb5,0x37,0xe3,0xfa,0xe6,0xee,0x5c,0xd5,0xbb, +0xdd,0x7d,0x77,0xc3,0xff,0x35,0xd7,0x27,0x1f,0xf4,0x0a,0xe9, +0x1c,0xf1,0x5b,0xfd,0xf1,0x5e,0x70,0xef,0x8a,0x72,0x9f,0x71, +0xe3,0x9c,0x9e,0x5f,0xf4,0x6a,0x0e,0x26,0xf2,0x77,0xb9,0x67, +0xce,0xbb,0x79,0xff,0x25,0x0e,0xbe,0xde,0xc1,0x83,0xee,0xda, +0x07,0xdc,0x3c,0xc8,0x82,0x74,0x5e,0x3c,0x24,0xf3,0x42,0x20, +0x9d,0x13,0x02,0x61,0x7f,0x7e,0xfc,0x47,0xf7,0x7e,0x9d,0x13, +0x16,0x9e,0xf6,0x5e,0xd3,0x9f,0x13,0x84,0x74,0x4e,0xa4,0x73, +0x27,0x1d,0xfb,0x2c,0x48,0xe7,0x82,0x9b,0x07,0x84,0xdc,0x8b, +0xbd,0x57,0xb9,0x6f,0x3d,0x9b,0x7b,0xf1,0xc6,0x27,0x72,0x37, +0x6d,0xfc,0x65,0x7e,0xd1,0x5d,0xd7,0x79,0x60,0xc1,0x7d,0x6b, +0x7f,0x1e,0x10,0x5e,0xe6,0xbd,0xda,0xcd,0x95,0xbb,0xe5,0xd8, +0xbe,0x32,0x2f,0x3f,0xeb,0x79,0xe9,0xdc,0xc9,0xff,0x07,0x37, +0x47,0xdc,0x3c,0x71,0x73,0xf8,0x80,0xe3,0x98,0x9f,0x74,0xd7, +0x7f,0xc6,0x41,0xd7,0xc1,0xab,0x1c,0x24,0x0e,0x36,0x39,0x28, +0xc8,0xb5,0xef,0x70,0x70,0x47,0xba,0x86,0x1c,0xa4,0x75,0xc4, +0x0e,0x76,0x38,0x38,0xe9,0xa0,0xea,0xa0,0xe8,0xa0,0xe9,0x60, +0xca,0xc1,0x56,0x07,0xb7,0x3a,0x98,0x95,0xb1,0x9f,0x91,0xeb, +0x05,0x79,0xc7,0xfb,0xe4,0x3c,0x90,0x63,0x5a,0xe7,0xed,0x0e, +0x6e,0x73,0xb0,0xe4,0x60,0xbb,0x83,0x05,0xa9,0xfb,0x74,0x7f, +0x3c,0x07,0x70,0xcc,0x41,0xdd,0xc1,0xbc,0x83,0x73,0x0e,0x5a, +0x0e,0x3a,0x0e,0xb6,0x49,0xf9,0xf4,0xb8,0x2c,0x6d,0xd7,0x76, +0x6f,0x91,0xef,0xd0,0x63,0x5a,0xcf,0x7b,0x1c,0x4c,0x3a,0x38, +0xe4,0xa0,0xd2,0xef,0x8f,0xcf,0xe6,0xd2,0x6f,0xd8,0x2b,0xcf, +0x2f,0xc9,0xb3,0xf3,0xd2,0x86,0x5d,0x0e,0x8e,0x3b,0xf8,0x4f, +0x0e,0x2e,0x3a,0x48,0xe7,0xf4,0x4f,0x38,0xa8,0xc9,0xf5,0xdd, +0x0e,0x16,0xa5,0x3f,0xde,0xed,0xe0,0xa0,0x83,0x75,0x69,0x53, +0x24,0x7d,0x91,0x96,0x0d,0xa5,0xce,0xc7,0x1d,0xfc,0xa1,0x94, +0x73,0xef,0xf6,0xde,0x95,0xae,0x0f,0x07,0x8f,0xca,0x73,0xb7, +0xc9,0xb3,0x69,0xd9,0x5f,0x96,0xbe,0xd1,0x7e,0xe9,0xc8,0x3b, +0x97,0xe4,0x7c,0xb7,0x94,0xfd,0x19,0xe9,0xcf,0x4d,0xd2,0x0f, +0x5d,0xf9,0x9e,0x79,0xa9,0x57,0xcb,0xe9,0xb5,0xd3,0x19,0xd7, +0xf6,0xca,0xd8,0x15,0xa5,0xae,0x3d,0x32,0x2f,0xf6,0xc8,0x98, +0xed,0x96,0x31,0xfd,0x11,0x79,0x77,0x47,0xfa,0xef,0x80,0xf4, +0x79,0x53,0xc6,0x32,0x3d,0xdf,0x2f,0x73,0x64,0x4e,0xea,0xdb, +0x2a,0xcf,0x4e,0x4b,0x7f,0xbc,0x44,0xda,0x3a,0x29,0xdf,0x17, +0xca,0x31,0x1d,0xa7,0x5b,0x64,0x0e,0xd6,0x65,0xde,0x4c,0x48, +0x1d,0xe9,0xf9,0x1b,0xe4,0x38,0x2d,0xf5,0xbf,0x4c,0xe6,0x57, +0x5a,0xd7,0x59,0x69,0xc3,0x2b,0xa4,0x8e,0x8a,0xd4,0x9b,0xbe, +0xaf,0x2c,0xf5,0xdc,0x22,0xcf,0xee,0x90,0x3a,0xcf,0x38,0x78, +0xb9,0x83,0xfb,0xe4,0xfb,0x3a,0x68,0xe3,0x4b,0xa5,0x2f,0xd3, +0x36,0xed,0x93,0x63,0x45,0xca,0x68,0xfb,0x59,0x4e,0xe7,0xf0, +0xcd,0x0e,0x6e,0x92,0x6f,0xbb,0x4d,0xde,0xbb,0x59,0xe0,0x0d, +0xd2,0xbe,0x57,0x48,0x7b,0xcf,0xca,0xfb,0xa6,0x71,0xfd,0x96, +0x01,0xf4,0xfb,0x7e,0xb3,0x7c,0xdf,0x31,0x99,0x4b,0xb7,0xcb, +0x31,0xad,0x77,0xa7,0xf4,0xef,0xad,0xf2,0xfe,0x8e,0xbc,0xf3, +0xc5,0x78,0x77,0x49,0xd6,0xca,0x1e,0xf9,0x86,0xf4,0x9b,0xd7, +0xa4,0xfc,0xab,0xe5,0xd9,0x92,0x9c,0xbf,0x52,0xde,0xb7,0x47, +0xfa,0x75,0x27,0xbe,0xb1,0x80,0x3e,0xbb,0x45,0xda,0x39,0x23, +0x6b,0x70,0x52,0x9e,0x4b,0xc7,0xe5,0x0b,0xa4,0x3f,0x1b,0x32, +0x16,0x3b,0x64,0xae,0xde,0x26,0xf5,0x6c,0x91,0xe3,0xcb,0x64, +0x4c,0x5e,0x22,0xef,0xbf,0x4d,0xfa,0xf6,0x88,0xbc,0x7f,0x9b, +0xd4,0x7b,0xad,0xb6,0xde,0x2a,0x65,0x67,0x30,0x07,0x36,0x0d, +0xfb,0xef,0x4a,0x7f,0xb6,0x04,0xee,0x93,0xf2,0xdf,0x2d,0x73, +0xf6,0x9d,0x82,0x03,0x22,0x19,0xfb,0x25,0x69,0xc3,0x9b,0x05, +0xd7,0x79,0xde,0xd3,0xfd,0x31,0xf0,0x04,0x3e,0xe9,0xe0,0x67, +0x6f,0xe0,0xf7,0x27,0x71,0xce,0xfb,0x2c,0xf7,0x42,0xee,0x5b, +0xf0,0xfe,0x8d,0x43,0x63,0xa8,0x13,0xcc,0xfd,0x44,0xfe,0x3d, +0x7d,0xd9,0x65,0xc2,0xeb,0x79,0x81,0x97,0x78,0x1d,0x6f,0xd9, +0x9b,0x76,0x7f,0x1d,0xaf,0xe5,0xae,0xec,0xf0,0x0a,0xde,0x36, +0x2f,0x76,0x7f,0x49,0xff,0x6e,0xe2,0xad,0xba,0xf3,0xae,0x83, +0xb2,0xbb,0xbb,0xe4,0x1d,0xf5,0x42,0x77,0x1e,0xb9,0xf3,0xaa, +0xb7,0xe0,0x9e,0x4a,0xbc,0x43,0x5e,0xc9,0x3d,0xe9,0xf8,0x12, +0x77,0x35,0x74,0xc7,0x92,0xbb,0x5a,0x75,0xcf,0x56,0xdc,0x13, +0xa1,0xd7,0x74,0xbf,0x2a,0x5e,0xdb,0x5b,0xf4,0x66,0xfa,0x77, +0x2b,0x5e,0xb1,0x5f,0xeb,0x9a,0xfb,0x0b,0xdc,0x95,0xa8,0x5f, +0x5f,0xd9,0xbd,0x3d,0xf1,0x4e,0xb9,0xe7,0x12,0x57,0x73,0xdd, +0x95,0x4a,0xbc,0x0b,0xfd,0xb6,0xa5,0xed,0x08,0x5d,0x9b,0xca, +0xae,0x74,0xe0,0xd5,0xdc,0xef,0xaa,0xfb,0x3f,0x70,0x65,0x22, +0x77,0x67,0xd2,0x9d,0x87,0xee,0x89,0xb4,0xcc,0x5a,0xff,0xbc, +0xd2,0xaf,0x3d,0xec,0xd7,0x5d,0xf4,0x2e,0xf5,0x7f,0xcd,0xb8, +0xb6,0xa5,0xd7,0xda,0xee,0x99,0x66,0xbf,0xcd,0x61,0xff,0xe9, +0xc3,0xae,0xd6,0xc8,0x95,0xec,0xb9,0xfb,0xcb,0xee,0x18,0xf5, +0xaf,0xbb,0x6f,0xc9,0x2d,0xa6,0x7f,0xde,0xe5,0x7c,0xd1,0xcd, +0x38,0xc7,0x81,0x79,0xde,0xff,0x06,0xf1,0xe4,0x5b,0x8d +}; +const unsigned int font_plexSansJP_compressed_size=1536467; diff --git a/src/gui/font_plexSansKR.cpp b/src/gui/font_plexSansKR.cpp new file mode 100644 index 000000000..a83c6cdb6 --- /dev/null +++ b/src/gui/font_plexSansKR.cpp @@ -0,0 +1,51400 @@ +// papers/ibm-plex-license.txt +// File: 'IBMPlexSansKR-Regular.otf' (916088 bytes) +#include "fonts.h" +const unsigned char font_plexSansKR_compressed_data[]={ +0x78,0xda,0x9c,0xbb,0x75,0x58,0x1c,0xdb,0xd2,0x2f,0xdc,0xde, +0x4d,0x68,0x21,0xed,0x36,0x6d,0x03,0xc4,0x81,0x40,0xdc,0xdd, +0xdd,0x3d,0x21,0x40,0x02,0x09,0x16,0x20,0xee,0xee,0xee,0xee, +0xee,0x46,0x3c,0x10,0x77,0x77,0x77,0x77,0x17,0x92,0xf0,0x35, +0x6c,0xf6,0x39,0xfb,0xdc,0x7b,0xde,0xfb,0x7c,0xf7,0xf6,0x3c, +0xd5,0xab,0x56,0xad,0x5a,0x65,0xbf,0x9e,0xe9,0x55,0x7f,0x4c, +0xfd,0x26,0x4d,0xea,0x03,0x0c,0x30,0x08,0x80,0x81,0xc4,0xca, +0xd5,0xaa,0x59,0xf6,0x90,0xc9,0x9f,0x01,0x30,0xc2,0x1f,0xf0, +0x2d,0x57,0xa8,0x4a,0xe3,0x9a,0xd5,0x01,0x00,0x00,0x01,0xea, +0x67,0xa2,0x3b,0x12,0xd5,0x1b,0xd4,0x6f,0xdc,0x1d,0x0a,0x9b, +0x05,0x90,0x8b,0x9b,0x00,0x40,0x50,0x48,0xf5,0xc6,0x4d,0x2b, +0x45,0x21,0xcd,0x1b,0x02,0xe4,0xb9,0x61,0x00,0xe0,0x7b,0xbb, +0x7e,0xe3,0xe0,0xd0,0xe8,0x97,0xe1,0x57,0xdd,0x2d,0x1d,0x5c, +0xfd,0x0e,0xcd,0xea,0x37,0xaa,0x0e,0x53,0x2e,0x47,0xde,0xca, +0x9a,0x13,0x11,0x71,0xe1,0x89,0xe5,0xc3,0xa0,0xee,0x00,0x90, +0x6b,0x14,0x00,0xb6,0xe8,0x13,0x1d,0x15,0x1e,0x69,0x0d,0x8f, +0xd8,0xeb,0xae,0xfd,0x72,0xa9,0x58,0xb4,0x2b,0xa0,0xce,0x14, +0x7f,0xe0,0xee,0x2f,0xe2,0xce,0xfd,0xa3,0xe3,0x52,0x7a,0xdd, +0x72,0xda,0x4d,0x75,0xf7,0x47,0x03,0x40,0x5a,0xb9,0xb8,0xf0, +0x5e,0x89,0xc1,0xe7,0x1b,0x64,0x85,0xd4,0xc2,0xbd,0x61,0xf1, +0xe1,0x71,0x51,0xa7,0xcb,0x6f,0xbc,0xef,0xce,0xd3,0x5d,0xf3, +0xc7,0x12,0x13,0x92,0x53,0x32,0x47,0x00,0x65,0xdc,0xf8,0x11, +0x77,0xdd,0xea,0xe1,0xda,0x43,0x37,0x30,0xb7,0x01,0x6a,0xce, +0xaa,0x2c,0x7b,0x3d,0x5c,0x7b,0x21,0x40,0xe5,0x7d,0xee,0xfc, +0x34,0x00,0xb4,0x5f,0xe2,0x66,0x96,0x95,0x5d,0x25,0x2a,0x99, +0xbe,0xd0,0x9e,0x29,0xf3,0x05,0x80,0xe1,0xe7,0xae,0x04,0xb8, +0xd9,0xcf,0x7b,0x3a,0x6b,0xbc,0x13,0xf9,0x2b,0x36,0xb3,0xe8, +0x6f,0xdf,0x5c,0x2d,0xd0,0xe6,0xee,0x14,0x06,0x20,0xe0,0xaf, +0xcb,0xdd,0x87,0x94,0xfd,0x13,0xee,0xe6,0xd1,0x37,0xb3,0x68, +0x66,0xd1,0x5c,0x2d,0xb2,0x2d,0xfd,0xe3,0x0a,0x3e,0x07,0x00, +0x0d,0x80,0xe0,0xf3,0x2e,0x8b,0xc0,0xfd,0xc1,0x49,0x00,0x0a, +0x00,0xd0,0x18,0x28,0x2b,0xea,0xda,0x7f,0x8d,0x60,0x3b,0xa0, +0x0c,0x18,0xe2,0x4a,0x7d,0x51,0x18,0x85,0x5c,0xd3,0x70,0x96, +0x5d,0xd0,0xef,0xdf,0x36,0x6a,0x56,0xaa,0x6b,0x81,0x15,0x00, +0x2b,0x33,0x13,0x26,0x33,0xfd,0xc1,0xcf,0x48,0x59,0x70,0x21, +0x40,0xfc,0xe5,0x09,0x42,0xa0,0xdd,0x59,0x19,0x02,0x59,0xbb, +0xf2,0x82,0x4f,0xff,0xe5,0xbf,0xd0,0x5f,0xd1,0x65,0xdf,0xfd, +0xdc,0xd9,0x5f,0x3c,0x04,0xe0,0x40,0xd9,0x1c,0x1e,0x06,0x74, +0xa0,0x4a,0x0e,0x8f,0xfc,0x43,0x07,0x05,0x28,0xa0,0x43,0x0e, +0x8f,0xb9,0x7c,0x5c,0x0e,0x8f,0x03,0x0d,0x81,0x3e,0x39,0x3c, +0x01,0x90,0xc0,0xa9,0x1c,0xde,0x07,0x68,0x0e,0x5c,0xcb,0xe1, +0x7d,0x01,0x19,0x0c,0xca,0xe1,0x49,0x80,0x05,0xab,0xe5,0xf0, +0x14,0x30,0x09,0xfc,0xbb,0x36,0x34,0xa0,0x82,0xcf,0x73,0x78, +0xbf,0x7f,0xf8,0xcd,0xfd,0xef,0xd8,0xdc,0x1b,0x0b,0x41,0x39, +0x3c,0xe8,0xf2,0x7c,0x0e,0x0f,0x01,0x1c,0x14,0x98,0xc3,0xc3, +0xae,0xbc,0xa4,0x9b,0x05,0x88,0xf8,0xb8,0xd3,0x56,0x50,0xed, +0x1c,0x1e,0x04,0x2c,0x68,0x79,0x0e,0x0f,0x01,0x34,0x74,0x24, +0x87,0x87,0x81,0x12,0xd0,0xa5,0x1c,0x1e,0xf9,0x87,0x0e,0x0a, +0xa8,0xb0,0x6f,0x0e,0x8f,0xb9,0x7c,0x40,0x0e,0x8f,0x03,0x4b, +0xe0,0xf2,0x39,0x3c,0x01,0xc8,0xf0,0x83,0x1c,0xde,0x07,0xd8, +0x00,0xff,0xc8,0xe1,0x7d,0x81,0x10,0x64,0x65,0x0e,0x4f,0x02, +0xfe,0xc8,0xb5,0x1c,0x9e,0x02,0x2d,0x24,0x23,0x87,0xa7,0x81, +0x22,0x98,0x96,0xc3,0xfb,0xfd,0xc3,0x6f,0xee,0x7f,0xc7,0xe6, +0x26,0xe4,0x8f,0xd5,0xcf,0xe1,0x41,0x97,0x4f,0xce,0xe1,0x21, +0x20,0x10,0x9b,0x99,0xc3,0xc3,0xae,0x7c,0x5f,0xe5,0x84,0xc4, +0xde,0x49,0x31,0x9d,0xa3,0x53,0xac,0xd0,0x90,0xc2,0x25,0xac, +0xac,0x47,0xa3,0x72,0x42,0x52,0x62,0x90,0x55,0x31,0x36,0xd6, +0xca,0x5e,0x48,0xb6,0x92,0xa2,0x92,0xa3,0x92,0x7a,0x44,0x45, +0x06,0x65,0xad,0x36,0x88,0x8d,0xea,0x65,0x35,0x0e,0x8f,0x4f, +0xb6,0x6a,0x37,0x6a,0x14,0xd5,0xb9,0x7b,0x6c,0x78,0x92,0x2b, +0x2e,0xed,0x52,0xd6,0x4a,0xd6,0x42,0xed,0x46,0xa5,0x0b,0x07, +0x85,0x84,0x84,0x96,0x0e,0x0d,0x09,0x2d,0xdc,0x2c,0x2a,0x29, +0x39,0x26,0x21,0xde,0xca,0x96,0xfc,0x87,0xd2,0xdf,0xc6,0x56, +0x59,0x31,0xc9,0x56,0xb8,0x95,0x92,0x14,0x1e,0x19,0x15,0x17, +0x9e,0xd4,0xd5,0x4a,0xe8,0xf4,0xaf,0x30,0x0a,0xba,0xbe,0x3b, +0xc7,0x24,0xa7,0x44,0x25,0x45,0x45,0x5a,0x31,0xf1,0x56,0x5c, +0x78,0x7c,0x6f,0xab,0x4b,0xf7,0xa4,0x98,0xe4,0xc8,0x98,0x88, +0x14,0xd7,0x6e,0xb2,0xd5,0x33,0x21,0x29,0x36,0xb2,0x67,0x4c, +0x64,0x54,0x90,0x6b,0x36,0x32,0xc1,0x8d,0xba,0x66,0x7c,0x44, +0x50,0xdd,0x98,0xae,0x51,0x56,0xc5,0x8e,0x1d,0x63,0xe2,0xbb, +0x96,0xb6,0x1a,0x84,0x77,0x8f,0xb5,0x7a,0x84,0xc7,0x5b,0x91, +0x51,0x49,0x56,0x9d,0xf0,0xf0,0x78,0x57,0x14,0x13,0xe5,0x1a, +0xcd,0x16,0x36,0x4a,0x48,0x8e,0x0b,0x8f,0x8d,0x72,0x85,0xcd, +0xbb,0x77,0x71,0x7d,0x34,0x8e,0x89,0x2b,0x6d,0x55,0x8e,0x4e, +0x48,0x4a,0x88,0xef,0x6c,0xd5,0xce,0x9a,0x54,0x49,0x88,0x8e, +0x8a,0xb2,0xea,0x44,0x45,0x95,0x8e,0x4e,0x49,0x49,0x2c,0x15, +0x1c,0xdc,0xb3,0x67,0xcf,0xa0,0xe4,0xbf,0xbc,0x05,0x45,0x24, +0x04,0x75,0x4d,0xfa,0x87,0x3c,0xa6,0x63,0x9c,0x2b,0x8b,0x6b, +0x12,0xed,0x66,0x55,0x2d,0x21,0x3e,0xc5,0x6a,0x9c,0xd0,0x29, +0xa5,0x67,0x78,0x52,0x54,0x56,0x9a,0xb1,0x31,0x11,0x51,0xf1, +0xc9,0x6e,0x2e,0xdd,0xe3,0xb3,0x62,0x49,0x89,0x8e,0xb2,0x1a, +0xd7,0xac,0x63,0xd5,0x4f,0x8c,0x8a,0xff,0x4b,0xb9,0xce,0x5f, +0x0a,0x05,0xad,0x7f,0xd7,0xad,0x70,0x90,0x95,0x6d,0x2c,0x67, +0x6f,0x76,0xb5,0x7a,0x84,0xc7,0xc4,0x86,0x77,0x8c,0x8d,0xb2, +0x7a,0xc6,0xa4,0x44,0xbb,0xc5,0xab,0x56,0xb1,0xa1,0x15,0x9e, +0x52,0xca,0xca,0x89,0x23,0x39,0x22,0x29,0x26,0x31,0x25,0x39, +0x28,0x39,0x26,0x36,0x28,0x21,0xa9,0x73,0x70,0xfd,0x6a,0x75, +0xfe,0xe7,0x95,0xe4,0x98,0xb8,0x44,0xd7,0x52,0x6c,0x42,0xcf, +0xa8,0xa4,0x88,0x70,0xd7,0x41,0xf8,0xff,0x26,0xe9,0x9c,0x1c, +0x1b,0x9e,0x1c,0xed,0x86,0x1d,0xdf,0x3d,0xae,0xa3,0x1b,0x77, +0x9f,0xa8,0xa4,0x84,0xc8,0x84,0x94,0x94,0xff,0x94,0x00,0x95, +0x81,0x04,0x20,0x11,0xe8,0x0d,0x24,0x01,0x31,0x40,0x67,0x20, +0x1a,0x48,0x71,0x7f,0x46,0x42,0x81,0x10,0xa0,0x30,0x50,0xc2, +0xe5,0x6a,0x02,0x95,0x80,0xba,0xee,0x98,0xa5,0x95,0xe4,0xea, +0x05,0xb9,0x7c,0x45,0x20,0xd6,0xfd,0x58,0xff,0xd8,0x91,0x9c, +0x3d,0x8b,0x72,0xc7,0x28,0x77,0xec,0xe1,0xde,0x23,0x5d,0xcd, +0xbf,0xf7,0x36,0x70,0xb5,0xa3,0x80,0x5e,0x2e,0xd7,0x18,0x08, +0x07,0xe2,0xb3,0xb5,0x6b,0x03,0x8d,0xdc,0x4f,0x94,0xbb,0xbf, +0xbb,0xbb,0x1a,0xee,0xee,0xfa,0x4b,0xbb,0x74,0xce,0xf8,0xf7, +0x9e,0xbf,0x77,0x64,0xe9,0x97,0x76,0x63,0x0a,0x72,0x23,0x0b, +0x71,0xe3,0x2b,0x9d,0x1d,0x63,0xa8,0x2b,0x69,0x96,0xed,0x33, +0xd9,0x8d,0x25,0xc1,0xd5,0xb4,0xfe,0xa1,0xf3,0x3f,0x5b,0xfa, +0x5f,0x23,0xdb,0xe0,0xf2,0x31,0xd9,0x71,0x85,0xbb,0x94,0xe2, +0xda,0x0b,0x77,0x33,0x88,0x72,0x7f,0xf4,0xb2,0x22,0xeb,0xea, +0xca,0x12,0x80,0x4e,0xff,0xa5,0x1a,0x05,0x73,0xf2,0xee,0x9c, +0xbd,0x3b,0x25,0x3b,0x92,0xac,0xdc,0xb3,0xac,0x65,0xc5,0x12, +0x97,0xed,0xb3,0xb7,0xcb,0x75,0x71,0xf3,0x4c,0xca,0xd6,0x8a, +0x74,0xef,0x11,0xae,0xee,0x5f,0xf1,0x66,0xf9,0xec,0x99,0x6d, +0x2d,0xd6,0x5d,0xe9,0xe9,0x4a,0xb3,0xfc,0x06,0xe5,0x44,0x1b, +0xe9,0xae,0xfc,0x55,0xeb,0x9a,0xee,0x2c,0xc2,0x95,0xd7,0x75, +0x35,0xba,0xba,0x1a,0x59,0x28,0x74,0x74,0x3f,0x59,0x7e,0xba, +0xba,0xd5,0xc8,0xca,0x25,0x3c,0xbb,0x96,0x96,0x5b,0xff,0xf0, +0x6c,0xef,0x91,0xd9,0xf1,0x58,0x40,0x1d,0x77,0x9e,0x25,0xf9, +0x4b,0x2b,0xc6,0x95,0xa6,0xe4,0xac,0xfc,0xad,0xd9,0xc8,0xf5, +0x93,0x9c,0x1d,0x6d,0x56,0x3d,0xfe,0xd2,0x6c,0xee,0x5a,0xeb, +0x92,0x93,0x47,0x63,0x77,0x8c,0xcb,0x96,0x56,0x76,0xf1,0xce, +0x8a,0x36,0x2b,0xf6,0xce,0xd9,0x38,0xfe,0xbd,0x52,0xc5,0x95, +0x45,0xbb,0xbb,0xa3,0xb2,0x3d,0x66,0x8d,0xa5,0xb3,0x9f,0x8d, +0x14,0xb7,0x4e,0xa5,0x80,0x60,0xf7,0xd3,0x33,0xfb,0x13,0xe4, +0x7a,0xfa,0x67,0x6e,0x41,0x6e,0x5e,0x09,0xee,0xbd,0xab,0x6b, +0xf5,0xbf,0xeb,0xc7,0xb8,0x79,0xc6,0xe5,0xe8,0xc5,0x01,0x4d, +0x5c,0xad,0xbf,0xb0,0xaa,0x96,0x1d,0x45,0x4a,0x76,0x7c,0x59, +0xf8,0xa4,0xb8,0xda,0xe1,0xd9,0x08,0xfc,0x8d,0x66,0x6c,0x76, +0xad,0xa3,0xb2,0xeb,0xfc,0x17,0x2e,0xdd,0xb3,0x3d,0xff,0x95, +0x7d,0x4a,0x76,0xbc,0x59,0xbb,0x6b,0xba,0x11,0x5b,0x40,0x7d, +0xd7,0x73,0x54,0x76,0xbe,0xff,0xb6,0x5c,0xe7,0x3f,0x2c,0x64, +0xe1,0xfd,0xdf,0x9e,0xb7,0xc2,0xd9,0xdf,0x8b,0x7f,0x47,0xf6, +0x9f,0x7e,0xff,0xfd,0x6c,0x65,0xd5,0x3b,0x26,0xfb,0x79,0xef, +0x98,0x5d,0x69,0x2b,0x1b,0xf1,0xac,0x38,0xfe,0x7a,0xf2,0xaa, +0xb9,0xa8,0x36,0xcc,0xe6,0x53,0xdc,0x1a,0x58,0xff,0x4b,0x3d, +0x92,0x5d,0x9b,0x59,0xcf,0x50,0x62,0xf6,0x37,0x2e,0x28,0x3b, +0x86,0xac,0xfa,0x65,0xe1,0xd1,0xd9,0x5d,0xaf,0xef,0xee,0xaf, +0xf3,0xff,0xb4,0x27,0x39,0x1b,0xc5,0xc4,0x9c,0x98,0x62,0xdd, +0xd5,0x9e,0xd9,0x59,0x46,0xb8,0x91,0xfc,0x95,0x41,0xf8,0xff, +0x0f,0x9d,0xce,0xee,0x18,0x9b,0x3d,0x8b,0xce,0xa9,0x76,0xbc, +0x5b,0xef,0x38,0x37,0xd7,0xbf,0xea,0xdd,0x27,0x7b,0x4c,0xc8, +0x46,0x3e,0x25,0xfb,0x19,0xfc,0x9f,0x75,0xb2,0x4f,0x20,0x40, +0xf6,0x79,0xa6,0x60,0xf6,0xc9,0x04,0x68,0x71,0xd8,0x7d,0xa7, +0xbb,0xef,0xc0,0x16,0x89,0x59,0xf7,0x6c,0x39,0x0c,0xe4,0xca, +0x96,0x23,0x2d,0x66,0xb9,0x27,0x81,0x45,0x60,0xd6,0xe9,0x64, +0x11,0x30,0x00,0x58,0x0e,0xac,0x06,0xd6,0xb9,0x5f,0xea,0xad, +0xc0,0x0e,0x60,0x17,0xb0,0xdf,0x3d,0x97,0x7c,0x83,0x8e,0x41, +0xe7,0xa1,0x3b,0x16,0x6e,0xe5,0xb2,0x44,0x4b,0xb1,0x3c,0x96, +0xd7,0x0a,0xb4,0x42,0xac,0x30,0xab,0x8c,0x55,0xce,0xaa,0x62, +0xd5,0xb4,0x12,0xad,0xde,0xd6,0x68,0x6b,0xb5,0xb5,0xce,0x86, +0x6d,0x1f,0x9b,0xb3,0x45,0xdb,0xb1,0x03,0xed,0x02,0x76,0x13, +0xbb,0x9d,0x1d,0x63,0xf7,0xb6,0x67,0xdb,0x17,0xed,0xcb,0x0e, +0xe0,0xc0,0x0e,0xe1,0xf8,0x3a,0x8c,0xc3,0x3a,0xaa,0x63,0x38, +0x96,0x13,0xe0,0x14,0x74,0x82,0x9c,0x62,0x4e,0x59,0xa7,0x91, +0x13,0xee,0x74,0x76,0xba,0x3a,0x43,0x9d,0x91,0xce,0x6c,0x67, +0xb9,0xf3,0xce,0xcb,0x7a,0xf3,0xfb,0x7f,0x0e,0x80,0x03,0x6a, +0x07,0x4c,0x09,0x58,0x1c,0xb0,0x3a,0x60,0x6b,0xc0,0x8e,0x80, +0x7d,0x01,0x07,0x02,0x4e,0x04,0x9c,0x0a,0xb8,0x10,0xf0,0x34, +0x10,0x0b,0x64,0x02,0xf5,0x40,0x23,0xb0,0x42,0x60,0xa5,0xc0, +0xf0,0xc0,0xa8,0xc0,0x2e,0x81,0x71,0x79,0xea,0xe4,0x19,0x18, +0x54,0x3a,0x04,0x0e,0xc9,0x1d,0x22,0x84,0xe8,0x85,0x23,0x0a, +0x4f,0x08,0x35,0x42,0x07,0x86,0xa6,0x85,0x0d,0x0b,0x3b,0x19, +0x76,0x3e,0xec,0x52,0xd8,0xd5,0xb0,0xeb,0x61,0x77,0xd6,0x45, +0xad,0x4b,0xd8,0x30,0x7e,0xc3,0x8c,0x0d,0xcb,0x36,0x6c,0xdb, +0x28,0x6d,0xf4,0xdf,0xf4,0x7a,0x33,0xb0,0x79,0xe7,0xe6,0x43, +0x5b,0xcb,0x6c,0xad,0xb3,0x3d,0x71,0x7b,0xbf,0xed,0xa3,0xb6, +0x4f,0xdd,0xfe,0x3d,0x15,0x49,0x2d,0x92,0x5a,0x21,0x75,0x70, +0xea,0xdc,0xd4,0xb4,0xd4,0x93,0x3b,0x2e,0xef,0x78,0xb8,0x73, +0xde,0xce,0x15,0xbb,0xf5,0xdd,0xc5,0xf7,0x15,0xd9,0x57,0x7e, +0xff,0xbc,0xfd,0x2b,0xf7,0xaf,0xda,0xbf,0x75,0xff,0xce,0xfd, +0xe7,0xd2,0xfc,0xd3,0x8a,0xa5,0x45,0xa4,0xf5,0x4c,0x1b,0x98, +0x36,0x35,0x6d,0x5a,0xda,0xd2,0xb4,0xcd,0x69,0x69,0x69,0xef, +0xd2,0xe1,0x74,0x24,0xdd,0x4c,0xb7,0xd3,0x4b,0xa7,0x57,0x49, +0x6f,0x90,0x9e,0x92,0x3e,0xf1,0x50,0xfa,0xa1,0x53,0x87,0xe5, +0xc3,0xce,0xc9,0x22,0x27,0x6b,0x9f,0xfc,0x75,0x0a,0x3f,0xdd, +0xef,0xf4,0xa4,0x33,0x55,0xce,0x34,0x3a,0x7b,0xfa,0xec,0xa3, +0x0b,0xea,0x85,0xe0,0x0b,0xd7,0x2f,0xbc,0xba,0xd4,0xe1,0x52, +0xdf,0xcb,0xfe,0x97,0xcb,0x5f,0x59,0x77,0x25,0xed,0xda,0xd2, +0x0c,0xe8,0x8f,0xf2,0x27,0xec,0x4f,0x95,0x3f,0x35,0x32,0xdb, +0x66,0x3e,0xca,0x7c,0x9a,0x99,0x99,0x7d,0x4e,0x5d,0xe2,0x22, +0xb4,0xd6,0x45,0x68,0x13,0x90,0xea,0x22,0xb4,0xe7,0x5f,0x08, +0x5d,0xb7,0x20,0xcb,0xc7,0x62,0x2d,0xd9,0xd2,0x2d,0xcb,0x0a, +0x70,0x11,0x0a,0xb5,0x4a,0x67,0x23,0x54,0xdd,0x45,0x28,0xc5, +0x1a,0xf8,0x1f,0x08,0xd9,0xd9,0x08,0x35,0xb6,0x5b,0xdb,0x1d, +0xec,0x44,0x7b,0x52,0x0e,0x42,0x90,0x83,0x67,0x23,0x94,0xdb, +0x45,0xc8,0x93,0x8d,0x50,0x1e,0x17,0xa1,0x22,0x4e,0x19,0x17, +0xa1,0x0e,0x4e,0xa4,0xd3,0xc5,0x19,0xe2,0x8c,0xf8,0x17,0x42, +0xf9,0xfc,0x3b,0xf8,0x67,0x06,0x90,0x2e,0x42,0x8b,0x02,0x96, +0x06,0x6c,0x09,0x48,0x0d,0xd8,0x1b,0x90,0x1e,0x70,0xd4,0x45, +0xe8,0xac,0x8b,0x10,0x1a,0x48,0xff,0x0b,0xa1,0x0e,0x81,0x11, +0x81,0x9d,0x03,0x63,0x5d,0x84,0x7a,0x04,0x95,0x72,0xdf,0x30, +0xb9,0x42,0xb8,0x10,0xb1,0x70,0xe1,0xc2,0x91,0xa1,0x40,0x68, +0xc3,0xd0,0xcd,0x61,0x83,0xc2,0x46,0x85,0x9d,0xcb,0x41,0xe8, +0xd6,0x3a,0x60,0x5d,0xa7,0x75,0x89,0x1b,0x26,0x6c,0x98,0xb9, +0x61,0xf9,0x86,0xed,0x1b,0xe5,0x8d,0x01,0x9b,0xde,0x6c,0x06, +0x37,0xef,0xda,0x7c,0x78,0x6b,0xd9,0xad,0x75,0xb7,0x77,0xdb, +0xde,0x7f,0xfb,0xe8,0xed,0xd3,0xb6,0xff,0x48,0x45,0x53,0x8b, +0xa6,0x56,0x4c,0x1d,0x92,0x3a,0x2f,0x35,0x3d,0xf5,0xd4,0x8e, +0x2b,0x3b,0x1e,0xed,0x9c,0xbf,0x73,0xe5,0x6e,0xcf,0xee,0x12, +0xfb,0x8a,0xee,0xab,0xb0,0x7f,0xbe,0x8b,0xd0,0xea,0xfd,0xdb, +0xf6,0xef,0xda,0x7f,0x3e,0x2d,0x20,0xad,0x78,0x5a,0x64,0x5a, +0xaf,0xb4,0x41,0x2e,0x42,0xd3,0xd3,0x96,0xa5,0x6d,0x49,0x4b, +0x4f,0x7b,0xef,0x22,0x84,0xa6,0x5b,0xe9,0x4e,0x7a,0x99,0xf4, +0xaa,0xe9,0x0d,0xd3,0xbb,0xa7,0x4f,0x3a,0x74,0xe0,0xd0,0xe9, +0xc3,0xca,0x61,0xef,0xc9,0xa2,0x27,0xeb,0x9c,0xfc,0x7d,0x8a, +0x38,0xdd,0xff,0xf4,0xe4,0x33,0x55,0xcf,0x34,0x3e,0x7b,0xe6, +0xec,0xe3,0x0b,0xda,0x85,0x90,0x0b,0x37,0x2e,0xbc,0xbe,0x14, +0x7e,0xa9,0xdf,0xe5,0x80,0xcb,0x15,0xae,0xac,0xbf,0x92,0x9e, +0x01,0xfe,0xf1,0xfb,0x13,0xf2,0xa7,0xe8,0x9f,0xea,0x99,0x60, +0xe6,0xfd,0xcc,0x27,0x99,0x99,0x99,0x0f,0x32,0xf7,0x67,0xee, +0x29,0xb4,0x27,0x73,0x07,0x00,0x64,0x6e,0x29,0xb4,0xb9,0xd0, +0xa6,0xcc,0xa9,0x99,0x29,0x05,0x56,0x15,0x58,0x54,0x60,0xf6, +0xfd,0x2e,0xf7,0x63,0x00,0xe0,0x7e,0x87,0xfb,0xed,0xee,0xb7, +0xb9,0xdf,0x9a,0xae,0x71,0xdf,0x6d,0xbf,0xe8,0x32,0x74,0x71, +0xba,0x28,0xcd,0xd0,0x24,0x8d,0xdf,0xbb,0x7d,0xef,0xe6,0xbd, +0x61,0xf7,0x06,0x52,0x03,0xa8,0x7e,0xee,0x81,0x3f,0x9e,0xea, +0x42,0x55,0xa6,0xca,0x52,0x65,0xa8,0x62,0x77,0x7f,0x92,0x77, +0xc9,0x3b,0xe4,0x16,0x72,0x33,0xb9,0x81,0x5c,0x47,0xae,0x76, +0x5b,0x83,0x45,0xe4,0x02,0x72,0x3e,0x39,0x9b,0x9c,0x45,0xce, +0x24,0xa7,0x90,0xe3,0xc9,0xde,0xd9,0x0d,0x43,0x14,0x59,0x9f, +0xac,0x4b,0x96,0x21,0x0b,0xfb,0x3e,0xf7,0x3d,0x7a,0xa7,0x3b, +0xd1,0xda,0x6d,0x2e,0x2e,0xf8,0x8c,0x75,0xef,0xfd,0x7c,0x52, +0x7c,0x92,0x7c,0xe2,0x7d,0x62,0x7d,0xa2,0x6f,0x9e,0xf5,0x89, +0xbc,0xb9,0xcd,0xa7,0xb0,0x4f,0x7e,0x1f,0xc3,0xc7,0x43,0xfc, +0x22,0x32,0x88,0xbb,0xc4,0x1d,0xe2,0x36,0x71,0xeb,0x46,0x7d, +0xf4,0xd6,0xc5,0x8e,0x00,0x70,0x7e,0x06,0x00,0xfc,0x4e,0x3b, +0xd7,0xfb,0xf7,0xf3,0x8c,0xd6,0x19,0xf9,0x7e,0x7e,0xcf,0xf8, +0x96,0xf1,0x39,0xe3,0x7d,0xc6,0xdb,0x8c,0xd7,0x19,0xaf,0x32, +0x5e,0x00,0x40,0x94,0xdb,0xdb,0x45,0x3e,0x74,0xe9,0xae,0x4b, +0xdb,0x01,0x20,0xe2,0xb7,0x4b,0x8b,0x00,0xa0,0xe3,0x0f,0x97, +0x72,0xbb,0x44,0x03,0x40,0xb8,0xab,0x97,0xd5,0xbf,0x86,0xa7, +0xb9,0xb4,0xd1,0xa5,0xfa,0x2e,0x65,0xb5,0xb2,0x11,0x6e,0xbf, +0x28,0x03,0x40,0xbb,0xc1,0xd5,0xf3,0xb6,0x1b,0xe4,0x8e,0x03, +0x5c,0x6a,0xe3,0x52,0x6d,0x97,0x6a,0x56,0x6b,0xd5,0xae,0x86, +0x3b,0x56,0x76,0x29,0xac,0xde,0x9e,0x76,0xa1,0xee,0xe8,0x76, +0x76,0xed,0xdc,0x5e,0xac,0x9d,0x03,0x00,0x6d,0xdc,0xfe,0xb6, +0xcd,0x5c,0x00,0x68,0x79,0xd3,0xa5,0x29,0x2e,0x11,0xee,0x6f, +0xd8,0x31,0x97,0x2a,0x00,0x40,0x73,0xb7,0x17,0x6e,0x5e,0x0c, +0x00,0x9a,0xad,0x71,0xc9,0xed,0x71,0x9b,0xba,0xf1,0xf9,0xed, +0x0a,0x3e,0x1d,0x9c,0x1a,0xbc,0x3d,0x78,0x6b,0x50,0xc6,0xdf, +0xdd,0xe6,0xdf,0x17,0x38,0x03,0xf8,0x2f,0x17,0x38,0xea,0x3f, +0x66,0xc3,0x80,0xff,0xe1,0x02,0xe3,0x81,0xff,0xc3,0x05,0x36, +0xf9,0x2f,0xb2,0x2a,0x6e,0x2f,0xf7,0xbf,0x4b,0x4b,0x65,0xdf, +0xcb,0x01,0xff,0x17,0x17,0xc8,0xbb,0x24,0xff,0x1f,0xd6,0xdd, +0xde,0x1a,0x3c,0xe9,0xb6,0x9e,0xee,0x88,0xa9,0x2e,0xdd,0x76, +0xbb,0x6b,0xb7,0x22,0xbe,0x97,0xdd,0xe7,0xed,0x20,0x00,0x70, +0x98,0x4b,0xae,0x9c,0x73,0xbb,0x7d,0xbe,0x8c,0x4b,0x6e,0xff, +0xcb,0xff,0x01,0x00,0xc9,0x45,0x4d,0x76,0xd1,0xd0,0x3a,0x01, +0x80,0xdd,0xe6,0x2f,0x5b,0xfe,0xae,0xcc,0xdf,0xf5,0xe7,0xef, +0xea,0x04,0xe4,0x74,0xd4,0x01,0xae,0xef,0x80,0x90,0x1c,0x7e, +0x54,0x0e,0xb9,0xd5,0x0c,0x70,0x51,0x29,0x58,0xc2,0xa5,0xb3, +0x00,0x50,0xe2,0x2d,0x00,0x94,0xaa,0x03,0x00,0x65,0x5d,0x04, +0xcb,0xb9,0x6b,0x15,0x47,0x00,0x40,0xd5,0xf7,0x00,0x50,0xdd, +0xcd,0xb4,0x96,0xbf,0xdb,0xba,0x27,0x01,0x40,0xbd,0x1a,0xff, +0x8c,0xba,0x11,0xd4,0xc8,0x45,0xd3,0x3d,0x8a,0x74,0x0e,0x8a, +0x0e,0xca,0x7a,0xb1,0x77,0x77,0x5f,0xf9,0x3d,0x83,0x7a,0x02, +0xc3,0x82,0x7a,0x07,0x4d,0x05,0x46,0x07,0xed,0x02,0xa6,0x01, +0xd3,0x83,0x4e,0x03,0x33,0x80,0x99,0x41,0x67,0x82,0xce,0x16, +0x6a,0x10,0x74,0x23,0xe8,0x66,0xd0,0xad,0xa0,0xdb,0xc1,0x06, +0x30,0x2b,0xb8,0x66,0xa1,0x4b,0x85,0x2e,0x07,0xd7,0x0a,0xae, +0x0d,0xac,0x72,0x7f,0x1f,0xef,0x00,0x77,0x7d,0x3f,0xf9,0x7e, +0x06,0xee,0xb1,0x1e,0xd6,0x00,0xee,0x03,0x0f,0x80,0x87,0xc0, +0x23,0xe0,0xb1,0xef,0x17,0xd6,0x64,0x2d,0xd6,0x06,0x9e,0x00, +0x4f,0x81,0x67,0xc0,0x73,0xe0,0x05,0xf0,0x12,0x78,0x05,0xbc, +0x66,0x1d,0xe0,0x0d,0xf0,0x16,0x78,0x07,0xbc,0x07,0x3e,0xb0, +0x5e,0xd6,0x1f,0xf8,0xc8,0x06,0xf8,0x7e,0x05,0x3e,0x01,0x9f, +0xd9,0x40,0x36,0x0f,0x9b,0x97,0xcd,0xc7,0xe6,0x67,0x0b,0xb0, +0x05,0x81,0x2f,0xc0,0x57,0xb6,0x10,0xf0,0x0d,0xf8,0x0e,0xfc, +0xf0,0xfd,0xc6,0x06,0xb1,0xc1,0xbe,0xdf,0x7d,0x7f,0xb0,0x21, +0xc0,0x4f,0x20,0x83,0x2d,0xcc,0x86,0x02,0xbf,0xd8,0x30,0xb6, +0x88,0xef,0x4f,0xe0,0xb7,0x6f,0x06,0x5b,0x94,0x2d,0xc6,0x16, +0x67,0x4b,0xb0,0x25,0x7d,0x7f,0xf9,0xfe,0xf6,0xfd,0xc3,0x96, +0x02,0xfe,0xf8,0x66,0x02,0x99,0x6c,0x69,0xb6,0x0c,0x5b,0x96, +0x2d,0xc7,0x96,0x67,0x2b,0xb8,0x8d,0x79,0x45,0xb6,0x12,0x5b, +0x19,0x04,0xd9,0x2a,0x6c,0x55,0xb6,0x1a,0x08,0xb1,0xd5,0xd9, +0x1a,0x6c,0x4d,0xb6,0x16,0x5b,0x9b,0xad,0xc3,0xd6,0x25,0xdd, +0x1e,0x1d,0x44,0x40,0x94,0x6d,0x41,0x82,0x20,0x46,0x42,0x6c, +0x4b,0x10,0x07,0x09,0x12,0x06,0x7d,0xd8,0x56,0x6c,0x6b,0xb6, +0x0d,0xdb,0x96,0x6d,0x07,0xe6,0x02,0x7d,0x41,0x12,0xa4,0x40, +0x1a,0x64,0x40,0x3f,0x12,0x61,0xdb,0x83,0xb9,0x41,0x16,0xe4, +0x40,0x1e,0x14,0xd8,0x0e,0x6c,0x38,0x28,0xb2,0x1d,0xd9,0x08, +0x12,0x05,0x25,0x36,0x92,0x8d,0x62,0x3b,0xb1,0x9d,0xd9,0x68, +0x36,0x86,0xed,0x02,0xca,0xa0,0xc2,0x76,0x05,0x55,0x50,0x03, +0x75,0x36,0x96,0x8d,0x63,0xe3,0x49,0x8c,0x4d,0x20,0x71,0xd0, +0x03,0x1a,0xa0,0xc9,0x26,0x82,0x16,0xdb,0x8d,0x4d,0x02,0x6d, +0xd0,0x21,0x09,0x36,0x99,0x4d,0x21,0x7d,0xd8,0xee,0x6c,0x0f, +0xd0,0x0b,0xfa,0x83,0x01,0x6c,0x4f,0x30,0x10,0xcc,0x03,0xe6, +0x25,0x73,0x81,0xf9,0xd8,0x5e,0x60,0x7e,0xd2,0x97,0xed,0x0d, +0x16,0x20,0x49,0xb6,0x0f,0xdb,0x17,0x2c,0xc8,0xf6,0x63,0xfb, +0x93,0x14,0x58,0x88,0x1d,0xc0,0x0e,0x64,0x07,0xb1,0x83,0xd9, +0x21,0xec,0x50,0x76,0x18,0x49,0x83,0x41,0xec,0x70,0x30,0x18, +0x0c,0x21,0x19,0x76,0x04,0x3b,0x92,0x1d,0xc5,0x8e,0x66,0xc7, +0xb0,0x63,0xc1,0xc2,0x60,0x28,0x3b,0x8e,0x1d,0x0f,0x86,0xb1, +0x13,0xd8,0x89,0x60,0x11,0xb0,0x28,0xe9,0x07,0x16,0x23,0x73, +0x83,0xc5,0xd9,0x49,0x24,0x0b,0x96,0x00,0x4b,0x82,0xa5,0xd8, +0xc9,0x60,0x69,0x76,0x0a,0x58,0x06,0x2c,0x4b,0x72,0xec,0x54, +0xb0,0x1c,0xc9,0x93,0x02,0x58,0x1e,0xac,0xc0,0x4e,0x63,0xa7, +0x83,0x15,0xd9,0x19,0xec,0x4c,0x52,0x04,0x2b,0xb1,0xb3,0xc0, +0xca,0xec,0x6c,0x76,0x0e,0x3b,0x97,0x9d,0xc7,0xce,0x77,0xbf, +0x6f,0x55,0xd9,0x05,0x60,0x35,0xb0,0x3a,0x58,0x03,0xac,0xc9, +0x2e,0x64,0x17,0xb1,0x8b,0xd9,0x25,0xec,0x52,0xb0,0x16,0x29, +0xb1,0xcb,0xd8,0xe5,0x60,0x6d,0x76,0x05,0xbb,0x92,0x94,0xc1, +0x3a,0xec,0x2a,0xb0,0x2e,0xbb,0x9a,0x5d,0xc3,0xae,0x65,0xd7, +0xb1,0xeb,0x49,0x05,0xac,0xc7,0x6e,0x20,0x55,0xb0,0x3e,0xd8, +0x80,0xdd,0xc8,0x6e,0x62,0x37,0xb3,0x5b,0xd8,0xad,0xec,0x36, +0xb0,0x21,0xd8,0x88,0xdd,0xce,0xa6,0x82,0x8d,0xd9,0x1d,0xec, +0x4e,0x52,0x03,0x9b,0xb0,0xbb,0x48,0x9d,0xdd,0xcd,0xee,0x61, +0xf7,0xb2,0xfb,0xd8,0xfd,0x60,0x53,0xb0,0x19,0x9b,0x06,0x36, +0x27,0x3d,0x60,0x0b,0x36,0x9d,0x3d,0xc0,0x1e,0x64,0x0f,0xb1, +0x87,0xd9,0x23,0x60,0x4b,0xd2,0x60,0x8f,0xb2,0xc7,0xc0,0x56, +0xec,0x71,0xf6,0x04,0x69,0x82,0xad,0xd9,0x93,0xec,0x29,0xf6, +0x34,0x7b,0x86,0x3d,0xcb,0x9e,0x63,0xcf,0x83,0x6d,0xc0,0xb6, +0xec,0x05,0xb0,0x1d,0x7b,0x11,0x6c,0xcf,0x5e,0x62,0x2f,0xb3, +0x57,0xd8,0xab,0xec,0x35,0xf6,0x3a,0xd8,0x01,0x0c,0x67,0x6f, +0xb0,0x37,0xc1,0x8e,0xec,0x2d,0xf6,0x36,0x18,0x01,0x46,0x82, +0x51,0x60,0x27,0xf6,0x0e,0x69,0xb1,0x77,0xd9,0x7b,0x60,0x67, +0x30,0x1a,0x8c,0x61,0xef,0x83,0x5d,0xd8,0x07,0x60,0x57,0x30, +0x16,0x8c,0x63,0x1f,0xb2,0x8f,0x48,0x9b,0x7d,0x0c,0xc6,0x83, +0x09,0xec,0x13,0xf6,0x29,0x98,0xc8,0x3e,0x63,0x9f,0x93,0x0e, +0xd8,0x8d,0x7d,0xc1,0xbe,0x64,0x5f,0xb1,0xaf,0xd9,0x37,0xec, +0x5b,0xf6,0x1d,0xe9,0x25,0xfd,0xd9,0xf7,0x64,0x00,0x98,0x04, +0x26,0xb3,0x1f,0xd8,0x8f,0xec,0x27,0xf6,0x33,0xfb,0x85,0xfd, +0x0a,0xa6,0x90,0x81,0xec,0x37,0xf6,0x3b,0x99,0x87,0xfd,0xc1, +0xfe,0x24,0xf3,0x92,0xf9,0xd8,0x0c,0xf6,0x17,0xfb,0x9b,0xfd, +0xc3,0x66,0x72,0x00,0x07,0x92,0xf9,0xc9,0x02,0x1c,0x04,0x76, +0x07,0x7b,0x90,0x05,0x39,0x98,0x43,0x38,0x94,0xc3,0x38,0x9c, +0x23,0xc0,0x9e,0x60,0x2f,0xce,0x87,0xcb,0x05,0xf6,0xe6,0x7c, +0x39,0x92,0x2c,0x04,0xf6,0xe1,0x28,0x32,0x88,0xa3,0x39,0x86, +0xf3,0xe3,0x72,0x73,0x2c,0xd8,0x17,0xec,0xc7,0x71,0x60,0x7f, +0x32,0x18,0x1c,0xc0,0xf1,0x9c,0xc0,0x89,0x9c,0xc4,0xc9,0x9c, +0x02,0x0e,0x24,0x43,0x38,0x95,0xd3,0xc0,0x41,0x9c,0xce,0x79, +0x38,0x03,0x1c,0xcc,0x99,0x9c,0xc5,0xd9,0x64,0x61,0xce,0xe1, +0xbc,0x9c,0x3f,0x38,0x04,0x1c,0xca,0x05,0x90,0xa1,0x5c,0x20, +0x19,0xc6,0xe5,0xe1,0xf2,0x72,0xf9,0xb8,0xfc,0x5c,0x01,0xae, +0x20,0x38,0x0c,0x1c,0xce,0x15,0xe2,0x82,0xc0,0x11,0x5c,0x30, +0x59,0x04,0x1c,0x09,0x8e,0x02,0x47,0x83,0x63,0xc8,0xa2,0x64, +0x31,0x2e,0x84,0x2b,0x0c,0x8e,0x05,0xc7,0x81,0xe3,0xb9,0x50, +0x70,0x02,0x17,0x06,0x4e,0x24,0x8b,0x83,0x93,0xb8,0x22,0xe0, +0x64,0xb2,0x04,0x38,0x05,0x9c,0x4a,0x96,0xe4,0x8a,0x72,0xc5, +0xc0,0x69,0x5c,0x71,0xae,0x04,0x57,0x92,0x2c,0xc5,0x95,0xe2, +0x4a,0x73,0x65,0xc8,0xd2,0x5c,0x59,0xae,0x1c,0x57,0xde,0x7d, +0x6b,0x96,0xe5,0x2a,0x90,0xe5,0xb8,0x8a,0xe0,0x74,0xae,0x12, +0x57,0x99,0xab,0xc2,0x55,0xe5,0xaa,0x71,0xd5,0xc1,0x19,0xe0, +0x4c,0xae,0x06,0x57,0x13,0x9c,0xc5,0xd5,0xe2,0x6a,0x83,0xb3, +0xc1,0x39,0x64,0x79,0x70,0x2e,0x57,0x87,0xac,0xc0,0xd5,0xe5, +0xea,0x71,0xf5,0xc1,0x79,0xe0,0x7c,0xae,0x01,0xb8,0x00,0x5c, +0xe8,0x9e,0xa2,0x17,0x93,0x15,0xb9,0x86,0x64,0x25,0x70,0x09, +0x59,0x19,0x5c,0x0a,0x2e,0x03,0x97,0x73,0x8d,0xc0,0x15,0x5c, +0x63,0xae,0x09,0x59,0x05,0x5c,0xc9,0x35,0x05,0x57,0x71,0xcd, +0xb8,0xe6,0x5c,0x0b,0xae,0x25,0xd7,0x0a,0x5c,0x0d,0xae,0xe1, +0x5a,0x83,0x6b,0xc1,0x75,0xe0,0x7a,0xb2,0x2a,0x59,0x8d,0x6b, +0x03,0x6e,0xe0,0xda,0x72,0xed,0xc0,0x8d,0xe0,0x26,0xb2,0x3a, +0xd7,0x1e,0xdc,0xcc,0x75,0xe0,0xc2,0xc1,0x2d,0xe0,0x56,0xae, +0x23,0x17,0x41,0xd6,0xe0,0x22,0xb9,0x28,0xb2,0x26,0xd7,0x09, +0xdc,0x06,0x6e,0xe7,0x3a,0x83,0xa9,0xe0,0x0e,0x70,0x27,0x17, +0xcd,0xc5,0x70,0x5d,0xc8,0x5a,0x5c,0x57,0x2e,0x16,0xdc,0x05, +0xee,0x06,0xf7,0x70,0x71,0x64,0x6d,0x2e,0x9e,0x4b,0x20,0xeb, +0x80,0x7b,0xc1,0x7d,0x64,0x5d,0xae,0x37,0x59,0x8f,0xeb,0xc3, +0xf5,0xe5,0xfa,0x71,0xfd,0xb9,0x01,0xdc,0x40,0x70,0x3f,0x37, +0x88,0x1b,0xcc,0x0d,0x01,0xd3,0xc8,0xfa,0xdc,0x54,0x6e,0x1a, +0x37,0x9d,0x9b,0xc1,0xcd,0xe4,0x66,0x81,0xe9,0xe0,0x01,0xf0, +0x20,0x37,0x1b,0x3c,0xc4,0xcd,0x21,0x1b,0x90,0x0d,0xc1,0xc3, +0xdc,0x5c,0x6e,0x1e,0x37,0x9f,0x5b,0xc0,0x2d,0xe4,0x16,0x71, +0x8b,0xc1,0x23,0xe0,0x51,0x6e,0x09,0x78,0x0c,0x3c,0x0e,0x9e, +0x20,0x1b,0x81,0x27,0xb9,0xa5,0xe0,0x29,0x6e,0x19,0xb7,0x1c, +0x3c,0x0d,0x9e,0x21,0x1b,0x73,0x2b,0xc0,0xb3,0xdc,0x4a,0x6e, +0x15,0xd9,0x84,0x6c,0xca,0xad,0xe6,0xd6,0x70,0x6b,0xb9,0x75, +0xdc,0x7a,0x6e,0x03,0xb7,0x11,0x3c,0x47,0x36,0xe3,0x36,0x81, +0xe7,0xc9,0xe6,0xe0,0x05,0x6e,0x33,0xb7,0x85,0xdb,0x4a,0xb6, +0xe0,0xb6,0x71,0xdb,0xc1,0x8b,0x64,0x4b,0x2e,0x95,0xdb,0x01, +0x5e,0xe2,0x76,0x72,0xbb,0xc8,0x56,0xe0,0x65,0x6e,0x37,0xb7, +0x87,0xdb,0xcb,0xed,0xe3,0xf6,0x73,0x69,0x5c,0x3a,0xd9,0x9a, +0x6c,0xc3,0x1d,0x00,0xaf,0x80,0x57,0xc1,0x6b,0xdc,0x41,0xee, +0x10,0x77,0x18,0xbc,0xce,0x1d,0xe1,0x8e,0x82,0x37,0xb8,0x63, +0xdc,0x71,0xee,0x04,0x77,0x92,0x3b,0xc5,0x9d,0x26,0xdb,0x92, +0xed,0xb8,0x9b,0xdc,0x2d,0xee,0x36,0x77,0x87,0xbb,0xcb,0xdd, +0x03,0x6f,0x82,0xb7,0xb8,0xfb,0xdc,0x03,0xf0,0x36,0xd9,0x1e, +0xbc,0x03,0xde,0x05,0xef,0x71,0x0f,0xc9,0x0e,0xdc,0x23,0x32, +0x9c,0x7b,0xcc,0x3d,0x21,0x3b,0x82,0xf7,0xc1,0x07,0xdc,0x53, +0xf0,0x21,0xf7,0x0c,0x7c,0x04,0x3e,0x06,0x9f,0x70,0xcf,0xc1, +0xa7,0xdc,0x0b,0x32,0x02,0x7c,0x06,0x3e,0xe7,0x5e,0x72,0xaf, +0xc0,0x17,0xdc,0x6b,0xee,0x0d,0x19,0x09,0xbe,0xe4,0xde,0x72, +0xef,0xb8,0xf7,0xdc,0x07,0xee,0x23,0xf7,0x89,0xfb,0xec,0x9e, +0xab,0x3a,0x71,0x5f,0xc8,0xce,0xe0,0x2b,0xf0,0x35,0xf7,0x95, +0xfb,0xc6,0x7d,0xe7,0x7e,0x70,0x3f,0xb9,0x0c,0xf0,0x0d,0xf8, +0x96,0xfb,0xc5,0xfd,0x06,0xdf,0x71,0x7f,0xb8,0x4c,0x32,0x9a, +0x8c,0xe1,0x01,0x1e,0xe4,0x21,0x1e,0xe6,0x11,0x1e,0xe5,0x31, +0xb2,0x0b,0xd9,0x95,0xc7,0x79,0x02,0x7c,0x0f,0x7e,0xe0,0x7d, +0xf8,0x5c,0xbc,0x2f,0x4f,0xf2,0x14,0x4f,0x83,0x1f,0xc9,0x58, +0x9e,0xe1,0xfd,0xc0,0x4f,0x7c,0x6e,0x9e,0x25,0xe3,0xc0,0xcf, +0x3c,0xc7,0xf3,0xbc,0xc0,0x8b,0xbc,0xc4,0xcb,0xbc,0x02,0x7e, +0x01,0xbf,0xf2,0x2a,0x19,0x4f,0x26,0x80,0xdf,0x78,0x8d,0xd7, +0x79,0x0f,0x6f,0xf0,0x26,0x6f,0x81,0xdf,0x79,0x9b,0x77,0x78, +0x2f,0x99,0xc8,0xfb,0xf3,0x01,0x64,0x37,0x32,0x89,0x0f,0xe4, +0xf3,0xf0,0x79,0xf9,0x7c,0x7c,0x7e,0xbe,0x00,0x5f,0x90,0x4c, +0x26,0x53,0xf8,0x42,0x7c,0x10,0x1f,0xcc,0x87,0x90,0xdd,0xf9, +0xc2,0x7c,0x28,0x1f,0xc6,0x17,0xe1,0x8b,0x82,0x3f,0xc0,0x9f, +0x7c,0x31,0xbe,0x38,0x98,0xc1,0x97,0xe0,0x4b,0x92,0x3d,0xc0, +0x5f,0x64,0x4f,0xbe,0x14,0x5f,0x9a,0x2f,0xc3,0x97,0xe5,0xcb, +0x81,0xbf,0xc1,0x3f,0x60,0x26,0x5f,0x1e,0x02,0xf8,0x0a,0x10, +0x08,0x41,0x10,0xcc,0x57,0xe4,0x2b,0xf1,0x95,0xf9,0x2a,0x10, +0x42,0xf6,0xe2,0xab,0xf2,0xd5,0x20,0x94,0xaf,0xce,0xd7,0x20, +0x7b,0x43,0x18,0x5f,0x93,0xaf,0xc5,0xd7,0xe6,0xeb,0xf0,0x75, +0xf9,0x7a,0x7c,0x7d,0xb2,0x0f,0xd9,0x97,0x6f,0x40,0xf6,0x83, +0x70,0x88,0xe0,0x1b,0xf2,0x8d,0xf8,0xc6,0x7c,0x13,0xbe,0x29, +0xdf,0x0c,0xf2,0x81,0x72,0xf1,0xcd,0xf9,0x16,0x90,0x2f,0xdf, +0x92,0x6f,0x45,0xf6,0x87,0x48,0xbe,0x35,0xdf,0x86,0x6f,0xcb, +0xb7,0xe3,0xdb,0xf3,0x1d,0xf8,0x70,0x88,0x82,0x68,0xbe,0x23, +0x39,0x00,0x62,0xc8,0x81,0x7c,0x04,0x1f,0xc9,0x47,0xf1,0x9d, +0xf8,0xce,0x7c,0x34,0xe4,0x47,0x0e,0xe2,0x63,0xf8,0x2e,0x50, +0x6e,0xbe,0x2b,0x1f,0x4b,0x0e,0x86,0x58,0x3e,0x8e,0x8f,0xe7, +0x13,0xf8,0x44,0xbe,0x1b,0x9f,0xc4,0x27,0x43,0x1c,0xc4,0xf3, +0x29,0xe4,0x10,0xbe,0x3b,0x39,0x94,0xef,0xc1,0xf7,0xe4,0x7b, +0xf1,0xbd,0xf9,0x3e,0x7c,0x5f,0x48,0xe0,0xfb,0xf1,0xfd,0xf9, +0x01,0xe4,0x30,0x7e,0x20,0x3f,0x88,0x1f,0x0c,0x89,0xfc,0x10, +0x7e,0x28,0x3f,0x8c,0x1f,0xce,0x8f,0xe0,0x47,0xf2,0xa3,0xc8, +0xe1,0xe4,0x08,0x7e,0x34,0x3f,0x06,0x92,0xf8,0xb1,0xfc,0x38, +0x7e,0x3c,0x3f,0x81,0x9f,0xc8,0x4f,0xe2,0x27,0x43,0x32,0xa4, +0xf0,0x53,0xf8,0xa9,0x90,0xca,0x4f,0x83,0x34,0x72,0x24,0xa4, +0x93,0xa3,0x20,0x0f,0x3f,0x9d,0x9f,0xc1,0xcf,0xe4,0x67,0x41, +0x06,0x64,0x42,0x16,0x3f,0x1b,0xb2,0xf9,0x39,0x90,0xc3,0xcf, +0x25,0x47,0xf3,0xf3,0x20,0x2f,0x3f,0x9f,0x1c,0x03,0xf9,0x93, +0x63,0xf9,0x05,0xfc,0x42,0x28,0x80,0x5f,0xc4,0x2f,0x26,0xc7, +0x91,0xe3,0xf9,0x25,0xfc,0x52,0x72,0x02,0xbf,0x8c,0x5f,0xce, +0xaf,0xe0,0x57,0xf2,0xab,0xf8,0xd5,0xfc,0x1a,0x72,0x22,0xbf, +0x96,0x9c,0xc4,0xaf,0xe3,0xd7,0xf3,0x1b,0xf8,0x8d,0xfc,0x26, +0x7e,0x33,0x14,0x08,0xe5,0xe1,0xb7,0xf0,0x5b,0xa1,0xbc,0xfc, +0x36,0x7e,0x3b,0x39,0x19,0xca,0xc7,0xa7,0xf2,0x3b,0xf8,0x9d, +0xfc,0x2e,0x7e,0x37,0xbf,0x87,0x9c,0x02,0xe5,0x87,0x0a,0xf0, +0x7b,0xa1,0x82,0x50,0x21,0x28,0x88,0xdf,0xc7,0xef,0xe7,0xd3, +0xc8,0xa9,0x7c,0x3a,0x7f,0x00,0x0a,0x86,0x42,0xa0,0xc2,0xe4, +0x34,0x28,0x94,0x3f,0xc8,0x1f,0x82,0xc2,0xa0,0x22,0x50,0x51, +0xa8,0x18,0x7f,0x98,0x9c,0xce,0x1f,0xe1,0x8f,0xf2,0xc7,0xa0, +0xe2,0x50,0x09,0x72,0x06,0x54,0x12,0x2a,0x05,0x95,0x86,0xca, +0x40,0x65,0xc9,0x99,0x50,0x39,0x72,0x16,0x54,0x1e,0xaa,0x00, +0x55,0xe4,0x8f,0xf3,0x27,0xa0,0x4a,0xfc,0x49,0xfe,0x14,0x54, +0x19,0xaa,0xc2,0x9f,0xe6,0xcf,0xf0,0x67,0xf9,0x73,0xfc,0x79, +0xfe,0x02,0x7f,0x11,0xaa,0x0a,0x55,0xe3,0x2f,0x41,0xd5,0xa1, +0x1a,0x50,0x4d,0xfe,0x32,0x7f,0x85,0xbf,0xca,0x5f,0x23,0x67, +0xf3,0xd7,0xa1,0x5a,0x50,0x6d,0xfe,0x06,0x7f,0x13,0xaa,0xc3, +0xdf,0xe2,0x6f,0x43,0x75,0xa1,0x7a,0xfc,0x1d,0xfe,0x2e,0x7f, +0x8f,0xbf,0xcf,0x3f,0xe0,0x1f,0xf2,0x8f,0xa0,0xfa,0x50,0x03, +0xfe,0x31,0xd4,0x90,0x7f,0x02,0x35,0x22,0xe7,0xf0,0x4f,0xf9, +0x67,0xe4,0x5c,0xfe,0x39,0xff,0x02,0x6a,0x4c,0xce,0xe3,0xff, +0xf0,0x99,0x02,0x20,0x80,0x02,0x24,0xc0,0x50,0x13,0xa8,0x29, +0x39,0x1f,0x6a,0x06,0x35,0x17,0x10,0x01,0x85,0x5a,0x40,0x2d, +0xa1,0x56,0x50,0x6b,0xa8,0x8d,0x80,0x09,0xb8,0x40,0x90,0x0b, +0xa0,0xb6,0x50,0x3b,0xc1,0x07,0x6a,0x0f,0x75,0x80,0xc2,0xc9, +0x85,0x42,0x2e,0xb7,0xab,0x59,0x0c,0x75,0x84,0x22,0xa0,0x48, +0x28,0x4a,0xf0,0x15,0x48,0xa8,0x93,0x40,0x09,0x34,0xd4,0x19, +0x8a,0x16,0x18,0xc1,0x4f,0xc8,0x2d,0xb0,0x02,0x27,0xf0,0x82, +0x00,0xc5,0x40,0x5d,0x04,0x11,0xea,0x0a,0xc5,0x42,0x71,0x82, +0x24,0xc8,0xe4,0x12,0x72,0x29,0x14,0x4f,0x2e,0x83,0x12,0xa0, +0x44,0x41,0x21,0x97,0x43,0xdd,0x04,0x55,0xd0,0xa0,0x24,0x28, +0x59,0xd0,0x05,0x0f,0xb9,0x42,0x30,0x04,0x53,0xb0,0x04,0x1b, +0x4a,0x81,0xba,0x0b,0x0e,0xb9,0x12,0xea,0x01,0xf5,0x14,0xbc, +0x82,0x3f,0xd4,0x8b,0x5c,0x45,0xae,0x26,0xd7,0x40,0xbd,0xc9, +0xb5,0x42,0x80,0x10,0x08,0xf5,0x11,0xf2,0x08,0x79,0xdd,0x0e, +0x6b,0xbd,0x90,0x4f,0xc8,0x2f,0x14,0x10,0x0a,0x0a,0x85,0x84, +0x20,0x21,0xd8,0xed,0xba,0x36,0x0a,0x21,0xe4,0x26,0xa1,0x30, +0xd4,0x57,0x08,0x15,0xc2,0x84,0x22,0x42,0x51,0xa1,0x98,0x50, +0x1c,0xea,0x07,0xf5,0x77,0x7b,0xb2,0x2d,0xd0,0x00,0xa1,0x04, +0xb9,0x95,0xdc,0x06,0x0d,0x84,0x06,0x41,0x83,0x85,0x92,0x42, +0x29,0xa1,0xb4,0x50,0x46,0x28,0x0b,0x0d,0x81,0x86,0x0a,0xe5, +0xa0,0x61,0x42,0x79,0x68,0x38,0xb9,0x5d,0xa8,0x40,0xa6,0x42, +0x23,0xa0,0x91,0xd0,0x28,0x68,0x34,0xb9,0x43,0xa8,0x28,0x54, +0x82,0xc6,0x08,0x95,0x85,0x2a,0xe4,0x4e,0x68,0xac,0x50,0x55, +0xa8,0x26,0x54,0x17,0x6a,0x08,0x35,0x85,0x5a,0x42,0x6d,0x72, +0x17,0x34,0x4e,0xa8,0x43,0xee,0x86,0xc6,0x93,0x7b,0x84,0xba, +0x42,0x3d,0xa1,0xbe,0xd0,0x40,0x68,0x28,0x34,0x82,0x26,0x08, +0x8d,0x85,0x26,0x42,0x53,0x72,0xaf,0xd0,0x4c,0x68,0x2e,0xb4, +0x20,0xf7,0x41,0x13,0x85,0x48,0x21,0x4a,0xe8,0x24,0x74,0x16, +0xa2,0x85,0x18,0xa1,0x0b,0x34,0x09,0x9a,0x2c,0x74,0x15,0x62, +0xa1,0x29,0x42,0x9c,0x10,0x4f,0xee,0x87,0xa6,0x0a,0x09,0x42, +0xa2,0xd0,0x4d,0x48,0x12,0x92,0x85,0x14,0xa1,0x3b,0x34,0x0d, +0x9a,0x2e,0xf4,0x80,0x66,0x90,0x69,0xd0,0x4c,0xa1,0xa7,0xd0, +0x4b,0xe8,0x2d,0xf4,0x21,0xd3,0x85,0xbe,0xd0,0x2c,0x68,0xb6, +0xd0,0x4f,0xe8,0x0f,0xcd,0x11,0x06,0x08,0x03,0xc9,0x03,0xd0, +0x5c,0x61,0x90,0x30,0x58,0x18,0x22,0x0c,0x15,0x86,0x09,0xc3, +0x85,0x11,0xd0,0x3c,0x68,0xbe,0x30,0x12,0x5a,0x20,0x8c,0x82, +0x16,0x0a,0xa3,0x85,0x31,0xc2,0x58,0x61,0x9c,0x30,0x5e,0x98, +0x00,0x2d,0x82,0x16,0x0b,0x13,0x85,0x49,0xd0,0x12,0x61,0xb2, +0x30,0x05,0x5a,0x0a,0x2d,0x83,0x96,0x0b,0x53,0x85,0x69,0xe4, +0x41,0x61,0xba,0x30,0x83,0x3c,0x04,0xad,0x80,0x56,0x0a,0x33, +0xa1,0x55,0xc2,0x2c,0x68,0xb5,0x30,0x9b,0x3c,0x2c,0xcc,0x81, +0xd6,0x90,0x47,0x84,0xb9,0xd0,0x5a,0xf2,0xa8,0x30,0x4f,0x98, +0x4f,0x1e,0x13,0x16,0x08,0x0b,0xc9,0xe3,0xe4,0x09,0x61,0x91, +0xb0,0x58,0x58,0x22,0x2c,0x15,0x96,0x09,0xcb,0x85,0x15,0xe4, +0x49,0xf2,0x94,0xb0,0x92,0x3c,0x0d,0xad,0x23,0xcf,0x08,0xab, +0x84,0xd5,0xc2,0x1a,0x61,0xad,0xb0,0x4e,0x58,0x0f,0xad,0x27, +0xcf,0x0a,0x1b,0x84,0x8d,0xe4,0x39,0x61,0x93,0xb0,0x99,0x3c, +0x4f,0x5e,0x10,0xb6,0x08,0x5b,0x85,0x6d,0xc2,0x76,0x21,0x55, +0xd8,0x21,0xec,0x24,0x2f,0x92,0x97,0x84,0x5d,0xe4,0x65,0xf2, +0x0a,0x79,0x55,0xd8,0x2d,0xec,0x11,0xf6,0x0a,0xfb,0x84,0xfd, +0x42,0x1a,0xb4,0x81,0xbc,0x26,0xa4,0x0b,0x07,0xa0,0x8d,0xc2, +0x41,0xe1,0x10,0x79,0x1d,0xda,0x24,0x1c,0x16,0x8e,0x08,0x47, +0x85,0x63,0xc2,0x71,0xe1,0x84,0x70,0x12,0xda,0x0c,0x6d,0x11, +0x4e,0x91,0x37,0x84,0xd3,0xe4,0x4d,0xe1,0x0c,0x79,0x4b,0x38, +0x2b,0x9c,0x13,0xce,0x0b,0x17,0xa0,0xad,0xd0,0x36,0xe1,0xa2, +0x70,0x89,0xbc,0x2d,0x5c,0x16,0xae,0x40,0xdb,0xa1,0x54,0xe1, +0xaa,0x70,0x4d,0xb8,0x2e,0xdc,0x10,0x6e,0x0a,0xb7,0x84,0xdb, +0xd0,0x0e,0x68,0xa7,0x70,0x87,0xbc,0x23,0xdc,0x85,0x76,0xb9, +0x3d,0xfa,0x3d,0xe1,0x9e,0x70,0x5f,0x78,0x20,0x3c,0x84,0x76, +0x43,0x7b,0x84,0x47,0xc2,0x63,0x68,0xaf,0xf0,0x44,0x78,0x0a, +0xed,0x83,0xf6,0x43,0x69,0x50,0xba,0xf0,0x8c,0xbc,0x2f,0x3c, +0x17,0x5e,0x08,0x2f,0xa1,0x03,0xd0,0x41,0xe1,0x15,0x74,0x48, +0x78,0x0d,0x1d,0x86,0x8e,0x40,0x47,0x85,0x37,0xc2,0x5b,0xe8, +0x18,0x74,0x1c,0x3a,0x41,0x3e,0x10,0xde,0x09,0xef,0xa1,0x93, +0xc2,0x07,0xe1,0x23,0xf9,0x10,0x3a,0x25,0x7c,0x12,0x3e,0x0b, +0x5f,0x84,0xaf,0xc2,0x37,0xe1,0xbb,0xf0,0x03,0x3a,0x4d,0x3e, +0x12,0x7e,0x42,0x67,0xc8,0xc7,0xd0,0x59,0x21,0x43,0xf8,0x25, +0xfc,0x16,0xfe,0x08,0x99,0x22,0x00,0x9d,0x83,0xce,0x8b,0xa0, +0x08,0x41,0x17,0x44,0x58,0x44,0xa0,0x8b,0xd0,0x25,0xf2,0x09, +0x74,0x99,0x7c,0x4a,0x3e,0x13,0x51,0x11,0x13,0x71,0xe8,0x0a, +0x74,0x55,0x24,0xa0,0x6b,0xa2,0x0f,0x74,0x1d,0xba,0x21,0xe6, +0x82,0x6e,0x8a,0xbe,0xd0,0x2d,0xf2,0x39,0x74,0x1b,0xba,0x03, +0xdd,0x15,0x49,0xe8,0x9e,0x48,0x89,0x34,0x74,0x1f,0x7a,0x00, +0x3d,0x84,0x1e,0x41,0x8f,0xc9,0x17,0x22,0x43,0xbe,0x84,0x9e, +0x40,0x4f,0xa1,0x67,0xe4,0x2b,0xe8,0x39,0xf4,0x02,0x7a,0x09, +0xbd,0x82,0x5e,0x93,0xaf,0xa1,0x37,0xe4,0x1b,0xe8,0x2d,0xf4, +0x0e,0x7a,0x2f,0xfa,0x89,0xb9,0xa1,0x0f,0x22,0x2b,0x72,0xe4, +0x5b,0xe8,0xa3,0xc8,0x8b,0x82,0x28,0x8a,0x92,0x28,0x8b,0x8a, +0xa8,0x42,0x9f,0xa0,0xcf,0xa2,0x06,0x7d,0x81,0xbe,0x42,0xdf, +0xa0,0xef,0xa2,0x2e,0x7a,0xc8,0x77,0xa2,0x21,0x9a,0xd0,0x0f, +0xf2,0xbd,0x68,0x89,0x36,0xf4,0x53,0x74,0x44,0xaf,0xe8,0x4f, +0x7e,0x10,0x03,0xc4,0x40,0xf2,0xa3,0x98,0x47,0xcc,0x2b,0xe6, +0x13,0xf3,0x93,0x9f,0xc8,0xcf,0x62,0x01,0xf2,0x8b,0x58,0x10, +0xca,0x10,0x0b,0x89,0x41,0x62,0xb0,0x18,0x22,0x16,0x16,0x43, +0xc9,0xaf,0x62,0x98,0x58,0x44,0x2c,0x4a,0x7e,0x23,0xbf,0x8b, +0xd5,0xc4,0xea,0x62,0x0d,0xb1,0xa6,0x58,0x4b,0xac,0x0d,0xfd, +0x82,0x7e,0x43,0x7f,0xc4,0x3a,0x50,0x26,0xf9,0x43,0xac,0x0b, +0x03,0x30,0x28,0xd6,0x83,0x21,0x18,0x16,0xeb,0x8b,0x0d,0xc4, +0x86,0x62,0x23,0x18,0x81,0x51,0xf2,0x27,0x8c,0x91,0x19,0x30, +0x4e,0xfe,0x82,0x09,0xb1,0x31,0xf9,0x1b,0xf6,0x81,0x73,0xc1, +0xbe,0x30,0x29,0x36,0x11,0x9b,0xc2,0x94,0xd8,0x4c,0x6c,0x4e, +0xfe,0x81,0x69,0xb1,0x85,0xd8,0x52,0x6c,0x25,0xb6,0x16,0xdb, +0x88,0x6d,0xc5,0x76,0x30,0x03,0xfb,0x89,0xed,0xe1,0xdc,0x30, +0x0b,0x73,0x64,0xa6,0xd8,0x41,0x0c,0x17,0x3b,0x52,0x80,0x18, +0x01,0xf3,0x14,0x28,0x46,0x52,0x10,0x2c,0x88,0x51,0x62,0x27, +0xca,0x75,0x24,0x76,0x16,0xa3,0xc5,0x18,0x0a,0x11,0xbb,0x88, +0x5d,0xc5,0x58,0x0a,0xa5,0x30,0x31,0x8e,0xc2,0x61,0x09,0x96, +0xc5,0x78,0x31,0x41,0x4c,0x14,0xbb,0x89,0x49,0x62,0x32,0xac, +0x50,0x84,0x98,0x22,0x76,0x87,0x55,0xb1,0x87,0xd8,0x53,0xec, +0x45,0xf9,0x88,0xbd,0xc5,0x3e,0x62,0x5f,0xb1,0x9f,0xd8,0x5f, +0x1c,0x20,0x0e,0xa4,0x72,0x51,0xbe,0xe2,0x20,0x8a,0x14,0x07, +0x53,0x94,0x38,0x44,0x1c,0x2a,0x0e,0x13,0x87,0x8b,0x23,0xc4, +0x91,0xb0,0x06,0xeb,0x14,0x4d,0x31,0xb0,0x47,0x1c,0x25,0x8e, +0x86,0x0d,0xd8,0x14,0xc7,0xc0,0x16,0xe5,0x07,0xdb,0xe2,0x58, +0x71,0x1c,0x95,0x1b,0x76,0x60,0xaf,0x38,0x1e,0xf6,0x17,0x27, +0xc0,0x01,0x14,0x0b,0x07,0x52,0x1c,0x9c,0x87,0xe2,0x29,0x01, +0xce,0x4b,0x89,0xe2,0x44,0x71,0x12,0x9c,0x4f,0x9c,0x2c,0x4e, +0x11,0xa7,0xc2,0xf9,0xc5,0x69,0xe2,0x74,0x71,0x86,0x38,0x53, +0x9c,0x25,0xce,0x16,0xe7,0x50,0x12,0x25,0x8b,0x73,0x29,0x85, +0x52,0x29,0x4d,0x9c,0x27,0xce,0x17,0x17,0x88,0x0b,0xc5,0x45, +0xe2,0x62,0xb8,0x80,0xb8,0x44,0x5c,0x2a,0x2e,0xa3,0x74,0x71, +0xb9,0xb8,0x82,0xf2,0x50,0x86,0xb8,0x52,0x5c,0x25,0xae,0x16, +0xd7,0x88,0x6b,0xc5,0x75,0xe2,0x7a,0xca,0xa4,0x2c,0x71,0x03, +0x5c,0x10,0x2e,0x24,0x6e,0x14,0x37,0x89,0x9b,0xc5,0x2d,0xe2, +0x56,0x71,0x9b,0xb8,0x1d,0x0e,0xa2,0x6c,0x31,0x55,0xdc,0x01, +0x07,0x8b,0x3b,0xc5,0x5d,0x94,0x03,0x87,0x88,0xbb,0xc5,0x3d, +0xe2,0x5e,0xca,0x2b,0xee,0x13,0xf7,0x8b,0x69,0x70,0x61,0x38, +0x54,0x4c,0x87,0xc3,0xe0,0x22,0x70,0x51,0xf1,0x80,0x78,0x50, +0x3c,0x24,0x1e,0x16,0x8f,0x88,0x47,0xe1,0x62,0x94,0xbf,0x78, +0x4c,0x3c,0x4e,0x05,0x88,0x27,0xc4,0x93,0x54,0x20,0x95,0x47, +0x3c,0x25,0x9e,0x16,0xcf,0x88,0x67,0xc5,0x73,0xe2,0x79,0xf1, +0x02,0x95,0x97,0xca,0x27,0x5e,0xa4,0xf2,0x8b,0x97,0xa8,0x02, +0xe2,0x65,0xf1,0x8a,0x78,0x55,0xbc,0x26,0x5e,0xa7,0x0a,0xc2, +0xc5,0xe1,0x12,0xe2,0x0d,0xf1,0x26,0x5c,0x52,0xbc,0x25,0xde, +0x86,0x4b,0xc1,0xa5,0xa9,0x42,0x70,0x19,0x2a,0x48,0xbc,0x23, +0xde,0x15,0xef,0x89,0xf7,0xe1,0xb2,0x70,0x39,0xf1,0x01,0x5c, +0x5e,0x7c,0x08,0x57,0x10,0x1f,0x89,0x8f,0xc5,0x27,0xe2,0x53, +0x2a,0x58,0x7c,0x06,0x57,0xa4,0x42,0xc4,0xe7,0xe2,0x0b,0xaa, +0xb0,0xf8,0x52,0x7c,0x45,0x85,0x52,0x61,0xe2,0x6b,0xf1,0x8d, +0xf8,0x56,0x7c,0x27,0xbe,0x17,0x3f,0x88,0x1f,0xa9,0x22,0x54, +0x51,0xf1,0x13,0x55,0x0c,0xae,0x44,0x15,0x17,0x3f,0x8b,0x5f, +0xc4,0xaf,0xe2,0x37,0xf1,0xbb,0xf8,0x03,0xae,0x4c,0x95,0x10, +0x7f,0x8a,0x19,0x54,0x49,0xf1,0x97,0xf8,0x9b,0x2a,0x45,0x95, +0x16,0xff,0x88,0x99,0x12,0x20,0x81,0x12,0x24,0xc1,0x12,0x42, +0x95,0x81,0xab,0x48,0x28,0x55,0x96,0x2a,0x07,0x57,0x95,0x30, +0x09,0x97,0x08,0xc9,0x47,0xca,0x25,0xf9,0xc2,0xd5,0xa8,0xf2, +0x12,0x29,0x51,0x70,0x75,0x89,0x96,0x18,0xaa,0x02,0x5c,0x43, +0xf2,0x93,0x72,0x4b,0xac,0xc4,0x49,0xbc,0x24,0x48,0x22,0x55, +0x11,0xae,0x29,0x49,0x70,0x2d,0xb8,0x36,0x5c,0x47,0x92,0x25, +0x45,0x52,0x25,0x4d,0xd2,0x25,0x0f,0x5c,0x97,0xaa,0x24,0x19, +0x92,0x09,0xd7,0x93,0x2c,0xc9,0x96,0x1c,0xb8,0xbe,0xe4,0x95, +0xfc,0xa5,0x00,0x29,0x50,0xca,0x23,0xe5,0x95,0xf2,0xc1,0x0d, +0xa8,0xca,0x52,0x7e,0xaa,0x8a,0x54,0x00,0x6e,0x28,0x15,0x94, +0x0a,0x49,0x41,0x52,0xb0,0x14,0x22,0x15,0x86,0x1b,0xc1,0x8d, +0xa5,0x50,0x29,0x0c,0x6e,0x22,0x15,0x91,0x8a,0xc2,0x4d,0xe1, +0x66,0x70,0x73,0xb8,0x05,0xdc,0x92,0xaa,0x2a,0x15,0x93,0x8a, +0x4b,0x25,0xe0,0x56,0x70,0x6b,0xa9,0x24,0xdc,0x46,0x2a,0x05, +0xb7,0x95,0x4a,0x4b,0x65,0xa4,0xb2,0x52,0x39,0xa9,0xbc,0x54, +0x01,0x6e,0x47,0x55,0x93,0x2a,0x4a,0x95,0xe0,0xf6,0x52,0x65, +0xa9,0x0a,0x55,0x1d,0xee,0x20,0x55,0x95,0xaa,0x49,0xd5,0xa5, +0x1a,0x52,0x4d,0xa9,0x96,0x54,0x9b,0xaa,0x41,0xd5,0x94,0xea, +0x50,0xb5,0xa4,0xba,0x54,0x6d,0xa9,0x9e,0x54,0x5f,0x6a,0x20, +0x35,0x94,0x1a,0x49,0x8d,0xe1,0x70,0xb8,0xa3,0xd4,0x44,0x6a, +0x0a,0x47,0x48,0xcd,0xa4,0xe6,0x70,0x24,0x1c,0x25,0xb5,0x90, +0x5a,0x4a,0xad,0xa4,0xd6,0x52,0x1b,0xa9,0xad,0xd4,0x0e,0xee, +0x04,0x77,0x96,0xda,0xc3,0xd1,0x70,0x0c,0xdc,0x05,0xee,0x0a, +0xc7,0x4a,0x1d,0xa8,0x3a,0x70,0x1c,0x55,0x17,0x8e,0x87,0x13, +0xe0,0x44,0x29,0x1c,0xee,0x26,0x75,0x94,0x22,0xe0,0x24,0x38, +0x99,0xaa,0x47,0xd5,0xa7,0x1a,0x48,0x91,0x52,0x94,0xd4,0x89, +0x6a,0x08,0xa7,0xc0,0xdd,0xa5,0xce,0x70,0x0f,0xb8,0x27,0xdc, +0x4b,0x8a,0x96,0x62,0xa4,0x2e,0x52,0x57,0x29,0x16,0xee,0x0d, +0xf7,0x81,0xfb,0x52,0x8d,0xa4,0x38,0xb8,0x9f,0x14,0x2f,0x25, +0x50,0x8d,0xe1,0xfe,0x52,0xa2,0xd4,0x4d,0x4a,0x92,0x92,0xa5, +0x14,0xa9,0xbb,0xd4,0x03,0x1e,0x00,0x0f,0x94,0x7a,0xc2,0x83, +0xe0,0xc1,0xf0,0x10,0xa9,0x97,0xd4,0x5b,0xea,0x23,0xf5,0x95, +0xfa,0x51,0x4d,0xa8,0xa6,0x54,0x33,0xa9,0xbf,0x34,0x80,0x6a, +0x2e,0x0d,0x94,0x06,0x49,0x83,0xa9,0x16,0x54,0x4b,0x69,0x82, +0x34,0x51,0x9a,0x24,0x4d,0x96,0xa6,0x48,0x53,0xe1,0xa1,0xd2, +0x34,0x69,0xba,0x34,0x03,0x1e,0x06,0x0f,0x97,0x96,0x48,0x4b, +0xa5,0x65,0xd2,0x72,0x78,0x84,0xb4,0x42,0x5a,0x29,0xad,0x92, +0x56,0x4b,0x6b,0xa4,0xb5,0xf0,0x48,0x78,0x94,0xb4,0x4e,0x5a, +0x0f,0x8f,0x96,0x36,0x48,0x1b,0xa9,0x56,0xf0,0x18,0x69,0x13, +0x3c,0x16,0x1e,0x27,0x6d,0x96,0xb6,0x48,0x5b,0xa9,0xd6,0xf0, +0x78,0x78,0x82,0xb4,0x0d,0x9e,0x08,0x4f,0x82,0x27,0x4b,0xdb, +0xa5,0x54,0x69,0x87,0xb4,0x53,0xda,0x05,0x4f,0x81,0xa7,0xc2, +0xd3,0xa4,0xdd,0xd2,0x1e,0x78,0xba,0xb4,0x57,0xda,0x47,0xb5, +0x81,0x67,0x48,0xfb,0xa5,0x34,0x29,0x5d,0x3a,0x20,0x1d,0x94, +0x0e,0x49,0x87,0xe1,0x99,0xf0,0x2c,0xe9,0x08,0x3c,0x1b,0x9e, +0x03,0xcf,0x95,0x8e,0x4a,0xc7,0xa4,0xe3,0xd2,0x09,0xe9,0xa4, +0x74,0x0a,0x9e,0x47,0xb5,0x95,0x4e,0x4b,0x67,0xa8,0x76,0xd2, +0x59,0xe9,0x1c,0xd5,0x5e,0x3a,0x2f,0x5d,0x90,0x2e,0x4a,0x97, +0xa4,0xcb,0xd2,0x15,0xe9,0xaa,0x74,0x8d,0xea,0x40,0x85,0x4b, +0xd7,0xa9,0x8e,0xf0,0x7c,0x2a,0x42,0xba,0x21,0xdd,0x94,0x6e, +0x49,0xb7,0xa5,0x3b,0xd2,0x5d,0x2a,0x52,0xba,0x27,0xdd,0x97, +0x1e,0x50,0x51,0x54,0x27,0xe9,0xad,0xf4,0x4e,0x7a,0x4f,0x75, +0x96,0x3e,0x48,0x1f,0xa5,0x4f,0xd2,0x67,0xe9,0x8b,0xf4,0x15, +0x5e,0x00,0x2f,0xa4,0xa2,0xa5,0x6f,0xf0,0x22,0xe9,0xbb,0xf4, +0x83,0x8a,0x81,0x17,0x53,0x5d,0xa8,0xae,0xd2,0x4f,0x29,0x43, +0xfa,0x25,0xfd,0xa6,0x62,0xe1,0x25,0xf0,0x52,0xe9,0x0f,0xbc, +0x4c,0xca,0x84,0x97,0xcb,0x80,0x0c,0xca,0x90,0x0c,0xcb,0x88, +0x8c,0xc2,0x2b,0xe0,0x95,0x32,0x26,0xe3,0xf0,0x2a,0x99,0x90, +0x7d,0xe4,0x5c,0xf0,0x6a,0x2a,0x4e,0x96,0x64,0x59,0x56,0x64, +0x55,0xd6,0xe0,0x35,0xf0,0x5a,0x2a,0x5e,0xd6,0x65,0x0f,0x95, +0x20,0x1b,0xb2,0x49,0x25,0x52,0xdd,0x64,0x4b,0xb6,0x65,0x47, +0xf6,0xca,0xfe,0x72,0x80,0x1c,0x48,0x25,0x51,0xc9,0x72,0x1e, +0x2a,0x05,0x5e,0x27,0xe7,0x95,0xf3,0xc9,0xf9,0xe5,0x02,0x72, +0x41,0xb9,0x90,0x1c,0x04,0xaf,0xa7,0xba,0xcb,0xc1,0x72,0x08, +0xbc,0x41,0x2e,0x2c,0x87,0x52,0x3d,0xa8,0x9e,0x72,0x98,0x5c, +0x44,0x2e,0x2a,0x17,0x93,0x8b,0xcb,0x25,0xe4,0x92,0x54,0x2f, +0xaa,0xb7,0x5c,0x8a,0xea,0x43,0xf5,0xa5,0xfa,0xc9,0xa5,0xe5, +0x32,0x72,0x59,0xb9,0x9c,0x5c,0x5e,0xae,0x40,0xf5,0xa7,0x06, +0xc0,0x1b,0xe1,0x4d,0x72,0x6b,0xb9,0x0d,0xbc,0x59,0x6e,0x2b, +0xb7,0xa3,0x06,0xc2,0x5b,0xe4,0xf6,0xd4,0x20,0x78,0xab,0xdc, +0x41,0x0e,0x97,0x3b,0xc2,0xdb,0xe0,0xed,0xd4,0x60,0x39,0x02, +0x4e,0x95,0x23,0xe1,0x1d,0x72,0x94,0xdc,0x49,0xee,0x4c,0x0d, +0x91,0xa3,0xe5,0x18,0x78,0xa7,0xdc,0x45,0xee,0x2a,0xc7,0x52, +0x43,0xe5,0x38,0x39,0x9e,0x1a,0x46,0x0d,0xa7,0x46,0xc8,0x7d, +0xe4,0xbe,0x72,0x3f,0xb9,0xbf,0x3c,0x40,0x1e,0x28,0x0f,0x82, +0x77,0xc9,0x83,0xe5,0x21,0xf2,0x50,0x6a,0xa4,0x3c,0x4c,0x1e, +0x4e,0x8d,0xa2,0x46,0xcb,0x23,0xe4,0x91,0xf2,0x28,0x79,0xb4, +0x3c,0x46,0x1e,0x2b,0x8f,0xa3,0xc6,0x50,0x63,0xe5,0xf1,0xf2, +0x04,0x6a,0x1c,0x35,0x5e,0x9e,0x28,0x4f,0x92,0x27,0xcb,0x53, +0xe4,0xa9,0xf2,0x34,0x78,0xb7,0x3c,0x5d,0x9e,0x21,0xcf,0x84, +0xf7,0xc8,0xb3,0xe4,0xd9,0xd4,0x04,0x78,0xaf,0x3c,0x47,0x9e, +0x2b,0xcf,0x93,0xe7,0xcb,0x0b,0xe4,0x85,0xf2,0x22,0x78,0x1f, +0xbc,0x5f,0x5e,0x4c,0x4d,0x84,0xd3,0xe0,0x74,0x79,0x89,0xbc, +0x54,0x5e,0x26,0x2f,0x97,0x57,0xc8,0x2b,0xe1,0x03,0xd4,0x24, +0x79,0x95,0xbc,0x5a,0x5e,0x23,0xaf,0x95,0xd7,0xc9,0xeb,0xa9, +0xc9,0xf2,0x06,0x79,0xa3,0xbc,0x49,0xde,0x2c,0x6f,0x91,0xb7, +0xca,0xdb,0xa8,0x29,0xf2,0x76,0x39,0x55,0xde,0x21,0xef,0xa4, +0xa6,0xca,0xbb,0xe4,0xdd,0xf2,0x1e,0x79,0xaf,0xbc,0x4f,0xde, +0x0f,0x1f,0x84,0x0f,0xc9,0x69,0x72,0x3a,0x7c,0x58,0x3e,0x20, +0x1f,0x84,0x8f,0xc0,0x47,0xe5,0x43,0xd4,0x34,0xf8,0x98,0x7c, +0x58,0x3e,0x22,0x1f,0xa5,0xa6,0xc3,0xc7,0xe1,0x13,0xf2,0x31, +0xf8,0xa4,0x7c,0x1c,0x3e,0x05,0x9f,0x96,0x4f,0xc8,0x27,0xe5, +0x53,0xf2,0x69,0xf8,0x0c,0x7c,0x96,0x9a,0x21,0x9f,0x91,0xcf, +0xc2,0xe7,0xe4,0x73,0xf2,0x79,0xf9,0x02,0x7c,0x5e,0xbe,0x28, +0x5f,0x92,0x2f,0xcb,0x57,0xe4,0xab,0xf2,0x35,0xf9,0x3a,0x7c, +0x01,0xbe,0x28,0xdf,0x90,0x6f,0xca,0xb7,0xa8,0x99,0xf2,0x6d, +0xf9,0x8e,0x7c,0x57,0xbe,0x27,0xdf,0x97,0x1f,0xc0,0x97,0xe0, +0xcb,0xf2,0x43,0xf9,0x11,0x7c,0x45,0x7e,0x2c,0x3f,0xa1,0x66, +0xc1,0x57,0xe5,0xa7,0xf2,0x33,0xf9,0xb9,0xfc,0x42,0x7e,0x29, +0xbf,0x92,0x5f,0xc3,0xd7,0xe0,0xeb,0xf2,0x1b,0xf8,0x86,0xfc, +0x16,0xbe,0x29,0xbf,0x93,0xdf,0xcb,0x1f,0xe4,0x8f,0xf2,0x27, +0x6a,0x36,0x7c,0x0b,0xbe,0x2d,0x7f,0x96,0xbf,0xc0,0x77,0xe4, +0xaf,0xf2,0x37,0xf8,0x2e,0x7c,0x4f,0xfe,0x2e,0xff,0x90,0x7f, +0x52,0x73,0xe4,0x0c,0xf9,0x97,0xfc,0x1b,0xbe,0x0f,0x3f,0x90, +0xff,0xc0,0x0f,0xe1,0x47,0xf0,0x63,0xf8,0x09,0x35,0x97,0x9a, +0x47,0xcd,0x87,0x9f,0xc2,0xcf,0xe0,0xe7,0xf0,0x0b,0x39,0x53, +0x01,0xe0,0x97,0x0a,0xa8,0x40,0xf0,0x2b,0xf8,0xb5,0x02,0x2b, +0x88,0x82,0x2a,0x98,0x82,0x2b,0x84,0xe2,0x03,0xbf,0x81,0xdf, +0x2a,0xb9,0xe0,0x77,0xf0,0x7b,0xf8,0x83,0xe2,0xab,0x90,0xf0, +0x47,0x6a,0x01,0xfc,0x49,0xa1,0xe0,0xcf,0xf0,0x17,0x85,0x56, +0x18,0xf8,0xab,0xe2,0xa7,0xe4,0xa6,0x16,0x52,0x8b,0x14,0x56, +0xe1,0x14,0x5e,0x11,0x14,0x51,0x91,0x14,0x99,0x5a,0x0c,0x7f, +0x53,0x14,0xf8,0xbb,0xa2,0xc2,0x3f,0x14,0x4d,0xd1,0x15,0x8f, +0x62,0x28,0xa6,0x62,0xc1,0x3f,0x15,0x5b,0x71,0x14,0x2f,0x9c, +0x41,0x2d,0x51,0x42,0x95,0x30,0xa5,0x88,0x52,0x54,0x29,0xa6, +0x14,0x57,0x4a,0x28,0x25,0xe1,0x5f,0xf0,0x6f,0xa5,0x94,0x52, +0x1a,0xfe,0xa3,0x94,0x81,0x33,0x11,0x00,0x01,0x95,0xb2,0x4a, +0x39,0xa5,0xbc,0x52,0x41,0xa9,0xa8,0x54,0x52,0x2a,0x23,0x10, +0x02,0x53,0x4b,0x11,0x04,0x41,0x11,0x8c,0x5a,0xa6,0x54,0xa1, +0x96,0x2b,0x55,0xa9,0x15,0x08,0x8e,0x10,0x88,0x8f,0x52,0x4d, +0xa9,0x8e,0xe4,0x52,0x6a,0x28,0x35,0xa9,0x95,0x88,0xaf,0x52, +0x4b,0xa9,0xad,0xd4,0x51,0xea,0x2a,0xf5,0x94,0xfa,0x4a,0x03, +0x84,0x44,0x28,0xa5,0x21,0x42,0x23,0x0c,0xe2,0xa7,0x34,0x52, +0x1a,0x2b,0x4d,0xa8,0x55,0xd4,0x6a,0x6a,0x0d,0x92,0x1b,0x61, +0x95,0xa6,0x4a,0x33,0x84,0x53,0x9a,0x2b,0x2d,0x10,0x1e,0x11, +0x94,0x96,0x4a,0x2b,0xa5,0x35,0xb5,0x56,0x69,0xa3,0xb4,0x55, +0xda,0x21,0x22,0x22,0x29,0xed,0x11,0x19,0x51,0x10,0x55,0xe9, +0xa0,0x84,0x53,0xeb,0x94,0x8e,0xd4,0x7a,0x25,0x02,0xd1,0xa8, +0x0d,0x4a,0xa4,0x12,0x85,0xe8,0x4a,0x27,0xa5,0x33,0xb5,0x91, +0xda,0xa4,0x44,0x2b,0x31,0x4a,0x17,0xa5,0xab,0x12,0xab,0xc4, +0x29,0xf1,0xd4,0x66,0xc4,0xa3,0x24,0x20,0x86,0x92,0x48,0x6d, +0x51,0xba,0x29,0x49,0x4a,0xb2,0x92,0xa2,0x74,0x57,0x7a,0x20, +0x26,0x62,0x29,0x3d,0x95,0x5e,0x88,0xad,0xf4,0x56,0xfa,0x20, +0x0e,0xe2,0x55,0xfa,0x2a,0xfd,0x94,0xfe,0xd4,0x56,0x65,0x80, +0x32,0x90,0xda,0x86,0xf8,0x23,0x01,0xca,0x20,0x24,0x50,0x19, +0x8c,0xe4,0x51,0x86,0x28,0x43,0xa9,0xed,0xca,0x30,0x2a,0x95, +0xda,0x81,0xe4,0x45,0xf2,0x29,0xc3,0x95,0x11,0x48,0x7e,0x65, +0xa4,0x32,0x4a,0x19,0x4d,0xed,0x54,0xc6,0x28,0x63,0x95,0x71, +0xca,0x78,0x65,0x82,0x32,0x51,0x99,0x44,0xed,0xa2,0x76,0x2b, +0x93,0xa9,0x3d,0xd4,0x5e,0xa4,0x80,0x32,0x45,0x99,0xaa,0x4c, +0x53,0xa6,0x2b,0x33,0x94,0x99,0x48,0x41,0x65,0x96,0x32,0x5b, +0x99,0x43,0xed,0x53,0xe6,0x2a,0xf3,0xa8,0xfd,0x54,0x1a,0x95, +0x8e,0x14,0x52,0x56,0x2a,0xab,0x94,0xd5,0xca,0x1a,0x65,0xad, +0xb2,0x4e,0x59,0x8f,0x04,0x51,0x07,0x94,0x0d,0xca,0x46,0x24, +0x98,0x3a,0xa8,0x6c,0xa2,0x0e,0x21,0x21,0xca,0x66,0x65,0x8b, +0xb2,0x55,0xd9,0xa6,0x6c,0x57,0x52,0x95,0x1d,0x48,0x61,0x24, +0x54,0xd9,0x89,0x84,0x51,0x87,0x91,0x22,0xca,0x2e,0x65,0xb7, +0xb2,0x47,0xd9,0xab,0xec,0x53,0xf6,0x23,0x45,0xa9,0x23,0x4a, +0x9a,0x92,0x8e,0x14,0x53,0x0e,0x28,0x07,0xa9,0xa3,0x48,0x71, +0xe5,0x90,0x72,0x58,0x39,0xa2,0x1c,0x55,0x8e,0x29,0xc7,0x95, +0x13,0xd4,0x31,0xa4,0x84,0x72,0x12,0x29,0xa9,0x9c,0x42,0x4a, +0x29,0xa7,0x95,0x33,0xca,0x59,0xe5,0x9c,0x72,0x5e,0xb9,0x80, +0x94,0x46,0xca,0x28,0x17,0x95,0x4b,0x48,0x59,0xe5,0xb2,0x72, +0x85,0x3a,0x8e,0x94,0x53,0xae,0x2a,0xd7,0xa8,0x13,0xca,0x75, +0xe5,0x86,0x72,0x53,0xb9,0x85,0x94,0x47,0x2a,0x28,0xb7,0x91, +0x8a,0xca,0x1d,0xa4,0x92,0x72,0x57,0xb9,0x47,0x9d,0x54,0xee, +0x53,0xa7,0x94,0x07,0x48,0x65,0xea,0xb4,0xf2,0x50,0x79,0x84, +0x54,0x51,0x1e,0x2b,0x4f,0xa8,0x33,0xd4,0x59,0xe5,0xa9,0xf2, +0x4c,0x79,0xae,0xbc,0x50,0x5e,0x2a,0xaf,0x94,0xd7,0xd4,0x39, +0xea,0xbc,0xf2,0x86,0xba,0x80,0x54,0xa5,0x2e,0x2a,0x6f,0x95, +0x77,0xca,0x7b,0xe5,0x83,0xf2,0x51,0xf9,0x84,0x54,0xa3,0x2e, +0x29,0x9f,0x95,0x2f,0x48,0x75,0xe5,0xab,0xf2,0x4d,0xf9,0x4e, +0x5d,0x56,0x7e,0x28,0x3f,0x95,0x0c,0xe5,0x97,0xf2,0x5b,0xf9, +0xa3,0x64,0x52,0x57,0xa8,0xab,0x2a,0x40,0x5d,0xa3,0xae,0x53, +0x37,0x54,0x50,0x85,0x54,0x58,0x45,0x54,0x54,0xc5,0x90,0x1a, +0x48,0x4d,0x15,0x57,0x09,0xa4,0x96,0xea,0xa3,0xe6,0xa2,0x6e, +0x22,0xb5,0x55,0x5f,0x95,0x54,0x29,0x95,0x56,0x19,0xd5,0x4f, +0xcd,0x8d,0xd4,0xa1,0x6e,0xa9,0x2c,0x52,0x97,0xba,0x8d,0xd4, +0x53,0x39,0x95,0x57,0x05,0x55,0x54,0x25,0x55,0x46,0xea,0x23, +0x0d,0x54,0x45,0x55,0x91,0x86,0xaa,0xa6,0xea,0xd4,0x1d,0xa4, +0x91,0xea,0x51,0x0d,0xd5,0x54,0x2d,0xd5,0x56,0x1d,0xd5,0x8b, +0x34,0x46,0x9a,0xa8,0xfe,0x48,0x53,0x35,0x00,0x69,0xa6,0x06, +0xaa,0x79,0xd4,0xbc,0x6a,0x3e,0x35,0xbf,0x5a,0x00,0x69,0x8e, +0xb4,0x50,0x0b,0xaa,0x85,0x90,0x96,0x6a,0x90,0x1a,0x4c,0xdd, +0x45,0x5a,0x51,0xf7,0xd4,0x10,0xb5,0x30,0x75,0x5f,0x0d,0x55, +0xc3,0xd4,0x22,0x48,0x6b,0xa4,0x8d,0x5a,0x14,0x69,0xab,0x16, +0x43,0xda,0x21,0xed,0xa9,0x07,0x6a,0x71,0xa4,0x03,0x12,0x8e, +0x74,0x44,0x22,0xa8,0x87,0x6a,0x09,0xb5,0x24,0x12,0xa9,0x96, +0x52,0x4b,0xab,0x65,0xa8,0x47,0x6a,0x59,0xb5,0x9c,0x5a,0x5e, +0xad,0xa0,0x56,0xa4,0x1e,0xab,0x95,0xa8,0x27,0xd4,0x53,0xb5, +0x32,0xf5,0x4c,0xad,0x42,0x3d,0x57,0xab,0xaa,0xd5,0xd4,0xea, +0x6a,0x0d,0xb5,0xa6,0x5a,0x0b,0x89,0x42,0x3a,0xa9,0xb5,0xd5, +0x3a,0x48,0x67,0xb5,0xae,0x5a,0x8f,0x7a,0x81,0x44,0xab,0xf5, +0xd5,0x06,0x6a,0x43,0xb5,0x91,0xda,0x58,0x6d,0xa2,0x36,0x45, +0x62,0x90,0x2e,0xd4,0x4b,0xa4,0x2b,0x12,0x8b,0xc4,0xa9,0xcd, +0xd4,0xe6,0xd4,0x2b,0xb5,0x05,0x12,0xaf,0xb6,0x44,0x12,0x90, +0x44,0xea,0xb5,0xda,0x0a,0xe9,0xa6,0xb6,0x46,0x92,0x90,0x64, +0x24,0x05,0xe9,0x8e,0xf4,0x50,0xdb,0x20,0x3d,0xd5,0xb6,0x6a, +0x3b,0xb5,0x3d,0xd2,0x0b,0xe9,0xad,0x76,0x40,0xfa,0x20,0x7d, +0x91,0x7e,0x48,0x7f,0x64,0x00,0xf5,0x06,0x19,0x88,0x0c,0x42, +0x06,0x23,0x43,0x90,0xa1,0x6a,0x38,0xf5,0x16,0x19,0xa6,0x76, +0x54,0x23,0x90,0xe1,0xc8,0x08,0xea,0x9d,0x1a,0xa9,0x46,0xa9, +0x9d,0xd4,0xce,0x6a,0xb4,0x1a,0x83,0x8c,0x44,0x46,0xa9,0x5d, +0x90,0xd1,0xc8,0x18,0x64,0x2c,0x32,0x0e,0x19,0xaf,0x76,0x45, +0x26,0x50,0xef,0xd5,0x58,0x64,0x22,0x32,0x49,0x8d,0x53,0xe3, +0x91,0xc9,0x6a,0x82,0x9a,0xa8,0x76,0x43,0xa6,0xa8,0x49,0x6a, +0xb2,0x9a,0xa2,0x76,0x57,0x7b,0xa8,0x3d,0xd5,0x5e,0xc8,0x54, +0xea,0x83,0xda,0x9b,0xfa,0xa8,0xf6,0x41,0xa6,0xa9,0x7d,0xd5, +0x7e,0xd4,0x27,0xb5,0xbf,0x3a,0x40,0x1d,0x48,0x7d,0x46,0xa6, +0x23,0x33,0xd4,0xb9,0xd4,0x17,0x64,0xa6,0x3a,0x4f,0x9d,0x4f, +0x7d,0x45,0x66,0x51,0xdf,0x90,0xd9,0xea,0x02,0x75,0xa1,0xba, +0x48,0x5d,0xac,0x2e,0x41,0xe6,0x20,0x73,0xd5,0xa5,0xc8,0x3c, +0x64,0x3e,0xb2,0x00,0x59,0x48,0x7d,0x57,0x97,0xa9,0xcb,0xd5, +0x15,0xc8,0x22,0x64,0x31,0xb2,0x44,0x5d,0xa9,0xae,0x42,0x96, +0xaa,0xab,0xd5,0x35,0xc8,0x32,0x64,0xb9,0xba,0x56,0x5d,0xa7, +0xae,0xa7,0x7e,0xa8,0x1b,0xd4,0x8d,0xea,0x26,0x64,0x05,0xb2, +0x52,0xdd,0x8c,0xac,0x42,0x56,0x23,0x6b,0xa8,0x9f,0xc8,0x5a, +0x75,0x0b,0x95,0xa1,0x6e,0x55,0xb7,0x21,0xeb,0x90,0xf5,0xea, +0x76,0x35,0x15,0xd9,0xa0,0xee,0x50,0x77,0x22,0x1b,0x91,0x4d, +0xea,0x2e,0xea,0x97,0xba,0x5b,0xdd,0xa3,0xee,0x55,0xf7,0xa9, +0xfb,0xa9,0xdf,0xd4,0x1f,0x35,0x0d,0xd9,0x8c,0x6c,0x41,0xb6, +0xaa,0xe9,0xc8,0x36,0xf5,0x00,0x95,0xa9,0x1e,0x54,0x0f,0x21, +0xdb,0x69,0x40,0x3d,0xac,0x1e,0x41,0x52,0xd5,0xa3,0xea,0x31, +0x1a,0xa4,0x21,0xf5,0xb8,0x7a,0x42,0x3d,0xa9,0x9e,0x52,0x4f, +0xab,0x67,0xd4,0xb3,0x34,0x4c,0x23,0xea,0x39,0x1a,0x55,0xcf, +0xd3,0x98,0x7a,0x81,0xc6,0xd5,0x8b,0x34,0x41,0xfb,0xa8,0x97, +0x90,0x1d,0xc8,0x4e,0xf5,0x32,0xb2,0x0b,0xd9,0xad,0x5e,0x51, +0xaf,0x22,0x7b,0x90,0xbd,0xc8,0x3e,0x64,0xbf,0x7a,0x8d,0xce, +0xa5,0x5e,0x57,0x6f,0xa8,0x37,0x91,0x34,0x24,0x5d,0xbd,0x85, +0x1c,0x50,0x6f,0x23,0x07,0xd5,0x3b,0xb4,0xaf,0x7a,0x57,0xbd, +0xa7,0xde,0xa7,0x49,0xe4,0x10,0x4d,0xa9,0x0f,0xd4,0x87,0xc8, +0x61,0xf5,0x91,0xfa,0x98,0xa6,0x69,0x46,0x7d,0xa2,0x3e,0x55, +0x9f,0xa9,0xcf,0xd5,0x17,0xea,0x4b,0xf5,0x15,0xed,0x47,0xe7, +0x56,0x5f,0xd3,0x2c,0x72,0x04,0x39,0xaa,0xbe,0x51,0xdf,0xaa, +0xef,0xd4,0xf7,0xea,0x07,0xf5,0x23,0x72,0x4c,0xfd,0xa4,0x7e, +0x56,0xbf,0xd0,0x9c,0xfa,0x55,0xfd,0xa6,0x7e,0xa7,0x79,0xf5, +0x87,0xfa,0x53,0xcd,0x50,0x7f,0xa9,0xbf,0xd5,0x3f,0x6a,0xa6, +0x06,0xd0,0x82,0x06,0x6a,0x10,0x72,0x5c,0x83,0x35,0x44,0x43, +0x35,0x4c,0xc3,0x35,0x42,0xf3,0x41,0x4e,0xd0,0xa2,0x96,0x4b, +0xf3,0x45,0x4e,0x6a,0xa4,0x46,0xd1,0x12,0x72,0x4a,0xa3,0x35, +0x46,0xf3,0xd3,0x72,0x6b,0xac,0xc6,0x69,0x3c,0x72,0x1a,0x39, +0xa3,0x09,0xc8,0x59,0x4d,0x44,0xce,0x69,0x92,0x26,0x6b,0x8a, +0xa6,0x6a,0x9a,0xa6,0x23,0xe7,0x69,0x59,0xf3,0x68,0x06,0x72, +0x41,0x33,0x35,0x8b,0x56,0x90,0x8b,0x9a,0xad,0x39,0x9a,0x57, +0xf3,0xd7,0x02,0xb4,0x40,0x2d,0x0f,0xad,0x22,0x97,0xb4,0xbc, +0xc8,0x65,0x2d,0x1f,0xad,0x69,0xf9,0xb5,0x02,0x5a,0x41,0xad, +0x90,0x16,0xa4,0x05,0x23,0x57,0x90,0xab,0xc8,0x35,0x2d,0x04, +0xb9,0xae,0x15,0xa6,0x75,0xe4,0x06,0x72,0x13,0xb9,0x85,0xdc, +0xd6,0x42,0x69,0x8f,0x16,0xa6,0x15,0xd1,0x8a,0x22,0x77,0x90, +0xbb,0x5a,0x31,0xe4,0x9e,0x56,0x1c,0xb9,0xaf,0x95,0xa0,0x0d, +0xad,0x24,0xf2,0x40,0x2b,0x85,0x3c,0x44,0x1e,0xd1,0xa6,0x56, +0x5a,0x2b,0x83,0x3c,0xd6,0xca,0x6a,0xe5,0x68,0x0b,0x79,0xa2, +0x95,0xd7,0x2a,0x68,0x15,0xb5,0x4a,0x5a,0x65,0xad,0x8a,0x56, +0x95,0xb6,0x91,0xa7,0x5a,0x35,0xe4,0x19,0xf2,0x1c,0x79,0xa1, +0x55,0xd7,0x6a,0x68,0x35,0xb5,0x5a,0x5a,0x6d,0xad,0x0e,0xf2, +0x92,0x76,0xb4,0xba,0x5a,0x3d,0xda,0xab,0xd5,0xd7,0x1a,0x68, +0x0d,0x69,0x7f,0xad,0x91,0xd6,0x58,0x6b,0xa2,0x35,0xd5,0x9a, +0x69,0xcd,0xb5,0x16,0x74,0x00,0x1d,0xa8,0xb5,0xa4,0xf3,0xd0, +0x79,0xe9,0x7c,0x5a,0x2b,0xad,0xb5,0xd6,0x46,0x6b,0xab,0xb5, +0xd3,0xda,0x23,0xaf,0xe8,0xfc,0xc8,0x6b,0xad,0x03,0xf2,0x46, +0x0b,0xd7,0x3a,0x6a,0x11,0xc8,0x5b,0x2d,0x52,0x8b,0xd2,0x3a, +0x69,0x9d,0xb5,0x68,0x2d,0x46,0xeb,0x42,0x17,0x40,0xde,0x69, +0x5d,0x91,0xf7,0x74,0x41,0xba,0x90,0x16,0xab,0xc5,0x69,0xf1, +0x5a,0x82,0x96,0xa8,0x75,0x43,0x3e,0xd0,0x41,0x5a,0x92,0x96, +0x8c,0x7c,0xd4,0x52,0xb4,0xee,0x74,0x30,0xf2,0x49,0xeb,0xa1, +0xf5,0xd4,0x7a,0x69,0xbd,0xb5,0x3e,0x5a,0x5f,0xad,0x1f,0xf2, +0x99,0x0e,0xd1,0xfa,0x23,0x5f,0xb4,0x01,0xc8,0x57,0x6d,0xa0, +0x36,0x48,0x1b,0xac,0x0d,0xd1,0x86,0x6a,0xc3,0x90,0x6f,0xc8, +0x77,0x6d,0x38,0x5d,0x18,0xf9,0xa1,0x8d,0xd0,0x46,0xd2,0xa1, +0xc8,0x4f,0x3a,0x4c,0x1b,0xa5,0x8d,0xa6,0x8b,0x68,0x63,0xb4, +0xb1,0x74,0x51,0x24,0x03,0xf9,0xa5,0x8d,0x43,0x7e,0x6b,0xe3, +0x91,0x3f,0xda,0x04,0x6d,0xa2,0x36,0x89,0x2e,0xa6,0x4d,0xd6, +0xa6,0x20,0x99,0x74,0x71,0x6d,0xaa,0x36,0x0d,0x05,0xb4,0xe9, +0xda,0x0c,0x6d,0x26,0x5d,0x42,0x9b,0xa5,0xcd,0xd6,0xe6,0x68, +0x73,0xb5,0x79,0xda,0x7c,0x6d,0x01,0x5d,0x12,0x05,0xb5,0x85, +0x74,0x29,0x6d,0x11,0x0a,0xd1,0xa5,0xb5,0xc5,0xda,0x12,0x6d, +0xa9,0xb6,0x4c,0x5b,0x8e,0xc2,0x28,0xa2,0xad,0xd0,0x56,0xa2, +0xa8,0xb6,0x4a,0x5b,0x8d,0x62,0x28,0x4e,0x97,0x41,0x09,0x6d, +0x0d,0x5d,0x56,0x5b,0xab,0xad,0xd3,0xd6,0xa3,0x3e,0x68,0x2e, +0x6d,0x03,0xea,0x8b,0x92,0x28,0x45,0x97,0x43,0x69,0xba,0x3c, +0xca,0x68,0x1b,0xb5,0x4d,0xa8,0x1f,0x9a,0x1b,0x65,0x51,0x0e, +0xe5,0xb5,0xcd,0xda,0x16,0x54,0x40,0x45,0x54,0x42,0x65,0x54, +0xa1,0x2b,0x68,0x5b,0xb5,0x6d,0xa8,0x8a,0x6a,0xa8,0xae,0x6d, +0x47,0x3d,0xa8,0x81,0x9a,0x5a,0x2a,0x6a,0xd1,0x15,0x51,0x5b, +0xdb,0x41,0x57,0x42,0x1d,0xd4,0x8b,0xfa,0x6b,0x3b,0xd1,0x00, +0x6d,0x97,0xb6,0x1b,0x0d,0x44,0xf3,0x68,0x7b,0xb4,0xbd,0xda, +0x3e,0x6d,0xbf,0x96,0xa6,0xa5,0x6b,0x07,0xd0,0xbc,0x68,0x3e, +0xed,0x20,0x9a,0x1f,0x2d,0x80,0x16,0xa4,0x2b,0x6b,0x87,0xb4, +0xc3,0x68,0x21,0xed,0x88,0x76,0x14,0x0d,0x42,0x83,0xb5,0x63, +0xda,0x71,0x34,0x44,0x3b,0xa1,0x9d,0xd4,0x4e,0xd1,0x55,0xb4, +0xd3,0xda,0x19,0xed,0xac,0x76,0x4e,0x3b,0xaf,0x5d,0xd0,0x2e, +0xa2,0x85,0xd1,0x50,0xed,0x12,0x1a,0xa6,0x5d,0x46,0x8b,0x68, +0x57,0xb4,0xab,0xda,0x35,0xed,0xba,0x76,0x83,0xae,0x4a,0x57, +0xd3,0x6e,0x6a,0xb7,0xb4,0xdb,0xda,0x1d,0xed,0xae,0x76,0x4f, +0xbb,0x4f,0x57,0xd7,0x1e,0x68,0x0f,0xb5,0x47,0xda,0x63,0xed, +0x89,0xf6,0x94,0xae,0xa1,0x3d,0xd3,0x9e,0x6b,0x2f,0xb4,0x97, +0xda,0x2b,0xba,0xa6,0xf6,0x5a,0x7b,0xa3,0xbd,0xd5,0xde,0x69, +0xef,0xb5,0x0f,0x68,0x51,0xb4,0x18,0x5d,0x4b,0xfb,0x88,0x16, +0xd7,0x3e,0x69,0x9f,0xd1,0x12,0x68,0x49,0xba,0x36,0x5a,0x4a, +0xfb,0x42,0xd7,0xd1,0xbe,0x6a,0xdf,0xb4,0xef,0x68,0x69,0xb4, +0x8c,0xf6,0x03,0x2d,0x8b,0x96,0x43,0xcb,0xa3,0x15,0xb4,0x9f, +0x74,0x5d,0xb4,0xa2,0x96,0x81,0x56,0x42,0x2b,0xa3,0x55,0xe8, +0x7a,0xda,0x2f,0xb4,0xaa,0xf6,0x5b,0xfb,0x83,0x56,0x43,0xab, +0x6b,0x99,0x3a,0xa0,0x83,0x3a,0xa4,0xc3,0x3a,0xa2,0xa3,0x68, +0x0d,0xb4,0xa6,0x8e,0xa1,0xb5,0xd0,0xda,0x68,0x1d,0x1d,0xd7, +0x09,0xba,0x3e,0xdd,0x40,0xf7,0xd1,0x73,0xa1,0x75,0xd1,0x7a, +0xba,0xaf,0x4e,0xa2,0xf5,0x75,0x4a,0xa7,0xe9,0x86,0x68,0x03, +0x9d,0xd1,0xfd,0xf4,0xdc,0x74,0x23,0x9d,0xd5,0x39,0x9d,0x47, +0x1b,0xa2,0x8d,0x74,0x01,0x6d,0x8c,0x36,0x41,0x9b,0xd2,0x8d, +0xd1,0x66,0x74,0x13,0xb4,0xb9,0x2e,0xea,0x12,0xda,0x82,0x6e, +0xaa,0xcb,0xba,0x82,0xb6,0xd4,0x55,0x5d,0xd3,0x75,0xba,0x99, +0xee,0xd1,0x0d,0xdd,0xd4,0x2d,0xdd,0xd6,0x1d,0xdd,0x4b,0x37, +0xa7,0x5b,0xe8,0xfe,0x74,0x4b,0x3d,0x80,0x6e,0xa5,0x07,0xea, +0x79,0xf4,0xbc,0x7a,0x3e,0x3d,0xbf,0x5e,0x00,0x6d,0x85,0xb6, +0x46,0xdb,0xd0,0xad,0xd1,0xb6,0x7a,0x41,0xbd,0x10,0xda,0x0e, +0x6d,0x8f,0x76,0x40,0xc3,0xd1,0x8e,0x7a,0x90,0x1e,0xac,0x87, +0xe8,0x85,0xd1,0x08,0x34,0x52,0x0f,0x45,0xa3,0xf4,0x30,0xb4, +0x13,0xdd,0x86,0x6e,0xab,0x17,0xa1,0xdb,0xe9,0x45,0xe9,0xf6, +0x68,0x67,0xba,0x83,0x5e,0x4c,0x2f,0x8e,0x46,0xeb,0x25,0xf4, +0x92,0x74,0x38,0xdd,0x51,0x2f,0xa5,0x97,0xd6,0xcb,0xe8,0x65, +0xf5,0x72,0x7a,0x79,0xbd,0x02,0x1d,0x41,0x47,0xea,0x15,0xd1, +0x18,0xb4,0x0b,0xda,0x55,0xaf,0xa4,0x57,0xd6,0xab,0xe8,0x55, +0xf5,0x6a,0x7a,0x75,0x34,0x56,0xaf,0xa1,0xd7,0xd4,0x6b,0xd1, +0x51,0x7a,0x6d,0xbd,0x0e,0xdd,0x89,0xee,0x8c,0xc6,0xe9,0x2d, +0xf4,0x96,0x7a,0x2b,0xbd,0xb5,0xde,0x46,0x6f,0xab,0xb7,0x43, +0xe3,0xd1,0x04,0x3a,0x5a,0x6f,0x8f,0x26,0xea,0x1d,0xf4,0x70, +0x3a,0x06,0xed,0xa6,0x77,0xd4,0x23,0xf4,0x48,0x3d,0x4a,0xef, +0xa4,0x77,0xd6,0xa3,0xd1,0x24,0x34,0x59,0x8f,0xa1,0xbb,0xa0, +0x29,0x74,0x57,0xbd,0x8b,0xde,0x55,0x8f,0xd5,0xe3,0xf4,0x78, +0x3d,0x01,0xed,0x4e,0xc7,0xea,0x89,0x7a,0x37,0xb4,0x87,0x9e, +0xa4,0x27,0xeb,0x29,0x74,0x9c,0xde,0x5d,0xef,0xa1,0xf7,0xd4, +0x7b,0xe9,0xbd,0xf5,0x3e,0x7a,0x5f,0xb4,0x27,0x1d,0xaf,0xf7, +0xa3,0x13,0xf4,0xfe,0x74,0xa2,0x3e,0x40,0x1f,0xa8,0x0f,0xd2, +0x07,0xeb,0x43,0xf4,0xa1,0x68,0x2f,0xb4,0x37,0xdd,0x4d,0x1f, +0x86,0xf6,0xd1,0x87,0xeb,0x23,0xd0,0xbe,0x68,0x3f,0xb4,0x3f, +0x3a,0x80,0x4e,0xd2,0x47,0xea,0xa3,0xe8,0x64,0x7d,0x34,0x3a, +0x10,0x1d,0xa4,0x8f,0x41,0x07,0xa3,0x43,0xd0,0xa1,0x74,0x0a, +0xdd,0x9d,0xee,0x81,0x0e,0x43,0x87,0xd3,0x3d,0xd1,0x11,0xe8, +0x48,0x7d,0xac,0x3e,0x0e,0x1d,0xa5,0x8f,0xd7,0x27,0xd0,0xbd, +0xd0,0xd1,0xfa,0x44,0x7d,0x92,0x3e,0x59,0x9f,0xa2,0x4f,0xd5, +0xa7,0xe9,0xd3,0xe9,0xde,0xe8,0x18,0x7d,0x06,0xdd,0x07,0x1d, +0x4b,0xf7,0xd5,0x67,0xea,0xb3,0xd0,0x71,0xfa,0x6c,0x7d,0x8e, +0x3e,0x17,0x1d,0x4f,0xf7,0xd3,0xe7,0xe9,0xf3,0xe9,0xfe,0xfa, +0x02,0x7d,0x21,0x3d,0x80,0x1e,0x88,0x4e,0xd0,0x17,0xe9,0x8b, +0xf5,0x25,0xfa,0x52,0x7d,0x99,0xbe,0x9c,0x1e,0x44,0x0f,0xd6, +0x57,0xd0,0x43,0xe8,0xa1,0xf4,0x30,0x7d,0xa5,0xbe,0x4a,0x5f, +0xad,0xaf,0xd1,0xd7,0xea,0xeb,0xd0,0x89,0xe8,0x24,0x7d,0xbd, +0xbe,0x01,0x9d,0xac,0x6f,0xd4,0x37,0xd1,0xc3,0xd1,0x29,0xfa, +0x66,0x7d,0x8b,0xbe,0x55,0xdf,0xa6,0x6f,0xd7,0x53,0xf5,0x1d, +0xf4,0x08,0x74,0xaa,0xbe,0x93,0x1e,0xa9,0xef,0x42,0xa7,0xe9, +0xbb,0xf5,0x3d,0xfa,0x5e,0x7d,0x9f,0xbe,0x5f,0x4f,0x43,0xa7, +0xd3,0xa3,0xf4,0x74,0xfd,0x00,0x3a,0x43,0x3f,0xa8,0x1f,0xa2, +0x47,0xa3,0x33,0xf5,0xc3,0xfa,0x11,0xfd,0xa8,0x7e,0x4c,0x3f, +0xae,0x9f,0xd0,0x4f,0xa2,0xb3,0xd0,0xd9,0xfa,0x29,0x74,0x8e, +0x7e,0x1a,0x9d,0xab,0x9f,0xd1,0xcf,0xea,0xe7,0xf4,0xf3,0xfa, +0x05,0xfd,0x22,0x3a,0x0f,0x9d,0xaf,0x5f,0xd2,0x2f,0xa3,0x0b, +0xf4,0x2b,0xfa,0x55,0x7a,0x0c,0xba,0x10,0x5d,0xa4,0x5f,0xa3, +0xc7,0xd2,0xe3,0xf4,0xeb,0xfa,0x0d,0x7a,0x3c,0xba,0x18,0x5d, +0xa2,0xdf,0x44,0x97,0xea,0xb7,0xd0,0x65,0xfa,0x6d,0x7a,0x82, +0x7e,0x87,0x9e,0xa8,0xdf,0xa5,0x27,0xa1,0xcb,0xd1,0x15,0xfa, +0x3d,0xfd,0x3e,0x3d,0x59,0x7f,0xa0,0x3f,0xd4,0x1f,0xa1,0x2b, +0xf5,0xc7,0xfa,0x13,0xfd,0xa9,0xfe,0x4c,0x7f,0xae,0xbf,0xd0, +0x5f,0xd2,0x53,0xe8,0xa9,0xfa,0x2b,0x7a,0x9a,0xfe,0x1a,0x5d, +0xa5,0xbf,0xd1,0xdf,0xea,0xef,0xf4,0xf7,0xfa,0x07,0xfd,0x23, +0xba,0x1a,0x5d,0xa3,0x7f,0xd2,0x3f,0xa3,0x6b,0xf5,0x2f,0xfa, +0x57,0x74,0x1d,0xba,0x5e,0xff,0x86,0x6e,0xd0,0xbf,0xeb,0x3f, +0xf4,0x9f,0x7a,0x86,0xfe,0x0b,0xdd,0x88,0x6e,0xd2,0x7f,0xa3, +0x9b,0xd1,0x2d,0xe8,0x56,0x74,0x1b,0xba,0x9d,0x9e,0x4e,0xcf, +0xd0,0xff,0xd0,0x33,0xd1,0x54,0x74,0x07,0x3d,0x4b,0xcf,0x44, +0x77,0x7a,0x00,0x0f,0x88,0xee,0x42,0x77,0xa3,0x7b,0xd0,0xbd, +0x1e,0xc8,0x03,0x7b,0x10,0x0f,0xea,0xc1,0xd0,0x7d,0xe8,0x7e, +0x0f,0x8e,0xa6,0xa1,0xe9,0xe8,0x01,0x7a,0xb6,0x87,0xf0,0xf8, +0xd0,0x73,0x3c,0xb9,0xd0,0x83,0xe8,0x21,0xf4,0x30,0x7a,0xc4, +0xe3,0x8b,0x1e,0xf5,0x90,0x1e,0x8a,0x9e,0x8b,0x1e,0xf3,0xd0, +0x1e,0xc6,0xe3,0xe7,0xc9,0xed,0x61,0x3d,0x9c,0x87,0x47,0x8f, +0xa3,0x27,0x3c,0x02,0x7a,0x12,0x3d,0x85,0x9e,0xf6,0x88,0x1e, +0xc9,0x23,0x7b,0x14,0x8f,0xea,0xd1,0xd0,0x33,0xe8,0x59,0x8f, +0xee,0xf1,0xa0,0xe7,0xe8,0x79,0x9e,0x22,0x9e,0xa2,0x9e,0x62, +0xf4,0x7c,0xf4,0x02,0x7a,0xd1,0x53,0xcf,0x53,0x1f,0xbd,0xe4, +0x69,0xe0,0x69,0x88,0x5e,0x46,0xaf,0xa0,0x57,0x3d,0x8d,0x3c, +0x8d,0x3d,0x4d,0x3c,0x4d,0x3d,0xcd,0x3c,0xcd,0xd1,0x6b,0xf4, +0x02,0x4f,0x0b,0xf4,0x3a,0x7a,0x03,0xbd,0x49,0x2f,0xf4,0xb4, +0xf4,0xb4,0xf2,0xb4,0xf6,0xb4,0xf1,0xb4,0x45,0x6f,0xd1,0x8b, +0x3c,0xed,0x3c,0xed,0xd1,0xdb,0x9e,0x0e,0x9e,0x70,0x7a,0x31, +0xbd,0xc4,0xd3,0xd1,0x13,0xe1,0x89,0xf4,0x44,0x79,0x3a,0x79, +0x3a,0x7b,0xa2,0xe9,0xa5,0xf4,0x32,0x4f,0x0c,0xbd,0xdc,0xd3, +0x05,0xbd,0xe3,0xe9,0xea,0x89,0xf5,0xc4,0x79,0xe2,0x3d,0x09, +0x9e,0x44,0xf4,0x2e,0x7a,0xcf,0xd3,0xcd,0x93,0x84,0xde,0xf7, +0x24,0x7b,0x52,0xe8,0x15,0xf4,0x4a,0x4f,0x77,0x4f,0x0f,0x4f, +0x4f,0x4f,0x2f,0x4f,0x6f,0x4f,0x1f,0x4f,0x5f,0xf4,0x01,0xfa, +0xd0,0xd3,0x0f,0x7d,0x84,0x3e,0x46,0x9f,0x78,0xfa,0xd3,0xab, +0x3c,0x03,0xe8,0xd5,0x9e,0x81,0x9e,0x41,0xf4,0x1a,0x7a,0x2d, +0xbd,0x8e,0x5e,0xef,0x99,0xea,0x99,0xe6,0x99,0xee,0x99,0xe1, +0x99,0xe9,0x99,0x85,0x3e,0x45,0x9f,0x79,0x66,0x7b,0xe6,0xa0, +0xcf,0x3d,0x73,0x3d,0xf3,0xe8,0x0d,0xe8,0x0b,0xcf,0x7c,0xcf, +0x02,0xcf,0x42,0xcf,0x22,0xcf,0x62,0xcf,0x12,0xcf,0x52,0xf4, +0x25,0xfa,0xca,0xb3,0x0c,0x7d,0xed,0x59,0x8e,0xbe,0xf1,0xac, +0xf0,0xac,0xf4,0xac,0xa2,0x37,0x7a,0x56,0xd3,0x9b,0xe8,0xcd, +0x9e,0x35,0x9e,0xb5,0x9e,0x75,0xf4,0x16,0xcf,0x7a,0xcf,0x06, +0x7a,0x2b,0xbd,0xcd,0x73,0xc8,0x73,0xd8,0x73,0xc4,0x73,0xd4, +0x73,0xcc,0x73,0x9c,0xde,0x4e,0xa7,0xd2,0x3b,0x3c,0xaf,0x3d, +0x6f,0x3c,0x6f,0x3d,0xef,0x3c,0xef,0x3d,0x1f,0xe8,0x9d,0x9e, +0x8f,0x9e,0x4f,0x9e,0xcf,0xe8,0x3b,0xf4,0x3d,0xbd,0x8b,0xde, +0x6d,0xc0,0x06,0x62,0xa0,0xe8,0x07,0x03,0x33,0x70,0x83,0x30, +0x7c,0x8c,0x5c,0x86,0x2f,0xfa,0x11,0xfd,0x64,0x90,0x06,0x85, +0x7e,0x36,0x68,0x83,0xa1,0xf7,0xa0,0x5f,0xd0,0xaf,0x86,0x9f, +0x91,0xdb,0x60,0x0d,0xce,0xe0,0x0d,0x01,0xfd,0x86,0x7e,0x37, +0x44,0xf4,0x87,0x21,0xa1,0x3f,0x0d,0xd9,0x50,0x0c,0x95,0xde, +0x6b,0x68,0x86,0x4e,0xef,0x33,0x3c,0x86,0x61,0x98,0x86,0x65, +0xd8,0x86,0x43,0xef,0x47,0x33,0xe8,0x74,0xf4,0x97,0x11,0x6b, +0xc4,0x19,0xf1,0x46,0x82,0x91,0x68,0x74,0xa3,0x0f,0xd0,0x07, +0xd1,0xdf,0xc6,0x00,0x63,0xa0,0x31,0xc8,0x18,0x6c,0x0c,0x31, +0x86,0xa2,0x7f,0xe8,0x43,0xc6,0x30,0x63,0x38,0x9a,0x69,0x8c, +0x30,0x46,0xd2,0x87,0x31,0xc0,0x18,0x65,0x8c,0x36,0xc6,0x18, +0x63,0x8d,0x71,0xc6,0x78,0x63,0x02,0x06,0x62,0x90,0x31,0x91, +0x3e,0x62,0x4c,0xc2,0x60,0x63,0xb2,0x31,0xc5,0x98,0x6a,0x4c, +0x33,0xa6,0x1b,0x33,0xe8,0xa3,0x18,0x82,0xa1,0xc6,0x16,0x63, +0x2b,0x86,0x19,0xdb,0x8c,0xed,0xf4,0x31,0x0c,0x37,0x52,0x8d, +0x1d,0xc6,0x4e,0x63,0x97,0xb1,0xdb,0xd8,0x63,0xec,0xc5,0x08, +0xcc,0xc7,0xd8,0x87,0xe5,0xa2,0x8f,0x63,0xbe,0xf4,0x09,0xfa, +0xa4,0xb1,0xdf,0x48,0x33,0xd2,0xe9,0x53,0x18,0x89,0x51,0xf4, +0x69,0x8c,0xc6,0x18,0xe3,0x80,0x71,0x10,0xf3,0xc3,0x72,0x63, +0x2c,0xc6,0xd1,0x67,0xe8,0xb3,0xc6,0x21,0xfa,0x1c,0x7d,0x1e, +0xe3,0x31,0xc1,0x38,0x8c,0x89,0x98,0x84,0xc9,0xf4,0x05,0xfa, +0x22,0x7d,0x09,0x53,0x30,0x95,0xbe,0x8c,0x69,0x98,0x6e,0x1c, +0xa1,0xaf,0x60,0x1e,0xe3,0xa8,0x71,0x0c,0x33,0x30,0xd3,0x38, +0x6e,0x9c,0x30,0x4e,0x1a,0xa7,0x8c,0xd3,0xc6,0x19,0xe3,0x2c, +0x66,0x61,0xb6,0x71,0x0e,0x73,0x30,0x2f,0xe6,0x6f,0x9c,0x37, +0x2e,0x18,0x17,0x8d,0x4b,0xc6,0x65,0xfa,0x2a,0x16,0x80,0x05, +0x1a,0x57,0x8c,0xab,0x58,0x1e,0xe3,0x9a,0x71,0x9d,0xbe,0x86, +0xe5,0x35,0x6e,0x18,0x37,0x8d,0x5b,0xc6,0x6d,0xe3,0x8e,0x71, +0xd7,0xb8,0x87,0xe5,0xc3,0xf2,0x1b,0xf7,0xb1,0x02,0xf4,0x75, +0xac,0xa0,0xf1,0x80,0xbe,0x61,0x3c,0x34,0x1e,0x61,0x85,0xe8, +0x9b,0x58,0x10,0x16,0x6c,0x3c,0x36,0x9e,0x60,0x21,0xc6,0x53, +0xe3,0x99,0xf1,0x1c,0x2b,0x6c,0xbc,0x30,0x5e,0x1a,0xaf,0x8c, +0xd7,0xc6,0x1b,0xe3,0xad,0xf1,0x0e,0x0b,0x35,0xde,0x1b,0x1f, +0x8c,0x8f,0xc6,0x27,0x2c,0xcc,0xf8,0x6c,0x7c,0x31,0xbe,0x1a, +0xdf,0x8c,0xef,0xc6,0x0f,0xac,0x08,0x56,0x14,0x2b,0x86,0x15, +0xc7,0x4a,0x18,0x3f,0x8d,0x0c,0xac,0x24,0x56,0x8a,0xbe,0x85, +0x95,0xc6,0xca,0xd0,0xb7,0x8d,0x5f,0xf4,0x1d,0xe3,0x37,0x56, +0x16,0x2b,0x67,0xfc,0xc1,0xca,0x63,0x15,0xb0,0x8a,0x46,0xa6, +0x09,0xd0,0x77,0x4d,0x10,0xab,0x64,0x42,0x58,0x65,0xac,0x8a, +0x09,0x9b,0x08,0x56,0xd5,0x44,0x4d,0x0c,0xab,0x86,0x55,0x37, +0x71,0x93,0x30,0x7d,0xcc,0x5c,0xa6,0xaf,0x49,0x9a,0x14,0x56, +0x03,0xab,0x69,0xd2,0x58,0x2d,0xac,0x36,0x56,0x87,0xbe,0x67, +0x32,0xa6,0x1f,0x56,0x97,0xbe,0x6f,0xe6,0xc6,0xea,0x61,0xf5, +0x4d,0x96,0x7e,0x80,0x35,0x30,0x39,0x93,0xa7,0x1f,0x62,0x0d, +0x4d,0xc1,0x14,0xe9,0x47,0xf4,0x63,0x53,0x32,0x65,0x53,0xc1, +0x1a,0x61,0x8d,0x4d,0x15,0x6b,0x82,0x35,0xc5,0x9a,0x99,0x9a, +0xa9,0x9b,0x1e,0xd3,0x30,0x4d,0xd3,0xc2,0x9a,0x63,0x2d,0x4c, +0x9b,0x7e,0x82,0xb5,0x34,0x1d,0xd3,0x6b,0xfa,0x63,0xad,0xcc, +0x00,0x33,0xd0,0xcc,0x63,0xe6,0x35,0xf3,0x99,0xf9,0xcd,0x02, +0x58,0x6b,0xac,0x8d,0x59,0x90,0x7e,0x4a,0x3f,0xc3,0xda,0x9a, +0x85,0xcc,0x20,0x33,0xd8,0x0c,0x31,0x0b,0x9b,0xa1,0x58,0x3b, +0xac,0x3d,0xd6,0xc1,0x0c,0xc3,0xc2,0xcd,0x22,0x66,0x51,0xac, +0x23,0x16,0x41,0x3f,0xc7,0x22,0xe9,0x17,0xf4,0x4b,0xb3,0x98, +0x59,0xdc,0x2c,0x81,0x45,0x61,0x9d,0xcc,0x92,0x58,0x67,0xb3, +0x14,0x16,0x6d,0x96,0xa6,0x5f,0x99,0x65,0xb0,0x18,0xfa,0xb5, +0x59,0x16,0xeb,0x82,0x75,0x35,0xcb,0x99,0xe5,0xb1,0x58,0xb3, +0x82,0x59,0xd1,0xac,0x84,0xc5,0x99,0x95,0xcd,0x2a,0x66,0x55, +0xb3,0x9a,0x59,0xdd,0xac,0x61,0xd6,0xa4,0xdf,0xd0,0x6f,0xcd, +0x5a,0xf4,0x3b,0xfa,0x3d,0x16,0x6f,0xd6,0x36,0xeb,0x98,0x75, +0xcd,0x7a,0x66,0x7d,0xb3,0x01,0x96,0x40,0x7f,0x30,0x1b,0x9a, +0x8d,0xb0,0x44,0xb3,0xb1,0xd9,0x84,0xfe,0x88,0x75,0x33,0x9b, +0x9a,0xcd,0xcc,0xe6,0x66,0x0b,0xb3,0xa5,0xd9,0xca,0x6c,0x8d, +0x25,0xd1,0x9f,0xcc,0x36,0x58,0x32,0x96,0x42,0x7f,0x36,0xdb, +0x9a,0xed,0xcc,0xf6,0x66,0x07,0x33,0xdc,0xec,0x88,0x75,0xa7, +0xbf,0x98,0x11,0x66,0x24,0xd6,0xc3,0x8c,0x32,0x3b,0xd1,0x5f, +0xb1,0x9e,0x66,0x67,0x33,0xda,0x8c,0x31,0xbb,0x98,0x5d,0xcd, +0x58,0x33,0x0e,0xeb,0x85,0xf5,0x36,0xe3,0xb1,0x3e,0x58,0x5f, +0xac,0x9f,0x99,0x60,0x26,0x9a,0xdd,0xcc,0x24,0x33,0xd9,0x4c, +0xc1,0xfa,0x63,0x03,0xcc,0xee,0x66,0x0f,0x6c,0xa0,0xd9,0xd3, +0xec,0x45,0x7f,0xc3,0x06,0x99,0xbd,0xcd,0x3e,0x66,0x5f,0xb3, +0x9f,0xd9,0xdf,0x1c,0x60,0x0e,0xc4,0x06,0x63,0x43,0xcc,0x41, +0xd8,0x50,0x73,0x30,0x36,0xcc,0x1c,0x62,0x0e,0x35,0x87,0x99, +0xc3,0xb1,0xe1,0xe6,0x08,0x6c,0x04,0x36,0xd2,0x1c,0x69,0x8e, +0xc2,0x46,0x99,0xa3,0xcd,0x31,0xd8,0x68,0x6c,0x0c,0xfd,0xdd, +0x1c,0x6b,0x8e,0xa3,0x7f,0x98,0xe3,0xcd,0x09,0xf4,0x4f,0x6c, +0x2c,0x36,0xce,0x9c,0x88,0x8d,0x37,0x27,0x61,0x13,0xe8,0x0c, +0x6c,0xa2,0x39,0x19,0x9b,0x84,0x4d,0xa6,0x7f,0x61,0x53,0xe8, +0xdf,0xe6,0x14,0x73,0x2a,0xfd,0xc7,0x9c,0x66,0x4e,0xa7,0x33, +0x19,0xc0,0x9c,0x61,0xce,0x34,0x67,0x99,0xb3,0xcd,0x39,0xe6, +0x5c,0x73,0x1e,0x03,0x32,0x90,0x39,0x9f,0x81,0xb1,0xa9,0x0c, +0x62,0x2e,0x30,0x17,0x9a,0x8b,0xcc,0xc5,0xe6,0x12,0x73,0x29, +0x36,0x0d,0x9b,0x6e,0x2e,0x33,0x97,0x63,0x33,0xcc,0x15,0xe6, +0x4a,0x06,0xc5,0x66,0x9a,0xab,0xcc,0xd5,0xe6,0x1a,0x73,0xad, +0xb9,0xce,0x5c,0x6f,0x6e,0xc0,0x66,0x31,0x98,0xb9,0x91,0xc1, +0x19,0x02,0x9b,0x6d,0x6e,0x32,0x37,0x9b,0x5b,0xcc,0xad,0xe6, +0x36,0x73,0x3b,0x36,0x07,0x9b,0x6b,0xa6,0x9a,0x3b,0xb0,0x79, +0xe6,0x4e,0x73,0x17,0xe3,0x83,0xcd,0x37,0x77,0x9b,0x7b,0xcc, +0xbd,0xe6,0x3e,0x73,0xbf,0x99,0x66,0xa6,0x63,0x0b,0xb0,0x85, +0xe6,0x01,0x6c,0x91,0x79,0x10,0x5b,0x6c,0x1e,0x32,0x0f,0x9b, +0x47,0xcc,0xa3,0x4c,0x2e,0xf3,0x18,0xb6,0x04,0x5b,0x6a,0x1e, +0x37,0x4f,0x60,0xcb,0xcc,0x93,0xe6,0x29,0xc6,0x17,0x5b,0x6e, +0x9e,0x36,0xcf,0x98,0x67,0xcd,0x73,0xe6,0x79,0xf3,0x82,0x79, +0x11,0x5b,0xc1,0x90,0xe6,0x25,0x6c,0xa5,0x79,0x19,0x5b,0x65, +0x5e,0x31,0xaf,0x9a,0xd7,0xcc,0xeb,0xe6,0x0d,0xf3,0x26,0xb6, +0x1a,0x5b,0x63,0xde,0x32,0x6f,0x63,0x6b,0xcd,0x3b,0xe6,0x5d, +0x6c,0x1d,0xb6,0x1e,0xdb,0xc0,0x50,0x0c,0xcd,0x30,0xe6,0x3d, +0x6c,0x23,0xe3,0x87,0x6d,0xc2,0x36,0x9b,0xf7,0xb1,0x2d,0xe6, +0x03,0x6c,0x2b,0x93,0x9b,0x61,0xcd,0x87,0xe6,0x23,0x86,0x33, +0x1f,0x63,0xdb,0xb0,0xed,0xe6,0x13,0xf3,0x29,0xc3,0x9b,0xcf, +0xcc,0xe7,0xe6,0x0b,0x46,0x30,0x5f,0x9a,0xaf,0xcc,0xd7,0xe6, +0x1b,0xf3,0xad,0xf9,0xce,0x7c,0xcf,0x88,0x8c,0x64,0x7e,0x60, +0x64,0xf3,0x23,0xa3,0x98,0x9f,0xcc,0xcf,0xe6,0x17,0xf3,0xab, +0xf9,0xcd,0xfc,0x8e,0xa5,0x62,0x3b,0x18,0xd5,0xfc,0x81,0xed, +0x34,0x7f,0x32,0x1a,0xb6,0x0b,0xdb,0x8d,0xed,0x61,0x74,0x33, +0x83,0xf1,0x98,0xbf,0xcc,0xdf,0xd8,0x5e,0x6c,0x1f,0xb6,0xdf, +0xfc,0x83,0xa5,0x61,0xe9,0xd8,0x01,0x33,0x13,0x3b,0xc8,0x18, +0x16,0x80,0x1d,0xb2,0x40,0xec,0x30,0x76,0xc4,0x82,0xb0,0xa3, +0xd8,0x31,0x0b,0xb6,0x10,0xec,0x38,0x76,0x82,0x31,0x19,0xcb, +0x42,0x2d,0xcc,0xc2,0x2d,0xc2,0xf2,0xc1,0x4e,0x62,0xa7,0xac, +0x5c,0x8c,0x8d,0x9d,0xc6,0xce,0x30,0x8e,0xe5,0x6b,0x91,0x8c, +0xd7,0xa2,0xb0,0xb3,0xd8,0x39,0xec,0xbc,0x45,0x5b,0x0c,0x76, +0xc1,0xf2,0xb3,0x72,0x33,0xfe,0xd8,0x45,0x8b,0xb5,0x38,0x8b, +0xb7,0x04,0x4b,0xb4,0x24,0x4b,0xc6,0x2e,0x61,0x97,0x2d,0x85, +0x09,0xc0,0xae,0x60,0x57,0x2d,0xd5,0xd2,0x2c,0xdd,0xf2,0x58, +0x06,0x13,0x88,0x5d,0xc3,0xae,0x5b,0xa6,0x65,0x31,0x79,0x2c, +0xdb,0x72,0x98,0xbc,0x4c,0x3e,0xcb,0x6b,0xf9,0x5b,0x01,0x56, +0xa0,0x95,0xc7,0xca,0x6b,0xe5,0x63,0xf2,0x33,0x05,0xac,0xfc, +0x4c,0x41,0xab,0x00,0x76,0xc3,0x2a,0x68,0x15,0xb2,0x82,0xac, +0x60,0x2b,0xc4,0x2a,0xcc,0x14,0xb2,0x42,0xad,0x30,0xab,0x08, +0x13,0x64,0x15,0xb5,0x8a,0x59,0xc5,0x99,0x60,0xab,0x84,0x55, +0xd2,0x2a,0x65,0x95,0xb6,0xca,0x58,0x65,0xad,0x72,0x4c,0x88, +0x55,0xde,0xaa,0x60,0x55,0xb4,0x2a,0x31,0x85,0xad,0xca,0x56, +0x15,0xab,0xaa,0x55,0xcd,0xaa,0x6e,0xd5,0xc0,0x6e,0x62,0xb7, +0x98,0x50,0xab,0x26,0x76,0xdb,0xaa,0x65,0xd5,0x66,0xc2,0xb0, +0x3b,0x56,0x1d,0xec,0xae,0x55,0xd7,0xaa,0x67,0xd5,0xb7,0x1a, +0x58,0x0d,0xb1,0x7b,0xd8,0x7d,0xab,0x11,0x53,0x04,0x7b,0x80, +0x3d,0xb4,0x1a,0x5b,0x4d,0xac,0xa6,0x56,0x33,0xec,0x91,0xd5, +0x1c,0x7b,0x8c,0x3d,0xb1,0x5a,0x58,0x2d,0xb1,0xa7,0x56,0x2b, +0xab,0x35,0x53,0x14,0x7b,0x66,0xb5,0xb1,0xda,0x5a,0xed,0xac, +0xf6,0x56,0x07,0x2b,0xdc,0xea,0x88,0x3d,0x67,0x8a,0x59,0x11, +0x4c,0x71,0xa6,0x04,0x53,0xd2,0x8a,0xb4,0xa2,0xac,0x4e,0x4c, +0x29,0xab,0xb3,0x15,0x8d,0xbd,0x60,0x4a,0x5b,0x31,0x56,0x17, +0xec,0xa5,0xd5,0xd5,0x8a,0x65,0xca,0x30,0x65,0xad,0x38,0x2b, +0xde,0x4a,0xb0,0x12,0xad,0x6e,0x56,0x92,0x95,0xcc,0x94,0x63, +0xca,0x5b,0x29,0x4c,0x05,0xa6,0x22,0xf6,0xca,0xea,0x6e,0xf5, +0xb0,0x7a,0x5a,0xbd,0xac,0xde,0x56,0x1f,0xec,0x35,0x53,0xc9, +0xea,0x6b,0xf5,0xc3,0xde,0x30,0x95,0x99,0x2a,0xd6,0x28,0xa6, +0x2a,0x53,0x8d,0xa9,0x6e,0x8d,0xb6,0xc6,0x58,0x63,0xad,0x71, +0xd6,0x78,0x6b,0x02,0xf6,0x16,0x7b,0x87,0xbd,0xb7,0x26,0x62, +0x1f,0xac,0x49,0xd6,0x64,0xec,0x23,0xf6,0xc9,0x9a,0x82,0x7d, +0xb6,0xa6,0x5a,0xd3,0xac,0xe9,0xd6,0x0c,0x6b,0x26,0xf6,0x05, +0xfb,0x6a,0xcd,0x62,0x6a,0x58,0xb3,0xb1,0x6f,0xd6,0x1c,0x6b, +0xae,0x35,0x8f,0xa9,0x69,0xcd,0xb7,0x16,0x60,0xdf,0xb1,0x1f, +0xd6,0x42,0x6b,0x11,0xf6,0xd3,0x5a,0x6c,0x2d,0x61,0x6a,0x61, +0x19,0xd6,0x52,0x6b,0x99,0xb5,0xdc,0x5a,0x61,0xad,0xb4,0x56, +0x59,0xab,0x99,0xda,0x4c,0x1d,0x6b,0x0d,0x53,0x17,0xfb,0xc5, +0xd4,0xb3,0xd6,0x62,0xbf,0xad,0x75,0xd6,0x7a,0x6b,0x83,0xb5, +0x11,0xfb,0xc3,0xd4,0xb7,0x36,0x59,0x9b,0x99,0x06,0xd6,0x16, +0x6b,0x2b,0xd3,0x90,0x69,0xc4,0x34,0xc6,0x32,0xad,0xfd,0x56, +0x9a,0x95,0x6e,0x1d,0xb0,0x0e,0x5a,0x87,0xac,0xc3,0x38,0xc0, +0x34,0xb1,0x8e,0x58,0x47,0x71,0xd0,0x3a,0x66,0x1d,0x67,0x9a, +0xe2,0x90,0x75,0xc2,0x3a,0x69,0x9d,0xb2,0x4e,0x5b,0x67,0xac, +0xb3,0xd6,0x39,0x1c,0xc6,0x11,0xeb,0x3c,0xd3,0x0c,0x47,0x99, +0xe6,0xd6,0x05,0xeb,0xa2,0x75,0xc9,0xba,0x6c,0x5d,0xb1,0xae, +0xe2,0x18,0xd3,0xc2,0xba,0x66,0x5d,0x67,0x5a,0x5a,0x37,0xac, +0x9b,0x4c,0x2b,0xa6,0xb5,0x75,0xcb,0xba,0x6d,0xdd,0xb1,0xee, +0x5a,0xf7,0xac,0xfb,0xd6,0x03,0xa6,0x0d,0xd3,0xd6,0x7a,0xc8, +0xb4,0xb3,0x1e,0xe1,0xb8,0xf5,0xd8,0x7a,0x62,0x3d,0xb5,0x9e, +0x59,0xcf,0xad,0x17,0x38,0x81,0xfb,0x58,0x2f,0xad,0x57,0x78, +0x2e,0xeb,0xb5,0xf5,0x86,0x69,0x8f,0xfb,0x5a,0x6f,0xad,0x77, +0xd6,0x7b,0xeb,0x83,0xf5,0xd1,0xfa,0x64,0x7d,0xc6,0x49,0x9c, +0xb2,0xbe,0x30,0x1d,0xac,0xaf,0x38,0x6d,0x7d,0xb3,0xbe,0x5b, +0x3f,0xac,0x9f,0x4c,0xb8,0x95,0x81,0x33,0x4c,0x47,0xeb,0x97, +0xf5,0x9b,0x89,0xb0,0xfe,0x58,0x99,0x4c,0x24,0x13,0x65,0x03, +0x36,0x68,0x43,0x36,0x6c,0x23,0x36,0x6a,0x63,0xb8,0x1f,0xd3, +0xc9,0xc6,0x99,0xce,0x78,0x6e,0x26,0xda,0x26,0x6c,0x1f,0x3b, +0x97,0xed,0x6b,0x93,0x36,0x85,0xb3,0x4c,0x8c,0x4d,0xdb,0x0c, +0xce,0xd9,0x7e,0x76,0x6e,0xa6,0x0b,0xd3,0xd5,0x66,0x6d,0xce, +0xe6,0x6d,0xc1,0x16,0x6d,0xc9,0x96,0x71,0x9e,0x89,0xb5,0x15, +0x26,0x8e,0x89,0x67,0x12,0x6c,0xd5,0xd6,0x6c,0xdd,0xf6,0xd8, +0x86,0x6d,0xe2,0x02,0x93,0x68,0x5b,0xb6,0x8d,0x67,0xfd,0xff, +0xc7,0xcb,0x74,0x63,0x92,0x6c,0x7f,0x3b,0xc0,0x0e,0xb4,0xf3, +0xd8,0x79,0xed,0x7c,0x76,0x7e,0x26,0x99,0x49,0xb1,0x0b,0x30, +0xdd,0xed,0x82,0x4c,0x0f,0xbb,0x90,0x1d,0x64,0x07,0xdb,0x21, +0x76,0x61,0xa6,0x27,0x2e,0x31,0xbd,0xec,0x50,0x3b,0x8c,0xe9, +0x6d,0x17,0xb1,0x8b,0x32,0x7d,0x98,0xbe,0x76,0x31,0xbb,0xb8, +0x5d,0xc2,0x2e,0x69,0x97,0xb2,0x4b,0xdb,0x65,0x98,0x7e,0x4c, +0x7f,0xbb,0x2c,0x33,0xc0,0x2e,0x87,0xcb,0x76,0x79,0xbb,0x82, +0x5d,0xd1,0xae,0x64,0x57,0xb6,0xab,0xe0,0x0a,0xae,0xda,0x55, +0xed,0x6a,0xb8,0x66,0x57,0xb7,0x6b,0x30,0x03,0x71,0xdd,0xae, +0x89,0x7b,0xec,0x5a,0x76,0x6d,0xbb,0x8e,0x5d,0x17,0x37,0x70, +0x13,0xb7,0xec,0x7a,0xb8,0x6d,0xd7,0x67,0x06,0xd9,0x0d,0xec, +0x86,0x76,0x23,0xbb,0xb1,0xdd,0xc4,0x6e,0x8a,0x3b,0xcc,0x60, +0xbb,0x99,0xdd,0x1c,0xf7,0xda,0x2d,0xec,0x96,0x76,0x2b,0xdc, +0xdf,0x6e,0x6d,0xb7,0xb1,0xdb,0xda,0xed,0xec,0xf6,0x76,0x07, +0x3b,0x1c,0x0f,0x60,0x86,0xd8,0x1d,0x99,0xa1,0x76,0x04,0x33, +0xcc,0x8e,0xb4,0xa3,0xec,0x4e,0x76,0x67,0x3b,0xda,0x8e,0xc1, +0x03,0xf1,0x3c,0x76,0x17,0x3c,0x2f,0x9e,0xcf,0xee,0x6a,0xc7, +0x32,0xc3,0xf1,0xfc,0xcc,0x08,0x3b,0xce,0x8e,0xb7,0x13,0xec, +0x44,0xbb,0x9b,0x9d,0x84,0x17,0xc0,0x0b,0xda,0xc9,0x78,0x21, +0x3c,0x08,0x0f,0xb6,0x53,0xf0,0x10,0x66,0xa4,0xdd,0xdd,0xee, +0xc1,0x8c,0xc2,0x0b,0xe3,0xa1,0x76,0x4f,0xbb,0x17,0x1e,0x86, +0x17,0xc1,0x8b,0xe2,0xc5,0xf0,0xe2,0x78,0x09,0xbc,0x24,0x5e, +0xca,0xee,0x6d,0xf7,0x61,0x46,0xe3,0xa5,0xf1,0x32,0x78,0x59, +0x66,0x0c,0x5e,0x0e,0x2f,0x8f,0x57,0x60,0xc6,0x32,0xe3,0xf0, +0x8a,0x78,0x25,0xbc,0x32,0x33,0x1e,0xaf,0x82,0x57,0xb5,0xfb, +0xda,0xfd,0xf0,0x6a,0x76,0x7f,0x7b,0x00,0x33,0x01,0xaf,0x6e, +0x0f,0xb4,0x07,0xd9,0x83,0xed,0x21,0xf6,0x50,0x7b,0x98,0x3d, +0x1c,0xaf,0x81,0xd7,0xb4,0x47,0xe0,0xb5,0xf0,0xda,0x78,0x1d, +0x7b,0xa4,0x3d,0xca,0x1e,0xcd,0x4c,0x64,0x26,0xd9,0x63,0xf0, +0xba,0x78,0x3d,0x66,0xb2,0x3d,0x16,0xaf,0x6f,0x8f,0xb3,0xc7, +0x33,0x53,0xf0,0x06,0xf6,0x04,0x7b,0x22,0xde,0xd0,0x9e,0x64, +0x4f,0xb6,0xa7,0xd8,0x53,0xf1,0x46,0x78,0x63,0x7b,0x1a,0xde, +0x04,0x6f,0x8a,0x37,0x63,0xa6,0xda,0xd3,0x99,0x69,0x78,0x73, +0x7b,0x06,0xde,0x02,0x6f,0xc9,0x4c,0xb7,0x67,0xda,0xb3,0xf0, +0x56,0xf6,0x6c,0x7b,0x0e,0x33,0x03,0x6f,0x6d,0xcf,0xb5,0xe7, +0xd9,0xf3,0xed,0x05,0xf6,0x42,0x7b,0x91,0xbd,0x98,0x99,0x89, +0xb7,0xb1,0x97,0x30,0xb3,0xf0,0xb6,0x78,0x3b,0x7b,0xa9,0xbd, +0xcc,0x5e,0x6e,0xaf,0xb0,0x57,0xda,0xab,0xf0,0xf6,0x78,0x07, +0x66,0xb6,0xbd,0x1a,0x0f,0xc7,0x3b,0xe2,0x11,0x78,0x24,0x1e, +0x85,0x77,0xc2,0x3b,0x33,0x73,0xec,0x35,0xf6,0x5a,0x7b,0x9d, +0xbd,0x1e,0x8f,0xc6,0x63,0xf0,0x2e,0x78,0x57,0x3c,0x16,0x8f, +0xc3,0xe3,0xed,0x0d,0x78,0x82,0xbd,0x11,0x4f,0xc4,0xbb,0xe1, +0x49,0x78,0xb2,0xbd,0xc9,0xde,0x8c,0xa7,0xd8,0x5b,0xec,0xad, +0xcc,0x5c,0xbc,0xbb,0xbd,0xcd,0xde,0x6e,0xa7,0xda,0x3b,0xec, +0x9d,0xf6,0x2e,0x7b,0x37,0xde,0x03,0xef,0x69,0xef,0xc1,0x7b, +0xe1,0xbd,0xf1,0x3e,0xf6,0x5e,0x7b,0x9f,0xbd,0x9f,0x99,0xc7, +0xcc,0xb7,0xd3,0xf0,0xbe,0x78,0x3f,0xbc,0xbf,0x9d,0x8e,0x0f, +0x60,0x16,0xd8,0x07,0x98,0x85,0xf8,0x40,0xfb,0x20,0x3e,0x08, +0x1f,0xcc,0x2c,0xb2,0x0f,0xd9,0x87,0xed,0x23,0xf8,0x10,0x7c, +0x28,0x3e,0x0c,0x1f,0x8e,0x8f,0xc0,0x47,0xda,0x47,0xed,0x63, +0xcc,0x62,0x7c,0x14,0x3e,0x1a,0x1f,0x83,0x8f,0x65,0x96,0xd8, +0xc7,0xed,0x13,0xf8,0x38,0xfb,0xa4,0x7d,0x0a,0x1f,0x8f,0x4f, +0xb0,0x4f,0xdb,0x67,0xec,0xb3,0xf6,0x39,0xfb,0xbc,0x7d,0xc1, +0xbe,0x88,0x4f,0xc4,0x27,0xd9,0x97,0xf0,0xc9,0xf8,0x14,0x7c, +0xaa,0x7d,0xd9,0xbe,0xc2,0x2c,0xb5,0xaf,0xda,0xd7,0xec,0xeb, +0xf8,0x34,0x7c,0x3a,0x3e,0xc3,0xbe,0x81,0xcf,0xb4,0x6f,0x32, +0xcb,0xf0,0x59,0xf8,0x6c,0x7c,0x0e,0x3e,0x17,0x9f,0x87,0xcf, +0xb7,0x6f,0x31,0xcb,0xf1,0x05,0xf8,0x42,0x7c,0x91,0x7d,0x1b, +0x5f,0x6c,0xdf,0xc1,0x97,0x30,0x2b,0xf0,0xa5,0xf6,0x5d,0x66, +0x25,0xb3,0xca,0xbe,0x87,0x2f,0xc3,0x97,0xdb,0xf7,0xed,0x07, +0xf8,0x0a,0xfb,0xa1,0xfd,0x88,0x59,0x8d,0xaf,0xb4,0x1f,0xdb, +0x4f,0xec,0xa7,0xf6,0x33,0xfb,0x39,0xbe,0xca,0x7e,0x81,0xaf, +0xc6,0xd7,0xd8,0x2f,0xf1,0xb5,0xf8,0x3a,0x7c,0xbd,0xfd,0xca, +0x7e,0x8d,0x6f,0x60,0xd6,0xd8,0x6f,0xec,0xb7,0xf8,0x46,0x7c, +0x93,0xfd,0xce,0x7e,0x8f,0x6f,0xb6,0x3f,0xd8,0x1f,0x99,0xb5, +0xcc,0x3a,0xfb,0x93,0xfd,0xd9,0xfe,0x62,0x7f,0xb5,0xbf,0xd9, +0xdf,0xed,0x1f,0xf8,0x16,0x7c,0xab,0xfd,0x13,0xdf,0x86,0x6f, +0xc7,0x53,0xed,0x0c,0xfb,0x97,0xfd,0xdb,0xfe,0x63,0x67,0x3a, +0x00,0xbe,0x03,0xdf,0xe9,0x80,0x0e,0x84,0xef,0x72,0x60,0x07, +0x61,0xd6,0xe3,0xbb,0x1d,0x94,0xd9,0xe0,0x60,0x0e,0xee,0x10, +0x8e,0x8f,0x93,0x0b,0xdf,0x83,0xef,0x75,0x7c,0xf1,0x7d,0xf8, +0x7e,0x3c,0xcd,0x21,0x1d,0xca,0xa1,0x1d,0x86,0xd9,0xe8,0xf8, +0xe1,0xe9,0xf8,0x01,0x27,0xb7,0xc3,0xe2,0x07,0x1d,0xce,0xe1, +0x99,0x4d,0xf8,0x21,0x66,0xb3,0x23,0x38,0xa2,0x23,0x39,0xb2, +0xa3,0x38,0x2a,0x7e,0x18,0x3f,0xe2,0x68,0xf8,0x51,0x47,0xc7, +0x8f,0x39,0x1e,0xc7,0x60,0xb6,0x38,0xa6,0x63,0x39,0x36,0x7e, +0x1c,0x3f,0xe1,0x38,0x8e,0x17,0x3f,0xe9,0xf8,0x3b,0x01,0xf8, +0x29,0xfc,0x34,0x7e,0x06,0x3f,0xeb,0x04,0x32,0x5b,0x9d,0x3c, +0x4e,0x5e,0x27,0x1f,0x7e,0x0e,0x3f,0x8f,0x5f,0xc0,0x2f,0x3a, +0xf9,0xf1,0x4b,0xcc,0x36,0xfc,0xb2,0x53,0x80,0xd9,0xee,0x14, +0x74,0x0a,0xe1,0x57,0xf0,0xab,0x4e,0x90,0x13,0x8c,0x5f,0x73, +0x42,0x98,0x54,0x66,0x07,0x7e,0xdd,0x29,0xec,0x84,0x3a,0x61, +0xcc,0x4e,0xa7,0x88,0x53,0xd4,0x29,0x86,0xdf,0xc0,0x6f,0x3a, +0xc5,0xf1,0x5b,0xf8,0x6d,0xfc,0x8e,0x53,0xc2,0x29,0xc9,0xec, +0x62,0x76,0x3b,0xa5,0x9c,0xd2,0xf8,0x5d,0xfc,0x9e,0x53,0xc6, +0x29,0x8b,0xdf,0x77,0xca,0x39,0xe5,0x99,0x3d,0xf8,0x03,0xa7, +0x82,0x53,0xd1,0xa9,0xe4,0x54,0x76,0xaa,0x38,0x55,0x9d,0x6a, +0xf8,0x43,0xfc,0x91,0x53,0x1d,0x7f,0xcc,0xec,0xc5,0x9f,0x38, +0x35,0x9c,0x9a,0x4e,0x2d,0x66,0x9f,0x53,0xdb,0xa9,0x83,0x3f, +0xc5,0x9f,0x39,0x75,0x9d,0x7a,0xf8,0x73,0xa7,0xbe,0xd3,0x80, +0xd9,0x8f,0xbf,0x70,0x1a,0x32,0x69,0x4e,0x23,0xa7,0xb1,0xd3, +0xc4,0x69,0xca,0xa4,0xe3,0x2f,0xf1,0x57,0x4e,0x33,0xfc,0x35, +0xfe,0x06,0x7f,0xeb,0x34,0x77,0x5a,0x30,0x07,0x98,0x83,0x4e, +0x4b,0xa7,0x15,0xfe,0x0e,0x7f,0xef,0xb4,0x76,0xda,0xe0,0x1f, +0x9c,0xb6,0x4e,0x3b,0xe6,0x10,0xfe,0xd1,0x69,0xef,0x74,0x70, +0xc2,0x9d,0x8e,0x4e,0x84,0x13,0xe9,0x44,0xe1,0x9f,0xf0,0xcf, +0x4e,0x27,0xfc,0x8b,0xd3,0x19,0xff,0xca,0x1c,0xc6,0xbf,0x31, +0x47,0x98,0xa3,0x4e,0xb4,0x13,0x83,0x7f,0xc7,0x7f,0xe0,0x3f, +0x9d,0x2e,0x78,0x86,0xd3,0xd5,0x89,0xc5,0x7f,0xe1,0xbf,0x99, +0x63,0xcc,0x71,0xfc,0x8f,0x13,0xe7,0xc4,0xe3,0x99,0x4e,0x02, +0x01,0x10,0x20,0x01,0x11,0xb0,0x93,0x48,0x20,0x04,0x4a,0x60, +0x04,0x4e,0x10,0x84,0x0f,0x91,0x8b,0xf0,0x65,0x4e,0x38,0xdd, +0x9c,0x24,0x82,0x74,0x92,0x9d,0x14,0xe6,0x24,0x41,0x39,0xdd, +0x9d,0x1e,0x4e,0x4f,0xa7,0x97,0xd3,0x9b,0x39,0xe5,0xf4,0x21, +0x68,0x82,0x71,0xfa,0x12,0x7e,0x44,0x6e,0x82,0x75,0xfa,0x39, +0xfd,0x9d,0x01,0xce,0x40,0x67,0x90,0x33,0x98,0xe0,0x08,0xde, +0x19,0xe2,0x0c,0x25,0x04,0x67,0x98,0x33,0x9c,0x10,0x09,0x89, +0x90,0x09,0xc5,0x19,0xc1,0x9c,0x76,0x46,0x32,0x67,0x08,0x95, +0xd0,0x08,0x9d,0x39,0x4b,0x78,0x08,0x83,0x30,0x09,0x8b,0x39, +0x47,0xd8,0x84,0x43,0x78,0x99,0xf3,0x84,0x3f,0x11,0xe0,0x8c, +0x62,0x2e,0x10,0x81,0xce,0x68,0x22,0x0f,0x91,0x97,0xc8,0xc7, +0x5c,0x24,0xf2,0x3b,0x63,0x9c,0xb1,0xce,0x38,0x67,0xbc,0x33, +0x81,0x28,0x40,0x14,0x74,0x26,0x12,0x85,0x88,0x20,0x22,0x98, +0x08,0x61,0x2e,0x39,0x93,0x98,0xcb,0xcc,0x15,0xe6,0x2a,0x51, +0x98,0x08,0x75,0x26,0x3b,0x53,0x88,0x30,0x67,0x2a,0x73,0x8d, +0xb9,0x4e,0x14,0x71,0xa6,0x39,0xd3,0x9d,0x19,0xce,0x4c,0x67, +0x96,0x33,0xdb,0x99,0x43,0x14,0x25,0x8a,0x39,0x73,0x89,0xe2, +0x44,0x09,0xa2,0x24,0x73,0xc3,0x99,0xe7,0xcc,0x77,0x16,0x38, +0x0b,0x9d,0x45,0x44,0x29,0xa2,0xb4,0xb3,0xd8,0x59,0x42,0x94, +0x71,0x96,0x12,0x65,0x99,0x9b,0x44,0x39,0x67,0x99,0xb3,0xdc, +0x59,0xe1,0xac,0x74,0x56,0x39,0xab,0x9d,0x35,0x44,0x79,0xe6, +0x96,0xb3,0x96,0xb9,0xed,0xac,0x23,0x2a,0x38,0xeb,0x9d,0x0d, +0xce,0x46,0x67,0x93,0xb3,0xd9,0xd9,0x42,0x54,0x74,0xb6,0x3a, +0xdb,0x9c,0xed,0x44,0x25,0x27,0xd5,0xd9,0xc1,0xdc,0x21,0x2a, +0x3b,0x3b,0x9d,0x5d,0xce,0x6e,0x67,0x8f,0xb3,0xd7,0xd9,0xe7, +0xec,0x67,0xee,0x12,0x55,0x9c,0x34,0xe6,0x9e,0x93,0xce,0xdc, +0x77,0x0e,0x38,0x07,0x9d,0x43,0xce,0x61,0xe7,0x88,0x73,0x94, +0xa8,0x4a,0x54,0x23,0xaa,0x3b,0xc7,0x88,0x1a,0xce,0x71,0xe6, +0x01,0x51,0x93,0xa8,0x45,0xd4,0x26,0xea,0x10,0x75,0x9d,0x13, +0xce,0x49,0xe7,0x94,0x73,0x9a,0xa8,0x47,0xd4,0x77,0xce,0x10, +0x0d,0x88,0x86,0x44,0x23,0xa2,0xb1,0x73,0xd6,0x39,0xc7,0x3c, +0x74,0xce,0x33,0x8f,0x88,0x26,0x44,0x53,0xe7,0x82,0x73,0x91, +0x68,0xe6,0x5c,0x72,0x2e,0x33,0x8f,0x89,0xe6,0xce,0x15,0xe7, +0xaa,0x73,0xcd,0xb9,0xee,0xdc,0x70,0x6e,0x3a,0xb7,0x88,0x16, +0x44,0x4b,0xe7,0x36,0xd1,0x8a,0x79,0x42,0xb4,0x66,0x9e,0x3a, +0x77,0x9c,0xbb,0xce,0x3d,0xe6,0x99,0x73,0x9f,0x68,0x43,0xb4, +0x75,0x1e,0x38,0x0f,0x89,0x76,0xce,0x23,0xe7,0x31,0xf3,0x9c, +0x68,0xcf,0xbc,0x20,0x3a,0x30,0x2f,0x9d,0x27,0xce,0x53,0xe7, +0x19,0xf3,0x8a,0x08,0x27,0x3a,0x3a,0xcf,0x89,0x08,0x22,0x92, +0x88,0x62,0x5e,0x3b,0x2f,0x9c,0x97,0xcc,0x1b,0xe7,0x15,0xf3, +0x96,0xe8,0xc4,0xbc,0x73,0x5e,0x3b,0x6f,0x98,0xf7,0xce,0x5b, +0xe7,0x9d,0xf3,0x9e,0xf9,0xe0,0x7c,0x70,0x3e,0x3a,0x9f,0x9c, +0xcf,0xce,0x17,0xe7,0xab,0xf3,0x8d,0xf9,0xc8,0x7c,0x72,0xbe, +0x33,0x9f,0x9d,0x1f,0xcc,0x17,0xe7,0xa7,0x93,0xe1,0xfc,0x72, +0x7e,0x3b,0x7f,0x9c,0x4c,0xa2,0x33,0x11,0xed,0x05,0xbc,0x20, +0x11,0xe3,0x85,0xbc,0x30,0xf3,0x95,0xe8,0xe2,0x45,0x88,0xae, +0x5e,0xd4,0x8b,0x79,0x71,0x2f,0xe1,0xf5,0x21,0x62,0x89,0x38, +0x6f,0x2e,0x22,0xde,0xeb,0x4b,0x24,0x10,0x89,0x44,0x37,0x2f, +0xe9,0xa5,0xbc,0x34,0x91,0x44,0x24,0x13,0x29,0x5e,0xc6,0xeb, +0x47,0x74,0xf7,0xe6,0x66,0xbe,0x31,0xdf,0x89,0x1e,0xcc,0x0f, +0x2f,0xeb,0xe5,0xbc,0xbc,0x57,0xf0,0x8a,0x5e,0x89,0xf9,0x49, +0xf4,0xf4,0xca,0x44,0x2f,0x26,0x83,0xe8,0xed,0x55,0xbc,0xaa, +0x57,0xf3,0xea,0x44,0x1f,0xaf,0x87,0xe8,0xcb,0xfc,0xf2,0x1a, +0x5e,0x93,0xe8,0xe7,0xb5,0xbc,0x36,0xf3,0x9b,0xf9,0xe3,0x75, +0xbc,0x5e,0xaf,0xbf,0x37,0xc0,0x1b,0xe8,0xcd,0xe3,0xcd,0xcb, +0x64,0x7a,0xf3,0x79,0xf3,0xfb,0x01,0x44,0x7f,0x62,0x80,0xb7, +0x80,0xb7,0xa0,0xb7,0x90,0x37,0xc8,0x1b,0xec,0x0d,0x21,0x06, +0x12,0x83,0xbc,0x85,0xbd,0xa1,0xc4,0x60,0x6f,0x98,0xb7,0x88, +0x1f,0x48,0x0c,0xf1,0x16,0xf5,0x16,0xf3,0x16,0xf7,0x96,0xf0, +0x96,0xf4,0x96,0xf2,0x96,0x26,0x86,0x12,0xc3,0xbc,0x65,0x88, +0xe1,0x7e,0x10,0x31,0xc2,0x5b,0xd6,0x5b,0xce,0x5b,0xde,0x5b, +0xc1,0x5b,0xd1,0x5b,0x89,0x18,0x49,0x8c,0xf2,0x56,0xf6,0x56, +0x21,0x46,0x7b,0xab,0x7a,0xab,0xf9,0xc1,0x7e,0x88,0xb7,0xba, +0xb7,0x86,0xb7,0xa6,0xb7,0x96,0xb7,0xb6,0xb7,0x8e,0xb7,0xae, +0x1f,0xea,0x87,0x79,0xeb,0xf9,0xe1,0xde,0xfa,0xc4,0x18,0x6f, +0x03,0x6f,0x43,0x6f,0x23,0x6f,0x63,0x6f,0x13,0x3f,0x82,0x18, +0x4b,0x8c,0xf3,0x36,0xf5,0x36,0x23,0xc6,0x7b,0x9b,0x7b,0x5b, +0xf8,0xf9,0x10,0x13,0x88,0x89,0xc4,0x24,0x6f,0x4b,0xbf,0x5c, +0xde,0x56,0xde,0xd6,0xde,0x36,0xc4,0x64,0x62,0x8a,0xb7,0x2d, +0xf1,0xff,0xf1,0x74,0x9e,0x51,0x52,0x94,0xcf,0xdb,0xde,0x99, +0x1e,0x75,0x3a,0x69,0xf7,0xe4,0x59,0x23,0x74,0x0e,0xec,0x12, +0xcc,0xa2,0x62,0x4e,0x28,0x98,0x01,0x13,0x2a,0x28,0x12,0x14, +0x15,0x73,0xc2,0x08,0xe6,0x9c,0xb3,0x82,0x82,0x4e,0xce,0xb3, +0x26,0x54,0x54,0xcc,0x01,0xcc,0xa8,0x98,0x31,0xa3,0xa2,0xa2, +0xa2,0xbe,0x77,0xfd,0xeb,0x77,0xde,0x0f,0xd7,0xe9,0x61,0x76, +0xb6,0xfb,0xe9,0x7a,0xaa,0xae,0xaa,0x06,0xce,0xee,0x8d,0xc6, +0x91,0xf1,0x9b,0x8c,0xa3,0x8c,0x89,0xc6,0xd1,0xc6,0x31,0xc6, +0xb1,0x9a,0x1c,0xbf,0x59,0x53,0x8c,0x49,0xc6,0x64,0x4d,0x35, +0x8e,0x33,0x8e,0xd7,0xd6,0xd7,0x36,0x30,0xa6,0x18,0x27,0x18, +0x53,0x8d,0x69,0xc6,0x74,0x63,0x86,0x71,0xa2,0xa6,0x69,0xba, +0x71,0x92,0x96,0x88,0xdf,0xa2,0x25,0x8d,0x99,0xc6,0xc9,0xc6, +0x29,0xc6,0xa9,0xc6,0x2c,0xe3,0xb4,0xf8,0xad,0x5a,0xca,0x38, +0xdd,0x38,0x43,0x4b,0x1b,0x67,0x1a,0x67,0x69,0x19,0x2d,0x6b, +0x9c,0x6d,0x9c,0x63,0x9c,0x6b,0x9c,0x67,0x9c,0x6f,0x5c,0x60, +0xcc,0xd6,0x72,0x5a,0xde,0xb8,0x50,0xeb,0xd5,0x36,0xd4,0x36, +0x32,0x2e,0x32,0x2e,0x36,0x2e,0x31,0x2e,0x35,0x2e,0x33,0xe6, +0xc4,0x6f,0x8b,0xdf,0x6e,0xcc,0x35,0x2e,0x8f,0xdf,0x61,0x5c, +0x61,0x5c,0xa9,0x6d,0x1c,0xbf,0xd3,0xb8,0xca,0xb8,0xda,0xb8, +0xc6,0xb8,0xd6,0xb8,0xce,0xb8,0xde,0xb8,0x21,0x7e,0x57,0xfc, +0x6e,0xe3,0xc6,0xf8,0x3d,0xc6,0x4d,0xda,0x26,0xc6,0xcd,0xc6, +0x2d,0xc6,0xad,0xc6,0x6d,0xc6,0xed,0xc6,0x1d,0xf1,0x7b,0xe3, +0xf7,0x19,0x77,0x1a,0x77,0xc5,0xef,0x37,0xee,0x36,0xee,0x31, +0xee,0x8d,0x3f,0x60,0xdc,0x67,0xdc,0x6f,0x3c,0x60,0x3c,0x68, +0xcc,0x33,0xe6,0x1b,0x0f,0xc5,0x1f,0xd4,0x36,0x35,0x1e,0xd6, +0x36,0x33,0x16,0xc4,0xe7,0x19,0x0b,0x8d,0x47,0x8c,0x47,0x8d, +0x82,0x51,0x34,0x4a,0xf1,0xf9,0xf1,0x87,0x8c,0xb2,0x51,0x89, +0x3f,0x6c,0x54,0x8d,0x9a,0x36,0x28,0xbe,0x40,0x1b,0x1c,0x5f, +0x68,0xd4,0x35,0xc3,0x68,0x18,0x4d,0xa3,0x15,0x7f,0x24,0xfe, +0xa8,0xd1,0x8e,0x17,0x8c,0x4e,0xbc,0xa8,0x99,0x46,0xd7,0x18, +0x30,0x1e,0x33,0x1e,0x37,0x9e,0x88,0x97,0x34,0xcb,0x78,0xd2, +0x78,0x4a,0xb3,0x8d,0x45,0xc6,0xd3,0xc6,0x33,0x9a,0x63,0x3c, +0x6b,0x2c,0x36,0x9e,0x33,0x9e,0x37,0x5e,0x30,0x96,0x18,0x2f, +0x6a,0xae,0xe6,0x19,0x2f,0x69,0xbe,0xf1,0xb2,0x16,0x18,0xaf, +0x18,0xaf,0x1a,0xaf,0x19,0xaf,0x1b,0x6f,0x18,0x6f,0xc6,0xcb, +0xf1,0x8a,0xf1,0x96,0xb1,0x34,0x5e,0x35,0x96,0x19,0x6f,0xc7, +0x6b,0xf1,0xba,0xf1,0x4e,0xbc,0x61,0xbc,0x6b,0xbc,0x67,0xbc, +0x6f,0x7c,0xa0,0x85,0xf1,0x66,0xbc,0xa5,0x0d,0x89,0xb7,0xe3, +0x9d,0x78,0x37,0x3e,0x10,0x7f,0xcc,0xf8,0x30,0xfe,0x78,0xfc, +0x09,0xad,0x2f,0xfe,0x64,0xfc,0x29,0xad,0xdf,0x58,0x1e,0x5f, +0x64,0x7c,0x14,0x7f,0x3a,0xfe,0x4c,0xfc,0x59,0xe3,0x63,0xe3, +0x93,0xf8,0x62,0x6d,0xa8,0xb1,0xc2,0xf8,0xd4,0xf8,0x2c,0xfe, +0x5c,0xfc,0x79,0xe3,0xf3,0xf8,0x0b,0xf1,0x25,0xf1,0x17,0xe3, +0x2f,0x19,0x5f,0x18,0x5f,0x1a,0x5f,0x19,0x5f,0x6b,0xc3,0xe2, +0x2f,0xc7,0x5f,0x31,0x56,0x1a,0xdf,0xc4,0x5f,0x35,0xbe,0x35, +0xbe,0xd3,0x86,0xc7,0x5f,0x33,0xbe,0x37,0x7e,0x30,0x7e,0x34, +0x7e,0x32,0x56,0x19,0x3f,0x1b,0xbf,0xc4,0x5f,0x8f,0xbf,0x61, +0xfc,0x1a,0x7f,0x33,0xfe,0x56,0x7c,0xa9,0xb1,0xda,0xf8,0xcd, +0xf8,0xdd,0xf8,0xc3,0x58,0x63,0xfc,0x19,0x5f,0xa6,0x8d,0x30, +0xfe,0x32,0xfe,0x8e,0xbf,0x6d,0xac,0xd5,0x36,0x37,0xfe,0xd1, +0xb6,0x30,0xfe,0x35,0xfe,0x33,0x7b,0xcc,0x88,0x19,0x35,0x05, +0x33,0x16,0x7f,0x47,0xdb,0xd2,0x5c,0x47,0xdb,0xca,0x5c,0x37, +0xfe,0xae,0xb9,0x9e,0x19,0x37,0x45,0x6d,0x6b,0x53,0x32,0xe5, +0xf8,0x7b,0xa6,0x62,0xaa,0xe6,0xfa,0xda,0x36,0xf1,0xf7,0xe3, +0x1f,0x98,0xb6,0xe9,0xc4,0x3f,0x34,0x5d,0xd3,0xd3,0xb6,0x8d, +0x2f,0x37,0x7d,0x33,0xd0,0xb6,0xd3,0x46,0x9a,0xa1,0x39,0x44, +0xdb,0x3e,0xfe,0x51,0xfc,0x63,0xb3,0x2f,0xfe,0x49,0x7c,0x45, +0xfc,0x53,0xb3,0xdf,0x1c,0x6a,0x0e,0x33,0x87,0x9b,0x23,0xb4, +0x1d,0xe2,0x9f,0x69,0x3b,0x9a,0x9b,0x9b,0x5b,0x68,0xa3,0xcc, +0x2d,0xcd,0xad,0xb4,0x9d,0xe2,0x9f,0x9b,0x5b,0x9b,0xdb,0x98, +0xdb,0x9a,0xdb,0x99,0x23,0xcd,0xed,0xcd,0x1d,0xb4,0x9d,0xb5, +0x5d,0xcc,0x1d,0xb5,0x5d,0xb5,0xdd,0xe2,0x5f,0x98,0xa3,0xcc, +0x9d,0xcc,0x9d,0xb5,0xdd,0xcd,0x5d,0xcc,0x5d,0xe3,0x5f,0x6a, +0x7b,0x98,0xbb,0x99,0xbb,0x6b,0x7b,0x9a,0x7b,0x98,0x7b,0x6a, +0x7b,0x69,0x7b,0x9b,0x7b,0x99,0x7b,0x9b,0xfb,0x98,0xa3,0xcd, +0x7d,0xcd,0xfd,0xcc,0x31,0xda,0x3e,0xda,0x68,0x73,0xac,0xb6, +0x6f,0xfc,0x2b,0x6d,0x3f,0x73,0x7f,0xf3,0x00,0xf3,0x40,0xf3, +0x20,0xf3,0x60,0xf3,0x10,0x6d,0x8c,0x36,0xd6,0x3c,0xd4,0x1c, +0xa7,0xed,0x6f,0x8e,0x37,0x27,0x98,0x87,0x69,0x07,0x98,0x87, +0x9b,0x47,0x98,0x47,0x9a,0x47,0x99,0x13,0xcd,0xa3,0xcd,0x63, +0xb4,0x03,0xb5,0x83,0xcc,0x63,0xb5,0x83,0xcd,0x49,0xda,0x21, +0xe6,0x64,0xf3,0x38,0xf3,0x78,0x73,0x8a,0x79,0x82,0x39,0x35, +0xfe,0x75,0x7c,0xa5,0x76,0xa8,0x39,0x2d,0xfe,0x8d,0x39,0xdd, +0x9c,0x11,0xff,0x36,0xfe,0x9d,0x79,0xa2,0x36,0xce,0x3c,0xc9, +0x9c,0x69,0x9e,0x6c,0x9e,0x62,0x9e,0x1a,0xff,0x3e,0xfe,0x83, +0x39,0x2b,0xfe,0xa3,0x79,0x5a,0xfc,0xa7,0xf8,0xaa,0xf8,0xcf, +0xe6,0xe9,0xe6,0x19,0xe6,0x99,0xda,0xf8,0xf8,0x2f,0xf1,0x5f, +0xcd,0xb3,0xcc,0xb3,0xe3,0xab,0xcd,0x73,0xcc,0x73,0xb5,0x09, +0xf1,0xdf,0xcc,0xf3,0xcc,0xf3,0xcd,0x0b,0xcc,0xd9,0xe6,0x85, +0xe6,0x45,0xe6,0xc5,0xda,0x61,0xda,0xe1,0xe6,0x25,0xda,0x11, +0xf1,0xdf,0xb5,0x23,0xcd,0x4b,0xcd,0xcb,0xcc,0x39,0xe6,0x5c, +0xf3,0x72,0xf3,0x8a,0xf8,0x1f,0xda,0x51,0xe6,0x95,0xe6,0x55, +0xda,0x44,0xf3,0x6a,0xf3,0x1a,0xed,0x68,0xed,0x98,0xf8,0x1a, +0xf3,0x0e,0xf3,0x4e,0xf3,0x2e,0xf3,0x6e,0xf3,0x1e,0xf3,0x5e, +0xf3,0xbe,0xf8,0x9f,0xda,0xb1,0xe6,0xfd,0xe6,0x03,0xf1,0xbf, +0xcc,0x07,0xcd,0x79,0xda,0xa4,0xf8,0xdf,0xe6,0x7c,0xf3,0x21, +0xf3,0x61,0x73,0x81,0xb9,0xd0,0x7c,0xc4,0x7c,0x34,0xbe,0x36, +0xfe,0x8f,0x59,0xd0,0x26,0x6b,0xc7,0x69,0xc7,0x9b,0xc5,0xf8, +0xbf,0x66,0xc9,0x2c,0x9b,0x15,0xb3,0x1a,0xff,0x4f,0xec,0x31, +0x6b,0x66,0x5d,0x9b,0x62,0x36,0xc4,0x88,0xd9,0xd4,0x4e,0x30, +0x5b,0x66,0xdb,0xec,0x98,0x5d,0x73,0xc0,0x7c,0xcc,0x7c,0x5c, +0x9b,0xaa,0x4d,0x33,0x9f,0xd0,0xa6,0x9b,0x4f,0x8a,0x51,0xf3, +0x29,0x73,0x91,0xf9,0xb4,0xf9,0x8c,0xf9,0xac,0xb9,0x58,0x14, +0xc4,0x98,0x36,0xc3,0x7c,0x4e,0x5c,0xc7,0x7c,0xde,0x7c,0x41, +0x3b,0x51,0x5c,0xd7,0x5c,0xa2,0x9d,0x64,0xbe,0x68,0xbe,0x64, +0xbe,0x6c,0xbe,0x62,0xbe,0x2a,0xae,0x27,0xc6,0xcd,0xd7,0x44, +0xd1,0x7c,0x5d,0x94,0xcc,0x37,0xcc,0x37,0xcd,0xb7,0xcc,0xa5, +0xe6,0x32,0xf3,0x6d,0x51,0xd6,0x66,0x9a,0xef,0x98,0xef,0x6a, +0x27,0x9b,0xef,0x99,0xef,0x6b,0xa7,0x68,0xa7,0x9a,0x1f,0x98, +0x1f,0x9a,0xcb,0xcd,0x8f,0xcc,0x8f,0xcd,0x4f,0xcc,0x15,0xda, +0x2c,0xed,0x34,0xf3,0x53,0xed,0x74,0x51,0x11,0x55,0xf3,0x33, +0xf3,0x73,0xf3,0x0b,0xf3,0x4b,0xf3,0x2b,0xf3,0x6b,0x71,0x7d, +0xed,0x0c,0x73,0xa5,0xf9,0x8d,0x76,0xa6,0xf9,0xad,0xf9,0x9d, +0x76,0x96,0x76,0xb6,0xf9,0xbd,0xf9,0x83,0xf9,0xa3,0xf9,0x93, +0xb9,0xca,0xfc,0xd9,0xfc,0x45,0x3b,0x47,0x3b,0xd7,0xfc,0x55, +0xdc,0x40,0x3b,0x4f,0x3b,0xdf,0x5c,0x6d,0xfe,0x66,0xfe,0x6e, +0xfe,0x61,0xae,0x31,0xff,0x14,0x35,0xed,0x02,0xf3,0x2f,0xf3, +0x6f,0x6d,0xb6,0xb9,0xd6,0xfc,0x47,0xbb,0x50,0xbb,0xc8,0xfc, +0xd7,0xfc,0xcf,0xea,0xb1,0x22,0x56,0xd4,0x12,0xac,0x98,0x76, +0xb1,0x76,0x89,0xb5,0x8e,0x76,0xa9,0xb5,0xae,0x76,0x99,0xb5, +0x9e,0x15,0xb7,0x44,0x4b,0xb2,0x64,0x4b,0x11,0x75,0x6d,0x8e, +0xa5,0x5a,0xeb,0x6b,0x73,0xad,0x0d,0x2c,0xcd,0xd2,0xb5,0xcb, +0xad,0x84,0x95,0xb4,0x52,0x56,0xda,0xca,0x58,0x59,0x2b,0xa7, +0x5d,0xa1,0x5d,0x69,0xe5,0xb5,0xab,0xac,0x5e,0x31,0x61,0x6d, +0x68,0x6d,0x64,0x6d,0x6c,0x6d,0x62,0x6d,0x6a,0x6d,0x26,0x26, +0xc5,0x94,0x35,0xc8,0x1a,0xac,0x5d,0x6d,0x19,0x96,0xa9,0x5d, +0xa3,0x5d,0x6b,0x59,0x96,0x6d,0x39,0x96,0x6b,0x79,0x96,0x6f, +0x05,0x62,0x5a,0xbb,0xce,0x0a,0xc5,0x8c,0x35,0x44,0xcc,0x6a, +0xd7,0x5b,0x7d,0x56,0xbf,0x35,0xd4,0x1a,0x66,0x0d,0xd7,0x6e, +0xd0,0x6e,0xb4,0x46,0x58,0x9b,0x6b,0x37,0x59,0x5b,0x58,0x5b, +0x5a,0x5b,0x69,0x37,0x5b,0x5b,0x5b,0xdb,0x58,0xdb,0x5a,0xdb, +0x59,0x23,0xad,0xed,0xad,0x1d,0xb4,0x5b,0xb4,0x5b,0xad,0x1d, +0xb5,0xdb,0xac,0x51,0xda,0xed,0xda,0x1d,0xd6,0x4e,0xd6,0xce, +0xd6,0x2e,0xd6,0xae,0xd6,0x6e,0x62,0x4e,0xcc,0x5b,0xbb,0x5b, +0x7b,0x88,0xbd,0xd6,0x9e,0xd6,0x5e,0xe2,0x86,0xe2,0x46,0xd6, +0xde,0xd6,0x3e,0xd6,0x68,0x6b,0x5f,0x6b,0x3f,0x6b,0x8c,0x35, +0x56,0xdc,0x58,0xdc,0xc4,0xda,0x5f,0xdc,0xd4,0x3a,0x40,0xdc, +0x4c,0x1c,0x64,0x1d,0x68,0x1d,0x64,0x1d,0x2c,0x0e,0x16,0x0d, +0xd1,0x14,0x2d,0xeb,0x10,0xeb,0x50,0xd1,0xb6,0xc6,0x89,0x8e, +0x76,0xa7,0xe8,0x6a,0x77,0x59,0xe3,0xad,0x09,0xd6,0x61,0xd6, +0xe1,0xd6,0x11,0xd6,0x91,0xa2,0x27,0xfa,0xd6,0x51,0x62,0x20, +0x86,0xe2,0x10,0xb1,0x4f,0xec,0xb7,0x26,0x5a,0x47,0x6b,0x77, +0x5b,0xc7,0x88,0x43,0xc5,0x61,0xd6,0xb1,0xd6,0x24,0x71,0xb8, +0x35,0xd9,0x3a,0x4e,0xbb,0x47,0x1c,0x61,0x1d,0x6f,0x4d,0xb1, +0x4e,0xb0,0xa6,0x5a,0xd3,0xac,0xe9,0xd6,0x0c,0x71,0x73,0x71, +0x0b,0xeb,0x44,0x71,0x4b,0x71,0x2b,0x71,0x6b,0xeb,0x24,0xed, +0x5e,0x6b,0xa6,0x75,0xb2,0x76,0x9f,0x75,0x8a,0xb8,0x8d,0x76, +0xbf,0x75,0xaa,0x35,0x4b,0xdc,0xd6,0x3a,0x4d,0xdc,0xce,0x3a, +0x5d,0x1c,0x69,0x9d,0x61,0x9d,0x69,0x9d,0x65,0x9d,0x6d,0x9d, +0x63,0x9d,0x6b,0x9d,0x27,0x6e,0xaf,0x3d,0x60,0x9d,0xaf,0x3d, +0x68,0x5d,0x20,0xee,0x60,0xcd,0xb6,0x2e,0xb4,0x2e,0xb2,0x2e, +0xd6,0xe6,0x59,0x97,0x68,0xf3,0xb5,0x87,0xac,0xdb,0xad,0x3b, +0xac,0x3b,0xad,0xbb,0xac,0xbb,0xad,0x7b,0xc4,0x1d,0xc5,0x51, +0xd6,0xbd,0xd6,0x7d,0xe2,0x4e,0xd6,0xfd,0xd6,0x03,0xda,0xc3, +0xe2,0xce,0xd6,0x83,0xd6,0x3c,0x6b,0xbe,0xf5,0x90,0xf5,0xb0, +0xb5,0x40,0x5b,0x20,0xee,0x22,0xee,0x6a,0x2d,0x14,0x77,0x13, +0x77,0x17,0xf7,0xd0,0x16,0x5a,0x8f,0x58,0x8f,0x5a,0x05,0xed, +0x11,0xab,0x28,0xee,0x29,0xee,0x65,0x95,0xac,0xb2,0xb8,0xb7, +0x55,0xb1,0xaa,0xda,0xa3,0xe2,0x3e,0x56,0xcd,0xaa,0x5b,0x0d, +0xab,0x69,0xb5,0xac,0xb6,0x56,0x10,0x47,0x8b,0xfb,0x5a,0x1d, +0x71,0x3f,0xad,0x28,0x8e,0x11,0xc7,0x5a,0x5d,0x6b,0xc0,0x7a, +0xcc,0x7a,0xdc,0x7a,0x42,0xdc,0x5f,0x2b,0x59,0x4f,0x5a,0x4f, +0x89,0x07,0x58,0x8b,0xac,0xa7,0xb5,0xb2,0x56,0xb1,0x9e,0xb1, +0x9e,0xb5,0x16,0x5b,0xcf,0x59,0xcf,0x5b,0x2f,0x58,0x4b,0xb4, +0xaa,0x78,0xa0,0xf5,0xa2,0x56,0x13,0x0f,0x12,0x0f,0xb6,0x5e, +0xb2,0x5e,0xb6,0x5e,0xb1,0x5e,0xb5,0x5e,0xb3,0x5e,0x17,0x0f, +0xd1,0xea,0xd6,0x1b,0xd6,0x9b,0xe2,0xa1,0xd6,0x5b,0xd6,0x52, +0x6b,0x99,0xd6,0xb0,0xde,0xb6,0xde,0xb1,0xde,0xb5,0xde,0xb3, +0xde,0xb7,0x3e,0xb0,0x3e,0xd4,0x9a,0x5a,0xcb,0x5a,0xae,0xb5, +0xad,0x8f,0xc4,0x71,0xd6,0xc7,0xd6,0x27,0xd6,0x0a,0xeb,0x53, +0xeb,0x33,0xeb,0x73,0x71,0xbc,0x38,0xc1,0xfa,0xc2,0xfa,0x52, +0x3c,0xcc,0xfa,0xca,0xfa,0x5a,0xeb,0x88,0x87,0x5b,0x2b,0xad, +0x6f,0xac,0x6f,0xad,0xef,0xac,0xef,0xad,0x1f,0xac,0x1f,0xc5, +0x23,0xc4,0x23,0xad,0x9f,0xc4,0xa3,0xac,0x55,0xe2,0x44,0xeb, +0x67,0xeb,0x17,0xeb,0x57,0x6b,0xb5,0xf5,0x9b,0x78,0xb4,0x78, +0x8c,0x78,0xac,0xf5,0xbb,0xf5,0x87,0x38,0xc9,0x5a,0x63,0xfd, +0xa9,0x75,0xc5,0xc9,0xd6,0x5f,0xd6,0xdf,0xd6,0x5a,0xeb,0x1f, +0xeb,0x5f,0xeb,0x3f,0xbb,0x47,0x1b,0x10,0x8f,0xb3,0x23,0xda, +0x63,0x76,0x54,0x3c,0xde,0x16,0xec,0x98,0xbd,0x8e,0xbd,0xae, +0xbd,0x9e,0x1d,0x17,0xa7,0xd8,0xa2,0x2d,0xd9,0xb2,0xf6,0xb8, +0xf6,0x84,0xf6,0xa4,0xdd,0x6b,0x6f,0x68,0x6f,0x64,0x6f,0x6c, +0x6f,0x62,0x6f,0x6a,0x6f,0x26,0x9e,0xa0,0x3d,0x65,0x0f,0xb2, +0x07,0x8b,0x53,0x6d,0xc3,0x36,0xb5,0x45,0xe2,0x34,0xdb,0xb2, +0x6d,0xdb,0xb1,0x5d,0xdb,0xb3,0x7d,0x3b,0x10,0xa7,0x8b,0x33, +0xec,0x50,0x3c,0x51,0x7b,0x5a,0x3c,0xc9,0x1e,0x62,0xf7,0xd9, +0xfd,0xf6,0x50,0x7b,0x98,0x3d,0x5c,0x9c,0xa9,0x3d,0x63,0x8f, +0xb0,0x37,0xd7,0x9e,0xb5,0xb7,0xb0,0xb7,0xb4,0xb7,0xd2,0x16, +0xdb,0x5b,0xdb,0xdb,0xd8,0xdb,0xda,0xdb,0xd9,0x23,0xed,0xed, +0xed,0x1d,0xc4,0x93,0xb5,0xe7,0xec,0x1d,0xb5,0xe7,0xed,0x51, +0xda,0x0b,0xf6,0x4e,0xf6,0xce,0xf6,0x2e,0xf6,0xae,0xf6,0x6e, +0xf6,0xee,0xe2,0x29,0xe2,0xa9,0xf6,0x1e,0xf6,0x9e,0xe2,0x2c, +0x7b,0x2f,0x7b,0x6f,0x6d,0x89,0x78,0x9a,0xbd,0x8f,0x3d,0xda, +0xde,0xd7,0xde,0xcf,0x1e,0x63,0x8f,0xb5,0xf7,0x17,0x4f,0x17, +0xcf,0xb0,0x0f,0x10,0xcf,0xb4,0x0f,0x14,0xcf,0xb2,0x0f,0xb2, +0x0f,0xb6,0x0f,0xb1,0x0f,0xb5,0xc7,0xd9,0xe3,0xc5,0xb3,0xb5, +0x17,0xed,0x09,0xf6,0x61,0xda,0x4b,0xf6,0xe1,0xf6,0x11,0xda, +0xcb,0xda,0x2b,0xf6,0x91,0xf6,0x51,0xf6,0x44,0xfb,0x68,0xfb, +0x18,0xfb,0x58,0x7b,0x92,0xf6,0xaa,0xf6,0x9a,0x3d,0x59,0x7b, +0x5d,0x3c,0x47,0x7b,0xc3,0x3e,0xce,0x3e,0xde,0x9e,0x62,0x9f, +0x60,0x4f,0xb5,0xa7,0x89,0xe7,0x8a,0xe7,0xd9,0xd3,0xed,0x19, +0xe2,0xf9,0xf6,0x89,0xf6,0x49,0xf6,0x4c,0xf1,0x02,0xfb,0x64, +0xfb,0x14,0xfb,0x54,0x7b,0x96,0x7d,0x9a,0x7d,0xba,0x7d,0x86, +0xf6,0xa6,0xf6,0x96,0x7d,0xa6,0xb6,0x54,0x5b,0xa6,0xbd,0x6d, +0x9f,0x65,0x9f,0x6d,0x9f,0x63,0x9f,0x6b,0x9f,0x67,0x9f,0x2f, +0xce,0xd6,0xde,0xb1,0x2f,0xb0,0x67,0x8b,0x17,0xda,0x17,0xda, +0x17,0x69,0xef,0x8a,0x17,0xd9,0x17,0xdb,0x97,0xd8,0x97,0xda, +0x97,0xd9,0x73,0xec,0xb9,0xf6,0xe5,0xe2,0xc5,0xe2,0x25,0xf6, +0x15,0xe2,0xa5,0xf6,0x95,0xe2,0x65,0xf6,0x55,0xf6,0xd5,0xf6, +0x35,0xf6,0xb5,0xf6,0x75,0xf6,0xf5,0xe2,0x1c,0x71,0xae,0x7d, +0x83,0x7d,0xa3,0x78,0xb9,0x7d,0x93,0x7d,0xb3,0x7d,0x8b,0x78, +0x85,0x7d,0xab,0x7d,0x9b,0x7d,0xbb,0x7d,0x87,0x7d,0xa7,0x7d, +0x97,0x7d,0xb7,0x78,0xa5,0xf6,0x9e,0x7d,0x8f,0xf6,0xbe,0x7d, +0xaf,0x78,0x95,0x7d,0x9f,0x7d,0xbf,0xfd,0x80,0xfd,0xa0,0x3d, +0xcf,0x9e,0x2f,0x5e,0x2d,0x5e,0x63,0x3f,0x64,0x3f,0x2c,0x5e, +0x6b,0x2f,0xb0,0x17,0x6a,0x1f,0x88,0xd7,0x89,0xd7,0xdb,0x8f, +0xd8,0x8f,0x6a,0x1f,0xda,0x05,0xbb,0x68,0x97,0xc4,0x1b,0xc4, +0x1b,0xed,0xb2,0x78,0x93,0x5d,0x11,0x6f,0xb6,0xab,0x76,0xcd, +0xae,0xdb,0x0d,0xbb,0x69,0xb7,0xc4,0x5b,0xb4,0xe5,0x76,0xdb, +0xee,0x68,0x1f,0xd9,0x5d,0x7b,0xc0,0x7e,0x4c,0xfb,0xd8,0x7e, +0xdc,0x7e,0xc2,0x7e,0xd2,0x7e,0xca,0x5e,0x64,0x3f,0x6d,0x3f, +0xa3,0x7d,0xa2,0xad,0xb0,0x9f,0xd5,0x3e,0xb5,0x17,0x6b,0x9f, +0xd9,0xcf,0xd9,0xcf,0xdb,0x2f,0xd8,0x4b,0xec,0x17,0xed,0x97, +0xc4,0x5b,0xc5,0xdb,0xec,0x97,0xed,0x57,0xc4,0xdb,0xed,0x57, +0xed,0xd7,0xc4,0x3b,0xc4,0x3b,0xc5,0xbb,0xc4,0xbb,0xed,0xd7, +0xed,0x37,0xec,0x37,0xed,0xb7,0xec,0xa5,0xe2,0x3d,0xe2,0xbd, +0xf6,0x32,0xf1,0x3e,0xf1,0x7e,0xf1,0x01,0xf1,0x41,0xfb,0x6d, +0x71,0x9e,0xfd,0x8e,0xf6,0xb9,0xfd,0xae,0x38,0x5f,0x7c,0xc8, +0x7e,0xcf,0x7e,0x5f,0x7c,0xd8,0xfe,0xc0,0xfe,0x50,0x5c,0x20, +0x2e,0xb4,0x97,0xdb,0x1f,0xd9,0x1f,0xdb,0x9f,0xd8,0x2b,0xec, +0x4f,0xed,0xcf,0xc4,0x47,0xc4,0x47,0xed,0xcf,0xc5,0x82,0xf6, +0x85,0x58,0xb4,0xbf,0xb0,0xbf,0xb4,0xbf,0xd2,0xbe,0xd4,0xbe, +0xb2,0xbf,0x16,0x4b,0x62,0xd9,0x5e,0x69,0x7f,0x23,0x56,0xec, +0x6f,0xed,0xef,0xb4,0xaf,0xc5,0xaa,0xfd,0xbd,0xfd,0x83,0xfd, +0xa3,0xfd,0x93,0xbd,0xca,0xfe,0xd9,0xfe,0x45,0xac,0x89,0x75, +0xfb,0x57,0xb1,0x21,0x36,0xc5,0x96,0xbd,0xda,0xfe,0x4d,0x6c, +0x6b,0x2b,0xb5,0x6f,0xec,0xdf,0xc5,0x8e,0xd8,0xb5,0xff,0xb0, +0xd7,0x88,0x03,0xf6,0x9f,0xf6,0x5f,0xf6,0xdf,0xda,0xb7,0xf6, +0x5a,0xfb,0x1f,0xfb,0x5f,0xfb,0x3f,0xa7,0xc7,0x89,0x38,0x51, +0xed,0x3b,0xed,0x7b,0x47,0xd0,0x7e,0x70,0x62,0xe2,0x63,0xce, +0x3a,0xce,0xba,0xe2,0xe3,0xce,0x7a,0x4e,0xdc,0x11,0xb5,0x1f, +0x1d,0xc9,0x91,0x1d,0x45,0xfb,0x49,0x7c,0x42,0x7c,0xd2,0x31, +0x1d,0x4b,0x7c,0xca,0xb1,0x1d,0x47,0x5c,0x24,0x3e,0xed,0xb8, +0x8e,0xe7,0xf8,0x4e,0xe0,0x84,0xce,0x10,0xa7,0x4f,0x7c,0x46, +0x7c,0xd6,0xe9,0x17,0x17,0x8b,0xcf,0x89,0xcf,0x3b,0x43,0xb5, +0x55,0xce,0x30,0xf1,0x05,0xed,0x67,0x67,0xb8,0xb8,0x44,0x7c, +0xd1,0x19,0xe1,0x6c,0x2e,0xbe,0xe4,0x6c,0xe1,0x6c,0xa9,0xfd, +0x22,0xbe,0xec,0x6c,0xe5,0x6c,0xed,0x6c,0xe3,0x6c,0xeb,0x6c, +0xe7,0x8c,0x74,0xb6,0x17,0x5f,0x11,0x5f,0x75,0x76,0x10,0x5f, +0x13,0x5f,0x17,0xdf,0x70,0x76,0x74,0x46,0x89,0x6f,0x8a,0x6f, +0x69,0xbf,0x3a,0x3b,0x89,0x4b,0xb5,0xd5,0xce,0xce,0xce,0x2e, +0xe2,0x32,0x67,0x57,0x67,0x37,0xed,0x37,0xf1,0x6d,0x67,0x77, +0x67,0x0f,0x67,0x4f,0x67,0x2f,0x67,0x6f,0x67,0x1f,0x67,0xb4, +0xf8,0x8e,0xf8,0xae,0xb3,0xaf,0xf8,0x9e,0xf8,0xbe,0xf8,0x81, +0xb3,0x9f,0x33,0xc6,0x19,0xeb,0xec,0xef,0x1c,0xe0,0x1c,0x28, +0x7e,0xa8,0xfd,0xee,0x1c,0xe4,0x1c,0xac,0xfd,0xe1,0x1c,0xe2, +0x1c,0xea,0x8c,0xd3,0xd6,0x38,0xe3,0x9d,0x09,0xce,0x61,0xce, +0xe1,0xce,0x11,0xce,0x91,0xce,0x51,0xda,0x9f,0xda,0x5f,0xce, +0x44,0xed,0x6f,0x6d,0xad,0xf6,0x8f,0x73,0xb4,0x73,0x8c,0x73, +0xac,0x33,0xc9,0x99,0xec,0x1c,0x27,0x2e,0x17,0x3f,0x72,0x8e, +0x77,0xa6,0x88,0x1f,0x3b,0x27,0x38,0x53,0xc5,0x4f,0xc4,0x15, +0xce,0x34,0x67,0xba,0x33,0xc3,0x39,0xd1,0x39,0xc9,0x99,0xe9, +0x9c,0x2c,0x7e,0x2a,0x7e,0xe6,0x9c,0x22,0x7e,0xee,0x9c,0x2a, +0x7e,0xa1,0xfd,0xeb,0xcc,0x72,0x4e,0x73,0x4e,0xd7,0xfe,0x73, +0xce,0x10,0xbf,0x14,0xbf,0x72,0xce,0x74,0xce,0x12,0xbf,0x76, +0xce,0x76,0xce,0x71,0xce,0x15,0x57,0x3a,0xe7,0x39,0xe7,0x3b, +0x17,0x38,0xb3,0x9d,0x0b,0x9d,0x8b,0x9c,0x8b,0xc5,0x6f,0xf4, +0x1e,0xe7,0x12,0xf1,0x5b,0xe7,0x52,0xf1,0x3b,0xe7,0x32,0x67, +0x8e,0x33,0xd7,0xb9,0xdc,0xb9,0xc2,0xb9,0x52,0xfc,0x5e,0x8f, +0x38,0x57,0x39,0x57,0xeb,0x51,0xe7,0x1a,0xe7,0x5a,0x5d,0xd0, +0x63,0xce,0x75,0xce,0xf5,0xce,0x0d,0xce,0x8d,0xce,0x4d,0xce, +0xcd,0xce,0x2d,0xfa,0x3a,0xfa,0xba,0xce,0xad,0xfa,0x7a,0xce, +0x6d,0xe2,0x0f,0xce,0xed,0xce,0x1d,0xce,0x9d,0xce,0x5d,0xce, +0xdd,0xce,0x3d,0xe2,0x8f,0x7a,0xdc,0xb9,0xd7,0xb9,0x4f,0x17, +0x9d,0xfb,0x9d,0x07,0x9c,0x07,0xc5,0x9f,0x9c,0x79,0xce,0x7c, +0xe7,0x21,0xe7,0x61,0x67,0x81,0xb3,0xd0,0x79,0x44,0x97,0x74, +0xd9,0x79,0x54,0x57,0x9c,0x82,0xae,0x3a,0x45,0xa7,0xe4,0x94, +0x9d,0x8a,0x53,0x75,0x6a,0xe2,0x2a,0x7d,0x7d,0xa7,0xee,0x34, +0xc4,0x9f,0x9d,0xa6,0xd3,0x72,0xda,0xfa,0x06,0x4e,0xc7,0xe9, +0x3a,0x03,0xce,0x63,0xce,0xe3,0xce,0x13,0xce,0x93,0xba,0xa6, +0xeb,0xce,0x53,0x7a,0xc2,0x59,0xa4,0x27,0x9d,0xa7,0x9d,0x67, +0x9c,0x67,0x9d,0xc5,0xce,0x73,0xce,0xf3,0xe2,0x2f,0xe2,0xaf, +0xce,0x0b,0xce,0x12,0x71,0xb5,0xf3,0xa2,0xf3,0x92,0x9e,0x12, +0x7f,0x73,0x5e,0x76,0x5e,0x71,0x5e,0x75,0x5e,0x73,0x5e,0x77, +0xde,0x70,0xde,0x14,0x7f,0x17,0xff,0x70,0xde,0x12,0xd7,0x38, +0x4b,0xc5,0x3f,0x9d,0x65,0xce,0xdb,0xce,0x3b,0xce,0xbb,0x7a, +0xda,0x79,0x4f,0xfc,0x4b,0xfc,0xdb,0x79,0xdf,0xf9,0x40,0x5c, +0xeb,0x7c,0xe8,0x2c,0xd7,0x33,0xe2,0x3f,0xce,0x47,0xce,0xc7, +0xce,0x27,0xce,0x0a,0xe7,0x53,0xe7,0x33,0xe7,0x73,0xf1,0x5f, +0x3d,0xeb,0x7c,0xe1,0x7c,0xa9,0xe7,0xc4,0xff,0x9c,0xaf,0x9c, +0xaf,0x9d,0x95,0xce,0x37,0xce,0xb7,0xce,0x77,0x52,0x8f,0x9e, +0x77,0xbe,0x77,0x7e,0x90,0x22,0xce,0x8f,0xce,0x4f,0xce,0x2a, +0x29,0xea,0xfc,0xec,0xfc,0xe2,0xfc,0xea,0xac,0x76,0x7e,0x73, +0x7e,0x77,0xfe,0xd0,0x7b,0xf5,0x0d,0x9d,0x35,0xfa,0x46,0xfa, +0xc6,0x92,0xe0,0xfc,0xe9,0xfc,0xe5,0xfc,0xed,0xac,0x75,0xfe, +0x71,0xfe,0x95,0x62,0xd2,0x3a,0xce,0x7f,0x6e,0x8f,0xb4,0xae, +0x1b,0x71,0xa3,0xfa,0x26,0xd2,0x7a,0xae,0xe0,0xc6,0xdc,0x75, +0xdc,0x75,0xdd,0xf5,0xdc,0xb8,0x2b,0x4a,0x71,0x49,0x74,0x25, +0x49,0x72,0x65,0x49,0x76,0x15,0x57,0x75,0xd7,0x77,0x37,0x70, +0x35,0x57,0x97,0x14,0x7d,0x53,0x37,0xe1,0x26,0x25,0xd5,0x4d, +0xb9,0x69,0x37,0x23,0xad,0xef,0x66,0xdd,0x9c,0x9b,0x77,0x7b, +0xdd,0x0d,0xdd,0x8d,0xdc,0x8d,0xa5,0x0d,0xf4,0xcd,0xdc,0x4d, +0xf4,0x41,0xee,0xa6,0xfa,0x60,0x77,0x33,0x77,0x90,0x6e,0xb8, +0x83,0x5d,0xc3,0x35,0x25,0x4d,0xd2,0x5d,0xcb,0xb5,0xa5,0x84, +0xeb,0x48,0x49,0xd7,0x95,0x52,0xae,0xa7,0x9b,0xae,0xef,0x06, +0x6e,0xe8,0x0e,0x71,0xfb,0xa4,0xb4,0x94,0x71,0xfb,0x75,0xcb, +0x1d,0x2a,0x65,0xdd,0x61,0xee,0x70,0x29,0xe7,0x8e,0x70,0x37, +0x77,0xb7,0x90,0xf2,0xba,0xed,0x6e,0xe9,0x6e,0xa5,0x3b,0xee, +0xd6,0xee,0x36,0xee,0xb6,0xba,0xeb,0x6e,0xe7,0x8e,0x74,0xb7, +0x77,0x77,0x70,0x77,0x74,0x47,0xb9,0x3b,0xe9,0x9e,0xee,0xbb, +0x3b,0xeb,0x81,0xbb,0x8b,0x1e,0xba,0xbb,0xba,0xbb,0xb9,0xbb, +0xbb,0x7b,0xb8,0x7b,0xba,0x7b,0x49,0xbd,0xd2,0x86,0xee,0xde, +0xee,0x3e,0xd2,0x46,0xee,0x68,0x77,0x5f,0x7d,0x88,0xb4,0xb1, +0xbb,0x9f,0x3b,0xc6,0x1d,0xeb,0xee,0xef,0x1e,0xe0,0x1e,0xe8, +0x1e,0x24,0x6d,0x22,0x6d,0xea,0x1e,0x2c,0x6d,0x26,0x0d,0x92, +0x06,0xbb,0x87,0xb8,0x87,0xba,0xe3,0xdc,0xf1,0x7a,0x9f,0x3b, +0x41,0x32,0x24,0xd3,0x3d,0xcc,0x3d,0x5c,0xb2,0xdc,0x23,0xdc, +0x23,0x25,0x5b,0x72,0x24,0x57,0xef,0x77,0x8f,0x72,0x27,0xba, +0x47,0xbb,0xc7,0xe8,0x43,0x25,0x4f,0xf2,0xdd,0x63,0xa5,0x40, +0x0a,0xa5,0x21,0xee,0x24,0x77,0xb2,0x7b,0x9c,0x7b,0xbc,0x3e, +0xcc,0x9d,0x22,0xf5,0x49,0xfd,0xee,0x09,0xee,0x54,0x69,0xa8, +0x3b,0x4d,0x1f,0xae,0x8f,0x90,0x86,0xe9,0x9b,0xbb,0xd3,0xdd, +0x19,0xee,0x89,0xee,0x49,0xee,0x4c,0xf7,0x64,0x69,0xb8,0x34, +0xc2,0x3d,0x45,0xda,0x5c,0xda,0x42,0xda,0xd2,0x3d,0xd5,0x9d, +0xe5,0x9e,0xe6,0x9e,0xae,0x6f,0xe1,0x9e,0x21,0x6d,0xa5,0x6f, +0xe9,0x9e,0xe9,0x9e,0xa5,0x6f,0xe5,0x9e,0xed,0x9e,0xe3,0x9e, +0xab,0x6f,0xed,0x9e,0xe7,0x9e,0xef,0x5e,0xe0,0xce,0x76,0x2f, +0x74,0x2f,0x72,0x2f,0xd6,0xb7,0xd1,0xb7,0x75,0x2f,0xd1,0xb7, +0x73,0x2f,0x95,0xb6,0x76,0x2f,0x73,0xe7,0xb8,0x73,0xdd,0xcb, +0xdd,0x2b,0xdc,0x2b,0xa5,0x6d,0xdc,0xab,0xdc,0xab,0xdd,0x6b, +0xf4,0x91,0xee,0xb5,0xfa,0xf6,0xd2,0xb6,0xd2,0x76,0xee,0x7c, +0xf7,0x21,0x69,0xa4,0xfb,0xb0,0xbb,0x40,0xdf,0x41,0xda,0x5e, +0xdf,0x51,0xda,0x41,0xda,0xd1,0x5d,0xe8,0x3e,0xe2,0x3e,0xea, +0x16,0xa4,0x51,0xd2,0x4e,0x6e,0x51,0xda,0x59,0xda,0x45,0xda, +0xd5,0x2d,0xb9,0x65,0xb7,0xe2,0x56,0xdd,0x9a,0x5b,0x97,0x76, +0x93,0x76,0x77,0x1b,0x6e,0x53,0xda,0xc3,0x6d,0xb9,0x6d,0x7d, +0x94,0xb4,0xa7,0xdb,0x71,0xbb,0xee,0x80,0xfb,0x98,0xfb,0xb8, +0xfb,0x84,0xfb,0xa4,0xb4,0x97,0xb4,0xb7,0xfb,0x94,0xb4,0x8f, +0xbe,0x93,0x34,0xda,0x5d,0xe4,0x3e,0xed,0x3e,0xe3,0x3e,0x2b, +0xed,0xeb,0x2e,0x96,0xf6,0xd3,0x77,0x76,0x9f,0x73,0x9f,0x97, +0xc6,0xb8,0x2f,0xb8,0x4b,0xf4,0x5d,0xa4,0xb1,0xee,0x8b,0xee, +0x4b,0xee,0xcb,0xee,0x2b,0xee,0xab,0xee,0x6b,0xee,0xeb,0xfa, +0xae,0xfa,0x6e,0xee,0x1b,0xd2,0xfe,0xd2,0x01,0xfa,0xee,0xee, +0x9b,0xee,0x5b,0xee,0x52,0x77,0x99,0xfb,0xb6,0xfb,0x8e,0x74, +0xa0,0xbe,0x87,0xfb,0xae,0xfb,0x9e,0x74,0x90,0xfb,0xbe,0xfb, +0x81,0xfb,0xa1,0xbe,0xa7,0xbb,0xdc,0xfd,0xc8,0xfd,0xd8,0xfd, +0xc4,0x5d,0xe1,0x7e,0xea,0x7e,0xa6,0xef,0xe5,0x7e,0xee,0x7e, +0xa1,0xef,0xed,0x7e,0xa9,0xef,0xe3,0x7e,0xe5,0x7e,0xed,0xae, +0x74,0xbf,0x71,0xbf,0x75,0xbf,0x93,0x0e,0x96,0x0e,0x71,0xbf, +0x77,0x7f,0x90,0x0e,0x75,0x7f,0x74,0x7f,0x92,0xc6,0x49,0xe3, +0xdd,0x55,0xee,0xcf,0xee,0x2f,0xee,0xaf,0xee,0x6a,0xf7,0x37, +0xf7,0x77,0x69,0x82,0x74,0x98,0xfb,0x87,0x74,0xb8,0xbb,0x46, +0x3a,0xc2,0xfd,0x53,0x1f,0xad,0xef,0xab,0xef,0x27,0x1d,0xe9, +0xfe,0x25,0x1d,0xa5,0x8f,0x71,0xff,0x76,0xd7,0x4a,0x13,0xdd, +0x7f,0xdc,0x7f,0xdd,0xff,0xf4,0xb1,0x5e,0x8f,0x17,0xf1,0xa2, +0x9e,0xe0,0xc5,0xbc,0x75,0xbc,0x75,0xf5,0xfd,0xf5,0x03,0xbc, +0xf5,0xf4,0x03,0xbd,0xb8,0x7e,0x90,0x27,0x7a,0x92,0x27,0x7b, +0x8a,0xa7,0x7a,0xeb,0x4b,0x47,0xeb,0x07,0xeb,0x87,0x78,0x83, +0x3d,0xc3,0x33,0x3d,0xcb,0xb3,0x3d,0x47,0x3a,0x46,0x3f,0xd4, +0x73,0x3d,0x4f,0x3a,0xd6,0xf3,0xbd,0x40,0x9a,0xa4,0x8f,0xf3, +0x42,0x6f,0x88,0xd7,0xe7,0xf5,0x7b,0x43,0xbd,0x61,0xde,0x70, +0x7d,0xbc,0x3e,0xc1,0x1b,0x21,0x4d,0xd6,0x0f,0x93,0x8e,0xf3, +0x36,0xf7,0xb6,0xf0,0xb6,0xf4,0xb6,0xf2,0xb6,0xf6,0xb6,0x91, +0x8e,0xd7,0x0f,0xf7,0xb6,0xf5,0xb6,0xd3,0x8f,0xf0,0x46,0x7a, +0xdb,0x7b,0x3b,0xe8,0x47,0x7a,0x3b,0x7a,0xa3,0xbc,0x9d,0xbc, +0x9d,0xbd,0x5d,0xbc,0x5d,0xbd,0xdd,0xf4,0xa3,0xf4,0x89,0xde, +0xee,0xfa,0xd1,0xde,0x1e,0xd2,0x14,0x6f,0x4f,0x6f,0x2f,0x6f, +0x6f,0x6f,0x1f,0x6f,0xb4,0xb7,0xaf,0x74,0x82,0x34,0xd5,0xdb, +0xcf,0x1b,0x23,0x4d,0xf3,0xc6,0x7a,0xfb,0xeb,0xc7,0x48,0xd3, +0xbd,0x03,0xa4,0x19,0xde,0x81,0xde,0x41,0xde,0xc1,0xde,0x21, +0xde,0xa1,0xd2,0x89,0xd2,0x49,0xde,0x38,0x69,0xa6,0x37,0x5e, +0x3a,0xd9,0x9b,0xe0,0x1d,0xe6,0x1d,0xee,0x1d,0xe1,0x1d,0xe9, +0x1d,0x25,0x9d,0xa2,0x1f,0xeb,0x4d,0xf4,0x8e,0xd6,0x27,0x79, +0xc7,0x78,0xc7,0xea,0x93,0xf5,0xe3,0xbc,0x49,0xde,0x64,0xef, +0x38,0xfd,0x78,0xef,0x78,0x6f,0x8a,0x77,0x82,0x3e,0x45,0x3f, +0xc1,0x9b,0xaa,0x4f,0x95,0x4e,0xd5,0xa7,0x79,0xd3,0xbc,0xe9, +0xde,0x0c,0xef,0x44,0xef,0x24,0x6f,0xa6,0x34,0x4b,0x9f,0xee, +0x9d,0xec,0x9d,0xa2,0xcf,0xf0,0x4e,0xf5,0x66,0xe9,0x27,0xea, +0x27,0x79,0xa7,0x79,0xa7,0x7b,0x67,0x78,0x67,0x7a,0x67,0x79, +0x67,0x7b,0xe7,0xe8,0x33,0xf5,0x93,0xbd,0x73,0xa5,0xd3,0xf4, +0x53,0xf4,0x53,0xbd,0xf3,0xbc,0xf3,0xbd,0x0b,0xbc,0xd9,0xde, +0x85,0xde,0x45,0xd2,0xe9,0xd2,0x19,0xde,0xc5,0xde,0x25,0xd2, +0x99,0xde,0xa5,0xde,0x65,0xfa,0x2c,0xe9,0x2c,0x6f,0x8e,0x37, +0xd7,0xbb,0xdc,0xbb,0xc2,0xbb,0xd2,0xbb,0xca,0xbb,0x5a,0x3a, +0x5b,0x3a,0xc7,0xbb,0x46,0x3f,0xcd,0xbb,0x56,0x3a,0xd7,0xbb, +0xce,0xbb,0xde,0xbb,0xc1,0xbb,0xd1,0xbb,0xc9,0xbb,0x59,0x3a, +0x4f,0x3f,0xdd,0xbb,0xc5,0xbb,0x55,0x3a,0xdf,0xbb,0xcd,0xbb, +0xdd,0xbb,0x43,0xba,0xc0,0xbb,0xd3,0xbb,0xcb,0xbb,0xdb,0xbb, +0xc7,0xbb,0xd7,0xbb,0xcf,0xbb,0x5f,0x9a,0xad,0x9f,0xe1,0x3d, +0xa0,0x9f,0xe9,0x3d,0x28,0x5d,0xe8,0xcd,0xf3,0xe6,0x7b,0x0f, +0x79,0x0f,0x7b,0x0b,0xbc,0x85,0xd2,0x45,0xd2,0xc5,0xde,0x23, +0xfa,0x59,0xd2,0x25,0xde,0xa3,0x5e,0x41,0xba,0x54,0xba,0x4c, +0x3f,0x5b,0x9a,0xe3,0x15,0xf5,0x73,0xbc,0x92,0x57,0xf6,0x2a, +0xd2,0x5c,0xe9,0x72,0xaf,0x2a,0x5d,0xe1,0xd5,0xa4,0x2b,0xbd, +0xba,0xd7,0xf0,0x9a,0xd2,0x55,0x5e,0xcb,0x6b,0x4b,0x57,0xeb, +0xe7,0x7a,0x1d,0xaf,0x2b,0x5d,0xe3,0x0d,0x78,0x8f,0x79,0x8f, +0x4b,0xd7,0x7a,0x4f,0x78,0x4f,0x7a,0x4f,0xe9,0xe7,0x79,0x8b, +0xbc,0xa7,0xbd,0x67,0xa4,0xeb,0xa4,0xeb,0xbd,0x67,0xf5,0xf3, +0xbd,0xc5,0xfa,0x05,0xde,0x73,0xde,0xf3,0xde,0x0b,0xde,0x12, +0xef,0x45,0xef,0x25,0xe9,0x06,0xe9,0x46,0xef,0x65,0xef,0x15, +0xe9,0x26,0xef,0x55,0xef,0x35,0x7d,0xb6,0x74,0xb3,0xf7,0xba, +0xf7,0x86,0xf7,0xa6,0xf7,0x96,0xb7,0xd4,0x5b,0xe6,0xbd,0x2d, +0xdd,0x22,0xdd,0xea,0xbd,0x23,0xdd,0xe6,0xbd,0x2b,0xdd,0xee, +0xbd,0xe7,0xbd,0xaf,0x5f,0xe8,0x7d,0xa0,0x5f,0xe4,0x7d,0x28, +0xdd,0x21,0xdd,0x29,0xdd,0xe5,0x2d,0x97,0xee,0x96,0xee,0xf1, +0x3e,0x92,0xee,0x95,0xee,0xf3,0x3e,0x96,0xee,0xf7,0x3e,0xf1, +0x56,0x78,0x9f,0x7a,0x9f,0x79,0x9f,0x4b,0x0f,0x48,0x0f,0x7a, +0x5f,0x48,0xf3,0xa4,0xf9,0xd2,0x43,0xde,0x97,0xfa,0xc5,0xd2, +0xc3,0xd2,0x02,0xfd,0x12,0xef,0x2b,0x69,0xa1,0xf4,0x88,0xf7, +0xb5,0xb7,0x52,0x7a,0xd4,0xfb,0xc6,0xfb,0x56,0x2a,0x48,0x45, +0xef,0x3b,0xef,0x7b,0xef,0x07,0xef,0x47,0xef,0x27,0x6f,0x95, +0xf7,0xb3,0x54,0x92,0xca,0xde,0x2f,0x52,0x45,0xaa,0x4a,0x35, +0xef,0x57,0x6f,0xb5,0xf7,0x9b,0x7e,0xa9,0xf7,0xbb,0xf7,0x87, +0x54,0x97,0x1a,0xde,0x1a,0xef,0x4f,0xfd,0x32,0xef,0x2f,0xef, +0x6f,0x6f,0xad,0x3e,0xc7,0xfb,0xc7,0xfb,0xd7,0xfb,0xcf,0xef, +0xf1,0x23,0x7e,0xd4,0x17,0xf4,0xb9,0xfa,0xe5,0x7e,0x4c,0xbf, +0xc2,0x5f,0x47,0xbf,0xd2,0x5f,0xd7,0x5f,0xcf,0x8f,0x4b,0x4d, +0x5f,0xf4,0x25,0xfd,0x2a,0xa9,0x25,0xb5,0x7d,0xdb,0x77,0xa4, +0x8e,0xef,0xfa,0x9e,0x7e,0xb5,0xd4,0xf5,0x7d,0x3f,0xf0,0x43, +0x7f,0x88,0xdf,0xe7,0xf7,0xfb,0x43,0xa5,0x01,0xe9,0x31,0xfd, +0x1a,0xe9,0x71,0xe9,0x09,0xe9,0x49,0x7f,0x98,0x3f,0xdc,0x1f, +0xa1,0x5f,0x2b,0x3d,0xe5,0x6f,0x2e,0x2d,0x92,0x9e,0xf6,0xb7, +0xf0,0xb7,0x94,0x9e,0xf1,0xb7,0xf2,0xb7,0xd6,0xaf,0x93,0x9e, +0xf5,0xb7,0xf1,0xb7,0xf5,0xb7,0xf3,0x47,0xfa,0xdb,0xfb,0x3b, +0xf8,0x3b,0x4a,0x8b,0xa5,0xe7,0xfc,0x51,0xd2,0xf3,0xfa,0xf5, +0xd2,0x0b,0xfe,0x4e,0xfe,0xce,0xfe,0x2e,0xfe,0xae,0xfa,0x0d, +0xfe,0x6e,0xd2,0x12,0xe9,0x45,0x7f,0x77,0x7f,0x0f,0xe9,0x25, +0xfd,0x46,0x7f,0x4f,0xfd,0x26,0xe9,0x65,0x7f,0x2f,0x7f,0x6f, +0x7f,0x1f,0x7f,0xb4,0xbf,0xaf,0xbf,0x9f,0x3f,0x46,0x7a,0x45, +0x7a,0xd5,0x1f,0xab,0xdf,0x2c,0xbd,0x26,0xbd,0xee,0xef,0xef, +0x1f,0xe0,0x1f,0xe8,0x1f,0xe4,0x1f,0xec,0x1f,0x22,0xbd,0xa1, +0xdf,0xe2,0x1f,0xea,0x8f,0x93,0xde,0xf4,0xc7,0xfb,0x13,0xf4, +0x5b,0xa5,0xb7,0xfc,0xc3,0xfc,0xc3,0xfd,0x23,0xfc,0x23,0xfd, +0xa3,0xfc,0x89,0xfe,0xd1,0xfa,0x6d,0xd2,0x52,0xff,0x18,0x69, +0x99,0x7f,0xac,0x7e,0xbb,0x3f,0xc9,0x9f,0xec,0x1f,0xe7,0x1f, +0xef,0x4f,0xf1,0x4f,0x90,0xde,0x96,0xde,0xd1,0xef,0xf0,0xa7, +0x4a,0xef,0xfa,0xd3,0xfc,0xe9,0xfa,0x9d,0xd2,0x7b,0xfe,0x0c, +0xff,0x44,0xff,0x24,0x7f,0xa6,0x7f,0xb2,0x7f,0x8a,0x7f,0xaa, +0xf4,0xbe,0xf4,0x81,0x3f,0x4b,0xfa,0xd0,0x3f,0x4d,0x5a,0xee, +0x9f,0xee,0x9f,0xa1,0xdf,0x25,0x7d,0xa4,0xdf,0xed,0x9f,0x29, +0x7d,0x2c,0x7d,0xe2,0x9f,0xe5,0x9f,0xad,0xdf,0xe3,0x9f,0xe3, +0x9f,0xeb,0x9f,0xa7,0xdf,0xeb,0x9f,0xef,0x5f,0xe0,0xcf,0xf6, +0x2f,0xf4,0x2f,0xf2,0x2f,0xf6,0x2f,0xd1,0xef,0xd3,0xef,0xf7, +0x2f,0xd5,0x1f,0xf0,0x2f,0x93,0x56,0xf8,0x73,0xfc,0xb9,0xfe, +0xe5,0xfe,0x15,0xfe,0x95,0xfe,0x55,0xfa,0x83,0xd2,0xa7,0xfa, +0x3c,0x7f,0x81,0xbf,0x50,0xfa,0xcc,0x7f,0xc4,0x7f,0xd4,0x2f, +0xe8,0xf3,0xfd,0xa2,0x5f,0xf2,0xcb,0x7e,0xc5,0xaf,0xfa,0x35, +0xbf,0xae,0x3f,0xa4,0x3f,0xec,0x37,0xf4,0x05,0x7e,0x53,0x5f, +0xe8,0xb7,0xfc,0xb6,0xdf,0xf1,0xbb,0xfe,0x80,0xff,0x98,0xf4, +0xb9,0xfe,0x88,0xff,0xb8,0xff,0x84,0xf4,0x85,0xff,0xa4,0xff, +0x94,0xfe,0xa8,0xf4,0xa5,0xbf,0xc8,0x7f,0xda,0x7f,0xc6,0x7f, +0xd6,0x5f,0xec,0x3f,0xe7,0x3f,0xaf,0x17,0xa4,0xaf,0xfc,0x17, +0xa4,0xaf,0xfd,0x25,0x7a,0xd1,0x7f,0xd1,0x7f,0xc9,0x7f,0xd9, +0x7f,0xc5,0x7f,0xd5,0x7f,0x4d,0x5a,0x29,0x7d,0xe3,0xbf,0xee, +0xbf,0x21,0x7d,0xeb,0xbf,0xe9,0xbf,0x25,0x7d,0x27,0x7d,0xef, +0x2f,0x95,0x7e,0xf0,0x97,0xf9,0x6f,0xfb,0xef,0xf8,0xef,0xfa, +0xef,0x49,0x3f,0x4a,0x3f,0xf9,0xef,0x4b,0xab,0xfc,0x0f,0xa4, +0x9f,0xfd,0x0f,0xfd,0xe5,0xfe,0x47,0xfe,0xc7,0xfe,0x27,0xfe, +0x0a,0xe9,0x17,0xbd,0xe4,0x7f,0xea,0x7f,0xa6,0x97,0xfd,0xcf, +0xfd,0x2f,0xf4,0x8a,0x5e,0xf5,0xbf,0xf4,0xbf,0xf2,0xbf,0xf6, +0x57,0xfa,0xdf,0xf8,0xdf,0xfa,0xdf,0xe9,0x35,0xbd,0xee,0x7f, +0xaf,0x37,0xf4,0xa6,0xf4,0xab,0xff,0x83,0xff,0xa3,0xff,0x93, +0xbf,0xca,0xff,0xd9,0xff,0x45,0x6f,0xe9,0x6d,0xff,0x57,0x7f, +0xb5,0xde,0xf1,0x7f,0xf3,0x7f,0xf7,0xff,0xd0,0xbb,0xfe,0x1a, +0xff,0x4f,0xff,0x2f,0xff,0x6f,0x7f,0xad,0xff,0x8f,0xff,0xaf, +0x3e,0xa0,0x3f,0xe6,0xff,0xa7,0x3f,0x1e,0xf4,0xe8,0x4f,0x04, +0x91,0x20,0x1a,0x08,0x41,0x2c,0x58,0x27,0x58,0x57,0x5a,0xad, +0x3f,0x19,0xac,0x17,0xc4,0xa5,0xdf,0x02,0x31,0x90,0x02,0x59, +0xfa,0x3d,0x50,0x02,0x35,0x58,0x3f,0xd8,0x20,0xd0,0x02,0x3d, +0x48,0x48,0x7f,0xe8,0x4f,0x05,0x49,0x69,0x4d,0x90,0xd2,0x17, +0x05,0xe9,0x20,0x13,0x64,0x83,0x5c,0x90,0x0f,0x7a,0xa5,0x3f, +0xf5,0xa7,0x83,0x0d,0x83,0x8d,0xa4,0xbf,0x82,0x8d,0x83,0x4d, +0xf4,0x67,0xa4,0xbf,0x83,0x4d,0x83,0xcd,0x82,0x41,0xc1,0xe0, +0xc0,0x08,0xcc,0xc0,0x92,0xd6,0xea,0xcf,0x06,0xb6,0xf4,0x4f, +0xe0,0x48,0xff,0x06,0x6e,0xe0,0x05,0x7e,0x10,0x04,0x61,0x30, +0x44,0xfa,0x4f,0x5f,0x1c,0xf4,0x05,0xfd,0x72,0x4f,0x30,0x34, +0x18,0xa6,0x3f,0x27,0x47,0x82,0xe1,0xc1,0x88,0x60,0x73,0xfd, +0xf9,0x60,0x8b,0x60,0xcb,0x60,0x2b,0x39,0x2a,0x0b,0xc1,0xd6, +0x72,0x2c,0xd8,0x46,0x5e,0x27,0xd8,0x36,0xd8,0x2e,0x18,0x19, +0x6c,0x1f,0xec,0x10,0xec,0x28,0xaf,0xab,0xbf,0x10,0x8c,0x0a, +0x76,0xd2,0x97,0x04,0x3b,0x07,0xbb,0x04,0xbb,0xea,0x2f,0x06, +0xbb,0x05,0xbb,0x07,0x7b,0x04,0x7b,0x06,0x7b,0x05,0x7b,0x07, +0xfb,0xe8,0x2f,0xe9,0x2f,0x07,0xa3,0xf5,0x57,0x82,0x7d,0xe5, +0xf5,0x82,0xfd,0x82,0x31,0xc1,0xd8,0x60,0xff,0xe0,0x80,0xe0, +0x40,0x39,0x2e,0x8b,0xc1,0x41,0xc1,0xc1,0xb2,0x14,0x1c,0x12, +0x1c,0xaa,0xbf,0x2a,0xcb,0xc1,0xb8,0x60,0x7c,0x30,0x21,0x38, +0x2c,0x38,0x3c,0x38,0x22,0x38,0x52,0x56,0x64,0x35,0x38,0x4a, +0x5e,0x5f,0xde,0x40,0xd6,0x82,0x89,0xc1,0xd1,0xc1,0x31,0xfa, +0x6b,0xfa,0xeb,0xc1,0xb1,0xb2,0x2e,0x27,0x82,0x49,0xc1,0x64, +0x39,0x19,0x1c,0x17,0x1c,0xaf,0xbf,0x21,0xa7,0xf4,0x37,0x83, +0x29,0xfa,0x5b,0x72,0x5a,0xce,0x04,0x27,0xe8,0x4b,0xe5,0xac, +0x9c,0x0b,0xa6,0xca,0x79,0x7d,0x99,0xdc,0xab,0xbf,0x1d,0x4c, +0x93,0x37,0xd4,0xdf,0x09,0xa6,0xcb,0x1b,0xc9,0x1b,0xcb,0x9b, +0x04,0x33,0x82,0x13,0xe5,0x4d,0x83,0x93,0x82,0x99,0xf2,0x66, +0xf2,0xa0,0xe0,0xe4,0xe0,0x94,0xe0,0xd4,0x60,0x56,0x70,0x5a, +0x70,0x7a,0x70,0x86,0x3c,0x58,0x36,0x82,0x33,0x65,0x53,0xb6, +0x64,0x3b,0x38,0x4b,0x76,0x82,0xb3,0xf5,0x77,0x83,0x73,0x64, +0x57,0xf6,0xf4,0xf7,0x82,0x73,0x83,0xf3,0x64,0x3f,0x38,0x3f, +0xb8,0x20,0x98,0xad,0xbf,0x1f,0x5c,0x18,0x5c,0x14,0x5c,0x1c, +0x5c,0x12,0x5c,0x1a,0x5c,0x16,0xcc,0xd1,0x3f,0xd0,0x3f,0x0c, +0xe6,0xca,0x41,0x70,0xb9,0x1c,0x06,0x57,0x04,0x57,0x06,0x57, +0x05,0x57,0x07,0xd7,0xe8,0xcb,0xe5,0x21,0x72,0x5f,0xf0,0x40, +0xf0,0x60,0x30,0x2f,0x98,0x1f,0x3c,0x14,0x3c,0x1c,0x2c,0x90, +0xfb,0xe5,0xa1,0xc1,0xc2,0xe0,0x11,0x79,0x58,0xf0,0x68,0x50, +0xd0,0x3f,0x92,0x87,0xeb,0x1f,0xcb,0x23,0x82,0x62,0x50,0xd2, +0x3f,0x09,0xca,0xf2,0xe6,0xf2,0x16,0xf2,0x96,0x41,0x45,0xde, +0x4a,0x5f,0x21,0x6f,0x1d,0x54,0x83,0x9a,0xbc,0x8d,0xbc,0xad, +0xfe,0xa9,0xbc,0x9d,0x3c,0x52,0xde,0x3e,0xa8,0x07,0x0d,0x79, +0x87,0xa0,0x19,0xb4,0xf4,0xcf,0xe4,0x1d,0x83,0x76,0xd0,0x09, +0xba,0xc1,0x40,0xf0,0x58,0xf0,0x78,0xf0,0x84,0x3c,0x4a,0xde, +0x29,0x78,0x52,0xde,0x59,0xde,0x45,0xde,0x35,0x78,0x2a,0x58, +0x14,0x3c,0x1d,0x3c,0xa3,0x7f,0x2e,0xef,0x26,0xef,0x2e,0xef, +0x11,0x3c,0x1b,0x2c,0x96,0xf7,0x0c,0x9e,0x0b,0x9e,0xd7,0xbf, +0x90,0xf7,0x0a,0x5e,0x08,0x96,0x04,0x2f,0x06,0x2f,0x05,0x2f, +0x07,0xaf,0x04,0xaf,0xca,0x7b,0xcb,0xfb,0x04,0xaf,0xc9,0xa3, +0xe5,0x7d,0xe5,0xfd,0x82,0xd7,0x83,0x37,0x82,0x37,0x83,0xb7, +0x82,0xa5,0xc1,0x32,0x79,0x8c,0xfe,0x65,0xf0,0x76,0xf0,0x8e, +0x3c,0x36,0x78,0x37,0x78,0x2f,0x78,0x5f,0xde,0x3f,0xf8,0x20, +0xf8,0x30,0x58,0x1e,0x7c,0x14,0x7c,0x1c,0x7c,0x12,0xac,0xd0, +0xbf,0x92,0x0f,0x08,0x3e,0xd5,0xbf,0xd6,0x57,0xea,0xdf,0x04, +0x9f,0x05,0x9f,0x07,0x5f,0x04,0x5f,0x06,0x5f,0x05,0x5f,0xcb, +0x07,0xca,0x07,0x05,0x2b,0xf5,0x6f,0xe5,0x83,0xf5,0xef,0x82, +0x6f,0xf4,0xef,0xe5,0x43,0xf4,0x1f,0x82,0x6f,0x83,0xef,0xf4, +0x1f,0xe5,0x43,0x83,0xef,0xf5,0x9f,0xe4,0x71,0xf2,0xf8,0xe0, +0x07,0x79,0x42,0xf0,0xa3,0x7c,0x58,0xf0,0x53,0xb0,0x2a,0xf8, +0x59,0x3e,0x3c,0xf8,0x25,0xf8,0x55,0x3e,0x42,0x3e,0x32,0x58, +0x1d,0xfc,0x26,0x1f,0x15,0xfc,0x1e,0xfc,0xa1,0xaf,0x92,0x27, +0x06,0x6b,0x82,0x3f,0x83,0xbf,0xf4,0x9f,0x83,0xbf,0x83,0xb5, +0xc1,0x3f,0xfa,0x2f,0xf2,0xd1,0xfa,0xaf,0xf2,0x31,0xf2,0xb1, +0xf2,0xa4,0xe0,0xdf,0xe0,0xbf,0xb0,0x27,0x8c,0x84,0xd1,0x50, +0x90,0x27,0xcb,0xc7,0x85,0xb1,0x70,0x1d,0xf9,0xf8,0x70,0xdd, +0x70,0x3d,0x7d,0xb5,0xfe,0x5b,0x18,0x0f,0xc5,0x50,0x0a,0xe5, +0x50,0x09,0xd5,0x70,0x7d,0xfd,0x77,0xfd,0x8f,0x70,0x03,0x79, +0x8a,0xbe,0x46,0x3e,0x21,0xd4,0x42,0x3d,0x4c,0x84,0xc9,0x30, +0x15,0xa6,0xe5,0xa9,0xf2,0xb4,0x30,0x13,0x66,0xe5,0xe9,0x61, +0x2e,0xcc,0xeb,0x7f,0xca,0x33,0xc2,0xde,0x70,0xc3,0x70,0xa3, +0x70,0xe3,0x70,0x93,0x70,0xd3,0x70,0x33,0xfd,0x2f,0xf9,0xc4, +0x70,0x90,0x7c,0x52,0x38,0x58,0x9e,0x19,0x1a,0xa1,0x19,0x5a, +0xa1,0x1d,0x3a,0xa1,0x2b,0x9f,0xac,0xff,0x1d,0x7a,0xa1,0x2f, +0x9f,0x12,0x06,0x61,0xa8,0xaf,0x95,0x4f,0x0d,0x87,0x84,0x7d, +0x61,0x7f,0x38,0x34,0x1c,0x16,0x0e,0x0f,0x47,0xe8,0xff,0xc8, +0xb3,0xc2,0xcd,0xe5,0xd3,0xc2,0x2d,0xe4,0xd3,0xc3,0x2d,0xc3, +0xad,0xc2,0xad,0xc3,0x6d,0xc2,0x6d,0xc3,0xed,0xe4,0x33,0xe4, +0x33,0xc3,0x91,0xe1,0xf6,0xf2,0x59,0xe1,0x0e,0xe1,0x8e,0xfa, +0xbf,0xf2,0xd9,0xf2,0x39,0xfa,0x7f,0xe1,0x28,0xf9,0x5c,0xf9, +0xbc,0x44,0x8f,0x7c,0xbe,0x7c,0x81,0x3c,0x3b,0xdc,0x49,0xbe, +0x30,0xdc,0x59,0xbe,0x28,0xdc,0x25,0xdc,0x35,0x11,0x49,0x44, +0xc3,0xdd,0xc2,0xdd,0xe5,0x8b,0x13,0x42,0xb8,0x47,0xb8,0xa7, +0x7c,0x49,0xb8,0x57,0xb8,0x77,0xb8,0x8f,0x7c,0x69,0x38,0x3a, +0xdc,0x37,0xdc,0x2f,0x1c,0x13,0x8e,0x0d,0xf7,0x0f,0x0f,0x90, +0x2f,0x4b,0xc4,0xc2,0x03,0x13,0xeb,0x24,0xd6,0x95,0xe7,0x84, +0x07,0x85,0x07,0x87,0x87,0x84,0x87,0x86,0xe3,0xc2,0xf1,0xf2, +0x5c,0xf9,0xf2,0x70,0x42,0x78,0x98,0x7c,0x45,0x78,0x78,0x78, +0x44,0x62,0x3d,0xf9,0xca,0xf0,0xc8,0xf0,0xa8,0x70,0x62,0x78, +0x74,0x78,0x4c,0x78,0x6c,0x38,0x29,0x11,0x4f,0x88,0xe1,0xe4, +0x84,0x94,0x90,0xe5,0xab,0xc2,0xe3,0xc2,0xe3,0xc3,0x29,0xe1, +0x09,0xe1,0xd4,0x70,0x9a,0x7c,0xb5,0x7c,0x4d,0x38,0x3d,0x9c, +0x21,0x5f,0x1b,0x9e,0x18,0x9e,0x94,0x50,0xe4,0xeb,0xc2,0x99, +0xe1,0xc9,0xe1,0x29,0xe1,0xa9,0xe1,0xac,0xf0,0xb4,0xf0,0x74, +0xf9,0x7a,0xf9,0x86,0xf0,0x0c,0xf9,0xc6,0xf0,0x4c,0xf9,0xa6, +0xf0,0xac,0xf0,0xec,0xf0,0x9c,0xf0,0xdc,0xf0,0xbc,0xf0,0x7c, +0xf9,0x66,0xf9,0x96,0xf0,0x82,0x70,0xb6,0x7c,0x6b,0x78,0x61, +0x42,0x4d,0xac,0x2f,0xdf,0x16,0x5e,0x14,0x5e,0x1c,0x5e,0x12, +0x5e,0x1a,0x5e,0x16,0xce,0x49,0x6c,0x20,0xdf,0x9e,0xd0,0xc2, +0xb9,0xf2,0x1d,0xe1,0xe5,0xf2,0x9d,0xe1,0x15,0xe1,0x95,0xe1, +0x55,0x09,0x3d,0xbc,0x3a,0xbc,0x46,0xbe,0x4b,0xbe,0x3b,0xbc, +0x36,0xbc,0x4e,0xbe,0x27,0x91,0x90,0xef,0x95,0xef,0x93,0xef, +0x97,0x1f,0x08,0xaf,0x0f,0x6f,0x08,0x6f,0x94,0x1f,0x0c,0x6f, +0x4a,0x24,0xe5,0x79,0xf2,0xfc,0xf0,0x66,0xf9,0xa1,0xf0,0x16, +0xf9,0xe1,0xf0,0xd6,0xf0,0xb6,0x44,0x4a,0x5e,0x90,0x48,0x27, +0x32,0xf2,0xc2,0x44,0x36,0xbc,0x3d,0xbc,0x43,0x7e,0x24,0xbc, +0x33,0xbc,0x2b,0x91,0x93,0x1f,0x0d,0xef,0x0e,0xef,0x09,0xef, +0x0d,0xef,0x0b,0xef,0x0f,0x1f,0x08,0x1f,0x94,0x0b,0x72,0x31, +0x9c,0x97,0xc8,0x87,0xf3,0xe5,0x52,0xf8,0x50,0xf8,0x70,0xb8, +0x20,0x5c,0x18,0x3e,0x12,0x3e,0x2a,0x97,0xe5,0x4a,0x58,0x08, +0x8b,0x72,0x35,0x2c,0x85,0xe5,0x44,0xaf,0x5c,0x0b,0x2b,0x61, +0x35,0xac,0x85,0xf5,0xb0,0x11,0x36,0x13,0x1b,0xca,0x75,0xb9, +0x11,0xb6,0xe4,0xa6,0xdc,0x92,0xdb,0x61,0x3b,0xec,0x24,0x36, +0x0a,0xbb,0xe1,0x80,0xdc,0xe9,0x7f,0xa1,0x7f,0x49,0xff,0x8b, +0x7d,0xe3,0xfb,0x5f,0xea,0x9b,0xd0,0xa3,0xd0,0xcf,0x84,0xfc, +0xaf,0xc0,0x3f,0x1b,0x32,0xbd,0xef,0xff,0xfd,0xe4,0xdb,0x9e, +0x9e,0xf3,0xff,0xf7,0x33,0x3c,0x1f,0x00,0xf3,0xe9,0x87,0x89, +0x82,0x85,0xff,0x63,0x12,0x78,0x14,0xe0,0x7b,0xfa,0x8e,0xc3, +0xb1,0xf4,0x3f,0x26,0x83,0x0a,0xa8,0xfe,0xdf,0x4f,0x97,0xec, +0xe9,0xa9,0x81,0x3a,0x3e,0x33,0x05,0xc7,0x16,0x68,0x03,0x7a, +0xdd,0x65,0xfa,0xa6,0xe2,0xf8,0x18,0x78,0x12,0xaf,0xa7,0xe1, +0xf8,0xee,0xff,0xa0,0xf7,0xff,0xf8,0x1f,0x78,0x3f,0xfa,0x02, +0xd3,0x77,0x12,0x8e,0x6f,0x30,0x7d,0x33,0x71,0x7c,0x0f,0x7c, +0x84,0xd7,0x27,0x63,0xc9,0x51,0xb0,0x1e,0x3e,0x3f,0x1d,0x47, +0x11,0x48,0x78,0x7d,0x0a,0x8e,0x09,0x90,0xc6,0xeb,0x59,0x38, +0x66,0x98,0xbe,0x33,0x70,0xcc,0x81,0x3c,0xde,0x3f,0x13,0xc7, +0x8d,0xc0,0xc6,0x78,0x7d,0x36,0x8e,0xb8,0xf7,0xcd,0x0c,0xbc, +0x3e,0x17,0x47,0x0b,0xd8,0x78,0x3d,0x1b,0xc7,0xa1,0x4c,0x1f, +0x7d,0x7e,0x38,0x18,0x81,0xf7,0x2f,0xc2,0x71,0x3b,0xa6,0xe7, +0x12,0x1c,0x47,0x32,0x7d,0x67,0xe1,0xb8,0x03,0xd3,0x47,0xe7, +0xdc,0x95,0xe9,0x3b,0x07,0xc7,0x3d,0xc0,0x5e,0x78,0x4d,0xe7, +0x9f,0xc9,0xf4,0x5d,0x80,0x23,0xad,0x0f,0xdf,0xd7,0x47,0xd7, +0xa2,0x3f,0x5f,0x8e,0xd7,0x97,0xe1,0xb8,0x90,0xe9,0xb9,0x14, +0xc7,0x02,0xd3,0x83,0xf7,0x07,0x09,0x4c,0xcf,0x1c,0x1c,0x45, +0xa6,0x67,0x2e,0x8e,0x49,0xa6,0xef,0x7a,0x1c,0x33,0x4c,0xdf, +0x0d,0x38,0x0e,0x62,0xfa,0x6e,0xc4,0x71,0x30,0xd3,0x83,0x6b, +0x0c,0xb2,0x99,0xbe,0x9b,0x70,0x0c,0x98,0xbe,0x9b,0x71,0x3c, +0x10,0xd0,0xef,0x4b,0xb9,0x05,0xc7,0xc3,0xc0,0x91,0x78,0x7d, +0x1b,0x8e,0xc8,0x83,0x41,0x27,0xe0,0xf5,0x5d,0x38,0x62,0xed, +0x83,0x68,0xcd,0x0f,0xe1,0x78,0x1d,0xb8,0x1d,0xe7,0xbc,0x02, +0xc7,0xb7,0x98,0x3e,0xe4,0xc2,0xa0,0x65,0x4c,0x1f,0x72,0x82, +0x2e,0x49,0xf4,0x21,0x2f,0x06,0x63,0xbf,0x06,0x63,0xfd,0x7d, +0xc8,0x8f,0xc1,0xd8,0xb7,0xc1,0x71,0xbc,0x6e,0xe2,0x28,0x33, +0x7d,0xc8,0x95,0xc1,0x1b,0x30,0x7d,0x1d,0x1c,0x75,0xa6,0x0f, +0x79,0x33,0x38,0xc1,0xf4,0x60,0xcd,0x83,0x7b,0x99,0xbe,0x01, +0x1c,0xb1,0x87,0x83,0x37,0xc1,0x6b,0xe4,0xd4,0xe0,0xcd,0x98, +0xbe,0x27,0x70,0xb4,0x98,0x3e,0xe4,0xd9,0x60,0x07,0x84,0x78, +0xfd,0x14,0x8e,0x7d,0x4c,0xdf,0x73,0x38,0x6e,0x0e,0xb6,0xc4, +0xeb,0xe7,0x71,0xc4,0x1e,0x0e,0xde,0x1e,0xaf,0x5f,0xc4,0xf1, +0x00,0xa6,0xef,0x65,0x1c,0x27,0x32,0x3d,0x88,0xcf,0xe0,0xa3, +0x99,0xbe,0x57,0x70,0x44,0x3d,0x0c,0xa6,0xdc,0x47,0xac,0x06, +0x23,0xef,0x07,0x1f,0x8f,0xf7,0x5f,0xc5,0x11,0x79,0x3c,0x18, +0xf9,0xdb,0xf7,0x3a,0x8e,0xc8,0x95,0xc1,0x17,0xe3,0xf5,0x9b, +0x38,0x62,0xff,0x06,0x63,0xdf,0xfa,0x96,0xe2,0x78,0x3b,0xd3, +0xf7,0x36,0x8e,0xf3,0x99,0xbe,0x77,0x70,0xfc,0x89,0xe9,0x43, +0x3d,0x18,0x09,0xa6,0x0f,0xf9,0x6e,0x78,0xc0,0xc7,0xb5,0xee, +0xe9,0xe9,0x31,0xb1,0x16,0x73,0x75,0x4f,0x4f,0x88,0xfb,0x35, +0xff,0x63,0x86,0x8c,0xed,0xe9,0xb1,0xe8,0xa7,0xc5,0x52,0x6c, +0xdf,0xc7,0x11,0xd5,0x6d,0xed,0x83,0xd7,0xa8,0x13,0xeb,0x06, +0xa6,0x1f,0x71,0xb2,0xee,0x63,0xfa,0x11,0x2f,0xeb,0x7e,0xa6, +0x07,0xfb,0x6b,0x3d,0x08,0x90,0x6f,0xfd,0x9b,0xe2,0x88,0x7d, +0xb2,0xb0,0x3f,0xfd,0xc8,0x0f,0x0b,0xf5,0x6b,0x61,0x4f,0xfa, +0x5d,0x1c,0x1f,0x07,0x88,0x6b,0x3f,0xd6,0x61,0x2d,0x02,0x4f, +0xe3,0x35,0x62,0x6a,0x21,0x76,0x16,0x62,0xd6,0x8f,0x98,0x5a, +0x2f,0x33,0x3d,0xb8,0x37,0xeb,0x35,0x80,0xfb,0xee,0x47,0xdd, +0x58,0x5f,0x31,0x3d,0x77,0xf4,0xf4,0xd8,0xeb,0x80,0x75,0xf1, +0x3e,0xe2,0x6e,0xaf,0x0f,0xb0,0xd7,0xfd,0x5b,0xe3,0xb8,0x11, +0xd3,0xbf,0x2d,0x8e,0x9b,0x30,0xfd,0xa8,0x31,0x7b,0x14,0xd3, +0x8f,0xfd,0xb1,0x77,0x66,0xfa,0xb1,0x4f,0x36,0xe2,0x60,0x63, +0x2f,0xfa,0x51,0x6f,0xf6,0xb1,0x00,0x7b,0xd1,0x4f,0x9f,0xc5, +0x3e,0xd8,0xd8,0x83,0xfe,0x5d,0x70,0x84,0x17,0xec,0x19,0x78, +0x8d,0xfa,0x73,0x46,0x33,0x3d,0x77,0xe2,0x78,0x3a,0x40,0xbd, +0x0d,0xd9,0x1f,0x31,0xc2,0xf5,0xfa,0xa8,0x96,0x91,0xdb,0xf4, +0x43,0x77,0x89,0x7e,0xd4,0xea,0x50,0x78,0x70,0x28,0xf2,0x75, +0x08,0xf6,0x6b,0xa8,0xc0,0xf4,0xef,0x8d,0x23,0x1c,0x33,0x14, +0x39,0xd9,0x83,0x38,0x0e,0x4d,0x32,0xfd,0x88,0xf5,0xd0,0x14, +0x20,0xe7,0x2c,0xc0,0x11,0xf5,0x37,0x14,0xf7,0x32,0x04,0xfb, +0x3b,0x6c,0x18,0xc0,0xfa,0x7a,0x1e,0xc1,0x11,0x39,0x33,0xec, +0x1a,0x7c,0x1e,0xeb,0x40,0x58,0x7a,0x86,0xe3,0x1e,0x87,0xa0, +0xce,0x86,0x63,0x1d,0xc3,0x69,0x3d,0xf0,0xc6,0x70,0xd4,0xcc, +0x70,0xe4,0xe9,0x10,0xec,0xc7,0x08,0x78,0x61,0x04,0x1c,0xd3, +0x0f,0x77,0x8d,0x40,0x9d,0x8f,0x78,0x09,0xaf,0xe1,0x90,0x11, +0xc8,0xad,0x11,0xf0,0x61,0x3f,0x3e,0x37,0x62,0x29,0xd3,0x8f, +0xfd,0x18,0xf1,0x0e,0xd3,0xff,0x0c,0x8e,0xef,0x31,0xfd,0xcf, +0xe2,0xf8,0x21,0x40,0x2e,0xf4,0x2f,0xfe,0x3f,0x7d,0xf7,0x14, +0xc8,0xf1,0xf8,0x73,0x01,0xf7,0x57,0xc0,0x7d,0xc9,0xbf,0xe2, +0x18,0x63,0x7a,0x3e,0xc1,0x11,0x7b,0x54,0xc0,0x1e,0x25,0x90, +0x33,0x05,0xd4,0x69,0x01,0xb5,0xd9,0xb3,0x02,0x47,0x85,0x91, +0x7f,0xc3,0x51,0x05,0xd8,0xbb,0x04,0x72,0xa6,0xa0,0x81,0x2c, +0x3e,0xf3,0x25,0x8e,0x39,0x26,0x81,0xa2,0x2f,0xc0,0xb5,0x05, +0x72,0xec,0x0f,0x38,0xe2,0x5e,0x0b,0xf8,0x6c,0x02,0x9e,0x2d, +0x6c,0xc6,0xf4,0xfc,0x82,0xe3,0x20,0x26,0x81,0x04,0x2e,0x0c, +0x66,0xe4,0xdf,0x71,0xa4,0xcf,0x99,0xf8,0x0c,0xad,0x8d,0xbe, +0x06,0x47,0x25,0x90,0x93,0x05,0xe4,0x5c,0x81,0x7e,0x77,0x10, +0xad,0xa1,0x8f,0x49,0xe0,0xcf,0x85,0x7e,0x30,0x8c,0xfb,0x47, +0x61,0x38,0x23,0xd3,0x6b,0x38,0xbb,0x80,0x3a,0x4f,0xd0,0x67, +0xb7,0x00,0xc8,0x3b,0x79,0x0d,0x8e,0x5b,0x31,0x09,0x6c,0x78, +0x01,0xf9,0x57,0xd8,0x06,0xdf,0xfb,0x17,0x8e,0xc8,0x87,0x02, +0xf2,0x21,0x81,0x73,0x15,0x46,0x32,0xf4,0x3b,0x9f,0x0a,0xc8, +0xb9,0x02,0x72,0x2d,0x41,0xe7,0xdb,0x91,0x91,0xe9,0xf3,0xa3, +0x98,0x9e,0x7f,0x70,0xdc,0x89,0x91,0xff,0xc6,0x11,0x79,0x5a, +0xd8,0x1d,0x9f,0xa7,0x6b,0x22,0xff,0x0a,0xc8,0x29,0x99,0xce, +0xb3,0x37,0x93,0xa0,0xeb,0xec,0xc3,0xf4,0xfc,0x8b,0xe3,0x68, +0x46,0x46,0x3d,0x17,0xf6,0x65,0x7a,0xe8,0xf5,0x7e,0x00,0x5e, +0x4e,0x60,0x4d,0x85,0x83,0x18,0xda,0xbe,0xc2,0xc1,0xe0,0x50, +0xbc,0x4f,0xd7,0x1c,0xc7,0x44,0xf0,0x85,0xc2,0x78,0x80,0x9c, +0x4a,0xa0,0xf7,0x14,0x0e,0x67,0xe8,0x27,0x56,0x17,0x8e,0x00, +0xc8,0xc3,0x04,0xad,0x65,0x12,0x43,0x43,0x40,0x61,0x32,0x13, +0x41,0x1e,0x14,0xe0,0xb1,0x02,0xfa,0x6d,0x82,0xae,0x09,0xcf, +0x17,0xd0,0x63,0x23,0x94,0x17,0xa7,0x30,0x09,0xba,0xce,0xa9, +0x8c,0x42,0xd7,0x9a,0xc5,0x44,0x90,0x2b,0x85,0xd3,0x18,0x85, +0xae,0x75,0x3a,0x93,0xa0,0xb5,0x20,0x77,0x0b,0xe8,0x9f,0x11, +0xca,0xa3,0xb3,0x18,0x85,0xae,0x75,0x36,0x13,0x41,0x0f,0x2b, +0xa0,0x47,0x16,0x90,0xff,0x89,0x09,0x38,0x22,0xe7,0x0b,0x70, +0x65,0x04,0x75,0x56,0x98,0xc3,0x28,0xb4,0x86,0xb9,0x4c,0xe2, +0x28,0x1c,0xd1,0xc3,0x0a,0x57,0xe3,0x33,0xa8,0xc3,0x02,0xea, +0xa9,0x70,0x2d,0xde,0x87,0x0f,0x0a,0xd7,0x31,0x11,0xd4,0x5f, +0x01,0xbd,0xb0,0x00,0xef,0x25,0x8e,0xc1,0xf1,0x46,0x46,0xa1, +0xbc,0xbe,0x89,0x89,0x20,0x5f,0x0b,0x70,0x7a,0x01,0x3e,0x48, +0x50,0x3c,0x50,0xff,0x85,0xbb,0xf9,0x27,0x7f,0x17,0xee,0x61, +0x12,0xf0,0x78,0xe1,0x5e,0x00,0x4f,0x46,0xd0,0x6f,0x0a,0x98, +0x8b,0x0a,0xf3,0xf0,0x3e,0xbc,0x52,0x98,0xcf,0x28,0x74,0xef, +0x0f,0x31,0x09,0xc4,0xae,0xf0,0x30,0xa3,0xd0,0xfd,0xc2,0x05, +0x05,0xd4,0x7d,0x84,0xea,0xe8,0x51,0x26,0x41,0x71,0x2d,0x30, +0x11,0xaa,0x83,0x22,0xc0,0x1c,0x95,0x40,0xac,0x0b,0x65,0x80, +0xfe,0x19,0xa1,0x9a,0xa8,0x32,0x0a,0x7a,0x64,0x01,0x4e,0x2e, +0xc0,0xc9,0x09,0x8a,0x7d,0x83,0x51,0x28,0x6e,0xe8,0x9d,0x05, +0x38,0x3a,0x41,0xb1,0x87,0xa7,0x0b,0xe8,0x93,0x11,0xaa,0x9b, +0x01,0x26,0x41,0xb1,0x47,0x9f,0x28,0xc0,0xdb,0x11,0xaa,0x9d, +0x27,0x19,0x85,0x62,0xfb,0x14,0x13,0x41,0x6f,0x29,0x2c,0x62, +0x12,0xd8,0xa7,0xc2,0xd3,0x4c,0x04,0x9e,0x2f,0x3c,0xc3,0x28, +0xa8,0xff,0xc2,0xb3,0x4c,0x82,0xf6,0x70,0x31,0x13,0x41,0x4d, +0x16,0x9e,0x63,0x14,0x72,0x03,0x7a,0x41,0x01,0x33,0x5b,0x82, +0xf6,0x76,0x09,0x13,0xa1,0x7a,0x45,0x7f,0x28,0xc0,0x5d,0x09, +0xb8,0xab,0xf0,0x32,0xa3,0x90,0x3f,0x5e,0x61,0x22,0x54,0xbf, +0xe8,0x9d,0x05,0x78,0x2c,0x81,0x19,0xb4,0xb0,0x8c,0x51,0xd0, +0x1f,0x0a,0x6f,0x33,0x11,0xaa,0xdf,0x77,0x98,0x04,0xe6,0xa2, +0x02,0x7a,0x64,0x01,0x7e,0x8b,0x50,0xdd,0xbf,0xcf,0x28,0xf0, +0x51,0xe1,0x03,0x00,0x87,0x25,0x90,0x43,0x05,0x72,0x16,0xfd, +0x8e,0x36,0xaa,0xe5,0xcf,0xc0,0xe7,0x78,0xff,0x2a,0x1c,0xbf, +0x60,0x22,0x54,0xcb,0xe4,0x2c,0xf4,0xa6,0x04,0xe5,0xd1,0xd7, +0x60,0x25,0xff,0x4e,0xb7,0xc2,0x37,0x8c,0x42,0x6e,0xfb,0x96, +0x89,0xc0,0x1d,0x85,0xef,0x18,0x85,0x72,0xef,0x7b,0x26,0x42, +0x2e,0xf9,0x81,0x49,0x50,0x0e,0xfe,0xc8,0x28,0xe8,0xdf,0x05, +0xf4,0xf3,0xc2,0xcf,0xf8,0x0c,0x39,0xe6,0x17,0x26,0x41,0xb9, +0xf9,0x2b,0x13,0xa1,0xba,0x5e,0xcd,0x24,0x90,0xaf,0x05,0xf2, +0x1a,0xfc,0x17,0x21,0xf7,0xfc,0xc1,0x28,0xe8,0x31,0x85,0x35, +0x4c,0x82,0x72,0xf9,0x4f,0x86,0x7e,0xae,0x7d,0x81,0x1c,0x04, +0xdf,0x28,0xe8,0x3f,0x05,0xf2,0x0b,0x3c,0x14,0x21,0x3f,0x91, +0x53,0xe0,0x8f,0x04,0x72,0x1d,0x29,0xf6,0x7f,0x44,0xe0,0x8a, +0x22,0xea,0xb6,0x88,0x1a,0x4d,0x60,0x6e,0x29,0x0a,0x8c,0x82, +0x7a,0x29,0xc6,0x98,0x08,0xbc,0x55,0x5c,0x87,0x49,0x60,0x36, +0x28,0xae,0xcb,0x44,0xd0,0x4f,0x8b,0xc8,0xe9,0x22,0x72,0x21, +0x81,0xfe,0x5e,0xc4,0x7e,0x17,0x55,0xfa,0xb9,0xfb,0x38,0xae, +0xcf,0x24,0x50,0x33,0x45,0xec,0x41,0x11,0xf7,0x4d,0x3f,0x8d, +0xbf,0x88,0x75,0x17,0x51,0x67,0x09,0xd4,0x50,0x31,0xc7,0x44, +0xe0,0xbe,0x62,0x9e,0x51,0xf0,0xb5,0x22,0xea,0xaa,0xb8,0x21, +0x3e,0x83,0xba,0x2a,0x6e,0xc4,0x44,0xe0,0xc4,0x22,0x6a,0xa6, +0x88,0x9e,0x91,0x40,0x5d,0x15,0x37,0x65,0x14,0x3a,0xc7,0x66, +0x4c,0x04,0xae,0x2c,0x0e,0x62,0x12,0xa8,0xb3,0xe2,0x60,0x26, +0x02,0x6f,0x16,0x51,0x03,0x45,0xcc,0x7c,0x09,0xf4,0xd0,0xa2, +0xcb,0x28,0x74,0x4d,0x8f,0x89,0xc0,0x6f,0x45,0x9f,0x49,0xa0, +0xf6,0x8a,0x01,0xa3,0xd0,0x5a,0x90,0xaf,0x45,0xe4,0x63,0x64, +0x0c,0x8e,0xc8,0xb9,0x22,0x72,0x24,0x81,0xba,0x2c,0x22,0x27, +0x8a,0x70,0x79,0x04,0xbd,0xba,0x88,0x3c,0x28,0x52,0xef,0x40, +0xfd,0x15,0xb7,0x66,0x22,0x70,0x74,0x11,0x3d,0xa4,0x08,0xaf, +0x27,0x50,0x8b,0xc5,0xed,0x18,0x05,0xf7,0x56,0x1c,0xc9,0xd0, +0xef,0x2d,0x28,0x6e,0xcf,0x24,0x50,0xab,0xc5,0x1d,0x18,0x85, +0xee,0x1b,0x7b,0x56,0x44,0x8c,0x13,0xa8,0xdb,0x22,0xc5,0x74, +0x37,0x7c,0x1e,0x8e,0x2f,0xee,0xce,0x24,0x50,0xab,0xc5,0x3d, +0x98,0x08,0xbc,0x5f,0xdc,0x93,0x51,0x28,0x4e,0x7b,0x31,0xf4, +0xbb,0x06,0x8b,0x14,0x5f,0xac,0x3d,0x81,0x7a,0x2e,0x8e,0x65, +0x22,0xf0,0x70,0x71,0x7f,0x46,0x41,0x4c,0x8b,0x98,0x6d,0x8b, +0xd4,0x53,0x50,0xaf,0xc5,0x83,0x98,0x08,0xdc,0x5b,0xa4,0xeb, +0x1d,0x82,0xf7,0x51,0xb7,0xc5,0x43,0x19,0x85,0x62,0x3f,0x8e, +0x89,0xa0,0xaf,0x14,0xe9,0x5c,0x70,0x70,0x02,0xf5,0x5c,0x84, +0x73,0x8b,0x98,0xc1,0x22,0xe8,0x31,0xc5,0x63,0x98,0x04,0x66, +0xbe,0xe2,0xb1,0x4c,0x04,0xcf,0x0f,0xc5,0x49,0x4c,0x02,0xcf, +0x06,0xc5,0xc9,0x4c,0x04,0xdf,0x5f,0x44,0xaf,0x29,0xc2,0xaf, +0x09,0xd4,0x7c,0x11,0x3e,0x2d,0xce,0xe0,0xdf,0xc5,0x58,0x3c, +0x11,0x50,0x0f,0x42,0x3d,0x17,0x67,0x32,0x11,0x3a,0x37,0xfc, +0x58,0xa4,0x1e,0x84,0x59,0xa6,0x08,0x0f,0x16,0xd1,0x5f,0x22, +0x74,0x9d,0x33,0x98,0x04,0xe6,0x99,0xe2,0x99,0x8c,0x42,0x39, +0x02,0x4f,0x15,0xe1,0xa1,0xc4,0xc7,0x38,0xa2,0xbf,0x14,0xcf, +0xc3,0xe7,0x31,0x1b,0x16,0xcf,0x67,0x12,0x70,0x43,0xf1,0x02, +0x26,0x82,0x79,0xb1,0x38,0x9b,0x49,0xc0,0x17,0xc5,0x0b,0x01, +0xe6,0xf6,0x08,0xd6,0x57,0xc4,0xfc,0x55,0x84,0x6f,0x12,0xf0, +0x47,0xf1,0x32,0x46,0xa1,0xbc,0x9b,0xc3,0x24,0xe0,0x91,0x22, +0xfa,0x52,0xf1,0x72,0xfe,0xad,0x15,0x45,0x3c,0x0b,0x15,0xaf, +0xc4,0xfb,0xf0,0x4a,0xf1,0x2a,0x26,0x42,0xf7,0x81,0x7e,0x55, +0x84,0x63,0x12,0x70,0x4c,0xf1,0x5a,0x46,0xa1,0x9c,0xbd,0x8e, +0x89,0xd0,0xfd,0xc1,0x0b,0xc5,0x5b,0xf1,0x19,0x78,0xa7,0x48, +0xb5,0x87,0x3a,0x53,0x28,0x97,0xef,0x60,0x12,0xab,0x70,0xbc, +0x93,0x51,0x30,0x13,0x15,0xd1,0xb3,0x8a,0xd4,0xb3,0x10,0x97, +0x22,0xd5,0x1e,0xe6,0xf8,0x04,0x5c,0x53,0x9c,0xc7,0x44,0xd0, +0x9b,0x8b,0xf3,0x19,0x05,0xfe,0x2f,0x52,0x2d,0xa1,0x37,0x25, +0xe0,0x94,0xe2,0x02,0x46,0x41,0x9d,0x14,0xa9,0x4e,0xd0,0xa7, +0x12,0x70,0x4a,0x11,0x3d,0xaa,0x88,0xde,0xa4,0x50,0xdd,0x40, +0x1a,0x45,0xea,0x3b,0xf0,0x4b,0x11,0x3d,0xa7,0x88,0x7c,0x57, +0xa8,0x6e,0x5a,0x4c,0x12,0x1e,0x29,0x52,0xae,0xe3,0x59,0x2d, +0x82,0x1e,0x54,0xec,0x32,0x0a,0xd5,0x10,0xe5,0x31,0x72,0x36, +0x49,0x8e,0xa1,0x5c,0xa4,0x9e,0x42,0x7b,0x85,0x7e,0x52,0x44, +0x1f,0x49,0xa2,0x7f,0x15,0x17,0x33,0x11,0xda,0x2b,0xf4,0x90, +0x22,0xf2,0x31,0x09,0xbf,0x14,0x5f,0x60,0x14,0xd4,0x61,0x71, +0x09,0x13,0xc1,0x5e,0x16,0x5f,0x64,0x92,0xf0,0x4e,0xf1,0x25, +0x46,0xa1,0x1a,0x45,0x3f,0x29,0x62,0x26,0x4e,0x92,0x87,0x30, +0x17,0x17,0x91,0x83,0x11,0xda,0xf3,0xb7,0x98,0x24,0x79,0x68, +0x29,0x13,0x41,0x1e,0x14,0x97,0x31,0x0a,0x7a,0x47,0xf1,0x6d, +0x26,0x42,0x79,0x81,0xde,0x52,0x44,0x7e,0x25,0xe1,0xd2,0xe2, +0x72,0x26,0x42,0x39,0xf2,0x11,0xa3,0x60,0x56,0x2c,0x52,0x3e, +0x7d,0xc2,0xbf,0xe1,0xa3,0xb8,0x82,0x89,0x50,0xee,0x50,0xde, +0xa0,0xbf,0x24,0xa9,0x96,0xbf,0x60,0x22,0x94,0x47,0x94,0x07, +0xd8,0xf3,0x24,0xd5,0xd1,0x4a,0x46,0x41,0x3f,0x2a,0xd2,0x1e, +0xa3,0x8f,0x24,0x29,0x07,0xd0,0x43,0x8a,0xe8,0x1d,0x11,0x3c, +0x2f,0x16,0x7f,0x64,0x92,0xb4,0xbf,0x3f,0x31,0x0a,0x66,0xd9, +0xe2,0x2a,0x26,0x49,0xfb,0xf8,0x33,0xa3,0xc0,0x4d,0x45,0xf4, +0x93,0x22,0xf6,0x33,0x49,0xfb,0x88,0xfe,0x50,0xfc,0x93,0x7f, +0xaf,0x4a,0x11,0x7d,0xa1,0x88,0x7d,0x4b,0x52,0x0c,0xd7,0x32, +0x11,0xca,0xdf,0x7f,0x98,0x24,0xdd,0xfb,0xbf,0x8c,0x42,0x6e, +0x43,0xaf,0x28,0xd1,0x6f,0x36,0x41,0x4e,0x97,0xb0,0x67,0x25, +0xf4,0x02,0x05,0xbe,0x2b,0xa1,0x0f,0x94,0xe8,0x37,0x9a,0xe0, +0xde,0x4b,0xf0,0x7f,0x09,0xfb,0x16,0x41,0x7e,0x97,0x24,0x26, +0x89,0xb5,0x95,0x64,0x26,0x82,0xfc,0x2e,0x29,0x4c,0x12,0x6b, +0x2b,0xa9,0x4c,0x04,0xb9,0x5e,0x5a,0x9f,0x51,0xe0,0xcd,0xd2, +0x06,0x4c,0x04,0x79,0x5f,0xd2,0x98,0x24,0xd6,0x50,0xd2,0x99, +0x08,0xea,0xa0,0x94,0x60,0x14,0xb8,0xb5,0x84,0xfd,0x2b,0xd1, +0x6f,0x65,0x41,0x7f,0x2c,0xa5,0x19,0x05,0xae,0x2d,0xa1,0x6f, +0x95,0xd0,0x43,0x92,0xb4,0xce,0x1c,0x13,0x41,0xbf,0x2b,0xc1, +0xf5,0x25,0x78,0x37,0x49,0xd7,0xda,0x88,0x51,0xe0,0xe5,0x12, +0x5c,0x59,0xc2,0x3e,0x24,0xe9,0xf5,0x66,0x8c,0x02,0x47,0x97, +0x50,0xcf,0x25,0xd4,0x59,0x12,0x5e,0x2e,0xe1,0x99,0xa3,0x84, +0xd8,0x2b,0xf0,0x75,0xc9,0x66,0x92,0x98,0xef,0x4b,0x0e,0xa3, +0xc0,0xd7,0x25,0x97,0x49,0xa2,0x9f,0x96,0x3c,0x26,0x82,0x59, +0xb2,0x84,0xda,0x28,0x21,0xae,0x49,0xf4,0xd0,0x12,0xc5,0x6b, +0x18,0xff,0x1e,0x9c,0x12,0xc5,0x08,0xf1,0x48,0xc2,0xd7,0xa5, +0xcd,0x99,0x08,0xea,0xbb,0x44,0xeb,0x46,0x2f,0x49,0xc2,0xd9, +0x25,0x5a,0x2b,0xf5,0x11,0xd4,0x7c,0x69,0x1b,0x46,0x41,0x4f, +0x28,0x6d,0xcb,0x44,0x50,0xf3,0xa5,0xed,0x98,0x24,0x7a,0x5f, +0x69,0x24,0xa3,0xd0,0xda,0x68,0xdd,0xf8,0x6c,0x12,0xbd,0xaf, +0x44,0x7f,0xc6,0xba,0x22,0x70,0x43,0x69,0x67,0x26,0x89,0x1e, +0x50,0x42,0x6f,0x29,0xa1,0x8f,0x44,0xe0,0x89,0xd2,0x1e,0x8c, +0x42,0xeb,0xdf,0x93,0x49,0xa2,0x37,0x94,0xf6,0x62,0x14,0xfa, +0xbe,0xbd,0x99,0x08,0x66,0xde,0xd2,0x3e,0x8c,0x42,0xe7,0xa0, +0x6b,0xa3,0x7f,0x46,0xe0,0x9a,0xd2,0x18,0x26,0x89,0x7e,0x52, +0x1a,0xcb,0x44,0xe0,0x98,0x12,0x9d,0x0b,0xef,0x25,0xd1,0x63, +0x4a,0xff,0x43,0x41,0x4f,0x2b,0x1d,0xc4,0x44,0xe0,0xa0,0xd2, +0xc1,0x4c,0x92,0x8e,0x87,0x30,0x11,0xf8,0xa8,0x84,0x9e,0x53, +0x42,0x9f,0x49,0xd2,0x7b,0xe8,0x2b,0x25,0x3c,0xb7,0x44,0xe0, +0xa7,0xd2,0x91,0x4c,0x12,0x5f,0x2b,0xa1,0x7f,0x94,0xa8,0xef, +0xc0,0x55,0x25,0xf4,0x86,0x12,0xfa,0x80,0x82,0x7e,0x59,0x9a, +0xc4,0x24,0xe9,0xfb,0x26,0x33,0x11,0xf4,0xf7,0x12,0x7a,0x4d, +0x09,0xee,0x4f,0xe2,0x5c,0xa5,0x29,0xe0,0x04,0xbc,0x8f,0x9e, +0x5e,0x9a,0xca,0x28,0x14,0x8f,0x69,0x4c,0x92,0xce,0x3d,0x9d, +0x89,0x60,0xfe,0x2e,0xa1,0x2f,0x95,0xe0,0xf5,0x24,0x7a,0x53, +0x09,0x7d,0xa9,0x44,0xfd,0x08,0xf3,0x78,0x09,0xbe,0x2e,0xc1, +0xbb,0x49,0xba,0xfe,0xa9,0x8c,0x42,0xb1,0x84,0x73,0x4b,0x70, +0x61,0x92,0xd6,0x72,0x3a,0xa3,0x50,0x5c,0xcf,0x60,0x92,0xb4, +0x16,0xf4,0xa8,0x12,0x9c,0x17,0x81,0x53,0x4b,0x67,0x33,0x49, +0xac,0xaf,0x04,0x67,0x95,0xa8,0x4f,0xc1,0xad,0x25,0xf8,0xa8, +0x04,0xaf,0x24,0x69,0xbd,0x17,0x32,0x0a,0xed,0x09,0x1c,0x51, +0x42,0x6f,0x4a,0xd2,0x7a,0x51,0xe7,0x25,0x7a,0x56,0x82,0x73, +0x4b,0x73,0x98,0x24,0xad,0x77,0x2e,0xa3,0xd0,0xbe,0xa1,0x2f, +0x95,0xd0,0x93,0x92,0xb8,0x87,0xd2,0x95,0x8c,0x42,0x7b,0x88, +0xbe,0x54,0xa2,0x67,0xa8,0xc7,0x71,0xa4,0xba,0x45,0x9e,0x26, +0x71,0x6f,0xa5,0x5b,0x19,0x85,0x72,0xe9,0x36,0x26,0x89,0xb5, +0x96,0x6e,0x67,0x14,0xec,0x7d,0x09,0xbd,0xa8,0x84,0x99,0x2e, +0x49,0x6b,0xbf,0x8f,0x89,0xe0,0xb9,0xa2,0x84,0xe7,0xa4,0x12, +0xf2,0x22,0x89,0x75,0x97,0xe6,0x31,0x11,0xf4,0x80,0x12,0xfa, +0x4f,0x09,0xf7,0x9a,0xc4,0xba,0x4b,0x4d,0x46,0xa1,0xdc,0xa1, +0xfb,0xc4,0xf3,0x49,0x12,0x33,0x6d,0x89,0xd6,0xf1,0x24,0xff, +0x7e,0xe4,0xd2,0x53,0x4c,0x92,0xae,0xb9,0x88,0x89,0xa0,0x67, +0x94,0x9e,0x66,0x92,0x74,0x7d,0xf4,0x91,0x12,0xde,0x53,0x28, +0xef,0x16,0x33,0x11,0x3a,0xa2,0x8f,0x94,0xd0,0x0f,0x92,0x54, +0x2f,0x78,0xb6,0x28,0xe1,0xb9,0x22,0x42,0xef,0xbd,0xc6,0x24, +0x29,0x9f,0xd1,0x2b,0x4a,0xd4,0x23,0xd0,0x63,0x4a,0x6f,0x31, +0x0a,0xe5,0xf0,0x52,0x86,0x7e,0xbb,0x53,0x69,0x19,0x93,0xa4, +0x3c,0x7f,0x9b,0x89,0xe0,0xbc,0x25,0xf4,0x88,0x12,0x9e,0x3d, +0x92,0x74,0x7f,0x78,0xfe,0x28,0x61,0x4e,0x89,0xd0,0x75,0x3e, +0x60,0x14,0xca,0xf7,0x0f,0x99,0x24,0xd5,0xc2,0x72,0x26,0x42, +0xd7,0x47,0x0f,0x29,0xa1,0x7f,0x24,0x29,0xff,0xd1,0x43,0x4a, +0xe8,0x1d,0x0a,0xd5,0x04,0x7a,0x47,0x89,0x7a,0x04,0xe5,0xf9, +0x4a,0x26,0x42,0x6b,0xfc,0x86,0x51,0xa8,0x16,0xbe,0x65,0x92, +0x78,0x3e,0x2c,0x7d,0xc7,0x44,0xd0,0xeb,0x4a,0xdf,0x33,0x0a, +0xd5,0xcd,0x0f,0x4c,0x04,0xf7,0x56,0x42,0x0f,0x29,0x51,0xbf, +0xa0,0x1c,0xfe,0x99,0x51,0x30,0xc3,0x95,0xd0,0x2f,0x4a,0x78, +0xee,0x48,0x52,0xee,0xad,0x66,0x22,0x14,0x83,0xdf,0x18,0x05, +0xf3,0x5d,0x09,0xcf,0x1f,0x25,0xea,0x29,0xb4,0x3f,0x6b,0x98, +0x08,0xc5,0x06,0xbd,0xa5,0x84,0xbe,0x92,0x44,0xbf,0x2f,0xfd, +0xcd,0x28,0x98,0x1b,0x4b,0x6b,0x99,0x08,0xc5,0x0c,0xbd,0xa5, +0x8c,0xfe,0x91,0x44,0xff,0x2f,0xa3,0x87,0x94,0xd1,0x3f,0x14, +0xd4,0x6c,0x79,0x5d,0x26,0x89,0xfd,0x2b,0xa3,0x8f,0x94,0xa9, +0x8f,0x20,0xa6,0x65,0xf4,0x90,0x32,0xf5,0x0b,0xec,0x67,0x59, +0x65,0x22,0x88,0x6b,0x19,0xbd,0xa2,0x8c,0x1e,0x91,0xc4,0xde, +0x95,0x35,0x26,0x82,0x58,0x97,0xd1,0x1f,0xca,0xf0,0x7e,0x12, +0x7b,0x57,0xce,0x32,0x0a,0xea,0xba,0x0c,0xf7,0x97,0xe1,0xee, +0x24,0xf6,0xbb,0x6c,0x31,0x0a,0x7c,0x51,0x86,0xbf,0xcb,0x98, +0xed,0x93,0xd8,0x9b,0x32,0xe6,0x92,0x32,0xcd,0xf6,0xf4,0x1a, +0x73,0x43,0xb9,0x9f,0x7f,0x4b,0x57,0x79,0x28,0x13,0xc1,0x3e, +0x95,0x87,0x31,0x0a,0x3c,0x50,0x86,0xb7,0xcb,0xe4,0x6a,0xec, +0x5b,0x79,0x0b,0x26,0x89,0x39,0xb0,0xbc,0x25,0xa3,0xc0,0x09, +0xe5,0xad,0x98,0x24,0x7a,0x7f,0x79,0x6b,0x46,0x81,0x9b,0xca, +0xf0,0x77,0x19,0xde,0x4e,0x62,0x0e,0x28,0x6f,0xc7,0x28,0x70, +0x45,0x19,0xce,0x2e,0xc3,0xd7,0x11,0xba,0xee,0x0e,0x4c,0x12, +0xcf,0x9f,0xe5,0x1d,0x99,0x08,0x9d,0x7f,0x14,0x93,0x44,0x4e, +0x94,0xe1,0xe8,0x32,0xbc,0x1b,0xa1,0xf3,0xef,0xca,0x24,0x91, +0x1f,0xe5,0xdd,0x98,0x08,0x7d,0xef,0xee,0x4c,0x12,0xb9,0x52, +0xde,0x83,0x51,0xe0,0xc4,0x32,0x7c,0x54,0xa6,0xe7,0x02,0x3a, +0x0f,0xdc,0x51,0x86,0x0f,0x92,0xc8,0xa1,0xf2,0x68,0x26,0x42, +0x9f,0x47,0x9d,0x97,0x51,0xd3,0x49,0xe4,0x50,0x79,0x0c,0xa3, +0xc0,0x5d,0xe5,0xb1,0x4c,0x84,0x3e,0x0f,0x9f,0x97,0x91,0x5f, +0x49,0xe4,0x54,0x19,0x39,0x54,0x1e,0x4f,0xbf,0x0b,0x0f,0xc7, +0x09,0x4c,0x12,0x79,0x53,0x3e,0x8c,0x51,0xe0,0xb1,0x32,0xfc, +0x5b,0x26,0x6f,0x23,0x47,0xcb,0xb4,0x07,0x58,0x4b,0x12,0x39, +0x55,0xa6,0xf3,0x92,0x93,0x91,0xa3,0x65,0x78,0xb0,0x4c,0x4e, +0x46,0xde,0x94,0xa7,0x30,0x11,0xcc,0x3a,0x65,0xb8,0xb9,0x0c, +0x27,0x27,0x31,0x97,0x94,0xe1,0xb8,0x32,0x3c,0xac,0xd0,0xd7, +0xe1,0xb5,0x32,0x1c,0x8b,0x31,0xa0,0xa7,0x0c,0xc7,0x96,0xe9, +0xef,0x9a,0xf0,0xb9,0x32,0xfc,0x5a,0x86,0x57,0x53,0x94,0x53, +0xf0,0x6a,0x99,0xbc,0x8a,0xbc,0x2f,0xc3,0x4d,0x65,0xcc,0x6e, +0x29,0xe4,0x59,0x79,0x36,0x13,0x41,0xee,0x97,0x2f,0x64,0x14, +0x9c,0xb7,0x0c,0x97,0x96,0xe1,0xa4,0x14,0xf2,0xac,0x7c,0x09, +0x13,0x41,0x6d,0x94,0x31,0xef,0x97,0xe1,0xd5,0x14,0xe5,0xda, +0x1c,0x46,0xa1,0xeb,0xcf,0x65,0x22,0xa8,0x99,0x32,0xbc,0x5a, +0xc6,0x5c,0x93,0xc2,0x6c,0x52,0xc6,0x1c,0x53,0xc6,0xcc,0x12, +0xa1,0x38,0xdc,0xc0,0xa4,0x30,0x1f,0x96,0xe1,0xb5,0x32,0xe6, +0x11,0x05,0xee,0x2d,0xdf,0xcc,0x44,0x50,0x57,0x65,0xb8,0xb6, +0x0c,0x3f,0xa5,0x30,0xa3,0x94,0xef,0x62,0x22,0xa8,0xb1,0x32, +0x66,0xf9,0x32,0xbc,0x9a,0xc2,0x3c,0x52,0xbe,0x8f,0x51,0xe0, +0xe4,0x32,0xbc,0x5a,0x86,0xb7,0x52,0xc8,0xef,0x32,0x7c,0x54, +0x86,0x7b,0x14,0xf4,0x9f,0x32,0xbc,0x5a,0x46,0x0f,0x4c,0x51, +0x8e,0x63,0x66,0x2f,0x63,0x5e,0x57,0x10,0xa3,0x32,0x7a,0x5e, +0x19,0x75,0x9f,0x42,0xae,0x97,0x6b,0x8c,0x82,0x78,0x95,0x31, +0xcb,0x97,0x31,0xaf,0xa7,0x28,0xc7,0x51,0xc3,0x65,0xfa,0xfb, +0x22,0xd4,0x74,0x99,0x6a,0x15,0x1e,0x4e,0x51,0x5e,0x3f,0xce, +0x44,0x50,0xdb,0xe5,0x27,0x00,0x9c,0x9c,0xa2,0xbc,0x7e,0x8a, +0x51,0x28,0xde,0x8b,0x98,0x08,0xed,0xdd,0xd3,0x8c,0x82,0x3d, +0x28,0x53,0x0d,0x63,0x86,0x4f,0x21,0xef,0xcb,0x54,0x9f,0x98, +0xd5,0x23,0xe4,0x83,0x97,0x98,0x14,0xe5,0xf8,0xcb,0x0c,0xfd, +0x82,0xfa,0xf2,0x2b,0x4c,0x8a,0xf2,0x9d,0xea,0x16,0xce,0x8b, +0x46,0x70,0x84,0xd7,0xca,0xf0,0x4d,0x8a,0x72,0x7f,0x19,0x13, +0x25,0x97,0xbc,0xcd,0x28,0xb4,0xcf,0xf0,0x70,0x19,0x1e,0x4e, +0x51,0x1d,0xbc,0xc7,0x44,0xe1,0x9a,0x32,0x39,0x02,0xf5,0x9d, +0xa2,0x3a,0xf8,0x90,0xa1,0xdf,0xde,0x58,0x5e,0xce,0x44,0xc9, +0x43,0x54,0xcf,0xa8,0xa7,0x14,0x6a,0xa3,0x4c,0xf5,0x89,0x19, +0x5d,0xa1,0x7c,0xf9,0x8a,0x49,0x51,0xee,0x7f,0xcd,0x28,0xe7, +0xe2,0x48,0xf5,0x86,0x5a,0x89,0x52,0x8e,0x51,0x3d,0x20,0x4f, +0x53,0x54,0x13,0x94,0x67,0xf0,0x6a,0x94,0x72,0x8c,0x72,0x0b, +0xb9,0x93,0x42,0x9d,0x94,0x57,0x33,0x51,0xcc,0xc4,0x65,0xca, +0x09,0xe4,0x7e,0x0a,0x35,0x53,0xfe,0x83,0x51,0xd0,0xe3,0xcb, +0x6b,0x98,0x28,0xdc,0x57,0xa6,0x3d,0xc0,0xfc,0x9d,0x3a,0x8c, +0xff,0x29,0xb5,0x82,0x18,0x44,0xe1,0xc1,0x4a,0x94,0x49,0xc1, +0x1b,0x15,0x81,0x51,0x30,0x17,0x54,0x62,0x4c,0x14,0x79,0x5b, +0x59,0x87,0x51,0x90,0xeb,0x15,0xdc,0x5b,0x05,0xd7,0x4c,0xa1, +0xde,0x2a,0x0a,0x13,0x85,0x37,0x2b,0x2a,0xa3,0xa0,0x06,0x2a, +0xf0,0x6a,0x05,0xdf,0x97,0x42,0x9d,0x55,0x34,0x26,0x8a,0x3c, +0xaf,0x10,0x98,0xb7,0x53,0xa8,0xb9,0x4a,0x92,0x51,0x50,0x27, +0x95,0x14,0x13,0xc5,0xd7,0x2a,0x98,0xbb,0x2b,0xc8,0xd9,0x14, +0x6a,0xa1,0x82,0x99,0xba,0x82,0x79,0x3a,0x4a,0x9f,0xdd,0x84, +0x49,0xa1,0x2e,0x2b,0x9b,0x32,0x0a,0x6a,0xab,0xb2,0x19,0x93, +0x42,0xee,0x55,0x06,0x31,0x0a,0xea,0xad,0x82,0x67,0x9e,0x0a, +0x66,0xe9,0x14,0x72,0xa9,0xe2,0x32,0x51,0x3a,0x37,0xe6,0xe8, +0x0a,0x5c,0x9d,0x42,0xcc,0x2b,0x21,0xa3,0xa0,0x26,0x2b,0xc8, +0xe3,0x0a,0x5c,0x9d,0xa2,0x7b,0x1c,0xca,0x44,0xd1,0x03,0x2a, +0xc8,0xe3,0x0a,0xdc,0x9b,0xa2,0x6b,0x21,0x47,0x2b,0x34,0x33, +0xa3,0x76,0x2b,0xc8,0xbf,0x0a,0x7c,0x9b,0x42,0x8d,0x56,0x46, +0x32,0x51,0xf4,0x89,0x0a,0xbc,0x5b,0x81,0x4b,0x53,0x98,0x81, +0x2a,0xf0,0x68,0x05,0xb9,0x13,0x45,0xdf,0xa8,0xc0,0x9d,0x15, +0xe4,0x4b,0x0a,0x75,0x5b,0xd9,0x93,0x89,0xa2,0x7e,0x2b,0x7b, +0x31,0x29,0xd4,0x70,0x65,0x6f,0x26,0x8a,0xfb,0xaf,0xec,0xc3, +0x28,0xf0,0x42,0x65,0x34,0x13,0xa5,0x78,0xec,0xcb,0x28,0x70, +0x44,0x65,0x3f,0x26,0x8a,0x18,0x55,0xe0,0xd4,0x0a,0xe6,0x8b, +0x14,0xea,0xbf,0x82,0xf9,0xa0,0x82,0x99,0x37,0x4a,0x31,0x3b, +0x84,0x49,0x61,0xce,0xa9,0x1c,0xca,0x44,0x29,0x4e,0xe3,0x98, +0x14,0xe6,0x9c,0xca,0x78,0x26,0x4a,0x31,0x9b,0xc0,0xa4,0xe0, +0x8e,0xca,0x61,0x8c,0x42,0xf7,0x78,0x38,0x93,0x82,0x47,0x2a, +0x47,0x30,0x51,0x3c,0xcf,0x54,0x8e,0x64,0x52,0xf0,0x4a,0xe5, +0x28,0x46,0xc1,0x2c,0x58,0x99,0xc8,0x44,0xe1,0x93,0xca,0xd1, +0x8c,0x42,0x31,0xa1,0x3c,0x43,0xee,0xa4,0xf0,0x8c,0x50,0x99, +0xc4,0x44,0xd1,0x47,0x2b,0x70,0x76,0x05,0xbe,0x4e,0xc1,0x47, +0x15,0x38,0xbb,0x02,0x1f,0x2b,0x98,0x1f,0x2b,0x94,0x43,0x70, +0x70,0x0a,0x6e,0xaa,0x4c,0x63,0x14,0xcc,0x92,0x15,0xb8,0xb5, +0x82,0xd9,0x38,0x05,0x4f,0x55,0x4e,0x65,0x14,0xb8,0xb2,0x32, +0x8b,0x49,0xc1,0x59,0x95,0xd3,0x18,0x05,0xee,0xac,0x50,0x1e, +0x60,0xf6,0x4d,0xc1,0x61,0x15,0xda,0x7b,0xd4,0x47,0x14,0x4e, +0xab,0x50,0xae,0x93,0xc3,0xe1,0xaf,0xca,0x6c,0x26,0x4a,0xf9, +0x42,0x79,0x89,0x3d,0x4f,0x61,0x86,0xa9,0x5c,0xcc,0x28,0xf0, +0x6f,0xe5,0x12,0x26,0x4a,0x79,0x44,0x79,0x80,0x7b,0x4d,0x61, +0x86,0xa9,0x5c,0xc9,0x28,0xb4,0xbf,0xb4,0x6e,0xcc,0xbd,0x51, +0x3c,0xab,0x55,0xae,0x61,0x52,0xf0,0x5d,0x85,0xd6,0x87,0x73, +0x44,0x29,0xef,0xe8,0x73,0xd8,0xf3,0x14,0xfc,0x57,0xb9,0x99, +0x51,0xe0,0xf2,0x0a,0xbc,0x5d,0xc1,0x6c,0x9c,0x82,0xfb,0x2a, +0x98,0x8b,0x2b,0xd8,0x9f,0x28,0xf2,0xb2,0x72,0x27,0xa3,0x50, +0x9e,0xdc,0xc5,0x44,0x31,0x3b,0x54,0x28,0xee,0x88,0x65,0x0a, +0x5e,0xac,0xc0,0xeb,0x15,0xc4,0x29,0x8a,0xe7,0xc0,0xca,0x83, +0x4c,0x0a,0xf3,0x6a,0x65,0x1e,0xa3,0xd0,0x75,0xe0,0xf3,0x0a, +0x66,0xc3,0x14,0x66,0x9e,0x0a,0x9e,0x85,0x2a,0x98,0x07,0xa3, +0xc8,0xef,0xca,0x23,0x8c,0x42,0xd7,0xa7,0xd8,0xe1,0xd9,0x25, +0x8a,0x5c,0xaf,0x54,0x18,0x05,0x6b,0xaa,0x54,0x99,0x28,0xe6, +0x89,0x4a,0x8d,0x51,0x68,0x8d,0x70,0x7e,0x05,0xf3,0x76,0x14, +0xee,0xad,0x50,0x2c,0xc8,0xff,0x4b,0x70,0xec,0x30,0x51,0x3c, +0xeb,0x55,0xd0,0x07,0x2a,0xf4,0x5b,0x4a,0xe1,0xe8,0x0a,0xfa, +0x40,0x05,0xf1,0x88,0xa2,0x4e,0x2a,0x74,0xff,0x98,0xb1,0x53, +0x70,0x74,0x85,0xd6,0x8a,0x75,0x45,0x51,0x33,0x95,0xe7,0x99, +0x14,0x1c,0x5d,0x81,0xe7,0x2b,0xf0,0x7c,0x14,0xf5,0x53,0xa1, +0xef,0x87,0xc7,0x53,0xf0,0x75,0xe5,0x35,0x46,0xa1,0xdc,0x7e, +0x9d,0x49,0xc1,0xd1,0x15,0xb8,0xbd,0x82,0xf9,0x34,0x4a,0xf5, +0x84,0xb9,0xb3,0x42,0x9e,0x87,0xb3,0x2b,0xcb,0x98,0x28,0xd5, +0x13,0x1c,0x5f,0x81,0xdf,0x53,0x70,0x77,0x05,0x8e,0xaf,0x90, +0xdb,0xa9,0xb6,0xe8,0x73,0x98,0x9b,0x53,0xf0,0x77,0x05,0xf3, +0x53,0x05,0x73,0x73,0x94,0x6a,0xeb,0x33,0x26,0x05,0x97,0x57, +0x3e,0x67,0xa2,0xf0,0x73,0xe5,0x0b,0x26,0x05,0xbf,0x57,0xfe, +0x47,0x14,0x75,0x58,0xf9,0x8a,0x51,0xa8,0xbe,0xe0,0xf8,0x0a, +0xfc,0x9e,0xa2,0xf7,0xbe,0x61,0x14,0xda,0x4f,0x78,0xbe,0x82, +0xf9,0x25,0x85,0xaf,0x55,0xbe,0x67,0xa2,0x54,0xbb,0x3f,0xf0, +0x7f,0x75,0x49,0xe1,0xeb,0xd5,0x08,0xa3,0x60,0xbf,0xab,0xf0, +0x74,0x75,0x3d,0xfe,0x4d,0xaf,0xd5,0x38,0x40,0x4f,0x88,0x62, +0xb6,0xaf,0x4a,0x8c,0x82,0x5c,0xa8,0xc2,0xcd,0x55,0x72,0x32, +0x6a,0xbe,0x0a,0x1f,0x57,0xe1,0xe2,0x34,0x3c,0x5e,0x85,0x8f, +0xab,0xf0,0x68,0x14,0x35,0x5f,0x85,0x6b,0xab,0x70,0x5b,0x1a, +0x2e,0xaf,0x66,0x19,0x05,0x39,0x54,0x85,0xa7,0xaa,0x79,0x7c, +0x06,0xb5,0x5d,0xed,0x65,0xd2,0xb8,0x46,0x15,0x3e,0xaa,0x92, +0x87,0x51,0xdb,0xd5,0x4d,0x18,0x05,0xb9,0x56,0xdd,0x94,0x49, +0xd3,0xf5,0xe1,0xe0,0x2a,0xb9,0x17,0xf5,0x5b,0x85,0x47,0xaa, +0xa8,0xe9,0x28,0x6a,0xbd,0x8a,0x1a,0xab,0xc2,0xc3,0x69,0x5a, +0x97,0xcb,0x44,0x51,0xe7,0x55,0xd4,0x4f,0x15,0xf5,0x91,0xa6, +0x35,0xc2,0xc7,0x55,0xd4,0x44,0x14,0x75,0x5f,0x85,0x87,0xab, +0xc8,0xdf,0x34,0xad,0x17,0x73,0x71,0x15,0xf3,0x70,0x14,0x0e, +0xa8,0x6e,0xc9,0xa4,0xb1,0xee,0x2a,0xf2,0xb5,0x8a,0xdc,0x8c, +0xc2,0x05,0x55,0x78,0xb8,0x0a,0x0f,0xa7,0xe9,0x3e,0xe0,0xe0, +0x2a,0xfc,0xab,0xa0,0x06,0xaa,0x3b,0x30,0x51,0xcc,0x45,0xd5, +0x1d,0x19,0x05,0x35,0x50,0xc5,0x1c,0x50,0x45,0xcf,0x8f,0xe2, +0x39,0xbb,0xba,0x33,0x93,0xc6,0x3d,0x57,0x77,0x61,0x14,0xd4, +0x47,0x75,0x57,0x26,0x8a,0xf9,0xa7,0x8a,0x5c,0xac,0xc2,0xdd, +0x69,0x8a,0x07,0xf2,0xaf,0x4a,0xde,0x86,0x77,0xaa,0x70,0x76, +0x15,0xf9,0x95,0x86,0x93,0xab,0xfb,0x30,0x0a,0x9e,0xc5,0xaa, +0xc8,0xad,0x2a,0xf2,0x25,0x4d,0x71,0x42,0x8f,0xaf,0x22,0x47, +0xa2,0xf0,0x51,0xf5,0x00,0x26,0x4d,0xb1,0x39,0x90,0x51,0x50, +0x87,0x55,0xda,0x3f,0x72,0x35,0xfc,0x54,0xa5,0x3d,0x83,0x9f, +0xd3,0xf0,0x6a,0x75,0x1c,0x13,0xc5,0x1c,0x52,0x85,0x9b,0xab, +0xe4,0x61,0xd4,0x6b,0xf5,0x70,0x26,0x8a,0x79,0xa3,0x7a,0x04, +0xa3,0xa0,0x5e,0xab,0x70,0x70,0x15,0xfb,0x93,0x46,0xdc,0xab, +0x13,0x99,0x28,0xe6,0x8d,0x2a,0xbc,0x5b,0xc5,0x3e,0xa4,0xb1, +0x07,0x55,0x78,0xb7,0x4a,0xff,0x26,0x0b,0x07,0x56,0xe1,0xdb, +0x2a,0xe2,0x97,0xa6,0x7d,0x80,0x4b,0xab,0xe8,0xb7,0x0a,0x66, +0xba,0xea,0x89,0x4c,0x1a,0xfd,0xaf,0x7a,0x12,0xa3,0xa0,0xfe, +0xab,0x33,0x99,0x34,0xfa,0x61,0xf5,0x64,0x26,0x0a,0x9f,0x56, +0x29,0x16,0x98,0xcb,0xd2,0x70,0x51,0x95,0xd6,0x8a,0x75,0x45, +0xe1,0xd7,0x2a,0x5d,0x1b,0x5f,0x57,0x90,0xc8,0xd5,0x73,0x99, +0x28,0x5c,0x5b,0x3d,0x8f,0x49,0xa3,0x97,0x56,0xe9,0xcf,0x70, +0xaf,0x02,0x7f,0x54,0xe1,0xdd,0x2a,0x7c,0x1b,0xc5,0x9f,0xab, +0x70,0x6d,0x15,0x7d,0x2f,0x8d,0x3d,0xae,0xa2,0xcf,0x55,0xd1, +0x7f,0xa2,0xf8,0x5a,0xf5,0x0a,0x26,0x4d,0x7b,0x7b,0x25,0x13, +0x85,0x8b,0xab,0x57,0x31,0x69,0xda,0xe7,0xab,0x99,0x28,0xdc, +0x5c,0xbd,0x86,0x51,0xe0,0xa6,0xea,0xb5,0x4c,0x9a,0xf6,0xff, +0x3a,0x46,0x81,0xab,0xaa,0xf0,0x71,0x15,0x4e,0x8d,0x62,0x16, +0xaf,0xde,0xcc,0x28,0xf0,0x57,0x15,0x1e,0xac,0xc2,0x79,0x69, +0xe4,0x4a,0xf5,0x36,0x26,0x4a,0xd7,0x87,0x6b,0xaa,0xa8,0xe9, +0x34,0xe5,0xcb,0x9d,0x8c,0x02,0xc7,0x55,0xef,0x62,0xa2,0xb4, +0x2e,0xaa,0x43,0xb8,0x37,0x4d,0xb9,0x33,0x8f,0x51,0xe0,0xbf, +0xea,0x7c,0x26,0x4a,0xeb,0x7d,0x88,0x49,0x53,0xbe,0x3c,0xcc, +0x28,0xf0,0x63,0x75,0x01,0x13,0xa5,0xfb,0x58,0xc8,0x28,0xf0, +0x65,0x15,0x6e,0xae,0x96,0xf9,0xff,0xd1,0x55,0x2b,0x4c,0x94, +0xee,0x8f,0xe2,0x8b,0xf8,0xa5,0x29,0xa7,0x1a,0x8c,0x02,0xb7, +0x56,0xe9,0x9e,0x71,0x1f,0x69,0xca,0xa9,0x0e,0xa3,0xc0,0xb5, +0x55,0x5a,0x07,0x7c,0x9b,0xa6,0x9c,0x5a,0xcc,0x44,0x29,0x36, +0xf0,0x6e,0x15,0x33,0x73,0x1a,0xf9,0x51,0x85,0x8b,0xab,0x70, +0x6c,0x94,0xe2,0x04,0xbf,0x56,0xe1,0xd5,0x34,0xd5,0xda,0x1b, +0x4c,0x14,0xbd,0xab,0x0a,0xbf,0x56,0xe1,0xd6,0x34,0xf2,0xa6, +0xba,0x94,0x51,0x30,0xc7,0x57,0x97,0x31,0x51,0xf4,0xb2,0x2a, +0x1c,0x5b,0x85,0x5f,0xd3,0x94,0x47,0x98,0x8b,0xab,0x70,0x6a, +0x14,0xb1,0xae,0x7e,0xcc,0xa4,0x29,0xe7,0x3f,0x61,0xa2,0x14, +0xef,0x15,0x8c,0x82,0x67,0x80,0xea,0xa7,0x4c,0x14,0x7b,0x50, +0x85,0x77,0xab,0xf0,0x6a,0x1a,0x79,0x56,0xfd,0x8a,0x51,0xd0, +0x1f,0xab,0x5f,0x33,0x69,0xca,0x43,0x38,0xb4,0x4a,0xf3,0x33, +0xed,0x15,0x79,0x13,0x5e,0x4d,0x53,0xde,0x7d,0xcf,0x44,0xb1, +0x67,0x55,0xf2,0x2a,0x9e,0x2f,0xd3,0x94,0x77,0x3f,0x31,0x0a, +0x9e,0x2b,0xaa,0xab,0x98,0x28,0xed,0x27,0x66,0xed,0x2a,0xe6, +0xe7,0x34,0xe5,0x23,0x66,0xe7,0x2a,0xe6,0xe6,0x28,0xed,0xed, +0x5f,0x4c,0x1a,0x79,0x59,0xfd,0x9b,0x89,0x92,0x33,0xd7,0x32, +0x69,0xca,0xd3,0x7f,0x98,0x28,0xb9,0x11,0x8e,0xae,0x61,0x96, +0x4e,0x23,0x77,0x6b,0xf0,0x6f,0x0d,0xf3,0x73,0x14,0x6e,0xac, +0xc1,0xb9,0x35,0x38,0x3c,0x8d,0x98,0xd7,0xe2,0x4c,0x14,0xbe, +0xaa,0xc1,0xb3,0x35,0x78,0x34,0x8d,0x7c,0xac,0xc1,0x95,0x35, +0x78,0x31,0x8a,0x1c,0xaa,0xc1,0xdf,0x35,0xb8,0x30,0x8d,0x78, +0xd6,0x34,0x46,0x41,0xaf,0xaf,0x61,0x96,0xae,0x61,0x5e,0x4e, +0x23,0x5f,0x6b,0x49,0x46,0xc1,0xbe,0xd6,0xe0,0xf6,0x1a,0xe6, +0xdc,0x28,0x72,0xab,0x96,0x61,0xd2,0x88,0x61,0x2d,0xcb,0x44, +0x91,0x5b,0xb5,0x1c,0x93,0x46,0xac,0x6a,0x79,0x26,0x8a,0x3c, +0xab,0xf5,0x32,0x69,0xe4,0x78,0x6d,0x43,0x46,0x41,0x7e,0xd4, +0x36,0x62,0xd2,0x88,0x61,0x6d,0x63,0x26,0x8a,0x7c,0xac,0x6d, +0xc2,0x28,0xc8,0x9d,0xda,0xa6,0x4c,0x1a,0x31,0xac,0x6d,0xc6, +0x44,0xe1,0xa5,0xda,0x20,0x46,0x41,0x2f,0xaf,0xc1,0x7d,0x35, +0xb8,0x2d,0x8d,0x78,0xd6,0x4c,0x46,0x41,0x6f,0xaf,0xc1,0x59, +0x35,0xf4,0x89,0x34,0xe2,0x59,0x83,0xa7,0x6a,0xf4,0x6f,0xa9, +0x98,0x1f,0x6a,0x70,0x53,0x0d,0xb3,0x4f,0x9a,0xe2,0x06,0x1f, +0xd5,0xe8,0xef,0x4c,0xd0,0xff,0x6b,0xc3,0x99,0x34,0x6a,0xa6, +0x36,0x82,0x51,0x90,0xb3,0xb5,0xcd,0x99,0x28,0xfc,0x56,0xdb, +0x82,0x51,0x90,0xc7,0x35,0xf4,0x8d,0x1a,0xf5,0x08,0xba,0xf7, +0x91,0x4c,0x14,0xcf,0xb1,0xb5,0xed,0x19,0x05,0x39,0x5e,0x83, +0x53,0x6a,0xf0,0x47,0x1a,0x0e,0xac,0x8d,0x62,0x14,0xe4,0x7d, +0x0d,0xf5,0x5f,0xa3,0x1e,0x81,0x7a,0xab,0xa1,0xe6,0x6b,0xe8, +0x0b,0x0a,0x6a,0xa0,0x86,0xda,0xae,0xc1,0xf9,0x69,0xcc,0x40, +0x35,0xd4,0x70,0x8d,0x66,0x72,0xd4,0x43,0x6d,0x3f,0x26,0x8d, +0x3a,0xab,0xa1,0x0f,0xd4,0xe8,0xdf,0x43,0x51,0x0f,0x35,0xb8, +0xbf,0x46,0x6e,0x47,0x8d,0xd7,0xc6,0x31,0x51,0xba,0xd6,0x78, +0x46,0xc1,0x0c,0x52,0xc3,0xdc,0x5d,0x83,0xe7,0xd3,0xc8,0xed, +0xda,0xe1,0x4c,0x14,0x35,0x5f,0x83,0xe3,0x6b,0xf0,0x7b,0x9a, +0xf6,0xfd,0x28,0x46,0xc1,0xbc,0x52,0x9b,0xc8,0x44,0x69,0x6d, +0xf0,0x7c,0x0d,0xfd,0x33,0x4d,0xfb,0x85,0xd9,0xb9,0x86,0x9e, +0x19,0x85,0x1b,0x6a,0x53,0x99,0x34,0x6a,0xbb,0x36,0x8d,0x51, +0x30,0xe3,0xd4,0xa6,0x33,0x69,0x8a,0xdb,0x0c,0x46,0xc1,0x33, +0x6d,0xed,0x44,0x26,0x4d,0x71,0x3b,0x89,0x51,0x50,0xc3,0x35, +0xb8,0xbf,0x86,0x19,0x3b,0x4d,0xb1,0x42,0x3f,0xab,0x61,0xae, +0x8e,0xc2,0x3b,0x35,0xd4,0x70,0x8d,0xfc,0x4f,0xf7,0x7e,0x26, +0xa3,0xa0,0xd6,0x6b,0xe8,0x03,0x35,0xf4,0x80,0x34,0xdd,0x3b, +0xea,0xb3,0x46,0xfe,0x87,0x93,0x6a,0x70,0x7f,0x0d,0x7e,0x4f, +0x63,0xf6,0xaa,0xc1,0xdd,0x35,0x78,0x3a,0x0a,0x4f,0xd5,0x2e, +0x63,0xd2,0x70,0x44,0x6d,0x0e,0xa3,0xd0,0xeb,0xb9,0x4c,0x1a, +0xbe,0xa8,0x5d,0xce,0x44,0x29,0xb6,0x70,0x71,0x8d,0xe6,0x6d, +0x7a,0x1f,0x3e,0xad,0x91,0xdb,0xe1,0x91,0x1a,0x9c,0x55,0xa3, +0x19,0x9b,0xe2,0x0c,0x4f,0xd5,0x50,0x37,0x69,0xcc,0x6a,0xb5, +0x9b,0x98,0x28,0xdc,0x58,0xa3,0x9a,0x81,0x6f,0xd2,0x70,0x4a, +0x8d,0x6a,0x83,0x66,0x6c,0xb8,0xb1,0x76,0x27,0x93,0x86,0x53, +0x6a,0x77,0x31,0x0a,0x7c,0x54,0x83,0xcf,0x6b,0xa8,0xe9,0x34, +0x1c,0x53,0xa3,0x5c,0xbc,0x1f,0x9f,0x87,0x37,0x6a,0x0f,0x30, +0x69,0xb8,0xa6,0xf6,0x20,0x13,0xa5,0x1a,0x9c,0xc7,0xa4,0xe1, +0x9d,0x1a,0x7c,0x5f,0x43,0x9e,0x46,0x69,0x5f,0x28,0xff,0x50, +0x67,0x69,0x78,0xa8,0x46,0xf5,0x53,0xe0,0xff,0x7f,0x5c,0x2b, +0x32,0x0a,0x7c,0x57,0xa3,0x9c,0x20,0xcf,0xc3,0x4d,0xb5,0x0a, +0x13,0xa5,0x9c,0xa7,0xbd,0x44,0xae,0xa5,0xe1,0xa7,0x5a,0x9d, +0x51,0xe0,0xc5,0x5a,0x83,0x89,0xd2,0xfe,0x52,0x7c,0xd1,0x2b, +0xd2,0xbf,0xe2,0xf8,0x38,0x13,0xa5,0xfd,0x7d,0x82,0x51,0x28, +0x0e,0x4f,0x32,0x69,0xb8,0xac,0xf6,0x14,0x13,0xa5,0xbd,0x5e, +0xc4,0x28,0x98,0x65,0x6b,0x4f,0x33,0x51,0xda,0x6b,0xca,0x39, +0xac,0x31,0x0d,0xdf,0xd5,0xa8,0x26,0x69,0x0e,0xa7,0xba,0xa0, +0x35,0xe1,0x9a,0x19,0xcc,0xa6,0xb5,0x57,0x98,0x28,0x7a,0x42, +0x8d,0xce,0x85,0xef,0xcb,0xc0,0x7d,0x35,0xfa,0x1c,0xf5,0x0b, +0xca,0x8d,0x37,0x19,0x85,0x62,0xfe,0x16,0x13,0xa5,0xdc,0x40, +0xdf,0xa8,0xd1,0xbf,0x93,0xc2,0xe9,0x35,0xf4,0x8b,0x1a,0xea, +0x20,0x03,0x57,0xd6,0x28,0xbf,0x91,0xa7,0x51,0x7a,0xef,0x03, +0x26,0x43,0xbe,0xfc,0x90,0x89,0x52,0xbd,0x2c,0x67,0x32,0xe4, +0x4e,0xca,0x95,0x8f,0xf9,0xff,0x6e,0xd7,0x3e,0x61,0x32,0xf0, +0x69,0x6d,0x05,0x13,0xa5,0x73,0x7c,0xca,0x64,0xc8,0xaf,0x9f, +0x31,0x51,0x3a,0xdf,0xe7,0x8c,0x42,0xfb,0x4b,0xf7,0x8f,0xb5, +0x44,0xe9,0xdc,0x5f,0x33,0x19,0xcc,0xd3,0xb5,0x95,0x4c,0x94, +0xce,0x8d,0x3e,0x53,0x43,0x8f,0xc9,0xc0,0xd1,0x35,0xda,0x7b, +0xec,0x55,0x94,0xae,0xb3,0x8a,0x51,0xe8,0xeb,0x3f,0x33,0x19, +0xb8,0xbb,0xf6,0x0b,0xa3,0xe0,0x7b,0x6a,0xb4,0x37,0xbf,0xe1, +0xf3,0x14,0x87,0xdf,0x19,0x85,0xce,0x81,0x9e,0x53,0xa3,0x9e, +0x42,0xd7,0x59,0xcb,0x28,0x94,0x3f,0xff,0x30,0x51,0xca,0x99, +0x7f,0x19,0x85,0x5e,0xff,0xd7,0xd3,0x53,0xa7,0xbf,0xc3,0x41, +0x3f,0xab,0xe3,0xb9,0xa0,0x8e,0x78,0x67,0xd0,0x1b,0xea,0x31, +0x26,0x8a,0x6b,0xd7,0x11,0xc7,0x3a,0xfa,0x4d,0x06,0x7d,0xa2, +0xbe,0x1e,0xa3,0xd0,0xe7,0xe3,0x4c,0x14,0x6b,0xaa,0x23,0x76, +0x75,0xac,0x31,0x83,0xbe,0x51,0xa7,0xef,0x47,0x5f,0x89,0x62, +0x8d,0xf5,0x04,0x93,0x41,0x0f,0xa8,0xa3,0xb7,0xd4,0xd1,0x47, +0xa2,0x58,0x77,0x1d,0x3d,0xa4,0x8e,0xde,0x91,0x41,0x3f,0xa8, +0xe7,0x19,0x05,0xf7,0x5f,0x47,0xdf,0xa8,0xe3,0xb3,0x19,0xf4, +0x83,0xfa,0x46,0x4c,0x14,0xbd,0xb3,0xbe,0x31,0xa3,0x20,0x2e, +0x75,0xfa,0x1a,0x7a,0x44,0x06,0xbd,0xa1,0xfe,0x3f,0xa2,0xc8, +0xc3,0x3a,0xfa,0x43,0x1d,0x7d,0x21,0x83,0xfe,0x50,0x37,0x19, +0x85,0xd6,0x8f,0xbe,0x50,0x47,0x5f,0xc8,0xd0,0xd1,0x61,0x14, +0x5a,0x33,0xfa,0x43,0x1d,0xcf,0x0c,0x19,0x7a,0x0f,0xcf,0x0d, +0x75,0x3c,0x33,0x28,0xb4,0xe6,0x3e,0x26,0x83,0xaf,0xd5,0xfb, +0x19,0x85,0xd6,0x3c,0x94,0xc9,0xd0,0x67,0x87,0x31,0x51,0xc4, +0xba,0x8e,0x1e,0x52,0xc7,0xb3,0x44,0x06,0xdf,0x5f,0xdf,0x9a, +0x51,0xb0,0x1f,0x75,0xcc,0x9d,0x75,0xf4,0x8b,0x0c,0xfa,0x4a, +0x7d,0x24,0xa3,0x60,0x7f,0xea,0xe8,0x15,0x75,0xb8,0x3e,0x83, +0x7e,0x52,0xdf,0x97,0x51,0x30,0x23,0xd4,0xe1,0xfb,0x3a,0xe6, +0xaf,0x0c,0x9e,0x13,0xea,0x98,0xe7,0xeb,0x98,0xb9,0xa2,0xd8, +0xbf,0xfa,0xa1,0x4c,0x06,0xdf,0x53,0x1f,0xc7,0x44,0x69,0xdf, +0xc6,0x33,0x0a,0xc5,0x67,0x02,0x93,0xa1,0xf3,0xc1,0xfd,0x75, +0x38,0x9f,0xfe,0xfb,0x7d,0xfd,0x08,0x26,0x43,0xe7,0x86,0xfb, +0xeb,0x70,0xbe,0x40,0xfb,0x0c,0xdf,0xd7,0x31,0xc7,0x67,0xd0, +0x5b,0xea,0x98,0xd5,0xea,0x98,0xe3,0x05,0xda,0xf3,0xe3,0x18, +0x85,0xe2,0x79,0x3c,0x23,0x60,0xef,0xeb,0x53,0x18,0x85,0xee, +0xf7,0x04,0x46,0xa0,0x5c,0x98,0xca,0x28,0xb4,0xce,0x69,0x8c, +0x40,0x79,0x31,0x9d,0xc9,0xe0,0x7e,0xea,0x33,0x18,0x05,0xf9, +0x57,0x47,0x4f,0xa8,0x63,0xe6,0x17,0x28,0x5f,0x30,0xf3,0xd7, +0xd1,0x0b,0x32,0x74,0xaf,0xb3,0x18,0x01,0xb5,0x50,0x47,0x4f, +0xa8,0xa3,0x1f,0x64,0x70,0xff,0xf5,0x33,0x18,0x05,0xf9,0x5a, +0x3f,0x93,0x11,0x30,0xcb,0xd4,0xd1,0x17,0xea,0x98,0xf1,0x33, +0x14,0x0f,0xcc,0x58,0xf5,0x0b,0xf1,0x3e,0xf2,0xaf,0x7e,0x11, +0x93,0xc1,0x7d,0xd6,0xd1,0x1f,0xea,0xe8,0x0b,0x02,0x72,0xb1, +0x7e,0x19,0xa3,0x50,0xdc,0xd0,0x13,0xea,0xf0,0x7f,0x86,0x62, +0x70,0x05,0xa3,0x52,0xac,0xae,0x64,0x32,0x88,0x4b,0xfd,0x2a, +0x46,0xa0,0x7c,0xbe,0x9a,0x51,0x51,0x27,0xf5,0x6b,0x98,0x0c, +0xc5,0xec,0x5a,0x46,0xa5,0x78,0x5e,0xc7,0x08,0x98,0x99,0xea, +0xe8,0x1b,0x75,0xf4,0x8c,0x0c,0x62,0x5a,0xbf,0x91,0x51,0xb1, +0x19,0xf5,0x9b,0x18,0x01,0x35,0x50,0x47,0xef,0xa8,0xa3,0x67, +0x64,0x28,0xc6,0xb7,0x31,0x2a,0xc5,0x1f,0x33,0x53,0x1d,0xbd, +0x23,0x43,0x71,0x45,0xdf,0xa8,0xa3,0x67,0xa8,0x54,0x7f,0xf7, +0x30,0x19,0x8a,0xe5,0xbd,0x8c,0x4a,0xf1,0x47,0x1f,0xa9,0xa3, +0x8f,0x08,0x54,0x4f,0xe8,0x21,0x75,0xf4,0x88,0x0c,0xc5,0x78, +0x01,0x23,0x50,0x6d,0x2d,0x64,0x54,0xda,0x17,0xf4,0x8b,0x3a, +0xe6,0xa9,0x0c,0xc5,0xbb,0xc0,0x08,0x54,0x73,0xe8,0x1b,0x75, +0xf4,0x8b,0x0c,0xe2,0x5e,0xaf,0x30,0x2a,0xed,0x11,0xfa,0x45, +0x1d,0x7d,0x35,0x43,0xf1,0xc6,0xec,0x5f,0x47,0xcf,0x54,0xe1, +0xc3,0xfa,0x00,0x93,0xa1,0xd8,0x3f,0xc6,0xa8,0xf0,0x5b,0xfd, +0x71,0x26,0x83,0xfd,0xa8,0x3f,0xc1,0xa8,0xb4,0xa7,0xe8,0x15, +0x75,0xf4,0xb4,0x0c,0xed,0x0f,0x7a,0x58,0x1d,0xb3,0x9e,0x40, +0x4e,0xc0,0x3c,0x57,0x47,0x5f,0x50,0x69,0x4f,0x97,0x30,0x02, +0xd5,0x3a,0xfa,0x43,0x1d,0xbd,0x21,0x83,0x9e,0x5d,0x47,0x7f, +0xa8,0xa3,0x2f,0x08,0x54,0xf7,0xaf,0x32,0x19,0xda,0xb7,0xd7, +0x18,0x81,0x1c,0xf0,0x3a,0xa3,0x92,0x7b,0xde,0x60,0x04,0xf2, +0x01,0x7a,0x45,0x1d,0x3d,0x22,0x43,0x7b,0xbb,0x94,0x51,0x29, +0x1f,0xd0,0x2b,0xea,0xe8,0x09,0x02,0xb9,0xe2,0x1d,0x26,0x43, +0xfb,0xfc,0x2e,0x23,0x90,0x3f,0xde,0x63,0x32,0xb4,0xe7,0xef, +0x33,0x02,0x39,0xe4,0x03,0x46,0x25,0xb7,0x7d,0xc8,0x08,0xf0, +0x4b,0x7d,0x39,0xa3,0x92,0xe7,0x3e,0x62,0x04,0x72,0x0b,0xfa, +0x49,0x1d,0xbe,0x57,0x29,0x97,0x56,0x30,0x02,0xb9,0xe7,0x53, +0x46,0xa5,0x7c,0x40,0x0f,0xa9,0xa3,0x77,0x64,0x28,0xa7,0xbe, +0x60,0x04,0xcc,0xad,0x75,0xf8,0xbd,0x4e,0xbd,0x83,0x72,0x6a, +0x25,0x23,0xf8,0x38,0xa2,0x37,0xd4,0xe1,0xcb,0x0c,0xe5,0x14, +0x39,0x11,0x9e,0x53,0x29,0x07,0x7e,0x61,0x32,0xc8,0xa1,0x3a, +0xb9,0x0c,0xde,0x52,0x29,0x07,0xc8,0x47,0xa8,0xdd,0x0c,0xe5, +0xd4,0x5a,0x46,0x20,0xbf,0x51,0x4d,0xa2,0x26,0x32,0xc8,0x1d, +0xb4,0xff,0xff,0x43,0x85,0x73,0x1b,0xc8,0xf5,0x06,0xf2,0x3a, +0x83,0xb9,0xa3,0x81,0xdc,0x6d,0x20,0x37,0x55,0xec,0x4b,0x03, +0xb9,0xd8,0x40,0xdf,0xcb,0x20,0xcf,0x1a,0xd8,0xef,0x06,0xf6, +0x56,0x85,0x8b,0x1b,0xeb,0x33,0x19,0xcc,0x1d,0x0d,0xd4,0x61, +0x03,0xfb,0x20,0xc0,0x93,0x0d,0xc4,0xba,0x81,0x75,0x65,0x90, +0x5b,0x8d,0x1c,0x23,0xc0,0xad,0x8d,0x3c,0xa3,0x62,0x8f,0x1a, +0xc8,0xbf,0x06,0x39,0x1f,0xcf,0xd1,0x8d,0x8d,0x18,0x01,0xce, +0x6d,0xd0,0xf5,0xb0,0xe7,0x19,0xe4,0x5d,0x63,0x53,0x46,0xc5, +0x7e,0x35,0x36,0x63,0x04,0xb8,0xb8,0x41,0xdf,0x4f,0xce,0x47, +0x2e,0x36,0x4c,0x46,0xc5,0x9f,0x1b,0xd8,0xa7,0x06,0x62,0x9f, +0x41,0xfe,0x35,0x10,0xeb,0x06,0x62,0x29,0xc0,0xd7,0x0d,0x9f, +0xc9,0x60,0x46,0x69,0xe0,0xfe,0x1b,0x70,0xb6,0x00,0x3f,0x37, +0x68,0x4d,0x38,0x66,0x30,0xaf,0x34,0x36,0x67,0x04,0xf8,0xb9, +0xb1,0x05,0xa3,0xd2,0xb9,0xe9,0xcf,0xe4,0x79,0xe4,0x6b,0x63, +0x6b,0x46,0xa5,0xeb,0xc0,0xf3,0x8d,0x6d,0xf1,0x3e,0x72,0xb6, +0x01,0xdf,0x37,0xe0,0x79,0x15,0xf9,0xd0,0x80,0xe7,0x1b,0x98, +0xf5,0x33,0xc8,0xdf,0x06,0xe6,0xfd,0x06,0x66,0x7d,0x95,0xd6, +0xb2,0x3b,0x93,0x41,0x5e,0x36,0xf6,0x60,0x54,0x5a,0xd7,0x9e, +0x4c,0x06,0x39,0xda,0xd8,0x8b,0x51,0x69,0x8d,0x7b,0x03,0xf8, +0x3b,0x83,0x9c,0x6d,0x8c,0x61,0x54,0x8a,0xed,0x58,0x80,0xe7, +0x02,0x01,0x6b,0x6a,0xe0,0xb9,0xa0,0x41,0xbd,0x03,0x39,0xda, +0x38,0x88,0x11,0x68,0x5d,0x07,0x03,0x78,0x34,0x83,0x1c,0x6d, +0xa0,0x87,0x34,0xe0,0x4b,0x01,0x6b,0x6d,0x8c,0x67,0x54,0xdc, +0x7f,0x63,0x02,0x23,0x60,0xdd,0x8d,0xc3,0x18,0x95,0xe2,0x81, +0x1e,0xd2,0x80,0x47,0x33,0xc8,0xe3,0x06,0x5c,0xd9,0xc0,0xb3, +0x81,0x40,0xf7,0x74,0x0c,0x93,0x41,0xee,0x36,0x8e,0x65,0x04, +0x3c,0xf3,0x34,0x26,0x31,0x19,0xe4,0x72,0x63,0x32,0x23,0xe0, +0xf9,0xa7,0x81,0x7e,0xd2,0x40,0xbf,0xc8,0x20,0xbf,0x1b,0x53, +0x19,0x95,0xf6,0x77,0x1a,0x93,0x41,0x7e,0x37,0xa6,0x33,0x02, +0x9e,0x93,0x1a,0x33,0x18,0x95,0xf6,0x17,0x2e,0x6b,0xe0,0xd9, +0x21,0x83,0xbc,0x6f,0xcc,0x64,0x54,0xda,0x47,0xf4,0x90,0x06, +0xfa,0x47,0x06,0xb3,0x50,0x03,0x3d,0xa4,0x01,0x9f,0xa9,0xe8, +0xc3,0x0d,0xf4,0x8e,0x06,0x9e,0x13,0x32,0x98,0x79,0x1a,0x78, +0x56,0x68,0xe0,0x39,0x41,0xa5,0xfd,0x3c,0x9f,0xc9,0xa0,0x26, +0x1a,0x17,0x30,0x2a,0xed,0xe7,0x6c,0x46,0xc0,0xb3,0x59,0xe3, +0x42,0x46,0xa5,0x78,0xc2,0x53,0x0d,0xf4,0x89,0xcc,0x6a,0x1c, +0xe7,0x32,0x02,0xf6,0xb2,0x71,0x39,0xa3,0xd2,0xfe,0xc3,0x41, +0x0d,0xea,0x17,0xe8,0x95,0x8d,0xab,0x18,0x95,0x62,0x0e,0x8f, +0x34,0xa8,0x47,0xa0,0xc6,0x1a,0xa8,0xe7,0x06,0xfa,0x82,0x4a, +0x31,0x47,0x0d,0x37,0xc8,0xf9,0xe8,0x65,0x8d,0xdb,0x18,0x95, +0x62,0x7e,0x3b,0x23,0x50,0x8e,0xdc,0xc1,0x64,0xa9,0xce,0x50, +0xc3,0x0d,0xd4,0xab,0x4a,0x31,0xbf,0x9b,0x11,0x90,0x43,0x0d, +0xf4,0x81,0x06,0x9e,0x11,0xb2,0xe8,0xcb,0x8d,0x79,0x8c,0x40, +0x39,0x35,0x9f,0x51,0x69,0x2f,0xf0,0xdc,0xde,0x40,0x8d,0x66, +0xa9,0x46,0x17,0x30,0x02,0xe5,0x1a,0xfa,0x40,0x03,0x3d,0x20, +0x4b,0xf5,0xfa,0x28,0xa3,0xd2,0x1e,0x15,0x18,0x81,0x72,0x10, +0xbd,0xa0,0x81,0xe7,0x82,0x2c,0x6a,0xb8,0xd1,0x60,0x54,0xda, +0x97,0x26,0x23,0x50,0x6e,0xb6,0x98,0x2c,0x6a,0xbb,0x81,0xfe, +0xd0,0x40,0x5f,0x10,0x28,0x4f,0xa9,0x0e,0xf1,0x2c,0x90,0xa5, +0x5a,0x5f,0xc4,0x08,0x98,0x49,0x1a,0x4f,0x33,0x2a,0xc5,0x19, +0xcf,0x02,0x0d,0xf4,0x82,0x2c,0x6a,0xbb,0xb1,0x98,0x11,0x90, +0xdf,0x0d,0xf4,0x84,0x06,0x6a,0x2b,0x4b,0xf5,0xbd,0x84,0x11, +0x28,0xdf,0xa9,0xae,0xe0,0xf6,0x2c,0xd5,0xf5,0x1b,0x8c,0x40, +0xb9,0xff,0x26,0xa3,0xd2,0xbe,0xbc,0xc5,0x64,0xa9,0x8e,0x96, +0x32,0x2a,0xc5,0x73,0x19,0x93,0xa5,0x3a,0x7a,0x9b,0x11,0x50, +0x33,0x0d,0xf8,0xbe,0x81,0x9a,0xc8,0x52,0x1d,0xc1,0xd9,0x0d, +0x72,0x35,0xd5,0x10,0x5c,0xdd,0x80,0xab,0xb3,0x94,0x4b,0x2b, +0x18,0x81,0xea,0x89,0x72,0x1d,0x79,0x9d,0xa5,0x5c,0xa2,0x3c, +0x46,0xce,0x0a,0x54,0x5b,0x2b,0x19,0x95,0xf6,0x05,0x4e,0x6e, +0x60,0x06,0xcf,0x52,0x5e,0x51,0xfe,0x61,0xbe,0x16,0xa8,0xb6, +0x7e,0x64,0xb2,0x94,0x1b,0x3f,0x31,0x02,0xd5,0xd6,0x2a,0x26, +0x4b,0xb9,0xf1,0x33,0x23,0x60,0x56,0x6b,0xc0,0xdf,0x0d,0xcc, +0x89,0x59,0x72,0xc9,0x1a,0x46,0xc0,0xec,0xd6,0xf8,0x93,0x51, +0x69,0xaf,0x29,0xe7,0xe0,0xf3,0x2c,0xed,0xcb,0x5a,0x46,0x40, +0xad,0x36,0xe0,0xf3,0x06,0xf2,0x2b,0x4b,0x31,0xf9,0x8f,0x51, +0xb1,0xef,0xd8,0xb6,0xff,0x43,0x40,0x1d,0x37,0xe1,0xf6,0x26, +0x66,0x87,0x2c,0xd6,0xdc,0xc4,0x4c,0xd0,0x44,0x9f,0x57,0xb1, +0xef,0x4d,0x89,0xc9,0x62,0xce,0x6c,0xca,0x8c,0x8a,0x3d,0x6d, +0x2a,0x4c,0x16,0xfb,0xd8,0x54,0x19,0x75,0x1f,0x1c,0x91,0x43, +0x4d,0xf4,0xba,0x2c,0xf6,0xae,0x89,0xde,0xd6,0xc4,0xec,0x23, +0xc0,0x11,0x4d,0xf4,0xb3,0x26,0xf2,0x22,0x8b,0xb8,0x35,0x73, +0x8c,0x00,0x47,0x34,0xe1,0xfb,0x26,0x5c,0x9f,0x85,0x8f,0x9a, +0xf0,0x7d,0x93,0x3c,0x0f,0x5f,0x34,0xe1,0xf9,0x26,0xf6,0x36, +0x0b,0x37,0x35,0xe1,0xd9,0x26,0x9c,0x2a,0xc0,0x19,0x4d,0x9b, +0xc9,0xe2,0xbe,0x9a,0x70,0x79,0x13,0x7b,0x28,0x60,0x06,0x6d, +0x86,0x4c,0x96,0xee,0x65,0x08,0xa3,0xd2,0x9a,0xfb,0x18,0x01, +0xee,0x68,0xf6,0x33,0x2a,0xad,0x19,0x1e,0x69,0x62,0x3f,0x05, +0xb8,0xa4,0x39,0x82,0xc9,0xd2,0x3a,0x37,0x67,0x04,0xb8,0xa4, +0x09,0xc7,0x37,0xb1,0x6f,0x59,0x78,0xad,0x89,0xfa,0x6f,0xa2, +0xbe,0x05,0xf8,0xa5,0x89,0x3d,0x6b,0x62,0x1f,0x54,0xba,0x47, +0xd4,0x6a,0x73,0x07,0x7c,0x86,0xd6,0xbc,0x23,0xa3,0x22,0x97, +0x9a,0xa8,0x9f,0x26,0xf6,0x41,0x80,0x83,0x9a,0x3b,0x33,0x59, +0xcc,0x75,0x4d,0xec,0x41,0x13,0x31,0x16,0x30,0x53,0x35,0xb1, +0x67,0x4d,0xc4,0x32,0x4b,0xeb,0xa7,0xd8,0x61,0x5d,0x02,0x66, +0xaa,0xe6,0x7e,0x8c,0x8a,0xdc,0x6b,0x8e,0x61,0xb2,0xb4,0xfe, +0xb1,0x8c,0x00,0x87,0x35,0xe9,0x1a,0xf8,0x7a,0x96,0xd6,0x7f, +0x20,0xa3,0xd2,0xf1,0x20,0x46,0x80,0xe3,0x9a,0xc8,0xc5,0x26, +0xbc,0x9d,0x85,0x1f,0x9b,0xc8,0xad,0x26,0xf2,0x48,0x80,0xef, +0x9a,0x47,0x32,0x59,0xcc,0xd0,0x4d,0x8a,0x23,0x39,0x1c,0xbe, +0x6b,0xd2,0x7d,0x22,0xc6,0x59,0xcc,0xd3,0x4d,0x5a,0x2b,0xfc, +0xac,0xd2,0xf9,0xe0,0xe6,0x26,0x9c,0x9c,0xa5,0x73,0x4e,0x67, +0x54,0xf4,0x8d,0x26,0xad,0x09,0x1e,0xce,0xc2,0x9b,0xcd,0x99, +0x8c,0x4a,0xfb,0x45,0xb1,0xc3,0x1a,0xb3,0xf0,0x65,0xf3,0x3c, +0x46,0x45,0x5f,0x69,0xd2,0xb5,0x31,0x7f,0x67,0xe1,0xc1,0xe6, +0x25,0x8c,0x80,0x3f,0x37,0x31,0x8f,0x37,0xe1,0xd5,0x2c,0xe6, +0x96,0xe6,0x5c,0x46,0xa0,0xaf,0xc3,0xa9,0x4d,0xcc,0xc9,0x59, +0xf8,0xb1,0x79,0x13,0x23,0xd0,0x67,0x31,0x27,0x37,0xe1,0xc9, +0x2c,0xe6,0x93,0xe6,0xed,0x8c,0x80,0x39,0xbe,0x09,0x47,0x36, +0x31,0x03,0x67,0xe1,0xb9,0x26,0x66,0xe0,0x26,0xcd,0xc0,0x38, +0x6f,0x93,0x3e,0x47,0x6e,0x84,0xcb,0x9a,0xf3,0x18,0x81,0xce, +0x0d,0x2f,0x36,0xf1,0xd9,0x2c,0xe6,0x93,0xe6,0xc3,0x8c,0x8a, +0xda,0x6c,0x2e,0x60,0x04,0xb8,0xbc,0xb9,0x90,0xc9,0x62,0xf6, +0x6d,0xc2,0x91,0x4d,0xb8,0x51,0x80,0xdf,0x9b,0x74,0x2e,0x7c, +0x5f,0x16,0xb3,0x70,0xb3,0xcc,0xa8,0x88,0x75,0x93,0x3e,0x87, +0xf7,0x04,0xf8,0xbe,0x59,0x63,0xb2,0x70,0x65,0x13,0xee,0x6c, +0x92,0x27,0xe1,0xfe,0x26,0x1c,0xd9,0x84,0x13,0xb3,0xf8,0x73, +0x13,0x33,0x72,0x13,0xf3,0x88,0x80,0x67,0x83,0x26,0xe6,0xe1, +0x26,0x79,0x12,0x5f,0x6b,0x2e,0x62,0x04,0xba,0x57,0x38,0xb2, +0x09,0x3f,0x66,0x31,0x43,0x37,0x9f,0x65,0x54,0xda,0xcf,0xc5, +0x8c,0x70,0x0b,0x8e,0xf0,0x64,0x13,0x33,0x45,0x96,0xce,0x81, +0xb9,0xb8,0x89,0x79,0x58,0xa0,0xb8,0xbd,0xc6,0x64,0xe9,0xeb, +0xf0,0x65,0x13,0x6e,0x14,0x28,0x66,0xf0,0x62,0x13,0x33,0x6d, +0x16,0xb3,0x76,0xf3,0x3d,0x46,0x40,0x5f,0x69,0xbe,0xcf,0xa8, +0xc8,0x95,0x26,0xe6,0xd9,0x26,0xf9,0x90,0xce,0xb7,0x9c,0x51, +0x29,0x77,0xe0,0xc5,0x26,0x9c,0x98,0xa5,0x73,0x7f,0xc2,0xa8, +0x94,0x47,0xf0,0x62,0x13,0x0e,0xcc,0xc2,0xc5,0x4d,0xf8,0xaf, +0x09,0xf7,0xa9,0x54,0x8f,0xdf,0x32,0x59,0xba,0xce,0x77,0x8c, +0x4a,0xb9,0xf6,0x3d,0x23,0xa0,0x87,0x35,0x7f,0x60,0x54,0x72, +0x02,0xbc,0xd8,0x44,0x4f,0xce,0xd2,0x5a,0x56,0x33,0x2a,0xd5, +0x17,0xe6,0xd6,0x26,0x39,0x90,0xae,0xb9,0x86,0x51,0x31,0x4f, +0x34,0xe1,0xbf,0x16,0x66,0xd1,0x2c,0x5c,0xdc,0x5a,0x87,0x51, +0x91,0xc7,0x2d,0xf4,0xc2,0x16,0x5c,0x96,0xc5,0xf9,0x5a,0x22, +0xa3,0x22,0xaf,0x5b,0xf0,0x59,0x0b,0xf3,0x68,0x16,0x6e,0x6d, +0xa1,0x9f,0xb5,0x30,0x8f,0x0a,0xe8,0x9f,0xad,0x04,0xa3,0xa2, +0x1e,0x5b,0x49,0x26,0x8b,0xeb,0xb5,0x52,0x8c,0x80,0x9c,0x6a, +0xc1,0x67,0x2d,0xb8,0x2c,0x8b,0x6b,0xb7,0xb2,0x8c,0x8a,0x3a, +0x69,0xe5,0x18,0x01,0x39,0xd7,0x82,0xd3,0x5a,0x70,0x9a,0x8a, +0xba,0x69,0xc1,0x69,0x2d,0xf4,0xb4,0x2c,0xdc,0xdc,0xda,0x94, +0x51,0x51,0x3f,0x2d,0xf4,0xb3,0x16,0xe6,0x54,0x01,0xb9,0xd9, +0x1a,0xcc,0x64,0xe1,0xe8,0x96,0xc1,0x08,0xc8,0xd1,0x96,0xc9, +0x64,0xe1,0xeb,0x96,0xc5,0x08,0xc8,0xd9,0x16,0xfc,0xd7,0x82, +0xf7,0x72,0xf4,0x23,0x0a,0xe0,0xbc,0x16,0xcd,0xab,0xc8,0xe3, +0x16,0x3c,0xd7,0x82,0xdf,0x72,0x74,0xdf,0x43,0x19,0x01,0x79, +0xdc,0xc2,0x6c,0xd4,0x82,0xdf,0x72,0x88,0x45,0x6b,0x73,0x46, +0x40,0x4e,0xb7,0xe0,0xb7,0x16,0x3c,0x95,0x83,0xd3,0x5b,0x3b, +0x31,0x2a,0x6a,0xba,0x05,0x57,0xb5,0xe0,0xa6,0x1c,0xdd,0x1f, +0xfa,0x44,0x0b,0x7d,0x40,0x40,0xee,0xb7,0xf6,0x62,0x54,0x38, +0xa7,0x05,0x6f,0xb5,0xe0,0xac,0x1c,0x7c,0xdd,0x1a,0xcd,0xa8, +0x70,0x41,0x0b,0x0e,0x6b,0xc1,0x5d,0x39,0xdc,0x73,0x0b,0xde, +0x6a,0xc1,0x57,0x2a,0xbc,0xd0,0x82,0xaf,0x5a,0x70,0x46,0x8e, +0xee,0x1b,0x8e,0x68,0xd1,0x9c,0x09,0x97,0xb6,0x26,0x30,0x39, +0xb8,0xbc,0x75,0x18,0xa3,0xc2,0x99,0xad,0xc3,0x19,0x01,0x75, +0xd6,0x42,0x2e,0xb6,0x90,0x17,0x39,0xcc,0xc9,0xad,0x49,0x8c, +0x80,0x79,0xa4,0x35,0x99,0x51,0x31,0xdf,0xb5,0x68,0xbf,0xb1, +0xb7,0x39,0xdc,0x7f,0x6b,0x0a,0x23,0xa0,0x3e,0x5b,0xb4,0x37, +0xd8,0x87,0x1c,0xc5,0x00,0x0e,0x6b,0x91,0xbb,0xe0,0xde,0x16, +0xdd,0x27,0x66,0xc4,0x1c,0xe2,0xd2,0xa2,0xeb,0xe1,0x1c,0x2a, +0xbc,0xd7,0x3a,0x9d,0xc9,0xa1,0xff,0xb6,0xe0,0xc7,0x16,0x7c, +0xac,0x9e,0x8d,0x23,0x01,0xcf,0xe5,0xe0,0xfd,0x16,0x5c,0xd9, +0xa2,0x99,0x10,0x5e,0x6b,0xc1,0x71,0x2d,0xcc,0x64,0x39,0x8a, +0x1f,0xea,0xa7,0x45,0xf3,0x18,0x5c,0xd0,0xa2,0x7c,0x82,0x8b, +0x72,0x74,0x4f,0xf7,0x31,0x02,0xbc,0xd0,0xa2,0xfc,0xc0,0x9e, +0xe7,0xe8,0x9e,0x1e,0x64,0x54,0x9c,0xb7,0x35,0x8f,0x11,0xe0, +0x8b,0xd6,0x7c,0x26,0x87,0x9a,0x6a,0x3d,0xc4,0xa8,0x74,0xcd, +0x87,0x19,0x01,0x2e,0x69,0xd1,0xbe,0x62,0x4f,0x72,0xa8,0xaf, +0x16,0x9c,0xd4,0xa2,0x39,0x0d,0x9e,0x69,0x15,0x19,0x15,0xeb, +0x6b,0x95,0x98,0x1c,0x62,0xd7,0x2a,0x33,0x02,0xdc,0xd3,0xaa, +0x30,0x39,0x8a,0x65,0x95,0x11,0x30,0xaf,0xb5,0xe8,0xda,0x38, +0x47,0x8e,0xe2,0xda,0x64,0x54,0xba,0x3f,0xfa,0x1e,0x7c,0x3d, +0x47,0x71,0xed,0x30,0x02,0x1d,0x31,0xdf,0xb5,0xe0,0xaf,0x1c, +0xe5,0xf9,0xe3,0x8c,0x0a,0x9f,0xb7,0xe0,0xb3,0x16,0x3c,0x94, +0xa3,0x18,0x3f,0xc5,0xa8,0xf0,0x79,0x0b,0x3e,0x6b,0xe1,0xf9, +0x3d,0x47,0x79,0x02,0x57,0xb5,0xe0,0x15,0x15,0x3e,0x6f,0xc1, +0x55,0x2d,0xcc,0x66,0x39,0x8a,0xf1,0x32,0x46,0xa0,0x73,0x63, +0x2e,0x6b,0xc1,0x51,0x39,0xba,0x97,0xf7,0x18,0x15,0x3e,0x6f, +0xc1,0x0b,0x2d,0xb8,0x29,0x47,0xe7,0x84,0x9f,0x5a,0xe4,0x25, +0xf4,0x8c,0x16,0xbc,0xd4,0xc2,0x1c,0x96,0x43,0x2f,0x68,0xe1, +0x59,0xb9,0x85,0xe7,0x64,0x15,0x0e,0x6f,0x7d,0x05,0xe0,0xa5, +0x1c,0x9c,0xdc,0x82,0x97,0x5a,0xe4,0x25,0xcc,0xe5,0x2d,0x38, +0xa9,0x85,0xb9,0x2b,0x07,0x27,0xb7,0x56,0x31,0x02,0xdc,0xdb, +0x22,0x2f,0xc0,0x3f,0x39,0xb8,0xb7,0xb5,0x9a,0x11,0x70,0x9f, +0x2d,0xf8,0xa7,0x85,0x67,0xe6,0x1c,0x7a,0x4f,0xeb,0x0f,0x46, +0x45,0x2f,0x6b,0xad,0x61,0x04,0x8a,0x01,0xb9,0x08,0xf5,0x9a, +0xbb,0x83,0x7f,0x74,0x48,0x1b,0x73,0x95,0x80,0x78,0xb4,0xa3, +0x4c,0x0e,0xfb,0xdf,0x16,0x18,0x15,0xd7,0x6d,0xc3,0x5b,0x6d, +0xf8,0x4a,0x40,0x8c,0xda,0xa8,0xdb,0x36,0x6a,0x31,0x87,0xfc, +0x68,0x2b,0x8c,0x00,0xf7,0xb7,0x55,0x46,0xc5,0x33,0x43,0x1b, +0xf3,0x55,0x1b,0x5e,0xca,0x61,0xff,0xdb,0x29,0x46,0xc5,0x33, +0x44,0x1b,0x5e,0x6a,0xc3,0x35,0x39,0xec,0x77,0x7b,0x23,0x46, +0x45,0x4f,0x69,0x63,0x8e,0x6a,0xa3,0xe6,0x72,0xd8,0xcb,0xf6, +0x20,0x46,0x45,0x4f,0x6d,0xc3,0x37,0x6d,0xd4,0x5c,0x0e,0x71, +0x6e,0xa3,0xae,0xda,0xf4,0x2c,0x8c,0x1e,0xd3,0xc6,0xac,0xdc, +0x26,0xb7,0xd0,0x7a,0x42,0x46,0x40,0x8f,0x69,0xc3,0x31,0x6d, +0xf8,0x25,0x47,0xeb,0x41,0x8d,0xb5,0xc9,0x2d,0xe8,0x29,0xed, +0x61,0x4c,0x0e,0x3d,0xa9,0x3d,0x9c,0x51,0xd1,0xa7,0xdb,0x23, +0x18,0x01,0xb3,0x7b,0x1b,0xbe,0x69,0x63,0x8e,0xca,0xd1,0x79, +0xb6,0x62,0x54,0xc4,0xb6,0x8d,0x79,0xaa,0x8d,0x59,0x4a,0xc0, +0x4c,0xdf,0xde,0x96,0xc9,0xd1,0xe7,0xb7,0x63,0x04,0xe4,0x4a, +0x7b,0x24,0x93,0xa3,0xcf,0xe0,0x99,0xa7,0x8d,0x59,0x4b,0x40, +0xee,0xb4,0x31,0x67,0xb5,0xe1,0xa9,0x1c,0x9e,0x03,0xda,0x98, +0xa9,0xda,0x98,0xeb,0x05,0xe4,0x51,0x7b,0x37,0x46,0x45,0x4f, +0x6c,0xc3,0x61,0x6d,0xf8,0x2b,0x47,0xef,0xef,0xc9,0x08,0xe8, +0x81,0x6d,0x38,0xac,0x4d,0xee,0xa2,0xd7,0xa3,0x19,0x01,0x3d, +0xab,0x0d,0x77,0xb5,0x31,0x43,0xe5,0xd0,0x1b,0xdb,0x98,0x7b, +0xda,0x98,0x9f,0x04,0xf4,0xcb,0x36,0x66,0xd3,0x36,0x9c,0x95, +0x43,0xde,0xb5,0xc7,0x33,0x2a,0x7a,0x6b,0x1b,0xde,0x6a,0xa3, +0x46,0x73,0xc8,0xbf,0x36,0xea,0xb0,0x4d,0x73,0x14,0xf2,0xb8, +0x8d,0xde,0xd6,0x26,0x5f,0xa1,0x1f,0xb5,0x27,0x31,0x02,0x72, +0xb9,0x8d,0xba,0x6a,0xc3,0x53,0x39,0xe4,0x66,0xfb,0x78,0x46, +0x45,0x2e,0xb5,0xa7,0x30,0x02,0x9e,0x3f,0xda,0xf0,0x55,0x1b, +0xf5,0x91,0x43,0xce,0xb6,0xe1,0xcd,0x36,0xfd,0xbd,0x28,0x6a, +0xa0,0x7d,0x0a,0x93,0x43,0x8f,0x6c,0x9f,0xca,0x08,0xb4,0x9e, +0x59,0x4c,0x0e,0x3d,0xae,0x7d,0x1a,0x23,0xa0,0x36,0xda,0x70, +0x58,0x1b,0xf5,0x94,0x43,0x7e,0xb7,0xcf,0x61,0x54,0xf4,0xfd, +0x36,0xe6,0xb2,0x36,0xbc,0x25,0xa0,0x6e,0xda,0x98,0xc7,0xda, +0xe4,0x34,0xe4,0x77,0x7b,0x36,0x23,0xa0,0x86,0xda,0xa8,0xb7, +0x36,0xea,0x3e,0x87,0x5c,0x6f,0xa3,0x9e,0xdb,0x34,0xa7,0xa1, +0xdf,0xb7,0x51,0xab,0x6d,0xd4,0x5f,0x0e,0xb9,0xde,0x9e,0xcb, +0xa8,0x94,0xe7,0x98,0xa5,0xda,0x98,0x89,0x72,0x78,0xf6,0x68, +0xa3,0xae,0xda,0xa8,0x33,0x01,0xb3,0x40,0xfb,0x1a,0x26,0x87, +0xbe,0xd6,0xa6,0x5c,0x47,0x3e,0x0a,0x14,0x13,0xca,0x3f,0xec, +0xbf,0x0a,0x6f,0xb6,0x69,0x9f,0x68,0x7e,0xa3,0xfb,0xa5,0x73, +0x91,0x4b,0x51,0x3f,0xed,0xbb,0x18,0x01,0x35,0xda,0x86,0x53, +0xdb,0xf0,0x69,0x1e,0xb5,0xd4,0x86,0x53,0xdb,0xe4,0x52,0xcc, +0x10,0x6d,0xaa,0x25,0xf8,0x30,0x4f,0xf5,0x44,0xf5,0x80,0x9e, +0x26,0x50,0x7c,0x1e,0x61,0xf2,0xe8,0xf3,0x6d,0xb8,0xb1,0x0d, +0x1f,0x0a,0x14,0x07,0xaa,0x0d,0x38,0x30,0x8f,0x1a,0x6b,0x57, +0x18,0x01,0xcf,0x55,0xed,0x2a,0xa3,0xe2,0x1a,0xed,0x1a,0x23, +0xa0,0xfe,0xdb,0x75,0x26,0x4f,0xf5,0x07,0x2f,0xb6,0x69,0x7e, +0xa3,0x58,0xc1,0x87,0x6d,0x14,0x77,0x9e,0x6a,0xb1,0xc3,0x08, +0x14,0x2b,0xaa,0x25,0xf8,0x23,0x8f,0x99,0xa2,0x0d,0x5f,0xb4, +0xc9,0x87,0xb4,0x5e,0xaa,0x7f,0xd4,0x47,0x1e,0xb3,0x45,0x7b, +0x31,0xa3,0xd2,0xda,0x9f,0x63,0x04,0x78,0xa4,0xfd,0x3c,0x93, +0xc7,0xec,0xd0,0x7e,0x81,0x11,0x28,0xce,0x4b,0x98,0x3c,0xe6, +0x89,0xf6,0x8b,0x8c,0x00,0xc7,0xb4,0xa9,0x36,0x90,0xbf,0x79, +0xd4,0x7c,0xfb,0x0d,0x46,0xc0,0x8c,0xd1,0xa6,0x7c,0x45,0x0e, +0xe6,0xa9,0xd6,0x97,0x31,0x02,0xed,0x0b,0xe5,0x1f,0x62,0x9f, +0xc7,0x3c,0xd1,0xfe,0x9c,0x51,0xc9,0x33,0x94,0x8b,0x88,0x65, +0x9e,0x6a,0x17,0xb3,0x58,0x9b,0x9e,0x4f,0xf1,0xdc,0xd8,0xa6, +0x7c,0x42,0xcc,0xf2,0x54,0x97,0xab,0x18,0x81,0xf6,0xf1,0x67, +0x26,0x4f,0x75,0x49,0xb1,0x23,0x37,0xd2,0x7e,0xc1,0x8d,0x6d, +0x5c,0x27,0x4f,0x35,0x4a,0xdf,0x8f,0x67,0xce,0x18,0x39,0xef, +0x5f,0x46,0x45,0x9f,0x6b,0xe3,0x73,0x1d,0xec,0x61,0x0c,0xce, +0xeb,0x44,0x19,0x15,0x3d,0xaf,0x23,0x30,0x79,0xd4,0x70,0x27, +0xc6,0xa8,0xe8,0x7f,0x9d,0x75,0x98,0x3c,0xea,0xb9,0xb3,0x2e, +0xa3,0xa2,0x17,0x76,0xf0,0x9c,0xda,0xc1,0x2c,0x17,0xa3,0x23, +0xf6,0xb8,0x83,0xfd,0xcc,0xa3,0xd6,0x3b,0x0a,0x13,0xa3,0xf7, +0xb0,0x67,0x1d,0xec,0x4f,0x1e,0x35,0xdf,0xd9,0x80,0x51,0x91, +0x2b,0x1d,0x8d,0x89,0xe1,0x7b,0x3a,0x98,0xfb,0x3a,0x98,0x71, +0xf2,0x98,0x65,0x3a,0x18,0xa6,0x3a,0x88,0x7d,0x8c,0xce,0xd1, +0xcb,0xe4,0x31,0xb3,0x74,0x10,0xdf,0x0e,0x1c,0x1a,0xc3,0xb9, +0x3a,0x98,0x69,0x3a,0x70,0x69,0x1e,0xcf,0x5d,0x1d,0xc4,0xb7, +0x83,0x39,0x4d,0x45,0xde,0x75,0x10,0xd3,0x0e,0x66,0xb3,0x18, +0x9d,0x0f,0xb3,0x59,0x07,0x5e,0xcd,0xc3,0x1d,0x1d,0x97,0x89, +0xc1,0xd7,0x1d,0xf8,0xb5,0x03,0xb7,0xe6,0x31,0x03,0x75,0xe0, +0xd7,0x0e,0xbc,0x1a,0x83,0xbb,0x3b,0xf0,0x6a,0x07,0x3e,0xcd, +0xc3,0x29,0x9d,0xa1,0x8c,0x8a,0x9c,0xed,0xc0,0xa9,0x1d,0xf8, +0x33,0x8f,0x19,0xa8,0x03,0x7f,0x76,0x30,0xab,0xc5,0x30,0x77, +0x76,0xb6,0x64,0xf2,0xf0,0x4e,0x07,0x1e,0xed,0xc0,0x9f,0x31, +0x5a,0x3b,0xf6,0xa9,0x03,0x67,0xe6,0xe1,0xa1,0xce,0x48,0x46, +0xc5,0x4c,0xd0,0xd9,0x9e,0xc9,0xc3,0x49,0x9d,0x1d,0x18,0x15, +0xf5,0xd0,0xd9,0x91,0xc9,0xc3,0x53,0x9d,0x51,0x4c,0x8c,0xee, +0x75,0x27,0x46,0x45,0xad,0x74,0xe0,0xd7,0x0e,0xdc,0x9a,0x87, +0xbf,0x3a,0xbb,0x32,0x31,0xf4,0x95,0x0e,0xed,0x07,0xe2,0x9d, +0x87,0xcb,0x3a,0xf0,0x6b,0x07,0x31,0x56,0x51,0x57,0x1d,0x78, +0xb5,0x83,0x99,0x2f,0x0f,0x97,0x75,0xc6,0x32,0x2a,0xea,0xaa, +0xb3,0x3f,0x13,0x43,0x1c,0x3b,0x07,0x30,0x79,0x38,0xae,0x73, +0x20,0x13,0xa3,0xb8,0x1e,0xc4,0xe4,0xe1,0xbc,0xce,0xc1,0x8c, +0x8a,0x3a,0xec,0xc0,0xbd,0x1d,0xcc,0x50,0x79,0x78,0xb0,0x43, +0xb1,0xc0,0xdc,0x14,0xc3,0x0c,0xdd,0xc1,0x73,0x48,0x07,0x31, +0xc8,0x63,0x46,0xeb,0x4c,0x64,0x62,0xb4,0x27,0x70,0x70,0x07, +0xf7,0x9a,0xc7,0xdc,0xd6,0xa1,0x7b,0xc3,0xda,0x63,0xe8,0x75, +0x1d,0xb8,0xb7,0x03,0xdf,0xe6,0xe1,0xc1,0xce,0x14,0x46,0x45, +0x6d,0x77,0xe0,0xdb,0x0e,0xe6,0x97,0x3c,0x5c,0xd8,0x99,0xc6, +0xa8,0xa8,0xf5,0x0e,0xe6,0xc4,0x0e,0xe6,0x97,0x18,0xed,0xed, +0x89,0x4c,0x1e,0x7e,0xec,0x9c,0xc4,0xc4,0x68,0x9f,0x67,0x32, +0x79,0xf8,0xb2,0x73,0x32,0x13,0xc3,0xde,0x77,0xe0,0xe9,0x0e, +0xfc,0x9c,0x87,0x43,0x3b,0xb3,0x18,0x15,0xee,0xe8,0x9c,0xc6, +0xe4,0xe1,0xd3,0x0e,0xfc,0xdc,0xc1,0xda,0x55,0xb8,0xa4,0x83, +0xb9,0xb3,0x83,0xf5,0xc6,0x28,0x5f,0xe0,0xec,0x0e,0xd6,0x98, +0x87,0x6b,0x3b,0xe7,0x32,0x31,0xe4,0x4d,0x07,0xce,0xee,0xc0, +0xd5,0x79,0xf8,0xb7,0x33,0x9b,0x51,0xe1,0x9d,0x0e,0x5d,0x1b, +0xef,0xe5,0x31,0xe7,0x74,0xe0,0xe3,0x0e,0xfd,0x3d,0x24,0x3c, +0xd4,0xb9,0x82,0xc9,0x63,0x36,0xe8,0xc0,0xcd,0x1d,0xfa,0x7b, +0x48,0x38,0xa9,0x73,0x35,0x13,0xa3,0x1c,0x84,0x9b,0x3b,0x70, +0x71,0x1e,0x5e,0xee,0xdc,0xc4,0xc4,0x90,0x97,0x1d,0xb8,0xb9, +0x83,0xfe,0x96,0x47,0x6f,0xea,0xfc,0x0f,0x15,0x0e,0xeb,0xc0, +0xd3,0x1d,0x38,0x3a,0x0f,0x47,0x77,0x08,0xfa,0x7b,0x48,0xcc, +0x79,0x1d,0xf8,0xb9,0x83,0xba,0xcc,0xd3,0xf1,0x61,0x46,0xc5, +0xac,0xd7,0x59,0xc0,0xc4,0x28,0xc7,0xe1,0xe6,0x0e,0xb9,0x97, +0xbe,0x5e,0x61,0x62,0x98,0x27,0x3a,0x55,0x46,0xc5,0x5c,0xd1, +0xa1,0xfd,0x26,0xdf,0x52,0xee,0x35,0x98,0x18,0x6a,0xa3,0xd3, +0x64,0x54,0xcc,0x27,0x9d,0x16,0x93,0xa7,0x73,0xb4,0x19,0x15, +0x6e,0xed,0x74,0x98,0x18,0xd5,0x10,0xdd,0x3f,0xe6,0x97,0x3c, +0x9d,0x9b,0xd6,0x81,0x73,0xc7,0xa8,0x9e,0x9e,0x61,0xf2,0xf4, +0xd9,0x67,0x99,0x18,0x6a,0xac,0xb3,0x98,0x51,0xe9,0xf8,0x1c, +0x13,0xa3,0x9a,0x83,0x8f,0x3b,0x98,0x35,0xf2,0x74,0xbe,0x57, +0x98,0x18,0xea,0xb0,0xf3,0x2a,0xa3,0xd2,0x67,0xf1,0x0c,0xdc, +0x21,0x0f,0xe3,0x7a,0x9d,0x37,0x98,0x18,0xd5,0x28,0x3c,0xdc, +0xc1,0x1c,0x91,0xa7,0xfb,0x5a,0xca,0xa8,0x74,0xbe,0x65,0x4c, +0x8c,0x6a,0x17,0x4e,0xee,0xa0,0x0f,0xe7,0x69,0x2d,0xcb,0x19, +0x15,0xde,0xef,0x7c,0xc4,0xc4,0x30,0x1f,0x75,0x3e,0x66,0xf2, +0xf0,0x7d,0xe7,0x13,0x26,0x86,0x9a,0xef,0xac,0x60,0xf2,0x58, +0x5f,0xe7,0x53,0x26,0x46,0x0e,0x80,0xe3,0x3b,0x98,0x75,0xf3, +0xb4,0x5e,0xcc,0xba,0x1d,0xcc,0xba,0x31,0x78,0xa1,0x83,0x3e, +0xda,0x21,0xcf,0x63,0x4d,0x9d,0xef,0x99,0x18,0xb9,0x01,0xbe, +0xef,0xc0,0xf5,0x79,0x5a,0xd7,0x4f,0x8c,0x8a,0x7e,0xd3,0x59, +0xc5,0xc4,0xc8,0x19,0xf0,0x7d,0x07,0xae,0xcf,0x63,0x3e,0xe9, +0xfc,0xca,0xa8,0xe8,0x43,0x1d,0xb8,0xbf,0x83,0xde,0x95,0xc7, +0x5c,0xde,0x41,0xaf,0xea,0xa0,0x2f,0xc5,0xc8,0x2b,0x7f,0x31, +0x79,0xba,0xa7,0xbf,0x99,0x18,0x79,0x65,0x2d,0x93,0xa7,0xfb, +0xfb,0x87,0x89,0x91,0x63,0xd0,0x1f,0x3a,0xe8,0x0d,0xf9,0x8f, +0xff,0xff,0x8f,0xd9,0xeb,0x51,0x71,0xbf,0xdd,0x08,0x93,0xc7, +0x7d,0x76,0xa3,0x8c,0x8a,0xfb,0xed,0x0a,0x4c,0x1e,0xf7,0xdc, +0x8d,0x31,0x31,0x78,0xaa,0xbb,0x0e,0xa3,0xe2,0xde,0xbb,0xe8, +0x15,0x5d,0xf4,0x87,0x3c,0xe2,0xd1,0x8d,0x33,0x31,0xf8,0xab, +0x8b,0xbe,0xd1,0x45,0x7f,0xc8,0xa3,0xef,0x75,0xd1,0x03,0xba, +0xf0,0xbd,0x8a,0xbd,0xec,0xa2,0x5f,0x74,0xe1,0xe9,0x3c,0xe6, +0x90,0x2e,0xbc,0xdc,0xc5,0x3c,0xad,0x62,0x5f,0xbb,0x19,0x26, +0x8f,0x38,0x75,0xb3,0x8c,0x8a,0xbd,0xed,0xe6,0x98,0x18,0x5c, +0xd8,0xcd,0x33,0x2a,0x62,0xdb,0x45,0xdf,0xe8,0xc2,0x4f,0x79, +0xc4,0xb4,0xbb,0x19,0x13,0x83,0x2b,0xbb,0x83,0x18,0x15,0x79, +0xd0,0x85,0x8f,0xba,0xe8,0x1d,0x79,0xc4,0xaf,0x6b,0x32,0x31, +0x78,0xb4,0x8b,0x1e,0xd2,0xa5,0xde,0x81,0x59,0xa2,0xeb,0x32, +0x2a,0xf6,0xa5,0x8b,0xde,0xd1,0xa5,0x1e,0x81,0xf8,0x76,0x91, +0xdf,0x5d,0xe4,0xb2,0x8a,0xdc,0xe9,0x0e,0x67,0x7a,0x29,0x66, +0xc8,0xe3,0x2e,0xfd,0x9b,0x14,0x66,0xc5,0x2e,0xf2,0xaf,0x8b, +0x3d,0xef,0xa5,0xf8,0xa1,0x0f,0x74,0xb1,0xcf,0x31,0x38,0xba, +0x8b,0xbd,0xec,0x62,0x7f,0x7a,0x11,0x97,0xee,0x28,0x26,0x86, +0xde,0xd7,0xc5,0xde,0x74,0xb1,0x0f,0xbd,0x14,0x9b,0x5d,0x18, +0x15,0x33,0x64,0x77,0x57,0x26,0x86,0x59,0xb9,0x4b,0xf7,0x89, +0x63,0x2f,0xc5,0x6c,0x34,0x13,0xa3,0xe3,0xbe,0x8c,0x8a,0x3c, +0xee,0xee,0xc7,0xf4,0x62,0xce,0xe9,0x8e,0x61,0x62,0xf4,0xf5, +0xb1,0x8c,0x8a,0x7c,0xe8,0xee,0xcf,0xc4,0xe8,0xb3,0xe8,0x03, +0x5d,0xf4,0xc3,0x5e,0xc4,0xbd,0x8b,0xf9,0xba,0x8b,0x1e,0x18, +0xa3,0xef,0xc3,0x5c,0xdd,0x85,0xf3,0x7b,0x29,0xae,0x87,0x33, +0x31,0xfa,0x3e,0xb8,0xbf,0x0b,0xef,0xf7,0xa2,0x4f,0x75,0x8f, +0x62,0x54,0xe4,0x52,0x77,0x22,0x13,0xa3,0xf3,0xc1,0xff,0x5d, +0x78,0xbe,0x17,0xbd,0xa6,0x0b,0xc7,0x77,0xe1,0xf7,0x18,0x7a, +0x4c,0x77,0x2a,0xd3,0x4b,0xf1,0x9e,0xc6,0xc4,0xd0,0x63,0xba, +0xd3,0x99,0x5e,0x8a,0xfd,0x0c,0x26,0x86,0x9e,0xd3,0x85,0xef, +0xbb,0x70,0x78,0x2f,0x3c,0xdf,0x85,0xbf,0xbb,0xf0,0x76,0x0c, +0x6b,0xed,0xc2,0xdb,0x5d,0x78,0xbb,0x17,0x9e,0xec,0x9e,0xc9, +0xc4,0xb0,0xee,0x2e,0xfc,0xdd,0x85,0xbb,0x7b,0xe1,0xb4,0xee, +0x39,0x8c,0x4a,0xf9,0x7c,0x2e,0x13,0xa3,0x7b,0x3a,0x8f,0x51, +0x51,0xc3,0x5d,0xf4,0x9b,0x2e,0x7c,0xde,0x4b,0xfb,0x39,0x9b, +0x51,0x29,0xcf,0xe1,0xf3,0x2e,0x66,0xee,0x5e,0xda,0x5b,0xf4, +0x89,0x2e,0xfa,0x40,0x0c,0xb1,0xe8,0x5e,0xc6,0xf4,0x62,0x8f, +0xbb,0x73,0x98,0x18,0xc5,0x63,0x2e,0xd3,0x4b,0x7b,0x0e,0xf7, +0x77,0xe1,0xfc,0x18,0x62,0xd4,0xbd,0x92,0x51,0xa9,0x46,0xae, +0x62,0x7a,0xe1,0x9c,0x2e,0xdc,0xdf,0xc5,0x73,0x64,0x8c,0x62, +0x76,0x3d,0xa3,0x52,0x8d,0xa0,0x07,0x74,0xd1,0x0b,0x7a,0xe1, +0x9c,0xee,0x4d,0x4c,0x0c,0xbd,0xb3,0x8b,0x5e,0xd0,0x45,0x2f, +0xe8,0x85,0x5b,0xba,0xb7,0x31,0x2a,0x66,0xc7,0x2e,0x7a,0x41, +0x17,0xbe,0xef,0x45,0x6e,0x75,0xef,0x61,0x54,0xaa,0xa9,0x7b, +0x99,0x5e,0xe4,0x53,0x17,0x73,0x7a,0x17,0x73,0xae,0x8a,0xe7, +0xf0,0xee,0x03,0x4c,0x2f,0xe5,0xd7,0x83,0x8c,0x0a,0x4f,0x75, +0xe7,0x31,0xbd,0x94,0x6b,0xf3,0x19,0x15,0xde,0xea,0xa2,0x9f, +0x74,0x31,0x07,0xf5,0x52,0xde,0x61,0x8e,0xe9,0x62,0x66,0x89, +0xa1,0x87,0x77,0xd1,0x1b,0xba,0xe8,0x23,0xbd,0x94,0x93,0x15, +0x26,0x86,0xfd,0xee,0xc2,0xf5,0x5d,0xf4,0x8f,0x5e,0xca,0xb7, +0x3a,0xa3,0xc2,0x7d,0xdd,0x06,0x13,0xa3,0x5c,0x40,0x0f,0xe9, +0xa2,0x07,0xf6,0x52,0x8e,0x61,0x36,0xef,0xa2,0xa7,0xc5,0x90, +0x1f,0xdd,0x27,0x19,0x15,0x8e,0xec,0xc2,0xe3,0x5d,0xea,0x17, +0x94,0x23,0xe8,0x15,0x5d,0xb8,0xb9,0x97,0xf2,0x61,0x31,0xa3, +0xc2,0xa1,0xdd,0xe7,0x98,0x5e,0xca,0xd9,0xe7,0x99,0x18,0xe5, +0xcb,0x0b,0x4c,0x2f,0xe5,0x03,0x1c,0xda,0x85,0x23,0x63,0x98, +0x15,0xba,0x2f,0x31,0x2a,0x9c,0xdb,0x7d,0x99,0xe9,0xa5,0x7c, +0x78,0x85,0x89,0x61,0x6e,0xe8,0xbe,0xca,0xf4,0xd2,0x5e,0xa3, +0xa7,0x74,0xe1,0x92,0x18,0xe6,0x88,0xee,0x52,0xa6,0x97,0xea, +0x60,0x19,0x13,0x43,0xfe,0x75,0xa9,0xfe,0x51,0xeb,0xbd,0x94, +0x03,0xf0,0x6f,0x17,0xcf,0x82,0x31,0xca,0xc7,0x0f,0x98,0x5e, +0xda,0x5f,0xaa,0x49,0xea,0x17,0xc8,0xcb,0xee,0x0a,0x46,0x25, +0x8f,0x51,0x4e,0x60,0x4f,0x62,0xc8,0xbf,0xee,0x57,0x4c,0x2f, +0xd5,0xcd,0xd7,0x8c,0x4a,0xee,0x5a,0xc9,0xc4,0x28,0x07,0x29, +0x8e,0x88,0x4d,0x2f,0xe6,0xaa,0x2e,0xdd,0x3f,0xf5,0x0e,0xe4, +0x65,0xf7,0x07,0x46,0x45,0xcf,0xe8,0xd2,0xf7,0xa0,0x2f,0xf4, +0x52,0xce,0x90,0xd7,0xf0,0x3c,0x10,0xa3,0x3c,0xfd,0x9d,0xe9, +0xa5,0xfa,0x43,0xaf,0xe8,0x52,0x2f,0xa0,0x3c,0x5d,0xcb,0xf4, +0x52,0x9c,0xff,0x61,0x62,0x98,0x47,0xba,0xff,0x32,0x2a,0x7a, +0x4f,0xf7,0x3f,0xa6,0x17,0xf5,0x89,0xc7,0xaa,0x9e,0x01,0x7a, +0x76,0xc0,0x73,0xe4,0x00,0xfa,0xc0,0x00,0xfc,0xdf,0x8b,0x5a, +0x1d,0x88,0x31,0x31,0xe4,0xf1,0x00,0xdc,0x3f,0x00,0xb7,0xf5, +0x22,0xe6,0x03,0x71,0x26,0x86,0xbc,0x1e,0x80,0xd7,0x06,0x30, +0xff,0xf7,0x22,0x9e,0x03,0x1a,0x13,0x43,0xae,0x0f,0xe8,0x8c, +0x8a,0xfe,0x36,0x90,0x60,0x7a,0x51,0xc7,0x03,0x49,0x46,0x45, +0xcf,0x1b,0x48,0x31,0xbd,0x88,0xe1,0x40,0x9a,0x89,0xa1,0x36, +0x06,0xd0,0x13,0x06,0xd0,0x0b,0x7a,0x51,0xe7,0x03,0x39,0x46, +0xc5,0xfd,0x0f,0xc0,0x59,0x03,0xf0,0x53,0x2f,0xea,0x7c,0x60, +0x23,0x46,0x45,0x3c,0x06,0xe0,0xa3,0x01,0xd4,0x5f,0x2f,0xea, +0x7c,0x00,0x35,0x36,0x40,0x73,0x3b,0x6a,0x6b,0x60,0x5b,0xa6, +0x17,0xf3,0xd4,0xc0,0x76,0x8c,0x8a,0xd8,0x0d,0x8c,0x64,0x62, +0xa8,0xbd,0x01,0xd4,0xd8,0x00,0xdc,0xdd,0x8b,0x79,0x6b,0x60, +0x47,0x46,0x45,0x4c,0x07,0x46,0x31,0x31,0xd4,0xe4,0xc0,0x4e, +0x8c,0x8a,0x18,0x0f,0xec,0xcc,0xc4,0x50,0xa3,0x03,0xa8,0xb7, +0x01,0xf4,0x96,0x5e,0xd4,0xe7,0x00,0x7a,0xc0,0x00,0x66,0xf4, +0x18,0x66,0xb8,0x81,0xbd,0x99,0x5e,0xd4,0xe1,0x00,0x6a,0x69, +0x00,0x3e,0x8e,0xd1,0xf9,0xc7,0x30,0x2a,0xfa,0xf9,0x00,0x9c, +0x3d,0x00,0xa7,0xf6,0xa2,0x3e,0x07,0xe0,0xd0,0x01,0xf8,0x32, +0x86,0x9a,0x1e,0x40,0x3d,0x0c,0x90,0xb7,0x31,0xcb,0x0d,0x8c, +0x63,0x62,0x74,0x1e,0xe4,0xfd,0x00,0xf2,0xba,0x17,0xb3,0xde, +0x00,0xf2,0x78,0x80,0xbc,0x4d,0xdf,0x8b,0x1c,0x1d,0x80,0xab, +0x7b,0x51,0xcf,0x03,0x13,0x19,0x15,0xbd,0x6c,0x00,0x39,0x37, +0x80,0x19,0xbd,0x17,0x35,0x3d,0x80,0xbc,0x19,0x40,0x7d,0xc7, +0x50,0xf7,0x03,0xc7,0x31,0xbd,0xa8,0xe9,0x01,0xd4,0xf6,0x00, +0x39,0x1c,0x73,0xe4,0xc0,0x54,0x46,0xc5,0x6c,0xf1,0xff,0x58, +0x7a,0xcf,0x70,0xdb,0xce,0xb2,0x6c,0x3b,0xca,0x9a,0x75,0xc3, +0x28,0xbe,0x88,0xb0,0x57,0x9d,0x73,0xf5,0xb5,0x68,0x42,0x28, +0x22,0xaf,0x04,0xe5,0x93,0xfa,0x22,0x4d,0x41,0x08,0x10,0x7a, +0x44,0x94,0x50,0xa4,0x89,0x10,0x8a,0xf4,0x26,0x84,0x1e,0x20, +0x42,0x84,0x20,0x11,0x69,0x22,0xac,0xd9,0x7b,0xef,0x73,0x4a, +0x50,0xc4,0x80,0x08,0x41,0x40,0x10,0x83,0x44,0x40,0xf9,0xce, +0x8b,0xcb,0x1f,0xe7,0x31,0x37,0x7b,0xad,0x39,0xc6,0x78,0x9e, +0xe7,0xbe,0xcf,0xeb,0x1e,0x5b,0x0e,0x39,0xfb,0x7d,0xb3,0xa6, +0x6b,0x3e,0xc3,0x9c,0xa7,0xff,0xcf,0xfe,0xc0,0xdc,0x82,0x3a, +0x3b,0xa3,0x27,0xcf,0xa8,0x85,0xf3,0xb8,0xe0,0x8c,0x39,0xfd, +0x4c,0xf3,0x39,0x2e,0x39,0x53,0x1d,0xc8,0xed,0xf8,0xe0,0xec, +0xb9,0x66,0x4d,0xcf,0x80,0xe3,0xcf,0xf0,0xfb,0x79,0x66,0xca, +0x33,0x7a,0xec,0x4c,0x6e,0xc7,0x35,0x67,0x2f,0x34,0xe7,0x19, +0x4c,0xce,0x5e,0x64,0x6e,0x41,0xed,0x9e,0xe9,0xec,0xe5,0x70, +0x8a,0xf3,0x4c,0xe7,0xaa,0x7f,0x13,0xa6,0x8e,0xcf,0x5e,0x6e, +0xce,0xe3,0x92,0x33,0x5c,0x7e,0x26,0x87,0x6b,0x2d,0xaf,0x32, +0xe7,0x99,0x49,0xcf,0x5e,0x6d,0xd6,0x70,0xd3,0xd9,0x6b,0xcc, +0x79,0xbc,0x73,0xf6,0x5a,0x73,0x0b,0xea,0xfe,0x0c,0x97,0x9f, +0xe1,0xf0,0xf3,0x78,0xe8,0xec,0x0d,0x66,0x4d,0xcf,0xfc,0x46, +0x13,0xa8,0x27,0xe8,0x99,0x33,0x7a,0xe2,0x3c,0x6e,0x3a,0x7b, +0x8b,0x59,0x63,0x3e,0x3e,0x53,0x3f,0x50,0xfb,0xe7,0x71,0xd3, +0x99,0x6a,0x9d,0x9a,0x0d,0xe8,0x9f,0x33,0xd5,0x1c,0xb5,0x76, +0x1e,0x3f,0x9d,0xe9,0xbc,0x71,0x78,0x40,0x2f,0x9d,0xbd,0xdf, +0x9c,0x67,0xe6,0x39,0xfb,0x80,0x09,0xd4,0x4f,0x57,0x99,0xf3, +0xcc,0xb5,0x67,0x7f,0x6e,0x02,0x66,0xab,0xb3,0x0f,0x9a,0xf3, +0xcc,0x42,0x67,0x1f,0x32,0x01,0xbd,0x77,0x76,0xb5,0x39,0x8f, +0xbf,0xce,0x70,0xf9,0x19,0xe7,0x19,0xa8,0x17,0x3f,0x62,0xce, +0xe3,0xb2,0x33,0x9d,0x25,0x35,0xb2,0xa6,0x7d,0xfe,0x4b,0x73, +0x1e,0xaf,0x9d,0xe9,0x2c,0x39,0x9f,0x35,0xed,0x33,0xbe,0x3f, +0xe3,0x4c,0xce,0xe3,0xb9,0x33,0x9d,0x01,0x67,0xbb,0x86,0xbb, +0xcf,0x3e,0x6d,0xce,0xe3,0xbe,0xb3,0xcf,0x98,0x80,0x79,0xee, +0x4c,0xfb,0xc2,0xf5,0xce,0xe3,0xc2,0x33,0xe6,0xfb,0x33,0xae, +0xb1,0xa6,0xfd,0x3f,0x33,0xe7,0x71,0xe1,0x59,0xc1,0xac,0x69, +0x9f,0x8b,0xe6,0x3c,0x33,0xc9,0x59,0xc9,0xac,0x69,0x9f,0xcb, +0xe6,0x3c,0x73,0xc5,0x59,0xc5,0x04,0xcc,0x3c,0x67,0x3a,0x33, +0x7e,0x7e,0x9e,0x4c,0x3f,0x6b,0x98,0x80,0xd9,0xf1,0xac,0x69, +0xd6,0xf4,0x77,0x2d,0x13,0x30,0x4b,0x9e,0x69,0xdf,0x95,0x05, +0xb8,0xf6,0xac,0x6b,0xd6,0xf4,0xbb,0x64,0xc2,0x19,0x59,0x70, +0x9e,0x0c,0x3d,0x23,0x07,0xce,0xf0,0x7f,0xc0,0x41,0x9e,0xe1, +0xfe,0x33,0x79,0x1e,0x2f,0x9f,0x69,0x2f,0x58,0x77,0x20,0x57, +0xfd,0x9d,0x39,0x8f,0x73,0xcf,0xbe,0x60,0x02,0xb9,0x4a,0xeb, +0x94,0xf3,0x75,0x4f,0x7c,0x7f,0x86,0xe7,0xcf,0xe3,0xe2,0xb3, +0xeb,0xcd,0x1a,0xf7,0x3e,0xd3,0xbd,0xb9,0xcf,0x79,0x79,0xe9, +0x6b,0x26,0x90,0xdb,0x74,0x0f,0x3c,0x7f,0x5e,0x0e,0xb9,0xc1, +0x04,0xf2,0x1c,0x9e,0x3f,0xc3,0xbb,0xe7,0xd5,0x9b,0xff,0x6e, +0x02,0x39,0x4f,0x1e,0xe4,0x1a,0xeb,0xaa,0x9f,0x1b,0xcd,0x9a, +0xd6,0x24,0x4f,0xd1,0x67,0xeb,0xaa,0x9f,0x9f,0x98,0x35,0xad, +0xef,0xbf,0x4d,0x20,0x47,0xe2,0xf2,0x33,0x6a,0x79,0x3d,0xeb, +0xff,0xb7,0xd9,0x62,0x8d,0xf5,0x17,0xb8,0x56,0x01,0x8f,0xaf, +0xb3,0x87,0x85,0x9b,0x99,0x00,0x9f,0x16,0xd6,0xcc,0x1a,0x7b, +0x53,0xa0,0xfe,0x0a,0xec,0xfd,0x3a,0xfb,0x53,0xd0,0xef,0xb1, +0xaf,0x6b,0xec,0x57,0x21,0x30,0xeb,0x3c,0x5b,0x21,0x34,0x6b, +0x64,0x66,0x21,0x32,0xeb,0xdc,0xb7,0x10,0x9b,0x35,0xea,0xb9, +0xc0,0x7e,0x15,0xb8,0xf6,0xba,0xae,0x7f,0x6b,0xb3,0x46,0x3d, +0x17,0x6e,0x63,0x02,0xfd,0x1d,0x43,0x74,0x01,0x6f,0xaf,0xe3, +0xe9,0xc2,0x86,0x59,0xa3,0xb6,0x0b,0xfa,0xcf,0x5b,0xfc,0x3d, +0x33,0x7d,0xe1,0x7f,0x09,0xf4,0xbd,0x1d,0xb3,0x46,0x9d,0x17, +0x98,0xeb,0x0b,0xcc,0xed,0xeb,0xfa,0x3c,0x32,0x81,0xae,0x77, +0x6c,0xd6,0x38,0xd7,0xc2,0x89,0x59,0xd7,0xcf,0x4f,0xcd,0x1a, +0xe7,0x5c,0xb8,0xad,0x59,0xd7,0xef,0xde,0xce,0x04,0x3c,0x47, +0x81,0x39,0xb2,0xc0,0x4c,0xbf,0xae,0xef,0xf1,0x2e,0x5a,0x60, +0xbe,0x5b,0xa3,0x26,0x0a,0x77,0x33,0xeb,0xcc,0x8d,0x85,0xbb, +0x9b,0x35,0x6a,0xa1,0xf0,0x2b,0x66,0x9d,0x77,0x83,0xc2,0x3d, +0x4c,0xa0,0x75,0x90,0x27,0x05,0xb2,0x63,0x8d,0x5a,0x29,0xdc, +0xcb,0xac,0x33,0x5b,0x16,0x2e,0x32,0x81,0xd6,0x47,0x6e,0x14, +0xc8,0x89,0x75,0xee,0x57,0x60,0x0e,0x2b,0x30,0x73,0xad,0x51, +0xff,0x85,0xdf,0x34,0xeb,0xdc,0xbb,0x70,0x5f,0xb3,0x46,0x9d, +0x15,0xee,0x67,0xd6,0xf5,0x2c,0xf7,0x37,0x6b,0xd4,0x5c,0xe1, +0x01,0x66,0x5d,0xcf,0xf5,0x40,0x13,0xb0,0x77,0x85,0x07,0x99, +0x75,0x3d,0xe3,0xff,0x33,0x6b,0xd4,0x66,0xe1,0xc1,0x66,0x5d, +0xcf,0x4b,0xe6,0x14,0xc8,0x9b,0x35,0x66,0xd1,0xc2,0x43,0x4d, +0xa0,0xfd,0x26,0x7f,0x0a,0x64,0xcf,0xba,0xd6,0xf1,0x08,0xb3, +0x46,0x1d,0x17,0xc8,0xa2,0x02,0x39,0xb4,0x4e,0x36,0x16,0x1e, +0x69,0x02,0x9d,0xc9,0xa3,0xcc,0x1a,0x35,0x5e,0x20,0x8f,0x0a, +0xe4,0xce,0xba,0xd6,0x7d,0x89,0x09,0x74,0x46,0x4f,0x30,0x6b, +0xcc,0x3d,0x85,0x27,0x9a,0x75,0xad,0x95,0x2c,0x2a,0x28,0x83, +0xe8,0x8d,0x02,0xf9,0x53,0x20,0x5f,0xd6,0xb5,0xee,0x67,0x98, +0x35,0x66,0xa0,0xc2,0x1f,0x98,0x80,0x77,0xb8,0x02,0xf9,0x52, +0x20,0x5f,0xd6,0xb5,0xa6,0xcb,0x4c,0xc0,0x7b,0x5d,0x81,0x9c, +0x29,0x90,0x2f,0xeb,0x5a,0xd3,0x73,0x4d,0xc0,0x7b,0x47,0x81, +0x7c,0x29,0x90,0x19,0xeb,0x5a,0x13,0xef,0x04,0x05,0x66,0x84, +0x80,0xf7,0x8e,0xc2,0x4b,0xcc,0xba,0x9e,0x97,0x3c,0x29,0x90, +0x23,0x01,0xf5,0x54,0x20,0x43,0x0a,0x64,0xc4,0x3a,0x99,0x5a, +0x78,0x8d,0x59,0x63,0xfe,0x2a,0xbc,0xd6,0x04,0xaa,0x8d,0xd7, +0x99,0x35,0xfc,0x50,0x78,0xbd,0x59,0xd7,0x5a,0xdf,0x60,0xd6, +0x70,0x42,0x81,0xac,0x28,0x90,0x11,0xeb,0x5a,0xf7,0x5b,0xcc, +0x1a,0xf3,0x5a,0x81,0x8c,0x28,0x30,0x5f,0xac,0x93,0xbd,0x85, +0x77,0x99,0x40,0xb5,0xf9,0x6e,0xb3,0xc6,0x5c,0x57,0x78,0x8f, +0x59,0x67,0x2f,0x0a,0xef,0x35,0x6b,0x38,0xa2,0x40,0x76,0x14, +0x94,0x1d,0xaa,0x5f,0x72,0xa3,0x80,0xff,0xd7,0xb5,0x4f,0x57, +0x9b,0x35,0xdc,0x51,0xf8,0x0b,0x13,0xa8,0x96,0xc9,0x81,0x02, +0xfe,0x5f,0x27,0x7b,0x0b,0xd7,0x98,0x35,0xbc,0x52,0x20,0x07, +0x0a,0xf8,0x7f,0x5d,0xfb,0xf4,0x31,0x13,0xf0,0xae,0x5b,0xb8, +0xd6,0xac,0xe1,0x9d,0x02,0x59,0x50,0xc0,0xf9,0xeb,0x64,0x73, +0xe1,0x33,0x66,0x0d,0x07,0x15,0xfe,0xc6,0x04,0xea,0x85,0xcf, +0x9a,0x75,0xf6,0xb4,0xf0,0xb7,0x66,0x0d,0x3f,0x15,0x3e,0x67, +0xd6,0xb5,0xc7,0x9f,0x37,0x6b,0x78,0xaf,0x40,0x26,0x14,0x70, +0xfb,0xba,0xf6,0x1b,0xb7,0x17,0x34,0xf3,0x33,0x3b,0x15,0xea, +0x66,0x9d,0xcc,0x2e,0x34,0x4c,0xa0,0x9e,0x6a,0x9a,0x35,0xdc, +0x58,0xc0,0xb9,0x05,0xfc,0xbe,0x4e,0x96,0x17,0x3a,0x26,0x50, +0x4f,0x75,0xcd,0x1a,0xf3,0x49,0xa1,0x67,0x02,0xf5,0x94,0x7c, +0x87,0xcf,0xd6,0x75,0x86,0x43,0x13,0xa8,0xa7,0x71,0x7e,0x01, +0x6f,0xad,0xeb,0x0c,0x27,0x26,0xe0,0xfd,0xae,0x20,0x37,0xe1, +0x9e,0x35,0xdc,0x5a,0x98,0x9b,0x75,0x9d,0xe7,0xc2,0xac,0xe1, +0xd6,0xc2,0xd2,0xac,0xeb,0x6c,0x57,0x66,0x0d,0xd7,0x16,0xc8, +0x8a,0x02,0x3e,0x58,0x67,0x2e,0x28,0x7c,0xd1,0x04,0xea,0x5f, +0x32,0xa2,0x40,0x06,0xae,0xeb,0xcc,0xbf,0x64,0xd6,0xf0,0x72, +0xe1,0x1f,0x4d,0xa0,0x5e,0x26,0xdb,0x0a,0xf4,0xf7,0x3a,0xf3, +0x42,0xe1,0x7a,0x93,0x90,0xb3,0xd5,0xab,0xe4,0xc8,0x3a,0xb3, +0x43,0xe1,0x6b,0x26,0x50,0x8f,0xab,0xc7,0xa8,0xc7,0x75,0xd5, +0xce,0xb7,0x4d,0xa0,0x1e,0xff,0x8e,0x49,0xc8,0xf1,0xff,0x66, +0xd6,0x99,0x27,0x0a,0xdf,0x35,0x81,0xfa,0xfd,0x7b,0x66,0x9d, +0xd9,0xa2,0xf0,0xef,0x26,0x41,0x1e,0x14,0xbe,0x6f,0x02,0xf5, +0xbb,0xce,0x9e,0x33,0x59,0x67,0xe6,0x28,0x30,0x8f,0x16,0xd8, +0xfb,0x84,0xb2,0x42,0xfb,0xab,0xdc,0x51,0x4d,0xfd,0xc4,0x24, +0x94,0x15,0xda,0x17,0xf6,0x60,0x5d,0xf5,0xc5,0xda,0x88,0xf7, +0x0b,0x12,0xcc,0x2a,0xc5,0x9f,0x33,0x01,0xf3,0x74,0xf1,0xe7, +0x4d,0x82,0x99,0xa4,0x78,0x33,0xb3,0x4e,0xfd,0x15,0xd7,0x4c, +0x80,0x4f,0x8a,0x5c,0xab,0xc8,0x2c,0xb3,0x4e,0x2d,0x16,0xf5, +0x7b,0xbc,0x3f,0x24,0xa0,0x98,0x35,0xeb,0xcc,0x25,0x45,0x72, +0xa9,0x48,0x1e,0x25,0xf4,0x19,0x98,0x00,0xcf,0x16,0x43,0x93, +0xd0,0xdf,0x45,0x26,0xc0,0x3f,0xc5,0xd8,0x24,0xf4,0x73,0xf2, +0xa8,0x48,0x0e,0xaf,0x33,0xd7,0x14,0xc9,0xdd,0x22,0xf9,0x93, +0xd0,0xef,0x92,0x2b,0x45,0x72,0x63,0x9d,0x59,0xb1,0x48,0x06, +0x14,0xf1,0x5f,0x82,0x8c,0x2b,0xee,0x98,0x00,0x5f,0x17,0xf1, +0x57,0x11,0xf7,0xac,0xd3,0x0f,0x45,0x5c,0x53,0xc4,0x1f,0x09, +0xbe,0x53,0x3c,0x30,0xeb,0xf4,0x43,0x11,0x77,0x14,0xc9,0x93, +0x04,0x6e,0x2f,0x9e,0x98,0x75,0x7a,0xa3,0x78,0x6a,0x12,0xba, +0xde,0x6d,0x4d,0x80,0xfb,0x8b,0xb7,0x33,0x09,0x5d,0xfb,0xf6, +0x66,0x9d,0xfe,0x29,0xde,0xc1,0x04,0xbc,0x4b,0x14,0xe9,0xb1, +0x22,0x35,0x9e,0xe0,0xde,0xc5,0x3b,0x9b,0x75,0xfa,0xaa,0x78, +0xa1,0x49,0xf0,0x1c,0x45,0x6a,0xb7,0x48,0xad,0xad,0xd3,0x63, +0x45,0xea,0xa9,0x48,0x8d,0x24,0xf4,0x5c,0xd4,0x44,0x51,0xb9, +0x43,0xf8,0x17,0xb5,0x06,0xee,0x99,0x20,0x07,0x8b,0xbf,0x6e, +0xd6,0xe9,0xb7,0x22,0xf9,0x53,0x24,0x77,0x12,0x7a,0xde,0xdf, +0x34,0x81,0xfe,0x0e,0xff,0x16,0x95,0x35,0xf4,0x61,0xf1,0xfe, +0x26,0xa1,0xe7,0x25,0x67,0x8a,0xe4,0xcb,0x3a,0xbd,0x58,0x24, +0x5b,0x8a,0x38,0x38,0xa1,0x67,0x27,0x4f,0x8a,0x78,0x77,0x9d, +0x9e,0x2c,0x3e,0xc4,0x24,0xf4,0xec,0xe4,0x49,0x51,0x39,0x42, +0x4f,0x16,0x1f,0x61,0x02,0xb2,0xae,0x48,0x8e,0x14,0x79,0x57, +0x59,0xa7,0x27,0x8b,0xbc,0xaf,0x14,0x79,0x57,0x49,0xd0,0xef, +0xc5,0xc7,0x99,0x75,0xfa,0xad,0xf8,0x78,0x93,0xd0,0xba,0x2f, +0x31,0xeb,0xf4,0x5e,0xf1,0x09,0x26,0xa1,0x3d,0x20,0x43,0x8a, +0x64,0xc6,0x3a,0x7d,0x58,0xe4,0x9d,0xa5,0x78,0x29,0xd7,0x67, +0x3d,0x45,0xde,0x5d,0x8a,0xca,0x08,0xfa,0xaf,0x78,0x99,0x09, +0xb4,0x26,0x32,0xa2,0x88,0xcf,0xd6,0xe9,0xad,0xe2,0xf3,0x4d, +0xc0,0x3a,0x8b,0xbc,0x73,0x14,0xc9,0x86,0x75,0x32,0xa8,0xf8, +0x27,0x26,0xd0,0xba,0xf1,0x57,0x91,0x77,0x89,0x75,0x7a,0xac, +0xc8,0x3b,0x79,0x11,0x3f,0x25,0xb4,0xdf,0xaf,0x32,0x81,0xf6, +0xe3,0xd5,0x66,0x9d,0xfe,0x29,0xbe,0xc6,0x24,0x74,0x0e,0x64, +0x45,0x11,0xc7,0xac,0xd3,0x4f,0x45,0xf2,0xa1,0x88,0x4b,0x12, +0x9c,0x4d,0xf1,0x8d,0x26,0x60,0x1f,0x8b,0x6f,0x32,0x09,0x7a, +0xb3,0xf8,0x66,0xb3,0x8e,0x3f,0x8b,0x6f,0x31,0x81,0xf6,0x18, +0x77,0x14,0x71,0xc3,0x3a,0xfe,0x2c,0xf2,0x3e,0x51,0xc4,0x07, +0x09,0xfa,0xb4,0xf8,0x0e,0xb3,0x4e,0x7f,0x16,0xc9,0x93,0x22, +0x79,0x91,0x50,0x1f,0xbd,0xd7,0xac,0xd3,0xaf,0xc5,0x2b,0x4d, +0xc0,0x39,0x15,0xdf,0x67,0x12,0xaa,0xbd,0xf7,0x9b,0x75,0xfa, +0xb9,0x88,0x23,0x8a,0xf4,0x7a,0x42,0x75,0xf1,0x41,0x13,0xe8, +0x3c,0x3f,0x64,0xd6,0xe9,0xf3,0xe2,0xd5,0x26,0xa1,0xbd,0x25, +0x5b,0x8a,0x38,0x60,0x9d,0xbe,0x2f,0x92,0x2d,0x45,0xfa,0x3e, +0xa1,0xda,0x21,0x53,0x8a,0xf4,0xd6,0xba,0x1c,0xf0,0x09,0xa0, +0x9f,0x12,0xda,0xdb,0x4f,0x99,0x0d,0x39,0x41,0xfd,0x43,0xaf, +0x24,0xb4,0x6f,0xea,0x0d,0xea,0x7d,0x83,0x9e,0x2f,0xaa,0xa6, +0xa9,0xdf,0x80,0x1a,0x2a,0x92,0x11,0x45,0x6a,0x76,0x43,0xbd, +0x8f,0x4c,0x8a,0xbc,0x23,0x24,0xf4,0xfc,0xbc,0x1f,0x14,0xc9, +0x8e,0x0d,0xf5,0x7e,0xd5,0x24,0xf4,0xfb,0x64,0x48,0x91,0x5a, +0xde,0xc0,0x0b,0xc5,0x86,0x09,0x54,0x77,0x4d,0x93,0x50,0x3d, +0xaa,0x5e,0xa9,0xcd,0x0d,0x79,0xa0,0x6b,0x02,0xe6,0x81,0xa2, +0xea,0x92,0x8c,0xd8,0x90,0x1b,0x54,0x8b,0x64,0x43,0x42,0xdf, +0x1d,0x9b,0x0d,0x79,0x80,0x7c,0x28,0x92,0x0b,0x09,0xea,0xb8, +0x38,0x37,0x81,0xfe,0xbc,0x30,0x09,0xe6,0xa1,0xe2,0xd2,0x04, +0xaa,0xf1,0x95,0x49,0x30,0x1b,0x15,0xc9,0x85,0x22,0xef,0x0e, +0x1b,0xcc,0xc6,0xc5,0xeb,0x4c,0x82,0x39,0xa9,0xf8,0x45,0x13, +0xa8,0x0f,0x54,0xa3,0x64,0xc4,0x06,0x3e,0x2a,0x7e,0xc9,0x24, +0x98,0x49,0x8a,0xe4,0x43,0x91,0x5c,0xd8,0x90,0x67,0xae,0x37, +0x81,0xee,0xa5,0xda,0xa5,0x4e,0x37,0xe4,0x19,0xde,0x21,0x8a, +0xbc,0x3f,0x04,0xba,0xd7,0xbf,0x9a,0x0d,0x66,0x9e,0xe2,0xb7, +0x4c,0xa0,0xeb,0x7c,0xdb,0x6c,0xc8,0x15,0xdf,0x31,0x01,0xb3, +0x4d,0x91,0x7c,0x28,0x52,0x9b,0x1b,0x72,0x05,0xb9,0x5e,0xa4, +0xbe,0x12,0xfa,0xfb,0x1f,0x9a,0x80,0xfe,0x2c,0xde,0x64,0x12, +0xf4,0x67,0x51,0x75,0x46,0x4d,0x6d,0xc8,0x61,0xaa,0x1b,0xce, +0x39,0x41,0xaf,0x72,0x3c,0x17,0x94,0xf0,0xf9,0x06,0x1e,0x28, +0xe1,0xf2,0x12,0x1e,0x4f,0x30,0xd3,0x95,0x92,0x66,0x03,0x7f, +0x95,0x52,0x26,0xc1,0x9c,0x57,0x4a,0x9b,0x0d,0xfa,0xba,0x94, +0x31,0x09,0x7a,0xb8,0x84,0xe3,0x4b,0x9c,0x6d,0x80,0x0f,0x4a, +0x37,0x37,0x1b,0xf4,0x78,0xe9,0x16,0x26,0xd0,0xbd,0x02,0xb3, +0x41,0x0f,0x96,0x42,0x13,0xe0,0x88,0x52,0x64,0x12,0x38,0xa0, +0x14,0x9b,0x00,0x5f,0x94,0x38,0xd7,0x12,0xce,0xdf,0xc0,0x8f, +0xa5,0x5b,0x9a,0x04,0x8e,0x28,0x71,0xae,0x25,0xce,0x64,0x83, +0x7e,0x2c,0xf1,0x7e,0x52,0x62,0xef,0x03,0x9c,0x52,0x22,0x0b, +0x4a,0xf8,0x7f,0x83,0x7e,0x2c,0xe1,0xeb,0x12,0x6e,0x0e,0xb4, +0x96,0xbc,0xd9,0xa0,0x77,0x4a,0xf8,0xbf,0x24,0xff,0xe3,0x98, +0x12,0x7b,0x57,0xc2,0xed,0x1b,0xf4,0x4e,0xe9,0xb6,0x26,0xc1, +0x3c,0x56,0xc2,0x95,0x25,0x1c,0xbe,0x41,0xfd,0x97,0xee,0x68, +0x02,0xad,0x1d,0xc7,0x95,0xd8,0x8f,0x0d,0x7a,0xbf,0xa4,0xf5, +0xb3,0xbe,0x40,0x6b,0xd7,0x7a,0x70,0xf5,0x06,0x75,0x5e,0xba, +0xc8,0x24,0x98,0x77,0x4b,0xba,0x1f,0xde,0xda,0xa0,0x66,0x4a, +0xba,0x96,0x3c,0xcc,0xfc,0x5b,0x7a,0x80,0x09,0xb4,0x96,0x07, +0x9a,0x0d,0xed,0xc3,0x83,0x4c,0x02,0xdf,0x95,0x74,0x2d,0xfa, +0x78,0x43,0xfb,0xf0,0x5b,0x26,0xd0,0x33,0x3f,0xc4,0x24,0x70, +0x61,0x89,0x5a,0x2f,0x51,0x3b,0x1b,0x78,0xb4,0xa4,0x7b,0x50, +0x2f,0x09,0x66,0xc5,0xd2,0xa3,0xcd,0x86,0x7e,0xff,0x31,0x26, +0x78,0x3a,0x9f,0x17,0x9b,0x04,0x73,0x63,0xe9,0xb1,0x26,0x60, +0x46,0x2d,0xe9,0x6c,0xd8,0xa7,0x0d,0xfd,0xce,0x93,0x4d,0x82, +0xb9,0xbb,0xf4,0x14,0x13,0x68,0x4f,0xb4,0x4e,0xce,0x67,0x43, +0xcf,0x76,0xa9,0x49,0xe0,0xe2,0x92,0xee,0xc1,0x35,0x36,0x74, +0xdf,0x67,0x98,0x40,0x6b,0x17,0xcc,0xf3,0x1b,0xba,0xce,0x73, +0x4d,0x02,0x5f,0x97,0xfe,0xc8,0x04,0xda,0x87,0xe7,0x99,0x0d, +0xdc,0x5d,0x7a,0xbe,0x09,0xf0,0x7e,0xe9,0x05,0x66,0x03,0x8f, +0x97,0x5e,0x68,0x02,0xdd,0xf7,0x45,0xc0,0xec,0xb9,0x81,0xd7, +0x4b,0x97,0x03,0x33,0x7f,0x42,0xbf,0xfb,0x72,0x13,0x68,0x4f, +0x5e,0x61,0x36,0xf0,0x7d,0xe9,0x7f,0x49,0xe8,0x7b,0xb8,0xbf, +0x84,0xf3,0x37,0xf4,0x89,0xef,0x4b,0xb8,0x3d,0xc1,0x7b,0x45, +0xe9,0xf5,0x26,0xd0,0xf3,0xe3,0xf8,0x12,0x6e,0xdf,0xd0,0xcf, +0xdf,0x64,0x02,0xd6,0x50,0x7a,0xb3,0xd9,0x20,0x13,0x4a,0x78, +0xbd,0x84,0xd3,0x13,0x3c,0x47,0xe9,0xad,0x66,0x83,0x6b,0x95, +0x70,0x7c,0x49,0x6e,0xe7,0x99,0x4a,0x78,0xbd,0xa4,0xf7,0x02, +0xad,0x9b,0x77,0x82,0x92,0xdc,0xae,0x67,0x79,0xaf,0x09,0xb4, +0x56,0xbc,0x5e,0x92,0xcf,0x79,0xa6,0x12,0x2e,0x2f,0xe1,0xf1, +0x0d,0x3d,0xcb,0x55,0x26,0x41,0x0e,0x95,0xf0,0x7a,0x09,0x9f, +0x6f,0xf0,0x4c,0xa5,0x0f,0x99,0x40,0xeb,0xbd,0xda,0x24,0xf4, +0x3c,0xf8,0xbc,0xc4,0xcc,0xb5,0xa1,0x67,0xbc,0xd6,0x04,0xda, +0xb3,0xbf,0x32,0x09,0x3d,0xdb,0xc7,0xcd,0x86,0x9e,0xeb,0xaf, +0x4d,0xa0,0x3d,0xf9,0x84,0x49,0xe8,0xbe,0x9f,0x34,0x81,0xf6, +0x04,0xdf,0x97,0x70,0xfd,0x06,0xb9,0x54,0xfa,0x8c,0x49,0x68, +0x6f,0x70,0x7f,0x49,0xce,0xd7,0x9a,0x3e,0x67,0x12,0x7a,0xb6, +0xcf,0x9b,0x40,0xe7,0x88,0xff,0x4b,0xf2,0xbf,0xd6,0x57,0x34, +0x81,0xce,0x11,0xd1,0x94,0xc8,0x80,0x0d,0xad,0x95,0x1c,0x28, +0xe1,0xff,0x40,0xe7,0x58,0x33,0x09,0xed,0x37,0x39,0x50,0x92, +0xe7,0xb5,0x07,0x38,0xbe,0xa4,0x77,0x01,0x9d,0x73,0xdf,0x6c, +0x90,0x5b,0x25,0x7c,0x5f,0xc2,0xf3,0x81,0xce,0x1c,0xc7,0x97, +0x70,0xf8,0x06,0x39,0x56,0xc2,0xdf,0x25,0x79,0x5b,0xfb,0x80, +0xb7,0x4b,0xf2,0xb6,0xf6,0xe0,0x3a,0x93,0xe0,0xcc,0x4a,0x38, +0xbb,0x84,0xaf,0x37,0xb4,0x07,0xff,0x60,0x02,0xd5,0xc3,0x97, +0x4c,0x42,0xe7,0x89,0xb7,0x4b,0xcc,0xed,0x1b,0xda,0x8f,0xaf, +0x99,0x40,0x67,0xf4,0x2f,0x26,0xa1,0x73,0xfe,0xba,0xd9,0xd0, +0x1e,0x7c,0xc3,0x04,0xaa,0x99,0x1b,0xcc,0x86,0xf6,0xe3,0x9b, +0x26,0x41,0xe6,0x97,0xf0,0x7a,0x89,0x19,0x7e,0x43,0x7b,0xf3, +0x3d,0x93,0xa0,0x56,0x4a,0xff,0x6e,0x02,0x9d,0x35,0xf3,0x47, +0x49,0x3e,0x67,0x5f,0x4a,0x37,0x9a,0x84,0xce,0x8b,0x79,0xa2, +0x84,0xdb,0x37,0xb4,0x37,0x3f,0x34,0x81,0xce,0xfd,0x26,0x93, +0xd0,0x19,0xe1,0xf6,0x12,0x3e,0xdf,0x68,0xfe,0xec,0x7f,0x62, +0xed,0x82,0x32,0x73,0x7b,0x82,0xfa,0x2b,0xff,0xbc,0xd9,0x60, +0xcf,0xca,0x37,0x33,0x09,0x6a,0xb1,0xbc,0x66,0x36,0xc8,0xcc, +0x72,0xc2,0x24,0xa8,0xcb,0x32,0xbe,0x2f,0xe3,0xf0,0x0d,0xf6, +0xb7,0x8c,0xbf,0xcb,0x9a,0xd5,0x39,0xc7,0x32,0xce,0x2e,0xe3, +0xea,0x0d,0xf6,0xba,0x1c,0x99,0x04,0xe7,0x58,0xc6,0xd3,0x65, +0x1c,0xbd,0xc1,0xbe,0x97,0xff,0x8f,0x09,0xa8,0xb7,0x32,0x9e, +0x2e,0xe3,0xe8,0x04,0x35,0x5d,0xbe,0x95,0xd9,0xe0,0x3c,0xca, +0xb8,0xba,0x2c,0x57,0x53,0x6f,0x65,0x5c,0x5d,0x26,0x1b,0x37, +0x38,0x9b,0xf2,0xba,0x09,0xa8,0xa5,0xf2,0x06,0x90,0x8d,0x09, +0x6a,0xbf,0xbc,0x65,0x36,0x38,0xb3,0xf2,0xb6,0x49,0xd0,0x03, +0xe5,0x1d,0xb3,0xc1,0xf9,0x95,0x73,0x26,0x41,0x3f,0x94,0xf3, +0x66,0x83,0xb3,0x2c,0xef,0x9a,0x80,0xba,0x2a,0xef,0x99,0x0d, +0xce,0xb6,0xbc,0x6f,0x02,0xea,0xa4,0x7c,0x60,0x36,0x78,0x87, +0x2b,0x1f,0x9a,0x80,0xfe,0x2e,0x33,0x67,0x97,0xf5,0x2e,0x40, +0x6f,0x95,0x99,0xad,0xcb,0xca,0x08,0xb2,0xbc,0x7c,0x5b,0x13, +0x50,0x4b,0x65,0x32,0xa2,0xac,0x8c,0x20,0xcf,0xcb,0x77,0x34, +0x09,0xea,0xb0,0x4c,0x46,0x94,0x99,0x1f,0x37,0xa8,0x9b,0x32, +0xf9,0x54,0x66,0x8e,0x0f,0xa8,0xab,0xf2,0x3d,0xcc,0x06,0xb9, +0x5e,0xfe,0x55,0x13,0x50,0x1b,0xe5,0x7b,0x9a,0x0d,0x32,0xbe, +0xfc,0x7f,0x4d,0x82,0x99,0xac,0xcc,0x7b,0x51,0x99,0x59,0x7e, +0x83,0xbc,0x2f,0x33,0x73,0x97,0x35,0xe7,0x33,0xa3,0x95,0x99, +0xd5,0xca,0xca,0x14,0x6a,0xa5,0x7c,0x3f,0x93,0xa0,0xff,0xcb, +0x64,0x4b,0x99,0x4c,0xd9,0xa0,0x5e,0xca,0xe4,0x49,0x59,0x39, +0x82,0x0b,0xca,0xff,0xcf,0x6c,0x50,0x37,0xe5,0x07,0x9b,0x04, +0x2e,0x28,0x93,0x27,0x65,0xe6,0xa0,0x0d,0x6a,0xa8,0xcc,0xdc, +0x53,0x66,0x96,0x49,0xd0,0x17,0xe5,0xdf,0x31,0x1b,0xcc,0x87, +0x65,0xb2,0xa5,0x4c,0x76,0x24,0xe8,0x85,0x32,0xb9,0x51,0x56, +0x5e,0x50,0xb7,0xe5,0xc7,0x99,0x0d,0xde,0x1b,0xcb,0x8f,0x37, +0x01,0x75,0x58,0x26,0xab,0xca,0x9a,0xed,0x99,0x0d,0xcb,0x4f, +0x34,0x81,0xea,0xf0,0x49,0x66,0x83,0x1a,0x2d,0x3f,0xd9,0x24, +0xe8,0x9d,0x32,0xd9,0x52,0x26,0x57,0xf4,0x3f,0x17,0x55,0x26, +0x5b,0xca,0xe4,0x4f,0x82,0xde,0x29,0x93,0x27,0x65,0x72,0x60, +0x53,0xf5,0x8b,0xf7,0xcb,0x78,0x3d,0x81,0x3f,0xca,0xcf,0x36, +0x9b,0xcc,0x22,0x65,0xbc,0x5c,0x26,0x47,0x12,0xb8,0xa4,0xfc, +0x3c,0x13,0xe0,0xa5,0x32,0x6e,0x2d,0xe3,0xc8,0x4d,0x66,0x94, +0xf2,0x0b,0x4d,0xa0,0x9a,0x7f,0x91,0xd9,0x64,0x4e,0x29,0xe3, +0xb8,0x32,0xee,0x49,0xd0,0x53,0xe5,0x97,0x9a,0x4d,0xea,0xbe, +0x7c,0xb9,0x49,0xb4,0xf9,0xc4,0xe3,0x65,0x1c,0xb3,0xa9,0x3e, +0x78,0x85,0x09,0xd4,0x23,0xaf,0x34,0x09,0x3c,0x55,0xc6,0x1d, +0x65,0x6a,0x79,0x53,0xfd,0x81,0x1f,0xcb,0xd4,0x6f,0x02,0x6f, +0x95,0xdf,0x64,0x36,0xe9,0x81,0xb2,0xea,0x4c,0x79,0x81,0xbf, +0xca,0xaa,0x03,0xf6,0x69,0x53,0x3d,0xa1,0x7d,0xe1,0x79,0x13, +0xea,0x35,0x3d,0x1f,0xd7,0xde,0x54,0xed,0x5f,0x69,0x12,0xcc, +0xad,0x65,0xf2,0xa1,0x4c,0x4d,0x6d,0xaa,0x0f,0xae,0x31,0x89, +0x29,0x9f,0xaa,0x03,0xfc,0xbc,0x49,0x8d,0x96,0x3f,0x63,0x02, +0x7d,0x0f,0x3f,0x97,0xf1,0xf3,0x26,0x73,0x49,0xf9,0x73,0x26, +0xd0,0x35,0xb4,0xa7,0x5c,0x6f,0x93,0xba,0x2c,0xeb,0xfb,0x9a, +0x87,0xa1,0xcc,0x2c,0x5c,0xa6,0xa7,0x37,0x55,0x17,0x4b,0x93, +0x50,0x8f,0xab,0x9f,0x71,0xe8,0x26,0x73,0x46,0x59,0x7d,0x8b, +0x37,0x13,0xfa,0xb9,0xfa,0x90,0x3e,0xd8,0x64,0xf6,0x2e,0x5f, +0x6f,0x12,0xfa,0xf9,0x57,0x4c,0x20,0x27,0x7c,0xd5,0x6c,0x32, +0x8f,0x94,0xf1,0x68,0x59,0xce,0x54,0x8f,0x7f,0xdd,0x04,0x72, +0x02,0xbe,0x2c,0xd3,0x07,0x9b,0xcc,0x2b,0xe5,0x6f,0x9b,0x84, +0x7a,0xf9,0x3b,0x26,0xc0,0xff,0x65,0xe6,0xdb,0x32,0xce,0xdc, +0x54,0xad,0x7d,0xcf,0x24,0xd4,0xd7,0xf8,0xb2,0x8c,0x2b,0x37, +0x55,0x6b,0xea,0x01,0x3c,0x19,0xc8,0x15,0xaa,0x7b,0xe6,0xda, +0x4d,0xd5,0x1d,0xef,0x3c,0x65,0xfd,0x5b,0xba,0x5c,0xf1,0x3f, +0x66,0x93,0x39,0xa5,0xfc,0x53,0x13,0xd0,0xd7,0x94,0xcd,0xcf, +0xd8,0xa4,0xe6,0x2a,0x3f,0x67,0x12,0xf8,0xa1,0x42,0xcd,0x55, +0xa8,0xaf,0x4d,0x6a,0xb0,0x42,0x0d,0x55,0x34,0xdf,0xe2,0x87, +0x0a,0x75,0x53,0xa1,0x46,0x36,0xa9,0xc5,0xca,0xcd,0x4d,0x82, +0xf5,0x57,0x70,0x64,0x85,0xf3,0xdf,0xa4,0x1e,0x2b,0x38,0xb2, +0xa2,0x7f,0xbb,0x20,0xa7,0x2a,0xb8,0xb1,0x82,0xef,0x36,0xa9, +0xd1,0x0a,0xce,0xab,0xe0,0xbb,0x04,0x7b,0x54,0x39,0x6f,0x36, +0xc9,0xca,0x0a,0xce,0xab,0xc8,0x75,0xec,0x53,0x65,0xcb,0x6c, +0x92,0x95,0x95,0x6d,0x13,0x70,0xde,0x95,0x1d,0xb3,0x49,0xbd, +0x56,0x72,0x26,0xe0,0xfc,0x2b,0x78,0xae,0x82,0xdf,0x36,0xa9, +0xdd,0xca,0x9e,0x09,0xfe,0x92,0x4f,0xdc,0x56,0x61,0x5e,0xde, +0xa4,0x7e,0x2b,0x9c,0x77,0x45,0xfe,0xc1,0x0f,0x15,0xdc,0x53, +0x61,0x46,0xdd,0x24,0xbf,0x2a,0xcc,0xa7,0x15,0xfd,0x7b,0x02, +0xe7,0x51,0x61,0xf6,0xad,0xe0,0x99,0x4d,0x6a,0xb1,0x72,0x1f, +0x93,0x20,0xc3,0x2a,0xf8,0xa6,0x82,0x6b,0x36,0xa9,0xcb,0xca, +0x7d,0x4d,0x80,0x37,0x2a,0xf7,0x33,0x09,0xb2,0xad,0x82,0x73, +0x2a,0x78,0x64,0x93,0x1a,0xab,0x50,0x2b,0x15,0xe6,0xd1,0x04, +0x59,0x57,0x79,0x98,0xd9,0xc4,0xc9,0x95,0x87,0x9b,0x04,0x67, +0x5c,0x79,0x84,0xd9,0xd4,0xfe,0xff,0xb6,0x49,0x70,0xde,0x15, +0x7c,0x53,0xa1,0x5e,0x36,0xb5,0x6f,0xbf,0x6b,0x02,0x5c,0x54, +0x79,0xb4,0xd9,0xd4,0x7a,0xf1,0x50,0x05,0x07,0x05,0xcc,0x2b, +0x15,0x3c,0x54,0xc1,0x39,0x9b,0x5a,0xef,0x25,0x26,0x60,0x66, +0xa9,0xe0,0x9e,0x0a,0xe7,0xbf,0x49,0xee,0x57,0x9e,0x64,0x02, +0xfa,0xa4,0x82,0x6f,0x2a,0x78,0x61,0x53,0xd7,0x7c,0x81,0x09, +0xe8,0x99,0x0a,0x6e,0xa8,0xb0,0xaf,0x9b,0xbc,0x73,0x56,0x5e, +0x6a,0x02,0x7a,0xa8,0x82,0x03,0x2a,0xec,0xd3,0x26,0xf3,0x47, +0xe5,0x0a,0x93,0xa0,0x1e,0x2b,0xb8,0xaf,0x42,0x4d,0x6d,0xaa, +0x4e,0xb4,0x36,0xfd,0x3b,0x2d,0xae,0xab,0xe8,0xb9,0xd9,0xe3, +0x4d,0xad,0xf1,0x5a,0x13,0xd0,0x7b,0x15,0x3d,0x07,0xf7,0xdc, +0xa4,0x5e,0x2b,0x7a,0x6e,0xbd,0x53,0x53,0xd3,0x15,0x3d,0x2b, +0xc5,0xb7,0x49,0xcd,0x56,0xc8,0xfb,0x0a,0xf3,0x4f,0x40,0x8f, +0x56,0xf0,0x51,0x85,0x0c,0xdf,0x22,0xa7,0x2b,0x2d,0x93,0xa0, +0xde,0x2b,0xf8,0xa8,0x42,0x86,0x6f,0x91,0xcf,0x15,0x32,0xbb, +0xa2,0xf7,0x5c,0x5d,0x93,0xf9,0xa7,0x42,0x5f,0x6f,0xa9,0x1e, +0xa7,0x26,0x41,0x3f,0x54,0xe8,0xed,0x0a,0xbd,0xbd,0x45,0x5d, +0x56,0x16,0x26,0x60,0x26,0xab,0xd0,0xc3,0x15,0xcd,0x48,0xba, +0x2f,0xfd,0x5d,0xa1,0xe7,0xb6,0xa8,0xd7,0x0a,0x7d,0x55,0x61, +0x4d,0x09,0x32,0xa2,0xf2,0x65,0xb3,0x85,0xa3,0x2a,0xff,0x64, +0x12,0xcc,0x17,0x95,0xeb,0xcd,0x16,0x35,0x5d,0xf9,0x8a,0x49, +0xf0,0x3e,0x59,0xa1,0xd7,0x2b,0x64,0xdd,0x96,0x6a,0xfc,0x5f, +0x4c,0xc0,0xcc,0x57,0x51,0x6d,0xd1,0xe7,0x5b,0xaa,0xf1,0x1b, +0x4c,0x80,0xc3,0x2b,0xaa,0x1b,0xf6,0x72,0x8b,0xba,0xaf,0x7c, +0xd7,0x04,0x0c,0x2d,0x15,0xfa,0xbb,0xca,0xba,0xb7,0xa8,0xe9, +0xea,0x9a,0x09,0xd8,0xa3,0x2a,0xb3,0x49,0x95,0x5e,0xd8,0xa2, +0x96,0xab,0x3b,0x26,0x41,0x9f,0x57,0x73,0x26,0x60,0xff,0xaa, +0xf4,0x42,0x95,0x3c,0xdd,0xa2,0xe6,0xaa,0xf7,0x34,0x09,0x1c, +0x50,0x25,0x4b,0xab,0xd4,0xf7,0x16,0xef,0x24,0x55,0x6a,0xbc, +0x4a,0x6d,0x07,0xec,0x75,0x95,0xda,0xae,0x52,0xaf,0x5b,0x64, +0x49,0xf5,0xa1,0x26,0x81,0x2f,0xaa,0xfa,0x3e,0x99,0xb7,0x45, +0x4d,0x54,0x1f,0x65,0x12,0xb8,0xa3,0xfa,0xbb,0x26,0xa0,0x4e, +0xaa,0xd4,0x63,0x95,0x5a,0xdc,0x22,0x03,0xaa,0x17,0x9b,0x04, +0x4e,0xa9,0x52,0x93,0x55,0x5c,0xb5,0xc5,0xac,0x58,0x7d,0xbc, +0x09,0x38,0xcb,0xea,0x25,0x86,0xa3,0xbb,0xa0,0x4a,0x7d,0x56, +0xc9,0xb9,0x2d,0xe6,0xbd,0x2a,0xef,0x4f,0x55,0x9c,0x94,0xc4, +0x3b,0xd5,0xa7,0x9b,0x2d,0xb2,0xa2,0xfa,0xfb,0x26,0xe0,0xec, +0xab,0xcf,0x30,0x5b,0xcc,0x24,0xd5,0x3f,0x30,0x49,0xf6,0xa8, +0xca,0xbb,0x53,0x15,0xdf,0x6c,0x91,0x2b,0xd5,0xe7,0x9a,0x80, +0x1a,0xa9,0xe2,0x9a,0x2a,0xd7,0xd8,0x22,0x63,0xaa,0xfa,0x0e, +0x3f,0x4f,0x6a,0x2f,0xc9,0x9d,0x2a,0xf5,0xbc,0x45,0xdd,0x55, +0xaf,0x30,0x49,0x1e,0xa8,0x4a,0x3d,0x57,0x99,0x31,0xb7,0xe8, +0x85,0xea,0x3b,0x4d,0x40,0xae,0x55,0xdf,0x65,0x92,0x78,0xb0, +0x8a,0x17,0xaa,0x38,0x7b,0x8b,0x3a,0xaf,0xe2,0xe5,0x2a,0xae, +0x4d,0xe2,0xc5,0xea,0x07,0xcd,0x16,0x67,0x5a,0xfd,0x90,0x49, +0xe2,0xc8,0xea,0xd5,0x26,0x20,0x07,0xab,0x7f,0x61,0x92,0x78, +0xb3,0x4a,0x8f,0x54,0xc9,0xb2,0x80,0x9e,0xaa,0xe2,0xb5,0x2a, +0xbd,0xbb,0xc5,0xb9,0x57,0x3f,0x66,0x02,0xea,0xbb,0x4a,0xdf, +0x54,0xe9,0x99,0x24,0xf5,0x5c,0xfd,0xb8,0x09,0xa8,0xf7,0x2a, +0x3d,0x54,0xa5,0x7f,0x92,0xd4,0x73,0x95,0x1e,0xaa,0xb2,0x8e, +0x2d,0x9d,0x23,0xbd,0x5d,0xe5,0xb9,0x92,0xd4,0x70,0x95,0xdc, +0xab,0x2a,0xef,0xe8,0x8d,0xea,0xe7,0xcd,0x96,0xce,0x8b,0x99, +0xbb,0x4a,0xed,0x07,0xf4,0x49,0x95,0xba,0xac,0xf2,0xbc,0x49, +0xe6,0xd3,0x6a,0xd9,0x6c,0xe9,0x8c,0x54,0x67,0x5c,0x2f,0x49, +0xcd,0x57,0xe9,0xc1,0x2a,0x7f,0x17,0xd0,0x43,0x55,0x9d,0x01, +0xfb,0x9a,0xc4,0xdd,0xd5,0x8e,0x09,0xe8,0xa1,0xaa,0xd6,0xc6, +0x3a,0x92,0xd4,0x76,0xb5,0x6f,0xb6,0xf4,0xbb,0x03,0x13,0xd0, +0x63,0xd5,0xa1,0x49,0x52,0xe7,0x55,0x3d,0x13,0xbd,0xba,0xa5, +0x33,0xd2,0x73,0xd0,0xa7,0x49,0x5c,0x5f,0xd5,0x3d,0xc8,0xcf, +0x2d,0x5d,0x8f,0x8c,0xac,0x92,0xb3,0x49,0xd5,0xf8,0xdf,0x9b, +0x2d,0xfd,0x2e,0x3d,0x5a,0xa5,0x37,0x93,0xaa,0x71,0xfa,0xb2, +0x4a,0xbf,0x6d,0xf1,0xfd,0xea,0x3f,0x9b,0x80,0x3e,0xae,0xd2, +0x7f,0x55,0xfa,0x2e,0x89,0xfb,0xab,0xf4,0x5d,0x55,0x7d,0xa7, +0x67,0xb8,0xc1,0x24,0x99,0x6b,0xab,0xf4,0x5d,0x15,0x37,0x6f, +0x71,0xbf,0xea,0xb7,0x4c,0xa0,0x3f,0x7f,0xdb,0x24,0x99,0x79, +0xab,0xb8,0xb8,0x4a,0xa6,0x6e,0xf1,0x1c,0x55,0x3c,0x52,0xc5, +0x13,0x49,0x66,0x8c,0xea,0x7f,0x9a,0x2d,0xfa,0xbf,0xfa,0x43, +0x93,0x64,0x26,0xae,0xde,0x64,0x02,0x3d,0xfb,0x7f,0x99,0x24, +0xf3,0x71,0xf5,0x47,0x66,0x0b,0x47,0x54,0x7f,0x6c,0x02,0x5d, +0x53,0x3d,0x49,0x9f,0x6d,0xb1,0x86,0xea,0xff,0x98,0x24,0x73, +0x74,0xf5,0xa7,0x26,0x60,0xcd,0x1c,0xc3,0x05,0x35,0x7a,0x22, +0x79,0x7b,0x3e,0xc9,0xe2,0x9a,0x9c,0xc0,0xfa,0x6a,0x6b,0x26, +0xc9,0x9c,0x5d,0xc3,0x09,0x35,0x6a,0x73,0x8b,0xb5,0xd6,0xd2, +0x26,0xc9,0xdc,0x5d,0x23,0xab,0x6b,0x64,0xf0,0x16,0x6b,0xad, +0x45,0x26,0x79,0x27,0x3e,0xc9,0xe2,0x1a,0x67,0xbe,0x85,0x63, +0x6a,0xbf,0x68,0x92,0x77,0xe6,0x93,0xf3,0xae,0x71,0x86,0x5b, +0xac,0xb5,0xc6,0xec,0x55,0x63,0xef,0x93,0xcc,0x4e,0x35,0xbc, +0x52,0x63,0xbf,0xb7,0x58,0x43,0x0d,0x1f,0xd5,0xc8,0xd6,0x24, +0x39,0x5a,0xdb,0x37,0x01,0x67,0x52,0xe3,0xbd,0xa1,0xc6,0xbe, +0x26,0xf1,0x4e,0xed,0xc8,0x04,0x78,0xb4,0x76,0x6c,0xb6,0x58, +0x6b,0xed,0xc4,0x04,0x9c,0x5f,0xed,0xd4,0x6c,0xb1,0xfe,0x1a, +0x7b,0x54,0x63,0xdd,0x49,0xfc,0x54,0xbb,0xbd,0xd9,0x62,0x2f, +0x6a,0xbc,0x4f,0xd4,0x58,0x47,0x92,0x9c,0xae,0xe9,0xb9,0x79, +0xc6,0x2d,0xf6,0xa5,0x76,0xa1,0x09,0x38,0xff,0xda,0x5d,0xcc, +0x36,0x7b,0x54,0xbb,0xab,0x49,0xe2,0xb8,0xda,0xdd,0xcc,0xb6, +0xf6,0x8c,0xf7,0x8e,0x1a,0xcf,0x9b,0xc4,0x79,0x35,0x72,0xbf, +0xc6,0x33,0x6e,0xb3,0x8f,0xb5,0x7b,0x9a,0x24,0xfe,0xab,0xe9, +0xde,0xbc,0x63,0x6c,0x6b,0x2f,0x75,0x3f,0x66,0x82,0x24,0x79, +0x5f,0x63,0x2e,0xa8,0x91,0xf5,0xdb,0xec,0x6f,0x8d,0x9c,0xaf, +0x91,0xf1,0x49,0x7d,0x3e,0xc0,0x6c,0xd3,0x83,0x35,0xde,0x2f, +0x6a,0xbc,0x53,0x24,0xf5,0x77,0x0f,0x36,0x01,0x39,0x51,0x63, +0x16,0xa8,0xe1,0xd5,0x6d,0xce,0xa0,0xf6,0x50,0x93,0xe4,0xf7, +0x6a,0x0f,0x33,0x01,0xf5,0x53,0x7b,0xb8,0xd9,0xd6,0x99,0x30, +0x0b,0xd4,0x98,0x01,0x92,0xba,0xc6,0xef,0x98,0x6d,0xde,0x27, +0x6b,0x8f,0x34,0x01,0xf5,0x53,0x7b,0x94,0x49,0x72,0xdd,0x1a, +0x0e,0xae,0xe1,0xdf,0x6d,0xde,0x33,0x6b,0x8f,0x31,0x01,0xb5, +0x54,0xbb,0xd8,0x24,0x75,0x4f,0x3c,0x5c,0xc3,0xc3,0xdb,0x3a, +0x67,0x1c,0x5c,0xd3,0x6c,0x40,0x9f,0xd4,0x70,0x6f,0x8d,0x79, +0x60,0x9b,0xfc,0xaa,0x31,0x0f,0xd4,0x78,0xf7,0x48,0xea,0xb9, +0x9e,0x6a,0xb6,0x99,0xc9,0x6a,0xb8,0xb9,0x26,0x27,0xeb,0xb9, +0xf0,0x71,0x8d,0x77,0x90,0x6d,0xea,0xa3,0xc6,0x3b,0x48,0x8d, +0xb9,0x2f,0xa9,0xe7,0x7a,0xb6,0xd9,0x56,0x8d,0x3c,0xc7,0x04, +0xf4,0x5e,0xed,0xb9,0x26,0xa9,0x67,0xc4,0xc3,0x35,0xe6,0x8d, +0x6d,0x6a,0xa8,0xf6,0x02,0x93,0xe4,0xb9,0x6b,0xcc,0x1b,0x35, +0x66,0x8c,0x6d,0xd5,0x11,0x33,0x46,0x8d,0x19,0x2d,0xa9,0x75, +0xbc,0xdc,0x6c,0xab,0x2e,0x78,0xcf,0xa8,0x91,0x2d,0x81,0x6a, +0xfb,0x4f,0x4d,0x52,0x6b,0x22,0x57,0x6a,0xbc,0x6b,0x6c,0x53, +0x37,0x35,0xde,0x35,0x6a,0xbc,0x5f,0x24,0x59,0x67,0xed,0xcd, +0x66,0x5b,0xf5,0xfc,0x16,0x93,0xd4,0x5a,0x71,0x7f,0x0d,0xef, +0x6f,0xab,0x76,0x70,0x7f,0x4d,0xce,0x67,0x36,0xaa,0xbd,0xdd, +0x04,0x78,0xa1,0xf6,0x0e,0x93,0xd4,0x7e,0xe0,0xfe,0x9a,0xfe, +0xcd,0x4a,0xbd,0x83,0xf3,0x6b,0xcc,0x7d,0xdb,0xaa,0x2f,0xde, +0x2b,0x6a,0xcc,0x77,0x49,0xf6,0xab,0xf6,0x7e,0xb3,0xad,0x5e, +0xf8,0x80,0x49,0x6a,0xcf,0xae,0x32,0xdb,0xaa,0xb5,0x3f,0x37, +0x49,0xf2,0xad,0xf6,0x41,0xb3,0xad,0x1e,0xf9,0x90,0x09,0xf0, +0x4e,0xed,0x6a,0xb3,0xad,0x7a,0xfc,0x0b,0x93,0x64,0xdf,0x6b, +0x1f,0x36,0x01,0x3e,0xaa,0x7d,0xc4,0x6c,0xab,0x4e,0xc9,0x8b, +0x1a,0x33,0x60,0x52,0x67,0x42,0x6e,0xd4,0xc8,0x8b,0x6d,0x6a, +0xb7,0x76,0xad,0x49,0x92,0x91,0x35,0x72,0xa3,0x46,0x4e,0x6c, +0x53,0xc7,0xb5,0x4f,0x98,0x24,0x79,0x59,0x23,0x2f,0x6a,0x64, +0xc3,0xb6,0x7a,0x81,0x7c,0xa8,0xe9,0xdf,0xa9,0xf0,0x5c,0xed, +0xcc,0x6c,0xab,0x86,0xc9,0x87,0x9a,0xfe,0x9d,0x8a,0x59,0xa4, +0x56,0x32,0x49,0x32,0xb6,0x46,0x3e,0xd4,0xc8,0x90,0x6d,0xd5, +0x7b,0xd3,0x24,0xa9,0x89,0x5a,0xcb,0x04,0xcc,0x66,0x35,0x9c, +0x5e,0x23,0x17,0xb6,0x55,0x7b,0x5d,0x93,0x54,0xbd,0x90,0x0f, +0x35,0x72,0x61,0x5b,0xf5,0x3e,0x30,0x01,0x33,0x5b,0x6d,0x68, +0x92,0xd4,0x53,0x8d,0x5c,0xa8,0x31,0x9b,0x6d,0xd3,0x03,0xb5, +0xa5,0x49,0xaa,0xbe,0x56,0x26,0xc0,0xc5,0xb5,0xbf,0x33,0xdb, +0xaa,0x71,0x7c,0x5d,0xc3,0xb5,0x49,0xd5,0xdd,0x17,0x4d,0x20, +0x77,0xc9,0x9b,0xf4,0xdf,0xb6,0xea,0xe4,0x7a,0x93,0x54,0x0d, +0x7e,0xc5,0x04,0x78,0xbc,0xa6,0x3e,0xa1,0x0f,0xb6,0xe9,0x81, +0xda,0xd7,0x4c,0x92,0x77,0xe6,0x9a,0x6a,0x97,0x5a,0xdb,0xd6, +0xf9,0x7e,0xc3,0x04,0xb8,0xbe,0x76,0x83,0x49,0x52,0xc7,0x35, +0xd5,0x04,0x7b,0xb3,0xad,0xb3,0x96,0x43,0x59,0x77,0x52,0x75, +0xfd,0x7d,0xb3,0xad,0xbd,0xd2,0xb3,0x2a,0x2f,0x78,0xc7,0xae, +0xe9,0xfb,0x38,0x7f,0x5b,0x7b,0x25,0x0f,0xe2,0xbc,0x24,0xef, +0x35,0x35,0x39,0x0e,0x9f,0x6d,0xf3,0x6c,0xc4,0xec,0xcf,0x48, +0xd2,0x0f,0x75,0x5c,0x56,0xc7,0x5b,0xdb,0xdc,0xab,0x7e,0x33, +0x13,0x90,0x31,0xf5,0x35,0x93,0xa4,0x57,0xea,0x78,0xaa,0xce, +0x1c,0xb1,0x4d,0x0f,0xd5,0x99,0x0f,0xea,0xbc,0x77,0x25,0xe9, +0x9f,0x7a,0x60,0xb6,0xf5,0x3b,0xa1,0x49,0xd2,0x43,0xf5,0xc8, +0x6c,0xeb,0x77,0x62,0x93,0xa4,0xaf,0xea,0xf8,0xa5,0x8e,0x1b, +0xb6,0xe9,0xb7,0xfa,0xad,0x4c,0x92,0x1e,0xab,0xff,0x92,0xd9, +0xa6,0xcf,0xea,0xcc,0xb2,0x75,0x32,0x3f,0xa9,0x3f,0xe3,0x85, +0x3a,0x0e,0xd8,0x7e,0x35,0x9f,0x1b,0x26,0xc9,0xfc,0x56,0x27, +0xd7,0xeb,0x64,0xf8,0xf6,0x6b,0xf9,0x64,0x3e,0xad,0x2b,0x3b, +0xf4,0xe7,0x9c,0x09,0xc8,0xc5,0x3a,0xfd,0x5f,0x27,0x3f,0xb6, +0xe9,0xdb,0xfa,0x9e,0x09,0xc8,0xc8,0x3a,0xfd,0x5f,0x27,0x3f, +0xb6,0xdf,0xc8,0xe7,0xa1,0x09,0xc8,0x9a,0x3a,0x19,0x52,0x27, +0x3b,0x92,0xfa,0xfd,0x13,0xb3,0x4d,0x6f,0xd7,0x4f,0x4d,0x52, +0xbf,0x7f,0x5b,0xb3,0x4d,0x9f,0xd7,0x6f,0x67,0x92,0xb8,0xa0, +0x7e,0x7b,0x13,0xb0,0xef,0xf5,0x3b,0x98,0xa4,0xbe,0x7b,0x47, +0xb3,0x8d,0x0f,0xea,0x64,0x4b,0x9d,0x5c,0x49,0xea,0xbb,0x77, +0x36,0x01,0xe7,0x53,0xbf,0xd0,0x24,0xf1,0x45,0xfd,0x2e,0x26, +0xe0,0xcc,0xea,0xf4,0x7f,0x5d,0x99,0xa2,0xbf,0xbf,0xbb,0x09, +0x38,0xc3,0x3a,0xfd,0x5f,0xa7,0xd7,0xb7,0x71,0x4a,0x9d,0xde, +0xae,0xd3,0xc7,0x01,0xe7,0x5a,0xa7,0x57,0xeb,0xf4,0xd9,0x36, +0x4e,0xa9,0x33,0x6b,0xd7,0xc9,0x99,0x50,0x67,0xfb,0x9b,0x66, +0x1b,0x8f,0xd4,0xef,0x6b,0x42,0x9d,0xf3,0xfd,0x4c,0x12,0x3f, +0xd5,0xef,0x6f,0x42,0x9d,0x39,0x3d,0x59,0x27,0x4b,0xb6,0x71, +0x4d,0x1d,0xef,0xd7,0x95,0x23,0xba,0x17,0xbe,0xae,0x2b,0x3b, +0x70,0x47,0xfd,0x11,0x26,0xa9,0x7b,0xd1,0x3f,0x75,0x65,0x07, +0xee,0xa8,0x3f,0xd2,0x84,0xaa,0x97,0x47,0x99,0x24,0x6e,0xab, +0xe3,0xe5,0x3a,0x79,0xb0,0x8d,0x4b,0xea,0x97,0x98,0x24,0xbe, +0xab,0x3f,0xc1,0x84,0xcc,0xc3,0xf5,0x27,0x9a,0x6d,0x3c,0x52, +0xa7,0x4f,0xea,0x78,0x31,0x24,0x07,0xeb,0x4f,0x31,0x49,0xbc, +0x58,0x27,0x2b,0xea,0xcc,0xe7,0xdb,0xf8,0xa5,0x8e,0x77,0xea, +0x9a,0xc9,0xdf,0xc3,0x27,0x3d,0x50,0x57,0x5e,0x30,0x8f,0xd6, +0x2f,0x33,0x49,0xdc,0x59,0xa7,0xcf,0xeb,0xca,0x0b,0xdc,0x53, +0x7f,0x8e,0x09,0x99,0x53,0xea,0xcf,0x35,0x49,0xed,0x89,0xfa, +0xe1,0x8f,0xf9,0x1d,0x7c,0x54,0x7f,0x31,0xd0,0x2b,0x49,0xad, +0xfd,0x25,0x66,0x9b,0xa1,0xa8,0xfe,0x52,0x93,0xc4,0xb3,0xf5, +0xcb,0xcd,0x36,0x0d,0x54,0x7f,0x99,0x49,0xe2,0xdc,0xba,0x6a, +0x9a,0x5a,0xde,0xc6,0x59,0xf5,0x57,0x99,0x90,0x99,0xbc,0xfe, +0x6a,0xb3,0x8d,0xa7,0xea,0xaa,0x5d,0xea,0x34,0x89,0x97,0xeb, +0xaf,0x03,0x65,0x0a,0xce,0xaa,0xbf,0xc1,0x24,0xb5,0xb7,0xaa, +0x33,0x6a,0x6a,0x1b,0x7f,0xd5,0xdf,0x6c,0x42,0x7a,0xaf,0xfe, +0x16,0x93,0xc4,0xd7,0x75,0xd5,0x13,0xfb,0xba,0x8d,0xcb,0xea, +0xef,0x32,0x49,0xed,0xff,0xbb,0x4d,0xa8,0x1e,0x7d,0x8f,0xd9, +0xc6,0x71,0xf5,0xf7,0x9a,0x24,0x4e,0xaf,0x5f,0x69,0xb6,0xf1, +0x5d,0xfd,0x7d,0x26,0xa9,0x73,0xd1,0x9a,0xc9,0x88,0x6d,0xdc, +0x57,0xd7,0x73,0x28,0x17,0xf0,0x7e,0x5d,0xd7,0x55,0x16,0x30, +0x77,0xd5,0xaf,0x31,0x49,0x32,0xa0,0xae,0x9f,0x91,0x07,0xdb, +0xcc,0x57,0x75,0xfd,0x67,0xbd,0x3b,0x90,0x07,0x75,0xde,0x1b, +0xea,0x9c,0x4f,0x88,0x23,0xea,0x9f,0x34,0xdb,0xf8,0xb1,0xfe, +0x29,0x93,0xd4,0xf9,0x7e,0xda,0x84,0xf2,0x04,0xef,0x3f,0x75, +0xde,0xfb,0x93,0x3a,0xd3,0xcf,0x9a,0x6d,0x1c,0x5a,0xff,0x5b, +0x93,0xd4,0xf7,0x3e,0x67,0xb6,0xf1,0x69,0xfd,0xf3,0x26,0xa9, +0x6b,0xe8,0xcc,0xc8,0x8f,0x50,0x8e,0x21,0x43,0xea,0x64,0xc7, +0x36,0xae,0xad,0x97,0x4d,0xc8,0xac,0x52,0xaf,0x98,0x6d,0x9c, +0x5b,0xe7,0x7d,0xb5,0xae,0x77,0x0d,0xdd,0x53,0xe7,0xa7,0x7c, +0xc1,0xc1,0xf5,0xa6,0x09,0x99,0x53,0xeb,0x64,0x4b,0x5d,0x99, +0x82,0x8b,0xeb,0x5d,0x13,0xe2,0xac,0x3a,0x99,0x52,0xe7,0x9d, +0x60,0x9b,0x39,0xbe,0xce,0x3b,0x40,0x9d,0xf7,0x87,0x50,0x0e, +0x9b,0x9b,0x6d,0xbc,0x5c,0x5f,0x98,0x50,0x0e,0x5b,0x9a,0x6d, +0x1c,0x5d,0x5f,0x99,0x10,0xaf,0xd5,0xc9,0x93,0x3a,0x7b,0xb9, +0x8d,0xb3,0xeb,0xcc,0xac,0x75,0xbd,0x5f,0x68,0xdd,0x5f,0x36, +0xa1,0x9c,0xf7,0x4f,0x66,0x5b,0xbe,0xba,0xde,0x24,0xb5,0x07, +0x5f,0x31,0xdb,0xf2,0xd5,0x57,0x4d,0x88,0x1f,0xeb,0x64,0x4b, +0x5d,0xef,0x20,0xda,0x9b,0xaf,0x9b,0x50,0xbe,0xfc,0x86,0xd9, +0x96,0x97,0x6e,0x30,0xa1,0xdc,0x49,0xa6,0xd4,0x59,0xc7,0xb6, +0xfc,0xc3,0x4c,0x50,0x27,0x93,0x93,0xda,0xbf,0x7f,0x33,0xdb, +0xf2,0x0c,0x99,0x53,0x57,0xd6,0x68,0xff,0xbe,0x6f,0xb6,0xe5, +0x99,0xff,0x30,0x49,0xed,0xdf,0x8d,0x26,0xc4,0xc5,0xf5,0x1f, +0x98,0x1d,0x65,0xcb,0x7f,0x9a,0xa4,0x7a,0xe1,0x87,0x66,0x47, +0x2e,0x92,0x97,0xf5,0x9e,0xa2,0xfd,0xfe,0x91,0xd9,0x21,0x7b, +0xea,0x7a,0x3e,0x9e,0x25,0x49,0x9e,0xd7,0xe5,0x3e,0xee,0xbf, +0x23,0x47,0x71,0xbf,0x86,0x72,0x8a,0x33,0x68,0xf0,0xfd,0x06, +0xbf,0x1b,0xe2,0xfb,0x06,0x3f,0x6b,0xe0,0x86,0x1d,0x3c,0xd3, +0xe0,0xfd,0xa3,0x41,0x4f,0x27,0xe9,0x97,0x46,0xd6,0xec,0xe8, +0xf3,0x9c,0x09,0xc9,0x83,0x06,0xfd,0xd0,0x50,0x66,0xd1,0x2f, +0x8d,0xc0,0x84,0xe4,0x43,0x83,0xbc,0x6a,0x50,0x83,0x3b,0xfa, +0xdd,0xd8,0x84,0x64,0x46,0xe3,0x17,0xcc,0x0e,0xdf,0x69,0x50, +0x43,0x0d,0xbd,0xb3,0xf0,0x0e,0xd9,0xe0,0xbc,0x1b,0xe4,0xd4, +0x8e,0xae,0x71,0x6b,0x93,0xa4,0x0e,0x1a,0x9c,0x6b,0x83,0x73, +0xdb,0xe1,0x5a,0x8d,0x75,0x13,0x92,0x37,0x8d,0x0d,0x93,0xa4, +0x3e,0x1a,0xec,0x7b,0x83,0x6b,0xef,0xe8,0xda,0xfa,0x19,0x39, +0x94,0xa4,0x56,0x1a,0x07,0x66,0x47,0xd7,0x38,0x34,0x21,0x3f, +0x6b,0x90,0x47,0x0d,0xe5,0x11,0x75,0xd3,0x20,0x8b,0x1a,0xe4, +0xcb,0x0e,0xf7,0x68,0xdc,0xc1,0x84,0xfa,0x1e,0xd9,0xd2,0xd0, +0x3b,0x0b,0xb3,0x49,0x83,0x6c,0x69,0x90,0x29,0x3b,0xda,0x9f, +0x0b,0x4d,0xa8,0xeb,0x91,0x27,0x0d,0xb2,0x64,0x47,0xfb,0x40, +0x9e,0x34,0xc8,0x91,0x50,0xd7,0x26,0x47,0x1a,0xbc,0x7b,0xec, +0x68,0xbd,0xcc,0x6d,0x0d,0xde,0x3d,0x42,0xdd,0xe7,0xd7,0xcd, +0x8e,0xfe,0xfc,0x1b,0x26,0x24,0xf3,0x1a,0xf7,0x31,0x3b,0x64, +0x61,0xe3,0xff,0x33,0x49,0x66,0xa0,0x06,0xd9,0xd2,0x60,0x46, +0xdb,0xd1,0xef,0x3c,0xc8,0x84,0xe4,0x62,0x83,0x77,0x8f,0x06, +0x39,0xb2,0xa3,0xe7,0x7a,0x88,0x09,0x59,0x43,0x83,0x3c,0x69, +0x90,0x23,0x3b,0x7a,0xae,0x47,0x98,0x50,0x6b,0x22,0x47,0x1a, +0xcc,0xe3,0x3b,0x3c,0x5f,0xe3,0x62,0x13,0x6a,0x7d,0xcc,0x55, +0x0d,0xf2,0x62,0x87,0x67,0x6d,0x3c,0xc1,0x84,0xac,0xb9,0x41, +0x56,0x34,0x98,0x89,0x76,0xf4,0x8c,0xcc,0xbb,0x0d,0xbd,0x3b, +0x30,0x8b,0x35,0x9e,0x6e,0x42,0xdd,0xf7,0xf7,0xcd,0x0e,0xd9, +0xd6,0x78,0x86,0x49,0xd2,0x73,0x0d,0x72,0xa3,0x41,0x66,0xec, +0x90,0x75,0x8d,0x67,0x9a,0x90,0xbd,0x6b,0x5c,0x66,0x92,0xf4, +0x64,0xe3,0x59,0x66,0x47,0x6b,0x7a,0xb6,0x49,0xd2,0x9f,0x0d, +0x32,0xa4,0xc1,0xac,0xb4,0xa3,0xf5,0x31,0x87,0x35,0x98,0x89, +0x92,0xf4,0x6a,0xe3,0x45,0x66,0x87,0x9c,0x6c,0xfc,0xb1,0x09, +0x75,0x0e,0x64,0x4a,0x43,0x99,0x42,0xdf,0x36,0xc8,0x93,0x06, +0x79,0xb1,0xc3,0xfa,0x1b,0x2f,0x37,0x49,0x7a,0xb7,0xf1,0x0a, +0xb3,0x43,0x76,0x36,0x98,0x93,0x1a,0x7a,0xef,0xc0,0x57,0x0d, +0x32,0xa4,0x41,0x76,0xec,0x90,0xa3,0x8d,0xd7,0x98,0x24,0xbd, +0xdd,0x20,0x43,0x1a,0xe4,0xc7,0x0e,0xef,0x35,0x8d,0xd7,0x9b, +0x50,0xfb,0xf9,0x06,0x93,0xa4,0xe7,0x1b,0xe4,0x48,0x83,0x6c, +0xdf,0xd1,0x5e,0x5e,0x61,0x92,0xf4,0x7f,0xe3,0xed,0x26,0xa4, +0x26,0x1a,0xef,0x30,0x3b,0xe4,0x6d,0x83,0x3c,0x69,0x28,0x3b, +0x54,0x23,0xe4,0x46,0x83,0x8c,0xd8,0x21,0x83,0x1b,0xef,0x33, +0x21,0x33,0x47,0x83,0x8c,0x68,0xf0,0xde,0xb1,0xc3,0xbe,0x37, +0xae,0x32,0x49,0x5c,0xd2,0xf8,0x73,0x13,0x32,0x8f,0x34,0xc8, +0xb6,0x06,0x39,0xb2,0xc3,0x79,0x34,0xae,0x36,0x49,0x5c,0xd3, +0x20,0x4f,0x1a,0x64,0xc9,0x8e,0xce,0x84,0x3c,0x69,0x90,0x23, +0x21,0xb3,0x4b,0x83,0x1c,0x69,0x90,0x09,0x3b,0x3a,0x13,0x32, +0xa0,0x41,0x5e,0x84,0xbc,0x5f,0x34,0x3e,0x65,0x76,0xc8,0xe9, +0x06,0xae,0x6f,0xe0,0xec,0x50,0x75,0xfa,0x37,0x26,0x89,0xb7, +0x1a,0x78,0xb3,0x81,0xff,0x77,0xc8,0xf0,0x46,0xd1,0x24,0x79, +0x7f,0x69,0x94,0x4c,0xa8,0x5a,0x26,0x07,0x1a,0x38,0x6c,0x47, +0x67,0x52,0x35,0x49,0x7c,0xd7,0x20,0x07,0x1a,0xbc,0x17,0xec, +0x70,0x36,0x0d,0x79,0x81,0xf7,0x81,0x50,0xb5,0x34,0x36,0x3b, +0xda,0x6f,0x7c,0xdf,0x90,0xe7,0x55,0xef,0xea,0x61,0xfa,0x6c, +0x47,0x7b,0xcf,0x7b,0x40,0x83,0x5a,0x4b,0xe2,0xca,0xc6,0x3f, +0x98,0x1d,0x72,0xba,0xf1,0x25,0x93,0xc4,0x9b,0x0d,0xd5,0x10, +0xf5,0xb2,0x43,0x66,0x37,0x54,0x1f,0x72,0x38,0x0e,0x6d,0x7c, +0xc5,0xec,0x30,0xd7,0x35,0xbe,0x6a,0x92,0x38,0xb4,0xa1,0x3a, +0xe0,0xdc,0x76,0x38,0xb3,0x86,0xce,0x89,0x7d,0x4d,0xe2,0xd3, +0xc6,0xbf,0x9a,0x1d,0x32,0xbe,0xf1,0x2d,0x13,0x32,0xb7,0x35, +0xbe,0x6d,0x76,0x38,0xb3,0xc6,0x77,0x4c,0x12,0xcf,0x36,0xf4, +0x4c,0xbc,0x27,0xec,0xe8,0x0c,0xff,0xdd,0x84,0xaa,0x7f,0xdd, +0x1b,0x6f,0xef,0xe8,0x3c,0x75,0x3f,0xbd,0x2f,0xe0,0xe3,0x06, +0x9e,0x6e,0xc8,0xcf,0x9c,0x6b,0xe3,0x26,0x93,0xc4,0xcb,0x0d, +0x3c,0xdd,0x90,0x9f,0x75,0xb6,0x3f,0x36,0xa1,0xfa,0xe5,0x27, +0x26,0xa9,0xbf,0xc3,0xd5,0x4d,0x5c,0xbc,0xc3,0x79,0x37,0x99, +0x1d,0x9b,0xf8,0x38,0xc4,0x05,0xcd,0xa4,0xd9,0x61,0x3e,0x68, +0xa6,0x4c,0x48,0xbf,0x34,0xd3,0x26,0xc9,0xf7,0x9b,0x19,0x13, +0x3e,0x98,0xcf,0xac,0xd9,0x61,0x8e,0x68,0x9e,0x33,0x49,0x5d, +0x1b,0x6f,0x37,0x71,0xf4,0x0e,0x73,0x45,0x33,0x32,0x49,0xb2, +0xa1,0x19,0x9b,0x10,0xbf,0x34,0xf1,0x69,0x13,0x47,0xef,0x50, +0x3b,0xcd,0x5b,0x9a,0x10,0xd7,0x34,0x71,0x76,0x13,0x5f,0xef, +0x50,0x43,0x4d,0x9c,0xdd,0xc4,0xd5,0x21,0xee,0x69,0xe2,0xd9, +0x26,0xee,0xdf,0xa1,0x9e,0x9a,0xbb,0x26,0xa4,0x1f,0x9b,0x7b, +0x26,0x49,0xe6,0x34,0xf1,0x6f,0x13,0xcf,0xed,0x50,0x3b,0xcd, +0xdb,0x1a,0x96,0x70,0x41,0xf3,0x76,0x26,0xc4,0x59,0x4d,0x5c, +0xd6,0xc4,0x5b,0x3b,0xcc,0x0b,0xcd,0x3b,0x9a,0x14,0x19,0xd5, +0xc4,0x4d,0x4d,0xdc,0xb3,0xc3,0x0c,0xd1,0xbc,0xb3,0x09,0x71, +0x5b,0xf3,0x42,0x93,0x22,0xc3,0x9a,0xf4,0x6a,0x93,0x5e,0xd9, +0x61,0xa6,0x68,0xd2,0x03,0x4d,0x66,0xf7,0x14,0xfb,0xd8,0xfc, +0x35,0xb3,0xc3,0x7c,0xd1,0xbc,0x97,0x09,0x99,0xad,0x9b,0x17, +0x99,0x14,0xfb,0xdb,0xbc,0xb7,0x09,0x71,0x45,0x93,0xfa,0x6e, +0x32,0xcf,0xef,0x50,0xa3,0xcd,0xfb,0x99,0x94,0xf6,0xfe,0xfe, +0x26,0xc4,0x1b,0x4d,0xce,0xac,0x29,0x3f,0x53,0xbb,0xcd,0x07, +0x99,0x90,0x79,0xbc,0xa9,0xf3,0x60,0xef,0x77,0x70,0x78,0x53, +0xfb,0x28,0x3f,0xe3,0x93,0xa6,0xf6,0x88,0x6b,0xef,0x50,0xd3, +0x4d,0x7d,0x9f,0xdf,0x0d,0x71,0x48,0xf3,0xd1,0x66,0x87,0x7a, +0x6d,0x3e,0xc6,0x84,0x8f,0xe3,0xf3,0x62,0xb3,0x43,0xfd,0x36, +0x1f,0x6b,0x52,0x3a,0x73,0xfd,0x0c,0xaf,0xec,0xe0,0xb1,0x26, +0x1e,0x69,0x32,0xc3,0xa7,0x74,0xfe,0xcc,0xf0,0x4d,0x79,0x9b, +0x9a,0x6e,0x5e,0x6a,0x52,0x3a,0x7f,0x7c,0xd1,0xc4,0xdb,0x3b, +0xd4,0x74,0xf3,0xf7,0x4d,0xc8,0x3b,0x43,0xf3,0x19,0x26,0xa5, +0xba,0xc0,0x11,0x4d,0xfc,0xbb,0x43,0x8d,0x37,0xf1,0x42,0x93, +0xbe,0x4f,0xa9,0x46,0x9e,0x67,0x76,0xa8,0xe9,0xe6,0xf3,0x4d, +0x48,0x66,0x34,0x5f,0x60,0x76,0xa8,0xf1,0xe6,0x0b,0x4d,0x8a, +0xec,0x6e,0xe2,0xe9,0x26,0x7d,0xbf,0x43,0xdd,0x37,0x5f,0x62, +0x42,0x72,0xa5,0xf9,0x52,0xb3,0x43,0x6d,0x37,0x2f,0x37,0x29, +0xea,0xaf,0xf9,0x32,0x13,0x92,0x39,0x4d,0x9c,0xdd,0x94,0xab, +0x55,0xc3,0xaf,0x34,0x21,0xeb,0x6c,0xe2,0xec,0x26,0xbe,0xde, +0x51,0x7d,0xe2,0xec,0x26,0xfe,0x08,0xb5,0x6e,0x7c,0xd1,0xc4, +0x0d,0x39,0xd5,0xcf,0x5b,0x4c,0x4a,0xb5,0xfc,0x67,0x26,0xd4, +0x7e,0xbc,0xd5,0xe4,0xb4,0x6f,0x6f,0x33,0x21,0x7b,0xd4,0xbc, +0xc2,0xa4,0x54,0xef,0x6f,0x37,0xa1,0xf6,0x0c,0x67,0x37,0x99, +0xe7,0x73,0xda,0xcf,0x2b,0x4d,0x4a,0x7d,0xf0,0x3e,0x13,0x6a, +0x2f,0x71,0x75,0x93,0x9e,0xce,0x69,0xbd,0x57,0x99,0x14,0x7d, +0xd2,0xa4,0x9f,0x9b,0x38,0x3a,0xa7,0x67,0x50,0xdf,0xe2,0xe7, +0x90,0x7d,0x6f,0xe2,0xe7,0x26,0xfd,0x97,0xd3,0x75,0xae,0x35, +0x29,0xf5,0xd3,0x5f,0x99,0x50,0xe7,0xf0,0x71,0x93,0x53,0x0f, +0xe1,0xec,0xa6,0x5c,0xad,0x33,0x51,0x8f,0x31,0xab,0xe7,0x98, +0x4f,0x9a,0x9f,0x33,0x29,0xf5,0xdf,0xe7,0x4d,0x48,0xa6,0x36, +0x99,0xd5,0x9b,0xb8,0x3a,0xc7,0x80,0xd8,0x2c,0x9a,0x14,0xfd, +0xd9,0xc4,0xd3,0x4d,0xfa,0x2c,0x47,0x4f,0x36,0xf1,0x74,0x13, +0x3f,0x87,0xe4,0x6e,0x13,0x3f,0x37,0xe9,0xa1,0x9c,0xfa,0x92, +0xf9,0xaf,0x49,0xaf,0x84,0x9c,0x7d,0xb3,0x6f,0x72,0xf4,0x67, +0x73,0x60,0x42,0xea,0xa0,0x39,0x34,0x39,0xf5,0xeb,0xc8,0x84, +0xaa,0x0b,0x5c,0xde,0xc4,0xdd,0x39,0xf5,0xee,0xc2,0x84,0xaa, +0x91,0xa5,0x49,0xc9,0x0d,0x2b,0x13,0xaa,0x5e,0x98,0xcf,0x9b, +0xf4,0x4a,0x8e,0x1e,0x6e,0x5e,0x67,0x42,0xd5,0x8e,0xfa,0x04, +0xe7,0xe7,0xd4,0xc7,0xea,0x0d,0x3c,0x1f,0xaa,0x8e,0xf0,0x7c, +0x93,0xda,0xcf,0x91,0xa7,0x4d,0xd5,0x3a,0x73,0x78,0x48,0xe6, +0x37,0xbf,0x6e,0x72,0xf4,0x76,0xf3,0x1b,0x26,0x54,0xad,0xdd, +0x60,0x72,0xea,0xf5,0x6f,0x9a,0x14,0x6e,0x6a,0xaa,0x1f,0x98, +0xb9,0x73,0xea,0x7b,0xfc,0xdd,0xc4,0xdb,0x29,0xed,0x33,0xde, +0x6e,0xe2,0xed,0x1c,0x19,0xd4,0xbc,0xd1,0xa4,0x98,0x2f,0x9b, +0xaa,0x75,0xea,0x3a,0x47,0xff,0x37,0x7f,0x68,0x42,0xd5,0xef, +0x4d,0x26,0xc5,0xdc,0xd9,0xfc,0x2f,0x93,0x93,0x0f,0x7e,0x64, +0x52,0xcc,0xa1,0x4d,0xd5,0x37,0x75,0x9a,0x93,0x1b,0xf0,0x5d, +0x0b,0x6f,0xa5,0x98,0xe1,0x5b,0x3f,0x6f,0x72,0x78,0xa1,0x75, +0x33,0x93,0xa2,0x70,0x5b,0x6b,0x26,0x87,0x27,0x5a,0x09,0x13, +0xd2,0x1b,0x2d,0x5c,0xd3,0xa2,0x2f,0x73,0xb8,0xa3,0x75,0x73, +0x93,0xe2,0x1c,0x5b,0xb7,0x30,0x21,0x3d,0xd3,0xa2,0xfe,0x5a, +0xf4,0x50,0x0e,0x8f,0xb5,0x22,0x93,0xc2,0xb9,0x2d,0x6a,0xba, +0x45,0x3d,0xe6,0x70,0x4c,0xeb,0x96,0x26,0xc5,0x59,0xb7,0xa8, +0x9b,0x16,0xeb,0xcb,0xe1,0x97,0xd6,0x86,0x49,0xe1,0xe3,0xd6, +0xa6,0x09,0xe9,0xbf,0xd6,0x96,0xc9,0xd1,0x8f,0xad,0x6d,0x13, +0xd2,0x93,0xad,0x1d,0x93,0xa3,0x1f,0x5b,0x39,0x13,0xd2,0x9f, +0x2d,0x3d,0x13,0xb3,0x70,0x8e,0x7e,0x6c,0x31,0xfb,0xb6,0x98, +0xab,0x53,0xcc,0xcf,0xad,0x13,0x93,0xa3,0xfe,0x5b,0xd4,0x53, +0x4b,0x9e,0xd7,0xcf,0xa9,0x95,0x16,0x7e,0xcf,0xe1,0xa0,0xd6, +0x1d,0x4c,0x48,0x7f,0xb7,0xee,0x68,0x52,0xfa,0xde,0x2f,0x9b, +0x90,0x9e,0x6f,0x51,0x2b,0x2d,0xe6,0xa6,0x1c,0xbd,0xd0,0x62, +0x7e,0x6d,0x31,0x5b,0xa7,0x74,0xbd,0x7b,0x98,0x1c,0x75,0xdb, +0xc2,0xf7,0x2d,0x79,0x5e,0xd7,0xfe,0x35,0x93,0xc3,0x61,0xad, +0x7b,0x99,0x94,0xae,0x7d,0x91,0x09,0xf1,0x47,0x0b,0xc7,0xb7, +0xf0,0x7b,0x8e,0xda,0x6e,0xfd,0x86,0x09,0x71,0x4a,0x8b,0x19, +0xbc,0x45,0x2d,0xa4,0x74,0x7f,0x66,0xef,0x16,0xe7,0x9f,0xa3, +0x9e,0x5b,0xb8,0xbf,0xc5,0xf9,0xa4,0xc8,0x9b,0x96,0xce,0x03, +0x8f,0xe7,0xa8,0xdb,0xd6,0xc3,0x4c,0x88,0x87,0x5a,0xe4,0x5c, +0x8b,0x2c,0x4a,0xe9,0x59,0x7e,0xc7,0x84,0xcc,0x91,0x2d,0x7c, +0xdf,0xc2,0xf3,0x29,0x3d,0x17,0x8e,0x6f,0xc9,0xed,0xcc,0x94, +0x2d,0xbc,0xde,0xc2,0xe3,0x29,0x3d,0xcb,0xe3,0x4d,0xc8,0x5c, +0xd9,0xc2,0xad,0x2d,0x7c,0x99,0xd2,0xb3,0xe8,0x0c,0xd8,0xef, +0x1c,0xf3,0x55,0xeb,0xc9,0x26,0xa5,0xe7,0xc2,0xf7,0x2d,0xdc, +0x96,0xc3,0xb3,0xad,0xa7,0x99,0xf0,0x4d,0x7c,0x5e,0x6a,0x52, +0x3c,0x77,0x0b,0x4f,0xb5,0x98,0xbd,0x73,0xd4,0x6d,0x0b,0x47, +0xb4,0xe8,0xfb,0x94,0xd6,0xf1,0x6c,0x93,0xd3,0xde,0x6a,0xef, +0xe4,0x79,0x6a,0xb5,0x45,0x3f,0xb7,0xe8,0xd1,0x9c,0xf6,0x47, +0x6b,0xa3,0xff,0x42,0xdc,0xda,0xfa,0x63,0x93,0xd3,0x5a,0xe8, +0xbd,0x16,0xf7,0x4c,0x91,0x6f,0xad,0x97,0x98,0x10,0xcf,0xb6, +0x5e,0x6a,0x72,0x5a,0xd7,0xe5,0x26,0xa5,0x7a,0x56,0x8d,0x52, +0x53,0x39,0xe6,0xe6,0xd6,0x2b,0x4c,0x88,0x8b,0x5b,0xaf,0x34, +0x29,0xed,0xa5,0xce,0x9e,0x67,0xc9,0xe9,0xf9,0x5f,0x6d,0x52, +0xec,0x6f,0x4b,0xe7,0xc1,0xf5,0x72,0x38,0xbd,0xa5,0xef,0xb3, +0x37,0x29,0xed,0xf7,0x9b,0x4c,0x0e,0x77,0xb7,0xf4,0x7c,0xdc, +0x3f,0xc5,0xcc,0xd0,0x7a,0xab,0x09,0xf1,0x7b,0xeb,0x7f,0xc9, +0xe1,0xf4,0xd6,0x15,0x26,0xd4,0xe7,0xdb,0x4d,0x4a,0x67,0xf2, +0x0e,0x93,0xd3,0x27,0xf3,0x79,0x8b,0x19,0x30,0xa5,0x7e,0x79, +0xb7,0x09,0xf5,0xbb,0xcc,0x79,0x2d,0x65,0x81,0x7e,0x7e,0xa5, +0x49,0xe9,0x0c,0xc9,0x81,0x16,0x19,0x90,0xd3,0xef,0x7e,0xc0, +0x84,0xba,0xce,0x55,0x26,0xa5,0xfe,0x22,0x0b,0x5a,0xcc,0xe2, +0x39,0xbe,0xdf,0xba,0xc6,0x84,0xba,0xce,0x47,0x4d,0x4a,0xe7, +0xff,0x97,0x26,0x47,0x66,0xb4,0x3e,0x66,0x42,0x9e,0xa3,0x45, +0x3e,0xb4,0xc8,0x85,0x14,0x79,0xdf,0x22,0x13,0x5a,0xcc,0xe8, +0x39,0xf2,0xa4,0xc5,0x5c,0xd5,0x62,0x3e,0x4f,0xa9,0x5e,0x3e, +0x6b,0x42,0x3d,0xc3,0xdf,0x9a,0x9c,0xae,0x4d,0x3e,0xb4,0x70, +0x7e,0x8a,0x1a,0x6a,0x55,0x4c,0xa8,0x75,0xe0,0xfe,0x16,0x2f, +0xfc,0x39,0xdd,0xb3,0x09,0x78,0x3e,0xa5,0x7a,0x19,0x98,0x9c, +0xee,0x33,0x34,0x29,0xea,0xa6,0x35,0x32,0x39,0xb2,0xa8,0x85, +0xe7,0x5b,0xcc,0x41,0x29,0xd5,0x11,0xbe,0x6f,0xe1,0xf9,0x1c, +0x33,0x61,0x6b,0x69,0x52,0xea,0x35,0x1c,0xdf,0xc2,0xef,0x39, +0xf2,0xaa,0xf5,0x05,0x13,0x6a,0xed,0xd7,0x99,0x94,0x7a,0x0d, +0xcf,0xb7,0x98,0xd7,0x73,0x5a,0x07,0x33,0x7b,0x8b,0x59,0x3d, +0xa5,0xba,0xfb,0xaa,0xc9,0x91,0x61,0x2d,0x7c,0xdf,0xc2,0xf3, +0x29,0x6a,0xb1,0x85,0xe3,0x5b,0xf2,0x39,0x79,0xd6,0xc2,0xe5, +0x2d,0x3c,0x1e,0xea,0x1c,0xbe,0x65,0x72,0x5a,0x1f,0x33,0x4d, +0x8b,0x99,0x25,0xa5,0x3a,0xfd,0xae,0xc9,0x69,0xad,0xdf,0x33, +0x29,0xd5,0xe9,0xbf,0x9b,0x90,0x33,0x6b,0x7d,0xdf,0xe4,0xc8, +0xc0,0xd6,0x7f,0x98,0x50,0x67,0x78,0xa3,0x49,0xa9,0x96,0x7f, +0x60,0x72,0x75,0x3e,0xc9,0x81,0x16,0xfe,0x4f,0xa9,0xae,0x6f, +0x32,0xa1,0xce,0x19,0xf7,0xb7,0x70,0x7d,0x8e,0x3d,0x6d,0x31, +0xaf,0xb4,0xe5,0x79,0x6a,0xbd,0x8d,0xe3,0xdb,0xb8,0x3d,0xd7, +0xe6,0x73,0xcd,0x84,0xd4,0x42,0x1b,0xaf,0xb7,0x99,0x29,0x52, +0xd4,0x75,0x3b,0x63,0x42,0xce,0xbd,0xcd,0x7c,0xd6,0x96,0xe7, +0xc9,0xe1,0xf6,0xcd,0x4d,0x8a,0x7a,0x6f,0xe3,0xf8,0x36,0x7e, +0xcf,0x71,0x4e,0x6d,0x1c,0xdf,0x96,0xdb,0xe9,0x81,0x36,0x6e, +0x6f,0x93,0xab,0x39,0xce,0xa9,0x4d,0xb6,0xb5,0xc9,0xb1,0x14, +0x7d,0xd0,0x3e,0x6f,0x72,0x9c,0x4d,0x1b,0xc7,0xb7,0xf1,0x79, +0x8a,0xde,0x68,0xe3,0xf2,0x36,0x0e,0xcf,0x71,0x4e,0xed,0x1d, +0x13,0x52,0x4b,0x6d,0xfc,0xdd,0x26,0x2b,0x72,0x9c,0x59,0x9b, +0x6c,0x68,0xe3,0xec,0x14,0x3d,0xd2,0x3e,0x34,0x39,0xce,0xaa, +0x7d,0x64,0x52,0xd4,0x6d,0xfb,0xd8,0xe4,0xc8,0xe9,0xf6,0x89, +0x09,0x99,0x6f,0xda,0xb8,0xb8,0x2d,0x6f,0x53,0xb7,0xed,0x5f, +0x36,0x39,0x32,0xbc,0x7d,0x27,0x13,0x32,0xfb,0xb4,0xf1,0x66, +0x9b,0xb9,0x3c,0xc5,0xfe,0xb7,0xef,0x6a,0x72,0x64,0x7c,0xfb, +0x6e,0x26,0xa5,0xfd,0xb9,0xbb,0xc9,0x91,0xf9,0xed,0x5f,0x31, +0x29,0xed,0xcf,0x3d,0x4c,0xc8,0xfb,0x6d,0xfb,0x57,0x4d,0x4a, +0xcf,0x7f,0x4f,0x93,0xe3,0x3d,0xb0,0x8d,0xfb,0xdb,0xf8,0x35, +0xa4,0xdf,0xda,0xf7,0x32,0x39,0xea,0xac,0x8d,0xef,0xdb,0xf8, +0x35,0xa5,0xe7,0xc4,0xf7,0x6d,0x3c,0x9f,0xa3,0xee,0xda,0xf7, +0x31,0x29,0x5d,0x13,0xdf,0xb7,0x71,0x6a,0x8e,0xfa,0x6b,0xdf, +0xd7,0x84,0xf4,0x51,0xfb,0x7e,0x26,0xa5,0x6b,0x92,0xf1,0x6d, +0x9c,0x97,0x63,0x06,0x69,0x3f,0xd8,0xa4,0xe8,0xe7,0xf6,0x6f, +0x99,0x1c,0xb5,0xd9,0xc6,0x65,0x6d,0xbc,0x95,0xd2,0x77,0x1f, +0x66,0x72,0xd4,0x6b,0x9b,0x5c,0x68,0x2b,0x17,0xe8,0xed,0x36, +0x99,0xd0,0xc6,0x3d,0x39,0x6a,0xb7,0xfd,0x28,0x93,0xa2,0xef, +0xda,0xbf,0x6b,0x42,0x7a,0xb3,0x8d,0x5f,0xda,0xf8,0x23,0xc7, +0x3b,0x67,0x1b,0x47,0xb4,0x35,0xf3,0xd3,0x83,0x6d,0xb2,0xa2, +0x4d,0xdf,0xe7,0xa8,0xef,0xf6,0x25,0x26,0xc5,0x8c,0xd8,0xa6, +0xcf,0xdb,0xe4,0x44,0x8e,0xfa,0x6e,0x93,0x15,0x6d,0xfd,0xdb, +0xbe,0xee,0x45,0x46,0xb4,0xc9,0xd8,0x1c,0xf5,0xdd,0x66,0xbe, +0x6c,0x93,0x9f,0x29,0x7a,0xb3,0xfd,0x87,0x26,0xc7,0xbc,0xd2, +0xa6,0xcf,0xdb,0xca,0x05,0xfa,0xb1,0x4d,0x26,0xb4,0xc9,0xba, +0x1c,0x35,0xdd,0xa6,0xf7,0xda,0x9a,0xe7,0x71,0x4a,0x9b,0x1c, +0x68,0xd3,0x5b,0x79,0xea,0xbb,0xfd,0x62,0x93,0x62,0xee,0x6c, +0x93,0x03,0x6d,0x7a,0x2b,0x4f,0xad,0xb7,0x5f,0x6a,0x42,0x9c, +0xd5,0xbe,0xdc,0xa4,0x98,0x49,0xdb,0x2f,0x33,0x79,0xd5,0xfe, +0xcb,0x4d,0xa8,0xf5,0x92,0x03,0x6d,0x3c,0x9f,0x67,0xc6,0x69, +0xab,0x1f,0xc8,0xcf,0x14,0xbd,0xdf,0x7e,0x9d,0xc9,0xd3,0x0f, +0x6d,0xdc,0xdf,0x96,0xf3,0x99,0x61,0xdb,0xf8,0xbe,0x4d,0x2d, +0xe7,0xd5,0x1f,0x6f,0x35,0xa1,0xf6,0xe4,0x6d,0x26,0x4f,0x6f, +0xb4,0x55,0xbb,0x72,0x3b,0xbd,0xdf,0xc6,0xc5,0x6d,0x6a,0x36, +0xaf,0x5e,0x79,0x97,0x49,0xd1,0xcb,0x6d,0x5c,0xd9,0xc6,0x85, +0x79,0x66,0xa3,0xf6,0x7b,0x4d,0x88,0xc7,0xda,0x57,0x9a,0x14, +0xbd,0xdc,0x7e,0x9f,0x09,0xb5,0xb7,0xaa,0x57,0x6a,0x2d,0xcf, +0xdc,0xd4,0x56,0x0d,0x51,0xcb,0x29,0xdc,0xd9,0xfe,0xb0,0xc9, +0xab,0xcf,0x3e,0x62,0x52,0xea,0xf7,0x6b,0x4c,0x9e,0xb9,0xaa, +0xfd,0x51,0x93,0x62,0xce,0x6e,0xeb,0x5c,0x39,0x93,0x3c,0x3d, +0xd9,0xbe,0xd6,0x84,0x3a,0x0b,0xed,0x17,0xeb,0xc8,0xd3,0x9f, +0x6d,0x3d,0x07,0xf7,0x4c,0xc9,0x03,0xfa,0x19,0xce,0xcf,0x33, +0x5b,0xb5,0x3f,0x63,0x52,0xf2,0x00,0xee,0x6f,0xe3,0xfc,0xbc, +0xfa,0x55,0x67,0xc3,0x1e,0xa7,0x70,0x77,0xbb,0x60,0xf2,0xf4, +0x70,0xbb,0x68,0x42,0xbe,0xdf,0xd6,0xde,0xe1,0xc8,0xbc,0x7a, +0x5a,0xfb,0xc2,0xfa,0x52,0x13,0x3e,0x9b,0x26,0xaf,0x3e,0x6e, +0x99,0x94,0xbc,0xd1,0x36,0xa1,0xee,0xd9,0x31,0x29,0x79,0xa3, +0x6b,0xf2,0xea,0xf5,0x9e,0x09,0xf5,0x2c,0x7a,0x26,0xee,0x9f, +0x67,0xb6,0x6b,0xcb,0x47,0xe4,0x45,0x8a,0x1c,0x68,0x93,0x17, +0x6d,0xee,0x93,0x67,0xce,0x6b,0x4f,0x4d,0x8a,0x3c,0x68,0xcf, +0x4c,0x1e,0x5f,0xb4,0xc9,0x91,0xb6,0xde,0x17,0x58,0x4f,0x7b, +0x69,0x52,0xe4,0x44,0x5b,0xdf,0xe7,0x77,0xf3,0x72,0xc9,0x75, +0x26,0x24,0xd3,0xda,0xf2,0x11,0x5e,0xc9,0xf3,0x8e,0xd0,0x96, +0x3b,0xf0,0x44,0x4a,0x7f,0xf7,0x65,0x93,0x97,0x4b,0xd4,0xf3, +0xca,0x14,0xf9,0x47,0xfd,0x4c,0x96,0xe4,0xe5,0x15,0xf5,0xad, +0xde,0x1d,0x54,0xb7,0x64,0x4a,0x9b,0xf7,0x85,0xbc,0xbc,0x42, +0xb6,0xb4,0xf5,0x8e,0xa0,0x6b,0xa8,0x57,0xe9,0xcb,0xbc,0xbc, +0xf2,0x6d,0x93,0x92,0x2b,0xd4,0x87,0xe4,0x4b,0x1e,0xbf,0xb4, +0xbf,0x6b,0x42,0xed,0xf7,0xf7,0x4c,0x8a,0xfb,0xb5,0xd5,0x7b, +0x64,0x44,0x5e,0xbe,0x21,0x1f,0xda,0x64,0x43,0x4a,0xf7,0xff, +0x91,0xc9,0xcb,0x2b,0x3f,0x36,0x29,0x3d,0xcb,0x4f,0x4c,0xa8, +0xb3,0xfa,0x6f,0x93,0xe2,0xf9,0xda,0xbc,0x37,0xb0,0xe5,0x17, +0xe4,0xf1,0x4e,0xe7,0xe7,0x4c,0xc8,0x19,0x76,0xc8,0x94,0x0e, +0x7d,0x96,0x7f,0x20,0x9f,0xe4,0x49,0x87,0x7e,0x4a,0xb1,0x8e, +0x0e,0xfd,0xd3,0xe1,0xbd,0x36,0x8f,0x9b,0x3a,0x69,0x93,0x62, +0x4d,0x1d,0xb2,0xa5,0x43,0xae,0xe4,0x71,0x53,0xe7,0x9c,0x09, +0x99,0x09,0x3a,0x37,0x37,0x29,0xd6,0xdc,0xb9,0x85,0xc9,0xe3, +0xac,0x4e,0x60,0x42,0x6a,0xa5,0x43,0xd6,0x74,0x78,0x4f,0xcd, +0xe3,0xaf,0xce,0xff,0x31,0x21,0xb5,0xd3,0xe1,0x1d,0xa2,0x43, +0x1f,0xa4,0xd8,0xa7,0xce,0xad,0x4c,0x1e,0x9f,0x75,0xc8,0xa2, +0x8e,0x32,0x88,0xfd,0xea,0x90,0x3f,0x1d,0x7a,0x22,0x8f,0xe3, +0x3a,0xf4,0x40,0x47,0xef,0x14,0xe4,0x6c,0x87,0x0c,0xea,0x50, +0xe3,0x79,0x1c,0xd7,0x21,0x7f,0x3a,0x64,0x4f,0x8a,0x7d,0xec, +0x50,0xdf,0x1d,0x32,0x28,0x8f,0xef,0x3a,0x7b,0x26,0xc5,0x5e, +0x76,0x78,0x27,0xe9,0x50,0xcb,0x79,0xdc,0xd7,0x39,0x34,0x21, +0xb5,0xdb,0x39,0x32,0x29,0xf2,0xbb,0x43,0x16,0x75,0x78,0x77, +0xc8,0xe3,0xc4,0x0e,0xf5,0xd4,0xa1,0x5e,0x52,0xb8,0xae,0x73, +0x27,0x93,0x67,0x3e,0xee,0xdc,0xd9,0xa4,0xc8,0xf2,0xce,0x85, +0x26,0xcf,0xac,0xdc,0xb9,0x8b,0x49,0x91,0xed,0x9d,0xbb,0x9a, +0x90,0x7e,0xe8,0xdc,0xcd,0xa4,0x38,0xcb,0x0e,0x75,0xd3,0x21, +0x83,0x42,0x7a,0xa3,0x43,0xad,0x74,0xc8,0x9d,0x3c,0xf3,0x52, +0x87,0xfa,0xe8,0x50,0x0b,0x29,0xce,0xb9,0x73,0x2f,0x93,0xe7, +0x1d,0xa7,0x73,0x91,0x49,0x71,0xc6,0x1d,0x32,0xa7,0x43,0xde, +0xe4,0xf1,0x6f,0x87,0xcc,0xe9,0x28,0x6b,0x38,0xef,0x0e,0x59, +0xd3,0x21,0x6b,0x42,0x0e,0xb9,0x73,0x5f,0x93,0xd2,0x99,0xeb, +0xbc,0xc9,0x98,0x3c,0x8e,0xee,0x3c,0xc0,0xa4,0x78,0x77,0xec, +0x3c,0xd0,0xe4,0xf1,0x74,0xe7,0x41,0xc0,0x79,0x72,0xc4,0x17, +0x74,0x1e,0x62,0xf2,0xcc,0x63,0x1d,0x9d,0x1f,0x39,0x92,0x56, +0x5d,0xfc,0xae,0x09,0xe9,0xcf,0x0e,0x39,0xd2,0x61,0x5f,0xf3, +0xf8,0xbd,0x73,0xb1,0x49,0xeb,0xfc,0xb5,0xa7,0x64,0x49,0x9e, +0xd9,0xbf,0xf3,0x78,0x13,0xd2,0xc7,0x9d,0x4b,0x4c,0x5a,0x75, +0x41,0xa6,0x74,0xc8,0x8f,0x3c,0x33,0x5b,0xe7,0xa9,0x26,0xa4, +0xcf,0x3b,0x4f,0x33,0x79,0x32,0xa1,0xa3,0xbd,0xe0,0x1d,0x23, +0xad,0xda,0x79,0xba,0xc9,0x93,0x13,0x1d,0xad,0x99,0x75,0xa4, +0x71,0x72,0x87,0x9c,0xe9,0x70,0x9f,0x3c,0x99,0xd1,0x61,0x46, +0xec,0x70,0xbd,0xb4,0x6a,0x8a,0x99,0xaf,0x43,0xd6,0xe4,0xc9, +0x83,0xce,0x0b,0x4c,0x9a,0xda,0xea,0x90,0x39,0x1d,0xae,0x9d, +0xe7,0xdd,0xa0,0xa3,0x6b,0x91,0x2f,0x69,0xd5,0xda,0x4b,0x4d, +0x9e,0xf7,0x84,0xce,0xe5,0x26,0xc4,0x37,0x9d,0x97,0x99,0x3c, +0x59,0xd2,0x79,0xb9,0x09,0x71,0x50,0x87,0x7c,0xe9,0xf0,0x5e, +0x91,0x56,0x3d,0xbe,0xca,0x84,0x38,0xa9,0xa3,0xdf,0x23,0x5f, +0xd2,0xd4,0x65,0xe7,0xf5,0x26,0xc4,0x53,0x1d,0xe6,0xad,0x0e, +0x19,0x93,0xa6,0x2e,0x3b,0x6f,0x36,0x21,0xce,0xea,0xf0,0xee, +0xd1,0x21,0x77,0xd2,0xaa,0xcd,0xb7,0x9a,0x3c,0x79,0xd5,0x79, +0x9b,0x09,0x71,0x59,0xe7,0x0a,0x93,0xa6,0x5e,0x3b,0x6f,0x37, +0x79,0xf2,0xac,0x43,0x06,0x75,0xc8,0x9d,0xb4,0xea,0xf7,0xdd, +0x26,0xc4,0x79,0x9d,0xf7,0x98,0x34,0xee,0xed,0x90,0x3f,0x1d, +0x66,0xcf,0x3c,0xcf,0xd4,0x61,0xa6,0xec,0x30,0x07,0xa5,0x71, +0x6c,0xe7,0x83,0x26,0xaf,0x67,0x21,0x7f,0x3a,0x64,0x4d,0x9a, +0x77,0xdb,0xce,0x47,0x4c,0x88,0x37,0x3b,0xd7,0x98,0xbc,0x9e, +0x91,0x9c,0xe9,0xe8,0xdd,0x01,0x87,0x76,0xc8,0x96,0x0e,0xb9, +0x92,0xa6,0x1f,0x3a,0x64,0x6d,0x47,0xf9,0xc2,0x1a,0x3a,0x9f, +0x30,0x69,0xf5,0xc4,0x27,0x4d,0x5e,0xeb,0x20,0x6b,0x3a,0xfa, +0xbf,0x17,0xe3,0xdc,0xce,0x67,0x4c,0x5a,0xbd,0x82,0xdf,0x3b, +0xca,0x14,0xad,0x0f,0x4f,0x75,0xf0,0x50,0x5a,0x7d,0x53,0x36, +0x79,0x3d,0xbb,0x7c,0x41,0x7f,0xa7,0xd5,0x37,0x75,0x13,0xe2, +0xe4,0x8e,0x7a,0x95,0x1a,0xcf,0x93,0xa9,0x1d,0x72,0xa3,0x43, +0x3d,0xa6,0xd5,0x43,0xaa,0x33,0xe5,0x05,0xeb,0xec,0x0c,0x4d, +0x5a,0xfd,0x34,0x32,0x79,0xad,0x75,0x6c,0xd2,0xcc,0x74,0x9d, +0x89,0x09,0x99,0x39,0x3b,0x53,0x93,0xa6,0xf7,0x3a,0xda,0x77, +0x65,0x04,0x99,0xdc,0xb9,0xce,0xa4,0xd5,0x8b,0x5f,0x34,0x21, +0xfe,0xef,0xfc,0xbd,0xc9,0xb3,0x2f,0x9d,0x7f,0x30,0x21,0xb9, +0xd1,0xf9,0x5f,0xf2,0xda,0xa7,0x7f,0x34,0x69,0xf5,0x2e,0x19, +0xd0,0x51,0x5e,0xb0,0x77,0x9d,0xaf,0x99,0xb4,0xfa,0x18,0x2f, +0x77,0x94,0x17,0xec,0x51,0xe7,0x06,0x93,0xa6,0xb7,0x3b,0x72, +0x28,0x2e,0xcc,0x93,0x5f,0x9d,0x6f,0x99,0x50,0xd7,0xfb,0xb6, +0x49,0xab,0xef,0xc9,0x8e,0x0e,0x4e,0xca,0x93,0x5f,0x9d,0x1b, +0x4d,0xa8,0xfb,0xfc,0xc0,0xa4,0xf1,0x42,0xe7,0x3f,0x4d,0x5e, +0x7b,0xf9,0x43,0x13,0x92,0x63,0x9d,0x9b,0x4c,0x5e,0xee,0xfd, +0x2f,0x13,0x92,0x47,0x1d,0xf2,0xa4,0x83,0x1b,0xf2,0xec,0x3b, +0x5b,0x7b,0x41,0x97,0x6c,0x48,0xe3,0x95,0xee,0xcd,0x4c,0x9e, +0x7d,0xef,0xae,0x99,0x34,0x5e,0xe9,0x26,0x4c,0x9e,0x5f,0xee, +0x26,0x4d,0x48,0x66,0x75,0xc9,0x8d,0x2e,0xb9,0x90,0xc6,0x3b, +0x5d,0xbc,0xd0,0xc5,0xfb,0x79,0xce,0xa9,0x4b,0xdf,0x76,0x99, +0x9b,0xd2,0xcc,0xb8,0xdd,0x5f,0x30,0x79,0xce,0xa6,0x4b,0xdf, +0x76,0xe9,0xc5,0x34,0xde,0xe9,0xe2,0xfc,0x2e,0xef,0x1e,0x79, +0xce,0xa9,0x7b,0x1b,0x13,0x92,0x77,0xdd,0xf3,0x26,0xcf,0x39, +0x75,0xd7,0x4d,0xc8,0x9e,0x76,0xc9,0x82,0x2e,0x3d,0x97,0xe6, +0x3d,0xbd,0x4b,0x16,0x74,0x95,0x05,0x9c,0x61,0x77,0xc7,0xa4, +0xc9,0x91,0x2e,0xbd,0xd7,0x25,0x0f,0xf2,0xd4,0x76,0x77,0xd7, +0x84,0x9c,0x41,0x77,0xcf,0xa4,0xc9,0x94,0x2e,0xb9,0xd0,0xa5, +0x3f,0xf2,0xcc,0x08,0x5d,0x66,0x8e,0x2e,0x3d,0x91,0xc6,0x7d, +0xdd,0xdb,0x9b,0x3c,0xe7,0xda,0xbd,0x83,0x49,0xe3,0xbf,0xee, +0x1d,0x4d,0xc8,0x19,0x76,0x7f,0xd9,0xa4,0x71,0x62,0xf7,0x4e, +0x26,0x24,0x43,0xbb,0xf4,0x43,0x97,0xba,0xce,0x73,0x76,0xdd, +0xbb,0x9a,0x90,0xf3,0xee,0xde,0xcd,0xe4,0xd9,0xf3,0x2e,0x59, +0xd0,0x25,0x0b,0xd2,0x38,0xb4,0x4b,0x1d,0x77,0x95,0x05,0xda, +0xc3,0x7b,0x9a,0x34,0x3e,0xed,0x52,0xaf,0x5d,0x6a,0x33,0xaf, +0xf5,0xde,0xcb,0x84,0xd4,0x4a,0xf7,0x22,0x93,0xc6,0xb3,0xdd, +0x7b,0x9b,0x90,0xda,0xe9,0xfe,0xba,0x49,0xe3,0xdc,0xee,0x6f, +0x98,0x90,0x7a,0xea,0x52,0x13,0x5d,0x32,0x22,0xaf,0x67,0xbe, +0xaf,0x09,0xa9,0xad,0xae,0xce,0x92,0xb3,0x4a,0xe3,0xe6,0xee, +0x03,0x4c,0x5e,0xd7,0x27,0x1f,0xba,0xe4,0x7f,0x9a,0xd9,0xbf, +0xfb,0x60,0x13,0x52,0x7f,0x5d,0xb2,0xa2,0xab,0x8c,0xd0,0xbd, +0x1e,0x6a,0x42,0xea,0xb1,0xfb,0x30,0x93,0xd7,0x35,0x1f,0x6e, +0x42,0xe6,0x9b,0xee,0x23,0x4c,0x1a,0xd7,0x77,0x7f,0xdb,0x84, +0x64,0x74,0x57,0x67,0xc3,0xde,0xe7,0x75,0xcd,0x47,0x99,0x90, +0xb9,0xa7,0x4b,0xce,0x74,0x95,0x2f,0xfa,0xee,0xc5,0x26,0x24, +0xbb,0xbb,0xe4,0x4b,0x97,0x67,0xc9,0xeb,0xcf,0xbc,0x8b,0x74, +0xc9,0x91,0x90,0xbc,0xee,0x3e,0xd5,0xe4,0xa9,0xe9,0xee,0xd3, +0x4c,0x48,0x3f,0x74,0x2f,0x35,0x79,0xea,0xbb,0xfb,0x7b,0x26, +0xa4,0x37,0xba,0xe4,0x49,0x97,0xdc,0xcb,0x53,0xef,0x5d,0x72, +0xae,0x4b,0x8e,0xa5,0xf5,0x3d,0xde,0x53,0xba,0x64,0xca,0xae, +0x6a,0xff,0xb9,0x26,0xad,0xef,0x91,0x2d,0x5d,0x72,0x65,0x97, +0x7e,0xe8,0x3e,0xdf,0x84,0xf4,0x55,0xf7,0x05,0x26,0xad,0xeb, +0xbd,0xd0,0xec,0xaa,0x3f,0x5e,0x64,0xd2,0xe4,0x55,0x97,0xac, +0xe9,0x92,0x2f,0xbb,0xea,0x15,0xb2,0xa5,0x4b,0xa6,0xa4,0x79, +0x67,0xea,0xbe,0xdc,0xec,0x32,0x4b,0x75,0x5f,0x61,0xd2,0x64, +0x5a,0xf7,0x95,0x66,0x97,0xfe,0xe9,0x92,0x33,0x5d,0x72,0x25, +0xcd,0xb3,0x76,0xc9,0x86,0x2e,0x2e,0xdf,0x55,0x3f,0x91,0x2d, +0x5d,0xde,0x5f,0xd2,0x7a,0x5e,0xb2,0xa5,0x8b,0xcb,0x77,0xe9, +0xb1,0xee,0x5b,0x4c,0x5a,0xcf,0xfb,0x67,0x66,0x97,0x7e,0xeb, +0x92,0x2d,0x5d,0x65,0x0a,0xfd,0xdf,0xbd,0xc2,0xa4,0x59,0x4f, +0xf7,0xed,0x26,0xd4,0xfe,0x90,0x29,0x5d,0xbc,0xbb,0xab,0xbe, +0xbc,0xd2,0x84,0xda,0x9f,0xf7,0x99,0xb4,0xd6,0xfd,0x7e,0xb3, +0x4b,0x7f,0x76,0x3f,0x60,0xd2,0xda,0x83,0xab,0x4c,0xc8,0x7c, +0xd2,0xfd,0x73,0x93,0xd6,0x7e,0x90,0x33,0x5d,0xde,0x6b,0x76, +0xd5,0xc7,0x1f,0x36,0x69,0xed,0xcd,0x47,0xcc,0x2e,0x7d,0xdb, +0xbd,0xc6,0xa4,0xb5,0x4f,0x1f,0x35,0x21,0xf3,0x4c,0x97,0xf7, +0x9a,0x2e,0x7e,0xdd,0x55,0x4f,0x5f,0x6b,0xd2,0x64,0x7d,0x17, +0x87,0x76,0xc9,0x9e,0x5d,0xf5,0x37,0xf9,0xd3,0xd5,0x7f,0x67, +0x89,0x19,0xb7,0x4b,0xe6,0x74,0x79,0x6f,0xd9,0xa5,0xcf,0xbb, +0x9f,0x33,0x21,0x2e,0xeb,0x32,0x97,0x77,0x79,0x97,0xd9,0x65, +0xa6,0xeb,0x16,0x4c,0xa4,0xf3,0x25,0x77,0xba,0xca,0x1d,0xde, +0x35,0xbb,0x64,0x4e,0x97,0x5c,0xd9,0xa5,0xff,0xbb,0xcc,0x6a, +0x5d,0xe6,0xb2,0x34,0x67,0xd6,0xe5,0x7d,0xa5,0x8b,0xf3,0x76, +0xd5,0xdf,0x5d,0x93,0xe6,0xfc,0xba,0x72,0x19,0x79,0xb3,0xab, +0xfe,0x1e,0x98,0x88,0x79,0xba,0x3b,0x34,0x69,0x9d,0xad,0xbc, +0x86,0x6f,0x76,0xe9,0xff,0x2e,0xd9,0xd9,0xc5,0x2b,0x69,0x9d, +0xf3,0xdf,0x99,0x5d,0xf5,0xf7,0x17,0x4c,0x5a,0xe7,0x7c,0x9d, +0x89,0x54,0x63,0x5f,0x34,0x69,0x66,0x8b,0x2e,0x39,0xd3,0xc5, +0xd9,0xbb,0x72,0x80,0x7c,0x81,0x1b,0xd2,0xd4,0x44,0x57,0x4e, +0xc4,0x07,0xbb,0xea,0xef,0xaf,0x99,0x34,0xb3,0x41,0x57,0xbd, +0x8d,0x7b,0x76,0xe5,0x6d,0xb9,0x86,0x3e,0x8e,0xe4,0x6f,0xf5, +0x2a,0x3d,0xb7,0xab,0xbe,0x57,0x8f,0xd1,0x43,0x91,0x6a,0xf2, +0xfb,0x66,0x57,0xfd,0xfd,0x1f,0x26,0x92,0xbf,0x6f,0x34,0xbb, +0xea,0xf5,0x1f,0x98,0x34,0xf5,0xd7,0x55,0xdd,0x53,0x17,0xbb, +0x72,0xf5,0x8f,0x4d,0xc4,0xe0,0xd8,0xd5,0x99,0x71,0x0e,0x69, +0xd5,0x26,0x73,0x67,0x97,0xbd,0xdf,0xa5,0xcf,0xd9,0xaa,0x9f, +0x91,0xa6,0x5e,0x7b,0xec,0x51,0x8f,0xf5,0xed,0xd2,0xf3,0xbd, +0x9b,0x99,0x88,0xf7,0x89,0x1e,0x3d,0xd3,0x23,0x3b,0xd2,0xd4, +0x72,0x2f,0x65,0x76,0x71,0x40,0x2f,0x6d,0x22,0x7a,0xa4,0xa7, +0xdf,0xa3,0x27,0x76,0x71,0x6f,0x8f,0x1e,0xe8,0x31,0x4b,0xa6, +0xa9,0xef,0x5e,0x60,0x76,0x71,0x43,0x2f,0x34,0x69,0x6a,0xbd, +0x17,0x99,0x5d,0xfc,0xd9,0x8b,0x4d,0x9a,0xba,0xef,0x51,0xdf, +0x3d,0xb2,0x66,0x17,0x67,0xf6,0x7e,0xc9,0x44,0x5c,0xb7,0x77, +0x6b,0x93,0xa6,0x1f,0x7a,0xb7,0x31,0x91,0xee,0x43,0xe6,0xf4, +0xc8,0x9a,0x5d,0x7c,0xd3,0xdb,0x30,0x11,0xf7,0xee,0x51,0xbb, +0x3d,0x6a,0x73,0x17,0xef,0xf4,0xc8,0x9c,0x1e,0xf5,0x18,0xe9, +0x59,0xc8,0x9a,0x1e,0x73,0xd9,0x2e,0xde,0xe9,0xf1,0x3e,0xd1, +0xa3,0xee,0x22,0x3d,0xcb,0x89,0xd9,0xa5,0x97,0x7b,0xa7,0x26, +0xd2,0xb3,0xdc,0xd6,0xa4,0xe9,0xbf,0xde,0xed,0x4c,0x44,0x1e, +0xf6,0xc8,0x9c,0x1e,0xf5,0xb5,0x8b,0x9f,0x7a,0x17,0x9a,0xf4, +0x3b,0xf9,0xbc,0x8b,0x89,0x78,0x67,0xea,0x91,0x27,0x3d,0x72, +0x64,0x97,0x5e,0xee,0xdd,0xdd,0x44,0xcc,0xba,0x3d,0xf2,0xa4, +0x47,0x96,0xec,0xd2,0x9b,0x3d,0xf2,0xa4,0x47,0xad,0x45,0xac, +0xb9,0x47,0x0d,0xf5,0xa8,0x97,0x5d,0x7a,0xb0,0x47,0x16,0xf4, +0xa8,0x91,0x48,0xeb,0xfe,0x4d,0xb3,0x4b,0x6d,0xf7,0xa8,0x8f, +0x1e,0x59,0x10,0x69,0xdd,0xe4,0x40,0x8f,0xf3,0xdf,0xa5,0x9e, +0x7b,0x9c,0x77,0x0f,0xcf,0xa7,0x99,0x3b,0x7b,0x38,0xbe,0x87, +0xdb,0x77,0x71,0x52,0xef,0x11,0x26,0xcd,0xdc,0xd9,0xd3,0x79, +0xe3,0xf4,0x5d,0xea,0xa4,0xf7,0x48,0x13,0x69,0x9f,0x1e,0x65, +0xd2,0xf8,0xa5,0xa7,0x73,0x65,0xef,0x77,0x99,0x8b,0x7b,0xe4, +0x53,0x8f,0xcc,0x49,0xe3,0x9a,0xde,0x13,0xcd,0xae,0xce,0xee, +0x49,0x26,0x8d,0x6b,0x7a,0x4f,0x36,0xbb,0x3a,0xbb,0xa7,0x98, +0x88,0x7d,0xef,0x69,0xdf,0xf1,0xeb,0xae,0xce,0x0b,0x9f,0xf6, +0xf4,0x5e,0x80,0x8f,0x7a,0x38,0xb4,0xc7,0x1e,0xef,0xea,0x5e, +0x97,0x99,0x34,0x3e,0xea,0xe1,0xf8,0x9e,0xdc,0x8e,0xcb,0x7a, +0xcf,0x35,0x69,0xfc,0xd4,0xc3,0x95,0x3d,0xdc,0xb3,0x8b,0xbf, +0x7a,0x2f,0x36,0x69,0x66,0xc5,0xde,0x9f,0x98,0x48,0x67,0xfb, +0x12,0xb3,0x8b,0xb3,0x7a,0x2f,0x35,0x11,0xe7,0xdd,0xbb,0xdc, +0xec,0xe2,0xaf,0xde,0xcb,0x4c,0x9a,0xb9,0xb1,0xa7,0xfd,0xa2, +0x47,0x77,0x71,0x59,0x4f,0x7b,0x44,0x5f,0xa6,0xf1,0x60,0x4f, +0xfb,0x42,0x7f,0xec,0xe2,0xad,0xde,0x1b,0x4c,0x5a,0xd7,0x54, +0x6f,0x50,0xfb,0xbb,0x38,0xac,0xf7,0x66,0x13,0xa9,0x8e,0xde, +0x62,0xd2,0xba,0xfe,0x9f,0x99,0x08,0xbf,0xf5,0xde,0x6a,0xd2, +0xba,0xfe,0xdb,0xcc,0x2e,0x33,0x64,0xef,0x0a,0x13,0x11,0x60, +0x3d,0xed,0x0b,0xf5,0xb2,0xcb,0xcc,0xdd,0xd3,0x99,0xf1,0x8e, +0x90,0xc6,0xa9,0xbd,0xf7,0x98,0x5d,0x5c,0xd9,0x7b,0xaf,0x49, +0xe3,0xd6,0xde,0x95,0x66,0x17,0x6f,0xf6,0xde,0x67,0xd2,0xb8, +0xb6,0xf7,0x7e,0x13,0x31,0x27,0xf5,0xb4,0xbf,0xec,0xcd,0x2e, +0x4e,0xed,0x5d,0x6d,0xd2,0xb8,0xb8,0xf7,0x17,0x26,0x62,0x86, +0xea,0xe1,0xf8,0x9e,0xdc,0x8e,0x53,0x7b,0xd7,0x98,0x88,0xf7, +0x97,0x9e,0x9e,0x55,0x3e,0x67,0xe6,0xec,0x5d,0x6b,0x22,0xfa, +0xa4,0xa7,0x7b,0xf0,0xec,0xbb,0xf8,0xb7,0xa7,0x67,0xe5,0xdd, +0x20,0x52,0xdf,0x7c,0xd6,0xec,0xe2,0xd9,0xde,0xdf,0x9a,0x48, +0x3d,0xf4,0x39,0xb3,0x8b,0x73,0x7b,0x9f,0x37,0x91,0xfa,0x09, +0xc7,0xf7,0x98,0x73,0x77,0xf1,0x6f,0x4f,0xf7,0xd0,0xbb,0x83, +0xf6,0x99,0xf7,0x86,0x9e,0xdc,0xce,0xfb,0x51,0xaf,0x69,0xd2, +0xda,0x67,0x1c,0xdf,0xc3,0xef,0xbb,0xb8,0xb9,0x87,0xe3,0x7b, +0x72,0x3b,0xef,0x2b,0xbd,0x9e,0xd9,0xc5,0xd1,0xbd,0xbe,0x49, +0xeb,0xb9,0x74,0x3f,0x66,0xd2,0x5d,0x7c,0xdd,0x9b,0x98,0x48, +0xbd,0xcb,0x3c,0xda,0x63,0xde,0x4c,0xf3,0xdc,0xbd,0xb9,0x89, +0xd4,0xc7,0xb8,0xbf,0x27,0xb7,0xeb,0xd9,0xaf,0x33,0xbb,0xbc, +0x27,0xf4,0xf0,0x7a,0x0f,0xa7,0xa7,0xc9,0x9f,0xde,0x3f,0x98, +0x48,0xbd,0xce,0x7c,0xd9,0xd3,0xfb,0x82,0xf6,0xed,0xcb,0x26, +0x62,0xd6,0xec,0xfd,0x93,0xd9,0xd5,0xcf,0xaf,0x37,0x69,0xad, +0xef,0x2b,0x66,0x97,0xef,0xf4,0xc8,0x82,0x9e,0xfc,0xcf,0x9a, +0x7b,0xf8,0xbf,0x27,0xff,0xeb,0x1a,0xdf,0x30,0x69,0xad,0xfb, +0x06,0x13,0x31,0xb3,0xf6,0xc8,0x82,0x1e,0x33,0xda,0xae,0xae, +0xc7,0xec,0xd5,0x63,0x76,0x4b,0x6b,0x3f,0xfe,0xcd,0xec,0x92, +0x2b,0x3d,0xb2,0xa2,0x47,0x2e,0xa4,0xb5,0x37,0x64,0x42,0x0f, +0xef,0xef,0x72,0x8f,0xde,0x0f,0x4d,0x44,0x26,0xf6,0x98,0xb7, +0x7a,0xcc,0x0e,0x69,0xed,0x0d,0x99,0xd0,0x23,0x0b,0x76,0x75, +0x9f,0x9f,0x98,0x34,0x19,0xd8,0x23,0x13,0x7a,0xe4,0xc1,0x2e, +0xf3,0x67,0xef,0xa7,0x26,0x62,0x3e,0x66,0x5b,0x7f,0x46,0x9a, +0x3d,0xed,0x93,0x0b,0x7d,0x39,0x9f,0x67,0xe9,0xe3,0xfb,0x3e, +0xae,0x4f,0xb3,0xbf,0xfd,0xac,0xd9,0xe5,0xfe,0x7d,0x1c,0xdd, +0x97,0xf3,0xd9,0xeb,0x3e,0x9e,0xed,0xe3,0xc8,0x5d,0xf2,0xa9, +0x7f,0x4b,0x93,0xe6,0x1c,0xfb,0xbf,0x68,0x22,0xbc,0xd9,0xc7, +0x77,0x7d,0xdc,0xbe,0xcb,0x73,0xf5,0x6f,0x6d,0xd2,0x64,0x70, +0xff,0x36,0x66,0x97,0xe7,0xeb,0x9f,0x37,0x11,0x6e,0xed,0xaf, +0x9b,0x5d,0x9e,0xb7,0xbf,0x61,0x22,0x3c,0xdb,0xc7,0x5f,0x7d, +0xfa,0x69,0x97,0x35,0xf4,0xf7,0x4c,0x9a,0xda,0xe8,0xef,0x9b, +0x08,0x07,0xf7,0x0f,0xcc,0x1e,0x79,0xda,0x3f,0x34,0x11,0x5e, +0xee,0x1f,0x99,0x3d,0xb2,0xad,0x7f,0x6c,0xd2,0xd4,0x44,0x9f, +0x3a,0xee,0x53,0x3b,0x7b,0xac,0xb9,0x7f,0x3b,0x13,0xe1,0xee, +0x3e,0x75,0xd0,0xe7,0xcc,0xf7,0xb4,0xee,0x3b,0x9a,0x34,0x75, +0xd3,0x67,0xaf,0xfb,0xac,0x69,0x8f,0x3c,0xea,0x5f,0x68,0x22, +0x1c,0xdf,0xd7,0xf3,0x31,0xa3,0xef,0x91,0x79,0xfd,0x07,0x81, +0x66,0x75,0xea,0xab,0x4f,0x96,0xf7,0xf1,0xf6,0x9e,0x9e,0xeb, +0x21,0x26,0x4d,0x9d,0xf5,0xf1,0x77,0x1f,0x77,0xef,0xe9,0xb9, +0x1e,0x6e,0x22,0x72,0xa2,0xff,0x08,0x93,0xa6,0xc6,0xfa,0x38, +0xbc,0x8f,0xc3,0xf7,0xf4,0x8c,0xf8,0xbb,0x8f,0xb7,0x23,0x32, +0xa4,0x8f,0xb7,0xfb,0x64,0xef,0x1e,0xcf,0xdd,0x7f,0x8c,0x89, +0xc8,0x93,0x3e,0xb3,0x79,0x9f,0xec,0x4d,0x53,0x87,0xfd,0xc7, +0x99,0x3d,0xad,0x03,0xc7,0xf7,0xe5,0x76,0x6a,0xb7,0x8f,0xd7, +0xfb,0xf8,0x7a,0x8f,0xb5,0xf5,0x9f,0x66,0x22,0xde,0x67,0xfa, +0x97,0x9a,0x34,0xf5,0xdb,0xff,0x3d,0x13,0xf1,0x6e,0xd3,0x67, +0x9e,0xee,0xe3,0xf6,0x3d,0xad,0xf5,0x19,0x26,0xe2,0x3d,0xa7, +0x8f,0xe3,0xfb,0xf8,0x7d,0x4f,0x7b,0xfe,0x4c,0x13,0xf1,0xce, +0xd3,0xbf,0xcc,0xa4,0xa9,0xdb,0x3e,0x9e,0xef,0x33,0xab,0xee, +0x69,0x3f,0xc9,0xbf,0x3e,0x73,0x68,0xc4,0xbb,0x50,0xff,0x45, +0x66,0x4f,0xd7,0xc7,0xf7,0x7d,0x3c,0x1f,0x91,0x81,0xfd,0x3f, +0x31,0x69,0x6a,0xbb,0x8f,0xe3,0xfb,0xf8,0x7c,0x4f,0xf7,0x7a, +0x99,0x89,0xc8,0xc5,0x3e,0x3e,0xef,0x33,0xbb,0xed,0x91,0x9d, +0xfd,0x57,0x9a,0x34,0x7d,0xd6,0xff,0x53,0x13,0x91,0x99,0x7d, +0x66,0xb5,0x3e,0xce,0xdf,0x23,0x53,0xfb,0xaf,0x31,0x11,0xef, +0x55,0x7d,0xdc,0xdf,0xc7,0xfb,0x7b,0xfa,0x1d,0xdc,0xdf,0xc7, +0xf9,0x11,0xf9,0xda,0xc7,0xf9,0x7d,0xbc,0xbd,0xa7,0x3f,0xe3, +0xec,0x3e,0xbe,0x8e,0x38,0xcb,0xfe,0x3b,0xcc,0x9e,0xce,0xed, +0x9d,0x26,0xe2,0x5c,0xfb,0xef,0x32,0x69,0x7a,0xbb,0xff,0x6e, +0x13,0xe9,0x9c,0x71,0x79,0x1f,0x2f,0xef,0xe9,0x6c,0xc9,0xb0, +0x3e,0x59,0x17,0x71,0xf6,0x7d,0xb2,0xad,0x8f,0xab,0xf7,0x74, +0x86,0x57,0x9b,0x48,0xbf,0x83,0xa7,0xfb,0xf8,0x79,0x4f,0xe7, +0x79,0x8d,0x89,0xa8,0x89,0x3e,0x7e,0xee,0xe3,0xcb,0x3d,0x9d, +0x27,0x33,0x75,0x1f,0x47,0x46,0xaa,0x91,0x4f,0x99,0x3d,0xf2, +0xb8,0xff,0x69,0x13,0xa9,0x46,0x3e,0x63,0xf6,0xc8,0xe6,0xfe, +0xdf,0x98,0x88,0xba,0xe9,0xe3,0xec,0x3e,0x33,0xf6,0x1e,0x39, +0xdd,0xc7,0x71,0x7d,0xcd,0xd8,0x38,0xa8,0x5f,0x36,0x91,0x9e, +0xa7,0x62,0xf6,0x38,0xe3,0x7e,0xd5,0xa4,0x71,0x52,0x1f,0x7f, +0xf5,0xf1,0xf5,0x9e,0xce,0x1c,0x67,0xf7,0xe5,0x6a,0xbc,0xd1, +0x6f,0x99,0x3d,0xce,0xbe,0xdf,0x36,0x11,0x75,0xd9,0xc7,0x4d, +0x7d,0xdc,0xb3,0xa7,0x5a,0xc0,0xfb,0x7d,0x7c,0x93,0x96,0x43, +0xc6,0x66,0x8f,0x8c,0xef,0x4f,0x4c,0x1a,0xaf,0xf5,0xa7,0x66, +0x8f,0xcc,0xef,0xcb,0x23,0x38,0x3a,0x8d,0xe7,0xfa,0x72,0x07, +0x3d,0xbd,0xc7,0x1c,0xd5,0xff,0x82,0x89,0xb4,0x3f,0xea,0x3d, +0xcd,0xe1,0x78,0xb0,0x8f,0xb3,0xfb,0xf4,0xd0,0x1e,0xf5,0xd4, +0xff,0x92,0x49,0xcb,0x3f,0xaa,0x7b,0x5c,0xbb,0xa7,0x9a,0xfa, +0x27,0x13,0xd1,0x27,0xfd,0xeb,0x4d,0x9a,0xb9,0xb9,0x8f,0xa7, +0xfb,0xec,0xc1,0x9e,0x6a,0x0d,0x3f,0xf6,0x59,0x6b,0xa4,0x1e, +0xfa,0x57,0xb3,0xa7,0x9a,0xfa,0x96,0x89,0xe8,0xa5,0xfe,0xb7, +0x4d,0x1a,0xe7,0xf6,0xbf,0x63,0x22,0xf5,0x96,0xd6,0x80,0x0b, +0xf7,0x54,0x77,0x37,0x9a,0x34,0x2e,0xee,0xff,0xc0,0x44,0xea, +0x39,0x7d,0x87,0xbf,0xdb,0x53,0xad,0xdd,0x64,0x22,0xe6,0xac, +0x3e,0x9e,0xee,0xe3,0xc2,0x3d,0xd5,0x1d,0x9e,0xee,0xe3,0xbf, +0x88,0xfe,0xec,0xe3,0xbb,0x01,0x1e,0xda,0x63,0xe6,0x18,0xa4, +0x4d,0x9a,0xef,0x0c,0x70,0xf0,0x00,0xaf,0xec,0x51,0x5f,0x83, +0xc8,0xa4,0xb9,0xc6,0x20,0x36,0x11,0xf5,0x30,0x60,0x7e,0x1d, +0xe0,0xe1,0x3d,0x6a,0x6e,0x70,0x4b,0x93,0xe6,0x1e,0x03,0x1c, +0x3c,0xc0,0xbf,0x7b,0xd4,0xdf,0xe0,0x97,0x4c,0x44,0x9d,0x0c, +0x6e,0x6d,0xd2,0xdc,0x7f,0x80,0x83,0x07,0xcc,0x56,0x7b,0xd4, +0xe3,0x80,0x59,0x6a,0xc0,0xbc,0x93,0xe6,0x99,0x06,0x79,0xb3, +0xc7,0x7c,0x30,0xc0,0xbb,0x03,0x39,0x96,0x5a,0x1a,0x1c,0x98, +0x3d,0xe6,0x85,0xc1,0xa1,0x49,0xe3,0xe4,0x01,0x2e,0x1b,0x90, +0xff,0x7b,0xcc,0x21,0x03,0xdc,0x34,0xd0,0xbf,0xdb,0x90,0x31, +0x03,0x1c,0x34,0x90,0x4b,0xa9,0xdd,0xc1,0x1d,0x4d,0x84,0x6b, +0x06,0xbf,0x6c,0xf6,0xa8,0xdd,0xc1,0x9d,0x4c,0x86,0xfc,0x19, +0xdc,0xd9,0xec,0x51,0xc7,0x83,0x0b,0x4d,0x84,0x8f,0x06,0x38, +0x76,0x80,0xff,0xf6,0xa8,0xeb,0x01,0x73,0xf4,0x00,0xe7,0x45, +0xf8,0x69,0xf0,0x6b,0x66,0x8f,0xfa,0x1e,0xdc,0xcb,0x44,0xd4, +0xed,0xe0,0x22,0xb3,0x47,0xad,0x0f,0xee,0x6d,0x32,0xbc,0xf3, +0x0c,0x70,0xd0,0x00,0x07,0xec,0x51,0xf7,0x03,0xbc,0x30,0xa0, +0xef,0x33,0xbc,0xff,0x0c,0x1e,0x60,0x22,0xdc,0x36,0x78,0xa0, +0xd9,0xa3,0xd6,0x07,0x0f,0x32,0x19,0x32,0x65,0x40,0xff,0x0f, +0xe8,0xf5,0x3d,0xea,0x7e,0xf0,0x5b,0x26,0xa2,0x17,0x06,0x0f, +0x31,0x19,0xf2,0x65,0xf0,0x50,0xb3,0xc7,0x1c,0x33,0x78,0x98, +0x89,0xe8,0x8b,0x01,0x3d,0x3c,0xa0,0xe7,0xf6,0x98,0x69,0x06, +0xf4,0xcc,0x80,0xba,0xce,0x70,0xde,0x83,0x47,0x9b,0x3d,0xfa, +0x64,0xf0,0x18,0x93,0xd1,0x99,0x5f,0x6c,0xf6,0xe8,0x99,0xc1, +0x63,0x4d,0x86,0x3c,0x1a,0x50,0x7f,0x03,0xce,0x7c,0x8f,0xfe, +0x19,0x3c,0xd9,0x64,0xc8,0xe4,0xc1,0x53,0x4c,0x84,0x7f,0x07, +0x38,0x7e,0x80,0xdb,0xf7,0xe8,0xa5,0xc1,0xa5,0x26,0xc2,0xc7, +0x03,0xed,0x23,0x7b,0xb6,0x47,0x3f,0x0d,0xe8,0xf9,0x81,0x7c, +0xfe,0x6c,0x3e,0xb5,0x66,0x66,0xf2,0x3d,0x7a,0x6b,0x40,0xaf, +0x0e,0xe8,0xcb,0x48,0x9f,0xcf,0x33,0x7b,0xf4,0xcd,0xe0,0xf9, +0x26,0xd2,0xdf,0xe1,0xf3,0x01,0xfd,0x97,0x21,0x07,0x07,0xb8, +0x7c,0xc0,0x1c,0xbe,0x47,0x76,0x0c,0x2e,0x37,0x19,0xe6,0x82, +0xc1,0xcb,0x4c,0xa4,0xef,0xe1,0xed,0x81,0xbc,0x4d,0xcf,0x0d, +0x5e,0x69,0x22,0x5d,0x83,0xfe,0x19,0xe0,0xeb,0x3d,0x7a,0x6f, +0x80,0xb3,0x07,0x72,0x35,0xd7,0x1d,0xe0,0xea,0x01,0x7d,0xb0, +0x47,0xef,0x0d,0x98,0xbb,0x07,0x9a,0xb7,0xe9,0xeb,0xc1,0x5b, +0xcd,0x1e,0xbd,0x37,0x78,0x9b,0xc9,0xd0,0x1b,0x03,0xbc,0x3d, +0x90,0xb7,0xe9,0xeb,0x01,0xce,0x1e,0x30,0x4b,0xef,0xd1,0x93, +0x83,0x2b,0x4d,0x46,0x7d,0xf3,0x3e,0x13,0xf1,0xac,0x03,0xe6, +0xe8,0x81,0x5c,0xad,0x1e,0xb9,0xca,0x44,0x7a,0x76,0xf5,0x0f, +0xbe,0xde,0x53,0xfd,0xab,0x67,0xe4,0x6a,0xad,0x43,0xbd,0xc1, +0xcc,0xbc,0xa7,0x3a,0x57,0x3f,0x50,0xfb,0x11,0xeb,0x19,0x7c, +0xdc,0xec,0xab,0x36,0xfe,0xda,0x44,0x5a,0xd3,0x27,0xcc,0xbe, +0xea,0xe1,0x93,0x26,0x62,0x9d,0x03,0xf5,0x00,0x73,0xe8,0xbe, +0xce,0xfd,0x73,0x26,0xa3,0x3e,0xfe,0xbc,0x89,0xb4,0x07,0xcc, +0xcf,0x03,0xbc,0xbd,0xcf,0x8c,0x35,0x28,0x9a,0x88,0x7d,0x19, +0xa8,0xbe,0xa9,0xd9,0x7d,0xad,0xb7,0x6a,0x22,0xed,0x13,0xae, +0x1e,0xe0,0xdf,0x7d,0x39,0x40,0x35,0x47,0x7d,0x45,0xe4,0xdc, +0xa0,0x6f,0xf6,0xd5,0xdf,0x03,0x13,0x91,0x79,0x83,0xa1,0xd9, +0x67,0xde,0x1a,0x8c,0x4c,0x46,0xdf,0x55,0xfd,0xe1,0xe1,0x7d, +0x66,0xaf,0x01,0x1e,0x1e,0x30,0xa3,0x65,0x70,0xca,0x40,0x35, +0x84,0x87,0xf7,0xf1,0xc2,0xe0,0x3a,0x13,0xe1,0xae,0x01,0x3e, +0x1e,0x50,0x2f,0xfb,0x72,0x03,0x3e,0x1e,0xe0,0xe1,0x88,0x77, +0xa7,0x01,0x1e,0x1e,0x90,0xff,0xfb,0xf8,0x62,0xf0,0x35,0x93, +0x91,0x87,0xfe,0xc5,0x44,0x3a,0xcf,0xaf,0x9b,0x7d,0x79,0xe2, +0x1b,0x26,0x83,0xa7,0x06,0x37,0x98,0x7d,0xdc,0x31,0xf8,0xa6, +0xc9,0xc8,0x5b,0xff,0x6a,0x22,0xea,0x60,0x80,0x9b,0x07,0x64, +0xc5,0xbe,0xbc,0xf2,0x3d,0xd0,0xbf,0x9f,0xa8,0x2e,0xc8,0x86, +0x01,0x75,0xb1,0x2f,0x7f,0xdc,0x68,0x22,0xd5,0x05,0x3e,0x1e, +0xe0,0xe1,0x7d,0xf9,0xe3,0x26,0x13,0x51,0x2b,0x03,0x39,0x14, +0x3f,0xed,0x33,0x9f,0xb0,0x1d,0x17,0x0c,0x71,0x4f,0x44,0xed, +0x0c,0x7f,0xde,0xec,0xe3,0x91,0xe1,0xcd,0x4c,0x44,0xde,0x0f, +0xd7,0xcc,0x3e,0x4e,0x19,0x72,0xde,0x43,0xce,0x36,0x22,0xfb, +0x87,0x9c,0xe5,0x90,0xfe,0xdb,0xc7,0x2f,0x43,0xfa,0x61,0xc8, +0xb9,0x65,0x70,0xeb,0x90,0x1e,0x18,0x72,0x56,0xfb,0xcc,0x2d, +0xc3,0xc8,0x64,0xd8,0xf3,0x21,0xe7,0x3d,0x64,0xbf,0xf7,0x71, +0xcf,0x90,0xfd,0x1d,0xe2,0xea,0x0c,0x7b,0x3e,0x64,0x8f,0x86, +0x7c,0xee,0xe3,0xa0,0x21,0x33,0xef,0x90,0x79,0x37,0x03,0xc3, +0x2d,0xb3,0x8f,0x53,0x86,0xdb,0x26,0xa3,0xcf,0x1d,0xb3,0x8f, +0x5f,0x86,0x9c,0xcd,0x10,0x57,0x67,0xf4,0x77,0x9c,0xc7,0x90, +0xbd,0xdf,0xc7,0x37,0x43,0x3c,0x3d,0x64,0xd6,0xcd,0xf0,0xb3, +0x21,0x73,0xe4,0x10,0x3f,0xef,0x33,0x1b,0x0c,0x6f,0x6b,0x32, +0xfa,0xf9,0xed,0xcc,0x3e,0x4e,0x1a,0xde,0xde,0x64,0x70,0xfa, +0xf0,0x0e,0x26,0xa2,0x97,0x86,0x77,0x34,0x19,0x1c,0x3f,0xfc, +0x65,0x13,0xd1,0x57,0x43,0x9c,0x3d,0x64,0xbe,0xde,0xc7,0x65, +0x43,0xed,0x23,0xb3,0x70,0x86,0xfb,0x0d,0xef,0x61,0xf6,0xc9, +0xc1,0x21,0xce,0x1e,0xb2,0x97,0x19,0xee,0x3d,0xd4,0xde,0xb1, +0x4f,0xfb,0xe4,0xe0,0xf0,0xd7,0x4d,0x44,0x4f,0x0e,0x7f,0xc3, +0xec,0x33,0x9f,0x0e,0x99,0x05,0x87,0xcc,0x6e,0x19,0xdd,0x53, +0x7b,0x87,0xab,0xf7,0xf1,0xdd,0xf0,0x7e,0x26,0xa3,0x7b,0xe2, +0xec,0x21,0xfb,0xb4,0x8f,0xef,0x86,0x0f,0x34,0x11,0x3d,0x3d, +0x7c,0x90,0xc9,0x50,0x03,0x43,0x5c,0x3d,0x64,0x0f,0xf6,0xf1, +0xe0,0x90,0x99,0x7a,0xc8,0xac,0x94,0x21,0x4b,0x86,0xbf,0x63, +0xf6,0xf1,0xf6,0x10,0x1f,0x0f,0xe5,0x61,0xe6,0xd8,0xe1,0xa3, +0xcd,0x3e,0xae,0x1e,0x3e,0xc6,0x44,0x38,0x62,0x88,0x83,0x87, +0xb8,0x77,0x1f,0xaf,0x0e,0x1f,0x67,0x22,0x7c,0x31,0x7c,0xbc, +0xd9,0xc7,0x9f,0xc3,0x4b,0x4c,0x86,0xf5,0x0f,0x9f,0x60,0x22, +0x5c,0x32,0xd4,0x7a,0x78,0xf6,0x7d,0xdc,0x3a,0x7c,0xb2,0xc9, +0x68,0x6f,0x9e,0x62,0xf6,0xf1,0xec,0xf0,0xa9,0x26,0xa3,0x7d, +0x7a,0x9a,0xd9,0xc7,0xb1,0xc3,0x4b,0x4d,0x86,0xac,0x1b,0xe2, +0xed,0x21,0xcf,0xb5,0x8f,0x4b,0x87,0x97,0x99,0x0c,0xf9,0x37, +0x7c,0x96,0x89,0x70,0xd6,0xf0,0xd9,0x66,0x9f,0xd9,0x79,0xf8, +0x1c,0x13,0xe1,0xb0,0xe1,0x73,0xcd,0x3e,0xde,0x1b,0xfe,0x91, +0xc9,0x90,0x97,0x43,0xdd,0x03,0xd7,0xee,0xe3,0xbd,0xe1,0x8b, +0x4c,0x84,0xef,0x86,0x7f,0x6c,0xf6,0x71,0xf4,0xf0,0xc5,0x26, +0xc2,0x7f,0x43,0xdc,0x3a,0xa4,0x77,0xf7,0xf1,0xdb,0xf0,0xcf, +0x4c,0xf4,0x61,0x3e,0xe9,0xbd,0x21,0xb3,0xf1,0xbe,0x7a,0x41, +0x7d,0xc2,0x67,0x46,0xbd,0xc3,0xbc,0x32,0xa4,0x76,0xf6,0xb5, +0x87,0x57,0x9a,0x8c,0x7a,0x44,0xe7,0xcd,0x59,0xed,0x6b,0x7f, +0x3e,0x60,0x22,0xe6,0xe0,0xe1,0x55,0x26,0xa3,0xba,0xd0,0xcf, +0xb8,0xf6,0xbe,0x9e,0xff,0x23,0x26,0x62,0x3e,0x1e,0x0a,0xe6, +0xe3,0x8c,0xea,0xe5,0x2f,0xcd,0x3e,0xff,0x79,0x88,0x9b,0x87, +0x38,0x39,0x43,0xdd,0x0c,0x3f,0x6e,0x22,0xfd,0x3d,0x3e,0x1e, +0xe2,0xde,0x7d,0xfd,0xee,0xa7,0x4c,0xa4,0x3f,0x7f,0xda,0xec, +0xf3,0x9d,0x21,0xf3,0xc7,0x90,0x59,0x23,0xa3,0xfa,0x62,0xb6, +0x18,0xca,0xcf,0xba,0xc6,0xe7,0x4c,0x46,0xfd,0x88,0x9b,0x87, +0x78,0x79,0x1f,0xa7,0x0f,0x0b,0x26,0xd2,0x3d,0x8b,0x26,0xa3, +0x1a,0xc4,0xcf,0x43,0x66,0xe6,0x7d,0xdd,0xa7,0x61,0x22,0xb2, +0x62,0xc8,0xec,0x3c,0x64,0x8e,0xc8,0xa8,0x36,0xdb,0x66,0x5f, +0xd7,0xee,0x98,0x0c,0xf3,0xc4,0xb0,0x6b,0x22,0x3d,0x0f,0xfe, +0x1e,0xe2,0xed,0x0c,0xb3,0xc5,0x10,0x67,0x0f,0xc9,0xff,0x7d, +0xdd,0x7f,0x6a,0x32,0xf2,0xc0,0xcc,0x44,0x7a,0xce,0x39,0xc8, +0xdb,0xcc,0x39,0xc3,0xa5,0xc9,0xc8,0x09,0xf8,0x7b,0x88,0xbb, +0xf7,0xc9,0x89,0x21,0xfe,0x1e,0xca,0xdb,0xda,0x0f,0xbc,0x3d, +0x64,0x36,0xde,0xe7,0x59,0x87,0xd7,0x9b,0x88,0x3d,0x1a,0x7e, +0xc5,0x64,0xe4,0x8d,0xaf,0x9a,0x7d,0x3d,0xcb,0x3f,0x9b,0x48, +0xeb,0xc2,0xe5,0x43,0x1c,0x9e,0x51,0x3f,0xe1,0xef,0x21,0x2e, +0xde,0xe7,0x59,0x87,0xdf,0x36,0x19,0xf5,0xd6,0x77,0x4c,0xa4, +0x3d,0x66,0x4e,0x1e,0xca,0xd5,0x7a,0xf6,0xef,0x99,0x8c,0x7a, +0x0e,0x67,0x0f,0xe5,0x6a,0x3d,0xfb,0x8d,0x26,0xd2,0x39,0xe0, +0xea,0x21,0x33,0xe9,0xbe,0x9e,0x9d,0x0c,0x1e,0x32,0x13,0x47, +0x9c,0xcd,0xf0,0x7f,0xcc,0x3e,0x19,0x33,0xfc,0xa9,0x89,0x38, +0x27,0xa2,0xeb,0x67,0xec,0x93,0x39,0xa3,0x9f,0x33,0x19,0x3c, +0x36,0xc2,0xdf,0x23,0xbc,0xbc,0xcf,0xfb,0xc0,0x88,0x39,0x7a, +0xc4,0x3c,0x95,0xa1,0xcf,0x47,0xcc,0x4f,0x23,0xb9,0x9a,0x75, +0x8c,0x6e,0x6e,0x32,0xf4,0xf9,0x08,0x67,0x8f,0xf0,0xf5,0x3e, +0x6b,0x1a,0x85,0x26,0xe2,0x8c,0x46,0x91,0xc9,0xe0,0x80,0x11, +0xde,0x1e,0x91,0x45,0xfb,0xe4,0xd3,0x08,0xbf,0x8f,0xc8,0xd5, +0x0c,0x5e,0x18,0x9d,0x37,0xfb,0xac,0x73,0xb4,0x6e,0x32,0x78, +0x61,0xb4,0x61,0xf6,0x59,0xf3,0x68,0xd3,0x64,0x70,0xc4,0x08, +0x97,0x8f,0xf0,0xf1,0x3e,0x7b,0x30,0xc2,0xd5,0x23,0x5c,0x9d, +0xc1,0x17,0x23,0x5c,0x3c,0xc2,0xbb,0xfb,0xbc,0x37,0x8c,0x8e, +0x4c,0x06,0x5f,0x8c,0xf0,0xe9,0x08,0x77,0xef,0x93,0x5b,0xa3, +0x53,0x13,0x51,0x0f,0xa3,0xdb,0x9a,0x0c,0x1e,0x19,0xe1,0xef, +0x11,0xce,0xdb,0x67,0x9e,0x19,0x5d,0x68,0x22,0xea,0x75,0x74, +0x17,0x93,0xc1,0x2f,0xa3,0xbb,0x9a,0x03,0xed,0xd3,0xdd,0x4c, +0x44,0x1d,0x8f,0xee,0x6e,0x0e,0xb4,0x67,0xbf,0x62,0x32,0x38, +0x68,0x84,0xa7,0x46,0xf4,0xf1,0x01,0xf9,0x37,0xba,0xc8,0x64, +0xf0,0xd1,0x88,0x1e,0x1e,0xd1,0x7f,0x07,0xec,0xe9,0xe8,0x3e, +0x26,0xa2,0x07,0x46,0xf4,0xde,0x88,0xba,0x3b,0xd0,0xbe,0x52, +0x43,0x23,0x6a,0x24,0xa2,0x27,0x46,0x78,0x77,0xc4,0x1e,0x1f, +0x68,0x9f,0x2e,0x36,0x19,0x7c,0x36,0x7a,0xac,0x89,0x98,0x69, +0x46,0x38,0x75,0xc4,0x9e,0x1d,0x90,0x63,0xa3,0x4b,0x4c,0x86, +0x39,0x75,0xa4,0x7d,0xc1,0xa1,0x07,0xda,0xa7,0x27,0x99,0x88, +0x7a,0x1e,0x3d,0xd9,0x64,0x98,0x61,0x47,0x5a,0x3f,0x9f,0x07, +0xec,0xe3,0x88,0x79,0x76,0xc4,0x2c,0x9b,0xd1,0xe7,0x1f,0x9a, +0x03,0xed,0xd3,0x33,0x4d,0x46,0x7f,0x77,0x99,0x89,0x98,0x9b, +0x46,0xcf,0x32,0x19,0xfd,0x1c,0x77,0x8e,0xf0,0xeb,0x81,0xf6, +0xf2,0x05,0x26,0xa3,0xdf,0x7d,0xa1,0x89,0xe8,0x97,0x11,0x8e, +0x1c,0xe1,0xc6,0x03,0xf6,0x7a,0xf4,0x62,0x13,0xd1,0xe7,0x23, +0xdc,0x38,0xc2,0xaf,0x07,0xda,0xef,0xcb,0x4d,0x44,0xdf,0x8f, +0x98,0x1d,0x47,0xcc,0x74,0x07,0xda,0xe3,0xd7,0x98,0x8c,0xee, +0xf9,0x5a,0x13,0xe1,0x85,0xd1,0xeb,0xcc,0x01,0x7b,0x3d,0x7a, +0xbd,0x89,0x70,0xc4,0xe8,0x0d,0xe6,0x40,0x7b,0xff,0x46,0x13, +0xe1,0x8b,0x11,0x33,0xd6,0x88,0xb9,0xf7,0x40,0xe7,0xc0,0x7c, +0x33,0x62,0x96,0xc9,0xe8,0xd9,0x99,0x5d,0x46,0x78,0xf8,0x80, +0xbc,0x1c,0xbd,0xcb,0x64,0xf0,0xfe,0x08,0x1f,0x8f,0x70,0xf1, +0x01,0x99,0x39,0x7a,0xaf,0x89,0x70,0xcd,0xe8,0x4a,0x93,0x21, +0x0f,0x46,0x38,0x79,0x84,0x6b,0x0f,0xf0,0xd8,0x88,0x0c,0x18, +0xe1,0xfb,0x0c,0xf9,0x30,0xfa,0xb0,0x39,0xe0,0x5c,0x47,0x1f, +0x31,0x19,0xed,0xcd,0x35,0xe6,0x40,0xe7,0xfc,0x51,0x93,0xd1, +0x3e,0xe1,0xd6,0x11,0x8e,0x39,0xe0,0xec,0x47,0x9f,0x30,0x19, +0xed,0xd9,0x27,0x4d,0x84,0x4f,0x46,0x78,0x64,0x84,0x1b,0x0e, +0xc8,0xda,0xd1,0x67,0x4c,0x84,0x43,0x46,0xf4,0xf9,0x08,0xff, +0x1e,0xa8,0x46,0xd4,0xdb,0xf4,0x5f,0x84,0xff,0x46,0xaa,0x75, +0x6a,0xe4,0x40,0x35,0xa2,0xb3,0xe7,0xdc,0x22,0x9a,0x7e,0x54, +0x37,0x07,0x3a,0xff,0x86,0x89,0x70,0xe5,0xa8,0x69,0x32,0x9c, +0xd3,0xa8,0x65,0x22,0xfc,0x33,0xd2,0x9e,0x72,0xbd,0x03,0xf5, +0x02,0x03,0xdf,0x48,0x73,0xaf,0xce,0x90,0xb9,0x77,0xc4,0xf7, +0x0e,0x54,0x33,0x53,0x93,0x21,0x43,0x47,0xf8,0x75,0x84,0x57, +0x0f,0x54,0x33,0x4b,0x93,0xe1,0x8c,0x47,0xb8,0x69,0xc4,0xbc, +0x7b,0xa0,0x73,0xc4,0x47,0x23,0xdc,0x13,0xe9,0x77,0xbf,0x6c, +0x0e,0xb4,0x3f,0xf8,0x75,0x84,0x4b,0x23,0xbe,0x3f,0xc2,0xa3, +0x23,0xe6,0xdb,0x03,0xed,0xcf,0x0d,0x26,0xa3,0x1a,0xf9,0xa6, +0x89,0x70,0xf4,0x88,0xd9,0x76,0x84,0x4b,0x0f,0x74,0xfd,0x6f, +0x9b,0x8c,0x6a,0x07,0x8f,0x8e,0x70,0xe8,0x81,0xfe,0xfc,0x5d, +0x13,0xe1,0xf2,0xd1,0xf7,0x4c,0x86,0xf7,0xaa,0x91,0x3c,0xc2, +0x7c,0x7b,0xc0,0xfb,0xc8,0x48,0x8e,0x60,0xae,0xcd,0xe8,0xcf, +0x3f,0x32,0x07,0xaa,0xaf,0x1f,0x9b,0x0c,0xd9,0x3d,0xfa,0x89, +0x39,0x50,0xad,0xfd,0xb7,0xc9,0xf0,0x6e,0x32,0xc2,0xaf,0x63, +0x7a,0xfd,0x80,0x9a,0x1b,0x33,0xe7,0x8e,0x99,0x71,0x33,0xd4, +0xee,0x98,0x39,0x77,0x8c,0x4b,0x0f,0xc8,0xf9,0x71,0xda,0x64, +0xa8,0xdd,0x31,0xfd,0x3f,0xc6,0xa5,0x07,0xd4,0xe0,0xf8,0xe6, +0x26,0xc3,0xbd,0xc6,0xb8,0x74,0xcc,0x5c,0x7b,0x40,0x2d,0x8e, +0x6f,0x69,0x32,0xdc,0x6b,0xfc,0x8b,0x26,0x22,0x87,0xc6,0xb7, +0x32,0x07,0xcc,0x01,0xe3,0x5f,0x32,0x11,0xb9,0x34,0xbe,0xb5, +0x39,0x60,0x26,0x18,0xdf,0xc6,0x64,0xf4,0x3c,0xb8,0x63,0xcc, +0xcc,0x7b,0xc0,0x7c,0x30,0x66,0xc6,0x1d,0xe3,0x89,0x0c,0xfd, +0x30,0xc6,0xa3,0x63,0xdc,0x70,0x40,0x8d,0x8e,0xf7,0x4c,0x86, +0xf7,0xc6,0x31,0x2e,0x18,0xe3,0xd3,0x03,0x6a,0x74,0x7c,0x68, +0x22,0xde,0x55,0xc6,0x38,0x75,0xac,0x79,0x98,0x39,0x66,0x8c, +0x53,0xc7,0xb8,0xf4,0x80,0x9a,0x1d,0xdf,0xd6,0x44,0x9c,0xeb, +0x98,0xfe,0x1f,0x33,0xf7,0x1e,0x90,0xdd,0x63,0x66,0xd0,0x31, +0xb3,0x6e,0x46,0x6b,0xbf,0x93,0x39,0xa0,0xbe,0xc7,0x77,0x36, +0x19,0xad,0xfd,0x42,0x73,0x40,0xad,0x8f,0xef,0x62,0x32,0xf4, +0xe4,0x18,0xd7,0x8e,0x99,0xe9,0x0e,0xa8,0xfb,0xf1,0x3d,0x4d, +0x86,0x1e,0x1d,0xff,0x5f,0x13,0x51,0x3b,0x63,0xe6,0xb0,0xb1, +0x1c,0x4b,0xbd,0x8f,0x2f,0x32,0x11,0xf5,0x34,0xa6,0xb7,0xc7, +0x72,0x2c,0xb5,0x3f,0xbe,0x8f,0x89,0xa8,0xad,0x31,0x8e,0x1d, +0xd3,0xa3,0x07,0xf8,0x76,0xcc,0x3c,0x31,0x66,0xc6,0x8d,0xa8, +0xb5,0xf1,0x83,0xcd,0x01,0x3d,0x30,0xfe,0x2d,0x13,0x51,0x7f, +0xe3,0x87,0x98,0x03,0xfa,0x61,0xfc,0x50,0x13,0x51,0x8f,0x63, +0xfa,0x79,0x4c,0x0e,0x1f,0xd0,0x1b,0x63,0xf2,0x72,0xac,0x19, +0x58,0xe7,0x45,0x4f,0x8e,0xe5,0x6a,0xfa,0x64,0x7c,0xb1,0xc9, +0xe0,0x8f,0x31,0x9e,0x1e,0xd3,0x7f,0x07,0xf4,0xcc,0x18,0x4f, +0x8f,0x71,0x72,0x06,0xa7,0x8c,0xf1,0xf1,0x98,0xac,0x38,0xa0, +0x7f,0xc6,0x64,0xc3,0x18,0xaf,0x67,0x74,0xa6,0x4f,0x37,0x07, +0xf4,0xcc,0x18,0x37,0x8f,0xe9,0xa1,0x8c,0xce,0xee,0x99,0xe6, +0x80,0x1e,0x1a,0x5f,0x66,0x32,0xf8,0x66,0xfc,0x2c,0x73,0x40, +0x2f,0x8c,0x9f,0x6d,0x22,0x66,0x8e,0xf1,0x73,0xcc,0x01,0x35, +0x3f,0xc6,0x65,0x63,0xcd,0xae,0xb8,0x69,0x8c,0x9b,0xc6,0x72, +0xb5,0x6a,0xe9,0x05,0x26,0x83,0x9b,0xc6,0xf4,0xd8,0x18,0xdf, +0x1c,0xe8,0xac,0xe9,0xff,0x31,0xfd,0x9d,0x51,0x0d,0xe0,0xe7, +0x31,0x3d,0x71,0xa0,0x3d,0x67,0xae,0x1d,0xd3,0x07,0x19,0x9d, +0xfb,0xab,0xcc,0x81,0xee,0xf5,0x6a,0x93,0xd1,0xb9,0xbf,0xc6, +0x44,0xcc,0x09,0xe3,0xd7,0x9a,0x0c,0xb3,0xd9,0x58,0xf5,0x2d, +0x27,0xeb,0xef,0x55,0x7f,0xb8,0x38,0x62,0x1e,0x1a,0xbf,0xd9, +0x1c,0xd0,0xe7,0x63,0xd5,0x16,0xb3,0x71,0x86,0xd9,0x6c,0xac, +0xba,0x91,0xab,0xe9,0xf9,0xf1,0x15,0x26,0xa3,0x3a,0x51,0x7d, +0x50,0x0b,0x07,0xf4,0xfd,0xf8,0x9d,0x26,0xd2,0x77,0xdf,0x65, +0x32,0xaa,0x19,0xed,0x3b,0x7d,0x70,0x80,0x0b,0xc6,0xda,0x3b, +0x66,0xe2,0x0c,0xee,0x1c,0x7f,0xd0,0x1c,0x30,0x3f,0x8d,0x71, +0xf6,0x58,0xae,0xc6,0xa1,0x63,0xf5,0x00,0x7b,0x70,0xc0,0x2c, +0x35,0xbe,0xc6,0x64,0x54,0x57,0xb8,0x79,0xcc,0x5a,0x23,0x3d, +0xc3,0xc7,0xcc,0x01,0x33,0xc6,0x58,0xeb,0xd4,0xcc,0x8c,0x67, +0xc7,0x7a,0x56,0x79,0x1b,0x8f,0x8c,0x3f,0x61,0x32,0xcc,0x0f, +0x63,0x3d,0x87,0x5c,0x8d,0x53,0xc6,0x9f,0x31,0x91,0x9e,0x19, +0x57,0x8f,0x99,0x1d,0x0e,0xf0,0xc8,0x58,0xb5,0x48,0xce,0x47, +0xf8,0x6b,0x5c,0x36,0x87,0x78,0x64,0x5c,0x31,0x11,0x0e,0x1b, +0x57,0xcd,0xa1,0xbc,0x52,0x33,0x19,0xbe,0x3f,0xc6,0xdf,0x63, +0x6a,0xf6,0x10,0xd7,0x8c,0x9b,0x26,0xa3,0xeb,0xa9,0x2e,0xc9, +0xba,0x43,0xbc,0x33,0xee,0x9a,0x08,0x0f,0x8e,0xc9,0x8f,0x31, +0xb5,0x79,0xc8,0x1c,0x37,0x1e,0x9a,0x08,0x27,0x8e,0x55,0x97, +0x9c,0xe1,0xa1,0xdc,0xa3,0xb3,0xd1,0x8c,0xca,0x33,0x8d,0x99, +0xe7,0xc6,0xec,0xeb,0xa1,0xdc,0x70,0x83,0xc9,0xe8,0xb9,0xf0, +0xee,0x98,0x75,0x1c,0xe2,0x88,0xb1,0x9e,0x5b,0xbe,0xd5,0x33, +0xea,0x59,0xd9,0xd7,0x43,0x79,0x42,0xfb,0xc8,0x3c,0x9a,0xd1, +0x33,0xfe,0xa7,0x39,0xc4,0x0b,0x63,0xed,0x91,0x1c,0xab,0xe7, +0xfd,0x91,0x39,0x94,0x27,0x7e,0x6c,0x22,0xbc,0x3c,0xfe,0x89, +0x39,0xc4,0x1d,0xe3,0xff,0x36,0x19,0xd6,0x33,0xfe,0x1f,0x13, +0xe1,0xec,0xf1,0x4f,0xcd,0x21,0x4e,0xa1,0x7d,0x2e,0x98,0x68, +0x76,0x65,0x9d,0x13,0xe6,0xb0,0x09,0xfb,0x77,0x88,0x5f,0x26, +0x6b,0x26,0x43,0x3e,0x4e,0xd8,0xa3,0x09,0x2e,0x3e,0xc4,0x2f, +0x93,0x94,0x89,0xbe,0xcf,0x67,0xda,0x64,0xd8,0x97,0x09,0x4e, +0x9e,0x30,0xbb,0x1e,0x32,0xdb,0x4d,0x98,0x5b,0x27,0xcc,0xac, +0x19,0xf6,0x68,0xf2,0x0b,0xe6,0x10,0xdf,0x4c,0x70,0xf3,0x04, +0x0f,0x67,0xc8,0xbd,0x09,0x0e,0x9e,0xe0,0xde,0x43,0x1c,0x34, +0xc1,0xbb,0x13,0xf9,0x96,0x2c,0x9b,0x9c,0x37,0x11,0x7b,0x31, +0x59,0x37,0x87,0x38,0x69,0xb2,0x61,0x32,0xe4,0xda,0x64,0xd3, +0x44,0xec,0xd3,0x84,0x99,0x76,0x82,0x9f,0x0f,0x79,0x77,0x9b, +0xec,0x98,0x0c,0xbd,0x3f,0xc1,0xd3,0x13,0x1c,0x7d,0x88,0xbf, +0x26,0xbb,0x26,0x62,0x4f,0x27,0x7b,0x26,0x83,0x07,0x26,0xb8, +0x7a,0x82,0x87,0x0f,0x79,0xd7,0x9f,0xe0,0xe0,0x09,0xfe,0xcd, +0xe0,0x81,0xc9,0xed,0xcd,0x21,0x8e,0x9b,0xb0,0xef,0x13,0x79, +0x98,0x7e,0x9f,0x68,0xbf,0x58,0xdf,0x21,0xbe,0x9b,0xdc,0xdd, +0x64,0xf0,0xf6,0xe4,0x57,0x4c,0xc4,0x39,0x4d,0x98,0x5d,0x27, +0xb8,0xf7,0x90,0x39,0x64,0x72,0x4f,0x13,0x71,0x6e,0x13,0xbc, +0x3b,0x61,0xad,0x87,0xbc,0xa7,0x4c,0x2e,0x32,0x11,0x99,0x39, +0xd1,0xda,0x98,0x9b,0x0e,0xf1,0xe0,0x84,0xf7,0xc0,0x89,0xfe, +0x7b,0x17,0x9c,0xf1,0xe4,0x01,0xe6,0x90,0x79,0x74,0x82,0x77, +0x27,0xf2,0x2d,0x67,0x3c,0xd1,0xbd,0x99,0x7d,0x0e,0x99,0x4f, +0x27,0xba,0x87,0xfe,0x6d,0x01,0xb7,0x4c,0x74,0x5d,0xbc,0x7a, +0x88,0x13,0x27,0x8f,0x32,0x19,0xbc,0x3d,0xd1,0x75,0x71,0xeb, +0x21,0x7e,0x9c,0xe0,0xd7,0x89,0xbc,0x8a,0xb7,0x27,0x78,0x75, +0x82,0x43,0x0f,0x71,0xe4,0x84,0x79,0x76,0xc2,0x2c,0x93,0xc1, +0xdb,0x93,0xa7,0x9a,0x43,0x3c,0x38,0x79,0x9a,0xc9,0x50,0xdf, +0x93,0x4b,0xcd,0x21,0x4e,0x9c,0xfc,0x9e,0xc9,0x50,0xef,0x93, +0xa7,0x9b,0x88,0xda,0x9a,0xe8,0x5a,0xcc,0xc0,0x87,0xf8,0x72, +0xf2,0x87,0x26,0xa2,0xce,0x26,0xcf,0x34,0x87,0x78,0x73,0x82, +0x77,0x27,0x9a,0x7b,0xe9,0x93,0x89,0xee,0xc1,0xf5,0x0e,0x71, +0xe8,0xe4,0xb9,0x26,0x43,0xcf,0x4c,0x70,0xed,0x84,0xdf,0x3d, +0xc4,0xa7,0x93,0x17,0x98,0x0c,0xfd,0x33,0xc1,0xb1,0x13,0xe6, +0x94,0x43,0x9c,0x3a,0xb9,0xdc,0x64,0xe8,0xa7,0xc9,0xcb,0x4c, +0xac,0x5a,0x7e,0xb9,0x39,0xc4,0xb5,0x93,0x57,0x98,0x0c,0xfd, +0x36,0x79,0xa5,0x39,0xc4,0xbf,0x93,0xff,0x25,0x43,0xff,0x4d, +0x70,0xf0,0x84,0x19,0xe1,0x50,0x9f,0x6f,0x30,0x19,0x7a,0x72, +0xf2,0x46,0x13,0xd3,0x1b,0x13,0x5c,0x3b,0xc1,0xb1,0x87,0xfa, +0xf9,0x5b,0x4c,0xac,0x5e,0xc1,0xb5,0x13,0x3c,0x7b,0xa8,0x9f, +0xe3,0xda,0x09,0x8e,0x8d,0xe9,0x9f,0x09,0x8e,0x9d,0x30,0xeb, +0x1e,0xea,0x77,0x99,0x73,0x27,0xcc,0xb8,0xb1,0x7a,0xe8,0xfd, +0xe6,0x10,0xe7,0x4e,0x3e,0x60,0x62,0xf5,0xd3,0x55,0xe6,0x10, +0xff,0x4e,0xfe,0xdc,0x64,0xf0,0xc1,0x04,0xd7,0x4e,0xf0,0xea, +0x21,0x3e,0x9e,0x5c,0x63,0x32,0xb8,0x68,0xf2,0x51,0x13,0xab, +0xff,0xf0,0xeb,0x04,0xaf,0x1e,0xea,0x7a,0xd7,0x9a,0x58,0xbd, +0x88,0x5f,0x27,0x78,0xf5,0x50,0xd7,0xfb,0x84,0xc9,0xe0,0xab, +0x09,0x5e,0x9d,0xe0,0xe6,0x43,0xb2,0x6f,0x82,0x7f,0x27,0xe4, +0x7c,0x8c,0xd3,0x26,0x67,0xe6,0x90,0x6b,0x4d,0x0a,0x26,0x66, +0xae,0x9a,0x14,0xcd,0xa1,0xae,0x5d,0x32,0x31,0xae,0x9b,0xe0, +0xda,0x89,0xfc,0xa9,0xfb,0x34,0x4d,0x06,0xff,0x4c,0x5a,0x26, +0xe6,0x9d,0x76,0xc2,0xdc,0x3b,0x91,0x4b,0xf1,0xf8,0xa4,0x6b, +0x32,0xf8,0x67,0x82,0x4b,0x27,0x72,0x29,0x2e,0x9f,0x0c,0x4d, +0x8c,0x3b,0x26,0xb8,0x74,0x42,0x7f,0x1f,0xea,0xb9,0xd4,0xc3, +0xf4,0x68,0x2c,0x97,0xfc,0x9d,0x39,0xc4,0x9f,0x93,0x2f,0x98, +0x58,0x5e,0xb9,0xce,0x1c,0xe2,0xcf,0xc9,0x17,0x4d,0x2c,0xc7, +0x90,0xc1,0x13,0x6a,0xfc,0x10,0xd7,0x4f,0xae,0x07,0xfd,0xdb, +0x82,0x7c,0xc5,0xfc,0x31,0x91,0xab,0x79,0xa6,0xc9,0xd7,0x4c, +0x46,0x0e,0x51,0x2d,0xe2,0xeb,0x43,0x3d,0xd7,0x37,0x4c,0xcc, +0xec,0x38,0xb9,0xc1,0x64,0xe4,0x0d,0xd5,0x19,0xfb,0x77,0x28, +0xd7,0x69,0x9d,0xac,0x23,0xa3,0x7e,0xff,0xbe,0x39,0x9c,0xf3, +0xf9,0x1f,0x26,0xa3,0xbe,0xbe,0xd1,0x1c,0xca,0x57,0x3f,0x30, +0x19,0xf5,0xb5,0xbe,0xc3,0xe7,0xa1,0xd6,0xf7,0x23,0x13,0xe3, +0xc4,0xc9,0x8f,0xcd,0xa1,0xd6,0x84,0xbf,0x27,0xf2,0xb6,0x7e, +0xae,0xbe,0x92,0xab,0x59,0x1b,0xaf,0x07,0x3f,0x23,0xc3,0xcf, +0xa7,0xd4,0xe5,0x94,0x1a,0x3c,0xc4,0x3f,0xd3,0x9b,0x99,0x18, +0xa7,0x4e,0xd7,0x4c,0x86,0xef,0x4f,0xa9,0xb9,0x29,0x73,0xf2, +0x21,0x73,0xdd,0xf4,0xe6,0x26,0xc3,0xf5,0xa6,0xb7,0x30,0x31, +0xfe,0x9d,0x72,0x4e,0x53,0x79,0x9b,0xbd,0x98,0x46,0x26,0xc6, +0xc7,0xd3,0xd8,0x64,0xb8,0xf7,0x94,0xbd,0x9e,0xca,0xd5,0xec, +0xd1,0xf4,0xd6,0x26,0xab,0x67,0xb9,0x8d,0x89,0xf5,0x89,0xb3, +0xa7,0x72,0x35,0xbd,0x33,0xdd,0x30,0x59,0x3d,0x23,0x9e,0x9e, +0xca,0xcf,0xd4,0xed,0x74,0xc7,0x64,0x79,0xee,0x29,0x7e,0x9e, +0x32,0x1b,0x1f,0xb2,0x8f,0x53,0x32,0x6f,0xca,0x6c,0x1c,0xeb, +0x1a,0x27,0xe6,0x90,0x3d,0x9c,0xe2,0xe6,0x29,0x5e,0x8e,0x75, +0xbd,0xdb,0x99,0xac,0xd6,0x8a,0x9b,0xa7,0x64,0xd4,0x21,0xfb, +0x38,0x65,0xfe,0x9d,0x92,0x4b,0x59,0xad,0x9b,0xb9,0x77,0x2a, +0x3f,0xeb,0x99,0xef,0x6e,0xb2,0xe4,0xd6,0x14,0x37,0x4f,0xf1, +0xf2,0x91,0x9e,0xe7,0x57,0x4d,0x4c,0x6e,0x4c,0xef,0x69,0xb2, +0xf4,0xe0,0x14,0x3f,0x4f,0x99,0x7b,0x8f,0x74,0x7d,0x32,0x63, +0xca,0xbc,0x9b,0xa5,0xbf,0xa6,0xbf,0x69,0x8e,0x58,0xf0,0xf4, +0xbe,0x26,0xab,0x3f,0xdf,0xcf,0x1c,0xb1,0xbf,0xd3,0xfb,0x9b, +0xac,0xfe,0x8c,0xb3,0xa7,0xcc,0xc0,0x47,0xda,0xef,0x87,0x98, +0xac,0xfe,0xfc,0x50,0x13,0xb3,0x17,0x53,0x66,0xe0,0x29,0x0e, +0x3f,0xd2,0xbe,0x3e,0xc2,0x64,0x75,0x26,0xb8,0x7c,0x8a,0xc3, +0x8f,0xa8,0xbd,0xe9,0xa3,0x4c,0x56,0xe7,0x83,0xc3,0xa7,0xcc, +0xbe,0x47,0x3a,0xaf,0x4b,0x4c,0x96,0x33,0x9b,0x3e,0xc1,0xc4, +0xda,0xd7,0x27,0x9a,0x23,0xad,0xeb,0x49,0x26,0xd6,0x1e,0x3f, +0xd9,0x1c,0xe9,0xbe,0x4f,0x31,0x31,0xb9,0x38,0xc5,0xf1,0x53, +0xdc,0x7e,0xa4,0xef,0x5e,0x6a,0x62,0x32,0x72,0x8a,0xd7,0xa7, +0x78,0xfc,0x48,0xbf,0xc3,0x7b,0xe9,0x14,0x9f,0x67,0x55,0x17, +0xb8,0x7c,0x8a,0xc3,0x8f,0xc8,0xcc,0xe9,0x65,0x26,0xab,0xe7, +0x7f,0x96,0x39,0xe2,0x2c,0xa7,0xcf,0x36,0x59,0x7a,0x70,0xfa, +0x1c,0x73,0xa4,0xb3,0x7d,0xae,0xc9,0x6a,0x5d,0x7f,0x64,0x8e, +0x38,0xef,0xe9,0xf3,0x4c,0x4c,0x1e,0x4f,0xf1,0xfd,0x94,0xb9, +0xf9,0x48,0xe7,0xcf,0xec,0x3c,0xc5,0xf1,0x59,0xfa,0x62,0xfa, +0x12,0x73,0x44,0x0e,0x4f,0x5f,0x6a,0x62,0x3d,0xc3,0xe5,0xe6, +0x88,0xf9,0x67,0xfa,0x32,0x93,0xd5,0xfe,0xe0,0xfe,0x29,0xce, +0x3f,0x22,0xb3,0xa7,0xaf,0x34,0x59,0xd5,0x2c,0xbe,0x9f,0x32, +0x63,0x1f,0x51,0x37,0xd3,0xd7,0x98,0xac,0xea,0xf6,0xb5,0x26, +0x66,0x1e,0x9b,0x32,0x63,0x4f,0xc9,0x82,0x23,0xd5,0xd1,0x1b, +0x4c,0xac,0x75,0x91,0x03,0x53,0xfc,0x7f,0xa4,0x9a,0x7a,0x8b, +0x89,0xb5,0x2e,0xfc,0x3f,0xc5,0xe5,0x47,0xaa,0x29,0xdc,0x3d, +0xc5,0xd3,0xb1,0xd6,0xf5,0x1e,0x73,0xc4,0x4c,0x32,0x7d,0xaf, +0x89,0x55,0xcb,0x57,0x9a,0x23,0xea,0x6c,0xfa,0x3e,0x13,0x53, +0xdf,0x53,0x32,0x61,0xca,0x3c,0x7d,0xa4,0xba,0xc3,0xcb,0x53, +0xe6,0xea,0xac,0x7a,0x81,0xb9,0x7a,0x8a,0xff,0x8f,0x54,0x53, +0xd7,0x98,0xac,0x7a,0x01,0xf7,0x4f,0xf1,0xfe,0x11,0xef,0x61, +0xd3,0x8f,0x99,0x58,0xfd,0x71,0xad,0xc9,0xaa,0xe7,0xf0,0xf2, +0x14,0xef,0x1e,0x31,0x2f,0x4c,0x99,0x9d,0xa7,0xb8,0x36,0xab, +0xda,0xf8,0xac,0x39,0x52,0xad,0x91,0x03,0x53,0xfc,0x9f,0x55, +0x0d,0xe0,0xfe,0x29,0x6e,0x3f,0x62,0x8e,0x98,0x96,0x4d,0xac, +0x3e,0xab,0x98,0x23,0x66,0x88,0x29,0x9e,0x9d,0xe2,0xd4,0xac, +0xea,0x84,0xd9,0x74,0x8a,0xff,0x8f,0x98,0x29,0xa6,0x4d,0x93, +0xd5,0xb9,0xe0,0xfe,0x29,0xde,0x3f,0x62,0xbe,0x98,0xe2,0xd9, +0x29,0x4e,0xcd,0x6a,0x6f,0xfb,0x26,0xd6,0x39,0xe2,0xd0,0x29, +0x33,0xe0,0x11,0x35,0x3d,0x9d,0x98,0x58,0xe7,0x88,0xdc,0xa6, +0xcc,0x80,0x59,0xed,0xe1,0xdc,0x1c,0xa9,0x96,0x71,0xe8,0x94, +0x2c,0xc8,0x6a,0x0f,0xc9,0x81,0x29,0x2e,0x3c,0x52,0x5d,0xff, +0xbd,0x89,0x75,0xd6,0xff,0x60,0x8e,0x54,0xcb,0xcc,0x43,0x53, +0x9c,0x97,0xd5,0xf3,0x33,0x03,0x4d,0xc9,0x82,0x23,0xd5,0xf5, +0xf5,0x26,0xab,0x7b,0x7d,0xc5,0x1c,0x51,0xeb,0x53,0x72,0x61, +0x4a,0x2e,0xc4,0xcc,0x77,0xd3,0xaf,0x99,0xac,0xae,0xf9,0x2f, +0x26,0x96,0x63,0xe4,0x3e,0xe6,0x85,0x23,0xf5,0x84,0x1c,0x47, +0x3e,0x67,0xf5,0xfb,0xff,0x66,0x8e,0x54,0xfb,0xe4,0xc3,0x14, +0x9f,0x65,0xf5,0xfb,0x64,0xc2,0x14,0xe7,0x1f,0xa9,0x0f,0xfe, +0xd3,0xc4,0x78,0x6a,0xfa,0x43,0x73,0xa4,0x7a,0xbf,0xc9,0x64, +0x71,0xd6,0xf4,0xbf,0x4c,0xac,0xda,0xc3,0xfb,0x53,0xb2,0xe0, +0x88,0xb9,0x67,0xfa,0x13,0x13,0xeb,0x77,0xe4,0x74,0xdc,0x76, +0xc4,0x5c,0xc4,0x36,0xfd,0x8c,0x98,0x9a,0x9c,0xe1,0xb5,0x19, +0x0e,0x3b,0xa2,0x67,0x66,0x38,0x6b,0x46,0xfe,0xc7,0x38,0x6f, +0x96,0x35,0x47,0xf4,0xc0,0xec,0x9c,0x89,0xa9,0xd5,0xd9,0xcd, +0xcd,0x11,0x3d,0x31,0xbb,0x85,0xc9,0xea,0x3a,0xb8,0x66,0x46, +0xef,0x1e,0x31,0x0b,0xcd,0x6e,0x69,0xb2,0xba,0x0e,0x7d,0x38, +0xa3,0xb7,0x8e,0xe8,0x87,0xd9,0xad,0x4d,0x8c,0x37,0x67,0xb7, +0x31,0x47,0xf4,0xc6,0xec,0xbc,0x89,0xf1,0xe8,0x8c,0x1c,0x98, +0x71,0xce,0x47,0xf4,0xc9,0x8c,0xbd,0x9e,0xb1,0x97,0x59,0xfc, +0x3b,0x63,0xbf,0x66,0xf4,0xdf,0x11,0xf5,0x3d,0xbb,0xd0,0x64, +0x75,0x1d,0xf6,0x65,0xc6,0xba,0x8f,0xa8,0xf5,0xd9,0xdd,0x4c, +0xcc,0xfb,0xc2,0xec,0xee,0x26,0xab,0x6b,0xfe,0x8a,0x89,0x99, +0xa1,0x67,0xba,0x16,0xeb,0xc8,0xea,0x77,0xf4,0x7d,0xfe,0xee, +0x88,0x9e,0x98,0x31,0x53,0xcf,0x98,0xa7,0xb3,0xfa,0xfc,0x75, +0x73,0x44,0x1f,0xcc,0xe8,0xb7,0x99,0x7c,0xae,0xbf,0xc3,0xe5, +0x33,0xe6,0xe9,0x23,0xde,0x3b,0x67,0xf4,0xcf,0x8c,0xb9,0x3a, +0xcb,0xcf,0x66,0xf4,0xc9,0x4c,0xde,0xa6,0x57,0x66,0x0f,0x31, +0x59,0x5c,0x3f,0xc3,0xd9,0x33,0x7c,0x7d,0x44,0xcf,0xcc,0x1e, +0x6e,0x62,0x5d,0xff,0x11,0x26,0x4b,0x06,0xcc,0xe8,0xa5,0x19, +0x7d,0x70,0xc4,0xdc,0x32,0x63,0xbe,0x9e,0x51,0xfb,0x59,0xf2, +0x60,0xf6,0x38,0x73,0x44,0xff,0xcc,0x1e,0x6f,0xb2,0xdc,0x7b, +0x76,0x89,0x89,0x79,0xd6,0xd9,0x13,0x4c,0x56,0xcf,0x82,0xbf, +0x67,0xf8,0xf9,0x88,0x3e,0x9b,0x3d,0xd5,0x64,0x79,0xbe,0xd9, +0xd3,0xcc,0x11,0x3d,0x36,0xbb,0xd4,0x64,0xf5,0xbc,0xbf,0x67, +0x62,0xad,0x8b,0x19,0x7c,0x26,0x6f,0xd3,0x7f,0xb3,0x67,0x98, +0x2c,0xeb,0x99,0xe1,0xef,0x19,0xee,0x3e,0xa2,0x17,0x67,0xcf, +0x34,0xb1,0xf6,0xe3,0x32,0x93,0xd5,0x5a,0xf1,0xf7,0x8c,0x7a, +0x3c,0xa2,0x57,0x67,0xd4,0xdc,0x8c,0x39,0x3b,0xc6,0x45,0xb3, +0x17,0x99,0x23,0xfa,0x72,0x86,0x9b,0x67,0x78,0x39,0xab,0xfd, +0xf8,0x13,0x13,0x6b,0x2f,0x71,0xf3,0x4c,0xbe,0xa5,0x18,0x67, +0xaf,0x34,0x59,0xed,0xd3,0x9f,0x9a,0x58,0x7b,0xa8,0x7a,0x92, +0x7b,0x99,0xdb,0x66,0xaf,0x31,0x59,0xed,0x1f,0xde,0x9d,0xc9, +0xb7,0xf4,0xf3,0xec,0x0d,0x26,0xd6,0x7e,0xe2,0xdb,0x19,0xf3, +0xf4,0x11,0x7d,0x3c,0xbb,0xc2,0xc4,0xda,0x4f,0xe6,0xea,0xd9, +0x3b,0xf8,0x7b,0x7a,0x75,0xf6,0x4e,0x13,0xe3,0xc6,0xd9,0xbb, +0xcc,0x11,0xbd,0x3a,0x7b,0xb7,0x89,0xb5,0xcf,0x38,0x78,0xc6, +0x5c,0x7c,0x44,0xef,0xce,0x98,0xaf,0x67,0xcc,0xc2,0x59,0x9d, +0x15,0x73,0xf5,0x4c,0xbe,0xa5,0x8f,0x67,0x57,0x9b,0x2c,0xb9, +0x3b,0x53,0x5d,0xe2,0xdc,0x23,0xfa,0x79,0xa6,0x5a,0x94,0x6f, +0xc9,0xe0,0x99,0x6a,0x8b,0x59,0xfa,0x88,0xb9,0x6f,0xc6,0x1c, +0x3d,0x63,0x86,0xce,0xe2,0xc3,0xd9,0xa7,0xcc,0x11,0xfd,0x3c, +0xfb,0xb4,0xc9,0xea,0xfc,0x3f,0x63,0x8e,0xe8,0xed,0xd9,0xdf, +0x98,0x2c,0x35,0x31,0xfb,0xac,0x39,0xa2,0xcf,0x67,0xb8,0x77, +0xa6,0xd9,0x5b,0xe7,0x7e,0x66,0xb2,0xaa,0x97,0x82,0x39,0xc2, +0x01,0xb3,0xa2,0xc9,0xaa,0x76,0x4a,0x26,0xd6,0x99,0xe2,0xe6, +0x99,0x9c,0x8c,0x23,0x66,0x55,0x93,0x55,0x4d,0xe1,0xe6,0x99, +0x9c,0x8c,0x27,0x66,0x4d,0x13,0xeb,0x7c,0x55,0x13,0x38,0xf7, +0x58,0xce,0x60,0xd6,0x9e,0x31,0x67,0xc7,0x3a,0xc7,0xb1,0x39, +0xc6,0x1d,0xb3,0x89,0x89,0x75,0x76,0x53,0x73,0x2c,0x97,0xcc, +0x4c,0xac,0xf3,0xc2,0xc7,0x33,0xce,0xf0,0x18,0xbf,0xcc,0xae, +0x33,0x59,0xd5,0xaf,0xce,0x0f,0x37,0x1e,0x33,0x93,0xcc,0xb4, +0xa7,0xb8,0x31,0xd6,0x3e,0x6b,0x1f,0x99,0x87,0x8f,0x99,0x25, +0x66,0x37,0x9a,0xac,0x6a,0xfc,0x07,0x26,0xd6,0x9e,0xe3,0xc5, +0x19,0xfb,0x77,0x4c,0x9e,0xce,0x6e,0x32,0x59,0x9c,0x3f,0xd3, +0x1e,0xb1,0x07,0xc7,0xcc,0x03,0xb3,0x1f,0x9b,0x2c,0xce,0x9f, +0xfd,0xc4,0xc4,0x3a,0x17,0xd6,0x39,0x67,0x5e,0x3b,0x26,0x43, +0xe7,0xcc,0x7f,0x73,0xe6,0xdd,0x98,0x59,0x69,0x9e,0x34,0xc7, +0xb8,0x66,0x9e,0x32,0x59,0xfa,0x6a,0x9e,0x36,0x31,0xbd,0x3a, +0xcf,0x98,0x2c,0x3d,0x36,0xc7,0x91,0x73,0x9e,0xfd,0x18,0x1f, +0xcd,0x23,0x93,0xa5,0xdf,0xe6,0xb1,0x89,0x39,0xd3,0x39,0xb3, +0xce,0x1c,0x37,0x1e,0xe3,0x9e,0xf9,0x2d,0x4d,0xcc,0x99,0xce, +0x71,0xe3,0x1c,0x37,0x1e,0xe3,0xa1,0xf9,0xad,0x4d,0xcc,0x39, +0xce,0xf1,0xe2,0x9c,0x99,0xeb,0x18,0x37,0xcd,0xc9,0xd7,0x39, +0xb3,0x58,0xcc,0x39,0xce,0xf3,0xe6,0x98,0xde,0x99,0xef,0x9a, +0x98,0x3d,0x9c,0xef,0x99,0x63,0xfa,0x65,0xbe,0x6f,0xb2,0xf4, +0xf9,0x9c,0xec,0x9c,0x93,0x7b,0xc7,0xf4,0xc5,0x5c,0xeb,0xd4, +0x0c,0x4c,0xcf,0xcf,0xc9,0xb6,0x39,0x8e,0x3d,0xc6,0x03,0xf3, +0x3b,0x9a,0x2c,0xfd,0x3f,0xc7,0xb5,0x73,0x3c,0x7b,0xcc,0xb9, +0xcf,0xef,0x6c,0x62,0xf6,0x7c,0x7e,0xa1,0xc9,0xe2,0x85,0xf9, +0x5d,0xcc,0x31,0x5e,0x9b,0xdf,0xd5,0x64,0xf1,0xc4,0x1c,0xef, +0xce,0xf1,0xea,0x31,0x35,0x30,0xd7,0x7a,0xf0,0x6e,0x16,0x77, +0xcc,0x7f,0xcd,0x1c,0xb3,0xe7,0xf3,0x7b,0x99,0x2c,0xee,0x98, +0x5f,0x64,0x8e,0xb5,0xe7,0xf7,0x36,0x59,0x5c,0x32,0xc7,0x47, +0x73,0xd6,0x71,0x4c,0x8f,0xcc,0xef,0x67,0xb2,0xe4,0xe3,0xfc, +0xfe,0x26,0xe6,0x7c,0xe7,0xf4,0xed,0x9c,0x1e,0x3d,0xa6,0x6e, +0xe7,0x0f,0x32,0x31,0xe7,0x3b,0xc7,0x77,0x73,0xd6,0x74,0xac, +0x67,0xa6,0xd6,0xe7,0xac,0x23,0xd6,0xd9,0x51,0xaf,0x73,0x9e, +0xeb,0x58,0xbf,0xf3,0x08,0x13,0xeb,0x8c,0xa8,0xb3,0x39,0x75, +0x74,0xac,0x3f,0xeb,0xf9,0x78,0x96,0x58,0xfb,0xf6,0x68,0x73, +0x8c,0x17,0xe7,0x8f,0x31,0xb1,0xfe,0x7c,0xb1,0xc9,0x92,0xcb, +0xf3,0xc7,0x9a,0x58,0xfb,0xa6,0x33,0xe3,0xb9,0x8e,0xf5,0xe7, +0x27,0x9b,0x2c,0x33,0xeb,0xfc,0x29,0x26,0xd6,0xbe,0xa9,0x56, +0xb8,0xcf,0xb1,0xd6,0x78,0xa9,0x89,0xb5,0x6f,0x3a,0x0f,0xae, +0x7d,0xac,0x6b,0xea,0xfb,0xfc,0x6e,0xac,0x7d,0xd3,0xcf,0xf8, +0xbb,0x63,0xe6,0xdd,0xb9,0xae,0xc5,0x67,0xac,0x7d,0x7b,0x9e, +0x39,0xc6,0xa7,0xf3,0xe7,0x9b,0xac,0x7e,0x07,0xf7,0xce,0xe5, +0x5e,0xed,0x15,0xde,0x9d,0x33,0xeb,0x1e,0xe3,0xd9,0x39,0x73, +0xee,0x5c,0xf3,0xad,0xbe,0xc7,0x7c,0x3b,0xc7,0xb7,0xc7,0x30, +0x7f,0xa5,0xc9,0xea,0x7b,0xb8,0x76,0x8e,0x67,0x8f,0xf5,0xf9, +0x6a,0x13,0xeb,0x9e,0xaf,0x31,0x59,0xae,0x3b,0xc7,0xb7,0x73, +0xb2,0xfa,0x58,0x3f,0x27,0x9b,0xe7,0xcc,0xaf,0x59,0xdd,0xe7, +0xad,0xe6,0xf8,0x4d,0x7c,0xbe,0xcd,0xc4,0x7a,0x9e,0x2b,0xcc, +0x31,0xdf,0x99,0xbf,0xdd,0x64,0xf5,0xcc,0x38,0x78,0xce,0x4c, +0x7b,0xac,0x6b,0x5c,0x69,0xb2,0x7a,0xce,0xf7,0x99,0x58,0xcf, +0xc9,0x4c,0x3b,0xc7,0xbd,0xc7,0xfa,0xdd,0xab,0x4c,0x96,0xac, +0x98,0xe3,0xe0,0x39,0xee,0x3d,0xc6,0xd7,0xf3,0xab,0x4d,0x96, +0x75,0xce,0x71,0xef,0x9c,0x39,0xf6,0x98,0xeb,0xce,0xaf,0x35, +0x59,0xad,0xfb,0xaf,0x4c,0xac,0x7d,0xfa,0xb8,0x39,0xc6,0xdf, +0xf3,0xbf,0x36,0xb1,0xd6,0xfe,0x09,0x73,0xcc,0x75,0xe7,0x9f, +0x34,0x59,0xf6,0x6b,0x8e,0x9b,0xe7,0x78,0xf6,0x58,0xf7,0x21, +0x9b,0xe7,0x9a,0x75,0xb5,0x7f,0x67,0xe6,0x98,0x19,0x7a,0x5e, +0x30,0xb1,0xf6,0xa7,0x68,0xb2,0xda,0x57,0x5c,0x3b,0xc7,0xb3, +0xc7,0x3c,0xd3,0x1c,0xd7,0xce,0xe5,0x58,0xed,0x6d,0xcd,0xc4, +0xda,0xb7,0xba,0xc9,0x6a,0x3f,0x1b,0xe6,0x58,0xcf,0xdb,0x34, +0x31,0x99,0x39,0xc7,0xbd,0x73,0xb2,0xf7,0x58,0xcf,0xde,0x05, +0xcd,0xc3,0x3a,0x93,0xbe,0x39,0xd6,0xf3,0x0e,0x4c,0x96,0xf7, +0x8f,0xf9,0xd0,0x1c,0xeb,0xd9,0x47,0x26,0x4b,0x46,0xce,0xf1, +0xf4,0x5c,0x4e,0x26,0x63,0xe6,0x33,0x93,0x25,0x2f,0xe7,0x38, +0x79,0xce,0x7c,0x7c,0x4c,0xae,0xcc,0x97,0x26,0x4b,0x7e,0xce, +0x57,0x26,0xd6,0x79,0x31,0x33,0xcf,0xe5,0x6d,0xed,0xc1,0x75, +0x26,0xab,0xb3,0xc6,0xdb,0x73,0x66,0xe6,0x63,0xed,0xc7,0x97, +0x4c,0x56,0x67,0xcd,0xec,0x3c,0x67,0x66,0x3e,0xd6,0x1e,0x5c, +0x6f,0x62,0x9d,0x2f,0xf3,0xf2,0x9c,0xec,0x3d,0x66,0x2f,0xe6, +0xcc,0xc8,0x73,0xf2,0x36,0xab,0x1a,0xf8,0xba,0x39,0xd6,0x1e, +0x7c,0xc3,0xc4,0x3a,0xeb,0x1b,0xcc,0xb1,0xf6,0xe3,0x9b,0x26, +0xd6,0x59,0xff,0x2b,0x30,0x2b,0x1f,0x6b,0x6f,0xc8,0xd4,0xb9, +0x66,0x66,0xd5,0x20,0x33,0xf3,0x5c,0x79,0xa1,0xfd,0xb8,0xd1, +0x64,0x55,0x83,0x64,0xc5,0x9c,0x9c,0x38,0xd6,0x7e,0xfc,0xd0, +0xc4,0xaa,0x8d,0x9b,0x4c,0x56,0xb5,0x49,0x5e,0xcc,0x99,0x8d, +0x8f,0xc9,0x30,0xb6,0xe3,0x82,0x05,0x33,0x71,0x96,0xda,0x5b, +0xfc,0xbc,0x39,0x66,0x0f,0x16,0x37,0x33,0x59,0x6a,0x6f,0xb1, +0x66,0x8e,0xd9,0x97,0x45,0xc2,0x64,0x99,0x1b,0x16,0xe4,0xc6, +0x82,0xbc,0x38,0x66,0x8f,0x16,0x69,0x13,0x53,0x4b,0x8b,0x8c, +0x39,0xe6,0x7d,0x63,0x91,0x35,0x31,0xb5,0xb4,0x38,0x67,0x8e, +0xd9,0xc7,0x05,0x33,0xf5,0x82,0x19,0x3a,0xcb,0xdc,0xb1,0x08, +0xcd,0x31,0x7b,0xba,0x20,0x4f,0x16,0xe4,0x48,0x96,0xde,0x58, +0xfc,0x82,0x39,0x66,0x8f,0x17,0xe4,0xc9,0x42,0x33,0x36,0x7d, +0xb2,0xf8,0x45,0x73,0xcc,0xfb,0xca,0xe2,0x56,0x26,0x4b,0xaf, +0x2c,0xc8,0x96,0x05,0xf3,0xf4,0x31,0xe7,0xb1,0xe0,0xdd,0x6f, +0xc1,0xbb,0x5d,0x96,0xfa,0x5f,0x6c,0x99,0x63,0xce,0x61,0x41, +0xce,0x2c,0xc8,0x97,0x2c,0x75,0xbe,0xc8,0x9b,0x63,0xce,0x66, +0xb1,0x6b,0x62,0x5c,0xb1,0x20,0x5b,0x16,0xca,0x14,0xe6,0x9a, +0xc5,0x81,0x89,0xa9,0xf3,0xc5,0xa1,0x39,0xe6,0xfc,0x16,0x64, +0xf0,0x82,0x21,0x21,0xcb,0xbc,0xb3,0x20,0x77,0x17,0xca,0x1d, +0xce,0x72,0x71,0x5b,0x93,0xa5,0x17,0x16,0xe4,0xcf,0x82,0xec, +0x39,0xe6,0x2c,0x17,0xe4,0xcf,0x42,0xb9,0x43,0xaf,0x2e,0xc8, +0x9d,0x05,0xf9,0x71,0xcc,0x1c,0xb0,0x60,0x66,0x5f,0x30,0xab, +0x67,0xa9,0xf9,0xc5,0x3d,0xcc,0x31,0x67,0xbb,0x20,0x5b,0x16, +0xca,0x14,0x7a,0x75,0x41,0x9e,0x2c,0x94,0x1d,0x9c,0xf7,0xe2, +0xde,0x26,0xa6,0xbf,0x16,0x64,0xc7,0x82,0xf9,0xf4,0x98,0xf3, +0x5e,0x30,0x83,0x2e,0x34,0xb7,0x53,0xf3,0x0b,0xf2,0x72,0xa1, +0x4c,0xe1,0xbc,0x17,0xf7,0x33,0x31,0xbe,0x5b,0x90,0x27,0x0b, +0xe5,0x08,0xb3,0xc2,0xe2,0x41,0x26,0xa6,0x1f,0x17,0xe4,0xc8, +0x42,0x79,0xc1,0x8c,0xb0,0x20,0x2b,0x16,0xe4,0x44,0x4c,0xdf, +0x2d,0x7e,0xc7,0x9c,0xe8,0xfc,0x1f,0x69,0x62,0xfa,0x6e,0xf1, +0x28,0x73,0xa2,0x5a,0xf8,0x5d,0x13,0xd3,0x77,0x0b,0x32,0x64, +0x41,0x5e,0x9c,0xa8,0x2e,0x1e,0x6b,0xb2,0xcc,0x73,0x0b,0xf2, +0x62,0x41,0x9e,0x9f,0xa8,0x2e,0x2e,0x31,0x31,0xfd,0xb8,0x20, +0xcb,0x17,0xf4,0xfd,0x89,0xea,0x82,0xde,0x5b,0xe8,0xdf,0x31, +0xe8,0xcd,0x05,0xfd,0xb0,0xa0,0xf6,0x4f,0xb4,0xf7,0x97,0x9b, +0x2c,0xfd,0xb8,0x50,0x6d,0x51,0x47,0x27,0xda,0xfb,0x57,0x98, +0x98,0xfe,0x5d,0xbc,0xd2,0x64,0x71,0xd6,0x42,0xfb,0xc2,0xb3, +0x9c,0xe8,0x4c,0x74,0x0f,0x7e,0x9e,0xa5,0x67,0x17,0x6f,0x32, +0xb1,0x3e,0xe9,0xdb,0x85,0x7c,0x8e,0xbf,0x16,0xf4,0xd2,0x82, +0xbe,0x39,0xd1,0x99,0xbc,0xdd,0xc4,0xfa,0xf9,0x3b,0x4c,0x16, +0x9f,0x2d,0xde,0x69,0x4e,0x98,0x09,0x16,0xea,0x07,0x6a,0x3f, +0x4b,0x5f,0x2f,0x54,0xbb,0x38,0xf8,0x84,0xf9,0x60,0x71,0xa5, +0xc9,0xe2,0xb8,0x85,0x6a,0x17,0xa7,0x9f,0x70,0xc6,0x8b,0x0f, +0x98,0x98,0xde,0x5f,0x5c,0x65,0xb2,0xf4,0xfe,0x42,0xf5,0x4a, +0x7d,0x9d,0x70,0xf6,0x0b,0x66,0xe7,0x05,0x75,0x94,0xa5,0xf7, +0x17,0x7f,0x69,0x4e,0x38,0xef,0xc5,0xc7,0x4c,0xb6,0xcd,0xe7, +0xb5,0x26,0xe6,0xb9,0x17,0x7f,0x65,0xb2,0xb8,0x72,0xa1,0xba, +0xc1,0x8b,0x27,0xaa,0x8b,0x4f,0x99,0x58,0x6b,0xfa,0xb4,0x39, +0xa1,0x26,0x16,0xcc,0xd7,0x0b,0xcd,0xd5,0x38,0x75,0xa1,0xfd, +0xc5,0xf3,0x27,0xaa,0x91,0xcf,0x99,0x2c,0x6e,0x5d,0x7c,0xde, +0xc4,0xe4,0xd9,0xe2,0xcc,0x9c,0xa8,0x76,0x0a,0x26,0x66,0x8f, +0x16,0x45,0x93,0xc5,0x39,0x0b,0x7c,0xb7,0x60,0x1d,0x27,0xaa, +0x29,0x3d,0x37,0x7e,0xca,0xe2,0xe2,0x45,0xdb,0x9c,0x30,0x8b, +0x2c,0x3a,0x26,0xd6,0xbe,0xea,0xde,0xf2,0x39,0x6e,0x5e,0xe8, +0x7e,0xb8,0xe7,0x84,0x39,0x65,0x31,0x35,0x59,0x7d,0xce,0x4c, +0xac,0xbd,0xc7,0xd5,0x0b,0xe4,0x74,0xa2,0xba,0x5b,0x9a,0xac, +0x7e,0x8e,0xa7,0x17,0xf8,0xe9,0x44,0x75,0xf7,0x05,0x13,0xeb, +0x7c,0xae,0x33,0x59,0x7d,0x0f,0x57,0x2f,0x70,0xc0,0x09,0x73, +0xcc,0xe2,0x7a,0x13,0xeb,0xdc,0xbe,0x62,0xb2,0x5c,0x77,0xf1, +0x55,0x73,0xc2,0xec,0xb4,0xf8,0x67,0x93,0xd5,0x7d,0xbe,0x66, +0x4e,0x98,0x6f,0x16,0xff,0x62,0x62,0xb9,0x4e,0x3d,0x4f,0xbf, +0x9e,0x30,0xeb,0x2c,0x98,0xdb,0x17,0xfa,0x37,0x0d,0x3d,0xcb, +0xbf,0x99,0x58,0xb5,0xf0,0x5d,0x73,0xc2,0x7c,0xb3,0xf8,0x9e, +0xc9,0xea,0x19,0x71,0xf6,0x82,0x9e,0x3e,0x61,0xde,0x59,0xfc, +0x87,0x89,0xa9,0x9b,0xc5,0x8d,0x26,0xab,0x67,0xc7,0xdb,0x0b, +0xe6,0xf6,0x13,0xe6,0xa0,0x05,0x33,0xfb,0x82,0x5e,0xcc,0x6a, +0x1d,0xff,0x63,0x4e,0x98,0x4f,0x16,0x3f,0x35,0x59,0xfc,0xc9, +0xa3,0xfe,0x8c,0x13,0x66,0x8f,0xe5,0xcf,0x99,0x2c,0xfe,0x5c, +0xe2,0xef,0x25,0xde,0x3e,0x61,0xae,0x58,0xae,0x99,0x98,0xba, +0x5c,0x26,0x4c,0x16,0x97,0x2e,0x93,0x26,0xa6,0x4e,0x97,0x29, +0x73,0xc2,0x6c,0xb0,0xc4,0xdf,0x4b,0xcd,0xf9,0x78,0x75,0x89, +0xb3,0x97,0xf4,0xe5,0x09,0x59,0xbf,0xbc,0xb9,0x89,0xa9,0xe9, +0xe5,0x2d,0x00,0x57,0x9f,0xd0,0xb7,0xcb,0xc8,0xc4,0xd4,0xf7, +0x12,0x67,0x2f,0xf1,0xef,0x09,0xbd,0xbb,0x64,0xae,0x5f,0xea, +0xdf,0xba,0xa9,0xf5,0xe5,0x79,0x73,0x42,0x5f,0x2e,0xd7,0x4d, +0x8c,0x93,0x97,0x1b,0xe6,0x04,0x2f,0x2d,0x37,0x4d,0x96,0x73, +0x5a,0xe2,0xe9,0x25,0x1e,0x3e,0xc1,0x4b,0xcb,0x3d,0x13,0x33, +0xab,0x2c,0xf1,0xf1,0x92,0x59,0xfa,0x84,0x7e,0x5e,0x5e,0x64, +0xb2,0x9c,0xe5,0xf2,0xde,0x26,0xc6,0xe7,0x4b,0x7c,0xb8,0xc4, +0x87,0x27,0xf4,0xd3,0xf2,0x3e,0x26,0xcb,0x19,0x2f,0xe9,0x81, +0x25,0x3e,0x3c,0xa1,0xaf,0x96,0xf7,0x33,0x31,0x33,0xd4,0x92, +0xda,0x5d,0x32,0x37,0x9f,0xd0,0x4b,0x4b,0xea,0x75,0xa9,0x7f, +0x73,0xe6,0x9d,0x76,0xf9,0x30,0x73,0x42,0xdf,0x2c,0x1f,0x6e, +0x62,0x5d,0xf3,0x11,0xe6,0x84,0x5e,0x5a,0xfe,0xb6,0x89,0xe9, +0xdb,0x25,0x8e,0x5c,0x52,0x6b,0x27,0xf4,0xd6,0xf2,0x62,0x93, +0xa5,0x9e,0x96,0x8f,0x35,0xb1,0xee,0x8b,0x03,0x97,0x72,0x20, +0xfd,0xb3,0xbc,0xc4,0x64,0xa9,0xb3,0x25,0x0e,0x5c,0x52,0x83, +0x27,0xcc,0x4f,0xcb,0x27,0x99,0x98,0x9e,0x5f,0x3e,0xd9,0x64, +0xa9,0xbf,0x25,0x33,0xf5,0x92,0xda,0x39,0xc1,0x39,0xcb,0x67, +0x98,0x18,0x17,0x2c,0xff,0xc0,0x64,0xa9,0xcd,0xe5,0x1f,0x9a, +0x13,0xfa,0x6d,0xf9,0x4c,0x93,0x25,0x8f,0x96,0x97,0x99,0x13, +0xfa,0x6f,0xf9,0x2c,0x13,0x6b,0xbd,0xcc,0xcd,0x4b,0xe6,0xc4, +0x13,0x7a,0x72,0xa9,0xb3,0xe7,0x9c,0xb3,0xcc,0x1f,0x4b,0x66, +0xb5,0xa5,0x9c,0x4c,0x7f,0x2e,0x5f,0x6c,0xb2,0xcc,0x20,0x4b, +0xdc,0xbc,0xe4,0x6c,0x4f,0xe8,0xc1,0x25,0x6e,0x5e,0xca,0xc9, +0xf4,0xc3,0xf2,0x65,0xe6,0x84,0x9e,0x5a,0xbe,0xdc,0x64,0xe9, +0x8d,0x25,0x6e,0x5e,0x72,0x86,0x27,0x14,0xe9,0x92,0x2c,0x59, +0x32,0x4f,0x67,0xe9,0x93,0xe5,0xeb,0xcc,0x09,0xb5,0xbd,0x7c, +0xbd,0xc9,0xd2,0x27,0xcb,0x37,0x98,0x13,0x66,0x86,0xe5,0x1b, +0x4d,0x96,0xbe,0x59,0xe2,0xeb,0x25,0x4e,0x3a,0x51,0xcd,0x5f, +0x61,0xb2,0xf4,0xd2,0xf2,0xed,0x26,0xc6,0x7f,0x4b,0x7c,0xb1, +0x94,0x9f,0x55,0x0f,0xef,0x32,0x31,0xf3,0xee,0x92,0xbe,0x5d, +0xd2,0x97,0x27,0x3a,0x0b,0xfa,0x6d,0x49,0x1f,0xc4,0xe4,0xe9, +0x52,0x75,0x4f,0x4d,0x9d,0x68,0x6f,0x55,0x37,0xd4,0x42,0x8c, +0x37,0x97,0x1f,0x36,0x27,0xf4,0xf7,0x12,0x37,0x2f,0x39,0xf3, +0x58,0x35,0xf0,0x51,0x93,0xa5,0x6f,0x97,0x3a,0x4b,0xae,0x7d, +0xa2,0x35,0xea,0x5a,0xb8,0x37,0xd6,0xb9,0xeb,0xfb,0xf2,0xad, +0x7e,0xe7,0x33,0x26,0xc6,0xad,0x4b,0xd5,0x8a,0x7c,0x4b,0x7f, +0x2f,0x3f,0x67,0x62,0x3c,0xbb,0x14,0x64,0xcb,0x09,0x19,0xbd, +0xd4,0xb9,0x6a,0x4e,0xc6,0xb9,0xcb,0xba,0x39,0xa1,0xcf,0x97, +0x0d,0x13,0xab,0x66,0x9a,0xe6,0x54,0x7d,0xdf,0x32,0x31,0x0e, +0x5e,0xe2,0xda,0x25,0x3e,0x3e,0x95,0x03,0x86,0x26,0x8b,0x53, +0x96,0x23,0x13,0xab,0xae,0x70,0xee,0x92,0xf3,0x3c,0x55,0xaf, +0x4f,0x4d,0x56,0xcf,0xa3,0xb3,0xe4,0xdc,0x4e,0xe9,0xf9,0xe5, +0xd2,0x64,0x99,0x25,0x96,0x78,0x6d,0xc9,0x7e,0x9f,0xaa,0xef, +0xbf,0x64,0xb2,0xcc,0x91,0xcb,0x7f,0x34,0x31,0xcf,0xbd,0xfc, +0xb2,0x39,0x65,0x2e,0x5b,0xfe,0x93,0xc9,0x6a,0x2d,0xd7,0x9b, +0x53,0x66,0xb5,0xe5,0x57,0x4c,0xac,0xf5,0xa9,0x0f,0xa9,0xc7, +0x53,0xe6,0xb6,0xe5,0x0d,0x26,0xcb,0x1c,0xba,0xfc,0xa6,0x89, +0x59,0xff,0x52,0x75,0x46,0x4d,0x9d,0xca,0x13,0xdf,0x36,0x59, +0x66,0x95,0xa5,0xf6,0x9a,0xda,0x39,0x95,0x27,0xbe,0x6b,0x62, +0xed,0xd3,0xf7,0x4c,0x16,0x6f,0x2e,0x55,0x2b,0x3c,0xe3,0x29, +0xf3,0xdd,0xf2,0x26,0x93,0xc5,0xa3,0xcb,0xff,0x32,0xb1,0xf6, +0xf2,0x47,0xe6,0x94,0xb9,0x62,0xf9,0x63,0x93,0xc5,0xb3,0xcb, +0x9f,0x98,0x53,0x66,0xbb,0xe5,0x7f,0x9b,0x2c,0xce,0x5d,0xc2, +0x0a,0x97,0x9e,0x32,0x6f,0xac,0xd6,0x4c,0x96,0x73,0x59,0x25, +0x4c,0xcc,0x79,0xac,0xf0,0xe8,0x8a,0x7d,0x3d,0x65,0xce,0x5b, +0xa5,0x0d,0xda,0xbc,0x60,0xc5,0x9e,0xae,0x70,0xe8,0x29,0x33, +0xdf,0xea,0x9c,0x89,0x39,0xb3,0xd5,0xcd,0xcd,0x39,0xce,0x6b, +0x85,0x4b,0x57,0xb8,0xf4,0xf4,0x4e,0x7c,0x46,0x26,0xe6,0x3c, +0x57,0xb8,0x74,0xc5,0xbe,0x9e,0x32,0x57,0xac,0xd8,0xc7,0x15, +0x7b,0x76,0x0e,0xaf,0xaf,0x6e,0x65,0x4e,0x99,0x19,0x57,0xbf, +0x64,0xce,0xe9,0xb9,0x6e,0x6d,0x4e,0x99,0x25,0x56,0xb7,0x31, +0xe7,0xf4,0x8c,0x78,0x77,0xc5,0x7e,0x9c,0x32,0x53,0xae,0x76, +0xcc,0x39,0x3d,0x6f,0xce,0xc4,0xb8,0x62,0xc5,0xfc,0xbb,0xc2, +0xb7,0xa7,0xf8,0x74,0xb5,0x67,0x62,0x5c,0xb1,0xc2,0xb7,0x2b, +0xf6,0xe3,0x14,0xa7,0xae,0x8e,0x4c,0x8c,0x2b,0x56,0xcc,0xbc, +0x2b,0x66,0xd9,0x53,0x9c,0xba,0xd2,0xda,0x98,0x9b,0x62,0xf2, +0x7c,0x75,0x27,0x73,0xca,0x4c,0xb9,0xba,0xb3,0x89,0xa9,0xc5, +0xd5,0x85,0xe6,0x94,0x19,0x73,0x75,0x17,0x73,0x8e,0xfd,0x5a, +0xdd,0x15,0x98,0x71,0x4f,0x1f,0xcc,0xe7,0x3d,0x81,0x59,0xf7, +0x9c,0xf6,0x8f,0x59,0x77,0x85,0xe7,0x4f,0xf1,0xec,0xea,0x22, +0x73,0x8e,0x7d,0x5c,0xe1,0xf8,0x15,0xcf,0x72,0x8a,0x6b,0x57, +0xbf,0x61,0x62,0xea,0x7b,0x75,0x1f,0x73,0x4e,0x7b,0xac,0x67, +0x62,0xbe,0x3d,0x65,0x36,0x5d,0xe9,0x39,0xb8,0xe7,0x39,0xed, +0xf7,0x83,0xcd,0x29,0xfe,0x5d,0xe1,0xfb,0x15,0x9e,0x3f,0xc7, +0xbb,0xc7,0x0a,0xc7,0xaf,0xb8,0xcf,0x29,0x2e,0x5e,0xe1,0xf2, +0x15,0xd7,0x8e,0xe9,0x95,0xd5,0x23,0xcd,0x29,0x2e,0x5e,0xe9, +0x5a,0xcc,0x1a,0xe7,0x74,0x26,0xcc,0xb7,0x2b,0x3c,0x7f,0x8a, +0x97,0x57,0x17,0x9b,0x73,0x9c,0xd3,0x0a,0xc7,0xaf,0xf0,0xfb, +0xe9,0x53,0xf9,0x7c,0xbc,0x89,0xe9,0xb1,0xd5,0x25,0xe6,0x9c, +0xce,0xf0,0x09,0x26,0xa6,0xe7,0x56,0x4f,0x34,0xa7,0x97,0xf2, +0xf9,0x24,0x13,0x33,0xb7,0xac,0x74,0x5d,0x5c,0x7f,0x8e,0xf3, +0x5e,0x3d,0xd5,0x9c,0xfe,0x1e,0x9f,0x4f,0x33,0x31,0xbd,0xba, +0xd2,0x77,0xf8,0xbb,0x73,0x3a,0xff,0xa7,0x9b,0x53,0x7d,0xfe, +0xbe,0x39,0xa7,0xf3,0x7f,0x86,0x89,0xe9,0xe7,0xd5,0x1f,0x98, +0x73,0xaa,0x85,0x3f,0x34,0x31,0xfd,0xbd,0x7a,0xa6,0x39,0xd5, +0xf7,0x2e,0x33,0xe7,0xe8,0xbb,0xd5,0xb3,0x4c,0xcc,0x8c,0xb5, +0x7a,0xb6,0x39,0xd5,0xf5,0x9e,0x03,0xcc,0x1a,0xe7,0xc8,0xec, +0x15,0xb3,0xc5,0x8a,0xec,0x38,0xd5,0xb5,0x5f,0x60,0xce,0x51, +0x67,0x2b,0x32,0x64,0x45,0x7e,0x9c,0xea,0xda,0x64,0xc8,0x8a, +0xec,0x38,0xa7,0xba,0x23,0x3b,0x56,0xe4,0xc1,0xa9,0xae,0xcd, +0x9c,0xbe,0x62,0x16,0x38,0xa7,0xba,0x7b,0x95,0x39,0xd5,0x35, +0xc8,0x8a,0x15,0x19,0x71,0x4e,0x35,0xf8,0x3a,0x73,0xaa,0xeb, +0xbd,0xde,0x9c,0xa3,0x16,0x57,0x6f,0x30,0xa7,0xdc,0x63,0xf5, +0x46,0x13,0x33,0x5f,0xad,0xde,0x64,0x4e,0x75,0x4f,0x66,0xf7, +0x15,0xb3,0xf6,0x39,0xd5,0xec,0x9f,0x99,0x98,0xf9,0x6a,0xc5, +0x4c,0xbc,0x22,0x47,0x4e,0x79,0xa6,0xd5,0x15,0xe6,0x1c,0xef, +0x08,0x2b,0x32,0x64,0x45,0x76,0x9c,0x92,0x6d,0xab,0x77,0x99, +0x98,0x6c,0x5a,0x91,0x1d,0x2b,0xe6,0x9a,0x53,0xb2,0x6d,0xc5, +0x1c,0xb3,0x62,0x5e,0x8f,0xc9,0xa6,0xd5,0x07,0xcd,0x29,0x99, +0xb6,0xfa,0x90,0x39,0x87,0x94,0x57,0x57,0x9b,0x53,0xd6,0xb0, +0xfa,0x0b,0x73,0x8e,0xf7,0xc0,0x15,0x79,0xb2,0x22,0x33,0x4e, +0xb5,0xa6,0x8f,0x99,0x18,0x9f,0xae,0xae,0x35,0xe7,0x78,0x47, +0x5c,0x91,0xc7,0x2b,0x9c,0x7a,0xaa,0x67,0xaf,0x9a,0x73,0xf2, +0x09,0x4e,0x5c,0xd1,0xa3,0xa7,0xba,0xa7,0x7a,0x92,0xfe,0x3b, +0x47,0xef,0xad,0xd4,0x6f,0x72,0x3e,0x99,0xb4,0x1a,0x9a,0x73, +0xf4,0xe1,0x4a,0xfd,0x40,0xfd,0x9e,0xea,0x3e,0x13,0x13,0xe3, +0xeb,0xd5,0xd4,0x9c,0x53,0x8f,0xce,0x4c,0x8c,0xbb,0x57,0x73, +0x73,0x4e,0xfd,0xaa,0xda,0xa2,0x5e,0x4e,0xf5,0x2c,0x2b,0x13, +0xe3,0xf4,0xd5,0xdf,0x99,0x53,0x32,0x6f,0xa5,0xbd,0x66,0x6f, +0xce,0xfd,0xff,0x6c,0x9d,0x65,0x58,0x94,0xdf,0xf7,0xf5,0xd7, +0x5a,0xd8,0x63,0x01,0x8a,0x85,0x2d,0x16,0x43,0xd8,0x85,0x8a, +0x85,0xdd,0xdd,0xdd,0x62,0x77,0x77,0x77,0x27,0x88,0xa2,0x60, +0xa2,0xd8,0xdd,0xdd,0xc1,0x8c,0xdd,0xa2,0x58,0x5f,0xbb,0xe3, +0x7f,0xee,0xdf,0xbc,0x79,0x5e,0x3c,0x5e,0xd7,0xc7,0xc1,0x19, +0x26,0xee,0xb3,0xf7,0x5e,0x6b,0x1f,0xe7,0xbe,0xcf,0xb1,0x6a, +0xfa,0x8e,0x0b,0x5f,0xe3,0x81,0x71,0x77,0x5d,0xd8,0xcc,0x7c, +0x27,0xee,0x9e,0x0b,0x77,0xe3,0x01,0x71,0xf7,0x5d,0xd8,0x2c, +0xbd,0xb2,0xde,0xcf,0xbc,0x9e,0xaf,0xf1,0xcb,0x38,0xeb,0x31, +0xe3,0x0b,0x36,0x4b,0xaf,0x9e,0xb8,0x70,0x37,0xff,0x8e,0x33, +0x3e,0x1d,0x67,0x3c,0xd9,0x66,0x74,0x21,0xce,0xf4,0x34,0x71, +0x96,0x5f,0x18,0x4f,0x8d,0x7b,0xe9,0xc2,0x66,0x69,0x83,0xf1, +0x8a,0x38,0xe3,0x13,0xbe,0xc6,0x57,0xe3,0x5e,0xbb,0x70,0xb7, +0x5e,0xe3,0x8d,0x0b,0x9b,0xd1,0x8e,0x38,0xe3,0x17,0x71,0xc6, +0x87,0x7d,0x8d,0xef,0xc6,0x19,0x2f,0x8c,0x33,0x5e,0x67,0xb3, +0xb4,0xe4,0xab,0x0b,0x5f,0xe3,0x89,0x71,0xc6,0x2b,0xe2,0x8c, +0x2f,0xd8,0x2c,0x7d,0x33,0x9e,0x10,0x67,0x34,0xdf,0xd7,0xc4, +0x20,0xee,0xaf,0x0b,0x77,0xeb,0xb3,0x18,0xad,0x77,0x18,0x9d, +0xb6,0x19,0x5d,0x71,0x18,0xfd,0x75,0x58,0x5e,0x60,0x7c,0xc4, +0x91,0xc8,0x85,0xcd,0xf4,0x91,0x0e,0xa3,0xb3,0x0e,0xa3,0xa9, +0xbe,0x46,0xdb,0x1d,0x49,0x5d,0xb8,0x9b,0xbe,0xce,0x91,0xcc, +0x85,0xcd,0xf4,0x98,0x0e,0xe3,0x05,0x0e,0x4b,0xe7,0x4d,0x2c, +0x1d,0x46,0xe3,0x1d,0x46,0x4b,0x6c,0x35,0xcc,0xad,0x87,0x0b, +0x5f,0x13,0x33,0x87,0xd1,0x11,0x87,0xa5,0xf3,0x46,0xb7,0x1c, +0x46,0xe3,0x1d,0xa6,0x16,0x7d,0x4d,0xfc,0x1c,0xde,0x2e,0x6c, +0x46,0xb7,0x1c,0x59,0x5d,0xb8,0x9b,0x31,0x72,0x98,0x3e,0xd9, +0x61,0x69,0xbb,0x89,0x93,0x23,0x87,0x0b,0x9b,0xe9,0x61,0x1d, +0x46,0xd7,0x1d,0x96,0x9e,0x9b,0x58,0x39,0xf2,0xb8,0xb0,0x19, +0xbd,0x73,0x18,0x3d,0x77,0x98,0x3c,0xf5,0x35,0x31,0x73,0xd8, +0x5d,0xb8,0x9b,0x31,0x76,0xf8,0xb9,0xb0,0x19,0x2d,0x74,0xf8, +0xbb,0xf0,0x35,0xb1,0x70,0x98,0x3c,0x73,0x58,0xda,0x6e,0x62, +0xe0,0x30,0x79,0xe3,0x30,0xb1,0xf5,0x35,0xe3,0xec,0x30,0xb1, +0x74,0x98,0xb8,0xd9,0x4c,0x4f,0xec,0x28,0xed,0xc2,0xd7,0xc4, +0xc6,0x51,0xc6,0x85,0xbb,0x89,0x8d,0x23,0xc8,0x85,0xcd,0x68, +0xaa,0xa3,0xac,0x0b,0x77,0x13,0x27,0x47,0x39,0x17,0xbe,0x26, +0x86,0x8e,0xf2,0x2e,0xdc,0x4d,0xcc,0x1c,0xc1,0x2e,0x6c,0x46, +0x7f,0x1d,0x15,0x5c,0xb8,0x9b,0x18,0x3a,0x4c,0x6c,0x1c,0x46, +0xe7,0x7d,0xad,0xd7,0xac,0xec,0xc2,0xdd,0xf4,0x01,0x8e,0x2a, +0x2e,0x6c,0x46,0xa3,0x1d,0x21,0x2e,0x7c,0xad,0xd7,0xa9,0xea, +0xc2,0xdd,0xf4,0x07,0x0e,0x2b,0x36,0x66,0xec,0x6d,0x46,0xbf, +0x1d,0x35,0x5c,0xf8,0x5a,0xaf,0x59,0xd3,0x85,0xcd,0x68,0xb9, +0xa3,0x96,0x0b,0x5f,0xeb,0x35,0x6b,0xbb,0xb0,0x19,0x7d,0x77, +0x18,0xaf,0x70,0x98,0xb1,0xf4,0xb5,0x5e,0xa7,0xbe,0x0b,0x9b, +0xd1,0x7a,0x87,0x35,0x46,0xe6,0xb8,0x7d,0x4d,0xff,0xe9,0x30, +0xbe,0xe1,0x30,0xc7,0x67,0x33,0xda,0xef,0xb0,0x3e,0xb7,0xe5, +0x17,0x26,0xd7,0x1c,0xcd,0x5c,0xd8,0x8c,0x07,0x38,0x8c,0x6f, +0x38,0xcc,0xfb,0xf8,0x9a,0x9c,0x73,0xb4,0x74,0xe1,0x6e,0xfa, +0x15,0x47,0x2b,0x17,0x36,0xe3,0x0d,0x0e,0xeb,0xf9,0xe6,0x77, +0x7d,0x4d,0xbf,0xe2,0x68,0xe7,0xc2,0xdd,0xf4,0x32,0x0e,0xe3, +0x15,0x0e,0xe3,0x0b,0xbe,0xa6,0x47,0x71,0x74,0x72,0xe1,0x6e, +0xbd,0x6f,0x67,0x17,0x36,0xeb,0xf1,0x2e,0x2e,0xdc,0x4d,0xae, +0x3b,0x8c,0x3f,0x38,0x2c,0x5f,0x30,0xbe,0xe2,0x30,0x7e,0xe0, +0xb0,0xb4,0xdd,0xe4,0xb1,0xc3,0xe8,0xba,0xc3,0xe8,0xae,0xcd, +0x7a,0x9e,0xd1,0x72,0x87,0xd1,0x71,0xbb,0x95,0xbf,0x03,0x5d, +0xd8,0xac,0xe7,0x19,0x5d,0x77,0x18,0x4d,0xb7,0x9b,0x3c,0x76, +0x18,0x5d,0x77,0x18,0x3d,0x76,0xb7,0x8e,0xc5,0xe8,0xaf,0xc3, +0xf4,0xfa,0x76,0x2b,0x97,0x4d,0xbf,0xef,0xb0,0xce,0x1b,0xb4, +0x8e,0x65,0xbc,0x0b,0xbb,0xc9,0x69,0xc7,0x04,0x17,0x36,0xe3, +0x4b,0x8e,0x89,0x2e,0xdc,0xad,0x63,0x99,0xe4,0xc2,0x66,0x3e, +0x93,0xc3,0x68,0xbc,0xc3,0x68,0xb8,0xdd,0xca,0x7d,0xa3,0xdf, +0x0e,0xa3,0xdb,0x36,0xeb,0x33,0x1a,0xcd,0x76,0x18,0xcd,0xb3, +0x5b,0xf9,0x3e,0xd7,0x85,0xcd,0x78,0x8d,0xc3,0x68,0xb6,0xc3, +0xe8,0xb5,0xdd,0xf4,0x34,0x8e,0x05,0x2e,0xdc,0x4d,0xad,0x3a, +0x16,0xba,0xb0,0x19,0xdf,0x71,0x18,0xdd,0x76,0x98,0x9e,0xde, +0x6e,0x7c,0xcd,0xb1,0xd2,0x85,0xbb,0xa9,0x63,0xc7,0x2a,0x17, +0x36,0xe3,0x73,0x8e,0x30,0x17,0x76,0xab,0x26,0xc2,0x5d,0xd8, +0xcc,0xb8,0x38,0x56,0xbb,0xb0,0x1b,0x0f,0x72,0x44,0xb8,0xb0, +0x59,0xe3,0x64,0x74,0xd6,0x61,0xfa,0x7e,0xbb,0xa9,0x1f,0x47, +0xb4,0x0b,0x9b,0x19,0x3b,0xc7,0x06,0x17,0xee,0x56,0x2c,0x8c, +0x96,0x3b,0x8c,0xbe,0xda,0x4d,0x1f,0xe4,0xd8,0xec,0xc2,0x66, +0x8d,0xab,0xd1,0x4d,0x87,0x99,0x8b,0xd8,0x4d,0x8d,0x39,0x62, +0x5c,0xb8,0x9b,0x9e,0xd2,0xb1,0xcd,0x85,0xcd,0x8c,0xbb,0xc3, +0x68,0x9f,0xc3,0x68,0x92,0xdd,0xaa,0xb9,0xbd,0x2e,0xdc,0x8d, +0xee,0x38,0xf6,0xb9,0xb0,0x59,0x31,0xd9,0xef,0xc2,0x6e,0x34, +0xd6,0x71,0xc0,0x85,0xcd,0x8a,0xcf,0x41,0x17,0x76,0xd3,0x3f, +0x39,0x0e,0xb9,0xb0,0x99,0x98,0x39,0x8c,0x96,0x39,0x8c,0x26, +0xd9,0x4d,0x3f,0xe5,0x30,0xfd,0xa8,0xc3,0xe8,0x90,0xcd,0x8a, +0xa1,0xe9,0x23,0x1d,0x46,0x6f,0xec,0x56,0x2d,0x9e,0x75,0x61, +0xb3,0xe2,0x69,0x3c,0xc4,0x61,0xfc,0xc3,0x6e,0xd5,0xe2,0x05, +0x17,0xee,0x56,0x9e,0x18,0x0f,0x71,0x18,0xff,0xb0,0x19,0x6f, +0x75,0x5c,0x76,0xe1,0x6e,0xe9,0xdf,0x15,0x17,0x76,0xab,0x46, +0x8d,0x87,0x38,0x8c,0x77,0xd8,0x8c,0x87,0x3a,0xae,0xbb,0x30, +0xf2,0x05,0x87,0xf1,0x0e,0x87,0xd1,0x21,0x9b,0xf1,0x50,0x87, +0xc3,0x85,0xdd,0xaa,0x63,0xa7,0x0b,0x9b,0xc9,0x1b,0xc7,0x2d, +0x17,0x76,0xab,0xa6,0x6f,0xbb,0xb0,0x59,0x79,0x64,0xe9,0x91, +0xf1,0x0e,0xbb,0xa9,0x73,0x87,0xf1,0x0d,0x87,0xf1,0x0b,0x0f, +0xa3,0xb9,0x0e,0xe3,0x17,0x0e,0xe3,0x17,0x76,0xab,0xd6,0x1f, +0xb9,0xb0,0x59,0xb9,0xf6,0xd8,0x85,0x87,0xd1,0x62,0x87,0xa5, +0x47,0x46,0xa7,0xed,0x56,0xdd,0x3f,0x73,0x61,0xb3,0x72,0xd0, +0xd2,0x47,0xa3,0x5b,0x76,0x4b,0x7b,0x5f,0xba,0xb0,0x59,0xf9, +0x68,0xe9,0x8e,0xa9,0x69,0xbb,0x55,0xf7,0xef,0x5d,0xd8,0xac, +0xdc,0xfc,0xe0,0xc2,0xc3,0xaa,0x8b,0x8f,0x2e,0xec,0x96,0xbe, +0x59,0x75,0x65,0xea,0xc0,0xc3,0xd2,0xf8,0x2f,0x2e,0x6c,0xa6, +0x4f,0x71,0x58,0x35,0x60,0x72,0xc1,0x6e,0x69,0x80,0x15,0x63, +0x13,0x43,0x9b,0xe9,0x07,0x1c,0xd6,0x38,0x9a,0x31,0xb3,0x9b, +0x9a,0x37,0x87,0xfd,0x3f,0x6c,0xc6,0xf7,0x9d,0xe6,0x78,0x9c, +0xc6,0x3f,0xec,0xa6,0xe6,0x9d,0x6e,0x2e,0x3c,0x8c,0x4f,0x38, +0x13,0xb9,0xb0,0x99,0xda,0x70,0x9a,0xf7,0x70,0x9a,0x1e,0xd6, +0x6e,0xfa,0x48,0xa7,0xe9,0x59,0x9d,0x66,0x6e,0xe0,0x61,0xea, +0xce,0x99,0xda,0x85,0xdd,0xd4,0xaf,0xd3,0xd4,0x9b,0xd3,0xd4, +0x90,0x87,0xe9,0x87,0x9d,0xee,0x2e,0x6c,0xa6,0x9e,0x9c,0x26, +0x08,0x4e,0xd3,0x0f,0xda,0x8d,0x16,0x38,0x4d,0xcd,0x38,0xad, +0xfe,0xdf,0xd4,0x98,0xd3,0xd4,0x86,0xd3,0xf8,0x88,0xdd,0xd4, +0x94,0xd3,0xdb,0x85,0xcd,0xd4,0x9b,0xd3,0x78,0x88,0xd3,0xf8, +0x87,0xdd,0xd4,0x88,0x33,0xbb,0x0b,0x0f,0xeb,0x3d,0x73,0xb8, +0xb0,0x99,0x3a,0x74,0x9a,0x9a,0x71,0x9a,0x9e,0xcb,0x6e,0xea, +0xc2,0x69,0x7a,0x29,0xa7,0xc9,0x77,0x9b,0xa9,0x4b,0x67,0x41, +0x17,0x76,0x93,0x63,0x4e,0x5f,0x17,0x36,0x53,0x9f,0x4e,0xbb, +0x0b,0xbb,0xd1,0x0e,0xa7,0x9f,0x0b,0x9b,0xa9,0x55,0xa7,0xf1, +0x13,0xa7,0xe9,0x2f,0xec,0x26,0xf7,0x9c,0x26,0xa7,0x9d,0x56, +0xff,0x6f,0x6a,0xd7,0x69,0xf2,0xd5,0x69,0x3c,0xc5,0x6e,0xf4, +0xc5,0x59,0xd2,0x85,0xcd,0xf4,0x61,0xce,0x52,0x2e,0xec,0x26, +0x67,0x9c,0xc6,0x5b,0x9c,0xc6,0x53,0x3c,0xcc,0x58,0x38,0x83, +0x5c,0xd8,0x4c,0x7f,0xe6,0x34,0x7e,0xe2,0x34,0x79,0x64,0x37, +0xf9,0xe3,0xac,0xe4,0xc2,0xc3,0x1a,0x9b,0xca,0x2e,0x6c,0xa6, +0x77,0x73,0x56,0x71,0xe1,0x61,0xc6,0xcb,0x19,0xe2,0xc2,0x6e, +0x62,0xe4,0xac,0xea,0xc2,0xb6,0xdc,0xdc,0x56,0x73,0x61,0x37, +0x3d,0x9b,0xb3,0xba,0x0b,0x9b,0xd1,0x14,0xa7,0xf1,0x0a,0xa7, +0xc9,0x11,0xbb,0x15,0xbb,0xda,0x2e,0x3c,0xac,0xf1,0x36,0xbe, +0xe0,0x34,0x3e,0x6c,0xb7,0xc6,0xd6,0xf8,0x83,0xd3,0xf2,0x05, +0xa3,0x3b,0x4e,0xe3,0x0b,0x4e,0x93,0x2f,0x76,0x6b,0x6c,0x1b, +0xb9,0xb0,0x19,0xdd,0x71,0x36,0x76,0xe1,0x61,0xc5,0xc7,0x78, +0x84,0xd3,0x9a,0x47,0x18,0x0d,0x72,0x5a,0xf9,0x61,0x72,0xc1, +0x6e,0x8d,0x67,0x6b,0x17,0x36,0xd3,0x47,0x3a,0xdb,0xb8,0xb0, +0x5b,0xe3,0xd6,0xd6,0x85,0x87,0xe9,0x0b,0x9c,0xc6,0x13,0x9c, +0x46,0xef,0x6d,0xa6,0xbf,0x74,0x76,0x70,0x61,0xb7,0xc6,0xb0, +0xa3,0x0b,0x9b,0xe9,0x31,0x9d,0x9d,0x5c,0xd8,0x17,0x9b,0xdb, +0xce,0x2e,0x6c,0x46,0xcb,0x9c,0x56,0x4e,0x18,0x8d,0xb7,0x5b, +0x63,0xdb,0xcd,0x85,0x87,0x99,0x8f,0x38,0xbb,0xbb,0xb0,0x19, +0x8d,0x73,0x1a,0x2d,0x76,0x9a,0x79,0x80,0x87,0xe9,0x3f,0x9c, +0xbd,0x5c,0xd8,0x8c,0xde,0x39,0x43,0x5d,0x78,0x98,0xdc,0x72, +0x5a,0xb9,0x62,0xb4,0xd3,0x6e,0x8d,0x6d,0x5f,0x17,0x36,0xa3, +0x85,0x4e,0xa3,0x8f,0x4e,0xa3,0x7f,0x76,0x6b,0xdc,0x06,0xb8, +0xf0,0xb0,0x72,0x70,0xa0,0x0b,0x9b,0xd1,0x4a,0xa7,0xd1,0x2f, +0xa7,0xe9,0xcd,0xed,0x46,0x97,0x9d,0x46,0x3b,0x9c,0x66,0x3e, +0x60,0x33,0xba,0xe9,0x1c,0xed,0xc2,0x6e,0x1d,0xd7,0x18,0x17, +0x1e,0x26,0x77,0x9d,0x63,0x5d,0xd8,0x4d,0x0f,0xed,0x1c,0xe7, +0xc2,0x66,0xb4,0xd5,0x69,0xc5,0xdb,0xd4,0x9f,0xdd,0x3a,0x5e, +0x2b,0x96,0xd6,0x7c,0xc1,0xe8,0xac,0xd3,0x8a,0x93,0xe5,0x2f, +0xd6,0x6b,0xce,0x74,0x61,0x33,0x5a,0xeb,0xb4,0xe2,0x64,0x3c, +0xc6,0x6e,0x3d,0x77,0x8e,0x0b,0x0f,0xab,0x26,0xe6,0xba,0xb0, +0xc5,0x9a,0x5b,0x2b,0x06,0x66,0xcc,0xec,0x46,0xa3,0x9d,0x4b, +0x5c,0x78,0x98,0x9a,0x71,0x5a,0x79,0x66,0x8e,0xd5,0x66,0xfa, +0x4f,0xe7,0x72,0x17,0xf6,0xdd,0xe6,0xd6,0x3a,0x4e,0xcb,0x5f, +0x4c,0xff,0xe9,0xb4,0x62,0x6c,0xe2,0x69,0x37,0x9a,0xee,0x5c, +0xed,0xc2,0xc3,0xaa,0x33,0xe3,0x27,0x4e,0xe3,0x25,0x76,0xa3, +0xe9,0xce,0xb5,0x2e,0x6c,0x46,0xeb,0x7f,0x19,0x1d,0xf8,0x65, +0x74,0xc0,0x66,0xf4,0xfd,0xaf,0xc9,0xcb,0xbf,0xe6,0x58,0xfd, +0x8c,0xe6,0xfd,0x35,0xf3,0xe8,0xbf,0xa6,0x46,0xfc,0x4c,0x3f, +0xf6,0xd7,0xd4,0xc7,0x5f,0x93,0xc3,0x7e,0xa6,0xe7,0xf9,0x6b, +0xf2,0xf4,0xaf,0xc9,0x4f,0x3f,0xe3,0x6b,0xff,0xcc,0x73,0xff, +0x99,0x3c,0xf1,0x33,0x7a,0xf3,0xcf,0x68,0xe1,0x3f,0xa3,0x7d, +0x01,0x46,0xdf,0xff,0x3d,0x75,0xe1,0x6f,0x72,0xeb,0xdf,0x73, +0x17,0x01,0x46,0xdf,0xff,0xc5,0xbb,0xf0,0x6f,0x01,0x1a,0x69, +0xb3,0x80,0xdf,0x5e,0x73,0x9b,0xd6,0x60,0x6a,0xd9,0x6f,0x1f, +0x92,0x20,0x05,0x4c,0x64,0xff,0xf7,0xc7,0xcd,0x75,0xf3,0x6f, +0x02,0x82,0xf0,0xff,0xf9,0x43,0x24,0x72,0x03,0xc9,0xd4,0xd5, +0x2b,0xd6,0xae,0xd7,0xab,0xf3,0xd0,0x86,0xed,0x7b,0x0f,0xa8, +0xd9,0xc0,0xba,0xa7,0xfa,0xf7,0x2c,0xdf,0xbd,0x17,0xa6,0xcc, +0xf6,0x3d,0x2b,0xbe,0x67,0x4b,0x89,0xef,0xd9,0xf5,0x3d,0xbb, +0xdb,0xf7,0x8c,0x89,0x7e,0xb9,0xa7,0x74,0x3b,0x93,0x32,0xd1, +0xaf,0xb6,0x7f,0xa6,0x59,0xff,0xb3,0xdb,0xcc,0xfc,0x95,0xb8, +0x69,0xe2,0x99,0x29,0xb3,0x9b,0x1f,0x02,0xae,0xa6,0xcc,0xf5, +0xad,0x69,0x9a,0x6f,0xad,0x52,0xfa,0x64,0x45,0x92,0xdb,0xf7, +0x52,0xe6,0xf9,0xd6,0xc9,0x1d,0x49,0xc8,0x24,0xc9,0x52,0x95, +0xae,0xd1,0xb8,0x42,0xa7,0x3e,0x1d,0x3a,0xd7,0x6c,0x50,0xc8, +0x3f,0x30,0xb0,0x70,0xa5,0x3e,0x7d,0x87,0xf5,0xef,0xde,0xb5, +0xdb,0xc0,0x1c,0x85,0x03,0x0b,0x95,0xcc,0x61,0xde,0x3e,0x47, +0xa5,0x3e,0xfd,0xfb,0xfa,0xe7,0xa8,0xd0,0xab,0x57,0x8e,0xff, +0x3d,0x30,0x20,0x47,0xff,0xce,0x03,0x3a,0xf7,0x1f,0xdc,0xb9, +0x93,0xbf,0xf5,0xa8,0xf5,0xe9,0x72,0x58,0x1f,0x2f,0x47,0xcd, +0x06,0xff,0xcf,0x87,0x05,0x04,0x06,0x5c,0x36,0x07,0x01,0xeb, +0xfd,0x03,0xac,0x53,0xc0,0xcd,0x8f,0x26,0x00,0x26,0x5e,0x46, +0x7a,0x4c,0x55,0xaf,0x06,0xb3,0x82,0x65,0xc1,0x48,0x30,0x16, +0x7c,0x0c,0xb9,0x43,0xc1,0x50,0x1d,0xa8,0x39,0xd4,0x05,0xea, +0x03,0x8d,0x87,0xa6,0x43,0x61,0xd0,0x23,0xb8,0xe5,0x83,0x5b, +0x2d,0xb8,0x8d,0x84,0xdb,0x7e,0xb8,0xc5,0x21,0x51,0x45,0x24, +0xea,0x83,0x44,0x63,0x91,0x68,0x3e,0x12,0x85,0x23,0xd1,0x6e, +0x24,0x72,0x20,0x71,0x2a,0x24,0x9e,0x89,0xc4,0x66,0xa8,0x89, +0x24,0x21,0x48,0x32,0x12,0x49,0xa6,0x59,0xbb,0xab,0x27,0x79, +0x83,0x24,0x3f,0xac,0x2d,0x1a,0x93,0x96,0x42,0xd2,0x0e,0x48, +0xda,0xcf,0xda,0x5e,0x27,0xe9,0x49,0x24,0x73,0x43,0xb2,0xe2, +0xd6,0xf2,0xb6,0xc9,0x0e,0x58,0x8b,0x08,0x25,0xcf,0x86,0xe4, +0x25,0x91,0xbc,0x8d,0x75,0xa1,0x74,0xf2,0x79,0xd6,0x65,0x62, +0xc9,0x1d,0xd6,0x45,0x1c,0xc9,0xff,0x58,0xa7,0x34,0xa7,0xc8, +0x81,0x14,0x7e,0xd6,0xf9,0x7e,0x29,0x16,0x59,0xdf,0x10,0xd9, +0xdc,0x60,0x2b,0x6b,0x59,0xbc,0x71,0x13,0xdb,0x67,0xa4,0xcc, +0x80,0x94,0xbe,0x48,0x59,0x05,0x29,0x7b,0x23,0xe5,0x38,0xa4, +0xdc,0x87,0x94,0xf7,0x91,0x2a,0x0d,0x52,0xd5,0x44,0xaa,0xe6, +0x48,0x35,0x04,0xa9,0x2e,0x22,0xd5,0x7b,0xa4,0xce,0x84,0xd4, +0x65,0x91,0x7a,0x3c,0x52,0xef,0x45,0xea,0x6b,0x48,0xfd,0x18, +0xa9,0xff,0x58,0xfb,0xb0,0xa7,0x29,0x69,0xed,0x96,0x98,0x66, +0xb3,0xb5,0xf6,0x6f,0xda,0x50,0x6b,0x35,0x06,0xf7,0xc2,0xd6, +0x77,0x1c,0xee,0xa7,0xad,0x59,0xa1,0x31,0x5f,0xa3,0xc9,0x1e, +0x59,0xe1,0xd1,0x0c,0x1e,0x2d,0xe1,0xd1,0x1a,0x1e,0xed,0xe0, +0xd1,0x11,0x1e,0x5d,0xe0,0xd1,0x1d,0x1e,0xbd,0xe0,0xd1,0x07, +0x1e,0x03,0xe0,0x31,0x16,0x1e,0xb3,0xe0,0xb1,0x1c,0x1e,0xeb, +0xe1,0xb1,0x1d,0x1e,0x27,0xe1,0xf1,0x05,0x9e,0xee,0xf0,0x2c, +0x03,0xcf,0xf2,0xf0,0xac,0x04,0xcf,0x1e,0xf0,0x5c,0x08,0xcf, +0xd5,0xf0,0xdc,0x87,0x74,0x1e,0x48,0xb7,0x02,0xe9,0x12,0x90, +0x3e,0x2d,0xd2,0x97,0x44,0xfa,0x21,0x48,0x3f,0x11,0xe9,0x57, +0x23,0xfd,0x41,0xa4,0x3f,0x87,0xf4,0x2f,0xe1,0x95,0x14,0x5e, +0x01,0xf0,0x6a,0x0a,0xaf,0xd1,0xf0,0x5a,0x07,0xaf,0x8d,0xf0, +0xda,0x0b,0xaf,0x6b,0xf0,0xfa,0x05,0xaf,0x7f,0xc8,0xe0,0x86, +0x0c,0x49,0x91,0xa1,0x28,0x32,0x94,0x44,0x86,0x20,0x64,0x68, +0x8c,0x0c,0xbd,0x91,0x61,0x2c,0x32,0x6c,0x45,0x86,0x43,0xc8, +0x70,0x09,0x19,0xde,0x20,0x63,0x0a,0x64,0xcc,0x8f,0x8c,0x55, +0x91,0xb1,0x2b,0x32,0x4e,0x46,0xc6,0x28,0x64,0x3c,0x89,0x4c, +0x6e,0xc8,0xe4,0x81,0x4c,0xa1,0xc8,0x74,0x0b,0x99,0x5e,0x23, +0x73,0x56,0x64,0x2e,0x89,0xcc,0x83,0x91,0x79,0x3e,0x32,0xdf, +0x45,0x96,0xca,0xc8,0x32,0x0d,0x59,0xee,0xc3,0xbb,0x1e,0xbc, +0xbb,0xc1,0xbb,0x2f,0xbc,0x37,0x21,0x6b,0x2a,0x64,0xad,0x8d, +0xac,0x07,0x90,0xf5,0x27,0xb2,0x05,0x21,0xdb,0x40,0x64,0x3b, +0x8c,0x6c,0xaf,0x91,0x3d,0x11,0xb2,0x17,0x42,0xf6,0x71,0xc8, +0x3e,0x1f,0xd9,0x37,0x22,0xfb,0x09,0x64,0x4f,0xb0,0x36,0x1f, +0xcf,0x91,0x09,0x39,0x8a,0x58,0x3b,0x26,0xe7,0x68,0x6b,0xed, +0xc3,0x9b,0x63,0x11,0x72,0xec,0x40,0x8e,0x03,0xc8,0x71,0xc1, +0xda,0x06,0x34,0xa7,0x1b,0x72,0x66,0xb1,0xf6,0x61,0xcc,0x59, +0x12,0x39,0x2b,0x21,0x67,0x6d,0x6b,0xaf,0xc0,0x9c,0x1d,0xad, +0x5d,0xd8,0x72,0xae,0x42,0xce,0x2d,0xd6,0x96,0x5b,0x39,0x2f, +0x5a,0x1b,0x18,0xe5,0xfc,0x85,0x5c,0xd9,0x90,0xab,0xbc,0xb5, +0xf9,0x45,0xae,0x79,0xc8,0xb5,0xdf,0x5a,0x25,0x3e,0xd7,0x6d, +0xe4,0x7a,0x82,0xdc,0x49,0x90,0xdb,0x0b,0xb9,0xcb,0x59,0xeb, +0xf7,0xe6,0x5e,0x89,0xdc,0xeb,0x90,0x7b,0x8b,0xb5,0xa6,0x65, +0x9e,0x44,0xc8,0x53,0x11,0x79,0x6a,0x21,0x4f,0x7f,0x6b,0x39, +0xb5,0x3c,0x53,0xac,0x05,0xbe,0xf2,0x1c,0x47,0x9e,0xd7,0xc8, +0xf3,0x0b,0x3e,0x01,0xf0,0x19,0x0a,0x9f,0x71,0xd6,0x6a,0x18, +0x3e,0x2f,0x91,0x37,0x3b,0xf2,0xd6,0x41,0xde,0xb6,0xc8,0x3b, +0x15,0x79,0xd7,0x20,0xef,0x51,0xeb,0xea,0xc5,0x7c,0xde,0xc8, +0x57,0x1d,0xf9,0x0e,0x21,0xdf,0x2b,0xeb,0x84,0xff,0xfc,0x76, +0xe4,0x6f,0x86,0xfc,0xe3,0xac,0x13,0x38,0xf3,0x7f,0x42,0x81, +0x42,0xd6,0x59,0x55,0x05,0xfa,0x5b,0xe7,0xd8,0x14,0x38,0x8e, +0x02,0x17,0x51,0x30,0x05,0x0a,0x56,0x45,0xc1,0x09,0xd6,0xb7, +0x15,0x05,0x7f,0xc1,0x37,0x0d,0x7c,0x4b,0xc0,0xb7,0x02,0x7c, +0x87,0xc0,0x77,0x2b,0x7c,0x5f,0x58,0xb3,0x27,0x7b,0x7e,0xd8, +0x9b,0xc1,0x3e,0xd6,0x52,0x48,0xfb,0x0f,0xf8,0x95,0x80,0x5f, +0x5b,0xf8,0x45,0xc2,0x6f,0x2b,0xfc,0x1e,0xc3,0xdf,0x1d,0xfe, +0x95,0xe1,0xdf,0x0c,0xfe,0x1d,0xe1,0x1f,0x0a,0xff,0xc1,0xf0, +0x1f,0x0b,0xff,0x99,0xf0,0x5f,0x02,0xff,0x3f,0x08,0x48,0x8e, +0x80,0x74,0x08,0x28,0x80,0x80,0xfe,0x08,0x98,0x84,0x80,0xb3, +0x08,0xb8,0x8e,0x80,0xfb,0x08,0x78,0x8f,0x80,0x9f,0x08,0x4c, +0x89,0xc0,0xac,0x08,0x0c,0x40,0x60,0x69,0x04,0xce,0x44,0xe0, +0x67,0x04,0xfe,0x43,0xa1,0xac,0x28,0x54,0x11,0x85,0xea,0xa0, +0x50,0x24,0x0a,0x3d,0x47,0xa1,0xef,0x28,0x1c,0x84,0xc2,0x21, +0x28,0xdc,0x14,0x85,0xdb,0xa3,0xf0,0x00,0x14,0x9e,0x80,0xc2, +0xfb,0x51,0xf8,0x23,0x0a,0xff,0x41,0x91,0xe4,0x28,0x12,0x88, +0x22,0x2b,0x51,0x24,0x1a,0x45,0xf6,0xa2,0xc8,0x73,0x14,0xcd, +0x80,0xa2,0xfe,0x28,0x5a,0x1d,0x45,0xdb,0xa3,0xe8,0x70,0x14, +0x9d,0x83,0xa2,0x9b,0x51,0xf4,0x18,0x8a,0xe5,0x41,0xb1,0x3a, +0x28,0x16,0x8a,0x62,0xe1,0x28,0xf6,0x09,0xc5,0xb3,0xa3,0xf8, +0x60,0x14,0x5f,0x88,0xe2,0xe1,0x28,0x7e,0x0e,0x25,0xbc,0x51, +0xa2,0x37,0x4a,0xcc,0x40,0x89,0x8b,0x28,0x49,0x94,0x2c,0x89, +0x92,0x35,0x51,0x72,0x1c,0x4a,0xee,0x43,0xc9,0xef,0x28,0xe5, +0x85,0x52,0x7e,0x28,0xd5,0x1d,0xa5,0x46,0xa0,0xd4,0x56,0x94, +0x7a,0x80,0xd2,0x49,0x51,0xba,0x14,0x4a,0x77,0x45,0xe9,0x01, +0x28,0x3d,0x06,0xa5,0xa7,0xa3,0xf4,0x22,0x94,0x5e,0x8d,0xd2, +0x7b,0x51,0xfa,0x2e,0xca,0x24,0x46,0x19,0x77,0x94,0xa9,0x80, +0x32,0xb5,0x51,0xa6,0x03,0xca,0x4c,0x47,0x99,0xb3,0x28,0x73, +0xd7,0x52,0xeb,0xa0,0x82,0x08,0x6a,0x85,0xa0,0x31,0x08,0x9a, +0x81,0xa0,0xc5,0x08,0xda,0x87,0xa0,0xe7,0x28,0xeb,0x81,0xb2, +0x65,0x51,0xb6,0x2b,0xca,0xce,0x45,0xd9,0xed,0x28,0x7b,0x08, +0x65,0xcf,0xa1,0x6c,0x1c,0xca,0x3e,0x46,0xd9,0x5f,0x28,0x97, +0x1a,0xe5,0xb2,0xa2,0x5c,0x01,0x94,0x2b,0x8a,0x72,0x15,0x51, +0xae,0x21,0xca,0x85,0xa2,0xdc,0x74,0x94,0xdb,0x84,0xf2,0x49, +0x51,0x3e,0x0b,0xca,0xe7,0x41,0xf9,0xba,0x28,0x3f,0x08,0xe5, +0x2f,0xa2,0xfc,0x73,0x04,0xa7,0x45,0xb0,0x37,0x82,0xf3,0x21, +0xb8,0x14,0x82,0x1b,0x20,0xb8,0x3d,0x82,0x67,0x21,0xf8,0x2b, +0x2a,0xd4,0x45,0x85,0xc1,0xa8,0xb0,0x04,0x15,0x5e,0xa2,0x62, +0x0a,0x54,0x2c,0x80,0x8a,0x43,0x50,0x71,0x09,0x2a,0xee,0x41, +0xc5,0x4b,0xa8,0x94,0x04,0x95,0x4a,0xa2,0xd2,0x6c,0x54,0x7a, +0x8e,0xca,0x15,0x50,0x79,0x28,0x2a,0x5f,0x44,0x95,0x44,0xa8, +0xd2,0x0e,0x55,0x0e,0x22,0xc4,0x1d,0x21,0xf3,0x50,0xb5,0x18, +0xaa,0xb6,0x44,0xd5,0x25,0xa8,0xfa,0x1d,0xd5,0xaa,0xa2,0xda, +0x28,0x54,0xbb,0x80,0xea,0xe9,0x50,0x3d,0x07,0xaa,0xfb,0xa1, +0x7a,0x3d,0x54,0x5f,0x84,0xea,0xe6,0x1e,0x27,0xaa,0x3f,0x41, +0xf5,0x8f,0xa8,0xfe,0x1b,0x35,0x9a,0xa2,0xc6,0x20,0xd4,0xb8, +0x8f,0x1a,0xdf,0x50,0x33,0x05,0x6a,0x66,0x45,0xcd,0xb9,0xa8, +0x79,0x1a,0xb5,0x82,0x50,0xab,0x1d,0x6a,0x4d,0x46,0xad,0x67, +0xa8,0x1d,0x8c,0xda,0xd5,0x51,0xbb,0x31,0x6a,0x77,0x45,0xed, +0x91,0xa8,0x7d,0x15,0x75,0x52,0xa3,0x4e,0x4d,0xd4,0x59,0x82, +0x3a,0xb1,0xa8,0x73,0x06,0x75,0x9e,0xa1,0xce,0x0f,0xd4,0xed, +0x8e,0xba,0x0b,0x50,0xf7,0x04,0xea,0xfe,0x43,0xbd,0xde,0xa8, +0x17,0x87,0x7a,0x0f,0x51,0xef,0x15,0xea,0x27,0x47,0xfd,0x01, +0xa8,0xbf,0x1a,0x0d,0x52,0xa3,0x41,0x26,0x34,0x28,0x88,0x06, +0x0d,0xd0,0xa0,0x0f,0x1a,0x5c,0x42,0xc3,0x42,0x68,0x58,0x19, +0x0d,0xeb,0xa2,0x61,0x37,0x34,0xdc,0x82,0x86,0x47,0xd0,0xa8, +0x0d,0x1a,0x45,0xa1,0xd1,0x3b,0x34,0x2e,0x82,0xc6,0x83,0xd0, +0x78,0x1c,0x1a,0xcf,0x44,0xe3,0x25,0x68,0x1c,0x83,0xc6,0xef, +0xd1,0xa4,0x30,0x9a,0x94,0x43,0x93,0x1a,0x68,0x32,0x07,0x4d, +0x1e,0xa3,0x69,0x41,0x34,0xed,0x82,0xa6,0x27,0xd0,0x2c,0x2d, +0x9a,0xf9,0xa3,0x59,0x7f,0x34,0x8b,0x46,0x33,0x27,0x9a,0xe7, +0x46,0x73,0x7f,0x34,0x2f,0x89,0xe6,0xf5,0xd1,0xbc,0x15,0x9a, +0xf7,0x42,0xf3,0x21,0x68,0x3e,0x05,0xcd,0x97,0xa2,0x79,0x34, +0x9a,0x1f,0x43,0xf3,0xdb,0x68,0xfe,0x12,0xcd,0xbf,0xa3,0x85, +0x17,0x5a,0xe4,0x40,0x0b,0x5f,0xb4,0x28,0x86,0x16,0x5d,0xd1, +0x62,0x11,0x5a,0x1c,0x47,0x8b,0x8b,0x68,0x11,0x87,0x16,0xbf, +0xd0,0x32,0x1b,0x5a,0x86,0xa0,0x65,0x4b,0xb4,0x1c,0x83,0x96, +0xd3,0xd1,0x72,0x11,0x5a,0xae,0x46,0xcb,0x6d,0x68,0x79,0x1e, +0x2d,0xef,0xa0,0xe5,0x67,0xb4,0x4a,0x89,0x56,0xde,0x68,0xd5, +0x0a,0xad,0xe6,0xa0,0xd5,0x01,0xb4,0xba,0x8a,0x56,0x3f,0xd1, +0xda,0x13,0xad,0xb3,0xa1,0x75,0x01,0xb4,0x2e,0x8a,0xd6,0xe5, +0xd0,0xba,0x15,0x5a,0x8f,0x47,0xeb,0x68,0xb4,0x3e,0x85,0xd6, +0x0f,0xd0,0xfa,0x1f,0xda,0x64,0x42,0x9b,0x9a,0x68,0x33,0x1c, +0x6d,0x56,0xa3,0xcd,0x0e,0xb4,0x39,0x88,0x36,0x97,0xd0,0xe6, +0x01,0xda,0xa6,0x41,0xdb,0xe2,0x68,0xdb,0x18,0x6d,0xdb,0xa2, +0xed,0x32,0xb4,0x3d,0x8a,0xb6,0xff,0xa1,0x9d,0x3b,0xda,0x79, +0xa3,0x5d,0x45,0xb4,0xeb,0x81,0x76,0x73,0xd0,0xee,0x3a,0xda, +0xfd,0x42,0xfb,0xa2,0x68,0xdf,0x13,0xed,0xe7,0xa3,0xfd,0x26, +0xb4,0x3f,0x87,0xf6,0x6f,0xd1,0x81,0xe8,0x90,0x0e,0x1d,0xf2, +0xa3,0x43,0x08,0x3a,0x74,0x46,0x87,0x09,0xe8,0x10,0x81,0x0e, +0xbb,0xd0,0xe1,0x28,0x3a,0xdc,0x42,0x87,0xcf,0xe8,0x98,0x1d, +0x1d,0x0b,0xa0,0x63,0x5d,0x74,0x1c,0x85,0x8e,0x87,0xd1,0xf1, +0x3c,0x3a,0x7e,0x45,0x27,0x6f,0x74,0xaa,0x8c,0x4e,0x75,0xd0, +0xa9,0x39,0x3a,0x75,0x45,0xa7,0x45,0xe8,0xb4,0x17,0x9d,0xee, +0xa3,0x73,0x72,0x74,0x2e,0x89,0xce,0x15,0xd0,0xb9,0x17,0x3a, +0x0f,0x41,0xe7,0x05,0xe8,0x7c,0x18,0x9d,0x1f,0xc1,0xb4,0xbf, +0x5d,0x0a,0xa0,0x4b,0x43,0x74,0xe9,0x88,0x2e,0xa1,0xe8,0xb2, +0x02,0x5d,0x62,0xd0,0xe5,0x38,0xba,0xbc,0x41,0x97,0x6f,0xe8, +0x9a,0x06,0x5d,0x33,0xa3,0x6b,0x7b,0x74,0x9d,0x8c,0xae,0x51, +0xe8,0x7a,0x16,0x5d,0x5f,0xa2,0x5b,0x4a,0x74,0x2b,0x86,0x6e, +0x6d,0xd1,0x6d,0x36,0xba,0xad,0x45,0xb7,0x5b,0xe8,0xf6,0x17, +0xdd,0xf3,0xa2,0x7b,0x59,0x74,0x6f,0x86,0xee,0x43,0xd0,0x7d, +0x1e,0xba,0xaf,0x44,0xf7,0x75,0xe8,0x1e,0x83,0xee,0xb7,0xd0, +0xfd,0x29,0xba,0xff,0x43,0x8f,0xe2,0xe8,0x51,0x11,0x3d,0x9a, +0xa0,0x47,0x27,0xf4,0x18,0x82,0x1e,0x73,0xd1,0x63,0x3b,0x7a, +0x1c,0x43,0x8f,0x4b,0xe8,0xf1,0x17,0x3d,0xd3,0xa2,0x67,0x31, +0xf4,0x6c,0x8d,0x9e,0x53,0xd0,0x33,0x12,0x3d,0x63,0xd0,0x73, +0x3f,0x7a,0x5e,0x44,0xcf,0x37,0xe8,0x95,0x1e,0xbd,0x8a,0xa0, +0x57,0x5d,0xf4,0x1a,0x8c,0x5e,0x53,0xd0,0x6b,0x3e,0x7a,0xad, +0x44,0xaf,0xa3,0xe8,0x75,0x01,0xbd,0xee,0xa2,0xd7,0x77,0x84, +0x0a,0xa1,0xa9,0x10,0x9a,0x17,0xa1,0x85,0x10,0x5a,0x01,0xa1, +0x1d,0x10,0x3a,0x06,0xa1,0xb3,0x11,0x1a,0x86,0xd0,0x03,0x08, +0xbd,0x88,0xd0,0x04,0x84,0xfe,0x44,0xef,0xf4,0xe8,0x5d,0x19, +0xbd,0xfb,0xa3,0xf7,0x08,0xf4,0x0e,0x47,0xef,0xe3,0xe8,0xfd, +0x1a,0xa6,0x63,0xef,0x93,0x07,0x7d,0xfc,0xd1,0xa7,0x14,0xfa, +0x54,0x46,0x9f,0x46,0xe8,0x33,0x03,0x7d,0x62,0xd1,0xe7,0x2a, +0xfa,0xfc,0x45,0xdf,0xcc,0xe8,0xeb,0x83,0xbe,0x81,0xe8,0x5b, +0x1a,0x7d,0x9b,0xa1,0xef,0x28,0xf4,0xbd,0x8f,0x7e,0x99,0xd1, +0xaf,0x32,0xfa,0xf5,0x42,0xbf,0x05,0xe8,0x77,0x1e,0xfd,0xbe, +0xa1,0xbf,0x3f,0xfa,0x97,0x40,0xff,0x6a,0xe8,0xdf,0x1c,0xfd, +0xa7,0xa1,0xff,0x76,0xf4,0xbf,0x88,0x01,0x29,0x30,0xa0,0x2c, +0x06,0xb4,0xc2,0x80,0xf1,0x18,0x10,0x86,0x01,0x77,0x30,0xd0, +0x1d,0x03,0xed,0x18,0x58,0x0f,0x03,0x07,0x60,0xe0,0x02,0x0c, +0x5c,0x8d,0x81,0x1b,0x31,0x70,0x07,0x06,0xc6,0x61,0xe0,0x23, +0x98,0x39,0xc0,0xa0,0x9c,0x18,0x54,0x08,0x83,0xca,0x60,0x50, +0x4b,0x0c,0x1a,0x89,0x41,0x93,0x31,0x68,0x0b,0x06,0x1d,0xc7, +0xa0,0xcb,0x18,0xf4,0x0e,0x83,0xd3,0x62,0x70,0x66,0x0c,0xce, +0x83,0xc1,0x7e,0x18,0xdc,0x10,0x83,0x07,0x63,0xf0,0x62,0x0c, +0x3e,0x82,0xc1,0x77,0x30,0xf8,0x19,0x06,0xbf,0xc5,0xe0,0x6f, +0x18,0x92,0x04,0x43,0xd2,0x60,0x88,0x3f,0x86,0x54,0xc5,0x90, +0x7a,0x18,0xb2,0x1e,0x43,0x8e,0x63,0x48,0x1c,0x86,0x7c,0xc4, +0x50,0x37,0x0c,0xf5,0xc2,0xd0,0x42,0x18,0xda,0x10,0x43,0xbb, +0x62,0xe8,0x7c,0x0c,0x5d,0x8f,0xa1,0x07,0x30,0xf4,0x1a,0x86, +0xbe,0xc1,0xd0,0x2f,0x18,0x96,0x1a,0xc3,0x32,0x62,0x58,0x11, +0x0c,0xab,0x83,0x61,0xbd,0x30,0x6c,0x22,0x86,0x45,0x62,0xd8, +0x0e,0x0c,0x3b,0x8a,0x61,0x97,0x31,0xec,0x2e,0x86,0x27,0xc1, +0xf0,0x9c,0x18,0x5e,0x1e,0xc3,0x67,0x63,0xf8,0x26,0x0c,0x3f, +0x8d,0xe1,0x09,0x18,0xe1,0x8e,0x11,0xfe,0x18,0x51,0x1b,0x23, +0xda,0x61,0x44,0x7f,0x8c,0x98,0x88,0x11,0xe1,0x18,0xb1,0x1f, +0x23,0x1e,0x60,0xa4,0x30,0x32,0x0b,0x46,0xfa,0x60,0x64,0x71, +0x8c,0x1c,0x86,0x91,0x13,0x31,0x72,0x31,0x46,0xae,0xc1,0xc8, +0x9d,0x18,0x79,0x15,0x23,0x1f,0x62,0xe4,0x2b,0x8c,0xfc,0x8a, +0x51,0x36,0x8c,0xca,0x8a,0x51,0xfe,0x18,0x35,0x19,0xa3,0x22, +0x31,0xea,0x35,0x46,0x7d,0xc5,0x68,0x2f,0x8c,0x2e,0x8d,0xd1, +0xa3,0x30,0x7a,0x2a,0x46,0xaf,0xc7,0x98,0x64,0x18,0xd3,0x12, +0x63,0xc6,0x63,0xcc,0x06,0x8c,0xf9,0x89,0xb1,0x59,0x30,0xb6, +0x0b,0xc6,0x6e,0xc0,0xd8,0x73,0x18,0xfb,0x12,0xe3,0x92,0x63, +0x5c,0x01,0x8c,0xab,0x86,0x71,0xdd,0x31,0x6e,0x22,0xc6,0x1d, +0xc1,0xf8,0xf4,0x18,0xdf,0x12,0xe3,0xa3,0x31,0x7e,0x07,0xc6, +0x9f,0xc7,0x84,0xb4,0x98,0xd0,0x0e,0x13,0x22,0x31,0xe1,0x19, +0x26,0x06,0x61,0xe2,0x68,0x4c,0x3c,0x84,0x89,0x5f,0x31,0xa9, +0x0c,0x26,0x0d,0xc1,0xa4,0x55,0x98,0x74,0x1b,0x93,0x53,0x61, +0x72,0x46,0x4c,0x1e,0x88,0xc9,0x73,0x31,0xf9,0x16,0x26,0x7f, +0xc4,0x94,0x44,0x98,0xd2,0x0a,0x53,0xfa,0x62,0xca,0x65,0x4c, +0xf5,0xc1,0xd4,0x36,0x98,0x3a,0x14,0x53,0x63,0x30,0xf5,0x30, +0xa6,0xde,0xc1,0xd4,0x6f,0x98,0x96,0x05,0xd3,0xf2,0x60,0x5a, +0x10,0xa6,0x2d,0x83,0x99,0x62,0x4d,0x6f,0x8c,0xe9,0x11,0x98, +0xbe,0x0b,0xd3,0x8f,0x62,0xfa,0x6f,0xcc,0x70,0xc7,0x8c,0xb2, +0x98,0x31,0x18,0x33,0xb6,0x61,0x46,0x3c,0x66,0x7a,0x61,0x66, +0x2e,0xcc,0x2c,0x84,0x99,0xe5,0x30,0xb3,0x09,0x66,0x0e,0xc7, +0xcc,0x4d,0x98,0xf9,0x02,0xb3,0x12,0x63,0x56,0x06,0xcc,0xaa, +0x8f,0x59,0x91,0x98,0x75,0x03,0xb3,0x3e,0x60,0xd6,0x4f,0xcc, +0xae,0x8c,0xd9,0x6d,0x30,0x7b,0x25,0x66,0xc7,0x62,0xf6,0x29, +0xcc,0xfe,0x81,0x39,0xa9,0x30,0x27,0x17,0xe6,0xf8,0x61,0x4e, +0x30,0xe6,0xd4,0xc2,0x9c,0x0e,0x98,0x33,0x08,0x73,0x16,0x60, +0x4e,0x38,0xe6,0x6c,0xc4,0x9c,0x9d,0x98,0x73,0x14,0x73,0xce, +0x63,0xce,0x5d,0xcc,0x79,0x83,0xb9,0x79,0x30,0xb7,0x16,0xe6, +0x0e,0xc3,0xdc,0x19,0x98,0x1b,0x83,0xb9,0x0e,0xcc,0xfd,0x83, +0x79,0xb9,0x31,0x2f,0x04,0xf3,0xba,0x63,0xde,0x5c,0xcc,0x5b, +0x81,0x79,0xeb,0x31,0xef,0x1e,0xe6,0xbd,0xc4,0xbc,0xcf,0x98, +0xf7,0x0f,0xf3,0xd3,0x62,0x7e,0x43,0xcc,0x9f,0x89,0xf9,0x17, +0x30,0xff,0x3b,0x16,0x04,0x62,0x41,0x55,0x2c,0xe8,0x80,0x05, +0xe3,0xb1,0x60,0x39,0x16,0x6c,0xc3,0x82,0xbb,0x30,0xd3,0xee, +0x85,0x79,0xb0,0xb0,0x3e,0x16,0xce,0xc5,0xc2,0xf3,0x58,0x94, +0x18,0x8b,0xbc,0xb1,0xa8,0x38,0x16,0xb5,0xc4,0xa2,0x39,0x58, +0x74,0x0c,0x8b,0x9c,0x58,0xec,0x89,0xc5,0x15,0xb0,0xb8,0x1b, +0x16,0x8f,0xc3,0xe2,0x99,0x58,0x1c,0x8e,0xc5,0x1b,0xb0,0xf8, +0x2e,0x16,0xff,0xc6,0x92,0x54,0x58,0x52,0x1f,0x4b,0xe6,0x60, +0xc9,0x1a,0x2c,0x79,0x82,0xa5,0x89,0xb1,0xd4,0x8e,0xa5,0xcd, +0xb0,0xb4,0x37,0x96,0x0e,0xc7,0xd2,0xb9,0x58,0x1a,0x89,0xa5, +0x67,0xb0,0xf4,0x3e,0x96,0xa5,0xc2,0xb2,0x60,0x2c,0xeb,0x88, +0x65,0x93,0xb1,0x6c,0x3f,0x96,0x17,0xc1,0xf2,0x66,0x58,0x3e, +0x0f,0xcb,0x37,0x61,0xf9,0x61,0x2c,0x7f,0x86,0x15,0x6e,0x58, +0x91,0x11,0x2b,0xaa,0x61,0xc5,0x48,0xac,0x98,0x82,0x15,0xcb, +0xb1,0xe2,0x1c,0x56,0xdc,0xc3,0x8a,0xdf,0x58,0x99,0x11,0x2b, +0x03,0xb1,0xb2,0x0c,0x56,0x86,0x60,0x65,0x3d,0xac,0x6c,0x89, +0x95,0x63,0xb1,0x72,0x1d,0x56,0x5e,0xc2,0xca,0x0f,0x58,0xe5, +0x85,0x55,0xa5,0xb1,0xaa,0x35,0x56,0x4d,0xc6,0xaa,0x6d,0x58, +0x15,0x87,0xb0,0x44,0x08,0xf3,0x45,0x58,0x05,0x84,0xf5,0x44, +0xd8,0x04,0x84,0xad,0x40,0xd8,0x7a,0x84,0xed,0x44,0xd8,0x25, +0x98,0xa9,0x6b,0x78,0x6a,0x84,0x07,0x20,0xbc,0x2e,0xc2,0xfb, +0x20,0x7c,0x1c,0xc2,0x17,0x23,0x7c,0x13,0xc2,0xcf,0x21,0xfc, +0x01,0xc2,0xdf,0x20,0xfc,0x2f,0x56,0xa7,0xc4,0xea,0x82,0x58, +0x5d,0x07,0xab,0x07,0x63,0xf5,0x32,0xac,0x3e,0x82,0xd5,0x5f, +0x10,0x61,0x43,0x44,0x36,0x44,0x94,0x47,0x44,0x67,0x44,0x4c, +0x45,0xc4,0x0a,0x44,0xac,0x43,0xc4,0x36,0x44,0x1c,0x40,0xc4, +0x69,0x44,0x5c,0x43,0xc4,0x63,0x44,0x7c,0x80,0x99,0x02,0xaf, +0x49,0x8b,0x35,0xd9,0xb1,0xa6,0x38,0xd6,0x34,0xc1,0x9a,0x7e, +0x58,0x33,0x16,0x6b,0xe6,0x62,0xcd,0x26,0xac,0xd9,0x8f,0x35, +0xe7,0xb1,0xe6,0x19,0xd6,0x7c,0xc2,0xda,0x6c,0x58,0x5b,0x0e, +0x6b,0x7b,0x61,0xed,0x20,0xac,0x1d,0x85,0xb5,0xab,0xb1,0xf6, +0x38,0xd6,0xbe,0xc1,0xda,0xaf,0x88,0xcc,0x82,0x48,0x1f,0x44, +0xfa,0x23,0xb2,0x38,0x22,0x2b,0x20,0xb2,0x16,0x22,0x9b,0x22, +0xb2,0x2b,0x22,0x87,0x20,0x72,0x0a,0x22,0x63,0x10,0x79,0x07, +0x91,0x7f,0xb0,0x2e,0x19,0xd6,0x79,0x60,0x5d,0x3e,0xac,0xab, +0x85,0x75,0x7d,0xb0,0x6e,0x38,0xd6,0x2d,0xc5,0xba,0x83,0x58, +0x77,0x0d,0xeb,0x7e,0x61,0x7d,0x6e,0xac,0xaf,0x8d,0xf5,0x4d, +0xb0,0xbe,0x0d,0xd6,0xf7,0xc6,0xfa,0x31,0x58,0xbf,0x11,0xeb, +0x77,0x62,0xfd,0x55,0xac,0x7f,0x8d,0xa8,0x6c,0x88,0xaa,0x89, +0xa8,0xe1,0x88,0x9a,0x88,0xa8,0xd9,0x88,0xda,0x8b,0xa8,0x13, +0x88,0x7a,0x83,0x68,0x1b,0xa2,0xcb,0x21,0xba,0x2f,0xa2,0x17, +0x20,0xfa,0x20,0xa2,0x9f,0x61,0x83,0x0d,0x1b,0x02,0xb1,0xa1, +0x1a,0x36,0xd4,0xc3,0x86,0x61,0xd8,0x10,0x86,0x0d,0x1b,0xb0, +0xe1,0x0a,0x36,0x7c,0xc1,0x46,0x6f,0x6c,0xac,0x84,0x8d,0x0d, +0xb1,0xb1,0x13,0x36,0xce,0xc3,0xc6,0x55,0xd8,0x78,0x02,0x1b, +0x5f,0x61,0xe3,0x67,0x6c,0xfc,0x8b,0x4d,0xc9,0xb1,0xa9,0x38, +0x36,0xb5,0xc2,0xa6,0x61,0xd8,0xb4,0x11,0x9b,0x76,0x60,0xd3, +0x61,0x6c,0x4a,0xc0,0x66,0x0f,0x6c,0xf6,0xc6,0xe6,0x42,0xd8, +0x5c,0x06,0x9b,0xab,0x60,0x73,0x23,0x6c,0xee,0x80,0xcd,0x3d, +0xb1,0x79,0x12,0x36,0x87,0x63,0xf3,0x56,0x6c,0x3e,0x81,0xcd, +0xd7,0xb0,0xf9,0x21,0x36,0xff,0xc5,0x16,0x6f,0x6c,0xf1,0xc1, +0x96,0x1a,0xd8,0xd2,0x09,0x5b,0x86,0x60,0xcb,0x0c,0x6c,0xd9, +0x84,0x2d,0xe7,0xb1,0xe5,0x33,0xb6,0xa6,0xc7,0xd6,0x02,0xd8, +0x5a,0x06,0x5b,0x9b,0x62,0xeb,0x20,0x6c,0x1d,0x83,0xad,0x4b, +0xb1,0x75,0x0b,0xb6,0xde,0xc5,0xd6,0xe7,0x88,0x71,0x43,0x4c, +0x2e,0xc4,0x94,0x47,0x4c,0x4d,0xc4,0xf4,0x40,0xcc,0x14,0xc4, +0x6c,0x40,0xcc,0x59,0xc4,0xbc,0xc2,0xb6,0xb4,0xd8,0x56,0x1c, +0xdb,0xda,0x62,0xdb,0x08,0x6c,0x0b,0xc3,0xb6,0x93,0xd8,0x76, +0x15,0xdb,0x3e,0x60,0x7b,0x5a,0x6c,0xf7,0xc6,0xf6,0xb2,0xd8, +0xde,0x1a,0xdb,0x47,0x61,0x7b,0x38,0xb6,0xc7,0x62,0xfb,0x0d, +0x6c,0x7f,0x80,0xed,0xaf,0xb0,0xfd,0x2b,0x62,0x93,0x23,0x36, +0x1d,0x62,0xf3,0x22,0xb6,0x04,0x62,0x2b,0x22,0xb6,0x36,0x62, +0x9b,0x21,0xb6,0x03,0x62,0x07,0x22,0x76,0x0a,0x62,0x97,0x20, +0x36,0x1a,0xb1,0x07,0x11,0x7b,0x09,0xb1,0x0f,0x10,0xfb,0x0f, +0x3b,0xfc,0xb0,0xa3,0x1e,0x76,0x4c,0xc7,0x8e,0x30,0xec,0xd8, +0x8b,0x1d,0x0f,0xb1,0x33,0x03,0x76,0x96,0xc5,0xce,0x5a,0xd8, +0xd9,0x0f,0x3b,0x67,0x60,0xe7,0x22,0xec,0x8c,0xc0,0xce,0xcd, +0xd8,0x79,0x12,0x3b,0x1d,0xd8,0x19,0x8f,0x9d,0xdf,0xb0,0xcb, +0x07,0xbb,0x2a,0x62,0x57,0x5f,0xec,0x9a,0x83,0x5d,0xeb,0xb1, +0x6b,0x3b,0x76,0x9d,0xc4,0xae,0x47,0xd8,0xf5,0x13,0xbb,0xb3, +0x63,0x77,0x10,0x76,0xf7,0xc2,0xee,0x05,0xd8,0x7d,0x08,0xbb, +0xdf,0x62,0x4f,0x2e,0xec,0xa9,0x8f,0x3d,0x2d,0xb1,0xa7,0x13, +0xf6,0x0c,0xc2,0x9e,0xa9,0xd8,0x73,0x04,0x7b,0xce,0x63,0xcf, +0x77,0xec,0x2d,0x8c,0xbd,0x3d,0xb0,0x37,0x0c,0x7b,0xa3,0xb1, +0xf7,0x1a,0xf6,0xbe,0xc7,0x3e,0x1f,0xec,0x0b,0xc4,0xbe,0xba, +0xd8,0x37,0x06,0xfb,0xa6,0x63,0xdf,0x69,0xec,0x4f,0x8c,0xfd, +0xfe,0xd8,0xdf,0x1a,0xfb,0x27,0x61,0xff,0x76,0xec,0x3f,0x88, +0xfd,0xa7,0xb0,0xff,0x32,0xf6,0x3b,0xb1,0xff,0x31,0xf6,0x7f, +0xc7,0x01,0x37,0x1c,0x08,0xc4,0x81,0x20,0x1c,0x18,0x84,0x03, +0x3b,0x71,0xe0,0x3d,0x0e,0x26,0xc2,0xc1,0x8c,0x38,0xd8,0x1b, +0x07,0x87,0xe1,0xe0,0x7a,0x1c,0x8c,0xc3,0x21,0x1b,0x0e,0x95, +0xc7,0xa1,0xea,0x38,0xd4,0x12,0x87,0xba,0xe0,0xd0,0x12,0x1c, +0xba,0x8a,0xc3,0x49,0x70,0xb8,0x20,0x0e,0x57,0xc6,0xe1,0x2e, +0x38,0x3c,0x02,0x87,0x67,0xe3,0xf0,0x12,0x1c,0x5e,0x8d,0xc3, +0x47,0x70,0xd8,0x89,0xc3,0x6f,0x70,0xc4,0x0d,0x47,0xf2,0xe2, +0x48,0x29,0x1c,0xa9,0x84,0x23,0x3d,0x70,0x64,0x04,0x8e,0xac, +0xc6,0x91,0xfd,0x38,0x72,0x01,0x47,0x5e,0xe1,0xa8,0x37,0x8e, +0xb6,0xc4,0xd1,0x39,0x38,0xba,0x13,0x47,0x4f,0xe1,0xe8,0x1b, +0x1c,0x03,0x8e,0xa5,0xc3,0xb1,0xfc,0x38,0x56,0x0b,0xc7,0x7a, +0xe3,0xd8,0x58,0x1c,0x0b,0xc3,0xb1,0x03,0x38,0x76,0x0b,0xc7, +0x93,0xe0,0x78,0x7a,0x1c,0xaf,0x86,0xe3,0xa3,0x71,0x7c,0x3e, +0x8e,0x47,0xe0,0xf8,0x51,0x9c,0x20,0x4e,0x64,0xc3,0x89,0x41, +0x38,0x11,0x86,0x13,0x0f,0x70,0xe2,0x13,0x4e,0x36,0xc4,0xc9, +0x41,0x38,0xb9,0x09,0x27,0x9f,0xe2,0xe4,0x1f,0x6b,0x2f,0xfa, +0x53,0x76,0x9c,0xaa,0x69,0x6d,0xda,0x7d,0x6a,0xa7,0xb5,0xd5, +0xf4,0xe9,0x2c,0xd6,0x86,0xbd,0xa7,0x6b,0x58,0xdb,0xb4,0x9e, +0x7e,0x62,0x6d,0x96,0x79,0x26,0x93,0xb5,0x65,0xe2,0x99,0xd6, +0xd6,0x46,0x7d,0x67,0x2e,0xe1,0xcc,0x5f,0x9c,0x4d,0x67,0x6d, +0x20,0x76,0xb6,0xb7,0xb5,0x35,0xd0,0xd9,0xef,0x38,0x97,0x1b, +0xe7,0x5a,0x59,0xdb,0x68,0x9c,0x0b,0xb7,0x36,0x8b,0x38,0xf7, +0xc1,0xda,0x52,0xe0,0xbc,0x0f,0xce,0x87,0x58,0x6b,0xae,0x9f, +0x3f,0x6f,0xad,0xdc,0x7d,0x21,0xa9,0xb5,0x16,0xf3,0x85,0x49, +0xb8,0x70,0xdd,0x5a,0x4c,0xf6,0x62,0x2a,0x5c,0xcc,0x64,0xad, +0x28,0x7a,0xb1,0x37,0x2e,0x0e,0xb5,0x96,0x71,0xbc,0x94,0xc8, +0x5a,0x90,0xee,0xd2,0x20,0x6b,0xd9,0xaf,0xcb,0xc9,0xad,0x45, +0x88,0x2e,0x6f,0xc6,0xe5,0x07,0xd6,0x0a,0x29,0x57,0xb2,0x58, +0x6b,0x64,0x5c,0xd9,0x6b,0xad,0x02,0x70,0xb5,0x02,0xae,0xb6, +0xb6,0x2e,0xc3,0xbe,0xba,0x15,0x57,0x13,0x70,0xf5,0x93,0x75, +0xb9,0xe0,0xb5,0x18,0x5c,0x7b,0x6f,0x5d,0xfb,0x74,0xdd,0xdf, +0xba,0x8a,0xe6,0xfa,0x62,0x5c,0x5f,0x6f,0x5d,0x52,0x70,0xfd, +0xa1,0x75,0x52,0xfb,0x8d,0x7a,0xb8,0x31,0x0c,0x37,0x1e,0x58, +0x27,0x27,0xde,0x6c,0x6a,0x9d,0x22,0x76,0xf3,0xad,0x75,0x92, +0x4e,0x5c,0x2e,0xeb,0x54,0x89,0xb8,0x33,0x70,0xd8,0xac,0xef, +0x08,0x1d,0x6b,0xac,0x6f,0x42,0x1c,0xaf,0xad,0xff,0xd3,0x75, +0xee,0xc2,0xad,0x74,0xb8,0x55,0x12,0xb7,0x06,0xe3,0xd6,0x26, +0xdc,0x7a,0x8b,0x5b,0xbf,0x70,0x3b,0x19,0x6e,0xa7,0xc3,0xed, +0x9c,0xb8,0x1d,0x88,0xdb,0x3d,0x71,0x7b,0x03,0x6e,0x9f,0xc4, +0xed,0x9b,0xb8,0xfd,0x1f,0x6e,0xff,0xc3,0x9d,0x14,0xb8,0x53, +0x00,0x77,0xfa,0xe3,0xce,0x08,0xdc,0x79,0x89,0xbb,0x36,0xdc, +0xf5,0xc7,0xdd,0xba,0xb8,0xdb,0x1c,0x77,0xc3,0x70,0xf7,0x38, +0xee,0x01,0xf7,0x4a,0xe3,0x5e,0x55,0xdc,0x6b,0x8c,0x7b,0x03, +0x70,0x6f,0x3b,0xee,0x1d,0xc3,0xbd,0xeb,0xb8,0xf7,0x12,0xf7, +0x53,0xe3,0x7e,0x27,0xdc,0x0f,0xc5,0xfd,0x30,0xdc,0x3f,0x87, +0x07,0x69,0xf0,0xa0,0x35,0x1e,0x6c,0xc1,0x83,0x6b,0x78,0x98, +0x0f,0x0f,0xcb,0xe1,0x61,0x2b,0x3c,0xec,0x82,0x87,0x7d,0xf1, +0x70,0x16,0x1e,0xee,0xc6,0xa3,0x42,0x78,0xd4,0x18,0x8f,0x7a, +0xe3,0xd1,0x44,0x3c,0x72,0xe2,0x71,0x16,0x3c,0xee,0x8a,0xc7, +0x7d,0xf1,0x78,0x28,0x1e,0x4f,0xc5,0xe3,0x65,0x78,0xfc,0x14, +0x8f,0xdf,0xe2,0x49,0x71,0x3c,0x29,0x87,0x27,0x4b,0xf0,0xe4, +0x36,0x9e,0x16,0xc5,0xd3,0xaa,0x78,0xda,0x09,0x4f,0xe7,0xe0, +0xe9,0x49,0x3c,0x7d,0x89,0x67,0xc4,0xb3,0xe6,0x78,0xb6,0x0d, +0xcf,0x93,0xe2,0x79,0x1a,0x3c,0xcf,0x83,0xe7,0xa5,0xf1,0x7c, +0x2e,0x9e,0xdf,0xc5,0xf3,0x5f,0x88,0x2f,0x8f,0xf8,0x85,0x88, +0x8f,0x41,0xfc,0x51,0xc4,0x5f,0x43,0x7c,0x3c,0xe2,0x7f,0xe1, +0x85,0x27,0x5e,0xe4,0xc7,0x8b,0x52,0x78,0x31,0x1d,0x2f,0x62, +0xf1,0xd2,0x0d,0x2f,0x73,0xe1,0x65,0x03,0xbc,0x3c,0x8f,0x84, +0x1a,0x48,0xe8,0x8e,0x84,0x70,0x24,0xbc,0xc0,0x2b,0x1b,0x5e, +0x35,0xc5,0xab,0xcd,0x78,0x75,0x01,0xaf,0x9e,0xe0,0x75,0x66, +0xbc,0x2e,0x8d,0xd7,0x35,0xf1,0x7a,0x38,0x5e,0x5f,0xc3,0x9b, +0xac,0x78,0x33,0x08,0x6f,0xd6,0xe2,0xcd,0x01,0xbc,0xb9,0x8f, +0xb7,0x75,0xf0,0xb6,0x39,0xde,0x8e,0xc2,0xdb,0xd3,0x78,0x7b, +0x0f,0xef,0xec,0x78,0x17,0x8c,0x77,0x75,0xf1,0xae,0x37,0xde, +0x2d,0xc4,0xbb,0xad,0x78,0x77,0x1a,0xef,0x9e,0xe0,0xdd,0x07, +0xfc,0x47,0xfc,0x57,0x0d,0xff,0xb5,0xc4,0x7f,0xd7,0xf0,0xdf, +0x7b,0xbc,0xef,0x8a,0xf7,0x91,0x78,0x7f,0x0a,0x1f,0xdc,0xf0, +0xa1,0x13,0x3e,0x0c,0xc7,0x07,0xf3,0xf3,0x1b,0x7c,0x4c,0x82, +0x8f,0x85,0xf1,0x31,0x04,0x1f,0x87,0xe1,0xe3,0x35,0x7c,0x4c, +0xc0,0x27,0x3f,0x7c,0xaa,0x88,0x4f,0xed,0xf0,0x69,0x28,0x3e, +0xed,0xc0,0xa7,0x9f,0xf8,0x1c,0x82,0xcf,0xf3,0xf1,0xf9,0x21, +0x3e,0xbf,0xc3,0xe7,0x3f,0xf8,0x92,0x12,0x5f,0xf2,0xe0,0x4b, +0x00,0xbe,0xf4,0xc6,0x97,0xe1,0xf8,0x72,0x1c,0x5f,0x5e,0xe0, +0x6b,0x41,0x7c,0xed,0x8e,0xaf,0xbb,0xf1,0xf5,0x2d,0xbe,0x15, +0xc1,0xb7,0x72,0xf8,0x56,0x1d,0xdf,0x66,0xe1,0xdb,0x35,0x7c, +0xf7,0xc2,0xf7,0x4a,0xf8,0x1e,0x8a,0xef,0x83,0xf1,0x7d,0x0a, +0xbe,0xcf,0xc5,0xf7,0xbd,0xf8,0xfe,0x1e,0xdf,0x7f,0xe0,0x47, +0x0a,0xfc,0xc8,0x83,0x1f,0xc5,0xf0,0xa3,0x0e,0x7e,0x34,0xc5, +0x8f,0x55,0xf8,0x71,0x11,0x3f,0xcb,0xe2,0x67,0x1b,0xfc,0xbc, +0x85,0x9f,0x2f,0xf1,0x2b,0x0b,0x7e,0x55,0xc2,0xaf,0xb6,0xf8, +0x35,0x1f,0xbf,0x56,0xe2,0xd7,0x61,0xfc,0xfa,0x87,0xdf,0x13, +0xf0,0xfb,0x2d,0xfe,0xd4,0xc2,0x9f,0x7e,0xf8,0x33,0x02,0x7f, +0x56,0xe2,0xcf,0x79,0xfc,0x49,0xc0,0x5f,0xe1,0x6f,0x76,0xfc, +0x8d,0xc6,0xbf,0x0c,0xf8,0x37,0x13,0xff,0x16,0xe3,0xdf,0x36, +0xa2,0x04,0xad,0xc2,0x7e,0x4d,0x0e,0x25,0xbf,0x53,0x03,0xa9, +0x67,0x74,0x6b,0x45,0x37,0x07,0xdd,0x1e,0xd1,0xed,0x15,0xdd, +0x3e,0xd3,0xed,0x2f,0x13,0xe5,0x60,0xa2,0x82,0x4c,0x14,0xce, +0x44,0xc7,0x99,0xb8,0x3c,0x13,0x37,0x67,0xe2,0xee,0x4c,0xbc, +0x81,0x49,0xfc,0x98,0xa4,0x02,0x93,0x1c,0x66,0xd2,0x10,0x26, +0x1d,0xcb,0xa4,0x33,0x98,0xf4,0x07,0x93,0x25,0x62,0xb2,0x09, +0x4c,0x36,0x8b,0xc9,0x93,0x30,0xb9,0x37,0x93,0x2f,0x66,0xf2, +0x75,0x4c,0x7e,0x98,0xc9,0x6f,0x30,0x79,0x3c,0x53,0x74,0x60, +0x8a,0x81,0x4c,0x31,0x86,0xb6,0x1c,0xb4,0xcd,0xa2,0x2d,0x8c, +0x29,0x7d,0x99,0x32,0x9a,0xa9,0xbc,0x98,0xaa,0x0c,0x53,0x6d, +0x63,0xea,0x3c,0x4c,0xbd,0x8c,0xa9,0xd7,0x32,0xf5,0x16,0xa6, +0xde,0xc3,0xd4,0x97,0x99,0xfa,0x36,0xd3,0x54,0x61,0x9a,0xb3, +0x4c,0x5b,0x95,0x69,0x47,0x33,0xed,0x01,0xba,0x17,0xa1,0x7b, +0x2d,0xba,0xb7,0xa5,0xbb,0x93,0x1e,0x0d,0xe8,0xd1,0x99,0x1e, +0x97,0xe8,0xf1,0x84,0x9e,0x89,0xe9,0x99,0x99,0x9e,0xfe,0xf4, +0x2c,0x45,0xcf,0x61,0xf4,0x9c,0x40,0xcf,0x3d,0xf4,0x7c,0x45, +0xcf,0x1f,0x4c,0x97,0x8c,0xe9,0x4a,0x33,0x5d,0x0d,0xa6,0xeb, +0xc6,0x74,0xa7,0x99,0x2e,0x8e,0xe9,0x93,0x31,0x7d,0x30,0xd3, +0xf7,0x63,0xfa,0x71,0x4c,0x3f,0x83,0xe9,0x97,0x33,0x7d,0x34, +0xd3,0x7f,0xa4,0x57,0x6a,0x7a,0x75,0xa2,0x57,0x28,0xbd,0xe6, +0xd2,0x6b,0x07,0x33,0x24,0x67,0x06,0x4f,0x66,0x28,0xc9,0x0c, +0x95,0x98,0x61,0x02,0x33,0xcc,0x62,0x86,0x95,0xcc,0xb0,0x9f, +0x19,0xce,0x32,0xc3,0x2f,0x66,0x2c,0xc2,0x8c,0x9d,0x98,0x71, +0x20,0x33,0x4e,0x60,0xc6,0xf9,0xcc,0xf8,0x91,0x99,0x1a,0x32, +0x53,0x7f,0x66,0x5a,0xc3,0x4c,0x17,0x98,0xe9,0x27,0x33,0x87, +0x30,0xf3,0x3c,0x66,0x7e,0xc4,0x2c,0x81,0xcc,0x32,0x8c,0x59, +0x26,0x32,0xcb,0x6c,0x66,0x59,0xc6,0x2c,0x91,0xcc,0x12,0x4f, +0xef,0xfc,0xf4,0x1e,0x4c,0xef,0x53,0xcc,0x9a,0x8e,0x59,0x5b, +0x33,0xeb,0x3a,0x66,0xfd,0xc0,0xac,0x3f,0x99,0x2d,0x2f,0xb3, +0xf5,0x67,0xb6,0x23,0xcc,0x9e,0x8a,0xd9,0xbd,0x98,0xdd,0xce, +0xec,0x15,0x99,0x7d,0x1e,0xb3,0x9f,0x66,0x0e,0x1b,0x73,0xb4, +0x65,0x8e,0xf9,0xcc,0xb1,0x9b,0x39,0x93,0x32,0xa7,0x3b,0x73, +0x16,0x64,0xce,0x4a,0xcc,0xd9,0x9a,0x39,0xc7,0x31,0xe7,0x41, +0xe6,0x7c,0xc3,0x5c,0x59,0x98,0x2b,0x88,0xb9,0x42,0x98,0x6b, +0x2a,0x73,0x45,0x31,0x77,0x12,0xe6,0xee,0xc6,0xdc,0x23,0x98, +0x7b,0x22,0x73,0xaf,0x62,0xee,0xdd,0xcc,0x93,0x81,0x79,0x6a, +0x31,0x4f,0x57,0xe6,0x89,0x65,0x9e,0x07,0xf4,0xc9,0x44,0x9f, +0x36,0xf4,0x59,0x48,0x9f,0x30,0xfa,0xac,0xa7,0xcf,0x36,0xfa, +0xec,0xa3,0xcf,0x71,0xfa,0x5c,0xa4,0xcf,0x4f,0xe6,0x4d,0xcc, +0xbc,0xe5,0x99,0x77,0x28,0xf3,0xce,0x61,0xde,0x67,0xcc,0x97, +0x81,0xf9,0x5a,0x33,0x5f,0x57,0xe6,0xeb,0xcb,0x7c,0x63,0x99, +0x6f,0x06,0xf3,0x1d,0x61,0xbe,0x2b,0xcc,0xf7,0x88,0xf9,0xde, +0x33,0x7f,0x05,0xe6,0xef,0xcd,0xfc,0x57,0x99,0xff,0x1d,0xf3, +0xff,0x63,0x01,0x7f,0x16,0xa8,0xce,0x02,0x1d,0x58,0x60,0x0f, +0x0b,0xbc,0x66,0xc1,0x40,0x16,0x2c,0xcd,0x82,0x95,0x59,0xb0, +0x2e,0x0b,0x4e,0x60,0xc1,0x45,0x2c,0xb8,0x8d,0xbe,0xa4,0x6f, +0x2d,0xfa,0x6e,0xa0,0x6f,0x2c,0x7d,0x7f,0xd3,0x9e,0x94,0xf6, +0x26,0xb4,0x2f,0xa5,0xfd,0x1a,0xed,0x77,0xe9,0x97,0x84,0x7e, +0x69,0xe9,0x97,0x9d,0x7e,0x7e,0xf4,0x6b,0x44,0xbf,0x36,0xf4, +0x1b,0x4a,0xbf,0xf1,0xf4,0x9b,0x49,0xbf,0x43,0xf4,0xbb,0x40, +0xff,0x94,0xf4,0xcf,0x46,0xff,0x96,0xf4,0xef,0x4c,0xff,0x21, +0xf4,0x9f,0x4e,0xff,0xe5,0xf4,0xdf,0x42,0xff,0xbb,0x0c,0xc8, +0xcc,0x80,0x2a,0x0c,0x58,0xc3,0x80,0x0b,0x0c,0xb8,0xcd,0xc0, +0x94,0x0c,0x0c,0x60,0x60,0x63,0x06,0x2e,0x66,0xe0,0x66,0x06, +0x7e,0x60,0xa1,0xe4,0x2c,0x94,0x9b,0x85,0x8a,0xb1,0x50,0x75, +0x16,0x6a,0xc3,0x42,0x03,0x59,0x68,0x1d,0x0b,0xc5,0xb0,0xd0, +0x6b,0x16,0x4e,0xc4,0xc2,0xa9,0x59,0xd8,0x97,0x85,0xbb,0xb2, +0x70,0x2c,0x0b,0x1f,0x61,0x91,0xc4,0x2c,0x52,0x98,0x45,0x3a, +0xb2,0xc8,0x1a,0x16,0xb9,0xc2,0x22,0x77,0x59,0xe4,0x19,0x8b, +0xbc,0x65,0x51,0x6f,0x16,0x2d,0xc1,0xa2,0x4d,0x59,0x74,0x36, +0x8b,0x6e,0x60,0xd1,0xeb,0x2c,0x7a,0x8f,0x45,0x5f,0xb0,0xe8, +0x27,0x16,0x23,0x8b,0xa5,0x67,0xb1,0x66,0x2c,0x16,0xce,0x62, +0x97,0x59,0xec,0x33,0x8b,0xfb,0xb0,0x78,0x08,0x8b,0x77,0x65, +0xf1,0x39,0x2c,0x7e,0x85,0x25,0x3c,0x58,0xa2,0x19,0x4b,0x74, +0x64,0x89,0xde,0x2c,0x31,0x96,0x25,0xe6,0xb1,0x44,0x34,0x4b, +0xec,0x60,0x89,0x1f,0x2c,0x59,0x86,0x25,0x07,0xb3,0xe4,0x06, +0x96,0x7c,0xc5,0x52,0xbe,0x2c,0x55,0x9c,0xa5,0xda,0xb0,0xd4, +0x7a,0x96,0xda,0xce,0x52,0x07,0x58,0xea,0x0c,0x4b,0x3d,0x63, +0xe9,0x64,0x2c,0x9d,0x8d,0xa5,0xcb,0xb3,0xf4,0x52,0x96,0x5e, +0xc3,0xd2,0xfb,0x58,0xfa,0x03,0xcb,0x88,0x65,0xca,0xb1,0x4c, +0x07,0x96,0xd9,0xc0,0x32,0x3b,0x58,0xc6,0xc9,0x32,0xbf,0x19, +0x94,0x9b,0x41,0xd5,0x19,0xd4,0x97,0x41,0x7b,0x19,0x74,0x92, +0x41,0x57,0x18,0x74,0xd7,0xfa,0x9a,0xa2,0x6c,0x2e,0x96,0x6d, +0xc6,0xb2,0xe1,0x2c,0x97,0x94,0xe5,0x3c,0x58,0xae,0x32,0xcb, +0xcd,0x67,0xb9,0x37,0x2c,0x9f,0x82,0xe5,0x5b,0xb2,0xfc,0x78, +0x96,0x5f,0xc9,0xf2,0xbb,0x59,0xfe,0x2a,0xcb,0xbf,0x66,0x70, +0x7a,0x06,0x17,0x65,0xf0,0x5c,0x06,0x6f,0x67,0xf0,0x0d,0x06, +0x7f,0x64,0x85,0x72,0xac,0xb0,0x90,0x15,0x3e,0xb1,0xc2,0x1f, +0x56,0x4c,0xc3,0x8a,0x45,0x58,0x71,0x26,0x2b,0xbe,0x66,0xa5, +0x60,0x56,0xea,0xc1,0x4a,0xc7,0x59,0xe9,0x09,0x2b,0x27,0x66, +0xe5,0xdc,0xac,0xdc,0x88,0x95,0x87,0xb3,0x72,0x38,0x2b,0xef, +0x67,0x95,0x4c,0xac,0xd2,0x9e,0x55,0x62,0x19,0x92,0x9c,0x21, +0xe9,0x18,0x92,0x9d,0x21,0x01,0x0c,0x29,0xc3,0x90,0xd9,0x0c, +0x59,0xc6,0x90,0x48,0x86,0xec,0x65,0xc8,0x65,0x56,0x0d,0x60, +0xd5,0x06,0xac,0x7a,0x98,0x55,0xcf,0xb1,0x9a,0x8d,0xd5,0xec, +0xac,0x56,0x8e,0xd5,0x6a,0xb0,0xda,0x59,0x56,0xaf,0xc3,0xea, +0xdd,0x59,0x7d,0x02,0xab,0xbf,0x62,0x8d,0x54,0xac,0xd1,0x81, +0x35,0x26,0xb2,0xc6,0x1c,0xd6,0x78,0xc0,0x9a,0x60,0x4d,0x77, +0xd6,0x6c,0xc7,0x9a,0x9b,0x59,0x2b,0x35,0x6b,0x65,0x62,0xad, +0x66,0xac,0xd5,0x81,0xb5,0x56,0xb2,0xd6,0x01,0xd6,0xba,0xcf, +0xda,0x49,0x58,0x3b,0x0f,0x6b,0x97,0x62,0xed,0x3a,0xac,0xdd, +0x89,0xb5,0x63,0x59,0xfb,0x35,0xeb,0x74,0x65,0x9d,0x58,0xd6, +0x39,0xc9,0xba,0x29,0x58,0x37,0x1b,0xeb,0x96,0x65,0xdd,0xfa, +0xac,0xdb,0x9b,0x75,0x0f,0xb2,0xee,0x69,0xd6,0xcb,0xc2,0x7a, +0xa5,0x59,0xaf,0x21,0xeb,0xf5,0x61,0xbd,0xfd,0xac,0x4f,0xd6, +0xaf,0xc7,0xfa,0xed,0x59,0xbf,0x17,0xeb,0x4f,0x63,0xfd,0x45, +0xac,0xef,0x60,0x83,0x54,0x6c,0xd0,0x82,0x0d,0xd6,0xb2,0xc1, +0x71,0x36,0xf4,0x64,0xc3,0xfc,0x6c,0x18,0xc4,0x86,0x0d,0xd8, +0xb0,0x3b,0x1b,0x2e,0x65,0xc3,0x8d,0x6c,0x78,0x96,0x0d,0x1f, +0xb0,0x61,0x02,0x1b,0xfe,0x66,0xa3,0x3c,0x6c,0xe4,0xc7,0x46, +0xc5,0xd9,0xa8,0x0d,0x1b,0x75,0x65,0xa3,0x91,0x6c,0xb4,0x84, +0x8d,0x8e,0xb3,0xd1,0x4d,0x36,0xfa,0xc5,0xc6,0xe9,0xd8,0xb8, +0x35,0x1b,0x77,0x61,0xe3,0x5d,0x6c,0xfc,0x91,0x4d,0x7a,0xb0, +0xc9,0x02,0x36,0x4d,0xcb,0xa6,0x59,0xd8,0xb4,0x3c,0x9b,0x76, +0x63,0xd3,0xb9,0x6c,0xba,0x85,0x4d,0xaf,0xb1,0xe9,0x5d,0x36, +0x7d,0xce,0xa6,0x7f,0xd9,0xac,0x1a,0x9b,0x3d,0x61,0xf3,0x3e, +0x6c,0x1e,0xc6,0x16,0x3e,0x6c,0x51,0x9b,0x2d,0xfa,0xb0,0xc5, +0x2a,0xb6,0x38,0xcf,0x16,0x1f,0xd9,0x32,0x35,0x5b,0xae,0x60, +0xcb,0xf5,0x6c,0x79,0x8e,0xad,0x5a,0xb2,0xd5,0x44,0xb6,0x4e, +0xc6,0xd6,0x93,0xd8,0xfa,0x23,0x5b,0xff,0x66,0x9b,0x24,0x6c, +0x93,0x96,0x6d,0xb2,0xb0,0xcd,0x4a,0xb6,0x59,0xcf,0x36,0xdb, +0xd9,0xe6,0x3c,0xdb,0x36,0x64,0xdb,0xa9,0x6c,0x97,0x8e,0xed, +0xb2,0xb3,0x5d,0x39,0xb6,0xbb,0xcc,0x76,0x0f,0xd9,0xbe,0x3d, +0xdb,0xff,0x66,0x87,0x4c,0xec,0xe0,0xc3,0x0e,0x25,0xd9,0xa1, +0x21,0x3b,0x3c,0x66,0xc7,0x4e,0xec,0xf8,0x92,0x1d,0x3f,0xb2, +0x53,0x0f,0x76,0x1a,0xc9,0x4e,0x4f,0xd9,0xe9,0x03,0x3b,0xdb, +0xd8,0x39,0x3b,0x3b,0x17,0x65,0xe7,0xaa,0xec,0xfc,0x94,0x5d, +0xca,0xb2,0xcb,0x5a,0x76,0xad,0xc8,0xae,0x1b,0xd9,0xad,0x24, +0xbb,0x45,0xb3,0xdb,0x59,0x76,0x4f,0xc6,0xee,0xe3,0xd9,0x7d, +0x39,0xbb,0xff,0x64,0x8f,0x42,0xec,0x11,0xcb,0x1e,0x17,0xd9, +0xb3,0x39,0x7b,0x8e,0x64,0xcf,0x35,0xec,0x79,0x99,0xbd,0x52, +0xb1,0x57,0x6e,0xf6,0xea,0xc6,0x5e,0x03,0xd9,0x6b,0x0c,0x7b, +0x2d,0x67,0xaf,0x75,0xec,0x75,0x8f,0xa1,0xc9,0x18,0x9a,0x95, +0xa1,0xc1,0x0c,0xed,0xca,0xd0,0x08,0x86,0x1e,0x60,0xe8,0x4b, +0xf6,0x4e,0xc7,0xde,0xc5,0xd9,0xbb,0x3a,0x7b,0x0f,0x62,0xef, +0x65,0xec,0xfd,0x8f,0x7d,0x52,0xb0,0x8f,0x3f,0xfb,0x94,0x66, +0x9f,0x0e,0xec,0x13,0xc6,0x3e,0xa7,0xd9,0xe7,0x1a,0xfb,0xbc, +0x67,0xdf,0x54,0xec,0x9b,0x8b,0x7d,0x4b,0xb1,0x6f,0x6b,0xf6, +0xdd,0xcb,0xbe,0x71,0xec,0x57,0x8c,0xfd,0xca,0xb3,0x5f,0x0d, +0xf6,0x6b,0xc2,0x7e,0x43,0xd8,0x6f,0x02,0xfb,0xdd,0x65,0xff, +0x20,0xf6,0x6f,0xc5,0xfe,0x27,0xd8,0xff,0x32,0xfb,0x3f,0x67, +0xff,0x0f,0x1c,0x90,0x96,0x03,0x02,0x38,0xa0,0x0c,0x07,0xac, +0xe5,0xc0,0x94,0x1c,0x98,0x91,0x03,0xf3,0x70,0xe0,0x10,0x0e, +0x7c,0xc8,0x41,0xd5,0x39,0xa8,0x2b,0x07,0xed,0xe3,0xe0,0xa4, +0x1c,0xdc,0x8a,0x83,0xbb,0x72,0x70,0x7f,0x0e,0x1e,0xc9,0xc1, +0x47,0x38,0xf8,0x3c,0x07,0x3f,0xe0,0x90,0x6a,0x1c,0x72,0x8e, +0x43,0xcb,0x70,0x68,0x0b,0x0e,0x9d,0xca,0xa1,0x2b,0x39,0x2c, +0x11,0x87,0xf5,0xe0,0xb0,0x87,0x1c,0xf6,0x8a,0xc3,0x7e,0x73, +0x78,0x5e,0x0e,0x1f,0xcd,0xe1,0x0b,0x38,0xfc,0x3d,0x87,0xff, +0xe2,0x88,0xaa,0x1c,0x11,0xcd,0x11,0x09,0x1c,0x99,0x84,0x23, +0x73,0x72,0x64,0x51,0x8e,0xac,0xc5,0x91,0xbd,0x38,0xf2,0x29, +0x47,0x95,0xe5,0xa8,0x05,0x1c,0xf5,0x99,0xa3,0xc7,0x73,0xf4, +0x4c,0x8e,0xfe,0xce,0x31,0xcd,0x38,0x66,0x10,0xc7,0xac,0xe5, +0x98,0xe7,0x1c,0x5b,0x8f,0x63,0xbb,0x70,0xec,0x1e,0x8e,0xfd, +0xc6,0x71,0x4d,0x39,0x6e,0x38,0xc7,0x2d,0xe7,0xb8,0x7d,0x1c, +0x9f,0x96,0xe3,0xdb,0x71,0xfc,0x21,0x8e,0x3f,0xcb,0xf1,0x37, +0x38,0xfe,0x3d,0xc7,0xff,0xe4,0x84,0x8a,0x9c,0x30,0x9a,0x13, +0x6e,0x70,0x62,0x76,0x4e,0xec,0xc1,0x89,0xa7,0x38,0xf1,0x2a, +0x27,0xde,0xe1,0xc4,0x77,0x9c,0x24,0x4e,0x4a,0xc5,0x49,0xdd, +0x39,0x69,0x1f,0x27,0x9d,0xe2,0xa4,0xbb,0x9c,0xf4,0x82,0x93, +0x3e,0x72,0xd2,0x1f,0x4e,0x4e,0xce,0xc9,0x9e,0x9c,0x9c,0x87, +0x93,0xeb,0x72,0x72,0x7b,0x4e,0x0e,0xe5,0xe4,0x08,0x4e,0xde, +0xc9,0xc9,0xe7,0x39,0xf9,0x25,0xa7,0x14,0xe1,0x94,0x72,0x9c, +0xd2,0x8a,0x53,0xc6,0x72,0xca,0x15,0x4e,0xb9,0xc3,0xa9,0xe0, +0xd4,0x6c,0x9c,0x5a,0x80,0x53,0x8b,0x72,0x6a,0x39,0x4e,0xad, +0xc3,0xa9,0x6d,0x39,0x35,0x92,0x53,0x5f,0x71,0x5a,0x6e,0x4e, +0x2b,0xcb,0x69,0x7d,0x39,0x6d,0x36,0xa7,0x5d,0xe1,0xf4,0xa4, +0x9c,0xee,0xcd,0xe9,0x2d,0x39,0x7d,0x02,0xa7,0x9f,0xe3,0x8c, +0xb4,0x9c,0xd1,0x84,0x33,0x06,0x72,0xc6,0x64,0xce,0x58,0xc6, +0x19,0x4f,0x39,0xe3,0x1d,0x67,0x16,0xe7,0xcc,0xea,0x9c,0xd9, +0x85,0x33,0x37,0x73,0xe6,0x07,0xce,0x2a,0xc0,0x59,0x75,0x38, +0x6b,0x31,0x67,0xdd,0xe1,0xac,0xe7,0x9c,0xed,0xcb,0xd9,0xfd, +0x39,0x3b,0x86,0xb3,0xdf,0x73,0x4e,0x61,0xce,0xa9,0xc9,0x39, +0x13,0x39,0xe7,0x18,0xe7,0x7a,0x71,0x6e,0x13,0xce,0x6d,0xcf, +0xb9,0x7b,0x39,0x2f,0x11,0xe7,0xd5,0xe7,0xbc,0x85,0x9c,0x17, +0xcd,0x79,0x3f,0x39,0xbf,0x04,0xe7,0x87,0x71,0xfe,0x49,0x2e, +0xf0,0xe4,0x82,0xe2,0x5c,0x30,0x9c,0x0b,0xf6,0x71,0xc1,0x17, +0x2e,0x2c,0xc9,0x85,0xc3,0xb8,0x70,0x06,0x17,0x6e,0xe1,0xc2, +0x63,0x5c,0xe8,0xe0,0xc2,0x57,0x5c,0x54,0x9b,0x8b,0x96,0x70, +0xd1,0x7b,0x2e,0x2e,0xc6,0xc5,0x6d,0xb9,0x78,0x1a,0x17,0xbf, +0xe2,0x92,0x1a,0x5c,0xd2,0x98,0x4b,0x56,0x70,0xc9,0x1b,0x2e, +0x0d,0xe4,0xd2,0x61,0x5c,0x3a,0x81,0x4b,0x67,0x73,0xe9,0x72, +0x2e,0x7d,0xc1,0x65,0x89,0xb9,0xac,0x1a,0x97,0xcd,0xe5,0xb2, +0xcd,0x5c,0xf6,0x9e,0xcb,0xf3,0x72,0x79,0x17,0x2e,0x8f,0xe0, +0x8a,0x9c,0x5c,0xd1,0x93,0x2b,0x16,0x70,0xc5,0x6e,0xae,0xf8, +0xc8,0x95,0xc9,0xb9,0xb2,0x02,0x57,0x0e,0xe1,0xca,0xdd,0x5c, +0xf9,0x85,0xab,0xc8,0x55,0x9e,0x5c,0xd5,0x9d,0xab,0xd6,0x70, +0x95,0x83,0x61,0x1e,0x0c,0xcb,0xca,0xb0,0x02,0x0c,0x2b,0xc6, +0xb0,0x9a,0x0c,0x6b,0xc3,0xb0,0x21,0x0c,0x5b,0xc4,0xb0,0x08, +0x86,0x6d,0x61,0xd8,0x5e,0x86,0x9d,0x64,0xd8,0x2f,0x86,0xe7, +0x60,0x78,0x15,0x86,0x0f,0x64,0xf8,0x52,0x86,0x1f,0x64,0xf8, +0x13,0x86,0x7f,0xe7,0xea,0x2c,0x5c,0x9d,0x97,0xab,0x4b,0x70, +0xf5,0x18,0xae,0x3e,0xc4,0xd5,0xf7,0x18,0xe1,0xc9,0x08,0x5f, +0x46,0x14,0x67,0x44,0x43,0x46,0xf4,0x64,0xc4,0x38,0x46,0x84, +0x33,0xe2,0x0a,0x23,0x5e,0x73,0x4d,0x01,0xae,0x69,0xcb,0x35, +0x0b,0xb8,0x66,0x15,0xd7,0x9c,0xe7,0x9a,0x97,0x5c,0x9b,0x85, +0x6b,0x03,0xb8,0xb6,0x0e,0xd7,0x4e,0xe3,0xda,0x18,0xae,0xdd, +0xcf,0xb5,0xcf,0x19,0x99,0x8a,0x91,0xf5,0x18,0x39,0x9f,0x91, +0xbb,0x19,0x19,0xc7,0x75,0xe0,0x3a,0x2f,0xae,0xcb,0xc5,0x75, +0x25,0xb9,0xae,0x16,0xd7,0x75,0xe1,0xba,0x91,0x5c,0x37,0x9d, +0xeb,0xf6,0x71,0xdd,0x2d,0xae,0xb7,0x71,0x7d,0x00,0xd7,0x77, +0xe5,0xfa,0x51,0x5c,0x1f,0xc1,0xf5,0xbb,0xb9,0x3e,0x81,0xeb, +0x7f,0x33,0x2a,0x1f,0xa3,0xca,0x30,0xaa,0x05,0xa3,0x3a,0x33, +0xaa,0x2f,0xa3,0x46,0x30,0x6a,0x22,0xa3,0x66,0x33,0x6a,0x07, +0xa3,0x1c,0x8c,0xfa,0xc3,0xe8,0xec,0x8c,0x0e,0x64,0x74,0x3d, +0x46,0x0f,0x65,0x74,0x18,0xa3,0x4f,0x30,0xfa,0x23,0x37,0x24, +0xe3,0x86,0x6c,0xdc,0x50,0x8f,0x1b,0xfa,0x70,0xc3,0x70,0x6e, +0x98,0xca,0x0d,0x8b,0xb9,0x61,0x37,0x37,0xc4,0x71,0xc3,0x67, +0x6e,0xcc,0xc8,0x8d,0xfe,0xdc,0x58,0x89,0x1b,0x9b,0x72,0x63, +0x28,0x37,0x4e,0xe5,0xc6,0x55,0xdc,0xb8,0x83,0x1b,0x1d,0xdc, +0xf8,0x9b,0x9b,0xbc,0xb9,0xa9,0x0c,0x37,0x35,0xe6,0xa6,0x21, +0xdc,0x14,0xc5,0x4d,0x71,0xdc,0xf4,0x86,0x9b,0xfe,0x71,0x73, +0x4e,0x6e,0xae,0xcf,0xcd,0x9d,0xb9,0xb9,0x2f,0x37,0x8f,0xe4, +0xe6,0xad,0xdc,0x7c,0x86,0x9b,0x1f,0x71,0xf3,0x1f,0x6e,0x49, +0xcd,0x2d,0x05,0xb8,0xa5,0x0e,0xb7,0x8c,0xe7,0x96,0x59,0xdc, +0x12,0xce,0x2d,0xef,0xb8,0x35,0x23,0xb7,0xe6,0xe7,0xd6,0xe1, +0xdc,0x1a,0xc6,0xad,0xaf,0xb9,0xf5,0x2b,0x63,0x02,0x18,0xd3, +0x80,0x31,0x83,0x18,0xb3,0x8a,0x31,0xd1,0x8c,0xb9,0xc8,0x18, +0x27,0x63,0x5e,0x33,0xe6,0x17,0xb7,0xd5,0xe4,0xb6,0xee,0xdc, +0xb6,0x8f,0xdb,0x6e,0x70,0x7b,0x06,0x6e,0xcf,0xc5,0xed,0xa5, +0xb8,0x7d,0x2c,0xb7,0x1f,0xe5,0xf6,0x8b,0x8c,0xcd,0xc9,0xd8, +0xb6,0x8c,0x8d,0x61,0xec,0x25,0xc6,0x3e,0x63,0xec,0x57,0xee, +0x28,0xc1,0x1d,0xc3,0xb8,0x23,0x8e,0x3b,0x7e,0x72,0x67,0x53, +0xee,0x1c,0xc2,0x9d,0x13,0xb8,0x73,0x36,0x77,0x2e,0xe7,0xce, +0x7b,0xdc,0x55,0x98,0xbb,0x66,0x72,0xd7,0x5d,0xee,0x4e,0xc1, +0xdd,0x45,0xb8,0xbb,0x0f,0x77,0xaf,0xe0,0xee,0x13,0xdc,0x7d, +0x89,0xbb,0x9d,0xdc,0xfd,0x83,0x7b,0xb2,0x71,0x4f,0x7e,0xee, +0x29,0xcc,0x3d,0xc3,0xb9,0x67,0x27,0xf7,0x9c,0xe1,0x5e,0x71, +0x6f,0x08,0xf7,0x4e,0xe3,0xde,0xe3,0xdc,0x7b,0x81,0x7b,0x1d, +0xdc,0x97,0x99,0xfb,0x42,0xb8,0xaf,0x1e,0xf7,0x8d,0xe6,0xbe, +0xb9,0xdc,0xb7,0x96,0xfb,0x36,0x73,0xdf,0x79,0xee,0x7b,0xc0, +0x7d,0x9f,0xb8,0x3f,0x39,0xf7,0x07,0x73,0xff,0x30,0xee,0xdf, +0xc2,0xfd,0x5f,0xb8,0xff,0x1f,0x0f,0xa4,0xe0,0x81,0x40,0x1e, +0x68,0xc5,0x03,0xd3,0x79,0x60,0x25,0x0f,0xec,0xe3,0x81,0x4b, +0x3c,0x90,0xc0,0x83,0xd9,0x78,0xb0,0x01,0x0f,0xb6,0xe3,0xc1, +0xb1,0x3c,0x38,0x87,0x07,0x23,0x78,0xf0,0x11,0x0f,0x79,0xf1, +0x90,0x2f,0x0f,0xf5,0xe1,0xa1,0x33,0x3c,0x9c,0x91,0x87,0xfb, +0xf2,0xf0,0x66,0x1e,0xfe,0xcc,0x23,0xa5,0x78,0xa4,0x3f,0x8f, +0x9c,0xe7,0x91,0x67,0x3c,0xf2,0x97,0x47,0x33,0xf0,0x68,0x59, +0x1e,0xad,0xc6,0xa3,0x0d,0x79,0x74,0x18,0x8f,0x6e,0xe0,0xd1, +0x5d,0x3c,0x96,0x98,0xc7,0x0a,0xf3,0x58,0x39,0x1e,0x9b,0xc9, +0x63,0x67,0x78,0xdc,0x9d,0xc7,0x8b,0xf3,0x78,0x45,0x1e,0xef, +0xc5,0xe3,0x83,0x79,0xfc,0x20,0x8f,0xdf,0xe5,0x89,0x24,0x3c, +0x61,0xe7,0x89,0x06,0x3c,0xd1,0x9f,0x27,0x46,0xf3,0xc4,0x12, +0x9e,0x78,0xc4,0x93,0xa5,0x78,0xb2,0x03,0x4f,0xee,0xe6,0xc9, +0x97,0x3c,0x55,0x87,0xa7,0x9a,0xf1,0x54,0x5f,0x9e,0x9a,0xc8, +0x53,0xb3,0x78,0xea,0x3a,0x4f,0x27,0xe3,0xe9,0x2c,0x3c,0x9d, +0x9b,0xa7,0xfd,0x78,0x3a,0x98,0xa7,0xd7,0xf0,0x4c,0x4a,0x9e, +0x19,0xc1,0x33,0x53,0x78,0x26,0x9c,0x67,0x36,0xf0,0x6c,0x2a, +0x9e,0x6d,0xcd,0xb3,0xd1,0x3c,0xbb,0x9d,0xe7,0x3c,0x79,0xae, +0x1e,0xcf,0x1d,0xe0,0xb9,0x53,0x3c,0x77,0x99,0xe7,0x03,0x79, +0x3e,0x94,0xe7,0x77,0xf2,0x02,0x78,0xa1,0x33,0x2f,0xdc,0xe6, +0xc5,0x9c,0xbc,0x38,0x82,0x17,0x6f,0xf1,0x52,0x51,0x5e,0x5a, +0xc0,0x4b,0x31,0xbc,0xe4,0xe0,0xa5,0xc7,0xbc,0xf4,0x86,0x97, +0x83,0x79,0xb9,0x16,0x2f,0x37,0xe5,0xe5,0x53,0xbc,0x12,0xc8, +0x2b,0x1b,0x78,0xe5,0x16,0xaf,0xa6,0xe1,0xd5,0x8d,0xbc,0x96, +0x96,0xd7,0x9a,0xf3,0xda,0x3d,0x5e,0xcf,0xc6,0xeb,0x13,0x79, +0xfd,0x34,0xaf,0xdf,0xe1,0x8d,0xea,0xbc,0x31,0x9a,0x37,0xde, +0xf0,0xc6,0x6f,0xde,0xf4,0xe4,0xcd,0xd2,0xbc,0x59,0x8f,0x37, +0x77,0x31,0xce,0x9f,0x71,0xa5,0x18,0x57,0x99,0x71,0x2b,0x18, +0x17,0xc5,0xb8,0x1f,0x74,0x54,0xa1,0x63,0x1e,0x1d,0x5b,0xe8, +0xb8,0x49,0xc7,0x1f,0x3a,0x73,0xd3,0x39,0x8e,0xce,0x08,0x3a, +0x77,0xf2,0x56,0x62,0xde,0xca,0xc7,0x5b,0x51,0xbc,0x9d,0x8d, +0xb7,0x0b,0xf0,0x76,0x13,0xde,0xde,0xcb,0x3b,0x41,0xbc,0x33, +0x8f,0x77,0x33,0xf3,0x6e,0x45,0xde,0x4d,0xe0,0xbd,0xc6,0xbc, +0x77,0x8a,0xf7,0x8b,0xf0,0x7e,0x6d,0xde,0x1f,0xc8,0xfb,0x51, +0x7c,0x50,0x8d,0x0f,0xd6,0xf0,0xc1,0x5f,0x3e,0x6c,0xc0,0x87, +0x51,0x7c,0x78,0x99,0x0f,0x3f,0xf3,0x51,0x3d,0x3e,0x1a,0xcf, +0x47,0xb7,0xf9,0xd8,0x97,0x8f,0xc7,0xf3,0xf1,0x6c,0x3e,0x8e, +0xe2,0xe3,0x1d,0x7c,0x7c,0x98,0x8f,0xe3,0xf9,0xf8,0x23,0x1f, +0xff,0xe1,0x93,0x7a,0x7c,0xd2,0x8a,0x4f,0xba,0xf1,0xc9,0x15, +0x3e,0x0d,0xe0,0xd3,0x60,0x3e,0x5d,0xcc,0xa7,0x9b,0xf9,0x0c, +0x7c,0x56,0x97,0xcf,0x26,0xf2,0xd9,0x43,0x3e,0xcf,0xc0,0xe7, +0x39,0xf8,0xbc,0x28,0x9f,0xb7,0xe7,0xf3,0x6d,0x7c,0x7e,0x92, +0xcf,0x6f,0xf1,0xf9,0x07,0xc6,0xa7,0x66,0x7c,0x61,0xc6,0x37, +0x61,0xfc,0x60,0xc6,0x0f,0x63,0xfc,0x38,0xc6,0x4f,0x65,0xfc, +0x5c,0xc6,0x2f,0x65,0xfc,0x5a,0xc6,0x6f,0x64,0xfc,0x0e,0xc6, +0x1f,0x60,0xfc,0x09,0xc6,0x5f,0x60,0xfc,0x4d,0xc6,0xdf,0x63, +0xfc,0x33,0xc6,0xbf,0x65,0xfc,0x17,0xc6,0xff,0xe5,0x8b,0xa4, +0x7c,0x91,0x91,0x2f,0x72,0xf0,0x45,0x3e,0xbe,0xf0,0xe7,0x8b, +0x62,0x7c,0x51,0x96,0x2f,0xea,0xf2,0x45,0x07,0xbe,0xe8,0xc1, +0x17,0xfd,0xf9,0x22,0x92,0x2f,0x0e,0xf1,0xc5,0x29,0xbe,0x70, +0xf0,0xc5,0x67,0xbe,0xf8,0xce,0x97,0x89,0xf9,0xd2,0x83,0x2f, +0xb3,0xf1,0x65,0x01,0xbe,0x0c,0xe2,0xcb,0x50,0xbe,0xec,0xc7, +0x97,0x83,0xf8,0x32,0x8c,0x2f,0x37,0xf1,0xe5,0x5e,0xbe,0xbc, +0xca,0x97,0xe6,0xd7,0x7e,0x33,0x01,0x4c,0x48,0xc4,0x84,0x00, +0x26,0x14,0x61,0x42,0x09,0x26,0x54,0x64,0x42,0x27,0x26,0xf4, +0x67,0xc2,0x02,0x26,0xec,0x65,0xc2,0x51,0x26,0x3c,0x67,0xc2, +0x67,0xbe,0x12,0x5f,0xd9,0xf8,0x2a,0x33,0x5f,0x55,0xe6,0xab, +0x50,0xbe,0xda,0xcc,0x57,0x47,0xf9,0x3a,0x23,0x5f,0x17,0xe1, +0xeb,0x76,0x7c,0xdd,0x83,0xaf,0x27,0xf3,0xf5,0x6a,0xbe,0x3e, +0xc8,0xd7,0xa7,0xf9,0xfa,0x1b,0xdf,0xe4,0xe2,0x9b,0x4e,0x7c, +0x13,0xca,0x37,0xb3,0xf8,0xe6,0x12,0xdf,0x38,0xf8,0xe6,0x21, +0xdf,0x24,0xf0,0x6d,0x56,0xbe,0xcd,0xcf,0xb7,0xc5,0xf9,0xb6, +0x1a,0xdf,0x8e,0xe4,0xdb,0xa9,0x7c,0xbb,0x95,0x6f,0xdf,0xf0, +0xed,0x5f,0xbe,0x4b,0xc5,0x77,0xd9,0xf8,0xae,0x31,0xdf,0x75, +0xe7,0xbb,0x59,0x7c,0xb7,0x95,0xef,0xf6,0xf2,0x9d,0x93,0xef, +0x7e,0xf1,0xbf,0x1c,0xfc,0xaf,0x17,0xff,0x3b,0xca,0xff,0xae, +0xf2,0xbf,0xbb,0xfc,0xef,0x35,0xdf,0x7b,0xf0,0x7d,0x51,0xbe, +0x2f,0xcf,0xf7,0xd5,0xf9,0xbe,0x31,0xdf,0x0f,0xe7,0xfb,0x70, +0xbe,0x77,0xf0,0x43,0x56,0x7e,0xe8,0xce,0x0f,0x03,0xf9,0x61, +0x0c,0x3f,0xcc,0xe0,0x87,0xc5,0xfc,0x10,0xc7,0x0f,0x8f,0xf8, +0xe1,0x15,0x3f,0x7c,0xe5,0x47,0xf2,0x63,0x29,0x7e,0xac,0xc9, +0x8f,0x8d,0xf9,0xb1,0x2d,0x3f,0xf6,0xe4,0xc7,0x41,0xfc,0x38, +0x86,0x1f,0x8f,0xf0,0xe3,0x15,0x7e,0xfc,0xca,0x4f,0xde,0xfc, +0x94,0x8f,0x9f,0x02,0xf9,0x29,0x88,0x9f,0xea,0xf2,0x53,0x0b, +0x7e,0xea,0xcf,0x4f,0x11,0xfc,0xf4,0x82,0x9f,0xc5,0xcf,0xa5, +0xf8,0x79,0x10,0x3f,0x6f,0xe6,0xe7,0x5d,0xfc,0xfc,0x84,0x5f, +0xb2,0xf1,0x4b,0x3e,0x7e,0x19,0xc7,0x2f,0x5b,0xf8,0x35,0x29, +0xbf,0xb6,0xe6,0xd7,0x7e,0xfc,0xba,0x8b,0x5f,0x7f,0xf0,0x9b, +0x1b,0xbf,0xa5,0xe4,0x37,0x2f,0x7e,0xcb,0xc3,0x6f,0x2d,0xf9, +0xad,0x0f,0xbf,0x45,0xf2,0xdb,0x1d,0x7e,0xfb,0xcb,0xef,0x29, +0xf8,0xdd,0x8f,0xdf,0x1b,0xf1,0xfb,0x18,0x7e,0x9f,0xc1,0xef, +0x5b,0xf9,0x7d,0x1f,0x7f,0xa4,0xe5,0x0f,0x6f,0xfe,0xc8,0xcb, +0x1f,0xe5,0xf8,0xa3,0x3a,0x7f,0x34,0xe2,0x8f,0x9e,0xfc,0x31, +0x81,0x3f,0x62,0xf8,0xc3,0x3c,0x7a,0x8b,0x3f,0xcb,0xf0,0x67, +0x5b,0xfe,0xec,0xc3,0x9f,0x4b,0xf9,0xf3,0x3b,0x7f,0xa5,0xe5, +0xaf,0x2c,0xfc,0x55,0x94,0xbf,0x9a,0xf3,0x57,0x0c,0x7f,0x5d, +0xe5,0xef,0x82,0xfc,0x5d,0x9c,0xbf,0x2b,0xf0,0xf7,0x30,0xfe, +0x9e,0xcd,0xdf,0x6f,0xf9,0xc7,0x8d,0x7f,0xb2,0xf2,0x4f,0x6b, +0xfe,0x79,0xc1,0xbf,0xbe,0xfc,0x5b,0x85,0x7f,0xeb,0xf1,0xef, +0x3c,0xfe,0x5d,0xc3,0xbf,0x9b,0xf8,0xf7,0x24,0xff,0x5e,0xe6, +0xdf,0x5b,0xfc,0xfb,0x84,0xff,0xc0,0x7f,0x99,0xf9,0xaf,0x3c, +0xff,0xb5,0xe6,0xbf,0xae,0xfc,0x37,0x8f,0xff,0x0e,0xf1,0xdf, +0x59,0xfe,0xbb,0xcd,0x7f,0xe6,0xd1,0xef,0x42,0x16,0x59,0xfb, +0x67,0x0c,0x16,0xc6,0x09,0x2b,0x84,0x63,0xc2,0x07,0x51,0x62, +0x61,0xb1,0xb2,0xd8,0x54,0x9c,0x2a,0x46,0x89,0xa7,0xc5,0xa7, +0xb2,0x1e,0x48,0x29,0x65,0x90,0xaa,0x4a,0x4d,0xa5,0x61,0x52, +0xb4,0xb4,0x57,0x7a,0x2e,0xbd,0x97,0x7e,0xcb,0x2d,0x95,0xdc, +0x32,0xca,0xad,0x8a,0xdc,0xba,0xc8,0x6d,0xb0,0xdc,0x96,0xc8, +0xed,0x80,0xdc,0xde,0x2b,0x91,0xa7,0x12,0x65,0x55,0xa2,0x60, +0x25,0xea,0xab,0x44,0x11,0x4a,0x74,0x43,0x89,0xd3,0x2a,0x71, +0x05,0x25,0x1e,0xac,0xc4,0x4b,0x94,0x38,0x5c,0x89,0x0f,0x28, +0xf1,0x47,0x25,0x29,0xa4,0x24,0xb5,0x94,0x64,0x8a,0x92,0x6c, +0x57,0x92,0x9b,0x4a,0xf2,0x47,0x49,0x8b,0x29,0x69,0x33,0x25, +0x9d,0xa2,0xa4,0xb1,0x4a,0x1a,0xa7,0x64,0x52,0x32,0x9b,0x92, +0x95,0x50,0xb2,0xea,0x4a,0xd6,0x48,0xc9,0xda,0x2a,0x59,0x4f, +0x25,0x1b,0xa4,0x64,0x63,0x94,0x6c,0x9a,0x92,0xcd,0x57,0xb2, +0x55,0x4a,0x76,0x50,0xc9,0xee,0x29,0x59,0xbc,0x92,0xbd,0x57, +0xb2,0x1f,0x4a,0x9e,0x48,0xc9,0x73,0x2a,0x79,0x29,0x25,0xaf, +0xae,0xe4,0x3d,0x95,0x7c,0xaa,0x92,0x6f,0x51,0xf2,0x17,0x4a, +0x91,0x52,0x29,0xca,0x2a,0x45,0x57,0xa5,0x58,0xa8,0x14,0x87, +0x95,0xe2,0x9c,0x52,0xdc,0x57,0x0a,0x73,0xff,0x07,0xd9,0x72, +0xcb,0x56,0x45,0xb6,0x1e,0xb2,0x0d,0x92,0x6d,0x91,0x6c,0xc7, +0x65,0xfb,0xa4,0x94,0xf9,0x94,0x32,0x44,0x29,0x5b,0x2b,0xe5, +0x50,0xa5,0x8c,0x51,0xca,0x9b,0x4a,0xf9,0x56,0xa9,0x92,0x2a, +0x55,0x29,0xa5,0xaa,0xa4,0x54,0x75,0x94,0xaa,0xb9,0x52,0x75, +0x52,0xaa,0xfe,0x4a,0xb5,0x48,0xa9,0xd6,0x2b,0xd5,0x15,0xa5, +0xfa,0xa8,0xd4,0x54,0x6a,0x77,0xa5,0x2e,0xa3,0xd4,0x55,0x95, +0xba,0x81,0x52,0x0f,0x55,0xea,0x69,0x4a,0xbd,0x5d,0xa9,0x0f, +0x29,0xf5,0x69,0xa5,0xfe,0xa0,0x34,0xd9,0x95,0xa6,0x9a,0xd2, +0xd4,0x57,0x9a,0xb1,0x4a,0x33,0x43,0x69,0x76,0x2b,0x4d,0xbc, +0xd2,0x7c,0x57,0xda,0x24,0x4a,0x9b,0x46,0x69,0x33,0x2a,0x6d, +0x41,0xa5,0xad,0xaa,0xb4,0x1d,0x94,0x76,0xa8,0xd2,0x2e,0x54, +0xda,0x58,0xa5,0x3d,0xae,0xb4,0x0e,0xa5,0xfd,0x2c,0x77,0x0f, +0xb9,0xfb,0xc8,0xbd,0x84,0xdc,0x6b,0xc9,0xbd,0x87,0xdc,0x87, +0xcb,0x7d,0xad,0xdc,0xf7,0xc8,0xfd,0x9a,0xdc,0xef,0xca,0xfd, +0x9b,0x3c,0xbc,0xe5,0x51,0x40,0x1e,0xb5,0xe5,0x11,0x2a,0x8f, +0x99,0xf2,0x88,0x90,0xc7,0x76,0x79,0x5c,0x91,0xc7,0x23,0x79, +0xbc,0x92,0xc7,0x17,0x79,0x52,0x9e,0x29,0xe5,0x99,0x51,0x9e, +0xc5,0xe5,0x59,0x41,0x9e,0x35,0xe5,0x39,0x5b,0x9e,0xcb,0xe5, +0xb9,0x5e,0x9e,0xfb,0xe4,0x79,0x5d,0x9e,0xef,0xe4,0xf9,0x4d, +0xe9,0xd2,0x2a,0x5d,0x29,0xa5,0x5b,0xa0,0x74,0xdb,0x94,0xee, +0x8a,0xd2,0x7d,0x50,0x7a,0x0f,0xa5,0xf7,0x53,0xfa,0x49,0x4a, +0x7f,0x57,0x5e,0xee,0xf2,0x1a,0x29,0xaf,0x28,0x79,0xc5,0xca, +0xeb,0xa4,0xbc,0x1c,0xf2,0x7a,0xa9,0x0c,0x3e,0xca,0xd0,0x55, +0x19,0x62,0x94,0xe1,0x84,0x32,0x5c,0x51,0x86,0xa7,0xca,0x98, +0x51,0x19,0x3b,0x28,0xe3,0x38,0x65,0x9c,0xa5,0x8c,0x3b,0x94, +0xf1,0xb0,0x32,0x5e,0x55,0xc6,0x9f,0xca,0x94,0x58,0x99,0x32, +0x2b,0x53,0x07,0x65,0x5a,0xab,0x4c,0x87,0x94,0xe9,0xb4,0x32, +0x3d,0x54,0xa6,0xb7,0xca,0x5c,0x40,0x99,0x2b,0x2b,0x73,0x23, +0x65,0xee,0xaa,0xcc,0xab,0x95,0x79,0xb3,0x32,0x1f,0x54,0xe6, +0x4b,0xca,0xfc,0x50,0x99,0x7f,0x2a,0x4b,0x6a,0x65,0xc9,0xa4, +0x2c,0xa5,0x94,0xa5,0xb9,0xb2,0xf4,0x57,0x96,0x25,0xca,0x72, +0x40,0x59,0xce,0x29,0xcb,0x5b,0x79,0xa7,0x94,0x77,0x2d,0x79, +0xf7,0x91,0xf7,0x04,0x79,0x2f,0x90,0x77,0xa4,0xbc,0x63,0xe4, +0x7d,0x4c,0xde,0x17,0xe4,0xfd,0x42,0xde,0x3f,0x94,0x35,0xa3, +0xb2,0x56,0x56,0xd6,0x16,0xca,0xda,0x57,0x59,0x87,0x2b,0xeb, +0x44,0x65,0x5d,0xaa,0xac,0x6b,0x94,0xf5,0x98,0xb2,0x3a,0x95, +0xf5,0x89,0xb2,0xbe,0x51,0xd6,0xaf,0xca,0x56,0x4a,0xd9,0x6a, +0x29,0x5b,0x5f,0x65,0x9b,0xa2,0x6c,0x7b,0x94,0xed,0x9c,0xb2, +0xfd,0x53,0xf6,0x74,0xca,0x9e,0x4b,0xd9,0xcb,0x29,0x7b,0x1b, +0x65,0xef,0xaf,0xec,0x4b,0x94,0x7d,0xbf,0xb2,0x5f,0x51,0xf6, +0x4f,0xca,0x91,0x4e,0x39,0x8a,0x29,0xc7,0x54,0xe5,0xd8,0xa1, +0x1c,0x0f,0x95,0xe3,0x8b,0x72,0x26,0x57,0xce,0xfc,0xca,0x59, +0x5a,0x39,0x6b,0x2b,0x67,0x1b,0xe5,0xec,0xae,0x9c,0xe3,0x94, +0x73,0x86,0x72,0xc6,0x28,0xe7,0x13,0xe5,0x4a,0xa6,0x5c,0x41, +0xca,0x35,0x55,0xb9,0x96,0x2b,0xd7,0x61,0xe5,0xba,0xaa,0x5c, +0xcf,0x95,0xeb,0xab,0x72,0xa7,0x52,0xee,0xec,0xca,0x5d,0x54, +0xb9,0xeb,0x29,0xf7,0x20,0xe5,0x9e,0xa1,0x3c,0x6e,0xca,0xe3, +0xae,0x3c,0xc5,0x95,0xa7,0x86,0xf2,0xb4,0x51,0x9e,0x11,0xca, +0xb3,0x4c,0x79,0xf6,0x29,0xcf,0x65,0xe5,0x79,0x2b,0x1f,0x37, +0xf9,0xe4,0x96,0x4f,0x2d,0xf9,0xb4,0x95,0x4f,0x0f,0xf9,0x0c, +0x94,0xcf,0x1c,0xf9,0x6c,0x94,0xcf,0x55,0xf9,0xdc,0x96,0xcf, +0x53,0xe5,0x75,0x53,0xde,0x6c,0xca,0x1b,0xa8,0xbc,0x9d,0x95, +0x77,0x82,0xf2,0xce,0x52,0xde,0x2d,0xca,0x7b,0x41,0x79,0x6f, +0x2a,0xef,0x03,0xe5,0x8d,0x57,0xde,0xf7,0xca,0xe7,0xa9,0x7c, +0xc5,0x95,0x2f,0x58,0xf9,0xfa,0x2b,0xdf,0x08,0xe5,0x9b,0xa0, +0x7c,0xcb,0x94,0x2f,0x46,0xf9,0x9e,0x28,0x7f,0x06,0xe5,0x2f, +0xa4,0xfc,0xa5,0x94,0xbf,0x92,0xf2,0xd7,0x52,0xfe,0xae,0xca, +0x3f,0x50,0xf9,0x57,0x2a,0xff,0x66,0xe5,0xdf,0xa5,0xfc,0xa7, +0x94,0xff,0xaa,0xf2,0xff,0x50,0x81,0x02,0x2a,0x50,0x59,0x05, +0x1a,0xab,0xc0,0x78,0x15,0x98,0xad,0x02,0xc7,0x54,0xe0,0xad, +0x0a,0x66,0x51,0xc1,0x2a,0x2a,0xd8,0x57,0x05,0x87,0xab,0xe0, +0x34,0x15,0x8c,0x54,0xc1,0x23,0x2a,0x78,0x47,0x05,0x5f,0xcb, +0xd7,0x26,0x5f,0x6f,0xf9,0x06,0xca,0x37,0x58,0xbe,0xf5,0xe5, +0xdb,0x5e,0xbe,0x03,0xe4,0x3b,0x57,0xbe,0x1b,0xe5,0x7b,0x44, +0xbe,0x71,0xf2,0x7d,0x28,0xdf,0x04,0xd9,0x93,0xc8,0x9e,0x5e, +0x76,0x7f,0xd9,0x83,0x64,0xaf,0x21,0x7b,0x7f,0xd9,0x47,0xcb, +0x1e,0x25,0xfb,0x41,0xd9,0x1f,0xc8,0xfe,0x4b,0x7e,0x5e,0xf2, +0xeb,0x20,0xbf,0x5e,0xf2,0x9b,0x21,0xbf,0x75,0xf2,0x3b,0x21, +0x3f,0x87,0xfc,0x1e,0xcb,0xef,0x9f,0xfc,0xd3,0xca,0x3f,0x8b, +0xfc,0xab,0xcb,0xbf,0xa3,0xfc,0x87,0xc9,0x7f,0x8d,0xfc,0x6f, +0xca,0xff,0xb9,0xfc,0xbf,0x29,0x20,0x85,0x02,0x8a,0x2b,0xa0, +0x9a,0x02,0xea,0x2b,0xa0,0x95,0x02,0xba,0x2a,0x60,0xba,0x02, +0x0e,0x2b,0xe0,0xb5,0x02,0x3e,0x2b,0x30,0x89,0x02,0x33,0x29, +0x30,0x44,0x81,0x1d,0x15,0xd8,0x5b,0x81,0xc3,0x14,0xb8,0x5e, +0x81,0x31,0x0a,0x7c,0xa2,0x42,0x59,0x55,0xa8,0x90,0x0a,0x95, +0x51,0xa1,0x3a,0x2a,0xd4,0x41,0x85,0xb6,0xa9,0xd0,0x41,0x15, +0x3a,0xab,0x42,0xb7,0x55,0xe8,0x99,0x0a,0xa7,0x51,0xe1,0x9c, +0x2a,0xdc,0x42,0x85,0x3b,0xaa,0x70,0x6f,0x15,0x0e,0x57,0xe1, +0x4d,0x2a,0xbc,0x4b,0x85,0x0f,0xab,0x70,0xbc,0x0a,0x7f,0x53, +0x11,0xaa,0x48,0x3a,0x15,0xb1,0xab,0x48,0x2b,0x15,0x59,0xac, +0x22,0xd1,0x2a,0x72,0x55,0x45,0x1e,0xab,0x68,0x22,0x15,0xcd, +0xae,0xa2,0x15,0x54,0xb4,0x8d,0x8a,0x0e,0x52,0xd1,0xc9,0x2a, +0x3a,0x5f,0x45,0xa3,0x54,0xf4,0xb4,0x8a,0x3e,0x57,0x31,0xa9, +0x58,0x2e,0x15,0x2b,0xa9,0x62,0x0d,0x54,0xac,0xbd,0x8a,0xf5, +0x55,0xb1,0x31,0x2a,0x36,0x55,0xc5,0xa2,0x54,0xec,0x88,0x8a, +0x27,0x55,0xf1,0xbc,0x2a,0x3e,0x42,0xc5,0xd7,0xa9,0xb8,0xf9, +0xe7,0x03,0x15,0x7f,0xa9,0x12,0xc9,0x55,0x22,0x97,0x4a,0xd4, +0x56,0x89,0xf6,0x2a,0xb1,0x49,0x25,0xde,0xab,0xa4,0xb7,0x4a, +0xd6,0x53,0xc9,0xe1,0x2a,0x39,0x59,0x25,0xe7,0xa8,0xe4,0x46, +0x95,0x3c,0xa5,0x52,0x5e,0x2a,0xe5,0xab,0x52,0xbd,0x54,0x6a, +0x82,0x4a,0x1d,0x53,0xe9,0xcc,0x2a,0x5d,0x4f,0xa5,0x5b,0xa8, +0xf4,0x30,0x95,0x9e,0xa9,0xd2,0x8b,0x54,0x3a,0x42,0x65,0xd2, +0xab,0xcc,0x10,0x95,0x59,0xaa,0xa0,0x94,0x0a,0x2a,0xa9,0xa0, +0xca,0x0a,0x6a,0xa1,0xa0,0x2e,0x0a,0x1a,0xa9,0xa0,0xe5,0x0a, +0xda,0xa6,0xa0,0xa3,0x2a,0x1b,0xa0,0xb2,0x15,0x54,0x76,0x97, +0xca,0x3e,0x50,0xb9,0xc4,0x2a,0x97,0x4e,0xe5,0xba,0xa9,0xdc, +0x78,0x95,0x0b,0x53,0xb9,0x97,0x2a,0xf7,0x57,0xe5,0xf3,0xa9, +0x7c,0x0f,0x95,0x1f,0xa3,0xf2,0xd3,0x55,0x7e,0xa1,0xca,0x6f, +0x53,0xf9,0x43,0x2a,0x7f,0x41,0xe5,0x6f,0xab,0xfc,0x57,0x05, +0x27,0x56,0xb0,0x97,0x82,0x7d,0x14,0x5c,0x41,0xc1,0x35,0x15, +0xdc,0x5c,0xc1,0x03,0x15,0x3c,0x41,0xc1,0xf3,0x15,0xbc,0x52, +0xc1,0xeb,0x15,0xbc,0x4d,0xc1,0x97,0x15,0x7c,0x4b,0xc1,0x8f, +0x55,0xc1,0x5d,0x15,0x0a,0xa9,0x42,0x19,0x55,0xa8,0xa2,0x0a, +0xcd,0x54,0x61,0xa3,0x2a,0xec,0x54,0x85,0x53,0xaa,0xe0,0x50, +0x85,0x17,0xaa,0x98,0x48,0x15,0x53,0xab,0xa2,0x5d,0x15,0xeb, +0xa8,0xe2,0x20,0x55,0x9c,0xa4,0x8a,0x07,0x54,0x31,0x41,0x95, +0xf2,0xab,0x52,0x37,0x55,0x5a,0xa0,0x4a,0x9b,0x55,0xe9,0xbb, +0x2a,0x67,0x50,0xe5,0x20,0x55,0xae,0xa5,0xca,0x6d,0x55,0x79, +0x80,0x2a,0x4f,0x52,0xe5,0xf3,0xaa,0x1c,0xaf,0x2a,0x6e,0xaa, +0x92,0x4f,0x55,0xea,0xa9,0x4a,0x3b,0x55,0x59,0xac,0x2a,0x5b, +0x55,0xe5,0x8b,0x42,0x32,0x29,0x24,0xbf,0x42,0x82,0x15,0xd2, +0x57,0x21,0x33,0x15,0xb2,0x4b,0x21,0x27,0x15,0x72,0x43,0x21, +0x4f,0x14,0xf2,0x41,0x55,0x0b,0xa8,0x6a,0x19,0x55,0x6d,0xac, +0xaa,0xcb,0x54,0xf5,0xa5,0xaa,0x25,0x56,0xb5,0xfc,0xaa,0x56, +0x4a,0xd5,0xba,0xab,0xda,0x0e,0x55,0xa7,0xaa,0xdb,0x54,0x3d, +0xbd,0xaa,0x97,0x56,0xf5,0xb6,0xaa,0x3e,0x5c,0xd5,0xb7,0xab, +0xba,0x43,0xd5,0x7f,0xa8,0x86,0x97,0x6a,0x94,0x55,0x8d,0x10, +0xd5,0xa8,0xa7,0x1a,0x2d,0x55,0x63,0x90,0x6a,0x8c,0x55,0x8d, +0x99,0xaa,0x71,0x52,0x35,0x9b,0xaa,0xe6,0x79,0xd5,0x7c,0xa2, +0x5a,0x1e,0xaa,0x55,0x51,0xb5,0x16,0xab,0xd6,0x2e,0xd5,0x76, +0x53,0x6d,0x2f,0xd5,0x2e,0xa7,0xda,0xd1,0xaa,0x7d,0x51,0xb5, +0x5f,0xa9,0xf6,0x67,0xd5,0x69,0xa4,0x3a,0xe3,0x55,0xe7,0x9b, +0xea,0x36,0x57,0xdd,0x7b,0xaa,0x57,0x43,0xf5,0x06,0xa8,0xde, +0x0b,0xd5,0xa7,0xea,0xdb,0x55,0x7f,0x89,0xea,0x9f,0x55,0xfd, +0x78,0x35,0xa8,0xaf,0x06,0x2d,0xd5,0xa0,0xb7,0x1a,0x8c,0x53, +0x83,0xd7,0x6a,0xe8,0xa9,0x86,0x3e,0x6a,0x58,0x55,0x0d,0xef, +0xab,0xe1,0x07,0x35,0xfc,0xa3,0x46,0xd9,0xd5,0xa8,0x82,0x1a, +0xd5,0x56,0xa3,0xc1,0x6a,0x34,0x43,0x8d,0xa5,0xc6,0x13,0xd5, +0x78,0xb6,0x1a,0x2f,0x55,0xe3,0x35,0x6a,0xbc,0x45,0x4d,0xf2, +0xa9,0x49,0x90,0x9a,0xd4,0x57,0x93,0x76,0x6a,0xb2,0x50,0x4d, +0x53,0xa9,0x69,0x06,0x35,0xcd,0xae,0xa6,0x21,0x6a,0x3a,0x48, +0x4d,0x57,0xa8,0xe9,0x16,0x35,0xdd,0xa7,0xa6,0xc7,0xd4,0xf4, +0x86,0x9a,0x3e,0x57,0xd3,0x7f,0x6a,0xe6,0xa9,0x66,0x85,0xd4, +0x2c,0x48,0xcd,0x42,0xd4,0xac,0xbe,0x9a,0x0d,0x56,0xb3,0xd5, +0x6a,0x76,0x51,0xcd,0xbe,0xaa,0xb9,0x87,0x9a,0x2f,0x52,0xf3, +0x75,0x6a,0xbe,0x53,0xcd,0x2f,0xaa,0x79,0xbc,0x5a,0xd4,0x52, +0x8b,0x26,0x6a,0xd1,0x5e,0x2d,0x96,0xab,0xc5,0x01,0xb5,0xf8, +0xa9,0x96,0xa5,0xd5,0xb2,0xb5,0x5a,0xf6,0x51,0xcb,0xb1,0x6a, +0xb9,0x50,0x2d,0x23,0xd5,0xf2,0xae,0x5a,0xa5,0x53,0xab,0xdc, +0x6a,0x55,0x58,0xad,0xaa,0xa8,0x55,0x1d,0xb5,0xea,0xaf,0x56, +0xa3,0xd4,0x6a,0xa6,0x5a,0x9d,0x52,0xab,0x2b,0x6a,0xf5,0x53, +0xad,0xfd,0xd4,0xba,0x8d,0x5a,0x1f,0x56,0xeb,0x0f,0x6a,0xfd, +0x4b,0x6d,0x52,0xab,0x4d,0x06,0xb5,0xc9,0xa1,0x36,0xbd,0xd5, +0x66,0x9a,0xda,0xcc,0x57,0x9b,0xbb,0x6a,0x5b,0x5a,0x6d,0x1b, +0xaa,0xed,0x78,0xb5,0x9d,0xa9,0xb6,0x4b,0xd4,0x76,0xb3,0xda, +0xee,0x55,0xdb,0xb3,0x6a,0x7b,0x5d,0x6d,0xdf,0xaa,0xed,0x1f, +0xb5,0xf3,0x52,0x3b,0x1f,0xb5,0x0b,0x50,0xbb,0x81,0x6a,0x37, +0x52,0xed,0xa6,0xa8,0xdd,0x5c,0xb5,0x5b,0xad,0x76,0x5b,0xd5, +0xee,0xaa,0xda,0x3d,0x51,0xbb,0xd7,0x6a,0xf7,0x47,0xed,0x93, +0xaa,0xbd,0xa7,0xda,0x17,0x52,0xfb,0x06,0x6a,0xdf,0x45,0xed, +0xfb,0xaa,0xfd,0x2c,0xb5,0x8f,0x52,0xfb,0x23,0x6a,0x7f,0x4e, +0xed,0x6f,0xa8,0xfd,0x1b,0xb5,0xff,0xad,0x0e,0x89,0xd5,0x21, +0xad,0x3a,0x94,0x54,0x87,0x36,0xea,0xd0,0x5b,0x1d,0x46,0xa9, +0xc3,0x6c,0x75,0xb8,0xae,0x0e,0xcf,0xd5,0xe1,0xbb,0x3a,0xa6, +0x50,0xc7,0x32,0xea,0x58,0x53,0x1d,0x7b,0xab,0xe3,0x2c,0x75, +0x5c,0xa2,0x8e,0x87,0xd4,0xf1,0x8d,0x3a,0x7e,0x53,0xa7,0x2c, +0xea,0x54,0x4e,0x9d,0xaa,0xab,0xd3,0x70,0x75,0xda,0xa2,0x4e, +0x0f,0xd5,0xd9,0x5d,0x9d,0x03,0xd5,0xb9,0x8c,0x3a,0x4f,0x55, +0xe7,0x79,0xea,0xbc,0x52,0x9d,0xa3,0xd4,0x39,0x56,0x9d,0x2f, +0xa8,0xf3,0x5f,0x75,0x71,0x57,0x97,0x02,0xea,0x52,0x4d,0x5d, +0x1a,0xaa,0x4b,0x67,0x75,0xb9,0xa0,0xae,0x76,0x75,0x2d,0xae, +0xae,0xd5,0xd5,0xb5,0xb5,0xba,0x9e,0x54,0x37,0x1f,0x75,0x0b, +0x50,0xb7,0xde,0xea,0x36,0x4e,0xdd,0x66,0xaa,0x5b,0xb8,0xba, +0x6d,0x57,0xb7,0xab,0xea,0xf6,0x46,0xdd,0xa5,0xee,0xd9,0xd4, +0xbd,0x82,0xba,0xd7,0x52,0xf7,0x26,0xea,0xde,0x4e,0xdd,0x7b, +0xaa,0xfb,0x08,0x75,0x0f,0x53,0xf7,0x4f,0xea,0xfe,0x57,0x3d, +0xd2,0xaa,0x87,0xbf,0x7a,0x54,0x52,0x8f,0xc6,0xea,0xb1,0x5a, +0x3d,0xf6,0xa9,0xc7,0x0d,0xf5,0xf8,0xa6,0x9e,0xc9,0xd5,0x33, +0x8b,0x7a,0x76,0x55,0xcf,0x29,0xea,0xf9,0x5c,0x3d,0xff,0xa9, +0x97,0x9f,0x7a,0xf5,0x52,0xaf,0x03,0xea,0xf5,0x50,0xbd,0x5e, +0x2b,0x94,0x0a,0xcd,0xa1,0xd0,0xa2,0x0a,0xad,0xa3,0xd0,0x79, +0x0a,0x5d,0xa9,0xd0,0x28,0x85,0xc6,0x2a,0xf4,0x8e,0x42,0xdf, +0xab,0x77,0x19,0xf5,0xae,0xa3,0xde,0xcd,0xd5,0x3b,0x4c,0xbd, +0x77,0xa8,0xf7,0x49,0xf5,0x8e,0x53,0x9f,0x14,0xea,0x93,0x4d, +0x7d,0xca,0xab,0x4f,0x6b,0xf5,0x99,0xa9,0x3e,0x1b,0xd5,0xe7, +0xa2,0xfa,0xbc,0x56,0x5f,0x2f,0xf5,0xcd,0xa5,0xbe,0xbd,0xd4, +0x77,0xb1,0xfa,0xa5,0x54,0xbf,0x02,0xea,0x57,0x54,0xfd,0xca, +0xab,0x5f,0x0b,0xf5,0x0b,0x55,0xbf,0xb9,0xea,0x9f,0x4b,0xfd, +0x83,0xd5,0xbf,0xa5,0xfa,0x8f,0x56,0xff,0x95,0xea,0x7f,0x59, +0xfd,0x6f,0x6b,0x40,0x6a,0x0d,0xd8,0xaa,0x01,0x17,0x34,0xe0, +0xb3,0x06,0x7a,0x6b,0x60,0x88,0x06,0x0e,0xd7,0xc0,0xc5,0x1a, +0x94,0x5f,0x83,0x76,0x6a,0x70,0x45,0x0d,0x6e,0xa7,0xc1,0x23, +0x34,0x38,0x4c,0x43,0x7c,0x34,0xa4,0x96,0x86,0xc4,0x68,0xc8, +0x3e,0x0d,0x2d,0xae,0xa1,0x0d,0x34,0xb4,0x8f,0x86,0xbe,0xd4, +0xb0,0x34,0x1a,0xe6,0xaf,0x61,0x3d,0x35,0x3c,0xb7,0x86,0x57, +0xd4,0xf0,0xf6,0x1a,0x7e,0x4b,0xc3,0xdf,0x6a,0x44,0x2b,0x8d, +0xe8,0xa2,0x11,0x23,0x34,0xe2,0x3f,0x8d,0xf8,0xa1,0x91,0x6e, +0x1a,0x99,0x5a,0x23,0x27,0x6b,0xe4,0x7a,0x8d,0xdc,0xa9,0x91, +0x77,0x34,0xca,0xa6,0x51,0x9b,0x34,0xea,0x84,0x46,0xbd,0xd0, +0xe8,0x8c,0x1a,0xdd,0x42,0xa3,0x4f,0x6b,0x8c,0x34,0x26,0x56, +0x63,0xae,0x68,0xcc,0x1b,0x8d,0xf5,0xd0,0xd8,0xfa,0x1a,0xbb, +0x4f,0xe3,0x32,0x69,0x5c,0x09,0x8d,0xbb,0xa0,0x71,0x0f,0x35, +0xee,0x95,0xc6,0x27,0xd5,0xf8,0x7c,0x1a,0x5f,0x4f,0xe3,0x27, +0x68,0xfc,0x5a,0x4d,0x48,0xa1,0x09,0x19,0x35,0xa1,0x90,0x26, +0xd4,0xd1,0x84,0x2b,0x9a,0x18,0xa2,0x89,0x47,0x35,0xf1,0xbc, +0x26,0xc6,0x69,0xe2,0x1f,0x4d,0x1a,0xa7,0x49,0x6b,0x35,0x39, +0x50,0x93,0x2b,0x6b,0x72,0x37,0x4d,0x1e,0xa1,0xc9,0x2b,0x34, +0xf9,0xa6,0x26,0xdf,0xd7,0xe4,0x5f,0x9a,0xe2,0xa9,0x29,0x0d, +0x34,0x65,0x98,0xa6,0x8c,0xd7,0x94,0xd5,0x9a,0x72,0x5b,0x53, +0x7e,0x69,0xaa,0x5d,0x53,0xeb,0x68,0xea,0x72,0x4d,0x3d,0xa6, +0xa9,0x17,0x35,0xd5,0xa9,0xa9,0x4f,0x35,0xf5,0x9d,0xa6,0xb9, +0x69,0x5a,0x6a,0x4d,0xab,0xa8,0x69,0x5d,0x34,0xad,0x9f,0xa6, +0x8d,0xd0,0xb4,0xc9,0x9a,0x16,0xad,0xe9,0x89,0x35,0x3d,0xad, +0xa6,0x17,0xd4,0xf4,0xe2,0x9a,0x3e,0x53,0xd3,0x97,0x68,0xfa, +0x5a,0x4d,0xdf,0xa3,0x19,0x0d,0x35,0x63,0xa7,0x66,0x5c,0xd7, +0x8c,0xff,0x34,0x33,0x9b,0x66,0x16,0xd5,0xcc,0x6a,0x9a,0x19, +0xad,0x99,0x7f,0x35,0x2b,0xb9,0x66,0x79,0x6a,0x56,0x6b,0xcd, +0xea,0xa6,0x59,0x03,0x35,0x6b,0x83,0x66,0x67,0xd3,0xec,0xe2, +0x9a,0xbd,0x42,0xb3,0x1d,0x9a,0x93,0x51,0x73,0x46,0x68,0x4e, +0x9c,0xe6,0x7c,0xd6,0x5c,0x9b,0xe6,0xf6,0xd0,0xdc,0xf9,0x9a, +0xbb,0x4d,0xf3,0x92,0x6b,0x9e,0xbf,0xe6,0x55,0xd5,0xbc,0x65, +0x9a,0x17,0xa9,0x79,0x31,0x9a,0x77,0x5a,0xf3,0x7d,0x34,0x3f, +0x50,0xf3,0x2b,0x6a,0xfe,0x00,0xcd,0x9f,0xa2,0xf9,0x2b,0x35, +0x3f,0x4a,0xf3,0xcd,0xfd,0x71,0x9a,0x1f,0xaf,0xf9,0xef,0x35, +0xff,0xa7,0x16,0x24,0xd6,0x02,0x2f,0x2d,0xf0,0xd3,0x82,0x12, +0x5a,0xd0,0x53,0x0b,0x96,0x68,0xc1,0x5b,0x2d,0xf4,0xd6,0xc2, +0x42,0x5a,0x58,0x46,0x0b,0x43,0xb4,0x70,0x81,0x16,0xae,0xd2, +0xc2,0x37,0x5a,0x54,0x5c,0x8b,0x82,0xb5,0xa8,0xb3,0x16,0x0d, +0xd5,0xa2,0x63,0x5a,0x74,0x51,0x8b,0x6d,0x5a,0xec,0xa5,0xc5, +0x39,0xb4,0xb8,0x81,0x16,0x4f,0xd6,0xe2,0xff,0xb4,0xc4,0x4d, +0x4b,0x9a,0x6a,0xc9,0x10,0x2d,0x59,0xa5,0x25,0x37,0xb4,0xe4, +0x87,0x96,0x56,0xd2,0xd2,0x3a,0x5a,0xda,0x56,0x4b,0x67,0x6a, +0xe9,0x2a,0x2d,0x7d,0xa2,0x65,0x29,0xb4,0x2c,0x44,0xcb,0x86, +0x6b,0xd9,0x6e,0x2d,0x3b,0xa6,0x65,0xb7,0xb4,0xec,0x87,0x96, +0xbb,0x69,0x79,0x3e,0x2d,0x2f,0xac,0xe5,0x9d,0xb4,0x7c,0xba, +0x96,0x6f,0xd3,0xf2,0x5f,0x5a,0x91,0x5d,0x2b,0x0a,0x6a,0x45, +0x4f,0xad,0x98,0xaa,0x15,0x47,0xb5,0xe2,0xb9,0x56,0x26,0xd2, +0xca,0x40,0xad,0x5c,0xa6,0x95,0x37,0xb4,0xca,0x5b,0xab,0xf2, +0x69,0x55,0x11,0xad,0x2a,0xa7,0x55,0xc3,0xb4,0x6a,0x86,0x56, +0x85,0x6b,0xd5,0x46,0xad,0x3a,0xa9,0x55,0x0f,0xb5,0xea,0x83, +0xc2,0xd2,0x2b,0x2c,0x9f,0xc2,0x2a,0x28,0xac,0x96,0xc2,0x9a, +0x29,0xac,0x93,0xc2,0x06,0x2b,0x6c,0x91,0xc2,0x22,0x14,0xb6, +0x45,0x61,0x0f,0x14,0xee,0xaf,0xf0,0xea,0x0a,0x6f,0xa4,0xf0, +0x5e,0x0a,0x9f,0xaf,0xf0,0xfd,0x0a,0xbf,0xa0,0x70,0x73,0xff, +0x4b,0x85,0xff,0xd0,0xea,0xca,0x5a,0x1d,0xaa,0xd5,0x53,0xb4, +0xfa,0xa2,0x22,0x72,0x28,0xa2,0x9c,0x22,0x1a,0x2a,0xa2,0xad, +0x22,0x66,0x2b,0x62,0xab,0x22,0x8e,0x2b,0xe2,0x85,0xd6,0x24, +0xd1,0x1a,0x1f,0xad,0x59,0xa5,0x35,0x1b,0xb4,0xe6,0xb6,0xd6, +0x7c,0xd2,0xda,0x24,0x5a,0x5b,0x52,0x6b,0x6b,0x69,0x6d,0x1b, +0xad,0x9d,0xa7,0xb5,0x2b,0xb5,0x36,0x46,0x6b,0x8f,0x6b,0xed, +0x4b,0xad,0xfd,0xa1,0xc8,0xac,0x8a,0xac,0xa0,0xc8,0x21,0x8a, +0x5c,0xa5,0xc8,0x2d,0x8a,0x7c,0xa6,0x75,0x81,0x5a,0x57,0x51, +0xeb,0xba,0x6b,0xdd,0x70,0xad,0x5b,0xa5,0x75,0x7b,0xb5,0xee, +0x92,0xd6,0x3d,0xd4,0xba,0x6f,0x5a,0x9f,0x52,0xeb,0xf3,0x6b, +0x7d,0x6d,0xad,0x1f,0xa0,0xf5,0x53,0xb4,0x7e,0xad,0xd6,0x5f, +0xd2,0xfa,0x8f,0x8a,0x4a,0xaa,0x28,0x6f,0x45,0x95,0x56,0x54, +0x6d,0x45,0xf5,0x54,0xd4,0x34,0x45,0xad,0x54,0x54,0xb4,0xa2, +0x76,0x2a,0xea,0x94,0xa2,0xa1,0xe8,0x14,0x8a,0xce,0xa7,0xe8, +0x12,0x8a,0xee,0xa1,0xe8,0x55,0x8a,0x8e,0x56,0xf4,0x7f,0xda, +0x50,0x5b,0x1b,0xe6,0x69,0xc3,0x2a,0x6d,0x88,0xd6,0x86,0x1d, +0xda,0x70,0x58,0x1b,0xce,0x69,0x63,0x5a,0x6d,0xf4,0xd6,0xc6, +0x72,0xda,0xd8,0x43,0x1b,0x07,0x69,0xe3,0x49,0x6d,0x7c,0xad, +0x4d,0xc9,0xb4,0xc9,0x43,0x9b,0xb2,0x6a,0x53,0x3e,0x6d,0x1a, +0xa2,0x4d,0xe3,0xb5,0x69,0xb1,0x36,0x5d,0xd1,0x66,0x9b,0x36, +0x37,0xd3,0xe6,0x15,0xda,0x7c,0x51,0x9b,0x9d,0xda,0x92,0x44, +0x5b,0x6a,0x68,0x4b,0x4b,0x6d,0x89,0xd0,0x96,0x4d,0xda,0x92, +0xa0,0x2d,0x9f,0xb5,0x35,0xb1,0xb6,0x96,0xd3,0xd6,0xa6,0xda, +0xda,0x4f,0x5b,0x17,0x6a,0xeb,0x3a,0x6d,0xdd,0xa3,0xad,0x2f, +0x14,0x53,0x42,0x31,0xd5,0x14,0x33,0x5a,0x31,0xcb,0x14,0xb3, +0x5b,0x31,0x97,0x15,0xf3,0x50,0x31,0x5f,0xb4,0x2d,0x9d,0xb6, +0xe5,0xd0,0xb6,0xb2,0xda,0x56,0x55,0xdb,0x5a,0x68,0xdb,0x74, +0x6d,0x5b,0xab,0x6d,0xbb,0xb5,0xed,0xa4,0xb6,0xdd,0xd6,0xf6, +0x74,0xda,0x9e,0x4f,0xdb,0x83,0xb4,0xbd,0xae,0xb6,0x77,0xd2, +0xf6,0x45,0xda,0x7e,0x51,0xdb,0x6f,0x69,0xfb,0x57,0xc5,0x26, +0x55,0x6c,0x26,0xc5,0x06,0x2a,0xb6,0x92,0x62,0x67,0x2a,0x76, +0xb7,0x62,0x8f,0x2a,0xd6,0xa1,0xd8,0x9f,0xda,0xe1,0xae,0x1d, +0x15,0xb4,0xa3,0xb6,0x76,0x34,0xd5,0x8e,0x3e,0xda,0x31,0x4d, +0x3b,0x9e,0x6a,0xc7,0x6b,0xed,0xf8,0xa7,0x9d,0xc9,0xb4,0xd3, +0x43,0x3b,0xc7,0x68,0xe7,0x32,0xed,0xfc,0xab,0x5d,0xf5,0xb5, +0x6b,0x85,0x76,0xad,0xd3,0xae,0xed,0xda,0x75,0x50,0xbb,0x4e, +0x6b,0xd7,0x35,0xed,0xba,0xa7,0x5d,0x9f,0xb5,0xbb,0x88,0x76, +0x6f,0xd3,0x9e,0xee,0xda,0x33,0x4a,0x7b,0xa6,0x6a,0xcf,0x0e, +0xed,0x39,0xa5,0x3d,0xdf,0xb5,0xd7,0x4b,0x7b,0xed,0xda,0xbb, +0x58,0x7b,0x23,0xb4,0x77,0x8b,0xf6,0x9e,0xd1,0xde,0x6f,0xda, +0x97,0x5b,0xfb,0x82,0xb4,0xaf,0x89,0xf6,0x4d,0xd5,0xbe,0x33, +0xda,0x5f,0x50,0xfb,0xe7,0x69,0x7f,0x8c,0xf6,0x3b,0x74,0x20, +0xad,0x0e,0x4c,0xd0,0xc1,0xa4,0x3a,0x98,0x45,0x07,0x1b,0xeb, +0x60,0x7f,0x1d,0x5c,0xa3,0x83,0xd7,0x74,0xf0,0x93,0x0e,0xfe, +0xd3,0xa1,0x14,0x3a,0x94,0x4b,0x87,0xea,0xea,0x50,0x0b,0x1d, +0x1a,0xa9,0x43,0x77,0x74,0xe8,0xa3,0x0e,0xfd,0xd6,0x61,0x77, +0x1d,0xce,0xa4,0xc3,0x41,0x3a,0x1c,0xa2,0xc3,0x6d,0x75,0x38, +0x54,0x87,0x07,0xeb,0xf0,0x38,0x1d,0x3e,0xa0,0xc3,0xd7,0x74, +0x24,0xb1,0x8e,0xa4,0xd1,0x91,0x4c,0x3a,0x92,0x5b,0x47,0xec, +0x3a,0x52,0x4c,0x47,0xca,0xeb,0x48,0x35,0x1d,0xe9,0xa5,0x23, +0x83,0x74,0x64,0x85,0x8e,0x44,0xea,0xc8,0x56,0x1d,0x71,0xe8, +0xc8,0x0f,0x1d,0x75,0xd3,0x51,0x0f,0x1d,0x0d,0xd0,0xd1,0xb2, +0x3a,0xda,0x44,0x47,0x3b,0xe9,0xe8,0x24,0x1d,0x5d,0xa8,0xa3, +0x91,0x3a,0xba,0x55,0x47,0xf7,0xe8,0xe8,0x3d,0x1d,0x7d,0xa3, +0x63,0x19,0x75,0xac,0x8d,0x8e,0xad,0xd0,0x31,0x87,0x8e,0x7d, +0xd1,0xb1,0x7f,0x3a,0x9e,0x5c,0xc7,0x3d,0x75,0xdc,0x5b,0xc7, +0x7d,0x74,0xdc,0x5f,0xc7,0x4b,0xea,0x78,0xb0,0x8e,0xf7,0xd2, +0xf1,0xdd,0x3a,0x7e,0x54,0xc7,0xdf,0xeb,0xf8,0x2f,0x9d,0x48, +0xac,0x13,0x25,0x74,0x22,0x58,0x27,0x6a,0xe8,0x44,0x23,0x9d, +0x98,0xae,0x13,0x7b,0x74,0xe2,0xaa,0x4e,0xbc,0xd6,0xc9,0x94, +0x3a,0x59,0x40,0x27,0x2b,0xeb,0xe4,0x08,0x9d,0x9c,0xa9,0x93, +0xab,0x75,0xf2,0x81,0x4e,0xa5,0xd6,0x29,0x1f,0x9d,0x2a,0xae, +0x53,0x75,0x74,0xaa,0xa9,0x4e,0xf5,0xd0,0xa9,0x81,0x3a,0x35, +0x4a,0xa7,0xe6,0xea,0xd4,0x72,0x9d,0xfa,0xa5,0xd3,0x29,0x75, +0xda,0x4b,0xa7,0xab,0xea,0xf4,0x30,0x9d,0xde,0xa8,0xd3,0x07, +0x75,0xfa,0x92,0x4e,0x3f,0xd4,0xe9,0xaf,0x3a,0x93,0x57,0x67, +0x1a,0xe9,0xcc,0x44,0x9d,0x59,0xac,0x33,0xa7,0x74,0x36,0xb9, +0xce,0x06,0xea,0x6c,0x69,0x9d,0xad,0xac,0xb3,0x75,0x74,0xb6, +0xa9,0xce,0xb6,0xd3,0xd9,0x1e,0x3a,0x3b,0x40,0x67,0x57,0xe9, +0x6c,0x94,0xce,0x1e,0xd2,0xd9,0xcb,0x3a,0xeb,0xd0,0xd9,0x47, +0x3a,0xe7,0xa5,0x73,0x39,0x75,0xce,0xae,0x73,0xc5,0x75,0xae, +0xb3,0xce,0xf5,0xd6,0xb9,0x55,0x3a,0xb7,0x53,0xe7,0x8e,0xe8, +0xdc,0x75,0x9d,0x7b,0xa6,0xf3,0x99,0x75,0xde,0x57,0xe7,0x8b, +0xeb,0x7c,0xb0,0xce,0x57,0xd7,0xf9,0x46,0x3a,0xdf,0x46,0xe7, +0xfb,0xe9,0xfc,0x48,0x9d,0x9f,0xa5,0xf3,0xe1,0x3a,0xbf,0x41, +0xe7,0x77,0xea,0xfc,0x69,0x5d,0xa0,0x2e,0x94,0xd2,0x85,0x89, +0xba,0x70,0x52,0x17,0x9e,0xe8,0x22,0x75,0xd1,0x5d,0x17,0x73, +0xe9,0x62,0x61,0x5d,0x6c,0xa6,0x8b,0x63,0x74,0x71,0x9a,0x2e, +0xc6,0xe8,0xe2,0x4d,0x5d,0x7c,0xa8,0x8b,0xaf,0x74,0x29,0x8d, +0x2e,0xe5,0xd4,0xa5,0xc2,0xba,0xd4,0x55,0x97,0x86,0xe9,0xd2, +0x54,0x5d,0x5a,0xac,0x4b,0xe1,0xba,0xb4,0x43,0x97,0x0e,0xe9, +0xd2,0x69,0x5d,0xba,0xa6,0x4b,0x77,0x75,0xc9,0xfc,0xe6,0x17, +0x5d,0xfa,0xa7,0xcb,0x29,0x74,0x39,0xb3,0x2e,0xfb,0xe8,0x72, +0xa0,0x2e,0x37,0xd1,0xe5,0xa9,0xba,0x3c,0x4f,0x97,0x57,0xe8, +0x72,0xa4,0x2e,0x6f,0xd1,0xe5,0xdd,0xba,0x7c,0x54,0x97,0xcf, +0xeb,0xf2,0x7b,0x5d,0xfe,0xad,0x2b,0x49,0x75,0xa5,0x98,0xae, +0x04,0xeb,0x4a,0x63,0x5d,0x69,0xa7,0x2b,0xbd,0x75,0x65,0xbd, +0xae,0xdc,0xd3,0xd5,0x2c,0xba,0x5a,0x5d,0x57,0x87,0xea,0xea, +0x3c,0x5d,0xdd,0xa9,0xab,0xd7,0x75,0xf5,0x8d,0xae,0x25,0xd5, +0xb5,0x5c,0xba,0x56,0x4a,0xd7,0xfa,0xea,0x5a,0x94,0xae,0x7d, +0xd6,0x75,0x4f,0x5d,0xcf,0xa6,0xeb,0x05,0x74,0xbd,0x98,0xae, +0xd7,0xd5,0xf5,0x6e,0xba,0x3e,0x4e,0xd7,0x57,0xe8,0xfa,0x61, +0x5d,0x3f,0xa7,0xeb,0x37,0x75,0xc3,0x5d,0x37,0x02,0x74,0xa3, +0x94,0x6e,0xd4,0xd4,0x8d,0x16,0xba,0xd1,0x47,0x37,0xf6,0xea, +0xa6,0x4d,0x37,0xbd,0x74,0x33,0x87,0x6e,0xfa,0xea,0x66,0x71, +0xdd,0x0c,0xd6,0xcd,0x1a,0xba,0x39,0x40,0x37,0x57,0xe9,0x66, +0xb4,0x6e,0x5e,0xd3,0xcd,0x47,0xba,0xf9,0x5a,0x37,0xbf,0x28, +0x2e,0x9b,0xe2,0x1a,0x2a,0x6e,0x8e,0xe2,0xae,0x29,0xee,0xa9, +0xe2,0xde,0x2a,0xee,0xbb,0x1c,0x6e,0x72,0x78,0xc8,0xe1,0x2d, +0x47,0x51,0x39,0x6a,0xc8,0xd1,0x58,0x8e,0x76,0x72,0xf4,0x94, +0x63,0xb4,0x1c,0xd3,0xe4,0x58,0x20,0xc7,0x29,0x39,0xf3,0xc8, +0xb9,0x5c,0xce,0x8b,0x72,0xfe,0xd3,0xad,0x0c,0xba,0x15,0xa0, +0x5b,0x23,0x75,0x6b,0xa1,0x6e,0x6d,0xd1,0xed,0x34,0xba,0x3d, +0x42,0xb7,0xff,0xd3,0x9d,0xd4,0xba,0x53,0x4b,0x77,0x7a,0xe9, +0xce,0x18,0xdd,0x89,0xd2,0x9d,0x0b,0xba,0xf3,0x45,0x77,0xb3, +0xeb,0x6e,0x45,0xdd,0xad,0xad,0xbb,0x4d,0x75,0x77,0xb8,0xee, +0x4e,0xd6,0xdd,0xf9,0xba,0xbb,0x51,0x77,0x8f,0xea,0xee,0x57, +0xdd,0x4b,0xa9,0x7b,0xb9,0x74,0xaf,0x94,0xee,0xd5,0xd3,0xbd, +0x2e,0xba,0x37,0x49,0xf7,0xe6,0xea,0x5e,0xa4,0xee,0x6d,0xd3, +0xbd,0x03,0xba,0x77,0x5a,0xf7,0xee,0xe8,0x5e,0xbc,0xee,0x7d, +0xd0,0xbd,0x3f,0xba,0x9f,0x45,0xf7,0xab,0xe8,0x7e,0x7f,0xdd, +0x5f,0xad,0xfb,0x57,0x74,0xff,0xb6,0xee,0xbf,0xd2,0xfd,0x2f, +0x7a,0x90,0x54,0x0f,0x0a,0xea,0x41,0x63,0x3d,0x98,0xac,0x07, +0xe7,0xf4,0xe0,0xa6,0x1e,0x3c,0xd7,0x83,0xef,0x7a,0x98,0x54, +0x0f,0x33,0xea,0x61,0x2e,0x3d,0xb4,0xeb,0x61,0x4f,0x3d,0x1c, +0xae,0x87,0xd3,0xf5,0x70,0xb9,0x1e,0x9e,0xd3,0xa3,0xf4,0x7a, +0x14,0xa4,0x47,0xed,0xf5,0x68,0x8a,0x1e,0xcd,0xd3,0xa3,0xe5, +0x7a,0x14,0xa9,0x47,0xe6,0xfe,0x9b,0x7a,0x74,0x5f,0x8f,0x13, +0xe9,0x71,0x1a,0x3d,0xce,0xa8,0xc7,0xf5,0xf4,0x78,0x81,0x1e, +0x87,0xe9,0x71,0x8c,0x1e,0x1f,0xd5,0xe3,0x2b,0x7a,0xfc,0x48, +0x8f,0x5f,0xe9,0xf1,0x67,0x3d,0xb1,0xe9,0x49,0x3a,0x3d,0xa9, +0xaf,0x27,0xdd,0xf4,0x64,0xb8,0x9e,0x4c,0xd7,0x93,0xe5,0x7a, +0xb2,0x43,0x4f,0x4e,0xe9,0x49,0x9c,0x9e,0x4a,0x4f,0xfd,0xf4, +0xb4,0x81,0x9e,0x46,0xeb,0xa9,0x53,0x4f,0xbf,0xe9,0x19,0xf5, +0x2c,0x40,0xcf,0xda,0xe8,0xd9,0x4c,0x3d,0x5b,0xac,0x67,0xe1, +0x7a,0xb6,0x51,0xcf,0x76,0xe8,0xd9,0x13,0x3d,0xf7,0xd4,0xf3, +0xca,0x7a,0xbe,0x4e,0xcf,0xcf,0xe9,0xf9,0x0d,0xc5,0x4b,0xf1, +0xc5,0x14,0x5f,0x5e,0xf1,0x35,0x14,0x3f,0x4c,0xf1,0x73,0x15, +0x7f,0x4b,0xf1,0x8f,0x15,0xff,0x5a,0xf1,0x5f,0xf5,0x02,0x7a, +0x91,0x5c,0x2f,0x3c,0xf5,0x22,0x9b,0x5e,0xb4,0xd7,0x8b,0x8d, +0x7a,0xf1,0x50,0x2f,0x33,0xea,0x65,0x4b,0xbd,0x3c,0xaf,0x04, +0x29,0xc1,0xa6,0x84,0xf4,0x4a,0xc8,0xa1,0x84,0x82,0x4a,0x28, +0xac,0x84,0x32,0x4a,0xa8,0xa2,0x84,0x50,0x25,0x0c,0x55,0xc2, +0x78,0x25,0xac,0x50,0xc2,0x3a,0x25,0xc4,0x28,0xe1,0xa6,0x12, +0x3e,0xe9,0x55,0x05,0xbd,0x9a,0xab,0x57,0xcb,0xf5,0x6a,0x9d, +0x5e,0x6d,0xd3,0xab,0xfd,0x7a,0x75,0x52,0xaf,0xae,0xe8,0xd5, +0x5d,0xbd,0xf6,0xd6,0xeb,0x96,0x7a,0x1d,0xa9,0xd7,0x6f,0xf5, +0xc6,0xae,0x37,0x83,0xf4,0xc6,0xa9,0xb7,0xbe,0x7a,0xdb,0x57, +0x6f,0xaf,0xea,0x5d,0x5e,0xbd,0xab,0xad,0x77,0x4d,0xf4,0xae, +0xad,0xde,0xf5,0xd0,0xbb,0x41,0x7a,0x17,0xad,0x77,0xdb,0xf5, +0xee,0x80,0xde,0x9d,0xd2,0xbb,0x87,0xfa,0x2f,0xab,0xfe,0xab, +0xac,0xff,0x22,0xf4,0xdf,0x2d,0xfd,0xf7,0x54,0xff,0xbd,0xd1, +0xfb,0x24,0xfa,0x3f,0x8a,0xce,0xfb,0xa1,0x07,0xc7,0xeb,0xe2, +0x7a,0x9f,0x73,0x8d,0x44,0xa9,0xd0,0x20,0xb3,0x28,0x1a,0x2a, +0xda,0x25,0xa4,0xa5,0x32,0xb2,0xa2,0x92,0x8a,0x26,0x4a,0x65, +0x27,0x33,0x15,0x29,0xd9,0xc9,0xa6,0x42,0x11,0x42,0x11,0xb2, +0x32,0xb3,0xf7,0xfc,0x18,0xd9,0xb3,0x90,0x54,0x9e,0xef,0xf3, +0xe3,0x39,0xe7,0xf5,0x27,0xdc,0x73,0xee,0x37,0x13,0xc5,0x37, +0x1b,0xc5,0xb7,0x01,0x8a,0x6f,0x11,0x8a,0x6f,0x49,0x8a,0x6f, +0x29,0x8a,0x6f,0xab,0x14,0xdf,0xb2,0x15,0xdf,0x76,0x2a,0xbe, +0xbd,0x53,0x7c,0xab,0x56,0x7c,0x6b,0x54,0x7c,0x6f,0xa1,0xf8, +0xde,0x51,0xf1,0xdd,0x4c,0xf1,0x7d,0xae,0xe2,0xfb,0x0a,0xc5, +0xf7,0x43,0x8a,0xef,0x65,0x8a,0xef,0x17,0x14,0xdf,0xeb,0x15, +0x3f,0xda,0x29,0x7e,0x58,0x29,0x7e,0xb8,0x2b,0x7e,0x8c,0x53, +0xfc,0x98,0xac,0xf8,0x91,0xab,0xf8,0x71,0x5c,0xf1,0xe3,0xa6, +0xe2,0xc7,0x53,0xc5,0x8f,0xaf,0x8a,0x6a,0x73,0x45,0x75,0x98, +0xa2,0xfa,0x8a,0xa2,0xfa,0xa5,0xa2,0x46,0x4f,0x51,0x33,0x5e, +0x51,0x93,0xad,0xa8,0xd9,0xad,0xa8,0x79,0xa8,0xf8,0xa9,0xa2, +0xf8,0xe9,0xa6,0xf8,0xb9,0x59,0xf1,0xf3,0x9e,0xe2,0xe7,0x0b, +0xc5,0x2f,0x3d,0xc5,0x2f,0x57,0xc5,0xaf,0x11,0x8a,0x5f,0x81, +0x8a,0x5f,0x39,0x8a,0x5f,0xf9,0x8a,0x5f,0x87,0x15,0xbf,0x2e, +0x2a,0x7e,0x3d,0x52,0xfc,0xfa,0xa4,0xf8,0xdd,0x52,0xf1,0x5b, +0x53,0xf1,0x5b,0x4f,0xf1,0xdb,0x4a,0xf1,0x7b,0x80,0xe2,0xf7, +0x28,0xc5,0xef,0x48,0xc5,0xef,0x04,0xc5,0xef,0x54,0xc5,0xef, +0x35,0x8a,0xdf,0x85,0x8a,0xdf,0xa5,0x8a,0xdf,0xd7,0x15,0xff, +0x5f,0x88,0x36,0x52,0xd4,0x5a,0x2a,0x6a,0x1d,0x14,0xb5,0xcb, +0x15,0xb5,0x6b,0x14,0xb5,0x5b,0x14,0xb5,0xb9,0x8a,0xda,0xfd, +0x8a,0xda,0x63,0x8a,0xda,0x33,0x8a,0xda,0x97,0x8a,0xda,0x8f, +0x8a,0x3f,0x76,0x8a,0x3f,0x2e,0x8a,0x3f,0xc3,0x14,0x7f,0x32, +0x14,0x7f,0xb2,0x15,0x7f,0x76,0x29,0xfe,0x1c,0x50,0xfc,0x39, +0xab,0xa8,0x53,0x56,0xd4,0x79,0x29,0xea,0xb6,0x2b,0xea,0x5e, +0x29,0xfe,0xaa,0x2b,0xfe,0x3a,0x2b,0xfe,0x86,0x2a,0xfe,0x26, +0x2a,0xfe,0x6e,0x53,0xfc,0x3d,0xa5,0xf8,0xfb,0x50,0xf1,0xb7, +0x46,0x51,0xaf,0xaa,0xa8,0x37,0x53,0xd4,0xbb,0x2a,0xea,0x27, +0x2b,0xea,0x97,0x2a,0xea,0x5f,0x29,0x1a,0x3c,0x15,0x0d,0xa3, +0x14,0x0d,0x41,0x8a,0x86,0x68,0x45,0xc3,0x4c,0x45,0xc3,0x5a, +0x45,0xc3,0x56,0x45,0xc3,0x5e,0x45,0x63,0x6b,0x45,0xa3,0xb6, +0xa2,0xd1,0x53,0xd1,0x18,0xa1,0x68,0x8c,0x53,0x34,0x26,0x2a, +0x1a,0x33,0x14,0x8d,0x5b,0x15,0x8d,0xc5,0x8a,0x7f,0x6a,0x8a, +0x7f,0x96,0x8a,0x7f,0x4e,0x8a,0x7f,0xee,0x8a,0x7f,0xbe,0x8a, +0x7f,0x81,0x8a,0x7f,0xe1,0x8a,0x7f,0xd3,0x15,0xff,0xb2,0x15, +0xff,0xca,0x15,0xff,0xae,0x2a,0xfe,0x7d,0xc3,0xff,0xd7,0xc4, +0x5b,0xa2,0x49,0x5b,0x34,0xb1,0x41,0x93,0x41,0x68,0x32,0x14, +0x4d,0x72,0xd1,0xe4,0x24,0xfe,0xff,0xa1,0xd6,0xff,0xd2,0xbf, +0x50,0x12,0x28,0xe9,0x40,0xa9,0x3b,0x94,0xac,0xa0,0x34,0x14, +0x4a,0xa1,0x50,0x8a,0x81,0xd2,0x32,0x28,0x65,0x41,0x29,0x17, +0x4a,0x07,0xa1,0x74,0x11,0x4a,0x7f,0xa0,0x70,0x85,0xa2,0x08, +0x70,0x00,0x96,0x00,0xbb,0x81,0xcb,0xc0,0x17,0xd0,0x0e,0x9c, +0x00,0x2e,0x06,0x77,0x43,0x9a,0x43,0xe6,0x43,0xce,0x42,0xea, +0xd0,0xd4,0x08,0x4d,0xa3,0xd1,0x74,0x05,0x9a,0x6e,0x45,0xd3, +0x8b,0x68,0xfa,0x09,0xcd,0x8c,0xd1,0x6c,0x02,0x9a,0x6d,0x47, +0xb3,0x02,0x34,0x3b,0x86,0x66,0x67,0xd1,0xec,0x1a,0x9a,0xb7, +0x42,0x73,0x6d,0x34,0xd7,0x47,0xf3,0x3e,0x68,0x6e,0x8f,0xe6, +0xa3,0xd1,0x3c,0x18,0xcd,0xdf,0xa2,0x85,0x2d,0x5a,0xc4,0xa2, +0xc5,0x36,0xb4,0xd8,0x8b,0x16,0xf7,0xa0,0xac,0x02,0xe5,0x30, +0x28,0x2f,0x85,0x72,0x1e,0x94,0x3f,0x43,0xb9,0x16,0x2d,0xad, +0xd0,0xd2,0x13,0x2d,0x83,0xd1,0x72,0x1e,0x5a,0xee,0x40,0xcb, +0x72,0xa8,0x74,0x82,0x4a,0x18,0x54,0xb6,0x41,0xe5,0x16,0x54, +0x3e,0x42,0xa5,0x11,0xad,0xd4,0xd0,0x4a,0x07,0xad,0x7a,0xa1, +0x95,0x03,0x5a,0x45,0xa2,0x55,0x02,0x5a,0xcd,0x47,0xab,0x0c, +0xb4,0xda,0x88,0x56,0x3b,0xd0,0xea,0x38,0x5a,0x3d,0x43,0xab, +0x06,0xb4,0x6e,0x8e,0xd6,0x1a,0x68,0xad,0x87,0xd6,0x6e,0x68, +0x3d,0x1c,0xad,0xd3,0xd0,0xba,0x10,0xad,0xaf,0xa1,0xf5,0x27, +0xa8,0xb6,0x84,0xaa,0x26,0x54,0x3b,0x42,0xb5,0x07,0x54,0x4d, +0xa1,0x3a,0x14,0xaa,0x7e,0x50,0x0d,0x86,0x6a,0x32,0x54,0x33, +0xa0,0xba,0x01,0xaa,0x07,0xa1,0x7a,0x09,0xaa,0xff,0x41,0x8d, +0x50,0x6b,0x05,0xb5,0xf6,0x50,0x33,0x85,0x9a,0x15,0xd4,0x9c, +0xa1,0xe6,0x09,0xb5,0x91,0x50,0x9b,0x02,0xb5,0x79,0x50,0x4b, +0x86,0xda,0x2a,0xa8,0xe5,0x40,0x2d,0x17,0x6a,0x8f,0xd1,0x46, +0x13,0x6d,0x5c,0xd0,0x26,0x11,0x6d,0x4a,0xd0,0xe6,0x3f,0xb4, +0xa9,0x46,0x9b,0x7a,0xa8,0xeb,0x41,0xbd,0x3f,0xd4,0x83,0xa0, +0x1e,0x01,0xf5,0xe9,0x50,0x9f,0x07,0xf5,0x25,0x50,0x3f,0x02, +0xf5,0x2a,0x68,0x68,0x40,0x63,0x28,0x34,0x42,0xa1,0x31,0x05, +0x1a,0x33,0xa1,0xb1,0x1d,0x1a,0x7b,0xa1,0x51,0x0c,0x8d,0x53, +0xd0,0x78,0x07,0x4d,0x35,0x68,0xea,0x40,0x53,0x1f,0x9a,0x66, +0xd0,0x0c,0x82,0x66,0x22,0x34,0x57,0x42,0x73,0x3b,0x34,0x2b, +0xa0,0xf9,0x14,0x9a,0x6f,0xa1,0xf9,0x1d,0x9a,0x7f,0xd1,0x96, +0x68,0xdb,0x13,0x6d,0xcd,0xd1,0xd6,0x0e,0x6d,0xbd,0xd0,0x76, +0x34,0xda,0x46,0xa3,0x6d,0x3a,0xda,0xee,0x43,0xdb,0xeb,0x68, +0xfb,0x08,0x6d,0xdf,0xa0,0xed,0x37,0xb4,0xfd,0x8b,0x76,0x82, +0x76,0x5d,0xd1,0xce,0x15,0xed,0x42,0xd0,0x2e,0x1d,0xed,0xb6, +0xa1,0xdd,0x1f,0xb4,0xef,0x89,0xf6,0xa3,0xd0,0x3e,0x08,0xed, +0xa3,0xd0,0x7e,0x06,0xda,0x2f,0x40,0xfb,0x34,0xb4,0x5f,0x83, +0xf6,0x5b,0xd0,0xfe,0x20,0xda,0xdf,0x42,0xfb,0xa7,0x68,0x5f, +0x03,0xad,0x66,0xd0,0x6a,0x03,0xad,0x0e,0xd0,0x1a,0x0e,0xad, +0x69,0xd0,0x5a,0x04,0xad,0xb5,0xd0,0xca,0x87,0x56,0x19,0xb4, +0x6e,0x42,0xeb,0x2b,0xb4,0xd5,0xa1,0x6d,0x00,0x6d,0x2b,0x68, +0xbb,0x42,0x7b,0x1a,0xb4,0xd7,0x42,0x7b,0x1b,0xb4,0xf7,0x41, +0xfb,0x08,0xb4,0x4f,0x41,0xfb,0x32,0xb4,0xef,0x40,0xfb,0x2d, +0x74,0x5a,0x43,0xa7,0x17,0x74,0xec,0xa1,0x13,0x00,0x9d,0x30, +0xe8,0xa4,0x41,0x27,0x07,0x3a,0x15,0xd0,0xa9,0x87,0x6e,0x6f, +0xe8,0x86,0x43,0x77,0x16,0x74,0x97,0x40,0x77,0x3d,0x74,0xf3, +0xa0,0x5b,0x02,0xdd,0x73,0xd0,0xbd,0x03,0xdd,0xe7,0xd0,0xfd, +0x8a,0x0e,0x5d,0xd0,0x61,0x30,0x3a,0x4c,0x41,0x87,0xb5,0xe8, +0xf0,0x00,0x1d,0xfe,0xa0,0xa3,0x2e,0x3a,0xf6,0x47,0x47,0x4f, +0x74,0x1c,0x8f,0x8e,0x89,0xe8,0x98,0x8b,0x8e,0xd7,0xd1,0xb1, +0x1e,0x7a,0xad,0xa0,0xd7,0x11,0x7a,0xc6,0xd0,0xb3,0x87,0x9e, +0x0b,0xf4,0xc6,0x42,0x2f,0x18,0x7a,0x51,0xd0,0x9b,0x0b,0xbd, +0xa5,0xd0,0x5b,0x03,0xbd,0xad,0xd0,0xdb,0x03,0xbd,0x52,0xe8, +0x9d,0x87,0xde,0x0d,0xe8,0x3d,0x82,0xde,0x2b,0xe8,0x7d,0x82, +0xde,0x2f,0xe8,0xfd,0x43,0xa7,0xe6,0xe8,0xd4,0x06,0x9d,0x3a, +0xa0,0x93,0x3d,0x3a,0x0d,0x46,0xa7,0x18,0x74,0x9a,0x8b,0x4e, +0xf9,0xe8,0x74,0x18,0x9d,0xca,0xd0,0xe9,0x12,0x3a,0x3d,0x46, +0xa7,0xaf,0xe8,0xac,0x81,0xce,0xf6,0xe8,0x1c,0x88,0xce,0x8b, +0xd0,0x39,0x1b,0x9d,0xf7,0xa1,0x73,0x25,0x3a,0xbf,0x46,0xe7, +0x5a,0x74,0x51,0x45,0x17,0x03,0x74,0xb1,0x41,0x97,0x70,0x74, +0x49,0x41,0x97,0xe3,0xe8,0xf2,0x0e,0x5d,0xaa,0xd1,0xa5,0x11, +0x5d,0x95,0xd1,0xd5,0x1c,0x5d,0x47,0xa2,0xeb,0x5c,0x74,0x2d, +0x40,0xd7,0xa7,0xe8,0xfa,0x0e,0xdd,0xbc,0xd1,0x2d,0x1a,0xdd, +0xb6,0xa0,0x5b,0x3e,0xba,0x3d,0x43,0xb7,0xcf,0xe8,0xae,0x40, +0xf7,0x7e,0xe8,0x1e,0x81,0xee,0xf1,0xe8,0x3e,0x1f,0xdd,0x53, +0xd1,0x7d,0x0d,0xba,0x6f,0x41,0xf7,0x7c,0x74,0xbf,0x8a,0xee, +0xf5,0xd0,0x6f,0x06,0x7d,0x75,0xe8,0x77,0x81,0xbe,0x21,0xf4, +0x2d,0xa0,0xef,0x08,0x7d,0x5f,0xe8,0x87,0x41,0x3f,0x1d,0xfa, +0xc5,0xd0,0xbf,0x07,0xfd,0xdf,0x30,0xd0,0x86,0x81,0x2d,0x0c, +0x02,0x61,0x30,0x1f,0x06,0x3b,0x61,0x70,0x11,0x06,0x9f,0x60, +0xf0,0x1b,0x3d,0x14,0xe8,0xd1,0x0d,0x3d,0x4c,0xd0,0x63,0x28, +0x7a,0x84,0xa0,0xc7,0x1c,0xf4,0xd8,0x8a,0x1e,0x27,0xd0,0xe3, +0x1e,0x7a,0xd4,0xa0,0xa7,0x1a,0x7a,0x9a,0xa0,0xa7,0x27,0x7a, +0x46,0xa0,0x67,0x0a,0x7a,0xee,0x46,0xcf,0xab,0xe8,0xf9,0x01, +0x3d,0xff,0xc1,0xd0,0x18,0x86,0x5e,0x30,0x9c,0x00,0xc3,0x28, +0x18,0x26,0xc0,0x70,0x25,0x0c,0xd7,0xc3,0x70,0x1b,0x0c,0xf7, +0xc0,0xf0,0x30,0x0c,0x4f,0xc2,0xf0,0x32,0x0c,0xef,0xc2,0xf0, +0x39,0x8c,0x00,0xa3,0x6e,0x30,0x72,0x86,0xd1,0x48,0x18,0x85, +0xc2,0x28,0x1e,0x46,0x8b,0x61,0x94,0x05,0xa3,0x02,0x18,0x95, +0xc1,0xa8,0x12,0x46,0x0f,0x61,0xf4,0x1a,0x46,0xd5,0x30,0xfa, +0x87,0x5e,0xaa,0xe8,0xa5,0x8b,0x5e,0xbd,0xd0,0xcb,0x0f,0xbd, +0x92,0xd0,0x6b,0x2f,0x7a,0x55,0xa2,0xd7,0x43,0xf4,0x7a,0x8d, +0x5e,0x5f,0xd0,0x5b,0x0d,0xbd,0x4d,0xd0,0xdb,0x1a,0xbd,0x07, +0xa2,0xb7,0x2f,0x7a,0xc7,0xa0,0x77,0x26,0x7a,0x6f,0x42,0xef, +0x63,0xe8,0x7d,0x06,0xbd,0xbf,0xc1,0x58,0x15,0xc6,0x26,0x30, +0xf6,0x82,0x71,0x14,0x8c,0xe3,0x61,0x9c,0x08,0xe3,0x65,0x30, +0xce,0x80,0x71,0x11,0x8c,0x4b,0x61,0x5c,0x05,0xe3,0xff,0x31, +0x7f,0x60,0xd2,0x11,0x26,0x96,0x30,0x19,0x06,0x93,0x18,0x98, +0x2c,0x80,0x49,0x2a,0x4c,0x56,0xc3,0x64,0x13,0x4c,0x76,0xc3, +0xe4,0x00,0x4c,0x4a,0x61,0xf2,0x10,0x26,0xef,0x60,0x2a,0x30, +0x55,0x85,0xa9,0x19,0x4c,0xbd,0x60,0x3a,0x06,0xa6,0x13,0x61, +0xba,0x0e,0xa6,0x67,0x60,0x5a,0x0d,0x33,0x63,0x98,0xf9,0xc1, +0x2c,0x1a,0x66,0x09,0x30,0x5b,0x0f,0xb3,0x52,0x98,0x3d,0x86, +0xd9,0x6b,0x98,0x7d,0x86,0xd9,0x6f,0x98,0xfd,0x43,0x1f,0x33, +0xf4,0x09,0x42,0x9f,0x55,0xe8,0x73,0x05,0x7d,0x5e,0xa0,0xcf, +0x7b,0xf4,0xa9,0x86,0x79,0x4f,0x98,0xf7,0x81,0xb9,0x1d,0xcc, +0x5d,0x60,0x1e,0x02,0xf3,0x4c,0x98,0x6f,0x82,0xf9,0x6e,0x98, +0x17,0xc1,0xfc,0x04,0xcc,0x2f,0xc0,0xfc,0x13,0xcc,0x1b,0x60, +0xd1,0x06,0x16,0xce,0xb0,0xf0,0x87,0xc5,0x64,0x58,0xc4,0xc0, +0x62,0x0e,0x2c,0x16,0xc3,0x62,0x05,0x2c,0xd6,0xc1,0x62,0x0b, +0x2c,0x0e,0xc2,0xa2,0x12,0x16,0xcf,0x61,0xf1,0x0e,0x96,0x84, +0xa5,0x01,0x2c,0xfd,0x60,0x99,0x08,0xcb,0x54,0x58,0xae,0x81, +0xe5,0x56,0x58,0xee,0x85,0x65,0x31,0x2c,0x6f,0xc3,0xf2,0x3d, +0xfa,0x2a,0xa3,0x6f,0x0f,0xf4,0xb5,0x40,0xdf,0x61,0xe8,0xeb, +0x8f,0xbe,0x49,0xe8,0xbb,0x0e,0x7d,0xf7,0xa1,0x6f,0x15,0xfa, +0x01,0xfd,0xb4,0xd0,0x6f,0x10,0xfa,0xc5,0xa0,0xdf,0x1e,0xf4, +0xbb,0x0b,0x2b,0x81,0x55,0x7f,0x58,0x6d,0x83,0xd5,0x49,0x58, +0xbd,0x85,0xd5,0x0f,0x58,0x3b,0xc1,0x7a,0x14,0xac,0xe3,0x60, +0x3d,0x1f,0xd6,0x59,0xb0,0xce,0x81,0xf5,0x49,0x58,0x57,0xc0, +0xfa,0x06,0xac,0x1f,0xc2,0xfa,0x15,0xac,0x1b,0x61,0xd3,0x1d, +0x36,0xee,0xb0,0x89,0x80,0x4d,0x16,0x6c,0x76,0xc0,0xa6,0x10, +0x36,0x25,0xb0,0x39,0x0b,0x9b,0xab,0xb0,0xb9,0x0f,0x9b,0xff, +0x60,0x53,0x03,0x5b,0x3d,0xd8,0x3a,0xc1,0x76,0x28,0x6c,0x13, +0x60,0x9b,0x04,0xdb,0x5c,0xd8,0x96,0xc0,0xb6,0x12,0xb6,0x6f, +0x61,0x5b,0x0f,0xbb,0x4e,0xb0,0x33,0x85,0x9d,0x33,0xec,0x3c, +0x61,0x37,0x0a,0x76,0x21,0xb0,0x8b,0x83,0xdd,0x42,0xd8,0x65, +0xc2,0x6e,0x1b,0xec,0xca,0x61,0x77,0x03,0x76,0xcf,0x60,0xf7, +0x15,0x76,0x75,0xb0,0x57,0x86,0xbd,0x16,0xec,0xed,0x60,0xef, +0x0f,0xfb,0x64,0xd8,0x1f,0x80,0xfd,0x69,0xd8,0xdf,0x80,0xfd, +0x73,0xd8,0x57,0xc3,0xbe,0x01,0x0e,0x4d,0xe1,0xd0,0x06,0x0e, +0xba,0x70,0x30,0x82,0x43,0x5f,0x38,0x38,0xc1,0xc1,0x03,0x0e, +0x7e,0x70,0x08,0x85,0xc3,0x34,0x38,0xcc,0x86,0x43,0x16,0x1c, +0x36,0xc1,0x61,0x37,0x1c,0xf6,0xc3,0xe1,0x18,0x1c,0xca,0xe1, +0x70,0x05,0x0e,0x77,0xe0,0xf0,0x0c,0x8e,0x2d,0xe0,0xa8,0x09, +0x47,0x67,0x38,0x0e,0x81,0xe3,0x48,0x38,0x06,0xc1,0x31,0x12, +0x8e,0x2b,0xe1,0xb8,0x01,0x8e,0x67,0xe0,0x78,0x19,0x8e,0xb7, +0xe1,0xf8,0x18,0x8e,0xaf,0xe0,0xf8,0x09,0x4e,0x0a,0x38,0xb5, +0x82,0x93,0x0e,0x9c,0xf4,0xe1,0x64,0x01,0x27,0x2f,0x38,0x45, +0xc0,0x29,0x19,0x4e,0xbb,0xe0,0x74,0x1e,0x4e,0xef,0xe0,0x54, +0x8b,0xfe,0xcd,0xd1,0xbf,0x3d,0xfa,0x9b,0xa2,0xbf,0x23,0xfa, +0x7b,0xa1,0x7f,0x04,0xfa,0x2f,0x43,0xff,0x6c,0xf4,0x3f,0x83, +0xfe,0x0f,0xd0,0xbf,0x11,0xce,0x6d,0xe0,0x6c,0x05,0xe7,0xb1, +0x70,0x9e,0x01,0xe7,0x1c,0x38,0xef,0x81,0xf3,0x11,0x38,0x9f, +0x85,0xf3,0x0d,0x38,0x3f,0x86,0xf3,0x5b,0x0c,0x50,0xc2,0x80, +0x0e,0x18,0xe0,0x88,0x01,0xa3,0x30,0x60,0x2e,0x06,0xa4,0x63, +0xc0,0x7e,0x0c,0xa8,0xc0,0x80,0x6a,0x0c,0x54,0xc5,0x40,0x4b, +0x0c,0x1c,0x87,0x81,0xf3,0x30,0x70,0x0b,0x06,0x9e,0xc1,0xc0, +0x27,0x18,0xa4,0xc0,0xa0,0x6e,0x18,0xe4,0x8e,0x41,0xcb,0x30, +0x68,0x2f,0x06,0x1d,0xc7,0xa0,0xcf,0x70,0x51,0x82,0x8b,0x2e, +0x5c,0x7a,0xc3,0xa5,0x3f,0x5c,0x46,0xc3,0x25,0x08,0x2e,0x49, +0x70,0x49,0x85,0x4b,0x16,0x5c,0x36,0xc1,0xe5,0x30,0x5c,0xca, +0xe0,0x72,0x01,0x2e,0x95,0x70,0xb9,0x07,0x97,0xe7,0x70,0x69, +0xc0,0x60,0x75,0x0c,0xd6,0xc3,0x60,0x73,0x0c,0xf6,0xc4,0x60, +0x5f,0x0c,0x9e,0x81,0xc1,0x2b,0x31,0x78,0x33,0x06,0x1f,0xc3, +0xe0,0xbb,0x18,0xfc,0x12,0x83,0xbf,0x62,0x70,0x03,0x5c,0xdb, +0xc3,0xd5,0x00,0xae,0x36,0x70,0x75,0x86,0xab,0x1f,0x5c,0xc3, +0xe0,0xba,0x18,0xae,0x6b,0xe1,0x5a,0x0a,0xd7,0xdb,0x70,0xfd, +0x09,0xb7,0xa6,0x70,0x33,0x80,0xdb,0x60,0xb8,0x85,0xc2,0x6d, +0x31,0xdc,0x0a,0xe1,0x56,0x09,0xb7,0xaf,0x70,0x17,0xb8,0x77, +0x84,0xbb,0x0d,0xdc,0x7d,0xe1,0x3e,0x03,0xee,0x1b,0xe1,0x5e, +0x06,0xf7,0x07,0x70,0xff,0x0a,0x0f,0x05,0x3c,0x7a,0xc2,0x63, +0x18,0x3c,0xfc,0xe1,0x11,0x06,0x8f,0x58,0x78,0xcc,0x85,0x47, +0x32,0x3c,0x56,0xc1,0x63,0x13,0x3c,0xce,0xc0,0xe3,0x35,0x3c, +0x7e,0xc1,0x53,0x0d,0x9e,0x1d,0xe0,0xa9,0x0f,0xcf,0x3e,0xf0, +0x74,0x80,0x67,0x38,0x3c,0xe7,0xc1,0x33,0x1d,0x9e,0xeb,0xe0, +0x79,0x08,0x9e,0x15,0xf0,0x7c,0x80,0x21,0x3a,0x18,0xe2,0x84, +0x21,0xe3,0x30,0x64,0x06,0x86,0xac,0xc6,0x90,0x2d,0x18,0x92, +0x87,0x21,0x87,0x30,0xa4,0x0c,0x43,0xfe,0x83,0x57,0x53,0x78, +0xa9,0xc1,0xcb,0x12,0x5e,0x4e,0xf0,0x0a,0x85,0xd7,0x7c,0x78, +0xad,0x87,0xd7,0x41,0x78,0x9d,0x84,0xd7,0x25,0x78,0xdd,0x86, +0xd7,0x33,0x78,0xbd,0x83,0xd7,0x37,0x78,0xfd,0x85,0x77,0x53, +0x78,0xb7,0x81,0x77,0x07,0x78,0x1b,0xc0,0x7b,0x28,0xbc,0xc7, +0xc3,0x7b,0x26,0xbc,0x97,0xc3,0x3b,0x07,0xde,0xb9,0xf0,0x2e, +0x85,0xf7,0x55,0x78,0x3f,0x85,0x8f,0x32,0x7c,0x4c,0xe0,0xe3, +0x0b,0x9f,0x6d,0xf0,0xb9,0x01,0x9f,0xc7,0xf0,0xa9,0xc2,0x50, +0x55,0x0c,0xb5,0xc6,0xd0,0x09,0x18,0x1a,0x89,0xa1,0xf1,0x18, +0xba,0x00,0x43,0xd3,0x30,0xb4,0x0c,0x43,0xbf,0x60,0x98,0x3d, +0x86,0xb9,0x62,0xd8,0x4c,0x0c,0xdb,0x86,0x61,0x77,0x30,0xec, +0x39,0x86,0xb7,0xc1,0x70,0x5b,0x0c,0x1f,0x87,0xe1,0x73,0x30, +0xfc,0x08,0x86,0xdf,0xc5,0xf0,0x1a,0x0c,0x6f,0xc0,0x88,0xa6, +0x18,0xa1,0x86,0x11,0xee,0x18,0x91,0x8a,0x11,0xbb,0x30,0xa2, +0x06,0x23,0x1a,0xe1,0xdb,0x1f,0xbe,0x59,0xf0,0x7d,0x82,0x91, +0xbd,0x31,0x72,0x3a,0x46,0xe6,0x60,0x64,0x11,0x46,0x5e,0xc0, +0xc8,0x9b,0x18,0xf9,0x1a,0x23,0x6b,0x31,0x4a,0x81,0x51,0xee, +0x18,0x35,0x02,0xa3,0xfc,0x31,0x2a,0x0e,0xa3,0xe6,0x63,0x54, +0x2a,0x46,0xad,0xc6,0xa8,0x12,0x8c,0x7a,0x82,0xd1,0x3d,0x31, +0xda,0x0d,0xa3,0xa7,0x60,0xf4,0x2c,0x8c,0x5e,0x82,0xd1,0x19, +0x18,0x9d,0x87,0xd1,0x87,0x30,0xfa,0x24,0x46,0xff,0xc5,0x18, +0x1d,0x8c,0xb1,0xc5,0x18,0x2f,0x8c,0x99,0x86,0x31,0x8b,0x31, +0x66,0x17,0xc6,0x1c,0xc3,0x58,0x65,0x8c,0x8d,0xc4,0xd8,0xdb, +0xf0,0xeb,0x02,0xbf,0x68,0xf8,0x1d,0x85,0xdf,0x19,0xf8,0x5d, +0x83,0xdf,0x43,0xf8,0xbd,0x86,0xdf,0x17,0xf8,0xfd,0xc1,0x38, +0x60,0x9c,0x0a,0xc6,0xf9,0x61,0x5c,0x0c,0xc6,0xbd,0xc1,0xf8, +0xe9,0x18,0x9f,0x87,0xf1,0xef,0xe0,0xdf,0x0e,0xfe,0x5d,0xe0, +0xef,0x05,0xff,0x74,0xf8,0x6f,0x80,0xff,0x3e,0xf8,0xdf,0x83, +0xff,0xff,0xfc,0x3a,0x04,0xa8,0x20,0x40,0x0f,0x01,0x16,0x08, +0x70,0x44,0x80,0x3b,0x02,0x26,0x20,0x20,0x12,0x01,0xf3,0x10, +0x90,0x8c,0x80,0x6c,0x04,0x14,0x22,0xe0,0x34,0x02,0x6e,0x21, +0xd0,0x15,0x81,0x7e,0x08,0x4c,0x42,0x60,0x2a,0x02,0xb3,0x10, +0x78,0x09,0x81,0xaf,0x30,0x81,0x98,0xd0,0x0e,0x13,0x0c,0x31, +0xc1,0x06,0x13,0xe6,0x62,0xc2,0x5e,0x4c,0x38,0x8e,0x09,0x15, +0x08,0x6a,0x86,0x20,0x1d,0x04,0x99,0x21,0xc8,0x1e,0x41,0x51, +0x08,0x5a,0x8d,0xa0,0x3b,0x08,0xaa,0xc1,0x44,0x75,0x4c,0xec, +0x8b,0x89,0x63,0x31,0x71,0x06,0x26,0x6e,0xc4,0xc4,0x32,0x4c, +0xbc,0x8f,0x89,0xb5,0x08,0x6e,0x87,0xe0,0xce,0x08,0xee,0x85, +0x60,0x27,0x04,0x7b,0x22,0x78,0x34,0x82,0x27,0x22,0x78,0x0a, +0x82,0x67,0x21,0x78,0x05,0x82,0x0f,0x20,0xf8,0x1c,0x82,0x5f, +0x21,0xf8,0x13,0x82,0x7f,0x21,0xa4,0x2d,0x42,0x3a,0x23,0xa4, +0x2f,0x42,0xc6,0x23,0x24,0x14,0x21,0xd3,0x10,0x32,0x07,0x21, +0x45,0x08,0x29,0x43,0xc8,0x25,0x84,0xaa,0x22,0x54,0x1b,0xa1, +0xe3,0x10,0x9a,0x8e,0xd0,0x72,0x84,0x5e,0x41,0xe8,0x6b,0x84, +0x36,0x60,0x52,0x3b,0x4c,0x32,0xc5,0x24,0x37,0x4c,0x0a,0xc2, +0xa4,0xd9,0x98,0x94,0x85,0x49,0x39,0x98,0x74,0x03,0x93,0x81, +0xc9,0x4e,0x98,0xec,0x8e,0xc9,0x23,0x30,0x39,0x00,0x93,0x13, +0x31,0x39,0x05,0x93,0xb7,0x63,0xf2,0x3e,0x4c,0x3e,0x8f,0xc9, +0x4f,0x30,0xf9,0x07,0xc2,0x94,0x11,0x36,0x00,0x61,0x43,0x11, +0x36,0x06,0x61,0xd1,0x08,0x8b,0x47,0x58,0x22,0xc2,0x32,0x11, +0xb6,0x0d,0x61,0xc7,0x11,0x76,0x05,0x61,0x77,0x10,0xf6,0x04, +0x61,0x5f,0x10,0xde,0x09,0xe1,0x43,0x11,0x3e,0x19,0xe1,0xc9, +0x08,0xcf,0x41,0xf8,0x11,0x84,0x5f,0x40,0xf8,0x3d,0x84,0xbf, +0x41,0x78,0x03,0x22,0x54,0x10,0xa1,0x8b,0x08,0x2b,0x44,0x8c, +0x44,0xc4,0x54,0x44,0x2c,0x42,0x44,0x3a,0x22,0xb6,0x21,0xe2, +0x10,0x22,0x2e,0x21,0xe2,0x36,0x22,0xaa,0x10,0x51,0x8b,0x48, +0x1b,0x44,0x26,0x22,0xb2,0x0c,0x91,0x77,0x10,0xf9,0x1f,0x22, +0x3f,0x23,0xb2,0x0e,0x51,0xcd,0x11,0xa5,0x89,0xa8,0x2e,0x88, +0xb2,0x44,0x94,0x0b,0xa2,0x46,0x23,0x6a,0x02,0xa2,0xc2,0x11, +0x35,0x03,0x51,0xc9,0x88,0x5a,0x89,0xa8,0xf5,0x88,0x3a,0x85, +0xa8,0xcb,0x88,0xba,0x87,0x68,0x35,0x44,0xbb,0x21,0xda,0x0f, +0xd1,0x73,0x10,0x9d,0x8c,0xe8,0x62,0x44,0x5f,0x41,0xf4,0xff, +0xfc,0x0f,0x98,0x62,0x84,0x29,0xfd,0x30,0xc5,0x1d,0x53,0x7c, +0x31,0x25,0x1c,0x53,0xe2,0x30,0x65,0x19,0xa6,0x6c,0xc1,0x94, +0x23,0x98,0xf2,0x1b,0x53,0x3b,0x60,0xaa,0x23,0xa6,0x86,0x60, +0x6a,0x34,0xa6,0x26,0x60,0x6a,0x16,0xa6,0x6e,0xc2,0xd4,0x52, +0x4c,0x7d,0x82,0xa9,0x8d,0x98,0xa6,0x83,0x69,0xae,0x98,0x36, +0x07,0xd3,0x36,0x60,0xda,0x0e,0x4c,0xbb,0x84,0x69,0x2f,0x31, +0xed,0x07,0xa6,0xfd,0x45,0x8c,0x1e,0x62,0x5c,0x11,0x13,0x80, +0x98,0x15,0x88,0x39,0x83,0x98,0xeb,0x88,0x79,0x82,0x98,0xf7, +0x88,0xf9,0x85,0x58,0x6d,0xc4,0x9a,0x21,0x76,0x00,0x62,0xbd, +0x10,0x3b,0x0e,0xb1,0xe1,0x88,0x5d,0x8c,0xd8,0x0c,0xc4,0x5e, +0x41,0xec,0x7b,0xc4,0xfe,0xc3,0x74,0x6b,0x4c,0x0f,0xc2,0xf4, +0xcd,0x98,0x9e,0x8b,0xe9,0x97,0x30,0xfd,0x1b,0xe2,0x34,0x11, +0xd7,0x09,0x71,0x0e,0x88,0x73,0x43,0xdc,0x30,0xc4,0x4d,0x45, +0xdc,0x0a,0xc4,0x9d,0x40,0xdc,0x63,0xc4,0xd5,0x21,0x5e,0x13, +0xf1,0x3d,0x11,0xef,0x88,0xf8,0x24,0xc4,0x2f,0x47,0xfc,0x7a, +0xc4,0x6f,0x47,0xfc,0x5e,0xc4,0x17,0x23,0xfe,0x34,0xe2,0x2f, +0xff,0xff,0xf1,0x51,0x82,0x0e,0x12,0xba,0x23,0xc1,0x1a,0x09, +0xd1,0x48,0x98,0x8f,0x84,0x54,0x24,0xac,0x41,0xc2,0x56,0x24, +0x1c,0x46,0xc2,0x29,0x24,0x5c,0x47,0xc2,0x0b,0x24,0x7c,0xc7, +0x0c,0x4d,0xcc,0x30,0xc2,0x8c,0x41,0x98,0xe1,0x83,0x19,0x69, +0x98,0x71,0x05,0x33,0x95,0x30,0x53,0x1f,0x33,0x3d,0x31,0x33, +0x06,0x33,0xd7,0x61,0xe6,0x36,0xcc,0xdc,0x8b,0x99,0xc5,0x98, +0x79,0x12,0x33,0x2f,0x62,0xe6,0x6d,0xcc,0x7c,0x83,0x99,0xb5, +0x98,0x05,0xcc,0x6a,0x8d,0x59,0xda,0x98,0xd5,0x1d,0xb3,0x2c, +0x31,0xcb,0x05,0xb3,0x46,0x61,0xd6,0x24,0xcc,0x4a,0xc1,0xac, +0x52,0xcc,0xba,0x84,0x59,0x77,0x30,0xeb,0x35,0x66,0xd5,0x60, +0xb6,0x0a,0x66,0x77,0xc4,0x6c,0x53,0xcc,0x76,0xc6,0xec,0xb1, +0x98,0xbd,0x02,0xb3,0xef,0x62,0x4e,0x57,0xcc,0x09,0xc4,0x9c, +0x95,0x98,0x53,0x80,0x39,0xb7,0x31,0xe7,0x19,0xe6,0xbc,0xc7, +0x9c,0x6a,0xcc,0xd5,0xc0,0x5c,0x0b,0xcc,0x1d,0x81,0xb9,0xb1, +0x98,0xbb,0x0b,0x73,0xef,0x63,0xee,0x3f,0xcc,0x33,0xc6,0x3c, +0x7f,0xcc,0x9b,0x8c,0x79,0xcb,0x31,0xef,0x14,0xe6,0x3d,0xc7, +0xbc,0x0f,0x48,0x54,0x43,0xe2,0x60,0x24,0xce,0x44,0x62,0x0e, +0x12,0xf3,0x90,0x78,0x08,0x89,0x37,0x90,0xf8,0x18,0x89,0x55, +0x48,0xfc,0x8e,0xf9,0xcd,0x31,0xbf,0x1f,0xe6,0x8f,0xc4,0xfc, +0x4c,0xcc,0x3f,0x8f,0xf9,0xf5,0x48,0xd2,0x41,0x92,0x15,0x92, +0x7c,0x91,0x14,0x83,0xa4,0x39,0x48,0x5a,0x82,0xa4,0x95,0x48, +0xda,0x80,0xa4,0xa3,0x48,0xba,0x87,0xa4,0x8f,0x58,0xa0,0x86, +0x05,0xd6,0x58,0x10,0x8e,0x05,0xa9,0x58,0xb0,0x07,0x0b,0x8a, +0xb1,0xe0,0x34,0x16,0x3c,0xc5,0x82,0x77,0x58,0x50,0x8d,0x85, +0xad,0xb0,0x50,0x0b,0x0b,0xbb,0x61,0xa1,0x2f,0x16,0x06,0x62, +0x61,0x3a,0x16,0x5e,0xc3,0xa2,0x56,0x58,0x34,0x0c,0x8b,0xc2, +0xb1,0x28,0x0e,0x8b,0xe6,0x63,0x51,0x2a,0x16,0xad,0xc6,0xa2, +0xcd,0x58,0x94,0x87,0x45,0x07,0xb1,0xe8,0x3c,0x16,0xfd,0xc4, +0xe2,0x26,0x58,0xdc,0x0e,0x8b,0x0d,0xb1,0xd8,0x02,0x8b,0x1d, +0xb1,0x78,0x3e,0x16,0x6f,0xc4,0xe2,0xc3,0x58,0x7c,0x11,0x8b, +0x1f,0x61,0xf1,0x27,0x2c,0x6e,0xc4,0x12,0x35,0x2c,0xe9,0x8a, +0x25,0x96,0x58,0x32,0x0a,0x4b,0xa2,0xb0,0x64,0x36,0x96,0xec, +0xc2,0x92,0x22,0x2c,0xb9,0x83,0x25,0xbf,0xb1,0xb4,0x2d,0x96, +0x9a,0x63,0xe9,0x60,0x2c,0x0d,0xc6,0xd2,0x24,0x2c,0xcd,0xc1, +0xd2,0x52,0x2c,0xbd,0x8f,0xa5,0x35,0x48,0x6e,0x83,0x64,0x53, +0x24,0x8f,0x45,0xf2,0x0c,0x24,0xa7,0x21,0x79,0x1d,0x92,0x8b, +0x91,0x7c,0x1b,0xc9,0x8d,0x58,0xe6,0x88,0x65,0x5b,0xb0,0xec, +0x0c,0x96,0xbd,0xc7,0xb2,0xbf,0x48,0x69,0x8a,0x94,0x36,0x48, +0xd1,0x45,0x8a,0x23,0x52,0xdc,0x90,0x32,0x1c,0x29,0x4b,0x90, +0xb2,0x0f,0x29,0xd7,0x91,0xf2,0x18,0xa9,0x82,0x54,0x35,0xa4, +0xf6,0x41,0xea,0x30,0xa4,0xce,0x40,0xea,0x42,0xa4,0xe6,0x23, +0xf5,0x19,0xd2,0xda,0x20,0xad,0x2b,0xd2,0x2c,0x90,0x36,0x10, +0x69,0x23,0x90,0x16,0x82,0xb4,0x78,0xa4,0xa5,0x22,0x2d,0x07, +0x69,0xb9,0x48,0x3b,0x86,0xb4,0x33,0x48,0x7b,0x82,0xb4,0xb7, +0x48,0xfb,0x83,0xe5,0x3d,0xb1,0xdc,0x1b,0xcb,0x83,0xb0,0x3c, +0x06,0xcb,0x93,0xb0,0x3c,0x03,0xcb,0xb7,0x62,0xf9,0x01,0x2c, +0x3f,0x8d,0xe5,0x37,0xb0,0x82,0x58,0xd1,0x1e,0x2b,0x8c,0xb0, +0xc2,0x0a,0x2b,0x22,0xb0,0x22,0x11,0x2b,0x52,0xb0,0x62,0x2d, +0x56,0xec,0xc7,0x8a,0x4a,0xac,0x78,0x86,0x15,0x6f,0x91,0xde, +0x04,0xe9,0x2d,0x91,0xde,0x0e,0xe9,0x5d,0x90,0xde,0x1b,0xe9, +0x56,0x48,0x1f,0x80,0x74,0x3f,0xa4,0x87,0x22,0x3d,0x15,0xe9, +0xa5,0x48,0x3f,0x8f,0xf4,0x57,0x58,0xd9,0x04,0x2b,0xbb,0x60, +0xe5,0x20,0xac,0x1c,0x89,0x95,0xab,0xb0,0x72,0x3b,0x56,0x1e, +0xc4,0xca,0x33,0x58,0xf9,0x1f,0x56,0x7e,0x47,0x86,0x02,0x19, +0x3a,0xc8,0x30,0x47,0xc6,0x30,0x64,0x44,0x21,0x63,0x21,0x32, +0x8e,0x23,0xe3,0x3f,0x64,0x36,0x45,0x66,0x2f,0x64,0x3a,0x20, +0x33,0x14,0x99,0x49,0xc8,0xcc,0x42,0xe6,0x6e,0x64,0x96,0x20, +0xf3,0x1c,0x32,0xaf,0x23,0xf3,0x11,0x32,0xdf,0x20,0xb3,0x0e, +0xab,0x54,0xb0,0xaa,0x1b,0x56,0x0d,0xc1,0xaa,0x51,0x58,0xb5, +0x12,0xab,0x76,0x63,0xd5,0x75,0xac,0xfa,0x87,0x2c,0x0d,0x64, +0x99,0x21,0x2b,0x1a,0x59,0xf3,0x90,0x75,0x1a,0x59,0x37,0x90, +0xf5,0x02,0x59,0xdf,0xb0,0x1a,0x58,0xdd,0x0a,0xab,0x3b,0x62, +0xb5,0x09,0x56,0xbb,0x63,0xf5,0x54,0xac,0x5e,0x8c,0xd5,0x6b, +0xb0,0xfa,0x30,0x56,0x9f,0xc3,0xea,0x6b,0x58,0x5d,0x8d,0xd5, +0x8d,0x58,0xd3,0x02,0x6b,0x86,0x62,0xcd,0x38,0xac,0x99,0x84, +0x35,0x31,0x58,0x53,0x80,0x35,0x95,0x58,0xf3,0x0e,0x6b,0xbe, +0x63,0x6d,0x4f,0xac,0xed,0x83,0xb5,0xf6,0x58,0x3b,0x07,0x6b, +0x77,0x63,0x6d,0x29,0xd6,0x3e,0xc4,0xda,0xcf,0x58,0xa7,0x84, +0x75,0x6d,0xb1,0xce,0x10,0xeb,0x1c,0xb0,0x6e,0x18,0xd6,0xa5, +0x60,0x5d,0x0e,0xd6,0x1d,0xc2,0xba,0xbb,0x58,0xaf,0x84,0xf5, +0xfd,0xb0,0x7e,0x28,0xd6,0x07,0x62,0x7d,0x1c,0xd6,0xa7,0x60, +0xfd,0x66,0xac,0x3f,0x88,0xf5,0x17,0xb0,0xfe,0x31,0xd6,0x7f, +0xc1,0x86,0x61,0xd8,0x90,0x80,0x0d,0xab,0xb1,0x21,0x0f,0x1b, +0x2a,0xb0,0xe1,0x09,0x36,0xfc,0xc5,0x46,0x35,0x6c,0x74,0xc1, +0xc6,0x99,0xd8,0xb8,0x01,0x1b,0x0b,0xb1,0xf1,0x14,0x36,0xde, +0xc0,0xc6,0x6a,0x64,0x37,0x43,0xb6,0x2e,0xb2,0x4d,0x91,0xdd, +0x1f,0xd9,0x9e,0xc8,0x1e,0x89,0xec,0x70,0x64,0x4f,0x47,0x76, +0x0a,0xb2,0x77,0x22,0xfb,0x0c,0xb2,0xaf,0x22,0xfb,0x31,0x36, +0x29,0x63,0x53,0x4f,0x6c,0x1a,0x81,0x4d,0x0b,0xb1,0x69,0x17, +0x36,0x15,0x62,0xd3,0x31,0x6c,0x2a,0xc7,0xa6,0xd7,0xd8,0xf4, +0x19,0x9b,0x6a,0x91,0xa3,0x8d,0x1c,0x3b,0xe4,0x0c,0x42,0x4e, +0x20,0x72,0xe6,0x20,0x67,0x2d,0x72,0xb6,0x21,0xa7,0x08,0x39, +0xa7,0x91,0x73,0x03,0x39,0x5f,0x90,0xd3,0x80,0xcd,0xcd,0xb0, +0xb9,0x1d,0x36,0x3b,0x62,0xf3,0x78,0x6c,0x8e,0xc4,0xe6,0xa5, +0xd8,0xbc,0x06,0x9b,0x77,0x61,0xf3,0x51,0x6c,0xbe,0x80,0xcd, +0x9f,0xb1,0xa5,0x27,0xb6,0x78,0x63,0xcb,0x32,0x6c,0x39,0x83, +0x2d,0x5f,0xb0,0xb5,0x2d,0xb6,0xea,0x61,0x6b,0x4f,0x6c,0x35, +0xc7,0x56,0x3b,0x6c,0x1d,0x84,0xad,0x61,0xd8,0x1a,0x8b,0xad, +0x73,0xb1,0xb5,0x00,0x5b,0x9f,0x62,0x5b,0x2b,0x6c,0x1b,0x8c, +0x6d,0x51,0xd8,0xb6,0x1e,0xdb,0xce,0x61,0xdb,0x7b,0x6c,0x57, +0xc7,0x76,0x5d,0x6c,0x77,0xc3,0xf6,0x68,0x6c,0x5f,0x8f,0xed, +0xa7,0xb1,0xfd,0x0d,0xb6,0x7f,0xc5,0xf6,0x3f,0xd8,0xd1,0x15, +0x3b,0x8c,0xb1,0xc3,0x06,0x3b,0xfc,0xb0,0x63,0x2a,0x76,0xa4, +0x63,0xc7,0x76,0xec,0x38,0x84,0x1d,0x15,0xd8,0xf1,0x03,0x3b, +0xf5,0xb0,0xb3,0x07,0x76,0x9a,0x61,0xa7,0x2d,0x76,0xfa,0x63, +0xe7,0x24,0xec,0x8c,0xc1,0xce,0xc5,0xd8,0xb9,0x06,0x3b,0xb7, +0x60,0x67,0x29,0x76,0x7e,0xc2,0xae,0xb6,0xd8,0xd5,0x0f,0xbb, +0xfc,0xb1,0x6b,0x2a,0x76,0xcd,0xc2,0xae,0x85,0xd8,0xb5,0x1f, +0xbb,0x4a,0xb0,0xeb,0x1c,0x76,0x7d,0xc5,0xee,0xb6,0xd8,0x3d, +0x10,0xbb,0x27,0x62,0xf7,0x02,0xec,0xce,0xc2,0xee,0x5c,0xec, +0x7e,0x82,0x5c,0x0d,0xe4,0x76,0x44,0x6e,0x0f,0xe4,0xf6,0x41, +0xae,0x2d,0x72,0x03,0x90,0x1b,0x86,0xdc,0xe9,0xc8,0x5d,0x8a, +0xdc,0x0c,0xe4,0x6e,0x44,0xee,0x5e,0xe4,0xbe,0x42,0x9e,0x32, +0xf2,0x34,0x91,0x67,0x87,0xbc,0x41,0xc8,0x1b,0x82,0xbc,0x51, +0xc8,0x9b,0x80,0xbc,0x08,0xe4,0x65,0x20,0x2f,0x1b,0x79,0xbb, +0x90,0x57,0x88,0xbc,0x52,0xe4,0x5d,0x46,0xde,0x63,0xe4,0x2b, +0x90,0xaf,0x89,0x7c,0x3d,0xe4,0xf7,0x44,0xbe,0x05,0xf2,0x1d, +0x90,0x3f,0x02,0xf9,0xe3,0x91,0xbf,0x07,0xf9,0xc5,0xc8,0x3f, +0x8d,0xfc,0x5b,0xc8,0x7f,0x89,0xfc,0x8f,0xc8,0xff,0x85,0x3d, +0xcd,0xb1,0xc7,0x04,0x7b,0x46,0x62,0xcf,0x4c,0xec,0xd9,0x8a, +0x3d,0x37,0xb1,0xe7,0x29,0xf6,0x7c,0xc5,0x9e,0x3a,0xec,0x15, +0xec,0xd5,0xc0,0xde,0x5e,0xd8,0x6b,0x83,0xbd,0xc1,0xd8,0xbb, +0x06,0x7b,0x77,0x61,0xef,0x3d,0xec,0xad,0xc3,0x3e,0xc1,0x3e, +0x0d,0xec,0xeb,0x86,0x7d,0x26,0xd8,0x67,0x8d,0x7d,0x83,0xb1, +0x6f,0x34,0xf6,0x85,0x63,0xdf,0x06,0xec,0xdb,0x83,0x7d,0x25, +0xd8,0x77,0x11,0xfb,0x1e,0x60,0xdf,0x4b,0xec,0xfb,0x81,0x7d, +0x7f,0x51,0xd0,0x14,0x05,0x6d,0x50,0xd0,0x0d,0x05,0x26,0x28, +0x70,0x44,0x81,0x1b,0x0a,0x86,0xa3,0x60,0x3c,0x0a,0xa2,0x50, +0x30,0x03,0x05,0x0b,0x51,0xb0,0x1c,0x05,0x3b,0x51,0x50,0x80, +0x82,0xa3,0x28,0x38,0x8d,0x82,0x4b,0x28,0xb8,0x85,0x82,0x27, +0x28,0x78,0x83,0x82,0xaf,0x28,0xd4,0x46,0x61,0x77,0x14,0x8e, +0x44,0xe1,0x04,0x14,0x86,0xa3,0x30,0x1e,0x85,0xc9,0x28,0xcc, +0x41,0x61,0x2e,0x0a,0x0f,0xa0,0xb0,0x04,0x85,0x67,0x51,0x78, +0x0d,0x85,0xf7,0x51,0xf8,0x01,0x85,0x75,0xd8,0xaf,0x8c,0xfd, +0x9a,0xd8,0x6f,0x8c,0xfd,0xae,0xd8,0x1f,0x80,0xfd,0xe9,0xd8, +0xbf,0x1b,0xfb,0x8b,0xb1,0xff,0x1c,0xf6,0xdf,0xc6,0xfe,0x6a, +0x1c,0x50,0xe0,0x80,0x1e,0x0e,0x58,0xe2,0x80,0x0f,0x0e,0x4c, +0xc4,0x81,0x25,0x38,0x90,0x8e,0x03,0x45,0x38,0x70,0x0e,0x07, +0xde,0xa3,0x48,0x19,0x45,0x66,0x28,0x0a,0x41,0x51,0x02,0x8a, +0x16,0xa1,0x68,0x25,0x8a,0x36,0xa1,0x28,0x1f,0x45,0x65,0x28, +0xba,0x84,0xa2,0x1a,0x1c,0x54,0xc5,0x41,0x33,0x1c,0xf4,0xc4, +0xc1,0x69,0x38,0xb8,0x00,0x07,0xb7,0xe1,0xe0,0x09,0x1c,0xbc, +0x8f,0x83,0x75,0x38,0x64,0x86,0x43,0x83,0x70,0x28,0x18,0x87, +0x16,0xe2,0xd0,0x76,0x1c,0x2a,0xc5,0xa1,0x17,0x38,0xf4,0x0f, +0x87,0xcd,0x71,0x78,0x08,0x0e,0x47,0xe3,0xf0,0x3c,0x1c,0x2e, +0xc0,0xe1,0x72,0x1c,0x7e,0x88,0xc3,0x1f,0x70,0xb8,0x11,0xc5, +0x6d,0x51,0xdc,0x09,0xc5,0x8e,0x28,0x76,0x45,0xf1,0x50,0x14, +0x47,0xa0,0x78,0x3a,0x8a,0xe7,0xa2,0x38,0x1b,0xc5,0x27,0x51, +0x5c,0x81,0xe2,0x2a,0x14,0x7f,0x43,0x71,0x23,0x8e,0xb4,0xc7, +0x91,0x1e,0x38,0xd2,0x07,0x47,0x86,0xe1,0xc8,0x34,0x1c,0x59, +0x86,0x23,0xf9,0x38,0x72,0x0c,0x47,0x2e,0xe0,0xc8,0x1d,0x1c, +0x79,0x89,0x23,0x75,0x38,0xda,0x02,0x47,0x3b,0xe0,0xa8,0x11, +0x8e,0x0e,0xc4,0xd1,0x40,0x1c,0x8d,0xc5,0xd1,0x6c,0x1c,0x2d, +0xc1,0xd1,0xfb,0x38,0x5a,0x87,0x63,0x1d,0x70,0xac,0x17,0x8e, +0xd9,0xe2,0x98,0x1b,0x8e,0x8d,0xc6,0xb1,0x29,0x38,0x96,0x88, +0x63,0x19,0x38,0x76,0x08,0xc7,0x6e,0xe0,0xd8,0x27,0x94,0xb4, +0x46,0x49,0x37,0x94,0xb8,0xa0,0x24,0x08,0x25,0x8b,0x50,0xb2, +0x15,0x25,0x27,0x51,0xf2,0x0e,0x25,0xb5,0x28,0x6d,0x8b,0xd2, +0xce,0x28,0xb5,0x42,0xe9,0x08,0x94,0x46,0xa3,0x34,0x09,0xa5, +0xb9,0x28,0x3d,0x84,0xd2,0x32,0x94,0x56,0xa0,0xf4,0x01,0x4a, +0x1b,0x71,0xbc,0x05,0x8e,0x77,0xc7,0x71,0x1f,0x1c,0x8f,0xc3, +0xf1,0x95,0x38,0xbe,0x07,0xc7,0x2f,0xe0,0xf8,0x13,0x1c,0xff, +0x85,0x13,0x5d,0x70,0xc2,0x0a,0x27,0xc6,0xe3,0xc4,0x1c,0x9c, +0x58,0x8f,0x13,0x65,0x38,0xf1,0x04,0x27,0x3e,0xa3,0x4c,0x50, +0xd6,0x17,0x65,0xce,0x28,0x1b,0x8b,0xb2,0x60,0x94,0x45,0xa3, +0x6c,0x06,0xca,0xd6,0xa0,0x6c,0x0b,0xca,0xf2,0x51,0x76,0x08, +0x65,0x67,0x51,0xf6,0x1a,0x27,0x35,0x70,0xb2,0x3b,0x4e,0x5a, +0xe1,0xa4,0x1b,0x4e,0x8e,0xc0,0xc9,0x14,0x9c,0x3c,0x8c,0x93, +0x55,0x38,0xa5,0x83,0x53,0x3e,0x38,0x35,0x13,0xa7,0x36,0xe0, +0xd4,0x21,0x9c,0xba,0x86,0x53,0xef,0x70,0xaa,0x11,0xa7,0xb5, +0x70,0x7a,0x20,0x4e,0xc7,0xe2,0xf4,0x7e,0x9c,0x7e,0x89,0xf2, +0x36,0x28,0x37,0x46,0xf9,0x70,0x94,0x4f,0x41,0x79,0x36,0xca, +0x8b,0x51,0xfe,0x1f,0xca,0x1b,0x70,0xa6,0x27,0xce,0x8c,0xc2, +0x99,0x24,0x9c,0x49,0xc3,0x99,0x22,0x9c,0x39,0x87,0x33,0x0f, +0x70,0xe6,0x2b,0xce,0x6a,0xe1,0x6c,0x6f,0x9c,0x1d,0x8d,0xb3, +0xe9,0x38,0x5b,0x8e,0xb3,0x57,0x70,0xf6,0x2e,0xce,0xbe,0xc0, +0xd9,0x0f,0x38,0x5b,0x8d,0xb3,0xf5,0x38,0xd7,0x14,0xe7,0x74, +0x70,0x4e,0x1f,0xe7,0xc6,0xe1,0xdc,0x24,0x9c,0xdb,0x84,0x73, +0x77,0x71,0xbe,0x25,0xce,0x5b,0xe3,0xfc,0x48,0x9c,0x9f,0x8c, +0xf3,0xb1,0x38,0x3f,0x0f,0xe7,0x97,0xe1,0xfc,0x6a,0x9c,0x3f, +0x8c,0xf3,0x37,0x70,0xfe,0x33,0x2e,0xe8,0xe1,0xc2,0x78,0x5c, +0xd8,0x84,0x0b,0xcf,0x51,0xd1,0x0e,0x15,0x9d,0x51,0x61,0x84, +0x0a,0x4b,0x54,0x38,0xa1,0xc2,0x1d,0x15,0xc3,0x51,0x31,0x0e, +0x15,0xa1,0xa8,0x98,0x85,0x8a,0xc5,0xa8,0x58,0x89,0x8a,0x9b, +0xa8,0x78,0x85,0x8a,0x4f,0xa8,0xf8,0x8d,0x8b,0x36,0xb8,0x38, +0x08,0x17,0xa3,0x70,0x31,0x01,0x17,0xe7,0xe3,0x62,0x0a,0x2e, +0x66,0xe1,0xe2,0x29,0x5c,0xbc,0x8c,0x8b,0x77,0x70,0xf1,0x39, +0x2e,0xfe,0xc0,0xa5,0xa6,0xb8,0xa4,0x83,0x4b,0x26,0xb8,0x64, +0x8d,0x4b,0x03,0x71,0xc9,0x07,0x97,0xfc,0x70,0x29,0x04,0x97, +0xa6,0xe0,0x52,0x32,0x2e,0x65,0xe3,0x52,0x2e,0x2e,0x9d,0xc2, +0xa5,0x5b,0xb8,0xf4,0x04,0x97,0xde,0xe1,0x72,0x13,0x5c,0xee, +0x89,0xcb,0xee,0xb8,0x3c,0x09,0x97,0xb3,0x71,0xf9,0x34,0x2e, +0xdf,0xc2,0xe5,0x67,0xb8,0xfc,0x01,0x97,0xeb,0x70,0x45,0x17, +0x57,0x7a,0xe1,0x8a,0x03,0xae,0x0c,0xc5,0x95,0x10,0x5c,0x99, +0x81,0x2b,0xb9,0xb8,0xf2,0x1f,0xae,0x7c,0xc6,0x95,0x46,0x5c, +0x6d,0x83,0xab,0x1d,0x71,0xb5,0x27,0xae,0xda,0xe2,0xaa,0x0f, +0xae,0x86,0xe0,0x6a,0x06,0xae,0x6e,0xc1,0xd5,0x42,0x5c,0x3d, +0x89,0xab,0x95,0xb8,0xfa,0x14,0x57,0x3f,0xe1,0x6a,0x03,0xae, +0xf5,0xc6,0x35,0x2b,0x5c,0x1b,0x80,0x6b,0x43,0x70,0x2d,0x0e, +0xd7,0x12,0x71,0x2d,0x05,0xd7,0x4a,0x71,0xed,0x3c,0xae,0xdd, +0x40,0xa5,0x12,0x2a,0x55,0x50,0xd9,0x0e,0x95,0x9d,0x51,0x69, +0x84,0x4a,0x4b,0x54,0x3a,0xa2,0xd2,0x0d,0x95,0xc3,0x51,0x39, +0x1e,0x95,0x93,0x51,0x19,0x8b,0xca,0xdd,0xa8,0x2c,0x42,0x65, +0x29,0x2a,0xcf,0xa1,0xf2,0x1e,0x2a,0xab,0x51,0xd9,0x80,0xeb, +0xed,0x70,0xdd,0x14,0xd7,0x3d,0x70,0x7d,0x04,0xae,0x6f,0xc2, +0xf5,0xd3,0xb8,0xfe,0x1c,0x37,0xcc,0x71,0xc3,0x03,0x37,0xc2, +0x70,0x63,0x06,0x6e,0x2c,0xc5,0x8d,0xcd,0xb8,0xb1,0x1f,0x37, +0x2a,0x70,0xe3,0x7f,0xd1,0x7b,0xdc,0x6c,0x86,0x9b,0xbd,0x71, +0xd3,0x15,0x37,0x63,0x70,0x73,0x09,0x6e,0xe6,0xe3,0x66,0x31, +0x6e,0x5e,0xc6,0xcd,0xa7,0xb8,0xa5,0x86,0x5b,0x3d,0x71,0xcb, +0x12,0xb7,0xa2,0x70,0x6b,0x26,0x6e,0x65,0xe1,0x56,0x1e,0x6e, +0x1d,0xc5,0xad,0x2b,0xb8,0x55,0x83,0xdb,0x5a,0xb8,0xed,0x8c, +0xdb,0xfe,0xb8,0xbd,0x14,0xb7,0xf7,0xe1,0xf6,0x11,0xdc,0x7e, +0x8a,0xdb,0xdf,0x70,0x07,0xb8,0xd3,0x1e,0x77,0x0c,0x70,0xc7, +0x16,0x77,0xdc,0x71,0x67,0x2c,0xee,0x44,0xe1,0x4e,0x1a,0xee, +0xac,0xc3,0x9d,0x22,0xdc,0x39,0x81,0x3b,0x37,0x70,0xe7,0x11, +0xee,0xd4,0xe0,0x4e,0x23,0xee,0x2a,0xe3,0xae,0x26,0xee,0xea, +0xe1,0x6e,0x0f,0xdc,0x35,0xc3,0xdd,0x29,0xb8,0xbb,0x12,0x77, +0xd7,0xe3,0xee,0x25,0xdc,0xfd,0x8d,0x7b,0x5a,0xb8,0x67,0x8b, +0x7b,0xa3,0x71,0x2f,0x08,0xf7,0xe6,0xe2,0x5e,0x3a,0xee,0xad, +0xc7,0xbd,0x93,0xb8,0x57,0x87,0xfb,0xcd,0x71,0x5f,0x1d,0xf7, +0xfb,0xe1,0xbe,0x0b,0xee,0xfb,0xe2,0xfe,0x44,0xdc,0x8f,0xc5, +0xfd,0x24,0xdc,0x5f,0x8f,0xfb,0xe7,0x70,0xff,0x27,0x1e,0x0c, +0xc4,0x83,0x69,0x78,0xb0,0x1d,0x0f,0x8e,0xe1,0xc1,0x2d,0x3c, +0x78,0x83,0x07,0xb5,0x78,0xa8,0x8c,0x87,0x1d,0xf1,0xb0,0x0f, +0x1e,0xba,0xe0,0xe1,0x58,0x3c,0x8c,0xc7,0xc3,0x2d,0x78,0x78, +0x0a,0x0f,0x6f,0xe3,0x61,0x0d,0x1e,0x29,0xe3,0x51,0x2f,0x3c, +0xea,0x8f,0x47,0xd3,0xf1,0x68,0x3d,0x1e,0x95,0xe1,0xd1,0x5b, +0x3c,0x6a,0xc4,0xe3,0x16,0x78,0xac,0x8b,0xc7,0xc6,0x78,0xec, +0x88,0xc7,0x43,0xf1,0x78,0x36,0x1e,0x67,0xe1,0xf1,0x3e,0x3c, +0x3e,0x83,0xc7,0x8f,0xf1,0xb8,0x1a,0x4f,0x04,0x4f,0xda,0xe3, +0x89,0x21,0x9e,0xd8,0xe1,0xc9,0x18,0x3c,0x99,0x82,0x27,0xf3, +0xf0,0xe4,0x20,0x9e,0xbc,0xc4,0x53,0x13,0x3c,0x1d,0x8e,0xa7, +0x31,0x78,0x5a,0x84,0xa7,0x17,0xf1,0xf4,0x16,0x9e,0xa9,0xe0, +0x59,0x57,0x3c,0xb3,0xc6,0xb3,0xf1,0x78,0x36,0x09,0xcf,0x92, +0xf0,0x2c,0x15,0xcf,0x56,0xe3,0xd9,0x66,0x3c,0x2b,0xc1,0xb3, +0xff,0x01,0xaf,0xf1,0x9c,0x78,0xae,0x89,0xe7,0xc6,0x78,0x3e, +0x06,0xcf,0xa7,0xe0,0xf9,0x46,0x3c,0x3f,0x80,0xe7,0xe5,0x78, +0x7e,0x0b,0xcf,0x5f,0xe1,0x79,0x35,0x5e,0xf4,0xc4,0x0b,0x2f, +0xbc,0x88,0xc6,0x8b,0xf9,0x78,0x71,0x0d,0x2f,0xaa,0xf0,0xe2, +0x37,0xfe,0x6b,0x8b,0xff,0x9c,0xf0,0xdf,0x22,0xfc,0x57,0x8d, +0x97,0x86,0x78,0xb9,0x08,0x2f,0x8f,0xe3,0x95,0x06,0x5e,0xd9, +0xe3,0x55,0x20,0x5e,0x85,0xe3,0xd5,0x2a,0xbc,0x3a,0x86,0x57, +0x77,0xf1,0xea,0x39,0x5e,0xfd,0xc3,0xeb,0x0e,0x78,0x6d,0x83, +0xd7,0xc1,0x78,0xbd,0x1b,0xaf,0xef,0xe1,0x4d,0x33,0xbc,0xd1, +0xc7,0x1b,0x0f,0xbc,0xf1,0xc5,0x9b,0x38,0xbc,0x49,0xc4,0x9b, +0x65,0x78,0xb3,0x0a,0x6f,0x0e,0xe1,0xcd,0x13,0x54,0xe9,0xa0, +0xca,0x11,0x55,0x69,0xa8,0x5a,0x87,0xaa,0xed,0xa8,0xda,0x87, +0xaa,0xa3,0xa8,0x3a,0x83,0xaa,0x7b,0x78,0xab,0xc0,0xdb,0xf6, +0x78,0x3b,0x04,0x6f,0xd7,0xe2,0xed,0x56,0xbc,0xad,0xc4,0xbb, +0xf6,0x78,0xe7,0x8e,0x77,0xe9,0x78,0x57,0x84,0x77,0x1f,0xf1, +0xbe,0x0d,0xde,0xbb,0xe1,0xfd,0x30,0xbc,0x8f,0xc1,0xfb,0xed, +0x78,0xbf,0x17,0xef,0xcb,0xf1,0xfe,0x1a,0xde,0xdf,0xc7,0xfb, +0x1f,0xf8,0xa0,0x86,0x0f,0xda,0xf8,0xe0,0x81,0x0f,0x93,0xf0, +0x61,0x03,0x3e,0xbc,0xc2,0x47,0x57,0x7c,0xdc,0x8c,0x8f,0x7b, +0xf0,0xf1,0x08,0x3e,0x96,0xe3,0xe3,0x15,0x7c,0xbc,0x87,0x8f, +0xff,0xe1,0x13,0xf0,0xc9,0x0a,0x9f,0x22,0xf1,0xe9,0x38,0x3e, +0x9d,0xc7,0xa7,0x6a,0x7c,0xb6,0xc2,0xe7,0x28,0x7c,0xce,0xc1, +0xe7,0xf7,0xf8,0x62,0x8b,0x2f,0x89,0xf8,0x92,0x8a,0x2f,0x59, +0xf8,0x72,0x0d,0x5f,0xaa,0xf1,0xa5,0x01,0x5f,0x9b,0xe2,0xab, +0x01,0xbe,0x8e,0xc6,0xd7,0x09,0xf8,0x3a,0x07,0x5f,0xd7,0xe2, +0xeb,0x3e,0x7c,0x3d,0x82,0xaf,0x37,0xf0,0xf5,0x0b,0xbe,0xb5, +0xc4,0x37,0x7b,0x7c,0x1b,0x8d,0x6f,0x6b,0xf1,0x6d,0x1b,0xbe, +0x3d,0xc7,0x77,0x3d,0x7c,0x37,0xc4,0x77,0x4b,0x7c,0x77,0xc4, +0x77,0x77,0x7c,0x0f,0xc5,0xf7,0x29,0xf8,0x9e,0x8e,0xef,0xe5, +0xf8,0x7e,0x05,0xdf,0xef,0xe1,0x87,0x16,0x7e,0x74,0xc7,0x8f, +0x7e,0xf8,0x91,0x82,0x1f,0x7b,0x51,0x4d,0x54,0xeb,0xa3,0x7a, +0x30,0xaa,0x87,0xa1,0xda,0x1f,0xd5,0xe1,0xa8,0x8e,0x47,0x75, +0x12,0xaa,0x37,0xa1,0xfa,0x08,0xaa,0xaf,0xa0,0xfa,0x33,0x6a, +0x54,0x51,0x63,0x8a,0x9a,0x38,0xd4,0xac,0x41,0x4d,0x31,0x6a, +0x4e,0xa3,0xe6,0x2e,0x6a,0x7e,0xe3,0x67,0x2b,0xfc,0xd4,0xc6, +0x4f,0x3f,0xfc,0xbc,0x88,0x5f,0x82,0x5f,0x76,0xf8,0x55,0x80, +0xdf,0xdd,0xf0,0x7b,0x05,0x7e,0xef,0xc5,0xef,0xdf,0xa8,0x35, +0x47,0x6d,0x32,0x6a,0x0f,0xa3,0xb6,0x11,0x7f,0x0c,0xf0,0xe7, +0x08,0xfe,0xbc,0x47,0x9d,0x3e,0xea,0x86,0xa2,0xee,0x0e,0xfe, +0xda,0xe0,0xef,0x61,0xfc,0xfd,0x8d,0x7a,0x6d,0xd4,0x8f,0x40, +0xfd,0x34,0xd4,0x6f,0x40,0xfd,0x09,0xd4,0xd7,0xa0,0xa1,0x09, +0x1a,0x5a,0xa2,0x61,0x12,0x1a,0xe6,0xa2,0x61,0x0d,0x1a,0xf6, +0xa0,0xa1,0x18,0x0d,0x95,0x68,0xf8,0x8a,0x86,0x3a,0x34,0x12, +0x8d,0x3a,0x68,0xb4,0x47,0xe3,0x30,0x34,0x46,0xa0,0x31,0x1b, +0x8d,0xbb,0xd1,0x78,0x1c,0x8d,0x15,0x68,0x7c,0x8e,0xc6,0x0f, +0x68,0xfc,0x85,0x7f,0x9a,0xf8,0xe7,0x8b,0x7f,0xcb,0xf0,0xef, +0x21,0x9b,0x68,0xb2,0xc9,0x58,0x36,0x89,0x66,0x93,0x65,0x6c, +0x92,0xc5,0xff,0xdf,0x44,0xcb,0x63,0x93,0x43,0x6c,0x72,0x9d, +0x4d,0x1e,0xb0,0xc9,0x6f,0x2a,0x81,0x4a,0x76,0x54,0x1a,0x4c, +0xa5,0x61,0x54,0xda,0x40,0xa5,0x5d,0x54,0x2a,0xa4,0xd2,0x69, +0x2a,0xdd,0xa5,0x52,0x2d,0x15,0x56,0x54,0xcc,0xa5,0xe2,0x22, +0x15,0x9f,0x89,0xd6,0x84,0x39,0x11,0x40,0xa4,0x11,0x8f,0x49, +0x1d,0x32,0x99,0xbc,0x40,0xde,0x25,0x6b,0x28,0x1d,0x29,0x09, +0x94,0xdd,0x6c,0xaa,0xc6,0xa6,0xba,0x6c,0xba,0x94,0x4d,0x2b, +0xd9,0xf4,0x03,0x9b,0x91,0xcd,0xb4,0xd8,0xcc,0x90,0xcd,0x5c, +0xd9,0x2c,0x98,0xcd,0x56,0xb0,0xd9,0x1e,0x36,0xab,0x64,0xb3, +0x46,0x36,0xef,0xc3,0xe6,0x89,0x6c,0x7e,0x93,0x2d,0xba,0xb0, +0x45,0x28,0x5b,0x2c,0x67,0x8b,0xcb,0x6c,0xf1,0x8b,0xca,0x6d, +0xa8,0xdc,0x85,0xca,0x63,0xa9,0xbc,0x8b,0xca,0x77,0xa9,0xfc, +0x97,0x2d,0xa3,0xd8,0xf2,0x11,0x55,0x7a,0x52,0xc5,0x83,0x2a, +0x93,0xa9,0xb2,0x94,0x2a,0xeb,0xa8,0x72,0x8b,0xad,0x3a,0xb0, +0xd5,0x08,0xb6,0x9a,0xca,0x56,0x9b,0xd9,0xea,0x12,0x5b,0x37, +0x67,0xeb,0x39,0x6c,0xfd,0x88,0xaa,0x01,0x54,0x2d,0xa5,0x9a, +0x12,0xd5,0x8c,0xa9,0x36,0x96,0x6a,0x2b,0xa9,0x76,0x8a,0x6a, +0xb7,0xa9,0xf6,0x8c,0x6a,0x1f,0xd8,0x66,0x14,0xdb,0x14,0xb0, +0xcd,0x7b,0xb6,0x69,0xa0,0x7a,0x73,0xaa,0x77,0xa1,0xfa,0x50, +0xaa,0x8f,0xa3,0xfa,0x24,0xaa,0x2f,0xa1,0xfa,0x7e,0xaa,0x9f, +0xa7,0xfa,0x4b,0x6a,0x28,0x51,0xa3,0x33,0x35,0x86,0x52,0x63, +0x12,0x35,0x36,0x51,0x23,0x8f,0x1a,0x87,0xa8,0x71,0x83,0x1a, +0x8f,0xa9,0x51,0x45,0x8d,0x1f,0xd4,0x54,0xa7,0xa6,0x35,0x35, +0x17,0x53,0xb3,0x82,0x9a,0xb5,0x6c,0xeb,0xca,0xb6,0xb1,0x6c, +0x9b,0xcd,0xb6,0x77,0xd8,0xae,0x3d,0xdb,0x79,0xb0,0xdd,0x62, +0xb6,0x3b,0xc2,0x76,0xf7,0xd8,0x5e,0xc1,0xf6,0xce,0x6c,0x7f, +0x8e,0x5a,0xf6,0xd4,0x5a,0x4c,0xad,0x02,0x6a,0xdd,0xa6,0xd6, +0x27,0x6a,0x37,0xa5,0xb6,0x1d,0xb5,0xe7,0x50,0xfb,0x22,0x75, +0x54,0xa8,0xe3,0x4e,0x1d,0x5f,0xea,0x04,0x52,0x27,0x9c,0x3a, +0x71,0xd4,0xc9,0xa0,0x4e,0x21,0x75,0xee,0x50,0x97,0xd4,0x9d, +0x4c,0xdd,0x1d,0xd4,0x3d,0x4a,0xdd,0x1b,0xd4,0xfd,0xca,0x0e, +0x4d,0xd9,0xa1,0x3d,0x3b,0x84,0xb2,0x43,0x25,0x3b,0x6a,0xb3, +0xe3,0x3c,0x76,0x3c,0xcf,0x8e,0xff,0xb1,0x63,0x3d,0xf5,0xd4, +0xa9,0x37,0x9c,0x7a,0x31,0xd4,0x9b,0x4d,0xbd,0x45,0xd4,0xdb, +0x4d,0xbd,0x22,0xea,0x5d,0xa0,0xde,0x1b,0x76,0xf2,0x66,0xa7, +0x19,0xec,0x74,0x9c,0x9d,0xea,0xd8,0x39,0x8e,0x9d,0xe7,0xb1, +0x73,0x21,0x3b,0x5f,0x60,0xe7,0x2a,0x76,0x51,0x61,0x97,0x2e, +0xec,0x32,0x93,0x5d,0x8a,0xd8,0xb5,0x2b,0xbb,0x2e,0x63,0xd7, +0xad,0xec,0x5a,0xce,0xae,0x0f,0xd9,0xf5,0x3b,0xbb,0xf5,0x62, +0x37,0x7f,0x76,0x2b,0x61,0xb7,0x1f,0xec,0xae,0xcb,0xee,0x8e, +0xec,0x1e,0xc4,0xee,0x1b,0xd8,0xfd,0x08,0xbb,0x9f,0x65,0xf7, +0x06,0xea,0x6b,0x51,0x3f,0x88,0xfa,0x0b,0xa9,0x9f,0x46,0xfd, +0xd5,0xd4,0xdf,0x4c,0xfd,0x5c,0xea,0xef,0xa7,0xfe,0x31,0xea, +0x97,0x53,0xff,0x15,0x0d,0x84,0x06,0xaa,0x34,0xe8,0x43,0x03, +0x1b,0x1a,0xf8,0xd1,0x20,0x84,0x06,0xb3,0x69,0x70,0x90,0x06, +0x37,0x68,0xf0,0x84,0x06,0xef,0xd9,0x43,0xd8,0x43,0x9d,0x3d, +0x3a,0xb1,0x87,0x31,0x7b,0xd8,0xb1,0x47,0x02,0x7b,0x64,0xb1, +0xc7,0x4e,0xf6,0x78,0xc6,0x9e,0x2d,0xd8,0xd3,0x8b,0x3d,0xb7, +0xb3,0x67,0x05,0x7b,0xd6,0xb0,0x67,0x23,0x0d,0x9b,0xd3,0xb0, +0x0d,0x0d,0x75,0x68,0xd8,0x8d,0x86,0xc6,0x34,0xec,0x4b,0xc3, +0x50,0x1a,0xae,0xa5,0xe1,0x59,0x1a,0x7e,0xa5,0x51,0x7b,0x1a, +0x75,0xa1,0x91,0x07,0x8d,0x46,0xd0,0x68,0x2e,0x8d,0x96,0xd2, +0xe8,0x2e,0x8d,0x1a,0xd8,0xcb,0x98,0xbd,0xac,0xd9,0x6b,0x11, +0x7b,0x15,0xb0,0xd7,0x11,0xf6,0xba,0xce,0x5e,0x0f,0xd8,0xeb, +0x0f,0x7b,0x77,0x60,0xef,0xb1,0xec,0x3d,0x97,0xbd,0x97,0xb0, +0x77,0x3a,0x7b,0xaf,0x67,0xef,0x6d,0xec,0x5d,0xc1,0xde,0x37, +0xd8,0xfb,0x21,0x7b,0x7f,0xa2,0x31,0x68,0xac,0x41,0x63,0x23, +0x1a,0xfb,0xd3,0x78,0x17,0x8d,0xaf,0xd2,0xf8,0x19,0x8d,0xdf, +0xd3,0xf8,0x2f,0x4d,0x84,0x26,0x6a,0x34,0x19,0x46,0x93,0xd9, +0x34,0xd9,0x4c,0x93,0x52,0x9a,0x54,0xd2,0xe4,0x15,0x4d,0x9b, +0xd1,0x54,0x8b,0xa6,0xa1,0x34,0x4d,0xa3,0xe9,0x6a,0x9a,0xe6, +0xd0,0x74,0x37,0x4d,0x0f,0xd0,0xb4,0x84,0xa6,0xe5,0x34,0xbd, +0x4c,0xd3,0xdb,0x34,0xad,0xa2,0xe9,0x37,0x9a,0x79,0xd0,0xcc, +0x8f,0x66,0x13,0x69,0x16,0x49,0xb3,0xf3,0x34,0x7b,0xc4,0x3e, +0x3d,0xd8,0xc7,0x81,0x7d,0xbc,0xd9,0x27,0x90,0x7d,0xa6,0xb1, +0x4f,0x2a,0xfb,0x6c,0x61,0x9f,0x3d,0xec,0x53,0xcc,0x3e,0x97, +0xd8,0xe7,0x31,0xfb,0x7c,0xa2,0xb9,0x15,0xcd,0xd3,0x68,0xbe, +0x87,0xe6,0x47,0x68,0x7e,0x8f,0xe6,0x5f,0x68,0xa1,0x43,0x0b, +0x5b,0x5a,0xc4,0xd0,0xe2,0x0e,0x2d,0xaa,0x69,0xd1,0x48,0x4b, +0x55,0x5a,0x5a,0xd2,0x72,0x38,0x2d,0xc3,0x68,0x99,0x47,0xcb, +0x37,0xec,0xab,0xc9,0xbe,0x73,0xd9,0x77,0x07,0xfb,0xbe,0x62, +0x3f,0xb2,0x9f,0x01,0xfb,0x85,0xb2,0xdf,0x2a,0xf6,0x3b,0xcc, +0x7e,0x5f,0x69,0xd5,0x8f,0x56,0xfd,0x69,0x35,0x91,0x56,0x9b, +0x69,0x75,0x82,0x56,0x9f,0x69,0xdd,0x8b,0xd6,0x0e,0xb4,0xf6, +0xa6,0xf5,0x66,0x5a,0x97,0xd1,0xba,0x92,0xd6,0xcf,0x69,0xfd, +0x95,0xd6,0x7f,0x68,0xd3,0x92,0x36,0xed,0x68,0xd3,0x99,0x36, +0xce,0xb4,0xf1,0xa4,0x8d,0x1f,0x6d,0x66,0xd2,0x66,0x11,0x6d, +0xb2,0x69,0xb3,0x8f,0xb6,0xaa,0xb4,0x35,0xa4,0xad,0x25,0x6d, +0xe7,0xd3,0x36,0x85,0xb6,0x59,0xb4,0xcd,0xa1,0x6d,0x2e,0x6d, +0x8b,0x68,0x7b,0x9c,0xb6,0xe7,0x69,0x7b,0x83,0x76,0x46,0xb4, +0x9b,0x40,0xbb,0x24,0xda,0x6d,0xa1,0x5d,0x19,0xed,0xee,0xd1, +0xee,0x17,0xed,0x75,0x69,0x6f,0x42,0x7b,0x37,0xda,0x4f,0xa3, +0x7d,0x26,0xed,0xf3,0x69,0x7f,0x96,0xf6,0x2f,0x68,0x5f,0x4f, +0x87,0x36,0x74,0x70,0xa7,0xc3,0x02,0x3a,0xe4,0xd0,0xe1,0x14, +0x1d,0x5e,0xd3,0x51,0x9b,0x8e,0x81,0x74,0x5c,0x46,0xc7,0x03, +0x74,0xfc,0x43,0xa7,0xde,0x74,0x8a,0xa7,0x53,0x12,0x9d,0x8e, +0xd2,0xe9,0x09,0x9d,0x6a,0xd9,0xbf,0x1b,0xfb,0x47,0xb0,0xff, +0x0c,0xf6,0x4f,0x61,0xff,0x17,0x74,0x56,0xa1,0xb3,0x39,0x9d, +0x03,0xe9,0xbc,0x8b,0xce,0xef,0x39,0xa0,0x29,0x07,0x0c,0xe7, +0x80,0x9d,0x1c,0xf0,0x87,0x03,0x15,0x1c,0xa8,0xcf,0x81,0xae, +0x1c,0x38,0x93,0x03,0x77,0x70,0x90,0x09,0x07,0x25,0x72,0xd0, +0x49,0xba,0x34,0xa1,0x4b,0x0f,0xba,0x8c,0xa6,0x4b,0x18,0x5d, +0x16,0xd0,0xa5,0x9c,0x2e,0x0f,0xe8,0xf2,0x97,0x83,0x2d,0x39, +0x78,0x0d,0x07,0xe7,0x73,0xf0,0x61,0x0e,0x3e,0xcb,0xc1,0x2f, +0xe8,0xaa,0xa0,0xab,0x15,0x5d,0x47,0xd3,0x75,0x16,0x5d,0xb7, +0xd0,0xf5,0x1c,0x5d,0x7f,0xd0,0xad,0x3b,0xdd,0xc6,0xd0,0x2d, +0x97,0x6e,0x57,0xe9,0xf6,0x85,0xee,0x6d,0xe9,0xee,0x47,0xf7, +0x79,0x74,0x5f,0x4b,0xf7,0x9d,0x74,0x3f,0x4e,0xf7,0xbb,0x74, +0xff,0x47,0x8f,0xce,0xf4,0x88,0xa1,0xc7,0x3c,0x7a,0x2c,0xa3, +0xc7,0x79,0x7a,0xdc,0xa1,0xc7,0x73,0x7a,0x7c,0xa4,0xa7,0x12, +0x3d,0xd5,0xe8,0xd9,0x89,0x9e,0xe3,0xe9,0x99,0x4e,0xcf,0x1b, +0xf4,0x7c,0xc9,0x21,0x4a,0x1c,0xa2,0xce,0x21,0xdd,0x38,0xc4, +0x82,0x43,0x06,0x72,0xc8,0x38,0x0e,0x89,0xe2,0x90,0x44,0x0e, +0x49,0xe5,0x90,0xe3,0x1c,0x72,0x81,0x5e,0x4a,0xf4,0xea,0x44, +0xaf,0xbe,0xf4,0x0a,0xa2,0xd7,0x0c,0x7a,0x95,0xd1,0xbb,0x39, +0xbd,0xd5,0xe9,0xdd,0x81,0xde,0x06,0xf4,0x0e,0xa1,0x77,0x06, +0xbd,0xf7,0xd1,0xbb,0x98,0xde,0xf7,0xe8,0xfd,0x91,0x3e,0x4d, +0xe8,0xd3,0x99,0x3e,0x83,0xe8,0x33,0x85,0x3e,0x5b,0xe9,0xb3, +0x87,0x3e,0xa7,0xe8,0x53,0xcf,0xa1,0x2a,0x1c,0x6a,0xc1,0xa1, +0x71,0x1c,0x7a,0x95,0xc3,0x0c,0x39,0x6c,0x18,0x87,0x4d,0xe3, +0xb0,0x4c,0x0e,0x3b,0xc8,0x61,0x65,0x1c,0x76,0x8d,0xc3,0x9e, +0x71,0xd8,0x7b,0x0e,0x1f,0xcf,0xe1,0x0b,0x39,0x3c,0x8d,0xc3, +0x0f,0x72,0xf8,0x19,0x0e,0x7f,0xc7,0x11,0x4a,0x1c,0x61,0xce, +0x11,0xc3,0x39,0x22,0x86,0x23,0xe6,0x73,0xc4,0x06,0x8e,0x38, +0xc6,0x11,0x4f,0xe8,0xdb,0x94,0xbe,0xd6,0xf4,0x1d,0x40,0x5f, +0x6f,0xfa,0x06,0xd1,0x77,0x21,0x7d,0x4f,0xd2,0xf7,0x0e,0x7d, +0x7f,0x73,0xa4,0x01,0x47,0xfa,0x72,0x64,0x12,0x47,0x9e,0xe1, +0xa8,0x3e,0x1c,0xb5,0x81,0xa3,0x2e,0x70,0xd4,0x47,0x8e,0x6e, +0xc3,0xd1,0x16,0x1c,0xed,0xcb,0xd1,0x81,0x1c,0x9d,0xc0,0xd1, +0xe9,0x1c,0xbd,0x9e,0xa3,0x2f,0x73,0x8c,0x3b,0xc7,0xcc,0xe1, +0x98,0xad,0x1c,0x73,0x95,0x63,0x6a,0x38,0xb6,0x0b,0xc7,0xda, +0x70,0xec,0x24,0x8e,0xcd,0xe0,0xd8,0x4f,0xf4,0x73,0xa7,0x5f, +0x24,0xfd,0xe2,0xe8,0x37,0x9f,0x7e,0x29,0xf4,0x5b,0x45,0xbf, +0x1c,0xfa,0xe5,0xd1,0xef,0x33,0xc7,0xa9,0x70,0x5c,0x6f,0x8e, +0xf3,0xe3,0xb8,0xf9,0x1c,0x57,0xc9,0xf1,0x6e,0x1c,0xbf,0x8f, +0xfe,0x5a,0xf4,0xb7,0xa5,0xff,0x40,0xfa,0x7b,0xd1,0x7f,0x0c, +0xfd,0x83,0xe9,0x1f,0x45,0xff,0x04,0xfa,0x2f,0xa0,0xff,0x7b, +0xfa,0xd7,0xd0,0xbf,0x81,0x01,0xed,0x19,0xd0,0x95,0x01,0xbd, +0x18,0xe0,0xcd,0x80,0x48,0x06,0x3c,0x60,0xe0,0x00,0x06,0xc6, +0x32,0x70,0x07,0x03,0xef,0x32,0xf0,0x39,0x03,0xdf,0x31,0xb0, +0x9a,0x81,0x8d,0x9c,0x30,0x95,0x13,0x2a,0x39,0xe1,0x0f,0x83, +0x42,0x18,0xb4,0x9a,0x41,0xdf,0x39,0xb1,0x03,0x27,0xa6,0x72, +0x62,0x2d,0x83,0xa3,0x19,0xbc,0x8a,0xc1,0xbb,0x18,0xbc,0x9f, +0xc1,0x15,0x0c,0xfe,0xc2,0xe0,0x3f,0x0c,0x21,0x43,0x06,0x33, +0x64,0x28,0x43,0xc6,0x31,0x64,0x39,0x43,0xd6,0x31,0x64,0x2b, +0x43,0x4a,0x19,0x72,0x8e,0x21,0xd7,0x19,0xf2,0x80,0x21,0x2f, +0x19,0xf2,0x99,0xa1,0x81,0x0c,0x0d,0x67,0xe8,0x74,0x86,0xce, +0x63,0x68,0x32,0x43,0x33,0x18,0xba,0x91,0xa1,0xfb,0x19,0x5a, +0xc2,0xd0,0x73,0x9c,0xd4,0x97,0x93,0xfa,0x73,0x92,0x07,0x27, +0x95,0x73,0xb2,0x35,0x27,0xbf,0x64,0xd8,0x08,0x86,0x15,0x33, +0xec,0x31,0xc3,0xde,0x30,0x5c,0x9b,0xe1,0x3e,0x0c,0x0f,0x67, +0x78,0x2a,0xc3,0x37,0x31,0x42,0x89,0x11,0xad,0x18,0xd1,0x99, +0x11,0xfd,0x18,0x31,0x80,0x11,0xab,0x18,0x71,0x8e,0x11,0x9f, +0x18,0x39,0x95,0x91,0x0b,0x19,0x99,0xc5,0xc8,0xcd,0x8c,0xdc, +0xc3,0xc8,0x62,0x46,0x56,0x30,0xf2,0x36,0xa3,0x5a,0x32,0xaa, +0x23,0xa3,0x4c,0x19,0xd5,0x9f,0x51,0x01,0x8c,0x0a,0x63,0xd4, +0x6c,0x46,0xa5,0x33,0x6a,0x23,0xa3,0x76,0x33,0xea,0x18,0xa3, +0xcd,0x19,0xbd,0x8b,0x53,0xb4,0x38,0x65,0x2d,0xa7,0xec,0xe1, +0x94,0x4b,0x9c,0x72,0x8b,0x53,0x9e,0x70,0xca,0x5f,0x4e,0x6d, +0xca,0xa9,0xba,0x9c,0xba,0x85,0x53,0xf3,0x38,0xf5,0x16,0xa7, +0x3e,0xe5,0xb4,0x76,0x9c,0xd6,0x95,0xd3,0x86,0x71,0xda,0x15, +0x4e,0xbb,0xcb,0x69,0x2f,0x18,0x33,0x92,0x31,0x81,0x8c,0x09, +0x67,0xcc,0x74,0xc6,0xcc,0x63,0x4c,0x32,0x63,0x32,0x18,0xb3, +0x91,0x31,0x3b,0x19,0x53,0xc8,0x98,0x12,0xc6,0x54,0x32,0xe6, +0x21,0x63,0x5e,0x31,0xe6,0x13,0x63,0xfe,0x31,0xb6,0x13,0x63, +0x07,0x30,0x76,0x18,0x63,0x27,0x30,0x76,0x3e,0x63,0x73,0x19, +0x7b,0x91,0xb1,0x6f,0x19,0xfb,0x8f,0xd3,0xb5,0x39,0xdd,0x90, +0xd3,0x9d,0x39,0x7d,0x24,0xa7,0x07,0x73,0xfa,0x7c,0x4e,0x5f, +0xc9,0xe9,0x9b,0x39,0xfd,0x20,0xa7,0x9f,0xe3,0xf4,0x7b,0x8c, +0xf3,0x62,0xdc,0x74,0xc6,0x25,0x32,0x2e,0x99,0x71,0x99,0x8c, +0xdb,0xc8,0xb8,0xbd,0x8c,0x2b,0x66,0xdc,0x69,0xc6,0xbd,0x62, +0xdc,0x17,0xc6,0xeb,0x33,0xde,0x8a,0xf1,0x4e,0x8c,0x77,0x67, +0xfc,0x38,0xc6,0x87,0x33,0x7e,0x0e,0xe3,0xdf,0x31,0xfe,0x1f, +0x13,0x54,0x98,0xa0,0xc5,0x04,0x7d,0x26,0x58,0x30,0xc1,0x89, +0x09,0x43,0x98,0x10,0xc6,0x84,0x99,0x4c,0x58,0xc0,0x84,0x54, +0x26,0xac,0x67,0xc2,0x56,0x26,0xe4,0x31,0xa1,0x88,0x09,0x27, +0x98,0x70,0x91,0x33,0x6c,0x39,0xc3,0x9f,0x33,0xa6,0x72,0xc6, +0x4a,0xce,0xd8,0xc8,0x19,0x3b,0x39,0xa3,0x84,0x33,0xce,0x72, +0xc6,0x7d,0xce,0x68,0xe0,0x4c,0x0d,0xce,0xec,0xc4,0x99,0x03, +0x39,0xd3,0x9b,0x33,0xc7,0x72,0x66,0x08,0x67,0x2e,0xe6,0xcc, +0xdd,0x9c,0x79,0x85,0x33,0xbf,0x71,0x96,0x16,0x67,0x0d,0xe2, +0xac,0x99,0x9c,0x55,0xce,0x59,0x2f,0x38,0x5b,0xc1,0xd9,0x86, +0x9c,0x9d,0xc9,0xd9,0x05,0x9c,0x7d,0x81,0xb3,0x6f,0x73,0xf6, +0x07,0xce,0x6e,0xe4,0x9c,0x56,0x9c,0x63,0xc2,0x39,0xbb,0x39, +0xa7,0x88,0x73,0xca,0x39,0xb7,0x23,0xe7,0xf6,0xe0,0xdc,0x3e, +0x9c,0x6b,0xc7,0xb9,0x2e,0x9c,0xeb,0xc3,0xb9,0x7e,0x9c,0x1b, +0xca,0xb9,0x39,0x9c,0x7b,0x80,0x73,0x2f,0x70,0xee,0x0d,0xce, +0xfd,0xc0,0xb9,0x35,0x9c,0xa7,0xca,0x79,0xba,0x9c,0xb7,0x8c, +0xf3,0xb6,0x72,0xde,0x11,0xce,0xfb,0xca,0x44,0x2d,0x26,0x8e, +0x64,0x62,0x00,0x13,0x93,0x98,0x98,0xcb,0xc4,0x2b,0x4c,0xac, +0x62,0xe2,0x77,0x26,0xd6,0x71,0x3e,0x39,0xbf,0x2b,0xe7,0x7b, +0x72,0x7e,0x04,0xe7,0xcf,0xe6,0xfc,0xd5,0x4c,0x6a,0xc9,0xa4, +0x58,0x26,0x25,0x32,0x29,0x85,0x49,0x59,0x4c,0xda,0xc4,0xa4, +0x02,0x26,0x1d,0xe3,0x02,0x6d,0x2e,0xe8,0xce,0x05,0x83,0xb8, +0xc0,0x9b,0x0b,0xc6,0x72,0x41,0x2a,0x17,0xac,0xe7,0x82,0x3c, +0x2e,0x38,0xc7,0x05,0x95,0x5c,0xa8,0xc6,0x85,0x7d,0xb9,0x70, +0x34,0x17,0xce,0xe2,0xc2,0x6c,0x2e,0xdc,0xc9,0x85,0x05,0x5c, +0x78,0x94,0x0b,0x4f,0x73,0xe1,0x1b,0x2e,0x52,0xe6,0x22,0x4d, +0x2e,0xb2,0xe2,0x22,0x67,0x2e,0x9a,0xc9,0x45,0xfb,0xb8,0xe8, +0x39,0x17,0x7d,0xe2,0xa2,0x7a,0x2e,0x56,0xe6,0x62,0x1d,0x2e, +0x36,0xe2,0x62,0x5b,0x2e,0x8e,0xe1,0xe2,0x24,0x2e,0x5e,0xc9, +0xc5,0xa5,0x5c,0xfc,0x8a,0x4b,0xcc,0xb8,0xc4,0x87,0x4b,0xe6, +0x72,0x49,0x3e,0x97,0xdc,0xe5,0x92,0x1a,0x2e,0xd5,0xe0,0x52, +0x0b,0x2e,0x1d,0xc6,0xa5,0x0b,0xb8,0xb4,0x80,0x4b,0xef,0x30, +0x59,0xc1,0xe4,0x2e,0x4c,0xf6,0x66,0x72,0x3c,0x93,0xf7,0x30, +0xf9,0x10,0x93,0x4f,0x30,0xf9,0x3c,0x93,0xaf,0x73,0x99,0x3a, +0x97,0x8d,0xe2,0xb2,0xc9,0x5c,0x36,0x87,0xcb,0xae,0x32,0xa5, +0x19,0x53,0xda,0x30,0x45,0x97,0x29,0xfa,0x4c,0x31,0x61,0x8a, +0x15,0x53,0x9c,0x99,0xe2,0xc1,0x94,0x00,0xa6,0x84,0x31,0x65, +0x11,0x53,0x56,0x33,0x65,0x3f,0x53,0x2a,0x99,0xf2,0x8d,0xa9, +0xca,0x4c,0xd5,0x60,0x6a,0x07,0xa6,0x1a,0x30,0x75,0x1a,0x53, +0x57,0x32,0x35,0x8f,0xa9,0x27,0x98,0xd6,0x96,0x69,0x31,0x4c, +0x9b,0xc3,0xb4,0x25,0x4c,0x5b,0xc9,0xb4,0xf5,0x4c,0xdb,0xc6, +0xb4,0xbd,0x4c,0x3b,0xcc,0xb4,0x0a,0xa6,0xdd,0x64,0xda,0x4b, +0xa6,0x7d,0x64,0xda,0x4f,0x2e,0x6f,0xca,0xe5,0x3d,0xb8,0xbc, +0x0f,0x97,0xdb,0x70,0xf9,0x40,0x2e,0x0f,0xe6,0xf2,0x68,0x2e, +0xcf,0xe1,0xf2,0xb3,0x5c,0x7e,0x87,0x2b,0xb4,0xb8,0xc2,0x88, +0x2b,0x2c,0xb9,0xc2,0x91,0x2b,0xdc,0xb9,0x62,0x04,0x57,0xf8, +0x73,0xc5,0x34,0xae,0x98,0xc3,0x15,0x4b,0xb9,0x62,0x3d,0x57, +0xec,0xe0,0x8a,0x62,0xae,0x78,0xcb,0xf4,0xb6,0x4c,0x1f,0xc3, +0xf4,0x70,0xa6,0xcf,0x61,0xfa,0x52,0xa6,0x67,0x32,0x7d,0x2b, +0xd3,0x0f,0x31,0xbd,0x9c,0xe9,0x37,0xb9,0xb2,0x1d,0x57,0x76, +0xe1,0x4a,0x53,0xae,0x74,0xe2,0x4a,0x6f,0xae,0x1c,0xc3,0x95, +0x93,0xb8,0x72,0x06,0x57,0xa6,0x70,0xe5,0x3d,0xae,0x7c,0xcb, +0x95,0xbf,0x98,0xd1,0x94,0x19,0x6a,0xcc,0xe8,0xc6,0x8c,0xde, +0xcc,0xe8,0xc7,0x0c,0x67,0x66,0x0c,0x61,0xc6,0x78,0x66,0x4c, +0x62,0xc6,0x34,0x66,0x24,0x31,0x63,0x27,0x33,0x2e,0x32,0xe3, +0x16,0x33,0xb5,0x99,0xd9,0x9d,0x99,0xc6,0xcc,0xec,0xc7,0x4c, +0x27,0x66,0xba,0x33,0x73,0x38,0x33,0xc7,0x33,0x33,0x89,0x99, +0x69,0xcc,0x2c,0x63,0xe6,0x05,0x66,0xfe,0x0f,0x7b,0xcd,0xcc, +0x2f,0x5c,0xd5,0x9c,0xab,0xd4,0xb9,0xaa,0x17,0x57,0x59,0x72, +0x95,0x03,0x57,0x0d,0xe6,0x2a,0x1f,0xae,0x9a,0xc4,0x55,0x09, +0x5c,0x95,0xc4,0x55,0xd9,0x5c,0x75,0x87,0x59,0xad,0x98,0x65, +0xc8,0x2c,0x5b,0x66,0xb9,0x30,0xcb,0x87,0x59,0x13,0x98,0x15, +0xc1,0xac,0x78,0x66,0x2d,0x63,0x56,0x16,0xb3,0xf2,0x99,0x75, +0x88,0x59,0x97,0x98,0x75,0x8f,0x59,0xef,0xb8,0xda,0x81,0xab, +0x23,0xb9,0x3a,0x8e,0xab,0xe7,0x72,0xf5,0x12,0xae,0xce,0xe0, +0xea,0x0d,0x5c,0xbd,0x83,0xab,0x4f,0x73,0xf5,0x2b,0xae,0xfe, +0xc4,0xd5,0x3f,0xb9,0x46,0xc1,0x35,0xca,0x5c,0xa3,0xc1,0x35, +0xe3,0xb8,0x26,0x8b,0x6b,0x1e,0x73,0xad,0x82,0x6b,0x55,0xb8, +0x56,0x87,0x6b,0xf5,0xb9,0xd6,0x92,0x6b,0x1d,0xb9,0xd6,0x87, +0x6b,0xfd,0xb8,0x36,0x9a,0x6b,0xd3,0xb8,0x76,0x0b,0xd7,0xe6, +0x73,0x6d,0x31,0xd7,0x9e,0xe2,0xda,0x17,0x5c,0xfb,0x9e,0xeb, +0xda,0x73,0x9d,0x19,0xd7,0xd9,0x70,0xdd,0x00,0xae,0xf3,0xe4, +0x3a,0x5f,0xae,0xf3,0xe7,0xba,0xb9,0x5c,0xb7,0x94,0xeb,0xf6, +0x70,0xdd,0x79,0xae,0x7b,0xc3,0xf5,0x06,0x5c,0x6f,0xca,0xf5, +0xd6,0x5c,0x3f,0x80,0xeb,0xfd,0xb9,0x7e,0x09,0xd7,0xe7,0x72, +0xfd,0x47,0xae,0x6f,0xe0,0x86,0x56,0xdc,0xd0,0x91,0x1b,0x7a, +0x73,0x83,0x1d,0x37,0x8c,0xe4,0x86,0x49,0xdc,0x30,0x8f,0x1b, +0x4a,0xb8,0xe1,0x3e,0x37,0xbc,0xe2,0x46,0x75,0x6e,0xd4,0xe3, +0x46,0x7b,0x6e,0x4c,0xe4,0xc6,0x72,0x66,0x2b,0x31,0xdb,0x95, +0xd9,0xa3,0x99,0x1d,0xc6,0xec,0xd9,0xcc,0x3e,0xc9,0xec,0x8b, +0xcc,0xbe,0xc9,0xec,0xdf,0xdc,0xd4,0x84,0x9b,0x5a,0x70,0x93, +0x26,0x37,0x45,0x72,0xd3,0x32,0x6e,0x2a,0x61,0x4e,0x1b,0xe6, +0xf4,0x62,0x8e,0x0b,0x73,0x26,0x30,0x27,0x92,0x39,0xf1,0xcc, +0xc9,0x64,0xce,0x26,0xe6,0x9c,0x65,0xce,0x5d,0xe6,0x54,0x33, +0xa7,0x81,0x9b,0x9b,0x73,0xb3,0x2e,0x37,0x5b,0x70,0xb3,0x27, +0x37,0x6f,0xe0,0xe6,0xcb,0xdc,0xfc,0x82,0x9b,0x3f,0x70,0x73, +0x0d,0xb7,0xe8,0x72,0x8b,0x3e,0xb7,0x98,0x72,0x8b,0x2d,0xb7, +0x8c,0xe6,0x96,0x58,0x6e,0x59,0xc4,0x2d,0x3b,0xb9,0xe5,0x22, +0xb7,0xbc,0xe3,0x96,0x6a,0x6e,0x35,0xe0,0xd6,0xe1,0xdc,0xba, +0x88,0x5b,0x77,0x73,0xeb,0x3d,0x6e,0x6b,0xc6,0x6d,0xd6,0xdc, +0x16,0xc6,0x6d,0xd3,0xb9,0x2d,0x91,0xdb,0xb2,0xb9,0x6d,0x17, +0xb7,0x5d,0xe3,0xb6,0x1a,0x6e,0x6b,0xe4,0xf6,0x5e,0xdc,0x3e, +0x86,0xdb,0x83,0xb9,0x7d,0x2a,0xb7,0xe7,0x70,0xfb,0x09,0xee, +0x50,0xe6,0x8e,0x76,0xdc,0xd1,0x85,0x3b,0x8c,0xb9,0xc3,0x8d, +0x3b,0xc2,0xb8,0xe3,0x30,0x77,0xdc,0xe0,0x8e,0xcf,0xdc,0xf1, +0x8f,0x3b,0x35,0xb9,0xd3,0x86,0x3b,0x03,0xb9,0x33,0x86,0x3b, +0x17,0x71,0xe7,0x5a,0xee,0xdc,0xc6,0x9d,0x7b,0xb9,0xf3,0x10, +0x77,0x9e,0xe4,0xce,0xd7,0xdc,0xe5,0xc4,0x5d,0xc3,0xb9,0x6b, +0x3c,0x77,0x1d,0xe3,0xae,0x7b,0xdc,0xf5,0x8b,0xbb,0x3d,0xb9, +0x3b,0x84,0xbb,0xa7,0x71,0x77,0x39,0x77,0x5f,0xe3,0xee,0x2f, +0xdc,0x5d,0xcb,0xdc,0x76,0xcc,0x35,0x65,0xae,0x33,0x73,0x47, +0x31,0x77,0x36,0x73,0x77,0x33,0x77,0x3f,0x73,0xcb,0x99,0x7b, +0x9b,0xb9,0x55,0xcc,0xfd,0xce,0xdc,0xbf,0xcc,0x03,0xf3,0x5a, +0x33,0xaf,0x3b,0xf3,0x4c,0x99,0x67,0xcb,0x3c,0x6f,0xe6,0x05, +0x31,0x2f,0x92,0x79,0x09,0xcc,0xbb,0xc2,0x7c,0x6d,0xe6,0x77, +0x63,0xbe,0x09,0xf3,0xe7,0x31,0x7f,0x19,0xf3,0xb3,0x98,0xbf, +0x99,0xf9,0xf9,0xcc,0x3f,0xc4,0xfc,0x93,0xcc,0xbf,0xcc,0xfc, +0x3b,0xcc,0x7f,0xcf,0xfc,0x1a,0xee,0x69,0xc1,0x3d,0x13,0xb8, +0x67,0x1f,0xf7,0x7c,0xe1,0x9e,0x3a,0xee,0x15,0xee,0x55,0xe5, +0x5e,0x1d,0xee,0xd5,0xe7,0x5e,0x47,0xee,0x4d,0xe4,0xde,0x54, +0xee,0x5d,0xc3,0xbd,0xaf,0xb9,0xf7,0x2b,0xf7,0xfe,0xe5,0xbe, +0xee,0xdc,0x37,0x88,0xfb,0x36,0x73,0x5f,0x19,0xf7,0x5d,0xe7, +0xbe,0x9f,0x2c,0xe8,0xc0,0x02,0x23,0x16,0x78,0xb3,0x20,0x80, +0x05,0xd3,0x58,0xb0,0x8a,0x05,0x5f,0x59,0x50,0xc7,0x42,0x15, +0x16,0x76,0x66,0xa1,0x35,0x0b,0x07,0xb1,0x70,0x24,0x0b,0x27, +0xb3,0x70,0x0e,0x0b,0xaf,0x71,0xbf,0x1e,0xf7,0x9b,0x70,0xbf, +0x23,0xf7,0x7b,0x71,0xff,0x78,0xee,0x8f,0xe2,0xfe,0xb9,0xdc, +0xbf,0x9c,0xfb,0x5f,0x70,0xff,0x07,0x1e,0x20,0x0f,0xb4,0xe6, +0x81,0x9e,0x3c,0x60,0xc1,0x03,0xde,0x3c,0xb0,0x89,0x07,0x76, +0xf3,0x40,0x11,0x8b,0x9a,0xb2,0xa8,0x0d,0x8b,0x3a,0xb0,0xa8, +0x07,0x8b,0xcc,0x59,0xe4,0xc0,0x22,0x57,0x16,0x0d,0x67,0x51, +0x00,0x8b,0xc2,0x58,0x34,0x9d,0x45,0xcb,0x58,0x94,0xc3,0xa2, +0x3c,0x16,0x95,0xb1,0xa8,0x82,0x45,0x37,0x59,0xf4,0x98,0x45, +0xef,0x79,0xb0,0x2b,0x0f,0x7a,0xf1,0xe0,0x1c,0x1e,0x3c,0xc1, +0x43,0xe4,0x21,0x5d,0x1e,0xea,0xcd,0x43,0xfd,0x78,0xc8,0x87, +0x87,0x02,0x78,0x28,0x91,0x87,0xce,0xf2,0x50,0x3d,0x0f,0x37, +0xe5,0xe1,0x76,0x3c,0x6c,0xc4,0xc3,0x76,0x3c,0x3c,0x96,0x87, +0xc3,0x79,0x78,0x0e,0x0f,0xa7,0xf1,0x70,0x36,0x0f,0xef,0xe2, +0xe1,0xab,0x3c,0xfc,0x8c,0x87,0x1b,0x59,0xac,0xcd,0x62,0x43, +0x16,0xdb,0xb1,0x38,0x93,0xc5,0x39,0x2c,0x3e,0xc5,0xe2,0x5b, +0x3c,0x42,0x1e,0xe9,0xc5,0x23,0x13,0x78,0x64,0x0e,0x8f,0xec, +0xe1,0x91,0xd7,0x3c,0xea,0xcc,0xa3,0x81,0x3c,0x1a,0xc1,0xa3, +0x87,0x78,0x4c,0x87,0xc7,0xfa,0xf3,0x58,0x28,0x8f,0xc5,0xf0, +0x58,0x39,0x4b,0x5a,0xb1,0xa4,0x3d,0x4b,0x7a,0xb1,0xc4,0x89, +0x25,0x23,0x58,0x12,0xc6,0x92,0x19,0x2c,0x49,0x63,0xc9,0x46, +0x96,0xec,0x61,0x49,0x05,0x4b,0xaa,0x58,0xf2,0x83,0xa5,0x2a, +0x2c,0x6d,0xcf,0xd2,0x5e,0x2c,0xed,0xcb,0x52,0x1f,0x96,0x8e, +0x65,0xe9,0x44,0x96,0x46,0xb1,0x34,0x81,0xa5,0x4b,0x58,0x7a, +0x90,0xa5,0xef,0x79,0xdc,0x86,0xc7,0xc7,0xf0,0x78,0x2a,0x8f, +0x9f,0xe0,0xf1,0x6f,0x3c,0xa1,0xcb,0x13,0x36,0x3c,0x31,0x8a, +0x27,0x26,0xf0,0xc4,0x02,0x9e,0x58,0xc3,0x13,0xa7,0x78,0xe2, +0x3f,0x9e,0xf8,0xc8,0x13,0x3f,0x79,0xe2,0x1f,0xcb,0xdc,0x59, +0xe6,0xcb,0xb2,0x40,0x96,0xa5,0xb2,0x6c,0x0d,0xcb,0xb6,0xb1, +0xec,0x32,0xcb,0xee,0xb0,0xec,0x1b,0xcb,0xfe,0xf2,0x64,0x0f, +0x9e,0x34,0xe7,0xc9,0xa9,0x3c,0x59,0xc8,0x93,0xbf,0x78,0xaa, +0x2d,0x4f,0x75,0xe6,0x29,0x0b,0x9e,0x1a,0xcc,0x53,0x63,0x78, +0x2a,0x82,0xa7,0xe6,0xf1,0x54,0x06,0x4f,0xed,0xe0,0xa9,0x93, +0x3c,0x75,0x9b,0xa7,0x9e,0xf2,0xd4,0x37,0x9e,0xfa,0xcb,0xd3, +0xad,0x79,0x5a,0x9b,0xa7,0x8d,0x79,0x7a,0x26,0x4f,0xaf,0xe0, +0xe9,0x7b,0x3c,0xfd,0x91,0xe5,0x4a,0x2c,0xd7,0x62,0xb9,0x11, +0xcb,0xed,0x58,0xee,0xc5,0xf2,0x89,0x2c,0xdf,0xc6,0xf2,0x23, +0x2c,0x7f,0xc4,0xf2,0x06,0x9e,0x31,0xe0,0x19,0x0f,0x9e,0xd9, +0xcc,0x33,0x87,0x78,0xa6,0x96,0x67,0x27,0xf0,0x6c,0x2a,0xcf, +0xfe,0xe1,0x39,0x1d,0x9e,0x0b,0xe7,0xb9,0x47,0x3c,0xaf,0xe0, +0xf9,0x6e,0x3c,0xef,0xc2,0xf3,0x93,0x78,0x7e,0x01,0xcf,0xaf, +0xe0,0xf9,0xf5,0x3c,0x5f,0xc8,0x0b,0xdd,0x78,0xc1,0x83,0x17, +0x02,0x79,0x21,0x99,0x17,0x56,0xf1,0x42,0x09,0x2f,0x5c,0xe7, +0x85,0x77,0xac,0xe8,0xcc,0x8a,0xfe,0xac,0xf0,0x65,0x45,0x08, +0x2b,0x96,0xb2,0x62,0x1d,0x2b,0x8e,0xb0,0xe2,0x39,0x2f,0x82, +0x17,0xc7,0xf0,0x62,0x08,0x2f,0xce,0xe0,0xc5,0x03,0xbc,0xf8, +0x93,0x97,0x3a,0xf0,0xd2,0x10,0x5e,0x9a,0xc3,0x4b,0xfb,0x79, +0xe9,0x16,0x2f,0x0f,0xe4,0xe5,0x53,0xbc,0xfc,0x99,0x57,0x34, +0x78,0xa5,0x13,0xaf,0x0c,0xe2,0x95,0x30,0x5e,0x49,0xe5,0x95, +0x7d,0xbc,0x72,0x8c,0x57,0xce,0xf2,0xca,0x73,0x5e,0x55,0xe3, +0xd5,0x81,0xbc,0x7a,0x8e,0x57,0x7f,0xf3,0x5a,0x47,0x5e,0x73, +0xe4,0xb5,0x48,0x5e,0x5b,0xc6,0x6b,0x47,0x78,0xed,0x0c,0xaf, +0x7d,0x63,0x65,0x6b,0x56,0x9a,0xb0,0xd2,0x9b,0x95,0x67,0x59, +0xf9,0x3f,0x59,0xc7,0xeb,0xc2,0xeb,0xaa,0xbc,0xae,0xcb,0xeb, +0x83,0x79,0x7d,0x3a,0xaf,0x2f,0xe5,0xf5,0x62,0x5e,0x7f,0xca, +0x1b,0x2d,0x78,0x23,0x9d,0x37,0x95,0x78,0x33,0x85,0x37,0xf7, +0xf3,0x66,0x09,0x6f,0x9e,0xe3,0xcd,0xeb,0xbc,0xf9,0x88,0x37, +0xdf,0xf0,0xe6,0x57,0xde,0xac,0xe3,0xad,0x99,0xbc,0xb5,0x98, +0xb7,0xd6,0xf2,0x56,0x11,0x6f,0x95,0xf1,0xd6,0x0d,0xde,0xfa, +0xc5,0xdb,0x1d,0x78,0x7b,0x0d,0x6f,0x5f,0xe2,0xed,0xdb,0xbc, +0xfd,0x8c,0xb7,0xdf,0xf3,0x76,0x0d,0x6f,0x37,0xf2,0x8e,0x32, +0xef,0x18,0xf0,0x8e,0x07,0xef,0x4c,0xe3,0x9d,0xef,0xbc,0x6b, +0xc0,0xbb,0x3e,0xbc,0x1b,0xc7,0xbb,0x2f,0x78,0x2f,0x8c,0xf7, +0x3e,0xf3,0x7e,0x0c,0xef,0x67,0xf3,0xfe,0x01,0xde,0xbf,0xcb, +0x07,0x4a,0x7c,0xa0,0xc2,0x07,0x7d,0xf9,0x20,0x9e,0x0f,0xe6, +0xf3,0x41,0x2a,0x1f,0xfc,0xe5,0xc3,0x3e,0x7c,0xe8,0xc0,0x87, +0x3e,0x7c,0x18,0xc1,0x87,0xc9,0x7c,0x98,0xc5,0x87,0xbb,0xf9, +0xf0,0x00,0x1f,0x1e,0xe7,0xa3,0xbe,0x7c,0xe4,0xc4,0x47,0xee, +0x7c,0x34,0x82,0x8f,0xfc,0xf9,0x68,0x12,0x1f,0x4d,0xe3,0xa3, +0x25,0x7c,0xb4,0x92,0x8f,0xb6,0xf1,0xd1,0x5e,0x3e,0x2a,0xe6, +0xa3,0x57,0x7c,0xec,0xcc,0xc7,0x07,0xf8,0xc4,0x81,0x4f,0xc6, +0xf2,0x49,0x3c,0x9f,0x64,0xf0,0xc9,0x46,0x3e,0x39,0xc2,0x27, +0x37,0xf8,0xe4,0x1d,0x9f,0x86,0xf3,0x69,0x3c,0x9f,0xa6,0xf1, +0x69,0x1e,0x9f,0x9e,0xe4,0xd3,0xcb,0x7c,0xd6,0x91,0xcf,0x32, +0xf8,0xec,0x23,0x9f,0x6f,0xe4,0xf3,0x5a,0xbe,0xe8,0xc4,0x17, +0xfd,0xf9,0x62,0x3e,0x5f,0xa4,0xf0,0x45,0x01,0x5f,0x3c,0xe6, +0x7f,0xf6,0xfc,0x2f,0x81,0xff,0x1d,0xe6,0x7f,0x4f,0xf8,0xb2, +0x3f,0x5f,0x66,0xf2,0xe5,0x0e,0xbe,0xbc,0xc4,0x57,0xc2,0x57, +0xdd,0xf8,0xca,0x97,0xaf,0x66,0xf1,0xd5,0x17,0xbe,0x1e,0xcb, +0xd7,0x53,0xf8,0x7a,0x11,0x5f,0xe7,0xf0,0xf5,0x49,0xbe,0xae, +0xe0,0xeb,0x1b,0x7c,0x5d,0xc5,0x37,0xcd,0xf9,0x46,0x97,0x6f, +0xcc,0xf8,0xc6,0x8e,0x6f,0x06,0xf3,0x4d,0x30,0xdf,0x4c,0xe5, +0x9b,0x0c,0xbe,0xf9,0xc3,0x2a,0xb0,0xaa,0x35,0xab,0xb4,0x58, +0xd5,0x95,0x55,0xbd,0x59,0xd5,0x8f,0x55,0xfd,0x59,0xe5,0xc1, +0xaa,0x11,0xac,0xf2,0x67,0xd5,0x64,0x56,0xc5,0xb0,0x6a,0x2e, +0xab,0x32,0x59,0xb5,0x89,0x55,0xbb,0x59,0xb5,0x9f,0x55,0x67, +0xf8,0xb6,0x15,0xdf,0xb6,0xe7,0x5b,0x33,0xbe,0x1d,0xca,0xb7, +0x0b,0xf9,0x76,0x2d,0xdf,0xee,0xe3,0xdb,0xeb,0x7c,0xfb,0x9a, +0xef,0x0c,0xf9,0xce,0x81,0xef,0x3c,0xf8,0xce,0x97,0xef,0x82, +0xf9,0x2e,0x86,0xef,0xe6,0xf0,0x5d,0x3a,0xdf,0x9d,0xe4,0x7b, +0x2d,0xbe,0x5f,0xc8,0xf7,0x87,0xf8,0xbe,0x92,0xef,0xeb,0xf8, +0xc1,0x88,0x1f,0x12,0xf9,0x61,0x33,0x3f,0xec,0xe7,0x87,0x2a, +0x7e,0xf4,0xe6,0xc7,0x55,0xfc,0x78,0x91,0x1f,0xeb,0xf8,0xa9, +0x3d,0x3f,0xb9,0xf2,0x93,0x1f,0x3f,0x6b,0xf1,0xb3,0x25,0x3f, +0xdf,0xe5,0x17,0x23,0x7e,0x19,0xc7,0x2f,0x6b,0xf9,0xe5,0x26, +0xbf,0x76,0xe6,0x57,0x23,0x7e,0xb5,0xe5,0x57,0x1f,0x7e,0x2d, +0xe7,0x37,0xe1,0xb7,0xdb,0xfc,0xf6,0x8f,0xdf,0xed,0xf9,0x3d, +0x8a,0xdf,0x93,0xf8,0x3d,0x8d,0xdf,0xd7,0xf1,0x47,0x57,0xfe, +0x88,0xe4,0x8f,0x25,0xfc,0x71,0x98,0x3f,0x4e,0xf1,0xc7,0x65, +0xfe,0x78,0xcf,0x6a,0x0d,0x56,0x1b,0xb2,0xda,0x9d,0xd5,0x81, +0xac,0x8e,0x64,0x75,0x06,0xab,0x0b,0x58,0x7d,0x8c,0xd5,0x67, +0x59,0xfd,0x9e,0x35,0xcd,0x59,0x33,0x84,0x35,0xa3,0x58,0x33, +0x81,0x35,0x53,0x59,0x93,0xc6,0x9a,0x43,0xac,0xf9,0xc2,0x9f, +0x2d,0xf9,0xb3,0x27,0x7f,0x8e,0xe2,0xcf,0x64,0xfe,0xac,0xe3, +0xaf,0xf9,0xfc,0xb5,0x8e,0xbf,0xb6,0xf1,0x57,0x21,0x7f,0x9d, +0xe0,0xaf,0x0b,0xfc,0xf5,0x9e,0xbf,0x83,0xf8,0x7b,0x33,0x7f, +0xe7,0xb1,0xb6,0x27,0x6b,0xcd,0x59,0x6b,0xcf,0xda,0xc1,0xac, +0x1d,0xca,0x5a,0x3f,0xd6,0x06,0xb3,0x36,0x9a,0xb5,0x33,0x59, +0x7b,0x9a,0xb5,0x97,0x59,0xfb,0x8a,0xb5,0x9f,0xf9,0xa7,0x25, +0xff,0xe8,0xf1,0x8f,0x0d,0xff,0xb8,0xf0,0x4f,0x31,0xff,0x5c, +0xe7,0x9f,0x6a,0xd6,0x35,0x65,0x9d,0x3e,0xeb,0x4c,0x58,0x67, +0xc5,0x3a,0x3f,0xd6,0x85,0xb2,0x6e,0x16,0xeb,0x56,0xb3,0x6e, +0x27,0xeb,0x9e,0xb1,0xee,0x17,0xff,0x6a,0xf2,0xaf,0x2d,0xff, +0x8e,0xe1,0xdf,0x58,0xfe,0x4d,0x66,0x3d,0x59,0xaf,0xc3,0xfa, +0xde,0xac,0xb7,0x66,0xfd,0x40,0xd6,0x8f,0x66,0xfd,0x44,0xd6, +0x47,0xb3,0x7e,0x3e,0xeb,0xd7,0xb0,0xfe,0x08,0xeb,0x6f,0xb1, +0xfe,0x13,0x1b,0x94,0xd8,0xe0,0xc2,0x86,0x93,0x6c,0xb8,0xc5, +0x86,0x0f,0x6c,0xa8,0x67,0x63,0x6b,0x36,0x1a,0xb0,0xd1,0x9a, +0x8d,0xe3,0xd8,0xf8,0x94,0xff,0xda,0xf0,0x9f,0x15,0xff,0x79, +0xf0,0xdf,0x0e,0xfe,0xab,0x97,0x26,0x01,0xd2,0x64,0x9e,0x34, +0x49,0x96,0x26,0x99,0xd2,0x64,0x93,0x34,0xc9,0x95,0x26,0x45, +0xd2,0xe4,0x84,0x34,0xa9,0x90,0x26,0xb7,0xa5,0xc9,0x73,0x69, +0xf2,0x41,0x9a,0xfc,0x94,0x26,0x8d,0xa2,0xd4,0x5f,0x94,0xca, +0x44,0xe9,0x9e,0x28,0xbd,0x11,0xa5,0xaf,0xa2,0xf4,0x47,0x14, +0x2d,0x45,0xd1,0x51,0x14,0x3d,0x44,0x61,0x23,0x0a,0x6f,0x51, +0x5c,0x15,0xc5,0x6f,0x81,0xb6,0xa0,0xb7,0xc0,0x4d,0x30,0x41, +0x30,0x5d,0xb0,0x5b,0xa8,0x21,0x9c,0x29,0x7c,0x27,0x32,0x4a, +0x64,0xba,0xc8,0x1a,0x91,0x52,0x91,0xf3,0x22,0x37,0x44,0x1e, +0x89,0xbc,0x11,0xf9,0x26,0x52,0x2f,0x4d,0x9b,0x4a,0x53,0x0b, +0x69,0xea,0x28,0x4d,0x3d,0xa4,0xe9,0x3c,0x69,0x7a,0x5c,0x9a, +0x5e,0x90,0xa6,0x2f,0xa5,0xe9,0x17,0x69,0xa6,0x21,0xcd,0x1c, +0xa5,0x99,0x9f,0x34,0xcb,0x90,0x66,0xaf,0xa5,0x79,0x1f,0x69, +0x3e,0x44,0x9a,0x8f,0x92,0xe6,0x13,0xa4,0x79,0xa4,0x34,0x8f, +0x97,0xe6,0x89,0xd2,0x3c,0x59,0x9a,0xe7,0x49,0xf3,0x83,0xd2, +0xbc,0x4c,0x9a,0x57,0x48,0xf3,0x9b,0xd2,0xc2,0x5e,0x5a,0xec, +0x10,0xe5,0x66,0xa2,0x6c,0x24,0xca,0x96,0xa2,0xec,0x28,0xca, +0xee,0xa2,0xec,0x2b,0xca,0x01,0xa2,0x1c,0x2e,0xca,0x19,0xa2, +0xbc,0x41,0x94,0x77,0x8a,0xf2,0x7e,0x51,0x2e,0x15,0xe5,0xb3, +0xd2,0xb2,0x8b,0xb4,0x9c,0x23,0x2d,0x6f,0x49,0xcb,0x6a,0x69, +0xd9,0x20,0x2a,0xcd,0x44,0x45,0x5d,0x54,0x3a,0x88,0xca,0x70, +0x51,0x19,0x27,0x2a,0x93,0x44,0x65,0x85,0xa8,0x6c,0x10,0x95, +0x62,0x51,0x39,0x2d,0x2a,0x97,0x45,0xe5,0xae,0xa8,0x7c,0x97, +0x56,0x6e,0xd2,0x6a,0xab,0xb4,0xfa,0x27,0xad,0xbb,0x4b,0x6b, +0x1b,0x69,0x3d,0x50,0x5a,0x7b,0x49,0xeb,0x31,0xd2,0x3a,0x58, +0x5a,0x47,0x4b,0xeb,0x99,0xd2,0x7a,0x91,0xb4,0xde,0x27,0xad, +0x5f,0x48,0xeb,0x4f,0xa2,0x2a,0xa2,0xaa,0x26,0xaa,0xba,0xa2, +0x6a,0x20,0xaa,0x4e,0xa2,0xba,0x42,0x54,0x1f,0x8b,0xea,0x1b, +0x51,0xeb,0x2f,0x6a,0x9e,0xa2,0x36,0x4a,0xd4,0x82,0x44,0x2d, +0x4a,0xd4,0xd6,0x88,0xda,0x31,0x51,0x7b,0x25,0x6a,0x9f,0x45, +0xad,0x56,0xda,0x40,0xda,0x18,0x4b,0x1b,0x67,0x69,0x33,0x44, +0xda,0x4c,0x90,0x36,0x6f,0x45,0xdd,0x53,0xd4,0x43,0x45,0x7d, +0xaa,0xa8,0xcf,0x11,0xf5,0x64,0x51,0x5f,0x25,0xea,0x9b,0x44, +0xfd,0x84,0xa8,0x57,0x88,0xfa,0x2d,0xd1,0x70,0x14,0x0d,0x77, +0xd1,0x08,0x11,0x8d,0x3c,0xd1,0x38,0x23,0x1a,0xd7,0x44,0xe3, +0x9d,0x68,0xd4,0x88,0xa6,0xae,0x68,0xfa,0x8b,0x66,0xa6,0x68, +0xe6,0x88,0x66,0x9e,0x68,0x9e,0x10,0xcd,0x4a,0xd1,0x7c,0x21, +0x6d,0x75,0xa4,0x6d,0x90,0xb4,0x8d,0x96,0xb6,0xe9,0xd2,0x76, +0xa3,0xb4,0x3d,0x24,0x6d,0xaf,0x4a,0x3b,0x5d,0x69,0x17,0x21, +0xed,0xe6,0x4a,0xbb,0x64,0x69,0x97,0x2d,0xed,0x3e,0x48,0xbb, +0x5f,0xd2,0x5e,0x21,0xed,0x75,0xa4,0x7d,0x86,0xb4,0xbf,0x21, +0xed,0x9f,0x4b,0xfb,0x0f,0xd2,0xfe,0x8f,0x68,0x35,0x17,0xad, +0x76,0xa2,0xd5,0x49,0xb4,0x0c,0x45,0xcb,0x42,0xb4,0x06,0x8b, +0xd6,0x58,0xd1,0x8a,0x12,0xad,0xb9,0xa2,0xb5,0x52,0xb4,0xf6, +0x88,0xd6,0x49,0xd1,0xba,0x2e,0xda,0x46,0xa2,0x3d,0x4b,0xb4, +0x17,0x89,0xf6,0x15,0xd1,0x7e,0x2d,0xda,0x5f,0x45,0xbb,0x4e, +0x74,0x44,0x74,0xd4,0x44,0xc7,0x46,0x74,0xc6,0x8b,0x4e,0xb2, +0xe8,0x64,0x8a,0xce,0x26,0xd1,0xc9,0x15,0xdd,0x36,0xa2,0xab, +0x2f,0xba,0x66,0xa2,0x3b,0x48,0x74,0x7d,0x45,0x77,0xa7,0xe8, +0x5e,0x15,0xdd,0x97,0xa2,0xfb,0x47,0x3a,0xe8,0x49,0x87,0x21, +0xd2,0x21,0x45,0x3a,0x1c,0x90,0x0e,0x95,0xd2,0xe1,0xb7,0x74, +0x9c,0x20,0x1d,0x13,0xa4,0x63,0x86,0x74,0xdc,0x29,0x1d,0x4f, +0x4b,0xc7,0x87,0xd2,0xb1,0x56,0xf4,0xd4,0x45,0xcf,0x50,0xf4, +0x72,0xa5,0x93,0xb5,0x74,0x5a,0x2f,0x9d,0x3b,0x49,0x67,0x23, +0xe9,0xdc,0x57,0x3a,0x3b,0x4b,0x67,0x2f,0xe9,0xbc,0x41,0x3a, +0xef,0x94,0xce,0x07,0xa4,0x73,0xad,0x74,0x71,0x94,0x2e,0xee, +0xd2,0x65,0xb6,0x74,0x59,0x22,0x5d,0xf6,0x4a,0x97,0x23,0xd2, +0xb5,0xad,0x74,0x9d,0x27,0x5d,0xf7,0x4a,0xd7,0xc7,0xd2,0xf5, +0x8f,0x74,0xa3,0x74,0x53,0x95,0x6e,0xba,0xd2,0xcd,0x40,0xba, +0x99,0x49,0x37,0x5b,0xe9,0xe6,0x22,0xdd,0xc6,0x49,0xb7,0x2d, +0xd2,0x6d,0xaf,0x74,0xbb,0x2d,0xdd,0xd5,0xa5,0xfb,0x00,0xe9, +0xee,0x2d,0xdd,0xf7,0x88,0xbe,0xaa,0xe8,0x9b,0x89,0xbe,0x8f, +0xe8,0x6f,0x10,0xfd,0xfb,0x62,0xa0,0x2f,0x06,0x33,0xc4,0x60, +0x9f,0x18,0x7c,0x90,0x1e,0x1a,0xd2,0x63,0x8a,0xf4,0xa8,0x92, +0x9e,0xba,0xd2,0xb3,0xbf,0xf4,0x1c,0x2f,0x3d,0x13,0xa4,0xe7, +0x6e,0xe9,0x79,0x4e,0x7a,0x7e,0x17,0x43,0x2d,0x31,0x9c,0x2c, +0x86,0x69,0x62,0xb8,0x51,0x0c,0xcf,0x89,0xe1,0x6f,0x31,0xb2, +0x11,0xa3,0x69,0x62,0x94,0x25,0x46,0x67,0xc5,0xe8,0x9f,0xf4, +0xf2,0x91,0x5e,0xfb,0xa4,0xd7,0x79,0xe9,0xf5,0x51,0x7a,0xfd, +0x93,0xde,0x1d,0xa5,0xf7,0x40,0xe9,0x3d,0x59,0x7a,0x5f,0x13, +0xe3,0xd6,0x62,0xac,0x25,0xc6,0x53,0xc5,0x78,0xb6,0x18,0x2f, +0x11,0xe3,0x42,0x31,0xbe,0x29,0xc6,0xf5,0x62,0xd2,0x54,0x4c, +0xd4,0xc5,0x64,0xb4,0x98,0xbc,0x13,0x93,0x46,0x31,0x6d,0x21, +0xa6,0xa6,0x62,0x3a,0x50,0x4c,0x73,0xc4,0x4c,0x55,0xcc,0xba, +0x89,0x59,0x94,0x98,0x2d,0x14,0xb3,0x4c,0x31,0xdb,0x2a,0x66, +0x85,0x62,0x76,0x54,0xcc,0xca,0xc5,0xec,0x8a,0x98,0x3d,0x13, +0xb3,0x5f,0xd2,0xa7,0xad,0xf4,0xe9,0x24,0x7d,0x4c,0xa5,0x8f, +0xad,0xf4,0x19,0x29,0x7d,0x26,0x48,0x9f,0x18,0xe9,0x53,0x2e, +0xe6,0x4d,0xc5,0x5c,0x4b,0xcc,0x23,0xc4,0x7c,0xbe,0x98,0xa7, +0x88,0xf9,0x2a,0x31,0xcf,0x16,0xf3,0x03,0x62,0xfe,0x47,0x2c, +0x54,0xc4,0xa2,0x9d,0x58,0x18,0x8a,0x85,0x9d,0x58,0x44,0x8a, +0x45,0xba,0x58,0x6c,0x10,0x8b,0xbd,0x62,0x71,0x44,0x2c,0xca, +0xc5,0xe2,0x99,0x58,0xbc,0x15,0x8b,0x6f,0x62,0xf1,0x47,0x2c, +0x5b,0x88,0xa5,0xb6,0x58,0x1a,0x89,0xa5,0xbd,0x58,0x0e,0x16, +0xcb,0x48,0xb1,0x4c,0x10,0xcb,0x4d,0x62,0xf9,0x42,0xfa,0xb6, +0x93,0xbe,0x7d,0xa4,0xef,0x10,0xe9,0x3b,0x5a,0xfa,0x4e,0x94, +0xbe,0x89,0xd2,0x37,0x45,0xfa,0x16,0x4a,0xdf,0x12,0xe9,0xfb, +0x48,0xfa,0xfe,0x95,0x7e,0x6d,0xa4,0xdf,0x60,0xe9,0x17,0x2b, +0xfd,0xe6,0x49,0xbf,0xd5,0xd2,0x6f,0xa7,0xf4,0x2b,0x90,0x7e, +0x47,0xa4,0xdf,0x6d,0xe9,0xf7,0x44,0xfa,0xbd,0x91,0x7e,0x5f, +0xa4,0x5f,0x83,0x58,0x75,0x15,0x2b,0x3b,0xb1,0x1a,0x22,0x56, +0x31,0x62,0xb5,0x50,0xac,0x96,0x8b,0x55,0x89,0x58,0x7d,0x16, +0xeb,0xe6,0x62,0xdd,0x57,0xac,0x17,0x8a,0xf5,0x0a,0xb1,0xce, +0x13,0xeb,0x3b,0x62,0xd3,0x44,0x6c,0x7a,0x89,0x4d,0x3f,0xb1, +0x71,0x16,0x1b,0x7f,0xb1,0x99,0x2c,0x36,0xab,0xc5,0xe6,0x82, +0xd8,0xfc,0x16,0xdb,0xa1,0x62,0x3b,0x4e,0x6c,0x97,0x8b,0xed, +0x5a,0xb1,0x3d,0x23,0xb6,0x5f,0xc5,0x4e,0x59,0xec,0xda,0x8a, +0x9d,0xb3,0xd8,0x85,0x89,0xdd,0x26,0xb1,0xab,0x10,0xbb,0xc7, +0x62,0xf7,0x45,0xec,0xfe,0x88,0x3d,0xc5,0x5e,0x55,0xec,0xbb, +0x8a,0x7d,0x6f,0xb1,0x77,0x12,0x7b,0x5f,0xb1,0x9f,0x22,0xf6, +0xcb,0xc5,0xfe,0x84,0xd8,0x37,0x88,0x43,0x73,0x71,0xb0,0x16, +0x87,0xa5,0xe2,0xb0,0x5e,0x1c,0xf6,0x88,0xc3,0x09,0x71,0xa8, +0x10,0x87,0x5b,0xe2,0xf0,0x54,0x1c,0xde,0x89,0x43,0xbd,0x38, +0x36,0x13,0x47,0x1f,0x71,0x5c,0x27,0x8e,0xe7,0xc5,0xa9,0x99, +0x38,0xb9,0x89,0xd3,0x32,0x71,0xca,0x16,0xa7,0xdd,0xe2,0x54, +0x24,0x4e,0x27,0xc4,0xe9,0xba,0x38,0x3d,0x16,0xa7,0x6a,0xe9, +0x6f,0x27,0xfd,0xc7,0x4a,0xff,0x0c,0xe9,0x7f,0x50,0xfa,0xbf, +0x14,0xe7,0x26,0xe2,0x6c,0x2d,0xce,0x09,0xe2,0xbc,0x40,0x9c, +0x77,0x8a,0xf3,0x5b,0x71,0xfe,0x2e,0x03,0x20,0x03,0xda,0xca, +0x80,0x1e,0x32,0xc0,0x5c,0x06,0x38,0xc8,0x00,0x37,0x19,0x30, +0x42,0x06,0x4c,0x92,0x01,0x31,0x32,0xe0,0xa4,0x0c,0xb8,0x29, +0x03,0x1e,0xcb,0x80,0x2a,0x19,0xd0,0x20,0x03,0xdb,0xcb,0x40, +0x13,0x19,0xe8,0x22,0x03,0x17,0xc8,0xc0,0x34,0x19,0xb8,0x46, +0x06,0x9e,0x96,0x81,0x97,0x65,0xe0,0x1d,0x19,0xf8,0x4c,0x06, +0xbe,0x93,0x81,0xff,0x64,0x90,0xb2,0x0c,0xea,0x2e,0x83,0x4c, +0x65,0x90,0x8d,0x0c,0x1a,0x2a,0x83,0xd2,0x65,0xd0,0x65,0x19, +0x54,0x2f,0x2e,0xad,0xc5,0xa5,0x8b,0xb8,0xf4,0x16,0x17,0x6b, +0x71,0x19,0x28,0x2e,0xde,0xe2,0xe2,0x27,0x2e,0x93,0xc4,0x65, +0xbe,0xb8,0xac,0x12,0x97,0x9d,0xe2,0x72,0x40,0x5c,0x8e,0x8b, +0xcb,0x75,0x71,0x79,0x2c,0x2e,0x6f,0x65,0x70,0x33,0x19,0x3c, +0x40,0x06,0xcf,0x92,0xc1,0xcf,0x64,0xf0,0x77,0x71,0x55,0x17, +0x57,0x1f,0x71,0x8d,0x11,0xd7,0x05,0xe2,0x5a,0x20,0xae,0xef, +0xc5,0xad,0xa5,0xb8,0x59,0x88,0xdb,0x60,0x71,0x1b,0x26,0x6e, +0xd3,0xc5,0x6d,0x83,0xb8,0xe5,0x8b,0x5b,0xb1,0xb8,0x3d,0x10, +0xb7,0x0f,0xe2,0xd6,0x28,0xee,0xea,0xe2,0xde,0x4f,0xdc,0x9d, +0xc5,0x7d,0x88,0xb8,0x8f,0x16,0xf7,0x20,0x71,0x8f,0x14,0xf7, +0x04,0x71,0x5f,0x20,0xee,0xab,0xc4,0xbd,0x44,0xdc,0xcf,0x8a, +0xfb,0x35,0x71,0xbf,0x2f,0xee,0x2f,0xc5,0xfd,0xbb,0xb8,0xd7, +0x8b,0x47,0x33,0xf1,0x30,0x10,0x0f,0x7b,0xf1,0x98,0x2c,0x1e, +0x7b,0xc4,0xa3,0x58,0x3c,0xae,0x8a,0xc7,0x2b,0xf1,0xa8,0x13, +0xcf,0x36,0xe2,0xd9,0x53,0x3c,0x9d,0xc4,0x73,0x94,0x78,0x2e, +0x10,0xcf,0xe5,0xe2,0xb9,0x4e,0x3c,0x8f,0x8b,0xe7,0x05,0xf1, +0x7c,0x2a,0x9e,0x6f,0xc5,0xb3,0x51,0x86,0x18,0xca,0x90,0xb1, +0x32,0x64,0xb3,0x0c,0x79,0x28,0x43,0x3e,0x8a,0x57,0x2b,0xf1, +0xd2,0x17,0x2f,0x57,0xf1,0x1a,0x23,0x5e,0xb3,0xc5,0x6b,0x8d, +0x78,0x95,0x88,0xd7,0x35,0xf1,0xfa,0x4f,0xbc,0xea,0xc4,0xbb, +0x95,0x78,0x77,0x16,0xef,0x7e,0xe2,0x3d,0x4a,0xbc,0x13,0xc4, +0xfb,0x81,0xf8,0xf4,0x12,0x9f,0x7e,0xe2,0xe3,0x2c,0x3e,0x5e, +0xe2,0x13,0x25,0x3e,0x4b,0xc5,0x67,0xa7,0xf8,0xfc,0x90,0xa1, +0x9a,0x32,0xd4,0x5b,0x86,0x8e,0x95,0xa1,0x21,0x32,0x74,0x91, +0x0c,0x5d,0x23,0x43,0xb7,0xc8,0xd0,0x22,0x19,0x5a,0x23,0xc3, +0x1c,0x64,0xd8,0x26,0x19,0xf6,0x59,0x86,0x77,0x91,0xe1,0xbd, +0x65,0x78,0x3f,0x19,0xee,0x2c,0xc3,0x87,0xc8,0xf0,0x51,0x32, +0x7c,0x82,0x0c,0x5f,0x26,0xc3,0x8b,0x64,0xf8,0x09,0x19,0xfe, +0x5a,0x86,0x57,0xcb,0xf0,0x46,0x19,0xd1,0x5c,0x46,0x98,0xc9, +0x88,0x38,0x19,0x71,0x4a,0x46,0x34,0x8a,0xaf,0x9a,0xf8,0xea, +0x88,0x6f,0x77,0xf1,0x35,0x15,0x5f,0x5b,0xf1,0x75,0x17,0xdf, +0x11,0xe2,0x9b,0x2e,0xbe,0x1b,0xc5,0x77,0xb7,0xf8,0x16,0x89, +0xef,0x09,0xf1,0xad,0x10,0xdf,0x9b,0xe2,0xfb,0x44,0x7c,0xab, +0x64,0xa4,0xc8,0xc8,0x4e,0x32,0x32,0x4a,0x46,0xa6,0xc9,0xc8, +0x42,0x19,0x79,0x55,0x46,0xfe,0x94,0x51,0x1d,0x65,0xd4,0x40, +0x19,0x15,0x24,0xa3,0x52,0x65,0x54,0xbe,0x8c,0xba,0x27,0xa3, +0xaa,0x65,0xb4,0x85,0x8c,0x8e,0x90,0xd1,0xa9,0x32,0xfa,0x88, +0x8c,0x7e,0x28,0x63,0x5a,0xcb,0x98,0xe9,0x32,0xe6,0x97,0x8c, +0x6d,0x26,0x63,0xfb,0xc8,0xd8,0xd9,0x32,0xf6,0x8e,0xf8,0x29, +0xc4,0xaf,0xbf,0xf8,0x6d,0x16,0xbf,0x5f,0x32,0xce,0x57,0xc6, +0x65,0xcb,0xb8,0x72,0x19,0x77,0x4f,0xc6,0xfd,0x94,0xf1,0xda, +0x32,0xbe,0x8f,0x8c,0x77,0x95,0xf1,0x0b,0x64,0xfc,0x5a,0x19, +0xbf,0x4f,0xc6,0x9f,0x95,0xf1,0x8f,0x64,0xfc,0x37,0x19,0x5f, +0x27,0xfe,0xda,0xe2,0xdf,0x5d,0xfc,0xad,0xc5,0x7f,0x90,0xf8, +0xfb,0x88,0xbf,0x9f,0xf8,0x4f,0x11,0xff,0xd9,0xe2,0xbf,0x44, +0xfc,0x33,0xc5,0xff,0xb5,0xf8,0xff,0x92,0x00,0x13,0x09,0x98, +0x24,0x01,0x73,0x25,0x60,0x99,0x04,0x6c,0x91,0x80,0x3d,0x12, +0x70,0x42,0x02,0x1e,0x48,0xc0,0x7b,0x09,0xf8,0x2b,0x81,0x6d, +0x24,0x50,0x57,0x02,0x0d,0x24,0xd0,0x41,0x02,0xdd,0x24,0x70, +0x84,0x04,0x06,0x4a,0x60,0xa4,0x04,0x26,0x49,0xe0,0x72,0x09, +0xdc,0x2d,0x81,0x47,0x24,0xf0,0x91,0x04,0xbe,0x91,0xc0,0xef, +0x12,0x58,0x2f,0x13,0x54,0x65,0x82,0x8e,0x4c,0xe8,0x2d,0x13, +0x9c,0x64,0xc2,0x0c,0x99,0x70,0x40,0x26,0xbc,0x91,0x09,0xff, +0x24,0x48,0x5b,0x82,0xba,0x49,0x90,0xb1,0x04,0x59,0x49,0x50, +0x7f,0x09,0xf2,0x90,0xa0,0x91,0x12,0x14,0x22,0x41,0xcb,0x24, +0x68,0x95,0x04,0x6d,0x97,0xa0,0x42,0x09,0x2a,0x95,0xa0,0x0b, +0x12,0x74,0x4b,0x82,0xbe,0x48,0xd0,0x3f,0x99,0xd8,0x46,0x26, +0x76,0x93,0x89,0x16,0x32,0x71,0xb4,0x4c,0x9c,0x28,0x13,0x63, +0x65,0x62,0xa2,0x4c,0x5c,0x29,0x13,0xb7,0xca,0xc4,0x52,0x99, +0x78,0x45,0x26,0x3e,0x95,0x89,0xdf,0x24,0x58,0x59,0x82,0x1d, +0x25,0x78,0x9e,0x04,0x9f,0x94,0xe0,0xbf,0x12,0xa2,0x29,0x21, +0xbd,0x24,0xa4,0x9f,0x84,0x84,0x48,0xc8,0x14,0x09,0x59,0x24, +0x21,0xeb,0x25,0xa4,0x40,0x42,0xca,0x25,0xa4,0x46,0x42,0xbb, +0x49,0xa8,0xa7,0x84,0xce,0x90,0xd0,0xd5,0x12,0x5a,0x2a,0xa1, +0xe7,0x24,0xf4,0x9e,0x84,0xfe,0x92,0x49,0x2d,0x65,0x52,0x3b, +0x99,0xd4,0x53,0x26,0x05,0xc8,0xa4,0x4c,0x99,0x74,0x4e,0x26, +0x3d,0x93,0x49,0xef,0x65,0x52,0x8d,0x4c,0xfa,0x27,0x93,0xdb, +0xc9,0x64,0x13,0x99,0x3c,0x48,0x26,0x07,0xca,0xe4,0x48,0x99, +0xbc,0x50,0x26,0xa7,0xcb,0xe4,0x5d,0x32,0xf9,0xbe,0x84,0xa9, +0x4a,0x58,0x7f,0x09,0x0b,0x90,0xb0,0x70,0x09,0x8b,0x93,0xb0, +0xf9,0x12,0x96,0x22,0x61,0x59,0x12,0x96,0x23,0x61,0xb9,0x12, +0x76,0x5e,0xc2,0x5e,0x4b,0x78,0x17,0x09,0x77,0x92,0x70,0x77, +0x09,0x4f,0x96,0xf0,0x42,0x09,0x7f,0x28,0x11,0x4a,0x12,0xd1, +0x46,0x22,0x3a,0x48,0x44,0x0f,0x89,0x18,0x24,0x11,0x3e,0x12, +0xe1,0x27,0x11,0xa1,0x12,0x31,0x4f,0x22,0x52,0x24,0x22,0x4b, +0x22,0x0e,0x48,0xc4,0x09,0x89,0xa8,0x90,0x88,0xdb,0x12,0xf1, +0x59,0x22,0xf5,0x25,0x72,0xb8,0x44,0xa6,0x4a,0xe4,0x76,0x89, +0x2c,0x96,0xc8,0xd3,0x12,0x79,0x45,0x22,0xef,0x49,0xe4,0x0b, +0x89,0xfc,0x20,0x91,0x35,0x12,0xd9,0x28,0x51,0x5a,0x12,0xd5, +0x4b,0xa2,0xc6,0x48,0x54,0xb0,0x44,0x6d,0x94,0xa8,0xc3,0x12, +0x75,0x52,0xa2,0x2e,0x49,0xb4,0x92,0x44,0xeb,0x4a,0x74,0x5f, +0x89,0x76,0x97,0xe8,0x71,0x12,0x1d,0x2d,0xd1,0xf3,0x25,0x3a, +0x53,0xa2,0x77,0x48,0x74,0xb1,0x44,0x57,0x48,0x74,0x83,0x4c, +0xe9,0x22,0x53,0xac,0x64,0x8a,0x8b,0x4c,0x09,0x92,0x29,0x49, +0x32,0x65,0x8b,0x4c,0x39,0x21,0x53,0x1e,0xc8,0x94,0x4f,0x32, +0xb5,0xb9,0x4c,0xed,0x2e,0x53,0xfb,0xcb,0xd4,0xf1,0x32,0x75, +0xa6,0x4c,0x5d,0x2d,0x53,0x0f,0xc8,0xd4,0x6b,0x32,0xf5,0xa5, +0x4c,0x53,0x91,0x69,0x86,0x32,0xcd,0x41,0xa6,0xb9,0xcb,0xb4, +0x49,0x32,0x6d,0x91,0x4c,0x2b,0x90,0x69,0xef,0x24,0xc6,0x4d, +0x62,0xc2,0x24,0x26,0x59,0x62,0x0a,0x24,0xa6,0x52,0x62,0xbe, +0x48,0x6c,0x13,0x89,0x6d,0x29,0xb1,0xed,0x24,0xb6,0xb3,0xc4, +0x0e,0x90,0xd8,0x21,0x12,0x3b,0x4a,0x62,0x53,0x24,0xf6,0x80, +0xc4,0x5e,0x97,0xe9,0x5d,0x64,0xfa,0x38,0x99,0x3e,0x49,0xa6, +0x27,0xcb,0xf4,0x5c,0x99,0xfe,0x54,0xa6,0xbf,0x93,0xb8,0xd6, +0x12,0xd7,0x4f,0xe2,0x86,0x49,0x5c,0x92,0xc4,0x65,0x4a,0xdc, +0x76,0x89,0x3b,0x28,0x71,0x67,0x24,0xee,0xb6,0xc4,0xbd,0x96, +0xb8,0x3f,0x12,0xaf,0x25,0xf1,0x56,0x12,0xef,0x26,0xf1,0x93, +0x25,0x7e,0x81,0xc4,0x6f,0x93,0xf8,0x43,0x12,0x7f,0x5f,0xe2, +0x1b,0x24,0xe1,0xff,0x48,0x75,0x0f,0xa8,0x28,0xb6,0x67,0x6f, +0x14,0x94,0xaa,0x86,0x56,0x46,0xf1,0xd8,0x08,0x43,0x3b,0x03, +0x28,0xe6,0x9c,0x05,0x24,0x27,0x01,0x11,0x73,0xce,0xd9,0x63, +0x3a,0x06,0x44,0x91,0x24,0x46,0x54,0x14,0x09,0x8a,0xa8,0x98, +0x8e,0x8a,0x18,0x31,0x83,0x22,0x66,0x14,0x0f,0x48,0x34,0x81, +0x7a,0xc4,0x84,0x39,0xef,0x1e,0x77,0x0f,0xe7,0xed,0x1e,0x3c, +0xf7,0xfe,0xd7,0xfd,0xbe,0xf7,0xd6,0x5d,0xeb,0x2d,0x16,0x74, +0xcf,0xde,0x55,0xb5,0x6b,0x57,0xf8,0x55,0xd5,0x68,0x43,0x08, +0xb1,0x85,0x90,0x2e,0x10,0xe2,0x0e,0x21,0x03,0x20,0x64,0x02, +0x84,0xfc,0x01,0x21,0xd1,0x10,0x12,0x0f,0x21,0xd7,0x21,0xe4, +0x3e,0x84,0xbc,0x85,0x10,0x09,0x16,0x6b,0x60,0x71,0x17,0x58, +0xdc,0x07,0x16,0xfb,0xc3,0xe2,0x49,0xb0,0x78,0x31,0x2c,0x5e, +0x05,0x8b,0x37,0xc2,0xe2,0x03,0xb0,0x38,0x13,0x16,0x5f,0x84, +0xc5,0x37,0x61,0x71,0x31,0x2c,0xae,0x80,0xc5,0x2f,0x61,0xf1, +0x3f,0x10,0x6a,0x06,0xa1,0x1d,0x20,0x74,0x30,0x84,0xce,0x82, +0xd0,0xc5,0x10,0x1a,0x05,0xa1,0x3b,0x20,0xf4,0x22,0x84,0x3e, +0x81,0x25,0x75,0x60,0xc9,0x6f,0xb0,0x24,0x18,0x96,0x8c,0x87, +0x25,0xf3,0x60,0x49,0x34,0x2c,0x89,0x87,0x25,0x7b,0x60,0x49, +0x16,0x2c,0x29,0x86,0x25,0x2f,0x61,0xa9,0x31,0x2c,0x6d,0x02, +0x4b,0x83,0x61,0xe9,0xef,0xb0,0x34,0x0e,0x96,0x9e,0x80,0xa5, +0x57,0x60,0xe9,0x0b,0x58,0x2a,0x41,0x58,0x3d,0x08,0xd3,0x40, +0x58,0x6b,0x08,0xeb,0x06,0x61,0xae,0x10,0xe6,0x0f,0x61,0xe3, +0x20,0x6c,0x1e,0x84,0xad,0x86,0xb0,0xe3,0x10,0x96,0x0d,0x61, +0xdf,0x60,0x59,0x3d,0x58,0xd6,0x15,0x96,0x4d,0x84,0x65,0x21, +0xb0,0x2c,0x01,0x96,0xdd,0x85,0x65,0x4f,0x21,0x5c,0x0b,0xe1, +0x1d,0x21,0xdc,0x15,0xc2,0xfb,0x43,0xf8,0x44,0x08,0x9f,0x05, +0xe1,0xcf,0x21,0xfc,0x1b,0x44,0x00,0x44,0xd8,0x42,0x84,0x0f, +0x44,0x8c,0x82,0x88,0x59,0x10,0x11,0x05,0x11,0xeb,0x21,0x22, +0x09,0x22,0xb2,0x20,0x22,0x0f,0x22,0x4a,0x20,0xe2,0x31,0x44, +0x36,0x87,0xc8,0x8e,0x10,0xe9,0x08,0x91,0x5e,0x10,0x19,0x09, +0x91,0x69,0x10,0x99,0x03,0x91,0x37,0x21,0x0a,0x20,0x4a,0x05, +0x51,0xd6,0x10,0x35,0x0a,0xa2,0x56,0x42,0xd4,0x3e,0x88,0xca, +0x86,0xa8,0xbb,0x10,0xf5,0x02,0xa2,0x7e,0x42,0x74,0x03,0x88, +0xf6,0x83,0xe8,0x71,0x10,0x3d,0x07,0xa2,0x23,0x21,0x7a,0x07, +0x44,0x5f,0x81,0xe8,0x12,0x88,0xfe,0x02,0xcb,0xd5,0xb0,0xdc, +0x0d,0x96,0x0f,0x87,0xe5,0x53,0x61,0x79,0x18,0x2c,0xdf,0x08, +0xcb,0xf7,0xc2,0xf2,0x33,0xb0,0xfc,0x36,0x2c,0x7f,0x0c,0xcb, +0x3f,0x41,0x4c,0x7d,0x88,0xe9,0x08,0x31,0x01,0x10,0x33,0x16, +0x62,0xc2,0x20,0x66,0x13,0xc4,0x1c,0x81,0x98,0xcb,0x10,0xf3, +0x1d,0x56,0xb4,0x80,0x15,0x43,0x61,0xc5,0x4a,0x58,0xb1,0x09, +0x56,0xa4,0xc2,0x8a,0x73,0xb0,0xe2,0x2a,0xac,0x28,0x80,0x15, +0x0f,0x60,0xc5,0x7b,0x58,0xa1,0x83,0x95,0x16,0xb0,0xd2,0x06, +0x56,0xb6,0x80,0x95,0xce,0xb0,0xd2,0x17,0x56,0x5e,0x83,0x95, +0x95,0xb0,0xf2,0x3d,0xac,0x6a,0x00,0xab,0x34,0xb0,0xaa,0x35, +0xac,0x72,0x85,0x55,0x23,0x60,0xd5,0x5c,0x58,0x15,0x0d,0xab, +0x36,0xc3,0xaa,0x33,0xb0,0xaa,0x12,0x56,0x77,0x83,0xd5,0x23, +0x60,0x75,0x28,0xac,0x4e,0x86,0xd5,0x67,0x60,0x75,0x2e,0xac, +0xce,0x87,0xd5,0x65,0xb0,0xfa,0x31,0xac,0xa9,0x0b,0x6b,0xcc, +0x61,0x8d,0x2d,0xac,0x71,0x81,0x35,0x7d,0x61,0xcd,0x18,0x58, +0x13,0x07,0x6b,0x1e,0xc2,0x9a,0x8f,0xb0,0xb6,0x3e,0xac,0x6d, +0x05,0x6b,0x7b,0xc1,0xda,0x41,0xb0,0x76,0x11,0xac,0x5d,0x01, +0x6b,0x37,0xc2,0xda,0x5c,0x58,0x5b,0x08,0x6b,0x9f,0xc3,0xda, +0xef,0x10,0x8b,0x10,0xab,0x81,0x58,0x5f,0x88,0xdd,0x04,0xb1, +0x07,0x21,0xf6,0x11,0xac,0x43,0x58,0xd7,0x1b,0xd6,0x45,0xc0, +0xba,0x4a,0x58,0xdf,0x0d,0xd6,0x8f,0x86,0xf5,0x69,0xb0,0xfe, +0x34,0xac,0xff,0x06,0x1b,0x78,0xd8,0xa0,0x85,0x0d,0xdd,0x61, +0x83,0x3f,0x6c,0x18,0x0b,0x1b,0x36,0xc1,0x86,0x1c,0xd8,0xf0, +0x09,0xe2,0x9a,0x41,0x5c,0x00,0xc4,0xcd,0x87,0xb8,0x65,0x10, +0x17,0x07,0x71,0x07,0x21,0xee,0x22,0xc4,0xe5,0x41,0xdc,0x43, +0x88,0x93,0x60,0x63,0x43,0xd8,0x38,0x14,0x36,0x6e,0x86,0x8d, +0x47,0x61,0x63,0x3e,0x6c,0xd4,0xc1,0x26,0x13,0xd8,0xd4,0x10, +0x36,0xd9,0xc0,0xa6,0x6e,0xb0,0xc9,0x15,0x36,0x0d,0x87,0x4d, +0x93,0x61,0x53,0x38,0x6c,0x4a,0x84,0x4d,0xe9,0xb0,0xe9,0x3d, +0xc4,0x5b,0x40,0xbc,0x08,0xf1,0x2d,0x20,0xbe,0x0b,0xc4,0x3b, +0x43,0xbc,0x2f,0xc4,0x0f,0x80,0xf8,0x91,0x10,0x3f,0x07,0xe2, +0x43,0x21,0x3e,0x0f,0xe2,0x9f,0x40,0x7c,0x35,0x6c,0x76,0x84, +0xcd,0xe3,0x60,0xf3,0x72,0xd8,0xbc,0x17,0x36,0x5f,0x87,0xcd, +0xaf,0x21,0x41,0x84,0x04,0x27,0x48,0x18,0x05,0x09,0x4b,0x21, +0x21,0x05,0x12,0xfe,0x84,0x84,0xe3,0x90,0x90,0x0d,0x09,0x37, +0x21,0x41,0x07,0x89,0x00,0x89,0x0d,0x21,0xd1,0x1f,0x12,0xa3, +0x21,0xb1,0x10,0x12,0x25,0x48,0xaa,0x0b,0x49,0x0d,0x20,0xc9, +0x06,0x92,0x1c,0x20,0xa9,0x13,0x24,0x39,0x42,0x92,0x27,0x24, +0xcd,0x82,0xa4,0xc5,0x90,0xb4,0x1c,0x92,0xae,0x42,0x52,0x25, +0x24,0xbd,0x82,0xa4,0x2f,0x90,0xdc,0x0d,0x92,0x5d,0x20,0xb9, +0x2f,0x24,0xaf,0x81,0xe4,0xcd,0x90,0xbc,0x1d,0x92,0xf7,0x43, +0xf2,0x71,0x48,0xce,0x82,0xe4,0xab,0xb0,0xa5,0x09,0x6c,0x71, +0x84,0x2d,0x5e,0xb0,0xa5,0x3f,0x6c,0x59,0x05,0x5b,0xae,0xc1, +0x96,0x1a,0xd8,0xda,0x13,0xb6,0xce,0x83,0xad,0xe9,0xb0,0xb5, +0x12,0xb6,0xbe,0x86,0xad,0xdf,0x60,0xeb,0x3f,0x90,0x62,0x06, +0x29,0x8d,0x21,0x45,0x0b,0x29,0xbd,0x21,0x65,0x01,0xa4,0xac, +0x82,0x94,0xcd,0x90,0xb2,0x03,0x52,0x4e,0x40,0xca,0x05,0x48, +0xc9,0x83,0x94,0x52,0xd8,0x66,0x0e,0xdb,0x26,0xc0,0xb6,0xe3, +0xb0,0x4d,0x0f,0xa9,0x83,0x20,0x35,0x1e,0x52,0x4f,0x42,0xea, +0x25,0x48,0x7d,0x02,0xa9,0x6f,0x20,0xf5,0x07,0x6c,0x37,0x81, +0xed,0x0e,0xb0,0xbd,0x3b,0x6c,0x1f,0x0e,0xdb,0xc3,0x60,0xfb, +0x5d,0xd8,0x61,0x07,0x3b,0xc6,0xc2,0x8e,0x48,0xd8,0xb1,0x1b, +0x76,0x1c,0x86,0x1d,0x67,0x61,0x47,0x05,0xec,0x78,0x0d,0x3b, +0xbe,0xc1,0x8e,0x1a,0xd8,0xd9,0x01,0x76,0x4e,0x80,0x9d,0x09, +0xb0,0xf3,0x02,0xec,0xbc,0x09,0x3b,0x09,0xa4,0x21,0xa4,0x35, +0x86,0xb4,0x66,0x90,0xd6,0x15,0xd2,0x3c,0x21,0x6d,0x10,0xa4, +0x45,0x42,0xda,0x5a,0x48,0x4b,0x80,0xb4,0x33,0x90,0x96,0x0b, +0x69,0xff,0xc0,0x2e,0x1e,0x76,0x75,0x80,0x5d,0x73,0x61,0xd7, +0x52,0xd8,0xb5,0x12,0x76,0xdd,0x81,0x5d,0xe5,0xb0,0xeb,0x29, +0xec,0x7a,0x03,0xbb,0xbe,0xc1,0xae,0x1a,0xd8,0x6d,0x0a,0xbb, +0x1b,0xc1,0x6e,0x11,0x76,0xb7,0x84,0xdd,0x5d,0x60,0xf7,0x7c, +0xd8,0x1d,0x0e,0xbb,0x57,0xc1,0xee,0x4d,0xb0,0x7b,0x0f,0xec, +0x3e,0x0c,0xbb,0xb3,0x61,0x77,0x25,0xec,0xfe,0x0e,0xbb,0x6b, +0x60,0x0f,0x07,0x7b,0xb4,0xb0,0xc7,0x11,0xf6,0x4c,0x80,0x3d, +0x33,0x60,0xcf,0x51,0xd8,0x73,0x1d,0xf6,0x94,0xc3,0x9e,0xc7, +0xb0,0xe7,0x33,0xec,0x35,0x81,0xbd,0xe6,0xb0,0xb7,0x39,0xec, +0x1d,0x05,0x7b,0xd7,0xc1,0xde,0x24,0xd8,0x7b,0x04,0xf6,0xe6, +0xc3,0xde,0x87,0xb0,0xb7,0x1a,0xf6,0x19,0xc3,0xbe,0x46,0xb0, +0xaf,0x0d,0xec,0xf3,0x80,0x7d,0x81,0xb0,0x2f,0x12,0xf6,0x9d, +0x85,0x7d,0xe5,0xb0,0xef,0x33,0xfc,0x69,0x0a,0x7f,0x8a,0xf0, +0xe7,0x40,0xf8,0x73,0x2c,0xfc,0xb9,0x00,0xfe,0x3c,0x0a,0x7f, +0xde,0x82,0x3f,0x29,0xec,0xb7,0x87,0xfd,0xae,0xb0,0xbf,0x3f, +0xec,0x5f,0x0d,0xfb,0xb7,0xc0,0xfe,0x13,0xb0,0xff,0x06,0xec, +0x2f,0x86,0xfd,0x95,0xb0,0xff,0x13,0x1c,0xb0,0x86,0x03,0x3d, +0xe0,0xc0,0x28,0x38,0x10,0x02,0x07,0xd6,0xc3,0x81,0x34,0x38, +0x50,0x02,0x07,0xbb,0xc2,0x41,0x17,0x38,0xd8,0x0f,0x0e,0x8e, +0x86,0x83,0xb3,0xe0,0xe0,0x62,0x38,0x18,0x0d,0x07,0xd7,0x41, +0xba,0x11,0xa4,0xd7,0x83,0x74,0x4b,0x48,0xb7,0x87,0xf4,0xf6, +0x90,0xde,0x0b,0xd2,0x3d,0x20,0x3d,0x10,0xd2,0x87,0x41,0xfa, +0x04,0x48,0xff,0x03,0xd2,0xc3,0x20,0x7d,0x05,0xa4,0x6f,0x80, +0xf4,0x64,0x48,0x2f,0x81,0xf4,0x6f,0x90,0xae,0x87,0x43,0x6d, +0xe0,0xd0,0x30,0x38,0xb4,0x0a,0x0e,0xed,0x83,0x43,0x97,0xe1, +0xd0,0x2d,0x38,0xf4,0x08,0x0e,0xbd,0x87,0x43,0x3f,0x20,0xc3, +0x0a,0x32,0xda,0x42,0x46,0x2f,0xc8,0x70,0x87,0x8c,0x05,0x90, +0x11,0x0d,0x19,0x1b,0x21,0x63,0x07,0x64,0x64,0x40,0xc6,0x39, +0xc8,0xb8,0x01,0x19,0x65,0x90,0xf1,0x0c,0x32,0x28,0x1c,0xae, +0x0b,0x87,0x45,0x38,0xdc,0x06,0x0e,0xfb,0xc1,0xe1,0x71,0x70, +0x38,0x1c,0x0e,0xef,0x84,0xc3,0x17,0xe0,0x70,0x11,0x1c,0x7e, +0x09,0x87,0x25,0x38,0xc2,0xc3,0x11,0x1b,0x38,0xd2,0x1e,0x8e, +0xb8,0xc1,0x91,0x41,0x70,0x64,0x2a,0x1c,0x89,0x86,0x23,0xc9, +0x70,0x64,0x17,0x1c,0x39,0x09,0x47,0x72,0xe0,0x48,0x11,0x1c, +0xa9,0x80,0x23,0x9f,0xe0,0xa8,0x0f,0x1c,0x8d,0x86,0xa3,0x17, +0xe0,0x68,0x11,0x1c,0xfd,0x1b,0x8e,0x7e,0x81,0x63,0xbf,0xc1, +0xb1,0x96,0x70,0xcc,0x19,0x8e,0x05,0xc3,0xb1,0xf1,0x70,0xec, +0x2a,0x1c,0x2b,0x80,0x63,0xcf,0xe0,0xd8,0x07,0x38,0x5e,0x07, +0x8e,0x8b,0x70,0xbc,0x3b,0x1c,0x77,0x83,0xe3,0x81,0x70,0x7c, +0x0c,0x1c,0x9f,0x0e,0xc7,0x17,0xc0,0xf1,0x55,0x70,0xfc,0x28, +0x9c,0xb0,0x80,0x13,0xa3,0xe1,0xc4,0x1a,0x38,0x71,0x1b,0x4e, +0x3c,0x87,0x13,0x35,0x90,0x69,0x05,0x99,0x5d,0x21,0x33,0x08, +0x32,0x67,0x42,0xe6,0x4a,0xc8,0xdc,0x08,0x99,0x29,0x90,0xb9, +0x07,0x32,0x33,0x20,0x33,0x0f,0x32,0x2b,0x20,0xf3,0x15,0x64, +0xea,0xe0,0xa4,0x19,0x9c,0x54,0xc3,0xc9,0xb6,0x70,0xb2,0x0f, +0x9c,0xf4,0x83,0x93,0x83,0xe0,0xe4,0x58,0x38,0xb9,0x08,0x4e, +0x46,0xc1,0xc9,0xcd,0x70,0xf2,0x11,0x9c,0xfc,0x00,0xa7,0x1a, +0xc1,0x29,0x47,0x38,0x35,0x11,0x4e,0x1d,0x84,0xd3,0x96,0x70, +0x7a,0x16,0x9c,0xbe,0x0a,0xa7,0x65,0x38,0xe3,0x03,0x67,0x16, +0xc1,0x99,0xdd,0x70,0x26,0x03,0xce,0x9c,0x86,0x33,0x97,0xe0, +0xcc,0x6b,0x38,0x6b,0x01,0x67,0x9d,0xe0,0xec,0x64,0x38,0xbb, +0x0b,0xce,0x1e,0x82,0xb3,0xa7,0xe0,0x1c,0x07,0xe7,0x9c,0xe1, +0x9c,0x0f,0x9c,0x0b,0x81,0x73,0x91,0x70,0xee,0x4f,0x38,0x77, +0x14,0xce,0x3d,0x86,0xf3,0xfd,0xe0,0xfc,0x11,0x38,0x7f,0x16, +0xce,0xd7,0x40,0x56,0x13,0xc8,0x6a,0x03,0x59,0x5e,0x90,0xd5, +0x1f,0xb2,0x86,0x43,0xd6,0xef,0x90,0x55,0x0a,0xd9,0xbd,0x20, +0x7b,0x08,0x64,0x67,0x43,0xf6,0x75,0xc8,0x2e,0x84,0xec,0x07, +0x90,0xfd,0x1c,0xb2,0x3f,0x42,0x36,0x85,0x0b,0x08,0x17,0x1a, +0xc2,0x05,0x35,0x5c,0x68,0x06,0x17,0xda,0xc1,0x85,0x5e,0x70, +0x61,0x27,0x5c,0x04,0xb8,0xd8,0x00,0x2e,0x4e,0x85,0x8b,0xe1, +0x70,0x31,0x11,0x2e,0x1e,0x86,0x8b,0x97,0xe0,0xe2,0x43,0xb8, +0xf8,0x1d,0x72,0xcc,0x20,0xa7,0x31,0xe4,0x68,0x21,0xa7,0x0b, +0xe4,0x38,0x43,0x8e,0x0f,0xe4,0x04,0x43,0xce,0x24,0xc8,0x29, +0x84,0x4b,0x3d,0xe0,0xd2,0x4e,0xc8,0xe5,0x20,0xb7,0x29,0xe4, +0xb6,0x84,0xdc,0xce,0x90,0xeb,0x04,0xb9,0x3e,0x90,0x3b,0x00, +0x72,0xc7,0x40,0xee,0x74,0xc8,0x9d,0x0f,0xb9,0xcb,0x20,0x77, +0x25,0xe4,0x26,0x41,0xee,0x23,0xc8,0x7d,0x0e,0xb9,0xef,0xe1, +0x72,0x30,0x5c,0x1e,0x0d,0x97,0xa7,0xc2,0xe5,0x3f,0xe0,0x72, +0x02,0x5c,0x4e,0x83,0xcb,0xff,0xc0,0x15,0x1e,0xae,0x74,0x81, +0x2b,0xce,0x70,0xc5,0x17,0xae,0x0c,0x80,0x2b,0xe7,0xe0,0xaa, +0x33,0x5c,0x4d,0x85,0x6b,0x1d,0xe0,0xda,0x62,0xb8,0x96,0x09, +0xd7,0x8d,0xe1,0xba,0x1d,0x5c,0x0f,0x86,0xeb,0xe7,0xe0,0x7a, +0x0d,0xdc,0x18,0x03,0x37,0x36,0xc1,0x8d,0x23,0x70,0xe3,0x11, +0xdc,0x74,0x82,0x9b,0x49,0x70,0xf3,0x33,0xe4,0x39,0x41,0x9e, +0x0f,0xe4,0x0d,0x87,0xbc,0x50,0xc8,0xfb,0x13,0xf2,0x8e,0x43, +0xde,0x35,0xc8,0x2b,0x84,0xbc,0x67,0x90,0xf7,0x1d,0x6e,0x99, +0xc2,0x2d,0x11,0x6e,0xb5,0x87,0x5b,0xbd,0xe0,0x96,0x3f,0xdc, +0x9a,0x08,0xb7,0x8e,0xc0,0x6d,0x63,0xb8,0x6d,0x0e,0xb7,0xdd, +0xe1,0xf6,0x50,0xb8,0xfd,0x3b,0xdc,0x8e,0x86,0xdb,0xeb,0xe1, +0x76,0x32,0xdc,0xde,0x05,0xb7,0x33,0x20,0x5f,0x80,0xfc,0xb6, +0x90,0xdf,0x13,0xf2,0x03,0x21,0x7f,0x22,0xe4,0xcf,0x82,0xfc, +0xc5,0x90,0xbf,0x1e,0xf2,0x5f,0x41,0xfe,0x67,0xc8,0xd7,0xc3, +0x1d,0x33,0xb8,0xd3,0x18,0xee,0x68,0xe1,0x4e,0x1b,0xb8,0xd3, +0x1d,0xee,0x8c,0x81,0x3b,0x51,0x70,0x67,0x1d,0xdc,0xd9,0x02, +0x7f,0x19,0xc1,0x5f,0xf5,0xe0,0xaf,0x2e,0xf0,0x57,0x1f,0xf8, +0xcb,0x0f,0xfe,0x1a,0x04,0x7f,0x8d,0x81,0xbf,0xb2,0xe0,0xaf, +0xfb,0x50,0x00,0x50,0x60,0x0b,0x05,0x23,0xa0,0x60,0x3b,0x14, +0x0e,0x85,0xc2,0x35,0x50,0xb8,0x1f,0x0a,0x73,0xa1,0xf0,0x3e, +0xdc,0x0d,0x84,0xbb,0x12,0x14,0xb5,0x84,0xa2,0x50,0x28,0x5a, +0x0f,0x45,0x5b,0xa0,0x68,0x0f,0x14,0x1d,0x85,0xa2,0x2c,0x28, +0x46,0x28,0xb6,0x80,0xe2,0xa6,0x50,0x1c,0x02,0xc5,0xc9,0x50, +0xbc,0x1b,0x8a,0xaf,0x41,0x71,0x21,0x14,0x7f,0x86,0x62,0x19, +0x4a,0x36,0x41,0xa9,0x37,0x94,0x2e,0x82,0xd2,0x2a,0x28,0xb3, +0x80,0x32,0x6f,0x28,0xdb,0x00,0x65,0xef,0xa0,0xbc,0x19,0x94, +0x2f,0x82,0xf2,0xad,0x50,0x9e,0x05,0xf7,0x8c,0xe1,0x5e,0x7f, +0xb8,0xb7,0x18,0xee,0x65,0xc0,0xbd,0x47,0x70,0xef,0x23,0xdc, +0x9f,0x09,0x0f,0xd4,0xf0,0x20,0x14,0x1e,0xbc,0x80,0x87,0x4d, +0xe0,0x61,0x00,0x3c,0x5c,0x0b,0x0f,0x5f,0xc3,0x23,0x4b,0x78, +0x34,0x14,0x1e,0x9d,0x86,0x8a,0xf1,0x50,0x71,0x07,0x2a,0xed, +0xa0,0x32,0x02,0x2a,0x8f,0x40,0xe5,0x59,0xa8,0xfc,0x00,0x8f, +0xbd,0xe1,0xf1,0x41,0x78,0xfc,0x14,0x9e,0x84,0xc3,0x93,0xc3, +0xf0,0xe4,0x39,0x3c,0x6d,0x07,0x4f,0xd7,0xc2,0xd3,0xf3,0xf0, +0xf4,0x15,0xfc,0xbd,0x08,0xfe,0x7e,0x0d,0xcf,0xda,0xc1,0xb3, +0x15,0xf0,0x2c,0x0d,0x9e,0x3d,0x86,0x2a,0x67,0xa8,0x5a,0x0f, +0x55,0xc9,0x50,0xb5,0x1b,0xaa,0x0e,0x43,0xd5,0x59,0xa8,0x7a, +0x08,0x55,0x2f,0xe1,0x79,0x6f,0x78,0xbe,0x08,0x9e,0xaf,0x84, +0xe7,0xf7,0xe0,0x45,0x5b,0x78,0xd1,0x03,0x5e,0x0c,0x80,0x17, +0xd3,0xe0,0x45,0x38,0xbc,0xd8,0x0c,0x2f,0xb6,0xc3,0x8b,0x03, +0xf0,0x22,0x13,0x5e,0x5c,0x80,0x97,0xad,0xe0,0xe5,0x32,0x78, +0xb9,0x1a,0x5e,0xa6,0xc2,0xcb,0x4c,0x78,0x79,0x11,0x5e,0xde, +0x82,0x97,0x8f,0xe1,0x55,0x07,0x78,0x15,0x03,0xaf,0x36,0xc0, +0xab,0x57,0xf0,0x8a,0xc2,0x6b,0x80,0xd7,0x0d,0xe1,0x75,0x73, +0x78,0xdd,0x0b,0x5e,0x07,0xc0,0xeb,0x95,0xf0,0x3a,0x0e,0x5e, +0xef,0x81,0xd7,0x3f,0xe0,0x75,0x0d,0x54,0x9b,0x42,0xb5,0x05, +0x54,0x5b,0x43,0xb5,0x3d,0x54,0xb7,0x81,0xea,0x2e,0x50,0xed, +0x04,0xd5,0x5e,0x50,0xdd,0x0f,0xaa,0x87,0x41,0xf5,0x34,0xa8, +0x5e,0x02,0xd5,0x6b,0xa1,0x3a,0x05,0xaa,0xd3,0xa1,0xfa,0x3c, +0x54,0xdf,0x82,0xea,0x2a,0xa8,0xa6,0xf0,0xa6,0x3e,0xbc,0xb1, +0x84,0x37,0xb6,0xf0,0xa6,0x0d,0xbc,0xe9,0x06,0x6f,0xfa,0xc0, +0x1b,0x1f,0x78,0x13,0x0c,0x6f,0x46,0xc2,0x9b,0xc9,0xf0,0x66, +0x36,0xbc,0x09,0x87,0x37,0xbb,0xe0,0xcd,0x79,0x78,0xf3,0x10, +0xde,0xb6,0x86,0xb7,0x13,0xe0,0xed,0x1f,0xf0,0xf6,0x24,0xbc, +0xcd,0x87,0xb7,0xd5,0xf0,0xf6,0x1b,0xbc,0xfd,0x07,0xde,0xd5, +0x87,0x77,0x8d,0xe1,0x5d,0x53,0x78,0xe7,0x00,0xef,0xba,0xc0, +0x3b,0x17,0x78,0x17,0x00,0xef,0xa6,0xc1,0xbb,0x10,0x78,0x17, +0x0b,0xef,0x76,0xc1,0xbb,0x0c,0x78,0x77,0x06,0xde,0xe5,0xc2, +0xbb,0x22,0x78,0xf7,0x01,0xde,0x9b,0xc3,0x7b,0x0d,0xbc,0x6f, +0x05,0xef,0x7d,0xe0,0x7d,0x30,0xbc,0x1f,0x09,0xef,0x27,0xc3, +0xfb,0xe5,0xf0,0x7e,0x3d,0xbc,0x4f,0x83,0xf7,0xe7,0xe0,0xfd, +0x03,0x78,0x5f,0x05,0xef,0xdf,0xc3,0x7b,0x02,0x1f,0xcc,0xe0, +0x43,0x2f,0xf8,0x30,0x18,0x3e,0x8c,0x85,0x0f,0xd3,0xe1,0xc3, +0x79,0xf8,0x70,0x15,0x3e,0xfc,0x05,0x1f,0xee,0xc1,0x87,0xbf, +0xe1,0xc3,0x5b,0xf8,0xf0,0x1d,0x3e,0xfc,0x03,0x1f,0x4d,0xe1, +0xa3,0x05,0x7c,0x54,0xc3,0xc7,0xe6,0xf0,0xb1,0x03,0x7c,0xec, +0x05,0x1f,0xdd,0xe1,0xa3,0x3f,0x7c,0x1c,0x04,0x1f,0x47,0xc3, +0xc7,0xa9,0xf0,0x71,0x2e,0x7c,0x0c,0x85,0x8f,0xd1,0xf0,0x71, +0x2f,0x7c,0x3c,0x02,0x1f,0xcf,0xc0,0xc7,0x5c,0xf8,0x78,0x0b, +0x3e,0x56,0xc0,0xc7,0x17,0xf0,0xf1,0x03,0x7c,0x94,0xe1,0x13, +0xc2,0xa7,0x06,0xf0,0xc9,0x1a,0x3e,0x35,0x83,0x4f,0x6e,0xf0, +0xa9,0x2f,0x7c,0x1a,0x08,0x9f,0x46,0xc1,0xa7,0x50,0xf8,0x14, +0x0d,0x9f,0x12,0xe0,0xd3,0x21,0xf8,0x74,0x0b,0x3e,0x95,0xc0, +0xa7,0x0a,0xf8,0xf4,0x12,0x3e,0x11,0xf8,0xdc,0x12,0x3e,0x7b, +0xc0,0xe7,0x00,0xf8,0x3c,0x18,0x3e,0xef,0x87,0xcf,0xc7,0xe0, +0xf3,0x39,0xf8,0x7c,0x19,0x3e,0xe7,0xc3,0xe7,0x32,0xf8,0xfc, +0x18,0x3e,0xbf,0x86,0x2f,0x02,0x7c,0x71,0x80,0x2f,0x5d,0xe1, +0x8b,0x07,0x7c,0x99,0x09,0x5f,0x96,0xc2,0x97,0x1b,0xf0,0xa5, +0x1c,0xbe,0xfa,0xc2,0xd7,0xf9,0xf0,0x75,0x0d,0x7c,0x3d,0x08, +0x5f,0x33,0xe1,0x6b,0x36,0x7c,0xbd,0x0a,0x5f,0x5f,0xc2,0xd7, +0x8f,0xf0,0xad,0x2b,0x7c,0xeb,0x03,0xdf,0xf6,0xc1,0xb7,0x9b, +0xf0,0xed,0x29,0x7c,0xfb,0x00,0xdf,0x8d,0xe0,0x7b,0x63,0xf8, +0xae,0x81,0xef,0xad,0xe0,0x7b,0x17,0xf8,0xee,0x07,0xdf,0x07, +0xc2,0xf7,0x24,0xf8,0x7e,0x1e,0xbe,0xbf,0x80,0xef,0x1f,0xe1, +0x47,0x03,0xf8,0xd1,0x05,0x7e,0xb8,0xc0,0x8f,0xbe,0xf0,0x63, +0x08,0xfc,0x58,0x06,0x3f,0x12,0xe1,0x47,0x1a,0xfc,0x38,0x04, +0x3f,0xce,0xc0,0x8f,0xdb,0xf0,0xa3,0x1c,0x7e,0x3c,0x03,0x62, +0x0a,0x44,0x0b,0xa4,0x27,0x90,0x75,0x20,0xb5,0x05,0xe9,0x32, +0x48,0x45,0x20,0x3d,0x03,0xe9,0x33,0xe8,0x4c,0x41,0x67,0x05, +0xba,0x56,0xa0,0xeb,0x0d,0x3a,0x7f,0xd0,0x8d,0x02,0xdd,0x54, +0xd0,0xfd,0x01,0xba,0x68,0xd0,0xdd,0x03,0xdd,0xdf,0xa0,0x7b, +0x03,0xba,0x9f,0xf0,0xb3,0x1e,0xfc,0xb4,0x85,0x9f,0x6d,0xe0, +0x67,0x37,0xf8,0xe9,0x02,0x3f,0x87,0xc2,0xcf,0x71,0xf0,0x73, +0x37,0xfc,0xbc,0x0a,0x3f,0x3f,0xc3,0x4f,0x0a,0xb4,0x09,0xd0, +0xde,0x40,0xbd,0x81,0x0e,0x00,0x3a,0x06,0xe8,0x0a,0xa0,0x09, +0x40,0x77,0x02,0x4d,0x07,0x7a,0x1a,0xe8,0x55,0xa0,0x85,0x40, +0x1f,0x81,0x6c,0x0c,0x72,0x13,0x90,0x3b,0x83,0x9c,0x0f,0xfa, +0x19,0xa0,0x3f,0x06,0x35,0x7d,0xa1,0x66,0x20,0xd4,0x8c,0x81, +0x9a,0x64,0xa8,0xd9,0x0d,0x35,0x77,0xa1,0xe6,0x35,0xd4,0xfc, +0x84,0x7f,0x78,0xf8,0xa7,0x23,0xfc,0xe3,0x03,0xff,0x44,0xc2, +0x3f,0xc9,0xf0,0xcf,0x25,0xf8,0xe7,0x13,0x1a,0x99,0xa1,0x51, +0x63,0x34,0xd2,0xa0,0x51,0x2b,0x34,0xea,0x82,0x46,0xce,0x68, +0xe4,0x83,0x46,0xc1,0x68,0x34,0x12,0x8d,0x26,0xa3,0xd1,0x1c, +0x34,0x0a,0x45,0xa3,0xe5,0x68,0xb4,0x1e,0x8d,0x92,0xd1,0x68, +0x17,0x1a,0x5d,0x46,0xa3,0x7c,0x34,0x2a,0x43,0xa3,0x27,0x68, +0x54,0x8d,0x46,0x7a,0x34,0xe6,0xd0,0xd8,0x02,0x8d,0xb5,0x68, +0xdc,0x1a,0x8d,0xbb,0xa2,0x71,0x1f,0x34,0x1e,0x82,0xc6,0x51, +0x68,0x7c,0x11,0x8d,0x25,0xac,0xd3,0x13,0xeb,0x2c,0xc4,0x3a, +0x9b,0xb0,0x4e,0x06,0xd6,0x39,0x86,0x75,0x1e,0x60,0x9d,0x2f, +0x58,0xb7,0x29,0xd6,0x75,0xc3,0xba,0x61,0x58,0x37,0x16,0xeb, +0x1e,0xc0,0xba,0x55,0x68,0xa2,0x41,0x93,0xf1,0x68,0x32,0x03, +0x4d,0x42,0xd0,0x24,0x06,0x4d,0x36,0xa2,0xc9,0x11,0x34,0x79, +0x80,0xd0,0x18,0x61,0x00,0xc2,0x5c,0x84,0x38,0x84,0x1d,0xa8, +0x14,0xa7,0xc7,0x88,0xf5,0x11,0x35,0x88,0x3d,0x11,0x7d,0x10, +0x87,0x22,0x86,0x20,0x26,0x22,0xee,0x43,0x3c,0x83,0x78,0x11, +0xb1,0x04,0x39,0x07,0xe4,0x76,0x21,0xf7,0x0d,0x4d,0xc7,0xa2, +0xe9,0x4c,0x34,0xfd,0x03,0x4d,0x43,0xd1,0xf4,0x00,0x9a,0x1e, +0x45,0xd3,0x73,0x68,0x7a,0x1d,0x4d,0xf3,0xd1,0xb4,0x14,0x4d, +0x1f,0xa1,0x69,0x15,0x9a,0xbe,0x41,0xd3,0x2f,0x68,0xaa,0x43, +0x33,0x23,0x34,0x33,0x45,0xb3,0x06,0x68,0xd6,0x04,0xcd,0xb4, +0x68,0xe6,0x81,0x66,0x7d,0xd1,0x2c,0x18,0xcd,0x86,0xa1,0xd9, +0x58,0x34,0x9b,0x82,0x66,0xcf,0xd0,0xac,0x1a,0xcd,0x24,0xe4, +0x8d,0x91,0xef,0x8d,0xbc,0x37,0xf2,0xfd,0x90,0x1f,0x82,0xfc, +0x38,0xe4,0xa7,0x21,0x1f,0x8f,0xfc,0x05,0xe4,0x6f,0x23,0x5f, +0x84,0xfc,0x77,0xac,0xd7,0x15,0xeb,0x39,0x63,0xbd,0xb5,0x58, +0xef,0x3c,0xd6,0xbb,0x8c,0xf5,0x4a,0xb1,0xde,0x3b,0xac,0xf7, +0x15,0xeb,0xfd,0xc4,0xfa,0xc6,0x58,0xbf,0x39,0xd6,0x77,0xc3, +0xfa,0x03,0xb1,0xfe,0x44,0xac,0xbf,0x10,0xeb,0x47,0x63,0xfd, +0x38,0xac,0xbf,0x13,0xeb,0x1f,0xc1,0xfa,0xd9,0x58,0xff,0x2a, +0xd6,0xbf,0x8b,0xe6,0xf5,0xd0,0xbc,0x11,0x9a,0xab,0xd1,0xdc, +0x1e,0xcd,0xbb,0xa2,0x79,0x3f,0x34,0x1f,0x8c,0xe6,0xa3,0xd0, +0x7c,0x22,0x9a,0xcf,0x44,0xf3,0xf9,0x68,0x1e,0x86,0xe6,0x2b, +0xd0,0x7c,0x03,0x9a,0x27,0xa1,0xf9,0x71,0x34,0xbf,0x8f,0xe6, +0x4f,0x50,0xd5,0x0a,0x55,0x1d,0x51,0xd5,0x0b,0x55,0xbe,0xa8, +0x0a,0x42,0xd5,0x48,0x54,0x4d,0x40,0xd5,0x6c,0x54,0x7d,0xc7, +0x06,0x26,0xd8,0xa0,0x31,0x36,0x18,0x80,0x0d,0xe2,0xb0,0xc1, +0x41,0x6c,0x70,0x05,0x1b,0xfc,0x83,0x0d,0x9b,0x62,0xc3,0xae, +0xd8,0xd0,0x05,0x1b,0xfa,0x63,0xc3,0xd1,0xd8,0x70,0x36,0x36, +0x8c,0xc0,0x86,0x6b,0xb0,0x61,0x02,0x36,0xbc,0x85,0x0d,0x1f, +0x62,0x43,0x1d,0x5a,0x98,0xa2,0x85,0x03,0x5a,0xb8,0xa2,0xc5, +0xef,0x68,0x11,0x8b,0x16,0x17,0xd0,0xe2,0x13,0x36,0xea,0x80, +0x8d,0x02,0xb0,0xd1,0x44,0x6c,0x74,0x1a,0x1b,0x55,0x60,0xa3, +0x6a,0x6c,0xf4,0x15,0x7f,0x6b,0x89,0xbf,0x8d,0xc1,0xdf,0xa2, +0xf1,0xb7,0x75,0xf8,0x5b,0x32,0xfe,0x96,0x86,0xbf,0xa5,0xe3, +0x6f,0x97,0xf1,0xb7,0xfb,0xf8,0xdb,0x33,0x6c,0xcc,0x63,0xe3, +0xdf,0xb0,0x71,0x7b,0x6c,0xdc,0x07,0x1b,0xfb,0x62,0xe3,0xfe, +0xd8,0x78,0x1c,0x36,0x9e,0x8e,0x8d,0x97,0x63,0xe3,0x58,0x6c, +0x9c,0x88,0x8d,0x75,0x28,0x4c,0x40,0x61,0x1b,0x0a,0x15,0x68, +0x29,0xa0,0x65,0x73,0xb4,0xec,0x8d,0x96,0xfe,0x68,0x39,0x02, +0x2d,0xa7,0xa1,0xe5,0x0a,0xb4,0x5c,0x8f,0x96,0x89,0x68,0xb9, +0x0f,0x2d,0x33,0xd1,0x32,0x0b,0x2d,0x6f,0xa1,0xe5,0x43,0xb4, +0xfc,0x82,0x4d,0x8c,0xb0,0x89,0x29,0x36,0xb1,0xc0,0x26,0xcd, +0xb0,0x89,0x3b,0x36,0x19,0x80,0x4d,0x46,0x60,0x93,0xe9,0xd8, +0x24,0x04,0x9b,0xc4,0x63,0x93,0xdd,0xd8,0x24,0x1d,0x9b,0x14, +0xa2,0x55,0x7d,0xb4,0xea,0x83,0x56,0xf1,0x68,0x75,0x04,0xad, +0x6e,0xa1,0x95,0x8c,0xd6,0x9d,0xd1,0x3a,0x00,0xad,0x97,0xa0, +0xf5,0x2e,0x54,0xd7,0x47,0x75,0x38,0xaa,0x93,0x50,0x9d,0x81, +0xea,0x3b,0xa8,0x7e,0x83,0x36,0x02,0xda,0xb8,0xa1,0xcd,0x38, +0xb4,0x49,0x42,0x1b,0x1d,0x8a,0xed,0x50,0x9c,0x88,0xe2,0xef, +0x28,0xce,0x45,0xf1,0x30,0x8a,0xdf,0xb1,0x69,0x43,0x6c,0xda, +0x15,0x9b,0x0e,0xc5,0xa6,0x49,0xd8,0xf4,0x00,0x36,0x2d,0xc1, +0xa6,0xff,0xa0,0xa6,0x3b,0x6a,0x66,0xa0,0x26,0x06,0x35,0xc9, +0xa8,0x79,0x8d,0xda,0xfa,0xa8,0xb5,0x42,0x6d,0x73,0xd4,0x76, +0x46,0xad,0x0b,0x6a,0x83,0x50,0x3b,0x12,0xb5,0x53,0x51,0x1b, +0x82,0xda,0xd5,0xa8,0xdd,0x8a,0xda,0x74,0xd4,0x66,0xa1,0xf6, +0x0a,0x6a,0x6f,0xa1,0xf6,0x2e,0x6a,0xef,0xa3,0x96,0x71,0x49, +0x68,0x6b,0x8a,0xb6,0x56,0x68,0xdb,0x0c,0x6d,0xdb,0xa3,0xad, +0x33,0xda,0xf6,0x45,0xdb,0xe1,0x68,0x3b,0x13,0x6d,0x17,0xa3, +0xed,0x72,0xb4,0x4d,0x46,0xdb,0x43,0x68,0x7b,0x19,0x6d,0xef, +0xa3,0xed,0x3b,0xb4,0xab,0x8b,0x76,0x6a,0xb4,0xeb,0x80,0x76, +0xee,0x68,0x37,0x08,0xed,0xa6,0xa0,0xdd,0x42,0xb4,0x8b,0x41, +0xbb,0x24,0xb4,0x3b,0x80,0x76,0x59,0x68,0x77,0x1d,0xed,0x8a, +0xd1,0xee,0x09,0xda,0x55,0xa3,0xdd,0x57,0xb4,0x37,0x42,0x7b, +0x33,0xb4,0x6f,0x8c,0xf6,0x1d,0xd0,0xde,0x11,0xed,0x03,0xd0, +0x7e,0x34,0xda,0xcf,0x46,0xfb,0x08,0xb4,0xdf,0x88,0xf6,0xa9, +0x68,0x7f,0x10,0xed,0xcf,0xa3,0xfd,0x6d,0xb4,0x7f,0x8a,0xf6, +0x9f,0xb1,0x59,0x1d,0x6c,0xd6,0x00,0x9b,0xd9,0x61,0x8b,0xf3, +0xd8,0xe2,0x26,0xb6,0xa8,0xc2,0x96,0xe6,0xd8,0xb2,0x2d,0xb6, +0xb2,0xc3,0x56,0x5b,0xb0,0xb5,0x35,0xb6,0x59,0x83,0x6d,0x92, +0xb0,0xcd,0x09,0x6c,0x93,0x8b,0x6d,0x2a,0xb0,0xcd,0x5b,0x6c, +0x8b,0xd8,0xb6,0x31,0xb6,0xed,0x84,0x6d,0xbd,0xb0,0xed,0x0c, +0x6c,0x9b,0x86,0xed,0x8c,0xb1,0x5d,0x18,0xb6,0xdb,0x83,0xed, +0x2a,0xb1,0x7d,0x13,0x6c,0xef,0x8a,0xed,0xb7,0x63,0x87,0x01, +0xd8,0x31,0x04,0x3b,0x1d,0xc7,0xce,0xd5,0xd8,0xa5,0x17,0x76, +0x49,0xc1,0x2e,0x3f,0xb1,0xeb,0x18,0xec,0x7a,0x01,0xbb,0x0d, +0xc5,0x6e,0x1b,0xb0,0xfb,0x24,0xec,0x51,0xa4,0xa4,0x7b,0xcf, +0x71,0xd8,0xb3,0x02,0x7b,0xb5,0xc2,0x5e,0x6d,0xb0,0x57,0x00, +0xf6,0x9a,0x80,0xbd,0x26,0x61,0xaf,0x3f,0xb0,0x57,0x0c,0xf6, +0xfa,0x0b,0x7b,0x7d,0xc7,0xde,0xbf,0x63,0xef,0x68,0x74,0x44, +0x74,0xf4,0x45,0xc7,0xa3,0xe8,0x58,0x86,0x4e,0xd6,0xe8,0xe4, +0x88,0x4e,0x23,0xd0,0x69,0x2d,0x3a,0xed,0x45,0xa7,0x4f,0xe8, +0xec,0x8e,0xce,0x03,0xd0,0x79,0x2d,0x3a,0x1f,0x45,0xe7,0x4f, +0xd8,0xa7,0x23,0xf6,0x99,0x82,0x7d,0xd2,0xb0,0xcf,0x4b,0x74, +0xb1,0x42,0x97,0x6e,0xe8,0x92,0x8a,0x2e,0x15,0xe8,0x6a,0x89, +0xae,0x2e,0xe8,0x9a,0x82,0x6e,0xc6,0xe8,0xe6,0x85,0x6e,0x8b, +0xd1,0xed,0x3a,0xba,0x55,0xa1,0x7b,0x7b,0x74,0x9f,0x8d,0xee, +0x5b,0xd1,0xfd,0x10,0xba,0x5f,0x47,0xf7,0x12,0x74,0x7f,0x86, +0xee,0x9f,0xd0,0xfd,0x1f,0xf4,0x30,0x47,0x0f,0x3b,0xf4,0x70, +0x46,0x0f,0x7f,0xf4,0x18,0x8e,0x1e,0xd3,0xd0,0x23,0x1c,0x3d, +0x36,0xa3,0xc7,0x2e,0xf4,0x48,0x47,0x8f,0x33,0xe8,0x71,0x0d, +0x3d,0x4a,0xd0,0xe3,0x3d,0x7a,0xfc,0x44,0x4f,0x0e,0x3d,0x6d, +0xd0,0xb3,0x35,0x7a,0xf6,0x44,0x4f,0x6f,0xf4,0x1c,0x84,0x9e, +0xe3,0xd1,0x73,0x06,0x7a,0x86,0xa0,0xe7,0x26,0xf4,0xdc,0x87, +0x9e,0xc7,0xd0,0x33,0x07,0x3d,0xcb,0xd1,0xf3,0x35,0x7a,0x7e, +0x41,0x2f,0x63,0xf4,0x6a,0x82,0x5e,0x9d,0xd0,0xcb,0x15,0xbd, +0xfa,0xa1,0xd7,0x28,0xf4,0x9a,0x89,0x5e,0x51,0xe8,0xb5,0x15, +0xbd,0x32,0xd1,0xeb,0x26,0x7a,0x95,0xa2,0x57,0x15,0x7a,0x7d, +0x44,0x2f,0x19,0xbd,0xcd,0xd0,0xbb,0x09,0x7a,0x3b,0xa0,0x77, +0x57,0xf4,0x76,0x47,0xef,0x20,0xf4,0x1e,0x85,0xde,0x33,0xd0, +0x7b,0x31,0x7a,0xaf,0x46,0xef,0x2d,0xe8,0xbd,0x1f,0xbd,0xcf, +0xa1,0x77,0x01,0x7a,0x57,0xa1,0x8f,0x1a,0x7d,0x3a,0xa0,0x4f, +0x7f,0xf4,0x49,0x46,0x9f,0x0a,0xf4,0x79,0x87,0x3e,0x3f,0xd1, +0xd7,0x06,0x7d,0x5b,0xa1,0x6f,0x77,0xf4,0x0d,0x40,0xdf,0x71, +0xe8,0x3b,0x17,0x7d,0x23,0xd0,0x77,0x0b,0xfa,0x3e,0x40,0xbf, +0x76,0xe8,0xe7,0x84,0x7e,0x8b,0xd1,0x2f,0x06,0xfd,0x9e,0x62, +0xdf,0xee,0xd8,0x77,0x18,0xf6,0xdd,0x22,0xfb,0x48,0x81,0x96, +0xba,0x5d,0x72,0x3b,0xfd,0x2e,0xee,0xa6,0x6e,0xb2,0x40,0x4e, +0xe9,0x5b,0xd1,0x53,0xa8,0xd2,0x77,0x51,0xe9,0xeb,0x90,0x1e, +0xa4,0x9f,0xb0,0x97,0xdc,0x06,0x32,0xae,0x2b,0x1d,0xc7,0xed, +0xa5,0xb7,0x21,0x8d,0x8e,0x10,0xb9,0xcb,0xbc,0x1c,0x46,0x3a, +0x4b,0xe3,0x05,0x72,0xd8,0x93,0x1e,0xe6,0xc8,0x06,0xcb,0xda, +0x17,0x15,0x1d,0x22,0xa1,0x65,0x3e,0x1e,0x23,0x13,0x80,0x68, +0x6e,0xd2,0xc6,0x78,0x80,0x38,0xb3,0x92,0xcb,0xde,0x44,0xd3, +0xd5,0x3c,0xed,0x60,0xf8,0xab,0xe9,0x4f,0x7e,0xc3,0xb9,0xd4, +0x19,0x94,0xb7,0xc6,0x38,0x8d,0x4e,0x80,0x5f,0x2c,0x1d,0x90, +0x36,0xbf,0x29,0x18,0x78,0x3a,0x18,0x28,0x54,0x34,0x8f,0x3c, +0xed,0x2d,0x54,0x72,0xa4,0xf1,0x96,0x87,0xa5,0x84,0x53,0x7f, +0xeb,0x7f,0x85,0x6a,0x0f,0x69,0x96,0x6f,0x00,0x12,0xc1,0xe5, +0x2f,0x3f,0x3f,0xeb,0xf0,0xe8,0xbc,0xf3,0x56,0xa3,0x0a,0x02, +0x4e,0x74,0x4a,0x30,0xad,0xe8,0xd7,0x9b,0xa3,0xa6,0x51,0x8e, +0x81,0x76,0xea,0x66,0x79,0x83,0x49,0xd3,0x59,0x1a,0x9a,0xc4, +0xf9,0x26,0x8e,0x3c,0x3a,0xfe,0x5a,0xf0,0x50,0xab,0x0b,0xfe, +0x85,0xa3,0x3f,0xad,0x30,0xed,0xcd,0x91,0x81,0x24,0x5d,0xf0, +0x1d,0x39,0xd6,0x29,0x4a,0x43,0x62,0xb9,0xd7,0x0b,0x8f,0xcd, +0xf2,0x55,0xb3,0x73,0x2a,0x85,0x1b,0x59,0x47,0x4b,0x12,0x35, +0xf4,0x0f,0xce,0x69,0xd7,0xe4,0x83,0x85,0x6a,0xd5,0x2e,0xb2, +0xd5,0x52,0x0a,0xd5,0x05,0x81,0x0b,0xca,0xa1,0xfa,0x20,0x38, +0x49,0x0a,0x44,0x78,0xc8,0x4b,0x8b,0x64,0x95,0xf2,0x54,0xd1, +0xe9,0x52,0x9e,0xe5,0x57,0xa4,0x22,0x71,0xd8,0x73,0x36,0x35, +0x27,0xf1,0x86,0x75,0x71,0x21,0x15,0x71,0x4d,0xff,0xe8,0x01, +0x8b,0x87,0xd3,0xce,0xa4,0x8f,0x55,0x55,0x76,0x49,0xee,0x2b, +0xf5,0x73,0x9f,0xbc,0x56,0xd4,0xd8,0xd3,0xbd,0x7d,0xe0,0xa1, +0x11,0xd9,0xc3,0x35,0x9e,0x93,0xbc,0x86,0x36,0x53,0xdb,0x96, +0x77,0x27,0x5a,0x82,0x37,0x6f,0x1c,0x3d,0xa8,0xa1,0x5e,0xd2, +0x75,0x21,0xe7,0xec,0xec,0xc1,0x62,0xd3,0x46,0xfc,0x85,0xc3, +0xb9,0x07,0x35,0xa4,0x3f,0x1d,0x0b,0xe3,0xa6,0x8f,0x9a,0xeb, +0x6b,0xa3,0xd2,0xb7,0xfb,0x0f,0x5b,0xab,0xe4,0xc2,0xc7,0xe4, +0x8e,0x40,0x87,0x56,0x52,0xb7,0x0f,0xbd,0x34,0xf7,0x90,0x1a, +0xbf,0xf5,0x20,0x7d,0x88,0xad,0xfa,0x6f,0x8e,0xd8,0x16,0x13, +0x47,0x52,0xf7,0xa3,0xc6,0x15,0x5b,0x74,0x75,0xa2,0x4e,0x74, +0x88,0x9a,0x91,0x93,0x4d,0x8c,0x9e,0x0c,0x71,0x22,0x4e,0x2d, +0xaa,0xd8,0x0e,0xa9,0xdb,0xb2,0x98,0x3a,0x52,0x5b,0x75,0x77, +0x8e,0xda,0x7a,0xd0,0x3e,0xd4,0xb8,0x2d,0x93,0xf2,0xe1,0x71, +0x25,0x71,0x23,0x43,0x19,0xfd,0x68,0xb2,0x48,0x4a,0x10,0x2a, +0x69,0x83,0xab,0xa7,0x3a,0x11,0x53,0x62,0x9f,0xb9,0xa8,0x80, +0x6a,0x86,0xc7,0x93,0x96,0xe0,0x8d,0xf1,0xb4,0x25,0xd5,0xe4, +0x2c,0xf2,0x23,0xf6,0x93,0x3b,0x51,0xd3,0xab,0x13,0x99,0x7f, +0x6e,0x90,0x97,0xb7,0x04,0xd1,0x7e,0x0b,0x4f,0xa7,0x70,0x2a, +0xbd,0x8a,0x88,0xc4,0x4c,0xc4,0x08,0x5e,0x25,0x6f,0x24,0x8f, +0x49,0x8a,0xf0,0x37,0x4d,0xe9,0x5e,0xbb,0x1e,0x69,0x08,0x9b, +0xb4,0x0a,0xda,0x56,0x20,0x29,0x3f,0x1b,0x80,0x27,0xd2,0x94, +0x9a,0x06,0x06,0x09,0xb9,0xa4,0x92,0x19,0xf3,0x86,0x74,0xd6, +0xb2,0x8c,0xfa,0xe9,0x4c,0x68,0x13,0x4e,0x6c,0xd6,0x87,0x77, +0x47,0x65,0x2d,0xbd,0x4c,0x90,0xeb,0x22,0x09,0x26,0x7d,0xe0, +0x79,0x45,0x7e,0x19,0x31,0x56,0x93,0x7a,0x7d,0x9e,0x50,0x91, +0xda,0xf4,0x73,0xec,0x35,0x4f,0x53,0x3e,0x07,0x0a,0x76,0x9e, +0xca,0x79,0x6a,0xf3,0xec,0xf4,0x50,0x17,0x6d,0x24,0xe7,0x3b, +0xc2,0xc7,0xbf,0xbf,0x86,0x86,0xd2,0xa9,0xd0,0x5d,0x1a,0xcb, +0x29,0xd2,0xfb,0x49,0x2d,0x04,0x8f,0x4a,0xee,0x43,0xce,0x98, +0x5e,0xda,0x18,0xae,0xd7,0xf0,0x31,0xad,0x7a,0x8e,0x3f,0x76, +0x75,0xba,0x26,0x70,0x14,0xf4,0x3f,0x9d,0x1f,0x4c,0xea,0xdb, +0x10,0xfb,0x37,0x8f,0x49,0xfd,0x6f,0x9e,0x57,0xdc,0x52,0xb5, +0x1b,0xb9,0xf2,0x9d,0x37,0x44,0xed,0x2c,0xbe,0xfc,0xe2,0x54, +0x0f,0xed,0x0a,0xce,0x77,0xf4,0xa8,0x76,0x1a,0x45,0x91,0x51, +0x96,0xa4,0xe9,0xa7,0xa2,0x16,0x52,0x24,0xb5,0xe0,0xe8,0x39, +0x39,0x0c,0xdc,0xc9,0x0b,0xda,0x94,0x5b,0xa5,0x33,0x17,0x36, +0xc9,0x2e,0x34,0xd9,0xa0,0xed,0x2a,0x5d,0x90,0x20,0xf3,0x28, +0x3a,0xac,0xe6,0xdf,0x5e,0x1c,0xda,0x51,0x1b,0xcd,0x75,0x1c, +0x31,0xb4,0x6d,0xcf,0x69,0xff,0x75,0xde,0x8d,0x60,0x66,0x1f, +0xad,0x37,0x4f,0x6e,0x28,0xf4,0xe4,0x72,0xa4,0x40,0x6c,0x5f, +0xbd,0x61,0x56,0xb3,0xea,0xfe,0x98,0xd6,0xef,0x31,0x62,0xfc, +0xc0,0x99,0xda,0x55,0x1b,0x8e,0x93,0x1e,0x4f,0x5e,0x92,0xd6, +0xc4,0xd8,0x9a,0x1a,0x21,0x35,0xf1,0xa4,0x4d,0x69,0x4f,0x3a, +0x49,0x4d,0x1d,0x9f,0x3b,0x10,0x07,0x4d,0x6c,0xa9,0xa8,0x6d, +0xc8,0x33,0xee,0x1d,0x96,0x64,0x9b,0xce,0x04,0xca,0xe4,0xb1, +0x74,0x6c,0x39,0xb1,0x24,0x39,0x1c,0x4d,0xd3,0x63,0xad,0x49, +0x99,0xe0,0xae,0x8f,0x9f,0x11,0xee,0xed,0xc0,0xcb,0x3d,0xf7, +0x68,0x13,0xb8,0xd2,0x7d,0x59,0x37,0x1e,0xa9,0x7f,0x38,0x16, +0x52,0x5b,0x6a,0xeb,0xe8,0x6b,0xeb,0x94,0x15,0x5c,0x3a,0x5f, +0x13,0xc3,0xf5,0x5c,0x38,0x70,0x48,0x5b,0x35,0xe5,0x1e,0x77, +0x23,0x5d,0x35,0xa5,0x26,0x6d,0x06,0x9d,0x7b,0xa4,0xdd,0xc5, +0x3d,0xba,0x7a,0xee,0xdd,0xbb,0xab,0x63,0x9d,0x34,0x21,0x9c, +0xd3,0xa0,0xb1,0x6d,0x34,0xa4,0xda,0xa4,0xeb,0x98,0x13,0x25, +0xda,0x6d,0x5c,0xc9,0xf9,0x13,0x55,0x55,0xe7,0xa7,0x78,0x6a, +0x96,0x71,0x9e,0x63,0xa6,0x74,0x35,0x98,0x26,0x5d,0x74,0x58, +0xc4,0xb7,0xa3,0xa2,0xd8,0xdc,0x9d,0x9f,0x4a,0x7b,0xf4,0xec, +0x44,0x5b,0x53,0x63,0x6b,0x62,0x84,0xc4,0xa4,0x84,0x34,0x25, +0x3d,0x09,0x53,0x3d,0xdc,0x56,0x51,0x5a,0xfe,0x49,0x5a,0x44, +0x8a,0xaa,0xd6,0xbc,0xd4,0xd1,0x44,0xe4,0xf4,0x2c,0x4c,0xd8, +0x42,0x6d,0xc4,0x90,0xa3,0xb5,0x2b,0x4c,0xde,0xe6,0x48,0x41, +0xb4,0xf3,0xe1,0x9d,0x38,0x83,0x70,0xc9,0x54,0x28,0x94,0xa7, +0xfa,0x72,0xd2,0x54,0x3a,0xba,0xf6,0x8d,0x2d,0xbf,0x88,0x14, +0xa4,0x5e,0x64,0x03,0x3c,0xe2,0x64,0xe5,0xd1,0x93,0x23,0xef, +0x59,0xb7,0x1d,0xc3,0x51,0xe5,0xa1,0x92,0xdd,0x49,0x22,0x61, +0x58,0x66,0xc4,0x55,0xa5,0xbe,0xbd,0x45,0x7e,0x53,0x13,0x53, +0x97,0x52,0xda,0x90,0x5a,0xf8,0xb9,0x76,0x5f,0xa0,0x29,0x9b, +0x0b,0x85,0xa9,0xe7,0x2f,0xdc,0xb7,0x29,0x39,0x2f,0x3a,0x44, +0xf1,0xb4,0x17,0x97,0x49,0xe7,0x29,0xd1,0xb9,0x4c,0xe7,0xd4, +0x5f,0xa0,0x61,0x48,0x83,0x19,0x5e,0x69,0x55,0x3c,0x35,0xf9, +0xdd,0x37,0x70,0xea,0x92,0x94,0x4b,0x1a,0x72,0xcd,0xc7,0x77, +0x35,0x77,0x26,0x74,0xc6,0x91,0x20,0x9b,0x0e,0x8e,0x5e,0xec, +0x7e,0xad,0x2b,0xbc,0x5e,0xe7,0x1d,0x3b,0x9c,0xbb,0x5f,0xbb, +0x11,0x87,0x6f,0x4e,0x9f,0x9e,0x6f,0x43,0x2c,0x2e,0xb0,0x7c, +0xd1,0x90,0x83,0xd4,0x9f,0x18,0x33,0x11,0x51,0xb4,0x23,0x75, +0xa7,0xeb,0xe8,0x7a,0xd2,0x9e,0x76,0x27,0x4b,0xb4,0x64,0x19, +0xd2,0x55,0x24,0x51,0xf0,0xfc,0xfd,0xdc,0x5d,0xed,0x23,0xee, +0x6e,0xc6,0xb9,0x92,0x92,0x8c,0xc9,0xc3,0x35,0x54,0xc5,0x05, +0xcd,0x9c,0xee,0xc5,0x2c,0xb9,0x43,0xaa,0xb1,0xa4,0x6b,0x18, +0xde,0xd8,0x22,0x5d,0xc3,0xf0,0xe6,0x29,0x16,0x91,0x89,0x40, +0x8e,0x62,0x11,0x9d,0x08,0x9d,0xc8,0x61,0x81,0xae,0x44,0xc2, +0x93,0xd7,0xb0,0x89,0x05,0x4f,0xfc,0x6b,0x4b,0x52,0x84,0x5f, +0xef,0x89,0x0d,0xce,0xf0,0x09,0x05,0x47,0xbf,0xa9,0x89,0xb1, +0x77,0x31,0x35,0xd5,0xd0,0x93,0xf8,0x44,0xe6,0x05,0x32,0x09, +0x4b,0xce,0x4e,0xf5,0xd2,0xce,0xe0,0xbc,0xc6,0x4d,0xf5,0xd4, +0xd0,0x49,0x28,0x65,0x99,0x90,0x21,0x58,0x90,0x39,0x23,0x90, +0x2d,0x06,0x4e,0x9e,0xe1,0xa7,0xa1,0x43,0x98,0x9c,0x13,0xe4, +0x15,0x8b,0x15,0xb3,0x27,0x37,0x3f,0x9c,0xd5,0xfa,0x9d,0x06, +0xd7,0xb9,0x41,0x23,0xba,0xd8,0x50,0x73,0xef,0xbf,0x49,0x73, +0xed,0x57,0x8e,0x34,0x2b,0x7e,0x43,0xea,0x3f,0xbb,0x36,0xda, +0xf3,0x80,0xa6,0xf0,0x14,0xbc,0x1b,0xe7,0x7c,0x95,0x9a,0xd9, +0x50,0xef,0x66,0xd4,0x92,0x46,0xd2,0xc8,0xaf,0x54,0x45,0xbc, +0xb5,0x2a,0x1a,0xc9,0x94,0x89,0x40,0xe2,0x41,0x4c,0x88,0x19, +0x59,0x46,0x96,0x51,0xf6,0xa4,0x1e,0x5a,0x1a,0x81,0x4f,0xf4, +0x26,0x82,0x94,0x45,0xda,0x70,0x84,0xab,0x70,0xa6,0x5a,0x2d, +0x45,0x8e,0x6a,0x1d,0x9d,0x29,0xc7,0xee,0x7b,0x4f,0x4a,0xb5, +0x14,0xed,0x9f,0xf2,0xfa,0x20,0xe6,0xd2,0x8f,0xc4,0xdb,0x92, +0xdc,0x25,0x57,0xcb,0xe8,0x55,0x12,0x41,0x9e,0x96,0xc9,0xdd, +0x0c,0xcb,0xd3,0xa4,0xd3,0x96,0x0f,0x08,0xa5,0x51,0xee,0xa4, +0x83,0x0f,0x36,0x77,0x1c,0xd1,0x86,0x5a,0xf7,0x7e,0x49,0xb4, +0x1a,0x02,0x1c,0xd1,0xb0,0x2c,0x69,0x50,0x75,0x67,0xac,0x5b, +0x86,0xe6,0xee,0x69,0x78,0x35,0xb6,0x67,0x1e,0xb5,0xb0,0xa1, +0x7e,0xd4,0x8c,0x0a,0x74,0x19,0x8d,0x24,0xf5,0x68,0x23,0xe2, +0xfa,0xa3,0xe8,0xc2,0x9d,0xed,0xda,0x38,0x76,0xd5,0x51,0xd2, +0x7e,0x4b,0xb1,0x99,0x17,0x4f,0xbe,0xa3,0x4a,0x8e,0x23,0xaf, +0x2d,0x8b,0x5a,0x4b,0x57,0xde,0x17,0xd1,0xc3,0xde,0xef,0xe5, +0x2b,0xad,0xbd,0x19,0xb6,0xda,0xbe,0x67,0x09,0xec,0x4e,0x56, +0xc8,0x6e,0x5c,0x97,0x09,0xe3,0x3c,0x3d,0xa7,0x9f,0xbe,0x19, +0xa1,0x71,0x5d,0x02,0x6d,0x77,0x16,0x04,0x12,0x23,0x1b,0xc2, +0x57,0x96,0x13,0x5e,0x2b,0xa5,0x30,0xc5,0xf6,0x49,0x9b,0x14, +0xec,0x3f,0x24,0x35,0x23,0x5b,0xc9,0x25,0x68,0x8e,0x74,0x1a, +0x8d,0x6b,0x49,0xcd,0x61,0x8d,0xc4,0xf5,0xd4,0x07,0x3d,0x21, +0xe1,0xf8,0x81,0xd4,0x61,0xb1,0xd8,0x5a,0x9a,0xc3,0x70,0xed, +0xa2,0xce,0xa4,0xa7,0x72,0xa1,0xf6,0x3a,0x0b,0xcb,0x4a,0x5d, +0x90,0x92,0xd7,0x63,0xe4,0xfa,0xb0,0x0a,0xe9,0x68,0xa9,0x3e, +0x50,0x13,0x7d,0x50,0xa5,0xf4,0x74,0x13,0xde,0xa0,0x66,0xc4, +0x89,0x5e,0x23,0x4e,0xe4,0xda,0x0d,0x62,0x66,0x70,0xf4,0x28, +0x29,0xc5,0xf2,0x9d,0x2e,0xa8,0xb7,0xfc,0x60,0x0d,0xf6,0x24, +0x1d,0x69,0x82,0xe4,0x02,0x6d,0x14,0xf2,0x07,0x71,0xf8,0x84, +0x76,0x64,0xe9,0x3e,0x92,0xfc,0x60,0x2e,0xf4,0x63,0xd1,0xd7, +0x88,0x30,0x98,0xdd,0xc3,0xb3,0xab,0x9b,0xb2,0xab,0xfb,0x69, +0xcb,0x4d,0xa8,0x79,0x8f,0xe7,0x44,0xab,0x25,0xa6,0x1c,0xd1, +0x3e,0x7d,0x4e,0xcc,0x89,0xf9,0xd3,0x2e,0x54,0xab,0xa1,0xa6, +0xcc,0x0d,0x3d,0xba,0x50,0x73,0xe6,0x86,0x5c,0xc5,0xf2,0x39, +0x64,0x28,0x47,0x2c,0x8a,0xee,0x91,0x86,0xa4,0xa1,0xf7,0x3d, +0x6a,0xa1,0xa5,0x87,0xf4,0x41,0xf8,0x44,0x67,0x22,0x90,0xa1, +0x58,0x70,0x62,0x5a,0x80,0x76,0x18,0x17,0x30,0x65,0x1a,0x0b, +0x9a,0xa1,0x4c,0xa7,0x91,0xd2,0xa6,0xf6,0x82,0xed,0x53,0x24, +0xed,0x77,0xbd,0x25,0x2a,0xf2,0xbb,0xda,0x70,0xea,0xbc,0xcf, +0xb4,0x21,0xe9,0x1e,0xa6,0xf1,0xe2,0x46,0x1f,0x98,0x7e,0x55, +0xf3,0x05,0x69,0x07,0xb2,0x58,0xf8,0x5f,0x68,0xb0,0x93,0x78, +0x93,0x5c,0x81,0xf4,0x64,0xc0,0x39,0x80,0x7f,0xb5,0x2b,0xbb, +0xf0,0x8b,0x9a,0x34,0xf6,0x2c,0xa2,0x0d,0x34,0x8a,0x16,0x4f, +0x50,0x32,0x35,0x61,0x55,0x6c,0x28,0xf7,0x9f,0x7a,0xa8,0xe8, +0x03,0x72,0x9a,0x5d,0xbb,0xf5,0xcb,0x4a,0xd2,0xf8,0xeb,0x80, +0x9b,0xb4,0xe9,0x21,0xed,0xc0,0xad,0xd0,0x35,0x6d,0xfc,0xc1, +0x02,0xf5,0xbd,0x2b,0x27,0x9e,0x57,0x5c,0x9a,0x39,0x34,0x53, +0x73,0xfb,0x3c,0x94,0x0f,0x73,0xcf,0xb4,0xb7,0xa1,0x62,0x3b, +0x3f,0x06,0x01,0x46,0x77,0x07,0x93,0xc6,0x73,0xb4,0xd7,0x22, +0xe0,0x55,0xc8,0xf1,0xdf,0xfd,0xc4,0x66,0xc0,0x3f,0x18,0x43, +0xc0,0x46,0x45,0x9f,0x49,0x59,0xec,0xb6,0x65,0xf2,0x3e,0x77, +0x32,0x5f,0x6f,0xc2,0x6e,0xce,0x9c,0x1c,0x5a,0xa5,0x00,0x7a, +0x27,0x8e,0x8e,0xcb,0x6b,0x47,0xfa,0x93,0xfe,0x05,0xa2,0x6d, +0x18,0x2f,0x79,0xb1,0x9d,0x8b,0xe4,0x87,0x25,0x89,0x64,0xb9, +0xda,0x0d,0xa9,0x29,0xfd,0xe6,0x4c,0xb7,0x31,0x5f,0xba,0x90, +0x6d,0x94,0x23,0xdf,0xa0,0x33,0x92,0x65,0x2c,0x7f,0x55,0xcb, +0xc8,0x31,0x4b,0xd1,0xea,0x23,0x4f,0x5c,0x94,0x4f,0xf4,0x3c, +0xa1,0xe4,0x27,0x83,0x36,0x0d,0x4f,0xe6,0xd3,0xb7,0xac,0x48, +0x11,0x78,0x8b,0x24,0x80,0x9c,0x87,0x0d,0xec,0x41,0xcf,0xc3, +0x27,0x66,0xda,0xbf,0xc8,0x0b,0x4b,0x92,0xc1,0x91,0xd5,0x52, +0x4f,0x68,0x8b,0x34,0x88,0x3e,0x87,0x35,0xec,0x41,0x9e,0xb3, +0x4f,0x2c,0x30,0x1d,0x81,0x1e,0x64,0xc7,0x3f,0x94,0x4e,0xb1, +0xc2,0xd8,0x03,0xa5,0x56,0xd2,0x39,0xb8,0x27,0xcf,0x76,0x97, +0x1a,0x71,0x72,0x4b,0xf9,0x1c,0xb8,0x4a,0x9b,0x58,0x1c,0xff, +0x4d,0x92,0xa8,0x46,0xb8,0xdd,0x4e,0xb7,0xf5,0xcd,0x6d,0xda, +0xab,0xc6,0x92,0x2d,0xa5,0x49,0x1c,0x2b,0xbd,0x74,0x8b,0xa1, +0xf4,0x92,0x2d,0x4a,0xe9,0x95,0xff,0xbe,0xa9,0x5b,0x2f,0x04, +0xbe,0xd1,0x6f,0x6d,0x17,0x48,0x7a,0xfd,0xb4,0x34,0xe0,0x6d, +0x16,0xa9,0x60,0x2a,0xa6,0xf0,0xac,0x03,0xa9,0x60,0x3a,0x57, +0x4b,0x19,0xb4,0xb7,0x50,0x24,0x6f,0xf0,0x36,0x14,0xd3,0xf3, +0x52,0xa5,0x70,0x69,0x6f,0x0f,0xe2,0xe2,0x31,0x9d,0xf1,0x9b, +0x4a,0x1b,0x2c,0x8b,0x82,0xc9,0x71,0x8e,0x18,0x7b,0xdc,0xa1, +0x16,0x1d,0xfa,0x8d,0x1d,0x34,0x57,0x93,0x3d,0x16,0xb2,0x0e, +0x9c,0x4c,0xbf,0x6d,0xf3,0x38,0x73,0x92,0x87,0x76,0xb8,0x03, +0x3b,0xd6,0x67,0x48,0x9b,0xb6,0xf9,0xfd,0x89,0x71,0xc9,0xe5, +0x8c,0xfc,0x3d,0xda,0x4d,0x38,0x6a,0xf3,0xee,0x69,0x37,0x6d, +0xe8,0xd2,0xab,0x42,0xe0,0xe4,0x83,0x39,0xac,0xde,0xe4,0x9c, +0xdc,0xff,0x4a,0xf3,0xbd,0x07,0x0e,0x1d,0x34,0xd1,0x89,0x79, +0xf6,0xe1,0x53,0xcb,0x47,0x4f,0x36,0x62,0xc0,0xa1,0x8b,0xbf, +0x17,0x89,0xcd,0x0b,0x78,0xcf,0x61,0xb3,0xfc,0xe7,0x69,0x57, +0x93,0x3c,0x27,0x24,0x33,0xf4,0xce,0xa2,0xaa,0x80,0x7f,0x79, +0xa5,0x5f,0x47,0x4d,0x57,0xae,0xe3,0xe0,0x7e,0x9d,0x34,0x2a, +0xb9,0x25,0x49,0x8f,0x14,0x3e,0xfc,0x95,0x55,0x7e,0x58,0x3b, +0x20,0x13,0xfa,0xcf,0x19,0x33,0xdb,0xdf,0xa6,0xdd,0xc8,0xfc, +0x97,0xda,0x2a,0xee,0x65,0x76,0xfe,0xdb,0xfc,0x33,0xb3,0x86, +0xee,0xd4,0x14,0x1c,0x81,0x92,0x59,0xc1,0x17,0x9a,0xdb,0x50, +0x87,0x1e,0xf6,0xb4,0x37,0xed,0xfd,0xd4,0x9e,0x38,0x68,0x15, +0x5b,0x76,0xb5,0x7c,0xa4,0x0b,0x75,0xa2,0x79,0xab,0xf1,0xce, +0xbc,0x61,0x87,0x3c,0x6d,0xa8,0xe0,0x68,0x20,0xa8,0xb0,0x27, +0xc2,0xdd,0x9c,0x8c,0xfc,0x43,0x0c,0xe4,0xa9,0xf5,0x02,0xa1, +0xd3,0xe0,0x5b,0xaf,0x98,0xc8,0x57,0x57,0x6e,0xbd,0x14,0x9b, +0x11,0x9e,0xea,0x48,0x46,0xa4,0xf0,0xae,0x2c,0xab,0x58,0x74, +0xb0,0xe6,0x0b,0xab,0xb4,0x7b,0x25,0xee,0x04,0x47,0x5a,0xf4, +0xf8,0x4e,0x35,0xd4,0xb6,0xa3,0x1d,0xed,0x45,0x7b,0xbd,0xb2, +0x23,0xb6,0x1a,0x69,0xb6,0xc9,0xe3,0xcb,0xfd,0x3b,0x6a,0xa3, +0xe8,0x89,0xcd,0xdc,0xcb,0xbc,0x3b,0xcf,0x98,0xca,0x0f,0x09, +0x58,0x3e,0x92,0x06,0x92,0xba,0x45,0xb4,0xae,0xa8,0xaa,0x60, +0xa5,0x50,0x25,0x6d,0x17,0x35,0x73,0xf8,0xc3,0xdb,0x8f,0x26, +0x6a,0xd7,0x6c,0x4f,0x5d,0xbb,0xdd,0x86,0x98,0x3d,0x28,0xfd, +0x76,0x75,0xd1,0xb9,0xa9,0x19,0xda,0xc3,0xef,0x8b,0x5c,0xb8, +0xf1,0x4b,0xe7,0x4c,0xd2,0x2e,0xe7,0xb6,0xce,0xf9,0x7d,0xf3, +0x54,0x1b,0x6a,0xda,0x47,0x54,0xcd,0xe2,0x67,0x6e,0x5b,0x70, +0x68,0x99,0x26,0x8a,0x1b,0xbe,0x6c,0xd6,0x1c,0xd1,0x62,0x09, +0x4f,0x9c,0x1e,0x67,0xff,0xd0,0xb8,0xad,0x14,0x9b,0x5f,0xe0, +0x53,0xf7,0x64,0x6c,0xd3,0x12,0x37,0x7c,0xb4,0x7f,0xde,0x44, +0x2d,0xf5,0x25,0x97,0x44,0xed,0x7e,0x56,0x61,0x5f,0x32,0xf3, +0x92,0x9f,0x58,0x70,0xeb,0x50,0xfe,0x83,0xcc,0x31,0x1d,0x44, +0x93,0x04,0xbe,0x6f,0x89,0xad,0xcb,0xb8,0xa9,0xc1,0xf3,0x35, +0x06,0x23,0xab,0xf4,0xcd,0x89,0x85,0xce,0x42,0xd4,0x1e,0xe2, +0x27,0xe9,0x2d,0x84,0x47,0xd2,0x56,0xc3,0xda,0x53,0x6a,0x29, +0xf4,0xf4,0xbe,0x84,0xf7,0x8f,0x66,0x97,0x68,0xa5,0xd7,0x4e, +0xdc,0x49,0x62,0x2e,0x6a,0x2d,0x78,0xb9,0x81,0x22,0x30,0x10, +0xef,0x3f,0x24,0xae,0x34,0x15,0xde,0x21,0x9d,0x4a,0xee,0x90, +0x41,0x64,0x3c,0xb4,0x41,0xda,0x82,0x76,0x76,0xee,0x0a,0xab, +0xa5,0x19,0x8a,0x08,0x15,0x59,0x69,0x59,0xe4,0xaa,0xeb,0xe2, +0xa4,0x77,0xe0,0x46,0x1d,0x64,0x18,0xa1,0x9a,0x49,0x7a,0x5b, +0x92,0x9f,0x5c,0xc1,0xcd,0x43,0xa2,0xc3,0x59,0xbe,0xe0,0xfa, +0xa1,0xdb,0x0f,0x8f,0x8c,0xee,0xa8,0xa8,0x14,0x58,0x62,0xdf, +0x75,0xc4,0xc8,0x41,0xa1,0x9a,0xb5,0x58,0x3e,0xb7,0x5f,0xba, +0xaf,0x8d,0xd3,0xf4,0xf1,0x43,0x17,0x68,0x57,0x3f,0x71,0x92, +0xb7,0xb2,0x3c,0x79,0xf9,0x8b,0xf1,0xff,0x7a,0x89,0x5f,0x34, +0x1f,0xc8,0x61,0xd6,0x4a,0x38,0xdc,0xe4,0xa9,0xb6,0xbd,0xc1, +0x1b,0xd5,0x76,0x0c,0x89,0x8a,0x4d,0xba,0xf5,0xcf,0x25,0xc6, +0xda,0x32,0x16,0xb6,0x3a,0x17,0x9e,0x1a,0x6b,0xdc,0x39,0x6a, +0xdc,0x7f,0x68,0x37,0x43,0xe4,0xb1,0x26,0xe3,0x11,0x39,0xfe, +0x2b,0xf8,0x6c,0x88,0x50,0xf1,0x8d,0xf4,0x26,0xbd,0x1d,0xbf, +0x51,0xe1,0x57,0x14,0x3e,0x51,0x82,0x50,0x1e,0xfd,0x7f,0x04, +0xa1,0x12,0x47,0x0a,0xb3,0x6e,0xbc,0x68,0xdd,0x83,0x97,0x8f, +0x29,0xfa,0x7d,0xe1,0x2e,0xe4,0x1c,0x7f,0xa6,0xc9,0x7a,0x34, +0x0b,0x7b,0x8e,0x19,0x33,0x32,0x54,0xbb,0xea,0x8d,0x41,0x33, +0xb9,0x27,0x59,0xc1,0xb0,0xab,0x5e,0x49,0xde,0xc7,0x87,0xe3, +0x2f,0x50,0x6e,0xbb,0x76,0x52,0x3c,0x04,0x24,0x4f,0xdf,0x91, +0xa3,0xbe,0x70,0xe4,0x50,0x41,0xc1,0x99,0x59,0xbf,0xef,0xd1, +0xe4,0x66,0xc3,0xa5,0xf1,0x43,0x0f,0xf5,0xb4,0xb1,0x77,0x1e, +0xde,0xa2,0x6d,0xf1,0xa4,0x37,0x11,0xda,0x53,0x2b,0xa1,0x30, +0x6a,0xf7,0xec,0x49,0xea,0xa1,0x93,0x66,0xf9,0xfa,0x8f,0x3a, +0x90,0x33,0x49,0x33,0x70,0x0c,0x04,0x65,0xe5,0x4d,0x7a,0x6b, +0xa3,0x92,0x2f,0x91,0x4b,0x96,0x45,0xf6,0x52,0x7d,0x02,0x45, +0x14,0x48,0x33,0xcf,0xb6,0xdc,0xf4,0xe8,0xc8,0xe9,0x9a,0x51, +0xde,0x4f,0xa9,0x1e,0x87,0x1f,0x9c,0xc1,0xcc,0x4d,0x5f,0x4a, +0x2d,0x2d,0x15,0x7f,0x52,0x1d,0xfa,0x06,0xcd,0x0a,0x70,0x9e, +0x7c,0xfe,0xb5,0x86,0x14,0x39,0xd1,0x27,0x1c,0xb5,0x28,0xf0, +0xfc,0xf1,0xec,0x58,0xd6,0x85,0xdd,0x9a,0x8d,0x4c,0xc3,0x2e, +0xe4,0x9c,0x25,0xf1,0x97,0xb6,0xb2,0xe1,0xa7,0x23,0x4d,0x1c, +0x44,0xbd,0x18,0xbe,0x0d,0x22,0x5e,0x9d,0x49,0x22,0x30,0x03, +0xf4,0x95,0xb7,0x32,0x70,0xd0,0x90,0x3e,0x96,0xef,0xb0,0x84, +0xac,0x3f,0x4b,0x3a,0x33,0x0c,0x3b,0x47,0x3b,0x97,0xd0,0xf5, +0xf0,0x01,0x49,0x53,0xc6,0xe7,0x86,0x83,0xe8,0x82,0xa1,0x34, +0x04,0xd6,0x62,0x00,0x09,0xf1,0x23,0x0b,0xc0,0x0b,0xfd,0xe9, +0x82,0x40,0xc3,0xca,0x60,0x12,0x32,0x98,0xad,0xf4,0x61,0x07, +0x35,0x23,0x75,0x2c,0x89,0x03,0x19,0x0b,0x71,0x48,0xd4,0x6c, +0xea,0xa9,0x56,0xd0,0x6e,0x27,0xf1,0x27,0x71,0xd0,0x85,0xcd, +0x56,0x74,0xb0,0x82,0x7f,0x4d,0xc8,0x60,0x68,0xaf,0x80,0x64, +0x22,0x1d,0x44,0xd9,0xd1,0x72,0x5b,0x72,0x88,0xf4,0x16,0x44, +0xcd,0x67,0xfe,0xfe,0xce,0x9d,0x79,0x7b,0xb5,0x24,0x4c,0xd7, +0x10,0x9c,0x99,0xb8,0x20,0xc9,0xd3,0xb2,0x88,0xde,0xe4,0x44, +0xd5,0x57,0xde,0x8f,0xe1,0xde,0x4d,0x72,0xcc,0x00,0x85,0x24, +0x8e,0x13,0x6d,0x9f,0xf1,0xd3,0x47,0x8b,0x76,0xcf,0xf8,0xd1, +0xfb,0xa7,0xe7,0xb2,0x1c,0x7c,0x4e,0x06,0xb1,0xbd,0x9f,0x96, +0xbe,0x06,0x84,0xbc,0x59,0x8b,0x86,0x34,0x8e,0x0b,0xcc,0x1c, +0x72,0x35,0x4a,0x13,0xc6,0x0d,0x8a,0x9a,0x3c,0x24,0x50,0x4d, +0xe3,0xda,0x05,0x3e,0xe1,0x72,0xf7,0x1f,0xcd,0x12,0xed,0xfe, +0xe6,0xb3,0xe6,0x1d,0x1d,0xaa,0x51,0x89,0xcd,0x06,0xf2,0x0b, +0x67,0x85,0x2e,0x9f,0x69,0x33,0x71,0xfa,0xb6,0x9d,0x53,0xb5, +0x7b,0x46,0xcf,0x4c,0x19,0x69,0xd3,0x7f,0xe6,0xa2,0x99,0xf3, +0xb4,0x87,0xc7,0xc1,0x9e,0x43,0x3b,0x13,0x0f,0xdb,0x9c,0x3a, +0xba,0x2c,0xf4,0xb8,0x76,0x61,0xd6,0xe1,0xf0,0x0b,0xcc,0x3b, +0x22,0xb9,0x4e,0x51,0xf8,0xc2,0x3d,0xd9,0x7c,0xfd,0xdc,0xc1, +0xc2,0x01,0x99,0x56,0x0b,0x86,0x4e,0x99,0x23,0xda,0xef,0xe0, +0x87,0x65,0xf5,0xdc,0x6c,0xfa,0xc5,0xdb,0x9e,0xa3,0xf5,0x97, +0xfa,0xb6,0xa2,0xac,0x1b,0x6f,0x5d,0xd0,0x82,0x98,0x2f,0xd5, +0xd8,0x73,0x0e,0x52,0x37,0xe1,0xfe,0xd1,0x1b,0x85,0xdb,0x44, +0x87,0x22,0x9e,0xe6,0x4b,0xbb,0x2d,0xcb,0x65,0xa3,0x4d,0xdc, +0xc9,0xfd,0x47,0xf3,0xcb,0xd5,0x5b,0x63,0x53,0xd6,0x6e,0xd5, +0x90,0x91,0x45,0x74,0x16,0x46,0x9c,0x59,0x76,0x2a,0x47,0xfd, +0x2e,0x37,0xfb,0x59,0xe9,0xf9,0x99,0x43,0x8f,0x2a,0x65,0xaf, +0x64,0x6c,0xdf,0xd3,0x06,0xac,0xeb,0x46,0x1b,0x0e,0x4a,0x9d, +0xb0,0x6d,0xac,0xd6,0xcb,0xfb,0x05,0xc6,0x2d,0x5b,0xbf,0x74, +0xa9,0x7a,0x50,0xd8,0xc0,0x41,0x0b,0x34,0x2d,0x19,0xa4,0x67, +0x91,0x1b,0xa4,0x9e,0x70,0xf5,0xfc,0xb6,0xf4,0x63,0xda,0xcf, +0x0e,0xd9,0x59,0x76,0xdf,0x61,0xd7,0xf1,0xe4,0x73,0x97,0xd4, +0x97,0xa2,0xce,0x85,0x1c,0xd7,0x7c,0xff,0x3e,0x2a,0xcb,0xc1, +0x01,0xd2,0xa7,0x8d,0xd9,0x36,0xc8,0x66,0xd0,0x98,0x65,0xb3, +0xa7,0x69,0x1d,0x3e,0x8f,0x1a,0xfd,0xdd,0x0e,0x42,0xa6,0x46, +0x8d,0x1d,0xa6,0x1e,0x96,0x3c,0x76,0xd7,0x54,0x8d,0x9d,0x5d, +0xf6,0xe8,0xcf,0x9f,0x61,0xf6,0xb1,0xf3,0xcb,0xae,0xda,0x14, +0x98,0xb8,0x0c,0x3b,0x53,0xa5,0xcd,0xe7,0xaa,0x2e,0x9d,0xb9, +0x7f,0xff,0xd2,0xf8,0xae,0x9a,0x00,0xae,0xeb,0xb0,0xf1,0x2e, +0x2c,0xf8,0x2e,0x4b,0xdb,0x89,0x83,0x50,0x40,0xbd,0xde,0x12, +0xaf,0x02,0x2a,0x72,0xac,0xa4,0xde,0x03,0x36,0xf4,0xbb,0xd0, +0x42,0xa5,0x13,0xf2,0x24,0x85,0x8a,0x93,0xfb,0xd3,0x7b,0x40, +0x45,0x3f,0xe2,0xd5,0x96,0x7a,0xb1,0xbf,0xd4,0xe1,0x31,0x71, +0x60,0xc9,0x6c,0x29,0x59,0x45,0x09,0x8c,0xa3,0x25,0xeb,0xb1, +0xe7,0xb3,0x02,0xca,0x9e,0xb4,0x3f,0xfb,0x61,0x23,0x29,0x9d, +0x4f,0xe7,0x13,0xf6,0x24,0xfd,0xb5,0x37,0x4d,0x68,0x27,0x5a, +0x87,0x70,0xa4,0xa3,0xf6,0x26,0xfb,0x43,0x94,0xd7,0x4e,0xec, +0xa7,0x0e,0xe5,0x68,0x47,0x4d,0x7f,0xf6,0x87,0x2a,0xaf,0x9d, +0x34,0x09,0xdf,0x85,0xe2,0x73,0xc7,0x73,0xf6,0x68,0x87,0x1c, +0x81,0x69,0x8b,0x17,0x2d,0x18,0x6f,0x13,0x3c,0xfb,0xe4,0x0d, +0xed,0x1d,0xee,0x46,0xfa,0xc9,0x1b,0x99,0xbb,0x43,0xa6,0x6f, +0xd3,0x5c,0xcb,0x80,0x4b,0x0b,0x27,0x1c,0xf5,0xb5,0x69,0x16, +0xe4,0x46,0xeb,0xd1,0x7a,0x79,0x6e,0x5f,0xb5,0x2a,0xd9,0x83, +0x2c,0x27,0x39,0xc2,0x8f,0x97,0xcf,0x59,0xab,0x6b,0xd6,0xe9, +0xb9,0x2d,0x35,0xee,0xd2,0x85,0x75,0x9c,0x66,0xcf,0xbb,0x30, +0x4c,0x39,0x69,0xd2,0x29,0xa0,0xfc,0x91,0x76,0x37,0xf7,0x28, +0xbf,0xfc,0xe5,0xcb,0x7c,0x37,0x27,0xcd,0x22,0xce,0x29,0xc0, +0xad,0x93,0x66,0x3a,0xd1,0x08,0x47,0xf1,0xac,0x13,0x9c,0xc3, +0x91,0x4f,0x61,0x4f,0x62,0x6a,0x5a,0x86,0xfa,0xf8,0x82,0x3f, +0x27,0x69,0x3a,0xd3,0x29,0x27,0xd9,0xa0,0x64,0x92,0x9f,0xcd, +0x6d,0x4b,0x58,0x11,0xae,0x5d,0xc4,0x85,0xc7,0xac,0x58,0xc6, +0x82,0xd3,0x9f,0x44,0x48,0x75,0x84,0x37,0xa5,0xa5,0x1f,0x3e, +0x78,0x94,0xb6,0x6b,0xe7,0xe1,0xd1,0xaa,0x55,0xa9,0xc7,0x1b, +0x6d,0xbe,0x49,0xff,0x29,0xd9,0x37,0x6f,0x9e,0x50,0x7e,0x47, +0xf5,0xef,0x3f,0x65,0x54,0x7f,0xad,0x61,0x0a,0x27,0xed,0xd8, +0x18,0x9e,0xc4,0xd3,0x51,0x1c,0xd9,0x4b,0xdb,0xfd,0x3b,0x28, +0x6d,0x26,0xb1,0xb4,0xb5,0x50,0xaa,0x4b,0x23,0x75,0xf5,0x69, +0xec,0x51,0x50,0x48,0xef,0x23,0x35,0xea,0xde,0x89,0x1a,0x51, +0xa3,0xbf,0x3b,0x11,0x23,0x76,0xa1,0xfb,0x6c,0x42,0x5b,0xa1, +0xcc,0x3f,0xac,0xfa,0x8f,0x7b,0x2d,0x88,0x4d,0x67,0xf1,0xa4, +0x2b,0xe9,0x09,0x2a,0xd1,0xe1,0x1a,0x4f,0xc2,0xe9,0x5c,0x21, +0x6b,0xdb,0xae,0xfd,0xec,0x4e,0xfb,0x97,0xed,0x1a,0x3d,0x7a, +0x59,0xc8,0x3c,0x76,0xa7,0x79,0xdb,0x42,0xb2,0x34,0x92,0x95, +0xc9,0xff,0xcb,0x8e,0x4a,0x6e,0xa3,0xaa,0x56,0xc9,0x45,0xac, +0x68,0xa8,0xf4,0x8b,0x99,0x7e,0x2a,0xfd,0x51,0x95,0xfe,0xa5, +0x4a,0x6c,0x1e,0xcf,0xd3,0x62,0xe9,0x02,0xd9,0x29,0xdc,0x93, +0xb7,0xba,0x32,0x05,0x1b,0xe9,0x96,0x29,0x1f,0xf4,0xc3,0x0d, +0x1f,0x8e,0x91,0xbd,0x82,0x6e,0x78,0x81,0x7e,0x38,0xab,0x15, +0xe6,0xc4,0x4a,0x8a,0x10,0x44,0x73,0x5f,0x5e,0x79,0xb7,0xd3, +0x2d,0xaf,0xfd,0x5e,0xc1,0xf3,0xbf,0x96,0xc9,0x58,0x4b,0xc3, +0xae,0xec,0xf5,0xef,0x2e,0x19,0x63,0x39,0x7e,0xc9,0x82,0xe9, +0xda,0x70,0x6e,0xde,0x96,0xd0,0xfd,0x2b,0x34,0x51,0xa3,0x17, +0xcc,0x98,0x34,0xde,0xb4,0x00,0xaf,0x5d,0x38,0x52,0x7a,0x45, +0x9d,0xc2,0x1d,0x5d,0xb2,0x77,0x3c,0x8b,0xc3,0x1f,0x24,0x9f, +0x21,0xb5,0xce,0x96,0x0c,0xca,0xa7,0x83,0xc8,0x42,0x6f,0xba, +0x90,0x0e,0x0a,0x20,0x83,0xf4,0xb6,0xdc,0xbf,0x7b,0x64,0xa1, +0x61,0x4f,0x32,0xfa,0x1f,0x24,0xb2,0x91,0xe1,0x41,0x17,0x72, +0x2a,0xb1,0xe9,0x0a,0x5e,0xb4,0x7f,0xc7,0x53,0x4a,0x9a,0xc6, +0x08,0x27,0x24,0xc2,0x4f,0x99,0x12,0x1a,0x32,0x4b,0x13,0xc1, +0xcd,0xda,0x19,0x72,0x42,0x43,0xf6,0x5b,0x1a,0xd6,0x26,0x8b, +0x26,0x0f,0xf8,0x4c,0x8d,0xaa,0xb9,0xf2,0x15,0x08,0x9b,0x7c, +0xd9,0xd4,0xae,0xcc,0xb9,0x64,0xa7,0xe5,0x99,0x1d,0x7b,0x8e, +0x6a,0xb7,0x32,0x9d,0xf6,0x8c,0x1f,0xbf,0x64,0xe1,0x74,0xc6, +0x38,0x7d,0xc7,0xc2,0x33,0x1a,0xe5,0xfb,0x1e,0x4b,0x49,0x25, +0x88,0xcd,0x16,0xb2,0xbb,0x85,0xfd,0xd7,0x3b,0xd9,0x68,0x79, +0x95,0x94,0x82,0x3b,0x83,0xd5,0x52,0x50,0x55,0x93,0xde,0x73, +0x04,0x52,0x45,0x9e,0x91,0x2a,0xfa,0x6c,0xff,0x01,0xfa,0x8c, +0x28,0x3f,0x7f,0xcf,0x65,0x6f,0xf4,0x6f,0xaa,0xbc,0xcd,0x25, +0x86,0x37,0xfa,0x0c,0x48,0x8d,0x54,0x28,0xec,0x4b,0x4b,0xdb, +0xb7,0x77,0x71,0xda,0xfc,0xf9,0xa1,0x8b,0x17,0xcc,0xdf,0x29, +0x6a,0x83,0x79,0x29,0xcf,0x72,0xdf,0x4e,0xb6,0x18,0xca,0x16, +0x17,0xb3,0xc5,0x34,0x65,0x51,0x75,0x5e,0x67,0x66,0xf9,0x12, +0xf3,0x48,0x24,0x10,0x75,0x01,0x35,0xc3,0xbd,0x6f,0xe0,0x75, +0x81,0x2b,0xde,0x24,0x11,0xd0,0x13,0x07,0xd3,0x68,0xa0,0xde, +0xd8,0x9f,0x44,0xb3,0x6e,0xb4,0x9f,0xf2,0xc1,0x1d,0x87,0xb2, +0x0f,0xbd,0xf0,0x2a,0x8d,0x00,0x37,0xbf,0x97,0xb8,0xbb,0x1d, +0x50,0xf0,0x23,0x02,0x5b,0x88,0x84,0x97,0x78,0x9b,0x2c,0x07, +0x32,0x08,0xe9,0x79,0xda,0x54,0x58,0x8b,0x03,0x48,0x4a,0xcc, +0x09,0x20,0xf6,0xb8,0x7c,0x0a,0x30,0xed,0xb6,0x0a,0xfe,0x64, +0xeb,0x72,0xb6,0xd0,0x82,0x2d,0xf4,0x67,0xb0,0x4e,0xf7,0x90, +0x58,0x56,0xaf,0xcf,0xf1,0xb4,0x0b,0x4b,0xf8,0x23,0xe4,0x25, +0xab,0x91,0x8d,0x4b,0x0a,0x5e,0x9e,0xd1,0xfa,0x9f,0x01,0xd7, +0x39,0x41,0xc3,0xbb,0xda,0xd8,0xfb,0x15,0x7e,0x5d,0xaa,0x25, +0x49,0x05,0x34,0xe5,0x2d,0x49,0x29,0xa0,0x49,0xf8,0x35,0xb5, +0xb0,0xf0,0x9b,0xcd,0xd3,0x9b,0x6c,0x44,0xd5,0xde,0x39,0x09, +0x6f,0xc7,0xb9,0x5c,0x53,0x46,0x54,0xaf,0x66,0xb4,0x31,0x0d, +0xa7,0xe1,0x5f,0x69,0x63,0xe2,0xa5,0x55,0x65,0x91,0xde,0x92, +0xb3,0xf0,0x30,0x2f,0xaf,0xb2,0x22,0xe8,0x96,0xb3,0x73,0x50, +0x3f,0xc7,0xde,0x79,0x41,0x0f,0xb5,0x52,0x9c,0xec,0x27,0xe2, +0x56,0x5e,0x8e,0x93,0x96,0x88,0x76,0x7b,0xf8,0xa5,0xff,0x77, +0x32,0x92,0x2c,0x3b,0x33,0x27,0x78,0xf3,0x34,0x99,0x2e,0x52, +0xe8,0xd8,0x54,0xef,0x26,0xf5,0x14,0x48,0xc4,0xf3,0x73,0x74, +0xc9,0xd8,0x17,0x34,0x82,0x23,0xcb,0x2d,0x49,0x23,0x6e,0xed, +0x63,0xd8,0x88,0x8f,0x69,0xc7,0x4a,0xd2,0x91,0xbd,0xc4,0xf6, +0x02,0xda,0xe8,0x3c,0xc9,0xe8,0xcf,0xf9,0x52,0x6b,0x56,0xc6, +0x7c,0x88,0x35,0x04,0xd2,0x0c,0x54,0x89,0x76,0x91,0xbc,0x14, +0x5d,0x28,0x47,0x8b,0xcd,0x37,0xf0,0xdd,0xa5,0x0e,0xba,0x91, +0x4c,0xfa,0x63,0x5e,0x8e,0x2e,0x94,0xa2,0xb9,0x95,0xef,0xe2, +0xd6,0x9f,0x1e,0xf1,0x77,0xb7,0xec,0x0b,0xa0,0xea,0xae,0x8b, +0x27,0x9f,0xd9,0x5e,0x25,0xdb,0xf3,0x95,0xa2,0xf1,0x5d,0xfc, +0xfa,0x35,0x23,0x26,0x74,0xeb,0x7e,0x61,0x14,0x4b,0x4f,0xbb, +0x28,0x26,0xc4,0x57,0x11,0xb2,0x91,0x57,0x24,0x92,0x83,0xff, +0xb1,0x4f,0x26,0x91,0x49,0x0a,0x1f,0x3d,0xa8,0x9c,0xa1,0xd0, +0x92,0x53,0xff,0x21,0x9a,0x1a,0xb6,0x1f,0xf3,0xf4,0x94,0xc2, +0xdd,0x9d,0xb8,0x48,0x3f,0x05,0x7a,0xbe,0x90,0xa8,0xb8,0x95, +0x77,0xe2,0xd6,0xe7,0x7b,0x92,0xcf,0xf4,0x73,0x76,0x36,0xfd, +0x4c,0x3e,0x7b,0xe6,0xaf,0x8f,0xbb,0xb3,0x12,0x88,0xaa,0x10, +0x99,0x3a,0x1a,0x03,0x9d,0x2f,0x51,0xe1,0x1d,0x76,0x94,0x67, +0x00,0x55,0xe8,0x46,0x11,0x46,0x97,0x5f,0x12,0x17,0xbb,0xd2, +0x1f,0xa8,0xaa,0x90,0x53,0xe8,0x3e,0x09,0xe4,0xbc,0x2f,0x55, +0x71,0xf1,0xfe,0x6b,0x62,0x03,0x4a,0x14,0x41,0xa3,0x46,0x29, +0x42,0x4b,0x02,0x62,0xd7,0xf8,0xc7,0x33,0x32,0x5f,0x26,0x8e, +0xb8,0x28,0x64,0x85,0x54,0x85,0xfe,0x2b,0x63,0xe3,0x4a,0xf2, +0x15,0x39,0xa3,0xb2,0x15,0x99,0x01,0x9e,0x6b,0xd6,0xc7,0xdf, +0x61,0xa7,0x32,0x14,0x53,0x70,0x48,0xc1,0xb8,0x69,0x25,0x82, +0x68,0x53,0xcc,0x0f,0x69,0x09,0x86,0x6f,0x89,0x2c,0x0b,0xe5, +0x5e,0xbe,0x9c,0xd4,0x4b,0xaa,0x62,0x03,0x8b,0x07,0x4f,0xde, +0x91,0xb6,0xca,0xc6,0x0b,0x62,0xae,0x7c,0x37,0x34,0x08,0x9e, +0x2b,0xdf,0x0d,0x0d,0x04,0x27,0x8e,0xbc,0xa3,0x6d,0x61,0x05, +0x47,0x95,0x07,0x1d,0x6b,0x22,0xf5,0x62,0x8c,0xcc,0x07,0xda, +0xcd,0xbc,0xd8,0xa4,0x11,0x2f,0x5a,0x3f,0xe0,0xe3,0x75,0x87, +0xf3,0x05,0x7a,0x82,0x18,0x7e,0x86,0xe7,0xd0,0x13,0xca,0x0f, +0x7b,0x1b,0x4e,0x4e,0xd4,0xbe,0xe7,0x0c,0xaf,0xdd,0xa3,0x27, +0x98,0xdd,0x9b,0x8d,0x61,0x89,0xff,0x96,0xaf,0xd6,0x05,0x91, +0x7c,0x36,0x77,0xcb,0x43,0xe0,0x21,0x52,0x3f,0x69,0x08,0x61, +0xbf,0x4a,0x0f,0x52,0x4d,0xae,0xb0,0x0d,0x5a,0xfb,0x49,0xd9, +0xa7,0xb5,0x34,0xaa,0x6a,0xdd,0x6a,0xaa,0x11,0xed,0x8a,0x79, +0xf2,0x54,0x1e,0xa2,0x3c,0x55,0xd5,0x27,0x58,0x03,0x72,0x05, +0x15,0x4e,0x03,0xfd,0x60,0x03,0x3d,0xcc,0x93,0x87,0x08,0x97, +0xff,0x7b,0x75,0x08,0x12,0x5f,0xb6,0xca,0xf8,0x57,0x15,0x31, +0x30,0xe7,0x08,0x7f,0x9b,0x0e,0x52,0xce,0x89,0x95,0x2e,0x08, +0x1e,0x7a,0x8e,0xf2,0x81,0x44,0xf9,0xac,0xeb,0x94,0x2e,0x90, +0x8e,0xd2,0x33,0x36,0x92,0xdb,0xd2,0x74,0xcc,0xd0,0x0f,0x12, +0x74,0xbd,0xc8,0x8c,0xee,0x54,0x25,0x3f,0xe3,0x54,0xd5,0x57, +0xd8,0x59,0x24,0x5d,0x37,0x87,0x76,0x94,0x9f,0x31,0x93,0x67, +0x50,0x10,0xfe,0x26,0x2a,0xe9,0xd9,0x4b,0x7d,0x2f,0xb6,0xfb, +0x73,0x0e,0xdb,0x76,0x78,0xe5,0x4c,0xda,0x12,0x3f,0xf5,0x25, +0x8e,0x78,0x3f,0x24,0xed,0x3f,0xbf,0xd6,0xd0,0xcc,0x1a,0x4b, +0x26,0x3a,0x45,0xe1,0xcd,0xfc,0x69,0x49,0x33,0xf1,0x73,0x87, +0x87,0xb4,0x3d,0xf5,0x56,0x0f,0xe3,0xa8,0x9f,0x33,0x6d,0xeb, +0xd0,0x51,0xc3,0x98,0xeb,0xb2,0x7d,0x66,0x05,0x36,0xea,0x82, +0x74,0x85,0x29,0xc8,0x9e,0xce,0xc8,0x0a,0x6d,0x37,0x90,0xcb, +0x99,0xf0,0xd3,0x86,0x6d,0x56,0x8b,0xbb,0x81,0x54,0xce,0x51, +0xe5,0xc9,0x4c,0xc3,0x53,0x17,0x90,0xaf,0x70,0x2a,0x62,0x27, +0x5d,0x16,0x02,0xa4,0xb4,0x58,0x8e,0xda,0x2d,0xa5,0xaa,0x3f, +0x9a,0x69,0x4a,0x23,0xe1,0x00,0x31,0xda,0x4e,0x9a,0x10,0x3b, +0x75,0x3e,0x23,0xf8,0x46,0x8c,0x85,0x12,0x69,0x38,0xcd,0xee, +0x4b,0x16,0x20,0x79,0x22,0x5b,0x1a,0x3e,0x9d,0xe9,0x4b,0xe6, +0xa0,0x4a,0xf2,0x23,0xed,0x85,0xcb,0xe3,0x6f,0x57,0x9e,0xbe, +0xb1,0xff,0x92,0x75,0x7c,0x42,0x7c,0x6c,0x7c,0x0c,0xd1,0xd2, +0x00,0xab,0x4b,0x59,0xd4,0x8e,0xf8,0x44,0xa5,0x44,0x8a,0xcd, +0xba,0xf3,0xbe,0x33,0x39,0x6a,0x13,0x12,0x4c,0x9b,0x51,0x3f, +0x4d,0x9f,0xdf,0x85,0x62,0xc9,0x97,0x5e,0x0c,0x22,0x21,0xa8, +0x22,0x61,0xc4,0x43,0x90,0x9a,0xb8,0xca,0xc3,0xa5,0x17,0x77, +0x38,0x95,0xae,0x33,0x79,0x2a,0x44,0xa4,0x86,0xaf,0x0d,0x8f, +0x8c,0x8c,0xb6,0x5a,0x15,0xb7,0x37,0x27,0x31,0x77,0x7d,0x91, +0x35,0x69,0x71,0x5b,0xae,0x13,0x48,0xda,0xe1,0x5a,0xda,0x70, +0xe6,0x20,0xaa,0xa5,0x8e,0x59,0x23,0xad,0x0a,0x1e,0x9f,0xbf, +0x9c,0x7e,0x25,0x3e,0x31,0x71,0x6d,0xfc,0x0a,0xd2,0x96,0x06, +0x5a,0x65,0x5d,0x00,0xb9,0x67,0xa5,0xb0,0x60,0xa2,0x67,0x48, +0x5f,0x9b,0x30,0x22,0x79,0xcb,0x9c,0x68,0xb1,0x99,0x7f,0x5c, +0xb1,0xe7,0x40,0x8e,0x56,0xa5,0x1b,0x23,0xdd,0x13,0xe8,0xa4, +0xc1,0x64,0x12,0xca,0x91,0xf4,0x95,0x10,0x45,0xf4,0x5e,0xb2, +0x19,0x4e,0xdf,0xbe,0xe4,0xb0,0x66,0x3b,0x3e,0x29,0xdf,0xb5, +0xfb,0x9c,0x36,0xec,0x06,0x84,0x4e,0xf5,0x5d,0xe2,0x6b,0x23, +0xbd,0x21,0x6e,0x42,0xae,0xec,0x34,0x94,0x98,0xac,0xe0,0xc6, +0x2d,0x0c,0x9d,0x38,0x5c,0xed,0x78,0x33,0xf0,0xcb,0xe7,0x9b, +0xb7,0x2b,0x72,0x42,0x4f,0x8e,0xdf,0xab,0xd9,0xcc,0x75,0xa4, +0xd3,0x85,0x30,0x1c,0x3c,0xe9,0x64,0xfe,0x9d,0x93,0x27,0xaf, +0x68,0x53,0xf1,0x4a,0xe6,0x24,0xff,0x80,0xc9,0x93,0x06,0x6b, +0x55,0x64,0x19,0xf1,0x12,0x48,0xb1,0xb4,0xf1,0x8e,0xfc,0x48, +0x1e,0x2c,0x3d,0x67,0x17,0x23,0x13,0xd8,0x3d,0xc3,0x48,0x19, +0x99,0x9f,0x4f,0x73,0xe4,0xc1,0x55,0xf8,0xf9,0x5e,0x52,0x4a, +0xb6,0x76,0x79,0x1e,0x44,0x8e,0xf0,0x8c,0xee,0x64,0x43,0x3e, +0x6d,0x14,0x48,0x11,0x59,0x90,0x4f,0x2f,0xc9,0x03,0x48,0x9e, +0x62,0xf5,0x2e,0xc4,0x48,0x90,0x3e,0xe5,0xcb,0xfb,0x88,0xb5, +0xb4,0x86,0x24,0xc9,0x0f,0x02,0xa4,0x0d,0xd4,0x4a,0x5e,0xc3, +0x8c,0xb6,0x90,0xf4,0x11,0x16,0x93,0x66,0x64,0x1e,0x89,0xa3, +0xa7,0x07,0x92,0x05,0xd4,0x8e,0xce,0xa3,0xa3,0x71,0xfa,0x8e, +0x25,0x19,0x1a,0xd6,0xcf,0xd4,0x79,0x9d,0xb0,0xe3,0xae,0x36, +0xfa,0x1a,0x2c,0xf1,0x6f,0xbb,0xc2,0xde,0x86,0xc4,0x49,0x4d, +0x19,0xd8,0x4f,0x92,0xad,0x4b,0xa4,0x91,0x2c,0xa1,0x6d,0x06, +0xf3,0x24,0x45,0xd2,0x08,0xf2,0x60,0x92,0x21,0x0d,0xe6,0x02, +0xe4,0xa6,0x02,0x6d,0x47,0x5e,0x30,0xf3,0xaa,0x74,0x7d,0xa5, +0x9b,0x02,0x1b,0xbe,0xbb,0x90,0xde,0x81,0xf2,0x08,0x72,0x42, +0x1a,0xc1,0xc9,0x27,0x65,0x7b,0x66,0xac,0xe6,0x64,0x0a,0xd9, +0x48,0x33,0x06,0x92,0x19,0xec,0xb0,0xa9,0x74,0x1c,0x55,0xf1, +0x07,0xf1,0xe5,0xdd,0x84,0xd4,0x6b,0xca,0x41,0xcb,0x86,0x7b, +0xc7,0x74,0xb5,0x91,0x16,0x58,0x32,0x4e,0x5f,0xc2,0xea,0x87, +0xae,0x3f,0x61,0x26,0xde,0x16,0xb1,0x3e,0x3c,0x22,0x66,0xa5, +0xd5,0x9a,0x0d,0x90,0x76,0x25,0xe1,0xea,0x7d,0xf5,0x29,0xbf, +0x29,0x1c,0x15,0x43,0x02,0xd8,0x64,0x11,0xa8,0xb9,0x3c,0xe1, +0x76,0xd5,0xb1,0xcb,0xfb,0x72,0xad,0x37,0x25,0x6c,0x5e,0xb7, +0x69,0x05,0xb1,0xa2,0xfd,0xad,0x2e,0x9d,0x05,0xf9,0x9f,0x54, +0x21,0x9c,0x5d,0x2e,0x82,0x6c,0xa0,0xd7,0x06,0x92,0xe5,0xcc, +0xdd,0x11,0x74,0x2c,0xce,0x50,0x1c,0x75,0x18,0x9f,0x57,0x6e, +0xde,0x71,0x47,0x39,0x32,0x6c,0x90,0x6b,0x4c,0x1b,0x1b,0x95, +0xd4,0x87,0x0c,0x14,0x96,0x0d,0xf3,0x8a,0xe9,0x6c,0xa3,0x28, +0x39,0x93,0x29,0x79,0x7c,0x20,0x99,0x43,0xed,0xe9,0xef,0x8c, +0x69,0xe6,0x8e,0xd0,0xc3,0x9a,0x74,0x7c,0x59,0x96,0x90,0x7a, +0x55,0x4b,0xde,0x1c,0x16,0x68,0x04,0xb1,0x27,0x53,0xaf,0xb2, +0x19,0xd9,0x8e,0xcc,0xbf,0x46,0x4f,0xb2,0x4b,0x5e,0x62,0xda, +0xee,0x91,0x6e,0xe8,0xaf,0xf0,0x72,0x01,0x7d,0x29,0x44,0xb2, +0x71,0x68,0x16,0xb3,0x6b,0xe6,0x40,0x32,0x8f,0x5d,0x75,0xb6, +0x72,0x74,0xad,0x94,0x57,0xe5,0x89,0x4c,0x8a,0x72,0xf4,0x30, +0x97,0x98,0xee,0x36,0xd2,0xda,0x4d,0xc2,0x5e,0x92,0x10,0x18, +0xbf,0x84,0xa6,0x80,0x3f,0x2e,0x21,0x29,0x81,0x2b,0xf7,0xd2, +0x04,0x70,0x1b,0x48,0x2a,0xaf,0x31,0x99,0xf3,0xa5,0xbb,0x2c, +0xde,0x86,0x28,0xf1,0xb6,0x9f,0xbe,0x65,0x72,0x6d,0x99,0x09, +0xd7,0xd5,0x9a,0xb0,0x29,0x33,0xe1,0x28,0x66,0xc2,0x43,0x58, +0x5d,0x9a,0x90,0x9a,0x67,0x30,0xe1,0x10,0xd7,0x98,0x4e,0x36, +0xba,0x3a,0x24,0x48,0xb8,0x24,0xdb,0x0c,0xfb,0xb8,0x82,0x1b, +0xbf,0x68,0x31,0x8b,0xbb,0x3e,0x37,0x02,0x3e,0x7c,0xb8,0x91, +0xff,0xe0,0x62,0xe8,0xa9,0xf1,0x7b,0x58,0xdc,0x75,0xa1,0x53, +0x85,0x08,0x1c,0x3a,0x39,0x33,0xff,0x4e,0xe6,0x89,0x5c,0xed, +0x56,0xcc,0x3d,0x31,0xc5,0x3f,0x60,0xca,0xe4,0xa1,0x2c,0xee, +0xda,0x90,0x3a,0x82,0xf4,0x5c,0x1a,0x2a,0x3f,0xc7,0x7b,0x2c, +0x4b,0x49,0xb9,0x14,0x48,0x19,0x00,0x90,0xb6,0xdf,0x44,0xad, +0x23,0xaf,0x22,0xc8,0x42,0x8a,0x64,0x4b,0x23,0x7d,0xa9,0x33, +0x73,0x94,0xa3,0x0f,0x4a,0x20,0x0f,0x37,0xac,0xf8,0xd4,0xae, +0xf8,0x22,0xcd,0x65,0xe1,0x40,0xfa,0x90,0x2e,0xb4,0x0f,0x47, +0xa6,0x5a,0xfe,0x7a,0x53,0x49,0xa3,0xd8,0xec,0x90,0x3b,0xf1, +0xe6,0xe3,0xcc,0x1b,0xfb,0xaf,0x59,0x6f,0xdc,0x9c,0x10,0xbb, +0x69,0x39,0x73,0x58,0x90,0x55,0xce,0x59,0x6a,0x43,0x02,0xa3, +0xb7,0x45,0xae,0x5b,0x16,0x69,0xbd,0x3c,0x66,0x75,0x1c,0xec, +0xba,0xbc,0xf9,0xda,0x3d,0x75,0xa6,0xff,0x34,0x8e,0x6a,0x16, +0xf5,0xa3,0x36,0xb4,0x9f,0x86,0x1e,0x0c,0x11,0x48,0x9a,0xd4, +0xcf,0x9f,0x76,0xa6,0xc1,0xa4,0xb3,0xbf,0x6c,0xcd,0x62,0x75, +0xe9,0x61,0x0d,0x19,0x7b,0x4d,0x60,0x0b,0xae,0x24,0x98,0x05, +0x35,0x10,0x67,0xe1,0x4c,0x30,0x11,0x1e,0x54,0x5e,0xcf,0xb9, +0x69,0xbd,0x6d,0xeb,0xf6,0x75,0xdb,0x23,0xc9,0x2e,0x3a,0xd4, +0xea,0xec,0x0d,0x9a,0x48,0xfc,0x97,0x6c,0x09,0x5b,0xbf,0x34, +0xdc,0x7a,0xc1,0x92,0x95,0x1b,0xe0,0xf8,0x95,0xad,0x37,0xee, +0xa9,0x8f,0xba,0xcc,0xe0,0xa8,0x30,0xa2,0x27,0xdd,0x44,0x5b, +0x68,0x54,0x7f,0x91,0x5e,0xc2,0x85,0xe1,0x77,0x4b,0xce,0x5f, +0x39,0x7a,0xdb,0x7a,0x73,0x62,0x62,0x5c,0x62,0x14,0xe9,0x4c, +0x87,0x58,0x95,0xde,0xbf,0x70,0x2d,0xe3,0x1a,0x5b,0x58,0x97, +0x10,0x4d,0xda,0x31,0x98,0xb8,0x70,0x89,0xb6,0x26,0x9e,0xcb, +0x93,0x97,0x6c,0x88,0x88,0xaa,0xb1,0xe5,0x77,0xe7,0x24,0x5e, +0x29,0x56,0x9f,0x75,0x9f,0xc0,0x51,0xcb,0x39,0xfe,0x6d,0xa9, +0x89,0x86,0x1a,0x13,0x9b,0xc8,0xad,0x4b,0x37,0x44,0x44,0x5b, +0x47,0x44,0xad,0xde,0x00,0xbb,0x73,0x93,0xae,0x14,0xaa,0x4f, +0x7b,0x4c,0x64,0x18,0x36,0xaa,0x33,0x15,0xa8,0xa0,0x51,0x49, +0x03,0xdf,0x09,0x64,0xd6,0x7b,0x62,0x44,0x2c,0x89,0x65,0x6b, +0x62,0x44,0x67,0xd1,0x59,0xad,0x59,0x5b,0x6f,0x49,0x2d,0xdf, +0x53,0x23,0x32,0x4b,0x7b,0xcb,0x84,0xf6,0xf6,0x7d,0xf0,0x4c, +0xbb,0x87,0x7b,0x56,0x78,0x5f,0xf9,0x12,0xa3,0xd0,0xa5,0x9b, +0x66,0x21,0xd7,0xcd,0xb7,0x0f,0xed,0xcd,0xd8,0x37,0x93,0xf7, +0xc2,0xd2,0xa4,0x65,0xb1,0x4b,0xc2,0x97,0x46,0x58,0xb1,0x33, +0x8e,0x5e,0xd8,0x72,0xe9,0xb6,0x9a,0xa4,0xdf,0xd1,0x9b,0xfb, +0x93,0x43,0x0c,0xe7,0x54,0x7e,0x8e,0x34,0x8e,0x9a,0x9f,0x1a, +0x68,0x45,0xec,0x8b,0xab,0xae,0xe5,0x5e,0xdb,0x96,0x9c,0xb2, +0x76,0x7b,0x34,0xb9,0x4c,0xfd,0xac,0xce,0xdc,0x00,0x95,0xae, +0x07,0x43,0xca,0x28,0x66,0x93,0xf0,0xa8,0x88,0x28,0x2b,0x51, +0x3b,0x98,0x6f,0xa6,0xb1,0x23,0x4d,0xa2,0xb6,0x2e,0x59,0x1f, +0x21,0x36,0xf5,0x66,0x3d,0x87,0x27,0x5f,0x76,0xe1,0x4a,0xfa, +0xe5,0xcd,0xc9,0xc9,0xb1,0x09,0xcb,0x49,0x07,0xea,0x6b,0x95, +0x7d,0x09,0x54,0xd2,0x7b,0xe9,0x6f,0x81,0xde,0x0e,0x24,0xb7, +0xb1,0x27,0x4d,0x12,0x42,0x13,0x97,0xad,0x59,0x1a,0x15,0x1a, +0x6e,0xb5,0x72,0xfd,0xe1,0xe3,0x49,0xc7,0x36,0x9c,0xb2,0x26, +0xe9,0xb7,0xf5,0xaa,0x40,0x72,0x18,0x57,0x78,0x0c,0x09,0xa2, +0x5b,0xda,0x9f,0x1c,0x64,0x45,0x9a,0xe6,0x3e,0x3b,0x7b,0xfd, +0x5c,0x6a,0x62,0x5a,0x6c,0x6a,0x0c,0xb9,0x44,0xb5,0x56,0xa7, +0xae,0x83,0x8a,0x34,0x97,0x6e,0x09,0x81,0xd2,0x2e,0x6e,0x44, +0xec,0xa8,0xd5,0xa3,0x35,0xf2,0xf9,0xc5,0x49,0x01,0xd2,0xa1, +0x3d,0x2b,0xfb,0x47,0x07,0x87,0x07,0x59,0x97,0x45,0xc1,0x41, +0x62,0xb1,0x95,0x15,0x1d,0x51,0xfd,0x84,0x85,0x60,0xc7,0x1f, +0x82,0xf4,0xf1,0xb6,0xbc,0x87,0xa8,0xa5,0x98,0x5b,0xf2,0x0a, +0xf6,0xd8,0x7c,0x5b,0x7e,0xcc,0xd2,0x24,0x5e,0xba,0x26,0xe8, +0x1b,0xf9,0xeb,0x1a,0x21,0x6d,0x4b,0xcb,0x84,0x23,0x24,0xca, +0x25,0x61,0x2e,0x5d,0x03,0x74,0x18,0xce,0x25,0x6b,0x5c,0x62, +0x8e,0xd0,0x28,0xa0,0x5d,0x03,0x74,0xcd,0xf2,0x59,0xb1,0xf9, +0x2c,0xbd,0x16,0x68,0x71,0x00,0x29,0x46,0x32,0x82,0xba,0x09, +0xf9,0xfa,0xd1,0x01,0x64,0xd8,0x2a,0xce,0xed,0x8f,0x3f,0x46, +0x0f,0x53,0x3b,0x95,0xba,0x92,0x01,0x64,0x40,0xe9,0xbd,0x47, +0x97,0xfe,0xc8,0x72,0xfb,0x53,0xb3,0x89,0xa3,0xcd,0xe9,0x7c, +0x61,0x06,0x52,0x1c,0x7a,0xee,0xf6,0xed,0x4b,0x59,0x84,0xd3, +0x1e,0x61,0x65,0xf0,0xd2,0xe8,0xc0,0xc0,0xa1,0x63,0x29,0xb2, +0x84,0xa9,0x6a,0x21,0xdc,0x93,0x26,0x13,0x87,0x7c,0xea,0x40, +0x5e,0xbb,0xb2,0x03,0x92,0x5b,0xb1,0x12,0x2f,0x79,0xd0,0x57, +0x6c,0x9e,0xbd,0xef,0xa9,0x2f,0x2a,0x91,0x82,0x88,0x86,0xad, +0xe7,0x48,0x2b,0x85,0x7c,0x6a,0x4b,0x26,0xba,0xea,0xa5,0x7b, +0xe4,0x0d,0xb1,0x55,0x3e,0x0c,0x66,0x79,0x91,0xa2,0x4b,0x12, +0x58,0x32,0x37,0x23,0xc3,0xbc,0xf4,0x45,0xc5,0xe4,0x26,0x69, +0x46,0x9f,0x94,0xe8,0x24,0x8e,0xfe,0x2e,0xb3,0x11,0x61,0x2c, +0xfb,0x38,0x96,0x51,0x25,0x29,0x54,0xd7,0xe9,0xd4,0x00,0x32, +0x55,0x5e,0x7d,0x8f,0x6d,0xab,0xa4,0xa7,0x6c,0x49,0x2f,0x95, +0x2a,0xa4,0xbb,0x68,0x81,0x40,0x7b,0x04,0x92,0x1e,0xf2,0xb4, +0x12,0x5d,0x91,0xa7,0xa2,0x86,0x42,0x3f,0x98,0x4e,0xeb,0x47, +0xa6,0xd1,0xbe,0x74,0x5a,0x20,0x99,0x26,0x63,0x79,0x2d,0x9b, +0xd8,0xb0,0x2b,0x4f,0xb7,0xd1,0x89,0x02,0x75,0x0c,0x22,0x8e, +0xd4,0xb5,0xf6,0xf1,0xe1,0xae,0xae,0xd4,0x87,0x31,0x86,0x92, +0xe5,0x02,0x49,0x76,0xa5,0xc9,0xe3,0xd8,0xe0,0xc6,0x7a,0xda, +0x53,0x74,0x9c,0x40,0xc2,0xdc,0x69,0x24,0xb7,0xc6,0xd9,0x31, +0xd6,0x51,0x6e,0xc3,0x7b,0x44,0x76,0x8a,0x69,0xb3,0xca,0x5a, +0x25,0x9a,0xaf,0xe2,0xc9,0x1f,0x5e,0x74,0x11,0xb7,0xda,0xc7, +0x2b,0x56,0x34,0xf5,0xe5,0x3d,0x63,0x5c,0xd8,0xba,0x23,0x2f, +0xf7,0xd6,0x9b,0x30,0x26,0x0f,0x85,0xa9,0x77,0x8f,0xd8,0xde, +0xa2,0xc9,0x12,0xde,0x25,0xb2,0x5d,0x8c,0x03,0xdb,0xd5,0xd5, +0x27,0x47,0x44,0xdb,0xf7,0xbc,0xee,0x8d,0xb4,0x8f,0xd6,0xe1, +0x69,0xf9,0x3d,0x06,0x32,0xc8,0x0e,0x9e,0xc0,0xd3,0x96,0x72, +0xac,0x10,0x93,0x27,0x36,0xd3,0xf3,0x4f,0x36,0xc4,0x3d,0xd2, +0xd2,0x47,0xe5,0xe4,0x09,0xf7,0x25,0xfe,0x4d,0xe2,0x83,0x2d, +0xa6,0x2a,0x91,0x6b,0xc1,0x8f,0x95,0x17,0x8a,0xf6,0x1a,0x7e, +0xfd,0xc6,0x7c,0xb1,0xe1,0x76,0x3e,0xe1,0xd6,0x56,0x53,0x76, +0x1a,0x63,0x1b,0x2b,0x9a,0x76,0xe2,0xe9,0xed,0x7b,0xa4,0x80, +0xfb,0x1c,0x5f,0x9d,0xf8,0x90,0xad,0x1b,0xe4,0xd7,0x67,0xf2, +0xcb,0x49,0x39,0x59,0x53,0xfb,0x98,0x86,0xaa,0x13,0xe4,0x2a, +0xf5,0xe1,0xa5,0x02,0x5e,0xdf,0x52,0xef,0x2a,0xda,0x36,0xe7, +0xa5,0x76,0xad,0x84,0xfb,0x3a,0xc9,0x05,0x55,0x35,0x89,0xbc, +0xfe,0x24,0xd9,0x23,0x36,0x0d,0xe0,0xa5,0x3e,0xbc,0xdc,0x95, +0xd8,0x89,0x36,0x0b,0x78,0xf9,0x13,0x2f,0x77,0xfe,0x2a,0x7c, +0x94,0x9b,0xf8,0x93,0x7c,0x96,0xe2,0x5a,0x6f,0x7f,0xba,0x93, +0x1a,0x6b,0x4e,0x0d,0x00,0x72,0x9a,0xd4,0xaf,0x7c,0xc0,0xda, +0x2d,0x3a,0x4c,0x76,0x93,0x7d,0xf9,0x8b,0x8c,0xe9,0xa1,0xd4, +0x8d,0xa7,0x01,0xf2,0xc2,0x9a,0x51,0x7c,0x20,0xfb,0x58,0x2c, +0x9a,0x67,0xf1,0x74,0xb8,0xac,0xab,0xe9,0xcb,0x3f,0x53,0x64, +0xda,0xe8,0xd9,0xc8,0xb9,0x41,0x3f,0xc5,0xfd,0x3f,0x3e,0xee, +0xd0,0x4f,0xa9,0x09,0xf9,0xef,0xcf,0x64,0xb2,0xbc,0x45,0xa0, +0x2d,0x48,0x53,0xbf,0x9a,0x6c,0x9e,0x3d,0x5b,0xb1,0x01,0x4b, +0x55,0xe3,0xae,0x6c,0x37,0x53,0xa4,0xef,0xd0,0x8f,0xae,0x99, +0xc4,0x4b,0x2e,0xca,0x82,0x28,0xbc,0x92,0x85,0x00,0x72,0x6b, +0x2a,0x47,0x1b,0xfa,0xf4,0x13,0x1d,0x2e,0xf3,0xa5,0xc4,0x59, +0x4d,0xc6,0xc8,0x5b,0x6b,0xbe,0xf0,0x92,0x2f,0x23,0x29,0x11, +0x5e,0x1b,0x28,0x58,0xd9,0x6c,0xe4,0x2d,0xfd,0xc3,0x13,0xa8, +0x2c,0x25,0x2e,0x6a,0x27,0x79,0x7b,0x35,0xaf,0x8f,0x66,0x04, +0xaf,0x84,0xf7,0x32,0x2b,0xee,0x79,0x0a,0x38,0xf9,0x04,0xd0, +0xed,0xb6,0x86,0xab,0x9d,0x24,0x7c,0xe5,0x7d,0xe2,0xad,0x3e, +0x20,0x5f,0xab,0x99,0xcd,0x6e,0xa6,0xff,0x8b,0x2e,0x12,0x4e, +0xb2,0x8d,0x53,0x04,0x2b,0xcb,0x88,0xab,0xba,0xda,0xc0,0xc4, +0xa4,0xfe,0xe6,0x13,0x48,0xb7,0x3b,0x68,0xa4,0x97,0xf4,0xcf, +0x77,0xbc,0x14,0xc0,0x24,0x3e,0x12,0xde,0xfc,0xbb,0x29,0xd4, +0x6e,0xd6,0x4a,0xc4,0xca,0x72,0xc6,0xb8,0x59,0xb6,0xae,0x99, +0xc9,0x4b,0x3e,0x8c,0xb0,0x94,0x5d,0x67,0xa7,0xfc,0xac,0x66, +0x0e,0xaf,0xff,0xa0,0xa8,0x2a,0x72,0x6a,0x9e,0x8a,0xb2,0xe3, +0xfb,0x5f,0xb6,0xb3,0xee,0x64,0xb0,0xe9,0xa3,0xda,0x2b,0x28, +0xf2,0x1a,0xf9,0x04,0x89,0x16,0x43,0x78,0x52,0x97,0xe9,0xe0, +0xa2,0xa6,0xc7,0xe4,0x99,0x72,0xf4,0x7f,0x32,0x37,0x94,0xfb, +0x7c,0xe0,0x45,0xed,0x70,0x5e,0x3f,0x5d,0xf9,0x9f,0x0a,0x49, +0xae,0x48,0xfb,0x06,0xf7,0xa0,0x7f,0x50,0x3b,0xcd,0x85,0x61, +0xc0,0x3a,0x82,0x8e,0x25,0xef,0xc8,0x14,0x35,0x11,0xe9,0x53, +0xd6,0x2b,0x2e,0x50,0x92,0x64,0x09,0xcb,0xc3,0xdf,0xdd,0xe5, +0x95,0x65,0xac,0x19,0xb2,0xa5,0x61,0x65,0xa2,0x58,0xc0,0x33, +0x87,0x86,0x64,0xf2,0xd2,0x2b,0x89,0x75,0x61,0xb6,0xb4,0xa2, +0x4c,0xd7,0xde,0x9d,0xee,0x67,0x74,0x5b,0xdd,0xf5,0x58,0x86, +0xd4,0x57,0x9a,0x2e,0xbc,0xa3,0x8f,0x03,0x49,0x02,0x0b,0x08, +0xab,0xe0,0x00,0xd6,0x3b,0x19,0x8b,0x10,0xc8,0x93,0x7a,0x45, +0x65,0xc4,0x4d,0x4d,0x8d,0xf5,0xb6,0x47,0xd8,0x60,0x92,0xcf, +0x77,0xd1,0xbb,0xe6,0xf3,0x64,0x08,0xdf,0x46,0x3f,0x38,0x95, +0xaf,0x3d,0x6e,0x21,0x13,0x33,0xd5,0x5d,0x0e,0x2f,0x23,0xb3, +0x15,0xd1,0x3c,0x27,0x37,0xa5,0x1d,0x85,0x6a,0xfa,0xb8,0x1f, +0x49,0x64,0x2e,0xb0,0x08,0x0e,0x92,0xe6,0xf0,0xd4,0x55,0x1f, +0x94,0xf0,0x8b,0x61,0x16,0x63,0x18,0xeb,0x2e,0x4f,0x2e,0x23, +0xa3,0x19,0xc3,0xe4,0x32,0x69,0xa9,0xc2,0xd2,0x46,0xe2,0x78, +0x52,0x2c,0xaf,0x0b,0x55,0xb4,0x9c,0xaf,0x68,0x99,0x2d,0x82, +0x03,0x5f,0x7b,0x97,0x48,0x45,0x47,0xd6,0x3e,0x7d,0x50,0xa4, +0x26,0x8c,0x65,0x8e,0x35,0xe8,0x58,0x57,0x73,0x8e,0xd9,0x60, +0x39,0x51,0x15,0x97,0x11,0x0f,0x35,0x9b,0x54,0x4e,0x26,0x19, +0xb4,0x24,0x77,0xe5,0xdb,0x91,0x8a,0x9c,0xc5,0x8a,0x9c,0xf0, +0x32,0x29,0xd5,0xfd,0x5f,0x35,0xe7,0x1b,0x24,0x55,0x89,0x1a, +0x64,0x81,0x23,0x37,0x5e,0xc1,0xd7,0xfc,0xc9,0xeb,0x9b,0x11, +0xd1,0x90,0x24,0x66,0x6c,0x3a,0x3d,0x67,0xc8,0x91,0x7f,0x78, +0xba,0xff,0xf6,0xff,0x2a,0x47,0x7a,0x31,0x9e,0xd3,0xff,0x91, +0x14,0xfa,0xfd,0x6c,0x21,0xeb,0x7f,0x11,0x82,0x52,0x3d,0x46, +0x98,0x2d,0x6a,0x80,0xaf,0x0d,0x20,0x51,0x3b,0x82,0xd7,0xcf, +0x54,0x9c,0x9c,0xac,0x38,0xb9,0xbf,0xe2,0x64,0x7b,0xcd,0x85, +0xe1,0xff,0xc3,0xc9,0x52,0xb2,0x2c,0x28,0x28,0xaa,0x35,0xa0, +0x68,0x15,0x29,0x13,0x48,0x0b,0x3a,0xbb,0x44,0xd7,0xde,0x93, +0xf6,0x64,0xb9,0xd5,0xda,0x4b,0x8f,0xc5,0x48,0x3d,0xff,0xbf, +0x1d,0x4a,0xca,0x46,0x08,0xd4,0x89,0x91,0x3b,0x71,0xf4,0xb8, +0xfc,0xe1,0x08,0x4f,0x18,0x82,0xee,0xd3,0x77,0x62,0x3e,0x5d, +0xa4,0xb8,0xa8,0x21,0xdb,0xaa,0xe3,0x25,0x4f,0x2e,0x66,0xd5, +0xbc,0x05,0x35,0x2d,0xf9,0x0f,0x17,0x79,0xd2,0x1e,0x02,0xab, +0xf0,0x2d,0xa8,0x25,0xb7,0x86,0x56,0x87,0xf2,0xba,0xe1,0x0a, +0xc3,0x7b,0x3a,0x34,0x80,0x0c,0x95,0xc7,0x29,0x88,0xac,0xf7, +0xa0,0xa2,0x40,0xf2,0xdc,0x90,0x06,0x7b,0x77,0xa6,0xa9,0x2c, +0x52,0xcf,0x0d,0x04,0x72,0x84,0x74,0x78,0xf2,0x8d,0xcc,0x51, +0x13,0xad,0x2c,0x70,0xaa,0x16,0x3c,0x8d,0x32,0xb0,0xd0,0x3f, +0xee,0x49,0x3b,0x38,0x7a,0x93,0xb6,0x16,0xde,0xca,0xbf,0x05, +0x90,0x1b,0x93,0x38,0xda,0x84,0xe5,0xd8,0xb6,0x66,0x06,0x93, +0x9d,0x20,0x5c,0xe5,0x3d,0xe2,0xae,0xa6,0x3b,0xe5,0x88,0x1a, +0x4f,0xbe,0x86,0x99,0x79,0x9b,0xf4,0x80,0x27,0x4e,0xcc,0x37, +0xbf,0xf9,0x93,0x1b,0x8a,0x6f,0x7c,0xfc,0x19,0xf8,0xd7,0xd1, +0x9c,0x1a,0xa8,0x90,0xff,0xf2,0x8d,0x9b,0xbe,0xbd,0xfc,0x99, +0x55,0xfc,0xf7,0x3c,0x69,0x2d,0x9a,0x6f,0xe3,0x69,0x2f,0x7d, +0x3f,0x39,0x88,0x8f,0xe3,0xe9,0x44,0xfd,0x40,0x9e,0xd8,0x09, +0xcf,0x95,0xc3,0x6e,0x4e,0x67,0xa3,0xaa,0x4f,0x7f,0x9a,0xda, +0x8e,0x1a,0xf3,0xdf,0x2b,0x4a,0x48,0x4f,0x35,0x75,0xd7,0x8f, +0xaf,0xa9,0xc7,0x8b,0xaa,0x1c,0x5e,0xef,0xd3,0x5c,0x60,0x24, +0x48,0x43,0x78,0x46,0xcd,0x91,0x56,0xfa,0x1c,0xfd,0x3a,0x9e, +0x69,0x1e,0x52,0xab,0xf9,0xb4,0x7b,0xd2,0x5a,0x45,0x73,0x3b, +0xc3,0x01,0xab,0x19,0x88,0xed,0x57,0x76,0xe7,0xd2,0xa1,0x81, +0x6c,0x77,0xf4,0x3d,0x29,0x44,0xd9,0x6d,0xca,0x00,0x4d,0x39, +0x8a,0xe5,0x7a,0x03,0x9f,0x7e,0x34,0xb5,0x15,0x3b,0x8a,0xd4, +0xad,0x30,0xa0,0x5a,0x98,0xbc,0x95,0x5d,0x48,0xc7,0x78,0x14, +0xa5,0x1c,0x18,0x2a,0xfc,0xa2,0x6c,0xa4,0x50,0xb6,0x50,0x28, +0xa1,0x42,0x01,0xb7,0x20,0x79,0xfb,0x00,0xbe,0x86,0x55,0x86, +0x28,0xe5,0xf2,0xad,0x58,0x74,0x29,0x97,0x37,0x44,0x17,0xbb, +0xbc,0xdd,0x2f,0x53,0xd5,0x46,0x57,0xb5,0x9c,0x5b,0xb3,0xad, +0xf6,0xea,0x0e,0xa2,0xc6,0x84,0x27,0x6b,0xe5,0x22,0x21,0x32, +0x39,0x2c,0x36,0x22,0x9a,0xb5,0x45,0xac,0x1b,0xdd,0x7d,0x3a, +0xe1,0xec,0x35,0xf5,0x71,0xcf,0x99,0x5c,0x8b,0x59,0x03,0xdb, +0x75,0xd7,0xd8,0x7d,0x8f,0x4a,0x0e,0x5b,0xaf,0xb4,0x76,0xd1, +0x4a,0x6b,0x77,0x26,0xf1,0xdc,0x15,0xf5,0x11,0xcf,0xdf,0x39, +0xbb,0xb1,0x3e,0xb4,0x09,0x0b,0xfa,0xec,0xe1,0x45,0x37,0xb3, +0x2f,0x64,0x64,0x5b,0x27,0x6c,0x4e,0x8c,0x4d,0x88,0x61,0x1d, +0x63,0x17,0xab,0xb2,0xfc,0x0b,0x59,0x19,0xd9,0x9b,0x37,0x25, +0xc6,0x6e,0x8e,0x21,0xad,0xa8,0x03,0x6b,0x21,0x41,0x25,0x5b, +0x31,0xdb,0x28,0x0a,0x36,0x17,0xaa,0x0d,0xbe,0x9c,0xcc,0xd1, +0xc6,0x2c,0xfc,0xb7,0x39,0xfc,0x52,0x50,0xc1,0x4b,0x37,0x75, +0x86,0xdc,0xa4,0x66,0x00,0xaf,0x1b,0x45,0xf6,0xb3,0x4e,0x23, +0xc6,0x95,0x2e,0x30,0x5c,0x5e,0x31,0xe2,0x0b,0xb9,0xe2,0xf5, +0xff,0xf4,0xd1,0x0d,0xe6,0x23,0x33,0x5f,0xe6,0xa3,0xb6,0xff, +0xed,0x23,0x1f,0xe6,0x23,0x53,0xfe,0x3e,0x5f,0xcb,0xda,0xa2, +0xd6,0x6e,0x37,0x7e,0xd9,0x6d,0x5b,0x0b,0xcd,0x49,0x16,0x0a, +0x99,0xff,0x42,0x6a,0x9a,0xfc,0xfb,0x17,0x9e,0xfa,0xfd,0x92, +0xaa,0x15,0x5e,0xfe,0xeb,0xf9,0xfa,0x3e,0x41,0x34,0xb5,0x8d, +0x62,0x64,0x23,0x66,0xe4,0x9e,0x6a,0x07,0xb9,0xcf,0x71,0xfe, +0xe7,0x6b,0x9e,0x1e,0xa0,0xac,0xa5,0x52,0xe3,0xe6,0xa3,0x71, +0x27,0x4e,0x2b,0x49,0x57,0x19,0x44,0x12,0x5d,0x38,0x03,0xee, +0xce,0x63,0x29,0x79,0x71,0x38,0xe9,0xf0,0xe5,0xf1,0x83,0x13, +0x9f,0xad,0x49,0x5b,0xb9,0x5f,0xa9,0xae,0xc8,0x03,0x55,0x72, +0x35,0x2f,0x3b,0xd2,0x33,0x02,0x6b,0x6e,0xfe,0x28,0x95,0x56, +0x7a,0xd0,0x19,0xb4,0x11,0x6e,0xdc,0xb5,0x7e,0xf7,0x5e,0xf5, +0x1b,0xfa,0xb0,0x1f,0xd9,0xc4,0x02,0xf5,0xb7,0x01,0xfd,0xe8, +0x1c,0x96,0x0c,0xc3,0x48,0xaf,0x8a,0x27,0x37,0x8f,0x3e,0xb5, +0xa6,0x8e,0xf4,0x5b,0x26,0xdf,0x96,0xd7,0xb7,0x2f,0x43,0xb9, +0x3b,0xd1,0x0b,0x44,0x43,0x9f,0x97,0xea,0xd0,0x83,0x2e,0xa6, +0x2a,0x85,0x7b,0xcf,0x3e,0xf5,0x3b,0xfa,0x88,0x71,0x8f,0x67, +0x49,0x3c,0x20,0x80,0xce,0x61,0xde,0x60,0xec,0xbd,0x9f,0x3c, +0xc9,0x3b,0x56,0x65,0xdd,0x43,0xde,0x7e,0x84,0xd7,0x5d,0xe1, +0x7d,0xe4,0x47,0xc2,0x17,0x29,0x82,0x45,0x53,0x51,0x80,0xb4, +0xa2,0xb9,0x1c,0x41,0xfb,0xda,0xf3,0xd2,0xf1,0x3b,0xac,0x05, +0x49,0x55,0xb4,0x3a,0x2e,0xda,0x04,0xf3,0xd4,0x5e,0xfe,0x4b, +0xb0,0xe3,0xa5,0x64,0xf2,0x5a,0xce,0xc3,0x7b,0x01,0x82,0xd4, +0x89,0x4e,0x97,0x3b,0x31,0x9a,0xed,0x0a,0xcd,0x21,0xd1,0x66, +0x00,0x4f,0x3e,0xca,0xf5,0x42,0x99,0x3e,0xf2,0x63,0xa6,0x4f, +0x4f,0x72,0x41,0x01,0xcf,0xdf,0x4b,0xa5,0x48,0xe5,0x36,0x16, +0x18,0x97,0xb6,0x7e,0xd7,0x1e,0xf5,0x07,0xc3,0x6d,0x18,0x02, +0x8b,0x06,0x7d,0x4c,0x34,0xe7,0x86,0x93,0x3e,0x55,0x4f,0x6e, +0x1f,0x7e,0x6d,0x4d,0x26,0xca,0x3d,0x15,0xfc,0x6d,0xc7,0x93, +0xf7,0x72,0xdf,0x48,0x45,0x50,0x2a,0x13,0xd4,0x9b,0x44,0x0a, +0xc4,0x9e,0xce,0x2c,0x95,0x42,0x3d,0xe8,0xa4,0x5a,0x41,0xbb, +0xf7,0xd4,0x9a,0x25,0x9e,0x85,0xb0,0x10,0xcc,0xcc,0x62,0xab, +0xc8,0x71,0xac,0x78,0x9c,0x77,0xf4,0x99,0x35,0xb1,0xa3,0x49, +0x2b,0x78,0xdd,0x08,0x05,0x57,0x16,0xd0,0x91,0xfd,0xc8,0x48, +0xd6,0xf0,0x8d,0x0e,0x24,0xa3,0xe9,0x2b,0x03,0xbc,0x78,0x51, +0x1b,0x81,0xdc,0x60,0x18,0x39,0xc0,0xbb,0x0b,0x4d,0xf9,0x05, +0x2f,0x19,0xa4,0xe3,0xe3,0xaf,0xb5,0xf0,0xd2,0xc8,0x00,0x2f, +0x96,0x74,0x44,0x3f,0xd6,0x11,0xff,0x7a,0x34,0x35,0xa0,0x4c, +0xbe,0x01,0x65,0x1a,0x04,0x90,0xab,0x0c,0x65,0xac,0x7c,0x03, +0xe9,0x56,0x3b,0x11,0xec,0x79,0x62,0x5a,0x71,0x8f,0xd5,0x0f, +0xba,0xcd,0x80,0x31,0x8c,0xb7,0x71,0x2d,0x53,0xa3,0x5f,0x22, +0xee,0x49,0x9b,0x38,0xbd,0x0f,0x45,0x81,0x5c,0x9b,0x84,0xd4, +0xd2,0xb7,0x1f,0x4d,0x69,0x66,0x80,0x9b,0x63,0x84,0xab,0x50, +0x22,0xfa,0x8d,0xdc,0x90,0xab,0x92,0x4b,0x6a,0x0e,0x18,0x00, +0xaa,0x4d,0x2d,0x9b,0xc6,0xf0,0x40,0x1a,0x4e,0xe2,0x19,0x58, +0x59,0x04,0x90,0xeb,0xcc,0x8b,0xb6,0x2c,0x5f,0x53,0x7e,0x81, +0xd5,0x71,0x62,0x5e,0x61,0x00,0x2b,0x97,0x5a,0xb0,0xb2,0xbe, +0xc4,0xd3,0xee,0xfa,0x00,0x81,0xcc,0x96,0xe6,0xe4,0xcb,0xd9, +0xa2,0x69,0x00,0xff,0x73,0x9d,0xf2,0x7f,0x67,0x42,0x84,0x17, +0x06,0xa5,0x59,0xcc,0xd6,0x63,0x99,0xb0,0xb5,0x8d,0x08,0x01, +0xfc,0x8f,0x47,0x86,0x54,0xe8,0xa3,0x1f,0xa7,0xc0,0x95,0xf5, +0x5b,0xfe,0x99,0xdc,0x57,0xff,0x53,0xd1,0xbe,0xd1,0x28,0x9e, +0x5a,0xb0,0xdf,0xc6,0x06,0x7c,0xca,0xa7,0xcd,0x59,0xf7,0xa2, +0xb0,0x2b,0xd9,0xc8,0x74,0xdf,0xda,0xdc,0x70,0x67,0xac,0x30, +0x64,0x47,0x8c,0x7e,0x44,0x2d,0x6c,0xd5,0x67,0x1c,0xe6,0xec, +0xb7,0x9e,0x01,0xb7,0xf2,0xa9,0x86,0x65,0x95,0xc2,0xc5,0xb2, +0xca,0x42,0xe1,0x6a,0xf9,0xeb,0xc6,0x75,0x1f,0x95,0x29,0xd0, +0x15,0x29,0x6f,0xc9,0x32,0x20,0x92,0x4d,0xed,0x6d,0xad,0x7e, +0xdd,0x36,0x82,0xac,0x60,0xe8,0xd4,0x30,0x80,0x5c,0x9b,0x50, +0x8b,0x4e,0x5b,0x6b,0x6b,0xdf,0x31,0x52,0xaf,0x42,0x41,0xa7, +0x77,0xf2,0x65,0x05,0x9d,0xd8,0x5d,0xc9,0x7a,0x66,0xb1,0xb7, +0xbc,0x02,0x1a,0xbf,0xec,0x2d,0x8c,0xe2,0x15,0x01,0x11,0x0c, +0x3d,0x14,0x01,0x4c,0x5f,0x83,0xad,0x9b,0xff,0x12,0x50,0x6b, +0xeb,0xa3,0x06,0xf4,0x90,0xad,0x79,0x6a,0xca,0xb4,0x35,0x53, +0x58,0xa2,0xc9,0x22,0x96,0xd5,0xe6,0x01,0xe4,0x32,0x1b,0xb0, +0xcd,0xfd,0xd8,0x88,0xd6,0xda,0x70,0x45,0xe3,0x87,0x25,0xa4, +0xb7,0xda,0x56,0x76,0x3c,0x66,0x30,0x64,0xb4,0xc1,0x90,0x8c, +0xec,0xca,0x2f,0x43,0x6e,0x69,0xa3,0x90,0xfd,0x78,0x68,0x30, +0xa4,0x1b,0x33,0xa4,0x29,0x5f,0xd3,0x83,0x67,0xb3,0xc7,0x32, +0x81,0x5a,0x27,0x20,0xb1,0xa1,0x8f,0x82,0x49,0x42,0x1f,0x8e, +0x06,0x0e,0xe8,0xc9,0x60,0xbd,0x99,0x26,0x7b,0x24,0x19,0x4f, +0x34,0x0f,0x5e,0xa5,0x92,0x9e,0xd6,0x0c,0x17,0x9c,0x69,0xcb, +0x20,0xd2,0x92,0xde,0x93,0x33,0x78,0x55,0x6d,0x16,0xd3,0xb4, +0x7d,0x42,0x91,0x0e,0xbd,0x69,0x07,0xca,0x05,0x13,0x8e,0x5a, +0x8b,0x16,0x05,0x3c,0x89,0x15,0xde,0x2b,0xc1,0xbe,0x71,0x1c, +0x5b,0x60,0x59,0x33,0x9b,0xf9,0xff,0x1c,0x2b,0xeb,0x91,0xa4, +0xbe,0xa1,0x18,0x3b,0xe8,0xb5,0x2c,0x8f,0x2f,0x8a,0x60,0xcc, +0xd3,0x9d,0x9b,0x85,0xbb,0x52,0x20,0x8b,0x35,0x6a,0x1a,0x4c, +0x4c,0x6d,0xa9,0x59,0x30,0x31,0x43,0xaa,0x26,0x33,0x04,0xd1, +0x6c,0x37,0x4f,0xf9,0x01,0xc1,0x74,0x6e,0x2b,0xcd,0xd9,0xe1, +0x4a,0xd7,0x63,0x5c,0x78,0x97,0x74,0x51,0x77,0x56,0x3a,0x31, +0x96,0xc4,0x0c,0xe7,0xe6,0x0b,0x45,0xd2,0x64,0x6f,0xaa,0x32, +0x9c,0x6d,0x4b,0x4d,0xfb,0x13,0x53,0xa4,0xd6,0x64,0xba,0x68, +0x9e,0xc2,0x93,0x07,0x4a,0x6b,0x55,0x9b,0xdb,0x34,0xad,0x82, +0x51,0x46,0x7a,0x53,0x7b,0xca,0xf5,0x67,0x5a,0x9a,0x1a,0x0e, +0x53,0x48,0x17,0x0b,0x1f,0xff,0xcd,0xef,0xa6,0xff,0xe6,0x37, +0xeb,0xb0,0xa2,0x48,0x83,0xbb,0xe5,0x4a,0x87,0xd5,0x5f,0x3e, +0xcd,0x32,0xdc,0xaa,0x25,0x4f,0xee,0x2b,0x1d,0x96,0xae,0x93, +0xae,0xae,0x40,0x3b,0x2f,0xa1,0x36,0x0b,0xa8,0xa9,0xa6,0x2c, +0x12,0xf6,0x11,0xb3,0x1d,0xa4,0x39,0xe9,0xa1,0x2e,0x96,0x3f, +0xfa,0x4b,0xfb,0x38,0x1a,0x29,0xdf,0x11,0x48,0x99,0x1b,0x2d, +0xa3,0xa5,0x01,0xba,0x6b,0xf9,0xac,0x45,0x35,0x93,0xfa,0x08, +0x25,0xd1,0xb0,0xfd,0x5e,0xca,0xab,0x6f,0xea,0x0b,0x72,0x65, +0x80,0x94,0xc0,0xc5,0xb6,0x8a,0x74,0x0e,0xf3,0x36,0xa5,0x7d, +0x59,0x6b,0xe1,0xe7,0x46,0xfd,0x68,0x55,0x7b,0x5e,0x3f,0x88, +0x46,0xfc,0x2c,0xe2,0x19,0x7d,0x47,0x03,0xfd,0x83,0x94,0x37, +0xc4,0x48,0x7d,0xf1,0x17,0x83,0x43,0x64,0xef,0x30,0x0f,0xc6, +0xd0,0x51,0x20,0x83,0xdc,0xe8,0x20,0x5a,0x55,0xd3,0x94,0xd7, +0xd7,0xa5,0x8e,0x22,0x77,0x9f,0x17,0xeb,0x97,0xf3,0x72,0x0d, +0x0d,0x13,0xa4,0xd8,0x5b,0x72,0x19,0xdd,0xf9,0x90,0x47,0x95, +0x3e,0x93,0x97,0x65,0xb9,0xbe,0xa8,0x71,0xe0,0xd9,0xab,0xbe, +0x91,0x3c,0xbb,0x26,0x59,0x79,0x63,0x13,0xe5,0x9b,0x3b,0x86, +0x97,0x47,0xb4,0xb5,0x7e,0x8f,0x81,0x57,0x1f,0x20,0xfb,0x8b, +0x2a,0x35,0x2f,0xda,0xec,0x61,0x4d,0x1d,0x4d,0xa8,0xf9,0x4b, +0xd1,0xc2,0x5d,0x28,0x89,0x82,0xed,0xf7,0x53,0x5e,0x7e,0xfd, +0x2f,0x25,0x14,0xad,0x7d,0x98,0x12,0x3d,0x05,0xd2,0xd7,0x8d, +0x61,0x14,0xd3,0x5a,0x6e,0x44,0x73,0x44,0xb3,0x32,0xfe,0x74, +0x32,0x2b,0xa2,0x87,0x9c,0xe7,0x71,0x0e,0x43,0x82,0xe8,0x7a, +0x16,0xc1,0xc1,0x44,0xb8,0x5a,0x79,0xfe,0xd2,0x39,0xeb,0xf8, +0x8d,0x29,0x49,0xa9,0xeb,0xb6,0x47,0x5b,0x93,0xfd,0xb4,0xd5, +0x99,0x1b,0x74,0x3b,0x11,0x97,0x24,0x46,0xad,0x5f,0x12,0xc1, +0xe6,0x4f,0x45,0xf1,0x76,0xb4,0x8d,0xa8,0x8e,0x60,0x8a,0xdc, +0xe3,0xe5,0xdf,0xe8,0xe3,0x9a,0x81,0x8a,0x76,0x32,0x91,0xeb, +0xd1,0xaf,0xfc,0x6b,0xe5,0x46,0xe5,0xb4,0x9c,0xb2,0x45,0x36, +0xc9,0x3a,0x93,0x44,0x81,0x9a,0x2e,0x6b,0xbd,0xb8,0x97,0xa6, +0x34,0x0a,0xd2,0xaa,0x52,0x59,0xb7,0x66,0xae,0xbe,0x2f,0x0f, +0x0d,0x94,0xea,0x73,0xb4,0x87,0x3c,0x5d,0x20,0xbb,0xdc,0xe9, +0x5e,0x6e,0x6d,0x5f,0xbf,0xd8,0xbe,0x36,0x9b,0x03,0x80,0x4c, +0x26,0x73,0xb6,0xec,0x25,0x6d,0xb4,0x2b,0xf2,0x7a,0x45,0xd8, +0x2d,0xa7,0xa8,0x0c,0xbd,0xa6,0x6c,0x70,0xe9,0x43,0x06,0x88, +0xd6,0x0d,0x78,0xd9,0x83,0x0e,0x90,0xd2,0x78,0xb9,0xa7,0x22, +0xbb,0xa3,0x10,0xdb,0x31,0xb2,0xcf,0xd2,0x80,0x92,0x28,0xab, +0xed,0x45,0xdb,0x5e,0x7c,0x50,0xe7,0xcb,0xc1,0x81,0x12,0x72, +0x0c,0x9e,0x4b,0x85,0xde,0x11,0xcd,0x62,0xa8,0xc9,0x2a,0x53, +0x32,0xd8,0x9d,0x0e,0xe3,0xd6,0x7a,0x7b,0xc5,0x7a,0xb3,0x03, +0x6a,0x9e,0xf1,0xf4,0x05,0x6d,0x20,0x45,0xf1,0xba,0x85,0x3c, +0x7d,0x43,0x1f,0xff,0xf4,0xe3,0xc5,0x7a,0xcb,0x79,0xd9,0x4e, +0x76,0xd5,0x9d,0x67,0x4d,0xd5,0x09,0x45,0xf0,0x60,0x11,0xf7, +0xf3,0x72,0x7b,0xd9,0xe6,0xe7,0x14,0x5e,0xb4,0x9c,0xcb,0x17, +0xd1,0xf9,0x3f,0x35,0xbc,0xdc,0x4b,0x51,0xc3,0x42,0x51,0x83, +0x02,0x8d,0x23,0xac,0x14,0x5f,0x52,0xa8,0x1b,0x2b,0xd4,0x67, +0xe8,0x41,0xd2,0x84,0xf1,0x7f,0x53,0x56,0x2c,0x95,0x15,0xda, +0xd4,0x4e,0xf7,0x84,0xb1,0xb3,0xd1,0x42,0x45,0x4f,0xeb,0x0e, +0xf0,0xba,0x95,0x4a,0xbd,0x78,0x47,0x6d,0xf4,0xac,0xff,0xb7, +0x91,0x27,0x14,0xb3,0x52,0x21,0x07,0xd3,0x3e,0x02,0xad,0x1b, +0xd1,0x6e,0x89,0xb3,0xa6,0x20,0x1a,0x76,0x3e,0xd9,0xf6,0x95, +0x98,0xa9,0xcb,0x94,0x06,0xe0,0x2f,0x86,0x14,0x72,0xa0,0x40, +0xd6,0xf8,0xd0,0x75,0xa2,0x45,0x0a,0xcf,0x8c,0xe3,0x4a,0xfc, +0xf4,0x97,0xf8,0x98,0xbc,0xbe,0x11,0x3d,0x62,0x3a,0xad,0x64, +0x83,0x7d,0x1d,0xc9,0x45,0x20,0x8d,0xe8,0xc3,0x62,0x5d,0x67, +0x2f,0x7a,0x84,0x36,0x22,0x69,0xde,0x7a,0x55,0x11,0x43,0x74, +0x69,0x9d,0x10,0xdb,0x39,0xd2,0x35,0x2c,0xb0,0x30,0xca,0x2a, +0xf5,0xee,0xb6,0xe7,0x6f,0xd5,0xb7,0x65,0xb3,0x7e,0xe4,0x2a, +0x47,0xea,0xd2,0x5b,0x42,0x40,0xa4,0x63,0x4c,0x57,0x66,0x9a, +0x81,0x3e,0x74,0x28,0xb7,0x76,0xc8,0xa0,0xd8,0x21,0x36,0xf1, +0x81,0x40,0xfa,0x10,0xef,0xe4,0xbd,0xc4,0x5c,0x4b,0xc7,0xd0, +0x07,0x02,0x19,0xef,0x4a,0x67,0xb1,0x2a,0x7d,0xf1,0x36,0xaa, +0x44,0x21,0x9f,0xa7,0x83,0x98,0xe3,0x77,0xf2,0x9d,0x78,0xd1, +0xf4,0x6f,0x9e,0x4c,0x60,0xa7,0xce,0x28,0x96,0x62,0x39,0xe6, +0x90,0x86,0x22,0xee,0xe2,0x93,0xe4,0x01,0xfa,0x4f,0x6c,0x97, +0x46,0x30,0x2d,0xe6,0x79,0xcb,0xb1,0x45,0x6c,0xb6,0x6b,0x44, +0x97,0x16,0x4b,0x7b,0x14,0x1a,0x2b,0xb1,0xbe,0x17,0x4f,0x22, +0xe8,0x94,0x9f,0x9e,0xbc,0x28,0xdc,0xe1,0xc9,0x22,0x9a,0x2a, +0x36,0x4e,0xe6,0xd9,0x0d,0x46,0x2b,0x37,0x58,0x57,0x2c,0x5d, +0xf3,0xa2,0x1b,0x19,0x6f,0xb4,0xb7,0x7c,0xc0,0x70,0x83,0xd6, +0x62,0x7d,0x4f,0x7e,0x4f,0x4b,0x81,0x0e,0x69,0xe3,0xd1,0xa6, +0xcd,0x3b,0x0f,0x32,0x84,0x0c,0x7e,0x5b,0xfa,0xee,0x5d,0xdb, +0x52,0x3a,0x58,0x4b,0x26,0x53,0x1f,0x61,0x78,0xf0,0x70,0xe5, +0xff,0x15,0x07,0xe5,0xe4,0x68,0xb6,0x71,0x97,0xf2,0x72,0x48, +0x6b,0xd2,0xfa,0xc6,0xf0,0x61,0x1a,0xe5,0x0b,0x8a,0x6b,0xb4, +0xb7,0x10,0x4b,0x4d,0xc3,0x59,0xe8,0x95,0x46,0x59,0xa5,0x55, +0x6d,0xff,0x15,0x79,0x23,0x02,0x25,0x95,0x12,0x79,0x7f,0x08, +0x24,0xdd,0x8d,0x1e,0xe6,0xd6,0xfa,0xf9,0xc6,0xfa,0xd9,0xc4, +0x07,0x88,0xa6,0x6f,0xf8,0x6e,0xe1,0xd4,0x64,0x39,0xad,0xaf, +0x84,0x9c,0x59,0x3f,0x9e,0xde,0xa0,0x8d,0x44,0xab,0xfb,0xbc, +0x1c,0xc0,0x42,0x6e,0x17,0x1f,0xab,0xfc,0x63,0xff,0x9f,0xff, +0x67,0xc4,0x0d,0x08,0x94,0x38,0x8e,0x74,0xa4,0x25,0xa2,0x69, +0x21,0xff,0x2b,0xd8,0x7c,0xbd,0x63,0x7d,0x0c,0xd1,0x3c,0x93, +0x2c,0xda,0xb2,0x8f,0x74,0xd4,0xd2,0xb7,0xb4,0x5c,0x5a,0xce, +0xda,0x4e,0x9e,0x7e,0x96,0xfb,0xd0,0xad,0xfc,0x37,0x9e,0x5e, +0x97,0x7a,0x88,0xc8,0x42,0xb9,0x3b,0x6d,0xf4,0x73,0x04,0x2f, +0x36,0x01,0xfe,0x2e,0x35,0xfd,0xe9,0xc4,0x8b,0x66,0x33,0x94, +0xa3,0x62,0x94,0xb3,0xbd,0xe9,0x5a,0x12,0xc6,0x0f,0x56,0x88, +0xdd,0x14,0x62,0x6a,0x63,0xa7,0x7b,0xca,0xeb,0x9c,0x14,0x50, +0xeb,0xb4,0x94,0xaa,0xe7,0x53,0x4e,0x53,0x1a,0xc1,0x40,0x8d, +0xdf,0x41,0xec,0x49,0x77,0x06,0x6a,0x35,0x01,0xd2,0x29,0xd6, +0xb1,0xb0,0x56,0x8a,0xdc,0x73,0xa7,0xf7,0x68,0x27,0x72,0xcf, +0x83,0x3d,0xa6,0x34,0xe3,0x55,0x3a,0x8b,0x5a,0xa0,0x4a,0x7d, +0xb0,0xad,0x16,0xa8,0x5e,0x05,0x48,0x3b,0x0d,0x40,0xb5,0xd4, +0xc3,0xb4,0x33,0x9b,0xea,0x82,0x3d,0x69,0x30,0xed,0x40,0x82, +0x3d,0xd8,0x63,0x6a,0x7b,0x05,0xad,0x7a,0x28,0x68,0xa5,0x3f, +0xab,0x20,0x93,0x99,0x82,0x4c,0x22,0xce,0x56,0xc0,0xc7,0x57, +0x01,0x1f,0x26,0x6e,0x80,0x41,0x5c,0xe9,0xb6,0xaa,0x4f,0xea, +0x2c,0x11,0xac,0xf9,0x76,0x91,0x6e,0x4b,0xfb,0x9a,0x76,0xee, +0xfd,0xb3,0x90,0x6f,0xa6,0x00,0x53,0xbc,0x02,0x4c,0x16,0xb5, +0xc0,0x94,0x7a,0x7f,0x9b,0x01,0x98,0xd8,0xa1,0x3b,0x38,0x86, +0x4b,0x4b,0x7d,0x34,0x9d,0x19,0x2c,0x39,0x7b,0xb2,0x22,0xd5, +0x81,0x38,0x7b,0xb0,0xc7,0x54,0x06,0x91,0xff,0xff,0xe0,0x89, +0xa9,0xc7,0xa2,0xb4,0xa5,0x01,0x9e,0x9a,0x1a,0xf3,0x01,0x12, +0xc8,0xac,0xaf,0x6a,0x2a,0x71,0xa8,0xd2,0xbd,0x21,0xcf,0x84, +0x3b,0xb4,0x23,0xb7,0xb3,0x32,0xe5,0xcd,0x0f,0xf5,0x55,0x11, +0x38,0xde,0x2e,0xbc,0xcb,0x62,0x67,0x53,0xb9,0xd2,0x5f,0x42, +0xda,0x92,0x26,0x89,0x16,0x37,0x94,0x7f,0xa6,0x6e,0xc9,0x88, +0x83,0x24,0x53,0x61,0xe7,0xb3,0x6d,0x9f,0x09,0xaa,0xaf,0x2b, +0xff,0x88,0xb3,0x71,0x0d,0x17,0x4b,0x31,0xbc,0xed,0xe2,0x9e, +0x8c,0xbc,0xaf,0x54,0x8f,0x0d,0x85,0xe4,0x0f,0xc9,0xf8,0x2f, +0xd4,0x23,0x1d,0x2b,0xda,0x4f,0xe5,0x45,0x73,0x7f,0x9e,0xda, +0xd1,0xf5,0xf4,0xf0,0x43,0x9e,0x4c,0x96,0x62,0xf3,0xe8,0x66, +0x62,0xa7,0x9c,0x2a,0x21,0x3b,0xb5,0x3d,0x27,0x72,0x17,0x78, +0x56,0x33,0xe3,0x44,0x0e,0x78,0xba,0x8e,0x20,0x4b,0x2a,0x73, +0x07,0x36,0xc2,0x8b,0xaa,0x75,0x3c,0x99,0x79,0x71,0xb0,0x68, +0x56,0xc1,0xd3,0xdd,0xa4,0x5e,0x2d,0x8b,0x68,0xea,0xca,0xbf, +0xa3,0xf3,0xf9,0xb6,0x11,0xce,0xa1,0xde,0xa6,0xf2,0x13,0x7f, +0xb1,0xc9,0x3f,0xbc,0xc8,0x2d,0xe1,0xa9,0x75,0x39,0xb1,0x96, +0xf0,0x0e,0x32,0x9f,0x7a,0x8a,0xbf,0x1d,0xa8,0x3d,0xd7,0x96, +0xc6,0xd1,0xa3,0xb6,0xbc,0xb4,0x8b,0xfc,0x4d,0x37,0x10,0x5b, +0x24,0x1e,0x72,0x07,0xd1,0x74,0x1f,0xb3,0xc1,0x2e,0x9e,0xb6, +0x2d,0x27,0x6d,0x0d,0x1c,0xc3,0x69,0xb6,0x88,0x47,0x79,0x5d, +0x7f,0xa9,0x95,0xb0,0xb3,0x22,0xa5,0xfa,0xbb,0xfa,0xaa,0xfc, +0x30,0x40,0xda,0xb4,0x96,0x8b,0xb5,0x0b,0xef,0x16,0xda,0xc7, +0x54,0x7e,0xec,0x2f,0xb1,0x06,0xb0,0x9c,0xd8,0x2a,0xf4,0x72, +0x43,0xd9,0x5c,0xe4,0x1b,0xf3,0x47,0x4e,0x24,0x67,0x66,0xab, +0xf7,0x3b,0x2f,0xe4,0xba,0x0d,0x19,0x4a,0xd7,0x75,0xd6,0x64, +0x06,0x13,0x75,0xce,0x93,0xd3,0x39,0xa7,0xad,0xd7,0xe3,0xb6, +0x04,0xe6,0x8a,0x18,0xe6,0x09,0x2b,0xab,0x53,0x37,0xe8,0x56, +0x52,0x2f,0x54,0x04,0xdb,0x5a,0xa5,0xcc,0x91,0xba,0x47,0x77, +0xef,0xd3,0x46,0x6d,0xff,0xbe,0x37,0x19,0x49,0x46,0xbe,0xaf, +0xfc,0xf6,0xae,0xc7,0x03,0xea,0x9e,0xa4,0x21,0xe6,0x1c,0xf1, +0xa1,0x97,0x44,0x8c,0xe7,0x99,0x57,0xde,0xd6,0x7a,0xe5,0x51, +0xca,0xeb,0xaf,0xa2,0xc9,0x41,0xbe,0x59,0x78,0xf7,0x50,0x17, +0x45,0x15,0xb1,0xc9,0x5a,0x5e,0x17,0x2c,0x79,0x0b,0x3b,0xca, +0x53,0xfe,0x7e,0xaf,0xce,0x95,0x1f,0xf4,0x33,0xb8,0xa1,0x6d, +0xb8,0xd3,0x12,0x2f,0x66,0x93,0x7e,0x12,0xd7,0xdc,0x61,0x00, +0x39,0x74,0xbd,0xc5,0x17,0x09,0x6f,0xa1,0x6c,0x21,0x0f,0x20, +0xfe,0xbc,0x6e,0x0c,0x03,0x59,0xb9,0x80,0xce,0x0e,0x24,0xb3, +0x69,0xa4,0xd2,0x8d,0xd3,0x96,0xf2,0x10,0x21,0x26,0x6f,0xea, +0xca,0x89,0xab,0xc7,0xad,0xb6,0xde,0xfe,0x60,0xcb,0xab,0x4f, +0xea,0x72,0xd9,0x2b,0x80,0xd0,0xc5,0x5c,0xf3,0x88,0x2e,0x4b, +0x5c,0x35,0xcb,0x69,0x03,0x6a,0xb7,0x9a,0xda,0x28,0x29,0x5b, +0x51,0xa9,0x7c,0x0d,0x2a,0x37,0x2c,0x97,0x1a,0x73,0x5f,0xe3, +0xdf,0x26,0x3e,0xdc,0x62,0xaa,0xd2,0x8d,0x57,0x64,0x4e,0xa0, +0x73,0x07,0x90,0xb9,0xee,0xe5,0xd2,0x0b,0x4e,0xde,0x24,0x3f, +0x15,0xca,0xc8,0x20,0xd1,0xba,0x82,0x77,0xa5,0x59,0x82,0xb4, +0x99,0xce,0x2d,0x23,0x47,0xe4,0x0a,0x36,0xac,0xac,0x24,0x5b, +0x04,0x46,0x47,0xad,0xca,0x75,0xc1,0x6e,0xf2,0x66,0x4e,0xf6, +0xb6,0x67,0xa4,0x03,0x6a,0x2a,0xf9,0x1b,0x56,0x53,0x56,0x4e, +0x58,0x35,0x76,0xb5,0xe9,0xb6,0xbb,0x5b,0x2a,0xaa,0xd4,0x85, +0xb2,0x63,0x10,0xf9,0x12,0xca,0xc5,0x76,0x89,0x74,0x61,0x59, +0x13,0xc3,0xaa,0x84,0x66,0x35,0x55,0xdb,0x6c,0xee,0xa7,0xbf, +0xc5,0x6f,0x97,0x6d,0x05,0xe2,0xe4,0x46,0x7d,0x18,0x02,0x1f, +0xba,0x85,0x2a,0xda,0x9a,0xef,0x5f,0x2e,0xed,0x75,0x93,0x3b, +0x32,0x81,0x94,0x63,0x12,0x9d,0x45,0xcc,0xe6,0xb7,0xc8,0xe1, +0xa2,0xf9,0x4d,0x56,0x64,0x56,0xf0,0x52,0x10,0xad,0xd1,0xeb, +0x78,0x76,0x7e,0xb9,0x30,0x90,0xcc,0x75,0x2c,0x97,0x2a,0xdd, +0xe4,0x41,0x9c,0xec,0x43,0x1b,0x31,0xea,0x20,0xfc,0x21,0xaa, +0x7f,0xf0,0x0f,0x37,0xc4,0xdd,0xd7,0x92,0x30,0x3a,0x92,0x9e, +0xe4,0xf5,0x7f,0xf1,0x74,0x8b,0x9c,0x25,0x50,0xb7,0x20,0xe2, +0x46,0xc3,0x6b,0x4a,0xf9,0xb1,0xb2,0x23,0x33,0xd4,0xbc,0x55, +0x73,0x56,0xff,0xce,0x0c,0x55,0xb2,0xe5,0xc9,0x2b,0x75,0x91, +0x5c,0x3f,0x88,0xdc,0x58,0xcc,0xc5,0xb6,0x8b,0x70,0x5c,0xea, +0x6b,0xba,0xbc,0x05,0xc5,0xd5,0xd4,0x98,0xe1,0x25,0xdc,0x29, +0xd8,0x10,0x97,0xaf,0xa5,0xdf,0x8a,0x89,0xc4,0x55,0xc4,0xdf, +0x4b,0xbc,0xc5,0x0c,0xd5,0x8a,0x97,0x69,0x31,0xca,0xbd,0x48, +0x6b,0x61,0x30,0xe9,0x19,0x54,0x24,0xdd,0xf1,0x96,0x87,0x73, +0xb4,0x92,0x5a,0x0a,0xc5,0x64,0x18,0x9e,0xe1,0xaf,0x5a,0xfd, +0xc1,0xa4,0xcf,0x5e,0x6d,0x9a,0x72,0x6b,0x4b,0xc9,0x43,0xf5, +0x2d,0xaa,0x1f,0x40,0xce,0x2e,0xe5,0x62,0x1d,0xa3,0x7c,0x97, +0x0e,0x30,0x5d,0xde,0x8a,0x9a,0xac,0xa6,0x46,0x36,0xf1,0xc1, +0xac,0x56,0xfc,0x43,0x2b,0xc9,0x42,0xbe,0xe6,0x32,0x4f,0x1a, +0x8a,0x0e,0x63,0x79,0x26,0xc4,0x94,0x09,0xf1,0x41,0x51,0xed, +0xcb,0x4b,0x6b,0xe9,0x4f,0x22,0xf2,0x0c,0xe6,0xf7,0xc9,0xed, +0x84,0xed,0x0f,0xb7,0x54,0x7f,0xfe,0x2f,0x97,0xda,0x47,0x74, +0x5e,0xe2,0xa2,0x89,0x61,0x2e,0xd5,0x2a,0xd6,0x64,0xc8,0x0e, +0xac,0xa7,0x34,0x2d,0x67,0x0d,0x47,0xed,0xd7,0xda,0x2b,0xf2, +0xfe,0xf5,0x83,0x4a,0xb4,0xff,0x93,0x27,0x3d,0x68,0x67,0x5e, +0x09,0x8e,0xf1,0xcc,0x31,0x05,0x5b,0x1e,0x3d,0x63,0x8e,0x71, +0x0d,0x24,0x3f,0x96,0x72,0x5d,0x23,0x5d,0x97,0x06,0x18,0x82, +0xc3,0x96,0x05,0xc7,0x5e,0xbe,0x27,0xdd,0x25,0x36,0x78,0xc4, +0x0a,0x81,0xbc,0x3a,0x8b,0x99,0xb4,0x1f,0x1d,0xc7,0x4f,0x5d, +0x35,0x71,0xd5,0xb8,0xd5,0xa6,0xa9,0x45,0x5b,0x2a,0x9f,0x33, +0x5b,0xd5,0xf2,0x75,0x8a,0x74,0x5e,0xe2,0xf7,0xaf,0x06,0x8c, +0x6f,0x8b,0x2c,0xd0,0x79,0x7c,0x7f,0xc6,0x16,0xcb,0xd8,0x6c, +0x44,0xbc,0xcc,0x6f,0x92,0x67,0x91,0xab,0x7c,0x8d,0x13,0x2f, +0xaf,0x5a,0xcf,0xd6,0xba,0x30,0x15,0x44,0xb3,0xa7,0x7c,0xca, +0x9d,0x2d,0xf7,0x2b,0xd5,0x7f,0xc9,0xae,0xfd,0xc8,0x8f,0x30, +0xae,0x47,0xa4,0xe7,0xd2,0xa0,0xff,0x38,0xbf,0x1f,0x1d,0x2d, +0x9a,0x3f,0xe3,0xf5,0x85,0x8c,0x6b,0x35,0xe3,0x6a,0xc3,0x14, +0x50,0xb8,0xb6,0xdd,0x4e,0x2e,0x7b,0xa4,0xbe,0xf3,0xff,0xb0, +0xf6,0xde,0x71,0x55,0x1d,0xcd,0xc3,0xb8,0x05,0xce,0x81,0x55, +0x10,0xcb,0x51,0xb8,0x2c,0x20,0x45,0xb0,0x80,0xbd,0x37,0xba, +0x95,0xa6,0xd1,0x18,0x7b,0x62,0x8f,0xbd,0x0b,0x36,0x10,0x35, +0xa2,0xa2,0x89,0x15,0x7b,0x4c,0x4c,0xef,0xe5,0x49,0x6c,0x49, +0xd4,0xa8,0x80,0x25,0x46,0x54,0xc0,0xae,0x69,0xc6,0x12,0x63, +0x89,0x66,0x0e,0xcc,0x5e,0x9e,0x77,0xe6,0x1c,0x50,0xf3,0x7c, +0xcb,0xfb,0x7e,0x3e,0xbf,0xdf,0x1f,0x7a,0x2f,0x67,0x67,0x67, +0x67,0xe7,0xcc,0xcc,0xce,0xcc,0xee,0xec,0xb5,0x7a,0xcd,0xd7, +0x3b,0xa4,0xc7,0xcf,0x4b,0x79,0x22,0xd2,0xaa,0xaa,0x30,0x3b, +0x63,0x82,0xf4,0x48,0x17,0x4d,0x85,0xb3,0x5a,0xb1,0xa6,0x96, +0x6d,0xa4,0xae,0xfd,0xa9,0x2b,0x33,0x61,0xe8,0x32,0xb7,0x6d, +0x67,0x36,0x5d,0xbf,0xe1,0x38,0xad,0x3a,0x26,0x5b,0xc2,0x18, +0xb1,0xb0,0xd3,0xdc,0x6e,0x96,0x30,0x32,0xfb,0xa8,0x3b,0x7c, +0x41,0x06,0xb9,0xfa,0xf3,0x42,0x06,0x5f,0x13,0x64,0x5a,0x1e, +0xaf,0xf9,0x73,0xc3,0x25,0xe9,0xfb,0x9e,0xb8,0x78,0x69,0xd5, +0xea,0x0b,0x01,0x30,0x83,0xd6,0x88,0xea,0x6b,0x2d,0x6b,0xcb, +0x1b,0x1e,0x3e,0x45,0xa6,0x0f,0x64,0xd9,0x1f,0x63,0x79,0x47, +0xd9,0xac,0x6e,0xec,0xf8,0x69,0xf3,0x7d,0x70,0x29,0xb7,0xa3, +0x64,0x6c,0xd0,0x75,0x41,0x84,0x6d,0x47,0xe1,0x3b,0x9c,0x7a, +0x96,0xfc,0x84,0x50,0xfb,0x23,0x95,0xcc,0xa9,0x2b,0x8e,0x32, +0x22,0x71,0x91,0xf3,0x0a,0x19,0x91,0xd1,0x7c,0xea,0x5f,0x0f, +0x65,0x93,0xd9,0x50,0xba,0xf9,0x89,0xd2,0x63,0xa2,0xc2,0x60, +0x05,0x2f,0x6c,0x33,0xc7,0xb2,0x12,0x30,0x13,0x83,0x43,0x64, +0xe0,0x6e,0x11,0x02,0xc1,0x5a,0x2c,0x06,0x1b,0x38,0x13,0x82, +0x61,0xa6,0x76,0x4f,0xb5,0xb0,0x2c,0xa0,0xbf,0x87,0x80,0xf9, +0x18,0x74,0x96,0x96,0xc7,0x51,0xf6,0xc7,0x7c,0xcb,0x14,0x1e, +0x32,0xc8,0x4f,0x73,0x8b,0xc2,0x02,0x36,0x9b,0xa6,0x4b,0x94, +0x86,0x87,0xa5,0x57,0x4d,0x51,0x12,0xce,0x4b,0x6b,0x87,0xb9, +0x18,0x34,0x0d,0x3d,0xf9,0x4c,0xc5,0x3b,0xe0,0xb9,0x1d,0x1a, +0x43,0x17,0xf2,0xc9,0x6e,0xf7,0x32,0x5f,0xd7,0x9d,0x9a,0x3a, +0x61,0x44,0xd0,0x62,0x9a,0x60,0xd6,0x32,0x76,0x5c,0xdf,0x72, +0x0f,0xaa,0xd2,0xcc,0x0a,0x7b,0x9b,0x2b,0xb2,0x74,0xac,0x4a, +0x13,0xeb,0xe0,0xaf,0x2e,0xf5,0x2c,0x39,0x42,0x53,0xe9,0x8b, +0x6b,0x0c,0x73,0x15,0xee,0x2c,0x86,0x6b,0xea,0x02,0xaf,0x29, +0x60,0x1a,0x3b,0x7e,0x23,0x07,0x4f,0x38,0xf2,0xb8,0xc7,0xca, +0x65,0xc4,0x0b,0xf7,0x05,0x0d,0xe7,0xb4,0x62,0x5e,0x70,0x17, +0xf5,0x6f,0xec,0x41,0xb3,0x5f,0x6c,0xae,0xa0,0x95,0xf6,0x0a, +0x87,0x08,0x6b,0x65,0xfd,0xdb,0xc4,0x89,0x91,0x42,0x95,0xaa, +0x40,0xe9,0x4f,0xfe,0xc3,0x9b,0xc2,0x29,0xd4,0x62,0xe9,0xb3, +0xcd,0xfa,0x5a,0x8b,0xbe,0x7a,0x6f,0xe2,0xaf,0x14,0x1e,0xb4, +0x90,0xb5,0xdf,0xb1,0x3a,0xd2,0x12,0x3d,0x99,0x53,0x29,0x3b, +0xe1,0x17,0xe7,0x00,0x81,0x63,0x54,0x67,0x8d,0x09,0x0e,0x63, +0xb3,0x7f,0xfb,0xb1,0xf4,0xda,0x24,0x82,0x16,0xb6,0xe2,0x95, +0xef,0x52,0xaf,0x92,0x23,0x16,0x3b,0x3e,0xb5,0x56,0x86,0x04, +0xd3,0x8b,0xde,0x16,0xcd,0xc9,0xe5,0xe9,0x9c,0x5c,0x17,0x34, +0x25,0xef,0xbd,0x7c,0x4e,0xe4,0xef,0x5f,0x90,0xde,0xdb,0x6d, +0xea,0xc2,0xb1,0xab,0x74,0xcc,0x15,0x25,0x89,0x14,0x2f,0x6d, +0x3f,0xbf,0xf9,0xe7,0x3f,0x1d,0x87,0x54,0x51,0x82,0x99,0x4d, +0xaf,0xa7,0xd1,0xc2,0x8e,0xa9,0x31,0x6e,0xea,0x72,0x89,0xb7, +0x50,0xbb,0xb1,0x99,0x91,0x0c,0x1f,0xe4,0xe9,0xe8,0x82,0x9f, +0x90,0x85,0xb6,0x66,0x03,0x2a,0x48,0xfa,0x8f,0xb6,0xbf,0xef, +0xc1,0xe6,0x46,0x02,0x7c,0x74,0x5c,0x57,0xa3,0x71,0x18,0xc4, +0xb1,0x5a,0x1f,0xc5,0x28,0xf2,0xde,0x6a,0xcc,0x0d,0x99,0xd9, +0xf2,0x6c,0xba,0xf7,0x9b,0xbf,0xef,0x00,0x1d,0xea,0x38,0x2e, +0xab,0xe7,0x7a,0x9b,0x42,0x57,0x3d,0xd4,0x48,0xa9,0x77,0x65, +0x8f,0xac,0x09,0x6c,0x32,0x46,0x2d,0x1d,0xfe,0xca,0x10,0x92, +0xe3,0xcb,0x9b,0xef,0x3c,0x22,0x07,0x2f,0x36,0x01,0x4a,0x67, +0xea,0xf5,0x17,0x34,0x4b,0xed,0x44,0x3a,0xe8,0x81,0x72,0x19, +0x7a,0x97,0xdd,0x15,0xe4,0x81,0x95,0x18,0x30,0x3a,0x12,0xa7, +0x91,0x45,0x7d,0x97,0x7c,0x5a,0x75,0x41,0x60,0x63,0x20,0x27, +0xf3,0x3d,0xce,0x10,0x90,0x59,0x99,0x2c,0xa4,0x0b,0x45,0x37, +0x97,0x9d,0xb1,0x06,0xfc,0x0b,0x9a,0xfe,0x54,0x9e,0x0a,0xf6, +0xef,0x05,0x67,0xa2,0x74,0x4c,0x89,0x6d,0x81,0xbb,0xb0,0xbe, +0xbf,0xa7,0xf4,0xda,0x25,0xd4,0xaf,0x6a,0x83,0x01,0x7b,0x40, +0xbf,0xca,0x59,0x99,0xdb,0xca,0xd1,0x1b,0x4e,0x8d,0xd4,0xb1, +0x6e,0x5c,0x6f,0xdc,0x19,0xec,0x5f,0x32,0x10,0xab,0x4b,0x2f, +0x7f,0x11,0x26,0x9c,0x61,0xe7,0x4b,0xc2,0x74,0xe7,0x40,0x35, +0xc3,0xda,0xc7,0xd9,0x03,0xd5,0xaf,0x71,0x3a,0xe5,0x9e,0xf2, +0xed,0x05,0xa7,0x38,0x31,0x1c,0xd7,0x8b,0x62,0xf9,0xca,0xfe, +0x30,0x5c,0x85,0x4b,0xcf,0x0f,0x45,0x59,0xb6,0x20,0xe0,0x04, +0xe3,0x0b,0x02,0xde,0x0b,0x2e,0x57,0x8b,0xa0,0xab,0xe3,0x96, +0x72,0x48,0xb7,0x7c,0x41,0xba,0x35,0x52,0x7a,0xf6,0xa3,0x90, +0x8f,0xbc,0xcc,0x61,0x6a,0x99,0xf4,0xa0,0xb5,0xdf,0xf7,0xbe, +0x80,0x20,0xe7,0x77,0xd0,0xf1,0x3f,0x7b,0x5e,0xb3,0x7b,0xfa, +0x5a,0x3d,0x47,0xab,0x51,0xd2,0xe3,0xa8,0x28,0xbd,0xc1,0x20, +0xf1,0xe5,0x20,0x55,0xaf,0x72,0x92,0xe4,0xa6,0x72,0x10,0x25, +0xbc,0x93,0x15,0x97,0x88,0x3b,0xc3,0xfc,0x61,0x8c,0x9a,0x20, +0x3d,0x86,0x0b,0x45,0x61,0xd2,0x5e,0x5a,0x7a,0xff,0xb4,0x28, +0x1d,0x41,0xb1,0xb6,0x45,0x69,0x25,0x7f,0x7b,0x1a,0xd5,0x68, +0x1a,0xdd,0x1c,0x97,0xd4,0x01,0x43,0xfa,0xbc,0x24,0xd4,0x4f, +0x02,0xf7,0x41,0x89,0x71,0xcb,0x42,0xc6,0xdb,0x53,0x71,0x09, +0xb8,0x33,0x94,0xfc,0x04,0x1e,0xc8,0xf5,0x2a,0xef,0x40,0xc1, +0x7c,0x75,0xa6,0xec,0x8e,0x90,0x5e,0x6f,0x31,0xf3,0x5e,0x65, +0xe6,0x69,0x57,0x39,0x59,0x72,0xcb,0x62,0x1e,0x27,0x7e,0xb8, +0x53,0x03,0x7f,0xb3,0x9b,0x7a,0x59,0x56,0xcf,0x10,0x65,0x5d, +0x18,0xe9,0xdf,0xc6,0x93,0xf6,0xda,0x76,0xbb,0x4d,0xbd,0x8d, +0xf4,0x3c,0x27,0x63,0x19,0x70,0xaf,0x05,0x68,0xcd,0xf6,0x59, +0x06,0xe0,0xc7,0x6a,0xfc,0x43,0x21,0x83,0x9a,0x0a,0x75,0x0d, +0x2e,0x4a,0xef,0xf1,0xf4,0xbd,0xb9,0x50,0x37,0xa0,0xa1,0xac, +0x7b,0x89,0xbe,0xb7,0xe0,0xef,0x61,0xd2,0xd8,0x41,0xdf,0x4f, +0xf0,0xf7,0x61,0xb2,0x2e,0x71,0xd8,0xed,0x3b,0xa1,0x86,0x15, +0xc1,0x00,0x70,0x9c,0xd0,0xd5,0x8d,0x22,0xe7,0x97,0x62,0x26, +0x5e,0x92,0xfa,0x46,0x72,0xc0,0x9a,0x31,0x54,0x00,0xcc,0x16, +0x78,0xcb,0x39,0x44,0x6a,0xaf,0x09,0x19,0xb8,0x44,0x40,0x18, +0x7c,0x22,0x9a,0xab,0x46,0x66,0x55,0xc2,0x63,0x41,0x04,0x4a, +0x23,0x9c,0xbe,0xe7,0xd2,0xf7,0x07,0xb2,0xb6,0x37,0x85,0x85, +0xbb,0xc4,0x55,0x02,0x82,0x32,0x7c,0xf3,0x0f,0x6a,0xc8,0xa7, +0x86,0x9f,0xf9,0xef,0x04,0x72,0xb0,0x97,0xfd,0x77,0x23,0x4e, +0xc7,0x8b,0x52,0x7f,0x9b,0xe3,0xa9,0xdf,0xd1,0x03,0xce,0xf3, +0x36,0xb5,0x99,0x04,0x1e,0x6a,0x8c,0x15,0x34,0x1e,0x93,0xde, +0x2b,0xc8,0x04,0x2d,0xb2,0xf7,0xd2,0xbc,0x60,0x42,0x9c,0x5a, +0x7a,0x86,0x0c,0xa8,0x17,0xce,0x3b,0x23,0xbd,0x87,0x0b,0x4c, +0x54,0xdb,0xcc,0x37,0x44,0x89,0x2b,0x6f,0xa6,0x79,0xe1,0xe5, +0x33,0x25,0x11,0x71,0xf8,0x0e,0x01,0x6e,0xb2,0xf6,0x5e,0x54, +0x55,0xf3,0xc7,0xb2,0x2f,0xc5,0x4b,0x1a,0x56,0x1d,0xd9,0x13, +0xab,0x87,0xfa,0x1f,0x1a,0xe1,0x0a,0x75,0xc0,0x75,0xdf,0x39, +0x08,0x72,0x2c,0xc6,0xab,0xc6,0x61,0xfa,0xbb,0x16,0x54,0xff, +0xfa,0x3c,0xb4,0x76,0xfc,0x8d,0x3d,0x93,0xc1,0xa5,0xbf,0x8e, +0xf5,0x46,0x77,0x43,0x2e,0xfd,0x38,0x82,0xd7,0x4d,0xf6,0x77, +0xef,0x0a,0x33,0x85,0xb0,0x8c,0xd1,0xd4,0x0b,0xa2,0xb3,0x73, +0xa4,0x19,0x25,0xc0,0x47,0xb4,0x72,0xce,0x70,0x3a,0x85,0x4d, +0xd9,0x4c,0x1a,0x70,0x4c,0x9c,0x5a,0x70,0x06,0x26,0x11,0x11, +0xa9,0x67,0xcc,0x8d,0xba,0xca,0x7d,0xd2,0x05,0xdb,0x38,0xa7, +0x9b,0x0d,0xca,0x41,0x27,0x12,0xe8,0x30,0x6b,0x37,0x67,0x08, +0x81,0x8e,0x3a,0xc3,0xbb,0x39,0xb9,0x14,0xef,0x09,0xb8,0xa1, +0x3e,0x83,0xc7,0x3c,0x93,0xe9,0x3c,0x93,0xfd,0x67,0xcc,0xab, +0x71,0x15,0x53,0x4e,0xb7,0x66,0xd2,0xc7,0xc0,0xc1,0x49,0x50, +0x77,0x94,0x56,0x7f,0x64,0x6f,0xac,0xde,0x50,0xed,0x15,0x50, +0x75,0xdf,0x19,0xf0,0x77,0x40,0xc3,0xd9,0x06,0xd6,0x1a,0xd3, +0x1d,0xab,0x05,0x96,0xd4,0x17,0xe0,0xf6,0x75,0x31,0x34,0x73, +0x3c,0xc2,0x9e,0x49,0xe0,0xa2,0x43,0x7f,0x75,0x1d,0xa6,0x58, +0x93,0x20,0xa3,0xfc,0x0b,0x0e,0x4e,0x86,0xba,0x63,0x74,0xa2, +0x0a,0xae,0xa8,0x3f,0x61,0xdb,0x3f,0x27,0x30,0xfd,0x0c,0x8c, +0xa0,0xb1,0x17,0x9c,0x31,0xb7,0x3e,0x3b,0x01,0xa8,0xad,0x3a, +0xc2,0x4a,0x21,0x03,0x0a,0x84,0x1a,0x08,0xfd,0x2c,0xf1,0x0a, +0xf8,0x4d,0xa8,0x17,0x0f,0xb0,0x74,0x39,0xcf,0x09,0xf5,0x5a, +0x21,0x78,0x38,0x8f,0xd0,0x93,0x43,0x2c,0x63,0xea,0x36,0xbd, +0xe4,0x42,0xa8,0x2c,0x5d,0xa8,0xc3,0x8b,0x7b,0x9f,0x8a,0x15, +0x6e,0x28,0xff,0xbb,0xa7,0xea,0x5e,0x76,0x53,0x94,0x64,0xda, +0xa7,0x13,0xea,0xc0,0x80,0x78,0x67,0x41,0x01,0xe4,0x41,0x1d, +0xbc,0x56,0xc0,0xaf,0xfd,0x38,0xbf,0x76,0xb8,0xae,0x6a,0xf1, +0xee,0x5a,0x1d,0x6b,0x77,0xed,0xdf,0xbc,0xbb,0xe6,0x8d,0x93, +0x4e,0x97,0x44,0x74,0xc3,0x76,0xe8,0x0d,0x8d,0xba,0x39,0xb5, +0xd3,0x1a,0x3a,0xff,0xbf,0xbc,0x61,0x73,0x39,0xbc,0xc9,0x9b, +0x6f,0xde,0xbc,0xf9,0x76,0x52,0xfd,0x49,0xaf,0xdb,0x72,0x81, +0xf1,0x24,0x36,0xd4,0x57,0xbf,0x93,0xfd,0xde,0x87,0x0e,0x08, +0xc1,0xf1,0xbd,0x21,0xb0,0xa3,0x8e,0x09,0x83,0x9b,0xa2,0x1f, +0x46,0xf8,0x1f,0x1e,0xf6,0x08,0xaa,0xe7,0xfe,0xb2,0x0b,0xdc, +0x7c,0xa0,0xa5,0xca,0x20,0xcf,0x5b,0x73,0x0e,0xc1,0x10,0x03, +0xda,0x26,0x68,0xd8,0x7e,0x50,0x3b,0x0c,0xc1,0x10,0xff,0xef, +0x87,0xb9,0x42,0x13,0x68,0x96,0x7b,0x07,0x52,0x1c,0x50,0x13, +0x17,0xea,0x9e,0x25,0xa3,0x18,0xf1,0x34,0xac,0x93,0x40,0x33, +0x5a,0x54,0x48,0xb1,0xa1,0x5a,0xf8,0x82,0x81,0x0b,0x12,0xa1, +0xed,0x28,0x32,0xca,0xef,0x8b,0x16,0xd8,0xc3,0x5c,0x28,0x6c, +0xb0,0xf1,0x36,0xd8,0xc2,0x42,0x73,0x1d,0x81,0xa1,0xbf,0xf4, +0xf1,0x13,0xb4,0xaa,0xc4,0xe2,0x7a,0xb2,0xdd,0x9b,0x05,0x66, +0xc8,0x9a,0x85,0x02,0x32,0xa9,0x7b,0x02,0xb4,0x1d,0x41,0x93, +0x1f,0xd8,0x0b,0x83,0x83,0xfc,0x0f,0xd2,0xa8,0xe1,0xe0,0x9e, +0x5b,0x08,0xc1,0x8e,0x6c,0xbc,0x6e,0x1c,0xa2,0xbf,0x1b,0x42, +0x8d,0xc3,0x17,0x29,0x62,0x86,0x2a,0x38,0x3e,0x01,0x82,0x68, +0xf6,0xc6,0x90,0x38,0x0c,0xc0,0xaa,0xfe,0xab,0xf1,0x17,0xa9, +0x5f,0x24,0xcf,0xaa,0xa5,0xc0,0xfe,0x58,0x87,0x2f,0x5c,0x50, +0xad,0xe1,0x65,0x8b,0xa6,0x76,0x13,0x88,0xa6,0x87,0x62,0x95, +0x8a,0x29,0xed,0x53,0x4e,0xd3,0x38,0xac,0x93,0x48,0x34,0xcd, +0x29,0x34,0x97,0x13,0x4d,0x43,0x64,0xf5,0x78,0xd1,0x5d,0x35, +0x2a,0xcd,0x2a,0x6f,0x1e,0x89,0x75,0x92,0xa8,0x79,0x7c,0xa1, +0x39,0x9b,0x9a,0x5f,0xb4,0xb1,0x8c,0xd5,0xc2,0x5e,0x48,0xc6, +0xe0,0xc6,0xfe,0x07,0x86,0xbb,0x42,0xc4,0xdf,0xb9,0x05,0xe0, +0x43,0x84,0xe5,0x1a,0x07,0x65,0x0d,0x10,0x38,0x3e,0x11,0x82, +0x07,0xe9,0xe8,0x3e,0xb8,0x17,0x06,0x90,0x41,0x6c,0x89,0x13, +0x9c,0x1f,0xd0,0xfc,0x68,0x95,0x9f,0x66,0xcd,0x2f,0xc8,0xb8, +0x61,0xf3,0x47,0x67,0xfe,0xc0,0xdb,0xb8,0x0a,0xf7,0x08,0x15, +0x24,0x70,0x9c,0x74,0x5f,0x2f,0xc0,0xcf,0xf8,0xcd,0x6a,0x1e, +0x43,0xcd,0x1f,0x08,0xb3,0x0b,0xee,0x92,0xae,0xaf,0xd0,0x74, +0x5a,0x55,0x00,0xcc,0x61,0x1a,0x61,0x74,0xab,0x92,0xf3,0xf4, +0xb4,0xc5,0xb3,0x93,0xac,0x6b,0x5c,0xb5,0xba,0x4e,0xd0,0x5b, +0x0c,0x94,0x41,0xe4,0x61,0x7c,0x61,0x1c,0x1c,0x26,0x43,0x68, +0x90,0xa0,0x17,0xf5,0xfa,0x43,0x92,0x30,0xa0,0x89,0xff,0x29, +0x6c,0x50,0x92,0x49,0x93,0x83,0x53,0x46,0xa1,0x39,0x58,0x06, +0xa5,0x8a,0x72,0xde,0xb4,0x1d,0xaf,0x35,0x1b,0xd8,0x17,0x83, +0x9b,0x4b,0xbf,0x0d,0xd4,0x61,0xb8,0x8e,0x95,0x87,0x24,0x62, +0x40,0x63,0xff,0xe5,0x2a,0x06,0xee,0x89,0x92,0x0c,0x6c,0x47, +0x01,0x07,0x16,0x18,0x8d,0xb4,0x55,0x24,0x43,0x1f,0x38,0xc0, +0x1f,0xbb,0x25,0x43,0x65,0x92,0xb1,0x9e,0xa3,0x9b,0xa3,0x1b, +0x86,0xf9,0x1f,0x19,0xf9,0x33,0x68,0xfb,0xaf,0xbd,0x0e,0x2e, +0x3e,0x8f,0xd5,0x48,0x8a,0x48,0xf0,0x58,0x57,0x03,0x07,0x24, +0x43,0xad,0x44,0x0d,0xdb,0x8c,0x6e,0x8f,0xee,0xe8,0xef,0x7f, +0x68,0xa4,0x2b,0xd4,0x84,0xc6,0x7b,0x7e,0x87,0x5e,0x0e,0xdb, +0x06,0xaa,0x37,0xad,0x2c,0x53,0x5b,0x8c,0x36,0xb0,0xe6,0xe8, +0x9e,0xe8,0x1e,0xe4,0xff,0xfd,0xc8,0x9f,0x2e,0xee,0xcb,0xdb, +0x79,0xd1,0x87,0xde,0xef,0x9c,0x02,0x33,0x3b,0x1e,0xc7,0x4b, +0xf7,0x95,0xe2,0x21,0xf6,0x48,0x21,0xf5,0xc7,0xb0,0x5c,0x03, +0x07,0xa5,0x80,0x31,0x4a,0x0b,0x24,0xab,0x21,0x1a,0x97,0x04, +0x08,0xa8,0x4c,0x56,0xc3,0xcf,0xf1,0xb2,0x5a,0x52,0x7a,0x46, +0xbc,0x2a,0x9c,0x11,0x64,0x5d,0x0a,0x20,0xda,0xf8,0x7e,0xc4, +0xcf,0x57,0xf7,0x1d,0xdf,0x79,0xcd,0x07,0x2a,0xe3,0x6f,0x56, +0xe6,0x7c,0x76,0x43,0x6d,0x95,0xb5,0xd3,0xf4,0x37,0xf6,0xb0, +0x15,0xc7,0x9b,0x14,0xc7,0x9d,0x56,0xc7,0x75,0x66,0x27,0xc2, +0x9b,0x0c,0x46,0xb9,0xe2,0x89,0x06,0xfe,0x07,0x89,0xda,0xda, +0xe5,0x8a,0x77,0xc0,0xd9,0xb8,0x74,0xbf,0x6d,0x5b,0xd4,0xa6, +0x33,0xe6,0x26,0x26,0xb9,0xb3,0xf4,0x7c,0x4d,0xe0,0xf4,0x02, +0x33,0x23,0x1e,0x47,0x12,0xe2,0x1d,0xd9,0xaf,0xbf,0xe1,0xb8, +0xff,0x84,0x4c,0xe9,0x11,0x2a,0x16,0x39,0x9f,0x2f,0x5d,0x4e, +0x24,0xa9,0xeb,0x16,0x49,0x6e,0x06,0x4d,0xee,0x12,0x4d,0xee, +0x32,0x4f,0x6e,0x52,0x81,0x99,0x59,0x3e,0xb9,0x47,0x16,0x39, +0x03,0x68,0xa9,0x1c,0xdd,0x03,0xdd,0x03,0x89,0x9a,0xe6,0x36, +0x35,0x23,0x2d,0xdb,0x28,0x1a,0xf2,0x2c,0xcb,0x6d,0xe3,0x5d, +0x75,0xa4,0xe4,0x4c,0x39,0x29,0xdb,0xcf,0xb0,0xd6,0x55,0x90, +0x32,0xa6,0xc0,0x9c,0xf9,0x3f,0x92,0x02,0x1f,0xa8,0xfa,0xa5, +0xf5,0x44,0xc9,0x10,0x16,0xed,0x59,0xb6,0x68,0xc7,0x91,0x60, +0xde,0xb5,0xb6,0xbd,0x06,0x61,0x90,0x01,0x2d,0x7b,0x69,0xd8, +0x69,0x70,0x5b,0x0c,0xc4,0x50,0xff,0xef,0x49,0xbc,0x1b,0x41, +0x8b,0x23,0x77,0xa0,0xaf,0x03,0x6a,0xe3,0x5c,0x1d,0xde,0x4d, +0x30,0x20,0xa0,0x9d,0x86,0xc9,0x43,0x22,0x50,0x62,0x73,0xff, +0xc3,0x2f,0xba,0x42,0x08,0x74,0x3e,0xfc,0x08,0x46,0x39,0x28, +0x0c,0x18,0xa7,0x7b,0x5a,0x8a,0xec,0x40,0x47,0x22,0x38,0xd0, +0xdb,0xfa,0xd0,0xc8,0xce,0x5e,0x31,0x70,0x6e,0x22,0xb4,0x62, +0xbe,0x0e,0xea,0x85,0x41,0xb6,0x4e,0x37,0x01,0xf7,0xa3,0x85, +0x10,0xe2,0x80,0xc4,0x59,0x06,0xd6,0x1d,0x12,0x8f,0xfe,0xe8, +0x62,0x8d,0x19,0x06,0x35,0x0e,0x5d,0x80,0xb6,0xac,0xdc,0xe3, +0x12,0x21,0x50,0xc7,0x58,0x67,0x9f,0x27,0x3a,0xed,0x82,0x8e, +0x64,0x70,0x04,0x5a,0xff,0x33,0xea,0xef,0x08,0x75,0x12,0xb4, +0x1e,0xaf,0x35,0x1d,0xd8,0x07,0x83,0x9a,0x5b,0x3a,0x19,0xfe, +0xe0,0xe8,0x29,0xbe,0x04,0x21,0x89,0x10,0x57,0xb1,0xa5,0xf8, +0x20,0x51,0xda,0xe8,0xef,0x43,0xa7,0xa1,0x81,0xe3,0x0f,0x1c, +0x97,0x04,0x41,0x3a,0xc6,0x3b,0xe7,0x91,0x19,0xb0,0x34,0xd3, +0xb0,0x09,0xae,0x8e,0x8e,0x24,0xc6,0xda,0x09,0xe6,0x92,0x92, +0xa6,0x25,0x42,0xcb,0xd1,0x7a,0xd0,0xa0,0x44,0x0c,0x0c,0xf3, +0x3f,0x48,0x68,0x1b,0x43,0xd5,0xa3,0x67,0x49,0xc8,0x20,0x81, +0xf0,0x7a,0x0e,0xe9,0x81,0x7e,0xf5,0x4b,0xda,0x0b,0x10,0x87, +0x8a,0xac,0xa5,0x69,0x6c,0x22,0xd4,0xd7,0xff,0x50,0xbf,0x1b, +0x69,0x1b,0xd2,0x57,0xa6,0x2d,0x98,0x39,0xd7,0x5b,0xba,0x2d, +0x12,0x03,0x7a,0x60,0x16,0x19,0xe5,0xaf,0xfa,0x40,0xdd,0xfc, +0xcb,0xdf,0x7c,0xfb,0x8d,0xcf,0x96,0x8d,0x5b,0x56,0x6c,0xcd, +0x84,0x1d,0xd8,0xc2,0x7b,0x77,0xae,0xab,0x27,0x6b,0xbe,0x97, +0x3d,0xbc,0x3e,0x5e,0xf0,0xd8,0xb3,0xc8,0x02,0xf0,0xd8,0x63, +0xf4,0x06,0x83,0x92,0x30,0xb0,0x91,0xac,0x19,0x24,0xce,0x80, +0x2f,0x0d,0x4b,0x2b,0x62,0xf5,0x21,0x3d,0xd1,0x2f,0x98,0x87, +0xd5,0x0f,0x15,0x42,0x84,0xe3,0xa1,0x3d,0x2c,0xac,0x52,0x7f, +0x1b,0x0b,0x37,0xcc,0x5f,0xb9,0x20,0x23,0x7d,0x91,0xf7,0xb2, +0x55,0xd2,0xab,0x9d,0x08,0x9d,0xf8,0x9c,0xb5,0xf9,0x9e,0xbe, +0x71,0x7e,0x36,0x3e,0x10,0x3b,0xbf,0x5a,0xbf,0xe7,0x90,0xe3, +0x93,0xb8,0x09,0x7a,0xe0,0xd0,0xee,0x58,0x8f,0xe4,0xfd,0x9b, +0x17,0x4e,0xe7,0xed,0xdf,0xf7,0xe1,0x7e,0x9f,0xb5,0xeb,0xd6, +0xaf,0x5c,0x9f,0x09,0x11,0x44,0x52,0xe1,0xf1,0x6f,0xf6,0x7f, +0xb8,0x6f,0xed,0x6b,0xeb,0x78,0x23,0x3e,0x0c,0x43,0xbc,0xbf, +0x3d,0xe0,0xea,0x69,0x59,0x9f,0x7f,0x12,0xf9,0xa3,0x61,0xd3, +0x48,0x06,0xf5,0xb8,0xf8,0x48,0x45,0xb2,0x35,0x0a,0xe8,0x23, +0xf8,0x75,0xf0,0xf3,0x09,0x5a,0xd3,0x41,0x7d,0x30,0xb0,0x85, +0xff,0x01,0x32,0x40,0x1f,0xd2,0xaa,0x34,0x34,0x01,0xfd,0x9b, +0xf8,0x1f,0x22,0x2e,0x36,0xfc,0xfb,0xa0,0xfd,0x16,0x2c,0xc2, +0xb1,0x9b,0x73,0x2e,0x9b,0x97,0x45,0xd6,0xd1,0x3c,0x5e,0x27, +0x71,0x35,0xce,0x31,0x5a,0x25,0xfe,0x82,0x1d,0x9b,0x26,0xde, +0xc4,0xcb,0xd6,0x21,0x3b,0x3c,0xdb,0xc5,0xc0,0xe7,0x53,0xa0, +0x16,0x2d,0x46,0x6d,0x47,0xb7,0x25,0x6d,0x0d,0xf0,0x3f,0x34, +0xca,0x15,0xbc,0xc8,0x90,0xdc,0x82,0xde,0x8e,0x4f,0xf2,0x0d, +0xa8,0xd4,0x51,0xc3,0xde,0x63,0xd8,0x12,0x35,0xf2,0x3f,0x4c, +0x6d,0x9e,0xd0,0xfa,0xeb,0xfb,0x30,0x8c,0x82,0x00,0x8c,0xd3, +0x3d,0xa1,0xb0,0xc4,0xc3,0xc8,0xc6,0x26,0x33,0xd0,0x75,0x3c, +0x56,0x3a,0x3d,0xdf,0xfb,0x13,0xa8,0xba,0x0b,0x04,0x34,0x72, +0x5c,0xc4,0xfd,0x09,0x30,0x43,0x37,0x3d,0x96,0x50,0x7b,0x78, +0x1a,0xba,0x4f,0x0f,0x3c,0xbb,0xd0,0x7b,0x17,0x54,0xd9,0x0e, +0x6e,0xd0,0xd8,0x71,0x05,0x4f,0x24,0xc0,0x62,0x1d,0x87,0xa8, +0x73,0x06,0xe4,0x46,0x61,0xae,0x32,0x82,0x85,0x27,0xac,0x30, +0xa3,0x8d,0xd3,0x69,0xae,0xff,0xba,0xf4,0xde,0xaf,0x8f,0x64, +0xd0,0x6b,0x62,0x99,0x71,0x66,0xa1,0xeb,0x9b,0x17,0x65,0x83, +0x77,0x44,0xe8,0xbc,0x8e,0x33,0x63,0xdd,0xb0,0x71,0x0b,0x03, +0x92,0x62,0x30,0x49,0xd5,0xb4,0xf6,0x9a,0xd2,0x4a,0x0b,0x04, +0x2c,0x37,0x9b,0x19,0x05,0xd4,0xeb,0xca,0x7b,0xbf,0x43,0x25, +0x47,0x2e,0x7e,0x98,0x08,0x23,0xf4,0xec,0x06,0x53,0x3a,0x8e, +0xec,0xe2,0x66,0x06,0xda,0x38,0x2e,0x6f,0xfb,0x19,0xaa,0x38, +0x8e,0xe1,0xfe,0x44,0x98,0xae,0x67,0x07,0xcd,0x6b,0x3b,0x33, +0x8a,0x90,0x35,0x32,0xa0,0x7f,0x0c,0xf6,0xb7,0x90,0x55,0xc5, +0xe6,0x9c,0xd8,0x85,0x6c,0x73,0x9c,0x71,0x7a,0x8e,0xeb,0x97, +0x85,0xef,0x5e,0xbe,0xe5,0xf8,0x16,0x3f,0x4c,0x26,0x64,0x6d, +0xa6,0x76,0x1f,0xd3,0xcb,0xdf,0xf4,0x7f,0x85,0x71,0xed,0x3a, +0xb3,0xb5,0xf8,0xb6,0xe3,0x7b,0xdc,0x9f,0xcc,0xa8,0x5a,0xce, +0x8b,0x9d,0x99,0x40,0xa8,0xda,0x1a,0xd0,0x21,0x06,0x3b,0xa8, +0x9a,0xc1,0x02,0xef,0x63,0x20,0x05,0x4e,0xd5,0x0e,0x70,0xb0, +0x3a,0x53,0x7a,0x4e,0x15,0xd2,0xbb,0x97,0x68,0xc1,0x09,0x63, +0xcd,0x49,0x11,0x8a,0xcf,0x37,0xa2,0x95,0x01,0xbd,0x62,0xb0, +0x97,0x35,0x70,0x6f,0x15,0x6d,0xc7,0xa5,0x3f,0x72,0x5c,0xda, +0x97,0xe3,0x52,0x58,0x69,0x0e,0xb4,0x18,0x51,0xfc,0xee,0xf5, +0x3f,0x1d,0xdf,0x49,0xf7,0x3f,0x44,0xf3,0x29,0xb1,0xa3,0xe3, +0xdd,0xcc,0x00,0x6b,0x3a,0xbb,0x0a,0xb7,0x5e,0xfa,0xd3,0x71, +0x44,0xba,0xdf,0x15,0x11,0xf3,0xa2,0x66,0x76,0xa7,0xf1,0xdb, +0x18,0x10,0x19,0x83,0x91,0xaa,0x66,0xe3,0x8a,0x24,0x33,0x71, +0x33,0xb6,0x9c,0x9b,0xbf,0xfd,0xc5,0xdc,0xcc,0xb2,0x38,0x71, +0x81,0xb9,0x19,0x56,0xce,0xcd,0xa6,0x06,0xf4,0x8d,0xa1,0x31, +0x6b,0x5a,0x7b,0x60,0x5f,0x95,0xdd,0xb2,0xc9,0xb6,0xd2,0xc5, +0xa9,0xf4,0xfd,0x20,0xef,0x66,0x5d,0x2e,0xeb,0x6b,0xcd,0x20, +0xa9,0xe4,0x48,0xbe,0x4e,0xa1,0x6b,0x80,0xf3,0x2f,0xe1,0xac, +0xcd,0xf1,0xaa,0x6b,0xd9,0x50,0x0a,0x00,0x8e,0x09,0x67,0x14, +0xbc,0x21,0x43,0xa4,0x80,0x4a,0x50,0xdd,0x71,0x0d,0xd3,0x92, +0xa0,0x85,0x0e,0x5f,0xcf,0xa1,0x57,0xef,0x35,0xbf,0xf1,0x9c, +0xd6,0xa7,0x33,0xbc,0x77,0xde,0xd8,0x72,0x17,0x6a,0x38,0x7e, +0xc1,0x79,0x64,0x56,0xc8,0x1a,0xab,0x0c,0x03,0xb6,0xc6,0xe3, +0x0e,0x7d,0x59,0xeb,0x66,0xcb,0x5b,0x5a,0xfb,0x02,0xa3,0x61, +0x6a,0xce,0x2e,0x68,0x12,0xb0,0x24,0xbf,0x7b,0x46,0xfb,0x25, +0xbc,0x95,0x23,0x3d,0xf7,0x0a,0x67,0x1c,0x0c,0x90,0x8e,0x77, +0x05,0x5e,0x95,0x1e,0x7b,0xc4,0x2e,0x68,0x1a,0xa0,0xba,0x63, +0x9c,0xac,0x71,0x81,0x02,0x88,0x12,0x6e,0x6d,0x67,0x64,0x37, +0x9b,0xd6,0xe9,0xe5,0xf8,0x1f,0xe6,0x7a,0x7f,0x5a,0xfc,0xf6, +0x8d,0xbb,0x8e,0x53,0x38,0x3d,0x19,0x22,0x74,0xf8,0x22,0xdd, +0xc8,0x6e,0xb4,0xa0,0xeb,0x9c,0xb8,0x1f,0x33,0xbc,0x5f,0x2f, +0xda,0x7c,0xf9,0x9e,0xe3,0x1c,0xce,0x4d,0x86,0x36,0x3a,0x54, +0xc7,0x5b,0x46,0x7c,0x46,0x9b,0x25,0x4d,0x5f,0x71,0x83,0x84, +0x38,0x4c,0xd1,0xb3,0x9e,0x10,0x31,0x0e,0xa6,0xe7,0xbc,0x45, +0x83,0xe0,0x6d,0xac,0x62,0x44,0xe2,0xe8,0xd2,0x5c,0x51,0x32, +0x9b,0xdf,0xe8,0x29,0xc3,0x9c,0x07,0xe3,0xd5,0x89,0x64,0x33, +0x33,0x42,0xcd,0xc7,0xf6,0xd2,0x8d,0x22,0x1b,0x4f,0x60,0x0a, +0x7c,0x65,0xb5,0x11,0xe2,0x2b,0x5c,0x27,0xeb,0x74,0xa4,0x47, +0x4e,0x7e,0x24,0xf9,0x11,0x06,0xb4,0x94,0xd5,0xd7,0x89,0x92, +0x65,0xf6,0x16,0x57,0x35,0xde,0xe2,0xaa,0x66,0x6f,0x71,0x39, +0x1b,0x63,0x4b,0xe2,0x4e,0xe5,0x69,0x11,0x2f,0x77,0x38,0x31, +0xcf,0xfb,0xd3,0x9f,0xdf,0x7e,0x08,0x2e,0xa4,0x34,0xfd,0x92, +0xa1,0xa6,0x0e,0x6b,0xd2,0xa8,0xcd,0x6d,0x41,0x8b,0x39,0x1d, +0x4e,0xa6,0x7b,0xbf,0xfe,0xd3,0x96,0x9b,0xe0,0xe6,0xb8,0x8a, +0x2f,0x26,0x83,0x9f,0x5e,0x9f,0x0f,0xe3,0x2e,0xef,0x89,0xab, +0xf4,0xac,0xb8,0x98,0xe5,0xb1,0xbe,0x6b,0x7a,0xb9,0x42,0x77, +0x48,0x26,0xc6,0x19,0x01,0x4b,0x8e,0xa5,0x64,0x44,0x2f,0xee, +0xcc,0x87,0x5b,0xad,0x5d,0xb5,0x75,0xe8,0x09,0x4b,0xe3,0xd4, +0xd7,0x67,0x60,0x19,0x78,0xe2,0x9a,0x02,0xf3,0x94,0xee,0x0c, +0xc2,0x3a,0xd2,0xf1,0x9d,0xc0,0x6b,0xca,0x43,0x40,0x6c,0x4f, +0xec,0x6e,0x52,0xd4,0xb1,0x1b,0x63,0x65,0x8d,0xcb,0xa2,0xa4, +0x1a,0xef,0x9c,0x79,0xe2,0xc5,0x82,0x92,0x16,0xf1,0xf8,0x31, +0xf5,0x7e,0x3d,0xce,0xe9,0x49,0xeb,0xeb,0x08,0x33,0xc7,0xc8, +0x6e,0x3e,0xbd,0xf3,0xcb,0xf1,0xc7,0x89,0xd6,0xa2,0xb7,0x7f, +0xff,0xc3,0x71,0x12,0xfb,0xa6,0x40,0x0d,0x1d,0xb2,0xcb,0x99, +0xdc,0xed,0x44,0xba,0xf7,0xce,0xa2,0xcd,0x97,0xee,0x39,0xce, +0xe2,0xe0,0x14,0xf0,0xd1,0xef,0xe0,0x1f,0xc6,0x73,0x8b,0xba, +0x2d,0x8e,0x5e,0xea,0x06,0xdd,0x7b,0x62,0x6f,0x3d,0x2b,0x3e, +0x66,0x79,0x9c,0x0c,0x26,0x07,0xea,0x7b,0x03,0x06,0x12,0x6b, +0x83,0x84,0xf9,0xfd,0x71,0xcd,0x93,0x46,0x1d,0xc2,0xa3,0xae, +0x2c,0x30,0x8f,0xc4,0x97,0x90,0x58,0x7d,0x64,0x8d,0xd8,0x45, +0x6a,0x31,0x02,0x26,0xe0,0x72,0x29,0xae,0x8b,0x0a,0x18,0x9a, +0xc3,0xf1,0x78,0x7c,0x95,0x28,0x5b,0x14,0xa7,0xde,0xb7,0xe0, +0x3a,0x32,0xdc,0xe6,0xb6,0xb2,0xda,0x36,0xce,0x2d,0x98,0x7c, +0x24,0x59,0x9d,0xc0,0x70,0x96,0xc6,0xbf,0x49,0x18,0xaf,0xe3, +0xfc,0x44,0x12,0x38,0xd8,0x93,0xca,0xc2,0xb8,0xa0,0xf1,0xec, +0x36,0x05,0xe9,0x4f,0x85,0x71,0x21,0x79,0x68,0x3a,0xfa,0xa8, +0x74,0x03,0xb6,0xc4,0x91,0x30,0x66,0xb5,0x6a,0xb6,0xbc,0x85, +0x25,0x07,0x93,0x60,0x0e,0xf1,0xb4,0x05,0x09,0x63,0x4c,0x46, +0x0b,0xeb,0x98,0x71,0x88,0x70,0x36,0x2b,0xd2,0xd4,0x0f,0xe6, +0xc7,0xc4,0x8b,0x69,0x1d,0x5f,0x8e,0x3f,0x35,0xd7,0xfb,0x93, +0x7f,0x08,0xdc,0x57,0xcc,0x8b,0xf9,0x5d,0x53,0xe3,0x4f,0xd1, +0x5b,0x2b,0xda,0x62,0x09,0xdc,0xfc,0x64,0x68,0xa7,0x43,0x5d, +0xbc,0x65,0x7e,0x46,0x91,0x6d,0x3c,0x26,0xcb,0xc0,0x3c,0x81, +0x0f,0x31,0xef,0x09,0x0f,0x3e,0x21,0x1e,0xe0,0x5b,0x02,0x4d, +0xe9,0xf7,0x40,0x48,0xf1,0x50,0xa8,0x4e,0x58,0x59,0x7a,0xf8, +0x0b,0xe9,0x45,0x1e,0xec,0x0f,0x66,0xb8,0x34,0x1e,0x8a,0x82, +0x86,0xd2,0x63,0xba,0x08,0x11,0x6a,0x9f,0x45,0x42,0x0f,0x69, +0x3c,0x10,0xe8,0xdf,0x52,0x56,0xdb,0x2a,0x60,0x77,0x49,0x75, +0x9a,0x5b,0x83,0x71,0x41,0xfd,0xb1,0xca,0x8f,0xb3,0xbc,0x8f, +0x80,0xf6,0x31,0xb8,0xd2,0x5a,0x70,0x19,0xdf,0x48,0x80,0x41, +0xba,0xd9,0x74,0x31,0x35,0x37,0x9e,0x8b,0x2e,0x33,0x02,0xcf, +0x2c,0xf4,0x7e,0x13,0xaa,0x6c,0x83,0xaa,0xd0,0x90,0x04,0xea, +0x6a,0x02,0xe4,0xe8,0x61,0x6c,0x81,0x4f,0xc5,0xe2,0x29,0x74, +0xb7,0x3f,0xbe,0xe7,0x5d,0xb1,0xdb,0x70,0xcd,0x40,0x1f,0xed, +0xf5,0xdb,0x5b,0xee,0x41,0x4d,0x19,0xf2,0x83,0x08,0x9e,0x15, +0xe1,0x86,0xbb,0xb5,0xb7,0x6f,0x6f,0x7f,0x08,0x35,0x1d,0x85, +0xf8,0x55,0x6f,0x98,0xf8,0x8a,0x9e,0x8d,0xf5,0x52,0x43,0xa7, +0x36,0x71,0xc3,0x65,0xbc,0xab,0x14,0x54,0x6c,0x06,0x3d,0xb3, +0xab,0xe4,0xa3,0x6f,0xbf,0xbc,0xe9,0xfa,0x63,0xd9,0x60,0x82, +0xb0,0xb6,0x94,0xf0,0x33,0x6d,0xd7,0x95,0x2d,0xbf,0x3c,0x96, +0x5e,0x14,0xde,0x55,0x9e,0xdb,0x66,0x5a,0x47,0x37,0x5c,0xf5, +0x5f,0x77,0x99,0x46,0x9a,0xba,0xb1,0xe3,0xfa,0xe6,0x1b,0xe0, +0xea,0x38,0x83,0x5f,0x25,0xc0,0xc4,0x2c,0x9d,0x95,0x21,0x62, +0x76,0x3b,0x37,0xfc,0x5c,0x7b,0xeb,0xa7,0xad,0x37,0x41,0x23, +0x96,0x7f,0x9a,0x00,0x63,0xb9,0xc5,0x3d,0xad,0xf9,0xb4,0x36, +0x6e,0x98,0xdd,0xeb,0xc9,0xfe,0xd3,0x49,0xde,0x7f,0x1a,0xca, +0xfb,0x4f,0xd6,0x46,0xd3,0x09,0x74,0xe8,0x52,0xfb,0xe3,0x3f, +0x37,0x9a,0xb4,0x53,0x15,0xfb,0x46,0x27,0x78,0xdf,0x28,0xc6, +0xda,0x37,0xaa,0xde,0xfa,0x7f,0xd9,0x37,0x72,0x84,0x56,0xec, +0x1b,0x9d,0xe0,0xec,0xe0,0x3e,0x2b,0x3b,0x38,0xda,0x6c,0x68, +0x6c,0xbf,0xb4,0xe9,0xfa,0x23,0xe9,0x36,0x47,0x60,0xa5,0x05, +0xad,0xe6,0x74,0x61,0x32,0x77,0x5d,0xde,0xfa,0xcb,0x23,0x73, +0x1d,0x3d,0x49,0x6b,0x33,0xad,0x93,0x45,0xde,0xff,0x3f,0x9b, +0x48,0x4c,0xe1,0xff,0xfb,0x26,0x12,0xcf,0x7d,0xc7,0xa5,0x4d, +0xd7,0x1e,0x99,0xdf,0x8a,0xfa,0x0b,0x5a,0xcf,0xee,0x62,0xbd, +0x04,0xa2,0xed,0x2f,0xe9,0x32,0x51,0xd4,0x4f,0x6b,0x6b,0xd1, +0xd6,0xdb,0xda,0x55,0x1a,0x65,0xc6,0x1b,0x3b,0x0a,0x37,0x5d, +0xfa,0x03,0x1b,0x88,0x46,0x0b,0x3a,0xce,0x8e,0xe5,0x79,0xbc, +0x5d,0xbc,0xe5,0xca,0x5d,0xf3,0x2f,0xd1,0x28,0xad,0xf3,0xd4, +0x68,0x37,0x5c,0xf9,0x3f,0xec,0x2f,0x0d,0x67,0x97,0xf9,0x38, +0x4e,0x49,0x82,0x29,0xb8,0xb4,0x7c,0x7f,0xa9,0xaf,0xb1,0x24, +0x6f,0xd2,0xb2,0x09,0x59,0xe3,0xb2,0x7c,0xb6,0x15,0xe7,0x5c, +0xbd,0x4f,0xeb,0xc2,0x0c,0x52,0x93,0xb9,0xf4,0xce,0x2a,0x2f, +0x6c,0x33,0xa7,0x4b,0x8f,0x65,0x31,0x59,0xd1,0xcb,0xdd,0x76, +0x5d,0xd9,0x76,0xf3,0x2f,0xc7,0x25,0x6e,0x0b,0x9f,0xc3,0x6d, +0x69,0xcd,0xa7,0x76,0x74,0x5b,0x31,0x78,0xf0,0xca,0x21,0xbc, +0xa3,0x72,0xe5,0x6a,0xf6,0xea,0xcb,0x01,0xaa,0x6e,0xb1,0xe9, +0xd0,0xff,0x7a,0xed,0x8f,0x75,0x17,0x37,0xba,0xf1,0x76,0xd2, +0x46,0x6b,0x3b,0xa9,0x9e,0xb5,0x9d,0xb4,0x8e,0x77,0x7f,0x2a, +0x1b,0x85,0xf0,0xbc,0x74,0x77,0x88,0xa3,0xde,0x13,0x96,0xbd, +0xbc,0x6c,0x4c,0x96,0xdb,0xd6,0x1f,0x37,0x9e,0xfd,0xd5,0x51, +0x8c,0x93,0x52,0x20,0x6c,0xa1,0x9e,0x1d,0x91,0x1e,0x99,0xd6, +0xbd,0xe7,0xb2,0xf8,0xac,0x18,0x1a,0xf3,0xdc,0xd6,0x6b,0x37, +0x48,0xba,0x26,0xa7,0x40,0xc3,0xf9,0x7a,0x76,0x78,0x5a,0xa7, +0xe9,0xb1,0xd6,0x90,0x83,0x7d,0xd7,0x24,0x3a,0x87,0xf1,0x46, +0x53,0xe9,0x0e,0x51,0xd2,0x57,0x6c,0xe4,0xad,0xa4,0x5c,0x21, +0xeb,0x34,0x17,0x66,0x92,0xaa,0x64,0x6f,0x25,0x15,0x1b,0xcf, +0xc1,0x94,0xf6,0xd6,0x56,0x52,0x5f,0x1e,0xda,0x4b,0x56,0x1b, +0x2d,0x60,0x2e,0x0e,0xc1,0x2f,0xc9,0xd6,0x73,0x40,0xb7,0x81, +0x77,0x90,0x62,0x92,0x20,0xa6,0x7c,0x07,0xa9,0x03,0xb1,0x22, +0x2e,0xd3,0x75,0x5b,0xc1,0xc6,0xa2,0xdf,0xc9,0xc8,0x27,0xa7, +0x40,0xf5,0x05,0x7a,0x76,0x58,0x7a,0x97,0xd4,0xb8,0x7e,0xcb, +0x52,0xb2,0x92,0x96,0xbb,0xbd,0x59,0xbc,0xf5,0xe7,0x5b,0xa4, +0x56,0xcf,0xa5,0x80,0xd7,0x3c,0x6a,0x4a,0x6b,0x37,0x3d,0xda, +0x6d,0xc5,0xb8,0x71,0x2b,0x5f,0x66,0x26,0xfc,0x70,0x2a,0x7b, +0xf5,0xc9,0x00,0x2c,0x39,0x03,0x4e,0xfd,0xca,0x6b,0xc5,0xeb, +0x8e,0x6f,0x70,0xb3,0x4d,0xbc,0xfa,0xb9,0xc0,0xfc,0x59,0x57, +0x9d,0xd5,0x20,0xa3,0x1f,0x74,0x8e,0x3a,0x6d,0x9e,0xea,0xa6, +0x12,0x74,0xbc,0x8e,0x35,0x8c,0x33,0xd0,0x57,0xd6,0xbd,0x22, +0x96,0xe2,0x51,0x1c,0x24,0x06,0x0a,0x67,0xf7,0x02,0x4d,0x75, +0x86,0xe7,0x89,0xf6,0xce,0xa8,0x9f,0x2e,0x09,0xea,0xa6,0xe6, +0x30,0xa0,0x4e,0x80,0xfd,0x34,0xe9,0x7e,0x53,0x1c,0xf6,0x8e, +0xcf,0x74,0xdd,0x7a,0x62,0xe3,0xe9,0xeb,0xc4,0x99,0x5e,0x7d, +0xc1,0x3d,0x5d,0xcf,0x6e,0xb1,0x20,0x36,0xad,0xf7,0xf3,0xcb, +0xfa,0x66,0xa5,0x10,0x89,0x05,0x5b,0xae,0xfe,0xe2,0x38,0x8e, +0x49,0x7d,0xa1,0x3a,0xf1,0xb3,0xd9,0xdc,0xae,0xd3,0x7b,0x58, +0x24,0x8e,0xf3,0x5d,0x93,0xe4,0x7a,0x92,0x48,0x3c,0x11,0x50, +0xa4,0x1a,0xa8,0xa6,0x42,0xd6,0x3e,0x24,0x2e,0xe2,0x35,0xa9, +0x5d,0xa5,0xe5,0xb0,0x50,0xa8,0xbe,0xb2,0x4e,0x91,0xd8,0x8c, +0x5f,0x4b,0x0f,0x0a,0x0c,0x3c,0x8b,0x85,0x8a,0x35,0xfa,0x43, +0xe7,0x84,0xd3,0xe6,0x07,0xdd,0x54,0x1b,0x9d,0x0f,0xd6,0x19, +0x10,0xad,0xcb,0x7a,0xee,0x02,0xbb,0xe8,0xe6,0x5a,0x0c,0xc5, +0xc9,0xc2,0x9c,0x22,0xc0,0x90,0x0d,0x86,0x0b,0xa2,0xb1,0x1a, +0xd1,0x98,0xa8,0xc9,0x7a,0x42,0x98,0xcb,0x94,0x0b,0x48,0xa1, +0x6e,0x08,0x6c,0xa8,0x02,0x0c,0x5b,0xbc,0xdc,0xb6,0x5d,0xc8, +0xb9,0xf6,0xd0,0xf1,0x13,0x4e,0x4f,0xb2,0xc5,0xab,0x2a,0x69, +0x61,0xe7,0x1e,0xaf,0xc4,0x64,0x45,0x2d,0x77,0x7b,0xeb,0xea, +0xb6,0xdb,0x8f,0xc8,0xd6,0xcd,0xa0,0xb6,0x54,0x6a,0x73,0x49, +0x8d,0x98,0xda,0xc1,0x6d,0xc5,0x90,0x41,0x24,0x5e,0x64,0xe7, +0xaf,0x5e,0x5f,0xb5,0xfa,0x4a,0x80,0xf2,0x2c,0x36,0x6b,0xea, +0x0f,0xd6,0xdc,0x5e,0x77,0x81,0x38,0x5b,0x6e,0xe8,0xb3,0xf6, +0x90,0x48,0x25,0x6b,0x8f,0xd6,0xb0,0xd0,0x2d,0xc9,0xf5,0x9e, +0x92,0x35,0x69,0xd9,0xf8,0xe5,0x2c,0x56,0x85,0x2c,0x56,0x53, +0x53,0xa0,0x09,0xb1,0xa1,0x49,0x7a,0xd7,0xb4,0xee,0x3d,0x96, +0xc5,0xb1,0x28,0xbf,0x51,0xb8,0xf5,0xfa,0xef,0xc4,0xbc,0x69, +0xd4,0x44,0x62,0xd5,0x24,0xad,0xc3,0x0c,0x12,0xab,0x41,0x83, +0x56,0x0e,0xe2,0xa1,0x2e,0x5d,0xce,0x5e,0x7d,0x21,0x60,0xad, +0xaa,0x2b,0x3d,0x4f,0x08,0xf3,0x8a,0x50,0x59,0xbc,0xf3,0x15, +0x50,0x5a,0x53,0x64,0xab,0x69,0xb8,0x83,0x84,0xac,0x44,0xf4, +0xc4,0x97,0xa4,0x87,0x1f,0xdb,0xf9,0xf7,0x99,0x82,0x2c,0x02, +0x68,0x21,0xab,0xad,0x10,0x66,0x24,0xf6,0x93,0x7e,0x1f,0xb1, +0x52,0x5f,0x67,0xbb,0xbc,0xf3,0xd6,0xe6,0xfb,0xe0,0xc5,0x76, +0x39,0x64,0x36,0xd9,0xe5,0x3d,0x6c,0x97,0x1f,0xfc,0xc3,0x2e, +0xd7,0xad,0xb0,0xcb,0x30,0x56,0xf9,0x17,0x99,0xfe,0x90,0x65, +0x7f,0x8c,0x25,0xd3,0x57,0x7d,0xc1,0x7f,0xec,0x21,0x95,0x8c, +0x31,0xdb,0x1a,0xdb,0x8b,0x73,0xae,0xdc,0x77,0xfc,0x80,0x5f, +0x25,0xc2,0x44,0x3d,0x3b,0x78,0x61,0xbb,0x39,0x51,0x6c,0x2d, +0xde,0xbc,0xb0,0xe5,0xda,0x7d,0xc7,0xb1,0x12,0x43,0x04,0xcd, +0xed,0x38,0xbd,0xab,0x1b,0xae,0xee,0x45,0x9a,0x17,0x7a,0x16, +0x42,0x21,0x03,0x43,0xcf,0xd1,0xc7,0xc4,0x93,0x1a,0x4e,0x52, +0x81,0xd2,0x55,0x88,0x4f,0xd7,0x7d,0xbe,0xdf,0xf1,0x41,0xdc, +0x54,0xbd,0xc3,0xa4,0x41,0x8d,0x63,0xfd,0x83,0x7e,0x5d,0xb8, +0x6e,0x61,0x36,0x06,0x89,0x4f,0xd7,0x7f,0xbe,0xcf,0xf1,0x5e, +0xdc,0x74,0xbd,0xf5,0x4b,0x29,0xe8,0x68,0xe1,0xbf,0xef,0x85, +0x82,0xef,0xf6,0x7f,0xf9,0xe1,0xbf,0x7c,0xd6,0xbd,0xb6,0x7e, +0xc5,0xfa,0x25,0x10,0x4e,0x56,0xee,0xec,0x41,0x7a,0xf2,0xe5, +0x7a,0x8a,0x91,0xe8,0x41,0x23,0xac,0xee,0xbd,0xff,0x3b,0x0c, +0x81,0xaa,0xe6,0x3e,0x01,0xc5,0x25,0x3a,0x2d,0x61,0x9d,0xe7, +0xa0,0xd7,0x04,0xac,0x76,0x76,0xbe,0xf7,0x87,0xe0,0xf9,0x06, +0xd4,0x82,0x76,0xb4,0x82,0xef,0xef,0x0d,0x53,0x75,0xb3,0x72, +0x26,0xb7,0xa7,0x61,0x9d,0xe9,0xe8,0x5e,0xb8,0xc0,0xfb,0x2d, +0xf0,0xd8,0x6e,0xb5,0xff,0x86,0x87,0x7a,0xc3,0x6c,0xdd,0xe9, +0xaf,0x7e,0xb4,0xf6,0xa7,0x5e,0x32,0x6b,0x19,0xaf,0x5f,0xdf, +0x72,0x83,0x7c,0xad,0xd3,0xd6,0xda,0xb2,0x9c,0x58,0xa5,0xcf, +0x8f,0x98,0xd9,0x9e,0x8d,0xdd,0x3b,0x3f,0x6d,0xbb,0x09,0xae, +0xd6,0xf2,0xa4,0xa7,0x36,0x9b,0xdc,0xd6,0x0d,0xb3,0xfe,0xfb, +0x4d,0xab,0x17,0x01,0x8c,0x9d,0xbf,0x6e,0xb9,0x0d,0xd5,0xc8, +0xdb,0xa9,0x58,0xa2,0x6a,0xcc,0x6b,0x3c,0xab,0xa5,0x1b,0x7e, +0xa1,0xbd,0xf3,0xdb,0xf6,0xbb,0xd4,0xf2,0xe3,0x93,0x25,0xca, +0x6b,0x4e,0xf8,0x94,0x16,0x84,0xec,0xb2,0x50,0xff,0xc6,0xee, +0xe5,0x7b,0x59,0x44,0x4b,0x13,0x63,0xe7,0xa5,0xcd,0x3f,0xfd, +0xed,0x38,0x51,0xce,0x73,0xac,0x32,0xaf,0xf5,0xac,0x2e,0x16, +0x8a,0xcb,0xdb,0x7f,0xf9,0xdb,0x91,0x8f,0x9f,0x26,0xc2,0x58, +0xb6,0x89,0x73,0xda,0x4e,0xe9,0x68,0x21,0x20,0x47,0xb4,0x85, +0x72,0x13,0x78,0xa6,0x64,0x2d,0xad,0x05,0xf3,0x78,0x07,0xac, +0xbe,0xb5,0x03,0x76,0x84,0xb7,0xbd,0x96,0x5a,0xdb,0x5e,0x47, +0x78,0xdb,0xab,0x95,0xbd,0xed,0xd5,0x94,0xc3,0x8b,0x49,0xff, +0x65,0xdb,0x6b,0x84,0x19,0x66,0xbc,0x7e,0x79,0xf3,0x4f,0x14, +0x2e,0x9d,0xb4,0x06,0x5f,0xc1,0xa3,0xcf,0x6f,0x35,0xab,0xb3, +0x65,0xf4,0xaf,0x6c,0xfb,0x85,0x5a,0x8e,0x59,0xc3,0x73,0x4b, +0xe5,0xd4,0x36,0x53,0x3a,0x48,0x97,0xaf,0xc5,0x93,0x4d,0xb1, +0x97,0xcc,0x1a,0xc6,0xce,0x9f,0x68,0x91,0xd6,0x98,0x91,0x89, +0xe5,0x8b,0xf4,0xbc,0xf0,0x59,0xed,0x2c,0xf2,0x7f,0xd9,0x7e, +0x8b,0x96,0xef,0x93,0x16,0x02,0x6b,0x91,0x9e,0xd3,0x7c,0x72, +0x6b,0x92,0xc6,0xcb,0x1c,0x4e,0x9c,0xb7,0x37,0xcb,0x9a,0x72, +0x98,0xd1,0x85,0x37,0xcb,0xac,0x89,0x00,0x6f,0xe5,0x8d,0x66, +0xd5,0x56,0xb9,0xd8,0x9a,0x5e,0xa7,0xc7,0xcc,0xd0,0x49,0x2d, +0x7f,0x9c,0xe7,0xfd,0xc1,0xad,0x5d,0x14,0x56,0x78,0x92,0x7e, +0x73,0xb2,0x43,0x87,0x4f,0x39,0xac,0xa8,0x3d,0xb7,0xe1,0x8c, +0x16,0x05,0xe4,0xcd,0xdc,0xde,0x7e,0x0f,0x6a,0x3b,0x7e,0xb5, +0xc2,0x63,0x5d,0x8d,0x55,0x89,0xd2,0xff,0xa0,0xb0,0x35,0x18, +0xc3,0x21,0x07,0x7b,0x89,0x0b,0x39,0xd7,0x1f,0x92,0xa0,0x4c, +0x4b,0x82,0x26,0x6c,0x1c,0x5c,0x17,0xb6,0x4a,0xed,0xd4,0xe3, +0x95,0x58,0x56,0xd8,0xb7,0xae,0x6d,0xbd,0xfd,0x98,0xd6,0x25, +0x6e,0xe3,0xb5,0x47,0x4b,0x6b,0x36,0xad,0x9d,0x0c,0x3c,0xc5, +0x6c,0x36,0x9f,0x6c,0x8c,0xb1,0x83,0x56,0x32,0xac,0xa1,0x41, +0xae,0x65,0xa4,0xa6,0x1e,0x39,0xbd,0x0d,0x88,0x80,0x66,0x79, +0xe5,0xe9,0xda,0x45,0xbd,0xa1,0x3d,0x99,0xdc,0xf6,0x03,0xdb, +0x61,0x03,0x0c,0xf1,0x87,0x8b,0xa1,0x06,0x34,0x84,0x4e,0x47, +0x1e,0xc2,0x08,0x4e,0x08,0x4f,0xea,0x0d,0x21,0xe5,0x09,0xe1, +0x40,0x8c,0xf0,0x27,0xf7,0x06,0xb2,0x8d,0x22,0x73,0x7b,0x94, +0xe6,0xac,0xac,0x46,0x18,0x7c,0xb5,0x4c,0x1e,0x67,0x3f,0x7e, +0x2f,0x7b,0x2c,0x46,0xeb,0xc1,0x03,0x93,0x30,0x34,0xcc,0x1f, +0xce,0xb7,0x36,0x64,0x40,0x03,0x61,0xce,0x40,0x37,0x43,0x15, +0x73,0xb9,0xf4,0xdb,0x85,0xec,0x1a,0x71,0x38,0x1f,0x56,0xc4, +0xdb,0x67,0x8b,0x54,0x1f,0xe3,0xe0,0x50,0x57,0xea,0xef,0x96, +0x57,0x04,0xc1,0x8e,0x3b,0xd4,0x7f,0x84,0x8e,0x55,0x07,0xf6, +0xc6,0xd0,0x20,0x7f,0x78,0x73,0xb8,0xc1,0x69,0xe5,0xc6,0x50, +0xe3,0x48,0x79,0x42,0x77,0x72,0x02,0x84,0xf6,0xd7,0xb1,0xee, +0xa0,0x6e,0x44,0x88,0x8b,0xff,0xcb,0x2a,0xc8,0x30,0xdf,0x39, +0xae,0xb2,0x61,0x51,0x24,0xae,0xaa,0x2f,0x3c,0xa5,0x57,0x5f, +0x41,0x58,0x3d,0x8d,0x03,0xd4,0xaf,0xf9,0xfd,0x3c,0x4e,0xf5, +0x5c,0x27,0xa4,0xe3,0xf5,0xe6,0x03,0xfb,0x62,0x68,0x73,0xc2, +0x39,0xaa,0xc4,0x5f,0xfc,0x7d,0xb8,0xc0,0x4a,0x33,0x30,0xba, +0xe1,0x3a,0x56,0x1a,0x9c,0x88,0x41,0x8d,0x09,0x5b,0x86,0x61, +0x7e,0x72,0x52,0xad,0x93,0xc1,0xf7,0x04,0x23,0xab,0x57,0x55, +0x4c,0x51,0x43,0x0d,0xf3,0x55,0x78,0xa0,0x0e,0xe1,0x77,0xe4, +0x4e,0xc5,0x9e,0x30,0x54,0x23,0x98,0x6e,0x36,0x22,0x03,0xe4, +0xd5,0x87,0x87,0x0a,0x34,0x38,0x5f,0xd5,0xec,0xef,0xbc,0xd3, +0xe0,0x70,0xfc,0x4a,0x43,0x8d,0xd5,0x1b,0x0e,0x4c,0xc6,0xd0, +0x26,0x34,0xd4,0x48,0xe9,0x5f,0x59,0x4c,0x55,0x63,0x0d,0x73, +0xb5,0x59,0x25,0x0a,0x75,0xd5,0x18,0xfb,0x10,0x8e,0x93,0x86, +0x6a,0x0c,0x1e,0x66,0x63,0xcd,0xb3,0x8d,0x50,0x57,0xc9,0x44, +0xce,0x32,0x93,0x8d,0x7f,0xb0,0xce,0x42,0x59,0xce,0xd3,0x55, +0x78,0x9a,0xd3,0xda,0xcc,0x49,0xd8,0x6a,0x25,0x84,0xa9,0xd7, +0x72,0xab,0x57,0x25,0xe3,0x37,0x6b,0xc0,0x50,0xee,0xd5,0xc8, +0x5f,0x36,0xf8,0x42,0xac,0xc2,0xe3,0x16,0x74,0x8d,0xbe,0xc2, +0x6c,0x85,0xbb,0xa4,0xb8,0x20,0xe8,0x65,0xbd,0x46,0x2f,0x6b, +0xb3,0xf5,0xb2,0x06,0xd0,0x2b,0xd9,0x26,0xe0,0x7c,0x1b,0x83, +0x41,0x60,0x90,0x1a,0x4f,0xb1,0xf3,0xad,0x6b,0x50,0xe9,0xef, +0x88,0xeb,0xd8,0x17,0xfb,0x46,0xb4,0xad,0x8f,0x95,0x6e,0xb5, +0x83,0xbe,0x01,0xf9,0x2e,0xd8,0x20,0x25,0x3f,0x3f,0x40,0x36, +0xa8,0x23,0xe6,0xea,0x49,0x7d,0x92,0xb0,0x81,0xbf,0x55,0xd5, +0x97,0x82,0xad,0xa5,0xdf,0xef,0x5c,0xd5,0x87,0x57,0xa2,0xa5, +0xd4,0x84,0xd9,0x59,0xe0,0x59,0xf4,0x36,0x57,0x09,0xf8,0x2d, +0x4a,0x85,0x94,0x51,0xb8,0xdd,0x01,0x47,0xa9,0x12,0xae,0xf6, +0xc3,0xf3,0xe4,0x59,0xf8,0xc6,0x8b,0x6f,0xf9,0x98,0x87,0x61, +0xa6,0x08,0xfc,0x10,0xc7,0x96,0x0d,0x16,0xd2,0x77,0x88,0xc0, +0x3d,0x68,0x57,0xf2,0x51,0x6f,0x4f,0xe9,0x36,0x52,0xe0,0x5d, +0x35,0x2a,0xfa,0xd9,0xbf,0x9d,0x6a,0x54,0xd9,0x6c,0x51,0x16, +0x4d,0x9d,0x7b,0x71,0x5f,0xa7,0x4a,0xb6,0x8b,0xf5,0xf0,0x4a, +0xbc,0xe1,0x3c,0x24,0xa6,0xc2,0x95,0x68,0xe5,0x4b,0x03,0x3e, +0xc2,0xd5,0x65,0x0f,0xb9,0x02,0x8f,0xba,0xf6,0x66,0x42,0xee, +0x44,0xa9,0xc6,0xf4,0xbc,0x3b,0x7e,0x6e,0x15,0xdc,0xd1,0xe3, +0x01,0x52,0xdf,0x22,0x7e,0xc1,0xc3,0x56,0x59,0x1d,0x11,0x53, +0x93,0x10,0xb6,0xc4,0x1a,0x76,0xf5,0x1c,0xb5,0x0f,0x32,0x16, +0xe5,0xbb,0xa6,0x36,0x45,0x99,0x2e,0xbd,0x4a,0xc5,0xa6,0xd7, +0x7f,0x0f,0xe8,0x8a,0x67,0xcb,0x26,0x93,0xc7,0x0c,0x02,0xe7, +0x63,0xe7,0xbb,0x36,0xcd,0xfb,0xd0,0x74,0x96,0xd9,0x0f,0xa7, +0x62,0xe4,0x9f,0xe5,0x65,0x65,0xbf,0x63,0x10,0xb6,0x16,0x10, +0xa4,0xc6,0x14,0x72,0x5c,0xac,0xab,0x63,0xc6,0x64,0x73,0x5a, +0x8c,0xfa,0xec,0x9a,0x06,0xb5,0x1f,0xe4,0x6c,0x2f,0x0c,0x58, +0x74,0xcc,0x35,0x2d,0xae,0x61,0x46,0x90,0xef,0x93,0x42,0xb9, +0x00,0x98,0x10,0xa3,0x96,0x9e,0x83,0x29,0x10,0x80,0x73,0x0b, +0xcd,0x1d,0x3a,0x82,0xaa,0x52,0xd6,0x42,0xc0,0xf5,0x58,0x55, +0xdf,0xf9,0xb2,0xc0,0x65,0x38,0xe1,0x0b,0x61,0xde,0xe4,0x9d, +0xbe,0x80,0x27,0x65,0x73,0x01,0xb0,0x29,0xc6,0xa9,0x9d,0xd3, +0x30,0x08,0x5e,0x63,0xe0,0x3f,0x62,0x55,0x38,0x03,0xb7,0x50, +0xd5,0x3e,0x26,0xb2,0xbe,0x12,0xe8,0xa7,0x3a,0x50,0x88,0x3e, +0x56,0x60,0x03,0x35,0xec,0x69,0x9d,0x5c,0x00,0x8c,0x89,0x51, +0x0b,0xce,0xc1,0x44,0xc2,0x35,0xa7,0xd0,0xdc,0x48,0xa3,0xa1, +0x59,0x3a,0x55,0xe0,0x14,0xd5,0xe3,0x69,0x71,0x5c,0x00,0xde, +0x14,0x30,0x98,0x40,0x46,0x72,0x65,0x1c,0x81,0xdc,0x33,0x5b, +0x0a,0x78,0x13,0x97,0xa7,0x32,0x21,0xd3,0x98,0x90,0x7d,0x56, +0x65,0x5c,0x80,0x74,0xbf,0x22,0x88,0x06,0x3f,0xa6,0xe1,0xd7, +0x58,0x15,0x42,0x34,0x80,0x37,0x7e,0xb8,0x41,0xc8,0xfa,0x75, +0x05,0x7a,0xff,0xc4,0xdc,0x94,0x9e,0x23,0x04,0xec,0xc4,0x23, +0xe9,0xdc,0x79,0x36,0x77,0x9e,0x5f,0x5e,0x0e,0x67,0x51,0x33, +0xdd,0x9a,0x85,0x24,0x22,0x4e,0xa2,0x97,0x55,0x0c,0xa7,0x0e, +0x12,0x7a,0x96,0x2d,0x72,0xa2,0xfa,0x62,0x57,0x16,0x2e,0xae, +0x86,0x4b,0xc4,0x0e,0x2c,0x43,0x87,0xf9,0x61,0x8b,0xa7,0x32, +0xd4,0xde,0xfa,0xdb,0x96,0x83,0xe2,0x68,0x65,0x94,0x5e,0x65, +0x91,0x7a,0x4c,0x22,0xf5,0x14,0xd2,0x96,0x98,0xb2,0xee,0xfc, +0xa0,0xf3,0x7f,0x27,0x32,0xef,0x08,0xec,0x81,0xa9,0xff,0x45, +0x64,0xb8,0x40,0xce,0x46,0x61,0xcb,0x48,0xc9,0x6c,0x7b,0xeb, +0x2e,0x04,0x06,0xc4,0x38,0x0b,0xce,0x41,0x1e,0x84,0x48,0xd7, +0xfe,0xc2,0xe9,0xfe,0xbf,0xbc,0x69,0xb3,0xf9,0x0d,0xde,0xce, +0x0b,0xe1,0xed,0x3c,0xbb,0x52,0xed,0x4d,0xdc,0xda,0x1b,0xb6, +0xaa,0x0f,0x38,0xb8,0x50,0x57,0xd4,0x49,0x63,0x92,0xf9,0x4a, +0x94,0xca,0x7d,0xa4,0x41,0x6b,0xa8,0x95,0xf3,0xfa,0x4d,0xee, +0x9b,0x1a,0x81,0x35,0x33,0xb0,0xb1,0x2f,0xd7,0x91,0xf4,0xc0, +0x55,0xbd,0x61,0x15,0xbe,0x6f,0x15,0x90,0x4c,0x52,0xba,0x91, +0xda,0x8c,0xe4,0x13,0x1b,0xf8,0x4e,0x83,0x07,0x51,0xaa,0xb9, +0xf2,0x17,0xaa,0x0a,0x8e,0x2c,0x8b,0x15,0xaa,0x96,0xc0,0x68, +0x59,0x8b,0xe2,0xc2,0x64,0xe9,0x1f,0xc3,0x6b,0x52,0xca,0x27, +0x56,0x3d,0xc8,0xf3,0x16,0x06,0x8d,0xac,0xa5,0xaf,0x21,0x6b, +0x76,0x15,0x66,0xa5,0x28,0x15,0x75,0x4f,0x83,0x16,0x20,0x37, +0xef,0xf8,0x3d,0x00,0xdf,0x52,0x9a,0x7a,0xc0,0xd5,0x4c,0x5d, +0x9f,0x00,0xd6,0x90,0x9e,0x9a,0xc0,0x6d,0xaa,0xbd,0x4a,0x22, +0x91,0x7f,0x41,0xe0,0x9b,0x6a,0x28,0x97,0x79,0x54,0xff,0x40, +0xe0,0x69,0x35,0xa2,0xec,0xa6,0xfd,0xf5,0xba,0x1a,0xe1,0x5c, +0x69,0x7d,0x85,0x20,0x5c,0x7f,0x9b,0xcb,0x38,0x6c,0x1c,0xf8, +0xba,0x55,0xfb,0x31,0x09,0x4b,0x2c,0x44,0x77,0x54,0x77,0xbb, +0xc8,0xa3,0x03,0xae,0x4a,0xa0,0xd6,0xb5,0x56,0x8d,0xc7,0x64, +0xbc,0x6f,0x48,0xf7,0x70,0x01,0x3f,0x47,0xa9,0xfa,0x34,0x0f, +0x92,0x9d,0xe5,0x76,0x4d,0x47,0x0f,0x6b,0x1a,0x29,0x96,0x36, +0xfe,0xe7,0x6c,0x97,0xe2,0x7b,0x65,0x5b,0x9e,0xa5,0xb6,0x1e, +0x26,0x58,0x82,0x16,0x50,0x22,0xa0,0x01,0x1e,0x2c,0x2f,0xe9, +0xf8,0x8f,0xb9,0x74,0x47,0xbd,0xac,0x0f,0xf7,0xea,0x6c,0x51, +0x40,0x42,0x87,0x1e,0xf6,0xe0,0xbf,0x46,0xa9,0x20,0x9b,0x89, +0x83,0xed,0x32,0xad,0x70,0x7c,0x35,0x01,0x5e,0xd5,0x30,0x84, +0x42,0x31,0x19,0xf0,0xb7,0xc0,0xc1,0xd8,0xd5,0xae,0xcb,0xfa, +0x00,0xff,0x65,0x60,0x5c,0x02,0xc4,0xa9,0x45,0x56,0xd5,0x15, +0x3e,0x52,0xdf,0x1a,0x53,0xcc,0x99,0x31,0xea,0x5f,0x57,0x35, +0xa8,0xf3,0xcc,0x9b,0x5f,0x14,0xe8,0xcb,0x25,0x59,0xf8,0x9e, +0x5a,0x67,0x9c,0x35,0x97,0xc6,0x62,0x77,0x8c,0x4b,0x84,0x38, +0xad,0x3d,0x0a,0x56,0x96,0xdf,0xe3,0x54,0xd8,0x45,0x0d,0x6a, +0x40,0xe5,0x4d,0x3b,0xce,0x06,0xe0,0x62,0x1c,0x55,0x51,0x86, +0x85,0xef,0xbd,0x65,0x9c,0x2d,0xd1,0x62,0x71,0x60,0x49,0x0b, +0x81,0x5e,0x66,0x91,0x00,0x1a,0xae,0xad,0xf9,0xae,0xc0,0x08, +0x55,0xe9,0x63,0x2e,0xa0,0xd8,0xc8,0x50,0x1b,0xa5,0x1c,0x44, +0x61,0xbf,0x6a,0x7d,0x42,0x94,0xfc,0x24,0x30,0x50,0x0d,0xdc, +0x2a,0xcc,0xad,0x3c,0xe0,0x4a,0xab,0x65,0x82,0x8a,0x5d,0x67, +0x55,0x65,0xbc,0xa7,0xa6,0x4b,0x39,0x44,0x50,0xf8,0xbd,0xe4, +0x49,0xf9,0xc5,0x7b,0x97,0x89,0xa8,0xf4,0x67,0x88,0xf2,0xb4, +0xac,0x48,0x9c,0x0a,0x7f,0x4a,0x14,0x48,0xdc,0xb5,0xe1,0xe9, +0x70,0xd4,0x61,0x41,0x2c,0x46,0x5b,0xb3,0xd7,0x62,0x30,0xca, +0x56,0xed,0x97,0x04,0xbc,0x85,0x07,0x2a,0x2a,0xad,0xf0,0xbd, +0x9d,0x04,0x96,0x4a,0x60,0x4c,0x7b,0x55,0x83,0xdb,0x4f,0x63, +0xb5,0x25,0x64,0x92,0xd6,0xb1,0xf9,0x1c,0xb4,0xb4,0xbc,0xa8, +0x2a,0x92,0xc2,0x6f,0x58,0x89,0x8d,0xac,0x0f,0xd5,0xd9,0xd2, +0x84,0x6b,0xea,0x3c,0x69,0xc2,0xba,0x28,0x75,0xe6,0xa1,0x06, +0x2d,0xc1,0x2b,0x67,0xc7,0x0d,0x8b,0x97,0xcd,0xd1,0x2b,0x1d, +0x43,0x59,0x13,0x42,0xb6,0x08,0x74,0xa5,0x7f,0x7d,0x8b,0xcd, +0x37,0x75,0x5c,0xa2,0x1a,0x18,0x25,0x2e,0x62,0x86,0x69,0x44, +0xa9,0xe7,0xca,0xda,0xf3,0x69,0xff,0xde,0xaa,0xa5,0x25,0xef, +0x95,0x71,0x55,0x12,0x09,0x99,0xbb,0xf5,0xa1,0x61,0xfb,0x78, +0x1b,0xd0,0x3f,0x4a,0x0d,0x61,0xc0,0x6c,0xfc,0xd3,0x80,0x29, +0x5d,0x71,0x9e,0x6a,0x24,0xca,0x9a,0x8b,0x08,0x42,0x59,0x75, +0x8b,0x20,0xb8,0x44,0xa3,0xac,0x99,0x30,0x3d,0xa2,0x55,0x2f, +0x93,0xac,0xc8,0x62,0x25,0xa5,0x5b,0x1d,0xa2,0xfd,0xac,0xc0, +0x55,0xaa,0x7b,0x69,0x0a,0xc9,0x6f,0x39,0x2c,0xf6,0x2c,0x36, +0x57,0x33,0x09,0xf5,0xfe,0xd1,0xe3,0xac,0x6a,0x62,0x86,0x10, +0x54,0x73,0x82,0xa8,0x84,0xab,0x52,0x88,0x86,0x4e,0xc5,0x66, +0x1a,0x03,0x7a,0x59,0x80,0xee,0xd1,0x2a,0x9e,0x28,0x80,0x66, +0x38,0x7e,0xdf,0x3f,0x86,0x6e,0x46,0xc2,0x98,0x99,0xeb,0xfa, +0x0c,0x32,0xe8,0x82,0xef,0x96,0xbd,0xc9,0x45,0x8a,0x59,0x46, +0xb1,0xf9,0x46,0x24,0x83,0xba,0x3c,0x43,0xa5,0x67,0xb4,0xea, +0x4d,0x60,0xc3,0x22,0x0c,0x4c,0x89,0xe8,0x10,0x18,0x78,0xab, +0x03,0xa4,0xc8,0xfa,0xa3,0x45,0xdf,0xdc,0x5c,0xff,0x6d,0x7a, +0xde,0x91,0x5c,0x08,0x81,0xe0,0x23,0x29,0xc9,0xfe,0xc4,0xb8, +0xa6,0xd4,0xb7,0x8a,0x4d,0x4f,0xb7,0x62,0x33,0x8b,0xe9,0xa9, +0x63,0x21,0xa9,0x16,0x4d,0x7a,0x49,0x1c,0xb9,0x4a,0x46,0x66, +0x91,0x55,0x7a,0xf4,0x0e,0x0e,0x31,0x30,0x36,0x09,0x62,0xd1, +0xc7,0xfa,0x50,0x8e,0x33,0x25,0xe7,0xe2,0x34,0x34,0x55,0x3e, +0x99,0xb8,0x85,0xb1,0xea,0x1b,0x16,0xf4,0xfb,0x1b,0x77,0x90, +0xa0,0xe7,0x57,0x2c,0x66,0x65,0xb4,0x16,0x6f,0x2d,0xaf,0x3b, +0xaa,0x8e,0xf1,0x49,0x10,0x1f,0x84,0xf1,0xc9,0x10,0xaf,0x05, +0xc5,0xa2,0x53,0x98,0x01,0x71,0x6a,0x08,0xf6,0x13,0xa4,0x4f, +0xd7,0x0d,0x98,0x1a,0x89,0xf3,0xc9,0x13,0xdd,0x4d,0x9e,0x68, +0x23,0xa1,0xde,0x24,0xeb,0xbf,0xf5,0x6d,0xa3,0xc0,0x9c,0xcb, +0x5d,0x52,0x20,0xbe,0x71,0x79,0xc7,0xde,0x24,0x3c,0x19,0xe2, +0x42,0x73,0xb5,0x5c,0x98,0xa9,0x27,0x0c,0xc8,0x86,0x6d,0x27, +0xd4,0x26,0xb8,0xd5,0x95,0x3c,0xaf,0x35,0x98,0xad,0xb4,0x60, +0xc1,0x17,0x2b,0x5c,0x30,0xc0,0x03,0xd6,0x1e,0x53,0xcb,0x20, +0x33,0x12,0x0f,0xc2,0x72,0xf4,0x18,0xc3,0x7b,0x29,0xb3,0xcc, +0x05,0xd4,0x0d,0x0e,0x18,0x24,0xcc,0x6b,0x8f,0x53,0xeb,0x9a, +0x48,0x3c,0x4d,0xad,0x35,0xca,0xca,0x78,0x77,0xa4,0x91,0x11, +0x85,0x13,0xa5,0xdb,0x41,0x82,0x21,0xe7,0xff,0x2f,0xe7,0x25, +0x11,0x3c,0x4e,0xe8,0x4a,0xa9,0xca,0xce,0x77,0xf9,0x99,0x97, +0xf1,0x90,0x9e,0x85,0xd0,0x33,0xa7,0x50,0x2f,0x9d,0xfe,0x8f, +0x47,0xb5,0xd4,0x4b,0x65,0x1b,0x19,0xfd,0xaf,0x06,0xb8,0xda, +0x83,0x93,0xe3,0x79,0x00,0x56,0xa0,0x6b,0x0e,0xc7,0x28,0xed, +0xd5,0x68,0x6e,0x2d,0x35,0xc8,0xd7,0x5f,0x9b,0x47,0xad,0xb3, +0x22,0xf1,0x73,0x6a,0xad,0x44,0x9d,0x29,0xea,0xc8,0x2e,0xfb, +0x81,0x9b,0x7f,0x32,0xa0,0xb2,0xdd,0xf9,0x95,0x48,0x3c,0x42, +0xcd,0x95,0x73,0x78,0xdf,0xe2,0xcb,0xb2,0x5b,0xdc,0xfa,0xfb, +0x13,0xd4,0x0b,0x23,0xf1,0x1b,0x1b,0x35,0x6f,0x65,0xc0,0x88, +0x7f,0x12,0x43,0xb1,0x46,0x25,0xde,0xb8,0xf0,0xf8,0x4e,0x34, +0xc0,0xa6,0x52,0xf6,0xe0,0xe6,0xda,0x4f,0x9b,0xf7,0xa0,0x6f, +0x19,0xd9,0xbc,0x84,0xb9,0xe2,0xc9,0xc5,0x13,0x2f,0x42,0xd2, +0x31,0x44,0xd8,0x1b,0x85,0x00,0x31,0x38,0x52,0xfa,0x5d,0xe5, +0x72,0x1b,0xfc,0x14,0x3b,0x19,0x9c,0x1f,0x6e,0xb4,0xd4,0x0d, +0xea,0x42,0x62,0x1e,0xb5,0x66,0xc6,0xe0,0x77,0xd0,0x15,0x7d, +0xf6,0x8a,0xf6,0x26,0xf9,0x61,0xbf,0x05,0x71,0x59,0xcd,0x3e, +0x56,0xb4,0xc2,0xd2,0x1e,0x42,0xd1,0x4b,0xff,0x84,0xac,0x69, +0x99,0x00,0x1d,0x92,0x72,0xd1,0x84,0x29,0xb1,0xf8,0x01,0x89, +0x6d,0xb5,0xbd,0xa2,0x43,0x59,0xae,0x28,0xc0,0x11,0x5c,0x54, +0x43,0x6e,0x61,0xd4,0x13,0xc4,0x3a,0x24,0x30,0xe2,0xd4,0x18, +0xfc,0x17,0x44,0xa2,0xd0,0xb3,0x3a,0xb4,0x5b,0xde,0xde,0x77, +0x4d,0xc2,0x54,0xf1,0x35,0xe6,0x40,0xbd,0x27,0x25,0x34,0x35, +0x79,0x7f,0xa1,0x66,0x79,0x09,0xcd,0x16,0x45,0x01,0x4c,0x3f, +0x68,0x97,0x8f,0xa7,0xf8,0x17,0x1f,0x6e,0x41,0x04,0xbe,0x60, +0xde,0x10,0xbd,0x5c,0x21,0x16,0x12,0x72,0x76,0x41,0xad,0x80, +0x25,0xc7,0xfa,0x64,0xc4,0x59,0x17,0x65,0xc8,0x7a,0x9b,0x05, +0x4c,0xc2,0x35,0x5c,0x7b,0xd2,0x51,0xa8,0xb6,0x7c,0x69,0xc6, +0x50,0xe8,0x77,0x5c,0x55,0x82,0xfd,0x51,0x58,0x4a,0x13,0x7e, +0x51,0xcf,0x6a,0xdf,0x76,0x79,0x3b,0xdf,0x35,0xbd,0xb8,0x24, +0x24,0x2a,0x23,0x22,0xb3,0x41,0x45,0x41,0x48,0x13,0x15,0xeb, +0xcc,0x13,0x50,0x0d,0x92,0xf3,0x88,0x41,0xf3,0x63,0x70,0x0f, +0x11,0xe9,0x29,0xb5,0x5b,0x5c,0x23,0x12,0x6f,0xd7,0x88,0x34, +0x81,0x91,0x0c,0x53,0x17,0xfa,0xe6,0x61,0x19,0x64,0x46,0x13, +0x87,0xa2,0xd0,0x47,0xba,0xfa,0x8a,0x5d,0xd0,0x9c,0xeb,0x40, +0x8e,0x70,0x1d,0xc8,0x70,0xae,0x03,0x69,0x8d,0x9b,0x84,0xf4, +0xc9,0xe5,0x0a,0x90,0xca,0xa5,0x03,0x45,0x69,0xa1,0x80,0x2a, +0xd2,0xb3,0x9d,0x38,0x1d,0x5a,0x51,0x05,0xd2,0x04,0x12,0x8d, +0xae,0xe9,0x11,0x8b,0x43,0x88,0x35,0x35,0xff,0x31,0x6a,0x1d, +0x3d,0xab,0x53,0xbb,0x15,0x1d,0x0a,0x45,0x3c,0xce,0xb1,0x2b, +0x44,0x1a,0x83,0xc1,0x03,0x6b,0x36,0x58,0x39,0x07,0xdd,0x99, +0x38,0xf4,0x6d,0xc1,0x45,0x23,0x19,0x24,0xca,0x6a,0x33,0xfc, +0xde,0x55,0x85,0x99,0x37,0x34,0xac,0x86,0xaf,0x1a,0xd0,0x27, +0x1a,0xfb,0xe0,0x78,0xfb,0x23,0x8d,0x93,0xe1,0xee,0x70,0xde, +0xa0,0xa1,0x2a,0xb3,0x64,0xa5,0x47,0xe2,0xb7,0xf7,0xb0,0x26, +0xce,0x6a,0x4c,0xc6,0x1b,0x6a,0x1a,0x30,0x9d,0xfe,0x98,0xae, +0x61,0x02,0xce,0x96,0x6e,0x41,0x82,0x60,0xf7,0x1b,0x50,0x07, +0x2a,0x57,0xe8,0xcf,0x3d,0xac,0x83,0xb3,0x22,0x18,0xb6,0x0e, +0xc3,0xd6,0x21,0xd8,0x60,0x6c,0x50,0xa1,0x4a,0x65,0xb5,0x45, +0x63,0x54,0xa4,0x3f,0xd4,0xef,0x27,0xd6,0xca,0xca,0xf9,0x2a, +0x0b,0xe6,0x47,0xe1,0xde,0x7b,0xe8,0x81,0xb3,0x82,0xb9,0x9f, +0x07,0xf7,0xf3,0xe0,0x31,0xe2,0x54,0x1b,0xc5,0xc7,0x43,0x5d, +0x05,0x14,0x63,0x96,0x55,0xdf,0x06,0x97,0x0d,0x70,0xb7,0x7b, +0x2d,0x89,0xc2,0x43,0xb2,0xfe,0x0d,0x01,0x7e,0xf8,0x09,0xe9, +0x03,0xb5,0xfd,0xfc,0x04,0xe3,0xbc,0x28,0xdc,0x63,0x61,0x8c, +0xf8,0x07,0x46,0xa8,0x4a,0x5e,0xe4,0x08,0x51,0x92,0x6a,0x0e, +0x35,0xd4,0x0a,0xf8,0xb4,0x2b,0x39,0xad,0xc5,0x1a,0x68,0x58, +0xc7,0x70,0x1e,0xe1,0xcc,0xfc,0xcf,0xc5,0xf0,0x33,0x5f,0x8a, +0x52,0x32,0xdb,0x5c,0x6b,0xd0,0x8c,0x32,0x68,0xf6,0xe6,0x59, +0x0d,0xdc,0x30,0xaa,0xec,0x92,0x40,0x4d,0x36,0x38,0x40,0xdc, +0xd5,0xb9,0x7d,0x21,0xb7,0xaf,0x8e,0xc4,0x1f,0x9c,0xdf,0x91, +0xdd,0x34,0x38,0x1d,0xff,0x7c,0x31,0x3c,0x6f,0x56,0x3e,0xa9, +0x3b,0x35,0x8c,0xe6,0x19,0x9b,0x2b,0xc9,0x19,0x34,0x37,0x33, +0xe0,0xdc,0x48,0xdc,0x63,0x23,0xea,0x54,0xf6,0x0b,0x1f,0x3f, +0xc8,0xc6,0x0d,0xea,0x94,0x80,0x44,0xbb,0x48,0xc4,0x85,0x2b, +0x41,0xee,0x89,0x46,0xb8,0x5a,0x7a,0x36,0x13,0xb8,0xf2,0x2e, +0x27,0xec,0xaf,0x8b,0xd2,0x44,0x71,0xc3,0x22,0x66,0x23,0xe3, +0x58,0x10,0x89,0xfb,0x6d,0x1c,0xed,0x6d,0x1c,0xab,0x71,0x53, +0x10,0x27,0x3a,0x4e,0xe0,0x2a,0xc2,0x40,0x62,0xeb,0x34,0x4f, +0x90,0x53,0x5d,0x28,0xd0,0x28,0x02,0xc3,0xd4,0x4e,0xe8,0x38, +0x00,0xb7,0x95,0x4d,0xa0,0x67,0x45,0xa2,0x7e,0xd1,0xdf,0xa6, +0x76,0x52,0x57,0x35,0xf0,0x9a,0xac,0xde,0x96,0x09,0xdb,0x24, +0x43,0x76,0x93,0xa7,0x43,0xb8,0xc2,0x65,0x40,0x53,0x71,0x9b, +0x53,0xe9,0x39,0xc6,0x02,0xbd,0xf4,0xae,0x38,0x78,0xfc,0x00, +0x34,0x85,0x66,0xf9,0x03,0xf8,0xce,0x5e,0x22,0xac,0x49,0x69, +0x9a,0xb8,0x63,0xdf,0x15,0x93,0x89,0xbb,0x0d,0x54,0x90,0x1d, +0x85,0xc7,0xcd,0xee,0xda,0x0d,0x6c,0x54,0x1a,0x24,0xa4,0xb7, +0xe0,0xd2,0x83,0x2b,0xce,0x12,0xab,0xa0,0x60,0xa3,0xba,0x6e, +0x60,0x74,0x12,0x44,0xe3,0x80,0xb2,0x73,0x34,0xa9,0xb7,0x0c, +0x52,0xca,0xd9,0xb1,0xf8,0x85,0x59,0x57,0x3b,0x88,0xf5,0x8d, +0x25,0xf9,0xae,0x33,0xd1,0x0b,0x93,0x17,0x61,0xec,0x33,0x45, +0x04,0xdf,0x9f,0x81,0x5c,0xfd,0x4a,0x79,0x11,0x41,0x47,0xf6, +0x04,0x0e,0x1a,0x24,0xc4,0xd9,0x91,0x78,0x92,0x06,0xba,0xde, +0xd2,0xba,0x6a,0xe6,0xc7,0x62,0x38,0xcb,0x89,0x4b,0xeb,0x66, +0x1a,0xd2,0xb4,0xc5,0x66,0xa8,0x81,0x7f,0xc1,0xe4,0x68,0xfc, +0xd8,0xec,0xa2,0xe1,0x26,0xfc,0xde,0x28,0x84,0x50,0xb3,0x95, +0xc0,0x5f,0xad,0xe3,0xf6,0xb8,0x18,0xbe,0x65,0x80,0x94,0x68, +0x5c,0x61,0x03,0x2c,0x37,0x0a,0x1f,0xa8,0xf5,0xe2,0x35,0xd5, +0xcd,0x3e,0x7c,0x8f,0x99,0x7c,0xae,0xe4,0x11,0x0c,0x8d,0xc6, +0xcd,0x14,0x12,0xbd,0x4d,0xfd,0x6b,0x7c,0x23,0x12,0x29,0x72, +0xb5,0x8f,0xd9,0x53,0xfb,0x0f,0x8c,0xa1,0x7f,0x34,0xae,0xb1, +0x31,0x6c,0x21,0x10,0xfd,0x1b,0x3e,0x52,0x1f,0xc2,0x47,0xea, +0x49,0x9a,0x86,0xb3,0x34,0x7d,0xdc,0x15,0xef,0x3e,0x95,0xa6, +0xde,0x30,0x16,0xaf,0x17,0xc1,0x75,0xc8,0xb2,0x3f,0xc6,0x5a, +0xef,0xf1,0xb5,0x7f,0x0a,0x55,0x67,0x27,0xd9,0x00,0x77,0xac, +0x9a,0x60,0xae,0xc2,0xcc,0x62,0x38,0xd4,0x00,0xdc,0x75,0xd9, +0xa0,0x2b,0xbf,0x9c,0x1c,0x83,0xc4,0xd8,0x92,0x9a,0x73,0xd6, +0x1b,0x37,0x4e,0x38,0x8f,0xf6,0x86,0x59,0xe8,0x2a,0x03,0xbd, +0x05,0xb8,0x92,0xeb,0xe7,0xca,0xa7,0xdc,0x5d,0x61,0xa6,0xe6, +0x59,0x9a,0x2d,0x60,0x7a,0x68,0xe9,0x10,0x71,0x5f,0x8b,0x25, +0x76,0xa4,0xde,0x87,0x54,0x6b,0xb4,0x1c,0x1e,0x6d,0x7e,0x24, +0xee,0xb3,0x47,0x6b,0x33,0x43,0xa0,0x5b,0x48,0x85,0xcc,0x84, +0x80,0x1b,0x21,0x71,0x63,0x24,0x6e,0xd6,0x51,0xf9,0xca,0x24, +0x3c,0xd4,0xe9,0x4d,0xe9,0x32,0x8f,0x22,0xf7,0x66,0x46,0x02, +0xcc,0xc7,0xea,0x67,0xa1,0x3a,0x8c,0xb2,0x3f,0xe6,0x1f,0x67, +0x71,0x7a,0x83,0xc4,0x89,0x05,0xd2,0x92,0x9d,0x76,0x65,0x67, +0x05,0x4c,0xc3,0x3a,0xb2,0x7e,0x9c,0x80,0x3a,0x7a,0x4c,0xfd, +0xd2,0x3f,0xc4,0xdf,0x90,0xaa,0x3f,0xc4,0x2d,0xd2,0xe3,0x2d, +0xb6,0x36,0x55,0xd9,0xda,0xdc,0x8d,0x54,0x4d,0xcd,0xdf,0x34, +0xe7,0x20,0x5c,0x64,0x65,0x25,0x67,0x9b,0xaf,0xf2,0xec,0x32, +0xa2,0xf0,0x3b,0x56,0x9e,0xca,0x46,0x30,0x2f,0xc7,0x19,0xb4, +0x1c,0x53,0xd3,0x5c,0x6e,0x7a,0x35,0x0a,0x4f,0x71,0x53,0x55, +0xc3,0x3a,0xa8,0xd0,0xca,0x88,0xa4,0xe0,0xb3,0x50,0xd8,0x9a, +0x60,0xa9,0xf7,0x5e,0x6a,0x0e,0x2e,0x53,0x7c,0xe2,0x60,0xa1, +0x33,0x53,0x38,0x75,0x3e,0x6d,0xa0,0x4b,0x8f,0xf7,0xf9,0x2b, +0x2d,0xc8,0x2f,0x9f,0xb6,0xbe,0xd4,0x52,0x2f,0xd3,0x32,0x4c, +0xaf,0x68,0x83,0xa1,0x56,0x32,0x2f,0xf6,0xd3,0x2b,0x72,0xf6, +0x0d,0xa1,0x9e,0x4f,0xcf,0x21,0xfc,0xc0,0x89,0xc2,0x14,0x4e, +0x14,0x4a,0xcf,0x96,0x9c,0xf3,0x5b,0xcf,0xb6,0x66,0xb6,0xb9, +0x82,0xc7,0x5a,0x1a,0x85,0xdf,0x13,0xff,0x9c,0x29,0xa1,0x86, +0x75,0x66,0x60,0x1f,0xdb,0x9a,0xd9,0x8c,0xcf,0x32,0x5c,0xfb, +0xac,0x36,0xc6,0x47,0x2b,0x6f,0x53,0x03,0x07,0x35,0x8a,0x6e, +0x14,0x7a,0x37,0xda,0xda,0xa6,0x2a,0xbc,0x7f,0xb7,0x51,0x21, +0x0e,0x0a,0x80,0x89,0x14,0xaa,0xf8,0x1f,0x12,0xd2,0xb3,0x95, +0x50,0x75,0xf0,0xaa,0xf4,0x9e,0x4a,0xdf,0x6f,0x8b,0x70,0xa3, +0x05,0x9f,0x8c,0xaf,0x5f,0x36,0x9f,0x3c,0xa3,0xb2,0x97,0xad, +0xf6,0x50,0x6c,0x8d,0xfd,0xc5,0x0b,0xa5,0x93,0x2d,0x88,0x66, +0xc4,0x1a,0x5a,0x9e,0x83,0xca,0x97,0x67,0xd2,0x8a,0x79,0xe8, +0x34,0x54,0x65,0x5e,0x98,0x4b,0xcc,0x04,0x4d,0xad,0xc5,0xe7, +0xcb,0x4f,0xc1,0xbf,0x6a,0xd2,0xbb,0x04,0x58,0x12,0x4d,0xe4, +0x46,0x6b,0xf7,0x5a,0xca,0x80,0x8f,0xf9,0xce,0xe0,0x24,0xfb, +0xa0,0x7b,0x7f,0x02,0x80,0xd7,0x9c,0xbf,0xf2,0x92,0xd3,0x89, +0x97,0x1c,0xdf,0xca,0xbc,0xe4,0xb8,0x49,0xff,0x93,0xa2,0xec, +0x80,0xc0,0xd5,0x70,0x97,0x7b,0xcf,0x8b,0x26,0x81,0xa3,0xde, +0xad,0x8d,0x99,0x18,0x81,0x73,0x16,0xe1,0x78,0xdf,0xb5,0x09, +0x76,0x05,0xe3,0x2e,0x68,0x16,0x10,0x8f,0x99,0xd2,0xe7,0xdf, +0x42,0x9d,0xe6,0x0e,0x6f,0x49,0x79,0x8d,0x96,0x95,0x70,0xe9, +0x98,0x22,0xd4,0xef,0x82,0x82,0xd4,0x63,0xe4,0x9a,0x2f,0x8e, +0x54,0x47,0xa0,0xb2,0x06,0x9d,0xa0,0xde,0xa6,0x1d,0x7f,0x04, +0x2c,0x3a,0xee,0x9a,0xda,0x08,0xbd,0x33,0xb0,0xa5,0xaf,0xa7, +0xf4,0x4a,0x10,0x38,0x5c,0x55,0x32,0xd2,0x9a,0xa0,0xff,0x42, +0x6c,0x42,0xc1,0xda,0xed,0x48,0xd5,0xe8,0x21,0x87,0xb4,0x01, +0x9b,0x77,0xdc,0x0e,0x50,0x5e,0x38,0x9e,0x22,0xd4,0x70,0x3e, +0x32,0xaf,0xe1,0x70,0x78,0xcb,0x48,0x0d,0xc7,0x80,0x74,0x0b, +0x12,0x23,0x55,0x27,0x0b,0xb2,0xfe,0xe6,0x1d,0xb7,0x02,0xf0, +0x0b,0x55,0x8d,0x82,0x51,0x3e,0x74,0x3e,0x1c,0xc2,0x6d,0x84, +0x32,0xf8,0x3b,0xc1,0x58,0xf0,0x7d,0x15,0x25,0x3d,0xa7,0x09, +0x29,0xa7,0x0a,0xfc,0x92,0xdc,0x30,0x0e,0x48,0xad,0x89,0x8f, +0xb1,0xcf,0xc8,0xe3,0x70,0x7c,0x20,0x03,0xa2,0x05,0x96,0x50, +0xc4,0xff,0x0e,0x1f,0x89,0xa7,0x27,0x77,0x9e,0xa1,0xea,0x4a, +0x24,0x1f,0x23,0xff,0x45,0x80,0x3b,0xae,0xde,0x67,0x1d,0x83, +0xef,0x0f,0xad,0xac,0x28,0xf3,0x09,0x39,0x77,0x22,0x55,0x63, +0x9b,0x9c,0x4d,0xaf,0xdf,0x0a,0x98,0x83,0x1f,0x53,0xb0,0x19, +0x2e,0xd4,0x66,0x8b,0xee,0x8e,0x46,0x2a,0xe1,0x4a,0x67,0x82, +0x36,0xbd,0x7e,0x3b,0xa0,0x03,0x7a,0x50,0x50,0xc9,0x47,0xd4, +0xfb,0x5f,0xb5,0xb0,0xd8,0x8d,0x07,0xac,0xc6,0x19,0xf8,0xc3, +0xcd,0x72,0xa2,0x1e,0x1b,0x69,0x84,0xdf,0x26,0xe1,0xf7,0x48, +0x15,0xfa,0x74,0xba,0xca,0x05,0x5f,0x2c,0x7b,0xcb,0x42,0x31, +0x1c,0x42,0x99,0x76,0x55,0x13,0x87,0x3e,0x14,0x9c,0x63,0x4b, +0xc2,0x48,0xe9,0x17,0x6a,0xe5,0xd8,0x2e,0xb6,0x91,0xbe,0x33, +0xad,0x1c,0xdb,0x69,0x0c,0xb1,0x46,0x8a,0x40,0xbf,0x0c,0x6c, +0xe8,0x3b,0x15,0x3e,0x2b,0xfb,0x44,0xa8,0x66,0x6f,0x93,0xa7, +0xc5,0xf7,0xff,0x94,0xa7,0xdb,0xfc,0xa4,0x63,0x0f,0x67,0xbc, +0x2e,0x62,0xa0,0xd9,0x86,0xfd,0xb4,0x21,0x65,0x83,0xc5,0x59, +0xfe,0xdb,0xc7,0x28,0xa3,0x98,0x37,0x07,0x0a,0x4f,0xa8,0x40, +0x65,0x98,0x24,0x77,0xfb,0xf1,0x41,0x59,0x4f,0x62,0xe4,0x12, +0x81,0xf7,0xd5,0xd0,0x68,0xeb,0x9b,0xaa,0x44,0xe1,0xfe,0x6c, +0xeb,0x2b,0x54,0x26,0x4f,0xe2,0x3f,0xef,0xce,0x92,0xda,0x40, +0x01,0x1d,0x30,0x1a,0xaa,0x5b,0x89,0xb9,0x8b,0x5d,0x69,0x14, +0xea,0x13,0x57,0x9e,0x98,0xbb,0xd8,0xc1,0x48,0x23,0x02,0xd3, +0x89,0xc0,0x29,0xf0,0x1e,0x8f,0x55,0x5f,0x85,0xbe,0x2d,0x1e, +0x60,0x66,0x79,0x82,0xee,0x34,0x0e,0x30,0x16,0xe5,0xe1,0x1d, +0x31,0x15,0xbe,0x66,0xfa,0xdb,0xbc,0x2d,0xe2,0xf0,0x6d,0x3b, +0x4b,0x77,0x1a,0x47,0x48,0x7d,0xaa,0xb8,0x8e,0x7b,0xec,0x2c, +0xdd,0x45,0xf4,0x23,0xec,0xcd,0xd0,0xa5,0x3c,0x4b,0x77,0x1a, +0xc7,0x54,0xf4,0xfd,0x84,0xfb,0x46,0xbc,0x2d,0x3a,0x61,0x9e, +0x7d,0xe3,0x15,0x35,0xf6,0x95,0xfa,0x34,0x81,0xe9,0xd8,0xfa, +0xee,0xff,0x34,0xe1,0x6f,0xf1,0xbe,0xb3,0xec,0x1f,0xd0,0x33, +0xb0,0xdd,0xd3,0x24,0x9e,0x1f,0x27,0xf1,0xfc,0xca,0x93,0x78, +0xd5,0xa4,0xdf,0x14,0xf1,0x24,0x5b,0xe7,0x57,0x9e,0xad,0x9b, +0x4a,0x9e,0xc9,0x3c,0x2b,0x5b,0x77,0x57,0xd5,0x28,0xcb,0x12, +0xf0,0x51,0x99,0x29,0x54,0xe3,0xc7,0x02,0xd7,0xe0,0xf0,0x2f, +0x84,0x79,0x9b,0xd3,0x75,0x7e,0x4f,0xd2,0x75,0x7e,0x15,0xe9, +0x3a,0x07,0x2c,0x61,0xe8,0xdd,0x0c,0xdd,0x86,0xa0,0x3b,0x71, +0x44,0x0f,0x43,0x04,0x36,0x53,0x7d,0x9f,0x66,0xe9,0xfc,0xca, +0xb3,0x74,0x93,0x18,0x85,0xe0,0x31,0xb4,0xd2,0x77,0x04,0xa6, +0xa9,0xce,0x4f,0x73,0x74,0x7e,0x9c,0xa3,0x1b,0x42,0x00,0xd6, +0xed,0x55,0x78,0x97,0x1c,0x84,0x5a,0x02,0x36,0xe1,0x82,0x54, +0x1e,0x7d,0x3a,0x8f,0x6e,0xdf,0x5e,0xe5,0x67,0xe5,0xe8,0x1c, +0xe0,0xc5,0x03,0x7f,0xc6,0x03,0x37,0x7d,0x2c,0xc0,0x13,0x5f, +0xe7,0x24,0x9d,0x8f,0x40,0xaf,0x42,0x63,0x51,0xae,0xab,0xf4, +0x38,0x23,0x60,0x23,0xee,0x49,0xe7,0xde,0x73,0xb8,0x77,0xc5, +0x9d,0x55,0x7e,0x15,0x49,0x3a,0x07,0x78,0x12,0x15,0xdf,0xa3, +0x0b,0x85,0xf3,0x3e,0x0f,0x58,0x83,0x8e,0xac,0xb7,0xd2,0x75, +0xdf,0xe1,0x51,0x16,0x53,0x3b,0x47,0xd7,0x8d,0x05,0x8f,0xf3, +0x66,0xc9,0xd8,0xe5,0xc9,0x5b,0xb3,0xf3,0x5e,0x47,0x71,0x49, +0x6f,0x58,0xa2,0x96,0x59,0xd1,0xfe,0x65,0x55,0x68,0x4c,0x31, +0x93,0x6c,0xd1,0xf8,0xe1,0x91,0x06,0x6d,0xa1,0x66,0x0e,0xe9, +0x43,0x06,0x05,0x95,0xe1,0x58,0x23,0x03,0x9b,0x5a,0xb9,0xaf, +0x29,0xb8,0x34,0x01,0x96,0xe2,0x62,0x2b,0xf7,0x35,0x43,0xd5, +0x36,0xa4,0x57,0x53,0x01,0x87,0xae,0x08,0x15,0x55,0x24,0x50, +0x91,0x17,0x62,0x5d,0x97,0x32,0xce,0x06,0x5b,0xc0,0xf7,0xa4, +0xe0,0xcb,0xaa,0x87,0xf4,0xeb,0x2b,0x94,0x0f,0xf6,0x29,0xa3, +0x70,0x6e,0xbc,0xf9,0x9e,0xc1,0x8d,0x58,0x5c,0x12,0x16,0x89, +0x8b,0x74,0x0c,0xc3,0xae,0x86,0xca,0x17,0xf0,0x23,0x61,0x49, +0x22,0x2c,0x3b,0x78,0x83,0x64,0x7e,0x57,0xcc,0x52,0x8d,0x84, +0xac,0x49,0x06,0x30,0xb5,0xd8,0x5c,0x1e,0x89,0x63,0x18,0xb2, +0x9d,0xf4,0xd8,0xc6,0x5e,0x4f,0x63,0x4e,0x83,0x39,0xce,0xf0, +0x1d,0x17,0xc9,0x96,0xd5,0x59,0x26,0xf0,0x8a,0xea,0x67,0xe5, +0xbe,0x96,0x71,0xd6,0xe9,0x15,0x2b,0xf7,0x35,0xc6,0xa6,0x23, +0xd5,0xca,0x7d,0xcd,0x50,0xee,0x56,0xef,0xdf,0x54,0x07,0x3b, +0xf7,0xf5,0x12,0x2e,0x4d,0xa4,0xd6,0x09,0x56,0xee,0x6b,0x06, +0x59,0x4b,0xa6,0xe2,0x2b,0xa2,0xa2,0x55,0x11,0xbb,0xba,0x69, +0xfb,0x98,0xd8,0x7d,0x16,0xb1,0x47,0x8a,0xcd,0xab,0xb4,0x30, +0xea,0xf4,0x9e,0x67,0x59,0xea,0xde,0x1c,0x7d,0x32,0x30,0x84, +0xb4,0xa9,0x62,0xee,0xdb,0x5c,0xac,0xaa,0xe8,0x05,0x33,0xe6, +0x7a,0x2f,0xcb,0x76,0xfd,0x74,0xef,0xc6,0xfd,0xb9,0x8e,0x0f, +0x3b,0x4f,0xd6,0xb1,0xd2,0x00,0xe9,0xde,0x5b,0x5c,0xfe,0xe6, +0x9b,0x6f,0x7c,0xb2,0xb5,0xcd,0xf6,0x59,0xd2,0xed,0xe5,0x67, +0x49,0xad,0xe9,0x65,0x15,0x9b,0x9b,0x9f,0x9d,0x5e,0x62,0x28, +0x71,0x75,0x94,0x80,0xe4,0x9b,0xbc,0x03,0xd0,0xf4,0x3a,0x26, +0x07,0xc0,0x60,0x1c,0x6a,0x24,0x3d,0x97,0x84,0xc1,0x18,0xdc, +0x37,0x3f,0xdf,0x5f,0xd6,0xf8,0x8c,0xc2,0xed,0xf1,0xe6,0x79, +0x23,0x99,0x88,0x5b,0x59,0x6c,0x2e,0x89,0xc4,0x3e,0x4c,0xdc, +0x08,0x63,0xd1,0x51,0x57,0x9e,0xc6,0x1b,0x44,0x96,0x1f,0x91, +0x35,0x12,0x5b,0x7c,0xca,0xd3,0xc8,0x35,0x78,0xaa,0xf3,0x2d, +0x4e,0x8e,0xe4,0xa1,0xda,0xd8,0xaf,0x6e,0x0f,0xc1,0xb5,0x25, +0x38,0x27,0xf6,0x7e,0x28,0x9e,0x60,0xcc,0x2c,0x36,0xe7,0x59, +0x18,0xc3,0xb0,0xa1,0xf1,0x2c,0xba,0x17,0xb0,0xb5,0x9d,0x79, +0x7b,0x1f,0x7f,0x34,0xb0,0x6b,0x02,0x74,0x55,0x63,0xec,0xcc, +0x5b,0x89,0xca,0x37,0xa6,0x99,0x5d,0x61,0xf5,0x09,0x3c,0xaf, +0xbe,0xbd,0xaa,0x41,0xed,0x3f,0x72,0x76,0x14,0xf2,0xe5,0xbd, +0xa9,0xf1,0x2d,0x16,0xa1,0x8b,0x95,0x7e,0x53,0xc9,0x38,0x8f, +0xf8,0xd9,0x19,0x27,0x59,0x57,0x22,0x4d,0xd2,0x3b,0x63,0x4b, +0x59,0xd3,0x5f,0xc0,0x3e,0x78,0xf3,0x04,0xde,0xa1,0x50,0x9d, +0xd6,0xb9,0x2c,0xec,0xff,0xe4,0x0e,0xa4,0x64,0xb3,0x9d,0x05, +0x7f,0xcd,0xba,0x04,0x69,0x3e,0xc1,0xb7,0x37,0x52,0xe3,0x43, +0x32,0xb0,0xaa,0xef,0x0c,0xc8,0xb5,0x3b,0xc5,0x73,0xa7,0x96, +0xf8,0x58,0x7a,0x9e,0x14,0x90,0x42,0x26,0x51,0xa5,0x58,0xa9, +0x37,0x1a,0x6c,0xa6,0xf4,0xcd,0x11,0x38,0x55,0xb5,0xb5,0x52, +0x6f,0xf4,0x60,0x92,0xf4,0xa5,0x80,0xf4,0x0d,0x4c,0x7b,0x72, +0xab,0x51,0x32,0x80,0x35,0xc2,0x58,0xeb,0x5a,0x23,0xa6,0xa8, +0x9d,0x74,0x0f,0x12,0x70,0xc0,0x46,0xde,0x85,0x90,0x43,0x3d, +0x5c,0x5f,0x91,0x79,0x23,0xf8,0xaf,0x89,0x95,0xd6,0x0c,0x16, +0xc4,0xd0,0x5b,0xeb,0x86,0x63,0x2d,0x85,0xf5,0x27,0xcf,0xf0, +0x75,0xfc,0xe2,0xc9,0x25,0x47,0xc9,0x14,0xad,0x31,0xdc,0xb8, +0x73,0x66,0xaa,0x94,0xb7,0xc4,0x89,0xc0,0x8a,0x1b,0x8c,0x26, +0x60,0x56,0x02,0xf9,0xaa,0xf5,0xad,0x0f,0x55,0xcf,0x52,0xbf, +0xeb,0xea,0x26,0xa9,0xdf,0x18,0x38,0x73,0x42,0xf9,0xa9,0xdf, +0xee,0x69,0xd0,0x1c,0xaa,0xe5,0xec,0xf8,0xd5,0xca,0xe9,0xb4, +0x40,0xb7,0x0c,0x6c,0x40,0x8b,0x7a,0xcd,0x0b,0x02,0xfd,0x71, +0x62,0x22,0x39,0x39,0xee,0x38,0x31,0x09,0x26,0x6a,0x38,0xe0, +0x39,0x03,0xbb,0x0b,0xb8,0x0b,0xfb,0x4f,0x28,0x4d,0x4d,0x70, +0x8e,0xe3,0x0d,0x90,0xab,0x06,0x8c,0x24,0x61,0x35,0x3f,0x12, +0xe6,0xdf,0xa2,0x09,0x4e,0x4c,0x81,0x89,0x8d,0xad,0xff,0x09, +0x7e,0x98,0x81,0xe9,0x02,0x27,0xab,0x58,0xa9,0x37,0x15,0x25, +0x83,0x60,0x85,0x71,0xde,0x7c,0xbd,0x2b,0x56,0x93,0x2e,0x5b, +0x44,0x32,0x43,0x24,0xd6,0xb7,0xa6,0xa3,0x6f,0x15,0x30,0x94, +0x4b,0x19,0x48,0xa3,0xdc,0x1b,0x8a,0x67,0x00,0x06,0x0c,0x36, +0xb8,0x75,0x41,0x13,0x59,0x7d,0x8d,0x95,0xa2,0x7a,0x13,0xe7, +0x1a,0x18,0x93,0x48,0x41,0x51,0x2d,0xeb,0x64,0x8a,0xaa,0xa2, +0x3e,0x14,0xca,0x45,0x15,0x19,0x33,0xcc,0xbe,0xf0,0xda,0x09, +0xbc,0xa0,0x4e,0x5f,0xd2,0xa0,0xc6,0xed,0x9c,0x1d,0x67,0x02, +0x08,0x77,0x5a,0x8f,0xd6,0x8b,0xb0,0x92,0x95,0xa5,0x52,0x5d, +0xc8,0x09,0x4d,0x86,0xf6,0x4d,0xb0,0x7d,0x0a,0xb4,0xc7,0x15, +0xa7,0x4b,0xb4,0x6e,0xd8,0x41,0x47,0x8d,0x02,0x99,0x79,0xbd, +0x9a,0x2c,0x0a,0xf2,0x9d,0x0d,0x8f,0xd5,0x97,0x42,0x4d,0xc3, +0xc1,0x64,0x3a,0xf1,0xc7,0xd2,0xbd,0x76,0xfa,0x69,0x1e,0x6c, +0x3b,0xa9,0x36,0xc1,0xe7,0xf6,0xf5,0xd1,0xad,0xe0,0x35,0x9c, +0x37,0xdc,0x4a,0x40,0x15,0x71,0xa2,0x66,0xdd,0x31,0x0a,0x12, +0x12,0xcd,0xcc,0x63,0xea,0x07,0x3c,0xc6,0xc9,0x1a,0xa5,0x35, +0x66,0xbf,0x77,0xba,0x9d,0x86,0xda,0x6b,0x40,0x55,0x58,0x77, +0x9c,0x60,0x46,0x98,0x99,0xc7,0x09,0xe6,0x3a,0xc1,0x54,0xb5, +0x53,0x51,0x0d,0xcc,0x51,0x76,0x36,0xe8,0x6f,0x1b,0xa2,0x87, +0x8d,0xe5,0x28,0xac,0xac,0x9f,0xc3,0x1e,0xf0,0x14,0xf2,0x80, +0x65,0x80,0x7d,0xe4,0x16,0x9d,0x14,0x5e,0x3b,0x1b,0xb1,0xeb, +0x3b,0x94,0x2f,0x8f,0x69,0xc4,0x97,0xc7,0x5c,0x3c,0xc9,0xfd, +0xaf,0x1b,0x8f,0xed,0xfe,0xbd,0xec,0xfe,0x79,0xb0,0x32,0x50, +0xe9,0xd6,0x89,0xdc,0xd6,0x56,0xa0,0xbd,0x98,0x75,0x29,0xcb, +0x4e,0x3d,0x5d,0x31,0xee,0xd9,0xc0,0x7d,0x6c,0x72,0x7e,0x84, +0x95,0x61,0x56,0xf2,0xe9,0x53,0x3b,0xf9,0xf4,0x8b,0xf1,0x97, +0xdd,0xde,0xd3,0x46,0x96,0x0b,0x2b,0x83,0xad,0xf4,0x53,0xb0, +0x74,0xcc,0xb1,0xa8,0x49,0x2e,0x39,0x92,0xc7,0xc7,0x67,0xeb, +0xf2,0xf1,0xd9,0x46,0x42,0x01,0xaa,0xb2,0xa1,0x4f,0x53,0x4c, +0xfd,0x21,0xf9,0x38,0x3a,0x21,0x13,0x1e,0x1d,0x57,0x91,0xaa, +0x12,0xc4,0xe2,0x0b,0x9c,0x66,0x92,0x1e,0xbb,0x68,0xe5,0x81, +0x5e,0xf9,0xf8,0x10,0x12,0xe1,0x76,0xbe,0x6a,0x45,0x74,0x76, +0xc6,0x9a,0xf8,0x42,0x45,0x72,0xe9,0x7d,0x4e,0x2e,0x9d,0xe3, +0x3b,0x5b,0xf8,0x22,0xd4,0x44,0x68,0x77,0x0c,0x4f,0xc3,0x6c, +0xc8,0x3f,0x46,0xb1,0xed,0x43,0x88,0x20,0x0b,0x91,0xd5,0x2d, +0x6e,0x39,0xdf,0x8b,0x1a,0xb7,0xb8,0x0b,0xa7,0x6d,0xe4,0x0d, +0x5a,0x88,0x64,0xd0,0x03,0x81,0x1e,0xce,0x05,0xe2,0x02,0x4e, +0x83,0xe7,0x84,0xac,0x17,0xc4,0x39,0xa0,0x65,0xd2,0x75,0x85, +0xa8,0xb8,0x38,0xf5,0x39,0x78,0x8e,0x73,0x40,0x4b,0xc0,0x3c, +0xae,0x62,0x55,0x15,0xa2,0xe8,0x79,0xe9,0xdf,0x45,0x50,0x54, +0x30,0x8e,0x49,0x4a,0xcc,0xc7,0xbf,0x69,0xb8,0xbb,0xf9,0xaa, +0x1d,0x91,0xd4,0x85,0x04,0x6b,0x82,0xa8,0xc8,0xe5,0x24,0xb2, +0x7f,0xd9,0x8a,0x1d,0x6b,0xef,0x3b,0xb4,0x6a,0x07,0xf2,0x65, +0x1e,0xde,0xb7,0xc5,0xe9,0x30,0xce,0xe2,0x78,0x8e,0xa5,0xf1, +0xed,0xee,0xdd,0xed,0xee,0x87,0xa8,0x7b,0x75,0x3d,0xab,0x53, +0xfb,0xa7,0xd9,0x1b,0x76,0xaa,0x1b,0x83,0x90,0x2e,0x6f,0x0a, +0x2e,0x0f,0x2b,0x14,0x0c,0xf7,0x2d,0xc1,0xb9,0xd2,0x30,0x57, +0x70,0x2d,0xf8,0x11,0xa2,0x31,0x02,0x2a,0x3d,0xdb,0xe6,0x82, +0x5d,0xed,0x94,0x92,0x6f,0x6b,0x3b,0xbb,0x43,0xf1,0xd6,0x26, +0xf8,0xd0,0x7c,0xf5,0x04,0x09,0x60,0xb8,0xf9,0xab,0x46,0x3a, +0x99,0x69,0x40,0xf7,0x28,0xec,0x8e,0x53,0xed,0x8f,0x19,0x9c, +0xe1,0x49,0x35,0x93,0x38,0x1e,0x9a,0x6b,0x2e,0x3e,0xa9,0x4e, +0xa3,0x32,0xcf,0x73,0xd8,0xea,0x21,0x83,0x9f,0x17,0x32,0xb0, +0xb5,0xc0,0x0e,0xd2,0x93,0xc8,0x0e,0x6c,0x2f,0x82,0xa5,0xf6, +0x2b,0x7d,0x69,0x27,0xb0,0xad,0xf4,0x78,0x51,0x94,0xed,0x22, +0x1a,0x23,0x45,0x73,0xa9,0x6f,0xe3,0xc4,0x84,0xf5,0xa7,0xac, +0x76,0x8c,0x20,0x48,0xe3,0x5a,0x97,0xfd,0x22,0x1a,0x3c,0x9b, +0x93,0x78,0xc0,0x29,0x89,0xbf,0x38,0x25,0xa1,0xbf,0x46,0x91, +0x4c,0x82,0xa9,0xa3,0x67,0x11,0x78,0x9a,0x9a,0x15,0x48,0xae, +0xe7,0xbc,0x44,0x20,0x2d,0xfe,0xd2,0xf5,0x27,0x51,0x32,0xc7, +0x5c,0xce,0x31,0x74,0xef,0x72,0xc1,0x34,0x0b,0x35,0xd0,0x2d, +0x8c,0xad,0x74,0x8c,0xca,0x6c,0xd3,0xad,0x99,0x23,0x8c,0x82, +0xaa,0x81,0x30,0xf0,0x6e,0xe1,0xbd,0x1b,0x6d,0x0b,0x30,0x6a, +0xbd,0xff,0x2f,0x3a,0xc4,0xe3,0x6b,0xc6,0x02,0xfd,0xf9,0xa4, +0x01,0xd8,0x14,0x9b,0x26,0x1e,0x38,0xe8,0xbf,0x59,0x3f,0x78, +0x8c,0x33,0x17,0x4d,0xad,0xcc,0x85,0x9d,0xae,0xf8,0xce,0x20, +0x29,0xeb,0x0f,0x8f,0x8f,0xab,0x28,0x3c,0x6b,0xf6,0xd0,0x6e, +0x60,0x60,0x69,0x90,0xc0,0x85,0x02,0x69,0x5d,0x90,0x6e,0x19, +0x14,0x7b,0xe1,0x61,0x29,0xba,0x09,0xbe,0xe8,0xb6,0x21,0x7e, +0x66,0xe0,0x49,0x88,0x85,0xc3,0x79,0x8a,0x9c,0x5e,0xb3,0xb6, +0x76,0x08,0xa5,0xf4,0x88,0x20,0xef,0x41,0xa8,0xfe,0xd2,0xef, +0x90,0xc0,0xf6,0xf8,0x81,0xac,0xe7,0x24,0xe1,0x7b,0x20,0x22, +0x20,0x43,0x06,0x6f,0xe4,0x47,0x07,0xa4,0xb1,0xdd,0x0e,0xcf, +0x8e,0x19,0x58,0x06,0x03,0x78,0xb8,0x48,0x2c,0xa4,0xe1,0xae, +0xb5,0x91,0x1e,0x23,0x84,0x95,0xaa,0x70,0x70,0x9e,0xa1,0x2b, +0xfc,0x91,0xaf,0xda,0xe2,0x9e,0xaf,0x04,0xf2,0x81,0xab,0xfa, +0x9c,0xab,0xb8,0x5a,0x91,0xab,0xf8,0x5a,0xea,0x14,0x8d,0x2c, +0x1a,0x2a,0x5e,0x53,0xd1,0x70,0x58,0x48,0xb7,0xcb,0x9c,0x7f, +0xc8,0x95,0x41,0xaf,0x08,0x5c,0x47,0xd0,0x2e,0xdf,0x70,0x2d, +0x57,0x7d,0x23,0x54,0x35,0xbf,0x2f,0x6b,0x90,0x0f,0xbd,0xd3, +0x50,0xcd,0x1f,0x9b,0xcd,0x35,0xcf,0xa6,0xc2,0xe9,0x51,0xac, +0xd1,0x20,0x5e,0x32,0x88,0xdc,0x8e,0x1f,0xa5,0xeb,0x4e,0xd1, +0x40,0xa8,0x3c,0x7a,0x96,0x09,0x45,0xb2,0x46,0x07,0x81,0x9b, +0x70,0x5b,0xc9,0x2d,0x7e,0x58,0x60,0x3d,0xbc,0x6e,0x3d,0xdc, +0x8a,0xdb,0x64,0xb5,0x5e,0x1c,0x21,0x27,0xb3,0x44,0xa4,0xd9, +0x12,0x51,0x5a,0x21,0x11,0xfa,0x6c,0x4b,0x0e,0x1a,0x4b,0xdf, +0x52,0xeb,0xed,0x87,0x75,0x10,0x30,0x3d,0xa2,0x74,0x88,0xb8, +0xa5,0xc5,0x46,0x18,0x98,0x7a,0x8b,0x53,0x0d,0xd6,0xeb,0x6f, +0x2e,0xab,0xff,0xc0,0xef,0x71,0x85,0xf1,0x8c,0x4d,0xb0,0xdf, +0x63,0x73,0x69,0xdc,0x21,0xe1,0xa4,0x35,0x8d,0x84,0xf3,0x2b, +0xdb,0x3a,0xb6,0x23,0xe1,0x74,0x0e,0x22,0xbf,0x85,0x13,0x02, +0x73,0xcc,0x4c,0xee,0x95,0x64,0x5b,0x9a,0x13,0x65,0xc1,0x22, +0xc8,0xb0,0x6c,0xe3,0x1c,0xce,0x09,0xcc,0x31,0xc7,0x70,0xeb, +0x4b,0x66,0xe6,0x09,0x6a,0xfd,0x89,0x5a,0xeb,0x4b,0xff,0x41, +0x4f,0xc6,0xea,0x61,0xf7,0xe2,0xb1,0x9c,0x7d,0xc2,0x38,0x48, +0x2f,0xc3,0x59,0x9c,0x12,0xf8,0xb7,0x68,0xc9,0xe1,0xb3,0xc2, +0x7f,0x5b,0x69,0x01,0xfb,0x4f,0x3b,0x57,0x5f,0xf1,0x87,0x9d, +0xa5,0x2f,0xff,0x0b,0x3b,0xe0,0xce,0x7b,0x8c,0x36,0xcb,0xb0, +0x6d,0x24,0xa3,0xcd,0xa7,0xe1,0x1a,0x19,0x96,0x8d,0xec,0xf0, +0x9f,0xd9,0x02,0x02,0x5d,0xcf,0xa0,0xb1,0x66,0x66,0xbe,0xac, +0x39,0x40,0x34,0x35,0xac,0x0b,0x6f,0x38,0x77,0x4f,0x4d,0x0b, +0xb9,0xe9,0x39,0x9b,0x11,0x3f,0x12,0x96,0x26,0x76,0xfe,0xe0, +0x0b,0xce,0x1f,0x94,0x8b,0x7b,0x4f,0x7b,0x8c,0x3c,0x6a,0x6d, +0xc8,0xad,0xe1,0xd8,0xc0,0xc0,0x81,0xe5,0x19,0x04,0x4b,0xd8, +0xad,0x0c,0xc2,0xc0,0x00,0x98,0x80,0x3d,0x8c,0xfe,0x15,0x72, +0x7e,0x88,0xe4,0xfc,0x50,0x85,0x9c,0xf7,0xb7,0x6e,0x3a,0xca, +0x50,0x9a,0x61,0x99,0x2e,0x38,0xae,0x68,0xad,0x33,0x7b,0x6b, +0x6a,0x15,0xa6,0x48,0x8f,0x2b,0x2c,0x79,0x6b,0xcc,0x4a,0x06, +0xd9,0x9e,0x64,0xb8,0x7b,0x8c,0x24,0xef,0x84,0x19,0xa9,0x3d, +0xe8,0x20,0x7d,0x3f,0x13,0xfd,0xa9,0x09,0xb2,0xb8,0x29,0x1c, +0xee,0xe6,0x51,0xd3,0x5b,0xdc,0xd4,0xcb,0x98,0x51,0xf6,0x3d, +0x9b,0xb3,0x76,0x64,0xce,0x38,0xb0,0x2f,0x56,0xe7,0xc8,0x0d, +0x48,0x84,0x8b,0x27,0x54,0x98,0xfa,0xe1,0x6f,0x0d,0x3a,0x40, +0xad,0x1c,0x0a,0xb4,0xd9,0x0d,0x68,0x82,0xb5,0x16,0x61,0xf3, +0xf2,0xd8,0x7e,0x98,0xaa,0x2e,0xdd,0x07,0x93,0xb7,0x5a,0xb6, +0x90,0xdc,0xd5,0xb2,0x55,0x1c,0xa5,0x0e,0x7f,0x1a,0xd0,0x0f, +0x83,0x1c,0xab,0x39,0x8f,0x9b,0xbb,0x51,0x33,0x7e,0x89,0xff, +0x2e,0x8f,0xe2,0x87,0x41,0x7d,0xe9,0xb1,0x55,0xe0,0x07,0xaa, +0x0d,0xc7,0xee,0x65,0xcb,0x05,0x0e,0x81,0x5a,0xd2,0xdf,0x4d, +0xe0,0x57,0xea,0x05,0x72,0xa6,0x39,0x44,0x1e,0x86,0x4e,0x0b, +0xa8,0x94,0x42,0x48,0x3b,0x6e,0x1f,0x86,0x60,0xa1,0x7c,0x8f, +0x51,0x86,0x12,0x4a,0x70,0xc3,0x4c,0x3b,0x64,0xef,0x07,0x61, +0x32,0xe4,0x2b,0x41,0x91,0x23,0x35,0xb5,0xa1,0xa6,0xd9,0xf8, +0x06,0x05,0xe9,0x3c,0x58,0xbf,0x22,0x0a,0x0d,0x99,0xf6,0xfa, +0x76,0x30,0xff,0x09,0x83,0x84,0x73,0xef,0xba,0xb8,0xa7,0xec, +0x4e,0x45,0x20,0x3f,0x0c,0x22,0x38,0x29,0x50,0x3f,0xc3,0x02, +0xfa,0x88,0x81,0x9a,0x10,0x50,0x7b,0xac,0x5c,0x1e,0xce,0xf7, +0x3b,0x63,0x8d,0x60,0x75,0x8f,0xa0,0x96,0xe9,0x78,0xe8,0xa6, +0x90,0xbe,0x44,0x69,0x1a,0xb6,0xfe,0xd4,0x02,0x19,0x06,0x0e, +0x26,0x99,0xde,0x7b,0x5f,0xbb,0x08,0xdd,0x99,0x89,0x5d,0x0c, +0xb3,0x27,0x84,0x1e,0xc3,0x29,0xea,0x68,0xbe,0x7e,0x39,0x7f, +0x7d,0xce,0x67,0x01,0x99,0x47,0x5d,0x17,0x8d,0x79,0x61,0x49, +0xbc,0x2f,0xbc,0xb7,0xdc,0x58,0x62,0xf6,0x86,0xb6,0xc7,0x30, +0x5d,0xe5,0x15,0x6a,0xbf,0x14,0xae,0xdf,0xf8,0x55,0xc0,0xe2, +0x5c,0xd7,0x8c,0x17,0xbb,0x2f,0xed,0x4c,0x7c,0xe6,0xda,0xf5, +0xdb,0x0d,0x64,0xbd,0x05,0x76,0xe9,0xfa,0xed,0x30,0xa9,0x1d, +0x11,0x6a,0x08,0xf6,0x2c,0xfd,0xd0,0x2e,0x60,0xbf,0x8d,0x4d, +0x65,0xdd,0x22,0x32,0x1d,0x43,0xf8,0x7b,0xab,0xd2,0xea,0x1c, +0xe9,0xf7,0x2a,0x9d,0xfb,0x1f,0x05,0xe6,0xb7,0xb1,0xb1,0x59, +0x85,0xaf,0x41,0xfb,0xc9,0x2a,0x6a,0x0f,0x5c,0x2a,0xc2,0x09, +0x54,0x35,0x52,0x2d,0x2b,0x2a,0xd8,0x6f,0x37,0x96,0xc6,0x56, +0xbb,0x80,0xfd,0x36,0x36,0x94,0xb5,0xdb,0xda,0x38,0x7f,0xc2, +0x89,0x46,0xe6,0x11,0x8a,0x05,0x73,0xc4,0x7e,0xfc,0xb0,0xbc, +0x90,0xfd,0x36,0x36,0xe3,0x81,0xea,0x46,0x58,0x95,0xec,0x3a, +0xf0,0x93,0x30,0xc6,0xbf,0x09,0xc3,0x28,0x66,0x4e,0xb7,0x63, +0xe6,0x5a,0x4f,0x6a,0xd8,0x6b,0xa9,0x31,0x7c,0xd5,0xba,0xb3, +0x07,0x05,0x78,0x66,0x14,0xb8,0xe5,0x63,0xb2,0xda,0x7f,0x40, +0x3f,0x7d,0x70,0xc3,0x86,0x0f,0x02,0x32,0x8f,0x4c,0x5e,0xfc, +0xe2,0xd2,0xe7,0x57,0xf8,0x40,0x5a,0x96,0xb1,0xc2,0x8c,0x85, +0x5a,0xf9,0x38,0x50,0x7d,0x9b,0xa7,0x9d,0x39,0xba,0x7e,0xc3, +0x47,0xcc,0x8c,0x45,0xe3,0x5f,0x58,0xd2,0xc7,0xd7,0xb3,0x39, +0x33,0xba,0xd6,0x93,0xc2,0xf7,0x5a,0x38,0xef,0xac,0xf4,0x3e, +0xc8,0x62,0xd5,0x93,0x0b,0xdf,0xab,0x70,0x7c,0x5d,0x0b,0x2f, +0x5b,0x97,0x0e,0xbf,0x43,0x80,0xe5,0x85,0xef,0x3a,0xbc,0xac, +0xdc,0x05,0x1c,0x06,0x77,0x1e,0xb6,0xab,0x74,0xfb,0x4b,0x2c, +0x3e,0x3a,0x5e,0xd6,0x5c,0x20,0xc8,0x79,0xaf,0x9d,0x8f,0x83, +0x54,0x94,0x74,0x79,0x5b,0xe0,0x50,0xbc,0xc1,0x35,0xee,0xae, +0xfb,0x05,0xf6,0x51,0xb1,0x4e,0x27,0x17,0xe2,0xcf,0x24,0x34, +0x15,0xe5,0xec,0xb5,0x30,0xf5,0xac,0xb9,0x51,0x6a,0x04,0xba, +0x55,0x35,0x34,0x1b,0x70,0xfb,0x44,0x6a,0xaf,0xa8,0x61,0xaf, +0x85,0xa3,0xac,0x1b,0x89,0x4f,0xaa,0x1a,0x40,0x32,0xba,0x08, +0x27,0x72,0x11,0x7b,0x15,0x8e,0xbb,0x6b,0xe1,0xfe,0xb3,0xe6, +0xd5,0xd8,0x0a,0xf2,0xb9,0x88,0x5d,0xff,0x93,0x89,0xda,0x0b, +0xee,0x79,0x44,0x54,0x4b,0x59,0xe3,0x5f,0xe2,0xe8,0xcb,0x16, +0x4d,0xdf,0x40,0xed,0x3c,0xa2,0xa9,0xb5,0x0a,0x10,0x37,0x30, +0x8b,0x0b,0xd6,0xeb,0x36,0x13,0x30,0x07,0xdf,0x82,0x6d,0xcf, +0x50,0x64,0xd5,0xa7,0xd7,0xc2,0x05,0x67,0xcd,0xad,0x4c,0xd1, +0x5b,0xcd,0x60,0x65,0x79,0x01,0xfb,0x18,0xf4,0x7e,0x72,0xc5, +0xbd,0x37,0x5e,0xb3,0xaa,0x71,0x7a,0xfe,0x57,0xbe,0xbf,0x1f, +0xb0,0xf8,0x09,0xdf,0x53,0xb3,0x8c,0xa7,0x6c,0xd7,0x0b,0x88, +0xed,0x1f,0x07,0x64,0x12,0xdb,0x27,0x0c,0x20,0xb6,0xc3,0x96, +0xc7,0x7c,0x56,0xc5,0xdb,0x2a,0x3d,0x57,0x5c,0x7a,0xee,0xc0, +0x49,0x05,0x25,0x11,0xf1,0xd8,0x8e,0xc2,0xff,0x46,0xf1,0x4e, +0xad,0x40,0x53,0x95,0xff,0xdf,0x78,0x0c,0xaf,0xc0,0x36,0x2e, +0x32,0x77,0x70,0x91,0xf9,0x31,0xab,0xc8,0x5c,0x7a,0xb9,0x0a, +0xb5,0xa0,0x00,0xaa,0x11,0xda,0xba,0x05,0x36,0x7f,0xa1,0x12, +0x78,0x19,0xe0,0x43,0x4f,0x7c,0x74,0xb5,0x4a,0xbd,0x45,0xbc, +0xb6,0xc0,0xa6,0x17,0x50,0x8b,0x03,0x7d,0x0b,0xec,0x49,0x3f, +0x0b,0x86,0x93,0x88,0xdd,0x2b,0xcb,0x4b,0xd6,0x8f,0x61,0x9b, +0xde,0xd0,0x46,0x2d,0xb6,0x0a,0x54,0x6b,0x51,0x0c,0x40,0xd6, +0x2c,0xe4,0x18,0x4e,0x52,0xc7,0xf2,0x2c,0x05,0xfc,0xd4,0x52, +0xc0,0xb1,0x2f,0x2c,0xe9,0xe6,0x0b,0xef,0x64,0x91,0x02,0xa6, +0x40,0x9b,0x63,0xb8,0x50,0x9d,0x3c,0xa7,0xfd,0x5c,0xb8,0x3e, +0xe7,0x2b,0x9e,0x7c,0xc6,0x4b,0xdd,0x97,0x74,0xf5,0x7d,0x52, +0xaa,0xde,0x3e,0x81,0x42,0x03,0xbb,0x54,0x3d,0x5d,0x05,0x48, +0x47,0x1d,0x32,0x0e,0x98,0x60,0x2e,0x14,0xe6,0x41,0xf3,0x7d, +0x83,0x1b,0x55,0x61,0x49,0x58,0x34,0x66,0xe8,0xaa,0x0d,0x26, +0x49,0x97,0xcb,0x02,0x4e,0x41,0x58,0x3e,0x85,0x7d,0x3d,0xa5, +0xa8,0x2e,0xe0,0x44,0x16,0x6f,0xe5,0x67,0xbc,0xd8,0x6d,0x69, +0x27,0xdf,0xc5,0x70,0xda,0xd9,0x5d,0xa8,0xde,0x45,0xda,0xaf, +0x45,0xeb,0x37,0x7e,0x1d,0x80,0x3f,0xe2,0x6d,0xbb,0x52,0x75, +0x9b,0xc0,0x17,0x0b,0xcd,0xa1,0xd1,0xd8,0x9f,0xd1,0xb4,0x31, +0x32,0xc7,0x0e,0x58,0x12,0xe7,0x0b,0x6f,0x40,0x58,0x2e,0x61, +0xf2,0xae,0xc0,0xb4,0xf8,0xc8,0xf0,0x8c,0x6e,0x4b,0x3a,0x65, +0xfb,0x2c,0x86,0x5d,0xd0,0x3e,0x57,0x36,0xd8,0xcf,0xe7,0x6f, +0xe2,0x9e,0x94,0xa7,0xf7,0xc7,0xf6,0x14,0xcf,0xe0,0xb0,0x42, +0x73,0x30,0x91,0x8b,0x8f,0x4a,0x3d,0x04,0x05,0x66,0x3d,0x4b, +0x3e,0xfb,0x9f,0xdb,0xff,0xc2,0x79,0x6a,0xd2,0x93,0xea,0xf6, +0xf6,0x89,0xd4,0x6c,0x57,0xb7,0xa7,0x2b,0x43,0x56,0x9f,0x29, +0x94,0xa1,0x22,0x9e,0xa9,0x6f,0x6f,0x9f,0x44,0x00,0x76,0x7d, +0x7b,0xba,0x12,0xd2,0x51,0x4f,0xfc,0x81,0x53,0x9d,0x1f,0x30, +0x37,0xf6,0x58,0xdc,0xf8,0xbe,0xd0,0xbc,0x1a,0x8d,0xd3,0x78, +0x1a,0x31,0xcc,0xad,0xe1,0xb8,0x06,0xf7,0x08,0x59,0xb3,0x54, +0x58,0x78,0xa3,0x71,0x9c,0x4e,0xcb,0xdf,0x5c,0xcb,0xb4,0x38, +0xa2,0xe9,0x55,0xe2,0xbb,0x56,0xc5,0x3a,0x03,0x2c,0x2b,0x34, +0x37,0x5b,0x00,0x6d,0x30,0x9a,0xc7,0xc6,0x4a,0xcd,0xac,0xb2, +0x75,0xe2,0xce,0xc2,0x42,0x73,0x5e,0x39,0x77,0x5a,0x49,0x5f, +0x32,0xc6,0x3f,0x10,0x37,0xe8,0x5d,0x0e,0x8f,0x5f,0xd2,0x91, +0xf8,0xfa,0x06,0xb4,0xcf,0xc3,0x45,0xca,0x51,0xac,0xfd,0x56, +0xcc,0x86,0x14,0x5f,0xc1,0xd0,0x92,0x6c,0x32,0x48,0xd6,0x6f, +0x31,0x6c,0xe2,0x74,0x41,0xe5,0x04,0xa8,0xcc,0x37,0x6a,0x14, +0xc4,0x69,0x2a,0x4e,0x1d,0x33,0xcc,0x78,0x5b,0x2d,0x0e,0xb0, +0x5a,0xac,0x67,0x73,0x74,0x74,0x72,0xa6,0xad,0x16,0x73,0x97, +0x1b,0xcb,0xcd,0xee,0xb6,0x5e,0x1c,0xca,0xd7,0xce,0xe4,0x5a, +0x7a,0x71,0x74,0xfc,0x22,0x52,0x8b,0x6c,0x1f,0x32,0x47,0xea, +0xcd,0xb3,0x5c,0x83,0xae,0xe1,0x42,0x8a,0xb2,0x2b,0x71,0x41, +0x77,0x76,0x3c,0x4e,0xd5,0x31,0x9f,0xe6,0xec,0xf2,0x9d,0x80, +0x6f,0xc1,0x2d,0x0f,0x93,0x68,0x89,0x0b,0x99,0x25,0xd4,0x57, +0x22,0x8b,0xe2,0xf9,0x5a,0x79,0xf8,0x82,0x6a,0x27,0x5d,0xc8, +0xfb,0xff,0x9c,0x8c,0xf8,0x19,0x51,0x92,0x4f,0x1c,0x8d,0x75, +0x46,0x9c,0xd5,0x94,0x66,0xb6,0x27,0xde,0x55,0xc2,0xeb,0xd6, +0x99,0x89,0x79,0x8c,0xa7,0x97,0x74,0x5f,0x22,0xe0,0xb8,0x8d, +0x27,0x56,0x36,0xf8,0x5c,0x64,0x1e,0x99,0x90,0xf9,0xfc,0x92, +0xe7,0xb2,0x7d,0xb2,0xe0,0x07,0x1b,0x5b,0xbc,0x73,0x0c,0x9f, +0x46,0xba,0x51,0xba,0x9f,0x8c,0xd7,0xe7,0x82,0xe6,0xd2,0xc5, +0x32,0x5e,0x6a,0xd3,0x59,0x2e,0x37,0xd7,0x70,0x8e,0xac,0x47, +0x9e,0xdf,0x66,0xd5,0xa0,0x74,0x39,0x3f,0x26,0x9b,0xb1,0x80, +0x1f,0x4f,0x32,0x92,0x68,0xb0,0x61,0x05,0xe6,0x98,0x78,0x1c, +0xce,0x83,0xb5,0x33,0x16,0x4f,0x96,0xee,0x1e,0x22,0x97,0xc6, +0x0a,0xfe,0x4e,0xff,0xf1,0xd0,0xba,0x0d,0x52,0xa7,0xe8,0xec, +0x33,0xa8,0x95,0x4b,0xe3,0x34,0xa0,0x71,0x60,0x31,0x4e,0x2e, +0x1d,0x55,0x4e,0xb4,0xba,0xce,0x44,0xc3,0xdf,0xd6,0xe4,0xc7, +0x59,0x35,0xe9,0xd6,0xe4,0xbb,0x59,0x93,0xff,0xde,0x26,0xba, +0x23,0x23,0x62,0xbe,0xc2,0x4a,0x16,0x5c,0x8b,0x0d,0x47,0x6c, +0xc2,0x3b,0x13,0xc2,0x5b,0xb8,0xb4,0xa4,0x82,0x09,0x6a,0xa3, +0x85,0xef,0x4b,0x0b,0xdf,0xf8,0x02,0x73,0x41,0x3c,0xbe,0xcc, +0xf8,0x3a,0x59,0x4c,0xf8,0x12,0xdc,0x98,0xb0,0xc6,0x52,0x4f, +0xa7,0x55,0xde,0x26,0x29,0x9c,0x19,0x09,0x69,0xb8,0xab,0x64, +0x01,0xcf,0x6c,0xfb,0x59,0xd6,0x4f,0x9a,0xb0,0x85,0xe1,0x25, +0xab,0xa8,0xfd,0xff,0x05,0xc3,0x3b,0xcd,0x9f,0xd4,0xb7,0x4f, +0xc3,0xd0,0x24,0x08,0xa5,0x28,0x3f,0x34,0x11,0x42,0xed,0xbc, +0x08,0x59,0x90,0xdf,0x0c,0x73,0x04,0x84,0xe4,0x93,0x05,0xb9, +0x42,0x16,0x24,0x8f,0x97,0xf0,0x45,0x47,0x5c,0x17,0x8d,0x7b, +0x61,0x29,0x59,0x90,0xb7,0xd9,0x82,0x8c,0x86,0xd6,0xf9,0xb8, +0x40,0x5d,0x23,0x0b,0x72,0x6e,0x5d,0x85,0x05,0xe9,0x61,0x5b, +0x10,0xd8,0x6a,0x14,0x9a,0xab,0xa3,0xb1,0x06,0xfa,0x27,0x82, +0x3f,0x56,0xbb,0x26,0x34,0xd5,0xa6,0xb5,0x91,0x79,0xd8,0x35, +0x63,0xdc,0xc0,0xa5,0x3d,0x7c,0xc9,0x6c,0x06,0xe6,0xe1,0x78, +0xd5,0x49,0xd6,0xbf,0x22,0xe0,0x28,0x34,0xcf,0xc3,0x34,0xd5, +0x05,0x95,0x20,0xcb,0xb6,0xa3,0xec,0x4d,0x61,0x46,0x52,0x74, +0x9e,0x99,0xef,0x9a,0x31,0x30,0x2e,0xb3,0xb9,0xef,0x3c,0x78, +0x1b,0xa6,0x9d,0xc0,0x6f,0x55,0xc8,0x2f,0xda,0x9f,0x17,0x36, +0xe4,0xec,0x0f,0x80,0xd2,0x3d,0x06,0xce,0x27,0xe1,0xb7,0x7e, +0xb2,0x2a,0x10,0xf2,0x35,0x3c,0x84,0x2b,0x0c,0x78,0x21,0x12, +0x5f,0xe0,0x84,0x44,0x8c,0x39,0x42,0xba,0xad,0x10,0x90,0x04, +0x13,0xf3,0xf0,0x6b,0x3c,0x5a,0x76,0x4d,0xfc,0xcb,0xa0,0x20, +0xb4,0x17,0x4c,0xca,0xc3,0xdd,0xf8,0x3d,0x1c,0xd2,0x70,0x3f, +0xd6,0x32,0xee,0x45,0x86,0x29,0x8d,0x6f,0xac,0x7d,0x0e,0x27, +0x4a,0x97,0x4f,0x05,0x75,0x7c,0xce,0x20,0x4b,0x99,0x31,0xa8, +0x5b,0x66,0x2b,0xdf,0xb9,0xd0,0x0f,0x26,0xe6,0x53,0xff,0x1f, +0xa8,0xff,0x57,0xdc,0x3f,0x05,0x26,0xe5,0x53,0xff,0xe3,0x76, +0xff,0x20,0x03,0x5c,0x23,0x39,0xcb,0x61,0x6d,0xe1,0x85,0x18, +0x91,0x38,0x56,0xba,0x1d,0x62,0x24,0x2b,0x8d,0xcc,0xef,0x19, +0xc9,0xe2,0x56,0xbe,0xa9,0xd0,0x0c,0x26,0x1f,0x25,0x24,0xbb, +0x08,0xc9,0x17,0x14,0x50,0x90,0x2b,0x4a,0x7f,0xef,0xc6,0x9d, +0x36,0x12,0x17,0xe3,0x97,0xc8,0x56,0x63,0x84,0x72,0xa2,0x89, +0x6f,0x08,0x19,0xfc,0xba,0x80,0x9e,0x36,0xd5,0x87,0x7e,0xd2, +0xfe,0x28,0xde,0x90,0x23,0xeb,0x5f,0x14,0xe8,0x65,0xdc,0x8f, +0x0c,0x1d,0xce,0x3e,0x7a,0x78,0xe9,0x58,0x1e,0x61,0xb6,0xc5, +0xcc,0x72,0x32,0xa3,0x61,0x62,0x2e,0x75,0xf8,0x9a,0x46,0xf8, +0x92,0xc9,0xec,0x02,0x93,0x72,0x69,0x84,0x2f,0xed,0x11,0xaa, +0x1b,0x77,0x22,0x9b,0x0c,0x17,0x14,0x91,0x66,0xc2,0x29,0x61, +0x46,0x99,0xa3,0x64,0xc0,0x3a,0x01,0x09,0x30,0x39,0x0f,0xf7, +0xe0,0x11,0xe9,0xd7,0x92,0x87,0x9c,0x92,0x87,0x7b,0x29,0x6a, +0x3f,0xcc,0x3d,0x6a,0x1a,0x7f,0x46,0x36,0xe4,0x69,0x91,0x7b, +0xfb,0x01,0x5e,0x22,0x7f,0xa7,0x3f,0xbb,0xee,0x3e,0xd0,0xd8, +0xaa,0x0d,0x56,0x45,0xeb,0x0d,0x6b,0x39,0xe9,0xb7,0x24,0xd1, +0x37,0x93,0x56,0xb8,0x66,0xf9,0x98,0xaa,0x2a,0x15,0x68,0x45, +0xc7,0xd6,0x6f,0xfc,0x2c,0x00,0xde,0xa7,0x97,0xd3,0x05,0x32, +0x59,0x3e,0xe6,0xa3,0x82,0xa5,0x1a,0x79,0x01,0x03,0x0c,0x68, +0x15,0x83,0xed,0xf4,0xac,0xf6,0xad,0x96,0xb7,0xf5,0x5d,0xdb, +0xcb,0x2e,0x0e,0x7e,0xcb,0x2a,0x0e,0x8e,0xcf,0x68,0xbd,0x38, +0xe2,0x15,0xbb,0x38,0x58,0x5d,0x5d,0x2e,0x7d,0x9b,0x88,0x40, +0xe9,0x5f,0x4c,0x71,0x7f,0x44,0x80,0x8a,0x27,0x8b,0x58,0x5e, +0x1a,0xac,0xae,0x8e,0x60,0xbe,0x66,0x8e,0xeb,0xb7,0x98,0xc7, +0xed,0x09,0x4d,0x73,0x71,0x36,0xdf,0xa3,0x39,0x5e,0x7c,0x6d, +0x60,0x67,0x88,0x83,0x56,0xb9,0x14,0x9f,0xee,0x83,0x25,0xda, +0x5b,0xa8,0x63,0x53,0x01,0x55,0x62,0xd0,0x55,0x7a,0x92,0x15, +0xbd,0x59,0x9f,0xde,0xce,0x8b,0x5c,0xfa,0xbb,0x48,0xe0,0x9f, +0xff,0x6d,0xe9,0x6f,0x59,0x07,0xa1,0x76,0x15,0xc1,0x12,0xa9, +0x91,0x57,0xbb,0x59,0xd6,0xfd,0xeb,0xbf,0x2d,0xf3,0x55,0x79, +0x2a,0x94,0x4d,0x78,0xe6,0x94,0x21,0x4b,0x06,0xf9,0xbe,0x02, +0x33,0xc1,0x2b,0x0f,0x9f,0xc7,0x3f,0xf2,0xb4,0xe3,0x87,0xd6, +0x6d,0x24,0x9d,0x4f,0xa7,0xc9,0xfb,0x92,0xaf,0x46,0x2e,0xcd, +0x40,0xbc,0x09,0x2f,0x69,0x98,0x82,0x83,0x0c,0x68,0x11,0x8f, +0x6d,0xf4,0xac,0x6e,0x31,0x32,0x40,0x92,0x97,0xf9,0xbe,0x50, +0xae,0x30,0x5f,0x6a,0x29,0x5c,0x0f,0xbb,0x8c,0xeb,0x61,0x9f, +0x54,0xba,0x0e,0x57,0xcd,0x2b,0x98,0x9b,0x60,0x31,0xb7,0x79, +0x3e,0xe9,0x46,0xa5,0x02,0x59,0x73,0x9c,0x80,0x0f,0x9f,0x72, +0x76,0x21,0x71,0x76,0x99,0x86,0x0b,0x18,0x79,0xdb,0x18,0xec, +0xa8,0x67,0xb5,0x69,0xb1,0xbc,0xf5,0x7f,0x54,0xba,0x46,0x67, +0x34,0x5b,0xdc,0xf0,0x69,0xa5,0xeb,0x28,0xf8,0xc9,0x66,0x60, +0xff,0xc5,0x49,0xbe,0x8b,0x88,0x81,0x11,0xb9,0x38,0x0b,0xbf, +0x73,0xf6,0x11,0xf0,0xf6,0xd7,0x32,0x78,0xad,0xf8,0x02,0x75, +0x23,0x2a,0xa3,0x69,0x66,0xe8,0x2b,0x6e,0x50,0x29,0x06,0xab, +0xe6,0x8b,0x76,0xbe,0x6b,0x13,0xd4,0xe7,0x82,0xf7,0x46,0xf1, +0x3e,0x1e,0x30,0xa0,0x1f,0xf1,0x51,0x0f,0xb4,0x6b,0x28,0xcc, +0x48,0xb3,0x9e,0x91,0x99,0x47,0x6a,0x1a,0xbf,0xb8,0x85,0xef, +0x7c,0x22,0x76,0xd2,0x71,0xdc,0xab,0x5c,0x7e,0xd6,0xee,0x9e, +0x5f,0xbf,0x89,0xd4,0xf4,0xf1,0x6e,0x03,0xd3,0x60,0x31,0x4c, +0x39,0x8e,0xfb,0xc9,0x63,0x3a,0xaa,0x15,0xa2,0x8b,0x95,0x83, +0x71,0x7c,0x24,0xb0,0xd9,0x7b,0xc2,0xd4,0x1a,0xe1,0x06,0x2e, +0x86,0x58,0x5e,0x0c,0xc7,0x30,0xfb,0xae,0xce,0xaa,0xdb,0xde, +0x42,0x69,0x89,0xf6,0x3c,0x98,0x00,0x13,0x8e,0x93,0x68,0xdf, +0xb4,0x75,0x61,0x5f,0x00,0x3c,0xa0,0x57,0x3d,0x1b,0xc6,0xc1, +0xc4,0xe3,0x24,0xe1,0xbf,0x95,0x95,0x88,0x70,0xce,0xe0,0x94, +0x8d,0xa6,0xc8,0xfd,0x99,0xbc,0x8d,0xfd,0x67,0x3b,0x7c,0x4f, +0xba,0xe4,0x09,0x5d,0x6a,0xdb,0xc4,0x65,0xed,0x30,0x6e,0x97, +0x6e,0xa6,0x28,0xab,0x2e,0xda,0x1a,0x89,0xa6,0xde,0xb0,0xe8, +0x4f,0x53,0x3b,0xa6,0x63,0x31,0x9f,0xdf,0x4e,0x13,0x58,0x2c, +0xeb,0x90,0xef,0x96,0x2f,0xb0,0x69,0xd9,0x2f,0xa2,0x09,0xae, +0xc6,0x6d,0x56,0x9a,0xe7,0x47,0x5c,0x75,0x87,0xd3,0x3c,0x0f, +0xf8,0x26,0xbd,0x7e,0x26,0x6f,0xa1,0x3b,0x56,0x88,0x56,0x9c, +0xd3,0x61,0xe0,0x26,0x04,0xdc,0x5e,0x97,0xf5,0x75,0x71,0x95, +0x4f,0x97,0xac,0x92,0xfe,0xa4,0x23,0x41,0x71,0x42,0x8d,0xc5, +0xbf,0x2d,0x39,0x19,0xdb,0x6f,0x31,0xbf,0xc7,0x91,0x96,0x8d, +0xc3,0x4b,0x05,0x5a,0x71,0xfe,0xfa,0x8d,0x9f,0x07,0xc0,0x07, +0xd6,0xab,0x1c,0x06,0xad,0xf3,0xe8,0x55,0x16,0xd1,0xab,0xfc, +0x0a,0x7d,0xec,0x73,0x23,0x4d,0x71,0x1e,0x79,0xd2,0x7c,0x6e, +0xe4,0xea,0x35,0xae,0x65,0xb3,0x7f,0xac,0x88,0x6f,0xe9,0xe4, +0x23,0x21,0x15,0xf5,0x88,0xbf,0x95,0xd7,0x23,0xf6,0xe5,0xfb, +0x63,0x4e,0xe2,0xef,0xc6,0xe2,0xc3,0x24,0x94,0xc3,0x96,0x0c, +0x26,0xa1,0x7c,0x0e,0x3c,0xf2,0xb0,0x2f,0x1e,0xcf,0xd5,0x8e, +0x1d,0x58,0xb7,0xf1,0xfd,0x00,0x98,0x4f,0xef,0xc1,0x9b,0xc2, +0xe3,0x9a,0x2c,0xab,0xb9,0x30,0x54,0xfb,0x84,0x8c,0xdf,0xe2, +0x3c,0xd7,0x59,0xe8,0x85,0x29,0x8b,0x30,0xce,0x2e,0x49,0x5c, +0xb5,0xfa,0x24,0xff,0xf8,0xd1,0xfa,0xe3,0x34,0x0c,0x57,0xed, +0x8c,0x50,0x95,0x78,0x0a,0x15,0xa2,0x38,0x8e,0xa7,0x90,0x8a, +0xd7,0x4f,0x5b,0xa2,0xf8,0xc1,0x6e,0xa6,0x7f,0x94,0x4d,0xff, +0x65,0xa2,0xff,0xd3,0x2e,0x06,0xd3,0x3e,0x77,0x11,0x4e,0xaa, +0xa8,0xc3,0xbb,0x1c,0x60,0xff,0x72,0xd2,0xc3,0x35,0xb7,0x37, +0x30,0xed,0xe5,0x62,0x38,0x02,0xae,0xb2,0xf5,0x62,0x31,0x64, +0x3d,0xee,0x6b,0x8b,0x61,0xbe,0xf9,0x8e,0x20,0x9c,0x1d,0x21, +0x11,0x5a,0xe4,0xe2,0x5c,0x3c,0x02,0x8b,0x35,0x9a,0xd8,0xfb, +0x9c,0x42,0x2a,0xdb,0x2b,0xf2,0xbc,0x5f,0x14,0x8b,0x70,0xc2, +0x2e,0xb1,0x16,0xaf,0x72,0xbd,0x9d,0x74,0x9b,0x22,0x58,0x85, +0xe6,0x0a,0x9c,0x31,0x54,0x64,0xab,0x68,0x2e,0xb8,0x33,0x6a, +0x89,0x9e,0xd8,0xec,0x99,0x82,0xbb,0x11,0xc0,0xa6,0x58,0x91, +0xfe,0xb6,0x87,0x88,0xa3,0x34,0xca,0x47,0xe6,0x62,0x01,0xad, +0xa1,0xc5,0x51,0x1a,0xe1,0x5d,0x67,0xbc,0xc0,0xa5,0x9c,0x74, +0x22,0xfc,0x47,0x6d,0xfc,0xd2,0xf7,0x55,0xee,0x9b,0x67,0xf5, +0xdd,0x2a,0xab,0xe7,0x32,0x73,0x57,0x97,0xdc,0xe2,0x87,0x05, +0xd6,0xc3,0xb7,0xad,0x87,0x3f,0xe2,0x6a,0xe3,0x1c,0xb8,0xdb, +0x17,0x45,0xe6,0x2c,0xc9,0xf5,0x9e,0x81,0xe1,0x7c,0x9c,0x60, +0x82,0xf4,0xf6,0xa1,0xe5,0xcb,0xf4,0xb6,0x97,0xaf,0xf8,0x4c, +0xd6,0x8b,0xa5,0xb6,0x5e,0x54,0x65,0xbd,0xb0,0x96,0xaf,0xc7, +0x7b,0x58,0x2f,0x16,0xd9,0x7a,0x51,0xc9,0xd2,0x8b,0xaa,0x9c, +0x89,0xa2,0x75,0xef,0x7b,0xbb,0x63,0xac,0xb5,0xee,0x7d,0x6b, +0x2f,0x70,0x9d,0x7f,0xd1,0xee,0x5d,0xb0,0x14,0xca,0x5e,0xf7, +0xf6,0xda,0x3f,0xc6,0xd8,0x81,0xd6,0x3d,0x67,0x3a,0x4e,0xe6, +0x0c,0x13,0xe9,0x4d,0x42,0xf9,0xca,0xb5,0x98,0xf5,0x66,0x38, +0x4c,0x38,0x46,0x7a,0x73,0xd1,0x5e,0xb9,0x66,0x53,0xb0,0x36, +0xf1,0x18,0x29,0x4c,0x31,0x29,0x4c,0x53,0xc3,0xba,0x68,0x63, +0x7a,0x69,0x01,0x2f,0x24,0x6d,0x58,0xdb,0xd2,0xcb,0x7b,0x4d, +0xb2,0xb5,0xed,0x36,0xf5,0xb2,0xd4,0x6c,0xbc,0xad,0x66,0xbf, +0x53,0xaf,0x10,0xce,0x48,0xc9,0xea,0xdd,0xac,0x6c,0x3c,0xdf, +0x80,0x51,0x56,0x97,0xf4,0xe8,0x69,0xf6,0xa9,0xfc,0x4f,0x3b, +0xc5,0xc4,0x70,0x4f,0xf3,0x49,0x05,0x9c,0x4f,0xea,0xc7,0xf9, +0x24,0x1a,0x6f,0xb4,0xac,0xd1,0x4e,0xf0,0xa2,0x9a,0x27,0x3d, +0x8f,0x08,0x5e,0x4d,0x8f,0x10,0xf6,0x56,0x4f,0x13,0x4b,0x04, +0x93,0x44,0x91,0x43,0x49,0x2b,0xc1,0x93,0x60,0xc8,0x0b,0xce, +0x97,0x6c,0x72,0x06,0xf3,0x72,0xbc,0x1b,0x8b,0xa8,0x43,0xf3, +0xa7,0xb9,0x26,0x8b,0xa8,0x70,0xac,0xcf,0x47,0x53,0x22,0x1b, +0x86,0xde,0x8d,0xb4,0x8e,0xa6,0x14,0xdf,0xff,0xb3,0x51,0xb1, +0x7d,0x34,0xa5,0xb7,0xd1,0x2f,0xe9,0x79,0x6c,0x86,0x4d,0x13, +0x0e,0x7e,0xef,0xbf,0x45,0xff,0xfe,0xf8,0x41,0xeb,0xe8,0xd7, +0xf3,0xfd,0xfc,0x99,0xa0,0x61,0xb2,0x46,0x7b,0x8b,0xa0,0x1f, +0xa4,0xe7,0x61,0x8b,0xa0,0xe3,0x4c,0x90,0x74,0xbd,0xc1,0x73, +0xea,0x60,0x9f,0x4f,0xa9,0x38,0x3e,0xca,0x6a,0xf1,0x92,0xea, +0xcc,0x9c,0xae,0xd0,0xec,0xb5,0xb6,0x85,0xae,0x5e,0x6e,0xa1, +0xf7,0xb2,0x5a,0xac,0xb2,0x2c,0xb4,0x72,0x23,0xb5,0x50,0xf9, +0xd8,0xf9,0x69,0x05,0x9b,0x1a,0x03,0x47,0x2c,0xb3,0x60,0xc9, +0xfe,0x62,0x32,0x0b,0xe1,0x79,0x24,0x95,0x97,0x4e,0x6b,0x85, +0xf9,0xd6,0xda,0xf9,0xb6,0xa5,0x02,0xc3,0xa1,0x05,0x5b,0x8b, +0x62,0xc8,0xd4,0xfe,0x15,0x23,0x3d,0x0e,0x8b,0x67,0x8d,0xf0, +0x49,0x3e,0xf2,0xc2,0xe6,0x97,0x44,0x72,0xbe,0x85,0xb2,0x5f, +0xe9,0x73,0xa2,0x42,0xfe,0x9c,0x97,0x05,0x3e,0x56,0xed,0x8c, +0xdb,0xe6,0x32,0x98,0xa4,0xce,0x27,0x99,0xab,0xc2,0xd5,0x32, +0xec,0x64,0xf2,0x29,0x86,0x42,0x2e,0x46,0xd2,0x0c,0x7c,0x9d, +0x2c,0xdb,0x66,0x38,0xa3,0x45,0xe2,0x3a,0x43,0xb5,0x22,0xab, +0xd6,0x8a,0xac,0x5a,0x5d,0x29,0xce,0x4a,0xbf,0x04,0x51,0x32, +0xcc,0xba,0x62,0x86,0x17,0x23,0x67,0x75,0x75,0xd6,0x30,0x7b, +0x40,0xd8,0x71,0x8a,0xc5,0x72,0xf3,0xf4,0xab,0xc7,0x36,0x6c, +0xfc,0xd4,0x8a,0x93,0xed,0x28,0xed,0x03,0x4e,0xe5,0xf4,0x82, +0xf6,0xc7,0x31,0x53,0xe5,0x5b,0x11,0x48,0xce,0xd7,0x96,0x1f, +0x38,0xbc,0xdb,0xd2,0x0e,0xbe,0x76,0x75,0x9b,0xda,0x5e,0xc4, +0x2e,0xea,0x0c,0x25,0xa5,0xc3,0x8b,0x4f,0x67,0x24,0x53,0x08, +0xd9,0x46,0x38,0xc3,0x88,0xf2,0x19,0xb0,0x4c,0xba,0x36,0xe5, +0x80,0xb9,0xd1,0x31,0x9c,0xa1,0x62,0xf2,0xad,0x11,0xa4,0x97, +0x9b,0xb0,0x62,0xc6,0x7c,0xe8,0x70,0x0c,0x17,0xab,0xb8,0x62, +0xed,0xd7,0xf3,0x8c,0x19,0xaf,0xe3,0x7d,0x19,0x34,0x81,0x6b, +0xbe,0x86,0x59,0xbd,0xab,0x48,0xed,0x7b,0xbe,0xf8,0xa2,0x87, +0xf4,0x1f,0x43,0x2c,0x11,0x34,0x4a,0x0d,0x59,0x7d,0x86,0x50, +0xa1,0xaa,0x95,0x0c,0x48,0x17,0x5c,0x96,0xa6,0xa6,0x2b,0xcd, +0x58,0x34,0xe6,0xf9,0xa5,0x44,0xef,0xfb,0xd0,0x28,0x9f,0xc6, +0x09,0xb1,0xc6,0x91,0x41,0x07,0x04,0x7c,0x04,0x1d,0xf2,0x69, +0x88,0x50,0xe9,0xbe,0x53,0x5c,0xc2,0x99,0x14,0xcf,0x95,0x97, +0xa1,0xcd,0x80,0xe7,0x99,0xde,0x24,0x5c,0x6f,0x17,0x99,0x6d, +0xb6,0x9e,0xf9,0x33,0x76,0xac,0x15,0x2e,0x1d,0x11,0xd6,0xd1, +0x94,0x9e,0x98,0x2c,0x65,0x15,0x32,0xf8,0xa4,0x51,0xbb,0x0f, +0x49,0x49,0x5e,0xd6,0x48,0x0a,0x7e,0x6a,0x5c,0xa5,0x47,0x7b, +0x05,0x9e,0xc3,0x48,0xe9,0x33,0x5c,0x98,0xde,0x02,0x0b,0xb1, +0x7b,0xa9,0x1f,0xdf,0xcb,0xd1,0xcb,0x99,0x24,0x70,0x87,0x73, +0x06,0x79,0x34,0xf7,0xf8,0x5c,0x46,0x84,0xd4,0xa3,0x05,0x7e, +0x87,0x3f,0x99,0x13,0x9e,0x01,0x54,0x2e,0xaa,0x2e,0x2b,0xcf, +0x42,0x28,0x74,0xbe,0xc8,0x3f,0x1a,0xe6,0x4d,0x6f,0x48,0xbf, +0xcb,0xcd,0xf1,0xb2,0xde,0x52,0x42,0xff,0x2d,0x8d,0xf8,0x9a, +0xac,0xb3,0x83,0x3b,0x39,0x77,0x2f,0x96,0xb5,0xe6,0xd1,0xc3, +0x3d,0x0c,0x10,0x27,0x8d,0x54,0x61,0xfa,0xd0,0xd3,0x65,0xb2, +0xf6,0xa3,0xf2,0x6f,0x25,0x40,0x8b,0xad,0x0a,0x91,0x6e,0xb5, +0x68,0xe0,0xbb,0xf4,0x64,0xb9,0xd4,0x9b,0x88,0x61,0x88,0xf0, +0xc3,0x93,0x13,0x1f,0xfe,0x7c,0xe2,0xc3,0xbf,0xfc,0xc4,0x87, +0x50,0xbf,0x1a,0x53,0x60,0x28,0x89,0x72,0x1e,0x5e,0x48,0x80, +0xd7,0xb0,0x17,0xae,0xc2,0x0b,0x57,0x34,0xa8,0x77,0x47,0xba, +0x11,0x9d,0xae,0x15,0xc5,0x5b,0x8b,0xd0,0x01,0x33,0xa2,0xd5, +0xf6,0x42,0xc8,0x20,0xef,0x7d,0x79,0x21,0x5f,0xcc,0x7e,0x4b, +0x75,0x90,0xda,0x52,0x5a,0xa6,0xb0,0xa7,0x0a,0x23,0xba,0xdc, +0x84,0xfd,0xf3,0x66,0x3e,0x30,0x48,0xba,0xbb,0x8a,0xc9,0xd0, +0x10,0x72,0x20,0x07,0x7f,0x4e,0x84,0xad,0x14,0x78,0xe4,0xe0, +0x1b,0xa5,0xa6,0xc0,0x48,0x2c,0x52,0x51,0x42,0xd6,0xf7,0x17, +0x04,0xe7,0x06,0xbb,0xf9,0x24,0xb2,0xae,0x06,0x0b,0xf3,0xae, +0xb9,0x9c,0x53,0x30,0x14,0xbc,0x8f,0x8f,0xc6,0x97,0x68,0xb8, +0xe7,0xa2,0xd5,0xf3,0x8c,0xed,0xd1,0x75,0x81,0xad,0x55,0x4c, +0x99,0x5e,0x3e,0x85,0x85,0xd4,0x36,0x35,0x5a,0xad,0x2b,0x84, +0x34,0x82,0x5f,0x54,0x68,0xbe,0xcf,0xa4,0x44,0x30,0xaa,0x05, +0x14,0xce,0x0f,0x28,0x07,0x9b,0x42,0x60,0x2f,0x45,0xab,0xd4, +0x42,0x98,0x48,0x60,0xb3,0x0a,0xcd,0x57,0x19,0x2c,0x58,0xf5, +0x10,0xb0,0x81,0xde,0xdf,0x48,0x1e,0x71,0x2c,0x8f,0xb8,0xa7, +0xd0,0xbc,0x11,0x8d,0x8b,0x09,0x7c,0x56,0xb4,0xda,0xc0,0x23, +0x3e,0xe6,0x69,0x41,0x35,0x5c,0x02,0x6d,0x2c,0x4a,0xd5,0x56, +0xf8,0xd4,0xc0,0x0d,0x97,0x75,0xa8,0xf7,0x77,0xce,0x8e,0xf3, +0xbc,0xcf,0x2a,0x3d,0xd3,0x85,0x66,0xfa,0xaa,0x85,0x6a,0x01, +0x23,0x9a,0xc2,0x88,0xb2,0x0a,0xcd,0x4f,0xa2,0xc9,0x35,0x75, +0xc0,0xa4,0x68,0xb5,0xdc,0x42,0x44,0x44,0x1d,0x08,0xc7,0x8f, +0xff,0xaf,0x24,0x11,0x7f,0x63,0xca,0xba,0x91,0xf2,0x86,0x0a, +0xf2,0x49,0xa2,0xca,0x3e,0xb2,0x0e,0x9b,0xec,0xc5,0x42,0x4b, +0xf0,0x02,0xce,0x09,0x67,0xf8,0x10,0x03,0x77,0xdc,0xd7,0xa1, +0x2d,0x38,0x36,0xed,0xb8,0x15,0xc0,0x89,0xdf,0x08,0xf4,0x49, +0xc7,0xc6,0xbe,0x13,0x21,0x18,0x8e,0xc1,0x06,0x55,0x37,0x11, +0x4e,0xa2,0x43,0x7b,0x22,0x9b,0x01,0xc5,0x02,0x7b,0x52,0xc4, +0x43,0xb2,0x29,0xf5,0x97,0x04,0xbd,0xda,0x91,0x96,0x50,0x05, +0x9c,0x25,0x6c,0x2f,0xb2,0x50,0x15,0x0b,0xf5,0x59,0x11,0x34, +0x6e,0xcd,0x6d,0xe3,0x58,0x9e,0x2a,0x6a,0xbe,0x82,0xa5,0xcb, +0x63,0x01,0xc1,0x56,0xbd,0x57,0xf5,0xff,0xab,0x88,0x98,0xad, +0x41,0x3c,0xf9,0xa5,0x49,0x19,0xa4,0x0b,0xfb,0x47,0xd1,0x8c, +0xff,0x45,0x0c,0x60,0x13,0x7c,0xc4,0x09,0xb3,0x40,0x4e,0x98, +0x7d,0xad,0xfe,0x24,0x91,0xb0,0xcf,0xcd,0x1c,0xc7,0xf8,0xde, +0x10,0xaf,0x32,0xad,0x8d,0xfb,0xf3,0xe4,0xff,0x8c,0x87,0x31, +0x14,0x72,0x17,0xf0,0x4f,0xd4,0x1c,0xc5,0xe7,0xf0,0x7b,0xfc, +0xf9,0x91,0x46,0xcb,0xbc,0xe7,0xc6,0x1d,0x37,0xf9,0xfc,0x03, +0x31,0xa1,0x7a,0x06,0x46,0xf8,0x7a,0x86,0xf1,0x0f,0x85,0xf5, +0xe8,0x0d,0x3d,0x70,0xed,0x79,0x16,0xce,0x19,0xaa,0xad,0x21, +0xeb,0x1f,0xe4,0xfa,0xb8,0x1d,0x77,0xb9,0xfa,0xcb,0xd8,0xb4, +0xe3,0x46,0x00,0x2a,0xec,0x6d,0x7e,0x25,0xcc,0x3f,0x05,0x4d, +0x82,0xa1,0x35,0x0c,0x45,0xc3,0x98,0x2b,0xdd,0x2f,0x89,0x49, +0x14,0xb3,0xed,0x86,0x6d,0xca,0x35,0x11,0xf6,0x63,0x20,0x29, +0xf1,0xbb,0x76,0x3f,0xae,0xcd,0xc1,0x37,0xb0,0xc8,0x0c,0x17, +0xb2,0x26,0x79,0x65,0x63,0xca,0x48,0x6d,0x4a,0x76,0x4b,0x8f, +0xca,0xc4,0x22,0x34,0x9d,0xde,0xa2,0x64,0xb0,0x74,0xad,0x29, +0x70,0x12,0xf6,0x4c,0x80,0x9e,0x1a,0x36,0x94,0x72,0x24,0x5f, +0x47,0xee,0x66,0xfa,0xf1,0x21,0x01,0xec,0x5f,0xf6,0x19,0x39, +0xaa,0x8d,0x0d,0xe9,0x49,0x8f,0xf7,0x62,0xfa,0x1f,0x8a,0x6c, +0xc4,0x0e,0xd5,0xcd,0x3e,0x25,0x60,0x77,0xb5,0x40,0xac,0x7e, +0xbf,0xa2,0x1b,0xfc,0x29,0xd4,0x01,0x1e,0x88,0x1e,0x06,0xa1, +0x97,0x94,0x6f,0x50,0xc8,0x2c,0xfd,0xdc,0x69,0xfc,0x96,0x15, +0xd3,0xd4,0x14,0xd0,0x22,0xb4,0xe3,0xae,0x5e,0x31,0x35,0x92, +0x08,0x9e,0xaf,0x06,0x89,0x6a,0x1a,0xb4,0x25,0xd0,0xe6,0x36, +0x5a,0x65,0xee,0x96,0x01,0x91,0x02,0x02,0x60,0x3f,0xac,0x55, +0x6e,0x89,0x70,0x00,0xeb,0x69,0x70,0x5d,0x2d,0x81,0x6e,0x7c, +0x46,0x21,0xcd,0x28,0x36,0x3f,0x8b,0x2c,0x27,0x00,0x6b,0x13, +0xcf,0x0e,0xf3,0x29,0xb9,0x2d,0x4c,0x64,0x62,0x13,0x20,0xb9, +0x29,0xad,0x98,0x41,0xb8,0x91,0x26,0x5d,0x3b,0x88,0x09,0xe0, +0x2e,0x6b,0x0c,0xe5,0x99,0x2c,0xfc,0xa3,0x9c,0xb1,0xbf,0x07, +0x50,0xdc,0xd9,0xc2,0xe9,0x53,0x7e,0x64,0xa1,0xc8,0x40,0xf7, +0x04,0x70,0x57,0xc3,0xad,0x1f,0x13,0x45,0xa7,0x2a,0x36,0xa6, +0x92,0x7c,0xcc,0x87,0x7c,0xcc,0x4f,0x80,0x74,0xec,0x4d,0x11, +0xe3,0xc5,0xcb,0x1a,0xd4,0xbd,0x9d,0xb3,0xfd,0x9c,0xb5,0xff, +0xd2,0xad,0x55,0x06,0x9f,0x62,0xb1,0xd4,0x44,0xfd,0xcb,0xb2, +0x2e,0xaf,0xab,0x0f,0x8d,0xb3,0xe6,0xf6,0x58,0x9c,0x51,0x96, +0x2a,0xd0,0x43,0xba,0xbc,0x2a,0x20,0x88,0xa4,0x70,0x0d,0x16, +0x25,0x92,0x14,0xd6,0xa3,0x17,0xb8,0xc5,0x24,0xf3,0xbb,0xd8, +0xb2,0x3e,0x4f,0x7f,0x10,0xc8,0xaa,0x27,0x5b,0xc4,0x7d,0xea, +0xc8,0x9a,0x9f,0x8a,0x69,0x24,0x7e,0xd9,0x24,0x7e,0xd4,0xe9, +0x55,0x12,0xbf,0x6c,0x7c,0xe3,0x82,0x06,0xb5,0x1f,0x6e,0xa2, +0x81,0x31,0xc2,0xb2,0x45,0x4d,0x84,0x1a,0xcf,0x5d,0xd7,0xd0, +0x70,0xcf,0xe3,0x6b,0xfc,0xdb,0x5d,0x4f,0x8c,0x8d,0x7a,0xdf, +0x32,0x2f,0xaf,0xab,0x37,0xa4,0xe3,0x0e,0xd7,0x99,0x3d,0xb1, +0x2f,0xea,0x55,0x4b,0x7d,0x5f,0x57,0xaf,0xd8,0x55,0x60,0x23, +0x79,0x44,0xdd,0xec,0x27,0xe0,0x5d,0xcb,0xba,0x10,0xd6,0x1b, +0x8c,0xf5,0x14,0x35,0x6f,0xf8,0xbf,0x4d,0x02,0xfc,0x2c,0x5b, +0x43,0x7d,0xde,0xe7,0x3e,0x5c,0x45,0xb7,0x2e,0x16,0x27,0x84, +0x24,0x3c,0xd4,0xd4,0xc8,0x6f,0xc9,0xf4,0x5c,0xd0,0x89,0xe6, +0x9c,0x1d,0xe7,0x78,0xdd,0x95,0x81,0xe1,0x64,0x7a,0x1a,0x5a, +0xa6,0x87,0x7a,0x7c,0xc2,0x3d,0xde,0xa4,0x1e,0x14,0x52,0xa7, +0x8b,0x02,0xcb,0xda,0x58,0x47,0x61,0x86,0x61,0xef,0x04,0xe8, +0x4d,0x0e,0x43,0xef,0x44,0xe8,0xad,0x7c,0xca,0xeb,0xce,0xee, +0x19,0x13,0xc9,0xfa,0x1c,0x80,0x22,0xeb,0xa7,0x99,0xc8,0x1b, +0x3b,0x80,0xb7,0x1e,0x70,0x0d,0x9a,0x7b,0xce,0x76,0x19,0x6c, +0x0a,0xe9,0xbf,0x42,0xb0,0xea,0xb8,0x6f,0x20,0xcd,0x0d,0x86, +0x2f,0xc9,0xb0,0x54,0x4a,0x84,0xdd,0xe8,0xc0,0x2f,0x71,0xc7, +0xaf,0x1a,0x84,0x40,0xb5,0x4d,0x3b,0xae,0x06,0x60,0x81,0xa5, +0x48,0x32,0xa0,0xb7,0x18,0x62,0x94,0xb0,0x96,0x87,0x13,0xec, +0x36,0x86,0xfd,0x9a,0x94,0xe7,0x0b,0x7c,0xf7,0x57,0xe9,0xfe, +0x39,0x0b,0xab,0xa5,0x37,0xfe,0x0f,0xc5,0x48,0x12,0xad,0x23, +0xbc,0x36,0x6e,0xf9,0xad,0xf4,0x91,0xc0,0x89,0x96,0x7a,0x48, +0xef,0x21,0x7c,0x60,0xa6,0x5b,0x69,0x0a,0xcb,0x62,0x26,0xc9, +0xe2,0xbb,0xd2,0xe7,0x77,0x96,0x2d,0x56,0x02,0x59,0x5d,0x17, +0x10,0x6f,0x09,0x7e,0xc0,0x7d,0xa1,0x4a,0xc1,0xc7,0xc0,0x9d, +0xbf,0xea,0x4c,0x43,0x0e,0xd1,0x40,0x2e,0xad,0x4d,0x66,0x28, +0x0d,0x9d,0x63,0x93,0x29,0x35,0xe8,0xaf,0xa6,0xb0,0xfc,0x07, +0xdc,0x23,0xaf,0x15,0xea,0xc9,0x80,0xae,0x2c,0xfb,0xbb,0x49, +0xf6,0xab,0x26,0xc2,0x3e,0x96,0xfd,0x9b,0xff,0x90,0x7d,0x1e, +0x2f,0x95,0x05,0x9d,0x65,0x77,0x2b,0xf9,0xd9,0xe8,0x99,0x04, +0x9e,0x18,0x60,0x7d,0xd8,0xc7,0x6d,0x34,0x75,0x99,0x04,0xf8, +0x25,0x58,0x40,0xe1,0xeb,0xb1,0x44,0xc8,0xc0,0x64,0x8a,0xc8, +0x59,0x80,0x6b,0xdf,0xda,0xb8,0xe3,0x2c,0xd3,0x91,0xd6,0xbd, +0x75,0x06,0x56,0xb1,0x8b,0xc3,0x72,0xca,0x8b,0xc3,0xfc,0x51, +0x4b,0x06,0x0d,0x6b,0x4a,0xaf,0x9b,0x62,0xa0,0xf4,0xa2,0xe8, +0xa4,0x21,0xc5,0x08,0x39,0x78,0x2a,0x11,0xb2,0x48,0x12,0x97, +0xe2,0x1b,0x67,0x35,0x10,0xb7,0x36,0x6e,0x3d,0x1d,0x80,0x35, +0xf1,0x0c,0xaf,0x8a,0x6e,0xf5,0xd8,0x6e,0xbc,0x22,0x7d,0x3e, +0x11,0x70,0x18,0x87,0x93,0x18,0x35,0x22,0x31,0x3a,0xa7,0x61, +0xce,0x29,0xa3,0xc0,0xdc,0x10,0x8f,0xb5,0x51,0x4b,0xe1,0x0d, +0x6d,0xeb,0x83,0x70,0x0f,0xb5,0xf0,0x06,0x11,0xde,0x35,0x8c, +0x77,0x39,0x49,0xd4,0x2b,0xb8,0x45,0xba,0x7d,0xc5,0x07,0x56, +0xd3,0x49,0xa4,0xac,0x03,0x3d,0x91,0xf0,0x1e,0xff,0xf0,0x71, +0x98,0x99,0x05,0xbb,0xd4,0x05,0x3e,0xa5,0x1f,0xa6,0xb2,0x70, +0x17,0xac,0xc6,0x48,0xfb,0x60,0xcf,0x3b,0xc6,0x6d,0xd8,0x9e, +0xaf,0xd6,0xde,0x93,0x2e,0xc5,0xa2,0xa1,0x4a,0xc3,0xa9,0x90, +0x15,0xae,0x74,0x59,0xe3,0x81,0xc0,0xe1,0x45,0xb0,0x5d,0x5d, +0xb4,0x7e,0xd9,0xf7,0x55,0xe3,0x2e,0x6c,0x3f,0xae,0xd6,0x3e, +0x34,0xd3,0x20,0x55,0xe5,0x27,0x98,0x0b,0x43,0x08,0x36,0x15, +0xb2,0x1a,0x29,0x3d,0x58,0x38,0xab,0x60,0x80,0x11,0x49,0x9e, +0xdf,0x0a,0x81,0x7f,0x0a,0xea,0x14,0x27,0x20,0x2b,0x42,0xe9, +0x2d,0x84,0xb3,0x12,0x8e,0x80,0x0b,0x62,0x95,0x80,0x6d,0xf3, +0x04,0x79,0x83,0xb2,0xe1,0x7f,0x81,0xe8,0xad,0x5c,0xcc,0x30, +0x0a,0x58,0xe8,0xa9,0xf3,0x26,0x3d,0x55,0xd5,0x38,0x95,0x35, +0xcd,0x99,0xc5,0x67,0x74,0xde,0x2f,0x27,0xef,0x6e,0x05,0x79, +0x93,0x2d,0xf2,0x5a,0x08,0xe5,0x85,0xeb,0xca,0x66,0xfc,0x27, +0x32,0x0a,0x13,0xea,0xc0,0x21,0x92,0x00,0x5a,0xea,0x07,0x1c, +0x27,0xff,0xdc,0x03,0x1e,0xc0,0x0a,0xfe,0x41,0x83,0xc7,0xe8, +0x89,0x0f,0x70,0x39,0x85,0xf0,0x21,0x7c,0x6a,0x65,0x79,0x47, +0x59,0xa3,0x93,0xb0,0x2e,0x0a,0xe3,0x5b,0xeb,0xfc,0x72,0x04, +0xf4,0x3f,0xaa,0x2a,0xeb,0xd9,0x77,0x5d,0xe1,0x06,0xbc,0xac, +0x5a,0xa6,0xc0,0xed,0x46,0xe4,0x32,0x8d,0x83,0xa8,0x46,0x9a, +0xf4,0x24,0xc7,0x36,0x1e,0x3b,0x19,0xe6,0x4a,0x1c,0x5f,0x08, +0xef,0xa9,0x42,0x72,0xd6,0xfc,0x0a,0xa9,0x4b,0x9e,0xaa,0xa4, +0x67,0xff,0xe9,0x0a,0xbf,0xc1,0x04,0xee,0x72,0xab,0x21,0xde, +0xc0,0x89,0x10,0x15,0xaa,0x49,0x99,0x26,0xa4,0x5f,0x31,0x81, +0x1c,0x61,0xac,0x7f,0x30,0xd6,0x51,0xaa,0x65,0x5f,0xb8,0xdd, +0x84,0xb0,0x8e,0x86,0xa8,0x66,0x9a,0xac,0xd7,0x42,0x94,0x7e, +0x29,0xd4,0x26,0x3e,0xb8,0xe3,0x07,0x31,0xc7,0xf0,0x12,0x79, +0x45,0x47,0x20,0x53,0xd5,0x48,0xa0,0x05,0x57,0xc7,0xc3,0x98, +0x09,0xcd,0xb0,0xbe,0xbe,0xac,0x5b,0xac,0xf4,0xbc,0x25,0xfa, +0x64,0xc4,0x2e,0xe9,0xc2,0xc4,0xea,0xb1,0xe2,0xe1,0xbb,0xe2, +0x37,0xe8,0x72,0x18,0xcf,0xdc,0x82,0x83,0xf0,0xa2,0x12,0x7d, +0xe1,0x70,0x53,0x3c,0x88,0x2f,0x42,0x78,0x84,0x6a,0x22,0x52, +0xca,0x56,0xf2,0xc9,0xa0,0xb9,0xc6,0x82,0x0d,0x0b,0x56,0x2c, +0x48,0x5f,0xc8,0x17,0x61,0xba,0xee,0xfc,0x64,0xdd,0xa7,0x7b, +0x1d,0xef,0xc7,0x4f,0xd3,0x23,0x27,0x0d,0x6e,0xdc,0xdd,0x3f, +0xf0,0x6a,0xfa,0x3a,0x19,0x3c,0x45,0xec,0xfc,0x78,0xfd,0x67, +0xbb,0x1d,0xef,0xc6,0xcd,0xd0,0x3b,0x48,0xaf,0xc6,0x62,0xff, +0x37,0x9f,0x7f,0xf8,0x85,0x6c,0xd0,0x4d,0x40,0x04,0xd6,0xf4, +0x3e,0xf3,0xed,0xfe,0xcf,0x3f,0xf8,0x6c,0xc3,0x9a,0x75,0x32, +0xb0,0x2f,0x1f,0x32,0x6a,0xe7,0x74,0x37,0x20,0x10,0x86,0x1e, +0x57,0x9e,0xc4,0xda,0xc7,0xc4,0xda,0xd8,0x04,0x30,0x89,0xb5, +0x8f,0x98,0xb5,0xd2,0x2f,0x83,0x7f,0x9e,0x21,0xb2,0x58,0xc3, +0x26,0xd0,0x6f,0xac,0xb8,0x0b,0x2f,0xe4,0xa9,0xaa,0x7f,0xc2, +0x2d,0xe2,0x4e,0xbb,0x14,0xf8,0xb3,0x21,0xde,0x26,0xee,0x44, +0x87,0xca,0x1a,0xad,0xc5,0x5b,0x7c,0xe6,0xe7,0x1e,0x7e,0x6c, +0x40,0xb7,0x48,0xec,0x63,0x1e,0x16,0xce,0x34,0x51,0x56,0x59, +0xb4,0xd2,0x96,0x71,0x78,0x43,0x9a,0x73,0x4e,0xa4,0x98,0x2b, +0xda,0x49,0xcf,0xa5,0xc2,0x4c,0x13,0xd8,0x98,0xef,0xca,0x5f, +0x4b,0x04,0xf0,0xad,0xc6,0x55,0x44,0x98,0x50,0xbb,0x8b,0xcd, +0xdd,0x3a,0x3d,0xef,0x27,0x3d,0x36,0x8a,0x02,0x4c,0x36,0x54, +0x6b,0x73,0xaa,0x30,0xd7,0x49,0xf7,0x28,0xa1,0x5a,0xdf,0x31, +0x5b,0xd3,0x3b,0xaa,0x3f,0x4b,0xc0,0x0b,0x47,0x95,0xcb,0x5d, +0xb8,0x2d,0x83,0x5f,0x16,0xfc,0x36,0x43,0x75,0x33,0x52,0x74, +0xc7,0x21,0x25,0xf9,0x7c,0x8e,0xe4,0x0a,0x91,0xda,0x18,0x3c, +0x19,0x35,0xfa,0x76,0x96,0x5a,0x81,0x28,0xa9,0x7e,0xdc,0x80, +0x1e,0x50,0x87,0xb5,0x26,0x84,0xb4,0xe6,0x0d,0xfe,0xb9,0x87, +0x55,0x18,0x42,0x5a,0xb3,0xf3,0x01,0xf6,0xc0,0xe9,0x8d,0x85, +0xda,0x06,0x3d,0x0c,0x98,0x49,0x7f,0xcc,0xe4,0xbb,0xf0,0x60, +0xa5,0xf1,0x18,0x44,0xb9,0x6e,0xcc,0x79,0xa2,0x1b,0x73,0xee, +0x04,0xf2,0x49,0x25,0xb5,0xe3,0xb1,0x01,0xa9,0x81,0x98,0xaa, +0x85,0xa1,0x24,0x1d,0x49,0x22,0x1d,0xc9,0x16,0xe0,0x3e,0x4f, +0xdc,0x91,0x8e,0x6b,0xa2,0x2c,0x82,0xbc,0x4d,0x12,0xfb,0x3f, +0x9c,0xf3,0x05,0x5c,0xc6,0xc9,0x24,0xf5,0x84,0xf1,0x2d,0xe3, +0x3e,0x88,0x7f,0x48,0xfd,0x9d,0x50,0x9c,0x61,0x5f,0xe6,0xb8, +0xe3,0x3e,0xe1,0x0b,0x25,0x7c,0x10,0x84,0xab,0x59,0x03,0x1e, +0x0a,0x10,0xa4,0x01,0x77,0x54,0x47,0x41,0xf6,0xc1,0x8b,0xc4, +0xbf,0x24,0xc0,0x3c,0x26,0x43,0x42,0x05,0x89,0xd2,0xf1,0x04, +0x33,0x5d,0x83,0xe1,0xea,0x05,0xfe,0xc1,0xec,0xef,0x8a,0xe1, +0x3b,0xab,0x36,0xcc,0xdf,0xfc,0xc9,0x60,0x55,0x37,0x2f,0x57, +0x68,0xbe,0x46,0x52,0xf4,0xb2,0xac,0xdf,0x50,0x50,0x5b,0xa1, +0x0c,0x39,0x2a,0xca,0x67,0xa2,0x29,0x53,0xb5,0x95,0x1e,0x89, +0xa2,0xcc,0x4b,0xc0,0x4b,0xaa,0x85,0x94,0x31,0xa2,0x74,0x99, +0x20,0xe8,0x97,0xa4,0x8c,0x15,0xd2,0xa3,0x40,0x28,0x43,0xfa, +0xae,0xe2,0x87,0x04,0x1a,0x22,0xeb,0x0d,0xa8,0x68,0x8f,0x14, +0x91,0x3a,0x46,0x2f,0x69,0x93,0xd0,0x4e,0xba,0xc7,0x89,0x6b, +0x6d,0x8f,0x61,0xf4,0x3a,0xff,0x62,0x4e,0xa2,0xcd,0x2c,0xa5, +0x60,0x35,0x28,0x96,0xa3,0xa3,0x17,0x0c,0xd2,0xca,0x09,0x66, +0xbf,0x5c,0x55,0xed,0x1e,0xa9,0xea,0x44,0xd5,0x35,0x19,0x1e, +0x6b,0xd0,0x5d,0x25,0x4a,0xf9,0xa9,0x90,0xc1,0xcd,0x04,0xae, +0x35,0x83,0x0c,0xbc,0x85,0x83,0xcc,0x5e,0x87,0x55,0x55,0x2d, +0xfb,0x57,0x57,0xb8,0x09,0x83,0x55,0xab,0xe7,0xe0,0x0f,0x0d, +0xbb,0xaa,0x1f,0xa5,0x63,0x8c,0x28,0xd1,0xc4,0xe0,0x22,0xd3, +0x8c,0x52,0x1b,0x74,0x5c,0x03,0x4e,0x83,0xe4,0xac,0x8f,0x74, +0xc9,0x15,0x90,0x22,0x5d,0x7e,0xa4,0x75,0x52,0xd6,0x7a,0x8f, +0x48,0x25,0x8f,0xb0,0x37,0x3e,0x67,0xe0,0x21,0x1c,0x69,0xfa, +0x1d,0xc1,0xa2,0x3b,0x70,0x08,0x46,0xa8,0xea,0x7d,0xe1,0xa8, +0x46,0x51,0x51,0x47,0xe9,0xd1,0x94,0x0c,0x07,0xb1,0x29,0xc6, +0xac,0x6a,0x90,0x1f,0x94,0x6c,0xd6,0x39,0x84,0x3f,0x5e,0x81, +0x6f,0x20,0x59,0xb9,0xf6,0x87,0x03,0x5a,0x1b,0xf5,0x95,0x74, +0x34,0xe5,0x33,0x52,0x85,0xf8,0x92,0x41,0x81,0xfa,0x54,0xb3, +0x5f,0x9e,0x12,0x0f,0xe0,0x3e,0x4c,0x65,0xba,0x1f,0xf1,0xc5, +0x73,0xde,0xd2,0x2f,0x8c,0xc5,0xb3,0xb4,0xd8,0x2c,0xd5,0xf1, +0x3c,0x46,0xf2,0x4f,0xf6,0x0e,0x37,0x13,0x8f,0x28,0xed,0x77, +0xb8,0x4b,0x6f,0xa2,0x7d,0x5f,0x78,0xa0,0x61,0x27,0xf5,0x81, +0xf4,0x8d,0x65,0x6d,0x89,0x21,0x11,0xbc,0x60,0x2e,0x63,0xb0, +0x51,0x66,0xd2,0x51,0xa5,0x6b,0xd9,0xb7,0x5d,0xe1,0x0f,0xb2, +0x16,0xed,0xfb,0x30,0x64,0xb4,0xca,0x93,0x8e,0xd1,0xc2,0x39, +0x5e,0xe0,0x79,0x53,0x96,0xf5,0x12,0x6a,0x6a,0xd9,0x7b,0x62, +0x29,0x85,0x8f,0x17,0xcd,0xa5,0x30,0x40,0x9d,0x4d,0x31,0x57, +0x76,0x51,0x4b,0x31,0x54,0x45,0xf0,0xb8,0xb7,0x8b,0xcd,0xdb, +0x3c,0x6e,0x07,0xa9,0xaf,0xe6,0x83,0xf7,0xdb,0x15,0x8a,0x38, +0x7c,0xcc,0xb1,0xe6,0x7a,0xd8,0xa9,0x72,0xb5,0xc2,0x64,0xc3, +0x6c,0x81,0x0d,0x55,0x0b,0xed,0xff,0x70,0xf6,0x1e,0x60,0x55, +0x1d,0xcd,0xc3,0xb8,0x8d,0x73,0x61,0x45,0xb0,0xad,0x72,0x2f, +0x2b,0x45,0x10,0xec,0xbd,0x37,0x3a,0xd2,0xc4,0x86,0xbd,0xc4, +0x16,0x35,0x51,0x13,0x4b,0x62,0x17,0x1b,0x76,0xc1,0x86,0xa8, +0xd1,0x18,0x63,0x49,0xb1,0x44,0xc5,0x2e,0x0a,0x16,0x9a,0x5d, +0x10,0xc5,0x24,0x26,0xa6,0x99,0x18,0xa3,0x49,0x8c,0x49,0xf6, +0xe0,0xec,0x25,0xff,0x99,0x73,0x2e,0x68,0xde,0xef,0xfd,0x7d, +0xcf,0xff,0xfb,0x3d,0x3e,0x78,0x4f,0x99,0x9d,0x9d,0xdd,0x9d, +0x99,0x9d,0xd9,0xb3,0xb3,0xe3,0xd6,0x80,0xd9,0xeb,0x61,0xed, +0xf7,0xf4,0xb7,0xa8,0xf6,0x51,0x06,0x91,0x3f,0x23,0x91,0xa3, +0x1c,0x44,0x76,0x55,0xc5,0x82,0x4f,0x27,0x39,0x79,0x6a,0x80, +0x45,0x19,0x38,0xbb,0xaa,0xad,0xa2,0x6a,0x6f,0x62,0xb2,0xab, +0x06,0x93,0x2d,0x2a,0x67,0xb2,0x81,0xdc,0x9e,0x1d,0x27,0xc7, +0xc3,0xd9,0xbb,0xd8,0x69,0x2b,0xcc,0x9f,0xf1,0x06,0xbb,0x7d, +0x27,0xfc,0xb3,0x19,0xf6,0x52,0x7e,0x3c,0xb2,0x14,0x32,0xc7, +0x38,0x51,0x6f,0x1a,0xb1,0xda,0xe7,0x06,0xab,0xcd,0x28,0x67, +0xb5,0x56,0xc2,0x13,0x58,0x69,0x05,0x62,0xb5,0x16,0xc2,0x33, +0x94,0x40,0x7e,0x12,0xd5,0xde,0x64,0x6a,0xb8,0xf0,0x9c,0x8a, +0x43,0x38,0x8b,0xc9,0x79,0x81,0x85,0xbf,0xc9,0xf1,0x81,0x05, +0xbf,0xc9,0x79,0xf9,0xb4,0x0b,0x6f,0x3e,0x89,0x8c,0x97,0xfe, +0x3d,0x31,0xf4,0x5b,0x06,0x43,0x1b,0x52,0x43,0xd8,0xfc,0x79, +0xbc,0x4c,0x00,0xdf,0x42,0xd4,0x58,0x27,0xcc,0x9f,0x04,0x14, +0xa0,0xea,0xb0,0x13,0xc5,0xe6,0x15,0xcc,0xfc,0x31,0x43,0x23, +0x68,0x1e,0xd7,0x7f,0xbf,0xaa,0xf6,0xc8,0x86,0x28,0xf4,0x7b, +0x4c,0xa1,0xc7,0xa9,0x52,0x03,0x57,0x95,0x0c,0xa8,0x0d,0x3b, +0xe9,0x95,0xb8,0x29,0x2e,0x28,0xe5,0x66,0x43,0x02,0xd5,0x6c, +0x0d,0x6a,0x29,0x67,0xe1,0xb3,0x92,0xde,0xdf,0xe6,0x30,0x4b, +0xbf,0x8f,0x7a,0xe0,0x79,0xf9,0x1c,0xe9,0x67,0x51,0x3a,0x14, +0x0a,0x2f,0x4f,0x26,0x3b,0xeb,0x25,0xdc,0xfe,0x0b,0x6b,0x67, +0x51,0x12,0xf6,0x08,0x31,0x93,0x4a,0x7c,0xcf,0x29,0xa6,0x74, +0x31,0x6b,0x44,0x60,0xd9,0x42,0x6c,0xa4,0x87,0xbf,0xa2,0x17, +0x26,0xfc,0x9e,0xb0,0xe6,0xf4,0xf0,0x94,0x10,0x0d,0x88,0xd4, +0x07,0x46,0xff,0xbd,0xad,0xf2,0x7b,0x99,0xfd,0xd4,0x84,0x37, +0xa6,0x19,0x30,0x0d,0x1b,0x82,0x45,0xaa,0x72,0x03,0x8b,0x49, +0x4e,0x25,0xe1,0x31,0x91,0xe9,0x68,0xb9,0x8f,0x7b,0xb1,0x95, +0x64,0xb3,0x6e,0xe3,0xff,0xa3,0xf2,0xb4,0x57,0xdf,0x7b,0x6a, +0xcc,0x3e,0x9a,0xe1,0x5b,0x74,0x2b,0xe0,0xc5,0x3b,0xb4,0x18, +0xc6,0x79,0x1f,0x79,0x20,0xc7,0xa2,0xc6,0x42,0x58,0xe9,0x9f, +0x94,0xf1,0x5e,0x3d,0x55,0x8b,0xb8,0x3e,0xf8,0x8a,0x72,0x97, +0xd5,0xe5,0x9f,0x72,0x8d,0x0a,0x8d,0x93,0x25,0x50,0x1d,0xfe, +0xd2,0xfa,0xa8,0x3e,0xc2,0xa7,0x01,0x0b,0x20,0xad,0x5f,0x12, +0x64,0xb1,0x07,0xc3,0x08,0x8e,0xc3,0xd0,0x33,0x57,0x55,0x7e, +0x86,0x7a,0x7f,0xb2,0x6a,0xdf,0x5b,0x3e,0x0d,0xb0,0xa8,0x40, +0xb8,0x21,0x3c,0x3d,0x8d,0xcd,0x58,0xb7,0xd1,0xb5,0x9b,0x88, +0xae,0xdd,0x2d,0x74,0xed,0xbc,0x63,0xe5,0x6d,0xe8,0x0b,0x37, +0x51,0xab,0xd7,0x1f,0xc5,0x16,0x42,0x3b,0xf2,0xe6,0xd4,0x31, +0xc3,0x8d,0xeb,0x63,0xb8,0x71,0xe8,0x0c,0x5d,0x81,0x1d,0xcf, +0x35,0xd9,0x55,0xd6,0xdb,0xb2,0xe3,0xa9,0xb7,0xf2,0x32,0xac, +0xcf,0xa6,0xcc,0xde,0xea,0x9e,0x06,0x7d,0xe4,0x4c,0x3e,0xa7, +0x11,0x45,0xe0,0xb4,0xf6,0x7c,0x1b,0xed,0xd0,0xcb,0x68,0x87, +0x5a,0x7b,0xca,0xeb,0x68,0x87,0x5e,0x86,0x8f,0xcd,0x52,0x9b, +0xb1,0x14,0xce,0xa5,0x64,0x8c,0x36,0x65,0x6a,0x0c,0x96,0x1a, +0x20,0x2b,0x09,0xf1,0x01,0xfa,0x3a,0xe8,0x88,0x79,0x8d,0x21, +0xfe,0xfe,0x18,0xf9,0xbb,0x8f,0x10,0x53,0xd1,0xe0,0x73,0x98, +0x9f,0xfb,0xd9,0x9f,0x01,0xdc,0x47,0xf9,0xff,0x1d,0x02,0x67, +0xeb,0x33,0x7d,0xb9,0xfc,0x4d,0x0b,0x86,0x43,0x5c,0xf9,0x4b, +0x27,0xdd,0x9f,0x44,0x47,0x95,0x14,0x6b,0xf6,0x10,0xdd,0x09, +0x3d,0xb1,0xe7,0x96,0x32,0xea,0x0c,0x4f,0x2c,0x0b,0xb5,0x69, +0x27,0xc3,0x13,0xc3,0xfa,0x3e,0xbd,0xa7,0xd9,0xc3,0xe4,0x39, +0xe1,0xdd,0x8d,0x6c,0xd1,0x6b,0x68,0x8b,0x22,0x7d,0x37,0xc9, +0x16,0xbd,0x61,0xd8,0xa2,0x88,0xe8,0x30,0x55,0x2e,0xad,0x42, +0xec,0x60,0x4d,0xc8,0x1a,0xa5,0xca,0x95,0x10,0xae,0x5f,0x18, +0x4b,0x50,0xe7,0x61,0x8a,0xf0,0xdd,0x43,0xd1,0x51,0x2a,0x50, +0x26,0x89,0x7a,0x4e,0x14,0xfa,0x84,0x64,0x8c,0x11,0x22,0x82, +0xe9,0x31,0xf4,0xb4,0x85,0xa8,0xf9,0x3b,0xa5,0xbb,0x0f,0x94, +0xe1,0x80,0x13,0x82,0xab,0xda,0x5c,0x3a,0x94,0xc5,0xd1,0x7d, +0x07,0xd5,0x85,0x81,0xd5,0x5e,0xd7,0x38,0x79,0x08,0xef,0x67, +0x96,0xae,0x67,0x10,0x6f,0x5f,0x12,0xf2,0xca,0xed,0x08,0xfb, +0x92,0xd2,0x19,0x0e,0x70,0xbc,0x97,0xef,0xa9,0x3f,0x7e,0xa4, +0x68,0x27,0xaa,0x8e,0xab,0xe6,0xaa,0xbe,0x70,0x76,0x27,0xa8, +0x05,0x66,0xd0,0x13,0x3e,0x9e,0x4b,0x8f,0xeb,0xe9,0xcd,0xb5, +0xe0,0xcb,0x1c,0xb6,0xc8,0x0f,0xe5,0x16,0x0d,0xfb,0xfd,0xb4, +0x19,0xf3,0x84,0xef,0xfb,0xd3,0xfb,0xa6,0xa2,0xca,0x25,0x26, +0x3f,0x93,0x9b,0xb5,0x1f,0xd5,0x63,0x23,0xe2,0xc9,0x41,0x9f, +0x5c,0xad,0x74,0x23,0xe2,0x09,0xef,0xa3,0xf0,0xbe,0x40,0x05, +0x99,0x11,0x4f,0x78,0xdf,0x9d,0x4a,0xfa,0x1b,0x25,0x3f,0xc6, +0x92,0x5f,0xd9,0x9d,0xcc,0x78,0x27,0x7c,0xd5,0x19,0x9b,0x12, +0xaa,0x86,0x3c,0x7d,0xa5,0x61,0x9e,0xf6,0x3a,0xf6,0x52,0x07, +0x62,0x2a,0xe8,0x0b,0x4d,0x99,0xdc,0x8b,0xe5,0x60,0x8a,0x5a, +0xa3,0x16,0xbd,0x52,0x30,0x5e,0x0d,0x7f,0x19,0xf8,0xe4,0x41, +0xcb,0x60,0x1e,0x8e,0x65,0xb0,0x77,0xc9,0xfa,0x92,0xfa,0x41, +0x90,0xda,0x9d,0x38,0x2e,0xc7,0xa8,0x16,0x30,0x46,0x2b,0x0f, +0x84,0xe2,0xe5,0x81,0x50,0x1c,0xe6,0xde,0x11,0x3e,0x1a,0x03, +0x9b,0xda,0x9a,0xce,0xf4,0x3f,0x68,0x67,0x16,0x2f,0x8f,0x7c, +0xe2,0x65,0x91,0x4f,0x3d,0xf4,0x6b,0x1c,0xa4,0x6a,0x5a,0xda, +0x86,0x36,0x19,0x8c,0xd3,0x86,0xda,0x23,0x0f,0xe2,0x80,0x5e, +0x61,0x6f,0xdb,0x47,0xa3,0xb9,0x3e,0x8b,0x8d,0xb7,0xbf,0xf3, +0x32,0x02,0x8a,0x97,0x47,0x40,0x71,0x8a,0x80,0x52,0x35,0xfb, +0xbc,0x38,0xce,0xa0,0x92,0x7d,0xea,0xcb,0x00,0x28,0x6e,0x06, +0x40,0x71,0x33,0x00,0x4a,0xd5,0x4c,0xd0,0x5f,0x63,0xba,0xbb, +0x3a,0x38,0x8b,0x68,0x98,0x46,0x34,0x98,0xf1,0x4f,0xdc,0x88, +0x7f,0xea,0x41,0x79,0x44,0xa4,0x6a,0x40,0xd5,0x7f,0x82,0xd5, +0xcb,0xa5,0xea,0xab,0x4d,0x46,0xfd,0x7a,0x35,0xf5,0x74,0x01, +0x95,0x99,0x49,0x65,0xca,0xa2,0x9e,0x78,0x59,0xd4,0x53,0x0f, +0x3d,0x12,0xab,0xc6,0xf9,0xab,0x53,0x12,0x13,0x9e,0x6f,0x31, +0xb9,0x50,0xfd,0x95,0x8a,0x57,0x93,0xd9,0x01,0xd5,0x2f,0x82, +0x08,0x9f,0x60,0x7f,0x67,0x03,0x2d,0x4d,0xd9,0x5b,0xc2,0xdf, +0x06,0x43,0xba,0x30,0xd8,0x2e,0xfd,0x0d,0x86,0xfc,0x87,0xc1, +0x56,0xd9,0x99,0x18,0xb2,0x23,0x3d,0xb4,0xbd,0xe4,0xba,0x4b, +0x74,0xdf,0x90,0xb8,0xd2,0xc1,0x40,0x55,0xcb,0x1e,0x98,0xc3, +0x5e,0x16,0x32,0x35,0x1e,0x2b,0x6c,0xa1,0x2e,0xe8,0x2d,0xe4, +0x26,0x39,0xde,0x8c,0x9d,0x02,0xbb,0xca,0xe3,0xe8,0x23,0x87, +0xc9,0xf7,0x34,0x8a,0x91,0x7a,0x0b,0xa2,0x63,0x65,0xb4,0x23, +0x46,0xea,0xd8,0x60,0x8e,0xf0,0x8d,0xf5,0x16,0x5a,0x10,0xf2, +0xe0,0x66,0x83,0xcf,0xe0,0x75,0xb5,0xdb,0x91,0xba,0x7e,0xa9, +0x01,0xab,0xa1,0xc1,0x97,0xcc,0x55,0x4b,0xd5,0x4d,0x2f,0xa6, +0xc8,0x93,0x2d,0x1a,0x58,0xec,0xfd,0x29,0x03,0xb4,0x76,0x9a, +0x81,0x8b,0x3d,0x91,0x42,0x9c,0x44,0x3b,0xf6,0xb5,0x5a,0x4c, +0x11,0x4e,0xde,0x7f,0x32,0x55,0x9f,0x20,0xf7,0x12,0x64,0x3c, +0xd2,0x6b,0x84,0x33,0x8d,0x35,0xd6,0x76,0x28,0x09,0xfd,0x0c, +0xac,0x77,0x14,0xe1,0xab,0x07,0xed,0x99,0xc9,0xf6,0xc7,0xd4, +0x69,0xf3,0x24,0x9f,0x59,0xe5,0x35,0x2e,0x25,0x88,0xa6,0x84, +0xe7,0x33,0x82,0x68,0xa2,0x7e,0xa4,0x3c,0xcc,0xe2,0x75,0x26, +0x2f,0x2a,0xdd,0x71,0x68,0xcf,0x24,0x51,0xe5,0x1f,0xec,0x63, +0x82,0x2c,0xaf,0xf1,0x07,0xec,0x90,0x57,0xb3,0xb5,0x4f,0x30, +0x60,0xe6,0x11,0x8c,0x3f,0xc1,0x7c,0x4c,0xd8,0x02,0xd5,0x3f, +0x8f,0x8c,0xc3,0x7b,0x06,0x96,0xda,0x19,0xf6,0xda,0x34,0x51, +0x3f,0x80,0x0d,0x57,0xc3,0xcd,0xe8,0xa1,0x0f,0xe1,0x06,0x07, +0x57,0x39,0x13,0x9e,0xab,0x83,0xf2,0xb9,0x5c,0x2d,0x5d,0xd5, +0x78,0x33,0x8c,0x28,0x41,0x9d,0xe4,0x30,0x5a,0x6f,0x25,0x47, +0x9b,0x29,0xd4,0x3d,0x28,0x85,0xba,0x3b,0x4c,0x35,0xce,0xec, +0x79,0x03,0xdc,0xd1,0x67,0xfc,0x53,0xf9,0xea,0x5f,0x30,0xb9, +0x47,0x8e,0xd5,0xa0,0x36,0x31,0xb9,0x23,0x56,0xc8,0x83,0xf2, +0xa5,0xbb,0xc3,0x0f,0xc6,0xea,0xca,0x4c,0x04,0xed,0x86,0xa0, +0x4d,0x09,0xf4,0x30,0x82,0x8e,0x32,0x18,0xdc,0x73,0x12,0x7b, +0xd7,0x60,0xf0,0x99,0x6c,0x32,0x31,0x38,0x85,0x09,0x79,0xc0, +0x61,0x51,0x6f,0x30,0xf3,0x23,0x6e,0xa6,0x28,0x21,0x0f,0xd8, +0x27,0xea,0x0d,0x61,0x3a,0x57,0x07,0xca,0xa3,0x84,0x3c,0x28, +0xf7,0xb9,0x3b,0x4c,0x34,0x4e,0xe9,0x21,0x32,0x3a,0x23,0xee, +0x06,0x84,0xfb,0x13,0xc4,0x8d,0x9a,0x82,0xb8,0x17,0x91,0xeb, +0xb5,0x88,0x7b,0x1d,0x21,0x40,0x1e,0x94,0xe7,0xdc,0x1d,0xde, +0xbc,0xad,0xcf,0x12,0xde,0x28,0x1d,0x51,0xc4,0xb4,0xf8,0x6e, +0xa2,0xf1,0x6e,0x1c,0xbd,0xeb,0x77,0x5b,0x8f,0x11,0x6e,0xcd, +0x58,0x3a,0x31,0xaf,0xb9,0x26,0x92,0x80,0xae,0xa3,0xbb,0x6a, +0x82,0x3c,0xd6,0x44,0xd6,0x96,0x6f,0x29,0xcd,0x58,0x15,0xa9, +0xa4,0xf2,0x39,0x6c,0xd5,0x23,0xe4,0x56,0xad,0x08,0xb2,0xb9, +0x8c,0x96,0xc8,0x66,0x46,0x5a,0x73,0x0e,0x71,0x3d,0x65,0x1c, +0xd4,0x36,0x7f,0x7c,0x0c,0xae,0x3b,0x83,0x5c,0xd7,0x4c,0xa1, +0xff,0x49,0x6d,0x47,0x86,0x1b,0x59,0xce,0x70,0xde,0x26,0x98, +0x30,0x7e,0x34,0xac,0xea,0x17,0x82,0xec,0xae,0x37,0xd3,0x82, +0xaf,0x10,0x7f,0x9e,0x27,0xf0,0x4a,0x26,0xf3,0x79,0x0e,0x60, +0x0d,0xec,0x53,0x54,0x3c,0x2b,0x41,0xb9,0xa9,0x8c,0x6c,0x56, +0xd5,0xe0,0xa0,0x7f,0x55,0x48,0x28,0x1e,0xfc,0xab,0x32,0xd9, +0x52,0x3d,0x22,0x46,0xc2,0xd2,0x32,0xaf,0x9c,0x91,0xaa,0x43, +0x5c,0x3c,0x16,0xaa,0x61,0xfc,0x50,0xa1,0x2f,0xa9,0x50,0x7d, +0x2a,0xf4,0x11,0x16,0xfa,0xd9,0xe0,0x29,0xca,0xe1,0x5d,0x19, +0xe2,0x7a,0x21,0xa0,0xb3,0xf1,0x43,0x80,0x57,0x85,0x25,0x9b, +0x0d,0x52,0x43,0x0f,0x39,0x56,0x3f,0x46,0x73,0x74,0x9d,0xab, +0xc2,0x33,0xe4,0x9c,0x67,0xb2,0x86,0xac,0x0d,0xbf,0xaa,0xfd, +0x0c,0x86,0xaa,0x0c,0x8e,0xe6,0x72,0x3b,0x39,0x46,0x2b,0x84, +0x93,0xb4,0x9e,0x50,0x1b,0x82,0x2c,0x46,0x8c,0x91,0x55,0xee, +0xe6,0x78,0xb7,0xca,0x58,0xf1,0xf0,0x86,0xda,0xf7,0x91,0xeb, +0x5a,0x40,0x30,0x93,0x27,0xe5,0xeb,0x9a,0x1c,0xda,0x85,0x83, +0x3b,0x62,0x74,0xb7,0x80,0x93,0xd2,0x0f,0x9a,0xab,0x11,0x33, +0x64,0x9a,0xde,0x4d,0xfd,0xa0,0xba,0xc9,0x34,0x98,0x41,0x67, +0xdb,0xd8,0x9d,0xf5,0x07,0x5c,0x8f,0x83,0x73,0x2a,0x4e,0x73, +0x84,0x19,0x55,0x90,0x6b,0x64,0xa1,0xba,0x05,0x85,0x72,0x0d, +0x54,0xa0,0x00,0x23,0xf5,0x8f,0x5e,0x91,0xeb,0x9d,0x61,0x90, +0xea,0xac,0x75,0x50,0x9e,0x66,0xac,0xd1,0x77,0xfc,0x17,0x84, +0xbb,0x8d,0x70,0xb7,0xe5,0x9a,0x26,0xc6,0x56,0x96,0x7f,0xe4, +0xdf,0x04,0x36,0x18,0xc1,0xf4,0x0e,0x6a,0x4c,0xe9,0x20,0x33, +0x26,0xe9,0x6f,0x84,0x7b,0x84,0x70,0x8f,0xe4,0x1a,0x1f,0x13, +0x4e,0xe7,0x04,0x37,0x09,0xe1,0x96,0xc3,0x8d,0xb2,0xb8,0xa4, +0x3f,0x10,0xec,0x3a,0x82,0x5d,0x97,0xc9,0xfe,0x9b,0x09,0x99, +0x24,0xa0,0x7e,0x08,0xb4,0x46,0xd5,0xa2,0xe0,0x24,0xdf,0x27, +0x14,0x9c,0xf4,0x8f,0x2c,0xa2,0xe7,0xdd,0xf0,0x79,0x8a,0x4a, +0xa5,0x38,0xa5,0x56,0x6c,0xa1,0x7a,0x7e,0x8b,0x7e,0x67,0xa9, +0xe7,0x3c,0xe9,0x99,0x1c,0x23,0x27,0xc2,0x41,0x61,0x41,0x53, +0x75,0x6b,0x3f,0x2e,0xf7,0xeb,0x2e,0xb0,0x5f,0xbb,0x8e,0x57, +0x81,0xb4,0x95,0xd8,0x68,0xe5,0x37,0xfc,0x19,0xd6,0x76,0x13, +0x6b,0xbb,0x29,0x93,0x1b,0x18,0xb5,0xe9,0x84,0x35,0x01,0xb1, +0x06,0xa9,0x7b,0x46,0x20,0x53,0x1b,0xa6,0x77,0x51,0x7e,0x66, +0x20,0xd3,0x97,0xfc,0x29,0xc2,0x17,0x23,0x7c,0xb1,0x4c,0x6e, +0x64,0xc0,0x03,0xc1,0x0f,0x43,0x78,0x34,0xbf,0xe3,0xca,0xc2, +0x99,0x7e,0x43,0xa8,0x1b,0x08,0x75,0x43,0x26,0x07,0x1a,0x50, +0x7f,0x95,0x61,0x45,0xa3,0x3c,0x5b,0x8e,0x7e,0x19,0xb9,0xd4, +0x47,0x46,0xe9,0x2e,0x2a,0x42,0xb9,0xc8,0x1e,0x90,0x20,0xbc, +0xba,0xd3,0xcc,0xb1,0x9c,0xcb,0x23,0xb0,0x06,0x8e,0xd0,0x41, +0x1e,0xbb,0x29,0xdc,0x27,0x1c,0x0d,0xb4,0xce,0x50,0x20,0x43, +0xc0,0x15,0x06,0x31,0xd5,0x4b,0x6f,0xc6,0xe5,0x3e,0x18,0x0c, +0xfb,0xb4,0xbf,0xa0,0x40,0x5f,0x68,0x9c,0x79,0x13,0x26,0xb4, +0x3b,0x4c,0x9f,0xa3,0x86,0x51,0xd6,0x68,0xcb,0x38,0x3a,0x98, +0x0d,0x1f,0xc8,0x5c,0x48,0xa7,0xa4,0xd1,0x14,0xdd,0x14,0x25, +0x5b,0x49,0x50,0x75,0x00,0x64,0x6b,0x88,0xfb,0x77,0x5c,0x13, +0xb4,0xa6,0x19,0x6c,0x05,0x2c,0x84,0x15,0xf4,0x7d,0x72,0x13, +0xd3,0xbf,0x50,0xbd,0x5e,0x0d,0x67,0x8a,0x97,0x3d,0x75,0x57, +0x15,0xa3,0x5c,0xd1,0x50,0xe8,0x43,0x81,0x4c,0x10,0x49,0x64, +0x1e,0x83,0x14,0x38,0xa6,0x99,0x41,0x4d,0x2e,0x32,0x12,0xc9, +0xec,0x8e,0x64,0x86,0x52,0xb0,0xc7,0x1a,0x46,0x54,0x1e,0x40, +0x2a,0x0f,0x68,0x52,0x53,0x5b,0x28,0xb2,0xa9,0x23,0x93,0x15, +0xd4,0x2f,0x46,0x64,0x93,0x3f,0x3b,0x0a,0xb9,0x46,0x64,0x53, +0x4f,0xa6,0xef,0x82,0xb3,0x65,0xb1,0x4d,0x55,0x10,0xcb,0x55, +0xc4,0x72,0x15,0xb1,0x58,0xca,0xa2,0x9a,0xd4,0x70,0xdd,0x97, +0x70,0xf5,0x43,0x5c,0x7a,0x5d,0x15,0x21,0xe7,0x1a,0xf1,0x4b, +0xcf,0x11,0x36,0x07,0x61,0x73,0x10,0xb6,0x82,0x51,0x23,0x27, +0xa8,0x78,0xaa,0xf1,0x2e,0xb6,0xfb,0x1b,0x56,0x32,0xa7,0xe4, +0x35,0x8e,0x6c,0x4e,0x11,0x22,0x41,0x57,0xb8,0x8a,0x93,0xa7, +0xf4,0x38,0xed,0x0d,0xf5,0x40,0xf8,0x3c,0x65,0x25,0xae,0xf2, +0x38,0x97,0xda,0x6f,0xf2,0x27,0x1c,0xa9,0x9f,0x7e,0x03,0x0d, +0xa6,0x19,0x4c,0xe9,0x49,0x63,0x35,0x11,0xc7,0xea,0x49,0x4f, +0x74,0xf0,0xf1,0xf1,0x2c,0x2d,0x00,0x7c,0x91,0x3d,0xed,0x47, +0x58,0x33,0xd0,0x29,0x0b,0x85,0xeb,0xf7,0x4c,0x7e,0x01,0x49, +0x14,0x9c,0xe1,0x2a,0xef,0xf1,0x3f,0x7e,0x93,0x77,0x11,0xc7, +0xdd,0xdf,0xfc,0x61,0x1a,0x8a,0x52,0x05,0xbd,0x02,0xd7,0xbb, +0xc2,0x30,0xe1,0xb2,0x8d,0xf9,0xd3,0xfa,0x80,0x0f,0xec,0xa3, +0x48,0x8d,0xe9,0x25,0xb3,0xb9,0xba,0xab,0xaa,0xe8,0x77,0xb5, +0xa0,0xab,0x5c,0x75,0x97,0x49,0x7a,0x77,0x0d,0x1d,0xc7,0xae, +0x8e,0x13,0x63,0xee,0x16,0xcb,0xbb,0xb4,0x2a,0x20,0xbc,0xff, +0x61,0xe8,0xeb,0xbb,0x75,0x61,0xf6,0x04,0x3a,0xe3,0xeb,0x02, +0x93,0x83,0x75,0x64,0x9d,0xc1,0xaa,0xb5,0xd0,0x9e,0xe3,0xf4, +0x58,0xca,0x14,0x33,0xa2,0xa9,0xdc,0x50,0x10,0x9a,0x1b,0xd1, +0x54,0x9f,0x32,0x55,0xf5,0x95,0x5d,0x39,0xe6,0x6d,0x87,0x17, +0x3d,0xd9,0x03,0xc7,0x1d,0xc5,0x56,0x11,0xba,0x9b,0xfa,0x2d, +0xb2,0x16,0x55,0x67,0x99,0x60,0xe2,0x6c,0x2e,0x44,0x38,0x72, +0xcc,0x18,0x06,0xdf,0xfc,0xb7,0xb8,0x2a,0x83,0x04,0xe1,0x1e, +0xcd,0xe0,0x57,0xda,0x89,0x43,0xb7,0x37,0x88,0x22,0x47,0xe9, +0x66,0xa2,0xee,0x8b,0xb2,0xda,0x5b,0xbf,0x98,0xcd,0x7e,0x40, +0x93,0x6d,0x4a,0xc9,0x72,0xe1,0x3b,0x96,0xc1,0x35,0x51,0xa7, +0x2a,0xa3,0xc0,0xa9,0x15,0xaf,0x73,0xd5,0x03,0xee,0xeb,0x3d, +0x0c,0x1d,0x7c,0x44,0xbe,0x26,0x8f,0x68,0x32,0x58,0x05,0x50, +0xec,0xd4,0x5c,0x06,0xe1,0xfa,0x02,0xae,0xba,0xc0,0x51,0xbd, +0x8b,0x16,0x9a,0xc3,0xe1,0x53,0xd9,0x5d,0x1d,0x40,0x4f,0xa0, +0xe4,0x6b,0x26,0xaa,0xee,0x67,0x69,0x42,0xcb,0x47,0xfa,0x9e, +0x30,0x58,0x3b,0x97,0xc0,0xd2,0x44,0x15,0xf4,0xc0,0x1a,0x10, +0xc8,0x0c,0x7e,0x47,0xfa,0xd9,0xdf,0x65,0x7a,0x0f,0xd8,0xa3, +0xfe,0x66,0xfa,0x60,0xc2,0x35,0x9a,0x80,0xf6,0x8a,0x2a,0xe8, +0xce,0xb6,0x21,0xa0,0xe3,0x25,0xc3,0x8d,0x08,0xad,0x70,0x7d, +0x80,0xb0,0xe4,0x30,0x88,0x53,0x6b,0x8c,0x08,0x2d,0x67,0x46, +0xcf,0x12,0x8c,0x67,0x3d,0xd5,0x2a,0x51,0x35,0xd6,0x88,0xda, +0xf2,0x1d,0xc1,0x55,0x0d,0xc8,0xd6,0x6b,0x68,0xe1,0x68,0xf4, +0x2c,0x91,0x3d,0xe5,0x12,0x0d,0x6d,0x54,0x57,0x0a,0xdc,0xc2, +0xb9,0x61,0xf1,0x70,0xae,0x22,0xe1,0x6b,0x3d,0x52,0x0b,0x41, +0x73,0x27,0x5d,0x8e,0x92,0xe9,0xe8,0x63,0xc0,0x33,0x0a,0xcc, +0x0a,0x60,0xea,0x5a,0xb1,0x7e,0xcd,0x02,0x2b,0xa7,0x72,0xd5, +0x0d,0x8e,0x88,0xea,0xdf,0xa2,0xc7,0x77,0x92,0xa9,0xb9,0x2f, +0xda,0x20,0x23,0x4c,0x86,0x37,0xd9,0x6d,0x79,0x12,0x0e,0x6a, +0x74,0xda,0xcc,0xca,0x12,0x8d,0x80,0x2e,0x1a,0x40,0x31,0x08, +0xb4,0xf7,0x3f,0x22,0xb8,0x56,0xea,0x0b,0x84,0xe5,0x7d,0xa6, +0xe2,0xfe,0x15,0xc1,0xb5,0x42,0xdf,0x2c,0x7c,0xdf,0x65,0xe8, +0xb7,0x7b,0x70,0xe6,0x08,0xd4,0x5a,0xa9,0x3f,0x23,0x54,0x27, +0xf4,0x5f,0x98,0x0c,0x46,0x4c,0x47,0x28,0x60,0xab,0x8c,0xdb, +0x2a,0x11,0xb7,0x5d,0x21,0x6e,0x5b,0x62,0x72,0x5b,0x07,0x23, +0x10,0x8b,0x78,0xa8,0xb2,0x11,0x89,0x85,0x63,0xe7,0xfc,0xdf, +0x22,0xb1,0x0c,0x66,0xa1,0x91,0xee,0x6f,0x8e,0x74,0x63,0x23, +0x28,0x6b,0x4a,0x09,0xda,0x4a,0xa8,0xfe,0xe8,0xc5,0xb0,0x52, +0x74,0x5e,0x7f,0xe3,0x31,0xe8,0xda,0x37,0xbd,0x8d,0x3e,0xdf, +0x31,0xf3,0x27,0xe1,0x1a,0x5a,0xc7,0x70,0x4e,0x1e,0x30,0xf9, +0xb3,0x11,0x45,0x6c,0xc9,0xc6,0xf2,0x08,0xd7,0x7f,0xd0,0x43, +0xd4,0x0f,0x5a,0xb1,0xaa,0xc8,0xe5,0x05,0x9c,0x6b,0x2e,0x58, +0xec,0xce,0xf0,0x8c,0x7c,0xfa,0xb6,0x7a,0x30,0xd7,0x6f,0xd1, +0x2c,0xa2,0xdd,0x85,0x34,0x2e,0x07,0xd1,0x2c,0x63,0x51,0xff, +0xc0,0xbb,0xc2,0x67,0x05,0xbe,0x2e,0x99,0xc9,0xe1,0x67,0x04, +0xf8,0xd9,0x12,0x0c,0xfb,0x88,0x77,0x27,0x62,0xd5,0xaa,0x86, +0xf0,0xb2,0x31,0x51,0xaf,0x1d,0xb3,0xd7,0x52,0xdb,0x85,0x57, +0x7d,0x02,0x5c,0xc4,0xe1,0x16,0x02,0xde,0x42,0xc0,0x0d,0x65, +0x4c,0x8e,0x78,0x7e,0x17,0x62,0x03,0xbd,0x4e,0x42,0x13,0x17, +0x5f,0xe7,0xe0,0xeb,0x95,0xf4,0xba,0x27,0x35,0xe1,0x3b,0xe1, +0x79,0x80,0x5a,0xb6,0x80,0x5a,0x76,0xaf,0x5c,0x3e,0x86,0xd3, +0xbb,0xbf,0x5f,0xee,0x7e,0x41,0x2a,0x23,0x89,0xca,0x9b,0x06, +0x95,0x1b,0x38,0xe1,0x86,0x04,0xa2,0x72,0xaa,0xf0,0x98,0x64, +0x78,0xe7,0xcf,0x54,0x0c,0xd7,0xa3,0x51,0x53,0x46,0x23,0xc4, +0x75,0x2e,0x53,0xe4,0x51,0x48,0xb1,0xa8,0xb6,0x90,0x2f,0x7c, +0xe8,0x9c,0x3e,0x7b,0x8b,0xe2,0x92,0x16,0x16,0x7b,0xd0,0x10, +0x0e,0x77,0xf4,0xee,0xf2,0x8e,0x25,0x14,0xb6,0x70,0x38,0x20, +0x87,0xca,0x03,0x9a,0x6a,0xa3,0x34,0xe1,0x69,0xa3,0xa5,0xa3, +0xf5,0xc5,0xfa,0x7a,0x8b,0xbd,0xfb,0x5b,0x1c,0xce,0x21,0xd4, +0x39,0x84,0x5a,0x44,0x50,0x11,0x06,0x14,0x3c,0x14,0x1e,0xcf, +0xe8,0xcb,0xc9,0x2c,0xb4,0x4e,0x8f,0x04,0x69,0xea,0x0f,0x78, +0xcc,0x11,0x0c,0x35,0x21,0x5a,0x4e,0x2b,0x49,0x57,0xa3,0x0e, +0xa4,0x1d,0xf0,0x33,0x45,0x9d,0xdd,0x66,0x0e,0x52,0xbb,0x5d, +0xe3,0x7a,0x3b,0xfd,0x82,0x6a,0xa7,0xdd,0x51,0x8b,0x29,0x20, +0x63,0xa7,0x0a,0xb3,0x18,0xa9,0x47,0xed,0x15,0xd5,0x30,0x7a, +0xd7,0x18,0xdf,0xdd,0x83,0x27,0x1c,0x6d,0xe5,0xed,0xf0,0x99, +0x45,0x96,0x40,0xf4,0xbf,0x72,0x8e,0xc6,0xf7,0x43,0x1e,0x43, +0xb8,0x6e,0x96,0x20,0x28,0xe5,0xe8,0x3a,0x64,0xc9,0xed,0x1a, +0x34,0xb2,0xa7,0x52,0x9e,0x51,0x51,0x0f,0x27,0x2e,0x5f,0xfb, +0x11,0x4a,0x28,0x5a,0xfa,0x13,0xb3,0xc7,0x8f,0xe5,0xaa,0x26, +0x02,0xd7,0x44,0xe0,0xdb,0x04,0x9c,0x4a,0xc0,0x8d,0xed,0x19, +0x94,0x65,0xd4,0x00,0x50,0xed,0xa8,0xd2,0x1a,0x54,0x29,0x6a, +0xd9,0xed,0xb0,0x09,0xb6,0x6b,0x5f,0xa8,0xc5,0xb2,0xb3,0x89, +0xcb,0xcf,0x9e,0x5e,0x96,0x62,0x34,0x1e,0x0d,0xfd,0x7a,0x08, +0x5b,0x0f,0x71,0x3d,0x20,0x5c,0x1f,0x12,0xae,0xfa,0xf6,0x63, +0x65,0x79,0x45,0x0f,0xea,0xfb,0xb9,0x6a,0x87,0x86,0x70,0x3b, +0x62,0x74,0x04,0xc0,0x16,0x68,0xd2,0xdf,0xb0,0xf6,0x29,0x44, +0xeb,0x20,0x9d,0xd0,0xd5,0x0e,0xcd,0xfb,0xb2,0xf7,0x7b,0xe9, +0x7d,0x86,0x61,0xb9,0x51,0xfe,0x50,0xec,0x81,0x78,0x22,0xa6, +0xbe,0xd1,0x03,0xdf,0x73,0x7a,0x0f,0x7b,0x2d,0x5f,0xa9,0xcf, +0x28,0x6f,0x68,0x53,0xa6,0x92,0xee,0x69,0x88,0x64,0xa4,0x70, +0x8e,0x60,0x71,0x6a,0xc8,0x21,0xb3,0x01,0xe3,0x51,0x4d,0x50, +0x0b,0xca,0x5a,0xb8,0x89,0xa8,0x6a,0x6e,0xcf,0x12,0xd5,0xf2, +0x69,0xb5,0x40,0x4d,0x95,0x35,0x84,0x37,0x6d,0x01,0x39,0xc6, +0x54,0x53,0xb9,0x5a,0x08,0x3f,0xbc,0x4e,0xa7,0xeb,0x15,0xc2, +0xd6,0x18,0xaf,0x9f,0xd1,0x75,0x94,0x70,0xf3,0x47,0x4b,0x5f, +0xbd,0x23,0xaf,0x18,0xab,0x09,0x4d,0xe4,0x1b,0xc2,0xf3,0x6d, +0xa6,0x7e,0xa3,0xcb,0x18,0xbd,0x11,0x03,0x67,0x55,0x57,0x58, +0x92,0xd8,0x6d,0x7a,0xd0,0xad,0x14,0x95,0x69,0x1d,0xb5,0x45, +0x58,0xbc,0x98,0xdd,0x89,0x9e,0xcc,0x17,0xfc,0xc2,0xcb,0xcb, +0xa1,0xe5,0x97,0xb5,0xf7,0x93,0x77,0x8e,0x25,0x44,0xcd,0x64, +0xa6,0x8f,0xa4,0xcb,0x55,0x84,0x6d,0x88,0xfa,0x4b,0x58,0xae, +0x63,0xed,0xc7,0xe9,0xd1,0x12,0x61,0x29,0x62,0xf2,0x03,0xd5, +0xc6,0xb1,0x60,0xd0,0x54,0x0e,0x17,0xde,0xed,0x98,0x1a,0xf5, +0xc2,0xe9,0x15,0x12,0x64,0x8a,0x9a,0x26,0xd1,0xc2,0xc0,0x17, +0x3b,0x8a,0x65,0xa2,0xf4,0xbe,0x6a,0xc1,0x37,0xf1,0xa2,0xce, +0x2a,0xa6,0x57,0x24,0xa0,0x60,0x51,0x6d,0x08,0x8b,0x80,0x07, +0xf2,0xda,0x2b,0x64,0x7a,0x20,0x99,0xee,0xe8,0xd5,0xb9,0xb9, +0xa0,0xb2,0x82,0x74,0x0e,0x23,0x28,0xb4,0xe8,0xac,0x7c,0xaa, +0x67,0x86,0x69,0x6a,0x41,0x15,0xbc,0x9f,0x2c,0x47,0x68,0x74, +0x44,0x99,0xb1,0xaf,0x25,0x4c,0xad,0xbd,0x2d,0xa7,0x49,0x1b, +0xcc,0x2f,0xd2,0x3f,0xb1,0x28,0x1b,0x2a,0xeb,0xaf,0x19,0xa9, +0xe0,0x31,0xa8,0x3b,0xc6,0xd0,0x7a,0x5a,0xbd,0xd2,0x14,0xd6, +0x82,0x99,0x7b,0x3b,0xc2,0xd4,0x2a,0x13,0x7a,0x5e,0x11,0x45, +0x49,0xd8,0x06,0x09,0xe7,0xd6,0x08,0x2d,0xc4,0x34,0xa6,0xff, +0x4a,0x2b,0x02,0x36,0xb8,0x5f,0x54,0xd2,0x2c,0x14,0x3e,0x42, +0xe8,0x2d,0x61,0x76,0xed,0xb6,0x06,0xb1,0xfa,0x3d,0x1e,0x0e, +0xcd,0x10,0x61,0xd3,0x08,0x15,0x2a,0x7f,0xd7,0x4c,0xec,0xad, +0x10,0xfb,0x68,0x75,0x06,0x68,0x55,0xf3,0x39,0x4e,0x57,0xaa, +0x2d,0x22,0x82,0x50,0x36,0x43,0x7d,0xa5,0xfe,0x62,0xf0,0x27, +0x1b,0xc5,0x42,0xd5,0xf7,0x8c,0xca,0x77,0x5a,0xc9,0x22,0x72, +0x3e,0x62,0x93,0xd4,0x0b,0xd5,0x9f,0x48,0x99,0x8d,0xc8,0x27, +0x86,0xa9,0xa5,0xb7,0xe5,0xdb,0x58,0xe1,0x9c,0x22,0x7d,0x07, +0x92,0x32,0xb8,0x0c,0x81,0xbf,0x7a,0xa2,0xc2,0x08,0xcc,0xd8, +0x72,0x12,0xa6,0x26,0xdd,0x96,0x23,0x11,0x6c,0x42,0x91,0xbe, +0x18,0xc1,0x86,0x23,0x2d,0x3e,0x58,0xbd,0x57,0x84,0x0a,0x28, +0xa7,0xc5,0x0f,0x69,0xd1,0xeb,0xa8,0xe6,0x4a,0x51,0x33,0xde, +0xa4,0x66,0x1c,0x2f,0xd2,0xbf,0x09,0x2d,0xeb,0xa2,0xa5,0x46, +0x33,0x46,0x98,0x5d,0x23,0xea,0xfe,0xfd,0x2a,0xc9,0xa2,0xd6, +0x26,0x2a,0x34,0x95,0x0a,0x25,0x62,0xaf,0x84,0x96,0x91,0x37, +0xc7,0x28,0x34,0xc0,0x04,0xf2,0xe8,0xf5,0x5f,0x9b,0xf4,0x16, +0x36,0x69,0x30,0x2d,0x2a,0xc0,0xb7,0x8b,0x4d,0xb6,0x6d,0x8a, +0x4e,0xac,0x6c,0x42,0x6c,0x4b,0x8b,0x0a,0x3b,0x71,0x90,0x91, +0x2f,0x23,0x99,0x4a,0xb9,0x2b,0xab,0xb6,0xa5,0x07,0xcd,0x5f, +0xe1,0x27,0xf9,0x03,0x3d,0xf1,0x7d,0x95,0x9d,0x3e,0xa2,0xf2, +0x6d,0x0c,0x76,0x1a,0x8b,0xec,0x84,0x25,0x77,0xdc,0x95,0x9e, +0x66,0x49,0x62,0x1d,0x73,0xbd,0x21,0x1f,0x26,0xcb,0xd5,0xa1, +0x30,0x05,0xd2,0xe4,0xdb,0xa1,0xea,0x96,0xde,0x50,0xbe,0x27, +0x27,0xab,0x24,0xc3,0x23,0xac,0xa8,0xd0,0x87,0x4e,0x93,0xef, +0xca,0x34,0xc7,0xaa,0x43,0x9f,0x58,0xd9,0x87,0x0e,0x13,0xd9, +0x65,0x81,0x8c,0x91,0xc2,0xfb,0x03,0x86,0x6e,0x9f,0xa7,0xe3, +0x04,0xd6,0xa5,0xc6,0x5b,0x0d,0xde,0x96,0x1b,0x79,0x08,0xb4, +0xc6,0x72,0x2d,0x43,0x55,0xbc,0xde,0xc8,0x98,0xa6,0xd3,0x64, +0x7b,0x44,0x02,0x95,0x54,0xa6,0xfe,0x3a,0xf9,0xf5,0x9b,0x51, +0x73,0x6e,0x08,0x82,0x89,0xa2,0xca,0x0d,0x26,0x97,0x22,0xbc, +0xff,0x8b,0x22,0x16,0xa0,0x7e,0x34,0x4e,0x5f,0xad,0x81,0x4e, +0xd8,0x40,0xe1,0x54,0x81,0xc9,0x59,0x2f,0x4e,0x32,0xa8,0xa2, +0x4a,0x85,0x85,0x52,0x23,0x0f,0x64,0x10,0x6a,0xaf,0x2c,0xc7, +0xa0,0x03,0xb2,0x86,0xbd,0xee,0x28,0x04,0xd1,0xea,0x2f,0xe3, +0x04,0x56,0x18,0x0b,0x7d,0xe2,0x90,0xbc,0x37,0x8d,0xe3,0x57, +0x33,0xde,0x10,0xde,0x68,0xb9,0x9f,0x52,0x6d,0xca,0xd6,0x24, +0xca,0xa8,0x5b,0x47,0x74,0xa3,0x07,0x39,0xd2,0xee,0x86,0x88, +0x7e,0x65,0x32,0x89,0x30,0x21,0x85,0x7e,0xa1,0xaa,0x4d,0x39, +0xb9,0x0d,0x91,0x5c,0xf4,0x2d,0xa7,0x94,0xee,0x42,0xfd,0x7d, +0x8f,0x42,0x01,0xcb,0xca,0x2f,0x73,0x54,0xfc,0x08,0xce,0x95, +0x1c,0xa2,0xb6,0x7c,0x88,0x6d,0x59,0x61,0xac,0x51,0x38,0xda, +0x12,0x80,0xe5,0xfd,0x43,0x55,0xfb,0x72,0x64,0x8d,0x09,0x59, +0x53,0x35,0xdb,0xbe,0x86,0x09,0x97,0xbe,0xc8,0x8e,0x38,0x73, +0x84,0x80,0x27,0xbe,0xb1,0x85,0x2a,0x6f,0x02,0xcb,0x27,0x30, +0x6f,0xea,0x22,0x67,0x55,0xaa,0x87,0x20,0x58,0xe3,0xf2,0x3e, +0xe0,0xa1,0x60,0x43,0xb7,0xd9,0x1a,0x8a,0x4a,0xb8,0x91,0x16, +0x9a,0x4f,0x3e,0xb4,0x17,0x3a,0xb4,0xa3,0xe1,0x7b,0x7b,0xd9, +0xf1,0x18,0xd7,0xc8,0x63,0x5d,0x1c,0x06,0x13,0x60,0x98,0x29, +0xe4,0xbf,0xc8,0xf5,0xb2,0xb6,0x7a,0xc3,0x88,0x84,0x42,0xe7, +0x08,0x3d,0xd7,0x61,0xf2,0x2d,0x39,0x0c,0x4d,0x5b,0x67,0xd4, +0xc9,0x3e,0xb4,0xe4,0x51,0x1b,0xe6,0x16,0xea,0x6b,0xc3,0xe1, +0x0d,0x2c,0x1a,0x1a,0x81,0x54,0xbf,0x26,0x1b,0x44,0xa8,0x36, +0xf2,0x17,0x2d,0x02,0x45,0xe1,0x35,0xa4,0xfa,0x35,0x0d,0xdc, +0x0c,0xa1,0x27,0x1f,0xd7,0x87,0xd6,0x3e,0x6a,0xc3,0x0f,0x85, +0x25,0x5a,0x38,0xcc,0xc4,0x32,0xd1,0x11,0x28,0xca,0xaf,0x19, +0xa2,0x2c,0x5c,0x6a,0x32,0x14,0xe3,0xd7,0xb4,0xf1,0xa6,0x18, +0xdb,0x52,0xd9,0x5c,0x43,0x78,0xe5,0x58,0x36,0xcd,0x90,0x55, +0x18,0x4b,0xb5,0x1e,0x16,0x62,0x09,0x6b,0x64,0x48,0xa5,0x70, +0x4e,0xa3,0x27,0xfb,0x84,0x58,0xc4,0x74,0x4f,0x43,0xe0,0x1a, +0x31,0xf5,0x4d,0x91,0x86,0x15,0x65,0x52,0x45,0x53,0x0b,0xf5, +0xa5,0xff,0x77,0xe2,0xe4,0x7a,0x35,0xa4,0xf4,0x6d,0xa3,0x36, +0xdd,0xaa,0x26,0x97,0x0e,0x64,0xe6,0xf1,0xb2,0x88,0x61,0x19, +0x61,0x98,0x54,0xa8,0xcf,0x09,0xa7,0x74,0xad,0x32,0x28,0x02, +0xfc,0xb0,0x50,0xfd,0x08,0xb4,0x96,0x9d,0xab,0x33,0x19,0x0f, +0x19,0x6a,0xa5,0x63,0x31,0x64,0x18,0x4c,0x97,0xde,0xa1,0x30, +0x15,0x52,0xe5,0x94,0x30,0x14,0x80,0x06,0xb2,0xae,0x9c,0xae, +0x2a,0x1a,0xcb,0x6e,0x99,0x2a,0x8e,0xe3,0xa4,0x3f,0x1d,0x22, +0x2c,0x70,0x16,0xea,0x72,0x84,0x99,0x21,0x53,0x35,0x73,0x4d, +0x64,0x50,0x4f,0x39,0x08,0x6a,0x9b,0x3f,0x0d,0x0c,0x99,0xb8, +0x38,0x12,0x87,0xb5,0x21,0x02,0x05,0x84,0xaa,0x4e,0x7a,0xa0, +0x31,0xfa,0xa9,0xb2,0x09,0x96,0x40,0x57,0xbc,0x4c,0x4e,0xbc, +0xcd,0x12,0xc2,0xf8,0xd1,0x60,0x86,0x7c,0x66,0x88,0x4b,0xaa, +0x29,0x2e,0x65,0x85,0xda,0x63,0x21,0x7f,0x43,0x5a,0x84,0xeb, +0x16,0x56,0x5f,0x95,0x1a,0x67,0x11,0x0b,0xff,0x60,0x06,0x9e, +0xc6,0x41,0xc4,0x97,0x5e,0xe7,0x61,0xd0,0x80,0x38,0x2d,0x0c, +0xd9,0x36,0x40,0x0b,0x13,0x2e,0xc8,0xe6,0x61,0x65,0xc2,0x50, +0xb5,0xf4,0x26,0x03,0x57,0xfa,0xaf,0xba,0x21,0x0f,0x17,0xdf, +0x10,0x48,0xb5,0xcc,0x52,0xad,0xcf,0x38,0x56,0x58,0x5e,0x21, +0x5f,0x83,0x99,0xf2,0x67,0x44,0xd7,0x08,0xd1,0x05,0x86,0x21, +0xe9,0x88,0xce,0xe0,0xc8,0xa6,0xc4,0xb8,0xed,0x4d,0x51,0xb1, +0xad,0x65,0xf2,0xba,0x9a,0x5a,0x26,0x10,0xd5,0x09,0x77,0x0d, +0x18,0x14,0x6f,0x16,0xff,0x56,0x78,0xef,0x61,0xbf,0x1a,0x22, +0xa1,0xdf,0xa4,0x25,0x96,0x41,0xbd,0x10,0xbd,0xb3,0xf1,0x43, +0xef,0x0b,0x10,0xbd,0x0d,0x31,0x5a,0xc3,0x54,0x3d,0x51,0xe3, +0x0c,0x43,0x0e,0x4e,0xd3,0x46,0xc0,0x03,0xfb,0x9f,0x46,0x03, +0x51,0x33,0x10,0xdb,0xab,0x2f,0x19,0x7c,0x00,0x13,0x38,0xaa, +0x4d,0xaf,0x08,0x1c,0xfb,0x11,0x72,0x7c,0x24,0x32,0xf3,0xcf, +0xb2,0x16,0xaa,0xd4,0x27,0x66,0xda,0x47,0x9b,0x0a,0xe2,0xb2, +0x0b,0xde,0x77,0xb1,0xc0,0x48,0xa8,0x45,0xd3,0xda,0xdb,0x34, +0x8d,0xc1,0x08,0xa6,0xfc,0xe4,0x1e,0x3a,0x6d,0x7e,0xb5,0x71, +0xc8,0x8b,0x17,0x78,0xff,0x14,0x01,0xad,0x60,0xb8,0x6c,0x19, +0x89,0x1e,0xeb,0x23,0x0d,0x05,0xec,0x10,0xad,0xc4,0x78,0x4b, +0x77,0x4b,0x04,0xbc,0xcb,0xf1,0x4d,0x3b,0x39,0x5c,0x7b,0x53, +0x9d,0x7e,0x71,0xc6,0x5c,0x94,0x19,0x29,0x53,0xf5,0xa1,0xc1, +0xd0,0x49,0xc5,0xca,0x4e,0x41,0x6a,0xa8,0x4c,0x43,0xfd,0x66, +0x2e,0xcd,0x84,0x71,0x3d,0x16,0x3a,0xaa,0x58,0x63,0xd1,0xe2, +0x0a,0x7f,0x2c,0x93,0xe5,0xf3,0x10,0xd0,0x54,0x37,0xa9,0x05, +0xc3,0x73,0x99,0xdc,0xd4,0x8c,0xad,0xaa,0x20,0x77,0x71,0xbd, +0x1b,0x3d,0xd7,0x3a,0xd2,0xce,0x91,0x2f,0x68,0x35,0xa2,0x90, +0xff,0x88,0xe0,0xcf,0xa0,0x09,0x83,0x67,0x32,0xb9,0xa5,0x11, +0x43,0x55,0x41,0xbe,0x4f,0x80,0x55,0x10,0xd0,0x57,0x55,0x56, +0x23,0x09,0xee,0x20,0xff,0x5d,0x26,0xeb,0x55,0x42,0xa0,0x1a, +0xa2,0xad,0x16,0xac,0xaa,0xc8,0xe4,0x00,0x3a,0x32,0xa6,0x02, +0x59,0xee,0xdd,0xe8,0xa9,0xb6,0x02,0xf2,0x15,0x1d,0xd7,0xf6, +0x88,0x25,0x43,0xa9,0xf0,0xf9,0x85,0xd9,0xdb,0xb2,0x14,0xb5, +0xc4,0xbe,0x8c,0x2e,0x16,0xa9,0xef,0x4b,0x39,0x5d,0xcc,0xc6, +0x0b,0x2b,0x5d,0xe8,0x43,0x55,0x83,0x52,0x0f,0x03,0x3e,0x58, +0x65,0x9a,0x3b,0xd4,0xb3,0x01,0x48,0x69,0x52,0x70,0x87,0xe7, +0xaf,0x4c,0xef,0xa6,0x6a,0x2b,0x3a,0x61,0x58,0xde,0xe4,0x0f, +0x91,0xca,0x3f,0x43,0xc0,0x82,0xb5,0xa3,0x75,0xfe,0xa7,0x4c, +0x6e,0x65,0xd6,0xbe,0x83,0x6a,0xc7,0xa7,0x9a,0x5c,0xa2,0xba, +0xdb,0xdb,0x18,0xe8,0xe4,0x04,0x48,0x17,0xb6,0xf9,0x2f,0x97, +0x51,0x82,0x65,0xb8,0x5e,0x3f,0x14,0xac,0x70,0x48,0x7a,0x84, +0x2a,0x5f,0x19,0x05,0x61,0x96,0xe5,0x5d,0x3b,0xae,0xea,0xa2, +0x1a,0xb3,0xb0,0x85,0x2d,0x17,0x37,0x5a,0x66,0x85,0x28,0x9d, +0x71,0x79,0x08,0x27,0xdd,0x43,0x9a,0x9b,0x79,0x00,0x31,0x72, +0xed,0xdb,0x4c,0x56,0x92,0x21,0xf2,0xa7,0x30,0x1f,0xf8,0xf4, +0xcf,0x30,0x78,0x28,0xc3,0xc0,0xc9,0xb2,0xbc,0x53,0xfb,0x55, +0x1d,0x3d,0x37,0xc4,0x96,0x7e,0xc7,0x54,0x2f,0x64,0x1e,0xf9, +0x29,0x54,0x81,0x4f,0xb5,0xbf,0xd0,0xa4,0x0f,0x82,0xe1,0xea, +0x26,0x53,0x1d,0xa9,0x78,0x7f,0x1e,0x66,0x1e,0x33,0xfc,0x1c, +0x31,0x7c,0x17,0xee,0x07,0xfb,0xfe,0x08,0x83,0x6f,0x65,0x98, +0x8f,0x65,0x45,0xa7,0xf6,0x2b,0xe9,0x08,0x63,0x2c,0x7d,0x99, +0x96,0x6a,0x2a,0xc1,0x3e,0x4d,0x3e,0x50,0x41,0x42,0x43,0xa7, +0xc8,0xf2,0x17,0x9d,0x8f,0x17,0x23,0xb4,0x78,0xa6,0xcf,0x55, +0x7d,0x84,0x13,0x32,0xa1,0xe5,0x39,0x3d,0x8b,0xa6,0x67,0x32, +0x0f,0x0e,0x0a,0xcd,0x52,0x7e,0x34,0xb1,0x1b,0xc5,0x44,0xb9, +0x39,0x62,0xa2,0xb6,0x2a,0xa0,0xa5,0xbf,0x66,0x7a,0x8d,0x08, +0xa8,0x09,0xcb,0x64,0x8d,0x08,0x55,0x5d,0xb6,0xc1,0xc6,0xae, +0xe8,0x11,0xb6,0x32,0x92,0x82,0x4b,0x64,0xb8,0xec,0x69,0x9e, +0x51,0x9c,0x4f,0x67,0x14,0xd3,0xe2,0x4e,0x1b,0x1d,0x1d,0xae, +0x65,0xd8,0x39,0xcb,0x68,0x71,0x27,0x9a,0xe9,0xf7,0x55,0x74, +0xc9,0x3c,0x5a,0xdb,0xe9,0x68,0xb7,0x70,0x19,0x26,0x7b,0x98, +0x7d,0x97,0x2e,0x3d,0x42,0xb0,0xef,0xa2,0x21,0xd2,0x22,0xbc, +0xd6,0x31,0xec,0xb0,0x6a,0x5c,0xa6,0x63,0x87,0xa5,0x23,0xdf, +0x6d,0xa5,0x4d,0xc2,0xf1,0x3c,0x68,0x61,0xd3,0x25,0x0d,0x96, +0x3a,0x3f,0x13,0xfe,0x4d,0x59,0x7d,0xcb,0x8a,0xce,0x1d,0xcc, +0xf5,0x19,0x99,0xcb,0xe5,0x7e,0x6c,0xe6,0x7e,0xed,0x7d,0xa5, +0xe9,0x27,0xcc,0x83,0x8b,0x87,0xd2,0xf9,0xc1,0x95,0x65,0xa8, +0xd1,0xbb,0xfb,0x8c,0xde,0x0d,0x05,0xad,0xec,0xa0,0x61,0x2c, +0x54,0x40,0x7d,0x53,0x85,0xfa,0x46,0x53,0xab,0xf4,0x45,0x2c, +0x86,0x4a,0x55,0x12,0x55,0x4e,0xb2,0x1f,0xb1,0x47,0x2f,0x86, +0xb7,0x86,0x03,0xdf,0x87,0xc3,0x05,0x19,0xd6,0xd4,0xac,0xe9, +0x21,0x53,0x23,0xe4,0x3e,0x2e,0x0f,0x34,0xa1,0x25,0x9e,0x0a, +0xea,0x2b,0xf9,0x13,0x13,0x55,0xbf,0x66,0x47,0x11,0xe6,0x38, +0x2b,0x3d,0xc5,0xa0,0xf1,0x5f,0xc2,0xd6,0x8e,0xe9,0x7b,0x90, +0x3d,0xb4,0x83,0xc6,0x3b,0xfd,0x90,0xea,0x6d,0xaf,0xcb,0x4a, +0x66,0x97,0x8c,0xe7,0xc1,0xd0,0x5a,0xc5,0xc9,0xd6,0xc1,0xaa, +0x97,0xfe,0x1d,0x2d,0x45,0xe0,0x4d,0x1b,0x63,0x3d,0x28,0x86, +0xcb,0x36,0x21,0xd0,0x06,0xde,0x31,0x7f,0xa6,0xd1,0xb9,0x36, +0xae,0xf2,0x63,0xfe,0xd7,0xef,0x24,0x10,0x6e,0xc8,0x92,0x6e, +0x28,0x10,0xbf,0xfb,0xc2,0x34,0x53,0xcc,0x4e,0x10,0x4f,0xe2, +0x63,0xed,0x69,0x4f,0xc7,0x9e,0x92,0x00,0xf0,0x45,0xde,0x18, +0x4d,0x07,0x8b,0xba,0xa2,0xc8,0x3d,0xfe,0x5d,0xfe,0x1a,0x02, +0x4e,0x58,0xd0,0x49,0xf8,0xa2,0x71,0xe4,0x44,0xb0,0xbd,0x10, +0xb6,0x29,0xc2,0x42,0x88,0xf2,0xff,0x4f,0x69,0x40,0x77,0x7d, +0x01,0xd2,0xe7,0xa1,0x82,0xa5,0x47,0xb0,0xf2,0x44,0xa7,0x9d, +0xe8,0x0b,0x96,0x56,0x3d,0x58,0x93,0x03,0x20,0x5b,0xf8,0xf5, +0x47,0xcf,0xe8,0x0a,0x83,0xcf,0x29,0x96,0xab,0x09,0x6c,0xea, +0xa9,0xa7,0x40,0x62,0xb1,0x3c,0x0b,0xc9,0xbf,0x58,0xdc,0x4a, +0xa6,0x96,0x90,0x1d,0x51,0x15,0xeb,0xab,0x1a,0x0c,0xa5,0x7a, +0xa1,0x16,0x82,0xa5,0xbb,0x49,0x56,0x7a,0x84,0xc1,0x1e,0xa1, +0x7d,0xcf,0x84,0x40,0xb5,0xbb,0x1a,0xd6,0xd1,0x41,0xc1,0x51, +0xc6,0x41,0xc1,0x8f,0x35,0xb7,0xd2,0x49,0x0c,0xce,0x96,0x7e, +0xc9,0xda,0x40,0xb2,0x5e,0x0d,0x5f,0x7f,0xef,0x78,0x24,0x3c, +0xde,0x63,0xe6,0x45,0xdd,0x23,0x66,0xc9,0x64,0x58,0x5f,0xdf, +0x24,0x38,0xf9,0x31,0xc5,0x68,0x3d,0xa4,0x18,0xad,0x68,0x23, +0x46,0xcb,0xd2,0x8e,0xc1,0x1a,0x1e,0xab,0x6b,0xe0,0x54,0x8c, +0xad,0x75,0x1a,0xc0,0x60,0xc5,0x8b,0x60,0x24,0xb6,0x1e,0x73, +0x84,0x7e,0x5d,0xa5,0x93,0x82,0x6f,0x09,0xa7,0x02,0xf3,0xa1, +0x06,0x55,0x8b,0x65,0x55,0xe3,0x48,0xe1,0xc9,0x70,0x49,0x38, +0x0d,0xc7,0x2a,0x26,0xb1,0xce,0x16,0x08,0x59,0xdc,0xbe,0x47, +0x4b,0x5b,0x63,0x95,0xcb,0x9e,0xfc,0xd8,0xfe,0x26,0x84,0xa4, +0x7a,0xdd,0xa7,0x4d,0x2a,0xcb,0x85,0x57,0x1d,0xf6,0x92,0xd4, +0xa5,0x3a,0x67,0xb0,0xf5,0x7b,0xda,0xf8,0x75,0x8d,0x41,0x8a, +0x70,0xdd,0x8e,0xd6,0x6a,0x16,0x92,0x38,0x19,0x4d,0x95,0x4a, +0x70,0x98,0xc2,0xe9,0x7e,0xd3,0x43,0x0d,0x53,0xe5,0xb0,0x74, +0x91,0x87,0x35,0x94,0xe9,0xeb,0xa2,0x5a,0x53,0x04,0x7b,0xc8, +0x20,0x75,0xae,0xf0,0x89,0x67,0xaa,0x9f,0x70,0x3d,0x8d,0x0f, +0x1e,0x61,0xf7,0xeb,0xeb,0x78,0x78,0x0b,0xf8,0xf8,0x61,0x18, +0x64,0xeb,0xed,0xb5,0xf0,0x1c,0x0e,0x1f,0x3f,0x95,0x1f,0x6b, +0x38,0x2e,0x43,0x84,0x6b,0x32,0x13,0x75,0x6e,0xb2,0x34,0xd5, +0x87,0x7f,0xa9,0x2f,0x95,0x83,0x8d,0x4d,0x1e,0x5d,0xd4,0x52, +0x08,0x54,0xcd,0xb0,0xf8,0x8f,0x88,0x6f,0x91,0xf0,0xe9,0xc9, +0x54,0x27,0x51,0x55,0x32,0xf5,0x90,0xd0,0xbd,0xcd,0xc3,0xdb, +0xc2,0x27,0xdf,0x84,0xc3,0x89,0x12,0x5f,0x06,0x9f,0x3c,0x52, +0x07,0x99,0x8a,0x13,0xac,0x07,0xc2,0xa3,0xb7,0x9a,0xba,0x80, +0x87,0xb7,0x87,0x4f,0xbe,0x0e,0x47,0x73,0xc4,0x45,0xb1,0x1f, +0xe9,0x6d,0xb8,0xd0,0x24,0xeb,0x09,0x2b,0x85,0xcb,0x6e,0x36, +0x67,0xa3,0x70,0xc9,0x63,0x45,0xf2,0xa8,0xba,0x61,0x71,0xa3, +0x13,0x90,0xb7,0xaa,0xc7,0x1c,0xba,0xf7,0x92,0xdd,0x21,0xbe, +0xb4,0x88,0xf9,0x8c,0xe7,0x91,0x81,0xb0,0xe4,0xd7,0x08,0xb8, +0xab,0xbb,0x69,0x91,0x48,0xec,0x92,0xbf,0x8d,0x15,0x2a,0x38, +0x25,0x7c,0x36,0x33,0x38,0x56,0x28,0x4f,0x59,0xee,0xaf,0x2f, +0x4e,0xcd,0xdf,0xec,0x4c,0x51,0xe4,0x87,0x0a,0xf5,0x43,0x16, +0xd5,0x51,0xf5,0x12,0xd5,0x6a,0xb2,0x3c,0x95,0xc0,0xe7,0x7c, +0x2b,0xa7,0xca,0xfe,0x70,0xba,0xaf,0x9c,0xd1,0x11,0xa6,0x41, +0xc0,0x40,0x96,0xed,0x34,0x2f,0xa6,0xd9,0x52,0x1f,0x4f,0x89, +0x0e,0xdb,0x00,0x5a,0xe3,0x5a,0x36,0x16,0x7b,0xb2,0xa2,0xd9, +0x93,0xcf,0xa8,0x27,0x2f,0x97,0xf7,0x64,0x57,0xd8,0x28,0xaa, +0x8d,0x42,0xb7,0xb9,0x27,0x76,0xfd,0x0c,0xe1,0x83,0x4e,0x66, +0x07,0xe1,0xe9,0x45,0x2b,0x51,0xed,0x8a,0x35,0x48,0x29,0xa9, +0xc5,0xc3,0x1b,0xc2,0xa7,0x4f,0xc3,0x90,0xbc,0x8e,0x5a,0x78, +0x2e,0x87,0x4f,0xff,0x92,0x9f,0x6a,0x10,0xa9,0x06,0x0b,0xdb, +0x78,0x96,0x8b,0xa5,0xf4,0xd4,0xd2,0x4a,0x4c,0xb9,0xd2,0xaa, +0x56,0x3b,0x51,0xcd,0x82,0x2e,0x8c,0x3f,0x53,0xbe,0xfc,0x8e, +0xac,0xdc,0x9b,0x0e,0x24,0xf2,0x17,0xd5,0x16,0x22,0xfe,0xa3, +0x38,0xa0,0x7a,0x9e,0x70,0xf6,0x24,0xf9,0x68,0x24,0xf8,0x27, +0xcc,0x21,0x21,0x75,0x51,0x28,0xea,0x06,0x2b,0x2b,0x49,0xc8, +0x55,0x92,0x90,0xba,0xa6,0x84,0x9c,0x17,0x3e,0xab,0x99,0x43, +0x0e,0x18,0xb1,0x7e,0x30,0xd8,0x49,0x0e,0x2e,0x97,0xcb,0xc1, +0x0e,0xe1,0xfa,0xd4,0xe0,0xa3,0x33,0xb4,0xdc,0xd5,0x2a,0x00, +0x59,0x5e,0x38,0xc7,0x20,0xf3,0x75,0x62,0xfe,0x65,0xec,0xed, +0x2f,0x9c,0x6d,0xec,0x37,0xf8,0xe9,0xdf,0xec,0xbd,0x82,0xc7, +0xca,0x79,0x7e,0xb7,0x9f,0xcb,0xb1,0xf4,0xdf,0x3c,0xe3,0x2c, +0xec,0x35,0xc8,0xe3,0x58,0xdd,0x4a,0x5e,0x3e,0x65,0x3d,0x57, +0x74,0x5c,0x3a,0xd5,0xb4,0x41,0x54,0x9d,0x88,0x78,0x3f,0xa6, +0xbd,0x7f,0x9a,0x25,0x62,0xf2,0x84,0x21,0x7d,0x4c,0xb6,0xce, +0x99,0x70,0x36,0xe2,0x53,0x2f,0xa9,0x59,0xc2,0x9a,0x0b,0xe7, +0x1c,0xf6,0x48,0x2e,0xb6,0x3c,0xc1,0x61,0x47,0xfe,0x46,0x3b, +0xed,0x3d,0xe1,0xdd,0x19,0x27,0x7b,0xf8,0x82,0x56,0xc4,0xda, +0xe8,0x0d,0xb8,0x5e,0xf8,0x72,0x42,0xd4,0xee,0xd2,0x47,0x1f, +0x0b,0x4d,0x85,0x16,0x7b,0x45,0x78,0x13,0x9c,0x59,0x49,0x2c, +0xb4,0xe4,0xea,0x0b,0x53,0x11,0x68,0x6e,0xb2,0x0d,0x2d,0x60, +0x39,0xe9,0x85,0xba,0x93,0x43,0x65,0x11,0x74,0x1e,0x35,0xdf, +0x8d,0x88,0xfa,0x84,0x82,0xd1,0xea,0xa9,0xc6,0x5c,0x3f,0x76, +0x45,0xbd,0x27,0x07,0xa0,0xb6,0xa2,0x6c,0x53,0x22,0x91,0x96, +0xcf,0x36,0x70,0x3d,0xfd,0xb2,0xda,0xfe,0x48,0xf8,0xae,0x63, +0x6e,0xf6,0x86,0x0c,0x16,0xd2,0xa1,0x49,0x4c,0x0d,0xc4,0x29, +0x5d,0x08,0xc6,0xec,0x56,0x35,0x82,0x63,0x07,0xe5,0xaa,0x42, +0xd8,0xe8,0xc3,0xf4,0xfe,0x97,0xa9,0x87,0x62,0xa9,0x87,0xb0, +0xde,0x35,0x1c,0x7e,0x40,0x62,0x7f,0x08,0xf1,0x51,0xdd,0xfe, +0xa6,0x5a,0x3f,0xa1,0x5a,0x2b,0x50,0xad,0x29,0x74,0x34,0x92, +0x55,0xbd,0x4d,0x85,0x1f,0x85,0xd4,0x57,0xdd,0xb1,0x45,0xc7, +0x11,0xc1,0x00,0x63,0x49,0xb2,0x92,0xde,0x5d,0x23,0xe5,0xb5, +0x1c,0x7b,0xd1,0x19,0x8b,0x38,0x07,0xc3,0x5f,0xd4,0x8b,0x16, +0x2a,0xba,0x55,0x38,0x95,0x50,0x47,0x34,0xa3,0x8e,0xf8,0x1d, +0xed,0x17,0xec,0x83,0xa3,0x5c,0x3a,0x21,0x7e,0x27,0xea,0x83, +0x71,0xd8,0x07,0x7a,0x53,0x35,0x8d,0xcb,0x21,0x4f,0x8b,0x9e, +0x3e,0x69,0x54,0x04,0x43,0x60,0x48,0xa3,0xd0,0xc6,0x8d,0x9e, +0x86,0xca,0x21,0x94,0x48,0xaa,0x79,0xdc,0xb9,0xf3,0xde,0x5b, +0x2d,0xe7,0xaf,0x9c,0x33,0xa2,0xd0,0x06,0x0f,0xf0,0xa2,0x03, +0xbe,0x06,0x43,0x0b,0x2f,0x37,0x73,0xb1,0xee,0x35,0xae,0x47, +0xe8,0x0d,0x43,0xd1,0x17,0x3a,0x8a,0xbe,0x90,0x56,0x04,0x8f, +0x38,0x6d,0xb7,0x06,0x3f,0x8b,0x6a,0x8d,0x55,0x09,0x9f,0x14, +0xf2,0xb0,0x26,0xa2,0x87,0x95,0x19,0xa4,0xa9,0xbf,0x54,0x45, +0xae,0x77,0x32,0x26,0xfa,0xfd,0x7f,0x84,0x6b,0x85,0xb0,0x97, +0xa3,0xed,0x80,0xb3,0x1e,0x6d,0xaa,0x99,0xc1,0xf5,0x15,0x6c, +0x31,0x4c,0xf4,0x2c,0x99,0x0f,0x0d,0xb8,0xfa,0x32,0x4e,0x5f, +0x07,0x8b,0xee,0x22,0xff,0x78,0x38,0xa3,0x13,0x45,0x6b,0x6e, +0x87,0xf3,0xd5,0x56,0xe1,0xf7,0x94,0x52,0x7c,0x95,0x0c,0x91, +0x6f,0x20,0xd2,0xf3,0x84,0x14,0xe8,0x83,0x93,0xfc,0x2a,0xbc, +0x01,0xec,0xff,0x2d,0x4c,0xbb,0x0d,0x3b,0xe9,0xc3,0xdb,0x7e, +0xa8,0x40,0x48,0xa7,0x11,0xd2,0x45,0x88,0x54,0x1f,0xa7,0xc6, +0x52,0xc6,0xac,0x3b,0x4f,0x9f,0x34,0x2b,0xa2,0x84,0x59,0x4d, +0xb1,0x99,0x8f,0x43,0x64,0x5f,0xef,0xbc,0x2a,0x10,0xd0,0x27, +0xf3,0xbc,0xb7,0x68,0xe0,0xc6,0xb0,0x75,0x7d,0x07,0x41,0x80, +0x97,0x9b,0x63,0xcd,0xcf,0x8d,0xeb,0x2d,0xf5,0x82,0x10,0xf4, +0xae,0xb7,0xc9,0xb7,0x91,0x83,0xd4,0x3a,0x8e,0xde,0xf4,0x36, +0x78,0xd7,0x42,0x14,0x2c,0xe7,0xf7,0xf4,0x5d,0xdd,0x29,0x3b, +0xd7,0x38,0x82,0xeb,0x42,0xbe,0xc3,0x76,0x19,0x10,0xa2,0xdd, +0x01,0xb4,0x31,0x9a,0xc8,0xed,0xd0,0xc4,0x22,0x15,0x84,0x73, +0x55,0x10,0xab,0x2f,0x83,0x9d,0xd8,0x98,0x97,0x8b,0x81,0x03, +0x39,0x7a,0x0b,0x2d,0xf5,0xde,0xe4,0x3b,0x6c,0x97,0x2d,0x2d, +0x72,0xbb,0xaa,0x4e,0xab,0x60,0xed,0x69,0x15,0x2c,0x40,0xd9, +0x71,0xb8,0xaf,0xa8,0xa5,0xf2,0xdd,0xee,0xb0,0xc8,0x60,0xb2, +0xba,0x0c,0xbc,0xec,0x81,0x5c,0xdf,0x78,0x4d,0xcd,0x94,0x63, +0xf4,0xb7,0xae,0xaa,0xb3,0x70,0xc4,0x78,0x53,0x87,0x41,0xa0, +0x3d,0x88,0xeb,0x1f,0x5f,0x53,0x6b,0x9e,0x09,0xf7,0x17,0x0c, +0x7a,0x18,0xcf,0xc7,0x32,0x88,0xb1,0x57,0x16,0x96,0x68,0x96, +0x38,0x30,0x34,0xa9,0xad,0xa7,0xdc,0xf6,0xe2,0x3a,0x33,0x10, +0xf9,0xd8,0x1b,0x62,0xbf,0xc8,0x47,0xe8,0xec,0x11,0x27,0x75, +0x41,0x2d,0xe0,0x2b,0x27,0xe8,0xbe,0x44,0x9f,0x9a,0x7d,0x0f, +0xfd,0x0d,0x7b,0xfc,0x04,0xae,0x5a,0x20,0x7d,0x2d,0x43,0xd0, +0xf3,0xda,0x2e,0xeb,0x23,0x7d,0xf0,0x07,0xd1,0x17,0x48,0xf4, +0x79,0xdb,0x9b,0x73,0x7d,0xb9,0xfc,0x27,0x08,0x2d,0x65,0x3f, +0xa9,0x85,0xc0,0x35,0x42,0x73,0x8d,0xe3,0x8d,0xab,0xee,0x87, +0xc6,0x21,0xaa,0xe9,0x74,0xfd,0x28,0x2f,0xeb,0x11,0x54,0xee, +0x2e,0x6b,0x48,0x42,0xb7,0xd3,0x67,0xff,0xe1,0xe8,0x8e,0x34, +0x65,0x6a,0xe3,0x3d,0x0d,0x81,0x26,0x93,0x3b,0x2e,0xdc,0x36, +0x32,0x99,0x69,0x38,0x27,0xd8,0xaf,0x29,0xd8,0xaf,0xdb,0x8c, +0x7e,0x1d,0x42,0xfd,0xda,0x56,0xf8,0x2e,0x66,0x0f,0x14,0x0e, +0x6b,0xef,0x47,0x5f,0xfd,0xf5,0x57,0xf3,0xaf,0xa0,0x37,0xf4, +0x69,0xde,0xc9,0xd7,0xf7,0x51,0x27,0xd9,0x87,0xb8,0xd4,0xbf, +0x4f,0x6e,0xae,0xf7,0x76,0x4b,0x5e,0x4e,0x79,0x02,0x95,0x39, +0x96,0xde,0x7d,0x7b,0x83,0x9f,0x97,0x1b,0x56,0xb3,0xc2,0xa8, +0xe6,0x75,0xc3,0xaf,0xdf,0x2e,0xfd,0x43,0x54,0x7b,0x83,0x96, +0xc6,0x44,0x8b,0x9f,0xe9,0xd3,0x8b,0x14,0xd6,0xcb,0x70,0x65, +0x5e,0x58,0xf4,0x20,0x0e,0x6e,0xf2,0x51,0x38,0x6a,0x3e,0x7d, +0xac,0x74,0xd3,0xec,0xd8,0x3c,0x0e,0xd5,0xe4,0xbb,0xb1,0xea, +0x2e,0x1a,0xf7,0xf7,0x62,0x35,0x79,0x03,0x66,0xd2,0xce,0x84, +0xb2,0x27,0x31,0x1a,0xdc,0x50,0xdb,0x09,0x66,0x9e,0xac,0x46, +0x6f,0xe7,0xd1,0xdb,0x79,0xd2,0x55,0x73,0x7b,0xc1,0xb0,0x0f, +0x10,0xdd,0x8c,0x30,0xb5,0xeb,0xb6,0x5c,0x88,0xe8,0xd4,0x43, +0xb9,0x92,0xc7,0xa2,0x53,0x53,0x4d,0xb6,0x88,0x55,0xe1,0x32, +0x19,0x0b,0xe8,0x91,0xc2,0xb9,0x2d,0x53,0x6e,0xc2,0x7d,0x25, +0xc3,0xe7,0x6d,0x10,0x0b,0xe8,0xaa,0x16,0xd7,0x57,0x21,0xcb, +0xc8,0x6f,0x68,0x87,0x76,0xc9,0x3a,0x3d,0x85,0xcb,0x6d,0x61, +0xf6,0xc0,0xdb,0xf2,0x1b,0xe9,0x86,0xe6,0xc0,0x43,0xf9,0xba, +0xa8,0x73,0x0f,0x55,0xff,0x4f,0x4c,0x46,0x97,0xec,0x66,0xb0, +0x5e,0xb9,0x72,0x7d,0xfa,0x55,0x75,0xde,0x18,0xd2,0xcd,0xd7, +0xd4,0x3c,0x4a,0x75,0xc7,0x99,0x1a,0x79,0x1b,0x27,0x5d,0x27, +0x26,0xbb,0xfe,0x42,0xe1,0x3a,0x1b,0xe9,0x34,0x81,0x39,0xea, +0x46,0x8c,0xbe,0x38,0x40,0xcd,0x83,0x28,0x84,0xa5,0xcc,0x79, +0x06,0xad,0x37,0x90,0x56,0x3d,0x95,0x11,0x91,0xf3,0x10,0x38, +0x5b,0x95,0xaa,0xa5,0xec,0xff,0x7c,0x5e,0x84,0xcf,0x9f,0x32, +0xb9,0x0d,0x8d,0xb1,0x7d,0xba,0x2f,0xda,0x9e,0xd7,0xfa,0xd2, +0x17,0xe1,0x43,0xf4,0x45,0x58,0xf8,0x2e,0x61,0x46,0x0b,0x9b, +0x61,0x4b,0x9a,0xc4,0xaa,0x2e,0x66,0x0b,0xbb,0x09,0xe7,0x36, +0x46,0x0b,0x57,0x50,0x0b,0x9b,0x53,0x0b,0xbf,0x53,0xbf,0x92, +0x05,0x97,0x2c,0x9f,0xa8,0x2c,0xad,0x38,0x8e,0xeb,0x81,0x30, +0x59,0x05,0x1a,0x74,0x64,0x53,0x9f,0xbd,0x1e,0xa6,0x66,0xdf, +0x96,0x13,0xcc,0x3e,0x5b,0x24,0xb4,0x1c,0x26,0x03,0x54,0x53, +0xae,0x1a,0x52,0x2a,0xbe,0x35,0x25,0x75,0x98,0x6a,0x28,0xab, +0xe9,0x0d,0x8d,0xbe,0xf9,0x90,0xcb,0x15,0x61,0xea,0xeb,0xdb, +0x72,0x1f,0x35,0x74,0xa8,0xa8,0xd5,0xc3,0xd1,0x31,0xa2,0x66, +0x18,0x35,0xe0,0x38,0x21,0x7c,0x27,0x4c,0xed,0xb8,0x2d,0x13, +0x4d,0x84,0xc9,0xd8,0x65,0xf1,0xa8,0xa0,0xa0,0x77,0xf3,0x0e, +0xc8,0x48,0x1d,0x65,0x6f,0xd9,0xeb,0xd1,0xd7,0xc8,0x5c,0x0f, +0xcc,0xa3,0x74,0x87,0xf2,0xde,0xfd,0x7a,0x19,0x47,0xe9,0xe6, +0x99,0xb9,0x79,0xf2,0x50,0xad,0xf9,0x5d,0xea,0xd5,0xcb,0x8b, +0xea,0x43,0x4f,0x73,0x04,0xad,0x0a,0xca,0x29,0x54,0x5f,0xd0, +0x2f,0xac,0x18,0x76,0x70,0x78,0x3f,0x4e,0xbe,0xaf,0xa9,0x3e, +0xe0,0x29,0x9c,0x9f,0xb0,0x5b,0xbd,0x64,0x07,0xd9,0xe1,0x56, +0xde,0xcd,0xa3,0x33,0x0e,0xf5,0xfd,0xd0,0x6b,0x83,0x6c,0x93, +0x67,0xd7,0x2c,0xf2,0x0b,0x98,0x2f,0x9c,0xdb,0xb1,0x67,0xa7, +0x26,0x0c,0x1e,0x32,0x62,0x42,0x03,0x6f,0xb7,0x92,0x64,0x63, +0x23,0x57,0x7d,0x79,0x2f,0xca,0x5e,0x70,0x43,0x8f,0xff,0x53, +0x8d,0xbb,0x49,0x7b,0xb9,0xdc,0x21,0x8b,0x37,0x95,0x53,0xe2, +0x55,0x9e,0x9c,0xac,0x5f,0x8e,0xd7,0xe4,0x6e,0xd4,0x65,0xcd, +0x44,0xfd,0x5a,0xac,0xa7,0x06,0xbb,0xd5,0x5a,0x51,0x7f,0x32, +0x2b,0xd9,0x60,0xc4,0x34,0x36,0x95,0xd3,0xa3,0xd5,0xaa,0xeb, +0x72,0xea,0x63,0x98,0x77,0x43,0xdf,0x6d,0x51,0x57,0x13,0x84, +0x76,0x8e,0xc1,0xcf,0xb9,0xc2,0xbd,0x1a,0x4d,0x02,0x7e,0x7f, +0x39,0x40,0xe7,0x36,0x95,0x93,0xa3,0xd5,0xd2,0x32,0xd0,0x1d, +0x08,0x3a,0x40,0x58,0x4e,0xe0,0x24,0x2b,0x77,0x73,0xe1,0x4c, +0x59,0x14,0x10,0xfb,0x7e,0x55,0x49,0xd4,0x47,0xab,0x7a,0xad, +0xf0,0x6a,0xc2,0x4a,0xda,0xe8,0xd1,0xfc,0x31,0x7c,0x7b,0xa3, +0xa4,0x59,0x14,0x7c,0xd4,0x54,0x6e,0x89,0xb6,0x6b,0xd7,0x35, +0xd5,0x48,0x2f,0x12,0x2e,0x7b,0x58,0x4f,0xd5,0x5b,0x4e,0xd7, +0xe4,0x7e,0xbd,0x2f,0xdd,0xc5,0xe3,0xdd,0x34,0x0d,0x7e,0xce, +0x13,0x62,0x33,0x3a,0x99,0x76,0x06,0x1d,0x84,0x76,0xd9,0x51, +0xf7,0xec,0xa6,0x72,0x62,0xb4,0x5a,0x72,0x5d,0x4e,0x33,0xea, +0xde,0x26,0xb4,0x54,0x24,0x31,0x47,0xef,0xc4,0x60,0x91,0xf0, +0x74,0x73,0x40,0xbd,0xdd,0x54,0x8e,0x8a,0x56,0x6f,0x5c,0x97, +0xa3,0x1e,0xc3,0x9b,0x37,0xf4,0x85,0x48,0xe1,0x70,0x69,0x00, +0x0a,0xb7,0x37,0x99,0xfc,0x58,0x05,0x0a,0xcb,0x74,0x22,0xea, +0x2d,0x24,0xea,0xf4,0x0d,0xfd,0x9b,0x28,0x47,0xfb,0x17,0x1b, +0x44,0x0d,0x2e,0x6b,0x78,0x9d,0xdf,0xd1,0x56,0x6c,0x8e,0x5e, +0xe1,0x34,0xa3,0x6c,0xad,0xc0,0x7f,0x51,0x31,0xf3,0xba,0x1c, +0xf7,0x18,0x16,0xdd,0xd0,0x77,0x3a,0xa8,0x10,0x75,0x93,0xd8, +0x8b,0xca,0xfa,0x52,0x7e,0x15,0x98,0x1c,0x4d,0xc2,0x2f,0x1f, +0x4b,0x46,0x37,0x09,0x16,0xf5,0xe9,0xcc,0xff,0xbd,0x02,0x70, +0xd6,0x8b,0xf8,0x65,0xbc,0xab,0x1b,0xae,0x76,0x15,0x4a,0x21, +0x5d,0xe9,0xc6,0xd3,0xa2,0x26,0xca,0x86,0xa2,0x36,0x1a,0x09, +0xff,0x21,0xe7,0x08,0x7f,0x92,0x5f,0x41,0x90,0x36,0xe1,0xf6, +0xc0,0x42,0xf9,0x96,0x74,0xa5,0x9b,0x96,0x04,0xdf,0xd5,0x10, +0xf7,0x3a,0x2d,0xd9,0xff,0x28,0x39,0x25,0x93,0x8d,0xd3,0xb5, +0xea,0xcb,0x15,0x31,0x30,0x13,0xaa,0xca,0x77,0x63,0x88,0x3e, +0xb9,0xe7,0x4f,0xb5,0x84,0x8e,0x77,0x53,0x17,0xe0,0x14,0xa7, +0xc7,0xd1,0xf8,0x38,0x85,0xc8,0x56,0xdb,0xaa,0xe0,0xfd,0x5c, +0x59,0x55,0x93,0x37,0x61,0x2e,0x77,0x5c,0xbb,0x95,0x4c,0x22, +0x3c,0xef,0xfa,0xc9,0x28,0x52,0x54,0x6e,0xb2,0x45,0x1c,0x29, +0x2a,0x99,0xf0,0x1c,0x96,0x14,0xd2,0xa7,0x82,0xf9,0x23,0x84, +0xc8,0xa6,0x9c,0x8f,0x48,0xfa,0x06,0xd8,0x79,0x07,0x49,0xbf, +0x8f,0xa5,0xaa,0xe8,0xe3,0xf8,0x73,0xd0,0x0b,0x4b,0x02,0xc3, +0x21,0xc9,0x4f,0xc6,0xc7,0x42,0x47,0x2c,0xdc,0x3e,0x4e,0x25, +0x50,0x42,0xaf,0x1b,0xfa,0x00,0xe1,0x3e,0x85,0xc5,0xe6,0x51, +0x3f,0x75,0x31,0xfb,0xa9,0x0b,0x89,0x65,0x17,0x14,0x48,0x54, +0x5e,0x68,0x9a,0xcd,0x0c,0x82,0x25,0x68,0x43,0xee,0xbf,0x82, +0x6a,0xa4,0xee,0x19,0x06,0xcb,0xd5,0x03,0x2e,0xaa,0x07,0x30, +0x3a,0xc1,0xe3,0x83,0x6b,0x46,0x0d,0x69,0x58,0xc3,0xa8,0x42, +0x7d,0xa4,0xb0,0xc6,0x31,0xf4,0xc4,0x4a,0xb8,0x68,0xf0,0x94, +0xe9,0xcb,0x02,0xd4,0x42,0x88,0xc2,0xa2,0x47,0x11,0x4a,0x54, +0xbd,0x83,0x73,0x8f,0x2a,0x15,0x55,0xfb,0x30,0xe1,0xdd,0x97, +0xc1,0xec,0x42,0x3d,0x05,0x89,0x1e,0x2b,0xaa,0x61,0xdf,0x15, +0x9b,0x7d,0x97,0x8a,0x7d,0x97,0x6b,0xf4,0x5d,0x73,0xec,0xbb, +0xe6,0x06,0xee,0x19,0x88,0x3b,0xab,0x50,0x47,0xb7,0xe2,0x3f, +0x9b,0x4e,0xd4,0x47,0x52,0x9b,0x77,0x08,0x6b,0x07,0x46,0xb4, +0xc9,0x60,0x51,0x7b,0xb2,0x89,0x7e,0x65,0x21,0xc9,0x91,0x89, +0x7e,0x04,0x99,0x3c,0xd5,0x8f,0x30,0xb4,0x33,0x50,0x97,0x34, +0x7b,0x00,0x7d,0xbd,0xe5,0x48,0xd2,0x25,0x7d,0x7a,0xe1,0xe4, +0x13,0xd8,0xdb,0xd4,0x25,0xb9,0x79,0xf0,0x23,0x33,0x34,0x49, +0x8a,0x11,0xbd,0x7e,0x83,0x56,0x2a,0xe7,0x43,0x21,0x0f,0x93, +0x4b,0xe3,0x61,0x5a,0x33,0x92,0xfa,0xcb,0x72,0x92,0xdc,0x76, +0x5b,0x8d,0xb9,0x5e,0x52,0x10,0xad,0xa1,0x1d,0x73,0x98,0x97, +0x3d,0xd6,0xaf,0xc6,0x6b,0x6a,0x5d,0x95,0x66,0x72,0xe6,0xcf, +0x9a,0xdc,0x85,0x9c,0x68,0x5c,0xb9,0x95,0x06,0x30,0x7b,0xb3, +0x6b,0x1a,0x9c,0x94,0xc0,0x6f,0xc1,0x77,0x57,0x4b,0xb4,0x58, +0x48,0x8c,0x94,0x71,0xf1,0xd0,0x21,0x50,0xb6,0xeb,0x85,0x92, +0x39,0x55,0x83,0x4f,0xf5,0xbe,0xdc,0x7c,0x60,0x8a,0x6a,0x7c, +0xae,0x60,0xb5,0x98,0xfc,0x14,0x3a,0xd1,0x2f,0x3a,0xd5,0x9f, +0x09,0x67,0xec,0xcf,0x1b,0x94,0x72,0x36,0x95,0xa2,0x03,0x77, +0x5e,0xd3,0x77,0x5a,0xe0,0x24,0x1c,0x42,0x9c,0x6f,0x5e,0xd5, +0x67,0x0a,0xdb,0x40,0x76,0x09,0xdd,0x2e,0xdb,0x0c,0x56,0xf2, +0x16,0x71,0xc9,0x70,0xa8,0x2c,0xeb,0xc5,0xc0,0x5c,0xe4,0x9d, +0xd9,0xb1,0xea,0x6b,0xb9,0x46,0x36,0x93,0x95,0x95,0x93,0xb1, +0xd2,0x92,0x0d,0x19,0x1c,0x25,0x68,0x76,0x0c,0x3d,0xd7,0xbf, +0x89,0xd1,0x74,0x37,0xc5,0xb8,0x0c,0x97,0x95,0x21,0x1c,0x7b, +0x0c,0x9a,0xd1,0xdb,0x05,0x92,0x69,0xf2,0x3a,0x2c,0x20,0xee, +0x5b,0x60,0x70,0x1f,0xe1,0x15,0xf5,0x77,0xb3,0xdf,0x10,0x2e, +0xf0,0x16,0x31,0xdc,0xa2,0x11,0xc2,0xdf,0x93,0xc9,0xeb,0xb2, +0x0d,0x97,0x75,0xf1,0x69,0x5d,0x8b,0x9a,0x1b,0x28,0x7c,0x27, +0xa3,0xe4,0xfe,0x9b,0x07,0xf5,0x7f,0x74,0x27,0x8e,0x00,0x9b, +0x6f,0x95,0x04,0x46,0x82,0x3f,0x54,0x7e,0x18,0x87,0x4c,0x58, +0xcd,0x64,0xc2,0xd5,0x1a,0x5c,0xd7,0x07,0x70,0x7a,0xe2,0x2a, +0xdb,0xc7,0x1a,0x4f,0xf4,0xae,0xf2,0x3c,0x07,0x81,0x8d,0x10, +0x16,0xe5,0x0a,0x49,0x24,0xb8,0x5d,0x50,0x70,0x91,0xa2,0x2e, +0x65,0x8c,0x0a,0xc9,0xff,0xc9,0x9c,0xde,0xfd,0x18,0xd4,0xbb, +0x45,0x5c,0xb5,0x68,0xac,0x70,0x9f,0x4e,0x94,0x35,0xe7,0xb2, +0x26,0x56,0x5c,0x13,0x29,0x6b,0x22,0xdc,0xd6,0xd2,0x9e,0x93, +0xff,0x81,0xd1,0xcc,0xe6,0xed,0x64,0x3f,0x23,0x78,0xf5,0x5b, +0x68,0x6a,0xa9,0x45,0xe3,0x85,0xbf,0x8d,0x90,0x34,0xa3,0x8c, +0x49,0x95,0xa1,0x1a,0x22,0x69,0x2a,0x7c,0x51,0xdd,0x75,0x15, +0xf5,0x1a,0x31,0x6c,0x94,0x8d,0x1a,0x35,0xe6,0x96,0xfe,0x75, +0x24,0x75,0x0c,0xb5,0x23,0x92,0x7a,0x04,0xa9,0x3f,0xc1,0xa1, +0x2e,0x52,0x5f,0x97,0xa8,0x9f,0x4b,0x5d,0xb2,0xcb,0x60,0xd1, +0x3a,0x55,0x98,0x0c,0x37,0x59,0x14,0x69,0x6d,0x76,0x8b,0x58, +0xf4,0x7f,0xa4,0x75,0xf4,0xff,0x1b,0xd7,0xea,0xcd,0x4a,0xc6, +0xf1,0x1e,0xd0,0x12,0x5a,0xcb,0xe6,0xb4,0x2e,0x9b,0xa1,0xe9, +0x4e,0x7a,0x0f,0x1e,0x69,0x3e,0xe9,0x61,0x3c,0x51,0xd1,0xf9, +0x1c,0xef,0xf0,0x9f,0xa6,0x57,0x81,0xd6,0x65,0xd7,0xf0,0xae, +0x8a,0xe7,0xb2,0x7f,0x10,0xf4,0x37,0x93,0xc1,0xcd,0x94,0x85, +0xfc,0x27,0x79,0x54,0x3e,0x11,0xd5,0xbf,0x67,0x70,0x27,0x4c, +0x16,0x8b,0xea,0x3f,0x30,0x78,0x2c,0x8f,0xb6,0xa0,0x50,0x3c, +0xb5,0x1e,0xb5,0x64,0x8d,0x5d,0x4c,0x8e,0xa8,0x23,0x5b,0x82, +0x0b,0xb4,0xd4,0x94,0x0f,0x79,0x10,0xc9,0x90,0x54,0x2c,0xb3, +0x29,0x17,0x36,0x62,0x38,0xc4,0x9f,0x21,0x86,0xd2,0x28,0xa8, +0x06,0x2d,0x64,0xd5,0x68,0x78,0x14,0x26,0x1f,0x47,0x9b,0x37, +0x51,0xa0,0xe4,0x51,0xda,0x93,0xb6,0x41,0xb6,0xe5,0xf8,0xa0, +0xba,0x6c,0xa1,0xc9,0x91,0x75,0x64,0x0b,0xa8,0x0e,0x2d,0x34, +0x28,0x80,0x1c,0x3a,0x68,0x49,0xdd,0x61,0x6a,0x1f,0x83,0xcb, +0x2a,0x89,0xeb,0x8b,0xe4,0x1b,0xa2,0xa6,0x33,0x83,0x8e,0x1a, +0x8e,0x5d,0xfa,0x15,0xb5,0x0d,0x07,0x6c,0x3f,0x53,0x1e,0xea, +0xa2,0xf0,0x4e,0x62,0x58,0xdb,0x6f,0xfc,0x3b,0xac,0xed,0x8b, +0x28,0x5f,0x68,0xf9,0x3c,0x06,0x2e,0x85,0xc9,0x9c,0x18,0xba, +0x8c,0x82,0x7b,0xf2,0x68,0x5b,0x65,0x69,0x4c,0x34,0xfb,0x89, +0xfa,0xde,0x0c,0xa5,0xa0,0x26,0x17,0xee,0xde,0xe4,0x13,0xff, +0x1e,0xac,0xc1,0xe1,0x2a,0xe8,0xed,0x39,0x91,0xb7,0x87,0x58, +0xee,0xf0,0x1f,0xff,0x6b,0xab,0x5b,0x6e,0x36,0xda,0xcc,0xa1, +0xa5,0x74,0x96,0x2d,0x35,0xb3,0xdd,0xce,0xd8,0xee,0x60,0xd5, +0x5d,0xb8,0xb6,0x63,0x48,0x4b,0x00,0x7c,0x26,0x6c,0x73,0x59, +0xc9,0x38,0x43,0x75,0xd0,0xb6,0x6f,0x35,0x6b,0x20,0xef,0x09, +0x5e,0x28,0x3f,0x22,0x56,0x09,0xb9,0x52,0x93,0xb9,0xba,0x17, +0x5a,0x60,0x5e,0x28,0x5d,0x22,0xce,0x78,0xa2,0xaa,0xe4,0x90, +0x7c,0xf9,0x90,0xa6,0xcf,0xa6,0xc3,0x47,0x18,0x5e,0x23,0x1f, +0x45,0x29,0x77,0x2e,0x1b,0x87,0x40,0x33,0xcb,0x8a,0x76,0xad, +0x57,0xb6,0x31,0x0e,0x64,0x9a,0x2e,0xe7,0x6d,0xde,0x2d,0xdb, +0x79,0x27,0xe5,0x77,0x5b,0xd8,0x64,0x71,0xfd,0x65,0xd6,0xb2, +0x01,0x6f,0x81,0x83,0xd8,0x2c,0x52,0x85,0x9a,0x03,0x1e,0x8e, +0x03,0x6e,0x3c,0xe9,0x61,0x3c,0x71,0x0c,0x78,0x4b,0x73,0xc0, +0x5b,0x96,0x5d,0x87,0x29,0x34,0x12,0x83,0x83,0x21,0x18,0xe6, +0x99,0x3f,0x93,0x69,0x5d,0xb0,0xa6,0xbc,0xc9,0x1f,0x4b,0x0f, +0xf9,0x24,0x5a,0xb8,0xe4,0xb3,0x18,0x78,0xfc,0xa0,0x29,0x24, +0x3d,0x7e,0x20,0x9f,0xc4,0xd0,0x7d,0x34,0xf6,0x84,0x47,0x53, +0x98,0x84,0x5e,0x6f,0x73,0xb9,0x53,0xf8,0x0e,0x65,0xff,0x39, +0xea,0xa2,0xea,0x69,0xec,0x87,0x83,0xd4,0x0f,0x48,0xdb,0x42, +0xde,0x43,0xb8,0x7c,0xcb,0xd0,0x83,0x39,0xa5,0xe9,0x15,0x75, +0x3f,0x1e,0xe9,0xb8,0x3d,0xad,0xa9,0x88,0x7c,0xe1,0xf3,0x01, +0x83,0x2c,0x8a,0x18,0x2b,0x2a,0x96,0x45,0xc6,0xde,0x30,0x8f, +0x6f,0x18,0x14,0xbe,0x72,0x9e,0x13,0xa1,0x35,0xce,0x73,0x12, +0xfe,0xb7,0x99,0xaa,0x20,0x8f,0x69,0x52,0xe9,0x95,0x78,0x14, +0x71,0x89,0x74,0x8b,0x36,0x9e,0xa8,0xee,0x39,0xc4,0x41,0x35, +0x89,0x83,0x00,0x6a,0x96,0x5d,0xdb,0x9b,0xc1,0xfb,0x3c,0x56, +0xaf,0x0a,0x3d,0x8a,0x65,0x0f,0xbd,0xe2,0x55,0x4a,0x36,0xd6, +0x91,0x07,0xc3,0x58,0x9d,0xb2,0x4c,0xd4,0x64,0xad,0x21,0x45, +0x78,0xff,0xcc,0x60,0xf5,0x0f,0x94,0x7f,0x65,0x03,0x83,0x8f, +0x7a,0xc9,0x29,0x8d,0x60,0x32,0x74,0xb1,0x7f,0xca,0x7e,0x47, +0x1d,0xff,0xda,0xb9,0x01,0xa2,0x7a,0x03,0x76,0x9f,0xa6,0xbc, +0x4c,0xe3,0x24,0xa7,0xcd,0xc6,0x32,0xca,0x15,0xc7,0x49,0x4e, +0x4f,0x20,0x96,0x09,0x8f,0x48,0xb4,0x9a,0xef,0xa2,0xb5,0x6b, +0xe6,0x10,0x5b,0x8f,0x7e,0xff,0x5f,0x2f,0xd2,0x19,0x1c,0xac, +0xa2,0xba,0xcb,0xca,0xb4,0x00,0x20,0x3c,0xd0,0xe1,0x4a,0xe6, +0x31,0xba,0xa5,0xd1,0xdd,0xa7,0x8e,0xc4,0x62,0x45,0xfc,0xdd, +0xb9,0x4b,0x93,0x9d,0xf6,0x7f,0x96,0x76,0xe8,0xa4,0x6d,0x6f, +0xd7,0x19,0x96,0x2e,0x03,0x86,0xc0,0x9a,0x8e,0x5e,0x47,0x7a, +0x4b,0xdb,0x99,0x07,0xe9,0x99,0xe9,0xd6,0xe4,0x35,0xdb,0x36, +0x6e,0x5b,0xbd,0x6d,0x89,0x55,0x7e,0x02,0xee,0xe9,0xb9,0xb0, +0x59,0x56,0x9c,0x25,0x9c,0x7c,0xb0,0x42,0xe4,0xcb,0x6b,0xc6, +0x61,0x51,0x10,0xb2,0xb8,0x5d,0x44,0x0b,0xe1,0xd2,0x83,0xfd, +0xd4,0xbe,0x80,0xd6,0x13,0x8d,0x93,0xa3,0x56,0xf3,0x79,0x16, +0xe1,0x5d,0xf7,0xdf,0x5c,0x38,0x1a,0xa7,0x96,0x6a,0xa8,0x3f, +0xab,0xc6,0x81,0x2e,0x57,0x68,0x32,0x47,0xbe,0x40,0x65,0x6b, +0x3c,0x89,0x37,0x9e,0xa8,0x4a,0xd9,0xa4,0x5f,0xdd,0x48,0xbf, +0x5e,0x02,0xb7,0xb2,0xeb,0x5f,0x61,0x29,0x7f,0x07,0x9d,0xe0, +0x05,0x8b,0x60,0xba,0xe7,0x06,0x51,0x03,0x4d,0x8b,0xbc,0xbb, +0xf2,0xaa,0xe5,0xef,0xf5,0xbf,0xa6,0xde,0xdf,0xe2,0xec,0xf6, +0xca,0x10,0x7b,0x9b,0x43,0xec,0xeb,0x18,0x62,0x6f,0x63,0x88, +0xf3,0x8c,0x21,0xce,0x00,0x57,0x1c,0xe2,0xbb,0xb2,0x48,0xae, +0x30,0x7f,0xc6,0x53,0x8f,0xef,0x62,0x90,0x6f,0x66,0xc5,0x72, +0xb1,0x84,0x4e,0x1a,0x3f,0xb8,0x17,0xb5,0x24,0x6f,0xfc,0xb9, +0xd0,0x7d,0x5e,0x12,0x9f,0x34,0x79,0xf1,0x84,0xfd,0x62,0x64, +0xc8,0x5a,0x8b,0x2d,0x1a,0xd0,0x73,0x20,0xb2,0x74,0x0b,0x3a, +0xb9,0xfc,0x3d,0xe1,0x9f,0x42,0x89,0xfb,0x76,0x71,0x99,0xa1, +0x0f,0xe8,0x81,0x53,0x46,0x6b,0xd9,0x3e,0x12,0xf9,0x5e,0x25, +0x18,0x4f,0x22,0xcd,0x27,0x3d,0x34,0x38,0xaf,0xea,0x72,0xd9, +0x49,0xb6,0x86,0x4e,0x16,0x39,0xae,0x8e,0xe3,0xca,0xde,0x06, +0x1e,0xd0,0x12,0x94,0x5b,0xc9,0x3c,0xae,0x2a,0xc9,0x63,0x7a, +0x95,0x68,0xa8,0x81,0x2c,0xe3,0x6e,0x91,0xa7,0xeb,0x98,0x0f, +0xa2,0x1c,0x0f,0x60,0x24,0xe4,0x13,0x37,0xd5,0x32,0x39,0xab, +0x56,0xd9,0x35,0x72,0xd6,0x5e,0x4a,0x8b,0x55,0x4f,0x35,0xe1, +0xfa,0xb1,0xab,0xea,0x3d,0x52,0x9b,0xc6,0x72,0x93,0xc7,0x3a, +0x5a,0x6e,0xda,0x64,0x2c,0x37,0x6d,0xfb,0x19,0x55,0xd6,0x04, +0x43,0x65,0x75,0x30,0x12,0x9f,0xe7,0xd2,0x52,0xd1,0x38,0x5a, +0x2a,0xba,0xa6,0x0a,0x61,0x2b,0xad,0x33,0x5d,0x41,0x16,0x42, +0x4a,0x56,0x71,0xf8,0x5a,0x1e,0x93,0xdf,0xc4,0x40,0x45,0x68, +0xf9,0x37,0x11,0x62,0xde,0x47,0x99,0xf7,0x30,0x02,0x3e,0x12, +0x3e,0x3b,0xd0,0x9e,0xa1,0x65,0x2b,0xab,0x9a,0xc9,0x0d,0xc5, +0xe5,0x63,0xa8,0xb0,0xfe,0x57,0x79,0x99,0xf6,0x92,0x6e,0x7a, +0x0b,0x51,0xcf,0x9d,0xd1,0x3a,0x92,0x0b,0x69,0x65,0x0b,0x69, +0x29,0xf3,0x0a,0x69,0x1e,0x6a,0xae,0x28,0xcd,0xa5,0x15,0xa5, +0xbb,0xbf,0xfe,0x4a,0x09,0xb7,0x28,0x09,0x57,0xc3,0x86,0x4f, +0x83,0xcb,0x56,0x94,0xb2,0xce,0x7b,0xbf,0x67,0xb9,0x50,0x96, +0xd2,0xae,0xbf,0xd7,0x3c,0xe3,0xc8,0xf8,0x16,0x68,0x0e,0x4d, +0x6a,0xc8,0x8b,0x4a,0xf4,0x50,0xcd,0xde,0xc2,0x6e,0xe5,0x72, +0x3d,0x9a,0xa8,0x68,0xc7,0xba,0xa1,0xc1,0xaa,0xc9,0x22,0x75, +0x97,0xcb,0x75,0xe5,0x4f,0xd0,0xe4,0xde,0xa0,0xb6,0x52,0x8e, +0x07,0x37,0x98,0x6b,0x91,0x83,0xeb,0x38,0xae,0xdc,0x4a,0x26, +0xc8,0xe5,0x9c,0xb6,0x6e,0x68,0xf6,0x46,0x6a,0xba,0xf0,0xf7, +0x63,0xb2,0x40,0x85,0xd3,0x2f,0xda,0x98,0x2e,0x1c,0x9d,0x6b, +0x77,0x68,0x63,0x91,0x03,0xea,0x94,0x5d,0xcd,0x81,0xb6,0x5c, +0x7d,0x15,0x4b,0x46,0xc4,0x5d,0x54,0xf6,0x13,0x8c,0x1c,0xf7, +0x45,0xb4,0x42,0x33,0xad,0x1f,0x47,0x1b,0x61,0xad,0x3e,0x80, +0x0c,0x59,0x77,0xd9,0xde,0x22,0xd7,0xd7,0xf9,0xf7,0x03,0x18, +0xa0,0x3c,0x38,0x5e,0x75,0x91,0xee,0x9a,0x2c,0x20,0x8b,0xc1, +0xbc,0x86,0xe3,0xea,0x6f,0xae,0x1f,0xb8,0x82,0xf3,0x0e,0x99, +0x0d,0xb4,0x5c,0x45,0x78,0xd5,0xc8,0x22,0xb2,0x5c,0x2d,0x0c, +0x8e,0xdb,0x3b,0x73,0x34,0x56,0xd5,0x96,0x67,0xfa,0x42,0x74, +0xc6,0x6f,0xc7,0xe8,0xcb,0x03,0xd4,0x22,0x72,0xc6,0x71,0x08, +0x2f,0x31,0x38,0x64,0xf7,0xe5,0xfa,0x26,0x34,0x1d,0xf2,0xe0, +0x34,0x0e,0x61,0x34,0x76,0x7f,0x73,0x74,0x03,0x9b,0x3b,0x08, +0x54,0xb3,0x8b,0x68,0x89,0x66,0xda,0xeb,0x5c,0xb5,0x43,0x7a, +0x3a,0xc4,0x42,0x63,0xac,0xb9,0xa1,0x41,0xe0,0xbf,0x1e,0xc0, +0x00,0x00,0x22,0xaa,0xa9,0x49,0x60,0xd3,0xb2,0x6b,0xf8,0x8c, +0x56,0x92,0x52,0xe5,0x3f,0xc1,0xa0,0xa9,0x96,0xf4,0x05,0x94, +0xd6,0x6f,0xa2,0xaf,0x71,0xbc,0x71,0xa5,0xf3,0xeb,0x4b,0x8e, +0x60,0x35,0xa1,0xea,0xeb,0x22,0x4d,0xcd,0xd4,0x8f,0x08,0xff, +0xba,0xd8,0x8d,0x64,0x73,0xd4,0x65,0xaa,0x46,0x2e,0x61,0x69, +0x63,0x62,0x6c,0x53,0x76,0x9d,0xaa,0xfa,0xf3,0x39,0xa9,0x0b, +0x56,0xcf,0x4e,0x7c,0x67,0xb6,0xc7,0xb2,0x64,0xa7,0x43,0xa7, +0xd2,0xce,0xe4,0xd8,0xf6,0x77,0x7b,0xcb,0xe2,0x33,0x20,0x06, +0x56,0x88,0x06,0x93,0xd9,0xd6,0x4d,0xdb,0x28,0xaf,0xcd,0x07, +0xd0,0xdc,0xc8,0x6b,0x83,0x23,0xb5,0x1a,0x47,0x6a,0x87,0x31, +0x52,0x63,0x85,0xbf,0x3f,0x8d,0x54,0x17,0xfa,0xc5,0x91,0xaa, +0xc0,0x91,0x3b,0xdc,0xa1,0xb9,0x31,0x52,0xe6,0x55,0x82,0x4a, +0xe5,0xb2,0xef,0x63,0xb4,0x50,0x9a,0xa2,0x85,0x42,0xf6,0x0a, +0xb1,0x53,0x60,0x9f,0x3c,0x73,0xe9,0xc7,0x61,0x9d,0xcc,0xb1, +0x18,0x56,0x8b,0x91,0xf0,0x5e,0x5d,0xcb,0xe0,0xf3,0x16,0x2c, +0x4b,0x71,0xda,0x75,0x75,0xf3,0xcd,0x07,0xb6,0x47,0xdd,0x45, +0x3d,0x34,0x72,0x07,0xca,0x94,0x05,0x5b,0xe7,0xac,0x9e,0xbf, +0x10,0x27,0xb6,0x6e,0x4c,0x7d,0xbe,0x90,0xcb,0x7e,0xd0,0xfb, +0x62,0x96,0x70,0xbe,0xc2,0x96,0x23,0xec,0xb9,0xcd,0xe7,0xaf, +0xdb,0xf2,0x82,0xfa,0x59,0xa0,0x5e,0xff,0x6e,0xd0,0x01,0x02, +0xbd,0x2e,0x0d,0xfd,0xf6,0xcb,0xbc,0xbc,0xc3,0x57,0xac,0xeb, +0x53,0x37,0xaf,0xda,0xb8,0xc4,0x19,0x75,0xda,0x8f,0xaa,0x15, +0xd3,0xe3,0x98,0x7a,0x1e,0x22,0x6a,0x0c,0x65,0x59,0xd0,0x17, +0xad,0xad,0x06,0xa9,0x0c,0x0b,0x67,0x5d,0xb3,0xe5,0x06,0x25, +0x58,0xc0,0xb3,0x7f,0x77,0x2c,0xec,0xe7,0x75,0x69,0xc8,0xb7, +0x9f,0xe7,0xe6,0x1d,0xc9,0xb7,0x42,0x2d,0x28,0xf8,0xdd,0xd8, +0xa1,0x76,0x6f,0x00,0xda,0x40,0x30,0xf0,0x42,0x16,0xf4,0x93, +0xbd,0x12,0xb7,0xce,0x5b,0x35,0x7f,0x81,0x75,0xce,0x7c,0xac, +0x7b,0x77,0x56,0xda,0xc5,0x9b,0xb6,0x2b,0x41,0xbd,0x2c,0xe0, +0x9b,0xd0,0x09,0x8b,0x37,0xc3,0xe2,0xdf,0x7d,0x93,0x77,0xe5, +0xc8,0x35,0xe1,0xe2,0xcc,0xde,0x46,0xbf,0xbf,0x07,0x85,0x88, +0x7d,0x1e,0x21,0x8f,0xb0,0x39,0xf0,0xc0,0x8c,0x8c,0x7b,0x1e, +0xfe,0x8c,0x2d,0x57,0x13,0xcd,0xb0,0xb8,0xe7,0x49,0xcf,0x58, +0x5f,0x55,0x1c,0x52,0x76,0x1d,0xaa,0x8a,0x4b,0x67,0x18,0x11, +0x70,0x9f,0x2f,0xc5,0x42,0x0d,0x55,0x9e,0x23,0xf2,0x8d,0xda, +0x9d,0x00,0xd1,0x17,0xce,0x23,0xed,0x21,0xc2,0x79,0x1c,0xbb, +0x62,0xcb,0x09,0xea,0x6f,0x01,0x0f,0x54,0x33,0x1d,0xa0,0x3e, +0x35,0xfa,0x5e,0x6e,0xee,0x91,0xbc,0xb2,0x46,0xeb,0x68,0xd5, +0x3b,0xf6,0xb8,0x3d,0xef,0xcd,0x37,0x6c,0x4c,0x5b,0xb5,0x31, +0x09,0x3b,0xae,0x8f,0xc7,0xc5,0xf3,0xd4,0x73,0xd8,0xcb,0xbb, +0x33,0x37,0x67,0x5d,0xb7,0xe5,0x07,0xf5,0xa5,0x9e,0xeb,0x8a, +0x48,0x1a,0x12,0xf5,0xf7,0x73,0xf3,0x0f,0x5f,0xb5,0xca,0x29, +0xaa,0x99,0x19,0x37,0xf7,0x3c,0x9c,0x6f,0x48,0x35,0x0a,0x27, +0x40,0x9c,0x87,0xa8,0x56,0xc2,0x74,0x57,0x15,0x64,0xc6,0xd0, +0x7d,0x1e,0x8d,0x24,0xca,0x10,0x58,0x5e,0xfa,0x26,0x35,0xec, +0x5e,0x38,0x0d,0x4d,0xb8,0xf0,0x1c,0xc3,0xa8,0x48,0xea,0x12, +0xe7,0x37,0xd5,0x9b,0x66,0x90,0xdc,0xe7,0xd1,0x42,0x3b,0x44, +0xc9,0x1a,0xef,0xa9,0x45,0x68,0xe3,0x0e,0x62,0xea,0x53,0x61, +0x0d,0x78,0x99,0xf4,0xcb,0x56,0x1e,0xeb,0x66,0xa3,0x58,0x37, +0x8f,0x38,0x36,0x04,0xbe,0x48,0x37,0x0e,0x77,0x32,0x63,0xdb, +0x1e,0xc8,0x7c,0x8e,0xaa,0x3a,0xe6,0x7c,0x26,0xb4,0x95,0x3d, +0x16,0x6c,0x49,0x5c,0x3d,0x6f,0x61,0xe9,0x5c,0xb6,0x33,0x73, +0xe3,0xc5,0xab,0xb6,0xdc,0x50,0x6a,0xc3,0xa8,0x6e,0x50,0x1f, +0x47,0xe0,0xfc,0xf0,0x3b,0x9f,0x9f,0xcd,0xdb,0x9f,0x6f,0xdd, +0xb0,0x29,0x6d,0xd5,0x86,0xc5,0xce,0x87,0xd5,0xc2,0x83,0x4c, +0xf0,0x6f,0x58,0xb6,0xda,0x7b,0x95,0x0e,0x4d,0x5a,0x43,0xdb, +0xc5,0x06,0xdd,0xd1,0x47,0x86,0xa0,0x37,0x64,0x93,0xbd,0x43, +0x55,0x4f,0xa3,0x82,0x2e,0xa8,0x6d,0xa0,0x63,0x66,0x26,0xb4, +0x91,0x6d,0xb1,0x82,0x35,0xf3,0x16,0x94,0xfa,0xb0,0x9d,0x19, +0xa9,0x99,0x79,0xb6,0xac,0xd0,0xc1,0x16,0xa8,0x31,0x2a,0x1c, +0xfc,0xc0,0x87,0x2a,0x28,0x38,0x7b,0x61,0xff,0x45,0xac,0x60, +0xf3,0xaa,0x0d,0x4b,0x9c,0xcf,0xaa,0xf3,0xfc,0x0f,0x3d,0x51, +0xce,0x55,0x05,0x31,0x7a,0x92,0xbf,0x4a,0x84,0x68,0x34,0x09, +0x0e,0x5f,0x2f,0x8b,0xe4,0x7b,0x07,0x2b,0x29,0x0b,0xb5,0xb3, +0x19,0xa1,0x76,0x87,0xe0,0xb2,0x94,0x6c,0x9a,0x3a,0xf6,0x32, +0xd4,0xce,0x66,0x86,0xda,0xd9,0x1c,0xa1,0x76,0x9f,0xc1,0x45, +0x39,0x95,0xe9,0x63,0xe0,0xf9,0x2c,0x22,0x79,0x1a,0x91,0x6c, +0xc6,0xda,0xd9,0x8c,0x58,0xbb,0x07,0xb2,0x8f,0xb0,0x4e,0x64, +0xf2,0x0b,0x25,0x36,0x19,0x8d,0xd3,0x47,0xab,0x96,0x0b,0x08, +0x74,0x26,0x81,0x96,0x85,0xd8,0xd9,0xca,0x42,0xec,0x1e,0xc8, +0x58,0x6a,0x5d,0x88,0x70,0x3f,0x8e,0x9d,0x1a,0xcd,0x82,0xb1, +0xab,0x02,0xa9,0x25,0x77,0xce,0xe6,0xec,0xcf,0x31,0xbb,0x6a, +0x89,0xb3,0xdc,0x0c,0xf3,0x92,0x8c,0x23,0xa0,0x3a,0xb6,0x43, +0x49,0x5c,0x91,0xe2,0xf4,0xe1,0x95,0xb4,0x5b,0x28,0x89,0x41, +0x86,0x24,0x0e,0x92,0x29,0x0b,0xdf,0x9b,0xb3,0x6a,0x1e,0x49, +0xa2,0x0b,0x53,0xf1,0x3e,0xff,0x5b,0x49,0x54,0xff,0x30,0xd5, +0xb3,0xd9,0x2b,0x42,0x45,0xb2,0xf8,0xff,0x4b,0x98,0x3a,0x32, +0x35,0x21,0xb0,0x4c,0x7c,0x2e,0x21,0x0d,0x8d,0xca,0x85,0xa4, +0xb4,0x07,0xde,0x42,0x45,0x43,0x4a,0x44,0xb5,0x17,0xec,0x3f, +0xe4,0xe0,0x23,0x2c,0xe9,0xf7,0xbf,0x95,0x03,0xbd,0xaa,0xa3, +0x2a,0x07,0xb3,0x97,0x8e,0xc4,0x7b,0xdf,0x7f,0xb1,0xf4,0x60, +0xa6,0xf6,0x13,0x4b,0xcb,0x62,0x1f,0x3a,0x94,0xca,0x9b,0x0e, +0xa5,0x32,0xcf,0xb5,0xf2,0x04,0x5f,0x59,0x2d,0x42,0x2d,0x2d, +0x40,0x67,0xd1,0x17,0x3c,0x0a,0x89,0xbb,0xe5,0x97,0x38,0xe3, +0x7a,0xd3,0xf6,0xc1,0x7d,0x8c,0x8e,0xae,0x32,0x8e,0x7d,0x87, +0x2f,0xff,0xd7,0x4c,0xae,0x4f,0x90,0x95,0x5e,0x3d,0xd8,0xea, +0x20,0x1a,0x43,0x0c,0xf6,0xd9,0x5b,0x6e,0x73,0x1c,0xae,0x65, +0xc5,0x57,0x55,0x23,0xcc,0x93,0xe1,0x7d,0xa1,0x4e,0xa1,0x9e, +0x56,0xc6,0x86,0x06,0x29,0x56,0x7c,0x68,0x45,0x97,0x53,0xed, +0xd9,0xc8,0xf4,0x9f,0x29,0xa8,0xc4,0x17,0x3c,0x0b,0xf5,0x6d, +0xe1,0x65,0x05,0x67,0x19,0xe4,0xf5,0x41,0x78,0xac,0xca,0x05, +0x9a,0xb1,0x1e,0xf0,0x2c,0xc9,0xb1,0xa3,0xf1,0x24,0xf4,0x8c, +0x95,0x3d,0xd5,0x26,0x63,0x0b,0xe3,0x50,0x78,0xc1,0xe7,0x2f, +0x58,0xfe,0x0a,0xeb,0xf8,0xb9,0xb0,0xfc,0x2f,0x0e,0x7d,0x6d, +0x5d,0xb7,0x21,0x75,0xf5,0xfa,0x24,0x39,0x08,0xd2,0x3c,0x72, +0x32,0x0d,0x66,0x42,0xb5,0x4e,0xcc,0x14,0xc0,0x60,0x30,0xf4, +0x8b,0xc3,0x51,0xd9,0x4a,0x91,0x6e,0xea,0x4d,0xc8,0x20,0xde, +0xe8,0x7b,0xf1,0x02,0xf2,0x46,0x54,0xe2,0xe6,0x79,0xab,0x85, +0xff,0x2e,0x76,0x2e,0xcd,0xe0,0x2e,0xec,0x04,0x91,0xd0,0x05, +0x47,0xa9,0x11,0x8d,0xd2,0x57,0xf9,0x97,0x0f,0x5f,0xb3,0x6e, +0xd8,0xb8,0x09,0x47,0xd5,0xd9,0x1f,0x9e,0x98,0xa9,0xea,0xfa, +0x42,0xbf,0x58,0xc4,0xb6,0x81,0x52,0xd5,0x21,0xb6,0x13,0x84, +0xad,0xd7,0xc5,0xf3,0x88,0x2d,0xd2,0xc0,0x56,0xe3,0x3e,0x6a, +0xfe,0xb4,0xf3,0xd7,0x4c,0x66,0xf5,0x4c,0xe8,0x6a,0x32,0xeb, +0xe0,0xef,0xbe,0xca,0xcb,0x3f,0x72,0xb5,0x0c,0x1d,0x78,0xc0, +0xf7,0xa5,0x1f,0x33,0x55,0x93,0x41,0x1f,0x03,0xa1,0xa6,0x3a, +0x8c,0x37,0x38,0x68,0x43,0x12,0x22,0x8c,0xf7,0x10,0xae,0x97, +0x19,0xb8,0x42,0xf1,0x67,0xc6,0x36,0xb3,0xf1,0x0e,0x18,0x9f, +0xd7,0x88,0x05,0x87,0x5e,0xa4,0x49,0xa6,0x5f,0xe2,0x96,0x79, +0xab,0x4b,0x0b,0xd9,0x5a,0x9a,0x2a,0xb2,0x6f,0xd8,0xae,0x77, +0x8f,0xb3,0x80,0x3f,0x72,0x77,0x3b,0xe2,0xee,0xc1,0xc8,0xdd, +0x57,0x0f,0x5d,0xb7,0x9a,0x28,0x9d,0x93,0x54,0x32,0x97,0x0b, +0xbb,0xc3,0x1a,0x5a,0x3f,0xdb,0x79,0x45,0x73,0xbb,0xf7,0xb2, +0x62,0xaf,0xf1,0xc2,0xb5,0x17,0x5b,0xa5,0x4e,0x53,0x8e,0xbc, +0x3a,0xc7,0xd9,0x22,0x75,0x1b,0x75,0xce,0x3b,0xa8,0x73,0xf2, +0x62,0xf4,0x39,0x0d,0xd4,0x3b,0x86,0xce,0xf9,0xd8,0x58,0x4e, +0x5b,0xcd,0x86,0xab,0x62,0x8a,0x29,0xc5,0x2b,0x3d,0x58,0xb9, +0x18,0x59,0xf3,0x4c,0x44,0xb0,0x86,0xb2,0xe6,0x61,0x97,0x1c, +0x27,0x74,0x5d,0x54,0xbe,0x19,0x65,0x1a,0x6b,0xf6,0xfe,0x12, +0xda,0xb8,0x86,0x2f,0x0f,0x51,0x7f,0xc5,0x09,0xcf,0x37,0x0c, +0x35,0x4e,0x32,0xe4,0xa5,0xb4,0x33,0xf4,0x5d,0x30,0x86,0x17, +0xeb,0x0f,0x82,0xd0,0x68,0x74,0x50,0xf5,0x86,0x39,0x4e,0xd4, +0xb3,0xd1,0xd8,0xb3,0x6b,0xe6,0x27,0x9a,0x13,0xe3,0xae,0x4c, +0x1a,0x2c,0x53,0xa4,0x12,0x3a,0x63,0xef,0x36,0xa6,0xc1,0xfa, +0xda,0x1c,0xac,0xd4,0x4d,0x84,0x53,0x6e,0x52,0x2d,0x39,0xa5, +0xd7,0x13,0xbe,0xc9,0x6c,0x60,0x34,0x2c,0x83,0x0a,0x5e,0xc7, +0xfa,0xc8,0x3a,0xf9,0xf7,0x33,0xce,0x9d,0xb5,0x96,0xe7,0xd4, +0x6b,0x69,0xd8,0x1e,0xf7,0xfe,0x6f,0x43,0xa0,0x47,0xa8,0x10, +0x47,0x44,0xe2,0xbf,0xbb,0x4b,0x0e,0x84,0x15,0xa5,0x7d,0xd8, +0x3d,0xca,0x99,0x48,0x0d,0xc4,0xe7,0xe3,0x84,0x75,0x36,0xf3, +0x83,0x2f,0xfe,0x30,0x42,0x56,0x3f,0x82,0x0b,0x1c,0xbc,0x63, +0xa5,0xb7,0x9a,0x6e,0x46,0xaa,0x6e,0x83,0x3f,0xf9,0xc2,0xc5, +0xa8,0xf7,0x76,0x5c,0x4d,0xbd,0xf1,0x95,0xed,0x87,0xd0,0x56, +0x16,0x88,0x1a,0xd9,0x08,0x45,0xae,0x8f,0xd7,0x85,0x61,0x9f, +0x3f,0x3f,0x77,0xf7,0xd3,0xcf,0xad,0x6b,0x53,0x53,0x57,0xaf, +0x5b,0x22,0xdb,0xc2,0x72,0x8f,0xec,0x0c,0xe8,0x20,0x93,0x16, +0xbf,0x37,0x67,0x0d,0x99,0x27,0x0a,0x1d,0xc7,0x9d,0x8a,0x4e, +0xd1,0x5a,0x1a,0x06,0xbd,0xd5,0x15,0x36,0x88,0xcb,0x56,0x10, +0x9e,0x75,0x0e,0x5d,0x8f,0x50,0xe1,0xff,0x88,0x9d,0x4d,0xbd, +0x70,0xc5,0x96,0x1d,0x8a,0xd6,0x86,0x75,0x54,0x10,0xf8,0x22, +0x0b,0x9f,0x1f,0x5e,0x74,0x17,0x35,0x70,0x1e,0x69,0xb8,0xa1, +0x34,0xe3,0x39,0x0e,0x14,0xdb,0xe9,0x38,0x50,0x6c,0x14,0x62, +0x41,0xeb,0xa3,0x25,0xc4,0x9e,0x27,0x2c,0xd1,0x84,0x25,0x2b, +0xf5,0x22,0x72,0x6e,0x68,0x1f,0x0b,0x78,0x8f,0xec,0x0a,0x3e, +0xd0,0x9c,0xb0,0x7c,0x71,0x36,0x1f,0xb5,0xc1,0x7a,0xd4,0x06, +0x1b,0x17,0x3b,0x1f,0x51,0xf3,0x29,0x71,0x9e,0xe0,0xb7,0x59, +0x0e,0x4d,0x7a,0xb2,0x26,0x3b,0xa7,0x2e,0x18,0x91,0xb1,0x48, +0xe0,0x6a,0x51,0xd7,0x93,0x4d,0xa7,0xc9,0x47,0xdf,0x4e,0xf7, +0xd3,0x44,0x5d,0xc1,0xf4,0xd7,0x69,0xaa,0x31,0x23,0x63,0x61, +0xe7,0x7d,0x6e,0x04,0xc5,0x52,0x1b,0x06,0x52,0x1b,0x7a,0x64, +0x65,0x62,0xed,0xe1,0xa2,0xfa,0xa7,0x2c,0xd9,0x69,0xe7,0xb9, +0x54,0x54,0x47,0x46,0x33,0x3c,0x47,0x76,0x47,0x02,0x1a,0x13, +0x01,0xc5,0x67,0x73,0xcd,0x66,0xc8,0x2f,0xcd,0x39,0xe9,0x36, +0x4e,0x5f,0x34,0x27,0x99,0x81,0xb3,0xb0,0x73,0xa7,0x79,0x60, +0x59,0x2c,0xe2,0xa4,0x23,0xab,0x21,0xc4,0xe8,0x97,0xa0,0xc4, +0xcd,0x89,0x6b,0xd0,0x9e,0x4a,0x5c,0x84,0x6c,0x83,0x98,0xb3, +0xae,0xd8,0x2e,0x85,0x92,0x59,0x33,0x2a,0x04,0x3b,0x28,0x50, +0xb8,0x77,0x65,0xc8,0x2b,0x5b,0x68,0x5e,0xc2,0x56,0x64,0xaa, +0x0b,0x1b,0x1c,0xbb,0x48,0x43,0xa0,0x4f,0x4f,0xd9,0x07,0x02, +0x8c,0x1f,0xd5,0xcd,0xd0,0x3d,0xa3,0x50,0xf7,0xcc,0x23,0xdd, +0xb3,0xeb,0x6a,0xda,0x8d,0x6f,0xd0,0x80,0x6c,0x66,0x81,0xb8, +0x84,0x06,0xd0,0x1e,0x7a,0x7b,0xe5,0x0c,0x79,0x28,0x2b,0xe6, +0x7d,0x71,0xe8,0x2b,0xeb,0xda,0x8d,0x9b,0x56,0xaf,0x5f,0x82, +0xfc,0xbe,0xc9,0x23,0x37,0x13,0x12,0x5e,0x9a,0x97,0x01,0xcc, +0x17,0x62,0xe2,0x65,0x0c,0x58,0xcc,0x9f,0x48,0x43,0x1b,0x4d, +0x81,0x5c,0x21,0x72,0x59,0x17,0x68,0x8b,0x13,0xc3,0x45,0x9c, +0x18,0x72,0x2e,0x1f,0x26,0x1d,0x91,0xb6,0x1a,0xb9,0xb8,0x31, +0x7c,0xcb,0xf5,0x65,0xb0,0xf7,0xae,0x7c,0xa8,0x0a,0x34,0x37, +0xd2,0x03,0x58,0xb8,0x27,0x16,0x76,0x33,0x7e,0x34,0xd5,0xe0, +0x18,0xcd,0x92,0xa4,0x0e,0xfa,0xa0,0x3a,0x40,0xe3,0x71,0xde, +0x02,0xeb,0xdc,0xc4,0xe5,0xc9,0x4e,0xbb,0xcf,0xa7,0x65,0xdf, +0xb4,0x5d,0x0f,0x42,0x8d,0xd0,0x00,0x35,0x42,0x5b,0x1c,0x47, +0xb4,0x3d,0xbf,0xcd,0xbd,0x72,0xf8,0xba,0x75,0x3d,0x62,0xc7, +0xf9,0x78,0xa5,0x5a,0xf3,0x32,0x6b,0x66,0x9d,0x76,0x38,0xed, +0x15,0x70,0xe1,0x1e,0xc3,0x1c,0xa2,0x1e,0xc0,0x1a,0x74,0x61, +0x50,0x09,0xff,0xba,0x18,0x62,0x3d,0x05,0x4d,0x04,0xd7,0x78, +0x16,0xa2,0x2e,0x1a,0x62,0xdd,0x10,0xa2,0x7a,0xca,0x28,0x3f, +0x7c,0xdd,0x92,0xc2,0xc7,0xf1,0xb5,0x41,0x4a,0x4f,0xe1,0xf9, +0x7a,0xf9,0xe4,0xe8,0xaf,0x2a,0x1a,0xdb,0x53,0xff,0xd5,0x70, +0x4d,0xf9,0x1f,0xa6,0x26,0x77,0x46,0xa2,0x1a,0x53,0x93,0xbf, +0xce,0xa5,0x26,0xaf,0x37,0xcc,0x40,0x67,0xb9,0x4d,0x05,0x94, +0xbe,0x87,0x52,0xe5,0xa8,0x5c,0x53,0xdd,0xd2,0xf9,0xfa,0xb2, +0x79,0xb5,0x97,0x87,0xf0,0x1c,0x8f,0xc6,0xa1,0xea,0x62,0x8a, +0x64,0x39,0x90,0x7f,0x3a,0xd1,0x26,0x87,0xc3,0x62,0x4a,0xff, +0x63,0x44,0xfd,0x86,0x73,0xa8,0x1d,0x27,0x6b,0x43,0x6d,0xe3, +0x47,0xb5,0xa1,0x98,0xdf,0x4f,0xe1,0x6f,0x92,0xc0,0x64,0xa7, +0x0f,0x50,0x02,0x1f,0xd8,0xbe,0x0f,0x23,0x09,0x7c,0xad,0x11, +0x72,0x19,0x49,0x60,0xf1,0xf3,0x73,0xc5,0x24,0x81,0x1b,0x51, +0x02,0x93,0x70,0xa6,0x5c,0xe9,0x71,0xe9,0x2c,0xb4,0x93,0x49, +0x4b,0x50,0x02,0x69,0x26,0x81,0xb1,0xb4,0x79,0x68,0x23,0x2f, +0xd0,0x97,0x46,0x04,0x40,0xcd,0x78,0x59,0xb3,0x81,0xa8,0x71, +0x9b,0xed,0x42,0xef,0x04,0x22,0x90,0xdf,0x9a,0xcb,0xd0,0x05, +0x5b,0xe6,0xbf,0xc2,0x6f,0x1b,0xcf,0x23,0x27,0x87,0x21,0x27, +0xdb,0x46,0x07,0x81,0x37,0x0a,0x64,0xd6,0xf0,0xdb,0xc5,0x67, +0x73,0xf6,0xe5,0x1a,0xa2,0x84,0x43,0xf0,0x1a,0x09,0x25,0x1d, +0xaf,0xb6,0xd5,0x71,0xbc,0x9a,0x33,0xd4,0xec,0x29,0x6b,0x42, +0x45,0xc2,0xbb,0x97,0xf0,0xc6,0x1b,0x78,0x63,0x17,0x6c,0x9e, +0x9f,0x3c,0x7f,0x01,0xce,0xd6,0x3b,0xb2,0x52,0x2f,0xe1,0x44, +0x15,0xd6,0xdb,0x02,0x3e,0xa3,0xba,0x82,0x17,0xb4,0x44,0xa4, +0x45,0xf7,0x33,0xf2,0xf6,0x5f,0xb6,0xae,0x33,0x91,0x1e,0x57, +0xf3,0x8c,0xc4,0x96,0xee,0xec,0xbc,0x3a,0xbf,0x8d,0xb5,0x60, +0x2a,0xad,0x08,0x27,0x64,0x24,0x7d,0xb5,0xa8,0xb3,0x96,0xcd, +0x20,0xd9,0xc4,0x87,0x73,0x8a,0x28,0xed,0xec,0x56,0x14,0xd0, +0x3a,0xeb,0x71,0xda,0x25,0x01,0x6d,0x84,0xc2,0x84,0xe6,0xdc, +0xd6,0x9d,0xd8,0xc4,0x59,0x11,0x0d,0x8d,0x26,0x36,0x82,0x5a, +0xf1,0xb2,0x16,0xfa,0x88,0xbb,0x89,0x9c,0x30,0x14,0xd5,0x96, +0x32,0x48,0x54,0xaf,0xc0,0xa8,0x79,0x28,0x4e,0x61,0x28,0x4e, +0xd6,0xd1,0x21,0xd8,0xbc,0x86,0xd4,0x3c,0xd4,0x37,0xfb,0x72, +0xa8,0x79,0xab,0x51,0x53,0xc8,0x6d,0x24,0x59,0x7a,0x3b,0x7d, +0x2a,0xdf,0xb6,0x69,0xfb,0xca,0xf7,0x17,0xc9,0x4b,0xd0,0xdf, +0xe3,0x44,0x1e,0x9c,0x92,0x51,0xb3,0xd3,0xe6,0xae,0x99,0x3d, +0xdf,0x3a,0x7d,0xd6,0xd2,0x14,0xa7,0xf4,0x0b,0xef,0xe5,0x14, +0xdb,0x0e,0x75,0x7b,0x13,0x15,0x7a,0x4c,0x27,0xd8,0x0b,0x5e, +0x5e,0x27,0x7a,0xcb,0x80,0x7b,0x8f,0x72,0xb3,0x2f,0x5b,0x6f, +0xa8,0x56,0x5c,0x4e,0x0d,0x82,0xa9,0x74,0xaa,0x5b,0x6b,0x3d, +0x4b,0x58,0xd3,0x59,0x01,0x25,0xce,0x73,0x0b,0x02,0x37,0xa5, +0x45,0x97,0x64,0x5f,0xb7,0xd8,0xfb,0x3a,0x92,0x20,0xb4,0xd5, +0x73,0xf8,0xf6,0x8d,0xef,0xaf,0xdc,0xbe,0x44,0xf8,0x75,0x62, +0x0b,0xac,0x53,0x09,0xfd,0xa1,0x63,0xef,0x9d,0xce,0xb5,0x7d, +0xd2,0x7d,0x9a,0xc5,0x2f,0x26,0x06,0xb6,0x34,0xf0,0x3a,0xd6, +0x57,0x7a,0xe7,0xfc,0x78,0xfa,0xd2,0x39,0xeb,0x4d,0x42,0xe4, +0x1e,0x04,0xee,0xb4,0x35,0xf6,0x4d,0x78,0xe3,0x05,0x5a,0xb9, +0xad,0xf4,0xc3,0xfc,0xfd,0xb4,0xf7,0x57,0xbd,0xbf,0x58,0x9e, +0x86,0x56,0x1e,0x27,0x72,0xe1,0x80,0x6c,0x30,0x3b,0x75,0xee, +0xaa,0x39,0x89,0xd6,0x69,0xb3,0x93,0x10,0xdf,0x89,0xf7,0x32, +0x04,0xf3,0x65,0x50,0x21,0xae,0x07,0x6c,0xc5,0x99,0xe5,0x78, +0x1f,0x29,0xf2,0x1e,0x9e,0xb9,0x94,0x69,0x2d,0xa4,0x30,0x36, +0x5b,0x10,0xd8,0xcc,0xdc,0x90,0xe5,0x89,0x15,0x84,0xc7,0x43, +0x76,0x0b,0x12,0xcb,0x88,0x8e,0x2d,0xc9,0xbe,0x6a,0x51,0xa5, +0x30,0x0e,0x36,0xb3,0xd2,0xda,0x0c,0x5e,0xb7,0xc7,0xb0,0xf2, +0x44,0x0a,0x2f,0x1f,0xd8,0x6b,0xaa,0xc1,0xea,0x03,0x56,0x3a, +0x16,0x1b,0xec,0x28,0x5b,0x9e,0x48,0x41,0x0d,0x60,0x45,0x80, +0x96,0xbb,0x4b,0x10,0xb8,0x94,0x67,0x48,0x10,0x1e,0x49,0xec, +0x36,0x2c,0xe0,0xd2,0x35,0x08,0x5c,0x5f,0xc9,0x82,0xf0,0x6f, +0x0c,0x8e,0x7c,0x08,0xaf,0x54,0x2c,0xa1,0x04,0x0e,0x19,0x9b, +0x7f,0xbf,0x97,0xf5,0x78,0x2a,0xaa,0xb0,0xd4,0x25,0x32,0x0e, +0x3a,0x7b,0x64,0x9f,0x87,0x18,0xd9,0x72,0xde,0x66,0x43,0xb1, +0xcc,0x99,0x4f,0xf6,0xec,0xa9,0xb4,0xb3,0x39,0xb6,0xac,0xa0, +0xa1,0x16,0x60,0x09,0x21,0x68,0x14,0xd6,0xf6,0xca,0x1e,0xfc, +0x7d,0x61,0x9e,0xf0,0x9f,0xc9,0x56,0x74,0xe9,0xb4,0xb2,0xb3, +0xb1,0x41,0xd8,0x71,0xf8,0x9c,0x73,0x24,0x62,0x7c,0x24,0xac, +0x53,0xd0,0x80,0x11,0x2e,0x53,0x99,0x74,0x09,0x05,0x57,0x51, +0x63,0x15,0x93,0x53,0xd2,0xf6,0xc8,0xa6,0xde,0x2a,0x14,0x42, +0xf5,0x0f,0x98,0xea,0x80,0x60,0xe7,0xf9,0x46,0xd4,0x4b,0x9b, +0x96,0xa0,0xa2,0xf0,0xf1,0x40,0x85,0x16,0x29,0xeb,0xcc,0x4b, +0x13,0xee,0xbb,0xd9,0xf1,0x73,0xb6,0xe3,0x21,0xe3,0x2c,0x81, +0xfd,0x63,0xa0,0xb3,0xaf,0xd7,0xc5,0xc1,0xdf,0xe6,0xe5,0x9d, +0x39,0x72,0xd6,0x2a,0xf3,0x61,0x8a,0x81,0xb3,0x56,0x28,0xd4, +0xb1,0xac,0xe8,0xd8,0x6e,0x65,0x07,0x7d,0x4c,0x59,0x1a,0xca, +0x28,0x06,0x4f,0xe0,0x16,0xd7,0xe7,0xc8,0x37,0xd4,0xe5,0x7e, +0xfa,0x42,0x3f,0x35,0x87,0x96,0xc4,0xf4,0x4f,0xb3,0xd5,0x06, +0x0a,0xaf,0xfe,0x13,0x2b,0x3c,0x20,0x34,0xb4,0x4e,0xea,0xb5, +0x13,0xa2,0x0f,0x93,0x23,0x20,0x8e,0xf7,0xef,0xdb,0x1f,0x1a, +0x80,0x7f,0x9f,0x0b,0x17,0xbc,0xb6,0x59,0x2e,0xe5,0x9c,0x97, +0xfe,0xb2,0x41,0xf6,0x80,0x7e,0x5e,0x6e,0x25,0x49,0xe6,0xce, +0xe1,0xea,0xf2,0x2b,0x23,0x47,0x56,0xb4,0xac,0xae,0x46,0x19, +0x1f,0x51,0x73,0x20,0x9d,0xaf,0xdb,0x98,0xba,0x6a,0xc3,0x52, +0xd9,0x1e,0x5a,0x7b,0xe0,0x34,0xda,0x46,0x06,0x2e,0xd8,0x3c, +0x67,0x75,0x62,0xa2,0x75,0xfe,0x42,0x52,0x02,0x27,0xd3,0x4e, +0x67,0xdb,0xce,0x84,0x8d,0xb2,0x80,0x65,0x08,0xed,0xf0,0x77, +0xf3,0x3a,0x3f,0xac,0xf8,0xc6,0xf9,0xac,0xcf,0x2e,0x58,0x4f, +0xc2,0x17,0x5c,0x76,0x08,0x87,0x2e,0xfa,0x8f,0x2c,0xc6,0x49, +0x86,0xc9,0x38,0x73,0x9f,0xf1,0xe5,0xbe,0x0b,0xc3,0x97,0x74, +0x5f,0x66,0x75,0x2b,0xa9,0xa0,0x77,0xe7,0xb2,0x16,0x7c,0x71, +0xbb,0xa4,0x55,0x18,0x1c,0x84,0x5a,0xf2,0x83,0x70,0x7b,0x8d, +0x42,0x0d,0xa4,0xde,0x8c,0xaf,0x5f,0x9f,0xba,0x7a,0xc3,0x32, +0xd9,0x02,0x3c,0x3d,0xb2,0x32,0xa0,0xb1,0xac,0x91,0x98,0x36, +0x77,0x95,0xa9,0x7b,0x50,0xbf,0xa5,0xa7,0x1d,0x3b,0x67,0x4b, +0x0f,0x7f,0xc3,0xd2,0x70,0x48,0x2c,0xd4,0xf7,0xf3,0xca,0x1a, +0x76,0x27,0x3b,0xeb,0xf4,0xc1,0x33,0x56,0xb9,0x18,0xde,0xd1, +0xd1,0x1b,0xac,0x19,0x81,0xbd,0xb6,0x3c,0x2a,0x62,0x55,0x0f, +0xcf,0xf5,0x71,0x4e,0xb2,0xbb,0x8c,0xc4,0xca,0xdd,0xbc,0xd1, +0xfa,0x42,0x8f,0xeb,0x19,0xd3,0x4f,0xd1,0xa7,0xad,0x5a,0xa8, +0x9a,0xfa,0xab,0x00,0xfe,0x9b,0xbe,0x4a,0x8e,0x56,0xf7,0xfa, +0xe9,0xeb,0x1a,0xa9,0x55,0xd0,0x0a,0x67,0x88,0x53,0x97,0xd0, +0x01,0xa5,0xd4,0x61,0x25,0xb5,0xd1,0xdb,0x2e,0x94,0x89,0x48, +0xe6,0x8a,0xdb,0xfa,0x05,0x8b,0xca,0x84,0xb9,0x42,0x43,0x57, +0x72,0xab,0x79,0x34,0xd7,0x76,0x79,0x41,0xdd,0xd0,0xee,0xc4, +0x73,0xbd,0x13,0xf4,0x50,0x9d,0x34,0x6a,0x54,0x2c,0x35,0x6a, +0xdf,0x6d,0xfd,0xcf,0x30,0xf8,0x00,0x1b,0xb5,0x3e,0x5c,0x1d, +0xa1,0x46,0xc9,0x3b,0xc2,0x3a,0x89,0xc1,0x24,0xde,0x7f,0x61, +0x54,0x52,0xe8,0x52,0x67,0x59,0x23,0x02,0xb8,0x65,0x45,0x74, +0xe4,0x4a,0xa4,0x31,0x9e,0x68,0x8c,0x48,0xdb,0x2d,0xab,0x79, +0x7f,0x0b,0x53,0x64,0x3f,0x86,0x78,0x86,0x71,0x47,0xad,0x61, +0x26,0x15,0x84,0xe3,0x16,0x55,0x2e,0xdf,0x2d,0x4f,0x1e,0x3a, +0x01,0x0e,0x1b,0x8c,0x85,0x0c,0xdd,0xd3,0x64,0xe8,0x38,0xd9, +0x72,0xfe,0xe6,0xb9,0xab,0xc8,0xea,0x7f,0x85,0x97,0xfb,0x87, +0x40,0x37,0x07,0x2f,0xe7,0x13,0x2f,0x1b,0x5b,0xd6,0x45,0x95, +0xd9,0x2c,0x68,0x61,0xb3,0xc5,0x0d,0x70,0x30,0x56,0x31,0x35, +0x59,0x0f,0xe6,0xa9,0x1b,0x0c,0x26,0x8d,0x35,0x99,0x34,0x8a, +0x98,0x74,0xde,0x4a,0x9c,0xdf,0x67,0x1b,0xc2,0x91,0x9e,0x46, +0xdc,0x1a,0x6c,0x72,0x6b,0x17,0x93,0x5b,0xf3,0xcf,0x1c,0x39, +0x67,0x95,0x77,0x61,0x2a,0x84,0x61,0xb7,0x87,0x02,0x17,0xd5, +0xeb,0x94,0xe5,0x26,0xed,0xcf,0xd4,0x5b,0xf2,0xac,0xa8,0xfb, +0x0d,0xfb,0x2b,0x14,0x2a,0x5a,0x96,0x77,0xc6,0x4a,0x4b,0xf3, +0x18,0xfc,0xa1,0x3a,0x0a,0xaf,0xf1,0x4c,0xd4,0x16,0x94,0xb0, +0x54,0xf8,0xb4,0x47,0x9f,0x7a,0x23,0x57,0x2d,0xe4,0x00,0xbd, +0x05,0x8e,0x4b,0x95,0xb7,0x91,0x18,0x99,0x2f,0xaa,0x7e,0x83, +0x9e,0x58,0x28,0xb8,0x9c,0x66,0x1d,0x3d,0x37,0xf4,0x2c,0x62, +0x05,0x81,0x1c,0x2a,0xa9,0x96,0xb2,0x52,0x08,0x9c,0xc4,0x41, +0xda,0x20,0x1f,0x6b,0x21,0x74,0xb4,0x53,0x4b,0x69,0xa1,0x75, +0x3c,0xe1,0xf2,0x06,0x35,0xc2,0x4f,0x58,0xa7,0x31,0x78,0x93, +0xc8,0x21,0xd9,0x11,0xd5,0xeb,0xb2,0x08,0x98,0x65,0xa6,0x39, +0x55,0x93,0xe4,0x3d,0xe1,0x9a,0xee,0x48,0x6a,0x9a,0x40,0xf7, +0x0f,0xe8,0x1e,0x3c,0xdb,0x09,0x9f,0xdd,0x4c,0x8e,0x74,0xc8, +0x49,0x20,0x04,0xbe,0x94,0x93,0x40,0x19,0x68,0xc8,0x89,0xde, +0x42,0x7f,0x9b,0x27,0x27,0x6f,0xdf,0xb2,0x63,0xf5,0x8e,0x05, +0x56,0x54,0xf6,0x7d,0x51,0x79,0x9e,0x92,0x91,0x73,0xd2,0xe6, +0xac,0x99,0x9d,0x88,0xba,0x1e,0x95,0xe7,0xd1,0xf3,0xa4,0xeb, +0x0f,0x76,0x9b,0x88,0xb3,0x62,0x4c,0xe7,0x32,0x5d,0xef,0x7b, +0xf7,0xa7,0x4b,0xd9,0xb9,0x56,0x39,0x41,0xb5,0xe0,0x72,0x48, +0x30,0x0c,0x81,0x91,0xe6,0xcf,0x5c,0xfa,0x30,0xd8,0x42,0x3f, +0xcf,0x93,0xd7,0xbc,0xbf,0xf9,0xfd,0x55,0x3b,0x16,0x59,0x51, +0x29,0x37,0x39,0x9e,0x0d,0x07,0xa5,0xef,0x6c,0xe1,0x77,0x83, +0xe5,0xd9,0x3e,0x0e,0x9a,0x66,0xf1,0x8d,0x89,0x85,0x2d,0x7e, +0x5e,0xc7,0xfa,0x49,0xcf,0xec,0x87,0xa7,0x2e,0xa1,0x76,0x18, +0x01,0xab,0x84,0xef,0x38,0xca,0x16,0x30,0x81,0xeb,0x29,0xb0, +0xa8,0x58,0x66,0x19,0x07,0x7e,0xb6,0xd4,0x8f,0xf1,0x35,0x1a, +0xea,0xf7,0xd5,0x3b,0x16,0x21,0xaa,0x96,0x1e,0xc7,0x73,0x48, +0xbf,0xcf,0x4a,0x9d,0xb7,0x6a,0xf6,0x02,0xeb,0xb4,0x59,0x49, +0xc9,0x4e,0x87,0x51,0xbf,0x5f,0xc6,0xf9,0x62,0xaa,0x05,0x2a, +0xc6,0x44,0xc3,0x16,0xf2,0x1d,0xfa,0x92,0x86,0x3f,0x8d,0x1a, +0x1e,0x6d,0x8c,0xed,0x38,0x65,0x84,0x82,0x3b,0xf4,0x32,0x7f, +0x96,0x89,0x6a,0x0f,0x59,0xc9,0x9f,0x0c,0xa6,0xf0,0x27,0xa1, +0x8d,0xa1,0x17,0xfd,0xb7,0xac,0x15,0x69,0xf3,0xe7,0x5c,0x5f, +0x2c,0xc7,0xab,0x82,0x78,0x7d,0x45,0x73,0xb5,0x18,0xda,0xa1, +0x02,0x3a,0x9a,0xaf,0xb6,0x93,0x1b,0x35,0x8e,0xf4,0x78,0x80, +0xb9,0x69,0x3d,0x9f,0x36,0xad,0xf7,0x34,0x42,0x38,0xaa,0x26, +0x91,0x2a,0x5f,0xc0,0x55,0xf7,0xbf,0x43,0xe0,0x94,0x0f,0xbd, +0xfd,0x25,0x44,0x83,0x03,0xe5,0x9f,0x76,0x70,0x76,0xba,0x64, +0xcc,0x4e,0x1f,0x2c,0x96,0xa7,0xa0,0xb1,0x07,0xf6,0xc4,0x01, +0xe9,0x3d,0x8b,0x7a,0x22,0x17,0x7b,0x62,0xba,0xa5,0x3e,0xf5, +0x84,0x3f,0x11,0x5c,0x2f,0xc7,0xec,0x89,0x61,0x14,0xc3,0x5c, +0x91,0x36,0x20,0xf7,0x32,0x7f,0x96,0x99,0xd3,0x4f,0x0d,0xd8, +0xcb,0xa7,0xcf,0x59,0x96,0xec,0xf4,0xd9,0xb1,0xb4,0x13,0x17, +0x6c,0x9f,0x74,0x9d,0x66,0x69,0xd4,0xbf,0xb7,0xf0,0xaa,0x45, +0x47,0x1e,0x79,0xcc,0xda,0x48,0xb9,0xc9,0xad,0x06,0xa9,0xc6, +0xd9,0xa3,0x8d,0xd1,0xe5,0x5b,0xca,0x50,0x3f,0x72,0xf5,0x22, +0x4e,0x7f,0xa1,0x41,0x95,0xa1,0xbc,0xdb,0x86,0xe9,0xd0,0xc6, +0x09,0x7a,0x6a,0xd3,0x65,0x9b,0x6e,0x49,0xc2,0xb9,0x09,0xc3, +0xfe,0xdd,0xc1,0xd7,0xac,0x41,0x16,0x58,0xf5,0x3e,0x8e,0xd5, +0x39,0x08,0x42,0x16,0x48,0x97,0x6d,0x66,0x6f,0x9a,0xbb,0x1a, +0xe7,0xcf,0xa9,0xb3,0xb0,0xbe,0xc3,0x19,0xef,0x65,0xdd,0xb0, +0x1d,0xe8,0x36,0xc9,0x02,0x55,0x63,0x43,0xd1,0x54,0x73,0xa5, +0x19,0xd4,0xeb,0xfa,0xc3,0xcc,0x4b,0x17,0xac,0x7a,0x3c,0x7c, +0x20,0xfc,0x12,0x70,0x2a,0x5b,0xc6,0xe0,0xb4,0xe3,0xbb,0x9c, +0x60,0x15,0x18,0x24,0x53,0x8e,0x95,0x56,0xfa,0x91,0x97,0x93, +0x73,0x4b,0x73,0x72,0xf6,0x37,0x26,0x67,0x63,0xf0,0x8c,0xc9, +0xf9,0x8c,0x63,0x72,0x8e,0x82,0xad,0x3e,0xc2,0xbf,0x90,0xc1, +0x12,0x1e,0xa3,0x57,0x85,0xa8,0x62,0x19,0xa5,0x57,0xbc,0x46, +0x1f,0xe5,0xda,0xf1,0x60,0x9c,0x90,0xdc,0x53,0xb1,0x96,0xe5, +0x0c,0x8e,0x4e,0x65,0x4d,0x60,0xb5,0x70,0xcb,0x65,0xb0,0xe1, +0x17,0xfa,0xf4,0x16,0x83,0x95,0x09,0xed,0xaa,0xf9,0xa1,0x0e, +0xe7,0x4e,0x3d,0xce,0x84,0x49,0xfe,0x2f,0x9f,0xe3,0x70,0x1e, +0x56,0x2e,0xf0,0x86,0xb1,0x5f,0x5f,0x2b,0x96,0x9a,0xe3,0xab, +0xdc,0x1a,0xda,0x8d,0x5b,0x81,0x3e,0xcb,0x7d,0x26,0x9c,0xff, +0xa6,0x09,0x58,0xb9,0xc2,0x74,0x84,0xb2,0x04,0xde,0xfd,0xcd, +0xb1,0x83,0xbf,0x48,0x58,0x47,0xb0,0x72,0xf4,0x9d,0x85,0x77, +0x0b,0x66,0xec,0xcf,0x5f,0x25,0xaa,0xed,0x65,0xc2,0x15,0xc7, +0xe1,0x35,0x1e,0xaf,0x6b,0xdd,0x02,0xfa,0xca,0x7d,0xd9,0x01, +0x9f,0xeb,0x5a,0x3e,0x0e,0x9a,0xf2,0xbd,0xc8,0x0c,0x0a,0x97, +0x0a,0xed,0x0b,0x1c,0x29,0xa4,0x50,0xfe,0x4c,0xc8,0xdf,0x16, +0xee,0xdf,0x32,0xf8,0xe0,0xc5,0x64,0x3a,0x21,0x02,0xcd,0xf1, +0x05,0x7c,0x23,0xa9,0xaa,0x24,0x54,0x7b,0xfe,0x1e,0x97,0xb2, +0x70,0x1e,0xb7,0x91,0xaa,0x9a,0x67,0xa8,0xaa,0x64,0xa7,0x3d, +0x47,0x37,0x9d,0xcc,0xb4,0x9d,0x0c,0x1a,0x63,0x09,0x18,0x10, +0x05,0xdd,0xa1,0x22,0xfa,0x07,0xdf,0xe7,0xe7,0x9d,0x39,0x8a, +0x2c,0xfe,0x15,0xa2,0xa9,0xcf,0x84,0xb3,0x0b,0xed,0xaa,0x3b, +0x26,0x5c,0x33,0x19,0x8e,0xca,0x3d,0x7b,0x09,0x33,0xb7,0xcf, +0x3f,0xe4,0xd0,0x3d,0x5e,0x76,0x37,0xf3,0xb7,0x64,0xc3,0x1c, +0xbe,0x6e,0xfd,0xa6,0xd5,0x1b,0x97,0xa2,0xc5,0x6c,0xf3,0xc8, +0x3a,0x8b,0xe6,0x6a,0xf5,0xc4,0x4d,0x38,0x15,0x2d,0xb2,0xce, +0x5b,0xb8,0x12,0xa7,0xa2,0x23,0x69,0xc7,0xce,0x1a,0x53,0x51, +0xa3,0x21,0x71,0x10,0xe8,0x8f,0x53,0x51,0xf1,0xa5,0x0b,0xa7, +0x3e,0xcb,0xb0,0xa2,0xe3,0x95,0x62,0xa6,0x72,0x71,0x87,0xf8, +0x45,0x10,0x4a,0xd1,0x36,0xd7,0x6e,0x24,0xa7,0x5c,0xf5,0x86, +0x33,0x85,0x32,0xb3,0x7c,0xd7,0xbd,0x6a,0xcf,0xd4,0x34,0xde, +0x5f,0xb6,0x1d,0x58,0xa0,0xdf,0x88,0x50,0x63,0x2d,0x70,0x46, +0xee,0x17,0x56,0xb4,0x56,0xd0,0x43,0x3f,0xc5,0x1a,0x32,0x7b, +0x8f,0x42,0x4d,0x75,0x94,0xa1,0xbc,0x9f,0x6c,0xdb,0xb4,0xa0, +0xa4,0x7e,0x84,0x5a,0x4d,0x30,0xd9,0x7c,0xfd,0xba,0xd4,0xd5, +0xa9,0xcb,0xd0,0x6e,0x75,0xf1,0x38,0x97,0x01,0x0d,0xff,0x32, +0xe8,0x5a,0xe8,0x98,0x22,0x0f,0x6e,0x3a,0x74,0xd2,0x76,0x20, +0x62,0x8a,0xa5,0xed,0xd0,0x7e,0xe0,0xdf,0xca,0xeb,0xdc,0xb0, +0x3b,0x67,0xcf,0x1f,0xfd,0xec,0xa4,0x35,0x5d,0x35,0xe4,0xb2, +0xb5,0xe5,0xf3,0xf5,0x45,0xa9,0xb9,0x9b,0x97,0x66,0x7b,0xbc, +0x43,0xee,0xd6,0x62,0x08,0xc2,0x49,0x28,0x9c,0x41,0x73,0xcb, +0x3d,0x18,0xab,0x9a,0xb3,0x15,0xec,0x57,0x3e,0x50,0xb6,0x7d, +0xad,0x40,0x4f,0x8b,0x50,0xed,0x2d,0x90,0x21,0x37,0xe9,0x4e, +0xec,0x28,0xe8,0x5c,0xd6,0x17,0xd5,0x4e,0xa0,0x65,0x61,0xf9, +0x12,0x27,0xf8,0x9f,0xf4,0x14,0x39,0x50,0x7d,0x39,0x40,0x4f, +0x6d,0xa9,0x52,0x20,0x10,0xf9,0xe7,0xcc,0x45,0xcd,0x0d,0x66, +0xe1,0xcc,0x24,0x6a,0xe9,0x6c,0x1b,0xaa,0x67,0x63,0x96,0x3c, +0x86,0xb3,0x64,0x51,0x6f,0xae,0x77,0x81,0xee,0xaa,0x8b,0xe6, +0xf6,0x02,0x98,0xac,0xce,0x07,0xc8,0xb6,0xa3,0x0b,0xf4,0x93, +0x11,0x6a,0x30,0xe1,0xff,0x58,0xd8,0x04,0x3b,0xaa,0xbc,0x84, +0x35,0x84,0xc9,0x71,0x10,0xcc,0x07,0xf6,0x1e,0x0c,0x4d,0xa0, +0x49,0xfc,0xb9,0x2c,0xaf,0x2d,0x96,0xf3,0xf9,0x67,0x65,0x13, +0xd9,0x24,0x77,0xc8,0x00,0x4a,0x3a,0xab,0xc6,0xc3,0x0a,0x9a, +0xf7,0x56,0x19,0x0c,0x10,0x40,0x0c,0x10,0x2b,0x05,0x32,0x00, +0x99,0x08,0xe6,0x5c,0x75,0x34,0xed,0x64,0x96,0xed,0x14,0x32, +0x80,0x5f,0xff,0x28,0x9c,0xfb,0xaa,0x10,0x03,0x5c,0xce,0x3b, +0x4b,0x0c,0x50,0x04,0xe3,0xf9,0x3b,0xd0,0x0c,0x66,0x2f,0x84, +0x37,0xd1,0x3c,0x10,0x4e,0x4d,0x18,0x5c,0x2f,0x96,0x05,0x96, +0x67,0xeb,0x1f,0x1b,0xa9,0x7c,0x02,0x98,0x2a,0x2a,0xd6,0x8b, +0x2c,0x58,0xcd,0x6b,0xc2,0x7a,0x84,0x51,0xf2,0x8a,0x33,0x0c, +0xa7,0xc8,0xf1,0x7a,0x5f,0x9c,0x22,0x37,0xad,0x4e,0x5b,0x22, +0xa3,0xc1,0xc3,0x1e,0x89,0x6e,0xc8,0xbc,0x4d,0xa6,0xf5,0x48, +0x6e,0xe9,0x87,0x47,0xd2,0x8e,0x9e,0xb1,0x1d,0x0d,0x79,0xc3, +0xd2,0x74,0x00,0x4e,0xc7,0x01,0x5e,0x17,0x86,0x7c,0x7b,0x29, +0xef,0xd4,0x91,0x0c,0xeb,0x44,0xd5,0x8c,0xdf,0x91,0xbe,0x74, +0x5e,0xc7,0x03,0xe3,0xbc,0x0e,0xf5,0x86,0xfc,0x5a,0x2a,0x06, +0x3f,0x0c,0x67,0x6b,0x55,0x24,0x9a,0x20,0x4b,0xd0,0x04,0x29, +0xe8,0xa7,0xaf,0x68,0x84,0xaa,0x94,0x4c,0x90,0xc3,0x68,0x82, +0x88,0xda,0x1d,0x58,0x4f,0xe1,0x1c,0xc7,0xf4,0x8d,0x32,0x53, +0x0b,0x46,0x49,0xc7,0x39,0x32,0xca,0x98,0x23,0x9d,0xef,0x33, +0x35,0x4e,0xfe,0x2e,0x5c,0x87,0x33,0x28,0x79,0x25,0x3d,0x73, +0x7d,0xd5,0xf2,0x4f,0x23,0x3d,0xf3,0x1e,0x9a,0x17,0x2b,0xbd, +0xcc,0xcf,0x8c,0xb4,0x87,0x1a,0x6d,0xe9,0xe6,0xc8,0xcf,0x5c, +0x80,0xcf,0xc6,0xe9,0x6e,0xc2,0xf5,0x4d,0x36,0x41,0x69,0xc2, +0xfa,0x0e,0x93,0xa3,0x20,0x94,0x0f,0xec,0x33,0x98,0xa6,0xbf, +0xde,0x66,0xaf,0xe7,0x9e,0xa5,0xe9,0x2f,0x87,0x7a,0x1d,0x75, +0xdf,0x07,0xa4,0xfb,0x36,0xef,0x58,0xfd,0xfe,0x42,0xab,0xcc, +0x84,0x6e,0x27,0x72,0xe0,0xe8,0x7f,0xe8,0xbe,0x33,0xa6,0xee, +0x9b,0x6c,0xea,0xbe,0xf7,0xa1,0xaa,0xd7,0x09,0xd4,0x7d,0xd7, +0x1e,0x66,0x66,0x1b,0xba,0x6f,0x0b,0x7d,0xb8,0xbe,0x7f,0x57, +0xde,0x97,0x2b,0xcc,0x1f,0xfa,0x70,0x4d,0xaa,0xf0,0x78,0x69, +0x73,0x54,0xbe,0x95,0x49,0x13,0xfa,0x3f,0xb3,0x88,0xea,0x81, +0xac,0x5c,0x19,0xae,0x7e,0x9f,0x66,0xb2,0x16,0x65,0xca,0x70, +0xa3,0xa1,0x0c,0x4d,0xcf,0xc7,0xa1,0x0c,0x7d,0x48,0x17,0x42, +0x05,0x43,0x19,0xce,0x15,0x3e,0xdb,0x18,0x04,0x91,0x67,0x62, +0xff,0x0a,0x07,0x8c,0xe9,0x3d,0x61,0x2b,0x05,0x70,0xb4,0x08, +0x20,0x9d,0xd7,0x50,0x2f,0xd3,0x49,0x87,0xa7,0xb3,0x86,0xfe, +0x65,0x1a,0xcf,0x5f,0xb8,0xe5,0xb3,0xdf,0xe0,0x37,0x63,0x03, +0x42,0x12,0xc3,0x71,0x99,0xca,0x63,0x85,0x9f,0x33,0xbb,0x4a, +0xc7,0x8e,0x9e,0x15,0xd6,0xa1,0x8e,0x52,0x07,0x3f,0xa1,0x20, +0x0d,0x17,0x4b,0xc4,0xa4,0x09,0x83,0xfa,0xd8,0x02,0xe9,0x43, +0x2f,0x7d,0xfc,0xfd,0x2d,0x67,0x42,0x66,0x84,0xf1,0x99,0x3d, +0xac,0x29,0x45,0x6a,0x3c,0x36,0x22,0x35,0xd6,0xf2,0xf9,0x16, +0xe1,0xcd,0x19,0xfa,0x75,0xaf,0xf3,0xed,0x5b,0x71,0x7e,0x5f, +0x20,0x2f,0xc0,0x00,0x8f,0x93,0x79,0x70,0x52,0x46,0xcf,0xde, +0x6c,0xb8,0x88,0xd3,0x66,0x2d,0x33,0x5c,0xc4,0x5c,0x72,0x11, +0xdf,0x20,0x17,0xb1,0x23,0xec,0x01,0x6f,0x32,0x1b,0xfc,0x8a, +0x7f,0xca,0xcd,0xce,0xb7,0x2a,0x57,0xe5,0x6f,0x64,0x12,0x6a, +0xa5,0x9f,0x35,0x66,0x07,0x63,0x6a,0x6f,0x6a,0x4e,0xed,0xbe, +0x8e,0xd9,0x61,0xaa,0x63,0x6a,0x3f,0x9d,0x6f,0xfb,0xb8,0x3b, +0x59,0x0c,0xe8,0x0a,0xd6,0x37,0xe6,0xc9,0x5c,0x9c,0xd8,0xcf, +0x5a,0x55,0x55,0x98,0x4b,0x9f,0xd8,0xfb,0xa1,0x5b,0x41,0xae, +0x64,0x0b,0xfd,0xa0,0xc3,0xe8,0x78,0x7f,0x31,0x19,0x1d,0xad, +0x5e,0x71,0x04,0x5f,0x76,0xaf,0xe9,0x08,0x56,0x34,0xfa,0xb7, +0x22,0x4d,0x63,0x9e,0x79,0x3f,0x9c,0x41,0xc7,0x12,0xe7,0x84, +0xe5,0xc2,0x67,0x3b,0xbb,0xaa,0xde,0xd3,0xca,0x0d,0x98,0x34, +0x64,0x0c,0x9c,0x14,0x4f,0x41,0x43,0xc4,0xb5,0x5f,0xd6,0x33, +0x86,0x8a,0x9c,0xca,0x25,0x65,0x4e,0xea,0xc7,0xdd,0xa6,0x59, +0x1a,0xc4,0xc5,0xc2,0x56,0x7f,0xaf,0xe3,0x7d,0xa5,0xed,0xd2, +0x0f,0x27,0xb3,0x33,0x08,0xd7,0x74,0xca,0xe5,0x53,0x0a,0x93, +0xc9,0x5f,0xb4,0x31,0x18,0x49,0x87,0xa4,0xda,0x01,0xc8,0x5b, +0x74,0xdc,0xda,0x99,0x1a,0xa6,0x3e,0x7e,0x79,0x5b,0x07,0x6f, +0x97,0x31,0xe1,0xf4,0x88,0x0c,0x8d,0x36,0xa6,0xa1,0x71,0x8d, +0x0c,0x8d,0x3e,0x86,0xa1,0x51,0xad,0x0e,0x19,0x1a,0xcb,0x28, +0xab,0x5e,0x6b,0x3d,0x93,0x6f,0xa7,0x4e,0xa3,0x29,0xb5,0x89, +0x69,0x51,0xf8,0x20,0xcf,0xae,0x14,0x7e,0x7e,0x6c,0xba,0x69, +0x5a,0xd5,0x77,0x18,0x14,0xa7,0xb3,0xb1,0xa3,0x5c,0x61,0x16, +0x37,0x5c,0xcb,0xc3,0x94,0x60,0x0f,0x6b,0x40,0xfb,0xc0,0x4b, +0xd8,0x66,0x93,0xb9,0x3d,0x09,0x8e,0xf2,0x8d,0xc6,0xe7,0x39, +0xd3,0xdc,0xce,0x42,0x73,0xbb,0xd5,0xfc,0x2d,0x73,0x57,0xcd, +0x4b,0x44,0x0d,0x40,0xf3,0xce,0x99,0xb4,0x8c,0x5c,0xd3,0xe6, +0xae,0x9a,0x10,0x0c,0x5d,0xcb,0xfc,0xc7,0x8b,0xe9,0xd9,0x56, +0xf8,0x10,0xbe,0xa3,0xb4,0xd8,0xa8,0x5d,0x4e,0x14,0xeb,0x27, +0x2c,0xe8,0xb4,0xbd,0x2b,0xac,0x6f,0xd3,0xa9,0x08,0x45,0x4c, +0xc5,0xa2,0xe9,0xa9,0xaf,0x83,0x95,0x77,0xe5,0x65,0xf5,0xa5, +0xe6,0x46,0x07,0xae,0xf6,0x33,0x3e,0x07,0xbc,0xfc,0xa6,0x1b, +0x44,0x4b,0x72,0x7d,0x1b,0xa0,0x57,0x4a,0x4b,0x72,0x8f,0x64, +0xc5,0xfc,0x2f,0x8e,0x7c,0x6d,0x5d,0x8b,0xfa,0x68,0x7d,0x92, +0x1c,0x62,0x7e,0x1a,0x18,0x22,0x53,0x16,0x38,0xbe,0x33,0x51, +0x62,0x6c,0xf5,0x3a,0x5c,0xe0,0x72,0x00,0xf4,0xbe,0x78,0x1e, +0xfa,0xcb,0x1e,0x89,0x5b,0x84,0x7f,0x3f,0x76,0xdd,0x96,0xd7, +0x9d,0x3e,0x34,0x25,0x74,0x85,0x8e,0xd0,0xc0,0x2b,0x7b,0xc8, +0x77,0xe6,0x87,0xa6,0x0d,0x8e,0x0f,0x4d,0x15,0xe0,0xc7,0xf2, +0xd4,0xd9,0xa8,0x64,0x7e,0xe1,0x72,0x20,0x0c,0x34,0x10,0xc4, +0xd3,0x22,0x5c,0x69,0x21,0x4b,0xa1,0x15,0xb8,0x8b,0xd7,0x6d, +0x57,0xbb,0x3b,0xbe,0x38,0x75,0x84,0xc6,0x84,0xe7,0xeb,0xfc, +0x2b,0xb4,0xbe,0x97,0x6a,0xac,0xd4,0x24,0x52,0x00,0xc9,0xa2, +0xee,0x90,0xac,0x1a,0xd1,0xc1,0x2a,0xea,0x75,0x39,0x9e,0x48, +0x89,0x33,0x30,0x85,0x25,0x6e,0x31,0x30,0x89,0xfa,0x3d,0x19, +0xd4,0xc7,0xb2,0xdf,0x7e,0x9e,0x9f,0x7b,0xf8,0xb2,0x75,0xc3, +0xc6,0xcd,0xb4,0x50,0xb6,0x4c,0x9d,0xa2,0x64,0xdc,0x39,0x54, +0x2a,0x9a,0xea,0x0f,0xbf,0x70,0x01,0x12,0x64,0x97,0xf9,0x9b, +0xe7,0xaf,0xa6,0x45,0x40,0x9a,0xe3,0x77,0x67,0xa4,0x65,0xe6, +0xdb,0x2e,0x75,0x1f,0x64,0x81,0xda,0xfd,0x83,0xa1,0x13,0xda, +0xda,0x97,0x06,0x7f,0x57,0x9c,0x9f,0xfd,0xf2,0x43,0xee,0x3c, +0x75,0x83,0x8e,0x8a,0xac,0x7a,0x18,0x55,0x5c,0xb1,0xd0,0xda, +0xe3,0x78,0x3e,0x65,0xf2,0x7d,0xc8,0xb0,0xbf,0xa0,0xb4,0xde, +0xd8,0x3b,0x27,0xca,0x48,0x4a,0x90,0x61,0xf3,0xb7,0x94,0x35, +0xee,0x5c,0x5a,0xe6,0x35,0x5b,0x6e,0xf7,0xfe,0x68,0xc5,0xf7, +0xef,0x86,0x98,0xcd,0x4e,0x32,0x09,0x34,0x57,0xf2,0xda,0xab, +0x3c,0x33,0x11,0x38,0xe2,0x38,0x44,0x38,0x62,0x8c,0x66,0x85, +0x24,0x96,0xe3,0x38,0x9b,0x96,0x79,0xd5,0x96,0xd3,0xdd,0xf1, +0x99,0xb9,0x13,0xf8,0x52,0x23,0xef,0x21,0x8e,0xfc,0xb2,0x46, +0xea,0x56,0xfa,0x34,0xa0,0xbe,0x63,0x6a,0x81,0x3c,0x24,0x9c, +0x5a,0x33,0x44,0x43,0xdf,0xd6,0x10,0x4f,0x14,0xe1,0xc1,0xb9, +0xdc,0xfc,0x54,0x6e,0x7c,0xbe,0xc9,0xef,0xee,0xf8,0xc8,0xd6, +0x09,0x1a,0x12,0x39,0xf7,0xf3,0x8d,0x8f,0x6c,0xfb,0x54,0x23, +0xf3,0xe0,0x1a,0xb5,0x50,0x8e,0xe6,0x1b,0x52,0x85,0xfb,0x67, +0x0c,0x7b,0x77,0xab,0xf0,0xf3,0x67,0xb9,0xdd,0x1d,0x1f,0xe7, +0x3b,0x89,0xea,0x1f,0xb1,0x7c,0xab,0x1e,0x6a,0x2c,0x2d,0x9a, +0x49,0xc6,0xb1,0x67,0xdf,0x25,0xc2,0x7b,0x3a,0xc6,0xa3,0xfc, +0xdb,0xbc,0x10,0xfb,0x99,0xec,0x0b,0x4b,0x4b,0xfb,0xa0,0x29, +0x36,0x93,0x15,0x42,0xba,0x91,0x50,0x1c,0xe1,0xc7,0x0a,0xeb, +0x1c,0x54,0x07,0x70,0xef,0x0f,0x26,0x7c,0x17,0xb1,0x6d,0xa2, +0x56,0x11,0x33,0xc3,0x3e,0xb8,0x9c,0x61,0x64,0x1a,0x9a,0x2b, +0xb9,0x66,0x0f,0x9d,0x25,0x9c,0x7e,0x65,0xf3,0xe0,0x6b,0x63, +0x79,0xf7,0x8e,0x7c,0xa8,0x6e,0xa1,0x63,0xbc,0x52,0x3f,0xc5, +0xe5,0xd4,0x10,0xb5,0xfa,0x8e,0x7c,0x4b,0x72,0x34,0x23,0xd3, +0x70,0x72,0xd5,0x2a,0x30,0xd5,0x11,0x7c,0x84,0x73,0x1d,0xa6, +0x7f,0x08,0x61,0x7c,0xf1,0x12,0xe1,0xe6,0xc3,0xc0,0x57,0xfa, +0x2c,0xc4,0x91,0x46,0x7a,0xdc,0x84,0xaf,0x9d,0xf5,0x10,0x35, +0x29,0xdb,0xf7,0x0d,0xa6,0xfa,0xb4,0x29,0x79,0x97,0xe1,0xd4, +0x7d,0xfd,0xc5,0x1c,0xf6,0xe2,0x22,0xb3,0x87,0x76,0x2b,0x1d, +0xc2,0xee,0xaa,0xb1,0x5c,0x9f,0x21,0xe7,0xaa,0xcb,0xb1,0xfa, +0x7c,0x51,0xdd,0x13,0x41,0x5b,0x23,0xe8,0x74,0x02,0x4d,0x54, +0xc7,0xf5,0xca,0xcc,0x8c,0xb3,0xe0,0xf2,0xf5,0x10,0x35,0xe3, +0x8e,0x7c,0x1d,0x89,0x54,0x7d,0x66,0x89,0x9a,0xdb,0xb0,0x19, +0xa5,0xac,0x83,0xa8,0x69,0x63,0x48,0xde,0x71,0x2e,0xdf,0x09, +0x51,0x5b,0x29,0x47,0x11,0x92,0xa7,0xfa,0x74,0xc0,0xf2,0x47, +0x51,0x44,0x6b,0x54,0x66,0x3f,0x3d,0x90,0x15,0xfe,0x6e,0xf1, +0x0d,0xc4,0x7b,0xa3,0x9c,0x0d,0xe7,0xf1,0xfd,0xe2,0xa1,0x3e, +0xf8,0xf6,0xcb,0xcf,0xf7,0xda,0x6e,0xb9,0x7c,0x29,0x4f,0xfa, +0xca,0xfa,0x97,0x7a,0xf5,0xf4,0xc2,0x69,0x39,0x8b,0xa9,0xa9, +0x77,0xe4,0xf8,0xd2,0x6f,0x58,0x30,0x52,0x26,0x9b,0xc2,0xbe, +0x63,0x94,0xd2,0x67,0x38,0x97,0x6d,0x96,0x6a,0x7d,0xdf,0x9d, +0x21,0x5c,0xc6,0xb2,0x5b,0xf9,0x37,0x8f,0xcd,0x10,0x6e,0x03, +0x98,0xf0,0xda,0xc5,0x54,0x03,0xbe,0x38,0x89,0xbe,0x9a,0x5c, +0xdb,0x74,0xf3,0x27,0x9b,0xac,0x18,0x01,0x55,0x2c,0xe0,0x3f, +0xbb,0x63,0x3f,0x54,0xb8,0x09,0xd2,0x92,0xb4,0x79,0xde,0xda, +0x05,0x0b,0xad,0x4b,0x96,0x22,0xc8,0xf6,0xcb,0xa9,0xb7,0x1e, +0xdb,0x9e,0x45,0xf8,0x59,0xa0,0xef,0xa4,0x6e,0xad,0xa1,0xad, +0x57,0xc6,0xd0,0x8c,0xef,0x0e,0x5c,0xd9,0x75,0xc3,0x9a,0xbc, +0x76,0xfd,0xaa,0x35,0x2b,0xfe,0x80,0x71,0x1e,0xa7,0xee,0x1f, +0xc8,0xdf,0x7d,0x6d,0x4d,0xca,0xfa,0xd5,0xc9,0xcb,0xff,0x84, +0x31,0x1e,0x19,0x19,0x0d,0x64,0xff,0xa4,0xcd,0xf3,0xd7,0xd1, +0x2a,0x7d,0xc9,0x62,0x73,0xcb,0x40,0x35,0x39,0x31,0x52,0x2d, +0xbd,0x25,0xa7,0xc8,0x6a,0x30,0xb7,0x40,0xd4,0xfa,0x9d,0xa1, +0x89,0x74,0x8b,0x32,0x97,0xbb,0xd0,0x69,0x38,0xd5,0xe0,0xbe, +0x91,0x55,0xfb,0x23,0x04,0xdc,0x12,0x69,0xd7,0x6e,0x69,0xb0, +0x44,0x66,0x08,0x17,0x74,0x53,0x3a,0x23,0xc2,0x00,0xd9,0x68, +0xc9,0xe6,0xc4,0x75,0xe0,0x49,0xeb,0xb5,0x17,0x0b,0x6c,0xc5, +0x11,0xc1,0x16,0xa8,0x34,0xab,0x47,0xbf,0x76,0x5e,0xfd,0x1e, +0x26,0xa5,0xcd,0x5f,0xbb,0x60,0x11,0x12,0x8c,0xc6,0xf1,0x7b, +0xe7,0x36,0x9e,0xbf,0x69,0x2b,0x8a,0x08,0x13,0x2e,0x39,0x0c, +0xdc,0xbc,0xce,0x0c,0x3d,0x77,0x73,0xff,0xf9,0xdd,0x17,0x44, +0xf5,0xcf,0xb1,0x42,0x8f,0xd3,0x97,0x0f,0x9e,0xdb,0x75,0xde, +0xb9,0xa3,0x9a,0xae,0x8f,0x63,0x2f,0x4e,0xa1,0x27,0x23,0x3b, +0xda,0x6b,0xb0,0x70,0x95,0x69,0xb7,0x33,0x93,0xd4,0x77,0x90, +0x82,0x71,0x91,0x6a,0xfe,0x2d,0x39,0x19,0xa9,0x9a,0x55,0x40, +0x9f,0x5e,0x43,0xa1,0x90,0xab,0x35,0xec,0x19,0xb4,0xf3,0x38, +0x9d,0x7b,0x30,0x63,0xd7,0x39,0x67,0x68,0xa0,0xf6,0xeb,0x0d, +0x1c,0x45,0x26,0x61,0x91,0x11,0x91,0x6a,0xec,0x2d,0x39,0x0c, +0x8b,0x8c,0x2d,0xa0,0x2d,0x01,0xa1,0x90,0x2b,0x9c,0x56,0x32, +0x29,0xe1,0x37,0xf9,0x17,0x76,0xfb,0x0f,0x4c,0xf6,0xe1,0x88, +0xc0,0x2c,0x6f,0x45,0x6c,0xce,0xfa,0x19,0xd5,0x44,0x6e,0xff, +0x77,0xb5,0xd3,0x6e,0xc9,0xd1,0x88,0x63,0x7e,0x81,0xbe,0xed, +0xbf,0x55,0x2b,0xfd,0x60,0xba,0x5c,0x8d,0xe8,0x7e,0x64,0xc0, +0x48,0x16,0x44,0xf5,0x68,0xa6,0xde,0x2f,0x92,0x75,0x84,0x7b, +0x43,0x06,0x96,0xff,0x22,0x05,0xf6,0xa9,0x28,0x7b,0x08,0x00, +0x01,0x0c,0x6e,0x81,0xf3,0xff,0x3b,0x87,0x19,0xa9,0xdb,0xe0, +0x18,0x34,0x8a,0x95,0x8d,0xd4,0x16,0xda,0x8c,0x08,0x37,0x94, +0x8d,0x27,0x11,0x7f,0x7c,0x88,0x2c,0xf4,0xa3,0x4d,0x56,0x0e, +0x05,0x27,0x0b,0x34,0x9a,0xd2,0x21,0x0a,0x2a,0x7b,0x85,0x4b, +0xb7,0xc5,0x5b,0xe7,0xac,0xc1,0x11,0x49,0x5a,0xb6,0x22,0xd9, +0x69,0x87,0xc1,0x42,0x7f,0x86,0xfa,0x58,0x20,0xe1,0xf5,0xae, +0x81,0xd0,0xd1,0x2b,0x73,0xe8,0xc5,0x87,0xe9,0x97,0x77,0xdf, +0xb2,0x26,0xaf,0x43,0x96,0x59,0x46,0xe7,0xb3,0x7a,0x9c,0xff, +0xea,0xc8,0xd5,0x8f,0xae,0x27,0xaf,0x5b,0xb7,0x2a,0x65,0xb9, +0xac,0x01,0x6f,0xd0,0x12,0x9c,0x9b,0x1c,0xbe,0x64,0xcb,0xdc, +0x14,0x83,0x8b,0xc6,0x9a,0xbb,0xe1,0x3d,0x7b,0x4a,0x4f,0x48, +0x33,0x12,0x91,0x0f,0x53,0xd3,0x79,0xd6,0x95,0xf4,0x73,0x1f, +0x65,0xa5,0xac,0x5b,0xbb,0x7a,0xed,0x32,0x59,0x1d,0x3a,0x79, +0x64,0x89,0x6a,0x51,0xec,0xd1,0xa2,0x2d,0xf3,0xcb,0xab,0xdf, +0x76,0x26,0x15,0x95,0x62,0x61,0x68,0x0f,0x0b,0x78,0x8d,0x8b, +0x6a,0x00,0xd5,0xbc,0xb2,0x86,0x5e,0xbc,0x79,0x24,0x6b,0xef, +0x05,0x6b,0xca,0xba,0x75,0xab,0x53,0x96,0x39,0xc3,0x57,0x55, +0xf4,0x64,0xb3,0xbb,0x8a,0x69,0x29,0x68,0x2b,0x83,0x89,0xe0, +0x19,0x27,0x3d,0x35,0xd8,0x3e,0x80,0x8b,0x2a,0x68,0x9a,0x05, +0x11,0x39,0xae,0xb2,0xb5,0xbe,0x8e,0x65,0x6e,0xba,0x70,0xd3, +0xf6,0x79,0x58,0x90,0x05,0xb4,0xa9,0x3d,0x22,0xdb,0x7a,0x85, +0x3f,0x59,0xb4,0x79,0x7e,0x72,0x22,0xd6,0x66,0xc8,0xcb,0xd9, +0x54,0xe1,0x1b,0xce,0xf6,0x5e,0x12,0x35,0xa6,0xa1,0xa5,0x0e, +0xa1,0x1e,0x59,0xd7,0xd2,0x33,0x3f,0xba,0xe0,0x0c,0x0d,0xd5, +0x22,0x33,0xcb,0x79,0x6b,0xca,0x6e,0xe6,0xd9,0xcb,0x40,0x3f, +0x98,0x0b,0x3e,0x81,0xe0,0xda,0x79,0x08,0x27,0x7f,0xe6,0x0c, +0x8d,0x54,0xde,0x0b,0xd4,0x81,0x6c,0x3c,0x3b,0xa2,0x6e,0x95, +0x67,0x2c,0x1f,0x60,0xb6,0x7b,0x25,0xa5,0x24,0x87,0x1f,0x21, +0x5f,0xb0,0xc3,0x0c,0xde,0x56,0xc7,0xcb,0x53,0x92,0x47,0x83, +0x67,0x3c,0x02,0x24,0x51,0x4a,0x72,0x04,0x38,0x85,0x68,0xc7, +0x13,0xda,0x8e,0x1e,0x59,0xf9,0xe9,0x19,0x1f,0x65,0xd2,0x87, +0x03,0xbb,0x7d,0x1f,0x53,0xf5,0x19,0x0c,0x10,0xee,0xa5,0x0c, +0xba,0x64,0x5d,0x4e,0x3f,0xfb,0x51,0x96,0x55,0xf0,0x18,0x64, +0xc4,0xcd,0xaa,0x8d,0x91,0x7f,0xdc,0x05,0x9d,0x05,0xb3,0x32, +0x24,0x6e,0x20,0x55,0x93,0x03,0xb3,0x4a,0xee,0x19,0xe5,0x62, +0x85,0xbb,0x60,0xd0,0xc9,0x40,0x88,0xe5,0x58,0x3c,0x73,0x5e, +0x05,0x45,0x2a,0x99,0x95,0x2c,0x33,0x76,0xa9,0x16,0x10,0x63, +0xac,0x83,0x1c,0x1e,0x18,0xf7,0x9b,0x9a,0x72,0xa3,0xa4,0x20, +0x8a,0x52,0x17,0xd4,0xe1,0x8b,0x96,0x98,0xaa,0xe6,0x16,0xf2, +0x49,0xa5,0x48,0x52,0x35,0x0d,0x66,0x75,0x48,0x80,0x4a,0xa8, +0x6a,0x5c,0x96,0xe2,0xf0,0x1a,0x92,0x8b,0x03,0x85,0xaa,0xa6, +0x00,0x55,0x4d,0x24,0xaa,0x9a,0x7e,0x93,0xba,0xb6,0x86,0x36, +0x86,0xaa,0xd9,0x7f,0x65,0x37,0xa9,0x9a,0x75,0xa8,0x5a,0x9e, +0xa1,0xaa,0x39,0xf9,0xe5,0xc1,0xcb,0xbb,0xae,0xa1,0xea,0xc1, +0xfb,0xe7,0x30,0xd6,0xe3,0xcc,0x99,0x00,0x39,0x80,0x54,0x0d, +0x0e,0x80,0xa9,0x6a,0xd4,0xae,0x02,0x3a,0x6a,0x66,0xad,0x7a, +0x8f,0xdf,0xd4,0xd7,0xf4,0x80,0x3e,0x8d,0xe3,0x9e,0x68,0x10, +0xdb,0x8b,0xab,0x43,0xec,0x39,0xf6,0xf3,0x99,0x33,0x0d,0x65, +0x03,0xe1,0xdc,0x97,0x65,0xa6,0x92,0xa2,0x88,0x0c,0xb7,0xf8, +0xcc,0x8e,0x4e,0xe8,0xe0,0x95,0xf0,0x9d,0xf0,0x3b,0xc7,0xce, +0xdd,0xb0,0x15,0x44,0x10,0xab,0x4c,0x8a,0x6a,0x03,0xcc,0xeb, +0xcc,0xb0,0xb3,0xd7,0xf7,0x65,0xed,0xc9,0x2a,0xa9,0x8e,0x42, +0xd8,0xd1,0xe3,0x54,0xfe,0x81,0xb3,0x24,0xfb,0x9d,0xe0,0xce, +0x8b,0x42,0x16,0xca,0xec,0xcd,0x0a,0x34,0x58,0xbb,0x87,0xdf, +0x2c,0xd1,0x7a,0xc0,0x28,0xb3,0xa2,0x38,0x9e,0x9c,0xb2,0xce, +0x50,0x84,0x9d,0x3c,0xce,0x64,0x34,0x44,0xbd,0x95,0x96,0xb8, +0x1e,0xf5,0xd6,0xfb,0xa6,0xde,0x8a,0x24,0xbd,0x35,0x3b,0x2a, +0xa1,0xad,0x57,0xc2,0x0f,0xa8,0xd1,0x84,0xfb,0x65,0x76,0x6e, +0xe3,0x85,0x1b,0xa8,0xb1,0xc2,0x2d,0xe0,0x37,0xa9,0x47,0x1b, +0x70,0xa7,0x5a,0x6f,0xee,0x3b,0xbf,0xe7,0x82,0x51,0x6b,0x57, +0x8f,0x53,0x97,0x0f,0x90,0xce,0xea,0xaa,0xa6,0x1b,0x39,0xce, +0xc7,0xb0,0xa8,0x97,0xda,0x4a,0x6d,0x29,0xd0,0xb7,0x50,0x6b, +0x53,0x44,0xad,0x29,0x38,0x89,0xa9,0xfd,0x2f,0x56,0xb2,0x92, +0xd1,0xc4,0x13,0x3d,0xa1,0x4e,0x3c,0x4a,0xbd,0xd5,0xf8,0x51, +0xc1,0x86,0xdc,0x16,0x2a,0x6f,0xbe,0x94,0xa4,0x62,0xe7,0xf5, +0x4d,0x05,0x38,0x1e,0x5a,0x28,0x38,0x5b,0xa0,0xe9,0x54,0x94, +0x5b,0x0d,0xe5,0xb6,0xc6,0x92,0xad,0x73,0x84,0x4b,0x26,0xdb, +0x71,0x25,0xb5,0xe0,0x17,0xdb,0xdf,0xb4,0x80,0x0a,0x83,0x5e, +0xef,0xd2,0x10,0xba,0xa0,0xcc,0x5e,0xf8,0x31,0xfd,0xea,0xee, +0x02,0x43,0x66,0x53,0x96,0x49,0x37,0x78,0xcb,0x23,0xeb,0xc1, +0x91,0xab,0x7b,0x6f,0xe2,0x83,0x55,0xc9,0xcb,0x51,0xfa,0x26, +0x93,0x90,0x54,0x93,0xa3,0x92,0xb6,0xcc,0x31,0x64,0xd6,0x90, +0xa4,0xea,0xe0,0xd1,0x53,0x7a,0x80,0xc5,0xf8,0xd1,0x60,0xe7, +0x6e,0x51,0x83,0x33,0x08,0xf1,0xc8,0x3c,0x83,0xf2,0xd4,0x76, +0xf1,0x96,0xf9,0x04,0x6a,0x4c,0x35,0x1f,0x64,0x6d,0xba,0x54, +0x60,0xfb,0x2a,0xac,0xb3,0x05,0x9c,0xa7,0x46,0xf6,0x68,0xe5, +0x15,0xfe,0x94,0xe4,0xb8,0x5c,0xb2,0xce,0xa5,0x5e,0x28,0xb4, +0x7d,0x1e,0xda,0xdd,0x02,0x0d,0xc7,0x45,0x06,0x00,0xf7,0xca, +0x1c,0x76,0xb1,0x30,0xfd,0xc2,0x9e,0x6c,0x22,0x69,0x55,0x0a, +0xa9,0x91,0x70,0x8f,0xcc,0xeb,0xe9,0x59,0x1f,0x5d,0x74,0x06, +0x7f,0x35,0x9b,0xcb,0x79,0x41,0xb0,0x02,0x9d,0xad,0x8f,0x68, +0xe1,0x1d,0x39,0xdb,0xc7,0xa0,0x21,0x60,0x0b,0xd3,0x60,0xd7, +0x2e,0x2e,0xaa,0x7a,0x32,0x6c,0x45,0x17,0x8f,0x4c,0x14,0x84, +0xbd,0xe7,0x9d,0xaf,0x1a,0x8c,0xfe,0x2a,0x2f,0xaf,0x82,0x9e, +0xbc,0x65,0xdc,0x8f,0x3e,0xf8,0xa7,0x82,0x6e,0x96,0x14,0xf5, +0xa0,0x63,0x31,0xac,0xe5,0xfc,0x5c,0xf0,0x93,0xc1,0xcf,0xa8, +0xf7,0x02,0x66,0x75,0x4c,0x40,0x6f,0x3f,0x41,0xb2,0x7f,0xf1, +0xb3,0xd1,0x89,0x06,0x3f,0x27,0x4c,0xea,0xd2,0x1a,0xda,0x11, +0x3f,0x7f,0x8f,0xfc,0x7c,0xb3,0x9c,0x9f,0x27,0x78,0x9c,0xbc, +0x7f,0xf0,0xca,0x4b,0x7e,0x1e,0x87,0x1c,0x13,0x20,0x07,0x96, +0xf1,0xf3,0x20,0x64,0xb0,0x9b,0x1a,0x2c,0xdd,0xc3,0xaf,0x97, +0x68,0xd1,0xe0,0xda,0x3a,0xfe,0x87,0x26,0xf8,0xa7,0xc1,0xb0, +0x0d,0xa2,0xc6,0x5e,0x9a,0x18,0x4f,0x9f,0x69,0x44,0x13,0xe3, +0x82,0xf5,0x08,0x6e,0x6c,0x84,0x78,0x3f,0x93,0x3a,0xb1,0xb8, +0x07,0x71,0xd9,0x9c,0x1e,0x09,0x6d,0xbc,0xfa,0x3f,0x4c,0xc2, +0x79,0x13,0x69,0x5a,0x9c,0x44,0xb3,0xe3,0xd9,0xd4,0x0b,0xb7, +0x0c,0xa6,0x07,0xbf,0xc9,0x91,0x6d,0x71,0x7e,0x3c,0x3d,0x2c, +0xe3,0x16,0x72,0xf8,0x05,0x51,0xe5,0x22,0xcd,0x8f,0x27,0x2f, +0x1f,0xc8,0xfc,0x30,0xcb,0x39,0xcc,0xe0,0x35,0xf9,0x81,0x3e, +0x91,0x6f,0xd8,0x98,0xba,0x7a,0xc3,0x62,0xd9,0x0a,0x12,0x3c, +0xee,0xdc,0x3b,0x97,0xbd,0x3f,0x67,0xc3,0xfa,0xd4,0x95,0xeb, +0x97,0xa0,0x99,0x11,0xe3,0x71,0x36,0x0b,0x1a,0xc9,0x90,0x45, +0x9b,0xe7,0xd0,0x28,0x25,0x2e,0xa4,0xe5,0x88,0xcc,0xd4,0x0b, +0x05,0xb6,0x93,0x21,0xa3,0x2d,0x50,0x77,0x52,0x54,0xb3,0xfa, +0x5e,0x50,0x51,0x5a,0x17,0x6c,0x99,0x93,0x9c,0xb8,0xb0,0xd4, +0x87,0x7d,0x98,0xb9,0xe9,0xe2,0x0d,0xdb,0xf1,0xd0,0x31,0x68, +0xe4,0x0e,0x6d,0x05,0x1c,0x6a,0x79,0x9d,0x1d,0x54,0x70,0xfb, +0x5c,0xee,0xfe,0x3c,0xab,0x9c,0xac,0x9a,0x70,0x19,0x1b,0x04, +0xb1,0x66,0xec,0xca,0x2c,0x79,0x83,0xcb,0xca,0x0b,0x2d,0xd9, +0x19,0xc7,0xd2,0x3f,0x4a,0x4f,0xc5,0x4a,0x37,0x2e,0x95,0x8d, +0xc0,0xd7,0x23,0x23,0x0b,0xfc,0xa5,0x47,0xe2,0x26,0x3d,0x8f, +0x1d,0x4d,0x3d,0x71,0xc1,0x76,0x30,0x6c,0xb2,0xa5,0xd1,0xa4, +0x84,0x66,0x5d,0xbd,0x7c,0x7f,0x5f,0xb0,0x69,0xfe,0x1a,0xe1, +0xd2,0x9e,0x1d,0xdb,0x74,0x32,0xcb,0xb6,0x3f,0xec,0x2d,0x4b, +0xc0,0xf0,0x70,0xe0,0x8d,0xbd,0x32,0x06,0xdd,0xba,0x98,0x71, +0x66,0xff,0x19,0x2b,0xe2,0x41,0x23,0x1d,0xc5,0xa2,0xa6,0xc7, +0x3c,0xa8,0xac,0x2c,0xf7,0xc9,0x3d,0x7d,0x0b,0xc6,0xd0,0x01, +0x3f,0x77,0xb8,0xac,0xb8,0x08,0xeb,0x3b,0x9a,0xfe,0xf1,0x91, +0x8d,0x54,0x5f,0x12,0xd6,0xe7,0xed,0x91,0x91,0x89,0xf5,0xd5, +0x35,0xea,0x4b,0x4f,0x3d,0x7e,0xc1,0xf6,0x59,0xd8,0x24,0x4b, +0x93,0x49,0xfd,0x9b,0x75,0xf3,0xf2,0xfd,0x35,0x71,0x53,0xe2, +0x9a,0xf9,0x8b,0xe8,0xc3,0x14,0x8a,0xd4,0xb1,0x4d,0x27,0x32, +0x6d,0x07,0x90,0x9a,0x86,0xc3,0x23,0x80,0x37,0xf1,0x3a,0x33, +0xe8,0xe6,0xc5,0xb3,0xa7,0xf6,0x9f,0xb6,0xa6,0x6e,0xd8,0x64, +0x56,0x5a,0x1d,0x2b,0xad,0xa8,0x2c,0xf4,0x85,0x55,0xb3,0xbf, +0x09,0x93,0xcd,0x63,0x8d,0xd2,0xb9,0x74,0x49,0xb4,0xe4,0x65, +0x1d,0x3f,0xf6,0xf1,0xf1,0x0d,0x6b,0x53,0x69,0xaf,0x4c,0x43, +0x08,0xf4,0x38,0x7b,0x1e,0xeb,0xad,0x97,0xb8,0x69,0xde,0x1a, +0xa3,0xef,0x76,0x1e,0x4f,0x3d,0x79,0xc9,0x76,0x28,0xe4,0x4d, +0x4b,0x83,0xc9,0xfd,0x9a,0x75,0xf2,0xaa,0xff,0x3c,0x31,0x6d, +0x7e,0x32,0x0a,0xcf,0x7c,0xda,0xf8,0xb7,0xf3,0xf8,0xa6,0x53, +0x48,0x5a,0xc8,0x44,0x4b,0xfd,0xe1,0xa1,0x50,0xbb,0x01,0xb5, +0x38,0xe7,0x6c,0xc6,0xfe,0xb3,0xd6,0x8d,0x66,0x8b,0x3d,0xc0, +0xea,0x31,0x07,0x5c,0x8c,0x16,0x57,0xc6,0x69,0x26,0x84,0x95, +0xfc,0x4e,0x0e,0xf0,0x04,0xfb,0xf7,0xcc,0x5e,0x8f,0x7c,0xdf, +0xbf,0xe9,0x90,0xa4,0x7a,0xf4,0x89,0x74,0x40,0xa9,0x95,0xde, +0xa2,0x9b,0xdb,0x48,0x0f,0x40,0x2b,0x23,0xd8,0xf8,0x1a,0xca, +0xcb,0x4f,0x46,0xa0,0x73,0x12,0x34,0xf8,0xb4,0x4a,0xf9,0xf1, +0x08,0xbf,0x93,0xc3,0x2a,0xe4,0x1a,0x23,0x23,0xbc,0x1d,0xe7, +0x7f,0x52,0xb6,0xb2,0x0a,0xb4,0xf0,0x38,0x97,0x7d,0xf8,0xf4, +0xde,0x73,0x29,0x6b,0xd7,0xd2,0xb4,0xae,0x41,0x53,0x52,0x11, +0x15,0x64,0xbd,0x85,0x9b,0x17,0xac,0x45,0xd2,0x17,0x27,0x2d, +0x5b,0xeb,0xf4,0xc1,0xa9,0xb4,0x8c,0x1c,0xdb,0xd5,0xd0,0xde, +0x96,0x86,0xd3,0x7a,0xf6,0x0c,0xf2,0xea,0xf9,0xf5,0xe2,0xcd, +0xc2,0xf9,0x2e,0xdb,0x76,0x22,0xf5,0x74,0x8e,0xed,0x72,0x48, +0x6f,0x0b,0xb8,0x8f,0x8f,0x69,0x86,0x86,0x45,0xe6,0x90,0xac, +0xab,0x87,0x32,0xf6,0x64,0x5a,0x65,0x5b,0xb8,0xc7,0xa5,0x7f, +0x28,0x34,0x14,0xf5,0xbe,0x65,0x94,0x2a,0xde,0x1e,0xfd,0xa5, +0xa8,0x3d,0x15,0x3d,0xf5,0xd2,0x76,0xec,0xa7,0xd0,0x26,0xa2, +0xca,0x2c,0x23,0x43,0x2e,0xba,0xb8,0xe5,0x19,0xe3,0xed,0xd1, +0x27,0x78,0x8a,0x69,0x5f,0x54,0x81,0xba,0x1e,0x67,0x33,0x0e, +0xa5,0xef,0x3d,0x8e,0xa6,0xc3,0xaa,0xb5,0xcb,0xa5,0x13,0x70, +0x8f,0xcc,0x0c,0x5f,0xa9,0x2d,0x4c,0x5b,0x90,0x3c,0x7f,0xb1, +0x75,0xd1,0x92,0xe5,0x6b,0x9d,0x76,0x1c,0xd9,0x74,0x2c,0xc3, +0x96,0x15,0x36,0xdc,0xd2,0x71,0xda,0xc0,0x5e,0x71,0x5e,0xbd, +0x6e,0x2e,0x14,0x7e,0x05,0x2c,0xc3,0x96,0x19,0x36,0xcc,0x12, +0x30,0xbe,0x5f,0xb3,0x16,0xa8,0x15,0x33,0xcf,0x1f,0x3a,0xb6, +0xfb,0x84,0x55,0x6f,0x0d,0x13,0xb1,0xea,0xdf,0x43,0xeb,0x97, +0x55,0x0d,0xbf,0x96,0xa7,0x99,0x0f,0x63,0xf0,0xe7,0x7f,0x4d, +0x33,0x2f,0xdc,0x24,0x92,0xb5,0x4b,0x38,0x8d,0x60,0x47,0x44, +0xed,0x6a,0x2f,0xd3,0xce,0x3b,0xa5,0xb1,0x24,0xf0,0xe7,0xd9, +0xf0,0x49,0x5f,0x0b,0x36,0x76,0x18,0x9f,0xb3,0x70,0x59,0xf2, +0x9e,0xdd,0xa9,0xc2,0xd2,0x1b,0x27,0xe9,0x4f,0xd8,0xfe,0xb3, +0x07,0xb6,0x6d,0xd8,0x2e,0x6a,0x24,0xb2,0xfd,0x17,0x61,0xf3, +0xc3,0x59,0xeb,0x16,0xaf,0x9c,0x9b,0x88,0x13,0xa0,0x23,0x49, +0xbd,0x0b,0x1d,0xc8,0xe4,0x62,0x1e,0xc8,0x64,0xf7,0x41,0x77, +0x1c,0xed,0x2a,0x54,0x30,0xbf,0x80,0x9f,0xc7,0xb1,0xf3,0xfb, +0x4f,0x7c,0x78,0x12,0x07,0x64,0x75,0xca,0xf2,0x27,0x28,0x4d, +0x67,0xce,0xb4,0x92,0xb5,0x16,0x6f,0x4e,0x24,0x0b,0x06,0x9d, +0x02,0x6c,0xf5,0xa9,0x4d,0x67,0x72,0x6c,0xb9,0x11,0x09,0x96, +0x16,0xb3,0x7a,0x0d,0x0c,0xf7,0x1a,0x56,0xb0,0x38,0x4d,0x54, +0xff,0x98,0x6d,0x3b,0xb9,0x11,0x87,0x23,0x07,0x9f,0x83,0xe5, +0xed,0xb8,0x8e,0x3e,0xa8,0xcd,0x4e,0xe6,0xee,0x3b,0xb5,0xf3, +0xb4,0x55,0x7a,0x63,0xe3,0x64,0x40,0x38,0x34,0x16,0xf5,0x1e, +0x98,0x09,0xed,0x47,0xcb,0xcb,0xc2,0xe9,0x53,0x26,0xc7,0xc3, +0x4a,0x4a,0x68,0x4f,0x99,0x92,0xaf,0x43,0x16,0x37,0xab,0x95, +0x16,0x83,0x31,0x8e,0x9c,0xd9,0x7b,0x96,0x14,0xa1,0xf1,0xa0, +0x19,0x31,0x46,0x25,0xe9,0xb5,0xe8,0xff,0x23,0xee,0xbd,0xe3, +0xaa,0x3a,0xba,0xfe,0x51,0x8d,0x72,0x36,0x8c,0x52,0x44,0xb7, +0x9e,0x73,0x18,0x0f,0xa8,0x60,0x05,0xc4,0x82,0x5d,0x11,0xec, +0x54,0x0b,0xf6,0xfe,0xc4,0xa8,0x31,0x1a,0x63,0x92,0x27,0xb1, +0x50,0xed,0x0d,0x8c,0x52,0xac,0x49,0x34,0x6a,0x9e,0xd8,0x45, +0x41,0xe9,0xa0,0x28,0xd5,0x86,0x05,0x2c,0xb1,0x44,0x63,0x89, +0x51,0x13,0xd3,0x66,0xe3,0xda,0xf0,0xdc,0xb5,0xf6,0x3e,0xa8, +0x79,0xdf,0xe7,0x77,0xef,0xfd,0xfd,0xde,0xfb,0xf9,0xdc,0x3f, +0x92,0x83,0xe7,0xcc,0x9e,0x59,0xb3,0x66,0xcd,0x77,0xad,0x99, +0xd9,0xf3,0x5d,0xc9,0x51,0x1b,0x22,0x49,0x12,0xd2,0xff,0xc9, +0xb7,0x0c,0x23,0xd8,0xcf,0x12,0x7c,0x27,0x16,0xe5,0xd4,0xe1, +0x35,0xde,0x66,0xdb,0xc9,0xc4,0x8c,0x33,0xe6,0x92,0x00,0x32, +0x8f,0x99,0x81,0x9e,0x9a,0x79,0xe4,0x97,0x1d,0xc9,0xde,0x93, +0x63,0x12,0x5d,0xe0,0x96,0x2c,0xda,0x04,0x40,0x07,0xde,0xfc, +0x5e,0x6d,0xb2,0xe5,0x4b,0x4a,0x37,0x6e,0xd3,0x89,0xac,0xd2, +0x88,0x63,0x9f,0x72,0x7c,0x6f,0x1a,0x36,0x4e,0x63,0x6f,0xc0, +0xb1,0xcf,0xc9,0x72,0x13,0x52,0x6c,0x52,0x74,0x3c,0xb6,0x1d, +0xbb,0x7c,0x25,0x3a,0xa3,0x63,0x49,0xa9,0x99,0xda,0xd8,0x77, +0x5f,0x30,0x2e,0x24,0xc8,0x12,0x7a,0x89,0x37,0x7a,0xc8,0x08, +0xd6,0xb7,0x1d,0x4d,0x3c,0x96,0x69,0xce,0x0d,0xd0,0x4c,0xc0, +0x93,0x4c,0x20,0x2f,0xff,0x48,0x1a,0x99,0x80,0x1f,0xae,0x03, +0x3a,0xa2,0x09,0xb4,0xe2,0xb6,0xde,0x0c,0x14,0xec,0xaf,0x08, +0x47,0x0b,0xa0,0xd7,0x03,0xad,0x19,0x9a,0x63,0x51,0x8e,0x72, +0x91,0x5e,0x75,0x1b,0xd7,0x67,0xb2,0x5f,0x8c,0xd7,0xb2,0xd6, +0x2b,0x6c,0xef,0x04,0xf8,0x4a,0xab,0xbb,0x77,0x59,0xe3,0xab, +0x06,0x33,0xa8,0x51,0x3d,0xe5,0x9f,0x94,0xd5,0xe2,0x7d,0xf5, +0x7a,0x98,0x12,0xef,0xad,0xae,0x86,0x1e,0x2a,0xce,0x40,0xd6, +0x95,0xa9,0xfe,0x2d,0xb8,0xbd,0x05,0xc3,0xfd,0x74,0x86,0x55, +0x9c,0x95,0x37,0xe8,0x9a,0xb3,0x81,0x46,0xbc,0x51,0x0a,0xc3, +0x7f,0x60,0x4f,0x6c,0xc1,0xd1,0x98,0x95,0xe9,0x26,0xea,0x70, +0xc7,0x6f,0xd9,0x91,0xa4,0x94,0x93,0xe6,0x8c,0x41,0x33,0xa4, +0xbe,0x1f,0x8f,0x0f,0x0e,0xb3,0x04,0x5f,0x88,0x4d,0x8c,0x5e, +0x1f,0xb3,0x0c,0xbb,0x47,0x41,0xf1,0xa1,0x84,0x94,0x13,0xe6, +0xf4,0x81,0xef,0x4a,0x5e,0xb3,0xc6,0x76,0xe8,0x6a,0xc9,0x99, +0x9c,0x97,0x73,0xe4,0xd8,0xee,0x54,0x93,0xd2,0x1f,0x26,0xf1, +0xe6,0xd9,0xac,0xac,0x03,0xb7,0xff,0x58,0x6b,0xf8,0x1a,0x6c, +0xe0,0x0c,0xf5,0xb6,0x53,0x99,0x2f,0x6f,0xda,0x94,0xb8,0x16, +0xa1,0xbf,0x13,0x8c,0x34,0x5e,0xad,0xc8,0x3d,0x73,0xa0,0xc0, +0xfa,0x85,0x27,0x0c,0x25,0x5f,0xd0,0x56,0xf8,0xc5,0x90,0x2f, +0xd0,0xa0,0x3e,0x27,0x31,0xff,0x92,0xee,0x08,0xe4,0xb9,0xc3, +0xbc,0x5a,0x91,0x23,0x30,0x46,0x6f,0x5e,0x12,0xc7,0xeb,0xbf, +0x22,0x3f,0x70,0xea,0xbc,0xee,0x07,0x8c,0x13,0xbb,0xa0,0x1f, +0x70,0x26,0x3f,0x70,0x39,0xa7,0xf0,0x60,0x91,0x49,0x31,0xd0, +0x89,0xe5,0xf8,0x00,0x18,0x0f,0x4b,0xf5,0x8f,0xb9,0x74,0xa7, +0xed,0x19,0x41,0x4c,0x33,0x84,0x18,0x74,0x4a,0x5f,0xa2,0x53, +0x4a,0x5a,0x97,0xb8,0x54,0x78,0xa3,0xfb,0xbe,0x7a,0x21,0x27, +0xe7,0x40,0x6e,0xc2,0x86,0x04,0xc2,0xcd,0x76,0xd0,0xd9,0x98, +0x93,0x07,0xb8,0x5a,0x8c,0x4a,0x26,0xdc,0xd4,0x0f,0x26,0x76, +0xa6,0x27,0x66,0x16,0x9b,0x8f,0xf9,0xcf,0x92,0xa0,0xfe,0xdc, +0xe1,0x5e,0x3e,0x16,0x1c,0xec,0xe8,0xcd,0x11,0xeb,0xab,0x27, +0xb2,0xf4,0xa4,0xec,0xb3,0xe6,0xa3,0x01,0xb3,0xd1,0xa8,0x27, +0xf5,0x41,0x41,0xea,0x5a,0xb2,0xc7,0x5e,0x2a,0xc9,0xce,0x3b, +0x90,0x67,0x52,0xee,0x42,0x22,0xdd,0x6b,0x7b,0x50,0x29,0x1e, +0x68,0xf7,0xda,0x1a,0xff,0xcc,0xe0,0x38,0xb7,0xbb,0xc8,0x3c, +0x6b,0xcf,0xcf,0x9e,0x4a,0x0e,0x62,0xb7,0x72,0x44,0xde,0xf4, +0x85,0x86,0xb1,0x9e,0xe0,0x63,0xbc,0x52,0x92,0x9d,0xb9,0x3f, +0x93,0xdc,0x87,0x06,0xe3,0x6d,0x79,0xab,0x6d,0x4c,0x7b,0x6d, +0x01,0xe1,0xfb,0x0c,0xb6,0x34,0x47,0x72,0x9f,0x3b,0xca,0xbb, +0xbb,0xa5,0xe5,0x9f,0xd1,0x49,0x11,0x08,0xdf,0x1a,0xb2,0x27, +0x65,0x20,0x76,0x07,0x7c,0x20,0xb5,0x98,0xe4,0x0f,0x8d,0xdd, +0x51,0x17,0x97,0x0a,0xb3,0xb3,0x0f,0xe4,0x98,0x20,0x12,0xa2, +0xe5,0x61,0x4a,0x03,0x18,0x56,0x29,0x86,0x29,0x75,0xcf,0xd3, +0x49,0x5b,0xf7,0xd7,0x27,0x6d,0x8d,0xfd,0x5f,0x9f,0xaa,0x3d, +0x24,0xf1,0x06,0xb0,0xb7,0xcf,0xd3,0x7e,0xa2,0xf3,0xb4,0xa7, +0xb4,0xbb,0xdc,0xf8,0x2b,0xf6,0x36,0xf5,0xd5,0x3a,0xde,0x3c, +0x12,0xbf,0x0c,0x63,0x7d,0xe8,0x7c,0xec,0x26,0x9d,0x8f,0xad, +0xd6,0xce,0xc7,0x5a,0x0e,0x64,0xea,0x55,0x88,0xd7,0x66,0xa9, +0x36,0x2f,0xdc,0x8c,0xd9,0xb9,0x29,0x69,0x7b,0xd3,0xe3,0xe0, +0x47,0x06,0x16,0x04,0x48,0x1c,0x43,0x07,0x9c,0xa1,0xf1,0x51, +0x34,0x4b,0xb0,0x53,0x5f,0xa1,0xcb,0xcb,0x31,0x9f,0x1e,0x30, +0x41,0xea,0xfc,0x71,0x78,0xf0,0x10,0x4b,0x70,0xc5,0x52,0x6e, +0x17,0xc6,0xb6,0xa7,0x24,0xa4,0x65,0x9b,0x4f,0x0d,0x18,0x2f, +0xb9,0xcd,0x1c,0xee,0xd9,0xce,0x92,0x33,0x31,0xff,0xcc,0x91, +0x13,0x7b,0x32,0x4c,0xca,0x40,0xf8,0x42,0x5e,0x56,0xcc,0x5b, +0xe4,0x31,0xb8,0x55,0x21,0xee,0x4a,0x7f,0x6c,0x7c,0x96,0x78, +0x73,0xb3,0xad,0x03,0x97,0x9e,0x32,0xf5,0x1a,0x8c,0xe4,0xce, +0xa9,0x6c,0xb4,0x1a,0x50,0x5d,0x87,0x71,0xe7,0xb1,0x74,0x46, +0x76,0xab,0xba,0x8a,0x55,0xad,0x82,0xee,0x0c,0x92,0xd4,0x1f, +0x65,0xe8,0x1f,0x2a,0xfa,0xc3,0xa8,0xf2,0xaa,0xf2,0x41,0x06, +0xb5,0x2d,0xac,0xb3,0x8a,0xfa,0x04,0xbd,0xf9,0xf1,0x8c,0xfd, +0x29,0x3b,0x8f,0xc7,0x6b,0xb3,0xe2,0x67,0x68,0x64,0xcc,0xc8, +0xe8,0x22,0xea,0x2f,0x4d,0x8e,0x5e,0x1f,0x65,0x45,0xf3,0x2f, +0x8f,0x27,0xa5,0xe6,0x9a,0x73,0x86,0x4c,0x95,0x7a,0x2d,0x0a, +0x1f,0x1f,0x6c,0x99,0x52,0x12,0x9b,0x1c,0xbd,0x0e,0x27,0x44, +0xcc,0x32,0x0a,0x8c,0x8e,0x25,0xa4,0xe5,0x9a,0xb3,0x86,0x4c, +0x93,0x5a,0xcf,0x1f,0xd5,0xd3,0xd3,0x92,0x31,0xf9,0x64,0xde, +0xfe,0x63,0x5f,0xa7,0x99,0x44,0x35,0x44,0xe8,0x47,0x6a,0x8d, +0x60,0x44,0x2c,0x0c,0x74,0xd9,0x18,0xa4,0xd6,0x65,0x90,0x75, +0x59,0xe4,0x49,0xb7,0x37,0x5e,0x4f,0x2c,0x25,0xe9,0x5d,0x0d, +0x4c,0xe5,0x02,0x6d,0xe3,0x73,0x06,0x06,0xe3,0xf1,0xd4,0xfd, +0x87,0x77,0x1d,0xd6,0x3c,0xcb,0xea,0x9f,0xa1,0x3e,0x89,0xf2, +0x7c,0x29,0x06,0x0a,0xd1,0x9a,0x24,0x18,0xa3,0xe1,0xd4,0xcc, +0x30,0xa7,0x0d,0x99,0x2d,0xf9,0x2f,0x9c,0x30,0x6e,0x94,0x65, +0xca,0xa9,0xd8,0xe4,0x18,0x92,0x24,0x7a,0xd9,0x9a,0xf5,0x36, +0xdb,0x8e,0x24,0xa4,0xa4,0x9b,0x53,0xf1,0xd7,0xce,0xf3,0xc7, +0xf7,0xec,0x86,0x92,0x9c,0xc8,0xdc,0x7f,0x78,0xe7,0x51,0x53, +0x91,0xda,0x8c,0x9b,0x67,0xa0,0xcf,0xb8,0x46,0x27,0x5d,0xce, +0xd3,0xd9,0x56,0x38,0xc2,0xed,0x47,0x58,0xc1,0x75,0x8b,0xe6, +0x72,0x25,0x44,0xf4,0x9c,0xdc,0xa3,0x27,0xf6,0xa6,0xa3,0x26, +0xc8,0xd3,0xd9,0xd2,0xb8,0x65,0xe2,0xb8,0x39,0xa1,0x67,0x43, +0x74,0x83,0xa7,0x0c,0x07,0xed,0x64,0xae,0xb9,0x60,0xc0,0x38, +0xa9,0xf3,0x82,0x51,0xda,0xa0,0x21,0xac,0x92,0x70,0x3a,0xac, +0x1e,0x4b,0x4c,0xc5,0x21,0x0d,0x18,0x27,0x41,0x5d,0x1c,0xbc, +0x36,0x84,0x6f,0x67,0x8e,0xa6,0xd3,0xe0,0xf5,0x83,0xd1,0xf2, +0xa7,0xd0,0x11,0x22,0x62,0x61,0x3e,0x5d,0x65,0xbd,0x73,0x37, +0x2e,0xfe,0xb6,0x2b,0x5c,0xac,0x14,0x57,0xb4,0x81,0xbc,0x85, +0xaa,0x78,0x0d,0xb6,0x01,0xdc,0xc6,0x87,0x21,0x3c,0x21,0xd8, +0x66,0xa7,0x1c,0xdb,0x93,0xa6,0xc9,0xb3,0x1a,0x05,0x44,0xb0, +0xcd,0xd4,0xc0,0x16,0x5d,0xce,0x52,0x1d,0x6c,0xbf,0x4a,0x49, +0x4e,0xcd,0x30,0xe7,0x0c,0x98,0x86,0x8e,0x76,0x4c,0x48,0xb0, +0x25,0xb4,0x3c,0x86,0xd4,0xb5,0x4c,0x8f,0xa3,0x51,0x21,0xc7, +0x32,0xcc,0xd9,0x03,0xa6,0x22,0xe0,0x8e,0xf6,0xf4,0xc6,0xb0, +0x3f,0x37,0xff,0x28,0xf9,0xdc,0x2b,0x6a,0x73,0xf9,0x9a,0x70, +0x7d,0xb5,0x87,0x6d,0x82,0x3b,0xdc,0xa1,0x8c,0xa0,0xe1,0xab, +0x37,0xd0,0xd0,0xcb,0x78,0xed,0x7c,0xb6,0x06,0x0d,0x18,0xaf, +0xae,0xd0,0xa1,0x21,0x1f,0xa1,0xa1,0x2d,0x42,0xc3,0xba,0xa8, +0x58,0x9a,0x78,0x27,0x5f,0xe3,0x42,0xbd,0xb9,0x61,0x5e,0x9d, +0x11,0x17,0x0c,0xd1,0xc9,0x11,0x71,0x1a,0x2e,0x64,0x59,0x71, +0xc1,0x50,0x8b,0x0b,0xe3,0x10,0x17,0x72,0xad,0xb8,0xc0,0xdd, +0xd6,0xe2,0x14,0xfa,0xd8,0xca,0x9e,0x45,0x07,0x33,0x74,0xf1, +0xd1,0x7a,0x22,0x63,0xe0,0x0e,0x71,0xec,0x19,0xce,0x33,0x9c, +0x54,0xe2,0x2b,0xe5,0x3d,0x79,0x53,0x62,0xd2,0xba,0x4d,0xb1, +0x08,0x9b,0xa3,0x8d,0xd7,0x6e,0x20,0x6c,0x16,0x6e,0xfc,0xc2, +0x0a,0x9b,0xc1,0x7a,0x08,0x3d,0x40,0x0b,0xa1,0xad,0x68,0xb5, +0x2b,0x8f,0x16,0x3a,0xe9,0xfe,0xd3,0x28,0x84,0x1e,0xe2,0xe5, +0x46,0xc8,0x69,0xd6,0x42,0x68,0x92,0x79,0x17,0xae,0x92,0x2e, +0x98,0x4f,0x04,0x4c,0x97,0xc0,0x45,0x0b,0xa1,0x65,0x92,0x8c, +0x42,0xe8,0x62,0x13,0x2c,0xd4,0x4f,0x6d,0xc4,0x37,0xca,0x71, +0xd9,0x1a,0xc1,0x7a,0xa2,0x6b,0xbd,0x52,0x9c,0x9d,0x81,0x98, +0x54,0x1b,0x5a,0x7a,0x50,0xa3,0xad,0x04,0x27,0x3d,0x60,0x57, +0x53,0xb5,0xb8,0x12,0x81,0xa9,0x35,0x02,0x53,0x2f,0x8c,0x2b, +0x51,0x05,0xf4,0x7e,0x74,0x54,0x0c,0x2d,0xca,0xd2,0x92,0x4e, +0xe6,0x6b,0xd8,0xd4,0x6a,0x52,0x00,0x34,0x6e,0x43,0x8d,0x9d, +0xc9,0xa2,0xb8,0x12,0x22,0xe0,0x9f,0xc4,0xd7,0x35,0x0a,0xe6, +0xd1,0xe9,0x0e,0xb6,0xf9,0x2d,0xb5,0xb9,0x76,0xd3,0x32,0xe1, +0x05,0x5d,0x8c,0x97,0x4b,0xb2,0xb3,0xf6,0x67,0x25,0x6c,0x4a, +0xd2,0x71,0xb0,0x03,0xb5,0xe9,0x2e,0x5a,0x62,0xdd,0xeb,0x22, +0xc1,0xc4,0xd2,0x12,0xd3,0xcf,0x9a,0x53,0x02,0xde,0x97,0x5a, +0xcc,0x1d,0xe9,0xed,0x6b,0x69,0x29,0xea,0x10,0x20,0x53,0x34, +0x4b,0xad,0xee,0x3c,0x91,0x94,0xa1,0xcb,0x04,0x75,0x27,0xf9, +0x41,0xe3,0x56,0xd8,0xec,0xc5,0x22,0x84,0xc4,0x5c,0x6a,0x76, +0x19,0x1d,0x03,0x95,0xd2,0x31,0x50,0xf5,0xce,0xda,0x43,0x1b, +0xfc,0x0b,0x03,0xd7,0x49,0xea,0xd7,0xf4,0x17,0xdc,0x02,0x17, +0xf5,0x3b,0x56,0x15,0x40,0x21,0xac,0xcf,0x7f,0x3b,0xa9,0x69, +0x3c,0xbd,0xf6,0xa4,0x06,0xc1,0xfb,0xa4,0x9c,0xb0,0x81,0x7b, +0x7c,0xc3,0x32,0x0e,0x64,0xbc,0x06,0x6d,0x0f,0x3d,0xf6,0x76, +0xc1,0x00,0x9b,0xf6,0x83,0xa3,0x63,0xd1,0x46,0x77,0xa6,0x26, +0x9e,0x28,0xd0,0x14,0xd1,0x76,0xde,0x48,0x54,0x53,0x8b,0xdf, +0x11,0xbf,0xd7,0x73,0x9b,0xe6,0x0c,0x23,0xef,0x7c,0xf3,0xc1, +0x80,0xb9,0x92,0xfb,0xe4,0x01,0xd0,0xa4,0xb5,0x16,0x79,0xe7, +0x68,0x1a,0x8a,0x44,0x0d,0xb5,0xa2,0x63,0x9d,0x83,0x70,0x4b, +0x9b,0xa6,0x17,0xa0,0xe4,0x4d,0x0c,0xd4,0xc5,0x98,0x73,0x36, +0x25,0x6b,0x6f,0x6e,0x9c,0x3e,0x53,0x25,0xe8,0xa4,0xc7,0x40, +0xad,0x08,0x61,0x31,0x06,0xd5,0x62,0x20,0x0c,0x8e,0xb3,0x0b, +0xcd,0x17,0xfc,0x43,0x24,0x8f,0x05,0xc1,0x21,0xfd,0x2c,0xc1, +0xf7,0x62,0xf5,0x58,0x6d,0xf9,0x4a,0x44,0x92,0xed,0x68,0xc0, +0x14,0x21,0x85,0x4a,0xe0,0x3c,0x73,0xa8,0x27,0xae,0xe1,0x73, +0x27,0xe6,0x9f,0x3b,0x92,0xb3,0x27,0xcf,0x04,0x03,0xe1,0x2c, +0x77,0x6f,0xce,0x4a,0x6c,0x3e,0x01,0x6f,0x9a,0xb2,0xf3,0x5c, +0x6a,0x27,0xe7,0x55,0xc5,0x1b,0xc3,0x07,0x4d,0x8a,0xfa,0xb8, +0xbe,0x41,0xbc,0x48,0xdb,0x7b,0x32,0x2e,0xbe,0xaa,0x2f,0x03, +0xae,0x45,0x42,0x0e,0x6f,0x22,0xa1,0x0d,0x14,0x09,0x21,0xc6, +0x9f,0x1a,0x30,0x51,0xea,0xf2,0x71,0x78,0xe8,0x30,0x4b,0xc8, +0x55,0x94,0x4f,0x9b,0x9c,0xb4,0x85,0xbc,0x2d,0x25,0x31,0x35, +0xdb,0x9c,0x17,0x30,0x51,0x6a,0x31,0x6b,0x84,0x17,0x41,0x7d, +0x1e,0x42,0xfd,0xee,0x74,0x93,0x32,0x00,0x75,0xbc,0x82,0xc2, +0xa0,0x73,0x4a,0xe8,0xeb,0x00,0x28,0x02,0x9b,0xbf,0x26,0x0e, +0x70,0x79,0x10,0xcb,0x9a,0x9c,0x97,0x7b,0xe4,0xd8,0x1e,0x0c, +0x39,0x06,0x41,0x57,0xf9,0x93,0x57,0xbe,0x0c,0xaa,0xd5,0xee, +0xf2,0x53,0x65,0x15,0xae,0x04,0xaf,0x87,0x2a,0x71,0x9e,0xea, +0x2a,0xe8,0xad,0x7c,0x86,0xf1,0x9b,0x7a,0x90,0xa4,0x16,0xa7, +0xb8,0x5c,0xc4,0x66,0x86,0x7b,0x79,0x59,0x72,0x26,0xe5,0x9e, +0x3a,0x92,0xba,0xe7,0x04,0xb5,0x32,0x58,0xbc,0xc2,0xe0,0x08, +0x0c,0x32,0x7c,0x8d,0xae,0x6f,0xab,0xb8,0x6c,0xf0,0xa3,0x17, +0xbb,0xba,0x88,0x70,0xa5,0x0b,0x2e,0x4d,0xa6,0x6a,0xeb,0x79, +0x8d,0xac,0xf8,0x94,0x6a,0xa6,0xcd,0x8f,0x78,0x9b,0x5d,0x65, +0x49,0x97,0x1e,0xd6,0x6e,0x5a,0xb6,0xff,0xb0,0xc7,0x10,0x5c, +0xbc,0x07,0x08,0xa7,0xa5,0x5b,0xf4,0xcd,0x8f,0x92,0x84,0x4b, +0x3f,0xbd,0xde,0xaf,0xf4,0x80,0x1e,0x96,0xfc,0x89,0xa7,0x1f, +0x1e,0xaf,0xdd,0xaf,0x8c,0xa7,0x8d,0xc6,0x39,0xc6,0x53,0xb7, +0x8f,0xbd,0xd9,0xaf,0x6c,0x0c,0xef,0x1b,0xf3,0xb3,0xc0,0x49, +0x4c,0x5e,0x5a,0xbb,0x5f,0x49,0x7b,0xa6,0xea,0x97,0x15,0xb4, +0x51,0x79,0x09,0x4a,0x79,0x13,0x67,0x0c,0xe8,0x6f,0x2b,0x51, +0xcc,0x97,0xa9,0x5f,0x54,0xa0,0x6b,0xbd,0xcb,0x9b,0x7c,0xc2, +0xd4,0xbe,0xe0,0x76,0x18,0xbf,0xaa,0x6e,0x83,0x5f,0xdd,0x16, +0xdf,0xcb,0xda,0x8e,0xe4,0x2a,0xe1,0x0c,0xfd,0xf5,0xbd,0x94, +0xce,0xb1,0xb4,0x41,0x82,0x11,0xef,0x72,0xed,0xf5,0x67,0x5a, +0x3d,0xdf,0x08,0xf0,0xc3,0x60,0x65,0xc1,0xd0,0x41,0x5d,0x2d, +0x03,0x9e,0xd5,0x6e,0x90,0xd0,0x96,0xce,0x8e,0xec,0xc4,0xfc, +0xf3,0xe6,0x0a,0xff,0x00,0x5c,0xdb,0xcf,0x1c,0xe2,0x8e,0x31, +0x55,0xde,0xc4,0x82,0xcb,0xc7,0xf2,0xf6,0x14,0x98,0x38,0xb3, +0x65,0x10,0x60,0xcc,0xb7,0x6e,0x45,0x76,0x56,0x63,0x79,0xcb, +0x0f,0x48,0x94,0x29,0x15,0x74,0x4d,0xc8,0x5f,0x6f,0x77,0x25, +0xb6,0xdb,0x49,0x6f,0xb7,0x55,0xec,0xdb,0x1b,0x33,0x19,0x49, +0x39,0x45,0xe6,0x8b,0x01,0x81,0x92,0xfb,0x82,0x90,0x81,0xbd, +0x2d,0x03,0x7f,0x8c,0x41,0x87,0x81,0xe0,0xad,0x37,0x8b,0xeb, +0x82,0x22,0xf3,0xf9,0x80,0x60,0x09,0x9a,0xbc,0x17,0xe4,0x81, +0x36,0x98,0x37,0xf1,0xf4,0xb9,0x63,0xd9,0x7b,0x73,0xad,0xfb, +0xab,0xa8,0xae,0xae,0xc6,0x53,0x85,0xc7,0x32,0xbf,0xcd,0xb1, +0x85,0x2e,0x6a,0x01,0xb7,0xcc,0x44,0x7b,0x60,0x70,0x1b,0x8a, +0x38,0x3b,0xc2,0x10,0xb4,0x4e,0x70,0xd7,0x68,0x8c,0x6c,0x47, +0xd0,0x77,0xe9,0x9a,0x2c,0x1b,0x56,0x8a,0x46,0xe0,0xab,0x6f, +0xba,0xb6,0xe1,0x8e,0x01,0x2c,0xa7,0xc4,0x5c,0x1e,0x30,0x4c, +0x6a,0xb1,0x20,0x78,0x70,0x4f,0xcb,0x80,0x47,0x31,0x9b,0x23, +0xd7,0xab,0xd9,0xec,0xcb,0xf4,0x84,0xec,0x22,0x9c,0x1d,0x41, +0x18,0x47,0xbe,0x17,0xe8,0x01,0x76,0xd4,0xe5,0xf3,0x29,0x39, +0x7b,0xf3,0xb1,0x6d,0xeb,0x50,0xf5,0x30,0xe6,0x17,0x1d,0xcb, +0xa6,0x2d,0xd0,0x4d,0xda,0x16,0x28,0xf6,0xfa,0x0e,0x79,0x28, +0xf1,0x1d,0x0d,0x8a,0x50,0xd4,0x96,0x90,0x4e,0x5f,0xae,0xd1, +0x62,0xf3,0xf1,0x32,0x36,0xdc,0x3b,0x9f,0xf6,0x46,0xf3,0x4d, +0x5c,0x0e,0x66,0xb6,0xca,0x46,0xb5,0x33,0x67,0x37,0xa8,0xc8, +0x56,0x6d,0x94,0x66,0x92,0xd4,0x59,0xf0,0x19,0x37,0x7b,0xd1, +0x97,0xcb,0xb5,0xca,0xe6,0x73,0x9b,0x97,0x4c,0xb4,0x87,0x7f, +0x1d,0xd1,0x52,0x2b,0xbc,0x14,0xbf,0x73,0x53,0x85,0x96,0x88, +0xd1,0xf9,0x90,0x2c,0x2c,0x9e,0x77,0xa0,0x19,0x18,0x3d,0x7b, +0x80,0x05,0xf8,0xd3,0xee,0xc2,0x28,0x9a,0x3d,0xbd,0x2b,0xb8, +0x45,0xb5,0x5b,0x28,0x1f,0x93,0xee,0x15,0x9d,0xba,0xff,0x43, +0xd1,0xe8,0x6e,0x96,0x19,0x52,0xf7,0xb0,0x70,0xdf,0xae,0x61, +0xa7,0xef,0x5a,0xf2,0xd5,0x3a,0x74,0xf1,0x0e,0x17,0xd6,0x8e, +0xcb,0x79,0x33,0x1f,0xa6,0x84,0x60,0x4d,0x73,0x64,0xc1,0x3d, +0xbf,0xd7,0x6a,0xea,0x05,0x9c,0x3b,0x2d,0x66,0x29,0xd2,0xed, +0xa2,0x7c,0x7c,0x78,0x4c,0x4f,0xcb,0x7b,0x52,0x8f,0xb0,0x31, +0xf8,0x70,0xfe,0x1d,0x8b,0xb2,0x5c,0x9d,0x5b,0x13,0xa2,0x25, +0x7c,0x74,0x9e,0x2e,0x8b,0xa6,0x9e,0xb7,0xa1,0x19,0x6f,0x84, +0xa1,0x73,0xb3,0xa7,0xb7,0x45,0x33,0x8b,0xca,0x16,0xcb,0x07, +0xa5,0xdb,0xc5,0x79,0xf7,0x7f,0x28,0x1e,0xdb,0xd3,0x32,0x87, +0xdb,0x8d,0x67,0xca,0xf7,0x50,0xa4,0x26,0xd3,0xd5,0x4f,0xe7, +0x8f,0xd5,0xd5,0x0c,0x7d,0xd5,0x2b,0xfd,0xf6,0xab,0xf3,0x3c, +0x35,0x81,0x72,0xd9,0x2c,0xd7,0xef,0xbf,0x3a,0x1f,0x94,0x85, +0xec,0x79,0x4b,0x93,0xa1,0x37,0x79,0x9f,0xa7,0xbd,0xb5,0xde, +0xdc,0x12,0x32,0xd6,0xbb,0x44,0xe6,0x4e,0xb3,0xd8,0x1c,0x89, +0x37,0x72,0x67,0x8f,0xd5,0x5f,0xb4,0x5b,0xb2,0x7f,0x88,0x95, +0xea,0x17,0x0c,0xe6,0x57,0x3b,0xd5,0x7c,0xf6,0xe6,0xdf,0x62, +0x93,0x1a,0x20,0xa3,0x33,0x6e,0x3e,0xb4,0x26,0x8b,0x91,0x53, +0x16,0xad,0x11,0x99,0x1b,0x3d,0x67,0xea,0xc4,0x4a,0x31,0x46, +0x4b,0xe0,0xe0,0x3c,0xe7,0x95,0x91,0x29,0x2f,0x21,0x51,0x86, +0x77,0x43,0xc5,0xbb,0x06,0xf5,0x4b,0x38,0x26,0x2f,0x15,0x36, +0x62,0x9a,0xf8,0x1c,0x0e,0x84,0x89,0x19,0x50,0x1f,0xa6,0xc1, +0x60,0x37,0x76,0xd0,0xf0,0x6b,0x25,0xb7,0xcb,0x63,0xbd,0x57, +0x78,0xb9,0x88,0xcf,0xb9,0xa5,0x23,0x3b,0xad,0x3a,0x49,0x62, +0x2c,0x7c,0x26,0xc7,0x18,0xc6,0xcf,0xde,0x9f,0x97,0x77,0x98, +0x3b,0x2d,0xd5,0x2e,0xe9,0x3a,0x1f,0xc3,0xce,0x55,0xa8,0xf7, +0xad,0x97,0x74,0x9d,0x0f,0xc8,0xc2,0xa8,0x69,0xc7,0x51,0xd5, +0xb5,0x63,0xd4,0xb4,0x73,0xf8,0x8d,0x76,0x66,0x6b,0xda,0x39, +0xa6,0xba,0x5a,0x2f,0xe7,0x3a,0x47,0xc9,0xa2,0xb9,0xe7,0x5d, +0x4d,0x01,0xdd,0xa1,0x39,0x58,0x68,0x38,0x79,0xa3,0x69,0xec, +0x5e,0xd1,0x69,0x1c,0x88,0x70,0x1a,0xc5,0x6e,0xfa,0x28,0xde, +0xb3,0x28,0xf5,0xd5,0x21,0xfa,0xb5,0xdc,0x3f,0x60,0xad,0x8c, +0x0d,0xdc,0x11,0x66,0x6e,0x17,0xc0,0x5c,0xa1,0x8d,0x88,0x96, +0xef,0xe8,0xe3,0xde,0xc3,0x32,0x0b,0x87,0x6e,0x34,0x3e,0x71, +0x0a,0x87,0x6e,0xa7,0x3a,0x56,0xbf,0xac,0xeb,0xfc,0x19,0x8d, +0xc3,0x2f,0xf0,0x0d,0xdd,0x5f,0x24,0xd1,0x53,0x78,0xd3,0x7d, +0x6f,0x46,0xa4,0x95,0xba,0x4c,0xbf,0xaa,0xab,0x8d,0xd7,0x19, +0xf8,0x45,0x8d,0xa5,0x44,0x0e,0x8f,0xc1,0x4c,0x19,0x2b,0xcd, +0xdc,0x66,0x14,0x53,0x0b,0x06,0xc8,0xd0,0xa0,0x87,0x0f,0x51, +0x04,0xdc,0xf1,0x11,0x0d,0x44,0x83,0x3b,0x8f,0xe8,0xdd,0x91, +0x1e,0x8f,0xa0,0x81,0x2b,0xce,0x8c,0x87,0x32,0xd8,0x8f,0x1d, +0x3e,0x60,0xc0,0xd8,0x42,0x61,0x6f,0xf9,0x59,0x12,0xf6,0x79, +0x67,0xaf,0x5c,0xc9,0x1b,0x01,0xf6,0x16,0x07,0x2d,0x73,0x44, +0x53,0x6b,0xe6,0x88,0x8f,0x44,0x53,0x58,0x72,0x95,0x9b,0x46, +0xb2,0xa7,0xf0,0x67,0x6d,0x3e,0xcb,0xa6,0xaf,0xb3,0x57,0x34, +0xad,0xcd,0x5e,0xd1,0x59,0xd4,0xc8,0xc2,0xb5,0xd7,0x6d,0x74, +0xb4,0xac,0x57,0x4f,0x70,0x05,0xd7,0xef,0x7b,0x08,0x26,0xd8, +0xf7,0x77,0x84,0xab,0x05,0xae,0xcd,0x97,0x4f,0x4b,0xdf,0x67, +0xe7,0x5d,0xbd,0x9a,0x3d,0xb6,0x97,0x25,0x5c,0xea,0x3d,0x61, +0x4c,0x40,0xc0,0x84,0xfc,0x5b,0x16,0x31,0x54,0xdd,0x76,0x88, +0x09,0x57,0x26,0x46,0xab,0x77,0xe8,0x76,0x05,0x7c,0x8a,0x75, +0xce,0x1c,0xa0,0x46,0x5e,0x11,0xf3,0xb0,0x9d,0x85,0xda,0x5d, +0x8b,0x6a,0x48,0x14,0x1b,0x98,0x68,0xa0,0x5e,0xa4,0xbb,0x16, +0xb8,0xd2,0x6e,0x4a,0x14,0x71,0x33,0xae,0x88,0x49,0x58,0x64, +0x86,0x76,0xf3,0xa2,0x1a,0xe2,0x45,0x3c,0x53,0xfe,0x50,0x1d, +0x6b,0x13,0x5e,0x36,0x85,0xac,0xab,0xca,0x9d,0x80,0xda,0xbe, +0x44,0x6b,0x42,0xae,0xc0,0x59,0xf4,0x5a,0x48,0x0e,0xfc,0xfb, +0x9e,0x9a,0x90,0xb7,0x71,0x3e,0x42,0xc5,0x47,0xf2,0x29,0xe9, +0x66,0x4e,0x2e,0x0a,0x39,0xae,0x8f,0x65,0xb4,0xd4,0x67,0xc2, +0xd8,0x80,0x80,0xf1,0x79,0x37,0x2d,0xca,0x1c,0xb5,0x5b,0x12, +0xe3,0x4d,0xd7,0x60,0xcd,0x6a,0x50,0x6d,0x72,0xcc,0xa6,0x94, +0x0a,0x64,0x7b,0x40,0xad,0xc0,0x1f,0x6b,0xf5,0xc7,0xa0,0x9c, +0x4a,0x1b,0xd8,0xac,0xdf,0xcc,0x9d,0x2e,0xe6,0x69,0x48,0x60, +0xc7,0x60,0x55,0xc8,0xff,0x00,0x09,0xfe,0xcd,0x60,0xf9,0x44, +0x42,0x82,0x1e,0x58,0xd1,0xf0,0x37,0x73,0xb2,0x07,0xbd,0xd6, +0xd5,0xee,0x7f,0x35,0xa3,0x0a,0xb0,0xf0,0x98,0xd7,0x26,0x5f, +0x33,0x04,0xff,0x39,0xec,0x7f,0xcf,0xe4,0xbf,0xc5,0x47,0x46, +0xfc,0xef,0x9b,0x7c,0x01,0x8a,0x05,0xdf,0xfe,0xef,0x98,0x7c, +0x03,0xab,0xa8,0x56,0x93,0x7f,0xdd,0x4d,0xdd,0xd0,0xab,0xdb, +0xd4,0xfe,0x7b,0x1e,0x94,0xbe,0x60,0x55,0x9f,0xd3,0x46,0xd7, +0x4c,0xb0,0x88,0xb1,0x74,0x7f,0x40,0x14,0x09,0x0b,0xdc,0xd5, +0xef,0x0f,0xfc,0x9f,0xda,0x3c,0x82,0x8a,0x2f,0xdd,0x04,0xb6, +0xd0,0x4d,0x60,0xe5,0x05,0xed,0x06,0x37,0x87,0x79,0xda,0x99, +0x34,0x76,0x5a,0xb4,0xd3,0xaf,0xfc,0x7a,0xff,0x9f,0xd9,0xb8, +0xa2,0xdc,0xa5,0xeb,0xbe,0xcd,0xe9,0xba,0x6f,0x16,0x5d,0xf7, +0x55,0x33,0x59,0xcb,0x72,0x65,0x3a,0x84,0x31,0x31,0xff,0x07, +0xa6,0x54,0xdd,0x96,0xc1,0x01,0x7f,0x76,0x90,0xe0,0x88,0x76, +0x09,0x58,0xeb,0x9f,0x13,0x7e,0xf3,0xce,0x20,0x75,0x46,0xb9, +0xa8,0x83,0xb2,0xd8,0x96,0xbf,0x65,0xe4,0x1f,0xbd,0x87,0xd6, +0x87,0x5f,0x36,0x95,0x56,0xc2,0x4f,0x0b,0x29,0xab,0x8a,0x4c, +0xf2,0x36,0xe5,0x4e,0x1f,0x33,0x35,0x52,0x13,0x74,0x1d,0xd9, +0x61,0xd5,0x43,0xba,0x4b,0xdc,0x5c,0x98,0x24,0xd1,0x54,0xdd, +0x1b,0xfd,0xba,0xa0,0x4b,0xb9,0xb2,0x7d,0x90,0xf6,0x8b,0xf5, +0xb2,0xb0,0xb7,0x58,0xf9,0xf7,0xf2,0x01,0x6f,0x2e,0x0c,0x9f, +0x83,0x50,0x49,0x0c,0x8c,0x46,0xd7,0xe3,0xe8,0x02,0xa6,0x76, +0xde,0x30,0x15,0xa6,0x3c,0xf7,0x12,0x26,0xe1,0xfc,0xec,0x07, +0x11,0xb2,0xc9,0x55,0x84,0xaa,0x31,0x18,0x61,0x19,0xe0,0x89, +0xea,0x22,0x43,0x93,0xa0,0xa0,0xae,0x5d,0x83,0xcb,0x44,0x13, +0xcb,0x2d,0x49,0x34,0x29,0x2d,0xbb,0x7f,0xbf,0x2c,0x08,0x9a, +0x58,0xf4,0x04,0x29,0xa3,0x25,0x21,0x2d,0xe9,0x74,0x11,0x1a, +0xb8,0x80,0xb1,0x43,0x0f,0x34,0xa6,0xe6,0x3f,0xd3,0x24,0x70, +0x78,0x7c,0x55,0xd8,0x6f,0x76,0x15,0xe1,0x5a,0xca,0x56,0x03, +0xfc,0x82,0xb6,0x83,0x26,0xd5,0xb5,0x6b,0x28,0x9a,0xd4,0x51, +0xe9,0x87,0xe2,0x53,0xf7,0xef,0x17,0x8d,0xf6,0xb5,0xc0,0x67, +0x6a,0xeb,0x9a,0x01,0x4c,0xd9,0xa6,0xcc,0xa0,0xab,0xac,0x7f, +0x55,0x56,0xb5,0xf1,0x83,0x15,0x10,0x6e,0x10,0xce,0x51,0x3e, +0xd7,0x48,0xbc,0x66,0x1d,0x7c,0xa1,0x15,0xb4,0xfc,0xd9,0x57, +0x34,0x13,0xf6,0x0f,0xaf,0x08,0xfb,0x6d,0xae,0xaa,0xdd,0x56, +0x39,0x4d,0xfa,0xb1,0xa8,0x00,0xeb,0x18,0xd5,0xd9,0x32,0x5d, +0xea,0x12,0x36,0xb2,0x6b,0xd7,0xb0,0x33,0x0f,0x2c,0xa2,0xbb, +0xba,0x4f,0x7d,0xc9,0x94,0x64,0x25,0x46,0x16,0xe3,0x61,0x76, +0xa5,0x12,0xe9,0x07,0xef,0xc3,0xf8,0xb5,0x06,0x21,0x45,0x76, +0xbe,0x08,0x0d,0x51,0x4a,0xaf,0x5e,0xe0,0x02,0x2e,0x3f,0xf5, +0x44,0x29,0xed,0x7f,0x2c,0x17,0x76,0x5b,0x5c,0x55,0x9b,0x64, +0x59,0x73,0xbc,0x3f,0xdc,0x7b,0xed,0x78,0xbb,0xf9,0x6a,0x8e, +0x37,0x57,0x9d,0x57,0x83,0xb6,0xbc,0x9d,0xd8,0x44,0xc3,0x61, +0x44,0xa5,0x32,0x8e,0x6e,0xdf,0x8e,0x31,0xfc,0xb5,0xa8,0xf3, +0x39,0x60,0x2e,0x9a,0x13,0x76,0x7a,0x7c,0x45,0xd8,0x25,0xbb, +0xaa,0x2c,0x41,0x3e,0x20,0x7d,0x8f,0xee,0xfb,0x41,0xd1,0x98, +0x5e,0x96,0x0f,0xa8,0x96,0x2e,0xba,0xfb,0x36,0x42,0x71,0x0d, +0xa2,0xc7,0x6c,0xc6,0x9b,0x2d,0x60,0xc2,0x4f,0xbd,0x4a,0xf9, +0x3f,0x71,0x86,0x77,0x57,0x9f,0x69,0xaf,0x16,0x9d,0x62,0x30, +0xb4,0xda,0xb1,0xe6,0x89,0xfe,0xe7,0xb8,0x6a,0xc7,0xea,0x75, +0x74,0x2d,0xf8,0x03,0xd2,0xae,0x6d,0x94,0x4f,0x39,0x38,0x70, +0xa7,0x6d,0xac,0x27,0x6a,0xa0,0xe1,0xa3,0x8b,0xc2,0xb0,0xcd, +0x15,0x55,0xf5,0x71,0xa5,0xb2,0xc6,0x00,0xbf,0xc2,0x36,0x19, +0x27,0x5e,0x57,0x6d,0xe2,0x1d,0x92,0xee,0x56,0xf5,0x63,0xdd, +0xd1,0xe0,0xab,0x6d,0x6a,0xd3,0xd7,0x62,0x0d,0x36,0x11,0x38, +0x3e,0xf6,0x2e,0x1a,0x3e,0x38,0x3c,0x2a,0x17,0x86,0x2d,0xf4, +0x3c,0xa5,0xb4,0xa5,0x71,0x49,0x92,0x7b,0x84,0x8e,0xe9,0xaa, +0xc9,0x79,0x50,0x0b,0x3e,0xee,0x17,0xa3,0x0e,0xc4,0x6e,0xd5, +0x3f,0x93,0x86,0x65,0xa5,0x6c,0x2d,0xeb,0x47,0x95,0x19,0x84, +0x21,0xc2,0x47,0x53,0x63,0xb3,0x0e,0x3d,0xd1,0x33,0x99,0x7e, +0xee,0x81,0x42,0x39,0x3c,0xba,0x2c,0x6c,0x51,0x8d,0x76,0x9b, +0x65,0x14,0x01,0x11,0xe1,0x7e,0xf1,0xe8,0xee,0x96,0xf7,0xa5, +0xee,0xa1,0x9a,0x60,0x77,0x2d,0xe2,0x5b,0xb5,0xe5,0x08,0xaa, +0x6d,0x01,0xd5,0x96,0x59,0xa9,0xdc,0xf1,0x83,0x85,0x34,0xc8, +0x0d,0xa3,0x3a,0x5e,0x01,0x07,0xaa,0x4d,0xc3,0x21,0x34,0x1d, +0xea,0x22,0x0e,0x0a,0x0d,0xf2,0x76,0x1c,0x14,0x42,0xa4,0xfb, +0x84,0x48,0xef,0x21,0x22,0x8d,0xc2,0xda,0x0a,0x10,0x91,0xfc, +0xd5,0x81,0x35,0xdb,0x98,0x48,0x17,0x05,0x72,0x6d,0xdb,0x56, +0x85,0xf8,0x91,0xce,0x70,0xac,0xf5,0x1e,0x6b,0x42,0xba,0x80, +0x99,0x84,0x7c,0x03,0x57,0xf7,0x5f,0xc3,0x95,0xae,0x35,0xe5, +0xba,0x3a,0xb6,0xe6,0x67,0x92,0x2e,0x92,0xa4,0x8b,0xad,0x54, +0xb6,0xd2,0xc6,0x2f,0x56,0x63,0x1b,0xe9,0x73,0x09,0xec,0x49, +0xf5,0x3d,0x34,0xe3,0x2b,0x27,0xd5,0xab,0x76,0xdb,0x10,0x5b, +0x5f,0x57,0x34,0xfb,0xad,0x8a,0xea,0xc1,0xce,0x1a,0xad,0x9b, +0xb1,0x54,0xd1,0x7c,0x3d,0x91,0xef,0x7f,0x97,0xc7,0xe5,0xb5, +0xd2,0xec,0x74,0xa5,0x1d,0x96,0xee,0xe1,0xb8,0x75,0xc3,0xba, +0xba,0x87,0x71,0x1b,0x27,0x4a,0x51,0x31,0xfd,0x09,0x0d,0xdf, +0x4c,0x1a,0x3e,0xd4,0xf8,0x25,0x5d,0xe3,0x3d,0x50,0xe3,0xd6, +0x87,0x1f,0x5f,0x16,0x6c,0x33,0xf5,0xfa,0xd3,0x4a,0x65,0x05, +0x0d,0xe3,0x36,0xb9,0x7b,0x28,0x4e,0x2f,0x72,0x30,0x87,0x34, +0xb7,0x83,0x63,0xd0,0xcd,0x02,0x73,0xd4,0xa6,0xdc,0xcd,0x4b, +0xb3,0xbb,0x8b,0xf0,0xf2,0x37,0xc6,0xed,0xfe,0x85,0x91,0x40, +0xa5,0xb2,0xc4,0x0f,0x57,0x73,0xa3,0x0d,0xdc,0xfe,0x14,0x53, +0xd9,0x56,0x8c,0xf2,0xde,0x63,0xf3,0xa4,0xde,0xa1,0x63,0xbb, +0x76,0x09,0xcd,0x43,0x0f,0x1e,0x05,0x65,0x47,0xad,0x89,0x76, +0x6e,0xca,0x1d,0x0c,0x22,0x60,0x69,0x9f,0x5b,0xf0,0x8e,0x0b, +0x34,0xe8,0xa9,0x01,0xf1,0x6d,0x02,0xe2,0x7a,0xb7,0x6e,0x8b, +0x21,0x9b,0x5c,0x7f,0x56,0x27,0xea,0x39,0x77,0xfa,0xab,0xae, +0x32,0x34,0x1c,0x17,0x36,0x70,0xc0,0xb8,0x22,0xd1,0xd0,0xf2, +0x0c,0xb1,0x38,0xb7,0xf0,0xca,0xe5,0xdc,0xe1,0x14,0x7f,0x50, +0x36,0x9c,0xfa,0x70,0x42,0xfe,0xbd,0x36,0xcb,0x4d,0x4b,0x83, +0xb0,0x89,0xea,0x77,0xa1,0x85,0x0b,0xb0,0x3e,0x64,0x49,0xe6, +0x9b,0xe4,0xb5,0xeb,0xde,0xc0,0x7e,0x25,0xb9,0xc2,0x95,0xf5, +0x72,0x9e,0x74,0x33,0x3b,0xf7,0xea,0x15,0x72,0xdb,0x63,0xd1, +0x6d,0x8f,0x1b,0x10,0x30,0x21,0xf7,0xa6,0xe5,0x05,0x05,0x2c, +0x94,0x9c,0xa7,0xbe,0xa8,0xc6,0xca,0xac,0xb9,0x79,0xb0,0x32, +0xdb,0xa8,0x7e,0x17,0xad,0x95,0x21,0x86,0xdf,0x24,0x0c,0x7f, +0xe7,0xfa,0x55,0xe1,0x88,0x95,0x5d,0x5e,0x43,0x20,0x9e,0x95, +0x8f,0x95,0x8d,0x21,0x10,0xef,0x35,0x61,0xcc,0x80,0x80,0x89, +0xf9,0xdf,0x5b,0x44,0xb0,0x16,0xa8,0xb4,0x60,0x62,0xbc,0x1e, +0xa8,0xe8,0xd7,0x40,0x51,0xd0,0xa3,0xdc,0x78,0x82,0x41,0xc3, +0xea,0x7a,0x6f,0xee,0x81,0xe2,0xb7,0xfb,0xb9,0x11,0xa1,0x4a, +0x51,0x1d,0x16,0xe2,0xe2,0x26,0x87,0x64,0xc8,0x46,0x19,0x3e, +0xb8,0xac,0x44,0xeb,0x1d,0x32,0x44,0xfa,0xd5,0x76,0x08,0xc3, +0x10,0x6b,0x87,0xae,0x88,0x86,0xd4,0xa1,0xb5,0x18,0x87,0xdc, +0xd2,0x3b,0xd4,0x5b,0x8f,0x43,0xb0,0x43,0x14,0x87,0x7c,0x48, +0x71,0x48,0x3b,0x6a,0xda,0x80,0x15,0x2e,0xc6,0x0a,0xe7,0x5f, +0x56,0x22,0x79,0xf3,0x69,0x0c,0xae,0xc4,0xa1,0x16,0x6e,0x64, +0x67,0xe3,0x43,0x13,0xfa,0xa2,0x16,0xfa,0x4d,0x18,0x8f,0x0f, +0xe5,0x5c,0xb7,0x28,0x7f,0x51,0xc8,0xa2,0xdf,0x45,0xc5,0x87, +0xa2,0xf1,0xa1,0x39,0x97,0x95,0x85,0x03,0xe1,0x5d,0x94,0xa2, +0x7e,0x54,0xbf,0xf3,0x2d,0xb8,0xe3,0x57,0xd8,0xf8,0xf5,0x4b, +0xc2,0x36,0xd9,0xd5,0x2f,0x4e,0x7e,0xfd,0xe4,0x5b,0xf5,0x89, +0x1e,0x50,0xb6,0xdc,0x7a,0x99,0x7b,0x14,0xf4,0x0b,0x11,0xfd, +0x60,0xb8,0xf6,0xa1,0xa7,0x02,0x52,0x97,0x85,0xcb,0x60,0x7c, +0xed,0x1b,0x30,0xae,0x79,0xfe,0x13,0x7a,0xd3,0xa9,0xed,0x9e, +0x40,0x33,0x57,0xd1,0x0e,0x7e,0xc4,0xb5,0x42,0x70,0x90,0x2f, +0x39,0x06,0x99,0x1c,0x83,0x8c,0x8e,0xe1,0x87,0xd2,0x20,0x90, +0x2d,0x7a,0xb2,0xa0,0xc1,0x21,0x62,0x30,0x34,0xd1,0x3f,0xf4, +0x04,0xca,0x7b,0x21,0x91,0xf3,0x2f,0x59,0x61,0xb8,0x2f,0xc5, +0x17,0xc3,0xad,0xb3,0xf9,0x2a,0xfc,0x5b,0x27,0x8d,0x70,0xd6, +0xcb,0x36,0xd2,0x3f,0x4c,0xc4,0x1d,0x81,0x8f,0x6c,0xe0,0xe6, +0xe5,0xec,0x24,0x88,0x9a,0x7f,0x59,0x73,0x09,0x69,0xbf,0x72, +0xed,0xc3,0x00,0xe3,0x05,0x3a,0xbf,0x56,0x9e,0x3f,0x60,0x28, +0xd3,0xcc,0x93,0xfc,0x44,0xab,0xa7,0xe4,0x27,0x9a,0x3d,0xfd, +0x41,0xb4,0xc2,0x10,0xec,0x9f,0xf2,0x09,0x74,0x13,0x67,0x30, +0x42,0x19,0xd9,0xd9,0x32,0x8d,0xdc,0x84,0xaf,0xee,0x26,0x7a, +0xab,0xdf,0xa1,0x9b,0x10,0x16,0x26,0x7a,0xa9,0x4f,0x11,0x82, +0x5b,0xe3,0xc4,0x38,0xc4,0xa0,0x4e,0xa5,0x32,0x91,0x1a,0x5d, +0x2c,0xe2,0xd8,0xef,0xea,0x2f,0x1a,0x0a,0xff,0xb7,0x1f,0x94, +0x0a,0xb5,0xc5,0x53,0x2d,0x35,0x91,0x1f,0x83,0xa6,0x74,0xf1, +0x1b,0x7f,0x58,0xcf,0x1b,0x6e,0x66,0x3f,0xab,0x77,0x75,0xd8, +0x6d,0x00,0x83,0x43,0x51,0xca,0x86,0xfa,0x87,0xbd,0x96,0x3c, +0x7c,0x2f,0xac,0xe4,0xe6,0x65,0x4c,0xb9,0xa0,0x5a,0xb0,0x1f, +0x55,0xff,0xa5,0x10,0x75,0x85,0xc9,0xc2,0x45,0xb9,0xce,0x08, +0x21,0x9e,0xf6,0xd0,0x7a,0x71,0x47,0xb8,0xf0,0x16,0x9f,0x31, +0xeb,0xbc,0x16,0xfb,0x55,0xb7,0x11,0xd6,0x5c,0x46,0x6f,0x69, +0x97,0x1e,0x6d,0x44,0x8a,0x2d,0xd2,0x14,0xeb,0x1b,0xa6,0x15, +0xff,0xc1,0xa2,0x0c,0xd2,0x60,0xb2,0x6a,0xa2,0xd8,0x29,0xa3, +0x94,0xbc,0x55,0x43,0xa6,0xf6,0xf6,0xaa,0x8d,0xe0,0x5a,0xbe, +0x67,0x8d,0xe0,0xb8,0x47,0x47,0xa6,0x81,0xce,0xf7,0xea,0xb8, +0xd7,0x79,0xa5,0x35,0xc9,0x1a,0xbd,0x96,0xcc,0x91,0x7a,0xa7, +0x48,0xf0,0x35,0xc2,0x1b,0x29,0xcd,0x17,0x95,0x66,0x4b,0xbc, +0x0e,0xf6,0x7a,0x49,0xc7,0xd7,0x25,0xed,0x65,0x61,0xa6,0x3e, +0xe0,0x84,0xe6,0xce,0x06,0x5c,0xb7,0xe0,0x28,0x2c,0x96,0x09, +0x91,0xd0,0xb1,0x14,0x8d,0xe9,0x46,0x5e,0x41,0xc3,0xb8,0x2b, +0x84,0x46,0x94,0xcb,0xbc,0x1e,0x0c,0x0e,0xc3,0x2a,0x6c,0xb5, +0x0f,0xaa,0xc2,0x0e,0x75,0x2c,0x62,0xa1,0xe4,0xa8,0x96,0x1c, +0x69,0x07,0x4c,0x97,0xa1,0xb1,0xe1,0xe1,0x07,0xc1,0x27,0x7a, +0xe3,0xd4,0xea,0xa5,0xe1,0xcf,0xf7,0x1d,0x05,0xbb,0x53,0x96, +0xf1,0x6c,0xbf,0x16,0x01,0xea,0x59,0x92,0x86,0xa8,0x2d,0xb5, +0x50,0x10,0xe1,0x87,0x42,0xc1,0x17,0x04,0x3f,0x45,0x57,0x2e, +0xe7,0x85,0x21,0xfc,0x5c,0x02,0x17,0x79,0xc3,0xde,0xb8,0xef, +0xf6,0x9b,0x0f,0xaf,0x3e,0xb0,0xea,0x5f,0x16,0x51,0x0f,0x86, +0xe9,0xf9,0x93,0x9a,0x8b,0x2f,0x65,0x61,0x82,0xe5,0x5a,0xfe, +0x24,0x13,0xb8,0x19,0xce,0xbe,0x3f,0xe2,0x40,0x00,0xcd,0xe1, +0x1e,0xe0,0x86,0x38,0xd2,0x5d,0xb0,0x1b,0xc5,0x47,0xcf,0x1f, +0x74,0x85,0xcc,0xc7,0xf2,0x19,0xe9,0x76,0xb6,0x86,0x22,0x3d, +0x2d,0x23,0xa5,0x9e,0x84,0x22,0x13,0xf2,0x6f,0x5b,0x14,0xbf, +0x97,0xc4,0x31,0x63,0x90,0x36,0x7c,0x15,0xf7,0xf5,0x2e,0xf3, +0xb7,0xab,0xf7,0xac,0xd8,0x65,0x81,0x46,0x6a,0xcd,0x21,0xd6, +0x05,0xa7,0xf5,0x15,0xca,0xce,0x65,0xe1,0x4d,0x87,0x30,0xb7, +0x6a,0x73,0x19,0x13,0x3b,0x19,0x48,0xd5,0x9d,0x30,0x22,0xfc, +0x27,0x6d,0x28,0x25,0x5f,0x21,0xc0,0x71,0x53,0x1b,0x52,0x01, +0x18,0x51,0xdd,0x2e,0xc1,0xfa,0xc3,0xe2,0x2b,0x84,0x39,0x2d, +0x54,0x1b,0x2e,0xa3,0xdb,0xce,0x57,0x67,0x2e,0xa4,0xda,0xee, +0x60,0x6d,0x16,0x31,0x85,0x28,0x86,0xec,0x2f,0x29,0xd1,0x68, +0x5b,0x28,0xf2,0x99,0x5a,0x91,0x7b,0x52,0xf8,0x45,0xb0,0x73, +0xbd,0xe4,0x48,0xd9,0x01,0x57,0xc8,0x78,0x24,0x17,0x20,0xe8, +0xe4,0x5d,0xbd,0x92,0x33,0xb6,0xb7,0x65,0x94,0xd4,0x7b,0xbc, +0x06,0x3a,0x18,0xbd,0xfa,0x3d,0x97,0xa1,0x29,0x48,0x6c,0xa7, +0x79,0xcf,0xea,0xdd,0x2b,0x77,0x52,0xdc,0x94,0x9c,0xf4,0x96, +0xb8,0xb8,0xa2,0x82,0xc6,0x97,0x08,0x86,0xce,0x32,0x48,0x7f, +0x82,0xd8,0x75,0x3d,0x27,0x07,0xab,0x19,0xdf,0xcf,0x32,0x9a, +0x7b,0x8c,0x61,0x8f,0x78,0x4b,0x0f,0xe2,0x9f,0xc7,0x00,0x14, +0x1f,0xda,0xae,0x3d,0xd4,0x8a,0x1e,0x72,0xb8,0xa4,0x2c,0xe4, +0xcd,0x5a,0xe1,0xc2,0x12,0x83,0x4d,0x2d,0xc3,0xd4,0x44,0x49, +0x8c,0xdc,0x7c,0xff,0x37,0xe1,0x60,0x16,0x72,0x5b,0x51,0x07, +0x3d,0xeb,0xdc,0xb6,0x50,0x07,0x4d,0xd8,0xe1,0xbe,0xbb,0x18, +0x19,0x6d,0x81,0x89,0x5a,0xc2,0x29,0x59,0xe9,0x2b,0xef,0x92, +0xee,0x5f,0xbc,0x21,0x7a,0x8a,0x9e,0x17,0xfb,0x76,0xb5,0xfc, +0x53,0xea,0x3a,0x84,0x5e,0x9b,0xee,0x39,0xe4,0xc6,0x7d,0x8b, +0x9e,0x1e,0xfc,0x81,0x24,0x86,0x25,0xde,0xbe,0xfa,0x13,0xb7, +0x1b,0xcc,0xbc,0x6e,0x07,0x88,0x61,0x4b,0x2d,0x5d,0x66,0xb2, +0x6a,0x5b,0x91,0x2c,0x6f,0x95,0xb8,0x9b,0x13,0xeb,0xaf,0x7e, +0xaa,0x67,0x08,0xff,0x41,0xbe,0xae,0x97,0x7d,0x6a,0xfe,0xc5, +0xfb,0xc6,0x04,0xd6,0xb7,0x8d,0xa7,0x5e,0xbe,0x1f,0xdd,0x3a, +0xb7,0x15,0xeb,0xe4,0x6d,0x12,0xb7,0xdd,0xc5,0x22,0xa4,0xe1, +0x41,0x63,0xe7,0xb2,0xbc,0x42,0x4b,0x7b,0x75,0x46,0x8d,0x9d, +0x9e,0x34,0xfc,0xa1,0xf6,0xe8,0xcd,0x17,0xe6,0x3f,0xbc,0x6e, +0xc3,0xbb,0xf0,0xae,0x57,0xcf,0x96,0x6d,0x6f,0xf7,0xa1,0xa7, +0x3b,0xe9,0x4f,0xef,0x92,0xb7,0x4b,0x65,0x65,0x05,0xc2,0x47, +0xf8,0x94,0x8d,0x0a,0xb2,0x2c,0x91,0x82,0x82,0x46,0xcd,0x65, +0x05,0x65,0x96,0x2f,0xd4,0xce,0xb5,0x29,0xc5,0xef,0x69,0x95, +0x5c,0xfe,0xc9,0xfc,0xc2,0xbb,0x62,0x02,0xeb,0xdf,0xd6,0xeb, +0xf6,0x00,0x11,0xb8,0xcc,0xd2,0x6d,0x33,0x55,0xf0,0x05,0xca, +0x7b,0x56,0xf9,0x95,0x8d,0xb0,0x44,0x82,0x0f,0x4b,0x52,0x3f, +0xa0,0x1c,0xe3,0xcd,0xf2,0x59,0xb2,0x7a,0xbf,0x1a,0xfd,0xf3, +0x35,0xb6,0xba,0xda,0xff,0x12,0x7d,0x46,0x55,0xfb,0xf3,0x86, +0x16,0xfa,0x4b,0xf9,0x87,0x1a,0xf3,0x8b,0xf6,0xc7,0x10,0x35, +0xf7,0x1c,0xfd,0x21,0xf2,0xa1,0xba,0xfa,0x1b,0xa6,0xa5,0x14, +0xbf,0xab,0xb5,0x76,0x05,0x35,0x33,0x48,0xd3,0x0c,0xb6,0xd4, +0x5d,0x95,0xbc,0x6a,0xdb,0xe2,0x6e,0x8e,0x6c,0x68,0xb5,0x0f, +0xe5,0x16,0x6f,0x70,0x99,0x29,0x03,0xd5,0xcf,0xf4,0xdc,0xe2, +0xb7,0xe5,0x1b,0xda,0x83,0xd7,0x9e,0x9a,0x7f,0xf5,0xbe,0x39, +0x81,0xf5,0x69,0xed,0x79,0xdb,0x5f,0x04,0x2e,0xb5,0xf4,0xd5, +0xc4,0x8c,0x43,0x2d,0x15,0x95,0xe5,0x6b,0xfd,0x1c,0xc3,0x1d, +0xfd,0x98,0x58,0xab,0x7e,0x57,0x9b,0x6f,0xfc,0xb6,0xde,0xe4, +0x13,0x6a,0xd2,0x5b,0x6f,0xb2,0xa7,0xf6,0x54,0xbc,0xbc,0x45, +0x2a,0xc4,0xce,0x0d,0xb7,0x44,0xa1,0x76,0xc7,0xcf,0x65,0x39, +0x85,0x16,0xf1,0x11,0xce,0xb4,0x7f,0x30,0xde,0xdc,0xc8,0xc2, +0xaa,0xce,0x14,0x49,0xd5,0x92,0x58,0xc4,0xa5,0x7d,0xec,0x16, +0x40,0xf5,0xef,0xda,0xad,0xfa,0x13,0x94,0x52,0xab,0xaf,0x84, +0x21,0xd1,0xdd,0x4a,0x61,0x6b,0x16,0x8d,0x5a,0xdf,0x22,0x27, +0xea,0xd1,0x1b,0x61,0x48,0xba,0xdb,0x4f,0xd8,0x45,0x59,0xa0, +0xbf,0xb4,0xaa,0x4f,0x2f,0x2d,0xbf,0x56,0x40,0x8c,0xcf,0xd2, +0xb6,0x2b,0x4d,0x30,0x06,0x57,0x6f,0xdf,0x48,0xb7,0xce,0xe5, +0x3f,0x79,0x7c,0x7e,0x4c,0x6f,0xcb,0xa7,0x52,0xaf,0x61,0x63, +0x3b,0x7a,0x07,0xe6,0x7d,0x6f,0x71,0xe0,0xf6,0x4b,0xd9,0x13, +0x0c,0x7e,0x93,0x6f,0x96,0x3c,0x33,0x8b,0x3a,0x1d,0xce,0x81, +0x11,0x4c,0x1d,0x02,0xa1,0x4e,0xfb,0x9b,0x21,0xc2,0x26,0xc6, +0xd2,0x81,0x3b,0x99,0x28,0x21,0xd4,0x09,0xee,0x36,0x9e,0x7d, +0xab,0xce,0x50,0xbe,0x66,0x94,0xfa,0xfc,0xa5,0xf6,0x48,0xe9, +0x2f,0x66,0x51,0xb7,0xc3,0x05,0xed,0x91,0xa1,0x50,0xb7,0xcd, +0xcd,0x60,0x7a,0xa4,0x25,0x65,0x42,0x9f,0x2c,0x4e,0xcb,0x3b, +0xa4,0x0b,0x25,0x69,0x0f,0x7f,0x2c,0x99,0x3e,0xd4,0xb2,0x58, +0x1a,0x1a,0x32,0xbd,0x73,0xa7,0x90,0xb4,0x0b,0x16,0xd1,0x50, +0xed,0x40,0x37,0xeb,0xc7,0xd0,0xab,0x1a,0xd7,0x5f,0x0d,0xa5, +0xbf,0x4a,0xaa,0x7b,0x56,0x61,0xb4,0x20,0x85,0x21,0xd0,0x71, +0x43,0x08,0xcb,0xae,0x76,0x7f,0x85,0xa3,0xd0,0x64,0x0d,0x53, +0xf6,0xaa,0x0b,0x5f,0x59,0xb0,0xcd,0x5d,0xec,0xe7,0xff,0x1b, +0x31,0xdb,0x72,0x27,0x23,0x35,0x9a,0x4e,0x62,0x8a,0x67,0xea, +0x2e,0x71,0xb4,0x36,0xf7,0x7a,0x08,0x53,0xd6,0xa8,0x29,0x6f, +0xe5,0x5e,0x0f,0x61,0xe2,0x9a,0x2a,0x55,0xdd,0x65,0x4a,0x6f, +0x06,0x87,0xdd,0x78,0xd3,0x69,0xec,0x98,0x3a,0xee,0xd5,0x1c, +0xf6,0xea,0x38,0x53,0xb7,0xa8,0x8a,0x8c,0xab,0xd5,0xdf,0xb7, +0x5e,0xbe,0x2c,0xea,0x9a,0x45,0xc3,0x2e,0xb8,0xba,0x02,0xa7, +0x2e,0x94,0xdf,0xfd,0x9d,0x2b,0x03,0xff,0x44,0xf5,0xfa,0xbd, +0x4e,0xd0,0x3e,0x40,0xcb,0xe1,0x15,0x20,0x5e,0xe2,0x94,0xbc, +0x79,0x3a,0xeb,0xce,0xed,0x82,0x89,0x7d,0x70,0x42,0xf6,0x1d, +0x35,0xa1,0x67,0x8f,0xf0,0xec,0x1b,0xa4,0xdc,0x56,0xec,0xb1, +0xf4,0x5b,0xf2,0xa5,0xe2,0x9f,0xcd,0x7f,0xfa,0x96,0xe2,0x52, +0xd7,0xd1,0x37,0xb8,0x45,0xfb,0xf2,0xd0,0x3f,0x62,0x2d,0x1d, +0xa2,0x98,0xea,0x24,0x8e,0x71,0xb7,0x49,0xec,0x91,0x3a,0x41, +0x89,0x66,0xbc,0xc5,0x12,0x56,0xdd,0x08,0x97,0xa4,0x76,0x22, +0x4c,0x1e,0x19,0x33,0x78,0x99,0xdf,0x4a,0xdb,0x97,0xd2,0x6f, +0x9b,0x2f,0x61,0x8f,0xff,0xf2,0x2d,0xd3,0x1e,0x0e,0x72,0x6b, +0x57,0x1e,0xf2,0x47,0x8c,0xa5,0x05,0xb7,0x09,0x60,0x21,0x36, +0xa2,0xbf,0x08,0xac,0xce,0xa3,0x7a,0xf2,0x48,0xd9,0xf9,0xc7, +0x6f,0x7f,0x9f,0xff,0xae,0xa6,0xec,0x31,0xff,0xe8,0xd5,0x73, +0x4c,0x2a,0x2a,0xdb,0x5f,0x7d,0xf6,0xe6,0x16,0xbe,0x6d,0x5b, +0xa6,0xee,0x2b,0x17,0x51,0xbc,0xd1,0x4a,0x26,0x41,0xb1,0x1a, +0xca,0x0d,0xa3,0x99,0xa8,0x57,0xdd,0x88,0x3b,0x18,0x51,0xc5, +0x4e,0x4c,0xf5,0xe5,0x4d,0xd1,0x75,0xff,0xae,0x7e,0xf8,0x6a, +0x00,0xe3,0xfc,0x11,0x7b,0xfa,0xbf,0x90,0xbe,0x6d,0x75,0x24, +0x35,0x9b,0x4a,0xe2,0x2b,0x53,0xd4,0x8d,0x62,0x14,0xab,0xbe, +0xc0,0x60,0xf5,0x65,0xe5,0xd4,0x40,0xa5,0x84,0x81,0xdd,0x1f, +0x54,0xb5,0xf2,0x93,0xba,0x9b,0x6e,0xcf,0xd3,0x4f,0xeb,0x2e, +0x2b,0x67,0xb8,0xe3,0x12,0xf6,0x9b,0xf6,0x83,0xab,0x5a,0x8f, +0x37,0x4c,0xa4,0x7b,0x3e,0xbd,0x28,0x89,0x3d,0x5a,0x34,0xdb, +0x7c,0xef,0xba,0x66,0xd1,0x1e,0x64,0xd1,0xcd,0xad,0x16,0xed, +0x27,0xec,0x22,0x35,0x8b,0xee,0xd5,0x6d,0x6d,0x4f,0xfd,0x12, +0x7d,0x87,0xa5,0xee,0x6f,0x4c,0xfa,0x7c,0xfe,0x93,0x27,0xaf, +0x4d,0xda,0xdb,0x7b,0x98,0x66,0xd2,0x0e,0xc1,0xa8,0x75,0x21, +0x25,0xdf,0x2a,0x25,0x5b,0xe1,0x76,0x71,0x18,0x99,0xb4,0xbf, +0x15,0x2c,0x0c,0x64,0xce,0xf5,0x57,0xb3,0xe4,0x3d,0xc2,0xc7, +0x55,0x9d,0x47,0x36,0x3d,0x81,0x1d,0x42,0x9b,0xde,0xc9,0xb8, +0xc3,0x6c,0xb2,0x69,0x7a,0x86,0x6c,0xba,0xfd,0x05,0x5a,0x10, +0xb5,0x27,0x9b,0xd6,0x9f,0x6b,0xc1,0x25,0x74,0xb7,0x9a,0x49, +0x97,0xa6,0x3d,0x7a,0x5c,0xaa,0x9b,0x74,0xf0,0xf4,0x8e,0x3e, +0xc1,0x64,0xd2,0x4d,0xd5,0xdf,0x94,0xa5,0x4c,0xd8,0x32,0xe1, +0x5c,0xdd,0x1d,0xb6,0x30,0x2e,0xb7,0x62,0x05,0xaa,0xcb,0xab, +0xf1,0xf8,0x17,0xf1,0xc7,0xab,0xf6,0xaf,0x7a,0x63,0x1b,0xb3, +0xc8,0x86,0xff,0xa3,0x5c,0x6d,0xa5,0xd5,0xbd,0x7b,0x68,0xb9, +0xd7,0xe6,0x89,0x0c,0x12,0x4b,0x69,0xa3,0xee,0xd0,0x2f,0xd2, +0x43,0x7b,0xc1,0x78,0xd3,0xf7,0x98,0x92,0xa7,0x1e,0x11,0xcd, +0xb1,0x96,0x99,0xec,0x01,0x77,0xf5,0x61,0x1d,0x35,0x91,0x8e, +0x72,0xb7,0x71,0x4c,0x3c,0x42,0x7b,0xbe,0xc7,0x94,0x91,0xe2, +0x6b,0x59,0xcc,0x7d,0xf1,0x97,0x68,0x82,0x4e,0xe4,0x4f,0xcd, +0x87,0xb4,0x40,0x17,0xd2,0xe4,0x85,0x9b,0x98,0xeb,0x0a,0x91, +0x62,0xad,0xfc,0xc3,0xc5,0xeb,0x9a,0xe7,0xe8,0xe7,0x8b,0x86, +0xea,0x3b,0xc4,0x4f,0xf3,0x1c,0x95,0x18,0x05,0x0d,0xa0,0xec, +0x89,0xfe,0xfe,0xe0,0x0f,0xeb,0x85,0x7f,0x7f,0xfc,0x78,0x8f, +0xde,0x3e,0x69,0x24,0xae,0xe2,0xda,0x51,0xaa,0x38,0x70,0x38, +0xaf,0x84,0xdc,0x49,0xc8,0xe1,0xb1,0x15,0x1f,0x58,0xd0,0x12, +0xe6,0xb5,0x27,0x0c,0xdb,0x8a,0xa0,0x59,0x58,0x96,0x47,0xc8, +0x77,0x6e,0xec,0x70,0x4b,0xa4,0x34,0x3c,0x50,0x77,0x13,0x2f, +0xa1,0xab,0x12,0xcf,0x5a,0x43,0x8c,0x04,0x83,0xe0,0x63,0x6e, +0xdb,0x92,0x61,0x55,0x69,0xb2,0x68,0x22,0x55,0x1c,0x3c,0x5c, +0x70,0xee,0x2d,0x97,0x11,0x78,0x78,0x54,0xc5,0x1c,0x0b,0xc6, +0x68,0xf3,0x34,0x18,0xfe,0xf6,0x8d,0xcf,0x38,0xa7,0xfb,0x8c, +0xc0,0x91,0xe0,0x03,0x3e,0x41,0x67,0xca,0xb0,0xd2,0xbe,0xf2, +0xf2,0x43,0xc7,0x57,0x9d,0x74,0x39,0x79,0x7c,0xc3,0xa6,0x43, +0xae,0x2d,0xb1,0xfa,0xf6,0xd0,0x02,0x5d,0x49,0xf5,0xd7,0xac, +0x13,0x28,0xe8,0x13,0xb0,0x95,0x3b,0xb2,0xb0,0x93,0x2a,0xf6, +0x1f,0xce,0x2f,0x26,0xc8,0x0d,0x3d,0x3c,0xa6,0x62,0xae,0x05, +0xec,0xac,0xd5,0x27,0x68,0x02,0xe7,0x6a,0xd5,0x8f,0xd3,0x05, +0x1e,0x37,0x97,0xe5,0x92,0xc0,0x5d,0x50,0xe0,0x0e,0x24,0x70, +0x5f,0xb5,0xb3,0xe6,0x01,0xba,0x32,0x71,0x07,0x96,0xa3,0x07, +0xc0,0x4a,0xaf,0xcb,0x42,0x22,0x2d,0xe4,0x97,0xd4,0x7a,0x80, +0x10,0xac,0x18,0x35,0x21,0x11,0xf3,0xb4,0xb5,0xe2,0x62,0xdd, +0x07,0x9c,0x1b,0x13,0x8a,0x15,0x87,0x6a,0x9a,0x28,0xc6,0x8a, +0xbb,0x71,0xf7,0x74,0xe6,0x8d,0x35,0x0b,0x77,0xd8,0x8f,0x6e, +0x41,0x97,0x91,0x91,0x8c,0x79,0x56,0x19,0xc7,0x92,0x8c,0xcc, +0x5a,0x55,0xa2,0xbc,0x95,0x3b,0x3e,0x64,0xff,0x55,0xb6,0xf6, +0x54,0x03,0x03,0x0b,0xfa,0x07,0x1c,0xe7,0xdf,0x64,0xf1,0xee, +0xd3,0xc7,0xc2,0x46,0xd8,0x78,0x3e,0x22,0x4d,0x7a,0xfa,0x80, +0x0d,0xd8,0x3c,0xed,0x28,0xde,0x75,0x85,0x8f,0xc4,0x07,0xdc, +0x63,0x32,0xfb,0x9c,0xbb,0xd7,0x61,0x90,0x46,0xaf,0xf2,0xdc, +0xac,0x14,0x37,0xb5,0x57,0x79,0x4c,0x69,0x0c,0xca,0xb8,0x43, +0x6f,0xac,0x42,0x69,0x8c,0x55,0xfc,0x74,0xfb,0x8f,0x37,0x43, +0xd1,0x92,0xb7,0x18,0xc6,0x16,0x4b,0xc1,0x9a,0x97,0x2e,0xb5, +0xe0,0x32,0x27,0x91,0x1b,0x7e,0x64,0xdc,0x94,0xce,0xa0,0x88, +0xdb,0x4f,0x63,0x35,0x07,0x18,0x1c,0xf5,0x63,0x3e,0x5c,0xda, +0xc1,0x1e,0x19,0x1c,0xac,0xff,0xec,0xfe,0x2a,0x84,0xdd,0x7d, +0xf3,0x2f,0xd8,0xc7,0xf9,0x73,0x26,0xa6,0x17,0x43,0x8d,0x38, +0xa4,0xd8,0xc1,0xde,0xbb,0x86,0xb3,0xe0,0x26,0xe3,0x52,0x68, +0x0b,0xb4,0x23,0x11,0x4e,0x32,0x62,0xaa,0x1a,0xc8,0xb8,0x01, +0xd7,0x8e,0x11,0x72,0x30,0x06,0xcc,0x0e,0x15,0xc2,0x41,0x31, +0x94,0xd2,0x75,0xf7,0xc4,0x9a,0x0f,0xac,0xbf,0x70,0x9b,0x28, +0xc6,0x1b,0x4e,0x65,0xb0,0x9c,0xdb,0xfc,0x40,0x02,0x77,0x97, +0xc5,0x8c,0x27,0x15,0x2f,0x9e,0x7b,0x57,0xc0,0x0c,0x98,0xe1, +0xdd,0xbf,0x5d,0xdb,0x27,0xfd,0xc5,0x0c,0xea,0xef,0x30,0xf9, +0x0c,0x7a,0xd2,0x91,0x5a,0x98,0x50,0x65,0x8b,0xc2,0x36,0x7b, +0xc5,0xaa,0x93,0x18,0x5a,0x9e,0x9d,0x3f,0x53,0x5b,0xd6,0xbc, +0xaf,0xdd,0x64,0x7f,0x57,0x6d,0x82,0xb1,0xd7,0x2f,0x17,0x45, +0x7d,0x51,0xaf,0xcd,0x25,0x02,0x99,0x36,0x83,0x31,0xae,0xae, +0xff,0xcb,0x10,0xd1,0xdc,0x15,0x3a,0x8b,0x11,0xf2,0x85,0x73, +0x27,0x9f,0x3c,0x39,0x37,0x75,0xa8,0x65,0x91,0x34,0x34,0x70, +0xaa,0xb7,0x77,0xe0,0xc9,0x0b,0xb8,0xf2,0x84,0x34,0xba,0xc3, +0xde,0x72,0x3f,0x65,0xcb,0xbe,0xc4,0xcd,0xcf,0x99,0xea,0xc7, +0x5d,0x9a,0x33,0xc0,0xd9,0xe9,0x22,0x42,0x64,0x61,0x7c,0x5a, +0xfc,0xeb,0x4b,0xcf,0x22,0xf4,0x48,0x46,0xcf,0x30,0x8f,0xd6, +0x4f,0x43,0x85,0xd1,0x15,0x3a,0x88,0x3e,0x72,0x49,0xf1,0xd1, +0x87,0x3f,0x16,0xcf,0x0c,0x41,0x0f,0x1f,0x16,0xfa,0x5e,0xe7, +0x4e,0xa1,0x29,0x45,0x16,0x51,0x57,0x0d,0xaa,0xba,0xc3,0xaa, +0x46,0xb3,0xcd,0xea,0x78,0x6e,0x5f,0x88,0x15,0xef,0xa3,0x8a, +0xcf,0xf2,0x86,0x37,0xd8,0x68,0xd5,0x8f,0x5e,0x01,0x6a,0x79, +0x84,0xbe,0xc9,0xe5,0x4d,0xbd,0x30,0x8c,0x81,0x5d,0xea,0x5f, +0x4c,0x19,0x4f,0x6d,0xf5,0xd5,0x1a,0x9f,0x5c,0x35,0x59,0xbf, +0x51,0xef,0x22,0x7a,0xd1,0x43,0xd6,0x1b,0xf5,0xbc,0x55,0x6b, +0xfa,0xaa,0x07,0xc9,0x73,0xfa,0x29,0x86,0x38,0x76,0xcc,0xcb, +0x93,0x37,0x5a,0xce,0x44,0x47,0x6e,0x3f,0x9b,0xa9,0xdd,0xe5, +0x6b,0xc2,0x67,0x12,0x23,0x62,0x62,0x38,0x8e,0xbe,0x10,0xd7, +0x5f,0xb9,0x2a,0x42,0xaf,0xc3,0xbd,0xd2,0xbf,0xfe,0xec,0xa6, +0xa1,0x7b,0xb7,0xe0,0x16,0x6e,0xf7,0x82,0x85,0xa3,0x2b,0x98, +0xc5,0x20,0xf9,0x7c,0xfe,0xb1,0xef,0xbf,0xcf,0x9f,0x31,0x0c, +0x27,0xe1,0xb0,0x31,0x33,0x7a,0xf5,0x1a,0x73,0xec,0xbc,0x45, +0x69,0x06,0x7b,0xb9,0xbd,0x17,0xfa,0x8a,0xab,0x0c,0x52,0x44, +0x57,0xee,0xd2,0x84,0xa9,0x5e,0xf2,0x65,0xd1,0xd1,0x70,0x53, +0xbb,0xe4,0xbe,0xbc,0xa0,0xa6,0x92,0xc5,0x42,0x7f,0x5e,0x7f, +0x1e,0x5b,0x81,0x23,0x3e,0x01,0x5b,0xca,0xa1,0xa2,0x43,0xd0, +0xe4,0x6f,0x9d,0x7e,0xfa,0x73,0xef,0x53,0x68,0xe8,0x0d,0xfa, +0x8c,0xee,0xe0,0x79,0x33,0x5c,0x34,0x70,0x05,0x67,0xe1,0x23, +0x9f,0xcd,0xda,0x7f,0xe3,0x7a,0xd6,0xdc,0x11,0x96,0x68,0x69, +0xe4,0xc4,0x0f,0xfa,0xf5,0x9d,0x78,0xe0,0x8c,0xe5,0xae,0xda, +0x1b,0xab,0xed,0x5c,0x5b,0xed,0x19,0xac,0x76,0x29,0xf4,0x27, +0xf6,0x16,0xfd,0x62,0x7f,0x05,0xd4,0xbc,0xbe,0x3a,0xdf,0xfd, +0xf5,0xd5,0xf9,0x63,0xa2,0xbd,0xc2,0x29,0x89,0xb3,0x83,0x2c, +0x5a,0x4a,0xdc,0xd1,0x93,0x2e,0xcf,0xdf,0x14,0x11,0x4c,0xbf, +0x26,0xdf,0x64,0x2f,0xdb,0xca,0xa5,0xfe,0x0c,0x50,0x1f,0x63, +0xe4,0x31,0xa2,0xfb,0x94,0x72,0x65,0xff,0x20,0x75,0x28,0x3d, +0xe8,0xcd,0x5d,0x3a,0xd3,0x93,0x46,0x59,0xb8,0x4b,0xd8,0x6a, +0x02,0x77,0xdc,0x84,0x0b,0x69,0x49,0xd9,0x84,0x96,0xf2,0x21, +0xf6,0xf8,0x37,0xea,0x46,0x4f,0xad,0xc7,0x81,0x28,0x5a,0x20, +0x89,0x96,0x50,0xc8,0xed,0xf2,0xb5,0xfe,0x36,0x5b,0x89,0x45, +0x5e,0x52,0x91,0xce,0xdc,0xa5,0x0b,0x55,0xd4,0x59,0x16,0xdd, +0xb5,0x8a,0xac,0x5a,0x59,0x4a,0xa5,0xee,0x90,0xcb,0x9b,0xa4, +0xba,0x91,0x21,0x96,0x0b,0x83,0xb0,0x69,0x53,0xae,0x19,0xe2, +0x20,0x9c,0xbe,0x86,0x5f,0x06,0x91,0x21,0x76,0x11,0xe1,0x72, +0xf9,0xb9,0x93,0x3f,0x3d,0x3e,0x37,0x75,0x10,0x1a,0xe2,0xe0, +0xc0,0xa9,0x1d,0xbd,0x02,0x4f,0x5e,0xb2,0x28,0xb3,0x21,0x86, +0xdb,0xff,0x83,0xbd,0xbe,0x31,0x3f,0x15,0x1e,0x72,0xf3,0x0b, +0xa6,0x7a,0x58,0x6f,0xcc,0x4f,0x15,0x45,0x38,0xf8,0x3f,0x97, +0xfd,0xfe,0x7b,0x87,0x32,0x34,0x46,0x73,0x87,0xa0,0x56,0xad, +0x7e,0x0e,0x12,0x66,0x57,0xf0,0x12,0x03,0xe4,0xb2,0x92,0x63, +0x8f,0x7e,0x2c,0x99,0x11,0x64,0x89,0x90,0x82,0x43,0x66,0x74, +0xf6,0x09,0x39,0x56,0x6a,0x11,0x36,0x6a,0xc0,0xdb,0x77,0xe5, +0xc5,0x53,0xa6,0xc6,0x57,0x1a,0xd4,0x2a,0x51,0x03,0xab,0x71, +0xf5,0x4d,0x99,0x00,0xfd,0x45,0x01,0x06,0x62,0xe2,0xad,0xcb, +0xf1,0xfd,0x20,0x56,0x56,0x3b,0x88,0x81,0x4a,0x07,0xeb,0xe5, +0xf8,0x29,0x62,0x01,0x6f,0x78,0x90,0xae,0xee,0x1b,0x65,0x66, +0xbd,0x02,0x3f,0x55,0x64,0x6b,0xc2,0x8d,0xb2,0x5e,0x81,0x2f, +0xc2,0xef,0xa6,0x88,0xa5,0xbc,0xe1,0x29,0x86,0xad,0xf2,0xaa, +0x9f,0x6a,0xef,0xc5,0x4f,0x11,0xeb,0xb5,0x2f,0xdf,0x51,0x39, +0x6f,0x10,0x48,0xd8,0xf6,0x07,0x61,0xdb,0x23,0xc4,0xb6,0xfa, +0xaf,0xb1,0xad,0x3e,0x62,0x9b,0x8f,0x8e,0x6d,0xef,0x13,0xb6, +0x2d,0xd4,0xb0,0x2d,0x95,0x4b,0x9f,0x31,0x0d,0xd3,0x0a,0xb9, +0x7d,0xf7,0x37,0x98,0xf6,0xe7,0xef,0xb5,0x98,0xd6,0xaa,0x05, +0x61,0xda,0x9b,0x95,0x07,0x62,0xda,0x06,0x39,0x50,0xe4,0x40, +0xe0,0x15,0x11,0x48,0x27,0xec,0x2b,0x59,0x7f,0x98,0xad,0xac, +0xd3,0xa0,0xed,0x10,0xdd,0x5d,0xf7,0x7a,0x35,0x89,0xfd,0x64, +0x18,0xe0,0x25,0xc3,0xc2,0x9f,0xc4,0x42,0x2b,0x5e,0x9d,0xe6, +0x0d,0xcf,0xeb,0xa8,0xf4,0x99,0x1c,0x2c,0x22,0xd4,0x13,0x4c, +0xcc,0xa0,0xff,0x45,0x68,0x90,0xb5,0x0d,0x21,0x0b,0xdb,0x6e, +0x4f,0xf0,0x74,0xe3,0x57,0xab,0x7f,0x68,0xfd,0xa4,0xaf,0x8e, +0x4d,0x61,0xf2,0xdf,0xd6,0x06,0x28,0xc1,0x32,0x39,0x90,0xdb, +0x8d,0x63,0xe7,0x24,0xd5,0x19,0x72,0xc4,0x41,0x0c,0xf7,0xb7, +0x31,0x7d,0x25,0x80,0x98,0x1f,0xa4,0x63,0x3e,0xa2,0xd8,0x99, +0xef,0x98,0x98,0x0f,0x0d,0xa5,0x81,0xf3,0x66,0x8d,0x1f,0xce, +0x9d,0x02,0x58,0xe1,0xac,0x9c,0x81,0xfb,0x30,0x7c,0x96,0x06, +0xb4,0x93,0x37,0xbe,0x3f,0x63,0xc3,0x54,0x97,0xa9,0x33,0x56, +0xad,0x78,0xdf,0xf5,0xb9,0x88,0x92,0x7e,0x81,0x8d,0xdc,0x7e, +0x8f,0x06,0x7a,0x1f,0xbd,0xfa,0x95,0xc1,0x13,0xc2,0xbc,0x91, +0xb8,0xe2,0xc3,0x70,0x40,0xd4,0x15,0x4d,0x69,0x51,0x59,0x57, +0x5f,0x54,0xd6,0xc5,0x88,0xa0,0xe9,0x0b,0xa8,0x8b,0x21,0x41, +0x49,0x7d,0x6d,0xdd,0xe8,0xfa,0x0d,0xae,0x28,0x6f,0x6a,0x71, +0x41,0x9f,0xae,0x18,0x4a,0x69,0x2b,0x4a,0x8b,0xea,0x09,0x57, +0x61,0x30,0xf5,0xac,0x03,0x77,0x3b,0xcc,0x8a,0xea,0xa3,0x17, +0xce,0x2d,0x72,0xdd,0x8a,0x6b,0x1d,0xcd,0x81,0x96,0x8d,0x0b, +0x43,0x81,0xc3,0x82,0xc6,0x81,0x0f,0x95,0x9d,0xca,0xdd,0x56, +0x53,0x61,0x4f,0x52,0xc3,0x75,0x54,0xc3,0xf5,0x09,0xac,0x1f, +0xaa,0xa1,0x1f,0x6f,0x74,0x9a,0xe5,0xd1,0x73,0xb4,0x92,0xa4, +0x07,0xc6,0xea,0x0f,0x4c,0xe0,0x3c,0x95,0x1e,0x70,0xd2,0xc7, +0xec,0x0f,0xaf,0x3b,0xda,0x98,0xf5,0x68,0xd9,0xe2,0xa7,0x9e, +0x38,0xd4,0x5a,0x7b,0x05,0x65,0xae,0x3b,0xa4,0xd2,0xb2,0x33, +0x5a,0x7b,0x23,0x83,0x31,0xe6,0xc2,0x91,0xd4,0x1f,0xf7,0xe0, +0x16,0x33,0x3d,0xde,0x95,0xda,0xab,0x7c,0xf1,0xc2,0xbb,0x72, +0x02,0xf3,0x6b,0xdb,0xf6,0x89,0x1f,0xb5,0x97,0x73,0x96,0xda, +0x6b,0xf5,0x80,0x8d,0xd7,0x0b,0x37,0xe7,0xcd,0x87,0x32,0x6e, +0x1c,0x42,0x0c,0xf7,0xdb,0xb9,0xa5,0x25,0x03,0x8c,0xab,0x7a, +0xc2,0xd7,0xbf,0xd0,0x1f,0x03,0xa0,0x65,0xcd,0x76,0xaa,0xaa, +0xb3,0x56,0xd5,0x2f,0xbf,0x68,0x55,0xb5,0x69,0xa3,0x57,0x95, +0xab,0x55,0xe5,0xf6,0x6f,0x36,0xa2,0xb6,0xa7,0x2e,0x9c,0x6f, +0xc2,0xc9,0xde,0x9e,0x15,0x92,0x88,0xd9,0x05,0xae,0x5b,0x24, +0xee,0xd0,0x88,0xd1,0x4f,0x4d,0xb8,0xcb,0x41,0xed,0x27,0x1c, +0xf8,0x41,0x32,0x7d,0xab,0x95,0x20,0xbb,0x8b,0xc4,0x90,0x10, +0xc2,0xe1,0xc2,0x79,0x6a,0xa9,0xad,0x66,0x2b,0x2f,0xad,0xb6, +0xe2,0xf1,0xb6,0xad,0x9c,0xd2,0xfa,0x3a,0xda,0x6a,0x2b,0xab, +0xe9,0x7e,0xbc,0x33,0x1c,0xc3,0xb8,0x81,0x5b,0x9e,0x5b,0x07, +0x41,0x93,0xa8,0xe5,0x38,0xad,0xc5,0xc9,0xdc,0x38,0x97,0x6a, +0xec,0xa1,0x39,0xc7,0xe7,0xfa,0x32,0x9a,0x37,0xb2,0x61,0xd6, +0x31,0x1a,0x61,0x89,0x42,0xa7,0x88,0x35,0xc5,0x70,0x9b,0x47, +0xe8,0x4f,0xa7,0x31,0xf8,0x27,0x6f,0xb0,0x0c,0x95,0x31,0x94, +0x55,0x87,0xc0,0x07,0xaf,0x92,0x74,0xbd,0x34,0x22,0xbd,0x4c, +0xd7,0xbe,0x6e,0x0d,0x5e,0x30,0x9a,0x8d,0x7f,0xf5,0xa1,0x5e, +0x7c,0x01,0xbd,0xcb,0x95,0x0e,0x2e,0x35,0xd7,0x19,0x04,0x2f, +0x66,0x94,0x9f,0xb1,0xa9,0x3a,0x0b,0x01,0xec,0xe5,0xf7,0xc2, +0x59,0x34,0xf6,0xf8,0x5e,0x5b,0x80,0xf6,0x82,0xc6,0xe0,0xfc, +0xb2,0x97,0xe0,0xae,0xc5,0xf5,0xbd,0x03,0xf3,0xbf,0x77,0xdd, +0x2d,0x7d,0x8f,0xeb,0xcd,0x27,0xe7,0xc6,0xf4,0xb2,0x7c,0x22, +0xf5,0x0a,0x1c,0xe3,0x6d,0x81,0xbd,0x70,0x50,0xe6,0x6e,0x1b, +0x10,0xc1,0xaa,0x3b,0x56,0x56,0x75,0x94,0xd4,0x39,0x6a,0x53, +0x59,0x98,0x9f,0x5f,0x10,0xf5,0xc4,0x3b,0xed,0x2e,0xd2,0x6e, +0x58,0xbb,0x21,0xf0,0x0e,0xd4,0x7b,0x3e,0x14,0x51,0xab,0xb0, +0x3e,0xc6,0xd6,0x17,0x71,0xfc,0x2f,0x62,0xc4,0xfd,0xa8,0x74, +0xfa,0x10,0x1c,0xfd,0x21,0xc1,0xd3,0x7d,0x2c,0xf0,0x2f,0xf0, +0xe2,0x2e,0x66,0xd6,0x8f,0xa9,0x73,0xe0,0xd6,0xab,0x56,0xec, +0x4c,0x7d,0xef,0x90,0x23,0x45,0xae,0x9b,0xa5,0x57,0x53,0x18, +0xfd,0x6a,0xe2,0xf6,0x7d,0x28,0xb5,0x63,0xbc,0xac,0x1c,0x2d, +0x51,0xb7,0x70,0x87,0xb5,0x94,0xda,0xb1,0x0d,0x53,0x0f,0x56, +0x2a,0x07,0x25,0xf5,0x7d,0xa8,0xe6,0xd2,0x12,0x1c,0xbd,0x8e, +0x21,0xc7,0xcf,0xb9,0xd2,0x0e,0x47,0x0b,0xed,0x31,0x77,0x6e, +0xba,0xc2,0xb0,0xd4,0xc6,0x4a,0x65,0x23,0x95,0xfa,0x99,0xbb, +0xed,0xd1,0xea,0x3e,0x56,0x82,0x0a,0x2f,0x29,0x39,0xf6,0xe4, +0x49,0xe9,0x8c,0x10,0xb4,0xf9,0x90,0xe0,0x19,0xde,0xf4,0x80, +0x1b,0x37,0xbe,0x64,0x35,0x79,0x74,0x12,0xbd,0x91,0x5b,0x6e, +0x30,0xf0,0x16,0x43,0x65,0xde,0xea,0x09,0xf3,0x09,0x4e,0x45, +0x5f,0x39,0x0f,0x3e,0xe1,0x36,0x85,0x4c,0xbd,0x41,0x05,0x06, +0x50,0x93,0x58,0x60,0x88,0x4c,0xcd,0x51,0xcb,0x54,0x60,0x2e, +0xb7,0x99,0x41,0x99,0x09,0x17,0xca,0x95,0x4a,0x8a,0x9f,0x41, +0x6d,0xfe,0x1f,0x45,0xdb,0x09,0xef,0xf2,0xa6,0xbb,0x99,0x96, +0x3b,0xb2,0x43,0xb5,0x8b,0x2c,0x4c,0xbf,0x6a,0x7b,0xcc,0xad, +0x9f,0x80,0x09,0x5c,0xda,0x68,0x7b,0xcf,0xbf,0x78,0x09,0x17, +0xd7,0xb2,0xfa,0x9d,0x03,0xcb,0x84,0xec,0x7a,0x43,0x12,0xf2, +0xb9,0xb2,0x1f,0xef,0x9f,0xa7,0x7d,0xe6,0xbe,0x12,0xc8,0xc3, +0x82,0xba,0xe2,0xba,0xc8,0x69,0x37,0x53,0x3b,0xa9,0x1f,0xe1, +0xf3,0xcf,0xee,0x8a,0xe6,0xa2,0x79,0xfb,0x3b,0xf8,0xbc,0xa9, +0xbd,0x76,0x1c,0xf9,0xac,0xbb,0x30,0x21,0x1e,0x74,0x09,0x39, +0x7d,0xcf,0xf5,0xa8,0x74,0xaf,0xe4,0xf4,0x83,0xfb,0x25,0xe1, +0xdd,0x2c,0x33,0xa5,0x6e,0x21,0xe1,0x5d,0x2d,0x4a,0x14,0xf8, +0x72,0x27,0x0b,0xab,0x4d,0x33,0xa9,0x46,0xa9,0x2b,0xd1,0xd7, +0x3c,0xff,0x41,0xb4,0x14,0xad,0xda,0xfd,0x40,0x8b,0xf1,0xf6, +0xda,0xf9,0xe3,0x33,0x5f,0xac,0xa6,0x14,0xab,0x39,0x73,0xdf, +0x35,0x4d,0x7a,0x50,0x72,0xe6,0xc1,0x83,0xe2,0x91,0x5d,0x2c, +0xd3,0xa5,0xae,0xa1,0xf8,0xb1,0x44,0x1d,0xc7,0x1d,0x0e,0xa0, +0x91,0xb9,0xb2,0x65,0xea,0x7a,0xee,0x40,0xe4,0x4c,0x6e,0x6c, +0xb1,0xba,0x9f,0xdb,0xff,0x8b,0xd5,0x3c,0x66,0x18,0x30,0x2c, +0x7a,0x15,0xc8,0x84,0x41,0x7d,0x49,0x0c,0x02,0xf8,0x8d,0x1a, +0xf5,0x19,0x37,0xdc,0x62,0x30,0xb9,0xda,0x51,0xf4,0x62,0x67, +0xb1,0x84,0xf8,0x0c,0x4b,0x54,0xd5,0x81,0xed,0xbc,0xfe,0x3a, +0x8c,0x38,0xb9,0x4d,0xb5,0x56,0x5f,0xac,0x1a,0xc7,0xed,0xcf, +0xd2,0xf0,0x7d,0x7e,0x5d,0xf9,0x9c,0x04,0x9c,0x48,0xfd,0xbc, +0x2d,0x8c,0xc2,0xd8,0xfe,0xb6,0xd6,0xcf,0x9e,0x14,0xa1,0x3d, +0xeb,0x69,0x15,0x30,0xff,0xb6,0xeb,0x41,0xe9,0x76,0x49,0x1e, +0x0a,0x48,0x2f,0x03,0x49,0x3d,0x43,0xc7,0x74,0xb1,0x2c,0x55, +0x13,0xb9,0xfd,0x54,0xe2,0x09,0xc0,0x86,0x6e,0xcb,0xa8,0xa2, +0xbb,0xda,0xa3,0xda,0xb1,0x1b,0xa9,0x48,0x53,0x9d,0xc5,0xa2, +0x3a,0x2d,0xa4,0x53,0xb7,0x92,0x53,0xf8,0xf4,0x68,0xed,0xd4, +0x2d,0x34,0xbc,0x0b,0xe9,0xce,0xa2,0xf8,0x69,0xdb,0xc9,0x44, +0x12,0x10,0x75,0x98,0x24,0xb8,0x23,0xcc,0xc2,0xe5,0xb5,0x04, +0xb8,0xaa,0x7c,0xd6,0x03,0x25,0xc0,0x45,0x5d,0xb4,0xcc,0x1b, +0x8d,0x64,0xb3,0xa5,0xee,0xd8,0x30,0x8a,0x73,0xd7,0xa2,0x54, +0x68,0x5b,0xcb,0xdc,0x69,0x0f,0x0d,0xd3,0x0c,0xeb,0xc3,0xdc, +0x31,0x88,0xf5,0xa8,0x95,0xf9,0xae,0xeb,0x21,0x89,0x9e,0x7a, +0x5f,0x7b,0xca,0x22,0x3e,0x40,0xeb,0x6e,0x18,0x43,0x94,0x01, +0x28,0x6f,0x9c,0xfc,0xb7,0x86,0x5c,0xa8,0x21,0xad,0x0e,0x17, +0x94,0x77,0x91,0x7c,0x58,0xba,0xab,0xcb,0xdb,0x9d,0x4e,0xe3, +0x42,0x47,0x63,0xa3,0x74,0x1a,0xd7,0x9b,0x0e,0xd1,0x6a,0xd6, +0x93,0xee,0xd7,0xe2,0xa4,0x7e,0x6d,0x13,0x1c,0x2b,0xa8,0xed, +0x30,0x55,0xa0,0x6d,0x4f,0xd7,0x76,0xf8,0x7d,0xec,0xb0,0x56, +0xc1,0x3d,0xcb,0x4d,0x10,0x35,0x7b,0xb4,0x71,0xfc,0x8c,0xc6, +0xb1,0xd8,0x2a,0x4c,0xbc,0x4c,0x82,0xf7,0xd4,0x2a,0xb8,0x4d, +0xfb,0xdb,0x58,0x01,0x6f,0x79,0x99,0x69,0x8d,0x9e,0xa7,0x5d, +0x6d,0x7a,0x5f,0xac,0x68,0xbf,0xbc,0x24,0x7a,0xe5,0x06,0x9b, +0xdd,0x85,0x9b,0x4b,0x6f,0x9a,0x8f,0x8b,0xb1,0x65,0xea,0xcc, +0x20,0x31,0xee,0x3d,0x09,0xfa,0x8d,0x6a,0x07,0xbd,0x60,0xa0, +0xa5,0x60,0xd2,0xa3,0x97,0x45,0x57,0x53,0xae,0x9b,0xbe,0xd0, +0x98,0x2e,0xc4,0x38,0x58,0x66,0x3c,0x93,0x0d,0x63,0xc5,0x92, +0xe8,0x2d,0x8b,0x34,0x3a,0x63,0xee,0x90,0xca,0xd4,0x17,0xf3, +0x78,0xd3,0xcf,0xb5,0xf7,0xc6,0x2e,0xfb,0x73,0xf9,0x19,0xae, +0x92,0xf1,0xcf,0x5f,0xa0,0x0e,0x77,0xf6,0xc6,0x4f,0xfc,0xbd, +0x63,0xd5,0x7d,0x16,0x07,0xe5,0xb2,0x32,0xb3,0x44,0x4d,0xa1, +0x04,0xa7,0xca,0xea,0x52,0x75,0xbe,0xc1,0xe1,0x0a,0xfe,0xdc, +0xa5,0xa6,0x18,0xed,0x67,0xac,0xac,0x7c,0x28,0x3e,0x53,0xf3, +0xc2,0x94,0x4f,0xe1,0x1d,0xf5,0x43,0x18,0x88,0x65,0xbe,0x2e, +0x52,0x57,0x1a,0x1c,0xaa,0x6d,0xb0,0xd0,0x27,0x58,0xa8,0x9f, +0x5a,0xca,0x1d,0x06,0x32,0xb1,0x8d,0x3b,0x5e,0x65,0xca,0x34, +0xac,0x76,0xbe,0xcc,0x0d,0x18,0xc3,0xdb,0x15,0xb0,0xbe,0x6a, +0x0a,0x77,0xb8,0xc8,0x2a,0x42,0x64,0xc5,0x05,0xe6,0xaa,0x2e, +0x44,0x0e,0x99,0x86,0xcf,0x7d,0x20,0x27,0x26,0x26,0xaf,0x49, +0x5a,0x2e,0x46,0x80,0xaf,0xb1,0x20,0x07,0xc2,0x84,0x57,0x64, +0xf2,0x12,0xa2,0x81,0x5d,0x12,0x43,0x7c,0x23,0x27,0x37,0xa7, +0x73,0xa7,0xf9,0x6c,0xa9,0x04,0xb6,0xe1,0x03,0xa1,0x1b,0x34, +0xb2,0x14,0x4c,0xbc,0x7b,0xe9,0x6c,0x7e,0xca,0x29,0x93,0x62, +0x82,0x3f,0x64,0xd5,0x2c,0x1a,0x70,0x47,0xd4,0xe9,0xd9,0xfa, +0xf8,0x67,0x23,0xc5,0x8c,0xf2,0xc4,0x62,0xcb,0x7e,0xdc,0xf9, +0x05,0x75,0xad,0xfa,0x16,0x7c,0x22,0x93,0x00,0x24,0x88,0xf2, +0x3b,0x1c,0x10,0x7d,0x18,0xf8,0x32,0xf5,0xab,0x4a,0x11,0xa5, +0xbd,0x4f,0xf6,0xa2,0x0b,0x76,0x5d,0x8c,0x81,0x45,0xdc,0x71, +0x0b,0x13,0xe3,0x61,0xbc,0x1c,0x16,0x3e,0x5c,0xbb,0xf1,0x5e, +0x58,0x64,0xd9,0x21,0x15,0x17,0x14,0xd2,0x8d,0xf7,0xd3,0xc3, +0x43,0x69,0xe7,0xe4,0x67,0xac,0xd2,0xbb,0xea,0x01,0xc5,0x37, +0x7e,0x22,0x01,0xd5,0x88,0xeb,0x8c,0x7f,0xa9,0x4d,0xb8,0xe3, +0x76,0x26,0xba,0x97,0xa9,0x1e,0x41,0xa2,0xd7,0x87,0xb8,0x44, +0x9e,0x42,0x5c,0xd3,0x43,0x2c,0xf9,0x53,0x2a,0x9f,0xe7,0x5d, +0xe5,0x8d,0x70,0xca,0x76,0x83,0xc5,0xc6,0x53,0x19,0xe0,0x2b, +0x3e,0x89,0xd9,0xb6,0x24,0x9e,0x38,0x51,0x3a,0x32,0x88,0x05, +0x17,0xf1,0x49,0x80,0xba,0xe9,0xaa,0xf8,0xa7,0x70,0xa1,0x77, +0x86,0xbe,0x93,0xd4,0x43,0x70,0x9f,0xdb,0x1c,0x67,0xe3,0xe0, +0x72,0x4d,0x3c,0xe3,0x6e,0x66,0x06,0x77,0xc4,0x71,0x59,0x78, +0x41,0x9f,0xfc,0x4c,0xf0,0x14,0xdd,0x39,0xb3,0x61,0xcb,0xb4, +0xb7,0x3e,0x93,0x73,0x4b,0xcc,0x9b,0xb8,0xdd,0x5c,0xb6,0x5c, +0x02,0xe7,0xc9,0xfe,0x38,0x05,0xdd,0x2c,0x79,0x93,0xcb,0xaf, +0x64,0x9f,0x39,0x70,0xda,0xb4,0x71,0x93,0x46,0x7c,0x72,0x44, +0xfd,0xe0,0x55,0x26,0x13,0x8d,0xd8,0x49,0x35,0x93,0x4b,0xab, +0x99,0xf6,0x02,0x97,0x0b,0x65,0x69,0x58,0x75,0x55,0x2c,0xc0, +0x46,0x17,0x5f,0xa5,0x1c,0x65,0x87,0xe0,0xa6,0xba,0x94,0x7d, +0xa4,0xee,0xe6,0xd2,0x05,0x2a,0x33,0x1f,0xcb,0x4c,0x0f,0x50, +0xe7,0x5e,0x15,0xd3,0xb0,0xcc,0xec,0xab,0xca,0x52,0x2a,0x53, +0x2e,0x5a,0x52,0x2e,0x83,0x67,0xdc,0x50,0x4d,0x29,0x0a,0xe6, +0xe0,0x7c,0x82,0xb4,0xab,0xca,0xbd,0x80,0xda,0x8e,0xac,0xb8, +0x4a,0x2f,0x42,0x0e,0x22,0xf9,0xc5,0x75,0xd5,0xb1,0x66,0x3e, +0x15,0x5b,0x20,0x5b,0x9b,0x09,0x78,0xd3,0x34,0x15,0x0b,0xc3, +0x16,0x95,0x69,0xaa,0x7b,0xcd,0xd8,0xd7,0xa5,0xa2,0x28,0x83, +0x4c,0x6d,0xa9,0xc5,0x5a,0xa9,0x00,0x2c,0x25,0x92,0x70,0xa5, +0x6a,0x98,0xa4,0xbd,0x37,0xd5,0xdd,0xfd,0xff,0x8b,0x19,0xe1, +0x89,0xab,0x5d,0x70,0xd6,0xa6,0xc4,0xbf,0x99,0x3a,0x04,0x24, +0x7d,0x4e,0x04,0x32,0x75,0x06,0xc6,0x42,0x38,0x27,0x82,0xe8, +0x2f,0xbb,0xff,0x07,0xbb,0x1f,0x8c,0xab,0x81,0x0a,0xd1,0xa0, +0x2b,0x55,0xd6,0x10,0x8d,0xe8,0xbf,0x9b,0x38,0x96,0xf8,0xaa, +0x42,0xb8,0xbc,0x2e,0xf1,0xff,0xd2,0xcc,0x5c,0x27,0x30,0x75, +0xdf,0xff,0x91,0x55,0x89,0x6b,0x9d,0xe8,0x65,0x25,0x37,0xed, +0x65,0xa5,0xc7,0xf4,0xb2,0x92,0xfb,0xeb,0x97,0x95,0xdc,0x45, +0x3b,0x9d,0x40,0xe3,0xfa,0xff,0xc0,0xa0,0x94,0xd9,0xa2,0x19, +0xbd,0xb2,0xe4,0x4e,0xaf,0x2c,0xa5,0xaa,0x2f,0x60,0x01,0x13, +0xdb,0x29,0x45,0x41,0x37,0x32,0xaf,0xda,0xf7,0x93,0xdc,0xc5, +0x3b,0x83,0xd5,0xb9,0x97,0x84,0x2d,0x36,0xef,0x54,0xfe,0xc6, +0x7a,0x44,0xe5,0x17,0xf4,0x7e,0x92,0x3b,0x31,0xa2,0xc2,0x4b, +0xb2,0x23,0xfd,0x4d,0xa2,0x2c,0x18,0x1e,0x24,0x86,0xab,0x1b, +0xb5,0x13,0xe3,0x70,0xee,0x3e,0x89,0xa5,0x8a,0x31,0x65,0xea, +0x7b,0x41,0x62,0x2c,0x8e,0x6c,0xdf,0x51,0x6d,0x71,0x64,0x07, +0x58,0xce,0x4c,0x7c,0x8c,0x23,0x7b,0x14,0x47,0x56,0xe3,0xd5, +0x16,0x63,0x61,0x29,0x8d,0xec,0x68,0xb1,0x38,0x6a,0x8b,0x4e, +0x1c,0x8d,0x8b,0xf6,0x4f,0x74,0xde,0xee,0x15,0x95,0x94,0xc1, +0x30,0x0a,0xae,0xc9,0x09,0x89,0x9b,0x89,0x24,0x69,0x04,0xf4, +0x26,0x78,0x09,0x15,0x5d,0x35,0x78,0x89,0x46,0x78,0x59,0xa1, +0x91,0xec,0x66,0x9d,0x35,0x6f,0x13,0x23,0xca,0xd4,0x49,0x41, +0x62,0x54,0x8c,0x04,0xf6,0xa3,0x02,0xc0,0x17,0x9a,0x61,0x63, +0x77,0xaf,0x16,0x9e,0x3a,0x5a,0x60,0xea,0x01,0x95,0x6a,0x67, +0x3a,0x8e,0x9d,0x0b,0x81,0xc1,0x58,0x73,0x6c,0xa5,0xb2,0x85, +0x6a,0xbe,0xc8,0x8d,0xbd,0x19,0xae,0xbc,0x2e,0x57,0x7b,0x33, +0x65,0xaf,0xb2,0x4f,0x0e,0xc2,0x1f,0x41,0x7b,0xf3,0x28,0x46, +0x52,0xe5,0x36,0x32,0x36,0x39,0xa8,0x20,0x1b,0x01,0xad,0x5f, +0xe4,0x66,0x0d,0xd0,0x22,0xa2,0xa9,0xc5,0xac,0xe4,0x9c,0x62, +0xf3,0x56,0x31,0xa2,0x54,0x9d,0xc4,0xdd,0xbb,0xb2,0x33,0x13, +0xee,0xdd,0x38,0x7b,0x36,0xa5,0x90,0x98,0x78,0xd6,0x25,0x2e, +0xb3,0x5d,0xa4,0x46,0x28,0xef,0x31,0xde,0xe8,0x4f,0x06,0x91, +0x95,0xca,0x26,0x3f,0xf8,0x00,0x2b,0x6b,0x47,0x95,0xf5,0xe0, +0x86,0x8b,0x2c,0x21,0x01,0x7b,0xb3,0xdc,0x36,0x06,0xa7,0xaa, +0xc3,0x7c,0x2c,0xf6,0x17,0x83,0xa9,0x95,0xca,0x34,0x3f,0x18, +0x27,0xa9,0x5d,0x3a,0x8a,0x24,0x96,0xa8,0x16,0xf2,0xe6,0x3f, +0x92,0xbc,0xe3,0x50,0xbc,0xc9,0x95,0xca,0x14,0x49,0x8d,0x86, +0x54,0xfc,0x65,0xb6,0x5a,0xcc,0x4d,0xbe,0xff,0xe9,0x97,0x71, +0x6a,0x09,0x6f,0xf0,0xef,0xff,0xf4,0x8b,0xe2,0x07,0xc0,0x1b, +0x1c,0xd3,0x5f,0x23,0xd2,0x14,0xbb,0xa8,0x92,0x12,0x30,0x4e, +0x87,0xf3,0xff,0x55,0xa4,0xce,0xea,0x51,0xee,0xd0,0x44,0x7f, +0x5d,0x48,0x2b,0xf9,0x81,0x96,0x87,0x20,0x0a,0xce,0xf2,0x06, +0x36,0x4c,0xe9,0x02,0x7f,0xf0,0xe6,0x8b,0x48,0x53,0x27,0x64, +0xfa,0xf5,0x94,0xf6,0xfa,0xce,0x27,0x92,0xda,0xb9,0xdd,0xff, +0x78,0x88,0xc4,0x3e,0xd5,0x54,0xed,0xa0,0x2b,0x8d,0xe4,0x43, +0xa5,0x71,0xa7,0x75,0x8c,0x7c,0x4a,0x0f,0x23,0x89,0xa8,0xf4, +0x57,0x3d,0x6b,0xbe,0xd1,0x0b,0xac,0xa9,0x54,0xbe,0xfa,0x6f, +0x05,0xc4,0x1c,0x58,0xc8,0x1b,0x6e,0x20,0xf1,0x4e,0x6b,0xe2, +0x7d,0x5e,0xa9,0xac,0xf6,0x83,0x59,0x28,0x5e,0x07,0xde,0xa0, +0x8a,0x89,0xbd,0x6a,0xcf,0xea,0xf5,0xda,0xbb,0x2c,0x7b,0xa0, +0x40,0x06,0xd7,0x60,0xe1,0xaa,0x7e,0xac,0xbf,0xb1,0xb2,0x4d, +0xb5,0xd1,0x66,0xaa,0x6f,0x99,0xda,0x22,0x48,0xf4,0xb0,0xce, +0x54,0x37,0x7d,0xa6,0xbe,0xc8,0xb9,0xa2,0xcd,0xd4,0xae,0xfa, +0x4c,0xed,0x42,0x33,0x35,0x22,0x7e,0x09,0xa1,0x90,0x2d,0x86, +0x41,0x16,0x6d,0xc5,0xdc,0x08,0x22,0x2e,0x2b,0x1b,0x06,0xc2, +0x6c,0x09,0x76,0x51,0xea,0x93,0x0e,0xd0,0x3d,0x2f,0x03,0x43, +0xa0,0x4e,0xbc,0xd5,0x02,0xa6,0xcd,0xcc,0x9c,0x12,0xf3,0x17, +0xc2,0xbb,0x44,0x6d,0x14,0x22,0x7c,0x56,0x4a,0xe0,0x34,0x79, +0x00,0x06,0x20,0x16,0x4b,0xee,0x94,0xf2,0xcb,0xd9,0xa7,0x0f, +0x9c,0xe2,0x4e,0x37,0x71,0x29,0x57,0x8e,0x1e,0x83,0x5e,0x6a, +0xb1,0x28,0xbd,0xb4,0x4a,0xef,0x6b,0xaf,0xb5,0x2c,0x92,0xe0, +0x1b,0xa8,0x27,0x0b,0x4f,0xe8,0xab,0x55,0xda,0x23,0x6a,0x73, +0xc4,0x06,0x54,0x6e,0xcc,0xb2,0x95,0xfa,0xa4,0x2f,0x35,0x27, +0x08,0xef,0x52,0xb5,0x51,0xb0,0xe8,0xb8,0x4c,0x82,0xc6,0x93, +0xfd,0x30,0x38,0xa2,0x89,0x7f,0xa9,0x22,0xbb,0x60,0xff,0x69, +0x3d,0xad,0xc5,0x32,0xdb,0xa3,0xea,0x1c,0xf2,0x24,0x8c,0x65, +0xa8,0xe9,0x34,0xd5,0xe9,0x55,0x1c,0x0b,0x2c,0xe0,0x4d,0xff, +0xc1,0x16,0xa8,0xdf,0x90,0xdf,0xe0,0xb6,0xc9,0xf4,0xd5,0x1c, +0x39,0x14,0xdb,0x9e,0x75,0x59,0x99,0x3b,0x10,0x26,0x61,0x87, +0x5a,0x71,0xc3,0x7a,0xa6,0xcc,0xc0,0xe5,0x02,0x4e,0xf7,0x76, +0x4c,0xbd,0x77,0x95,0x0e,0x9f,0x6b,0x34,0x09,0x3f,0xbd,0xac, +0xac,0xfa,0x1f,0x76,0x5b,0xdc,0x50,0x1d,0xd0,0xd1,0x60,0xc5, +0xdf,0x68,0x15,0x9f,0xd5,0x9a,0xff,0xf0,0xb2,0xb2,0x78,0x20, +0xbc,0x8b,0x15,0xb7,0xa0,0x7a,0x3b,0x6b,0xf5,0x7a,0x46,0x6f, +0xd6,0x54,0x1f,0xbd,0x94,0xe0,0x0e,0xe7,0x61,0x91,0x39,0xde, +0xda,0x73,0x9f,0xd5,0x68,0x56,0x93,0x07,0x51,0x54,0x47,0xb5, +0x5f,0xca,0x3e,0xb5,0x3f,0x9f,0xdb,0xad,0x65,0x22,0x19,0xbb, +0x88,0xae,0x47,0x7f,0xbf,0xe5,0x13,0x18,0x10,0x2c,0x06,0x80, +0xa3,0xf6,0xa1,0xba,0x69,0x68,0x35,0x81,0xd0,0xea,0x84,0x08, +0x2f,0x53,0xa7,0x05,0x89,0x70,0x6c,0xb1,0x6f,0x78,0x5b,0xe8, +0xa1,0xa1,0xd5,0xc3,0x97,0x85,0x84,0x56,0x1b,0x13,0x92,0x08, +0xad,0xc2,0xc9,0x0f,0xe5,0xc0,0xc8,0xbf,0xa1,0x55,0xab,0xfe, +0x0c,0xea,0xe1,0x7f,0x9e,0x1a,0x5c,0xcd,0xa2,0xfb,0xc9,0xa1, +0xe0,0xc7,0xcd,0xd3,0x68,0x56,0x51,0x66,0x82,0x16,0x50,0x8e, +0xe8,0x43,0xef,0xac,0x74,0xc2,0x62,0x0d,0xfa,0x33,0x83,0xca, +0x73,0xa9,0x50,0x20,0x42,0x4b,0x08,0x71,0x97,0x69,0x33,0x25, +0x32,0x76,0x65,0x9c,0xcd,0x37,0x39,0xc9,0x79,0xa5,0x66,0x0c, +0xfc,0xff,0x60,0x91,0x12,0x34,0x0b,0xef,0x0d,0x5d,0xb4,0x8c, +0x52,0x77,0x6f,0x9e,0x2d,0x3c,0x5a,0x54,0x9b,0xeb,0x20,0x46, +0xfd,0x44,0x16,0xf3,0xfa,0xc1,0x22,0xca,0x46,0x60,0xb3,0x97, +0x6d,0x57,0x0b,0x64,0x51,0x4f,0xf9,0x27,0xfa,0xb8,0xa2,0x30, +0x25,0x02,0x7d,0xdc,0x67,0x30,0x90,0x52,0x13,0x14,0x61,0x88, +0xe6,0x88,0xa3,0xdc,0x11,0xe2,0xe4,0xc8,0xe4,0x88,0xb8,0x88, +0xe8,0x88,0x18,0x23,0xe7,0x6b,0x18,0x77,0x3c,0xc4,0x6c,0xe0, +0x92,0x3a,0xde,0x0a,0x1a,0x96,0xfe,0xac,0x05,0x0a,0xd7,0x52, +0x43,0x86,0x59,0x70,0x89,0x37,0x00,0xd6,0x43,0x3d,0x64,0x45, +0x03,0x13,0x74,0x1a,0x2e,0x3a,0x79,0x68,0xff,0x07,0xa3,0x86, +0x09,0xb3,0xa0,0x48,0x16,0x61,0xd0,0x9d,0x9b,0xa7,0xd6,0xa2, +0x87,0xc2,0xe1,0x37,0xc2,0x07,0x7a,0x2f,0xc5,0xaa,0x14,0x83, +0xda,0x3d,0x53,0xd6,0xd5,0x40,0x4a,0x31,0x92,0x56,0xc4,0x61, +0xb5,0x31,0xce,0xf4,0x1a,0x9f,0xda,0x56,0xb1,0x50,0x96,0xbc, +0x49,0xab,0x03,0x0b,0xf5,0xc6,0x42,0xd3,0x29,0x93,0x48,0x3b, +0x9a,0xed,0xf5,0xaf,0xbf,0x29,0xe5,0x92,0x45,0x52,0x89,0x51, +0xb8,0xba,0xc7,0x69,0xae,0xbf,0x12,0xb2,0x48,0x06,0xc7,0x50, +0xe1,0x08,0x36,0xda,0x87,0xda,0x88,0x12,0x17,0x7c,0xab,0xda, +0xc9,0xda,0xe5,0xc3,0x9d,0xa5,0x49,0xe7,0x6e,0x9a,0xf7,0x8b, +0x2e,0xa5,0xaa,0x4b,0xb0,0xf0,0x9d,0x83,0x03,0x3b,0xb5,0x1d, +0x58,0xb4,0x59,0x7d,0x0d,0x67,0xf5,0x77,0xd7,0x4c,0x1b,0x36, +0x25,0xae,0xdb,0xb0,0x5c,0x74,0x81,0x08,0x63,0x7e,0x06,0x74, +0x12,0x9f,0xc6,0x5a,0x43,0xbb,0x1f,0xc5,0x5d,0x39,0x75,0x94, +0x68,0x75,0xe9,0xc7,0x82,0xbc,0x33,0xa6,0xad,0x89,0xdb,0x56, +0xef,0x58,0x2a,0x4e,0xc1,0x40,0x63,0x5a,0x21,0x64,0x88,0x9e, +0x8b,0x13,0x97,0xac,0x5b,0x1c,0x69,0x5a,0x18,0xb9,0x7a,0xbd, +0xcd,0x91,0xec,0xcd,0xb9,0xbc,0xd5,0x23,0xd6,0x17,0xe2,0x81, +0xd9,0x2a,0xae,0x40,0x27,0x54,0x7e,0x18,0x3d,0x10,0xd9,0xc5, +0x73,0x25,0x5c,0x3e,0x16,0x2e,0x2c,0xa7,0xee,0x9f,0xc8,0x3b, +0x89,0xf5,0x7c,0xb9,0xee,0xcb,0xa5,0x22,0x0d,0x5c,0x8d,0xa9, +0x05,0xb0,0x4f,0xc8,0x8b,0x36,0x45,0xac,0x5f,0x12,0x65,0xfa, +0x2c,0x62,0x65,0xdc,0xbe,0x23,0x9b,0x53,0xb8,0xe3,0x7e,0xd6, +0x69,0xd0,0x68,0x88,0xe9,0x6c,0xab,0x34,0x05,0x2e,0x8b,0x06, +0x7e,0xd0,0xa0,0x96,0xb7,0x7f,0x14,0xba,0xaf,0x77,0xd9,0x73, +0x25,0x40,0x3e,0x1e,0x2e,0x5a,0x14,0xdc,0xcf,0xc8,0xcb,0x30, +0x6d,0xdd,0xb4,0x7d,0xed,0xb6,0x65,0xe2,0x04,0xb8,0xeb,0x15, +0x9a,0xa9,0xc2,0xc5,0x54,0xe1,0xaa,0xb8,0xfd,0x47,0x37,0x1f, +0x5f,0x9f,0x69,0x12,0xbb,0x4b,0xaa,0xdf,0x09,0x11,0xdf,0x1a, +0x56,0x7a,0x0d,0x1e,0x05,0xb1,0xde,0x54,0x33,0x3a,0x23,0xa3, +0x1f,0x18,0x89,0xf5,0x9e,0x98,0xf7,0x55,0x7f,0x56,0x6d,0xa6, +0xfb,0x76,0x2f,0xb9,0xfd,0x7e,0xfa,0xb3,0xda,0x59,0x1d,0xcb, +0x1b,0x1a,0x59,0xd5,0xc7,0x74,0xcf,0xae,0x0d,0x77,0xd8,0xcb, +0xc2,0xb8,0x6d,0x15,0xe3,0x0d,0x22,0xe8,0x82,0xdd,0x72,0xde, +0x3c,0x8a,0x69,0x3d,0x1b,0x2d,0x2c,0xf9,0x3f,0x50,0xcf,0xb6, +0x25,0x69,0x3c,0xc3,0x69,0x60,0x31,0xa6,0x9e,0x7e,0xdd,0xb3, +0x68,0xd3,0x3f,0x97,0xac,0xd2,0x7a,0xb6,0x3e,0x43,0xa9,0x66, +0x2b,0x3a,0x0d,0x0a,0xb7,0xf6,0xcd,0xa4,0xb3,0xf1,0xab,0x86, +0xc0,0xaa,0x33,0xe7,0x88,0x5f,0xf9,0x5f,0xd5,0x5d,0xa8,0x39, +0xd5,0x13,0xcc,0xdc,0x1c,0x81,0x2d,0x45,0x32,0xb5,0x31,0x14, +0x57,0x9f,0xc0,0x3f,0x1f,0x32,0x70,0x94,0x7f,0xf3,0x73,0x57, +0x0d,0x80,0xce,0xb2,0x49,0x4d,0xb8,0xfe,0x9d,0x83,0xfc,0xd2, +0xcf,0x43,0x35,0xb4,0xa7,0xbd,0x9b,0xc6,0xbc,0xc1,0x71,0x7a, +0x7d,0xa0,0xfa,0xea,0x0a,0xf9,0xd4,0x84,0x07,0xe7,0x0b,0x73, +0x53,0xf2,0x4c,0x89,0x1b,0x93,0xc8,0xa8,0x86,0x83,0xb7,0xf1, +0x54,0x0e,0x04,0x09,0xf7,0x25,0x38,0x07,0x96,0x10,0xb9,0x22, +0xa2,0xc7,0x9e,0x93,0x9b,0x33,0x0b,0xcd,0x62,0x74,0x89,0x3a, +0x2d,0x44,0x8c,0x36,0xac,0x01,0x9b,0xf0,0x40,0x4a,0x70,0x6c, +0x2b,0x4e,0x62,0x64,0x27,0xfc,0xfc,0x21,0x80,0x4e,0x2c,0xad, +0x24,0xfd,0x9d,0x75,0x92,0x7e,0xa9,0x90,0x55,0x5f,0xfc,0x84, +0x1b,0xc7,0x31,0x77,0x59,0xfb,0x72,0xa5,0xad,0xa8,0x1f,0x00, +0x92,0xb4,0xaa,0xa7,0xef,0xda,0xee,0xbc,0xf9,0x2f,0xc4,0xcf, +0x5f,0x7d,0x71,0x84,0x7c,0x6a,0xe2,0xfd,0xfc,0xc2,0x13,0x47, +0x4f,0x98,0x12,0x37,0x24,0xaf,0x4d,0x58,0x21,0x42,0xc0,0xc9, +0x98,0x9f,0x0d,0x83,0x85,0xed,0x92,0x44,0x54,0x4c,0x8c,0x46, +0xf1,0xba,0xfb,0x48,0x32,0x2a,0xc6,0x24,0x86,0x97,0xa8,0xe3, +0x43,0xc4,0x48,0xc3,0xca,0x2e,0xa3,0x47,0x41,0x17,0x1c,0xa1, +0x54,0xb0,0x7b,0x5d,0xbd,0x53,0x00,0x34,0xd6,0xab,0x77,0xd9, +0x14,0x54,0x83,0xcb,0xf6,0x87,0x50,0x47,0xf6,0x83,0xc9,0xea, +0x45,0x56,0x35,0x87,0xb8,0xd1,0xcb,0xb8,0xe1,0x32,0xe3,0xd2, +0xaf,0xd8,0x6e,0x4f,0x39,0x7f,0xe2,0xfd,0x6c,0xee,0x81,0x73, +0xd6,0x96,0xe8,0x85,0x07,0x73,0xdb,0x1f,0xd9,0xaa,0xb8,0x6f, +0x0e,0x26,0x1d,0x8e,0x4b,0xe3,0x4e,0xfd,0x59,0xef,0xd1,0x63, +0xa1,0x8b,0xaf,0xad,0x92,0xd6,0xbe,0xfa,0x3d,0xf6,0x87,0x3f, +0xd4,0x81,0xe5,0xac,0x1c,0x26,0x72,0x62,0x0e,0xec,0x81,0x15, +0x74,0xa1,0xae,0xb5,0xc4,0xdf,0x84,0x14,0x00,0xac,0x98,0x69, +0x69,0x02,0xea,0xa3,0x63,0x35,0x1c,0xc4,0x26,0x7e,0xc7,0x12, +0x7d,0xb9,0x41,0x66,0xd0,0xbc,0x0b,0x37,0x48,0x8c,0x37,0x7e, +0x97,0x89,0xce,0x80,0x5f,0xcd,0x60,0x55,0x2b,0x74,0x82,0x8a, +0xc6,0x44,0x50,0xd1,0xd8,0x4a,0x50,0xf1,0xa5,0xda,0x47,0xce, +0x9b,0x7a,0xa5,0x30,0x37,0xf3,0x70,0x96,0x69,0x93,0x9e,0x2a, +0xc1,0x17,0x5a,0x18,0xf3,0xd3,0xa1,0xab,0x70,0x89,0x4c,0x5e, +0x1c,0x17,0x19,0x4d,0x37,0xa7,0xe3,0x76,0xa5,0x26,0x9d,0x58, +0x9f,0x6f,0x12,0x3d,0x4a,0x55,0x8f,0x60,0xd1,0xcb,0xb0,0xba, +0xe5,0x84,0x40,0x68,0x01,0xf5,0x6c,0xc5,0x56,0x18,0x25,0x8b, +0x6e,0x03,0xa1,0x97,0xb4,0x7a,0xc8,0x80,0x35,0x83,0x89,0xf7, +0x58,0x04,0x88,0x20,0x8d,0xfd,0x7f,0x59,0xf1,0xa8,0x98,0x41, +0xcb,0xfb,0xe3,0xc0,0x54,0xd5,0x23,0xf6,0xff,0x46,0x70,0xf3, +0x72,0x55,0xa7,0x81,0x70,0x08,0x1a,0x89,0xaf,0x07,0x55,0x3b, +0x94,0x1b,0xd4,0x32,0x91,0x26,0xe7,0x4e,0x2d,0xcf,0xc9,0x4d, +0x3d,0x94,0x66,0x4a,0xa0,0xcb,0xfc,0x2b,0x11,0xc3,0x1a,0x1a, +0xf3,0xd2,0xc1,0x5b,0xd4,0x8b,0xd0,0xef,0xc3,0xc6,0xa2,0x1f, +0xfd,0xfa,0x70,0xf2,0x91,0xf5,0x27,0x4d,0xa2,0x4b,0x91,0x6a, +0x09,0x13,0x3d,0x0d,0x2b,0x7d,0x27,0x0c,0x07,0x97,0x4e,0xb6, +0xca,0x38,0xa8,0x2f,0x8f,0x8a,0x19,0x82,0xcd,0xd8,0x0a,0x36, +0x18,0x1c,0xa4,0xd5,0x43,0x07,0x12,0xc9,0x7e,0x88,0x8d,0xf0, +0x13,0xc3,0x92,0xf7,0xd0,0x61,0xd2,0x7b,0x80,0x4b,0xb3,0x5b, +0x88,0xaa,0xb8,0x60,0xbe,0x20,0xde,0xe3,0x86,0x99,0x4c,0xd8, +0xd1,0x3b,0x59,0xe3,0xe9,0x56,0xc3,0x8a,0x2a,0xb4,0x67,0xd7, +0x6c,0xfa,0xe9,0x5d,0xed,0x27,0x7b,0x7a,0xa5,0x6e,0x3c,0xdb, +0x86,0xb1,0x97,0x2d,0xeb,0xc5,0xaa,0xc3,0xd5,0xfe,0x38,0x70, +0x0f,0xcf,0x17,0xe7,0xa1,0xd1,0x26,0x6c,0x4c,0xa2,0xdb,0xbd, +0x23,0x75,0xa3,0x0d,0x15,0xee,0x18,0x49,0xc5,0x2d,0xd1,0xb8, +0x14,0xe3,0xf6,0xa6,0x27,0x67,0xae,0x3f,0x6b,0x12,0x63,0x4a, +0xd5,0x19,0xc1,0x62,0xac,0x61,0x35,0xd4,0x1f,0x3d,0x0c,0x7a, +0xea,0x46,0x3b,0x51,0x16,0x83,0x02,0x60,0xa8,0x46,0x39,0xd1, +0x0d,0xf5,0xc4,0x9d,0x96,0xb1,0xe5,0xc5,0xfe,0x31,0x1d,0x97, +0xb5,0x41,0x0d,0x29,0x5b,0x59,0xf5,0x44,0x78,0xcc,0x8d,0x63, +0x99,0x7b,0x75,0x11,0x13,0x36,0xfe,0x60,0x8b,0xf6,0xdd,0x5d, +0x3b,0x91,0x0f,0x82,0x00,0xe5,0x04,0x5b,0x8b,0x25,0xc4,0x25, +0x34,0xdd,0x1f,0xf2,0x0b,0xd3,0x52,0x4e,0xa2,0xba,0x92,0xd7, +0x24,0xae,0x40,0x4c,0xd6,0x4c,0x77,0x88,0xb0,0xe5,0xee,0x21, +0x4c,0x33,0xd8,0x11,0x25,0xea,0x84,0x10,0x31,0x0a,0x0d,0x36, +0x5c,0x37,0xd8,0x33,0x60,0x47,0x95,0x36,0xf2,0x87,0x26,0xb5, +0x95,0xa2,0x65,0xe6,0x28,0xb1,0x2c,0x90,0x2a,0x9d,0xf8,0xca, +0x93,0x75,0x96,0xfd,0x62,0x3c,0x97,0xb9,0xaf,0xb4,0xfd,0xd9, +0xbf,0x8d,0xb4,0x9a,0x37,0x7c,0x44,0xcc,0xfd,0x6d,0xc4,0x63, +0xc6,0xd9,0x0e,0xa6,0xfa,0x42,0x5d,0x91,0xc6,0x6a,0xd2,0x59, +0xf5,0x04,0x31,0x55,0xce,0x43,0x2b,0x2e,0x3c,0x9e,0x92,0x6a, +0x4a,0xfa,0x22,0x89,0x3b,0xd5,0x65,0x64,0xc6,0x2b,0xad,0x66, +0x6c,0x12,0x23,0x8b,0xd5,0x89,0xa1,0x22,0xdc,0xb0,0xa2,0x77, +0xf8,0x58,0xe8,0x8c,0xd6,0x7c,0xa6,0x7d,0xf5,0x39,0xcd,0x9a, +0xa5,0x55,0xbd,0x7a,0xac,0xed,0x59,0xf3,0x9c,0x95,0x77,0xe0, +0x86,0x43,0xb4,0x71,0x89,0xd5,0x1d,0xa6,0x3e,0xb7,0x24,0xf1, +0x24,0x7f,0x40,0x7f,0xe9,0xc2,0x76,0x0b,0x1f,0xd7,0xc1,0xf0, +0x71,0x75,0x6b,0x56,0xd3,0x9b,0x4a,0x2c,0xe4,0x4d,0x9e,0x33, +0x70,0xe9,0x2c,0x86,0xb2,0x1f,0xc5,0x0f,0x72,0xea,0x48,0xe1, +0x5e,0xfe,0xe0,0x74,0x3e,0xe2,0x7e,0xc2,0xb6,0x35,0xdb,0xff, +0x6f,0x70,0x3f,0x87,0x70,0xbf,0x1f,0xe2,0xbe,0x9d,0xad,0xf2, +0x1d,0xec,0x92,0xc5,0xf0,0xfe,0x30,0x1c,0x26,0xe9,0x1f,0x91, +0x1a,0xfc,0x8f,0xd7,0xe0,0x3f,0x1f,0xe1,0xff,0x84,0x69,0x6b, +0x2d,0x48,0x36,0x27,0x90,0xfc,0x4e,0x34,0x59,0xb4,0x69,0xc9, +0x5b,0x20,0x79,0x94,0xe0,0xbf,0xf3,0xa0,0x31,0x10,0xd3,0xc5, +0x56,0x49,0x80,0xd6,0xf2,0xaf,0x03,0x5a,0x43,0x20,0xfd,0x6f, +0x0d,0x77,0x58,0x8c,0x80,0x3b,0x98,0x90,0xdf,0xad,0xe0,0x7e, +0xba,0x15,0xf9,0xb7,0x13,0xf2,0xb7,0x22,0xe4,0xff,0x4e,0x98, +0x16,0xea,0xc8,0xff,0x39,0xba,0x92,0x03,0x29,0xc9,0xc7,0x34, +0xe4,0x2f,0xae,0x7e,0x27,0xf4,0x35,0xf2,0x77,0xa4,0x4a,0xbb, +0xc9,0xc2,0x76,0x00,0xd8,0x42,0xa0,0xfe,0xb1,0x46,0x73,0x00, +0x6e,0xd6,0x64,0xde,0x55,0xfb,0x35,0x2a,0x0e,0xc2,0xdf,0xa7, +0x8a,0x3b,0xe9,0xa1,0x65,0xe9,0xfd,0x9c,0xbc,0x5c,0x6c,0x6c, +0xdb,0x1a,0x74,0x33,0x99,0xd0,0x99,0x28,0x6f,0x8f,0x88,0xb6, +0x8b,0x13,0x34,0x9a,0xe6,0xcf,0xd1,0xcd,0x1c,0x4c,0xdd,0x7c, +0x92,0xb7,0x2a,0x64,0xc3,0x60,0xb9,0x87,0x6d,0xd5,0x3a,0xf0, +0xd0,0x18,0xe9,0x9b,0x9d,0x65,0x30,0x9c,0xbb,0xb5,0x63,0xbf, +0x2a,0x7d,0x49,0x6a,0x4b,0xc1,0x3d,0xf2,0x57,0xdb,0x12,0xb6, +0xaf,0x43,0x47,0x9a,0x02,0x1e,0xc6,0xb4,0x02,0xf8,0x56,0x98, +0xb1,0x22,0xcd,0x01,0x46,0x6a,0x52,0xf3,0x96,0xf5,0x98,0x97, +0x6d,0x30,0xae,0xeb,0x0d,0x0f,0x18,0x6f,0x9a,0xcb,0x20,0x6e, +0x94,0xb2,0xaa,0x8d,0x1a,0x0b,0x5d,0x30,0x9c,0x39,0x76,0x46, +0xdd,0xf1,0x8b,0xb2,0x54,0xbc,0x07,0xeb,0x1e,0x50,0x8a,0xe2, +0xb1,0x0c,0xf6,0x8e,0x12,0x9f,0xb8,0xc3,0x47,0x18,0x87,0xd8, +0x8f,0x63,0x9f,0xff,0x29,0x3e,0x12,0x13,0x73,0xc6,0x56,0x79, +0x31,0xd8,0x75,0xe7,0x4d,0x89,0x0f,0xdc,0x61,0x16,0x74,0x97, +0xb8,0xfd,0x62,0x16,0xf3,0xa7,0x98,0x25,0x26,0x72,0xa7,0x05, +0xac,0x00,0x9a,0x53,0x40,0xbd,0x05,0x3c,0x0d,0x0e,0xa2,0x82, +0x41,0xe0,0x02,0xe6,0x05,0x71,0x4a,0x16,0xb3,0xf2,0x6b,0x3c, +0xa2,0xbc,0xbd,0xc1,0x94,0xb7,0x97,0x37,0xdb,0xf3,0x37,0x96, +0x8d,0xf5,0xbc,0x79,0x34,0x76,0xf0,0x1b,0xa6,0x48,0x6d,0x2b, +0x5e,0x58,0xf9,0xe9,0x2f,0x71,0x9b,0x72,0x66,0xad,0xa7,0x37, +0xb7,0xef,0xcd,0x6e,0x49,0x62,0x08,0xac,0xe4,0x16,0x99,0x71, +0x07,0x34,0xc3,0x29,0xa0,0xa0,0x5f,0xba,0x7f,0xba,0xe8,0x64, +0x4a,0x3a,0x4e,0xf1,0xe4,0x35,0x49,0x2b,0xd0,0x2f,0x35,0xa5, +0x29,0x1e,0x28,0x1a,0x2e,0x4e,0x8a,0xd4,0x7d,0xc2,0xca,0xf8, +0x3d,0x47,0x71,0xec,0xb2,0x4c,0x62,0x54,0x89,0x3a,0x95,0xfc, +0xd2,0xaa,0x8e,0xe1,0x23,0xa1,0x5b,0x3b,0x5b,0xa5,0x0c,0x3a, +0x73,0x7b,0x4f,0xa6,0x3e,0x64,0xd5,0x8d,0xc4,0x3f,0x70,0x8a, +0xdc,0x3b,0x71,0xf6,0x48,0xca,0x51,0x53,0xf2,0x17,0xc9,0x6b, +0x93,0x56,0x70,0xbb,0x40,0x16,0xb5,0x6e,0x49,0xac,0x69,0x09, +0xd6,0xb1,0xeb,0xbb,0xe4,0x03,0x71,0x47,0x79,0xfd,0x48,0x36, +0x88,0xb3,0xba,0x0c,0x2e,0x70,0x36,0x44,0xe3,0xa3,0xdf,0xae, +0x3e,0x95,0xa1,0x4f,0x98,0xe8,0x03,0xa1,0x35,0x57,0x99,0x9a, +0x0c,0x3f,0xc9,0x79,0x53,0xca,0xb3,0x73,0x53,0x0f,0xa6,0x9a, +0x12,0xbf,0x48,0x5c,0x83,0xe0,0xd8,0x19,0xec,0x08,0x1c,0x3b, +0x8a,0x77,0x22,0x70,0x05,0x47,0xe0,0xb8,0x7c,0x75,0xdc,0x57, +0x87,0x70,0xe6,0x9d,0x30,0x09,0xdf,0x62,0xd5,0x2d,0x94,0xc0, +0xb1,0xdb,0xf8,0x91,0xe0,0x82,0x56,0xfa,0x3e,0x78,0xc8,0xcb, +0x8b,0x6c,0x3e,0xc5,0x80,0x3a,0x24,0x16,0xfc,0x29,0x3d,0x8a, +0x95,0x95,0x3e,0xf5,0xb2,0x48,0x97,0x6e,0x6d,0xbc,0xa6,0xb1, +0xd2,0x23,0xc6,0x8d,0x55,0x25,0x44,0x96,0x07,0x05,0x85,0xe9, +0x29,0x19,0xe8,0x98,0x93,0xd7,0x22,0xb2,0x8c,0x00,0xb3,0xee, +0x98,0x9d,0x16,0x27,0x45,0x50,0x3c,0x4d,0x59,0x73,0xf6,0xa4, +0x24,0xa7,0xae,0xcf,0x31,0x89,0xd1,0xa5,0xea,0xf4,0x60,0x31, +0xc6,0xb0,0xca,0x73,0xf4,0x70,0xe8,0xe1,0x81,0xb3,0xdc,0x8b, +0xdb,0x4f,0x67,0xdc,0x29,0x84,0x80,0xec,0x02,0x37,0x46,0x33, +0x38,0xc8,0x5d,0x2c,0x74,0x1c,0xeb,0x5b,0x69,0x40,0x94,0xf9, +0x51,0xce,0x9f,0x70,0x3f,0xaf,0x30,0x35,0x25,0x0d,0x3b,0xa3, +0x35,0x10,0x06,0xf6,0x04,0x5d,0x43,0x45,0xfd,0x25,0x49,0xdc, +0x7d,0x38,0x4b,0xd7,0xc0,0x63,0x12,0x81,0xc7,0xca,0x6e,0xe1, +0xe1,0xd0,0xb5,0x93,0xad,0x98,0x0d,0xc5,0xdc,0x3c,0x8b,0x15, +0x12,0x4e,0xad,0xad,0x61,0x0c,0xbe,0xa0,0x33,0x61,0x5f,0x6e, +0x2f,0x59,0xcf,0x6f,0x11,0x20,0x76,0x71,0xc3,0x57,0x0c,0x4b, +0x7e,0x2b,0x5f,0x13,0x86,0xe1,0x2c,0x04,0xda,0x73,0x7b,0x33, +0x1a,0x28,0xa5,0x99,0xc3,0xaf,0xea,0x0d,0x27,0xba,0xf4,0x96, +0xdc,0x3e,0x06,0xc5,0x4b,0xa5,0x8a,0x6e,0x69,0xe2,0x5d,0xc7, +0xdf,0xbc,0xb8,0xa3,0x1d,0x13,0xc7,0x61,0x8d,0xf8,0x04,0x27, +0x95,0x07,0x4d,0xaa,0x16,0x25,0x38,0xa9,0x72,0x28,0xa8,0x5c, +0xb3,0x43,0xcf,0x9b,0x94,0x76,0x16,0x27,0x55,0x9b,0xbf,0x4f, +0xaa,0x13,0x34,0xa9,0x02,0xad,0x93,0xca,0x95,0xa8,0xce,0x6f, +0x55,0x88,0x5b,0x62,0xb5,0xfe,0x41,0x54,0xe7,0x34,0xc7,0x42, +0x78,0xf3,0x4f,0x70,0x8e,0xf5,0x93,0x8f,0x8f,0x7a,0x6b,0x8e, +0xad,0xdf,0x11,0x8b,0x73,0xcc,0x5d,0x9f,0x63,0x26,0x02,0x2d, +0x42,0x19,0x8a,0x09,0x53,0x36,0xd3,0x1c,0xf3,0xc6,0x39,0x66, +0x2f,0x07,0x8a,0x5c,0x18,0x72,0x45,0x0c,0x11,0xad,0xf5,0x8f, +0x85,0xe7,0xa4,0x6a,0x1b,0x8d,0xed,0xfc,0x1f,0xd5,0xb7,0x99, +0x38,0xcb,0xc4,0xc7,0x9d,0x5a,0xff,0xa7,0xf9,0xc7,0x6d,0x03, +0xb1,0xf3,0x79,0xcc,0x1d,0xa7,0x8b,0x3b,0xb7,0x35,0xb1,0x5f, +0xe0,0xc9,0xeb,0xe9,0x42,0x93,0x60,0xa8,0x46,0x6c,0x6e,0xc3, +0x1d,0x06,0xa3,0xa3,0x21,0xce,0x8c,0xe7,0xb0,0x9a,0xa6,0xc2, +0x8f,0xe2,0xb2,0x86,0xae,0x97,0x1f,0x9c,0x25,0x74,0x4d,0xdc, +0xaa,0xa3,0xeb,0x50,0xa2,0x63,0xcf,0x10,0xfd,0x16,0x27,0x2d, +0x59,0x4b,0xe8,0x1a,0xb1,0x3a,0xce,0xe6,0x48,0xce,0xe6,0xbc, +0x32,0xb3,0xd8,0x57,0x56,0x6d,0x1f,0x24,0xf6,0x1b,0xd6,0x82, +0xe3,0x90,0x3e,0x08,0xb4,0x0e,0xb6,0xe3,0x60,0x23,0x31,0x61, +0xfc,0xaa,0x04,0x11,0xae,0x34,0x3f,0xfd,0xc3,0xc9,0xdc,0x74, +0xd3,0xf6,0xc4,0xed,0x14,0x58,0xa7,0x40,0x4b,0x42,0xc3,0x6f, +0x45,0x53,0xd4,0x25,0x45,0x7a,0xff,0x44,0x34,0xdc,0x7f,0x64, +0x33,0xa2,0xa1,0x7a,0x9e,0x75,0x1c,0x32,0x0a,0xa2,0x7d,0xb0, +0xeb,0x4e,0x3a,0x77,0xf9,0x7c,0x0c,0xa7,0x7f,0xc5,0x85,0x36, +0xa9,0xee,0xcc,0x0f,0x19,0xb9,0x99,0x6f,0xe0,0xa9,0xb5,0xae, +0x3a,0x97,0x37,0xf0,0xb4,0xfe,0xc0,0xb1,0xe4,0xe3,0xeb,0xb3, +0x4d,0x62,0x67,0xb1,0xaa,0x86,0x8a,0xdd,0x86,0x95,0x1d,0x86, +0x8e,0x80,0x18,0x4f,0xac,0xce,0x44,0xd5,0xd5,0x03,0x4f,0x0c, +0xa3,0x79,0x83,0x5f,0x19,0xc6,0x6e,0x1a,0xe3,0xf8,0x1f,0x5a, +0x30,0xdd,0x94,0x82,0xe9,0x89,0x14,0x4c,0xf3,0x06,0xdb,0x28, +0x9a,0xee,0xa0,0xb3,0x56,0x14,0xa9,0x97,0x0d,0x15,0x61,0xb2, +0x82,0x53,0x51,0xa3,0xae,0x68,0x66,0x4f,0x91,0xf5,0x6a,0x8a, +0xac,0x7f,0x55,0x42,0xa8,0x6b,0xfc,0xd4,0xbd,0x93,0x79,0xd4, +0xb5,0x1d,0x7a,0xd7,0x5a,0xbc,0xee,0x9a,0x35,0xc4,0xd7,0xd6, +0x0c,0xc7,0xd6,0x67,0x60,0xd7,0x7c,0x86,0x84,0x5b,0xbb,0xc6, +0x6d,0xaa,0xb4,0x96,0x88,0xb6,0x4d,0x86,0x09,0xed,0x02,0xda, +0xb7,0x55,0x0b,0xd9,0x8b,0x67,0xed,0xae,0xc2,0x04,0x57,0x1c, +0x94,0xc1,0xf2,0x98,0xd0,0x71,0xe0,0x03,0x1d,0x83,0x73,0xf3, +0x2d,0x5b,0xa5,0x53,0xa5,0xb9,0xa2,0xa3,0xf0,0x29,0x1e,0x37, +0x9a,0x32,0x21,0x54,0x4f,0x57,0x07,0xe2,0x24,0x7a,0x78,0xa1, +0x28,0x2f,0x25,0x9f,0xc2,0x67,0x3d,0x12,0xf1,0xa1,0x59,0x1a, +0x22,0x5a,0x47,0x6c,0xd6,0x56,0xaa,0x8b,0x28,0x3b,0xc1,0xb7, +0x19,0xc9,0x99,0x45,0x66,0x31,0xa6,0x44,0x9d,0x11,0x82,0x91, +0xc8,0x1a,0x90,0xc2,0x29,0x12,0x71,0xb0,0xfd,0x04,0xc2,0xb8, +0xd4,0x8f,0x11,0xe5,0x78,0xb0,0xda,0x40,0x4f,0x23,0xbd,0xbb, +0x28,0xb9,0xf4,0x86,0x39,0x55,0x8c,0x2b,0x53,0xdf,0x0f,0x12, +0xe3,0xad,0x1b,0x82,0x7d,0xb4,0x25,0xf6,0x13,0x7d,0xab,0xd7, +0xba,0xc4,0x9e,0xa0,0x6f,0x08,0x8e,0x13,0x8b,0xa3,0xb7,0x2e, +0xd2,0x72,0x92,0xb6,0x61,0xea,0x37,0xd7,0x69,0x69,0xfd,0x39, +0x5c,0xe1,0xc6,0x3e,0xac,0x33,0xdc,0x90,0x95,0x15,0xb0,0xb3, +0x42,0xdc,0x23,0x0e,0x5c,0x2b,0xb1,0xf8,0x04,0x51,0x49,0x57, +0xad,0x06,0xe1,0xb3,0xa3,0x84,0x5f,0xed,0xf1,0x83,0xd6,0x76, +0x26,0x11,0x7b,0x6f,0xb5,0xe2,0x49,0x78,0xac,0x04,0xf2,0x48, +0x4a,0x30,0x6d,0xa1,0x44,0x98,0x37,0x0a,0x89,0xdf,0x5b,0x27, +0x61,0xb7,0xfd,0x58,0xdb,0xb7,0x43,0x88,0x4d,0xc0,0x0a,0x3f, +0x47,0x37,0x61,0x88,0x63,0xc9,0xea,0x1e,0xda,0xa5,0xc3,0x2f, +0xa7,0xe1,0x97,0x0b,0x85,0x7f,0x8d,0x3d,0x8b,0x53,0x8b,0x68, +0x7f,0x0e,0x05,0x9b,0x72,0x9d,0xf6,0xd9,0x16,0xc2,0x71,0xfc, +0x76,0x84,0x5a,0x4a,0x8b,0xe9,0x36,0xf4,0xb8,0x92,0x40,0xe2, +0x9e,0xa3,0x0a,0x86,0xd2,0x8e,0x72,0x13,0xfa,0x7a,0xd1,0x75, +0x5a,0x38,0x7f,0x0e,0x67,0x78,0x83,0x57,0x4c,0xf1,0x04,0x21, +0xab,0xee,0x82,0xe9,0x09,0xc4,0x57,0x8b,0x7f,0xf7,0x37,0xc0, +0xe9,0xfa,0xf8,0x8d,0x93,0xe2,0x6e,0x70,0x20,0x1a,0xef,0xcf, +0xc5,0xd7,0xd4,0x5f,0xf1,0x8d,0xea,0x82,0xeb,0x65,0x5d,0xac, +0xea,0x99,0x17,0xe5,0x82,0x89,0xf7,0x2e,0x17,0xe5,0xa7,0x9c, +0x36,0x71,0x73,0x1b,0x56,0xd5,0x16,0xf6,0xe3,0x42,0x19,0x7f, +0xdd,0xae,0x09,0xfd,0x2e,0xb5,0x29,0xde,0x85,0x45,0xb4,0x46, +0xe6,0x4d,0x37,0x33,0xf1,0x95,0xb6,0xed,0x85,0x05,0x56,0x69, +0x1d,0x98,0x8d,0xa2,0x96,0xc1,0xae,0xea,0x3f,0xfe,0xde,0xa7, +0xd5,0x6a,0xa1,0x2c,0xde,0x51,0x3e,0x29,0x50,0x3f,0x11,0x75, +0x95,0x98,0x22,0xb5,0x14,0x9e,0xe1,0x94,0xdf,0x4f,0x3b,0x08, +0x58,0x8b,0x0f,0x77,0x49,0xd5,0x58,0xba,0xd7,0xf3,0xc6,0xdd, +0xdf,0x66,0xe9,0xfe,0xe6,0x9a,0x88,0xd1,0x58,0xba,0x67,0x71, +0x9b,0x73,0x2c,0x02,0x2e,0x13,0x3f,0xf1,0xce,0x6b,0xfa,0xd8, +0x10,0xdb,0x76,0x77,0xee,0xbc,0x9b,0xf8,0xb0,0x2f,0xc9,0x62, +0xbc,0xbf,0x3a,0xe1,0x9a,0x18,0x5d,0x73,0x8f,0xb9,0x71,0x67, +0xf4,0x8b,0x2d,0x2f,0x32,0x75,0x44,0x1b,0x6e,0x33,0x8f,0x38, +0xb8,0x8b,0x64,0xe5,0xc3,0x32,0x35,0x0b,0xd2,0xb8,0x63,0x12, +0xb6,0x94,0x81,0xc2,0x5d,0x13,0xe3,0xb1,0x6c,0xa7,0x9a,0x5d, +0xac,0x42,0x1d,0x4f,0x9c,0xdc,0x8b,0xd5,0x92,0x40,0x25,0xb2, +0xb5,0xfa,0x19,0xe5,0x7b,0x57,0xbe,0x3b,0xa7,0xc6,0xd3,0x11, +0x14,0x4e,0x9c,0x64,0xb0,0xa8,0x11,0x4c,0xbc,0x03,0xe3,0x5f, +0x11,0x5f,0x77,0x17,0xac,0x77,0x96,0xcc,0x19,0x86,0x7c,0x8e, +0xdc,0xe9,0x20,0xf1,0x76,0xef,0xa3,0x59,0xb7,0x5a,0x3c,0xe3, +0x1e,0x2f,0x18,0xcc,0x53,0x5b,0x1a,0x1c,0xde,0x62,0xf1,0x5e, +0x74,0x4d,0xcc,0xd6,0x58,0xbc,0x67,0x73,0xe7,0x49,0xf8,0x7c, +0x1d,0xd6,0x93,0x7a,0x23,0x0a,0x54,0xa3,0xfc,0xe9,0x22,0x34, +0xf6,0x43,0xe9,0xc9,0x19,0x67,0xcd,0x07,0x29,0x27,0xfb,0xb8, +0x40,0x58,0xe9,0x46,0xc9,0x0b,0x9a,0x14,0x7d,0x9f,0x95,0x9d, +0x65,0x8a,0x5b,0xbf,0x35,0x69,0xdb,0xda,0x6d,0x4b,0x4d,0x62, +0x07,0x78,0x23,0x8c,0x6d,0x14,0x2d,0xf5,0x6c,0xee,0x44,0x36, +0xfe,0x6f,0xd6,0x81,0x3b,0x37,0x7d,0x43,0x07,0xfe,0xd5,0x35, +0x11,0xa5,0xd3,0x81,0x77,0xa0,0x6e,0x1f,0x87,0x0f,0x65,0x08, +0xf1,0xee,0xde,0xa2,0xc5,0x93,0x1e,0x22,0x44,0x84,0x3e,0xbe, +0xf3,0xe7,0x9f,0x1d,0xef,0xea,0xac,0xcd,0x13,0xe5,0xe1,0xa3, +0xc2,0xb4,0xc3,0x85,0xa2,0x42,0xcb,0x0e,0xa9,0xa8,0x96,0xb5, +0x39,0xcc,0x42,0xe4,0xe7,0x79,0xb2,0x98,0xe3,0xaf,0xae,0xbe, +0x26,0x3e,0x46,0x0d,0x79,0x73,0x9b,0x0f,0x99,0xc8,0x53,0xfd, +0x64,0xca,0x1a,0xb0,0xef,0x48,0x92,0x16,0x40,0x6c,0x28,0x53, +0xef,0x04,0x89,0x2d,0xdc,0xa1,0x84,0x41,0x82,0x70,0x5e,0x98, +0x10,0xbb,0x4e,0xcb,0x51,0x44,0x2c,0xe1,0x9d,0xac,0x54,0xa7, +0x25,0x49,0x17,0x7e,0x34,0x1f,0x7b,0x58,0x02,0x1f,0x86,0x14, +0x4d,0x97,0xc0,0xb2,0xa8,0xd7,0xc8,0x16,0x96,0x51,0xa2,0x1e, +0xf1,0x84,0xc7,0xc4,0x9a,0x96,0x52,0xa1,0x1d,0xc5,0x89,0xe7, +0x9f,0x98,0x0f,0x9f,0x2d,0x81,0xf9,0x21,0x4f,0x66,0x4a,0x10, +0xf4,0x81,0x5f,0x67,0xf0,0xb2,0x64,0x4e,0xce,0xba,0x73,0xa0, +0x68,0x77,0x99,0x29,0x5e,0x63,0x3c,0xfd,0x0d,0x26,0x19,0xd3, +0x2b,0x0f,0x16,0x7d,0x53,0xa2,0x11,0x75,0xad,0xfc,0x03,0x26, +0x18,0x33,0x33,0xdc,0x45,0xf0,0xdf,0x18,0x7c,0x21,0x16,0x1a, +0x88,0x4f,0x06,0xa9,0x6b,0xcb,0xc5,0x3c,0xd1,0x80,0x18,0xb8, +0x77,0x4b,0xea,0x40,0xf8,0x91,0xdb,0x8c,0x63,0xd0,0x1b,0x57, +0xb2,0xb6,0xd3,0x58,0x55,0x03,0x22,0x21,0x68,0xf0,0x9a,0x34, +0xbc,0x81,0xd8,0xa2,0x5f,0xd0,0x5e,0x25,0x8e,0xc8,0x3a,0x9d, +0xea,0x9f,0xd0,0xc3,0x98,0x91,0xd9,0x9a,0xb7,0xfc,0x88,0xad, +0xc1,0x5e,0xe4,0x26,0x9e,0xbe,0x64,0xde,0xfa,0xa0,0x18,0x3e, +0x0a,0x2d,0x8b,0x96,0xa0,0xee,0xa2,0x21,0xa3,0xba,0x5a,0x46, +0x3e,0x7c,0xf5,0x25,0xcb,0x4e,0xc8,0xc7,0x5f,0xce,0xd2,0x2f, +0x4f,0xa2,0x34,0xda,0x70,0x7b,0x4b,0xc6,0xe4,0xec,0x8b,0x07, +0xf2,0xf6,0x70,0xa7,0x17,0xec,0x25,0xf4,0x36,0xa6,0x17,0x1f, +0xca,0xf9,0x26,0xcf,0xb6,0x97,0x3a,0x8b,0x4b,0x37,0x18,0x77, +0xfe,0x86,0x0d,0x56,0x53,0xb9,0xf4,0x2d,0xab,0x65,0x37,0x6f, +0x20,0x3e,0x18,0xa4,0x2e,0xd3,0x05,0xfe,0xbc,0x5c,0xd9,0xce, +0x99,0x3b,0x83,0x56,0xea,0x2e,0x2e,0x8d,0xb5,0x96,0x99,0x8f, +0x65,0xa6,0x0f,0x52,0xdf,0x2f,0x17,0x93,0xb1,0xcc,0xcc,0x72, +0x25,0x86,0x3a,0x85,0x11,0xe1,0xe7,0x4c,0x54,0xc1,0x13,0x2e, +0x7d,0x4a,0x9d,0x9a,0x43,0x9d,0x4a,0x2b,0x57,0xee,0x0d,0xaa, +0xd5,0xc2,0x52,0xad,0x53,0xfd,0xa9,0xf3,0x62,0x96,0xda,0x80, +0x1b,0x82,0x19,0xb7,0x3c,0x64,0x22,0x44,0x7e,0x09,0x5d,0x33, +0x0a,0x0f,0x66,0x7e,0x83,0x61,0xd0,0x30,0x8d,0x4c,0xdc,0x83, +0xdb,0xac,0xff,0xbb,0x44,0x9f,0x97,0x8b,0xe9,0x58,0x61,0x44, +0xb9,0xb2,0x93,0x24,0x12,0x1e,0xf0,0x21,0x37,0x4c,0xd6,0xe9, +0xc3,0x4d,0x34,0x49,0xb9,0xe5,0x67,0x06,0x8d,0x68,0xf6,0x71, +0xe7,0x35,0xff,0x79,0x0a,0x10,0x7f,0xf8,0x57,0x57,0x85,0x8b, +0xce,0x1f,0xde,0xe4,0x7f,0x62,0x92,0xab,0xf4,0x5b,0xfb,0x8e, +0x62,0xec,0x90,0xea,0xf2,0x8b,0xa2,0x48,0x38,0xc2,0xdd,0x4b, +0xb4,0xb9,0xda,0xed,0xff,0x07,0x63,0x13,0x9f,0x85,0xd2,0x11, +0x9a,0xa3,0x96,0xf9,0x5b,0xa3,0x38,0x3f,0x03,0x96,0x20,0x61, +0xc1,0x09,0xa3,0x53,0x9c,0xb7,0x93,0x97,0xaf,0x5c,0x13,0x67, +0xb3,0x13,0x45,0xba,0x6f,0xce,0x14,0x75,0x4b,0x61,0x73,0xf0, +0x8d,0x09,0x12,0xb4,0xfc,0xa8,0xd7,0x90,0x96,0x96,0x81,0xc2, +0x60,0x65,0x39,0xd7,0x38,0x85,0xbe,0x2c,0x4c,0xbc,0xf0,0xc8, +0x7c,0xe2,0x4a,0x29,0x6c,0x09,0x16,0xd2,0x14,0x09,0x82,0xdf, +0xeb,0xd7,0x06,0x7c,0x88,0x37,0xf9,0xde,0xf1,0xe2,0xdd,0xe7, +0x6a,0xb9,0x83,0x1c,0x61,0x9a,0x31,0xef,0x66,0x4a,0xe1,0xb7, +0x65,0x56,0x76,0x9c,0x46,0x30,0xd5,0x98,0x97,0x09,0x0e,0x62, +0xd4,0xb2,0xad,0x8b,0xdf,0xe2,0x3a,0x9f,0x0f,0x72,0x88,0x90, +0x89,0xf3,0xfb,0x1b,0x09,0x1e,0xc3,0x1d,0x99,0x37,0xe9,0x46, +0x94,0xde,0xbd,0x8c,0xf9,0x25,0x29,0x59,0xdf,0xe6,0xd9,0xc2, +0x72,0x8c,0x6f,0x6d,0xa7,0x30,0xe5,0x81,0x72,0x48,0x0e,0x46, +0x3f,0x51,0xe7,0x5a,0x55,0x1b,0x7f,0x88,0x90,0xe0,0x4b,0xe2, +0x81,0xf7,0xc1,0x85,0x36,0xf4,0x31,0xe6,0x66,0x80,0xbd,0xe8, +0xb8,0x74,0x73,0x64,0xbc,0x46,0xf0,0xb9,0x2a,0xde,0xe6,0x6b, +0x2d,0xb5,0xc3,0x97,0xa2,0x5e,0x09,0x24,0x87,0x54,0x2c,0x91, +0xa0,0xde,0xc7,0x43,0x07,0x13,0x99,0x10,0x34,0x67,0x71,0x36, +0x3b,0xb2,0x12,0x73,0xcf,0x9b,0xbf,0xaa,0x2c,0x81,0xa4,0x10, +0x51,0x77,0xb1,0x04,0x6e,0x33,0x79,0xab,0x6f,0x99,0xa6,0x41, +0x6c,0xbd,0x9f,0x31,0xbf,0x34,0x25,0x87,0x48,0x84,0xda,0xa8, +0x0b,0x64,0xf1,0x4f,0x3f,0x88,0xb5,0x32,0x2c,0x2b,0xa7,0x18, +0xcc,0xbe,0xa6,0x4c,0xf3,0x87,0x11,0x28,0x81,0x3b,0x02,0x6b, +0x21,0x89,0xdb,0xc9,0x98,0x77,0x36,0x25,0x83,0xa8,0x7f,0xda, +0xaa,0xd9,0xdc,0xbe,0xcc,0x4a,0x58,0xfe,0x9e,0xde,0xbb,0xe8, +0x6b,0x4a,0x3c,0xf5,0xee,0x2a,0x67,0x18,0x09,0x7f,0xa8,0xee, +0xe3,0x0e,0x4d,0xad,0x25,0x26,0x81,0x1c,0x8a,0x25,0x3e,0xbd, +0x86,0xfe,0x10,0x4b,0x14,0x63,0x85,0xa7,0xa9,0xc2,0x6e,0xc6, +0xbc,0xc2,0x14,0x8d,0xd2,0x7c,0x07,0x3c,0xaf,0xde,0x4f,0xdd, +0xcf,0xd4,0xea,0x3a,0x7b,0x4d,0xb9,0xe3,0x0f,0xf3,0x25,0x35, +0xde,0x4d,0x26,0x3d,0xe9,0x6a,0x32,0x91,0xda,0x6c,0x95,0x3a, +0x6a,0x13,0x6e,0x38,0x8e,0x46,0x5e,0x9f,0x69,0x8d,0xfa,0xc3, +0x7b,0x92,0x1a,0x87,0x05,0x1d,0xa0,0x7b,0x7e,0x11,0xd5,0x87, +0x05,0x87,0x6b,0x4c,0xe8,0xda,0x96,0x32,0x95,0xdb,0x70,0x4d, +0xf9,0x8a,0xca,0xa1,0x3e,0xeb,0x91,0x7c,0x85,0xb0,0x80,0x37, +0x8c,0xff,0x1b,0x45,0x74,0x3c,0x9c,0x97,0xdb,0x87,0x3c,0x53, +0xdf,0xbf,0x58,0x55,0x3e,0xc4,0x00,0x7d,0xd5,0x56,0x72,0x0c, +0x59,0xe8,0xd7,0x25,0x49,0x17,0xd1,0x8c,0x1f,0x94,0xc0,0xbc, +0x90,0x62,0x34,0x63,0xd7,0x85,0xbd,0x46,0xb9,0xa1,0x19,0xd7, +0x5f,0xb1,0x25,0x22,0x3e,0x9a,0xdb,0x34,0x66,0x3b,0x8a,0x12, +0x2f,0xe8,0x36,0x3c,0x2f,0xe4,0x11,0xda,0x70,0xf0,0x5c,0xcd, +0x86,0x33,0x26,0x65,0xdf,0xd5,0x6c,0x58,0x67,0xd5,0x7e,0x09, +0x93,0x8d,0xe9,0xd7,0x0f,0x16,0xed,0x2a,0x8e,0xd7,0xa8,0xf2, +0xff,0x80,0x89,0xc6,0x8c,0x0c,0x0f,0x11,0xb2,0x7c,0x73,0xd4, +0xc6,0x28,0x3a,0x5c,0xb2,0x99,0xc4,0x86,0xbd,0x05,0x45,0xea, +0x4e,0x9c,0xea,0x12,0x3c,0x87,0x39,0xf2,0x88,0x9f,0xe0,0x9f, +0x17,0x95,0xcf,0x79,0xe3,0x2e,0x4c,0xb4,0x85,0xb9,0x34,0xef, +0x75,0x62,0xf0,0x0f,0xc1,0x18,0x2a,0x8c,0xe0,0xbc,0x85,0xa9, +0xad,0x35,0x53,0x2f,0x57,0x3d,0x75,0x36,0x7f,0x34,0xf5,0x4b, +0x0f,0xcc,0x59,0xa2,0x4e,0x29,0x24,0x06,0x57,0x8e,0x97,0xc0, +0xe3,0xa3,0x5e,0xc3,0xa0,0x0e,0xda,0xba,0x1d,0x1a,0x27,0x31, +0x4d,0x69,0xb6,0xfe,0x55,0x51,0xe2,0xc5,0xc7,0xe6,0x93,0x97, +0xa9,0x94,0xa8,0x37,0x59,0x82,0xb0,0x99,0x7d,0xdb,0x42,0x67, +0x22,0x60,0x7d,0x70,0xbc,0x48,0xe3,0xb7,0xd6,0x78,0xfd,0x1d, +0x60,0x86,0x31,0xef,0xfb,0x94,0xe2,0xbd,0x65,0x56,0x86,0x7e, +0x47,0x78,0x57,0xe7,0x74,0x1a,0xb3,0x74,0xeb,0x92,0x78,0x4d, +0x7e,0xc7,0x38,0x06,0x1d,0xb5,0x01,0x71,0x95,0xd4,0x8d,0x18, +0x78,0xe2,0x53,0x3d,0xf2,0x8a,0xad,0x23,0x32,0x02,0x47,0x64, +0xbb,0xda,0x16,0x47,0xe4,0x82,0xb8,0x24,0x67,0x8d,0xbb,0x52, +0x9e,0x7b,0xf6,0x40,0xa1,0x69,0xd3,0xc6,0x24,0xe2,0xcf,0xf3, +0x82,0x50,0xe3,0xd5,0x8a,0x9c,0xd3,0xfb,0x0b,0x36,0x7d,0x91, +0x40,0xd4,0x6d,0xde,0x30,0x98,0xe8,0xa1,0xdb,0x8b,0xbe,0x31, +0x94,0x31,0x54,0xe3,0x21,0xcd,0x4e,0xcc,0xbb,0x68,0xde,0x24, +0xda,0x14,0xc3,0xf7,0xa1,0xa2,0xee,0x2a,0x09,0x1a,0xcd,0x0d, +0xf4,0x6e,0x65,0x69,0x21,0x9a,0x11,0x1b,0x69,0x54,0x2d,0xe3, +0x5c,0x76,0x52,0x7e,0x99,0x79,0x23,0x77,0xb6,0x63,0x58,0xa4, +0xc9,0x64,0x5f,0x30,0x81,0xa3,0x45,0xf1,0x85,0x2f,0x64,0xd1, +0xc7,0x0f,0xfa,0xd4,0x72,0x52,0x9f,0x97,0xff,0x8a,0x95,0xf2, +0xd2,0x8e,0x1e,0xda,0x7b,0x28,0x51,0x3f,0xcc,0x6c,0x0f,0x4d, +0x8c,0x59,0x39,0xd0,0x46,0x34,0x8c,0x4e,0x8a,0x58,0x8b,0xfe, +0xe3,0x11,0xfb,0xfa,0x68,0x62,0x4a,0xb6,0x59,0xb8,0x17,0xc1, +0xb5,0x30,0x51,0xc7,0xb0,0xb6,0xd7,0xdc,0x71,0x9d,0x06,0xb5, +0x7a,0x6c,0x8c,0x4a,0x04,0x33,0x4e,0xb1,0xaf,0xd1,0xf7,0x66, +0x98,0xff,0xd2,0x7e,0x75,0x37,0xac,0xf1,0x9d,0x12,0x04,0x72, +0xb7,0x8c,0x09,0xc6,0x8b,0x39,0x99,0xa9,0xfb,0x53,0x13,0x13, +0xb6,0xd2,0x06,0xa8,0x13,0xd4,0x37,0x46,0xb9,0x59,0x09,0xaa, +0xe7,0xe9,0x04,0xd5,0x47,0x64,0x61,0x88,0x94,0x4e,0xa7,0x1f, +0x3b,0xba,0xf7,0x48,0x22,0x46,0xa3,0x49,0xcb,0x44,0x3b,0x5c, +0x1c,0x67,0xe5,0x42,0x6b,0xd1,0x28,0x3a,0x89,0x5b,0x1c,0xd9, +0x18,0x1f,0x7f,0xf7,0x67,0xc6,0xa8,0x24,0xad,0xa1,0x9d,0x29, +0x89,0x69,0x59,0xe6,0x3f,0x8b,0xe0,0x6a,0x98,0x68,0x65,0x58, +0xdb,0x71,0x4a,0x20,0x34,0xed,0x98,0x89,0x0d,0xe5,0x65,0x9e, +0xd8,0x7f,0x22,0x31,0x71,0x0b,0x11,0x25,0x36,0x86,0x86,0xc6, +0x25,0x60,0xa8,0x65,0xa5,0xae,0x07,0xad,0x89,0x1b,0xfa,0x39, +0x71,0x43,0xcf,0x22,0x6e,0x68,0x0b,0xad,0x52,0xfe,0xac,0x5e, +0x49,0xdf,0xe1,0xc2,0xa4,0x2d,0x31,0x42,0x3b,0x3f,0xa4,0x65, +0x48,0xac,0xfa,0x0f,0x92,0xea,0x92,0xfc,0xa7,0x55,0x25,0x07, +0x35,0x95,0x2c,0x7f,0x5b,0x25,0x89,0x11,0xeb,0x74,0x95,0x1c, +0xf9,0xef,0x2a,0x19,0x4c,0x2a,0x49,0x88,0x5a,0x17,0x19,0x1b, +0x19,0x63,0x44,0xa0,0xfd,0x4a,0xe3,0xc5,0x7c,0x4b,0x2f,0xc1, +0xaf,0xf5,0x72,0x1c,0xf5,0x92,0xb8,0x95,0xc4,0x75,0x82,0x7a, +0xc6,0xa8,0x16,0xd5,0x15,0x44,0xab,0xf7,0x1d,0x9d,0x06,0x3c, +0xa7,0x45,0x8c,0x0b,0x71,0x4f,0xb3,0x7f,0xd0,0x61,0x40,0x69, +0xf5,0x09,0x94,0x4a,0xb1,0x91,0x1f,0xf3,0xc6,0x3b,0x59,0x47, +0x55,0x0a,0xad,0x3a,0x53,0x6c,0x50,0x4f,0x82,0x4c,0x27,0x02, +0xc4,0x4f,0xfd,0x64,0xb5,0x9c,0x35,0x39,0xaf,0x34,0x25,0x6b, +0x77,0x8e,0x29,0xbe,0x96,0x46,0xd7,0x5b,0xa7,0xaa,0xce,0xb6, +0x32,0x44,0xdb,0x81,0xa7,0x31,0x2b,0x1d,0xde,0x11,0xae,0xb1, +0xc9,0x3a,0x51,0x25,0xbd,0x3a,0xf1,0x55,0x7a,0x72,0xd6,0x19, +0xf3,0x46,0x51,0xa7,0x08,0xd6,0x87,0x5d,0x5e,0x23,0xb5,0xfb, +0x38,0x38,0xd8,0xcf,0x12,0xf8,0xc3,0xd2,0x64,0x8d,0x40,0x53, +0x83,0xd7,0x1d,0x27,0x12,0x33,0x0b,0xcc,0x09,0x17,0x8b,0x60, +0x5d,0x98,0xa8,0xbb,0x52,0x82,0x06,0xb3,0x02,0x3b,0x40,0x3d, +0x8b,0xb8,0x4e,0x7b,0xaf,0x2e,0x01,0xe0,0x4a,0x9c,0xd5,0x18, +0x57,0x6e,0x93,0x51,0xec,0x0d,0xfd,0xd5,0xdc,0x0a,0xb1,0x4c, +0xb8,0x18,0xaa,0x43,0xce,0xf3,0xc6,0xa9,0x0c,0xc6,0xa8,0x0e, +0xec,0x5e,0x40,0x17,0xee,0xb0,0x95,0x76,0x5c,0xfd,0x65,0x65, +0x2d,0xc4,0x56,0x88,0x7c,0xf5,0x1a,0x46,0xb1,0x1e,0xce,0x4c, +0xb8,0x94,0x49,0xd5,0x21,0xfb,0xaa,0x4c,0x0c,0x8c,0xc6,0xac, +0xac,0x23,0xc7,0xf7,0xa4,0x6d,0xf8,0xc2,0xca,0x63,0xdc,0xd4, +0x98,0x95,0xd1,0x42,0xd8,0xc6,0x24,0x45,0xc7,0xa1,0x34,0xd1, +0x9a,0xc4,0xc7,0x92,0x53,0x33,0xcd,0xeb,0x7f,0x3f,0x03,0xab, +0x47,0x96,0x4b,0x6b,0x7b,0x7f,0x3c,0x3a,0x2c,0x38,0xe4,0x8a, +0x11,0x8b,0xac,0x8f,0x59,0x16,0xbb,0xcc,0x48,0x14,0x7e,0x47, +0x13,0x8e,0x65,0x9a,0x37,0x5c,0xa4,0x22,0x7f,0x49,0xed,0x66, +0x8f,0xf2,0xf4,0xb2,0x64,0x4f,0x26,0x82,0x3d,0x22,0x35,0xee, +0x0a,0xd3,0x51,0xa0,0xc7,0x01,0x9e,0x24,0x10,0xbc,0xd0,0x4f, +0x15,0x88,0xd4,0xfa,0x17,0x22,0xb5,0x2e,0xe3,0x96,0x56,0xac, +0x6a,0x99,0xb2,0x43,0x16,0x71,0xfd,0xd5,0xf4,0x0a,0x11,0xad, +0xc9,0xf7,0xbc,0x1f,0xb7,0x99,0xc8,0x52,0xe0,0x0b,0xde,0xa4, +0x37,0xfb,0x8f,0xa4,0xd4,0x47,0xd5,0xae,0x72,0xc6,0xe4,0xf4, +0xa2,0x03,0xe9,0x5f,0x67,0x56,0x75,0x60,0xc4,0x4c,0x9d,0x96, +0xbf,0xff,0xe4,0xae,0xf4,0xf8,0x78,0x62,0x74,0x7d,0x8e,0x4b, +0xf4,0xf4,0xf4,0x8e,0x42,0x5e,0x46,0xd4,0xa4,0x56,0x3e,0xe8, +0x2f,0x4f,0x26,0xa1,0xf6,0x37,0x3c,0x28,0x82,0xf7,0xc3,0xce, +0x4a,0x3e,0x0b,0x43,0xc6,0x0e,0xb0,0x4c,0xb8,0x8a,0xba,0x5f, +0x57,0x4b,0x6b,0xbc,0xe3,0x44,0x42,0x66,0xa1,0xf9,0x8b,0x53, +0x45,0x30,0x3b,0xec,0xe1,0x5a,0x09,0x6c,0xe7,0x87,0x74,0x87, +0xba,0x16,0x71,0x84,0x54,0x6f,0x1e,0x08,0x16,0x8d,0xa0,0xda, +0x39,0x9e,0xdd,0x1f,0xec,0xf3,0x2a,0x9e,0x72,0xaf,0xae,0xae, +0x8a,0x20,0x66,0xc6,0xea,0x8f,0xd5,0x3e,0x72,0xf6,0xe4,0xfc, +0xd2,0xa3,0x59,0x7b,0x72,0x4c,0x71,0xd0,0x98,0x69,0x06,0x91, +0x92,0xb1,0x27,0x87,0x2c,0x04,0xa1,0x8b,0x0c,0x22,0x3b,0x1d, +0xea,0x69,0x06,0x11,0x1f,0xb5,0xb4,0xe6,0x12,0xfb,0xea,0x64, +0x72,0xe6,0x59,0xdd,0x1a,0xe2,0xc3,0xae,0x90,0x35,0x84,0x04, +0xf5,0xb3,0x0c,0xbb,0xbf,0x34,0x29,0x2a,0xee,0x2d,0x6b,0xc8, +0xd0,0xad,0x21,0x2e,0x4c,0xbc,0xa3,0x5b,0x43,0x7b,0xdd,0x1a, +0xa6,0xc8,0xa2,0x45,0x00,0x78,0xbc,0xa1,0xa8,0x06,0x0f,0x31, +0x51,0xee,0x1f,0xe3,0xbd,0xac,0xcd,0x4a,0xdb,0x17,0xef,0x4b, +0x59,0x99,0x47,0x8e,0xef,0x4d,0x25,0x7b,0xdc,0xb0,0x5a,0xd8, +0x42,0x33,0x0c,0x5e,0xdc,0x84,0x5d,0x4c,0x62,0x0c,0x11,0x02, +0x6a,0x87,0xfa,0xc4,0x9b,0x9a,0x65,0x5e,0xff,0xc7,0x19,0x58, +0x33,0xf2,0x32,0x0e,0xee,0x02,0x1c,0xdc,0xa0,0xab,0xc6,0xd8, +0x24,0xe2,0xb5,0x8d,0x5d,0x6e,0x24,0x86,0xc8,0x23,0x89,0xd6, +0xc1,0x5d,0x3b,0x52,0xd4,0x91,0xda,0xcd,0x1a,0xd5,0x81,0x46, +0x37,0x8f,0xe8,0x13,0x4f,0x92,0xf5,0x93,0xe5,0xbc,0x83,0x96, +0x33,0xdb,0xc3,0xb0,0xba,0x5b,0x97,0x35,0x5d,0x95,0x0d,0xc4, +0xd9,0x98,0xc3,0x1d,0x7f,0x7e,0x4d,0xda,0xb8,0x12,0x45,0x73, +0x17,0xf5,0xaa,0xea,0xb2,0xef,0xab,0xce,0xb1,0xee,0xaf,0x2a, +0x88,0xa7,0xba,0x0d,0xb7,0x4c,0xc3,0x29,0xe7,0x4d,0xdc,0x8b, +0x75,0xb9,0xa5,0x84,0x68,0x1a,0x77,0x50,0x1f,0xfe,0xe4,0xce, +0x5f,0x13,0x7d,0x74,0xf3,0xc5,0xf4,0xd5,0x11,0xed,0x59,0x6f, +0x7c,0xf6,0x26,0x3e,0xdb,0x13,0x9f,0x8d,0x85,0x36,0xd5,0x03, +0x11,0xce,0xaf,0x21,0x9c,0x5f,0x2d,0xcf,0x39,0x73,0xf0,0x2c, +0xc2,0x79,0xa2,0x0e,0xe7,0xc1,0xc6,0xab,0xd7,0x72,0x4e,0x1f, +0x28,0xd8,0xb4,0x21,0x61,0xcd,0x46,0x82,0xf3,0x01,0x3a,0x9c, +0xf7,0xd2,0xe1,0xdc,0xca,0x8f,0x9a,0x9d,0x98,0x7b,0x01,0xd5, +0x6e,0x45,0xf4,0xd5,0x12,0x38,0xce,0x0d,0xf2,0xf6,0x40,0x44, +0x6f,0x82,0x88,0x4e,0x34,0xaa,0x91,0xb1,0x94,0xe1,0x22,0x27, +0x29,0xaf,0xd4,0xfc,0x05,0x21,0xfa,0x6a,0x7a,0xdb,0xa1,0x3b, +0x22,0xba,0x83,0x45,0x29,0x87,0x24,0x59,0x84,0xf8,0x43,0x08, +0x2c,0xd7,0x3f,0xe6,0x20,0xb0,0x5f,0x53,0xc6,0xc9,0xe9,0x13, +0x2e,0x69,0xf8,0xcb,0xed,0x6e,0x92,0xbf,0x34,0x1b,0x2f,0xe4, +0x67,0x1c,0xdf,0x97,0x92,0x94,0xa4,0xbd,0xb4,0x48,0x90,0x96, +0xa9,0x41,0x5a,0x54,0x62,0x14,0x91,0x82,0xa2,0xd7,0x20,0x24, +0xd7,0x51,0xad,0x10,0xae,0x0d,0xb7,0xa2,0x9a,0xcf,0xe0,0x56, +0x8f,0x8c,0xd1,0x54,0x26,0x36,0x22,0x5a,0x43,0xb5,0xa3,0xc9, +0x47,0x33,0x79,0xfd,0x27,0xcc,0x77,0x4a,0x08,0xc8,0xbe,0xb6, +0x4a,0x11,0x78,0xc8,0xa2,0xde,0x00,0xa8,0x07,0x4b,0xf5,0x8f, +0x79,0xb4,0x6f,0x7f,0x4d,0x59,0x2c,0x67,0x4c,0xb8,0x90,0x9e, +0x79,0x74,0xff,0x11,0x53,0x12,0xfa,0x00,0x04,0xf7,0x36,0x08, +0xcd,0x17,0x32,0x33,0x8e,0xec,0x3b,0x9c,0x84,0x68,0x9f,0x4c, +0xbe,0xc6,0x60,0xcc,0xc8,0x86,0xd6,0x7f,0x45,0x26,0x46,0xad, +0x45,0x6f,0x1c,0x11,0x4d,0x0d,0x1c,0x4c,0x3c,0x78,0x82,0xd7, +0xff,0x81,0x0d,0x9a,0x3b,0xa9,0xf3,0xf0,0x96,0xb7,0xa8,0xf5, +0xb5,0x51,0x4b,0xb1,0xf5,0xd5,0xeb,0xbf,0x3e,0x90,0x78,0x78, +0x7d,0xaa,0xe9,0xaf,0x42,0xb8,0x3a,0x1c,0x31,0x75,0x55,0xff, +0xc9,0x23,0xa1,0xb1,0x3f,0xc9,0xe0,0x22,0xff,0x36,0xc0,0x1d, +0x96,0xd2,0xff,0xe6,0xb5,0x67,0xf0,0x2b,0x34,0xb9,0xc0,0xaa, +0x1e,0xd7,0x92,0x6c,0x5f,0x53,0xcc,0x72,0xe6,0x84,0x4b,0x67, +0x33,0x33,0xf6,0x67,0x9a,0x10,0xd5,0x09,0x79,0xdb,0x82,0x97, +0xf1,0x62,0x71,0xe6,0xc9,0xef,0xd2,0xad,0x5f,0xb4,0x83,0xd6, +0xba,0xef,0x69,0x1e,0x9d,0x1c,0xc1,0x1b,0x3d,0x65,0x36,0xbb, +0xd2,0x12,0xd2,0xce,0x98,0xe3,0x75,0x98,0xff,0x4b,0x6a,0xcb, +0x3d,0x96,0x31,0xab,0x94,0x5f,0x9f,0x20,0x22,0xd9,0x38,0xab, +0x33,0x92,0xdc,0xa7,0x0e,0x00,0x63,0x6b,0x4b,0xd5,0x4e,0x68, +0xf4,0x77,0x8e,0xed,0x41,0x0c,0x86,0x11,0xc7,0x76,0x7b,0xee, +0x91,0xcf,0x9e,0x49,0x0e,0x15,0x4a,0x0f,0x94,0xe4,0xe2,0xa9, +0xcc,0x13,0x07,0x4e,0x72,0x27,0x5a,0x54,0x19,0x2f,0x9e,0xc9, +0x48,0xfb,0x2e,0x95,0x54,0x92,0x48,0x8c,0xdf,0xcd,0x49,0x08, +0x0f,0xd1,0x58,0xa3,0xf5,0xad,0x1d,0x98,0x94,0xc4,0xd4,0x7c, +0xde,0xe2,0x16,0x4b,0x8a,0x5c,0x47,0x7a,0x8a,0x59,0xbd,0xde, +0x66,0xe7,0xf1,0xc4,0xd4,0x5c,0xab,0x37,0x74,0x37,0xac,0xf5, +0x9c,0x32,0x14,0x9a,0x7a,0xdb,0xce,0x04,0x7b,0xed,0x18,0xc1, +0xf9,0x31,0x83,0x38,0xc5,0x9e,0xe9,0xa7,0x06,0xce,0x3f,0x31, +0xeb,0x36,0xff,0xd3,0xd7,0xdb,0xfc,0x81,0xda,0x36,0x7f,0xe3, +0x0e,0x7f,0xdb,0xe6,0x5f,0xfd,0xaa,0x3f,0xe3,0x8d,0x3d,0x99, +0x35,0x0b,0xed,0x39,0xda,0xe5,0xbf,0x4c,0xbb,0xfc,0xdc,0x59, +0x61,0xbd,0x68,0x8b,0x5f,0x4b,0x40,0xbb,0x8a,0x4b,0xcd,0x59, +0xd5,0x74,0x0a,0xd0,0x7e,0x87,0x0f,0x43,0xc5,0x87,0x30,0x89, +0x5e,0x2a,0xa9,0x5e,0x0c,0x0a,0xfa,0xa2,0xfc,0xd3,0x47,0xd3, +0x76,0x9f,0xac,0x39,0x41,0xfc,0xcd,0x2e,0xc6,0xec,0xec,0xa3, +0xa9,0x7b,0x4f,0xc4,0x53,0x4e,0x93,0x55,0x02,0x97,0x69,0x08, +0xea,0xe8,0x87,0x1a,0xe0,0xac,0x26,0x3f,0xa4,0xa3,0x7a,0x4a, +0x72,0x5a,0xb6,0x39,0xfe,0xcf,0x33,0xb0,0x6e,0xe4,0x15,0x69, +0x6d,0x8f,0x8f,0xc3,0x83,0x03,0x03,0xaf,0xd1,0xc4,0x5f,0x1f, +0x4d,0x13,0x9f,0x18,0xde,0x53,0x12,0x8f,0x67,0x9a,0x37,0x5e, +0x3a,0x03,0xeb,0x47,0x8a,0xba,0x6b,0x25,0x8f,0x99,0xa3,0x3a, +0x74,0xb0,0x28,0x4f,0xa0,0xbd,0xbc,0xac,0x48,0x23,0xe0,0xae, +0xa8,0x10,0x37,0x75,0x02,0xee,0x2d,0xb6,0xd8,0xe3,0x3e,0x74, +0x81,0xee,0x86,0x1c,0x95,0x18,0xb9,0x36,0x32,0x36,0x2a,0x86, +0xc0,0x63,0xe7,0xa1,0x84,0xa3,0x19,0xe6,0x7d,0x03,0x17,0x48, +0xfd,0xe6,0x4d,0xec,0x30,0xd4,0xd2,0xe2,0x76,0x74,0x62,0x24, +0x1a,0x36,0xbd,0x58,0x83,0x13,0xec,0x70,0xc2,0xd1,0x93,0xe6, +0x7f,0x0d,0xfa,0x58,0xea,0x39,0x7d,0x14,0xb8,0xf8,0x5a,0x32, +0xc7,0x97,0x67,0x65,0xa5,0xec,0x4f,0xa1,0xc3,0x49,0x1c,0x1a, +0xee,0xd6,0x87,0xe5,0xda,0x38,0x28,0x2b,0x44,0x8e,0x1c,0x2e, +0xe6,0x07,0x55,0x28,0x0f,0xfa,0xab,0x73,0xa5,0xea,0xf6,0x62, +0x02,0x6f,0xfc,0x80,0x89,0x85,0x50,0x42,0x57,0xf1,0x0c,0xa2, +0xee,0xc6,0x5f,0xb9,0x5d,0x33,0x76,0x33,0x2e,0xfe,0xba,0xab, +0x58,0x02,0xdd,0x65,0x18,0xe9,0x39,0xc8,0xcb,0xf3,0xe9,0x20, +0x31,0x52,0x8c,0x78,0x5a,0xfe,0xf4,0x27,0xcf,0x72,0x18,0xe1, +0x8a,0x60,0xed,0x27,0x8f,0x1f,0x39,0x41,0xcb,0x14,0x9a,0x9d, +0x63,0xd9,0x22,0xe5,0xea,0x99,0x42,0xcf,0x4c,0x18,0x47,0x4b, +0x4b,0xe2,0x08,0x8f,0x53,0x7f,0x96,0x61,0x68,0xa8,0x18,0x0a, +0xc1,0x74,0x72,0xf1,0x85,0xca,0xe5,0xcc,0xdc,0x03,0xc7,0x76, +0xa6,0xc6,0xc7,0x93,0x9b,0x7f,0x01,0x4e,0xc6,0xb4,0xf4,0x83, +0x29,0xbb,0x8e,0xd5,0x08,0xf6,0x2b,0x38,0xa0,0x8b,0xf1,0x16, +0xef,0x2c,0x45,0xad,0x45,0xc5,0x22,0x9e,0x7f,0x99,0x92,0x84, +0xe1,0xd2,0x8f,0x67,0x61,0xde,0x88,0x62,0xc3,0x5a,0xbf,0xcf, +0xc6,0x8e,0x0d,0x1d,0x57,0xa6,0xa3,0xe9,0xf2,0x98,0x65,0x34, +0x97,0xb7,0xa7,0x24,0x1c,0xcf,0x36,0xaf,0x2f,0x38,0x0b,0x73, +0x47,0x3c,0x96,0xd6,0x7a,0x7e,0x38,0xa6,0x5b,0x47,0x5b,0x65, +0x23,0xb4,0x90,0x97,0x17,0xdb,0x7c,0x0a,0x8d,0x21,0x3c,0x16, +0x86,0x58,0x19,0xc2,0x8f,0x5d,0x16,0x27,0xa4,0x7b,0x1b,0x6f, +0x26,0x9e,0xdb,0x6c,0xeb,0x30,0x9e,0x55,0xd7,0x2b,0x37,0xa8, +0x3d,0x45,0x53,0x79,0xb4,0xe8,0x37,0xb9,0x5c,0xa9,0x1c,0xa4, +0x7e,0x22,0xa9,0x47,0xc4,0x24,0xde,0x44,0x66,0xb8,0xb8,0xbb, +0x2c,0x06,0x1b,0xee,0x6c,0xac,0x4c,0x2c,0xdd,0xbc,0xbc,0xc0, +0x68,0xe5,0x1a,0x1f,0xe4,0xb2,0x31,0x0c,0x6b,0x12,0xaf,0x20, +0x4d,0x5e,0xc8,0x1d,0x0f,0xb0,0x64,0xee,0x58,0xc6,0x60,0x8d, +0xaf,0xe5,0xd8,0x48,0x61,0xca,0xb9,0x7d,0x3c,0xe7,0xb8,0x69, +0x5b,0xe2,0x8e,0xb5,0xdb,0x97,0x8b,0x5d,0x08,0x4f,0x29,0x67, +0x6d,0x1c,0xaa,0x26,0xbf,0xa6,0xbb,0xad,0xfe,0x54,0xad,0x2f, +0x67,0x4f,0xc9,0x2b,0x38,0x9a,0xb6,0x27,0xdd,0x14,0x4f,0x14, +0xee,0xcd,0x8d,0x39,0xd9,0xc4,0xf5,0x8b,0xbd,0x47,0x7f,0xe6, +0x42,0xfe,0xec,0x1d,0x61,0x1f,0x93,0xcc,0x9d,0x46,0xb3,0x94, +0xe4,0x13,0xd9,0xe6,0x0d,0x7f,0x9e,0x85,0xf5,0x23,0xae,0x48, +0xdd,0x16,0x84,0x07,0x0f,0xb3,0x04,0x56,0xc4,0x26,0x45,0x61, +0x98,0x00,0x4f,0xd9,0xf6,0xa3,0x89,0xe8,0x69,0x36,0x5e,0xa2, +0x9f,0x45,0x9d,0xb5,0x52,0xab,0x59,0x23,0xdb,0xb7,0xb3,0x28, +0x8f,0x3a,0xcb,0x9f,0x42,0x27,0x62,0x17,0xfe,0xc8,0x65,0x13, +0x6f,0x74,0x86,0x41,0x59,0x85,0xb8,0x28,0xfd,0xbe,0xf1,0x59, +0x12,0xb1,0xba,0x5f,0x53,0x38,0xa1,0xc8,0x19,0x1d,0x45,0xb4, +0xd7,0x1e,0x11,0x45,0x3c,0x8d,0x17,0x8b,0xac,0x28,0x42,0xf1, +0x73,0x3b,0xf0,0xa0,0x60,0xf1,0x6d,0x14,0x49,0x4d,0x38,0x51, +0xf0,0x06,0x45,0xda,0x11,0x8a,0xc4,0x58,0xe7,0x75,0xda,0xdf, +0x50,0xc4,0x83,0x50,0xa4,0x0d,0xa1,0x88,0xb3,0xce,0xc8,0xdd, +0x88,0x4e,0x14,0x6c,0xb5,0x13,0x05,0xdb,0xbf,0xe5,0x45,0x5d, +0x47,0x13,0xf0,0x82,0x28,0x92,0x79,0x8b,0x01,0xac,0x22,0xfb, +0xd4,0xbe,0x53,0x9b,0x92,0x93,0xd7,0x26,0x10,0x4f,0xf8,0x90, +0x37,0x4b,0x06,0x8d,0x83,0x3b,0x86,0xbb,0x86,0x33,0x77,0x74, +0x27,0x4d,0xa3,0xb7,0x2c,0x59,0x1f,0xc9,0x9b,0x0f,0x62,0x1f, +0xc2,0x4a,0x3a,0x4d,0xa8,0x50,0x06,0x12,0x16,0xe5,0x67,0xa6, +0xed,0x3f,0x61,0xb2,0x86,0xcf,0x6d,0xc0,0xcd,0x78,0xf1,0x74, +0x7a,0xda,0xbe,0xe3,0xe8,0x29,0xf4,0xfe,0xbc,0x89,0xc8,0x23, +0x08,0xa4,0x23,0xa3,0xc9,0x1b,0x1d,0x4b,0x38,0x96,0x6b,0x8e, +0x13,0xad,0x08,0x89,0xff,0x92,0xba,0xce,0x1d,0xdb,0xa9,0xbf, +0xc5,0xfd,0x67,0xcd,0x99,0xc4,0x6a,0x7d,0xe3,0x1e,0x03,0xd9, +0x9f,0xd5,0xf9,0x6c,0x6d,0xc7,0xa9,0xc3,0xa0,0x99,0x0f,0x02, +0x53,0x03,0x2b,0xbd,0x36,0x06,0xff,0xdc,0x66,0xd6,0x7f,0x3d, +0x15,0x08,0xa5,0x57,0x6d,0x2a,0x94,0x61,0xe8,0x35,0x30,0x9e, +0x4f,0xdb,0x9f,0x66,0xb2,0x46,0xc8,0x6d,0x30,0xcc,0x71,0x2f, +0x25,0x32,0x5a,0x13,0xb9,0xac,0xd6,0xc2,0x89,0xb7,0x44,0x7d, +0xe8,0x2d,0x1b,0xd6,0x76,0xfb,0x10,0xd7,0x08,0xad,0x7e,0x36, +0x46,0x27,0x61,0xd3,0x31,0x11,0x18,0x79,0xaf,0x27,0x8e,0xe7, +0xe3,0xb8,0x50,0xc0,0xd6,0xd7,0x74,0xc2,0xd6,0x9b,0x76,0xc6, +0xd6,0x1b,0x6a,0x67,0x04,0xd8,0xee,0x7f,0x3e,0x23,0x98,0x8b, +0x4b,0x35,0x9c,0x1f,0xd0,0x11,0xbc,0x83,0x73,0xf3,0x2c,0x5b, +0xa5,0xfc,0xd2,0x5c,0xe1,0x2d,0x3a,0x16,0x8f,0x1b,0x63,0xf9, +0x2f,0xac,0xcb,0x6f,0xf6,0x51,0x2e,0xfe,0xa0,0xef,0xa3,0x6c, +0x0d,0xbe,0x45,0xfb,0x28,0xf3,0x7b,0x0f,0x6e,0x61,0x09,0x10, +0x92,0x95,0x78,0xf9,0x4b,0x5c,0x12,0x3f,0x34,0x9f,0xb8,0x56, +0x0a,0xdb,0x82,0x85,0x2d,0x6d,0xa1,0xcc,0xe8,0xe7,0x01,0x3e, +0xc4,0x27,0xfc,0xc3,0xf1,0xa2,0x3d,0xe7,0xdf,0xd0,0x2f,0x4f, +0x37,0x9e,0xba,0x99,0x52,0xf4,0xaf,0xd2,0xb8,0x8d,0x5f,0x50, +0xe2,0xa7,0x26,0xfa,0x16,0x8a,0x93,0x08,0xff,0x3b,0xfd,0xf2, +0x37,0x15,0x74,0x22,0x50,0x0e,0x37,0x79,0xe3,0x10,0xb6,0x02, +0x71,0xd9,0x76,0xca,0x1b,0xb2,0xe5,0x73,0xb5,0x44,0xc3,0x8d, +0xa1,0x8f,0x31,0x27,0x03,0x1c,0x84,0x8f,0x75,0x97,0x44,0xdb, +0x88,0x7a,0x6b,0x97,0x64,0x5b,0xc8,0x4d,0xda,0x25,0xd1,0x28, +0x97,0xfd,0x9f,0xc7,0x6e,0x8e,0xb4,0x92,0xe5,0x63,0xbc,0x99, +0xa9,0x6d,0x96,0x54,0x94,0xc0,0xd6,0x10,0x61,0xa0,0xcd,0x92, +0xf7,0x86,0xb8,0x63,0x94,0x91,0x3b,0xa9,0xa0,0x3c,0x25,0x6f, +0xef,0x69,0x82,0xf4,0x46,0xe0,0x67,0xcc,0xa7,0x34,0x75,0x1a, +0xf1,0xf2,0x02,0x59,0x7c,0xee,0x07,0xcb,0xac,0x7b,0x26,0xbe, +0xf4,0x62,0xb9,0xf6,0x8e,0x3c,0x67,0x51,0x0c,0xda,0xaa,0xdb, +0x65,0x31,0x4b,0xf9,0xac,0x4c,0x2d,0x80,0x34,0x2c,0xb2,0xed, +0x9c,0x56,0x64,0x9a,0x56,0xa4,0x0f,0x6f,0x3c,0x91,0x41,0x27, +0x35,0x5b,0x7e,0xa9,0x2c,0x11,0x8b,0xd5,0x0b,0x81,0x4a,0x6c, +0x6b,0x75,0x09,0x0c,0xe5,0x76,0x26,0xa6,0xf7,0x37,0xbe,0x82, +0x76,0x53,0x6e,0xc3,0x15,0xad,0xb6,0x85,0xea,0x7e,0x32,0x97, +0x0d,0xe2,0x99,0x7a,0xca,0x50,0x19,0x2c,0x2b,0xed,0x60,0x9e, +0xda,0xce,0x60,0xd5,0xcd,0xa2,0x0a,0xda,0x57,0xb9,0x4d,0xfb, +0x2a,0x4d,0x46,0x92,0x94,0xdd,0x8c,0xf9,0x85,0xc7,0xb2,0xbf, +0xcd,0x21,0x9e,0xe4,0x5f,0x64,0xb5,0xbd,0x30,0xe8,0x87,0x0e, +0xf1,0xda,0xa1,0x43,0x6e,0x7d,0xfc,0xa6,0xa1,0xd2,0x5e,0x13, +0xe8,0x8e,0x46,0x95,0xbc,0x85,0xb4,0x2a,0xaa,0xf4,0x8d,0x15, +0xba,0x68,0xa1,0x89,0x39,0x95,0xda,0xce,0x82,0xf9,0x08,0xe2, +0x5e,0xdd,0x5b,0xb4,0xf8,0xa9,0x07,0x82,0xf8,0xc8,0x9f,0xee, +0xfc,0xf9,0xa7,0xd7,0x5d,0x18,0xe9,0x2a,0xa6,0xd2,0xfe,0xe0, +0x88,0x30,0xf0,0x00,0x8f,0xe1,0xfa,0xfe,0x60,0x61,0x91,0xf0, +0x10,0x1e,0x67,0x69,0x7f,0x90,0x3b,0x57,0x12,0x21,0x73,0x4f, +0x6e,0x70,0x63,0xf4,0xf7,0x72,0x28,0xe1,0x86,0x91,0x54,0xf7, +0x2a,0xad,0xc5,0x99,0x55,0x33,0xe9,0x55,0xf8,0x5d,0x74,0x5d, +0x12,0x26,0x71,0x43,0x07,0xed,0xee,0xcc,0x28,0xf1,0x6f,0xde, +0x34,0x9f,0xbd,0xb2,0x51,0xb6,0xc8,0xe0,0x2a,0x36,0xfa,0xa9, +0xf9,0x95,0xb8,0xa2,0x72,0x35,0xe0,0x2f,0x99,0x5c,0x1a,0xc9, +0x60,0xb8,0x30,0x47,0x70,0xa7,0x23,0x6c,0x37,0x6f,0x98,0xc3, +0xda,0xc3,0x3e,0x59,0x89,0x80,0xa5,0x15,0xe2,0xb4,0x5a,0x84, +0xda,0x58,0x8c,0x81,0x97,0x38,0xe2,0x57,0xdd,0xa9,0x52,0x54, +0x68,0xf7,0x44,0x46,0x89,0x2f,0x78,0xf3,0xf5,0x8c,0xde,0x83, +0xc4,0xc0,0x61,0x45,0x9c,0xcd,0xee,0x63,0xc9,0x27,0x72,0xb9, +0x4b,0x03,0xc6,0x5b,0x66,0x53,0x73,0xb3,0xb9,0x25,0x82,0x89, +0x86,0x4b,0x12,0x23,0xb9,0xf3,0x7b,0xac,0x3a,0x86,0xbe,0x9b, +0x55,0xc2,0x96,0xd4,0x74,0x65,0x2b,0x6b,0x3e,0x62,0xb1,0xaa, +0x87,0xac,0x2c,0x10,0x73,0xb8,0xdd,0x37,0x0c,0x7a,0x72,0xdb, +0xa1,0x24,0xda,0x57,0x28,0x1a,0x77,0xfa,0x9a,0x19,0xd4,0x70, +0x91,0xce,0x9b,0xf9,0x32,0x7f,0x75,0x26,0x8d,0x4e,0x94,0x28, +0xae,0x9e,0xc6,0x20,0x50,0x35,0x52,0x8e,0xb2,0x77,0x99,0xba, +0xa5,0x52,0xcc,0xd5,0x65,0x3f,0xaa,0xe2,0x7a,0xd5,0xc6,0x95, +0x2d,0x89,0x16,0x1b,0x99,0xc2,0x21,0x5d,0x56,0x5d,0x7e,0xf3, +0xd7,0xae,0xec,0x44,0x8a,0x1f,0xfd,0x0d,0xb0,0xb7,0xbe,0xea, +0x22,0xea,0x28,0x74,0xc3,0xa6,0x65,0x26,0x09,0xb1,0xe6,0xbf, +0xf4,0x56,0x76,0x61,0xd8,0xbd,0xaf,0x64,0x6a,0x18,0x3b,0x16, +0x2e,0x16,0x56,0x35,0x60,0xaa,0x59,0xed,0x2c,0xe7,0x4f,0xe6, +0x36,0x6d,0x98,0x49,0xd9,0x48,0xc5,0x8d,0xbc,0xfe,0x66,0xd4, +0x77,0x3e,0x15,0xde,0x2b,0x8b,0xe5,0x7e,0xea,0xa9,0x4a,0xb1, +0x51,0xd3,0x45,0xb8,0x58,0x80,0x8f,0x20,0xc4,0x17,0xca,0x6f, +0x97,0x95,0x17,0x51,0xd9,0xef,0x64,0x11,0xeb,0x67,0x15,0xb8, +0x94,0xf4,0xb6,0xe0,0xb5,0xc4,0xbc,0x49,0x0c,0xae,0xb5,0x87, +0x90,0x50,0x33,0xac,0x9a,0xe1,0x8d,0xef,0xea,0xd7,0x68,0x06, +0x8e,0x90,0x61,0x49,0x88,0x58,0x62,0x68,0x03,0xb7,0xe4,0xa5, +0xcb,0xf5,0x97,0x93,0x4f,0x9d,0xe3,0x1c,0x17,0x5d,0x3d,0xc4, +0x90,0x98,0xcd,0x11,0x1b,0x96,0xe8,0xd7,0x66,0xe2,0x70,0x81, +0x1c,0x3d,0x40,0xdd,0x7f,0x45,0xc4,0x50,0xf6,0xc3,0xab,0xca, +0x29,0x49,0xf5,0x9f,0xc5,0x9b,0xcd,0x62,0xa3,0x61,0x37,0xb7, +0x7d,0x42,0xf7,0x49,0x02,0xe8,0x3e,0xc9,0x4d,0x8d,0x8a,0x78, +0x1f,0x16,0xdf,0xae,0x53,0x11,0x2f,0x50,0x7e,0xaa,0xfe,0xbf, +0x48,0x7b,0xef,0x80,0xaa,0x8e,0xa7,0x7f,0xd8,0xc2,0x3d,0x07, +0x56,0xc5,0x12,0x8f,0x72,0x61,0xbd,0xa0,0x60,0xef,0xdd,0x68, +0xa4,0x63,0xa3,0x0b,0x16,0x6c,0xd8,0x62,0x8f,0x0d,0x2b,0x8a, +0xa2,0x74,0xec,0xd2,0x4c,0xec,0x3d,0x46,0x8d,0xc6,0x5e,0xa3, +0xc6,0x42,0xd1,0x68,0x14,0x04,0x6b,0x4c,0x4c,0x34,0x6a,0xec, +0xd1,0xcc,0xc1,0x59,0xfc,0xbe,0xb3,0xe7,0x82,0xf1,0xfb,0x7c, +0x9f,0xf7,0xf9,0xfd,0xde,0xe7,0xfd,0xc7,0x8b,0xf7,0x9e,0x9d, +0x99,0xdd,0x9d,0xf9,0xec,0xcc,0x9e,0xd9,0xd9,0x2f,0x18,0x5e, +0xd3,0x08,0xdf,0x5d,0xc8,0xb8,0x9b,0x81,0xc3,0xbc,0xcc,0x98, +0x65,0x73,0x64,0x02,0x6d,0xd2,0x92,0xf5,0xfb,0xb3,0x0e,0x2e, +0xf9,0xde,0x0c,0x6d,0x73,0x44,0x9d,0x20,0xe8,0xa4,0x24,0x37, +0x1c,0x1c,0x88,0x4e,0xa8,0x9e,0x8c,0x74,0xb8,0x9a,0x73,0xe2, +0xf8,0xce,0xa3,0x69,0xe9,0x99,0x29,0xe9,0xf1,0xb6,0x3b,0x45, +0x03,0xae,0xde,0x61,0xbc,0xe6,0x55,0x76,0x50,0xcc,0xe1,0xea, +0x16,0x79,0x64,0x26,0x99,0xb8,0x44,0xfb,0x88,0xb5,0xf9,0x30, +0x9b,0x38,0x2f,0x28,0xd0,0xf7,0x93,0x50,0x63,0x79,0xa5,0x23, +0xec,0x0b,0x11,0xc9,0xd5,0x2b,0xf4,0xf8,0x65,0xa6,0x0f,0x95, +0x87,0xb2,0x63,0xa5,0x80,0x23,0xa5,0x80,0x7b,0x8c,0xd3,0x33, +0x49,0xd4,0x74,0xb6,0x8f,0xd8,0x60,0x08,0x98,0x2a,0xfb,0x01, +0x45,0x78,0x9d,0x57,0x9e,0x20,0x9f,0x1b,0xa1,0x95,0x92,0xf3, +0xfe,0x87,0x85,0x7c,0x2e,0x05,0x3f,0x93,0xf5,0xd1,0x4e,0x6b, +0xe9,0x19,0x99,0xc9,0xe9,0x09,0xd4,0xa1,0xda,0x0e,0xdc,0xf1, +0x2e,0xb3,0xd5,0xa3,0x65,0xaa,0xb5,0xe9,0x43,0xdb,0xa4,0x02, +0xfd,0xe8,0x87,0xb6,0xe9,0x46,0xdb,0x58,0x29,0x16,0xa4,0x61, +0x37,0xae,0x0c,0x94,0xa7,0x6a,0xf0,0x2c,0xcc,0x96,0xb6,0xc2, +0x9d,0xaf,0x31,0xcc,0x81,0x61,0x52,0xcf,0x8d,0x9c,0x12,0xeb, +0x3b,0xd0,0x7d,0x99,0x07,0x4f,0x49,0x3d,0xd7,0x7b,0x33,0x11, +0x5d,0x08,0x55,0xb9,0x5d,0x2d,0xf9,0xd8,0xa7,0x86,0xbe,0x57, +0x9a,0x9b,0x31,0x57,0xea,0x3b,0xac,0xfd,0x6f,0x34,0x9c,0xd7, +0xdc,0xf6,0xdf,0x69,0xb4,0x3e,0x8b,0x89,0x33,0x85,0xd0,0xa1, +0x1d,0xc3,0x5c,0xe8,0xf9,0xb1,0x26,0x05,0x73,0xdb,0x07,0x2c, +0xd6,0x50,0x24,0x79,0x30,0x44,0x54,0xc6,0x9e,0xfe,0xd0,0x53, +0x78,0x1a,0x4b,0xc6,0xef,0x43,0x35,0xdc,0x18,0x00,0x1b,0x15, +0x54,0xf0,0x81,0x36,0x87,0x57,0xeb,0xcb,0x60,0x60,0x9e,0x18, +0x17,0x00,0x11,0x14,0x41,0xd7,0x0d,0xfb,0x14,0xbb,0x60,0x7d, +0xcb,0xd9,0x41,0x0f,0x7e,0xce,0xc9,0xdd,0x73,0xb1,0xf4,0x7a, +0x64,0x88,0xc0,0x01,0x0e,0x3f,0x9c,0xc0,0xbe,0x10,0x32,0x2f, +0xcb,0xc8,0x85,0xb3,0x6f,0xc8,0xf0,0x1c,0x76,0x0d,0x84,0xae, +0x18,0x7e,0x43,0xff,0x41,0xc5,0x27,0xd3,0x78,0xed,0xba,0xcc, +0x1d,0xb7,0xf1,0xaa,0x45,0x4c,0x7f,0xce,0xf0,0x2a,0x76,0xf5, +0x87,0xae,0x0a,0xae,0x85,0xd7,0xbc,0xba,0x0b,0xc3,0x22,0x8d, +0x56,0x75,0x19,0xee,0x05,0x63,0x43,0x87,0xd3,0xc7,0x30,0x00, +0x5c,0x62,0x32,0xe6,0x4a,0x5a,0x73,0x8d,0x13,0x0a,0xfb,0x33, +0x0f,0x9e,0x76,0x84,0xf0,0x3c,0x31,0x28,0x00,0xc2,0x94,0xd4, +0x7a,0xe1,0xfe,0xd8,0x16,0x4d,0xa7,0x07,0x3b,0xdc,0xcb,0x3b, +0x77,0x7c,0xef,0x49,0xdb,0x2f,0x45,0x2b,0x0d,0x7a,0x7b,0xe0, +0x10,0x7d,0x17,0x79,0x58,0x6c,0xb5,0x58,0xc0,0xab,0xe4,0x31, +0x5e,0xc9,0x8e,0x14,0x76,0x24,0xaf,0x42,0x61,0x86,0x29,0x8b, +0xe9,0x9f,0x62,0x00,0xaf,0x33,0x47,0x1e,0x77,0x6d,0xaa,0x15, +0xe9,0xef,0x3d,0xf0,0x02,0x76,0x0d,0xb0,0x8a,0xf1,0x5c,0x0a, +0x08,0xdf,0xe1,0x1d,0x5e,0x79,0xa2,0xd1,0x4e,0xef,0x8e,0x7f, +0x71,0xf6,0xab,0x7c,0x78,0x0c,0x3d,0x7c,0xc6,0x83,0x42,0xf3, +0xea,0xaf,0x18,0x3c,0xe2,0x36,0x34,0x8a,0xd9,0x5a,0x5a,0xfa, +0x97,0x32,0x30,0x0c,0x46,0x17,0x5e,0x2d,0x9d,0x19,0xd9,0x31, +0xf3,0xe5,0x3d,0xd5,0xdf,0x65,0x1d,0x38,0x49,0x92,0xe6,0x8a, +0x41,0x81,0x10,0xae,0xa4,0x36,0x0a,0x0b,0x21,0x49,0xcb,0x9f, +0x1a,0xec,0xf0,0x73,0xf6,0xf9,0x63,0xdf,0x1d,0xb3,0x85,0xc9, +0x34,0x05,0x95,0x97,0x1b,0x09,0xd2,0x5b,0x44,0x25,0x0d,0xab, +0x07,0x42,0x75,0xd1,0xd4,0xb8,0x59,0x07,0x3b,0xd3,0xf8,0x47, +0x07,0x42,0xb4,0xd2,0xd8,0xb0,0x50,0xe3,0x9d,0x41,0xc6,0x99, +0x4b,0x8e,0xd0,0x29,0x47,0xb8,0xca,0xcc,0x1e,0xac,0x33,0xa4, +0x0b,0xd6,0xc5,0x86,0x96,0xef,0x23,0x0b,0x6f,0x9d,0xcc,0xd9, +0x99,0x6d,0x5e,0x91,0x96,0x96,0xba,0x22,0x81,0xc0,0x39,0x58, +0xe6,0x05,0xb5,0xff,0xd8,0x8c,0xc5,0x19,0xc3,0x70,0xab,0x92, +0xbb,0x1f,0x0a,0x36,0xd8,0xf3,0x9a,0xfe,0x0d,0xaf,0xb5,0x80, +0xf5,0xb3,0x9a,0xb0,0x3c,0xc7,0x50,0x15,0x1e,0x68,0xc1,0xf4, +0xd3,0x72,0xe3,0x1c,0xc3,0x65,0x15,0x3f,0x85,0xef,0x48,0x82, +0x20,0x92,0xc0,0x55,0xda,0x70,0x33,0x74,0xf9,0xfe,0x28,0x36, +0xb5,0xda,0xb0,0x35,0x09,0x7e,0xe9,0x86,0xfd,0x99,0x87,0x16, +0x93,0x0d,0xb7,0xc9,0x16,0xe6,0x60,0x68,0xaf,0xa4,0x34,0x18, +0x12,0x40,0x66,0x62,0xb5,0xe1,0x63,0x27,0x76,0x1e,0x49,0x4b, +0x93,0x79,0x89,0xb6,0xbb,0xcb,0x6c,0x78,0x31,0x3b,0x24,0xe6, +0x5a,0x6d,0x58,0xec,0x37,0xac,0xb6,0x2a,0x9e,0xe1,0xda,0x66, +0x36,0xa9,0xcc,0x6c,0x67,0x30,0x7d,0x18,0xee,0x97,0x66,0x5b, +0x7a,0x7a,0xa1,0x2a,0xec,0x34,0x44,0xf6,0xb8,0xa6,0x6f,0x90, +0x22,0xc3,0x4d,0xab,0xb5,0xd2,0xcf,0x47,0x8c,0x9f,0x17,0x95, +0xfd,0xbc,0x8a,0xd7,0x8a,0x95,0xc7,0xd7,0x0c,0x43,0xe3,0x35, +0x97,0x30,0xb8,0x86,0x6f,0xb9,0xb2,0xa5,0xf4,0xd8,0xd3,0x8f, +0xd8,0x29,0x10,0x3a,0xd5,0xc3,0x4e,0x84,0x36,0x78,0xdb,0xd0, +0xf1,0xc7,0x34,0xc6,0xeb,0x02,0x61,0x9d,0x82,0x36,0xf8,0xa7, +0x66,0x1c,0x81,0xdc,0xfc,0x7d,0xe6,0x99,0x2b,0x8e,0x6b,0x20, +0x22,0x57,0x7c,0x1e,0x08,0x7d,0x63,0x54,0x74,0x0d,0xef,0x80, +0x9f,0xd2,0x30,0xff,0x30,0xf8,0xc1,0xbd,0x0b,0x79,0x7b,0x2f, +0x95,0xa9,0x7a,0x5f,0x1c,0xec,0xf0,0xc3,0x71,0x0c,0x83,0xb0, +0x18,0x52,0x75,0x1a,0x11,0x7b,0xa9,0xcd,0xc3,0xd0,0x1c,0x04, +0x66,0xac,0x82,0xe6,0x40,0x30,0x2b,0xb8,0x4e,0xef,0x80,0xb5, +0x19,0xb6,0xc2,0x3b,0x5a,0x46,0xc6,0x2a,0xc2,0x33,0xd2,0x92, +0x46,0xf2,0x9a,0x8a,0x40,0xa8,0x1b,0x63,0xcd,0xa4,0x2a,0xd5, +0xea,0xac,0x43,0x67,0x1c,0x97,0x41,0x50,0xae,0xe8,0x1b,0x08, +0x61,0x29,0xaa,0x4b,0x9f,0x5e,0xd8,0x1e,0x6d,0x2d,0xa7,0x07, +0x93,0x5a,0x9f,0xd8,0x73,0xc2,0xbc,0x46,0xde,0xcc,0x58,0xaa, +0xd6,0xdc,0xb4,0x44,0xa6,0x31,0xf9,0x4b,0x0d,0xe6,0xec,0x21, +0xd3,0x7b,0xe1,0xeb,0x7f,0x57,0xd0,0x20,0x43,0x0c,0x17,0x6e, +0x53,0xcc,0x74,0x17,0x7c,0x20,0x25,0xc8,0x21,0xbb,0xfa,0x32, +0x35,0x23,0x8e,0x57,0x9d,0xcd,0xac,0xcb,0xaa,0x3c,0xf1,0xf9, +0xdd,0xaa,0x03,0x27,0x1c,0x21,0xd0,0x60,0x1b,0xae,0xa4,0x34, +0x0e,0x0b,0xc6,0x36,0xbc,0xea,0x1b,0x06,0x51,0x18,0x54,0xa6, +0x9b,0x5f,0xe1,0x15,0x0d,0x59,0x10,0xc5,0xc1,0x15,0x90,0x05, +0xd3,0xc7,0x29,0x6b,0xf9,0xc6,0x5e,0x43,0x34,0x9c,0x1e,0x08, +0xd3,0x95,0x26,0x78,0x57,0x8b,0x4b,0x90,0x37,0xb6,0x7d,0x9f, +0x41,0x0e,0x9b,0xc4,0x74,0x62,0xdf,0x5e,0x41,0x4b,0x64,0x67, +0xb4,0x18,0x2a,0x5a,0x70,0xeb,0x44,0xee,0x8e,0x0b,0xa4,0xa2, +0x2b,0x53,0x57,0x26,0x40,0x6b,0x0c,0x91,0x2a,0xda,0x0a,0x7a, +0xcc,0xcf,0x8a,0x59,0x2e,0x61,0x02,0x87,0x30,0xcc,0x82,0x35, +0x5a,0xfd,0x90,0x57,0xd8,0xc3,0xa8,0xec,0x18,0xd3,0x20,0xe4, +0xa5,0x82,0x7e,0xf4,0x1d,0xce,0x0c,0x82,0x99,0x8a,0x1b,0x16, +0x6a,0xe4,0x4f,0xbb,0x7e,0x7f,0x04,0x1b,0xcb,0x2b,0x19,0x49, +0x0b,0x65,0x40,0x92,0xb4,0x54,0x5e,0xbb,0xb8,0xf8,0x8c,0x19, +0x5a,0x5c,0x10,0x35,0x42,0xa0,0x0d,0x41,0xc2,0xd0,0x5e,0xa4, +0x85,0x95,0x48,0x0b,0xaf,0xe4,0x1e,0x3f,0xf9,0xcd,0xd1,0x95, +0xe9,0x59,0x29,0x69,0xf1,0xb6,0x7b,0x85,0xab,0xd4,0xc2,0xb6, +0xa4,0x38,0x04,0xcc,0x59,0xd0,0x4b,0xab,0xdf,0xfb,0x95,0xcb, +0x4f,0x52,0x6f,0xda,0x30,0xc8,0x42,0x3f,0x43,0x6f,0xea,0xb7, +0x66,0xa2,0x9e,0x4c,0x34,0xaa,0x77,0xf6,0xb7,0x23,0xa7,0x8f, +0x52,0x70,0xb7,0x5e,0x66,0x6f,0x9e,0x92,0x79,0xfb,0xe7,0x70, +0x1f,0x38,0xcc,0x4e,0x8b,0x96,0x39,0x5a,0x33,0x63,0x12,0x17, +0xef,0xd8,0x93,0xb5,0x47,0x26,0xdb,0xed,0xcc,0x2d,0xa9,0x1a, +0x08,0xbb,0x94,0x05,0x1d,0x3c,0x83,0x71,0x7e,0x1b,0x79,0xb2, +0x80,0x7c,0x4c,0x5f,0x0f,0xf4,0x8d,0x64,0xf6,0xfa,0x93,0xe2, +0xa5,0x8b,0x08,0xe6,0xb4,0x7d,0x7d,0xc1,0x7c,0xf8,0x97,0x6f, +0x4f,0x7f,0x6b,0x5e,0xb6,0x64,0x4d,0xda,0x86,0x45,0xab,0xe3, +0xcd,0xb0,0x1f,0xd5,0xfd,0x67,0x70,0xcb,0x5f,0xb3,0x57,0x46, +0xa7,0x90,0xa5,0x4e,0x8f,0xe1,0x96,0xbf,0x99,0x5e,0x0b,0x2b, +0x6a,0x6f,0x3d,0xeb,0x0a,0xb5,0x89,0x8c,0x3d,0x46,0x6a,0xfa, +0x32,0x1c,0x5a,0x08,0x6b,0xc5,0x2d,0x45,0x52,0x4b,0x22,0x6a, +0xb7,0x64,0x42,0x7f,0x9d,0xa3,0xbf,0xee,0x3d,0xb5,0xd7,0xbc, +0x26,0x6d,0xfd,0xa2,0x35,0xf1,0x44,0xaa,0x92,0xc3,0xfe,0xb3, +0xb8,0xf9,0xed,0xac,0x95,0x73,0x0c,0x5a,0x73,0xe3,0x97,0x6c, +0xdb,0x96,0xb5,0x7d,0xe9,0xae,0x92,0xbe,0x2c,0xc6,0xdf,0x7d, +0x08,0x4e,0xf6,0x93,0xf9,0xfc,0x76,0x1a,0xd8,0x7a,0xa2,0xad, +0x50,0x5d,0x65,0x2a,0x14,0xe7,0xf5,0xc6,0xb2,0x92,0xd5,0xac, +0xa4,0x1c,0xde,0xe3,0x55,0xb6,0x91,0x6a,0x7d,0x29,0x83,0x9c, +0x8a,0x7a,0x43,0x06,0xd5,0xe4,0x0b,0x86,0x49,0x25,0xc9,0x8c, +0x98,0x2e,0x23,0xa6,0x3f,0xc9,0x2e,0x58,0x8e,0xdc,0xdf,0x23, +0x99,0xae,0x5c,0x9f,0xfa,0x55,0x02,0x31,0xb5,0x75,0xd8,0xff, +0x03,0x6e,0x79,0x3d,0x7b,0x25,0xb7,0xfc,0xc5,0x02,0xba,0x0e, +0xc5,0xc9,0xdd,0x25,0x97,0xf2,0xd6,0x0e,0xd0,0x60,0x56,0xc3, +0x95,0xef,0xa3,0x0c,0xba,0x14,0xc4,0x7c,0x02,0x67,0x24,0x37, +0x71,0x04,0xab,0x90,0xd9,0xee,0x3a,0xaf,0x8a,0x91,0xe8,0xf3, +0xfe,0x0d,0x79,0x75,0xcd,0x98,0xe8,0x46,0xa1,0x2a,0xae,0x0b, +0x22,0x7b,0x14,0x4e,0xc2,0x5e,0x3b,0x3d,0xe8,0xfe,0xa9,0x73, +0xfb,0xf7,0x1e,0x30,0x67,0xac,0x5c,0xb5,0x28,0x53,0x9e,0x38, +0xb1,0xb7,0x66,0x37,0xdb,0x44,0x67,0xc4,0x2c,0x92,0x49,0x98, +0xf3,0x13,0x96,0x6e,0xde,0x9d,0x61,0x4c,0x41,0x9f,0x1c,0x31, +0x22,0x08,0xfa,0x2b,0x09,0x1d,0xc3,0xfb,0x60,0xdb,0xd6,0x32, +0xcb,0xba,0x9d,0x06,0xce,0xde,0xe8,0x9a,0xc3,0x3a,0xf2,0xaa, +0x5d,0x98,0x6f,0x6c,0xbb,0xb8,0xe6,0x89,0x66,0xfb,0x77,0x36, +0xfa,0x4a,0x0d,0x1d,0x20,0xcb,0x53,0xdc,0x2d,0x84,0xaf,0xc0, +0x41,0x11,0x3d,0xe1,0xa2,0x86,0x59,0xbd,0x21,0x4b,0x11,0x35, +0x49,0xc9,0x4e,0x0d,0xbe,0x77,0x88,0x57,0x3b,0xca,0x12,0xc0, +0xbf,0x81,0x0c,0x69,0x7c,0xff,0x88,0x4e,0x33,0x16,0x68,0x69, +0xa9,0x1b,0xb7,0x67,0xee,0x58,0xb2,0xc7,0x0c,0x21,0xe7,0x44, +0x44,0x6f,0x5a,0x7f,0xe2,0xbb,0xf7,0x19,0x84,0xad,0xbc,0x6d, +0xf5,0x3d,0xad,0x35,0xdf,0x05,0x6d,0xe2,0x9a,0x25,0xda,0x3e, +0xf5,0x69,0xa0,0x26,0x77,0x6c,0x97,0xd2,0xde,0x69,0x45,0x90, +0xf8,0x94,0x09,0x3f,0xec,0xa4,0xe9,0x8b,0x70,0xcc,0x75,0xd8, +0x6a,0xbc,0x40,0xa8,0x77,0x9a,0x11,0xcb,0xad,0xc4,0x32,0xd4, +0xca,0xf2,0x96,0xc1,0xf2,0xdc,0xee,0x3d,0x7b,0xcc,0x99,0xd4, +0xd5,0xac,0x78,0xf0,0x77,0x93,0xaf,0xe8,0x7c,0x1f,0x13,0xe3, +0x45,0x73,0x17,0x98,0xe5,0xc5,0x93,0x1b,0xbf,0x26,0xc6,0x7b, +0x89,0xf1,0x79,0x11,0x11,0x2a,0x19,0x77,0xeb,0x33,0x10,0x5b, +0x79,0x11,0xe3,0xe6,0x9a,0x6f,0x6c,0xdb,0xb8,0xa6,0x09,0xb6, +0x6f,0x7d,0xb0,0x82,0xc1,0xb9,0xc3,0xfb,0x0b,0x0c,0x1f,0x35, +0xd2,0x3c,0x68,0x91,0xab,0x9a,0xc6,0xf0,0x1b,0x86,0x2f,0xf0, +0x84,0x46,0x2e,0xeb,0x60,0x71,0x29,0x44,0x8f,0xeb,0x24,0x62, +0xb0,0x19,0xb9,0xb0,0xbb,0x72,0x44,0x06,0xa9,0x54,0x34,0x13, +0x47,0x0b,0x21,0xc1,0x3a,0x14,0x3f,0x14,0xdf,0x66,0xf9,0x18, +0xac,0x89,0xe6,0x8f,0x7c,0x70,0x25,0x3d,0xb4,0x08,0xce,0xfb, +0x28,0x98,0x6a,0x23,0x9a,0x3f,0xd1,0x9b,0xcb,0xfb,0x41,0xfe, +0x62,0x72,0xe4,0xd6,0xf3,0x4f,0xce,0x32,0x74,0xea,0xca,0x1d, +0xad,0xb5,0x0a,0x3b,0x8d,0xd4,0x30,0x25,0x18,0x52,0x14,0x04, +0x14,0xda,0x99,0xa1,0x05,0xc7,0x4e,0xee,0xdd,0xb5,0x4f,0x26, +0xd0,0x2e,0xca,0x48,0x84,0xf6,0x68,0x72,0x38,0x43,0x06,0xff, +0x66,0x4e,0xc6,0x5c,0x99,0x2b,0x36,0x6f,0x61,0xe2,0x92,0xf5, +0x3b,0x33,0x77,0x2d,0xd9,0x6f,0x86,0xae,0x17,0x44,0xab,0x10, +0x70,0x57,0x12,0xba,0xf6,0xef,0x83,0x75,0x3a,0xc9,0x83,0x04, +0x9d,0x34,0x30,0xfb,0x61,0x1d,0x35,0xa9,0x9b,0x37,0xb7,0x7f, +0xcc,0x7a,0xc7,0xfa,0xc4,0xbb,0xd3,0xdc,0x75,0x66,0x78,0x71, +0xac,0x7e,0x8f,0x89,0x3a,0xa5,0xea,0x71,0xfe,0x23,0xf5,0x08, +0xb5,0xaa,0x47,0x2f,0x30,0x11,0x8f,0x54,0xe2,0x31,0x6b,0x5e, +0xe2,0xd2,0xcd,0xdf,0x66,0x1a,0xea,0xd1,0x2f,0x47,0x8c,0x0e, +0x82,0x08,0x25,0x51,0xaa,0x47,0x7b,0x52,0x8f,0xa3,0xf2,0xa2, +0x01,0x52,0x8f,0x7a,0x6a,0x72,0x87,0x36,0x29,0xed,0xb9,0xeb, +0x5a,0xe6,0x15,0xdb,0x2a,0xae,0x51,0x82,0xd9,0xbe,0x05,0x2b, +0xf1,0x28,0x52,0xf0,0x7a,0x71,0x13,0x0d,0xbf,0x0a,0x85,0xaf, +0x14,0x51,0xcb,0x98,0xa2,0x5f,0x68,0x8a,0xf6,0xee,0x21,0x76, +0x5f,0x4a,0x76,0x81,0xc6,0x14,0xf9,0x19,0x53,0x24,0x93,0x79, +0xe7,0x1b,0xba,0xf1,0x8d,0x9c,0xa2,0xde,0xe7,0xc5,0xa0,0x50, +0xe8,0x43,0x53,0x14,0x3e,0x10,0x5b,0xd3,0x14,0x9d,0x6e,0x2e, +0x33,0xea,0x17,0xd6,0x37,0xa6,0xa8,0xfc,0x51,0xd6,0xc9,0x69, +0x65,0x60,0x81,0x9c,0x93,0x2d,0x1a,0x78,0xd1,0x24,0xe9,0x67, +0x19,0xac,0x62,0xf8,0x56,0x54,0xe5,0x96,0xc1,0x4c,0x9f,0xcd, +0xb0,0x60,0x21,0x37,0x01,0x13,0x1d,0xf1,0x3e,0x57,0x2b,0xc8, +0x94,0xb4,0xa3,0x45,0xfa,0x51,0x15,0x0b,0x12,0xc0,0x83,0x5d, +0x95,0xb3,0xd3,0xae,0x74,0x76,0xd2,0xe0,0xbc,0xb7,0x31,0x3b, +0xed,0x9e,0xe8,0xed,0x14,0xfb,0xfa,0xac,0xa4,0x1a,0xc9,0x5e, +0x50,0x6c,0xc3,0x6b,0xfb,0xb2,0x16,0xd9,0xec,0xa5,0x8f,0x2b, +0xb7,0x7b,0xcd,0x82,0xde,0x3f,0x67,0xdd,0xb1,0xbf,0x36,0x2b, +0x2d,0x36,0x35,0x7a,0xde,0xf4,0x39,0x0e,0xe4,0x9f,0xec,0xdc, +0x93,0xb9,0xef,0x98,0xe3,0xd6,0xae,0x33,0xd4,0xf6,0xfd,0xfa, +0x60,0x72,0x3b,0xcb,0xbe,0x50,0x70,0x38,0x79,0xf7,0xc0,0xc9, +0x03,0xe6,0xc5,0xca,0x97,0xe9,0xab,0x17,0xad,0x89,0x83,0x8d, +0x58,0xcb,0x61,0xdf,0x05,0x13,0xd1,0x15,0x77,0x25,0x5d,0xbd, +0x40,0xca,0x25,0xa7,0x5d,0xb9,0x6a,0xc5,0x4a,0x27,0x89,0x95, +0x75,0x7f,0xf8,0xed,0xf0,0xe9,0x23,0xd4,0x8c,0xd0,0x72,0xd1, +0xea,0x85,0x84,0x96,0x75,0x25,0x5a,0x7e,0x07,0xda,0xac,0xf4, +0x39,0xc4,0x90,0xe6,0x22,0x61,0xc9,0x8e,0xdd,0x84,0x96,0x07, +0x3f,0x42,0xcb,0x8e,0x9e,0xa1,0x38,0xbf,0x9d,0xad,0xbe,0x0d, +0x67,0x6b,0xd0,0xce,0x13,0xdb,0x91,0xdf,0xd8,0xce,0x8b,0x3e, +0x16,0x36,0x61,0xf6,0xdc,0xb4,0x92,0x80,0x08,0xdf,0x13,0x10, +0xf1,0xfa,0xad,0x18,0xbe,0x93,0x89,0x96,0x4e,0x27,0x7f,0xd9, +0x7f,0xfa,0x80,0x79,0xe9,0xe2,0xd5,0xe9,0xeb,0x52,0x25,0x7e, +0x1e,0xc2,0x5a,0x07,0xce,0xe2,0x76,0xb0,0x9b,0x95,0x46,0x7c, +0xe6,0x13,0x9f,0x78,0x5e,0xcf,0x9f,0x79,0x7a,0xf5,0xc7,0x19, +0x9f,0xd9,0x16,0xa7,0x20,0xd3,0x4a,0xce,0x05,0xe8,0x0a,0x1e, +0x2d,0x82,0xa3,0x72,0x73,0x9b,0xa0,0x6c,0xb1,0x15,0x8d,0xfb, +0x81,0xd3,0xe1,0x5f,0xbf,0x3d,0xb5,0xc7,0xbc,0x64,0xf1,0x7f, +0xa0,0xf1,0x8a,0xe8,0x54,0x03,0x41,0x13,0x96,0x6c,0xdb,0x9a, +0xb5,0x6d,0xe9,0x4e,0x33,0x6c,0xcf,0x2d,0x51,0x02,0x61,0x87, +0x12,0x13,0xd0,0x75,0x18,0x4e,0xee,0x66,0x5b,0x9c,0x8c,0x9f, +0xbe,0xcf,0x67,0xba,0xda,0x12,0x33,0x03,0x09,0x9f,0x87,0x14, +0xc2,0x1a,0x5c,0xf2,0x87,0x4a,0xe6,0xfd,0x1b,0xeb,0x03,0xe6, +0x23,0xbf,0xec,0x39,0xbd,0xc7,0x00,0x7a,0x09,0xce,0x92,0x34, +0x23,0x9c,0x34,0xc0,0x39,0x55,0x66,0xf8,0xc6,0xc4,0x4b,0xd2, +0x65,0xe0,0xec,0x11,0x89,0x53,0xfc,0x6c,0x83,0x5d,0x79,0x95, +0x40,0xf2,0x38,0xbb,0xb3,0x4e,0xb8,0x3c,0x44,0x5f,0xd2,0x49, +0x24,0x61,0x63,0x6e,0x9b,0xcc,0xee,0xe9,0x89,0x30,0x00,0x97, +0xc8,0x44,0xf9,0x4a,0x9f,0xb2,0x56,0xb8,0x14,0xa7,0x1a,0x37, +0x4c,0x6e,0xc5,0x25,0x0f,0x15,0xf0,0xc1,0x0b,0xdc,0xf6,0x1d, +0xb5,0x9b,0xc3,0x5c,0x0b,0xff,0xd2,0x95,0x5c,0x59,0x07,0x6a, +0x06,0xaf,0xf3,0x27,0xe3,0xb5,0x92,0x58,0x7d,0x59,0xd4,0xae, +0x6d,0xe1,0x6f,0xb2,0xa4,0x9d,0xb0,0xc7,0x83,0xdc,0x9c,0xc6, +0x24,0x15,0x2f,0x15,0xbd,0xe2,0xdb,0x07,0x74,0xe4,0x76,0xbe, +0xec,0x5e,0x87,0x5c,0xf4,0x4a,0xb3,0x5c,0x97,0xbb,0xe4,0x53, +0xdf,0xcd,0x60,0xd6,0x1d,0x4c,0x86,0xe3,0x83,0x60,0x3c,0xfa, +0x19,0xae,0x52,0xc1,0x3c,0x82,0xe6,0x50,0x09,0xcd,0x9c,0x16, +0xfb,0x53,0x83,0x7e,0x3d,0x7c,0x5e,0xe2,0x55,0x96,0x15,0xaf, +0x82,0xdd,0xa4,0x4f,0xd3,0xb3,0x0c,0xaf,0x66,0x93,0xfb,0xbb, +0x69,0x07,0xe1,0xd5,0x77,0x04,0xcc,0xe7,0xc5,0x88,0x50,0x09, +0xcc,0x7e,0x04,0x94,0xed,0x3d,0x6d,0xf5,0x5c,0xac,0xc7,0xeb, +0x2d,0x64,0xbf,0x18,0xf7,0x16,0xee,0x2f,0x84,0xc3,0xea,0xcb, +0x15,0x8f,0xd2,0x6f,0xc8,0x2b,0x1c,0x6b,0xbc,0x67,0xba,0x1f, +0x7e,0xcb,0xdd,0x2a,0xb1,0x6f,0xd2,0x76,0x1d,0x74,0xdc,0xca, +0xeb,0x4f,0x63,0x69,0xf3,0xe5,0xee,0xdc,0x3c,0xe9,0xad,0x6c, +0xd8,0x99,0xbe,0xeb,0x80,0xe3,0xe6,0x6e,0xb3,0x54,0xef,0x61, +0xfd,0x90,0xbb,0x5b,0x8e,0x0e,0xf8,0xe9,0xe0,0xb1,0x6f,0x77, +0xee,0x36,0xd2,0xd4,0x29,0x64,0x68,0x8a,0x36,0x0e,0x57,0x0f, +0x1f,0xff,0xf6,0x9b,0x5d,0x19,0x2b,0xd2,0x53,0x33,0x12,0xa0, +0x89,0x9b,0xc3,0xb1,0xef,0x4d,0xf6,0xbc,0xca,0x69,0x86,0xee, +0x31,0x1a,0xc6,0xf6,0x86,0x58,0x79,0x03,0x43,0xbe,0x76,0x6a, +0xf8,0xb5,0x03,0x27,0x76,0xed,0xfa,0x96,0x9a,0x66,0x49,0x84, +0x6a,0xdb,0xc8,0xe1,0xd4,0x41,0x6c,0xf9,0x87,0x04,0x28,0xf9, +0x6e,0x2f,0x3e,0x71,0xc9,0xda,0xad,0x19,0xdb,0x96,0xec,0x22, +0x80,0x3a,0x2b,0x1a,0x87,0x41,0x67,0x65,0x61,0xcf,0x88,0x01, +0xe8,0x40,0x8b,0xe8,0x17,0x58,0x93,0x57,0x69,0x41,0x8b,0x16, +0xd9,0x6d,0x87,0x81,0x57,0xf5,0x57,0x7e,0x62,0x29,0x39,0xcc, +0xfa,0x62,0x0d,0xe7,0x86,0xc3,0x5c,0x05,0x1f,0xe3,0x46,0xed, +0xfb,0x11,0x3f,0xed,0x3e,0xbe,0x7d,0xe7,0x37,0xe6,0x8c,0xe5, +0x59,0x8b,0x32,0x13,0xa1,0x65,0x27,0x87,0xef,0x0f,0x60,0xd3, +0x1b,0x73,0xd2,0xe6,0x2e,0x32,0xde,0x21,0x24,0x2c,0x59,0xbd, +0x3e,0x63,0xe3,0xb2,0x2d,0x66,0xe8,0x74,0x5a,0x38,0xf7,0x25, +0x7f,0x69,0x5e,0xff,0xfe,0x43,0xd1,0xbe,0x8f,0x2d,0x4d,0xc3, +0x6e,0x5e,0xf9,0x10,0x6b,0xc4,0x4a,0x06,0x5e,0x53,0x44,0x27, +0x68,0x26,0x0b,0xcb,0x75,0xba,0x5a,0xdc,0xd5,0x4f,0x1c,0x52, +0xb1,0xb3,0xbe,0xe3,0x1f,0x46,0xfb,0x89,0xd1,0xd5,0x3d,0xc7, +0x77,0xec,0xda,0x41,0x3d,0x59,0x25,0x19,0x35,0x6f,0x2f,0x19, +0x35,0xbe,0x35,0x27,0x7d,0x8e,0x7c,0xef,0x32,0x3f,0x2e,0x71, +0xe9,0x9a,0x8d,0x19,0x5b,0x96,0x6e,0x37,0x43,0x87,0x1f,0x84, +0x73,0x38,0xc5,0x0e,0xb1,0x61,0x11,0x43,0x50,0x0b,0xb1,0x05, +0x5f,0xdc,0xad,0x5d,0x03,0x17,0xc5,0x9a,0xfe,0x1f,0x7f,0x9a, +0xdb,0xfc,0xc2,0x7a,0x9b,0x2e,0xfe,0xb8,0x64,0x69,0x9e,0xf3, +0x75,0xbc,0xae,0x41,0x7d,0x4f,0x6c,0x49,0xba,0x76,0x32,0x47, +0xb1,0x2f,0x7e,0xc2,0x8a,0x44,0x5b,0x5e,0x45,0x61,0x84,0xc3, +0x97,0xa3,0xff,0xd1,0x87,0xfb,0x84,0xc5,0xa4,0x0f,0xdf,0xca, +0xf5,0x2b,0x8d,0x42,0xa1,0x78,0x08,0x71,0x95,0x67,0xda,0x7a, +0x3c,0x8e,0x4e,0x2f,0x5d,0xa8,0x49,0x1f,0xbe,0xc9,0xd8,0x29, +0xc1,0x91,0xf4,0x61,0xb8,0xa1,0x0f,0xbe,0xb4,0x7e,0x75,0xf0, +0xb0,0xd5,0xcf,0x76,0xd2,0xa2,0xb0,0x39,0xce,0x5a,0x88,0xe3, +0xe5,0xae,0xfd,0x5d,0x86,0x5f,0x17,0xc1,0x2e,0xf5,0xd5,0x8a, +0x27,0x19,0x52,0x29,0x08,0x8d,0xbb,0x19,0x68,0xdc,0x89,0xd0, +0x38,0x4c,0xa2,0x71,0x6d,0xbc,0x24,0xd1,0xf8,0xc0,0xb9,0x5d, +0x7b,0x76,0xcb,0x05,0x33,0x35,0x2b,0x01,0x82,0x1a,0xcb,0x1b, +0x36,0xfd,0x7e,0x9f,0x2d,0x15,0x90,0xbb,0x3d,0x67,0x10,0x76, +0x56,0x0c,0x0e,0x23,0x10,0x8e,0xf3,0xef,0x33,0x04,0x5b,0xfb, +0xd9,0xc2,0x28,0xfc,0x5a,0x2b,0x00,0x5b,0x5e,0xe7,0x5f,0x8c, +0x06,0x0d,0x1a,0x7a,0x90,0xa3,0x5b,0xad,0x0e,0x2b,0xf6,0x64, +0x09,0xa2,0x9a,0x76,0x53,0x4f,0x80,0x7e,0x22,0x3f,0x54,0x5f, +0xf4,0x99,0x48,0x40,0x37,0x59,0x27,0xf5,0x82,0x22,0x33,0x9a, +0x9f,0x14,0xe9,0x4f,0x48,0xfd,0x53,0xb9,0x32,0x93,0xc1,0x04, +0x5c,0x2a,0x90,0xf9,0xe2,0x5b,0x19,0x64,0xa7,0xc3,0x06,0x71, +0x41,0xb9,0x1e,0xac,0xe9,0xad,0xb1,0x91,0x68,0x4d,0xd8,0x32, +0xaa,0x38,0x93,0x84,0xec,0x43,0x42,0x42,0xf2,0x69,0x4d,0x5c, +0x2f,0xd2,0xaf,0xab,0x25,0xfd,0xf0,0x0f,0x5e,0xb9,0x1e,0xc3, +0x24,0xed,0xfa,0xe3,0xf7,0x15,0x99,0xde,0x11,0x3f,0xd7,0x44, +0xfb,0xfb,0x3e,0x98,0x60,0xc0,0xf7,0x11,0x5a,0x5c,0xe7,0xd9, +0x88,0xf6,0x0f,0xf4,0xf6,0x06,0x7c,0xd7,0x31,0xe0,0xbb,0xd6, +0x3f,0x9d,0x3d,0xab,0x7d,0x3f,0xe4,0x97,0x7d,0xe7,0xbe,0xd9, +0xb3,0xcb,0xb0,0xb6,0x55,0x09,0x10,0xd8,0xcc,0xe8,0xec,0xaf, +0xb3,0x57,0xfe,0xe3,0x1d,0x6c,0x23,0x55,0xdd,0xcd,0x5d,0x3f, +0x67,0x09,0x41,0x7d,0x22,0xb1,0x5d,0x77,0x5b,0xb2,0xdc,0x63, +0xd4,0x5f,0x27,0xe5,0xf5,0x8a,0x27,0xe9,0x37,0x57,0xc5,0x9f, +0xe9,0xc1,0x42,0xb9,0xa9,0x29,0x83,0xdd,0x38,0x96,0x9b,0xff, +0x96,0x27,0x26,0x9e,0x19,0x88,0xfe,0xd4,0xe8,0xd9,0x78,0x4c, +0xe5,0x95,0x42,0xac,0x50,0x5b,0x6c,0x1c,0x03,0x3a,0xf9,0xeb, +0x81,0x53,0x07,0xcc,0xab,0xd3,0x24,0xd0,0x12,0xce,0x6a,0x0e, +0xff,0x06,0xb4,0x33,0x63,0x12,0x24,0xd0,0x7a,0x79,0xf6,0xc7, +0xe9,0x06,0xd0,0xda,0x49,0xa0,0x85,0xd1,0x78,0xa8,0x10,0x0e, +0x41,0xb2,0xf5,0x63,0xb4,0x81,0xb7,0x4b,0xca,0x5c,0xc7,0x3a, +0x47,0x7e,0xdd,0xc3,0xab,0x0b,0xf6,0xef,0x6e,0xa3,0xdd,0x7d, +0x26,0x9d,0x5e,0x02,0xd4,0x0e,0x25,0x91,0xac,0x09,0x56,0x0c, +0x22,0x38,0x8d,0x24,0x38,0x75,0xe3,0xf5,0x7d,0x98,0x84,0x53, +0x6a,0x79,0x94,0xe0,0xf4,0x23,0x4f,0x97,0x39,0x94,0x81,0xe9, +0x47,0x9e,0xee,0xb6,0x32,0x4f,0x37,0x52,0x7a,0xba,0xc1,0x4d, +0x35,0x7f,0x5a,0x87,0x5a,0x5e,0x83,0x96,0xd0,0x00,0x5b,0xe6, +0xd3,0xc7,0xac,0x8b,0xf2,0xee,0xde,0xb6,0x9a,0x27,0x06,0xd1, +0xd0,0x1f,0xcc,0x15,0x6b,0x48,0xa9,0x4b,0x58,0x5b,0xd7,0xff, +0xc0,0xda,0x06,0xbf,0x29,0xdd,0xda,0x92,0x8d,0xfd,0x46,0x36, +0x66,0xcf,0xb5,0xf9,0xcc,0x0d,0xa7,0x18,0x88,0xbb,0xc5,0xed, +0xa9,0xe2,0x4b,0x7e,0xc1,0x8c,0xa7,0x30,0x43,0x79,0x21,0xd3, +0x60,0x09,0x78,0xb5,0xa3,0xf2,0x8d,0x47,0x39,0xee,0xe2,0xc7, +0xa0,0x9c,0xea,0xdb,0x86,0xbb,0x9d,0x64,0xbf,0x43,0xbc,0xfa, +0x27,0xce,0x22,0x30,0xd5,0x9f,0x15,0xcf,0xd1,0x30,0x2f,0x00, +0xf2,0x14,0x91,0x2e,0x1a,0xc9,0xe5,0xd2,0xf9,0x87,0xfb,0x47, +0xce,0x1c,0x31,0x2f,0x5d,0xf2,0x55,0x06,0x05,0x17,0x0b,0xcd, +0x32,0xba,0x30,0x82,0x0b,0xf3,0x6c,0x39,0xba,0xb1,0xe6,0x99, +0xb4,0xf2,0x7c,0xb3,0x27,0x6b,0xef,0xd2,0xc3,0x66,0xd8,0x91, +0x57,0x62,0x1f,0x40,0xcb,0xe5,0xc2,0xf6,0x5e,0xc1,0xb8,0xa0, +0x95,0x6d,0x7f,0x1c,0x2d,0xdf,0x83,0xd0,0xc0,0x2e,0x5a,0x24, +0x77,0xd7,0x8c,0x81,0xbd,0x2f,0x17,0x32,0x1a,0x9e,0xd4,0xd5, +0x72,0x70,0x55,0x63,0x78,0x5e,0xcd,0x5a,0x31,0x47,0x2e,0x63, +0xd3,0x88,0xd8,0xf6,0xad,0x59,0x5f,0x2f,0xd9,0xc5,0x6d,0xfe, +0x60,0xb1,0xfe,0xee,0xc3,0x70,0x5a,0x37,0x5a,0x6c,0x34,0x5e, +0xf5,0x15,0x93,0x81,0xc5,0xba,0xd2,0xc0,0x22,0x5e,0xc3,0xb3, +0x01,0xef,0xf7,0x94,0x46,0x17,0x4e,0xd6,0x25,0xcc,0x58,0x1d, +0x89,0xac,0x5c,0xc2,0xec,0x88,0xec,0xa6,0x37,0x33,0x3f,0x22, +0xbb,0x8d,0xc8,0xee,0xa6,0x51,0x8f,0xed,0x45,0x4b,0xd8,0x34, +0x1a,0x75,0x2c,0xa7,0x19,0x07,0xd5,0xea,0xd2,0x28,0x87,0xd0, +0x28,0xef,0xb7,0xde,0x11,0xfa,0xa5,0x0c,0x30,0xee,0xcb,0x00, +0x43,0xfe,0xc9,0x44,0x17,0x5e,0xb9,0x3f,0xc5,0x04,0xbb,0x65, +0xac,0xa1,0x5a,0x5f,0xa8,0x6c,0x17,0xd7,0x94,0xeb,0xa1,0x9a, +0xee,0x8e,0x6d,0x85,0xbb,0x62,0x0f,0x9a,0x8c,0x3e,0xa6,0x5a, +0xa3,0x8f,0x25,0x65,0x01,0x94,0x5c,0xb2,0x29,0x80,0x5a,0xcc, +0xdd,0xde,0xb3,0x0f,0x5d,0x9c,0x6f,0x9e,0x16,0x63,0x74,0x71, +0x3b,0x75,0xd1,0xee,0x06,0xa3,0x65,0xda,0xda,0xcb,0xee,0xb2, +0x97,0x46,0x08,0x92,0x6e,0x84,0x20,0xbb,0x65,0x08,0xa2,0xc9, +0xf7,0x28,0xbd,0x5a,0xb5,0x7a,0xd6,0x4b,0xde,0x49,0xf5,0xec, +0xd2,0xc3,0x87,0x8d,0x2f,0x59,0x5f,0xa6,0x74,0xd0,0x06,0x05, +0x0d,0x31,0x5e,0xa6,0x1c,0x39,0x66,0xc9,0x52,0x8f,0xe7,0x1d, +0x36,0x5e,0xa6,0x44,0x0e,0x94,0x07,0x2e,0xf0,0x8a,0xe1,0x79, +0x5a,0x44,0x75,0x79,0x62,0xf8,0xd4,0xf9,0x03,0xd2,0xf3,0x4c, +0x5b,0x25,0x53,0x04,0xa4,0xe7,0x79,0xc6,0xf0,0x3c,0x4b,0x03, +0x13,0xb9,0xfe,0x6d,0xde,0x9d,0xb9,0xf7,0x63,0xcf,0xd3,0x08, +0x4c,0xda,0xb7,0xb2,0x1d,0x8f,0x4d,0xb4,0x95,0xfe,0x26,0xee, +0xb2,0x5c,0x1e,0xbc,0xc0,0x5b,0x43,0x35,0xdc,0x1c,0x00,0x9b, +0x15,0x54,0x3f,0x6c,0xb3,0x0d,0xc9,0x13,0x93,0x02,0x60,0xa0, +0xdc,0x66,0xeb,0xfd,0x29,0x7e,0x86,0xf5,0x2d,0x3f,0x0c,0xfa, +0xe3,0xe7,0xec,0xdc,0xef,0x2e,0x9a,0x57,0xa4,0x67,0xc9,0x4b, +0xae,0x07,0x62,0x84,0xc3,0xd9,0x13,0x18,0x01,0x21,0x65,0x7b, +0x0f,0x84,0x54,0x3f,0x18,0xfb,0x6b,0xb7,0xa7,0xf1,0xea,0x9f, +0x30,0xcc,0xe3,0x76,0xfb,0xe5,0x7b,0xfa,0xd3,0x72,0x87,0xc2, +0x91,0x57,0x0b,0x61,0xa6,0x2d,0xdf,0x65,0xed,0xa7,0x58,0x3f, +0xc2,0x10,0x68,0x00,0xc5,0xfa,0xa1,0x41,0xd8,0x01,0x2b,0x9c, +0x1a,0xec,0xf0,0x6b,0x6e,0xf6,0xb1,0xef,0x8e,0xdb,0xb6,0xc3, +0xaf,0xe5,0xa6,0x5c,0x33,0x56,0xd2,0xec,0x86,0x82,0xb7,0x8b, +0xab,0x18,0x94,0x0a,0xad,0xfb,0x06,0xf1,0xd0,0x07,0x1b,0x3a, +0x9c,0x91,0xe4,0x2c,0xf2,0x30,0xae,0xac,0x18,0x62,0x94,0x58, +0xd9,0x97,0x75,0xe8,0x7b,0xa2,0x9a,0x27,0x46,0x07,0x50,0x37, +0x53,0xea,0xf7,0xf6,0x27,0xaa,0x36,0xa7,0x89,0x6a,0xde,0x85, +0xe3,0xdf,0x9d,0xb0,0x5d,0x26,0x9a,0x19,0x45,0xbf,0x37,0xc9, +0xa2,0xdf,0x95,0x22,0xd8,0x97,0xb2,0xee,0xda,0x34,0x56,0x3c, +0x86,0x2d,0x17,0x0b,0xe5,0xd6,0x1c,0x89,0x3e,0xf7,0x86,0x3e, +0x97,0x44,0x9f,0x87,0x27,0xd9,0x48,0x41,0x1a,0xfc,0x5f,0xbe, +0x0b,0x17,0xf1,0x40,0xa1,0x29,0x35,0x0e,0xc0,0xcf,0x8d,0x2d, +0xbc,0x7a,0x37,0x98,0x3c,0x28,0x4f,0xbe,0xe2,0x19,0x6e,0x77, +0x40,0xbe,0x55,0x3d,0x7d,0x8c,0x24,0xd3,0xb8,0xed,0x17,0xcc, +0x38,0x44,0x64,0x86,0x88,0x6c,0x31,0x3a,0x98,0xfa,0x99,0xdc, +0x3c,0x34,0x04,0xdb,0xd7,0x95,0xdd,0xcc,0xbe,0x70,0xf4,0xbb, +0xa3,0xb6,0x7a,0x2b,0x0c,0xd0,0xea,0x09,0xb7,0x37,0x5e,0x78, +0x88,0x8c,0x3a,0x09,0x1e,0x2b,0x9e,0xb8,0x43,0x1e,0xf1,0x28, +0x2f,0x0f,0x74,0x10,0x30,0xbe,0x27,0x60,0xbc,0xa5,0xff,0xa1, +0xe1,0xb6,0x00,0xc9,0xa4,0xed,0xff,0x6a,0x34,0x61,0x3b,0xfe, +0x6c,0xdd,0x41,0x8c,0x60,0xa4,0xd4,0x6f,0xe4,0x06,0x0d,0xd1, +0x3e,0x63,0xd0,0xfe,0x96,0xd7,0xee,0xc8,0x08,0x2d,0x43,0xe4, +0x1e,0x0b,0xaf,0xd4,0x9f,0xc1,0x66,0x04,0x5e,0xb9,0xa3,0xf1, +0xb7,0x2f,0xf6,0xe5,0xf6,0xbd,0xe5,0x7b,0x95,0x92,0x6d,0xb0, +0x89,0x3b,0xb9,0x30,0xa3,0xac,0x58,0x03,0x50,0xb9,0xc3,0x5f, +0x46,0x5d,0xb1,0x06,0xb7,0xb8,0x43,0x73,0xa3,0x96,0x58,0x83, +0xd3,0xf0,0x2b,0xc3,0xfe,0x62,0x24,0x57,0xe3,0x59,0x3e,0xfd, +0xff,0x08,0x85,0xf7,0xa2,0x56,0x10,0x5c,0x09,0xe2,0xf5,0x62, +0x59,0x93,0x70,0x0c,0xe9,0x65,0xde,0x17,0x6e,0x82,0x3d,0x2f, +0x9f,0xdd,0x87,0xe6,0x8e,0xf8,0xb9,0xf8,0x85,0xab,0x16,0xa3, +0x60,0x58,0x03,0xb0,0x93,0x8d,0xbf,0x29,0xf1,0xe6,0xea,0x8f, +0xcc,0xa8,0x10,0xd6,0x00,0x2a,0xf0,0x5a,0xdb,0x8c,0x4b,0x16, +0x1b,0x5c,0xd2,0xa0,0xba,0xa8,0x15,0x00,0x97,0x7b,0xbc,0x6f, +0xca,0xf0,0x79,0x74,0xba,0x3f,0xe4,0x6f,0x19,0xd1,0xa5,0x71, +0x00,0x86,0x78,0x9a,0x0f,0x10,0xc9,0xdd,0xa0,0x3c,0x7b,0x0a, +0x5d,0x1d,0x57,0x8b,0x9d,0xef,0x4c,0xff,0x5e,0xe7,0xab,0xc1, +0x69,0x5e,0xf3,0x9c,0xf5,0x2e,0x44,0x2e,0xef,0x42,0xe4,0xf2, +0x2e,0xc4,0x92,0x91,0xdc,0x69,0x20,0xb3,0xd6,0xe2,0x72,0x81, +0x28,0x1f,0xb1,0x2c,0x1f,0xa6,0x82,0x0b,0xc6,0x14,0x70,0x47, +0x1a,0xde,0x61,0x62,0xd4,0xfb,0xa5,0x4c,0x7f,0x24,0x0f,0x15, +0xb8,0x7c,0xb8,0xd9,0xd0,0xa5,0xec,0x66,0x43,0x77,0xbd,0xb7, +0x06,0xd5,0xf0,0xd7,0x20,0xf8,0xaa,0xbb,0x14,0xe8,0xe0,0xdc, +0xb4,0x40,0x58,0xbb,0x69,0xac,0x7b,0x27,0x7f,0x6c,0xe1,0x65, +0x3e,0xd2,0xdf,0x04,0xd1,0x60,0xba,0xff,0x14,0xda,0x3b,0x62, +0x25,0x72,0x5e,0xa7,0x30,0x5e,0x7b,0x03,0xc3,0x72,0x25,0x5d, +0x45,0x1f,0x6b,0x29,0x2e,0x97,0xd2,0xbb,0x14,0x27,0x11,0xf9, +0x68,0xe2,0x79,0x9d,0x61,0xcf,0x92,0xf6,0xc2,0xc7,0x5a,0x84, +0xcb,0x05,0x86,0xf9,0x88,0x09,0xf9,0x30,0x94,0x7e,0xb5,0x16, +0xe1,0xfa,0x04,0xbd,0x61,0x0c,0x83,0x1c,0x31,0x53,0x08,0x29, +0xd7,0x38,0x29,0x57,0x59,0x0d,0x2e,0xa3,0x03,0x09,0x52,0x2e, +0x28,0x34,0xe4,0x0a,0x86,0xaf,0xba,0xa9,0x14,0x78,0xa6,0xcc, +0xb5,0xe0,0x21,0x43,0xb6,0x8d,0x63,0xdd,0x3f,0xf5,0xc7,0x96, +0xff,0x2e,0x1b,0xb8,0x8b,0x0d,0xef,0x27,0xd1,0x3c,0x93,0xef, +0x78,0x41,0x1c,0x92,0x05,0xb9,0x1e,0xc9,0x82,0x5c,0x2e,0x1f, +0x0a,0x72,0x19,0x62,0x46,0x1b,0x94,0xaf,0x72,0x65,0x35,0x7b, +0x2d,0xca,0x8b,0x14,0x29,0xe3,0x74,0xfa,0x69,0xb4,0x8f,0x98, +0x93,0x0f,0x63,0xe9,0xf1,0x29,0xd4,0x03,0x0a,0x22,0x03,0x45, +0xb8,0xe8,0x2a,0xdf,0x2b,0x94,0xd4,0xa2,0x51,0x36,0x74,0xa5, +0x19,0xc3,0xd5,0xeb,0x0c,0x55,0x21,0x57,0x67,0xf5,0x77,0x52, +0x55,0x3e,0xd4,0xc6,0xc2,0xd5,0x1b,0xe4,0xcc,0xe8,0xfd,0xe8, +0xaf,0xaf,0xe0,0x21,0xc3,0x43,0x62,0x08,0x57,0xc7,0x95,0xee, +0x91,0x3e,0xb1,0x96,0x86,0x1a,0x6e,0xe4,0x2e,0x74,0x94,0xe7, +0x6e,0x2f,0xb5,0x56,0xa6,0xa7,0xce,0x48,0x9e,0x69,0xc1,0x67, +0x33,0x32,0xfc,0xa1,0x70,0xcb,0x68,0xac,0xd8,0xb8,0x2b,0xf6, +0xc7,0x0a,0xe6,0xc3,0x61,0x26,0xd8,0x05,0xad,0xff,0xfc,0x1b, +0xc6,0x3a,0x42,0x0b,0xa1,0xa9,0xb2,0xc6,0xca,0x0c,0xec,0xe1, +0x0f,0x3d,0x30,0x56,0x96,0x58,0xc1,0x23,0xe8,0xa3,0x41,0x55, +0xa1,0x05,0xc0,0xa5,0x5e,0x34,0x34,0x31,0xc9,0x31,0x44,0x26, +0x9a,0xc8,0xfc,0xb4,0x65,0xa4,0x47,0x93,0x60,0x0c,0xf1,0x35, +0x1f,0x08,0x93,0x7a,0x54,0xe1,0xd9,0x23,0xe8,0xe4,0x88,0xbb, +0xc5,0xd8,0xd2,0xfa,0x2b,0x8b,0x85,0x0b,0x83,0x9a,0x52,0x01, +0xb5,0x40,0xf8,0xd1,0x98,0xef,0xe7,0xb3,0xa9,0xe1,0xb5,0x7f, +0x14,0xd0,0x68,0xa8,0x3e,0xfb,0x13,0x3c,0x1c,0x31,0xb8,0xa4, +0xa6,0xfe,0xb9,0xbc,0x36,0x27,0x4b,0x33,0xca,0x38,0x4d,0x90, +0xcd,0x4d,0xbc,0x72,0x25,0x86,0xdd,0xb8,0xbd,0x3b,0xe3,0xd5, +0x3b,0x90,0x91,0x70,0x9b,0x1f,0xd9,0x1b,0x69,0x1e,0x44,0xf3, +0x72,0x70,0xc9,0x59,0x86,0x2f,0xa3,0x33,0x78,0xf5,0x6c,0x46, +0xbd,0xc6,0xc7,0xac,0xd4,0x40,0x42,0x4a,0xba,0x71,0x75,0xbb, +0xb5,0x06,0x95,0xd1,0x97,0x19,0xb2,0xd4,0x0a,0xf5,0xa5,0x8b, +0x41,0x2f,0xb3,0xc4,0x5b,0x77,0xb3,0x5e,0xf4,0xd5,0x23,0x80, +0x7e,0x1d,0x23,0x8b,0xac,0xd0,0xaf,0x1d,0x35,0xa8,0x24,0xb4, +0x20,0xb8,0x1c,0xa0,0xc6,0xa4,0xce,0x4b,0x99,0x67,0xc1,0x97, +0xb3,0x33,0x02,0x48,0xe0,0xe1,0xde,0x8d,0x43,0x30,0x98,0xdb, +0xdd,0x63,0x6f,0x9f,0x3d,0x84,0xb6,0x8e,0x30,0x41,0xcc,0x3b, +0x66,0x94,0x5e,0x99,0x21,0xa5,0xac,0x68,0x74,0x32,0x00,0x7e, +0x2c,0xb5,0xb2,0x8f,0x3a,0xe9,0x55,0xda,0x49,0xab,0x95,0xdd, +0x12,0xdb,0x4b,0x8b,0xb1,0xfc,0xd3,0x3b,0x88,0x16,0xdf,0x97, +0x15,0x5f,0xb1,0x4a,0xab,0xe0,0x04,0x28,0xaf,0x41,0x15,0x63, +0xdc,0xfc,0x8d,0x41,0x27,0x51,0x9e,0x5b,0x45,0x19,0x21,0x07, +0x3d,0xd4,0x97,0xfa,0x0a,0xe5,0x8d,0x11,0x5f,0x2d,0x94,0xe2, +0x3d,0x8c,0x57,0x9b,0x43,0xcd,0xff,0x5f,0x46,0x86,0x57,0xdd, +0xc8,0xb0,0x4f,0x49,0x37,0xdd,0xcb,0x28,0xc8,0xb4,0x8d,0xbc, +0x7d,0xac,0xa6,0xac,0xf8,0x7a,0xc9,0xce,0xdd,0x8e,0xd0,0x0c, +0xef,0x05,0xc1,0xaa,0x56,0xea,0xf4,0xd4,0x99,0x52,0x45,0x0e, +0xcc,0x4e,0x0b,0x82,0x0d,0x1b,0x27,0xb8,0x74,0xea,0x8a,0x6d, +0x5d,0xcc,0xc7,0xfa,0x43,0x3b,0x28,0xf7,0xe0,0x97,0x7d,0x50, +0xd1,0x0c,0x2e,0x22,0x2c,0xbf,0xf8,0xaa,0x8f,0x62,0x2d,0xc5, +0xd4,0x0c,0x4f,0x6a,0x60,0x91,0x25,0x89,0x96,0xf9,0xe2,0x64, +0x5e,0x8d,0xfc,0xd2,0x2a,0x78,0x3b,0x04,0x32,0x7a,0x48,0x91, +0x53,0x48,0x4f,0xbe,0x9b,0x4b,0xb4,0xbe,0xdc,0x34,0xd6,0xb3, +0x73,0x10,0x36,0xf3,0x31,0x1f,0x89,0x80,0x2e,0x77,0x1e,0xe4, +0xef,0x79,0x62,0xc6,0x1e,0x08,0xa5,0xb5,0x97,0x5a,0xca,0xd2, +0xf3,0x75,0xf1,0xa6,0xf1,0xca,0x62,0x21,0x89,0xb5,0x74,0xed, +0xe2,0xf5,0xeb,0x1d,0xc9,0x1a,0x6f,0x07,0x41,0xba,0xa1,0x35, +0x7b,0xa4,0x25,0x66,0x6d,0x1a,0xe7,0xde,0xd9,0x1f,0x9b,0x4a, +0x4b,0x84,0x8e,0x77,0x1f,0x14,0xec,0x7d,0x62,0x6e,0x25,0x56, +0x18,0x10,0x41,0xd1,0x8c,0xb8,0xaa,0xbd,0xd0,0xe7,0xc3,0x4c, +0x71,0xd5,0x5f,0x4f,0x68,0x28,0xe6,0xa3,0x1f,0x2d,0x0b,0x7b, +0x2f,0x29,0xc6,0x0d,0x68,0x2d,0xf0,0x08,0x77,0xa0,0xa0,0xa4, +0x85,0x38,0x4f,0x48,0x61,0x94,0x5d,0x6a,0x81,0x64,0x53,0xf7, +0x18,0xfc,0x26,0x6c,0x09,0x18,0x4a,0xdf,0x53,0x34,0x81,0xc3, +0xf2,0x32,0x9d,0x71,0xc6,0x55,0x69,0x93,0xd1,0x5e,0x59,0xfc, +0xe5,0xe2,0xaf,0x56,0x1b,0xb2,0x04,0x43,0x7a,0x37,0x43,0x96, +0x18,0x29,0x0b,0xa1,0x42,0x97,0x32,0x59,0xdc,0x7f,0x79,0x78, +0x63,0xf7,0x4b,0x0a,0x8a,0x44,0x3b,0x03,0x13,0xb6,0x31,0xf8, +0x55,0x74,0x23,0x4c,0x28,0xad,0xb0,0xd4,0x1c,0xe6,0x6a,0xe0, +0x8c,0xc3,0x8d,0x02,0x4b,0x5f,0x60,0x55,0x65,0xc9,0x57,0x8b, +0x57,0xaf,0x71,0x84,0xca,0x92,0x68,0x46,0x4f,0xd2,0xb4,0x98, +0x94,0x79,0xdc,0x75,0x14,0xf3,0x96,0xa3,0xe4,0x67,0x3e,0x4c, +0xa3,0x74,0xeb,0xc1,0xb5,0x3d,0x8f,0xcc,0xa0,0xe1,0x4a,0x42, +0x0d,0x6e,0xbb,0x5a,0xca,0x7b,0x80,0x3b,0xdc,0x61,0xd8,0x06, +0x1f,0x10,0x54,0xc8,0x2e,0x7f,0x66,0x74,0x79,0x46,0x9e,0x98, +0xf1,0x42,0x8f,0xbb,0x28,0xae,0xe0,0xe3,0xd2,0x1e,0x5b,0x4b, +0x2f,0x4d,0xc5,0x69,0xd0,0x48,0x54,0x0d,0x84,0xec,0x56,0xea, +0x34,0xab,0xf5,0x3f,0x9a,0x41,0x1a,0x74,0x55,0x5a,0x7f,0xd3, +0xcf,0x30,0x5c,0x5a,0x7f,0x38,0x2c,0x06,0xd7,0x57,0x2f,0x57, +0x83,0xaf,0x19,0x66,0xa2,0x2f,0x8e,0x09,0x80,0x31,0xf8,0x54, +0x5e,0x41,0x69,0x2f,0x2d,0xb8,0x01,0xf6,0x08,0x24,0xf3,0xa8, +0x63,0x94,0x27,0x53,0x88,0x60,0x94,0x54,0xf4,0xea,0x81,0x90, +0x6b,0xcc,0xcb,0x13,0x69,0xcd,0x97,0x49,0xd1,0x9b,0x06,0x60, +0x90,0x87,0xf9,0x20,0x2d,0x27,0x3b,0x40,0x7d,0x6a,0x58,0x73, +0x77,0xc3,0x9a,0x0d,0x9b,0x55,0xde,0x5f,0x65,0x68,0xc2,0x86, +0x0c,0xfa,0x4a,0xf5,0xa4,0xe6,0x79,0xc1,0x5c,0xbd,0xcb,0xb6, +0x8c,0xe8,0xde,0x24,0x0c,0x03,0xfd,0x0d,0x0b,0xf9,0xe6,0xe5, +0x53,0xc3,0x72,0x7b,0x94,0x74,0x7b,0x17,0x22,0x4d,0xb3,0xa6, +0x35,0xff,0xac,0x1a,0xf6,0x0a,0x82,0x5e,0xc8,0x09,0x12,0x54, +0x3c,0x4d,0xf6,0xeb,0xb4,0x8e,0xe1,0xd2,0x32,0xfb,0xad,0xda, +0x85,0x21,0xb3,0x16,0x4f,0xab,0x62,0xd8,0xf0,0x69,0xab,0x0d, +0x57,0x0f,0x82,0x3c,0x7f,0xc3,0x86,0xe7,0x5b,0xf0,0xa9,0x34, +0x9c,0x2b,0x5b,0x46,0x78,0x37,0x09,0xc1,0xa0,0xee,0xc6,0xaa, +0xf7,0xcd,0xdb,0xa7,0x86,0x19,0x4f,0x2b,0x33,0xe3,0xda,0xd6, +0x9e,0x7e,0xf2,0xa1,0xa7,0x91,0x46,0x4f,0x03,0x20,0xd7,0x30, +0xe9,0x27,0xd1,0x46,0x4f,0x47,0x76,0x69,0x42,0x3d,0xf5,0x2c, +0xed,0xa9,0xf2,0x54,0x9a,0xf4,0x7d,0xc3,0xa4,0x79,0xed,0x49, +0x0c,0x16,0xfe,0x63,0xc8,0x35,0xbb,0xb0,0x52,0xd1,0x25,0xb1, +0x21,0x1a,0xd8,0x1b,0xc3,0xe6,0x5f,0x66,0x19,0x7f,0x46,0x93, +0x4c,0x44,0xd0,0xa3,0x69,0x10,0x06,0xfb,0x96,0x12,0xac,0xf0, +0xf4,0x11,0x74,0x70,0xdc,0x2c,0x4c,0x64,0xcf,0xf2,0x9d,0xcd, +0x7a,0x9c,0xae,0xe1,0x27,0x64,0x62,0x77,0x42,0x20,0xb3,0x45, +0x19,0x86,0xef,0x8b,0x4e,0x0b,0x86,0xf5,0xd2,0x40,0x3f,0x23, +0x6d,0x28,0x6f,0x3e,0x36,0x00,0x46,0x40,0xbd,0xdf,0x5e,0xae, +0x02,0x4f,0xa9,0x31,0xde,0x58,0x37,0x88,0xec,0xe9,0x86,0xf1, +0x7a,0xc7,0xbe,0xb8,0x85,0xfe,0x85,0x26,0x4e,0xcc,0x4c,0xef, +0xa5,0xef,0xd9,0x9c,0xe8,0xbd,0xa0,0xdb,0x5c,0x1f,0x73,0x41, +0xac,0x69,0x3b,0x38,0xac,0x82,0xda,0xd0,0xce,0xf1,0xa1,0x78, +0xee,0xaf,0x6f,0x4a,0x54,0xc3,0x52,0xfb,0x26,0x47,0x58,0x30, +0x5a,0x34,0xd7,0x20,0xca,0x03,0xa3,0xb0,0xd0,0x95,0xd9,0x43, +0x65,0x3d,0x5b,0x5b,0x19,0xa0,0x6f,0x5d,0x9f,0x18,0x19,0x37, +0x7c,0xc1,0x30,0x73,0x7e,0xac,0x69,0xe3,0xa3,0xac,0x3f,0xc0, +0xe4,0x78,0x51,0xdc,0x0f,0xd4,0xb3,0xd4,0x51,0xa9,0x63,0x53, +0xc6,0x59,0x70,0x2c,0x66,0xd1,0x1a,0xe1,0x81,0x55,0xf1,0xbe, +0x51,0x60,0xa8,0x24,0x0c,0x27,0x72,0x9b,0x3d,0x0c,0x2a,0xe9, +0x47,0xb4,0x34,0x22,0xb0,0x21,0x71,0x50,0x7c,0x64,0xec,0x10, +0x73,0xfe,0x02,0xd3,0xc6,0xa7,0x59,0x4f,0x80,0x39,0x5e,0x16, +0xf7,0x03,0xf4,0x55,0xea,0xe7,0xa9,0xa3,0x53,0xc6,0x58,0x70, +0x1c,0x6e,0xd6,0xc0,0xec,0x81,0x66,0xbc,0x6f,0x44,0x1e,0x4d, +0x34,0x0f,0x8a,0x70,0x6d,0xcf,0x30,0xce,0x3d,0x25,0x2a,0xa6, +0x69,0x50,0xd3,0x93,0x54,0xe2,0x97,0xe6,0xf2,0x38,0x05,0xb1, +0x63,0x24,0xdb,0x7d,0x6d,0x65,0xb0,0xbe,0x75,0x4d,0xe2,0xe8, +0xf8,0xb1,0x0b,0xc7,0x98,0x0b,0x16,0x98,0xd6,0xdd,0xcd,0xba, +0xf3,0xdc,0xf1,0xbc,0xb8,0x1f,0x44,0x94,0x27,0xa4,0x4e,0x4c, +0x99,0x24,0x29,0xcf,0x2e,0xe9,0xc5,0xf0,0xbe,0x71,0x46,0xfc, +0x1d,0x6e,0x94,0x0d,0x2f,0x96,0x76,0x6a,0x58,0xfc,0x88,0x05, +0xc3,0x65,0xa7,0x36,0xfc,0x91,0xf5,0x00,0x2a,0xca,0x4e,0x49, +0x99,0x46,0xa7,0x8e,0x4b,0x36,0x3a,0xb5,0x82,0x30,0xd8,0x03, +0xab,0x18,0x32,0xf9,0x8b,0x96,0xef,0x46,0xcb,0xc6,0xd7,0x0c, +0xae,0x6b,0x13,0x47,0xc4,0x8f,0x5c,0x30,0x52,0x72,0x5d,0xff, +0x7b,0xd6,0x7d,0x28,0xe7,0x98,0x2b,0x47,0x64,0x95,0x3a,0x26, +0x75,0x7c,0xf2,0x78,0xd9,0x38,0x59,0x03,0xe6,0x81,0x06,0x67, +0x59,0xc3,0x49,0x13,0xee,0x50,0xce,0x0b,0x8f,0xbb,0xc8,0x30, +0xe9,0xb9,0x97,0x82,0x7b,0x6c,0xe8,0x1b,0x1b,0x5d,0x46,0x49, +0x95,0xf4,0x5c,0x2d,0x2d,0x48,0xdf,0xb2,0x2e,0x31,0x32,0x7e, +0x18,0x0d,0x33,0x11,0xdd,0xf0,0x28,0xeb,0x21,0x49,0x74,0xc9, +0x3a,0xcc,0xa3,0xcb,0x86,0x39,0xb3,0x4c,0x22,0xff,0xe2,0x73, +0x17,0x65,0x1d,0xa7,0x5d,0x78,0x9b,0x71,0xf3,0x65,0x23,0xb7, +0x0c,0x9a,0x18,0x37,0x3a,0x75,0x81,0xd6,0x9a,0x68,0x18,0x4d, +0xc3,0xee,0xb4,0x21,0x31,0x34,0x2e,0x7c,0x7e,0x6f,0xf3,0x35, +0x1a,0xf6,0xb7,0x59,0x6f,0xa0,0xaa,0xe3,0x4b,0xd1,0xdf,0x5f, +0xaf,0x3a,0x9d,0xc6,0x7d,0x94,0x1c,0xf7,0xe6,0x58,0xac,0xc1, +0x20,0x6f,0x8c,0x54,0x53,0xba,0xf9,0xa6,0xfa,0x39,0xad,0xec, +0x65,0x82,0x91,0x30,0x31,0x6b,0x0b,0x34,0x71,0x8e,0xcf,0xe9, +0x32,0xcf,0x2d,0x0e,0x2b,0x94,0x16,0x62,0x12,0x9d,0xc1,0xa4, +0x09,0xa7,0x98,0xb4,0x10,0xdd,0x7e,0x4d,0xd2,0x90,0xf8,0x61, +0xb1,0x91,0xe6,0xab,0x34,0xe6,0xf7,0xb3,0x7e,0x79,0xe9,0x78, +0x57,0xf4,0x0a,0xd6,0x2b,0xcc,0x55,0x27,0xa6,0x4e,0x4e,0x9d, +0x6c,0x21,0xb4,0x5b,0xc0,0xed,0x92,0x19,0x98,0xbd,0x90,0x73, +0xdb,0x79,0x6c,0x33,0x34,0x73,0x16,0xde,0xe8,0xcb,0xab,0xde, +0x90,0x15,0x9b,0x44,0x97,0x5b,0x9a,0x30,0xcf,0x5d,0x19,0xa8, +0x57,0x59,0x9b,0x34,0x38,0x7e,0x08,0x29,0x06,0x49,0xb8,0xee, +0x41,0xd6,0x6f,0x7f,0x39,0xde,0x13,0xbd,0x02,0xf5,0xf2,0x31, +0xea,0x17,0xa9,0x93,0x24,0x25,0x17,0x5c,0x66,0x50,0x72,0xf6, +0xc2,0x7a,0x65,0x94,0xf0,0x01,0x56,0x28,0x2b,0xc9,0x14,0xab, +0xaf,0x65,0xe0,0x40,0x43,0xd1,0xf9,0x84,0x26,0x1c,0xe7,0xaf, +0xec,0xad,0xdb,0x7f,0x95,0x34,0x32,0xfe,0xf3,0x05,0x9f,0x9b, +0xaf,0x2e,0x34,0xad,0xbb,0x95,0x79,0xe3,0xa1,0x63,0xa1,0xe8, +0x15,0xa2,0x57,0x98,0xa7,0x4e,0x4d,0x8d,0x4a,0x9d,0x26,0x49, +0x8e,0xe6,0x75,0x06,0xc9,0x82,0x39,0x97,0xad,0xa5,0x9c,0x2e, +0xca,0xbe,0x11,0x70,0x6f,0x62,0xa2,0xb9,0x28,0xcf,0xd5,0xf2, +0xb2,0x38,0x93,0x41,0xb0,0xb4,0xb7,0x89,0xd4,0xdb,0x05,0x43, +0xcb,0x7a,0xfb,0xe2,0x3f,0x7b,0x1b,0xaf,0x7d,0x36,0xbf,0x51, +0x9c,0x4b,0xa2,0x2d,0x38,0x79,0xa1,0x45,0x4d,0xf6,0xf2,0x48, +0xf5,0x2a,0x2d,0x1f,0x65,0x83,0x73,0xca,0xaa,0x39,0x89,0xce, +0x3f,0x18,0x24,0x43,0xcb,0x06,0xd0,0x4a,0xf2,0xd7,0xac,0x7b, +0x2f,0x1c,0xef,0x18,0x32,0xce,0x51,0xa9,0xd3,0xa9,0x53,0xa4, +0x8c,0x31,0xbc,0xce,0x40,0x0a,0x89,0x5a,0xcb,0xc2,0x4f,0x65, +0xc5,0x9e,0x6a,0xc9,0x83,0x1f,0xb5,0xac,0x07,0x3f,0x44,0x10, +0xd9,0x1c,0xde,0x9f,0x43,0x0b,0x6c,0xe1,0xba,0xc4,0x3e,0x71, +0x7d,0xe7,0xf7,0x91,0x3d,0xde,0xf0,0x32,0xf3,0x39,0x59,0xd7, +0x9f,0xe2,0x93,0x40,0xb8,0x34,0x9d,0xb4,0x71,0x6c,0x2a,0x29, +0x4e,0x25,0xfc,0x4b,0x83,0x21,0x7e,0x38,0x4c,0x4d,0x09,0x0f, +0x4f,0x0d,0x37,0xaa,0x3a,0x79,0x41,0xaf,0xcc,0x2d,0x50,0xdd, +0x39,0x2e,0xa7,0xe7,0xbc,0x0e,0x71,0x2d,0x65,0x55,0xa7,0xf2, +0xfa,0x20,0x0d,0x3e,0xc1,0xf4,0x6b,0xfa,0x8f,0xbe,0xb8,0x8c, +0x90,0x67,0x81,0xaf,0xd8,0x75,0x4d,0xc1,0x68,0x78,0xc6,0x6b, +0x57,0x60,0x6b,0xdb,0x5a,0x0b,0x28,0x11,0xc8,0xae,0xd6,0x44, +0x63,0xa9,0x61,0x75,0x48,0xc3,0x16,0x86,0x59,0x35,0x6c,0x53, +0x99,0x86,0x0d,0xf0,0xd7,0xab,0x4f,0x2f,0xb3,0xec,0xd6,0x58, +0xa2,0xc1,0x08,0x2f,0x1c,0xa5,0xa6,0xf8,0xf9,0x90,0x86,0xad, +0xf0,0xe7,0xb6,0x4f,0x58,0x87,0x79,0x58,0x7e,0x21,0xda,0x12, +0x53,0xb2,0xcd,0x3c,0xb8,0xc9,0x55,0xce,0x70,0x8c,0xa8,0xcf, +0x80,0x79,0x63,0x15,0x5e,0xb5,0x03,0x93,0x37,0x2a,0xe1,0x6b, +0x5a,0x91,0xff,0x60,0xc5,0x9d,0xf4,0xe9,0x9a,0x38,0x3f,0x33, +0xad,0x97,0x7e,0x6c,0x4b,0xbc,0xd7,0x02,0x9f,0xb9,0xde,0xe6, +0x82,0xf9,0xa6,0x6d,0x60,0x5e,0x05,0x35,0x09,0xc5,0x1f,0x8a, +0xb7,0xfe,0xfa,0xce,0x44,0xb5,0x6f,0x6a,0x44,0xf2,0x40,0x0b, +0x7e,0x22,0xda,0x6b,0x30,0xc7,0x0b,0xe7,0x60,0x73,0x98,0xe3, +0x49,0x1f,0xf2,0xe2,0x21,0xb2,0xb1,0xa3,0x1a,0x29,0xdc,0xf6, +0xf5,0x89,0x83,0x3f,0x20,0xd1,0x9f,0x84,0x44,0x76,0x84,0x44, +0xbf,0x07,0xe8,0x5f,0x49,0x79,0x93,0xc7,0xc8,0x4b,0x73,0xbe, +0x23,0x77,0xc4,0x07,0xeb,0x62,0x0b,0xeb,0xc7,0x48,0x5e,0xe5, +0x01,0x2b,0x7e,0x02,0x67,0x34,0x6c,0xac,0x6c,0x82,0xf2,0x99, +0x50,0x01,0x6a,0x93,0x0a,0xfc,0xe1,0xaf,0xaf,0x4e,0x51,0x23, +0x52,0x07,0x27,0x47,0x5a,0xc4,0x81,0xe8,0x34,0x7f,0xfd,0xeb, +0x0d,0x09,0x61,0x71,0xe1,0xf3,0xc2,0xcd,0xe2,0xbe,0xbf,0xae, +0x08,0xb5,0x48,0x57,0xe5,0xdb,0x0a,0x6a,0xbb,0x5f,0xbb,0x88, +0x8d,0xd5,0x0d,0x4f,0x33,0x9e,0x11,0xbf,0xeb,0xe2,0x6e,0x20, +0x2d,0x66,0x43,0x53,0x47,0xa4,0x8c,0xb4,0x88,0xdd,0xd1,0x64, +0xf9,0x1b,0x36,0x24,0x46,0xc4,0x0f,0x8a,0x1d,0x68,0x16,0xbf, +0x53,0x4b,0xb4,0xc3,0x0c,0x7f,0x7d,0x09,0xa6,0x14,0x41,0x2e, +0x2e,0x06,0x3b,0x22,0x11,0x06,0x77,0xb5,0x8d,0x2f,0x33,0x5f, +0xd1,0xf8,0xde,0x10,0x77,0x03,0xa8,0xf9,0x90,0xd4,0xa1,0x29, +0xc3,0x8d,0xe6,0x01,0xfa,0x86,0x8d,0x89,0x7d,0xe3,0x22,0xe6, +0x47,0x10,0xe3,0x5e,0x7a,0x25,0x1c,0x5e,0x04,0xc3,0xf5,0xf2, +0x97,0x94,0x12,0x05,0x03,0x35,0x4f,0x9c,0xa0,0x2f,0x62,0xbc, +0x32,0xc5,0xd7,0xe5,0x71,0x29,0x77,0x7e,0xc2,0x70,0x11,0x94, +0x27,0x0f,0xae,0xf2,0x5e,0x86,0xb6,0xb8,0x14,0xd7,0x18,0x88, +0x74,0x05,0x97,0x80,0xad,0x02,0xde,0xc2,0x24,0x33,0xf4,0xc3, +0x8d,0x0c,0x7d,0xa7,0x38,0x86,0xce,0x85,0xe0,0xac,0x2b,0x17, +0x15,0x82,0xb0,0x6d,0xf2,0x22,0x1d,0xa7,0x85,0x0c,0xed,0x0a, +0xc1,0x4e,0x57,0x2e,0x29,0xa2,0x2a,0x3e,0xe6,0x95,0x3b,0x30, +0x49,0xaa,0xa1,0xc2,0x5d,0x54,0xf6,0x42,0xbe,0x7c,0x58,0xc7, +0x2d,0x4d,0xac,0x6f,0x1f,0xc4,0x03,0xfc,0x22,0x08,0xbe,0xc0, +0x71,0xc6,0xdb,0x87,0x86,0x62,0xb2,0x16,0x97,0x3d,0x36,0xf1, +0xf3,0xc4,0xe1,0x49,0xe6,0x35,0x0f,0xd2,0x1f,0xfe,0xed,0xf8, +0x58,0x84,0x04,0xe8,0xea,0x6c,0x1a,0xfb,0x31,0x29,0x63,0x2d, +0xc2,0x12,0x9d,0x16,0xa8,0xd7,0x58,0x9f,0x38,0x30,0x7e,0xf0, +0x82,0x41,0xe6,0x85,0x58,0x1d,0xdd,0x92,0xd0,0x42,0x86,0x64, +0xba,0x73,0x77,0xc9,0xd2,0x5b,0xce,0xf8,0xa6,0x10,0x74,0x99, +0x14,0x6d,0x64,0xda,0x17,0x0f,0x95,0x2c,0x26,0xe0,0xa4,0x30, +0x98,0xd4,0xab,0x50,0x7f,0xa0,0x8a,0xe5,0xe2,0x17,0xed,0x3a, +0xb8,0xdf,0x64,0xe7,0x1d,0xc6,0x24,0x8e,0x48,0x1c,0x96,0x64, +0xfb,0x65,0x01,0xb7,0xd4,0x60,0xa3,0xe3,0xc6,0x10,0xb5,0xaa, +0x58,0x37,0x09,0xb9,0xd3,0x8a,0xc0,0x8e,0x84,0xcb,0x5b,0x35, +0x7d,0x25,0x4e,0xba,0x0e,0xbb,0xc5,0x1d,0x45,0x66,0xd6,0xa7, +0x6a,0xbd,0xe5,0xdd,0x18,0x85,0xc5,0x21,0x9e,0x62,0xbd,0x2a, +0xfc,0x9a,0x10,0xa1,0xce,0x92,0xd0,0x68,0x22,0x34,0x34,0xc9, +0x76,0xf5,0xad,0xf4,0x3b,0x8f,0x09,0x9c,0xba,0x06,0xc0,0xeb, +0x79,0xea,0xf8,0xd4,0x2f,0x52,0x27,0x5a,0x84,0x1d,0x41,0x18, +0x94,0xac,0x4d,0xa2,0xa5,0x20,0x6e,0x64,0x19,0x07,0x27,0x83, +0xc3,0x1a,0x51,0xf1,0xdd,0x3a,0xc6,0xeb,0xae,0x64,0x05,0xd0, +0x48,0xf9,0x7b,0x25,0x77,0x5b,0xc8,0xbe,0xfc,0x71,0xe5,0x4f, +0x37,0x69,0xfa,0xbb,0xf6,0x86,0x37,0xf3,0xd4,0x29,0xa9,0x53, +0x52,0xa3,0x2c,0xa2,0xf2,0xbc,0xb4,0x30,0xbd,0xdc,0xea,0xa4, +0xf1,0x89,0x13,0xe2,0x27,0x18,0x7d,0xae,0x27,0xfb,0xbc,0x22, +0xb8,0x23,0xcb,0x12,0xe3,0x78,0x95,0x6c,0x66,0xed,0xe7,0x20, +0x9c,0x14,0x0e,0x93,0xba,0x15,0xea,0x37,0x64,0x3f,0xf3,0x49, +0x3c,0x0f,0xe5,0x2d,0xaf,0x5c,0x9b,0xdd,0x5e,0xbc,0xec,0x86, +0x73,0x1f,0x11,0x5e,0x52,0x8e,0x51,0x3f,0x7e,0x92,0x27,0x04, +0xdc,0x0b,0xf5,0xbb,0x9e,0x22,0x42,0x15,0xdd,0xb0,0x32,0x3d, +0xd8,0x55,0xf9,0x5b,0x3e,0x78,0x6b,0xb1,0xf5,0x58,0x40,0x0f, +0xdc,0x6f,0x54,0x27,0xfa,0x92,0xa8,0xa0,0x7b,0x10,0xb8,0xe3, +0xc8,0xf7,0x05,0x2c,0x52,0xf4,0xd1,0xe2,0x72,0xa6,0x26,0x4e, +0x4e,0x9a,0x98,0x6c,0x5e,0x7d,0x3b,0xed,0xde,0x53,0xf2,0x6c, +0xec,0x82,0xe1,0x87,0x68,0x75,0x6c,0xea,0xf8,0xd4,0x09,0x16, +0xbc,0x39,0x97,0xfc,0x8e,0x4b,0x6b,0x93,0x86,0x26,0x0c,0x5f, +0x38,0xdc,0xbc,0xb0,0x01,0xda,0x25,0x61,0x45,0x09,0x25,0xa5, +0x25,0x88,0x6e,0x5e,0x83,0xbb,0xea,0x9d,0x15,0x45,0x46,0x09, +0xa2,0x46,0xac,0xa4,0xbb,0xf1,0xd6,0xa3,0x27,0x09,0xd4,0xc1, +0xed,0x6a,0x71,0x3d,0x3f,0x11,0xaf,0x62,0x46,0x7d,0x0d,0xdc, +0xd5,0x43,0xec,0x9c,0xc3,0xf4,0xa4,0xa8,0xa4,0xa9,0xc9,0x34, +0x41,0xe9,0xd7,0xef,0x3b,0xde,0x16,0x15,0x42,0xe1,0x64,0x19, +0xe8,0x63,0x41,0x4c,0x5a,0x6f,0xc8,0x59,0x9d,0x34,0x2a,0x61, +0x74,0xdc,0x68,0xf3,0x02,0x37,0xac,0x94,0x84,0x8a,0xd3,0x8a, +0x20,0x5f,0x86,0x9d,0xd5,0x1b,0x38,0x56,0xb4,0x60,0xbc,0x66, +0x3f,0x76,0x07,0x6f,0x71,0xe5,0x67,0xf6,0x0e,0x69,0x05,0xd0, +0xfa,0x41,0x87,0x88,0xab,0xfa,0x61,0x3f,0x11,0x4a,0x5c,0xd0, +0x5e,0x03,0x3f,0xf5,0xfd,0x01,0x76,0xd6,0x61,0x06,0xf1,0x89, +0x22,0x3e,0x57,0x56,0xfe,0x74,0x9b,0x3b,0x1f,0x64,0x63,0x13, +0xc7,0xc5,0x8f,0x97,0x34,0x2b,0x27,0xa1,0x4a,0xc3,0x4c,0x34, +0x3d,0xb9,0xf9,0x9a,0x84,0xb5,0x86,0xa2,0x8b,0x56,0xaa,0x37, +0x6b,0x1f,0xa4,0x3f,0x92,0xea,0x19,0xea,0xaf,0xab,0xd1,0x1f, +0xd4,0x73,0x0e,0x19,0x79,0x8d,0xf5,0x49,0x03,0x3e,0xa8,0xa7, +0xab,0xa1,0x50,0xfe,0xa6,0xbb,0x3f,0x2f,0x59,0x7a,0xdb,0x19, +0x9f,0x15,0xc2,0x2b,0xf5,0xf5,0x8a,0x3f,0xd3,0x6f,0xca,0x83, +0x20,0xf5,0xb6,0x32,0x70,0xc4,0xd6,0x6c,0x4c,0xe2,0x48,0xd2, +0x78,0xdb,0xaf,0x8a,0xd2,0x6f,0x3d,0x24,0xdc,0xf0,0x0a,0x02, +0x3d,0x86,0xbc,0x13,0xea,0xab,0x45,0x54,0x8d,0x21,0x67,0xa2, +0xe2,0x9a,0xa4,0xcf,0x13,0x3e,0x5f,0x38,0x8a,0x48,0x56,0x93, +0x24,0xeb,0x6c,0x66,0x1d,0x31,0x9e,0x57,0xbd,0x2d,0xef,0xe0, +0x49,0x3a,0x64,0x54,0x35,0xb2,0x3d,0xc2,0xb2,0x49,0x17,0x47, +0x4a,0x5d,0x5c,0x73,0x37,0xfd,0xe7,0x67,0x34,0x3b,0x9e,0x01, +0x00,0x31,0xea,0xb8,0x54,0xa2,0x65,0x11,0xf6,0x73,0x08,0xdd, +0x2a,0xac,0x4b,0x1a,0x1a,0x3f,0x4c,0xce,0x0e,0x51,0xaa,0x6b, +0x50,0xca,0xc2,0x57,0x38,0x99,0x71,0xed,0x0a,0x5b,0x2e,0xc2, +0xe4,0xcd,0x3b,0x95,0xfa,0xb1,0x40,0xf4,0xe1,0x55,0xee,0xd3, +0x97,0x97,0x99,0xfe,0x19,0xb6,0xe5,0x55,0xe6,0xcb,0xaa,0x4e, +0x95,0x8a,0x14,0x91,0x94,0x49,0xdc,0x7a,0x60,0x24,0x09,0xfd, +0xb9,0x1c,0x87,0xd5,0x45,0x69,0x37,0x1f,0x92,0xda,0x4b,0xa1, +0xe7,0x92,0xda,0x4f,0x94,0x6a,0x5f,0x75,0xae,0x14,0x7a,0x2d, +0x09,0x3d,0x2a,0x6e,0xd4,0x07,0x95,0x15,0x15,0x19,0xec,0xa3, +0xa0,0xaa,0x72,0x5f,0xc6,0x5d,0x29,0xb0,0x32,0x2b,0x6f,0x57, +0x3c,0x4f,0xbf,0xcd,0xcd,0x71,0xec,0xd6,0xed,0x25,0x4b,0x6f, +0x3a,0x43,0x14,0xb6,0xe0,0x95,0x57,0x4a,0x2c,0x3d,0xa7,0x61, +0x53,0xc2,0xd2,0x72,0x59,0x50,0xce,0xc0,0xd2,0x87,0xfe,0xfa, +0x57,0x29,0xea,0x80,0x52,0x2c,0x9d,0x9d,0x1e,0xa0,0x6f,0xdb, +0x90,0x18,0xb6,0xb0,0x0f,0xad,0x69,0xe2,0xd7,0x00,0x18,0x2d, +0x94,0x42,0x5d,0x81,0x64,0xeb,0xc7,0x68,0xc2,0xc3,0x70,0xf8, +0x55,0xdb,0xf0,0x82,0xf0,0xb0,0x8a,0x63,0x51,0x19,0x1e,0x0e, +0x4f,0x19,0x41,0x78,0x38,0x9b,0x20,0x84,0xf0,0xb0,0x5f,0x5c, +0x44,0x2c,0xe1,0xe1,0x6f,0xb2,0xe8,0xd2,0x90,0x7c,0x18,0x02, +0x0d,0xac,0x1f,0xb3,0x08,0x16,0x4d,0x18,0x4a,0xee,0xc3,0x84, +0x92,0xbb,0x4c,0xaf,0xcb,0x60,0x2a,0x56,0x6c,0x20,0x61,0xb1, +0x11,0x54,0x54,0x7c,0xb0,0xa2,0x86,0xb3,0xa0,0xa2,0xbc,0xa7, +0x87,0xc4,0x3c,0x4b,0xb0,0xdd,0x48,0xdd,0xf0,0x28,0xfd,0x09, +0x45,0xea,0x2e,0x23,0x18,0xf9,0xb0,0x0b,0x86,0x98,0xc5,0x03, +0x7f,0x98,0x86,0x55,0xdd,0xca,0x90,0xd3,0x0d,0xaa,0x52,0xc3, +0xaa,0x1a,0xf9,0xf9,0x55,0x61,0x9a,0xf2,0x42,0x54,0xfe,0x00, +0xa1,0xc5,0xcd,0xf4,0x01,0x9a,0x38,0x36,0x3d,0xa3,0x97,0xbe, +0x73,0x5b,0x82,0xd7,0x02,0x5f,0xf2,0xbe,0xaf,0xcf,0x27,0xef, +0xdb,0xf2,0x25,0x70,0xe8,0x48,0xcb,0xf4,0x53,0x7f,0x7d,0x43, +0xbc,0x1a,0x94,0xda,0x3b,0x39,0xdc,0x52,0xa2,0x08,0xb3,0x7c, +0x2b,0x50,0xdc,0x07,0x5e,0x68,0x1b,0x9e,0xd1,0x62,0x51,0xc9, +0xba,0x58,0xa4,0xa5,0xd2,0x6a,0x31,0x3c,0x59,0xae,0x16,0x73, +0xa8,0x7b,0x1b,0xd7,0x27,0x46,0xc4,0x59,0x57,0x0b,0xeb,0x51, +0xe3,0x30,0x5c,0xa8,0xd1,0x7a,0xb1,0xb8,0x08,0x2e,0x8a,0x9b, +0xc6,0x6a,0x51,0xa8,0x6d,0x7c,0x9d,0xf9,0x17,0x54,0xb7,0xae, +0x16,0xd4,0x7e,0x70,0xea,0xd0,0xe4,0xb2,0xe5,0x62,0xe3,0xc6, +0x84,0x3e,0x71,0xfd,0xe7,0xf7,0x93,0xcb,0x05,0x79,0xeb,0xf2, +0xa8,0x72,0x67,0x1a,0x90,0xa9,0xb2,0x24,0x5d,0x5f,0xdd,0x51, +0x5b,0xf7,0x7b,0xe6,0xef,0x7f,0x3b,0xfe,0x24,0xee,0x06,0xe9, +0x69,0x65,0xba,0xff,0x2d,0x39,0x1a,0xfa,0xc6,0x0d,0xa5,0x9e, +0x10,0x4d,0x18,0xf9,0x9f,0xf2,0x1d,0x6c,0x53,0x61,0xcb,0xf0, +0x92,0x16,0x0b,0xfb,0x7c,0xf1,0x34,0xaf,0x22,0x8c,0x0d,0x1f, +0x9b,0x44,0x25,0x72,0xe6,0xac,0x71,0xc3,0x1d,0xfd,0xb3,0xfb, +0xbe,0x7e,0x95,0x7d,0xfa,0xe2,0xfe,0x59,0xbb,0x87,0xae,0xb3, +0xac,0x80,0x8a,0x67,0x44,0x17,0x15,0x26,0xe3,0x38,0x6d,0x8e, +0xd2,0x67,0xe4,0xd7,0x27,0x4e,0xec,0xdb,0x71,0xc6,0x79,0xb5, +0x72,0x7a,0xdf,0x17,0x03,0x06,0x8c,0x9c,0xd8,0xd7,0xd9,0x9e, +0xf8,0xd7,0xd3,0xd6,0xdf,0xcf,0xf8,0xed,0x0d,0xf1,0xff,0x59, +0xf2,0x1f,0x65,0xe5,0xbf,0x7b,0xae,0x5c,0x26,0xd7,0x27,0x5a, +0xd5,0xbb,0x94,0xbf,0x10,0xa2,0x9a,0xa6,0x2f,0x80,0x09,0xe2, +0xa7,0x40,0x3d,0xa9,0x99,0x58,0x80,0x9d,0x69,0x4a,0xf6,0xe5, +0x8a,0xd5,0x8a,0x1c,0xc4,0x77,0xda,0x86,0x3f,0x33,0xfe,0x04, +0x5b,0x39,0x88,0x34,0x08,0xea,0xb0,0xd4,0x91,0x29,0x9f,0x53, +0x57,0xa2,0x79,0xdd,0x77,0xd2,0xa1,0x0f,0xe0,0xf6,0x8e,0xb4, +0xa2,0xc9,0x5d,0x25,0x5c,0x23,0xe7,0xac,0xa2,0x27,0x9e,0x37, +0xe6,0x54,0xf7,0x54,0xf0,0x88,0x0d,0x7d,0x63,0x67,0x2c,0x84, +0x95,0x7f,0x90,0xfe,0x75,0x2b,0xf9,0xce,0xc1,0xbd,0x61,0x83, +0x67,0xee,0xc6,0x3b,0x87,0x1b,0x2f,0x5f,0x34,0xbe,0x61,0x7d, +0xe7,0x10,0xa8,0x85,0x07,0xf5,0x31,0xde,0x39,0x9c,0xf9,0xc1, +0xf2,0x95,0x7a,0x36,0xef,0xb4,0xf1,0xce,0xa1,0x6f,0x98,0x85, +0xda,0xee,0x97,0xb7,0xe2,0xcc,0xe1,0xf5,0x23,0xd8,0x76,0x13, +0xd6,0xcc,0x87,0x3f,0x45,0xa1,0x2a,0x5f,0x45,0x64,0xcb,0xed, +0xea,0x86,0x52,0xd7,0x1d,0x37,0x26,0x04,0xc7,0xf5,0x9e,0x67, +0x38,0x51,0x9b,0xa1,0x7c,0x96,0xbc,0x5e,0xc9,0xf1,0x95,0x88, +0xf0,0xd7,0xab,0x4d,0x27,0xa1,0x0d,0x37,0xa1,0x9b,0xcc,0xec, +0xba,0x2b,0xdf,0x36,0x94,0xb4,0x94,0x5b,0x7a,0x57,0xad,0x5b, +0x7a,0xb3,0x2c,0xf8,0xd7,0xf4,0xcc,0x5e,0x70,0x7b,0xeb,0x28, +0xac,0xd8,0xa8,0x2b,0x0e,0xa4,0x78,0xf0,0x70,0x6f,0x13,0xec, +0x85,0xd6,0xcf,0x4a,0xb7,0xf4,0x9c,0xd4,0x0f,0x35,0x9d,0x70, +0x07,0x7a,0xcb,0x48,0x94,0x07,0x40,0xbe,0x8c,0x44,0xe7,0xca, +0x6d,0xa5,0x37,0x32,0x88,0x2f,0xda,0x32,0xdc,0xa3,0x61,0x30, +0xf6,0xf6,0x35,0xef,0xa7,0x58,0xfc,0x00,0x94,0x7f,0xfe,0x18, +0x3e,0x75,0xc4,0x13,0x62,0x9c,0x68,0xc3,0xac,0x35,0x9f,0x70, +0x87,0x3e,0x49,0xc6,0xc4,0x3c,0x10,0xf2,0x8d,0xe8,0xbf,0xb4, +0xe1,0x88,0x2e,0x8d,0x02,0x30,0xdc,0xba,0x97,0xb7,0x0f,0xd4, +0x17,0x46,0xf4,0x3f,0xa4,0x84,0xd4,0x60,0xb2,0x3b,0xce,0x95, +0x25,0x93,0xcd,0x39,0x0c,0x23,0xad,0x1b,0x72,0xa5,0xe5,0x9a, +0xb8,0xe3,0x6f,0x0c,0xb7,0x1a,0x41,0x7c,0x59,0xa5,0x26,0x92, +0xcd,0x88,0xdc,0x79,0x10,0x14,0x18,0xbb,0x6f,0x52,0xb6,0xb7, +0x34,0x3c,0x70,0x73,0xcb,0x70,0xef,0x86,0x21,0x18,0xd6,0xdd, +0xd8,0x02,0x3f,0xf8,0xf6,0xf9,0x03,0x8a,0x5b,0x61,0xb0,0x88, +0xd5,0x84,0x2b,0x28,0x5e,0xc6,0xd9,0x8a,0x24,0xf8,0x97,0x87, +0x71,0xb6,0xc2,0x95,0x22,0x34,0x57,0xa3,0xa0,0x13,0xc9,0xdb, +0xd4,0x90,0x97,0x3a,0xdb,0x43,0x9d,0x43,0x9d,0x8d,0x29,0xed, +0xec,0x8d,0x2d,0xc3,0x0d,0x99,0xbd,0x4a,0x65,0x56,0x48,0x66, +0x77,0x0a,0xfe,0xb6,0xff,0x53,0xf7,0x29,0xfc,0x3b,0x8d,0xd7, +0xdf,0xc9,0xa0,0x8a,0xd1,0x5d,0xb9,0x93,0x10,0x53,0x3a,0x56, +0x01,0xb2,0xcb,0x9e,0x8d,0x42,0x30,0xdc,0xcf,0x5c,0x5c,0x0b, +0x17,0x7f,0xa8,0x06,0x85,0x3b,0xe0,0xa5,0xf6,0xa1,0xc1,0xdc, +0x0f,0x0d,0x68,0x8c,0xb6,0x8e,0x90,0x83,0x1b,0xf6,0xcf,0xe0, +0xca,0x6d,0xbb,0xc5,0xc6,0xb6,0x9d,0x7c,0x3f,0xd0,0x13,0x83, +0x38,0x6f,0xc0,0x78,0xbd,0xe6,0x0c,0x6f,0x60,0x25,0xee,0x38, +0x9f,0xfe,0x3e,0x2a,0xff,0x76,0xe7,0xe6,0x4c,0xa6,0x3b,0xc8, +0x3f,0xbb,0xbd,0x73,0x63,0x78,0x00,0xfd,0x4b,0x82,0x18,0xae, +0x2b,0x89,0x62,0xdc,0xfe,0x05,0xc3,0x3b,0x84,0xa8,0xaa,0x3f, +0xc3,0xe3,0xf8,0x8b,0x3e,0x9e,0xe9,0x19,0x4c,0x0c,0x2d,0x82, +0x08,0x70,0x56,0x30,0x1f,0x1b,0xbd,0xff,0x86,0xe1,0x33,0xd1, +0x0b,0xde,0x7c,0x44,0x41,0x94,0x17,0xb5,0xad,0xb9,0xe5,0xd7, +0x65,0x6e,0x79,0x3f,0xe3,0xb4,0x84,0xfa,0x4c,0xfe,0xec,0xc3, +0x6b,0x1f,0x20,0xbe,0x27,0x19,0x5e,0xc6,0x59,0xbc,0xe6,0x5e, +0xa3,0xd5,0x65,0x5c,0xc8,0x6b,0xcc,0xa3,0xaf,0x8f,0x58,0x1f, +0xd1,0x12,0xad,0xef,0x03,0x9c,0xe1,0x86,0x4f,0xc9,0xd5,0x7c, +0x3d,0x08,0x9c,0x8d,0x97,0x02,0x4c,0xfc,0xa6,0x4d,0x82,0x81, +0xb0,0x2c,0x17,0x97,0x41,0x00,0xac,0xce,0xc5,0xdf,0xc5,0x8f, +0x77,0x15,0xa8,0xfd,0x94,0xdb,0x12,0x19,0xc5,0xe9,0xa3,0xcb, +0x3b,0xd6,0x16,0x94,0x9d,0x42,0x38,0xa0,0xe2,0x23,0xd1,0x89, +0x2b,0xf1,0xb2,0xa4,0x54,0x2f,0xd1,0xd0,0x7a,0x7b,0x87,0x03, +0x0c,0x7c,0x77,0x89,0x41,0x7d,0xf8,0x32,0x07,0xbf,0x84,0x3a, +0xb0,0x2d,0x97,0xba,0x31,0x4a,0x9f,0x43,0x0b,0x35,0x16,0x09, +0x4f,0x99,0xa6,0x9f,0x22,0xd3,0xf4,0x87,0x14,0xe8,0xe3,0xbc, +0x71,0x18,0x11,0x0d,0xf3,0x16,0x7d,0x0b,0x14,0xac,0xf5,0x5a, +0x9b,0xe3,0xe3,0x16,0xcb,0x2d,0x2f,0x58,0xe6,0x9a,0x1b,0xce, +0xd8,0x5e,0x78,0xbe,0x57,0xa5,0xbc,0xf3,0xe8,0x99,0xc9,0xde, +0x22,0xad,0xa0,0xec,0xa4,0xc1,0x0e,0xc9,0xb8,0x19,0xdc,0x90, +0x75,0x7a,0x6a,0x89,0x7e,0x1f,0x5d,0xe0,0x31,0xab,0x00,0x26, +0xd0,0x33,0xd3,0x0b,0xf4,0x65,0xf2,0x99,0x7a,0x98,0xc4,0x20, +0x1d,0x47,0x8a,0x11,0x92,0xed,0x68,0xc9,0xf6,0x48,0x81,0xfe, +0xd0,0x1b,0xe3,0xe8,0xf1,0xe9,0xde,0x22,0x83,0xd8,0x3a,0xfc, +0x2d,0x7b,0x00,0x0c,0x13,0xa0,0x3d,0xf5,0xa0,0x0e,0x43,0xfb, +0xf3,0xda,0x82,0x0b,0x26,0x5e,0xa5,0x1f,0x83,0x15,0xb8,0x56, +0xc4,0xc8,0xb6,0x93,0x64,0xdb,0xe4,0x02,0xfd,0x5b,0x6f,0x8a, +0x48,0x9c,0xe0,0x0b,0x6f,0x91,0x62,0xb4,0x25,0x21,0xbe,0x6f, +0x8a,0xbb,0x8d,0xab,0x3a,0x8e,0x62,0x81,0x54,0x84,0x22,0x26, +0xf6,0x16,0x42,0x93,0x76,0x0c,0x03,0x29,0x54,0xa5,0x21,0xb7, +0x5e,0x12,0x31,0x0a,0xdd,0xa0,0x9f,0x6f,0xc9,0xd5,0x6b,0x90, +0x0d,0x6e,0x78,0x2f,0x5f,0x6e,0xef,0x57,0xfe,0x3f,0x8d,0xbb, +0xde,0x0e,0xec,0x64,0x71,0x1e,0x37,0xa3,0x38,0x8f,0xf1,0x7e, +0xe0,0x1a,0x76,0xf7,0x87,0xee,0x22,0xda,0x28,0xc6,0x7e,0x43, +0xfc,0xae,0x8d,0xa3,0x90,0xff,0x74,0x2e,0x9e,0x86,0x3e,0x70, +0x2d,0x4f,0xd4,0x11,0xbf,0xbc,0x51,0xa0,0x13,0xd8,0x67,0xae, +0x7b,0xe4,0xbc,0x30,0xc7,0x34,0xbb,0x39,0x56,0x8e,0xc5,0xe6, +0x4e,0xf2,0x10,0xc0,0x6c,0xe3,0x70,0x01,0x2e,0xbb,0x21,0xa7, +0x2e,0x8a,0xe2,0x2c,0xce,0xdf,0x32,0x14,0x18,0xa0,0x1f,0x34, +0x8e,0x01,0x2c,0x33,0x7e,0x57,0xb0,0x01,0xd6,0xd0,0xa2,0xb9, +0xdd,0x6d,0xf6,0x05,0x34,0x86,0xe3,0xb9,0x78,0x1c,0xea,0x42, +0x6e,0xae,0xa8,0x29,0x26,0x3f,0x57,0xa0,0x35,0x68,0x59,0xeb, +0x1e,0x3a,0xe3,0x46,0x2c,0xd2,0x9b,0x31,0xfd,0x6f,0x82,0xdf, +0xf7,0x25,0xe4,0x7d,0xb5,0xd0,0x78,0x15,0x3f,0x52,0x6e,0xd1, +0x9d,0xab,0xe4,0xe0,0x55,0xa6,0x49,0xb9,0x23,0x02,0xf4,0x3e, +0xc6,0x9f,0xb4,0x7e,0xc7,0x69,0xd8,0x00,0x1c,0x7b,0x08,0x4e, +0x4e,0xfb,0x23,0x46,0x7f,0xbb,0x42,0x03,0xc2,0xf9,0x01,0xdc, +0x54,0x9d,0xe1,0x64,0x83,0x04,0xe7,0x49,0x0c,0x7f,0x47,0x3b, +0x78,0xce,0xc4,0x29,0x0a,0x28,0xe5,0x97,0xf5,0xb0,0x32,0xe7, +0x39,0xe4,0x8a,0xf1,0x3a,0xb6,0x8c,0x57,0x6f,0x53,0xd6,0x0b, +0x05,0x39,0x06,0x68,0x0b,0xb2,0x4d,0xb2,0x0f,0x4b,0x30,0x19, +0x28,0x90,0xa9,0xde,0xaa,0x94,0x52,0x1d,0xf4,0xa7,0x9f,0x78, +0x35,0x17,0x36,0x9e,0x34,0xf0,0x54,0x0e,0x9e,0x82,0xda,0xf0, +0x63,0x2e,0x29,0x4b,0xc4,0x33,0x51,0x87,0x41,0x33,0x5c,0x07, +0xdd,0x64,0xaa,0xf6,0x6c,0xad,0x48,0xdf,0xeb,0x51,0xca,0x9e, +0x9c,0x00,0xce,0x8b,0x59,0x60,0x13,0x18,0x66,0xec,0xb3,0x6f, +0xc5,0xbb,0x1a,0x56,0x0d,0x80,0xaa,0xa2,0xbf,0xb1,0x6d,0x8e, +0xef,0x44,0xa1,0x36,0x19,0x06,0xc1,0xa4,0x5c,0x9c,0x04,0x81, +0x90,0x9a,0x8b,0xf9,0xe2,0xca,0x1d,0x05,0x6a,0x3e,0xc9,0x5a, +0x9b,0x6f,0x0c,0x76,0xb7,0x76,0xb1,0xe4,0x54,0xcb,0x64,0xff, +0x03,0x86,0x7d,0x6c,0x10,0x3b,0xb5,0x6b,0xfa,0x5a,0x5f,0x9c, +0xfe,0x3e,0x91,0x21,0xd3,0x5f,0x33,0x70,0x86,0x45,0x39,0x14, +0xc3,0xd5,0x86,0xac,0x5c,0xfc,0x59,0x44,0x70,0xbb,0xcf,0xa4, +0x69,0x49,0xf3,0x79,0xef,0xce,0x70,0xc3,0x16,0xcd,0xd8,0x49, +0x8f,0xc3,0xf2,0xfe,0x14,0xe7,0xb5,0xc0,0x6a,0xb2,0x4d,0x7d, +0x48,0xce,0xa1,0x2e,0xd6,0xb1,0xb6,0x19,0x65,0xb4,0x69,0x6a, +0x58,0x13,0x74,0x67,0xe8,0x22,0xbc,0x0c,0x43,0x11,0x3b,0x0c, +0xd3,0xd8,0x20,0x36,0x12,0xcf,0x34,0x5f,0xfc,0x42,0xf2,0x54, +0x64,0x7b,0x27,0x48,0xce,0xc6,0x64,0x5e,0x6f,0x38,0x23,0xef, +0x5b,0x5a,0x0c,0xb7,0xad,0x4d,0xbc,0x44,0x22,0x3d,0x38,0xcb, +0x17,0x47,0xc9,0x07,0x2b,0xea,0x7d,0x19,0xec,0x30,0x6c,0xa5, +0x31,0x13,0x0f,0x49,0xbb,0x37,0x5c,0xa6,0x9f,0x33,0xfe,0x0f, +0xb2,0x83,0xb3,0xd5,0x70,0xaa,0x7d,0x4f,0x04,0x37,0x51,0x83, +0x14,0xee,0x14,0xc6,0xf2,0xa5,0x4d,0x10,0x99,0x65,0x92,0x4c, +0xba,0x95,0xcb,0x18,0x49,0xa6,0x3c,0x71,0xc1,0x68,0xf4,0x7a, +0xbf,0xab,0xf4,0x8a,0x81,0x08,0xf4,0x0f,0x04,0x7f,0xec,0x68, +0x7c,0x88,0x9a,0x86,0x56,0xdf,0x13,0xcf,0xb5,0x09,0x30,0x16, +0xce,0xe4,0xe1,0x19,0x5a,0xac,0x2f,0xe7,0x09,0xb3,0x78,0xfa, +0x4a,0x81,0x36,0x60,0x97,0xb9,0x8e,0xbb,0xea,0x8c,0x3b,0xfb, +0xb3,0xc1,0x5a,0xb1,0x89,0x4d,0x24,0x05,0x3d,0x9c,0x8b,0x87, +0x49,0x41,0xcf,0xe5,0x0a,0x7b,0x31,0xf9,0x01,0xb7,0xfb,0x4e, +0xbe,0x01,0x93,0xba,0xc9,0x1d,0x16,0xc9,0x5a,0x4a,0xdd,0xdf, +0x85,0x50,0x83,0x97,0x0c,0xbb,0xbb,0x69,0x0b,0x49,0x5f,0xec, +0x32,0x48,0xaf,0x5d,0xe1,0x48,0x2e,0x1e,0x21,0x2f,0xee,0xbc, +0x6c,0x36,0xd2,0x68,0x76,0x04,0xe3,0xa4,0x16,0x39,0x13,0x32, +0xf7,0x68,0xa4,0xf1,0x6a,0xfd,0xe9,0xb9,0x3a,0x70,0x3c,0x87, +0xf4,0xbf,0xb6,0xd4,0xff,0x1a,0x22,0xe2,0xe1,0xbb,0x37,0x0c, +0xfa,0x19,0xda,0x23,0x77,0x78,0x57,0xe3,0x14,0x0d,0x3f,0x09, +0x82,0x4f,0xd0,0xcd,0xfa,0xf1,0x4e,0xec,0x64,0xc2,0x24,0x6e, +0x93,0x55,0x0f,0x81,0x39,0xb9,0x38,0x07,0x42,0xe4,0x90,0x15, +0x88,0x6b,0xb7,0x15,0xf8,0xe4,0x51,0xe6,0xba,0x7c,0x67,0x52, +0xd9,0xd9,0x3d,0xda,0xc7,0x62,0x39,0x27,0x23,0xe1,0x3e,0x73, +0x8b,0x66,0xa4,0xda,0x5b,0x50,0x0d,0x06,0x55,0xde,0x71,0x4d, +0x1f,0x0a,0x7e,0x32,0x80,0x57,0x1f,0xc7,0xa6,0xfc,0x33,0xf3, +0x69,0xb9,0x78,0x4b,0x8c,0x2a,0x50,0xc0,0xee,0x49,0xe6,0xea, +0x2b,0xce,0x14,0x20,0xe4,0x4b,0x30,0x9d,0x75,0x91,0x22,0x32, +0xd8,0x76,0x51,0x6c,0x82,0x06,0x7a,0x5c,0x8e,0x88,0x87,0x86, +0xfa,0xca,0x3c,0xf1,0xb3,0x98,0x4e,0xd8,0xe5,0x5e,0x56,0xad, +0x67,0x9b,0xf6,0x84,0xe0,0x98,0xbb,0x06,0x32,0x58,0xdc,0x4c, +0xa8,0x46,0xd2,0x49,0x64,0x59,0x36,0xfb,0x2c,0x58,0xa6,0x3d, +0x83,0x2f,0xf3,0xc4,0x8a,0xbf,0xf4,0xa9,0xd9,0x22,0xea,0x2f, +0x7d,0x61,0x9e,0xb8,0x24,0x2c,0xb0,0xb8,0xb1,0x91,0xa0,0x5e, +0x01,0x9d,0xc9,0xbd,0x0c,0xd6,0x53,0x19,0x3e,0x67,0xf0,0xa5, +0xe8,0xc6,0x60,0x51,0x73,0x99,0x56,0x5e,0x52,0x0e,0x87,0xc3, +0x4d,0xb6,0x84,0xbe,0x9c,0xcb,0x20,0x95,0xf3,0x46,0xff,0xf1, +0x84,0xbf,0xb0,0xd1,0x1b,0xb2,0x92,0x30,0xfa,0xb6,0xe4,0x0f, +0xfa,0x56,0x54,0x92,0xbb,0xa9,0x53,0x64,0x46,0xc9,0x2c,0xd8, +0x21,0xa5,0xe2,0xf5,0xee,0xd0,0xf7,0xcd,0x4a,0xd3,0xd4,0xd3, +0xde,0x47,0xfd,0x57,0x1a,0xf2,0x16,0x45,0x99,0xb1,0xfe,0x81, +0x06,0x77,0x3c,0x4a,0x93,0xd4,0x83,0xc9,0x1b,0x65,0x2a,0x42, +0x15,0x78,0x90,0x83,0x0f,0xc1,0x1e,0xde,0xe4,0x89,0xae,0xc2, +0x1b,0xba,0xa3,0x9b,0xb5,0x10,0xbd,0x4c,0x38,0xf7,0x8e,0x6d, +0x6d,0xad,0x44,0x5f,0xe7,0x3a,0x83,0xe0,0x6c,0xc4,0xe7,0x70, +0xfb,0x1c,0xde,0x79,0x0e,0x4f,0x2e,0x88,0x36,0xe4,0xec,0x7a, +0x35,0x50,0x39,0x9f,0x6d,0xbd,0xe7,0x5d,0x5e,0x3b,0x5e,0x07, +0xba,0xe4,0xe2,0x75,0xb0,0x85,0x23,0xd9,0x78,0x14,0x54,0xc8, +0xce,0x23,0xe5,0x68,0x07,0xad,0xd1,0x45,0x4d,0xea,0xe6,0x23, +0xd3,0xa0,0x43,0x63,0x7d,0xe2,0xbb,0x26,0xc8,0x34,0x68,0xd1, +0xb1,0x84,0xa0,0xb9,0x2e,0xf4,0xcb,0x23,0x42,0x55,0xe0,0x49, +0x0e,0xfe,0x49,0x52,0xbc,0xcb,0x13,0x3e,0x24,0x45,0x0f,0x5e, +0x27,0x96,0x95,0x26,0x31,0x37,0x85,0xf0,0xd1,0xec,0x19,0xf4, +0xce,0xc6,0x7f,0x3d,0x87,0x7b,0xe7,0xf0,0x97,0xe7,0xf0,0xfc, +0x82,0xe8,0x40,0xad,0xbc,0x1b,0xf0,0xaa,0xed,0xac,0x5b,0x65, +0x2f,0x70,0xb7,0x06,0xdd,0x3c,0x30,0x54,0x3f,0x5b,0x5a,0x48, +0x17,0x9b,0x40,0x05,0xae,0x7e,0xcd,0xf0,0x11,0x16,0x71,0xb5, +0x23,0x2d,0x4d,0xd3,0x99,0x4c,0x6b,0x2e,0xf7,0x0c,0x7e,0x39, +0x8b,0xbf,0x3e,0x83,0x17,0x92,0x88,0x89,0x88,0xa8,0xba,0x07, +0xeb,0x8e,0x83,0x8a,0x73,0x58,0x69,0x8a,0x70,0x13,0xb0,0x37, +0x5a,0x3a,0x7d,0x26,0x53,0x84,0x8b,0xed,0xf2,0x34,0xe8,0x09, +0x35,0xa5,0x8e,0xd4,0xb3,0xea,0x88,0xab,0xbe,0xf2,0x22,0xe9, +0xc8,0x44,0x28,0x87,0x3d,0x71,0x5a,0x40,0xf1,0xb9,0x3c,0x55, +0x7c,0x45,0xb1,0x3e,0xf9,0xf6,0x3d,0x71,0xb2,0x62,0x8f,0xaf, +0xe5,0x9d,0x7b,0xdd,0xd8,0x73,0xd1,0x99,0xfe,0xc0,0x6a,0x34, +0xfe,0xc5,0xb1,0x14,0x5a,0x88,0x34,0x50,0xf5,0x69,0xd9,0xa4, +0x5c,0xaa,0x1e,0x97,0x27,0x7e,0x14,0xed,0xf4,0x9f,0x95,0xb7, +0x8d,0xb4,0x92,0x73,0xbd,0x74,0x05,0x4f,0x16,0xc1,0x49,0x63, +0xc7,0x2c,0x46,0xf7,0xd6,0xa4,0xb2,0xe9,0x84,0x8d,0xe5,0xb1, +0x09,0x77,0x69,0xc4,0xe8,0xbb,0xd6,0x9a,0x58,0xf1,0x5a,0x9f, +0x9a,0x23,0xa2,0x5e,0x5b,0x35,0xac,0x0e,0xfd,0x5e,0xd2,0xaf, +0xad,0x4c,0xb8,0x7d,0x6f,0x2f,0xeb,0x51,0x3a,0x70,0xee,0xfd, +0xe1,0xcf,0xda,0x7b,0xd8,0x3b,0x52,0xad,0xf2,0x72,0x59,0xf0, +0x61,0x5c,0x79,0xc9,0x3e,0xe5,0x4e,0x4b,0xe4,0x77,0x25,0xfd, +0xda,0xf3,0xda,0xfd,0xca,0x7e,0xf5,0x60,0x1e,0xff,0x99,0x46, +0x5b,0x24,0x77,0xb2,0xa6,0xbd,0x9b,0x41,0xae,0x8f,0x0f,0xc3, +0x18,0x79,0x6d,0x9a,0xfa,0x02,0x1e,0x9e,0xc5,0x3f,0x5e,0xc0, +0xdf,0xd9,0xc2,0x5d,0x54,0xd2,0x43,0x94,0x5f,0xb1,0x06,0xe7, +0x7b,0x58,0xb1,0xc2,0x06,0x16,0xea,0xba,0xa7,0xc8,0x50,0xb1, +0x23,0xcc,0xe0,0xa6,0x6e,0xec,0x14,0xfe,0x72,0x17,0x9e,0x9f, +0x11,0x6d,0xf1,0x26,0xde,0x65,0xb8,0x9e,0xd7,0xf8,0x9a,0xc9, +0xfc,0xd5,0xc6,0xf8,0x58,0xc3,0xab,0x7f,0xc2,0xa1,0x33,0x78, +0xf8,0x09,0x9c,0x3f,0x27,0x2a,0x21,0xea,0x0e,0xca,0x69,0x5a, +0xa3,0x64,0x2e,0xaa,0x73,0x45,0xd6,0x12,0xa2,0xb8,0xcb,0x26, +0x86,0x27,0x79,0xa5,0x5a,0x72,0x53,0x62,0xa6,0x28,0xaf,0x09, +0xe5,0x15,0x3c,0x3c,0x8f,0x7f,0xbc,0x82,0xb7,0xd9,0xa4,0xa3, +0x35,0xf4,0x60,0xe5,0x76,0x4f,0x5e,0xa7,0xa1,0x74,0x9e,0xdf, +0x15,0xe9,0xef,0x54,0x12,0xf0,0xaa,0x26,0x2a,0xfe,0x01,0xf7, +0xcf,0xe0,0xfd,0x3f,0xe0,0xd5,0x39,0xd1,0x09,0xdf,0xe8,0xbd, +0x14,0x72,0xab,0xe2,0xb8,0x93,0x8f,0x54,0x24,0x6f,0x9a,0xd6, +0x79,0xf0,0x4a,0x13,0x15,0x9e,0xc0,0xfd,0x1f,0xf0,0xb7,0x27, +0xf0,0xea,0x3c,0x3d,0x55,0x22,0x9f,0x5a,0x83,0xab,0xb8,0xe3, +0xe7,0xac,0x64,0x1c,0xf9,0x43,0x90,0xf1,0xbe,0x07,0xc3,0x61, +0xef,0xbf,0x66,0x09,0xa2,0x96,0x76,0xcb,0x9a,0x51,0x19,0xa2, +0x2f,0xea,0x2a,0x12,0xb0,0x81,0x68,0xce,0x3e,0x64,0x53,0xc6, +0x60,0x0e,0x57,0xd7,0x49,0xcf,0x6d,0xde,0xff,0x90,0x4e,0x49, +0x8f,0x5f,0x2b,0xd2,0xaf,0xc9,0xc7,0x4f,0x72,0xfb,0x08,0x46, +0xae,0xa5,0x43,0x48,0x59,0xde,0x62,0x0c,0x1c,0x35,0x48,0x64, +0x61,0xb4,0xcc,0x5b,0x24,0x0d,0xe1,0x1f,0x69,0x88,0x62,0xd5, +0x90,0xb6,0x65,0x1a,0x22,0x13,0x13,0x4f,0x14,0xc2,0x09,0x48, +0xb6,0x7e,0x8c,0x36,0x14,0xa5,0xbd,0x55,0x29,0xac,0xb0,0x93, +0x4b,0x4a,0xc1,0x0d,0xa5,0xe8,0xc8,0x9d,0x90,0x95,0x08,0xa9, +0x09,0xb5,0xb8,0x93,0xb7,0x54,0x9f,0x5e,0xbc,0xca,0x6c,0x86, +0xae,0xdc,0x69,0xca,0xc7,0xff,0xd3,0x9e,0x30,0x68,0x09,0x73, +0x35,0xfd,0x85,0x54,0xef,0x86,0x1f,0x20,0x90,0xd4,0x5b,0x41, +0xbb,0x92,0x48,0x24,0x1c,0x69,0xaf,0x57,0xd0,0xf4,0x3b,0x39, +0x62,0xc5,0x4b,0x7d,0xea,0x79,0x11,0xf5,0x52,0x5f,0x98,0x2d, +0x2e,0x29,0x58,0x55,0xec,0xe0,0x2e,0x29,0xf4,0x73,0x71,0xb4, +0x26,0x9c,0xf5,0x3b,0x1f,0x00,0xf0,0x0d,0xa9,0xa7,0x5a,0xd2, +0x5d,0xcc,0xe6,0x16,0x27,0x06,0x1d,0x8a,0x17,0x68,0x82,0x71, +0xd7,0x3f,0x99,0xfc,0x6e,0xb8,0x46,0xa8,0xe6,0x20,0x3e,0xd5, +0xf4,0xdd,0x39,0x22,0x03,0x9a,0x70,0xfb,0x7c,0x66,0x0f,0x1d, +0x8b,0x93,0x34,0xfc,0x43,0xbf,0x79,0xb6,0xe4,0x57,0x7a,0xca, +0x4f,0xb4,0xe1,0x7c,0x26,0x2b,0x9e,0xab,0x4f,0xd0,0xe8,0x8b, +0x92,0x49,0xcc,0x73,0x9a,0xac,0x6b,0xec,0x09,0x0f,0xfe,0x83, +0x1c,0xe7,0x69,0xf2,0xbb,0x44,0x0d,0xdf,0xeb,0xb7,0xcf,0xeb, +0x49,0xc6,0xb7,0x21,0x9c,0xd7,0x97,0x9d,0xf4,0xd2,0xb8,0x5b, +0x12,0x13,0x55,0xf5,0xdb,0xd2,0x4e,0x64,0x9d,0xe4,0x6a,0x98, +0x49,0x08,0x09,0x1d,0xf4,0x4a,0x9a,0x7e,0x3b,0x9b,0xbb,0x25, +0x32,0xb2,0x4e,0xb1,0x81,0x3b,0x8c,0x67,0xff,0x9d,0x10,0x99, +0xc6,0xed,0xac,0x2f,0xc4,0x02,0x4d,0x0f,0x97,0x30,0x55,0xcd, +0x0a,0x53,0xd5,0x0c,0x98,0x52,0xc2,0x4a,0x2a,0x73,0x97,0xfa, +0xf2,0xf6,0x55,0x8f,0xa2,0x62,0x0f,0xb5,0xc4,0x6b,0x98,0x26, +0xec,0xf5,0x1e,0x17,0xf0,0x5f,0xaf,0x0c,0x9c,0x7a,0x49,0x38, +0xa5,0x8a,0xa9,0x62,0x22,0x77,0x72,0xa2,0xc5,0xf4,0x38,0x83, +0xe9,0x62,0xac,0xa6,0xef,0xcf,0x11,0x6b,0xee,0xe9,0xf1,0x10, +0x29,0xf2,0x69,0x51,0xe8,0x28,0xe2,0xb1,0xb9,0x0b,0xb3,0xe7, +0x0e,0xc7,0x18,0xcc,0x15,0x1d,0x34,0x52,0xa2,0x3d,0xe2,0x02, +0xce,0xa5,0xb0,0xae,0x67,0xb6,0x26,0x5a,0x93,0xb0,0xa4,0x48, +0xbc,0x9a,0x3f,0x2b,0xf1,0x9c,0xac,0x21,0xe8,0x3d,0xce,0xf2, +0xba,0x7b,0x99,0x24,0x1c,0xcc,0xcd,0x2d,0x8d,0xd2,0xc7,0xf9, +0xe4,0x07,0x8f,0x87,0xe1,0x90,0x9f,0x87,0xf9,0x10,0x0e,0xf7, +0x2e,0x8a,0x26,0xe2,0x17,0x5e,0x6f,0x18,0x5b,0x80,0xed,0xa5, +0xe7,0x2a,0x0e,0x18,0x2e,0x6b,0x7f,0x72,0x59,0x67,0x37,0x45, +0xa7,0xf9,0xd8,0xc2,0x69,0x02,0x41,0xef,0x95,0x1c,0xbc,0x02, +0x8e,0x70,0x37,0x57,0x34,0x12,0x91,0xfa,0x0e,0x26,0x6a,0x1b, +0xae,0x2c,0x05,0xbc,0xad,0x29,0xa0,0xeb,0x0f,0xb3,0xb4,0xe8, +0xd2,0xa7,0xa5,0x23,0x7b,0x39,0x17,0x2f,0x53,0xa3,0x3b,0xf2, +0xe9,0xc9,0xf4,0x34,0x9e,0x30,0xbc,0x04,0x79,0x35,0x1e,0x3d, +0x1d,0x01,0x15,0x35,0xae,0x86,0x33,0x3c,0x4a,0x0e,0xac,0x65, +0x84,0xd4,0xf1,0xed,0xa4,0xe3,0xfd,0x39,0x5f,0xc6,0xf0,0x5f, +0x86,0x4f,0xca,0x2b,0xef,0x61,0x60,0x53,0x5f,0x73,0x11,0x6e, +0x7f,0x7b,0xe1,0x09,0x23,0x6f,0xed,0x85,0xe2,0x89,0x7b,0x64, +0xde,0x9a,0xa9,0x34,0x6f,0xad,0x98,0x1a,0x05,0x02,0x97,0x9e, +0xe9,0xff,0x24,0xea,0x54,0xc3,0x63,0xa5,0xe7,0xf7,0x4a,0x26, +0xe0,0x48,0x9e,0x67,0x09,0x6b,0x6b,0x78,0x9e,0xe9,0x0c,0x9f, +0xc2,0x6f,0xdc,0xdc,0x86,0x82,0xc4,0xfd,0x0c,0x5f,0x40,0x2c, +0xaf,0x75,0x47,0x9e,0x9d,0x3f,0x28,0x8f,0xf5,0x4f,0xf3,0x10, +0x1b,0x8b,0x60,0x81,0x0c,0x12,0x5f,0x40,0x0c,0xaf,0xfc,0x29, +0x13,0x81,0xd8,0x43,0x83,0x51,0xf8,0x55,0x01,0xdc,0x2c,0xb9, +0xc6,0xf0,0xab,0x7c,0xb8,0x89,0xbb,0x8c,0x13,0xfd,0x8b,0x35, +0x58,0xeb,0x51,0xd2,0xac,0x08,0x7e,0x93,0x19,0x61,0xd4,0x60, +0x00,0xaf,0xd5,0x9f,0x15,0xcf,0xd6,0x8f,0x6b,0x30,0xd1,0x53, +0x2c,0x29,0x84,0x28,0x70,0x31,0x7e,0xf8,0x94,0xd7,0x88,0x60, +0xdc,0xe6,0x22,0x13,0x6b,0x0b,0x61,0x9e,0xb0,0x61,0xd0,0x15, +0xc9,0xa3,0x3b,0x8b,0xbd,0x64,0xc4,0xfa,0x75,0x59,0xc4,0xfa, +0x02,0x5a,0x64,0x32,0xbc,0x82,0xf7,0x64,0xbc,0x5a,0x55,0xfe, +0xff,0x8b,0x4c,0x26,0xaa,0x8b,0x9e,0x5a,0x3c,0xb7,0x9f,0xc3, +0xda,0x39,0xc9,0x12,0xba,0x49,0xff,0x49,0x48,0x54,0x13,0x2e, +0xd6,0xc0,0xf5,0x9e,0x0c,0x5c,0x87,0xc9,0xc0,0x95,0xc4,0xf8, +0x5e,0x83,0xf1,0x9e,0x22,0xbe,0x10,0xbe,0x90,0x0f,0x76,0xe6, +0xa6,0x9f,0xd8,0xaf,0x38,0x5e,0x13,0x4e,0xf2,0xc2,0x8d,0x6c, +0xe3,0x80,0xff,0x3b,0x2f,0x05,0x8f,0xc9,0x03,0xfe,0x4c,0x1e, +0xf0,0x2f,0x59,0x20,0x79,0x06,0xf3,0x4f,0x1a,0xfd,0x17,0x1e, +0xbc,0x46,0x27,0xd9,0xaf,0xfd,0x1a,0xcc,0xf0,0x14,0x5b,0x65, +0x25,0x39,0x6b,0xbf,0x3c,0x65,0x2f,0xca,0x37,0xd3,0x30,0xb0, +0x65,0x17,0xb7,0x7a,0x7f,0x74,0x21,0xb7,0x3d,0xf0,0xe1,0xed, +0x37,0xaf,0x5b,0xdd,0xc6,0x40,0x67,0xe8,0x8f,0xe1,0x5a,0xef, +0xf0,0x50,0xac,0x8b,0x2e,0x61,0xe7,0xcf,0x59,0x56,0xab,0xe7, +0xcf,0x9e,0x03,0x17,0xa8,0xfb,0x43,0xef,0x50,0x8b,0x3d,0xb7, +0xab,0xce,0x44,0x5a,0x21,0xcc,0x94,0x0c,0xdc,0x8b,0xcf,0x30, +0xe1,0x80,0x7e,0x9a,0x3e,0xb1,0x89,0x22,0x66,0xcd,0xe0,0x8c, +0x02,0xc5,0x4f,0xae,0xc3,0x33,0x71,0x44,0xb5,0xd7,0x7b,0x4a, +0xa9,0x9a,0xd3,0xc8,0x5c,0xc2,0xbb,0xfa,0x14,0x6b,0x8c,0xed, +0xf8,0x21,0xc6,0x76,0x94,0x31,0x36,0xbe,0x6d,0xa7,0x89,0xe6, +0x01,0x7a,0x73,0xa5,0x85,0xf8,0x4c,0xdb,0x01,0x4f,0x7d,0x56, +0x4e,0x45,0xfd,0x8b,0x94,0x09,0x29,0x13,0x52,0xcd,0xb3,0x40, +0xf8,0x24,0x6c,0x41,0x9d,0x57,0xcb,0x65,0x81,0x26,0xf2,0x73, +0x3d,0xd2,0x37,0x81,0xad,0x73,0xdc,0x85,0x71,0x09,0xa3,0x12, +0x47,0x24,0x95,0xde,0x9d,0x69,0x96,0xe1,0xf7,0xaa,0x02,0x98, +0x03,0x66,0x8c,0x2f,0xd0,0xf7,0xa8,0xf8,0xba,0x07,0x37,0xfd, +0xc9,0x70,0x2d,0xf6,0x7a,0xf7,0x9a,0xe9,0x2f,0x64,0xd6,0x9e, +0xf9,0x43,0xd6,0x9e,0x19,0x56,0x79,0x97,0x28,0xe4,0x80,0xbb, +0xe9,0x39,0xdc,0xae,0x22,0xc3,0x53,0xda,0x84,0xc4,0x31,0x89, +0x23,0x92,0x37,0x41,0xb2,0x83,0xdf,0xca,0xd9,0x98,0x86,0xe5, +0x13,0x62,0x60,0x95,0x6f,0xfc,0x06,0x4c,0xe3,0x2e,0xc0,0xd2, +0x36,0x80,0xea,0x8c,0xdd,0xf1,0xee,0x3b,0x72,0xb0,0xb4,0x63, +0x0c,0xdb,0x8a,0x2a,0xef,0xe6,0x4a,0xba,0x29,0x92,0xee,0xd0, +0x02,0x7d,0x82,0x0c,0xd8,0xcd,0x32,0x60,0xef,0x6f,0xd0,0x6d, +0x4d,0xea,0xf6,0x99,0xe8,0xa2,0x3d,0xd7,0xe7,0x43,0x94,0xb8, +0x1a,0xa0,0x27,0x34,0x16,0xf3,0xd1,0x5b,0x26,0xb2,0x5c,0x54, +0xec,0x8d,0xd0,0xdd,0x2c,0x43,0xf7,0xa5,0x05,0x30,0x8d,0x28, +0xcc,0x2d,0xd0,0xb7,0x90,0xd0,0xfe,0x48,0xc1,0x5d,0x82,0x70, +0x7a,0x37,0xca,0x1a,0xb9,0x9b,0x65,0xe4,0x1e,0x55,0x00,0xa3, +0xe9,0x91,0xc9,0x05,0x7a,0x2a,0x3d,0x12,0x52,0x7c,0x9a,0xc1, +0x12,0x1c,0xf7,0xee,0x33,0xc9,0x7e,0xb4,0x64,0xbf,0xcf,0x48, +0xfa,0x8b,0xa3,0xa7,0x29,0x70,0x5f,0x6e,0xb0,0x1f,0x28,0x7b, +0x0f,0x15,0x31,0x89,0x9b,0x1e,0x1b,0x12,0x43,0x2a,0x6e,0x28, +0xee,0x27,0x9b,0x4c,0x92,0x4d,0xe2,0x28,0x1e,0x92,0xf1,0xba, +0x59,0xc6,0xeb,0xf1,0x46,0x93,0xde,0xc4,0xfb,0x70,0xd3,0x77, +0xb5,0x8c,0x2a,0x00,0x83,0x60,0xb0,0x34,0x33,0x0a,0xd8,0x77, +0x15,0x82,0x6b,0x07,0x8a,0x93,0x54,0x1c,0x09,0x16,0x69,0x6e, +0x25,0xb6,0x8c,0xfe,0xac,0xf6,0x61,0x4a,0xad,0xb1,0xf7,0x65, +0x6c,0xef,0x0f,0xed,0xc5,0x3c,0xe3,0x85,0xd8,0x3c,0x5f,0x4d, +0xcc,0x0a,0xd0,0x67,0x29,0xc8,0x48,0xff,0xf7,0x00,0x78,0xad, +0x9c,0x20,0x2a,0x60,0xe5,0x84,0x28,0x5d,0xf5,0x8c,0xff,0x46, +0x94,0x37,0x0d,0x19,0x9a,0x1a,0xe9,0xb4,0x32,0xc0,0x04,0x7d, +0x61,0x14,0x4d,0x68,0x3d,0xe7,0xb8,0xec,0xc8,0xf8,0x3e,0x09, +0xa1,0x49,0xc6,0x91,0xfc,0x18,0xec,0xe0,0x0f,0x1d,0x30,0xee, +0x86,0xbe,0x4b,0xc5,0x84,0xde,0xdc,0xec,0xcc,0x84,0xbd,0x3c, +0x2d,0x58,0x48,0x91,0xec,0x4d,0x8a,0xc6,0x79,0x75,0xea,0xdd, +0x62,0xfd,0x3a,0xc3,0x73,0xda,0xd0,0x84,0x7e,0x89,0xbd,0x93, +0x76,0xc0,0x52,0x07,0x2f,0xd2,0x9b,0x55,0xc3,0x53,0x86,0x26, +0x0f,0x95,0x7a,0xb3,0xc6,0x8b,0xf4,0x26,0xcb,0x94,0x3a,0x74, +0xe8,0xa2,0x61,0x06,0xab,0x7e,0x30,0x3a,0x7d,0x3d,0x38,0x3b, +0xe3,0x7e,0xfc,0x99,0xdb,0xfe,0x69,0xcd,0xf9,0x95,0x51,0xfa, +0x40,0xec,0x10,0x0c,0x1d,0x14,0xec,0x04,0x63,0x45,0x3c,0xc3, +0xef,0x84,0xaf,0x8c,0xd3,0x65,0xfc,0xdd,0x85,0xe1,0x34,0xec, +0x10,0x60,0xfd,0x31,0x46,0xf2,0xdb,0xad,0x5f,0x63,0x10,0xed, +0xe0,0xb3,0x32,0x0a,0xe3,0xd1,0x8b,0x41,0xb2,0x37,0x71,0x89, +0x2b,0xe3,0x12,0x88,0xbf,0xb0,0x75,0x92,0x05,0xa0,0x2d,0xaf, +0x72,0x9b,0xf1,0x5a,0x13,0x18,0x54,0xae,0xcf,0xeb,0xd4,0x27, +0xc1,0xdb,0x51,0xc7,0x0c,0xc1,0xe3,0x65,0x87,0xa2,0x71,0x11, +0x57,0x4e,0xc9,0x48,0x3b,0x55,0xbb,0xa1,0xaf,0x77,0xff,0xdf, +0x31,0x02,0x47,0xdc,0xc4,0x4d,0x8b,0x18,0xb7,0x6b,0xf4,0xbf, +0x14,0xb5,0x73,0x33,0x5e,0x79,0x05,0xe3,0x95,0x12,0x99,0xa8, +0x82,0xbe,0x5c,0xd9,0x6e,0x84,0x6f,0xeb,0xf0,0x17,0x0d,0x2b, +0x04,0x40,0x05,0xd1,0xc7,0xb8,0xd9,0xb0,0xb5,0x8f,0x26,0x9a, +0x05,0xe8,0xcd,0x94,0x26,0xc2,0x83,0x4c,0xf4,0x85,0x1f,0x0d, +0xf5,0xbb,0x89,0x64,0xa2,0x5f,0xc8,0xa1,0x7e,0xef,0x17,0xbf, +0x05,0x8b,0x4d,0xa9,0xa3,0x46,0x2d,0x1a,0x6d,0x0c,0x75,0x5b, +0xf0,0xca,0x90,0x66,0x1a,0x7f,0x61,0x4c,0xfc,0x88,0xc4,0xc8, +0x44,0x79,0xc5,0x61,0x16,0x13,0x2a,0xce,0xd7,0x02,0xc8,0x33, +0x9d,0x7b,0x4d,0x5f,0xe5,0x8b,0x53,0xd4,0x66,0xf0,0x19,0xb7, +0x8b,0x65,0xb8,0xbf,0xb8,0x02,0x83,0xf9,0x0e,0xdd,0xc8,0xf2, +0x52,0xeb,0x26,0xce,0x83,0xa5,0x7e,0xf1,0xeb,0xe4,0x5d,0x35, +0x99,0xf2,0x6a,0x36,0x69,0xc0,0x32,0x9d,0x4e,0xd5,0x5b,0x69, +0x14,0xf8,0x63,0x91,0x75,0x17,0x80,0x1a,0xfb,0x19,0x8d,0x4f, +0x69,0xe3,0x13,0x3f,0x4f,0x1c,0x9a,0xb4,0x19,0x52,0xc8,0x76, +0x67,0x61,0xba,0x6b,0x22,0x99,0xae,0x5f,0xfc,0x7a,0x4c,0x33, +0x8d,0x19,0x93,0x3a,0xd6,0x69,0x65,0x90,0x09,0xda,0x83,0x2f, +0xd9,0xb0,0xe2,0x8c,0xdd,0x0c,0x1b,0xa6,0xf8,0x7b,0x5c,0x81, +0x22,0x54,0xd8,0x68,0xc8,0x33,0xe8,0x9a,0xde,0x97,0x3b,0xd8, +0x30,0xec,0x22,0xba,0x58,0xf7,0x0b,0xb6,0x48,0x7b,0x24,0x79, +0x67,0xf2,0xda,0xb4,0xc8,0xc5,0x1b,0x16,0xf9,0xee,0xb1,0xec, +0xc1,0x64,0x5e,0x9b,0xbc,0xeb,0xa5,0x86,0x01,0x96,0x26,0xd7, +0xa9,0xf0,0xd6,0x20,0x33,0xed,0x9a,0xbe,0xfc,0xff,0xae,0x5b, +0x60,0x63,0xb5,0xcc,0xc6,0x72,0x67,0x42,0x12,0xb8,0x60,0x10, +0x98,0x7c,0x4d,0x8f,0xf7,0xc5,0xb1,0xaa,0xbc,0x8a,0xd5,0x8e, +0xf0,0x7c,0xa7,0x24,0x30,0xdb,0x20,0x10,0x2f,0x09,0x24,0xf9, +0x25,0xac,0x23,0xbf,0xb7,0x6a,0x4b,0x9a,0x39,0xc5,0xf9,0x88, +0x34,0x56,0xeb,0x56,0xc1,0x24,0x6c,0x1d,0x40,0xb1,0x98,0xd9, +0xf8,0x10,0x8e,0x86,0x11,0x26,0xfa,0x69,0x22,0x2a,0x40,0x8f, +0x52,0x50,0x15,0x61,0x64,0x84,0xff,0x92,0x46,0xc8,0x46,0xa6, +0x0c,0x4f,0x1e,0x91,0x6a,0x8e,0xd2,0xab,0x7a,0x25,0xec,0x10, +0xcc,0x94,0x1a,0x19,0x99,0x3a,0xcc,0xb8,0x84,0xaa,0x37,0x0c, +0x27,0x4b,0xb4,0x90,0x25,0x0e,0x8b,0x1f,0x90,0xd8,0x27,0xd1, +0xb0,0x44,0x33,0xb6,0x0f,0x94,0xc7,0x63,0xad,0x1f,0x9d,0x0d, +0x83,0xdc,0x42,0x06,0xe9,0xcd,0xf0,0x09,0x76,0xff,0x60,0x90, +0x6e,0xd8,0x3e,0x80,0x7e,0xaf,0x66,0x3c,0xa6,0x60,0x3f,0xb8, +0xc5,0xed,0xae,0xb2,0x9d,0x78,0x49,0x1b,0x45,0xb3,0x3f,0x20, +0x79,0x1b,0xa4,0x39,0x78,0xaf,0x9c,0x8e,0xeb,0x87,0xa7,0x8c, +0x48,0x19,0x96,0x6a,0x9e,0x0d,0x9b,0xbc,0x12,0x36,0xe3,0x5a, +0x53,0xea,0x88,0x11,0xa9,0x23,0x49,0x19,0x4d,0xe0,0x0f,0x11, +0x64,0x9d,0x9a,0x33,0x2e,0xa5,0xa0,0xee,0x63,0xeb,0xb4,0xc1, +0xf6,0xa1,0xd0,0xbe,0xa1,0xf1,0xaf,0x24,0xfd,0x5d,0x89,0x1d, +0xc3,0x54,0xd1,0x55,0xee,0xba,0xf3,0x4a,0x61,0xb2,0xe2,0x78, +0x45,0xc3,0xd6,0xb4,0x9b,0x0c,0xda,0x36,0x35,0x6c,0x8d,0xbe, +0x06,0x2f,0x5c,0xfb,0xc1,0x32,0x6a,0x61,0xfb,0x20,0x92,0xaf, +0x3c,0xb7,0xc9,0x63,0x90,0x23,0x65,0xdb,0x81,0x07,0xb8,0xcd, +0x09,0x39,0x3d,0x3e,0x2b,0xa6,0xd3,0xa4,0xd8,0xe4,0xd2,0xa4, +0xfa,0x24,0x6c,0xc2,0x54,0x5e,0xad,0x13,0x83,0xfe,0xe9,0x1b, +0x48,0x96,0x61,0xad,0xa5,0x6d,0x48,0x7b,0x58,0x8b,0x73,0xc9, +0x1e,0x82,0xc8,0xe9,0xfe,0xc4,0xf8,0x10,0xe5,0xc4,0x4e,0xd6, +0xd4,0x5b,0x13,0x8d,0x03,0xf5,0xc6,0x4a,0x23,0xd1,0x5d,0xfb, +0x06,0xfe,0x26,0xa3,0x10,0xe5,0x27,0xa5,0x4c,0x4c,0x99,0x48, +0x46,0xa1,0x9b,0xfc,0x12,0xb6,0x88,0xf2,0x72,0xdd,0x22,0xfd, +0x6b,0x0d,0xee,0x64,0x10,0xaa,0x73,0xdc,0xb9,0xb1,0x09,0x23, +0x12,0x22,0x93,0x8c,0x92,0x02,0xc2,0x46,0x8f,0xd7,0x82,0x89, +0xa6,0xc9,0x4a,0x7a,0xc1,0x95,0x62,0xa5,0x3b,0xb6,0x54,0xdd, +0x1e,0x69,0xa2,0x51,0x90,0xde,0x48,0xd9,0x40,0xf0,0x36,0x21, +0x61,0x54,0xd2,0x88,0xa4,0x4d,0x04,0x6f,0x72,0x61,0xfa,0x72, +0x5c,0xca,0x98,0x94,0xb1,0xa9,0xe6,0x18,0x58,0xe3,0x97,0xb0, +0x1e,0x57,0x99,0x52,0xc7,0x8e,0x59,0x24,0x55,0x9c,0xdb,0xfc, +0xce,0xd0,0x1d,0x6f,0x92,0x72,0xb7,0x25,0xe5,0xce,0x57,0x84, +0x0d,0x3c,0xd4,0xc2,0xa0,0x42,0x33,0xac,0x40,0xff,0x62,0xf5, +0x2b,0x7a,0xdf,0xee,0xc8,0x54,0x37,0x9a,0x99,0x0a,0x0c,0xbf, +0xd4,0xbe,0x30,0xe8,0x6e,0x80,0x71,0x0e,0xdd,0x57,0xce,0x21, +0xe8,0x28,0x97,0x30,0x0f,0x66,0xf5,0x48,0x58,0x8b,0xd3,0xb8, +0xfa,0x3d,0x5b,0x0f,0x36,0xce,0xb4,0xc8,0x75,0x22,0x6b,0x28, +0x9e,0x2e,0xdf,0xd2,0xa7,0xe6,0xd3,0xea,0x23,0x6c,0xb0,0x91, +0xd6,0x1b,0x2a,0xb8,0x61,0x05,0xfa,0x17,0x6b,0x5e,0xd1,0xa3, +0xba,0xa3,0xa3,0xea,0xf6,0x3b,0xaf,0xdc,0x49,0xde,0x8f,0x39, +0x8a,0x6c,0x82,0xdb,0x4c,0x93,0x1d,0xf3,0xd1,0x42,0x68,0xf9, +0xa9,0x80,0x15,0x83,0xe9,0x83,0xff,0xa4,0x2f,0xef,0x86,0xae, +0xaa,0x2b,0x77,0x78,0x46,0x78,0x88,0x0b,0xa5,0xee,0x17,0xaf, +0x28,0x8e,0xd4,0x4a,0x3e,0xf1,0x2f,0xfe,0x44,0xc1,0xdd,0xe2, +0x1e,0xf9,0x69,0x70,0x28,0x0f,0xdb,0xaa,0xbb,0x21,0xba,0x6b, +0xda,0x64,0x5c,0x68,0xc2,0x08,0x65,0x32,0x2c,0x74,0x8f,0xdb, +0x8d,0xd1,0x26,0x6c,0x1b,0x00,0x87,0x70,0x94,0x50,0x8c,0xd7, +0x63,0xf6,0xc5,0x8b,0x8a,0xe7,0x6a,0x25,0x4a,0x40,0xb1,0xa2, +0xe0,0x76,0x61,0xd2,0x9e,0xc0,0xde,0x1c,0x6c,0xaa,0x72,0x17, +0x3b,0x06,0x7b,0x9b,0x59,0x2f,0x3a,0x54,0x4a,0x2f,0x3a,0xa4, +0x67,0x67,0xd2,0xb3,0xfe,0xd6,0x67,0x5d,0xb4,0xbf,0x61,0x2f, +0xb7,0xf4,0xa5,0xe7,0x5c,0xca,0x9e,0xab,0x88,0xf5,0xe4,0xcd, +0x85,0x1e,0xc6,0x65,0x2b,0xb2,0x8c,0xf1,0x65,0xe3,0xb6,0x42, +0x59,0xc6,0xd8,0x7c,0x56,0xee,0xca,0xc4,0x6a,0xc2,0xfd,0x8d, +0x17,0x1e,0x34,0x5e,0xa1,0x3d,0x22,0xb7,0x6b,0x87,0x4c,0x71, +0xab,0x20,0x53,0xdc,0x88,0xfa,0xbc,0xe2,0x2a,0xcc,0x90,0xe2, +0x71,0x99,0x14,0x8c,0xa8,0x37,0x17,0xca,0x1d,0x56,0x76,0x1f, +0xa1,0x91,0xc6,0xe6,0x08,0x8b,0x0d,0x26,0x80,0x6f,0x4b,0x12, +0x64,0x42,0x1b,0xde,0x05,0xd0,0x44,0x6c,0xa0,0x1e,0xab,0xe0, +0x38,0x11,0xaf,0x81,0x17,0x4c,0xcd,0xa1,0x39,0xfa,0x06,0xfa, +0xca,0xa5,0x6c,0xb0,0x09,0x9d,0x95,0xa9,0x30,0xd8,0x2b,0xfe, +0x1b,0xec,0x6b,0x42,0x35,0x08,0xc6,0xa0,0xaf,0x92,0xf4,0x59, +0xa7,0xd4,0x2e,0xc6,0x55,0x82,0xad,0xe3,0x1a,0x97,0x66,0xb0, +0xe1,0x03,0xd8,0xc2,0x4d,0x6d,0xd9,0x19,0xfc,0x83,0xdb,0x4d, +0x62,0x7f,0xc1,0xf8,0x6c,0x34,0xa9,0xbc,0x3a,0x39,0x5f,0x5c, +0x99,0x06,0x2d,0xbc,0x16,0x7e,0x8d,0xf5,0x49,0xc9,0x82,0x61, +0x84,0x8b,0x92,0xf4,0x69,0x87,0xd4,0x4e,0xf2,0x86,0x41,0x99, +0xb9,0x45,0x2d,0x47,0xf3,0x2a,0x35,0xcb,0x2e,0xe2,0xa3,0xb0, +0x7c,0x58,0x4f,0x4d,0xc4,0x05,0xea,0x71,0x0a,0x8e,0x17,0x49, +0x1a,0xf8,0x42,0x54,0x0e,0x56,0xfa,0x48,0x24,0x17,0x29,0x92, +0xa7,0x55,0x24,0xdb,0x20,0x98,0x80,0xdd,0x15,0x6e,0x59,0xce, +0xec,0x53,0x19,0x4e,0xd6,0x75,0x6e,0x97,0xcf,0x7e,0xc2,0x37, +0xdc,0x4e,0x65,0xa0,0xc0,0x04,0x29,0xc6,0x76,0x68,0xe4,0x95, +0x3e,0x0d,0x5b,0x9b,0xb0,0x0e,0xc9,0xd2,0xda,0x6b,0xe1,0x76, +0x6c,0x64,0xc8,0x32,0x12,0xed,0x94,0xe4,0x2e,0x9d,0x52,0x3b, +0x7f,0xb8,0xe3,0xed,0x23,0x95,0x48,0x27,0xd5,0xc7,0xb6,0xca, +0x6e,0x98,0x2a,0x95,0x21,0xda,0xaa,0x0c,0xd1,0xee,0x71,0xbb, +0x70,0xaa,0x09,0xdb,0x04,0x14,0xbb,0x29,0x58,0x0f,0x27,0x6b, +0xd0,0xd5,0x0b,0xbb,0xe2,0x34,0xeb,0xc7,0x54,0x57,0x66,0xff, +0xf1,0x6c,0x3b,0x88,0xfa,0x1a,0xd8,0x40,0x5d,0x63,0xba,0xeb, +0x12,0x90,0xcc,0x34,0xe6,0x5b,0xac,0x02,0x1b,0x8d,0x04,0xb7, +0xc1,0x09,0x8a,0x8b,0x71,0x67,0xd9,0x70,0x71,0x9d,0x95,0xa4, +0xb3,0x06,0xf8,0x9a,0x66,0x9f,0x57,0x7a,0xce,0xe0,0x3a,0xc5, +0xfe,0xc3,0x59,0xd9,0xe4,0x3a,0x08,0x5b,0xed,0x19,0xd4,0xcd, +0xa5,0xc9,0xfd,0x1a,0x5a,0x7b,0xa4,0x4d,0xc3,0x4f,0xc5,0xb7, +0x0c,0x3e,0xf5,0x88,0xfb,0x5a,0xf6,0xab,0x49,0x20,0xd4,0x6d, +0x8c,0x33,0xad,0x6f,0x6e,0x57,0x3d,0x23,0xda,0x8d,0x89,0x34, +0x38,0xe1,0x16,0x9a,0x7b,0x5e,0xff,0x6b,0x86,0x4b,0x34,0x6c, +0xa9,0xec,0x82,0xc0,0xae,0x69,0x53,0xb0,0x8f,0xec,0xcb,0x14, +0xe8,0xd3,0x95,0xfa,0x12,0x68,0xc2,0x16,0x01,0xc5,0x5c,0xb9, +0x87,0x36,0xdc,0xb5,0x0f,0xe3,0x4e,0x43,0x18,0x36,0x97,0xb7, +0x9d,0x11,0xe7,0x59,0xdc,0xe6,0x15,0x93,0xbb,0xa8,0xcd,0x94, +0x6f,0xa0,0x93,0x7b,0x5a,0x14,0x7a,0x9a,0x70,0xb0,0x12,0x05, +0x9e,0xee,0x71,0xdf,0x60,0x27,0x13,0x36,0x0d,0x14,0x07,0x58, +0x33,0x59,0x9a,0x54,0x77,0x61,0xd8,0x58,0xde,0x3b,0xb6,0x48, +0x9f,0xc9,0x70,0xe5,0x63,0xc5,0xfe,0xfd,0x54,0x86,0x0d,0xde, +0xdf,0x66,0x6d,0xff,0xa9,0x58,0x6a,0x7c,0xc5,0x6b,0x7f,0xf7, +0xcf,0xd3,0x1f,0xdd,0x52,0xf6,0xe0,0x9f,0xf2,0xa5,0x8e,0x37, +0xff,0xb3,0x7c,0xa9,0xe3,0x8d,0xff,0xbc,0xa4,0xac,0x94,0x4c, +0xd9,0x25,0x65,0xdd,0x30,0x51,0x16,0x50,0x94,0x97,0x94,0xe1, +0x04,0x0a,0x97,0xa3,0x03,0xf4,0x68,0x9a,0xc5,0x51,0x1a,0xaa, +0xca,0xd7,0xd0,0xd2,0x93,0x06,0xad,0xa3,0x54,0xe8,0x69,0xd0, +0xd1,0x93,0x86,0xad,0xa5,0x09,0x6d,0x82,0xf4,0xc5,0x4a,0x36, +0x5a,0xe4,0x6d,0x64,0xdc,0xf6,0x24,0x0b,0x2d,0xd4,0x9f,0x7a, +0x8a,0x39,0x2a,0x36,0xd2,0x47,0x68,0x62,0x52,0x6f,0x7d,0x12, +0xb7,0x79,0xc6,0xb6,0x41,0x65,0xef,0x74,0x6e,0xaa,0xc1,0x66, +0x80,0xe6,0xbd,0x70,0x2b,0x56,0x36,0xb9,0x84,0x49,0x83,0x39, +0x8a,0xc7,0xb8,0xf6,0x8d,0xd4,0xd8,0xcf,0x23,0x34,0x31,0x27, +0x40,0x9f,0xa3,0xa4,0xe1,0x68,0x2b,0xb7,0x16,0x92,0x5b,0x07, +0x13,0x5a,0x88,0x5b,0x07,0xc9,0xad,0x05,0x71,0x0b,0xd4,0x17, +0x29,0x67,0x3e,0x93,0x57,0x7f,0x59,0x2f,0xfa,0xc2,0x09,0xc5, +0xb6,0xd2,0x68,0xd2,0xb0,0xb7,0x86,0x36,0xca,0x76,0x70,0xf1, +0xa6,0x56,0x8d,0xac,0x6a,0xda,0xc8,0x3b,0x6e,0x3b,0xba,0x98, +0xb0,0x7c,0x28,0x90,0x5b,0x70,0x44,0xbb,0x0e,0x4e,0x7a,0x5b, +0x86,0x79,0x1a,0x34,0xf5,0xc0,0x8e,0xf2,0x4a,0x5c,0x5a,0x9d, +0x8a,0x47,0xb2,0xe5,0xf2,0xc8,0xb1,0x4a,0x3a,0xd3,0x82,0x05, +0x62,0x23,0xe3,0x32,0xaf,0x6a,0x07,0x68,0x00,0xf4,0x37,0xdc, +0x29,0x8f,0xe1,0x05,0x6a,0xd8,0x14,0x5b,0xb3,0x69,0xd8,0x1c, +0x67,0x2c,0xc0,0xf1,0x9b,0xe5,0x0d,0x5e,0x49,0x10,0x65,0xd5, +0x8a,0x45,0x56,0xad,0x08,0x90,0x5a,0x11,0x6e,0xd5,0x8a,0x70, +0xa9,0x15,0x01,0x1f,0xb4,0xa2,0x3c,0x77,0x59,0xf4,0x8f,0x2e, +0x4c,0xb6,0xea,0x42,0x47,0xa9,0x0b,0x1e,0x56,0x5d,0xf0,0x90, +0xba,0xd0,0xb1,0x54,0x17,0x68,0xb5,0x7a,0xc6,0xe4,0x34,0xbb, +0x7d,0x6a,0x5c,0xb9,0x45,0x33,0x2f,0x6f,0xd8,0x92,0x13,0xd5, +0x30,0x8a,0x35,0xfd,0xe8,0x96,0xad,0x3f,0x3e,0x4c,0x37,0x11, +0x8f,0x29,0x19,0xc0,0x70,0x0c,0xaf,0xb3,0x9c,0x95,0x4c,0xec, +0xc4,0x2b,0x8d,0xb7,0x36,0xf8,0xaf,0x37,0x6f,0x3d,0xc5,0x64, +0xa3,0x42,0xed,0x8a,0xe2,0x21,0x5a,0x49,0x8d,0x5e,0xc5,0x35, +0x68,0xb8,0x0b,0xac,0x26,0x1a,0xeb,0xbe,0x72,0x12,0x26,0x99, +0xb0,0x9f,0x32,0x09,0x92,0xdc,0xe3,0x77,0x63,0x2c,0xe1,0xb5, +0x7f,0xb1,0xab,0x52,0x12,0x85,0x83,0x8c,0xbc,0x8f,0x45,0xc5, +0x51,0x46,0x0f,0x66,0x59,0x7b,0xd0,0xd5,0x3d,0x6d,0x2a,0xfa, +0x99,0x70,0x20,0x61,0x89,0x9f,0xec,0x41,0xd7,0xd2,0x1e,0x34, +0xb5,0x1e,0xcf,0x6c,0x4c,0x70,0xfc,0xbe,0x36,0xeb,0x68,0xbd, +0xff,0x0a,0xc8,0x28,0xf5,0x4d,0x0c,0x47,0xbf,0x8b,0x64,0xed, +0xb4,0xe6,0xff,0x6d,0x95,0x4b,0x5e,0xf9,0x3c,0x6b,0xaf,0xb9, +0x1a,0x09,0xc9,0x56,0xc3,0x9d,0x2b,0x7b,0x35,0x9e,0xd7,0xe9, +0xc4,0xda,0xc8,0x32,0x95,0x1f,0x13,0xf8,0x5f,0x94,0xab,0x24, +0x35,0x1b,0x59,0x06,0x8c,0x69,0xb8,0x46,0x43,0x46,0xdd,0xe8, +0xe7,0x49,0xdd,0x88,0xb4,0x42,0x62,0xa4,0x27,0x75,0xa3,0x9f, +0x84,0x44,0x3d,0x5d,0x11,0xdf,0x61,0x67,0x79,0x77,0xd5,0x7b, +0x8a,0x1f,0x66,0xe8,0x5f,0x72,0xb5,0x12,0xf3,0x7b,0xff,0x82, +0xa1,0x53,0x53,0xe8,0x41,0x0b,0x64,0x21,0x2b,0xa9,0x81,0x4e, +0x9a,0x1e,0x73,0x51,0xc4,0x28,0xb3,0x44,0xbe,0x06,0x03,0x61, +0x3c,0xf9,0x5e,0x6e,0xe4,0x7b,0x0d,0x49,0xe8,0x27,0xa3,0xa0, +0x3d,0xf0,0xd6,0x6b,0xe5,0x78,0x51,0x8e,0x62,0x99,0x94,0x48, +0xe9,0xae,0x99,0x3c,0xc9,0x5d,0x2b,0x67,0x4a,0x1d,0x12,0x49, +0x81,0x93,0x3d,0x45,0x0d,0x31,0x14,0x35,0xec,0x72,0x57,0x88, +0x52,0x65,0x4d,0x9f,0x97,0x27,0xe6,0x11,0xa5,0x20,0x0d,0x06, +0xc3,0x04,0x72,0xa3,0x28,0x9e,0xba,0x30,0x34,0xb1,0x7f,0x42, +0xef,0x64,0xf3,0x0e,0x58,0xe8,0x4d,0xc8,0xbd,0x64,0x70,0xca, +0xa0,0x94,0x81,0xa9,0xe6,0x99,0xb0,0x5c,0x86,0x01,0x8b,0x28, +0x0c,0x88,0x4c,0x1d,0xea,0x54,0x3c,0x1b,0x9b,0x6b,0xf2,0x64, +0x49,0x22,0x66,0x16,0xca,0x4d,0xcd,0x92,0x66,0x37,0x8a,0x9b, +0xa9,0x25,0x91,0x3d,0x78,0x35,0x5a,0xb4,0xea,0x68,0x2b,0x03, +0x78,0xb5,0x04,0x16,0x97,0x3d,0x34,0xa1,0x7f,0x62,0x98,0xa4, +0xb6,0xc4,0x73,0xe5,0x14,0xfc,0x72,0x48,0x0a,0xd1,0x93,0xd4, +0xd6,0x78,0x26,0x6c,0x35,0xa2,0xac,0xc8,0x45,0x43,0x9d,0x20, +0x86,0xa2,0x03,0x72,0xdc,0x44,0x32,0x8c,0xf1,0xc0,0x69,0x2e, +0x4c,0x6e,0x50,0x8d,0xb8,0xa1,0x8f,0x20,0x82,0x83,0xb5,0x60, +0x7d,0x5e,0xb6,0x2a,0x56,0xe1,0x6f,0x1a,0xaf,0x56,0x91,0xc5, +0x9d,0x1d,0x9a,0x18,0x41,0x81,0x9b,0x79,0x3b,0x44,0xfa,0xae, +0x88,0xc2,0x31,0x83,0x52,0x22,0x92,0x07,0x48,0xd7,0xf0,0x0b, +0x5f,0x72,0xc3,0xc6,0x18,0x71,0x0a,0x91,0x9c,0x27,0xb6,0x68, +0xfa,0xf6,0x4b,0x62,0xf1,0x4b,0x5e,0xbd,0x05,0x6b,0x28,0xa6, +0x63,0x77,0x2b,0xdd,0xb5,0x45,0xfa,0x5a,0xb5,0x64,0x48,0x1f, +0x43,0x50,0x93,0x46,0x3e,0x24,0xaf,0x32,0x9e,0x51,0xac,0x33, +0x88,0xab,0xa4,0xff,0x09,0x62,0xba,0xa6,0x27,0xc3,0x3d,0x71, +0x0c,0x77,0xd1,0xba,0xdd,0x25,0x4f,0x13,0x75,0x61,0x98,0x5e, +0xd7,0xd8,0xb9,0x8d,0x2f,0xd2,0xe3,0xa9,0xed,0x00,0x2d,0x50, +0x9f,0x97,0x2b,0x65,0x7a,0x6f,0xb4,0x77,0x5d,0xc7,0xc2,0x92, +0xcc,0x5f,0xc3,0x74,0x6e,0x89,0x67,0x90,0x28,0x37,0x07,0x93, +0x00,0x3c,0x51,0x5e,0xa7,0x65,0xe3,0x85,0xe7,0x88,0xce,0x67, +0x17,0xe5,0x96,0x96,0x6d,0xe9,0x96,0xd6,0x2b,0x82,0x91,0x69, +0xfa,0x11,0x4d,0xcc,0x0b,0xd0,0xe7,0x29,0x07,0xf1,0xb0,0x66, +0x1d,0x75,0x1a,0x74,0x87,0xff,0x61,0xd4,0x79,0x35,0x1b,0x36, +0xca,0x1a,0xff,0x35,0x63,0x62,0xfd,0x0d,0x05,0xa7,0xeb,0x63, +0x3f,0x10,0xd9,0xcd,0xed,0x62,0x64,0xe0,0x26,0x09,0xc4,0x0f, +0x96,0x9d,0x91,0xfe,0xb1,0x9c,0xd8,0x75,0x34,0xb1,0xa0,0xfc, +0x13,0xf1,0xc9,0xd9,0xb7,0xfb,0x30,0xfb,0x3e,0x9a,0x1c,0x80, +0xb2,0x36,0xfa,0xe7,0x22,0x41,0x83,0x90,0x47,0xb7,0xdf,0xbc, +0x6e,0x71,0x1b,0x43,0x30,0xb4,0x45,0x17,0xb7,0x7a,0x8f,0xba, +0x40,0xa8,0x73,0x8e,0x0d,0xba,0x85,0x9e,0x3f,0xe7,0xbc,0x5a, +0x3d,0x7f,0xfe,0x1c,0xb8,0x81,0xeb,0xb9,0xde,0xa1,0x96,0x39, +0x6a,0xef,0xde,0xa1,0xe8,0x6a,0x91,0x15,0x88,0x5a,0x6a,0x58, +0x17,0x74,0x8f,0x12,0xbd,0x48,0x0f,0x87,0xba,0x8a,0xf0,0xd6, +0xed,0x78,0xed,0x66,0x1f,0x97,0xcf,0x3c,0x5f,0x04,0xc9,0xb2, +0x04,0x65,0x08,0x1c,0xe5,0xda,0x59,0x59,0xe9,0x71,0x82,0x06, +0x27,0x8d,0x0a,0x99,0x39,0xc6,0x09,0xcb,0x10,0xd8,0xc4,0xb5, +0xae,0xc6,0xa9,0xcb,0x79,0x45,0x30,0xa4,0xf4,0xbb,0x91,0xdc, +0xf4,0x94,0xbd,0x21,0x41,0xf5,0x29,0x30,0xd6,0x28,0x0d,0xd8, +0x51,0x96,0x06,0x94,0xf5,0x31,0xe5,0x8f,0x35,0x9a,0xfe,0xf3, +0xe7,0x37,0xff,0x94,0xc4,0xdc,0xc0,0x24,0xa3,0x43,0xc5,0x85, +0xec,0x80,0x88,0xb5,0x6e,0x95,0x9d,0x95,0x5b,0x65,0x7e,0x1f, +0x2a,0x62,0x7e,0x55,0x04,0x13,0xad,0xe2,0x7c,0x5b,0xb2,0x9c, +0xe9,0xcb,0xf1,0xa6,0x26,0xf8,0x2b,0x6f,0xfc,0xd6,0xd8,0x27, +0xfb,0x95,0x1c,0xb6,0xcd,0x36,0x82,0xff,0xad,0xf3,0xd2,0x3a, +0x98,0x21,0x90,0xc0,0x6b,0x9c,0xfa,0xa7,0x98,0xe5,0x85,0x22, +0xc8,0x2c,0x15,0x71,0x12,0xb1,0x81,0x4b,0xb2,0x38,0x69,0x60, +0x4b,0xef,0xa6,0x8d,0xff,0xf0,0x36,0xb6,0xc5,0x0a,0x9e,0xfd, +0xd9,0xaa,0xc0,0xba,0x2d,0xe6,0xa7,0xf5,0x0b,0x8f,0x30,0xb6, +0xc5,0x4e,0x4a,0x90,0x38,0x75,0xf6,0xa4,0xb1,0x2d,0x16,0xd1, +0xcf,0x62,0x95,0x65,0x4d,0x11,0x4c,0xfe,0x47,0x96,0xdd,0x78, +0x54,0xd3,0x27,0xb6,0x56,0xc4,0xac,0x99,0x69,0x01,0xfa,0xe4, +0xad,0x26,0xac,0x74,0x1d,0xee,0xca,0x9d,0x31,0xa3,0xf6,0x65, +0x08,0x0c,0xe3,0x35,0xc6,0xb3,0xe2,0x28,0x19,0xc4,0xbd,0xc1, +0x5a,0xf0,0xc0,0xbb,0xe4,0x6a,0x81,0xee,0x05,0xb5,0x44,0x84, +0xbc,0x77,0x45,0xb4,0xed,0xce,0xab,0x4f,0x64,0xf8,0x1e,0x3d, +0x35,0xa8,0x9e,0xa8,0xf4,0x9f,0x34,0xb9,0x4f,0x67,0x47,0xac, +0x79,0xc3,0xf7,0xcd,0xdb,0x1b,0xd7,0xa0,0xe6,0x9d,0x49,0x67, +0xfa,0x6f,0xb7,0x2c,0x87,0x4a,0xd9,0xa2,0xbf,0x0a,0x8f,0x30, +0x9e,0xbb,0x2c,0x61,0xc5,0x53,0x25,0xb5,0x2c,0xa2,0x96,0xe2, +0x29,0xbe,0x2d,0x84,0x39,0x50,0x0b,0xe3,0x0b,0xb9,0x53,0x39, +0x86,0x87,0x56,0x68,0xeb,0xd4,0xcb,0x27,0x76,0xe7,0xe4,0x9c, +0x1c,0xdb,0xc3,0x32,0x4b,0xed,0x11,0x31,0x2e,0x28,0x68,0xc0, +0xae,0xcb,0x96,0x4b,0x78,0x9c,0xdb,0xfe,0xc1,0xf4,0x97,0x7a, +0x27,0x8d,0x1e,0xbf,0x56,0x58,0xdc,0xd2,0x13,0xf7,0x11,0x89, +0x2d,0x9e,0x25,0x76,0x85,0x0a,0x8e,0xd0,0x9f,0x73,0x9b,0x19, +0x0c,0xcf,0x6a,0xb9,0x53,0x8f,0x0e,0xd8,0x4a,0x2c,0xcb,0xe5, +0x8a,0xa0,0x40,0xa8,0x9a,0xa8,0x46,0x4c,0x9d,0x3a,0x28,0xd0, +0xb1,0x51,0x51,0xaf,0xbf,0xfe,0x2a,0xba,0xf4,0xdc,0x82,0x87, +0x96,0x71,0xa7,0xa5,0x92,0xd2,0x10,0x49,0x69,0x41,0xa1,0x7e, +0xc4,0x93,0xbb,0xce,0x62,0x92,0xc6,0x72,0x48,0x90,0x32,0xbc, +0x9b,0xc4,0xc0,0x83,0x57,0x19,0x45,0x21,0x5b,0x4d,0x06,0xed, +0xc5,0x12,0xae,0x36,0x2f,0x95,0x7a,0x31,0xb1,0x9c,0xe7,0x29, +0x36,0x15,0xc2,0xec,0xd2,0xc6,0xaa,0x68,0x35,0xfe,0x43,0xb3, +0xdf,0x79,0x15,0x67,0xc6,0x6b,0xbe,0x61,0xfa,0x0d,0x5e,0xf9, +0x27,0xc9,0x24,0x42,0x32,0xd9,0x51,0xa8,0x3f,0xf0,0xc4,0x95, +0xd4,0x36,0xde,0x53,0xec,0x30,0xc4,0x5d,0x6a,0x88,0x7b,0x4a, +0xcb,0x99,0x7a,0x64,0xc0,0x16,0xcb,0x0a,0x5e,0x83,0x31,0x43, +0xd4,0xc1,0x41,0x8e,0x8d,0x8b,0xfc,0x49,0xd4,0x8b,0xcf,0x48, +0xd4,0xe5,0xbc,0x96,0xc7,0x7f,0x2b,0x2a,0x77,0x4a,0x60,0x70, +0x98,0x9a,0xbd,0x93,0x3f,0x0f,0x96,0x3f,0x27,0x17,0xea,0xa7, +0x3d,0x29,0x3a,0xad,0x05,0xb1,0x9e,0x22,0xd3,0x60,0x12,0xff, +0x41,0x30,0x9d,0x56,0xa0,0x05,0xf2,0xd1,0x68,0xf9,0x68,0x74, +0xa1,0x9e,0xe1,0x89,0x93,0xe9,0xd1,0xe1,0x9e,0x62,0xa4,0xf1, +0xe8,0xa0,0x12,0x57,0x06,0xf3,0x30,0x49,0xcc,0xf8,0xbf,0x78, +0x2a,0x55,0x4c,0x63,0xc5,0xff,0xd2,0xe7,0x68,0x17,0xb1,0x0e, +0x4c,0x90,0x86,0x08,0xbf,0x40,0x1d,0xf9,0x9f,0x70,0x15,0x0f, +0x40,0x8c,0xb4,0x46,0xa3,0x40,0xe7,0x79,0xf8,0x5c,0x9a,0x19, +0xaf,0x46,0xba,0xf4,0xbe,0x10,0xc6,0x83,0x25,0x0f,0x2d,0xc0, +0x55,0xfa,0xc1,0x4f,0x6a,0xb8,0xac,0xae,0x79,0xa1,0x10,0xba, +0xb4,0x93,0x8f,0x76,0xff,0xff,0xa1,0xda,0xc5,0x33,0xe4,0xec, +0x8c,0x41,0x27,0x88,0x90,0x1a,0x0a,0xe7,0xc9,0xbb,0xbd,0x5b, +0x20,0x35,0xb4,0xfd,0xff,0x07,0x0d,0xd5,0xaf,0xe0,0x7c,0x99, +0xb3,0xe3,0x84,0x43,0x54,0x51,0x21,0x51,0x2a,0x2b,0xaf,0xbe, +0x90,0xdc,0xd2,0x7c,0xfd,0x88,0x0f,0xaf,0x9a,0x43,0x23,0x3f, +0x54,0x8e,0x7c,0xb1,0x33,0xf8,0x69,0x68,0x41,0x0e,0x16,0x95, +0x42,0x53,0x0f,0x39,0x0d,0xd6,0x22,0xa0,0x8d,0xb0,0x41,0x00, +0x34,0x10,0xf5,0x8d,0x1d,0x8e,0xeb,0x03,0x34,0xdc,0xdb,0x0b, +0xf6,0x2a,0x13,0x30,0x44,0x5b,0x01,0x8d,0x72,0xc5,0xce,0x40, +0x68,0x95,0xa0,0xf2,0xfa,0x84,0x9f,0xea,0xc3,0x1b,0x60,0xfe, +0x75,0xfc,0xf9,0x90,0xaf,0x2d,0x6b,0xb0,0xa7,0xd6,0xa6,0xf7, +0x00,0x4f,0x8f,0xb0,0x13,0xbf,0x5b,0x0e,0xa8,0x0f,0xcf,0x1c, +0xbb,0x79,0xf3,0xcc,0xa0,0x56,0x16,0xb9,0xc1,0x71,0x0f,0x1b, +0x06,0x40,0x43,0xfc,0xec,0x86,0x7e,0x41,0xc5,0x9f,0xa3,0x50, +0x67,0xd9,0xf8,0xbd,0x76,0x6e,0xd2,0x91,0xd0,0xcd,0x96,0x15, +0xd0,0x30,0x57,0xec,0x09,0x84,0xa6,0x09,0xdc,0x69,0x0e,0xdb, +0xc7,0x5d,0xc9,0x8d,0xc8,0xd6,0x3d,0x35,0x7f,0x6a,0xb0,0xe6, +0x46,0x71,0x6b,0x77,0x7c,0xac,0x62,0x26,0x5c,0xa6,0x46,0x97, +0xf0,0x92,0x96,0x37,0xf1,0x78,0xf0,0x56,0x6a,0xd4,0xc4,0x68, +0xd4,0x32,0x51,0x0d,0x9a,0x32,0x71,0x40,0x80,0x63,0xb3,0x3b, +0xdd,0xa1,0x06,0xd4,0xb8,0x7d,0xe5,0x89,0x05,0x9f,0xac,0xd5, +0x0a,0xcf,0x1c,0x28,0xb0,0xac,0x51,0x0a,0xce,0x0c,0xf7,0xf4, +0x0c,0x1f,0xe6,0xe3,0x1c,0xad,0xf8,0x84,0x1f,0x2c,0x74,0x26, +0x8b,0x0f,0x21,0xb8,0xf6,0xc0,0x41,0xb2,0x82,0xa2,0x16,0xc4, +0xc0,0x81,0x57,0x49,0x67,0x24,0xe1,0x29,0x6c,0xc8,0xab,0xe7, +0x30,0x92,0x6e,0x0e,0x05,0x73,0xac,0xab,0xe8,0x0e,0xdb,0x18, +0x92,0x33,0xfa,0xc9,0x0d,0x3d,0x9a,0x2b,0xa1,0x4c,0x77,0xc0, +0x75,0xdc,0x74,0x97,0x5a,0x05,0xb2,0x3c,0x5e,0x65,0xb7,0x14, +0x32,0x42,0x0b,0x22,0x21,0xeb,0x15,0xe9,0xab,0x3d,0xf0,0x27, +0x15,0x57,0xc0,0xf7,0xbc,0xfa,0x1a,0x79,0x02,0xe4,0xf4,0xe4, +0x03,0x61,0x1b,0x2d,0x2b,0xc1,0x2d,0x47,0xec,0x09,0x82,0xc6, +0xbc,0xaa,0x0f,0xbb,0x7d,0xe1,0x9e,0x05,0xff,0x5c,0xa3,0x5d, +0x3a,0xbd,0xbb,0x80,0xdb,0x6f,0x62,0xfa,0x1e,0x5e,0x27,0x58, +0x12,0xe9,0xae,0xc9,0xa1,0x99,0x62,0x14,0x20,0xbd,0x2f,0x89, +0x64,0x1b,0xc3,0x73,0xaa,0x74,0x78,0x96,0x97,0x0d,0x4f,0xa2, +0x1c,0x1e,0xbd,0x01,0x37,0x6f,0xa5,0xe9,0x2c,0x61,0xe8,0x5d, +0xa4,0x5f,0xe0,0xb5,0xe6,0x33,0x78,0xc0,0x2b,0x2f,0x64,0xc5, +0x43,0xd8,0x0f,0xdc,0x79,0x85,0xb5,0x53,0x1a,0xb7,0xb4,0x30, +0x84,0x6f,0x77,0x43,0x5f,0x2d,0x85,0x87,0x61,0xb8,0x0a,0xe6, +0xb3,0xe2,0x59,0x46,0x39,0x70,0x99,0xfa,0x85,0x6b,0xc8,0xed, +0xe8,0x12,0x70,0x5b,0x38,0x58,0x53,0x8b,0x3a,0xf6,0xd5,0x30, +0x2d,0x10,0xd2,0x94,0x2f,0x48,0x41,0x97,0x83,0x5d,0xb6,0x08, +0x0d,0x86,0x6a,0x89,0xea,0x80,0x89,0x53,0xfa,0x92,0xa6,0x69, +0xd7,0xfd,0x5e,0xff,0x55,0x78,0x15,0xb4,0x3b,0x93,0xcf,0x44, +0x90,0xa6,0xa1,0xaf,0xd6,0x65,0x48,0x64,0x60,0x50,0xe4,0xe1, +0xdb,0x96,0x93,0xea,0x9d,0x83,0x07,0xf3,0x2e,0x1d,0x1c,0xd6, +0x99,0x34,0x58,0x62,0xac,0x38,0x7f,0x5d,0x3f,0xaf,0xe2,0x0b, +0xbc,0xad,0x05,0xde,0xc3,0x8e,0xf9,0xfa,0xb7,0x3e,0xf8,0xa3, +0x8a,0x2d,0xe0,0xa8,0x86,0x99,0x01,0x90,0x49,0xab,0xef,0x51, +0xed,0x42,0xd4,0xe1,0x41,0x5b,0x2c,0xcb,0xdf,0xe4,0x08,0x9f, +0x20,0xa8,0x94,0xa8,0x0e,0x9a,0x1a,0x15,0x19,0xe2,0xd8,0xfc, +0x7a,0xe0,0xcb,0x97,0x05,0xb9,0x8f,0x2d,0xb8,0xd3,0x00,0xd1, +0xa3,0xbb,0x2f,0x9c,0x3f,0x66,0x05,0xd1,0x41,0xe3,0x42,0x43, +0x06,0x13,0x88,0xfe,0x68,0x05,0x51,0x5a,0xc5,0x5a,0x5e,0x97, +0xef,0xa0,0x0a,0xb5,0x80,0x7b,0x38,0x3f,0xbf,0xd8,0xce,0x07, +0xef,0xa9,0xd8,0x5a,0x26,0x87,0x1b,0x4c,0x8e,0x48,0x18,0x8d, +0x3a,0x3a,0x88,0x60,0xf4,0x4d,0xae,0xf0,0x09,0x84,0xca,0x89, +0xea,0xc0,0xa9,0x51,0x12,0x45,0xaf,0xf7,0x22,0x26,0x12,0x45, +0x77,0x2e,0xd3,0x36,0xa8,0xd7,0x8e,0xee,0x21,0x26,0xa3,0x7d, +0x2d,0x33,0x54,0xdf,0x41,0x63,0x88,0xc9,0xb7,0xd7,0x2c,0xd0, +0x4c,0xb8,0x6b,0x10,0xe4,0x81,0x03,0x28,0x0a,0x39,0x2c,0xab, +0x56,0xd4,0xbc,0xc7,0xa0,0x83,0x58,0x6c,0x80,0xa8,0xd1,0xc9, +0x23,0xd7,0x09,0x36,0xa9,0x93,0x05,0xbc,0x56,0x35,0xf6,0xc0, +0x0a,0x99,0x3f,0x32,0xfd,0xa6,0x84,0xcc,0xa6,0x4c,0x3c,0x30, +0x84,0x5b,0x27,0x47,0xa0,0x4d,0xbe,0xbe,0xa3,0x74,0x04,0xf6, +0x7d,0x18,0x81,0x53,0x5a,0x36,0x09,0x47,0xa0,0x69,0x1d,0x81, +0xca,0x09,0x52,0xb8,0x21,0x84,0x9b,0xd7,0xfd,0x49,0x38,0x89, +0x9b,0x3b,0x97,0x6b,0xeb,0xd5,0xab,0x47,0xbf,0x25,0xe1,0xc6, +0xf8,0x59,0x66,0x92,0x70,0x63,0x49,0xb8,0xdd,0xd7,0x2c,0x7a, +0x10,0x37,0x6f,0x91,0x3c,0x8e,0x18,0x3c,0x66,0x95,0xf2,0xd8, +0xc4,0x5d,0x37,0xc8,0xbc,0xe0,0x03,0x5a,0x8b,0xeb,0x41,0x44, +0x23,0xe7,0xd1,0xf9,0xa8,0x83,0x83,0xc9,0xc0,0xfe,0xca,0x16, +0x3e,0xc1,0x50,0x29,0x41,0x1d,0x34,0x2d,0x6a,0x68,0xa8,0x23, +0xec,0x5a,0xa1,0xf5,0x1c,0x3c,0x3e,0x24,0x64,0xf0,0xce,0x1f, +0x2d,0xbc,0xda,0x50,0xa6,0x57,0xe4,0x35,0xc7,0x4b,0x7a,0xa7, +0x0d,0x7a,0xb1,0x92,0x1e,0x81,0x45,0xa6,0x0f,0x5e,0x90,0x32, +0x1f,0x20,0x99,0x03,0x0d,0x99,0x0f,0x68,0xdc,0xe5,0x36,0x2b, +0xa3,0x6e,0xcc,0x91,0x6c,0x3f,0x5b,0xfd,0x40,0x4e,0xaf,0x24, +0x11,0x9a,0xd7,0x3c,0xc5,0x0c,0x78,0x25,0xc3,0x3a,0x69,0x60, +0x09,0x3a,0x5b,0x3f,0x2e,0x14,0x49,0xdd,0xfb,0x83,0x20,0x65, +0xb7,0x3f,0xec,0x56,0x44,0x13,0xf4,0xd7,0xa0,0x61,0x82,0x12, +0x3a,0x71,0x7c,0x68,0x7b,0x47,0x34,0x3f,0x70,0x07,0x15,0xd4, +0xdf,0x0d,0x50,0x39,0xd7,0x7b,0x07,0xd9,0xb9,0x43,0xae,0x58, +0xa1,0xea,0x9c,0x82,0xfb,0x36,0xe1,0x03,0x3c,0x3d,0x4b,0xc1, +0xe5,0xf4,0xb1,0x9b,0x37,0x4e,0x97,0x82,0x4b,0x3f,0xa3,0xce, +0x2a,0xaa,0xd6,0x8f,0x9a,0x06,0xc6,0x3c,0x8b,0xd2,0x70,0x83, +0x3f,0x6c,0x50,0xf2,0x24,0xce,0x4c,0x3e,0xdc,0x7b,0x33,0x59, +0x63,0xb5,0x5c,0x91,0x12,0x08,0x96,0x78,0xee,0x14,0xc3,0x8e, +0x18,0x38,0x63,0x2d,0xd6,0x2a,0x9b,0x55,0x2f,0x2d,0xd6,0xba, +0x49,0xf7,0xd0,0x70,0xad,0x3f,0xac,0x55,0x4a,0xc1,0x26,0x44, +0x82,0x4d,0x4d,0xa3,0x65,0xbd,0x44,0x35,0xc4,0x0a,0x36,0xb7, +0xba,0x43,0x35,0xa8,0x66,0x80,0xcd,0xef,0x04,0x36,0xa7,0x0e, +0xe4,0x13,0xd8,0x5c,0x3b,0x4d,0x60,0xd3,0x77,0x98,0x2f,0x81, +0x8d,0x6f,0x5f,0x09,0x36,0xfc,0x63,0xb0,0xa9,0x79,0x91,0x81, +0x45,0x82,0x0d,0xaf,0x79,0x84,0xfd,0x24,0x01,0x84,0xc2,0x8b, +0xa5,0x9a,0x81,0x1d,0xfe,0x06,0x73,0x17,0xa3,0x5e,0xab,0x82, +0x1b,0x74,0x67,0x7c,0xc0,0xf2,0xac,0x30,0x12,0x2e,0x61,0xc4, +0x3e,0x47,0xa4,0x04,0x01,0x8f,0x57,0xc3,0xa7,0x4f,0x1e,0xde, +0xd7,0xb1,0xe3,0xad,0x10,0x83,0xbd,0x44,0x94,0x07,0x6b,0xb5, +0x8b,0xbc,0x7a,0x30,0xf3,0xf7,0xef,0x3b,0xda,0xcf,0x79,0xba, +0xd2,0xad,0xef,0x9e,0x8b,0xce,0xfa,0x41,0x9c,0xc6,0xeb,0xec, +0xfc,0xa8,0xb2,0xf1,0x00,0x6b,0x49,0x5a,0xfb,0x0f,0x2c,0xda, +0x7e,0x18,0x1f,0x02,0x1a,0x5e,0xfd,0x06,0xb3,0x8e,0x4d,0x82, +0x1c,0x1b,0xbd,0x99,0x04,0x19,0x6a,0x3c,0x99,0x1a,0x1f,0xe5, +0x96,0x38,0x86,0x4f,0xf1,0xb8,0xd6,0xee,0x56,0xa0,0xc1,0x36, +0xf7,0xfe,0x59,0xd9,0xc0,0x90,0xc9,0x92,0xa0,0x86,0x45,0x4d, +0x8a,0x0c,0x73,0x84,0xb1,0xed,0xb5,0x59,0x8a,0x5f,0x9f,0xbd, +0x97,0xaf,0x9c,0xde,0x7b,0x8d,0xfc,0xc9,0xe1,0x4c,0x6f,0xcb, +0x59,0x81,0x24,0x33,0x82,0xc8,0x5c,0xf0,0xc0,0x30,0xab,0x0c, +0x36,0xa5,0x23,0xbd,0x41,0x6f,0x8c,0xb5,0xa9,0x9b,0xc7,0x49, +0xa9,0x66,0xb0,0x7f,0x88,0x1b,0x7d,0x92,0x44,0x2c,0x92,0x88, +0x95,0xa6,0x33,0xfc,0x69,0x80,0xdc,0x0c,0x03,0xbf,0xe4,0x8a, +0x88,0xab,0xf1,0xae,0xd6,0x3c,0xf0,0x31,0xda,0xcb,0x7f,0x36, +0x89,0x9d,0x0c,0xbb,0xf6,0xd3,0x70,0x59,0x00,0x2c,0x53,0x26, +0x12,0x3a,0xad,0x80,0x8a,0xd9,0xa2,0x5b,0x30,0x54,0x89,0x57, +0x07,0x4e,0x9a,0x22,0x17,0xcb,0x5a,0x05,0x7e,0xaf,0x5e,0x17, +0x5c,0x85,0x5a,0x77,0xa7,0x9c,0x19,0xb0,0xdd,0xb2,0x94,0x70, +0xae,0xf3,0xd0,0xa1,0x41,0x21,0x91,0x87,0xee,0x10,0x84,0xdd, +0x3d,0x70,0x28,0x37,0xef,0xc0,0xd0,0x4f,0x2d,0xf6,0x04,0x2c, +0xad,0xc9,0x0e,0xde,0xea,0x35,0xb5,0x90,0xc7,0x0d,0x9a,0x05, +0x3f,0x41,0xd7,0x6b,0xc5,0xf6,0xbe,0xb8,0x59,0xc5,0x4e,0x90, +0xac,0x61,0x46,0x00,0x64,0x28,0x07,0xf0,0x07,0x2d,0x67,0xfa, +0xd1,0x21,0xa4,0x1c,0xcf,0x73,0x44,0xfb,0x20,0x50,0x12,0xd4, +0x21,0x53,0xa6,0x91,0xdf,0xd3,0xe8,0x5a,0xaf,0xe7,0xcf,0xae, +0x49,0x70,0xd9,0x68,0x80,0xcb,0xe1,0x3d,0x67,0xcf,0x1e,0xb6, +0x82,0x4b,0xe4,0x98,0xb0,0xb0,0x48,0x09,0x2e,0x8d,0x29,0x80, +0x83,0x60,0x0f,0x1c,0xa8,0xd6,0x2d,0x45,0x17,0xce,0x19,0xae, +0xd7,0xce,0x4c,0xdf,0x1f,0x49,0xf3,0xfd,0xec,0xac,0x68,0x1f, +0x06,0x36,0xf1,0x6a,0xe4,0xb4,0xe9,0x23,0xfb,0x38,0x76,0xb8, +0x16,0x4a,0x14,0xcf,0xff,0x62,0xc1,0xcd,0x2b,0xb5,0x35,0x6a, +0xee,0x91,0x1d,0xe7,0xce,0x1d,0xfe,0x22,0xd0,0x12,0xad,0x06, +0x46,0x4e,0xec,0xdd,0x7b,0xc8,0xd7,0xb9,0x16,0x68,0x27,0x96, +0x4a,0x64,0x12,0x8f,0x19,0xbe,0xc5,0x65,0x5a,0xe8,0xe3,0x36, +0xcd,0x42,0x9f,0xf4,0xbe,0xa6,0x27,0x71,0xd7,0xaa,0x0c,0x77, +0x68,0x67,0xa7,0x1f,0x1c,0x42,0x48,0xf0,0xfc,0x9c,0x68,0xdf, +0x1b,0x4c,0xf1,0xea,0x90,0x69,0xd3,0x87,0x85,0x39,0xb6,0xb9, +0x16,0x4c,0x94,0xb3,0x7f,0xb7,0xe0,0x26,0x49,0xf9,0xd2,0xe1, +0x9d,0xe7,0xce,0x1e,0x19,0xdf,0x8b,0x28,0xf7,0x1a,0x32,0x3e, +0xac,0x77,0xe4,0xce,0x4b,0x16,0xbd,0x10,0x7f,0xe2,0x75,0x1e, +0x33,0xfd,0x55,0x71,0xac,0x86,0xd7,0xfc,0xe1,0x9a,0x82,0x55, +0x4a,0xca,0x69,0xe0,0xa2,0x42,0x87,0x8c,0xdc,0xeb,0x37,0x1d, +0x7f,0x98,0x72,0xd2,0x73,0x1b,0x2d,0x53,0xfd,0xf2,0x4a,0x06, +0x05,0x40,0xbf,0x44,0xd5,0x73,0xd2,0x94,0x01,0xe1,0x8e,0x5d, +0x73,0xbd,0xa0,0xc3,0x02,0x0b,0xba,0x44,0x32,0x21,0x2f,0x12, +0xbf,0x7c,0xea,0x04,0xa8,0x96,0xdd,0x0a,0xa8,0xa7,0x06,0xf4, +0xe8,0xd9,0x6f,0x00,0xaa,0xce,0x63,0x15,0x54,0xfb,0x9d,0xf8, +0xd1,0xd9,0x5e,0xcf,0x63,0x58,0x59,0x0c,0xd2,0xae,0xa8,0xd0, +0x36,0x2d,0xe7,0x5c,0x9e,0xe3,0xa1,0x69,0x7b,0x79,0xdd,0xdd, +0xe4,0x4b,0xf6,0x9c,0x3e,0x6d,0xd4,0x50,0xc7,0x80,0xdc,0x50, +0x68,0x1b,0x6f,0xe9,0x2e,0x8b,0xe1,0x8a,0xdf,0x60,0xbc,0x76, +0xe2,0xf8,0x5e,0xb0,0xb1,0x1c,0x55,0xc0,0xe6,0xf8,0xa8,0x01, +0x11,0x03,0x47,0xa1,0x8d,0xf3,0x60,0x05,0x6d,0x06,0xee,0x3d, +0xe9,0x4c,0x61,0x64,0x3b,0x59,0x2c,0x37,0xa8,0x10,0x52,0x8d, +0xf4,0xc2,0x97,0xc5,0x4b,0x51,0x93,0xf4,0x27,0x6a,0xf9,0x06, +0xfd,0x0b,0x3f,0x3a,0x1e,0x9e,0xb6,0xaf,0xc7,0x46,0xb2,0xeb, +0xc0,0xec,0x92,0xbe,0xc1,0x10,0x98,0xa0,0xf6,0x98,0x3e,0x6d, +0x64,0xa4,0x63,0xcf,0xdc,0x10,0x68,0x1b,0x67,0xf1,0x91,0x69, +0x87,0xe2,0x3e,0x44,0x69,0xa7,0x8e,0x7f,0x47,0x7c,0x0e,0x4b, +0x3e,0x9f,0xf7,0xeb,0x37,0x70,0x24,0xf1,0x89,0x94,0x7c,0xf6, +0x9d,0x72,0x1e,0x87,0xcf,0x79,0xbd,0xd1,0x8c,0x57,0xb2,0x67, +0x93,0xc4,0x72,0x19,0xc2,0xf6,0x11,0xf9,0xbc,0x7a,0x2e,0x53, +0x68,0x4e,0x0f,0x5e,0x10,0x1b,0x15,0x7b,0x11,0xc5,0x06,0x88, +0x07,0xda,0xc2,0x87,0x30,0x06,0xfa,0xe1,0x5e,0x6e,0x57,0x89, +0x29,0xef,0xfa,0x30,0xb8,0xff,0x40,0xe3,0x36,0xe9,0x0c,0xf7, +0xf1,0xea,0x09,0x4c,0x16,0x44,0xaa,0xc2,0x5c,0xc5,0x19,0x6e, +0xef,0xc4,0x8a,0x07,0x31,0xbd,0x9e,0x68,0xc9,0xd5,0x2a,0xe4, +0x1f,0x48,0x99,0xfb,0x69,0x3f,0x19,0x32,0x9f,0xcd,0x35,0xc6, +0xa4,0xfe,0x0c,0xeb,0x98,0x8c,0x1e,0xea,0x18,0x98,0xdb,0x5b, +0x8e,0x49,0x37,0x23,0x45,0xf1,0x37,0x18,0xab,0x9d,0x38,0xb6, +0x17,0x4c,0x72,0x4c,0x4c,0xc7,0x46,0x0d,0x18,0x30,0x68,0x14, +0x9a,0xe4,0x98,0x98,0x06,0xed,0x3d,0xe1,0x0c,0x63,0x44,0x04, +0x57,0xda,0x32,0xc9,0x09,0xfc,0x65,0x49,0xa2,0x0c,0x43,0xf0, +0x59,0xa4,0x35,0x55,0x2e,0x31,0x0a,0x46,0x1b,0x68,0xc8,0xf5, +0x8a,0x9e,0x25,0x7a,0xa1,0xde,0x13,0xb8,0x22,0x7a,0xe8,0x4e, +0xdc,0xd4,0x8e,0xb9,0x89,0xd3,0x1a,0xa8,0x2a,0x94,0xcb,0xb8, +0x7c,0xfe,0xb6,0xe3,0xd9,0x89,0x87,0x0d,0x7f,0xcd,0x2d,0x5b, +0x7c,0x1b,0x0c,0x8d,0x13,0xd4,0x10,0xc3,0xf4,0x3f,0xfb,0x31, +0xf4,0x4d,0xac,0x05,0x2b,0xa9,0xc9,0x9d,0x3b,0xa6,0x7c,0xca, +0xdd,0x5a,0xb2,0x1c,0x9f,0xf9,0x6d,0xe2,0x9a,0x26,0x9a,0xd1, +0x1b,0x76,0xf1,0xfa,0x83,0x58,0xf7,0xf0,0x51,0x5e,0xce,0x33, +0x14,0xef,0xb0,0xbd,0x57,0x9c,0x65,0xe8,0x3b,0x4f,0x16,0xdf, +0xdd,0xe9,0x29,0x1e,0x17,0xc2,0x4a,0x59,0x71,0xb6,0x17,0xfc, +0xae,0xe1,0xea,0x10,0x58,0xad,0x40,0x1b,0xf1,0x19,0xb7,0x9b, +0xcc,0xae,0xa8,0xaf,0xd3,0x2f,0x1e,0xbf,0xcc,0xab,0xce,0x62, +0x12,0x63,0xfa,0xce,0x9c,0x3a,0x7a,0x90,0x63,0xf7,0x8b,0x03, +0xff,0x5a,0x68,0xf1,0x53,0x93,0x3a,0xb5,0x4b,0xed,0x60,0xbc, +0x4d,0x1b,0x03,0x53,0xb3,0xb6,0x40,0x73,0x67,0xa2,0x90,0xcc, +0xab,0x0c,0x64,0x4b,0x44,0x13,0x59,0x66,0x77,0xd8,0x75,0x58, +0x23,0xcb,0xec,0x16,0xc7,0xea,0x43,0x35,0xc8,0xf5,0x2c,0xe9, +0x56,0x08,0x57,0x8d,0x63,0xde,0xbd,0xa4,0x0f,0xb2,0x3a,0x58, +0x72,0xea,0x26,0x82,0x35,0xf7,0xf9,0x4d,0xe2,0xea,0x25,0xd8, +0xe6,0xab,0xaf,0x33,0x2e,0x7e,0x9f,0xef,0x78,0x72,0xca,0xbe, +0x3e,0x12,0x6f,0x1d,0xcf,0x89,0xb5,0xbd,0xc1,0x39,0x5e,0xed, +0x3b,0x7d,0xca,0xc8,0x08,0x47,0x9f,0x8b,0xfd,0x88,0xaf,0x27, +0xaf,0x9b,0xcb,0xc4,0x60,0x48,0xd7,0x72,0x4e,0xed,0xfa,0xc9, +0xb2,0x55,0xb9,0xfa,0x3d,0x85,0x75,0xfd,0xc6,0x75,0x73,0x9e, +0xf2,0xff,0xb0,0xf6,0xde,0x71,0x55,0x5c,0xcf,0xdf,0xb8,0x89, +0xb0,0x8b,0x23,0x5c,0xeb,0x22,0x5c,0x0e,0xd5,0x82,0xb1,0x6b, +0xec,0x0d,0x51,0x8a,0x85,0x2e,0x2a,0xf6,0x5e,0x13,0x7b,0xc3, +0xde,0xb0,0x46,0x13,0x7b,0x37,0xc6,0xa8,0x29,0x96,0x18,0x8d, +0xbd,0x60,0x05,0xb1,0x0b,0x08,0x1a,0x4b,0x7a,0x4c,0xd4,0x24, +0xb6,0x98,0x59,0x98,0x73,0x6f,0x7e,0x73,0xf6,0xa2,0x31,0x9f, +0xcf,0xf7,0xfb,0x3c,0xcf,0x1f,0xbf,0x57,0x5e,0xf1,0x2e,0x7b, +0xe6,0xcc,0x29,0x7b,0xce,0xcc,0x7b,0xce,0xec,0xce,0x68,0xd1, +0x9d,0x77,0x65,0x05,0x3e,0xa4,0xe7,0x46,0x18,0xb5,0x56,0xd1, +0x76,0x85,0x9b,0x13,0xe4,0x67,0xf9,0x38,0x94,0xd5,0x97,0x6a, +0x74,0x05,0x9d,0x81,0x9f,0xe5,0x12,0x83,0x8d,0xea,0x2e,0xf2, +0x52,0x92,0x99,0xd6,0x54,0x4e,0xa7,0xca,0x6c,0x37,0xef,0xcc, +0x90,0xab,0x35,0x35,0x25,0x4b,0xd5,0x94,0xac,0x6b,0x25,0xb3, +0xd4,0xab,0x23,0xd6,0x94,0xe4,0x0b,0x38,0xc5,0x56,0xb6,0xac, +0x63,0xc8,0x9a,0xbf,0xb4,0xa1,0x25,0x56,0x18,0xde,0x53,0x0c, +0xd5,0xe6,0xbf,0x0c,0xc3,0xcb,0xc3,0x9b,0x6e,0xf0,0x3c,0x3a, +0x8c,0x7c,0x4c,0x2f,0x1a,0xde,0xb6,0x7f,0x26,0xb2,0x99,0x9a, +0xc8,0xab,0xff,0xfb,0x44,0x46,0xfd,0xcf,0x13,0x39,0x5f,0x4d, +0x24,0xde,0xe5,0xd9,0x99,0x30,0x75,0xae,0x8a,0x10,0xbb,0xea, +0xcb,0xa3,0xf6,0xad,0xad,0x26,0xea,0x0d,0xbb,0xa4,0xd0,0xc2, +0xfa,0x01,0x5f,0x76,0x44,0x9f,0x13,0xdf,0xec,0x3b,0xf1,0x95, +0xef,0xe2,0xc5,0xeb,0xad,0x08,0xb1,0xbe,0xb8,0x95,0xca,0xef, +0x39,0x47,0xcb,0x51,0x4f,0x5d,0x31,0x73,0xe1,0x64,0x95,0x4c, +0xbb,0x1c,0xaf,0xe0,0x71,0x72,0xb0,0x31,0x7d,0xa6,0x95,0xbf, +0x6a,0xe5,0x17,0x87,0xed,0x9f,0x46,0x8e,0xd3,0xc3,0x86,0xf7, +0xa8,0xd6,0x2e,0x20,0xe8,0xde,0xf4,0x95,0x33,0xde,0x9b,0x46, +0xbe,0xb0,0x7b,0xe5,0x9e,0x43,0xf6,0x6d,0x91,0x13,0xf4,0xa6, +0x7d,0x93,0xc9,0xaf,0x51,0xc0,0x91,0x6e,0x02,0xbc,0x60,0xd9, +0x2a,0x95,0x52,0xb3,0x3a,0xd9,0x7c,0x72,0x78,0xa7,0xef,0xd8, +0xb3,0x6a,0xf9,0xca,0x85,0x56,0x3a,0xcb,0xe2,0x2a,0x91,0x4e, +0xa5,0x67,0x2a,0xeb,0x9a,0x4a,0x36,0xcf,0x13,0x30,0xc7,0xc0, +0x4f,0xac,0x85,0xb4,0x46,0x94,0xcb,0x00,0x3c,0x4d,0xd7,0x0d, +0x4a,0xac,0xd5,0xbe,0x6e,0xed,0x5f,0xdb,0x63,0x22,0x26,0xfc, +0x7a,0xf9,0x97,0x9f,0x6b,0x5d,0xa6,0x04,0x95,0xf0,0xa4,0xa1, +0xd1,0x3d,0xb1,0x17,0x55,0xa6,0x2a,0x89,0x87,0x8f,0xa9,0xd0, +0x6e,0x19,0x47,0xb0,0x0a,0x56,0xce,0xe8,0xd9,0x9d,0x61,0xab, +0xf5,0x85,0xfc,0x53,0x2a,0x8b,0x3f,0x44,0x3a,0xb2,0xb3,0xcd, +0x08,0x2c,0x2b,0x7b,0x58,0x9f,0xc9,0x37,0xea,0xa5,0x0c,0xaf, +0x50,0xb9,0xc5,0x78,0xa6,0x3f,0x5c,0x95,0x71,0x36,0xdf,0x7e, +0x6a,0xcc,0x81,0x14,0x25,0x3b,0x18,0x22,0xf7,0x8d,0x47,0xdb, +0x5c,0x3d,0x65,0xfc,0x98,0xbe,0x9d,0xed,0xad,0x32,0x92,0x1f, +0xcc,0x0c,0x08,0xd2,0x17,0x44,0x47,0x2e,0x8c,0xf6,0x5b,0x16, +0xe3,0x8e,0x11,0x18,0xbb,0x66,0x2b,0x96,0x0b,0x9c,0x73,0x3e, +0x71,0x66,0xf8,0x9c,0xe6,0xbc,0x1d,0x6a,0xe0,0x7a,0xe3,0xd2, +0x91,0x2f,0x2e,0x04,0x6c,0xd6,0x2e,0x1c,0x1d,0xd2,0xa1,0x5d, +0x8f,0x21,0xb1,0x81,0x13,0xb5,0xb8,0x1e,0x5f,0xb0,0x0c,0x14, +0x81,0x3d,0x41,0xd6,0x65,0xd8,0xb2,0x28,0x01,0x17,0x69,0x7f, +0xca,0x1a,0xc2,0xed,0x18,0x5c,0x13,0xe2,0x18,0x44,0xe8,0xf3, +0xdb,0x46,0x2e,0x62,0x9e,0xf1,0xce,0xf7,0x80,0x0a,0x71,0xb6, +0x28,0xf5,0x0b,0x74,0xee,0x3d,0x22,0x9e,0xd5,0x7d,0x7c,0xaf, +0xcf,0x4e,0x05,0x5e,0x91,0x41,0xa2,0x72,0x73,0xb6,0x55,0x4f, +0x00,0x8d,0x52,0x61,0x23,0x17,0xc5,0x5b,0x2c,0x9a,0x75,0x84, +0x1b,0xfa,0x2f,0x2b,0x33,0x8e,0x5d,0xb6,0x1f,0x1e,0xbf,0xa7, +0xc7,0x66,0xee,0x74,0xb1,0xb3,0xb2,0x73,0x47,0xa5,0xac,0x7a, +0x4c,0x1c,0x3f,0xb8,0x97,0xbd,0xfd,0xd9,0xee,0xbf,0xcc,0x0e, +0x68,0x29,0xdc,0x5b,0x43,0x9c,0x62,0x5e,0x80,0x8b,0x8d,0x33, +0x07,0x3f,0xcb,0x0a,0xf8,0x48,0xcb,0x3a,0x34,0x22,0x39,0xb9, +0x17,0x37,0x32,0x41,0x8b,0xef,0xfd,0xd9,0x99,0x40,0xac,0x2c, +0x97,0x89,0x90,0x61,0x20,0xf4,0x3c,0xe5,0x83,0x3a,0xf9,0xaa, +0xa3,0xb5,0xb7,0x41,0xb6,0xea,0x66,0xb8,0xbe,0xa0,0xad,0x35, +0xf4,0xa2,0x6e,0xce,0x55,0xdd,0xec,0xd4,0x7b,0xa4,0xab,0x9b, +0x9f,0x9e,0x0e,0x34,0xa3,0x65,0xb8,0xf0,0x2d,0xe4,0x7e,0x1e, +0x52,0x1c,0x8e,0x8a,0xf2,0x73,0xc1,0x2c,0x49,0xe7,0x85,0x7d, +0x9c,0x72,0x30,0x5c,0xee,0xaf,0x24,0x4e,0xa8,0x3c,0x6d,0xa0, +0x87,0xfe,0xd7,0xea,0x2b,0x19,0xb7,0x95,0xc0,0x49,0x50,0x02, +0xa7,0xea,0x79,0x79,0x30,0x1e,0x6b,0x28,0x81,0x33,0x82,0x05, +0x4e,0xb3,0x6b,0x89,0x58,0x6c,0x96,0x25,0x71,0x1a,0xd7,0x5f, +0xd8,0x48,0x7d,0xe0,0x8d,0xef,0xe2,0x44,0x5e,0xc0,0x75,0x03, +0xe7,0x64,0x85,0xcd,0xa8,0x39,0xa7,0xf2,0x5c,0x5f,0x8a,0xc6, +0xdd,0xc6,0xb5,0xb3,0x7b,0xf3,0x02,0xb6,0x68,0xf9,0x67,0x06, +0x46,0x47,0x77,0x64,0x19,0x34,0x5e,0x6b,0x9d,0xa4,0x64,0x50, +0x28,0x6b,0xca,0x9b,0x26,0xdb,0x95,0x57,0xd2,0x9c,0xb3,0x01, +0x1b,0x29,0xa1,0xf3,0x27,0x5c,0x15,0x22,0x1d,0x22,0x85,0x58, +0x0f,0x2c,0x4d,0x02,0x3f,0x85,0x0f,0x94,0x34,0x59,0xe1,0x92, +0x26,0xf7,0xb4,0x97,0x51,0x48,0xaf,0x16,0x34,0x24,0x54,0x75, +0xe2,0x45,0x89,0x11,0x90,0xa3,0xff,0xb9,0xf2,0xf2,0xc9,0x5c, +0x7b,0xfa,0xe8,0xbd,0x16,0x54,0xf3,0x3f,0x27,0xb7,0x27,0x61, +0x45,0x86,0x6a,0x13,0x46,0x0f,0x48,0xb1,0xb7,0xb9,0xac,0x44, +0x47,0xb8,0x2b,0x22,0xb7,0x15,0xf1,0x59,0x26,0xba,0x24,0x48, +0x4e,0xc0,0x27,0x5a,0xce,0x49,0x96,0x20,0x9d,0x58,0x82,0x8c, +0xd2,0x22,0x95,0x04,0xf9,0x5d,0xae,0x36,0xb0,0x11,0xcb,0x10, +0xf3,0x2c,0x0c,0x00,0xba,0x6a,0x7e,0x42,0xf9,0xf0,0x8b,0xfc, +0x46,0x04,0xf4,0x50,0x2f,0xce,0x66,0xdd,0x34,0xb3,0xb8,0xcb, +0x0b,0x04,0x9c,0x06,0x73,0xbd,0xac,0x23,0xfc,0x7f,0x85,0xca, +0xe0,0x30,0xb8,0x53,0x57,0x0a,0x6c,0xae,0x81,0x34,0x53,0x03, +0xb9,0xa2,0x06,0x12,0x25,0xfc,0xaa,0x82,0xe9,0x25,0xdb,0x0a, +0x5f,0x54,0x2f,0xfa,0x3d,0x50,0x64,0xe6,0x4f,0xc2,0xdd,0x04, +0xbc,0xc4,0x4a,0xdd,0x3e,0x5c,0x29,0xf5,0x59,0xac,0xd4,0x63, +0x94,0x52,0xcf,0x67,0x24,0x1e,0x3e,0x7a,0x4c,0xcf,0x2e,0xf6, +0x66,0xb9,0xad,0x54,0xae,0xa0,0xdc,0xfc,0x3b,0x27,0xc7,0x1c, +0x09,0x57,0xf0,0xb7,0xd3,0x05,0x47,0x8f,0x58,0xec,0xa4,0x63, +0x7b,0x1a,0x63,0x0c,0x64,0xad,0x9d,0x72,0xf4,0xc2,0x85,0xf4, +0xa3,0xa8,0x07,0xee,0x65,0x7d,0x9e,0xde,0x23,0x36,0x36,0xa5, +0x07,0xeb,0x73,0x6c,0x4d,0xe3,0x8a,0x02,0xad,0xcc,0x74,0xfd, +0xbc,0x53,0x0d,0x5e,0x2a,0xe0,0x4f,0xe4,0x28,0x03,0x8b,0xe9, +0x27,0xb6,0x6d,0xd9,0xb3,0x8f,0xf5,0xef,0xde,0xd7,0xf4,0x6f, +0xdc,0x5c,0x3d,0x7a,0xfc,0xb8,0x81,0xbd,0xed,0xfd,0xb7,0x0c, +0x3e,0x39,0x26,0x20,0x88,0xc6,0xb2,0xfa,0x8d,0xc0,0x6b,0x86, +0x52,0x66,0x45,0x8a,0xd7,0xa5,0xcc,0x58,0xf1,0x2a,0x95,0xec, +0x1e,0x58,0x97,0x26,0x1b,0x69,0x3b,0xbf,0x5c,0x70,0xc8,0xef, +0xf0,0xde,0x0f,0x96,0xed,0x0c,0x6c,0x48,0xa9,0x7a,0x15,0x2a, +0x6d,0xb4,0xa2,0x28,0x15,0x70,0xf2,0x82,0x0a,0x38,0x29,0x60, +0x33,0x54,0xa5,0x7c,0x11,0xe0,0x03,0x05,0xed,0x58,0xa2,0xd1, +0xa0,0x22,0xbd,0xfa,0x09,0xab,0xd5,0x27,0x7a,0xfa,0xc7,0x5b, +0xbe,0xf8,0xd2,0x2e,0x2a,0xde,0x55,0x2a,0x75,0x82,0x52,0xa9, +0x83,0xb6,0x0c,0x49,0x1f,0x17,0x50,0x85,0xc6,0xd6,0x55,0xcd, +0x9f,0x34,0x8e,0xa9,0xe6,0x59,0x97,0x76,0x1f,0xcc,0xcd,0x77, +0x57,0xcd,0xef,0x39,0xae,0x90,0x87,0x6a,0x7e,0x94,0xb9,0x1f, +0x9a,0x73,0xa3,0x58,0x91,0xd2,0x2c,0xd5,0x0a,0x1f,0xaa,0x37, +0xd5,0x6d,0x96,0x6a,0x0d,0xf9,0x09,0xc6,0x8e,0xed,0xdb,0xc3, +0xde,0x3a,0x27,0x1a,0x13,0x30,0x21,0xe7,0xda,0x8d,0xa3,0x63, +0x0f,0x44,0xaa,0x95,0xdc,0xd1,0x9a,0xc9,0x8e,0x3a,0xc6,0x52, +0x57,0xa3,0x3f,0xb3,0xec,0xb6,0xff,0xcc,0xd9,0xe3,0xfb,0x99, +0xe5,0x57,0xdc,0xd8,0xf1,0x7e,0x1d,0x93,0xbb,0xf5,0xe3,0xc6, +0x4c,0x1f,0xf2,0x51,0xe9,0x18,0xb7,0xdf,0xc4,0xed,0x56,0xc4, +0x6a,0x06,0x48,0x77,0xa8,0xae,0xe1,0x82,0x43,0xd1,0x39,0x71, +0x43,0x21,0xeb,0x5a,0x11,0x48,0xd2,0x31,0x99,0xda,0x18,0x16, +0xfc,0xd9,0x73,0xe2,0x84,0x28,0xfd,0x2e,0x74,0xed,0xca,0x3d, +0x76,0x0b,0x34,0x0d,0x6a,0xef,0xac,0x07,0x6f,0xd3,0xea,0xf8, +0x22,0x3c,0x44,0x4b,0x7e,0xd4,0x6d,0x22,0xe8,0x27,0x88,0xcc, +0x89,0x1d,0x0a,0x17,0xb2,0x99,0x43,0xbb,0x2d,0xa2,0x04,0x4f, +0x4e,0x47,0x8a,0x36,0x7a,0xab,0x11,0xee,0x3d,0x21,0x2a,0xfb, +0x43,0xd7,0xee,0x03,0xb9,0x17,0xb2,0x35,0x81,0xd1,0x81,0xb7, +0x68,0xb5,0x9b,0x58,0xcd,0x7c,0xc3,0x8a,0x9c,0x5a,0x89,0x55, +0x5c,0x2c,0x4f,0xf1,0x41,0x2b,0x72,0xaa,0x30,0x56,0x43,0x4b, +0x5a,0xaa,0x60,0x4f,0x88,0x0b,0xf5,0xdc,0x55,0x40,0x88,0x96, +0xdc,0xe2,0x32,0xad,0x1a,0xd0,0x27,0x1d,0x71,0xf4,0xdb,0x34, +0x82,0x42,0x75,0xe1,0xf5,0x2e,0x4c,0xbe,0x8f,0xc3,0xb1,0xc3, +0x89,0xee,0x38,0x40,0x65,0xe5,0xfb,0x83,0x3e,0xce,0x51,0x64, +0x8d,0x21,0x82,0x76,0x76,0xc4,0xe9,0x6f,0xd3,0x64,0x45,0x67, +0xeb,0x05,0xb3,0xee,0xe3,0x64,0x0c,0x3f,0xfe,0xab,0xa9,0x67, +0x68,0x94,0x44,0xc7,0x85,0xef,0x00,0x70,0xf1,0xdb,0xa1,0x40, +0x94,0xce,0x20,0xca,0x02,0x55,0x1d,0x2e,0xd3,0x5d,0x4c,0x3f, +0x4d,0x53,0x7f,0xb6,0xf0,0xd4,0x9e,0x22,0x76,0x8d,0xf3,0xbe, +0xe1,0x9a,0x3a,0xdd,0xa4,0x32,0x46,0x27,0xec,0x75,0x5a,0x97, +0xdb,0xe9,0x80,0x31,0xeb,0x67,0xec,0xcf,0x30,0x6c,0xa7,0x28, +0x73,0x09,0x34,0x61,0x63,0x1d,0x37,0x15,0x6d,0xc6,0xa3,0x79, +0x5a,0xff,0xc9,0x93,0x86,0x0f,0xb2,0xc7,0x67,0x76,0xff,0xfd, +0x8f,0xcc,0x63,0xe7,0xbf,0x9c,0xf4,0x59,0xff,0x4d,0x01,0x4b, +0x1f,0x9d,0x94,0x7e,0x3a,0xf6,0xa1,0x2e,0xc6,0x64,0xad,0xcb, +0xe0,0xed,0x87,0x0f,0xed,0x11,0x15,0x53,0x18,0x34,0x35,0x83, +0x06,0xf4,0x3e,0x0d,0xb1,0x02,0xc1,0x6e,0xa0,0x25,0xdf,0xab, +0xd0,0xdb,0x87,0x55,0x70,0x9e,0xb7,0xd4,0x7b,0x0a,0xa2,0x64, +0x4f,0xa8,0x92,0xff,0xc4,0x8a,0xbf,0xdd,0x99,0xc6,0xa8,0xf5, +0x26,0xbc,0x37,0x82,0x6c,0x43,0x25,0x8c,0x58,0x53,0x6f,0x98, +0xff,0x9d,0x2a,0x92,0xa5,0x68,0x97,0x91,0x3a,0x8d,0x95,0xeb, +0x67,0x9f,0xae,0xfa,0x7c,0x8f,0xfd,0xa3,0xb0,0x69,0x7a,0xbb, +0x4e,0xfd,0x68,0x71,0x54,0xc0,0x17,0x49,0x68,0xff,0xea,0xdb, +0x5d,0xe9,0x3b,0x7d,0x3f,0x58,0xb2,0x61,0xc5,0xc6,0xf7,0x36, +0xcd,0xf5,0xc5,0xcf,0x83,0x76,0x67,0xd0,0x9a,0x5f,0x52,0x97, +0xb1,0x6a,0x9d,0xc1,0xaa,0x95,0xfb,0xd0,0x46,0xa7,0xb0,0xb4, +0x06,0x09,0x4d,0xed,0xa2,0xf4,0x26,0xb8,0xdb,0x28,0x93,0xc2, +0x96,0x07,0x30,0xb8,0x8d,0xa0,0x61,0x22,0xc0,0xb7,0x28,0x74, +0xb7,0x9d,0x86,0x25,0xe0,0x30,0x6a,0x64,0x1d,0xe2,0xe5,0xcc, +0x60,0x99,0x45,0x9b,0x78,0x09,0x75,0x9e,0x30,0x7a,0x50,0x0f, +0x7b,0xcb,0x3b,0x9d,0xb1,0x0c,0x96,0xb9,0x73,0xea,0xd6,0xb1, +0xd1,0x7b,0x3a,0x7d,0xc4,0x2b,0xd3,0x3f,0x43,0x7e,0x92,0x88, +0x21,0x3a,0x06,0x50,0x5b,0x63,0x0c,0xcb,0xa3,0xcf,0x33,0xce, +0x9d,0xfc,0x3c,0x27,0x70,0x1b,0x4b,0xa9,0xe1,0x49,0x89,0x9d, +0x87,0x47,0x06,0x62,0x3a,0xd5,0x34,0xe6,0x64,0xba,0x8f,0x7b, +0x19,0xaa,0x99,0x05,0xef,0xb7,0xdf,0x2f,0xf9,0xe0,0x5e,0x20, +0x6d,0xcf,0xc7,0xcf,0xf5,0xc7,0x45,0x31,0xbc,0x79,0x09,0xb4, +0x35,0x92,0x71,0x48,0xcb,0x9b,0x05,0x03,0xc3,0xe4,0xf7,0x3a, +0x2d,0x30,0x6f,0xaa,0xe6,0x3f,0xa2,0x2a,0x46,0xb7,0x49,0x63, +0xdf,0xe9,0x6b,0x8f,0xbe,0xdd,0x03,0x4b,0x61,0xe9,0xdb,0x47, +0xaf,0x1d,0x18,0xbb,0xb3,0xeb,0x87,0x6c,0x3d,0x94,0x3f,0x27, +0x37,0x24,0xa1,0xaf,0x8e,0x95,0xa9,0x96,0xf1,0xae,0x16,0x9d, +0xb2,0xfd,0xc4,0x89,0x13,0xdb,0xae,0x07,0xee,0xd0,0xae,0x9f, +0x18,0xd3,0xb5,0x6b,0xca,0xe8,0xe8,0xc0,0x2e,0x74,0xda,0xb8, +0x81,0xde,0xeb,0x80,0xfa,0xb1,0xb6,0x6a,0x04,0x6b,0x54,0xfc, +0xb8,0x90,0x30,0xaa,0xa1,0x92,0xb8,0x65,0xa9,0x94,0xa0,0x00, +0xf3,0x64,0x3d,0x11,0xd0,0x1d,0xaa,0x80,0xdc,0x40,0x43,0x52, +0x70,0x48,0xcf,0x7c,0x53,0xea,0x94,0xbb,0x50,0x94,0x2f,0x0f, +0xd1,0x52,0x73,0x7d,0x63,0xb0,0x4c,0x7d,0x63,0x90,0xa8,0xbe, +0x31,0xf0,0xb7,0x42,0x36,0xcf,0x67,0x3b,0x9c,0x69,0x3b,0xe7, +0x17,0x14,0x6f,0x25,0x37,0xa8,0xee,0xae,0x13,0x15,0xd6,0x42, +0x27,0xda,0xcf,0xed,0xf9,0x6a,0xcf,0x45,0x70,0x73,0xb8,0xa7, +0x22,0x34,0xe0,0x70,0x0a,0x55,0x49,0x31,0xe3,0x1b,0x36,0x78, +0x98,0x60,0xe5,0x53,0xcb,0xfc,0xfe,0xbb,0x9a,0xe7,0x55,0x3e, +0xb5,0x7e,0x54,0xdd,0xe8,0x9b,0xd0,0x9f,0x42,0xa9,0x6a,0xe2, +0x57,0x07,0x02,0x56,0xeb,0x07,0x33,0xbe,0xc2,0xaa,0x18,0x9a, +0xd9,0xbf,0x4f,0x80,0xcd,0x0a,0x97,0xe1,0x28,0x69,0x50,0xcb, +0x8e,0xd8,0x92,0xea,0x3a,0x6f,0x00,0xd5,0x9b,0x6c,0xa8,0x4c, +0xc4,0x4b,0x34,0x5a,0x40,0x35,0x8c,0x1e,0xa9,0xe3,0x86,0xf6, +0xb2,0xb7,0xc9,0xe9,0x86,0x2c,0x05,0x72,0x8f,0xe7,0x1e,0x1e, +0xb7,0xbb,0x87,0x9a,0x95,0x37,0x32,0x65,0xb7,0x04,0x05,0xc0, +0xcb,0x51,0x63,0x7e,0x28,0x89,0x3d,0x3f,0x3d,0x75,0xf2,0xf0, +0x27,0x99,0xfc,0x50,0x32,0x0f,0x8f,0xea,0xd2,0xb9,0xd7,0xc8, +0x04,0x15,0x91,0xa3,0x8a,0x91,0x96,0xc1,0x0f,0xa5,0x14,0xc5, +0xce,0xa6,0xd6,0x0a,0xce,0x5d,0xb9,0xb2,0xe4,0xfd,0xcb,0x81, +0x94,0x96,0x83,0x0b,0xf5,0x3b,0xcb,0xf2,0x56,0xa8,0x88,0x1a, +0x75,0xc0,0x01,0x39,0x05,0xa0,0xcb,0xc6,0x72,0x1b,0x8f,0xb6, +0x51,0x8f,0x6c,0xb3,0x20,0x52,0xae,0xd1,0xe9,0x6d,0x73,0x25, +0xeb,0xf2,0x8e,0xac,0xcb,0x69,0x09,0xd9,0x85,0xaf,0x1d,0x78, +0xb3,0xe4,0x60,0x80,0x76,0x7b,0x59,0xde,0xca,0xf3,0x6b,0xd2, +0x4e,0xaa,0x78,0xe0,0x1d,0xdd,0x2f,0x5f,0x51,0x51,0x3a,0xe6, +0xd3,0x4c,0xc3,0x5c,0x4b,0xed,0xf3,0x70,0xae,0xfc,0x41,0xb3, +0xbd,0x0a,0x4e,0x1e,0xaa,0x82,0x93,0xb7,0xb0,0x82,0x93,0x1f, +0x53,0x2c,0xf7,0x8a,0xd2,0x7f,0x01,0x2d,0x26,0x7f,0xa3,0x77, +0xea,0x84,0xe1,0xfd,0xed,0x6d,0x73,0x7b,0x61,0x71,0x74,0xcb, +0x39,0x7c,0xf5,0xab,0x09,0x9f,0xf7,0xe6,0xa1,0xfd,0x79,0x5a, +0x76,0xe9,0x84,0x6f,0xea,0xe8,0x4d,0x6f,0x19,0x63,0x19,0x20, +0x6c,0x3d,0x7e,0xe2,0xd0,0xc7,0x59,0x81,0x5b,0x19,0x78,0x8c, +0xeb,0xda,0xad,0xf7,0xd8,0xb8,0x40,0x35,0xff,0x39,0x58,0xe1, +0x65,0x5c,0xf2,0xa2,0x7e,0xbc,0x8c,0x4b,0x7e,0xf9,0x5f,0x71, +0xc9,0x45,0xf9,0xef,0xa0,0x33,0x6d,0x62,0x7a,0x2f,0xe7,0x73, +0xb8,0x29,0x6b,0x1a,0xb9,0xe6,0x07,0xd8,0x41,0xde,0xe9,0x68, +0xae,0x6a,0x23,0x3f,0x20,0x5f,0xa6,0x3b,0x7a,0xce,0xea,0xf0, +0x9b,0xdc,0xe1,0xb7,0xcd,0xbf,0x44,0xa5,0x60,0xe8,0x9b,0x6d, +0x7e,0x13,0x29,0x67,0xeb,0xb2,0x26,0x5e,0x32,0xfa,0x4e,0x99, +0x38,0x72,0xb0,0x3d,0x2e,0xb7,0xbf,0xd5,0xd1,0xaf,0xb2,0xf6, +0x4c,0xfc,0xb4,0xef,0x86,0x80,0x65,0x4f,0xd2,0x65,0xa7,0x94, +0x17,0x3a,0x0a,0xf2,0x33,0x46,0x68,0x71,0xbd,0x3f,0x3e,0x74, +0x58,0x94,0x89,0x81,0x5e,0xbd,0x7b,0x8f,0x8b,0x0b,0xdc,0x44, +0x47,0x0c,0x0c,0xd5,0xbf,0x5e,0x96,0xbb,0xf2,0xfc,0xea,0xb9, +0xe9,0x3e,0xe3,0xc8,0x46,0x31,0xb3,0xa8,0x95,0xdf,0xd2,0x4e, +0xb2,0x02,0x10,0xef,0xa6,0x13,0xb3,0x0d,0xea,0x54,0x2d,0xae, +0x41,0xfd,0xdf,0xe2,0xb0,0x13,0x26,0x3f,0xca,0xfa,0xe1,0xfb, +0xea,0x59,0x94,0x1c,0x88,0x83,0x78,0x2f,0xf5,0x8a,0xef,0x43, +0xd5,0xa8,0x7a,0xdc,0xc1,0xc3,0xbc,0x60,0x8e,0x64,0x1d,0xc0, +0xea,0x58,0xed,0x7c,0xdf,0x9e,0x96,0x23,0xfc,0x62,0xaa,0xf9, +0xad,0xda,0xb1,0x6f,0x1b,0xc9,0xe3,0x47,0x0d,0x4c,0xb1,0x37, +0xbb,0xd3,0x51,0x1d,0x70,0xdf,0x3d,0x7b,0x27,0x7d,0xd4,0xde, +0x8e,0x4a,0x79,0x06,0x67,0xca,0x9d,0x09,0x58,0x45,0x47,0x7f, +0x4a,0x56,0x3b,0x36,0x79,0xd7,0xf9,0xac,0x53,0xbb,0x72,0xd5, +0x8e,0x3d,0x35,0x2c,0x2e,0xbe,0xd3,0x30,0xde,0xb1,0x87,0x6a, +0x1b,0xe3,0xd5,0x6e,0x9d,0xa5,0x02,0xab,0xc7,0xb8,0x7f,0xe3, +0x8a,0xb8,0xbf,0x2c,0x1f,0x57,0xe9,0x4f,0x96,0x3d,0xb0,0x76, +0x6b,0x28,0x38,0xdc,0x6f,0x16,0xb8,0x33,0xb0,0x98,0xcb,0x10, +0xc2,0xda,0xa4,0x29,0xa9,0x63,0xd4,0x26,0xbd,0xd3,0x93,0x65, +0x44,0xd9,0x3b,0x47,0xae,0x1d,0x18,0xb3,0x33,0x45,0x2d,0x47, +0xef,0x73,0x72,0x4b,0x12,0x0a,0xd7,0x26,0x7d,0x47,0x8b,0xea, +0xc2,0x9b,0x34,0x7d,0x7b,0x76,0xe0,0x4e,0x2d,0x27,0x7d,0x74, +0xd7,0xae,0x5d,0x46,0x47,0x06,0x26,0xd3,0x06,0x23,0xef,0x91, +0xf6,0x74,0xd9,0x83,0x55,0x5f,0xf3,0x3e,0x8d,0x95,0xf7,0xa0, +0x26,0x75,0x52,0x30,0x2a,0x29,0x0f,0x97,0x14,0xc1,0xa8,0x38, +0x86,0x22,0xd7,0x0b,0xc2,0x5c,0x32,0xe1,0x2d,0xa3,0x4b,0xea, +0x98,0x61,0x7d,0xec,0x6d,0xee,0x74,0xe7,0x01,0x96,0xb9,0x73, +0x2c,0xf7,0xe0,0x98,0x5d,0x29,0x2a,0xdc,0x43,0x85,0xb3,0x72, +0x4b,0x47,0xd5,0x5c,0x25,0xc6,0xee,0xef,0x6a,0x51,0x9d,0x3f, +0x39,0x79,0xea,0xe4,0x27,0xd9,0x2c,0x13,0x72,0xd2,0x47,0x75, +0xee,0xd2,0x65,0x54,0x64,0x60,0x22,0x7d,0xc5,0x7b,0x54,0x13, +0x6e,0x07,0x20,0xc3,0x67,0xdc,0x04,0x58,0x1e,0x3b,0x12,0x36, +0xd0,0x0e,0x03,0x83,0x59,0x2e,0xa8,0xd0,0xee,0xb8,0x06,0xd2, +0xa4,0xcd,0xb8,0x69,0xce,0xc3,0x24,0x99,0x9b,0x64,0x2e,0x0e, +0x93,0xf3,0x28,0x48,0x78,0xb4,0x56,0x80,0xea,0x8f,0x9b,0xe6, +0x1f,0x16,0xa0,0x2a,0x5f,0x93,0x75,0xd0,0x43,0x97,0x74,0xd8, +0xa0,0xa4,0x43,0xd2,0xeb,0x5f,0x20,0xdd,0xbc,0x69,0xde,0x64, +0xb2,0x45,0x05,0x8c,0x7c,0x97,0x19,0x79,0xf7,0x0b,0xb7,0xaa, +0x08,0xee,0xbd,0x5d,0x11,0xdc,0xe7,0x58,0x11,0xdc,0x0f,0xb2, +0x5d,0x36,0xed,0xb5,0x08,0xee,0x41,0x3c,0xc2,0x6b,0x05,0xde, +0xae,0x11,0x56,0x55,0x23,0x7c,0xa7,0x8f,0x3d,0xea,0x4e,0x0f, +0x6b,0x84,0x47,0xaf,0x1f,0xb4,0x26,0xf4,0xb5,0x11,0x56,0x66, +0xc9,0xfc,0x8e,0x16,0xd9,0x65,0x7b,0x7a,0x7a,0xfa,0xf6,0x1c, +0x9e,0xd0,0xec,0xf4,0xd1,0x29,0x29,0x5d,0x46,0x47,0xf1,0x2e, +0x38,0xc5,0x23,0x2c,0xff,0x32,0x84,0x7b,0x46,0x5b,0x88,0x2d, +0x0a,0xe1,0xde,0xdd,0x98,0xb8,0x7c,0xd6,0xa2,0x49,0xd3,0x27, +0x4e,0xf5,0x51,0x76,0xda,0xee,0x55,0x7b,0x0e,0xdb,0xb7,0x86, +0x4d,0xd4,0x9b,0x76,0xe9,0x46,0x0b,0x1b,0x5b,0x76,0xda,0xd1, +0x6f,0xf6,0x9e,0xd8,0xe7,0xbb,0x64,0xf1,0xfa,0x15,0x1b,0x16, +0xbb,0xec,0xb4,0x52,0x7b,0xce,0x59,0x99,0x3c,0x9e,0x5b,0x68, +0xf0,0x89,0xa8,0xb0,0x06,0x92,0x68,0xa5,0x91,0xf7,0x8b,0xa6, +0x82,0xed,0x7f,0xbd,0x26,0xed,0x9c,0xb0,0x7d,0x0b,0x2c,0xea, +0x86,0x05,0x29,0x49,0x17,0x53,0xbf,0xde,0xc3,0x18,0x4b,0xd2, +0x5d,0xfc,0xe9,0x87,0x9a,0x17,0x5d,0x92,0xae,0xae,0xd1,0x2b, +0xb1,0x0f,0x55,0x65,0x49,0xc7,0x0b,0x77,0x8d,0x7e,0x24,0xe3, +0x00,0x4b,0xba,0xaa,0x19,0x6a,0xe1,0x2a,0xe8,0x33,0x6e,0x6c, +0x3f,0x05,0x7d,0xda,0x5a,0xd0,0xe7,0x2a,0x43,0x9f,0xfd,0x91, +0x1f,0xbf,0x0e,0x7d,0xe2,0x58,0xa9,0xf6,0x55,0x58,0x63,0xff, +0x99,0x33,0xc7,0x14,0xf4,0x39,0xa0,0x70,0x56,0xbf,0xe4,0xe4, +0xee,0x16,0xf4,0xa9,0x40,0x15,0x8a,0xbe,0xd6,0xda,0x96,0x8f, +0xdb,0x70,0x81,0xeb,0x67,0xf0,0x4b,0x10,0x54,0xcf,0x70,0x9d, +0x7f,0xb4,0xcd,0x89,0xc3,0x78,0x8c,0xcf,0xc9,0xba,0xaa,0x50, +0xcc,0x47,0x16,0x8a,0x49,0xa6,0xd6,0x2f,0x81,0xd0,0x71,0x05, +0x84,0xba,0xbd,0x02,0x42,0xd1,0x4d,0x00,0xc7,0xd5,0xa6,0xe2, +0x2f,0x91,0x50,0xa5,0x5f,0xf4,0x08,0xe1,0xb1,0x1d,0x14,0x18, +0x8a,0xb2,0xc0,0xd0,0xf5,0x83,0xe3,0xf6,0xbe,0x62,0x13,0x65, +0x14,0x1d,0x27,0xa5,0x2b,0x36,0x29,0xae,0x13,0x26,0x4b,0x8b, +0xab,0x78,0xf2,0x21,0x39,0x18,0x82,0x55,0x28,0x24,0x97,0x7f, +0x54,0x3c,0x79,0x0f,0xaa,0x5c,0x14,0x4f,0xfe,0xf0,0x05,0xb9, +0x59,0xa1,0x80,0x96,0xd0,0xbc,0x52,0xa2,0xf9,0x7e,0x33,0xb9, +0xc0,0x4a,0x23,0xf0,0x0a,0x18,0x85,0xde,0xd6,0x22,0x9a,0x1b, +0x34,0xf9,0x36,0x4e,0x56,0x64,0x4d,0xa1,0x5e,0xa5,0x97,0x58, +0xa2,0xd2,0x4f,0x5a,0x44,0x3d,0x83,0x26,0xfc,0x64,0x05,0x95, +0x3f,0xf6,0x0a,0x52,0xa8,0x73,0xa0,0x3b,0xbc,0xdd,0x5c,0x10, +0xb5,0x6d,0x4e,0x82,0x35,0xea,0xcc,0xab,0x0a,0xb8,0xea,0x0c, +0xb5,0x5a,0x19,0x8c,0x4c,0xdd,0x7a,0x7c,0x79,0xec,0xf8,0xd1, +0x3d,0xe8,0x16,0xc8,0x98,0xd5,0xed,0xe8,0xe0,0x6e,0xdd,0x7b, +0x58,0x3d,0x8e,0x20,0x0f,0x23,0x96,0xc7,0x63,0xcf,0x41,0x3b, +0x1e,0x74,0xfd,0x24,0x5b,0x00,0x64,0xb9,0xeb,0x3c,0xa8,0x29, +0x84,0xea,0xad,0xc7,0x0c,0xea,0xdd,0xd9,0x42,0x12,0xa7,0x06, +0x1f,0x6a,0xbd,0x2d,0xe0,0xb1,0x1e,0xd1,0xc4,0x58,0x3a,0x6c, +0xe0,0xfb,0x7d,0xfd,0xfa,0x0e,0x5c,0x30,0x6f,0x58,0xe0,0x3d, +0x9c,0xa0,0x3f,0xa1,0xe1,0x0a,0x5a,0xbc,0x7e,0x0c,0x78,0x83, +0x12,0x8c,0x56,0xa3,0x46,0x77,0x4d,0xb6,0x37,0xca,0x6d,0x66, +0x59,0x0c,0x77,0xbe,0x75,0x1d,0x06,0x2e,0x7b,0x79,0x18,0xa8, +0x5e,0x58,0x9b,0x6d,0xb8,0xce,0xf9,0xae,0x5e,0x53,0x27,0x80, +0x81,0xae,0x13,0xc0,0xe8,0xb6,0xd6,0x09,0xa0,0x6c,0xc1,0xab, +0x58,0x05,0xb2,0xe7,0x47,0x7b,0x9b,0xea,0x1b,0x6d,0xd9,0x0c, +0xe8,0x63,0x7f,0x85,0x4e,0x8b,0x8c,0x84,0x4c,0x47,0xe7,0x04, +0x8c,0xd5,0x31,0x89,0xda,0x15,0x81,0xd4,0x93,0x0a,0xa4,0x76, +0x79,0x09,0x52,0x4b,0x1a,0x56,0x8e,0xac,0xde,0xff,0xd3,0xb1, +0xdf,0xd7,0xd4,0xc4,0x88,0x1e,0xa7,0x0e,0xf7,0x22,0x72,0x62, +0x86,0xc2,0xc5,0x9c,0xc3,0xe3,0xf6,0x45,0x2b,0xae,0x71,0x2e, +0xd3,0x43,0xc7,0x44,0x8a,0x35,0x8a,0x0e,0xf5,0x4e,0xa9,0xe3, +0xbe,0x40,0xd7,0x71,0x5f,0x67,0xd7,0x71,0x1f,0xb3,0x2f,0x67, +0x58,0x59,0xb2,0xca,0xba,0x8e,0xfb,0xda,0xa9,0x1c,0xed,0x9e, +0xc2,0x7d,0x16,0x5f,0xb7,0x55,0x9f,0x20,0xf7,0x30,0xcc,0xc5, +0x19,0x32,0x9f,0xfa,0xf3,0xf3,0xdf,0x9d,0xa9,0x92,0x29,0x29, +0x22,0xc7,0x1b,0x74,0x5b,0x59,0x1e,0x72,0x94,0x8a,0x6e,0x51, +0x4f,0x78,0x76,0xb5,0x2e,0xbd,0x65,0xbd,0xff,0x87,0xf3,0xc0, +0xb6,0x2a,0xeb,0xcd,0x73,0xeb,0x40,0x70,0x20,0x30,0x90,0x1c, +0xf6,0xf2,0x40,0xf0,0x36,0xd5,0x29,0x9a,0xa3,0x28,0xcb,0x06, +0xb8,0xee,0x9a,0xa3,0xa5,0x18,0x9b,0xe1,0xe8,0x9c,0xa8,0xe6, +0xa8,0xe3,0xab,0xb5,0x9b,0x7e,0xc2,0x1a,0x8d,0x75,0x48,0x3a, +0xb0,0x6b,0xca,0xcb,0x25,0xac,0x26,0x8b,0x9f,0xff,0x7c,0xd7, +0xf3,0x6f,0xab,0x5e,0xd3,0x2a,0xed,0x3a,0x0f,0x6c,0x07,0xd2, +0xa4,0x5b,0xea,0x40,0x90,0xd5,0xcf,0x85,0xbe,0xca,0x1a,0xa7, +0x75,0xbc,0xbe,0x12,0xc6,0xa8,0x53,0xbe,0xb7,0xef,0xc5,0x62, +0x79,0x34,0xee,0x5d,0xf8,0xf1,0xec,0x88,0xc3,0x96,0x55,0xfe, +0x56,0x96,0x3c,0x14,0x87,0x35,0x74,0xb4,0xd3,0x08,0x63,0x82, +0x16,0xde,0xf1,0xcb,0x6b,0xd7,0xce,0x7c,0x99,0x1f,0xf8,0x91, +0x96,0x77,0x76,0x50,0x74,0x74,0xd2,0xa0,0xd6,0x81,0x74,0x86, +0xeb,0x2f,0x6b,0xef,0xce,0xb0,0x7f,0x42,0x91,0x79,0xce,0x40, +0xa5,0x16,0x4d,0x52,0xfa,0xe8,0xa5,0x41,0x9d,0x6d,0x19,0xd4, +0xb4,0x81,0x6a,0x2b,0x55,0x37,0x40,0xa9,0xba,0x64,0x25,0x27, +0xef,0x9e,0x61,0x55,0xb7,0x2f,0x59,0x0d,0x2f,0x20,0x43,0x6e, +0x4f,0xc4,0x8a,0x2e,0x55,0x37,0x8a,0x35,0xc1,0xae,0x2c,0x36, +0xa1,0xb3,0x03,0x8b,0x4c,0xe8,0xce,0x4a,0xd5,0x1d,0xae,0x2a, +0x51,0xe5,0x53,0x5a,0xf3,0xba,0x09,0x9d,0x6d,0x6e,0xa7,0x6c, +0x20,0x94,0x5a,0x91,0x0d,0x7d,0xfb,0xa6,0x79,0x5b,0xa7,0xab, +0xf3,0x94,0xaa,0xfb,0x90,0xaa,0x19,0x9d,0x27,0x8e,0x19,0xd2, +0xd3,0xde,0xfa,0x4e,0x8a,0xa5,0xea,0xd2,0x6f,0x1c,0x29,0x68, +0x00,0x96,0x09,0x1f,0xa4,0x63,0x08,0x77,0x7e,0x38,0x0b,0xe5, +0xcf,0xce,0x9e,0x49,0xff,0x2c,0x27,0xf0,0x73,0x6e,0x6c,0x44, +0x72,0xc7,0xce,0x23,0xb8,0xb1,0xfd,0x35,0x7f,0x52,0x99,0x99, +0x6e,0x8a,0xc0,0x79,0xff,0x58,0xe6,0x57,0x17,0x88,0x92,0x6f, +0x40,0x0e,0x45,0xb9,0x0c,0x73,0xcb,0xe2,0xbe,0x6a,0xfe,0xf4, +0xff,0x43,0x53,0x56,0x8e,0xad,0xe1,0x56,0xb2,0x80,0x0b,0xdd, +0x0c,0x3a,0xd0,0x1e,0x0f,0x68,0xbc,0x77,0xda,0x1b,0x58,0x6f, +0xae,0x16,0x3f,0x62,0x98,0xe5,0x3b,0xfb,0xb5,0x25,0x02,0xc2, +0xaf,0xca,0x77,0x36,0x2c,0x23,0xfe,0x33,0x97,0x8f,0x7c,0xbf, +0xce,0x8a,0xec,0x3d,0xa3,0x4e,0x42,0xb7,0x16,0x2d,0x12,0x8e, +0xdf,0x0f,0xd8,0xab,0xdf,0x3f,0x77,0xec,0xce,0xdd,0xb3,0xdd, +0x2d,0xdf,0x99,0xcc,0xb4,0xbc,0x65,0xf7,0x94,0x47,0xfe,0x9a, +0xf2,0x94,0x15,0x3d,0xda,0xea,0x17,0xe4,0x91,0x58,0xac,0x3d, +0x57,0xf8,0x4d,0x86,0x3d,0x74,0xc1,0x30,0xe7,0xd1,0x8c,0x7c, +0x4c,0x97,0xd9,0x9a,0xad,0xe8,0xe3,0xc6,0x7b,0xac,0xdc,0x54, +0x9d,0xcb,0xc6,0xc5,0xe1,0xc7,0xe3,0xd4,0xab,0x2a,0xb5,0xac, +0x3a,0xf5,0x94,0x43,0x7e,0xb8,0xf2,0x91,0xdd,0x8b,0xe6,0xf5, +0x52,0xee,0x9e,0xf2,0x91,0x3d,0xd9,0x64,0xe4,0x9f,0xd9,0x9f, +0x1f,0xb0,0x51,0xcb,0x3f,0xd3,0xaf,0x55,0xab,0x8e,0x7d,0xc3, +0x03,0x27,0xf3,0x7a,0x51,0x3e,0xb2,0x72,0xaf,0xfb,0xc8,0xfc, +0x87,0x03,0x56,0xc9,0x94,0x47,0x12,0xb0,0xda,0x5c,0xbd,0xe3, +0x84,0x51,0x03,0xbb,0xda,0x9b,0xdf,0xeb,0x64,0xb1,0x39,0x7d, +0x3b,0x80,0x9e,0x7d,0x68,0x64,0x9e,0xd9,0x79,0x23,0x60,0xbb, +0x96,0x7b,0xe6,0x9d,0x04,0x51,0x79,0xba,0xf2,0x74,0x2b,0x8f, +0x9a,0x71,0x1b,0xce,0x2b,0x8f,0x1a,0xcf,0xf9,0x06,0x9e,0xf3, +0xbb,0xe6,0x42,0x51,0xa1,0x1f,0x98,0xbb,0x94,0x87,0xbd,0x28, +0x94,0xff,0x5d,0xf3,0x47,0xab,0xbf,0x27,0x8b,0xc6,0xb8,0xf4, +0xe5,0x18,0xe7,0xa9,0x31,0x9a,0x15,0xc9,0x14,0xbe,0x05,0x8a, +0xf8,0x88,0x45,0xbc,0xad,0xa0,0x2a,0xd0,0x73,0xe5,0xf4,0xb2, +0x96,0x7d,0xb9,0x7b,0x17,0x7e,0x78,0x79,0xfa,0x5d,0x2d,0x4b, +0x1e,0x89,0x13,0x65,0x56,0x40,0x47,0x3b,0x8e,0x6a,0x60,0x58, +0xc7,0xda,0x57,0x79,0xe1,0xe7,0xa9,0x85,0x7f,0x66,0x50,0x74, +0xdb,0x8e,0xbc,0xf0,0xcd,0x8a,0xca,0xf7,0xc5,0xec,0x32,0x2d, +0x76,0x7b,0x45,0x85,0xfe,0xbc,0xcf,0x95,0x0f,0xab,0x28,0xda, +0xcf,0x3d,0xf3,0x3d,0x9c,0x09,0xd8,0xcb,0xf2,0xcb,0xd3,0x6a, +0x74,0x2f,0x8c,0x06,0xb3,0x86,0xb7,0x4c,0xba,0x63,0x26,0x61, +0xf1,0x6c,0x2a,0x2e,0xf4,0x2d,0x60,0xa3,0x5f,0xd0,0xdd,0x5b, +0xdd,0x19,0xa8,0x0a,0xd6,0xd2,0x01,0x61,0xbb,0x0b,0x78,0x0f, +0x3b,0x8a,0xc0,0x32,0x2a,0xf0,0xa5,0xab,0xd0,0x22,0xe7,0x02, +0x33,0x45,0x26,0x19,0xd9,0x61,0x05,0xf5,0x9a,0x39,0x2a,0xeb, +0xdd,0x3f,0x1b,0x72,0x36,0xc0,0x36,0xf5,0xdf,0x8c,0x5f,0xb1, +0x61,0xe6,0x66,0x5d,0xec,0x68,0xd0,0x38,0xb0,0xad,0xfb,0x9f, +0x1b,0x37,0x99,0xd8,0x28,0xbc,0x0d,0x36,0x47,0x3d,0x9b,0xe3, +0x4d,0xb4,0x09,0xbf,0xbd,0x20,0xaf,0x7d,0x23,0xfc,0x56,0xf0, +0x0f,0x2e,0x15,0x7e,0xcb,0x81,0x32,0x71,0xbd,0x08,0x5a,0x09, +0x0e,0x1b,0x0a,0x2c,0x21,0xf4,0xf6,0x4c,0xcc,0x97,0x33,0xa6, +0x81,0xdc,0xbc,0x92,0xaa,0x9b,0x77,0x79,0x04,0x99,0x78,0x0a, +0xef,0xa9,0xdf,0x1f,0xbd,0x1d,0x53,0xd4,0xaf,0xf9,0x79,0x41, +0x86,0x75,0x7f,0x9d,0x70,0xdf,0x69,0xdd,0x28,0x29,0xc4,0x4d, +0xe6,0x65,0xce,0x13,0x15,0xe6,0x2b,0x9e,0xa7,0x85,0xf7,0x21, +0x8b,0xa2,0x8d,0x08,0x8e,0x57,0x37,0x4e,0x09,0x38,0xe6,0xaa, +0x2a,0x4a,0x2e,0x05,0x9b,0x2c,0xc4,0x2a,0x66,0xc5,0xc2,0x45, +0x20,0x6b,0xbb,0x09,0x5b,0xac,0xeb,0x86,0xf0,0xa9,0xc3,0xa4, +0x3f,0x0b,0xff,0x7d,0xfc,0x73,0x55,0x04,0x7f,0x64,0xfd,0x15, +0x70,0x1d,0x64,0x38,0x46,0x0b,0xef,0x9d,0x20,0xbf,0xff,0x95, +0x02,0x0c,0x6c,0x7c,0xb1,0x46,0xc1,0xda,0x87,0x17,0xa9,0xb1, +0x66,0x93,0xdf,0xe3,0xb8,0x82,0xc5,0x06,0x35,0x8e,0x79,0xe8, +0x58,0x5b,0x23,0x06,0xd5,0xad,0xf3,0xd8,0x5d,0xf8,0xf6,0x01, +0xfe,0xad,0x24,0x7c,0xfb,0x81,0xa8,0x98,0x04,0xe3,0x87,0x4f, +0x9c,0x35,0xcc,0xaf,0xdf,0x90,0x0d,0x9b,0x06,0x05,0x6e,0xe9, +0x39,0x74,0x7d,0x37,0xbf,0xf8,0x61,0xe3,0x87,0x8d,0x0a,0xdc, +0xd5,0xdb,0x7d,0xcb,0xe7,0x9b,0x57,0xed,0xf2,0xdb,0xff,0xc5, +0x94,0x49,0x5f,0x06,0x8e,0x3f,0xb2,0x7b,0xea,0x71,0x3f,0xd5, +0xed,0xf5,0x58,0xc3,0xb8,0x29,0x42,0x56,0x81,0x0a,0x7b,0xf9, +0xdc,0x30,0x07,0x5d,0x93,0x83,0x98,0xf5,0x2d,0x6c,0x84,0x69, +0xd3,0xac,0xf1,0xe0,0x4a,0x03,0xdf,0xa6,0x46,0xc2,0xff,0x5d, +0x70,0xb7,0xa6,0xc8,0x8c,0x11,0x81,0x7b,0xd5,0x27,0x79,0x2d, +0x8a,0xc8,0x71,0x1a,0x7d,0xa5,0x6e,0xd9,0x44,0xa5,0x65,0x40, +0x39,0x7b,0xf0,0x43,0xb6,0xbb,0x6e,0xca,0xb5,0x9a,0x8d,0xca, +0xaa,0x3f,0x0a,0x52,0x6e,0x3a,0x52,0x34,0x9b,0xc3,0x0b,0x7d, +0xcc,0xe9,0xbc,0x0b,0xa2,0x40,0x5d,0x07,0x17,0xcc,0xb6,0x9e, +0x82,0x6c,0xf3,0xea,0x36,0xf6,0xf2,0xb6,0x4a,0x65,0xc4,0xcb, +0x52,0xec,0xe9,0xdd,0x37,0x75,0xec,0x90,0xc0,0x69,0xfa,0xa8, +0x35,0x13,0x3f,0x99,0x1b,0x30,0xb3,0xc7,0xd8,0x21,0xfd,0xfb, +0x7a,0x5c,0xd5,0xce,0x1d,0xdf,0x9d,0x77,0xda,0xbe,0x4e,0xff, +0x22,0x75,0x6b,0x5f,0x86,0x72,0xfe,0x69,0x20,0x42,0x7e,0x83, +0x4a,0xfc,0x40,0x79,0xae,0x71,0x93,0xb7,0x9a,0x6b,0xfc,0xd0, +0xfb,0xc0,0x87,0x5b,0x77,0x07,0xae,0xd5,0x77,0x33,0x15,0xf3, +0x19,0x1a,0x30,0x5d,0x1f,0xfa,0xe1,0xd8,0x03,0x01,0x3c,0x8e, +0xab,0xb8,0xf5,0xe5,0x68,0x79,0x50,0x81,0xb9,0x46,0xae,0x26, +0xfc,0x72,0xac,0x27,0xb7,0xdc,0x5c,0x61,0xdc,0xd1,0x45,0x70, +0x6b,0x08,0x23,0x69,0x98,0x8d,0xaf,0xc9,0xc6,0x8a,0xe8,0x67, +0xec,0x65,0x34,0xd5,0xcd,0xc6,0xd8,0xd1,0xfd,0x27,0x36,0x4d, +0x31,0xc9,0xbd,0x99,0x8e,0xbf,0x51,0x75,0xf7,0x34,0x9d,0x7e, +0xa3,0xbd,0x46,0x34,0x53,0xea,0x36,0x11,0xb8,0x1c,0x44,0x85, +0xb2,0x20,0x7c,0xbf,0x86,0x65,0x05,0x93,0xd6,0x1a,0xe9,0xe9, +0xb4,0x17,0xad,0xff,0x52,0xf8,0x4a,0xfd,0xc7,0x57,0x29,0xb8, +0xd7,0x75,0x9d,0x9e,0xa2,0x4a,0xdc,0x6d,0xa2,0x62,0x4f,0x1e, +0xc1,0x23,0x30,0x9b,0x83,0x7c,0x1b,0x83,0x84,0x6f,0x5d,0x30, +0x63,0xf8,0xf2,0x96,0xf1,0x40,0x1a,0xed,0x31,0x6b,0xa0,0x4e, +0x65,0xa3,0xcc,0xbf,0x01,0xdd,0xee,0xe5,0x63,0x0b,0x3b,0xe5, +0xca,0x21,0x4f,0x40,0x11,0xe4,0x38,0x7e,0x03,0xec,0x2e,0x6f, +0xdc,0x07,0xf3,0x17,0x73,0xa9,0xc1,0x55,0x4b,0xac,0x03,0x0a, +0xc2,0x98,0x70,0x19,0x95,0xa7,0x51,0x34,0xa6,0x9b,0x3a,0x60, +0x59,0x59,0x77,0x93,0x22,0x98,0xa2,0x12,0x37,0x8c,0xca,0x33, +0x17,0x85,0xd3,0x28,0x26,0xea,0x17,0x2e,0xc7,0x59,0x44,0x0f, +0x0a,0xc7,0x01,0xb6,0x91,0xb9,0x2b,0x01,0x3b,0x41,0x75,0x47, +0xf2,0xf2,0xff,0x1b,0x31,0x25,0xc8,0x7e,0x73,0xe1,0x2c,0xd0, +0x67,0xe9,0x26,0xeb,0xde,0x0e,0x72,0x9c,0xb3,0x3b,0x34,0xe6, +0x3f,0x0f,0x70,0x7f,0x68,0x89,0x63,0x60,0xb8,0xeb,0x2f,0x51, +0x76,0xd2,0x3f,0x54,0x9b,0x1c,0x3d,0x9c,0xfd,0xc1,0x19,0xcd, +0x7f,0xef,0x35,0x7e,0x91,0x0c,0x50,0x2f,0x0c,0xd2,0xa9,0x74, +0x54,0x2c,0x6d,0xaa,0x1a,0xf0,0x55,0xa2,0x0a,0x18,0x56,0xfc, +0xde,0x0d,0x6c,0xae,0x42,0x9e,0xad,0x75,0x3e,0xe3,0x8a,0x8e, +0xd6,0x6c,0xc5,0xb8,0x4a,0xb4,0x7b,0x79,0x18,0x66,0x7f,0x35, +0x1b,0xe5,0xa2,0x62,0x68,0x63,0xe5,0x00,0xf3,0x3e,0x6d,0xff, +0xcd,0xf5,0x45,0x12,0xf9,0x52,0x15,0x2c,0x19,0x21,0xa7,0xe5, +0x60,0x49,0x86,0xbc,0xde,0xb9,0xe6,0x6a,0x5d,0xfa,0xb3,0xa6, +0x7e,0x40,0xdf,0xc4,0xe2,0xca,0x7e,0x3a,0x95,0x49,0x88,0x33, +0x47,0xf0,0x38,0xa9,0xa5,0x81,0xbe,0x4c,0xe2,0xab,0xcb,0x99, +0x72,0x1b,0xcb,0x88,0xb2,0x40,0x13,0xcd,0xaf,0x59,0xa0,0x8b, +0x00,0x37,0xa0,0x2c,0x39,0xf8,0x0b,0x90,0x7e,0x40,0x63,0xd4, +0xbd,0x8a,0xfc,0x04,0xca,0x75,0xc0,0x4c,0x6e,0xb3,0x3c,0xf7, +0x74,0x7d,0xe5,0x80,0xfd,0xdc,0x9f,0xbd,0xe8,0xce,0x0f,0xa2, +0xa5,0x1d,0x47,0xca,0x5f,0x8d,0x69,0x6b,0xa7,0x2d,0x9a,0x36, +0x73,0xc6,0x2c,0x9f,0xf9,0xc2,0x8d,0x57,0x5f,0x55,0x6d,0x7e, +0x68,0xf7,0x4e,0xe4,0x19,0x72,0xac,0xbb,0xcf,0x35,0x51,0xe6, +0x6f,0x58,0xb8,0x74,0x9e,0x08,0xd6,0x20,0x92,0xbe,0xfc,0x08, +0x84,0x2d,0x5d,0xbd,0xf8,0x52,0xde,0xf8,0x49,0x71,0x3d,0x3f, +0x44,0xa7,0x09,0x40,0x23,0x1d,0x03,0x9d,0xbf,0x82,0xf4,0x05, +0xea,0xe7,0x48,0x02,0x0c,0x34,0xee,0x5b,0x4d,0x72,0xa1,0x67, +0x74,0x1c,0x6d,0xa8,0x66,0x4d,0xce,0x3e,0x2c,0xc6,0x93,0xd3, +0xc8,0x4e,0xee,0xb2,0xe9,0x1e,0x5e,0x5f,0x35,0x20,0x51,0xa6, +0x17,0x7e,0x04,0x05,0x67,0x20,0x5a,0xde,0x31,0x9e,0x5b,0xf1, +0xf1,0x9f,0xb9,0xe2,0xe3,0x3f,0x29,0x8a,0x8f,0x5f,0x1d,0xe4, +0x3b,0x79,0x9a,0x6c,0x82,0x83,0x0c,0xd6,0xdb,0x49,0x37,0xcc, +0x76,0x85,0xd3,0x60,0x29,0xa5,0xc7,0x72,0x3f,0x58,0x06,0x5d, +0xb1,0xfa,0xe1,0xd5,0x01,0xcf,0x0c,0xd1,0x85,0xce,0xd2,0x68, +0xa8,0xd5,0x11,0xe1,0xfb,0x08,0x70,0xa3,0xcc,0xef,0xa7,0x52, +0x54,0x7c,0xc2,0x06,0xe9,0x9c,0x30,0x2a,0xd5,0x1d,0xd4,0xff, +0x2a,0xb2,0x46,0xaa,0x28,0x71,0x08,0xa8,0x6c,0x74,0x2c,0xad, +0xab,0x22,0xdc,0x3b,0xf0,0x9a,0xbc,0x9b,0xc7,0x6b,0xf2,0x57, +0x79,0xef,0x57,0xb8,0x05,0xff,0x0f,0x94,0xb4,0x51,0xbe,0xf3, +0xcc,0x7a,0x01,0xe0,0x43,0xb9,0xc2,0xc8,0x36,0xe7,0x46,0x52, +0x08,0x79,0xc4,0xa3,0x07,0x79,0x50,0x89,0x04,0x2c,0xa1,0x91, +0x1f,0x4e,0x31,0x1e,0xd2,0xd7,0xb1,0xb8,0xb4,0x2f,0x4f,0x7b, +0x62,0x0c,0x8d,0x08,0x0a,0x50,0x59,0x49,0x66,0x62,0x89,0x6b, +0x6a,0x81,0x50,0xbc,0x9c,0xb0,0x0f,0x84,0x4f,0x28,0x34,0x75, +0x84,0x5d,0x02,0x73,0x03,0xd0,0x66,0xf9,0x1e,0xb3,0x9a,0x16, +0x49,0x86,0x28,0x65,0x02,0xd9,0x71,0xa8,0x08,0x28,0x0e,0xd4, +0xc8,0x11,0xb7,0x42,0xbd,0x2f,0xb4,0x81,0x97,0xee,0xe6,0x8f, +0x98,0x22,0x35,0xf2,0x65,0xfc,0x20,0x4d,0x94,0xb9,0x0a,0x98, +0x6a,0x3c,0xa2,0xdb,0xdc,0x10,0xaf,0x0f,0x23,0x31,0xf6,0x9f, +0x86,0x3c,0xae,0xe7,0x61,0x53,0x3b,0x7a,0xca,0xf2,0x69,0xe0, +0xd8,0xa7,0x90,0xf1,0xf0,0xeb,0xea,0x82,0x9a,0xd0,0xae,0xc7, +0xea,0xa2,0x0d,0xd5,0x16,0xee,0xa7,0xa1,0x00,0xcc,0x41,0x46, +0xee,0x4c,0xf7,0x0d,0xd7,0xd7,0xdd,0x7b,0x60,0x3f,0x62,0x05, +0xb1,0xd4,0x17,0xbd,0x3d,0x23,0x6a,0x6a,0x9c,0x07,0xb5,0x0f, +0x63,0xd8,0xd3,0x8a,0xea,0xd1,0x8f,0xf4,0x17,0x50,0x45,0xe7, +0x54,0xc6,0x8e,0xce,0xa1,0x20,0x3c,0x6f,0x42,0x65,0x6a,0x20, +0x44,0x5b,0xc5,0x48,0x1e,0xe6,0x12,0x9e,0xb8,0xd8,0xc9,0x50, +0x78,0x12,0x64,0x73,0x2c,0x2f,0xb4,0x4f,0x80,0xbe,0xa3,0xc4, +0xc2,0x29,0xc0,0x4f,0x69,0x05,0x95,0xc5,0xb9,0x91,0xf2,0x8b, +0x6c,0x9c,0x81,0x65,0x69,0x61,0x0e,0xc3,0x20,0x86,0xfa,0x15, +0x45,0x60,0x63,0x15,0x3b,0xa5,0x04,0xef,0xdc,0xb8,0x28,0x4a, +0x12,0x3a,0x83,0xee,0xdd,0x94,0x68,0xce,0x60,0x90,0x71,0x19, +0xa8,0x1d,0x91,0x08,0xfa,0x43,0xd5,0xff,0x80,0xeb,0xcf,0x8a, +0x94,0x9f,0x66,0xe3,0x54,0xae,0x3f,0x2f,0xc7,0x3c,0xa9,0xea, +0x07,0x09,0xcf,0x36,0x2a,0x32,0x6e,0x09,0x11,0x38,0x1b,0x0a, +0xde,0x34,0x3b,0x18,0x5c,0xb8,0x23,0xc7,0xfc,0x33,0x82,0x36, +0x73,0x85,0x65,0x91,0x72,0x6f,0xb6,0x46,0xd3,0xcc,0x3a,0x56, +0x3b,0xa7,0x8d,0x0e,0x33,0x9a,0xcc,0xa9,0x37,0xd7,0x03,0x93, +0xa2,0xa8,0x93,0x28,0x35,0x04,0x56,0x6f,0x45,0x5b,0xe0,0xf7, +0x94,0x86,0x1d,0xe1,0x4f,0xa0,0x0c,0xb3,0xa1,0xd0,0x36,0x03, +0xfd,0x2c,0xbd,0x84,0x3e,0x17,0x5a,0xb2,0xea,0x08,0xc6,0x1d, +0x20,0x43,0x64,0x98,0xa3,0x05,0xc8,0xeb,0x8a,0xa2,0x89,0xa2, +0xb8,0x47,0x9f,0xa0,0x3f,0x14,0x94,0x31,0x5b,0x18,0xb9,0xb3, +0xdc,0x37,0xdc,0x5c,0xff,0xcb,0x9f,0xf6,0xe3,0x2a,0xc2,0xf4, +0x87,0xfa,0xa2,0xaa,0x33,0x9a,0x4f,0x8e,0xf4,0xa8,0x5b,0xdf, +0xc0,0x96,0xbc,0x47,0xa9,0x16,0xb6,0x6c,0xcd,0x3f,0x83,0x9c, +0xfe,0xca,0x64,0x9a,0x5a,0x98,0x0d,0x42,0x1b,0xae,0x82,0xe2, +0xa7,0x1a,0xe6,0xa2,0x0b,0x32,0x8f,0x3e,0xbc,0xad,0x4c,0x10, +0x7d,0x12,0x50,0x49,0xda,0x29,0xb4,0x9b,0x80,0xfd,0x4f,0xa0, +0xaf,0x8a,0xd7,0x4c,0x9d,0xa4,0x97,0x51,0x58,0x08,0x6d,0x87, +0xe8,0x85,0xb5,0xc1,0x56,0x10,0x6f,0xd6,0x30,0x44,0x80,0xe4, +0x65,0x41,0x5b,0x63,0x4c,0xba,0x48,0x5b,0xd0,0x6e,0xd1,0x0d, +0xa3,0x6b,0x42,0x5f,0x04,0xc2,0x3b,0x0d,0xb6,0xc9,0x14,0x87, +0x5b,0x51,0x08,0xe2,0x64,0x1a,0x99,0x84,0x23,0x5b,0xbd,0x0c, +0x41,0x2c,0x7c,0x2b,0x40,0x27,0x39,0xd0,0x51,0xac,0xa8,0x38, +0xd2,0x2a,0xee,0x90,0x6f,0xa6,0xab,0xe2,0x23,0x46,0x1e,0x46, +0x08,0xdf,0x3b,0x2a,0xf1,0xfa,0x45,0xf9,0x97,0x8a,0x4d,0x9c, +0x61,0xc5,0x58,0xb6,0xe5,0x17,0x54,0x68,0x25,0x07,0xe8,0x4c, +0xff,0x16,0xd3,0xbc,0x2b,0x7c,0x19,0x11,0x1d,0xa6,0xef,0x84, +0x67,0x27,0x90,0x0d,0x41,0xf6,0x35,0x92,0xb1,0x51,0x74,0xb6, +0x79,0x35,0x52,0x76,0x64,0x64,0x4b,0x5e,0x46,0x0e,0xc6,0x68, +0x07,0xe1,0xac,0xcf,0xe8,0x79,0x23,0xe7,0xbf,0x3b,0xdf,0x63, +0x7d,0xd6,0xea,0xdc,0x5b,0xf6,0x0b,0xe4,0x48,0xc4,0x43,0x93, +0xf5,0x45,0xcd,0x66,0xb6,0x9d,0x92,0xe4,0x31,0xbb,0x2a,0xb9, +0xcf,0xa7,0x62,0x56,0x40,0xdf,0xf9,0x74,0x84,0xba,0xc1,0xab, +0x08,0xc4,0x29,0xdc,0x6c,0x23,0xf2,0xb0,0x42,0x10,0x8f,0xd7, +0x69,0xb5,0x4a,0x9e,0xdc,0x49,0x05,0x07,0xce,0x60,0x8e,0x23, +0xe6,0x0f,0x67,0x8e,0x97,0x56,0xe7,0xdd,0xb5,0x5f,0x22,0x47, +0xbc,0xe2,0xd8,0x78,0x46,0xe4,0x94,0xf8,0x80,0x39,0x2f,0x19, +0xc6,0x46,0xb0,0x5c,0x2f,0x8a,0x3a,0xec,0x3c,0x0d,0x58,0x5a, +0x78,0x5f,0x80,0xa7,0xf4,0xa9,0xd0,0x67,0xf3,0x9a,0x9a,0xfe, +0x32,0x0a,0x31,0xa5,0x82,0xec,0xa2,0x8a,0x36,0xd0,0x7e,0x61, +0x63,0xa1,0x35,0x04,0x64,0x1b,0xa3,0x13,0x36,0x8a,0xc9,0x36, +0x77,0x44,0xca,0x06,0xaa,0x61,0xdd,0xc0,0x70,0x5d,0xd8,0xdb, +0x02,0x35,0xd7,0xcd,0x95,0x14,0x4c,0x23,0xac,0xe0,0xc5,0x41, +0x8a,0xac,0xa3,0x15,0xbc,0xb8,0x9d,0x22,0xf3,0x36,0x30,0x59, +0xd8,0xdd,0x81,0xe2,0x55,0x60,0x62,0x51,0x21,0x1e,0x36,0xc9, +0x26,0xc2,0x36,0x96,0x4d,0xbc,0x1d,0xd0,0x47,0x8e,0x70,0x3c, +0xb1,0x6e,0x9a,0xed,0xe9,0x6b,0x01,0xdf,0xaa,0x78,0xba,0x3f, +0x1b,0x97,0xa9,0xb6,0xfe,0xe1,0xdd,0x75,0x0f,0x5e,0xd8,0xcf, +0xca,0xaf,0x3b,0x98,0x1f,0x2c,0xd4,0x17,0x85,0x4c,0x7b,0x3b, +0xb5,0x85,0x87,0xfc,0xa6,0xbd,0xf0,0xdf,0x0b,0xc2,0x6b,0x20, +0xe0,0x78,0xf2,0x24,0x5f,0x6b,0x49,0x8c,0xae,0x8a,0x9e,0x38, +0x86,0x42,0x4f,0xcf,0xd3,0x78,0x29,0xf0,0x9a,0xe8,0x86,0x25, +0x74,0xb5,0x22,0xaa,0x18,0x2f,0xb9,0xdc,0x8e,0x31,0x97,0x2e, +0xd0,0x17,0x05,0x4f,0xab,0xef,0xe2,0x82,0xc9,0x94,0xac,0x62, +0xab,0xec,0x77,0xfd,0x24,0x5f,0xd6,0x64,0x59,0x7a,0x21,0x7c, +0xbb,0x41,0xe1,0x05,0x36,0xcb,0x3a,0x98,0x4b,0xb9,0xcd,0x8a, +0xd3,0x1b,0x4c,0x6c,0x69,0x51,0x8f,0xa6,0xba,0x5a,0xeb,0xa1, +0x83,0x93,0x19,0x17,0xad,0x81,0x8b,0x83,0xcf,0xb4,0xde,0x1d, +0x80,0x75,0xf5,0xd6,0x64,0x37,0x96,0x0f,0x1b,0xf8,0x41,0x1f, +0xbf,0x3e,0x03,0xe7,0xa7,0x0d,0x0b,0x44,0x3b,0xa6,0xea,0x4f, +0xe9,0x8c,0xd0,0x96,0x41,0x41,0xac,0x59,0xdd,0xd8,0x74,0x67, +0xdd,0xaf,0x7f,0xda,0xcf,0xc8,0xfc,0x0e,0xe6,0xe2,0x45,0x8a, +0x5f,0xfd,0x54,0xe6,0x77,0xd7,0x8a,0x53,0xcb,0x76,0x7b,0x5d, +0x15,0x6e,0x36,0xcf,0x98,0x89,0x87,0x22,0xd4,0x77,0x26,0x1b, +0xb5,0xef,0xf2,0x36,0x6d,0x3c,0x1c,0x38,0x25,0xd3,0x7d,0xda, +0xa0,0x76,0x53,0x22,0xfd,0xb0,0x0d,0x7a,0x0b,0x9f,0x67,0x40, +0x1f,0x2b,0x91,0x74,0x42,0x54,0x98,0x6e,0x5d,0x76,0xe2,0x6d, +0x5f,0x3e,0x92,0x27,0x21,0x02,0x64,0x79,0x59,0x4c,0xf8,0x8c, +0xb7,0xae,0xab,0xa8,0xc0,0x9b,0xed,0xc1,0x79,0x1c,0xa8,0xba, +0xac,0x68,0x0c,0x98,0xdb,0x7b,0x5e,0x8f,0xf9,0x1e,0x1b,0xef, +0xac,0x7b,0xf8,0xcc,0x7e,0x4b,0xbd,0x71,0x4a,0xe3,0xd4,0x04, +0xd4,0xe6,0x09,0x98,0x43,0x5e,0x24,0xe6,0x93,0x8f,0x73,0x39, +0xc8,0x0e,0xd4,0xcb,0x30,0x97,0xd2,0x07,0xf9,0x78,0x4d,0xde, +0xd1,0x6c,0x05,0xfb,0x81,0x9e,0xca,0x0e,0x22,0x80,0x35,0xc3, +0x7e,0x78,0x44,0x59,0x02,0x0a,0x59,0x0a,0x33,0x06,0x6d,0x40, +0x7e,0x22,0xe0,0x10,0x5f,0xf7,0x85,0xeb,0xe4,0x23,0xfc,0x53, +0xc1,0x79,0x12,0xa8,0x1a,0x8e,0x7a,0xd5,0xd4,0xdd,0x75,0x0f, +0x9f,0xff,0xd3,0x54,0xd0,0xb4,0x5a,0xaf,0x35,0xe5,0xb7,0xbc, +0xc3,0x0d,0x56,0x8f,0x6b,0x84,0x2f,0x81,0x93,0x0d,0xc7,0xa3, +0x54,0x5e,0x04,0x44,0x02,0x4d,0x75,0xa9,0x23,0xcf,0x87,0x80, +0x0b,0x95,0x3a,0x12,0x7e,0x2c,0x6a,0xca,0x5a,0xea,0xcf,0xef, +0x1a,0x60,0x37,0x39,0x5f,0x78,0x65,0xb9,0xee,0xea,0xb2,0xc5, +0x97,0xac,0xd4,0xb6,0x02,0x86,0x0b,0x6f,0x15,0x61,0xf4,0x0a, +0xc8,0xfb,0x77,0x8c,0x9f,0x68,0x7a,0x2c,0x36,0x1a,0xa4,0x87, +0x76,0x8d,0xa7,0x4a,0xd5,0x02,0x4e,0xf6,0x72,0xc7,0x5a,0x58, +0x2c,0x33,0x1b,0xed,0xf6,0xc5,0x94,0x65,0x9c,0x2e,0x3c,0x01, +0xf4,0x4e,0x2c,0x03,0x68,0xf7,0x8a,0x8c,0x9a,0x2a,0x05,0x60, +0x4f,0xb6,0x38,0xb4,0xd5,0x20,0x74,0xe4,0xfa,0xbc,0xdc,0x23, +0xe0,0x00,0x85,0xfc,0x0e,0x05,0xb3,0x14,0xc2,0x98,0x40,0xa5, +0x71,0x48,0x84,0x9c,0x91,0x83,0xef,0x62,0x69,0x9a,0x98,0x63, +0xae,0xd5,0x65,0x66,0xbc,0x70,0xff,0x9a,0x17,0xb0,0x5c,0xee, +0x98,0x51,0x44,0xd6,0x8b,0xc9,0x12,0x22,0x64,0x4c,0x0e,0x26, +0x31,0x59,0xd7,0x1c,0xb3,0x2f,0x93,0x75,0x73,0xba,0x03,0xfe, +0x21,0x77,0x38,0x9e,0x02,0xf2,0x9e,0x29,0xef,0x48,0x15,0xee, +0x93,0xd5,0x65,0x7d,0xc7,0x58,0xc7,0x7d,0x10,0x81,0xf7,0x41, +0xf6,0xc1,0x06,0xc2,0x3b,0x19,0x1c,0x37,0x40,0x2e,0xcc,0x43, +0xcd,0x71,0x4e,0xdd,0xaa,0x6c,0x8d,0x27,0x90,0x8d,0xf8,0x3e, +0xe7,0x44,0x39,0x1f,0xab,0x74,0x5d,0x1e,0x7a,0x5b,0xa5,0x67, +0xf0,0x0b,0xc0,0x98,0x86,0x42,0x9f,0x0f,0xa2,0xb4,0x06,0x72, +0xcc,0x75,0x2c,0x86,0x3e,0xe4,0x77,0xdd,0xdc,0xc0,0x6d,0x26, +0x38,0xbf,0x82,0x41,0x9a,0x4c,0x01,0x1c,0x4a,0xfd,0x14,0xe6, +0xf1,0x61,0xcc,0x43,0x23,0xe8,0x5d,0x54,0x9f,0x0b,0xb1,0x6a, +0xe8,0x2f,0x2a,0xff,0x00,0x28,0x78,0x9a,0xa6,0xf1,0x34,0x0d, +0xd6,0x43,0x53,0xe2,0xa9,0x22,0x4f,0x53,0x6f,0x77,0xac,0xf9, +0x17,0xcf,0x92,0x2f,0xcf,0x52,0xa6,0x71,0x4a,0x94,0x42,0xa0, +0x61,0xb1,0x58,0xb1,0x9b,0x4e,0x25,0xba,0xb7,0xa7,0xc0,0xca, +0x01,0x38,0x93,0xca,0xc8,0xe9,0x50,0x30,0x00,0x37,0x19,0x79, +0xe6,0xe2,0x70,0x1a,0x22,0x4a,0x30,0x7a,0x9c,0x28,0x3c,0x23, +0x61,0x8d,0xb4,0x17,0x6e,0xe6,0x06,0x6a,0x02,0x0d,0x12,0x5e, +0xf7,0x21,0x34,0x25,0x8e,0x2a,0x56,0x17,0x50,0x01,0x5e,0x9b, +0xfa,0x53,0x6a,0xea,0x15,0x4f,0x6b,0xea,0x03,0x79,0xea,0xb7, +0xd1,0x1e,0xb9,0xde,0x35,0x85,0x72,0x53,0x8e,0xb9,0x49,0x97, +0x0d,0xa9,0xa5,0x08,0x1e,0x01,0x34,0x3e,0xdb,0x9c,0x1f,0x49, +0x83,0x45,0x89,0xf7,0xe0,0xa9,0xa8,0x78,0x03,0x06,0x6a,0x95, +0xfa,0xc7,0x10,0x54,0x2f,0x08,0x64,0x8e,0x47,0x15,0xc7,0xc1, +0x72,0xb2,0x23,0x18,0x3e,0x00,0xb9,0x96,0x05,0x61,0x31,0x95, +0x86,0xe8,0x4d,0x1a,0x93,0x6d,0xce,0x8c,0xa4,0xfe,0x55,0xb5, +0x25,0x1f,0x2e,0xde,0xbc,0xc5,0xfe,0x84,0xda,0x26,0xa0,0x5b, +0x57,0x5d,0x84,0xb0,0x9e,0xea,0x89,0xe3,0x85,0x57,0x15,0xc8, +0x75,0x44,0x17,0x6e,0x01,0x2c,0x07,0x97,0x1c,0x3d,0x1c,0x8e, +0xa2,0xb6,0xa7,0xe5,0x98,0xd3,0x54,0xdb,0xf5,0x45,0xf0,0x10, +0x9e,0xa2,0x6c,0x73,0x50,0x24,0x75,0xb3,0xb8,0x7c,0xb8,0x45, +0x78,0x2e,0x04,0x73,0xba,0x5c,0x5b,0x38,0x40,0x35,0xb6,0x9a, +0x1b,0x6b,0x88,0x7f,0x08,0xdb,0x52,0xc6,0x70,0x16,0xf8,0xf8, +0x8f,0xd6,0x74,0x0a,0x1d,0x61,0xfc,0x48,0xdd,0x12,0xd0,0x18, +0xc8,0x0d,0x57,0x53,0x2f,0x1a,0xdd,0x28,0x98,0xa6,0x5a,0xbc, +0xcc,0x2d,0xde,0xe7,0xf9,0x53,0x0b,0xc6,0x20,0x7b,0x2c,0xda, +0xc9,0x73,0x18,0xd0,0x5b,0x79,0x6a,0xe0,0x69,0x29,0x06,0x4d, +0x8e,0xc5,0xb7,0x07,0x6a,0x21,0xdd,0x62,0x29,0x24,0x34,0xe0, +0x14,0x3f,0x91,0xea,0x58,0x3c,0x23,0x17,0xfd,0xed,0x18,0x3b, +0xde,0x20,0x5b,0x8f,0xb6,0x14,0x10,0x14,0x70,0x9a,0xef,0x57, +0x45,0x38,0x9d,0x8f,0xb5,0xed,0x7f,0xd2,0x90,0x58,0x0c,0x56, +0x41,0x2d,0x3f,0x36,0x5f,0x7f,0x32,0xa5,0x5d,0xdc,0xf5,0x61, +0xa0,0xc9,0x66,0x78,0xcd,0xa0,0x49,0xb1,0x58,0x6f,0x90,0x26, +0xec,0x17,0x81,0x1a,0x3b,0x86,0xf3,0xa3,0x72,0xf5,0xe2,0x1f, +0x3a,0x0a,0xcc,0x33,0x17,0x72,0x2f,0x7a,0xb8,0x7a,0x31,0x48, +0xab,0xdc,0x2d,0x8e,0x42,0xde,0x2a,0xea,0x45,0xb1,0x8c,0x1c, +0xf4,0xe3,0x5e,0x4c,0x30,0xc8,0xb3,0x47,0x3b,0x0a,0xa8,0x58, +0xd4,0x0b,0xfd,0x74,0x1e,0xd6,0xb4,0x3f,0x2b,0xea,0xc5,0x22, +0xc7,0xd4,0xc2,0x05,0x45,0x9c,0x4b,0x32,0xcb,0xe2,0xfc,0xbf, +0x77,0x9e,0x39,0x81,0xd9,0xf6,0xb1,0xd8,0xd6,0x1f,0xac,0x55, +0xe1,0x5d,0x19,0x52,0xdd,0x5a,0x6e,0x35,0xfe,0xca,0x50,0xcb, +0x0d,0xe3,0x78,0x6c,0x25,0x7a,0xb4,0x57,0x0b,0xe2,0x74,0x1f, +0xc5,0xd5,0xfd,0xf4,0x0d,0xac,0x6e,0x7f,0xaa,0xb8,0x86,0xe8, +0x38,0x43,0x1e,0x76,0xec,0x80,0xd6,0xfc,0x9c,0x19,0x9c,0xbc, +0xb7,0x4a,0x78,0xb3,0x25,0x6a,0x77,0x34,0xe5,0x87,0x58,0x30, +0xdb,0x5a,0x37,0xd9,0x3c,0x7d,0xf4,0x9e,0x9c,0x6d,0x5c,0x37, +0xc7,0x45,0x91,0xad,0xf0,0x27,0xc0,0x1b,0x06,0x75,0x4a,0xc4, +0xb2,0x03,0xb4,0x4a,0x03,0x3a,0x90,0x47,0x8d,0x82,0x46,0xf0, +0xd7,0x61,0xb5,0x66,0x70,0x30,0x9b,0x9d,0x15,0xdb,0xf1,0xc6, +0x01,0xc8,0x95,0xe5,0x0a,0x79,0x79,0xbe,0x67,0x76,0x35,0xae, +0x4f,0x72,0xdf,0x7f,0xf3,0xd3,0xef,0xfe,0xb0,0xa7,0x8b,0x12, +0xbf,0x41,0x9d,0x91,0x6d,0x06,0x46,0x7a,0x98,0x81,0xf3,0x8d, +0x9c,0xe9,0xee,0x5b,0xf3,0x36,0xdc,0xf9,0xc3,0x7e,0x4e,0x94, +0xf8,0x1d,0x6a,0x4e,0x69,0x35,0x2e,0xda,0x83,0xaa,0x35,0x30, +0x30,0xac,0x35,0x85,0xc9,0x32,0xd5,0x54,0x28,0xcd,0x1f,0x7e, +0x01,0x47,0x39,0x15,0xbf,0x6c,0x90,0x73,0xb5,0xba,0xa2,0x64, +0xfa,0xf1,0xb2,0x75,0x71,0x87,0x42,0x1c,0x1f,0xab,0x2b,0x46, +0x7b,0xfe,0x0a,0xed,0xc5,0x4c,0x66,0x71,0x25,0xc1,0x11,0x81, +0x76,0x63,0xf1,0xdb,0xa3,0x5b,0x0c,0x6b,0x7b,0x79,0xb2,0xcf, +0x9e,0xbc,0xed,0x3f,0x3f,0x10,0xa5,0x36,0x41,0x4d,0x51,0xe6, +0x0e,0xdc,0x10,0xa5,0x18,0xd3,0xdd,0x12,0x5e,0x87,0x61,0x1b, +0xd6,0x0a,0xa4,0x9f,0x28,0x4c,0xd8,0x58,0x9e,0xdb,0x8e,0xa9, +0x6a,0xdd,0x44,0xc9,0x7e,0x20,0xeb,0x4a,0x77,0x61,0xab,0xc0, +0xf7,0x0e,0xa9,0x7b,0x49,0x22,0xa8,0x23,0xe0,0xbe,0x19,0xc6, +0xe2,0x3a,0xd3,0x5a,0xa7,0xb6,0xbf,0x2a,0xca,0xb4,0xe1,0x7d, +0xc8,0xeb,0xfd,0x8a,0x70,0x3b,0xcc,0xa2,0x31,0x82,0x22,0x84, +0x6d,0x2d,0x8b,0xe8,0xde,0xc2,0x7f,0x37,0x57,0x22,0x55,0xa9, +0x82,0xb0,0x7f,0x0a,0xf4,0xbd,0x11,0x39,0xb3,0x41,0x5a,0xad, +0x79,0x1e,0xd8,0x2e,0x82,0x62,0xf5,0x05,0xf5,0x6b,0x2f,0xac, +0x67,0xbd,0xae,0xe4,0x7a,0xdf,0x8e,0x9b,0xd7,0x69,0x9a,0xf0, +0x8c,0x81,0x82,0x92,0x2a,0x77,0x8a,0x8d,0xde,0xcb,0x36,0xcf, +0x45,0x16,0xf0,0x80,0x76,0xf1,0x2e,0xe8,0x67,0xb6,0x10,0x5a, +0x6b,0xa0,0x8e,0xf4,0xab,0xf0,0x62,0x3c,0x05,0x2b,0x79,0x8f, +0xc9,0x4a,0xc2,0xeb,0x82,0x2b,0xa5,0x8b,0x8b,0x0e,0x67,0x15, +0xd5,0xd3,0x1d,0x21,0x54,0xc6,0xaa,0xb0,0x55,0x04,0x64,0x17, +0x65,0x7d,0x99,0x4e,0x36,0x1c,0x15,0x21,0xdf,0xcf,0xc1,0x71, +0x4c,0x36,0x2d,0xdb,0xdc,0xae,0xc8,0x18,0x9b,0x95,0x01,0x9c, +0x2c,0x7c,0xfb,0x43,0x25,0x90,0xe9,0xf9,0x9a,0xbc,0x62,0x46, +0x09,0x3b,0x03,0xe4,0x6f,0xcc,0x2f,0x01,0xa3,0x23,0xa9,0x83, +0x70,0xdb,0x07,0x38,0x61,0xcd,0x56,0xac,0x1d,0x28,0x93,0x18, +0xd6,0x97,0x4a,0xe4,0x0e,0x3c,0x53,0x31,0x04,0x4c,0xe1,0xb5, +0x98,0xab,0x39,0xde,0xb0,0xaa,0x2d,0xb4,0xaa,0x7d,0xaf,0xaa, +0xb5,0x8f,0xa4,0x58,0x11,0x7c,0x1e,0x22,0x68,0xa2,0xf0,0x75, +0x5a,0xe4,0x77,0x68,0xb9,0x00,0x36,0xbb,0x7f,0xc3,0x4c,0x46, +0x4d,0xd1,0xac,0x49,0x6d,0xd8,0xb9,0x9d,0xbe,0xe1,0xcc,0xaa, +0xf3,0x97,0xed,0x67,0x68,0x53,0x1c,0x76,0xd1,0x17,0x57,0x1b, +0xd3,0xf2,0x9d,0xd6,0x57,0xa6,0xf8,0xac,0xd9,0xbe,0x6a,0xfb, +0xca,0xcf,0x3c,0x28,0x8e,0xce,0xb2,0x94,0xeb,0x8a,0x25,0x8c, +0x6b,0x33,0xdd,0x37,0xdd,0x5a,0xf7,0xcd,0x33,0xfb,0x79,0xca, +0x89,0xc3,0x25,0xfa,0xe2,0xd0,0x69,0xcd,0x26,0x45,0x78,0xc8, +0x96,0xf4,0xb1,0xd0,0x6f,0x81,0x70,0x67,0x71,0xdd,0x94,0x61, +0x8c,0x6d,0x14,0x38,0xd6,0x83,0x6c,0x22,0x7b,0x3b,0x3e,0x75, +0xdd,0x9d,0x2f,0xb7,0xbb,0xbe,0x5e,0xbe,0xe6,0xe8,0x02,0x94, +0x24,0xd5,0x37,0xf7,0x25,0x97,0x00,0x3d,0x76,0x13,0xfe,0x5f, +0x31,0x12,0x5a,0xa0,0xb4,0x4b,0x53,0x67,0x12,0x2b,0x42,0x36, +0xa2,0x83,0x69,0x31,0xed,0xba,0x0d,0x38,0xc0,0x5c,0x94,0x45, +0xcb,0x31,0x58,0x05,0x6d,0x6f,0x0f,0xf4,0x89,0xb0,0xbd,0x07, +0x38,0xec,0x44,0xb2,0x28,0x71,0x17,0x18,0xde,0x96,0xd4,0x8a, +0xb2,0x86,0xf4,0xa3,0x91,0x89,0x16,0x94,0xfd,0x45,0x61,0xd5, +0x7b,0x8c,0x43,0x93,0x84,0x77,0x0f,0x08,0xa3,0x53,0x2a,0x2f, +0xc8,0xbb,0x79,0xb8,0x43,0xe5,0x05,0x11,0xe5,0xeb,0x30,0x00, +0xee,0xf6,0x0a,0x00,0x27,0x59,0xb9,0x46,0x5a,0x14,0x01,0xe0, +0xab,0xa2,0xe4,0x40,0x06,0xc0,0x83,0x5f,0x01,0xe0,0x08,0x2b, +0x45,0x47,0xdb,0x22,0x00,0x7c,0x80,0x99,0xb6,0x16,0x1e,0x3b, +0x60,0xfe,0xe0,0x05,0x1e,0xeb,0xcf,0xaf,0xba,0xfc,0xb5,0xfd, +0x3a,0x0d,0x4f,0xc2,0xaa,0xb3,0xf4,0xc5,0x8d,0xa7,0xb7,0x9d, +0x12,0xdf,0x7e,0x7e,0xe4,0x82,0x36,0x0b,0x3d,0x3e,0xba,0xba, +0xfe,0xd6,0x5d,0x7b,0x16,0x8d,0xe0,0xa2,0x19,0xfa,0xe2,0x46, +0x93,0xdb,0x8c,0x8b,0xf1,0x58,0xd4,0xad,0xdb,0x7b,0xdd,0xfc, +0x96,0xc5,0x39,0x7a,0x29,0xfc,0x7c,0xc5,0x85,0x9f,0xcf,0x59, +0xf8,0xd9,0xcb,0xc2,0xcf,0x03,0x15,0x7e,0xae,0xcc,0x4d,0xbc, +0xa3,0xfa,0xcd,0xf8,0xf9,0x27,0x1c,0x0b,0xe6,0x48,0x75,0xa0, +0x5a,0x3e,0x1f,0x1e,0xd3,0xe7,0x0a,0x9e,0x76,0x05,0x49,0xd9, +0x1a,0xdb,0x4e,0x75,0x18,0x53,0x37,0x8f,0xbe,0x6e,0x5e,0x8e, +0x52,0xe9,0x31,0xbe,0xa3,0x50,0xc6,0xd4,0x23,0x85,0xf7,0x3d, +0x40,0x07,0x3d,0xc2,0x71,0xae,0xa5,0x26,0x7f,0xcc,0x36,0x7f, +0xd4,0x65,0x73,0x99,0xc4,0x78,0xb4,0x79,0xdc,0x75,0xf3,0x50, +0x94,0x8c,0xd0,0x69,0x9d,0xc2,0xa3,0x29,0xc2,0x9b,0x21,0x6e, +0xb2,0x8e,0xe9,0x53,0x95,0x3b,0x3c,0xb2,0x46,0x8d,0xdf,0x22, +0x2c,0x77,0x78,0xce,0xc3,0x87,0xd5,0xb3,0x95,0x3b,0x7c,0x20, +0xb5,0x32,0x52,0x12,0xba,0x52,0x35,0xaa,0x16,0x77,0x22,0x3d, +0x60,0xad,0x7e,0x32,0xeb,0x38,0x56,0xc3,0x6a,0x99,0xdd,0xba, +0x04,0xd8,0x78,0x8d,0xde,0xe0,0xc5,0xb6,0x60,0x11,0x77,0xb8, +0x89,0xf0,0x9e,0x04,0xf5,0x58,0xc9,0x96,0x4a,0x00,0x51,0xbe, +0x00,0xd6,0x31,0x74,0xf2,0x7a,0x4f,0xad,0x47,0x2f,0x45,0xb2, +0x8a,0x49,0x06,0x2b,0x12,0xdc,0x47,0x57,0x85,0xaf,0x43,0xad, +0xef,0x6c,0x2e,0x78,0x6f,0xad,0x71,0x03,0x1b,0x6a,0x2f,0x96, +0xaa,0x9c,0x12,0x15,0x7e,0x81,0xdb,0x77,0x16,0xab,0x9c,0x12, +0x63,0x28,0x46,0xd8,0xc7,0x40,0x41,0x7f,0xb3,0xa4,0xf1,0xe1, +0xb7,0xeb,0x7e,0x46,0x37,0x7b,0x36,0x1d,0x88,0xc1,0x77,0x17, +0xea,0x8b,0x49,0x9f,0x56,0x6b,0x42,0x63,0x0f,0xda,0xab,0x6d, +0xfb,0x6e,0xc3,0xaf,0x5c,0x72,0x85,0xf6,0xc4,0xe0,0x60,0x55, +0xe2,0x31,0xa9,0xde,0xe8,0x06,0x1e,0xb4,0x58,0xa5,0x87,0x18, +0x95,0x8b,0xa3,0xb0,0x8a,0xeb,0xc7,0x95,0x1e,0xa2,0xbf,0x11, +0x46,0xb3,0x1c,0xf7,0xd8,0xe4,0x4f,0x66,0xfb,0xb4,0x92,0x08, +0x3e,0x04,0x95,0xb0,0xa2,0xd6,0x86,0x2a,0xaa,0x24,0x0f,0x15, +0xad,0x24,0x0f,0x75,0x85,0xc7,0x36,0x28,0x18,0x68,0x36,0x34, +0x3e,0xbc,0xb5,0xe6,0xde,0x53,0x51,0xe2,0x08,0x54,0x9c,0xd6, +0x68,0x62,0x98,0x6a,0x6e,0xeb,0xd7,0x1b,0xbe,0x7b,0xca,0x8f, +0x74,0x4f,0x2c,0x0e,0xd6,0x17,0x87,0x4c,0x6e,0x3a,0xba,0x85, +0x07,0x2d,0x69,0x8f,0x53,0x5d,0x2e,0xc7,0x01,0xae,0x9f,0xa9, +0x8c,0x68,0x53,0xd8,0x86,0xe4,0xe7,0xe3,0xd1,0x8a,0xb2,0x55, +0xd4,0x14,0xd3,0xad,0x95,0x46,0x67,0x45,0xe9,0x32,0x6c,0xd4, +0xd5,0x52,0x46,0xdd,0x32,0x11,0xf4,0x10,0xe8,0x9c,0x32,0xb4, +0xe7,0x0a,0xdf,0x8d,0x50,0xc0,0x22,0xc5,0xd8,0x7c,0x73,0xdd, +0xdd,0x27,0x54,0x19,0x2a,0x4f,0x6d,0x32,0x21,0xdc,0x83,0xf6, +0x69,0x9f,0x7c,0xbd,0xe1,0xdb,0x27,0xe6,0x73,0xa8,0x92,0xda, +0x74,0x24,0x77,0x60,0xa1,0x8a,0xc7,0xaa,0xc9,0x43,0x54,0x47, +0x94,0x62,0x01,0xbc,0x1b,0xdb,0xf3,0x26,0x99,0xa2,0x64,0x6c, +0x6d,0x23,0x06,0x77,0x5d,0xd4,0xe5,0x40,0xea,0x85,0x11,0x6a, +0x66,0xf7,0xe6,0x6b,0x54,0x03,0x2b,0x19,0xc3,0xe7,0x0f,0x5d, +0x30,0x64,0x81,0xc7,0xc6,0xaf,0xd7,0x7e,0xfb,0xd4,0xfe,0x3d, +0x8d,0x8e,0xc7,0xea,0xa9,0x3c,0x4d,0x6f,0x4e,0xaf,0x3f,0xb1, +0x79,0xdb,0xf9,0x6d,0x16,0x84,0x2f,0xf4,0xd8,0xf6,0xcd,0xc6, +0x87,0x7f,0xda,0xef,0x5a,0x65,0xe3,0xb9,0xec,0x8d,0x49,0xb5, +0x47,0x35,0xf6,0x58,0xd4,0xb3,0xa7,0x70,0x7b,0x04,0xab,0xb6, +0x28,0x31,0x93,0x40,0x21,0x46,0x07,0x73,0x8d,0x85,0x8c,0x75, +0xde,0xae,0x6c,0x39,0x3d,0x90,0xc1,0x06,0x76,0x31,0x67,0x5c, +0x94,0x57,0x58,0xaa,0x95,0x8a,0x03,0xba,0x00,0xf4,0x42,0x76, +0x30,0x7e,0x33,0xe7,0xe3,0x08,0x79,0x2b,0xd6,0x5c,0x52,0x43, +0xce,0xa7,0x16,0xe6,0x04,0x55,0x72,0x9b,0xad,0x3d,0x2a,0x47, +0x6f,0x61,0xb9,0xb6,0xd2,0x0b,0xf7,0x98,0x5e,0xba,0xdc,0x47, +0x37,0x8c,0xb4,0x67,0xb2,0x18,0xe0,0xc0,0x50,0xea,0x47,0x2d, +0x82,0xe0,0x73,0xed,0xd7,0x6b,0xc2,0x3d,0x12,0xba,0x86,0xcf, +0x6d,0xe8,0x67,0x8e,0xf4,0x66,0x72,0x81,0x6f,0x69,0x36,0x97, +0x44,0xe3,0xe1,0x8c,0x7a,0x35,0x9c,0xdb,0x6b,0xbf,0x7b,0x66, +0xff,0xe1,0xd5,0x70,0xdc,0xa6,0xd7,0x9b,0xd8,0xec,0xe5,0x70, +0xbe,0xdd,0xf8,0xdb,0x0b,0xfb,0xbd,0x57,0xc3,0x71,0x9f,0x54, +0x6b,0x24,0x0f,0xa7,0x97,0x35,0x9c,0xd5,0x1f,0xf1,0x70,0x18, +0x7a,0x1b,0x93,0x56,0xce,0x7c,0x6f,0xd2,0xb4,0x71,0x93,0x7d, +0xe6,0x2f,0x71,0xdf,0x7d,0x60,0xf5,0xa1,0xd3,0xf6,0xcf,0x5b, +0x8c,0xd6,0xab,0x76,0x89,0xa5,0x05,0xa1,0x01,0xfb,0x13,0xd1, +0x27,0xe3,0xde,0x91,0x13,0x47,0x7c,0xd7,0xaf,0x5c,0xbf,0x68, +0xfd,0x6c,0xdc,0x4c,0x55,0x7c,0x0e,0x64,0xba,0xab,0xe5,0xbe, +0xcb,0xea,0x49,0x0d,0x51,0xa1,0x18,0x90,0x20,0x30,0xa8,0x63, +0x8d,0x16,0x55,0x2a,0x3d,0x6c,0x81,0x1d,0x31,0xe9,0xe1,0xd7, +0xcf,0x9e,0xd4,0xf8,0x5a,0xb9,0xe2,0xfb,0x50,0x82,0xd1,0x31, +0x31,0x99,0xaa,0x50,0x68,0xe2,0x99,0xb3,0x01,0x1b,0xf4,0x73, +0x19,0xa7,0xe9,0x3e,0x74,0x4a,0x0a,0xb0,0x89,0x0a,0xc5,0x61, +0x8c,0xec,0x61,0x98,0xeb,0x2f,0xcb,0x19,0x38,0xdc,0x9c,0x70, +0x49,0x9e,0xa5,0x63,0x5a,0x30,0x70,0x49,0x2a,0xe0,0x72,0xe6, +0x6e,0x63,0x24,0x09,0x8e,0x59,0x12,0x8c,0x93,0x3d,0xdd,0xb1, +0xce,0xd3,0xf3,0x57,0xb1,0x9c,0xfd,0x5b,0xe7,0x0b,0x78,0x47, +0xaf,0xd3,0x35,0x91,0xaa,0xd4,0x0d,0xc0,0x8f,0x07,0x88,0x52, +0x00,0x03,0x64,0x9a,0x61,0xee,0xbb,0x2c,0xd7,0x3c,0x37,0x53, +0x2f,0xca,0xd4,0x67,0xe6,0xdc,0x4b,0x32,0x87,0x9e,0x04,0x81, +0xcd,0x8c,0x01,0xca,0xa5,0xce,0x42,0x67,0xe1,0xfb,0x36,0x75, +0x65,0xc3,0x52,0x1b,0x09,0xcf,0x28,0xf7,0x3e,0x8b,0x1d,0x55, +0xd2,0x4d,0x78,0x9c,0x05,0xfc,0x21,0x5c,0x06,0x39,0x4f,0x01, +0x45,0xd0,0xfb,0x0f,0xc0,0x19,0x0e,0x74,0x8f,0x75,0xcd,0x4c, +0x38,0xa1,0x28,0x92,0x44,0x85,0x1d,0x20,0xec,0x07,0x81,0x66, +0x52,0xef,0xb9,0x60,0xb2,0x7d,0xd6,0x96,0xa6,0x1a,0xb3,0xb2, +0xdc,0x53,0x6b,0x91,0x98,0x21,0x4a,0x17,0xc2,0xda,0xcd,0xbf, +0x04,0xb6,0xa4,0x5c,0xe7,0x08,0x75,0xfa,0x99,0x44,0x75,0x0d, +0xc7,0x69,0x18,0x85,0x37,0xc3,0xa5,0x51,0xf8,0x8d,0x32,0x6b, +0xfe,0x74,0x38,0xc1,0xfc,0xc9,0x34,0x0c,0xde,0x85,0x7e,0x39, +0xe6,0x86,0x08,0xd7,0xa1,0x65,0xa4,0x4c,0x65,0x38,0x13,0x80, +0x21,0x42,0xfc,0x04,0x31,0xf4,0x34,0x4d,0x25,0x7c,0x0c,0xa7, +0x25,0x1d,0x70,0x09,0x6d,0xbd,0x69,0x2e,0xd5,0xa9,0xbf,0x6c, +0x2e,0x02,0x18,0xf6,0x04,0x52,0x4f,0x27,0xab,0x0d,0x6d,0x04, +0x4c,0xa1,0x28,0x47,0xe1,0x6b,0x07,0x74,0xcd,0x69,0x49,0x8c, +0x7a,0x47,0xcb,0x87,0xda,0x59,0xa1,0xde,0x4b,0xd4,0x00,0xfc, +0xa9,0x95,0x0c,0x91,0x01,0x30,0x9b,0xae,0xfc,0xaa,0x38,0xba, +0x48,0xe8,0xe3,0x9b,0x0c,0xee,0xd8,0x0a,0x40,0x23,0xb5,0x36, +0xf7,0x9b,0x2a,0xf9,0x8d,0xc2,0x07,0xad,0x64,0x55,0xa6,0xa4, +0x17,0xd4,0xcb,0xb9,0x8d,0x2d,0xaa,0x14,0x15,0xc0,0xa8,0xa7, +0xd3,0x03,0xcc,0xf5,0x40,0x9f,0xc9,0xd9,0x42,0xf4,0x54,0xe1, +0x07,0xfb,0xb1,0xed,0xfa,0xbd,0x8a,0xa2,0xde,0x75,0x39,0xb8, +0xce,0x16,0xe9,0xb3,0xcd,0x46,0xae,0xd9,0x4e,0x78,0x75,0x82, +0xb6,0xd4,0x3c,0x56,0x75,0x68,0x19,0x77,0x68,0x6d,0x58,0x35, +0xae,0x58,0x9c,0x96,0xc4,0xa9,0x3e,0xd5,0x26,0x9b,0x08,0x68, +0x03,0xd8,0x96,0x3e,0x73,0xae,0xe3,0x1d,0xca,0x76,0x4f,0x23, +0x9a,0x21,0xdf,0x57,0xd4,0xed,0x98,0xfa,0xbb,0xb0,0x4a,0x4c, +0xed,0xbe,0x1e,0x14,0x69,0x19,0x15,0x79,0xbc,0xc0,0x0d,0xc6, +0x9a,0x46,0x2b,0xd9,0xf1,0x91,0xc6,0xa2,0xd5,0x7b,0xed,0x87, +0x3f,0x04,0x6e,0xa2,0xf7,0x45,0x00,0xeb,0xb6,0x79,0xc1,0x6a, +0x39,0x56,0x38,0x7f,0xef,0xd8,0xf1,0xe3,0xbe,0xeb,0x56,0xae, +0x5b,0xb4,0x61,0x36,0x6e,0xa2,0x9a,0x3e,0x87,0x78,0x39,0x0a, +0x7b,0x2e,0xd0,0x72,0x19,0x6d,0x86,0x83,0x08,0x62,0xc3,0xa1, +0x71,0xac,0xe1,0xac,0x0d,0x66,0xc9,0x70,0x19,0xed,0x6c,0xac, +0x00,0x41,0x38,0xbd,0x0f,0xe6,0x35,0xe0,0x99,0x48,0xc4,0x25, +0xd5,0x68,0x49,0x92,0xea,0x5e,0xe3,0x44,0x45,0x85,0xbf,0x87, +0xcb,0x2a,0x8a,0x2a,0x8a,0x6a,0x3b,0x96,0x81,0xca,0xfb,0x4a, +0x9b,0xe5,0x26,0xc3,0xca,0xf9,0xfa,0x26,0x85,0x27,0x60,0x78, +0x65,0xeb,0x5f,0xad,0x4a,0x7b,0x72,0x80,0x59,0x3a,0x42,0xc6, +0x0a,0xb7,0x3b,0x2a,0x44,0x7b,0x8c,0x4a,0x04,0xcd,0xf6,0xee, +0x86,0xd5,0xc2,0xef,0x1e,0x50,0x69,0x59,0x46,0xbe,0x50,0xa1, +0xdc,0x06,0xdd,0xd0,0x68,0xc3,0x32,0x23,0xdb,0x4c,0x8a,0xac, +0x4f,0x91,0x49,0x18,0x59,0x97,0x22,0x13,0x31,0x52,0x0b,0x89, +0x11,0x65,0x18,0x84,0x3c,0x8f,0x90,0x35,0x89,0xe5,0xae,0xaf, +0x6c,0x24,0x3b,0x01,0x0d,0x60,0x06,0x72,0x85,0xc5,0xa1,0x9f, +0x0c,0x2a,0xca,0xde,0xca,0xb7,0x26,0x0b,0xbf,0x6f,0x01,0xf7, +0xd0,0xe0,0x57,0xd9,0x5b,0x69,0xc3,0x2d,0xd7,0xb1,0xa9,0x27, +0x45,0xc6,0x63,0x64,0x15,0xeb,0x5f,0x2d,0xa4,0xd3,0xeb,0xdd, +0xc2,0xca,0xb4,0xd0,0x39,0x52,0xc5,0x0e,0xff,0x89,0x8d,0x21, +0x5c,0x7e,0x41,0xce,0x47,0x5e,0x26,0xa7,0x71,0x21,0xbd,0xe9, +0x74,0x82,0x63,0x28,0x8d,0x72,0x96,0x50,0xc5,0x3f,0x1b,0xf8, +0xc6,0xbf,0x8a,0xdf,0xe0,0x62,0xea,0x41,0x17,0x9c,0x29,0x5c, +0x6c,0x96,0x30,0xfe,0xc2,0xe5,0xe7,0xb9,0x74,0x48,0x18,0x6d, +0xc3,0x45,0x41,0xea,0x83,0x23,0x7a,0x42,0x62,0x44,0x51,0x5d, +0x0f,0x57,0xdd,0x69,0x61,0x74,0x0c,0x17,0x91,0x0a,0xea,0xe7, +0xa4,0xb1,0x8e,0xd9,0x20,0xbc,0xd2,0x41,0x96,0xa3,0x9b,0x0a, +0xb7,0xf0,0xa5,0x23,0x96,0x86,0x3b,0x07,0xf1,0x90,0xa2,0x80, +0xf6,0x90,0x87,0xd1,0xda,0x8a,0x56,0xe5,0x81,0x25,0x31,0xf6, +0x3c,0x21,0x4e,0x6d,0x4d,0x87,0xb1,0x25,0xd9,0x8e,0x40,0x63, +0xbf,0xe5,0x31,0xce,0x1f,0x40,0xb6,0xa6,0x48,0x73,0x33,0xc8, +0xe6,0x2a,0x69,0x95,0xdf,0x51,0x75,0x1c,0xda,0xaa,0x70,0x0a, +0xdb,0xe5,0xf1,0x40,0xc5,0xbe,0x02,0xd4,0x5d,0xf5,0x52,0x5b, +0xd3,0x7e,0xae,0x07,0x8e,0x6f,0x55,0x46,0x43,0x28,0x1c,0xa8, +0x12,0x1a,0x72,0x03,0xb1,0xaf,0x1a,0x28,0xfd,0xaf,0x06,0xca, +0xbd,0x6a,0x80,0xdc,0x69,0x1a,0x7e,0xc9,0x0c,0x07,0x01,0x5b, +0x99,0xaa,0x05,0xff,0x7a,0x05,0xdf,0x82,0x08,0xf8,0x11,0x30, +0xce,0x48,0x9a,0x15,0x35,0x27,0x8c,0xb1,0x70,0x05,0x6c,0x94, +0x49,0x57,0x70,0x6a,0x04,0x1d,0xc2,0xea,0xe4,0xa7,0xbe,0x3e, +0x88,0xe9,0x05,0x34,0x84,0x55,0x97,0xed,0x0a,0xc3,0xb7,0xbf, +0x81,0xba,0xcb,0x2a,0xf4,0x21,0x2b,0x50,0x15,0x75,0x8b,0xa4, +0x3a,0xfd,0x54,0xc7,0x9d,0xd5,0xd0,0x4b,0xf8,0x5d,0x82,0x7b, +0xb4,0x0a,0xfd,0x79,0xc5,0x0f,0x00,0xd9,0x8e,0xc2,0x0a,0xcb, +0x41,0x81,0x07,0xfe,0xc0,0xe8,0x19,0xdf,0xcc,0x92,0x0b,0x70, +0x72,0x2b,0x3a,0xf4,0x84,0x6c,0x34,0xc1,0x4a,0x25,0x2a,0xd7, +0xa3,0x4d,0x85,0x15,0xb7,0xd1,0x28,0x2d,0x94,0x46,0xa9,0x39, +0xf4,0x70,0x87,0x3a,0xb4,0x33,0x1e,0xa7,0x57,0xe5,0x55,0xd6, +0x5c,0x17,0x5e,0x1f,0xc2,0x0b,0x53,0xbb,0xa8,0xb1,0x5d,0xf1, +0xab,0xf0,0x0c,0xb3,0x08,0x82,0xf3,0x5f,0x14,0x54,0x51,0x19, +0x21,0xca,0x7d,0x06,0x05,0xe3,0xcd,0x03,0x26,0xeb,0xd0,0xf8, +0x1a,0x46,0x9c,0xa9,0x37,0xac,0x9c,0x88,0x3b,0x32,0xaa,0x7c, +0x67,0x6a,0x59,0x3a,0x2f,0xc9,0x6a,0xce,0xa1,0x50,0x30,0xc1, +0xdc,0x64,0x66,0x80,0x23,0xa1,0x2a,0xab,0x2f,0x3d,0x94,0x3e, +0x8e,0x31,0x0b,0x2f,0xd2,0x96,0xc7,0x2a,0x8e,0x13,0x0d,0x63, +0x2c,0xe5,0xb5,0xbc,0x08,0xe2,0x8d,0xb3,0x10,0x60,0x92,0xca, +0x36,0x47,0x0b,0x69,0xa2,0x41,0x4f,0xb1,0x7b,0x38,0xad,0x36, +0x9b,0xf1,0xea,0xa3,0xf3,0x0c,0x5d,0xea,0x0b,0x7f,0x80,0x57, +0x89,0xe5,0x68,0x0a,0x4f,0x23,0x6e,0x57,0x64,0x43,0xc2,0x69, +0xab,0x8b,0xec,0x8a,0x22,0x93,0x3d,0x61,0x23,0x15,0xa8,0x14, +0x71,0x3e,0xc0,0x18,0xb3,0x11,0x63,0x4c,0x51,0xe6,0x5b,0xe8, +0x97,0x6f,0x6e,0x6d,0x25,0x23,0x75,0x6a,0x85,0xb3,0x85,0x7b, +0x55,0xa0,0x9d,0x4c,0x1c,0x3c,0x1c,0xd6,0xc8,0x5e,0xff,0xa4, +0x82,0x1b,0x64,0xe1,0xcc,0x04,0x05,0x43,0xb9,0x13,0xef,0x2a, +0xee,0xc9,0xbc,0x85,0x5d,0xdc,0x55,0x2c,0xa5,0x06,0x3d,0x18, +0x97,0x46,0xbc,0xc2,0xa5,0x29,0x34,0xb2,0x13,0x8e,0xec,0xae, +0x70,0x29,0xd3,0xf7,0x51,0xf4,0xed,0xc3,0x29,0xcd,0x45,0xaf, +0xce,0x69,0xab,0xf5,0x50,0x28,0x73,0x87,0x0b,0x65,0xee,0x33, +0x78,0x84,0x15,0x2d,0x90,0x39,0x51,0xe7,0xde,0xaf,0x53,0xf4, +0x9d,0xc3,0x69,0x99,0x8b,0xfe,0x21,0xd3,0x27,0x70,0xef,0x19, +0x72,0x1e,0x53,0x47,0xb6,0x5c,0x23,0x53,0xd5,0x68,0x67,0xe5, +0x9c,0xeb,0xaf,0x6a,0xbc,0xaf,0x6a,0x24,0x86,0xd3,0x62,0x55, +0x63,0xa3,0xd5,0xa3,0x7a,0xda,0x5f,0xcb,0xff,0x58,0x79,0x77, +0x6d,0xda,0xb9,0xb6,0x10,0xe7,0xb8,0x00,0x38,0x85,0x9a,0xd0, +0x57,0xd6,0x79,0xef,0x68,0x75,0xfa,0xd9,0xd9,0x3a,0xef,0xed, +0xaf,0xd7,0xc4,0xc5,0x06,0x65,0x60,0x6c,0x14,0xcd,0x35,0x59, +0xee,0xcd,0xa0,0x33,0x8c,0x54,0xdf,0x16,0x5e,0x5f,0xc2,0x7c, +0x6e,0xbb,0x1b,0x2f,0xcc,0x13,0x50,0x13,0xb7,0x2a,0x9a,0xe4, +0x28,0x1e,0x32,0xd3,0x34,0xe6,0x09,0xc5,0x46,0xea,0x3c,0xf7, +0x9c,0xcf,0x78,0x5e,0x26,0x1d,0xd4,0xeb,0x9b,0x56,0xae,0xb8, +0x7a,0xfa,0x2d,0x1a,0xe0,0x3a,0xb5,0xfd,0x4b,0x78,0xfc,0xc1, +0x15,0xe7,0xab,0x8a,0xed,0xa3,0x68,0xa6,0xab,0xe2,0x11,0xfc, +0x11,0x9e,0xe2,0xaf,0x6c,0x4c,0xe5,0xc2,0x5d,0x9c,0x6a,0x9d, +0xe1,0x0e,0x15,0x01,0x6c,0x87,0x36,0xa6,0xa3,0x06,0x56,0xd7, +0x0b,0x3f,0x07,0xaa,0xa2,0x6f,0x10,0x7a,0x2b,0xeb,0x3c,0xb7, +0x93,0xf0,0x78,0xcc,0x5c,0xd2,0x14,0x97,0x96,0x51,0x34,0xce, +0xc5,0x65,0xbf,0x7a,0x83,0xf4,0x20,0x9c,0x76,0xde,0x64,0x9d, +0xc2,0x4d,0x27,0x44,0xa8,0x17,0x47,0xcd,0x95,0xac,0xf7,0x47, +0x40,0x55,0x86,0xe0,0xd6,0x29,0xb4,0xaf,0x1a,0x66,0xcf,0x6c, +0xf3,0x72,0xa4,0x1c,0xc2,0xc3,0x5c,0xf6,0xef,0x61,0x5e,0xe7, +0x61,0xb6,0xb4,0x0e,0xb9,0xc7,0x99,0x2f,0x80,0x39,0xe0,0xdf, +0x74,0x92,0x81,0x39,0x77,0xfd,0x85,0xd5,0xa1,0x19,0xdc,0xa1, +0x1c,0xac,0xae,0x71,0x8f,0xcc,0x85,0x74,0x1b,0x85,0x75,0x72, +0x5c,0xc6,0xe8,0x8c,0x8d,0xfa,0x5a,0x27,0xc7,0x29,0xcc,0x74, +0x81,0x62,0xda,0xf6,0xd5,0xf0,0xb2,0x0c,0x6c,0xca,0x1d,0x3b, +0xe3,0x33,0xde,0xc5,0x93,0x1a,0xea,0x78,0x4a,0xd8,0x3b,0xa8, +0xb7,0xab,0x5d,0x41,0xd9,0xe7,0xd0,0x3c,0x83,0x9e,0xe3,0xb0, +0x70,0xfa,0xd4,0x6c,0xa1,0xd1,0x5a,0xfa,0x8c,0x9f,0x55,0x69, +0x11,0xd0,0x0c,0x1a,0xd1,0x78,0x95,0x80,0x4e,0x85,0x66,0x9a, +0x8d,0xf7,0x14,0x51,0xcf,0x70,0x5a,0xe7,0x22,0xda,0xce,0x44, +0xa5,0x8e,0xc3,0x26,0x19,0xa2,0x0e,0xa5,0x5d,0x99,0xe3,0x68, +0x8e,0x19,0xa8,0xa8,0x06,0x84,0xd3,0x47,0x2e,0x2a,0x65,0x54, +0x35,0x53,0xac,0x18,0xc8,0x6f,0x56,0x59,0xe1,0x2a,0x83,0xbc, +0xcc,0x84,0xb3,0xf1,0xc1,0xeb,0xec,0x36,0x30,0xbb,0x1b,0x68, +0x53,0xc9,0xe2,0x56,0xdd,0x59,0xa3,0x5e,0x8f,0x8c,0x73,0x7f, +0x95,0x2f,0x2e,0x50,0xe5,0x8b,0x73,0xf4,0x07,0x9a,0xa3,0x3e, +0x30,0x7c,0x8e,0x09,0xe1,0xb4,0xc8,0xc5,0x7d,0x13,0x73,0x67, +0x9e,0xf8,0x82,0x77,0x8a,0x5d,0x6d,0xe0,0xa9,0x06,0xcb,0xdb, +0xf7,0xc3,0xe8,0xb2,0x23,0x1d,0x2a,0x1a,0x0a,0xd7,0x77,0xcc, +0x65,0xb0,0x55,0xc5,0xf5,0x93,0x7a,0x59,0x67,0x5c,0x1f,0x55, +0x94,0xf6,0x8d,0xc9,0x17,0x2b,0xf2,0xb4,0x30,0x3a,0xc3,0xe4, +0xd5,0x0d,0x75,0xb8,0xfd,0x76,0x2e,0xbe,0x8d,0xfb,0x5d,0x3f, +0xc9,0x2c,0x77,0xca,0xd2,0x39,0xdc,0xa5,0x48,0x37,0xb0,0x68, +0x40,0x0f,0xaa,0xe3,0x64,0xb1,0x56,0x4c,0x78,0x96,0x07,0x2c, +0xc6,0xa6,0x40,0x31,0x83,0xc6,0x60,0x31,0x1c,0xc3,0x16,0xe5, +0x78,0xf3,0x2b,0x4b,0xbc,0xd4,0x36,0x54,0xb4,0x3e,0xaf,0x0b, +0x63,0xf1,0xb3,0xad,0x17,0xd0,0x0b,0x07,0x9c,0xd7,0x69,0x27, +0x55,0x35,0x68,0xf5,0x8f,0xb8,0x5a,0xab,0x4c,0x8f,0x59,0xd4, +0x38,0x74,0x75,0xfc,0x71,0xff,0xb2,0x7a,0x06,0x07,0x6f,0x9a, +0x07,0x75,0xfa,0x80,0x27,0x9d,0x45,0xf1,0x94,0x70,0x3a,0x6c, +0x86,0x6b,0x8f,0x1b,0x39,0x1f,0xab,0x13,0xe6,0x78,0x75,0xc2, +0xbc,0x30,0x1f,0x2f,0xa8,0x13,0x66,0x51,0xfa,0x80,0x8a,0xe6, +0x2b,0xb6,0x2b,0x57,0x92,0xbb,0x08,0x62,0x98,0xe6,0xf7,0x26, +0x5c,0xa7,0x37,0x84,0xff,0x44,0xbe,0x7c,0x83,0x05,0xea,0x87, +0x42,0xd3,0x58,0xa2,0xfe,0xc4,0x96,0xbc,0x1c,0x24,0xb4,0x86, +0xd6,0x35,0x96,0xa1,0xb5,0x0f,0x19,0x17,0x7d,0x0e,0x58,0x89, +0x6e,0xaa,0x93,0xe2,0xe7,0x2a,0x99,0x72,0x2b,0x16,0xf0,0x5a, +0x57,0x36,0x12,0x2f,0xdf,0xb7,0x2e,0xb0,0x17,0x45,0x60,0x3d, +0x0b,0xf1,0x5d,0xa7,0x81,0xc6,0xac,0x4c,0x7a,0x04,0x23,0x71, +0x17,0xe6,0x5d,0x62,0x85,0x5b,0x8d,0x1b,0x8d,0xa6,0x39,0x2e, +0xdc,0x77,0xbb,0xa9,0x31,0xa9,0x26,0xf9,0xcf,0xa4,0xaa,0x8c, +0x8e,0xf6,0x3a,0xbf,0x00,0x59,0x67,0x3b,0x48,0x4f,0xea,0xe4, +0x28,0xae,0xd0,0xe0,0x75,0xea,0x29,0x2a,0x94,0x62,0xa9,0xff, +0x44,0x25,0x53,0xac,0x79,0x09,0xb0,0x87,0xca,0xb9,0x9e,0xb4, +0x1c,0xcc,0x12,0x6c,0xae,0x53,0x7b,0xe1,0x37,0x0e,0x3a,0xa8, +0xab,0xa6,0x86,0x93,0x91,0xd8,0x46,0xd5,0x44,0xb0,0xb4,0x9b, +0x4d,0x55,0x0a,0xab,0xdf,0x9d,0xed,0x80,0xce,0xab,0x94,0x0c, +0xef,0xa9,0x4c,0x3f,0xfe,0x6d,0x9d,0xc7,0x54,0x96,0x9f,0xaa, +0x2a,0xcb,0xcf,0x59,0x55,0xa9,0x85,0xd9,0x00,0x64,0x31,0x19, +0x51,0xe4,0x2e,0x8f,0xa7,0xb6,0x56,0x6f,0x66,0x70,0x6f,0x46, +0xe2,0x67,0xae,0xee,0x56,0xd9,0x0e,0x4f,0x69,0xb6,0xf3,0x19, +0x38,0x3e,0x01,0x8a,0xa4,0x34,0x46,0x7d,0x3c,0x9a,0x51,0x78, +0x50,0x75,0xb6,0xc1,0x76,0x88,0xa0,0xed,0xce,0xe1,0xae,0xef, +0xd0,0x69,0x10,0x85,0x08,0xb7,0x17,0xc0,0x00,0xd3,0xbd,0x13, +0x5b,0x9f,0xc2,0x9f,0x81,0x41,0xc3,0x67,0x2a,0xf2,0x4a,0x88, +0xca,0x96,0x64,0xfe,0x82,0x79,0x06,0x56,0xa4,0xe1,0x39,0x05, +0x35,0x23,0xa8,0x11,0x55,0xc4,0xb7,0x22,0x1c,0x5a,0x8e,0x46, +0x15,0x30,0xcd,0xb9,0x00,0xf0,0x90,0xd3,0x64,0x96,0x2f,0xd4, +0x30,0x66,0x1b,0xd4,0x8c,0xcb,0x9b,0xe9,0xb4,0x5f,0xfe,0xb1, +0x5b,0xbd,0x26,0x60,0xa8,0x9a,0x2f,0xc1,0x6c,0x45,0xe5,0x81, +0x4f,0xb5,0x6a,0x96,0x17,0xa2,0x2e,0xb4,0x53,0x60,0xd6,0x1c, +0x66,0x66,0x18,0xb1,0x38,0x97,0x46,0xde,0x34,0x19,0x27,0x0c, +0xd0,0xc9,0x9f,0x46,0xa9,0xbc,0x51,0x93,0xea,0x90,0xef,0x4c, +0xc6,0x9f,0x23,0xf1,0xd0,0x3d,0x6e,0x20,0x5f,0x3d,0xc6,0x4b, +0xce,0xdf,0x54,0x85,0x2c,0xab,0xc2,0x3b,0x37,0xcd,0x09,0x61, +0xd4,0x57,0x55,0x18,0xab,0x50,0xad,0xcc,0x02,0x3c,0xc6,0xa4, +0x4d,0xf2,0x81,0x91,0xe2,0xa4,0x44,0xd6,0x24,0xac,0x6b,0x53, +0x19,0xd0,0x86,0xd1,0x20,0x45,0x35,0xe6,0xdf,0x6c,0x8f,0x32, +0x6d,0x63,0x66,0x5b,0x9d,0xf6,0x39,0x1f,0x29,0xb6,0x99,0x16, +0xdb,0x09,0x16,0x62,0xee,0xaf,0x2a,0x8c,0xb6,0xc0,0x72,0xe9, +0x5a,0x2c,0xe5,0x99,0xb6,0x61,0x3e,0x4b,0xdf,0x13,0x2c,0x26, +0xed,0x39,0x40,0xdb,0x64,0x3c,0x03,0x60,0x86,0xb9,0xab,0xf3, +0x34,0x19,0x8f,0x07,0x85,0xdf,0x1a,0xa0,0x00,0x19,0x7a,0x89, +0x1f,0xfb,0x5c,0xc0,0xb2,0x74,0x6a,0xa5,0x75,0x45,0xb3,0x28, +0x7e,0xae,0x8a,0x1f,0x51,0x8e,0xde,0x55,0xf1,0x2f,0x8b,0xbb, +0x7e,0x22,0x5c,0xb1,0x71,0x65,0x1d,0x83,0xa2,0x01,0xbf,0xc3, +0x63,0x97,0xa4,0x26,0x7b,0x3a,0x86,0x00,0x5d,0xa2,0x0e,0x56, +0xa0,0xdc,0x12,0x6f,0x01,0x79,0x09,0xb7,0xf5,0xc0,0xe4,0x1a, +0xc5,0xd2,0x1b,0x56,0x2e,0xad,0x80,0x58,0xa0,0xbf,0xa8,0x8d, +0x70,0x7f,0xc2,0xf0,0xd8,0x8a,0x38,0x5d,0xd2,0x95,0x5b,0xf6, +0x0d,0x1a,0x1e,0x8f,0xc3,0xd9,0x92,0xee,0x6e,0x08,0x7d,0x03, +0x30,0x1e,0x2c,0x27,0x6c,0x13,0x78,0xf9,0xf7,0x05,0x1c,0x46, +0xc7,0x9c,0x9b,0x5e,0x46,0xa8,0x2e,0xa9,0x78,0xc6,0x2b,0x9e, +0x5d,0x8a,0x48,0xf7,0x53,0x09,0x2b,0x22,0x6e,0xd0,0xbb,0x40, +0x5d,0x7a,0x18,0xc2,0xeb,0x24,0x60,0x7c,0x15,0x83,0xdc,0x55, +0x34,0xfe,0x70,0x3a,0xaf,0x3e,0xee,0x9f,0x8f,0x85,0x5a,0x2b, +0x96,0xbd,0x7c,0x0b,0x54,0x34,0x33,0x2b,0x3e,0xf5,0xbf,0x86, +0xa4,0xfa,0x58,0x5c,0xf5,0xf1,0x3f,0x06,0x74,0x82,0x16,0xa9, +0xc8,0x65,0x56,0x44,0xe7,0x16,0xbc,0xe0,0x13,0xb1,0x7e,0x2d, +0xaa,0xcf,0xff,0x52,0xed,0x6c,0x73,0x6d,0x24,0xd5,0xd0,0x19, +0x3f,0x6f,0x14,0xa5,0x6f,0x01,0x3e,0x94,0xac,0x0a,0x07,0x52, +0x77,0xa0,0xb1,0xd4,0xb2,0xf0,0x19,0x60,0x6b,0x6e,0x43,0x56, +0x31,0x7e,0x37,0x67,0xe2,0x48,0x99,0x1d,0x67,0xce,0xab,0x26, +0x67,0x52,0x4b,0xd5,0x9f,0x2f,0x2f,0xa8,0xb0,0xe8,0x45,0x81, +0x97,0x5b,0x50,0x03,0x61,0xff,0x55,0x81,0x2d,0x5b,0x51,0xe0, +0xe5,0x16,0x54,0x57,0x94,0xfe,0x00,0x28,0xf0,0xba,0x39,0x5e, +0x78,0xb1,0x7c,0x3c,0x44,0xdd,0xff,0x89,0xc0,0xdc,0xc2,0x54, +0xdd,0x68,0x5c,0x8b,0xb1,0x3d,0x36,0xa6,0x50,0x2b,0xdc,0x2c, +0x77,0x43,0xfb,0xcf,0x6e,0x60,0x4d,0x9a,0xf2,0x5a,0xdc,0xe5, +0x16,0xa6,0x87,0x28,0xfd,0x3e,0x50,0xe5,0xeb,0x66,0x5a,0x14, +0x85,0xaa,0x0a,0xab,0x0c,0x61,0xd3,0xe1,0xfb,0xc6,0x85,0xde, +0x0a,0xf0,0x7e,0x6f,0x3c,0xc1,0x15,0xa2,0x54,0x10,0xe0,0xa2, +0x2a,0x2e,0x14,0x3d,0xdc,0x85,0xa2,0x7f,0x30,0x1e,0xbf,0x2c, +0x08,0x95,0x5a,0x4d,0x05,0xa0,0x33,0x19,0x40,0x3b,0xde,0x52, +0xde,0xb9,0x8d,0x86,0x32,0xf4,0xa3,0xa5,0x0d,0xf7,0x9a,0xb6, +0x68,0x4d,0x8e,0x54,0x96,0xfe,0x13,0xec,0xcb,0x33,0xbb,0x53, +0xf8,0x6f,0x06,0x73,0xe4,0x22,0x45,0xe1,0xaf,0x6c,0x7b,0x55, +0xe3,0x0e,0xf9,0x3a,0x3e,0x66,0xd8,0x9c,0xa6,0x10,0x74,0xae, +0x85,0xa0,0xd3,0x14,0x82,0x1e,0xaa,0x10,0x34,0x5f,0x56,0xa1, +0x6a,0x42,0x3b,0xa4,0x98,0xcb,0xc3,0x54,0xfe,0xe5,0x69,0xb2, +0xd7,0x6c,0x40,0x77,0x6c,0x9f,0x45,0xcf,0x30,0x1a,0x1f,0x66, +0xb1,0x95,0x7b,0x1a,0x9b,0x13,0x0f,0xc8,0x57,0xa1,0xe9,0xd6, +0x8c,0xa6,0x2d,0xf4,0x5c,0x5c,0x68,0x4f,0x15,0x58,0xd6,0x15, +0x58,0x6e,0x09,0xf4,0x05,0xdb,0x85,0x4e,0xf8,0x4b,0x55,0x7c, +0x8e,0x4d,0x5c,0x15,0xbf,0xc2,0x16,0x54,0xfc,0x08,0x34,0x71, +0x66,0x42,0x36,0xf5,0x2b,0x0c,0x60,0xe6,0x5b,0x58,0x33,0xfc, +0x17,0xf3,0x92,0xa2,0xb4,0xcf,0x4b,0x24,0xad,0xa0,0x7a,0x1b, +0xc5,0xfb,0x20,0xad,0xc4,0x0a,0x2e,0x60,0x1d,0xae,0xfe,0x26, +0xff,0x06,0x0a,0x58,0x8b,0xcb,0x2a,0xa9,0x46,0xa3,0x2c,0xba, +0xca,0x1c,0x32,0xcf,0xb3,0x2c,0x3d,0xc5,0xfb,0xb2,0xbc,0xeb, +0x8b,0x61,0xe1,0x71,0x5e,0xa1,0xea,0x33,0x16,0xaa,0xae,0x10, +0x02,0x94,0x48,0xbf,0x08,0xdb,0x18,0xbe,0x6e,0xa7,0x1e,0x7a, +0x88,0x42,0xd8,0x1e,0x8c,0x30,0x3e,0xcf,0xc6,0xe9,0xa2,0xcc, +0x3c,0xd0,0x29,0x4b,0xc6,0x75,0x04,0x2c,0x2e,0x4a,0x74,0x01, +0xd2,0xa7,0x03,0x6d,0xa1,0x17,0xc2,0xe6,0xc3,0x1d,0x2d,0x0d, +0xb2,0xbe,0xf0,0x3c,0x05,0x38,0x81,0x17,0x04,0x1b,0x51,0xb6, +0x18,0x35,0x2d,0xb1,0x59,0xf4,0x17,0xb7,0xfb,0x7b,0x96,0x6c, +0xc4,0x3d,0x6f,0xc1,0xfb,0xc1,0x6d,0x01,0xac,0x56,0xf9,0x84, +0x58,0x05,0xb5,0x36,0x3f,0x62,0x74,0xfa,0x48,0x01,0xf8,0x02, +0x05,0xe0,0x31,0x16,0x1e,0xd1,0x3e,0x07,0x42,0x41,0x09,0xbc, +0x61,0xb0,0xad,0xf1,0xe6,0x05,0x51,0xa6,0x33,0xd0,0xc5,0x27, +0xa4,0xd3,0xf8,0x6a,0x20,0x37,0xa0,0x6e,0xe0,0x18,0xfe,0x63, +0x8c,0x46,0x31,0x34,0x46,0x78,0x84,0x28,0xd2,0x03,0x06,0x02, +0xbe,0x79,0x51,0x2e,0xc2,0xbe,0x2a,0x6b,0xcf,0x15,0xfa,0xf6, +0x09,0x01,0x8d,0xaf,0xa9,0xe8,0x41,0xd1,0x03,0xd3,0x57,0xa4, +0x60,0x73,0x80,0xa2,0xfe,0x46,0x85,0xa2,0x65,0xc6,0x1e,0x07, +0x81,0xce,0x3d,0x21,0x37,0x1a,0x5f,0x51,0x11,0xba,0x29,0x42, +0x37,0x26,0xac,0xca,0x0a,0x7c,0x36,0x38,0xbe,0x80,0x6a,0x64, +0x3a,0x3e,0x2d,0xaa,0xf1,0xa6,0x32,0x1c,0xde,0xc3,0x18,0x95, +0xbc,0xe5,0x0a,0x65,0x3e,0xe1,0x8d,0xe5,0xe2,0xff,0xa6,0xaa, +0xf6,0xa6,0xea,0x4f,0x84,0xac,0x27,0x07,0xf2,0x3c,0xb8,0x01, +0xde,0xa4,0x34,0xe7,0x15,0x55,0xf3,0x16,0x1b,0x71,0x6f,0x5e, +0xe0,0x8a,0x49,0xe6,0x9c,0x0b,0x5c,0xf1,0xea,0x93,0x20,0x57, +0x73,0x7f,0x71,0xb5,0x20,0xae,0x85,0xfe,0xb4,0xc3,0xf9,0xa0, +0xa8,0x91,0xe2,0x2e,0xda,0xf6,0xae,0x46,0x32,0x9e,0xf0,0xf6, +0x77,0xf5,0xad,0xb8,0x6a,0xa4,0xb8,0x22,0x2f,0x4e,0x01,0xc2, +0x3e,0x51,0xf5,0x6e,0x04,0x95,0x36,0x12,0x70,0x57,0xa6,0x3a, +0x6a,0x6b,0x3f,0x19,0x9c,0x5b,0xd9,0xf6,0x09,0x83,0x46,0x85, +0xb1,0xf0,0xad,0x66,0xb3,0xfe,0x12,0x25,0x37,0x81,0x08,0x6e, +0x0a,0xb5,0x85,0xd6,0x87,0x97,0x05,0x4f,0xf3,0x42,0x9a,0x26, +0x42,0x58,0x70,0x9e,0x13,0x9e,0xac,0xf8,0x2c,0xcb,0xe1,0x23, +0x83,0x57,0x56,0x3d,0x7c,0x78,0x5e,0xd6,0xa7,0x1d,0x66,0x73, +0xcb,0xc8,0x28,0xf8,0x06,0x68,0xba,0x2a,0x7c,0x5f,0x78,0xcc, +0x54,0x6f,0x5d,0x9f,0x65,0x28,0xf4,0x76,0x0f,0x36,0x22,0x1a, +0xb0,0x11,0xc1,0x0a,0x3e,0x1c,0x27,0x3b,0x26,0xb3,0xa0,0xe6, +0xdb,0x01,0xc3,0x61,0xb5,0xd0,0xb2,0x98,0xff,0x43,0xc5,0x7f, +0xe4,0xbf,0x6b,0x74,0x92,0xad,0xd9,0x46,0x10,0xfa,0x6f,0xaa, +0x6c,0x88,0x28,0x6d,0xaa,0xb2,0xbd,0x5c,0x56,0xd1,0x31,0x5e, +0x19,0x04,0xdb,0x94,0x41,0xd0,0x55,0x35,0xb5,0xd4,0xea,0xd8, +0x0f,0x05,0x3d,0x79,0xbd,0x81,0xba,0xb1,0xd8,0xe2,0xb4,0x91, +0x4e,0x8b,0x92,0x1d,0x78,0x56,0x6f,0x30,0x2a,0x66,0x1d,0x98, +0xc9,0x9b,0x35,0xfd,0x9c,0x2c,0xce,0xc0,0xbc,0xa4,0x42,0xb5, +0x87,0x84,0xe7,0xe1,0x22,0xc8,0xbe,0x56,0x95,0x56,0xc2,0xf4, +0x0c,0x2e,0x5d,0xa3,0x4a,0x1b,0xb3,0xb1,0x68,0xaf,0xee,0xc2, +0xe6,0xb6,0x3b,0x0a,0x71,0xef,0x2d,0x42,0xe3,0x0b,0xe0,0x89, +0xf0,0xfc,0x59,0xdd,0xd9,0x5e,0x58,0xed,0x15,0x2e,0x1f,0xf2, +0x1a,0x95,0x05,0xc8,0x85,0xd7,0x33,0x17,0xa2,0xff,0xcf,0x56, +0x6f,0x88,0x92,0x15,0xfe,0xe1,0x3b,0x83,0xf6,0x0a,0x88,0x50, +0x70,0xeb,0xc6,0x4d,0xf3,0x86,0x82,0xbc,0xcb,0x44,0xc8,0x7c, +0xde,0x19,0x3c,0xce,0x92,0x42,0xaf,0xc4,0x48,0x77,0xa4,0xc2, +0x5a,0x13,0xf2,0xf1,0x80,0x85,0xb5,0x7c,0xe2,0x18,0xd9,0xfa, +0x1a,0xd8,0xca,0x9c,0x74,0x41,0x94,0xaa,0x04,0x17,0x5d,0xf7, +0x62,0x85,0x47,0x8c,0xfa,0x50,0x28,0x5d,0x6b,0x49,0xb3,0x0c, +0x59,0x1d,0x23,0xcc,0xea,0x5c,0x12,0xcc,0xea,0xa0,0xbe,0xf0, +0x6a,0xc4,0xc3,0x5c,0x0a,0x0d,0x8c,0x18,0x9c,0x2a,0x0f,0x02, +0x0e,0x50,0xff,0x4c,0xbd,0xa8,0x53,0x17,0x5a,0xef,0x7c,0x07, +0x0a,0x26,0x9a,0x33,0x0d,0xde,0x00,0x89,0xae,0x0d,0x70,0xcd, +0xcc,0xd3,0x1c,0x89,0x75,0x8d,0xf6,0xa2,0x44,0x0a,0x58,0x48, +0xf3,0x04,0x23,0x4d,0xc7,0xdf,0x50,0x4f,0x85,0x66,0x4d,0xa6, +0x6f,0x5e,0x43,0x87,0xcb,0xe8,0x4b,0x11,0x52,0x00,0x2d,0xe4, +0x0d,0x85,0x0a,0x63,0xfe,0x0b,0x15,0x2e,0xc3,0x35,0x05,0x9e, +0x90,0x25,0x1b,0xd2,0x09,0x33,0x4c,0x7b,0xda,0x4a,0xc5,0x4f, +0xfd,0x59,0x16,0x57,0x18,0x51,0x7e,0x0d,0xb4,0xf4,0xbf,0x8b, +0x65,0x03,0xd2,0x44,0xc0,0x65,0x30,0xb7,0xab,0xe2,0x25,0xa2, +0x94,0x27,0xb4,0x71,0xa4,0xc1,0xf5,0x20,0x05,0x26,0xd5,0xfb, +0x09,0x4b,0xf1,0x67,0xd5,0x64,0x53,0xe1,0x9e,0x69,0x19,0xed, +0x4b,0x71,0xe3,0x7f,0x35,0xe1,0x57,0x4b,0xd8,0x47,0x42,0x86, +0xca,0x80,0x51,0x4a,0x04,0x78,0x00,0x1d,0x95,0x29,0x0c,0x0b, +0x84,0xdf,0x62,0xa0,0x11,0xd4,0x88,0x01,0x66,0xc9,0x0f,0x55, +0xce,0x96,0x58,0xf5,0xa6,0x82,0xba,0x0c,0x92,0xb1,0x42,0x5b, +0x6a,0x5d,0x7f,0x4d,0x33,0x84,0x36,0x0c,0x84,0xfb,0xb7,0x80, +0xe5,0x59,0x5f,0x95,0x5b,0xa4,0xde,0xc7,0x9a,0x40,0x65,0x5f, +0xbd,0x45,0x50,0x96,0x26,0xe6,0x0a,0x9f,0x74,0xc6,0x15,0x34, +0xc2,0x31,0x83,0xcd,0xb3,0xda,0x40,0xed,0xa4,0xaf,0xc9,0x0f, +0xdd,0xbb,0x2d,0xf0,0x86,0xae,0x12,0x0b,0x22,0x30,0x1b,0xa4, +0x64,0x9b,0xdb,0x8c,0xc5,0x2a,0x17,0x68,0xa4,0xbc,0x98,0xa5, +0xdf,0xcd,0x5a,0xb5,0xfa,0xcb,0xc0,0xd9,0x19,0xee,0xb3,0x06, +0xa5,0xcc,0x8d,0xf4,0xc3,0xcf,0x16,0x18,0x69,0x66,0x02,0x36, +0xba,0x40,0x33,0xe5,0xe5,0x3c,0xed,0xc7,0xbc,0x95,0x6b,0x0e, +0x06,0xce,0xce,0x74,0x9f,0xd9,0x27,0x3a,0xad,0xb9,0x9f,0x4d, +0x04,0xfe,0x0c,0x72,0x00,0x75,0x13,0x15,0xa6,0xb9,0xde,0x34, +0x18,0x40,0x5d,0x84,0x77,0x3e,0xc8,0x87,0x20,0x7b,0xe5,0xe1, +0x1b,0x85,0xa1,0x4a,0xf6,0xdd,0x13,0xfa,0xea,0x7f,0xbd,0x5e, +0x30,0x80,0xe2,0x0b,0x3d,0x81,0xbc,0x6b,0x5a,0xef,0x17,0x94, +0x29,0x04,0x9a,0xec,0xf2,0xf5,0xeb,0x3c,0xb5,0xe1,0xc2,0x73, +0x1c,0x50,0x86,0x0c,0x50,0x0e,0xe4,0x19,0xd0,0x89,0x6a,0xa2, +0x0d,0x0a,0xb2,0x18,0x6e,0xb6,0x91,0x6b,0x73,0x35,0xa9,0xe1, +0x01,0x51,0xa1,0x09,0x43,0x6a,0xe9,0xad,0xdc,0xb3,0x96,0x23, +0xb8,0x02,0x05,0xc4,0x62,0x00,0x9b,0xae,0xd6,0xcf,0x5b,0x79, +0xe6,0xc7,0xba,0x5c,0x20,0x6b,0x0a,0x7b,0x29,0x15,0x19,0x3d, +0x42,0x78,0xf4,0x02,0xe1,0xb6,0x4e,0x9d,0x23,0x5b,0x04,0xde, +0xd6,0x8f,0x26,0x5b,0xf6,0x31,0x66,0x0d,0xee,0x36,0xb7,0xad, +0x1f,0xde,0xc6,0xe0,0xf3,0x34,0x4c,0x76,0xcc,0xd4,0x6f,0x9f, +0x5f,0xb9,0x7a,0x4f,0x20,0x1e,0x59,0x68,0xf0,0x2c,0xcc,0xe8, +0xdf,0x7e,0x6e,0x1b,0xbf,0xb9,0x78,0x0f,0xeb,0x9c,0xa7,0x49, +0x6c,0xbd,0x96,0x7d,0x53,0x81,0x9e,0xef,0x0c,0x1c,0x19,0x46, +0x53,0xd4,0x47,0xb7,0x56,0x74,0x66,0x5c,0x63,0xe4,0x99,0xcb, +0xc3,0x45,0xa9,0x69,0xc0,0x4c,0xdf,0x15,0x9e,0x63,0x80,0x76, +0x2a,0x14,0x35,0xd1,0xd5,0x3f,0x55,0x40,0xc1,0x79,0xe6,0xfb, +0xaa,0x57,0x41,0x56,0x31,0x29,0xd3,0xcf,0xfb,0xa5,0x1f,0xfb, +0x5b,0xd6,0x35,0xfc,0x3f,0x73,0x99,0xa4,0x48,0x0c,0xe1,0x39, +0x11,0xb0,0x14,0x0d,0x72,0xec,0xe0,0x7e,0xaf,0x85,0x7f,0x8f, +0x8f,0x9b,0x78,0x47,0x8d,0x6c,0x12,0xcd,0x13,0xda,0x57,0xca, +0x21,0xff,0x1e,0x57,0xfc,0xf0,0x5f,0xcd,0x37,0x69,0x20,0x3c, +0xdf,0x87,0x82,0x99,0xd4,0x08,0x68,0x25,0x4d,0x35,0x82,0x63, +0x5f,0x50,0x79,0xf5,0x8f,0x23,0xbb,0xe0,0x46,0xa4,0x26,0xdb, +0xc9,0x1c,0xc3,0x8c,0xc7,0x12,0xe7,0x29,0x5e,0x9e,0x3f,0xa9, +0x5f,0x3f,0xb5,0x72,0xd5,0xe7,0x81,0x73,0xce,0x8e,0x98,0xd3, +0x7b,0x6e,0xe7,0x45,0xbe,0x38,0x79,0x81,0xb1,0xc0,0x4c,0xc2, +0xf2,0xe7,0xa9,0xab,0xbc,0x90,0xa5,0xe5,0x66,0xae,0x5c,0xb5, +0x3b,0x70,0xce,0x39,0xf7,0x59,0x43,0xbb,0xa4,0xc5,0xfb,0xd9, +0x3e,0x00,0x47,0x4d,0xc6,0xe2,0xcb,0x8b,0xf2,0x26,0x56,0xae, +0x1a,0xf3,0x07,0xb9,0xf3,0x3f,0x1a,0xdd,0xee,0xef,0x18,0x0c, +0x98,0x8f,0x6f,0x64,0x52,0x14,0xaf,0xd7,0x52,0x5f,0xc1,0xd9, +0xe1,0xb3,0xbb,0xcd,0x4d,0x59,0xec,0x8b,0xb7,0xd0,0x23,0x93, +0x62,0x65,0xfc,0x19,0xfd,0xca,0xe9,0x15,0xab,0x76,0x06,0x52, +0x2b,0xba,0xcb,0x72,0x3f,0x8c,0xa6,0xf3,0x3c,0x9e,0x51,0xf3, +0x68,0xbd,0x25,0x31,0x3b,0xc7,0x9c,0xad,0xd3,0x72,0x39,0xc9, +0xb8,0x6e,0xbe,0x23,0x2a,0xe4,0x01,0x7e,0x48,0xfd,0x0d,0xd9, +0x0a,0x8b,0xbb,0xd2,0x11,0x6d,0xc5,0xc2,0x56,0x1a,0x1d,0x71, +0xe3,0x3b,0x60,0xb6,0x7a,0x59,0xeb,0xe3,0x1c,0x95,0x9c,0x79, +0xb9,0x5c,0xc0,0xb5,0x26,0x47,0x91,0x51,0x35,0xf6,0x8f,0x10, +0x2a,0x06,0x83,0x55,0x6f,0xce,0xe0,0x1b,0x19,0xdc,0x9b,0x46, +0xc2,0xfd,0x4d,0xc0,0x29,0x0b,0x85,0xfe,0x36,0x9c,0x6e,0x6c, +0x50,0x72,0xf5,0xa6,0x95,0x42,0x1e,0x35,0x53,0x2f,0x62,0x3d, +0xbc,0xf3,0xe7,0xb3,0x1a,0x77,0x95,0x0f,0xae,0x3f,0x75,0x36, +0x92,0x12,0x92,0xd4,0x97,0x7d,0xf1,0xe7,0xce,0x05,0x6c,0xd4, +0x33,0xce,0x9f,0x53,0x5f,0xf6,0x65,0xaa,0x6c,0x44,0x66,0x6b, +0x73,0xb0,0xf0,0x58,0x04,0xd8,0x5e,0x05,0x9c,0x3f,0x48,0xa7, +0xbf,0xd7,0x7e,0xbb,0xb9,0x72,0xad,0x08,0xba,0x0d,0x54,0xc6, +0x78,0x12,0x66,0x21,0xb7,0x61,0x34,0xb4,0x90,0x37,0x9c,0xde, +0x49,0x1d,0x58,0x0e,0xa2,0x35,0xe0,0x38,0x02,0xe4,0x66,0xfc, +0x18,0xf6,0xf6,0x20,0xe5,0x83,0xea,0x2a,0x3f,0xfd,0xd7,0x9d, +0xb2,0x7c,0x67,0xf3,0xeb,0x77,0x18,0xa4,0xf9,0xc8,0xcf,0x18, +0x5e,0x30,0xf1,0x37,0x49,0xc6,0xec,0x33,0xee,0xb3,0x86,0x24, +0xcf,0x89,0xf5,0x9b,0x85,0x61,0x58,0x3b,0x83,0x37,0xf9,0xbe, +0xc2,0xe3,0x80,0x4d,0xb1,0x5e,0x06,0x4d,0xa6,0x2f,0x30,0x4d, +0xdb,0x16,0x42,0xb5,0xe0,0x69,0x6b,0x5e,0x4e,0x1b,0x19,0x12, +0x35,0x14,0x9e,0x2b,0x78,0x2b,0x0e,0x05,0x79,0x96,0xee,0x08, +0x8f,0xc5,0x80,0x2d,0xd0,0x96,0xc1,0x22,0x71,0xaf,0xf0,0x68, +0x06,0xd8,0x18,0xcb,0x64,0xb0,0x48,0xdd,0x85,0xbd,0xb5,0xf5, +0xa4,0x19,0x49,0x33,0xdb,0xcc,0x69,0x39,0xcf,0x03,0xdf,0x8c, +0x22,0x6d,0x07,0xc4,0xf5,0x02,0x3a,0x44,0xcd,0x45,0xa9,0xbb, +0xcc,0xe1,0x12,0x48,0x77,0xcc,0xb6,0x38,0x84,0xbb,0x38,0x1c, +0xb0,0x38,0x34,0x77,0x71,0xf8,0xd2,0xe2,0xe0,0x65,0x24,0xce, +0x8c,0xb4,0x38,0x68,0x91,0x04,0xce,0x7d,0x10,0x2d,0x2a,0x72, +0x2f,0x4e,0x8a,0x52,0x7e,0xae,0x67,0x2a,0x3c,0x3e,0x57,0x7c, +0xa6,0x0a,0x2d,0x41,0x39,0xf1,0xef,0x5b,0x4e,0xfc,0xf2,0xbe, +0xca,0x89,0x1f,0xa4,0x9c,0xf8,0x22,0x70,0xb0,0xea,0x69,0x8e, +0x55,0xbe,0x95,0x9e,0x8b,0xc0,0xb9,0x7c,0xef,0x1d,0x75,0x2f, +0x5d,0x78,0x9e,0x84,0x60,0xe7,0x4f,0xf0,0x2c,0x32,0xc8,0xea, +0x1b,0x4e,0xa6,0x6e,0x86,0x0c,0x7b,0xd2,0x9a,0x76,0xf2,0x3a, +0xd8,0x8c,0xdf,0xb4,0xd6,0xe8,0x23,0x37,0x19,0xf6,0x82,0x65, +0x2a,0x4b,0xa2,0x0b,0xaa,0xa1,0xc9,0xc6,0x9c,0x33,0xa2,0xc4, +0x93,0xff,0xd3,0xa8,0x3d,0x5e,0x8d,0xda,0x2d,0x8a,0x3c,0x76, +0xa8,0x64,0x4f,0xe1,0xd8,0xce,0x39,0x91,0xa5,0xea,0x30,0xe1, +0x39,0xfc,0xe5,0xdb,0x00,0x03,0x70,0x96,0xf0,0xab,0x06,0xc1, +0x22,0x20,0x0f,0xb6,0xba,0x5c,0x73,0xc5,0xad,0x37,0x00,0x4a, +0x32,0x8a,0x7c,0xc0,0xa0,0xd0,0x7a,0x03,0x40,0xce,0xb2,0x48, +0x87,0x0b,0xed,0x19,0xd4,0x31,0x5a,0xcd,0xac,0x3d,0xa7,0xca, +0x5c,0x8f,0x1f,0xc3,0xeb,0x64,0x41,0x23,0xc7,0x5d,0xb6,0xb7, +0x84,0xff,0x53,0xab,0x86,0x6c,0x12,0x2c,0xbc,0x18,0xee,0x96, +0x3e,0xcc,0xd2,0x0f,0xc7,0x0b,0xef,0xdd,0x90,0x5b,0x5d,0x78, +0x8d,0x79,0xf9,0x12,0xc1,0x00,0x3c,0xa7,0x5a,0x63,0x53,0xcd, +0xe2,0x31,0xcf,0xe3,0x59,0x78,0x90,0xbe,0xa0,0x49,0x83,0x45, +0x8d,0x44,0xa9,0xcd,0x10,0x25,0x7c,0xb7,0x58,0x6c,0xee,0xd1, +0x07,0xea,0x5d,0x02,0x6e,0xf7,0xa8,0x55,0x69,0xbe,0xf0,0xde, +0xc5,0x52,0xad,0x81,0x28,0xb9,0x01,0xcc,0x30,0xfc,0x4e,0xb9, +0x38,0x66,0x76,0x8d,0x98,0x53,0xc7,0x6f,0x0a,0x7e,0x8c,0xa3, +0x2f,0xd1,0x09,0x19,0xfc,0xa3,0xf6,0xc7,0xd7,0x2b,0xd7,0x1e, +0x0b,0xc4,0xc2,0x43,0x06,0x4d,0xc5,0xcd,0x38,0xe6,0x12,0xa5, +0xcb,0x00,0xcc,0xd2,0xa8,0x3a,0x2d,0x31,0xb0,0x43,0x38,0x75, +0xa0,0x54,0xd7,0xcf,0xa8,0x8a,0x60,0x13,0x15,0x37,0x03,0x46, +0xb9,0x56,0x78,0xba,0xa3,0x2f,0xec,0x37,0x68,0x22,0xb6,0xc1, +0xe1,0xe7,0x79,0x6d,0x1c,0xc3,0xd3,0x1a,0x55,0xa3,0x00,0xe3, +0x79,0x9b,0x8a,0x34,0x46,0xfd,0xc3,0x28,0xd1,0xd1,0x91,0x86, +0x18,0xe6,0xfb,0x34,0xe7,0x26,0x9e,0x56,0xdf,0x1d,0x62,0x16, +0x50,0x2d,0xe7,0x8f,0x50,0x93,0x16,0xd3,0x06,0x79,0x15,0xb0, +0xa3,0xf5,0x4a,0x81,0x4a,0x16,0x30,0x50,0x9d,0x27,0x97,0xe4, +0xc7,0xae,0xa9,0x00,0xe9,0x31,0xa6,0x4e,0xb6,0x7c,0xb4,0x99, +0x9a,0xa5,0xe7,0x57,0xb2,0x9e,0xb7,0x28,0xc2,0xa0,0x5e,0xe1, +0x24,0xf8,0xc9,0x3a,0xfc,0x95,0xfe,0x38,0xd8,0x98,0x7d,0x96, +0x25,0x4f,0x72,0x5a,0xac,0xdf,0x6c,0x8c,0xc0,0x5a,0x19,0x34, +0x9e,0x8e,0x5c,0xd3,0xf2,0xb3,0x2c,0x41,0xfd,0xe9,0x41,0x83, +0x9a,0x61,0x2b,0xac,0x9b,0x41,0x93,0x68,0x3f,0xce,0xd1,0xe8, +0x1a,0x1d,0x73,0x21,0x3c,0xae,0x9b,0x22,0xb4,0x17,0x2a,0x59, +0xda,0xa1,0xd7,0x11,0x1e,0x23,0x32,0x2e,0xea,0x2e,0xfc,0x4a, +0x01,0xdd,0x62,0x44,0xf6,0x1f,0xa4,0x02,0xa2,0x78,0x0d,0x6a, +0xc0,0x76,0x44,0x7f,0x63,0xf6,0x29,0x53,0x65,0x0c,0xc4,0x52, +0x67,0x79,0xf9,0x7e,0x72,0x5e,0xbb,0x60,0x49,0x4a,0x9c,0xc6, +0xb3,0x62,0x67,0x5c,0x59,0xf6,0x2c,0x75,0xa6,0x2d,0xd8,0x4b, +0xa3,0x4d,0x74,0x44,0xd8,0x07,0xa8,0x17,0x08,0xfe,0x12,0xe5, +0xf7,0xc3,0x63,0x75,0x28,0x5a,0x76,0x96,0xfa,0x74,0x71,0x93, +0xf0,0x4a,0x86,0xdb,0x0c,0xc2,0x84,0x2d,0x4f,0xa1,0x30,0x2e, +0x5d,0x47,0x7b,0x84,0x17,0xaf,0x25,0xdb,0x4d,0x75,0x24,0xea, +0xb3,0x5f,0x91,0x6d,0x15,0x15,0xa4,0xab,0xba,0xcf,0x57,0xea, +0xab,0xf7,0xcf,0x8d,0x1c,0xac,0xaa,0x15,0xde,0x81,0xd9,0xd4, +0x5a,0x00,0x6f,0x8b,0x80,0x2d,0xaa,0x4b,0xf1,0xc2,0xaf,0xbd, +0x22,0x3f,0x24,0x8c,0x8d,0x20,0x8c,0xb2,0xb0,0x4e,0xfa,0xbe, +0xe6,0xfd,0xef,0x87,0x79,0xc2,0xaf,0x34,0x13,0xf2,0x80,0xeb, +0xde,0x81,0xb5,0x69,0x99,0x3e,0x0c,0x8e,0x2b,0xf0,0xff,0x76, +0x5e,0x29,0xd5,0xc6,0x42,0x45,0x2a,0x1e,0x63,0x2e,0xa1,0x85, +0x37,0x31,0xab,0xf2,0x73,0xbd,0x8d,0xf2,0xc7,0x3f,0xc7,0x71, +0xae,0x67,0x63,0x85,0xf3,0xaf,0x59,0xd8,0x03,0x1e,0x68,0x6d, +0x6a,0x1a,0x94,0xfa,0x00,0x53,0x5d,0x8f,0xb3,0xaa,0xb3,0x16, +0x54,0xae,0x44,0x1b,0xad,0xef,0x74,0xaf,0x55,0x7a,0xaa,0x89, +0xd2,0xa1,0xf0,0x98,0x50,0x79,0xde,0x93,0x55,0x74,0x7f,0x45, +0x14,0xea,0xcc,0x05,0x1c,0x4d,0xa0,0x8b,0xa0,0x7d,0x80,0xa0, +0xb7,0xae,0x5e,0xf8,0x1b,0x3c,0xc2,0x54,0xfd,0x19,0x03,0xc6, +0x80,0xb7,0xc0,0xe9,0x0d,0x0d,0xd5,0x77,0xa4,0x65,0x65,0x5f, +0xe7,0xea,0x97,0x7f,0xb1,0xb8,0xf3,0x77,0xb2,0x01,0xf6,0x09, +0xdd,0x34,0xe6,0x3c,0x91,0x37,0x81,0x9a,0x69,0xe7,0x58,0x4c, +0x63,0x10,0x1d,0x53,0xeb,0xfc,0x20,0x8f,0x69,0x10,0x0e,0x10, +0x7e,0x35,0x20,0x52,0xd8,0x76,0xbf,0xdc,0x8a,0x9e,0xa2,0xf2, +0x95,0x22,0xef,0x3b,0x17,0x0f,0x11,0x15,0x0e,0xf3,0x36,0xa8, +0xa5,0x7c,0xc4,0x2d,0x43,0xab,0x3c,0x6c,0x69,0xf9,0x88,0x6f, +0x3d,0x79,0x5c,0xe3,0x96,0xcb,0x47,0x1c,0x67,0x74,0x4a,0xec, +0xa4,0x7c,0xc4,0xa2,0xd2,0x47,0x80,0xa1,0x58,0x25,0xa3,0x53, +0x72,0x80,0xad,0x01,0xc8,0x85,0x5c,0x7f,0x2c,0xda,0x84,0xe7, +0x58,0xa0,0x7c,0x59,0xc9,0x78,0xe5,0x26,0xe6,0x91,0xae,0xbf, +0xac,0x29,0x92,0x34,0x8b,0xa4,0xaa,0xd0,0xce,0x28,0x55,0x1a, +0xfa,0x25,0x98,0x6d,0xc1,0x71,0x28,0xcd,0xc9,0x66,0xe7,0xe7, +0x6c,0xcd,0xb0,0x3c,0xb3,0xfd,0xc1,0x37,0xe6,0x0b,0xbd,0x3a, +0x24,0xd2,0x9f,0x78,0x09,0x4c,0x96,0x6f,0x79,0xd4,0x4a,0xf8, +0x24,0x81,0x4a,0x4b,0x77,0x5b,0xa5,0x98,0x0f,0x57,0xe7,0x73, +0xdf,0xaa,0x2c,0x66,0x6c,0x99,0xd4,0x93,0xe1,0xce,0xc1,0x2a, +0xe7,0xd9,0xa7,0xf9,0xa8,0xe0,0x6f,0x7b,0x1a,0x52,0xe8,0xaf, +0x64,0x6f,0xfb,0x97,0xb9,0xe9,0x9d,0x4f,0xd5,0xe9,0x5c,0x07, +0xab,0x5e,0x3a,0x7d,0x6f,0xbe,0xc3,0x2b,0x32,0x4f,0xbd,0x7c, +0xaf,0x08,0xa5,0x9b,0xf4,0xfe,0xcf,0x14,0xf4,0xe6,0x03,0xb3, +0xa4,0x81,0xc1,0x2a,0xc3,0xd4,0xfd,0x08,0xc6,0x39,0xc1,0x68, +0x8b,0x90,0xab,0x58,0x49,0x1b,0x2f,0x84,0xc6,0x96,0xe7,0x5a, +0xdc,0x6b,0x50,0x10,0x05,0x0b,0xdf,0x37,0xac,0xc4,0xde,0x83, +0x9c,0x6c,0x59,0x9b,0x87,0x84,0xd7,0x1b,0xf0,0xb9,0x6c,0x2f, +0xdc,0x3f,0x2e,0x4a,0xf7,0xad,0xee,0x1e,0x51,0x77,0xb1,0x2d, +0x0f,0x6e,0x10,0x08,0x5f,0x5e,0xc3,0x4f,0x85,0xcd,0xdf,0x75, +0xf5,0xb7,0xf0,0xbc,0xad,0x8e,0xae,0x3e,0x57,0x9f,0x3d,0xac, +0x10,0xf6,0x47,0xca,0xcb,0xa8,0xcb,0xee,0x50,0x90,0xee,0x4a, +0x82,0x3d,0x58,0x95,0x7e,0xa0,0x4a,0x57,0x1a,0xb9,0x66,0x6a, +0x1b,0x6e,0x28,0x95,0x75,0x9b,0x99,0x0c,0x34,0x95,0x5a,0x39, +0x77,0xa9,0xe2,0x51,0xaa,0x58,0xb9,0x77,0xe3,0x68,0x29,0xb4, +0xa5,0xb7,0x0a,0x72,0x59,0xb8,0x3d,0x02,0x34,0xe5,0x12,0x87, +0x1f,0x08,0x4f,0x1d,0x28,0xd3,0x6a,0x51,0x5d,0xdd,0x50,0x2d, +0xbe,0x4a,0xe6,0xbd,0x5e,0xee,0x34,0xb2,0xcd,0x4d,0x91,0x54, +0x8e,0x8a,0xab,0xbc,0x3f,0x5e,0xd6,0x8f,0x46,0xb6,0x9e,0xa2, +0xf4,0x25,0xc0,0x10,0x9c,0x8b,0xcb,0xe8,0x6a,0x2c,0x2e,0x64, +0xc8,0x34,0x8f,0xd6,0x0b,0x0f,0x06,0xf8,0x83,0xd9,0x74,0x0d, +0x2d,0x3a,0x89,0xa1,0x35,0x2b,0x84,0xef,0x6e,0x08,0x91,0x6f, +0x72,0x9f,0x5d,0xf9,0x8b,0x68,0xf5,0x32,0x06,0x0d,0x9d,0xa3, +0x82,0x9d,0x7f,0x41,0x45,0xfe,0x5f,0x53,0x29,0x69,0x79,0xfa, +0x35,0xd9,0xf4,0xf5,0x94,0xde,0x6b,0xe4,0x16,0x55,0x93,0xf1, +0x52,0x69,0x95,0xbc,0x5b,0xe5,0xda,0x5e,0xf3,0x31,0xf7,0x65, +0x61,0x24,0x95,0x21,0x2d,0x11,0x35,0xf2,0x20,0x2d,0x01,0x35, +0x8d,0xca,0xf4,0x31,0x84,0x6d,0x39,0x70,0xfb,0xab,0x84,0xdb, +0x06,0xf8,0xbd,0x2e,0xed,0x56,0x09,0x9a,0x37,0x4e,0x01,0x9c, +0xdf,0x74,0xbc,0x52,0x83,0x67,0x70,0xce,0xbf,0xee,0xdc,0xa1, +0x32,0x8e,0x13,0xfc,0xa0,0x8d,0x59,0x0f,0xb0,0x3f,0x76,0x67, +0xec,0x78,0x06,0x82,0x60,0xa7,0xf6,0x7b,0xee,0xf2,0xb5,0x19, +0x81,0xb3,0xce,0x39,0x2b,0xa9,0x1d,0x51,0xd6,0xd9,0xdb,0x4a, +0xc1,0xbc,0xc9,0xf1,0x2b,0xe0,0x02,0x59,0x52,0x7d,0x21,0xdd, +0x57,0x68,0x3f,0xbf,0x76,0x53,0xe5,0x65,0x7e,0x8d,0xb1,0x3c, +0xcc,0xb8,0x24,0x11,0x77,0x65,0xe8,0x0c,0xb9,0xdb,0x38,0xff, +0x64,0x41,0xc0,0xd0,0xfa,0x0f,0x3a,0x61,0x98,0x53,0xb1,0x97, +0xbc,0x9c,0x60,0xce,0x69,0x24,0xa7,0xa9,0xdc,0xa1,0xe6,0xae, +0x2c,0xb9,0x92,0xb5,0xa8,0xcd,0x53,0x1d,0xdc,0x54,0x16,0xf6, +0x86,0x20,0x6b,0xd1,0x8f,0xc2,0x2b,0x01,0xcc,0xc9,0x20,0x0f, +0xe5,0xe3,0x1c,0xe1,0x3b,0x1f,0x72,0x29,0xde,0x90,0x35,0xcd, +0x51,0x2a,0x0e,0xdf,0xf9,0x36,0x1a,0x2d,0x76,0x93,0x35,0x1f, +0xa9,0x38,0x7c,0xc2,0x3f,0x1f,0xb0,0x53,0x86,0x7c,0x43,0x5f, +0xfc,0xbb,0x3b,0xde,0xc7,0xa1,0xb2,0x5e,0x02,0x3e,0x7c,0x8b, +0x7e,0xa1,0x21,0xd8,0x2a,0x54,0x13,0xde,0xa9,0x6c,0xf7,0x76, +0x57,0xbc,0x07,0x16,0x7e,0xcb,0x6b,0x39,0x0a,0x6a,0x6a,0xa2, +0x9c,0x2f,0x08,0xb1,0x95,0x75,0x75,0x06,0xe5,0xe8,0x8b,0x1f, +0xb9,0xe3,0x49,0x1c,0x28,0x21,0x11,0xcf,0x56,0xa7,0x93,0x34, +0x10,0xab,0xd3,0x9b,0x9a,0x10,0x31,0x8c,0xa5,0xda,0xc0,0x93, +0x4f,0xe1,0x17,0x51,0x6a,0x1d,0x14,0xce,0x55,0xef,0x3f,0x5c, +0x37,0xb0,0x8e,0x3a,0x44,0xb8,0x46,0xa9,0xa2,0x54,0x3c,0x14, +0x76,0x87,0x9f,0x3e,0x85,0x7b,0xd8,0xe2,0x0c,0xe5,0x7e,0x87, +0xa7,0xb1,0xa3,0x84,0x64,0xcc,0x68,0x44,0x67,0x28,0x19,0x6b, +0x08,0xfb,0x06,0x57,0xc0,0x36,0xfd,0xe1,0xa7,0xf0,0x04,0x5b, +0x9c,0xa3,0x9c,0x07,0xc8,0x92,0x5d,0x54,0xfe,0x05,0xa8,0x3f, +0xd6,0x08,0xd1,0x17,0x08,0x3d,0x0a,0x6e,0x51,0x57,0x51,0xf9, +0x2e,0x4c,0xf5,0x99,0xb7,0xc4,0x7d,0xe7,0x17,0xab,0x44,0xa9, +0x4b,0x40,0x0b,0x1a,0x04,0xec,0x4d,0x42,0xfb,0x89,0x6f,0xbe, +0x3a,0xb1,0xdf,0x77,0xdd,0x8a,0x8d,0x8b,0x36,0xa4,0xe1,0x47, +0x54,0xde,0x67,0x5f,0x86,0xbb,0xfa,0x70,0xf8,0xce,0x4d,0xf3, +0x8e,0x4e,0xd5,0xe4,0xc8,0xc1,0xf0,0x10,0x53,0x32,0xa4,0xdb, +0xef,0xf8,0x50,0x54,0x1c,0x0a,0x6a,0xc8,0x6f,0x21,0xc3,0xb7, +0x38,0x6a,0x26,0x4a,0xb9,0x03,0x2f,0xfd,0x6a,0x8f,0x07,0xc3, +0x7d,0x4c,0x39,0x2b,0x35,0x7d,0xf1,0x03,0x77,0x7c,0x84,0x7d, +0x65,0xa3,0x24,0x7c,0x52,0x93,0x7e,0xa3,0x3e,0x18,0x5e,0x53, +0x93,0x1d,0xe0,0x2c,0x2d,0x77,0x1c,0xfd,0x57,0xde,0xe9,0xe5, +0xaf,0xf2,0x4e,0xff,0xfb,0xee,0x3d,0x9a,0x8e,0x91,0x50,0x50, +0x12,0x3f,0x36,0x9e,0x20,0x5b,0x95,0xcb,0xff,0x30,0x27,0xe1, +0x28,0x99,0x15,0x67,0x4e,0x0f,0x95,0x93,0x68,0xe4,0x23,0xe1, +0xcf,0xfb,0xe6,0x19,0x8b,0x60,0x19,0x01,0x8f,0x64,0x53,0x78, +0x8b,0x7a,0xe2,0xd7,0xff,0xba,0x43,0xe1,0xf4,0xb7,0x19,0x0a, +0x85,0xf3,0x01,0xfb,0xc8,0xbe,0x61,0x50,0x53,0x78,0x4d,0x03, +0xa5,0xa0,0x4b,0x03,0x77,0xad,0xae,0xf0,0xbe,0x09,0xc8,0x78, +0x2a,0x29,0x0c,0xea,0xd0,0xfb,0xf1,0xe6,0x92,0x26,0xba,0xb0, +0x29,0x5b,0xf8,0xbe,0x6e,0x13,0x5e,0x6c,0x35,0x96,0x17,0xf6, +0xb5,0x20,0x42,0x76,0x02,0xdd,0x65,0xf3,0x33,0x28,0x81,0xf1, +0x88,0x71,0x03,0x03,0xcc,0x46,0xd0,0x80,0xa6,0xab,0x48,0x27, +0xc9,0x79,0xf8,0x81,0x8a,0x74,0xf2,0x7a,0x62,0xe7,0x65,0xe8, +0x30,0xe8,0x21,0x25,0x0a,0xb7,0x4c,0xc0,0x04,0xe1,0x76,0x0d, +0xe4,0x17,0x78,0x06,0xd6,0x4b,0x37,0x03,0x43,0xcc,0xa9,0xe7, +0xe4,0x79,0xea,0x47,0x0c,0x07,0x1b,0x28,0x83,0xf9,0x7b,0x59, +0x08,0x72,0x81,0xb3,0x14,0x2c,0x96,0xf5,0xd9,0xba,0x99,0x87, +0xf1,0x56,0xe8,0x92,0x70,0x39,0x8f,0xfc,0x55,0xe8,0x12,0x11, +0xb2,0x5b,0x35,0x5e,0xe3,0x7f,0xe2,0xd8,0x41,0x7a,0x2a,0xf1, +0xb8,0x0a,0x57,0xcb,0xf3,0x5a,0xbe,0x15,0xc7,0xa4,0xa2,0x8a, +0x63,0xe2,0xf2,0xe5,0xce,0xa1,0xe1,0x29,0x38,0xbc,0x7f,0xbe, +0xf9,0x8d,0xce,0x0c,0x42,0xcd,0x85,0xac,0x7c,0xb8,0xf3,0xfe, +0xeb,0x60,0x4d,0xda,0x69,0x56,0x96,0x33,0x55,0x9c,0x98,0x8e, +0xce,0x46,0x0c,0xa8,0x68,0xa1,0x21,0x1b,0x7e,0xd3,0x86,0x26, +0x05,0xa9,0xa8,0x28,0xbb,0x78,0xc1,0x8f,0x73,0x93,0x0d,0xbf, +0x33,0x1b,0xf2,0x82,0xaf,0xc8,0x16,0xf7,0x52,0x53,0xb3,0x06, +0x9f,0x27,0x8c,0xa6,0x2a,0x87,0x75,0xe7,0x7c,0xd3,0xf1,0xbf, +0x0e,0x55,0x18,0x9f,0xb3,0x0e,0x5f,0x0f,0xd4,0x1a,0x9f,0x89, +0xa0,0x2e,0xdc,0xaa,0xf0,0x3c,0x08,0x98,0x06,0x54,0x5b,0x4e, +0x64,0x5d,0x5f,0xda,0x8a,0xda,0x53,0x5f,0x78,0x69,0xbc,0x55, +0x3a,0x83,0x5c,0x22,0xc4,0x46,0x68,0x2a,0x37,0x0a,0xcf,0x1a, +0x6c,0xdd,0xcb,0xef,0x73,0xcc,0xef,0x55,0xe4,0xa2,0x99,0x42, +0xd4,0x86,0x26,0xf2,0x3d,0x51,0xf2,0x57,0x2b,0xdb,0x35,0xb3, +0xfb,0xd3,0x62,0x77,0x56,0xa5,0xbb,0x66,0x4d,0xfa,0x4c,0x39, +0x4b,0x9f,0xa8,0xca,0x54,0x83,0x6b,0x43,0xac,0xfa,0x8e,0xa7, +0xb8,0xe5,0x41,0x05,0x15,0xf5,0xa8,0x57,0xb6,0xf9,0x9d,0xf0, +0x67,0x2b,0xfc,0x73,0x51,0xb2,0x95,0x5a,0x5a,0x0f,0x79,0x69, +0xdd,0x32,0x23,0x85,0xfe,0xbe,0xca,0x4b,0xb8,0x49,0x12,0xac, +0xa0,0x87,0x06,0x56,0x31,0xa7,0x9e,0x97,0x59,0xf4,0xae,0xb9, +0x1c,0x5e,0xa5,0xa0,0xbe,0xc5,0x4f,0xdb,0x8b,0x6d,0xfb,0xa5, +0x45,0x29,0xa8,0xff,0xbb,0xaa,0xd9,0x9a,0xd6,0x18,0xd3,0x56, +0x4c,0x5b,0x34,0x7d,0xd6,0xb4,0x99,0xea,0x9d,0xaf,0x2d,0xbb, +0x57,0x7c,0x71,0xc8,0xfe,0x69,0xe4,0x58,0xbd,0xf5,0xf0,0x1e, +0xd5,0x62,0x02,0x82,0x6e,0xcf,0x58,0x31,0xfd,0x3d,0x0a,0x81, +0xdd,0x2b,0xbf,0x38,0x68,0xdf,0x1e,0x35,0x5e,0x6f,0xd1,0xb7, +0x13,0x89,0x26,0x01,0x47,0xba,0x65,0x1f,0x3e,0xf6,0xe5,0xce, +0x2f,0x7d,0x57,0x2c,0x5d,0xb5,0x68,0x65,0x1a,0xd6,0xa0,0x92, +0x3e,0x39,0x47,0xf9,0xce,0x17,0x2b,0x97,0xad,0x5c,0x64,0xc5, +0xbe,0x2c,0xe6,0x73,0xf4,0x84,0xbb,0xad,0x20,0xc0,0xfc,0x45, +0x78,0x0d,0x03,0xd9,0x53,0xf8,0x49,0xc0,0x26,0xe6,0x8f,0x06, +0xbd,0x2b,0x3c,0x66,0xc3,0x5b,0xba,0x34,0xe9,0xdc,0xff,0x94, +0x1d,0xda,0xd1,0x0f,0x1c,0x8f,0xd8,0x38,0x46,0x2a,0x1c,0xa7, +0xac,0xb0,0x56,0x48,0xf0,0xaf,0x7b,0x2c,0x94,0x33,0x59,0x28, +0x17,0xf8,0x9b,0x28,0x2a,0x9d,0x01,0xec,0x22,0x33,0x3a,0x9b, +0x53,0x55,0xa1,0x53,0x94,0x60,0x58,0x58,0x9e,0x2e,0xaa,0x30, +0xce,0x71,0x06,0xef,0xf9,0x30,0x4d,0x3e,0x93,0x6f,0x19,0x22, +0xa4,0x01,0xef,0xac,0x87,0x5a,0x47,0xe9,0x2e,0xc4,0x32,0x10, +0x3e,0x25,0xfe,0x8f,0xc9,0x99,0x9d,0x61,0xbc,0x9d,0xf1,0x85, +0x83,0xf7,0xcc,0x77,0xac,0x3b,0xaa,0x51,0x5d,0x1c,0xca,0x95, +0x7a,0xfe,0x5f,0x33,0x36,0x87,0x51,0x94,0x61,0x0e,0x85,0x9a, +0xba,0x7c,0x8b,0x0e,0xab,0x6c,0xcd,0x95,0xc1,0x51,0x9a,0xe7, +0xfd,0x57,0x33,0x5e,0xad,0xb1,0x21,0xaa,0x1f,0x1a,0x26,0x49, +0x8f,0xe6,0x10,0x4d,0x83,0x0a,0xb2,0x54,0x3f,0x63,0xb8,0x9f, +0xf7,0xb8,0x9f,0xcf,0x65,0x90,0x61,0xc6,0x9e,0x93,0x6e,0xbf, +0xe1,0x43,0x1c,0x20,0x1b,0x26,0xe1,0x1f,0xd5,0xe9,0x91,0x96, +0x4c,0x0e,0xe1,0xbd,0x0d,0x6a,0xb9,0xf2,0x2b,0x27,0x09,0x31, +0x5a,0xe5,0x5c,0xf6,0x30,0x59,0xe5,0xda,0x7b,0xc2,0x4a,0xd9, +0x41,0xb8,0xb3,0xbd,0xe1,0xb9,0x13,0xa4,0x4d,0xe9,0x61,0xf5, +0xf1,0x70,0x28,0xce,0x36,0x64,0x2d,0x59,0x99,0x6a,0x00,0x7e, +0x86,0x6b,0x34,0xd6,0xc4,0x6b,0x64,0x81,0x72,0x69,0x72,0x51, +0x9a,0x2a,0x0a,0x56,0x45,0xdb,0x55,0xd1,0x30,0xb9,0xd2,0x51, +0x9c,0xeb,0x5f,0x64,0x24,0x24,0x9f,0x1b,0x33,0xd6,0x4c,0x7f, +0x6f,0xda,0xcc,0x59,0xb3,0x7d,0xf0,0x07,0x70,0x77,0x74,0xc2, +0x85,0x06,0x8e,0xa7,0x83,0x39,0xf8,0x27,0x1d,0x57,0x2f,0x19, +0x67,0x41,0x84,0x63,0x52,0x38,0x08,0xbf,0x11,0xca,0x65,0x93, +0x36,0xd7,0xf2,0x4c,0x6e,0x44,0x5f,0xc5,0xd3,0xdf,0xac,0xa5, +0xb5,0xba,0x60,0xd0,0x5a,0xdc,0x82,0x6b,0x35,0xdc,0x28,0x8f, +0x14,0xf9,0x25,0x37,0x62,0x55,0x55,0x5e,0x43,0xb8,0x9d,0x05, +0xfc,0x82,0x1b,0xbd,0x2f,0x1f,0x3a,0x87,0x83,0xb3,0x8f,0x2a, +0x12,0xc2,0x7f,0x1e,0x14,0xf5,0xe2,0xa5,0x9f,0xd2,0xdf,0xf2, +0x53,0xfa,0x5b,0x7e,0xca,0x89,0x0e,0x96,0x38,0x68,0xee,0x26, +0xd4,0xf2,0x62,0x0c,0xec,0x2f,0x6b,0x53,0x7f,0xcd,0xec,0xfe, +0x83,0xf2,0x5b,0xfa,0x2b,0xbf,0xa5,0xfa,0x70,0x77,0x88,0x70, +0xfb,0x1b,0x70,0x92,0x21,0xeb,0xf0,0xa0,0x1b,0xaa,0x41,0xaf, +0xd5,0xe8,0x03,0xb9,0xe8,0x0b,0xd6,0x59,0x03,0x21,0xc8,0x31, +0x4a,0xc6,0xb1,0x10,0xe2,0x87,0xfa,0xd5,0x60,0x7e,0x5e,0xb2, +0x0c,0x3f,0xaf,0x30,0xee,0xe9,0x7a,0x5c,0x85,0xeb,0x35,0x6a, +0xe4,0x98,0x53,0xf4,0xe5,0x6d,0x17,0xa7,0x43,0x69,0x84,0x31, +0x8a,0x51,0x19,0xc5,0x68,0x15,0x33,0xea,0x28,0xbb,0xed,0x01, +0x9c,0x08,0x66,0xb0,0x7c,0x38,0x93,0x87,0xfe,0x8e,0x4a,0x02, +0xf4,0x42,0x7d,0xe7,0x02,0x23,0x1c,0xe3,0x96,0xf3,0x9d,0x46, +0xf0,0xbd,0x9c,0xe1,0x78,0x0f,0xaa,0x80,0xa8,0xd4,0x12,0xc8, +0xdb,0x7a,0xb7,0xee,0x68,0x6f,0xd6,0xbe,0x32,0x44,0xea,0x80, +0x9f,0xa8,0x89,0x6e,0xe7,0x98,0xe1,0xfc,0x44,0xbd,0x81,0x57, +0x92,0x62,0xe2,0x30,0x86,0x3c,0x5d,0x3f,0x5e,0x37,0xcd,0x09, +0x4c,0xdc,0x57,0xd8,0x76,0x01,0x1e,0x91,0x47,0x8e,0x42,0xc1, +0xdf,0x40,0x1e,0x4c,0xac,0x32,0xea,0x72,0xaf,0x64,0x19,0x03, +0xcb,0x93,0xb7,0xf5,0xaa,0x97,0x41,0xe5,0xef,0xd2,0x73,0x59, +0x91,0x5a,0x01,0xee,0xc4,0x81,0x1a,0x76,0x6f,0x66,0x30,0xa3, +0xf2,0xe8,0xa9,0x53,0x77,0x19,0xb3,0x8f,0x71,0xdf,0x63,0xa8, +0xe5,0x28,0xc7,0xe8,0xaa,0x0f,0x54,0x71,0x54,0xdf,0xa0,0x20, +0xd1,0xea,0x1b,0xea,0x23,0x68,0x5f,0xc9,0x1d,0xfd,0x0e,0xa8, +0x8d,0x23,0x64,0x85,0xba,0x3b,0xf9,0x86,0x39,0x99,0xef,0x92, +0x14,0x7e,0x3f,0x02,0x5e,0x95,0xfd,0x58,0xe9,0x97,0x3e,0xc1, +0xed,0x61,0x5f,0xd5,0x5e,0xe9,0x6c,0x73,0x86,0xd5,0xde,0x3d, +0x6e,0x2f,0x54,0xb5,0xb7,0xc7,0x6a,0xaf,0xe9,0xcb,0xf6,0x30, +0x42,0x7e,0xb0,0x4a,0x01,0xb5,0x0d,0x37,0x34,0xae,0x54,0xb9, +0xa8,0x52,0x6a,0x24,0x95,0x75,0x55,0xf2,0x53,0x95,0xb6,0xbe, +0xac,0xa4,0x73,0x25,0x5d,0xc7,0x37,0xe8,0x61,0x9a,0xaa,0xf4, +0x8e,0x55,0xa9,0x34,0x57,0x0a,0xc9,0x36,0xdb,0x0b,0xff,0xf2, +0xf0,0x8e,0x84,0x48,0xd5,0xeb,0x50,0x47,0x75,0x9e,0x52,0xdf, +0x3f,0x80,0x92,0x65,0xd3,0xb9,0xe0,0xa8,0xcb,0xa2,0x5d,0x8e, +0xba,0x0c,0x22,0xf8,0x37,0x88,0x2f,0x38,0x77,0x5e,0x97,0x7f, +0xe3,0x0d,0xc3,0x6c,0x4a,0x2d,0x65,0x53,0x2d,0x97,0x76,0x39, +0x9e,0x2b,0x9a,0x1c,0xda,0xf1,0xba,0x07,0xac,0x18,0x9b,0x9e, +0x97,0x64,0x53,0xba,0x84,0xe1,0x54,0xdc,0xf2,0x7d,0xc5,0x9b, +0x01,0x06,0xee,0x60,0xc9,0xb1,0x43,0x5b,0x2b,0xbd,0x8a,0x5e, +0x2a,0x6b,0x23,0xb4,0x3c,0xc0,0xe2,0xd2,0xbd,0x70,0x0a,0x14, +0x2c,0x83,0x27,0x72,0x71,0x61,0xdb,0x57,0xfe,0xb1,0x3c,0xd8, +0x2d,0xaf,0x15,0x0e,0x64,0x18,0x36,0x96,0xd5,0x93,0xac,0xf2, +0xd2,0x01,0x56,0xfc,0x35,0xde,0x9a,0x72,0x7d,0x31,0xef,0xa0, +0x97,0xbc,0xf1,0x1b,0xd9,0x5e,0xbd,0x50,0xa6,0xfc,0x5c,0x9e, +0x58,0x17,0x2f,0xc8,0x72,0x74,0x01,0xeb,0x50,0xe9,0x7f,0x3c, +0x5c,0xf2,0x0d,0xb3,0x9a,0x81,0xf3,0x98,0x7c,0x9e,0x86,0x35, +0xe5,0x3a,0xcb,0xdb,0xe5,0xfd,0x15,0x60,0x53,0xf9,0xbd,0x71, +0xdf,0x5c,0x80,0x83,0xe4,0xad,0x38,0xf3,0xfd,0x7a,0x72,0x01, +0x35,0x90,0x55,0x5e,0xf9,0xb2,0x56,0x83,0xf9,0xa3,0xf4,0x7f, +0xe9,0xcb,0x2a,0xc6,0x46,0xff,0x25,0xd9,0x92,0x3b,0xd1,0x9a, +0xdc,0xfe,0xf1,0x62,0xf5,0x54,0xa3,0xdc,0xc5,0xac,0x77,0x69, +0x9b,0x78,0x94,0xca,0xa1,0xc5,0x68,0xd4,0x53,0x9e,0x56,0x0e, +0xad,0x02,0x4f,0xe5,0xc7,0x2a,0xfe,0x18,0x73,0xe4,0x75,0xca, +0x79,0xac,0x7c,0x38,0xd5,0x40,0xfe,0x6d,0xba,0xa9,0xd9,0x4c, +0xe1,0xd9,0xfc,0x2d,0xce,0xc0,0x54,0xbe,0x9d,0xca,0x8b,0xb5, +0xc8,0x9f,0xe5,0xa9,0x5c,0x41,0xc5,0x1e,0xe3,0x65,0xae,0x72, +0xf9,0x31,0x15,0xa3,0x31,0x2a,0x9f,0xa1,0x28,0xf1,0x0e,0x0b, +0x61,0x51,0x62,0x03,0xf0,0x9d,0x54,0xad,0xba,0xe5,0xa4,0xb2, +0x68,0x5f,0x3c,0xe6,0xa5,0x74,0x9d,0xae,0x3e,0x0e,0xa6,0x31, +0xea,0x7d,0x36,0x8b,0xb2,0xb3,0x6c,0xae,0xfd,0x1e,0xcf,0xbc, +0x83,0x15,0xeb,0x70,0xcb,0x35,0x65,0x51,0xff,0xf5,0x18,0xaf, +0x30,0xf5,0x95,0xc7,0x41,0xaf,0xf1,0x4d,0x56,0x7c,0x83,0x98, +0x12,0xd5,0xdb,0xb0,0xfd,0xa0,0x60,0x54,0xc1,0x3c,0x83,0xa9, +0x0e,0x99,0xd7,0xb5,0x56,0x2c,0x6e,0x9b,0x62,0x98,0xb3,0x10, +0x28,0xd7,0x3a,0x91,0x70,0xcf,0x47,0x77,0xeb,0x44,0xe2,0x09, +0x05,0x8c,0xe0,0x47,0xa7,0xa9,0xaf,0x5c,0xdc,0xc7,0x80,0x08, +0x2a,0xa6,0xae,0x4a,0xb0,0xc4,0x0b,0x51,0xdf,0x5a,0x2b,0x87, +0xd3,0x07,0xe3,0x0c,0xd9,0x8c,0xb6,0x0b,0xb7,0x0c,0xc0,0xb7, +0xe5,0x2e,0x90,0x6b,0x2c,0xcf,0xd3,0x74,0xa0,0x08,0xb3,0xb3, +0xd0,0x33,0x78,0xf9,0xc8,0xc5,0xaf,0x1f,0x3d,0x58,0x6e,0xa4, +0x0f,0x52,0xff,0x5d,0x54,0xe4,0x45,0xf2,0xba,0x01,0xa1,0x66, +0x5b,0x11,0xdc,0x15,0xe4,0xf4,0x97,0x6e,0x9f,0x50,0x73,0x90, +0x21,0x81,0x3e,0x32,0x41,0x8b,0x3a,0x6b,0xd0,0x4c,0xac,0x83, +0x33,0xb5,0x7a,0x72,0xb9,0x72,0xfc,0x58,0x5e,0x9e,0xe3,0x50, +0x4f,0x26,0xfe,0xdb,0xc9,0xb3,0x83,0x6f,0x8d,0x7b,0xe9,0xe3, +0x71,0xbd,0x74,0xe5,0xdf,0x94,0xef,0xf5,0x17,0x15,0x1c,0x96, +0xcf,0x27,0xd4,0x8c,0xb5,0x5a,0xd9,0xf0,0x8f,0x9b,0x67,0x07, +0x50,0x7d,0x39,0x4e,0xb9,0x79,0x84,0xd7,0x53,0x26,0x08,0x17, +0x21,0x82,0xab,0xcc,0x16,0xc6,0xa6,0x7f,0x1c,0x3f,0x0b,0x47, +0x1a,0xb2,0x05,0x1d,0x34,0xd9,0x54,0x6b,0x75,0x08,0xe4,0x1c, +0xe1,0x79,0x94,0x97,0xf2,0x83,0xff,0xc5,0xb1,0xc3,0xf0,0xe0, +0x3c,0x6b,0x97,0x05,0xe6,0x97,0xc2,0xf6,0x85,0xf2,0x3e,0x4c, +0x2c,0x78,0xf0,0x12,0xc9,0x2e,0x30,0x8f,0x5a,0x37,0x63,0xe4, +0x44,0x51,0xb2,0x3d,0xe3,0x98,0xbf,0x81,0x51,0xa7,0xf2,0x01, +0xd9,0xea,0x82,0xac,0x26,0x3c,0xff,0xe0,0xd1,0xf7,0x67,0xd3, +0xf9,0x7f,0x71,0x07,0x39,0x92,0x95,0x61,0x58,0x4a,0x05,0xa2, +0x12,0xde,0xcd,0x01,0xeb,0xab,0x20,0xbe,0x57,0xcd,0xeb,0x78, +0x55,0x6f,0x45,0xcb,0x84,0xc7,0x04,0x55,0xe0,0xdf,0x16,0x64, +0x0f,0x7e,0x64,0xea,0xcc,0x01,0x64,0xdf,0xeb,0xaf,0xfe,0x72, +0x39,0x88,0x5e,0xfd,0x75,0x87,0xfc,0x8d,0x24,0xec,0x7f,0x4e, +0xff,0xef,0x43,0x88,0x10,0x7c,0x0e,0xc2,0xbf,0x01,0x38,0xca, +0x30,0x92,0x0a,0xe8,0xab,0xde,0x2b,0x1e,0xcb,0xaa,0xf5,0xa0, +0x52,0xad,0xf4,0xcc,0x30,0x5b,0xaa,0x1d,0xa3,0xdd,0xa0,0x0f, +0x0c,0xec,0xa8,0x36,0x89,0x2e,0x6b,0xd0,0x24,0x21,0x96,0xf2, +0x26,0x39,0x0e,0x98,0x2a,0xdf,0x37,0xcc,0x2f,0x2f,0xc8,0xb5, +0xc2,0xb6,0x08,0x5c,0xb9,0xe4,0x76,0xdd,0x34,0x77,0xe9,0x8e, +0x96,0x83,0x0c,0xca,0xe0,0xca,0x19,0x7a,0x6b,0x5a,0x28,0x4a, +0x5f,0x56,0x6f,0x8e,0x3f,0x13,0xbe,0xb9,0x96,0xf3,0x68,0xa5, +0x79,0xdb,0x50,0xdb,0x50,0xb8,0xfd,0x05,0x8a,0xab,0x86,0xd1, +0x74,0x47,0x79,0x92,0x78,0xee,0xb6,0xf0,0xdc,0xad,0x34,0x67, +0x09,0x8f,0x04,0xc0,0x76,0xae,0xa2,0x8b,0xa2,0x64,0x8c,0xf5, +0x71,0xeb,0xee,0x77,0x0c,0xd9,0x80,0x65,0xb2,0x27,0x1b,0x83, +0xb8,0x51,0xa3,0x96,0x8e,0xf9,0xc6,0x34,0x74,0xc7,0x51,0x38, +0x91,0x8e,0xc5,0xb3,0xca,0x2d,0x4e,0xa3,0x29,0x5a,0xe8,0x97, +0xe1,0xc7,0xe5,0xeb,0xaf,0x07,0xce,0xca,0x72,0x9f,0xda,0xbe, +0x46,0x5a,0x90,0x1f,0xae,0xc6,0xcf,0x0c,0xec,0x4a,0x3f,0xe5, +0x9a,0x95,0x68,0x0b,0x6b,0x64,0xaf,0xd1,0x80,0x59,0xf2,0xcf, +0x7e,0xe0,0x6c,0xa1,0x72,0x7b,0x77,0x51,0x6c,0x2b,0x99,0x0d, +0xb4,0xb0,0x8b,0x06,0x2b,0xd7,0x4f,0x99,0x37,0x06,0xc9,0xbf, +0x7f,0x05,0xe7,0x62,0x2e,0x56,0x21,0x00,0x65,0xb0,0x6a,0x74, +0xbb,0x6a,0xb4,0x8f,0x5c,0xe9,0xdc,0x06,0xb9,0xc0,0x8b,0xa0, +0x85,0xb3,0x2f,0xf7,0x44,0x8e,0x33,0x03,0xe1,0xe4,0x11,0xde, +0x76,0xb5,0x66,0xac,0x9d,0xb6,0x78,0xfa,0x0c,0x5f,0x9b,0xd9, +0x07,0x64,0x0d,0x5c,0x22,0x78,0x85,0xd0,0x60,0x59,0x46,0xe8, +0xc3,0xc0,0x7c,0x43,0xd5,0x68,0x25,0xca,0xef,0x02,0xf3,0x0f, +0x73,0xbc,0x81,0x76,0x1a,0x7d,0xc3,0x5c,0xd6,0x5a,0x94,0xba, +0xca,0xf6,0x78,0x07,0xe1,0xa1,0x43,0x44,0xa6,0xf0,0x7e,0xa4, +0x5e,0x7d,0xfa,0x08,0x83,0x98,0x33,0x79,0xf3,0xb4,0xea,0x01, +0xac,0x43,0xac,0x3b,0xaa,0xa6,0x08,0xec,0xc6,0xeb,0x9f,0xf6, +0x19,0xd4,0x0b,0x07,0x45,0xc8,0xe3,0xf8,0xbb,0x99,0xde,0x46, +0xc3,0x95,0xea,0x58,0xa7,0x17,0x06,0xa9,0x54,0x50,0x41,0x75, +0x54,0xe1,0x70,0xec,0xa5,0xd9,0x7e,0x04,0x8a,0x32,0x9b,0x2c, +0x04,0xbc,0x81,0x4b,0xc6,0xa8,0x38,0x9d,0x1d,0x3f,0x81,0x77, +0x65,0xa1,0xec,0x04,0xff,0x5d,0x22,0xca,0x16,0x80,0x70,0xf7, +0x01,0x62,0xcd,0xf2,0x71,0x24,0xf9,0x52,0x88,0x7a,0xb7,0x7e, +0x72,0xb6,0xc6,0x84,0x9d,0x65,0x7d,0x45,0xf9,0x51,0xa1,0x93, +0x75,0xab,0xf0,0x89,0x57,0xea,0x78,0x08,0x25,0x76,0xc0,0x44, +0x4a,0xbb,0xa9,0x3e,0xe4,0x75,0xa7,0x58,0x83,0x56,0x63,0xc5, +0xd6,0xb2,0xbe,0xf9,0x96,0xd9,0x20,0x5c,0x23,0x74,0xe3,0xbf, +0xdf,0xc2,0xd5,0x1a,0x4d,0x93,0xde,0x8e,0x5a,0x0c,0x23,0x58, +0xc3,0x1f,0x1b,0x5e,0x78,0x08,0xa8,0x9e,0xa3,0x78,0x21,0x43, +0xa7,0x12,0x49,0x40,0x23,0x31,0x95,0xef,0xe0,0x0d,0x39,0xc1, +0xa9,0xfc,0xdc,0x8b,0x61,0x88,0x11,0x4e,0x95,0x0b,0x6f,0x28, +0x2d,0x56,0x86,0x66,0xb1,0x91,0xb0,0x0e,0x64,0x10,0x7d,0xa5, +0xb4,0xe4,0xa4,0x1c,0x73,0x51,0x04,0xa3,0x9c,0xf2,0x18,0x1e, +0x49,0x15,0xa9,0x37,0x06,0x47,0x32,0x36,0xf2,0x28,0x0d,0xe4, +0x27,0xbd,0x9d,0xfd,0x98,0x76,0x83,0xa2,0xdd,0x25,0xc4,0x6c, +0xa8,0x2c,0x4b,0xca,0x16,0xbc,0xa3,0x60,0x1c,0x8f,0xb6,0x2b, +0x23,0xbe,0x0f,0xa0,0x86,0xbc,0x2f,0x3c,0xca,0x33,0x62,0x5b, +0x0b,0x78,0xc7,0x6a,0x8f,0x17,0xfa,0x16,0x5e,0xe8,0x0b,0xc2, +0xc8,0xcb,0x79,0x0d,0xa8,0x14,0xff,0xa3,0xd1,0x04,0xfc,0x56, +0x04,0x7e,0x0c,0x58,0x4f,0x4e,0xfe,0xff,0x78,0x7b,0xef,0xb0, +0xaa,0x8e,0xad,0x61,0xdc,0xa8,0x9c,0x0d,0x03,0xa2,0x02,0x1b, +0xcf,0x39,0x8c,0x07,0x14,0xec,0x8d,0xd8,0x7b,0x01,0x45,0x41, +0x05,0xb1,0xf7,0x78,0xd3,0x4c,0x8c,0x1a,0x4b,0x6e,0x62,0xa1, +0x2a,0xa0,0x20,0x45,0xa4,0xd9,0xbb,0x31,0x76,0x10,0x0b,0x1d, +0xc1,0x82,0x1d,0xb1,0x60,0x12,0x35,0xd1,0x98,0x6a,0xd4,0xf4, +0xcc,0xc6,0x35,0x87,0xfb,0xad,0xb5,0x0f,0x98,0xdc,0xfb,0x7e, +0xef,0xf7,0xfb,0x9e,0xf7,0xf9,0x9e,0xdf,0x1f,0xca,0x3e,0x33, +0xb3,0x67,0xd6,0xac,0x99,0x59,0x65,0xf6,0x2a,0xd6,0x44,0x9a, +0xe7,0xcb,0x3a,0xf0,0xba,0xab,0x25,0x2b,0x50,0xfe,0x8e,0xea, +0x07,0x6d,0x71,0x72,0x3e,0xfe,0xb2,0x87,0xd6,0xce,0xe0,0x57, +0x41,0x33,0xef,0x48,0x33,0x0d,0xb6,0xc1,0xdc,0x6c,0x26,0x93, +0xde,0x24,0x7e,0x70,0xf0,0xba,0xa1,0xa5,0x04,0xa0,0x38,0xc0, +0xb9,0x4f,0x14,0x13,0x5c,0xec,0x20,0x31,0x00,0x7f,0xac,0xa3, +0xa4,0x0f,0x2d,0x6b,0x93,0x99,0x18,0xa0,0x83,0x38,0x09,0xa1, +0xdf,0x46,0x6f,0x21,0xa8,0x17,0x58,0x27,0xf9,0x94,0x2c,0xd8, +0x9b,0xe1,0x52,0x7b,0xa3,0xa0,0x61,0xae,0x60,0x5a,0x4b,0x14, +0x04,0xa5,0x2d,0x1d,0xb4,0xb7,0x78,0x43,0x15,0x9e,0xe0,0x7e, +0x43,0x8b,0xa5,0xae,0x3d,0xf5,0xae,0x3d,0x6d,0x5d,0x7b,0x52, +0xd7,0x22,0x4d,0x4e,0xaf,0x7d,0x9f,0x6e,0x7e,0x76,0xdf,0x32, +0x60,0xf3,0xce,0xd4,0xdc,0xe5,0x86,0xb6,0x82,0x7b,0x20,0x55, +0x1b,0x07,0x85,0x32,0x1e,0x65,0x9a,0x9f,0x98,0xd6,0x4f,0x4e, +0xb0,0xe2,0xa3,0xd3,0x0f,0x4c,0x44,0xcb,0xd9,0xd6,0x53,0x64, +0xb2,0xde,0x58,0xfd,0x52,0x24,0x89,0x2b,0xc3,0x3a,0xca,0x41, +0x4f,0x87,0x22,0x9f,0x4c,0xea,0x23,0x0d,0xc1,0x35,0xe7,0x2e, +0x2a,0xd6,0x06,0x28,0x02,0x6b,0x83,0x3a,0xc8,0x41,0x48,0x0b, +0x76,0xd7,0x4e,0x64,0xd6,0x9e,0x28,0x45,0xc7,0x58,0x63,0xe9, +0x2d,0x3b,0xf5,0x8b,0x7f,0x7f,0xab,0xaf,0x34,0x74,0x64,0xf8, +0xca,0xea,0xba,0x57,0x6e,0xc1,0x4e,0x35,0x58,0x1c,0xbe,0x48, +0x96,0x0e,0x81,0x97,0x99,0x9e,0x67,0xf9,0x18,0xb8,0x52,0x82, +0xe5,0x9f,0xc5,0x30,0xf1,0xd5,0x70,0x6f,0x38,0xf8,0xab,0x3f, +0x3c,0x12,0xfe,0xde,0x8a,0x9e,0x53,0xd9,0x63,0xc3,0x68,0xb2, +0x64,0x0f,0x21,0x87,0xc2,0x83,0xd0,0x50,0x97,0x3f,0x0c,0xbc, +0xe9,0xa7,0xf8,0xea,0x9f,0x74,0xc5,0x32,0x9a,0x1b,0x82,0x29, +0xf3,0xfb,0xbf,0xb8,0x12,0xc7,0x6a,0xa2,0x50,0x08,0x89,0xe6, +0x86,0x9b,0x58,0x7b,0x85,0x6a,0x1d,0xa9,0xf6,0xa8,0x3c,0xc3, +0x95,0x57,0xb0,0xe8,0x67,0x2a,0x1a,0xc9,0xcd,0x7d,0x99,0x96, +0x25,0x4d,0xdc,0x80,0xb2,0xa2,0x41,0x1b,0x4c,0x7e,0x98,0x9f, +0xdf,0xac,0x79,0x75,0x38,0x1c,0x01,0x67,0xb1,0x63,0xb8,0xd5, +0xf9,0xa6,0x01,0xec,0xc5,0xc8,0xfd,0x64,0xf2,0xd2,0x49,0x3c, +0x0c,0x68,0x0d,0xd1,0xbf,0x06,0xc0,0x17,0xa2,0x1b,0x38,0x28, +0x6b,0x03,0x47,0x24,0x8c,0xd2,0xc5,0x90,0x46,0xa2,0x4a,0x15, +0xd1,0x08,0x51,0xb4,0x41,0x74,0x43,0x15,0x55,0xb9,0x87,0x62, +0x48,0x20,0x13,0x01,0x72,0x3f,0x57,0x56,0xe3,0xf3,0x3c,0x5c, +0x54,0x79,0x93,0x2b,0x9d,0x99,0xb6,0x91,0x22,0x06,0x04,0x70, +0xb3,0xc2,0x12,0x64,0x43,0x71,0x82,0x71,0xc7,0x2f,0x48,0xac, +0xc8,0x15,0xf7,0xea,0x5c,0xfc,0x47,0x54,0xb0,0xdf,0xb8,0x4f, +0x67,0xe6,0xa5,0xac,0xe9,0xdf,0x27,0xa1,0x1f,0x85,0x0d,0x98, +0x25,0x2e,0xa9,0xe2,0x10,0xf6,0x7f,0xc8,0xa0,0xa1,0x8a,0x67, +0x6d,0xab,0x5b,0xd7,0x76,0x14,0x2e,0xdc,0x6c,0xcf,0x44,0x35, +0x1c,0x11,0xa3,0x48,0x0a,0xa8,0x50,0x9f,0xfd,0x2c,0x7e,0x85, +0x4e,0x0c,0x7e,0xfd,0xb9,0x03,0x2c,0xe9,0x42,0xc8,0xde,0x87, +0xc8,0x06,0x3b,0xc4,0xf6,0xb3,0xb1,0x28,0x35,0x74,0xb0,0x09, +0x24,0xef,0xd2,0x67,0x8b,0xf0,0xbb,0xa2,0x90,0x3e,0x5b,0x58, +0x4f,0xb0,0xce,0xb6,0xbc,0xcc,0x4e,0x15,0x78,0x0c,0x6c,0x79, +0x99,0x9d,0xc4,0x55,0xf5,0x09,0x76,0xc6,0x1d,0x52,0xa8,0xb7, +0xce,0x94,0xfa,0x19,0x7b,0xdb,0x4d,0xbd,0x19,0xa8,0x37,0x92, +0x6f,0x3a,0x93,0x64,0xd1,0xca,0x96,0x84,0xd9,0xfc,0x0b,0xc5, +0x40,0x37,0x72,0x73,0x38,0x32,0x0e,0xc4,0xf7,0x5d,0xde,0x64, +0x2e,0xab,0x9d,0xcf,0xa0,0x88,0xbb,0x7f,0xc6,0xe4,0x04,0x06, +0xe1,0x28,0x65,0x18,0xfa,0xc2,0xc1,0x10,0xb1,0xa0,0x23,0xcc, +0x83,0x7e,0xf2,0x37,0xf6,0x5c,0xbc,0x23,0x66,0xc3,0x1f,0xec, +0x41,0x4d,0x3b,0x8a,0x37,0x98,0x84,0xeb,0x12,0xcd,0xe0,0xfa, +0x62,0xd6,0x15,0xd5,0xac,0x4d,0x0c,0x1e,0x31,0x6e,0x49,0x45, +0xb1,0x82,0xdb,0x95,0xbe,0xac,0xea,0x06,0x29,0x02,0xa5,0xfa, +0x94,0xef,0x50,0x5d,0xa9,0xef,0xd5,0xbf,0x0d,0xed,0xa3,0x36, +0xb7,0xa0,0x09,0x83,0x1b,0x97,0x99,0xfc,0x06,0xd9,0xae,0xf6, +0xbe,0x3a,0xbc,0x27,0x7c,0xf2,0x70,0x38,0x9c,0xaa,0x69,0xc5, +0xe0,0x93,0xef,0xe5,0x11,0x26,0xc7,0xa0,0xe0,0xd1,0x55,0xce, +0x42,0xa1,0x04,0x69,0x63,0x27,0x6d,0x65,0x85,0xac,0x00,0xd4, +0x43,0x88,0x28,0xa6,0x47,0xfe,0x1f,0xda,0x4f,0x92,0xdd,0x6c, +0x11,0x62,0xf7,0xc9,0x0b,0x86,0xea,0x10,0xba,0x59,0xe9,0x42, +0x37,0x2b,0xbc,0xa9,0x1b,0x0d,0xb5,0x9c,0x7b,0x05,0x33,0xb9, +0x80,0x3b,0xb6,0xfb,0xf7,0x3c,0xcb,0xff,0x0d,0x10,0x94,0x56, +0x99,0x5b,0x76,0xb0,0xd6,0xda,0xeb,0xdc,0x2b,0x84,0x49,0x3f, +0xee,0x74,0x1a,0xa9,0xf8,0x2b,0x58,0xb0,0x5c,0x1d,0xd9,0x0b, +0xc2,0x1f,0x8e,0x42,0x11,0xad,0xb1,0x61,0xe4,0x39,0x15,0xc2, +0xbf,0x13,0xe1,0x86,0xde,0x32,0x88,0x3b,0x45,0xd2,0x25,0xc7, +0x57,0x74,0x9f,0xf1,0x0b,0x6f,0x31,0x98,0xfd,0x02,0x19,0x34, +0x05,0xfd,0xae,0x02,0xa7,0x60,0x58,0xc4,0x7a,0x49,0x23,0x37, +0x64,0xb0,0xfb,0x70,0x43,0xbd,0xa7,0x25,0x89,0x69,0xf2,0xde, +0x38,0x6d,0xc3,0x00,0x99,0x08,0xed,0xb8,0xfd,0x70,0xdd,0x60, +0x3e,0x8c,0x5e,0xdc,0x82,0xc7,0x0e,0xe7,0xb2,0x55,0xa0,0xf8, +0xf6,0x11,0xc3,0x79,0xf4,0x33,0x38,0xfb,0x32,0x79,0xed,0xa6, +0x76,0x8d,0xee,0x59,0xe6,0x72,0xa7,0xcd,0xd8,0x55,0x67,0xee, +0xf8,0x03,0xc2,0xd4,0x18,0x61,0x9a,0xab,0x03,0x39,0x9d,0x3b, +0xa2,0x04,0xad,0x0e,0x67,0xf0,0xaa,0xec,0xc3,0x19,0x09,0xcf, +0x0b,0x99,0xe8,0xf3,0x46,0x95,0x76,0x99,0x5b,0x82,0xf0,0x8d, +0x91,0xdc,0x71,0x58,0xbd,0x9c,0x93,0xa4,0x95,0x72,0x7b,0x0f, +0xe4,0x27,0xb2,0x2b,0x62,0xd0,0x30,0x8e,0x6d,0x43,0x42,0xd5, +0x64,0xed,0x7f,0x5b,0x3d,0x16,0x3a,0xbe,0x4c,0xed,0x9c,0x5c, +0xd3,0x80,0x7b,0x8d,0x61,0xf2,0x0d,0xac,0xea,0xc2,0x9b,0x3a, +0x50,0x46,0xe7,0x78,0xca,0xe8,0xdc,0xf2,0x32,0x83,0xea,0xa5, +0xac,0x3d,0x34,0x1a,0x8b,0xdb,0x37,0xe2,0xae,0x28,0xf2,0x79, +0xae,0xf8,0xb7,0x57,0xe1,0x83,0xe7,0xf4,0x21,0x87,0xf3,0x7e, +0xac,0x2d,0xac,0xa7,0x0f,0x6f,0xa3,0xe8,0xc3,0x5b,0x03,0x6e, +0x6f,0x66,0x58,0xca,0x98,0xb5,0x85,0x9c,0xa5,0x6a,0x87,0x2e, +0xc9,0x0d,0x7a,0x8d,0xbc,0x03,0xeb,0x51,0x2a,0xb1,0xb6,0x67, +0x10,0xa5,0x76,0x24,0x7b,0xc2,0x4d,0xb5,0x46,0xf6,0xf2,0xe7, +0x44,0xb8,0x6b,0xd5,0xfe,0xfa,0x79,0x0f,0x4c,0x35,0x0b,0xf5, +0x9f,0xd1,0xdc,0xee,0x0c,0xaa,0x23,0x11,0x24,0x15,0x6d,0x50, +0xb5,0xe3,0x97,0xe5,0xc6,0x6f,0xb5,0xf0,0x8b,0x32,0xfc,0x6b, +0x0a,0x9f,0x53,0x0d,0x95,0x7f,0xeb,0x94,0xec,0x08,0xff,0x4e, +0xdc,0xda,0x32,0x6b,0xb7,0xbb,0x35,0xdd,0x14,0xab,0xdf,0x1c, +0x15,0x9e,0x68,0xfd,0xc5,0x53,0x7f,0x78,0x05,0x0e,0xfe,0xa9, +0x20,0x21,0x3b,0xaa,0xc2,0x41,0x81,0x0f,0x06,0xd9,0x05,0xb2, +0x55,0x0a,0xdd,0x11,0x73,0xc1,0xee,0x03,0xee,0xb0,0x91,0xae, +0x48,0x5a,0xaa,0xda,0xfe,0xcb,0x32,0x49,0x84,0x0e,0x81,0x59, +0x5e,0xe4,0xc1,0xf7,0x0d,0x13,0x11,0x72,0xa2,0x8a,0x62,0xe7, +0x05,0x79,0x1e,0xd2,0xbc,0x98,0x16,0x70,0x89,0x64,0xcf,0x20, +0x92,0x3d,0x51,0xd2,0xda,0x74,0x57,0xdb,0xa4,0x58,0x87,0x7d, +0xa0,0xc2,0x2d,0x1c,0xe6,0xf6,0xf0,0x8e,0x70,0xf8,0x47,0x05, +0x65,0xb4,0x8d,0x2a,0x1c,0xfe,0x0d,0x45,0x27,0xd9,0x15,0x32, +0x29,0x17,0xaf,0x98,0x27,0x6f,0xb2,0x98,0x0a,0xbb,0xa5,0x1f, +0x32,0x11,0x29,0xe7,0xaa,0xda,0x06,0xf1,0xcd,0x30,0x6f,0xe9, +0xfb,0xdb,0x30,0x38,0x8e,0x9d,0x8e,0xc2,0x4e,0x7d,0xc5,0x2b, +0x9a,0xaf,0xc1,0x99,0xc8,0xd2,0x16,0xed,0x2b,0x15,0xe9,0xf1, +0xa1,0x5f,0x87,0xc3,0x23,0xad,0x9f,0x61,0x38,0x32,0xb8,0x43, +0xa2,0xa1,0x38,0x64,0x40,0xb5,0x3b,0x4e,0xde,0x66,0x01,0xb0, +0x1c,0xa9,0x12,0x0e,0x9f,0xfc,0x29,0x31,0xc4,0xe3,0x3a,0xcf, +0xe6,0xce,0x69,0xf4,0xc1,0x5b,0x67,0x80,0xdc,0x1d,0xe9,0x9e, +0x75,0x88,0xaa,0x1d,0xbc,0x2a,0xd7,0xff,0xa2,0x2d,0xbe,0x2c, +0x17,0xff,0xac,0x45,0x5c,0x91,0x97,0xe1,0x29,0x4d,0x8b,0x27, +0xb3,0xe9,0xf0,0xd8,0x9a,0xca,0x5e,0x30,0x2d,0x4f,0x45,0xda, +0xbb,0xd8,0x5f,0x66,0xdc,0x12,0xcb,0x84,0xb3,0x41,0x7e,0x23, +0xe2,0xb8,0xd3,0x32,0xb2,0x09,0x62,0x14,0x12,0x64,0xbd,0x56, +0xaa,0x8a,0x79,0xfe,0x72,0xed,0x2d,0xb1,0x44,0x38,0x5f,0x51, +0xb0,0x7e,0x04,0x77,0x75,0xc7,0xcd,0xa3,0x32,0x39,0xe7,0x16, +0xee,0x7b,0x3b,0x26,0x06,0xa2,0x92,0xb2,0x93,0x56,0xe9,0xa3, +0xcb,0xf2,0xa3,0x5f,0xb4,0x98,0x2b,0xb2,0x0a,0x9e,0xe3,0xb4, +0xc8,0x95,0x91,0xae,0xfb,0x51,0xf8,0x50,0x50,0xc6,0xf9,0xe1, +0xbc,0xd6,0x8f,0x41,0x37,0xee,0x71,0x9b,0xd5,0xa4,0xd8,0x2e, +0x4c,0x1a,0x8a,0x29,0x41,0xd6,0xaa,0xab,0xa2,0x42,0x34,0x84, +0x2f,0xaf,0xd5,0x68,0x8a,0xb5,0x29,0x94,0xaa,0x9d,0xc5,0xa2, +0x60,0x59,0x21,0x16,0x68,0x97,0x82,0x0d,0x62,0x0f,0x2c,0x51, +0xbb,0xf0,0xd6,0xae,0x6c,0xac,0x41,0x8c,0x23,0x2f,0xd5,0xd9, +0xd8,0x16,0xa5,0xac,0x6b,0xd0,0x90,0xb7,0x5e,0xc0,0x6a,0xba, +0x8a,0x6a,0xf5,0x17,0x58,0x78,0xb5,0xa6,0x4b,0x10,0xf4,0x69, +0x23,0x3a,0x8c,0xb6,0x1a,0xae,0x18,0x50,0x94,0xbc,0xcd,0x1d, +0xf6,0xb2,0xb1,0x72,0x9c,0x58,0x6a,0x10,0x87,0xb4,0xf1,0xf4, +0x2b,0x18,0x7f,0x2d,0x31,0x88,0xa5,0xe2,0xa4,0x0a,0x03,0xdb, +0x88,0x81,0x8a,0x7c,0x9d,0x04,0xe9,0x2c,0x56,0x33,0x9f,0xc0, +0x79,0xb3,0xb5,0x18,0x3a,0x06,0x3a,0x22,0x3e,0xda,0x8f,0x91, +0xbd,0x44,0xa2,0x08,0xfe,0x1d,0xe6,0xdf,0x24,0x63,0x99,0xf0, +0xb9,0x9c,0x9f,0x61,0xa2,0x2f,0x6f,0xd9,0x01,0x75,0x91,0x7c, +0xb6,0x53,0xfe,0x93,0xdb,0x87,0xb2,0xec,0x8c,0x9c,0xc4,0x42, +0xee,0xf0,0x1a,0x5b,0xfb,0x6a,0xe8,0x44,0x88,0xe8,0x9e,0x13, +0x6a,0x14,0xc6,0xb2,0x07,0xa7,0x8a,0x4e,0x6d,0x4e,0xdf,0x92, +0xb0,0x65,0xb5,0xd8,0x05,0x2d,0x8d,0xc7,0xcf,0xd9,0x39,0xd7, +0xa4,0xd3,0x9d,0xf0,0x9e,0xab,0xda,0x1e,0x05,0x4e,0xc1,0x29, +0xb5,0x12,0x3e,0xbc,0xa2,0x25,0x70,0xf3,0x34,0x06,0x59,0xd2, +0x59,0xd5,0x8e,0xc0,0x36,0xca,0xa3,0x2b,0x10,0x59,0x2d,0xda, +0x91,0x29,0xfe,0x6d,0xee,0xbc,0x9c,0xd5,0xc4,0x30,0xe8,0xc5, +0x0d,0x97,0x98,0xed,0xf5,0x2d,0x57,0xb5,0x2d,0x0a,0x9c,0x86, +0x63,0xdc,0x84,0x74,0x30,0x4a,0x3e,0xe6,0xce,0x6a,0x5d,0x55, +0xd4,0x55,0x2d,0x8a,0x7a,0xde,0xcf,0x4d,0xae,0xf4,0xc1,0xb0, +0x3d,0x57,0x96,0xb2,0x5a,0x54,0xa9,0x1e,0x5e,0x35,0xc0,0x29, +0x51,0x82,0x03,0x2e,0xbc,0xa2,0xad,0xa2,0x01,0x85,0xab,0x0c, +0xd6,0xdd,0x65,0x97,0x45,0x90,0xbb,0x6c,0xa2,0xdd,0xd1,0xbc, +0xcc,0xfc,0xf3,0xe6,0x83,0x83,0xde,0x57,0x5a,0x4d,0x0e,0x82, +0xf8,0x3a,0xff,0xc4,0x2f,0x0a,0x8b,0x0b,0x4d,0x9b,0x32,0xb6, +0x90,0x7f,0xe2,0x2e,0xe8,0x62,0x3c,0x45,0xfe,0x89,0xee,0x8d, +0x19,0xac,0x96,0x5f,0xaa,0xbc,0x59,0x5b,0x46,0x46,0xce,0x3b, +0xae,0x1a,0x9c,0x35,0xa4,0xe6,0x76,0x37,0xb4,0x39,0x01,0x60, +0x07,0x8d,0x1e,0x8c,0x81,0x56,0xd0,0x44,0x78,0x8e,0x41,0xa1, +0x67,0x1d,0xc5,0xbd,0x6e,0xa3,0x52,0x89,0x93,0xf0,0x7c,0x81, +0xcc,0x29,0x51,0xd6,0xa8,0xbc,0xcd,0x33,0xa6,0xc5,0xb5,0x95, +0x51,0x30,0xaa,0x35,0xd3,0x72,0xb1,0x03,0xee,0x6e,0xa0,0x4f, +0x8e,0x9f,0xaa,0x62,0x7f,0x05,0xec,0x37,0x88,0xd7,0x60,0x0f, +0x37,0xe2,0xc6,0xc4,0x7e,0x1b,0xdd,0xd0,0x66,0xff,0x5f,0xf4, +0x9b,0x4a,0xfd,0x36,0xad,0x62,0xf2,0x2e,0x3c,0xa7,0x2c,0x92, +0xd8,0x69,0xcd,0x7a,0x3d,0x81,0x1d,0xed,0x28,0xf8,0x27,0xbc, +0xae,0xf6,0x17,0xee,0xc1,0xf0,0x41,0x17,0xb1,0x24,0x58,0x5e, +0x15,0xf3,0x85,0xe7,0x7d,0xf8,0xf6,0x4a,0xcd,0xed,0xd1,0x06, +0xe9,0x8b,0xa2,0x6d,0x7d,0xb1,0x76,0x1d,0xb7,0xdb,0x97,0x52, +0x51,0x45,0xe0,0x7d,0x08,0x54,0xb0,0xae,0x15,0xd6,0x2d,0xff, +0xc1,0x20,0x76,0xc3,0x72,0xdb,0x93,0x73,0x2d,0x9e,0xba,0x87, +0x57,0x0c,0x50,0x20,0x66,0xab,0xf7,0xc0,0xf9,0xa2,0xb6,0x2a, +0x18,0x9a,0x0f,0xf8,0x92,0x2b,0x0f,0x91,0xe1,0x68,0x7e,0x2a, +0x3d,0x08,0x4d,0x64,0xab,0xd0,0x74,0x00,0xf7,0x8a,0x24,0x3f, +0x7f,0xd3,0x4e,0xa4,0xe4,0x5f,0x31,0xb1,0x91,0xbb,0xcd,0x67, +0x35,0x19,0xb4,0x5e,0x3b,0xaf,0x68,0x3b,0x15,0xc8,0x97,0x4d, +0xd4,0xcf,0xc1,0xe9,0xa2,0xf6,0x11,0x37,0x06,0xb2,0x0b,0xdc, +0xdc,0x83,0xd5,0x1c,0x22,0x03,0x7b,0xa8,0x0b,0x11,0x96,0x49, +0x21,0xc2,0xe4,0x41,0x32,0x35,0x6d,0xf9,0x2b,0xe3,0xa6,0x71, +0x0c,0x62,0x61,0x2b,0x6f,0x31,0x95,0xbd,0x50,0xb4,0xfe,0x2a, +0x34,0x17,0x3f,0xf9,0x59,0xb5,0xdb,0xda,0x2c,0xd1,0xdc,0x20, +0xbf,0x13,0xa0,0x8e,0x05,0x0b,0xa0,0x94,0x3b,0x46,0x72,0xb1, +0xc6,0x20,0xce,0x6a,0x16,0x44,0x93,0x5e,0x32,0x56,0x2f,0x91, +0xaf,0x9c,0x57,0x29,0x8e,0x95,0x60,0x06,0x51,0x0e,0x5e,0xf5, +0xcf,0xc8,0x19,0x9a,0xaa,0xa2,0x9d,0x1f,0x74,0xac,0x4f,0x9f, +0x33,0xda,0x16,0x48,0x78,0x8f,0x78,0xd5,0x33,0xe6,0xe2,0x90, +0xa8,0xae,0x94,0xe7,0xc7,0xb9,0x66,0xb5,0xb6,0x48,0x15,0xf9, +0x7e,0xd6,0x6e,0xb7,0xc5,0x65,0xe1,0x71,0x45,0x81,0x6c,0x18, +0xca,0x1b,0x3f,0x67,0xbf,0xa3,0x0e,0xfb,0x74,0x2c,0x30,0x30, +0x08,0xfb,0x10,0xf8,0x32,0x44,0x3c,0x0a,0xb1,0xfd,0x18,0x0b, +0x4f,0xc4,0x72,0x78,0x85,0x7b,0xaf,0x65,0x7b,0x28,0xe7,0x95, +0x2a,0xa6,0xa8,0x58,0xee,0x28,0x0c,0x06,0x31,0xca,0x1d,0x25, +0x18,0x47,0x30,0x18,0xa0,0x25,0x9c,0x57,0x91,0xde,0xbe,0xb8, +0xc0,0x70,0x84,0x6d,0xaa,0x48,0xf4,0x93,0x79,0xb7,0x45,0x54, +0xdd,0x08,0xa3,0xb8,0xdd,0x25,0x32,0x4d,0x03,0xee,0xf5,0x2b, +0xab,0x49,0xa2,0x73,0xfa,0x1d,0x92,0x8d,0x4f,0x03,0xad,0x55, +0xd7,0xb4,0x60,0xd1,0x50,0xbe,0x5d,0x49,0xe9,0xa3,0xaa,0xc6, +0xa8,0xa1,0x60,0xec,0x2c,0xdc,0x43,0x24,0x13,0xef,0x1a,0xc4, +0x36,0xcd,0x49,0x1d,0xa7,0x17,0x84,0x62,0xc1,0x3b,0x06,0xb8, +0x5b,0x8e,0x64,0xc5,0xfc,0xc4,0x20,0xb6,0x82,0xd9,0xf6,0x04, +0x6d,0xe5,0x2b,0xaa,0x68,0x3d,0x1c,0xda,0x2a,0x6b,0x87,0x0f, +0x8b,0xf7,0xf7,0x48,0xc5,0x69,0x8f,0x16,0x13,0x71,0xda,0x46, +0x9c,0x76,0x70,0xd4,0xd0,0xd5,0xfd,0xe2,0x70,0xda,0x9e,0xda, +0x4c,0xf5,0x77,0x48,0xba,0xae,0x5d,0x18,0xc5,0x9b,0x4f,0x40, +0x74,0xd9,0xfd,0xce,0x5b,0x98,0xd8,0x3f,0xe4,0x26,0x55,0x0c, +0xd2,0xe2,0x2f,0x23,0x33,0x5a,0x8b,0xdb,0xee,0x28,0x19,0x22, +0x39,0xaa,0x94,0xe8,0xb2,0x98,0x5b,0x2e,0xb1,0x91,0x4c,0x6e, +0xbd,0x6d,0x80,0x76,0xa2,0x21,0x6f,0xa1,0x32,0x71,0x02,0x8e, +0xf2,0x96,0x2b,0x50,0x00,0xed,0xcb,0xe0,0x5d,0x28,0xe4,0x5e, +0xb1,0xa8,0x6e,0x45,0xb0,0x87,0xdd,0x20,0xee,0xbb,0x87,0xdc, +0xe3,0x1f,0x4c,0x1a,0x65,0x19,0xf7,0x8c,0x41,0xfa,0xf2,0x15, +0x5d,0xed,0xb9,0xe0,0x96,0xf6,0x24,0x43,0x88,0x9f,0x87,0x1a, +0x20,0xbb,0xb1,0x1c,0x28,0xec,0xc8,0x04,0x82,0xb7,0x28,0xd1, +0x4d,0x5e,0x32,0x89,0xf3,0x8e,0xc5,0x6d,0xa2,0x9b,0xbc,0x70, +0x27,0x17,0xd6,0x13,0xe2,0xb8,0x57,0x04,0x4a,0x76,0x5f,0xe1, +0xf6,0x9f,0x4b,0xbb,0xac,0x06,0x96,0x04,0x8b,0x25,0x30,0x59, +0x4f,0x6c,0x1c,0x36,0x57,0x0d,0x41,0xfd,0xa4,0x89,0x40,0xf6, +0xff,0x3b,0xed,0x8e,0x73,0xe2,0x4f,0xdc,0x2f,0x7a,0x49,0x88, +0x5e,0x22,0x1b,0x9c,0x55,0xf1,0x97,0xb3,0x68,0x42,0xbb,0xc3, +0xb9,0xfe,0xf9,0x57,0x28,0x57,0x91,0x73,0x7d,0x00,0xaf,0x42, +0x44,0x34,0x2c,0xf2,0x48,0xe5,0xcd,0xcf,0xa1,0x6c,0x58,0x2d, +0x6e,0x2a,0xbf,0xa7,0x3e,0xcb,0xb8,0x97,0x65,0xef,0xcc,0xdd, +0xba,0xff,0x87,0x90,0xa7,0x2f,0x94,0x55,0xa3,0xa5,0x81,0x18, +0xf9,0x54,0x85,0xf1,0x21,0x62,0x3c,0x8c,0xb9,0x56,0x53,0x15, +0x68,0x80,0xaf,0xe6,0xa9,0xe3,0xc1,0xa1,0x93,0x50,0x42,0xe1, +0x7b,0x31,0xd7,0x20,0x36,0x8b,0x27,0x75,0x05,0xe3,0xb1,0xe0, +0x6d,0x03,0xdc,0x2a,0x53,0x3b,0x09,0xf6,0x23,0xd6,0x00,0xb3, +0x3d,0xdd,0x85,0x65,0xea,0x07,0xe0,0x0e,0x53,0xa2,0x61,0x34, +0xe5,0x57,0xa8,0xac,0x4c,0x4a,0xbe,0xee,0x09,0xc7,0x6e,0x8a, +0x5c,0xe5,0x71,0xea,0xfd,0xf4,0x6b,0x08,0x05,0x22,0xfc,0xb3, +0xdb,0x06,0xb9,0x58,0x2b,0xe7,0xe6,0x52,0xd4,0xf4,0x51,0xa2, +0xb1,0xff,0x8c,0x5d,0x30,0x52,0x1c,0xec,0x65,0xd1,0xb0,0x60, +0x0f,0xeb,0x0e,0x5d,0x79,0x9b,0x4a,0x14,0xdf,0x76,0x33,0xb8, +0x54,0xdb,0x95,0xb5,0x43,0x2d,0x12,0x57,0xee,0xd0,0x45,0x94, +0x55,0x42,0x74,0x29,0xe6,0x27,0x83,0x7f,0x3b,0x14,0x71,0x7e, +0x22,0x11,0x07,0x76,0x32,0xb1,0xa4,0x5b,0x5b,0xee,0xf9,0x03, +0x6b,0xaf,0xcd,0x66,0xc2,0x59,0x6b,0xab,0x8a,0x13,0xe2,0xb7, +0x20,0x70,0x00,0x5f,0xa1,0x8c,0x32,0x08,0x09,0xbf,0xe8,0x25, +0xa3,0x6c,0x25,0x41,0x06,0xc8,0x87,0x3c,0x55,0x38,0x09,0x5f, +0x70,0x52,0xc4,0x6c,0xf7,0xba,0x27,0x6b,0x17,0x98,0xa3,0xd6, +0x9c,0xbb,0x66,0x3d,0x67,0xa8,0x09,0x02,0x5f,0x95,0x02,0xbf, +0x25,0xa1,0xde,0x4e,0xab,0x79,0x81,0xe4,0xa5,0xb7,0xea,0xe4, +0xa5,0xb1,0x75,0xc7,0x9e,0x1c,0xfe,0xbb,0xd6,0xac,0xe1,0x2d, +0x9d,0xd8,0x59,0xde,0xea,0x35,0x86,0x1d,0x6c,0xa8,0x95,0x4c, +0xba,0x40,0x36,0x77,0xea,0xc5,0x6a,0xde,0x6c,0xaf,0xe2,0x9a, +0xfa,0x19,0xac,0x9e,0x72,0x2a,0xf7,0xf1,0x62,0xe2,0xbc,0xf4, +0xa2,0xbf,0x10,0x07,0xdf,0xe2,0x8e,0x16,0x8e,0x94,0x10,0x23, +0xd8,0xbd,0xee,0x49,0x6e,0x20,0xf5,0x7d,0x89,0x08,0xcb,0xda, +0x2b,0x7a,0xe2,0xc6,0xd6,0x97,0x32,0x32,0x1a,0x16,0x7b,0xe0, +0xf8,0x67,0x19,0x1c,0xb6,0x7a,0xa9,0x48,0xca,0x65,0x0c,0x91, +0x75,0x0a,0x5c,0x50,0x93,0x83,0x8b,0xe7,0x27,0x93,0x11,0x99, +0x1f,0xa1,0x3c,0xea,0x83,0xbb,0xb7,0x4a,0x1b,0x44,0x7f,0x65, +0xf3,0x0b,0xbc,0xd5,0x22,0x4a,0x7f,0xf5,0x2e,0x77,0xcb,0xc0, +0xad,0xfa,0x29,0xcb,0x92,0xff,0x54,0x97,0xa7,0x45,0xad,0x5b, +0x11,0xbe,0x3c,0xc2,0xb8,0x26,0xe9,0xc0,0xb1,0x8c,0xe3,0x89, +0x85,0x26,0x91,0x7a,0x45,0x3e,0x1e,0x2d,0xb6,0x18,0xd6,0xbe, +0x3a,0xae,0x9e,0x33,0x9a,0x90,0x33,0x16,0x9f,0xde,0x94,0xa6, +0x73,0xc6,0x9d,0x75,0x9c,0x91,0xb7,0xb8,0x8b,0x32,0xf4,0x56, +0x15,0x3e,0x09,0x11,0x9f,0x18,0xfc,0x61,0x2e,0x37,0x0a,0x46, +0x85,0x30,0x06,0x1e,0xa0,0x84,0x42,0x5f,0x85,0x7e,0x8b,0xe4, +0xea,0x7e,0x86,0xba,0xe8,0x6f,0x31,0xbf,0x30,0xcd,0x47,0x3a, +0xfc,0x17,0xb7,0x33,0x14,0x60,0x7f,0x1b,0x8e,0x75,0x1e,0x32, +0xe0,0x5b,0x56,0xf7,0x43,0x04,0x42,0x89,0x38,0x55,0xff,0x4b, +0x9b,0x09,0x85,0xc2,0x09,0xc5,0x37,0xfc,0xe9,0xa7,0xa6,0xa6, +0x67,0x25,0xa4,0xc5,0x88,0x89,0x30,0xc6,0xc8,0x9b,0x20,0x15, +0x9c,0x2b,0xc7,0xd5,0xa2,0xd8,0xf9,0x1c,0x2b,0x83,0xb8,0x61, +0x00,0x3b,0x0b,0x39,0xcf,0xf4,0xaf,0x4e,0x9f,0xc5,0x73,0xc3, +0x31,0x0a,0x05,0xf0,0xd0,0xda,0xe8,0x6f,0xf5,0x95,0x70,0xe2, +0x39,0xe3,0x5e,0x9e,0x0c,0x6e,0x8b,0x35,0x2a,0xe7,0xef,0x30, +0xd1,0x03,0x86,0x19,0x79,0xd3,0x93,0x4c,0x7b,0x43,0xce,0xdd, +0x8e,0x04,0xff,0x11,0x6e,0x18,0xd8,0x3f,0x96,0x9d,0x65,0x32, +0xb8,0x83,0xc8,0x61,0x2b,0xe0,0xcb,0xda,0x19,0xf4,0xeb,0x9d, +0xf6,0xea,0x86,0xf4,0xcc,0xbf,0x86,0xaf,0x61,0x9a,0x93,0x1c, +0xf2,0x94,0x59,0x91,0xb3,0xbc,0xd3,0xf1,0xe5,0xe8,0x7f,0xfd, +0xb4,0x0d,0xe6,0xb8,0x8e,0x2d,0x90,0x77,0x75,0x33,0xed,0x0c, +0xa6,0x4d,0x90,0xa3,0x5e,0xd7,0x9f,0x66,0x61,0xd9,0x15,0xba, +0x25,0x19,0x0b,0x13,0xc6,0x88,0x09,0x90,0x74,0x57,0x8b,0x55, +0xe4,0x3c,0xc8,0xe1,0xa6,0xe5,0xcc,0x17,0x1e,0x70,0xaf,0x2e, +0x08,0xcc,0x4d,0xd4,0x5b,0x65,0xff,0x74,0xfd,0xe9,0x75,0xb8, +0x14,0x4b,0x41,0x63,0x7d,0x20,0x68,0xac,0x08,0xc2,0xa9,0x05, +0x05,0x8b,0x20,0x83,0x1c,0x7c,0x0c,0x79,0xb3,0x3d,0x83,0x50, +0x11,0x18,0xb1,0x31,0x2c,0x21,0x3c,0xca,0xb4,0x22,0x9c,0xb7, +0xdc,0x43,0xfe,0x31,0x57,0x8e,0xb2,0x4f,0x59,0x1b,0xd4,0x81, +0x1b,0x0e,0x60,0x28,0x59,0x1d,0xe7,0x4e,0xc1,0x6c,0xbd,0xcc, +0x25,0x33,0xa6,0x85,0x57,0x64,0x21,0xb7,0x1f,0x8d,0x4a,0xf7, +0x18,0x14,0x8f,0x20,0xe1,0x09,0x02,0xb5,0x8c,0x69,0xd3,0x65, +0xc0,0xeb,0xf4,0xb5,0x64,0x23,0x12,0xc0,0x4d,0x99,0xdc,0x7d, +0x3d,0xd3,0x96,0xca,0x1e,0xdb,0xf5,0x0f,0x35,0xb0,0xe9,0xbe, +0x4a,0xdf,0x68,0xda,0x82,0x4b,0xb0,0x70,0x69,0xc3,0x9b,0xdf, +0x62,0xbb,0x54,0xd1,0x15,0x46,0x95,0x96,0x40,0x57,0x31,0x9c, +0x37,0x3b,0xc0,0x92,0xed,0x76,0x14,0xa7,0x97,0x5d,0x35,0x9f, +0xf3,0x9f,0xa8,0x00,0x7f,0x7d,0x30,0x78,0x42,0x27,0x4b,0xe9, +0xec,0x5b,0x9f,0x16,0x9d,0x3f,0x58,0x61,0x4a,0xcd,0xc8,0x4c, +0xd8,0xb0,0xda,0x1e,0x39,0x35,0xc7,0x2d,0xa8,0x2e,0x62,0xda, +0xdb,0xd2,0x37,0x92,0xd5,0xa2,0x50,0xf4,0x96,0x35,0x88,0xbd, +0x34,0x80,0xfd,0xab,0x00,0x95,0x8e,0xcd,0xd6,0x93,0x7f,0x2f, +0x40,0xb5,0x43,0x2e,0xd4,0x0b,0xde,0x54,0x45,0xa3,0x21,0xd0, +0xa8,0xee,0x8e,0x45,0x9e,0x86,0x16,0x14,0xe7,0x34,0xab,0x1c, +0x27,0xb2,0x11,0x35,0x9c,0x76,0x35,0x57,0x50,0xf7,0xca,0x61, +0xf2,0xf1,0x13,0x6e,0x68,0xab,0x7b,0x1e,0x71,0xaf,0x17,0xac, +0x3a,0x58,0xd5,0xda,0xc1,0x64,0xd9,0x8e,0xb2,0x21,0x95,0xb2, +0x2a,0x78,0x5b,0x95,0xed,0x45,0x43,0x3f,0x38,0x8d,0x62,0x6f, +0xbc,0x78,0x32,0xcc,0x00,0xc7,0x1a,0x63,0x89,0xa2,0xb5,0x47, +0x0e,0xde,0x17,0x5f,0xff,0x84,0x9b,0x16,0x31,0x98,0xc7,0x1d, +0x16,0x33,0xe1,0xe4,0x07,0x4d,0x79,0xf3,0x04,0x26,0x16,0xe1, +0x91,0xec,0xec,0x59,0xe7,0x82,0x44,0xe1,0x53,0x1f,0x1f,0xa4, +0x51,0x6c,0x3e,0x48,0x35,0x91,0xc4,0xec,0xd2,0xc0,0x55,0xc4, +0x0e,0x97,0x47,0x6f,0x8a,0x48,0xe1,0x0a,0xf1,0xb7,0x28,0x7e, +0x6a,0x09,0x2a,0xe9,0x26,0x14,0x7c,0xe6,0x69,0xdf,0xe3,0x2e, +0x1b,0x01,0x2e,0xbc,0xd5,0x79,0x0a,0x9f,0x3a,0x50,0x43,0x89, +0xbd,0x01,0x05,0xb8,0x72,0x85,0xb5,0xb7,0xb4,0x32,0xff,0x1a, +0x37,0x26,0x0f,0xdc,0x34,0x80,0x10,0x37,0xb8,0xa1,0x0d,0x83, +0xd1,0xf0,0x83,0x2a,0x86,0x6b,0x31,0x97,0x64,0x25,0x24,0x91, +0x51,0x8b,0x6d,0x8c,0x08,0x1c,0x63,0xd1,0x70,0x99,0x78,0x13, +0xa9,0x84,0x2b,0xac,0xb8,0x45,0x86,0xed,0x25,0xf0,0x1e,0x77, +0xb4,0xa0,0xb6,0x02,0xb3,0x55,0xd9,0xff,0x77,0x3f,0x38,0x82, +0x33,0xdb,0x22,0x1e,0xe2,0xcc,0xf6,0x35,0x96,0xfd,0x45,0x43, +0xad,0x3f,0xf2,0x99,0xba,0xc1,0xd6,0xdf,0xd2,0x2e,0xe9,0x83, +0xed,0xd7,0x07,0xbb,0x4e,0x83,0xed,0xee,0xcb,0xbd,0x3e,0x66, +0xe2,0x2d,0x18,0xae,0x4e,0xa9,0x8f,0x37,0x54,0x6a,0xd9,0xac, +0x9c,0xb9,0x58,0xac,0xc7,0x1b,0x9a,0x36,0xd9,0xe2,0xcc,0x1d, +0xc6,0xa2,0x26,0x0f,0x4b,0xb8,0x69,0x09,0x59,0x50,0xf9,0x33, +0xe1,0xe0,0x87,0x04,0x73,0x4d,0xff,0xde,0x09,0x7d,0x6b,0x7a, +0xfe,0xbb,0x87,0x93,0x1b,0x67,0xc8,0xf9,0x41,0x15,0x13,0xb4, +0x95,0x97,0xe4,0x05,0xdd,0x4c,0x70,0xdb,0x25,0x14,0x40,0xbb, +0x6b,0x15,0xea,0xb6,0x8c,0x6d,0x09,0xdb,0x56,0x89,0x7c,0x68, +0x6f,0x3c,0x79,0x1e,0x95,0xa5,0x96,0xcb,0xd2,0x56,0x26,0xac, +0x88,0x30,0x2d,0x59,0x1e,0x93,0x6c,0x77,0x2c,0x77,0x33,0x4a, +0xb8,0xfb,0x07,0x73,0xef,0xf9,0x6c,0xbc,0x68,0x79,0xee,0xdb, +0xbc,0xb3,0x45,0x26,0x31,0x03,0xd6,0xf0,0x56,0x6f,0x91,0xfd, +0xf4,0x1b,0x35,0x2d,0x19,0xa4,0xe9,0xe1,0x58,0x0d,0x73,0x19, +0xec,0x0b,0x11,0x8b,0xda,0xc3,0x02,0xe8,0x6f,0x3d,0xc0,0x7e, +0x42,0x61,0xf1,0xb5,0xe2,0x29,0xbc,0x59,0x1b,0x72,0x08,0xe2, +0x4e,0xae,0xa8,0x62,0xd1,0x1d,0x48,0x6f,0xba,0x59,0x89,0xe8, +0xf0,0x62,0x08,0x13,0xb3,0x8b,0x9f,0xd6,0x05,0x35,0x78,0xc4, +0x9d,0xc6,0xa2,0x76,0xe5,0x78,0x9f,0x75,0xba,0xfb,0x23,0x45, +0x35,0x68,0xc5,0x5d,0x0f,0x30,0xf1,0x03,0xd3,0xc6,0xc0,0x31, +0xfd,0x9a,0x85,0x1b,0xfa,0xe9,0xf7,0x2c,0xd8,0x64,0x58,0x9b, +0x10,0x71,0xb8,0xa2,0xcd,0x1d,0xba,0x45,0xb9,0x55,0xb3,0x92, +0xf1,0xd6,0x07,0x99,0x5c,0x0a,0xe3,0xb9,0x29,0x9b,0xc9,0x0e, +0xdc,0xa3,0x25,0xb9,0x16,0xc9,0x0e,0xe2,0xa6,0x9a,0x96,0x9a, +0xb1,0x2e,0x3d,0x56,0x8c,0x00,0x57,0x63,0x59,0x31,0x0c,0x15, +0x0e,0x61,0x19,0xb6,0xf3,0x19,0x11,0x97,0x6c,0xb7,0xfb,0x68, +0xc6,0xf1,0x02,0x73,0xce,0xb0,0x79,0x8a,0xef,0xd4,0x10,0xe8, +0xdd,0xd1,0x52,0x36,0xfd,0xcb,0xb2,0xf3,0xa7,0x72,0xf2,0x4d, +0xef,0xcb,0x5e,0x35,0x5f,0x30,0x6e,0xef,0xc0,0x70,0x1f,0x9e, +0xe0,0x4e,0x25,0x6c,0xb7,0xec,0xa9,0x8a,0x7e,0xa4,0x44,0x23, +0x8b,0xd6,0x36,0xb0,0x9a,0x20,0x96,0x29,0x67,0xab,0xdf,0x69, +0x71,0x62,0x8a,0xbc,0x35,0x59,0x4b,0xf4,0x95,0x71,0xd0,0x8e, +0xc4,0xf2,0x72,0x9c,0x6b,0xeb,0x03,0x04,0xcf,0x68,0x7a,0x71, +0x92,0x1c,0x62,0xbb,0x90,0x39,0x41,0x29,0x7b,0x42,0x54,0xad, +0x3b,0x0c,0x94,0xdd,0xa9,0xcd,0x31,0x26,0x17,0xc3,0x08,0xae, +0xc6,0xa3,0x0e,0x0b,0xfb,0x54,0xd9,0xf3,0xb9,0x1f,0x6c,0xd1, +0x13,0xf5,0x5c,0xf7,0x37,0x40,0x66,0x63,0xd9,0xf3,0x37,0xad, +0x27,0xae,0xd1,0x34,0x02,0xa2,0x50,0x9f,0xdb,0x48,0xf2,0x4e, +0xf2,0x6e,0x4b,0x05,0xc7,0xb9,0xc9,0x9d,0x09,0xdf,0x99,0x64, +0x74,0xdd,0x93,0xf3,0xf1,0x4c,0xfc,0x03,0xfc,0xd4,0x29,0xa1, +0xd3,0x28,0xbb,0xd7,0x38,0xdc,0x2d,0x9b,0x94,0x33,0x17,0x8a, +0x29,0xbb,0xd7,0x79,0xda,0x2d,0xfa,0x47,0x24,0x57,0x8d,0xfd, +0x0c,0x7b,0xeb,0xe6,0x71,0x51,0x9f,0x07,0x7d,0x7d,0x9a,0xac, +0x4e,0x16,0x3d,0x67,0xeb,0x21,0x5c,0x47,0x29,0x48,0xea,0x77, +0x70,0xb3,0x07,0xcb,0x25,0xa3,0x1f,0x1f,0xe5,0xf3,0xd4,0x3b, +0x69,0x32,0x90,0x81,0xa7,0xa2,0x65,0xa0,0xd4,0x2b,0x07,0x3e, +0xf7,0xd7,0x81,0xdc,0x22,0xae,0xfb,0xe9,0x40,0x0e,0xfc,0x8d, +0x44,0xab,0x97,0x21,0x00,0x8c,0xea,0x24,0xbd,0xaf,0xab,0x23, +0xe4,0xbb,0x0a,0x4a,0xfa,0xd9,0xdc,0xf4,0x05,0x93,0xbd,0x5e, +0x7e,0xc7,0x6a,0xb1,0x9e,0xcd,0x97,0xcd,0xf4,0xcf,0x58,0x6e, +0x7d,0xd8,0x16,0x69,0x56,0x85,0x9f,0xb6,0xf2,0x22,0xee,0xc9, +0x84,0xba,0x3d,0xc9,0x59,0x31,0xeb,0x47,0xf6,0xca,0xdf,0x55, +0xc8,0xef,0x0c,0xda,0x2c,0x48,0x52,0x0f,0x08,0xef,0xa1,0x69, +0x4b,0xa1,0x93,0x1d,0x04,0x1a,0x96,0x8a,0x4e,0x43,0x57,0x1f, +0x00,0x6f,0x3b,0x68,0x37,0x4e,0xab,0xb9,0x40,0x8e,0x4b,0x6b, +0x18,0x64,0x2f,0x65,0xed,0xdb,0x72,0xe7,0x0b,0x0c,0x1a,0x3c, +0x37,0xfc,0x75,0xd3,0x22,0x27,0x33,0xe9,0x80,0x64,0x6a,0x8c, +0x08,0x6b,0x75,0xeb,0x0f,0xf1,0x26,0xfd,0x67,0xfb,0x46,0x95, +0x4a,0xb9,0x6b,0x1a,0xbc,0x38,0xce,0x50,0xb4,0xb4,0xff,0x93, +0xd5,0x9a,0x19,0xca,0x19,0x1d,0xc9,0xf4,0x75,0xa6,0xdc,0xf1, +0xf2,0x27,0x12,0xbf,0x6d,0x44,0xfc,0xea,0x7f,0x4e,0x84,0xcf, +0x89,0xf4,0xd5,0xff,0xbc,0x07,0x1e,0xe4,0x08,0xd0,0x04,0x99, +0xbb,0x1b,0x5c,0x57,0x97,0x87,0xaf,0x49,0xfc,0xe4,0x68,0xe6, +0xb1,0xc4,0xd3,0xbc,0xd9,0x60,0xd6,0x37,0x64,0x32,0xac,0xec, +0xa7,0x33,0xef,0x33,0x0f,0x72,0x0b,0x4f,0xf2,0xe6,0xbf,0x33, +0x30,0x1a,0x73,0xce,0x41,0x96,0x70,0xe2,0xcd,0xdf,0xd0,0xbb, +0xf9,0x87,0x4a,0xe1,0xa1,0x8d,0xf5,0x64,0x13,0x7b,0x6a,0x0b, +0x1d,0x20,0x90,0x4d,0x57,0x07,0x6d,0xe0,0x4d,0x67,0xb2,0x98, +0x03,0xe0,0xcb,0x1b,0xaf,0x60,0x09,0x4c,0xae,0xd0,0x86,0xa8, +0x69,0x69,0x99,0xeb,0x32,0x56,0x23,0x77,0x6e,0x6d,0x2c,0x2f, +0x85,0x00,0xd1,0x22,0x3c,0x6b,0x65,0x7c,0x78,0x24,0xb7,0xeb, +0xc3,0x8e,0x67,0x9e,0x2c,0x31,0x9f,0x1a,0xfa,0x96,0xd2,0x16, +0x35,0xd1,0x7e,0xd0,0xc0,0x52,0x3e,0xed,0xe1,0xc5,0x8a,0x82, +0x9c,0x62,0x93,0x78,0x0c,0x6f,0x70,0x8f,0x6c,0x36,0x89,0xc9, +0x8f,0xc4,0x69,0x35,0x7d,0x43,0xe6,0xba,0xac,0x18,0x31,0x0a, +0x9a,0x19,0xcf,0x9e,0x81,0xe1,0xc2,0x6e,0x25,0x1e,0x89,0xb0, +0x48,0xd3,0xb2,0xf0,0xb8,0x24,0xbb,0x3d,0x47,0x33,0x73,0xf2, +0xcd,0x39,0x83,0xe7,0x29,0x3d,0x26,0x87,0xc2,0x80,0x2e,0x96, +0xf2,0xa9,0x8f,0xce,0x5c,0x3c,0x81,0x47,0x42,0x3c,0x84,0xa1, +0xea,0xd2,0xda,0x72,0x06,0xbf,0x52,0x44,0xa2,0xb9,0xe4,0x7a, +0x25,0x97,0x73,0x77,0xb3,0xcd,0xd9,0xca,0xab,0x0f,0x1b,0x0a, +0x28,0x37,0x77,0x13,0x53,0xb5,0x6e,0x94,0x73,0xb1,0x19,0xab, +0x42,0x25,0xa9,0x91,0xf4,0x25,0xb7,0x90,0x02,0x5c,0xdb,0x0d, +0xe2,0x99,0x61,0x18,0xe4,0xd0,0x65,0x8d,0x52,0x77,0x59,0x23, +0x97,0x6b,0x5e,0xdc,0xf4,0x3e,0xd2,0x85,0x3a,0x3f,0x2c,0xb9, +0x5c,0x54,0x73,0xf7,0x11,0xba,0xef,0x15,0x9f,0xc0,0x74,0xbb, +0xe0,0x89,0xe3,0x27,0xe1,0x96,0x6e,0x17,0x5a,0x56,0x6e,0xd9, +0xa2,0x9c,0x3d,0x5f,0x26,0xda,0x89,0x76,0xe7,0x26,0x4d,0xd0, +0x33,0x83,0xac,0xff,0x54,0x5b,0xaf,0xc8,0x48,0x28,0x52,0x53, +0xd3,0xb2,0xd6,0xa5,0xad,0x16,0x93,0x21,0xd8,0x58,0x7e,0x06, +0x26,0x89,0x11,0xc8,0x88,0xd7,0xd5,0xde,0x64,0x38,0xa5,0x92, +0xcc,0x33,0x57,0xcc,0x15,0x83,0x27,0x28,0xe0,0x31,0x69,0x10, +0xa2,0xc6,0xdb,0x72,0x6e,0xda,0x57,0x9f,0x57,0x54,0xe4,0x5c, +0x32,0x21,0x07,0x7f,0x50,0xbb,0x9f,0xd2,0x5d,0x4c,0xfd,0xd4, +0x20,0xa3,0xc4,0x60,0x14,0x2f,0x50,0xba,0xa1,0x7e,0x02,0x8d, +0xe5,0x65,0x30,0x51,0x0c,0x0d,0xcf,0xb2,0x11,0x8c,0xb0,0x35, +0xc9,0x76,0x7b,0x8a,0x32,0x4b,0xae,0x98,0xcf,0x0d,0x9e,0xac, +0x40,0x8b,0x49,0x43,0xb0,0x2b,0x2f,0xec,0xea,0xd1,0x67,0x17, +0xcf,0x67,0x57,0x98,0xc4,0x2a,0x38,0x52,0x1b,0xc3,0x6a,0xdf, +0x41,0x0a,0x95,0xcd,0xa6,0xca,0xbb,0xa2,0x3f,0xe3,0x76,0xa8, +0xb0,0x07,0x93,0xb8,0x51,0x9b,0x48,0x5e,0xc7,0xb9,0xdc,0xb4, +0x82,0x75,0x82,0xcf,0x55,0x6d,0x45,0x1b,0x83,0x5c,0xfd,0xcf, +0xb4,0x31,0xda,0xca,0x8f,0xed,0xc0,0x5c,0x2d,0x6a,0xe4,0x79, +0xc5,0x99,0x3b,0x3b,0x33,0xab,0x5f,0xb8,0x2a,0x9a,0x42,0xaf, +0x33,0x17,0x72,0x0a,0x3f,0x2e,0x36,0x59,0xa7,0x31,0xe8,0x6e, +0x2c,0x29,0xe4,0x8e,0xa9,0xcc,0xfe,0x90,0xbc,0x51,0xc6,0xa8, +0x11,0x64,0x82,0x9b,0xfc,0x88,0x81,0x55,0x76,0xd5,0xbe,0xc3, +0x1d,0x1c,0x22,0xde,0xe1,0x4d,0x8e,0x21,0x19,0x6c,0xc0,0x82, +0xb8,0xdd,0x73,0x26,0xce,0xca,0x76,0xea,0xd2,0x15,0xdc,0x3e, +0x9a,0x4d,0xe5,0x0e,0xa3,0xd9,0xbd,0xa2,0xe2,0x22,0xd3,0xa6, +0xcc,0xcd,0x74,0x21,0xb1,0x15,0x5e,0x35,0x9e,0xba,0x00,0xa9, +0xc2,0x67,0x79,0x7a,0x54,0xe2,0xf2,0x70,0x54,0xd2,0xe2,0xf5, +0x7b,0xaa,0x61,0x72,0xf5,0x1d,0xb1,0xa0,0xf6,0x21,0x1b,0x2c, +0xfa,0x31,0x51,0x2a,0xc7,0xd0,0x7e,0x4e,0x3a,0x90,0x9d,0x91, +0xcb,0x9b,0xa4,0xb0,0x17,0xe5,0x08,0xda,0xa0,0xda,0xe9,0xec, +0xb6,0x7c,0x43,0xd5,0x96,0x5c,0x96,0x4b,0x7e,0xd5,0x22,0xaf, +0xc8,0xab,0x14,0x61,0x4b,0x3b,0x72,0x55,0x6e,0x20,0x07,0x8f, +0x0a,0x0a,0x62,0x31,0x56,0x95,0x89,0xec,0x17,0xe8,0x65,0xcc, +0xbf,0x70,0xa4,0x70,0x77,0xb1,0xfd,0x18,0xb9,0x55,0x1b,0xca, +0x6a,0x1c,0xb4,0x25,0xaa,0x68,0x02,0x85,0x94,0xcd,0x0e,0x96, +0xa3,0x7e,0xf4,0x5e,0x80,0x8c,0xbc,0x61,0xc0,0x17,0x02,0xb8, +0xdb,0xfb,0xc8,0xeb,0xa4,0x8b,0x78,0x9f,0x71,0x97,0x4f,0x59, +0x1a,0x77,0x24,0x3b,0xbc,0x1f,0x19,0x6a,0xbf,0x2e,0x4f,0xb1, +0xa8,0x8c,0x41,0x17,0xb8,0xf6,0x62,0x05,0x93,0xc8,0xf1,0xca, +0xbc,0x10,0x88,0x6a,0xf9,0xa6,0xaa,0x7d,0x28,0x56,0xca,0x4b, +0xa3,0xb5,0x70,0xde,0xcc,0xc3,0xd6,0x28,0x42,0x9e,0xd4,0x1a, +0x31,0xee,0xf9,0x15,0x45,0x69,0x70,0xe0,0x2e,0x5b,0xb0,0x97, +0x27,0x0c,0x94,0xff,0x01,0x4a,0xd6,0xd8,0xae,0xd8,0x9a,0x8a, +0x29,0x23,0xad,0x55,0x95,0xa2,0x02,0x97,0xe4,0xcb,0x1b,0xa4, +0x0a,0xf6,0x96,0x6d,0xd4,0x55,0x31,0x6b,0x93,0xed,0xb6,0x5f, +0xcd,0xa8,0xfc,0xce,0x2c,0x5e,0x19,0x01,0x8d,0x15,0xf0,0x59, +0xde,0x77,0x02,0xbc,0x62,0x99,0x28,0x94,0x98,0xac,0xb0,0x94, +0xc8,0x28,0xd3,0xea,0x58,0x6c,0xb2,0xf5,0x52,0xfa,0x8d,0x27, +0xe6,0x5f,0x46,0x78,0x2b,0x30,0x7e,0xfe,0xa0,0xee,0xd0,0xd3, +0x52,0x38,0xa3,0xf0,0xab,0xc3,0x97,0x77,0x5f,0x37,0x25,0xa5, +0xa4,0x26,0x24,0xae,0xfd,0x15,0xde,0x36,0xe6,0xdd,0x3f,0x7c, +0x71,0xcf,0xd5,0xc4,0xe4,0xd4,0x75,0x49,0x6b,0x7e,0x87,0x37, +0x8c,0x85,0x85,0x6d,0xc4,0xa4,0x98,0xac,0xf0,0xf5,0xb8,0xe9, +0xc4,0x87,0x7e,0x74,0x65,0xd7,0x94,0x2c,0x9e,0xb8,0x67,0x3e, +0x83,0x28,0xe4,0x03,0x0e,0x0d,0x18,0xf4,0xc7,0x66,0x6d,0x45, +0x87,0xd5,0x59,0x11,0xeb,0xc1,0x83,0x6d,0x2f,0x4d,0x2f,0xaf, +0x32,0xdf,0x1d,0x31,0x54,0x81,0x86,0xcb,0x46,0x4e,0xe8,0x65, +0x99,0xf0,0x4d,0x4c,0x66,0x78,0x4a,0x64,0x34,0x82,0x11,0x9f, +0x64,0xb7,0xb9,0x38,0xed,0x4c,0xa5,0xf9,0xf6,0x08,0x7f,0xee, +0x80,0x92,0x8e,0xb3,0xa5,0x60,0x46,0x71,0xe5,0xa1,0x33,0x7b, +0xca,0x78,0xb3,0xcf,0x18,0x0c,0x32,0xe6,0x5f,0x3a,0x52,0xbc, +0xfb,0x8c,0xbd,0xb0,0x8a,0xa6,0x14,0xe1,0xa1,0x39,0x45,0x78, +0xb8,0x25,0x9f,0x6b,0x6f,0xb3,0x17,0x15,0x34,0x62,0x3f,0x6b, +0x73,0x86,0x95,0x86,0xda,0x6f,0x19,0x54,0x58,0x7d,0xad,0x56, +0xa6,0xa1,0x0c,0x1c,0x5e,0x29,0x1c,0x45,0x73,0xfa,0x8e,0x97, +0x49,0x31,0xe5,0x6f,0xfe,0xc7,0xa2,0x8b,0xa8,0x18,0xed,0x07, +0x26,0x93,0xe5,0x5e,0xad,0x8d,0xde,0x7e,0x49,0xa5,0x68,0x80, +0xed,0x6d,0xe1,0x89,0xff,0xbb,0xf6,0x75,0x01,0x8a,0x6d,0x2e, +0x77,0x93,0xc1,0x63,0xac,0xf0,0x80,0xb4,0x3b,0x5a,0x9a,0x22, +0xef,0xc2,0x39,0x3a,0x16,0x03,0x4a,0x2f,0x1d,0x2f,0xfa,0xb8, +0xd4,0x94,0xbc,0x3e,0x65,0x5d,0x4a,0x9c,0x68,0x06,0x7d,0x8d, +0xa5,0x85,0xdc,0x63,0x1f,0x43,0x6c,0x6f,0xc9,0x4f,0xe7,0xcd, +0x83,0xd9,0x5b,0xa3,0xda,0x02,0x67,0x25,0xfb,0xce,0x98,0x92, +0x52,0x53,0x13,0x92,0xd7,0xd8,0xff,0x13,0xee,0x42,0xfa,0xdf, +0x82,0xe2,0xda,0xfa,0x35,0xc0,0xd6,0x29,0x9c,0x65,0x23,0x63, +0x93,0x1f,0x53,0xc8,0x62,0xf2,0xe1,0x9b,0x65,0xab,0x91,0x49, +0x33,0x69,0xac,0x41,0xa5,0x97,0x8f,0x17,0xe3,0x58,0xbc,0xb1, +0x44,0x3e,0x60,0x2c,0xe5,0x4d,0x46,0xb1,0xef,0xa3,0x37,0x86, +0x27,0x22,0x5e,0x63,0xe2,0xd6,0x26,0xd9,0x6d,0x29,0x48,0x2f, +0xb9,0xc2,0x5b,0x7d,0xc1,0xf6,0x95,0x21,0x40,0xeb,0xd7,0x25, +0xc7,0xd9,0x8b,0x7f,0xc9,0xd6,0x90,0x57,0x1f,0xa5,0x36,0x25, +0x83,0xbb,0x2e,0x62,0xe3,0xe4,0xd6,0x97,0x41,0x6a,0xc3,0xab, +0xb4,0x70,0x05,0x52,0x50,0xed,0xab,0xd4,0xe6,0x8e,0x04,0xbf, +0x8e,0xc1,0x4f,0x0d,0x30,0x7a,0x3c,0x77,0x5b,0xc5,0x04,0xc0, +0x2f,0x2f,0xde,0xa4,0x57,0x1f,0xd2,0xab,0xf7,0xb0,0xc5,0xaa, +0x91,0x10,0xda,0x71,0x0c,0xb5,0x08,0x56,0xe5,0x31,0xf6,0x1b, +0xce,0xb6,0xa0,0x10,0x19,0x3a,0xb7,0x1f,0xcf,0x4a,0xd3,0x71, +0x4d,0xef,0x04,0x0c,0x57,0xe0,0x95,0xe5,0x81,0x13,0x7b,0x59, +0x26,0x7e,0xcd,0xbd,0x8b,0x59,0xc9,0x75,0xf3,0xcd,0x11,0x01, +0x0a,0x78,0xce,0x1f,0xd5,0x03,0x9c,0x70,0xa5,0x8b,0xae,0x1f, +0x3c,0xb3,0xf7,0x4c,0x4d,0x33,0xc4,0xf5,0x00,0x63,0xde,0xa5, +0xc3,0xc5,0xbb,0x4b,0xec,0xc5,0x3c,0xe9,0x56,0x73,0x13,0xa9, +0xc5,0x4c,0x14,0x6a,0xa9,0x7f,0xe9,0x3e,0x49,0xc5,0xb5,0xc8, +0xbb,0x70,0x18,0x97,0xc2,0xc4,0xd5,0x14,0x66,0xaf,0x15,0xc9, +0x2e,0x35,0xe1,0xff,0x16,0x5a,0x37,0x45,0xae,0x42,0x98,0x3e, +0xe0,0xae,0x45,0x4c,0xb4,0x83,0x7f,0xbe,0x68,0x81,0xe4,0xed, +0x0d,0x16,0x28,0x4b,0x5e,0x06,0x33,0x6e,0xb4,0x91,0xb5,0x42, +0x34,0x06,0x51,0x20,0x63,0x78,0x02,0x55,0xbc,0xb9,0x4a,0x5b, +0xb5,0xa4,0x00,0x1c,0x45,0x57,0xee,0x5d,0xc8,0xce,0x5c,0x33, +0x57,0xfb,0xfb,0x2b,0xd0,0x78,0x49,0x60,0x40,0x6f,0xcb,0xf0, +0x27,0xdc,0xbb,0x80,0x21,0x41,0xbd,0xe5,0xc7,0xbd,0x9b,0xff, +0x85,0x45,0xc2,0xbd,0xb1,0xf4,0x72,0x0e,0x22,0xdf,0x1e,0xa2, +0xa1,0xfa,0xef,0x21,0x8d,0xbd,0xc0,0x38,0x56,0x18,0xdb,0x6e, +0x64,0x06,0xd8,0xbd,0x5b,0xe5,0x8e,0x1e,0xa4,0x29,0x0e,0x30, +0x96,0xe0,0xb6,0xd8,0x77,0xc6,0x1e,0x4c,0xb6,0xc5,0x74,0xe8, +0xce,0x3a,0x83,0x31,0x44,0x18,0xbb,0xeb,0xff,0x1b,0x60,0xe7, +0x4e,0x35,0x69,0x7d,0xea,0xba,0xe4,0x35,0xb8,0x65,0xba,0xdb, +0x00,0xf2,0x89,0xce,0x8a,0x48,0xc6,0x33,0x86,0x87,0x39,0xc5, +0x6e,0x47,0x41,0x46,0x71,0x85,0xb9,0xd2,0x7f,0xb4,0xe2,0xb3, +0x64,0x4c,0x40,0x7f,0xcb,0xf0,0xaf,0xa3,0x33,0xc3,0x93,0x22, +0x57,0xd5,0x9d,0xe3,0xbc,0xb4,0x02,0xd4,0xdd,0xef,0xb3,0x7d, +0xb4,0xf3,0xd6,0xe3,0xa6,0x42,0x10,0x7b,0x1b,0x4b,0x75,0x12, +0x6d,0x0f,0x6d,0xe4,0xf9,0x17,0xa1,0x36,0x14,0xbc,0x04,0x0f, +0x06,0x53,0x1c,0x65,0x44,0xc2,0x45,0x1d,0x09,0xfd,0x90,0x84, +0xe3,0x98,0x9d,0x08,0x09,0xa5,0xd7,0xcc,0x77,0x08,0x09,0xaf, +0x2c,0x09,0x22,0x24,0x7c,0x4f,0x48,0x28,0xbe,0xac,0x23,0xa1, +0x19,0xc3,0x6d,0x9b,0x9c,0x5a,0x37,0xc2,0x40,0x63,0xe9,0xa5, +0x9c,0xa2,0x8f,0x71,0x5a,0xef,0xc9,0x93,0xf5,0x11,0x95,0x7d, +0xf4,0x19,0xd9,0x66,0x07,0x7d,0x29,0xaa,0x32,0x0e,0x52,0x6c, +0x9b,0x1d,0x1d,0x88,0xde,0xbc,0xf1,0x1e,0x96,0x15,0x9e,0x1c, +0x41,0x33,0x43,0x96,0xb5,0x03,0x59,0x16,0x76,0xee,0x1f,0xa0, +0xb4,0xc2,0xf1,0xfa,0x5a,0x86,0x7f,0x5b,0xd3,0x8d,0xad,0xa6, +0xed,0xbb,0x35,0x3f,0xad,0xf8,0x92,0xf9,0x86,0x7f,0xa0,0x02, +0xe6,0xb7,0x03,0xdb,0x02,0xb3,0x94,0xcc,0x2c,0xbf,0x9e,0x53, +0x4c,0x20,0xd4,0x4f,0x12,0xb7,0xfd,0x45,0x04,0x01,0xf7,0xcc, +0x0e,0xd0,0xea,0x5d,0x5d,0x6d,0xcb,0x6c,0x90,0xeb,0xf7,0xd1, +0x47,0xe8,0x41,0x25,0x78,0x4c,0x6c,0x88,0xb1,0x41,0x50,0xbf, +0xe0,0xab,0x10,0x8a,0xf0,0xe8,0xda,0x56,0x6c,0x47,0x71,0xc6, +0xdf,0x16,0x7e,0x24,0x2d,0x7c,0x74,0x66,0x44,0x52,0xc4,0x2a, +0x53,0x4c,0x2c,0xc1,0x51,0x98,0x56,0x8a,0x7b,0xc0,0x9f,0xf6, +0xc0,0xde,0x32,0x6e,0xd7,0x1b,0x77,0x5f,0x43,0xe9,0x89,0xc7, +0x48,0xb6,0x66,0x7f,0xad,0x77,0xdd,0x70,0x03,0x6c,0x4b,0x6d, +0xa2,0xa5,0xb7,0xd7,0x36,0xcb,0xee,0xdc,0x2e,0x8e,0xd5,0xc4, +0xe8,0x1e,0xa6,0x95,0xe4,0x61,0x1a,0x2b,0x37,0xab,0xd7,0xb4, +0x44,0xee,0x73,0x87,0x65,0xaa,0x48,0x56,0x13,0x93,0xd7,0xfc, +0x82,0x8b,0x95,0x9f,0xdf,0x41,0xb4,0x8d,0x41,0x7a,0xc9,0x1d, +0xf0,0x98,0xa4,0x97,0x21,0x41,0x1c,0x39,0x5c,0x69,0xb5,0x72, +0x14,0x92,0xcb,0x49,0x8f,0x79,0xd3,0x96,0x6c,0x4b,0x61,0x1a, +0x1e,0x9f,0xaa,0x80,0x91,0x0a,0x58,0x16,0x8c,0xec,0x89,0xf8, +0xc8,0x9f,0x55,0x78,0xed,0x60,0xe9,0xde,0x52,0xde,0xb8,0x9c, +0x96,0xf0,0xf4,0xc5,0xc3,0x45,0x78,0x7c,0xa0,0x07,0x54,0xbf, +0xb8,0x59,0x37,0xe6,0xc6,0x4a,0x6d,0x23,0x8d,0x99,0xcc,0x5d, +0xfb,0x91,0x29,0xc7,0xa1,0x17,0xf1,0x75,0x35,0xe1,0x95,0x74, +0xd4,0x63,0xe5,0x07,0x08,0xcd,0xdb,0x81,0xed,0xbb,0x87,0x7c, +0xdd,0xbb,0x7b,0xf0,0xd7,0x06,0x98,0xb1,0x91,0xbb,0x45,0x33, +0xed,0x15,0xfd,0xb4,0x4f,0xc5,0xd3,0x5e,0x69,0x80,0xd8,0x7b, +0xd8,0x68,0x15,0x81,0x9c,0xf1,0x12,0xe4,0x7e,0xc6,0xfc,0x82, +0x0e,0xa2,0x3d,0xf7,0xf9,0x0d,0xcf,0x7a,0xf9,0x0d,0x1d,0x5c, +0x68,0xb0,0x32,0x60,0x42,0x6f,0xcb,0xa4,0xaf,0x63,0x78,0xe3, +0x5c,0x56,0x94,0x56,0x5a,0x69,0x83,0xd7,0x8b,0xe0,0x75,0xb2, +0xe4,0xcf,0x2c,0xd4,0x8f,0xbb,0x0e,0xef,0x40,0xe3,0xe9,0x4b, +0x87,0x4b,0xe8,0xb8,0x2f,0x92,0x2a,0x1e,0x77,0x1c,0x2a,0x93, +0x86,0xca,0xc4,0xa1,0xc2,0x03,0x5b,0x21,0x3c,0x3d,0xf0,0x9f, +0x41,0xb6,0xde,0xa4,0x3e,0x87,0x5e,0xa7,0x2f,0xe0,0xdc,0x8a, +0xf0,0xec,0x27,0x21,0x56,0x4b,0x6c,0x67,0x5f,0x9f,0xc6,0xb6, +0x4a,0x3a,0xcc,0xb1,0x78,0xf6,0xaf,0xd1,0xd9,0x8f,0xa3,0xb8, +0x29,0x74,0xf6,0xb5,0x65,0x64,0x49,0xd0,0x28,0x5a,0x39,0x5b, +0x78,0xe2,0xf8,0xfe,0x9c,0xb4,0x0d,0xe9,0xf1,0x69,0x31,0xa2, +0x03,0x78,0x19,0x0b,0x4b,0xc1,0x47,0xb4,0xe0,0xde,0xed,0x59, +0x99,0xf9,0x88,0xff,0x02,0xa5,0xe3,0xfc,0x89,0x5d,0x06,0x5a, +0x5a,0xfd,0x1c,0x99,0x11,0xce,0x7d,0xac,0xac,0xd4,0x7c,0xc8, +0x7f,0xa1,0xd2,0x76,0xd6,0x08,0x50,0x3b,0x59,0x0a,0xa7,0x56, +0x96,0x17,0xe5,0x1f,0xca,0x37,0xa5,0x6d,0xc8,0xa0,0x5b,0x1d, +0x77,0x70,0x31,0x86,0xa1,0xd0,0xa8,0x90,0x61,0xa0,0x41,0x36, +0x87,0x03,0xd6,0x1e,0xcc,0xda,0x92,0x49,0x01,0xc2,0x1a,0x6b, +0x0b,0x9b,0x1d,0xb8,0x8b,0xdb,0xcd,0x26,0xc7,0x8b,0x01,0x2f, +0x43,0x62,0x07,0x3e,0xa2,0x22,0xd9,0x4b,0xbe,0xf2,0x32,0x22, +0x76,0xd0,0x23,0xde,0xdc,0x9d,0xa1,0x8c,0x5b,0x94,0x77,0x2c, +0x67,0x5f,0x6e,0x72,0x72,0xca,0xba,0xf5,0x6b,0x28,0xf7,0xb9, +0xb1,0xa8,0xc0,0x4b,0x34,0x88,0x4e,0x8f,0x4c,0x8a,0x58,0x6d, +0x8a,0x5c,0x45,0x9c,0xfc,0x58,0xc6,0xf1,0xd3,0xe6,0xfc,0xe1, +0x6f,0x2a,0x83,0x96,0x4e,0x1b,0x1b,0x62,0x09,0xbe,0x16,0x95, +0x11,0x99,0x88,0x87,0x3f,0x3a,0x86,0xa8,0xfc,0xd1,0xb4,0xec, +0xd3,0xe6,0xbc,0x11,0x6f,0x28,0x5d,0xe6,0x4e,0xe9,0xdc,0xd3, +0x52,0x3c,0xab,0x84,0xf3,0x21,0xec,0x2a,0x6f,0x19,0x6c,0x0b, +0xa3,0x1d,0xb8,0x85,0xbb,0x2d,0x66,0xf0,0x46,0x6d,0x2f,0xf6, +0xc4,0xaf,0x83,0xb2,0xa6,0x4f,0x8f,0x84,0x5e,0x1e,0x1b,0x46, +0x73,0xef,0xd9,0x64,0xf5,0xbb,0x82,0x02,0x67,0x93,0xab,0xb0, +0x35,0x70,0x8f,0x0e,0xb7,0xf7,0x4b,0xff,0x5f,0xab,0x17,0xc4, +0x73,0xb7,0x1c,0xd4,0x25,0x78,0xe3,0x9f,0x98,0x68,0x80,0x92, +0xc4,0x8b,0x23,0xe4,0x84,0xe6,0xf7,0xd2,0xbf,0xf7,0x75,0xcd, +0x4b,0xa5,0xc3,0x98,0xb4,0xf6,0x09,0x34,0x31,0x9e,0x38,0x7d, +0x30,0x7b,0x57,0x76,0x72,0x0a,0xf2,0xbe,0x35,0x3f,0x82,0xa3, +0xb1,0xa0,0xa0,0xfb,0xef,0xab,0x32,0x23,0x10,0x54,0x78,0xc2, +0xb6,0xe5,0x64,0xe4,0x16,0x9a,0x0b,0x10,0xce,0x41,0xcb,0xa7, +0x4e,0x09,0xb1,0xcc,0x3e,0x1f,0x9d,0x11,0xb9,0x2e,0x2a,0xc6, +0x14,0xbd,0x3a,0x3e,0xd9,0x6e,0x73,0xf6,0x86,0xdc,0x02,0x73, +0x7e,0xc0,0xeb,0x4a,0xa7,0xf7,0xa7,0xf4,0xf5,0xb5,0x14,0xce, +0x3c,0x55,0x7c,0x30,0x7b,0x67,0xae,0x49,0x3c,0x83,0x79,0x6a, +0x68,0xd4,0xf0,0xd5,0x83,0x90,0x7b,0xd9,0x0d,0x07,0x07,0x72, +0x11,0xa6,0xf4,0xcc,0xc2,0x5f,0x04,0x65,0xee,0x15,0xae,0x9e, +0xc8,0x94,0xff,0xc3,0x5b,0xf8,0x75,0x71,0x89,0xdb,0x1d,0x60, +0xa8,0x45,0xd9,0x42,0x7e,0x1b,0x48,0x91,0xb1,0x85,0xfc,0xd6, +0x9d,0x7c,0x5f,0x17,0x57,0xf5,0x79,0xbd,0xc1,0x9b,0xef,0x67, +0xa2,0xe1,0x08,0x54,0x0f,0x5a,0x95,0xb3,0x3b,0xb0,0xe8,0x6f, +0xce,0xbb,0x37,0xc4,0x2d,0xee,0xb6,0x08,0xe7,0x0e,0xdd,0xd8, +0xf7,0x7e,0x9d,0xb8,0x7d,0x57,0x94,0xc1,0xeb,0xfc,0x77,0x59, +0x4f,0x06,0xbf,0xd4,0xfb,0xef,0xea,0xce,0xb7,0x37,0x34,0x77, +0xbd,0xf5,0x1b,0xea,0xd0,0xa8,0x2e,0xe4,0x7c,0x4b,0x98,0x5e, +0xdb,0xa7,0x47,0x7c,0x2f,0x2d,0x85,0x0d,0x26,0xdf,0xdb,0x3a, +0x87,0xdb,0x1b,0xe2,0x33,0xee,0x52,0xc4,0xc0,0x47,0x77,0xb8, +0x15,0x3b,0x50,0xb2,0x4d,0xdb,0x90,0x49,0x12,0x7d,0x17,0x68, +0x67,0xbc,0x75,0xa1,0xe8,0xf4,0xa1,0xbc,0xb4,0xf5,0x19,0xf1, +0x1b,0x62,0xf5,0xbd,0x5a,0x54,0x0a,0x6d,0x50,0x89,0x82,0x41, +0x6c,0x67,0x6e,0xfa,0x09,0xdc,0xaf,0x7e,0xb4,0x5f,0x27,0x75, +0x19,0x64,0xf1,0xfa,0x89,0x3b,0x7c,0xcd,0x22,0xa2,0xe2,0x92, +0xed,0x76,0x9d,0x48,0x3f,0x55,0xa2,0xef,0xda,0x76,0xf5,0xbb, +0xf6,0x46,0x79,0x21,0xed,0x5a,0x4d,0x81,0x44,0x55,0x38,0xfa, +0xe3,0x3a,0xc7,0xd8,0xfe,0xcc,0xe7,0xce,0x2b,0x98,0xd8,0xa9, +0x65,0xab,0xfa,0x8e,0xa6,0x61,0xbb,0x18,0x6f,0x5d,0x2c,0x2e, +0x38,0x58,0x90,0x96,0x92,0x6e,0x1b,0xb6,0xad,0xb1,0xf8,0x0c, +0x0e,0xcb,0x23,0x32,0xc2,0xd6,0x21,0x99,0x8e,0x88,0xc6,0x31, +0x76,0xe2,0x18,0x67,0xcd,0xc7,0xfc,0xde,0x53,0xda,0xce,0x1f, +0xdf,0x65,0x80,0xa5,0xd5,0xaf,0x91,0x99,0x61,0x89,0xe1,0xd1, +0xa6,0x88,0xa8,0x35,0x49,0x76,0x3b,0x4f,0x66,0xe4,0x9d,0x31, +0x1f,0x19,0x36,0x5f,0xf1,0x9e,0xe5,0x07,0x6e,0xed,0x2c,0x45, +0x53,0x2a,0xcf,0x15,0x15,0x1e,0x2a,0x34,0x69,0x06,0xd8,0xa6, +0x0a,0x37,0x7f,0x70,0x43,0x08,0xf4,0x3f,0xf3,0xb9,0xe5,0x3a, +0xab,0x79,0xaa,0xdf,0xcd,0x58,0x1f,0x33,0xeb,0x5e,0x26,0xad, +0xba,0xd1,0x0c,0x96,0x59,0x47,0x4b,0x1f,0xad,0x2d,0x22,0x78, +0x26,0x2d,0x1e,0x99,0xcf,0x20,0x86,0xca,0x6c,0x18,0x8a,0xb1, +0x61,0xe8,0x7c,0x51,0xde,0xa1,0xd3,0xe4,0xdf,0xb1,0x81,0x4e, +0xb3,0xa7,0x0d,0x43,0xee,0xe1,0x19,0xe1,0xeb,0xb8,0x5d,0x4b, +0x76,0x3c,0xfd,0xe4,0x19,0x1d,0x49,0x9d,0xe6,0x4f,0x26,0x24, +0x3d,0xd7,0x91,0x14,0x4d,0x20,0x9e,0x48,0x3f,0x69,0x43,0x52, +0xfb,0x59,0x01,0x75,0x47,0xbb,0xac,0xa8,0x0e,0x49,0xf1,0xaa, +0xb0,0xf7,0x07,0x7b,0x04,0x51,0xff,0x33,0x9f,0x3b,0x7e,0xce, +0xb8,0xab,0x3f,0x83,0x75,0xb6,0x6f,0x31,0xc1,0xf5,0xee,0xc7, +0xdc,0x75,0x07,0xd3,0x94,0x0e,0xd5,0xcf,0x34,0xc3,0x55,0x4a, +0x00,0x7b,0x8b,0x9b,0x66,0x63,0xcb,0x9f,0xe8,0xf2,0xaf,0xe9, +0x23,0x06,0x3b,0x5e,0x2c,0xd0,0xcd,0x7a,0xe5,0x1d,0x98,0xcd, +0xdd,0x70,0x6a,0x2d,0x29,0xee,0x22,0x77,0x38,0xa6,0xc7,0x45, +0xb4,0x7d,0xaa,0xc0,0xcd,0xdb,0x87,0x0d,0x81,0xcc,0xbf,0x07, +0x39,0xa7,0xeb,0xa0,0x78,0x71,0x4e,0x4d,0xb1,0x31,0xb6,0xc6, +0x48,0x66,0x8a,0xf2,0xb3,0x73,0xf6,0xe6,0xd6,0x71,0x3a,0x85, +0x08,0x45,0x41,0x2b,0xd1,0x30,0x2a,0x3d,0x32,0x39,0x22,0xda, +0x14,0xb5,0x7a,0x4d,0x0a,0xd1,0x85,0xdc,0x3c,0x9d,0x2e,0x0c, +0x58,0x3a,0x75,0x6c,0xb0,0x25,0xf8,0xba,0x4e,0x17,0x56,0x23, +0x4b,0x43,0xa2,0x90,0x83,0x44,0x61,0xf8,0x1b,0x4a,0xe7,0xb9, +0x93,0x3b,0x77,0xb7,0x14,0xcf,0x2c,0x29,0x3d,0x76,0x7c,0xcf, +0x09,0x53,0x25,0x6a,0x19,0x08,0xd1,0x8b,0xa5,0x6c,0x2b,0x08, +0x8a,0x7c,0xe9,0x32,0xa5,0xce,0xae,0xb8,0xe6,0x9b,0xfa,0x30, +0x35,0x4f,0x09,0xfc,0xb1,0xdc,0x6d,0x0f,0x93,0x06,0x0a,0x44, +0x63,0x10,0x0d,0x52,0x7f,0xe6,0x0e,0x2d,0xd8,0xbd,0xa4,0xe4, +0x4f,0x3d,0xff,0x8a,0x49,0x23,0x13,0xc4,0x31,0x7d,0x92,0x03, +0xb0,0x55,0xb0,0xde,0x2a,0xfd,0xc1,0xc6,0x98,0xf3,0xc6,0xda, +0xcf,0x58,0x6a,0xb0,0xdd,0x67,0xf7,0x12,0xb1,0xb9,0xc8,0x83, +0xd3,0x64,0x72,0x62,0xcf,0xa8,0xfd,0x01,0xee,0x96,0xcb,0x2a, +0xa5,0x11,0x5f,0xf0,0x35,0x88,0x57,0x78,0xab,0xc1,0xec,0x73, +0xea,0x54,0xac,0x84,0x3e,0x90,0x8b,0xea,0xd0,0x4e,0x26,0xb9, +0x40,0x82,0x75,0x91,0x49,0x7b,0xee,0xc1,0x6d,0xde,0xcc,0x2e, +0xff,0xa8,0x73,0x86,0x1e,0x5e,0xe7,0x04,0xad,0xfb,0x3c,0xbb, +0x9e,0x62,0xa2,0x05,0x68,0xe4,0xf3,0xcc,0x3d,0x15,0x7a,0x6f, +0xa7,0xfe,0x5e,0x1b,0xae,0xf6,0xb3,0xbd,0xe7,0xba,0x95,0x55, +0xc8,0x57,0xfe,0x37,0x4e,0xd0,0xd8,0x16,0xb9,0x1c,0xd2,0xb4, +0x16,0xb2,0x29,0x39,0x41,0xd7,0x85,0x46,0xaf,0x12,0x92,0xbb, +0xad,0x66,0xb2,0x21,0x82,0xc7,0x5e,0xec,0x65,0xdd,0x29,0x78, +0xf7,0x38,0x1c,0xf7,0x8d,0x7a,0x17,0x69,0xee,0x32,0x9f,0x25, +0xca,0x61,0x14,0xf3,0x09,0x0b,0x03,0xa1,0x1b,0x6f,0xd2,0x92, +0xde,0x3e,0xa0,0xbf,0xfd,0x35,0x67,0x5f,0x33,0x78,0x86,0x6f, +0x37,0xb2,0x5e,0xa4,0x54,0xda,0x14,0x09,0x2e,0x1a,0x16,0x72, +0x8f,0x94,0x7a,0xe7,0xea,0x2a,0xad,0x97,0x3e,0x84,0x2f,0x39, +0x57,0x1b,0xfe,0x4c,0xfd,0x09,0x31,0xb6,0xda,0xf6,0x19,0x4b, +0x6f,0xd9,0xa2,0xaa,0x3e,0xd6,0x7a,0x95,0xd6,0x90,0xbb,0xed, +0x66,0x55,0xf0,0x42,0xbd,0x2d,0x1c,0x10,0x59,0x88,0xdd,0x2f, +0xc8,0x19,0x7b,0x69,0x7d,0xaf,0x46,0x13,0xb5,0x3d,0x89,0x6d, +0x6f,0x0a,0xe0,0x06,0x07,0x06,0xcf,0xc9,0x06,0xc8,0x36,0xb4, +0x36,0x97,0x24,0xf6,0xc1,0x1a,0x92,0x39,0x17,0x6e,0xc4,0x65, +0x75,0xfd,0x51,0xbf,0x85,0xea,0x80,0x34,0x8c,0x35,0x60,0x3e, +0xcf,0x14,0xff,0x0e,0x2a,0x7c,0xf0,0x8c,0x6e,0xa1,0xc4,0x1e, +0xed,0x98,0xba,0x61,0x7d,0x3a,0xd1,0x83,0xce,0xd0,0xcd,0x78, +0xf3,0x62,0x51,0xc1,0xa1,0x82,0xb4,0x54,0x9d,0x1e,0xb4,0x87, +0x0e,0xdc,0x7b,0x33,0x8b,0x5e,0xa3,0x13,0x81,0xbc,0xb3,0xe6, +0x6c,0xbf,0x79,0x8a,0xcf,0xfc,0x09,0x5d,0xfb,0x58,0x5a,0xff, +0xa1,0x13,0x01,0x22,0x11,0xc8,0x88,0x76,0x9c,0xca,0xc8,0x2b, +0x33,0x1f,0x45,0x12,0xd1,0x6a,0xe6,0x30,0x70,0x6d,0x83,0x44, +0xe0,0xc6,0x85,0xa2,0xa2,0x43,0xc5,0x26,0x08,0x87,0xe5,0xea, +0x68,0x51,0x02,0x81,0xb7,0x44,0xa0,0x68,0x6b,0xfb,0x43,0x39, +0x9f,0xed,0x60,0x88,0x3a,0x04,0xe6,0x52,0x94,0x77,0x57,0x3f, +0x56,0x77,0x3f,0xa6,0x1b,0x1b,0x89,0x85,0xb6,0xef,0x73,0x86, +0x2b,0xfa,0xf7,0x39,0xaa,0xf6,0x81,0x2c,0xdd,0x79,0xfc,0xb2, +0x0f,0xb5,0xf8,0x09,0x9e,0xc1,0x68,0x2c,0xdf,0xc6,0x44,0x98, +0xf7,0xad,0xdf,0xc4,0x9b,0xf4,0x9f,0xed,0xea,0x2c,0x85,0xb7, +0x0c,0x67,0x38,0xa7,0x3c,0x35,0x6d,0x3d,0x6f,0xb3,0x9b,0xe5, +0x1d,0xcc,0x4f,0xaf,0x9f,0x8b,0x0f,0x11,0x0c,0x1f,0x61,0x8e, +0xc8,0x0a,0x4f,0xb0,0xce,0x60,0x3a,0x55,0x23,0x90,0xdb,0x2f, +0x98,0xd0,0xb5,0x7f,0x1d,0x55,0xe3,0xcd,0x87,0x31,0x9d,0xa0, +0x1d,0xf6,0x9b,0xaf,0xf8,0xcc,0xf2,0x27,0x82,0x56,0x38,0xed, +0xc6,0xb9,0x62,0x22,0x68,0x38,0x97,0xf9,0xdc,0x6b,0x1b,0x83, +0x02,0x6e,0x9a,0xc1,0x6a,0xfc,0x88,0x8e,0xcd,0x83,0x2c,0xfd, +0xa9,0x33,0x78,0x70,0xf3,0xf2,0x7a,0x9f,0xf3,0xdb,0xe2,0x2c, +0x6f,0xd1,0x9f,0x11,0x8b,0xce,0x4e,0x43,0xd6,0x57,0xec,0x3f, +0x4b,0x69,0x33,0x77,0x42,0x97,0xce,0x96,0xe2,0x19,0xa5,0xe5, +0xc7,0x4e,0xee,0x39,0x65,0xd2,0xfc,0x21,0x10,0x62,0x89,0xb1, +0x38,0xd6,0x79,0xa3,0xa7,0xe2,0x8b,0x77,0xc4,0x29,0xee,0xde, +0x89,0x21,0xe3,0xcf,0xc9,0x38,0x5e,0xc0,0xcd,0x97,0x98,0x36, +0x1c,0xf7,0xae,0xe9,0x8f,0x7a,0x6e,0x73,0x47,0x73,0xa6,0x9e, +0x49,0x75,0xfe,0x6f,0x7b,0x1e,0x0e,0xa3,0xd5,0xfa,0x5d,0x85, +0x3c,0x68,0x10,0x37,0xed,0xae,0xf7,0x76,0xbf,0x23,0x2e,0x70, +0x97,0x5f,0x91,0x07,0xfd,0xcf,0xbc,0xdd,0xe1,0x81,0x98,0xcc, +0xd9,0x31,0x06,0xed,0xe5,0xfe,0xff,0xe2,0xed,0x0e,0x6f,0x33, +0x79,0x03,0x0e,0x70,0xbb,0x5f,0x58,0x81,0xbc,0xc1,0x9d,0x06, +0x33,0xed,0x28,0x95,0x9c,0xe6,0x6e,0xae,0x6c,0x3d,0xdc,0x93, +0xe3,0x59,0x9d,0x43,0xfc,0x0d,0xf1,0x3e,0xb5,0x12,0xbd,0xe0, +0x60,0x36,0x7d,0xc8,0xfb,0x5d,0x04,0xc8,0xf5,0x4c,0xfc,0x04, +0xc2,0x16,0x06,0x53,0xba,0xcc,0xe3,0xcd,0x91,0x0f,0x98,0x9e, +0xf4,0x15,0x46,0xd1,0xe2,0xc9,0x17,0xc2,0x64,0x91,0x6c,0x85, +0x7a,0x44,0xf9,0xf2,0x62,0xd9,0x57,0x8f,0x2e,0x4e,0xea,0x63, +0x79,0x57,0xe9,0x13,0x3c,0xa9,0x57,0xcf,0xe0,0xb2,0x2f,0x2d, +0x62,0x93,0x6c,0xfd,0x83,0xfe,0x05,0xd0,0xe5,0x3d,0x95,0x37, +0x4f,0x42,0x59,0xf7,0xe5,0x7b,0x1e,0x16,0xe9,0xb0,0x4c,0xcd, +0x56,0xbe,0xac,0x38,0xf3,0xd5,0xa3,0x8a,0xc9,0x7d,0x2c,0x6f, +0x2b,0x7d,0x43,0xf0,0xbd,0x90,0xb2,0x2f,0x2c,0x02,0xe4,0xdb, +0x75,0x5f,0x07,0x5d,0x16,0xc9,0x34,0xba,0xa4,0xae,0x78,0xf6, +0xb7,0x9f,0x0b,0xe0,0xf2,0x73,0xc6,0xcd,0x81,0x6c,0xf0,0x62, +0x55,0xbb,0x86,0x64,0x6c,0x2c,0x7b,0x4d,0xfe,0x7e,0x85,0x09, +0x4f,0x26,0x26,0xcb,0x2f,0x36,0x30,0xed,0x57,0xca,0x46,0xe9, +0x0e,0x8b,0x6e,0x6b,0x09,0x7e,0xb0,0x08,0xdc,0xc5,0xeb,0xfe, +0xf2,0x83,0x5b,0x06,0xe8,0x2e,0x62,0xb5,0xe6,0xa8,0xd6,0x7e, +0x13,0xcb,0x34,0xa4,0x7d,0xef,0x8a,0x9e,0xdc,0x7d,0x0a,0x65, +0x9c,0x5c,0x33,0x59,0xae,0x65,0xe2,0x55,0x78,0x51,0x3b,0x43, +0x8f,0xd4,0xbe,0x26,0xf0,0x7f,0x00,0x30,0xb9,0xa9,0xad,0x09, +0xe4,0xee,0x07,0x58,0xcd,0x47,0xa4,0xda,0x7a,0x40,0x4b,0xd1, +0x64,0x84,0x8c,0xad,0x12,0x4d,0x44,0x4b,0x30,0x56,0x71,0xd3, +0x78,0xa6,0x2d,0x9a,0xa3,0x0a,0x4f,0xfc,0xe9,0xa9,0xc8,0xcd, +0x70,0xf9,0x38,0x19,0xc6,0xab,0x2a,0xfe,0x76,0xe7,0xcd,0x96, +0x30,0xd4,0xf5,0x0d,0xd0,0x95,0x9b,0x77,0xfc,0x6d,0x6a,0x5a, +0xe3,0x1c,0x4a,0x56,0xd9,0x52,0x98,0x14,0xd8,0x67,0x35,0x53, +0x0a,0xc7,0x8f,0x6c,0xf9,0x2b,0x5b,0x92,0xb9,0x7a,0x78,0x95, +0x70,0xa4,0xd7,0xab,0xb4,0x4c,0x05,0xac,0x90,0x2e,0x52,0x6c, +0x63,0x98,0xb0,0xd0,0xa4,0xc8,0x55,0x94,0xb1,0x12,0xc7,0x68, +0x4a,0x63,0x4c,0xd5,0xef,0xd1,0xea,0xc0,0x8a,0xa4,0xa1,0x44, +0xac,0x2a,0x78,0xff,0x07,0xc0,0x80,0xf5,0xef,0x07,0x1c,0xf8, +0xfd,0x7e,0x94,0x6a,0xf9,0xfe,0x03,0xc1,0x2d,0x50,0xbd,0x48, +0x2d,0x53,0x3e,0x2f,0x2e,0xb9,0x7d,0xbb,0x68,0xea,0x40,0xcb, +0x24,0x65,0xe0,0xf4,0x29,0x7e,0x7e,0xd3,0x4a,0x3f,0xb7,0x68, +0x35,0xcf,0x54,0xf0,0xc4,0x6e,0x3c,0x95,0x58,0xb9,0x31,0xc3, +0x66,0x1b,0x3f,0x59,0xe1,0x96,0xa9,0x94,0x62,0x3e,0xec,0xae, +0xb6,0x9e,0x52,0x92,0xed,0x52,0xfb,0x84,0x4c,0xee,0xd9,0x33, +0xe4,0xcc,0x97,0x16,0x42,0x5b,0xd9,0x57,0x5f,0x55,0xe0,0xfe, +0x80,0x0d,0xb2,0x25,0xc5,0xa4,0x77,0x2c,0x63,0xc8,0x66,0x87, +0x3d,0xa1,0xaf,0x96,0x99,0xb7,0x0d,0xb2,0xb1,0x58,0xc1,0x8d, +0xa7,0xd8,0x5b,0xfa,0x42,0xb6,0xa2,0x6c,0x5d,0xb8,0x90,0xdc, +0x7d,0x23,0xfb,0x03,0xbe,0x8e,0xd5,0xf3,0x6b,0x36,0x81,0x80, +0x60,0x11,0x00,0xce,0xfa,0x1f,0x03,0x4c,0x13,0x4e,0xaa,0x30, +0x77,0xbe,0x0f,0x2d,0xa0,0x45,0xe7,0xfe,0x60,0x06,0xf3,0x93, +0x7e,0xa2,0x05,0xae,0xd5,0x03,0x61,0xc6,0xb5,0x5a,0xae,0x1e, +0x53,0xbe,0xa8,0x19,0xcc,0xfa,0x5a,0xe6,0x2a,0x2f,0xe1,0xd0, +0xca,0xe5,0xa2,0xda,0xa7,0x64,0x06,0xbf,0x53,0xbd,0xab,0xc5, +0x73,0x6f,0x27,0xca,0xc6,0xd2,0x94,0x3b,0x65,0x51,0x3e,0xd3, +0x1b,0x32,0x98,0x09,0x0b,0xd3,0x7e,0x90,0x73,0x5e,0xd7,0xed, +0xe0,0x6d,0x03,0x36,0xb5,0xfd,0xf1,0xd0,0x7d,0xf5,0xf6,0x41, +0x02,0x62,0xac,0xf3,0x17,0xfa,0xa8,0x7d,0x11,0x63,0x1e,0x4f, +0xfa,0x90,0xe2,0xf2,0x0b,0x2b,0xc7,0xf9,0x4d,0xec,0x8d,0xa3, +0xf5,0x0e,0x99,0x88,0xa3,0x95,0x3f,0xb4,0x3c,0x84,0x3f,0x29, +0x3a,0x3e,0x99,0xb9,0x7b,0x4a,0x37,0x55,0x78,0x80,0xab,0x6e, +0xc1,0xde,0x04,0xbc,0x0c,0x67,0xdf,0x0d,0x3d,0xe4,0xe7,0x01, +0x6c,0x60,0x3f,0x5c,0x0f,0x8f,0xcf,0x11,0xeb,0x77,0x2f,0x1e, +0xbd,0x74,0x18,0x35,0xd8,0xef,0x11,0xe9,0xf7,0x8a,0x4a,0x6e, +0xdf,0x2a,0x9e,0x3a,0x00,0x91,0x3e,0x60,0xda,0x54,0x7f,0xbf, +0xe9,0x25,0xf7,0x2c,0xda,0x90,0x1f,0x55,0x70,0x07,0x85,0xed, +0x32,0xef,0x5d,0xbb,0x3b,0x6e,0xa7,0x05,0xde,0x91,0x13,0x8e, +0xdb,0x92,0x99,0xca,0x84,0x5b,0x5a,0x82,0x22,0xbd,0x90,0x3f, +0xab,0x2f,0x18,0x4c,0x92,0x01,0xa9,0x36,0x1b,0xf5,0xfb,0x8a, +0x08,0x4c,0x7b,0x70,0xed,0x91,0x99,0x37,0x3b,0xc7,0x7a,0x3d, +0x08,0x14,0x41,0xab,0x2d,0xfd,0x29,0x26,0xbb,0xd5,0x5e,0x44, +0xaa,0x59,0x0a,0xf7,0x72,0x62,0xe2,0xb0,0x6c,0xb4,0x90,0xc1, +0x1d,0xa6,0x95,0xca,0x46,0xb5,0x5b,0x70,0x69,0x6e,0x51,0x02, +0xb5,0x73,0x14,0x48,0xb2,0xc5,0x19,0xb6,0x45,0x3e,0x86,0xdf, +0xd8,0xf7,0x36,0x23,0xd0,0x3b,0x30,0x5e,0xaf,0xd7,0xf6,0x48, +0x0f,0x8a,0x29,0x59,0xe7,0x1b,0x37,0x96,0x72,0xc6,0x4e,0x27, +0xdf,0xb8,0xc9,0x4c,0x38,0xca,0x4f,0x5f,0x84,0x30,0xeb,0x75, +0x06,0x6b,0x6f,0x6a,0x65,0xc3,0xb5,0x4b,0x0c,0x1c,0x7e,0xe7, +0x86,0x49,0x4c,0x4c,0xb0,0x36,0xd2,0xa3,0x34,0x2a,0xf9,0xec, +0x67,0xee,0x9e,0xc8,0x44,0xa0,0xb5,0x3d,0xb1,0x6d,0xd5,0x9b, +0x09,0x6e,0x75,0x57,0xc5,0x38,0x6d,0xf9,0xe5,0xfa,0x2f,0x8d, +0x57,0x0c,0xce,0x83,0xc9,0x98,0x9c,0x89,0xf9,0xec,0x53,0x6b, +0x3f,0xeb,0x20,0x1c,0xd8,0x89,0x65,0xcb,0xc9,0x14,0x16,0xbd, +0x39,0x79,0x9b,0x39,0x2a,0xd5,0x07,0x8f,0x96,0x5e,0x34,0x3f, +0xef,0x5a,0x3d,0x9d,0x0d,0x6d,0x1f,0x7c,0x74,0x4a,0xf5,0x7c, +0x0b,0x85,0x3f,0xd5,0xa7,0x97,0xae,0x6e,0xe2,0x4d,0xbf,0x61, +0xe1,0x4a,0x68,0xd0,0xd4,0xf9,0xac,0xe4,0xbc,0xe5,0x17,0xe8, +0xae,0x25,0x23,0xaf,0x8d,0x52,0xba,0xd9,0x62,0x25,0xee,0x60, +0xde,0x72,0xca,0x0d,0xec,0xb6,0x07,0x83,0x21,0xf0,0x66,0xed, +0xdb,0xcc,0x9a,0xc1,0x60,0x89,0xee,0x15,0x66,0x18,0xc1,0xa0, +0xa4,0xb6,0x3b,0xeb,0x52,0xf3,0x87,0xee,0x41,0x7f,0x08,0x19, +0xf5,0xcb,0x00,0x36,0xdc,0xde,0x1e,0x77,0xa4,0xe8,0xc0,0x3d, +0x7a,0xb2,0x3f,0x65,0x7b,0x12,0x9c,0x3e,0x63,0xe5,0xa3,0xd8, +0xb8,0x3e,0x4c,0x24,0xc3,0x62,0xb1,0xc6,0xf6,0x15,0xd0,0x43, +0xf4,0xe7,0x4e,0x9f,0xa1,0x28,0xd7,0x9d,0x44,0xb9,0x49,0x4c, +0x9b,0xc3,0x19,0x12,0xae,0xd6,0x87,0x99,0x7c,0x1b,0xce,0x72, +0xf7,0xae,0x6c,0x2c,0xc4,0x4b,0x8d,0xaa,0xb6,0xc9,0x69,0xbc, +0xc9,0x97,0xb6,0xaf,0x5d,0x6e,0xfb,0x74,0xc9,0x4a,0x7f,0x36, +0x46,0xb3,0x87,0xa8,0x24,0x35,0x3f,0xc0,0xd2,0x2e,0x64,0xc5, +0x9c,0xb5,0x45,0xd2,0x26,0x89,0x89,0xbc,0xc4,0x5a,0x21,0x50, +0xc7,0x45,0x7b,0x8d,0x33,0xe1,0x2b,0x9d,0xe9,0xc3,0x1b,0x6f, +0xda,0x99,0xbe,0xba,0x3d,0x12,0x9f,0x30,0xee,0x26,0xfe,0x6b, +0xb8,0x3e,0xb7,0x3f,0xd9,0x1c,0xe9,0x6f,0xfd,0x99,0x89,0x27, +0x4c,0xae,0xb9,0x6b,0x90,0x35,0x42,0xc0,0x5a,0x06,0x42,0xbd, +0xf3,0x44,0xa6,0x33,0xb1,0x0f,0xfc,0x6b,0x02,0x18,0x77,0xda, +0xc1,0x46,0x40,0x67,0x75,0xac,0xb6,0xaa,0x8f,0x22,0xd7,0x2d, +0xb3,0x8e,0x61,0xe4,0x3e,0x77,0x5d,0x71,0xa6,0xd7,0x92,0xf5, +0xd7,0x6a,0xe9,0xb5,0x1a,0xf2,0x2a,0x1e,0x22,0x6e,0x32,0x6e, +0xca,0x63,0x38,0x23,0xf2,0xef,0x22,0xc4,0xe5,0x73,0xc7,0x0f, +0xeb,0x9e,0x6a,0xff,0xc5,0xda,0xbf,0x88,0x60,0x36,0x4b,0xe6, +0x25,0xcf,0x29,0x2c,0x34,0xe1,0xf2,0x08,0x85,0xa4,0xe9,0xf6, +0x62,0x16,0x43,0x39,0x02,0x6e,0x90,0x01,0xc1,0x9c,0x1b,0xfa, +0x83,0x9b,0x9c,0xc3,0x9d,0x2c,0x7f,0xf7,0xc8,0xb2,0xc8,0xc6, +0xdc,0xf2,0x19,0x3b,0xdf,0xd8,0x77,0xcc,0x89,0x6b,0x9e,0x9b, +0x15,0xee,0xfd,0x3d,0xb3,0xc0,0x4e,0x78,0x8b,0x1c,0xb2,0xda, +0xd6,0xf9,0x5e,0xc9,0x79,0x60,0xe5,0xca,0x4a,0x76,0xa1,0x71, +0xb7,0xb1,0xb9,0x57,0xa9,0x95,0x7d,0x2b,0x6c,0xb5,0x1f,0x7c, +0xb8,0x79,0x13,0x7d,0xc4,0x9a,0x87,0x3c,0x2d,0x93,0x12,0x8c, +0xf6,0xb7,0x36,0xa5,0xf0,0x7c,0x1b,0xc5,0x87,0x2f,0x82,0xc8, +0x51,0xf2,0xf5,0xd7,0xf1,0xa7,0x8c,0xd0,0x02,0xb8,0xe1,0x1e, +0x83,0x59,0xd6,0xa6,0xb5,0x57,0xe8,0xd3,0xce,0x87,0x9f,0x1a, +0xb0,0x4d,0x0c,0x52,0x98,0x8e,0x0f,0x90,0xd4,0x9a,0x3a,0xf6, +0x43,0x0a,0x63,0x7a,0xda,0x17,0xe9,0xaa,0xe9,0xa9,0xce,0xf6, +0x9a,0xad,0x54,0x0f,0x2b,0x5f,0x5c,0x2a,0x7b,0xfc,0xd5,0xa5, +0x49,0x7d,0x2d,0xf3,0x94,0x3e,0x63,0x27,0xf5,0xec,0x31,0x96, +0xd8,0xde,0x5e,0xe9,0x1d,0x4a,0x7d,0xc4,0xe8,0x7d,0xec,0xc0, +0x71,0xc4,0x22,0xb8,0x78,0xec,0x3f,0x8a,0x56,0xc2,0x15,0x4a, +0x41,0xf8,0x0b,0x93,0xcf,0xbb,0x70,0x43,0x32,0x39,0xbc,0xf8, +0x8a,0xcb,0xcc,0x6a,0xc7,0xe4,0x4f,0x4b,0x6b,0x2f,0xb2,0x60, +0x79,0x49,0x5d,0x26,0x1c,0xc4,0x12,0xb1,0x14,0xf2,0x26,0x88, +0x0f,0x41,0x81,0xa5,0x30,0x7c,0x0a,0x3b,0x67,0x17,0x16,0xd4, +0x25,0xb6,0x95,0x87,0xc8,0x42,0xc9,0xbd,0x71,0xb6,0xee,0x64, +0xf5,0x53,0x1f,0xee,0xe8,0xc2,0x4a,0x61,0xb7,0xb8,0x4a,0x5e, +0x5a,0x3f,0xf5,0xc0,0xf7,0x23,0xe4,0x54,0x55,0x5b,0x78,0x56, +0x2e,0x14,0xaf,0x90,0x91,0xd8,0x79,0xb2,0x44,0xd6,0xf6,0x55, +0xc8,0x24,0x83,0xb3,0xfc,0x09,0xdb,0xf4,0xac,0x79,0xcc,0x3a, +0x53,0x98,0xc0,0xbb,0x17,0x79,0x73,0x64,0x79,0x83,0x0c,0x4b, +0xc4,0xa8,0xa1,0xbc,0x59,0x74,0x7d,0x8f,0x2e,0x5b,0x99,0xf6, +0x4c,0x4b,0x22,0xba,0x35,0xeb,0xb6,0xf6,0x96,0x1f,0x5d,0x75, +0x8b,0x10,0x3f,0x19,0x7c,0x9b,0xc4,0x0d,0x4f,0xd1,0x9a,0x89, +0xdd,0x90,0x5a,0x3b,0x8d,0x5a,0x2d,0xa6,0x56,0x2b,0x6e,0x6b, +0xdb,0xfd,0x60,0x39,0xb6,0x7a,0xcf,0x4f,0xae,0xd1,0x5b,0x85, +0xc8,0x55,0xec,0x8c,0xcc,0x54,0xc5,0xeb,0x5a,0xd8,0x25,0x6e, +0xff,0x87,0xbe,0x0b,0xd5,0x10,0xf2,0x7f,0xea,0x56,0x3b,0x9a, +0xa1,0x68,0x90,0x5c,0x2d,0x1c,0x7b,0x32,0xf9,0x06,0x38,0xd5, +0x7c,0xc5,0x92,0xa0,0x4a,0xd5,0xde,0xbe,0x24,0x73,0x20,0x07, +0x81,0x5d,0x7b,0x59,0xbe,0x8f,0x82,0xf0,0xd7,0x14,0x59,0xd0, +0x9d,0x3b,0x1a,0x98,0x66,0x82,0xdf,0x55,0x69,0x16,0x8e,0xbc, +0xe9,0x20,0x06,0xe7,0x1b,0xe3,0x63,0x73,0xcd,0x6c,0x70,0xb6, +0x7e,0x4c,0x1d,0x34,0xe1,0x2e,0xcf,0xeb,0x22,0x4c,0xfb,0x80, +0x85,0x37,0x43,0xa6,0x76,0x57,0x8c,0x45,0x00,0xb4,0xb9,0xc2, +0x4c,0xfc,0xd2,0x87,0x58,0xe8,0x6e,0x2b,0xff,0x37,0x68,0xea, +0x99,0xa9,0x8f,0x70,0x0c,0x90,0xb1,0x37,0x84,0x2b,0xbd,0x5c, +0xa5,0x6d,0x57,0xe4,0x11,0xf8,0x1c,0x5f,0x16,0x77,0x13,0x89, +0x99,0xfa,0xd4,0x31,0x53,0xae,0x5c,0xa7,0x31,0x9a,0xd2,0x18, +0xd3,0xab,0xb4,0x87,0xc4,0x4e,0x7d,0x44,0x13,0x7a,0xd5,0x80, +0xc3,0x8d,0xe0,0x76,0xb9,0x34,0x5e,0x2b,0xe2,0x8f,0x3e,0xc8, +0x1f,0x13,0xe5,0x56,0x4a,0xab,0x51,0x07,0x55,0xbd,0xa3,0x99, +0x3e,0xd8,0x0a,0xfd,0x0d,0xbf,0xff,0x00,0x30,0x10,0xb5,0x27, +0xc3,0x4c,0x5c,0x29,0x3d,0x08,0x76,0x10,0x8c,0xb9,0xab,0x4d, +0xa7,0x20,0xd8,0xb2,0x7b,0x47,0xee,0x68,0xc7,0x44,0x14,0x6c, +0x94,0x91,0x8c,0xdb,0x9d,0x60,0x29,0xf2,0x3c,0xb7,0xa0,0x36, +0xb6,0x5f,0xbb,0xa5,0x06,0x8b,0x51,0x10,0x79,0x57,0x8b,0x18, +0x82,0x6c,0x58,0xf6,0xe8,0xa6,0xa6,0xa5,0x6f,0x4c,0x48,0x5f, +0x2d,0x42,0x51,0x71,0x38,0x5b,0x04,0x21,0xa2,0x7d,0x58,0x66, +0xd8,0xba,0xb0,0x28,0xd3,0xca,0xa8,0xd8,0x64,0xbb,0x3d,0x27, +0x33,0x4f,0x97,0x9b,0x53,0xc4,0xf8,0xcb,0x72,0x26,0x77,0x6e, +0xca,0x4a,0x73,0x4a,0x4d,0x0f,0x60,0x37,0x6f,0x31,0x0b,0x49, +0x71,0x1b,0x56,0xc6,0xbd,0xba,0xeb,0x0f,0xda,0x3f,0xa4,0x77, +0xed,0x14,0x7c,0x6c,0xcb,0xc4,0x1d,0xd9,0x15,0xd7,0x8b,0x1e, +0xe7,0x40,0x19,0x57,0xdc,0x58,0xad,0x2f,0x03,0xcb,0x50,0xd6, +0x6a,0x28,0x33,0x48,0x8f,0x42,0xee,0x08,0x2c,0x4e,0xee,0xe4, +0xce,0xef,0x33,0xde,0xf4,0x4d,0x26,0x63,0xe1,0xd4,0x8b,0x0e, +0x6c,0xa1,0xbc,0xa0,0x2e,0xaf,0xdb,0xc2,0xf9,0x13,0xc4,0x47, +0xff,0xbe,0x85,0xbd,0x3c,0xc4,0x46,0xdb,0x16,0xfe,0xdb,0x2b, +0xda,0x08,0xa8,0xe1,0x8e,0xc7,0x59,0x32,0x83,0xe6,0x43,0x59, +0x07,0xea,0xbd,0xdf,0x19,0x2c,0x17,0x7b,0x60,0x3f,0x47,0xaa, +0xf7,0x97,0x07,0x9b,0xc7,0x50,0xe6,0x4d,0xd5,0x7d,0x8b,0xb8, +0xa3,0xc6,0xc4,0x21,0xd9,0xdb,0x9a,0x88,0x78,0xd9,0xc7,0x32, +0xe4,0x59,0xc2,0x0b,0x57,0xc3,0xd8,0x63,0xd8,0x03,0xb8,0x91, +0xc6,0xc3,0x44,0x6e,0xac,0xb0,0xb9,0xa9,0xb9,0x43,0x17,0x35, +0x54,0x34,0x6d,0x03,0x4d,0xf1,0x7f,0xe8,0x58,0xa5,0xa5,0x8c, +0x40,0x8a,0x09,0x07,0x21,0x48,0x15,0x1d,0xa0,0x4f,0x49,0x1e, +0x74,0x10,0xdd,0x23,0x37,0x86,0x25,0x21,0xb6,0x22,0x57,0xc5, +0xa5,0xd8,0xed,0x2a,0xca,0x2c,0xbe,0x64,0x4e,0x15,0xed,0x2f, +0x4a,0x87,0x60,0xd1,0x2d,0x16,0xd5,0xfe,0xd9,0xfe,0xb8,0xea, +0x9e,0x96,0xe2,0xd7,0x6e,0xdc,0x2c,0x2a,0x3f,0x58,0x66,0x4a, +0x4d,0xcb,0x44,0x6c,0xdb,0xcf,0x84,0xaa,0x5a,0x84,0x7b,0x36, +0x0e,0xa2,0xc5,0xab,0xe3,0x84,0x4b,0x2b,0x70,0xc1,0xff,0x61, +0x7d,0x55,0x8d,0x61,0x04,0x74,0x54,0xe0,0x28,0x8c,0x57,0x45, +0x47,0x18,0xa4,0x0f,0xd2,0x0f,0x07,0x49,0xd6,0x07,0x21,0x2d, +0xae,0x98,0x6e,0xdc,0xd3,0x45,0xfb,0xcb,0xd2,0x61,0x8c,0xe8, +0xba,0x4a,0x01,0xb7,0xd9,0x43,0x91,0xe2,0xb4,0xb2,0x94,0xcc, +0xbe,0x51,0x5d,0x78,0xf6,0x60,0x39,0x6f,0xf6,0x39,0xcb,0x95, +0xf3,0x5e,0x14,0x30,0xb1,0x1d,0xc5,0xf8,0x3c,0xae,0xac,0xb5, +0x89,0x16,0xee,0xd0,0x89,0xab,0x39,0xec,0x03,0xb9,0x9b,0xf6, +0xa6,0xee,0x42,0xe7,0x8e,0x3a,0x82,0x4a,0xfb,0x10,0x7e,0xe4, +0x06,0xab,0xcd,0x87,0xce,0x5d,0x1b,0x89,0xf3,0x76,0x69,0x03, +0x2e,0xf8,0x3f,0x6d,0xc4,0x35,0xfa,0xbc,0x8f,0xfc,0x3f,0x98, +0xb7,0xb8,0x2f,0x9d,0xff,0xf2,0xbe,0x73,0xd7,0x1c,0xd5,0xf1, +0xc2,0xa5,0x13,0xb8,0xe0,0xff,0xe0,0x55,0xa5,0xad,0x1c,0x01, +0x2d,0x69,0xa0,0xe1,0x34,0xf7,0xee,0xc5,0x34,0x50,0x17,0xce, +0xec,0xd8,0x2a,0xba,0x26,0x2b,0xcc,0x2c,0xbe,0x88,0x5b,0xb1, +0xdb,0x45,0xd9,0x34,0x58,0x74,0x8d,0x53,0xa0,0xc9,0xec,0x11, +0xbc,0x79,0x2f,0x56,0x78,0xe6,0xe0,0x19,0xd3,0x86,0xb4,0xcc, +0x75,0xe9,0xab,0xec,0xc5,0x26,0x58,0x4c,0x67,0xa2,0x66,0x89, +0x1e,0x7c,0xd1,0xfa,0x18,0x25,0x88,0x5f,0x99,0xb5,0xb2,0x3f, +0x6f,0x5a,0xce,0x32,0x52,0xb8,0xc3,0x21,0x2c,0x78,0x8b,0xed, +0x39,0x9c,0x79,0x34,0xf1,0x24,0x77,0x3e,0xc0,0xe2,0x06,0x4e, +0x9e,0x0a,0xbd,0x7a,0xdb,0x6b,0x27,0xbb,0xd8,0x82,0x28,0x5e, +0x64,0x7d,0x3c,0x52,0x83,0x17,0xb1,0xdf,0xc1,0xc8,0xed,0xfe, +0xd0,0x1d,0xea,0xac,0x95,0x03,0xb8,0x41,0xa5,0x44,0x31,0x83, +0xc9,0x9f,0x8e,0xb3,0x38,0x26,0x9b,0xcb,0x0e,0xb5,0x21,0xba, +0x43,0x9d,0xb5,0x72,0x25,0xd5,0xca,0x2e,0xe4,0x6d,0x47,0x0e, +0x75,0x7f,0x60,0xd1,0x40,0x2a,0x3a,0x05,0xeb,0xb9,0xdd,0xef, +0x8c,0x7b,0xbe,0xc6,0xac,0x29,0xf0,0x2b,0x37,0x4e,0x64,0xad, +0x26,0x30,0x61,0x1f,0x00,0x4e,0x30,0x8d,0xc1,0x49,0xec,0xce, +0xfe,0x35,0xdc,0xd1,0x73,0x98,0xbc,0x2e,0xde,0xe2,0x86,0xb7, +0x19,0x52,0x07,0x68,0x4e,0x75,0xa1,0xf0,0x58,0xf7,0x97,0x73, +0xbb,0xcc,0x7e,0x09,0x68,0x45,0x77,0xa6,0xd6,0x65,0x14,0xae, +0xba,0x25,0x79,0xce,0x71,0xcf,0xd9,0xd4,0xe1,0x8f,0xfa,0x1b, +0x76,0x01,0xe0,0x40,0x6f,0xec,0x82,0x9f,0xb9,0x32,0x15,0xeb, +0xce,0x52,0x6f,0x6f,0xd3,0x60,0xd0,0x70,0x2f,0x13,0x6a,0x00, +0x98,0xe8,0x7d,0xf9,0x94,0x7d,0x06,0xef,0x72,0x43,0x09,0xc2, +0xbf,0x95,0x62,0xb2,0xfe,0x26,0xee,0xe9,0x8f,0x0f,0x60,0xbd, +0xb5,0x05,0xab,0x39,0xf8,0xf2,0x46,0x6f,0x3b,0xdd,0xe8,0xfd, +0xcc,0x9b,0x1c,0xa4,0x42,0xba,0xd2,0xe3,0xce,0xfb,0x58,0x08, +0xb7,0xaf,0x41,0xf1,0x67,0x36,0x5d,0xec,0x45,0xab,0xc8,0xc9, +0x1b,0xf8,0x41,0x2e,0xa5,0x5b,0x13,0xdf,0x0e,0x33,0xc0,0xa1, +0xc6,0x58,0x62,0x47,0x51,0x18,0x9f,0x69,0x33,0xd5,0xe3,0x13, +0x85,0xd7,0x99,0x47,0xa7,0x4a,0x4f,0x9b,0x36,0xa7,0x6d,0x5d, +0xb7,0x75,0x95,0x38,0x09,0xdc,0x78,0xa2,0x1c,0x3e,0x11,0xae, +0xcb,0x37,0x84,0x25,0xae,0x88,0x30,0x7d,0x18,0x16,0x97,0x74, +0xe0,0x68,0x56,0x76,0xe2,0x69,0x93,0xd8,0x7b,0xc9,0xda,0x70, +0xac,0xd8,0x6f,0x88,0xe9,0x39,0x62,0x12,0x44,0xf6,0xb4,0xd7, +0xd2,0xc0,0x47,0x7d,0xee,0xdf,0x1e,0x82,0xe8,0xbf,0x78,0xba, +0xcb,0x23,0x90,0xf2,0xa0,0x29,0x77,0xcc,0x65,0xa2,0x9a,0x41, +0xd0,0x62,0xd6,0x05,0xd6,0x69,0x1f,0x31,0xdb,0x9d,0x9e,0xe1, +0x1d,0xd6,0x17,0x0e,0x4e,0x10,0xab,0x7c,0x20,0x02,0xfa,0x28, +0xdc,0x79,0x16,0x0b,0xff,0x43,0x44,0x88,0x19,0xdc,0x40,0xd2, +0xd9,0x3b,0xcc,0xbf,0xcd,0x78,0x71,0xf8,0x5c,0x9d,0x53,0x1c, +0x77,0xf2,0x42,0x56,0xfa,0x0d,0xb3,0xce,0x84,0x3c,0x6e,0x44, +0x35,0xb8,0x8a,0x3b,0xe5,0x63,0xc9,0xf7,0xcc,0xda,0x5c,0xbc, +0xaf,0x9e,0x99,0xf9,0xb0,0xf0,0xc2,0xf1,0xec,0x5c,0x53,0xc6, +0x7a,0xda,0x2c,0x60,0x30,0x96,0x16,0xc1,0x88,0xdf,0x57,0xa4, +0x87,0x25,0xe2,0x6e,0x5f,0x11,0xb9,0x26,0x69,0xf7,0xa1,0x8c, +0xa3,0x49,0x27,0x4c,0x62,0xdc,0x45,0x39,0x35,0x58,0x4c,0x30, +0xc4,0x0e,0x9a,0x34,0x05,0xba,0xf7,0xb6,0x47,0xb5,0xbb,0x92, +0x3b,0x25,0x91,0xcf,0x1d,0xf6,0xf4,0x3a,0x77,0xda,0xf7,0x9f, +0xce,0x75,0xae,0x1f,0xb0,0x4c,0x19,0xaa,0xde,0xd3,0x62,0xc5, +0x34,0x79,0x6b,0x9c,0xb6,0x6e,0x00,0x52,0xb2,0x76,0xb2,0x8b, +0xee,0x76,0x87,0xf0,0x1c,0xa1,0x77,0xfe,0x5b,0x07,0x3b,0xe7, +0x6f,0xa9,0xcd,0x1e,0x6e,0x3c,0x82,0xe2,0x26,0x77,0x14,0x8c, +0x5c,0xee,0x70,0xa4,0xb7,0xf4,0x59,0xfc,0xf8,0x9f,0x2e,0x77, +0xf5,0x30,0x88,0x15,0xd0,0x43,0x85,0xf1,0x9d,0x47,0xfa,0x76, +0x7d,0x32,0x4a,0x8c,0x17,0xa1,0x4f,0xae,0x7f,0xff,0x6d,0xe7, +0x4a,0x08,0xa5,0x7b,0x82,0xfe,0xea,0x8c,0xf1,0x33,0xc9,0xfa, +0x65,0x5c,0x41,0xa1,0x25,0x4b,0x29,0xba,0x90,0xaf,0x5b,0xbf, +0xcc,0x9a,0x6e,0x71,0xd6,0x23,0x10,0xc5,0xa8,0x93,0x45,0x6f, +0x5d,0x15,0x94,0x1f,0x2a,0x32,0x59,0x4c,0xe5,0xc6,0x4f,0x74, +0xe9,0xed,0xf4,0x5f,0xa9,0xc1,0xfb,0xa9,0x13,0x45,0xef,0x9e, +0x7a,0x66,0xf0,0x74,0x6a,0x33,0x57,0x2d,0x79,0xad,0xea,0x64, +0xf1,0xb1,0xc3,0xd9,0x88,0xc3,0x8c,0xf8,0xb4,0x38,0xd1,0xbd, +0x8d,0x11,0x69,0x46,0xe7,0x1f,0x56,0x64,0x84,0xd3,0x6d,0x53, +0xd4,0xea,0xb8,0xe4,0xed,0x07,0x32,0x0e,0x25,0xe5,0x98,0x44, +0xaf,0x0a,0x69,0x09,0x11,0x7d,0x0c,0x71,0xc3,0xa6,0x4d,0x01, +0xf3,0x50,0x7b,0x91,0x04,0x15,0xe4,0xe0,0xc7,0x1d,0x03,0x18, +0x3e,0x17,0x72,0xa7,0x9c,0xff,0xf0,0xef,0x6b,0xcf,0xe4,0x31, +0x1a,0xf7,0x47,0x75,0xaa,0xe8,0xcd,0xbd,0x57,0xa2,0x58,0xc0, +0xdd,0x4e,0xfe,0x9f,0x7c,0xfd,0x56,0xaa,0x53,0x44,0xef,0x59, +0x55,0x5a,0xe5,0x08,0xb9,0x80,0x00,0x9c,0xc2,0x4d,0x0e,0x7a, +0xe7,0xaa,0x68,0x43,0xf6,0x67,0xe9,0x64,0x7f,0xd6,0x4a,0xf9, +0xff,0xf2,0x06,0xa4,0x5e,0xb8,0x43,0x53,0x1c,0x4f,0x8c,0x53, +0x8b,0xe7,0x54,0x1d,0x2f,0x3e,0x72,0xf8,0x08,0x4e,0x31,0x33, +0x3e,0x1d,0xa7,0xd8,0xc5,0x58,0x7c,0x1a,0xba,0x7c,0xb5,0x32, +0x3d,0xac,0xc6,0x97,0x25,0x6d,0xdf,0x9f,0xf1,0x09,0xb7,0x9f, +0xc8,0x02,0xa7,0x4f,0x07,0x53,0x00,0xcd,0x2a,0x97,0xbc,0x08, +0x11,0x67,0x4c,0xc7,0x99,0x4a,0x78,0x9d,0x5d,0xa5,0x3d,0x18, +0x81,0x2b,0x85,0x1d,0xce,0xd2,0xf1,0x7a,0x4f,0x77,0x2c,0xa4, +0x99,0x07,0xe0,0xcc,0xeb,0x1d,0x0b,0x7b,0xeb,0x8e,0x85,0x2d, +0xbe,0x26,0x90,0xaf,0xfc,0xe5,0x59,0x68,0x9d,0x2e,0x76,0x71, +0xc3,0x76,0x26,0xde,0x81,0x8f,0xff,0xcd,0xb3,0x90,0x37,0xcb, +0x65,0x58,0x79,0x40,0xaf,0x7c,0x0b,0x76,0x71,0x15,0x25,0xfc, +0x16,0x7b,0xfe,0xed,0x9e,0xed,0x0a,0xdd,0xb3,0xad,0xe7,0x2d, +0x23,0xd9,0xcf,0x5a,0x88,0x9a,0x3b,0x51,0xf0,0xb2,0x87,0xa7, +0x4a,0x4e,0x9b,0x12,0x13,0xb7,0x64,0x6c,0x5d,0xb7,0x2d,0xda, +0x24,0x72,0xc0,0xeb,0xc4,0x59,0xd8,0x27,0xd4,0xe5,0x69,0x78, +0x62,0x23,0x4d,0x1f,0xae,0x8c,0x4b,0x3a,0x98,0x9d,0x99,0x93, +0x98,0x2f,0xaf,0x31,0xdf,0x80,0x49,0x10,0xe1,0x6b,0x3f,0x06, +0xec,0xb9,0xe3,0x7b,0x08,0xf1,0x66,0xfd,0x16,0x8d,0x68,0x87, +0x3b,0xc9,0xe7,0x33,0xb8,0xd3,0x44,0x7a,0x24,0x4b,0x5e,0xce, +0x4e,0x62,0x83,0x4f,0x28,0xdd,0xc0,0x55,0x75,0x79,0xc4,0xda, +0xc4,0x8f,0x8f,0x64,0x1e,0xe5,0xf6,0x13,0x18,0x52,0xe4,0x30, +0x76,0x62,0x4b,0x4d,0x73,0x06,0x2a,0xb7,0x9f,0xc7,0x22,0x4c, +0xce,0xda,0x26,0x66,0x9d,0x0d,0x4f,0xb8,0x71,0x12,0xeb,0x2a, +0x43,0x28,0x56,0x77,0xa0,0x76,0x8a,0x25,0x60,0xa1,0x38,0xa7, +0x96,0xcd,0x78,0x54,0x7e,0x21,0x2f,0x27,0xcf,0x94,0xb6,0x1e, +0x39,0x49,0xac,0x18,0x0b,0x2d,0xc8,0xe4,0x72,0xa4,0x68,0xb2, +0x32,0x63,0x65,0x62,0x58,0xa4,0x69,0x45,0xc4,0x9a,0xe4,0x3d, +0xd9,0x99,0xb9,0x89,0x45,0xbc,0x59,0x06,0x5b,0xd3,0x6d,0xd2, +0x38,0xe8,0xd9,0xde,0x5e,0xab,0x68,0x8f,0x5d,0xc1,0x8f,0x70, +0x56,0x8b,0x66,0x41,0xd4,0xd5,0x34,0xeb,0x33,0xd6,0x7f,0x20, +0x99,0x99,0x75,0x16,0xdf,0x21,0x85,0xdd,0x4f,0x06,0x66,0xf6, +0xe2,0x24,0xe1,0x75,0x13,0xe2,0x75,0xb6,0x98,0xa1,0x9e,0x99, +0xfe,0x55,0x71,0x45,0x6e,0xf6,0x09,0x53,0x46,0x4a,0x06,0x0d, +0x16,0x0c,0xf6,0x44,0x07,0x46,0xfe,0xb9,0x92,0xe8,0x00,0xf7, +0xf9,0x91,0x89,0xd0,0x0a,0x39,0x3d,0x04,0x8f,0x7f,0x5c,0xff, +0x49,0x93,0xa1,0x27,0x32,0x90,0x8b,0xbd,0xb9,0xe9,0x77,0xf2, +0x5c,0xb6,0xce,0x12,0x87,0x68,0x0e,0x9d,0x5f,0x7a,0x03,0xd6, +0x0e,0xa0,0xc2,0xa5,0x5c,0xbd,0xc0,0xc0,0xa3,0x93,0x18,0x45, +0x6a,0xc4,0x32,0x31,0xb0,0xb6,0x09,0x13,0x99,0x70,0x90,0x64, +0x15,0x94,0xf7,0x97,0x7f,0x6a,0x90,0x1f,0x89,0x40,0xee,0xf8, +0x82,0x69,0x41,0xb2,0x07,0x37,0x37,0x41,0x4c,0x8a,0x7f,0xa8, +0x10,0x2a,0x9a,0x05,0x51,0x6a,0x4b,0xb1,0x4b,0x6b,0x1c,0x64, +0x80,0xab,0x8d,0xb1,0xc4,0x24,0x42,0x0d,0xce,0xf8,0xd2,0x1a, +0x7c,0x69,0x99,0x78,0x07,0x7b,0xaa,0xc6,0x95,0x46,0xa9,0xcc, +0xe6,0x35,0xa8,0x8a,0xc5,0xc3,0x64,0xc6,0x1d,0xb1,0x4c,0xa8, +0x06,0xc8,0x84,0xae,0xdc,0xee,0x2e,0xe5,0x88,0x6d,0x63,0x8d, +0xb4,0x19,0x5a,0xbd,0x5a,0xbb,0x8b,0x69,0xef,0xcb,0x5e,0x9a, +0x27,0x2b,0xd1,0x23,0x33,0x44,0xd5,0x45,0x66,0xe0,0xf6,0xa5, +0x4c,0x2e,0xbd,0x23,0xde,0xad,0x7d,0xc8,0x7a,0x62,0x23,0xd1, +0x19,0x76,0x9d,0x20,0x17,0xb0,0x99,0xdc,0xfe,0x29,0xab,0x0a, +0x11,0xbd,0x45,0x9f,0x1b,0x15,0x95,0xb9,0x1f,0x1e,0x9b,0xc0, +0x9d,0xc3,0x90,0xdb,0x5c,0x64,0xb0,0x46,0x04,0xaa,0x22,0x10, +0x8f,0x69,0x4f,0x63,0xfe,0x85,0xc3,0x05,0xbb,0x8b,0xed,0x83, +0xe5,0x06,0xee,0x4c,0xa1,0x7f,0x02,0x91,0xcf,0xdf,0x16,0x1e, +0xbc,0x69,0x7b,0x46,0xec,0xf4,0x2a,0x0b,0x83,0x9b,0xaa,0x16, +0x07,0x3b,0xef,0x88,0x87,0xf2,0x86,0xc1,0xf9,0x85,0xbd,0xf6, +0x44,0xbd,0x04,0xae,0xe2,0x15,0x3f,0x39,0xfd,0xf6,0x4f,0xc2, +0xf5,0x32,0x3e,0x3b,0x29,0xb2,0x0c,0x4c,0xdc,0x05,0x79,0xea, +0x08,0x54,0xf6,0x6e,0x8b,0x46,0x5a,0x18,0x03,0x47,0x84,0xa6, +0x5a,0x4e,0x23,0xb3,0xac,0x15,0xf2,0x52,0x90,0x16,0xde,0x56, +0x7e,0x08,0xa3,0x90,0x03,0x7d,0x72,0x55,0x26,0x93,0x71,0xd8, +0x63,0xb2,0xca,0xc2,0xd7,0x66,0xda,0xac,0xb2,0xf4,0xe1,0xc4, +0x59,0x69,0x54,0x3f,0x58,0x4e,0x89,0x27,0x75,0x4f,0xba,0xc3, +0x83,0x16,0x2a,0x5e,0x53,0x83,0x20,0xce,0xcb,0x72,0x32,0x54, +0xb8,0x55,0xdc,0x2f,0x2c,0x2a,0x34,0x25,0x25,0x6e,0xca,0xa0, +0xd4,0x93,0x26,0xb1,0x15,0xba,0xea,0x76,0x5a,0xad,0x57,0xa4, +0x47,0xae,0x5b,0x8e,0x3b,0xf2,0x3f,0x01,0xb8,0x4d,0x8a,0x12, +0x19,0xa7,0xfd,0x62,0x33,0x4e,0x7b,0xfe,0x37,0xe3,0xb4,0x7c, +0xca,0xf2,0x74,0x4c,0x4d,0x4a,0x21,0x4b,0xab,0x3f,0xa0,0xaf, +0x31,0xbf,0xa0,0x2d,0x6f,0xbd,0x88,0xc5,0x27,0xdb,0x6d,0x2f, +0xa1,0x2f,0xec,0x9b,0x1e,0x5f,0x84,0x45,0xc1,0x57,0x22,0xc9, +0xa4,0x66,0xe4,0x84,0x9e,0x96,0xf1,0xdf,0xbc,0xd8,0xc6,0x8a, +0xd2,0xce,0x60,0xcd,0x79,0xaa,0xf9,0x3e,0x42,0x37,0xa0,0x6a, +0x62,0xc9,0x9f,0x55,0x54,0x79,0xa8,0x74,0x2f,0x6f,0xf6,0xdc, +0x66,0x56,0x73,0xf1,0x48,0xf1,0xee,0x52,0x7b,0xf1,0x2f,0xe1, +0xf1,0x77,0x03,0x2a,0xae,0x7c,0xc6,0xb8,0x0b,0x79,0xfd,0x51, +0xe4,0x71,0x78,0x4b,0x81,0x6d,0xf4,0x6d,0x20,0x92,0x32,0xc9, +0x6c,0xa6,0xc0,0xe3,0x9c,0x0d,0x45,0x3e,0x02,0x42,0x04,0xe3, +0xe3,0x68,0x54,0x13,0x64,0x9f,0xda,0x6d,0x4c,0x2b,0x63,0xf0, +0xc6,0x1d,0x6d,0xc6,0x30,0x08,0x55,0x64,0x52,0x3b,0xce,0x50, +0x6f,0xf9,0x13,0x0e,0x71,0xbb,0xdb,0x7a,0x55,0xdc,0x1d,0x2d, +0x82,0xb3,0xc5,0x4c,0x0c,0x84,0x3d,0xd6,0xd4,0x3a,0x03,0x9d, +0x3d,0x55,0xe4,0x1c,0xf9,0x0c,0x16,0xa9,0xe3,0x7e,0x80,0xe8, +0x4a,0x2d,0x81,0xbb,0x76,0xa7,0x3c,0x02,0xa8,0x18,0xcd,0x61, +0x7e,0xcc,0xda,0xa5,0xca,0x00,0xcf,0xb4,0x61,0x6a,0xc8,0x0f, +0xf0,0xb4,0xb2,0xc6,0x30,0x12,0x96,0x28,0x30,0x06,0x9a,0xa8, +0x89,0x29,0x36,0xab,0x33,0xc4,0x45,0x7e,0x3b,0xd1,0x21,0x26, +0x33,0x62,0x7d,0xc4,0x2a,0x53,0xd4,0xaa,0xb5,0x49,0x76,0xdb, +0x4a,0x33,0x10,0x25,0x9b,0x1f,0x55,0xc0,0x82,0x90,0xcb,0x11, +0x0a,0x34,0x5c,0x31,0x6a,0x7c,0x0f,0xcb,0xc4,0x6f,0x56,0x67, +0x46,0xa6,0x46,0xd5,0xd9,0x96,0x6c,0xd1,0x0d,0xcb,0x36,0x9f, +0xa3,0x36,0xdf,0x85,0x2b,0xd0,0x7a,0xfe,0xc8,0x1e,0x88,0x9e, +0xbc,0x59,0xc5,0x95,0x07,0x4b,0xf7,0x9e,0x31,0x25,0xa5,0xac, +0xc7,0xee,0x7f,0x46,0x14,0xe5,0x5f,0x3c,0x4c,0x28,0x1a,0x24, +0xe7,0x12,0x56,0xfc,0x98,0xdc,0x42,0x10,0x89,0xf3,0xdc,0xe5, +0x31,0x0b,0x95,0xeb,0x55,0xf1,0x96,0x16,0x77,0x45,0xde,0x82, +0x5c,0xd9,0xb9,0x6e,0x4a,0x5b,0xaa,0xc8,0x61,0xf3,0x19,0xcc, +0xa3,0x26,0xe0,0x25,0x77,0x70,0x65,0x4a,0x5d,0x55,0x54,0x15, +0x39,0x6c,0x3e,0x83,0x39,0xbc,0xcd,0x0c,0x72,0x75,0x69,0xcc, +0x5d,0x51,0xee,0x90,0xf0,0x3d,0x57,0x3e,0xa8,0xb7,0x9f,0x7a, +0xa6,0x35,0x26,0x5c,0x2c,0xaf,0xd4,0x56,0x11,0x2e,0xc4,0x3c, +0xe9,0xc0,0x0d,0x63,0xfe,0x36,0xb2,0x1a,0xaa,0x63,0x6a,0xf5, +0x48,0x98,0xa9,0xa0,0x90,0xdd,0x48,0xfd,0x09,0x7a,0xe6,0x9f, +0x3f,0x5c,0x48,0x46,0x10,0x6e,0xf9,0xcc,0x5e,0x2b,0x44,0xb9, +0xca,0x8e,0xb4,0x90,0x99,0x2c,0x48,0x9e,0xe0,0xca,0xe1,0x3a, +0x23,0xa7,0x36,0xd0,0x6c,0x9c,0x68,0xd6,0x5e,0xff,0x9f,0x0c, +0x70,0x76,0x2b,0xf0,0x14,0xbe,0x54,0xb9,0x5b,0x2f,0x32,0x45, +0xea,0x6f,0x33,0x98,0x39,0x63,0x0f,0x91,0x70,0x8d,0x82,0xda, +0x6b,0xdf,0x6b,0xff,0x42,0xe5,0xaf,0x19,0x34,0x80,0x66,0xf4, +0xe7,0xc0,0x9d,0x9a,0x76,0xc3,0x48,0x81,0xd8,0x0d,0xb3,0xea, +0xad,0x76,0x9a,0xc3,0x20,0x63,0x71,0x01,0x38,0x89,0x6e,0xd1, +0x1b,0x23,0x92,0x23,0xa2,0xe0,0x09,0xd9,0xcc,0x94,0x5d,0x37, +0xef,0x12,0x0d,0x2e,0x41,0xda,0xd8,0x4f,0x97,0x91,0xe5,0xcc, +0xc8,0x80,0x1e,0x16,0xff,0xa7,0xab,0xb2,0xc2,0x92,0xc8,0x00, +0x2d,0x16,0xf1,0xbf,0xb5,0x30,0xbd,0x14,0x1b,0xdd,0xbe,0x04, +0xa9,0x63,0xc5,0x2b,0x1f,0x2a,0xd0,0xea,0xed,0x91,0x6d,0xa1, +0x99,0xa5,0x78,0x56,0xf9,0x8d,0x9c,0xd2,0xbd,0xe5,0xa6,0x64, +0xb2,0x80,0x8b,0x43,0xb0,0x86,0x18,0x4b,0xaf,0xe4,0x14,0x7f, +0x5c,0x66,0x0f,0xad,0xe5,0x82,0x97,0x21,0xdd,0x29,0x34,0x3e, +0x6f,0x9a,0xc4,0xa0,0x87,0xbe,0x43,0x3d,0x09,0xa8,0x20,0xce, +0xa2,0x28,0x62,0xec,0x26,0xda,0xa1,0x1a,0xe2,0xd7,0x74,0x47, +0x9b,0x33,0x0c,0x5c,0xa8,0x6e,0x90,0xca,0xd9,0x45,0x8a,0x7a, +0xdf,0xc3,0x58,0x72,0x3e,0xa7,0xe0,0xe3,0x22,0x7b,0xf0,0x96, +0xf9,0xbc,0xc9,0x95,0x3a,0xd4,0x78,0xea,0x48,0xe9,0x62,0x43, +0x4d,0x37,0x0a,0xa6,0x8f,0xa8,0xb9,0xa3,0x77,0xf8,0xae,0xfc, +0xe4,0xaf,0x60,0xfa,0x46,0x68,0xc6,0x7d,0xfa,0x30,0xaa,0xbd, +0x8c,0x5d,0x9e,0x63,0xba,0x39,0x55,0x09,0x99,0x53,0x95,0xd8, +0x8b,0x5d,0xf0,0xa3,0xf5,0x20,0xe2,0xad,0x06,0x57,0xf0,0x25, +0xa2,0x3f,0xb8,0xa3,0x7d,0x31,0x0c,0xda,0x28,0x32,0x15,0x46, +0x93,0x19,0x50,0x7f,0x1b,0x9a,0x4d,0x84,0x76,0x7b,0xad,0x91, +0x74,0xa1,0x38,0xfb,0xfa,0x5c,0x86,0x50,0xa0,0xfd,0xbf,0xcd, +0xe5,0x0a,0x99,0x1d,0x24,0xb3,0x9a,0x78,0xdd,0xa9,0x8e,0x6c, +0x38,0x21,0x0e,0x3e,0x52,0xbb,0x05,0x7f,0xe7,0x8d,0xff,0x24, +0xbf,0x5e,0x73,0x7b,0x94,0x01,0xc6,0xc8,0xf6,0x6a,0xd4,0xea, +0xf8,0x24,0xbb,0xed,0x57,0x32,0x6e,0x7c,0x6d,0x3e,0xfd,0xf8, +0x12,0xcc,0x1b,0x7b,0x7e,0xa6,0x02,0x9e,0x2b,0xfa,0x4e,0x80, +0x06,0x96,0x89,0xc2,0x2e,0x36,0x2b,0x2c,0x25,0x8a,0xdb,0xb9, +0xb2,0xad,0x97,0xd2,0x2a,0xbf,0x37,0x1f,0x3f,0x77,0x09,0xde, +0x1b,0xfb,0xed,0xeb,0x0a,0x04,0xcf,0x1f,0xd4,0x03,0xba,0x92, +0xf5,0xcd,0xc3,0xc3,0x15,0xbb,0xaf,0xd1,0xb6,0x4f,0x48,0x5a, +0xfb,0x33,0xcc,0x31,0xe6,0x7d,0x76,0xb8,0x62,0xe7,0xe5,0x64, +0x3a,0x65,0x71,0xbf,0xc1,0x2c,0x63,0x5e,0x41,0x3b,0x11,0x1c, +0x93,0x15,0x9e,0x1a,0x11,0x65,0x72,0xb6,0xd9,0xd7,0xec,0xa9, +0xa4,0xa3,0x4b,0x61,0x32,0x27,0x7c,0xdd,0xad,0xfb,0xf8,0xaf, +0xa1,0xc7,0x35,0x2d,0x21,0x10,0x2c,0x0a,0xcc,0x81,0x71,0xbc, +0xcd,0x5d,0x46,0x36,0x92,0x05,0x1d,0x84,0x0f,0x6f,0xfc,0x05, +0x8b,0x5c,0x85,0xc4,0x6a,0x1b,0x6e,0x8d,0x4a,0xf3,0xa6,0x87, +0xe7,0x61,0x5e,0xe8,0xc5,0x48,0xa5,0xd5,0x8a,0x51,0x13,0xfb, +0x58,0x26,0x3d,0x22,0x13,0xa6,0xcd,0xfa,0x86,0xd8,0x54,0x4e, +0x55,0xdf,0xe0,0xa1,0xb5,0xcc,0x1f,0xd5,0x0b,0x1c,0x08,0x32, +0xb2,0x63,0x2a,0x41,0xc8,0x52,0x12,0x92,0xd7,0x3e,0x87,0x3e, +0xc6,0xd3,0x15,0x87,0x0b,0x77,0x95,0xd8,0x83,0x2f,0x8a,0x73, +0x48,0x23,0xa6,0x22,0x8d,0xa8,0x34,0xc0,0x7d,0xd4,0x75,0x43, +0x1f,0x77,0xee,0x31,0xee,0x31,0x6c,0xbd,0x56,0x63,0x08,0xa4, +0x7d,0xfa,0x1a,0x4c,0xe5,0xcd,0xf7,0x31,0x9d,0x46,0xb4,0x17, +0x1d,0x62,0x33,0xc3,0x53,0x71,0xff,0x45,0x12,0x8d,0xd8,0x8e, +0x34,0xe2,0xa6,0x79,0xfb,0xc3,0x0b,0x30,0x6f,0xdc,0xc5,0xe5, +0x48,0x36,0x57,0x06,0x20,0xd9,0x9c,0xf4,0x35,0x99,0x59,0x61, +0x9b,0x55,0xab,0xc9,0x2a,0xb3,0x28,0xbd,0xac,0xca,0xbc,0xbd, +0x9c,0xda,0x7c,0x8b,0x6d,0xbc,0xe7,0x8f,0xec,0x09,0xce,0x64, +0x5a,0x85,0x34,0x62,0x0f,0x91,0xd0,0xe7,0x36,0x53,0xa5,0xe2, +0x5d,0xa5,0xf6,0x23,0xe4,0x9b,0x3a,0xd5,0xb4,0x9b,0xc6,0xc6, +0xc9,0x5c,0xf5,0x67,0x2d,0x5e,0x2c,0x93,0xf7,0x83,0xb4,0x94, +0x76,0x32,0x1e,0x02,0x70,0xc7,0x16,0x91,0x7b,0xb2,0x8e,0xb7, +0x2d,0x95,0x44,0x1f,0xee,0xa3,0xc2,0xec,0x72,0x05,0x99,0x89, +0xdc,0xa6,0xd3,0x07,0xbd,0x2a,0xaa,0x92,0xe8,0xc3,0x7d,0x68, +0xcd,0x5b,0x6b,0xa8,0xc2,0xc3,0x08,0xee,0x7a,0x9c,0x69,0x8d, +0xe0,0x1b,0xa2,0x0f,0x75,0x16,0x57,0xf7,0xb5,0x51,0xea,0x84, +0xc7,0xdd,0x7a,0x8c,0x7f,0x0c,0x9d,0xae,0x69,0xab,0x74,0x84, +0xbf,0xf6,0xff,0x03,0xc2,0xc5,0x12,0xa9,0x10,0x21,0xb2,0x41, +0xba,0xb3,0x92,0x5c,0x99,0x71,0x12,0xea,0xc4,0xc7,0x3d,0x7a, +0x4c,0x7c,0x0c,0xed,0xaf,0x69,0x1f,0x71,0xd7,0x9e,0x4c,0xf8, +0x22,0xe1,0x33,0xcc,0x22,0x2b,0xab,0x5b,0xea,0x1f,0xd1,0x4a, +0xe9,0xc9,0xec,0x23,0xfb,0x0e,0xf1,0xd6,0xa1,0x2c,0x23,0x82, +0xac,0xd1,0xc3,0xa3,0xe8,0x83,0xf0,0xb1,0xf4,0x9c,0x42,0x6e, +0x7f,0x81,0x4d,0x7b,0x75,0x44,0xeb,0x6f,0x8d,0x91,0xe9,0x60, +0x66,0x54,0x9a,0x91,0x93,0xcf,0x1b,0x7f,0xcf,0x7a,0xcf,0x1e, +0x0b,0x6a,0xef,0xbc,0xe9,0xc6,0x1b,0x45,0x05,0x27,0x0e,0xe6, +0xa6,0xa7,0x6f,0x5c,0x97,0xb1,0x0a,0x4f,0x5a,0x43,0x63,0x64, +0x2b,0xa9,0xdc,0xa7,0x3c,0x08,0xef,0xc9,0x39,0xcc,0x6a,0x21, +0xa7,0x87,0x49,0xb5,0x26,0xfa,0xca,0x60,0x50,0xbf,0x8d,0x52, +0x4a,0xb3,0xb3,0x0f,0xec,0xfb,0x24,0x33,0x3d,0x33,0x3e,0x93, +0x42,0x7a,0x36,0x32,0xe6,0x17,0x42,0xbb,0xdf,0x22,0xd2,0x23, +0x12,0x70,0xdb,0x86,0x45,0xd2,0xc8,0x87,0xd3,0x0e,0x9d,0x34, +0x8b,0xb6,0xbc,0x79,0x2d,0x0b,0x5c,0x30,0xab,0xfb,0x38,0xaf, +0xcf,0x8d,0x91,0x69,0x91,0xbc,0x79,0x00,0x3b,0x94,0x7e,0x24, +0xf1,0x38,0x77,0x98,0xc3,0xfc,0x67,0x4e,0x04,0x37,0xbf,0xbc, +0x19,0xc6,0xca,0xd3,0xf9,0x47,0x0f,0x1e,0xcd,0x48,0xdb,0x4c, +0x9e,0x0b,0xcd,0x3b,0x1a,0xc3,0x7c,0xb9,0xfd,0xd0,0xff,0x12, +0x76,0x42,0x77,0x5f,0xe6,0xcd,0xab,0x18,0xb9,0x2e,0x5b,0x9f, +0x0d,0xe2,0x76,0x33,0xc8,0xc6,0x6b,0x30,0x79,0x2e,0xa3,0xcc, +0xb4,0x4d,0x05,0x0f,0x5b,0xad,0xc1,0xfa,0x2c,0x9c,0x2a,0x51, +0x28,0xfc,0x17,0xf7,0x8c,0xa2,0xca,0x83,0x58,0x29,0x22,0x87, +0xca,0xad,0xd5,0x62,0xb1,0xde,0x20,0x4a,0x2d,0x9c,0x5d,0x52, +0x72,0x2c,0x67,0x4f,0xae,0xa9,0xce,0xe2,0xc3,0x0e,0x9a,0x19, +0x0b,0xf3,0x8e,0xe5,0xec,0xcd,0x4d,0x81,0xaf,0x19,0x38,0x1b, +0x0b,0xf2,0x5a,0x89,0x57,0xa2,0x78,0xb3,0x23,0x6c,0xfb,0xd1, +0x8c,0xec,0xc4,0x53,0xa6,0xdf,0xcb,0x61,0xed,0xc4,0x9b,0x86, +0x78,0xff,0x25,0xd3,0xb9,0x73,0x11,0x3b,0x92,0x96,0x7d,0x92, +0x37,0x3f,0xcd,0xe2,0xbb,0xbf,0x3b,0xad,0x4b,0x2f,0x7b,0xed, +0xb6,0xb7,0x74,0x66,0x0f,0xfc,0x7a,0xbd,0x48,0x61,0x57,0x61, +0x06,0x6f,0x79,0x94,0xf1,0x36,0xae,0x36,0x60,0xc7,0x26,0x71, +0x57,0x94,0xc1,0xa6,0x62,0x83,0xaf,0xfc,0x7c,0xb9,0x77,0xbc, +0x1e,0x02,0x1d,0x18,0x7c,0xc4,0x4d,0x33,0x69,0x62,0x5b,0x54, +0x91,0x3c,0x54,0x16,0x54,0xdb,0xfc,0xb2,0xad,0xcf,0x86,0xe8, +0x93,0xf3,0x46,0x11,0x72,0x91,0x2d,0x2b,0x3d,0xa4,0x41,0x63, +0x72,0x54,0xcb,0xbb,0x29,0xe2,0x45,0x63,0x48,0xab,0xd2,0x6e, +0x28,0xd6,0x68,0xe9,0xc6,0xdd,0x50,0x48,0xb7,0xe3,0x0e,0xcb, +0xd8,0x0f,0x01,0x1d,0x5e,0x1c,0x65,0x50,0x0e,0x7e,0xaa,0xb6, +0x15,0x96,0xdd,0x11,0xa7,0xe5,0xb7,0x78,0x14,0x54,0x0a,0x04, +0xd4,0x18,0x3e,0xaf,0xaa,0x79,0x75,0x04,0x1c,0xc1,0x4e,0x6c, +0x81,0x80,0xe4,0x15,0x91,0xa1,0xe6,0x95,0x1c,0xca,0xd9,0x99, +0x9b,0x8c,0xc4,0x28,0x79,0xed,0x33,0x68,0x6a,0x3c,0x99,0x77, +0x28,0x7b,0xf7,0x71,0xfc,0xbd,0x2e,0x19,0x79,0x72,0x13,0x63, +0x5e,0x5e,0x57,0xd1,0x60,0x55,0x46,0x64,0x22,0xb2,0xfc,0xe8, +0xd5,0x6b,0xf4,0xcf,0xe1,0xb9,0x85,0xe6,0xaf,0x68,0x2f,0x57, +0x18,0x12,0x86,0x7c,0x38,0x75,0x4a,0xc8,0xb4,0xcb,0xc6,0xe8, +0xcc,0xa8,0x84,0xa8,0x98,0xa8,0x55,0x46,0x32,0x84,0xcd,0xde, +0x80,0x2d,0x92,0xce,0x9e,0x87,0x77,0x43,0xbf,0x51,0x12,0xba, +0x2e,0x9c,0xdc,0xdb,0xd7,0x5e,0x8b,0x81,0xa6,0xea,0xb8,0x28, +0xff,0x98,0x81,0xb1,0xf6,0x3f,0x8d,0xf0,0x51,0xd6,0x04,0x0c, +0x4f,0x18,0x41,0x7e,0xc6,0x22,0x40,0x8c,0xcd,0xda,0x23,0xdc, +0x3c,0xe1,0x9f,0x50,0xa4,0x8a,0x09,0x43,0xe0,0xb5,0xba,0x3c, +0x22,0xdc,0x25,0x99,0x7d,0x1b,0xd0,0xf9,0x05,0xdd,0xb0,0x91, +0xd7,0xed,0x20,0x2d,0xee,0x32,0x72,0x7f,0xf2,0x04,0x3f,0x44, +0xd5,0x06,0x13,0x83,0x77,0x64,0x2b,0xf5,0x6b,0x54,0x18,0xdf, +0x92,0x0f,0x42,0xb4,0xb4,0xee,0x32,0x09,0x7a,0x60,0x75,0xf1, +0x45,0xca,0x81,0x4e,0x16,0x64,0xd0,0x46,0x34,0x52,0x87,0x46, +0x75,0x5d,0xdd,0x2e,0xce,0xfe,0xbb,0xf7,0x94,0x82,0x7c,0x5c, +0xdc,0x13,0xc9,0xe0,0xc2,0xc0,0xcd,0x58,0x90,0xef,0x25,0x0c, +0xdc,0x21,0x8b,0xd1,0xe5,0xd7,0xf6,0x9c,0xcc,0xe3,0x05,0xdc, +0xa1,0x86,0x25,0x0c,0x5a,0x3c,0x25,0x64,0xec,0xe8,0x5b,0xdc, +0xbe,0x37,0xc3,0xa3,0x93,0x6f,0x4e,0xe2,0x0e,0x03,0x58,0xa7, +0xb9,0x93,0x3a,0xfb,0x16,0xcd,0x32,0x96,0x9e,0x39,0x96,0xbb, +0xf7,0x54,0xad,0xa0,0xdc,0x8c,0xae,0xc6,0x77,0x3b,0x1b,0xd6, +0xf6,0xee,0x11,0xdf,0x53,0x4b,0x21,0xeb,0x81,0x86,0xbc,0xcd, +0x75,0x94,0xd1,0xba,0x92,0x59,0xda,0x6f,0xaa,0x18,0xa5,0x45, +0x52,0x2a,0xad,0x0d,0x30,0xa1,0xce,0x62,0x00,0x61,0x19,0x51, +0xd3,0x80,0xfd,0xf0,0xff,0x1e,0x8c,0x8e,0xdc,0x3b,0x16,0xb7, +0x53,0x77,0xcf,0xc1,0xb0,0xc4,0xda,0x56,0x87,0xe1,0x8e,0x7e, +0x1f,0x84,0x48,0x38,0xa3,0x0f,0xec,0xc2,0x5d,0xb6,0x33,0xf0, +0xe9,0xce,0xcd,0x8b,0xd9,0x1d,0x6d,0xb8,0x5a,0x30,0xbd,0xb2, +0xb4,0xe0,0xe4,0xc1,0x53,0xa6,0xf4,0xb4,0x8d,0xeb,0xd2,0x57, +0x8b,0xf6,0xe0,0x69,0xac,0x2c,0xcf,0x3f,0x71,0x00,0x29,0x40, +0x66,0x42,0x06,0x59,0x75,0x99,0x8c,0x85,0xc5,0xd0,0x56,0x34, +0x8f,0x4c,0xe7,0x96,0xa6,0x6c,0x8a,0xaf,0x9f,0xcf,0x13,0x63, +0x44,0x06,0x85,0x80,0x0d,0x8f,0x36,0xae,0x4d,0xb4,0xdb,0x79, +0x3c,0xfd,0x44,0xa1,0xf9,0x8f,0x0a,0xb8,0x1d,0x22,0xbc,0x0d, +0x09,0xdd,0x66,0x07,0x81,0xfb,0xab,0xa8,0xa9,0xc1,0xab,0xaa, +0x68,0xe2,0x0f,0x4d,0x50,0x8e,0xd6,0xff,0x2c,0x20,0x53,0x33, +0xeb,0xbe,0x97,0x06,0x66,0xdf,0xfd,0x65,0x60,0x16,0x54,0x6f, +0x60,0x76,0x47,0x9b,0xae,0xe6,0x4d,0xbf,0x51,0x5c,0x90,0x7b, +0xf0,0x84,0x0e,0x52,0x06,0x81,0x64,0x32,0x5e,0x3f,0x93,0x9f, +0x7b,0x20,0x27,0x83,0x40,0x5a,0x8d,0x44,0xc6,0xd5,0x58,0x50, +0x0c,0xed,0x84,0x63,0xc4,0x4b,0xfa,0x96,0x68,0xb7,0x23,0x3b, +0x3d,0xbb,0x88,0xe8,0xdb,0x54,0xdf,0x00,0xef,0x3a,0xfa,0x46, +0xa5,0x7f,0xa7,0x6f,0xbd,0x08,0xac,0xd6,0xaa,0x68,0xe0,0x8f, +0x02,0xd6,0x2a,0xdb,0x9f,0x05,0x36,0xf3,0xb2,0x89,0x0c,0x46, +0x7e,0xc2,0x34,0x43,0x27,0x38,0x3c,0x56,0x7c,0x00,0xb1,0xb7, +0x44,0xe1,0x89,0x49,0xdc,0xe1,0x0b,0x06,0x7b,0x7e,0x54,0x70, +0x0b,0xfe,0xc0,0xea,0xee,0xa8,0x9e,0xe0,0x8e,0xb3,0x3b,0xaa, +0xfb,0x2e,0xbe,0xd3,0x11,0xde,0x84,0x7e,0xd6,0x4f,0xd8,0x73, +0xf1,0x86,0x98,0xcd,0x9b,0x2d,0x66,0x17,0xc0,0x53,0x15,0xed, +0xf0,0x80,0xb6,0xab,0x8f,0x4e,0x1d,0xa6,0xa7,0x47,0x9e,0x50, +0xad,0x3d,0x55,0xac,0xff,0x84,0x1c,0xee,0x5a,0xc9,0xa0,0x92, +0xc2,0x44,0xbe,0x08,0x60,0x43,0x20,0x8b,0xcc,0xce,0xe6,0xde, +0x11,0xfb,0xc8,0xec,0x4c,0x8b,0x15,0xab,0xd4,0xf1,0xe2,0x7d, +0x70,0xa8,0xae,0x99,0x34,0x54,0xee,0x57,0xac,0x1d,0xc5,0x42, +0xa2,0x4d,0xc5,0xd9,0x39,0x7b,0x4e,0x98,0x48,0x30,0x48,0x26, +0xa3,0x54,0x1b,0x6d,0xda,0x77,0x9c,0x6c,0xa8,0x53,0xd6,0x08, +0x07,0xa4,0x4f,0xf9,0x79,0xd0,0x80,0xcc,0x54,0xa3,0xe8,0x78, +0x46,0xae,0x8a,0x4b,0xde,0x7e,0x04,0xc9,0xd4,0x89,0x7a,0x32, +0xb5,0x76,0xf8,0x92,0xe9,0xe3,0xc6,0x8f,0xae,0x32,0x46,0xa7, +0x93,0x91,0x67,0xd4,0x6a,0x3a,0x9e,0x9b,0x0f,0xa7,0x1f,0x3d, +0x69,0xbe,0x41,0x2d,0x44,0x03,0x43,0x7c,0xaf,0xb7,0xa7,0x76, +0xe9,0x63,0x2f,0x96,0x43,0xd5,0x4b,0x93,0xb4,0x5f,0x55,0xd1, +0x73,0x28,0x0c,0xa1,0xf8,0x23,0x07,0xc9,0xd5,0xce,0x65,0x20, +0xa3,0x34,0x95,0xe2,0x55,0x72,0x0b,0xad,0xd0,0xf3,0x25,0xed, +0xd0,0xcf,0x67,0x35,0x83,0x6c,0xca,0xad,0xc6,0x15,0x77,0x96, +0x29,0xc7,0xab,0x9f,0xe3,0x54,0xa6,0xca,0x5b,0xa1,0xb6,0x3b, +0xb1,0xb6,0xb2,0x4b,0x5d,0xda,0xe5,0x85,0x3a,0x32,0x26,0x56, +0x6b,0x0f,0x08,0x19,0x1f,0x73,0x97,0x58,0x36,0x49,0x0e,0xb2, +0x5d,0x90,0x1d,0xa3,0x0b,0xb2,0xb1,0xaa,0xe6,0x0b,0x3d,0xa5, +0x6f,0x3d,0xf6,0x5e,0xd7,0xf3,0x34,0xcf,0xa9,0xd6,0xce,0xd2, +0x0b,0xdb,0xb9,0xeb,0x23,0x86,0x10,0x16,0x90,0x1d,0x1c,0x6f, +0xf9,0x07,0x65,0x64,0xdb,0xa5,0xca,0x1e,0xdf,0xfb,0x91,0x23, +0xbf,0x96,0x26,0x2e,0xf9,0x19,0x20,0xa9,0xb1,0xec,0xf1,0x54, +0xeb,0xa1,0xa3,0xf3,0x10,0xa5,0x61,0x6e,0x53,0x5d,0xc3,0x87, +0xca,0x08,0xc2,0xe6,0x3f,0x74,0xf4,0x93,0x49,0x58,0x88,0x3c, +0xcf,0x62,0xce,0x1b,0x97,0xbe,0xb4,0x02,0x0c,0xe9,0x43,0xf9, +0x9b,0x4f,0xab,0xcb,0xd2,0xa2,0x13,0x96,0x47,0xfc,0x73,0xa5, +0x1e,0x37,0x3e,0x3b,0x33,0xa7,0xd0,0xbc,0x6f,0xd0,0x3f,0x95, +0xde,0x53,0x26,0xc1,0xda,0x9e,0x96,0xe3,0xa8,0xaa,0x17,0x7f, +0x71,0xa2,0x48,0x8f,0x1e,0xbf,0x4e,0xf7,0xad,0x57,0x8d,0xb9, +0x17,0xec,0x9c,0x75,0xba,0x2c,0x9f,0x56,0xe1,0x2a,0xcb,0x7e, +0x32,0x4c,0x9d,0x24,0x06,0x4f,0xa9,0xd2,0x3e,0x1d,0x21,0x17, +0x2a,0xf2,0x98,0x98,0xc2,0xdd,0x54,0x06,0xe7,0xd4,0x9b,0xa2, +0x1b,0x6f,0x72,0x9c,0xad,0x82,0x8d,0x44,0x96,0xdf,0xbc,0x23, +0xf6,0x10,0x59,0x9e,0xc6,0xac,0x23,0xab,0x0c,0xb2,0x9f,0x18, +0x8c,0xd0,0x0e,0xf6,0xd5,0xaf,0xde,0x52,0x14,0xe9,0x25,0x0e, +0xab,0x29,0x44,0x8e,0xd7,0x3c,0x43,0x26,0x7c,0x22,0xf7,0xd0, +0x91,0x5d,0x47,0xb9,0x9d,0x1b,0xc3,0x1f,0xa7,0xf2,0xba,0x3e, +0x5d,0x95,0xae,0x1b,0x1d,0xa3,0xf6,0x95,0xbc,0xf5,0x48,0xfa, +0xd1,0xc4,0x93,0xa6,0xc7,0xe5,0xf0,0xee,0xc4,0x0a,0x43,0x7c, +0xd0,0x47,0x33,0xa6,0x4c,0x99,0x7a,0xce,0xb8,0x2a,0x23,0x2a, +0x21,0x3a,0x26,0x62,0x95,0x11,0xe5,0xd4,0x2d,0x87,0xd3,0xb2, +0x4f,0x99,0xcf,0x96,0xc3,0x3b,0x13,0xbf,0x31,0xc4,0xf7,0x5f, +0x38,0xa3,0xcf,0x80,0xbc,0xd7,0x90,0xa6,0x1f,0x3a,0xba,0x33, +0xdb,0xfe,0x92,0x6c,0x8a,0xa0,0x75,0x31,0x7c,0x91,0x7a,0x37, +0xfd,0x72,0x56,0x0c,0x59,0xca,0x35,0x87,0xd0,0x68,0x40,0xb2, +0x1c,0x2c,0x5f,0x61,0xb7,0xe0,0x4f,0x55,0x74,0x1b,0x0a,0xfd, +0x71,0xb9,0x0b,0x2f,0x11,0xbc,0xf2,0x73,0x82,0xf7,0x0f,0xee, +0x32,0x9e,0x3d,0x85,0xcd,0xb4,0x1f,0xa2,0x2e,0xa1,0xfa,0xbc, +0x12,0x29,0x5c,0xcd,0xd7,0xec,0xae,0x9c,0x8c,0x1b,0x20,0x15, +0x37,0xc0,0x97,0xa1,0xda,0xc6,0x01,0x72,0x03,0xb4,0xc5,0x37, +0x4b,0x2b,0x0c,0x75,0x58,0xfa,0xbc,0x4a,0xfb,0x9c,0xb0,0xb4, +0x88,0xde,0xcf,0x84,0xfd,0xb4,0xfc,0x3b,0xc5,0x61,0x00,0xca, +0xa3,0x31,0xb0,0xbe,0xd5,0xf9,0x2a,0xed,0x3c,0xb5,0x9a,0xc5, +0x5d,0x7d,0x99,0xf8,0x04,0x57,0x86,0xbe,0x72,0x5b,0x8e,0xa0, +0x76,0x47,0xbe,0xa5,0x46,0x55,0x0e,0xfb,0xce,0x1f,0xd2,0xf5, +0xc4,0x41,0x94,0xb9,0x60,0x5d,0x63,0x39,0xec,0x47,0x6d,0x18, +0xed,0xc6,0x1e,0x0c,0x99,0xcc,0x2d,0x35,0x1c,0x45,0x90,0xb0, +0xe8,0x08,0x5b,0xd0,0xf2,0xa3,0x69,0xd9,0xf9,0xe6,0x03,0x23, +0x16,0x2b,0x83,0x17,0xcc,0xe8,0x38,0xd2,0xd2,0xea,0x0b,0x14, +0x50,0xd6,0x85,0xa3,0x64,0x1a,0x8d,0xeb,0xbc,0xf3,0x58,0x7a, +0x76,0x9e,0xf9,0xe3,0x11,0x4b,0x95,0xbe,0xbc,0x59,0x47,0x56, +0x50,0x78,0xfc,0x50,0x8e,0x49,0xf7,0x05,0x26,0x8b,0xdc,0xe6, +0xc6,0xaa,0xa2,0xa2,0xe3,0x07,0xb3,0x5f,0x46,0x2d,0x37,0x18, +0x0b,0x4a,0xea,0x97,0xfc,0x59,0x95,0xf6,0x4c,0x9f,0x8c,0x3a, +0x59,0x0c,0xfe,0x47,0x95,0x56,0xc6,0x5d,0xf3,0x09,0x5c,0x4a, +0xc0,0xcd,0x2d,0x43,0x50,0x59,0x52,0x44,0x61,0xac,0x0a,0x93, +0x3a,0x8e,0xec,0xd6,0xf5,0xe9,0x48,0x31,0x49,0x4c,0xfc,0xb1, +0xf2,0xfb,0xef,0x3a,0x55,0x52,0x72,0xaa,0xb7,0x60,0x80,0x3a, +0x63,0xdc,0x0c,0xdd,0x61,0xbb,0xb0,0xd0,0xb2,0x51,0x29,0xba, +0x58,0xa0,0x3b,0x6c,0xcf,0x9c,0x6e,0x21,0xbe,0xf5,0x59,0xb5, +0xc1,0xba,0x58,0xec,0xe6,0xae,0x5b,0x98,0x9e,0x86,0xda,0x66, +0x05,0xf9,0x2a,0x05,0xd6,0x40,0x4e,0xd2,0x0b,0x6b,0x97,0x8a, +0xef,0xd5,0xa2,0x59,0x25,0xa5,0xd9,0xb9,0x7b,0x4e,0x99,0x52, +0x92,0x75,0x7a,0x60,0x87,0x7b,0xb2,0xa8,0x20,0xfb,0xf8,0xbe, +0x13,0x64,0xae,0x9a,0xb2,0x56,0xd8,0x23,0xbd,0x2c,0xcc,0x47, +0x02,0x61,0x87,0xc7,0x3f,0x51,0xb7,0x63,0x47,0xfe,0xbd,0xed, +0x58,0xd6,0xf1,0x3c,0xf3,0xef,0x67,0x21,0x61,0xc2,0x2d,0x43, +0xfc,0x90,0xc5,0x53,0x43,0x42,0x46,0xdf,0x34,0x46,0xe9,0x56, +0xe0,0xd1,0x36,0x02,0x71,0x34,0x2d,0x27,0xcf,0x5c,0x45,0x2d, +0x90,0x40,0x24,0x74,0x9d,0x3b,0xb9,0x53,0x77,0x7b,0x11,0xa9, +0x27,0x75,0xf7,0x44,0x50,0x36,0xc0,0x6d,0x55,0xf8,0x0e,0x81, +0x81,0xf5,0x21,0x59,0x5c,0x82,0xd8,0x26,0x32,0x77,0x19,0x60, +0xe3,0x78,0xb1,0xb8,0x1f,0xb8,0x4b,0x30,0x4b,0x24,0x0f,0xd0, +0xd7,0x18,0x55,0x07,0x42,0x37,0x15,0xe2,0xb0,0xfd,0x26,0x91, +0x6f,0x18,0x02,0x61,0x78,0x78,0xc5,0x10,0x3a,0xac,0x38,0xdb, +0xa3,0xfa,0x6c,0x53,0x39,0x4b,0x63,0xb8,0xa9,0xee,0x88,0x46, +0x5c,0x69,0x41,0x31,0xfb,0xbd,0x78,0xcb,0x63,0x34,0x5f,0x17, +0xbd,0xfe,0x9e,0x8e,0x8d,0xea,0x7f,0x33,0xd8,0xe4,0xad,0x3e, +0xa3,0x60,0x6a,0xeb,0xb9,0x49,0x23,0x4e,0x57,0xad,0x37,0x3c, +0xc4,0x5d,0xef,0xd2,0x75,0xf9,0x9e,0x7f,0x33,0xd8,0x3c,0xaf, +0x5d,0xf8,0x2b,0x9b,0xf6,0x12,0x30,0x73,0xf3,0x52,0x24,0xfe, +0x23,0x18,0xf8,0x2f,0x65,0x3e,0xb6,0x00,0x6c,0x91,0x77,0x45, +0xb1,0xcf,0xaf,0x8a,0xbf,0x8f,0x0a,0x1f,0xfc,0x4a,0x06,0x99, +0xd5,0x5a,0x3f,0xb5,0x60,0x5a,0x65,0x59,0xc1,0xa9,0x43,0xa7, +0x79,0x33,0x1f,0x06,0xad,0x8d,0x95,0x67,0xf3,0x4f,0x7e,0x72, +0x22,0x23,0x23,0x33,0x3e,0x9d,0x58,0x24,0x27,0x16,0xd9,0x46, +0xb8,0xe9,0x36,0xda,0x91,0x36,0x79,0x7b,0xe7,0xf1,0xb4,0x13, +0xa5,0xbc,0xd5,0x3d,0x96,0x19,0x4e,0x76,0xdb,0x61,0xb6,0xb2, +0xf4,0x93,0xc5,0x75,0xac,0xd2,0xc7,0x90,0xd0,0x65,0xf6,0x28, +0x70,0xef,0x6a,0xff,0x36,0xd8,0x73,0xa7,0x67,0x4c,0xbc,0xc5, +0xc4,0x92,0x57,0xdb,0x6a,0x4d,0x18,0xb7,0x0f,0x42,0x6c,0x7d, +0xcf,0x7c,0xb4,0x42,0xe6,0xc3,0x9d,0x2f,0xb2,0x9f,0xe0,0x09, +0x65,0xe6,0x09,0xd2,0xc3,0xd2,0xb8,0xce,0xa3,0xb4,0x52,0xa3, +0xff,0xcb,0x05,0x70,0xe2,0x8b,0xa1,0xac,0x5a,0x1b,0xab,0xe6, +0x13,0x4b,0x3f,0x71,0xf0,0xa4,0xa9,0x4e,0x86,0x6f,0x07,0x2d, +0x8d,0xd7,0xcb,0x91,0x7f,0xe6,0xa6,0x67,0xe8,0xfc,0xb3,0x03, +0x18,0x6d,0x2c,0xbd,0x69,0x44,0x46,0xf8,0xba,0x70,0xee,0xf0, +0x2d,0xdb,0x99,0x93,0x76,0xbc,0xd8,0x9c,0x28,0x7c,0x2e,0xc0, +0xed,0x71,0x7f,0x2a,0x09,0xbd,0x17,0x4c,0x45,0x3e,0xff,0x83, +0xce,0xe7,0x23,0xa2,0x6c,0x81,0xff,0x77,0xe6,0xa4,0x1f,0x2f, +0x34,0xff,0x69,0x3d,0xc3,0x12,0xba,0xcf,0x0a,0x02,0xb5,0x3b, +0x02,0xde,0x48,0x0d,0xe2,0xde,0xf6,0x94,0xb1,0xb1,0x19,0x14, +0x72,0xe3,0x9f,0x08,0x80,0x2f,0xc9,0x14,0xe5,0x05,0xa7,0x0f, +0xe5,0xe9,0xb8,0x6a,0x6b,0xac,0x3c,0x9f,0x7f,0xea,0xc0,0x49, +0x12,0x27,0xd2,0xeb,0x5c,0x3e,0x4a,0x70,0x6c,0xf7,0xc8,0x4c, +0xc4,0x15,0xb7,0x1b,0xc8,0x76,0xe8,0xb6,0xf4,0xc9,0xc2,0x9b, +0xd0,0xf2,0xa7,0xd2,0x65,0xc1,0x24,0xdf,0x41,0x16,0x1f,0xdd, +0xa0,0xde,0x86,0xc8,0xdc,0xf4,0x93,0xa5,0xe6,0xc4,0x3a,0xac, +0x29,0x09,0x1d,0x66,0x07,0x80,0x7b,0x67,0x1c,0xdc,0x45,0xed, +0xc2,0xac,0x8d,0xa0,0x83,0x1c,0x86,0xc3,0x86,0xd0,0xbc,0x4b, +0xf2,0x4f,0x1e,0x3a,0x59,0x2f,0x37,0xe8,0xf3,0x2e,0x43,0x51, +0xe6,0x38,0x8e,0xbd,0x4e,0x9f,0x77,0x0b,0xdb,0xbc,0x9d,0xff, +0x9a,0x77,0x76,0x5a,0x6e,0xb1,0xb9,0x6e,0xda,0x86,0x84,0x3e, +0x0b,0xa6,0xf8,0xfa,0xbf,0x9c,0x76,0x58,0x94,0x2e,0xde,0x64, +0xa7,0xe7,0xda,0xa6,0x1d,0xdf,0x1d,0x45,0x1b,0xb5,0x27,0x8e, +0xcc,0x70,0xe4,0xfa,0x3b,0xf2,0x3d,0x24,0xd0,0x08,0x0a,0x33, +0xe9,0xda,0x8c,0xc4,0x98,0x18,0x14,0x63,0x38,0x5b,0xf8,0x7f, +0x75,0x45,0x2e,0xbf,0x65,0xd6,0x0f,0x64,0x90,0x5a,0x34,0xfb, +0xcc,0xd5,0xec,0xc2,0xbd,0xa5,0xa6,0x24,0x70,0x25,0x0f,0xde, +0xe2,0x0b,0x39,0x05,0xfb,0x8a,0x93,0xe8,0xf8,0x12,0x7f,0xf7, +0x35,0x16,0xe5,0xa1,0xb4,0xee,0xbd,0x2a,0x33,0x82,0xcc,0xcd, +0xa3,0x75,0x73,0xf3,0xbc,0xcc,0xa2,0x0b,0xe6,0x74,0xd1,0xa0, +0x02,0x92,0x43,0x6e,0xc5,0x29,0x6d,0x97,0x8c,0x1e,0x3d,0xc8, +0x12,0xf8,0x38,0x3a,0x33,0x92,0x3c,0xd1,0xf4,0x1b,0xb7,0xad, +0xa7,0xd3,0x0b,0xce,0x9b,0x33,0x2b,0x2b,0x20,0x29,0x44,0x34, +0x5c,0xad,0x40,0xd3,0xb9,0xa3,0x90,0x7c,0x59,0xa2,0x21,0x90, +0xfb,0xb4,0x64,0x17,0xb9,0xf7,0x6b,0xcc,0xb9,0xce,0x3e,0xf6, +0x8e,0xc8,0xe7,0xae,0x31,0x78,0x0e,0x6c,0x16,0xb0,0x0e,0xea, +0x68,0x2d,0x0b,0xd6,0x54,0x8b,0x0a,0x05,0x5b,0x58,0xbb,0xe1, +0x91,0x1a,0x21,0x32,0x55,0xdd,0x9e,0xf5,0x74,0xca,0xfa,0x94, +0x04,0x9d,0xd0,0x78,0x18,0x8b,0x8a,0xb2,0x4f,0xec,0x3d,0x95, +0x6c,0xbb,0x99,0xb2,0x27,0x59,0x91,0x08,0x8d,0x53,0x74,0x46, +0x64,0x92,0x2e,0x89,0x10,0xa4,0xc7,0x33,0x4f,0x14,0x99,0x93, +0x7f,0x3f,0x0f,0xf1,0xa1,0x55,0x4a,0x42,0xdf,0xa5,0x13,0x83, +0x03,0x47,0x57,0x1b,0xa3,0x75,0xeb,0xf8,0xe8,0x18,0x23,0x2e, +0xf1,0xe6,0x1c,0xc2,0xf1,0xfa,0x4a,0x6a,0xf2,0xa7,0xe2,0x33, +0x77,0x7c,0xe7,0x4e,0x16,0xed,0x9b,0x6e,0xe2,0x05,0x03,0x0d, +0x2e,0xab,0x62,0xc6,0x10,0x98,0x5b,0x47,0x64,0xe0,0x00,0x39, +0x32,0x77,0x57,0xb9,0xf7,0x73,0x3d,0x30,0x5a,0x9e,0x2e,0x98, +0x7c,0xcb,0x60,0x30,0x01,0x3e,0x0c,0xec,0x55,0xd8,0x4c,0xe5, +0x9b,0xc4,0x35,0x24,0x30,0xc9,0x44,0x60,0x42,0xea,0x08,0x4c, +0x2a,0x4e,0xe2,0x43,0x31,0x89,0xb3,0x0d,0xe4,0x04,0xf2,0x37, +0xfb,0xdd,0xc6,0xfa,0xcc,0xfd,0x78,0xeb,0x75,0x14,0x07,0x83, +0xa4,0xe7,0x68,0x6e,0x92,0xec,0x25,0x66,0xca,0xb8,0xcb,0x61, +0x14,0x9a,0xbb,0x90,0x81,0xee,0xd0,0xf6,0xed,0x9f,0x0c,0xd1, +0x0d,0x74,0xef,0x3e,0x7f,0xde,0xb9,0xda,0x66,0xa0,0x1b,0xc4, +0x7d,0x2c,0xac,0xfc,0x7c,0x29,0x7c,0xcb,0xa6,0x4c,0xb4,0x38, +0x73,0xd6,0x8b,0x0d,0xe4,0xc6,0x9e,0xac,0x66,0x85,0xb6,0x5d, +0xe5,0xcd,0x76,0xb0,0x2b,0x8a,0x9c,0x28,0x96,0xf1,0x16,0xbd, +0x58,0x32,0xec,0xa5,0x9c,0x50,0xe9,0xd6,0xa5,0x4c,0x6b,0xcd, +0xe4,0x04,0xb1,0xff,0x12,0x5b,0x59,0xdb,0x93,0xc5,0xd5,0x2e, +0x42,0x59,0x28,0x96,0x1b,0x86,0xd2,0x5b,0x9f,0xa8,0x22,0x7a, +0x88,0xdc,0x78,0x97,0x02,0xa8,0x5d,0x56,0xb0,0xd5,0x62,0x39, +0x91,0x71,0x3b,0x4f,0xb6,0x32,0x52,0xa4,0xb2,0xce,0x90,0xc1, +0x1d,0x38,0xc3,0xd3,0x37,0x78,0xc3,0x52,0xe8,0x63,0x07,0x03, +0x0d,0x4b,0x45,0x9f,0x21,0xe4,0xfd,0xff,0xe2,0x2b,0x32,0xca, +0x79,0x83,0x8c,0x72,0xa2,0x6f,0x6b,0xb9,0x7e,0xb0,0x16,0x95, +0xdd,0x15,0xfe,0x72,0xdb,0x2d,0x03,0x2c,0xd6,0xe2,0xb9,0x63, +0x1e,0x2b,0x95,0xa1,0xdc,0xde,0x95,0x71,0xb7,0x95,0x0c,0x3e, +0x90,0x1f,0x52,0xfb,0xa5,0xa8,0x4b,0xaf,0x65,0x7e,0xbc,0x29, +0x45,0x05,0x5e,0xac,0xfd,0x93,0xb7,0xd8,0xc0,0x66,0x42,0x2a, +0x57,0xb0,0x59,0xb3,0x91,0xa4,0x3b,0x88,0x2e,0xbd,0x99,0xe0, +0x0a,0x5c,0x14,0x81,0x5c,0x19,0xcf,0x20,0x44,0x98,0xc2,0x32, +0xc2,0x92,0xc2,0x22,0x4d,0x2b,0xa3,0xe2,0x92,0x77,0x73,0xa7, +0x62,0xd6,0x11,0x0e,0xa8,0x5a,0x18,0xac,0xaa,0x16,0xe5,0xb2, +0x82,0x02,0x33,0x7c,0xc3,0x34,0x0e,0x79,0xaa,0xf4,0xf8,0x75, +0x98,0x6e,0xd5,0x13,0x2e,0xbe,0xb6,0x85,0x34,0xf1,0x10,0x0d, +0x34,0x0f,0x83,0xf3,0x8b,0xc6,0x5a,0x85,0x7a,0x19,0x2c,0xc2, +0x7b,0xa8,0xac,0xad,0x16,0x6f,0xe3,0x08,0x9e,0x34,0xc2,0xe8, +0xff,0xed,0x08,0xaa,0x07,0xa3,0x2e,0xff,0xcf,0x73,0xb7,0xd9, +0xf4,0xbc,0x07,0x5e,0x62,0xa6,0xbf,0xb5,0xea,0x96,0x28,0x17, +0x5e,0xf0,0xf9,0x2d,0xf2,0xc4,0x0e,0x08,0x55,0x61,0xe5,0x58, +0xb1,0xd2,0xd0,0x01,0x1e,0xa8,0xab,0x63,0x56,0xaf,0x27,0xcb, +0x8b,0x33,0xd7,0x38,0xc7,0x03,0xd7,0x5b,0x8c,0x88,0xcc,0x0a, +0x4f,0x59,0x19,0x65,0x12,0xb7,0xe7,0xab,0xe2,0x35,0x7c,0xe9, +0x35,0xc5,0x59,0x7b,0xa2,0x19,0x28,0x03,0x57,0xc7,0x2a,0x2d, +0x9f,0x82,0x30,0xb7,0x12,0xea,0x08,0x99,0x5e,0x65,0x80,0x85, +0x5a,0x14,0x77,0xef,0xcc,0x46,0x4a,0x03,0x37,0xcc,0x60,0xdc, +0xd1,0x81,0xed,0x96,0x53,0xb8,0xf3,0x07,0x4c,0x38,0x30,0xb1, +0x17,0x22,0xb9,0xdd,0x03,0x5c,0xab,0x2c,0x86,0x32,0xcd,0xaf, +0xdc,0xa9,0x8f,0xfe,0x3c,0x04,0xb9,0x93,0xd3,0x4f,0x64,0xf2, +0x9a,0x7b,0xdb,0x20,0x9b,0x8a,0x38,0xae,0xee,0x61,0x65,0x75, +0x2b,0x61,0xb7,0x8a,0x89,0xfb,0x10,0x26,0x37,0xfe,0xad,0x5e, +0x0d,0x45,0x4d,0x7d,0xf8,0x4d,0x6d,0x1b,0xf7,0xde,0xc5,0xc0, +0x0c,0xe5,0x6a,0x5a,0x7a,0x56,0x7c,0x7a,0x2c,0x0a,0x24,0x2d, +0x8c,0xdc,0x7c,0x9f,0xd9,0x23,0xae,0x7f,0xe4,0x06,0x3b,0x4a, +0x28,0x3f,0x1e,0x4c,0xc1,0x82,0xc2,0x13,0xe8,0x7f,0x3c,0x3e, +0xd5,0xca,0x15,0xf8,0xf1,0x03,0xde,0xc2,0x95,0x0d,0x83,0x7d, +0xbc,0xe9,0x5d,0xc4,0xdc,0xb7,0x6c,0x9f,0x9c,0x4c,0x40,0xd6, +0x4c,0x63,0xdb,0x65,0x14,0x6f,0x72,0x59,0x2f,0x9c,0x0a,0x6f, +0xf0,0x26,0x8f,0xc9,0xb8,0xa6,0x93,0x5a,0xad,0xd5,0x0e,0x85, +0x89,0xc8,0x5d,0xd8,0x3c,0xdc,0x06,0x3b,0xb4,0x2e,0xd4,0x81, +0x38,0x01,0xf7,0xb8,0xd3,0xc2,0x3a,0x6b,0xd3,0xb2,0x5b,0x5a, +0x99,0x02,0x1b,0x65,0x13,0xb5,0x6d,0xe8,0xcf,0x14,0x8c,0xf0, +0x60,0x00,0xbc,0xd7,0x6e,0xfc,0x4f,0x06,0xf0,0x17,0xeb,0x79, +0xb3,0x2a,0x46,0xa7,0xb5,0x23,0x70,0xdd,0xd6,0xc3,0x2d,0x22, +0x93,0x37,0x9b,0xc8,0x4e,0x64,0x21,0xd7,0x5c,0xc8,0xda,0xbe, +0x16,0x0c,0x1e,0xa0,0x58,0x8a,0x5e,0xab,0xbc,0x50,0x58,0x78, +0xf0,0xb4,0x89,0x37,0x8f,0x64,0xd3,0x60,0x37,0xb7,0xff,0x1e, +0xf7,0xe2,0x64,0x96,0x2f,0xc3,0xb8,0xb2,0xb7,0x6e,0x9c,0xdc, +0x5b,0x5a,0x2e,0xa5,0xe8,0x6a,0xc8,0xd5,0x37,0xd9,0x62,0x39, +0x9b,0x2b,0x95,0xd8,0xc8,0xcc,0xb4,0x37,0xe1,0x04,0x57,0xa2, +0x74,0xc3,0x16,0xc8,0x12,0x73,0xd5,0x36,0xa1,0xbf,0xf8,0xdc, +0xd0,0x76,0x22,0x14,0x6d,0xc7,0xff,0x6c,0x80,0xe1,0xff,0x23, +0x28,0xc4,0x3d,0xca,0x4a,0x36,0x1f,0x17,0x62,0x13,0xb3,0x36, +0x80,0x7f,0x88,0xcf,0x90,0x98,0x3b,0x33,0x78,0x04,0x7d,0x78, +0x93,0x24,0x46,0x49,0xb4,0x64,0xa0,0xb8,0xc4,0xdd,0xc6,0x52, +0x12,0xad,0xaf,0x28,0x89,0x16,0x6f,0x5d,0x46,0x65,0x49,0x2a, +0x64,0x8d,0x17,0x59,0x06,0xe9,0x86,0x22,0x49,0xe9,0xac,0x2f, +0x4f,0xf1,0x66,0xf9,0x2c,0x56,0x8c,0x6e,0x6b,0x2c,0x2d,0x80, +0xe1,0xdf,0xad,0x48,0x0b,0x4f,0x5c,0x49,0xbc,0x3f,0x36,0x79, +0xd7,0xfe,0xcc,0x03,0x49,0xc7,0x4c,0x62,0xdc,0x39,0x39,0x6d, +0xbc,0x98,0x60,0x88,0x19,0x39,0x69,0x26,0xf8,0xfa,0xd9,0x6b, +0xc7,0xba,0xf1,0xe6,0x3b,0xd9,0x4f,0xfe,0xde,0x7a,0x44,0xc0, +0x5e,0xba,0xb5,0x0a,0x34,0x86,0x39,0xea,0x87,0x61,0xb1,0xa8, +0x82,0x1c,0xcb,0xcc,0x29,0x30,0xef,0x1b,0xfc,0xa1,0xd2,0x6b, +0xca,0x64,0x88,0x47,0x15,0x64,0xbc,0x30,0x97,0x3c,0x38,0x51, +0x7c,0xc2,0xb4,0x39,0x6d,0x33,0x25,0xb0,0xda,0x0d,0xee,0xc6, +0x9c,0xf3,0xb0,0x41,0xd8,0x2f,0x4b,0x8b,0x4a,0x58,0x11,0x6e, +0x72,0xe6,0x9e,0xc5,0x0c,0x96,0xd6,0xb8,0xa8,0xb0,0x26,0x54, +0xac,0x31,0xc0,0x6f,0xa8,0x70,0x96,0xfd,0xe3,0x66,0x6e,0xd1, +0xe1,0x43,0x47,0x4c,0x19,0xa9,0x99,0xeb,0xd2,0xe3,0x44,0x8f, +0x0e,0xc6,0xb2,0x3c,0xe8,0xfa,0x35,0x6f,0xb3,0x81,0xed,0xcd, +0xf8,0x38,0xf9,0x90,0x49,0x0c,0x38,0x27,0x3b,0x8d,0x17,0x03, +0x0d,0xd1,0x63,0xa6,0xce,0x00,0xf7,0x91,0xf6,0xda,0x6b,0x64, +0xde,0xd2,0x78,0x24,0x4a,0x27,0x76,0x7e,0x2c,0xb8,0x76,0x1d, +0xd9,0x7a,0x6f,0xe2,0xad,0xe7,0xd9,0xd2,0x6f,0x2d,0xd5,0xf2, +0x79,0x0b,0x3f,0xd6,0x6e,0x2f,0x13,0xf6,0x23,0xc1,0xc9,0x1a, +0xc1,0x3e,0x85,0x71,0xdc,0xf4,0x02,0x6b,0x67,0x53,0xed,0x69, +0xde,0x62,0x18,0xeb,0x3e,0x81,0xfd,0x32,0xb2,0xd5,0x8b,0x63, +0x4c,0xbc,0x07,0x4b,0xb9,0xdb,0x7a,0x8a,0xa4,0xfa,0xe0,0x2e, +0xaa,0x7f,0x70,0x3b,0x92,0xb7,0x18,0xce,0x7c,0x79,0xe3,0xd3, +0xec,0x99,0x7f,0x5b,0x5b,0x1c,0xa2,0x6f,0x28,0xc5,0x56,0x5f, +0x52,0x89,0xdf,0xa9,0x46,0x95,0xf8,0x81,0x9e,0x73,0x80,0xe2, +0xea,0xde,0xd6,0x2e,0x72,0x3b,0x41,0x37,0x7c,0xd5,0x7f,0x4b, +0x9f,0x55,0x57,0xfa,0x00,0xc2,0xc5,0x08,0xa6,0x3d,0xa9,0x49, +0x41,0x08,0xaf,0xab,0xc7,0x27,0x0b,0x8f,0xd3,0x8f,0x8e,0x9d, +0x39,0x6a,0x4a,0x4c,0xdc,0xba,0x61,0xe7,0xba,0x2d,0x31,0x26, +0x94,0x0d,0xed,0x72,0xcb,0x60,0xcf,0xaf,0xcb,0x52,0x57,0x26, +0xac,0x8c,0xe4,0x0e,0xb3,0xd8,0x41,0xee,0xf0,0x29,0x13,0xfb, +0x0d,0xe1,0xc1,0x83,0xe7,0xc0,0xfb,0xa3,0xec,0xb5,0x4c,0x70, +0x54,0xbf,0x1d,0xee,0x0b,0xa1,0xf4,0xdf,0x9a,0x8e,0x94,0x04, +0x73,0x8e,0xaa,0xa5,0xc0,0x9c,0x6a,0xb1,0x8d,0xa2,0x49,0x63, +0xff,0xf1,0xd8,0xff,0x1d,0xea,0xdf,0x33,0xff,0xd1,0xb1,0xd2, +0x1c,0xd3,0xd6,0xd4,0x1d,0xeb,0x36,0xc7,0x60,0xe7,0x0e,0xc6, +0xdc,0x72,0xd8,0xf3,0x3b,0xf5,0xbe,0x22,0xca,0xf4,0x61,0x78, +0x6c,0x12,0x6f,0x63,0x44,0x2d,0xc0,0x10,0x3e,0x7a,0xf0,0x6b, +0xb0,0x28,0x80,0x7a,0x77,0x53,0x7f,0x1e,0xde,0x16,0x42,0xe9, +0x3f,0xea,0xbd,0x11,0x18,0x79,0xeb,0x77,0x99,0x75,0x2b,0x6d, +0xb8,0xfb,0xbc,0xc9,0xc7,0x4c,0x28,0x24,0x3d,0xcc,0xb7,0xae, +0xad,0x9f,0xca,0x15,0x1a,0xaa,0xe5,0xe9,0x47,0x47,0x79,0x73, +0xc9,0x68,0x18,0x3b,0x7d,0x98,0x5f,0x96,0xaf,0x5f,0xb1,0x0e, +0x37,0xd5,0x07,0x61,0x71,0x49,0xfb,0xf6,0x66,0xed,0x4b,0x3e, +0x68,0x9d,0xcc,0xc2,0x42,0x06,0xfd,0x03,0x16,0xda,0xa6,0xc1, +0x5b,0x4b,0x86,0xe2,0x58,0x52,0x2d,0x4a,0xb6,0x76,0x1b,0xc8, +0x0f,0xc6,0x59,0x94,0x21,0x99,0xea,0xc7,0xba,0x51,0x56,0xb0, +0xef,0xea,0x75,0xeb,0xc3,0xb0,0x60,0x8a,0x58,0x30,0xbb,0xba, +0xa6,0x89,0x02,0xf7,0x12,0x78,0x0b,0x7f,0x06,0xb9,0x28,0x2b, +0x7b,0x6c,0x62,0x1b,0x63,0xca,0xac,0x1f,0xb2,0x5e,0xb0,0x9c, +0x32,0x7f,0x8d,0xb9,0x23,0xd6,0xd0,0x52,0x68,0x6b,0xc4,0x14, +0x54,0x50,0x17,0xf4,0xad,0xae,0x99,0x35,0x54,0xde,0x54,0x60, +0xbd,0x46,0x89,0x7c,0x26,0x8a,0x8d,0x06,0xa9,0x42,0x89,0x5a, +0x32,0xfb,0x61,0xce,0xd9,0x83,0xc7,0x0e,0x99,0xb2,0x36,0x6c, +0x4a,0xc8,0x8a,0x15,0x63,0xba,0x91,0x67,0xf7,0xf0,0x2f,0x96, +0x6f,0x08,0x5f,0x17,0x16,0x6d,0x5a,0x19,0x1d,0x9b,0xb4,0x73, +0x5f,0xe6,0xc7,0x49,0xb8,0xd3,0x26,0x94,0xcb,0x19,0x13,0xc5, +0x24,0xc3,0xea,0x90,0x49,0x73,0xe0,0xd5,0x20,0x7b,0xf1,0x2e, +0xe4,0xe3,0xc8,0x66,0x1a,0xf9,0xdc,0x28,0xdc,0x6a,0x7d,0x50, +0x2f,0xbc,0xc4,0x5b,0xbf,0x83,0x52,0x70,0x2d,0xdb,0x0c,0x52, +0x15,0x66,0x2d,0xec,0x82,0xac,0x80,0x59,0x74,0xe5,0x40,0x51, +0x7c,0x9a,0xfe,0xc1,0xa4,0xbf,0x3a,0x43,0xbc,0x33,0xa7,0x5a, +0xbb,0x3a,0x54,0x2e,0x56,0xac,0x4e,0xa8,0x3f,0x17,0xcd,0xf9, +0xf2,0xc8,0xb9,0xfd,0xd9,0x07,0x4c,0x59,0xa9,0x9b,0xd7,0x6d, +0x8c,0x15,0xc1,0x7d,0x8d,0x85,0x79,0x10,0x50,0xbd,0x3c,0x15, +0xe5,0xbd,0x55,0xa6,0xe5,0x51,0x71,0x89,0xdb,0x77,0x66,0xee, +0x4a,0xd9,0x6b,0x12,0x93,0x4a,0xe4,0x8c,0xa9,0x62,0xa2,0x21, +0x7c,0xc6,0xf8,0xb7,0xa0,0xdd,0x44,0x82,0x21,0x1d,0x61,0x70, +0xe2,0x96,0x7e,0x2c,0x4e,0xfa,0x72,0xcb,0x0c,0x24,0x36,0x35, +0x99,0x75,0x33,0x14,0xeb,0xcb,0x54,0xb9,0xb5,0x0e,0x61,0x9a, +0x55,0xb1,0xce,0x84,0x2f,0xb9,0xaa,0xb0,0xd1,0xd2,0xce,0x96, +0x99,0x2c,0x95,0x32,0x93,0x85,0x92,0x79,0x4f,0x4b,0xdd,0xbc, +0xc7,0xfb,0x00,0x93,0x09,0x7a,0xfb,0xb7,0xab,0xb5,0xc7,0xd4, +0xfe,0x53,0x6e,0xe4,0xcc,0x36,0xc7,0x33,0xa3,0x98,0x9e,0x8f, +0x6c,0x28,0xc4,0xaa,0xb2,0xcf,0xfd,0xff,0x45,0xda,0x7b,0x07, +0x54,0x75,0x2c,0x8f,0xe3,0x16,0xee,0x39,0xb0,0x02,0x82,0x7a, +0x14,0x2e,0xeb,0xa5,0x63,0x6f,0xb1,0x77,0x51,0xc0,0x46,0xb3, +0xf7,0x8e,0x5d,0xa3,0xb1,0x8b,0x8a,0xbd,0xa1,0x26,0x2a,0x6a, +0x2c,0x51,0x63,0x62,0x8d,0x46,0x8d,0xbd,0x24,0xf6,0x1e,0x1b, +0x20,0x6a,0x8c,0x9a,0xaa,0x89,0xc6,0x92,0x98,0xc4,0x39,0x97, +0xd9,0xcb,0xfb,0xcd,0x9c,0x8b,0x9a,0xbc,0xcf,0xfb,0xbc,0xf7, +0xbe,0x9f,0xdf,0x1f,0xca,0xde,0xdd,0x9d,0xd9,0xd9,0xd9,0xd9, +0xd9,0xd9,0x3d,0xb3,0x3b,0xcd,0x70,0x8c,0x15,0x8f,0x6c,0x4b, +0x8c,0x86,0x23,0x3d,0x54,0xed,0x6f,0xcc,0xda,0x16,0xbb,0xa7, +0x18,0x9d,0x60,0x58,0xa3,0x5b,0xce,0x4a,0x8d,0xd5,0x0e,0x1d, +0xdf,0x33,0xb7,0x5b,0x63,0x74,0x95,0xa8,0xac,0xf5,0x6a,0x8c, +0x60,0x37,0x2e,0x32,0xc6,0x2f,0x9d,0x3e,0x7f,0x62,0xda,0xf8, +0xc9,0x01,0xa4,0x2f,0x3e,0xd9,0xbe,0xfc,0xd3,0xfd,0xf6,0x8f, +0x1a,0x4f,0xd4,0x9b,0x74,0xea,0x8e,0xf3,0x1b,0x3a,0x76,0xb5, +0x83,0xc0,0x43,0xf7,0x76,0x1d,0xdb,0x1d,0xb8,0x68,0xa1,0xe5, +0xbf,0x45,0xd3,0xe1,0x23,0xf4,0xda,0xc5,0x0f,0x02,0x86,0xd5, +0x17,0x1d,0x6f,0x3a,0x6d,0x4d,0xd4,0x07,0xec,0x5f,0xd4,0x46, +0x06,0x6c,0x73,0x8b,0x80,0xe4,0xd0,0x69,0xa7,0x18,0xfd,0x3b, +0x18,0xc5,0xde,0x46,0x49,0xb5,0x6a,0x3e,0x4e,0xb6,0xbc,0x8d, +0xce,0x7d,0xf7,0x6d,0xc5,0xf3,0xec,0x6d,0xd4,0x07,0x2b,0x18, +0x7d,0xda,0xf4,0xb5,0x9e,0x8f,0xda,0xb7,0xdf,0xb1,0x42,0x3f, +0x70,0x6e,0xaf,0xf5,0x7c,0x54,0xbf,0xde,0x0e,0x76,0xb4,0x79, +0x91,0x65,0xbe,0xd0,0x55,0xfd,0xe9,0xb2,0xe8,0x18,0xd1,0x3d, +0xd3,0xfc,0x5e,0x6a,0xd3,0xd8,0x45,0x7e,0xf3,0xdf,0xa2,0x9f, +0xd5,0x9f,0x25,0x8d,0xdb,0x9c,0xbd,0x8a,0xa3,0x9f,0x95,0x15, +0xae,0xd2,0x96,0x3f,0x4d,0x09,0x76,0x06,0xea,0x91,0x69,0xfe, +0x16,0xab,0x16,0xeb,0x58,0xd7,0x7c,0xd7,0xc0,0xc9,0xed,0x61, +0xb2,0x86,0x3f,0xe1,0x46,0xe3,0x58,0xbf,0xeb,0x3b,0x8f,0x6e, +0xd9,0xbe,0x8d,0x34,0xd9,0xca,0x05,0x2b,0xe6,0x40,0xe5,0xda, +0x01,0xc7,0xf7,0x63,0xc5,0x5b,0x32,0x22,0x5e,0x7c,0xf4,0xee, +0xa6,0x40,0xa8,0x75,0x42,0x05,0x77,0x84,0x3a,0xda,0xd4,0x4e, +0x5d,0x7a,0xa3,0x7f,0x3b,0x4f,0x88,0xc1,0xf3,0x7f,0x09,0xa5, +0x56,0xdf,0xfc,0x99,0xd0,0x75,0x20,0x74,0xef,0xaa,0x04,0x6e, +0xe8,0x35,0x75,0xcd,0x89,0xba,0x37,0xd1,0xd5,0xea,0x9b,0x4e, +0xa6,0xdd,0x8a,0xae,0xe6,0xa6,0x7d,0x2f,0xc7,0x57,0x23,0x05, +0x96,0x7b,0xcb,0xcc,0x25,0x05,0x36,0x5b,0xfa,0x97,0x16,0x78, +0xdc,0x12,0xfc,0x33,0x6e,0xc1,0x5f,0xc9,0x42,0x97,0x50,0x99, +0x05,0x3f,0xf6,0x9b,0x7c,0xc1,0x4f,0x9d,0x36,0xc7,0x2d,0xf8, +0x3b,0x64,0x78,0x7f,0x31,0x2b,0xb1,0x43,0x1f,0xac,0xde,0xd2, +0x13,0x86,0xe1,0x52,0x23,0xe7,0x85,0x74,0xd4,0x11,0x95,0xb0, +0xbb,0x8c,0xac,0xff,0x2a,0xfa,0xda,0x0d,0xf3,0x91,0xd4,0xc6, +0x0b,0x2a,0x7f,0xf7,0x5f,0x04,0x6e,0x93,0x25,0x47,0x0a,0x98, +0x5c,0x36,0xeb,0x19,0x0c,0x2c,0x9b,0xf9,0x0c,0x26,0x5f,0xe0, +0x8d,0xdf,0xe4,0x7c,0x9d,0x61,0xe0,0xe9,0xc4,0xbc,0x5d,0x7c, +0xbc,0x48,0x8a,0xc3,0x71,0xe8,0xbb,0x9d,0xc7,0x77,0x07,0x7e, +0xb0,0x74,0x7d,0xfa,0x9a,0xd9,0xa4,0x3c,0xf4,0x00,0xd6,0x80, +0xbf,0x4f,0x58,0x22,0x1d,0xbf,0x8b,0x04,0x52,0x4b,0xef,0xb4, +0xf0,0x4c,0x2a,0x6b,0x24,0x42,0x7b,0x0c,0xce,0x82,0x60,0x38, +0xe0,0xfe,0xd3,0xfe,0x02,0x6f,0xe5,0xd6,0x59,0xba,0xe3,0x53, +0xd6,0x4d,0xfd,0x69,0x31,0x74,0xad,0x62,0x13,0xe3,0x94,0x14, +0xd7,0xc4,0xeb,0x30,0x89,0x5f,0xa5,0x49,0xc3,0x97,0xf5,0x75, +0x34,0x87,0x44,0xac,0x2c,0x5c,0x8d,0x89,0xf8,0x3b,0xce,0x8a, +0xd2,0x2b,0x54,0xe0,0xf7,0xc6,0x89,0xee,0xdf,0x1c,0x3a,0xbb, +0x73,0xd7,0xae,0xc0,0x15,0xc4,0x94,0x15,0xb3,0x20,0x21,0x2c, +0xe0,0xc4,0x51,0x8c,0xfb,0x65,0x92,0x7b,0x45,0x9c,0x34,0x95, +0x56,0xc4,0x6d,0xcb,0x3f,0x61,0xa7,0xb1,0x76,0x67,0x55,0xcf, +0x36,0xd0,0x51,0x9b,0x1d,0xd3,0xa1,0x1b,0x56,0x6f,0xe4,0x69, +0x9e,0x6f,0xa4,0x48,0xd7,0x3f,0xc7,0x5d,0x06,0xc4,0x34,0xc6, +0x24,0xf3,0xb4,0x70,0xc6,0x0b,0xfc,0x53,0x19,0xd2,0xd1,0x43, +0x98,0x13,0x05,0x7e,0x35,0x43,0x16,0x29,0x20,0x54,0x6d,0x7c, +0x2c,0xf5,0x42,0x82,0x83,0xaa,0xe1,0x57,0x73,0xa4,0xed,0x27, +0x11,0x27,0x7d,0x4e,0x8b,0x25,0xc9,0xae,0xf1,0x22,0x13,0x3b, +0x1b,0xaa,0xc6,0xa3,0x66,0xf8,0xbe,0x75,0x30,0x78,0xa9,0xa9, +0x86,0xef,0x79,0xa8,0x1a,0x4f,0xf9,0x89,0xb4,0xfc,0x78,0x6b, +0x5f,0x39,0x0b,0x73,0x17,0x9a,0x63,0x8a,0xf3,0x02,0x73,0xff, +0x1e,0xe7,0x99,0x37,0x18,0x35,0x06,0xd5,0x94,0x5a,0x26,0xe9, +0xcc,0xce,0xa2,0x16,0xd9,0x9b,0xde,0xec,0x35,0x2f,0x5c,0x97, +0x70,0x89,0xb1,0xaf,0x9d,0x0d,0x3e,0x85,0x02,0x4f,0x7f,0x82, +0x5a,0x76,0xe9,0x7b,0x49,0x98,0xdf,0xe3,0x22,0x68,0xc0,0xae, +0xf7,0x51,0x87,0x64,0xd0,0x09,0x81,0x03,0x65,0xe9,0xdf,0xb9, +0xb6,0x8a,0x3a,0x05,0xb4,0x2b,0xf9,0x9c,0x8d,0x2e,0x32,0x17, +0x8a,0x9c,0x16,0x65,0x5d,0x51,0xea,0x4f,0x21,0x4b,0x7d,0x28, +0x42,0x5d,0x0d,0x39,0x50,0x47,0x29,0x32,0xec,0xba,0xaa,0xb6, +0xae,0x4a,0x1c,0x05,0x65,0xcd,0x1a,0x0b,0xbc,0xbf,0xfa,0x96, +0xa3,0xa0,0xbc,0x76,0x8f,0xc7,0x35,0x1b,0xe1,0x3b,0x81,0x9f, +0xb8,0x9a,0x4a,0xfd,0x8a,0x80,0x1f,0x29,0xe3,0x7d,0x59,0x72, +0xb3,0x15,0x33,0x6d,0xcd,0x7a,0x03,0xfc,0x55,0xc9,0x78,0xb8, +0xda,0x22,0xaf,0x82,0xc0,0x67,0xa9,0xcb,0x5a,0x43,0xf6,0xc6, +0x7e,0xf5,0xcb,0xc5,0x63,0x72,0x93,0xc0,0x7d,0xed,0x99,0x52, +0xed,0xe9,0x13,0x68,0x68,0x5f,0xa3,0xb6,0xe7,0xda,0xf2,0x8d, +0xe3,0x01,0x18,0x0e,0x9d,0x62,0x5c,0x99,0x59,0x70,0x1e,0xc2, +0xf1,0x1b,0x36,0x8e,0x5d,0x03,0x64,0x10,0xa9,0xbb,0xf7,0x54, +0x29,0x7e,0x3f,0x28,0x9c,0xdf,0x0f,0x32,0x7f,0x80,0x1c,0x03, +0xca,0xe2,0xf0,0x4c,0x67,0xa5,0x58,0xac,0x8d,0x65,0xa1,0x5c, +0xac,0x4b,0x23,0xe3,0xb7,0xae,0xd9,0xd6,0x00,0x3f,0xfc,0x2e, +0x11,0x56,0x37,0xe7,0x56,0xf7,0x4f,0xce,0x48,0x80,0xb5,0x1f, +0x0d,0x6e,0x54,0xa7,0x35,0x56,0x8e,0x0e,0x3c,0xd4,0xd9,0x06, +0xa9,0x60,0xfb,0xfe,0x09,0xd4,0xb4,0xc3,0x95,0x11,0xec,0xe1, +0x52,0x96,0x3d,0x5c,0x76,0xab,0x67,0xf8,0x8e,0x30,0xaf,0x09, +0xec,0x2c,0x3d,0xae,0x88,0xdf,0x0d,0xf0,0x52,0x46,0x02,0x5c, +0x4d,0x74,0x9d,0x16,0xf8,0xeb,0xc4,0xe5,0xf1,0x90,0xb5,0xb1, +0x6f,0x6c,0xf9,0x76,0x64,0x42,0xf8,0x92,0xfd,0x56,0x42,0x45, +0xba,0xfe,0xb0,0x3c,0xcd,0x07,0xab,0x10,0x32,0x42,0xa4,0x37, +0x31,0x61,0xa7,0xea,0x84,0xef,0x12,0x2b,0x37,0x8b,0x66,0xea, +0x80,0xc5,0x4a,0x9d,0xaf,0xef,0xfc,0x40,0x0c,0x8c,0xe2,0x77, +0x8b,0x5b,0x24,0x40,0x0b,0x2c,0xee,0x7e,0x6b,0x33,0xe2,0x16, +0xbb,0x5a,0x9c,0xc0,0x66,0x06,0x14,0x55,0xfe,0xf1,0x70,0xb1, +0x95,0x3e,0x39,0x7d,0xca,0xfc,0x29,0x0e,0xfc,0x25,0x75,0x79, +0x6b,0xb8,0xba,0xb1,0x5f,0xe3,0x0a,0x49,0x98,0xd8,0x2c,0x70, +0x3f,0xb1,0x69,0x1b,0x14,0x7a,0xf2,0x33,0xd4,0xb1,0xe3,0x26, +0x35,0x58,0xbd,0x45,0x78,0x47,0xd0,0x76,0x52,0xfa,0x36,0xb2, +0xfc,0xc6,0x71,0x8d,0x5a,0x6b,0x58,0xa1,0x4d,0x8a,0x87,0x27, +0xfd,0x8e,0x3e,0xa1,0x49,0x7f,0x72,0xd0,0xa9,0x4e,0xec,0x57, +0x90,0x99,0x0c,0x0b,0x9b,0x5b,0x88,0xd3,0x1c,0xb8,0x65,0xf2, +0xd2,0x44,0x58,0xbc,0x61,0x48,0x74,0xc3,0x04,0x8c,0x8c,0x09, +0x3c,0xd4,0xc5,0x46,0xbb,0xb7,0x82,0xf7,0x1f,0x43,0x65,0x3b, +0x26,0xa9,0xfe,0x6e,0x07,0x71,0x5c,0xb9,0xd1,0xb8,0xee,0xd4, +0xe2,0x30,0x2c,0x24,0xe9,0x25,0x96,0x90,0x1e,0x20,0x60,0x00, +0x33,0x34,0x33,0x11,0x16,0xc4,0x11,0xaa,0xc9,0xf3,0x27,0x3b, +0x70,0xf3,0xe4,0x8c,0x44,0x78,0x77,0xc3,0xd0,0x46,0x0d,0x5b, +0x63,0x64,0x93,0x7c,0x54,0xb6,0xfb,0x4f,0xa1,0x86,0x3d,0xca, +0x25,0x72,0x8f,0x90,0x1e,0xc8,0x12,0xd5,0x48,0x8a,0xdc,0xb1, +0x54,0xc8,0x20,0xcf,0x90,0x01,0x75,0x04,0xd6,0x76,0xd5,0xe0, +0xe5,0x68,0x05,0x7c,0xab,0x2e,0x68,0xb7,0xe2,0xf9,0x30,0xbd, +0x0f,0x1f,0xa6,0xb3,0x6f,0x38,0x55,0x4a,0x95,0x01,0x75,0x05, +0xdc,0x51,0xe3,0xf3,0xc3,0xab,0xe0,0xca,0xdb,0x86,0x75,0x2f, +0xad,0x38,0x13,0xe3,0x23,0x8b,0x76,0x13,0x4c,0x49,0x12,0x53, +0x32,0x29,0x9f,0x92,0x29,0x34,0xbc,0xef,0x6e,0x18,0xd2,0xa8, +0x21,0xf1,0x34,0x3a,0x9f,0x12,0xed,0xfe,0x13,0xa2,0x04,0x92, +0xd5,0x87,0x79,0x23,0x68,0x3c,0x68,0xa7,0x73,0x5b,0xed,0xcf, +0xeb,0x94,0xef,0x07,0x8e,0x2b,0x37,0x11,0xd6,0xd4,0x38,0x2c, +0xc6,0x58,0xbd,0x2c,0xac,0x3e,0x8c,0x75,0x61,0x4b,0x7d,0x8a, +0x0c,0xdd,0x27,0x3e,0x1a,0xd2,0x54,0xfa,0x8f,0x17,0x8c,0xea, +0xe5,0xfd,0x47,0x50,0xd1,0x0e,0x3e,0xaa,0x00,0xc7,0x69,0xf1, +0x1e,0xc0,0xa7,0x26,0x57,0x9c,0x2f,0xac,0x64,0x14,0x96,0xe3, +0x17,0x41,0xf5,0x5f,0x85,0xaa,0x77,0x8c,0x76,0x91,0x69,0x19, +0x6d,0x4c,0xdf,0x35,0x73,0x7b,0xcf,0xea,0x3b,0xad,0x4f,0x60, +0xe6,0x0c,0xdb,0xba,0xfb,0xef,0xdf,0x7b,0x62,0xbf,0xa3,0x5a, +0x25,0x9b,0x85,0x26,0xcb,0xa0,0x43,0x34,0xe7,0x7b,0x70,0xbc, +0x13,0x12,0x9a,0xfc,0x97,0x3c,0xad,0x0f,0xa4,0xc5,0x31,0x23, +0xcb,0xbc,0xae,0xab,0x26,0x34,0x35,0x65,0x31,0x81,0xb3,0xa5, +0xc7,0x61,0x01,0x8e,0x18,0x0c,0x33,0x6b,0x09,0xdc,0x43,0xfa, +0xcb,0xb3,0x97,0x70,0x16,0xe4,0x4f,0xa3,0xc5,0x5f,0xc7,0x48, +0x29,0xfe,0x2a,0x46,0x4a,0xaa,0xd9,0xcc,0xc0,0x7b,0xd4,0x34, +0x64,0xae,0x99,0xd3,0x63,0x56,0xcf,0x69,0x3d,0x03,0xaf,0x4d, +0xb7,0xad,0xff,0x61,0xc5,0x77,0x2f,0xec,0xf7,0x95,0x4f,0x12, +0x9c,0x9f,0xa4,0xbf,0x9d,0x3e,0x32,0x7d,0xa4,0x03,0xbc,0xf0, +0x5d,0xa3,0x75,0x5a,0xdd,0x99,0xd5,0xe7,0x78,0x42,0x44,0x0c, +0x96,0xd5,0xe7,0xb7,0x6b,0x9b,0xde,0x2e,0x68,0x49,0xbc,0x2c, +0x7a,0x84,0x26,0x36,0x7e,0xe1,0x0e,0x9f,0x92,0x21,0x20,0x30, +0x06,0x4b,0x73,0xe3,0x89,0xec,0x84,0x34,0x53,0xe4,0x4e,0x17, +0x90,0x65,0xe0,0xfd,0xa9,0x19,0x1d,0x20,0x6b,0xd5,0xdc,0xbe, +0xb3,0x52,0xa6,0xf7,0x0b,0xbc,0x3a,0xd3,0xb6,0xf6,0xf6,0x8a, +0xdb,0x0f,0xed,0x39,0xca,0xa7,0x2d,0x5c,0x98,0xa2,0x8f,0x4e, +0x1f,0x9b,0x3e,0xd6,0x01,0x9e,0x38,0xd4,0xdd,0xca,0x6c,0x4f, +0xf0,0x8b,0xe1,0xa8,0x32,0xbf,0x8b,0x24,0x1b,0x34,0x86,0x16, +0x2b,0x36,0x82,0x6f,0x30,0x76,0x56,0x21,0xec,0x54,0x5e,0x55, +0xf0,0x1b,0xa1,0x3b,0xb3,0x60,0x26,0x14,0x07,0x9b,0xe0,0xee, +0xf7,0x91,0xa5,0x0a,0x09,0x5c,0x87,0x7f,0xb2,0x63,0x39,0x31, +0x29,0xff,0x29,0xd2,0x25,0x59,0x30,0x9e,0x7a,0x3e,0x35,0xcb, +0xdc,0xc2,0xb5,0xda,0xc9,0x22,0x1f,0xf3,0xb1,0x69,0x37,0xa9, +0x7b,0x33,0x5b,0xba,0x30,0x5b,0x3e,0xcf,0x32,0xcd,0x18,0x5c, +0x4a,0x00,0xb3,0x62,0xd4,0x01,0x66,0x0b,0xfc,0x66,0x31,0x73, +0x9e,0xc5,0xcc,0xd0,0x18,0x8c,0x94,0xa1,0x97,0xc4,0x5d,0x7c, +0x9b,0x3d,0xd2,0x4d,0x5a,0x2e,0x2e,0x61,0x4f,0x29,0x7d,0x39, +0xb6,0x84,0xdf,0x62,0xb2,0x7a,0x9a,0x62,0x69,0x7d,0x3e,0x7f, +0xe9,0xe5,0xa8,0x2f,0xad,0x31,0xc6,0x72,0x04,0xc5,0x2f,0xcd, +0xae,0x34,0xae,0x93,0x97,0x26,0x98,0x45,0x3f,0x98,0xdb,0x73, +0x66,0x2f,0x62,0x6e,0x36,0x31,0xf7,0xc7,0x15,0x3f,0xfc,0x4e, +0xcc,0x8d,0x8f,0x37,0x0b,0xa7,0x11,0x73,0x47,0x30,0x73,0x6b, +0xd0,0xfe,0x99,0x31,0x05,0x37,0xc5,0xb0,0xd7,0x98,0xf0,0x17, +0x3c,0x6e,0x4e,0x27,0x09,0xac,0xc2,0xdf,0xf7,0x0b,0xc3,0x7e, +0x91,0x77,0x48,0xe0,0x45,0x78,0x20,0x4b,0x5e,0x16,0x99,0xe5, +0xa4,0xf6,0xa9,0x15,0x7a,0xe6,0xa2,0x59,0xdb,0xa2,0x65,0x96, +0x51,0x33,0x0d,0x0b,0xcc,0x44,0x2f,0x1a,0x20,0xd9,0x14,0x83, +0xdd,0x78,0x82,0x38,0x30,0x45,0x1c,0x8e,0xcd,0x0f,0x3e,0x73, +0x11,0xf2,0x64,0xc9,0x4b,0xb4,0x02,0x54,0x85,0x16,0x02,0x8a, +0x90,0x8d,0x4b,0xe4,0x6d,0x59,0x3f,0xa7,0xd7,0xcc,0xbe,0xd3, +0xfb,0x30,0x79,0x1b,0x7e,0x7e,0xff,0x01,0x78,0xd8,0xbf,0x54, +0x3f,0x26,0x98,0xab,0xf5,0x81,0xe9,0x83,0xe7,0x0f,0xe1,0xab, +0x87,0x1f,0xca,0xf0,0x95,0x82,0xc3,0xd9,0xe9,0xb4,0x73,0x18, +0xc4,0x71,0x68,0x66,0xde,0x82,0x93,0xbc,0x73,0x20,0x24,0x0f, +0x65,0x70,0x5d,0x91,0x4c,0xd5,0x87,0xa7,0xbf,0x3d,0x7f,0x04, +0x57,0x9f,0x6e,0x90,0xad,0x55,0x99,0xfe,0xa5,0x54,0xe3,0xf3, +0xc3,0x97,0xb8,0x81,0x1b,0xbb,0x66,0x2c,0x4d,0x32,0x37,0xcb, +0xc8,0x2d,0xe2,0x21,0x35,0x52,0x90,0x1b,0x49,0x34,0x57,0xe9, +0x83,0xa8,0x91,0xa1,0x0e,0x24,0x55,0x44,0x83,0xd1,0x8c,0x54, +0x5c,0x65,0xf7,0x9f,0x94,0x70,0xfe,0x84,0x5a,0x2e,0x77,0x20, +0xc3,0x7e,0xc5,0xb0,0x5b,0xd6,0xce,0x61,0xf1,0x49,0x09,0xbc, +0x41,0x7c,0xfc,0xfe,0xfd,0xef,0xff,0x90,0x7e,0xf7,0xc5,0x90, +0xf4,0xa1,0xf3,0x87,0x33,0xf8,0x52,0xa9,0x1f,0x17,0xe5,0x79, +0x9b,0x31,0x0d,0xae,0x32,0xcc,0x25,0x63,0x69,0xa2,0xb9,0x79, +0xdd,0x9c,0x5e,0xb3,0x5e,0x75,0xee,0xa7,0xf7,0x1f,0x42,0xe1, +0x57,0xed,0xe6,0x77,0x4e,0xe0,0x07,0xdc,0x39,0x7e,0x64,0x47, +0x57,0xfe,0xb8,0x05,0x49,0x8c,0x7d,0xda,0xf1,0xc6,0xa2,0x24, +0x94,0xa7,0xa9,0xba,0x5b,0xa0,0x86,0x0b,0x71,0xcd,0x1d,0x01, +0xed,0xac,0xa7,0x39,0x40,0xa3,0x3d,0x46,0x07,0x53,0x37,0xa4, +0x6c,0xc8,0x2f,0x3a,0x7f,0x14,0x6f,0xe6,0x5e,0xc2,0x0d,0x50, +0xd8,0x7a,0xbd,0x75,0x08,0x19,0x52,0x3e,0x64,0xca,0x18,0xb5, +0xc4,0x46,0xd5,0x9c,0x2f,0x48,0x5a,0xdb,0x91,0x44,0xeb,0x53, +0x5f,0x9b,0x9b,0xe6,0x31,0x5d,0x2d,0x56,0x87,0xf9,0x13,0xa9, +0x2c,0x75,0x80,0x3f,0xf1,0x1d,0x51,0x2f,0xad,0xda,0x66,0x22, +0x3e,0x75,0x39,0x2d,0x27,0xf0,0xc1,0x46,0x07,0xa8,0x95,0x98, +0x69,0x5e,0x8d,0x55,0xdd,0xd8,0x25,0xc6,0x66,0x64,0x41,0x43, +0x4d,0x7a,0xf6,0x10,0xd7,0x33,0x32,0xef,0x49,0x07,0x75,0x7a, +0xe6,0xe0,0xdc,0x03,0x62,0x2e,0x6e,0xc7,0xae,0x56,0x1c,0xbd, +0x3e,0xec,0xa3,0xdd,0x3e,0xd3,0x3c,0x1e,0xab,0xda,0xe9,0xb8, +0x3c,0xd4,0x80,0x9a,0xba,0x2c,0xf5,0x44,0x60,0x35,0x7d,0x0d, +0xee,0x93,0xbe,0x81,0xd6,0xdb,0xa6,0x09,0x5c,0xab,0x83,0xf5, +0xb6,0x69,0x63,0xaa,0x15,0x66,0x40,0x35,0xaa,0xf5,0x54,0x60, +0x25,0xdd,0x5c,0x86,0xa1,0xf8,0xb6,0x78,0xfd,0x74,0x69,0x48, +0x7e,0xd5,0xcb,0xb1,0xaa,0x0f,0x93,0xe0,0x43,0x24,0xb4,0xd4, +0xf2,0xf6,0x89,0xd3,0x01,0x63,0xe7,0x8e,0x99,0xf7,0xce,0x5c, +0xcf,0xd5,0x99,0x19,0x59,0xf7,0x99,0x96,0x41,0x33,0x07,0x07, +0x4e,0x8f,0xc0,0x22,0x73,0x51,0x0f,0x5a,0x92,0x14,0x23,0xe0, +0x1f,0x78,0x15,0xc6,0xf0,0x3d,0x4f,0xd0,0xfe,0x46,0xd6,0xdd, +0x50,0x42,0x52,0x53,0x63,0xba,0xcc,0xf9,0xf8,0x18,0x24,0xc9, +0x76,0x27,0xb1,0x56,0x55,0x93,0xbe,0xa3,0x85,0xf3,0x31,0xec, +0x37,0x2e,0x63,0x39,0xfd,0xc3,0x5f,0x96,0x3f,0x01,0x4f,0x59, +0xd4,0x57,0xa4,0x66,0x24,0x9a,0x1f,0x7e,0x38,0xa7,0xeb,0xac, +0xee,0xd3,0xba,0x07,0xaa,0x1f,0x5b,0xc1,0x18,0xf4,0xc6,0xc2, +0xf1,0xe6,0x22,0x9c,0x7f,0x0b,0x2e,0x44,0x82,0xb7,0xd6,0x0c, +0xbd,0x0d,0x1c,0x03,0xde,0x56,0x20,0x99,0x20,0x1a,0xf4,0xc9, +0x58,0x32,0x1b,0x4a,0x42,0x8a,0xfb,0xcf,0x64,0x1a,0x8f,0x4e, +0xb8,0x3d,0x6f,0xa8,0x70,0x76,0x04,0x97,0xb1,0xfe,0xf1,0xf2, +0xc7,0xa0,0xd9,0x73,0x64,0x78,0x3b,0x91,0xc0,0x98,0xbb,0xcf, +0xea,0x31,0xbd,0x67,0xa0,0x7a,0xd0,0x8a,0xcc,0xc4,0xa6,0xd9, +0xd0,0x14,0xf6,0xb9,0xff,0xb4,0xbf,0xac,0xa9,0x62,0x98,0x0d, +0x3b,0x84,0x0c,0xfa,0x44,0x70,0xcb,0xef,0xa0,0x5d,0x93,0x21, +0x7b,0x68,0xae,0xeb,0x4d,0xd1,0x23,0xf7,0x09,0x2d,0xda,0x30, +0x41,0x7f,0x81,0x1b,0xa4,0xa3,0x1c,0x55,0x2a,0x2c,0xd0,0x33, +0x34,0xc1,0x7c,0xb7,0xa2,0x26,0xc3,0x7f,0x15,0xe0,0xa9,0x37, +0xe3,0x93,0xda,0x51,0xe0,0xc9,0xf7,0x42,0x55,0x3a,0x3b,0x15, +0x8d,0x36,0x66,0xbd,0x80,0x7e,0x30,0x1c,0x3f,0x4d,0x82,0x41, +0x51,0x98,0x82,0x0d,0xa5,0x9e,0x21,0x4c,0x6f,0xdc,0xae,0x5d, +0x69,0xcb,0x5f,0xd5,0x57,0x5b,0x5f,0xd5,0x3b,0xc0,0xef,0xc6, +0x87,0x4f,0x96,0x3f,0x05,0x2f,0xfb,0x4d,0x75,0x2f,0xc1,0xcc, +0x48,0xd7,0x7b,0xa7,0xf7,0x9b,0x97,0xe2,0x50,0x9f,0xa6,0x66, +0x24,0x98,0x1b,0x88,0x1d,0x33,0xbb,0x4d,0x27,0x76,0x3c,0x68, +0xe9,0x3c,0x73,0x85,0xc9,0x3c,0x23,0xbd,0x72,0xc4,0x81,0x15, +0x87,0x4e,0xd9,0x3f,0x69,0x30,0x52,0x8f,0xec,0x90,0x80,0x0b, +0x23,0x1c,0xfb,0x92,0xa1,0xe4,0x99,0xfb,0x87,0x8f,0x1d,0x0e, +0x5c,0xfc,0x2e,0x07,0xdf,0xf8,0x60,0x46,0x20,0x6c,0xc6,0x72, +0xfb,0xcf,0xe1,0x1a,0x70,0x48,0xff,0x14,0x91,0xf7,0x39,0xdf, +0x41,0xae,0x68,0x0c,0x98,0xdd,0x77,0x6e,0xcf,0xb9,0x9e,0x1f, +0x7c,0xb7,0xec,0xe1,0xef,0x32,0xa4,0x97,0x98,0xdb,0x7d,0x56, +0x2f,0xe2,0xc9,0x0c,0x2c,0x8a,0xc1,0x73,0x31,0xc8,0xad,0xd0, +0x3a,0x18,0xe6,0x62,0x7c,0xef,0x26,0x5c,0x53,0x5f,0x6b,0xbe, +0xa4,0xd9,0x2a,0xc0,0x42,0x02,0xec,0x33,0xb7,0xe7,0x1c,0xcf, +0xb5,0x3f,0x2e,0x7b,0xf0,0xa7,0xfd,0x91,0x6a,0x14,0x0f,0x7f, +0x4e,0xa0,0x29,0x45,0x93,0xd9,0xa1,0x7c,0x26,0x11,0xa9,0x05, +0xd6,0xcd,0x75,0xf3,0x77,0x06,0xfa,0xbe,0xc2,0x45,0x2a,0xed, +0x89,0xf4,0xfc,0x45,0x98,0x5b,0xf8,0x86,0x62,0xaa,0xc0,0xdf, +0x54,0x8c,0x74,0xf4,0xa5,0x75,0xe3,0x10,0xeb,0xb8,0xe2,0xd2, +0x71,0x90,0xd2,0x87,0xc5,0x75,0xf4,0x95,0xa5,0x27,0xe4,0x47, +0xd6,0x1a,0xf0,0xba,0xad,0x1f,0x96,0x3d,0xfc,0x93,0x89,0x9c, +0xd3,0x6d,0x56,0xcf,0xe9,0x3d,0x5e,0x11,0x69,0xb7,0xc2,0x4c, +0x0c,0x81,0xb1,0xef,0x6f,0x84,0x2a,0xc1,0xb1,0xb8,0x48,0x06, +0x22,0x3f,0xc8,0x4a,0xa0,0xa1,0xd2,0x5b,0x23,0x65,0x17,0x2a, +0xed,0x6f,0xb3,0xd7,0x7a,0xc6,0x6d,0x0d,0xb7,0xc1,0x13,0x19, +0xb4,0x5e,0x60,0x07,0xcb,0x02,0x0a,0x3c,0x2f,0xf0,0x0b,0xcb, +0xf0,0x32,0x97,0x0b,0xd5,0xfb,0x16,0x74,0x81,0x60,0x0d,0xb3, +0xb1,0x6c,0xde,0x27,0x7c,0x10,0xdf,0x4a,0xea,0x1d,0x85,0x2c, +0x5a,0x41,0xa8,0x5e,0xb7,0xa0,0x33,0x04,0x7f,0xa9,0x53,0xd9, +0x20,0x2a,0x83,0x06,0x58,0x0d,0x46,0x0a,0x93,0xe6,0xd5,0x55, +0x4c,0x75,0xbe,0x14,0xd0,0x16,0x9b,0x4a,0xcf,0x62,0x7c,0xdc, +0x3c,0x8b,0x8f,0xa7,0x07,0xdd,0x30,0x27,0x36,0xc5,0x81,0x18, +0x04,0x5d,0x9a,0xaa,0xbe,0x37,0x34,0x0c,0xf8,0x0a,0xe7,0x8a, +0x4b,0x68,0xa8,0x09,0x42,0x86,0xd0,0xce,0x2a,0x00,0xbc,0xe0, +0x36,0xc7,0xbc,0xf6,0x54,0xdd,0x38,0x1a,0x6d,0x21,0x01,0x1d, +0x20,0xa8,0x8f,0xd0,0xf1,0x67,0xcc,0xcd,0xfb,0x95,0xd4,0x98, +0x6a,0x9e,0xf7,0x0e,0xe9,0x9f,0x48,0x81,0xef,0x61,0x74,0x1e, +0x07,0x0c,0xbc,0xc1,0xaf,0xb3,0x8f,0x94,0xf6,0xa9,0x94,0xbe, +0xc5,0xe9,0xa1,0x32,0x70,0x85,0xc8,0xfb,0x8d,0xaf,0x60,0xc5, +0x4b,0xbd,0x35,0xbf,0x97,0xf5,0xad,0x39,0x94,0x4a,0x73,0xd8, +0x17,0x78,0x60,0x6e,0x84,0x50,0x05,0xc9,0xec,0x25,0xa3,0x29, +0x0d,0x72,0x5c,0xbd,0x19,0x69,0x00,0xcd,0x14,0xbd,0x0f,0x03, +0xd3,0x8a,0xb9,0x8f,0xaa,0x66,0xf3,0x57,0x91,0xad,0xb2,0x04, +0x5f,0xda,0xa5,0x55,0xbb,0x04,0x74,0xcb,0xbd,0x2c,0x20,0x12, +0x56,0x5d,0xc0,0x55,0x50,0x1a,0x36,0x5f,0xc4,0xa7,0x6a,0x80, +0x39,0x49,0xc0,0x4a,0xd8,0xce,0x06,0x6f,0x18,0x1b,0xbc,0x07, +0xd4,0x33,0xd5,0x44,0x98,0x8f,0xcc,0x48,0x03,0xc2,0xd0,0x2b, +0xd3,0x9c,0xc8,0x51,0x6f,0xc3,0xc0,0x83,0xd4,0x05,0x99,0xd1, +0x25,0x6e,0x1b,0xa9,0x31,0x91,0x53,0x51,0x0b,0x1a,0x06,0x81, +0xb0,0xfa,0x1c,0xae,0x86,0x62,0x1c,0x95,0xe5,0xa9,0x6a,0x75, +0x4f,0x83,0x52,0x50,0x60,0xe5,0xda,0xdb,0xc1,0x84,0xf0,0x63, +0x03,0xfd,0x08,0xca,0x4f,0x6f,0xaf,0x22,0x88,0x31,0xce,0x6e, +0xd2,0xe6,0x2f,0x70,0x24,0xb6,0x8a,0x87,0x56,0x1a,0x96,0x95, +0x72,0x2e,0xc7,0xb5,0xf1,0xe2,0x48,0xcf,0xde,0x55,0x04,0x5e, +0x56,0xf1,0x2e,0x8d,0x4f,0x91,0xb7,0x11,0x43,0x3f,0xcc,0x30, +0xb2,0xcc,0x0c,0x19,0xd4,0x8e,0x8c,0x63,0x8b,0x89,0x7f,0xcb, +0x8f,0xc1,0xe1,0xd2,0x96,0x2c,0xea,0x60,0xb4,0x31,0xfd,0x9c, +0x4d,0x96,0x6e,0x2c,0x48,0xfe,0xd7,0xaa,0x29,0x42,0x3a,0xd2, +0x49,0xd4,0x0c,0xe9,0xb5,0x5c,0x0c,0x87,0x50,0x38,0x74,0x01, +0x0f,0x81,0x1d,0xce,0x5e,0x54,0xbe,0xaa,0xd7,0x03,0xe9,0xf5, +0x99,0xc0,0x4c,0x8c,0x37,0xf7,0x53,0xbd,0x17,0x22,0x85,0x54, +0x7c,0xae,0xc0,0x61,0x16,0x05,0xce,0xae,0x30,0xc3,0xb8,0x65, +0x6e,0x91,0xf6,0x10,0x81,0x87,0xd1,0x0b,0x9e,0x11,0x51,0x25, +0x05,0xc4,0xca,0xd2,0x9e,0x5c,0x38,0x91,0x0a,0x77,0x73,0xe1, +0x84,0xf2,0xd0,0x27,0xff,0xa0,0x77,0x5f,0xb6,0xb9,0x4f,0xc7, +0x55,0x6a,0x3b,0x99,0x8c,0x6b,0xc9,0x10,0x45,0x8f,0x64,0xf0, +0x40,0x1f,0xeb,0x8f,0x86,0x7e,0x3d,0xa5,0xff,0x10,0x31,0x92, +0xf6,0xa5,0xf3,0x2f,0xe0,0x7c,0x62,0xcb,0xb2,0x8b,0x78,0x47, +0x75,0xb9,0xa1,0x81,0xd7,0xe3,0xe5,0x6b,0xae,0x05,0xd3,0x66, +0x26,0x56,0x95,0x61,0xbb,0x73,0x00,0xd9,0x9d,0x2b,0x96,0x10, +0x92,0xb6,0xd2,0x31,0x4f,0xc0,0xbc,0xb3,0x38,0x8f,0x14,0xd0, +0x8a,0x73,0x54,0xbd,0xac,0x49,0x1b,0x0a,0x9b,0xaa,0x9f,0xa7, +0xe7,0xb7,0xb9,0x2d,0xdb,0xdc,0xa6,0xe3,0x0a,0xb5,0x41,0x06, +0x7e,0x2b,0x38,0x90,0xa1,0xb2,0x4c,0xd7,0x87,0x8c,0xe2,0x2a, +0xa1,0x58,0xce,0x74,0xe8,0xc9,0xa0,0x13,0x1d,0xfc,0x47,0xc3, +0xe2,0xff,0x81,0x0e,0xa8,0x47,0x2b,0x6a,0x4d,0x46,0xb2,0x93, +0x91,0x7c,0x44,0x48,0xe6,0xc7,0xa1,0x7f,0xde,0x4b,0xd2,0x7a, +0xaf,0x50,0xf4,0x35,0xa4,0xcf,0x48,0xf1,0xac,0x2a,0x9f,0xa7, +0x34,0x2a,0x13,0xf1,0xb8,0x11,0x9f,0xa7,0x3c,0xba,0xfd,0xe2, +0x79,0xa5,0xdb,0x7c,0x9e,0xd2,0x8b,0xdf,0x2e,0x6e,0xd3,0x1e, +0x23,0x31,0x4a,0xfa,0x97,0x15,0x10,0x05,0x91,0x67,0x3b,0xb4, +0x75,0xf8,0x9a,0xe3,0xe1,0x47,0xe3,0x1e,0xac,0x3a,0x21,0x8b, +0x06,0x0a,0x48,0xaf,0xab,0xf4,0x76,0xce,0x33,0xa7,0xf9,0xf5, +0x7c,0x3f,0xbc,0x24,0x5c,0xed,0x04,0xac,0x72,0xfd,0x24,0x60, +0x81,0x2a,0x42,0xb6,0x00,0x49,0xac,0xf6,0x40,0x2c,0xa2,0xbc, +0xc9,0x54,0x57,0xca,0xd6,0x42,0x96,0x26,0xeb,0x3c,0xe9,0x2c, +0xaa,0xa7,0x70,0xf7,0x34,0xde,0x7b,0x0a,0xbf,0x9c,0x53,0x6f, +0x29,0x1b,0x44,0x97,0xd3,0xa5,0xaf,0x9f,0x50,0xb1,0x58,0xdf, +0x30,0x17,0xe0,0x90,0x1c,0xd8,0xaa,0x72,0x38,0x4a,0xc6,0x3a, +0xda,0x48,0xe2,0x17,0x86,0x39,0x19,0x7a,0xaa,0xcb,0xc9,0xe6, +0xcc,0xda,0x6a,0x0a,0x87,0x3b,0x37,0x77,0x5c,0x50,0xcb,0xf8, +0xda,0x9a,0x37,0xc7,0x17,0x8c,0x94,0xf6,0xcf,0xf9,0x28,0xfc, +0x07,0x3e,0x0a,0x37,0x53,0x85,0x3a,0x78,0x13,0x66,0xca,0xc0, +0x6b,0x22,0x1b,0x93,0x0c,0x55,0xc9,0xa4,0x79,0xbf,0xc0,0xf2, +0xca,0x58,0xe8,0xa1,0x2a,0xfd,0x62,0x56,0x22,0xc0,0xd2,0x37, +0xff,0x35,0x1d,0x65,0x74,0x59,0x92,0x26,0x7c,0xe9,0x5b,0x54, +0x7c,0x06,0xd5,0x13,0xb8,0x7b,0x0a,0xef,0xfd,0x02,0xbf,0x9c, +0x51,0x6f,0x61,0x1e,0x44,0x57,0xa1,0xe5,0xb7,0x1a,0x6d,0x02, +0x9a,0x89,0x17,0x5b,0xc4,0x03,0xa8,0x7d,0x1a,0xaf,0x3e,0x82, +0xfd,0x27,0x71,0xff,0xcf,0x70,0xfa,0x8c,0xf2,0xc2,0x97,0x50, +0xa9,0x92,0xaa,0x20,0x92,0xf3,0x16,0xf0,0xeb,0x30,0xa9,0xc6, +0x94,0xe5,0x53,0xd2,0xa7,0x4c,0x4d,0x9b,0x6e,0x7d,0xb0,0xde, +0x99,0xb1,0xcb,0xed,0xf4,0xd1,0x38,0xdf,0xe9,0x63,0x6a,0x86, +0x0c,0x1f,0x21,0x3e,0xfc,0x74,0xd9,0xee,0x83,0xf6,0x2d,0x31, +0xa3,0xf5,0xba,0xec,0xee,0x71,0xf4,0xf3,0xcf,0xb6,0xef,0x91, +0x91,0x71,0xc2,0xf2,0xf5,0xc8,0xfa,0xe2,0xe8,0x67,0x9f,0xec, +0x5e,0xbe,0x24,0x43,0x86,0xb6,0x15,0x52,0x5e,0x22,0xe5,0x96, +0x4d,0x3b,0x42,0xff,0x37,0x27,0x1f,0xe5,0xd5,0x88,0x81,0xe2, +0x31,0xb4,0x3d,0xab,0x0a,0x3c,0x85,0x6f,0x4f,0xe3,0x77,0x4f, +0xe1,0xf9,0x39,0x55,0x8b,0x3a,0xd3,0xb4,0x1c,0xb8,0xf8,0x48, +0xa4,0x3e,0x1f,0x89,0xb8,0x26,0x0a,0xd7,0x63,0x51,0x5d,0x9f, +0xcb,0x47,0x17,0xfe,0xd2,0xef,0x06,0x19,0x80,0xe9,0xb5,0xa5, +0xef,0x6c,0xeb,0x08,0xa3,0xbc,0xea,0x27,0xf5,0xad,0x7c,0x86, +0xf1,0x03,0x9f,0x61,0x10,0xf2,0x83,0xb7,0xcc,0x83,0x8c,0xbc, +0xfd,0x40,0xf1,0x10,0xda,0x9e,0x76,0x7d,0x2f,0xa0,0x69,0x25, +0x5d,0xb5,0xa6,0x6d,0x0d,0xf1,0xb4,0x06,0xf3,0x34,0x43,0x7a, +0x35,0x11,0xaa,0xc6,0x2f,0xee,0x43,0x0c,0xeb,0x0c,0xbc,0x3c, +0x14,0x62,0x3c,0xf7,0x30,0x0d,0x62,0x85,0xb3,0x08,0x7c,0x64, +0xfc,0x0a,0xda,0x79,0x19,0xde,0x46,0x3c,0x97,0xa5,0x75,0xce, +0x59,0x60,0xfc,0x09,0xda,0x45,0xb5,0xe4,0x77,0x73,0xd4,0x79, +0x35,0xfa,0x0f,0x73,0xc6,0x45,0x75,0x59,0x95,0x7e,0x1e,0x8a, +0xa3,0xc3,0x85,0x5a,0xf7,0x67,0x7e,0xc8,0xe5,0x32,0x28,0x8d, +0xc6,0x98,0x68,0xa6,0x8b,0x85,0x64,0x94,0x4c,0x16,0xcf,0xa4, +0xfd,0x1b,0x81,0x2f,0x28,0xad,0xe2,0xc4,0x33,0x55,0x4f,0x60, +0x34,0xfe,0xc3,0x2c,0x23,0xf2,0x2a,0x09,0xd0,0x49,0xe0,0x9e, +0xbb,0x26,0xf3,0x37,0xab,0xb7,0x5d,0xf3,0xb8,0x8d,0x8d,0xdc, +0xaa,0x0c,0xbb,0x2b,0x9e,0x45,0xe1,0x68,0x77,0x74,0x87,0x75, +0xbf,0x12,0xe6,0x28,0x0e,0xa4,0x18,0x86,0xef,0xe6,0x8d,0x16, +0xb9,0x8b,0xd8,0x47,0xb1,0x4c,0x63,0x51,0x89,0x0f,0xa1,0xf9, +0xa2,0x67,0xd8,0x76,0x81,0x33,0x38,0x3c,0xcf,0x06,0x81,0x1b, +0x8d,0x1b,0xe0,0x30,0x6b,0x8b,0x9a,0x98,0xc6,0x67,0xce,0xed, +0x73,0xe0,0x3d,0x3e,0x73,0x96,0xe1,0xa4,0xd3,0x6a,0xc3,0x32, +0x03,0xf3,0x7e,0x84,0xfb,0x27,0xf0,0x9b,0x07,0xf0,0xf4,0xb4, +0xaa,0x8e,0x4f,0xcc,0x58,0x0d,0x57,0xe1,0x2e,0x69,0x1f,0x20, +0x9c,0x9a,0xe8,0x76,0xd3,0x34,0x9b,0xa8,0xe5,0x3a,0x55,0x1d, +0x27,0x6d,0x71,0xe2,0x38,0x7e,0x7b,0x0f,0x9e,0x9d,0xa4,0x8a, +0x5f,0xe1,0x3d,0x81,0xeb,0xe1,0x94,0x58,0xcd,0xef,0xd3,0x87, +0x99,0x93,0xcf,0xa8,0xf3,0xd8,0x17,0x07,0x92,0x82,0x63,0xc4, +0xbd,0x5d,0x33,0x69,0x43,0x98,0x57,0x54,0x2c,0x54,0x35,0x8c, +0x1c,0x73,0x0e,0x24,0xa9,0xec,0xb6,0xe6,0xc2,0x68,0x35,0x07, +0x4b,0x4b,0xcf,0xa6,0x7f,0xab,0x25,0x8b,0x65,0x0a,0x19,0xf6, +0x29,0xd3,0xbc,0xf7,0x7f,0x69,0xa4,0xb5,0xf2,0x76,0x9f,0x06, +0xaf,0xe0,0xd3,0xe0,0xb6,0x7c,0x1a,0x1c,0xce,0xa7,0xc1,0x6e, +0x03,0x77,0x26,0x0e,0xef,0x0c,0xc3,0xfb,0xdd,0x34,0xef,0xeb, +0x84,0x63,0x87,0x49,0xfb,0xf5,0x0f,0xa8,0xdb,0xa5,0xf9,0xb0, +0xf5,0x64,0x40,0x6f,0x31,0x0d,0x87,0x06,0x2d,0xb1,0xce,0x85, +0x1b,0xe3,0x7c,0x43,0xd5,0xba,0xdf,0x0c,0x27,0x5a,0xe7,0xc2, +0x3b,0x68,0x22,0x8d,0xf1,0x50,0xb5,0xbe,0x35,0x6b,0x31,0x4b, +0xaa,0xf2,0x07,0xcb,0xc9,0x16,0xdb,0x8e,0x4b,0xa3,0x1e,0x33, +0xa0,0xe3,0x4d,0xd3,0xf5,0xef,0x18,0x20,0x0d,0x7e,0x22,0x7b, +0xb5,0xa8,0x02,0xef,0xc8,0x90,0x8f,0x04,0x6d,0x56,0xbc,0x0f, +0xd0,0xc2,0x56,0x88,0x32,0xd2,0x0c,0xbc,0x74,0x0f,0x3e,0x3b, +0x86,0x7b,0xee,0xc1,0x89,0x93,0xca,0x03,0x6f,0x99,0x45,0x35, +0x6c,0x40,0xeb,0x9d,0xbd,0x32,0x1b,0xbb,0xcf,0xd8,0xd8,0x7d, +0x62,0x74,0x86,0xda,0x7d,0x32,0x4d,0xb2,0xac,0x8b,0x08,0x5c, +0x2d,0xbd,0x5b,0x0b,0xd8,0xc8,0x3b,0xc8,0xb9,0x64,0xaf,0xfa, +0xe5,0xfd,0x2e,0x6e,0xa9,0x1a,0xd2,0x47,0x13,0xd6,0x2d,0xd3, +0x45,0x52,0x92,0x5a,0xad,0x8d,0x6b,0xfe,0x76,0xd4,0x5b,0x47, +0x4d,0x93,0xf2,0x3b,0xce,0x7f,0xd7,0x7d,0xd6,0x6b,0x1d,0xc6, +0xd6,0xf9,0xd5,0xaa,0x9c,0x46,0x95,0xdf,0x9c,0xbc,0xd6,0x01, +0xc1,0xed,0x59,0x27,0xaf,0xdc,0xde,0x56,0x3e,0x77,0xcd,0x3f, +0x1e,0x9d,0x02,0x07,0xa4,0xbe,0x8e,0x9f,0x34,0x4f,0xfb,0x17, +0xc7,0xa3,0x91,0xc2,0x55,0xda,0xaa,0x74,0xc7,0x50,0x85,0x1f, +0xc1,0xf7,0x27,0xf1,0xfb,0x47,0xf0,0xdb,0x19,0x55,0x07,0x4d, +0x93,0x96,0xcb,0xf7,0x71,0x87,0x34,0xc8,0x90,0x9e,0x42,0x9b, +0x7a,0x9e,0x22,0xe6,0x5d,0x8d,0x65,0x52,0x96,0xe6,0x8b,0xc5, +0xbf,0x8a,0x86,0x46,0x22,0x4c,0x2e,0x93,0xf5,0x1c,0x06,0x96, +0xc9,0x7c,0x9e,0x7f,0xb6,0x3a,0x85,0x05,0x7c,0x8a,0x19,0x4b, +0xf5,0xe3,0x85,0xf9,0xb5,0xe6,0xea,0x54,0xc7,0x3a,0x33,0x0d, +0xcd,0xa2,0xa5,0xf1,0x80,0xfb,0x8f,0xfb,0xcc,0xf4,0xc3,0x3c, +0x0b,0x73,0x82,0xa1,0x96,0xfc,0x62,0x8e,0x3a,0xab,0x46,0x3f, +0x36,0x67,0x9c,0x57,0x5f,0x2a,0x9b,0x05,0x55,0x9b,0x03,0x00, +0x74,0xc5,0xbd,0xd0,0x46,0x38,0x27,0x9b,0xc3,0x0c,0xd7,0x77, +0xc2,0x35,0x42,0x34,0x19,0xc3,0x17,0x2c,0x9b,0x00,0xfe,0x53, +0x26,0xb6,0xc3,0x73,0x30,0x93,0xd7,0xcc,0x44,0x5a,0x33,0xbf, +0x6e,0xac,0xa9,0x3f,0x54,0x39,0xc3,0x6c,0x71,0x56,0x46,0xc4, +0x09,0xad,0x83,0xfa,0x48,0xca,0x25,0x22,0xaf,0xb1,0xc0,0x45, +0x30,0xc8,0x35,0x57,0x74,0x39,0x26,0x9e,0x90,0x00,0xc6,0x8b, +0xfc,0x93,0xcd,0x85,0xb4,0x51,0xe0,0x9a,0xd4,0x76,0x0b,0xed, +0x69,0x42,0x03,0xd1,0x1c,0x07,0x38,0x2f,0x30,0xba,0x78,0x42, +0x77,0xcf,0x42,0x17,0x42,0xe8,0xce,0xc8,0x88,0xe6,0x8c,0x6e, +0x85,0x2c,0xb9,0x51,0x54,0x16,0x6a,0x0b,0xc1,0x76,0x91,0xf2, +0x3d,0x81,0x7b,0xf2,0x4d,0x8a,0x5d,0x42,0xe9,0x68,0x93,0x9e, +0x05,0xdc,0x69,0x83,0x4c,0x38,0xdd,0x9f,0xcc,0xa0,0x67,0x02, +0x9f,0x43,0xd5,0x15,0x02,0x17,0x63,0x14,0x7c,0x29,0xa4,0x97, +0x3f,0xd9,0x8e,0x37,0x61,0xbc,0xf2,0x10,0xd0,0xc8,0x49,0xfb, +0x9a,0x66,0x18,0x63,0x5c,0x54,0x37,0x12,0x74,0x73,0x78,0x67, +0xeb,0x4b,0x7d,0xb4,0xfb,0x4b,0x7d,0x74,0xe3,0x59,0x9f,0x60, +0x3d,0x1b,0x46,0x24,0x99,0x0f,0xcf,0x63,0x38,0xcd,0x8d,0x77, +0x04,0xd6,0x53,0xf5,0xf2,0x06,0x8a,0x5c,0x0f,0xf3,0xa0,0xe5, +0x0e,0x50,0xbd,0x89,0xab,0xe2,0x4d,0x18,0x59,0x4b,0x40,0x75, +0x1d,0x53,0xa0,0x8a,0x2c,0xd9,0xd9,0x32,0xe1,0x52,0xc0,0x8f, +0x5a,0xbc,0x86,0xdf,0x90,0x01,0x47,0x95,0x73,0xa8,0x72,0x30, +0x18,0x4d,0xd4,0xda,0x9b,0x64,0x9f,0x04,0xf3,0x8f,0x00,0x1d, +0xfb,0x81,0x03,0x8f,0x71,0x4c,0xc5,0x10,0xb7,0x51,0xf7,0x0d, +0x1b,0x75,0x7d,0xd8,0xa8,0xc3,0x1e,0xfc,0xd4,0x19,0x78,0x11, +0xde,0x12,0x8c,0x37,0x58,0xda,0xae,0x8b,0xef,0x70,0xa8,0xa1, +0x82,0xc0,0x16,0x8d,0xe7,0x2d,0x0f,0x85,0xdc,0x68,0x0d,0x8f, +0xb0,0x87,0x82,0x60,0x0f,0x05,0x3e,0x65,0x4d,0x81,0x30,0x59, +0xbc,0x2c,0x9f,0xc8,0x6e,0xba,0x09,0x61,0x35,0x38,0x83,0x5b, +0xc0,0x82,0x15,0x0d,0x4c,0xa8,0x52,0x3f,0x22,0xec,0xa7,0xfa, +0x90,0x00,0x09,0x0f,0xbf,0xfe,0xe3,0x45,0xd5,0xaf,0x31,0x21, +0x18,0x3a,0x63,0x7b,0xa3,0x6d,0xfb,0x36,0xb4,0x5b,0x0c,0x69, +0x77,0xf6,0x8c,0x63,0x8d,0x7e,0xf6,0xf4,0x19,0x08,0x81,0xd0, +0x53,0x6d,0xdb,0x38,0x7c,0x5f,0x9d,0xc1,0x86,0x4a,0x8f,0x3f, +0x05,0x84,0xba,0xcf,0x5f,0x11,0x6a,0xd0,0xaa,0x19,0x4f,0xeb, +0x64,0x65,0xd5,0xc0,0x20,0xfb,0xbb,0xd9,0xd2,0x51,0x68,0x0e, +0x9f,0x3f,0x6c,0xfe,0xb0,0xf4,0xc0,0x09,0xa0,0x9a,0xcd,0xde, +0x88,0xa6,0xf4,0xbb,0x28,0x12,0x6c,0x50,0x0d,0x9a,0x2c,0xfb, +0x08,0xb4,0xe0,0x99,0xe7,0x86,0xce,0x1e,0x38,0xa7,0xdf,0xdc, +0x40,0x98,0xfa,0x9c,0x4f,0x6d,0x43,0xf9,0xd4,0x96,0xcd,0xc3, +0xfa,0x02,0xc7,0x60,0xed,0x78,0xa8,0xad,0x61,0x5d,0x98,0x62, +0xe6,0x70,0xc8,0xef,0x2c,0x01,0xa9,0x01,0xcd,0x68,0x14,0x66, +0x61,0x34,0x19,0x47,0x4d,0x09,0xdf,0x4c,0x5b,0x7a,0xef,0xde, +0x0b,0xfa,0x04,0x2d,0x4d,0xc0,0x6f,0xc5,0x3a,0x08,0x0e,0xc6, +0x4f,0x54,0x31,0xe9,0x3b,0x8e,0x76,0x17,0xc3,0x04,0x36,0xc1, +0x11,0xd2,0xf6,0xb1,0x90,0xb6,0x4b,0x02,0xf7,0xaa,0x18,0x35, +0x8d,0xb2,0x0b,0xb2,0x7f,0xa6,0x4f,0xee,0x64,0x2b,0x09,0x0b, +0xf0,0x43,0x67,0x27,0x4a,0x16,0x12,0xb8,0x1c,0x63,0xc9,0xf8, +0x26,0xe9,0xfa,0x80,0xa4,0x6b,0x51,0x63,0x32,0x9e,0x6a,0x26, +0x42,0xcd,0x10,0xe9,0x71,0x49,0xc0,0x19,0xe9,0xbf,0x95,0xc4, +0x49,0x7a,0x7c,0x2e,0x60,0x0a,0x91,0x30,0x96,0x8f,0x8c,0x2e, +0x0a,0x58,0xd8,0x6c,0xf6,0x47,0x94,0xf4,0xab,0x23,0xa0,0xcb, +0xb2,0xf5,0x50,0x22,0x18,0x22,0x71,0xb7,0x34,0x56,0xd1,0x86, +0xb7,0x1d,0x47,0x3e,0xf4,0xb1,0x48,0xf1,0x27,0x76,0x07,0x62, +0xcd,0x04,0xa8,0x89,0x36,0xeb,0x0f,0xed,0x56,0xe1,0x8a,0x0c, +0x6c,0x2a,0xd6,0xe1,0x1c,0xa9,0x1d,0xcf,0x37,0xe8,0x76,0x65, +0x9b,0xbb,0x74,0x52,0x5d,0xd5,0x8c,0xe4,0x3f,0xb1,0x50,0x68, +0xd2,0x9f,0x18,0x71,0xdd,0x5c,0x19,0x87,0xe1,0x7a,0x59,0x19, +0x40,0x9b,0xf7,0x65,0x18,0x9b,0xfb,0x42,0x48,0x23,0x82,0xd7, +0x5d,0x41,0x3d,0x70,0x83,0x6d,0xcc,0x36,0x37,0x32,0x58,0x65, +0xa3,0x0d,0x14,0x0a,0xc3,0x42,0xc9,0x50,0x08,0x23,0xae,0x99, +0xef,0x36,0xc7,0x10,0x3d,0x82,0x2c,0xdd,0x34,0xfe,0x1a,0x36, +0x6c,0xce,0xc0,0x39,0x7d,0xe7,0x6d,0x80,0xa9,0x01,0x71,0x4b, +0x27,0x62,0xba,0xf4,0xca,0x10,0xf0,0x6e,0xec,0xac,0xf5,0x38, +0x3f,0x77,0x87,0xc0,0xc9,0x2a,0x20,0x77,0x00,0xdb,0x7d,0xdb, +0xb2,0x35,0xe5,0x61,0x16,0x25,0x4c,0x85,0xc3,0xb0,0x70,0x32, +0x14,0x46,0xfb,0x75,0x73,0x56,0x1c,0x61,0x0a,0x97,0x01,0xcf, +0xc4,0x89,0xca,0xb9,0x25,0x85,0x73,0x81,0x73,0x8a,0xd3,0x47, +0xe0,0x16,0x55,0xd0,0x78,0x24,0x4b,0x0f,0x16,0x95,0x94,0x66, +0x5d,0xac,0x19,0xa2,0x7a,0x0b,0xe7,0xd5,0xd7,0x4f,0x5c,0x78, +0xf7,0x13,0xae,0x04,0xec,0x8f,0x33,0xac,0x64,0x14,0x46,0xe5, +0x06,0x92,0xa1,0x20,0xf0,0x01,0x99,0xd7,0xea,0x9d,0x44,0xf3, +0x1d,0xed,0x24,0xfe,0xc1,0xd1,0xa4,0xc1,0x06,0x43,0xcf,0xa3, +0x4d,0xdf,0x0a,0x65,0xa3,0x97,0x8d,0xc1,0x6a,0x36,0x94,0xda, +0x18,0xa8,0x16,0x3d,0x63,0x0b,0x96,0xb5,0x61,0xc1,0x24,0xe8, +0x87,0x9e,0xda,0x5f,0x22,0x4c,0xe3,0x03,0x2c,0xc0,0xf1,0xff, +0xd4,0x35,0xe1,0x74,0xf2,0x56,0xf3,0xcb,0xd7,0x61,0xa4,0x1f, +0xc0,0x26,0xe9,0x53,0xe2,0x2f,0xcf,0x5e,0xfc,0xca,0x79,0x3d, +0x65,0xd1,0x25,0x02,0x73,0xf2,0x0e,0x8a,0xe7,0x30,0xe4,0x1c, +0x2b,0x82,0xcb,0x02,0x1d,0xd2,0x93,0x00,0x0a,0x26,0x43,0x4a, +0x84,0x36,0xaf,0x6e,0xad,0xf9,0x75,0x82,0x96,0xc4,0x8f,0x24, +0x2b,0xa5,0x1b,0x1f,0xbe,0xaa,0x3a,0x0c,0x97,0x22,0x6d,0xd5, +0xc5,0x49,0x7c,0x64,0x34,0x9b,0x56,0x6d,0x66,0xb9,0xd9,0x9e, +0x2f,0xdd,0x74,0x4a,0xff,0x96,0x82,0x23,0x82,0x7f,0x2a,0x88, +0xb2,0x42,0x6e,0x60,0xb3,0x1f,0x7b,0x3b,0x4c,0x90,0xda,0x8e, +0xfc,0xcb,0x2d,0x4f,0xd0,0xcb,0xf5,0xa5,0x00,0x2f,0xd5,0x27, +0x8b,0xa7,0xc6,0xdd,0x68,0x43,0xb5,0x4e,0x30,0x5b,0x73,0xc4, +0xf1,0xd1,0x06,0x34,0x85,0x8e,0x17,0x42,0xf5,0x4f,0xa0,0x45, +0xb3,0x8c,0xd1,0x98,0x6c,0x43,0x2f,0xd2,0x29,0xc9,0x31,0x33, +0x3f,0xc1,0x16,0xb6,0x88,0x44,0xda,0x62,0xc6,0x69,0xf3,0xe2, +0x9a,0xc9,0x60,0x69,0x1d,0x42,0x8e,0xec,0x2d,0x3d,0xee,0xd1, +0x56,0xf9,0x27,0xe9,0xa5,0x8b,0x3f,0x60,0xd8,0x79,0xd4,0x88, +0x57,0x91,0xd1,0xcb,0xc6,0x62,0x65,0x1b,0x06,0x6b,0x63,0xa1, +0x32,0xf3,0x2a,0xd2,0x86,0x85,0x92,0x20,0x05,0x0b,0x68,0xf3, +0xea,0xd7,0x49,0xaf,0x97,0x23,0xac,0x38,0x48,0x07,0xf8,0x56, +0xc2,0x48,0x73,0x90,0xfa,0x82,0x30,0x1c,0x93,0x5e,0x20,0x1e, +0xc1,0x30,0x59,0xb4,0x94,0x18,0x07,0x81,0xd1,0xd2,0xff,0x67, +0x01,0x29,0xe5,0xdc,0x00,0x0f,0xf8,0xf6,0x79,0x19,0xbe,0x7d, +0xee,0x9d,0xc9,0x9b,0xf4,0x82,0xf9,0x07,0x91,0x23,0xcc,0x49, +0x16,0x70,0xce,0x40,0x0e,0x6e,0x74,0x0e,0x35,0x8b,0x7d,0xc1, +0x16,0xfb,0x48,0xd8,0x52,0xc2,0xa5,0x67,0x45,0x91,0x59,0xe1, +0xd5,0x31,0xe5,0x08,0xf3,0xa6,0x9b,0xdc,0x47,0x4c,0xee,0xcb, +0xff,0x48,0x6e,0x61,0x77,0xeb,0x79,0x4b,0x45,0x9c,0x75,0xdb, +0x83,0x4f,0x2f,0x47,0x98,0xab,0x64,0x29,0x52,0x92,0x41,0x6f, +0x71,0xe4,0xec,0x05,0xce,0xc9,0x86,0x4b,0x8b,0x77,0x6a,0xb4, +0xb9,0x56,0x82,0x6c,0xb4,0xd0,0x8b,0x58,0x81,0x50,0x56,0x6b, +0x9c,0x31,0x06,0xeb,0xaa,0x9d,0x02,0xea,0x36,0x9e,0xb9,0x95, +0xe5,0xa6,0x7c,0x02,0x84,0x46,0xe1,0xf8,0xbb,0x42,0xad,0x24, +0xbb,0x6d,0x58,0x14,0x0e,0xd3,0x30,0x09,0x07,0xc9,0xa2,0x77, +0x68,0x65,0xf4,0x13,0x91,0xd6,0x53,0x22,0x84,0x6f,0x2a,0xe1, +0x4b,0x74,0xe3,0xf3,0x30,0x9e,0x42,0xe8,0x79,0xac,0xa8,0x6f, +0x93,0x61,0xbf,0x8a,0x6d,0x58,0xd5,0x86,0x15,0x92,0x20,0xb4, +0x1c,0x8e,0x77,0xbf,0xc6,0xbd,0xf2,0x29,0x21,0x2a,0xc7,0x88, +0x9a,0xbb,0x6f,0x79,0x10,0x1e,0x28,0x80,0xa5,0x60,0xa1,0xf5, +0x60,0x07,0x8e,0x1e,0x21,0x83,0x2e,0xf2,0xdb,0x17,0xf9,0xef, +0x75,0x60,0x59,0x73,0x96,0xa1,0x46,0x24,0x9b,0x23,0xb4,0x0c, +0x6c,0x6a,0x50,0xf7,0x36,0x43,0xf1,0xa6,0x19,0xe3,0x30,0xc8, +0x86,0x0e,0xea,0x7b,0x50,0xd3,0x99,0x9b,0xb1,0xb8,0x0d,0x0b, +0xb4,0x31,0xa7,0x71,0xf4,0xbf,0x93,0xf9,0xaf,0x73,0x10,0x5c, +0x3f,0x59,0xf2,0x87,0x7f,0x7e,0x9d,0xc3,0x28,0xfa,0x6f,0x5e, +0xe7,0xc0,0xd1,0xa3,0x19,0xe4,0xdf,0x3d,0xce,0x81,0xa3,0xc7, +0xc9,0xa0,0x1f,0x05,0x59,0x0c,0xf9,0x6f,0x73,0x50,0x3b,0xc3, +0x2d,0x8a,0x6f,0xf3,0xdb,0x1c,0xf9,0x0d,0x13,0xc1,0x6d,0xcd, +0x11,0xd2,0xe3,0xa9,0xd8,0x0c,0xde,0x4d,0x97,0x49,0x5b,0x31, +0x12,0x0f,0xa3,0xe9,0x8c,0x4d,0xe8,0x6d,0x0b,0x69,0xe7,0x26, +0xf4,0x88,0x14,0xcd,0x85,0xeb,0x8a,0xa0,0x5d,0xee,0x63,0x03, +0x1b,0x25,0x41,0x23,0x4c,0xcc,0xbb,0x21,0x1a,0x75,0x33,0x54, +0x4c,0xb2,0x19,0x43,0xbd,0x6d,0x67,0x44,0x6a,0x5b,0x21,0x24, +0x96,0xe6,0x70,0x39,0x1b,0x16,0xa1,0x39,0x5c,0x2e,0x76,0xc6, +0x56,0x0c,0xb1,0x95,0x6d,0x63,0xb6,0xd7,0x36,0x62,0x29,0x19, +0xf2,0x3e,0xe9,0xa2,0x2c,0x38,0xa8,0xdf,0x5d,0x72,0x6b,0xd9, +0x05,0x8e,0x03,0xe9,0x58,0x2f,0x1a,0x9b,0x1d,0xa5,0xf4,0x17, +0xb8,0xef,0x55,0x98,0xed,0xc6,0xe6,0x70,0x43,0x55,0x6f,0x67, +0x56,0x27,0x9c,0x75,0x8d,0xf2,0xc4,0x40,0x9f,0x58,0x12,0x9e, +0x92,0x36,0xf4,0x20,0x06,0x96,0x8c,0x9d,0xb1,0x19,0x7d,0x6c, +0x55,0xda,0x99,0x64,0x4f,0xb6,0xc5,0x43,0xd6,0xc3,0x1c,0x25, +0x26,0xfe,0xfb,0xb8,0xda,0x46,0xbf,0xff,0x1c,0x57,0xbb,0xc8, +0xbb,0xfc,0x79,0x78,0xf3,0xab,0xc0,0xda,0x8d,0xcd,0x6e,0x16, +0x59,0x97,0xad,0xf7,0x2f,0xde,0x04,0xd3,0x0e,0xea,0xc0,0xd5, +0x8e,0xf2,0x9b,0x17,0xd2,0x2f,0x41,0xe0,0xb0,0x21,0x32,0x88, +0x96,0x97,0xd5,0xb9,0x35,0x44,0x6d,0x5a,0x85,0xcd,0xc5,0x38, +0xec,0x26,0x7c,0xc2,0x07,0x68,0xd2,0x58,0x22,0xcc,0x86,0x18, +0x26,0x7d,0xa6,0x59,0xef,0x5f,0xe0,0x50,0xf3,0x73,0x29,0xfd, +0x04,0x1e,0xc1,0xc5,0xc6,0x8d,0x97,0xb2,0xf4,0x11,0x81,0x45, +0xa5,0x7d,0x98,0x90,0x41,0x3d,0x49,0xa5,0xcb,0xd2,0xa3,0x85, +0x19,0x22,0xb0,0xcc,0x68,0x51,0x21,0x8a,0xef,0xe8,0x14,0x90, +0x9e,0x81,0xc2,0x57,0xda,0xef,0xfc,0xcf,0x57,0x32,0x16,0x1a, +0xaa,0xd1,0xef,0xd1,0xb8,0xcf,0x7a,0xeb,0xe6,0x27,0x5a,0xec, +0xb7,0x7a,0xa8,0x46,0x50,0xd0,0x6c,0x44,0x96,0xc8,0x02,0x67, +0xaa,0xf4,0xf8,0x8d,0x1f,0x8f,0x2e,0x5d,0x47,0x54,0x65,0xe7, +0xe2,0x76,0x38,0x1c,0xfb,0x09,0x93,0x2c,0xe6,0x81,0xb9,0xbd, +0x44,0x8d,0x37,0x5e,0xbf,0x79,0xa5,0x44,0xed,0x37,0x31,0xb5, +0x59,0xd7,0x8c,0xef,0x2d,0x83,0x7e,0x12,0x4d,0xff,0xfa,0xd0, +0x05,0x8e,0x37,0x73,0x0d,0x35,0x26,0xd1,0x1c,0x43,0xe3,0x91, +0x62,0xa0,0x8d,0x06,0xb9,0x62,0x13,0x1a,0x90,0x9a,0x6e,0x89, +0xae,0xd9,0x84,0x06,0xb9,0x22,0xcf,0x66,0x73,0xb6,0x76,0xad, +0xfe,0x5f,0x1f,0xb6,0x20,0xd0,0x41,0x79,0xfe,0x22,0xf1,0xf5, +0xc3,0x16,0xed,0x05,0x8e,0x33,0x97,0x48,0xbd,0x88,0x88,0xcd, +0x7b,0xfe,0xf7,0x27,0x2e,0xa8,0x60,0x82,0x0c,0xfa,0x59,0xb4, +0xce,0x7f,0xb0,0x82,0x7e,0xdf,0x64,0x5a,0x9a,0xbc,0x7e,0xb0, +0xe2,0xa5,0x70,0xf5,0xea,0x20,0xfd,0x68,0x85,0xb1,0x71,0x84, +0x6c,0xe9,0x33,0x54,0x90,0x29,0xd0,0x5d,0xea,0x75,0x05,0x70, +0xc8,0x01,0x73,0xf9,0x97,0x2a,0x15,0xba,0x73,0xf0,0xea,0x63, +0xb8,0x35,0x44,0xf8,0xaa,0xcb,0x04,0xd1,0xc3,0x48,0x32,0xd3, +0xce,0xeb,0x6a,0x25,0xfe,0x60,0x48,0xbf,0xc2,0x62,0xe6,0xe9, +0xde,0x73,0xba,0xcc,0x69,0x3b,0x37,0x70,0x0b,0xf4,0x92,0x8e, +0xd9,0x1c,0xc4,0x7b,0xa3,0xc1,0xef,0x35,0x2c,0x92,0x11,0x33, +0xad,0x68,0x96,0xb2,0xc8,0x4e,0xa1,0x42,0x31,0x46,0x6a,0x5b, +0x5e,0xb9,0xbe,0x7e,0xc8,0xae,0xaf,0xc9,0x30,0xce,0x49,0xdb, +0x7f,0x81,0xa7,0xd9,0xf5,0xf5,0xbd,0x7c,0xd7,0xd7,0x64,0xd8, +0x98,0xf7,0x81,0xb8,0xa0,0x3e,0x66,0x9f,0xd7,0x37,0x19,0xe6, +0x0a,0xfc,0x51,0xfa,0x84,0x09,0xd7,0x34,0xce,0x49,0xe1,0x9c, +0x42,0xb8,0x4e,0xdd,0x14,0x98,0x2d,0xb5,0x42,0xff,0x8c,0x57, +0x16,0x2b,0x23,0x72,0x67,0x71,0xcd,0x11,0xae,0xc5,0xfc,0x58, +0x59,0xb0,0x31,0x29,0x6d,0xce,0xa2,0xcd,0xd6,0x8b,0x50,0x81, +0xf0,0xee,0x25,0x75,0x37,0x1e,0xde,0xd7,0x66,0xd7,0x4f,0xec, +0x84,0x63,0xea,0xed,0x6e,0x1b,0x00,0x01,0xc7,0xee,0xed,0x3b, +0xba,0x6f,0x4d,0xc6,0xea,0xf4,0xd5,0xb3,0x60,0x2d,0x3b,0xcf, +0x9d,0xc1,0xa5,0x34,0xc5,0xbd,0x48,0x2b,0xd7,0x14,0x2a,0xed, +0x16,0x19,0x53,0xc1,0x16,0x72,0x5a,0xc5,0x9e,0xd0,0xa6,0x55, +0xc5,0x18,0x66,0xff,0x8b,0xaa,0xff,0x03,0x73,0xd4,0x45,0xe2, +0xcf,0x75,0xe9,0xd9,0x92,0xd4,0x4b,0x09,0x8e,0x51,0xed,0xb3, +0xd3,0xed,0x1f,0x7b,0xf6,0x26,0xbc,0xe5,0xf6,0x8f,0x3d,0x0b, +0x2d,0xa4,0x71,0x5a,0x98,0x6d,0x09,0xd3,0x4d,0x28,0x2e,0x8b, +0x96,0xe3,0x7a,0x84,0xe7,0x0f,0xd5,0xcc,0x30,0xdf,0x81,0xc1, +0xd2,0x8b,0xa4,0xa9,0xb6,0xf4,0x6c,0x41,0x73,0xef,0x80,0xd8, +0xa7,0xa6,0xb9,0xcd,0xd4,0xd3,0x6c,0xa6,0xc6,0xb2,0x99,0x7a, +0x4b,0xa8,0xd5,0x37,0xa1,0x14,0xa1,0x33,0x18,0x5d,0x2c,0x75, +0x8b,0xa6,0xc6,0x57,0x86,0x92,0xbf,0x35,0xc5,0x9d,0x96,0x91, +0xfa,0x1d,0xc9,0xed,0xc7,0x1e,0x4a,0xbe,0x34,0x25,0x9f,0x55, +0x12,0xe4,0x59,0x6a,0xa4,0xd8,0x50,0x22,0x2b,0x41,0x40,0x88, +0xf4,0x6d,0xcc,0x4e,0xa1,0xc7,0x69,0x1e,0xfb,0x5f,0x10,0x3a, +0xde,0x9f,0x24,0x4b,0xa5,0x88,0x1f,0xd4,0xc7,0x40,0x53,0xa9, +0xba,0x40,0xe3,0xb6,0x39,0xb9,0x11,0x1e,0xd7,0x71,0x09,0xec, +0x22,0x83,0x41,0x34,0x52,0xcd,0x81,0x6c,0x3d,0x7f,0x17,0x31, +0xe0,0x96,0x79,0xb8,0x31,0x7e,0xc5,0x45,0x67,0x9c,0x65,0x05, +0xfe,0x89,0x47,0x8d,0x1a,0x77,0x13,0xa0,0x18,0x14,0xfb,0xfa, +0xe2,0xf7,0xa7,0x47,0x1c,0x6c,0xfb,0xb1,0x63,0x09,0x44,0x5d, +0x50,0xbb,0x12,0xa1,0xfc,0x6c,0xbd,0xed,0xe8,0x11,0xbd,0xda, +0xd9,0x61,0x78,0x4d,0x63,0xbc,0xd6,0xac,0xfd,0xee,0xab,0xd7, +0x4e,0xee,0xbe,0x11,0xbc,0x5e,0xcb,0x3e,0x39,0xa0,0x79,0x8b, +0xf6,0x03,0x62,0x82,0xcd,0x72,0x52,0xdc,0x10,0xce,0x9e,0x62, +0x9f,0x0c,0xda,0x2b,0x2a,0x08,0x75,0x28,0x47,0xa3,0x8d,0xc3, +0x04,0x59,0x92,0xd6,0x82,0x26,0xd2,0x67,0x80,0x90,0x24,0x16, +0x39,0x52,0x63,0x6e,0x1c,0x12,0x10,0xc5,0xa4,0x3b,0x47,0x5b, +0xf7,0x7f,0x72,0xcc,0xb3,0x3a,0xb5,0xbf,0xc1,0x48,0xfe,0xb9, +0x7c,0xa5,0xe4,0x47,0xcd,0xb3,0xcc,0x9d,0x31,0x98,0xa1,0x63, +0x75,0x98,0x6a,0xe0,0xb2,0x78,0x58,0xa6,0xed,0xc6,0x83,0xc6, +0xb9,0xb1,0x07,0x7b,0x6e,0x74,0x2c,0x7e,0x76,0x5e,0xd5,0x4c, +0x02,0x6d,0x8e,0xde,0x73,0xd4,0x98,0x5e,0xc9,0xf6,0x8a,0x59, +0xf1,0xcf,0x9e,0x66,0x5d,0x7a,0xec,0xc0,0x0d,0x8b,0x8d,0xf5, +0xfa,0xd5,0x83,0x9f,0x9e,0x3e,0x7d,0x70,0x70,0x0b,0xc7,0x78, +0xbd,0x79,0xaf,0x21,0xed,0xda,0xf5,0xda,0x71,0xcd,0x71,0x09, +0x3f,0x97,0x9e,0x3f,0xe5,0x37,0x76,0x28,0xc7,0x3c,0xc4,0x8d, +0xad,0x96,0xc6,0x05,0x62,0xd4,0x28,0x19,0x3c,0x9d,0xa9,0x7d, +0x40,0xd4,0xfe,0x09,0xb7,0x8d,0xe4,0x47,0xe5,0x2b,0x26,0x3f, +0x8e,0xcf,0x32,0xb7,0x11,0x05,0xd2,0x7f,0xb5,0x70,0xb7,0x7e, +0xd4,0xb8,0x30,0xf6,0x10,0xb5,0xbe,0x24,0xbf,0xf5,0xd9,0xdc, +0x7a,0xcf,0x44,0x7b,0x85,0xac,0xd6,0xd4,0xfa,0x97,0xbf,0x50, +0xeb,0x4b,0x8c,0x75,0x7a,0xa6,0xbb,0xf5,0x58,0xc7,0x04,0x3d, +0xb6,0xd7,0x60,0x6a,0xfd,0xd3,0x4c,0x87,0xd9,0x9a,0x84,0xdc, +0x5e,0xe0,0x15,0x4b,0xfe,0x84,0x3d,0xd4,0x48,0x65,0x6a,0xa4, +0x45,0x96,0xf9,0x91,0x0c,0xff,0x88,0xef,0xee,0xee,0x35,0xa4, +0xff,0x17,0xe2,0xec,0xd8,0x03,0x3d,0x3f,0x7e,0xd5,0x84,0x8d, +0x9a,0x18,0x3d,0xb6,0x77,0x1b,0x3b,0x7c,0xbc,0x84,0x4a,0xa3, +0xc4,0x3a,0xfd,0xca,0xc1,0x1d,0x67,0x4e,0x1f,0x1a,0xd2,0xd2, +0x61,0x7a,0xf1,0x0d,0xe0,0xf7,0x19,0xe5,0x09,0x0b,0xe5,0x91, +0x7c,0x94,0xed,0xb3,0xcc,0x15,0x31,0xb8,0x90,0xe9,0x4e,0xb0, +0xe8,0x26,0xc4,0x21,0x77,0x05,0x23,0x77,0xe0,0x47,0x4c,0xe1, +0x6b,0x1c,0x13,0x74,0x46,0x6a,0x7a,0x61,0x0f,0x69,0x1f,0x2a, +0x9c,0xdd,0x85,0xe9,0x50,0x23,0x68,0xcb,0x2a,0x8d,0x32,0x94, +0xab,0xc6,0xca,0x22,0x91,0x64,0xa0,0xfb,0x88,0xb7,0x55,0x79, +0x19,0xf2,0x44,0xa8,0xd1,0x62,0x80,0x7a,0x20,0xbd,0xbb,0x70, +0xca,0x2c,0xa3,0xde,0x96,0xe2,0x2a,0x27,0x61,0x1d,0x9e,0x96, +0x62,0x91,0x90,0xc5,0x7d,0xc4,0xef,0xbc,0xd3,0x1c,0x7b,0x56, +0x9d,0xc0,0x51,0x24,0xbb,0xef,0x9f,0x55,0x69,0xa4,0x69,0x9f, +0x09,0x73,0xae,0x1a,0x6c,0x4c,0xe3,0x7b,0x48,0xeb,0xf6,0x2e, +0xdb,0x7f,0xca,0xbe,0xb9,0xc5,0x18,0x3d,0x6c,0x60,0x47,0x2c, +0x8a,0x1e,0x8e,0x59,0xbb,0xd5,0x31,0x91,0xf6,0x1d,0x4c,0x21, +0x7b,0xee,0x6c,0x7b,0x98,0x2e,0x83,0x68,0xf1,0x2c,0x0d,0xc6, +0x34,0xf7,0x4d,0x1a,0xf6,0x1b,0x9f,0x69,0x60,0x00,0x6c,0x6e, +0xa2,0xee,0xdc,0x84,0x79,0x10,0xa0,0xa9,0x56,0xf0,0x9d,0x81, +0x6b,0x92,0x61,0x8d,0x06,0xcd,0x55,0x75,0xe9,0xd7,0x40,0x2c, +0xfb,0xf2,0xf0,0x15,0xfb,0xa1,0x51,0x3b,0x3b,0xad,0x27,0x81, +0x2d,0x75,0x46,0xad,0x6d,0x0b,0x72,0xb6,0xde,0x79,0xfc,0xa8, +0x41,0x3d,0xed,0x2d,0xbf,0xec,0x2e,0x3d,0x47,0x89,0x44,0x1b, +0x0c,0x91,0x5e,0x47,0x04,0xcc,0x31,0x4e,0x1d,0xdb,0x92,0xe9, +0xd8,0xa6,0x65,0x1e,0x1b,0xd1,0xbe,0x9d,0xf4,0x2f,0x2f,0x4e, +0x07,0x6f,0x52,0x67,0x79,0x66,0x2e,0x84,0xcd,0xea,0x98,0x96, +0xd3,0xc6,0x30,0xcb,0xd3,0xee,0xa7,0x3c,0xd1,0x3e,0xcd,0x5c, +0x62,0xc0,0xca,0x26,0xea,0x8b,0x9b,0x30,0x19,0x02,0x68,0xeb, +0xdf,0x0a,0x56,0x48,0xaf,0x43,0x42,0x49,0xa3,0xe1,0xd4,0xf2, +0x33,0xc3,0x66,0x7b,0x5e,0xd5,0x5f,0x2c,0xfb,0xf2,0xc0,0x05, +0xfb,0xfe,0xd1,0x9f,0x74,0x5d,0xe7,0x58,0x0a,0xc5,0x4f,0xa9, +0xb5,0xed,0x21,0x70,0x96,0xde,0x75,0xe2,0xe8,0xa1,0x7d,0xec, +0x89,0x5f,0xf6,0xfa,0x7d,0xa6,0x23,0x56,0xfa,0xaf,0x14,0x6d, +0xc9,0x80,0xb7,0x28,0x98,0x60,0x1c,0xff,0x62,0x63,0xa6,0x63, +0x87,0x96,0xf9,0xc5,0xa8,0x4e,0x9d,0x3b,0xbf,0x13,0x17,0x3c, +0x44,0x8b,0xeb,0xbc,0xe9,0x58,0x30,0x8c,0x50,0x6f,0xc9,0x50, +0x52,0x9e,0xbb,0xb0,0x22,0xf3,0x6b,0x91,0x6d,0xdd,0x9e,0x65, +0xfb,0x4e,0xd8,0x37,0x35,0x1f,0xa3,0x47,0x0e,0xec,0x82,0xfe, +0xe8,0x21,0x3d,0xb6,0x89,0xa5,0xef,0x2d,0x4d,0xcf,0x98,0x0d, +0x81,0x68,0xf0,0xc3,0x55,0x81,0xe0,0x37,0xd5,0xcd,0x2b,0xdc, +0x15,0x62,0x60,0x9b,0x97,0xfc,0xbc,0x90,0xe5,0x96,0x3b,0xd2, +0x3c,0x26,0x4b,0x90,0xea,0x6e,0xa8,0xf6,0xc9,0x90,0x47,0x02, +0x56,0xd0,0x1e,0x5b,0x7d,0x2d,0x1d,0x3d,0x69,0xe5,0xee,0x23, +0x54,0xb5,0xf1,0x06,0xa6,0xb7,0x81,0x74,0xed,0x0f,0x15,0xd5, +0x4e,0x5c,0x95,0x3e,0x8d,0x45,0x33,0x17,0x6d,0x83,0x10,0xa6, +0x49,0xdf,0xb2,0xe2,0x81,0x3a,0x2e,0x83,0x67,0x52,0xd5,0xfe, +0x54,0x75,0x12,0x04,0x09,0xf3,0x1b,0x55,0x4e,0x96,0x7e,0x2c, +0x5e,0xe3,0xf6,0x9a,0x2a,0x54,0x44,0x3b,0x71,0x99,0x21,0x63, +0xf5,0x79,0x2d,0x62,0xe7,0x37,0x0f,0x5a,0x92,0x24,0x1d,0x63, +0x19,0x47,0x1a,0xe3,0x30,0xb3,0x54,0x0f,0x76,0x04,0xa6,0xb5, +0xeb,0xce,0x2d,0x8e,0x2f,0x9f,0x23,0x6d,0x26,0x69,0xc7,0x2f, +0xf8,0x1a,0xe1,0x94,0xb3,0xea,0x02,0x8e,0xc2,0x81,0x7c,0x1e, +0x7a,0xe7,0x96,0x79,0x47,0xc7,0x2b,0x73,0xb8,0x78,0xb3,0x3a, +0x2b,0x83,0xe7,0x08,0xf3,0x12,0xa5,0x7a,0x18,0xbf,0xea,0xc7, +0x3e,0xde,0xb0,0xf3,0x33,0xfb,0x81,0x31,0xbb,0x5a,0x6e,0x70, +0x2c,0x86,0xf8,0x73,0xae,0x8e,0xc9,0x10,0x3f,0x47,0x6f,0x39, +0x76,0xcc,0xc0,0xde,0xf6,0xfe,0x1b,0x06,0x1d,0x1b,0xed,0x88, +0xc2,0xd1,0xd5,0x84,0x6a,0x06,0xa7,0x8c,0xc3,0x1a,0xd8,0x8e, +0x0e,0xe8,0xda,0xa5,0xdb,0x00,0xb4,0x05,0xf7,0xd0,0xd0,0xd6, +0x6d,0xf7,0x17,0x9f,0x1f,0xdd,0x0d,0xb6,0xe0,0xaa,0x38,0xda, +0xdc,0x27,0x1a,0xe0,0x04,0x1d,0x5b,0x62,0x0f,0xf6,0xf6,0x4d, +0xb8,0x09,0xf3,0xf9,0x9b,0xbd,0x14,0xeb,0x44,0x39,0xec,0xca, +0x42,0xce,0x49,0x8c,0xc6,0xdf,0xa4,0x6f,0x10,0xc9,0x7e,0x7d, +0xf1,0x16,0x2e,0xc2,0x7e,0x61,0xc2,0xfc,0xf4,0x9c,0x5a,0x0e, +0xa1,0xe6,0xc2,0xb3,0xb8,0x94,0x1f,0x06,0xd6,0xc8,0x1a,0xd8, +0xdc,0x0e,0x06,0x57,0xa7,0x8d,0x5b,0x19,0x5d,0xfa,0x76,0x17, +0x33,0x1e,0x42,0x7f,0x68,0x7d,0x01,0xef,0xc0,0x76,0x78,0x88, +0x9b,0xb2,0xb4,0xb3,0x58,0x8c,0xdd,0xd2,0x27,0x60,0x79,0xae, +0x5f,0x47,0xc4,0xe0,0xf6,0x76,0xf0,0x76,0x75,0x1c,0x4a,0x00, +0xb9,0xed,0xc5,0xf4,0x87,0x30,0x04,0x5a,0x7f,0xde,0x1d,0xae, +0x9f,0xc3,0x63,0x59,0xa6,0x7e,0x56,0x43,0x2f,0x9c,0x9a,0x5b, +0x97,0x66,0xdf,0x72,0x51,0x13,0xdf,0x6d,0x63,0x2e,0xaa,0xaf, +0x4b,0x9b,0x43,0x94,0xc9,0x86,0x03,0xb8,0xf8,0x3b,0x9d,0xec, +0xa4,0x15,0x22,0x1a,0xe7,0xe2,0x4e,0x22,0x67,0xcf,0x19,0xb5, +0xf2,0x9e,0xf4,0xab,0x44,0x66,0x66,0x8e,0xe6,0x1b,0x25,0xd4, +0x76,0x1c,0xd4,0x09,0x06,0xf5,0xb0,0xdc,0x7b,0xb3,0xe7,0xc9, +0x52,0xb4,0xab,0xff,0xfc,0xd5,0x71,0x23,0xfb,0x76,0x56,0xc5, +0xc9,0x86,0xb9,0x0c,0xe3,0x6f,0x90,0x09,0xc0,0x47,0xad,0x5e, +0xf1,0x02,0xe6,0x9d,0x32,0xd4,0x1c,0x1c,0xd4,0x0d,0x06,0xa5, +0xf0,0x1d,0x5d,0xf5,0x03,0x26,0xc9,0x80,0x26,0x02,0x4a,0xb2, +0x57,0xac,0x59,0x8f,0xdd,0x55,0x6b,0xdd,0x8f,0xb1,0x8e,0x25, +0x33,0xfe,0x7e,0x2c,0x69,0xce,0x85,0x34,0x83,0xda,0xab,0x73, +0xd3,0xf9,0x56,0x13,0xb5,0x5d,0xc7,0x79,0xe6,0x56,0xab,0xcd, +0x5b,0xd4,0x66,0x9d,0xd7,0xfe,0xa4,0xbb,0xc8,0x80,0x9b,0xb0, +0x74,0xda,0xfc,0xd4,0xa9,0xe3,0x5e,0xbb,0xab,0x1e,0xb0,0x6f, +0x88,0x4e,0xd5,0x1b,0x75,0xec,0x8e,0xf3,0x1b,0x38,0x76,0xd1, +0x44,0x39,0x7c,0x7f,0xd7,0x17,0x7f,0x75,0x57,0xfd,0x18,0xc5, +0xce,0xd3,0x36,0x5f,0x59,0xbc,0x00,0x3f,0x12,0xba,0xcb,0xba, +0xd8,0x39,0x65,0x5a,0xda,0x34,0xbe,0xa2,0xbb,0x61,0x7b,0xc6, +0x8e,0x7d,0xf6,0xcd,0x32,0x72,0x8c,0x58,0x3a,0xd5,0x1d,0xfc, +0x80,0xe3,0xa3,0x6c,0x5f,0x46,0xb9,0x1f,0xc7,0x8d,0xd7,0x9b, +0xf6,0xe9,0x8c,0xb2,0x91,0xe3,0x70,0xd7,0x2b,0xfb,0x8e,0xec, +0xf8,0x64,0x07,0x61,0x5d,0xb6,0xec,0xfd,0x05,0x2b,0x66,0x06, +0x42,0x05,0xf4,0xb8,0x7e,0xe0,0xc8,0xa7,0xdb,0x77,0x04,0x2e, +0xcf,0x58,0xce,0xd7,0xc3,0xca,0x47,0x5a,0xf7,0x3a,0xf3,0x4f, +0x26,0xab,0x9b,0x0f,0x65,0xf1,0xf2,0xe2,0x29,0xf5,0x99,0x46, +0x79,0xca,0x19,0x12,0xcc,0x3e,0x24,0x98,0xaf,0x3d,0x5b,0xab, +0x4f,0xe5,0xe2,0x95,0xb8,0xc8,0x6d,0x1b,0x2f,0x57,0x57,0xb5, +0x9c,0xb6,0x86,0x59,0x17,0xc3,0xf3,0xed,0xe3,0xfb,0x59,0xe6, +0x7d,0xaa,0x36,0x53,0x96,0x2c,0x25,0xd6,0x72,0x18,0xd5,0x62, +0xba,0x74,0x6c,0x14,0xe8,0xab,0x9b,0x19,0x58,0x94,0xcc,0x50, +0x62,0xe4,0x24,0x2b,0x34,0xea,0x4e,0x62,0xe4,0x58,0x32,0x43, +0xbf,0x63,0x2b,0xb4,0xac,0x70,0x45,0x59,0x67,0xa0,0xc5,0xf9, +0x0c,0xb4,0x57,0xa6,0xe9,0x8c,0x55,0xab,0x69,0xd5,0x33,0xdf, +0x37,0xf8,0x1e,0x66,0xba,0x46,0xe2,0x17,0x24,0x03,0xed,0x02, +0x33,0x8d,0x2c,0xa8,0xab,0xf1,0x8b,0x77,0xd2,0x37,0x51,0x40, +0x1e,0x2e,0x27,0xd6,0x4e,0x9f,0x97,0x3a,0x75,0xc2,0x14,0x66, +0xed,0xb6,0x4f,0x96,0x6f,0xdf,0x6b,0xff,0x30,0x7a,0xb2,0x1e, +0xdd,0xb1,0x17,0xce,0x6f,0xec,0xd8,0xd9,0x01,0x82,0x0e,0x7e, +0xb3,0xeb,0x8b,0x9d,0x81,0x6b,0x32,0xd6,0x10,0x63,0x61,0x23, +0xda,0x02,0x3e,0x3d,0xfd,0xb7,0x1e,0x97,0x2c,0x29,0x3a,0xe2, +0xa7,0x84,0x38,0x48,0x7a,0x2b,0x61,0xce,0xc1,0x03,0xc6,0x94, +0x8c,0x57,0xdc,0x76,0xf3,0xf5,0x80,0x7d,0x73,0xdc,0x58,0x3d, +0x6e,0x78,0x8f,0xf2,0x49,0x8e,0x90,0x9c,0xb4,0x8c,0xa9,0xec, +0xe4,0x3a,0x35,0x9f,0xeb,0x9f,0xee,0xb7,0xb8,0x1e,0xdd,0xb7, +0x23,0x96,0x6e,0xe0,0x38,0xdc,0xed,0xea,0xfe,0xc3,0xcc,0xe1, +0x85,0x0b,0x97,0x2f,0x5b,0x61,0x71,0xbd,0x22,0x6a,0xd7,0x0f, +0x11,0xd7,0x3f,0x0d,0x5c,0xbe,0x74,0x39,0x5f,0x08,0xac,0x10, +0x11,0x70,0xf8,0x0b,0x1e,0xdc,0x18,0xb1,0x14,0xbf,0x37,0xa0, +0x8c,0x9b,0xd7,0x03,0x89,0xd7,0xce,0x11,0x02,0x46,0x87,0x5c, +0x7f,0x09,0x93,0x5b,0x24,0x76,0x80,0x61,0x27,0x6b,0x5e,0x85, +0xd1,0xe7,0x74,0x97,0xaf,0x2a,0x63,0xa4,0xc1,0xfb,0xb1,0xf8, +0x71,0x88,0xf8,0x40,0xfb,0x2e,0x67,0xed,0xda,0x43,0xc1,0x93, +0x4e,0xdb,0xa6,0x0c,0x68,0x31,0x39,0x2e,0x08,0x62,0x65,0xc0, +0x26,0x9a,0xa7,0xf5,0x44,0x95,0xc8,0x7f,0x9a,0xa6,0x05,0x7e, +0xd2,0x62,0xa4,0xe7,0x26,0x0b,0xed,0xa4,0x18,0x36,0x8e,0xbe, +0x14,0x34,0x51,0xbb,0x89,0xe9,0x0f,0xa0,0x1f,0x74,0x8a,0xcf, +0x82,0x61,0x2d,0xc6,0x76,0x80,0x6e,0x27,0xb1,0xc0,0x55,0x98, +0x74,0x4e,0x53,0xb5,0xf1,0xb0,0x0c,0xec,0x44,0xc8,0x06,0x93, +0xad,0x5b,0x29,0xeb,0x11,0x0c,0xac,0x94,0xf9,0x08,0x26,0x5f, +0xd4,0xb1,0x23,0x8e,0x36,0x54,0xf4,0x83,0x66,0xf8,0xae,0xb5, +0x8f,0x38,0xd9,0x54,0xc3,0x39,0x1e,0x2a,0xfa,0x67,0xeb,0xfe, +0x71,0x91,0x46,0xa2,0x71,0xa5,0x7f,0x9a,0x93,0x1e,0xb7,0xb4, +0x98,0xc6,0x06,0xa6,0xde,0x82,0x54,0xde,0xde,0x6c,0xa6,0x9d, +0x3a,0x7e,0xc6,0xab,0xa9,0x1a,0xc9,0x71,0x61,0xfd,0x78,0xb5, +0x74,0xf6,0xe7,0x2f,0x78,0x5d,0x0c,0x9a,0xe6,0x1a,0x4f,0xf3, +0xa8,0x6c,0x38,0xa8,0x72,0x74,0x5f,0xca,0x8f,0xc2,0x60,0x43, +0xe5,0xb6,0x31,0x73,0x49,0x7b,0xf5,0x35,0x1a,0x65,0x8c,0xa6, +0xbd,0x21,0x26,0x69,0xa3,0x21,0xa4,0x11,0xed,0xdf,0x03,0x68, +0xe7,0xdd,0xd6,0xe9,0x73,0x06,0x2b,0x68,0xbe,0x84,0x4f,0x1d, +0x42,0x6f,0x59,0x64,0x1f,0xeb,0xd0,0x47,0xb7,0xcc,0x47,0x3a, +0x5e,0x9f,0x29,0x4b,0xc5,0x89,0x8a,0x3f,0xe6,0xdf,0xae,0xc8, +0xc0,0x3e,0x39,0xf0,0x41,0xfe,0xed,0x0a,0xd6,0xc1,0x57,0xcd, +0x9c,0xbc,0x19,0xec,0x19,0x56,0xde,0xe8,0x48,0xeb,0x63,0x0f, +0x7b,0xd3,0xaf,0x3b,0x83,0x3f,0x59,0x7c,0xc7,0x6e,0x1c,0x76, +0xd6,0x14,0x67,0xd4,0xa6,0xb6,0x10,0xa2,0x43,0x18,0x36,0x31, +0x86,0x6b,0xb1,0x9d,0xb6,0x9e,0x3e,0x75,0x6c,0x6b,0x56,0xf0, +0x36,0x2d,0xeb,0xf8,0xdb,0xed,0xdb,0x75,0x7c,0x3b,0x36,0x18, +0xf6,0x55,0xa2,0x9d,0xf2,0x23,0xbc,0xf6,0x37,0x1d,0x1e,0x29, +0x5c,0x06,0x61,0xbf,0xee,0xf4,0xe1,0xe6,0xa9,0x46,0x1c,0x76, +0x92,0x81,0x64,0x69,0x1b,0xb4,0x2f,0x2b,0xcd,0x96,0x5e,0x45, +0xa1,0x52,0x6f,0x6b,0x78,0xcf,0x1c,0x02,0xd3,0x84,0x69,0xe0, +0x3a,0xbe,0x39,0xe5,0x1c,0x2a,0x68,0x95,0xa1,0x0d,0x60,0x82, +0x50,0xd5,0x6f,0x19,0x8f,0x94,0xd1,0x0a,0x2e,0x0c,0xd0,0xb1, +0x58,0x9c,0xf9,0x0f,0x01,0x1e,0xf7,0x72,0xa0,0xa1,0x1d,0xaa, +0xaa,0x5f,0xf2,0x12,0x84,0xd9,0x8a,0xaa,0x9c,0x97,0xc5,0xb6, +0x89,0x78,0xe1,0xda,0xf7,0x8b,0x01,0x17,0x07,0x6b,0xd2,0xa7, +0xa7,0xf8,0x51,0x19,0x3a,0x14,0x75,0x1d,0x73,0xbd,0xcb,0xa1, +0x2c,0xaa,0x67,0xb9,0x9e,0x88,0x69,0x2a,0xde,0x1d,0xa1,0xbe, +0x7a,0x96,0x2c,0x36,0xd1,0x0a,0x38,0x5f,0x1d,0x22,0x64,0x60, +0x8e,0xdb,0x02,0xc4,0x71,0x18,0x02,0x83,0xa2,0xd5,0xd4,0x1c, +0x18,0x06,0x21,0x38,0x3e,0xc7,0x5c,0xa9,0xab,0xd2,0x58,0xcd, +0xf8,0x19,0xef,0x27,0x40,0x46,0x3f,0x1d,0xfd,0xdb,0x24,0xe2, +0x3b,0xe1,0xd2,0xab,0xaf,0x80,0xba,0x76,0x4c,0x51,0xc3,0x27, +0x0a,0x59,0xfa,0x6d,0xb2,0x04,0xb9,0xd0,0xaf,0x4d,0x82,0x49, +0xfb,0xdc,0xbb,0xea,0xfa,0x3a,0x7e,0xf1,0x79,0x92,0x41,0x38, +0x86,0xe4,0x98,0xb3,0xa2,0x71,0x24,0xe1,0xed,0x1b,0xad,0x86, +0x91,0x45,0xd6,0x1c,0xbe,0x97,0x11,0xab,0x05,0xfa,0x25,0x27, +0xe0,0x3b,0x11,0x16,0xa6,0x3a,0x76,0x38,0xa6,0xbe,0x99,0x2e, +0xa4,0x77,0x1b,0x81,0x01,0xae,0x2e,0xd1,0xee,0x54,0x59,0x57, +0x97,0x99,0x56,0x0a,0xee,0xa8,0x05,0x33,0x04,0x74,0x10,0x70, +0x5f,0x5d,0x9a,0xc6,0x09,0x2c,0xe3,0xea,0x92,0x69,0x25,0xa8, +0x52,0x5e,0xbc,0x55,0x56,0x45,0x35,0x3c,0xce,0xcd,0x4e,0xe5, +0x66,0x53,0x72,0xcc,0xd4,0x68,0x1c,0x46,0xcd,0xf6,0x8c,0x56, +0x29,0x56,0xb3,0x77,0x4d,0x5d,0xac,0x50,0xef,0xf5,0x13,0x32, +0xf0,0x92,0x18,0xa1,0xaa,0xc7,0xe6,0xf7,0x39,0x9f,0xb6,0x31, +0x39,0x30,0x88,0x00,0x47,0xe6,0x70,0x20,0x81,0xd2,0x58,0x29, +0x77,0x8c,0xc0,0x66,0x6a,0xc8,0x12,0xab,0xfa,0x18,0x55,0x3b, +0x81,0x23,0x66,0xe0,0xd6,0x23,0x32,0xb0,0x1a,0x9f,0x82,0x2f, +0xb8,0x09,0x9e,0x35,0xe8,0xf7,0xd1,0xfc,0xa1,0xe9,0xff,0x66, +0x68,0x6e,0xd2,0xd0,0x60,0xb6,0x1a,0xf4,0xab,0x30,0xbd,0xa9, +0xc6,0xe7,0xff,0x7e,0xf0,0x48,0x85,0x6d,0xfd,0x84,0x07,0xaf, +0x0e,0x25,0xf6,0xd3,0x18,0xe1,0x5a,0x57,0xff,0xbc,0x71,0xaf, +0x7f,0x42,0x8a,0x22,0x9d,0x17,0x05,0xa5,0x5b,0xe4,0x1d,0x15, +0xf4,0xb7,0x2c,0x44,0x69,0xbe,0xaf,0x0b,0xbb,0xa9,0x1b,0x0f, +0xa9,0xaa,0xab,0xdc,0xd5,0x7f,0x35,0xec,0xaf,0xaa,0xb9,0x87, +0x3d,0xaf,0x39,0xfd,0xfc,0xcc,0xf8,0x59,0x19,0xad,0xe1,0x22, +0xd3,0x1b,0xcb,0xd4,0xd8,0xee,0xdd,0x80,0x46,0xf6,0xfa,0xea, +0x83,0x47,0x56,0xe0,0x8f,0xad,0x7b,0xcc,0x1a,0x62,0x9d,0xfa, +0x9e,0xe3,0x8f,0xd0,0xee,0x69,0xeb,0x5e,0xa9,0x13,0x85,0x52, +0xd5,0x7b,0x6a,0x85,0xf7,0xa0,0xdf,0x24,0x2c,0x16,0x5e,0x19, +0x58,0x35,0x3f,0xcb,0x8d,0xd2,0xcd,0x82,0x44,0xe9,0x4f,0x63, +0x51,0x98,0xba,0xd8,0xc8,0x8e,0xbb,0xd4,0x10,0x35,0xfd,0xaf, +0x78,0xfc,0x54,0xc3,0x67,0xee,0x63,0x67,0x0c,0xa2,0xbe,0xf8, +0xc4,0xa8,0xd9,0x59,0xe0,0x03,0x51,0x18,0x90,0x2d,0xe5,0x55, +0xfe,0x5e,0xd2,0x84,0xa3,0x83,0x44,0x71,0x74,0x90,0x95,0x1c, +0x1d,0xc4,0x5d,0x37,0x90,0xea,0x16,0x89,0x51,0x53,0xb3,0xa0, +0x08,0x95,0x95,0xcc,0xfe,0xf7,0x62,0x49,0x58,0x1a,0x1b,0x20, +0xa9,0xa6,0xd4,0xd5,0x26,0x3c,0x35,0x51,0x98,0x3f,0x98,0xc5, +0x0d,0xfa,0x5d,0x22,0xdb,0x5c,0xd1,0xec,0x0d,0x36,0xbe,0xae, +0xf7,0xc2,0x78,0x84,0xf7,0xff,0x26,0xbe,0x39,0x03,0x0c,0x94, +0x54,0x45,0xea,0x50,0x49,0x6d,0x5f,0xc7,0xc0,0xe1,0x0c,0x5c, +0x2c,0xdb,0x9c,0xd5,0x0c,0xfd,0xa8,0xa4,0x50,0x8c,0x1a,0x66, +0x01,0xff,0x2b,0x49,0xce,0x19,0x2e,0xbd,0xc8,0xb4,0x2c,0xaa, +0x4e,0x4e,0x67,0xd0,0x6a,0x04,0x1a,0x99,0x6d,0xf6,0x94,0x11, +0x37,0x04,0x9c,0x21,0x11,0x84,0x9c,0x77,0xcc,0x1b,0xa2,0xab, +0x2a,0xb5,0x56,0xc8,0x52,0xcf,0x04,0x7e,0xe0,0xb2,0x7f,0x49, +0xca,0xf5,0xa9,0x50,0x5d,0xd4,0xd1,0x68,0x77,0x6a,0xb0,0x3a, +0x3a,0xd3,0x4a,0x2d,0xc6,0xa7,0x24,0xf8,0xd5,0x59,0xb8,0x37, +0x4f,0xe3,0x04,0xde,0x74,0xd5,0xcc,0xb4,0x12,0xb7,0x5c,0x35, +0x59,0xf0,0xab,0x8b,0xf1,0x2a,0xf0,0xf8,0x6b,0x22,0x3d,0xb3, +0xcd,0xd4,0xd7,0x44,0xa6,0x58,0x44,0xde,0xb5,0x1a,0x1d,0xca, +0x54,0x61,0x1d,0x35,0xa2,0x1f,0xd7,0x2d,0xca,0x75,0x3b,0x67, +0x9b,0xf7,0x9b,0xbd,0x1a,0x07,0x37,0x37,0x1e,0x1b,0xcf,0x2c, +0x6e,0xf4,0xd2,0x31,0x28,0xb9,0x15,0x4d,0x8d,0xc2,0x8e,0x43, +0x9d,0x6c,0x30,0x03,0x7c,0xb3,0x72,0xa0,0x19,0x77,0x8e,0x1f, +0xac,0x8b,0x82,0x60,0x7d,0x31,0xc7,0x3d,0xe1,0x0e,0x40,0xa8, +0xda,0x34,0x95,0x71,0x1a,0x8c,0x33,0x28,0xdb,0x5c,0xf3,0x9a, +0xc3,0x13,0x2c,0x9c,0x8f,0xa4,0x43,0x23,0x02,0x06,0xb9,0x87, +0x31,0x50,0x4f,0xc0,0xdf,0x66,0x11,0xe4,0x73,0xa1,0xf6,0x78, +0xc8,0x80,0x8f,0x84,0x0c,0xf0,0x11,0xd8,0x4b,0x15,0x8d,0xcd, +0x1f,0xec,0xe2,0x54,0xcb,0x16,0xa3,0x46,0x67,0x81,0x4e,0x08, +0xfd,0xb2,0xdf,0xcc,0x47,0x1a,0xd8,0x7a,0xfc,0x16,0x7d,0x14, +0xbf,0x45,0x3f,0x0b,0xcf,0x2c,0xb1,0x18,0xf1,0xb1,0xab,0xea, +0x52,0x0b,0x1f,0xfe,0x43,0x45,0xcf,0x76,0xa3,0xeb,0xaa,0x8a, +0x27,0xb0,0x37,0xfc,0x78,0xec,0xd8,0x1a,0x3a,0xe2,0xf0,0x5b, +0xe6,0x62,0xdd,0x15,0x87,0xba,0x01,0xe7,0xfa,0x6b,0x68,0xc4, +0xc5,0xe3,0xea,0x48,0xc7,0xbe,0x36,0x36,0xf8,0x0c,0x34,0x9a, +0xaf,0x8d,0xed,0x8f,0x55,0x71,0xfd,0x07,0x95,0x9d,0xb7,0x45, +0x28,0x12,0xd3,0x11,0xae,0xb6,0x02,0x22,0x8d,0x9f,0x54,0xf1, +0xd6,0x70,0x9e,0xe6,0x6d,0xd1,0xb8,0x44,0x5c,0x53,0x16,0x0b, +0x92,0x60,0xdf,0xcd,0x86,0xfa,0xf6,0x13,0xaa,0x51,0x7e,0xd4, +0x6a,0xdf,0x63,0xc2,0x15,0x17,0x61,0xc0,0xf9,0x41,0x1a,0x8e, +0xa3,0xa9,0x57,0x5c,0x77,0x16,0x52,0xbf,0x3e,0xe6,0xe7,0xdb, +0xfb,0x32,0x92,0x50,0xe3,0x47,0x0b,0xc9,0x20,0x9d,0x8a,0x61, +0x85,0xba,0xd9,0xd7,0x2a,0xc2,0x8e,0xf1,0xd0,0x51,0x53,0xb9, +0x50,0xef,0xaf,0xa0,0x50,0xce,0x75,0x2c,0xef,0xe2,0xff,0x5e, +0x41,0x1a,0xef,0xff,0x6b,0xc4,0x77,0x55,0x4b,0x57,0x2e,0xf7, +0x77,0xb4,0x05,0x87,0x43,0xad,0x50,0x2d,0xe7,0x31,0xc4,0xa0, +0x7e,0xb5,0xa2,0x3e,0xeb,0x58,0x22,0x2e,0x01,0x57,0x87,0x3b, +0xf6,0xd2,0x5e,0x6b,0x0f,0xcd,0x79,0xee,0x33,0x2e,0x55,0xa3, +0xf2,0x36,0x8a,0xdc,0x9f,0x84,0xaa,0x8f,0x7b,0x65,0x50,0x5b, +0x81,0x71,0xf8,0xcb,0x44,0xde,0x3a,0xaf,0xcc,0xd1,0x54,0x7d, +0x98,0xc8,0x79,0x90,0xab,0xe2,0xd7,0x71,0xde,0x2c,0xca,0x6b, +0x00,0xfd,0x0d,0x88,0xc4,0x6e,0x37,0xcc,0x61,0x4d,0x71,0x00, +0x16,0xd3,0xde,0xfd,0x70,0xd1,0xc7,0x1b,0xed,0x3f,0xe3,0x9d, +0x04,0x58,0x92,0x3f,0x0f,0x47,0x84,0x3b,0x0e,0x76,0x86,0x5a, +0x5f,0xdd,0x3f,0xbb,0xfb,0x6e,0x20,0xdc,0x53,0x9d,0xad,0x43, +0x84,0x9e,0x04,0x5d,0x1b,0xda,0xb0,0x6e,0x6e,0x7e,0xc3,0x8c, +0x6b,0x8a,0xed,0xd1,0x4f,0x5b,0xf4,0xc1,0xc2,0x75,0xeb,0xed, +0xd2,0xf7,0xac,0x80,0xc6,0x77,0xef,0x9f,0xdf,0xf1,0x3d,0x5b, +0x46,0x47,0xd6,0x0a,0x45,0xb6,0x58,0x5d,0x5c,0xc5,0x2e,0x63, +0x1d,0x6e,0x98,0xf1,0xb9,0x53,0x44,0xb8,0xfa,0x36,0x9a,0xb3, +0xb1,0xaf,0xea,0x2a,0x83,0x5a,0x0b,0x5c,0xad,0x68,0x0b,0xf6, +0x3f,0xeb,0xc1,0x4b,0x55,0x6c,0x86,0x70,0x9e,0x62,0xb2,0xdb, +0x4c,0xe3,0x86,0xfb,0x90,0xf2,0xef,0xbb,0xd4,0x82,0x59,0xa5, +0x82,0x33,0xb9,0x0c,0xbd,0xd5,0xb7,0xae,0xb5,0x56,0xad,0xd6, +0x78,0xe6,0x38,0xd7,0x4a,0x25,0xf2,0xea,0x41,0x8a,0x0c,0x6a, +0x23,0xf6,0xaa,0xa2,0xbc,0x46,0x54,0x10,0xd0,0x5b,0xb5,0x5f, +0xc6,0x85,0x43,0x73,0xf8,0x5d,0x9a,0x01,0xdc,0x4c,0xbb,0x1b, +0x66,0x2b,0x6a,0x06,0x8f,0x78,0xc0,0xd6,0x73,0xb8,0x55,0x83, +0xde,0xb8,0xc1,0x98,0xb8,0x78,0x7a,0xfa,0xa4,0xb4,0x54,0xb2, +0x0d,0x17,0x6e,0xde,0xb2,0x7c,0xeb,0xc2,0x5d,0x81,0xb0,0xea, +0x9c,0x7a,0x91,0x0c,0x1b,0xb5,0xd9,0x2d,0x5a,0xf7,0xc6,0x71, +0x2d,0x3f,0xed,0x10,0x00,0x81,0xfb,0xef,0x7f,0xfa,0xc5,0xce, +0x85,0x0b,0x03,0x56,0x67,0xac,0x5b,0xb0,0x66,0x16,0xd9,0xf3, +0x85,0x03,0x3e,0x3d,0x65,0xf3,0x35,0x57,0xf3,0x2b,0xb6,0x3b, +0x64,0x50,0x12,0xa9,0x77,0xfc,0x65,0x89,0xd5,0x36,0x56,0xc7, +0x1f,0x66,0x0b,0xc5,0x2f,0x62,0x61,0x97,0x04,0xe8,0x82,0xc5, +0xac,0x3f,0x1a,0xa6,0xc1,0x14,0x19,0xd9,0x4f,0xc4,0xe3,0xaa, +0x08,0xc7,0x3e,0x1a,0xcc,0x5d,0xa0,0xdd,0xb5,0x06,0xf3,0xac, +0x1a,0xb8,0xd3,0x0a,0x13,0x54,0xd4,0x0d,0x40,0x16,0x1d,0xd7, +0x1e,0x2f,0xbd,0x0e,0x0a,0x2c,0xde,0x3c,0x01,0x57,0x45,0xe6, +0x03,0xd8,0xee,0xb2,0x72,0x86,0x51,0xea,0x71,0xde,0x13,0x4b, +0xdc,0x45,0x37,0x81,0x5e,0xee,0xea,0x23,0xac,0xea,0xfe,0x5c, +0xbd,0x8c,0x25,0x2c,0x9f,0x41,0xe1,0xaf,0x73,0xa0,0x81,0xfd, +0xb4,0x6a,0xf8,0x4a,0xe4,0xab,0xb2,0xc8,0x4b,0x9f,0xc3,0x02, +0xca,0xd2,0x2a,0xb3,0xe0,0xaf,0x39,0x6e,0xe1,0xcf,0x5d,0x20, +0x48,0x72,0x17,0x5b,0x55,0xdc,0x22,0x9d,0x9f,0x63,0xc0,0xa9, +0x41,0x9a,0xd4,0xf7,0x90,0x30,0xfb,0xb0,0x30,0xa3,0x93,0xc6, +0x82,0x1a,0xf7,0x71,0x37,0x3e,0x96,0x56,0x4a,0xbf,0xd6,0x70, +0x86,0xc4,0xb5,0x78,0x73,0xea,0x61,0xa4,0xb4,0xb5,0x16,0xf9, +0xe4,0xb6,0x51,0x6b,0xda,0xb0,0x84,0x17,0xed,0xe6,0xfe,0x17, +0x68,0x89,0xf8,0x25,0x0c,0x61,0x6e,0x10,0xb5,0x11,0x56,0x5d, +0x8d,0xea,0x12,0x2f,0xde,0xb3,0x04,0x1b,0x5b,0x08,0xf4,0x7c, +0xd5,0xb5,0xe9,0x84,0xfd,0xa1,0xf2,0x69,0x0d,0x27,0x07,0xea, +0xe8,0xd3,0x22,0x11,0xdf,0x2f,0x27,0x6d,0x61,0x02,0x0a,0xde, +0xc9,0xa6,0x25,0xa3,0x82,0x6a,0xb8,0x5b,0x48,0xcf,0x95,0x02, +0xd7,0xab,0x45,0xd2,0x4e,0x33,0xa1,0xbb,0x1a,0x36,0x91,0x3d, +0x05,0x57,0xde,0xd0,0x70,0xfd,0x0a,0xce,0x82,0x1f,0xd5,0x15, +0x63,0xea,0xfb,0xfc,0xe2,0xd7,0xf4,0x19,0x01,0xf0,0xbd,0xb0, +0xb9,0x3a,0xc0,0x7c,0x03,0xc6,0xe2,0x81,0x2c,0xf8,0x03,0x3f, +0xd7,0x7c,0xdd,0x93,0x04,0xd7,0x2f,0x37,0x32,0xcd,0x61,0xb1, +0x68,0x77,0x7b,0xcf,0xd9,0xd0,0x33,0x19,0x3c,0x35,0xb4,0xc3, +0x78,0x5a,0xb0,0xbe,0x4a,0x84,0xc5,0x34,0x51,0x8a,0xd1,0x44, +0x79,0x9b,0x27,0x8a,0x0d,0xa6,0x83,0x76,0x2d,0x9b,0x57,0x8e, +0x73,0x6c,0x03,0xb9,0xa7,0x0a,0xae,0x5f,0x46,0x38,0x9a,0xc7, +0xb2,0x07,0x5e,0x12,0xe1,0xf0,0x90,0xfe,0xb4,0x3a,0x8e,0x92, +0x3e,0xab,0x04,0x04,0xaa,0x6a,0xb4,0x74,0x14,0x21,0x43,0xc1, +0xdf,0x32,0x95,0x38,0x15,0x6a,0x99,0x4a,0x94,0x82,0xef,0xd8, +0x54,0x72,0xee,0x10,0xf0,0x80,0x4d,0x25,0x4a,0x60,0x08,0x9b, +0x4a,0x9c,0xa0,0x4a,0x2c,0xf5,0x54,0x56,0x8b,0x4d,0x25,0xb7, +0xd4,0xe3,0xfa,0x0c,0x6a,0x29,0xe5,0x4d,0x4b,0xf9,0xd4,0x06, +0xba,0x5b,0x5b,0x6b,0x19,0x4c,0x01,0x51,0x02,0x5a,0xa9,0xec, +0x57,0x93,0x01,0xd7,0xaf,0x23,0x98,0x56,0x32,0xa8,0xa4,0x18, +0xc7,0x76,0x14,0x49,0x30,0xf1,0x6d,0x86,0xb4,0xb7,0x13,0xd8, +0x80,0x4d,0x26,0x6a,0xe3,0x2d,0x57,0xfb,0xa5,0x16,0x20,0xb6, +0x54,0x7d,0x67,0xbf,0x06,0x5c,0x4f,0x80,0x2d,0x39,0xb6,0x69, +0x51,0x93,0xc6,0x10,0x06,0x1b,0xd2,0x6b,0x03,0x09,0x60,0x9b, +0x64,0x1c,0x51,0xd6,0xe2,0xc6,0x0c,0x28,0x78,0xed,0x3a,0xbc, +0x65,0x9f,0xc4,0x16,0x97,0x0c,0xda,0x20,0x5c,0x83,0x31,0x35, +0xcf,0xcb,0x4a,0x62,0x77,0xcc,0xca,0xeb,0x4c,0xc9,0x8f,0x04, +0x59,0xaa,0x3f,0xfe,0x24,0x9c,0x5e,0x66,0x2f,0x23,0x7b,0xba, +0xed,0x83,0xeb,0xab,0xbe,0xfd,0xc5,0x7e,0x58,0xdd,0x8b,0x37, +0x33,0xf4,0xf4,0x6a,0x53,0x63,0x26,0x25,0x78,0x62,0xcb,0x06, +0x06,0xd4,0x6e,0x82,0xb5,0xf1,0x07,0xda,0x79,0xfc,0x8a,0xe1, +0x64,0xd0,0xec,0x11,0xae,0x92,0x6a,0xf8,0x35,0x86,0x6b,0x67, +0xc1,0xdd,0x58,0xf5,0xfd,0x73,0xfb,0x91,0x7c,0xb8,0x4a,0x53, +0xa3,0x27,0xb5,0x74,0xc3,0xd5,0x6f,0x82,0xf5,0x2d,0xb8,0xf6, +0x78,0xfb,0x0a,0x59,0xb8,0xa7,0x44,0x5d,0x03,0x9a,0x35,0xc1, +0x66,0x56,0xe6,0x70,0xcc,0x94,0x25,0x1a,0x93,0x69,0x7a,0x8b, +0xbf,0x50,0x8f,0xc9,0x1b,0x40,0x53,0x60,0x97,0x50,0x0d,0xa1, +0x9d,0x0c,0xf4,0x13,0xaa,0x07,0xb6,0xc9,0xad,0x43,0x59,0x7f, +0x72,0x56,0x71,0xce,0xba,0x8e,0x5b,0x21,0x8a,0xe4,0xab,0xab, +0x20,0x0d,0x5a,0xdc,0x48,0xaf,0x49,0x2d,0x25,0x67,0x4f,0x0b, +0x58,0x73,0x65,0xf5,0x77,0x3f,0xdb,0xcf,0x2b,0x32,0x3c,0x74, +0xde,0x59,0x1c,0x92,0x5e,0x21,0x02,0x5a,0x44,0x63,0x6b,0xe9, +0xbb,0x5e,0x7c,0x88,0x47,0x20,0x52,0x98,0x83,0x18,0xc8,0x53, +0x06,0x16,0x13,0xbf,0x63,0x04,0x70,0x14,0xa8,0x19,0x1c,0xa9, +0xa1,0x89,0xf3,0xa2,0x95,0xbc,0x8d,0x53,0x9d,0x1f,0x0a,0xe7, +0x18,0x71,0x11,0x8f,0x38,0x3b,0x73,0x42,0x85,0xa8,0xc6,0x52, +0x0b,0xb0,0x92,0xa1,0xaa,0xb1,0x73,0x82,0xe8,0x2f,0xd4,0xc4, +0x9b,0xd0,0x55,0x6a,0x64,0x4c,0x94,0xc0,0xda,0xd2,0x36,0x56, +0xc8,0x92,0x23,0xd8,0x81,0x76,0xb4,0x73,0x1e,0x97,0xae,0xba, +0x09,0xa9,0x5c,0x9a,0x8e,0xd5,0xa1,0xa4,0x30,0xeb,0x73,0x93, +0xc9,0x32,0xd0,0x5f,0xa8,0x3a,0x98,0x9c,0x3b,0x84,0x51,0x21, +0x19,0x5b,0xb9,0x49,0x04,0x47,0x26,0xd2,0x5b,0x98,0xe4,0xc4, +0xbf,0xc2,0xe1,0x4a,0xac,0xe9,0x9c,0xcb,0xd7,0x69,0x16,0x63, +0x31,0x98,0x11,0xab,0x76,0x64,0xc2,0x34,0x28,0x86,0xe9,0x59, +0xe6,0x19,0x8e,0x5c,0x1f,0x26,0x43,0xc8,0xa0,0xf7,0xc5,0x1c, +0x03,0xe2,0xe3,0x30,0x59,0xea,0xbb,0xc4,0xcc,0x73,0xad,0xa7, +0xd6,0x9d,0xf1,0xd6,0x9c,0xc0,0x2e,0xf8,0x8e,0x2b,0x84,0x34, +0x87,0xd9,0xcd,0xc8,0x87,0x88,0x79,0x83,0x45,0xc3,0x29,0x66, +0x45,0x06,0x06,0x1b,0x1e,0x95,0x5e,0x64,0x03,0xbc,0x82,0x87, +0x99,0xb8,0x1e,0x2a,0x30,0x5c,0x0a,0xc3,0xa5,0x65,0x99,0xbb, +0x62,0x70,0x2e,0xc1,0x4d,0x8c,0x55,0xef,0x5b,0x70,0x21,0x46, +0xfa,0x5b,0xc4,0xe8,0xa4,0x6b,0xc4,0xe8,0x6b,0xab,0xbf,0x7b, +0x64,0xbf,0xa8,0xbc,0x12,0xe0,0xb4,0x4e,0xa8,0x0e,0x59,0xa8, +0x5a,0xc7,0x61,0x92,0x85,0xaa,0x3f,0x7e,0x06,0xab,0x18,0xd5, +0x78,0x46,0x35,0x24,0xcb,0x9c,0x17,0x83,0x63,0x08,0xd5,0x80, +0x58,0x35,0x9a,0x51,0x81,0x4b,0x7a,0xc7,0x08,0x58,0xd4,0xc0, +0xc0,0x81,0x6d,0x61,0xa0,0xa6,0xa6,0xe2,0x44,0x63,0x0a,0xac, +0x88,0xc5,0x4d,0xb9,0xc7,0xc4,0xa4,0x01,0x2d,0x26,0x48,0xef, +0xc2,0xd4,0x7b,0xe9,0xf9,0x9d,0x80,0x3e,0x84,0x62,0x70,0x16, +0x5b,0x2d,0x4d,0xd1,0x2f,0xd7,0x83,0xc4,0x45,0x55,0x73,0x5e, +0xfa,0x97,0xa5,0x52,0xfb,0x50,0x98,0x13,0x70,0x85,0xeb,0x85, +0x90,0x7a,0x53,0x61,0x6a,0x54,0x1d,0x66,0xe1,0x1e,0x35,0x24, +0xff,0x37,0x57,0x58,0xaa,0xda,0x48,0x2d,0xf8,0x2f,0x19,0xcb, +0x55,0x1b,0xe7,0x68,0xa6,0x76,0x9c,0xe1,0x46,0x46,0xd4,0x8e, +0x25,0x6a,0x07,0xc6,0xaa,0x51,0x56,0xc7,0x3d,0x08,0xcd,0x75, +0xac,0x26,0x6d,0xe3,0xb8,0xd6,0x70,0xae,0x95,0x9a,0x65,0x7e, +0x14,0x83,0x69,0x54,0x6b,0x64,0xac,0x4a,0xb7,0x6a,0x95,0xb0, +0xfa,0x34,0x17,0x37,0x38,0xfb,0xd2,0x66,0xf4,0x92,0xf8,0x09, +0x37,0xb8,0xfc,0x18,0x60,0x0c,0x03,0xcc,0xcc,0x32,0x37,0xc6, +0x90,0xfd,0x54,0x0c,0x06,0xc7,0xaa,0x14,0x8b,0x09,0x2f,0xb9, +0x33,0x1e,0x58,0xc1,0xe5,0xc3,0x03,0x3d,0x9b,0x8a,0xc6,0xc7, +0xaa,0x55,0x99,0x30,0xc1,0x5d,0x7d,0x0f,0x77,0x29,0x58,0x06, +0x36,0xe1,0xb0,0x1d,0x71,0xb9,0x83,0x09,0xe9,0x97,0x02,0x93, +0x55,0xf9,0xdc,0xce,0x16,0x7e,0xdc,0x89,0xcd,0x73,0x8d,0xff, +0xd4,0x40,0x08,0x56,0x56,0x6b,0xad,0x5b,0x07,0xe7,0xd0,0x57, +0x06,0x7c,0x45,0xea,0x10,0xdb,0xc0,0x53,0x61,0x1e,0xa3,0x1c, +0xb3,0x1e,0xe7,0x3c,0xa2,0xd9,0xd4,0xd1,0x72,0x2d,0x38,0x6b, +0x96,0xa5,0xc9,0x34,0x2d,0x3a,0x95,0x27,0xd3,0x07,0x57,0x56, +0xfd,0x65,0x32,0x55,0xa1,0x31,0xf6,0xbc,0xf6,0x6a,0x32,0xad, +0x13,0xa7,0xf0,0x88,0xeb,0xb9,0xc8,0x4b,0x67,0x2c,0x45,0x64, +0xc0,0x1d,0x81,0x85,0x30,0x02,0x37,0x89,0x46,0x94,0x11,0x0a, +0x9f,0xd0,0x52,0xab,0x9a,0xb8,0xea,0xbd,0xfe,0x79,0x0b,0xa7, +0xba,0xea,0x0b,0x88,0x10,0xbf,0xe0,0xe7,0x2e,0xe0,0x04,0x4f, +0x25,0x17,0xc9,0xca,0x77,0xf3,0x8c,0x17,0xca,0x4f,0xe8,0xbe, +0x9c,0x17,0x46,0x79,0x45,0xb9,0xb4,0x2e,0xe9,0x99,0xcd,0x64, +0x85,0xda,0xd8,0x06,0x1b,0xed,0x2a,0x41,0x53,0x73,0x93,0x88, +0xc6,0xdd,0x10,0x2e,0x52,0xb8,0xc9,0x46,0x84,0x73,0x3e,0x56, +0x77,0xbd,0x67,0x15,0xa8,0x86,0xe8,0x9f,0x3b,0x81,0xe1,0xf0, +0x99,0x6a,0x80,0x19,0xee,0xcc,0x96,0x98,0x94,0x5b,0xfc,0x4d, +0x75,0x5c,0x85,0x35,0xd5,0x30,0x21,0x69,0x7b,0x40,0x3a,0x70, +0x02,0xeb,0x40,0x4a,0x92,0x0e,0xbc,0x4e,0x3a,0xd0,0xe9,0x6f, +0xb6,0x61,0x0d,0xb6,0xe6,0xc6,0xea,0x1f,0x7e,0xb5,0x1f,0x91, +0xb6,0x40,0x51,0x71,0x6a,0x93,0xd4,0x96,0x9e,0xd5,0xea,0xe6, +0x5e,0x13,0xe1,0xac,0x1f,0xbf,0x27,0xfd,0x58,0x8c,0xf4,0x63, +0x16,0xd5,0xba,0xbe,0x9a,0xf5,0x23,0xd7,0x72,0x2b,0xc7,0xaa, +0x64,0x56,0x56,0x6f,0x46,0x46,0x46,0x65,0xa8,0xde,0x94,0xfe, +0x0c,0x08,0x67,0x15,0x19,0x4a,0x2a,0xf2,0x20,0xbb,0xe2,0x0d, +0xb9,0x6e,0x25,0x8a,0xa9,0x21,0x79,0x2b,0x38,0x85,0x75,0x71, +0xdb,0x73,0x2b,0xd1,0x1e,0x7f,0xba,0x6c,0x95,0x95,0x54,0x43, +0xae,0x71,0xa2,0x19,0x56,0x94,0xb6,0x93,0x56,0xd9,0xd7,0x18, +0xe5,0xfa,0xe8,0x3f,0x53,0xd6,0x1e,0xb3,0x49,0xa5,0x6a,0xc3, +0x59,0x8f,0x5e,0x77,0xeb,0xd1,0x6d,0x7c,0xe1,0xf1,0x6b,0x8e, +0xb7,0x17,0x96,0x21,0x12,0xcc,0x75,0x7a,0x7a,0xf5,0xa9,0x71, +0x93,0x12,0x3d,0xab,0x36,0xfc,0x27,0x32,0xab,0x09,0x75,0x10, +0x43,0xf3,0x26,0x0b,0x5c,0x93,0x37,0xd8,0x02,0x24,0x05,0xfc, +0x0e,0x07,0xae,0x3b,0x28,0x14,0x28,0xcf,0x37,0x81,0xfa,0x6e, +0x72,0xa0,0x3e,0x2a,0x8f,0xc2,0xb7,0xa4,0x6c,0x69,0x95,0x1f, +0xc2,0x90,0xbc,0xdb,0x02,0x13,0x52,0xf9,0x0e,0xd1,0xcf,0xc6, +0x15,0xac,0xa2,0xaf,0xbb,0xbb,0xea,0xe7,0x3f,0xec,0xa7,0xa5, +0x4d,0x17,0xe1,0x53,0x6a,0x4c,0x68,0xe8,0xa9,0xee,0xb7,0x34, +0x35,0x0c,0xc3,0xed,0x52,0x04,0x0a,0xb8,0xbf,0x2f,0x19,0xde, +0xc6,0x8f,0xb3,0xe1,0x07,0xfc,0x18,0xc2,0x34,0x5f,0x67,0x92, +0x59,0xde,0xf8,0x5f,0x60,0x82,0x70,0x7b,0x22,0x8c,0xc7,0x9d, +0x59,0x70,0xe7,0x0c,0x54,0x34,0xb5,0x2b,0x1a,0x6d,0x6a,0x3c, +0x64,0x60,0x65,0x6e,0xed,0xb9,0xbb,0xb5,0x3b,0xab,0x7e,0x7a, +0x61,0x3f,0xa5,0xbe,0x6a,0x6d,0xbe,0x97,0xae,0xa7,0x47,0x4c, +0xa9,0x35,0xa1,0xb1,0x05,0xad,0x63,0x99,0x35,0xfd,0xa5,0xf7, +0xd7,0x42,0x16,0x9d,0x26,0xf0,0x3c,0x14,0xd5,0xaa,0x2a,0x9b, +0x91,0x9a,0x12,0x3b,0x21,0x77,0x85,0x70,0xb6,0x31,0x1b,0x1a, +0x1f,0xdc,0x5a,0xf5,0xc3,0x73,0xe9,0xf7,0xbe,0x28,0x9b,0x56, +0x6f,0x42,0x53,0x4f,0xf5,0x4d,0x2b,0x02,0x8a,0xbc,0x09,0x91, +0xa6,0x76,0x99,0x63,0x4d,0x36,0x53,0xb4,0x77,0xcf,0x72,0xd2, +0x92,0xeb,0x13,0xc9,0xae,0xa2,0xde,0xd9,0x62,0x16,0x14,0x20, +0x6d,0x33,0xe4,0xbc,0xf2,0x83,0xcf,0xcc,0xa0,0xe6,0x64,0x8e, +0x94,0x03,0x7b,0x3b,0x5a,0xdb,0x4f,0xe3,0x39,0x0e,0x79,0x14, +0x81,0xe5,0x34,0x5f,0xab,0xfa,0x27,0xd2,0xfb,0x63,0x01,0x43, +0xbe,0xa4,0x1d,0x86,0x6f,0x53,0x9a,0xa7,0x50,0x84,0xbf,0x93, +0x4c,0xe4,0x48,0xec,0xdb,0xa5,0xef,0x32,0x2a,0xfa,0xbc,0x13, +0x64,0x5e,0xc0,0x63,0x20,0xac,0xe6,0xbc,0xf0,0xb4,0xd4,0x1b, +0xd0,0xb2,0xf8,0x21,0x19,0x58,0x43,0xb0,0xa8,0xd4,0xc7,0x93, +0xbd,0xbd,0x17,0x8a,0x59,0xa5,0x6d,0x55,0x41,0x59,0x6a,0xb2, +0xb0,0x78,0x25,0x1d,0x2e,0x81,0x15,0x6e,0x42,0x05,0x8b,0x1f, +0xc3,0x55,0x01,0x59,0x22,0x9a,0xf9,0xf1,0x8b,0x71,0x99,0xf8, +0x21,0x1d,0x8a,0xdf,0xf4,0x59,0x2c,0x75,0x32,0x5b,0xdf,0x03, +0xbb,0xee,0xeb,0xe4,0xc7,0x86,0x2e,0x63,0x25,0x5d,0xea,0x9f, +0xf3,0x75,0xba,0x39,0x52,0xf7,0xa3,0x89,0xc0,0x37,0xe9,0x98, +0xa0,0xb2,0x11,0xf1,0xb0,0xe3,0x52,0xe4,0x33,0x6e,0xc7,0xf5, +0x8e,0x2a,0x04,0x31,0xf9,0xb7,0xe6,0x3a,0xe1,0x88,0xb6,0x30, +0xa2,0x91,0x75,0x5a,0xbf,0x58,0xdd,0x36,0x72,0x68,0x29,0xf6, +0x0c,0x16,0x73,0x3d,0x57,0x5d,0x5a,0x91,0xf3,0xb5,0xfd,0x4b, +0x55,0x2f,0x51,0xfa,0xce,0x14,0x09,0xb5,0x45,0x65,0xd2,0x0b, +0x8e,0xfd,0xc2,0x9c,0x0d,0x59,0x46,0x3e,0x48,0x13,0xd5,0x49, +0x57,0xb1,0x68,0xfc,0x1b,0x28,0xb3,0x1b,0x91,0x5e,0xe4,0x16, +0x83,0xdd,0x63,0xb0,0xb6,0x37,0xcd,0x63,0x4d,0x54,0xbc,0xae, +0xe2,0xb0,0x88,0x71,0x03,0xe2,0xf8,0x0d,0xbe,0xe5,0x77,0x57, +0xce,0x3a,0x13,0x60,0xdd,0x93,0x9a,0xe3,0xb9,0xea,0xe2,0x8a, +0x9c,0xaf,0xec,0x97,0x54,0xbd,0x24,0x78,0x31,0x49,0x4f,0xaf, +0x3f,0xad,0xf9,0xe4,0x36,0x32,0x42,0xb8,0x03,0x4b,0x9b,0x35, +0x55,0x11,0xd7,0x11,0x81,0xe5,0x44,0xeb,0x9b,0xe6,0x96,0x26, +0xaa,0x0a,0x37,0x1f,0x44,0xcd,0x27,0x4b,0xed,0x28,0x3f,0xb1, +0xb0,0x42,0x8a,0xdb,0xa4,0x13,0xe6,0x8a,0x54,0x35,0x55,0x7a, +0x77,0xb5,0x92,0x43,0x38,0x29,0xad,0xa4,0x99,0xc8,0x31,0x53, +0xce,0x32,0x82,0x36,0x37,0xcd,0x0d,0xf9,0x08,0x6c,0xb9,0x55, +0x85,0xd9,0x4b,0xd9,0x24,0xd9,0x53,0xd2,0xbf,0x81,0x50,0x55, +0xac,0x67,0x46,0x35,0x15,0xdb,0x96,0x4a,0x86,0xaa,0x69,0xd2, +0xdb,0xe7,0x5f,0x80,0xf4,0x27,0xbc,0x45,0x46,0x73,0x41,0x87, +0x9b,0xe6,0xda,0xbf,0x14,0xc0,0x76,0x7c,0x57,0x8a,0xf7,0xb8, +0xcf,0x3f,0x72,0x9f,0x5b,0x5b,0x7d,0x8e,0xe5,0x62,0x8e,0xc0, +0xdd,0x54,0x06,0x7e,0x2d,0xc0,0x81,0x97,0x5c,0xc5,0xc8,0x28, +0x98,0x29,0xe0,0xa0,0xb2,0xb9,0x0c,0x4a,0xce,0x10,0x3f,0xe0, +0x3c,0x59,0x6a,0x6b,0xfe,0xd0,0xc4,0x5b,0x43,0xd3,0xf4,0xa6, +0x79,0x95,0x87,0xe6,0x02,0x41,0x26,0x30,0x93,0xe7,0x30,0x93, +0xb3,0x6f,0x33,0x93,0x89,0x45,0xa9,0xcc,0xa2,0x16,0x93,0xda, +0xc8,0xd0,0x2b,0x64,0xcc,0xef,0x51,0x26,0xd3,0x93,0x74,0xd3, +0xfc,0x38,0x9f,0x1e,0x9d,0xc0,0x1a,0x30,0x73,0xd6,0xaa,0xc9, +0xd2,0xe7,0xbe,0xd5,0x60,0x33,0xdc,0x93,0x37,0xc6,0x6a,0xef, +0x39,0x2e,0x30,0x60,0xed,0x39,0x5a,0x10,0x5a,0xc2,0x36,0x81, +0x13,0x85,0xea,0x2e,0x4b,0x3a,0xc5,0x24,0xdc,0x93,0xdb,0x91, +0x5d,0xac,0x6f,0x5b,0x5f,0x12,0xfc,0x38,0xcf,0x5c,0x89,0xe8, +0x5c,0xcf,0x99,0x17,0xac,0x4c,0x5f,0xa3,0x3d,0xd4,0x4e,0xc8, +0x34,0xf7,0xc7,0xaa,0x26,0x3a,0xde,0xa3,0x86,0xb2,0xa8,0x67, +0x61,0x76,0x71,0x6e,0x45,0x66,0x8e,0xfd,0x3c,0xba,0xda,0xc2, +0x41,0x1a,0xbf,0x46,0xd3,0x5a,0x4d,0x6e,0xef,0x39,0xa3,0x2c, +0xda,0xe6,0x62,0xc1,0xa0,0x25,0xc9,0x31,0xc2,0x4c,0x55,0x45, +0xa0,0x2c,0x23,0xfa,0xc8,0x42,0xe4,0x69,0x74,0x80,0xda,0x6d, +0x39,0x9a,0x9a,0x0a,0x61,0x44,0x25,0x09,0x51,0xa2,0xfb,0x1e, +0xe4,0xa8,0x39,0x23,0xe6,0xbe,0x3d,0xcf,0x73,0xe5,0xc9,0xe5, +0x97,0xae,0xda,0xcf,0xbe,0x42,0x19,0x37,0xbd,0xcd,0x94,0xae, +0x9e,0x33,0xca,0xa0,0x66,0xa1,0xe4,0xfb,0x90,0xd7,0x70,0x85, +0xfa,0x98,0x46,0xb8,0xa6,0x80,0x1b,0xb8,0xda,0x79,0xde,0x4a, +0x1e,0x54,0x69,0xce,0x43,0x56,0xca,0xfc,0x00,0xaf,0x3a,0xd9, +0x35,0x94,0x2c,0xee,0x55,0xc4,0xec,0xba,0x56,0xf2,0x90,0x9a, +0xea,0xdc,0x6f,0xa5,0xf6,0xaa,0x34,0x57,0x2d,0xa6,0x68,0xb3, +0x45,0x91,0x37,0x51,0x54,0x27,0x9e,0xef,0xf1,0x30,0x45,0xf7, +0xd1,0x93,0x28,0xaa,0x2f,0xb5,0x13,0x02,0x7e,0xc1,0xa5,0xb8, +0x95,0x2b,0x1e,0xb3,0x2a,0x16,0x65,0xd2,0xe3,0xad,0xdb,0x9e, +0x35,0x5f,0xf1,0x20,0x5a,0x93,0xf6,0x16,0x02,0xba,0xe2,0x45, +0xf5,0x01,0xad,0xde,0x9b,0x84,0xe9,0xa1,0x3c,0x9c,0x07,0x18, +0x68,0x9f,0x05,0x64,0x67,0x20,0x62,0xdc,0xb2,0xfc,0xfe,0x32, +0x50,0x3d,0x0b,0x7b,0x5d,0x7c,0xcf,0x49,0x1b,0xa9,0x54,0xa1, +0x5a,0xcb,0x92,0xa6,0xc8,0xc0,0xcf,0x72,0xc7,0x13,0x8a,0x34, +0x12,0x8b,0x3b,0x52,0xfb,0xc5,0xc2,0x36,0x9f,0x32,0x4b,0xfc, +0x37,0xc8,0x1a,0xe1,0x12,0x67,0x3a,0x2d,0x0b,0x9b,0x05,0x84, +0x60,0x35,0x31,0x60,0x76,0x9f,0x39,0x3d,0xe6,0x7a,0xae,0xc9, +0x5c,0x79,0xef,0x81,0xfd,0xaa,0x25,0x3a,0x13,0xf5,0xf4,0x2a, +0x69,0x0d,0x53,0x5b,0x78,0xce,0x74,0x5f,0x1f,0xb4,0x7f,0x2c, +0x22,0x70,0x01,0x59,0x94,0xb2,0xe8,0x65,0xa1,0xe6,0x2e,0x22, +0xc9,0xf9,0xef,0x21,0xcd,0x8e,0x44,0x63,0x91,0xdb,0xfc,0x59, +0x76,0xf7,0x2d,0x4d,0xcd,0x99,0x4a,0xd0,0x91,0x79,0x87,0xc5, +0xd9,0x80,0x57,0xf0,0xd7,0xde,0xff,0xfa,0x07,0xfb,0x15,0x55, +0x27,0x09,0x7e,0x23,0xa1,0xad,0x96,0xd6,0x38,0xb5,0xd5,0x6b, +0xf8,0xa0,0x25,0x89,0x23,0x84,0x59,0x05,0x9f,0xe0,0x97,0x42, +0x86,0x7f,0x4b,0xb3,0x43,0x06,0xde,0x11,0x30,0x1f,0x3b,0x49, +0x71,0x99,0x86,0xe8,0x13,0x31,0x52,0xbd,0x9d,0xf7,0xbe,0x95, +0x32,0x9b,0xe1,0x5e,0x36,0xfb,0x8a,0x1c,0x15,0x66,0x67,0x7c, +0x8e,0x5b,0xac,0x64,0x1f,0xf5,0xb6,0x5a,0x40,0x36,0x06,0x8e, +0xb0,0x7e,0xf6,0x56,0x6f,0x43,0x15,0x76,0x49,0xe7,0x50,0xa5, +0x73,0xe7,0x10,0x31,0x01,0x52,0x3b,0xc9,0x61,0x4a,0xdf,0x76, +0xc6,0x09,0xd7,0x35,0xa1,0xe6,0xcc,0xa5,0xcc,0x40,0x6e,0xc6, +0xec,0x86,0x77,0x65,0x91,0x6a,0x04,0xf7,0x99,0x80,0x9d,0xf8, +0x0d,0xd9,0x72,0xb2,0xd4,0x38,0x01,0x7f,0x62,0x7f,0xb0,0x5b, +0xb9,0xb1,0x18,0x27,0x7d,0xdb,0x89,0x24,0x42,0x97,0x4e,0x50, +0x41,0x8c,0x6a,0x99,0x1a,0xc2,0xe1,0x4b,0xa9,0xb4,0x2e,0xce, +0x92,0xde,0xbf,0x5a,0x30,0x8f,0x70,0x90,0x73,0x81,0xc8,0xa5, +0xfd,0x05,0xad,0x71,0x11,0x69,0x35,0xc6,0x37,0xa2,0x55,0x8a, +0x6f,0xd5,0x46,0x62,0xa0,0xb5,0x2e,0xfe,0x50,0x0d,0x22,0xf9, +0x67,0xe5,0xd6,0xaf,0x96,0x47,0x7f,0x88,0xd4,0x7c,0xff,0x05, +0x44,0x38,0x06,0xf0,0xaa,0xb8,0x2d,0x13,0x1e,0x56,0x86,0x70, +0xca,0x78,0x6b,0xdf,0x74,0x0d,0x0b,0x0e,0x6c,0x8f,0x25,0xd0, +0xcb,0x71,0xbc,0xf7,0xc5,0x73,0x07,0x0e,0x6e,0x39,0x18,0xb8, +0xe4,0xbd,0xa5,0xe9,0x4b,0x66,0x43,0x30,0x06,0x71,0x50,0xad, +0x60,0x28,0x99,0xb6,0x72,0xea,0x82,0x34,0xe9,0xe5,0x27,0xf6, +0x65,0x1c,0x38,0x6d,0xdf,0x31,0x10,0x82,0x79,0x71,0x80,0x17, +0xb4,0x8e,0x56,0xd6,0xd7,0xde,0x59,0xf5,0xe0,0xb7,0x37,0xeb, +0x68,0x64,0x5a,0xed,0xf1,0x4d,0x78,0x1d,0x25,0xf4,0x65,0xb2, +0xa1,0x0c,0xfd,0x29,0xc6,0x4f,0xc0,0x55,0xd2,0xe6,0x46,0x76, +0xeb,0x80,0x45,0x43,0x8f,0x74,0x0b,0xb8,0x7a,0xf1,0xd0,0x81, +0x6d,0x07,0x96,0x66,0x64,0xa4,0x2f,0x9d,0x05,0x15,0x31,0x34, +0xe0,0xf0,0x11,0x0c,0xa7,0xcd,0x99,0xff,0x24,0x31,0x75,0xc6, +0xdc,0x45,0x1b,0xf6,0x2e,0xdf,0xb7,0xf0,0x64,0x20,0x94,0xb9, +0x80,0x35,0xa1,0x98,0x86,0xd3,0x95,0x17,0x2f,0xbf,0x13,0xdd, +0xcb,0x6f,0x03,0xe3,0x83,0xdb,0xaf,0x97,0xdf,0xba,0xd6,0xf2, +0xdb,0x12,0x46,0x62,0xe5,0x6c,0xa8,0x0c,0x93,0xb1,0xa0,0xb3, +0x9e,0x80,0x82,0x30,0xf2,0x8a,0xe6,0xf2,0x56,0xd3,0x68,0x09, +0x26,0x36,0xa8,0x3b,0xad,0xcd,0xc5,0xf3,0xf5,0xf4,0xf0,0xb4, +0x9a,0xaf,0x59,0x11,0x11,0x85,0x3b,0x48,0x1a,0x52,0xf8,0x6e, +0x78,0x01,0x88,0xd0,0x9a,0x21,0x3f,0xad,0x0a,0x11,0x7c,0x27, +0x99,0xd6,0x3d,0x5d,0x7a,0x36,0x26,0x6b,0x73,0x94,0xa8,0x98, +0xd6,0x60,0x62,0xac,0xa7,0xfa,0x56,0x96,0xca,0x13,0xff,0x32, +0xbf,0x24,0x89,0x8d,0xcf,0x5a,0x41,0x6c,0xf5,0xc6,0xc0,0x24, +0x18,0x10,0x86,0x7d,0xb1,0x99,0x26,0x3d,0x6b,0x8b,0xf3,0xd2, +0xef,0x82,0xa0,0x65,0xbf,0x2f,0x8c,0x6a,0x0c,0xde,0x44,0xa2, +0xcc,0x02,0x09,0xe3,0x69,0x51,0xae,0x8d,0xd7,0x0d,0xac,0x00, +0xf6,0xe6,0x2a,0x08,0xf6,0x98,0x41,0x2d,0x34,0xfc,0x9e,0x2c, +0x79,0x6a,0xbc,0xc2,0xff,0xd2,0x78,0xc9,0x53,0xdc,0xf3,0x16, +0xc6,0x07,0x39,0xab,0xbe,0xfb,0x5b,0x81,0x51,0xc5,0xdd,0xfa, +0x44,0x6a,0x3d,0x52,0x6a,0xff,0x10,0x33,0x5f,0x92,0x99,0xf1, +0x4e,0x3c,0xb5,0x37,0x0c,0x0b,0x8f,0x6d,0x0b,0xdd,0xce,0x84, +0x41,0x61,0x98,0x70,0x59,0x53,0xb5,0x55,0x61,0xe9,0x3f,0x42, +0x0c,0xee,0x63,0x6f,0x71,0xae,0xfd,0xb3,0x67,0xe7,0x4e,0x5d, +0xdd,0x37,0x61,0x67,0xef,0x75,0x8e,0x25,0xcf,0x4f,0xaa,0x20, +0x1d,0x7a,0xe2,0x28,0x63,0x8a,0xd6,0x79,0xc0,0x27,0xc7,0x8f, +0xed,0xfe,0xe4,0x58,0xf0,0x2a,0xed,0xf8,0xae,0x61,0x9d,0x3b, +0x0d,0x1c,0xd6,0x29,0x98,0x87,0xda,0x65,0xd9,0x01,0x6c,0xf7, +0x3c,0x63,0xc6,0x97,0x7b,0x65,0xf7,0x50,0xc3,0x7e,0xd9,0xe0, +0x07,0x43,0xd0,0xef,0xfc,0x50,0x4d,0x46,0x6c,0x10,0x27,0xfa, +0x9d,0xbe,0xb4,0xf7,0xc8,0xa6,0xc3,0xd2,0x7f,0xbf,0x98,0x15, +0x08,0x01,0x58,0xfe,0x8b,0x03,0x68,0x87,0xa8,0x69,0x2b,0xa7, +0x2e,0x9c,0xc2,0x32,0x74,0x28,0xe3,0xe8,0x45,0xfb,0xae,0x8e, +0x50,0x54,0xc7,0x45,0xb4,0x54,0xb0,0xb9,0x62,0x7a,0x34,0xd7, +0xf0,0x4b,0x0f,0xe9,0x37,0x55,0x48,0x87,0x8f,0x80,0x11,0x18, +0x95,0x0d,0x51,0x30,0x0d,0xa3,0x6e,0xd0,0x9f,0x61,0x97,0xd9, +0x58,0x09,0x95,0x36,0x21,0x76,0x65,0x7c,0x76,0xd4,0xfe,0x49, +0xcc,0x48,0xbd,0xee,0xf0,0xae,0xe5,0x9b,0x39,0xc2,0x7e,0x4c, +0xcb,0x48,0x5b,0x88,0x61,0xfc,0x08,0xfd,0x11,0xfb,0xd6,0x98, +0x51,0x7a,0x8d,0x3e,0xc9,0x68,0xaf,0xe6,0x38,0xd2,0x39,0xf3, +0xd8,0xd1,0xbd,0xdb,0xf7,0x05,0x66,0x2c,0xb6,0xde,0x47,0xae, +0x88,0x01,0x01,0xd9,0x27,0x28,0x67,0xef,0xb2,0xc5,0x19,0xee, +0x27,0x5f,0xbd,0xf9,0xc9,0xd7,0x08,0x28,0x6c,0x1e,0x61,0x13, +0xe8,0x19,0xf5,0x8f,0x44,0xf9,0xeb,0x55,0x0f,0x5f,0x48,0x8f, +0xad,0x34,0x69,0x6a,0x8d,0x67,0x63,0xb0,0x95,0x2c,0xd9,0x84, +0x39,0xdf,0xdc,0xe2,0xfc,0x13,0xfb,0x09,0xf5,0x55,0x82,0xf9, +0xde,0x3c,0x3d,0xbd,0x42,0x5a,0x83,0x09,0x34,0x00,0xdf,0xc4, +0x43,0x0a,0x86,0x5c,0x18,0x0b,0x9f,0x6c,0xb8,0x00,0x21,0x90, +0x72,0x49,0xc3,0xed,0x58,0xdf,0xc0,0x15,0xbf,0xc3,0x0a,0x2d, +0x52,0x95,0x80,0x56,0x6f,0x90,0x4b,0x7e,0xb4,0xa0,0x74,0x28, +0x9b,0x57,0xa1,0x50,0x5a,0x6f,0x86,0xa5,0xa5,0xd7,0x38,0x41, +0x36,0x1f,0x3f,0xb1,0x8b,0x7a,0x65,0xcb,0xb8,0xb2,0x49,0xcf, +0xd2,0xc2,0x99,0x6c,0x56,0x31,0xdc,0xd5,0xd1,0x3f,0xde,0xc4, +0x4b,0xe8,0x07,0xa5,0x61,0x2c,0xb1,0xe1,0x0b,0xec,0xc9,0x40, +0xf7,0xf9,0x19,0xcc,0x74,0xf7,0xc8,0xa7,0xa0,0xe3,0xca,0x28, +0xf8,0x70,0xe3,0x15,0x70,0x40,0xca,0x65,0x6e,0xbf,0x2e,0xb5, +0xff,0x3c,0xef,0xa6,0xc0,0x53,0x6c,0x91,0x25,0x98,0x76,0x63, +0xdd,0x37,0xab,0x9e,0x40,0x21,0xfb,0x19,0x95,0xd3,0xda,0x4c, +0x9f,0xaf,0x63,0xa1,0x29,0x55,0xc7,0xd7,0x73,0xa8,0xaf,0xad, +0xcb,0xe8,0xb4,0x9d,0x59,0x2a,0x1d,0xc7,0xb8,0x66,0xb0,0xb1, +0xee,0xde,0xaa,0x5f,0xa0,0xc0,0x9b,0x9a,0x05,0xa6,0x54,0x1b, +0xdf,0xe0,0x55,0x4d,0xec,0x81,0x2f,0x65,0x29,0x5f,0xe1,0x8c, +0x37,0xc3,0xb9,0xe6,0xe3,0x97,0xd2,0x6f,0xa5,0x08,0x4d,0x7b, +0x6b,0x7c,0x03,0xcf,0x57,0x55,0xc6,0x91,0x69,0x66,0xb4,0x17, +0xf8,0x11,0x6f,0x4a,0x66,0xca,0x80,0x8a,0x9c,0x6c,0x86,0x75, +0x65,0xc9,0x8e,0xdc,0x42,0x79,0x63,0x2d,0x1b,0xec,0x0c,0x17, +0x9e,0x56,0x9d,0x67,0x63,0x3e,0x5c,0x7b,0x42,0x6d,0x54,0xa0, +0x9d,0xc8,0x3d,0xde,0x89,0xfc,0x26,0x4b,0x34,0xa5,0xee,0xc5, +0xf0,0x86,0x62,0x91,0x0c,0x89,0xe2,0xc8,0xca,0xdb,0x6e,0xf1, +0x0d,0xd9,0x0a,0xca,0x2e,0xed,0x67,0x78,0x1f,0xda,0x43,0x3a, +0xf6,0xb2,0x36,0xde,0x76,0x4b,0xa3,0xb9,0x13,0x6e,0xe5,0x0e, +0xc3,0xee,0xb2,0xc8,0x65,0xeb,0x16,0x52,0x05,0x08,0x31,0x52, +0x66,0xf7,0x9a,0xd3,0x7d,0xae,0xe7,0xda,0x5b,0x2b,0x1f,0x3e, +0xb7,0xdf,0x50,0xcd,0x12,0x00,0xc7,0xe9,0xe9,0x51,0x69,0xd5, +0x27,0x44,0xd3,0x32,0xe1,0x83,0x72,0x2e,0x06,0xe6,0x3d,0xa5, +0xdd,0xe8,0x25,0x69,0xac,0x66,0x5c,0xe3,0x2c,0x5c,0x9e,0xd2, +0x7e,0x96,0x77,0xa4,0x35,0x64,0x89,0x6e,0x9c,0xbb,0x39,0xbf, +0x05,0xef,0xad,0x02,0x1f,0xa8,0xd2,0x32,0xe4,0x77,0xa6,0x27, +0xf5,0x96,0x99,0x4a,0xf4,0xe0,0x0b,0xdc,0xce,0xfb,0xd5,0x44, +0x19,0xb8,0xe6,0x7f,0x64,0x87,0xa9,0x04,0x19,0xf0,0xfe,0x3f, +0x67,0xdf,0xc2,0x85,0xb2,0xd4,0x65,0xe1,0xdc,0xc7,0xdb,0xd8, +0x04,0xe9,0xdd,0xd6,0xda,0xc7,0xfe,0x3e,0x54,0xfc,0x0e,0x43, +0xcf,0xe0,0x2e,0x55,0x14,0x4e,0x9c,0x25,0x05,0xbb,0xcf,0x0d, +0x5f,0x32,0x9c,0x17,0xc0,0x71,0xd6,0xbd,0xca,0x00,0x82,0xae, +0x8b,0x4d,0x65,0xf1,0xed,0x42,0x06,0xf4,0xe1,0xdd,0xed,0x5c, +0x69,0xdb,0x40,0xe9,0xde,0xe2,0x1e,0xee,0x95,0xe2,0x7b,0xda, +0x65,0x09,0xda,0xe9,0x1e,0x97,0x01,0xa3,0x99,0xf2,0x4d,0x16, +0xe5,0xcd,0x09,0x6a,0x3e,0xd6,0x97,0xe2,0x6b,0xab,0x98,0xf6, +0xbb,0x52,0x86,0xcc,0xe4,0xf6,0x69,0xc3,0xdb,0x4a,0x3a,0x2e, +0xb8,0xb3,0x5b,0x62,0x57,0x19,0xf4,0x8f,0xbf,0x83,0xd1,0xb6, +0xb7,0x91,0xf4,0x5e,0x23,0x3e,0x1b,0xbf,0xa3,0xc3,0x7a,0xe9, +0x7d,0x4d,0x48,0xbf,0x8f,0x84,0x7a,0xa0,0x16,0x19,0x70,0x18, +0x6c,0xf7,0x6f,0x59,0x1f,0x6b,0x82,0x5a,0xc1,0xb5,0xfe,0x3a, +0x1a,0x31,0xf1,0xb8,0x21,0xd2,0x01,0xd9,0xaa,0x87,0xf4,0x31, +0xf9,0x43,0xfa,0xe2,0xdb,0x1a,0x1e,0x31,0x0b,0x18,0x8f,0x94, +0xbd,0x15,0x5c,0xe5,0x83,0x64,0xaa,0xf2,0x61,0x94,0x63,0x4f, +0xb2,0xcd,0x02,0xb7,0x8e,0xca,0x73,0xd4,0xa0,0x9d,0x5c,0x79, +0x0a,0x57,0xa6,0xbd,0xd9,0xcf,0xca,0xde,0xda,0xaa,0x5c,0x22, +0x26,0x81,0x2b,0xef,0xa5,0xca,0x87,0xf2,0x2b,0x43,0x5f,0xf5, +0x28,0xef,0x09,0xd7,0xee,0x6c,0xd5,0xbe,0x66,0xfc,0x64,0xa1, +0x1e,0xa8,0xa3,0x5f,0x4c,0x22,0x7e,0x58,0x36,0x1f,0x75,0xa1, +0xfb,0x7c,0x4a,0x0e,0xef,0xd1,0xe6,0x47,0x64,0x0a,0x19,0xf4, +0xab,0x30,0x15,0x9f,0x85,0x9f,0x15,0xae,0x26,0xf0,0x87,0x74, +0xc4,0x09,0x08,0xb7,0x8e,0xc2,0xa5,0xf7,0x63,0x81,0x0b,0x5d, +0xfd,0xf3,0xbe,0xb4,0x92,0xb0,0x59,0x15,0x95,0x1e,0x0b,0x04, +0xee,0x96,0x36,0xd7,0xab,0xc0,0xdb,0x47,0xe0,0x29,0x13,0x25, +0x3d,0x2f,0x88,0x3d,0x6d,0xdc,0x84,0xf3,0xb9,0x76,0xb4,0xfa, +0xa0,0x8d,0xc8,0x5b,0xc8,0xb7,0xca,0xf9,0xcb,0x0e,0x31,0xe1, +0x6a,0x0a,0x33,0x81,0x88,0x8e,0xc8,0x27,0x43,0xfb,0xe6,0x26, +0x44,0xdb,0xf1,0x43,0xeb,0x00,0x5c,0x86,0x91,0x05,0xf4,0xf0, +0xbe,0xf4,0x39,0x2a,0x16,0xe2,0x55,0xe3,0x54,0x2f,0x1b,0x94, +0x03,0xcf,0x53,0x39,0x50,0xd9,0xfe,0x3b,0x0e,0x8d,0x87,0x88, +0xae,0x3a,0xfa,0x74,0x6b,0x85,0x21,0xa1,0x0e,0x0c,0xc5,0x1a, +0xb4,0xf8,0x87,0xd1,0xd2,0xf5,0xf0,0x6b,0xe3,0x01,0xa6,0xc5, +0x43,0xed,0x81,0x7a,0x54,0x97,0x44,0x8c,0x28,0xef,0x38,0x4e, +0x80,0x95,0xa5,0xdf,0x04,0xe1,0xc6,0xa0,0x11,0x86,0x8a,0xf6, +0x17,0x16,0x86,0x6e,0x3a,0x16,0x61,0x0c,0xe1,0x0e,0x78,0x88, +0x47,0x9c,0xab,0x09,0xc5,0x79,0x42,0x71,0x59,0x16,0xab,0x21, +0xa4,0x5e,0x85,0x92,0x10,0xec,0xda,0x2b,0x5a,0xaa,0xe6,0x79, +0x3f,0xbf,0xce,0x80,0x71,0x7c,0x8a,0xfd,0xae,0xd4,0x86,0x88, +0xdc,0x13,0x94,0x73,0x93,0x6a,0x98,0x3e,0x78,0xe0,0x61,0xfe, +0x4f,0x2a,0xc7,0x87,0xae,0xee,0x52,0x9b,0x9a,0x9f,0x21,0x8b, +0xcd,0x7b,0x9d,0x2a,0x4f,0x4d,0x5c,0xa2,0xe4,0x57,0xc6,0x8f, +0x98,0x96,0x00,0xb5,0x07,0xb8,0xa9,0x2c,0xe7,0x38,0x46,0xc4, +0x55,0x91,0xfe,0x5e,0x02,0xca,0x83,0x4e,0x24,0x56,0xb2,0xff, +0x86,0x43,0x13,0xac,0x4e,0x16,0xe9,0xd6,0x92,0x49,0x7c,0x86, +0x43,0x15,0x89,0x6e,0xe8,0x2c,0xaa,0x92,0x5b,0x48,0x84,0x63, +0x4c,0xee,0x50,0x21,0x7d,0x3f,0x16,0xdf,0xd1,0x2f,0x2c,0x88, +0x0d,0xa4,0x9e,0x47,0x44,0x02,0x61,0x27,0x4b,0x35,0x46,0x9c, +0xc4,0xc8,0x67,0xa4,0x13,0x9e,0x0a,0x33,0x49,0xda,0xbe,0x12, +0xf0,0xb3,0xfa,0xdd,0x98,0xf6,0xfe,0x14,0xfe,0x00,0x30,0x33, +0x40,0xfa,0xa6,0x88,0x63,0x3d,0x2e,0x9e,0x3f,0x78,0x64,0xdb, +0xe1,0xc0,0x25,0x4b,0xd9,0xb0,0x90,0xbe,0xc1,0xc2,0x69,0x33, +0x27,0xf3,0x43,0x56,0x43,0xb3,0xcc,0x59,0x31,0x38,0x82,0xf4, +0x68,0x1f,0xeb,0x6b,0xb1,0x2a,0x6c,0x36,0xcd,0xdb,0x2b,0x06, +0x68,0x11,0xfd,0x12,0xd0,0xbb,0xa2,0x3a,0x2c,0x5e,0x1e,0xb9, +0x0e,0x81,0x76,0x28,0x3b,0xde,0x40,0x9f,0x01,0x2d,0xb1,0x48, +0x94,0x2c,0x7a,0x5a,0x40,0x45,0xe9,0x77,0x57,0x40,0xa6,0xab, +0xb0,0x6b,0x11,0xe3,0x5a,0xcc,0xb8,0xba,0x64,0x99,0x3d,0x63, +0xb0,0x2b,0xe1,0x8a,0x8f,0x51,0x71,0x16,0x2e,0x07,0xb4,0x17, +0xe0,0x54,0x64,0x8e,0x5d,0x17,0xce,0xe9,0xfc,0xd9,0xb4,0x27, +0x15,0x27,0xc7,0xa8,0xf8,0x2c,0x68,0xeb,0x06,0xe9,0xa3,0xab, +0x73,0x5d,0xf3,0x6c,0x02,0x3d,0x5c,0x13,0x4e,0xfe,0xc7,0x4a, +0x25,0x5c,0x13,0x5c,0x87,0x68,0x58,0x04,0x3c,0x52,0x8f,0x5c, +0xfc,0x3a,0x93,0xc0,0xe2,0xae,0x09,0x27,0xac,0xac,0x66,0xaa, +0xbb,0x0b,0x99,0x9c,0xa9,0x4c,0x4e,0x4a,0x96,0x99,0x1a,0x83, +0xc3,0x08,0x55,0x4f,0xeb,0x1b,0x33,0x91,0xd3,0x80,0xc8,0xd9, +0xa0,0xf6,0xb9,0xfe,0x24,0xeb,0xde,0x25,0xa0,0x93,0x32,0x21, +0x9a,0xb6,0x66,0x01,0x62,0x8a,0x6a,0x1b,0x9b,0xdf,0xf6,0x48, +0x02,0xe8,0x1b,0xa3,0xc6,0x64,0xc1,0x20,0x42,0x32,0xd2,0x3a, +0x03,0x3d,0xd7,0x4e,0x6a,0xfb,0xf9,0xe6,0xe3,0x7b,0x66,0x55, +0x0b,0x14,0x9b,0xab,0xb9,0x30,0xdc,0x02,0x9d,0xa1,0x3a,0x26, +0x08,0xd7,0x0d,0xa1,0x16,0xe4,0x80,0xa7,0x8b,0x54,0x6d,0xef, +0x93,0xff,0x0f,0x92,0x1c,0xfc,0x13,0x01,0x9c,0xf8,0xff,0x25, +0xc9,0x21,0x9f,0x11,0x8a,0x5d,0x2c,0xc9,0xc8,0x6f,0x7e,0x1c, +0x66,0xb1,0x7c,0xc4,0x62,0xb9,0xf8,0x4d,0xc6,0x2b,0x39,0x76, +0x67,0xbc,0x96,0xe3,0x37,0x00,0xf9,0x72,0xec,0xce,0x60,0x39, +0x7e,0x95,0x2a,0x6f,0xf5,0x6d,0x7e,0x0e,0x68,0x56,0xdf,0x4e, +0xc1,0x4e,0x51,0x55,0x95,0x33,0x0b,0x93,0x3d,0xf2,0xb3,0x38, +0x20,0x8d,0x8a,0x56,0xe2,0xe0,0xff,0x55,0xca,0xff,0x07,0x72, +0xc8,0xc3,0x8f,0x9e,0x10,0x5f,0xbe,0xe5,0xe6,0x49,0xde,0xa1, +0x07,0xee,0x97,0xda,0x0a,0x52,0x55,0x07,0x28,0xe7,0x08,0xcb, +0xfb,0x7e,0x0c,0x7b,0x4a,0xdb,0xa6,0xbe,0xf9,0x35,0xdc,0xf3, +0x43,0x3d,0xe6,0x2f,0x52,0x50,0x50,0x7a,0x64,0xe6,0x77,0x71, +0x14,0xed,0x91,0xf4,0x4d,0x7f,0xa9,0xf8,0x7a,0xea,0xbc,0x41, +0x65,0x4d,0x1d,0xe7,0x4c,0xb7,0xa3,0x47,0x80,0x3b,0x3e,0x3c, +0xf8,0xd0,0x6a,0x12,0x70,0x5d,0x06,0xf4,0x12,0x30,0x18,0x07, +0xb0,0xa3,0x47,0x00,0x3b,0x7a,0x6c,0xc6,0x4b,0x26,0x4d,0x4b, +0x3f,0x4d,0xa8,0xa9,0xd7,0xa1,0x08,0x65,0x96,0xbc,0xce,0x1e, +0x1e,0xe7,0xdc,0xb3,0x6e,0x30,0xa6,0xb0,0x37,0x47,0x00,0x7b, +0x73,0x6c,0xc5,0x53,0xae,0xa9,0xc2,0xfc,0x07,0xbb,0x73,0x04, +0x60,0x09,0x19,0x76,0xff,0xd5,0xdc,0x7c,0xda,0x8c,0xbd,0x36, +0x02,0xd8,0x6b,0xa3,0xb8,0xda,0xee,0x5c,0xce,0x95,0x24,0x57, +0x2a,0x62,0x5d,0x40,0x2c,0x49,0x45,0x9e,0x71,0x6a,0xd8,0x75, +0x0d,0x5d,0xff,0x2f,0x13,0x91,0xd1,0x32,0x6c,0x49,0xfd,0x77, +0x75,0x94,0xa6,0x24,0x61,0x7d,0x8b,0xb0,0x46,0x5c,0x37,0x7b, +0x72,0x88,0xea,0x80,0x17,0x71,0x2a,0xce,0xc2,0x69,0x4d,0xc8, +0x27,0x09,0x06,0x6d,0x05,0x03,0xc0,0x57,0x6f,0xa5,0x02,0xa4, +0x20,0x0d,0x1f,0xec,0x23,0xcc,0x64,0xab,0x39,0xd5,0x99,0xb0, +0x35,0x65,0x27,0x88,0x00,0x08,0xd4,0xf1,0x90,0xcb,0x6e,0x36, +0x11,0x50,0x44,0xe0,0x09,0x57,0x55,0x97,0x2b,0x9f,0x57,0x02, +0x03,0x7e,0x8f,0x53,0xf1,0xd7,0x9f,0x42,0x40,0xd8,0xf5,0xd7, +0x93,0x13,0x06,0x61,0x1b,0x03,0x7c,0xa9,0x33,0xbe,0xba,0xea, +0xae,0x8e,0x9e,0xfc,0xef,0x6b,0x0f,0x23,0xaa,0x0f,0xfd,0xd7, +0xd5,0x17,0xe1,0x53,0xd7,0x6f,0x4c,0x14,0x18,0x6a,0x33,0x2b, +0x01,0x22,0xef,0x27,0x57,0xcd,0x13,0x56,0xe2,0x67,0x57,0x4d, +0x69,0x4b,0xe5,0xe4,0x00,0x15,0x48,0xea,0xc0,0x1a,0xb0,0x29, +0xaf,0x07,0x6c,0x05,0xe1,0x7b,0xd3,0xd3,0xc1,0xd8,0x97,0x3d, +0x35,0x02,0xd8,0x53,0xe3,0x5d,0xb5,0xd1,0x8c,0xcc,0xa7,0xc1, +0x8f,0x7a,0x5f,0x28,0x4e,0xa5,0x5c,0xa7,0x5d,0x4a,0x00,0x7a, +0x5e,0x27,0x13,0x45,0x9d,0xeb,0xc0,0xbc,0x1b,0x84,0xdd,0x0c, +0x28,0xc9,0xb8,0xf4,0xd9,0xf8,0x08,0xfe,0x64,0x56,0x87,0x1b, +0xf9,0x95,0xe2,0xde,0x00,0x32,0xb3,0x1b,0x58,0xcc,0x8e,0x7b, +0x35,0x34,0xd8,0x56,0x8d,0x70,0x59,0x00,0x45,0x19,0xa0,0xf3, +0x75,0xf3,0x7e,0xdc,0x2b,0xb1,0x9b,0x6a,0x01,0xb4,0x31,0xb0, +0x5b,0x22,0x94,0x4c,0xd1,0x42,0xfa,0xb5,0x46,0xef,0xb2,0x34, +0xe8,0x50,0xf8,0x48,0x16,0x38,0x68,0xd4,0xc7,0x19,0x58,0x6c, +0x40,0x73,0x2c,0x12,0xea,0x0c,0x11,0xe0,0x79,0xe0,0x16,0x54, +0xb1,0xff,0x81,0x2d,0x13,0xc1,0x43,0xb7,0x06,0x3f,0x98,0xd0, +0x04,0xeb,0xe3,0xd5,0x4a,0x18,0x61,0x8d,0x26,0x98,0xc6,0x0f, +0xd8,0x2d,0x09,0x4a,0x0e,0xd0,0xff,0x3e,0xa2,0xe0,0xa9,0x36, +0x01,0x9f,0x95,0x18,0x22,0x55,0xed,0x21,0xf5,0x47,0xe4,0x54, +0x63,0x72,0xf4,0xeb,0xe6,0xd0,0xb8,0x7c,0xe6,0xb7,0xb4,0xa8, +0x89,0x62,0xb6,0x3f,0x69,0xf1,0x4a,0x56,0xc8,0x82,0x65,0xe7, +0x97,0x99,0x6e,0xe7,0x97,0x00,0xb0,0xc5,0xa9,0x31,0xd7,0xc1, +0x93,0x40,0xfd,0xae,0xbf,0x51,0x92,0xc4,0xa0,0x5e,0xaf,0x59, +0xba,0x14,0xcf,0x90,0xc2,0xe4,0x51,0x39,0x4e,0xd2,0xf3,0xd0, +0x6a,0x55,0x05,0xa9,0x68,0x52,0x9d,0xff,0x7d,0xb3,0xef,0xb0, +0x93,0x8c,0xf4,0xaa,0xc9,0x57,0xbd,0xfc,0x73,0x04,0x04,0xcb, +0xc0,0xd2,0xc2,0x6c,0x81,0x1b,0x9d,0xcb,0x28,0xbb,0xb2,0xc0, +0xfe,0xd2,0x6b,0x99,0x00,0x49,0x4a,0x74,0x4a,0x3c,0xd4,0x72, +0x2b,0xd1,0xf0,0xf2,0x8e,0x13,0xa4,0x82,0x2a,0xb2,0x12,0x3d, +0xe9,0x56,0xa2,0x27,0xdd,0x4a,0x74,0x70,0x3c,0x84,0xb1,0x12, +0xed,0xde,0x0a,0x83,0xc3,0x1d,0x66,0x14,0x1e,0x55,0x9b,0x85, +0x2c,0xb2,0x50,0x0c,0x54,0xcd,0x4f,0x5a,0x89,0x4e,0xaa,0xb9, +0x73,0xb7,0x95,0x32,0xeb,0xe1,0x44,0x45,0x6a,0xde,0x76,0x4d, +0x98,0xad,0xf0,0x50,0x5f,0x2b,0xd5,0x59,0x35,0x3f,0x61,0x25, +0xf8,0x45,0xa3,0x0f,0xdd,0x85,0x43,0x2a,0xcb,0xe2,0xf3,0x89, +0x1a,0xd2,0xc1,0xfd,0xa4,0xcf,0x43,0x11,0xd5,0x99,0x48,0x28, +0x67,0xe9,0xf1,0x4a,0x50,0xe0,0x5c,0x16,0x04,0xd9,0x17,0xe2, +0x97,0x06,0x93,0xf4,0x46,0x1f,0x0e,0x49,0x80,0xf0,0x7c,0x7d, +0x48,0x94,0x40,0x11,0x1c,0xda,0x26,0x3f,0x88,0xe6,0x00,0x2c, +0x91,0x08,0x25,0x30,0x35,0xc7,0x9c,0xaf,0xab,0xb4,0x9e,0x06, +0x4e,0x61,0xdd,0xaa,0x95,0x61,0xac,0x15,0xa4,0x28,0x45,0x9b, +0xe7,0x73,0x99,0x60,0x27,0x9c,0x17,0x8c,0x13,0xb9,0x5f,0x08, +0x0b,0x95,0xb4,0x85,0x0b,0x0c,0x8e,0x70,0x34,0xc4,0x18,0xd5, +0x96,0x2c,0x64,0x81,0x03,0x98,0x94,0xff,0x0e,0xa8,0x2a,0x36, +0x54,0x8b,0xa8,0x03,0x55,0x04,0x76,0xc0,0x12,0x49,0x50,0x42, +0x53,0x35,0xa0,0xa4,0x71,0xdf,0x6a,0x79,0xa8,0x5e,0xad,0xb3, +0x0c,0xfb,0x80,0x2f,0x58,0x9f,0xe8,0x25,0x23,0xb6,0x91,0x8d, +0xd8,0x5b,0x0f,0xe9,0x9e,0x80,0x21,0x15,0x1c,0x5f,0x61,0x59, +0xe7,0x42,0xf1,0x9e,0x50,0x2b,0x68,0x85,0xad,0x05,0x4f,0x64, +0xe8,0xdb,0x02,0x87,0x66,0x9a,0x53,0x62,0x71,0xa0,0xf4,0x5a, +0x20,0x7e,0xc3,0x16,0x49,0x24,0xa4,0x58,0xe6,0xbc,0x81,0x5d, +0x93,0xc0,0xe8,0x4f,0x0a,0x2d,0x1e,0x45,0x05,0x67,0x30,0xd1, +0x73,0x84,0xe9,0x31,0xa7,0xa9,0xdb,0xce,0x0c,0x46,0x31,0xcb, +0x42,0xf1,0x0d,0xe9,0xb7,0xfe,0x2d,0xd1,0x2b,0xd2,0x71,0xaa, +0xdf,0x37,0xb7,0x8e,0x9c,0xdd,0x70,0x2b,0x10,0x0a,0x63,0x4f, +0xcb,0x57,0xa1,0x5f,0x59,0x6d,0xd1,0xfa,0x85,0x1f,0x7e,0x64, +0xff,0x55,0x86,0xdf,0xc8,0x57,0x8e,0xa2,0x22,0xe1,0x62,0xe5, +0x48,0xa8,0x06,0xa9,0x9f,0x8c,0xb4,0x95,0x93,0xd3,0xa7,0x4c, +0x9b,0x3a,0x3d,0x60,0xae,0xf4,0x48,0x17,0x50,0x56,0x9b,0x5b, +0xa6,0x7b,0x07,0xf4,0x0e,0x3b,0x22,0x3d,0xab,0x89,0xa3,0x47, +0x6d,0xfc,0xf8,0x85,0xd5,0x5c,0x6f,0xab,0xb9,0x13,0xa4,0x71, +0xfa,0xb7,0x46,0xaf,0xb2,0x8e,0x93,0xfd,0x1e,0x7c,0x75,0xe4, +0xec,0xfa,0xbb,0x81,0x50,0x00,0x93,0xac,0xef,0xff,0xc9,0xe5, +0xb4,0x85,0x6b,0x16,0xae,0x59,0x2b,0xbd,0xe7,0x0b,0x38,0xae, +0x1a,0x38,0x27,0x92,0x58,0x74,0x14,0x7b,0x5d,0x7d,0x4e,0x5a, +0x89,0x8f,0x5d,0x7d,0x5c,0x87,0xac,0x94,0x39,0x47,0x65,0xb0, +0x4e,0x2a,0x2e,0xcc,0xe9,0x2a,0x8b,0x75,0x52,0x71,0xb1,0xd1, +0xd5,0xe7,0x04,0xff,0xa5,0x5a,0x24,0x27,0x94,0x80,0xaf,0x55, +0x2c,0x69,0x24,0x6a,0x3a,0xd5,0x6a,0xfa,0x8e,0x0c,0x1d,0x24, +0xb0,0x8f,0xe5,0xd7,0xd0,0x95,0x7a,0xb6,0x6e,0xe1,0xba,0x0d, +0x56,0x53,0x4d,0xd5,0x6a,0xcb,0x46,0xb9,0x2f,0xe0,0xb9,0xfa, +0xc6,0x49,0x4b,0x96,0x71,0x4f,0x80,0x43,0xd5,0xcf,0x37,0x52, +0xd4,0xc2,0x2c,0x73,0xa1,0xae,0x6a,0x61,0x6d,0x59,0x6a,0x28, +0x19,0x2f,0xa3,0x72,0x97,0x59,0xb5,0x47,0xaa,0x91,0xb9,0xd5, +0xdc,0x95,0xc3,0x55,0xe3,0x84,0x7c,0x69,0xe2,0x10,0x34,0x9e, +0x68,0x4f,0x00,0x3b,0x46,0xe6,0x98,0x19,0xba,0x9a,0x8d,0x0e, +0x19,0x18,0x2b,0x70,0x9f,0x5a,0x85,0xcb,0xdc,0x53,0xeb,0x4d, +0x1d,0xf6,0xa8,0x9a,0xc0,0xc5,0xb0,0x52,0xe5,0xbe,0x9a,0x62, +0xbe,0x43,0xf8,0x93,0xea,0xab,0xe2,0x51,0x34,0xd5,0x26,0x26, +0xc0,0x5b,0xb4,0xda,0x77,0x4d,0xc4,0xd0,0xf2,0xd2,0x3f,0x4c, +0x5c,0x27,0x11,0x87,0x78,0xd2,0x52,0x45,0xba,0xb7,0xc4,0xd2, +0x11,0xce,0x3a,0xe2,0xf5,0x8c,0x1b,0x98,0xc0,0x0e,0xc9,0xe3, +0x5c,0xde,0x3c,0xd1,0xbc,0xaa,0xf2,0xc7,0x18,0x81,0x05,0x86, +0x08,0x46,0x35,0x84,0x0c,0x07,0x42,0x55,0x9d,0x66,0x6d,0xd7, +0x24,0x0c,0xab,0x60,0x4d,0x99,0x0a,0x2f,0xcf,0x66,0xf2,0x52, +0x17,0x3f,0xd6,0x40,0xaf,0x1e,0xad,0xd0,0x11,0x21,0x45,0x80, +0x00,0xdb,0xc9,0x1b,0x50,0x81,0xe6,0x8d,0x85,0xef,0xbc,0xea, +0xa9,0xd2,0x88,0xf5,0x03,0x05,0x0e,0x72,0x4d,0x3b,0xe9,0x4e, +0x4d,0x70,0x4d,0xb3,0x66,0xee,0x40,0x01,0xe9,0x6a,0x8f,0x35, +0x73,0x0f,0x0a,0x58,0xad,0x7e,0xeb,0x6b,0xa5,0x70,0xbc,0x6b, +0xda,0x09,0x77,0x8a,0x6a,0x5a,0x73,0x97,0x8a,0x8f,0xa8,0xf2, +0xaf,0x27,0x6f,0x11,0xa2,0xac,0xb0,0x9b,0xb2,0x77,0xa4,0x5f, +0xb8,0x88,0xea,0x9a,0x20,0x3d,0xa3,0x44,0x96,0xd5,0x39,0xa2, +0xa6,0x48,0x8f,0x96,0xe8,0x08,0xe7,0xce,0xe9,0x27,0xdd,0x93, +0x78,0x60,0x22,0x11,0xd3,0x56,0x1d,0x6b,0x43,0x08,0x2a,0x09, +0xf4,0x21,0x04,0x9a,0x1b,0xc1,0x68,0x46,0x50,0xa6,0x6b,0x22, +0x23,0x60,0x39,0xb7,0x10,0x08,0xee,0x4e,0xb8,0xd5,0x1d,0x8d, +0xba,0x43,0xfa,0xe9,0x9e,0xf8,0x45,0xfd,0x43,0x91,0x1d,0xe7, +0x55,0xcd,0xe2,0x71,0x12,0xd8,0x43,0xad,0xff,0x19,0xc7,0x50, +0x9a,0x81,0xcc,0x69,0x9a,0x81,0x5d,0xdb,0x62,0x68,0x35,0x19, +0xae,0x89,0x90,0x1e,0x09,0xe8,0xa8,0x60,0xa9,0xb7,0x72,0x7f, +0x9e,0xb8,0x0e,0x11,0xf6,0xc7,0x6e,0x96,0x60,0x41,0xd5,0xd9, +0x39,0x23,0x7f,0xd0,0xf3,0x09,0xc1,0x08,0x4b,0x87,0xcc,0x26, +0x1d,0x32,0x31,0x11,0xaa,0xf7,0xd7,0xfe,0x1b,0x82,0x70,0xa9, +0x5a,0x96,0xaf,0x42,0xfe,0x2f,0xfd,0x61,0xe7,0xa4,0x57,0xca, +0xe4,0x5f,0x76,0x88,0x08,0x19,0x42,0x1d,0x6a,0x83,0x61,0x6f, +0x71,0x87,0xb0,0x40,0x8f,0xc4,0x57,0x3d,0x2a,0xfb,0xe7,0xc9, +0xfc,0x1e,0x31,0x5f,0xcb,0xa9,0x1e,0xa4,0x5c,0xdc,0x91,0xa1, +0x3f,0xca,0xe4,0x37,0x82,0x17,0xa8,0xd5,0xc6,0x75,0x73,0x61, +0x1c,0x16,0xab,0x92,0xf0,0x13,0xfa,0xd2,0x7f,0x1a,0xde,0x82, +0xdb,0xd2,0xd6,0x42,0xf4,0xd3,0x42,0x53,0x5a,0xa1,0x27,0x69, +0xdd,0x14,0x1b,0xf8,0x43,0xc1,0x43,0xd9,0x20,0xed,0x33,0x31, +0xdb,0x38,0x49,0xbf,0x8b,0x82,0xbe,0xff,0x26,0xad,0x99,0xbf, +0x61,0x4c,0x1b,0x28,0xd0,0x49,0xa7,0xc5,0xb4,0x05,0x6a,0x61, +0x8e,0x71,0x18,0x9b,0x9b,0x95,0xdf,0xc2,0xda,0x4c,0x73,0x2d, +0xb7,0xb0,0x9c,0x5a,0x98,0x1b,0x87,0xfe,0xb9,0x3f,0x0a,0xb8, +0x69,0x60,0x87,0x64,0x28,0x96,0xa2,0x85,0xa7,0xc4,0xa3,0x67, +0x05,0x67,0x6d,0xd2,0x5a,0x87,0xb8,0xf7,0x33,0xf1,0x8a,0xf4, +0x2f,0x21,0xdc,0x42,0x10,0x93,0x0c,0x05,0xba,0xd0,0x4e,0x9b, +0xcc,0x32,0x2d,0xc2,0x31,0x06,0xa3,0x5d,0xa1,0xb4,0xfd,0xeb, +0x26,0xfe,0xef,0x38,0xcc,0x45,0xb8,0x9e,0x94,0x62,0x7e,0x7c, +0xef,0x05,0xf9,0xcf,0x10,0x97,0xa9,0x12,0xff,0x13,0xfa,0xe5, +0x77,0xfa,0x91,0x1b,0x6d,0x1f,0x0d,0x6d,0x29,0x2d,0xd1,0x33, +0x32,0xbf,0xdf,0xb6,0x43,0x39,0x10,0x4a,0xa8,0xbf,0x31,0x4e, +0xf6,0xb3,0x91,0xc1,0xe4,0x7d,0xe0,0x36,0xd4,0xb0,0xbf,0xb4, +0xf0,0xb7,0xd7,0x31,0x60,0x40,0x1c,0x6a,0x58,0xd0,0x71,0x19, +0xbf,0xc9,0x3d,0xca,0x31,0xb3,0x67,0x31,0x7e,0xee,0xf2,0xb0, +0x38,0xf4,0x66,0xa6,0x8a,0x7c,0xfc,0x37,0xdc,0xf8,0x07,0xb8, +0xc9,0xae,0x48,0x64,0xbf,0x3c,0x74,0xdd,0xa2,0xfa,0x4b,0xa6, +0x9a,0x06,0xdb,0xfe,0xeb,0x2b,0xaa,0x7d,0x99,0xea,0x48,0x87, +0x39,0x16,0x77,0x93,0xf5,0x49,0x58,0x7b,0x33,0xd6,0x65,0x84, +0xb5,0x65,0x5c,0x44,0x95,0xc4,0x9f,0xd0,0x83,0xfe,0x63,0xa4, +0x5f,0xc8,0xc0,0xbd,0x02,0x6a,0xa8,0x4e,0xa4,0x4a,0x9d,0x03, +0x45,0x13,0xd7,0x58,0x32,0x2a,0x65,0x91,0x5a,0xa2,0xac,0x2b, +0xf5,0xa4,0x95,0x40,0xdd,0x95,0x6a,0x29,0xd5,0x5a,0x02,0x50, +0xed,0x20,0xa5,0x4a,0xf5,0xe0,0xa5,0xfa,0x85,0xf7,0xb4,0x0b, +0xd3,0xd8,0xa9,0x4d,0x86,0x9f,0x11,0x03,0xe3,0xd1,0x57,0xfa, +0x14,0x17,0x2f,0x6e,0x4a,0x8f,0xcb,0xe2,0xc2,0xb5,0x83,0xc7, +0xb7,0x48,0xbf,0x3d,0x02,0x6b,0x04,0x1c,0x3f,0x6c,0xf3,0x25, +0x10,0xd4,0x5c,0xa9,0x27,0x18,0x96,0x11,0xd2,0x5c,0x67,0x2c, +0xc9,0xaa,0x27,0x6f,0x10,0xad,0xd1,0x5e,0x99,0x49,0xc6,0x3b, +0x8d,0xf6,0xbb,0xb2,0xe4,0x67,0x02,0x87,0xb9,0x5a,0xe6,0xce, +0xcf,0x2f,0x99,0x42,0xab,0x17,0x97,0x8c,0x25,0xf2,0x07,0x92, +0xf9,0xcc,0xf4,0x7b,0xe6,0xd3,0x7f,0x4d,0x3a,0xee,0x08,0x18, +0x38,0xd5,0x78,0xc2,0x82,0x54,0xb0,0x9b,0x2e,0x43,0x49,0x5f, +0xef,0x56,0x0b,0x73,0x53,0xb8,0xdb,0xa9,0xdc,0xed,0x0c,0x82, +0x4b,0xf9,0x1f,0x70,0xd4,0xef,0x9d,0x6a,0x3f,0xa9,0xf5,0xfc, +0x28,0xe6,0x0b,0xbe,0xa6,0x6a,0x33,0xfe,0x49,0x90,0xef,0xb8, +0x79,0xde,0x57,0xc3,0x02,0x29,0xad,0xd1,0xb3,0x2c,0xcb,0x4a, +0x61,0x12,0xe4,0xd2,0xc4,0xf5,0x9b,0x96,0x20,0xfb,0x5a,0xc6, +0x5f,0x55,0xda,0x4f,0x32,0xeb,0x3b,0xea,0x58,0x9c,0xac,0x42, +0x2d,0xd4,0x01,0xb9,0x38,0xc3,0x99,0xe5,0x96,0x3a,0x5f,0x96, +0xba,0xc9,0x64,0x00,0x76,0x68,0x43,0x62,0xa7,0xcb,0xb0,0x0a, +0x62,0x26,0x5e,0x36,0xa4,0x9f,0x10,0xbf,0x5a,0xf2,0xdf,0x39, +0x7f,0xc4,0x48,0xce,0xa6,0xe3,0x07,0xce,0x29,0xb4,0x64,0x2c, +0x63,0x0f,0x7e,0xb4,0x96,0x9a,0x43,0x22,0x5d,0xb5,0x8f,0xcd, +0x67,0xc6,0xc2,0x4c,0x5a,0x69,0x88,0x19,0xb3,0x64,0xc9,0x0b, +0xfc,0x9c,0xc0,0xbb,0xb4,0xd4,0x50,0x0f,0xf8,0x55,0xc4,0x05, +0xfc,0x82,0x5f,0x82,0x94,0x25,0x2c,0x86,0x3c,0xb6,0x18,0xd2, +0x93,0x18,0xf2,0x90,0x7d,0xf8,0x92,0x2d,0x73,0x6f,0x19,0x6f, +0x9a,0x17,0x5a,0x6b,0xd2,0x21,0xf1,0x9e,0xea,0x4c,0x86,0x5c, +0xe0,0x51,0x51,0xdd,0x80,0x96,0x4d,0xb1,0xa5,0xf2,0xaf,0xc4, +0x2e,0x23,0xe3,0x0c,0x18,0x8d,0x4b,0xb2,0xe1,0xba,0xf4,0x58, +0x2b,0xac,0x04,0x1e,0xd0,0x7c,0xb9,0x5e,0x0d,0x03,0x5a,0x34, +0xc5,0x16,0x5c,0x0f,0xbb,0xe3,0xb5,0xbc,0xce,0xc2,0x55,0x9c, +0xfd,0x3e,0x06,0x5c,0xe7,0x04,0xd6,0xc5,0x4d,0xcf,0xad,0x9c, +0x92,0x6a,0xc0,0x35,0x4e,0x34,0xc3,0xb2,0x79,0x6b,0x04,0x2c, +0x30,0xbb,0x18,0xd7,0x27,0xda,0xf6,0xdd,0xda,0xf2,0xed,0x33, +0xfb,0x31,0xe9,0xf5,0x44,0x54,0x1d,0xd1,0xac,0x7f,0xac,0xa7, +0x19,0x3c,0xd7,0xc8,0x4a,0xb3,0x7d,0x9c,0xb3,0xe6,0xeb,0x67, +0xf6,0x33,0xd2,0xeb,0xa9,0xa8,0x34,0xa9,0xc9,0x98,0xe6,0x9e, +0x58,0xbe,0xa6,0x01,0x8d,0x9b,0x62,0x63,0xe5,0x5f,0xfe,0x95, +0xdf,0x47,0x91,0xe3,0x7c,0xda,0x7a,0xd1,0x45,0x1b,0xbe,0x22, +0x27,0xf8,0xb0,0x75,0x14,0xbb,0xcf,0x51,0x32,0x0a,0xab,0x4b, +0xed,0xa0,0x90,0xbe,0x47,0x84,0x2b,0x06,0xba,0x48,0xe3,0x57, +0xa1,0x7a,0x61,0x13,0xe9,0x13,0x40,0x79,0x2f,0x39,0x2f,0x90, +0xf3,0xae,0xe2,0x32,0x59,0x8a,0xd6,0x04,0xdf,0x7f,0x70,0x96, +0xdd,0x58,0x58,0xeb,0x9d,0xe8,0x21,0x2d,0xaf,0xa4,0x06,0xec, +0xcc,0xde,0xf4,0xc3,0x4f,0xf6,0xf3,0x38,0xaa,0x2d,0x54,0xd2, +0x61,0xcf,0x54,0x63,0x61,0xd5,0x29,0x4d,0x27,0xb4,0xba,0x2a, +0xfd,0x9b,0x09,0x4c,0x6d,0x0b,0x35,0x75,0xf0,0x26,0xb5,0xe0, +0x71,0x48,0x40,0x74,0x0c,0xc6,0x48,0xdf,0x95,0x62,0x3d,0xee, +0x90,0x22,0x9e,0x70,0xe5,0x31,0x2e,0x1f,0x69,0xfc,0x21,0x7e, +0x93,0x25,0xbc,0x85,0x14,0xdb,0x85,0x2a,0xae,0x2a,0x4b,0xcf, +0xeb,0x02,0x46,0x97,0xc7,0x91,0x58,0x37,0x51,0x9c,0x1f,0x2f, +0x60,0x91,0x01,0x9d,0xf0,0x42,0x96,0xa9,0xe3,0x3a,0xbe,0x1c, +0x49,0xb5,0xc2,0xa5,0xb7,0x87,0x55,0x3f,0x47,0x96,0x9a,0x27, +0x9c,0xe3,0xc4,0x79,0xfc,0xc4,0xfc,0x4e,0x1c,0x94,0xfa,0x37, +0x02,0x8b,0x49,0x8f,0x9d,0x42,0xfa,0xf8,0x88,0x17,0xd2,0xe3, +0x03,0x71,0xf1,0xf2,0xc1,0xcf,0xa5,0xcd,0x10,0x4b,0x66,0x43, +0x69,0xac,0x10,0x70,0xec,0x30,0x96,0x86,0x48,0xe9,0x31,0x97, +0xa1,0x54,0x38,0xd6,0x11,0x8b,0x45,0x5e,0x98,0xf8,0x4c,0xc0, +0x77,0x4f,0x0c,0x73,0xb8,0xc0,0xc9,0x9a,0xef,0xab,0x12,0xfc, +0x2c,0x19,0x86,0x52,0xa1,0xf4,0xa9,0x27,0xe0,0x3d,0xe9,0x39, +0x56,0x48,0xbd,0x8c,0x88,0xd6,0x7c,0xf3,0xea,0x5a,0x17,0xec, +0x7b,0x49,0x2d,0x4c,0x40,0x31,0x29,0xd2,0xa9,0x33,0xb9,0xdc, +0x19,0x3f,0xee,0x0c,0x8e,0x92,0x82,0xb6,0xfc,0x25,0x82,0x04, +0x6d,0x9f,0x3e,0x94,0x45,0x5e,0x08,0xae,0xff,0xff,0xf1,0xf6, +0xd7,0xf1,0x55,0x1d,0xcd,0xe3,0x38,0x8e,0xe5,0xde,0x30,0x31, +0xec,0x84,0xc8,0x42,0x42,0x12,0x82,0x6b,0x70,0x0b,0x21,0x82, +0x25,0x04,0x28,0xee,0x4e,0x8b,0xbb,0x13,0xdc,0xdd,0x21,0x58, +0x8b,0x14,0x2d,0x94,0xb6,0x58,0x8b,0x5b,0x82,0xb4,0x38,0xb4, +0x68,0x5b,0xda,0x52,0x9c,0x02,0x65,0x4f,0x32,0x7b,0xf3,0x7c, +0x67,0xf6,0xdc,0x84,0xd0,0x42,0xfb,0x3c,0xef,0xd7,0xe7,0xf7, +0xfb,0x83,0xb0,0x77,0x47,0x76,0x77,0x76,0xcf,0xee,0xec,0x99, +0x39,0x33,0xeb,0xaf,0xc9,0xc9,0x8c,0x3f,0x1d,0x43,0x8c,0x13, +0xb8,0xb9,0xa9,0x5d,0x56,0xc0,0x76,0x06,0xe7,0x67,0xd8,0xb0, +0x7e,0xb1,0xb0,0x37,0xa6,0xf3,0x65,0x33,0x6c,0x3b,0xb0,0x7d, +0xe5,0xc2,0x55,0x22,0x77,0x02,0x6c,0x3b,0x86,0xcb,0x7e,0x1d, +0x31,0x7f,0xe2,0x8c,0xd1,0x09,0xbe,0x9e,0xc2,0x73,0x0f,0x73, +0xff,0x40,0x18,0xcf,0x40,0xd5,0xc0,0x9a,0xc2,0xb3,0x06,0x77, +0x1f,0x9f,0xe0,0x77,0xc2,0xa5,0x2e,0xfc,0x6e,0x26,0x24,0xab, +0x33,0x78,0x29,0xf5,0xa4,0x6e,0x55,0x96,0x23,0x0c,0xf7,0xfe, +0x6f,0xb5,0x8a,0x2b,0x85,0xf7,0x4b,0x67,0x8c,0x9b,0xf9,0xe8, +0x29,0x27,0x46,0xa9,0x2f,0x2f,0xc9,0x69,0xd2,0x13,0x17,0x5c, +0x34,0xcf,0xda,0x1d,0x41,0x98,0x57,0xf8,0xfd,0x0a,0x21,0xf8, +0xa7,0x21,0x23,0xea,0x63,0xb4,0xd9,0x0a,0x26,0x9f,0x6a,0x36, +0x3e,0x66,0x72,0xed,0x29,0xbe,0x65,0xb0,0x2b,0xf6,0x22,0x9d, +0x61,0x2f,0x6e,0x27,0xd9,0xb8,0xb1,0xc3,0xa0,0x45,0x16,0xfd, +0x86,0x95,0x4d,0x75,0x31,0xeb,0x30,0x87,0x47,0x78,0x5b,0xd1, +0x75,0xcd,0xc9,0x43,0x8e,0xc4,0xd9,0xc2,0xed,0x00,0x10,0x55, +0x37,0xa6,0x9a,0x74,0xd1,0xfc,0x2a,0x1a,0xa7,0x11,0xd5,0xc8, +0x28,0xb5,0x4a,0x53,0x55,0x30,0x66,0x87,0x0d,0x0a,0xff,0xa8, +0xde,0x99,0x51,0x3e,0x3b,0xaf,0x6c,0xfc,0xe5,0x81,0xdf,0x69, +0x6c,0xda,0x44,0xe4,0x71,0x87,0x52,0x63,0x23,0x86,0xd7,0x3b, +0x37,0xce,0x67,0xed,0x95,0x15,0xdf,0x3f,0xf6,0xbb,0x80,0x6d, +0x9b,0xd0,0x75,0xef,0x11,0xfe,0xc0,0xec,0xc3,0xeb,0x63,0xa4, +0x70,0xdd,0x06,0x8e,0xc3,0x20,0x3b,0xe2,0x6a,0x01,0xad,0x69, +0x6a,0xd6,0x82,0x1a,0xa6,0x59,0x7a,0x0a,0xef,0xdc,0x20,0xa7, +0xd7,0x17,0x1c,0x88,0x7c,0x8a,0x70,0xbd,0x09,0x6a,0xe8,0x25, +0xd9,0x85,0xda,0xff,0xe8,0x22,0xdd,0xec,0x68,0xb0,0xd9,0x1d, +0x6e,0xd4,0xd3,0xbd,0x46,0xb3,0x09,0x31,0x93,0x6a,0x4f,0x75, +0x95,0x25,0xea,0x63,0x19,0xfb,0xf4,0x98,0x3a,0x33,0xa2,0xfd, +0x17,0xc4,0x77,0xa0,0x19,0x54,0xa1,0x69,0xf1,0xff,0x40,0x1b, +0x82,0xdf,0x19,0x7f,0x25,0x9a,0x7c,0xdc,0xe2,0xe6,0xdb,0x5b, +0xd5,0x15,0x6e,0x21,0xff,0x57,0x6a,0xb3,0x11,0x89,0x0c,0x4e, +0xd3,0xea,0x5e,0xcc,0x91,0xd0,0x37,0x69,0xa7,0xc4,0xb5,0xcc, +0x87,0x87,0x96,0xef,0xdf,0xc8,0x7b,0x72,0xe3,0x3e,0xff,0x13, +0x89,0xee,0xef,0x38,0x9e,0xa3,0x21,0x3c,0x47,0x3d,0x2f,0x9a, +0xd3,0xa3,0x71,0x38,0xcd,0xd1,0x47,0x51,0x6a,0x90,0x66,0x91, +0xfb,0x9f,0xc4,0x25,0xf2,0x66,0x63,0xda,0xbe,0x4c,0x4b,0x47, +0xcd,0xc6,0x68,0x4c,0x20,0xda,0x01,0x51,0x6a,0xae,0xa6,0x0d, +0x35,0x66,0x57,0x1e,0x14,0x21,0x68,0xcf,0xfb,0xd5,0x2f,0x49, +0xe4,0xea,0x01,0xe5,0xc6,0x46,0x0e,0x6f,0x70,0x6e,0xbc,0xcf, +0xda,0x8b,0x2b,0xae,0x3f,0xf0,0xfb,0x2e,0x7d,0x5e,0xcf,0xf1, +0xbc,0x56,0xa9,0x8f,0x35,0x78,0x5e,0x97,0xad,0x17,0xf9,0x1e, +0x31,0xd7,0xd6,0xcc,0x75,0xff,0x45,0xf3,0xcf,0x68,0x5c,0x48, +0x5c,0x27,0xa7,0xaf,0xb5,0x08,0xe1,0x77,0x08,0xf0,0x67,0xa6, +0x89,0xa9,0x8f,0x0d,0x9c,0x6b,0xe1,0x07,0x1c,0x28,0xdc,0x49, +0x4b,0xce,0xbb,0x0f,0x7e,0xc6,0xa5,0xb8,0x2b,0x63,0x4c,0xb4, +0xee,0x36,0x44,0x8b,0x9c,0x5b,0x40,0xbf,0x38,0xed,0x62,0xfe, +0xdb,0xfc,0x7b,0x62,0xa0,0xc3,0xc3,0xf9,0xb8,0x4c,0xa1,0x76, +0x87,0x47,0xa9,0x35,0x97,0xe4,0x58,0xe2,0x34,0x85,0x56,0x30, +0xcf,0x63,0x6e,0xe1,0x9d,0x07,0x70,0x1b,0x75,0xd7,0xb3,0x9a, +0x9e,0x2b,0x6c,0xa3,0x82,0x84,0xc7,0x8f,0xba,0x71,0xdc,0x87, +0xd5,0x85,0xfb,0x8b,0xff,0x73,0xf3,0x39,0x31,0x58,0xad,0xa6, +0x67,0xf9,0x3c,0x7b,0x35,0xd3,0x5e,0xdc,0x48,0x97,0xef,0xe3, +0x22,0xe1,0x76,0x82,0x13,0x03,0xae,0xba,0x66,0x53,0xdf,0x9a, +0x65,0x84,0xf1,0x02,0x8e,0xe3,0xf6,0x94,0x47,0x80,0xd1,0x40, +0x15,0x9e,0xc2,0x78,0xc9,0x6f,0x05,0x7d,0x52,0xe8,0xac,0x72, +0x5d,0x48,0x55,0x21,0x29,0x3b,0xd8,0x64,0x55,0x5a,0xb8,0x0d, +0x00,0xdc,0xc0,0x56,0xa8,0x52,0xc6,0xa4,0xa7,0xb2,0x9b,0xfc, +0xd0,0xd1,0x10,0x8a,0x63,0x77,0xac,0x9a,0x72,0x1c,0xe4,0x32, +0xfe,0xb6,0x8d,0xc0,0xdf,0x17,0x17,0x6e,0xdf,0x32,0xde,0x43, +0xde,0xa1,0x53,0x2c,0x8a,0xcc,0x3b,0xe4,0x74,0xe3,0x19,0x6d, +0x91,0x76,0xc6,0x55,0x41,0xaa,0x94,0x80,0x21,0xdc,0x9b,0x04, +0xdd,0x9b,0xfc,0xd4,0x54,0x55,0x2c,0x26,0x60,0x01,0xd7,0xcd, +0xd3,0x75,0x21,0xba,0x43,0x83,0xb0,0x67,0x4a,0x27,0x92,0xd1, +0x1f,0x10,0x81,0x2b,0x84,0xcf,0x30,0x86,0x6f,0xd5,0xf0,0x48, +0xa2,0x99,0x86,0x74,0x1b,0xba,0xa1,0xc1,0x2a,0x32,0x50,0x78, +0x0c,0xe5,0x66,0xf1,0x4f,0x55,0xc2,0xa0,0x6d,0x2d,0x49,0x25, +0xfc,0x6e,0xce,0x4a,0x16,0x5e,0x85,0x81,0x33,0x2d,0x32,0x4e, +0x63,0xde,0xdc,0xfe,0x78,0x9b,0x07,0xae,0xc4,0xa2,0x22,0x7f, +0x07,0x30,0x1f,0xd3,0x6d,0x5b,0xd6,0xad,0x8b,0x75,0x69,0xce, +0xea,0xd5,0xb3,0xaf,0x3a,0xba,0x24,0xe9,0x9c,0xdf,0x51,0x5c, +0xdd,0x48,0xb6,0xb4,0xcf,0x2e,0x35,0x38,0xbc,0x57,0xd4,0x77, +0xa3,0x7d,0x96,0x6e,0x58,0xb2,0x71,0xf1,0xa7,0xae,0x18,0x21, +0x0a,0xed,0x83,0x09,0x2e,0xab,0xae,0xad,0xb8,0xf5,0x87,0xdf, +0x29,0xbc,0xd4,0x48,0xce,0xb1,0xcf,0x2e,0x36,0xb6,0xd6,0xa8, +0x28,0x57,0x35,0x8f,0xd4,0xc9,0x8b,0x20,0xbc,0x07,0x82,0xda, +0x88,0x37,0xd9,0x09,0x94,0x8a,0xd3,0x54,0x18,0xfb,0xc1,0xbb, +0xcd,0x81,0xbe,0xaa,0xf6,0x7d,0x6a,0xcd,0x04,0x43,0x56,0xac, +0x8b,0x15,0xa9,0xb5,0x8a,0xf5,0xed,0x2b,0x0f,0x2e,0x39,0x96, +0xec,0xf7,0x0d,0xae,0x8e,0xa7,0xd6,0x2a,0x0f,0xad,0xd7,0x37, +0x56,0xe4,0xde,0x0f,0xeb,0x7d,0xb1,0x24,0x1e,0xe7,0xb8,0xf7, +0x8f,0x8c,0xf3,0xe3,0x5d,0x56,0x5d,0x58,0x7e,0xf5,0x77,0xea, +0xd2,0xa5,0x78,0x6e,0xad,0x42,0x42,0xcc,0xa8,0x58,0x57,0x2c, +0x85,0x63,0xfb,0x81,0x23,0x11,0x54,0x5d,0x75,0xe8,0x82,0x2e, +0xc4,0xab,0x43,0xec,0x03,0x9a,0x08,0x5b,0xd0,0xf1,0x8c,0xff, +0x9f,0xab,0xaa,0x9f,0xd3,0x90,0x0f,0xd4,0xa1,0xf3,0x5c,0x90, +0x5e,0x38,0x9e,0xb4,0x03,0x2a,0xa1,0x0f,0x8e,0x4d,0x63,0xff, +0x23,0xbc,0x62,0x4c,0x7a,0xae,0xae,0x03,0x56,0xb7,0x9d,0x00, +0x39,0x5a,0x06,0xe2,0x37,0xba,0xb7,0xf3,0x54,0xb9,0x6f,0x59, +0x36,0x3f,0x65,0xc8,0xa6,0x6e,0x3d,0xfb,0xca,0x63,0x4b,0x4f, +0x7d,0xeb,0x77,0xc4,0xea,0xed,0xec,0x92,0x24,0x9b,0xe8,0x77, +0xcb,0xe6,0x39,0xcb,0x26,0xfe,0x8d,0x6c,0xb0,0x91,0x2a,0x90, +0xf6,0x80,0xee,0x9a,0x27,0x60,0x98,0x2a,0xcd,0x1a,0x05,0x95, +0xf0,0x43,0xda,0xb5,0xfc,0x46,0xb0,0x4c,0x3c,0x0d,0x59,0xa1, +0x2e,0x56,0xa0,0x56,0x2a,0x58,0x32,0x49,0xf2,0xfb,0x1a,0x57, +0x37,0x66,0x99,0x0c,0xab,0xd7,0x27,0x8e,0x65,0xb2,0xce,0x17, +0x8b,0xe3,0xf1,0xf8,0x94,0x13,0x49,0x76,0x6c,0xf9,0x50,0x04, +0x6c,0x06,0x7c,0x45,0x57,0xd8,0x97,0xd4,0xdb,0xe9,0xa0,0x66, +0xe0,0x05,0x76,0x2d,0xa5,0xb1,0x56,0x50,0xed,0xd3,0xda,0xeb, +0xca,0x87,0x6c,0x08,0x2f,0xa6,0x47,0xfb,0x27,0x0e,0x37,0x1a, +0xcb,0xed,0xa7,0xec,0xaa,0x3b,0x36,0x70,0x3a,0x95,0x9e,0x43, +0x5f,0xfb,0xea,0x1b,0xcb,0x7f,0x7c,0x29,0x5c,0x87,0x43,0xa0, +0x76,0x0f,0xc5,0x5d,0xb6,0xf5,0x37,0x13,0xef,0xbd,0x34,0x17, +0x41,0xe0,0xa8,0x4a,0x83,0xaa,0xbb,0xe2,0xdc,0x06,0xff,0xe4, +0x63,0xda,0xdd,0x2c,0x66,0x30,0x8b,0x57,0x7e,0xe7,0x71,0x77, +0xac,0xec,0x33,0x53,0x14,0x72,0x87,0x58,0xd9,0x73,0xa6,0x7d, +0x36,0x66,0x19,0x55,0x69,0x20,0x31,0x98,0xd3,0xe0,0x1d,0x0e, +0xa7,0xe7,0xd8,0xe1,0x34,0x7b,0x86,0xc3,0x29,0xf7,0x64,0xcd, +0x0f,0xcb,0xee,0xbc,0xa0,0x9d,0x8d,0xd9,0xd8,0x67,0x17,0x1a, +0x5b,0x71,0x78,0xb8,0xee,0xce,0x8d,0x95,0x3f,0xbd,0xf0,0x3b, +0x83,0x3b,0x89,0x2b,0x55,0x8f,0xaa,0x32,0xb0,0x86,0xe6,0xf9, +0xcf,0x6e,0xa8,0xdd,0xcd,0x1a,0xc6,0x9a,0xeb,0xcb,0x6e,0x3d, +0x15,0x39,0xf7,0x43,0xc8,0xd8,0xaa,0xc3,0x23,0x34,0xaf,0xef, +0x57,0xde,0x79,0xe6,0x97,0x9c,0x62,0x40,0xe1,0x51,0xd5,0x06, +0x12,0xfb,0x39,0x0d,0x33,0x3c,0x53,0xcf,0xb2,0x67,0x6a,0x9d, +0x74,0xcf,0x54,0xed,0xdb,0x79,0x16,0xfd,0xec,0x6b,0xae,0x2e, +0xbf,0xf1,0x18,0x0b,0x43,0xb1,0xb1,0xd5,0x87,0x47,0x32,0x8f, +0x0d,0xd7,0x13,0x6f,0x3d,0x31,0x5f,0x42,0xf1,0x91,0x35,0x06, +0x12,0xd3,0xd9,0x0d,0x45,0xfe,0xff,0x80,0x70,0x6f,0xf0,0x3f, +0x39,0xb2,0xda,0xbe,0xb3,0xfc,0x55,0x6d,0xd7,0x41,0x76,0x3d, +0x28,0x7d,0x75,0xf3,0xcd,0x95,0xbb,0x91,0x9a,0x0a,0xf5,0x3e, +0xb4,0xa7,0x96,0x01,0x4f,0xcd,0xf2,0x9d,0xce,0xae,0xe9,0xc4, +0x7f,0x75,0x76,0x3d,0xcb,0xce,0xae,0xc7,0xb4,0xb3,0xab,0x5f, +0xe8,0xdf,0x9c,0x5d,0xcf,0xb2,0xb3,0x6b,0x16,0xed,0xec,0xca, +0x93,0x26,0xfc,0xe6,0xa7,0x3b,0xbb,0xb2,0xff,0x08,0xfe,0x27, +0xc3,0xd9,0x95,0x47,0x2d,0xfc,0xae,0xbf,0xcb,0xd9,0x55,0x83, +0x6c,0x8f,0xff,0xe2,0xec,0x9a,0xd2,0xcd,0x2c,0x61,0x38,0x29, +0xd6,0x6b,0x7f,0x8c,0x4f,0xa4,0x9f,0x6e,0xb0,0x17,0x69,0x5a, +0xec,0x88,0x41,0x3d,0x7e,0xe3,0x0d,0x7b,0x96,0xbd,0x61,0xb3, +0x66,0x78,0xc3,0xb6,0xd2,0x2e,0x97,0x35,0xaf,0x99,0x77,0xd9, +0xe5,0xf2,0x9a,0x30,0x24,0x94,0xc6,0x6f,0x84,0x7b,0x1d,0xf6, +0xe5,0xbc,0x68,0x38,0x61,0xb5,0x55,0x2b,0x76,0xad,0xcc,0xc3, +0x60,0xb3,0xad,0xca,0x26,0xdb,0x58,0xee,0xad,0x1f,0x58,0xe9, +0x27,0xb4,0x7b,0x6b,0x34,0xba,0x1b,0x57,0x65,0x7d,0x11,0x3c, +0x15,0x7a,0x4e,0x77,0x4d,0x4c,0x5e,0xf2,0xed,0x4d,0xbf,0x4b, +0xd8,0xb7,0x89,0x2c,0x3a,0xc1,0x3e,0xbb,0x62,0x42,0xdd,0x51, +0x71,0x22,0x67,0x1a,0x9c,0x4f,0xfc,0xe1,0x8e,0xdf,0x59,0xec, +0x47,0xd5,0xe3,0xa8,0x7a,0x54,0xc4,0x90,0x06,0xae,0x33,0xdb, +0xb4,0x99,0xd5,0xc6,0x7f,0x41,0x23,0x07,0x6d,0x86,0x95,0x95, +0x7b,0xca,0x4a,0x10,0xb9,0xef,0xb0,0x4b,0xe7,0x86,0xda,0x2a, +0x8c,0x19,0xe7,0x27,0xc6,0x8d,0x6c,0x32,0xcb,0xfc,0xe7,0x8b, +0x6f,0x2d,0x9d,0x72,0xcc,0xa7,0xcf,0xb4,0x8f,0xa6,0x73,0x1b, +0xa7,0x96,0x9c,0xf9,0x9e,0x56,0x7e,0xdf,0x0f,0x64,0xd1,0xf1, +0xf6,0xd9,0xd5,0xc6,0xd5,0x1f,0xd5,0xb8,0xc1,0xb4,0xe8,0xe9, +0x91,0x33,0x5c,0x3f,0xf9,0x76,0xc5,0xf7,0x37,0x69,0x0f,0xe8, +0x47,0xa0,0x04,0xfb,0xec,0xaa,0xa3,0xa2,0x87,0xc4,0xa6,0xb7, +0xd3,0x98,0xda,0x91,0x73,0x71,0x89,0x9c,0x46,0x1b,0xf8,0x2e, +0xed,0x37,0x6b,0x0b,0xd7,0x45,0xed,0x37,0xeb,0xab,0x8b,0xa4, +0xd1,0x9c,0x17,0xf9,0x3f,0x83,0x94,0xa6,0xec,0x28,0x6b,0x13, +0xf9,0xee,0x91,0xc0,0xe4,0x24,0xe3,0x9a,0xf9,0x29,0x75,0x0a, +0xfb,0xb7,0xd0,0xde,0xb2,0xf1,0xc2,0xad,0x1b,0xbb,0xcb,0xa6, +0x96,0x60,0x44,0x76,0x8f,0xb5,0xc5,0x70,0x49,0x6e,0xa5,0x63, +0xcf,0xe5,0x16,0x0b,0xe9,0x57,0xa3,0x99,0xec,0x5f,0x4f,0x0b, +0x29,0x4a,0xbb,0xcb,0x6a,0x7f,0x58,0xd7,0xad,0x30,0x8d,0x47, +0x90,0xb4,0xe4,0xdc,0x0f,0xa4,0x26,0xf6,0x6d,0xaa,0xa5,0x54, +0x25,0xa1,0xde,0xe8,0x78,0xe7,0x08,0x3e,0xfe,0x2e,0xf1,0xfb, +0x5b,0x7e,0xc9,0xd8,0xaf,0xa9,0x96,0x54,0xe5,0x51,0x91,0x6f, +0x46,0xc0,0x92,0x92,0x85,0xe8,0x86,0x62,0x0c,0xa3,0x43,0xb6, +0x1c,0xfb,0xd3,0xba,0xb2,0x3f,0x6d,0xbe,0x32,0xa4,0x42,0xcc, +0x32,0xf7,0xd2,0x85,0x40,0xe4,0xbc,0x06,0x63,0x27,0x88,0xc0, +0x9d,0xf0,0x11,0x0e,0x6a,0xb9,0xad,0x85,0x8f,0x0c,0xf8,0xfc, +0xee,0xe6,0x83,0x5b,0x13,0xe7,0xaf,0x9e,0xb9,0x72,0xaa,0xdc, +0x50,0xda,0x67,0xcb,0x61,0x17,0x67,0x98,0xe5,0x06,0xda,0xf9, +0x37,0xdc,0xe9,0x76,0x7b,0x42,0x18,0x26,0xc4,0xe1,0x6e,0x65, +0xf2,0x48,0x56,0xa9,0xb1,0xc2,0xe3,0xae,0x6e,0x25,0x12,0x77, +0xb3,0x13,0x2d,0x35,0xf2,0x14,0xe9,0x76,0xb3,0xfa,0x04,0xe9, +0x0c,0x51,0x72,0x0b,0x5d,0x23,0xae,0x81,0x6a,0x2e,0x0c,0x80, +0x91,0x78,0x30,0xb5,0x05,0xa9,0xb5,0xea,0xfb,0x8b,0xfc,0xfd, +0x67,0x7e,0xae,0x33,0x97,0x2a,0x5b,0xca,0x5a,0x30,0xa7,0x82, +0xcc,0x6b,0x34,0x97,0x35,0xea,0x5e,0x30,0x77,0xc7,0xa8,0xea, +0x76,0xfc,0x11,0x73,0x72,0xfe,0x0f,0x51,0xf8,0x1a,0x1c,0xf3, +0xa9,0x3b,0xd1,0x25,0xf1,0xe4,0x92,0x33,0xd7,0x68,0x03,0x6a, +0xd0,0x4c,0xe6,0x9c,0xc0,0xb3,0xd9,0x60,0x54,0x93,0x16,0xd3, +0x9a,0x4e,0x6f,0x4c,0xb2,0x38,0xb7,0xe2,0x87,0x1b,0x7e,0xc7, +0xb1,0x51,0x33,0xe9,0x4e,0xb2,0xa8,0x3a,0x3a,0x5a,0x04,0x45, +0x80,0x39,0x46,0x19,0xc2,0x58,0x47,0x3b,0x10,0x5d,0x68,0xec, +0x46,0x0b,0x59,0xa3,0x29,0x27,0x9d,0x52,0x85,0x98,0x77,0x2e, +0xe2,0x1d,0x9b,0x72,0x0a,0xe4,0xb7,0x98,0xc8,0x8e,0xb2,0xb0, +0x02,0xe4,0x25,0x5c,0xcf,0x8e,0xb2,0x54,0xdc,0xad,0xa6,0xb1, +0xa3,0x2c,0x95,0xcc,0x44,0xbc,0xce,0x8e,0xb2,0xb0,0x0e,0xcc, +0x65,0xca,0x93,0x1d,0x65,0xa9,0xb8,0x47,0x4d,0x67,0x47,0x59, +0x2a,0xed,0x52,0xd3,0x1c,0x95,0x78,0x48,0x9f,0xea,0x21,0xb9, +0x51,0x33,0x35,0x63,0xcf,0x9b,0x4b,0xea,0x72,0x33,0x3f,0x61, +0x36,0x6a,0xa6,0x16,0x37,0xf3,0x80,0x8e,0xf3,0xcd,0xd4,0x95, +0x60,0xd0,0x3e,0xb2,0x35,0x62,0x39,0xd1,0x2b,0xfb,0xc8,0xfe, +0xa8,0x71,0x22,0x6c,0x22,0x7f,0x4e,0x90,0xad,0xf0,0x3c,0xfb, +0xc8,0xe6,0xbd,0x0d,0x66,0x36,0x05,0x29,0x7b,0x48,0xe3,0x19, +0x08,0xd2,0x97,0xfb,0x1e,0x77,0xc1,0x5c,0xec,0xec,0xbb,0x8d, +0x1d,0x8b,0x99,0x69,0x65,0x5c,0x9e,0xb2,0x9c,0xe4,0x7b,0x05, +0x54,0xac,0x30,0xdc,0x60,0x01,0xee,0x65,0xff,0xd8,0xbc,0x47, +0xe1,0x27,0xbc,0xab,0xfd,0x63,0x89,0xd3,0x34,0xaa,0xcc,0xf7, +0x2f,0x8c,0x6a,0x60,0x22,0xbb,0xc6,0xe6,0x33,0xa1,0x08,0x5d, +0xee,0x3c,0xe2,0x75,0xd1,0x6c,0x81,0x8f,0x85,0x2d,0x3b,0x6b, +0x25,0xbb,0x49,0x2b,0x99,0x3e,0x91,0x56,0x66,0x65,0x51,0xb8, +0x19,0xf4,0x99,0xd6,0x7b,0x86,0xeb,0xca,0xd3,0x4b,0x2e,0xdc, +0xa6,0x07,0x78,0x40,0x63,0x59,0x82,0xa6,0x23,0x6c,0x5c,0xf4, +0xc8,0xd8,0xfa,0xd3,0xa2,0xa6,0x45,0xd0,0xc3,0x75,0x21,0xf1, +0xc6,0x4f,0x7e,0xdf,0xe2,0x40,0x02,0xd1,0x74,0x84,0x8d,0x0a, +0x1f,0x5c,0x8f,0x96,0x66,0xeb,0x59,0x6d,0x44,0xae,0x95,0x60, +0x96,0x47,0x87,0x30,0x3e,0xa6,0x1e,0xfd,0x08,0x6a,0x7a,0x3b, +0xcd,0xd4,0x6d,0x26,0xc8,0xd9,0xd8,0x4f,0xe4,0xeb,0x00,0x22, +0x57,0x23,0xaa,0x56,0x74,0xc3,0x1a,0x08,0x83,0xd4,0x60,0x7d, +0x63,0x81,0xae,0x6a,0xb0,0x31,0xe9,0x09,0xa9,0x78,0xdd,0x53, +0xdd,0x60,0x72,0x45,0x7f,0xb9,0x52,0x26,0xa5,0x2e,0x04,0xb9, +0x80,0x95,0x3c,0x82,0x9b,0x31,0x18,0x2e,0x60,0x1f,0xa3,0x9a, +0xad,0xe8,0xd8,0xdd,0xe4,0x24,0xc2,0x58,0x48,0x6b,0x07,0x93, +0xc3,0xfc,0xe5,0x4f,0x33,0x52,0xeb,0x73,0x65,0x17,0x35,0x58, +0xb8,0xd1,0x2a,0xcd,0xb5,0x97,0x5a,0x99,0xca,0x8d,0xc8,0x4d, +0x38,0x4c,0x90,0x3a,0x48,0xc3,0xfc,0x94,0x87,0xc9,0x5e,0xb0, +0x65,0x74,0x8f,0xfc,0xf1,0x80,0x30,0xb4,0x36,0x98,0xc4,0x80, +0xb9,0xc2,0xdb,0x00,0xb3,0x3e,0x09,0x05,0xee,0xd1,0xdc,0xa7, +0x71,0xaa,0xc8,0x14,0xe1,0xe6,0x9b,0x21,0xa0,0x35,0x44,0x59, +0x3e,0x35,0x37,0xfb,0xc9,0xf6,0x65,0x3f,0x59,0x42,0x89,0xc0, +0xce,0xc2,0x63,0x18,0x98,0xb7,0xa9,0x35,0x76,0x94,0x0d,0x20, +0xf0,0x3c,0xd5,0x5f,0x78,0x08,0x0d,0xae,0x80,0x6b,0x84,0x7b, +0xf5,0xbf,0x31,0x78,0x80,0x03,0x52,0x66,0xf1,0x76,0xff,0x2b, +0xed,0xe9,0xa4,0x04,0xdc,0xa4,0x13,0x5c,0x14,0xee,0x0d,0x09, +0x15,0x86,0xd7,0xd0,0x07,0xe5,0xad,0xc4,0x9f,0xff,0x14,0x1c, +0xba,0x99,0x0e,0xf1,0x41,0xd5,0x48,0x0b,0x68,0x28,0x0a,0xec, +0x4a,0xff,0x18,0xc2,0xc7,0xbe,0xea,0x87,0xe5,0x77,0x5f,0xb0, +0xd6,0x50,0x48,0xfb,0x8c,0xe2,0xe7,0xb6,0x75,0x37,0x12,0x7f, +0x7e,0x41,0x5a,0x43,0xa1,0x51,0x95,0x07,0xd5,0x60,0xad,0xe1, +0xdf,0x3d,0x70,0x45,0x50,0x27,0xb0,0x54,0x86,0x56,0x4e,0x95, +0xa1,0x10,0x35,0x96,0x4e,0xfc,0xff,0xdc,0x19,0x57,0xeb,0x18, +0xdf,0x2f,0xbb,0xf3,0x07,0x2d,0x1c,0x4b,0xc7,0x08,0x1a,0x5b, +0x69,0x78,0x6d,0xee,0xfc,0xfa,0x1b,0x89,0x77,0x5f,0xd0,0x15, +0x3a,0x5d,0xc7,0xa8,0x36,0xb0,0x26,0xeb,0x18,0xff,0xbf,0x71, +0xd1,0xed,0x6e,0x56,0x37,0x56,0x5f,0x5f,0x7e,0xeb,0x99,0xa5, +0x9a,0x54,0xc9,0x50,0x4d,0xee,0x5a,0xaa,0x49,0xc8,0xc8,0x6a, +0x83,0xc2,0x75,0xf3,0x6f,0xbc,0x76,0x1b,0x7d,0x20,0xfb,0x1c, +0xaf,0xc2,0x8e,0xbb,0xe7,0xd8,0x71,0x77,0x1c,0x7f,0x3b,0xe3, +0xdb,0x0c,0xfe,0xd1,0x4d,0x57,0xb8,0x10,0x02,0xcd,0xed,0x95, +0xe5,0x37,0x1e,0x99,0x43,0x20,0x4a,0xb8,0xe4,0x84,0x5b,0xe6, +0x11,0x28,0x41,0x8a,0x4b,0x1d,0x57,0xf6,0xb1,0x4b,0x83,0x7f, +0xc5,0x61,0xf7,0x5d,0xf7,0x35,0xff,0xef,0xdc,0x77,0x85,0xfb, +0x58,0x90,0x43,0x99,0x99,0xd6,0x7d,0x06,0x16,0x25,0xd2,0x41, +0x58,0xe4,0xe8,0x54,0x1b,0xe9,0x3c,0xa4,0xfc,0xb4,0x91,0x39, +0xed,0xff,0xde,0x73,0xf6,0xf7,0xed,0x6e,0xd6,0x33,0xde,0x8f, +0xc1,0x8e,0xbf,0xdc,0xef,0xff,0x7f,0x38,0xfe,0xd2,0xb2,0xba, +0xb6,0xec,0xd6,0x13,0x9e,0xce,0xc2,0x63,0xab,0x8d,0xb0,0xa6, +0xf3,0x7a,0xe2,0x9d,0xa7,0x7a,0x3a,0x43,0x47,0x55,0x1b,0x54, +0x9b,0xd7,0xb4,0x28,0xb4,0x13,0xfe,0x9f,0xf8,0x00,0xd3,0xd0, +0x0b,0x1b,0x6b,0x6e,0x2e,0xfb,0xe9,0x15,0x3f,0x81,0x98,0x65, +0x6c,0x58,0xfa,0x43,0xbb,0xf2,0x97,0x57,0xf4,0x08,0xd2,0x33, +0x5b,0x71,0x60,0x35,0x56,0x6e,0x65,0x33,0x6c,0x76,0x59,0x36, +0x93,0x5f,0x59,0xff,0x35,0x3b,0xcb,0xa9,0x95,0x5e,0x09,0xdf, +0x36,0xb4,0x7a,0xce,0x71,0xa6,0xd8,0x72,0xb6,0x3a,0x1f,0xf5, +0x6c,0x16,0x2b,0x02,0x96,0xc1,0x99,0x9e,0xc7,0xea,0x7c,0x56, +0x50,0x96,0xb3,0xd7,0x41,0x3f,0x63,0x61,0xaf,0xee,0xf3,0x3a, +0xf9,0x77,0xea,0x3e,0x6d,0x72,0xaf,0x00,0xe9,0x27,0x47,0xd8, +0xff,0x20,0xc5,0xd2,0xb6,0xc0,0xf2,0xd6,0xe5,0x1d,0x63,0xcd, +0x8d,0x65,0x77,0x5f,0x98,0x07,0x81,0xd5,0xf4,0x5a,0x5a,0x2d, +0xbe,0x49,0xcf,0xbf,0xc8,0xd1,0x07,0x82,0x48,0xeb,0x67,0x0d, +0xbd,0xa1,0xf6,0x0d,0xee,0x66,0xd6,0x35,0x48,0x85,0xfe,0xe1, +0x31,0xcd,0x92,0xa5,0x3e,0x5f,0x4b,0xbc,0x4d,0x13,0x55,0x7c, +0x64,0x4d,0xad,0x3d,0xff,0x97,0x0e,0xc2,0xdc,0xa4,0xf0,0xbb, +0xf6,0x4e,0x07,0x61,0x5e,0x51,0x7f,0x71,0x10,0xee,0x6e,0x96, +0x36,0x2c,0xf4,0xcc,0x0e,0xc2,0x67,0xd9,0x41,0xb8,0x7d,0x66, +0x07,0x61,0x5e,0x21,0xff,0xe6,0x20,0xdc,0xd9,0xf4,0x35,0xd6, +0xde,0x49,0xfc,0x55,0x66,0x4f,0xbf,0xe2,0xd0,0xd5,0xc6,0x36, +0xa6,0xcc,0xd0,0xaa,0xae,0xf8,0x85,0xed,0xd3,0xbb,0xab,0xee, +0x13,0xe4,0x9c,0xde,0x3a,0x34,0x64,0x44,0xf9,0xfe,0x95,0x44, +0x8e,0x3d,0xfc,0x4e,0x7b,0x81,0xf6,0x1b,0xee,0x62,0x16,0x34, +0xd6,0xde,0x5e,0x71,0x4f,0x66,0x23,0x79,0x61,0x8e,0x31,0xe5, +0x86,0x56,0x63,0x41,0x6c,0xbc,0xb3,0xea,0x37,0x99,0x95,0xa7, +0x2b,0xc7,0x88,0xb0,0xfe,0x55,0x98,0x04,0xdb,0xe3,0x9f,0xda, +0x81,0xb8,0xb3,0x19,0x68,0x7c,0xac,0x49,0x78,0xaf,0x8a,0xb3, +0xda,0x74,0x19,0x5d,0x6e,0x68,0x75,0x8b,0x72,0xf5,0xaf,0x04, +0xa1,0x2b,0x51,0x9c,0xd5,0x66,0x8e,0xe1,0xc4,0xc0,0x15,0xa7, +0xdf,0xe2,0x2f,0x29,0x1d,0xda,0xbf,0xf8,0x04,0xbf,0x18,0x3f, +0x2c,0xf2,0x27,0xe8,0x62,0x73,0xaa,0xcd,0x17,0xcd,0x45,0x87, +0xb7,0x9a,0xa2,0xbd,0x8e,0x4f,0x90,0x36,0x55,0x5d,0x7b,0x1d, +0x77,0xa5,0xdb,0xc0,0x9a,0x9b,0x2b,0x7e,0x7a,0x4d,0xa3,0x48, +0x6f,0x2b,0xeb,0x98,0x0a,0xc3,0x6a,0xf0,0xf8,0x36,0xde,0x5a, +0x75,0xef,0x35,0xef,0x8c,0xce,0xa6,0xb2,0x8c,0xa8,0x38,0x80, +0xba,0x3f,0xf3,0x16,0xbf,0x22,0xff,0xd3,0x72,0x49,0x2e,0xcd, +0x2f,0xc9,0x9f,0x6b,0x97,0x64,0xf7,0x72,0xa0,0xf2,0xd1,0x5d, +0xc2,0x67,0xa8,0x2e,0x3b,0xe2,0xe8,0x51,0x0c,0x0c,0xd5,0xe5, +0x50,0x8c,0x13,0xa2,0x01,0x08,0x63,0x21,0xa8,0xb6,0xd8,0xc9, +0x90,0x3d,0x70,0xe1,0x15,0x79,0x51,0xb8,0x92,0xb2,0xb8,0xf0, +0xb2,0xbc,0xc8,0xa1,0xf1,0x16,0xb2,0x8b,0x72,0x47,0x76,0x51, +0x0e,0xe1,0x88,0xaa,0x36,0x2c,0x29,0x83,0xb1,0x01,0x5c,0xa5, +0xa7,0xcb,0xef,0x96,0x3e,0xed,0x47,0xd3,0xae,0x9d,0x50,0x79, +0x44,0xed,0xfa,0x53,0x23,0xa7,0x93,0x22,0xb0,0xfe,0xe6,0xca, +0xdf,0x9e,0xfb,0x7d,0xaf,0x41,0x23,0xed,0xb3,0x03,0x47,0x86, +0xd1,0xda,0x9b,0xd9,0xbe,0x9d,0xc8,0xf1,0x08,0x96,0x7e,0x2c, +0xcb,0x04,0x9c,0x24,0x1d,0x35,0x64,0x17,0x7c,0xbe,0xe4,0xf3, +0x39,0x07,0x1c,0xf1,0x20,0x8b,0xd9,0xa6,0x96,0x6d,0xdb,0x12, +0xdd,0x8a,0xed,0x6f,0xef,0xf3,0xdd,0x89,0xfd,0x7b,0xb6,0x7e, +0xb5,0x60,0xfe,0xa2,0x19,0x0b,0xa6,0xca,0xa2,0xb4,0x23,0x05, +0x77,0x83,0x98,0x11,0xf5,0xfc,0xc7,0xc8,0xb9,0x31,0xb8,0xea, +0x63,0xee,0xc3,0x30,0xdd,0x07,0x57,0x91,0x3f,0x10,0x02,0x91, +0xa6,0xf5,0x32,0xe0,0x21,0x23,0x41,0xae,0x8b,0xc6,0x2f,0x44, +0x40,0x11,0x52,0xfa,0x84,0xeb,0x38,0x68,0x98,0xd4,0xf2,0xc5, +0x8b,0xe4,0xc3,0x67,0xbf,0x18,0xb1,0x8d,0xb7,0x0d,0x7b,0x29, +0x2c,0x6b,0x8c,0xb1,0x35,0xeb,0xb6,0xf9,0x9b,0xaf,0xbf,0xd8, +0x7c,0x2c,0x20,0xd1,0x76,0x6c,0x57,0xbf,0x76,0x6d,0xbb,0xf7, +0x6b,0x46,0x3b,0x46,0x7b,0x56,0x77,0x47,0x5d,0x63,0x67,0xe7, +0x92,0xf8,0x22,0xe5,0x22,0x67,0x3d,0x68,0x64,0x8c,0x79,0x29, +0xfb,0xd3,0xbe,0xb4,0xbf,0xb1,0x1c,0x12,0x8a,0x03,0xb0,0xa6, +0xea,0x08,0x72,0x89,0x21,0x5b,0xe0,0x85,0x4b,0xa6,0x17,0xae, +0xb6,0x79,0xe2,0x69,0x50,0x01,0x2a,0xce,0x98,0xf4,0x82,0x54, +0x94,0xde,0x8e,0x86,0xa4,0x45,0x75,0xc7,0x9a,0x8e,0x10,0x4e, +0x42,0xa9,0x3c,0xe5,0x56,0xd3,0xd3,0x5e,0x1f,0xaf,0x71,0xe4, +0xa5,0x35,0xfa,0xad,0xd4,0x69,0x78,0x84,0xc9,0x02,0x52,0x21, +0x13,0x61,0x4f,0xd9,0x7b,0x3e,0xd1,0xf5,0xc4,0x9a,0xbb,0xde, +0x72,0xa8,0xde,0xa1,0xbc,0xe4,0xe1,0x93,0x76,0xdd,0x46,0xe0, +0x3b,0x50,0xe7,0xc8,0x65,0x86,0x3c,0x77,0x4a,0xe4,0x1a,0x0e, +0xf5,0x17,0x8c,0xc6,0xee,0x2e,0xb1,0xb6,0xd1,0xb2,0x7b,0x83, +0x29,0xeb,0xb1,0x63,0xda,0x4f,0x6f,0x84,0xe4,0x43,0x83,0xa9, +0x8e,0x31,0x22,0x07,0xdd,0x2b,0xaf,0x18,0xe3,0x5f,0xa6,0x26, +0x02,0xd6,0x4c,0x8d,0x00,0x59,0xc0,0x38,0xa6,0xbc,0x9a,0x3d, +0x98,0x6a,0xef,0x32,0x62,0x44,0xaf,0x6e,0x7e,0x0d,0x4f,0xb6, +0x7c,0xfc,0xf8,0x04,0x49,0x6b,0xe4,0xf6,0x2e,0x6b,0x0a,0xce, +0xb7,0x87,0x91,0xb4,0xc6,0xda,0x5a,0x7f,0xb8,0xf9,0xeb,0x6f, +0x76,0x6c,0x3e,0x48,0xfb,0xeb,0xc1,0x1d,0xfd,0xda,0xb6,0xfb, +0xb0,0x5f,0xeb,0x00,0x4f,0xe1,0x16,0xc5,0x21,0x53,0x02,0x0c, +0xdc,0x10,0x04,0xe6,0x0a,0x79,0xdd,0x16,0x8e,0xcb,0x0d,0x15, +0x26,0x5b,0x9b,0x61,0x1c,0x92,0x6d,0x2f,0x5c,0x46,0x1f,0x23, +0x50,0x55,0x7a,0x1d,0x81,0x07,0x08,0x63,0xb9,0x7c,0x66,0x8b, +0xc0,0x9d,0x86,0xaa,0x24,0x5d,0x74,0xde,0x15,0xc2,0x20,0x71, +0x4e,0x13,0x5e,0x43,0x41,0x7e,0x2c,0x5f,0xd6,0xb7,0xc9,0x6b, +0x18,0x21,0x42,0xbe,0x84,0x35,0x7b,0x16,0xef,0x3f,0xe9,0xb7, +0xad,0x6e,0x7f,0x3b,0xda,0x7b,0x8a,0xdc,0x67,0x20,0xe9,0xf4, +0x9e,0xaf,0x37,0x7f,0xed,0x4b,0x8b,0x61,0xe6,0x42,0x8e,0xc9, +0x19,0x62,0x1e,0x20,0x3d,0x5a,0xc6,0xd9,0x74,0x27,0x6e,0xe3, +0x5e,0xed,0x3c,0xee,0xd6,0x88,0x9e,0x9a,0xc3,0xc6,0xc8,0x85, +0xe3,0x67,0x8d,0x4e,0x18,0x99,0xe0,0x33,0x75,0xf6,0xe6,0x1d, +0x4b,0x77,0xce,0xde,0xeb,0x2b,0xe7,0xa7,0x94,0x87,0xa9,0x95, +0x1b,0x35,0xc7,0x11,0x55,0x76,0x35,0xf5,0x91,0xf9,0x0f,0xdd, +0xde,0x7d,0x60,0x77,0xe2,0xe2,0x95,0xb3,0x56,0x4e,0x94,0x1f, +0xa3,0x8f,0xcf,0xae,0x13,0x2e,0x9e,0x21,0x9c,0x8e,0x82,0x45, +0x55,0x97,0x44,0x95,0xee,0x70,0x4e,0x2c,0x55,0x04,0x0a,0x23, +0xd6,0x9c,0x51,0x5a,0x78,0x1d,0x01,0xf4,0xba,0x2a,0x7f,0xd5, +0x93,0x81,0x2f,0x55,0x03,0xe3,0x11,0x1b,0x29,0x12,0x1e,0x9a, +0xb3,0x4e,0xab,0xeb,0x78,0x43,0xb8,0x46,0x5a,0x14,0x8d,0xb0, +0x4d,0xea,0x4f,0x80,0xeb,0x8d,0x2d,0xb2,0x42,0xf8,0xc2,0x41, +0x58,0xdd,0x05,0x1b,0xd8,0x06,0xcb,0xea,0xb5,0x26,0x6f,0xc5, +0x0a,0xc2,0x75,0x3d,0xbc,0xd5,0xd6,0xdf,0xbc,0xd4,0x53,0xba, +0xca,0x15,0x74,0x91,0x9c,0x5f,0xdb,0xe6,0xc8,0xaa,0xda,0x1a, +0xb2,0x8c,0xcc,0x9a,0x44,0xa7,0xb7,0xdf,0x6f,0x69,0x7f,0x42, +0x0f,0x7b,0xe1,0xd6,0x8d,0x30,0xb4,0x58,0x41,0xf9,0x7d,0x05, +0x43,0xd2,0xe2,0x3f,0x6e,0x39,0xae,0xf6,0x8b,0x95,0xa1,0x4e, +0xc7,0xd5,0xa0,0xa0,0x82,0xbf,0xa8,0xd6,0xc6,0x65,0xf9,0xbb, +0xde,0xf6,0x6c,0x74,0xaf,0xd9,0xa2,0x7f,0x6d,0xa7,0xed,0xdc, +0xe6,0x59,0x11,0xd4,0x7c,0x52,0x36,0x87,0x9a,0x2e,0xc6,0x5b, +0x0c,0x8f,0xb4,0x77,0xc9,0x68,0x49,0xae,0xfa,0xcd,0xb0,0x58, +0xda,0xd2,0x59,0x1e,0xed,0xe0,0x92,0xd1,0x9c,0x0a,0x51,0x9d, +0x76,0x00,0x31,0x1a,0xcb,0x8c,0xe4,0x6b,0xe3,0x57,0x62,0xc4, +0x3e,0x5d,0xf1,0x18,0x5a,0xbc,0xe0,0x91,0x0e,0xcc,0x28,0x4b, +0x12,0x7b,0x9b,0xcc,0xc1,0xe4,0x94,0x82,0xc0,0x99,0x8c,0x5c, +0x20,0xa4,0xa0,0x29,0xf0,0x80,0xfa,0x94,0x09,0x5b,0x69,0xc2, +0x2b,0xc6,0x2f,0x9a,0xb0,0x28,0x13,0x96,0xb0,0x08,0x5f,0x27, +0xb1,0xfd,0x7a,0x0e,0x9e,0x14,0x05,0xb3,0x82,0x1c,0x86,0x79, +0x14,0x6d,0x92,0x3d,0x40,0x0d,0xc5,0x5c,0xc2,0xc3,0x0d,0xe6, +0xe0,0x6e,0xe1,0x05,0xd0,0x5e,0xd5,0x13,0xee,0xb5,0x32,0x00, +0xb6,0xaf,0x00,0xbf,0x77,0xb4,0x13,0xee,0xd9,0x32,0x57,0xc9, +0xe2,0x6a,0x2e,0xfb,0x97,0xe4,0x1f,0xc1,0x89,0xe1,0xf7,0x77, +0x01,0x45,0x37,0x8e,0xa1,0xf2,0xae,0x46,0xbf,0xee,0x68,0x77, +0xe4,0xad,0x0a,0xa2,0x67,0x6f,0x93,0x5c,0xdf,0x70,0xd5,0x4b, +0x67,0xcf,0x8a,0x58,0xb2,0x11,0x85,0xbf,0xa0,0x96,0xcf,0xf0, +0x50,0xec,0x3c,0x94,0xe0,0x82,0x32,0x2b,0xf6,0x69,0x42,0xac, +0xe9,0x19,0x4f,0xc4,0xcf,0xd9,0x35,0x24,0xff,0x5a,0x38,0x81, +0xc1,0x3b,0xc1,0xdc,0xc1,0x1d,0xf0,0x13,0xa4,0x5c,0x87,0x61, +0xb4,0x6a,0xaa,0x91,0x42,0xb1,0x16,0x7b,0x5b,0x10,0xce,0x79, +0x0c,0xfd,0x9c,0x23,0xf1,0xe1,0x65,0x6c,0x63,0xce,0x01,0xf9, +0x73,0x6d,0x55,0x28,0xed,0x08,0x24,0xe1,0x0f,0x56,0xf8,0x3d, +0xaa,0xef,0x64,0x4c,0x48,0x76,0x19,0x51,0x1a,0xc5,0x38,0x0c, +0xf5,0x1f,0x20,0x6f,0x44,0x28,0x5f,0xc2,0x90,0x45,0xb0,0x92, +0x5a,0x4a,0xeb,0x9c,0x30,0x3c,0x85,0x6b,0x57,0x90,0x39,0x70, +0xe9,0xdf,0xa2,0xb9,0x09,0x5b,0x7f,0xc0,0x54,0xd5,0xcd,0x31, +0x17,0xb8,0x28,0x3b,0x63,0x43,0x59,0xde,0x2a,0xd6,0xc0,0x7a, +0xd2,0x3d,0x23,0x38,0x5f,0x80,0xc8,0x39,0x17,0x48,0x31,0xd7, +0x81,0xf9,0x50,0x62,0x6a,0x5a,0x39,0x90,0x37,0x22,0x95,0x9f, +0xe3,0x23,0x4e,0xef,0xd1,0x73,0x24,0x08,0xbf,0xdd,0x20,0xb7, +0xe3,0x99,0x35,0x60,0xfe,0xce,0x01,0xf8,0x02,0x9c,0x01,0xf8, +0xfa,0x93,0x1e,0xdf,0xb9,0x8e,0xea,0x73,0xc5,0x86,0x41,0xd2, +0xcf,0x18,0x19,0x1d,0x34,0xbe,0x08,0x75,0xf3,0x87,0x48,0xe5, +0x73,0xd3,0x46,0x4f,0x65,0x96,0xe5,0xab,0xaf,0x04,0xc8,0xb9, +0x78,0x63,0x02,0x13,0xce,0x67,0xc2,0xd6,0x57,0xcd,0x0e,0x11, +0xd8,0x86,0x08,0x63,0xeb,0xa8,0x18,0x26,0x7c,0x6e,0x96,0x87, +0x1f,0xb0,0xcc,0x6a,0x67,0x7f,0x3a,0x10,0xa8,0x71,0x1d,0x15, +0x77,0x45,0x36,0x25,0xf4,0x56,0x57,0xcd,0x2c,0x80,0xf5,0x54, +0xd7,0x88,0x7f,0x00,0xb7,0x52,0x5d,0x27,0xbd,0x1f,0x2c,0xb7, +0xe2,0x92,0x89,0x20,0x7b,0xf2,0xf7,0x8b,0x57,0xc6,0x73,0x01, +0x5b,0xaa,0xae,0x17,0x75,0x81,0x28,0x39,0xdc,0x59,0x4f,0x78, +0x8d,0x75,0x0f,0x73,0x1f,0x13,0xb8,0x8f,0x5d,0x9d,0x61,0xfe, +0x02,0xf0,0x77,0xe0,0x91,0xe5,0xa7,0x1e,0xf6,0xc0,0x39,0x5d, +0x49,0x0e,0x7b,0x40,0xe6,0xc5,0x0b,0x8b,0xa9,0xf4,0x15,0x84, +0x63,0xcd,0x37,0xd1,0xfe,0x02,0xd4,0x3e,0xe2,0x43,0xc4,0xfd, +0x39,0xd4,0x1f,0x49,0xf1,0x95,0xb0,0x23,0x7f,0xd8,0xd2,0x73, +0x81,0x6e,0x29,0x44,0x75,0x58,0xa8,0xa9,0xa2,0x30,0xc2,0x0a, +0xfa,0x57,0x0f,0x87,0xf2,0xac,0xff,0x5a,0x5b,0x85,0xd0,0x9c, +0xd2,0xf6,0xd9,0x4d,0xa5,0x64,0x8a,0x01,0x58,0x0f,0x07,0x0b, +0x7b,0x22,0xa8,0x30,0x6c,0x6d,0x85,0xfc,0x73,0xe2,0xbf,0xbd, +0x4a,0xfc,0xb8,0x7e,0xec,0x3f,0xad,0x12,0x3c,0x09,0xf8,0x44, +0x75,0x8a,0xd0,0x05,0x87,0xea,0x94,0x36,0x8c,0x4b,0xb4,0x62, +0x16,0xfe,0x6d,0xc5,0x50,0xfd,0x0b,0x3c,0xff,0x9b,0xc6,0x4c, +0x55,0x9d,0x68,0xe1,0x30,0x66,0x67,0xac,0x4b,0xeb,0x86,0x4b, +0x35,0x30,0x8a,0x96,0x0d,0x07,0xfc,0xab,0x87,0x63,0x84,0xeb, +0x71,0xea,0x4c,0x84,0x0a,0xa4,0xa6,0x30,0x0a,0xe7,0x3e,0x80, +0xe3,0x19,0x9d,0xbe,0x87,0xc7,0x1f,0x93,0xe6,0x4a,0x9c,0xc6, +0x60,0x15,0x2b,0xc4,0x5f,0x53,0xda,0xcf,0xfd,0xc6,0xeb,0x62, +0x3d,0x1c,0x25,0xf2,0x6f,0xb5,0xe0,0x03,0xb0,0xfa,0x53,0x48, +0x19,0x66,0x79,0x74,0x87,0x48,0x8f,0x68,0x35,0xe5,0xa2,0xf4, +0x90,0x21,0xe8,0x73,0xc9,0x5c,0x43,0x62,0x54,0xd9,0x78,0x31, +0xfe,0x18,0xa9,0x02,0x69,0x31,0x4a,0xef,0x87,0xec,0xde,0x1d, +0x22,0xec,0x5b,0x9d,0x34,0x3a,0x24,0x5c,0xb4,0x1a,0x77,0xd1, +0x0a,0xe1,0x77,0xe9,0xef,0x0b,0x58,0xe6,0xfb,0x2d,0x23,0x6a, +0xdf,0xa7,0x3a,0x6a,0xdf,0x2f,0xce,0xa8,0x7d,0x3a,0x72,0x77, +0x06,0x03,0x4e,0x3b,0x5e,0x2c,0x75,0x00,0xc8,0x4f,0xe5,0xd0, +0x8c,0x48,0x7d,0x25,0x75,0xa4,0xbe,0x5f,0x38,0x5b,0x7b,0x28, +0xf6,0xbd,0x94,0x52,0x2a,0x8a,0xee,0x4c,0xa1,0xe9,0xd9,0xda, +0x0b,0xca,0x05,0xdc,0xd0,0xe3,0x48,0x55,0x92,0x1b,0xfa,0x54, +0x0e,0xe3,0x04,0x95,0xa1,0x9c,0xa0,0x72,0x97,0x7a,0xfa,0x19, +0xb7,0x64,0x85,0xf8,0xd3,0x1f,0x6d,0xe8,0xe8,0x79,0xd1,0xaa, +0x8f,0x26,0x7c,0xfb,0x59,0x11,0x5e,0xa1,0x4c,0x3e,0x5a,0x87, +0xf8,0xf3,0xd4,0x21,0xfe,0x7e,0xb1,0x42,0xfc,0xe9,0x4f,0x34, +0x68,0x7e,0x5e,0x46,0xab,0x58,0x26,0x7c,0x4d,0x2b,0x91,0x30, +0xc7,0x98,0x57,0xa0,0xb5,0x8e,0xf5,0x17,0x98,0x0f,0x88,0x5d, +0x11,0x21,0x7e,0xe1,0x08,0x8f,0x7e,0x67,0x41,0x36,0x04,0xdc, +0xe8,0x28,0xbb,0xd2,0x12,0x90,0x70,0xfd,0x12,0x9e,0xc8,0xd0, +0xa0,0x4b,0xfc,0x1c,0xe4,0xbb,0xc7,0x1e,0xd9,0xa1,0xec,0xc0, +0xdd,0x86,0x83,0x02,0xfe,0x23,0x46,0x2f,0x0e,0x16,0xf8,0x4f, +0x18,0xf3,0x74,0x10,0xc1,0x86,0x20,0x4b,0xeb,0x20,0x82,0x0d, +0x75,0xec,0xc0,0x8b,0xba,0xf0,0xbd,0x15,0x44,0xb0,0x21,0x0c, +0xe3,0x20,0x82,0x6f,0xcd,0xd4,0xd8,0x8c,0x99,0x5a,0xca,0x33, +0x65,0xb2,0xc4,0xf3,0xdd,0xcf,0x08,0xbf,0x37,0x41,0x6d,0x58, +0xe4,0x24,0x70,0xca,0xab,0xdb,0x45,0xba,0xba,0x86,0xa2,0xeb, +0x25,0xd6,0xc4,0x24,0x3e,0x63,0x01,0xe4,0x7b,0xc4,0x3e,0xdd, +0xc4,0xc5,0x3e,0x0d,0x1f,0x8c,0xc8,0x90,0xb3,0xab,0xfe,0x82, +0x24,0x83,0x8e,0xe5,0x9c,0xdf,0x92,0xd7,0x30,0x1d,0xa6,0xb0, +0xaa,0x0e,0x53,0xf8,0x8b,0x33,0x4c,0xe1,0x25,0xf3,0x4e,0x94, +0x15,0xa6,0x30,0x7d,0xfa,0x05,0xcf,0xe6,0x2f,0x91,0x2a,0xc4, +0x9a,0xcd,0x09,0xe9,0x41,0x09,0xe7,0xaa,0x65,0xc6,0xc8,0xc5, +0xc2,0xaf,0xbc,0x25,0xee,0x7c,0x3f,0xf1,0xe3,0x26,0x0a,0xf8, +0x82,0x0c,0xe4,0x20,0x85,0xc2,0x67,0x1e,0xcc,0x54,0x5f,0xd0, +0x9e,0xe0,0x73,0x14,0xb0,0x93,0xf6,0xba,0x1e,0xe6,0x0c,0x39, +0xe8,0xf8,0x06,0xac,0x78,0x83,0x97,0x32,0x6d,0x0a,0x32,0xdf, +0xef,0x7a,0xc0,0xc2,0x6e,0xd7,0xe2,0xda,0xa0,0x43,0x0d,0x12, +0x17,0x95,0xc5,0x0a,0x35,0x48,0x6c,0xda,0xb2,0x17,0x35,0xc7, +0x5d,0xab,0x2e,0xf2,0xb8,0x00,0x36,0xd4,0x4d,0xe6,0xae,0x05, +0xf2,0xb7,0xda,0xaa,0xf0,0x33,0x9b,0x2c,0x27,0xc5,0xf2,0x35, +0xf7,0x03,0xa4,0x1b,0x6d,0x03,0x56,0xb8,0xb5,0xaa,0x38,0x27, +0x56,0xce,0xb1,0xa1,0x0f,0xd6,0x33,0x26,0x24,0xb9,0x88,0x9c, +0x25,0xf5,0x5e,0x11,0xa8,0x0a,0x42,0x7b,0x2c,0xe3,0x8c,0xb2, +0x66,0xeb,0x07,0xb2,0x22,0x5e,0xee,0xa2,0x4b,0x78,0x57,0x75, +0xe1,0x4f,0xc7,0xb8,0xf8,0x23,0x15,0xcf,0xea,0xc8,0x69,0x6f, +0xf8,0xc4,0xea,0x6d,0xa5,0x0c,0x6f,0x2b,0x21,0xb4,0x52,0x9d, +0x2d,0x97,0x95,0x62,0x05,0xb5,0x8c,0x15,0x70,0x46,0x13,0x50, +0xbe,0x40,0xea,0xf1,0xbc,0x58,0x39,0xcf,0x86,0x7e,0x58,0x4b, +0xf7,0x32,0xe0,0x35,0x9d,0xbc,0x58,0x7d,0x27,0x87,0x00,0xc4, +0xcd,0x9c,0xb1,0xae,0x2d,0x07,0x70,0xea,0x98,0x1e,0x02,0x10, +0x37,0x2f,0xe5,0x2a,0xf9,0x39,0x1e,0x49,0x8f,0x00,0x88,0x9b, +0x97,0x18,0x97,0xcd,0x3e,0x91,0x18,0x91,0x52,0x0e,0x02,0xcd, +0x6b,0x20,0xef,0x46,0xa9,0x02,0xe6,0x26,0x90,0x0b,0xf1,0x6a, +0x46,0xf4,0x32,0x8d,0x14,0x23,0xc4,0x23,0x52,0xf3,0x8a,0xd3, +0xda,0x77,0x9f,0x45,0x1b,0x8f,0xea,0x10,0x61,0x95,0x9a,0xa9, +0x0e,0x93,0x74,0x89,0xb6,0xf9,0xf9,0x13,0x21,0xe5,0x27,0x90, +0x5f,0xe0,0xf9,0x8c,0x60,0x7d,0x9d,0x16,0x1a,0x66,0x6c,0x24, +0x16,0xc7,0x98,0x38,0x19,0x83,0x23,0xec,0x55,0xa4,0xa7,0x08, +0xec,0x00,0xf8,0x81,0xea,0x70,0x91,0x91,0x99,0x9e,0xe3,0x98, +0x11,0x59,0x76,0xac,0x93,0x11,0xc7,0x6c,0xf3,0x22,0x21,0xda, +0x41,0x2f,0x9c,0xce,0x9b,0xff,0x22,0x90,0xf9,0xf1,0x6c,0x46, +0xbc,0xb2,0xcd,0x6b,0xa8,0x3f,0x0d,0x84,0x47,0x73,0xd2,0x35, +0xab,0x44,0x43,0x28,0x14,0x4f,0xe4,0x84,0xdc,0x73,0x1a,0xc9, +0x39,0x18,0x7f,0x9d,0xb7,0xa2,0xd1,0xaa,0xa5,0x28,0x18,0xc9, +0x69,0xde,0x1a,0x38,0x4a,0x83,0x79,0x01,0x4a,0x13,0x46,0x16, +0x9c,0x13,0x2f,0x0a,0xcd,0xa4,0x33,0x20,0x42,0xd5,0x35,0xef, +0x00,0xdd,0x9c,0x0e,0x39,0x96,0x82,0xb9,0x0f,0xca,0x26,0x42, +0xa1,0x44,0x3a,0x71,0xca,0xa0,0x9b,0x31,0xf1,0xa4,0x4b,0x5a, +0x19,0x30,0xed,0x11,0x2a,0x92,0x70,0x86,0xa0,0xa1,0x68,0xa5, +0xb9,0x8f,0x02,0xfc,0x46,0xc5,0xa6,0x66,0xb7,0x8a,0x67,0x55, +0xac,0xa4,0x7e,0xb9,0x4f,0xe5,0x88,0x83,0x87,0xd3,0x56,0xeb, +0x22,0x9e,0x51,0xb1,0x6a,0x9d,0x2e,0xc6,0x62,0xe5,0x94,0x2f, +0x60,0x2e,0x69,0xfb,0x73,0x9a,0xc8,0x39,0x45,0xf5,0x5f,0xe6, +0x6e,0x13,0x1e,0x7b,0x61,0x3e,0x86,0x49,0x0f,0x48,0x69,0x2b, +0xb7,0x18,0xd7,0xcd,0xf1,0xe1,0x65,0xad,0x9e,0x35,0xd6,0x3d, +0xcb,0x19,0xa1,0xa2,0xd3,0xaa,0x00,0x6d,0x83,0x43,0x74,0xa6, +0xb2,0x40,0x5a,0x21,0x65,0xd0,0xc3,0x98,0x78,0x4a,0x77,0xca, +0x8d,0x3a,0x4e,0xe0,0x15,0xb8,0xcb,0x31,0x1b,0xcc,0xf3,0x50, +0x43,0x73,0x2e,0x8e,0x73,0x9a,0x3a,0xf9,0x1b,0x13,0x8f,0x33, +0xa2,0x7c,0x12,0xa1,0x42,0x99,0x4f,0x13,0x2c,0xe1,0x78,0x05, +0xc2,0x75,0x05,0xe0,0x4a,0xb5,0x4c,0xf8,0xdf,0x01,0x9c,0x86, +0xf5,0xd2,0xba,0x70,0x28,0xbc,0x75,0xa4,0x03,0xac,0x5c,0xca, +0x75,0x72,0x3f,0x7e,0x62,0x85,0xc2,0x1b,0x37,0x61,0x12,0xe7, +0x18,0x5d,0xbb,0x67,0xf1,0xde,0x13,0x7e,0xdb,0x62,0x48,0xf9, +0xcf,0xde,0xbd,0x29,0x1a,0xe8,0x5e,0xf0,0x50,0xfb,0xd3,0xa7, +0xf6,0xee,0xdf,0xb2,0xcf,0x77,0xc1,0xa2,0x45,0x33,0x17,0x4d, +0x96,0x81,0x18,0xe8,0x73,0xe8,0x6b,0x8e,0x99,0x37,0x99,0x63, +0xe6,0xed,0xba,0x24,0x9f,0x71,0xcc,0x3c,0xe2,0x3b,0x83,0xf9, +0x72,0xcc,0xbc,0x81,0xd1,0x21,0x18,0xdd,0x58,0x46,0x97,0xc0, +0xe8,0x78,0x19,0x6d,0x0b,0x8a,0x43,0x07,0xc9,0x35,0x4a,0x45, +0x62,0x33,0x90,0x2b,0x71,0x77,0x5a,0x63,0xee,0x46,0x77,0x46, +0xe7,0xf0,0x78,0x8d,0xa2,0x8b,0xa7,0xa3,0x37,0xce,0x40,0xcf, +0x16,0xa5,0x6a,0x11,0xfa,0x6f,0x98,0x2b,0xad,0x35,0x89,0xb6, +0x0b,0x3d,0x97,0xaa,0x86,0xa3,0xb8,0x55,0x6c,0x48,0xc5,0x8a, +0xba,0x28,0xf7,0xe2,0x40,0x47,0x65,0x48,0xb9,0x02,0xf2,0x1b, +0x52,0x05,0x7b,0x73,0x09,0x1b,0x10,0x38,0x52,0x97,0x08,0x31, +0xe5,0x33,0x0d,0x75,0xc7,0x50,0x35,0x94,0x9b,0x9d,0xc8,0xcd, +0x2e,0x12,0xfe,0x77,0x61,0x30,0xf6,0x52,0x03,0xc1,0x3c,0x4c, +0x22,0x5a,0x4a,0xdd,0x98,0x22,0x42,0xc2,0xa0,0x24,0x7a,0x1a, +0x13,0x4e,0xba,0x08,0x4f,0xda,0x60,0x3f,0xc3,0x4f,0xd2,0x5a, +0xd2,0x22,0x2c,0xc6,0xf6,0x9c,0xcf,0xd2,0x1a,0x32,0xf5,0x00, +0xa6,0xe6,0xa8,0x79,0xf1,0x42,0x4c,0xa6,0xe9,0x2e,0x90,0xb6, +0x86,0xa4,0xbc,0x92,0xa5,0x3c,0x43,0xf8,0xdf,0xe2,0xe7,0x30, +0x52,0xd5,0xd4,0x6d,0xe7,0x57,0x95,0x55,0x6b,0x4d,0x4e,0x3a, +0x49,0x84,0xa3,0x54,0x06,0xf9,0x5a,0x3d,0xe6,0x0a,0x18,0xdd, +0x54,0x46,0x97,0xc3,0xe8,0x26,0x3c,0xe6,0x58,0x91,0xfb,0x73, +0x90,0x2f,0xa3,0x54,0x29,0x1a,0x74,0x13,0x2c,0xf4,0x15,0x98, +0x4d,0xb0,0x99,0xf0,0x39,0x0f,0xe6,0x08,0x99,0x6a,0xd0,0x8e, +0xbc,0x30,0x49,0x4d,0x93,0x43,0xc3,0x71,0x97,0x9c,0x89,0x59, +0x3e,0x04,0x3b,0xa9,0x91,0xb7,0xef,0x13,0xd4,0xcc,0x65,0xbc, +0x70,0xdc,0x84,0x10,0xae,0xaa,0x8a,0x1f,0x3f,0xfb,0x4b,0x55, +0x33,0xbc,0x73,0xee,0xed,0x2a,0x87,0xb7,0xea,0x7c,0xfe,0xed, +0xaa,0x48,0x0c,0xe6,0xe0,0x4f,0x6f,0x53,0xde,0xc4,0x02,0x8e, +0x75,0xef,0x6f,0xbe,0x19,0x7e,0xf7,0x2d,0x43,0xef,0x6b,0xe8, +0x69,0x82,0x4e,0x0a,0xc7,0xa3,0x0c,0x55,0xf6,0x06,0x29,0x27, +0xce,0xd9,0xb1,0x2f,0x9e,0x70,0x7c,0xc2,0x4c,0xbd,0x8c,0x97, +0xc4,0x34,0x98,0x1e,0x4a,0xda,0xa8,0xfc,0xd8,0x2a,0x6f,0x27, +0x1d,0x3c,0xbb,0xf0,0xff,0x86,0xdd,0x51,0xea,0x70,0x90,0x3d, +0xfb,0x6e,0xc0,0x48,0xae,0xb8,0x80,0x2b,0x9c,0x21,0xf6,0x70, +0x07,0x5d,0xcd,0x5c,0xf5,0x76,0xde,0xe8,0x14,0x9a,0x72,0x48, +0x24,0xee,0x94,0x35,0x11,0xcc,0xa1,0xb0,0x5e,0x96,0x0c,0xf8, +0x18,0x37,0x5b,0x51,0xf5,0x08,0x2f,0x12,0xd3,0x32,0xd0,0xfa, +0x47,0xe2,0x56,0x42,0x73,0xdb,0x0f,0x55,0xd3,0x4e,0xc1,0x4b, +0xcc,0xc7,0xa1,0xf6,0xdc,0x43,0x38,0xd4,0x5e,0x65,0x0e,0xb5, +0xe7,0xae,0x43,0x80,0x55,0x4a,0xd9,0xaf,0x8b,0xdf,0xe3,0x30, +0x8e,0xba,0xf7,0x35,0x9c,0xc6,0x5d,0x1c,0x75,0xef,0x6b,0xbe, +0xe8,0x57,0xd2,0x51,0xf7,0xbe,0xb6,0xf0,0x32,0x45,0xdd,0xfb, +0x9d,0xa3,0xee,0x95,0xe6,0xa8,0x7b,0xaa,0x16,0x37,0x5b,0xe3, +0xbd,0xcd,0x92,0x96,0xd5,0x35,0x65,0x3a,0xa8,0x70,0x3d,0x8a, +0x2f,0x41,0xba,0x5a,0x58,0x83,0x23,0x71,0x07,0x63,0x09,0x63, +0xf9,0x9b,0xb0,0x7b,0xbf,0xc3,0x4c,0x2c,0x6e,0x85,0xeb,0xc3, +0x1d,0x81,0x7f,0x47,0x76,0xdc,0xe5,0xf0,0x7d,0xe1,0x1c,0xbe, +0xef,0x6b,0x0e,0xdf,0x77,0x35,0x35,0xfe,0xfd,0x9c,0x09,0x59, +0x96,0xc7,0x5a,0x99,0xc3,0xfa,0xfd,0xce,0x61,0xfd,0x4a,0xa6, +0x4c,0x03,0x51,0x70,0x25,0xa8,0xd8,0x0d,0x7c,0x7b,0xaf,0x7c, +0x0a,0xbf,0x95,0xc3,0xa2,0x68,0x3a,0x4b,0x60,0xde,0xb4,0x2f, +0xa0,0x9e,0xff,0xc2,0x38,0xe1,0x45,0xec,0x77,0x63,0xa4,0xc9, +0xb1,0x14,0xd6,0xd0,0x26,0xce,0x8a,0x87,0x46,0x1c,0x1a,0x85, +0x9f,0x13,0x62,0x1e,0x91,0x7b,0x29,0x27,0x6d,0x0c,0x97,0xf5, +0x97,0x6e,0x90,0x5e,0x01,0x93,0x4f,0x7e,0x30,0x3e,0x7a,0x72, +0x38,0x3b,0xf4,0x75,0xe7,0x40,0x2d,0x05,0x7f,0x06,0xe9,0x22, +0x72,0xd0,0x94,0xfd,0x33,0x9d,0x1c,0x8d,0x0b,0x39,0xe4,0x9f, +0x2b,0xfb,0xf0,0xb9,0x67,0x84,0xfc,0x73,0x4f,0x0f,0xf9,0x97, +0xf3,0xb5,0x41,0x8c,0x27,0x85,0x4f,0x75,0x95,0x20,0x2b,0x9f, +0x24,0x46,0x83,0xa2,0x70,0x3b,0x31,0xf2,0x74,0x8c,0xe5,0xef, +0x1d,0x37,0xc9,0x15,0x74,0x86,0x3e,0x85,0x5b,0xc2,0xff,0x10, +0xc8,0x29,0x75,0x84,0x0b,0x9d,0xe1,0xf9,0x57,0xf0,0xae,0xf7, +0x87,0x08,0x7c,0x0a,0x22,0xa0,0x1b,0x60,0xb2,0xf2,0x15,0xee, +0xf4,0x40,0x0e,0x55,0x45,0x53,0xce,0xd0,0x02,0xab,0x04,0xaa, +0xac,0xf0,0xcc,0x0b,0xbd,0x54,0x03,0xc7,0xf3,0x4c,0xbf,0xcd, +0x38,0x9c,0xc7,0x01,0x5c,0x5c,0xfe,0x03,0x72,0x0c,0x6e,0x61, +0xef,0x38,0x8f,0xa2,0x70,0x9b,0x41,0x3d,0x55,0x03,0x1d,0xb1, +0x8f,0x40,0x38,0x85,0xd8,0x0c,0xa6,0x56,0x9f,0xc0,0x0b,0x66, +0x9b,0x8c,0x45,0x39,0x2c,0x9f,0x70,0x2d,0x0a,0x6a,0xd3,0x45, +0x39,0x86,0x86,0x31,0xf5,0x92,0x79,0xd8,0x4e,0xcd,0x46,0x91, +0x80,0xdd,0xac,0xf1,0x0f,0x8e,0xa2,0x49,0x29,0x81,0x5e,0xd4, +0x6d,0xfc,0x04,0xff,0x23,0x02,0x26,0x72,0xc4,0xbd,0x04,0x1a, +0xa9,0x8e,0xde,0x27,0x07,0x10,0x19,0x47,0xf4,0x63,0xb2,0xb2, +0x7a,0x30,0xc3,0xb0,0x63,0x6a,0x24,0x88,0x42,0x23,0x41,0x47, +0xf7,0xcb,0xf9,0x4a,0xe4,0xcc,0xca,0x6b,0xac,0xd2,0x09,0x62, +0xd7,0x2b,0x0a,0xd7,0x13,0x3b,0xb7,0x04,0x90,0xe3,0x70,0x15, +0x87,0xfb,0x2b,0xf8,0x13,0xfb,0xa4,0x92,0xc0,0xbd,0xad,0x06, +0x47,0x44,0xe1,0x97,0x84,0xe1,0xc7,0x02,0x8f,0xe5,0xf9,0xfc, +0x01,0xfb,0xc9,0x0f,0xc0,0xf1,0x1d,0xe0,0xac,0x4b,0xe6,0x09, +0xe1,0xdb,0x08,0x12,0xcb,0x19,0xd8,0xbc,0x78,0x9d,0xe2,0xc5, +0x1f,0xd7,0x91,0xcd,0x65,0xb3,0x47,0x57,0x1e,0x3f,0x2e,0x71, +0x05,0x9b,0x05,0xc8,0x6e,0x18,0x63,0xb4,0x6a,0xdc,0x0a,0x8b, +0x61,0xb1,0x46,0x87,0x0e,0x15,0x4c,0xb4,0x1f,0x4e,0x3e,0x24, +0x8b,0xc9,0x62,0xa7,0x5a,0xb5,0x2c,0xe8,0x29,0x0a,0xfe,0x48, +0xc7,0xb4,0xa2,0x1b,0x77,0x4e,0xab,0x2f,0xbd,0xa3,0x70,0x03, +0xb5,0xe4,0x91,0x00,0x77,0x71,0x95,0x23,0x17,0xa8,0xc6,0xf0, +0x1b,0x83,0xb3,0xcb,0xb0,0x63,0x98,0x2c,0xdb,0x45,0xe3,0x22, +0x59,0x14,0xed,0xa2,0xd0,0x09,0x40,0x77,0x0c,0x49,0x8f,0x35, +0xe8,0x9e,0x11,0x6b,0xd0,0xdd,0x8a,0x35,0x48,0x23,0xaf,0x2a, +0xfc,0x0f,0x02,0x6e,0xc1,0x08,0x8e,0x35,0xc8,0xb2,0x6e,0xa5, +0x42,0x38,0xd6,0x20,0x37,0x99,0x4d,0xc3,0xf6,0xd0,0x26,0x61, +0x70,0x13,0xf7,0xb9,0x89,0x6c,0x6f,0x35,0x61,0xd3,0x4d,0xd8, +0xb1,0xa8,0x33,0xdc,0x60,0x09,0x55,0xcb,0x91,0xc4,0x33,0x10, +0x9f,0x84,0x28,0x47,0xd5,0xc1,0x3d,0x32,0x9c,0xee,0xec,0x2e, +0xfe,0xb4,0x6b,0x94,0x0d,0x50,0x1d,0x30,0xdc,0x19,0x85,0xb0, +0x84,0x84,0x7f,0x40,0x7c,0x80,0x4b,0x9d,0xc1,0x09,0x8b,0xbf, +0x36,0x6a,0x8d,0x2f,0x35,0x29,0x84,0x56,0xa3,0x5d,0xc6,0x9f, +0x22,0xdc,0x21,0x75,0x68,0x27,0x0a,0x47,0x37,0xfb,0xf4,0xea, +0x95,0x67,0x56,0x4d,0x5b,0x08,0xc7,0x70,0xb3,0x33,0x28,0x61, +0x89,0x1f,0x85,0x67,0x65,0x8e,0x00,0x61,0x58,0x31,0x09,0x4b, +0xa8,0x9c,0xf2,0x11,0x7b,0xcc,0x55,0xb6,0x82,0x12,0x3a,0x7f, +0x07,0xa9,0x4a,0x8e,0x9a,0x6f,0x7e,0x5f,0xc7,0x61,0x1c,0xa5, +0xb0,0x23,0x3c,0xc2,0x2f,0x39,0x4a,0x61,0x47,0xbd,0xf5,0xbc, +0x1d,0xa5,0xb0,0xa3,0x45,0xe5,0xc5,0xd0,0xaa,0x58,0x1a,0x3f, +0x85,0xd4,0xab,0x2c,0x1f,0x6e,0x6e,0x30,0x76,0xe3,0x50,0x85, +0xee,0xdd,0x20,0x02,0x3f,0xb6,0x42,0x15,0x96,0x90,0x61,0xc4, +0x78,0x06,0x16,0xe7,0x50,0x85,0x04,0x50,0x35,0x31,0x2b,0x87, +0x2a,0xec,0xc8,0x91,0x1b,0xc2,0x70,0xd1,0x1b,0x1c,0x5c,0x81, +0x25,0x39,0x3e,0xa1,0xe8,0xcc,0xf1,0xaa,0xfb,0xb0,0x6b,0x1a, +0x15,0xe5,0x65,0x3c,0xc1,0xbe,0x69,0x1e,0x2e,0xac,0x25,0xfc, +0x70,0x1f,0xd2,0xf2,0x02,0x8d,0xb9,0x40,0x3f,0x2e,0x60,0x76, +0xd5,0xf6,0x82,0x2e,0xb8,0xa9,0xb6,0x69,0x4b,0x35,0xec,0x35, +0x26,0x3e,0xd3,0x85,0x9b,0xf8,0xfd,0x39,0x0d,0xf3,0x52,0x6d, +0xcf,0x73,0xc1,0xfc,0x00,0x0b,0xf0,0xf1,0xc2,0xc0,0x66,0xe8, +0x6b,0x79,0x96,0x5d,0x7d,0xdb,0xb3,0x2c,0x48,0xbe,0xb4,0xda, +0xba,0x89,0x67,0xbe,0x85,0x94,0x9c,0xf2,0x67,0x83,0x76,0xb6, +0xac,0xc9,0x6a,0xba,0x1c,0x5f,0x1b,0x0f,0x3e,0x43,0x57,0x1c, +0x5a,0x0a,0xd4,0x4a,0xe9,0x6a,0xc8,0x41,0xf4,0x63,0x90,0x4d, +0x1e,0xc3,0xc3,0xec,0x2b,0xe6,0x91,0x1d,0xa4,0xc0,0x4b,0x69, +0x4d,0x39,0x1a,0x6c,0x4e,0x83,0x16,0x60,0x96,0x24,0x35,0x55, +0x76,0xad,0x8d,0x6b,0x9f,0x92,0x6e,0x38,0x54,0x3b,0x85,0x11, +0x61,0x76,0x26,0xcc,0x4e,0x84,0xfd,0x31,0x1f,0x1f,0x41,0x44, +0x87,0x31,0xf8,0x61,0x5a,0x0f,0xee,0x57,0x19,0xba,0xc1,0xb6, +0xd7,0x75,0x66,0x25,0x2c,0xc6,0x81,0x06,0xa9,0xb2,0x1f,0xe6, +0xcb,0xec,0x17,0x26,0x82,0x4f,0xd3,0x6e,0x8b,0xd5,0x37,0x83, +0x69,0x0b,0x11,0x9e,0x93,0xe1,0x85,0xdd,0x93,0xeb,0x1c,0x8d, +0x0b,0x1b,0x0d,0x4c,0x5b,0x71,0xcb,0x8d,0x6b,0xd5,0x25,0x99, +0x74,0x42,0xda,0x4d,0x1b,0x1d,0x80,0x1d,0xf0,0xb2,0x2c,0x49, +0x57,0x13,0x73,0x83,0xc8,0x31,0x9a,0x69,0x2b,0xa5,0xd1,0xb5, +0x1e,0x56,0x7e,0x28,0x4b,0xda,0x85,0x3b,0x82,0xf0,0x9a,0x00, +0x98,0xf4,0x9b,0xad,0x2c,0xde,0x11,0x1e,0xdb,0x19,0xf1,0x0b, +0x83,0xce,0xd1,0x1e,0xe1,0xb8,0xce,0x71,0x08,0x8a,0x1a,0xec, +0x81,0xe5,0x7e,0x4d,0xba,0x9b,0xb6,0xb3,0x76,0x7c,0x8e,0xa1, +0xfd,0x68,0xff,0xf9,0x11,0xf0,0x53,0x99,0x05,0xb0,0x86,0x5d, +0x78,0x3c,0x05,0xd9,0x29,0x19,0xd3,0xe4,0x36,0x33,0x27,0x6e, +0xf8,0xcd,0x76,0x8a,0x33,0x1d,0xa2,0x85,0xb3,0x59,0xe4,0x48, +0x02,0xbb,0xb0,0xad,0x82,0x7b,0xb6,0xe3,0xb8,0x41,0xb8,0x9a, +0x56,0xfd,0x56,0xf3,0x31,0x57,0x8f,0x86,0xdf,0x6c,0x9e,0xc2, +0xd5,0x05,0xca,0xe2,0xb6,0x78,0xd9,0xb7,0x28,0xf6,0x62,0x86, +0xf6,0xaf,0x89,0x21,0xfe,0x09,0xbf,0xa6,0x14,0x01,0x5c,0xa7, +0x3a,0x93,0x1a,0x7a,0x15,0x2a,0x89,0x42,0x45,0xe1,0x89,0xe5, +0x24,0xc5,0x41,0xb5,0x0e,0x52,0xed,0x35,0xba,0x93,0x5d,0x93, +0xf9,0xf4,0x20,0xfb,0xe2,0x15,0xe9,0xc3,0x7d,0x5f,0x6d,0x9e, +0xe4,0x31,0x56,0x4e,0xbb,0x4c,0xca,0x5e,0x68,0xca,0x9f,0xf0, +0x9c,0x1d,0xdf,0xdf,0xae,0x2e,0x92,0x3a,0x08,0x9e,0xd9,0x75, +0xcb,0xd5,0x42,0x58,0xb6,0x85,0x6f,0xa1,0x07,0xe0,0x8d,0x51, +0x4e,0x8f,0xa7,0x3e,0xda,0xdb,0xa5,0x29,0xc7,0xff,0xc3,0x19, +0xd8,0x4f,0xf8,0x97,0x81,0xd2,0xb8,0xc4,0x90,0x1f,0xe2,0xc0, +0x4b,0x72,0xa7,0xca,0x0d,0xfa,0x7f,0x76,0x1b,0x37,0xa7,0xc8, +0x83,0x86,0x13,0xb7,0xb6,0xea,0x63,0xc7,0x5a,0x72,0x21,0xa3, +0x9b,0x6d,0xf1,0xb6,0x33,0xc2,0xdf,0x05,0xf6,0xee,0x69,0xaf, +0xbd,0x7b,0x5a,0x33,0x7c,0x96,0x81,0x7f,0xc8,0xd8,0x08,0x9c, +0x6a,0x56,0xb7,0xe1,0x2a,0x3c,0x65,0x5c,0x91,0x15,0x84,0x6b, +0x17,0x30,0x2b,0xe2,0x53,0xc7,0xd7,0x20,0x72,0xdf,0x85,0x0e, +0x3a,0x8e,0x5f,0xb4,0x1d,0x6b,0xf3,0x65,0xf4,0xa9,0x8c,0xa9, +0x83,0xe3,0xcc,0xca,0x9c,0x9c,0xfd,0x90,0x71,0x55,0x56,0xe8, +0xcb,0xbe,0x49,0xc3,0xac,0xa0,0x7e,0xf7,0x60,0x94,0xea,0x64, +0x05,0xf5,0xbb,0x47,0x87,0x4a,0x27,0x2b,0xa8,0xdf,0x3d,0x76, +0x4e,0xda,0xce,0x41,0xfd,0xb4,0x7b,0x51,0x0b,0xd9,0xbf,0xab, +0x0e,0xd3,0x17,0xa5,0x59,0x0a,0x97,0xa2,0xb4,0xd1,0xb1,0x2b, +0x42,0x5f,0x30,0x3b,0xe2,0x6f,0x19,0x21,0xfe,0xa2,0x2c,0xa7, +0x25,0xc2,0xd9,0x93,0x19,0xa7,0xb7,0xea,0xcc,0xc1,0xfe,0xfe, +0x8d,0x55,0x77,0x6a,0xdd,0x6d,0x30,0xa3,0x3d,0x30,0x5a,0xca, +0xfe,0x5d,0x74,0xfc,0xbf,0xda,0x8c,0x36,0x8e,0x07,0x11,0x59, +0x07,0xc7,0x58,0x83,0xd8,0x46,0xf8,0x41,0x7d,0x39,0x22,0xe0, +0x20,0x67,0x44,0xc0,0x8b,0x46,0x73,0xd9,0xbf,0xad,0x96,0x51, +0x2b,0x96,0xd1,0x6c,0x96,0x51,0x83,0x08,0x9c,0xcc,0x32,0x5a, +0x89,0x7b,0x88,0xa0,0x48,0x3b,0x0e,0x0f,0xb8,0x95,0xc3,0x03, +0xfa,0xb8,0xb1,0xc2,0xfd,0xab,0xc3,0x60,0xd2,0x9f,0xb9,0x4b, +0x0d,0xae,0x99,0x07,0x6b,0xab,0xba,0xdc,0xd6,0xa4,0xcc,0x02, +0x4b,0xa4,0x15,0xe8,0x92,0x0c,0xf7,0xb0,0x9f,0x21,0x37,0x9f, +0xe0,0x00,0xeb,0x9d,0x71,0xa4,0x31,0x62,0xfe,0xc4,0xe9,0xa3, +0xc7,0x8d,0x1e,0xef,0x33,0x65,0xce,0x86,0x4f,0x16,0xaf,0x9f, +0x2b,0x42,0xfa,0x41,0x4f,0xec,0xd7,0x62,0x7b,0x73,0x1f,0x59, +0x60,0xd7,0xdd,0x2d,0x07,0xb7,0xae,0x5c,0xb0,0x6a,0xd6,0xca, +0x29,0x72,0x43,0x09,0x9f,0xad,0x47,0xd3,0x5d,0xa0,0x3a,0x62, +0xff,0xe6,0x7a,0xa2,0xbf,0xe3,0x45,0xd1,0x5d,0xf8,0x97,0x85, +0x38,0x5c,0xa8,0x4c,0x3d,0x63,0x5d,0x74,0x70,0xc1,0x77,0xcd, +0xd8,0x56,0xea,0x7b,0xa1,0x1f,0xe0,0x78,0x3d,0x88,0xaf,0x0c, +0xab,0x55,0x3b,0x1d,0x6f,0x90,0x46,0x10,0x89,0x0b,0xd3,0x86, +0xfc,0xb7,0x03,0x78,0x86,0x03,0x0d,0xb9,0x3a,0xc9,0xe9,0x4d, +0xc5,0x21,0x09,0xfb,0x08,0x9f,0x5d,0x30,0x1a,0x17,0x65,0x0e, +0x49,0x98,0x85,0xeb,0xcc,0xe5,0x78,0x2b,0x53,0x48,0xc2,0x97, +0xc4,0xbd,0x72,0x7b,0x1d,0x91,0xb0,0xa9,0xbd,0x94,0x9c,0x66, +0x70,0xf6,0xc3,0x18,0x1c,0x6b,0xd2,0x75,0x73,0x1c,0xee,0x36, +0x2e,0xc9,0x22,0xc2,0x83,0x9e,0xff,0x87,0x99,0xa2,0x0f,0x3e, +0x66,0x9a,0x6e,0x3a,0xf8,0x60,0x18,0xd1,0x8c,0x65,0x9a,0x72, +0x31,0xd8,0xdd,0xa2,0x39,0x48,0x34,0x15,0xb7,0x73,0x78,0xc1, +0x11,0x3a,0xbc,0xe0,0x0a,0x0e,0x2f,0x38,0x41,0x87,0x17,0x5c, +0x01,0x7b,0x55,0x77,0x1d,0x5e,0x70,0x05,0x87,0x17,0xdc,0xad, +0xc3,0x0b,0x6e,0x02,0x73,0x05,0x3e,0xd6,0xe1,0x05,0x37,0xc1, +0x3e,0xd5,0x43,0x87,0x17,0xdc,0x04,0x5f,0xaa,0xee,0x8e,0x4a, +0xa4,0x00,0x1d,0x87,0x92,0x7f,0x6d,0x61,0x27,0xf7,0x6a,0x3b, +0x07,0x16,0x1c,0xc9,0x0e,0x53,0x01,0x83,0xa0,0x14,0xdd,0xf2, +0x08,0xa5,0x56,0x0c,0x0e,0xb1,0x50,0xbe,0x62,0x14,0xdb,0x1e, +0x38,0x9a,0x76,0x1d,0x26,0x62,0x6d,0x1d,0x43,0x51,0xb6,0xc1, +0xad,0xec,0x3a,0x95,0xdf,0x0d,0xcc,0x1c,0xf8,0x2b,0xbb,0x4e, +0x79,0x3f,0xe4,0x00,0x82,0xc3,0x9c,0x01,0x04,0x3b,0x08,0x9f, +0xdd,0xb0,0x08,0x17,0xb2,0x83,0x94,0xf7,0x65,0xb8,0x27,0x37, +0x6b,0xe4,0x19,0x54,0x93,0xcf,0xc2,0xad,0x85,0x23,0x52,0x66, +0x72,0xb4,0xa3,0x93,0xd7,0x39,0x51,0xe2,0x24,0x1c,0x29,0xfc, +0xcb,0x41,0x08,0x0e,0x71,0x06,0x00,0xc4,0x49,0xf2,0x47,0xae, +0x31,0x5b,0xe0,0xf1,0x37,0x81,0xfd,0x70,0xa2,0xbc,0x64,0xe0, +0x4b,0xd9,0x26,0x02,0x97,0x98,0x35,0x6d,0xa4,0xe6,0x6e,0xa6, +0x49,0xcf,0xd3,0x98,0x83,0xf7,0x5d,0xc1,0xb3,0x1c,0x90,0x68, +0x12,0x61,0x4d,0x92,0x5b,0x19,0xab,0x79,0x04,0x2e,0xb0,0xb0, +0xf8,0xb9,0xf1,0x3e,0xc0,0x11,0xfd,0x6a,0x73,0x44,0xbf,0x34, +0xd2,0x06,0x26,0x61,0x17,0xc6,0x89,0x8b,0xc0,0x69,0x16,0xce, +0x4c,0xe3,0xea,0x8b,0x16,0x30,0x40,0x35,0x4c,0x5b,0xf6,0x4f, +0x08,0x9d,0x54,0x43,0x52,0x27,0xff,0x01,0xc1,0x8c,0xc4,0xf9, +0xa4,0x5f,0xc6,0xf3,0x10,0x8e,0xbc,0x13,0xa1,0x15,0x9e,0xc3, +0x4d,0xff,0x80,0xd0,0x59,0x35,0x4c,0x0f,0x26,0xf8,0x7e,0x24, +0xea,0x47,0x46,0x88,0x41,0xc2,0xd9,0xff,0x2e,0x1c,0xb9,0x11, +0x1b,0x5a,0xf1,0x06,0x49,0x70,0xdf,0xbe,0x2d,0x92,0x44,0x12, +0x89,0xfd,0x00,0x6f,0x9f,0x27,0x39,0xfa,0x20,0x67,0x5f,0x9e, +0x28,0x6f,0x33,0x4e,0xfb,0x08,0x5c,0x61,0xe1,0x6c,0x24,0x1c, +0xaf,0x03,0xfc,0xa5,0xff,0x31,0x01,0x77,0x49,0xad,0x08,0xe3, +0x57,0x3f,0xc9,0x1c,0xa1,0x90,0x8a,0xd1,0x58,0xc6,0x0a,0x4b, +0x48,0xcd,0x1f,0x64,0xc2,0xc6,0x11,0x38,0xd3,0x22,0x9c,0x61, +0x5c,0xfd,0x43,0x2d,0x86,0xc5,0x2a,0x8a,0x83,0x14,0x12,0x6e, +0x55,0xec,0xcb,0x41,0x0a,0x1d,0x5d,0x19,0xf9,0x97,0xb7,0x91, +0x57,0x53,0x2b,0xee,0x2d,0xe0,0x01,0x46,0xa6,0xcc,0x22,0x25, +0x30,0x15,0x02,0x45,0x8e,0x09,0xf0,0x5a,0x0e,0x09,0x14,0xae, +0xf3,0xe1,0x35,0x9d,0x1e,0x54,0x17,0x24,0x72,0x8c,0x87,0x57, +0x72,0x08,0x7a,0x7d,0x35,0xdd,0x9e,0x9a,0x07,0x9e,0xda,0xf9, +0xac,0x59,0xe7,0x3c,0x67,0xcb,0x38,0x48,0xcd,0xc9,0x7d,0x59, +0xe6,0x96,0x43,0x4a,0x08,0x9f,0x7d,0xf0,0xc8,0x86,0x13,0xf0, +0x17,0x51,0x30,0x14,0x52,0xa7,0x82,0x1c,0x80,0x41,0x97,0x49, +0xe1,0x18,0x53,0x2a,0xa5,0x1a,0x3c,0x90,0x03,0x4e,0xdb,0x1d, +0xee,0x74,0xc2,0xdf,0xa0,0xe3,0xdf,0x93,0x16,0xe3,0x29,0xaa, +0x1b,0x51,0xaa,0x62,0xac,0xec,0x8a,0x97,0x2e,0x9b,0xb9,0xd1, +0xf3,0x01,0x47,0xd7,0x25,0x88,0xa8,0xa0,0x21,0x55,0x48,0x63, +0xe3,0x03,0x37,0xf7,0x03,0xdb,0x29,0x55,0x5a,0xe4,0xfa,0x8f, +0xe6,0x39,0xbc,0x64,0x6a,0x4d,0x78,0x48,0xac,0x5d,0x2e,0x49, +0x17,0x39,0xfc,0x34,0xbb,0xfa,0x7c,0x66,0x16,0x84,0xd4,0xd9, +0x20,0x87,0x96,0x64,0xff,0xa0,0x84,0xa2,0xa9,0xe1,0x20,0x7b, +0x17,0x7d,0x48,0x6a,0x48,0x1e,0xe1,0xde,0x1d,0x7e,0xb7,0x6b, +0xbe,0xe8,0x2d,0x3c,0x22,0x09,0x50,0x85,0x99,0x57,0x53,0x9e, +0xc2,0x2b,0x1a,0xd0,0x9f,0x1a,0x65,0xb6,0x83,0x4b,0x61,0xfe, +0xd4,0xa2,0x04,0xad,0x4c,0x50,0xba,0x79,0x7a,0xc2,0xef,0x29, +0x41,0x80,0x1b,0xe8,0x6c,0x66,0xf0,0xc8,0x92,0x58,0xd8,0x7c, +0x02,0xf6,0xd4,0xa1,0xd4,0x76,0x9f,0xf2,0xea,0x08,0xfc,0x82, +0xa4,0x3f,0xdf,0x21,0x65,0x8a,0x1b,0x1e,0x89,0x2e,0x97,0xa9, +0x37,0xbd,0xd0,0x45,0xf8,0x4e,0x26,0x5d,0x91,0x5d,0x66,0x46, +0x08,0x8f,0xc1,0x90,0x2e,0x2a,0x47,0xe3,0x32,0x46,0xac,0xec, +0x8f,0x1e,0x97,0xa5,0x87,0x1c,0x8f,0x1e,0x57,0xe8,0xbf,0x3e, +0x67,0xf8,0x4c,0x47,0x99,0xc8,0x58,0x2b,0xad,0xc3,0xbb,0x6c, +0xda,0x7f,0xa0,0x50,0x6a,0x02,0xfc,0x69,0x8f,0x2c,0x64,0xe0, +0xa0,0x3f,0xe5,0x20,0xea,0x1e,0x35,0x30,0xa8,0x68,0x6a,0x7b, +0x78,0x6a,0x8b,0x2c,0x6a,0xe0,0x88,0xa7,0x72,0x84,0x3e,0xef, +0x99,0xc4,0xd1,0xb8,0x34,0xf1,0x1d,0x1a,0x88,0xb9,0xe2,0xcc, +0xd4,0xd3,0x98,0xeb,0xb5,0x1c,0x4a,0x5c,0x0f,0x62,0x2d,0x22, +0x7e,0x4d,0xc4,0x77,0xb0,0xbf,0xf0,0x58,0xa0,0x87,0xd0,0x0d, +0xdd,0x9d,0x3e,0x26,0xee,0x8e,0x38,0x40,0xe2,0xb4,0xf4,0x27, +0x76,0x30,0x59,0x2b,0xe9,0x22,0x16,0xb4,0x17,0x48,0xb7,0xe2, +0x97,0x09,0xfc,0x19,0xa4,0x28,0x78,0x98,0x74,0x8f,0x1c,0xfc, +0xa9,0xe3,0x65,0x91,0xbf,0x19,0x08,0xcf,0xf2,0xec,0xd5,0xf1, +0xeb,0x7d,0xee,0xe9,0x4e,0x83,0x54,0xc5,0x1e,0xb5,0x71,0xbd, +0xd6,0x9c,0x8a,0x73,0x18,0xec,0xa0,0x7e,0xe0,0xb0,0xf3,0xeb, +0xd5,0xcd,0xcf,0xb8,0xe0,0xf0,0x56,0x1f,0x9d,0xe7,0x42,0x24, +0x96,0xe0,0xef,0x1c,0xec,0x1c,0xe9,0xba,0xb0,0x63,0x9d,0xc5, +0xa7,0x19,0x5e,0xfb,0xd6,0xe2,0xde,0x17,0xcf,0x89,0x7c,0xb5, +0xa9,0x36,0x8c,0x9d,0x34,0x06,0xa7,0x2e,0x61,0x54,0x0e,0x4a, +0x4d,0x1a,0x22,0x6d,0x50,0x3b,0xae,0x9b,0x3b,0xec,0x38,0x0f, +0xd7,0x19,0x28,0xe5,0x88,0x08,0xdc,0x63,0x46,0xd8,0x9e,0x55, +0xe1,0x44,0xc9,0x1d,0xb0,0xbe,0xf0,0xb8,0x0e,0x22,0xc7,0x60, +0x76,0x0c,0xff,0xf8,0x6f,0xf0,0x3e,0x58,0x4f,0xd8,0x46,0x12, +0x7c,0x10,0xc3,0x97,0x31,0x7c,0x50,0x04,0xee,0x64,0x78,0xf5, +0xb4,0x67,0x74,0x89,0xf8,0x92,0x2e,0x11,0x22,0xc7,0x40,0x86, +0x26,0x08,0x71,0x87,0xaf,0x11,0x05,0x44,0xbe,0x8e,0x7c,0x4f, +0x98,0x87,0xe3,0x1d,0xbf,0xf0,0x3d,0xa2,0x96,0x75,0x8f,0x70, +0xfe,0x0e,0x52,0x35,0xad,0x7b,0x84,0xf5,0xfb,0x3a,0x8e,0xa5, +0x7b,0x44,0x73,0x66,0x30,0x9f,0x7e,0x3e,0xc2,0xaf,0xe9,0x36, +0x91,0xf1,0x93,0xee,0x14,0x35,0xdf,0xba,0x53,0xbc,0x81,0x30, +0x1f,0x2f,0x6a,0x7b,0x00,0xe0,0x5c,0x39,0x87,0x6a,0xaa,0x62, +0x45,0x8e,0x83,0xee,0x9f,0x8d,0x2f,0x17,0xfd,0xf5,0xe5,0x62, +0x07,0x5d,0x2e,0xb6,0x08,0xf7,0x5c,0x7c,0x73,0x98,0x27,0x0f, +0x10,0xd2,0x0c,0x2c,0xa7,0x6f,0x17,0x3b,0xf8,0x76,0xe1,0x2a, +0xec,0x43,0xdf,0xb4,0x45,0x97,0x8c,0x6a,0x1c,0x0f,0x9d,0x61, +0xf5,0x31,0x46,0xd8,0xf3,0xbc,0x21,0xa3,0xb3,0x39,0x8c,0x2e, +0x1c,0x45,0x38,0xca,0x9b,0x39,0xdf,0x8e,0xcd,0x55,0x45,0xfd, +0xde,0xbb,0x04,0x06,0x8c,0xc3,0x12,0xfe,0x03,0xb5,0x81,0xee, +0x0f,0x9b,0xac,0x28,0x03,0x96,0xaf,0x7d,0x18,0xa0,0x4a,0x61, +0xb7,0xb4,0x4d,0xe9,0x41,0xe1,0x9a,0xff,0xa6,0x5f,0x79,0xe7, +0x2a,0x03,0xf2,0xd7,0x70,0x15,0xf2,0xc2,0x26,0x2b,0x38,0xd1, +0xaa,0x61,0xcb,0x8c,0x68,0x70,0xcd,0xaf,0x6b,0x8e,0x25,0xd3, +0x39,0xfe,0x1c,0xae,0x0a,0x69,0xd4,0xc0,0xe5,0x6b,0x1f,0x04, +0xbc,0xc2,0x1b,0x6f,0x42,0xc1,0x35,0x3f,0x94,0xc1,0xf0,0x46, +0xb8,0xf2,0x15,0xae,0xf7,0xa0,0x11,0x29,0xea,0xce,0xb7,0xf7, +0x74,0xe6,0x3f,0x57,0x3d,0xf4,0x3b,0x7b,0x2a,0xfe,0x41,0xc5, +0xb3,0xba,0xd8,0x0b,0x1b,0x38,0x52,0xd3,0xc3,0xbc,0x35,0xbf, +0x26,0x42,0xf6,0x00,0x37,0x12,0xf8,0xa6,0x3f,0x18,0x89,0x73, +0x9b,0x80,0xfa,0x09,0xb0,0xb9,0x36,0x5f,0x8c,0x2c,0x81,0x05, +0x13,0x44,0xf0,0x61,0x58,0xb1,0xe6,0x61,0x80,0xcc,0x8f,0xc7, +0xd3,0x1e,0x91,0x7c,0x5f,0x72,0x6e,0xa3,0x9a,0x3b,0x69,0x77, +0x21,0xd1,0xef,0x53,0x9d,0xd3,0x5c,0xc1,0x8c,0x05,0xbc,0x80, +0x9d,0x85,0x7d,0x00,0xa8,0x4a,0xd8,0xe8,0xb9,0x36,0x58,0x5f, +0xc0,0xee,0x6c,0x63,0x48,0x2b,0x09,0xf2,0xb3,0x34,0x92,0x69, +0x89,0x8d,0x70,0x02,0xbf,0x73,0x5a,0xad,0x2f,0x60,0x6f,0x63, +0xc2,0x29,0x7c,0x04,0xfd,0xe5,0x46,0x79,0xf5,0xac,0x0a,0x54, +0xc1,0x1b,0x41,0x86,0xd0,0xe5,0x72,0x29,0x75,0xb6,0x35,0x1b, +0x21,0xdb,0x3b,0xe6,0x66,0x58,0x9f,0x0b,0x68,0xeb,0x73,0x01, +0x1c,0x7e,0x55,0x14,0xc8,0xc2,0x89,0xf2,0xda,0xd0,0xa2,0xf4, +0x7d,0x0e,0x72,0x1d,0x1e,0x5a,0x03,0xe6,0x43,0x0e,0x7c,0x56, +0x00,0x7b,0x3b,0xed,0xcd,0x05,0xd2,0xed,0xcd,0x7e,0xd2,0x23, +0x6d,0x3a,0xc8,0x0d,0x69,0x26,0xad,0x97,0x3f,0x39,0xbf,0xc1, +0x77,0x13,0x18,0x7b,0x3e,0x61,0x8b,0x9c,0x2b,0x38,0xa7,0xad, +0xd3,0xc0,0xec,0xf7,0xb3,0x99,0x07,0xce,0x63,0xf0,0x1b,0x03, +0x73,0x01,0xa7,0x89,0xf8,0x03,0x62,0xdc,0xfa,0xaa,0xa4,0xa5, +0xdd,0x54,0xb5,0x8c,0xf8,0x07,0x70,0x17,0xd5,0x72,0xd2,0xfb, +0xc1,0xf2,0x63,0x9c,0x31,0x11,0x24,0x29,0xa6,0x1b,0x30,0x79, +0x3c,0x17,0xb0,0xb3,0x6a,0x79,0x51,0x17,0x88,0x92,0x4d,0x61, +0xed,0xe0,0x31,0x56,0x3f,0xcc,0xfd,0x1b,0xc7,0xa3,0x49,0xcf, +0x23,0x57,0x40,0x1b,0x98,0xfd,0x64,0x4e,0xea,0x61,0x3b,0x9c, +0xc0,0x09,0x82,0x5e,0x40,0x45,0x2c,0xf7,0xc6,0xac,0x5c,0x80, +0xcd,0xca,0x1f,0x12,0x89,0xce,0x20,0x87,0x4f,0x54,0x56,0x1e, +0xf5,0x7a,0x1e,0x75,0xe0,0x9f,0x80,0x63,0xb1,0x2d,0x67,0xf6, +0xf9,0x03,0x70,0x26,0x7e,0x30,0x45,0x93,0x57,0xc3,0x8a,0x96, +0x7d,0x39,0x1a,0x27,0xe8,0x65,0x57,0x0a,0x0b,0x8c,0xc7,0xa2, +0xfe,0x03,0xe4,0xe7,0x3c,0x55,0x65,0x36,0xf2,0x27,0xb6,0xad, +0xde,0x32,0x35,0x47,0x63,0x42,0xa6,0xf9,0x75,0xe7,0x8a,0xf1, +0xef,0x99,0x5f,0x3f,0x06,0x4e,0x7f,0xef,0xfc,0x1e,0x07,0x8c, +0xc7,0x9a,0x66,0x45,0x7e,0x1d,0xd8,0x2e,0xad,0x2d,0xdd,0x27, +0x79,0xc5,0xb6,0x8e,0xe0,0x82,0xca,0xa2,0x5a,0xb3,0xf1,0x39, +0x89,0xd4,0xd8,0xe4,0xdf,0x34,0xc8,0xa1,0x5a,0xb3,0x91,0x39, +0x09,0x64,0x07,0xd2,0x78,0xcb,0xeb,0x52,0x55,0xac,0xe9,0x34, +0x32,0x47,0xe3,0xb4,0xf4,0x86,0xb6,0x5b,0x0d,0x15,0xdf,0x08, +0x58,0x17,0x27,0x69,0x53,0xb3,0xb3,0xd3,0x3f,0xe2,0xbe,0xc7, +0x3a,0xc5,0x9c,0xee,0x56,0x12,0x61,0x0f,0x90,0x3b,0xb8,0xcf, +0xa5,0x36,0x42,0x75,0x4c,0x4a,0xa3,0x5b,0xaa,0x6f,0x30,0x90, +0xaa,0x58,0xd6,0xb2,0x43,0xc7,0x63,0x9c,0x31,0x32,0x43,0x24, +0xbb,0x18,0xb3,0x2c,0x89,0xc4,0x1d,0x9b,0x3b,0xb2,0x43,0x43, +0x86,0x57,0x33,0x78,0xdc,0xab,0xb8,0xc5,0x42,0xca,0xcf,0xac, +0x06,0x74,0x54,0x3c,0x76,0xa4,0x69,0xea,0x68,0x9c,0x22,0xf2, +0x7b,0x59,0x2c,0x07,0x63,0xd8,0x1b,0xd3,0x75,0x70,0x46,0xd6, +0xb9,0x60,0xa7,0xe9,0xfa,0x89,0xf2,0xe2,0xa9,0xda,0xce,0x53, +0x55,0x9c,0x16,0xa8,0xc7,0x6b,0xb6,0x5d,0x07,0x67,0xb6,0x5d, +0x07,0x67,0xa4,0x9f,0x0b,0x46,0xef,0x4b,0xbc,0xfc,0xa5,0xc7, +0x4b,0xb6,0x56,0x07,0xbf,0xb1,0x56,0xdf,0x67,0x6b,0x75,0x70, +0x86,0xb5,0x3a,0x38,0x3d,0xc7,0x5c,0x7e,0xe9,0x9f,0xfa,0x29, +0x77,0x73,0x02,0x5b,0xab,0x83,0xd9,0x5a,0x5d,0x4c,0x5b,0xab, +0xef,0xb3,0x31,0x34,0x38,0xc3,0xe8,0x1c,0x9c,0x9e,0x57,0x2e, +0xff,0x5f,0x1e,0x98,0x55,0x7c,0x09,0xf0,0x26,0xb8,0xb7,0x5d, +0xba,0x69,0x9b,0xf3,0x7d,0xb6,0x39,0x07,0xa7,0xdb,0x9c,0x83, +0x5f,0x72,0x44,0x3f,0xa2,0xfb,0x9d,0x16,0x27,0x61,0x4f,0xe7, +0x08,0x4f,0xc1,0xd2,0xd3,0xde,0xc2,0x32,0x3c,0x1b,0x40,0x2c, +0x7d,0x85,0x28,0x47,0xcf,0xac,0xc3,0x2f,0xf5,0x63,0x90,0x9c, +0xb8,0x30,0x93,0xe5,0xf9,0x2b,0x78,0x22,0x83,0x83,0x2e,0xf1, +0x03,0xe2,0xf1,0x8c,0x5f,0xde,0x06,0xff,0xd5,0xf2,0xfc,0x6e, +0x8c,0xcc,0x96,0xe7,0x77,0x62,0x58,0x96,0xe7,0x0a,0x20,0x4b, +0x68,0xcb,0x33,0x35,0x7b,0x43,0x5b,0x9e,0xa9,0x70,0xd3,0xb2, +0x3c,0x57,0x80,0xc1,0x99,0x2d,0xcf,0x5a,0x68,0x63,0xd3,0xe5, +0xcc,0x96,0xe7,0x27,0xca,0xc6,0xd2,0x63,0x69,0xfb,0x52,0xe5, +0x5f,0x2d,0xcf,0xc1,0x56,0x9e,0x3b,0x99,0x85,0x60,0x96,0xe5, +0xf9,0x09,0x3a,0x58,0x0c,0x1e,0x32,0x0b,0x9b,0x9e,0x83,0x33, +0x4c,0xcf,0x4e,0x69,0xa7,0x9b,0x9e,0x83,0xd3,0x13,0xe4,0xe5, +0xd7,0xcf,0x34,0x89,0x6d,0x62,0xba,0x90,0xb1,0x86,0x36,0x3f, +0xdf,0x67,0xf3,0x73,0x70,0x86,0xf9,0x39,0x38,0x3d,0x4b,0x5e, +0x7e,0xa9,0x97,0xcb,0xe7,0x3c,0x3d,0xa5,0xf5,0xf4,0xcc,0x61, +0xfb,0x73,0xb0,0x0c,0xb0,0xcf,0xd6,0x49,0xf1,0x58,0xe0,0x1e, +0x57,0xe9,0x81,0x70,0x11,0xa2,0x07,0x6d,0x98,0xda,0xf4,0x9c, +0xff,0x39,0x4c,0xb3,0x4c,0xcf,0xa4,0xba,0x75,0xcd,0x6c,0x7a, +0x0e,0xce,0xc8,0x76,0x17,0xec,0xb4,0x3e,0xff,0x65,0xef,0x90, +0x1e,0xaf,0xf4,0xe0,0xb5,0x15,0x9a,0x44,0xb7,0xc9,0x4a,0x78, +0xf7,0x1c,0x54,0x76,0xcb,0x0a,0x4d,0x1c,0x3b,0xb0,0x15,0xda, +0xec,0x65,0x1e,0x25,0xfd,0x69,0x0a,0x8e,0xbd,0x6e,0xce,0x0f, +0xc7,0x0f,0xed,0xb4,0x6d,0x0d,0x11,0x05,0x9a,0x82,0x0a,0xc5, +0xa8,0x1d,0x0c,0x4e,0x36,0xe2,0x08,0x1c,0x77,0xdd,0x6c,0x15, +0x8e,0x9d,0x19,0xdc,0x9f,0x77,0x0f,0x95,0x0c,0x72,0xf7,0x6d, +0x50,0x61,0xd7,0xa0,0x0b,0x06,0x38,0x8f,0x30,0xf7,0x69,0x80, +0xdf,0xaa,0x66,0x1c,0xb6,0xd3,0xd6,0x0a,0x64,0x15,0x3c,0xd9, +0x45,0x97,0xf0,0x16,0x55,0x9e,0xb6,0x8a,0xb7,0xa9,0x78,0x56, +0x17,0x13,0xb0,0x8a,0x95,0x81,0xae,0x2b,0x4e,0xe1,0x26,0xc6, +0xe8,0xf4,0x5c,0x83,0x95,0xab,0xc1,0xcc,0x0f,0x12,0xf3,0xea, +0xd7,0x58,0xb7,0x6a,0xe4,0x4c,0x38,0x17,0x4f,0x0a,0xa5,0xff, +0x52,0xc0,0x25,0xd8,0x24,0x23,0xe1,0x5c,0xbc,0xfc,0x8a,0xeb, +0xe4,0x36,0xfc,0x22,0x23,0xe1,0x5c,0xbc,0xdc,0x40,0x5d,0xae, +0x81,0xed,0xac,0x8c,0x73,0xf6,0x1a,0x58,0x54,0xe4,0x0c,0xa2, +0xeb,0x83,0x5c,0x77,0x16,0x1f,0xa9,0x92,0xea,0x2e,0xc8,0x39, +0x98,0x9c,0x91,0x62,0x2e,0x5e,0x4e,0x31,0x1a,0x11,0x7e,0xad, +0x2b,0x6c,0x7f,0x7e,0x08,0xdf,0x63,0x00,0x1b,0x5b,0xeb,0x73, +0x1a,0xaa,0xe6,0x11,0x56,0xa9,0xb5,0x6a,0x3e,0x49,0x97,0xe4, +0x16,0x9c,0x46,0xeb,0xb3,0x31,0x9b,0xec,0x4e,0x8d,0xe7,0x02, +0x6d,0xb7,0xcd,0x2f,0xea,0x02,0x21,0x39,0x56,0x73,0xe9,0x4f, +0xac,0x9a,0x91,0x21,0x2e,0x5e,0x7e,0x22,0xfc,0x57,0x40,0x77, +0x1c,0xdb,0x35,0x3d,0x2f,0x5c,0xbc,0x5c,0x6f,0xc4,0x53,0x83, +0xcd,0xae,0xb0,0x81,0xb9,0x0e,0xd4,0xc2,0x32,0x3a,0x21,0x16, +0x8d,0xb0,0xbf,0xf0,0xa7,0x6b,0xec,0x10,0x6c,0xb9,0x40,0x73, +0x2c,0xac,0x1a,0x2f,0xfc,0x2b,0xd5,0x07,0x57,0xcc,0xfa,0x4c, +0x15,0x89,0x61,0x71,0xa4,0xd8,0xa0,0x87,0xc8,0x91,0x08,0x8d, +0x64,0x1f,0x8c,0xf8,0xde,0xfc,0xc4,0x4e,0xfa,0x7a,0xa8,0x21, +0x0a,0xd2,0x31,0x7e,0x9f,0x55,0xc4,0x6b,0x6c,0x03,0x5e,0x65, +0x5c,0x37,0xe7,0x84,0xd3,0x53,0xdf,0x37,0x5e,0xf6,0x0d,0xd4, +0x7f,0x6d,0xd8,0x28,0x50,0xaf,0xb6,0x5c,0x65,0x41,0x5e,0x94, +0xdf,0x9c,0x55,0xd4,0x80,0xe3,0x43,0x90,0x11,0xc2,0xad,0x38, +0x88,0xdc,0xb4,0x2f,0xba,0x68,0xc4,0x42,0xe9,0xe8,0x85,0x34, +0xba,0xc7,0x61,0xba,0x5b,0xfb,0x08,0x17,0x24,0x61,0xd4,0x03, +0x5c,0xc5,0xee,0x79,0x35,0xad,0xf2,0x76,0x55,0x4f,0xdb,0xab, +0xeb,0x81,0x6c,0x81,0xa3,0xd5,0x5c,0x2a,0x76,0x06,0xdc,0xa6, +0xea,0x69,0x7b,0x75,0x67,0xe8,0x8d,0x61,0x29,0x5f,0x40,0x4a, +0x1b,0xf9,0x9d,0xf1,0xbd,0xd9,0xb6,0x96,0xf0,0x7a,0x42,0xa7, +0x63,0x5c,0x61,0x63,0xc2,0x09,0x17,0x1c,0x07,0x3b,0xb1,0x8c, +0xf4,0xa0,0xe7,0xa0,0x0f,0x60,0x5c,0x46,0x53,0x41,0xd8,0x4f, +0x5b,0xa8,0x03,0xfe,0x48,0xaf,0xc5,0xba,0x20,0x2f,0x58,0xdd, +0x8d,0xa3,0xee,0xee,0xc3,0xed,0xc2,0x56,0x81,0x99,0xae,0x25, +0xa6,0x33,0x85,0xd7,0x28,0x78,0xc3,0x12,0xcb,0x93,0xca,0xfd, +0x9a,0xb6,0xf3,0x87,0x80,0x07,0xe8,0x5e,0x62,0xff,0x0f,0xa8, +0xbd,0x50,0x02,0xfb,0x34,0x96,0x7d,0x8a,0xeb,0xbf,0x36,0x6c, +0xd9,0xc1,0x60,0xcc,0x01,0x2a,0x52,0x8d,0xb7,0x30,0xcf,0x60, +0xa4,0xb0,0x6d,0x7a,0x9b,0xa5,0x13,0xab,0x08,0x16,0x13,0x39, +0x37,0x82,0xd9,0x14,0x5b,0x0a,0x5b,0x09,0x28,0x03,0x6a,0xeb, +0x15,0x73,0xab,0x9d,0x14,0xd2,0x4a,0xc2,0xef,0x01,0xe0,0x78, +0xac,0x91,0x5a,0x89,0x4d,0xaf,0x5b,0xaf,0xd8,0x54,0x4d,0xd3, +0x55,0x57,0xae,0x26,0x05,0x6f,0x39,0x57,0x2e,0xe2,0x4a,0xf9, +0xca,0x68,0x22,0xab,0x84,0x61,0x95,0xa6,0xf4,0x74,0x04,0x5d, +0x30,0x13,0x62,0xb0,0xb0,0x1d,0x6d,0xb8,0xd0,0x18,0xdd,0xa0, +0xc4,0x84,0x20,0xff,0x61,0xf2,0x8e,0xfa,0x12,0x54,0x6b,0x6c, +0x0b,0xf2,0x13,0xfc,0x34,0x65,0x03,0x53,0x0e,0xd1,0x94,0xd7, +0x45,0xae,0x79,0xc0,0x21,0xfa,0xda,0x0b,0x8f,0x16,0xf0,0x04, +0x5d,0x53,0x3e,0x60,0xe0,0x06,0xdd,0x56,0x76,0xe1,0xf7,0x3b, +0x60,0x4e,0x95,0x25,0x75,0x0c,0x09,0x3b,0x27,0x60,0x05,0x55, +0xcc,0x18,0xfd,0x4a,0xf6,0x97,0x7d,0x71,0x5f,0x63,0x39,0xb8, +0x30,0x69,0x1b,0xb5,0x5a,0xea,0x80,0x24,0xcb,0xd8,0xa3,0x59, +0x5f,0x37,0x39,0x20,0x09,0xe3,0x46,0xa9,0xa2,0xc6,0xa4,0x97, +0xb2,0x1b,0xe1,0xee,0x68,0x2c,0x3f,0x2a,0x8c,0xdd,0xb1,0x56, +0x5a,0x14,0xc8,0xc4,0x78,0x83,0xae,0x9f,0xb9,0x1d,0x27,0xd9, +0xa2,0x54,0xc4,0x42,0x96,0x07,0x49,0x3b,0xc4,0x50,0x99,0xaf, +0x9e,0xca,0x25,0x3f,0x33,0x73,0xd5,0xb5,0xa9,0xbe,0x78,0xfd, +0x5d,0xe4,0x66,0x5f,0x6f,0x76,0x41,0x63,0xd7,0x33,0x59,0x07, +0xe4,0x31,0x5c,0x25,0x3c,0x69,0x99,0xe4,0xee,0x11,0x8b,0x1e, +0xb4,0x84,0x72,0x3c,0x80,0x71,0x2f,0xe5,0x68,0x22,0x3a,0xd1, +0x58,0x8e,0x2b,0x8c,0xa3,0xb1,0x96,0x10,0x81,0x40,0xa8,0x18, +0x69,0xf5,0xa7,0x27,0xc1,0x38,0x88,0x49,0x61,0xec,0x89,0xb5, +0x52,0xfd,0x40,0xfe,0x38,0xdd,0x78,0x25,0x3b,0x9e,0xc0,0x8e, +0x2f,0x65,0xef,0x93,0xb8,0x43,0xe5,0x41,0x17,0x8d,0x1f,0xf5, +0x1e,0xfc,0xd9,0x72,0x45,0xda,0x41,0xc0,0xab,0xc6,0x7a,0xd9, +0xa9,0xc1,0x82,0x51,0xd8,0xc3,0x25,0xce,0x36,0x4a,0xf6,0x60, +0x9f,0xe9,0x4e,0x69,0x3f,0x31,0xa9,0xcc,0x8b,0x7e,0x8e,0xef, +0x69,0x7f,0x32,0xc6,0xbf,0x92,0x5d,0x88,0x7e,0x5b,0x63,0xd9, +0xa3,0x30,0x76,0xc1,0x5a,0x8e,0x1f,0xa1,0xfa,0xe4,0xd2,0xfe, +0xe6,0x4b,0x19,0x62,0x1c,0x55,0x5e,0xcd,0x1f,0x4e,0x61,0xc7, +0xe9,0x8f,0xba,0xf8,0x35,0x38,0xd9,0xfc,0xd1,0xe3,0x93,0x47, +0xcf,0x7d,0x35,0xe2,0xb3,0x2e,0xec,0x66,0x1e,0x86,0x95,0x8d, +0x04,0x5b,0xeb,0x9e,0x5b,0x0e,0x1e,0xd8,0xb9,0xe5,0x60,0xc0, +0x72,0xdb,0x81,0x9d,0x7d,0xdb,0xb4,0xee,0xd9,0xb7,0x4d,0x00, +0xfb,0x29,0xcc,0xd4,0x53,0xf7,0x44,0x4f,0x5d,0x81,0x0b,0xe6, +0x60,0x9e,0xba,0xd1,0xd8,0x21,0x65,0x75,0xe6,0xa9,0xcb,0x45, +0x5a,0x52,0x99,0x0b,0xe6,0xdc,0x18,0x2c,0x62,0x0f,0xc6,0xef, +0x78,0xf9,0x0a,0x4f,0xda,0xb7,0xbf,0xc2,0x45,0x29,0x2d,0x69, +0xaf,0x9e,0xcb,0xde,0x7e,0xab,0xd3,0xd6,0x52,0x71,0x0e,0x7c, +0x80,0xde,0x86,0xdc,0x7c,0xd2,0xca,0x23,0xb9,0x90,0xf3,0x48, +0xce,0x18,0x9d,0xc0,0xaf,0x39,0x67,0x6f,0xd8,0xb0,0xf4,0xd3, +0x39,0x5b,0x7d,0xe5,0x8a,0x93,0xea,0x45,0x13,0xb9,0xc1,0x36, +0x21,0xbe,0x5e,0x37,0xec,0x1f,0xaf,0x5f,0x78,0x7e,0x75,0x77, +0xfb,0x81,0xcf,0x12,0x17,0xac,0xd6,0x2f,0x3c,0x0b,0xf9,0x6c, +0x3b,0xe6,0xe2,0x49,0xcb,0x77,0xc5,0x15,0x73,0x05,0x2f,0xdf, +0x30,0xe1,0x47,0x2b,0xbf,0x23,0x56,0x49,0x8b,0xd1,0x02,0xcd, +0xa5,0x0a,0x1b,0x8f,0xcd,0x61,0xc9,0x6a,0xd8,0x23,0x73,0xd2, +0x69,0x75,0x1e,0x6f,0xd9,0x0b,0x81,0xf9,0xf9,0x19,0x5a,0x02, +0xd4,0x19,0x52,0x6d,0x2b,0xa5,0x6d,0xd7,0x9d,0x69,0x85,0xbe, +0xec,0xd1,0xfc,0xf9,0xb0,0xed,0x2d,0x3e,0xd6,0x71,0xb7,0x3d, +0x26,0xf1,0x35,0xf9,0x07,0xed,0x2c,0xe0,0x62,0x3c,0x91,0x8b, +0x92,0xd5,0x4c,0x59,0xd1,0x9c,0x98,0xac,0xbe,0xc5,0x9d,0x72, +0x56,0x31,0x65,0xd7,0x59,0xa3,0x7c,0xe8,0xba,0x5c,0x8c,0xa3, +0x07,0xb5,0xbf,0xa0,0x0b,0xde,0xaa,0xfd,0x79,0x2e,0x44,0xd2, +0x51,0xb2,0xd2,0xe2,0xd2,0x8c,0x8d,0x33,0xe6,0x08,0x79,0xcf, +0x78,0x2a,0x17,0x9d,0x11,0xb9,0x5b,0x00,0x9e,0x95,0xb3,0x8a, +0x2e,0xe3,0x4b,0xf3,0x11,0x36,0xc6,0xb0,0x5d,0xdf,0xe5,0x4b, +0x90,0x39,0x64,0x83,0x64,0x7c,0x21,0x23,0xe5,0xc3,0xd3,0x2a, +0x0c,0x0f,0xd1,0x0e,0x69,0xc7,0x56,0x6c,0xec,0x0f,0x4f,0x37, +0xf6,0x47,0xbf,0x17,0xeb,0x02,0x2e,0x65,0x0f,0x00,0x8f,0x75, +0x6c,0xe9,0x23,0x84,0x97,0xb2,0x96,0x7c,0x98,0x4c,0x08,0xfb, +0x64,0x4d,0x74,0x71,0xdc,0x85,0x8f,0xf1,0xd3,0xb7,0x2c,0xff, +0xaf,0x2d,0xac,0xaa,0x16,0xd6,0x97,0x84,0x95,0x3d,0xb3,0xf1, +0x5f,0xd5,0x60,0xd7,0x02,0x1b,0x6d,0x57,0x3f,0x62,0xcd,0xd4, +0xd1,0x20,0xdc,0x5e,0xb1,0x33,0x40,0x25,0x9d,0x77,0xef,0x15, +0xdf,0x8a,0x2b,0xb2,0x33,0x00,0x15,0xbf,0xc7,0xa1,0xec,0x0c, +0xb0,0x05,0x4e,0xe3,0xe7,0xec,0x0c,0xb0,0x85,0x9d,0x01,0x2a, +0x6a,0x67,0x80,0x2d,0x16,0x5e,0x26,0x67,0x80,0x0b,0xec,0x0c, +0x50,0xea,0x6d,0x67,0x80,0xf7,0xf6,0xe4,0x6f,0xfe,0x00,0x59, +0x2c,0xcc,0x9a,0x16,0xe6,0x5e,0xc6,0x7c,0xcb,0x27,0xe0,0x02, +0xcc,0xc4,0x62,0x99,0x7d,0x02,0xde,0x41,0x90,0xc9,0x2f,0x60, +0x0b,0xfb,0x05,0x5c,0x79,0xcb,0x2f,0xe0,0xdd,0x04,0x7f,0xf5, +0x0d,0xb8,0xc0,0xbe,0x01,0x25,0xd8,0x37,0xc0,0x23,0x58,0xbb, +0x8a,0x93,0x98,0x20,0x81,0xdd,0x00,0x6a,0xb0,0x1b,0x80,0xc7, +0x14,0xb6,0xe8,0xe7,0x6c,0x49,0xdb,0x58,0x02,0x4c,0x3e,0xe9, +0x68,0x07,0x65,0xb0,0x03,0xbf,0x92,0xf5,0x88,0xc8,0x04,0x90, +0xa3,0x71,0xa6,0x2c,0x41,0x95,0xb5,0x79,0xca,0x2a,0x9f,0xc2, +0xef,0x64,0x6d,0x79,0x2a,0x89,0x54,0xfc,0xbd,0xb2,0x04,0xda, +0x84,0x67,0x22,0x5b,0xed,0x57,0x3b,0xad,0xf6,0xdf,0x0b,0xf7, +0x23,0x20,0xa7,0xc4,0x68,0xab,0xbd,0x2d,0x95,0x2d,0xf5,0xfe, +0xf2,0x3a,0x1b,0xea,0x43,0xd9,0x50,0xef,0x7d,0x11,0x7a,0xa9, +0x7a,0x6c,0xa2,0xa7,0x92,0x19,0x87,0x73,0x1c,0x2f,0x00,0x67, +0xc3,0x0b,0x42,0x91,0x63,0xac,0xe8,0x35,0x1e,0x45,0xe1,0xa6, +0xf0,0x37,0xa0,0x27,0x9d,0x74,0xb6,0x80,0x74,0x28,0x4e,0x21, +0x06,0x96,0x89,0xfe,0x39,0xfd,0x4c,0xc6,0x50,0x6d,0xa1,0xf7, +0x28,0x02,0x7f,0xe8,0x16,0xc7,0xe1,0x32,0x36,0x99,0x8b,0xfb, +0xec,0x33,0x51,0x39,0x89,0x3a,0x19,0x61,0x75,0x72,0x3f,0x75, +0xd2,0x3d,0x01,0x12,0xab,0x0b,0x77,0xd2,0xeb,0xec,0x51,0xf0, +0x5a,0x78,0xbc,0x86,0xbb,0xb8,0xcc,0x32,0x6b,0xff,0xcc,0xbc, +0xdd,0x75,0xfc,0x16,0xe1,0xe1,0x45,0xb3,0xcd,0x50,0xdc,0x42, +0xe7,0xca,0x47,0xa4,0xbd,0xd5,0x67,0x5d,0x23,0x90,0xcd,0xd5, +0xe9,0x84,0xb8,0x87,0x96,0x99,0x91,0x41,0x69,0xd7,0xa1,0x57, +0x9c,0x96,0x69,0x75,0x9c,0x56,0xbd,0xc8,0x71,0x15,0x4e,0xab, +0xca,0xb4,0xe0,0x6b,0xa2,0x2b,0xf6,0x86,0xb7,0x6d,0xd2,0xef, +0x44,0xc9,0x64,0x8d,0x7e,0xc5,0x08,0xd9,0x64,0x5c,0x32,0xbe, +0xa6,0x07,0xe3,0x49,0x32,0x61,0xf1,0x83,0x61,0xc3,0x5a,0xb0, +0x41,0x96,0x0d,0x38,0x86,0x9f,0xa6,0x9b,0xa2,0xef,0x0a,0x57, +0xc5,0xeb,0x40,0xa3,0x56,0xb5,0x50,0xf5,0x9a,0x14,0xae,0x65, +0xf8,0xdd,0x52,0xbe,0x74,0x13,0x35,0xc8,0xbb,0xfc,0x6a,0xa9, +0x52,0xba,0x89,0x5a,0xff,0x0e,0x52,0x15,0xd3,0x4d,0xd4,0xfc, +0xfb,0x3a,0x0e,0x65,0x13,0x75,0x9c,0x7e,0x0e,0xde,0xb6,0x4c, +0xc7,0x59,0xc8,0x5e,0x0c,0xad,0x8a,0xa5,0xf8,0xbd,0x91,0xcf, +0x43,0xbe,0xad,0x75,0xd5,0xef,0x8d,0xca,0x43,0x04,0xae,0x4d, +0x37,0x4a,0x97,0x27,0x56,0x33,0xb0,0x98,0x7e,0x6d,0x54,0x9e, +0x5f,0x1b,0x65,0x61,0xa3,0x74,0x1c,0xbf,0x2f,0x2a,0xaf,0xdf, +0x17,0x95,0xe7,0xf7,0x45,0xb5,0xac,0xfc,0x79,0x16,0x3a,0xae, +0xa0,0x2e,0xb0,0x7d,0xba,0x0b,0xdb,0xa7,0x3f,0xd4,0xf6,0xe9, +0x2e,0x6c,0x9f,0x3e,0xa2,0xed,0xd3,0x39,0xd8,0x3e,0x7d,0x55, +0xe7,0x10,0xb5,0x19,0xcf,0x64,0x36,0xde,0xdc,0xc2,0xcc,0x89, +0x22,0x30,0x37,0xdb,0xab,0x7d,0x69,0x53,0xdb,0xc1,0xf6,0xea, +0x96,0x17,0x74,0xc1,0x4d,0xb5,0xe4,0x30,0x28,0x3b,0xd8,0x5e, +0xbd,0xf4,0x99,0x2e,0xdc,0xc4,0x2b,0xe7,0x34,0xcc,0x4b,0xb5, +0x3c,0xcf,0x05,0xf3,0x03,0xf4,0xe5,0x17,0x84,0x04,0x6b,0x26, +0x60,0x86,0xd5,0xc6,0x4d,0x3c,0xa5,0xed,0xd2,0x77,0x8c,0x3f, +0x65,0xb6,0xd3,0x6a,0x96,0x8c,0x37,0x27,0xf1,0x06,0x7a,0xe6, +0x79,0x21,0x1c,0x1a,0x0c,0x6a,0xe5,0x9f,0x86,0x1c,0x54,0xc8, +0xb2,0x4b,0x7f,0xa3,0xed,0xd2,0xd9,0xd8,0x2e,0xfd,0x9d,0x65, +0x97,0x76,0x31,0x9e,0xcb,0x6c,0x49,0x44,0x55,0xc1,0x9c,0x94, +0x44,0x54,0xdb,0x9f,0x87,0x66,0x58,0xa6,0x9f,0x13,0x61,0xa8, +0xb6,0x4b,0xe7,0xd2,0x76,0xe9,0x6c,0x6c,0x97,0xee,0xc6,0x01, +0x4b,0x76,0xd0,0xd3,0xf6,0x5a,0xdb,0xa5,0xb3,0xb1,0x5d,0xba, +0x30,0x07,0x2c,0x11,0x85,0xc2,0x48,0x91,0x10,0x36,0xc2,0x2c, +0xf4,0x1a,0x1c,0x4d,0x4a,0xb1,0xed,0xb9,0x5c,0x66,0xdb,0x73, +0x16,0xa7,0xed,0xf9,0x9c,0x2c,0x49,0x38,0xb4,0x7f,0x94,0x11, +0x70,0x19,0x52,0x86,0x9b,0x1b,0x8c,0x4c,0xfb,0xbe,0x79,0xd5, +0xe6,0x68,0x52,0xc6,0x88,0x35,0xed,0xe8,0x72,0x4d,0xba,0x98, +0xb6,0x33,0x6c,0x62,0x2e,0xd8,0x0f,0xd2,0x6c,0x10,0x26,0x5c, +0x06,0x41,0xda,0x7a,0x5a,0x6c,0xc2,0xed,0x8c,0xb3,0x62,0xa7, +0xf5,0x3f,0xed,0x1c,0xc2,0x3e,0x1f,0xca,0x08,0x97,0x04,0x62, +0x5e,0x11,0x4a,0x1b,0x1c,0x6e,0x04,0xae,0x49,0x90,0xd9,0x49, +0x4f,0x93,0x3e,0x20,0x0a,0x9c,0x87,0x52,0x29,0x7f,0xc2,0x03, +0x9b,0xa7,0xa6,0xc8,0x19,0x41,0xcb,0x83,0x93,0xfc,0x51,0x7d, +0xe9,0xd4,0x41,0xfc,0xda,0x5b,0xb3,0x0e,0x87,0xf2,0xa9,0x23, +0xe1,0x17,0x0b,0xcb,0x88,0x33,0xed,0x11,0x96,0x41,0xf8,0xaa, +0x69,0x3b,0x6d,0x77,0x0c,0xc4,0x4b,0xa3,0xc0,0x8c,0x02,0x9c, +0x81,0xc3,0x0c,0x3a,0x23,0x82,0xe4,0xc3,0x93,0xaa,0x02,0x2e, +0x33,0x6b,0xb0,0x59,0xf2,0x78,0xea,0x22,0x30,0xdb,0x00,0xd6, +0xe2,0x2b,0xdb,0xdf,0x80,0x29,0x4d,0xc0,0x9c,0xcd,0xc0,0x19, +0x22,0x97,0x49,0xfa,0x30,0x1e,0x31,0xae,0xc8,0xf2,0x4e,0x4b, +0xef,0x63,0xb6,0xf4,0xba,0xba,0x02,0x46,0xc8,0x11,0x0e,0x52, +0x23,0x77,0x1b,0x57,0x65,0xb9,0x74,0x2b,0xa1,0x9c,0x8b,0x83, +0xe4,0x34,0x48,0x8b,0xa6,0x3d,0x05,0xbb,0x30,0x78,0x03,0x81, +0x0b,0xf6,0x05,0x39,0x15,0x87,0x8b,0x5c,0x24,0xcb,0x65,0xb8, +0x5b,0xb8,0xff,0x09,0x9e,0x99,0x51,0x84,0xfb,0xea,0xb7,0x48, +0x04,0xec,0x80,0x97,0xdc,0xc0,0x28,0xe7,0xcf,0x0f,0xc0,0x8c, +0xe6,0xdf,0x3b,0x33,0x71,0xec,0xad,0xda,0xa5,0x96,0x78,0x1b, +0x6d,0xf4,0x5b,0x3f,0xf3,0xf4,0x7f,0x6b,0x14,0x2b,0x71,0x07, +0x67,0xc0,0x72,0x0c,0x65,0x63,0xec,0x06,0x47,0x1e,0x30,0x83, +0x19,0x38,0x93,0x6d,0x27,0xfe,0xf2,0xd1,0x29,0x1a,0xff,0x7c, +0x6b,0xfc,0xdf,0x88,0x7c,0xc7,0x01,0x67,0x31,0xab,0x31,0xc2, +0x73,0x06,0x3f,0x3f,0xeb,0x04,0xec,0xa5,0x79,0x7b,0xc0,0xe2, +0xec,0xfb,0x0e,0x0a,0xe2,0x5c,0xb2,0x1d,0xc4,0xe1,0x2c,0x65, +0x66,0xee,0x83,0xd5,0xd3,0x55,0xc2,0x76,0xf9,0x1f,0x5a,0xb3, +0x68,0x23,0x71,0x56,0xda,0x90,0xbf,0xb7,0x6a,0x99,0x4c,0xfb, +0x0a,0xaf,0xdf,0xa1,0x14,0x5f,0xcc,0x4f,0x11,0xf5,0xa1,0xe3, +0x2a,0x3b,0xce,0x32,0xdd,0xd8,0x9a,0xf8,0x45,0x6a,0x79,0x18, +0x2d,0x37,0xd1,0x6d,0xa2,0xff,0xfb,0x11,0xcc,0xe5,0xb2,0x29, +0x08,0x4f,0x20,0x8c,0x31,0x8c,0x91,0xdf,0xc2,0x98,0x6a,0x61, +0x6c,0x17,0x79,0x6d,0x19,0x06,0xd4,0x47,0x6c,0x40,0xed,0x7e, +0xd1,0x9c,0x27,0x02,0x77,0xf3,0x2b,0xa8,0x2f,0x8d,0x4b,0xb2, +0xbc,0x36,0x99,0x0e,0x55,0xeb,0xc1,0xf1,0x2b,0xa8,0x3a,0xe6, +0x07,0x20,0xaf,0xa4,0x9c,0xc8,0xf8,0xb1,0x37,0x65,0x57,0x46, +0xd9,0x5c,0x95,0x32,0x07,0xa6,0xc3,0x73,0x2e,0xae,0xc0,0x07, +0x8e,0xaa,0xce,0x1f,0xfb,0x84,0xcb,0x17,0xce,0xe2,0x97,0xaa, +0x4b,0x86,0xf5,0x74,0x88,0xf0,0x20,0xcd,0x6b,0x23,0xb5,0x11, +0xa2,0x8d,0xa6,0xc3,0x32,0x65,0x63,0x7b,0x25,0x0a,0x1c,0xe5, +0x1e,0x6c,0xc5,0x1d,0x6c,0x1f,0xdd,0xcc,0xf6,0x51,0xd7,0xa9, +0x34,0x84,0x71,0x3c,0x84,0xbc,0xf2,0xd0,0x31,0x1a,0xc2,0x78, +0x6b,0x08,0xbb,0x70,0x05,0x98,0x39,0x64,0x65,0x62,0x1b,0x4d, +0x18,0x43,0x35,0xdb,0x0d,0xc4,0x36,0x98,0xd8,0x56,0x95,0xf1, +0x4e,0x1b,0xaa,0xeb,0xf3,0xf7,0x93,0x2f,0x4a,0x0d,0xe5,0x0e, +0x0a,0xf7,0x5f,0x01,0xab,0xe0,0xc6,0xd4,0xe2,0x96,0x91,0xf5, +0x9f,0x5a,0x9c,0x91,0xb2,0xf7,0x9d,0x0d,0xd6,0x4a,0x99,0xc4, +0x76,0x8e,0x73,0xd7,0xcd,0x73,0x6c,0x88,0x9d,0x61,0xe0,0x2b, +0x59,0x5a,0x3e,0x4e,0x56,0x95,0x70,0x33,0x09,0x75,0x4d,0x6a, +0x18,0x84,0x90,0xbe,0xd7,0x0b,0x2e,0xcb,0xbd,0xf8,0x19,0xbb, +0x91,0xdc,0x65,0x2b,0xde,0xf5,0xbf,0xe2,0x09,0x17,0xba,0xbd, +0xb9,0xde,0x66,0x3b,0xe2,0x19,0x86,0x15,0x97,0x8f,0x93,0x08, +0xb6,0x9e,0x60,0x2b,0x69,0xd1,0xb8,0x1d,0x60,0x2b,0xed,0x59, +0x3c,0x0b,0x8e,0x1f,0x18,0xe7,0x63,0x11,0x34,0x95,0xee,0x34, +0x6c,0xbf,0xd5,0x96,0xd9,0x6a,0x8e,0xcb,0x80,0x5f,0x18,0x63, +0xe5,0xe2,0x68,0x5c,0x2f,0x6c,0xd5,0x9c,0x36,0xd6,0x5e,0xcc, +0x4a,0xc8,0xc7,0x27,0x89,0xd5,0x7c,0x62,0x35,0xd1,0xb8,0xfa, +0x84,0xcd,0xb4,0x31,0x19,0x66,0xda,0x77,0x63,0x74,0x52,0x31, +0x19,0x76,0xda,0x77,0x63,0x98,0xb4,0x86,0xd3,0x0d,0xb5,0xfb, +0xfe,0x8a,0x21,0xa0,0xd5,0x7b,0x20,0x9a,0xb6,0xb3,0x8a,0x79, +0xcb,0x44,0xbb,0xef,0x7d,0x7d,0xc8,0x6c,0xa3,0xdd,0xf5,0x4e, +0x24,0xb9,0x11,0x63,0x32,0x8c,0xb4,0x27,0x19,0x25,0x58,0x3e, +0x3e,0x45,0x28,0x2b,0x08,0x65,0x11,0x89,0x27,0x7b,0x63,0x90, +0xbe,0x48,0x8f,0x62,0x23,0x99,0xa5,0x1e,0xee,0xa4,0xeb,0xd9, +0x27,0xf2,0x67,0xfe,0x7e,0x53,0xf8,0x1e,0x05,0xd5,0x6e,0xb5, +0x21,0x72,0x77,0x87,0x66,0x4c,0x7d,0x81,0xa9,0x8b,0x58,0x62, +0x5f,0x4b,0xd4,0x4b,0x89,0xda,0xa5,0x31,0xdb,0x6c,0x4f,0xe0, +0x2e,0xa7,0xf1,0xf5,0xb6,0xb0,0x73,0x9a,0x8b,0x94,0xe1,0xff, +0x48,0x12,0x8d,0x25,0x69,0x8b,0x9e,0x58,0xd9,0xae,0x66,0x8d, +0x70,0xc4,0x02,0x1f,0x19,0xdf,0xd9,0x3d,0xf5,0x50,0xf7,0x68, +0x06,0x13,0xda,0xc3,0x62,0x15,0x2e,0x2f,0xbd,0x87,0x8b,0xf0, +0xbe,0xf1,0x76,0x7b,0xc2,0x65,0x2c,0x9d,0x08,0xdf,0x42,0x28, +0xdb,0x76,0x9f,0xcb,0x21,0xa1,0x6c,0xdb,0x7d,0x6e,0xf7,0xe4, +0xba,0xa2,0x6c,0xdb,0x7d,0x2a,0x87,0x60,0x4e,0xcb,0xb6,0xcb, +0x86,0x52,0x3e,0xc7,0x8a,0x09,0x58,0xc6,0xa7,0x50,0x25,0x23, +0x4e,0x0e,0x40,0xff,0xcb,0xb4,0x55,0x8c,0xa9,0x90,0x52,0x8d, +0xd4,0x2c,0xcb,0x86,0xdb,0x81,0x6d,0xb8,0x85,0x2a,0x03,0x96, +0x17,0xee,0x4f,0xf5,0xf9,0x55,0x44,0xd8,0xa6,0x3a,0x0b,0x6e, +0x9f,0xa4,0x93,0x0e,0x0f,0x4b,0xad,0x49,0x4f,0xc7,0x00,0x91, +0xb3,0x30,0xe0,0xa7,0x66,0x41,0x27,0x82,0xcb,0xc0,0x74,0xcc, +0x8f,0x35,0xa6,0x30,0x06,0x5a,0xff,0xe7,0x0d,0x4a,0xc7,0x18, +0xa3,0xcf,0xbe,0x8a,0xda,0x64,0x6a,0xbb,0x2c,0x6d,0x72,0x3c, +0xda,0xae,0x90,0xd2,0xec,0xd2,0x08,0x68,0xbc,0x89,0x34,0xa0, +0xef,0x68,0x40,0xee,0xf9,0xe0,0xb9,0x2d,0x32,0xd4,0xc0,0x41, +0xcf,0xd9,0x4e,0x4a,0x3c,0x2a,0xa6,0x3e,0x27,0xfd,0x5c,0x9f, +0x81,0xdf,0x41,0xd1,0xd4,0x04,0x78,0x6a,0x67,0x93,0xe9,0xa0, +0xa7,0x1a,0xce,0xbc,0xab,0x82,0x1c,0x54,0x26,0xb5,0x3d,0xdc, +0xb7,0x45,0x96,0x31,0x70,0xc4,0x7d,0xb6,0xa5,0x8a,0x42,0xd5, +0x80,0x0e,0xfa,0x92,0xe9,0xfd,0xee,0x86,0x2e,0x4e,0x4b,0xa9, +0x0b,0x5b,0x4a,0x0b,0x19,0xb8,0xf4,0x06,0x5b,0x4a,0x97,0xcb, +0x5e,0x7c,0xba,0x4f,0xe2,0xd3,0x3d,0xde,0x9c,0x78,0x86,0x4e, +0xf7,0x73,0x69,0xc1,0x50,0x5c,0x88,0x5d,0x20,0x0a,0xc7,0x82, +0x6c,0x24,0x0a,0xed,0x82,0x52,0xc2,0xbb,0x3a,0xa3,0x2d,0x66, +0xb4,0x48,0x52,0x02,0x44,0xee,0x96,0x74,0x7a,0xeb,0x0c,0xc3, +0xb7,0xef,0x33,0x64,0x1d,0x43,0x2a,0x59,0xea,0xc1,0xe7,0xc4, +0x40,0x03,0x9f,0xa3,0x3f,0x69,0x50,0xff,0x81,0xf2,0xf4,0xc3, +0x72,0x1c,0x77,0xfe,0x88,0xc4,0x60,0xd6,0x91,0xac,0x1f,0x4e, +0x5f,0xf1,0x77,0xb2,0xd7,0x7e,0xe2,0x99,0xfb,0xe1,0xd2,0x9f, +0x11,0xe7,0x18,0xc2,0x75,0x0f,0xe0,0x71,0x6e,0x48,0xb8,0xfc, +0xc6,0x9c,0xca,0x09,0xb7,0x49,0x7f,0x05,0x71,0xb3,0x71,0xd8, +0x9b,0x8d,0xb0,0x56,0x53,0x4a,0xaa,0x2c,0xa4,0x12,0xfd,0x1d, +0x2d,0x94,0x34,0xcf,0xe6,0xd0,0x3a,0x55,0x77,0xb7,0x22,0x63, +0xee,0x43,0x7f,0xce,0x13,0x1c,0x3b,0xea,0x8d,0xd9,0x76,0x01, +0x6e,0x4d,0x71,0x27,0xcd,0xba,0x12,0x1e,0x32,0xc3,0x6d,0x7f, +0xd4,0xb4,0xcc,0xb6,0x75,0x33,0xcc,0xb6,0x0b,0xe4,0xf2,0xb7, +0xe0,0xc2,0x65,0x91,0x65,0xaf,0x5d,0x20,0xe7,0x19,0xe9,0x0a, +0x77,0x25,0xdc,0xc7,0xc0,0x08,0x75,0x05,0x8e,0xe1,0xe7,0xe9, +0x36,0xdb,0x05,0xb4,0x8d,0x7a,0xb9,0x43,0x6d,0x01,0x9d,0x59, +0x6b,0x5e,0x80,0xd3,0x99,0xa0,0xa4,0x7c,0xc2,0x0f,0xc1,0x06, +0x26,0x68,0xa0,0x0d,0xb8,0xd5,0x2d,0x2d,0xfb,0x3d,0xf0,0x20, +0x55,0xcd,0xd2,0xba,0xdf,0x0d,0xbf,0x8e,0xa3,0x2c,0x03,0xef, +0x02,0xf9,0x2e,0xf0,0x23,0xdc,0x6b,0x19,0x7c,0xdf,0x0d,0x26, +0xd5,0xbd,0xda,0x5f,0x0d,0xc0,0xef,0xc1,0xe4,0x7e,0x38,0x0d, +0xc2,0xf3,0xe5,0x94,0x77,0x60,0x54,0xc5,0xf2,0xa4,0xe8,0x9b, +0x1b,0x19,0x3e,0x87,0x07,0x1e,0xe9,0x98,0xcc,0x3a,0x7f,0x5f, +0xd2,0xf9,0xd5,0x0f,0x5c,0xbb,0x8c,0x24,0xc9,0xc2,0x3a,0xc8, +0x14,0xb5,0x85,0x4b,0x37,0x76,0xda,0xf9,0x84,0x76,0xbe,0xf9, +0x72,0xa9,0x21,0x72,0x3e,0x65,0xeb,0xd7,0x5e,0x2d,0x48,0xe1, +0x16,0xcb,0xea,0xfe,0x02,0xf9,0xd5,0xdf,0x1a,0x12,0xb6,0x02, +0xef,0x25,0x53,0x92,0x2f,0x10,0x36,0xa7,0xdd,0xf9,0x5d,0x03, +0x31,0x06,0xa7,0x1d,0xe3,0xab,0x45,0x25,0xba,0x5a,0xfc,0x13, +0x97,0xfa,0x18,0xe5,0xb4,0x50,0xbf,0xb3,0x0f,0xf0,0xea,0x8d, +0xb1,0xba,0x99,0x8a,0x10,0x05,0x9a,0x80,0x2a,0x8d,0xad,0xde, +0x18,0xa5,0x9b,0xdd,0xd0,0x75,0xd5,0xb1,0x61,0x86,0x05,0xba, +0xd9,0x39,0x7e,0x23,0x3f,0xb2,0x04,0x06,0x5a,0x16,0xe8,0xcf, +0xd2,0x12,0x40,0x95,0x48,0x9b,0x03,0x2f,0xf1,0xfc,0x1b,0xe3, +0x73,0xb3,0x2f,0xf9,0x05,0x2a,0x63,0x8d,0xd7,0x58,0x1b,0x19, +0x2b,0x98,0xb0,0xe2,0xb0,0x44,0xfa,0xfb,0x7b,0x52,0xe6,0xee, +0xa9,0xf6,0xc2,0x56,0xc9,0x2a,0xbf,0x54,0xed,0x65,0x35,0x5d, +0x94,0x5e,0x38,0xef,0x21,0xdd,0x77,0xe9,0xe0,0x09,0xc2,0xef, +0xba,0xe8,0x12,0xbe,0x50,0xed,0xf5,0x5b,0xfd,0x59,0x1a,0x53, +0xbf,0xd5,0x9f,0x05,0x1f,0x62,0xc4,0x1b,0x6b,0x75,0xb3,0xb3, +0x6f,0xb7,0xb9,0x9d,0xdb,0x2c,0x4e,0x6d,0x62,0x14,0x4e,0xb2, +0xf2,0x92,0x75,0x50,0x59,0x8d,0x37,0x08,0xbb,0x18,0xa1,0x2c, +0x21,0x28,0x17,0x6c,0x9e,0x9e,0x8e,0xec,0x21,0x56,0x11,0xb6, +0x13,0x1c,0xaf,0xa2,0x86,0x33,0xdf,0xd8,0x43,0xba,0x96,0xb8, +0xa7,0x82,0xa3,0x2e,0xa8,0xa2,0x69,0xf3,0x60,0x3d,0x29,0xe2, +0xce,0x34,0x62,0x0f,0x31,0x42,0xe4,0xa9,0x0d,0xc2,0xe5,0x2e, +0x9c,0xc1,0x03,0xbf,0xe9,0x82,0x2a,0xa0,0xe2,0x38,0xa1,0x12, +0x97,0xe9,0x9e,0x56,0x41,0x78,0xd7,0xb4,0x12,0x82,0x3d,0xc4, +0xaa,0xc2,0xc5,0x0d,0xe4,0x4e,0x59,0x34,0x09,0x07,0xaa,0xa2, +0xc2,0x2b,0x11,0xe4,0x17,0xb2,0x6a,0x12,0x4e,0xa4,0x5e,0xce, +0x03,0xec,0x8d,0x43,0x38,0xfb,0x57,0xd0,0xb7,0x56,0x93,0xb6, +0xe3,0xfc,0x5a,0xfc,0xa0,0x4e,0x81,0xc4,0x29,0xbf,0x1e,0x62, +0x11,0x93,0xae,0x50,0x1b,0x30,0xe4,0x09,0x9d,0x06,0x53,0x78, +0xe3,0x23,0x71,0xb9,0x1e,0xa2,0x07,0xfd,0x9a,0x6c,0x29,0xfd, +0xce,0xda,0x09,0xa5,0x38,0xa3,0xdc,0xc7,0x1f,0x75,0xfe,0x23, +0xd7,0x76,0x4c,0x55,0x9a,0x39,0xd1,0x14,0x46,0xe9,0x0c,0x48, +0x01,0x7b,0x40,0xd9,0x85,0xef,0x54,0x90,0x13,0x71,0x63,0xca, +0x12,0xce,0x76,0x3f,0x86,0xb3,0xdd,0xf7,0xbe,0x6c,0x4e,0x8e, +0xc4,0xfe,0x98,0x27,0x3d,0x1d,0x98,0xed,0x99,0x31,0xb1,0x6f, +0x87,0x29,0x2d,0xfd,0xe5,0x76,0x99,0xf3,0x14,0xc6,0xab,0x60, +0xe1,0x31,0x86,0x7b,0x9f,0xf7,0x14,0xb6,0x51,0x85,0x55,0x00, +0xc8,0xde,0xf8,0x35,0x27,0x01,0xcb,0xc6,0x96,0xf2,0x3c,0xd8, +0xfa,0xb2,0xd9,0x21,0x12,0xdb,0x10,0x07,0x67,0x12,0x30,0xdb, +0x05,0xd9,0x16,0xf6,0x63,0x1e,0xce,0x33,0x54,0x16,0x52,0x6f, +0x83,0x6c,0x6a,0xa1,0x75,0xb6,0xab,0x73,0x68,0xe2,0x6a,0xc0, +0x8f,0x54,0xbd,0xa3,0xef,0x82,0x99,0x39,0xa0,0xa6,0x1a,0xe0, +0xd8,0xf7,0x1e,0x98,0x19,0x88,0xeb,0x1c,0x7f,0x90,0x88,0xbf, +0x61,0x6b,0xfd,0x7e,0x07,0xed,0x65,0xde,0x3d,0xa1,0x96,0x1a, +0x70,0x44,0x17,0x88,0x94,0x13,0x01,0x31,0xf8,0x2a,0x96,0xe4, +0xb8,0xef,0xd9,0xd8,0x58,0x9e,0x07,0xbb,0x5d,0x36,0x47,0x45, +0x62,0x1f,0xea,0xa2,0x33,0x31,0x98,0xed,0x29,0x75,0xb1,0x06, +0x0e,0x70,0xfc,0xc9,0x38,0xa3,0x19,0x67,0xc0,0x65,0x73,0x66, +0x24,0x0e,0x20,0x9c,0x2e,0x6c,0xf5,0x22,0x1c,0x99,0x4d,0xee, +0x87,0x07,0xf8,0xa5,0xce,0x18,0x56,0x8f,0x5f,0x7c,0x04,0x45, +0xb3,0xd3,0x7f,0x06,0x8e,0xec,0xe9,0xa4,0xa3,0xfe,0xa9,0xbc, +0x84,0x8c,0x6b,0xb1,0x01,0xe7,0x0b,0xa3,0x0e,0x60,0x63,0x15, +0xe9,0xf8,0xed,0xdf,0xb8,0xe3,0x76,0xac,0x23,0xfb,0xea,0x9c, +0x58,0xf3,0xaf,0x4a,0x0f,0xce,0x89,0xd5,0x0d,0x9b,0xeb,0x75, +0xd8,0x0e,0xeb,0xa7,0x6e,0x7b,0x2b,0xcd,0x58,0x3a,0xc4,0x5a, +0xa1,0x9c,0x47,0xac,0x1b,0xc6,0xbf,0x63,0x85,0x72,0x7a,0xb0, +0x6e,0xd8,0x41,0xaf,0x50,0xef,0x72,0x80,0xdf,0x63,0x83,0x54, +0xba,0xfd,0xac,0xe7,0xf8,0x23,0xf5,0xd3,0x7e,0xd7,0xa5,0x40, +0x55,0x5f,0xa7,0x0b,0x5b,0x0f,0x3f,0xe0,0x68,0x9d,0x27,0x6c, +0x3d,0x2d,0xe5,0x7d,0xbf,0x69,0x60,0x01,0x06,0x8e,0xe3,0x22, +0x2d,0xe4,0xb2,0xbc,0x90,0xb9,0xc8,0x2f,0x07,0xf3,0xce,0xd4, +0x2c,0x55,0x31,0x55,0x5e,0x27,0x04,0xa3,0x0b,0x58,0x4b,0x61, +0xac,0xb4,0x4a,0x6d,0xff,0xab,0x65,0x1e,0xf0,0x8b,0x35,0x92, +0xbc,0x95,0xde,0x4a,0x05,0xd6,0x96,0x8e,0x87,0x89,0x27,0x5c, +0x84,0xc7,0x32,0xf8,0x06,0xb7,0x39,0xf3,0x81,0x75,0xc3,0x16, +0x99,0x1f,0x07,0xce,0xf8,0x35,0xf0,0xaa,0xcc,0x97,0x5a,0x84, +0x1f,0x87,0x40,0x7a,0x1c,0x0a,0xde,0x07,0x6c,0xc3,0xcf,0x43, +0x7a,0x32,0x30,0x06,0xdd,0xc7,0x5b,0xfa,0x31,0x60,0x60,0x8b, +0xcc,0x0f,0x41,0x66,0xfa,0xe5,0x18,0xfc,0xd4,0x0a,0x78,0x8f, +0xfe,0xec,0x09,0xe2,0xfc,0x6a,0xdc,0x0f,0x7d,0x2e,0x0a,0x9f, +0x23,0xfc,0x96,0xc9,0x60,0x63,0xbb,0x1f,0xe7,0x01,0xdb,0xe8, +0xcc,0x03,0xe6,0x02,0xd6,0x67,0xe2,0x7e,0xe8,0x4d,0x48,0x87, +0x40,0x2e,0xbb,0xcb,0xa6,0x76,0x3f,0x36,0xb5,0x6f,0xb2,0x12, +0x80,0x29,0xb6,0xb5,0xfb,0x61,0x3e,0x11,0x4c,0x6d,0x65,0xd5, +0xcf,0xdb,0x54,0x99,0xc8,0xf6,0x75,0x3f,0xb6,0xaf,0x7b,0x5b, +0x19,0xc0,0x14,0x67,0x00,0xf3,0x43,0xb7,0x8b,0xe6,0xe4,0x68, +0xf4,0x26,0x90,0xab,0xfe,0xaa,0x5b,0x65,0xf9,0xf7,0x67,0x6f, +0xaa,0x5c,0x62,0x68,0x12,0x6f,0xfb,0x6b,0x2b,0xf1,0x97,0xe2, +0xc4,0x5f,0x7e,0x21,0x17,0xcd,0x0e,0xd1,0x98,0x13,0xfd,0x5e, +0x44,0xab,0x18,0x66,0xc5,0x0f,0xa1,0xd5,0xb6,0x27,0x61,0x7b, +0xda,0xe3,0x9c,0x89,0xbf,0x8c,0xa2,0x80,0xbb,0x75,0x8e,0x2f, +0xe1,0xb2,0x06,0xf0,0xa0,0x95,0xe4,0x8b,0x05,0x91,0xfa,0x1a, +0x9e,0x48,0xbf,0xa0,0x8b,0x6f,0x9e,0x53,0x92,0x82,0x9d,0x4d, +0xe6,0x7e,0x6c,0x54,0x6f,0xab,0xf3,0x7b,0xbd,0x03,0x91,0x1e, +0x4c,0xb9,0xec,0x5a,0x06,0x5e,0x6f,0x2b,0xb3,0xd7,0xbf,0x22, +0xce,0xd5,0x39,0xbd,0xb8,0x13,0xd2,0x47,0x27,0xf5,0x12,0xc6, +0x24,0xc0,0x5f,0x38,0xab,0x97,0x2e,0xfd,0x6a,0xa5,0xf5,0x62, +0x84,0x8f,0x74,0x5e,0x2f,0x6b,0xb6,0x72,0xd1,0x68,0xd2,0x3f, +0xea,0xf6,0x43,0xd7,0x8b,0x9c,0xa8,0xeb,0x9c,0xf2,0xe2,0xd1, +0x66,0x91,0xb9,0xd9,0xb4,0x4e,0xd3,0x63,0x9f,0x6a,0x65,0xea, +0x52,0x6c,0x5b,0xb7,0xb0,0xa2,0xdf,0x50,0x92,0x74,0x9e,0x5a, +0xd2,0x59,0x94,0x2e,0x4b,0x92,0xb5,0xce,0xd4,0xa5,0xd8,0xb6, +0xee,0x87,0xad,0x2e,0x9a,0x77,0xa2,0xd3,0x17,0xc6,0x38,0x22, +0xc8,0xfa,0x54,0xe5,0x04,0xb9,0x5f,0xe6,0x4c,0x22,0xcc,0xf2, +0xc2,0xeb,0x2b,0x38,0x29,0x20,0x1b,0xc8,0x03,0x32,0x6f,0x12, +0x4d,0x4d,0x05,0x6b,0x6a,0x36,0xb0,0xbd,0xdd,0x4f,0x06,0xd8, +0x47,0x59,0x69,0xb9,0x48,0xd6,0xd2,0x4d,0x67,0xdf,0x22,0xc6, +0xfe,0xcc,0x38,0xd7,0x45,0x73,0x66,0x34,0xe6,0x25,0x24,0x97, +0x68,0x35,0x84,0x7b,0x22,0xb3,0xd3,0x3e,0x60,0x75,0xc5,0x97, +0xaa,0x7d,0xed,0x63,0x75,0x92,0x2e,0x91,0xf3,0x11,0xed,0x38, +0x17,0xcd,0xde,0xd1,0xc8,0xb1,0x56,0x1f,0x83,0xca,0xf2,0x90, +0x67,0x64,0x2a,0x7b,0x6b,0x58,0x33,0x8a,0x83,0xb5,0xb5,0x7e, +0xa2,0x65,0xad,0x77,0x72,0x94,0xae,0xce,0x56,0xd2,0xf7,0x24, +0x92,0x8a,0x27,0x5b,0xe9,0xfd,0xd8,0x45,0x61,0x81,0x4e,0xcf, +0xa5,0x27,0xfe,0x80,0xce,0xcf,0xf5,0x3f,0xf4,0x4b,0xf9,0xe8, +0x34,0x5e,0xff,0x4d,0xc7,0xfa,0xb1,0xd1,0xdf,0xca,0x4a,0xd3, +0x0b,0xab,0xc4,0xca,0x2a,0x98,0xa0,0xd3,0x10,0x8d,0xa3,0x35, +0xe8,0xe7,0xcd,0x41,0x70,0xea,0xe1,0x62,0x30,0x8f,0x98,0x87, +0x0d,0x06,0x8e,0xb8,0x6a,0xce,0x89,0xc0,0x5e,0x76,0x55,0x11, +0xeb,0x30,0x5c,0xba,0xe1,0x96,0x14,0x0d,0x3f,0x41,0xd7,0x84, +0x2a,0xd8,0xef,0xaa,0x39,0x36,0x02,0xbb,0x33,0xbc,0xb6,0x31, +0xa1,0x47,0xab,0x29,0x51,0xfe,0xf2,0x2b,0x59,0x24,0x09,0x07, +0xa8,0x52,0x22,0xf0,0x27,0x90,0x7b,0x65,0x95,0x24,0x9c,0xa0, +0xca,0x60,0x38,0xfc,0x88,0x87,0xd5,0xa7,0x4c,0x7a,0xca,0x68, +0x44,0xa4,0xb1,0x57,0xcd,0x56,0x11,0xd8,0x95,0x49,0xab,0x0b, +0xbf,0xfc,0x50,0x0d,0xbd,0x55,0x82,0xb3,0x6b,0xcd,0xb1,0x4a, +0x3c,0xa1,0x74,0xb8,0x6a,0xb6,0xa5,0xae,0xe1,0xab,0x54,0x0f, +0xc0,0xd7,0xaa,0x3e,0x2d,0xf2,0x71,0xfc,0x79,0xed,0xd7,0x5d, +0xb8,0xa0,0x5c,0x54,0xfd,0x23,0xba,0x60,0xa3,0xcd,0xf3,0xe3, +0x37,0x9c,0x7b,0x5d,0x35,0x87,0x39,0x39,0xd7,0xca,0xd4,0xa9, +0x64,0xea,0x54,0x19,0x11,0xf8,0x23,0x75,0x8a,0xb7,0xe5,0x72, +0xd4,0x25,0x3a,0x1b,0x07,0x34,0x61,0xc2,0xe3,0x9a,0x70,0xc8, +0x55,0x73,0x52,0x04,0xf6,0x60,0xc2,0x1a,0x22,0xc7,0x2d,0xde, +0x24,0x35,0x55,0x49,0xe1,0x99,0x07,0x26,0x57,0xf7,0x9f,0x24, +0x77,0xcb,0x2a,0xc9,0x34,0x9c,0xd2,0xd7,0x6c,0xbf,0x5c,0x5b, +0xbc,0x74,0x77,0x40,0x07,0xfc,0x4a,0xa7,0x0b,0x5a,0x05,0x38, +0x4d,0x3b,0xb1,0x35,0x67,0xe2,0x30,0xee,0xef,0x3c,0x0c,0xca, +0x48,0x00,0xd4,0x03,0xab,0x30,0x7f,0x2b,0x87,0xd8,0x38,0x95, +0x9b,0x7b,0x35,0x99,0x7a,0xb5,0xcf,0x12,0x55,0xb9,0x64,0xfb, +0xed,0xe4,0x25,0x4b,0x3f,0x0f,0x90,0x67,0xa6,0x1b,0x93,0x4e, +0xba,0x8c,0xef,0x14,0x33,0x85,0x5b,0xfb,0xda,0x12,0x5e,0x18, +0xf5,0x54,0x05,0xe8,0x18,0x33,0x34,0x5a,0xbc,0xa2,0xa2,0xe4, +0xb3,0x37,0x9d,0x66,0xa6,0xff,0x5b,0xa7,0x55,0x49,0xac,0xa3, +0xe6,0xd0,0x79,0xa9,0x56,0x5f,0x36,0x57,0xdb,0x95,0x0d,0x47, +0xd3,0x64,0x66,0xc1,0x01,0x17,0xcd,0x69,0xd1,0xd8,0xd7,0x8e, +0xc9,0x58,0x53,0xe4,0x38,0xc4,0x93,0xe7,0x9a,0x84,0x8d,0x54, +0x99,0x43,0xf6,0xf3,0x47,0x17,0x2f,0xde,0x1a,0xf0,0xf8,0x4b, +0x63,0x3a,0x3d,0x69,0x79,0x92,0xb0,0x95,0x2a,0x97,0x64,0xbb, +0x78,0x6a,0xd1,0x92,0xcf,0x02,0x26,0x9d,0x50,0xbb,0x39,0xc4, +0x5b,0x7f,0x47,0x21,0x48,0x49,0xa6,0xd1,0x46,0xaa,0xa5,0x97, +0xf9,0x14,0xdd,0xa9,0x99,0xf6,0xd0,0xe9,0xc7,0xde,0xc1,0x54, +0x14,0xde,0x05,0x9a,0xf6,0x0d,0x4b,0x47,0x0f,0x90,0x53,0x70, +0x7d,0xca,0xa2,0x74,0x46,0x93,0x35,0xa3,0x4f,0x34,0xa3,0xd6, +0x3a,0xe9,0xd8,0x47,0xcc,0xa8,0xb2,0x66,0xb4,0xcb,0x62,0x54, +0x4c,0x84,0x0c,0x05,0x97,0x09,0xbd,0x5a,0x4c,0xf9,0xc0,0x7f, +0x3a,0xcd,0xb3,0x66,0x55,0x82,0x7b,0xb7,0x78,0xf1,0x67,0x01, +0xb2,0x2f,0xdd,0x53,0xe6,0xa4,0xf3,0xeb,0xa4,0xf9,0x4d,0x23, +0xb9,0x65,0xc1,0x08,0x9d,0x55,0xac,0xa3,0xe6,0x67,0x4c,0xea, +0x27,0x72,0x7a,0xc0,0x29,0x62,0x17,0xcc,0x83,0x5d,0xb4,0x44, +0xd8,0xe9,0x5c,0xfd,0x5c,0xe6,0x39,0x45,0xcc,0x0a,0x53,0xbf, +0xbe,0xc1,0x3c,0x9c,0x25,0x67,0xbc,0xc8,0x59,0x95,0xd6,0x1b, +0x76,0x14,0xee,0x11,0x20,0x67,0xd1,0x6c,0x1d,0xd3,0x23,0x58, +0x27,0xf3,0x9c,0x24,0x4c,0x6f,0xc2,0xc4,0x9e,0xaa,0xce,0xd1, +0xcc,0x98,0xb6,0xa1,0xa4,0x07,0xf5,0xe2,0x8d,0xf7,0xad,0x3a, +0xb3,0x10,0xae,0xd2,0xbb,0xec,0x2e,0x7e,0xe5,0xfb,0xa5,0x83, +0x07,0x2d,0x5c,0xb2,0x12,0x5c,0x2e,0x65,0x78,0xb8,0xea,0x75, +0xe4,0x2f,0x55,0xc4,0x46,0x27,0xca,0xda,0x45,0x97,0xb3,0x50, +0xde,0x76,0xad,0x51,0x8d,0x72,0x4a,0x89,0x47,0xd5,0x4e,0x27, +0x30,0xfb,0x6f,0x47,0x55,0x4b,0xeb,0x59,0xc2,0xb8,0xc9,0x5f, +0x03,0xea,0x7c,0x33,0xb7,0xf8,0x48,0x0f,0x60,0x65,0x4a,0xcd, +0xbe,0xcc,0x79,0xcd,0x6c,0xd8,0x5f,0xe4,0xef,0xce,0x7e,0x0c, +0x31,0x9c,0xd8,0x8c,0xda,0x26,0x76,0x35,0x75,0x42,0x99,0x9b, +0x80,0x5b,0x31,0x4a,0x27,0x94,0xb9,0xc5,0xf1,0x05,0x82,0xd3, +0x77,0x96,0x3c,0x77,0xd9,0x8a,0x55,0x30,0x4e,0x16,0xc4,0x22, +0x1c,0x76,0x48,0x4d,0xa7,0xe3,0xd2,0xcf,0x13,0x54,0x11,0x8c, +0x94,0x8f,0x09,0x89,0x2e,0x46,0xb4,0xeb,0x44,0x64,0x42,0xb4, +0xa9,0x5a,0x7d,0x19,0x45,0x16,0xc6,0x4f,0xd2,0x56,0x30,0xca, +0x56,0x42,0x19,0x17,0x81,0x9e,0x77,0x39,0x19,0x9a,0x13,0xa5, +0x8f,0x31,0xe1,0xc3,0xd6,0x53,0xea,0xf9,0xcb,0x23,0xb2,0xd0, +0x29,0xec,0xa5,0x2a,0x9f,0xb2,0xdf,0x48,0x5a,0xb4,0x4c,0x04, +0x5f,0x87,0x29,0xf2,0xb8,0x2c,0x7b,0x0a,0x47,0xaa,0x6a,0x97, +0x6c,0x77,0x2e,0x2d,0x5e,0xf6,0x65,0x80,0xcc,0x8e,0x7b,0x84, +0xad,0x0c,0xf3,0x3a,0x4f,0xbc,0xda,0x44,0xa0,0x1b,0xf1,0xb2, +0xdf,0x05,0x62,0xd4,0x4f,0xb8,0x0f,0x87,0x66,0xfc,0x09,0xe6, +0x24,0x86,0x9f,0x26,0x78,0xa7,0x08,0xcc,0x8a,0x05,0xe3,0x65, +0xc1,0x40,0xfd,0x97,0x90,0x06,0x0b,0xf7,0x61,0x74,0x22,0xab, +0x70,0xe1,0x41,0xa7,0xb3,0xdb,0x48,0xc0,0x9b,0x2a,0x4a,0x4d, +0xb1,0x8a,0x8f,0x54,0x94,0x70,0xcf,0xaa,0xcb,0x32,0x3f,0x0e, +0x97,0x8d,0x98,0xcf,0x59,0xe2,0xd3,0x41,0x78,0xfe,0x08,0x9a, +0x54,0x16,0xc5,0xbd,0x1c,0xb7,0xc1,0xbb,0x2f,0xe0,0x43,0x7a, +0x68,0x03,0x75,0xb1,0x24,0x96,0x11,0x2e,0xa3,0x19,0xfb,0x3b, +0xc2,0x6e,0xfb,0xb7,0x56,0x87,0x1a,0xe3,0x3f,0x6c,0xc5,0x63, +0xdc,0x28,0x83,0x84,0xc7,0x73,0x98,0x2c,0x37,0xc9,0x72,0x49, +0x34,0xb0,0x00,0x54,0x30,0x00,0x4b,0x08,0x97,0x2b,0x4c,0xfc, +0x39,0x11,0x8f,0xfc,0xdb,0x90,0xb0,0x36,0xf6,0xe2,0xc4,0x85, +0xb4,0x1a,0xae,0x9a,0xd3,0x23,0xd0,0x9d,0xc0,0x90,0x0e,0x1e, +0x0a,0x23,0xf0,0x33,0x61,0x0b,0x64,0xf8,0x3a,0x82,0x4f,0x13, +0xf9,0x1b,0xb2,0xb3,0x51,0x80,0xe3,0x95,0x73,0xe2,0x9c,0xe8, +0x18,0x7a,0xd5,0x9c,0xcb,0xb3,0xe6,0xcb,0x44,0x74,0x15,0x23, +0x1d,0xad,0xcf,0x9b,0xf1,0x31,0xd5,0x7e,0x96,0xca,0x2f,0x5c, +0xb7,0x92,0xea,0xe6,0xfe,0xad,0x25,0x95,0x87,0x1e,0x77,0x5b, +0x53,0x46,0xd8,0x46,0x08,0x09,0x22,0x7f,0x2c,0xdd,0x2d,0x30, +0xd8,0xb1,0xc0,0x99,0x35,0x6f,0xf3,0x25,0x73,0xb3,0x1d,0x97, +0xa8,0xb5,0xc6,0x05,0x73,0x41,0x0c,0xfa,0x97,0x88,0x7b,0x84, +0xd9,0xe8,0x8f,0x0d,0xaf,0x77,0x74,0xf4,0x64,0xa7,0xa4,0xac, +0xa7,0x30,0x46,0xd5,0x15,0x9e,0x91,0x30,0xa5,0xd5,0x6c,0x5f, +0x79,0x59,0xda,0x4f,0x61,0xac,0xaa,0xef,0xb8,0x0a,0xb8,0x14, +0x6b,0x18,0xe6,0xc7,0xb8,0xfc,0x9a,0xfc,0x41,0x3d,0xb2,0x79, +0x5a,0x1c,0xd7,0xe9,0xaf,0x9b,0x17,0xa6,0x27,0x25,0xcb,0x5f, +0x34,0xee,0x69,0x20,0x66,0x81,0xee,0xcc,0xed,0x94,0xc5,0xad, +0x86,0xc8,0x8d,0x20,0x47,0xcf,0xa0,0xc7,0xb6,0xef,0xc4,0x36, +0x9a,0x6d,0xb2,0xc5,0xb6,0x16,0xb3,0x5d,0x8e,0x35,0x39,0x20, +0xe2,0xaa,0x2b,0xf2,0x66,0x5a,0x71,0x90,0xdd,0x71,0xd5,0x65, +0x79,0x53,0xbf,0x77,0x0e,0x6a,0x03,0xef,0x67,0xf8,0xfb,0x17, +0x46,0x66,0x36,0x19,0xbc,0xcd,0xe2,0x78,0xcc,0x18,0xb7,0x6c, +0xec,0xac,0x04,0x11,0xd2,0x06,0xa2,0x07,0xd8,0x31,0x5b,0xf7, +0x66,0xa4,0x80,0x16,0x2a,0xc2,0x01,0xb9,0x0a,0x1e,0xd6,0x91, +0x2d,0xe8,0x16,0x34,0x04,0xb7,0x5f,0x92,0x0f,0xf1,0x1b,0x9b, +0xe7,0x3c,0xd2,0xba,0x2f,0xd9,0x70,0x21,0xa7,0x00,0x1b,0x18, +0x83,0x79,0xa9,0xc5,0x60,0x6a,0xf1,0x43,0x91,0xe3,0x30,0xc8, +0xc3,0x56,0x93,0x15,0xad,0x31,0xd0,0xd6,0x73,0x9c,0xda,0x99, +0xcc,0x63,0x38,0x26,0x5d,0x4f,0x61,0x9c,0xaa,0x7c,0xcc,0xfe, +0xed,0xd1,0x45,0x8b,0xb7,0x05,0xc8,0xe9,0xf8,0x99,0xa3,0x16, +0xe7,0x36,0xec,0xce,0xdc,0x38,0xf5,0x57,0xa3,0x18,0xf4,0x2a, +0xda,0xe8,0x69,0xe1,0x94,0xaa,0xd0,0x8b,0xfb,0x7f,0x40,0x66, +0x3d,0x49,0xcc,0xca,0x0a,0xaf,0x2c,0x96,0x78,0x0f,0x49,0xd7, +0x93,0xc4,0xa3,0x3c,0x0d,0xe0,0x1a,0x7f,0x29,0xe8,0x05,0x78, +0xc1,0x18,0x27,0x3f,0x8b,0xc2,0x43,0xc2,0xf8,0x85,0x79,0xad, +0x61,0x5e,0x4b,0x89,0xd7,0x94,0x18,0x34,0xa8,0x67,0x41,0xf4, +0xcf,0xa6,0xe2,0x5b,0x1b,0xd4,0xbe,0x66,0x56,0x59,0xb8,0x64, +0xa3,0xd1,0x0f,0x98,0xd4,0x79,0x6a,0xdb,0x99,0xbe,0xd2,0xec, +0x24,0xec,0x61,0x80,0x25,0x55,0x4e,0x43,0x76,0x30,0xa7,0x9e, +0x55,0x97,0x71,0xbb,0x2a,0x49,0xb7,0x15,0xf6,0x4e,0x2a,0x2b, +0xec,0x9c,0xe9,0x33,0x0e,0x48,0x68,0x15,0x53,0x6d,0x56,0xb1, +0x1d,0x7b,0x40,0xf8,0xeb,0xb2,0xfc,0x14,0x7b,0xa5,0xcc,0x60, +0x64,0xb9,0x8e,0x54,0x8e,0x04,0x4d,0xd6,0x96,0xe1,0x9e,0xba, +0x48,0xa8,0x29,0x7d,0xb9,0xf4,0x02,0x03,0x52,0x3e,0x72,0xae, +0xa9,0x35,0xda,0x37,0x77,0xa1,0x5a,0x94,0xa9,0x93,0x24,0xbe, +0x9e,0x3c,0xe0,0xcc,0x7d,0xa4,0x15,0xa0,0xbb,0x96,0xa0,0x7c, +0x8c,0x42,0x60,0x7e,0x22,0x7f,0x54,0x97,0x6d,0xd7,0x63,0x0d, +0xb3,0x3a,0x76,0x56,0xd5,0xf5,0x34,0x8c,0x4f,0x17,0xdc,0x47, +0x22,0xff,0x55,0x68,0x8d,0x3d,0x52,0x3a,0xb2,0x0c,0xee,0x71, +0xf5,0x4d,0x8b,0xbd,0x3f,0xb1,0xc7,0x6c,0xc4,0xff,0x5f,0xd7, +0xab,0xf4,0xc0,0x91,0xc6,0xc8,0xc5,0xe3,0x67,0x8d,0x18,0x3b, +0x74,0x94,0xcf,0xd4,0x39,0x2e,0x3b,0xf6,0x2e,0xdd,0x7f,0xc2, +0x6f,0x4b,0x8d,0x01,0xf6,0xe0,0x96,0x0d,0x71,0x46,0x50,0xc1, +0xaf,0x9a,0x48,0xdf,0xa4,0x3b,0xdf,0x1c,0xf8,0xc6,0x77,0xc5, +0xa2,0x44,0x8e,0x56,0xb8,0x16,0x4b,0xfa,0xec,0x39,0xe5,0x62, +0xad,0xbc,0x7f,0x1b,0x88,0x5c,0x8c,0x2b,0x8c,0x84,0x25,0x63, +0x66,0x8d,0x1d,0x9f,0x30,0xde,0x67,0xfa,0x5c,0x97,0x8f,0xbf, +0x5c,0xb4,0xfb,0x98,0xdf,0x8e,0xa8,0xde,0xf6,0x92,0x7d,0x9a, +0x97,0xac,0x56,0xb0,0xd0,0xb3,0x71,0x4b,0xc6,0xce,0x1e,0x33, +0xde,0x77,0xdc,0xc4,0xe9,0x73,0x5c,0x3e,0xfe,0x6a,0xf1,0xee, +0x23,0x7e,0xdb,0x23,0xfb,0xd8,0x8b,0x74,0x68,0x80,0xf9,0x43, +0x0a,0x7e,0xd3,0xea,0xe2,0x89,0x03,0x5f,0x6f,0xdb,0xef,0xbb, +0x70,0xbe,0x8e,0xbb,0x52,0x0a,0x8b,0xfb,0x5c,0x3e,0x75,0x60, +0xdf,0xb6,0xbd,0x8b,0x16,0x2e,0xe6,0x8a,0xa2,0x58,0xc0,0xe7, +0xc0,0x61,0xea,0x8d,0x71,0x97,0x5f,0x05,0x6d,0xd6,0xb1,0x17, +0x47,0x25,0x8c,0x1c,0x4b,0x83,0xd9,0xb2,0x63,0xc9,0xe7,0xb3, +0xf7,0x89,0x9c,0x1d,0x61,0x5a,0xa5,0xf8,0xe6,0x38,0xba,0xd2, +0xae,0x26,0x3e,0xd2,0xfb,0xf0,0xed,0xaf,0x0e,0xec,0x9e,0x33, +0x5b,0x04,0x3d,0x60,0xb1,0x0d,0x60,0xb1,0xad,0x21,0xb1,0xc5, +0xc7,0xa0,0xad,0x68,0xfc,0xd3,0x12,0xb4,0x0c,0xfb,0xe9,0x45, +0xbd,0x5d,0x66,0x3d,0x41,0xa3,0x09,0x38,0x60,0x3f,0x7b,0x98, +0xce,0xa7,0x80,0x20,0xbe,0x53,0xd9,0x4f,0x90,0xe0,0x0a,0x91, +0xe0,0x2a,0x62,0xfe,0xb5,0xce,0xb9,0x5d,0x70,0xc9,0x5c,0xc0, +0x73,0x3b,0x43,0xe4,0xaf,0x01,0x38,0x91,0x34,0x3b,0x73,0x4e, +0x09,0x9b,0x5a,0x3a,0x74,0x51,0xac,0x39,0xf7,0x53,0x17,0xcc, +0x77,0x55,0x3e,0x51,0xd7,0xed,0x9e,0xbc,0x38,0xc2,0x78,0x79, +0x6d,0x07,0xee,0x2d,0xa9,0x61,0xb4,0x55,0xbc,0x4c,0x56,0x2f, +0x6d,0x66,0x77,0xdc,0x66,0x6c,0x93,0xd5,0x38,0x52,0x63,0x84, +0x0b,0xc6,0xda,0x06,0xc9,0x88,0xf0,0xc9,0xdb,0xb0,0x9a,0xc8, +0xe5,0xc8,0xe8,0xe4,0x5a,0xeb,0x59,0xf9,0x5f,0x3a,0x59,0x0d, +0xfd,0x53,0x2e,0x83,0xb0,0x37,0xe7,0xaf,0x85,0x8e,0xc8,0xb1, +0x20,0xfc,0x66,0xd0,0xb1,0x66,0x3c,0x0a,0x2f,0xd1,0x91,0x3f, +0xb9,0xb8,0xe4,0x88,0x00,0xb3,0xb6,0x39,0x59,0x78,0xb5,0x01, +0x59,0x01,0xef,0x01,0x6e,0x11,0x9e,0x9b,0x40,0x96,0xc5,0x9f, +0x01,0x3f,0x15,0x85,0x1f,0x82,0x85,0xf9,0x1c,0xf3,0x3b,0x96, +0x81,0x63,0x3f,0x60,0x0e,0xe3,0x5e,0x78,0x58,0x0f,0xfe,0x9c, +0x28,0xd1,0xb1,0xfb,0xad,0x9a,0x66,0x78,0x5d,0xf5,0xcb,0x5c, +0xe3,0xf0,0x56,0xad,0xd5,0x87,0x7f,0xab,0x99,0x6a,0x75,0x02, +0x8c,0x07,0xe1,0xa5,0x94,0x2d,0x18,0xf0,0x03,0x3c,0xa9,0x46, +0x59,0x9d,0xec,0x8b,0xfb,0x53,0xf8,0x0b,0xb4,0x86,0xa0,0xf2, +0xe2,0xd9,0x94,0x17,0x9a,0x38,0xbb,0xf1,0x73,0x78,0x05,0x3a, +0xec,0x5f,0xd3,0x3e,0x97,0x36,0x06,0x70,0xd9,0x31,0x8d,0xe1, +0x88,0xc3,0x1e,0xa9,0xa5,0x33,0xb3,0x57,0x12,0x53,0x70,0xa7, +0x06,0x86,0x62,0x91,0x94,0xb3,0x1a,0x96,0xcd,0xf8,0x29,0xbc, +0xa2,0xb2,0x15,0xe7,0x17,0xe1,0xde,0x6a,0x8d,0xce,0xc8,0xa6, +0xee,0xcc,0x16,0xde,0x9f,0xb3,0x23,0x56,0xad,0xf4,0x84,0x6c, +0xea,0x4e,0x2c,0x57,0x5d,0xc0,0x85,0xe9,0xf9,0xd8,0xd4,0x9d, +0x36,0xc2,0x7b,0x27,0x7c,0x42,0x22,0x71,0x66,0x55,0x53,0x77, +0x9a,0x1a,0x13,0x8f,0x88,0xdc,0x0b,0x40,0x96,0x93,0x65,0x4e, +0xe0,0x30,0x5c,0x77,0xc1,0x76,0x2d,0x79,0xd1,0x32,0xd2,0x8e, +0x37,0x7f,0x65,0x60,0x4d,0x59,0x52,0x56,0x38,0x81,0xa3,0x71, +0x8d,0x9c,0x6c,0xdb,0x58,0x34,0x6d,0x2f,0x3c,0xac,0x53,0x4c, +0x78,0xae,0x84,0x97,0xe8,0x63,0x9c,0xc4,0x1e,0x4d,0xec,0xf8, +0x19,0x4e,0x34,0x12,0xe4,0xea,0x68,0x3a,0xec,0x3c,0xb3,0xb1, +0xa7,0x51,0xae,0x6a,0x10,0x9b,0xac,0xa3,0xc3,0x9e,0x11,0x5e, +0xf5,0x38,0x17,0x6f,0xee,0x1c,0x70,0x6c,0x57,0xff,0xb6,0xc2, +0x85,0x3f,0xbe,0x52,0xd4,0x68,0x63,0xe1,0xb6,0x08,0xf0,0x67, +0xba,0x8a,0x78,0x0e,0x05,0x01,0xcf,0xd8,0x6d,0xeb,0x5f,0x93, +0xb9,0x11,0x56,0x21,0x2b,0x99,0xdb,0x33,0xb8,0xae,0x93,0xb9, +0x4d,0x80,0xd3,0xff,0x87,0x64,0x6e,0x13,0xfe,0x92,0xaa,0xe8, +0x4d,0x32,0x37,0x27,0xe4,0xbf,0x48,0xe6,0x56,0x93,0x36,0x43, +0x2b,0x99,0xdb,0x37,0x34,0x9c,0xf9,0x3c,0x1c,0x55,0x46,0x65, +0x15,0x9e,0xf9,0xa9,0x6a,0x2f,0x55,0x2d,0x64,0x41,0x5f,0x12, +0x05,0x1a,0xe9,0x7c,0x6f,0xea,0x4e,0xf3,0xff,0x9b,0x98,0x71, +0x80,0x4e,0x10,0xe7,0x89,0xc4,0xa2,0xbe,0xf0,0x2f,0x01,0x98, +0x55,0xe4,0x1c,0x00,0x2f,0xea,0x14,0xb2,0x4f,0xab,0x52,0x71, +0x66,0x65,0xff,0x85,0x0d,0x5d,0x64,0x4f,0x39,0x68,0xd9,0x06, +0x59,0x2a,0x80,0x74,0xc9,0x51,0xc2,0x9d,0x27,0x56,0x12,0x7a, +0x13,0xee,0xd4,0x5e,0x91,0xcf,0x03,0x44,0xbe,0x9b,0x9c,0xa7, +0x6a,0xcd,0xdb,0xf9,0xe5,0x6a,0xc2,0xcc,0xff,0x63,0x7e,0x39, +0x1e,0xb0,0xf7,0x0e,0x50,0xd5,0x78,0xfe,0x6a,0xb0,0x40,0xf1, +0xd1,0x3b,0xd2,0xcb,0xdd,0x04,0x19,0xc6,0xc9,0xad,0x38,0x2d, +0xf7,0x87,0xa0,0x8e,0xe3,0x0f,0xc2,0x3f,0x96,0x9f,0x0d,0x61, +0xbc,0x8e,0xc1,0xec,0x5b,0x21,0xae,0x03,0x4c,0x3e,0xd9,0x74, +0x42,0xe4,0xa4,0x5a,0x53,0x7d,0x2b,0xd1,0xd3,0x9c,0x91,0x39, +0x4e,0x04,0x5c,0x20,0x3d,0x48,0x8e,0x61,0xfc,0x44,0x74,0x31, +0x2c,0x1c,0xd7,0x0c,0x2a,0x39,0x12,0xa7,0x70,0xae,0x38,0x11, +0x70,0x9e,0xf1,0x86,0x08,0xd7,0xd9,0x20,0x2b,0x4a,0xcf,0x93, +0xf4,0xc4,0x6e,0x11,0x39,0x1e,0xc3,0x1e,0xba,0xab,0x93,0xa4, +0x73,0x9f,0xc4,0x96,0xb8,0x41,0x76,0xb4,0x25,0x62,0xb6,0xb4, +0x5f,0xe0,0xcf,0x68,0xcc,0xb6,0x15,0x1a,0x75,0xe0,0x44,0x70, +0x2b,0x75,0x22,0xb8,0x80,0xef,0x98,0xbe,0x8d,0x70,0x3f,0x0c, +0x81,0x84,0xf0,0x32,0x1a,0xb3,0x58,0x08,0xd3,0x1b,0x70,0x46, +0xb8,0xd4,0xae,0xdc,0xed,0x6d,0xaa,0x07,0x24,0x16,0x25,0xf0, +0xef,0xd1,0xc5,0xb7,0x42,0xe3,0x8c,0x9c,0x6f,0x6f,0xa0,0xd8, +0x14,0xbd,0x8c,0x74,0xe8,0xe4,0xe3,0x29,0xa5,0x61,0xa0,0x8a, +0xe1,0xc4,0x6e,0xff,0x84,0x62,0x36,0xc3,0x59,0x9c,0xbd,0xcd, +0x2c,0xce,0x7d,0xe8,0xf3,0xd7,0x46,0x9c,0x09,0xdd,0xde,0x40, +0xff,0xce,0xa1,0x2f,0x37,0xe2,0xf3,0x8f,0x28,0xba,0x1f,0xe3, +0x68,0xa0,0xdf,0x32,0xce,0x47,0x6f,0x37,0xc2,0xe9,0xd8,0x44, +0xc0,0x39,0x86,0x0c,0x62,0x11,0x14,0x22,0xc8,0x8b,0xe8,0x40, +0x92,0x80,0x8b,0x8c,0xe0,0x88,0x3e,0x3a,0xb3,0x9a,0x87,0xd9, +0x8e,0x63,0xf9,0x2c,0xb8,0x68,0x9e,0x89,0x36,0x4f,0x33,0xf2, +0x48,0x61,0x6b,0x0c,0x2b,0xaa,0x08,0x37,0x4e,0xaa,0x91,0x02, +0x3f,0xe3,0x62,0xdc,0x45,0xf3,0xed,0x93,0x9e,0x0c,0x4d,0x04, +0xf4,0xe0,0x61,0x9f,0x12,0xde,0x63,0x38,0xef,0x59,0x35,0x9d, +0xf7,0x2c,0x9f,0x2f,0xe7,0x3d,0x2b,0x68,0xe5,0x3d,0x4b,0xe1, +0xbc,0x67,0x55,0x39,0xef,0x99,0x26,0x73,0x26,0x31,0x33,0xfa, +0xf1,0xeb,0xcf,0x5a,0x3a,0x89,0x19,0x95,0x1f,0xe0,0x82,0x4c, +0x49,0xcc,0xba,0xc9,0x11,0xc2,0xfb,0x33,0x38,0x49,0xea,0x89, +0x95,0xc4,0xac,0x9b,0x6c,0x27,0xfc,0x8b,0x41,0x11,0xa3,0xf6, +0xf8,0x32,0x93,0x42,0xa7,0xb8,0x3e,0x8a,0x28,0x9a,0x0c,0x95, +0x1d,0xb7,0x20,0x10,0xf3,0xa7,0x67,0x35,0xeb,0x86,0x9b,0x85, +0xdb,0x62,0x7e,0xdf,0x5b,0x86,0xf3,0x9a,0xa5,0xac,0xe2,0xc0, +0xd0,0xa5,0xdf,0x97,0xd7,0x8c,0xc0,0x37,0x8a,0x71,0x5e,0x33, +0x2a,0x3c,0xa6,0xed,0x0c,0x52,0x32,0x53,0xf4,0x94,0x1f,0xfe, +0x2d,0xbb,0x19,0x83,0x03,0x69,0xe7,0x7a,0x93,0xdd,0xac,0x9b, +0xec,0xc5,0x2d,0x56,0xc7,0xe2,0x99,0xd2,0x9b,0x75,0x23,0xf9, +0x52,0x57,0x8b,0xa6,0x77,0xf5,0x61,0x44,0x31,0xab,0xab,0xb4, +0xd7,0xe9,0x84,0x67,0x6e,0x85,0x20,0x52,0xf8,0x94,0xa7,0x61, +0xf7,0x85,0x19,0x18,0xaa,0xb3,0x9c,0x51,0x9d,0x8a,0x08,0xe2, +0x2c,0x67,0xc4,0x65,0x82,0xe6,0xd2,0x57,0xd8,0x5e,0x40,0x39, +0xa3,0xf6,0x38,0xcd,0xe5,0x5e,0x44,0x59,0x27,0x97,0x97,0xef, +0x4c,0x81,0xc6,0x0c,0x1a,0xf1,0x03,0xf8,0x87,0xe6,0x8b,0x2b, +0xa8,0x4f,0x9c,0xf9,0xac,0x8e,0xd9,0x8f,0xdf,0x30,0x8f,0x6f, +0x13,0x33,0x29,0xcc,0x7f,0x94,0xac,0x23,0xfb,0x24,0xe1,0x1e, +0xfc,0xda,0xd1,0x19,0x68,0x27,0x1a,0x2e,0xc3,0x65,0xdf,0x24, +0xdc,0x8b,0x7b,0xe5,0x51,0x1b,0x16,0xa7,0x67,0xf5,0x8f,0xc8, +0xc2,0x38,0x88,0xff,0x0c,0xad,0x9f,0x72,0xe2,0x5b,0xbb,0xa3, +0x17,0x76,0x4f,0x1d,0x07,0xa9,0x01,0x7c,0xfe,0x1e,0xa4,0xf3, +0x97,0xf8,0x75,0xe4,0x10,0x7b,0xe9,0xfc,0xea,0xca,0x3e,0xc9, +0xc4,0xef,0x28,0xf1,0xdb,0xcd,0xfc,0xa2,0x64,0xdf,0x64,0xe2, +0x77,0xc8,0xe2,0x57,0xc1,0x90,0x6e,0x91,0xe8,0x86,0x83,0xac, +0xff,0x86,0x0a,0x8f,0x5f,0xf9,0xb8,0x1e,0x9b,0x7a,0x86,0x3f, +0x57,0xa3,0xd3,0x7a,0x67,0xea,0x3a,0x90,0x95,0xf8,0xb0,0xde, +0x2e,0x8f,0x33,0x85,0x61,0x3c,0x8a,0x2c,0x81,0x83,0xf8,0xcf, +0xd0,0xe2,0x7c,0xc2,0x5f,0xb0,0x4e,0xf8,0x59,0x4c,0x52,0x92, +0x49,0xd6,0x31,0x49,0x31,0x26,0x59,0x6b,0x91,0xe4,0x33,0x7e, +0x8f,0x2c,0x8d,0x83,0xf8,0xcf,0x50,0xfd,0xc1,0xb0,0x37,0x1d, +0xf5,0xd4,0x63,0x95,0x86,0x5d,0x71,0x19,0xa4,0xe5,0x01,0xf4, +0x30,0x7e,0x8e,0xac,0x80,0x83,0xf8,0xcf,0xd0,0x72,0xa0,0x1c, +0xf8,0x1a,0x3f,0x79,0x07,0xc0,0x01,0xaa,0xa5,0xda,0xf4,0x2e, +0x40,0x1e,0x02,0xac,0x7d,0x07,0x80,0xd4,0x88,0xe5,0xa4,0x46, +0xbc,0x03,0xd0,0x0c,0xaf,0x92,0x36,0xf1,0x0e,0x56,0xde,0xc4, +0xea,0xc3,0xf7,0x01,0xa6,0xbe,0x8b,0xd5,0x4d,0x3a,0xf7,0x37, +0xf3,0x88,0x1c,0x0d,0x55,0xb1,0xd4,0x9e,0xff,0x9b,0x04,0x5b, +0xe2,0x78,0xf9,0xdd,0xff,0x46,0xf2,0x01,0x1e,0x25,0x7d,0x86, +0x48,0xfa,0x88,0x80,0xc5,0x20,0xa3,0x65,0xbf,0x24,0x7a,0x80, +0x0f,0x88,0x02,0xa4,0x0d,0x47,0xc8,0xfe,0x49,0xb8,0x1f,0xbf, +0xb6,0x08,0xfd,0x33,0xad,0x97,0x86,0x29,0x27,0xce,0xda,0x55, +0x6e,0xdc,0x84,0x37,0xf5,0x7a,0xe9,0x8b,0x7b,0x48,0x15,0xe2, +0x79,0x28,0x89,0xde,0xb2,0x38,0x9d,0xaf,0x81,0xac,0x14,0x25, +0x93,0x52,0xc4,0x63,0xf4,0x34,0xee,0x45,0x86,0xe1,0x20,0xfe, +0xe3,0xf4,0xa0,0xdc,0x8b,0x79,0x33,0xb4,0xa3,0x40,0xd6,0x8e, +0xba,0x92,0x76,0xf4,0x8e,0xd9,0x93,0x28,0xb5,0x92,0x14,0x48, +0x4a,0x52,0x08,0x29,0x49,0xef,0x40,0xd9,0x87,0x79,0x48,0x53, +0xa2,0xb5,0xfa,0x81,0x59,0x86,0xd7,0xe5,0x30,0xd9,0xca,0x4c, +0xa3,0xbb,0x57,0x69,0xed,0x70,0xe9,0x17,0x00,0xa6,0xad,0xac, +0x70,0x6d,0x04,0x32,0xab,0x70,0xf1,0x03,0xfc,0x96,0x5d,0x2c, +0xfd,0x3e,0x03,0x2c,0x95,0x76,0x0f,0x02,0x57,0x0a,0xdf,0xc2, +0x70,0xcb,0x56,0x16,0xcf,0x09,0x7b,0x00,0x33,0xa1,0x13,0x67, +0x26,0xa4,0x3f,0x39,0xfb,0xd3,0xee,0xf2,0x93,0x33,0x4c,0xd6, +0xe2,0xdf,0x7b,0x71,0x4f,0x5a,0x0a,0xbb,0x92,0xfc,0xdd,0xff, +0xb2,0x3b,0x60,0x91,0x70,0xa8,0x9c,0x1a,0x07,0x77,0x49,0x97, +0x70,0x87,0x4a,0xda,0x1b,0xd3,0x59,0xfb,0x26,0x80,0x4f,0x06, +0x90,0x86,0x64,0xeb,0x08,0x15,0xb4,0x47,0x26,0xf7,0xf0,0x2f, +0xee,0x98,0x36,0x7a,0xf2,0x8b,0xa7,0x95,0xcf,0xf0,0xc9,0x24, +0x1a,0x23,0xde,0xb4,0x57,0x2b,0xdc,0x54,0x6e,0x3d,0x11,0x7a, +0xcb,0xb4,0x91,0x04,0x73,0xab,0xe0,0x63,0x6f,0x30,0x9d,0x5e, +0x9a,0xc2,0x6f,0x16,0xfb,0x9f,0x74,0x02,0x22,0xa9,0x22,0xbc, +0xdd,0x48,0xbd,0x79,0x04,0xea,0x43,0xfc,0x42,0xf8,0xd3,0x3d, +0xf4,0x6b,0xe1,0xfe,0x0d,0x3b,0x68,0x52,0xc5,0x36,0x63,0xe2, +0x51,0x97,0x09,0x1f,0x35,0x9b,0x1c,0xe7,0x3f,0x51,0x86,0xc9, +0xd2,0x27,0x70,0x28,0x6e,0x34,0x7b,0x81,0x2c,0x23,0xcb,0x9d, +0xc0,0x91,0xf8,0x89,0x9c,0x64,0xc3,0xf3,0xb8,0xdf,0x72,0xda, +0x54,0x05,0x64,0xab,0xff,0x92,0x20,0x85,0xf4,0x51,0x9f,0x20, +0xfe,0xbe,0x79,0x4f,0x86,0x07,0x67,0x15,0x7c,0xc4,0x39,0xc8, +0x82,0x8b,0x80,0x2a,0x28,0xeb,0x3a,0x48,0xf6,0x9f,0xbd,0xc3, +0x83,0xf3,0x25,0x43,0xeb,0x33,0x74,0x95,0xe5,0xc4,0xb8,0x54, +0xd8,0x92,0xd9,0x49,0x53,0x7d,0x84,0x8b,0x32,0x55,0x8f,0x52, +0x6d,0x39,0xbf,0x58,0x66,0x80,0xd3,0x9b,0xf3,0xcd,0x6f,0xed, +0xcd,0x99,0xc1,0xce,0xe9,0xcd,0x49,0xbf,0x13,0x32,0xf1,0x49, +0xf7,0xe6,0xcc,0x84,0x36,0xfa,0xad,0x9f,0x79,0x48,0xbd,0xb1, +0x3f,0x64,0x69,0x6d,0x14,0xb6,0x3f,0x81,0x46,0xb7,0x97,0x28, +0xc3,0xda,0x41,0x73,0x55,0xc7,0x91,0x85,0x60,0x8f,0x19,0xb6, +0x5a,0xf8,0xd7,0x67,0xd8,0x26,0x82,0x05,0x3b,0x86,0x82,0x59, +0x17,0x37,0xa8,0xd7,0x96,0x10,0xce,0x6b,0x7f,0xcc,0xc0,0xb4, +0xdb,0x70,0xc2,0xa7,0x13,0x4c,0xc0,0xde,0x22,0x5f,0x08,0x1d, +0x5f,0xc0,0x02,0x6d,0xa1,0x79,0x5e,0xc0,0xdd,0xc2,0xad,0x21, +0x9d,0x95,0xd3,0x38,0x4a,0xcf,0x1d,0x87,0xc1,0xfe,0x98,0xd4, +0x85,0x86,0xc2,0xed,0x37,0xc0,0x73,0x98,0x98,0xee,0x05,0x4a, +0x2d,0xad,0x13,0xde,0x75,0x32,0x1c,0x3e,0xff,0x22,0x2b,0xed, +0xf0,0xc9,0x5c,0x32,0x9c,0x3a,0xdf,0x66,0xb2,0x05,0x44,0xc1, +0x8f,0x81,0x6e,0x55,0x4d,0x84,0x7f,0x6e,0xda,0x15,0x84,0xbf, +0xb0,0xf2,0x8c,0xf5,0x15,0x5e,0x0f,0xac,0x7a,0xd7,0x59,0xb4, +0xd5,0x4a,0xaf,0xa3,0xb4,0x25,0x2c,0x11,0x5e,0xf4,0x10,0x84, +0xc8,0x3c,0x47,0xb1,0x05,0x2e,0x90,0x1d,0x6c,0xb8,0x1a,0xb7, +0x1a,0x97,0x64,0xb1,0xd4,0x5d,0x30,0x1e,0xeb,0x88,0x1c,0x7d, +0x61,0xa4,0xdc,0x94,0x91,0x98,0xec,0xf5,0xff,0x91,0x87,0xb9, +0x54,0x36,0xe5,0x44,0x66,0xaf,0x38,0xcd,0x56,0x3b,0x9d,0xc7, +0x8c,0x6e,0x1d,0x47,0x64,0xac,0x31,0xf1,0xa0,0xf9,0x2b,0x13, +0x6b,0x4e,0xf3,0x44,0x8e,0x6d,0xf0,0x85,0xc1,0x56,0x27,0x8b, +0xdb,0x2c,0x8b,0xdb,0x06,0x91,0x37,0xbb,0x4e,0x56,0xc6,0x1e, +0xa4,0x35,0xba,0x5f,0x30,0xe7,0x09,0xdf,0xdf,0x49,0x2d,0x11, +0x79,0x36,0x01,0xc6,0xb1,0x77,0xa8,0x37,0xc8,0x4b,0x29,0x27, +0x32,0x7e,0xec,0x4e,0xd9,0x95,0x51,0x36,0x13,0x53,0xe6,0x80, +0xa3,0x1f,0x3c,0xe7,0xf2,0x32,0xed,0x37,0xea,0xfc,0xb5,0x87, +0x1d,0x47,0x9d,0xe5,0x5d,0x96,0xe7,0x68,0xc0,0x60,0xc0,0xa3, +0x32,0x46,0x78,0x47,0x72,0x62,0xb2,0x61,0xce,0xc4,0x64,0xaf, +0x84,0xcf,0x57,0xfc,0x3e,0x77,0xbd,0xc8,0x4b,0x57,0x97,0x00, +0x3b,0x8b,0xa0,0x85,0x16,0xef,0x39,0x61,0x54,0x25,0x5d,0xe8, +0x22,0x98,0xd9,0xd8,0x43,0x34,0xef,0x31,0x90,0x95,0x65,0xbc, +0x95,0x78,0xac,0x83,0xc8,0x77,0x03,0x16,0xa4,0x86,0x82,0xc8, +0x43,0xda,0x75,0x0b,0x5a,0x3f,0x1e,0xcd,0xe0,0x27,0x76,0xfc, +0x24,0xfc,0x69,0xec,0xdf,0xc9,0xe8,0x35,0x52,0x26,0xb1,0x72, +0x70,0x85,0x94,0x83,0x2e,0x72,0x95,0xf0,0xcf,0x05,0xb8,0x90, +0x1d,0x30,0xd3,0xf6,0x43,0x92,0xb5,0x94,0xd6,0x43,0x79,0x2c, +0x2b,0xbc,0x48,0xa5,0x37,0x72,0x43,0x11,0xec,0xab,0xb3,0x90, +0x51,0xd1,0x6c,0x81,0xfb,0x33,0x65,0x21,0xeb,0x22,0xe7,0x19, +0x13,0x8f,0xa9,0xb3,0x20,0x6b,0xa6,0x15,0xa4,0xfb,0x8f,0x39, +0x89,0xdd,0x53,0xcb,0x9d,0xc4,0x51,0xf8,0x99,0x23,0x1a,0x70, +0x8e,0x93,0xeb,0xc9,0xf4,0x05,0xda,0xcb,0x4a,0x34,0xd6,0x45, +0x76,0x77,0xd2,0x55,0x61,0xba,0xed,0x4c,0x57,0xc1,0xa2,0xdb, +0xc4,0x74,0xec,0xd5,0x98,0x27,0x13,0x5d,0xde,0xd6,0x56,0x26, +0xb2,0x2e,0x24,0x0e,0xf7,0xfb,0x30,0x48,0xc5,0x90,0x1e,0x2d, +0x6c,0x3f,0x41,0x57,0x15,0xf3,0xfe,0x54,0x64,0x8c,0x60,0xc6, +0xb0,0x1f,0xc5,0x3e,0x6a,0xb6,0x3f,0xc8,0x71,0xb4,0xcd,0x70, +0xa3,0xa5,0x65,0x29,0xde,0x61,0x3e,0x36,0x3f,0xe5,0x0d,0xb8, +0x9a,0x2c,0xce,0xbb,0xcc,0x28,0x5c,0xc5,0x4d,0x0f,0x66,0xc7, +0x4e,0x27,0xeb,0xbf,0x24,0x2c,0xe3,0xda,0x2e,0xac,0x18,0x3b, +0x33,0x96,0x75,0x21,0xd5,0x92,0x7a,0x23,0x37,0x61,0xfd,0x4c, +0x29,0xcb,0xba,0xc8,0x59,0xbc,0x9b,0x4d,0xfc,0xb0,0xf9,0x24, +0xde,0xcd,0x2a,0xf1,0x00,0xb7,0xf0,0x00,0xcb,0x59,0x03,0xdc, +0xc8,0xad,0x4c,0x66,0xb7,0xcd,0x9b,0xb0,0x7c,0x72,0x86,0x64, +0x0a,0x93,0xe6,0x96,0x83,0x23,0x32,0x9f,0xc8,0x94,0xc4,0xac, +0x8b,0x5c,0x2f,0x6c,0xa3,0x00,0xa7,0xa5,0x0c,0xd7,0xe0,0x08, +0x2c,0xc9,0x09,0xcc,0xf4,0x60,0xc6,0x68,0xc8,0xe0,0xf6,0x30, +0x8f,0x5f,0xf2,0x0a,0x0d,0xaf,0x80,0x1f,0x65,0xca,0x60,0x96, +0x41,0xcd,0xbe,0x95,0x7f,0x3f,0xc2,0x8a,0x09,0xb1,0x84,0xab, +0x9b,0xbf,0x5d,0x5d,0x42,0x78,0xbb,0x73,0x75,0x55,0x0e,0x35, +0x6c,0x29,0x67,0xa3,0x65,0x2f,0xd9,0xfb,0x0c,0x1d,0x59,0xf7, +0xe9,0xc8,0xda,0xc3,0xa8,0x3d,0x65,0x9f,0x33,0x74,0x64,0xfd, +0x42,0x47,0x56,0x79,0xa3,0x81,0x3c,0x84,0x0d,0x2e,0xcb,0x06, +0x32,0x54,0x78,0x4d,0x85,0x70,0xfc,0xc8,0x71,0xdb,0x3a,0x04, +0x8b,0xa4,0x95,0x06,0x74,0xbb,0x2c,0xdd,0xe4,0x90,0x0a,0xe8, +0xdb,0x58,0x96,0xa6,0x73,0xea,0x00,0xfc,0xcc,0xb1,0x77,0x2e, +0x0b,0x7b,0x21,0x3e,0x47,0xaa,0x66,0x76,0xdd,0xb4,0x32,0x77, +0x65,0xf6,0xde,0x94,0xc9,0x80,0x45,0x89,0x4b,0x91,0x50,0x5c, +0x19,0x04,0xe6,0xb6,0x64,0xb5,0x50,0x36,0xd3,0x09,0xbc,0x9e, +0xd9,0x22,0x8b,0x18,0x38,0xe4,0x19,0x67,0xef,0xe2,0xb3,0x30, +0x44,0x7b,0x76,0xea,0x02,0x7b,0x76,0x5a,0x9c,0xd3,0x3d,0x3b, +0x0b,0x5d,0xfa,0xd3,0x19,0x82,0x47,0xbb,0x77,0x6a,0x2c,0x76, +0xef,0xe4,0x42,0x55,0x90,0x83,0x2b,0x64,0xc4,0xdc,0xf9,0x59, +0x8e,0xa8,0x20,0x3c,0x17,0x50,0x27,0x3d,0x9d,0x3c,0x08,0xe8, +0x8c,0xb8,0x43,0xb0,0x8a,0x1c,0x71,0xe7,0x27,0x8e,0xb8,0xb3, +0x5a,0x75,0x4e,0x6f,0x65,0x64,0x58,0x46,0xd0,0x9d,0x7b,0xb2, +0x4f,0x55,0x75,0x04,0x6e,0x73,0xd0,0x9d,0x1f,0x38,0x37,0x2e, +0x1d,0xc4,0xd5,0x8c,0x58,0x39,0x46,0xed,0x01,0xd9,0x8d,0xff, +0x8c,0xa1,0x63,0xbd,0x25,0x26,0xa6,0xf5,0xd6,0xfa,0x80,0x31, +0xf1,0x78,0x0a,0xe9,0x42,0x51,0xb2,0xf7,0x29,0xa7,0x46,0xf0, +0x25,0x8b,0xb7,0xb6,0xec,0x73,0x8a,0x35,0x02,0xd2,0x7d,0xaf, +0x61,0x41,0xf6,0x33,0x25,0xe4,0xc6,0x22,0x27,0x75,0xb1,0x83, +0xec,0xcd,0x6a,0xf2,0xf7,0xa4,0x26,0xeb,0x99,0x68,0xc3,0x6a, +0xf3,0x5e,0xbc,0xaa,0x95,0x87,0x06,0x22,0x67,0x2b,0x38,0x67, +0x57,0x79,0x48,0xc3,0xde,0x9e,0xd1,0xf8,0x7b,0x7c,0x53,0xf9, +0x74,0x2f,0x2c,0xdc,0x86,0xe9,0xe3,0xdc,0x88,0x97,0xdd,0xd0, +0x76,0x7a,0xa0,0xdc,0xbc,0xf1,0x34,0xe1,0x76,0x4b,0xb2,0xd3, +0x0d,0x2c,0xd8,0xc0,0xa5,0x77,0x38,0xb9,0x14,0x3e,0x70,0x6a, +0x03,0x85,0xd3,0xfe,0xf3,0x77,0x7f,0x55,0xa7,0x14,0xb5,0xbf, +0xaa,0xd9,0x01,0x58,0x4d,0xa8,0xaa,0xdd,0x54,0x2d,0xf1,0xfc, +0x93,0x9b,0x2a,0x0d,0xab,0xa9,0x1e,0x56,0x5b,0xd9,0xfb,0x34, +0x0d,0xeb,0x1a,0x49,0xc0,0x5a,0x8b,0xb2,0xcf,0x69,0x1a,0xd6, +0x65,0x1a,0x56,0x59,0xf6,0x5b,0x25,0xc4,0x66,0xb4,0x4e,0xf5, +0x90,0x5b,0xd2,0x3a,0x75,0x8c,0x2c,0x27,0xbc,0x6b,0x70,0x75, +0x5b,0x4d,0xdf,0xdc,0x12,0xcb,0xf9,0x74,0xb1,0x34,0xb1,0xc4, +0x72,0x8e,0xe8,0xcb,0x19,0xa5,0x58,0xfd,0xbf,0xca,0xea,0x7f, +0x1d,0x73,0xf0,0x9b,0x3b,0xcc,0x68,0xd2,0x41,0x35,0xd5,0xd7, +0x99,0x34,0x31,0xa6,0xda,0x4b,0x54,0x61,0x19,0xce,0xae,0x69, +0xde,0xa4,0x20,0x05,0xb3,0x4a,0xdf,0xf9,0x42,0xfa,0x0f,0x2b, +0x8a,0x72,0x3a,0xe4,0xff,0xa3,0xec,0x3b,0xc0,0xab,0x2a,0x9a, +0xbf,0x41,0x92,0x73,0x93,0x25,0x09,0x69,0x27,0xa4,0x2c,0x84, +0x34,0x42,0x0b,0x45,0xe9,0x3d,0x85,0x0e,0x09,0x04,0x2c,0x80, +0xf4,0xde,0x94,0xa6,0x14,0x95,0x8e,0x82,0x82,0xd2,0x41,0x29, +0x22,0x16,0xba,0x28,0x16,0x6c,0xd8,0xe8,0x52,0x84,0x50,0x15, +0x15,0x10,0x0b,0xbd,0x88,0x3a,0x9b,0xcc,0xde,0xeb,0x37,0xb3, +0xe7,0xa6,0xd1,0xde,0xff,0xf7,0xf0,0x3c,0x64,0xcf,0xee,0xcc, +0xec,0xec,0x9e,0xdd,0x99,0xd9,0xbb,0x7b,0xf6,0x67,0x8e,0xc1, +0x7a,0x1f,0x9c,0x63,0xb0,0x54,0xd1,0x00,0x59,0xa6,0x9e,0x60, +0xe9,0x7b,0x64,0xd0,0x4e,0xc1,0x62,0x77,0xe6,0x8b,0x75,0x6e, +0x4a,0xbe,0x4b,0x8b,0x7c,0x9f,0x64,0x31,0x75,0x6c,0x0a,0x3c, +0xb7,0x61,0xb9,0xfc,0x18,0x36,0xaa,0x5d,0xfe,0x91,0x57,0x6f, +0x1d,0xde,0x23,0xaf,0x5c,0x50,0x78,0xc8,0x55,0x46,0xc4,0xf0, +0x32,0xb8,0x15,0xef,0x8d,0xcc,0x3d,0x06,0x07,0x0c,0x58,0xd4, +0xdc,0xa3,0x70,0x80,0x02,0x37,0x2e,0x1a,0x8e,0x2d,0xf9,0xb2, +0x21,0xef,0xb2,0x78,0x20,0x74,0x57,0x9b,0x05,0xb4,0x87,0x94, +0xdd,0x64,0x09,0xbf,0x75,0x77,0x12,0xf0,0xf6,0xc7,0x6c,0x0b, +0x5b,0x43,0xad,0xdd,0x14,0x71,0x7d,0x09,0xd3,0xac,0x0f,0x5b, +0xcb,0xa0,0xcd,0xe2,0x4d,0x83,0x0c,0xf5,0x9e,0x77,0xf5,0x3c, +0x10,0xd2,0x64,0x4c,0x75,0xd1,0xd2,0x1e,0xa3,0xc3,0x05,0x3c, +0xb5,0x94,0x4b,0x2b,0x60,0x34,0x2f,0x9c,0x03,0x8e,0x0b,0xbc, +0xa8,0x4b,0xd9,0x90,0xad,0x26,0xf3,0x99,0xe3,0x55,0xb2,0x4c, +0xa6,0x70,0x40,0x9c,0x9e,0x3d,0xa1,0x9e,0x75,0xe9,0x81,0x14, +0xf9,0x97,0xfe,0x9e,0x57,0xd5,0x8d,0xec,0x67,0xff,0x82,0x27, +0x61,0xa8,0x41,0x71,0x4a,0x66,0x04,0x0a,0x46,0x71,0x5a,0xc0, +0xdf,0x3c,0x1f,0xcc,0x51,0x01,0x8c,0xe2,0x94,0x27,0x78,0x05, +0xdd,0xd0,0x9e,0x7e,0x43,0xc6,0x6d,0x12,0xd8,0x88,0xf1,0x9b, +0x0e,0xdb,0x3a,0x00,0x36,0xa8,0x00,0x57,0x1b,0x3c,0xc6,0x9f, +0x37,0xaf,0x60,0x2b,0x4f,0x84,0x3f,0xc6,0xdb,0x8c,0xe0,0xd8, +0x5a,0x0b,0xd8,0xa2,0x84,0x4b,0x6f,0xc5,0x23,0xf6,0x8c,0x1b, +0xba,0x84,0x80,0x01,0xc9,0xd8,0x17,0x1b,0x55,0x10,0xeb,0xad, +0x0b,0xdf,0x4b,0xdf,0x16,0xa2,0x6b,0xea,0xcc,0xba,0x31,0xea, +0xc9,0x08,0xac,0x4c,0x06,0xa7,0xb2,0x61,0x76,0x8e,0xc8,0x7a, +0xab,0x53,0x9d,0x04,0x0e,0xc2,0x46,0xce,0x5a,0xfd,0xaf,0x61, +0xe2,0xa6,0xf3,0x0d,0x73,0x20,0xfa,0x1a,0x8a,0x0a,0x45,0x29, +0xe6,0xc2,0x22,0xfe,0x70,0xf9,0xb0,0xfd,0x26,0xf4,0x68,0x23, +0xfd,0x7e,0x14,0x6d,0x65,0x99,0xb3,0xde,0x4e,0xea,0xc4,0x0d, +0x6d,0x84,0x75,0xf9,0xb3,0xe5,0x1c,0x7b,0xca,0x4d,0x06,0x78, +0x6a,0xc4,0x00,0x4f,0x52,0x96,0xa6,0xc0,0x2f,0x42,0xf2,0x12, +0x7e,0x04,0x2d,0xe1,0x13,0x85,0xbb,0xa4,0x79,0x1d,0x14,0x34, +0x55,0x13,0x69,0x32,0x70,0x87,0xe0,0x9f,0xe6,0x86,0xc1,0x58, +0x19,0x39,0xc1,0xf4,0xe9,0xcf,0x14,0x2c,0x5a,0xbc,0xf5,0x32, +0x5a,0x64,0xc8,0xc8,0x87,0xf8,0x05,0xae,0x33,0x1c,0x53,0xf2, +0x3a,0x8b,0x31,0x58,0x0d,0xc7,0x91,0xff,0xa0,0xd5,0xfc,0x6c, +0x4c,0xe1,0x8f,0xe8,0x88,0x4c,0xa7,0xa2,0xc5,0x18,0x49,0x35, +0x5d,0x7a,0xe1,0xd3,0x0b,0xdb,0xab,0x97,0xde,0xf1,0xc5,0xc0, +0xe3,0x70,0xd6,0xc5,0xa8,0x4a,0xcf,0x1a,0xde,0x2e,0xc5,0x79, +0xf1,0x96,0xae,0x6b,0x5f,0x34,0xf0,0x49,0x17,0x1d,0xf8,0xa4, +0x93,0x0e,0x7c,0xd2,0x68,0xfe,0x29,0x20,0x83,0xe1,0x93,0x56, +0x49,0xbf,0x43,0x02,0xa9,0x89,0xd4,0xe4,0xca,0x59,0xb9,0x25, +0xf7,0x58,0x41,0xf7,0xd2,0x04,0x5f,0xc5,0x1a,0x7a,0xb8,0xc8, +0xed,0xc7,0xaf,0x7e,0xde,0x09,0x35,0xcf,0xa5,0x69,0xb4,0xc8, +0xe8,0x10,0xa1,0xb3,0xb1,0x1d,0x2e,0x12,0x5e,0xd0,0xa3,0x31, +0x10,0x6c,0x32,0xfb,0x62,0xe3,0x02,0xfc,0xa2,0x31,0x60,0xd9, +0x53,0x65,0x74,0x37,0xf1,0x3d,0xee,0x2a,0x04,0x27,0x1a,0xfd, +0xb3,0x3d,0x75,0xe0,0x23,0x7c,0x42,0x64,0x3d,0x54,0xde,0x8b, +0x63,0x74,0xe2,0x5e,0xd7,0x2f,0xfb,0x16,0x2f,0x7d,0x3f,0x16, +0x0e,0xcd,0x32,0x3f,0x22,0xf4,0x6a,0x61,0x0e,0x51,0x6c,0x82, +0x06,0x7b,0x71,0xba,0xae,0x28,0xfd,0x57,0x8b,0xca,0x18,0xad, +0x69,0x05,0x54,0xfa,0x18,0x1f,0x3d,0xe9,0xc0,0x00,0x45,0x26, +0x1d,0xc1,0xe9,0x07,0x4c,0xfa,0x3c,0x4e,0x66,0x44,0x22,0x2b, +0x50,0xdc,0xc2,0x2f,0xfb,0x9a,0x84,0xb6,0x75,0x87,0xaf,0x9d, +0x14,0x11,0xf2,0x3e,0x3e,0x25,0x5b,0x60,0x2d,0x08,0x72,0xc0, +0x88,0x46,0x43,0x49,0x7b,0x8a,0xa3,0xca,0x16,0xa8,0xbc,0x87, +0x54,0xa9,0xc4,0xaa,0x2c,0x92,0xf1,0x5f,0x79,0x4f,0xeb,0x4d, +0xd7,0x55,0x4e,0x5a,0xbf,0x9d,0x5a,0xb4,0xe4,0xe3,0x58,0x3e, +0xb2,0xd7,0x89,0xdb,0x30,0x9b,0xda,0x30,0xe4,0x80,0xf9,0x64, +0x3c,0x3a,0x4d,0xfc,0x81,0x9b,0xa4,0xf8,0x41,0xc8,0xb2,0x27, +0x28,0xe0,0xfe,0x44,0xbf,0xc6,0x14,0x33,0x4c,0xdb,0x2b,0x49, +0xeb,0x5b,0x3e,0x04,0x99,0xe8,0x00,0x17,0x8d,0xd1,0x81,0xd2, +0xb7,0x3a,0x9f,0xa1,0x30,0x8d,0xae,0xea,0xd4,0x94,0x14,0x20, +0xcc,0xb9,0x93,0x0f,0x9c,0xb6,0xa6,0x48,0x5f,0x1f,0xa1,0x6b, +0x62,0x1b,0x9d,0x6d,0x10,0x94,0xc6,0xfc,0x6b,0x84,0xfc,0xa6, +0x5b,0xcb,0xf2,0xfb,0x4d,0x25,0xba,0x09,0xb6,0x64,0xbc,0xa3, +0xa0,0x0f,0x84,0x7b,0xdb,0xb7,0xb2,0xec,0x61,0x21,0xe3,0x3f, +0xa7,0xe4,0x4c,0x19,0x46,0xad,0xf7,0xd9,0x2f,0xf4,0xa2,0x13, +0xf0,0x14,0x54,0xd8,0xef,0x72,0x6f,0x9b,0x26,0x43,0x3f,0xa5, +0xe2,0x2f,0xa9,0xf8,0x39,0x19,0x4a,0x6b,0xf7,0x32,0x94,0xda, +0xe9,0x39,0x20,0xb0,0x99,0xbb,0x2c,0xfc,0x5d,0xe4,0x39,0xcb, +0x5d,0x56,0xba,0x1e,0x29,0xcc,0x80,0xad,0x3a,0x53,0xba,0x6a, +0x09,0xd5,0x9a,0x32,0x66,0x30,0x45,0x7b,0x77,0x59,0xdd,0x93, +0x66,0x12,0x94,0xb0,0x87,0xf1,0x17,0xaa,0x66,0x2a,0x95,0x73, +0x77,0x2c,0x42,0x92,0x69,0x48,0xd4,0x3e,0x19,0x30,0x8b,0xa2, +0xde,0xaa,0x42,0xf7,0x3a,0x49,0xa6,0x3f,0x96,0x35,0xe1,0x72, +0xb8,0x84,0x1e,0x18,0x49,0x4b,0x94,0xab,0xc2,0xa8,0xb6,0xd5, +0x7b,0x29,0xd3,0x33,0x14,0xae,0x8f,0x48,0xd5,0xcb,0x8e,0xc3, +0x14,0x88,0xc6,0xd9,0xc7,0xd5,0x16,0x17,0x99,0x9e,0x5a,0xd2, +0x6f,0xab,0x80,0xf2,0xb0,0x8c,0xd6,0x7c,0xbf,0x66,0xc2,0x72, +0xb4,0x71,0x29,0x2e,0xc9,0x03,0x81,0x6b,0xb0,0xb5,0xee,0x26, +0xd4,0x55,0xf5,0x14,0x9f,0xd5,0x9a,0x7c,0x5c,0xbd,0x9e,0x4a, +0x81,0x76,0x34,0x0c,0x4e,0xd5,0xb3,0x8e,0x5b,0xba,0xde,0x09, +0x7b,0x84,0xe1,0x9b,0xeb,0xf0,0x85,0x33,0xdf,0x4f,0x16,0x94, +0xfd,0x57,0xfa,0xbd,0x2e,0xd0,0x37,0x66,0x16,0xf6,0xf4,0x2c, +0x63,0xfe,0xd1,0xcc,0xff,0xd4,0x71,0xb5,0x2c,0x15,0xc7,0x13, +0xff,0xd0,0x54,0x3d,0xfd,0xb8,0x85,0x51,0xb7,0x64,0x05,0xb7, +0x80,0x97,0xf0,0xd7,0x2c,0x2f,0xf7,0xa2,0x3c,0xc5,0xdf,0x17, +0xbf,0xab,0x27,0x30,0xd7,0x0c,0xe6,0x1a,0x6c,0x4e,0x02,0x0c, +0x22,0xae,0xae,0xa9,0xba,0x2f,0x73,0x9d,0xd2,0xad,0xc5,0x7e, +0x0c,0xd7,0xe3,0xbd,0xad,0xea,0x4d,0x65,0xd9,0xa9,0x3a,0xfb, +0x38,0x79,0xb3,0x68,0xec,0x7e,0x5c,0x0d,0xa4,0x56,0x21,0x92, +0x4d,0x79,0x84,0x02,0xde,0x51,0xff,0x93,0x6a,0x20,0x45,0xac, +0xdf,0xfc,0x2f,0x2a,0x58,0x81,0x93,0xf4,0x68,0x91,0xfb,0x39, +0xdf,0x99,0xb5,0xdd,0xf3,0x08,0xa7,0x70,0x80,0x6e,0xa9,0x9f, +0x34,0x29,0x92,0x01,0xb5,0x38,0x75,0x01,0x6b,0x7a,0x1e,0x26, +0x03,0x54,0x51,0x74,0xc5,0x41,0x7a,0xbd,0x49,0x81,0x2f,0xae, +0xe5,0x0b,0x0e,0xe2,0x96,0x0b,0x9d,0xc5,0x2d,0xb8,0x7a,0x56, +0xd4,0xc2,0x24,0x6f,0x4e,0x26,0xe7,0x5c,0x39,0x2b,0xea,0x62, +0x65,0xde,0x69,0x8b,0x3d,0x25,0xdc,0xd5,0xfa,0x98,0xd1,0x16, +0xfb,0x03,0x25,0xfb,0x9b,0xd1,0x16,0xfb,0xa3,0xc9,0xe5,0x41, +0x16,0x7b,0x9a,0x92,0x8f,0xf3,0x20,0xf3,0xdc,0xa4,0xd4,0xa0, +0xc2,0x41,0x56,0xf8,0xec,0x1d,0x64,0x05,0x19,0xf9,0x83,0xac, +0x30,0x63,0xbd,0x7e,0x09,0x5e,0x2c,0xc2,0x71,0xcf,0x41,0x57, +0x48,0xe2,0x1d,0x74,0x3b,0xe0,0x4d,0x7b,0x0f,0x1e,0xcc,0x72, +0xc1,0x9a,0x8e,0x76,0x9b,0xf9,0x13,0x71,0x84,0x6f,0xa6,0x35, +0x51,0x96,0xd9,0x29,0xe0,0xf4,0xae,0x54,0x2b,0xa8,0x5d,0x7e, +0x15,0xf9,0x83,0xb0,0x8f,0x69,0x05,0x0d,0xc2,0x93,0x42,0xaf, +0x3d,0x01,0x71,0xb5,0xe9,0xb9,0xaf,0x0c,0x7d,0x86,0x9f,0x5f, +0x3a,0x01,0xbe,0xfc,0x3c,0x44,0x86,0x91,0xfe,0x3b,0x84,0x9e, +0x78,0x02,0xca,0x79,0x16,0xb2,0x08,0xe9,0xaa,0x2a,0x3a,0x51, +0xc8,0xb5,0xbf,0x90,0x0e,0xdb,0x62,0x4f,0x19,0x99,0x2d,0xdc, +0x7e,0x7c,0xdb,0x55,0x3b,0xe9,0x4a,0x15,0xf8,0x39,0x9e,0x51, +0xa3,0xa8,0x57,0x4e,0x08,0x77,0xd5,0x21,0xb9,0x8c,0x51,0xaf, +0x13,0xa5,0x5f,0xa8,0x11,0x36,0xe3,0x04,0x24,0x17,0x0a,0xeb, +0x89,0x08,0x07,0xbd,0xb7,0x0c,0x49,0x8c,0x83,0xa0,0x0c,0xbd, +0x32,0x07,0xe2,0x20,0x0e,0xab,0xe4,0xa8,0x0f,0x79,0x26,0x50, +0xf8,0x35,0x93,0x2f,0x32,0x4f,0xb2,0xa1,0x02,0x65,0x57,0x70, +0xe9,0x57,0xf1,0x47,0x9d,0x5c,0x70,0x55,0x56,0x1c,0x5f,0x79, +0xb4,0x2c,0xc7,0x14,0x56,0xce,0xf9,0x1f,0xb3,0x87,0xe4,0xc4, +0xd9,0x54,0x10,0x87,0xe5,0xf9,0x46,0xac,0xe3,0x3c,0x93,0x2e, +0xf2,0x31,0xcf,0x38,0x8c,0xca,0x51,0xaf,0x67,0xe4,0xcb,0x9b, +0x95,0x63,0xe9,0x87,0xfe,0xd7,0x4c,0x52,0x5f,0xf3,0x37,0xa3, +0xe5,0x89,0x83,0x84,0xd5,0xd5,0x5d,0x78,0x5a,0x5d,0x54,0x91, +0x2c,0x2c,0x26,0x47,0x2d,0xcb,0xc0,0xb2,0x54,0xe4,0x9f,0xa1, +0xa7,0xe7,0x58,0x68,0xdf,0x7d,0x5a,0x2d,0x83,0x77,0x30,0x45, +0x80,0x9f,0xfe,0x9a,0x67,0xd7,0x45,0x95,0xc4,0xcc,0xfe,0x39, +0x6a,0x42,0x06,0x86,0x12,0xb3,0x4f,0x86,0xee,0xc3,0xcc,0x27, +0x69,0x76,0x11,0xed,0x5b,0x7c,0xe2,0x35,0x0e,0x82,0x5d,0x5d, +0x74,0x22,0xcd,0x34,0x59,0x21,0x52,0x20,0xdf,0x24,0xbe,0x8d, +0x0b,0xd7,0xda,0x58,0x0e,0x19,0x20,0x15,0xd7,0xb8,0xa3,0x75, +0x77,0xe1,0xde,0x2d,0xd0,0xca,0x51,0x43,0xf9,0xf2,0xad,0xb8, +0x5b,0x19,0xfa,0x11,0x16,0xf4,0xf7,0x59,0x26,0x9d,0xee,0x3e, +0x42,0xab,0x7f,0x77,0x2d,0x8f,0x8b,0x5c,0xc7,0x26,0xc1,0x97, +0x68,0xd1,0x94,0x34,0xc9,0xa1,0xfa,0x73,0x9a,0x77,0x9c,0x7c, +0x85,0x1c,0xe9,0x68,0x23,0xe5,0x81,0x1c,0x35,0x30,0x43,0xfd, +0x2d,0x88,0xff,0x46,0x01,0x3f,0x54,0xd6,0x9b,0x68,0xc6,0xdd, +0xb3,0x1c,0x7f,0x72,0xd7,0xa1,0x79,0x78,0xef,0xf2,0x9f,0xdd, +0x75,0x68,0x76,0xde,0xb3,0x7c,0x94,0x8e,0xa5,0x39,0x5b,0xf8, +0x92,0x03,0x32,0xf4,0xc2,0x1c,0x28,0x47,0xdd,0x93,0x98,0xa3, +0xd6,0xf3,0x4b,0x4e,0xe1,0x76,0x97,0x86,0xf2,0xb6,0xc9,0x2d, +0xc7,0x77,0x6e,0xbd,0xae,0x1f,0xf5,0xb2,0x44,0x10,0x8b,0x5f, +0x86,0x1e,0xcf,0x57,0xa8,0xc5,0xf1,0x2d,0x5d,0xaf,0x30,0x4b, +0x02,0xf7,0x63,0x69,0x88,0xe5,0x93,0xc1,0x94,0xeb,0x9a,0x85, +0xd7,0x74,0x3f,0xee,0x77,0x69,0x7b,0xa9,0x32,0x1c,0x4e,0x19, +0x33,0x45,0xc0,0x1b,0x8e,0x98,0x08,0x17,0x36,0xd1,0x63,0xd9, +0x6c,0x50,0x7f,0xeb,0xa5,0xb0,0xc5,0xc6,0xc5,0x3f,0xb9,0x68, +0x18,0x2c,0x5d,0x75,0x2a,0x96,0xef,0x0d,0x0a,0x9a,0x2c,0x2c, +0x15,0xf7,0x45,0x7e,0xff,0x43,0x8c,0xde,0xa2,0x9f,0x63,0xa9, +0xc1,0xb6,0x33,0x26,0xdf,0x2d,0x18,0x57,0x7c,0xd6,0xc6,0xfe, +0xe7,0xb6,0x17,0xd6,0x5a,0x5b,0xb8,0x99,0xbc,0x5b,0x45,0x31, +0x53,0xbf,0x47,0x36,0x89,0xfb,0x24,0x20,0x47,0x8d,0xcc,0x7f, +0x73,0x59,0xcc,0x74,0xb5,0xb0,0xe7,0x06,0xe8,0xf0,0xd7,0x0b, +0x2e,0x23,0x8b,0xe3,0xcb,0xc8,0xa8,0x99,0x16,0x55,0x55,0xa6, +0x78,0x33,0x23,0xf9,0xa8,0x6f,0x1c,0x1f,0xf5,0x9d,0x89,0xbb, +0x3d,0x2d,0xef,0xf3,0x2e,0xd6,0xbb,0x6b,0x7a,0x06,0x19,0x0d, +0xf8,0x88,0xab,0x67,0xd3,0x1d,0x2a,0x64,0xb2,0x0a,0x57,0x0a, +0x19,0x7a,0xeb,0x48,0xb2,0x8b,0xc9,0x1c,0xf9,0xb5,0x6e,0x07, +0xad,0x71,0xde,0x29,0xb5,0xc9,0xe5,0xce,0xc0,0x69,0x36,0xae, +0xb8,0xea,0x92,0xfe,0x64,0x1d,0xfd,0x16,0x89,0x11,0x34,0x29, +0xb7,0xc1,0x02,0xed,0xdb,0x01,0xbe,0xc0,0x08,0x0b,0xfb,0xe8, +0x07,0x81,0x4c,0x68,0x48,0x8d,0x7c,0x3e,0x4b,0x03,0x75,0xdb, +0xf2,0xdb,0x39,0xe6,0x39,0x1c,0xb6,0x85,0x23,0x75,0x15,0x20, +0x93,0x1c,0x52,0x5f,0xe0,0x30,0x0f,0xad,0x5a,0x72,0x3f,0x95, +0xb1,0xcd,0x78,0x66,0x7f,0x4e,0x44,0x7e,0x1d,0xe0,0x2b,0x0c, +0xb7,0x60,0x97,0x5e,0x02,0xc9,0x64,0xd4,0x6b,0x0a,0x8c,0x70, +0x97,0x75,0x5b,0x4e,0xb2,0xa2,0xbb,0xac,0x7a,0xd8,0x24,0xe1, +0x27,0x9d,0xc9,0x21,0x76,0x74,0x6b,0x2d,0x61,0xb3,0xbe,0xc0, +0x00,0x75,0x09,0xe6,0x47,0x95,0x80,0x56,0x02,0x6e,0xe8,0xb9, +0xee,0x18,0xc1,0x49,0x4c,0x22,0x8b,0x3d,0xcf,0x49,0x12,0xb7, +0xbb,0xa6,0x90,0xfe,0xd4,0xc4,0x87,0x3d,0xef,0x09,0xad,0xb6, +0xcb,0x80,0x21,0x7c,0x93,0xb3,0xc7,0x4d,0xf1,0x6e,0x5e,0x41, +0xae,0x8d,0x93,0xae,0xb8,0xa0,0x16,0xd8,0x0c,0x9f,0x45,0x31, +0xd1,0x04,0xe9,0xdb,0x40,0x0c,0x03,0x7f,0x59,0xa6,0x87,0xb0, +0xc6,0xe0,0xdf,0xee,0x7f,0xf9,0x0a,0x28,0x43,0x8d,0xc9,0x55, +0x6c,0x19,0xd4,0x4f,0xe0,0xa7,0x38,0xf9,0x8a,0x2e,0x27,0x70, +0x35,0x79,0xaa,0x29,0x8e,0x8f,0xd3,0x5b,0x8c,0xdf,0x7f,0x5d, +0xbf,0x63,0x1f,0x55,0xcb,0xd2,0x71,0x64,0x62,0xfb,0xbf,0xac, +0x9a,0xe8,0x27,0x7d,0x5e,0xe1,0xd6,0xce,0x25,0x3b,0x76,0x22, +0x13,0xe6,0x91,0x1d,0x9b,0x8b,0x4b,0xd4,0xa7,0x0c,0x80,0xc5, +0x51,0x00,0x05,0x19,0xaf,0x93,0xa7,0x7a,0x7d,0x11,0x71,0xcd, +0x22,0x2e,0xcf,0x78,0x81,0x3e,0x05,0x3c,0x73,0x1d,0x9e,0xf0, +0x7c,0x9e,0xcd,0x98,0x4a,0x26,0xca,0x8b,0x9a,0xf5,0xfa,0x02, +0xe2,0x99,0x9e,0x4e,0xdd,0x4a,0x3c,0xbe,0xb6,0x4c,0x9a,0xcb, +0xd6,0xe9,0x44,0x96,0x97,0x61,0xd1,0x0f,0x16,0x84,0xfd,0x65, +0xf0,0x16,0xe7,0x1b,0xd7,0x4f,0x6c,0x13,0xf2,0xab,0xea,0x9b, +0x8e,0xdd,0x98,0x2d,0x58,0x75,0xa1,0x90,0xbe,0xc0,0xe9,0xeb, +0x81,0xc6,0x35,0xbf,0xae,0x7b,0x13,0x4d,0x36,0xce,0xe3,0x7b, +0x92,0x0a,0x7c,0xfd,0x9d,0x85,0x5d,0x0a,0x5d,0xfc,0x1d,0x85, +0xf0,0xae,0xe3,0xd9,0xbf,0x64,0xd4,0x2d,0xe3,0xd9,0xbf,0x64, +0x6c,0x2d,0xe3,0xd9,0xbf,0x34,0xac,0x50,0xdd,0x94,0x96,0x32, +0xae,0x9d,0x94,0x7b,0x25,0x5f,0xb9,0xf1,0xe9,0xd8,0x8f,0x95, +0x73,0x91,0x72,0xc3,0x8c,0xbb,0xbf,0xad,0x74,0xa0,0xe9,0x25, +0x2a,0x85,0xb2,0x26,0x04,0xa0,0xe2,0x91,0x5c,0xcc,0xf0,0x5b, +0x59,0x54,0x77,0x3a,0x47,0x01,0x8e,0x5a,0xaf,0x1c,0xe7,0x09, +0xf5,0xba,0x7e,0xfe,0x36,0x4e,0x7c,0x12,0xd3,0x68,0x42,0xc9, +0xf2,0x2f,0x09,0x5d,0xc3,0xce,0xf5,0x15,0x4f,0xd0,0xb8,0xfd, +0x80,0x46,0x7a,0x89,0x0e,0xb0,0x8d,0x8c,0xc6,0x07,0xb8,0xe2, +0x37,0x19,0x12,0x20,0xf0,0x2a,0xb6,0xe1,0x11,0x1f,0x7b,0x55, +0xe8,0x3c,0x9a,0x8f,0xb8,0xfc,0x37,0x17,0x24,0x42,0xe9,0x65, +0x2b,0x7f,0x89,0x9d,0xb6,0xc7,0xb7,0x80,0x71,0x9e,0xc3,0x48, +0x03,0x7e,0xb0,0x33,0xe0,0x63,0xff,0x11,0xda,0x0d,0x11,0x32, +0xb6,0x29,0xbf,0x4a,0x9e,0x11,0xa5,0x3a,0xc0,0x67,0x3c,0xd8, +0x0f,0x3a,0x83,0x3d,0xf6,0x16,0x13,0x84,0xdb,0xb8,0xe4,0x0f, +0x97,0x0c,0x0d,0x14,0x0c,0xd1,0x16,0xd4,0x5b,0x58,0x50,0x15, +0x95,0x3b,0x92,0x0c,0xf8,0xaf,0x02,0x83,0x9c,0xc9,0xc0,0xc9, +0xf2,0xce,0x64,0xa0,0x24,0xfc,0x76,0xaf,0xc9,0x50,0x9a,0x56, +0xc5,0xe5,0x9c,0x19,0xc0,0xc9,0xf2,0x66,0x06,0xe4,0x76,0x83, +0xfd,0xf6,0x29,0xd5,0xd3,0x3d,0x56,0x68,0x0d,0x31,0x32,0x90, +0x16,0xa2,0x2d,0xcd,0x24,0x90,0x91,0x2e,0xf1,0xbe,0x6e,0x2b, +0x7d,0xd7,0x98,0x24,0x74,0xa4,0xe0,0x65,0x60,0xc1,0x2d,0x66, +0x5e,0x7a,0x9a,0x1e,0xe7,0x5d,0x24,0xdf,0x7f,0xd9,0xaa,0x5f, +0x78,0x7a,0xc8,0xa4,0xdf,0xa9,0xc9,0xfe,0xd2,0x6f,0x85,0xb0, +0x9e,0x31,0xb3,0x43,0x46,0x3e,0xce,0xb7,0xa1,0x99,0x99,0x50, +0xc8,0x8b,0x8f,0x4e,0xb5,0x8b,0xd0,0xe2,0x47,0x24,0xc7,0xca, +0x97,0x83,0xc9,0x58,0xcb,0x1d,0x45,0xf6,0x62,0xa9,0xc0,0xa5, +0x34,0x63,0x8e,0xa8,0x65,0x2d,0xc8,0x5d,0x5a,0x1d,0xc1,0x42, +0x7f,0x19,0x7c,0x41,0xf4,0xb1,0x9f,0xed,0xf0,0xe0,0xd4,0x4a, +0x31,0xa3,0xa8,0xef,0x66,0xd2,0xd4,0x39,0x94,0x09,0xb3,0x69, +0xea,0x3c,0x8f,0x4b,0xa4,0xdf,0x47,0x7c,0xfe,0x34,0x9d,0xe6, +0x4e,0x65,0x9a,0x3b,0xc7,0x2c,0x5c,0xca,0x20,0x5d,0xb3,0x8a, +0xf3,0x0f,0x28,0xc6,0x3f,0xd7,0xe1,0x0f,0x2f,0xe0,0x9f,0x8f, +0x8d,0x9d,0x0b,0xd6,0x96,0x31,0xff,0x02,0xe2,0x9f,0xde,0x02, +0xcb,0xa0,0xd5,0x89,0xf8,0x5d,0x46,0x8c,0x85,0x21,0x7d,0xec, +0xe7,0xbc,0x32,0xca,0x91,0x8c,0x97,0xf0,0x50,0x96,0x57,0xc6, +0x22,0xe9,0xb3,0x9c,0xef,0xf2,0x5b,0x4f,0x93,0x8a,0x64,0x4c, +0xc8,0xd7,0xa1,0xaf,0x8c,0x7e,0x84,0x82,0x3c,0x0c,0x66,0xcf, +0x5e,0xfa,0x84,0xc0,0x4a,0xba,0xa9,0xf1,0xca,0x94,0xac,0xaf, +0x9b,0x1a,0xaf,0x7c,0x42,0xc0,0x77,0xf8,0x34,0x4f,0x8c,0x35, +0x02,0x0e,0xe1,0x47,0x3c,0x31,0xd6,0x08,0xac,0xa7,0x9b,0xf2, +0xc4,0x58,0x63,0x08,0x79,0x62,0xac,0xe1,0xe3,0x9e,0x95,0x68, +0x62,0x50,0x05,0xaf,0x98,0x0a,0x64,0xd4,0xbb,0xe2,0x05,0xec, +0x47,0xb3,0x81,0xb2,0xd6,0x73,0xd6,0x42,0xaa,0x73,0xa1,0x4c, +0x08,0x15,0x7a,0x18,0x44,0x90,0x4b,0x3b,0xea,0x02,0x71,0x71, +0xc9,0x6b,0x87,0x63,0x67,0x30,0x42,0xd8,0x02,0x72,0x69,0x35, +0xf4,0x24,0xf2,0x63,0xb2,0xec,0x4e,0x3e,0xc4,0xf2,0x26,0xcd, +0x14,0x2f,0xc6,0xd7,0x52,0x07,0x22,0x2c,0xfa,0x5d,0xd1,0x0b, +0xcb,0xd1,0x60,0xf5,0x2b,0xcb,0xef,0xe1,0x79,0x19,0xb5,0x85, +0x77,0x49,0x9b,0xd2,0xc4,0x60,0x55,0x7c,0x74,0x03,0xe3,0x53, +0x76,0x92,0xb7,0xa0,0x0e,0xdb,0x54,0xc0,0xed,0x20,0x84,0xc5, +0x99,0xfe,0x4a,0x30,0xff,0x53,0x77,0x8d,0xf4,0x76,0xd7,0x93, +0xe4,0xb7,0x5e,0x80,0x09,0x78,0xa8,0x23,0xf5,0x99,0x2f,0xce, +0xc2,0x49,0xdc,0x5d,0xfd,0x31,0x8e,0xdc,0x8d,0x1a,0x0f,0x9b, +0xed,0x0b,0xb0,0x52,0x26,0xa4,0xd1,0x0c,0x84,0x59,0xd5,0x19, +0xef,0x6b,0x08,0x0e,0x50,0x31,0x5c,0xf4,0xa9,0xfd,0x07,0x15, +0xc5,0x77,0x15,0x30,0xab,0xa6,0xa6,0xb0,0x1a,0xbb,0xe1,0x7b, +0x30,0x55,0xb8,0x3b,0x0b,0x58,0xe9,0xbe,0x40,0xb9,0xba,0x34, +0xff,0x74,0xb6,0xdd,0x9d,0x26,0xc8,0xd4,0xad,0x78,0x46,0xc0, +0x0b,0x0d,0x9f,0xe2,0x9f,0xc5,0x82,0x3d,0x9d,0x8b,0xe6,0x90, +0x97,0x69,0x0c,0x58,0x2c,0x27,0x94,0x72,0x7e,0x2f,0xc6,0x55, +0x1f,0x9f,0x87,0xe3,0xc5,0x68,0x22,0x88,0xe6,0xec,0x1d,0x39, +0xdb,0x59,0xb3,0x5d,0xf6,0x79,0x58,0x21,0x93,0x12,0x44,0x75, +0x3d,0x01,0x07,0xc2,0xac,0x87,0xb4,0x2b,0x33,0x77,0xe7,0x5e, +0x17,0x76,0xc2,0xcd,0xee,0xe6,0x02,0xaf,0x91,0x86,0x3a,0x83, +0x34,0x4c,0x31,0x7a,0x8f,0xc0,0x37,0xa1,0x79,0x11,0xbd,0x65, +0xc4,0x4d,0xa1,0xc6,0xc1,0x6f,0xf6,0xcf,0xb0,0xe2,0x6b,0xfd, +0xca,0x1f,0xea,0x69,0x78,0x44,0xef,0x7a,0x58,0x3d,0xfb,0xa0, +0x1e,0x87,0x8f,0xc2,0x0b,0x0d,0xb4,0xab,0x73,0xee,0xce,0x1d, +0xbc,0x55,0x1c,0x8c,0xdf,0x15,0xa8,0x20,0x65,0x3b,0x21,0xcb, +0x2d,0x13,0xf0,0xf0,0x2e,0x5d,0xd2,0x35,0xe7,0x8a,0x2f,0xfc, +0x01,0x83,0xf4,0x83,0x9d,0xe0,0x52,0x15,0xfc,0x13,0x07,0x41, +0xf3,0x6a,0x96,0x8c,0x09,0x24,0x92,0x53,0x44,0xb2,0x93,0x49, +0x2e,0x31,0x49,0x5f,0xfd,0x60,0x36,0x5c,0x4a,0x21,0x92,0x7e, +0x86,0xc4,0xee,0x49,0x24,0x14,0xee,0x3d,0xbc,0x43,0x3f,0x70, +0x11,0x2e,0x42,0x1f,0x5d,0x3b,0x1b,0xae,0xa6,0xd0,0x02,0xac, +0x37,0x34,0x97,0x61,0x53,0x84,0x7b,0x93,0x80,0x47,0xbe,0xd1, +0x0f,0x9c,0xa7,0xc2,0x47,0x74,0xed,0x2e,0x70,0xb5,0x36,0x15, +0x3e,0x42,0x85,0xa1,0x48,0x63,0xa3,0x3b,0x5f,0xd9,0x35,0x40, +0x46,0xd7,0x15,0x78,0x0e,0xeb,0xcb,0x40,0x52,0xef,0xfb,0x7b, +0x31,0x44,0x74,0xbd,0x4f,0xa1,0x7d,0xfc,0x7e,0x85,0xcd,0xee, +0xa3,0x47,0x58,0x85,0xfb,0x14,0xda,0xef,0xde,0xa7,0x30,0xbc, +0xdd,0xfd,0x9a,0xf7,0x01,0xf5,0x4c,0xce,0x3d,0x7b,0xe6,0x55, +0x2a,0x3d,0x76,0xaf,0x52,0x3f,0x4b,0xbc,0x05,0xd5,0x62,0x29, +0xba,0x5a,0x28,0x03,0x42,0x68,0x3d,0xe6,0x7f,0x4f,0xfd,0x9a, +0x0a,0x35,0x51,0xe8,0x2f,0x4e,0xd0,0x40,0x88,0x7a,0x81,0x71, +0x7d,0xeb,0xca,0xc0,0x71,0x34,0xaf,0xc8,0x48,0x5e,0xc4,0x2f, +0x64,0xa0,0x1f,0xd5,0x73,0xf4,0x5e,0xf5,0x44,0xbe,0x71,0x3f, +0xd9,0xe1,0x97,0x84,0x94,0x2f,0x0a,0x68,0xb2,0x13,0x73,0x2e, +0xc2,0xd7,0xd0,0x4f,0x26,0xfd,0x29,0xe8,0xbd,0x57,0x4b,0x76, +0xa9,0x60,0x3e,0x9e,0x54,0xcf,0x56,0xaf,0xe1,0xd0,0x13,0xb0, +0x4e,0xff,0x4e,0x0e,0xa2,0xdc,0xdb,0x44,0xba,0x0b,0x73,0x2e, +0x10,0x69,0x5f,0x2d,0xb2,0x61,0x47,0x0a,0x7e,0x8d,0x7d,0xa1, +0x5a,0x15,0xd7,0x0b,0xd2,0xd5,0x52,0xcc,0xd8,0x99,0x3d,0xa5, +0xc5,0xf4,0xa6,0x33,0xa3,0x6a,0x61,0x67,0x1b,0x86,0xe2,0x30, +0x19,0x7c,0x43,0x64,0xda,0x30,0x88,0x52,0x21,0xdd,0xa8,0xaa, +0x7d,0x4e,0x55,0xcc,0xdf,0xcb,0xf0,0xd7,0x20,0xfe,0xde,0x50, +0xad,0x9a,0x74,0xf5,0xe7,0x7b,0xd6,0xa6,0xd8,0x93,0x16,0x4d, +0x7a,0x69,0x92,0x0c,0x7e,0x54,0x7c,0x1e,0xbd,0xa6,0xe5,0x78, +0x57,0x8d,0x81,0x8f,0x63,0x44,0xc5,0xf2,0xdb,0x7b,0x7e,0xb7, +0x7d,0xdb,0xd6,0xf5,0x5b,0xa3,0x16,0xce,0x5f,0xf8,0xe2,0xc2, +0x99,0x64,0xdb,0xfc,0x23,0xb7,0x7f,0xca,0x67,0xd9,0x49,0xfa, +0xd3,0x38,0xf1,0x30,0xf9,0xce,0xcf,0xf9,0xaa,0x40,0x72,0x4e, +0x4d,0x76,0xe0,0x51,0xd7,0x9c,0x0b,0xbe,0x54,0x47,0x0f,0x2d, +0x3a,0xc3,0xce,0xea,0x54,0x47,0x0f,0xa8,0x5a,0xdd,0x92,0x61, +0x73,0x44,0x5e,0x77,0x71,0xc6,0x76,0xb4,0xf4,0x3b,0x0f,0x4d, +0xbe,0xc5,0xa3,0x67,0xe1,0x1b,0xe8,0xac,0x45,0x17,0xd8,0x55, +0x0f,0xbf,0xc5,0x2e,0x50,0x4d,0x86,0xf9,0x0b,0x19,0xd8,0x84, +0x6f,0x6e,0x6b,0xb2,0x56,0xfc,0xe2,0x2e,0x29,0x64,0x04,0x29, +0xef,0x2a,0x21,0x38,0x69,0x57,0x2f,0x48,0x86,0x4f,0x16,0xba, +0xbf,0x49,0x85,0x55,0xa6,0x4c,0x32,0xd3,0x47,0xf7,0xdb,0xbf, +0xdc,0x43,0xa8,0x1d,0x9d,0x4f,0x1c,0x5e,0x31,0x3f,0x15,0xfa, +0x99,0xa0,0x10,0xb3,0x0c,0x0d,0xa1,0x17,0x21,0x08,0x17,0xe4, +0xa8,0x53,0x0c,0x18,0x36,0x6c,0xad,0xf8,0x53,0x96,0x79,0x55, +0xe4,0xcd,0xe4,0x4b,0x30,0x7f,0xe2,0xe3,0xe2,0x2b,0x60,0x93, +0xf4,0x19,0xc7,0x87,0xd8,0x1b,0x58,0x41,0xcc,0x72,0x58,0xc0, +0x14,0x19,0xf2,0x82,0x90,0x51,0x14,0x0c,0x8f,0xc7,0xd6,0xb6, +0x6e,0xac,0x46,0x0a,0xb5,0x5c,0xfa,0x37,0x27,0xeb,0x75,0x59, +0x35,0xa6,0xce,0x90,0xfb,0xef,0xdf,0x19,0xbf,0xd0,0x0b,0xf9, +0x4e,0x70,0x4d,0xb2,0x2c,0x8d,0xc0,0x88,0xc1,0x14,0xca,0xcd, +0x90,0x41,0xbf,0x88,0xf7,0x64,0x70,0xaa,0x48,0xef,0xd0,0x03, +0x9f,0xce,0x78,0xb7,0x4b,0x24,0x44,0x7f,0xfa,0xf3,0x7b,0xdb, +0xdf,0x7f,0x6d,0x81,0x0c,0x69,0x2d,0xde,0xfd,0xd6,0x37,0x48, +0x5a,0x27,0x9c,0x9e,0x48,0x21,0xed,0xd5,0x3a,0x01,0x93,0x15, +0x1a,0x45,0x70,0x3d,0xd6,0xb2,0xd5,0x9c,0x06,0xb2,0x4c,0x57, +0x71,0x1c,0xbe,0xd2,0x27,0x5c,0x41,0x4e,0x43,0xdd,0x17,0xf9, +0xa6,0x5a,0x7f,0xfb,0x8c,0x9a,0xbc,0x5b,0x4f,0xfe,0x45,0xcd, +0xd9,0xa3,0x4f,0xd2,0xc8,0x2d,0xd3,0xc1,0xd4,0x4a,0xc1,0x52, +0xad,0xbc,0xb3,0x02,0x27,0xdb,0xeb,0x20,0xba,0xd9,0xc2,0xb1, +0x18,0xef,0x8b,0x99,0xd6,0x58,0x88,0x6f,0x36,0x7d,0x1d,0x46, +0xcb,0x84,0x3c,0x51,0x50,0x23,0x1f,0xd5,0x23,0x63,0xf9,0xd8, +0x2e,0xed,0x73,0x05,0x2e,0x91,0x35,0xab,0xdb,0x09,0xae,0x55, +0xc1,0x4b,0xc6,0x9a,0xb9,0x54,0x33,0xbe,0xee,0x82,0x4c,0xcc, +0x0f,0x7c,0x1d,0xc2,0xee,0x93,0x16,0x56,0xf9,0x67,0x10,0xf5, +0x65,0x52,0x2b,0x41,0x96,0xed,0x12,0x0d,0xd9,0x7a,0xd9,0x70, +0x3d,0x05,0x2f,0xd3,0x08,0x4f,0xad,0x66,0xbd,0xd0,0xb0,0xfe, +0x8b,0x0d,0x62,0xe6,0x67,0x7a,0xae,0x89,0x4b,0x38,0x33,0x2f, +0x4e,0xd0,0x92,0xa7,0xea,0xf5,0x41,0xe2,0x57,0x78,0xec,0x1b, +0x6d,0xb9,0xe6,0x9c,0xf7,0x85,0xcb,0x34,0x5f,0xea,0x75,0x81, +0x1b,0xb5,0xf1,0x0a,0xcd,0x97,0xd4,0x5a,0x96,0x0c,0x7a,0xc7, +0xe0,0xa7,0xe1,0x03,0x98,0x20,0xad,0x92,0x42,0x05,0x09,0x4f, +0x49,0xf1,0x90,0xf5,0x02,0xdf,0x7d,0x11,0x06,0x5b,0x8b,0x66, +0xc4,0x53,0xc6,0xdb,0x45,0x32,0x7e,0xa0,0x99,0x32,0x4d,0xb8, +0x27,0xe4,0x3f,0x5f,0xc1,0x57,0xa1,0x7d,0x91,0x67,0x1d,0x47, +0x0c,0x6b,0x8a,0x64,0x60,0x15,0xac,0x0a,0x43,0xf8,0xca,0x9d, +0xaa,0xe7,0xf3,0xfe,0xc9,0xcf,0x6d,0x80,0x89,0x90,0xc2,0x0d, +0xdc,0xc6,0x0d,0xbc,0x26,0x03,0x97,0x88,0x1b,0x38,0x3d,0xaf, +0x04,0x8d,0xd9,0xba,0xa2,0x39,0xbe,0x08,0xb4,0x92,0x74,0x3d, +0x91,0x4f,0x3d,0x1b,0x63,0x61,0xb6,0x29,0xd2,0xcd,0x92,0xe0, +0xc7,0xa2,0xd2,0xaf,0xeb,0x60,0x5b,0xba,0x16,0x89,0x78,0xa1, +0xde,0xdb,0xcb,0x28,0x20,0x75,0xf9,0xaa,0x88,0xba,0xb0,0xa0, +0x28,0x3f,0xbe,0x8a,0xf1,0x30,0x49,0xe4,0x96,0x86,0x75,0xf6, +0x75,0x10,0x52,0x54,0x10,0x30,0x42,0xef,0xcd,0x54,0x93,0xaa, +0x90,0x2f,0x7b,0xe2,0x72,0x32,0x8e,0xa9,0x22,0xf4,0xaa,0xeb, +0x36,0x8c,0x4f,0xc6,0xf1,0x16,0xf6,0xc2,0xde,0xe4,0x8d,0x89, +0xfc,0x23,0xfb,0x32,0x91,0x93,0x37,0xbe,0x5c,0x15,0xc7,0x18, +0x6f,0xa7,0x57,0x5d,0x26,0xaa,0xaa,0x44,0x05,0xa7,0x70,0x13, +0x79,0x66,0x4f,0x0a,0x2d,0x52,0xc9,0xc3,0x5d,0x71,0x3f,0x2b, +0x68,0xb5,0xf7,0x19,0x39,0xe6,0x39,0x02,0xfc,0x9f,0x11,0x97, +0x57,0x08,0x48,0xc7,0x40,0x72,0xcb,0x05,0xcf,0x15,0x74,0x03, +0xf2,0xc9,0x05,0x8f,0xe8,0xa2,0xe7,0xdf,0x8b,0x90,0x23,0x4e, +0x27,0x7f,0x5c,0xf8,0x7c,0x16,0xbf,0x82,0xe9,0x45,0xe8,0x4b, +0x13,0xfd,0xd9,0xdb,0x9e,0xb7,0x17,0xa1,0x7f,0x8c,0x82,0xe5, +0xed,0x02,0xbf,0xb4,0xa7,0x5e,0x84,0x7e,0xd0,0x1d,0x37,0xea, +0x6f,0xa9,0xa9,0x1b,0xad,0xab,0x47,0x17,0x2c,0xdb,0x45,0x81, +0xab,0x27,0x91,0x71,0xdc,0x42,0x3d,0xbd,0x8a,0x6b,0xfd,0x2b, +0xad,0x9c,0xc9,0x81,0xff,0x25,0x40,0x90,0x03,0xbf,0xac,0x1b, +0x0a,0xd8,0x85,0xab,0xc8,0x7b,0x17,0x50,0x49,0xfb,0xaa,0xc8, +0x15,0x70,0xce,0x3e,0x07,0xfe,0x77,0x3a,0xef,0xcb,0x75,0x70, +0xac,0xe3,0xbb,0x5f,0x3f,0x67,0xc3,0xc4,0x3a,0x38,0x91,0xd6, +0x8c,0x81,0xe4,0xc4,0x8b,0xd6,0x82,0xcd,0xb1,0xa7,0xb4,0x0a, +0x5a,0x2b,0x63,0x02,0x8a,0x88,0x8f,0x2c,0xd2,0xea,0xd1,0x18, +0x64,0x77,0x82,0x4d,0xbb,0x5c,0xba,0x3f,0xa6,0x7b,0xfe,0x16, +0xb9,0xe5,0xd5,0xef,0x36,0xbd,0xa6,0x27,0xd5,0x4f,0xe6,0xc5, +0x3d,0x61,0x5e,0x9c,0x05,0xbd,0x75,0x7f,0x59,0xae,0x0d,0x17, +0x5f,0x94,0x71,0x61,0xb4,0x8a,0xd5,0x31,0x32,0x22,0x49,0xc0, +0x3e,0xa1,0x3b,0xc9,0xf0,0x49,0xc2,0x13,0xcc,0xc7,0xc9,0xfe, +0xb5,0x3b,0x2a,0x57,0x85,0xe3,0xff,0x2a,0xd7,0x6e,0x3e,0xbc, +0x15,0x49,0xaf,0x83,0x0a,0xc8,0xbf,0xd4,0x92,0x91,0xaf,0x16, +0x24,0xcb,0x6e,0xc9,0x27,0x97,0x61,0x4b,0x0b,0x73,0xdf,0x2d, +0xc8,0xb5,0x8f,0x15,0x24,0x43,0xaf,0x72,0x9d,0xd7,0x59,0xa5, +0x81,0xea,0x34,0x07,0x44,0x16,0xd5,0x1d,0x2e,0xc3,0x5b,0x8b, +0xbc,0x17,0x58,0x8d,0x04,0x19,0x96,0x62,0xd4,0xc8,0x6e,0x26, +0xaa,0xe3,0xf2,0x8e,0xb0,0xda,0x35,0x33,0xad,0xc3,0xe3,0x38, +0x2e,0x5d,0xca,0x27,0xc5,0xfa,0xc5,0x1b,0xe6,0x6e,0x8d,0x82, +0xc5,0xbb,0xf1,0x9c,0x70,0xf7,0xa5,0x25,0x82,0xfa,0xa1,0x58, +0x8f,0x5a,0x54,0x49,0x9e,0x9d,0xad,0x5c,0x4d,0x93,0x1e,0x86, +0x0d,0xdf,0x24,0x9d,0x52,0xae,0x9d,0x2e,0x1d,0xac,0xfd,0xf5, +0x82,0x02,0xc5,0xe4,0x98,0xa2,0xad,0x6b,0x9e,0x98,0x0d,0x9b, +0x76,0x26,0x9e,0xe0,0x26,0xba,0x47,0xe2,0x5e,0xea,0x33,0x19, +0xff,0xae,0xc0,0x9f,0x30,0xc5,0x26,0xab,0x92,0x2d,0x7d,0x76, +0x0b,0xc8,0x96,0x21,0x4a,0xe8,0xad,0x32,0xf2,0x88,0x90,0x09, +0xb5,0xf8,0x12,0x95,0x3c,0x2e,0xec,0xa4,0xda,0x7e,0xab,0x4b, +0xfd,0x44,0x3e,0xb5,0x93,0x21,0xd8,0x2c,0xc3,0xe3,0x84,0xb6, +0x44,0xf7,0x13,0xea,0x62,0x73,0xfd,0xbc,0x8b,0xe8,0x6e,0xa9, +0xd9,0x14,0x6b,0xdb,0xc7,0xa0,0xbc,0x5b,0x08,0x95,0x82,0xfb, +0xa4,0x4d,0x93,0x33,0xe1,0x41,0xbe,0x3f,0xe6,0x57,0x9d,0x27, +0xf4,0xab,0x32,0x74,0xb3,0x50,0x65,0xf9,0x2c,0x63,0x79,0x7e, +0x9e,0xe5,0x29,0x23,0x46,0xe9,0x3a,0xf6,0x84,0xd3,0x30,0x1a, +0xda,0xe1,0xa7,0x5d,0xe0,0xa9,0xa6,0x38,0x1a,0xcb,0x65,0x8a, +0x1d,0xbe,0xcf,0xb6,0x4d,0x99,0x19,0x17,0x03,0x4b,0xa1,0x9f, +0x0d,0x5d,0x71,0xf9,0x61,0x38,0xca,0x5f,0x04,0x14,0x65,0x96, +0xe1,0xbf,0x8b,0xe2,0xcf,0xb1,0x42,0xd7,0xe1,0xca,0xce,0x39, +0xcf,0xa1,0xd4,0x82,0xf8,0xb5,0x94,0xa1,0x42,0x6c,0xb2,0x82, +0xad,0xa5,0xbf,0x10,0xd0,0x4a,0x8a,0xf2,0x34,0xc4,0x98,0xfc, +0x58,0x71,0xf2,0xb0,0xb6,0xa4,0x6c,0x75,0xce,0x38,0xcb,0x19, +0xb3,0x65,0xe8,0x13,0xdc,0xc0,0x7e,0x27,0xd4,0xb9,0xa2,0x0d, +0x5c,0x29,0xc3,0xca,0xdf,0xad,0xe1,0xef,0xc8,0xf0,0xe3,0x64, +0x4a,0x06,0xb1,0x80,0xdf,0xb9,0xbe,0x36,0xa6,0xbe,0xd6,0xa6, +0xbe,0x54,0xfd,0x92,0x0c,0xaf,0x40,0xea,0xac,0xe3,0xde,0x4e, +0x36,0xf4,0xd4,0x51,0x31,0xd4,0x51,0xe9,0x38,0x4e,0x06,0x75, +0x2a,0xa6,0x0a,0x75,0xcb,0x02,0x5d,0x5b,0x06,0x46,0xdd,0xb5, +0x1e,0x2f,0x5f,0x43,0xe2,0x2b,0x43,0x53,0x59,0x34,0x5b,0xf8, +0x14,0x86,0xfa,0x62,0x3b,0xf2,0x21,0xa1,0xcd,0xa7,0xaf,0x25, +0xe7,0xe4,0x33,0xf3,0xbe,0x8a,0x04,0xec,0x17,0x7f,0xf0,0x05, +0xdb,0xc3,0x68,0x41,0x4f,0xb6,0x21,0x0d,0xae,0xda,0xf8,0x39, +0xb6,0x51,0xe1,0x5f,0xe3,0xf7,0xa7,0xe0,0x0b,0x68,0xab,0x7d, +0x1f,0x86,0xaf,0x2c,0xac,0xa6,0x57,0xc9,0x00,0x72,0xf5,0xb1, +0x4f,0x30,0xd1,0x05,0x26,0x6a,0xad,0xc2,0xbe,0xc6,0x43,0x27, +0x89,0xa8,0x95,0xf6,0x7d,0xc4,0x21,0x5a,0x26,0x05,0xdf,0xf9, +0x37,0x82,0x6f,0x0b,0xfc,0x53,0x06,0x5e,0x16,0x7a,0xb1,0x14, +0xfc,0x01,0xc0,0x28,0x81,0xcd,0xe0,0x94,0x8d,0x5f,0x62,0x53, +0x15,0xbe,0x1d,0x8f,0x58,0x73,0x8e,0xfa,0xc2,0x76,0x68,0xa2, +0x7d,0xbb,0xc2,0xb7,0x16,0xd6,0xd0,0x33,0xa5,0x68,0xc1,0x77, +0xec,0x5d,0x73,0xe0,0xd2,0x1e,0x83,0x7a,0x7d,0x8e,0xa8,0x9f, +0x65,0xb9,0x9d,0x42,0x2f,0x97,0x01,0xed,0x68,0xf9,0x22,0x74, +0x7d,0x3d,0x4c,0x5a,0x3d,0x05,0x51,0x8f,0x93,0xf6,0xe3,0x77, +0x64,0x85,0xff,0x76,0x67,0x56,0x1b,0x01,0x33,0x9c,0x64,0xe8, +0xe1,0x82,0x64,0xf8,0xd1,0x82,0x64,0x58,0x11,0x82,0x11,0x5c, +0xff,0x39,0x53,0xbf,0x94,0x35,0x04,0xa6,0x50,0xff,0x88,0xd1, +0xa4,0xfc,0xc8,0xa2,0xcd,0xb1,0x4b,0x08,0x9d,0x26,0xa0,0x84, +0xfd,0xb8,0x41,0x74,0xfb,0x50,0x46,0x3e,0x23,0xf4,0x64,0x19, +0x2e,0xf8,0x2b,0xde,0x3f,0x72,0xd4,0x1f,0x2e,0xd2,0x60,0xba, +0x8c,0xf8,0x55,0xcc,0xc3,0x67,0x28,0x26,0x48,0xb5,0xf4,0x92, +0x67,0x16,0x76,0x52,0x2f,0xaf,0xf1,0xad,0x71,0x1c,0xde,0xe1, +0xd0,0x80,0x6a,0xac,0x47,0x15,0x46,0x3e,0xc1,0x15,0xfe,0xc1, +0x15,0x5e,0x63,0xfa,0xe7,0x99,0xfe,0xda,0x4e,0x7d,0x8d,0x3f, +0x9e,0x1a,0x62,0xaf,0xa5,0xd7,0xb9,0xe0,0x29,0x0c,0xf1,0xc5, +0x8e,0xd6,0x53,0x10,0xd2,0x6c,0x06,0xbd,0x4e,0x5f,0x4c,0xee, +0x9c,0x5b,0x72,0x87,0x15,0x74,0x37,0x15,0xc2,0x6e,0xf1,0x6d, +0x46,0x37,0x4e,0xaa,0x1b,0x2e,0x3c,0x85,0x0d,0x6d,0xbc,0x8a, +0x3d,0x54,0x87,0x9d,0xda,0xfa,0x0d,0xae,0x52,0x0c,0x54,0x3f, +0x1b,0x6e,0x5a,0xd8,0x48,0xaf,0x91,0x91,0x39,0xec,0x44,0x7f, +0x27,0x27,0x7a,0x4a,0x65,0x30,0x59,0x37,0x95,0xb9,0x43,0xbb, +0xce,0x13,0x59,0x57,0x5d,0xbf,0xb3,0x43,0xb6,0xd2,0x3e,0x7e, +0xd3,0x53,0x4a,0xa8,0x2c,0x5c,0x91,0xbb,0x8a,0xe9,0x8f,0x1b, +0x7a,0x8a,0x31,0x2e,0x09,0xfd,0x86,0x0c,0x73,0xf1,0x7d,0x77, +0x1b,0x4d,0x5e,0x84,0xa7,0xad,0xd0,0x73,0xed,0xe3,0xff,0xba, +0x1f,0xe4,0x6b,0x75,0xaa,0x4b,0x71,0xd2,0xdc,0x8b,0x7b,0x0a, +0x2b,0x73,0xc9,0x48,0xcf,0x3a,0x31,0x44,0xdb,0xf6,0x84,0xb3, +0x34,0xb5,0x3b,0xe3,0xa7,0xd9,0xf0,0x54,0x03,0x9a,0xda,0x89, +0x99,0x62,0x67,0xe1,0xd4,0x1e,0xce,0x53,0xfb,0xed,0xc3,0x70, +0x8e,0xa7,0x76,0x51,0x66,0x69,0x97,0xbc,0x5d,0x98,0x6a,0x8a, +0xc3,0x6c,0xac,0xf6,0x6f,0x1b,0x3c,0x0b,0xef,0xc1,0xd9,0x36, +0x96,0x1e,0x83,0xeb,0xed,0x69,0x67,0xa0,0x3f,0x74,0xc1,0x8d, +0xd9,0x30,0xa8,0x01,0xf6,0xc7,0x44,0x19,0x5b,0x45,0xcc,0x21, +0x32,0xb0,0xa0,0x9a,0x15,0xe4,0x1e,0x4a,0x22,0x94,0x74,0x44, +0x86,0xe6,0x88,0x62,0xcf,0xe1,0x17,0x8a,0x3f,0x87,0x3d,0x76, +0x5b,0xe3,0x88,0x65,0x3c,0xc5,0x62,0x5b,0x85,0x5e,0x28,0xc3, +0x12,0x9c,0xd4,0x02,0x50,0x7c,0xa7,0xdf,0xea,0xdc,0x5b,0xb4, +0xd4,0x6b,0xca,0xdc,0x75,0x98,0x94,0x26,0xf7,0x90,0x42,0x82, +0xc6,0x18,0x49,0xd6,0x76,0x66,0x53,0x59,0xe6,0x2b,0x51,0xf9, +0x38,0x7c,0xe0,0x2a,0xa6,0x08,0xb5,0x65,0x8e,0x8e,0xb0,0x7f, +0x54,0xe3,0x77,0xea,0xf1,0x3f,0xea,0xad,0x02,0xb7,0x70,0x48, +0xb2,0x87,0xcf,0xbc,0x79,0x05,0x3c,0x88,0x9d,0x55,0x5f,0xd1, +0x7c,0xc1,0x58,0x15,0x76,0x7b,0x35,0xa5,0xd9,0xa5,0xfc,0xc1, +0x2e,0xe5,0x09,0xaf,0x97,0x1b,0x51,0xe0,0xe5,0xfa,0x48,0xb9, +0x88,0x8b,0x2f,0xb1,0x97,0xa3,0xe7,0xce,0x32,0xa2,0xa9,0x71, +0x2f,0x99,0x32,0x6c,0x8f,0xf0,0x94,0x60,0x3f,0xf0,0x0f,0x79, +0xcc,0x31,0x58,0xfa,0x30,0x94,0x86,0x67,0x9b,0x66,0x76,0x81, +0xe1,0xdf,0xd6,0x39,0x05,0x63,0x76,0xf1,0x99,0xad,0x86,0xd2, +0x92,0x4c,0x45,0x8e,0xa3,0x86,0x2c,0xab,0x0a,0x92,0x11,0x57, +0x8b,0xf0,0x8e,0x6b,0x80,0x51,0x9d,0x61,0x70,0x0d,0xea,0xec, +0x14,0x19,0xd8,0x55,0x5c,0xa4,0xfe,0x7f,0xbc,0xf1,0xcf,0xf0, +0x74,0xf2,0xf7,0xd7,0x61,0xdc,0x2e,0x0b,0xeb,0xe2,0x3c,0x1b, +0x53,0xc0,0x6a,0x8d,0x7f,0xc1,0x56,0xf8,0xab,0x8d,0x85,0x9f, +0xf9,0xd0,0x73,0x30,0xa4,0xd0,0x2b,0xf6,0x4a,0x0c,0x5b,0x52, +0x28,0xfc,0x4a,0xbe,0x70,0x69,0x8f,0x2e,0x52,0xcf,0x33,0x0d, +0x30,0x99,0x62,0x12,0x57,0x9c,0xd8,0x64,0xdd,0x38,0xbe,0xe0, +0xd5,0xdd,0xb1,0xd3,0x76,0xf8,0x3e,0xd7,0xb9,0xd1,0xcc,0x1a, +0x31,0x53,0x2e,0xca,0xe0,0x5f,0x45,0x53,0x19,0x32,0x51,0x9c, +0x82,0x67,0x76,0x59,0xba,0x1e,0xee,0xa1,0x40,0x85,0x1a,0xae, +0xb8,0x5f,0x7a,0xaa,0xd3,0x7b,0xf4,0xfc,0xb3,0x6a,0x3c,0x0d, +0xff,0x3d,0x1d,0x9d,0x9e,0xa9,0x27,0xc3,0x3c,0x14,0x15,0x8e, +0x17,0xf0,0x64,0xf2,0xd1,0xeb,0x30,0x25,0xf9,0xd8,0x75,0x18, +0xbe,0x97,0xa1,0xd1,0x72,0xa4,0xf8,0xc0,0xdb,0x47,0x11,0x89, +0x22,0xb7,0x9c,0xca,0x93,0x89,0xdf,0x8a,0x22,0x1e,0x36,0xd7, +0xee,0x0c,0xfd,0xb1,0xe4,0xbe,0xd1,0xb0,0xee,0xad,0x7d,0x50, +0x12,0xfa,0xef,0x70,0xe1,0x3a,0x94,0x36,0xae,0x38,0x0d,0x2b, +0xac,0x04,0x3c,0x4a,0xde,0xd6,0xe1,0x97,0x89,0x05,0xad,0x8a, +0x49,0x75,0x6a,0x1b,0x5b,0x0d,0xcb,0x74,0x54,0x79,0xbb,0xb1, +0xcc,0x25,0x18,0x4b,0xf5,0x7d,0x8e,0x35,0x6d,0x7c,0xfa,0x12, +0x3c,0x6d,0xfd,0x84,0x8f,0xd9,0x4d,0x17,0x8c,0xc6,0x64,0x5f, +0xec,0x60,0x8d,0x86,0xe4,0xa6,0x33,0xd6,0x63,0x05,0x5f,0xac, +0x9a,0x9d,0x1b,0xb0,0x13,0xab,0x99,0xae,0xf2,0xf6,0x44,0x7f, +0x2c,0x71,0x68,0x24,0xbc,0xfe,0xce,0x41,0x28,0x01,0xfd,0x77, +0xe5,0x57,0xfe,0x03,0x55,0xae,0x1f,0xc7,0x79,0xe4,0xc2,0xa1, +0x81,0xf2,0xb3,0x69,0x30,0x24,0xa4,0x09,0x0b,0xc3,0xb4,0xaf, +0x94,0x1f,0x70,0x67,0xfc,0xc9,0x9d,0x31,0x54,0xfd,0xb4,0x57, +0x26,0xed,0x30,0x81,0x47,0x39,0x06,0x52,0xeb,0x86,0x1f,0x40, +0x27,0xa1,0xf2,0x04,0x0e,0xcc,0x7b,0x55,0xd0,0x04,0x35,0x9f, +0x57,0xec,0xa0,0x58,0x94,0x42,0x0c,0xf7,0x65,0x61,0x82,0x8a, +0xb1,0xfc,0x33,0x51,0x38,0x05,0x40,0xc5,0xf2,0xdc,0xa1,0xba, +0x39,0x05,0xa1,0xc5,0xe9,0xea,0x53,0x04,0x7e,0xfc,0x36,0xba, +0x08,0xa2,0x3b,0x7b,0x97,0xbc,0xed,0xb7,0xf1,0x9e,0x46,0xfb, +0xff,0x18,0x84,0x16,0xd7,0xb7,0x13,0x6e,0xa5,0x28,0x94,0x9a, +0x78,0x9e,0x9b,0x38,0x5c,0xfa,0x4d,0x33,0xed,0xab,0x28,0xc3, +0x86,0x17,0xa7,0x74,0xb7,0xc3,0x7e,0xb6,0x9a,0x5b,0x4f,0x26, +0xf4,0x16,0x58,0xe2,0x28,0xec,0xd2,0xc7,0x5d,0x41,0xb9,0xdd, +0xa0,0xb3,0x7d,0x52,0x9d,0x68,0x66,0xe9,0xbf,0x74,0xa2,0xad, +0xda,0xd3,0xea,0xca,0xe2,0x9f,0x8b,0x2e,0x16,0x2e,0xb0,0xac, +0xce,0xba,0xa4,0x8c,0x5e,0x9a,0xbf,0xae,0xba,0xa0,0x82,0xd9, +0x8f,0xf6,0x63,0xc3,0xea,0x73,0xc9,0x2c,0xad,0xea,0x66,0xc3, +0x35,0x0b,0xb2,0x11,0x6d,0x73,0x78,0x66,0x1a,0x0e,0xf3,0xec, +0xa1,0x75,0xd5,0x5c,0x5a,0x57,0x75,0x11,0xf8,0xa7,0xb2,0x6c, +0xbc,0xa2,0x86,0x08,0x0b,0x3a,0xa1,0xf2,0xec,0x12,0x3b,0x70, +0xb9,0xfb,0x33,0x5e,0x71,0x5d,0x00,0xe5,0xde,0x28,0xf0,0xbc, +0x14,0xfd,0x84,0x8c,0xec,0x41,0xab,0x49,0x8a,0x7f,0xd4,0xeb, +0xfb,0xc8,0x17,0x86,0x04,0x51,0xeb,0x83,0xf4,0x35,0xbe,0xfd, +0xbd,0x01,0x13,0x9d,0xfd,0x92,0x97,0x59,0x51,0xb4,0xcc,0xba, +0x2d,0x33,0x9e,0x32,0xdf,0xbe,0x2d,0xf3,0x07,0x1c,0x4c,0xcb, +0x2d,0x4f,0x33,0xae,0xe2,0x1f,0x6f,0xde,0x15,0x7c,0x9d,0x96, +0x5c,0xc5,0xf3,0x68,0xd9,0x15,0x45,0xcb,0xae,0x2c,0xce,0xbb, +0xe8,0xcd,0x6b,0x80,0x55,0x0a,0xd7,0x58,0x7f,0x2a,0xdf,0xe2, +0xba,0xe3,0x28,0x7c,0x44,0xc6,0x1d,0x17,0x70,0x02,0xab,0xdb, +0x93,0x97,0x4c,0x9a,0xf3,0xdc,0x64,0xf7,0x17,0x62,0xd5,0xfb, +0xfc,0x89,0xf3,0x3b,0xad,0xc7,0xba,0x12,0x07,0x3e,0x86,0x21, +0xe8,0x5b,0xfe,0x8b,0xde,0xfb,0x76,0x6e,0xfb,0x78,0xed,0xc7, +0x51,0x0b,0x5e,0x59,0xf8,0xe2,0x82,0x99,0x10,0x85,0x11,0x91, +0xdb,0xb7,0xf9,0xea,0xee,0x2b,0x6c,0xec,0x48,0x83,0xb7,0xa3, +0x15,0x44,0x55,0x1c,0x31,0xfd,0x19,0x41,0xfd,0x29,0xe3,0x4f, +0x52,0x1d,0xd9,0xba,0x94,0xdd,0x5b,0x38,0xfd,0xf7,0x33,0xad, +0x6a,0x5a,0xb0,0x1e,0x5f,0x18,0x3d,0x44,0x71,0x3d,0x9a,0xe3, +0x42,0x5a,0xec,0xe9,0xcb,0xa4,0xb9,0x8a,0xf1,0x6a,0x3e,0x1b, +0x93,0x68,0xbd,0x77,0x2f,0x0e,0xdd,0x0c,0x4b,0xd1,0x22,0x50, +0x46,0xfa,0x0b,0x98,0xa0,0x07,0xdb,0xb4,0xf0,0xd3,0x4b,0x79, +0x0d,0x48,0xfd,0x7c,0x4f,0x9e,0x36,0x14,0xb4,0x2c,0xb8,0xad, +0x1a,0x5a,0x16,0x56,0xa2,0x65,0x21,0x79,0xda,0x4d,0x66,0xe3, +0x2f,0xcd,0x6c,0xfc,0xdd,0x72,0x41,0x63,0x28,0x27,0x83,0x29, +0x48,0x2e,0x37,0x19,0x1f,0x8c,0xe1,0xcd,0xbc,0xfd,0xb0,0x40, +0x47,0x75,0x80,0x43,0xbc,0xfd,0xf7,0x94,0xd9,0xfe,0xab,0x26, +0xf4,0x6b,0xa7,0x2c,0x77,0x1a,0xef,0xa3,0x2e,0xbf,0x3b,0xcb, +0x3c,0x87,0xc5,0xb6,0x70,0x86,0xb3,0x1d,0xe2,0xf3,0xa4,0x20, +0x86,0x4d,0x32,0xb6,0x09,0x6f,0x87,0x1c,0x70,0x08,0xbe,0xe7, +0xed,0x90,0x0f,0xcc,0x76,0x08,0x39,0xaa,0x71,0x27,0x2d,0x77, +0x3a,0x2c,0x90,0xb2,0xa7,0x80,0x20,0xb3,0x07,0xa2,0x0f,0x08, +0x77,0x3a,0xf6,0x45,0xbe,0x2d,0xde,0xec,0x84,0x14,0xc9,0x68, +0x64,0xf6,0x43,0x0a,0x33,0x60,0xcf,0x3d,0x76,0x45,0x48,0xdb, +0xde,0xa7,0x8c,0x64,0xa6,0x3a,0x6d,0xf6,0x0a,0x8b,0xe5,0x61, +0x43,0xb3,0x65,0x52,0x3c,0xaf,0x91,0xd9,0x3b,0xf1,0xcc,0x26, +0xf1,0x30,0x8f,0x19,0x2b,0x3b,0x5b,0x26,0xd1,0x34,0xc0,0x1f, +0x32,0xfb,0x24,0x32,0xba,0xa7,0xe8,0x69,0x36,0x40,0x1c,0x4e, +0x7c,0xe4,0x5f,0x29,0x5f,0x17,0xb8,0xdd,0xec,0x84,0x70,0xe9, +0x10,0x44,0x77,0x14,0xe3,0xe5,0xe9,0x64,0x48,0xb3,0x75,0x75, +0x5a,0x1d,0xf9,0x95,0x11,0xb8,0x48,0xbf,0x68,0x40,0xf3,0x28, +0x37,0x95,0x73,0x63,0xb1,0x9a,0x80,0x35,0xb0,0xd4,0x82,0x27, +0xdd,0x81,0x9e,0x0e,0xe2,0x57,0x2e,0x19,0xe7,0x99,0x2f,0xe0, +0x4d,0xfd,0x11,0x37,0xa9,0x5c,0x6b,0xcf,0xe7,0xdc,0x9c,0x4a, +0xdc,0x1c,0x23,0xad,0x9e,0xb4,0x67,0x0a,0x27,0x45,0x74,0x5f, +0xe9,0xa1,0xf0,0x71,0xe1,0x23,0xb5,0xb1,0xaa,0x8d,0xfd,0xba, +0x40,0x3f,0x4b,0xaf,0xc2,0x8f,0xec,0x69,0xe0,0x0b,0x7d,0x60, +0x1c,0xe3,0x94,0xf4,0x47,0x1f,0xec,0x83,0xad,0xa4,0x7d,0x5e, +0xa8,0x56,0x4c,0xdf,0x98,0x15,0x88,0x53,0xd5,0xad,0xe6,0xfb, +0x6c,0x5c,0x06,0x6f,0xc3,0x32,0x6b,0xa2,0xfe,0xf2,0x62,0x01, +0x16,0x9f,0x6d,0xb0,0xf8,0x6c,0x1c,0x67,0xae,0x64,0x09,0xa5, +0x1e,0x06,0x1d,0xed,0x79,0x48,0xc0,0x2a,0x18,0x68,0x91,0x3f, +0x7b,0x65,0x82,0x50,0x7f,0xf1,0xd5,0x83,0x76,0x01,0x20,0x9f, +0x9d,0x0f,0xc8,0xd7,0x4a,0xa5,0x31,0x79,0x54,0x3e,0x39,0xa0, +0xfb,0x81,0xa9,0x4c,0x3e,0x8f,0xc8,0x0d,0x22,0x9f,0x9d,0x8f, +0xc8,0xd7,0x4a,0x95,0x53,0xbd,0x04,0x64,0x91,0x83,0x0f,0x7f, +0x5c,0xc8,0x80,0xbd,0xa2,0xb6,0x7b,0xc2,0x74,0x93,0x50,0x65, +0xf5,0xc6,0x69,0x02,0xc6,0x0b,0x15,0xa3,0x2f,0x4d,0xe1,0x44, +0x1d,0xf7,0x04,0xe9,0xdb,0x4d,0xc0,0x99,0x17,0x6c,0xf0,0x87, +0xde,0xdf,0x60,0x6f,0xf0,0x83,0xe1,0x3b,0xf1,0x5d,0x9d,0x04, +0x5f,0xed,0xa4,0xb8,0x74,0x3c,0x73,0x33,0xea,0x17,0xf9,0xab, +0xe1,0xba,0xbb,0xf4,0x3d,0xc1,0xb5,0x4e,0x66,0x25,0xf3,0x71, +0xf6,0x6c,0x83,0xb3,0xd7,0x4a,0x35,0xa2,0x6a,0x8f,0xea,0xf7, +0xfb,0x15,0xc0,0xeb,0xd9,0x0e,0xbc,0x9e,0xed,0xc0,0xeb,0xe9, +0xd0,0xec,0xbc,0x0f,0x05,0x5a,0x7a,0xce,0x7c,0x21,0x63,0x46, +0x88,0xf7,0xf5,0xa3,0x0e,0x94,0xde,0x0a,0x48,0xe2,0x9e,0x4b, +0xe2,0x57,0xb7,0x8e,0x5e,0x1d,0xbe,0xa6,0x97,0x16,0x43,0xd0, +0xf3,0x12,0x14,0x7d,0xe3,0x01,0x9c,0x5b,0xf1,0x6e,0x6f,0x9c, +0x41,0xf4,0x56,0x40,0xa8,0x0c,0xbd,0xc1,0x38,0x76,0x2b,0xa0, +0x12,0x8e,0x11,0x18,0xa0,0x97,0x7a,0xba,0x8b,0xfa,0xfc,0x1c, +0x4d,0x6f,0x15,0x33,0xdd,0xd3,0x53,0x8b,0x3c,0xf6,0x74,0x4f, +0xf7,0x3c,0x5d,0xf8,0x7c,0xd7,0xb1,0x52,0x58,0xfa,0x9a,0xfe, +0xeb,0x0f,0x2f,0x31,0x0f,0x9d,0x82,0x02,0x67,0xe8,0x14,0xd2, +0x9d,0xd6,0xb4,0x6e,0xee,0xd7,0xd9,0x19,0x3a,0x5b,0x65,0xd0, +0x1e,0xe1,0x1d,0x33,0x2d,0x79,0xcc,0x30,0x06,0x1f,0x11,0xde, +0x63,0xcc,0x14,0xa8,0x0e,0x2f,0x69,0xe5,0x40,0xf0,0xad,0x00, +0xc9,0xc4,0x89,0xd2,0x67,0x87,0x80,0xb5,0xd4,0xe0,0x9f,0xdd, +0xbe,0x9e,0x27,0x84,0x3b,0xd9,0xc8,0xd1,0x8d,0x44,0x9a,0xee, +0x76,0xd5,0x5b,0x3d,0x3d,0x61,0x8c,0x3b,0xc2,0x8b,0xab,0x47, +0x9c,0xb2,0xdc,0xf3,0xbc,0xaf,0x38,0x47,0x4f,0x2d,0xc2,0x90, +0xa9,0x7b,0x14,0x62,0xec,0xc9,0x82,0x8b,0xfe,0x24,0x46,0xe6, +0xc8,0x0a,0x16,0x6f,0x80,0xf7,0xe3,0x8b,0xfe,0x64,0x51,0x54, +0x3d,0x09,0xa5,0x5b,0x38,0x57,0xfd,0x49,0x3e,0x21,0x72,0xe7, +0x40,0x26,0xae,0x3e,0x7c,0xf5,0x9f,0x2c,0x44,0xd9,0xbb,0xc6, +0x37,0xff,0x49,0x0c,0x97,0xc1,0x63,0xf8,0x9a,0x40,0x0b,0xd3, +0x55,0x67,0xe9,0x9a,0x28,0x90,0x68,0xf8,0xea,0xbf,0x78,0x03, +0xad,0x77,0x0d,0x8e,0x33,0xd5,0x88,0x9c,0xdc,0x94,0x0c,0xac, +0x47,0x25,0x95,0x5b,0xb8,0x2d,0x43,0x7c,0x80,0x2b,0xa8,0xc6, +0x15,0xbc,0x47,0x15,0xa8,0xb0,0x87,0x6c,0x6c,0x44,0xe5,0x8d, +0x28,0x62,0xd2,0xd7,0x36,0xb3,0xfc,0x04,0xe6,0xcc,0x07,0xe5, +0x93,0x7c,0x95,0xdd,0x70,0xc3,0x59,0x7c,0xd2,0xa8,0xb0,0xb6, +0x7c,0x86,0x45,0x32,0x28,0x9f,0x0f,0x83,0xf2,0x49,0xbf,0x3f, +0x44,0x3e,0x22,0x9f,0xbc,0xd5,0x42,0xb7,0x37,0x4c,0x09,0x34, +0x8e,0x55,0x58,0x16,0x5f,0xd9,0x26,0x21,0xc8,0x95,0xa5,0xcb, +0xf2,0x44,0xa2,0x5a,0x6c,0xae,0x25,0xc2,0xb4,0xe2,0x39,0x43, +0xd9,0xc9,0xb4,0x82,0x3b,0x25,0xca,0x85,0x6f,0x3b,0x38,0x7d, +0x34,0x62,0xb6,0x30,0x4e,0x9f,0x0c,0x78,0x56,0x38,0x78,0x7c, +0x26,0x65,0x70,0xf7,0x38,0xe5,0xe0,0xeb,0x7d,0x2e,0x20,0xd1, +0xe0,0xeb,0x11,0xf9,0x39,0xbe,0xcd,0xef,0x7e,0x73,0x90,0x68, +0x7e,0x75,0xa0,0xf7,0x3e,0x17,0xc3,0x49,0x1b,0x9a,0x83,0xc5, +0x5e,0xc7,0x73,0x05,0xaf,0x63,0x09,0xbd,0x8e,0x4e,0x79,0x1f, +0x09,0xe7,0x25,0x44,0x51,0xe6,0xed,0xe0,0x7b,0xb2,0xe0,0x86, +0x40,0xe9,0x80,0xef,0xe9,0xd0,0x2e,0x6c,0x2e,0x5e,0xa2,0x88, +0x13,0x22,0x58,0x8a,0x17,0x7b,0xcf,0xdb,0xa9,0xf9,0xd8,0x7b, +0x5e,0x3e,0x6e,0x75,0x23,0xd3,0x3f,0x6d,0xf2,0xbb,0x12,0xd3, +0x0d,0xf4,0xde,0x35,0x3e,0x37,0x26,0x0b,0xa0,0xf7,0xa4,0xf7, +0x7a,0x40,0xa2,0xef,0xc8,0x2f,0x21,0x89,0x5f,0xc2,0x3a,0xf3, +0x12,0x5a,0xf2,0x55,0x80,0x12,0x62,0x5d,0x33,0x19,0x7a,0xef, +0x7f,0xf5,0x2b,0x44,0x30,0x16,0x5f,0x3e,0x55,0x4c,0x8e,0x5a, +0x9e,0x91,0xdf,0xee,0xf1,0x86,0xb8,0x7d,0x11,0xe2,0x34,0xbc, +0x39,0x83,0x69,0x63,0x98,0x96,0x81,0xf9,0x32,0x30,0x0c,0xa5, +0xfb,0x73,0xc1,0x84,0xad,0xc9,0xfc,0xa8,0xb0,0xd6,0xb6,0x97, +0x76,0x8a,0x81,0xf6,0xa3,0x11,0x20,0x7d,0xde,0xe2,0xa1,0x78, +0x45,0x10,0x4d,0x32,0x4e,0x27,0x9a,0x56,0xf9,0xef,0x1e,0x87, +0x16,0x45,0xfd,0x63,0x41,0xe0,0xf2,0x4a,0xf6,0xda,0x33,0xea, +0xb8,0xc7,0x4d,0x4f,0x1b,0xa4,0x3f,0x7a,0x53,0xef,0x32,0xd2, +0xdf,0xff,0x51,0x05,0x2d,0x0c,0x18,0xe0,0xff,0xd0,0x61,0x00, +0x5f,0x19,0x58,0x51,0xe0,0x60,0x6c,0xd3,0x0e,0xda,0x30,0x4c, +0xdf,0x3c,0x97,0xbb,0xa3,0xee,0x62,0xab,0x9a,0x2a,0x49,0xd7, +0xe4,0x8b,0x73,0x60,0x19,0x05,0xfe,0xcb,0xac,0x37,0x70,0xba, +0x67,0xad,0xd0,0x31,0x7c,0xd3,0x13,0xd3,0x5a,0x38,0x1c,0x26, +0xdb,0xba,0x9a,0x8e,0x55,0xd5,0x8c,0x85,0x59,0x4c,0x96,0x72, +0xb1,0x05,0x1b,0xdd,0x41,0x9e,0x2b,0x42,0x47,0xf3,0xc5,0xa4, +0x3e,0xff,0x09,0x18,0x65,0xeb,0x9a,0x3a,0x1a,0xeb,0xf2,0x34, +0x59,0x66,0x41,0x29,0xdd,0x4b,0xfa,0xd3,0xba,0x72,0x33,0xdf, +0x49,0x2c,0xeb,0x08,0xf5,0x0d,0x7e,0xc8,0x97,0x0f,0x7f,0x2a, +0xe0,0x90,0xfe,0xbb,0xaf,0x78,0x59,0xe0,0xa3,0x1e,0xb7,0x70, +0xfb,0xe0,0x43,0x32,0x3e,0x51,0x9c,0xd1,0xd3,0xa4,0x48,0xf0, +0x8e,0xdf,0xdc,0x68,0xb1,0x13,0xb7,0xd0,0xc8,0xfd,0x9a,0x46, +0x2e,0xb3,0x60,0x2b,0x32,0xae,0xfb,0x1d,0xee,0x72,0x7a,0x80, +0x0c,0x7b,0x49,0x60,0xae,0xa0,0x05,0x62,0x9b,0xf6,0xac,0xe0, +0x60,0x98,0xc8,0x95,0xc7,0x71,0xe5,0x6c,0xfd,0x5e,0xd0,0x5f, +0x76,0x12,0x32,0x96,0xb1,0x9a,0xf2,0xb3,0xb0,0xab,0x5e,0xe4, +0x79,0x2b,0xbf,0x56,0xe2,0x18,0xcd,0x1c,0x21,0xaa,0xa6,0xd5, +0x4c,0xc6,0x47,0x0a,0x0c,0x74,0x4f,0xf2,0xf8,0x11,0xcf,0x5f, +0x45,0x79,0x06,0xea,0xb9,0x7f,0x19,0xd4,0xc2,0x48,0xfc,0x40, +0x96,0x7b,0x4c,0x60,0x1c,0xfb,0x57,0x2f,0x6a,0x61,0x24,0x4c, +0xe0,0x3c,0x15,0xab,0x6f,0x14,0xa0,0x16,0x46,0xc2,0x00,0x1b, +0xca,0x60,0xf7,0xa3,0x6a,0x78,0x3a,0x0e,0xc4,0x32,0xd0,0x10, +0xff,0xd6,0x51,0xea,0x47,0x06,0x8b,0xec,0x6f,0xa9,0x92,0xda, +0x53,0x00,0x58,0x18,0x09,0x9d,0x98,0xb4,0xd5,0x51,0xd5,0x32, +0x1d,0xbb,0x10,0x69,0x55,0x22,0xb5,0x65,0x68,0x49,0xf2,0x0d, +0x44,0x0b,0x0f,0xeb,0x6c,0x06,0x30,0xdc,0x29,0xda,0xba,0x27, +0xa4,0x9a,0x44,0x43,0xc7,0x03,0xef,0x14,0xaa,0x9c,0xf1,0xc0, +0xe3,0x44,0xa3,0xff,0xe5,0x78,0xc7,0x31,0x13,0xc3,0x19,0x8e, +0x13,0x30,0xda,0x71,0xbc,0x5e,0x44,0xc3,0x48,0xe8,0x2f,0xcb, +0x75,0x13,0x3f,0xe8,0xf7,0xfa,0x19,0xd4,0xc2,0x48,0xdc,0x24, +0xcb,0x3d,0x4a,0x4b,0x18,0xc7,0xb3,0x0e,0xa3,0x1e,0xd1,0x33, +0x66,0xe6,0xc3,0x16,0x46,0xc2,0x40,0x56,0x36,0xfb,0xa8,0x6a, +0x23,0x83,0x52,0xc4,0x36,0xf6,0xba,0x34,0x98,0x42,0xb1,0x7d, +0x07,0x68,0x4f,0x91,0xb9,0xf9,0x13,0x65,0xc6,0x54,0x67,0xfd, +0x88,0xad,0x52,0x54,0xb2,0x4e,0xb1,0x4e,0xd0,0x98,0x5a,0x8a, +0x1b,0x70,0xa9,0xf5,0x36,0x4e,0xe5,0x31,0x15,0x7a,0x1b,0x8b, +0x85,0x4f,0xc0,0x4f,0xb6,0x4e,0xd1,0xc9,0x9a,0xc6,0xfd,0x06, +0x76,0xdb,0x2f,0xea,0x17,0xdf,0x35,0x83,0x2f,0x10,0xdb,0x67, +0x12,0x61,0x90,0xf9,0xc3,0x84,0x27,0x65,0xd0,0x26,0x01,0x9b, +0xdd,0x65,0xbc,0xa3,0xce,0xcf,0x21,0xf0,0x2f,0x20,0x38,0x68, +0x08,0xfc,0x8a,0x8e,0xbb,0x58,0x5a,0x83,0x7c,0x36,0x48,0xba, +0x76,0x0a,0xac,0xe5,0x9e,0xc1,0x90,0x96,0x31,0xf5,0x84,0xda, +0x89,0xef,0x5f,0x12,0xb9,0x34,0x64,0x8f,0xe9,0x7f,0xfa,0x32, +0xb6,0xe2,0x21,0x5a,0xac,0x75,0x97,0x09,0x81,0xc2,0xed,0x4a, +0x97,0xf1,0x09,0xe2,0x57,0x3d,0xf9,0x1e,0x83,0x91,0xb8,0x30, +0x95,0x24,0xed,0x37,0xfc,0x09,0x7a,0x60,0xfe,0x50,0x2c,0xed, +0x68,0x13,0x50,0xa0,0xcd,0x31,0x6e,0x57,0x22,0xb7,0x6b,0x3d, +0xb5,0x6b,0x8e,0xfe,0xca,0x96,0xbe,0xeb,0xb8,0xb2,0x77,0xa8, +0xb2,0xe9,0xcd,0xf2,0xdb,0x57,0xa6,0x80,0xe1,0x84,0x2c,0x37, +0x53,0x40,0x35,0x77,0x89,0x0b,0xdc,0xb5,0xc5,0x8a,0x31,0xc6, +0xa0,0x6a,0x7e,0xd6,0x8b,0x65,0xc6,0xc9,0x90,0xcf,0x1d,0xdf, +0x8d,0x5d,0xf4,0x62,0x1a,0xd3,0xa7,0xc4,0x3d,0x84,0x61,0x1f, +0xfd,0xf2,0x5f,0x02,0x5b,0x0b,0x2c,0x85,0xed,0xb3,0xa8,0xdc, +0xcf,0xfc,0xe1,0xf2,0xfd,0xdc,0x27,0xfd,0x74,0xcf,0xf7,0xc8, +0x70,0x2c,0x13,0x3a,0x4a,0x07,0xc8,0x98,0x73,0x34,0x2d,0x74, +0xea,0x04,0xef,0x29,0x1c,0x5a,0xc2,0x55,0xe0,0x3c,0x38,0xa5, +0xd7,0xac,0xe2,0xbc,0x19,0x26,0x2f,0xd4,0x86,0x70,0xbe,0xef, +0x75,0x38,0xdf,0xf7,0x1a,0xfe,0x33,0xde,0xd2,0x51,0xd8,0x9c, +0x11,0x25,0x06,0x58,0xd0,0xbd,0xa1,0x8d,0x16,0x86,0x83,0xe5, +0x82,0xcf,0xf4,0x56,0xf2,0x8c,0xc1,0x5f,0x91,0x68,0x28,0x49, +0x2c,0xc9,0x47,0x54,0xab,0x16,0x0c,0x21,0x75,0x98,0x38,0x6c, +0xb8,0x65,0xb5,0xd8,0x63,0xe3,0x20,0xb2,0x14,0x83,0x2c,0xe8, +0x46,0x56,0xaa,0x24,0xb1,0x95,0x74,0x41,0x90,0x0e,0xe1,0x41, +0x4f,0xa3,0x4f,0xba,0x6b,0xa6,0x3a,0xa9,0x6a,0xee,0x9a,0xd3, +0x4d,0x0a,0x4e,0xe8,0xbe,0x34,0xec,0x7b,0x0b,0xf8,0x51,0xbf, +0x31,0x85,0x13,0xb4,0x08,0xa9,0x79,0xff,0x09,0xd0,0xdb,0xf0, +0xf3,0x0c,0xe8,0xcd,0x60,0xb4,0xa1,0x3c,0x03,0xa8,0x2d,0x13, +0x9d,0xb6,0xc8,0x98,0xf3,0x62,0x81,0x1e,0xc8,0xa0,0xce,0xd7, +0x05,0x1c,0xd0,0xab,0x26,0x53,0xea,0x9a,0x80,0x66,0x7a,0xe3, +0x22,0x91,0x77,0x91,0x94,0xc7,0xff,0x64,0xcc,0xaf,0x64,0x7e, +0x74,0xda,0x7c,0xe6,0x1b,0x66,0xf8,0x82,0xa9,0x41,0x09,0xe6, +0xe2,0x49,0x52,0xfb,0x04,0x35,0xc8,0x55,0xd0,0xa0,0x79,0xa6, +0x41,0xa9,0x36,0x96,0xa0,0x06,0x95,0x70,0x8d,0xd4,0x41,0x1d, +0xf8,0xb8,0xca,0x39,0xfb,0x0a,0xcc,0x81,0xa3,0xfa,0x30,0x1e, +0x85,0x39,0x55,0xb4,0x95,0x22,0xf4,0x7f,0x00,0xb6,0x6a,0x48, +0x66,0xa9,0xa1,0x15,0xa7,0x4b,0x33,0x48,0x55,0xe0,0x43,0x3c, +0xb3,0xc7,0x7a,0x61,0xf7,0x2e,0x12,0xc3,0x36,0x62,0xd8,0x06, +0x73,0x53,0x18,0x70,0x8f,0x18,0x7e,0x60,0x86,0x66,0xc4,0x00, +0x6f,0xe2,0x56,0x0a,0xda,0x6a,0x09,0xd5,0x4d,0x3f,0x78,0x9d, +0x13,0x63,0xf5,0xad,0xef,0x4d,0xc6,0x36,0xfc,0x88,0x61,0x16, +0x6a,0x09,0xf8,0x84,0x42,0x88,0x35,0x8e,0xd4,0x66,0x7a,0x80, +0x17,0x86,0xef,0x52,0x81,0x1a,0x73,0xab,0x2d,0x65,0x99,0xff, +0xe4,0x2b,0xa1,0x2a,0xea,0xc7,0x0d,0x0c,0x55,0x6d,0x01,0x53, +0xf4,0x13,0x9e,0x6c,0x93,0x6c,0xa2,0x7d,0x18,0x58,0xaa,0x96, +0x58,0xa8,0x17,0x18,0x60,0xa9,0xda,0x64,0x2d,0x70,0x97,0xb4, +0xb6,0x79,0xb1,0xfb,0x64,0xf4,0x54,0xf1,0x9c,0xf6,0x2f,0x40, +0xe9,0xe3,0x67,0xb5,0x48,0xf7,0xf6,0x22,0xf2,0xfd,0x0d,0xe9, +0xf0,0x8d,0x6e,0x88,0xdf,0x40,0x1a,0x96,0x60,0xfc,0xb9,0x2c, +0x15,0x62,0xc3,0x7a,0x6c,0x8b,0xeb,0x2d,0xd5,0x5f,0x8f,0x28, +0xc4,0xe5,0x93,0xd1,0x6f,0xb3,0xf6,0xa7,0xa0,0x89,0x90,0xa5, +0x3f,0x13,0xfb,0xf4,0x35,0x83,0xb7,0xf7,0x99,0xf8,0x54,0x5f, +0x35,0x70,0x7b,0x9f,0x09,0xb5,0x42,0xa7,0x30,0xde,0xde,0x7c, +0xa1,0xe6,0xea,0xc1,0x0c,0xb8,0x37,0x5f,0x7c,0xa6,0xaf,0xca, +0xd2,0x67,0xc4,0xa5,0x23,0xaa,0x12,0x0d,0x83,0x1b,0xb2,0xc2, +0xdf,0x9c,0xcb,0x3c,0x45,0xa0,0xf7,0x36,0x0a,0xf5,0x3d,0x9e, +0xb3,0xbf,0xc1,0xbe,0x0f,0xbb,0x30,0x07,0xdf,0x90,0x31,0xad, +0xc4,0xf3,0x56,0xdf,0x71,0xe3,0x87,0xf6,0x8b,0x6e,0xbb,0xeb, +0x91,0x2b,0x97,0x77,0x7d,0x7d,0xe0,0x83,0x09,0x9b,0x18,0x0a, +0xf2,0xd2,0x97,0x3a,0xd8,0x05,0x8f,0xe1,0x10,0x7b,0xb2,0xf5, +0xe8,0xc0,0xf5,0x5f,0x7c,0xf1,0xde,0xfa,0xaf,0x62,0x97,0xca, +0x60,0x5a,0x69,0x96,0xa5,0x40,0x7a,0x8c,0x4e,0xce,0x9d,0x45, +0xc9,0xd1,0x02,0x8e,0xeb,0x21,0xb9,0x6b,0x0b,0x81,0xf1,0xa8, +0x8e,0x4c,0x3c,0x57,0x80,0xc0,0x27,0xa3,0xdf,0x12,0x6b,0xb4, +0x0f,0x63,0xed,0xcd,0x17,0x7f,0xe9,0x39,0x79,0x59,0x86,0x4b, +0x5d,0xd5,0xa5,0x8a,0xc2,0xe9,0x6d,0x14,0xd0,0x0e,0xcf,0xe7, +0xc3,0xe9,0x95,0x84,0x5a,0xb0,0x53,0x87,0xe1,0x4e,0xa8,0x89, +0xbe,0x93,0x84,0x2e,0xa9,0xa2,0x6c,0x78,0x1e,0x33,0xf1,0x79, +0xeb,0xa4,0x76,0xe5,0xe3,0xeb,0x95,0x20,0xaa,0x1d,0x44,0xb5, +0x83,0xa8,0x7c,0xbc,0x28,0x7b,0x58,0x13,0xfe,0x96,0x3e,0x37, +0xc4,0x7e,0xed,0x9b,0x8f,0xb6,0x77,0x1b,0x19,0x09,0x2b,0xcb, +0x14,0xea,0x82,0xee,0xe2,0xc5,0xde,0xfb,0x9b,0x28,0xbe,0x26, +0x8a,0xaf,0x89,0xa2,0x24,0x83,0xee,0x11,0x4d,0x28,0x57,0xd8, +0x9e,0x2a,0x54,0xdf,0xe9,0x7e,0x85,0x00,0x7c,0x4b,0x84,0xba, +0x85,0xcb,0x69,0x84,0x67,0xd3,0x00,0xd7,0x53,0x70,0x82,0xfd, +0x1c,0x2c,0x69,0x81,0x6f,0x7b,0x5e,0x10,0xab,0x56,0x7d,0x12, +0x3b,0x61,0x8f,0xef,0x73,0x03,0x5b,0x4f,0x90,0x01,0xa5,0x84, +0x8c,0x58,0x2c,0x20,0x43,0x6f,0x91,0x41,0xa3,0x0b,0xd1,0xfa, +0x68,0xd5,0x52,0x41,0x9f,0x37,0x68,0x7d,0x99,0x02,0x82,0xf5, +0x79,0x03,0xd7,0x97,0x29,0xd4,0x25,0x5d,0x29,0x1f,0xae,0x6f, +0x8f,0x50,0x17,0x75,0xff,0x02,0xb8,0xbe,0xe8,0x2e,0x02,0x02, +0xf5,0x79,0x29,0x53,0x04,0x9c,0x7f,0x41,0xba,0x96,0xe6,0x53, +0x31,0x7b,0x01,0x6c,0xdf,0x1e,0xfe,0xd1,0xfe,0xac,0x0d,0xfd, +0xbe,0xd9,0x28,0xf0,0xa0,0x3d,0xe5,0x2a,0xf4,0x85,0x01,0x32, +0xf0,0x05,0xe1,0xc0,0x7e,0xc6,0xca,0xa8,0xd9,0x64,0xe1,0x2a, +0x09,0xbd,0xfe,0x08,0x4c,0x92,0x21,0xcf,0x0b,0x3e,0x0e,0x92, +0xd9,0x59,0xfc,0x4b,0x4d,0xff,0x96,0x9a,0xfe,0x2d,0x35,0xbd, +0x94,0xe9,0x1c,0x9b,0x3b,0xe7,0xb2,0xde,0x2e,0x83,0x22,0xf3, +0x31,0x00,0xa9,0xd1,0x57,0x74,0x57,0xc6,0x00,0x8c,0x1b,0x2f, +0xf4,0xbb,0x14,0x28,0xfa,0xdf,0x7c,0x8b,0x51,0x28,0x0b,0xdf, +0x92,0x9f,0xfb,0x39,0x66,0x8e,0xc9,0x7f,0x4d,0x2a,0x4b,0x37, +0x85,0xce,0x0e,0x68,0xa0,0x4f,0x91,0x3a,0xfc,0x4c,0x1d,0xd1, +0xe6,0x05,0x04,0xe3,0xfb,0x06,0x38,0x30,0x62,0x91,0x50,0x0f, +0xeb,0xee,0xf9,0xa0,0x81,0x7b,0x18,0xc4,0xe8,0xe7,0x42,0xd0, +0xc0,0xe8,0x69,0xe2,0xbc,0x2e,0xc1,0x98,0x81,0x11,0x1f,0x08, +0x68,0xa2,0xcf,0x30,0x66,0x20,0xf1,0x9c,0xd0,0x25,0xf3,0xd1, +0x02,0xf7,0xf0,0xf5,0x15,0x67,0x0b,0xd1,0x02,0x65,0xf4,0xf3, +0xe2,0x45,0xed,0x5f,0x88,0x0d,0xc8,0x19,0xea,0x73,0x9a,0x8d, +0x45,0xb0,0x00,0xff,0x86,0x96,0x34,0x25,0x9b,0x9a,0x29,0x59, +0xd2,0x0b,0x02,0xa8,0x7b,0xf0,0xb4,0xdc,0x44,0xd3,0x72,0x93, +0x45,0xb3,0x77,0x44,0x21,0x22,0x60,0xf4,0x9b,0x02,0xae,0xe3, +0xa9,0x42,0xe4,0xbf,0xdd,0xa4,0xc0,0xb5,0x42,0xe0,0xbf,0xdd, +0x62,0xb7,0xbe,0x5a,0x88,0xfb,0xb7,0x5b,0xa8,0xf5,0x3a,0x85, +0x81,0xff,0xea,0x0b,0xb5,0x5d,0x0f,0x75,0x03,0xa7,0xf6,0x10, +0xc9,0x16,0x9a,0x9e,0xcf,0x4b,0xbf,0xf2,0xfc,0xcc,0x2c,0x65, +0x0c,0x49,0x69,0x3c,0x27,0xc3,0x36,0x08,0x19,0xd9,0x41,0xc0, +0x24,0x9d,0xcc,0x58,0x20,0x87,0x49,0x4f,0xd6,0x7c,0xa6,0x50, +0x5b,0x74,0x37,0x28,0x47,0x53,0xdf,0x4d,0xa1,0xac,0xee,0x5f, +0x08,0x09,0x48,0xb5,0x74,0xa7,0x15,0xcf,0x2b,0xa6,0x68,0x23, +0xee,0x62,0x48,0xc0,0xfa,0x82,0x42,0xce,0x4b,0x0c,0x09,0x48, +0x79,0xaf,0xeb,0x52,0x85,0x88,0x80,0xbb,0xf9,0x2c,0xc2,0x79, +0x46,0x04,0x8c,0x39,0xc0,0x00,0xa9,0x06,0x11,0x90,0x92,0x70, +0xc2,0x41,0x04,0x0c,0x38,0xcf,0x67,0x25,0x8e,0xff,0x29,0x64, +0x79,0x7f,0x81,0x4d,0x74,0x63,0xeb,0x6a,0x56,0xfe,0xb1,0x8a, +0x34,0x03,0x08,0xf8,0x3e,0xc7,0x45,0x0c,0x08,0x48,0x09,0x3f, +0x07,0x10,0xf0,0x7d,0x01,0xb9,0x06,0x10,0x90,0x12,0xbf,0x18, +0x40,0xc0,0xf7,0xf9,0x17,0x02,0x06,0x04,0x7c,0x9f,0xaf,0x41, +0x30,0x80,0x80,0x54,0xf6,0xa8,0x01,0x04,0xe4,0x2a,0x7e,0x31, +0x80,0x80,0x01,0xf0,0x8b,0x7d,0xf3,0x3a,0xe4,0x90,0x0d,0xce, +0xb9,0x9e,0x84,0xa3,0xf9,0x32,0x1b,0xe9,0x4f,0x6e,0xae,0xab, +0xf4,0x5f,0x2e,0x92,0xb8,0xce,0x5d,0x0e,0x1e,0x60,0xc0,0xaf, +0x7c,0xe2,0xd4,0xe0,0x01,0x96,0x26,0x7f,0x70,0xe5,0x06,0x7c, +0x48,0x4c,0x1f,0xde,0xa8,0x82,0x63,0xcc,0x35,0x36,0xee,0x12, +0x70,0xda,0x56,0x8d,0xc9,0x21,0x90,0xc2,0x1d,0x49,0xe1,0x2a, +0xc4,0x3c,0xda,0xc1,0x04,0x24,0x5e,0x4c,0x77,0x30,0x01,0xdf, +0x17,0x0f,0x3a,0x98,0x80,0x94,0xa7,0x1a,0x38,0x98,0x80,0x94, +0x39,0x0a,0x83,0x6d,0x86,0xcf,0x73,0xe9,0x01,0xd8,0x76,0x22, +0x35,0x3d,0xeb,0x6e,0x57,0xd5,0x54,0x78,0x40,0xe8,0x58,0x46, +0x03,0xf4,0xac,0x17,0xba,0xb4,0x2c,0xbd,0x32,0x3f,0x41,0x33, +0xd9,0x65,0x11,0x91,0xb9,0x4d,0xc6,0x49,0x19,0xa4,0xbf,0x7e, +0x02,0xcf,0x9a,0x8b,0x65,0x58,0xde,0xed,0x17,0xcb,0x1c,0x10, +0xb4,0x82,0x2b,0xb8,0x58,0xa6,0xe0,0x39,0xff,0xfa,0x98,0x0a, +0x25,0x05,0xfe,0xc1,0xf7,0xc7,0x30,0x8c,0xdf,0x2b,0x4f,0xdb, +0xba,0x11,0xae,0x96,0x3e,0xbb,0x04,0x54,0xd7,0x9b,0x84,0x5e, +0xe0,0x85,0xf0,0xcb,0x50,0xdd,0x6e,0x2f,0xe1,0x6b,0x5f,0xe4, +0x2c,0x81,0x1d,0xf4,0xcc,0xbb,0x01,0xf7,0xb5,0x56,0x0d,0x74, +0x27,0xa1,0xc7,0xdd,0x7e,0xed,0x8b,0xae,0x21,0x48,0x8c,0xeb, +0x4f,0xb1,0x72,0xa5,0xf4,0xad,0x4c,0xc6,0xe4,0x2f,0x83,0xca, +0xb7,0x70,0x12,0x53,0x0f,0xbc,0xfd,0xbe,0x97,0xfc,0xfc,0x7c, +0xf0,0xbe,0xfc,0x47,0x07,0xbb,0xaf,0xb5,0x6a,0xe4,0x7d,0x74, +0xb0,0xfb,0x5a,0xab,0x91,0x45,0xa4,0x0c,0xd3,0x8f,0x4b,0x59, +0x59,0xc0,0xe9,0xe7,0x65,0x5c,0x87,0xe2,0xe4,0x0c,0x2f,0x4b, +0x4e,0x60,0x03,0x0e,0x97,0x21,0x23,0x05,0x1e,0xc1,0x6d,0x32, +0x40,0x91,0xb1,0x85,0x20,0x19,0xf5,0xa2,0xd3,0xac,0xf6,0x7a, +0xcc,0x9d,0x48,0x7e,0x19,0xb4,0x22,0xa6,0x6e,0x58,0x26,0x7d, +0x76,0x0a,0x48,0xe6,0x6e,0x98,0x96,0x0f,0xe3,0xd7,0x5a,0x35, +0x91,0x41,0xa5,0x05,0xb6,0xd3,0xfd,0x0b,0x60,0xfc,0x5e,0x19, +0x7f,0x3b,0x75,0x51,0x08,0x3f,0x56,0xa1,0x00,0xb5,0xef,0x2e, +0x92,0x6f,0x87,0xec,0x2b,0x56,0x43,0x11,0xc8,0xbe,0x64,0xd5, +0xd2,0xd6,0x02,0x17,0xc9,0x90,0x57,0x88,0x15,0xa6,0x58,0x58, +0x5b,0x8f,0x2b,0x82,0xd8,0x77,0xaf,0xf2,0x02,0xc0,0xbe,0x64, +0xd5,0x88,0x09,0x5e,0x31,0x04,0x09,0x0e,0xc1,0x70,0x3b,0x07, +0x92,0x64,0xe0,0x54,0xde,0x4d,0xa8,0x74,0x17,0xe0,0xbe,0xc0, +0x00,0xa1,0x7b,0x15,0x81,0xed,0xa3,0xb7,0xfa,0xe6,0x6d,0x6f, +0xf5,0x1b,0xf1,0xaf,0x0c,0xda,0x20,0x1e,0xd4,0x63,0xe1,0xbc, +0xb8,0x09,0x17,0xbc,0xf8,0x7d,0xe9,0x45,0x81,0xfd,0xd2,0x8b, +0x00,0xfb,0xa5,0x17,0x02,0xfb,0xa5,0x17,0x05,0xf6,0x4b,0x17, +0x9f,0xe8,0x7e,0x52,0x56,0x11,0xf0,0x13,0xbd,0xc9,0xf6,0xde, +0xbc,0x42,0x84,0xbf,0x8a,0xaa,0xbc,0x8c,0x2f,0xc7,0x87,0x0a, +0x3b,0x15,0x60,0xfc,0x8d,0x21,0xe7,0xf4,0x35,0xf6,0x93,0xa1, +0x5a,0xa8,0xbf,0xf9,0xad,0xbe,0x54,0x14,0xf2,0xaf,0x21,0x13, +0xf7,0x2b,0x0e,0xf9,0x97,0xac,0x1a,0x70,0x27,0xcc,0x96,0xfe, +0x14,0x94,0xc6,0x7a,0x3b,0xa1,0x10,0xf1,0x6f,0xb0,0x80,0x7a, +0xbd,0x8f,0xa8,0x45,0xa6,0xe1,0x1d,0xef,0x06,0xfa,0x77,0x2f, +0x01,0x05,0x98,0x7f,0x5f,0x50,0x57,0x74,0x2a,0x02,0xf9,0x77, +0x2f,0x06,0x07,0xf1,0xef,0xae,0x15,0x32,0xe8,0x9f,0x01,0xf2, +0x9b,0xad,0xb6,0xda,0xba,0x09,0xb9,0xb4,0x60,0x5a,0x2b,0x34, +0xdc,0x26,0xf4,0x33,0x05,0x38,0x7e,0xb3,0xd4,0x6a,0x2e,0xda, +0xa8,0x2e,0x0b,0xa8,0x4b,0x25,0x63,0xef,0x40,0xf1,0x9b,0xa5, +0x46,0xc9,0xb8,0xa7,0x9c,0x92,0xbb,0xa0,0xf8,0x51,0x74,0xb1, +0x72,0xe5,0x27,0xb1,0x13,0x4d,0x74,0xf1,0x4c,0x4b,0x19,0x39, +0x9e,0x82,0xa8,0x8b,0x62,0xa5,0xa6,0xb0,0xa8,0xb9,0x9a,0xb0, +0x4f,0x96,0x49,0x14,0xdf,0x59,0x41,0x0c,0xd2,0x37,0xfb,0x59, +0xae,0xea,0x35,0x1d,0x21,0xa0,0x12,0x55,0xd5,0xf6,0x36,0x94, +0xbf,0xbb,0x16,0x17,0x42,0xfc,0xdd,0xb5,0xb8,0x10,0xdf,0x6f, +0xb6,0x9a,0x5c,0xbc,0xdc,0x8b,0xee,0x77,0x47,0x7e,0x51,0x6c, +0xbf,0x33,0x26,0x68,0xb9,0x27,0x55,0x31,0x6c,0xbf,0xd9,0x6a, +0xfc,0x5d,0x48,0xe0,0x6d,0x4c,0xb7,0xa1,0xef,0x37,0xbf,0xb0, +0x79,0xb5,0xc8,0x11,0x53,0x38,0x33,0xcb,0x00,0xfd,0xcd,0x62, +0xdc,0xb4,0x26,0x34,0xce,0x43,0xbe,0x12,0x50,0x83,0x18,0x68, +0x7c,0x5d,0xe7,0x5d,0xc1,0x59,0xea,0x4d,0x2e,0x58,0xc7,0x5d, +0xfe,0x10,0xe5,0x0f,0xbb,0x03,0xc1,0x6f,0xb6,0x7a,0x47,0xba, +0x56,0x0a,0xdd,0xdb,0x41,0xf0,0xbb,0x07,0xc3,0x3d,0xf1,0xfb, +0xa8,0x31,0x86,0xbd,0x7d,0x11,0xfc,0xbe,0x3b,0x64,0xe4,0xa3, +0xf7,0x15,0xd4,0xe5,0xa0,0xf7,0xb5,0xbc,0x0b,0x7a,0x5f,0xcb, +0xbb,0xa2,0xf7,0xb1,0xdf,0x89,0x62,0xf4,0xbe,0xbc,0xf6,0xe2, +0x7e,0xf7,0xbf,0xb0,0x37,0xf2,0x33,0x37,0xbb,0x98,0x44,0xe9, +0x37,0x0c,0xc3,0x3d,0xae,0x75,0x31,0x24,0x7c,0xad,0x8b,0x43, +0xbb,0xda,0xd0,0xde,0xe7,0xfa,0x16,0x2e,0xbe,0xcb,0xdd,0x2d, +0x30,0x7e,0x9f,0xa5,0xeb,0xe2,0x49,0x19,0xd5,0x35,0x5f,0xe6, +0xb3,0x8e,0xe7,0xfb,0xf1,0x3e,0x97,0xa9,0x90,0xaf,0xab,0xc0, +0x97,0xa9,0xc8,0x0a,0x25,0x04,0xee,0x2f,0xc0,0xf7,0x33,0xf9, +0x77,0xbb,0x34,0x85,0x05,0x17,0xbd,0x34,0x85,0x9d,0xe3,0x39, +0xbe,0x35,0x85,0xb5,0xba,0xdf,0x95,0x29,0x50,0x5b,0xa5,0xda, +0xea,0x30,0x1c,0xd3,0x87,0xad,0x13,0xb8,0xd4,0x86,0xae,0xbc, +0xc0,0x73,0xe9,0xff,0x70,0xa4,0x94,0x1f,0x8a,0xdc,0x91,0xb9, +0x33,0xa4,0x1f,0x59,0xf6,0x0e,0x1e,0x8a,0xcd,0x7f,0x2d,0xc4, +0xf3,0x1b,0x99,0x3b,0xd3,0xa6,0xf8,0xe2,0x13,0x75,0xd8,0x6a, +0xbe,0xc7,0xd6,0x0d,0xa1,0x39,0x13,0x1c,0x2f,0xb8,0xe6,0x44, +0x3f,0xce,0x01,0x76,0x02,0x6f,0xd1,0xf7,0xa1,0x00,0x28,0xff, +0x11,0x1b,0xe0,0xea,0xeb,0x85,0x85,0xe6,0xaa,0x93,0xfc,0x27, +0xe7,0xae,0x93,0xbb,0xd4,0x68,0x2e,0x38,0x71,0xd3,0xc8,0x39, +0x26,0xcb,0xb4,0x21,0xf9,0x06,0xe2,0x6f,0x64,0xee,0x74,0xe9, +0x33,0x57,0xec,0x91,0x7e,0x4f,0x53,0xe7,0x30,0xc4,0x1f,0xeb, +0x24,0xe3,0x28,0x8a,0xfb,0xde,0x00,0xfd,0x15,0x27,0x28,0x04, +0xfa,0xbb,0xb3,0xa0,0xf0,0xd6,0x13,0x56,0xe5,0xbb,0xe2,0xd8, +0x7e,0xb9,0xdd,0xe1,0x19,0xfb,0xa4,0x7a,0xb7,0x99,0xa5,0x6f, +0xe1,0x15,0x5b,0x35,0x85,0x3d,0xba,0xa9,0x75,0x0c,0x5f,0xb2, +0x21,0x8b,0x42,0xe0,0x2c,0x97,0xae,0x86,0x13,0x64,0xf4,0x12, +0x07,0xe0,0x6f,0xb1,0x9a,0x6d,0x53,0xb0,0xbc,0x47,0xfa,0xfc, +0x2b,0xb8,0xdc,0x82,0x56,0xa4,0x75,0x3e,0xca,0xdf,0x62,0x35, +0x51,0xfa,0xd1,0xf4,0x6a,0xeb,0x14,0xec,0x2f,0x8e,0xf0,0xb7, +0x58,0x3d,0xce,0xbc,0xdb,0x0d,0x6f,0x0b,0x87,0x64,0x8f,0x8c, +0xdd,0xc4,0xb8,0x2e,0x6f,0x33,0xc6,0xe0,0xa6,0x93,0xbc,0xd3, +0xdb,0x6c,0xa0,0x8d,0xbb,0x48,0x8d,0x5d,0xae,0x34,0x32,0xc1, +0xc1,0x34,0x22,0x1e,0xc2,0xbf,0x64,0xf4,0xab,0x1c,0x53,0x2f, +0x1e,0x89,0xf3,0x8b,0x80,0x00,0x3a,0x8f,0x05,0x98,0x7f,0xe6, +0xb1,0x00,0xe2,0x6f,0xb1,0xea,0x43,0x8f,0x05,0x90,0x7e,0xce, +0x63,0x3e,0x84,0x9f,0x13,0x7b,0x17,0x66,0x17,0xc1,0xeb,0x5b, +0xa4,0x7a,0x52,0x4e,0x03,0xac,0xce,0x91,0x38,0x03,0xf4,0x2d, +0x52,0x63,0xef,0xd0,0x7b,0x67,0x71,0xb4,0xbe,0x45,0xea,0x05, +0x26,0x21,0xb5,0xad,0xb4,0x3d,0xac,0x33,0x91,0x1c,0x61,0xc8, +0xbe,0xfe,0x5c,0xc3,0x5c,0x2e,0x7b,0x97,0xcb,0x76,0x4b,0xbf, +0x10,0x2e,0xdb,0x52,0x04,0x97,0x6f,0x91,0x9a,0x6a,0x3a,0xad, +0x8d,0x23,0xf9,0xbb,0x22,0xb0,0x7c,0x32,0xf2,0x0b,0xde,0x46, +0x7f,0xd9,0x56,0xef,0x7d,0xa7,0x97,0xc8,0xa0,0x75,0xde,0x6d, +0xf4,0x7b,0xb1,0x15,0xe2,0xf0,0xdd,0xbd,0x52,0xf1,0xb7,0x90, +0xc1,0x6b,0x84,0xbb,0x24,0xff,0xd0,0x5d,0x47,0x25,0xe9,0x3a, +0xd6,0x49,0xfc,0xd3,0x86,0x75,0xb0,0x02,0xd7,0xb9,0x86,0xea, +0xd7,0x64,0xa0,0xca,0xc7,0xe4,0xdb,0xac,0xfa,0xd8,0xba,0x8e, +0x4e,0xd2,0x01,0xbc,0xc7,0xb0,0xc2,0xc2,0x25,0xfc,0x53,0xa4, +0x17,0x9d,0x6f,0xb3,0xea,0xcc,0x85,0xb1,0x5c,0xb8,0x86,0x0a, +0xe1,0x0d,0xf3,0xeb,0xb7,0x17,0x95,0x6f,0xb3,0xaa,0xce,0xa5, +0xd1,0x5c,0xba,0x8a,0x4b,0xbf,0xd7,0xf1,0xb4,0x56,0xce,0x74, +0xd6,0xca,0xaf,0xca,0xd2,0x52,0x78,0xfe,0x14,0xb8,0x79,0x90, +0xf4,0x6b,0x21,0xe0,0x23,0xfd,0xd1,0x25,0xb1,0x4b,0xb8,0x33, +0xdf,0x67,0x9d,0x42,0x48,0xa7,0x53,0x1d,0x6c,0x52,0x68,0x31, +0xae,0xb0,0x4e,0xeb,0x69,0x8c,0xc6,0x17,0x48,0xa3,0xa7,0x83, +0xf3,0x93,0x37,0x25,0xe1,0x77,0xde,0x04,0xec,0xdb,0x11,0xfa, +0x5a,0x7a,0x35,0xb5,0xca,0xd7,0x9d,0x0f,0xcd,0xb7,0x59,0x75, +0xe0,0x8a,0xe3,0xb8,0xe2,0xb7,0xa9,0xe2,0x29,0xfc,0xc3,0xb7, +0xa7,0x09,0x55,0xa5,0x1e,0x2d,0x56,0x80,0x23,0xf8,0xa7,0x6c, +0xe2,0x9a,0x61,0xb8,0x7a,0xb3,0x22,0x8f,0xea,0x1e,0xef,0x51, +0xd4,0xf5,0x97,0xd0,0x55,0xa1,0x95,0xdd,0x1c,0x13,0x71,0x09, +0xc4,0xa7,0xe9,0x9a,0xaa,0x8a,0xf9,0x99,0x7f,0x09,0x45,0x68, +0x4b,0x2c,0x18,0xa3,0x9f,0x07,0x5a,0x24,0x05,0xdd,0x60,0xb2, +0x7a,0x32,0xf4,0x5b,0x5a,0x0d,0x50,0xaa,0x89,0x0c,0xf7,0xe4, +0xa7,0xc2,0x8e,0x52,0xf9,0x15,0x4e,0xa7,0x4b,0xd7,0x31,0xf1, +0x9c,0xae,0x77,0x91,0x32,0x2e,0xe7,0xcb,0xad,0x48,0xa2,0x12, +0xd3,0x74,0xdd,0x02,0xb9,0x55,0x48,0xee,0xaf,0x7a,0x32,0x2c, +0x14,0x9a,0x4c,0x47,0x35,0xe8,0x20,0xcb,0x9e,0xa6,0x86,0xde, +0x12,0xac,0xd7,0x83,0x22,0x63,0xb7,0x8d,0xfd,0xa0,0x12,0xf4, +0xb3,0x54,0x05,0x3d,0xda,0x93,0xc9,0x1b,0x21,0xe3,0xf9,0x8a, +0x8c,0xe1,0xc7,0xd4,0xec,0x34,0x1c,0x8d,0xd1,0xd0,0x3f,0x5d, +0x8f,0x3a,0x6a,0x61,0x3b,0xd5,0x51,0x06,0xc7,0x71,0x3d,0x37, +0xac,0x8c,0x3d,0x32,0x7c,0x3e,0x93,0xce,0x65,0xd2,0x1e,0xc7, +0xd4,0x80,0x34,0xec,0x41,0xa4,0x59,0xe9,0x3a,0xd3,0x90,0x56, +0xcf,0x9b,0x2f,0x88,0x28,0x6c,0x92,0xa8,0x21,0xf4,0x79,0xbe, +0x12,0x2a,0xba,0x8f,0x70,0xe9,0xe8,0xfe,0xb3,0x45,0x8b,0x5d, +0xef,0x88,0xb6,0xfa,0x3f,0x77,0x95,0xbb,0x17,0x35,0xa4,0xa2, +0x3a,0x77,0x2f,0x52,0xe5,0x74,0x6d,0x77,0x3d,0x32,0xf2,0xa2, +0x8f,0x48,0xa3,0x72,0xae,0xa8,0x01,0x17,0xc9,0xb0,0xdd,0x77, +0xc9,0x7d,0x47,0x34,0x22,0x59,0xe9,0x77,0x2d,0xa1,0x5a,0x72, +0x97,0x0a,0xb5,0x13,0xce,0xdb,0x78,0x20,0x13,0x0e,0x58,0xad, +0xf1,0xed,0xbc,0x9b,0x77,0x13,0x1d,0x9a,0xcb,0xed,0x7c,0xc6, +0xdc,0x1a,0x72,0x4c,0x4d,0x4b,0xc3,0x27,0xa9,0x9d,0x7d,0xd2, +0xf5,0x70,0xd3,0xce,0xf6,0x4e,0x3b,0xc3,0x9f,0x65,0x56,0x8c, +0x14,0x7c,0xd3,0x47,0xba,0xce,0x32,0x65,0x75,0x9d,0xaa,0xb6, +0xe2,0x59,0xcf,0x2a,0x6a,0x90,0x2c,0x73,0x48,0xc0,0x10,0x12, +0x33,0xea,0x98,0x9a,0x4f,0x8d,0xea,0x26,0xcb,0x0c,0xa7,0xee, +0x97,0xe5,0x1e,0xe0,0x0a,0xcc,0x65,0x28,0x5c,0x92,0xc6,0x74, +0xc4,0x2e,0xfd,0x5c,0x5c,0xea,0xb3,0x9a,0x57,0xba,0xfe,0xee, +0x94,0x62,0x15,0x38,0x9d,0x5c,0xc7,0xa9,0x60,0x1b,0xfe,0xa6, +0xdf,0xe2,0xcd,0xf7,0x65,0x27,0xc0,0xae,0x2d,0xf0,0x0d,0xa8, +0x2a,0xa3,0xab,0x70,0xc6,0xc2,0x13,0x10,0xec,0xcd,0x08,0x4a, +0x14,0xf0,0x16,0x85,0xe4,0xdf,0x09,0xec,0x21,0xf4,0xe4,0x13, +0xe0,0x53,0x57,0x40,0xb8,0x0b,0x57,0x43,0xb5,0xff,0x39,0x1a, +0xdb,0xd2,0xd2,0x0d,0xa2,0x79,0x34,0x92,0xcc,0x97,0x4f,0x40, +0xe9,0xda,0x9c,0x51,0x5d,0x55,0xe6,0x05,0x7a,0x59,0xe9,0x9a, +0x21,0xda,0x71,0x46,0x05,0x69,0x7f,0x53,0x90,0xea,0x9e,0x9f, +0x0a,0xdf,0xe8,0x4d,0x79,0xfa,0xf0,0x67,0x82,0x63,0x55,0xac, +0xf8,0xea,0x53,0x2c,0x0f,0xd5,0x27,0x2f,0x7b,0x6e,0xce,0xa4, +0xc9,0x51,0x41,0xf9,0x74,0x9e,0x7c,0x0e,0x1a,0xe1,0xf5,0x9d, +0x54,0xe8,0x5c,0x01,0xbf,0x71,0x32,0xae,0x60,0xa8,0x17,0xd5, +0x20,0x45,0x26,0xbc,0x22,0x8c,0xba,0x95,0x58,0xdd,0x97,0xf5, +0x28,0x68,0x2c,0x14,0xb9,0xcb,0x59,0x27,0x20,0x82,0x9a,0x17, +0xc6,0xcd,0x4b,0xba,0xff,0xa4,0x80,0x2d,0x4e,0x55,0x81,0xdd, +0x28,0x0c,0x3b,0x03,0x07,0x84,0x7a,0x94,0x3b,0x2c,0x49,0x92, +0x25,0xc4,0x41,0x3a,0x44,0xba,0x86,0x16,0xea,0x8f,0x91,0x7a, +0x99,0x2c,0x53,0xba,0x80,0x86,0x67,0x52,0x30,0x45,0x4f,0xaf, +0x1c,0x81,0xb2,0x10,0x8f,0xf1,0x47,0xd4,0x3a,0x7a,0xb1,0x8f, +0x48,0xd7,0x2f,0x02,0x5a,0x42,0x39,0xde,0x8a,0x8f,0x67,0xcc, +0xbd,0x98,0xa6,0x3c,0xc9,0xaa,0xd0,0x24,0xc3,0x30,0x5d,0xce, +0xf3,0x32,0x45,0xec,0xe4,0x2d,0x67,0x1f,0x01,0x9b,0xca,0x2b, +0x1c,0x51,0x6b,0x88,0xeb,0x31,0x9e,0x8d,0xc4,0x15,0xc5,0x5b, +0xf1,0xf1,0xbc,0x15,0x1f,0x93,0x26,0xe5,0x68,0xbe,0x86,0x21, +0x8c,0xc9,0xa4,0x2c,0x53,0xd2,0x3b,0x67,0xe1,0x18,0x5f,0xed, +0x20,0x31,0x1e,0xa4,0x0b,0xe7,0xe2,0xc0,0xdb,0x66,0xb0,0x0c, +0xaa,0x2b,0xb0,0xa5,0x3a,0x65,0x67,0x90,0x67,0xee,0x07,0xd5, +0x5a,0xe8,0x34,0x9a,0xb2,0x0e,0x53,0x23,0x62,0x6a,0xc4,0x4c, +0x03,0x98,0xa9,0x16,0x31,0xf5,0xd5,0x9f,0xe1,0x28,0xae,0x25, +0x81,0x6a,0x91,0x21,0x27,0x05,0x51,0x3c,0xd0,0x42,0x8f,0x3a, +0x62,0x91,0x8c,0xc2,0x19,0x4f,0xec,0xef,0xf0,0xfe,0x71,0x3c, +0xef,0x1f,0xcf,0xc5,0xa1,0x3c,0xff,0xa5,0x3f,0x2d,0x76,0x4b, +0x1e,0x51,0x03,0x18,0x3d,0x2d,0xfe,0x56,0x0b,0x9d,0x69,0x98, +0x78,0xee,0x13,0xf9,0x5a,0x72,0xd9,0x73,0xf9,0xbe,0xc8,0x49, +0x42,0xfa,0xd2,0xc0,0x2d,0x6f,0x1a,0xd0,0x47,0xd7,0xe6,0xc2, +0xd5,0x79,0x1e,0xde,0x51,0x4c,0x13,0x4f,0xeb,0x9f,0xf5,0x3f, +0x02,0x69,0x59,0xc2,0xb3,0x9c,0xda,0x1f,0x86,0x1d,0x29,0xdd, +0x32,0xdf,0x46,0xdc,0xad,0xc4,0x31,0x11,0x77,0x2b,0xf1,0x5a, +0x88,0xf3,0xdc,0x7e,0x9a,0xbe,0x54,0xd1,0x5c,0xd2,0x62,0x0e, +0x76,0x66,0x0b,0x71,0x67,0x6e,0xbe,0x85,0xb8,0x5b,0xc9,0x3d, +0x2c,0x84,0x79,0x73,0x33,0x8f,0x40,0x18,0xbd,0x92,0xf2,0x47, +0xd4,0x2a,0x7a,0x73,0x5d,0xb9,0x49,0x2d,0x21,0x86,0x37,0x95, +0xe3,0x79,0xfb,0x3e,0xa6,0x39,0x35,0x2c,0x51,0x5f,0xd1,0xe9, +0x22,0x77,0x9c,0xb3,0x89,0x1f,0xef,0x9c,0x70,0x00,0x3f,0xa2, +0x08,0x3e,0xa2,0xa6,0x11,0x5b,0x0f,0xee,0xa6,0x96,0xce,0x5d, +0x1e,0xf1,0x18,0x41,0x6c,0x8d,0xf9,0x9d,0x24,0xf2,0x8b,0x8c, +0xd0,0xd5,0xb5,0xce,0x7f,0x29,0x86,0xa1,0x45,0xa1,0x10,0xee, +0xe3,0xf6,0x4e,0x1f,0xbf,0x51,0xe4,0x95,0x0c,0x60,0x2b,0xe4, +0x5c,0x06,0x13,0x8f,0xdd,0x8e,0xa8,0xb3,0x58,0x85,0x35,0x65, +0xea,0x9e,0x66,0x44,0x1e,0x83,0x75,0xbc,0x8f,0x1f,0x0f,0xb1, +0x4c,0x3e,0x5c,0x96,0xfd,0xf7,0x9e,0x2f,0x46,0x86,0x2d,0x66, +0x51,0x31,0x2c,0xaa,0xec,0x11,0x35,0xbf,0x85,0x0c,0x7e,0x83, +0x8c,0x52,0x4b,0x36,0x4a,0x5c,0x2d,0x13,0x0d,0x94,0x11,0x97, +0x29,0x14,0x2f,0xc3,0x7d,0x57,0xb7,0x78,0xdf,0x39,0x26,0xcf, +0xb4,0x9d,0x19,0xa1,0x8c,0x57,0x4c,0xbe,0xd5,0xa3,0x66,0xcb, +0xc2,0xde,0x6a,0xca,0x26,0xf0,0x6e,0xaf,0xe0,0x09,0x9d,0xa7, +0xbb,0xfe,0x1f,0xf4,0x28,0xb4,0x91,0x77,0x57,0xc7,0x31,0x90, +0xd2,0xbf,0xaa,0xc0,0xc1,0xd2,0xe7,0x10,0xdf,0x3d,0x9a,0x6a, +0x4c,0x5e,0x42,0x9a,0xae,0xad,0x2a,0x5b,0xa9,0xc6,0x26,0x54, +0x66,0x1b,0x92,0xa3,0xc7,0x7a,0x68,0xf1,0x7f,0x98,0xf7,0xe3, +0x3b,0xb5,0x83,0x4e,0x16,0x3e,0x09,0x33,0x89,0x3a,0x81,0x08, +0xe2,0xd8,0x40,0xe6,0x53,0x1b,0x03,0xb9,0x59,0xbf,0xe0,0x5e, +0x22,0xd4,0x27,0x66,0x57,0x9e,0xe4,0x4e,0xb0,0xd3,0x30,0x1e, +0x97,0x32,0x65,0x35,0xa2,0x4c,0xdb,0x6b,0xd3,0x43,0x12,0x9f, +0x74,0xb2,0xf0,0x27,0x3d,0x59,0xc8,0x98,0x47,0x05,0x7c,0xad, +0xeb,0x6a,0xb2,0x00,0xfe,0xd9,0x02,0x3f,0xb9,0xc0,0x04,0xd1, +0x69,0x3a,0x56,0x55,0x56,0x15,0xd2,0x2c,0x3c,0xef,0x43,0xcf, +0xb1,0xbc,0xdb,0x98,0xea,0x2e,0xa5,0xd7,0x38,0x54,0x4f,0xc2, +0xf8,0xbc,0x6d,0x42,0x45,0xd0,0xb2,0xbf,0xf4,0x13,0x66,0x53, +0x5d,0xfa,0x96,0x10,0x26,0x93,0xba,0xe5,0x12,0x04,0x52,0x64, +0xb9,0x84,0x5f,0x1a,0xe7,0x4e,0x95,0xb1,0x6f,0x0a,0x5d,0xcf, +0x87,0xf7,0x3f,0xd5,0xf7,0x05,0xb4,0xd4,0x84,0x68,0xd2,0x3a, +0x2a,0x4d,0x97,0xe3,0x26,0xec,0xe5,0x26,0x94,0xa7,0x26,0x3c, +0x86,0x67,0xdc,0x14,0xb6,0xc5,0x5d,0x13,0x30,0x8b,0x68,0x92, +0xf2,0x8e,0xf1,0x46,0xa6,0xc0,0x97,0x85,0xfa,0x8a,0x16,0x4b, +0x8c,0xb5,0x14,0x8e,0x63,0x73,0xd4,0xcc,0x0c,0x1c,0x88,0xe1, +0x90,0xda,0x82,0x7a,0xa2,0x17,0xc4,0xb5,0xd0,0xd5,0xa4,0x5f, +0xb0,0xa0,0x18,0x8f,0x0d,0x4e,0x65,0xb2,0x65,0xc7,0x2c,0xa2, +0x1e,0xca,0xd4,0xbd,0x73,0xd4,0x28,0x87,0x3a,0xad,0x05,0xf5, +0x86,0xa1,0xae,0x0a,0x97,0xcd,0x9e,0x5d,0x2f,0xa8,0x08,0xbd, +0x2c,0xe5,0xd2,0x93,0x3c,0x1d,0x99,0x6d,0x80,0x61,0x7b,0x8c, +0xd9,0xb2,0x72,0x54,0x66,0x06,0x2d,0x56,0xc2,0xa1,0x76,0x0b, +0x8c,0x23,0xca,0xd8,0x16,0x3a,0x59,0xfa,0x87,0xf2,0xe5,0xc0, +0xbd,0x2c,0xe8,0x8e,0x27,0x3d,0x5d,0x85,0x0c,0x98,0x23,0x3a, +0x1a,0xbb,0xc0,0xa9,0xe6,0xc6,0x0e,0x70,0x4a,0x25,0x98,0x79, +0x0f,0xfd,0x85,0x4a,0xd6,0x63,0xf4,0x30,0x4e,0xa5,0x9a,0xa9, +0x4d,0x09,0x22,0xcb,0xdd,0xcc,0x09,0x18,0x8f,0x17,0xf5,0x53, +0x5c,0xef,0x34,0x53,0xef,0x70,0x29,0xa7,0x8a,0x33,0xba,0x96, +0x1e,0x25,0x64,0xf4,0x62,0x01,0x73,0xf5,0x53,0x9e,0x76,0xde, +0xcf,0xfc,0xa9,0x78,0x18,0xab,0xf5,0x58,0x8e,0xca,0xca,0xc0, +0x0e,0x8e,0x5a,0x51,0xd8,0x1b,0x22,0x5b,0x6a,0x9b,0x5b,0xb3, +0xcb,0xa6,0x87,0x72,0xd0,0xdb,0xfa,0xc4,0x0c,0x76,0x16,0x80, +0x2e,0x33,0x08,0x8b,0x0b,0x78,0xd4,0xb4,0xeb,0x7e,0x02,0xb6, +0x9b,0xe1,0x69,0x76,0xf8,0x1f,0xeb,0x00,0x7c,0xf6,0xd6,0xfc, +0x89,0x3b,0xc9,0x67,0xb5,0x02,0x30,0xd3,0xc6,0x45,0xec,0xbd, +0x6a,0xab,0x64,0x55,0x27,0xd5,0x42,0xf0,0xa1,0xe7,0xca,0xb0, +0xc8,0xc2,0xa7,0x75,0x84,0xbb,0xba,0x33,0xae,0x8b,0xb1,0x52, +0x09,0xfc,0xca,0x6f,0xb3,0x80,0xd1,0x0c,0x5a,0x87,0x0b,0x7e, +0x28,0x18,0xe2,0x81,0x1e,0x1a,0x20,0x41,0xf4,0x9f,0x85,0xe3, +0xe0,0x67,0x3b,0xdd,0x09,0x03,0xd2,0x75,0x4d,0x19,0xf2,0x99, +0x70,0x7c,0xea,0x07,0x05,0x23,0xdc,0x8f,0x89,0xfd,0x0d,0xf1, +0xd3,0x70,0x5c,0x06,0x55,0x64,0x8c,0xa6,0x1f,0x79,0x50,0xc7, +0xd2,0xba,0x7b,0xc7,0x08,0x19,0x94,0xcc,0x5b,0xc4,0xa5,0xf2, +0x4a,0x51,0x5f,0x74,0xe7,0x23,0xa4,0xa5,0xa0,0x9f,0x49,0xd2, +0x92,0xcf,0x8c,0xf8,0xe8,0x97,0xf9,0xb0,0xa9,0x19,0xd6,0x94, +0x54,0xe5,0x0a,0xc6,0x73,0x29,0x7c,0x2c,0x8b,0x94,0xf7,0x33, +0x7f,0x58,0x97,0x23,0x2c,0x0c,0x2a,0x17,0x8e,0xed,0xd2,0x5c, +0x79,0x80,0xb7,0xf2,0xd3,0x5c,0xf9,0x02,0x5d,0x97,0x82,0xef, +0x9a,0xde,0x46,0x94,0xf1,0x16,0x9d,0x91,0xb1,0x6b,0x18,0xf4, +0x8a,0x07,0xb0,0xf4,0xaf,0x72,0x37,0xd1,0xd4,0x4c,0x33,0x13, +0xd2,0x75,0x39,0xd3,0x4c,0x9e,0x05,0x43,0xf0,0xbc,0x9b,0xdc, +0x59,0x70,0x77,0xa1,0x13,0x74,0x00,0xb9,0x6d,0x8c,0x3d,0xac, +0x66,0xb7,0xc4,0x70,0x8c,0xfd,0xa3,0x25,0x45,0x0f,0x3d,0x21, +0xb1,0x25,0x85,0xce,0x17,0x2c,0x9a,0x9b,0xcb,0x6c,0x92,0x16, +0x0b,0x7e,0x32,0x64,0x88,0x20,0x97,0xde,0xd3,0xc2,0x28,0x1d, +0xe1,0xe9,0x2b,0x1e,0x12,0x7a,0xd5,0x51,0x4b,0x27,0x40,0x45, +0xe6,0x8f,0x31,0x78,0x57,0xff,0x27,0x7e,0x1a,0xb1,0x3c,0x89, +0x88,0x7f,0xb6,0xe1,0x2f,0xcb,0xfc,0x81,0x06,0xcd,0x2c,0xd8, +0xf0,0x27,0x11,0x7f,0x42,0x4b,0x9a,0x43,0x86,0x7f,0x29,0x6f, +0xfb,0xc7,0x82,0xe5,0x6a,0x89,0x3d,0x6c,0x2a,0xa9,0xc4,0x22, +0xfc,0xf5,0x14,0x9a,0x50,0x24,0x62,0x80,0x11,0xe1,0x47,0x22, +0x2a,0x18,0x54,0xa6,0x07,0x30,0xf6,0x07,0x99,0xf0,0x96,0xb9, +0x0b,0xaa,0x24,0xb1,0x95,0x24,0xb6,0xc1,0x3c,0x0f,0x93,0x79, +0x52,0xf5,0x70,0x26,0x55,0x64,0x5f,0x8a,0xad,0xd8,0x0d,0xcb, +0xd2,0x5a,0x64,0x3b,0xd3,0x8b,0x52,0x69,0xce,0xf4,0xa2,0x14, +0xcd,0x73,0x33,0xbd,0x1a,0x09,0x55,0xd9,0x99,0x5e,0x8d,0x44, +0xba,0x33,0xbd,0xf8,0x10,0xa3,0x99,0x5e,0x8d,0x18,0xed,0x84, +0xa7,0x17,0x69,0x31,0xcd,0x68,0x11,0x2d,0xa3,0xf7,0x88,0x73, +0xce,0xf4,0xa2,0x2a,0x54,0x8c,0x1e,0xe1,0x79,0x94,0x92,0xfd, +0x04,0xbc,0x62,0x66,0x1a,0x51,0x8e,0x34,0x94,0x8c,0x4e,0x8c, +0x0f,0x18,0xac,0x2b,0x52,0xf2,0x4c,0x4b,0x7a,0x43,0xbd,0x20, +0xaa,0x15,0xcd,0x13,0xd3,0xe4,0x59,0xbc,0xc3,0x1f,0x0b,0x25, +0x48,0xf7,0x2c,0xd6,0xbd,0x3c,0xe9,0xfe,0x99,0x33,0xeb,0x82, +0x29,0x98,0x4d,0xc0,0xff,0x64,0xf4,0x5e,0x91,0xac,0x4b,0xeb, +0x26,0xac,0xc7,0xd3,0xc6,0x6d,0x70,0x3d,0xe8,0x6b,0x26,0x64, +0xf1,0x7a,0x4a,0x9a,0x8e,0xf9,0xbf,0xd6,0xf3,0x95,0xe3,0x3b, +0x62,0xae,0x71,0x6c,0xd1,0xcf,0xf3,0x1d,0xef,0xec,0xff,0x6d, +0x9f,0x87,0xb9,0x70,0x32,0xb5,0xa2,0x6e,0x72,0xa3,0x39,0x9e, +0x84,0xb9,0x0f,0xf5,0x12,0xee,0x12,0x40,0x0b,0xe9,0x26,0x49, +0xba,0x89,0x05,0x6f,0xe1,0xfa,0x43,0xc2,0x5d,0x5b,0xa8,0xe6, +0xba,0x9f,0x5b,0x71,0xea,0x29,0x7d,0xde,0x13,0x63,0xb2,0x3e, +0xc1,0x0d,0x1e,0xc9,0x29,0xf8,0x14,0xdf,0xce,0x7d,0x82,0xc5, +0x5d,0xb0,0xcf,0x91,0xb8,0xdf,0x52,0xb1,0x84,0x6e,0x02,0x25, +0x9a,0xe3,0x6f,0x30,0xb7,0x8e,0x11,0xb8,0x80,0x04,0x72,0xa6, +0xa5,0xd2,0xf4,0xc3,0x7a,0x35,0x69,0x71,0x9d,0xed,0x5b,0x07, +0xf7,0x32,0x32,0x7a,0x17,0x45,0x53,0x44,0x9c,0x66,0x52,0x6a, +0x39,0x7e,0x91,0x17,0x45,0xde,0x6f,0x8f,0xc0,0x2d,0x18,0x28, +0xa3,0x6d,0x7a,0xa1,0x0f,0x48,0x57,0x43,0xca,0xfa,0x9b,0xb3, +0x3a,0x70,0x96,0x5a,0xa4,0xbb,0x48,0xdf,0xeb,0x94,0x77,0x9d, +0x0f,0x01,0x34,0x93,0xd1,0xf5,0x85,0x1a,0xa4,0x07,0x4a,0x2b, +0x81,0xf2,0xfe,0xf2,0x1e,0x0c,0xa8,0x27,0xd4,0xa7,0x78,0x54, +0xfa,0xf2,0x68,0x78,0x4b,0x7c,0xa7,0xcf,0xf0,0xed,0xde,0x94, +0xfa,0x4c,0xff,0x22,0x7d,0xb7,0x9b,0xa4,0x5a,0xa9,0x13,0xa5, +0xef,0x5b,0x22,0x77,0x8a,0x50,0x2f,0xeb,0x9e,0xd2,0x0a,0xe0, +0xe4,0xe7,0x4c,0xf0,0x11,0xa7,0x0c,0xe9,0x41,0x91,0x3b,0x55, +0xfa,0x4c,0x17,0x50,0x76,0xbf,0x8b,0x24,0x37,0xc8,0xcb,0x20, +0x9b,0x83,0x67,0xa4,0x2f,0xc5,0xcc,0xae,0x9b,0x5c,0x59,0x73, +0xae,0x0c,0x9e,0xd2,0xf1,0xd2,0x2a,0x2b,0x64,0x59,0x1f,0x01, +0x27,0xf9,0xd4,0xd4,0x26,0x12,0x81,0x8f,0x0b,0x88,0x2c,0xe4, +0xcb,0xc2,0xd3,0xd2,0xf7,0x35,0xe2,0xdb,0xcb,0x7c,0x64,0x3e, +0x1a,0x88,0xb7,0x90,0x42,0xe4,0x61,0x5c,0xdb,0x2d,0x3d,0x55, +0x5a,0x67,0x8c,0x00,0x75,0x9d,0x72,0xad,0xfe,0x77,0x08,0x80, +0xf6,0xf8,0x8b,0x14,0xef,0x90,0xa9,0xea,0xc5,0x5b,0xe4,0x3d, +0x3c,0xbf,0x89,0xbf,0x65,0x02,0x59,0x89,0x92,0x2e,0xf7,0x77, +0xc2,0x33,0x4e,0xe8,0x52,0xb0,0x5b,0xfa,0x4f,0x14,0x3f,0x50, +0xaf,0xf9,0xf5,0x22,0xba,0x7e,0x42,0x2f,0xd6,0xa3,0x6d,0x29, +0x73,0xc4,0x8c,0xdd,0xb9,0xd5,0x05,0xd6,0x80,0x35,0x4c,0x70, +0x10,0x3d,0xd2,0xd5,0x88,0x08,0x76,0x92,0xb5,0xff,0x87,0xe4, +0x30,0x05,0x71,0xef,0xe2,0x42,0x75,0x49,0xb7,0xce,0x3d,0x49, +0x85,0x5f,0x52,0xe1,0x75,0xe9,0x9b,0x2e,0x6e,0x42,0x55,0x38, +0xda,0xb2,0x32,0x4e,0xbd,0xd2,0x12,0x73,0xa0,0x46,0x1c,0x57, +0xe7,0xfe,0x8a,0x19,0xbe,0xb6,0x61,0x6a,0x3c,0x4e,0xb5,0xd4, +0x01,0xdd,0x43,0x5a,0xb5,0xa8,0x6d,0x9f,0x88,0x13,0x58,0x4a, +0x3c,0x2f,0x63,0x1f,0x14,0x1d,0xa4,0xdf,0x58,0x26,0xda,0x46, +0x44,0x89,0x4c,0xf4,0x37,0xce,0x93,0xbe,0x5a,0xe4,0xf5,0x65, +0xf5,0x63,0xe1,0x4b,0x72,0xfc,0xfa,0x84,0xb4,0x18,0xcb,0x9d, +0xbc,0x7b,0x28,0xa5,0x4b,0x27,0x98,0xb4,0xba,0xa2,0xa5,0xf4, +0x5d,0x69,0xc4,0xfd,0x45,0x74,0xea,0xb2,0xee,0x2a,0x85,0xa2, +0x35,0x01,0x19,0xc3,0x23,0xa7,0x6d,0x19,0xd8,0x46,0xcc,0xd8, +0xc1,0x67,0x18,0x1e,0x84,0xe7,0x65,0xc8,0x08,0x8a,0xcd,0x88, +0x39,0x20,0xa8,0x80,0xc1,0x11,0x46,0x21,0x7b,0xec,0xd7,0xd4, +0x88,0x6b,0x2c,0xa2,0x39,0xfe,0x20,0x7d,0x7f,0xa1,0x9c,0x9e, +0x5c,0x7b,0x67,0x19,0x1d,0x2d,0xae,0xea,0x0f,0xa5,0x8b,0x96, +0x86,0xb1,0xbd,0x39,0xab,0xa1,0x8c,0x26,0xcb,0xf0,0x87,0x0e, +0x93,0xae,0x00,0xca,0x23,0x67,0xe1,0xba,0x61,0xb2,0xae,0xe9, +0x4c,0xe9,0xcb,0xb7,0x41,0xed,0xe0,0x0e,0xb1,0xb3,0xa7,0x64, +0x30,0x04,0x14,0x94,0x30,0x7d,0xef,0xe3,0x9a,0xd5,0xa6,0xd5, +0xec,0xd6,0xfa,0x0a,0xb7,0x74,0xaf,0xe9,0xbf,0x4e,0xba,0x96, +0xb4,0xbe,0x24,0xfa,0x2f,0x88,0xfe,0x2f,0x3b,0x7b,0xaa,0xa1, +0xbf,0x45,0x9d,0x78,0xbc,0x65,0x32,0x4e,0xbd,0xda,0x12,0x8f, +0x42,0x0d,0x2c,0x51,0xf8,0xd2,0xbe,0xa5,0x0e,0x8a,0xe3,0x0e, +0x0a,0xc5,0x8d,0xd2,0xf2,0xa3,0x2e,0x18,0x42,0x8b,0x33,0xdd, +0x51,0xfa,0xf2,0x2d,0xf3,0xeb,0x48,0xca,0x39,0x6e,0xd3,0x4b, +0xd4,0xf9,0x64,0x79,0x62,0x1f,0x67,0x6d,0x5b,0xc8,0xe8,0x86, +0xe2,0x77,0xa4,0xb5,0x93,0x20,0xfa,0xa1,0x02,0x9a,0xea,0xc3, +0xd2,0xd5,0xcc,0xf0,0x9e,0xa2,0x6c,0xab,0x73,0x51,0xd6,0x79, +0x78,0x5c,0xfa,0x5e,0xe2,0xad,0x83,0xcf,0x4f,0x5a,0x58,0x15, +0xfc,0x65,0xb4,0x8b,0x77,0xf9,0x3b,0xbb,0x1b,0x73,0xe6,0x2a, +0x93,0x59,0x42,0x46,0xd7,0xa1,0x85,0xa7,0x1e,0x88,0x1f,0x3a, +0x5b,0xf9,0xbf,0xec,0x11,0x57,0x21,0x15,0xbe,0xcb,0x48,0xc1, +0x4d,0x17,0x32,0x70,0x1f,0xa4,0x57,0x94,0x71,0x14,0xb2,0x7e, +0x68,0xc3,0xa6,0x64,0xdc,0x64,0xc1,0x0d,0x3c,0x82,0xc7,0xc4, +0x1a,0xde,0xc7,0x2f,0x8b,0xcb,0xc5,0x49,0x9a,0x66,0x4b,0x0b, +0x1f,0xf7,0xe8,0x5f,0xf0,0x60,0xe1,0xa3,0xda,0xa0,0x13,0xf1, +0xa8,0x68,0xcb,0x3b,0xec,0xa5,0xf8,0xf9,0x2b,0xdd,0xcb,0x1d, +0x50,0xf8,0xbc,0x97,0xc8,0xbf,0x2f,0x7c,0x64,0xee,0xdd,0x66, +0xc7,0xa7,0x0a,0x94,0x60,0xf2,0x00,0x3c,0x83,0x3f,0xb0,0xb6, +0x0b,0x58,0xdb,0x7f,0xf7,0x88,0x2b,0xc5,0x75,0x4b,0x36,0xba, +0x7d,0x90,0xaf,0xdb,0x64,0x1d,0x8f,0x7c,0x06,0xe8,0x37,0xa1, +0xc2,0xf5,0xc3,0x78,0x88,0xa6,0xd6,0x25,0x3e,0x03,0x70,0xca, +0x9d,0x61,0x72,0x37,0xe1,0x76,0x7c,0xcd,0x5b,0xdd,0x1e,0x71, +0x5e,0x26,0xa6,0x88,0x9a,0xae,0x17,0x1a,0xd6,0x7b,0xb1,0xc1, +0xef,0x42,0xf7,0x80,0xf5,0x36,0x6c,0xac,0x8c,0x1b,0xf9,0x50, +0xea,0x0f,0x70,0xd4,0x70,0xac,0x26,0x4b,0xf5,0xb1,0x11,0x43, +0xbe,0xf8,0x34,0x1e,0xe0,0x9d,0xf9,0x83,0xf6,0xe5,0x1b,0x70, +0x43,0x86,0xd0,0xd0,0xb8,0x71,0xa3,0x2a,0x8e,0x4e,0x61,0x8b, +0xb7,0x86,0x2d,0x9e,0x0f,0x59,0xbc,0xab,0x1d,0xbc,0x87,0x02, +0xb0,0x37,0x0e,0xd0,0xbd,0x69,0xca,0xdf,0x20,0xf3,0x80,0x9f, +0xb9,0x79,0x7f,0x7f,0x8f,0x80,0xcf,0xf1,0x20,0xd9,0x62,0x12, +0x73,0xcb,0xfe,0xe3,0x06,0x1c,0x4b,0xad,0xa4,0x9b,0x5c,0x6b, +0x8e,0xc7,0x6e,0xd4,0xc4,0xd1,0x55,0x58,0xd0,0x2b,0x24,0xa8, +0x12,0xcb,0xc9,0x24,0x39,0x35,0x9d,0xc3,0x05,0xe1,0xd4,0x92, +0xe8,0x9b,0xa2,0x2a,0x45,0xca,0x15,0x2e,0x0b,0xf7,0x87,0x7c, +0xce,0x20,0xdb,0x63,0x9b,0x94,0x1f,0xa5,0xa2,0x38,0x05,0xb9, +0xb8,0xc8,0x13,0x69,0x52,0xbf,0x60,0x0e,0x5b,0xef,0x0f,0x79, +0x71,0x91,0xcd,0xe6,0xfb,0x43,0xe7,0xac,0x81,0x34,0xa5,0x8f, +0x62,0x38,0x99,0x6f,0xa3,0xcc,0x59,0xe9,0x3b,0xd8,0xd1,0x70, +0x17,0x7e,0x68,0x8c,0xf3,0x66,0x3e,0x4d,0xb0,0xdb,0xfd,0x31, +0x9f,0x26,0x28,0x61,0xff,0x79,0x13,0xf6,0xa5,0x56,0xd1,0x4d, +0xaf,0xa4,0xe2,0xbe,0x9b,0x35,0xf2,0x4f,0x14,0x94,0x84,0x97, +0x6c,0xd5,0xb4,0xb2,0x6e,0x6a,0x5d,0xcb,0x26,0x25,0x6b,0x38, +0x07,0x0a,0x3c,0x5d,0x0c,0x3b,0xa6,0x63,0x3f,0x32,0xee,0x54, +0xd1,0x83,0x78,0xcb,0x3d,0xd3,0xe4,0xa9,0x06,0xd2,0xea,0xc2, +0x59,0xa3,0xb0,0x8c,0x9d,0x09,0x9b,0xf6,0xf2,0x71,0x82,0x36, +0xd4,0x0b,0xa3,0x72,0x5f,0xa4,0x68,0xcf,0x22,0xef,0x61,0x35, +0xc7,0x9b,0x9a,0x34,0xf2,0xf5,0xbc,0xcf,0x3b,0xbf,0xa5,0x9f, +0x12,0xb2,0xfc,0x42,0x81,0xfb,0xa5,0xc8,0xa1,0xd4,0x02,0x81, +0x33,0xed,0x76,0xca,0xc2,0x92,0x27,0xa1,0xa4,0xb2,0xf6,0x1b, +0x4c,0x9b,0x43,0x42,0x77,0x16,0xf8,0x9c,0xdd,0x5e,0x59,0xf5, +0x71,0x43,0x16,0x4c,0xaa,0x0a,0xb9,0x02,0xc8,0x26,0x8d,0x16, +0x9e,0xe1,0x02,0xbf,0xf0,0x9c,0x16,0xf5,0x71,0x7d,0x5e,0xa6, +0x80,0x9e,0xfb,0xd1,0x93,0x47,0x61,0xe3,0xbb,0xbf,0x58,0x41, +0x86,0x47,0x86,0xf2,0x02,0x90,0x56,0xe2,0x73,0x48,0xaa,0x2b, +0x6d,0x18,0xfa,0x60,0x7b,0xf0,0x69,0x8d,0x9f,0xb9,0xe2,0x04, +0xac,0x86,0x73,0xd2,0xff,0x35,0x81,0xfb,0xf2,0x96,0x89,0x21, +0x9d,0xb0,0x0c,0x06,0x96,0xff,0xaa,0xdf,0xce,0xdd,0x1f,0x7c, +0xf2,0xce,0xb6,0xa8,0x79,0x0b,0x16,0xbf,0xb4,0x60,0x06,0x94, +0xcd,0x9b,0x27,0xf0,0x43,0xf4,0xb7,0xa5,0x1f,0xff,0x86,0xf9, +0x1b,0xa9,0xfc,0xac,0x9d,0x51,0x07,0xd7,0x9e,0x4d,0xc7,0x6d, +0xaa,0xae,0x95,0xb1,0xc3,0xc6,0xb5,0x17,0x61,0xad,0x85,0x6d, +0x68,0x4a,0x07,0x54,0x15,0xfa,0x77,0x81,0x6d,0xd4,0x93,0x76, +0x46,0x6d,0x5c,0x77,0x36,0x03,0x3f,0xce,0x8d,0x13,0xb8,0xee, +0x82,0xde,0x2c,0x74,0x7b,0x19,0x40,0x51,0x46,0xcc,0x61,0xa1, +0x33,0xec,0xe3,0x90,0xc2,0xe8,0x2c,0xb5,0xf1,0x57,0xfb,0xd9, +0xc5,0x93,0x5e,0x7a,0x6e,0xca,0x73,0x53,0x22,0x5f,0x98,0xbb, +0x7a,0xc3,0xe2,0x4d,0x73,0x3f,0x88,0x82,0xa4,0x9d,0x88,0xd9, +0x50,0xd9,0x9a,0xd1,0xfc,0xf1,0xc7,0xb1,0x74,0xfd,0x6d,0x3d, +0x23,0xbf,0xdf,0xfe,0xd9,0xfb,0x1b,0xde,0x9b,0x3f,0x6f,0xd1, +0xec,0x85,0x32,0x24,0x43,0xe8,0x87,0x0e,0xda,0xcf,0x48,0x3f, +0x1f,0xb1,0xea,0xd3,0xd8,0x20,0xcf,0xef,0x62,0xc0,0x09,0xb5, +0xb9,0xb9,0xee,0xec,0xa2,0x9a,0xdb,0xeb,0xbf,0x84,0xae,0x2b, +0x45,0x9a,0xc0,0xe7,0x49,0xd9,0x19,0xfc,0x98,0xac,0x6b,0x8a, +0x89,0xba,0x63,0x5e,0x8a,0xf7,0x43,0x68,0xe9,0xfa,0xb6,0x68, +0xa9,0x0c,0xff,0xa3,0xf8,0x63,0x5b,0x41,0x32,0xfb,0x9f,0x50, +0xef,0x16,0x95,0x99,0x2c,0x05,0xd9,0xa7,0xa0,0x3f,0xb9,0x79, +0x53,0xbc,0x19,0xb7,0xee,0x41,0x38,0x51,0xdc,0x45,0x29,0xca, +0xaf,0xe7,0xb4,0xbf,0x9e,0x14,0x23,0x45,0xde,0x3a,0x96,0x34, +0xc8,0xce,0xa8,0x8b,0xeb,0x7e,0xc9,0xc0,0xf7,0xa4,0xbf,0x16, +0x7f,0x70,0x3f,0x65,0xc8,0xf0,0x6f,0x85,0x2c,0x13,0xc6,0xc5, +0xed,0xec,0x16,0x4d,0x70,0xc3,0xa9,0x16,0xb8,0x9a,0xfa,0xba, +0xc5,0xd7,0x36,0x6e,0x38,0x0b,0x1b,0x2c,0x6c,0x47,0xce,0x5d, +0xd0,0x6c,0x8d,0xf8,0x5e,0xac,0xd4,0x9d,0xec,0xd3,0x6a,0xfc, +0x2e,0x3d,0xfe,0x34,0x7f,0xd7,0xbc,0xd5,0xfb,0x5d,0xf3,0x7d, +0xa4,0x5b,0x20,0xd2,0x71,0xb6,0xea,0xcb,0x5f,0xbd,0xf3,0xc7, +0xce,0x65,0x6c,0x26,0xcd,0x94,0x71,0xc1,0x7c,0x80,0xa1,0xa2, +0x14,0xeb,0x68,0x1c,0xae,0x14,0xf1,0xaa,0x97,0xdd,0xba,0x3e, +0x4e,0xfe,0xb9,0x0d,0x6e,0x52,0x3e,0x56,0xeb,0x6f,0x6d,0x9c, +0xfc,0x1b,0x4c,0xb6,0xb0,0x96,0x6e,0x2c,0x03,0x28,0xfc,0xb4, +0x33,0x04,0xa5,0xeb,0xc9,0x80,0x91,0xbc,0x81,0x7f,0x90,0x37, +0xf0,0x6f,0xca,0x80,0xd7,0x38,0xb3,0x9a,0x0c,0xf3,0xe5,0xcc, +0x2d,0xe6,0x64,0x82,0x0c,0x98,0x24,0x58,0x6e,0x2a,0x7f,0xb9, +0xbf,0x85,0xaf,0xcf,0xd5,0xf5,0x75,0x96,0x0c,0x0c,0x15,0xdb, +0x74,0x17,0x7b,0xea,0x39,0x18,0x44,0x33,0xf5,0xdd,0x6c,0x18, +0x56,0x17,0x07,0x61,0x45,0x77,0x0d,0x01,0x7f,0x4a,0x5f,0x5f, +0x81,0x13,0xb0,0x32,0x5f,0x45,0x54,0x94,0xa5,0x16,0x4b,0x8f, +0x94,0xe1,0xe4,0x46,0xac,0x91,0x4e,0x5a,0x3c,0x52,0xa4,0x26, +0x92,0xf9,0x89,0x7e,0xd8,0x9e,0x7c,0x1e,0x86,0xc1,0x23,0xf8, +0x5e,0x67,0x78,0xb2,0x0e,0x0e,0xc7,0x8a,0xd2,0xf5,0xa0,0xf8, +0x1d,0xfa,0x7d,0x85,0xfd,0xce,0xc3,0x93,0xdf,0x52,0xb0,0xf5, +0x27,0x7c,0xfd,0x0d,0x9f,0xa4,0xf7,0xca,0x08,0x6b,0xcd,0x32, +0x36,0xb3,0x8c,0x8b,0x7c,0x25,0x42,0xdf,0x23,0x6a,0xa5,0x8c, +0x2e,0x25,0x58,0x7c,0xdd,0xbb,0xb5,0xae,0x2c,0xdf,0x4d,0x70, +0x4b,0x06,0x86,0x08,0x55,0x0a,0x4f,0xe4,0xde,0x62,0x9a,0xed, +0x4c,0x03,0x0f,0x98,0xd6,0x46,0xcb,0x70,0x7f,0x6e,0xed,0xc9, +0x1c,0x75,0x92,0x55,0x7f,0x92,0x49,0x17,0xe2,0x6c,0x5b,0xcd, +0x69,0x6a,0xe9,0x25,0x13,0x17,0x66,0xa9,0x97,0xdf,0xf4,0xe5, +0x0f,0xd5,0xf9,0x9e,0x02,0xd6,0xa3,0x0e,0xd5,0x65,0x2d,0x16, +0xe7,0xf1,0xa0,0xfd,0xa3,0x9a,0xbc,0x4b,0x4f,0xfe,0x41,0xcd, +0xd9,0xad,0x4f,0x9a,0x0f,0xd5,0x3f,0xd9,0x63,0x2e,0x22,0x30, +0xf5,0xcd,0xc6,0xd9,0x7c,0x93,0xd1,0x58,0x7b,0x1d,0x84,0x35, +0x5b,0x30,0x16,0xa3,0x9d,0x9b,0x8c,0xa2,0x9b,0xcd,0x58,0x87, +0x61,0xd2,0x6f,0xcd,0x9d,0x9a,0x58,0xeb,0xf8,0x4e,0xd1,0x91, +0xd2,0x1a,0xce,0x5b,0x6c,0x3f,0x9c,0x54,0x3f,0xb8,0xf0,0xe5, +0xf1,0x76,0x46,0x75,0x5c,0xff,0x47,0x3a,0xee,0x51,0xf5,0xad, +0x8c,0xdd,0x32,0x71,0xb1,0xd0,0x0f,0xe6,0xd5,0x16,0x89,0x38, +0x54,0x06,0x9e,0xa2,0xa0,0xfd,0x63,0x5a,0x9f,0xa9,0xdd,0xf7, +0xa0,0x22,0x1b,0xfb,0x3e,0x74,0x13,0x32,0x30,0x51,0xe8,0x14, +0x29,0x86,0xf1,0x4e,0xd6,0x2c,0x72,0x5c,0x73,0x15,0x19,0x87, +0x87,0x70,0xc3,0xb9,0x0c,0xfc,0x84,0x39,0xc8,0x38,0x6c,0xb8, +0xc8,0x03,0xb6,0xa5,0xae,0x2e,0x43,0xdf,0x12,0xff,0x92,0xd0, +0x69,0x9e,0x07,0x84,0x0e,0xe8,0x21,0x46,0xea,0xfa,0x32,0xe0, +0xd1,0x62,0x59,0xbd,0x39,0x2b,0xba,0x58,0x96,0x6a,0x81,0xcf, +0xcb,0xd2,0x7b,0xf9,0x33,0xde,0x97,0xd5,0x22,0x93,0x29,0x43, +0x8b,0x3d,0xf6,0x10,0x7d,0x74,0x03,0x19,0x10,0x50,0x8c,0x24, +0xec,0x51,0xf3,0x09,0xee,0xcb,0x6a,0xbe,0x97,0x65,0x9c,0xa3, +0x6c,0x1c,0xe3,0xc8,0x74,0x14,0x10,0x85,0xd3,0xdd,0xa1,0xc2, +0xfb,0x69,0xec,0x5c,0xf5,0x95,0xf4,0x8b,0x11,0xac,0x24,0x15, +0x5b,0x1d,0x85,0x6a,0x83,0xef,0xb9,0x73,0xc9,0x2d,0x7e,0xcb, +0x97,0x28,0x7e,0x29,0x03,0xca,0xb0,0x67,0xfe,0x8c,0x48,0x5f, +0x56,0xef,0xb3,0xc0,0x08,0x69,0x79,0x04,0xfc,0x83,0xb5,0x72, +0xdf,0x30,0x54,0x2d,0xb0,0xba,0x0c,0x9c,0x5d,0x5c,0xab,0x05, +0xba,0x8e,0x0c,0x8c,0x31,0xc5,0x0d,0x70,0x98,0x67,0xec,0xdd, +0x44,0x5c,0xc4,0xda,0xb2,0xf4,0x47,0x42,0x96,0xdb,0xcf,0x5b, +0xbf,0x81,0x14,0x62,0x97,0xef,0xc8,0x6e,0xeb,0x88,0x2c,0x3d, +0xdc,0x71,0x0b,0x7b,0xa5,0xef,0x04,0xc7,0x2d,0x4c,0x97,0xbe, +0x43,0x8c,0xb9,0xff,0x4c,0x96,0xcd,0xf5,0x26,0x22,0xae,0x19, +0xcf,0xf0,0xac,0xdd,0x01,0x46,0xd7,0xc5,0xf0,0x2c,0x18,0x58, +0x05,0xfb,0x62,0x03,0xe9,0xea,0x2e,0xae,0x41,0x5f,0x18,0x22, +0x83,0x5b,0x0a,0xac,0x87,0xb4,0xb0,0xac,0x0a,0x21,0xad,0xb4, +0x3f,0x6c,0x55,0xfe,0xad,0x2d,0x3c,0xec,0x43,0xcf,0xd1,0x50, +0xd5,0x0a,0x32,0x62,0x1a,0x50,0x84,0x5f,0x07,0xa3,0xd8,0xaf, +0xe0,0x44,0xe6,0xce,0x21,0xee,0x89,0x30,0x58,0x5a,0xb3,0xf2, +0xeb,0xb9,0x5e,0x50,0xcf,0x53,0x75,0x99,0x72,0x44,0x15,0x1c, +0x8a,0x0d,0xf4,0x2d,0x22,0x1c,0x0c,0x43,0x1a,0x9e,0x85,0xd1, +0xf5,0x6a,0x64,0xc2,0x91,0xbd,0x98,0x72,0x26,0xb7,0xac,0xc0, +0xd7,0x70,0x6e,0x01,0xc3,0x84,0xba,0x98,0x94,0x05,0x03,0x58, +0xb1,0xfa,0xae,0x9d,0x62,0xfa,0x55,0xe8,0x03,0x43,0xda,0x9f, +0x85,0xe1,0x8d,0xf5,0xd7,0xe2,0x47,0x06,0x7e,0x39,0xea,0xae, +0xca,0x0e,0xf2,0x65,0x9b,0x1c,0x70,0x93,0x2b,0xcd,0xf1,0x88, +0xca,0xe1,0x9f,0xbf,0x74,0x93,0xab,0x8a,0x56,0x6a,0x8f,0xd2, +0x0b,0x10,0x6f,0x3b,0x4e,0x6c,0x96,0xdd,0x0e,0x9e,0x44,0x9f, +0xa3,0xe0,0x03,0x53,0xd0,0xe7,0x18,0xfd,0x19,0xbe,0x9f,0x6f, +0x14,0xb8,0x2c,0x7d,0x5f,0x20,0x8a,0xa9,0xe4,0x46,0x3d,0xff, +0x51,0xf4,0xe0,0xaf,0x5f,0x15,0xe8,0x7f,0xd9,0x4a,0xaf,0x6a, +0xe3,0xe8,0xcb,0x7c,0x7e,0x40,0x96,0x9f,0xcf,0xde,0xd0,0x77, +0x45,0x21,0x59,0xb5,0x38,0xf8,0x4f,0xc4,0x5d,0x72,0xa5,0x57, +0x23,0xa2,0x4b,0xe6,0x90,0x81,0xb7,0x37,0xc6,0xd4,0x4a,0x51, +0x36,0x19,0x46,0xb2,0xf7,0xe5,0x0e,0x90,0xeb,0x94,0x01,0x95, +0x0a,0x9a,0xd3,0x1f,0x4b,0x1d,0x1c,0x03,0xab,0xdf,0x3c,0x08, +0xa5,0xa0,0xff,0x3e,0x46,0x7d,0x91,0x36,0x2e,0x39,0xce,0xa7, +0x0d,0x16,0x7e,0x27,0xe0,0x21,0x55,0xc5,0x56,0x39,0x70,0x13, +0xab,0x0a,0xeb,0x04,0x52,0xbc,0xe6,0xc3,0xd1,0x12,0x45,0x12, +0x38,0x18,0xfd,0xf8,0x4b,0x9f,0x9e,0xf6,0x51,0xd8,0x8d,0x5f, +0x74,0x80,0xb1,0x16,0x45,0x2f,0xb3,0xec,0x63,0xf4,0xf4,0x71, +0x07,0x18,0x61,0x05,0x51,0x17,0xcc,0x96,0x31,0x09,0x02,0x17, +0xcb,0xd2,0x53,0xe8,0x9d,0x77,0x12,0xbc,0xa2,0x98,0xc5,0x5d, +0x33,0xd7,0xce,0x5f,0xc8,0x72,0xd7,0xec,0xa1,0xae,0xb9,0xc9, +0xd1,0xc3,0x2c,0xe7,0x30,0x42,0x14,0xad,0x64,0x2b,0x09,0x9c, +0xc2,0x5f,0xdf,0x87,0xea,0x47,0x39,0x48,0xca,0x7f,0x8c,0xa0, +0xc7,0x98,0x82,0xc7,0x74,0x2c,0x4f,0x91,0x91,0x91,0xfc,0x32, +0xb3,0x66,0xe3,0x2e,0x5a,0xb2,0x16,0xa9,0x57,0xbc,0xc0,0x4f, +0x2f,0x91,0xb3,0x3f,0x26,0xcc,0x4b,0x90,0xc1,0xd4,0x6d,0xf3, +0x65,0xd9,0xca,0x77,0xcd,0x77,0x8e,0x1c,0x0c,0xb6,0xd5,0xcb, +0x0f,0xca,0x32,0x5f,0x18,0xe8,0xa2,0x9f,0xd8,0x9e,0xdd,0x83, +0xb6,0x22,0x56,0xc6,0x36,0xa2,0xbb,0xdd,0x64,0xe1,0x18,0xac, +0xcd,0x77,0x30,0x8c,0x81,0xda,0x4d,0xa6,0x4b,0xbf,0xaa,0x7c, +0x04,0xe1,0x09,0xfb,0xa4,0xfa,0xbc,0x99,0xa5,0xff,0x41,0xb4, +0x55,0x03,0x38,0x93,0x91,0x88,0x1b,0x6f,0x64,0x58,0x39,0xb8, +0xc6,0x86,0x07,0x60,0x23,0x3e,0xe0,0xd2,0xc9,0x64,0xf5,0xd4, +0x2c,0x86,0x7f,0x8a,0x81,0x7f,0x75,0x16,0x75,0xe4,0x57,0xb8, +0x85,0xf7,0x94,0x21,0x07,0xa7,0x51,0x47,0x7e,0x85,0x9b,0x33, +0xa1,0xbf,0x15,0xe4,0x5d,0x08,0xac,0x50,0xaf,0xdb,0x8e,0x14, +0xfc,0x59,0x35,0xb0,0x78,0x17,0x75,0x23,0x8b,0xb2,0x68,0xa9, +0x39,0xcd,0x73,0x9d,0x26,0xdf,0xb2,0xc2,0x05,0xc2,0x0a,0x35, +0xcb,0xce,0xa8,0x82,0x9b,0x2e,0x67,0xe0,0x51,0xd5,0xd0,0x10, +0x6f,0xba,0xc5,0x1b,0xeb,0xed,0x71,0x9c,0x6d,0x20,0xa7,0x3c, +0x57,0xc5,0x0e,0x7c,0xcf,0xbb,0x7a,0x58,0xa1,0x06,0xca,0x0a, +0x7c,0x59,0x4e,0x63,0x81,0x0f,0x60,0x59,0x5a,0x27,0xc8,0xb2, +0xbf,0x0b,0x98,0xaa,0x3b,0xdb,0x6a,0xe5,0x77,0x7a,0x1a,0xb4, +0x56,0x13,0xf6,0xe9,0xdd,0xb8,0xa0,0x82,0x08,0xa2,0x35,0xc2, +0x8a,0xf1,0xee,0x24,0x81,0x43,0x1a,0xf3,0xc9,0x85,0x1a,0xce, +0x2a,0xa2,0x30,0x2b,0x5e,0x57,0x77,0x56,0x12,0x05,0x59,0x27, +0x71,0xac,0xb3,0x96,0x58,0xa1,0xc6,0x78,0xb3,0xae,0xe0,0x16, +0x67,0x39,0x51,0x98,0xa5,0xe3,0x88,0xf1,0xfb,0xdb,0xf2,0x58, +0x98,0xb3,0xb0,0x58,0xae,0x46,0x7a,0x33,0x1b,0x60,0x8d,0xc2, +0xb5,0xc5,0x0a,0xf5,0x9c,0xd1,0x7c,0xb4,0x3d,0xc6,0xf3,0x2d, +0x9f,0x60,0x18,0x4e,0x0b,0x89,0x2e,0x4c,0xbe,0xd2,0xce,0x48, +0xc2,0x8d,0xd7,0xd3,0xf1,0xb4,0xb7,0x03,0x36,0x42,0x09,0xa7, +0xb7,0xa6,0x4a,0xbf,0x6f,0xc5,0xcf,0xb8,0xc8,0x5d,0x56,0xfc, +0xcd,0x94,0x8b,0x6d,0xe9,0x3f,0x4f,0xc8,0x90,0x2f,0xc5,0x3f, +0x4e,0x17,0x3d,0xe3,0x9e,0x21,0x52,0x71,0x15,0xad,0x43,0x3c, +0xcd,0x59,0x9d,0x15,0x5c,0xf3,0xe0,0xc6,0xe4,0xac,0xaa,0xd1, +0x82,0xe4,0xde,0x3c,0x7c,0xcc,0x81,0xd6,0x29,0x32,0xd2,0x8f, +0x4f,0x39,0x4c,0xb3,0xd5,0x7b,0xfb,0xf4,0x12,0x99,0x38,0x55, +0x58,0x71,0x22,0xe8,0x3e,0x6c,0x6d,0x90,0x22,0xcb,0xdb,0xea, +0x62,0x14,0x15,0x5e,0xb6,0x74,0x83,0xf9,0xf6,0x29,0xb5,0xac, +0xa9,0xe5,0x2e,0x49,0x93,0x4d,0xd5,0x54,0x75,0x64,0xdc,0x34, +0x31,0x5c,0xcf,0xa3,0xf1,0x72,0x1e,0xb7,0xb4,0x73,0xc6,0xcb, +0x9b,0x34,0x5e,0xce,0xe3,0xe6,0x76,0x3c,0x5e,0xaa,0x09,0xbd, +0xf0,0x94,0x85,0x5b,0xd5,0x50,0xb3,0xe7,0xb0,0x02,0x12,0x52, +0x75,0x6d,0xe9,0x3f,0x87,0xd1,0xf3,0x56,0x58,0xb0,0xcf,0xfc, +0x18,0x4b,0x44,0x93,0x0d,0x51,0x77,0xb3,0xd5,0xb0,0x02,0xe2, +0x52,0x75,0x4d,0x43,0x94,0xcc,0x44,0x6f,0x99,0x1f,0x61,0x89, +0xa8,0x9b,0x21,0xaa,0x4f,0x44,0xf1,0x0e,0x51,0x35,0x55,0xd3, +0xfc,0x98,0xbf,0x02,0x92,0x98,0xf0,0x08,0xae,0x96,0xe1,0xfd, +0xf9,0x5a,0x83,0x9e,0xa7,0x54,0x4f,0x17,0x6e,0x1d,0x21,0x5d, +0x47,0xcd,0x8f,0xae,0x32,0xa0,0x89,0x90,0xb2,0xbf,0x80,0x4f, +0xcc,0x6f,0xb1,0x9e,0xd9,0x14,0xcd,0xa9,0xe6,0x5c,0x0a,0x07, +0xf4,0xd3,0x9e,0x95,0x26,0x47,0xc3,0xa7,0x32,0xf6,0x3d,0x0a, +0xd8,0xcc,0x8f,0xb4,0x45,0x68,0x0e,0xe2,0xb5,0xdc,0xad,0x62, +0x17,0x3f,0x37,0x31,0x3c,0x17,0x28,0xe8,0x0b,0x9b,0xc5,0x2a, +0x4d,0x30,0x2a,0x3d,0xea,0xd5,0x3b,0x3e,0x55,0xd7,0x28,0x50, +0x29,0xd9,0x39,0x9c,0xf1,0x94,0xf4,0x5d,0xcb,0x94,0xb3,0x0c, +0xe5,0x00,0xfe,0x5d,0x5a,0x06,0x91,0xf7,0x19,0x6a,0x7e,0xa5, +0xcd,0x9d,0xa7,0x3e,0xb1,0x61,0x54,0xba,0x9e,0x77,0x14,0xc6, +0x40,0xd0,0x7e,0x97,0xfe,0x1d,0x5a,0xca,0xd0,0x1d,0x5c,0xf0, +0xa5,0x0d,0xc3,0xd2,0xf5,0xe4,0xa3,0x30,0x58,0xfb,0x0a,0x68, +0x21,0x43,0xfb,0x73,0xee,0x61,0x1b,0xba,0xa6,0xeb,0x6e,0x47, +0xe1,0x61,0x2f,0x79,0x7d,0x19,0x9a,0x2a,0xf2,0x84,0x3a,0x64, +0x63,0x90,0x5a,0x24,0x2c,0xca,0x7a,0xf6,0xb2,0x80,0x14,0x5d, +0x2b,0x2f,0x86,0x19,0x0e,0xd9,0x94,0x6b,0x28,0x1b,0xcb,0xd0, +0xb4,0x3b,0x72,0x2e,0xdd,0x91,0xb3,0x98,0x42,0x14,0x5b,0xe8, +0xee,0x47,0xa1,0x0b,0x57,0x4c,0x39,0x29,0x4c,0xb3,0xd3,0x86, +0x01,0xe9,0x7a,0x82,0x57,0x9d,0x54,0x69,0x51,0x87,0x54,0xd4, +0x35,0xf5,0x1b,0x5c,0xb8,0xdf,0x86,0x9e,0xe9,0x7a,0xcc,0x51, +0x18,0xc2,0x85,0xcd,0x64,0xe8,0xf7,0x42,0xc6,0x4d,0x17,0xf0, +0x12,0xf4,0xe4,0xab,0x0a,0x03,0xe6,0x53,0x8c,0xf0,0xa7,0x80, +0x76,0xfc,0xf8,0x8f,0xf6,0xb1,0xd5,0x1f,0xfb,0xf4,0x1f,0x96, +0x9a,0x88,0x2e,0xbb,0xd9,0x82,0xd1,0xd8,0xda,0x17,0x33,0xac, +0xd1,0xd0,0xba,0xd9,0x8c,0x0d,0x98,0xea,0x8b,0xc9,0x59,0x0a, +0xf6,0x60,0x25,0x72,0x2d,0x64,0x70,0xd4,0xe3,0xd2,0xf5,0xb1, +0x80,0x8d,0xaa,0xb1,0xdd,0x01,0x53,0xa4,0xdf,0x17,0xc2,0xc2, +0x8b,0xbb,0xec,0x4a,0x50,0xfd,0x9a,0x45,0xc6,0xab,0xba,0x37, +0xb5,0x5a,0xfa,0xfe,0x2a,0x72,0x1f,0xa2,0x28,0xe9,0x12,0x8e, +0x3c,0xa4,0x66,0xb7,0xc6,0xd1,0xd5,0xa0,0x7f,0x1b,0x3d,0xea, +0xa0,0xa5,0x2b,0x53,0x08,0xee,0xdf,0x4c,0x74,0xd0,0x75,0x60, +0x0c,0xf1,0xa8,0x7a,0xfc,0x94,0x49,0x4f,0xa3,0xbd,0xa2,0xaa, +0x19,0x51,0xd5,0xbc,0xa9,0x97,0xf5,0x78,0x77,0x53,0x96,0xb5, +0x80,0x64,0xf5,0x3e,0xa4,0xfa,0xb5,0xc6,0x1e,0xd5,0x20,0xab, +0x8d,0x6e,0x67,0x64,0x55,0x85,0x45,0x82,0xd8,0x64,0x58,0xac, +0xc8,0x5d,0xc0,0x7b,0x7c,0x21,0x1d,0x04,0x74,0xbd,0x84,0xbd, +0x0e,0xa9,0x81,0x2e,0xbd,0xbf,0xbf,0x7e,0x81,0x8a,0x77,0xca, +0x88,0xb5,0x22,0xf7,0x7b,0x01,0x23,0x60,0x91,0xed,0x1e,0x29, +0x54,0x7c,0x07,0x8b,0x1c,0xda,0x45,0xcf,0x62,0xf2,0x0d,0x1a, +0xec,0x19,0xf0,0x00,0x26,0x0a,0x2c,0x89,0xfd,0x31,0x83,0xf1, +0xa4,0xce,0xdb,0x3a,0x16,0x36,0xa8,0x58,0x57,0x1b,0xfc,0x83, +0x3f,0xe5,0xdf,0x6c,0xd0,0x9c,0xef,0xe4,0x97,0x76,0x23,0x5a, +0x0d,0xbb,0x05,0xbc,0x29,0x7d,0x3d,0xff,0xa3,0x02,0x1d,0xc6, +0x15,0x0c,0xc4,0x8c,0xbc,0x6c,0x01,0x3e,0xee,0x36,0x82,0xfc, +0xea,0xd0,0xdd,0xb9,0x49,0x62,0x97,0xcb,0x88,0xde,0xa8,0xe2, +0xa9,0x4b,0xe3,0x89,0xd9,0x62,0x85,0xc3,0xe3,0xc5,0x5d,0x72, +0x43,0xbf,0xe4,0x9e,0x98,0x4c,0x3d,0x31,0xf4,0x90,0x9a,0xd2, +0x1a,0x9f,0xac,0x06,0x7d,0xda,0xe8,0x21,0xa6,0x27,0xda,0xe4, +0xf7,0xc4,0x71,0xd2,0xc9,0xc3,0x78,0xf2,0x56,0x84,0x90,0xf1, +0x0d,0x84,0xce,0x32,0xe5,0x75,0x9d,0xae,0x20,0x95,0x1a,0xe1, +0x89,0xd7,0x0d,0x0d,0xce,0x94,0x31,0x8b,0x4c,0x0b,0xb0,0x8e, +0x0c,0x00,0x27,0x6f,0xbe,0x8c,0x48,0x75,0xf8,0x32,0x0d,0x5f, +0x9d,0x02,0xbe,0xe6,0xf8,0xa3,0xe7,0x92,0xc8,0xfb,0x5d,0xe8, +0xc5,0x39,0x10,0x2a,0xfd,0xc6,0x93,0xe1,0x90,0x01,0xe3,0x19, +0xb8,0x4b,0xb8,0x27,0x9b,0x82,0x79,0x39,0x10,0xe8,0x2d,0xa0, +0x79,0x93,0xe7,0xa7,0x7e,0xb4,0xf7,0x61,0x00,0x84,0x64,0xe8, +0xc9,0x39,0x14,0xc5,0x04,0x7c,0x47,0x0f,0xb6,0x4b,0x0f,0xe3, +0xf2,0xfe,0xc2,0x93,0x46,0x76,0x24,0xe7,0x1f,0xf7,0x8f,0x02, +0xca,0xf1,0xc4,0x91,0x11,0x35,0xa9,0x7e,0x1d,0x60,0xab,0x31, +0xfb,0xf5,0xd7,0xf8,0x51,0x05,0xa1,0x96,0x1e,0xd0,0xcf,0x52, +0xc0,0x42,0x84,0xbd,0x49,0x00,0x53,0xc6,0x5e,0x16,0xb8,0x4a, +0x2f,0xb4,0xd5,0x33,0x30,0x51,0x1f,0x6a,0xab,0xa6,0x55,0xd4, +0xcf,0x62,0x6b,0x22,0x7d,0xf7,0x80,0x5e,0xe8,0x90,0xf6,0xcc, +0x81,0x07,0xf2,0x49,0x77,0x6a,0x8f,0x9e,0x29,0x6e,0xcf,0x3d, +0x46,0xb9,0x57,0x05,0x2c,0xcf,0xb2,0xe9,0x3d,0xc7,0xe1,0x06, +0xeb,0x40,0xb6,0x0d,0xc9,0xb4,0x60,0x4a,0xbe,0x43,0x82,0x77, +0xf2,0x16,0xcb,0xe5,0xb9,0x7b,0x5b,0xc6,0xa5,0xdb,0x33,0x16, +0x9b,0x8c,0xee,0x39,0xff,0x7a,0x9f,0x53,0x84,0xf4,0xed,0x20, +0xa8,0xfd,0xbe,0x19,0x7a,0x42,0x0e,0x94,0x81,0x00,0xd3,0x33, +0xdc,0x19,0xb1,0x3c,0x7f,0xa1,0xa2,0xae,0x66,0xeb,0x4a,0xd8, +0x49,0xa8,0x39,0xb9,0x11,0x42,0x57,0x82,0x40,0xc5,0xb3,0xee, +0xbe,0x4c,0xde,0x49,0x4f,0x1d,0x7d,0xcc,0x74,0x74,0xd9,0x0c, +0xfd,0x4b,0x0e,0x3c,0xe6,0x90,0xc5,0x30,0x59,0x25,0x19,0xd6, +0xca,0xbc,0x9a,0x97,0x73,0xa0,0xb4,0x79,0x35,0x29,0x32,0x34, +0xdd,0xe4,0xac,0xca,0x81,0x18,0xe7,0x95,0x44,0x32,0x65,0x4a, +0xee,0x9b,0x22,0x93,0x42,0x39,0xec,0x58,0xbd,0x5e,0x5c,0xdc, +0x85,0xfa,0xd0,0x11,0xb2,0x2e,0xfc,0xf2,0xcf,0x3f,0xd5,0xcf, +0x60,0x56,0x2c,0x74,0xc7,0xee,0x76,0xc7,0xce,0x59,0x64,0x5a, +0x13,0xb2,0xf7,0xec,0x2e,0xbf,0xc2,0xb5,0x67,0xe7,0x1e,0x48, +0x80,0x84,0x1d,0x59,0x59,0xe5,0x83,0x64,0x70,0x6b,0x32,0xaa, +0x39,0x50,0xd6,0xa9,0x38,0x9c,0xc5,0xc5,0xcb,0xb0,0x08,0xd3, +0x05,0x63,0x28,0xdf,0xdb,0x07,0x64,0x88,0x98,0xf2,0x65,0x06, +0x1f,0x29,0x42,0x59,0x60,0x97,0x98,0x7c,0x40,0x0e,0xf8,0xe7, +0xbf,0xa6,0xd5,0x7a,0x81,0xad,0xc6,0x7d,0xa7,0xc7,0xdd,0x54, +0x33,0xf6,0xeb,0x23,0x78,0x8d,0x5e,0xf3,0xd6,0x03,0x7a,0xa9, +0x15,0x74,0x4f,0x39,0xff,0x1f,0x06,0x8d,0x6b,0x9b,0x98,0x03, +0xe5,0x41,0xec,0x45,0x01,0xfe,0xa6,0x53,0xed,0x76,0x18,0x87, +0x81,0x10,0xdb,0x4e,0x27,0xc0,0x5c,0x0b,0x0e,0xa9,0x24,0xf5, +0xa6,0xd0,0x41,0xb2,0x0c,0x4d,0x82,0x40,0x6a,0x6f,0xa0,0x75, +0x12,0x57,0xd9,0xb8,0xb2,0x3d,0xac,0xb4,0x74,0x27,0x8c,0x91, +0x7e,0x57,0xc4,0xe1,0x2c,0xa8,0x07,0xf5,0x0e,0xef,0xf9,0xfe, +0x83,0xa7,0xb7,0x64,0xbf,0x51,0x7e,0x01,0x3c,0xb4,0xc7,0x6d, +0xb9,0xe0,0x47,0x8a,0xc3,0xfd,0xea,0x88,0x9b,0x9f,0x0c,0xee, +0xda,0xad,0xe7,0xe0,0xa4,0xd8,0xa0,0xdc,0x45,0xe6,0xb2,0x8c, +0x24,0x08,0x6c,0xa7,0x5f,0xdc,0x0f,0x61,0x37,0xb1,0xfc,0x01, +0xf5,0x26,0x59,0xa9,0x2e,0xd2,0xda,0x2e,0x20,0x10,0x52,0x6c, +0xa8,0x70,0x93,0x51,0x79,0xf6,0xa6,0xc8,0x32,0x81,0xe4,0xe9, +0x65,0xc2,0x3f,0xd4,0x63,0x83,0x85,0x9e,0xb9,0x1f,0x42,0x6f, +0x62,0xb9,0x03,0x7c,0xc8,0x63,0xff,0x23,0xc6,0x06,0x8f,0x80, +0x37,0x6d,0x36,0xc0,0xaa,0x71,0x07,0x0b,0xda,0xe1,0x5a,0x1b, +0xca,0xdd,0x64,0xe4,0x96,0xbd,0x35,0x6f,0x37,0xc7,0xf8,0x8a, +0xb6,0xf8,0xe6,0xe8,0x37,0x8e,0xc2,0x59,0x77,0x8e,0x30,0x7f, +0x71,0x13,0x59,0xb4,0xea,0x2a,0xdc,0xbe,0x89,0xd1,0xb2,0x4c, +0xe4,0xdd,0x0c,0x3b,0xf9,0xc0,0xad,0x36,0x96,0x4b,0x02,0x12, +0xda,0x17,0xc7,0xcb,0x78,0xea,0x24,0xc7,0xb0,0x57,0x57,0xe5, +0x88,0x2f,0xe4,0x80,0x9a,0xdd,0x16,0x23,0x92,0xc0,0xaf,0x9d, +0x1e,0xb5,0xdf,0xd2,0x89,0xf7,0x36,0xec,0x24,0x6a,0xb3,0x8d, +0x65,0x93,0xa0,0x2c,0x8b,0x1a,0x73,0x2f,0x23,0x5f,0x5d,0x3d, +0x48,0x72,0x4b,0x1c,0x50,0xfd,0xda,0xa2,0x48,0xba,0xd5,0x4e, +0xb7,0x33,0x62,0xd9,0xc6,0xb3,0x32,0x9a,0x62,0xf7,0xf1,0xc6, +0xd2,0x57,0x57,0x11,0x44,0x28,0x59,0x71,0xe9,0x1a,0xcd,0x85, +0x9b,0x65,0x88,0xa4,0x28,0x4f,0x35,0x10,0x58,0x43,0xc6,0x50, +0x98,0x1a,0x70,0x88,0x56,0x84,0xd2,0xda,0x27,0x4c,0xaf,0xcb, +0x90,0xef,0xc5,0xdf,0x37,0xb1,0xd4,0x81,0x02,0xaf,0x40,0xdd, +0x1d,0x6b,0x43,0x99,0x9b,0x58,0x86,0xba,0xac,0x01,0x3b,0x08, +0xc9,0x07,0xd6,0xfe,0xa7,0x1b,0x90,0xd6,0x90,0x62,0x66,0x1e, +0xde,0x47,0xc9,0x8a,0xf5,0x71,0x9c,0xc1,0x21,0xaf,0x33,0x60, +0x61,0xf7,0x33,0xf9,0x46,0x4c,0x11,0xeb,0x4e,0x4d,0x78,0xcd, +0x11,0x43,0x96,0xff,0xde,0x85,0xe4,0x00,0xcc,0x78,0x98,0x6e, +0xc6,0x83,0x3c,0xa0,0x96,0x4b,0x6b,0x11,0xb7,0x25,0xd9,0x86, +0x68,0x7a,0x95,0xd4,0x96,0x07,0xb9,0x0f,0xa6,0xca,0x98,0x20, +0xa7,0xe5,0x18,0x9c,0x04,0x0f,0xb4,0xd3,0x43,0xf6,0x83,0x45, +0x6d,0x3d,0xa0,0xa6,0x50,0xfb,0x7b,0x80,0xe1,0xa9,0x6c,0x43, +0xc4,0x4d,0x3e,0xed,0x63,0x86,0x4c,0x15,0xf3,0x46,0xaa,0x78, +0x53,0x6b,0x75,0xb2,0x74,0x8d,0xe1,0x9e,0x4e,0xb4,0x1d,0xbe, +0xb6,0x05,0x92,0xf8,0x9d,0xb4,0x71,0xde,0xc9,0x46,0x9b,0x07, +0x40,0x04,0xbf,0xd5,0x51,0xec,0x79,0x88,0x3e,0x98,0xe8,0xbb, +0x1f,0x50,0x67,0xdb,0x7a,0x47,0xfa,0x34,0x43,0xdf,0xd5,0x0c, +0xf1,0x31,0xf0,0xa9,0x8d,0x15,0x92,0xa0,0x02,0x33,0x4c,0x92, +0x11,0x37,0xee,0xf3,0x2a,0x65,0x58,0xb2,0xd3,0xd6,0x71,0x46, +0xf5,0xb8,0x03,0x6a,0xf5,0x9d,0x6d,0x95,0x65,0x67,0x08,0x59, +0x3a,0xbb,0xc0,0xdb,0x2d,0x23,0x6f,0x67,0xea,0x63,0x6f,0x57, +0xd0,0x6d,0x05,0x3e,0x8f,0x28,0xf3,0x7d,0xde,0xa1,0x7c,0x9f, +0xc7,0x79,0x5e,0x9f,0x47,0xdc,0x99,0x86,0xbb,0xce,0x6d,0xdc, +0x8e,0xe7,0xcb,0x1d,0xce,0xfd,0xf9,0x44,0x02,0xa4,0xcb,0x90, +0x5d,0x42,0x37,0x85,0xb9,0x90,0x7d,0x0b,0x9f,0xcd,0x51,0x8b, +0x5d,0xfa,0xb9,0xde,0x52,0xee,0x10,0xe8,0xd1,0x41,0x70,0x45, +0xe4,0xfa,0x50,0xe4,0xe3,0x94,0x64,0x14,0xa3,0xb7,0xf0,0x10, +0x45,0xb1,0x44,0xa8,0x43,0xd0,0x63,0xc3,0x53,0xf8,0x49,0x0e, +0x00,0x7e,0x61,0xa9,0x7d,0x98,0x2a,0x7d,0x68,0x61,0xf5,0xab, +0xf0,0x0d,0x22,0xee,0xe9,0xc4,0x3d,0x22,0x47,0x4d,0xce,0xc0, +0xc1,0x09,0x90,0x26,0xa3,0x1f,0xe3,0x6f,0xd8,0xa7,0x48,0xf1, +0xa5,0xc8,0xc8,0xdb,0x2f,0xb0,0x3c,0xd7,0x30,0x8f,0x68,0x1e, +0xce,0x51,0xdd,0x32,0xb0,0x67,0x02,0x34,0x69,0x87,0x49,0x18, +0x04,0x09,0xed,0x75,0x8a,0x53,0x4b,0x0d,0x9b,0x73,0xc8,0x62, +0xb5,0x33,0x39,0xed,0xf6,0xd8,0xf4,0x90,0x4c,0xe6,0x0b,0x0e, +0x61,0x32,0x05,0xa7,0x94,0x0e,0xb2,0x9e,0xc3,0x9f,0xa4,0xef, +0x74,0xea,0x82,0xe3,0x02,0xbf,0xd5,0x1e,0x59,0xba,0x8c,0x49, +0x43,0x73,0x5d,0x0b,0x32,0x29,0x79,0x58,0x40,0xa6,0x0c,0x5f, +0x6d,0x52,0xf8,0x8d,0xf6,0x40,0x05,0x93,0x7c,0x98,0x22,0x1f, +0xdf,0x67,0x44,0x6e,0x29,0xb5,0xc4,0xfe,0x1b,0x1f,0xcf,0x51, +0xdd,0x65,0x54,0x07,0xf1,0xaa,0x0c,0x7b,0x92,0xf3,0xa6,0x53, +0xde,0x20,0x83,0xba,0x35,0x38,0x1e,0x32,0xda,0x63,0x15,0xaa, +0xac,0x52,0x7b,0x32,0x03,0x73,0x2c,0x3c,0x48,0x46,0x41,0x7e, +0x2d,0x30,0x4a,0xd7,0xec,0x47,0x2b,0xc9,0xcf,0xc5,0xef,0xb8, +0xc2,0xc6,0xb5,0x59,0xb0,0xd6,0x4a,0xc7,0x41,0x32,0x32,0xcf, +0xdb,0xc7,0xc3,0x12,0x28,0xf0,0x8e,0x7b,0x57,0x40,0xdb,0x5b, +0x38,0x21,0x47,0xbd,0x4c,0xfd,0x3b,0x50,0x4a,0x5a,0xc6,0x9d, +0xe3,0xe0,0xe0,0xf9,0x2a,0x96,0x9e,0xf7,0xf4,0xc2,0x76,0x6a, +0x96,0xfa,0x55,0xe8,0xc3,0x2e,0xee,0xb1,0x25,0xd4,0x1b,0xbd, +0xcc,0x65,0x3c,0x8f,0x26,0x40,0xfd,0x76,0x32,0xa4,0x99,0x70, +0x3a,0x82,0xed,0x77,0xbb,0xdd,0xdc,0xfa,0x78,0xa7,0xf5,0xf1, +0xdc,0xfa,0x78,0x6a,0x3d,0x2e,0xd6,0xb9,0xb6,0x2c,0x73,0x44, +0xe8,0x93,0x78,0x2d,0x5e,0xa8,0x6d,0x07,0x68,0x76,0x97,0xfd, +0x54,0xe0,0x35,0x19,0xb3,0xd5,0x68,0x87,0x69,0xf8,0xf3,0x87, +0x42,0x75,0xc2,0x6e,0x36,0x59,0xf4,0x2c,0x78,0x70,0x86,0x4b, +0x56,0x18,0x24,0x5c,0xb4,0xe4,0x49,0x65,0xd3,0xfe,0xd7,0x36, +0x32,0xed,0xbd,0x06,0x27,0x7a,0x4d,0xbb,0x5e,0xc5,0xf6,0x19, +0x47,0xb3,0x0f,0x1d,0xbb,0x5f,0xcd,0x6c,0x87,0xc3,0x5a,0x41, +0x06,0x99,0xd3,0x64,0xa8,0x9a,0xa5,0x1b,0xc2,0x68,0xc8,0x76, +0xe1,0x06,0x98,0x24,0xcb,0x2d,0x10,0x38,0xf7,0xee,0x36,0xd9, +0x53,0x51,0xe8,0xe5,0x07,0x2c,0xfc,0x18,0x9e,0xb5,0xbf,0xc7, +0xd1,0xfb,0xd5,0xf4,0x3b,0xa4,0x58,0xb8,0x41,0x35,0x66,0x19, +0xb0,0x86,0xad,0x31,0x73,0xcc,0x26,0x8e,0x6d,0xf0,0x84,0x7d, +0x18,0xfb,0xef,0x57,0xa3,0xda,0xe1,0xa0,0x96,0x90,0x91,0x85, +0x55,0x2b,0xca,0xc4,0xb5,0xe4,0xd2,0xab,0x26,0x43,0x65,0xc7, +0x0e,0x67,0xee,0xb4,0x93,0x21,0xe5,0xba,0x05,0x1b,0x30,0xc5, +0xae,0x08,0x29,0x37,0x2c,0x78,0xc5,0x98,0x5e,0x16,0xd2,0xcf, +0x54,0xdb,0x97,0xaa,0x7d,0x6c,0xbf,0x6a,0xd7,0x0e,0x3b,0xb4, +0xa2,0x50,0x21,0xa6,0x8e,0x38,0x83,0x87,0x65,0x78,0x57,0xc7, +0x9a,0xe8,0x81,0x6c,0x41,0xf1,0x63,0x5c,0x4c,0x64,0xbd,0xf6, +0xab,0x6c,0x69,0x1d,0xe4,0x8b,0x7f,0x41,0xfa,0xbd,0x4c,0x33, +0xa6,0x02,0x3e,0x89,0x2d,0xf2,0xba,0x91,0x0d,0x64,0xc8,0xd6, +0x33,0x39,0x2a,0x96,0x21,0x5b,0x65,0x44,0xbd,0xff,0x8b,0x61, +0x2d,0x1b,0x20,0xc8,0x98,0xbe,0xcd,0xd7,0x49,0x25,0x41,0x4c, +0x2b,0x22,0xd9,0x4c,0x24,0xfa,0x7d,0xa2,0x29,0x1a,0xa0,0x7b, +0x32,0x84,0x1a,0x31,0xc7,0x26,0x1a,0xfa,0x47,0x4e,0x6c,0x86, +0x80,0xb7,0x8d,0xc5,0xa5,0x5a,0xee,0x1b,0x64,0xcf,0x10,0xd8, +0x49,0x43,0x5e,0x1f,0xb1,0xc1,0xba,0xa4,0x66,0x30,0x4e,0xeb, +0x3b,0x9e,0xe9,0xfc,0xe9,0xd9,0xaf,0xd2,0xef,0xa0,0xc8,0xb4, +0x26,0xc2,0xc8,0xb6,0x33,0xd7,0xe0,0x50,0xdf,0xb4,0x4e,0xf0, +0xe3,0x2e,0x47,0xb2,0x4b,0x86,0x3d,0x61,0x3a,0x67,0x8a,0xe9, +0x9c,0x11,0x32,0x2a,0x4c,0xf4,0xd0,0xd5,0x64,0xe9,0x4a,0x34, +0x40,0x92,0x05,0x2c,0xd6,0xfd,0x64,0xf8,0xab,0x34,0x2b,0xb6, +0x08,0x88,0x60,0x13,0xc4,0xb4,0x23,0x0d,0xed,0x93,0xd4,0x43, +0x8f,0xef,0x57,0x59,0xdc,0x43,0x4d,0x1c,0xeb,0xb3,0x45,0xe0, +0x74,0xdc,0x67,0xb7,0x57,0xaf,0x55,0x73,0xe9,0x37,0x79,0x04, +0x2f,0x5f,0xeb,0x8b,0x61,0xc7,0xe1,0x92,0xa3,0xde,0x43,0x8e, +0x41,0x22,0xb2,0x57,0x74,0x09,0x5b,0xfd,0xb7,0x4f,0xff,0x67, +0xa9,0x27,0x70,0x8b,0xbd,0x11,0x9a,0xf0,0x85,0x9e,0x19,0xbe, +0x98,0x4d,0x81,0x4c,0x46,0xb3,0x19,0x1b,0xb1,0x89,0x2f,0x56, +0xcf,0xca,0x0d,0xd9,0xe3,0x0c,0x99,0xc2,0x2a,0xbb,0xef,0x27, +0x37,0x4c,0x55,0xa6,0x39,0x26,0xeb,0x09,0x76,0x7e,0xf1,0x6b, +0xc4,0x55,0x28,0x85,0x15,0x0e,0xb3,0xa5,0x9a,0xda,0x5b,0x26, +0x46,0x0a,0x38,0x08,0xb5,0x6c,0x08,0xa7,0x5c,0x0a,0x9d,0x9e, +0xa9,0x2c,0xe3,0x86,0x09,0xcc,0xd3,0x81,0x64,0xbc,0xd4,0x7f, +0xaa,0x82,0xed,0xa5,0x6e,0xc9,0xac,0x3c,0x6d,0x9b,0x33,0x8f, +0x6a,0x0c,0xef,0xdb,0x18,0x8e,0xa5,0x38,0xdc,0x0a,0xc0,0xa7, +0x99,0x49,0x07,0xa2,0xfb,0x5e,0x86,0x8c,0x24,0x55,0x66,0x49, +0x61,0x87,0xd5,0xe4,0x96,0x18,0x84,0xa5,0xce,0xb4,0xc7,0xaa, +0x34,0x11,0x2b,0xb7,0xd7,0xf5,0xe1,0x25,0x16,0xdb,0xd0,0xe6, +0x9c,0x00,0xa8,0xdc,0xce,0xe4,0x50,0x05,0x1b,0xf9,0x84,0x6a, +0x29,0x08,0xe6,0x0a,0x46,0xda,0x54,0x94,0x02,0x01,0x16,0x1c, +0xe4,0x4b,0xc4,0x29,0x3e,0xe2,0x19,0x5c,0xa3,0x98,0x21,0x54, +0xe7,0x05,0x29,0xda,0xad,0x25,0xfa,0x62,0xa9,0xd3,0xed,0xb1, +0x22,0x51,0x25,0xb2,0x11,0x34,0xe2,0x6b,0xd8,0x9c,0x13,0x00, +0x89,0xed,0x4c,0x0e,0x89,0xa7,0xd1,0x25,0x48,0xbc,0x60,0xf1, +0x43,0x59,0x7c,0xb2,0x23,0x3e,0x39,0xdf,0x3c,0x4e,0xe5,0xe3, +0x1d,0x6c,0x12,0x27,0x0a,0x7c,0x97,0x4d,0x62,0x27,0x27,0xfd, +0x65,0xbe,0x79,0x9c,0xc8,0x97,0x1c,0x38,0xe6,0x71,0x28,0x5f, +0x68,0x6e,0xcc,0xe3,0x50,0xbe,0x6c,0xd0,0x31,0x8f,0x43,0x45, +0x57,0xc7,0x3c,0x92,0x66,0x58,0xe2,0xb0,0xea,0xde,0x52,0x06, +0x4f,0x30,0x7d,0x98,0x44,0xda,0xc4,0x53,0x95,0x15,0xf2,0x86, +0x8b,0x95,0x6c,0x2c,0xa9,0x7f,0xaa,0x71,0xff,0x04,0x1f,0x56, +0x13,0xa8,0xa7,0x57,0x0b,0xc7,0x40,0x26,0x46,0x73,0x4f,0xbf, +0x43,0x1a,0x91,0xa6,0x81,0xac,0xe9,0x70,0x19,0x47,0x35,0xd8, +0xc6,0x68,0x46,0xf8,0x8a,0xb7,0xf4,0x53,0xd2,0xaf,0x93,0x78, +0x6f,0xf1,0xfb,0x73,0x3e,0x97,0xfe,0xbd,0xc4,0xac,0x5a,0x9d, +0xba,0xe0,0xa4,0x07,0xdf,0xef,0x14,0x09,0x91,0xdf,0xfc,0xfc, +0xf1,0x17,0x1f,0xbf,0xb6,0x68,0xf9,0x8b,0xcb,0xa7,0xc3,0x1b, +0x58,0x2e,0x72,0xeb,0x4e,0x72,0x28,0x3c,0x08,0x30,0x04,0x4b, +0x9d,0x6f,0x8f,0xd5,0xa8,0x9d,0x55,0x4c,0xff,0x5f,0x70,0xde, +0x31,0xd9,0xd6,0xa9,0x03,0x65,0x62,0x14,0x8f,0x08,0xd2,0x26, +0x98,0xf5,0xa1,0x11,0x91,0x22,0xe3,0x86,0x0b,0xfc,0xf9,0xae, +0xe6,0x96,0x75,0xc0,0x4b,0xc6,0x48,0x46,0x58,0x02,0x9b,0xfe, +0x9f,0x8d,0xe4,0x62,0xb6,0x20,0x6f,0xee,0xa7,0x98,0x17,0x3f, +0xd3,0x11,0xf6,0x29,0x8c,0xd8,0xab,0x5e,0xcc,0xc4,0x90,0xa6, +0x67,0xa4,0xeb,0xac,0xc0,0x75,0x2a,0xcd,0xe6,0x04,0xfc,0x03, +0xef,0xd9,0x58,0xa6,0xa9,0xac,0x30,0x59,0x90,0x91,0x0e,0xb2, +0xd5,0x66,0x5c,0x79,0x1c,0x7e,0xd6,0x60,0x79,0x65,0xac,0xda, +0xcf,0x86,0x76,0xa8,0x0e,0xb1,0x59,0xc4,0xcc,0x4c,0x0c,0x6e, +0x74,0x36,0x0b,0xab,0x27,0x43,0x35,0xb6,0x90,0x23,0x2f,0xbb, +0x70,0x1d,0xfc,0x24,0x63,0x96,0x0b,0x7c,0x49,0x96,0xaf,0x2a, +0x3c,0xc9,0x64,0x54,0xf7,0x5b,0xf8,0x19,0x94,0xb7,0x4f,0x63, +0xf8,0x5e,0x35,0xfd,0x76,0x0e,0x8b,0x2a,0x6f,0xcc,0x0c,0xf0, +0x96,0xb1,0xa9,0xc9,0xc2,0x9d,0x62,0x18,0x5e,0x25,0x86,0x29, +0x7b,0x73,0xad,0x4c,0x2c,0xdf,0xe8,0xbc,0x4c,0x7a,0x86,0xb5, +0xcc,0xb6,0x39,0x01,0x8a,0xf1,0xf6,0xc2,0x1b,0xf1,0x97,0x0b, +0xbf,0x51,0xc0,0x25,0xc2,0x04,0xac,0xc3,0x06,0xfc,0x17,0x9b, +0xe9,0x77,0xa5,0xdf,0x55,0xa1,0x0e,0xf1,0x47,0xaa,0x54,0xf9, +0x6c,0x92,0xf5,0x29,0x84,0xd9,0x3f,0xa2,0xff,0x5e,0x35,0x2a, +0x13,0x4b,0x37,0x3e,0xc3,0x66,0x99,0xcd,0x73,0x96,0x31,0xcf, +0x59,0x64,0x9e,0x47,0x5a,0x24,0x92,0x5e,0x7b,0xe9,0xc6,0x50, +0xda,0x85,0xbf,0xe3,0x08,0xaf,0xad,0x5e,0x47,0x83,0xdf,0x49, +0x2d,0x70,0x6c,0x35,0x09,0xec,0x67,0x94,0xf3,0xb5,0x4f,0x27, +0xee,0x55,0xed,0x32,0x93,0x1b,0x7d,0x9f,0x85,0x55,0x92,0xa1, +0x52,0x16,0x8d,0x4c,0xd3,0x96,0x87,0xc8,0xb1,0xdd,0x62,0x15, +0xc9,0x15,0xf9,0x35,0x02,0x3f,0x56,0x71,0xa2,0x8c,0xcf,0x13, +0xe7,0xf0,0x7b,0x36,0xe6,0xd2,0xfe,0x95,0x4f,0x74,0xfc,0x3f, +0xd6,0xde,0x3b,0xae,0xaa,0xa3,0x69,0x1c,0x8f,0x89,0xf7,0x5c, +0x58,0x15,0x44,0x3d,0x72,0xef,0x65,0xa5,0xd9,0x7b,0x8f,0x2d, +0x36,0x14,0x45,0xaa,0x8a,0x62,0x8d,0x1a,0x7b,0xef,0x0d,0xa4, +0x2a,0x36,0xac,0x54,0x7b,0x79,0xa2,0xb1,0x46,0xb1,0x37,0x50, +0x41,0xa5,0xd9,0x22,0x82,0x9a,0x68,0x8c,0x25,0xa6,0xd8,0x92, +0xa8,0x49,0xf6,0xe0,0x2c,0xbc,0xbf,0x99,0x73,0xc0,0xf8,0xd4, +0xf7,0x79,0xbf,0x9f,0xdf,0x1f,0x70,0xf7,0xec,0x99,0x9d,0x99, +0xdd,0x9d,0x99,0x9d,0xd9,0xb3,0xe5,0x16,0x77,0x08,0x65,0x45, +0xd3,0xc9,0xf2,0x90,0xa7,0xac,0xb7,0xed,0xd8,0x2b,0x64,0xe1, +0x4f,0xc3,0x6b,0xe4,0xf6,0xc3,0x5c,0xb2,0xf0,0x89,0x54,0xa1, +0xff,0x6c,0xe1,0xd5,0xde,0xff,0x8d,0x85,0xaf,0xfe,0x11,0x13, +0x47,0x79,0xf5,0xdf,0x89,0xa4,0xd8,0x6d,0xb8,0xc9,0xbd,0xff, +0xb3,0xd1,0x46,0xde,0x82,0xfe,0x4f,0x46,0x1b,0x31,0xdb,0x93, +0xd1,0x36,0x2a,0xb3,0xe9,0x8a,0xb6,0x09,0x2b,0x23,0x2b,0x71, +0xe7,0x09,0x0c,0x22,0xe4,0x13,0xee,0xa0,0x96,0xbe,0x8a,0xbe, +0x82,0xbe,0x30,0xca,0xa1,0xc2,0x9d,0x51,0x91,0xf7,0x1b,0xfe, +0x2e,0xb5,0x6d,0xb4,0xde,0xb6,0x0e,0x94,0x3d,0x5c,0x36,0xd4, +0x4d,0x7d,0x85,0x11,0x4c,0x58,0x74,0xf3,0x8e,0xef,0xa7,0xeb, +0x9d,0x59,0x45,0xbd,0xeb,0x9e,0x4b,0xd6,0x3d,0x91,0x75,0x36, +0xac,0xfb,0x08,0x74,0xbb,0xff,0xad,0x75,0xd7,0x3f,0xc0,0xbe, +0x56,0x7f,0xd3,0x56,0x5d,0x96,0xab,0x7e,0xd3,0x36,0x5e,0x91, +0x3f,0xc1,0x73,0x74,0x3a,0x72,0xc9,0xe9,0xa0,0xa2,0xab,0xfe, +0x2f,0x16,0xff,0x7d,0x2e,0x3c,0x72,0xc9,0xe0,0x27,0xb2,0xee, +0xba,0xc1,0xd7,0xe6,0x89,0x6f,0xd4,0x1f,0xc4,0x51,0xf1,0xd4, +0x07,0x4d,0x62,0x33,0xf1,0x91,0x2f,0x14,0x74,0x13,0xb7,0x7c, +0x8d,0x07,0x1f,0xf8,0x49,0x1c,0x6d,0xbe,0x8e,0xc9,0x78,0x51, +0x47,0xc5,0x0c,0xb3,0x68,0xa6,0x88,0x61,0xd5,0x45,0x33,0x30, +0x43,0x33,0x5e,0x63,0x3a,0x2b,0xda,0xcf,0xc4,0x07,0xb2,0x1f, +0x77,0xee,0x4b,0x98,0x7e,0x50,0x1f,0x23,0xa6,0xc7,0x3e,0xd8, +0x3d,0xcd,0xfe,0xf4,0x85,0x2b,0xdd,0xc4,0x35,0x5f,0x3d,0xed, +0x03,0x0f,0xc5,0xd1,0x56,0xd2,0xdc,0x98,0x30,0xd5,0xe2,0xf6, +0xe8,0xb7,0xeb,0x58,0x3e,0x82,0x66,0xca,0x3d,0x39,0x8c,0x96, +0x26,0xce,0xd3,0x3e,0x50,0x1f,0x60,0xe9,0x6b,0x3e,0xf5,0xa0, +0xd9,0x0b,0x5f,0x38,0xdd,0x4d,0xa4,0xf9,0x52,0xd2,0x07,0xae, +0x88,0xa3,0x6d,0xf4,0x93,0x8d,0xe2,0x85,0x3b,0x72,0xf1,0x5b, +0x19,0x13,0x75,0xb0,0xf4,0x48,0xd8,0xc1,0xd9,0x79,0x26,0xf7, +0x31,0xb8,0x23,0x1f,0xf3,0x8a,0x43,0xf4,0xe4,0x03,0x4a,0xba, +0x51,0x52,0x78,0xca,0x9a,0xc5,0xc7,0xf5,0x94,0x59,0x7e,0xc6, +0xd9,0x31,0xfd,0xfd,0xf7,0xf2,0xb1,0x1a,0xfb,0x2b,0x77,0xfc, +0x95,0x41,0x7b,0x6e,0xca,0x61,0xbf,0x89,0xe9,0xd9,0xdc,0x3c, +0xcd,0x78,0xc7,0xab,0x0f,0x61,0xdc,0xda,0x9b,0xcd,0x83,0xbf, +0x95,0xd4,0x63,0x72,0x17,0x14,0xaa,0x8b,0x7e,0x15,0x9f,0x89, +0x89,0xdc,0xae,0x2b,0x1d,0x02,0xed,0x56,0xdc,0x90,0x2a,0xfb, +0x4a,0xc5,0x3a,0x89,0xbb,0x3e,0x1e,0xd0,0xec,0x8d,0x2f,0x5c, +0xec,0x26,0xb2,0x7c,0x29,0xe9,0x03,0x5f,0x8b,0xa3,0x1f,0x8f, +0xc7,0x11,0x23,0x5e,0x78,0x70,0x4f,0x37,0x3a,0x68,0xac,0x1f, +0x67,0x9d,0xa9,0xa9,0x7e,0x90,0xe8,0x1e,0x77,0xc2,0x60,0x42, +0x65,0x9d,0xe5,0x70,0x6e,0x99,0x46,0xd5,0x56,0xd4,0xef,0x10, +0x4f,0x5e,0xaf,0xba,0xd0,0xfc,0xa5,0x2f,0x1c,0xef,0x26,0x4e, +0xfa,0x52,0xb2,0x17,0xe4,0x88,0xa3,0x6d,0xa5,0x59,0x5f,0x70, +0x83,0xb8,0x6a,0xa8,0xd0,0xfc,0x37,0xd1,0x5c,0xaf,0x79,0xf3, +0x3a,0xd0,0x5c,0x81,0x58,0xd8,0xa6,0xaf,0xb8,0x51,0x99,0xb4, +0x81,0xe0,0xee,0x75,0xf5,0xb4,0x18,0x09,0xa7,0x54,0x09,0xfe, +0x1a,0xf0,0x1a,0x9e,0x34,0xb5,0xbc,0x11,0x1d,0x24,0xb1,0xc6, +0x4b,0x9e,0x2b,0x14,0x8b,0x84,0x0b,0x3a,0x83,0x50,0x99,0xdb, +0x4f,0xc7,0x2a,0x2f,0x10,0x0f,0x03,0xb9,0xf9,0x11,0x5a,0x14, +0x13,0x28,0xe2,0xa3,0x40,0xf8,0x4e,0xcc,0xaf,0x69,0x5e,0xda, +0xba,0x45,0x5c,0x4b,0xee,0xb8,0x8d,0x49,0x17,0xd1,0x9b,0x7b, +0x7a,0x30,0x08,0x93,0xe5,0x54,0x2d,0x0e,0x62,0x6e,0x8b,0x0c, +0x79,0x8b,0xae,0xba,0xd7,0x36,0x13,0xca,0x55,0x5e,0x32,0xad, +0x50,0x2c,0x24,0x94,0x87,0xa0,0x02,0xaf,0x8e,0xa6,0x2e,0x01, +0x4a,0xb8,0xeb,0x11,0x56,0xb4,0x08,0x21,0xfe,0x7a,0x7f,0xc5, +0x8c,0x00,0x7e,0x04,0x20,0x76,0xca,0xde,0x6a,0xf4,0xa2,0xa5, +0xab,0x4c,0xdb,0x78,0x65,0x33,0x83,0xea,0x1e,0xae,0xe7,0x3e, +0xbd,0x9c,0x71,0xf2,0xd8,0xde,0x63,0xdc,0xfe,0x1b,0x5a,0x77, +0xe4,0x68,0x39,0x77,0x06,0x5c,0x85,0x7d,0x54,0x4a,0xe4,0x8a, +0x88,0x28,0xab,0xdc,0x79,0x9f,0x2e,0x99,0x5a,0x9a,0x2f,0x2e, +0xa1,0xb3,0xe0,0x80,0x88,0x3f,0x57,0xc5,0x52,0x2f,0xb9,0xad, +0x50,0x4c,0x2e,0x45,0xdc,0x81,0x3b,0x3b,0x33,0x31,0x57,0x8e, +0xe4,0x6a,0x30,0x51,0x3e,0xac,0x8a,0xf9,0x5e,0x32,0xb2,0x50, +0x0c,0xd6,0x01,0x52,0x71,0x50,0x71,0xae,0xce,0x44,0x2e,0x5c, +0xe6,0xd5,0x7a,0xb0,0xa2,0x35,0x0c,0x3c,0xe5,0x7c,0xee,0x5a, +0x13,0x15,0xd0,0x8e,0x81,0xb7,0xbc,0xcd,0xad,0x1b,0x8d,0x74, +0x7f,0x34,0x6f,0x96,0x14,0x3d,0x2d,0xbe,0x94,0x2e,0xdc,0xf9, +0x0a,0x81,0x8b,0xad,0xb2,0x3f,0xaf,0x96,0xaa,0x97,0x44,0x88, +0xe2,0xfe,0xac,0x64,0x28,0x5b,0xdc,0xd2,0x45,0x3c,0x7a,0xa6, +0x72,0x07,0xf4,0x82,0xc2,0x91,0xaf,0x77,0xef,0xb8,0xad,0x3c, +0x5b,0xdc,0x8a,0x3b,0xb6,0x67,0x6f,0x37,0xb3,0xae,0xa8,0xaa, +0xcc,0x1e,0x83,0xef,0x42,0x31,0x9a,0x2b,0x7e,0x74,0x33,0xce, +0x6d,0x5e,0xf5,0x0b,0xea,0x94,0x2d,0xd4,0x82,0x2b,0xbd,0xe4, +0xa9,0x42,0x11,0x6d,0xb4,0xa0,0x1d,0x37,0xe5,0x31,0x18,0x2d, +0xd3,0xb9,0x5b,0x34,0x41,0xec,0x23,0x88,0x28,0x2f,0xb9,0xb9, +0x50,0xcc,0x30,0x20,0x3e,0xd2,0x6b,0xba,0x5b,0xaa,0xbc,0xc6, +0x41,0xaa,0xe9,0x41,0x55,0x2c,0xf0,0x92,0x09,0x7a,0x53,0x5c, +0xa6,0x9a,0x76,0xa2,0x9a,0x2e,0x90,0x56,0x5e,0xed,0x29,0xbd, +0xdf,0xa8,0x52,0xb7,0xcb,0x42,0x91,0x59,0xda,0x54,0x7d,0xd5, +0xee,0xd1,0xad,0x16,0x35,0x5a,0x6c,0xf7,0xe6,0x5f,0xf6,0xbd, +0x3b,0xf7,0xb0,0x67,0x22,0x98,0xfa,0xfc,0x47,0xd9,0x9e,0x5b, +0x87,0xfe,0xd5,0x91,0xc8,0x66,0x54,0x29,0x92,0x9e,0xc4,0xa7, +0x58,0x21,0x03,0x78,0xb5,0x0e,0x04,0xb0,0x49,0x15,0xab,0xbd, +0xe4,0x19,0xbd,0x1e,0x3a,0x40,0x0f,0x02,0xb8,0x06,0x7b,0xb9, +0x6d,0x3a,0xe3,0xd5,0xfe,0x60,0xdf,0xc9,0x41,0xdc,0xe2,0xcc, +0xf4,0x96,0xd8,0x53,0x28,0x96,0xeb,0x2d,0x31,0x1c,0x6e,0x72, +0xe7,0x28,0xaa,0xe7,0x4e,0xaa,0xe7,0x62,0x2f,0x79,0xb0,0x50, +0x44,0x1a,0xf5,0x54,0x78,0xf5,0x07,0x0c,0xa6,0x42,0x11,0x77, +0x6f,0xaa,0x37,0xbb,0x1b,0x76,0x98,0xa9,0x27,0xfb,0x41,0x8b, +0xcc,0x95,0x97,0xe1,0xda,0xdb,0x2c,0x1d,0xaf,0xf8,0x1f,0x84, +0xe0,0xb3,0xff,0x1e,0x71,0x5f,0xb8,0x25,0x0b,0x18,0xf8,0x40, +0xa0,0x2a,0x1a,0x2f,0x56,0x06,0xcc,0x9b,0x37,0x69,0x9c,0x2d, +0x20,0xbf,0xbf,0xf8,0x58,0xb4,0xb9,0x91,0x99,0x97,0x3a,0x6f, +0xdf,0xc0,0x6d,0xae,0x09,0xa2,0x51,0x36,0x4d,0xb8,0xdd,0x83, +0xb1,0xdc,0x6d,0x05,0x2b,0x5a,0x46,0xee,0x4e,0xa2,0xa7,0x58, +0xec,0x23,0x4f,0x5d,0x17,0xcb,0x7f,0x87,0xc4,0xeb,0xda,0x0d, +0x33,0x1c,0x96,0x43,0xb9,0xfd,0x1c,0xf4,0x84,0x87,0x88,0x27, +0x7d,0xc0,0xdc,0x58,0x98,0xfa,0xc2,0x9d,0x01,0xe2,0x9b,0x60, +0x3d,0xdd,0x07,0x1e,0x8b,0xa1,0xb5,0xcd,0xcb,0xbc,0xbb,0x2e, +0xef,0xee,0x12,0x1f,0x60,0x12,0xbe,0xa2,0xef,0xba,0x1d,0xc2, +0xd9,0x0d,0x9e,0x89,0x40,0xb5,0xb1,0xb0,0x83,0x97,0x0c,0xec, +0x1a,0x2b,0xe8,0xd6,0x68,0xaa,0xb6,0x0d,0xe6,0xdf,0x12,0x27, +0xe5,0x53,0x94,0x15,0x9d,0xda,0x5a,0x4f,0xb1,0xd0,0x47,0x9e, +0xb8,0x2e,0xe2,0x7e,0x87,0xa4,0xeb,0xda,0x75,0xa2,0x36,0x90, +0x3b,0x5b,0x18,0xd4,0x83,0xdf,0x55,0x31,0x1e,0xe6,0x16,0x88, +0x63,0x70,0x48,0x11,0xb7,0x03,0x54,0x31,0x16,0xe6,0xde,0xc4, +0xa7,0x03,0x58,0xd8,0x4d,0x1b,0xa2,0x1a,0x25,0x7c,0xde,0xe1, +0x50,0xc0,0x24,0x3e,0xa0,0xb2,0x9a,0x13,0x9d,0xec,0x54,0x81, +0x15,0x0f,0x16,0x41,0xa4,0x36,0xe1,0x37,0xc4,0x69,0xba,0x9b, +0x0d,0x4b,0x75,0xc2,0x52,0x77,0xaf,0x17,0x35,0xf7,0x81,0x03, +0x9e,0x62,0x9b,0x4f,0xb1,0x03,0x96,0x52,0x84,0xb7,0x1a,0x14, +0xdd,0x65,0x51,0xfb,0x25,0x76,0xbf,0x63,0x1d,0x9f,0xf7,0x01, +0xfb,0xc6,0xc2,0xdc,0x17,0x1e,0x0e,0x10,0x8f,0x83,0xf5,0x74, +0x1f,0x78,0x2a,0x86,0x42,0x39,0xf3,0xb2,0xee,0x5d,0x97,0x77, +0xd3,0x2b,0xe9,0x27,0xfa,0xa6,0xec,0x14,0x16,0xaa,0x64,0x08, +0x56,0xb2,0x02,0x55,0xb2,0x42,0x63,0xc5,0x4f,0x86,0xab,0x22, +0xb8,0x33,0x0c,0xc7,0x11,0xea,0xd2,0x65,0x9d,0xe2,0x68,0xa4, +0xb8,0xe4,0xba,0x76,0xd2,0x07,0x96,0x7a,0x8a,0x50,0x1f,0xb9, +0x8d,0xf8,0xfc,0x95,0x1a,0xf4,0x67,0x24,0xf6,0xa0,0x0f,0x94, +0x6f,0x2c,0x3e,0xec,0x0b,0xf9,0x03,0x44,0x41,0xb0,0x9e,0xee, +0x03,0xf7,0xc5,0xd0,0x06,0xdc,0x29,0x99,0x19,0x8d,0x89,0x74, +0xf4,0xc6,0xf4,0x41,0x3a,0x0a,0xd1,0x51,0x1a,0x2b,0x42,0xa0, +0x05,0xb5,0x46,0x30,0xd9,0xee,0xaa,0xba,0x60,0x5c,0x8f,0xf9, +0x3e,0x2e,0xe1,0x22,0xac,0x07,0x2c,0x96,0x5f,0xb3,0xd3,0x6e, +0x0e,0xdc,0x7c,0x87,0xdd,0xe6,0x15,0x4e,0x32,0xcd,0x1d,0x96, +0x94,0x1d,0x41,0xb6,0x18,0xe6,0xa9,0x91,0x22,0xde,0x1b,0xb6, +0x2b,0x1e,0x6c,0x8b,0xf2,0xf0,0xf6,0xf6,0x6d,0xa7,0xdd,0xe6, +0xe7,0x70,0x53,0x23,0xa6,0xbd,0x12,0x1f,0x00,0x63,0x8b,0xcd, +0x23,0x42,0xe7,0x4f,0x1e,0x63,0x0b,0xcc,0x1d,0xf4,0xfa,0x75, +0xee,0xd9,0xdc,0x43,0xf3,0xf7,0x7d,0xb6,0xd5,0x35,0xde,0xdc, +0x18,0xea,0xa9,0x61,0x4a,0xbf,0x31,0xbb,0x4e,0x9f,0x3a,0xbc, +0xeb,0x82,0xdb,0x66,0x25,0xf3,0xf0,0xf4,0x61,0x9f,0x8e,0x99, +0xde,0x1f,0x29,0xa9,0x3d,0xd9,0x00,0x99,0xa3,0x3e,0xd1,0xd6, +0x8a,0x31,0xf2,0x61,0x90,0x96,0xd2,0x42,0xae,0x85,0x96,0x58, +0xfb,0x8c,0xdc,0xb2,0x2e,0x9e,0xe7,0x29,0x26,0xf8,0xc8,0xf9, +0xd7,0xc5,0x98,0xdf,0x61,0xf2,0x75,0x6d,0x15,0x75,0xb1,0x1b, +0x7c,0xc9,0xba,0xc8,0x3c,0x75,0xc1,0x73,0x31,0x5d,0x8c,0x81, +0xd3,0x41,0x62,0x76,0x13,0x98,0x0e,0xad,0xdd,0xd9,0x11,0x45, +0xd8,0x3d,0x4e,0xd8,0xf8,0x15,0x5d,0x4d,0x1b,0xde,0xab,0x49, +0xac,0xbb,0x0b,0xdd,0xb5,0xf9,0x86,0xfd,0x67,0x5c,0xcd,0x64, +0x1e,0xe7,0x8d,0x98,0xd8,0xde,0x5b,0x15,0xfb,0x50,0x21,0xf6, +0x29,0xd7,0x82,0x55,0x51,0x07,0xd6,0x40,0x9d,0xff,0x8d,0x0d, +0xcd,0x22,0x1d,0xb9,0xd3,0x56,0x26,0x52,0x45,0xb1,0x8f,0x22, +0x67,0x43,0x96,0x1a,0xcb,0xcb,0x63,0x50,0x39,0x0a,0x5a,0xb9, +0xb3,0xbd,0xca,0xcf,0x5f,0x81,0xc2,0x22,0x06,0x7a,0xc5,0xb6, +0x76,0xd1,0x66,0x63,0xf8,0x5c,0x0f,0x83,0x3f,0xfa,0xbc,0x80, +0x6d,0xfc,0x9a,0x8a,0x57,0x91,0xfe,0xdc,0xbd,0x17,0x03,0xfb, +0xb1,0x7d,0x30,0x02,0x73,0x74,0x5d,0x74,0x8a,0xd7,0x88,0x63, +0xaf,0xee,0x24,0xae,0xcf,0x75,0x5b,0x9e,0x92,0x3e,0x82,0xbb, +0x27,0x30,0xee,0x7e,0x88,0xc1,0x77,0x77,0xd5,0xfb,0xdc,0x2c, +0xd9,0xc7,0xe6,0xa5,0xde,0x5d,0xe3,0x50,0x57,0x82,0xfe,0xd2, +0x95,0xd8,0x8b,0x81,0xba,0x00,0x5a,0x81,0x09,0x1b,0xb7,0x9b, +0xc0,0x1a,0x61,0x85,0x2a,0xff,0xce,0xd6,0xb2,0xc6,0x30,0x0e, +0x5a,0xf1,0x8a,0xcf,0x99,0x78,0xce,0xed,0x54,0x56,0x46,0x16, +0x2b,0xac,0x72,0x8e,0xfe,0x57,0xbc,0x58,0x56,0x72,0x96,0xc1, +0x45,0x6e,0x37,0x9e,0x85,0x89,0x41,0xbe,0x8b,0x77,0x40,0x70, +0xc9,0x23,0x86,0x82,0x37,0x1b,0x05,0x6f,0xe2,0x75,0x6d,0x85, +0x4f,0x69,0xd5,0x67,0x93,0xe0,0xfd,0xa2,0x1a,0x84,0xec,0xde, +0x63,0x85,0x3b,0x61,0x30,0xf2,0x4c,0xb4,0x27,0xba,0x5a,0x7b, +0xc0,0xb6,0x1a,0xd9,0x97,0x76,0xce,0x7f,0x01,0x6b,0xd4,0x98, +0xe7,0x62,0xa4,0x18,0x4d,0x07,0xaf,0x8f,0x69,0x0c,0x23,0xa1, +0x95,0xf2,0xf6,0x6b,0x96,0x63,0x8a,0x08,0xfe,0x24,0xb6,0xb1, +0x8b,0x56,0x84,0xbe,0x9d,0xe3,0x14,0x16,0x90,0x35,0xf0,0xc5, +0x8b,0xac,0x73,0x79,0x87,0xe7,0xef,0x1f,0xb5,0xd5,0x75,0xad, +0xb9,0x05,0x34,0x54,0x23,0x94,0x41,0xe3,0x77,0x9f,0xe6,0xf6, +0x7d,0xd8,0xa7,0xe3,0xa7,0x0d,0x72,0x33,0xfa,0x80,0x3b,0x05, +0x33,0xb1,0xe8,0x77,0x58,0x75,0x5d,0xcb,0xa6,0xe6,0x0f,0xe6, +0xce,0x56,0x06,0x0e,0x72,0x17,0xdd,0x2f,0xb8,0x43,0xa4,0xe3, +0xa8,0x7a,0x27,0x90,0x56,0x0f,0x7b,0xc9,0x8e,0x65,0xdd,0x16, +0xe9,0x29,0xa6,0xfb,0xc8,0xf8,0xeb,0x62,0xde,0xef,0x10,0x75, +0x5d,0xdb,0x4d,0xe5,0x3a,0xe8,0xb2,0x5d,0x45,0xda,0xab,0xb2, +0xeb,0x2f,0x5d,0x61,0x8f,0x3b,0xd3,0x3e,0x17,0xf7,0xbc,0x14, +0xd8,0x52,0x5e,0x76,0x7d,0xa3,0x75,0xd5,0xf5,0x6e,0x8a,0x6a, +0x14,0xf0,0x79,0x87,0x42,0xd7,0x3b,0x2a,0xa9,0xca,0xee,0xdc, +0xfa,0x25,0x43,0x37,0xa8,0x46,0x00,0xb5,0xd4,0x20,0x04,0x4d, +0xbf,0xae,0x69,0x3e,0x90,0xe0,0x29,0x62,0x4b,0x4d,0xc9,0x2b, +0x5e,0xfe,0x0c,0x3a,0x07,0xff,0xde,0xe6,0x79,0x72,0x0f,0x1c, +0x20,0x7b,0xbf,0x67,0xe2,0x44,0xa8,0xac,0xab,0x86,0x26,0x46, +0xaf,0x08,0x8d,0x9c,0x1d,0xc6,0x9d,0x8e,0xb0,0xb3,0xb6,0x5d, +0x1d,0xe7,0x98,0x9b,0x0d,0x0c,0x86,0xb8,0x66,0xae,0x47,0xfb, +0x08,0xcb,0xf9,0xfb,0xc7,0xcf,0x9e,0xb0,0xae,0x54,0x30,0xd0, +0x5c,0xb1,0x69,0x21,0x06,0x9a,0x36,0xcb,0xd1,0x6c,0x13,0xb1, +0x3b,0x54,0x35,0xda,0xc5,0x87,0x1a,0x09,0xc9,0xff,0xce,0x3d, +0x46,0x32,0xf8,0x66,0x80,0xb8,0xc7,0x6d,0xbf,0x33,0xad,0x1c, +0x56,0xda,0x35,0x8c,0x75,0x77,0x75,0xff,0x3e,0x2a,0x29,0x62, +0x65,0x04,0x58,0x59,0x6a,0xd2,0xe1,0x33,0xb6,0x3d,0xdd,0x67, +0x98,0x5b,0x0f,0xef,0xcd,0x6b,0xdd,0x63,0x49,0x09,0xc9,0x71, +0x49,0xb1,0xa2,0x31,0x58,0x2c,0x05,0xe7,0xd3,0x8f,0xee,0x3b, +0x92,0x14,0x9f,0x48,0x19,0x0d,0xa1,0xa2,0x25,0xed,0xfc,0x3b, +0x22,0x68,0x33,0xaf,0xf9,0xc0,0x1a,0x4f,0x11,0xe3,0x23,0xbf, +0xa4,0x8a,0xbe,0x56,0x03,0x63,0x74,0x91,0x78,0x86,0x95,0x7d, +0xd8,0x07,0x4c,0x8d,0xc5,0x47,0x7d,0xa1,0x70,0x80,0xb8,0x1d, +0xac,0xa7,0xfb,0xe0,0x98,0x38,0xb4,0x1e,0x77,0x88,0x60,0xc2, +0x97,0x3b,0xce,0x65,0xa2,0x1d,0xe0,0xa8,0x3d,0xa0,0x41,0xf7, +0xc6,0x0d,0x5f,0x74,0x17,0x03,0x44,0xc8,0x8b,0x9b,0xcf,0x9f, +0x36,0xb8,0x09,0x21,0x6e,0x62,0x1c,0x74,0x55,0x07,0x05,0x0d, +0x86,0x86,0xd0,0x90,0x3b,0xd5,0x65,0xa2,0xa1,0x68,0x98,0x33, +0x78,0xa0,0xab,0x03,0xaf,0xf6,0x86,0xd6,0xbe,0xf4,0x50,0x43, +0x13,0x62,0xe2,0xc2,0xa2,0xc2,0x22,0x2d,0x4b,0x56,0xed,0xde, +0x97,0xfc,0xe5,0xca,0x23,0x56,0x91,0x90,0x27,0x9f,0x04,0x88, +0xcd,0xca,0xe2,0x2e,0x01,0x83,0x61,0xbe,0x57,0x6a,0x5f,0x0c, +0xc6,0xcf,0xdc,0x3f,0x74,0xf6,0x88,0xdd,0x4a,0x85,0x3b,0xfd, +0xce,0x90,0xfb,0x43,0x17,0x75,0xee,0x49,0xa0,0x17,0x5f,0xd7, +0x76,0x95,0x09,0xf4,0x38,0xe2,0xfe,0x11,0x2a,0xc3,0x5e,0xc8, +0x12,0x03,0x4a,0x2d,0xc4,0x62,0x4f,0x31,0xcf,0x47,0x6e,0xbf, +0x2e,0xa2,0x7e,0x87,0x65,0x68,0x76,0x49,0x5e,0xbc,0xb9,0xf3, +0x58,0x74,0xb2,0xe0,0xa5,0xaa,0x25,0xb6,0x55,0xe4,0xe6,0x79, +0x09,0x01,0x5a,0xf2,0x17,0x26,0xf8,0xe8,0x96,0xb8,0x2a,0xef, +0x9b,0x75,0x2b,0x36,0x58,0x66,0xa9,0x8f,0xb5,0x25,0xb9,0x72, +0xc9,0x23,0x2d,0x31,0x4f,0x3e,0x80,0x5c,0x34,0x62,0xe7,0xd1, +0x84,0x13,0xef,0x38,0x76,0x61,0x59,0x2d,0x4f,0x6a,0x8a,0x36, +0x89,0xd7,0x46,0x7d,0xeb,0xa3,0xcc,0x16,0xf5,0x68,0x49,0xa5, +0x87,0x09,0x1a,0x06,0x15,0x55,0xc8,0x51,0xfe,0x23,0x87,0x07, +0x69,0x9d,0xde,0x33,0x56,0xb4,0x07,0x59,0xec,0x26,0xcf,0x15, +0x28,0x50,0x57,0x98,0x79,0xf9,0x93,0x28,0x60,0xd1,0xe2,0x61, +0x00,0x79,0x20,0x81,0xa2,0x1c,0x23,0xf7,0x63,0x6e,0x4d,0xee, +0x10,0xc9,0xc8,0xe5,0xf4,0x64,0x30,0x1f,0x2e,0xf0,0xda,0xd7, +0x31,0xda,0x6b,0x4b,0x33,0x60,0x25,0xdc,0x6d,0x8e,0x9e,0x16, +0x97,0x65,0x50,0xf1,0x27,0xa5,0xe8,0x8a,0x9b,0xea,0xe8,0x86, +0xe5,0xb0,0x3f,0x10,0xd9,0x8b,0x00,0xc0,0x11,0x42,0xd8,0x05, +0xc2,0x83,0x20,0xf1,0x28,0xd0,0x78,0x08,0x40,0xf5,0x9e,0x0b, +0xe5,0x78,0xcd,0x15,0x6c,0x87,0x68,0xee,0x26,0xeb,0x88,0x01, +0x2a,0xe6,0x57,0x10,0x8a,0x22,0x7c,0xab,0xe3,0xa8,0x52,0x01, +0x14,0xda,0x03,0xb7,0x90,0x3b,0x3e,0x67,0xda,0x41,0xac,0x75, +0x4f,0x26,0xb7,0x16,0x12,0xda,0xf2,0xdc,0x19,0x7d,0xe9,0x5d, +0xe8,0x56,0x9a,0xf6,0x95,0xf1,0xbf,0x80,0x08,0x3e,0xe2,0xce, +0xd5,0xe8,0xaa,0xe8,0xcb,0xdc,0x44,0x9f,0x12,0x54,0x06,0x4e, +0x32,0x55,0x15,0x3e,0x5a,0x54,0x9e,0xbc,0x86,0x1e,0x70,0x30, +0x83,0xaf,0x19,0xd4,0x90,0x85,0xdc,0x75,0x04,0x2b,0x1a,0x41, +0x91,0xe3,0x92,0x02,0x6d,0x89,0x19,0xea,0x4a,0xb5,0xe8,0x06, +0xdd,0x17,0x7d,0xbb,0x24,0x48,0x87,0xe9,0x21,0x6f,0xa9,0x8b, +0x9e,0x8b,0xd1,0x62,0xec,0xdb,0x0a,0x6c,0x71,0x6b,0x17,0xb1, +0x49,0x64,0xbf,0x4d,0x60,0x22,0x81,0x62,0x5f,0x04,0x10,0xe9, +0xf0,0x39,0x77,0x3e,0x42,0xb0,0xe2,0xba,0x0c,0x29,0xae,0x58, +0x56,0xea,0x3d,0x1f,0x74,0xd9,0xdb,0x5e,0x7a,0x6e,0xcf,0xf7, +0x73,0x57,0x89,0x38,0xb2,0x8d,0xd9,0xea,0x0e,0xd1,0x1f,0xdd, +0x50,0xbd,0x56,0x8b,0xf4,0x5a,0x7d,0x88,0x1c,0x88,0x1a,0xe4, +0x85,0x1e,0x28,0xab,0x54,0x82,0xde,0x8a,0xe5,0xa8,0x56,0xcb, +0xd0,0x75,0x34,0x4d,0x64,0x3d,0x59,0x71,0x39,0x1d,0xda,0x27, +0x87,0xbd,0xf9,0xe7,0x7e,0x72,0xd7,0xfb,0x29,0x98,0xfa,0x49, +0xd4,0x95,0xad,0x8a,0xeb,0xe8,0xad,0x20,0xce,0x49,0xff,0x62, +0x67,0x2c,0x2b,0x33,0xf4,0xb2,0xd5,0x78,0xf5,0x30,0x76,0x8f, +0xbc,0x40,0xba,0x46,0xbb,0x2d,0x1d,0x40,0x1f,0xcc,0x2d,0xb3, +0xcb,0xa8,0xa6,0xea,0x54,0x9b,0x10,0x3b,0x93,0xe0,0x66,0x71, +0x77,0xbd,0x12,0x36,0x59,0xc0,0x5d,0x73,0x74,0x70,0x98,0x4b, +0xce,0xdd,0x47,0xff,0x02,0x7c,0x06,0xdc,0xd2,0x0e,0xa3,0xf5, +0xe4,0x96,0xab,0xac,0xa8,0x8a,0xb8,0xa5,0x3e,0x15,0x16,0xf1, +0xb4,0x17,0x37,0xf5,0x61,0xbe,0xf0,0xd3,0x83,0xc6,0x10,0xfb, +0xf4,0x81,0x78,0xea,0x4b,0xcf,0xbd,0x30,0x7a,0xb5,0x34,0x86, +0xc9,0x35,0x59,0x71,0x13,0x1c,0x4d,0x9d,0xfe,0xc6,0x04,0x08, +0xb3,0x2a,0x9a,0x63,0xf4,0xda,0x5c,0x8f,0x5e,0xab,0x88,0x3b, +0x7a,0xf9,0x9f,0x4b,0xcb,0xff,0x68,0x94,0xe7,0xee,0xed,0x70, +0x00,0x9a,0xec,0x5b,0x74,0xe9,0xaa,0x59,0x2f,0xea,0x31,0x98, +0xc2,0xdc,0x60,0x0a,0x73,0xb1,0x4c,0xaa,0xfa,0x0a,0xcb,0x94, +0xf4,0x02,0x07,0x68,0x21,0x2a,0xfa,0x81,0x7c,0x50,0x1b,0x62, +0x5f,0x3d,0x10,0x25,0x7e,0x46,0x4e,0x2f,0x90,0xc2,0x52,0xbb, +0x94,0xee,0x21,0x55,0xb4,0xc0,0x01,0xb2,0x85,0x22,0xde,0xd2, +0x79,0xc0,0x46,0x1a,0xbe,0x82,0x0c,0xb5,0x0b,0x8c,0xe1,0x76, +0x19,0x84,0xf0,0xa1,0x8a,0x8c,0x8a,0xc7,0xbd,0xe0,0x43,0x68, +0x2e,0x3e,0xf0,0x85,0x87,0x0f,0x9a,0x42,0xec,0x4f,0x0f,0xc4, +0x63,0x5f,0x23,0x87,0xee,0x19,0xb3,0x34,0x2d,0x45,0xb8,0x9e, +0x7b,0x0c,0x65,0xf7,0xe4,0xa7,0xb4,0x87,0xa4,0x8a,0x56,0x0e, +0xa3,0x47,0x8b,0xb8,0x56,0x1a,0x3d,0x5e,0x79,0xd0,0x16,0x62, +0xbf,0x7b,0x80,0x61,0xb7,0x11,0x42,0x5e,0x11,0x96,0xb6,0x30, +0xb9,0x39,0x15,0x8b,0x55,0x8d,0xb0,0x51,0xc0,0x6f,0xa5,0xa9, +0xd2,0xd0,0x99,0x57,0x38,0xcd,0xe0,0x0a,0xbc,0xc5,0x18,0x2f, +0x4f,0xde,0x82,0x94,0xbb,0x28,0x30,0xc5,0x09,0xb4,0xdb,0x28, +0x56,0xd5,0x62,0xc4,0x04,0x5e,0x05,0x63,0xa3,0xb6,0xf4,0x21, +0xfd,0xb2,0xdc,0x64,0xbc,0xba,0x6d,0x44,0xda,0x94,0xfc,0xce, +0x88,0xb4,0x31,0x29,0x6a,0xea,0x91,0x36,0xa5,0xec,0x8c,0x48, +0x9b,0xde,0x3f,0xfe,0x37,0x91,0xb6,0xfe,0x8e,0x22,0x6d,0x4c, +0xcc,0x87,0xcf,0x8d,0x40,0xbb,0xe0,0x9f,0x03,0x6d,0xee,0xfc, +0xf8,0xaf,0x08,0xba,0x8a,0xb8,0xa9,0x77,0xd7,0x8b,0x5e,0xdc, +0x3e,0x17,0xbb,0xeb,0x59,0x69,0x77,0xbf,0xf0,0xa5,0xe7,0x5e, +0xa8,0xed,0xef,0xba,0x7b,0x1b,0xf7,0x18,0x82,0xae,0x56,0x47, +0x5e,0xb1,0xb5,0x5e,0xc3,0x1f,0x28,0x60,0xc1,0xd0,0xbb,0x42, +0x3e,0x86,0xde,0xc3,0x28,0xf4,0xc6,0xc6,0xfb,0x40,0x7d,0x82, +0xd8,0x28,0xf4,0x6e,0xf1,0xd2,0x0f,0x72,0x1e,0xb4,0x80,0xd8, +0x27,0x0f,0x44,0x9e,0x1f,0x3d,0x53,0xfc,0x6d,0x69,0x01,0x93, +0x8d,0x0d,0x2f,0x4d,0xc4,0x32,0xec,0xbb,0x3a,0x7a,0x37,0xfe, +0x56,0x9a,0x42,0xcb,0xa4,0x07,0xe0,0x88,0x12,0x03,0xf0,0x3f, +0x29,0x00,0xa7,0x5a,0x5d,0xe4,0x35,0x5e,0xeb,0x99,0x18,0x89, +0x9f,0x54,0xe5,0x5b,0x7f,0xed,0x2d,0x45,0xe2,0xf4,0x2a,0x16, +0xb6,0xbe,0x3b,0x4b,0xb3,0x17,0xb7,0x6c,0x66,0xdc,0xf2,0x84, +0xc1,0x57,0x7b,0x98,0xa6,0x34,0x82,0xfd,0xfe,0x62,0x16,0xac, +0x2c,0x10,0x97,0x8e,0x05,0x8b,0xa9,0x94,0xb8,0x02,0x3b,0x9e, +0xa1,0x91,0xb6,0x78,0xd3,0x81,0x9b,0xb0,0x3f,0x50,0xcc,0x83, +0x75,0x37,0xc5,0x85,0x4b,0xa5,0xe7,0x6e,0x5e,0xc6,0x48,0x7a, +0xd9,0x2a,0xd3,0xd6,0x23,0x89,0xc7,0x32,0x6c,0xfb,0x7c,0x78, +0x4d,0x77,0xb6,0xfb,0x98,0x35,0x7e,0x6d,0xe2,0x8a,0x04,0x5e, +0xeb,0x4f,0x96,0x12,0xbd,0x22,0x22,0xc6,0xea,0xa0,0x35,0x29, +0x8a,0x53,0x7d,0xa1,0x3c,0x34,0x13,0x1f,0xfa,0xc0,0x0f,0xe2, +0x98,0x22,0xa4,0xf8,0x49,0xf5,0x31,0x72,0x7c,0xe1,0x07,0xee, +0x52,0x07,0x07,0x2c,0xb8,0x5c,0xf2,0x3d,0x73,0xdf,0x34,0x41, +0x34,0x36,0x73,0xb3,0x27,0xe3,0x76,0x07,0x18,0xe4,0x7c,0x8b, +0x64,0x73,0xb8,0x19,0xbb,0xbe,0x49,0xd1,0x2a,0xd5,0xb7,0x36, +0x34,0xfb,0xd5,0x07,0x6e,0x18,0x28,0x6e,0xaa,0x3e,0xf4,0xec, +0xab,0x3f,0xcb,0x8e,0x17,0xb9,0xfd,0x75,0x26,0xde,0xd6,0xa4, +0x9f,0xe2,0xc6,0x10,0x41,0x9b,0x6a,0xa0,0xdc,0xed,0x77,0x5b, +0x75,0x6a,0x48,0x14,0xa2,0x6c,0xae,0x62,0x1c,0xa8,0x60,0x43, +0xec,0x12,0x1f,0xd0,0xd2,0xbe,0x3d,0xec,0x57,0x31,0x4a,0x8c, +0xc8,0x45,0x7d,0xd9,0x8f,0xf0,0x3b,0xbf,0x55,0xb2,0xc1,0x95, +0x97,0x3f,0x66,0x00,0xed,0xe1,0x15,0x77,0x32,0x31,0x22,0x07, +0xed,0xbf,0xa3,0x2b,0xbb,0xab,0x5c,0x84,0x0d,0xaa,0xa8,0x0f, +0x9c,0x76,0x3f,0xbc,0xf5,0x66,0x10,0xaa,0x06,0x68,0xe6,0xf6, +0xb0,0x3f,0x48,0x44,0xd6,0x7f,0xdb,0x99,0x89,0xc1,0x67,0x5f, +0x68,0x4a,0x9e,0x02,0xfd,0xe0,0x3e,0xb7,0x56,0x62,0x0e,0x3a, +0x92,0x7d,0x9c,0xd9,0x48,0xf4,0xcc,0xf9,0x48,0x6b,0xac,0x18, +0x71,0x45,0x96,0x13,0xe7,0xb3,0x20,0xfc,0x95,0x18,0x7d,0x11, +0x46,0x93,0x34,0xc2,0xc1,0x6f,0xff,0x1e,0x1f,0x7c,0x87,0x05, +0xe4,0x1b,0x84,0x1f,0x2f,0x46,0xa4,0x0f,0xa2,0xd5,0xdb,0xe7, +0xbe,0xd5,0x31,0xdb,0x43,0x0a,0x77,0x3d,0xcb,0xde,0x01,0x37, +0xb8,0x4d,0x14,0xcd,0x70,0x07,0x6a,0x70,0xfb,0x50,0x06,0x85, +0xea,0x42,0x5d,0x7e,0x61,0x3f,0x2f,0x9f,0x8b,0xde,0x6f,0x47, +0x5d,0x8a,0x79,0xa5,0x17,0x2c,0x43,0xba,0x98,0x31,0xe8,0x9d, +0xc8,0x4d,0x8d,0x59,0xfa,0xa1,0x3d,0xe7,0xdd,0x36,0x28,0xe7, +0x53,0xa7,0x0e,0x1e,0x3c,0x6e,0xca,0x00,0x8c,0x26,0x2c,0x3d, +0x58,0xa7,0x89,0xa0,0x80,0x1f,0x5d,0x55,0x77,0xde,0x93,0x36, +0x20,0xfd,0x70,0xf4,0x07,0x6c,0x3a,0x05,0xfa,0xc0,0x8d,0xd2, +0x7e,0x3e,0x91,0x78,0x3a,0xdb,0x76,0xc0,0x77,0x0a,0x77,0x89, +0x64,0x70,0x1c,0x98,0x8a,0xe0,0x0e,0xc2,0x4f,0x31,0x24,0xc4, +0x0c,0x15,0x6e,0xe3,0xc0,0xf6,0x11,0xea,0xad,0x1a,0x19,0xb3, +0x74,0xb5,0x69,0xfb,0xa1,0xa4,0xa3,0xe7,0x6c,0xfb,0xbb,0x4f, +0x33,0xb7,0x9c,0x32,0xb0,0x61,0x67,0x57,0x8f,0xa7,0xbc,0xe6, +0x11,0x76,0x34,0xdd,0xb6,0xb7,0xfb,0x74,0x73,0xd3,0x11,0x01, +0x60,0x6d,0xe8,0x7a,0x66,0x50,0x7e,0x66,0xfa,0x89,0xfd,0x27, +0xac,0x09,0x6b,0x93,0xe3,0x12,0x17,0x89,0x46,0xe0,0x66,0x29, +0xb8,0x98,0x76,0x7c,0xff,0xb1,0xc4,0x78,0xcc,0x88,0x15,0xf5, +0xa0,0xaa,0x25,0xfd,0x1c,0xd4,0x12,0x2c,0x32,0x39,0x9c,0x26, +0x64,0x1c,0xb8,0xf3,0x59,0x34,0x8d,0x9b,0x02,0xc4,0x76,0xf3, +0xd2,0xb6,0x7d,0xfa,0x43,0x64,0x3b,0xfa,0x8c,0x60,0x3b,0xff, +0xed,0xd1,0xb4,0x63,0x9b,0x92,0x36,0xc7,0x6d,0x5c,0x24,0x3e, +0xe7,0x8e,0xc0,0xd0,0x17,0xb4,0x86,0x46,0x2c,0x5b,0xb9,0xe7, +0x40,0xf2,0xe1,0x95,0xa7,0xac,0x22,0x39,0x0f,0x36,0xd2,0x59, +0xae,0xb6,0x4e,0xd8,0x76,0xdc,0xbe,0x2b,0x93,0x6e,0x45,0x67, +0x19,0x61,0x6b,0x02,0x6b,0xfd,0xb5,0xd5,0x4d,0xcd,0x72,0xdd, +0xdc,0x44,0x7f,0x6d,0xcd,0x6e,0x13,0x38,0x16,0x88,0xc7,0xb0, +0x86,0x8e,0xf7,0xb3,0xf6,0x22,0x69,0x5a,0xc6,0x3d,0x3e,0x63, +0xb0,0x4d,0xed,0x98,0x30,0x13,0xda,0x96,0x84,0x31,0xd1,0xb6, +0x63,0xec,0x5e,0x68,0x8e,0x1e,0x48,0x60,0x51,0xc5,0x5c,0xba, +0xa1,0x8e,0x7a,0x64,0x1e,0xf5,0xc8,0x27,0x50,0xae,0x8f,0x38, +0x95,0x05,0xe5,0xee,0x6a,0xe6,0x3c,0x73,0xf1,0x0c,0xb8,0xad, +0x8a,0xae,0x4b,0x14,0xff,0xb9,0x73,0xc6,0x8f,0xb1,0xf9,0x5d, +0xef,0x2d,0x3a,0x89,0x4e,0xd7,0xb3,0xaf,0x1c,0x9e,0x73,0xd0, +0x7f,0xbb,0xeb,0x5a,0xd1,0x35,0xab,0xd8,0xd5,0x2c,0x9e,0xc0, +0x4c,0x75,0xb6,0xe2,0x39,0xfc,0x40,0x5a,0xda,0xc9,0x03,0xbf, +0xbb,0x7d,0xae,0xfc,0x71,0x72,0xc2,0x90,0x21,0xc3,0x27,0x78, +0xa0,0xff,0x3e,0x92,0x06,0xf0,0xa5,0x30,0x23,0x58,0xcc,0x08, +0x29,0xd4,0x7e,0x37,0xcb,0x79,0xa1,0xdc,0x96,0xc1,0xa4,0x9f, +0x7a,0x4b,0x34,0x7b,0x3b,0x8b,0x75,0x86,0x04,0x55,0x4b,0x80, +0x11,0xb7,0xc4,0x16,0x89,0x72,0x64,0xc0,0x47,0x95,0xc1,0xbf, +0x40,0xf8,0x30,0xb5,0x77,0x7d,0xb0,0x7f,0x1e,0x08,0xe7,0x45, +0x8c,0x22,0xce,0x8a,0x4c,0x35,0x90,0x9e,0x7b,0xeb,0xcf,0xa0, +0x9d,0x57,0xc1,0xfe,0x17,0x61,0xaf,0x88,0xb4,0x7a,0xa5,0x29, +0xd8,0x80,0x1e,0xa3,0x81,0xbd,0x09,0xac,0xa2,0xcb,0xdc,0xc7, +0xdc,0x10,0xdb,0x4a,0x22,0x58,0x1f,0xfa,0x00,0x4c,0x69,0xfa, +0xf0,0xcb,0xab,0xb5,0xa0,0x8d,0x8d,0xf9,0x45,0x5b,0x99,0xb6, +0x58,0x84,0xa9,0x7d,0x71,0x64,0x2c,0x57,0x58,0xd4,0xdf,0x4b, +0xa6,0x9a,0x65,0x23,0x2d,0x41,0x0d,0xf2,0x04,0xbb,0xd7,0x81, +0xf0,0x15,0x51,0x4d,0x17,0xf9,0x6a,0x20,0x3d,0x07,0xe9,0xcf, +0x48,0x95,0xdb,0xff,0x49,0x3b,0x11,0x3f,0xa0,0x5f,0xd8,0x28, +0xfb,0xd2,0xc9,0xad,0x8a,0xf8,0x20,0xfe,0xb7,0xa4,0xfb,0xeb, +0x63,0xb3,0x2d,0xb3,0x4a,0xea,0xb3,0xf8,0xc0,0x36,0x6c,0x33, +0x3c,0xc3,0xd1,0xa2,0x0b,0x7c,0x82,0x5e,0xe1,0xbe,0x3c,0xfa, +0xe8,0x9a,0xc9,0x64,0x07,0xda,0xa6,0xc6,0x6b,0xfc,0xc9,0xb4, +0x36,0xa5,0xfb,0xd4,0xc2,0xa3,0x23,0x69,0x9f,0xda,0xb6,0x7d, +0xdc,0x9c,0xc6,0xce,0x1c,0xde,0x7b,0x38,0x71,0x4d,0xc2,0xf2, +0xc4,0x25,0x28,0x3f,0x76,0x96,0x93,0xa7,0x4c,0xb2,0xd5,0xb5, +0x77,0xe1,0xfa,0xac,0x1e,0x10,0xb9,0x1d,0x3b,0xfe,0x02,0x93, +0x0d,0x11,0x4f,0x03,0x99,0xc5,0x16,0x67,0x72,0x53,0x6b,0x06, +0x53,0x5c,0xe2,0x83,0x79,0xd5,0x24,0xc6,0xd9,0x19,0x96,0xa2, +0xef,0xde,0x5a,0x2c,0x06,0xc9,0x82,0xde,0xda,0x8a,0x0e,0x18, +0xc5,0xd7,0x95,0x8d,0xf1,0xcd,0xe9,0x7f,0xda,0xaf,0x46,0x79, +0x13,0x65,0x6f,0xae,0x1c,0x62,0x62,0x13,0x37,0xaf,0xd7,0x33, +0x26,0xc8,0xde,0xea,0xc2,0x87,0xe8,0x5a,0x85,0xc0,0x97,0x7d, +0xc5,0xf8,0xb6,0x30,0x9a,0x57,0x2a,0x60,0xbc,0xd2,0x57,0x06, +0x61,0x8e,0x84,0x5d,0xfe,0x91,0xb0,0x64,0x45,0x23,0xc5,0x02, +0xb5,0x50,0x3b,0xe8,0x25,0x83,0x61,0xc6,0x00,0x31,0x43,0xc1, +0x76,0x8c,0xe0,0x15,0x46,0xb1,0x49,0xdc,0x6e,0x3a,0x13,0x93, +0x79,0xa5,0xb3,0x4c,0x7c,0xc7,0xdd,0xff,0xd4,0x59,0x1c,0xa3, +0x67,0x4e,0x69,0x0b,0x13,0xa1,0x4e,0xf1,0x1d,0x96,0x55,0xf2, +0x1d,0x13,0x2b,0x79,0xc5,0x37,0x8c,0x3b,0x3d,0x66,0x63,0x0a, +0xb5,0x03,0xdc,0x1a,0xf9,0x6f,0x48,0x71,0x66,0xc8,0xc9,0x02, +0x98,0xd1,0x4f,0x97,0x93,0x9f,0xcc,0x72,0x4e,0x28,0x57,0xff, +0x60,0xfd,0x65,0x53,0x0a,0x0a,0x93,0xc4,0x17,0x32,0x5b,0xb9, +0x1d,0xa4,0x6a,0xcd,0xa1,0xb1,0x6c,0x5e,0x26,0x57,0x93,0x61, +0x46,0x7f,0x31,0x63,0x44,0xa1,0x76,0x0d,0xe1,0x23,0xb8,0xed, +0x22,0x93,0xcd,0x10,0xbf,0xe7,0xbb,0x8e,0xbb,0x64,0x74,0x5c, +0x6f,0xce,0xdd,0x98,0xde,0x55,0xb4,0x71,0xc7,0x9d,0xba,0x4a, +0x78,0xd2,0x32,0xb4,0x3e,0xcf,0x7d,0x21,0xd1,0x9d,0xec,0x4b, +0xb6,0x9f,0x22,0x6e,0x43,0x3d,0x35,0x8a,0x57,0xda,0xce,0xd2, +0x47,0xe4,0x5e,0x38,0x79,0x6c,0xf7,0x71,0x1c,0x3d,0x92,0x8c, +0xdb,0xf2,0xaa,0xe8,0xb7,0xe5,0x0d,0xde,0x84,0x45,0xde,0x88, +0x3e,0x8a,0x03,0x76,0xc5,0x76,0x15,0x65,0xba,0x71,0x61,0x91, +0x9b,0x97,0x5c,0x6e,0x96,0x4d,0xb4,0x79,0xba,0x1e,0x8c,0x41, +0x02,0x3d,0xdf,0xf6,0x60,0xe2,0x24,0x7c,0xa9,0x86,0x72,0xc7, +0xfd,0x2c,0xf9,0xd0,0x69,0xdb,0x17,0x9d,0xe7,0x9a,0xdb,0x84, +0x0c,0x80,0x65,0x1f,0xbb,0x1e,0xee,0x2b,0xf8,0xd9,0x07,0xc7, +0xd2,0x8f,0x59,0x37,0xc4,0x6f,0x5a,0xbe,0x71,0x31,0x06,0x7f, +0x55,0x2d,0x87,0xb3,0x4c,0x0e,0xdc,0xe9,0x21,0xa3,0xaa,0x7b, +0xc9,0x05,0x24,0xb0,0x13,0xd4,0xde,0x0d,0x81,0x3d,0x0d,0x82, +0x33,0x86,0xc0,0xa6,0xab,0x41,0xf4,0xdc,0x5b,0x7f,0x06,0x71, +0x8e,0xdb,0xdf,0x44,0x81,0xad,0x4f,0x3f,0xb0,0x49,0x7a,0x21, +0xd9,0x26,0xdc,0x75,0x3c,0x8b,0xa6,0x26,0x0d,0xe2,0x55,0x3f, +0x67,0x84,0xaf,0x0f,0xaa,0x1c,0x57,0x7d,0xe8,0x38,0x87,0x96, +0x2a,0xf4,0x6d,0xd4,0xb3,0x59,0x93,0x67,0x3e,0xa2,0xaf,0xe8, +0xf3,0xec,0xfa,0xcf,0x3f,0x36,0xfa,0x0a,0xfa,0xb8,0x89,0x11, +0xd0,0x5e,0x1d,0xd2,0x77,0x28,0xd4,0x85,0xba,0xbd,0xcf,0xa4, +0xb9,0xae,0x33,0xa7,0x67,0x9f,0x16,0x75,0x45,0xdd,0x4b,0x9f, +0x0e,0xa6,0x80,0xad,0x25,0x13,0x27,0x78,0xa5,0x5b,0x4c,0x6c, +0x54,0x62,0x7b,0xfa,0x0e,0x87,0x99,0xbd,0xbe,0xec,0x6f,0x11, +0xd6,0x13,0xf7,0x0f,0x9e,0x3d,0xb8,0x72,0xa5,0x65,0x63,0xe2, +0xd6,0xb7,0x6f,0x98,0x16,0x2b,0xbe,0x56,0x07,0x88,0x99,0x3e, +0x85,0x5a,0xae,0x97,0xec,0x43,0xec,0xf7,0xe4,0x36,0x6c,0x6e, +0x67,0xb5,0x50,0xa8,0x8a,0x28,0x17,0xff,0x2a,0xf9,0xfe,0xfa, +0xc5,0x19,0x96,0xd9,0xd0,0x04,0x42,0x63,0x88,0xc5,0xbe,0xc5, +0x79,0xec,0x7b,0x74,0xf8,0x9c,0x77,0x97,0xf6,0xfd,0x2c,0xbd, +0x2f,0x07,0x16,0x6a,0xdf,0x62,0x5f,0x2e,0xe0,0xea,0x9f,0x2c, +0x80,0xce,0xd5,0xdd,0xc1,0xc2,0x12,0xb9,0x7d,0x0e,0x2b,0x14, +0x47,0xe5,0x75,0xb4,0x80,0x28,0x68,0xff,0x66,0x27,0x23,0xf1, +0xfa,0xfe,0x7e,0x45,0xec,0xa2,0x42,0x64,0x6a,0x86,0xbf,0xce, +0x54,0x7f,0x62,0xca,0x4f,0x67,0xca,0x05,0xdb,0xca,0x4a,0x4c, +0xfd,0xf6,0x4f,0x4c,0xf1,0xea,0x6d,0x8d,0xf8,0x51,0xfe,0x74, +0x9d,0x84,0xb0,0x9d,0x9c,0xa7,0x86,0x08,0xbf,0xfe,0xd7,0xb4, +0xc2,0x5e,0x72,0x82,0x19,0xbe,0xd1,0x06,0x70,0x97,0xcd,0x4c, +0xb6,0x51,0x6f,0x8a,0xa6,0x0a,0x38,0xb1,0x0b,0x96,0xd9,0xbc, +0xbc,0x86,0x12,0x66,0xba,0xfe,0xd5,0xaa,0xd5,0xd7,0xdc,0x22, +0x60,0x3d,0x4d,0x6e,0x8e,0xbf,0x25,0x76,0xbf,0x9b,0xdc,0x94, +0xf7,0xaf,0x6b,0xf7,0x09,0xd7,0x4c,0xae,0x36,0x67,0xf3,0x60, +0x0d,0x99,0xb0,0x29,0xf9,0x62,0x9f,0x3e,0x9f,0x19,0x48,0x46, +0x4c,0x7f,0x3a,0xa0,0x38,0x94,0x2c,0x66,0x08,0xad,0xc8,0x76, +0x7f,0x12,0xa8,0x16,0x8f,0x91,0x89,0xad,0x0f,0xcd,0x5f,0xf6, +0xa4,0xf9,0xcb,0x59,0x37,0x44,0x2a,0xcd,0x5f,0x22,0x54,0x71, +0x17,0x82,0x12,0x1f,0xab,0xfd,0x84,0x5f,0xab,0x6b,0x45,0xae, +0xbd,0xe4,0x5a,0xe2,0x6e,0xae,0x1a,0x5c,0xa7,0xc9,0xcb,0x3e, +0x90,0x21,0x46,0x29,0x62,0x9d,0xb8,0xa8,0xf6,0xc1,0xc7,0x60, +0xfd,0x11,0xbe,0x3a,0xab,0x36,0x79,0xf5,0xb3,0x22,0x92,0x6b, +0xeb,0xbf,0x30,0x43,0x76,0xc5,0x5a,0x34,0xa2,0x5a,0x64,0x59, +0x66,0xe9,0xb5,0x08,0x2c,0xad,0xc5,0x57,0xf0,0x87,0x2a,0x9a, +0x76,0x86,0xf6,0x34,0x81,0x97,0x67,0xb0,0x75,0x9d,0x08,0xbe, +0x51,0x07,0x0a,0xbf,0xa1,0xd7,0xb4,0x33,0xbd,0xe4,0x40,0xa2, +0xe7,0xaf,0xf6,0x6b,0xd6,0xe8,0x49,0x5f,0xd8,0x63,0xd0,0xdb, +0xa7,0xf6,0xc5,0xc7,0x7e,0xfa,0x23,0x5c,0x4f,0x53,0x1b,0xfd, +0xf8,0x0c,0xe9,0x35,0xd3,0x7f,0x61,0xa6,0xac,0x43,0x47,0x20, +0x73,0xd7,0xd6,0x4c,0x9b,0x07,0x4f,0xb8,0x35,0x9c,0xc9,0x76, +0xb9,0x6a,0xb8,0x6e,0x07,0x17,0x88,0xa9,0x3d,0x61,0xbe,0x31, +0x6d,0x49,0xd4,0x0e,0x12,0xb5,0x97,0xdc,0x6a,0x61,0xb2,0x26, +0xb5,0x35,0xaf,0x74,0x94,0x89,0xab,0x30,0x07,0x1b,0xeb,0x02, +0x8c,0x53,0x70,0xbc,0xdf,0xa4,0x86,0x8b,0x25,0x3d,0x48,0x7b, +0x69,0x12,0x73,0xcb,0xd6,0xd3,0x6e,0xa1,0xd9,0xa6,0xf0,0xb1, +0x3e,0x61,0x3d,0x5d,0xb4,0x37,0xbf,0xa9,0x19,0xb2,0x73,0x88, +0xf8,0x50,0xab,0xc6,0x08,0xdb,0xd7,0x84,0xed,0x0f,0xae,0x56, +0x62,0x3f,0xc3,0x16,0xb4,0xdf,0xda,0xc2,0x3c,0xf9,0x15,0x2c, +0xc0,0xda,0xed,0xa6,0xc9,0xd9,0x40,0x76,0x53,0x0e,0x42,0x91, +0x4a,0x42,0xf3,0xfa,0xb8,0xb7,0xb6,0xb1,0x83,0x4c,0x82,0xba, +0xf8,0xf2,0x02,0x49,0x15,0xdb,0x89,0xce,0xca,0x40,0xee,0x1a, +0xc3,0x1e,0x27,0x6c,0xbc,0xe1,0x16,0xf3,0xee,0x8a,0xe4,0xcd, +0xdc,0x31,0x84,0xd1,0xeb,0x43,0xf8,0x9a,0xac,0xed,0x76,0xc3, +0xda,0xee,0x64,0xa9,0x72,0x20,0x59,0xdb,0x51,0x68,0x6d,0xf7, +0x1b,0xd6,0x16,0xea,0x18,0x53,0x88,0xdc,0xfe,0x32,0xd3,0xe6, +0x88,0xce,0xb4,0xcf,0xee,0x83,0x5e,0xbc,0x8a,0x19,0x1d,0x32, +0xda,0x63,0x67,0xa6,0x3d,0x76,0xc8,0x07,0x8e,0x9c,0xdf,0xab, +0xd1,0xeb,0x22,0x56,0x44,0x44,0x47,0x2f,0xb4,0xa0,0x97,0xb3, +0xed,0x58,0xd2,0x89,0x0b,0xb6,0xbd,0x3d,0x67,0x98,0xe1,0x83, +0xb1,0x21,0x50,0x05,0xcc,0xae,0xb1,0xc7,0x4b,0x62,0x58,0xe4, +0x23,0x11,0x21,0xfa,0xc3,0xa5,0xbe,0x22,0xba,0x2d,0x44,0x40, +0x1d,0xe8,0xc0,0x96,0xaf,0x3f,0xf3,0x59,0x5e,0xf6,0x29,0xee, +0xb1,0x8b,0x21,0xa6,0xc3,0xc8,0x43,0xcc,0x43,0x31,0x01,0x79, +0x40,0x8b,0x83,0x56,0x79,0x02,0xd4,0xe1,0x8e,0x63,0x58,0x74, +0x96,0x64,0x4c,0x7c,0xbf,0x4c,0x7d,0x2c,0x46,0x66,0xc0,0xc8, +0x47,0x62,0x2a,0x6d,0x73,0x7d,0x22,0x32,0x2e,0x98,0x89,0x81, +0xfd,0x7f,0x5f,0x4c,0xb7,0xf0,0xf1,0x64,0xc4,0xf1,0x1d,0xfa, +0x05,0xd8,0xfe,0xa3,0x2e,0x02,0x76,0xee,0x6d,0x48,0x45,0x53, +0xe9,0xd1,0x93,0x6e,0x00,0xbe,0x9d,0xb0,0x21,0xc7,0x2d,0xfa, +0x92,0x29,0xa2,0x5f,0x87,0xc5,0x4d,0x5c,0xb4,0x22,0x6e,0x2d, +0x53,0xa2,0xaf,0xaf,0x6b,0x5f,0x93,0xe0,0x4f,0xa5,0xa6,0x8f, +0x87,0x7d,0xc6,0xfc,0x5e,0xaa,0xbc,0xa5,0xa0,0xd8,0x6b,0x9d, +0xa1,0xb5,0xec,0x5c,0xa6,0x23,0xb9,0xd7,0xb5,0x5c,0x02,0xfd, +0x8c,0x5b,0xe7,0x30,0x68,0x24,0xe9,0xb0,0x34,0x33,0x77,0x4d, +0x65,0xe0,0x6a,0xd6,0x12,0xc1,0xa2,0xca,0x6e,0x3f,0x7a,0x41, +0xbc,0x3e,0xc5,0x77,0xa9,0x9b,0x02,0xcb,0xcb,0xcb,0x6e,0xcf, +0xb4,0x6e,0x86,0x6c,0xe6,0x52,0xff,0xbe,0xd6,0x4b,0xce,0xd2, +0xe5,0xc5,0x53,0xa1,0xa2,0x22,0x08,0x3e,0x57,0xa1,0x37,0x86, +0x2e,0xeb,0xdd,0xe9,0xa6,0x9d,0x2b,0xbe,0x8a,0xb8,0x07,0x0d, +0xd5,0xe8,0xe4,0x88,0x95,0x91,0xd1,0x51,0x31,0x16,0x74,0x0b, +0xb7,0x1e,0x4e,0xc2,0x70,0xe1,0x0b,0x9f,0xd9,0xe6,0x3a,0xe3, +0x06,0xd1,0x1a,0x0f,0xd7,0xb4,0x11,0x79,0x17,0x4e,0x1c,0xdf, +0x43,0x4e,0x60,0xe2,0x72,0xdd,0xf8,0x57,0xd5,0x8d,0xff,0x08, +0xba,0x2a,0xf5,0x0f,0xba,0x29,0x95,0xf4,0xaf,0x9c,0xae,0x7f, +0x16,0x34,0x30,0x7e,0x9f,0x5e,0xd3,0xf2,0x7b,0xc9,0x69,0xa4, +0x0f,0x9f,0xea,0xd6,0x21,0x18,0x39,0xe8,0xa5,0x70,0xf7,0x30, +0xb6,0x72,0xcd,0x35,0x37,0xf1,0x16,0x4e,0xf3,0x5a,0x75,0xd9, +0xa1,0xe4,0x23,0x67,0x6c,0x5f,0x74,0x9a,0x63,0xfe,0x78,0x40, +0x7f,0x88,0x6b,0xe5,0x7a,0xa4,0x8f,0xb0,0x9d,0xfd,0xee,0xd8, +0xd9,0xe3,0xd6,0x8d,0x09,0x1b,0x57,0x6c,0x42,0x3f,0x11,0x54, +0xcb,0x91,0x6c,0x93,0xc3,0x7b,0x12,0x6b,0x9d,0xc5,0x50,0x6f, +0x1a,0x23,0xbe,0xba,0xba,0xde,0xc4,0xc0,0x2d,0x35,0x22,0x29, +0x22,0x2e,0x22,0x06,0xfd,0x8b,0x25,0xab,0x4d,0x7f,0x3b,0x90, +0x88,0xa3,0xcb,0xde,0x1e,0x33,0xcc,0x9d,0x26,0x0f,0x6e,0xd0, +0xd3,0x15,0x3e,0x78,0xa0,0x4f,0x0b,0x46,0x5b,0xa3,0x62,0x96, +0xac,0x32,0x6d,0x4f,0x4d,0x3a,0x74,0xca,0xb6,0xab,0xc7,0x2c, +0x73,0xdb,0xe1,0x7d,0xc1,0xa5,0xb5,0xeb,0xe9,0xc1,0x37,0xce, +0xa4,0x1d,0xde,0x7f,0xd8,0x9a,0x94,0x90,0xb2,0x32,0x79,0xa1, +0x68,0x0c,0x4e,0x96,0xfc,0xf4,0xb4,0x43,0xfb,0x0e,0x25,0x27, +0x26,0xad,0x48,0x26,0x8f,0x57,0xb1,0x9c,0x39,0x67,0xf0,0xf0, +0xb3,0x5e,0x45,0x07,0xaa,0xe2,0xc8,0x6b,0xda,0x59,0x6e,0xcb, +0xa7,0x25,0x0f,0x1d,0x54,0xd1,0x9a,0xbb,0x76,0x61,0xd0,0xdc, +0x2c,0x4e,0x2d,0x51,0x21,0xa4,0x41,0x8f,0x26,0x8d,0x5e,0xf4, +0x10,0x21,0x62,0xc0,0x8b,0x1b,0xcf,0x7e,0x6e,0x70,0x03,0x06, +0xb8,0x89,0x09,0xd0,0x51,0x1d,0x14,0x38,0x18,0x1a,0xa1,0x4b, +0x9a,0x7e,0x16,0x07,0x95,0x73,0xb9,0x69,0xa2,0xa1,0x68,0x94, +0x3b,0x44,0x9f,0x05,0x34,0x31,0xad,0x1c,0xdc,0x53,0x43,0xe3, +0x63,0x96,0x87,0x45,0x2d,0xc0,0x9a,0xac,0xfa,0x62,0x77,0xf2, +0xde,0x55,0x07,0xad,0x22,0x21,0x47,0x3e,0x09,0x12,0x9b,0x70, +0xac,0xf1,0x1f,0x06,0x73,0x7a,0x1e,0xec,0x67,0x11,0xd5,0xf5, +0xb1,0x66,0xcd,0x2a,0x1c,0x6b,0xb6,0xac,0xd8,0x1c,0x8b,0xe3, +0xa5,0x62,0x49,0xbd,0x88,0xe3,0x65,0x55,0x60,0xa2,0x05,0x4c, +0x57,0xc5,0xee,0x4c,0xd8,0xad,0x60,0x34,0x31,0x93,0x7b,0xae, +0x62,0xbb,0xac,0x62,0x63,0x86,0x7c,0x1d,0x22,0xbe,0x50,0x62, +0x06,0xf6,0x9c,0x08,0xd3,0xb9,0x9b,0xb5,0x54,0x1c,0x6f,0x5e, +0xd7,0x6e,0x92,0x8c,0x4d,0xe0,0x6a,0x0b,0xb6,0x1c,0x56,0xab, +0x5a,0x72,0x17,0x45,0x6e,0x0d,0x4d,0x08,0xd0,0xd6,0xed,0x34, +0xd5,0x2d,0x10,0x27,0x69,0x16,0xf0,0x7d,0xf3,0x33,0x97,0x44, +0xb1,0x9a,0x2a,0xdc,0x51,0x14,0x0f,0x32,0xe0,0xe6,0x6f,0x20, +0x1f,0x0d,0xc5,0xd2,0x2c,0xb9,0x14,0xcd,0x45,0xb6,0x7c,0xa0, +0x8f,0x3e,0xe7,0xf5,0xd1,0xc7,0xc4,0xa2,0xd0,0xb4,0x6b,0x7f, +0xe6,0xca,0x3f,0x15,0x6d,0xa2,0xbe,0xf1,0xba,0x32,0x6d,0xbc, +0x76,0xa6,0x25,0x08,0x73,0x84,0x73,0xa7,0xd8,0x3d,0x50,0xd9, +0x04,0xf5,0x03,0x8b,0xec,0x72,0x15,0x83,0xfb,0x36,0xe8,0x68, +0x8b,0x2d,0x17,0x4f,0x31,0xe8,0xc8,0x2d,0xd9,0x8c,0x57,0xbb, +0xcf,0xea,0x62,0x4c,0xe4,0x36,0x5f,0x4f,0x6a,0x21,0x70,0x8c, +0x3b,0xe7,0xd2,0xfc,0x53,0xeb,0x42,0x45,0xce,0x28,0x52,0xd5, +0x40,0xf8,0x08,0xec,0x44,0xb9,0x40,0xb8,0x27,0x16,0x92,0xef, +0x7c,0xbf,0x2c,0x27,0x08,0x73,0xd0,0x2d,0x78,0x8b,0xde,0xb3, +0x9d,0x30,0x09,0x3b,0x7c,0x09,0xa6,0xb2,0x34,0xac,0x43,0xf7, +0xef,0x96,0xa8,0xf1,0x0d,0xcb,0xb6,0xcc,0xc1,0xc1,0x6e,0x3e, +0x0d,0x76,0x09,0x7e,0xdc,0xe1,0x2e,0x4b,0xc0,0xfa,0x88,0x66, +0x9d,0x75,0x7f,0xb6,0x74,0xbe,0xef,0x0c,0xd1,0xd2,0xf6,0xa9, +0x41,0x75,0x81,0xbd,0x0c,0x82,0x4b,0x06,0xa5,0x6c,0xe3,0xb9, +0x37,0x3e,0x23,0x9d,0x22,0xa4,0xc3,0x5e,0x09,0x86,0x6f,0x6a, +0x97,0xa6,0x60,0xbd,0xbe,0x69,0xda,0xae,0x88,0xb3,0x75,0xb1, +0x59,0x96,0x92,0x6f,0x70,0x38,0x99,0xc6,0xb4,0x16,0x90,0x55, +0xb4,0x89,0xa6,0xc1,0x96,0xe9,0x68,0xe7,0xf3,0x8a,0xbb,0x98, +0x74,0x47,0xc0,0x4a,0xbc,0xd2,0x71,0x74,0x10,0xa1,0x35,0x2f, +0x5f,0xc0,0xe0,0x80,0x1a,0x29,0xd6,0x78,0xc3,0x56,0xee,0x50, +0x8e,0xfd,0x09,0x8c,0x71,0xcf,0xc3,0x6c,0xfe,0xbe,0x91,0xbc, +0xd2,0x6c,0x6c,0x8a,0x6f,0xd9,0x06,0x59,0x59,0x15,0x1d,0x8c, +0x29,0xc5,0xc5,0x10,0x8c,0x79,0x6f,0xd9,0x4a,0xd9,0x8e,0xbb, +0x0e,0x67,0x45,0xc3,0xa9,0x6b,0x13,0x0b,0xb5,0x44,0xb3,0x9c, +0x11,0xc5,0x2b,0xcc,0x63,0x33,0x65,0x07,0x6e,0xdd,0xca,0x8a, +0x96,0xb0,0x51,0x28,0xad,0x8b,0x9e,0xa1,0xdb,0x3b,0xb2,0xd8, +0x8f,0x35,0x85,0x31,0xd0,0x92,0xbb,0xcc,0x65,0x18,0x71,0x60, +0x80,0xbd,0x4f,0x48,0x73,0x2f,0xb8,0x44,0x8b,0x6b,0x56,0xea, +0xdb,0x93,0x96,0x30,0xad,0x07,0x54,0xe4,0xce,0x8b,0xa8,0xa4, +0x36,0x10,0xce,0xf3,0x6a,0x8f,0x4a,0x91,0x70,0xe5,0x30,0x13, +0x8f,0x96,0xab,0xcf,0xc5,0xf0,0x0b,0x30,0xfc,0x99,0x98,0x74, +0x09,0x0e,0x42,0x31,0x98,0xe8,0xf5,0xc8,0xd2,0xd7,0xab,0xc4, +0x62,0x9a,0x64,0xcc,0x50,0x77,0x88,0xbe,0xbd,0xd6,0x2e,0x80, +0x01,0x26,0x7f,0x65,0x81,0x18,0xe0,0xbb,0x64,0x07,0xf4,0x2d, +0x79,0x44,0x2d,0xb0,0x52,0x6f,0x81,0x68,0x62,0x51,0xec,0x86, +0x6e,0xbc,0xea,0x97,0x7a,0xdd,0x7a,0xa1,0x45,0x82,0x25,0xd8, +0xfe,0x1b,0xc4,0x69,0xa5,0x33,0x84,0xab,0xb2,0xa5,0xe8,0xac, +0xb5,0xd4,0xfb,0xe2,0xa0,0x5e,0x64,0xab,0xde,0x68,0x55,0xd4, +0x5b,0x7f,0x52,0x9b,0xa1,0xdd,0x74,0xe1,0x35,0x52,0x09,0xe3, +0x7e,0xfd,0xf5,0x26,0xfd,0xb5,0xa3,0x7a,0xeb,0x8d,0xde,0xa4, +0x2e,0x10,0xc3,0xd5,0x39,0x24,0x35,0x55,0xf4,0xd7,0xc0,0x6d, +0xe7,0x19,0x8e,0x6f,0xe8,0x20,0x96,0xdc,0x67,0x39,0xba,0xbb, +0x63,0x48,0x80,0x3f,0x49,0x80,0x38,0x0a,0xab,0xb9,0x55,0x23, +0x74,0x57,0x75,0xf8,0xd3,0xbc,0x7a,0x35,0xda,0xd9,0x7e,0x8c, +0x57,0xd3,0x3b,0xee,0xb6,0x9e,0x7b,0x91,0xbb,0x54,0x21,0x47, +0xd3,0x13,0x3d,0x3a,0x13,0xf9,0xd7,0xbf,0x26,0xdf,0x5f,0xf7, +0x2e,0x30,0x32,0xdd,0xbd,0xb7,0x6a,0xf5,0x37,0x6e,0x62,0x26, +0x54,0xe7,0xb6,0x59,0x38,0x08,0xa2,0x83,0x7d,0x08,0xd2,0xb9, +0x65,0x26,0x56,0xf1,0x3b,0xda,0x01,0xdf,0x86,0x76,0xc0,0x63, +0x76,0x57,0xa8,0x8b,0x71,0xe9,0xf2,0xf6,0x66,0x99,0x38,0x2f, +0x31,0x40,0x5b,0xf1,0x85,0x09,0x3e,0xbc,0x25,0xf2,0xd0,0xb3, +0xc3,0x2e,0x5d,0x23,0xdb,0x70,0xd7,0x2c,0x1d,0xae,0x15,0x86, +0x28,0xbc,0xbc,0x51,0x1a,0xa0,0x3d,0x77,0x8e,0x61,0xdc,0xf2, +0x90,0xc1,0xb5,0x59,0xac,0x26,0x7c,0xe4,0xaf,0xad,0x82,0xd8, +0x3b,0xe2,0x62,0xed,0x37,0xe6,0x6e,0x35,0x55,0x98,0xfd,0x46, +0xcc,0xa6,0xb8,0xff,0x09,0x83,0xcb,0xb3,0x58,0x1d,0xb0,0x06, +0x18,0x53,0x47,0x97,0x9b,0xd3,0x91,0xf9,0x4d,0x02,0x8c,0xf9, +0xa3,0xcb,0xe0,0x44,0x27,0xe7,0x2b,0x9f,0x33,0xb8,0x3a,0x8b, +0xd5,0x03,0x0b,0xcd,0x20,0x25,0xe4,0x8b,0xaf,0x9a,0x94,0x1d, +0xa2,0x5f,0x7b,0xdc,0x00,0xa8,0x06,0xe5,0x5c,0xcf,0x7f,0x96, +0x9b,0x79,0xfc,0xd8,0xee,0xa3,0xd6,0x84,0xf8,0xc4,0x15,0x38, +0x04,0xb8,0xe2,0x10,0x70,0x8e,0x0e,0xba,0xad,0x14,0x99,0xc2, +0x6b,0xbd,0x60,0x38,0x62,0xec,0x1d,0xf7,0x14,0x71,0xd5,0x42, +0xd1,0xfd,0x1f,0x7d,0x02,0x48,0x2b,0xa7,0xfa,0x40,0x65,0x68, +0x2a,0x1c,0x7a,0xe9,0x39,0xb2,0x53,0x96,0x8a,0x4f,0x4e,0xe8, +0x26,0x22,0xff,0x4e,0x65,0x69,0x8c,0xde,0x93,0xb9,0xfb,0x26, +0x06,0x5d,0xd4,0xce,0x30,0xba,0xf8,0x3e,0x4d,0x25,0xc5,0xf1, +0x1a,0x95,0xd8,0x25,0xee,0x31,0x8c,0xe6,0x9d,0xb2,0xd1,0xe2, +0xb3,0x02,0xc1,0xc4,0xec,0xd6,0xdc,0x72,0x9a,0x3d,0x52,0x20, +0x06,0xae,0x15,0x35,0x60,0x61,0x62,0x6d,0x0f,0xd8,0x52,0x3c, +0x99,0x0a,0xac,0x56,0x7d,0xeb,0x42,0xb3,0x97,0x3e,0x70,0xd5, +0x98,0x7b,0xba,0xae,0xfa,0xd0,0xb3,0x2f,0x5c,0xe5,0xf6,0x6d, +0x51,0x19,0x9b,0x29,0xe2,0x2d,0xaa,0x65,0x33,0x4a,0x21,0xc1, +0xb9,0x6a,0x80,0x98,0x0e,0xd6,0x02,0x61,0x15,0xe1,0xad,0x8b, +0xda,0xb3,0x47,0xa5,0xf7,0x00,0x0c,0xa2,0xe9,0x27,0xd8,0xce, +0xc4,0xac,0x36,0x50,0x25,0x48,0x4c,0xaf,0x0f,0x53,0xa0,0x43, +0xf1,0x5e,0xf6,0x9b,0x98,0x2c,0x26,0x36,0x7d,0x20,0xe6,0xb7, +0x69,0xed,0x2f,0x46,0xc1,0x8d,0x02,0xcd,0x11,0x1c,0x1e,0x28, +0x0e,0x65,0xa0,0xef,0xcf,0x55,0x4d,0x6a,0x43,0x70,0xdc,0x09, +0x0d,0xa5,0xd3,0x03,0x25,0x5b,0x7a,0xf2,0xca,0x55,0x18,0x57, +0x3e,0x61,0x62,0x9e,0x7e,0x52,0xc0,0xd8,0x06,0xbc,0x62,0x21, +0x13,0x13,0x3a,0x23,0xd1,0x9a,0x37,0xdf,0x94,0xde,0x2a,0xb0, +0x83,0xb3,0x2a,0x4c,0x32,0x71,0x44,0x63,0x3e,0x0a,0xe4,0x93, +0x07,0xe4,0x42,0x1e,0x10,0x51,0x28,0x3d,0x61,0xa0,0x01,0x9d, +0x5c,0x33,0xa1,0xde,0x23,0x14,0x29,0xbb,0x4c,0xee,0xf8,0x84, +0x5d,0xba,0x72,0x34,0x6d,0xd7,0x69,0xeb,0x9a,0xf8,0xc4,0xb8, +0xf8,0xc5,0xc2,0x19,0xea,0x5b,0xce,0x9f,0x04,0xab,0xa8,0x13, +0xb5,0x3e,0x1a,0xc3,0x6d,0x5e,0x7b,0x02,0x3b,0x34,0xf8,0x3b, +0x73,0x19,0x93,0xd5,0xff,0x7e,0x9a,0x6b,0x52,0x5b,0x62,0xb3, +0xbd,0xac,0xf8,0x8f,0x73,0x5d,0x2e,0x0f,0x68,0x47,0xca,0x27, +0x7a,0x19,0xe7,0xf7,0x27,0xba,0x8c,0x8a,0x35,0xd2,0xcf,0x2a, +0x68,0xf8,0x80,0x6e,0x36,0xd8,0xa8,0xfa,0x24,0x2c,0x80,0xe1, +0xa6,0x40,0x54,0xeb,0xe1,0x3e,0xb1,0xdc,0xae,0xa6,0x51,0xd1, +0xd0,0xd6,0xef,0xce,0x2d,0x68,0x67,0xe6,0xee,0x93,0xd8,0x2f, +0xfa,0xc1,0x05,0x8f,0xc4,0xe4,0x0e,0x73,0xfa,0x89,0x21,0x17, +0x3c,0xef,0xe9,0x17,0x1f,0xb4,0x81,0x5b,0x34,0x7d,0x4b,0xd2, +0x97,0x57,0xd2,0x84,0xd5,0xae,0x05,0xeb,0x50,0xe7,0xb7,0x8b, +0xcb,0xb5,0x5e,0x29,0xbc,0x72,0x5d,0xf6,0x2b,0xbc,0x06,0x3f, +0x94,0xf1,0x45,0x4c,0x84,0x1b,0x57,0x21,0x8c,0x36,0x7e,0xc2, +0x2f,0x9b,0x61,0x00,0xac,0x53,0x65,0xa7,0x3f,0xde,0x62,0xb8, +0x73,0xa0,0xbc,0xec,0x24,0x3e,0xd2,0x3a,0x19,0xad,0x15,0x5a, +0xb3,0xe0,0x8d,0x98,0x58,0x33,0x67,0x2a,0xcd,0x82,0xbd,0x3f, +0x2f,0x16,0xf2,0x9a,0x0e,0x86,0x9d,0xaa,0x96,0xce,0xa1,0xe9, +0x31,0xee,0xeb,0x9e,0x0a,0x9c,0x2e,0x5f,0x36,0x4d,0x86,0x82, +0xb4,0x4c,0xf5,0x05,0x3b,0x68,0x46,0x10,0xbf,0x18,0xa2,0xf4, +0x1b,0x4a,0xb1,0x9e,0xe3,0xab,0xe7,0xc8,0x8e,0x97,0x68,0x99, +0x1b,0xd3,0x45,0x0a,0x30,0xa4,0xdc,0x41,0xf3,0x4f,0xab,0x55, +0x3f,0x6e,0x3f,0x90,0xb6,0xd8,0x56,0x81,0x33,0xea,0xec,0x30, +0xf4,0x34,0x0e,0x1e,0x4b,0x39,0x9e,0x61,0xdb,0xfd,0xc9,0x4c, +0x73,0xa3,0xfe,0xbd,0x61,0x65,0x7d,0xd7,0x63,0xbd,0x85,0x9a, +0xf9,0xdd,0xc9,0xf3,0x27,0xad,0x6b,0x57,0x6f,0x48,0xda,0xb4, +0x62,0xf3,0x42,0x2b,0x1a,0x3d,0xcf,0x63,0xd9,0xb0,0x51,0x54, +0x0f,0x4d,0x8c,0xa2,0xf9,0x30,0x07,0xbd,0xb6,0xff,0x7c,0xf1, +0xc3,0x6b,0x9a,0xb1,0x5b,0x45,0xce,0xcd,0xc1,0x53,0xb6,0x3d, +0xdd,0x67,0x9a,0xbb,0x4e,0x19,0xd2,0xd0,0xcf,0xd5,0xe3,0x6e, +0x64,0x52,0x24,0xfa,0x36,0x25,0x0b,0xd8,0xf6,0x03,0x89,0xa9, +0x27,0x6c,0xbb,0xba,0xcf,0x36,0x77,0x18,0xd9,0x0f,0x5c,0xda, +0xba,0x9e,0x19,0x78,0xe3,0xf4,0x99,0x43,0xe8,0xd8,0x24,0xc6, +0xa7,0xac,0x48,0x8a,0x45,0x3f,0xc6,0xd1,0x92,0x9f,0x96,0x7e, +0x78,0x5f,0x2a,0x77,0xfa,0x8d,0xc1,0x87,0x96,0xb4,0x73,0x50, +0xeb,0xb7,0x88,0xe4,0xc8,0xb8,0xf0,0x68,0x9a,0xb4,0x4b,0x47, +0x2b,0x61,0x1f,0x68,0x4c,0xda,0x85,0xfc,0xdb,0x49,0xbb,0xb8, +0xd0,0x28,0x63,0xd2,0xee,0x60,0x72,0xaa,0x3e,0x69,0x97,0x0b, +0xf6,0xbf,0x29,0xdd,0xea,0xa8,0x30,0xf3,0x37,0xfd,0xb0,0x08, +0x9a,0xbd,0x9b,0xa7,0x06,0xd1,0xcd,0xd2,0x79,0x33,0xc4,0x9e, +0x2f,0xf2,0x44,0x79,0x31,0x3a,0x87,0x0e,0x7b,0x70,0x57,0x21, +0xe5,0x9e,0x48,0x51,0x6a,0xc3,0x0f,0xfa,0xbc,0x5e,0x3a,0xab, +0xe7,0x11,0x60,0x4c,0xeb,0xcd,0x41,0xbb,0x57,0x3a,0xad,0xf7, +0xc8,0xe3,0xfd,0xbb,0x2b,0xa8,0x43,0x67,0x36,0x6f,0xc2,0xdd, +0x23,0x19,0x98,0x7e,0x50,0xba,0x35,0x57,0x61,0xfe,0x0f,0x62, +0x3e,0xd2,0xb1,0xfa,0x50,0xbb,0x2f,0xe2,0x35,0xce,0xd3,0x19, +0xb9,0x1e,0xd5,0x59,0x60,0x51,0x25,0x7d,0xa2,0x4f,0x97,0xc0, +0xf7,0x8e,0x9a,0xa0,0x5b,0x2d,0x5c,0x91,0xf4,0x1d,0x3a,0x67, +0x22,0x49,0x15,0x5e,0x4b,0x14,0xdf,0xb9,0x73,0xc7,0x8e,0xb6, +0xf9,0x15,0x7d,0xcc,0xae,0x1c,0x99,0x7b,0x88,0xf3,0xf9,0x4c, +0x38,0x68,0x8d,0x79,0x0d,0x47,0x06,0xc7,0x54,0xea,0x5a,0x60, +0x66,0x5a,0x44,0x67,0xa4,0x90,0xcc,0x30,0xe3,0x00,0x8a,0x31, +0x6a,0x81,0xb8,0x06,0x69,0xfe,0xb4,0x19,0xed,0x01,0xf6,0x39, +0x3d,0x9d,0xf0,0x17,0x53,0xc9,0xd0,0x3e,0x62,0xb0,0xb6,0x44, +0x32,0x18,0x02,0xd9,0xda,0x23,0x76,0x24,0xf1,0x58,0xa6,0x6d, +0x5f,0xcf,0xe9,0xe6,0x5a,0xe3,0x43,0x40,0x45,0x17,0x3a,0x73, +0x44,0x0e,0xba,0xd0,0xbb,0x8f,0x17,0x35,0xa2,0x9b,0x97,0xaa, +0x19,0xb6,0xd3,0x21,0x72,0x5d,0xd4,0x8a,0xc8,0x68,0xab,0xdc, +0xf6,0x94,0x82,0xd9,0x8d,0x37,0xc5,0x1d,0x38,0xab,0x94,0x4d, +0xc8,0x97,0x2e,0xaf,0xfc,0xd1,0x10,0xc3,0x9f,0xd5,0x77,0xab, +0x2f,0x7f,0x24,0x9b,0x66,0x2c,0xb4,0x7c,0x0b,0xe6,0xb2,0x45, +0x97,0xc8,0xe6,0x0a,0x62,0x60,0x1e,0x14,0xd0,0x62,0xc9,0xf7, +0xe6,0xe3,0xf3,0x0d,0x0c,0x05,0x65,0xf3,0xf1,0xf9,0xff,0x6a, +0x3e,0x3e,0xca,0x38,0x10,0xc3,0x46,0xdf,0x7b,0xc4,0x24,0x56, +0xcc,0xe4,0x60,0xfa,0x80,0x43,0xc9,0x2a,0x94,0x74,0xa3,0x24, +0xb4,0x83,0x4d,0xc5,0xc7,0xf5,0x54,0x3f,0xf8,0x86,0x3e,0xe0, +0xd0,0xfb,0xea,0x72,0xf0,0xbf,0xfc,0x80,0x53,0xf6,0x6e,0x91, +0x6e,0x3d,0xe0,0x88,0x6e,0x4c,0x78,0xa5,0x4e,0xac,0x3f,0x4d, +0x91,0xf3,0x8a,0x8b,0x18,0x84,0x11,0xd5,0x7b,0xe0,0xf2,0xef, +0x57,0x51,0x36,0x29,0x5a,0xa9,0x96,0xad,0x10,0xfd,0xce,0xa8, +0xc8,0x43,0xb5,0x6c,0xf9,0xe8,0x77,0xdc,0xb5,0x1f,0x83,0x25, +0x84,0x24,0x98,0x8e,0x01,0xeb,0xcc,0xf4,0x8e,0x58,0xa3,0x36, +0x66,0x68,0xb9,0x33,0x4b,0xee,0x62,0x47,0x1c,0xcd,0xb0,0x7d, +0xd9,0x6d,0xaa,0xb9,0xd9,0xe4,0x01,0x8d,0x3a,0xba,0x7a,0x3e, +0x8b,0x4c,0xd1,0x83,0x81,0xc8,0xe8,0x65,0xab,0x4d,0xdb,0x8f, +0x24,0x1d,0x3b,0x67,0xdb,0xd7,0x6d,0x9a,0xb9,0xe1,0x70,0x7f, +0xb0,0xd4,0x77,0x4d,0x1b,0x98,0x7f,0x21,0xfd,0xe4,0xbe,0x93, +0xda,0x55,0x06,0x35,0x2d,0x85,0x59,0xe9,0x27,0xf6,0x9d,0x48, +0x5c,0x9b,0x14,0x97,0x18,0xcb,0x6b,0xf7,0x66,0xc9,0x11,0x2b, +0x74,0x55,0xa9,0x70,0x8f,0xc9,0xaa,0x70,0x53,0x9d,0xaf,0x4f, +0x5e,0x73,0xc7,0xee,0xac,0x0d,0x6a,0x4c,0x54,0x9b,0x23,0xa8, +0x31,0x56,0xd4,0x98,0xf4,0xe3,0xef,0x56,0xcb,0x3b,0x5b,0x8e, +0x64,0x41,0x8a,0xa8,0x10,0x9a,0x18,0x1d,0x17,0x16,0xa9,0x7f, +0x6b,0x59,0xc5,0x6d,0xe8,0x14,0x2d,0x50,0x9b,0x33,0x79,0x12, +0x6c,0xfa,0xd7,0xa1,0x7b,0x74,0x16,0xc8,0x04,0x15,0x75,0x81, +0x57,0x5e,0xc2,0xa0,0x72,0x81,0x78,0xa2,0x9f,0x6d,0x64,0x59, +0xcb,0x8a,0x9d,0x64,0xb2,0x4a,0xdf,0xd5,0xd6,0xff,0xa4,0x45, +0xe4,0xca,0x88,0x1f,0xe8,0x13,0xdc,0x6d,0xc8,0x77,0x67,0x3a, +0x1f,0x75,0xa0,0x21,0xf4,0x67,0x83,0x49,0xfe,0x03,0x8a,0x2a, +0xe5,0xe9,0xf2,0x4f,0xed,0x3a,0x5f,0x6d,0x40,0xf7,0x94,0x58, +0xb8,0xf3,0x40,0xc6,0x6b,0xc7,0x31,0xf9,0xa1,0x2a,0x62,0xc4, +0xe3,0x20,0x51,0x8e,0x05,0x90,0x23,0xfc,0x50,0x7f,0xd4,0x3f, +0xd8,0x2a,0x10,0x05,0xfb,0x55,0x61,0x27,0xcc,0x60,0x67,0x16, +0xbd,0xaa,0x97,0xa6,0x64,0x0c,0x8c,0x51,0xb9,0x47,0x0d,0x56, +0x14,0x05,0x75,0x54,0xf9,0xd8,0x4f,0x5b,0x07,0x4b,0x6f,0xa3, +0x53,0x38,0x5c,0xcc,0x55,0x0b,0xb5,0xa3,0x5e,0x4a,0xb1,0x0d, +0x24,0xa1,0x79,0x10,0x04,0xe5,0xc1,0x2c,0x3e,0xd4,0x11,0xdf, +0xd7,0x73,0x02,0x8d,0x1c,0x1d,0xf7,0x1e,0x15,0x4d,0x99,0x19, +0x14,0x1d,0xb7,0x91,0x42,0xdc,0xa3,0xb9,0xfb,0x7a,0x26,0x34, +0x8c,0xad,0x0b,0x45,0x0e,0xa4,0xfa,0xd3,0x45,0xed,0x05,0xb0, +0x0c,0x55,0x2a,0x07,0x0e,0xf8,0x8b,0x31,0xba,0xaf,0x77,0x14, +0xfd,0xac,0xb9,0x5a,0x8a,0x5a,0x46,0x00,0xee,0x1b,0xf3,0xe3, +0x0f,0xd4,0x32,0x02,0x70,0x9f,0x3b,0x35,0x64,0x84,0x56,0x11, +0xe9,0xa0,0xa8,0x98,0x49,0xe9,0x5f,0x60,0x2e,0x77,0xff,0x92, +0xc9,0x19,0xe0,0xc3,0x9d,0xbf,0x32,0x1c,0xe2,0xe2,0xa6,0x85, +0x45,0x4d,0xcd,0xc5,0xa3,0x46,0xaa,0xf0,0x2b,0xf2,0xf8,0x2a, +0x10,0x2a,0xd1,0x87,0x7e,0xb3,0x88,0xaa,0x6e,0x64,0x04,0x94, +0x66,0x80,0x2f,0x9a,0x70,0x4c,0x39,0xd0,0x1a,0x80,0x74,0x70, +0x28,0x4b,0xcb,0xa5,0xb0,0x5b,0x4d,0xf0,0x37,0x51,0xa3,0x88, +0x79,0x18,0x54,0x63,0x78,0x20,0x93,0xc4,0x90,0xce,0x30,0x0e, +0x7b,0x03,0xd9,0xdd,0xa6,0xb3,0xbb,0x04,0xd9,0xfd,0x00,0xcc, +0x7f,0x04,0xc0,0x6d,0x83,0xdb,0xaf,0x91,0x5b,0xca,0x08,0x84, +0xdb,0x3a,0xb3,0x1f,0x1a,0xcc,0x7e,0x48,0xcc,0x7e,0xa8,0x33, +0x3b,0x83,0x9b,0xc3,0x59,0x06,0xdd,0xc6,0xb1,0x8f,0xdc,0xcb, +0x05,0x3a,0x9e,0x51,0xdc,0xf6,0x23,0x4a,0x31,0xbd,0xc2,0xca, +0xda,0xf4,0xb5,0x04,0xd5,0xae,0xe2,0x50,0x28,0x87,0xa8,0xda, +0xce,0x2b,0x72,0x99,0x08,0xd0,0xa2,0x2e,0xa3,0xf7,0xbf,0x81, +0x4e,0xfc,0xe0,0xea,0x18,0xba,0x51,0x74,0xb9,0xaa,0x9d,0xca, +0x93,0xdb,0x78,0xcd,0x5f,0xf4,0x73,0x40,0x8c,0x48,0x20,0xa6, +0x50,0x8b,0x31,0xcb,0xb9,0xf3,0xd4,0xde,0x68,0xe1,0x7f,0x09, +0x84,0x2c,0x83,0xaf,0x1c,0x35,0x88,0x9e,0x83,0xf4,0x67,0x9a, +0xef,0x77,0xb8,0xcf,0x5e,0xc2,0x30,0xee,0x30,0x90,0x49,0x55, +0x7e,0xcc,0xad,0x5b,0x58,0xd1,0x1e,0x26,0x6b,0xc9,0xd6,0xea, +0xa2,0x5f,0x30,0x62,0x18,0x8f,0x11,0x43,0x7d,0x8c,0x18,0xda, +0x16,0x5d,0x64,0x22,0x45,0x0f,0x10,0xf6,0xb0,0x5b,0x9e,0xdc, +0xf9,0x28,0xc1,0xfd,0x08,0xc7,0xe4,0x84,0xf7,0x0b,0x8c,0x13, +0xe3,0xd7,0x22,0xfc,0x38,0x68,0x4b,0x91,0xc2,0x32,0xf5,0xd7, +0x49,0xec,0x57,0xee,0x92,0xac,0x83,0xd4,0x96,0xad,0x79,0x75, +0x4f,0xaa,0x6b,0xa4,0x5e,0xd7,0x89,0xdc,0xb9,0x03,0xfb,0x18, +0x3e,0xe6,0x55,0x0f,0x1a,0x95,0x0c,0x93,0x43,0x55,0xf4,0xfe, +0xaf,0xc9,0x2b,0xb0,0xd1,0x9d,0x69,0x01,0x97,0x29,0x04,0x08, +0xa2,0x10,0xc0,0xa8,0x52,0x3c,0x5d,0x32,0x51,0x3c,0x6a,0x86, +0x4a,0x1f,0x2b,0x44,0x7e,0x90,0x07,0xd8,0xbd,0x31,0x8b,0xe8, +0xea,0xc6,0x63,0xa0,0xfe,0x08,0x3e,0xb0,0x89,0x7b,0x2e,0xc3, +0x38,0x0b,0x56,0xa8,0xb4,0x32,0x71,0x8a,0x98,0xbb,0x6e,0xa7, +0x68,0xee,0x16,0x9b,0x65,0xc2,0x58,0x4c,0x2c,0x90,0xd3,0x54, +0x6d,0xbd,0x78,0xd9,0xd5,0x5d,0x7e,0xfc,0x67,0x57,0x38,0x83, +0x0d,0xa6,0x05,0x5e,0xc1,0x9a,0xa3,0x2f,0xf1,0xb1,0x2e,0x7f, +0x49,0x3a,0x73,0xe1,0x7a,0x47,0x4c,0x50,0xc9,0xaf,0x4f,0xd0, +0xd1,0xcc,0x59,0x47,0x6b,0x45,0x60,0x0e,0x4c,0xfe,0x6b,0x31, +0x04,0x02,0x3e,0x52,0x75,0xfd,0x82,0x87,0x46,0xfb,0x3e,0x56, +0x8d,0x05,0x11,0x0f,0xf5,0x5e,0xb7,0x33,0x7a,0xdd,0x8e,0x7a, +0xdd,0x4e,0xef,0xf5,0x70,0x12,0xd1,0xae,0x10,0xc5,0xad,0x92, +0x5a,0xe2,0xb0,0x8e,0x23,0x19,0xa5,0xe7,0x43,0x04,0xf9,0x20, +0x00,0xee,0x1a,0x68,0xbe,0x45,0xf1,0xd1,0x73,0x02,0xf5,0x1c, +0x0c,0x34,0xb9,0xc7,0x38,0xf6,0x0b,0xcc,0x23,0xc9,0xf8,0x1a, +0x36,0xf2,0x6a,0x1b,0x75,0x15,0x07,0x8d,0x54,0xef,0xdb,0xb2, +0xe2,0xa4,0x8c,0x77,0xf5,0x9c,0xb2,0xe2,0xa4,0x8c,0xbb,0x54, +0x0c,0x7f,0xcd,0x60,0xd2,0x95,0xd1,0x48,0xa1,0x32,0x8e,0x22, +0x65,0xd4,0xc6,0xc8,0xc9,0xaa,0xe8,0xfb,0xec,0xce,0x2f,0xbf, +0x34,0xba,0x0d,0x7d,0x21,0xb8,0x51,0x97,0x7a,0xf5,0x9e,0x75, +0x16,0xc1,0x6e,0xb9,0xe5,0xa1,0x6e,0x9f,0x8c,0x0c,0xb7,0x8d, +0xe6,0x0b,0x59,0xe7,0xe1,0x47,0x36,0xa0,0x9f,0x6b,0xb8,0x39, +0x04,0x4d,0x5e,0x1d,0x57,0x34,0x42,0x6d,0x58,0x67,0x6e,0x69, +0xc5,0xb8,0x9a,0xcf,0x62,0xa1,0x31,0xb7,0xdf,0xc7,0xc4,0x08, +0xe8,0xcd,0x1d,0x70,0xe4,0xde,0x98,0x25,0x5f,0xf7,0x11,0x3b, +0x94,0x98,0x3e,0x3e,0x63,0x60,0x5a,0x9f,0x03,0xdc,0xa9,0x3e, +0xdb,0x94,0xb0,0x65,0xc5,0x66,0xee,0xf4,0x21,0xa3,0x92,0xb2, +0x07,0xd8,0xab,0xfe,0xda,0xf2,0x96,0xdc,0x31,0x03,0x9d,0xfc, +0x5b,0xe2,0x9e,0xd9,0x90,0xe4,0xd9,0xba,0x24,0x5f,0x96,0x5b, +0x7f,0xa2,0x15,0xbd,0x91,0x3f,0x6a,0x2b,0xf2,0xe4,0x1d,0xb8, +0xa9,0x4b,0x3a,0x95,0x0b,0x86,0x9e,0x6f,0xd1,0xd0,0x6f,0x50, +0xf7,0x8a,0x46,0xb4,0x1f,0xbf,0xa5,0x09,0x7c,0x95,0x59,0xa2, +0x65,0xa7,0xd8,0x7d,0xd0,0x88,0xdb,0xed,0xd0,0xd9,0x89,0x83, +0x66,0x6a,0x1e,0x6c,0x09,0x30,0x6b,0x7d,0xa0,0x8a,0xbe,0x18, +0x64,0xbc,0x48,0x42,0xdb,0x95,0x8c,0xb6,0xab,0xbe,0x9c,0xa4, +0x8a,0x35,0xb4,0x09,0x6d,0x1b,0x13,0xf9,0xb2,0xd3,0xbb,0x07, +0x88,0x97,0x1f,0x61,0xfc,0x2f,0x1c,0xa1,0x99,0x59,0x84,0x54, +0x2f,0x4d,0x41,0x6b,0x19,0xad,0x1f,0x7b,0x93,0xea,0x67,0x58, +0xaa,0x1d,0xfa,0x91,0x38,0x07,0xfc,0xc8,0x52,0x15,0x1d,0x46, +0x91,0xf4,0x92,0xc9,0xd8,0x81,0xf3,0x50,0x94,0x6b,0x55,0x47, +0x8c,0x84,0xac,0x3a,0x93,0x4e,0xd9,0x2a,0x38,0x12,0x0e,0x3a, +0xbd,0xa6,0x59,0x59,0x5a,0xda,0xa0,0x98,0x3b,0x2f,0x64,0xa5, +0x05,0xa3,0xf4,0x82,0x83,0xb8,0x47,0x01,0xf3,0x43,0x7b,0xee, +0xc8,0x3d,0xd2,0x10,0x03,0xed,0x4f,0x73,0x14,0x8d,0xa9,0xa8, +0x27,0x12,0x8f,0x58,0x17,0xbe,0x22,0xc2,0x98,0xa1,0xfb,0xdb, +0xe1,0xe4,0x63,0xdc,0x7c,0x94,0x9d,0x19,0x62,0xb9,0x9e,0x7b, +0xfa,0xe4,0xbe,0x13,0x6b,0xd7,0x24,0x50,0x04,0x50,0x17,0xdc, +0x2c,0x69,0x69,0x26,0xd9,0xea,0x46,0xe9,0x14,0x72,0x84,0xd8, +0xe2,0x0d,0x07,0x68,0x3a,0xf8,0xc1,0xd7,0xdb,0xe9,0xbc,0xc7, +0x52,0x82,0x83,0x75,0x82,0xed,0x78,0xad,0x6a,0xc4,0x69,0x53, +0xfa,0x95,0x4e,0x39,0x44,0xae,0xae,0xc1,0x69,0xdd,0xb2,0xf4, +0x6c,0xf8,0x96,0x3b,0xa1,0x5b,0x54,0xa0,0x46,0x89,0x23,0xdd, +0xe1,0x22,0x77,0xf8,0x80,0x89,0xca,0xea,0x25,0xd9,0x91,0x57, +0xf6,0x65,0xbd,0x72,0x83,0x5f,0xbd,0xca,0xbd,0x78,0xed,0xf8, +0xbc,0xd4,0x61,0xdb,0x5c,0xd7,0x9a,0x9b,0x41,0x07,0xee,0x16, +0x8a,0xcd,0x4c,0x2a,0x3a,0xac,0x50,0x1b,0x66,0x96,0xf3,0x26, +0xc3,0x66,0x06,0x69,0xfa,0x89,0x19,0xff,0x9c,0x7f,0x45,0x96, +0x70,0x7e,0x9e,0x45,0x0e,0xec,0x1a,0xcb,0x2d,0xc1,0xff,0x0c, +0x20,0x3e,0x36,0x4e,0xb9,0x31,0xd8,0x1e,0xa6,0xb3,0xdd,0x99, +0xf2,0xbd,0xe5,0x8c,0x92,0x2d,0xff,0x9c,0x4f,0x08,0xd5,0x58, +0x51,0x9e,0xf6,0xff,0x7c,0x08,0x63,0xc1,0x9b,0xf6,0xff,0x98, +0xc4,0xb0,0x8b,0x30,0x0c,0x7f,0x26,0x66,0xc1,0x41,0xe9,0x89, +0xf1,0x8e,0xd9,0xe1,0x9f,0x4a,0xfa,0xc3,0xd3,0x92,0x45,0x74, +0xa3,0xc7,0x8f,0xb0,0x86,0x69,0x0b,0xb9,0xe7,0x02,0x7d,0x27, +0xd0,0x4c,0x5a,0x35,0x3a,0x99,0x97,0xff,0xbe,0x8c,0xd6,0x10, +0xbd,0xc4,0x27,0x58,0x62,0x0d,0xfc,0xa0,0x8a,0x51,0x59,0xfb, +0x19,0xfc,0xa4,0xc6,0xa0,0x93,0xfb,0x99,0x98,0x43,0x0b,0x0d, +0xc6,0x20,0xe1,0xcf,0xc0,0x9b,0x57,0x2a,0xc1,0xd8,0x55,0xbd, +0x28,0x1d,0x83,0x9f,0x2f,0x31,0x7f,0xc6,0x6b,0x7f,0xcf,0x9e, +0xbf,0xc8,0xba,0x78,0xfd,0xc4,0xfc,0x83,0x9f,0x6d,0xe3,0xb5, +0x36,0xb3,0x41,0xe3,0xf6,0x9d,0x3b,0x97,0xba,0xff,0x2c,0x77, +0x62,0x65,0xb8,0x43,0x75,0xdc,0xfd,0x79,0xad,0x2a,0xd4,0x2d, +0x6d,0xe8,0x57,0x3a,0x65,0x51,0x57,0x34,0x32,0xba,0xa5,0xd1, +0xbb,0xb4,0x8f,0x9c,0x4a,0xe7,0x0e,0x19,0x0d,0xb6,0xba,0x90, +0xb6,0xdc,0xcd,0x1b,0xcb,0x6d,0x56,0x06,0xcf,0x68,0x7f,0xdd, +0xd2,0xbf,0xdb,0x5f,0x97,0x8f,0xf5,0x7d,0xd7,0xb2,0xdc,0x6a, +0x66,0x70,0xba,0xb8,0xbd,0xaa,0x9d,0xb8,0x2a,0x37,0xeb,0x7b, +0x95,0x6f,0xd3,0x21,0x18,0x18,0x01,0x7c,0xcd,0x40,0x48,0x93, +0xaa,0xbd,0xcc,0x93,0x2f,0x15,0xed,0x33,0x38,0xaa,0xee,0x13, +0x5d,0x50,0xbb,0xb8,0x67,0x3f,0xa6,0xfd,0x4f,0x0e,0x3a,0xa6, +0x01,0x4c,0xbe,0xf1,0xe2,0xa6,0x16,0x4c,0xf4,0x03,0x5f,0x4b, +0xe6,0x79,0xe8,0x2b,0xba,0x71,0xbb,0xb1,0xec,0x8a,0x2d,0xbb, +0x73,0x3f,0x33,0x58,0xfa,0x77,0xc4,0x50,0xb6,0x96,0xeb,0xc5, +0xc1,0x8f,0xee,0xe6,0xe4,0x1c,0xca,0xb5,0x8a,0xdf,0x64,0x48, +0x49,0x00,0xd3,0x7c,0xb1,0x5c,0x2b,0x35,0x3e,0x69,0x1d,0x2d, +0x21,0xe8,0x07,0xbd,0x2c,0xbc,0xd2,0x5b,0xa6,0xf5,0x84,0xfd, +0x32,0x85,0xf9,0xe3,0xbb,0xee,0xaf,0x98,0xb7,0xbc,0x53,0xbc, +0x1a,0xf3,0xf0,0xa9,0x33,0x77,0x1a,0x82,0xc3,0x61,0x5f,0xd1, +0x3d,0x72,0x7d,0x78,0x5c,0xc9,0x4d,0xb6,0xda,0xf4,0xf9,0xd9, +0x75,0xe7,0x4b,0x89,0xd8,0xfa,0x77,0x42,0x22,0x35,0x75,0x22, +0xd9,0xd9,0x87,0x91,0x48,0x79,0x69,0xf7,0x94,0x15,0xcd,0xa2, +0x35,0x8e,0x73,0x71,0xa0,0xb4,0x5f,0xcd,0x84,0x0d,0xe6,0xdd, +0xe2,0x16,0x3f,0x34,0xc6,0x05,0xa1,0x4c,0x7b,0xa9,0x85,0xd3, +0xfd,0x43,0x93,0x6e,0x69,0xb1,0x5d,0x8d,0x0b,0x8e,0xbc,0xe4, +0xe4,0x42,0x05,0x1e,0x08,0x1f,0x55,0xb4,0x84,0x2e,0xe7,0xcf, +0x41,0x2b,0xd1,0x91,0x7b,0x1c,0x65,0x7f,0x4b,0x4f,0xe4,0x8e, +0xc3,0x68,0x55,0x63,0x1d,0x5e,0xfb,0x3e,0xbb,0x64,0x8d,0x4f, +0x59,0x17,0x97,0xb0,0xd0,0x4e,0xeb,0x2d,0xbd,0x63,0x08,0xd1, +0x5a,0x44,0xc4,0xed,0x37,0xd0,0x45,0x45,0xfe,0x5e,0xb2,0x07, +0x22,0xf9,0x4e,0xd4,0x11,0x33,0x98,0xd8,0x01,0x1b,0xb6,0xa0, +0x4d,0xeb,0xcf,0xd6,0xcb,0xac,0xae,0x7a,0x62,0x99,0xcc,0x5a, +0xa4,0x27,0xb4,0x49,0x20,0x50,0xd9,0x27,0x33,0x6d,0x9a,0xfc, +0x38,0x9a,0x12,0xcb,0x65,0x56,0x3e,0xfd,0x22,0x48,0x89,0x3f, +0x25,0x44,0x06,0xec,0x3d,0x4f,0xf8,0xa3,0x88,0xd1,0xd1,0xb7, +0xb4,0xb0,0xae,0x30,0x19,0x6c,0xf0,0x33,0x23,0x02,0xdd,0x89, +0x40,0x33,0x10,0xa3,0x08,0x42,0xbf,0xab,0x69,0xfa,0x2d,0x2d, +0xae,0x2b,0x4c,0x07,0x9b,0x3c,0xa5,0x43,0xf4,0x16,0x7f,0x32, +0x51,0x28,0xdb,0x27,0xa1,0xe1,0x7b,0xc4,0x84,0x3d,0xec,0xf0, +0x2e,0x6d,0x11,0x03,0x06,0x1d,0x70,0xa3,0x90,0x59,0x1e,0x84, +0x6c,0x04,0x9e,0x02,0xf9,0xf1,0x44,0x38,0x5d,0x66,0x24,0xfc, +0x47,0xac,0x23,0x20,0x6f,0x31,0xd3,0x18,0x93,0xe3,0x3d,0xb9, +0xba,0x9b,0x2e,0x28,0x5a,0x71,0x5b,0xd8,0xb5,0xd2,0x9f,0xad, +0x53,0x18,0x54,0x85,0xaf,0x7e,0x63,0x5a,0x45,0x7c,0xae,0xfb, +0xff,0x20,0x18,0x36,0x2c,0x87,0x63,0xe2,0xbf,0x96,0x8c,0xb6, +0x84,0xf4,0x15,0xeb,0x2b,0xef,0x74,0x2d,0x4b,0x7b,0xc9,0x3b, +0x25,0x73,0xcb,0x1e,0xb4,0x5a,0xd2,0x9e,0x26,0x2b,0x6b,0xf8, +0x94,0xa4,0x31,0xfc,0xad,0x47,0x3e,0x49,0xd9,0x3b,0x17,0xd9, +0xe3,0xc7,0x32,0x40,0x43,0xb6,0x4a,0x1f,0x44,0x2f,0x38,0x27, +0x4e,0xbc,0xc3,0x31,0x14,0xd2,0x44,0x45,0x56,0xd2,0x93,0x18, +0xf9,0xf0,0xff,0x45,0xf0,0x34,0x3b,0x2c,0xea,0x6e,0x54,0x21, +0x16,0xab,0xe0,0x8f,0x55,0x00,0x26,0xc6,0xc9,0xde,0x25,0x53, +0x59,0xc9,0x08,0x26,0x03,0x3d,0xb8,0x92,0x4a,0x77,0x35,0x3c, +0x2c,0xfe,0x88,0xc8,0x06,0xd4,0x55,0x45,0x30,0x74,0xcf,0x24, +0x42,0x1d,0x22,0xd7,0x61,0x50,0x11,0x65,0x5d,0x10,0xb9,0x04, +0x69,0x9d,0x5e,0x77,0x2e,0xcf,0x76,0xb1,0x33,0x77,0xec,0xc2, +0xb2,0x2f,0x1d,0xce,0xb1,0x26,0x24,0xa5,0xc4,0x25,0x2d,0xb2, +0x9b,0x28,0x27,0x16,0x97,0xb0,0xa2,0xb9,0xd4,0x9d,0x56,0xf0, +0x10,0x15,0xbc,0x65,0x54,0xbe,0xa8,0x20,0x3c,0xa0,0xfa,0x4d, +0x12,0x72,0x71,0x2f,0x8c,0x6e,0x55,0xf2,0xa0,0x5b,0x95,0x76, +0xc1,0x85,0xd0,0xd2,0x4b,0x95,0x3c,0xa0,0xda,0x4d,0x2d,0xa5, +0xfb,0x5f,0x45,0x14,0xb8,0x21,0x96,0xaa,0x9c,0x8f,0x63,0x28, +0xf4,0x5e,0x16,0x5d,0xea,0x3b,0x45,0xad,0x8f,0x5c,0x89,0x0c, +0x68,0x9f,0xe6,0xd3,0x9d,0x4b,0x1e,0x82,0x9b,0x45,0x5d,0xb9, +0x7f,0x6b,0xe9,0xed,0x3c,0x1e,0x50,0xe5,0xa6,0x16,0xdb,0x1d, +0x2a,0xe3,0x9b,0xd2,0xdb,0x79,0xee,0xfd,0xf7,0x4a,0x33,0x1e, +0x87,0x0a,0xa8,0x8e,0x45,0xab,0x9b,0x85,0xbd,0xcc,0x8c,0x61, +0xc5,0xd9,0xac,0xb6,0x7e,0xa2,0x02,0x03,0x8f,0x37,0xde,0xd2, +0x1f,0xd1,0xdd,0x45,0x83,0x36,0x83,0x69,0xe3,0x44,0x95,0xe2, +0x7c,0xd6,0x4f,0x3a,0x6f,0x21,0xca,0xaa,0xaa,0x57,0xee,0x3d, +0xee,0x23,0x74,0xca,0x21,0x42,0x30,0xc4,0x6a,0x0f,0x18,0xdf, +0x6d,0x2f,0xb6,0xbd,0xa5,0x8d,0xd2,0x15,0x30,0x52,0x95,0x69, +0x5d,0x8d,0xd4,0x44,0x99,0xb6,0x48,0x4f,0xad,0x81,0x97,0x0b, +0x31,0x2e,0x60,0xa2,0xbe,0xdc,0x15,0x4d,0x09,0xf8,0xb6,0xb8, +0x75,0xbe,0x9e,0xb8,0x5f,0xdc,0x1a,0x95,0x0e,0x53,0x33,0xa4, +0xf5,0x7c,0x69,0xb3,0x96,0xd6,0x6f,0x74,0xbe,0xf8,0x00,0x29, +0xdb,0xdd,0xd4,0xc2,0x48,0x51,0x2e,0x90,0xde,0xdd,0x8d,0xa1, +0x2b,0x8c,0x90,0x1d,0xf3,0x52,0x78,0x3a,0xff,0x5d,0xbb,0x10, +0x4c,0xf7,0xbf,0xca,0x51,0x45,0xba,0x1b,0x15,0xa9,0x58,0x56, +0x67,0xe8,0x24,0xa7,0x8d,0x2a,0xbd,0xb3,0xc8,0x83,0xae,0x5a, +0xf9,0xae,0x3b,0xb8,0xe0,0x9b,0x4a,0x46,0x67,0xdc,0x13,0xbd, +0xb9,0x75,0x12,0xd5,0xa7,0x32,0x77,0x3a,0xc8,0xe2,0xe4,0xfa, +0xe4,0xff,0xb2,0xee,0xc2,0x45,0x7e,0x11,0x55,0x7a,0x73,0x90, +0x07,0x54,0xbe,0xa9,0xc5,0x75,0x47,0x3d,0xf4,0x28,0x4e,0x63, +0xc4,0x46,0x10,0x6a,0x2d,0xb1,0x81,0x80,0x8b,0xe5,0x11,0xb4, +0x08,0xd5,0xb0,0xb9,0xc7,0x48,0x47,0xef,0xd2,0xba,0x1a,0x90, +0xc2,0x5c,0x5a,0xb4,0xcc,0x22,0x88,0xbb,0x91,0x74,0x69,0x91, +0x07,0x37,0x9b,0xf5,0x66,0xda,0x5b,0xdc,0x2c,0xe1,0xbf,0xa1, +0x21,0x4d,0xb2,0xeb,0x62,0x83,0xc8,0x08,0x59,0x15,0x47,0x08, +0x17,0x06,0x81,0x10,0xec,0x27,0x82,0x15,0xd9,0x66,0xac,0x4a, +0x32,0x9c,0xb0,0x48,0xf4,0x47,0xbd,0xb8,0x90,0x01,0xc1,0xa2, +0x1b,0xa9,0x16,0x06,0xe0,0x61,0x11,0x4b,0x57,0xa1,0x76,0xa5, +0xa0,0x76,0xe5,0x74,0x0e,0x36,0x83,0xb5,0xdf,0x27,0xa8,0x5d, +0xb5,0x5d,0x2f,0x0e,0x7a,0xfc,0x6d,0x4e,0xee,0xe1,0x3c,0xab, +0xd6,0x50,0x0e,0x2c,0x79,0xc1,0xa4,0x8d,0x81,0x1f,0x04,0xfb, +0x13,0xba,0xb6,0x06,0xba,0x44,0x03,0x1d,0x77,0x99,0xc0,0xc4, +0x12,0xf8,0xb2,0x24,0x96,0x95,0x8c,0xa7,0x8b,0x56,0x3e,0x31, +0xc0,0xe0,0x87,0x78,0xf4,0x96,0x22,0xe2,0xc2,0xa3,0xc3,0xc2, +0x2d,0xbc,0xc6,0xe7,0x4c,0x2f,0x13,0x8b,0x65,0xbc,0x2d,0x19, +0x99,0x26,0xc8,0x97,0x9f,0xd2,0xbd,0x88,0x15,0x92,0x99,0xf8, +0x1c,0xd2,0x8a,0xdf,0x32,0x28,0x7a,0x8f,0xc4,0x18,0xdd,0x8a, +0xf5,0x87,0x20,0xcb,0x85,0x4c,0x64,0xd7,0x1b,0xd9,0x5d,0x11, +0x11,0x89,0xec,0xa2,0x82,0xee,0x40,0x76,0xaf,0x19,0xc6,0xc0, +0xa5,0x8c,0xdd,0xc1,0x8f,0xef,0xe5,0xe4,0x1e,0xca,0xb3,0x8a, +0x6a,0xd2,0xbe,0x0f,0x9d,0xc6,0xb9,0x53,0xbd,0xa3,0x2d,0xee, +0x0c,0x01,0xef,0xf1,0x9c,0x58,0x4a,0x3f,0x10,0x79,0xd6,0x37, +0x06,0xfb,0xff,0xcc,0x78,0xf5,0x63,0xec,0x0e,0x1c,0x49,0xc5, +0xc4,0x71,0x16,0x2e,0x0b,0xd4,0xd7,0xda,0x8c,0xcb,0x72,0xc6, +0x6b,0x2d,0xf2,0x8a,0xbc,0x0c,0xbf,0xca,0x46,0x3a,0xc4,0x63, +0x38,0x7e,0x88,0xbd,0xfd,0x89,0x8e,0xad,0x5a,0xc5,0x6b,0x9d, +0x63,0xb0,0x73,0x30,0x2d,0x4e,0xf6,0xe2,0xb5,0xdd,0x18,0xe7, +0x13,0x98,0x5d,0x20,0x0d,0x70,0x0d,0x99,0x5c,0x7f,0x4b,0x81, +0xed,0x29,0x3a,0xc8,0x86,0xea,0xf4,0x86,0xa0,0x2c,0x04,0xa6, +0x8d,0x96,0x63,0xb6,0x12,0x48,0x2c,0x81,0x24,0xab,0x05,0xda, +0xe4,0x6e,0xe0,0x27,0x2f,0xb3,0x4f,0x09,0x13,0xa9,0x71,0x0b, +0xd1,0x31,0x72,0x5d,0xa4,0xbe,0x73,0x22,0x2d,0x49,0xd7,0x64, +0x0f,0xfa,0x32,0xfe,0x09,0x43,0x15,0xee,0x43,0xe3,0x1e,0x16, +0x1e,0x56,0x56,0xb8,0x47,0x37,0xe8,0x00,0x16,0x7f,0x61,0x51, +0x60,0x67,0x1f,0x6e,0x9d,0x40,0x37,0x0b,0xeb,0x23,0x5f,0x37, +0xb6,0x51,0x66,0x77,0xd5,0x13,0x71,0x32,0x7b,0x91,0x9e,0xd0, +0xa6,0x80,0x86,0x6a,0x58,0x85,0x69,0x33,0x64,0x9b,0x68,0x4a, +0xc8,0xec,0xf2,0xb1,0xdc,0xdc,0x96,0xb5,0xa2,0x95,0xe9,0x2a, +0x0a,0xa1,0xee,0x9b,0x29,0x86,0x6f,0x56,0x5b,0xf7,0xcd,0x10, +0x0a,0x11,0x14,0x6f,0x21,0x70,0x71,0x01,0xf6,0x9d,0x27,0xfa, +0x61,0x44,0x3f,0x91,0x3b,0x73,0xfa,0xc0,0x89,0x03,0x21,0x66, +0x4d,0xa2,0xac,0xad,0xc8,0x92,0x2f,0x77,0x3e,0xcf,0x04,0xb6, +0x8d,0x37,0xd3,0x36,0x52,0x53,0x2d,0xe4,0xce,0x35,0xd8,0x34, +0x1a,0xe1,0xca,0xc0,0xb6,0x21,0x58,0x2f,0x1d,0xcc,0x11,0xf6, +0x04,0xb0,0x3a,0xac,0x16,0xf8,0x06,0x08,0x5f,0x34,0xca,0xbe, +0x81,0xf8,0xd3,0xf9,0x8e,0xb6,0xd6,0x2c,0xdb,0x42,0xb2,0x6a, +0x48,0x67,0x58,0x04,0x0a,0x0e,0x06,0x11,0xb5,0xed,0x98,0x49, +0x9a,0x21,0xa8,0x64,0x37,0x89,0x75,0x3d,0xf0,0x09,0x10,0x3e, +0x1e,0xfa,0x7f,0x45,0x76,0x3c,0xa4,0xc6,0x1b,0x1d,0x1b,0x8c, +0x1d,0x8b,0xd6,0xbc,0x8f,0xf0,0xe6,0x35,0x1b,0xe2,0x90,0x97, +0xdb,0xb9,0x2f,0x0a,0x48,0xff,0x4f,0xa0,0x35,0x46,0x48,0x17, +0x86,0x3c,0xbe,0x97,0x4d,0x02,0xa2,0x35,0x97,0xc1,0x86,0x3c, +0x37,0xe8,0xc0,0xea,0x74,0x60,0x8a,0xec,0xb4,0xbf,0x6c,0xe0, +0x0b,0x86,0x00,0x14,0x8d,0x31,0xf4,0xf1,0x6f,0xb7,0x21,0xce, +0xdc,0x7d,0x0a,0x8e,0xb4,0xb0,0x93,0x5b,0xa7,0xb2,0xd9,0xf2, +0x56,0x09,0x09,0x8c,0x3f,0x83,0xcb,0x72,0x60,0xf1,0x0a,0xc6, +0x1d,0x86,0x33,0x78,0x79,0x97,0xdb,0x18,0x83,0x3c,0xd4,0x12, +0x92,0xe6,0xf9,0x6c,0x34,0x82,0x5d,0xd1,0x53,0x62,0x2f,0x7a, +0x78,0xba,0x5c,0x1b,0x2c,0xd7,0xd4,0xa9,0x1d,0xd2,0x25,0x3b, +0x18,0x25,0x1b,0xc7,0xe7,0x3e,0xa2,0x27,0xaf,0xd9,0x80,0x5d, +0x35,0x98,0xe5,0x38,0x3e,0x97,0x31,0x9b,0x95,0x43,0xd2,0x6c, +0x93,0xe5,0x75,0x69,0xde,0x85,0xd2,0xbc,0xa8,0x73,0xed,0x0e, +0xcc,0x5d,0xc7,0x71,0xac,0x4c,0x98,0x09,0x0d,0x77,0x19,0xcb, +0xc4,0x61,0xd9,0xf3,0x67,0x26,0xad,0xac,0x75,0x49,0x3e,0xab, +0x8f,0x7f,0x8a,0xec,0x92,0x8a,0x40,0xeb,0x56,0x60,0xb5,0xfa, +0x40,0x77,0x04,0x1a,0xcd,0x1e,0xc0,0xa1,0x54,0x6c,0x73,0x03, +0x0b,0x74,0xba,0xa3,0x2d,0x37,0xcb,0xe9,0x70,0x82,0x5b,0xe7, +0x63,0xd0,0xff,0x6d,0xc9,0x4e,0xac,0x5b,0x6b,0xb6,0x50,0xe6, +0xab,0xdc,0x71,0x35,0x33,0x63,0x18,0xbe,0xef,0xaa,0xe2,0xf0, +0x35,0x2b,0xa3,0x5a,0xeb,0x18,0x41,0xd6,0x87,0x5b,0xaf,0x19, +0xf8,0xbc,0x47,0xa8,0x76,0xaa,0x4a,0x24,0x88,0x82,0x41,0xd0, +0xee,0x2b,0x38,0x7a,0x88,0x71,0xbb,0xf5,0xa8,0x04,0xa8,0x2f, +0xd5,0xd7,0xb2,0xbe,0x70,0x33,0x94,0x6e,0xac,0x8a,0x45,0x47, +0x6d,0x43,0xb2,0x9a,0xaf,0x4d,0xf6,0x6e,0x00,0x55,0x02,0x45, +0x95,0x06,0x50,0x35,0x50,0x54,0x55,0xe0,0xe0,0x0e,0x55,0x34, +0x01,0x2f,0xd4,0x82,0x66,0xa2,0x13,0xaf,0xfc,0x01,0xdb,0x76, +0x36,0x29,0xe3,0xb2,0xed,0x42,0xb7,0x10,0x5e,0xeb,0x10,0xbb, +0x9d,0x7e,0x69,0x5f,0x96,0x35,0x3e,0x39,0x65,0x45,0x22,0xea, +0x42,0x3f,0xd2,0x05,0x5e,0xf9,0x3c,0x62,0x4f,0x42,0x54,0x3d, +0xbd,0x3f,0xa6,0x8f,0x44,0x55,0x1a,0x97,0xa1,0x5a,0xc7,0xad, +0xe3,0xe9,0xc0,0x06,0x52,0x07,0x75,0x3a,0xcb,0x95,0x5f,0x50, +0x77,0x54,0x63,0x5b,0x0c,0x8f,0xb0,0x1a,0x5b,0x65,0x78,0x84, +0xd5,0x98,0x36,0x9d,0x3c,0x42,0xe1,0xc8,0xb4,0xd9,0xe4,0x11, +0x62,0x62,0x35,0x79,0x84,0xf8,0x8b,0x20,0x24,0xf9,0x8e,0x74, +0xd9,0x02,0x7a,0x84,0xc8,0x7a,0x18,0xb1,0x9e,0xc8,0xab,0xc7, +0x33,0xd1,0x9a,0x24,0x9f,0xab,0xd3,0x98,0xf8,0x46,0x76,0x48, +0xa2,0x97,0x93,0xe8,0xe5,0x56,0x64,0xc6,0xd7,0xbb,0x23,0x54, +0xe9,0x2d,0xaa,0x34,0xe5,0x4e,0x85,0x6c,0x9b,0x2a,0x9a,0x42, +0xdb,0x73,0x67,0xb1,0x4e,0xad,0xa3,0x52,0x22,0x57,0x45,0x44, +0x59,0x23,0xa2,0x96,0xad,0x36,0x6d,0x4d,0x4b,0x3e,0x97,0x6d, +0x3b,0xdb,0x7d,0xa8,0x19,0x2a,0x8f,0xea,0x86,0x5a,0xee,0xe9, +0x7a,0x6e,0x78,0x41,0x7e,0xfa,0x85,0x7d,0x17,0xad,0x09,0x29, +0xeb,0x96,0x27,0x2c,0xb2,0x13,0x0e,0xf0,0x85,0x37,0x7b,0xfb, +0x94,0x5a,0x70,0x21,0xaf,0x9e,0xc0,0x66,0xc2,0xcd,0x78,0xe2, +0x27,0x93,0x1c,0x45,0xa2,0x3d,0x06,0x2e,0x2f,0x7e,0x47,0x7a, +0x1b,0x92,0xee,0xf5,0xff,0x17,0xe9,0xaa,0xb0,0x37,0x80,0x95, +0x8c,0x66,0xf9,0x80,0x23,0x91,0x43,0x67,0x20,0x29,0x1f,0x0a, +0x19,0x22,0x82,0x69,0x4d,0xb5,0x6c,0x75,0xd5,0xca,0x2d,0xeb, +0xb6,0xc6,0x6d,0x59,0x68,0x15,0xa7,0xa1,0xee,0xf1,0x8b,0xf0, +0xa5,0xa8,0xc1,0x6b,0x3f,0x61,0xa1,0x8b,0x56,0x9b,0x52,0x8f, +0x6e,0x3c,0x9d,0x65,0xdb,0xd5,0x79,0x96,0xb9,0xb6,0xaf,0x3f, +0xac,0xaf,0xe3,0x7a,0x2c,0x58,0xb8,0x5c,0xfc,0xe1,0xc4,0xc5, +0x34,0x6b,0x21,0x4c,0x53,0xc5,0x87,0x9d,0xe1,0xc3,0xe1,0x34, +0x35,0x7e,0xb3,0x18,0x7b,0xc2,0xf2,0x23,0xbb,0x41,0xb9,0xf6, +0x9d,0xc1,0x7e,0x38,0x4d,0x7a,0x3b,0x17,0xaf,0x63,0x25,0xd5, +0x70,0x90,0x2c,0xf6,0x65,0x63,0x69,0xce,0x7a,0x90,0x1c,0xff, +0x8f,0x19,0x4b,0xde,0xcb,0x80,0x7b,0x60,0x91,0x7b,0x98,0x0c, +0x61,0x85,0xb4,0xd8,0xc2,0xdc,0x19,0xcc,0x52,0xf1,0x2b,0xba, +0x74,0xc5,0x0c,0xc1,0x90,0x25,0xc3,0xfe,0xb1,0x12,0x53,0xe0, +0x74,0xd1,0x5d,0xec,0xf8,0xf5,0x34,0x6f,0x7c,0xa5,0xe8,0xb5, +0x9e,0x2c,0x0e,0x80,0xb1,0x6f,0x9b,0xe8,0x58,0x47,0x19,0x1c, +0x8e,0xa5,0x29,0xdb,0xea,0x72,0x2b,0xea,0x77,0x2a,0x93,0xdf, +0x3f,0xe3,0xea,0x67,0x4c,0x7e,0x0a,0x9d,0xdf,0xb6,0xc5,0x9c, +0x3f,0x30,0x67,0x1f,0xe5,0xdc,0x80,0x14,0x51,0x07,0x85,0x7c, +0x30,0x65,0xa8,0x89,0x09,0x29,0x2b,0x92,0x63,0x85,0x1f,0x58, +0x2d,0x99,0xe7,0xa0,0x87,0x70,0xe4,0x8e,0x9f,0xb3,0xc3,0x29, +0x47,0xcf,0xd8,0x8e,0x75,0x1d,0x67,0x6e,0x1c,0xe2,0x0f,0x1d, +0x6a,0xbb,0x66,0x0e,0x79,0x74,0x31,0xe7,0xe4,0x91,0x74,0xab, +0xc8,0x83,0xe1,0xc5,0x68,0x66,0x58,0x57,0xa8,0x04,0xb1,0x6c, +0x3b,0xec,0x12,0xb5,0xd1,0xa9,0x40,0x4c,0x9f,0xab,0x89,0x89, +0xa5,0x98,0x9c,0x2d,0x99,0x67,0x11,0x53,0xa5,0x05,0x29,0x11, +0xcb,0xc2,0xa3,0xb9,0xa9,0x0d,0xad,0xd3,0x39,0x6d,0x3b,0xe2, +0x35,0x11,0xf1,0x05,0x41,0x87,0xba,0xae,0x19,0x88,0x2f,0xf7, +0xc4,0x91,0x33,0x84,0x6f,0x30,0xe1,0x33,0x75,0x05,0x7b,0xf3, +0xb2,0x76,0xad,0x65,0x31,0x7b,0x03,0xd5,0x44,0x47,0xf6,0xf6, +0xbc,0xce,0xae,0x52,0x87,0xc1,0x23,0xf8,0x44,0xd5,0x66,0xe6, +0xc9,0x73,0xb0,0xd9,0x9d,0x69,0xc9,0x79,0x72,0x01,0x2d,0x21, +0x4b,0xc6,0xd0,0x56,0xb6,0xe3,0x15,0x3e,0x63,0x7a,0xda,0x03, +0xd3,0x7c,0x13,0xd6,0xaa,0x80,0xee,0x73,0xd9,0xa7,0x5c,0xe9, +0xaf,0x8a,0x86,0xb0,0x1d,0x1a,0x1a,0xb0,0xdf,0xc2,0x7c,0x15, +0x9a,0x8b,0x6a,0xfe,0x92,0x89,0x54,0x8d,0xf9,0x73,0x6b,0x7f, +0x56,0xe4,0xc3,0xf2,0xe0,0x90,0x1a,0x83,0xb1,0xfa,0x71,0x86, +0xd5,0xa9,0xe2,0x1a,0x7b,0x48,0x9e,0x63,0xe1,0xe8,0xc1,0x45, +0x89,0xf1,0x90,0xd5,0x4f,0x2c,0xf2,0x80,0x28,0x68,0xc7,0x6d, +0x27,0x09,0x56,0xba,0x23,0x09,0xcf,0x99,0x4c,0x4c,0xf5,0x80, +0x49,0xd0,0xee,0x6f,0xec,0x12,0xb7,0x43,0x8d,0x7b,0xf0,0x3b, +0x77,0xff,0x5d,0x7f,0x8f,0x2c,0xa8,0xd1,0x58,0x78,0x22,0x16, +0x3e,0xd4,0x4f,0x4c,0xd3,0xc1,0x68,0x8d,0xda,0xb3,0x7c,0x08, +0xa4,0x9b,0x32,0x37,0xab,0x17,0xe1,0x6a,0xb0,0x59,0xfc,0xad, +0xb7,0xca,0xdd,0x4f,0xd3,0xd6,0xfd,0x31,0x4c,0x86,0xde,0x16, +0x83,0xb9,0x82,0x03,0x55,0x35,0xa8,0xaf,0x66,0xc2,0xc8,0xfe, +0x66,0xb8,0x89,0x56,0xdb,0xb5,0x80,0xfd,0x76,0x3b,0x71,0x7d, +0x0e,0x2d,0x8e,0x33,0xb6,0x84,0x8a,0xf9,0xa2,0x96,0xfa,0x6c, +0x89,0x32,0x72,0xde,0xfc,0x89,0xa3,0x6c,0xbe,0x59,0x21,0x2f, +0x9e,0x67,0x65,0x5c,0x3d,0x1a,0xfa,0xe5,0xc8,0xad,0xae,0xf1, +0xcf,0xce,0xc9,0xca,0x66,0x31,0x10,0x26,0xa8,0x51,0xca,0x80, +0xb1,0x7b,0xd3,0xd3,0x0f,0xed,0x3d,0xef,0xb6,0x8e,0x57,0xe6, +0x8c,0x57,0x3d,0x4f,0xf2,0x33,0x86,0xf3,0x6f,0x98,0x38,0xc0, +0xad,0xf5,0x19,0x1c,0xa0,0x29,0xe9,0x60,0x51,0x19,0xbd,0x0b, +0x07,0x5e,0x15,0x07,0x7c,0x07,0xd8,0x59,0xb4,0x9b,0x21,0x33, +0x1b,0x6e,0x8b,0x30,0x62,0x26,0x0e,0xea,0x8b,0xea,0x4c,0xeb, +0x60,0x08,0x11,0x86,0x20,0x6d,0xa1,0x93,0xaa,0x85,0x37,0x57, +0xe4,0xe2,0xb9,0x89,0x01,0x5a,0xc4,0x2e,0x13,0x54,0x2a,0x14, +0xf7,0x25,0x4d,0x84,0xf8,0x30,0x78,0x0e,0xf9,0xd8,0x43,0x99, +0x72,0xe6,0x6b,0x2d,0xea,0x92,0xcc,0x85,0x3b,0xd8,0x4f,0x7b, +0xb3,0x64,0x82,0x81,0x1e,0xc7,0xdb,0x4f,0xb8,0xd3,0x4e,0x36, +0x48,0xe5,0x6e,0x0f,0x18,0x9d,0x66,0xfa,0x1e,0x25,0x58,0x0f, +0xf5,0xc0,0x9d,0x76,0xd3,0xf7,0x55,0x45,0xb3,0xc5,0x4a,0xff, +0xb9,0x73,0x27,0x8e,0xb5,0xf9,0xdf,0x08,0xd6,0x8f,0xaf,0xbc, +0x78,0xf9,0xd0,0xdc,0x03,0xfd,0xb6,0xb9,0xc6,0x8b,0xe6,0x17, +0x8c,0xdd,0xf4,0x13,0xb8,0xdb,0x32,0x56,0x14,0xa5,0xef,0x6f, +0x87,0xaa,0x62,0x61,0x77,0xf9,0xe5,0x4d,0x11,0x8d,0x9a,0x1f, +0x57,0xa0,0x5d,0x32,0xa3,0x8c,0x44,0x70,0xeb,0x03,0x76,0x12, +0xa2,0x54,0xee,0xc9,0xd8,0xba,0x1d,0xa2,0x92,0x5b,0x6c,0x56, +0xff,0x18,0x9f,0x45,0x5e,0x4b,0xac,0x4d,0x61,0x58,0xb1,0x3b, +0x2b,0xfa,0x40,0x1b,0xa2,0x96,0x16,0xe8,0xf6,0x17,0x12,0x05, +0x84,0xc8,0xa7,0xb2,0x62,0x21,0x8c,0xe7,0x35,0xfa,0x31,0xb1, +0x08,0xe2,0x44,0x43,0x02,0x1f,0x4d,0xe0,0x31,0x05,0xda,0x91, +0x6e,0xb0,0x14,0xc1,0x43,0xbb,0xcb,0x8d,0x3a,0x78,0x9e,0x1a, +0x1f,0x9f,0x14,0x97,0xb0,0x04,0x23,0xeb,0x6a,0x96,0x73,0xe9, +0xd8,0x66,0xf6,0x11,0x29,0xe1,0xf4,0x35,0x34,0x22,0x66,0xf9, +0x4a,0xd3,0xb6,0x43,0xc9,0x47,0xd3,0x6c,0x87,0xba,0x4f,0x32, +0x37,0x1e,0x12,0x08,0x35,0xeb,0xb9,0x9e,0x1b,0x7a,0x2b,0x33, +0xe3,0xc4,0x81,0xd3,0x56,0x24,0x31,0x86,0xbb,0x46,0xb1,0x94, +0x9d,0xc8,0x9e,0x18,0x03,0x5b,0xc4,0x06,0xa2,0x33,0x8f,0xe8, +0x4c,0x2c,0xd0,0x96,0x75,0x83,0xd9,0x48,0x67,0x6c,0x77,0x39, +0x4b,0xa7,0xb3,0x8f,0x57,0x70,0x65,0x62,0x55,0x4f,0x6e,0x5a, +0x8c,0x55,0xd7,0x76,0x32,0x39,0xe7,0xa6,0x18,0x89,0xb0,0x13, +0x0a,0xc8,0xfb,0x3e,0x0f,0xc3,0x8b,0x34,0xec,0x63,0x59,0x4f, +0x9d,0xff,0x5a,0xcc,0x12,0xa3,0xe0,0x74,0x3f,0x31,0xbf,0x0e, +0xe2,0x68,0x35,0x80,0x5d,0xd4,0x97,0x56,0xba,0xbb,0x88,0xf5, +0x62,0x05,0xaf,0xdd,0xf1,0xdf,0x94,0xe7,0x8a,0x07,0x9b,0x24, +0x7d,0xb9,0x25,0xfe,0x3f,0x00,0x68,0x7d,0x61,0x0d,0x77,0x46, +0x6f,0x12,0xc7,0x9b,0x53,0x48,0x51,0xc4,0xc2,0x2e,0x6e,0x77, +0x86,0x2d,0xb4,0x2c,0x5d,0xcd,0xf9,0x06,0x76,0xa8,0x24,0x86, +0x85,0xbf,0x41,0xdd,0x19,0x09,0x97,0x82,0xc5,0xa2,0xba,0x10, +0x4d,0xbb,0xbc,0x0f,0x28,0xaf,0x6f,0x73,0x73,0x3c,0x6d,0x09, +0xac,0x6b,0x39,0x77,0xda,0xe4,0xa0,0x17,0x27,0x7c,0xe3,0xa5, +0xaf,0x1a,0xf5,0x5a,0x4c,0x42,0x86,0x0f,0x07,0x8b,0x69,0x75, +0x50,0x5d,0x5a,0xa2,0x56,0xb9,0x45,0x5f,0xd4,0x97,0x53,0xc6, +0x71,0xf3,0x3a,0xf6,0x0e,0x98,0xb8,0xab,0x58,0x44,0x5a,0x94, +0xa7,0xa2,0x12,0xe9,0xf7,0xcd,0xae,0xe1,0xae,0xee,0xef,0xb8, +0xb9,0x01,0x9e,0xaa,0x18,0x95,0xb9,0x9f,0xc1,0x0d,0x35,0xfc, +0xb5,0x18,0x8b,0x58,0xf7,0x07,0x8b,0x89,0x75,0x60,0x1c,0xb4, +0x24,0x2e,0xca,0xb4,0xa9,0xf8,0x53,0xa6,0xbd,0x11,0x9e,0xdc, +0xba,0x9c,0x9a,0x7c,0x0a,0x35,0x79,0x58,0x81,0xf6,0x79,0x37, +0x88,0xc4,0x26,0x9f,0xde,0x5d,0xae,0xd4,0x9b,0xfc,0xa2,0xde, +0xe4,0x4b,0x21,0x85,0xdb,0x2a,0x62,0x78,0x28,0x7a,0x93,0xc2, +0x7c,0xe8,0x07,0x87,0xf5,0x45,0x8f,0x4f,0xfc,0x70,0xb0,0x2e, +0x8f,0x39,0x15,0x0c,0x15,0x6a,0xce,0x7e,0x82,0x94,0xe2,0xca, +0x84,0x70,0x36,0x21,0x5c,0x54,0xa0,0xed,0xec,0x56,0x84,0xbe, +0xea,0x68,0x44,0xa6,0x89,0xdd,0xd4,0x3d,0xe5,0xc1,0xad,0xb8, +0x52,0xa9,0xe4,0x2e,0x46,0x52,0xf3,0xba,0xcb,0x4d,0x37,0x45, +0x98,0x01,0x7d,0x84,0x24,0x77,0x16,0x57,0xd1,0xd4,0xff,0x0d, +0xda,0xab,0xda,0xaa,0xd6,0x8a,0x5c,0x47,0x6b,0x79,0xd6,0xa0, +0xa6,0x99,0x0b,0x45,0xbe,0xfe,0x35,0xaf,0x6a,0x27,0x06,0xc1, +0xb2,0x96,0xfa,0x5c,0x8b,0xc9,0x94,0x31,0xcf,0xb5,0xd5,0x59, +0xf2,0x0e,0x5c,0xa1,0x53,0x02,0xb3,0x0c,0x2e,0xe0,0x20,0x74, +0x50,0xb5,0x57,0x39,0xf2,0x95,0xa2,0x8d,0x81,0xd5,0xea,0x5e, +0x51,0xab,0x73,0xe2,0x2c,0x68,0x64,0x9c,0xf7,0xdf,0xa8,0xcb, +0xa2,0x3d,0x50,0xcb,0x04,0xf5,0x7b,0x17,0x7d,0x94,0xad,0x38, +0xfc,0x07,0x66,0xdd,0xc1,0x95,0xd7,0xe8,0xc0,0x6e,0xf0,0x9a, +0x8f,0xd8,0x34,0xa5,0xd6,0xf0,0x7d,0xa7,0x4e,0x9c,0xdc,0xff, +0xda,0x6d,0xb7,0xf2,0xe6,0xe4,0xa4,0x11,0xc3,0x86,0x4f,0xae, +0xe9,0xe6,0x50,0x92,0xce,0xe4,0x14,0x98,0xca,0xd5,0x91,0xe8, +0xda,0x43,0x67,0xf1,0x92,0x69,0xe7,0x30,0x47,0xdc,0xa5,0x9c, +0xa7,0x38,0xc2,0x84,0xb0,0x92,0x53,0x4c,0x4e,0x16,0xb9,0x6a, +0x92,0x31,0xc2,0xf8,0x1b,0x23,0x4c,0x4f,0xe1,0x88,0xe3,0x02, +0x77,0xf2,0x66,0x9f,0x1f,0x5e,0x77,0x24,0xcd,0x18,0x65,0xfa, +0xfb,0xc3,0x27,0x34,0xca,0x3c,0xbe,0x98,0x7b,0xf2,0x30,0x8e, +0x32,0xb7,0x61,0x38,0x74,0x43,0xa7,0xc1,0x0b,0xaa,0xf0,0xca, +0xce,0xec,0x02,0xec,0x2a,0xfe,0x95,0xce,0xfe,0x97,0x53,0x45, +0x2a,0xaf,0xf0,0x90,0x89,0x0a,0x5e,0xe0,0x70,0x9a,0xb5,0x75, +0x49,0x08,0x28,0xa4,0x89,0xda,0x6a,0xf0,0x05,0xeb,0x84,0x6f, +0xa1,0x9f,0x18,0x44,0xe7,0xfc,0xeb,0xe3,0xc2,0x5f,0x19,0x9e, +0x98,0x61,0x19,0xf3,0x57,0xc6,0x3d,0x98,0xcf,0x9d,0xa3,0x59, +0x51,0x10,0x7b,0x0e,0x47,0x78,0xb5,0x9b,0x94,0xd2,0x47,0x90, +0x8a,0x5d,0xd0,0xa0,0xc7,0x71,0x3b,0x57,0x3d,0x87,0x8a,0x55, +0x67,0x94,0x6c,0x07,0xf5,0x79,0xd5,0xf5,0x8c,0x97,0x9f,0x46, +0x75,0xcc,0xfd,0x67,0x16,0xa6,0xa3,0x42,0xab,0x9f,0xe0,0x50, +0x74,0x04,0x47,0xc6,0x6d,0xa2,0x26,0x1b,0x4d,0xbc,0xfe,0x8c, +0xb4,0x96,0x43,0xfd,0xe2,0x35,0xfa,0x0b,0xd9,0x11,0x3e,0x50, +0x03,0xb4,0xd8,0xe6,0x66,0xb9,0x8a,0xac,0xe8,0xe2,0x52,0x2b, +0x8a,0x36,0x34,0x88,0xc1,0x2b,0x5a,0xa7,0x75,0xd9,0x00,0xec, +0x45,0x06,0xd3,0xc2,0x60,0x33,0xf6,0x60,0x13,0x32,0x9a,0x8a, +0xc3,0x3b,0x7c,0xb0,0x01,0xea,0x71,0xe7,0x21,0x4c,0x6b,0xae, +0x65,0xa9,0x5b,0x52,0xc8,0x9f,0x41,0x77,0xa6,0xbe,0x05,0xfd, +0x99,0x03,0xc2,0x3d,0x2c,0x71,0x01,0x7d,0x26,0x9e,0x11,0x1a, +0xbb,0xca,0x94,0x7a,0x6c,0xe3,0xe9,0x6c,0xdb,0x6e,0xf4,0x69, +0x6a,0xfa,0xfa,0xc2,0xfa,0xda,0xe4,0xd3,0xd4,0xb8,0xf4,0xc3, +0xa9,0x8b,0xd8,0xc0,0x43,0x61,0x39,0xf7,0x40,0xc7,0x64,0x02, +0xa0,0x71,0x9b,0x05,0xcb,0xe9,0x5e,0x8c,0x34,0x45,0x3c,0x09, +0x54,0xc5,0x54,0xe3,0xe9,0x04,0xad,0x49,0x58,0x4c,0x37,0x62, +0xfd,0xee,0xe5,0x09,0x41,0xf4,0x6f,0x49,0x4d,0x72,0xa7,0xce, +0xa2,0x3b,0xc5,0x2b,0xc4,0x92,0x33,0x74,0x0d,0x9d,0x21,0xad, +0x95,0xf6,0xb5,0xba,0x25,0x69,0xb3,0xc1,0x87,0xab,0xe5,0xd8, +0x25,0xf4,0xab,0xaa,0x86,0xf2,0x5a,0xe3,0xd8,0x89,0x0b,0xb6, +0x9d,0x5d,0xe6,0x9a,0x1b,0xf6,0x0a,0x82,0xf5,0x4d,0x5d,0x8f, +0x06,0x0b,0xb7,0x8c,0x9f,0x8e,0x5f,0x44,0xf3,0x37,0x08,0xe6, +0xa9,0xbf,0x7a,0xd5,0x85,0x20,0xfa,0xb7,0xa4,0x01,0x79,0x50, +0x55,0xd1,0x83,0x82,0x9b,0xb4,0x6a,0xa0,0xbf,0xdc,0xad,0xa7, +0xaa,0x60,0x6a,0x1b,0xa5,0xa0,0x1d,0x2a,0xd7,0x71,0x3d,0xd5, +0x0f,0x0a,0xe4,0x54,0xfd,0x6d,0x75,0x7c,0x3b,0xfe,0x5d,0x6a, +0x89,0xfe,0xf6,0x1e,0x54,0x43,0xa7,0x4a,0xe7,0x2d,0x18,0xce, +0xa1,0x17,0xc5,0x2b,0x8c,0xa5,0xb1,0xef,0x58,0xc9,0x5d,0x76, +0x38,0xf1,0xe8,0x39,0xfd,0x33,0x7e,0x8b,0x29,0x03,0x1b,0x75, +0x74,0xf5,0x78,0xce,0x1d,0x77,0xb2,0x23,0x49,0x47,0xd3,0xf5, +0xaf,0xf7,0x4d,0xe8,0xeb,0x7d,0x03,0xfd,0xeb,0x7d,0xda,0x89, +0xfd,0x27,0xad,0x89,0x68,0xd7,0xf5,0xbd,0x6a,0x9e,0x96,0xc2, +0x4b,0x67,0x4f,0xec,0x2b,0x72,0x61,0x50,0xdd,0x92,0x7e,0x1e, +0x6a,0x8a,0x8a,0x11,0xdc,0xfe,0x12,0x62,0x5e,0x4c,0xae,0x58, +0x8e,0x3a,0x3f,0x62,0xe9,0xca,0x3d,0x07,0x52,0x52,0xb9,0x5d, +0x30,0x6b,0x17,0x34,0x00,0x16,0x74,0x28,0x5d,0xf6,0x72,0x24, +0xed,0xf8,0xc6,0xc4,0x2d,0x71,0x9b,0x68,0x71,0x6d,0x75,0x6e, +0x37,0x91,0x45,0x59,0x1d,0x8a,0x7e,0x67,0x30,0x59,0xfd,0xd9, +0xab,0x09,0x04,0xd1,0xbf,0x25,0xc6,0xb9,0x4b,0x27,0xa1,0x6a, +0x49,0x38,0x83,0x75,0x17,0x74,0xac,0xe8,0xd5,0x8d,0x52,0xb5, +0xd5,0xcd,0x75,0x03,0xe0,0xaf,0xad,0xf9,0xc2,0x44,0x57,0x7b, +0xdc,0xd7,0xaf,0xf6,0xc0,0xe2,0xd3,0xd5,0x17,0x5e,0x0d,0x20, +0x88,0xfe,0x2d,0x69,0xce,0xa4,0x80,0x3f,0xe0,0x0d,0xfb,0x81, +0x7b,0xf4,0x66,0xf4,0x76,0x92,0xfa,0x93,0x57,0x53,0x08,0xa2, +0x7f,0xf4,0xf6,0x14,0x54,0x21,0x67,0xd0,0xb2,0x9c,0xc1,0x29, +0x63,0x03,0xe8,0x97,0x01,0x62,0x36,0xac,0x28,0x10,0x19,0xc7, +0x42,0xb8,0xfd,0x2e,0xa6,0xef,0xfe,0x44,0x5f,0x53,0x56,0x84, +0x59,0x74,0xf3,0x59,0x63,0x3a,0x8d,0x62,0x3e,0x6c,0xc8,0xa7, +0x2d,0xa0,0xe5,0xf5,0x7d,0x95,0xc3,0xe0,0x2a,0xb7,0x86,0x90, +0xab,0xaa,0x05,0xc1,0xde,0x92,0x02,0xda,0x06,0xf8,0xd1,0x26, +0xae,0x76,0x41,0xbc,0xcb,0xd0,0x9f,0xd5,0x2f,0x4c,0x33,0xdd, +0x11,0xa6,0xd2,0x5d,0x98,0x1e,0xd8,0x91,0x5c,0x19,0xc7,0xe0, +0x8b,0x20,0x31,0xbe,0x3e,0x8c,0x86,0x0e,0xc5,0x7b,0xd8,0x6f, +0x62,0x94,0x18,0x96,0x0b,0x60,0x6c,0xc1,0x7c,0xa0,0x64,0x83, +0x87,0xb1,0x05,0x13,0xe1,0x76,0xeb,0x5b,0x30,0x87,0xe7,0x40, +0x31,0x6d,0xc1,0xbc,0xaf,0x5c,0x44,0xb1,0x2f,0xdb,0x82,0xa9, +0x03,0xec,0xe5,0xca,0x72,0xba,0x5d,0x4d,0x7e,0xc0,0xcd,0x19, +0x68,0xe3,0x68,0x79,0x59,0x85,0x6f,0x59,0x1b,0x40,0xf7,0x30, +0x0e,0x5f,0xc0,0x1f,0xec,0x41,0x51,0x5d,0x06,0x9b,0xb8,0xf2, +0x8c,0xf8,0x94,0xf6,0xe8,0x06,0xd1,0x85,0x6b,0xdc,0xa3,0x3e, +0x7b,0x54,0xba,0xc3,0xf1,0x2a,0x77,0x5e,0xc0,0xde,0xab,0x29, +0x54,0xba,0x23,0x2a,0xe9,0x2c,0x4f,0x81,0x1c,0x5e,0x0d,0x8d, +0xcd,0x53,0xa6,0xf9,0x43,0xea,0x0c,0xd6,0x14,0xc7,0x15,0xf3, +0x61,0x06,0x6b,0x7e,0x32,0x3b,0x68,0xdd,0x99,0x9c,0x05,0x81, +0xdc,0x0e,0x9f,0x19,0x79,0xb5,0x5e,0xe2,0x03,0xee,0xf8,0x3f, +0xec,0xf3,0x03,0xc9,0x87,0x4e,0xd8,0x0e,0x76,0x9d,0x6a,0xfe, +0x78,0x40,0x30,0xb4,0x6d,0xee,0x9a,0x31,0xf8,0xe1,0xd9,0xec, +0xa3,0x87,0x4f,0x5a,0xa7,0xca,0x3a,0x6f,0x13,0x99,0x36,0x98, +0xce,0x4a,0x3f,0xfe,0x7f,0x2b,0x57,0xd4,0x07,0xdd,0xd7,0x0a, +0x4c,0xd6,0x11,0x07,0xb9,0xf5,0x09,0x93,0x16,0xf5,0x96,0x68, +0x38,0x94,0x2e,0x6a,0xfb,0x99,0x2b,0xcd,0xf0,0x9d,0x1d,0x93, +0xb5,0xc5,0x16,0x6e,0xab,0x81,0xa3,0x61,0x15,0xda,0xbd,0xf7, +0x0d,0xbb,0xe0,0xc3,0x7a,0xb7,0x61,0x62,0x35,0xcc,0x10,0x4b, +0xd1,0x76,0xac,0xc7,0x31,0x8b,0xbb,0xa1,0x9a,0x9e,0x56,0xe7, +0x3c,0x17,0x73,0x45,0x08,0x9c,0x0e,0x11,0xa1,0x4d,0x61,0x2e, +0xd4,0x0b,0x64,0x99,0xdc,0xfe,0x2a,0x73,0x20,0xa0,0x49,0x72, +0xb8,0x1a,0xfe,0x5c,0xbf,0xa6,0xeb,0x60,0x88,0x98,0xde,0x04, +0x26,0x43,0x5d,0x72,0x54,0x9f,0xde,0x48,0x58,0x7f,0xd1,0x2d, +0x26,0xb3,0xe4,0x5b,0x26,0x36,0xf5,0xa7,0xe3,0x5e,0x5e,0x60, +0x23,0xd7,0x6e,0xab,0x63,0xd6,0xfa,0xc1,0x41,0x15,0x5a,0x0b, +0x25,0x10,0x9e,0x89,0x54,0xf1,0x2c,0x50,0x91,0x73,0xe0,0xa4, +0x1a,0xf1,0x5c,0xdf,0xd9,0xf0,0x65,0x88,0x98,0xd2,0x04,0x26, +0x40,0x5d,0x6e,0x37,0x8e,0x5d,0x74,0x8b,0xce,0x34,0x45,0x0e, +0xea,0x1a,0xfb,0xb1,0x8b,0x36,0x67,0x15,0x15,0x72,0x10,0xad, +0x71,0xc4,0xf1,0x65,0xda,0x08,0x78,0xcc,0x5d,0x17,0x30,0x70, +0x04,0x3b,0xd7,0xc5,0x07,0xa1,0x02,0x0b,0x7d,0x2e,0x62,0xb0, +0xfc,0xa5,0x10,0xb1,0xa4,0x09,0x2c,0xc2,0xf2,0xe8,0xb7,0x69, +0xde,0x54,0xd3,0x42,0x5e,0xa1,0x05,0x9b,0x2c,0x47,0x70,0x37, +0x2f,0xf6,0x2c,0x3f,0x61,0xfd,0x25,0xb7,0x98,0x0c,0x53,0xe4, +0x80,0x2e,0xb1,0xad,0x5c,0xc4,0xbd,0x38,0xee,0x11,0xc0,0x10, +0xe1,0x58,0xa3,0x2a,0x53,0xe9,0xc6,0xb1,0x10,0x31,0xa3,0x09, +0x4c,0x85,0xba,0xc5,0x77,0x58,0xa6,0xbe,0x53,0x4e,0x44,0xab, +0xe2,0x6a,0x26,0x5c,0x55,0xc4,0x72,0x38,0xa6,0xee,0x10,0x7e, +0x41,0xf1,0x0b,0xa0,0x8f,0xc9,0x4b,0x09,0x13,0x7d,0x82,0x16, +0xef,0x00,0x3f,0x53,0xd7,0x10,0x71,0x37,0x43,0xe7,0x4c,0xec, +0x87,0xc9,0xdc,0x69,0x3a,0x83,0x7c,0x48,0x53,0x17,0x3c,0xd5, +0xef,0x45,0xdb,0xdf,0x5f,0x4c,0x6e,0x0a,0xe3,0xa1,0xae,0xb6, +0x95,0x65,0xa2,0x1b,0xae,0xef,0xc5,0x78,0x23,0xaa,0x70,0x6b, +0xdc,0x5f,0x5d,0xa5,0xa2,0x70,0x7a,0xc0,0x0e,0x15,0xfa,0xbf, +0xf1,0x87,0xcf,0x75,0xff,0xe0,0x96,0x3f,0x7d,0xe1,0x6d,0xce, +0x1d,0x27,0xb1,0xa3,0x49,0xc7,0x33,0x6d,0xbb,0x7d,0x66,0x99, +0x3d,0xc7,0x0e,0x00,0x27,0x50,0x5c,0xd3,0xb9,0x39,0x82,0xc9, +0x41,0x9b,0x10,0x5e,0x94,0x17,0xfd,0x69,0xe0,0xfe,0x86,0x76, +0xb6,0x7d,0x5b,0xac,0xa2,0xaf,0x7e,0x97,0x7d,0x0f,0x93,0xb4, +0x93,0x0c,0xe6,0x72,0xfb,0xdb,0x2c,0x3c,0xc6,0xb2,0x64,0xe5, +0x8e,0xcf,0x93,0x76,0xac,0xda,0x6d,0xa5,0x8d,0x87,0xe8,0x73, +0xb9,0x1e,0x7a,0xb0,0x37,0x7d,0xdf,0xe6,0xf8,0xcd,0x71,0x9b, +0x17,0x8b,0x9d,0x8d,0x2d,0x7b,0xcf,0x9b,0x1c,0xb8,0xa7,0xbe, +0x52,0xa5,0x17,0x57,0x97,0xb1,0x00,0x58,0xa6,0x6a,0x4b,0xda, +0x2b,0x72,0x6d,0x68,0x62,0xa0,0xb6,0x6c,0xa7,0xc9,0xa3,0x40, +0x64,0xd2,0x2e,0x2f,0xac,0xe2,0x46,0x39,0x4c,0xfd,0x51,0x0b, +0x3f,0x2f,0xc3,0x7f,0xd0,0x96,0x67,0xca,0x1b,0x70,0x92,0xb6, +0x79,0x5d,0x30,0x58,0xe8,0x46,0x05,0x7f,0xca,0x91,0x3f,0x29, +0xda,0x30,0x88,0x56,0xf7,0x08,0x1b,0x2d,0xb4,0xf7,0x30,0x41, +0x2f,0x74,0x1d,0x3c,0xba,0xc4,0xee,0x01,0x1b,0xb7,0x13,0x3a, +0x8b,0xbf,0xc2,0x44,0x55,0x6c,0xc9,0x3c,0xc5,0xa0,0xb3,0x7a, +0xbe,0x58,0x19,0x20,0x9a,0x2c,0x36,0x87,0xcc,0x9f,0x37,0x85, +0x57,0x6e,0xc4,0xf2,0xcf,0x65,0x1f,0x98,0xb7,0x37,0x84,0xce, +0x36,0x82,0xda,0x50,0x4b,0x9d,0xaa,0x78,0x0e,0xdf,0x7b,0xfc, +0xd8,0xc9,0x3d,0xbf,0xbb,0xed,0x41,0xf7,0x61,0xea,0xc8,0xcf, +0x86,0x4f,0x41,0xf7,0x01,0x42,0x71,0x20,0xe5,0xd5,0x1c,0xd9, +0x02,0xb1,0x9b,0x6e,0x4d,0xfb,0x9a,0x6e,0x4d,0xfb,0x93,0x32, +0xb4,0xf5,0xa2,0x2f,0xe5,0xe4,0x52,0xce,0xef,0x6a,0x88,0x68, +0x35,0x34,0x5f,0x3b,0xee,0x2d,0xfb,0x98,0x21,0x4d,0x7c,0x8e, +0x1e,0x77,0x72,0x5c,0xd2,0x12,0xd1,0x14,0xca,0x59,0xd2,0xcf, +0x40,0xfd,0x5f,0x22,0x93,0xc2,0xe3,0x22,0x62,0xac,0xe1,0xd1, +0xb4,0xb1,0xe7,0xcb,0xe4,0x03,0xc7,0x6d,0x7b,0x7a,0xce,0x32, +0xb7,0x1f,0xdc,0x1f,0x6a,0xb5,0x71,0x4d,0xff,0xf4,0xd6,0xe9, +0xcc,0xc3,0x07,0x8e,0x59,0x27,0x4b,0x7b,0x5e,0x55,0x21,0xb4, +0x9f,0xeb,0x77,0xd5,0x11,0xda,0x31,0xf9,0xda,0x1a,0x6f,0xd9, +0x8a,0xd0,0x26,0x6a,0x26,0x14,0x34,0x45,0xbd,0x29,0x5a,0x7c, +0xc9,0xc4,0x57,0x30,0x47,0xee,0x40,0x91,0x9f,0xcb,0x44,0x21, +0x44,0xf2,0x5a,0xe7,0x49,0x9d,0xe6,0x3e,0x17,0x73,0x0c,0x75, +0x0a,0xd3,0xd5,0x69,0x00,0x8a,0x58,0x34,0x69,0xd3,0x5c,0x76, +0x52,0x8e,0x25,0x2d,0x28,0xd5,0xa6,0x69,0x4d,0xd0,0x8f,0x45, +0x2d,0x08,0x47,0x7d,0x2b,0x7f,0x93,0xa1,0x16,0xed,0x47,0x2d, +0xda,0x6f,0x68,0xd1,0x5c,0xa6,0x6d,0x87,0xe3,0xef,0xb4,0xe8, +0x90,0x78,0x16,0x40,0xc7,0x22,0xe9,0x5a,0x34,0x9e,0xb6,0x36, +0x95,0x69,0x91,0x3b,0xdb,0xa3,0xfc,0x8c,0xda,0x78,0x81,0xb4, +0xf1,0x38,0xd3,0x66,0xff,0xa5,0x45,0x9c,0x45,0x30,0x6d,0x03, +0x3c,0xe5,0xae,0xb7,0x4b,0xd5,0xe8,0x40,0x49,0x6d,0x52,0xa3, +0x85,0x86,0x1a,0x2d,0x6e,0x02,0x0b,0x91,0x01,0xf7,0x96,0x6c, +0x79,0xe2,0xf1,0xb1,0x79,0x39,0x27,0x4f,0xed,0x3d,0x65,0xa5, +0x40,0x25,0x3e,0x16,0x7d,0x70,0x57,0xcb,0xd9,0x53,0x26,0x1d, +0xc7,0x29,0x39,0x8e,0x34,0xeb,0xf9,0x0d,0x43,0xb3,0x48,0x61, +0xbe,0x45,0xad,0xf2,0x67,0xf4,0xf2,0x28,0xd6,0xe9,0x2f,0xb5, +0x9a,0xd9,0x04,0xa6,0x21,0x4a,0xc7,0xb1,0x2c,0xe6,0x1f,0x15, +0x2b,0xce,0x50,0xac,0xc0,0x7f,0xa3,0x58,0xb4,0x2a,0x8f,0x5a, +0xfc,0x37,0x6a,0xf1,0x61,0xf9,0x5a,0xb2,0xb7,0x6c,0x49,0x2d, +0x9e,0x40,0x2d,0x0e,0x1a,0xb6,0x78,0x2d,0x6c,0xf1,0xe7,0x68, +0x93,0xc5,0xa8,0x0c,0xf4,0xdd,0xff,0xb5,0xea,0xf1,0x9a,0x31, +0x4c,0xfb,0x9d,0xf4,0x6e,0x05,0xf5,0xe1,0xb9,0x77,0xa2,0xf1, +0x69,0xbe,0xb6,0xcf,0x5b,0xf6,0x24,0x8c,0x5b,0xb9,0xcd,0x05, +0x3b,0xb1,0x3c,0x1c,0x64,0xe2,0x53,0xd8,0xa7,0x42,0xbf,0x37, +0x7e,0x7f,0xaf,0x8e,0x6a,0x74,0x4a,0xc4,0x8a,0x48,0xee,0x60, +0xc7,0xd2,0xde,0xe9,0x60,0x3f,0xd4,0xc1,0x7e,0xa4,0x00,0x3d, +0x98,0x56,0x5e,0xb4,0x61,0xdc,0x3c,0x9e,0x89,0x56,0x23,0xf2, +0xb5,0xa4,0xf7,0x45,0x03,0x04,0xed,0xb2,0x43,0x46,0xdb,0x09, +0xf4,0xd4,0xc2,0xd0,0xe3,0xe5,0xd5,0x2a,0xb3,0x44,0xda,0x9a, +0xb2,0x1a,0x55,0x6d,0x3d,0xa9,0xda,0xda,0x52,0x55,0xc3,0x71, +0x7a,0x19,0xd3,0xab,0xcb,0x2b,0x3f,0x65,0xa5,0x18,0x8e,0x82, +0xf6,0xb6,0x01,0x7b,0x08,0x77,0xd5,0x9f,0xb4,0x85,0x67,0xe5, +0xc2,0x1f,0xb5,0x35,0x99,0xe8,0xbb,0x93,0xfe,0x9d,0xba,0x60, +0x90,0x5f,0x4e,0xd8,0x7e,0xc9,0x91,0xbf,0x28,0xda,0x28,0xd4, +0xbf,0xbd,0xa4,0x7f,0xb3,0x48,0xff,0x02,0x94,0xd9,0xc2,0xa3, +0x73,0xec,0x5e,0xd2,0x3f,0x14,0x4b,0xb3,0x37,0x83,0x4c,0x91, +0xa8,0xd2,0x36,0xda,0xa4,0xa5,0xa2,0x79,0x2d,0x4b,0xfa,0x69, +0x68,0xf0,0x73,0x64,0xa2,0xae,0x07,0x11,0xb4,0x45,0x69,0xdb, +0xde,0xe4,0xfd,0x47,0x6d,0xbb,0x7c,0xe6,0x9a,0x3b,0x0d,0x19, +0x08,0x9e,0x1d,0x5d,0xd3,0x86,0x15,0x9e,0xc8,0x48,0x3d,0x70, +0xc4,0x3a,0xed,0x5d,0x4d,0x3a,0xe9,0xdb,0x64,0xde,0xd3,0xe1, +0xc6,0xb1,0xe6,0x01,0xa1,0x86,0x0e,0xdf,0xd0,0x75,0x78,0xc0, +0x16,0xd7,0x04,0x43,0x87,0xa7,0x28,0x35,0x0d,0x1d,0x7e,0xe3, +0xb6,0xf7,0x3d,0x1d,0xae,0xc3,0xe4,0xd5,0x3b,0xda,0x55,0xb3, +0x1c,0x07,0x83,0x79,0xf9,0xd5,0x0c,0xaa,0x14,0xf7,0x60,0xc2, +0x2e,0x3c,0x39,0x7c,0x79,0x44,0xb4,0x35,0x34,0x92,0x3e,0xcf, +0xa4,0x26,0x1f,0x3e,0x65,0x3b,0xdc,0x75,0x92,0xb9,0x79,0x48, +0x6f,0x68,0xdf,0xd0,0x35,0x73,0xf0,0xa3,0xcc,0x9c,0xe3,0x87, +0x4f,0x5b,0x27,0x49,0xf6,0xb6,0x25,0xab,0x85,0xa3,0xef,0x44, +0x56,0x80,0xe6,0xef,0x00,0xb6,0x82,0xdd,0x03,0x26,0xc7,0x69, +0xca,0xff,0x0b,0x2e,0x6e,0x8a,0x46,0x8b,0x7c,0x9f,0xc9,0xb1, +0xe2,0x4f,0xbd,0xbc,0x23,0xc5,0x1a,0xdd,0x85,0x69,0x41,0x32, +0xaf,0xf5,0x90,0x1d,0x3a,0x6d,0x4b,0xed,0x3a,0xd9,0xdc,0x32, +0xa4,0x0f,0xb4,0x6f,0x8c,0x83,0xee,0xe3,0xf3,0x58,0xf0,0x14, +0x16,0x2c,0x8f,0xc3,0x68,0x85,0x74,0xa6,0x35,0x85,0x2b,0x70, +0x85,0xae,0xee,0x42,0x04,0x97,0x79,0xc5,0x4f,0x99,0x34,0xe3, +0x9b,0x2a,0xe9,0x74,0xaa,0x6b,0xfb,0xe2,0x02,0x06,0x47,0xd4, +0x08,0x91,0xe4,0x0d,0x3b,0xb8,0xd2,0x9e,0x95,0x60,0xa4,0x33, +0x01,0x91,0xd3,0x3d,0x8a,0x3d,0xd4,0x79,0xaf,0xc5,0x6c,0x23, +0xe6,0x9e,0xa7,0xc7,0xdc,0x81,0xa5,0x31,0xb7,0x87,0x8b,0x58, +0x87,0x31,0xb7,0xd3,0x67,0xef,0xc1,0x8f,0x90,0x3d,0x28,0xc6, +0x2e,0xcb,0x90,0x0c,0x1e,0xab,0xb7,0x5e,0x86,0xd0,0xf7,0xea, +0xd5,0x14,0x5a,0x63,0xd0,0x31,0x41,0x7c,0x87,0x80,0xda,0x40, +0xb8,0x44,0xb1,0xf5,0x22,0xcb,0xd2,0x55,0xff,0x1c,0x5b,0x2f, +0xac,0x0b,0x51,0x46,0x6c,0xfd,0xea,0x8e,0x1e,0x5b,0x73,0x8c, +0xad,0xcf,0x63,0x6c,0xfd,0xae,0xfc,0x67,0x48,0x08,0xc3,0x65, +0x0a,0x66,0x30,0x8a,0x7e,0x97,0x3d,0xa2,0x34,0x7b,0xa5,0x88, +0x47,0x05,0xbe,0x68,0x8c,0x8c,0x39,0x14,0x46,0x37,0x61,0x72, +0xe9,0x1d,0x05,0xc1,0xee,0x20,0x98,0xf8,0x02,0xba,0xa8,0x62, +0x64,0xe6,0x77,0x14,0x4c,0x47,0xbc,0x0b,0xa6,0x27,0xd4,0x81, +0xb1,0xd0,0x92,0x3b,0x36,0x63,0x97,0x78,0x65,0x37,0x46,0x41, +0xf4,0x32,0x56,0xfc,0x15,0xb5,0xd9,0x4b,0x6a,0x33,0xf8,0xb3, +0xf4,0x86,0x47,0x0e,0x2b,0x49,0xb5,0x30,0x5e,0x4e,0xd5,0x15, +0xf0,0xb1,0xae,0x80,0x6d,0xb9,0xdd,0x40,0x76,0xb1,0x6c,0xe3, +0x65,0x3f,0xa8,0x0c,0xcc,0xf5,0xec,0xf0,0x9c,0xac,0xe3,0xa7, +0xf6,0x9c,0xb4,0xc6,0x1b,0x57,0xde,0x5a,0xa1,0x86,0xe5,0xdc, +0x29,0x53,0xa9,0x6e,0xda,0x93,0x6e,0xd6,0x66,0x32,0x07,0x39, +0x1b,0xab,0x95,0xe7,0x15,0x27,0xa2,0xeb,0xa2,0x14,0x3d,0x45, +0x13,0x75,0x96,0x89,0x83,0x70,0x09,0x0e,0xb3,0xe2,0x51,0x58, +0x39,0xcd,0x44,0x6d,0xa9,0x15,0xcd,0xd3,0xdf,0x78,0x43,0x23, +0x35,0x50,0x8b,0xfd,0x18,0xe3,0xac,0xf9,0xa5,0x71,0x96,0x52, +0x28,0x70,0x0c,0x2c,0x6d,0x07,0x04,0x7d,0xf2,0x29,0x8b,0x97, +0xdd,0x31,0x92,0x0e,0xcb,0x94,0x61,0xcf,0xb5,0xa5,0x59,0xbc, +0x72,0x65,0x86,0x51,0xf4,0xfb,0xd8,0xb0,0x32,0xe6,0x10,0x8c, +0x65,0xdb,0x53,0x2c,0x9c,0x4f,0xb1,0xf0,0xd4,0xbf,0x62,0xe1, +0x3d,0xca,0x6b,0x23,0x16,0xae,0x45,0x67,0x6b,0xa0,0x83,0x7d, +0x8c,0xb6,0xbf,0xd8,0x02,0xb8,0xd3,0x7c,0xd6,0xfc,0x17,0x31, +0xbb,0x5e,0x93,0x00,0xdd,0xc1,0x76,0xfa,0x45,0x77,0xb0,0xc9, +0xb5,0x2c,0x69,0xc2,0xea,0x83,0x45,0xf7,0xaf,0x6f,0x88,0xc2, +0xc6,0x2f,0xc5,0x5c,0x30,0x73,0x6b,0x16,0x7b,0x6a,0x76,0x30, +0xbc,0xeb,0x1d,0xc5,0x18,0xff,0x3b,0x16,0x08,0x47,0x31,0xbb, +0x19,0x58,0x7b,0x8b,0x26,0x66,0xae,0xa4,0xb3,0x1f,0x69,0xbb, +0x0a,0x76,0xb3,0x87,0xe1,0x70,0x8f,0x54,0xfd,0xc5,0x74,0x0a, +0x09,0x2a,0x88,0xf0,0x76,0x81,0xfd,0xc4,0xe4,0x0b,0x6d,0xef, +0x8b,0xe9,0x97,0x69,0xf3,0x49,0x6f,0x5e,0xc1,0x09,0x35,0x88, +0x69,0x01,0xb0,0xa1,0x1d,0x13,0x33,0x5b,0x81,0x53,0x90,0x98, +0x5e,0x0f,0x75,0xac,0x7d,0xf1,0x5e,0xf6,0xab,0x98,0x2c,0x26, +0x35,0x7d,0x2c,0xe6,0xb7,0x6a,0xed,0xc7,0x4d,0x8e,0x0c,0x2a, +0x3d,0x56,0x1c,0xfe,0x11,0xfa,0xef,0x3c,0xf6,0x89,0x6d,0x08, +0x5a,0xdf,0x88,0x52,0xf9,0xb1,0x92,0x25,0x6b,0x1b,0x1b,0x51, +0x1c,0x75,0x60,0xba,0xf0,0xb2,0x9e,0xbe,0x11,0x65,0x52,0x87, +0xc7,0x62,0x36,0xb7,0xaf,0x8d,0x2e,0xbf,0xbe,0x07,0xa5,0x82, +0x38,0xa2,0x55,0xf0,0x51,0xe0,0x26,0xed,0x41,0xe1,0xb4,0x07, +0xe5,0x2f,0x2a,0x73,0x5a,0xea,0x3b,0x51,0xea,0xd3,0x4e,0x94, +0x89,0xf5,0xbe,0x17,0x33,0x81,0x65,0xc6,0xd1,0x56,0x94,0xac, +0xab,0xc7,0xd2,0xbf,0x38,0x63,0xa5,0x85,0x68,0x6b,0x69,0x2b, +0x4a,0x83,0xd2,0xad,0x28,0xd1,0xeb,0x23,0x57,0x46,0x44,0x95, +0x78,0xb0,0x6d,0xa7,0x13,0xcf,0x5c,0xb6,0xa5,0x0e,0x7e,0x64, +0x7e,0x1f,0x5d,0x2b,0xb0,0xe8,0xd1,0xc1,0x44,0xe4,0x61,0x66, +0xab,0x8e,0xb2,0xa2,0x1e,0x22,0xd4,0x78,0x4c,0xa1,0x83,0xa3, +0xfe,0xde,0xaa,0x07,0x09,0x13,0xdb,0xd3,0x7b,0xee,0x34,0x87, +0x3d,0xa6,0x3b,0x32,0xb7,0x50,0xa8,0xa0,0x43,0x84,0xb6,0x82, +0xda,0x74,0x90,0x0a,0xdd,0x8e,0x49,0x9b,0x4c,0x26,0xf9,0x3f, +0x16,0x93,0xdb,0xcb,0x0c,0xf6,0x2d,0xdd,0x8e,0x79,0x07,0xd2, +0x28,0xd0,0x2e,0x54,0xb7,0xa6,0x6c,0x89,0xdb,0xba,0x50,0x9c, +0xc2,0xf1,0xf3,0xf8,0x25,0xd8,0x8f,0x01,0x6e,0x62,0xd8,0xf2, +0xb0,0x28,0xeb,0x4c,0x0a,0xb4,0x0f,0x1e,0xd9,0x48,0xa1,0x6e, +0xe7,0x39,0xe6,0x86,0xbe,0xbd,0x61,0x7d,0x13,0xd7,0x63,0x7d, +0x05,0xcf,0xf8,0xf1,0x18,0x86,0xba,0xc8,0xe7,0x16,0x5e,0xf5, +0x75,0x69,0x58,0x32,0x1a,0xfb,0x6e,0x1a,0x98,0x0b,0x84,0x59, +0x44,0xd3,0xb4,0x8e,0x59,0x4c,0xbe,0x4c,0x01,0xc8,0xaf,0xbc, +0xda,0x67,0x8c,0x3b,0x4f,0x41,0xf9,0xb0,0xe7,0x4a,0x3b,0x06, +0xf6,0x2f,0x95,0x6e,0xf5,0x55,0x98,0xf9,0x92,0xb6,0x30,0x60, +0x75,0x65,0x05,0x18,0xfa,0xf6,0x37,0x06,0x3f,0x5d,0xd0,0xc1, +0x1a,0x78,0x50,0x84,0xe2,0xf1,0xc2,0xdc,0xad,0x01,0x02,0xbd, +0x28,0x05,0x2a,0x6d,0x93,0x59,0x4d,0x1b,0x73,0xe5,0x2e,0x03, +0xe5,0x27,0xa5,0x1b,0xb7,0xfb,0x82,0x02,0x1b,0xfd,0x60,0x79, +0x3f,0x31,0xa7,0x01,0x38,0x05,0x68,0x90,0x07,0x95,0x5f,0x88, +0x39,0x18,0xf9,0x9c,0x85,0xd6,0xa5,0xc5,0xbf,0x83,0xd1,0x6f, +0xa7,0x18,0x0d,0x32,0x1a,0x4c,0xa5,0x1b,0x1f,0x4c,0xb4,0xf1, +0xc1,0x4d,0x85,0x94,0xaf,0x69,0xe3,0xc3,0xba,0xa2,0x05,0x4c, +0x6b,0xa1,0x65,0xa8,0x9b,0xf5,0x39,0x07,0x5e,0xb3,0x1d,0x8b, +0xa4,0xea,0xaf,0xa6,0x79,0x86,0x33,0xd9,0xb6,0xdd,0x9d,0x66, +0x9a,0x6b,0xfa,0xfa,0xc1,0xfa,0x9a,0x54,0xfd,0x1a,0x59,0x3f, +0x9c,0xba,0x94,0x6e,0x45,0xc2,0xf3,0x4a,0x24,0x2b,0x9e,0x08, +0x53,0x54,0x0c,0x3c,0x57,0x15,0x88,0x2b,0xdc,0xbe,0x23,0x83, +0x55,0x85,0xe2,0x8a,0x3e,0xc3,0x60,0xfa,0x99,0xa6,0x14,0xb2, +0xb9,0x73,0x30,0xe3,0x95,0xaa,0xd3,0x9c,0xc2,0x6d,0x9a,0x53, +0x68,0xa1,0xdd,0x54,0xb7,0x24,0x6f,0x59,0xb1,0x35,0x86,0x7b, +0x06,0xb1,0x59,0x61,0x8b,0x56,0x99,0x52,0x8f,0x6c,0x38,0x71, +0xb1,0xb4,0x91,0x03,0x61,0x7d,0x63,0x7d,0x36,0x23,0xe3,0x47, +0x9a,0x4f,0x40,0x2a,0x13,0x8c,0xcd,0x07,0x2e,0xf4,0x1d,0xc6, +0xc6,0x60,0x84,0x71,0xff,0xe6,0x50,0x39,0xde,0x40,0x1b,0x0c, +0x39,0x34,0x1d,0x40,0xd4,0xa6,0xd0,0x26,0xc4,0x8e,0x98,0x8d, +0xee,0xb6,0xfd,0x33,0xd6,0x84,0xd7,0xfc,0x8c,0x81,0x43,0x81, +0x78,0x44,0x23,0x77,0x59,0x59,0x8c,0xab,0x25,0xa4,0xbe,0x43, +0x85,0x81,0xb4,0x33,0x06,0xd2,0x38,0xe0,0x1d,0xbc,0xa3,0x1d, +0x34,0xcb,0x30,0x98,0x01,0xf6,0xb4,0x0e,0xc8,0xc5,0x72,0xe1, +0x3c,0x78,0x0b,0x27,0xfa,0x66,0x72,0x84,0xdb,0xf5,0x67,0x35, +0x5d,0x2f,0x0c,0x7e,0x98,0x95,0x73,0x8a,0x26,0xb1,0xbe,0x87, +0x81,0x32,0x88,0x66,0xc7,0x7a,0xf2,0x4a,0x77,0x18,0x2f,0x3f, +0x8b,0xc9,0x30,0x91,0xff,0xdf,0x15,0xe4,0xa6,0x44,0x2c,0x31, +0x93,0xc9,0x05,0x22,0x4b,0x4d,0x4a,0x4c,0x89,0x4b,0x8e,0x15, +0xbe,0x60,0xa5,0x41,0xb1,0x32,0x77,0x1a,0x46,0x1f,0x68,0xd2, +0x6c,0x47,0xbb,0x8c,0x37,0x37,0x1a,0xe0,0x0f,0xed,0x6b,0xd3, +0x58,0x78,0x29,0xfb,0xe4,0xe1,0x34,0xab,0x78,0x02,0x7d,0x64, +0x21,0xbb,0x00,0x87,0x8a,0x7f,0x45,0x0c,0x33,0x08,0xc3,0x7e, +0x6e,0x9d,0xc1,0xa0,0x2f,0x67,0x28,0x64,0x95,0x8f,0x23,0x17, +0xbc,0x3a,0x56,0xec,0x27,0x69,0x52,0x45,0x88,0xb6,0x20,0x57, +0x66,0xc3,0x56,0x74,0x44,0xb6,0xe4,0x29,0x0e,0x9d,0xf0,0x25, +0x0c,0x84,0x43,0x34,0x87,0xd6,0xa9,0x74,0x0e,0xad,0x34,0xc3, +0x13,0x33,0x8c,0x39,0x34,0x23,0xe3,0x1e,0x44,0xd0,0x1c,0x5a, +0x7f,0xaa,0xd4,0x29,0x7c,0x7e,0x0e,0x27,0x69,0x26,0xed,0xdd, +0xb3,0xf4,0xc0,0x02,0x7f,0xcd,0xa7,0xfd,0x95,0x4f,0x88,0xaa, +0x33,0xe4,0x6d,0x3a,0x93,0xa1,0xe2,0x38,0x66,0xb5,0x83,0x26, +0xfa,0xec,0x9a,0x5a,0x99,0x26,0xd2,0xa6,0xd1,0x44,0x9a,0xfc, +0x86,0x5e,0xea,0x8d,0xe5,0x8b,0xbd,0x8a,0xd5,0xae,0x82,0x23, +0x79,0xe5,0x60,0x76,0x98,0x1a,0xab,0x16,0xd5,0x37,0x2b,0xfb, +0xd4,0x11,0xbd,0xb1,0x42,0xb8,0x69,0x34,0xe3,0x15,0x3e,0x62, +0x5d,0x69,0x2e,0xa1,0x32,0x4d,0xbd,0x85,0x89,0x27,0x7a,0xab, +0xa5,0x2c,0xc6,0xb6,0xd6,0x5d,0x09,0x33,0xb5,0xda,0x41,0x3a, +0x37,0xe4,0x90,0xd7,0x24,0x73,0x0b,0xf2,0x20,0x1a,0xa1,0x23, +0xf0,0x28,0x43,0xf7,0x20,0x10,0x4b,0x57,0xae,0xd4,0xd0,0xb1, +0xd0,0xbd,0x98,0x34,0x4d,0xd7,0xb4,0x6c,0x9a,0x8e,0xb6,0x15, +0x15,0x8a,0x87,0x66,0x07,0xa3,0x0e,0xbc,0x62,0x63,0xa6,0x5f, +0xdf,0xf9,0x8a,0xce,0x8d,0xbc,0x6c,0x94,0xe9,0x05,0x5e,0xfa, +0x8c,0xdd,0x36,0x74,0xdc,0x9a,0x77,0xa1,0x33,0x84,0x4c,0xd0, +0x53,0x99,0x29,0xda,0x76,0x31,0x4e,0x11,0xaa,0xdb,0x5b,0x2b, +0xca,0xd6,0x67,0xf1,0x90,0xb5,0x77,0x18,0x36,0x40,0x23,0x9a, +0xca,0x6b,0xc4,0xe4,0xda,0xaf,0x15,0x19,0x2d,0xc6,0xd3,0x77, +0x6f,0xfa,0x38,0x1e,0x02,0x81,0xb4,0xd8,0xa5,0xbf,0xb1,0x7a, +0x84,0x3b,0x7d,0xcb,0x76,0x9c,0x4b,0xc9,0xb8,0x62,0xcb,0xe9, +0x14,0x4c,0x2b,0x47,0x3a,0x42,0x5b,0xa8,0xe9,0x7a,0x69,0xd0, +0xa3,0xbb,0xb9,0xf4,0xad,0x1d,0xa3,0x80,0x1b,0x07,0x09,0x4b, +0x84,0x8e,0x65,0x60,0xd9,0xd7,0xf3,0x10,0x08,0xa0,0x35,0x28, +0xfd,0xff,0x7e,0xc9,0xcc,0x8e,0xb3,0x29,0x19,0x97,0x0d,0x4c, +0x56,0x1d,0x93,0x27,0x62,0x7a,0x6c,0xac,0xaa,0xd3,0xea,0xc9, +0xbe,0x25,0x2f,0xb0,0x4a,0x87,0x98,0xd6,0x41,0xa2,0x7a,0x70, +0xd3,0x4b,0x36,0x48,0xde,0xa1,0x05,0x02,0x98,0x1a,0x88,0xa9, +0x2b,0x44,0x68,0xae,0x4e,0x68,0x30,0x12,0xe2,0x8e,0xe8,0x6f, +0xff,0xb5,0xda,0x6d,0x47,0x7a,0xca,0xf9,0xab,0xb6,0xec,0x4e, +0xa5,0xab,0xdd,0xda,0x11,0x9b,0x83,0x11,0x79,0x36,0x2d,0x09, +0xa8,0x4c,0x0b,0x5c,0x4a,0x3a,0x32,0x2c,0x3a,0xf2,0xbd,0xa2, +0xbc,0x66,0x2d,0xa6,0xb3,0x63,0x23,0x76,0x78,0xe5,0x5d,0x0c, +0x61,0x77,0x4b,0x9f,0x9f,0x59,0x16,0x93,0x63,0x44,0x80,0x8a, +0xe1,0x40,0x77,0xee,0x32,0x9e,0x19,0x6b,0x1d,0xec,0xe6,0xc9, +0x9b,0x25,0x76,0x68,0x07,0xe7,0xb1,0xfb,0xfa,0xe2,0x16,0xf4, +0xa1,0x55,0x50,0xc5,0x8c,0xae,0x72,0xed,0x2d,0x31,0x4b,0xa8, +0x0a,0xa4,0x80,0x1b,0x57,0x3e,0x60,0xb2,0x1d,0x34,0x7e,0xbb, +0x9f,0x15,0x2d,0xd7,0x6f,0xca,0xec,0x2a,0x23,0x6e,0x89,0xb1, +0x25,0x0f,0x59,0x6b,0x5e,0xc5,0x8d,0x32,0xe9,0xa2,0xcc,0xae, +0x72,0xe0,0x2d,0x11,0x8c,0x99,0xcd,0x78,0x15,0x17,0xc6,0x1d, +0x1c,0x18,0x16,0xae,0x26,0xe7,0x31,0x51,0x1e,0x35,0x1f,0x6a, +0x8b,0x1a,0x3d,0x69,0x69,0x60,0x6d,0x51,0x8f,0xee,0x75,0x79, +0x9b,0xc9,0x8a,0xbd,0x3a,0x96,0x0c,0x66,0xda,0x54,0xd9,0x59, +0x5d,0xb8,0x68,0xd9,0x2a,0x5e,0xf1,0x6b,0xa6,0xef,0xc4,0x6a, +0x16,0xbd,0x4e,0xdf,0x16,0x44,0x30,0x88,0xa2,0x1f,0xa2,0x80, +0xb7,0xb2,0xc9,0xdb,0x4d,0x0c,0xc6,0x41,0x0f,0x77,0xba,0x2a, +0x00,0xda,0x33,0xf1,0x58,0x94,0x57,0xb9,0xdd,0x20,0x06,0x0b, +0x94,0xf7,0x20,0xdd,0x41,0x2d,0x42,0xca,0x6b,0xe1,0xe9,0x3f, +0xc0,0x6b,0x5b,0xc4,0x34,0xd5,0x37,0x3e,0x94,0x57,0xb6,0xd1, +0xe7,0x42,0x83,0x3e,0xaf,0x62,0x21,0xf6,0xe9,0xba,0xcd,0xae, +0x72,0xee,0x2d,0x31,0x06,0xd9,0xef,0xc0,0xab,0xb8,0xa2,0x03, +0x7c,0x9e,0xc9,0x19,0xb7,0xc4,0x38,0xcc,0xe8,0x82,0x5c,0x0a, +0x37,0xd8,0x5d,0x54,0x9f,0xd6,0xea,0x1d,0x50,0xc3,0xa2,0x96, +0xac,0xdc,0xb5,0x3b,0x79,0xef,0xca,0x54,0xab,0xd8,0xc0,0x2b, +0x87,0x33,0x61,0x3d,0xf1,0xdd,0x81,0xf4,0x83,0x9b,0xe8,0x00, +0x00,0xee,0xf8,0x3d,0xe3,0x9e,0x2d,0x10,0x79,0xac,0x68,0xc7, +0x16,0xc3,0xbd,0xb7,0x93,0x18,0xf7,0x28,0x61,0xdd,0xf1,0x29, +0x0a,0x0a,0xb8,0xfd,0x71,0x1c,0x92,0xd4,0x4e,0x89,0x33,0xc1, +0xdf,0x04,0x5d,0x51,0xac,0xfd,0x3b,0x2f,0xda,0x87,0x7d,0x62, +0x8f,0x8c,0x2c,0x34,0x56,0xcd,0x56,0x12,0xe3,0x7b,0xc8,0xa8, +0x1b,0xe8,0x63,0x54,0x82,0x79,0xf9,0xda,0x7a,0xb3,0xfc,0x08, +0x03,0xdd,0x85,0x29,0x51,0x6b,0x23,0x62,0xa2,0x17,0x59,0x78, +0x95,0x57,0xec,0x15,0x7c,0x6c,0x39,0x9d,0x73,0x20,0xed,0xf3, +0xb3,0xdc,0xae,0x2e,0x33,0xc1,0x63,0x18,0x5c,0x1c,0xc5,0xb8, +0xeb,0x13,0x26,0x02,0x55,0x7c,0x69,0xbc,0xb3,0xd2,0xcb,0xba, +0xa2,0xa6,0x51,0xd4,0x1a,0xbd,0x68,0xf9,0x2a,0xd3,0xd6,0xb3, +0x49,0x19,0xd7,0x6c,0x05,0xde,0xde,0xe6,0x9a,0xa1,0xbd,0xfa, +0xb6,0x73,0x0d,0xe6,0x76,0x95,0xd8,0xd9,0xab,0xb6,0x1b,0xde, +0x3e,0x28,0x35,0x93,0x7c,0x5a,0x62,0x14,0x7c,0x66,0xc8,0xd9, +0xab,0xdc,0xbe,0x37,0xb3,0xd3,0xb2,0x64,0x93,0xa2,0x64,0x56, +0x64,0x4f,0x6b,0x76,0x2b,0xc1,0xa4,0x7c,0x2d,0xd6,0x1b,0xc3, +0xd7,0x4a,0xe2,0xb3,0x1e,0x72,0xf2,0x0d,0x05,0x16,0x89,0x2e, +0xdc,0xbd,0x15,0x13,0x1e,0x48,0x21,0x3e,0x32,0x1a,0x29,0xd0, +0xea,0x82,0x74,0xee,0x78,0x99,0xf9,0x05,0xb7,0x73,0xed,0xfb, +0x60,0xd1,0xba,0x28,0xee,0x98,0xc7,0xce,0x70,0xcf,0x70,0xe6, +0xab,0xa3,0x1e,0x7a,0xf6,0xca,0x7e,0x5e,0xe9,0x67,0x76,0xd6, +0x0e,0x87,0x89,0x8e,0xc5,0xab,0x08,0xf9,0x5a,0x42,0x3e,0x28, +0x5f,0x1b,0xe6,0x0d,0x83,0x11,0xb9,0x7f,0x0f,0xd9,0x43,0x47, +0xee,0xc9,0x4d,0xcb,0x99,0xc6,0xd0,0x84,0xb3,0x1b,0x46,0xeb, +0x70,0xfb,0xb1,0x4c,0xf4,0x35,0xa0,0x3f,0x33,0x4b,0x2f,0x38, +0x51,0xec,0xc4,0x1a,0xc9,0x8b,0x99,0xff,0xf2,0xf5,0x47,0xb0, +0x5e,0xc6,0x33,0xd8,0x25,0x87,0x14,0x9f,0xfa,0x0f,0x00,0x62, +0x28,0xac,0x2a,0x7e,0xc5,0x78,0x95,0x6f,0x98,0x96,0x23,0xdb, +0x16,0x27,0xb2,0xb7,0x18,0xcb,0x75,0x17,0x21,0x54,0xf8,0x0b, +0x39,0x24,0xe3,0xfd,0x67,0x44,0x56,0xb2,0xdd,0x80,0xf5,0x80, +0xfd,0xc5,0x40,0xfc,0x47,0x11,0xff,0xa3,0xf3,0xb5,0x30,0x6f, +0x98,0x8c,0xfc,0x0f,0xeb,0x21,0x47,0xdf,0x50,0x64,0x6f,0xd1, +0x1d,0xbb,0xa2,0xe5,0xe9,0x2c,0xec,0x8a,0x74,0xeb,0xaa,0x35, +0x6b,0x57,0xac,0x5e,0xfa,0x3b,0x34,0xb3,0xa4,0x9d,0xa9,0x2b, +0xdc,0xb9,0xdd,0x1d,0x46,0x0b,0x31,0x92,0xce,0x5f,0xb1,0x7d, +0xe5,0xed,0x6b,0xae,0x15,0xea,0xd7,0xb7,0xbd,0x6b,0xf0,0x03, +0xee,0xb8,0x9b,0x9d,0x49,0x4c,0xcf,0xb3,0x5d,0xf7,0xf6,0x33, +0x83,0xf3,0xe4,0x5e,0x2d,0xc0,0xc4,0x2b,0x7b,0xb3,0xd5,0x6b, +0xb0,0xb4,0x9d,0x58,0x06,0xa2,0xf8,0x0f,0x22,0xb9,0x80,0x48, +0x4e,0xcf,0xd7,0xe2,0xbc,0xd1,0xcc,0x57,0x12,0x23,0x7b,0xc8, +0x59,0x7a,0x93,0xf9,0x89,0x6e,0x4c,0x8c,0x97,0x1f,0x8b,0xae, +0xc8,0xe3,0xd7,0x6c,0x35,0x6c,0xf1,0x2e,0x95,0xab,0x77,0x60, +0x62,0x5c,0x69,0x51,0x6a,0xbf,0xcb,0x08,0x0f,0xf5,0xe1,0x9a, +0xd6,0x4c,0xaf,0xe4,0x22,0xd1,0x16,0x1b,0xd4,0x5b,0x9e,0x2b, +0xfe,0xf1,0x7f,0xa3,0x02,0x1f,0x43,0x96,0x98,0xc2,0x8a,0x71, +0x58,0x5c,0x5b,0x48,0xb7,0x82,0x86,0x32,0x08,0x7f,0xcf,0x54, +0xd0,0x8b,0x15,0x85,0xc2,0xee,0xbd,0x17,0x6d,0x01,0xeb,0x5d, +0x9d,0x69,0x7f,0x83,0x6e,0xa8,0xf1,0xdc,0xc1,0x9d,0x81,0x87, +0x70,0xd7,0xcf,0x93,0x89,0x42,0x6d,0xb7,0xd3,0xbe,0x51,0x2f, +0x43,0x55,0xe1,0xe4,0x25,0x23,0x0a,0xc5,0x87,0xa2,0x2a,0x3d, +0x54,0x33,0xcb,0x4c,0x6c,0x02,0x34,0x33,0xf8,0xfe,0x99,0x9a, +0x87,0x59,0xe5,0xbc,0xe4,0xc0,0xc2,0x97,0xc6,0xeb,0x8a,0xf4, +0xda,0x9e,0x0c,0x8e,0xf4,0x65,0x32,0xd3,0x1d,0x55,0x75,0xbf, +0xbc,0x91,0x49,0x4f,0xa0,0xc2,0x0c,0x32,0x1d,0xc5,0xb2,0x89, +0xf6,0x13,0x83,0x83,0xe8,0x91,0xf3,0x4a,0xa9,0xef,0xbd,0xf9, +0x97,0x76,0xe9,0x1d,0x9a,0xff,0x60,0x97,0xde,0x43,0xfe,0xbf, +0xd8,0xa5,0xbf,0x20,0xff,0x5b,0xbb,0x64,0xd0,0x27,0xbb,0xc4, +0xdd,0x1e,0x63,0x12,0x14,0x32,0x47,0xd4,0x98,0xcb,0x0b,0x85, +0x02,0x75,0x28,0xab,0x3c,0xaf,0x62,0x63,0xda,0x3a,0xfd,0xa6, +0x02,0x27,0x6d,0x1f,0xdd,0x78,0x84,0xce,0xea,0x79,0xe9,0xaf, +0x86,0xe2,0xa8,0xb4,0xf7,0x50,0xf2,0x51,0x5e,0x69,0x0d,0x93, +0xde,0x68,0xc1,0x0a,0x45,0x35,0x2d,0x9c,0xb9,0xff,0x5f,0x2d, +0x18,0x21,0x47,0x7a,0xce,0x65,0xc8,0x0d,0x3b,0x26,0x03,0x4a, +0xdb,0xa6,0x50,0x8e,0x52,0xb5,0x99,0x97,0xf5,0x45,0x0a,0x57, +0xe4,0x55,0xf8,0xff,0x68,0xfb,0xee,0x80,0x28,0x8f,0xa6,0xf1, +0x14,0xb8,0x83,0xa1,0x83,0x0f,0xde,0xe1,0x7a,0x62,0x57,0xec, +0x05,0xbb,0x51,0x41,0xb1,0x83,0xb1,0x57,0x8c,0xdd,0xd8,0x4b, +0x4c,0xac,0x80,0x8a,0x1a,0xa3,0x68,0x14,0x45,0x63,0xa2,0x89, +0xbd,0x8b,0x5d,0x91,0x6a,0x2c,0xd8,0x15,0x6b,0x62,0x8a,0x9a, +0x66,0x8c,0x1a,0xd3,0xf7,0x81,0xd9,0xe3,0xfd,0xcd,0xec,0x81, +0x9a,0xb7,0xe6,0xfd,0xbe,0xef,0xf7,0x87,0xb2,0xb7,0x3b,0xbb, +0x33,0xdb,0xa6,0x3c,0xbb,0x3b,0xf3,0x53,0x28,0x98,0xbb,0x2f, +0xf0,0x25,0x85,0xbf,0xaf,0xf8,0x1f,0x58,0xde,0xdf,0xd3,0x58, +0x1d,0x77,0x1c,0x04,0x6c,0x8f,0x03,0x0c,0x59,0x6f,0x9e,0xa5, +0xeb,0x94,0x37,0x85,0xe7,0x50,0xb8,0x72,0xe6,0xf2,0xc1,0x37, +0x85,0x6f,0x4f,0xc8,0x9f,0xab,0x03,0x6c,0x62,0x80,0xf4,0x69, +0xab,0xe6,0x5d,0x96,0x3e,0x32,0x00,0x6d,0x57,0x44,0xd0,0x4f, +0x20,0x13,0xe6,0x19,0xb2,0x0c,0xfd,0x2c,0xc3,0xb7,0xae,0xcf, +0x99,0xeb,0xc1,0x9c,0x47,0xb2,0xf1,0xb2,0xf4,0xa6,0xbc,0xe0, +0x2b,0x7f,0x85,0x87,0x5e,0xff,0x95,0xef,0x6d,0x07,0xf0,0xbd, +0xed,0x6d,0xf8,0x31,0x71,0xd3,0x7c,0x0b,0x5f,0xdc,0x0e,0xc0, +0x12,0xa2,0x3c,0xa9,0xfd,0x9d,0xff,0x6f,0x19,0xeb,0x39,0x19, +0xc0,0x57,0xbc,0x03,0xf8,0x8a,0xb7,0xb7,0xda,0xc9,0x4c,0xd6, +0x62,0x0a,0x46,0xe7,0x75,0xc5,0x4c,0x8c,0xc2,0x60,0x2a,0xf2, +0x68,0xab,0xc6,0x5c,0xb6,0x60,0xc2,0xff,0x8a,0xc9,0x3a,0x65, +0xa0,0xa1,0x5b,0x0b,0xb6,0x3e,0x52,0xe9,0xcc,0x6f,0x2d,0x66, +0x5d,0xc2,0x53,0xe1,0x8a,0x19,0x1b,0x85,0x9e,0x18,0xf0,0x4b, +0x5b,0x15,0xa5,0xb1,0x68,0x6e,0x4b,0xf0,0x25,0x0b,0xbf,0xe3, +0x67,0xd1,0x9f,0x31,0xd3,0x15,0x65,0x48,0xb5,0x4a,0x20,0xbd, +0x41,0x2d,0xa6,0xf1,0x0a,0xb7,0xa5,0x9d,0xe6,0xee,0xeb,0x56, +0x55,0x59,0xc0,0x6c,0x67,0x88,0xd9,0x12,0xcc,0x33,0x34,0x3c, +0x97,0x7f,0x94,0x01,0xe5,0xae,0x3c,0x63,0xca,0x32,0x61,0xae, +0x21,0x7d,0xa9,0x3f,0xbe,0x56,0xb2,0x1d,0xd2,0x8f,0xff,0x3d, +0x94,0x8b,0xf5,0x5e,0x7f,0x28,0xdc,0xc8,0xa2,0x1b,0x43,0x94, +0x1d,0xfd,0x77,0x10,0x49,0xf8,0x58,0x73,0xe8,0xf5,0x20,0x7d, +0xd5,0x16,0xe6,0xd0,0xb9,0x80,0xad,0x64,0x2f,0xe6,0xde,0x7d, +0xe5,0x38,0xa2,0x18,0x7f,0x74,0x86,0xe7,0xfc,0x93,0xec,0x27, +0xce,0x70,0xcd,0xaf,0xd7,0xc3,0x40,0x65,0x67,0x76,0x3d,0xd7, +0x75,0xc5,0x3c,0x40,0xbe,0xd4,0x56,0x0d,0xbd,0x2c,0x5f,0x20, +0x12,0x3d,0xae,0xf0,0x15,0xf3,0x08,0xb2,0x9d,0x78,0x04,0x78, +0x29,0x05,0xf3,0xb2,0xb1,0xce,0xc3,0x07,0xf2,0x77,0x1e,0xb0, +0xf2,0x46,0x11,0x54,0xd4,0xb3,0x9a,0x16,0x5a,0x12,0xff,0xe7, +0x0c,0x9e,0xd6,0x85,0x77,0xf1,0x74,0x61,0x1f,0x35,0xde,0xa9, +0xd1,0xfb,0x31,0xfa,0xde,0x57,0xcc,0x2f,0xa3,0x8a,0x17,0x7f, +0x82,0x9e,0xb1,0xb6,0xa2,0xc4,0x78,0x9e,0xb1,0x10,0x03,0xcb, +0x50,0x7e,0x19,0xeb,0x04,0xb5,0x5a,0x8e,0xd7,0x93,0x46,0xc4, +0xbd,0x4a,0xc4,0x85,0xbb,0x26,0xcc,0x4e,0xd3,0xc7,0x6d,0xfb, +0xd2,0xa4,0xc9,0x17,0xd5,0x66,0xf9,0x01,0x37,0x5b,0x8a,0x9b, +0xf5,0xbf,0x62,0xbe,0x13,0x85,0x41,0x54,0xdd,0xbd,0xad,0x7a, +0x43,0x37,0xdb,0x89,0x65,0x88,0x93,0x54,0xcc,0xb2,0x30,0x59, +0xed,0x67,0x49,0xe2,0xde,0x08,0xd0,0x7a,0xc5,0x1c,0x1d,0x85, +0x80,0x01,0xbf,0xb6,0x55,0xed,0x35,0x5c,0x38,0x4f,0xb3,0x53, +0x5a,0x78,0x98,0x67,0xe9,0x2b,0xed,0x73,0x5d,0x57,0xda,0x8b, +0xda,0x92,0x1e,0x45,0xed,0x17,0x0b,0x1a,0x99,0x30,0xc7,0xa4, +0xad,0xb4,0x1c,0x4f,0xb2,0xb8,0xc9,0xe5,0x95,0xd5,0xf8,0xb9, +0x36,0x4e,0x3b,0x6b,0xb3,0xd8,0xf9,0x4b,0x84,0x91,0xe9,0xd3, +0x8a,0xa4,0xcf,0x5f,0xa0,0x6c,0xaa,0x0a,0x12,0x25,0x07,0x92, +0x81,0x1a,0x0e,0x64,0xde,0xf8,0x15,0x02,0x36,0xcd,0x3e,0xbb, +0x3f,0x63,0x4b,0xb6,0x5d,0xb8,0x29,0xc0,0x46,0xb6,0xec,0x74, +0xf4,0x96,0x61,0xe6,0xbb,0x90,0xbe,0x92,0xf4,0xed,0xeb,0x91, +0x6d,0xac,0xf8,0xe2,0xc4,0x8e,0x51,0x0d,0x1d,0xad,0xef,0xe7, +0xd7,0x82,0xc4,0x79,0xb4,0xdb,0xde,0x4f,0x5b,0x21,0x02,0xa2, +0x61,0x58,0xbb,0x4a,0x28,0x20,0x6b,0x73,0x8e,0x3d,0x69,0xd9, +0xb2,0x77,0x78,0xba,0x36,0xa8,0x46,0xf9,0x2b,0xa8,0xed,0x9a, +0x64,0x17,0xeb,0xb6,0x9b,0x64,0x9f,0xd9,0x9f,0xb9,0x25,0xcb, +0xd5,0x76,0x43,0x57,0xdb,0x55,0x67,0xaf,0x16,0x7e,0xf1,0x70, +0x21,0xe4,0x46,0x64,0xa4,0x15,0x5f,0x98,0xd8,0xa1,0x6d,0x23, +0x47,0xe4,0x77,0xb3,0x57,0xcd,0x4a,0x52,0x19,0xf0,0xc1,0xb1, +0x15,0x99,0x67,0x43,0xae,0x45,0x44,0x59,0x51,0x0c,0x6b,0xcf, +0xed,0x67,0x6e,0x3e,0x2e,0x02,0x26,0xd1,0x7c,0x25,0xa8,0x0e, +0x6a,0x0b,0x35,0x5e,0x9b,0x39,0x62,0xa9,0x68,0x11,0x40,0x32, +0xa5,0x11,0xb5,0x9f,0xce,0xed,0x1b,0x23,0xc0,0x43,0xde,0xc6, +0xad,0x2a,0x0e,0x04,0x8c,0x80,0xe3,0x2c,0xf4,0x38,0x61,0xae, +0x50,0x2f,0x29,0x1e,0x98,0xe1,0x60,0x6e,0x52,0xad,0x06,0xeb, +0xd4,0x7e,0x75,0x25,0x47,0x27,0x48,0x36,0x0a,0xe3,0x81,0x4e, +0xca,0x3f,0xf0,0xa0,0xf4,0xa5,0xe6,0xeb,0x53,0xf3,0xc2,0x4f, +0xb8,0x68,0xe7,0x71,0x59,0xf2,0xee,0xd2,0x45,0x4b,0xe7,0x93, +0x41,0x1d,0x12,0x09,0xc9,0xe9,0xe7,0x42,0x2e,0x47,0xb6,0x27, +0xfb,0x86,0x89,0xf3,0x76,0x64,0x0d,0xf8,0xf8,0xd2,0xfe,0xac, +0xcd,0xc7,0x69,0xb9,0x2f,0x5b,0xb4,0x64,0xbe,0x87,0x1c,0xc6, +0x77,0x93,0x85,0x67,0x0d,0xc0,0x8e,0xba,0x91,0xc6,0x9a,0x40, +0x1a,0x5c,0x88,0x26,0x02,0x0b,0x55,0x94,0x5a,0x43,0xc5,0x75, +0x00,0x5b,0x60,0xa9,0x18,0xdd,0x85,0x70,0xe1,0x5e,0x01,0xa8, +0x03,0xc3,0xa9,0xbc,0x0e,0x6e,0xcf,0x9f,0x03,0xf9,0x43,0x79, +0xdd,0x74,0xa4,0x3e,0xca,0x52,0xb8,0xf2,0x86,0xb9,0xd0,0x8a, +0xdf,0x61,0xba,0xc1,0x4d,0x48,0x3f,0x6c,0x6c,0x73,0x35,0xe9, +0x81,0xd3,0xf0,0x96,0xea,0x4a,0xd0,0xf2,0x92,0x71,0xc3,0xec, +0x27,0x2a,0xac,0x03,0xfc,0xa0,0x8f,0xc1,0x2d,0x11,0x58,0xb8, +0x8d,0xdb,0xf5,0xc0,0x1a,0x2a,0x57,0x92,0xb9,0xee,0x59,0xeb, +0x1f,0x50,0x3a,0x29,0x55,0x87,0x03,0x16,0x79,0xcb,0x0a,0xb3, +0x57,0xc5,0x2d,0x11,0x3e,0x1f,0xc2,0x62,0x9e,0x82,0xa3,0xc9, +0xc7,0x4e,0x87,0x5c,0x8c,0x14,0xfe,0xeb,0x20,0xab,0xff,0xc7, +0xe7,0xf7,0x67,0x6e,0xce,0xa2,0x41,0x78,0x57,0xf7,0xaf,0x19, +0xee,0xce,0x5f,0xec,0x52,0xa1,0xd4,0xda,0x3c,0x73,0xad,0x15, +0x97,0xaa,0x95,0xc6,0x65,0x73,0x41,0x5b,0x8c,0x0e,0xeb,0xf4, +0xc8,0x82,0x1d,0x5f,0x35,0x5c,0x5b,0xff,0x57,0xac,0x67,0x3b, +0x96,0x5e,0x85,0xf8,0xa8,0x47,0x57,0x70,0x09,0x83,0x28,0x2d, +0x0c,0x88,0x49,0xf7,0xb8,0x3b,0x37,0x25,0x6e,0x69,0xfc,0x1c, +0xfb,0xdc,0xc4,0xb7,0x93,0xdc,0xdf,0x4f,0x4f,0x2e,0x16,0x0c, +0xa5,0xc6,0xb4,0x77,0x09,0x86,0x8c,0x0b,0xc2,0xe3,0x23,0x2d, +0x93,0x8e,0xe6,0xee,0x62,0x1e,0x8b,0x4d,0xf1,0x92,0xb3,0x2c, +0xd9,0x12,0xfd,0xa1,0x08,0xd3,0x5e,0x1c,0x63,0xb8,0x0a,0x55, +0x2a,0xfc,0x5f,0x60,0xf3,0x30,0xcf,0xa8,0xda,0xf9,0xc9,0x10, +0x01,0x2a,0x31,0xcf,0x82,0x4b,0xb9,0x5f,0x63,0xda,0x62,0x47, +0x57,0xbf,0x7a,0x18,0x49,0x4b,0x5c,0xfd,0xaa,0xa3,0x31,0x85, +0xce,0x5d,0x15,0xe7,0x92,0x3f,0x24,0xed,0xd6,0x66,0xae,0xc8, +0xbe,0x18,0x72,0x35,0x2a,0xca,0x5a,0x61,0x7a,0x07,0x92,0x76, +0x3d,0xee,0xcc,0x15,0x6e,0x07,0x88,0xb3,0x11,0xaa,0xcb,0x6d, +0x68,0xbd,0x84,0x8c,0x61,0x51,0x24,0xfc,0xfc,0xa8,0x4f,0xf5, +0x45,0xc0,0x41,0x90,0xdf,0x6a,0x75,0x9f,0x23,0xbd,0x33,0xae, +0x15,0x84,0xab,0x7d,0x5b,0x6c,0x14,0xd6,0x99,0x71,0xb5,0x17, +0x25,0xe6,0x00,0x8d,0xf5,0xca,0xfc,0x69,0xb4,0x8a,0x07,0x42, +0x6d,0x56,0xe9,0x39,0x11,0xaa,0x4e,0x90,0x64,0xe0,0x94,0xf9, +0x32,0xfe,0xae,0x65,0xc0,0x1d,0x30,0xcf,0x6a,0x2d,0x5d,0xb8, +0x0f,0x81,0xb2,0xea,0x44,0x8e,0x4e,0x10,0xa0,0xe6,0xf3,0x54, +0x5a,0x5e,0xeb,0xe5,0x1c,0xfc,0x9b,0x11,0x25,0x13,0xa2,0xa1, +0x6d,0x31,0x22,0x2c,0xfa,0x91,0x45,0x05,0xf7,0x64,0x8e,0x7d, +0xf4,0xd4,0x2e,0xcd,0xb1,0x97,0x2c,0x5b,0x9c,0x44,0xdd,0xab, +0x6d,0x3b,0x76,0xac,0x0a,0x73,0x6c,0x6f,0xda,0xa3,0x97,0xa3, +0x3a,0x58,0x2b,0x4e,0xef,0xd0,0xad,0x89,0xa3,0xfb,0x1d,0x11, +0x70,0x1f,0xe6,0xea,0xed,0x9f,0x9c,0x79,0x2e,0xe4,0x62,0x11, +0xc3,0xae,0x47,0x2a,0x19,0x75,0xcb,0x43,0xbe,0xa3,0x95,0x71, +0x11,0x78,0x0f,0xe4,0x18,0xe2,0x03,0x85,0x94,0xbc,0x0b,0xcb, +0x9f,0x6a,0xdc,0x6a,0x71,0x9e,0xb9,0x98,0x97,0x4b,0xa2,0x08, +0x9a,0x48,0xfa,0x25,0x9e,0x2f,0x58,0xa1,0xa1,0xb1,0x2e,0x9e, +0x2d,0xa8,0xa3,0xa1,0x57,0x09,0xaf,0xed,0x45,0xcb,0xff,0x05, +0xb4,0x75,0x96,0xb6,0x8a,0xab,0x01,0xa3,0x6e,0xb0,0xb3,0xb0, +0xdb,0x7c,0x97,0x22,0x00,0xa6,0xe2,0x75,0x5c,0xe1,0xe2,0x5e, +0x4f,0x21,0x2c,0xea,0xdd,0xcd,0x5c,0x66,0x6e,0x56,0xe1,0x45, +0xec,0xa7,0xdc,0x6a,0xa8,0xa2,0x0b,0x36,0x91,0xd4,0xc5,0xa6, +0x59,0xc4,0xe1,0x36,0x67,0x17,0x2d,0x62,0xe9,0x4f,0x5c,0x2e, +0x2b,0x1d,0xbd,0x64,0xd8,0x9c,0x55,0xb3,0x96,0x90,0xc2,0x32, +0x87,0xd6,0x85,0xa8,0x78,0x03,0x22,0x5b,0x13,0xaf,0x9b,0xd4, +0x51,0x94,0x6b,0x44,0x33,0x97,0x75,0x2e,0xe4,0x6a,0x24,0xb3, +0xa1,0xe1,0xae,0x9d,0xde,0xff,0xe3,0x4b,0xfb,0xb2,0x36,0x1d, +0xe7,0x46,0xde,0x59,0x4a,0xbc,0x6e,0xee,0x53,0x76,0x44,0x98, +0xea,0xb0,0x7b,0x2a,0x1b,0xe1,0xfb,0x90,0xf1,0x35,0xce,0x22, +0xce,0xb1,0x99,0xb9,0x9e,0x93,0xec,0x02,0xe1,0xb6,0x91,0x3a, +0x56,0xbe,0x2a,0x5c,0x6d,0xdd,0xce,0x1a,0x3a,0xa9,0x63,0x54, +0x23,0x47,0x6b,0x62,0x77,0x71,0x49,0x71,0xb3,0xed,0x89,0xf3, +0x69,0x45,0x7e,0x90,0xe6,0x62,0x2b,0x1d,0x68,0x99,0x0c,0xef, +0x50,0x09,0x81,0x91,0x5d,0x24,0x64,0x39,0xf6,0xc2,0x1b,0x34, +0xb0,0x5f,0xe0,0x26,0x62,0x6b,0x7a,0x58,0xaa,0xa3,0x2d,0x86, +0xfd,0xba,0xf3,0xff,0x58,0x8d,0x76,0x3d,0x0f,0xcc,0x4e,0xc6, +0x19,0x9e,0x75,0x7a,0x7f,0xfa,0xe6,0x4c,0x3b,0x1e,0x01,0x8f, +0x93,0xea,0xd2,0xf1,0xff,0x06,0xfe,0xa0,0xba,0x94,0xbf,0xf7, +0xbf,0xa9,0x60,0xae,0x52,0x2f,0x68,0xae,0x3a,0x18,0xcc,0xad, +0xaa,0xc5,0x60,0x9d,0x3a,0xa4,0x2e,0xe5,0xe8,0xc4,0x1e,0x75, +0xc9,0xc5,0x55,0x07,0x83,0xcc,0xc7,0xfd,0x45,0x5c,0xb5,0x82, +0x6e,0xd3,0xd5,0x3e,0x0d,0xd4,0x46,0x6e,0xb3,0x19,0x4d,0x4c, +0x66,0xd1,0xc4,0x10,0x8b,0x65,0xe6,0x46,0xfc,0xc8,0x4b,0x56, +0x9f,0x4d,0x1b,0x16,0xcb,0x43,0xc6,0x4a,0x52,0x17,0xae,0xb5, +0xa6,0x59,0x78,0x61,0x52,0x87,0xa8,0x06,0x8e,0xd6,0xdf,0x17, +0x8f,0xdb,0x3c,0x1e,0xb7,0x74,0x5e,0x87,0x57,0x22,0x79,0x27, +0x0f,0x27,0x59,0xe4,0x2d,0xca,0x2d,0x27,0x6b,0x0f,0xff,0xe6, +0xe2,0xc0,0xb4,0x06,0xc2,0xf4,0x1a,0xd8,0xca,0xa8,0x9a,0xe8, +0x39,0xc9,0x76,0xcd,0x49,0x43,0x9e,0x93,0xd5,0x71,0x4b,0x34, +0x8a,0xac,0x0b,0x21,0x57,0x5b,0xb7,0x65,0x14,0xc2,0xd3,0x09, +0x71,0xc2,0x7f,0x27,0x6b,0x24,0xdc,0x70,0x7b,0x6e,0x98,0x66, +0xdf,0x4b,0xcf,0xbe,0xa8,0xb8,0x83,0x23,0xba,0xb4,0x2a,0xe2, +0xe0,0xcf,0x8f,0x54,0xf1,0x42,0x7b,0x7e,0x8c,0x64,0x7d,0x32, +0x30,0x8a,0x98,0xb9,0x8b,0x14,0x6c,0xa3,0x79,0xf9,0x23,0xcc, +0x31,0xfe,0xe7,0x54,0x14,0x2f,0x0b,0xee,0x92,0xcd,0xd5,0x27, +0x0f,0x9c,0x8c,0x57,0x9f,0x93,0x04,0xad,0xfe,0x44,0x1a,0x6e, +0xf8,0xc8,0x20,0x7a,0x98,0x3a,0x9b,0x8b,0x3c,0x0f,0xac,0xac, +0x4e,0x91,0x50,0x50,0xe5,0xfe,0xbf,0x8c,0x51,0x12,0x5e,0x56, +0x49,0x5a,0xe2,0xfc,0xc7,0x21,0x6a,0x81,0x3b,0x59,0x9a,0x24, +0x6a,0x69,0x72,0x99,0xa5,0xc9,0x3c,0x92,0x26,0x17,0xcd,0x05, +0xed,0xf1,0x85,0xba,0xd1,0xdf,0xd4,0xa3,0x7f,0x16,0x6c,0x99, +0x61,0xc4,0xcf,0x79,0x87,0x78,0x6c,0xc6,0x8a,0xe3,0x97,0x42, +0xae,0xb5,0x6d,0x63,0x2d,0x37,0xa3,0x43,0xb7,0x46,0xc4,0xd6, +0x13,0x99,0xc7,0xa6,0x27,0xd3,0x1a,0xb9,0x12,0x45,0x74,0x88, +0xb1,0xed,0xea,0x13,0x3b,0x4f,0xeb,0x9f,0x7e,0x61,0x47,0xb6, +0x70,0xbb,0x0d,0x3f,0x92,0xf8,0x38,0x92,0xbb,0x2b,0x83,0x4c, +0x9a,0xd0,0xab,0x80,0x5d,0xf0,0x37,0x92,0x20,0xbd,0x41,0xa5, +0x90,0x56,0x34,0x2f,0x85,0xf0,0xcc,0x7a,0x1e,0x4f,0xbf,0x55, +0x06,0x83,0xfd,0x0f,0x70,0x6d,0xca,0x22,0xe6,0xc9,0x0a,0xeb, +0x33,0x84,0x1e,0xe6,0xcb,0xaa,0x06,0xc9,0x12,0xc2,0x96,0xc8, +0xd8,0xb8,0x57,0x63,0xda,0x97,0xaf,0x1b,0xf3,0x4d,0x7d,0xfa, +0x47,0xc8,0x52,0x0c,0x51,0xe1,0x6f,0x64,0xc5,0x24,0xa6,0xc4, +0x2d,0x13,0x9e,0x99,0x2e,0x99,0x75,0xb5,0x6d,0x94,0xb5,0x7c, +0x31,0xc2,0x14,0x01,0x6e,0xa4,0x33,0xb3,0xbc,0x22,0x9d,0x99, +0x91,0x86,0x30,0x52,0xab,0x23,0x6d,0x00,0x21,0xcd,0x64,0xa4, +0x4b,0x97,0xbe,0xb3,0xe4,0xed,0x22,0xa4,0xda,0x10,0x79,0xa8, +0x85,0x0a,0x21,0x7d,0x8d,0x91,0xae,0x20,0xa4,0xed,0xdb,0xd7, +0x21,0x84,0x0d,0x5d,0x48,0x93,0x44,0x89,0xd9,0x20,0x23,0xb4, +0x5c,0x21,0xa0,0xd5,0x9a,0x32,0x11,0xd4,0x18,0x7a,0xaa,0x0f, +0x0a,0xd8,0xe3,0xdf,0x00,0x88,0x56,0x59,0x4e,0x67,0xd1,0x94, +0x0c,0xba,0x4c,0x86,0x07,0x4d,0x49,0x5f,0x11,0xd4,0x04,0x1a, +0x68,0x19,0x14,0x78,0x8a,0x23,0xf3,0xde,0x37,0x12,0xa5,0xbb, +0x1c,0x2a,0xdf,0xd2,0x9f,0x11,0xd0,0x0d,0x87,0x62,0x94,0xb0, +0xda,0xc1,0xac,0x80,0x3b,0x84,0xdf,0x0d,0x0d,0x26,0x1f,0x93, +0x81,0xc1,0x02,0xea,0x2b,0x30,0xcf,0xab,0xc6,0x4e,0x3d,0x16, +0x83,0x18,0xe3,0x72,0x11,0xd4,0x09,0xb0,0x44,0x51,0x2b,0xc3, +0xa9,0x95,0xbd,0x31,0x72,0x14,0xb5,0x32,0x82,0x5a,0xf1,0x5d, +0x05,0x2d,0xe7,0x15,0xbf,0xc0,0x1b,0xcd,0xee,0x73,0x46,0x9f, +0xc2,0x54,0x55,0x51,0xe6,0x9c,0x62,0x7f,0xd2,0x03,0xa0,0x52, +0x91,0x64,0xa3,0x66,0x2b,0xe2,0x2e,0x92,0x6c,0xd4,0xec,0x74, +0x6e,0x36,0x99,0x7a,0x3b,0xb4,0x7d,0x15,0xea,0x69,0x03,0x9e, +0x4f,0x55,0xee,0x03,0xe3,0x47,0xac,0x7f,0xe4,0xb4,0x16,0x6e, +0xc2,0x58,0x44,0xeb,0x6d,0x71,0x91,0x88,0xba,0x04,0x72,0x52, +0x91,0x88,0xba,0x08,0xab,0xb5,0x88,0xd2,0x1d,0x5e,0x7c,0x99, +0x45,0xd4,0x3c,0x16,0x51,0x4d,0x81,0x8c,0x08,0x2d,0xa2,0x08, +0x67,0x8c,0xfe,0x02,0xc4,0xf5,0xb0,0x7a,0x91,0xb0,0xba,0x08, +0x6b,0xb5,0xb0,0xfa,0x89,0xdd,0x6a,0x65,0x3b,0x17,0x82,0x08, +0x6a,0xc9,0x87,0x4c,0x79,0xec,0xe0,0x6a,0xaa,0x94,0xc6,0x2f, +0x09,0xd6,0x13,0x87,0x0f,0xec,0xd9,0xba,0x67,0xc5,0xf2,0x95, +0x0b,0x93,0xe7,0xc9,0x30,0x2c,0x61,0x3b,0x96,0xcd,0xc1,0x08, +0x44,0x85,0xaf,0x61,0xef,0x8a,0xfd,0x19,0x21,0x3b,0x23,0xc7, +0x5b,0xeb,0x8f,0xe9,0x55,0x23,0xca,0x51,0xf6,0x9b,0xb8,0x95, +0xfc,0xca,0xb1,0x0a,0xe8,0x9b,0xfd,0xdb,0x23,0x27,0x58,0xeb, +0x0c,0x68,0x8f,0x46,0x7d,0xc7,0xb1,0x3e,0x57,0x32,0x33,0x0e, +0xed,0x3c,0x6c,0xe7,0x98,0x06,0x2b,0xe6,0x4a,0x03,0x2d,0xb6, +0x99,0x15,0x9c,0x37,0xf9,0x4c,0xca,0x56,0xf0,0x03,0x60,0xa6, +0xf0,0xf2,0x07,0x67,0x69,0xbe,0xdf,0xda,0xb3,0xd0,0xe0,0x14, +0x36,0xc6,0xd5,0x85,0x36,0x9d,0xea,0x8e,0x37,0x9d,0xa6,0x2e, +0x0d,0xa6,0xd2,0x52,0x9c,0x8a,0xc4,0xd2,0x85,0x42,0x17,0x7e, +0x86,0xb6,0xfc,0xef,0x99,0xd8,0x87,0xc6,0xaf,0xa2,0x44,0x7d, +0x28,0xcf,0xad,0x76,0xc5,0xd3,0xea,0x23,0xdd,0xad,0xb1,0x98, +0xe6,0x64,0x0f,0xc9,0x53,0xf5,0xcb,0x20,0xe7,0x61,0x82,0x34, +0x2d,0xc6,0xe3,0x39,0xd6,0x13,0x87,0xf6,0xef,0xde,0xba,0x7b, +0xc5,0xb2,0x15,0xae,0x6e,0x05,0xd8,0x8e,0x71,0x8c,0x05,0x8f, +0xb8,0x15,0x66,0x2e,0x87,0xb7,0x4a,0x0f,0xd9,0x41,0xe4,0x37, +0x1c,0xdb,0xbb,0x7a,0x3b,0x47,0xe8,0x57,0x71,0x2b,0xe3,0x17, +0x09,0xcf,0x06,0xae,0x77,0x3a,0xdb,0x22,0x27,0x5a,0xeb,0xc7, +0x76,0xc4,0xe0,0x06,0xdc,0xaf,0x8c,0xf4,0x83,0x3b,0x0f,0xd9, +0x57,0xbc,0xab,0x03,0x60,0x95,0xc0,0x97,0x6c,0xb3,0xaa,0x2a, +0x6b,0x74,0xfe,0xc9,0x33,0x16,0x75,0x04,0x83,0xd9,0xfb,0x14, +0xe1,0x76,0x76,0xc6,0x91,0x38,0x47,0x27,0x2b,0x61,0xd5,0x02, +0x3b,0x53,0x61,0x35,0x1e,0xfd,0xff,0xa4,0x22,0x4c,0x78,0xb4, +0xe4,0x83,0x39,0xc3,0x88,0x96,0xbb,0xce,0xe8,0x68,0x27,0xe7, +0x40,0xf8,0x1e,0x03,0x67,0xfb,0x2f,0x8c,0x25,0x5a,0xb9,0x95, +0x6e,0x34,0x9b,0x19,0xc7,0x44,0xc5,0xed,0x64,0x67,0xd9,0x32, +0x8f,0x95,0x95,0x2f,0x25,0xa4,0x08,0xff,0x1e,0x84,0xe0,0x60, +0x5a,0x48,0x46,0xeb,0xd7,0xac,0x4d,0x26,0xf5,0x89,0x8e,0x76, +0x44,0x5f,0x20,0x49,0xb6,0x98,0x54,0xcf,0x39,0xf3,0x48,0x4b, +0x5c,0x93,0x9a,0xbc,0x2f,0x2d,0xe4,0x58,0xe4,0x6b,0xd6,0xb0, +0x91,0x3d,0xaa,0xd7,0x21,0x8e,0x99,0x95,0x95,0x7a,0x60,0xe3, +0x21,0xbb,0x59,0x17,0x07,0x14,0x86,0xc3,0xf7,0x11,0x61,0xc2, +0x6d,0x2a,0x6c,0x92,0xb5,0xca,0xa8,0x21,0xf8,0x8a,0xf0,0xb1, +0x11,0xda,0x3f,0x08,0xed,0x06,0x46,0x4b,0x5b,0x9d,0xd0,0x06, +0xd9,0x32,0xd2,0x34,0x5a,0xff,0x22,0xb4,0x2b,0xe3,0x93,0xe2, +0xe6,0x90,0x16,0xba,0x60,0xa9,0xfb,0xba,0xd4,0x95,0x07,0x18, +0xfb,0x20,0xc2,0xde,0x3b,0x3a,0xc6,0x11,0x73,0x31,0x21,0x25, +0x6e,0x51,0xfc,0x5c,0x52,0x70,0x16,0x2e,0x71,0x5f,0xb3,0x27, +0x59,0x04,0xe4,0xc3,0xc8,0x9e,0xd5,0xeb,0x12,0xe6,0xcc,0xac, +0xbd,0xfb,0x37,0x0a,0x91,0x07,0xe7,0x70,0xa5,0x91,0x30,0x67, +0xc1,0x12,0xf7,0x0f,0xf7,0xad,0x38,0x90,0x1d,0xb2,0xb9,0xcd, +0x14,0x6b,0x95,0x61,0xbd,0x91,0x34,0x30,0xb2,0x6e,0xce,0x1e, +0x3f,0x7a,0x70,0xfb,0x41,0xbe,0xe3,0xc5,0x8e,0x35,0xcb,0x60, +0xa0,0x2b,0xc0,0xa9,0xb7,0xf0,0xfc,0x16,0xd4,0xa6,0x3b,0xec, +0x19,0x6e,0x71,0x9e,0x3c,0xc7,0xd1,0x4d,0x85,0xef,0xdf,0xc0, +0xd9,0x61,0xbb,0xb1,0xb4,0x98,0x52,0x7f,0x5b,0xfa,0xd1,0xbd, +0x7b,0x37,0x1f,0x58,0x42,0x5c,0x6a,0xe9,0x02,0x69,0x41,0x1f, +0x4d,0xf1,0x0b,0x09,0x2b,0xe2,0x97,0xb8,0x28,0x4e,0x62,0x8a, +0xf7,0x1f,0x09,0x49,0x6b,0x3d,0xd4,0xda,0x9c,0xc6,0xeb,0x55, +0x47,0xf4,0xf9,0xd9,0xb4,0x0f,0x12,0xe6,0xda,0x67,0x27,0xd2, +0x78,0xbd,0xb7,0x7b,0xc5,0xde,0x23,0x21,0x47,0x23,0x87,0x58, +0x6b,0x8c,0xec,0x55,0x3d,0x9c,0xa9,0x16,0xa2,0x05,0xbc,0x8f, +0xdb,0x05,0x74,0xa2,0xa1,0x29,0x24,0x84,0x1f,0x8a,0x80,0x60, +0xbe,0x93,0xa3,0x71,0xed,0x27,0x5c,0x8b,0xde,0x75,0xe1,0xca, +0x38,0x56,0xf6,0x77,0xe1,0xb7,0x19,0xf6,0xf0,0xdd,0x9e,0x23, +0xad,0x87,0x59,0x5f,0x99,0xdc,0xa7,0x33,0x63,0xa0,0x11,0x5b, +0x1c,0x3f,0x17,0xef,0xc0,0x9a,0x5d,0xc9,0x7b,0x0f,0x87,0x1c, +0x69,0x33,0xd4,0x5a,0x6b,0x04,0x37,0x9f,0x39,0x20,0x2b,0x23, +0x75,0xdf,0xc6,0x83,0x42,0x7c,0x0b,0x8f,0x45,0x09,0x6f,0x5a, +0x74,0xd5,0x40,0x95,0x54,0x35,0x85,0xc7,0x15,0x90,0x93,0xc3, +0x70,0x02,0x36,0x8e,0x86,0xdc,0xb7,0x40,0x26,0xf1,0xc1,0xd1, +0x99,0xab,0xa6,0x15,0xd7,0xf1,0xad,0x39,0x82,0xaa,0x2c,0xbc, +0xdd,0x34,0x7c,0x1e,0xc7,0x71,0xaf,0x22,0xfd,0xda,0x29,0x77, +0x99,0x6a,0xba,0xb7,0xb5,0xa8,0x71,0x78,0xc1,0x48,0xfc,0x51, +0x0e,0x26,0x46,0xb9,0xab,0x8b,0x1c,0x2e,0x7c,0x32,0xc0,0x1c, +0x17,0x4c,0x30,0x25,0x39,0x22,0x61,0x7e,0x24,0x9c,0xc0,0x1d, +0xe6,0x3d,0x38,0x22,0xac,0x77,0x00,0x03,0x85,0xdb,0x1e,0x10, +0x3e,0x3e,0xf0,0x8b,0x70,0xfb,0x00,0xce,0x5e,0x38,0x92,0x21, +0xdc,0x0d,0x58,0x36,0x4f,0x96,0xc6,0x6a,0xec,0x98,0xaf,0xb4, +0xac,0x28,0xdc,0x16,0x00,0xd5,0x52,0x95,0xb1,0x11,0xbc,0x0b, +0x85,0xe5,0x80,0x7d,0x58,0x3d,0x32,0xcc,0xb1,0xae,0x60,0xae, +0x45,0x25,0xb8,0xaf,0x8b,0x1c,0x4d,0x85,0xc2,0xa7,0x09,0xc8, +0xa5,0xc2,0x63,0x0a,0x08,0x6b,0x65,0xfe,0xa2,0x5a,0xd8,0x18, +0x54,0xdc,0x4d,0x39,0x50,0xb8,0xa7,0x90,0x52,0x20,0xe0,0x1d, +0x1a,0xc8,0x02,0x1a,0xc8,0x0d,0x06,0x6b,0x15,0x6e,0x34,0x94, +0x19,0x47,0x53,0xf5,0xb4,0x69,0x9d,0xcc,0x4a,0x43,0x99,0x9e, +0x16,0xfa,0x47,0xc2,0xca,0x04,0x51,0xd1,0x0d,0x68,0x28,0xa3, +0x86,0xd3,0x64,0xf5,0xee,0xdc,0xc5,0xd1,0xf9,0xa2,0x9e,0xac, +0x39,0xf8,0x03,0xbc,0xbf,0x3b,0x39,0xf5,0x08,0x0d,0xe5,0x30, +0x6b,0xcd,0x91,0xbd,0xaa,0x85,0x3b,0x32,0x68,0x28,0x69,0x7d, +0x1d,0xe0,0xa1,0xc4,0x37,0x05,0x3c,0x22,0x8e,0xd9,0x97,0x78, +0x3e,0xae,0x13,0x5e,0xbf,0x10,0xc2,0xc3,0x84,0xf0,0x9e,0x08, +0x4c,0x07,0xd5,0x12,0x9b,0x0a,0xdf,0x66,0xdc,0x21,0xfc,0x19, +0x2f,0x71,0xa0,0xd4,0xef,0x5d,0x81,0x52,0xaf,0x72,0xa0,0x54, +0xaa,0x24,0x6b,0x10,0x84,0xf7,0x78,0x60,0xba,0x37,0xde,0x94, +0x89,0x4c,0xf7,0x42,0xac,0x62,0x9c,0xc1,0xb5,0xd1,0xec,0x47, +0x2b,0xc8,0x90,0x35,0x12,0x2d,0x3d,0x75,0xa8,0xd4,0x4e,0x79, +0xdd,0xf5,0xe3,0xae,0x8f,0xcf,0xa5,0xbe,0xb5,0xb3,0x17,0x87, +0x4a,0xad,0x71,0xca,0xf5,0xb8,0x6b,0xa4,0x31,0xce,0x52,0x71, +0xe0,0xce,0xa3,0xc2,0x7f,0x14,0xc4,0xbe,0x36,0x9a,0xaf,0xd6, +0x94,0x19,0x09,0xaa,0x09,0x0e,0x37,0x84,0xbd,0x0a,0x08,0xb1, +0x03,0x6a,0xe2,0x6a,0xe3,0xf7,0x36,0xf8,0x52,0xc1,0x6e,0x48, +0x3c,0xf5,0x6a,0x42,0xc4,0xdc,0xe6,0xf3,0xed,0xe1,0x38,0x08, +0x47,0xc1,0x55,0x0e,0x0f,0x41,0x13,0x5d,0xe6,0x0a,0xa8,0xc1, +0xf2,0xa2,0xc1,0xd0,0x5c,0x4b,0xfe,0x88,0xb1,0xc2,0xed,0x09, +0x14,0xd5,0x92,0x53,0x70,0x91,0xf0,0xca,0x00,0x51,0xe6,0x32, +0xc3,0xe5,0x18,0x6c,0x2a,0x24,0xbd,0xfd,0x03,0x7a,0xda,0x0e, +0x1e,0xda,0x91,0xba,0x3e,0x75,0xc9,0xbb,0xb4,0x13,0xde,0x7e, +0x88,0x1e,0x64,0x61,0xd5,0xfd,0x59,0xb8,0x37,0x87,0xd9,0x6c, +0x4f,0xad,0xdd,0xb7,0x72,0xdf,0xb1,0x90,0xa3,0x51,0xc3,0xac, +0x2d,0xa6,0xf6,0xe9,0xd5,0xd5,0x11,0xfb,0xf1,0xec,0x94,0xf8, +0x45,0xc5,0x9b,0x60,0x4d,0xea,0x72,0x2a,0x3d,0x4c,0xa5,0xb5, +0xc6,0xf7,0x6e,0x44,0x02,0xa1,0xff,0x91,0x63,0x3b,0xf6,0x7e, +0xb4,0xcf,0x4e,0xd8,0xfb,0x8a,0x80,0xad,0xf0,0x4b,0x9b,0x50, +0x51,0xe1,0x45,0x7e,0xf1,0x15,0x58,0x46,0xf6,0xc3,0xb5,0x02, +0xfa,0x10,0x09,0x97,0x40,0x0d,0x91,0xeb,0x04,0xd0,0x00,0x26, +0xb6,0x17,0x50,0x1b,0x0a,0x86,0x80,0xb3,0x2c,0x8e,0xc9,0xa7, +0x69,0x78,0x53,0x55,0x2a,0x8c,0xa1,0xc1,0x6d,0x07,0x13,0x55, +0x94,0xf0,0xaa,0xa0,0x93,0x66,0x77,0xa2,0x1e,0xce,0x82,0xb0, +0x84,0x00,0x6d,0xeb,0xad,0x6a,0x14,0x98,0x61,0xb4,0xa4,0xe4, +0x05,0x11,0x78,0x12,0xc6,0x32,0xa0,0x4d,0x17,0xe2,0x7c,0x55, +0x49,0x78,0xc5,0x13,0x8e,0x8b,0x8c,0x63,0x1b,0xb5,0x98,0x8b, +0x55,0x0d,0x39,0xf8,0xe4,0x97,0x80,0xe7,0x84,0x65,0x23,0xc8, +0x10,0xe3,0xb8,0xf2,0xeb,0xf1,0x60,0x9e,0x75,0xf0,0xb4,0xa9, +0xa3,0x87,0x86,0x74,0x72,0x85,0x9a,0x3c,0xb7,0x6f,0xaa,0xb0, +0xbe,0x4e,0xf5,0x46,0x80,0x33,0x14,0xe7,0x09,0xf7,0xed,0x7c, +0x45,0xdf,0x91,0x47,0x39,0xa3,0x99,0xb6,0xe9,0x9a,0xda,0x37, +0x85,0x7d,0x08,0xe5,0x5c,0xe0,0xb6,0x0f,0x73,0x4e,0x4d,0x61, +0xb4,0x82,0x7c,0x1f,0xb3,0xbf,0x21,0xbd,0x71,0x59,0x9e,0x79, +0xae,0x8d,0x79,0x96,0xc7,0xf7,0x34,0x37,0xb0,0xb2,0x81,0xf0, +0xfa,0x80,0xe8,0xef,0x0c,0x5f,0x62,0x0a,0xee,0x03,0xe1,0x37, +0x88,0x2b,0xae,0xe1,0x6e,0x06,0x62,0xa8,0xd3,0x87,0x9a,0x1a, +0xce,0x8d,0xcf,0x16,0x81,0xe7,0x00,0x53,0xb1,0x99,0xf0,0x6d, +0xe2,0xea,0x46,0xac,0x2a,0x27,0x7c,0xee,0xea,0xba,0x98,0xc1, +0x6b,0xec,0x97,0x3f,0xd5,0xf6,0xc1,0xf2,0x6a,0x2d,0x54,0x00, +0x75,0xf8,0xa6,0x45,0x5d,0x91,0x57,0x8c,0xfc,0x66,0xbc,0x3d, +0x0c,0x62,0x2c,0xfb,0xf6,0x6f,0x3a,0xb8,0x64,0x49,0x7e,0x73, +0xe0,0x40,0x23,0xe9,0xa1,0xf2,0xe5,0xd9,0x2b,0xe3,0x97,0xe8, +0x0f,0xdf,0xc4,0x84,0xf9,0x6d,0x1e,0x31,0x61,0x62,0xf2,0x4d, +0x26,0xf6,0xee,0x4c,0x22,0xe0,0x92,0x28,0x7f,0x94,0xaf,0x09, +0x1e,0x8b,0x20,0xbe,0x3f,0xc2,0xc5,0xf7,0xb3,0xb3,0x53,0xf7, +0x6f,0x3c,0x6c,0x37,0x5b,0x60,0x2c,0xd6,0x82,0x07,0x11,0x61, +0xd6,0xb7,0x1b,0xd6,0x5b,0x18,0x2e,0xec,0x3b,0xc0,0xc5,0xf9, +0xa3,0x9f,0x61,0xbe,0x5e,0xb4,0x31,0x99,0xf3,0x3f,0xc3,0xec, +0x92,0x3a,0x2f,0x27,0xa4,0xc4,0x27,0xcd,0x9a,0x53,0x78,0x05, +0xd6,0x11,0xda,0xa3,0x84,0x76,0x10,0xa3,0x25,0xc9,0xd3,0xf9, +0x92,0x08,0xf8,0x16,0xd8,0x4c,0x5a,0xb3,0x67,0x05,0xf3,0xfd, +0xe1,0x2e,0xbe,0xcf,0x12,0x67,0xd3,0x41,0xc6,0x3c,0x80,0x30, +0xff,0x10,0x51,0x55,0x78,0xd4,0x84,0x7b,0xb8,0x52,0x78,0x9d, +0x64,0x94,0x1f,0x10,0xca,0x3c,0x99,0xcb,0x5c,0x7c,0xd1,0x52, +0x16,0x73,0xfe,0x22,0x60,0x1f,0x2c,0xd1,0x3f,0xac,0xe8,0xcb, +0x5c,0x95,0x38,0xf8,0xca,0x62,0xa4,0x24,0x68,0x8b,0xd9,0x77, +0xef,0x4e,0xc4,0x5c,0x89,0x23,0xc4,0x2f,0x8a,0x4f,0x2c,0x2c, +0x0b,0x6b,0x76,0x33,0x73,0x3d,0xda,0x9a,0x78,0xf7,0x70,0xcd, +0x5c,0xfb,0x67,0x67,0x32,0x73,0xb5,0x9b,0x2d,0xb1,0x9f,0x28, +0x9d,0x01,0x99,0xb8,0x3d,0xff,0x21,0xd9,0x44,0x40,0xf8,0x48, +0x6a,0xb8,0x3e,0xb2,0xb9,0x6b,0xf6,0xb3,0x6f,0xef,0xa6,0x62, +0xf6,0xe3,0xc1,0xec,0xe7,0x58,0x28,0x71,0xf2,0x2d,0x45,0x9c, +0xbc,0x0d,0xb3,0x9f,0x3e,0x9d,0x98,0xfd,0x30,0x27,0x4f,0x98, +0xeb,0x6c,0xc7,0xec,0x67,0xef,0x21,0x62,0xf2,0x9a,0x93,0x6b, +0xf6,0x93,0x93,0x41,0x03,0x7c,0xc0,0x6e,0xb6,0xc2,0x1e,0x46, +0x8b,0x84,0x1a,0x73,0x2b,0xcd,0xf3,0xb8,0x1f,0x51,0xdd,0x35, +0xca,0x8a,0xb4,0x4f,0x2b,0x96,0xcc,0x27,0x8d,0xce,0x63,0x39, +0xa1,0xc7,0x01,0x02,0xba,0x82,0xb2,0xa9,0x5a,0xc2,0x6b,0x02, +0xe4,0xb7,0x25,0x06,0xaa,0x6a,0x3e,0xf3,0x2b,0x18,0x86,0xc3, +0xb0,0x31,0xfb,0x15,0x5c,0xa5,0xfd,0x0a,0xb6,0x85,0xab,0x55, +0x85,0xd7,0x45,0x86,0xfb,0x06,0x77,0x0b,0xc8,0x7f,0xbe,0x86, +0x76,0x2c,0x58,0xc4,0x92,0xdf,0x36,0x9e,0x10,0x4f,0xb6,0x72, +0x0d,0x55,0x85,0x84,0x08,0xbc,0xc1,0x03,0x1c,0xa7,0x07,0xf8, +0x10,0x63,0xac,0x87,0x61,0x02,0x96,0x71,0xe6,0x52,0x9d,0x99, +0x63,0x14,0x4a,0xa0,0x21,0x70,0x0d,0xf9,0x32,0x56,0x33,0x3c, +0x68,0xc8,0x89,0xfb,0x6a,0xa1,0x49,0x62,0xbe,0xb0,0x0c,0xac, +0x4d,0x5d,0x49,0x43,0x5e,0xc4,0x84,0x69,0x14,0x3a,0x5d,0xe2, +0x21,0xd7,0xcc,0x82,0x64,0xf8,0xfb,0xda,0xd3,0xee,0x11,0x62, +0x16,0x35,0x87,0xf7,0xaa,0x56,0xdf,0x91,0x11,0xcb,0xa3,0xce, +0xf3,0xfd,0xdc,0x40,0x7c,0x17,0x51,0xe3,0xd9,0x40,0x4c,0xc5, +0x11,0xf9,0xaf,0x91,0xe4,0xaa,0x07,0x4d,0x85,0xad,0x2e,0x13, +0xb3,0x43,0x13,0x73,0x2f,0xff,0x0b,0xc0,0x28,0xa3,0x45,0xbc, +0xae,0xf2,0x79,0x44,0xc3,0xa7,0x55,0x66,0x63,0x25,0x01,0xb7, +0x75,0x15,0xd5,0x9e,0xb6,0xd0,0x14,0xae,0x34,0x5b,0x57,0x3a, +0xca,0x95,0xda,0x15,0x57,0xfa,0x32,0x22,0xfc,0x19,0x1e,0x54, +0xd5,0x0c,0xe2,0xec,0xb9,0x2a,0xee,0x7b,0x73,0xd1,0x19,0xe1, +0x57,0x11,0x38,0x1e,0x13,0xb7,0xd1,0x93,0xf7,0xde,0xcf,0x7f, +0x05,0xf3,0x02,0x0c,0xe3,0xe0,0x89,0x41,0xc2,0x76,0x0e,0xe4, +0x87,0xe6,0x09,0x63,0xc5,0x32,0x1d,0xf8,0xab,0x06,0x56,0xb0, +0x5d,0x3b,0x95,0x71,0x64,0xe7,0x91,0xe4,0xa5,0x2b,0x39,0x08, +0x44,0x55,0x74,0xf0,0x93,0xaa,0x8a,0xd2,0x98,0x85,0xcd,0xe1, +0xa3,0xfd,0x2b,0x0e,0xe5,0x84,0xec,0x8e,0x18,0x63,0xad,0x31, +0xa6,0x47,0x8d,0x57,0x1c,0xa1,0x8f,0xb5,0xb2,0x3d,0xdb,0x1e, +0x97,0xc0,0x91,0xc6,0x0e,0xac,0x38,0x94,0x45,0xaa,0xf8,0x38, +0x6b,0xd5,0x01,0x6d,0xd0,0xa8,0xce,0xce,0x89,0x8f,0x67,0xa4, +0xed,0x4c,0xb3,0x93,0x78,0x7f,0xc7,0x90,0xa4,0x30,0x03,0x26, +0xba,0xfe,0x8c,0x11,0x3e,0x8d,0x20,0xff,0x11,0xab,0xfc,0xc7, +0x58,0xe5,0x87,0xfe,0xfa,0xad,0x1a,0xa9,0xfc,0x72,0x9d,0x79, +0xcd,0x48,0x4e,0x5e,0xe5,0x22,0xc7,0x6e,0xbb,0x9a,0x9d,0x7e, +0x60,0xe7,0x41,0xa2,0xcf,0xa5,0x9d,0x06,0xb2,0x47,0xe3,0x4a, +0xd2,0x33,0x8e,0xc9,0x49,0x4d,0xde,0x9f,0xae,0x75,0xff,0xf0, +0x31,0xbd,0x6b,0xb4,0x75,0x84,0x7e,0x2d,0x2a,0x7c,0xcb,0x06, +0xc1,0x31,0xd2,0xfb,0x27,0x92,0xde,0xdf,0x11,0x8d,0x70,0xa2, +0xe2,0x72,0x46,0xfa,0xa1,0x5d,0x34,0x73,0x1e,0xf8,0x86,0x21, +0x5f,0x8c,0xc4,0x17,0x89,0x0a,0xfd,0x67,0x8c,0x7e,0xd6,0x56, +0xe2,0x12,0x38,0x37,0xb1,0xd6,0xdf,0x95,0xb5,0xfe,0x4d,0xfc, +0xaa,0xad,0x6b,0xa1,0x9d,0x53,0xa4,0xff,0xaf,0x60,0xfd,0x7f, +0x13,0xeb,0xff,0x57,0x59,0xff,0xdf,0xc4,0xfa,0x7f,0x57,0xd6, +0xff,0x37,0x51,0x3f,0xec,0xac,0xff,0x6f,0xd2,0x8f,0xda,0x48, +0xff,0xd7,0x9d,0xe8,0x2a,0xdc,0x47,0xea,0x8e,0x8d,0xc5,0x83, +0x5a,0xe9,0x8f,0x65,0xa5,0xff,0x34,0x29,0xfd,0x22,0x88,0x24, +0xf8,0x38,0xe3,0xb7,0xc8,0x72,0x98,0xc8,0xff,0x8d,0x11,0x5e, +0x0b,0x75,0x39,0xbf,0x26,0x23,0xc5,0x9c,0x1a,0x52,0x12,0x7f, +0x75,0xce,0xd3,0x99,0x95,0x84,0xa5,0xbb,0xce,0x3a,0x8a,0x7e, +0x7f,0xd2,0x9e,0x83,0xbe,0x27,0xe6,0x2b,0x3c,0x2f,0x43,0xad, +0x7f,0x7c,0x28,0x76,0x9f,0x1f,0xa0,0x3e,0x06,0x1c,0xcf,0xaf, +0xa7,0xea,0x3e,0xf7,0x4e,0xec,0x8f,0xa2,0x67,0x62,0xb9,0xfc, +0x4c,0x4c,0x04,0x7d,0x07,0xb8,0x65,0x22,0xe0,0xcb,0x1f,0xe8, +0x27,0x62,0x41,0x0f,0x00,0x07,0x8a,0xf2,0xcb,0x80,0xb8,0xfc, +0x2a,0x10,0xee,0xa7,0xf4,0xbb,0xb0,0x3f,0xdd,0x49,0x1d,0x98, +0xd9,0x4b,0xf8,0x57,0x84,0xbb,0x7c,0x1b,0xf0,0xd4,0xbf,0x7b, +0x36,0x76,0xd7,0x72,0x1a,0xcb,0xe9,0x67,0x63,0x0c,0xf7,0xe7, +0x67,0x63,0x5f,0x5a,0x4e,0x70,0x14,0x9a,0xe2,0x67,0x63,0xee, +0xd7,0xa0,0x01,0xee,0x28,0x0e,0xda,0x17,0xcb,0x41,0xfb,0xce, +0x71,0xd0,0xbe,0x7b,0xc2,0xbb,0x33,0xb8,0xf0,0xfc,0xfd,0xab, +0xb2,0xbb,0x4f,0xab,0x3d,0x7d,0x55,0x76,0x97,0x5f,0x95,0x7d, +0xa0,0xaf,0x8a,0x52,0x49,0xd8,0xad,0x47,0xf9,0x95,0x80,0x28, +0x08,0xda,0x4e,0xfd,0x5a,0x07,0xa6,0x35,0x92,0x1f,0x98,0xdd, +0x2d,0x7a,0x60,0x76,0x9e,0x1f,0x98,0x89,0xa0,0x0f,0xc1,0xb4, +0xa0,0xd7,0x2d,0x57,0x98,0xbc,0xd3,0xfc,0xb0,0x4c,0x04,0xbd, +0x4a,0x5a,0xcb,0x1a,0x7d,0xaf,0xf3,0x1e,0xb5,0xf4,0x0d,0xd0, +0x26,0x8f,0x36,0x2d,0xcd,0x2a,0x75,0x95,0x3b,0x4e,0x56,0xba, +0x6d,0x5a,0x68,0xfc,0x03,0x54,0xb9,0x8f,0x35,0xe4,0xf3,0xaf, +0xcf,0x44,0x50,0x2b,0x20,0x09,0xcc,0x97,0x39,0xdf,0xfb,0xd6, +0x45,0x5e,0xcb,0x8a,0x31,0x72,0x57,0x6e,0xc5,0x9b,0xe8,0x03, +0x78,0x9d,0x6f,0x64,0xb6,0x06,0x75,0x83,0x34,0x8c,0xc0,0x43, +0x84,0x23,0x59,0x78,0x47,0xe8,0xa7,0x67,0xef,0xc8,0xed,0x9c, +0x63,0xf6,0xc3,0xdb,0xb2,0x2f,0x98,0x8b,0x39,0x67,0x03,0x71, +0x6f,0xcd,0xac,0xdd,0x48,0xd3,0xc9,0x38,0x9c,0x9a,0xba,0x79, +0xef,0x12,0x0c,0x22,0x1e,0x4b,0x4a,0x79,0xd9,0x9f,0x45,0xf9, +0x7a,0x70,0x28,0xe4,0x40,0xd4,0x68,0x6b,0xab,0xc9,0xfd,0x3a, +0x75,0x73,0x74,0x3a,0x37,0x7b,0x05,0xb3,0x6d,0xd7,0xc1,0xed, +0x9a,0x9d,0x2b,0xf6,0x1c,0x0c,0xd9,0x1f,0x35,0xca,0x5a,0x7f, +0x44,0xdf,0x6a,0x8d,0x59,0x71,0x4c,0x4f,0x4d,0xdd,0xb8,0xcf, +0x7e,0x59,0x05,0x19,0xd7,0x65,0x5d,0x1d,0x8d,0x4a,0x78,0x96, +0x84,0xdb,0x49,0x4b,0x3e,0x29,0x63,0x36,0xc2,0x87,0xf9,0xef, +0x83,0x28,0x5f,0x99,0xf1,0xa6,0x88,0x12,0xeb,0x41,0x79,0xf1, +0x73,0x35,0xe1,0x99,0x0a,0x27,0x74,0x14,0x8b,0x18,0xfd,0x66, +0x6d,0x92,0x7e,0xb3,0x16,0x06,0xd3,0x55,0x3f,0x61,0x69,0xa1, +0x93,0xa3,0x44,0x50,0x88,0x4e,0x98,0xd1,0xc2,0xeb,0x30,0xe4, +0x7f,0x0b,0xe6,0x40,0x01,0x3f,0xea,0x17,0x61,0xef,0xc8,0x8b, +0x02,0x62,0x60,0xb4,0xea,0x5f,0x50,0x8d,0x4b,0x86,0x71,0xb5, +0x28,0x4e,0xc9,0x1d,0x38,0x5e,0xb8,0x7f,0x5e,0xd4,0xd3,0x4d, +0xa2,0xc4,0x46,0x50,0x2f,0x73,0x54,0x32,0x75,0x0a,0x12,0x4f, +0x3e,0x8d,0xce,0x20,0x4a,0xb0,0x12,0xd5,0x9b,0x5f,0x5b,0x7d, +0xc9,0xaf,0xad,0x02,0x7b,0xfe,0x8f,0x5e,0x5b,0x59,0x1f,0xf0, +0x98,0xbf,0x2a,0x02,0x0f,0x43,0x67,0x5c,0xa4,0x4c,0xa6,0x80, +0x56,0xc9,0x35,0xdd,0x76,0x24,0x2e,0x2a,0x7c,0x43,0x37,0xfd, +0x84,0xef,0xbc,0xae,0x3d,0xc9,0x2f,0x2c,0x24,0xad,0x18,0xdf, +0x9b,0xfc,0xe2,0x29,0x70,0x32,0x4c,0x93,0x5b,0x49,0xf7,0x53, +0x9f,0xe4,0x59,0x54,0xb3,0x3f,0x38,0xc3,0x4c,0x91,0x5d,0xc1, +0x9c,0x0f,0xfc,0xa2,0xa5,0x59,0xff,0x2b,0xe6,0xa1,0x28,0x0e, +0xf7,0x25,0xe4,0x0a,0xad,0x9a,0x2e,0x59,0xf0,0x20,0xd4,0x76, +0x60,0xff,0x8e,0x9d,0xeb,0x77,0x27,0x69,0x71,0xff,0xa8,0x9c, +0xed,0x68,0x5a,0xbd,0xfb,0x73,0x56,0xb0,0xc9,0x4a,0xe2,0x7d, +0xed,0xee,0x95,0x24,0x56,0xf7,0xb7,0x1b,0x63,0x8d,0x9a,0xda, +0xaf,0x57,0x4f,0x47,0x6c,0xb6,0x28,0x7f,0x04,0x48,0xc0,0xec, +0x6d,0x3b,0xc6,0xda,0x70,0x42,0xff,0x46,0x4d,0x1d,0x69,0x03, +0x0e,0x1f,0xd9,0xb1,0xeb,0xa3,0x54,0x7b,0x2e,0xa2,0x08,0x7a, +0x99,0x34,0xa8,0x72,0xc0,0x6f,0xa0,0x9a,0x0d,0xbb,0x62,0x2e, +0x15,0x25,0x6a,0x12,0xe3,0x17,0x81,0x5b,0x01,0x3b,0x83,0x8a, +0x90,0x27,0x41,0x5e,0xcd,0x3f,0xf9,0xf4,0xc7,0xa1,0xfc,0x7d, +0x4f,0xd3,0xe6,0x9a,0xfc,0x24,0x70,0x8e,0xa3,0x7d,0x49,0xe9, +0x55,0xf8,0xc0,0xd9,0xb8,0xf8,0xd7,0x61,0xe1,0xbe,0xbf,0x38, +0xbd,0x4f,0x0d,0x76,0x36,0x20,0x8d,0x6e,0x32,0x28,0x87,0x5c, +0x20,0x02,0xaf,0x83,0x7c,0xa0,0xa3,0x1c,0xf1,0xe3,0xfc,0xc3, +0xa2,0x04,0x71,0x2e,0xbf,0xf2,0xf0,0x9b,0x08,0x3a,0x4c,0x2a, +0xa9,0x29,0x82,0xc8,0x24,0x0b,0x8c,0x01,0xf3,0x25,0x7e,0x7e, +0x13,0xd8,0x09,0xc8,0x36,0x20,0xb5,0xd7,0xf7,0x3a,0xbf,0xb2, +0x09,0x9c,0x09,0xcb,0x0a,0x2a,0x51,0x76,0x6b,0xb8,0x27,0xb7, +0x69,0xb8,0x05,0xf9,0x47,0x5c,0x60,0xcd,0xf2,0xe7,0x52,0xe2, +0x75,0xa8,0x4c,0x13,0xeb,0x13,0xa3,0x93,0x66,0x4f,0x4c,0x13, +0x96,0x97,0x59,0x4a,0x1d,0xd2,0x52,0xea,0x07,0xe1,0xb9,0x9f, +0xb5,0xb0,0x8c,0x34,0x97,0x8d,0xab,0x8d,0x5e,0x0f,0xad,0x21, +0x85,0xfe,0xc1,0x76,0x67,0x6a,0x0a,0xc9,0xe9,0xa3,0x64,0x77, +0x16,0x6b,0x2b,0xb3,0x57,0x08,0xff,0xad,0xb0,0x66,0xcf,0xf2, +0x22,0xa3,0xb3,0xe6,0x08,0x96,0xd0,0x5a,0x2f,0xda,0x4f,0x7a, +0xd1,0x75,0xfd,0x2c,0x00,0x9c,0x67,0xe0,0x14,0x2d,0xab,0x5a, +0x1c,0xe3,0x6c,0x9c,0x28,0x31,0x8a,0x74,0x94,0xbb,0xac,0x22, +0x65,0x09,0xa0,0xed,0x8d,0x04,0x12,0xf0,0x67,0x90,0x20,0xd2, +0xf6,0xfd,0xa3,0x41,0x5d,0xc5,0x68,0x01,0xaf,0xc2,0x24,0x15, +0x45,0xba,0x7d,0x7e,0x1b,0x18,0xa2,0xa2,0x8c,0xb9,0x8f,0x49, +0x87,0x19,0x56,0xe0,0x05,0x89,0x3a,0x3e,0x73,0x2e,0xc7,0x67, +0x5e,0xa6,0xb5,0x98,0x36,0x1c,0x3e,0x25,0x50,0xc0,0x51,0x06, +0x35,0x7b,0x63,0x2e,0x6e,0x2d,0xaa,0x84,0x9d,0x38,0x10,0x73, +0x22,0x87,0x67,0x5e,0x58,0xd0,0x9e,0x33,0x07,0xb3,0xee,0x4f, +0x2b,0xcf,0xff,0x08,0x61,0xe1,0x9d,0xf2,0x2a,0x47,0x44,0x21, +0xa3,0xe2,0x5d,0x1e,0x8e,0x2d,0x2e,0xa1,0xad,0xc9,0xfb,0x81, +0x5f,0x69,0x08,0xcf,0xbd,0x7f,0xea,0x42,0x45,0x86,0xca,0xd5, +0x50,0xa6,0x08,0xdc,0xc3,0xc1,0x4a,0x8e,0x09,0xf8,0x9a,0xf6, +0x62,0x5d,0x0e,0x3b,0x72,0x52,0x78,0xd9,0x8b,0x87,0xf5,0xaa, +0x44,0x61,0xf1,0x04,0xfc,0x91,0xda,0xb1,0xb8,0xba,0x69,0x8e, +0xe0,0x78,0x24,0x4d,0x65,0x88,0x86,0x6f,0x85,0xd5,0x85,0xcf, +0x9b,0x34,0x23,0x63,0x60,0xa9,0x6a,0x21,0x7c,0x84,0xce,0xad, +0x8f,0xaf,0x0b,0xef,0xa6,0x2e,0x21,0xb3,0x6b,0x32,0x54,0x2f, +0x7e,0x2c,0xf1,0x83,0x7c,0xa3,0x7a,0xf1,0x63,0x09,0x8e,0x45, +0x1b,0x94,0x09,0xe7,0x9c,0x27,0x3b,0x51,0xee,0x73,0x8f,0x25, +0x38,0xc6,0xb6,0x1b,0x3f,0x96,0xf8,0x8e,0x21,0x48,0xc6,0x6c, +0xe0,0xb7,0x12,0x3e,0xd7,0xa4,0x8f,0x7c,0xa3,0xee,0xb3,0xb7, +0x12,0xdf,0xf0,0x5b,0x89,0x1b,0xfa,0xad,0x04,0x4b,0x9e,0x01, +0x46,0x47,0x39,0x01,0x3d,0xae,0x49,0x0f,0x39,0xb3,0x99,0xeb, +0xad,0xc4,0x6d,0x39,0xe1,0x3c,0xbf,0x95,0x88,0xe6,0xb7,0x12, +0x72,0xdc,0x5f,0x7b,0x25,0xf1,0x0c,0xee,0x2f,0xbc,0x8f,0x70, +0x9f,0xfc,0x5f,0xbf,0x8f,0xe0,0xf6,0xff,0x4f,0x5e,0x46,0xe8, +0x86,0xfe,0xcd,0x9b,0x08,0xa6,0xed,0xdf,0xbf,0x89,0x60,0x88, +0xff,0xfc,0x26,0x42,0x7e,0x64,0x5e,0x2a,0xd6,0xeb,0xaa,0xa3, +0xb0,0x5d,0x3d,0xce,0xdf,0xe7,0x92,0xdf,0xd5,0x8a,0x54,0x15, +0x0c,0xb6,0xa5,0xbb,0x9e,0xca,0xa7,0xcc,0x22,0x6b,0xf5,0x65, +0xe0,0x38,0xb1,0x99,0x21,0xbb,0x22,0xc6,0x59,0xeb,0x8d,0xe9, +0x55,0xb3,0xb5,0xa3,0xec,0x77,0xf1,0x2b,0x85,0x67,0x34,0xec, +0x5b,0x79,0x30,0x3d,0x64,0x47,0xc4,0x78,0x6b,0xad,0x01,0xed, +0xb1,0x44,0x3d,0x47,0x7a,0xef,0xcb,0x59,0xe9,0x87,0x76,0x1e, +0xb1,0x9b,0x5f,0xe2,0x2a,0x7e,0x36,0x21,0x82,0xd6,0x82,0x1c, +0xaf,0x0e,0x83,0x4c,0x40,0xf7,0xeb,0xd2,0xbd,0xe8,0xbd,0xc4, +0x63,0xfd,0x5e,0x22,0xa8,0x0b,0x54,0x2b,0x7e,0x2f,0xf1,0xd0, +0x12,0x59,0xcd,0xc0,0x49,0x0f,0x75,0x04,0x09,0x16,0xb1,0xdd, +0x8b,0x9f,0x4b,0x10,0x54,0x75,0xd7,0x73,0x89,0x1f,0xac,0x91, +0xd5,0x09,0xe6,0x07,0x86,0xe1,0x81,0xfa,0xfb,0x87,0x12,0x22, +0xe8,0x09,0xb0,0xeb,0x17,0x1a,0xac,0xc1,0xfc,0x1a,0x82,0x87, +0xe2,0xdf,0xbd,0x86,0x90,0x1b,0xcc,0x23,0xc6,0x72,0x56,0x1e, +0x39,0x36,0x46,0x35,0xdb,0xb5,0xdc,0x8c,0x34,0x11,0x40,0xc6, +0x41,0x15,0x2c,0x6f,0xcb,0xc8,0xa1,0x01,0xb0,0xc7,0xa5,0xcc, +0x5c,0xe4,0xec,0x07,0x3a,0xe0,0x5c,0x6a,0xc4,0x68,0x6b,0xe5, +0x31,0xdd,0x6a,0x36,0x75,0x94,0xfb,0x45,0x94,0x6b,0x07,0xac, +0xea,0x56,0xe8,0x1f,0x89,0x41,0x55,0x1c,0x19,0xbd,0x2f,0x9f, +0xcc,0x38,0xb6,0x33,0xdd,0x8e,0x33,0x71,0xa2,0x51,0x83,0xdf, +0x4b,0x8c,0x2a,0x7e,0x2f,0x81,0x19,0x16,0xf9,0x6d,0x67,0x43, +0x8e,0x7d,0xfa,0x68,0x22,0x3f,0x82,0xdf,0x4c,0x9c,0xd0,0x6f, +0x26,0x82,0x7e,0x20,0x6d,0xd0,0x08,0x63,0x05,0xf7,0xba,0xb3, +0x15,0xc8,0xf5,0xe6,0x05,0x51,0x3e,0x19,0x0e,0x3d,0x37,0x19, +0x25,0x79,0x32,0x2a,0x70,0x98,0x9d,0x59,0xef,0x3c,0x0d,0x62, +0xb6,0xaf,0x78,0x42,0xea,0xd2,0x84,0x44,0x3a,0xca,0xde,0xa7, +0x09,0x09,0xcd,0x05,0x9a,0x85,0x3a,0x3c,0x0b,0xd9,0x19,0xec, +0x05,0x01,0x67,0xe0,0x90,0x67,0xef,0x2a,0x9c,0x1f,0xb1,0x1e, +0xdb,0x5f,0x6d,0xe5,0x14,0x69,0xaf,0x6b,0x39,0x10,0xf7,0x47, +0xac,0xbd,0xde,0x56,0xe3,0x74,0xa9,0xeb,0xc1,0x45,0x71,0x6a, +0x3e,0x51,0x37,0xa8,0xf8,0xe9,0x05,0xd3,0x3c,0x16,0x33,0xf4, +0xcb,0x0b,0x48,0x04,0x55,0x02,0x2f,0xf1,0xbd,0xbf,0xc5,0xdb, +0xf6,0xa4,0xa4,0x2e,0x3e,0x22,0xfc,0x5f,0x81,0x46,0x31,0x3d, +0x71,0x86,0x8e,0x19,0x62,0xcf,0xf9,0xe2,0x40,0xfa,0x21,0x11, +0xf0,0x1b,0xa0,0xcd,0xb6,0xef,0x24,0xae,0x92,0xde,0x22,0x60, +0x08,0xb1,0x13,0x01,0x18,0x6b,0xe0,0x1f,0x94,0x5d,0xec,0x2f, +0x81,0x9a,0xfa,0xc7,0x47,0x1c,0x44,0x40,0xd1,0xfb,0x0d,0x2e, +0xaf,0x84,0x55,0xb1,0x3d,0xf4,0x35,0x9a,0x2f,0x17,0x7e,0xc4, +0x31,0xb7,0x63,0x6d,0xe1,0x36,0x9d,0x89,0x2c,0x7a,0xd4,0x21, +0x02,0xdf,0x63,0x6b,0xbe,0xad,0x21,0x87,0xf3,0x08,0x5f,0x10, +0x1e,0xa4,0x0f,0xd0,0xc0,0x5f,0x20,0x46,0xc3,0x45,0x6f,0x60, +0x94,0xb0,0x4c,0x2b,0xb6,0xba,0x6f,0xc8,0x23,0xda,0xd0,0x7f, +0x99,0x86,0x35,0x33,0x7d,0x2f,0x19,0xe9,0x6c,0x0d,0x5a,0xb0, +0x84,0x2d,0x93,0x0c,0x40,0x2b,0x1b,0xc0,0xb4,0xa8,0x8f,0xe9, +0x8f,0xcb,0x8d,0x26,0xf5,0xea,0xdc,0xc9,0x11,0x7d,0x85,0x3f, +0x2e,0x27,0xf0,0xc7,0x65,0x36,0xfd,0xc8,0xac,0x48,0x0b,0x49, +0x6f,0x3d,0xd0,0x5a,0x79,0x44,0x8f,0xea,0x35,0xf9,0x6b,0x66, +0x76,0xea,0xc1,0x4d,0x87,0xed,0x66,0x6b,0x8c,0xc4,0x79,0x64, +0x6f,0xef,0x2d,0xb2,0xb7,0x6f,0xca,0x75,0xa2,0xc4,0x24,0x4a, +0x8a,0xd0,0xed,0x6c,0x09,0x87,0xb0,0x25,0x1c,0xb8,0x9a,0x9f, +0x1d,0xbc,0x6c,0xc8,0xae,0x2e,0xcf,0xfd,0xeb,0x84,0x5f,0x34, +0xe4,0x0f,0xe0,0x53,0x91,0x99,0x37,0xcd,0x99,0x56,0x75,0x13, +0x87,0x09,0x7e,0x00,0x61,0x53,0x4d,0xd9,0x0b,0xce,0x78,0x39, +0x0a,0xd3,0xba,0xc8,0x37,0x2a,0xe3,0x04,0x6c,0xaa,0x06,0x82, +0x5c,0x6e,0xc8,0x9e,0x78,0xf1,0xaa,0xe9,0x8d,0x6b,0x69,0x21, +0x75,0x66,0x93,0xb8,0x89,0x31,0xf7,0x27,0x51,0x76,0x17,0x10, +0x5b,0xab,0x00,0xf2,0x8a,0xa1,0xbc,0xe5,0x0e,0xd3,0xdb,0xda, +0x1e,0xaf,0xb3,0x6b,0xdc,0x0f,0xb4,0x20,0xea,0x0c,0x57,0xcb, +0x19,0xcc,0xc6,0xdb,0xb9,0xfc,0x67,0x59,0xd5,0x7e,0xcc,0x33, +0x12,0x7f,0x52,0x2f,0x80,0x1c,0x56,0x19,0x07,0x63,0xd3,0xa2, +0x58,0x8c,0xee,0x6d,0xa0,0x4f,0xab,0x79,0x0d,0x4a,0x99,0xe3, +0x83,0xb1,0xaa,0x2c,0x25,0xab,0xea,0xca,0x5f,0xe3,0x11,0xa7, +0x84,0x22,0x74,0xe6,0xab,0x7c,0x95,0xb4,0xa9,0xcb,0xf8,0xfe, +0x65,0x34,0xfc,0xcc,0x67,0x47,0x7b,0x94,0x0f,0x87,0xfe,0xea, +0xcc,0x46,0xf8,0x73,0x10,0x49,0x72,0x05,0x07,0x00,0xbb,0x62, +0x6c,0x94,0x03,0xda,0x0b,0x8f,0xdb,0xd0,0x41,0xf8,0xdd,0x2d, +0x1a,0x9e,0x6d,0xdc,0xd1,0x7a,0xd8,0xc0,0xf9,0x09,0xe0,0x55, +0x23,0xe1,0xe7,0x82,0x35,0xd4,0x85,0x02,0xda,0x03,0x42,0x78, +0x8d,0xe7,0xf9,0x5a,0x46,0xf3,0x75,0x53,0x1e,0xd6,0xa3,0x18, +0x21,0x44,0x0f,0x36,0xa3,0xc7,0xb2,0x19,0x4d,0xa3,0x78,0x83, +0xf5,0x7a,0x0b,0x75,0xa8,0x39,0x34,0x13,0xb6,0x7a,0x94,0x97, +0x4c,0x26,0x73,0x0d,0xed,0xa9,0xa5,0x39,0x3f,0xe7,0xb0,0xb0, +0x57,0xf9,0xda,0x56,0x95,0xcc,0x01,0xa3,0x17,0xb1,0xa7,0x96, +0x1b,0xfc,0x04,0x84,0x9a,0x9d,0xa9,0x9b,0xdd,0x29,0x60,0x07, +0x4c,0x2e,0x08,0x67,0x9b,0xb9,0x81,0xf1,0x40,0x3b,0x99,0x7f, +0xe0,0x72,0x32,0x7f,0x4b,0x78,0x44,0xba,0x9a,0xe9,0x89,0xad, +0xd9,0xc9,0xfc,0x3a,0xe1,0x71,0x09,0x90,0x48,0xa7,0xae,0x54, +0x8d,0xc9,0x7f,0x91,0x43,0xdb,0x11,0xbe,0x05,0x58,0x8b,0x0d, +0x65,0x1b,0x1b,0xca,0xf9,0x43,0x78,0x0e,0xdf,0xbd,0x69,0xbe, +0x6b,0xc5,0x50,0xd5,0x4c,0x94,0x20,0xe5,0xa9,0x06,0x09,0xe7, +0x15,0x10,0x0e,0x6a,0x96,0x16,0xcb,0x5d,0xf8,0x82,0x59,0x93, +0x1c,0xd7,0x55,0x2d,0x7d,0x49,0x62,0x81,0x0c,0x74,0x5d,0x05, +0xf3,0x91,0x61,0xb3,0x57,0xcd,0x5a,0x12,0x97,0x40,0x8b,0xcc, +0x75,0x49,0x22,0x42,0x5f,0xda,0xea,0xd8,0x9a,0x2f,0x84,0x51, +0xd1,0xe2,0xb8,0xd9,0xf6,0x79,0xf3,0x69,0xfd,0x15,0xdd,0xdc, +0x6a,0xe5,0xba,0xb9,0x55,0x11,0xbd,0x1c,0xd9,0xfd,0x3e,0xbe, +0x74,0x20,0xd3,0x75,0x65,0x82,0x2f,0x0f,0x99,0xd3,0xf5,0x95, +0x09,0x42,0xdb,0x5b,0x7f,0xd8,0x6a,0x64,0xf0,0x55,0x8c,0x9c, +0xdc,0xfd,0x19,0x5b,0xb2,0x84,0x7b,0x03,0x20,0x22,0xc2,0x5d, +0x57,0xc4,0x2a,0x0b,0xbf,0x08,0xa0,0xd6,0xf2,0x22,0xda,0x5b, +0xcb,0x4e,0xec,0x14,0xd5,0xd8,0x11,0xf9,0x1d,0xdf,0x36,0x56, +0x19,0xb0,0xf6,0x68,0x72,0x46,0x6e,0xc8,0xa5,0x56,0x1d,0xad, +0x68,0x1b,0xd6,0xa1,0x22,0x7a,0x12,0x9a,0x13,0x17,0xf7,0x65, +0x6e,0xce,0x21,0x34,0xae,0x3b,0x58,0xd7,0x5c,0xd7,0xc0,0x82, +0x06,0xf3,0x8a,0xae,0x25,0xbc,0x5f,0xd2,0x69,0x6a,0x7d,0x10, +0xdf,0x59,0x80,0x69,0x60,0xae,0xd5,0x37,0xc1,0x28,0xb5,0x93, +0x6f,0x82,0x29,0x9a,0xf7,0xd0,0x0b,0xa2,0x44,0xa2,0x86,0xe7, +0xc3,0x45,0x2a,0x91,0x4f,0x5c,0xf7,0xc1,0xfc,0xd3,0x81,0x48, +0xed,0xc1,0xa4,0xf2,0x08,0xf1,0x85,0x30,0xde,0x97,0x01,0x4f, +0x6f,0xb3,0x31,0xa9,0x7c,0x57,0x24,0xa2,0x1d,0x8f,0x4b,0xa7, +0xa8,0x06,0x8e,0xc8,0xef,0x13,0x56,0xbb,0x68,0x4d,0x4b,0xce, +0x38,0x13,0x72,0xb9,0x95,0xeb,0xbe,0x98,0x1e,0x92,0xfe,0x27, +0x2e,0x11,0xad,0xc7,0x0b,0x0f,0x83,0x87,0x8c,0xd5,0x77,0xc5, +0x82,0xc2,0x41,0x4a,0x7d,0x2f,0x8c,0xe9,0xf8,0x42,0x46,0x18, +0xc2,0x18,0x05,0x84,0x2e,0xdc,0x46,0x43,0x73,0x6c,0x4b,0xa6, +0x07,0x36,0x50,0xb9,0xc2,0x71,0x5e,0x83,0xce,0xc5,0xeb,0x2a, +0x09,0xcc,0x66,0xa0,0x7e,0x93,0xcb,0x44,0x70,0x2f,0x30,0x3b, +0x81,0x0a,0x1c,0x6f,0x08,0xcf,0x08,0x90,0x25,0x7f,0xf8,0x52, +0x86,0x38,0x94,0xe7,0x34,0x23,0xd5,0xfa,0x65,0xee,0xf1,0xaf, +0xee,0xe5,0xf6,0x68,0xe4,0x18,0x61,0x6d,0x18,0xd3,0x33,0xbc, +0x7e,0x4c,0xce,0x1d,0xc7,0x47,0xf8,0xf8,0x27,0xf6,0x69,0x1e, +0x38,0xa6,0xc0,0x06,0xe6,0x5e,0x15,0xfb,0x1d,0xff,0xfa,0x4d, +0x46,0xa9,0x77,0x01,0xc7,0x38,0xfd,0x9d,0x4b,0xa0,0x16,0x59, +0x2c,0x18,0x2c,0x47,0x46,0xaa,0xf8,0x6b,0xa4,0xaf,0x04,0xe3, +0x5b,0xd7,0x85,0xfd,0x55,0xf8,0x02,0x7f,0x9c,0x06,0x22,0x78, +0x21,0x98,0x85,0xea,0x55,0x32,0x50,0x7f,0xe1,0x17,0x10,0xc1, +0x38,0xfa,0xba,0x99,0x18,0x81,0xe3,0xa9,0xc2,0xa0,0x48,0x35, +0xe6,0x9a,0x05,0xeb,0xca,0x59,0x22,0x14,0x69,0xe5,0x99,0x9f, +0x81,0xb4,0x39,0xf0,0xe6,0x24,0x23,0xcb,0xfa,0x49,0x66,0xc6, +0xf5,0xeb,0x19,0x7d,0x5f,0x71,0xf4,0xb6,0x9a,0x17,0xc1,0xbc, +0xab,0x06,0xcd,0xe6,0x16,0xde,0xe5,0x16,0xfa,0x5c,0x37,0x63, +0x23,0xb0,0x2f,0xb5,0xd0,0x29,0x52,0x45,0xe9,0x16,0xfa,0xca, +0x25,0xec,0x99,0xe4,0xd0,0x5a,0x26,0x26,0x96,0x4a,0xba,0x44, +0xaa,0xce,0xd7,0x64,0x37,0x17,0xf4,0x20,0x2b,0x3a,0x31,0xfe, +0x1e,0xc8,0xba,0xea,0xeb,0x56,0xff,0x1e,0xa2,0x9c,0xfa,0x7a, +0xee,0xbf,0x85,0x30,0x95,0x32,0xe6,0x80,0x2c,0x03,0xf9,0x2f, +0xa8,0xee,0x09,0x9c,0x90,0xe5,0xd5,0xd7,0x79,0x3a,0x41,0x95, +0xd9,0x13,0x73,0x19,0x30,0x5f,0xc5,0xdc,0x6c,0xa6,0x37,0x9e, +0xe9,0x1d,0x7a,0xdd,0x9c,0x1e,0x81,0x63,0xa8,0xc5,0xd8,0x48, +0x35,0x54,0xd3,0x3b,0x95,0xe8,0x95,0xc7,0x55,0xd0,0x10,0x06, +0x9a,0xc1,0x40,0x13,0xae,0x9b,0xef,0x44,0x10,0x5f,0x0c,0x96, +0x83,0x23,0xd5,0x1b,0x1a,0x68,0x9e,0x19,0xc0,0x51,0x2c,0x7a, +0xae,0xa0,0x51,0x7c,0x1b,0xe4,0x1a,0xcc,0x6c,0xc3,0xa4,0x3d, +0x85,0x91,0x23,0x8b,0xea,0x31,0x69,0xcb,0x08,0x58,0x5a,0xf1, +0xf1,0x32,0x17,0xf0,0x87,0x78,0xbc,0xf3,0x33,0xe7,0xe6,0xb8, +0xa0,0xeb,0x7f,0x31,0xdb,0xa6,0x37,0x55,0x88,0x31,0xa4,0xa8, +0xfe,0x39,0x96,0x44,0x5b,0xf5,0x26,0x28,0x84,0xff,0x74,0xd8, +0x67,0xfd,0x22,0x37,0x87,0x6a,0xf4,0x6c,0xec,0x18,0x66,0x6d, +0xe4,0xaa,0xf1,0xa5,0xc3,0x4c,0x54,0x63,0x5c,0x9e,0xcf,0x71, +0x41,0x6b,0xea,0x48,0xf5,0x2f,0xb0,0xa4,0x08,0x58,0xcc,0xa8, +0xbe,0x90,0x25,0x1d,0x0a,0xa6,0x1b,0xbb,0xac,0x5f,0x9c,0xc9, +0xfe,0xea,0xde,0x99,0x5e,0x8d,0x1d,0xa3,0x84,0x67,0x1f,0x30, +0x3f,0x27,0x21,0xcc,0xee,0xd0,0x09,0x0b,0x2d,0xaa,0xfb,0xea, +0x89,0xf6,0x87,0xfe,0xba,0xac,0xca,0x6b,0x6a,0xbc,0xd3,0x5f, +0xbb,0x44,0x77,0x15,0xba,0x56,0xdc,0xb3,0x52,0xd7,0x8a,0x7b, +0xfa,0x9b,0x76,0x9c,0x94,0x75,0x9f,0x41,0xff,0x8c,0xef,0x89, +0xa0,0x99,0xec,0xfe,0x1c,0x17,0xb4,0x13,0x01,0xfd,0x01,0xed, +0x3f,0x34,0x92,0x36,0xdd,0x6f,0xbb,0x26,0x66,0xb7,0xf5,0xce, +0x19,0xea,0xf7,0x99,0x1e,0x0d,0x1d,0xaf,0x5b,0x1b,0x46,0xf7, +0x08,0xaf,0x1f,0x7d,0xfc,0x8e,0x43,0xbe,0xa7,0xca,0x3d,0x00, +0x67,0x65,0xaa,0xd6,0x45,0x25,0x83,0x1c,0x84,0xb9,0x8f,0xd9, +0xd9,0x39,0x2e,0xe8,0xa0,0xde,0x86,0x93,0xf8,0x44,0xcd,0x86, +0xfc,0xb7,0x5c,0x0e,0xcb,0x4b,0x3f,0x75,0x58,0x5e,0x1a,0x83, +0xf3,0x78,0xa5,0x9b,0x13,0x06,0xf2,0xc5,0xf7,0xd2,0x7c,0xf1, +0x7d,0xab,0x76,0x58,0xfe,0x23,0xdf,0x7b,0x2f,0x8d,0x25,0x84, +0xff,0x24,0xd0,0xce,0xb1,0x6b,0x92,0xf0,0x58,0x0a,0x66,0xfe, +0xb7,0x7c,0x65,0xbd,0x34,0x5f,0x59,0x2f,0xa7,0xbd,0x92,0xff, +0xc8,0x17,0xa3,0x4b,0x63,0xa0,0x7e,0x16,0xe4,0x4f,0x25,0x45, +0x5e,0xc9,0x6b,0xfe,0x85,0x4d,0x91,0xff,0x90,0xef,0x39,0x97, +0x66,0x6f,0xe4,0x6e,0xec,0x8d,0x5c,0x1d,0x83,0x8a,0x79,0x66, +0x2c,0xc6,0x80,0x7c,0x8d,0xf7,0x43,0xfe,0x63,0x03,0x7d,0xa9, +0xdc,0xd7,0x1a,0xc3,0x7e,0xc8,0x5d,0xf4,0x93,0xea,0xad,0x3d, +0x95,0x3f,0x96,0xa5,0xcb,0xe5,0x3d,0x5b,0xd5,0x13,0x86,0xf0, +0x55,0xf3,0xd2,0x7c,0xd5,0xbc,0x1f,0x7b,0x1f,0xff,0xab,0xc0, +0xa3,0xd9,0x41,0xf9,0x5f,0x04,0x5e,0xc2,0x3e,0xcc,0x89,0x48, +0x2e,0x65,0x22,0xc7,0x53,0x69,0xfe,0x17,0xc5,0x34,0xca,0x0a, +0xec,0xd9,0xfc,0x5f,0x16,0xe3,0x3d,0xf6,0x77,0xfe,0xaf,0x8b, +0xbf,0xd2,0x5e,0xd0,0xff,0x65,0xf9,0x18,0xf6,0x8d,0x5e,0x3c, +0xda,0x1e,0xfa,0x9d,0x51,0xd1,0x68,0x0f,0xd5,0xa3,0x3d,0x55, +0x0f,0xd8,0xfd,0xe2,0x01,0xc5,0x48,0xed,0xea,0xfc,0x47,0xbe, +0x47,0x5d,0x1a,0xfd,0xf5,0xf3,0x9d,0x20,0x2c,0xad,0xbd,0x85, +0xd7,0x94,0x89,0xbc,0x31,0x19,0x98,0x17,0x83,0xdd,0x9a,0xc0, +0x5e,0xc9,0x09,0x33,0x5a,0xf3,0xcc,0xd1,0x6d,0x78,0x1c,0xf0, +0x11,0x10,0xd8,0x98,0x3f,0x53,0x38,0x4a,0xdf,0xef,0x7e,0xcb, +0x75,0xbf,0xbb,0xb4,0xcb,0x65,0xb9,0xab,0xed,0xe2,0xfd,0x6b, +0x4e,0x18,0xcc,0x2e,0xcb,0x4b,0xa3,0xdd,0xaa,0xe6,0xe3,0xc9, +0x65,0xff,0xa6,0xbb,0x7b,0xb4,0x37,0xf3,0xbf,0x46,0x9f,0x02, +0xf6,0x68,0xfe,0x9f,0x09,0x1c,0xc6,0xee,0xce,0xcd,0xf7,0xcd, +0xd9,0x86,0xec,0x8e,0x33,0x6f,0x99,0xef,0xb6,0xc0,0x91,0xd8, +0xd3,0x22,0x1c,0xbd,0x41,0xc1,0x72,0x63,0xaf,0xf5,0x0e,0x71, +0x8c,0xaf,0x72,0x69,0xe7,0x0c,0x67,0x8e,0x51,0x5f,0x73,0x8c, +0x2d,0xf8,0x70,0x0f,0xe4,0xbf,0x0b,0xe6,0x77,0x6a,0xf0,0x60, +0x4e,0xfc,0xac,0x7e,0x2e,0x3c,0xcb,0x89,0x9f,0x28,0x71,0x5e, +0x17,0x85,0xe3,0x0d,0x67,0x01,0xa9,0xc6,0x5b,0x01,0xe7,0xdc, +0x32,0x13,0x5b,0x60,0x2f,0xec,0x61,0x91,0x2f,0xcc,0xa8,0x73, +0x11,0xbd,0x4b,0x09,0x3f,0x27,0x48,0xdf,0xef,0x2e,0xcb,0x97, +0x57,0x97,0x51,0x9e,0xef,0x19,0xdb,0xad,0x9f,0xe5,0x66,0x11, +0x9a,0xde,0x4d,0x1d,0x63,0xad,0x4d,0x63,0x7a,0x13,0x9a,0xac, +0xcf,0x1c,0x64,0x80,0x9e,0x49,0x75,0x35,0xd1,0xe7,0x96,0xd9, +0xef,0x7f,0xd4,0x44,0x1d,0xf5,0x88,0x5f,0x6a,0x7a,0xac,0x06, +0xe5,0x86,0x07,0x84,0x2d,0x02,0xee,0xe1,0x63,0xed,0x4e,0x79, +0xf5,0x75,0x8b,0x72,0x93,0xd3,0x38,0x2b,0xff,0x25,0x15,0xbd, +0xae,0xc8,0xc5,0xb2,0x72,0x97,0xc3,0x8c,0xdf,0xb0,0xdf,0x55, +0x73,0x4c,0x6b,0x1c,0x5e,0xce,0x22,0x2d,0x09,0xaf,0x5c,0xc2, +0x17,0x4a,0x21,0x34,0x6b,0x46,0x63,0x6b,0xbb,0xdd,0x54,0xc2, +0x1f,0x9f,0x5c,0x92,0xee,0xab,0xca,0xe0,0xd5,0x65,0x46,0xb6, +0xf5,0x93,0x8c,0x8c,0xeb,0xd7,0x78,0x83,0xf6,0xb2,0xbe,0xd2, +0xb7,0x6f,0x64,0x44,0xdf,0x8c,0x4f,0x1c,0xe6,0x37,0x2a,0xd6, +0xe5,0x66,0x99,0x50,0xbc,0x6a,0xfc,0x8a,0x6d,0xaf,0x9a,0x51, +0xad,0xb1,0x7b,0x59,0xcb,0xaf,0xd3,0x5b,0x9e,0xad,0xe0,0x6a, +0xac,0x24,0x96,0xbc,0xdd,0x8c,0x54,0x84,0x97,0x6f,0x5f,0x95, +0xde,0xcb,0xcb,0xe0,0xb5,0x79,0x22,0xb4,0x1d,0x98,0x8d,0xf0, +0x20,0xbb,0x22,0x5f,0xce,0x81,0x63,0xbe,0x6e,0xe5,0x4a,0x55, +0x62,0x09,0xc5,0x29,0x12,0x40,0x2c,0x89,0xca,0x42,0xbe,0x9b, +0x96,0x44,0x65,0x41,0x56,0xd6,0x92,0xa8,0xac,0x06,0x62,0xb7, +0xcb,0x65,0xc1,0xec,0xc1,0x92,0xc8,0xe5,0x76,0x99,0xf0,0x0f, +0x15,0xb6,0x48,0x90,0xa7,0x54,0x20,0x19,0x30,0xc1,0xab,0xc1, +0x7c,0x5d,0xf5,0x28,0xf6,0xbb,0x4c,0xa5,0xc3,0x89,0xba,0x6e, +0x57,0xcd,0x0e,0xc2,0x3b,0x16,0xe4,0x3a,0x16,0x37,0x05,0x0f, +0x78,0xac,0x76,0x09,0x1b,0x29,0xb2,0x5e,0xf8,0x68,0xd9,0x9f, +0x61,0xbb,0x5e,0x35,0xdb,0x6b,0xd8,0x8d,0x2c,0x6d,0x54,0x20, +0x1f,0x9f,0x46,0x75,0x96,0x51,0x18,0xa0,0xff,0x58,0xb0,0x8f, +0xf4,0x17,0x21,0x89,0xb0,0x03,0x7f,0xd8,0xa3,0x1d,0xdf,0x7b, +0x60,0x54,0xb4,0xe4,0x27,0x33,0xfc,0x87,0x8b,0xdd,0x45,0xc8, +0x5c,0x30,0x9f,0xe0,0x02,0x01,0x79,0x50,0x89,0xe6,0x77,0x37, +0xe0,0x0b,0x34,0xbf,0x56,0xdc,0x8c,0xd3,0x65,0x12,0x48,0x6f, +0xf5,0xa4,0xf0,0x7b,0x90,0x0e,0xf8,0x8d,0x12,0x67,0x39,0xf1, +0x2b,0x25,0xce,0x73,0x82,0x46,0xe7,0x1a,0x2d,0xab,0xa7,0x4e, +0xbd,0xd1,0xc7,0xd5,0xba,0xdf,0xd3,0xd6,0x7d,0x0c,0x19,0x62, +0x92,0x3e,0x1e,0x82,0x21,0x22,0xd0,0x02,0x5a,0xf2,0xb1,0x04, +0xb8,0x4b,0x72,0xec,0xab,0xdc,0x9e,0x0d,0x58,0x02,0xc4,0x08, +0x77,0x7f,0x30,0x5b,0xa9,0x21,0xda,0xeb,0x37,0xbe,0x8c,0x51, +0x31,0xd4,0x86,0x87,0xfe,0xc3,0x6d,0x78,0x32,0x15,0x6f,0xe2, +0xe9,0x54,0xc8,0x9f,0xc2,0x4a,0xf1,0xea,0x6b,0xfc,0x12,0x2a, +0x54,0xf9,0x09,0xe6,0x78,0x6f,0xaa,0x76,0xd3,0xf8,0x3c,0x6a, +0xf5,0x35,0x8b,0x0a,0x95,0xa5,0x39,0x4f,0x9e,0x53,0xdb,0xd7, +0x71,0x5e,0xa2,0xce,0xf3,0x23,0xc9,0x80,0xee,0x57,0xcc,0x31, +0xdc,0xed,0xd2,0x96,0x53,0xaf,0x77,0xd9,0xd9,0xb2,0x78,0x01, +0xd9,0x79,0xce,0x6f,0xe5,0xee,0x3a,0xbd,0xab,0x0c,0x1e,0x7d, +0x60,0xe4,0x68,0x06,0x7f,0x2d,0x93,0xd6,0x4f,0x4f,0x51,0xb1, +0x27,0x7c,0xc3,0x8f,0x6c,0xac,0xb0,0x3e,0x64,0xc3,0xc2,0x8f, +0xe6,0xaf,0x73,0xc8,0x5d,0x2a,0x6d,0x36,0x37,0x1c,0x4b,0x0d, +0x97,0x7a,0x62,0xc8,0x92,0xb5,0xaf,0x98,0x6d,0xa3,0xca,0x62, +0x79,0x4b,0xd6,0xc8,0xae,0xdb,0xda,0x14,0xaf,0xa4,0x60,0x5e, +0x96,0x9f,0x9d,0xdd,0x7b,0x61,0x67,0x19,0xcc,0xfc,0xd2,0xc8, +0x12,0xfe,0xef,0x40,0x6f,0x5e,0x8f,0x11,0xad,0xf4,0x7a,0x6c, +0xf9,0xc8,0xa0,0xa1,0x72,0xb3,0x2e,0x59,0xb3,0xf8,0x83,0x0f, +0x42,0x36,0xbf,0xbd,0x71,0xde,0x7a,0x87,0x7c,0x49,0x19,0xb4, +0xd2,0xe0,0x77,0xc0,0x30,0x67,0x83,0x56,0xae,0x54,0x13,0x67, +0x83,0xb9,0x3a,0x25,0xcf,0xa8,0x91,0xb4,0xd2,0x3e,0x02,0x79, +0x41,0x6d,0x4d,0xe0,0x04,0x36,0x76,0x36,0xc8,0xd3,0x09,0x02, +0xe2,0x95,0x46,0x65,0xa5,0x55,0x48,0x36,0x93,0x37,0x9d,0xc8, +0x2b,0x2b,0x3d,0x85,0xa1,0x20,0x51,0x8d,0xa2,0x85,0x56,0xe2, +0x0a,0xd0,0xde,0x4b,0x25,0x35,0xa6,0xdc,0x3d,0xa8,0x72,0x85, +0xd6,0x97,0xd7,0x87,0x30,0x40,0xf9,0xb7,0xd1,0x0d,0x58,0x9c, +0x75,0x96,0x6b,0x18,0x1c,0xac,0x5e,0x99,0xa7,0x61,0xaa,0x5e, +0xa1,0x75,0x45,0x30,0x83,0x55,0x89,0xce,0x7c,0xd7,0xec,0x2b, +0xe3,0x53,0x51,0xd6,0x07,0x64,0xfb,0x39,0x8e,0xe6,0x85,0x85, +0xe0,0xf4,0x90,0x8b,0x85,0x23,0x01,0xcc,0x96,0x2a,0xab,0xb0, +0x37,0xed,0x85,0xab,0x60,0x56,0x52,0xb9,0xf7,0x01,0x6f,0xc0, +0x4c,0x67,0xab,0xcb,0xae,0x9c,0x76,0xea,0xe8,0x45,0xae,0xfc, +0xb5,0xf1,0x89,0xae,0xdc,0x61,0x8e,0xe3,0x95,0x55,0x5c,0x77, +0x91,0xae,0x5b,0x4b,0x1d,0x71,0xae,0x27,0xc8,0x6b,0x10,0xa5, +0xfa,0x16,0x0e,0xe7,0x2b,0x62,0xde,0xc6,0x0d,0xab,0x6c,0x9f, +0xfc,0xf9,0xc5,0x7b,0x21,0xc2,0xff,0x04,0x84,0x7f,0xde,0x5e, +0x76,0x98,0xeb,0x68,0xa5,0xac,0x75,0xc0,0x69,0x95,0x53,0x85, +0x75,0x3b,0xdc,0x46,0xb3,0x90,0x16,0x54,0xa7,0xe9,0x20,0xac, +0x9d,0x01,0xdd,0x45,0xf0,0x40,0x50,0x03,0xdd,0xe4,0x08,0x3e, +0x9c,0x3a,0x87,0xa9,0x16,0x79,0xa3,0x93,0x21,0x87,0xba,0x7e, +0xf1,0xf5,0x0f,0xeb,0x21,0xb6,0x99,0x09,0xca,0xdc,0xa0,0x0e, +0xb3,0x9f,0x6b,0x9f,0x0d,0xf0,0xad,0x55,0xba,0xa7,0x7c,0x9a, +0xfb,0x30,0xe4,0xd7,0x6a,0xe7,0xd1,0x86,0xf6,0x6a,0x1d,0xcb, +0x57,0xbb,0x1d,0x2d,0x2d,0xb3,0x1d,0x35,0x9d,0x77,0x68,0x7a, +0x65,0xaa,0xb1,0xc6,0x7a,0xfe,0xcc,0x81,0xef,0xbe,0x3d,0x3b, +0xa4,0xa3,0x63,0xa6,0xb5,0x63,0xe7,0x21,0x75,0x6a,0x47,0x1f, +0x38,0xef,0x30,0x27,0xab,0xe3,0x2e,0x07,0xd7,0xb8,0x07,0x23, +0x45,0xf0,0x20,0x7e,0x6c,0x1b,0x26,0xf9,0x23,0xc6,0xe7,0xf0, +0xa9,0xb3,0x49,0xfe,0x59,0x9d,0x3a,0xeb,0x6c,0x9c,0x9f,0xa6, +0x53,0xe6,0x2e,0x35,0x2d,0xff,0x23,0xc8,0xef,0xc9,0xe6,0xcb, +0xc1,0xfc,0xde,0x9c,0x3a,0xe7,0x6c,0x2c,0x2c,0x36,0x78,0xea, +0xeb,0xb9,0x2e,0x98,0x77,0x54,0x1d,0xe1,0x3e,0x85,0x26,0x61, +0x21,0xc8,0xb9,0x54,0xe3,0x6d,0x4a,0xbe,0xcd,0xaf,0x0d,0x32, +0x9f,0xf7,0xc3,0x4c,0x80,0xb1,0xaa,0x86,0x0c,0xd6,0x85,0xa6, +0x53,0xf5,0xca,0xc7,0xe7,0x0b,0x65,0x3f,0x55,0x2b,0x7f,0x01, +0x75,0x70,0x1e,0x7c,0x67,0xfd,0x25,0xe5,0xca,0x99,0x87,0x21, +0xbf,0x85,0x9f,0x23,0xd9,0xe2,0x17,0xde,0xa9,0x5c,0x58,0x5e, +0xf4,0x6f,0xb3,0x1d,0xd5,0xe3,0x20,0xf1,0x94,0xb3,0x3f,0x1f, +0x41,0x2c,0x11,0xa1,0xfd,0xe0,0xb6,0xea,0xed,0x0c,0xa5,0x1a, +0xad,0xfe,0x5d,0x0d,0xe5,0x2f,0xf7,0x31,0xb0,0x29,0xd5,0x56, +0x59,0x8d,0xa0,0x5b,0xc2,0x37,0x0c,0x9d,0xfb,0x03,0x41,0x9f, +0xd5,0xd0,0x9d,0xcb,0x55,0xcb,0x8b,0x21,0xe8,0x9a,0xc2,0x77, +0x0d,0xc3,0xef,0xa1,0xf1,0xbb,0x90,0xb3,0xff,0x8b,0xcf,0x73, +0x86,0x76,0xa0,0xf1,0x6b,0xdf,0x73,0x68,0x93,0xc6,0x3d,0xf7, +0x5f,0x74,0x98,0x9f,0xaa,0x23,0xf2,0x3d,0x10,0x96,0x1f,0xe1, +0x96,0x08,0x4e,0x22,0x5e,0x8f,0x8f,0xd8,0x8b,0xb1,0xb0,0x14, +0x00,0x9e,0x51,0xa5,0xe4,0x2b,0x20,0x6b,0x39,0xc3,0xf2,0xf9, +0xec,0xf1,0x73,0xd2,0xe3,0x9d,0x61,0xce,0x9f,0x74,0xd2,0xcc, +0x57,0xe3,0x9d,0xbf,0xd0,0x9c,0xa7,0xc1,0xaf,0x04,0x64,0x9a, +0x6a,0xa7,0x1a,0x05,0xa2,0xcc,0x69,0xc0,0x6b,0x9f,0x89,0xe0, +0xa1,0x64,0xe5,0x3b,0xc3,0x84,0xa5,0x0c,0xe0,0x62,0xf8,0x85, +0x5b,0xa1,0xaa,0xf9,0x93,0xa9,0xdd,0xc7,0xf0,0x13,0xc3,0x77, +0x56,0x61,0xc2,0xfd,0x4d,0xa2,0xbd,0x32,0xfc,0x64,0x74,0x9b, +0xdd,0x66,0x6e,0x8b,0x79,0x1e,0x5f,0x73,0x27,0x4e,0x7e,0x1f, +0xf2,0x73,0x78,0xae,0xee,0x44,0x4c,0xc5,0x9a,0x79,0xaf,0x52, +0x27,0x6a,0x39,0x67,0x81,0x0a,0x90,0xdb,0x8c,0xd5,0xd6,0xf3, +0x39,0x7b,0xbf,0xfc,0x22,0x67,0x78,0x47,0x47,0x9c,0xf0,0x7f, +0x9b,0x2d,0x8f,0x1d,0xf9,0x64,0x82,0x96,0x28,0xc9,0x56,0xc1, +0x2e,0xa7,0x3f,0xa8,0x2e,0xf0,0x15,0x63,0x5b,0xad,0x2a,0xf0, +0xa5,0x15,0x1f,0x3f,0x50,0x2d,0x44,0xf0,0x12,0x62,0x91,0xaf, +0x16,0xbc,0xce,0xb4,0x3c,0x11,0xc1,0xa4,0x89,0x77,0x72,0x56, +0x2a,0xe8,0xad,0xeb,0x7d,0xa7,0xba,0x16,0x18,0x4f,0xab,0xad, +0x55,0x95,0xd5,0x5a,0x28,0xcc,0x00,0xac,0xc6,0x4e,0x30,0x86, +0xc3,0x1a,0x35,0xd0,0xe5,0x39,0x17,0xab,0x49,0xe0,0x0c,0xf3, +0x3c,0x2d,0x5a,0xed,0x3a,0x17,0xc3,0x7e,0x53,0x27,0x78,0xe5, +0x5a,0x57,0x7e,0x76,0x86,0x46,0x3e,0xec,0x3c,0x96,0xc2,0x90, +0xb0,0x8e,0xe5,0xaa,0x7f,0xa6,0x57,0x6e,0x0d,0x7c,0x05,0x36, +0xc9,0xda,0x65,0xd4,0x58,0xbd,0x7a,0xcf,0x9d,0x3b,0xf0,0xdd, +0xfd,0x73,0x43,0x3a,0xf1,0xea,0xed,0x34,0xa4,0x56,0xed,0x4e, +0xbc,0x7a,0x37,0xa9,0xe3,0x2e,0xbf,0xb9,0x58,0xed,0x8e,0x08, +0x8e,0x05,0xf3,0x05,0x55,0x55,0x7b,0xca,0x25,0xfc,0x20,0xc7, +0xc0,0xf7,0xce,0x26,0xce,0x26,0xcf,0x7e,0x9a,0xe9,0x6a,0x9a, +0xb3,0x29,0x48,0x0f,0x30,0x2f,0xab,0xc3,0x4e,0xc9,0xa9,0x4f, +0x9d,0x8d,0x9d,0xa9,0xae,0x4f,0x35,0xca,0x1f,0xac,0xbe,0x94, +0xf5,0x09,0x65,0xf9,0x69,0xa8,0xd2,0xaa,0x0e,0x6e,0x01,0x61, +0x94,0x03,0xb9,0x54,0x4d,0x75,0x96,0xa0,0xdd,0xed,0xcd,0x41, +0x95,0x8e,0x68,0x07,0xb8,0xd4,0xa7,0xba,0xdc,0xea,0x58,0xa5, +0xbf,0xab,0x50,0x51,0x86,0xb2,0x15,0x4c,0xe5,0x9a,0xd2,0x70, +0x36,0xc0,0xe4,0x67,0x30,0x72,0x94,0xaa,0xa5,0xc6,0x40,0x7e, +0x80,0xfc,0xdc,0x90,0x16,0xe1,0x4b,0xd6,0x84,0x05,0xc7,0xd6, +0x60,0xe6,0xb1,0x5c,0x78,0xdf,0x81,0x9a,0x98,0x60,0xc5,0x7e, +0x38,0xb2,0xd0,0xb3,0x08,0xc6,0xaa,0x61,0xac,0x45,0x30,0xc9, +0x0c,0x53,0x83,0x60,0xe4,0x6d,0xcc,0xd1,0x0c,0xaa,0x3e,0x07, +0xc4,0xba,0x71,0x1f,0xf2,0xfd,0x4d,0x8b,0xf1,0x87,0xf5,0xd6, +0xd6,0x3d,0xe9,0x27,0x89,0xc7,0x9c,0x84,0xae,0x7b,0xfa,0xdd, +0x1a,0xef,0x08,0xc5,0x71,0x75,0xb8,0x62,0x9c,0xb1,0xca,0x9a, +0x73,0xfe,0xa8,0xac,0x2d,0x6b,0x5f,0x88,0xed,0xe9,0x88,0xb7, +0xf6,0xec,0x30,0x70,0x0c,0x1c,0xc9,0x71,0xfc,0x2c,0xca,0x1f, +0x84,0x7a,0xdc,0x62,0x14,0xda,0xc7,0x81,0xf3,0x43,0x22,0x48, +0xf5,0x12,0xde,0x0e,0x4e,0x4a,0x27,0xa6,0x3c,0xd1,0x89,0xaf, +0xf0,0xfa,0x05,0x5d,0xe8,0xa1,0x7a,0x5d,0xe6,0x84,0xd9,0x17, +0xed,0x85,0xef,0xeb,0xb2,0x7e,0x02,0x16,0xba,0x28,0xf9,0x0a, +0x4f,0x5f,0x64,0xba,0xbf,0x34,0x48,0xfc,0x32,0xdd,0xee,0x38, +0xb6,0x3c,0xa3,0x5f,0xc6,0x74,0xd7,0x62,0x2c,0x67,0x31,0x5d, +0x33,0xc7,0x7a,0x64,0xdc,0xe2,0xa5,0xc2,0xae,0x4c,0xb8,0xbb, +0x21,0x5f,0xb0,0xde,0xdc,0xb6,0xe7,0xd8,0x49,0xe1,0x1f,0x49, +0x84,0xf7,0xbf,0x39,0xce,0x81,0x2f,0xe0,0x38,0xed,0x35,0x96, +0xf8,0x63,0xbc,0x28,0x95,0x0d,0x75,0xa9,0xf6,0x9b,0xe8,0xef, +0xfc,0x95,0x71,0x36,0xc0,0x3f,0x0a,0x07,0xe8,0x56,0xcc,0xe6, +0x58,0x51,0x58,0xab,0x72,0xe6,0x14,0xf4,0x37,0xba,0xc8,0x5d, +0xa7,0xf9,0x90,0xbf,0x03,0xb1,0x51,0xfb,0x61,0x3e,0x98,0xb6, +0xfc,0x0a,0xc2,0x7b,0x20,0x87,0xbe,0xed,0x60,0x5a,0xea,0x08, +0x8f,0x68,0x90,0x2f,0x08,0x77,0xd2,0x18,0x2e,0xc8,0xea,0x04, +0x73,0x10,0x30,0x5d,0xc0,0x35,0x4a,0x91,0x12,0x3b,0xcd,0xe8, +0x64,0x5a,0xd1,0xfd,0x26,0xfb,0x78,0x3d,0xc7,0x3e,0x5e,0x1d, +0xe3,0xa0,0x70,0x27,0xe0,0x5e,0xe1,0xb5,0xb6,0x38,0x71,0x0e, +0x9c,0x2b,0x01,0x27,0x09,0xf7,0xd4,0xa2,0x04,0x71,0x2a,0x8d, +0x60,0x1e,0x21,0xb0,0x22,0xdc,0x64,0x5d,0x0b,0xf0,0x9c,0xe4, +0xeb,0x69,0x6d,0x00,0xb3,0x0a,0xeb,0x42,0xcd,0x82,0x49,0xf0, +0xbd,0xd5,0x57,0xd8,0xd3,0x00,0xe3,0x85,0xe5,0x35,0x57,0x4d, +0xa3,0xb3,0x69,0x6d,0x55,0x81,0x29,0xae,0x78,0xc3,0xb4,0x9c, +0xb5,0x3a,0x27,0xe2,0xd5,0xe9,0xfa,0xa0,0x7b,0x38,0x9e,0x33, +0xa4,0xed,0x87,0x13,0x8f,0x7e,0x10,0x9e,0x9e,0x50,0x3d,0xec, +0x41,0x37,0x69,0x2f,0xc3,0x2b,0xc8,0xf8,0x38,0x77,0xf7,0x77, +0xdf,0x9e,0x79,0xbd,0xbb,0x23,0xc1,0xda,0x35,0x7a,0x54,0x9d, +0xda,0x31,0xbb,0x4e,0x3a,0xe4,0x8b,0xaa,0x79,0x91,0x2b,0xd6, +0x52,0xb2,0xf1,0x7f,0x59,0xb1,0xd8,0x17,0x6b,0x29,0x19,0x2e, +0x42,0x1e,0x81,0xaa,0xf9,0x77,0xbe,0x58,0xe1,0x46,0xb1,0xa7, +0xd5,0x43,0xc2,0xfb,0x77,0xf6,0x03,0x79,0x03,0x46,0xab,0x7e, +0xc2,0xdb,0xae,0xcb,0xcc,0x18,0x3e,0xbd,0xe6,0x43,0xeb,0x52, +0xf2,0x35,0xe1,0x35,0x1b,0xc6,0xb8,0x0e,0xad,0x7b,0xc0,0xf0, +0xa2,0x43,0xeb,0x1e,0xec,0x70,0x54,0x1f,0x5a,0x3f,0xc5,0x13, +0x5c,0x83,0x9f,0x30,0xaf,0x77,0x06,0x12,0xe7,0x98,0xf2,0xd4, +0x25,0xa8,0xef,0x58,0x2e,0xad,0x21,0xbc,0x2e,0x81,0x76,0xfa, +0x6a,0x13,0x25,0x96,0x6a,0x80,0x48,0x5c,0xc8,0x27,0xcd,0xff, +0xa4,0xbc,0x37,0x14,0xb9,0xd7,0xfc,0x44,0x1f,0x36,0x3f,0xe7, +0x5e,0xf3,0x13,0xd7,0x61,0xb3,0xf0,0x05,0xc0,0x7d,0xb2,0xa6, +0x41,0x6a,0x4b,0xd6,0x77,0xdf,0x35,0xcd,0x20,0xc5,0xca,0xab, +0x59,0xdf,0xda,0xb5,0x6f,0xf7,0x96,0x5e,0x65,0x30,0x48,0x56, +0x32,0x8e,0xa7,0x6f,0xbb,0xfd,0x69,0xc6,0xb8,0x1e,0x8e,0x39, +0xd6,0x1e,0x7d,0xc7,0x35,0x6f,0xd6,0x6f,0xdb,0x71,0xc7,0x5d, +0xe5,0x30,0xae,0xca,0x8a,0x96,0xdb,0xcb,0xae,0x27,0x9f,0x16, +0x9e,0x39,0x30,0x1b,0x5b,0x22,0x49,0xba,0xa9,0xf8,0xbd,0xac, +0xf2,0x27,0xe7,0x9a,0x0d,0x9f,0x3a,0xd7,0xdc,0x2f,0xab,0x98, +0x02,0xee,0x2a,0xc1,0xce,0x35,0x85,0xc7,0x20,0x90,0x17,0x8b, +0xdc,0x6b,0x2e,0x76,0x9d,0x33,0x73,0x82,0xcf,0x98,0xf9,0xaf, +0x3e,0x5f,0x16,0xb0,0xb6,0xf8,0x70,0x99,0x93,0xfa,0x64,0x99, +0x13,0x45,0xc7,0xca,0xd6,0x13,0x80,0x07,0x64,0x65,0xdd,0xa8, +0x2f,0xfb,0x8f,0xd4,0x8d,0x3e,0xc0,0x37,0x71,0x1b,0xc9,0x87, +0x49,0x40,0x18,0x6b,0x88,0x52,0x75,0xa9,0xd4,0xf6,0x94,0x58, +0xe1,0x47,0x6a,0x7c,0x6f,0xdc,0xa6,0x3e,0x20,0xe1,0x72,0xa5, +0xe8,0xa8,0x39,0x28,0xc7,0x75,0xd4,0x5c,0xe4,0xcf,0xf1,0x53, +0xd7,0x49,0x33,0x15,0xeb,0x13,0x66,0x2e,0xe5,0x13,0xe6,0xa7, +0x4e,0x0e,0x07,0x22,0x6d,0x5f,0xdb,0xc3,0x33,0x4f,0x7e,0xac, +0x96,0x4b,0x3a,0x44,0x48,0xb5,0x98,0x2a,0x95,0x1f,0x46,0xcb, +0x90,0x32,0x64,0xd6,0x35,0x35,0x72,0xcf,0xa6,0xde,0x17,0xfe, +0x6f,0x40,0xad,0xce,0xa9,0xb9,0x0e,0x49,0x6a,0xe8,0x3f,0x75, +0x6e,0x38,0x50,0xce,0xf9,0x6f,0xda,0x78,0xea,0xd4,0x30,0x56, +0x4e,0x21,0x33,0xf5,0x87,0xd3,0x3f,0x3e,0xae,0x7e,0x9a,0xb4, +0xd8,0x90,0x6a,0x5d,0xaa,0x56,0x79,0xd8,0x85,0xeb,0xd5,0x90, +0x8d,0x8c,0xd3,0x67,0x53,0x49,0x71,0x19,0xd1,0x85,0xd8,0x57, +0x4c,0xe7,0x91,0x75,0x6a,0x77,0xde,0x43,0xd5,0xdd,0x55,0xa9, +0x7f,0x70,0x6d,0x18,0x2b,0x3b,0x0a,0xef,0x5d,0xa0,0x4a,0xff, +0x6b,0xd7,0x86,0xa2,0xc4,0x1f,0x30,0x41,0x45,0x16,0xae,0x02, +0x51,0xf2,0x7b,0x60,0xcf,0x84,0x91,0xb8,0x88,0x05,0xb1,0xd7, +0x4b,0xda,0x27,0x21,0x6e,0xd5,0xc9,0x41,0x2a,0x52,0x2d,0x22, +0xa9,0x80,0xe3,0xf5,0xcf,0xd7,0x54,0xa4,0xac,0xa5,0x3d,0x01, +0xc6,0xca,0x71,0x1a,0x85,0xb7,0x08,0x7c,0x42,0xfb,0xff,0xc3, +0x62,0x2f,0x7d,0xf2,0x07,0x50,0x87,0x6e,0x59,0x54,0xbe,0x59, +0x11,0xdf,0x06,0xe5,0xc3,0x9e,0xfa,0xa8,0xb4,0x31,0xbe,0x2e, +0x3c,0xcb,0x90,0xad,0xe6,0x03,0xd8,0xd6,0x32,0x59,0x86,0xb5, +0x98,0xbb,0x0d,0xcb,0xb1,0x9f,0xd9,0xbf,0xaf,0x20,0xdc,0x67, +0xb9,0x58,0xd7,0x71,0x21,0x56,0x82,0x08,0x29,0x07,0xf9,0x1e, +0x78,0x42,0x04,0x7b,0xbb,0x98,0xd5,0x21,0x01,0xab,0x5c,0xcc, +0x6a,0xbc,0xd1,0x59,0x4e,0xc0,0x52,0xd7,0x64,0x29,0x39,0xb3, +0x7e,0x7e,0x13,0x12,0xbc,0x13,0xce,0xf2,0x81,0x6f,0x2c,0xde, +0xd6,0xbc,0x6a,0xb7,0xb0,0xcc,0x77,0x25,0xd8,0x57,0x5a,0x7d, +0x34,0x84,0x78,0x4c,0xc2,0xaf,0x11,0x1f,0xe5,0x36,0x54,0x9e, +0x72,0xb7,0xe9,0x89,0x81,0x5f,0x59,0x72,0x55,0x65,0x03,0xab, +0xca,0xd5,0x7c,0x82,0xc1,0x6c,0x89,0x9b,0x7d,0xab,0x5e,0x41, +0x73,0xf8,0x5a,0x4e,0xd0,0x67,0xb9,0x5b,0x4c,0x47,0x51,0x7b, +0xee,0x13,0x8b,0x12,0x5e,0x1f,0x69,0x0e,0x36,0x5e,0x18,0x13, +0x8b,0x12,0x41,0xe5,0x8a,0x61,0x66,0x12,0xdb,0x23,0xea,0xdf, +0xd4,0x1e,0xe0,0x2c,0xd7,0xa4,0x45,0x26,0xb0,0x53,0x42,0x8b, +0x70,0x8f,0x06,0xfc,0x4d,0xae,0x01,0xcd,0x05,0x49,0xaf,0xab, +0x0e,0xc5,0xe8,0xf8,0xec,0x71,0x92,0xfc,0x68,0x53,0xd1,0xd9, +0x63,0x59,0x03,0x53,0x6e,0xf3,0xd9,0xe3,0x6a,0x39,0x0a,0xcc, +0xae,0x66,0x4d,0xe1,0x33,0x00,0x64,0x67,0x23,0x57,0x78,0x06, +0x41,0x8c,0x70,0x8c,0x22,0x66,0x2e,0x82,0x9b,0x92,0x56,0x12, +0x06,0x38,0x41,0xb6,0x31,0x84,0x6f,0x00,0x60,0xed,0x8e,0x19, +0x27,0x1c,0xd8,0x05,0x67,0xf1,0x41,0xde,0x9b,0xf8,0xc5,0x7d, +0xae,0xda,0x99,0x34,0xe6,0xef,0xf3,0x1e,0x7c,0x5f,0xf3,0x2a, +0x0e,0xc5,0xa1,0x35,0x5b,0xd7,0xac,0xf1,0x7d,0x1b,0x39,0xb4, +0x0c,0xd5,0x7a,0xc5,0x38,0x7e,0x3e,0x8d,0xc5,0xe1,0xf9,0x01, +0x3d,0x68,0x3d,0xf5,0xe8,0x18,0x3b,0x06,0x8e,0x1e,0xe7,0x06, +0xde,0x2a,0x3a,0x09,0x1c,0x07,0x78,0x85,0x0f,0xfd,0xbe,0xb8, +0xc0,0x09,0x67,0xb0,0x7a,0xed,0xb2,0xce,0xf9,0x0c,0x85,0x73, +0xc3,0xbf,0xa4,0xcb,0x7d,0x3c,0x9b,0x8d,0x33,0xc8,0x6c,0xdc, +0xd3,0xc2,0xa2,0x1c,0xf8,0x37,0x11,0xba,0x19,0x4e,0xbb,0xd5, +0xee,0x74,0xf0,0x7c,0x99,0xf7,0xad,0xa2,0xfc,0x7d,0x70,0xe0, +0x47,0x38,0x4c,0x84,0xa4,0xb8,0x1c,0xa5,0x8d,0x92,0x91,0x0c, +0x41,0xfb,0xa2,0x9d,0xc1,0xa5,0x0c,0xe8,0x30,0x39,0xe0,0x40, +0xb1,0x63,0xb4,0x51,0xb4,0x63,0x64,0xc8,0xe3,0x73,0xbf,0xff, +0x56,0xf5,0x3c,0xdb,0x9b,0x55,0x3b,0x96,0x2b,0xfb,0xb8,0x93, +0x6b,0x2f,0xb5,0x36,0xce,0x9f,0x3d,0x70,0x9f,0xd4,0x21,0xad, +0xcc,0x77,0x1a,0x5a,0xab,0x56,0xe7,0xfd,0xba,0xfa,0xc8,0x3f, +0xbb,0x46,0x1b,0x25,0xcb,0x89,0x90,0x27,0x80,0x23,0xd8,0x35, +0xda,0x2b,0xf4,0x9b,0x7a,0x91,0xc2,0xbe,0xcf,0x9a,0x6a,0xb5, +0xa8,0xf8,0x77,0x39,0xd5,0xc4,0xd9,0xfc,0xd9,0xef,0x5b,0x38, +0x9d,0xb4,0xa4,0x1e,0x5c,0x3d,0x9c,0x7e,0x3e,0xd4,0x87,0x5b, +0x4f,0x7f,0xaa,0xb2,0x04,0xfd,0xbc,0xc6,0xa4,0x1d,0x9d,0xbd, +0x2e,0xeb,0x52,0x59,0x63,0xac,0x4b,0xfa,0x92,0xb9,0x99,0x7f, +0x37,0xd1,0x98,0x87,0x3a,0x13,0x01,0x27,0xe3,0x58,0xd2,0x9d, +0x2a,0x82,0x5a,0xaf,0x3d,0x70,0x46,0xea,0x7e,0xfd,0xfa,0x6b, +0xd5,0x73,0xba,0x5f,0x9d,0xca,0x97,0x77,0xf5,0xab,0x96,0x8c, +0x30,0xce,0x9d,0x3d,0xf0,0xbd,0x08,0xe8,0x0e,0x43,0x6a,0xd6, +0xec,0x7c,0xe0,0x9c,0xc3,0x1c,0x87,0x23,0x85,0x57,0x27,0x3e, +0xf1,0x1b,0x25,0x07,0x15,0xd0,0x0c,0xd5,0x22,0x51,0x57,0x10, +0x0b,0x35,0x99,0x87,0x50,0x69,0x2f,0xed,0xd5,0xcc,0xb8,0xa8, +0xbd,0x9a,0x09,0xeb,0x94,0xa2,0x5e,0x10,0xe4,0x49,0x37,0x86, +0x29,0xb3,0xca,0x4a,0xd0,0x0e,0xdc,0x8a,0x76,0xe1,0xd3,0x0c, +0xe4,0x34,0xb5,0xc4,0x30,0xf7,0x9e,0x53,0x29,0xc2,0x77,0x1b, +0x70,0x4c,0x57,0xae,0xda,0x1e,0x5b,0x0b,0x6b,0xe0,0xbf,0x43, +0x02,0xbf,0xd1,0x1e,0xde,0x00,0xaa,0x8e,0x1a,0x49,0x0c,0xee, +0xf1,0x17,0x52,0x48,0x51,0xf5,0x0b,0x66,0x71,0x61,0x8d,0x51, +0xa0,0x78,0xd4,0x98,0x3a,0x70,0xd6,0xad,0x6e,0xf4,0xf1,0x3b, +0x65,0x52,0xad,0x77,0xce,0xe4,0x7c,0xf3,0xf5,0x99,0x9e,0x0d, +0xf9,0x3b,0x78,0x74,0x8f,0x7a,0x8e,0x1f,0xd5,0x7c,0xe1,0x63, +0x16,0xbb,0x41,0x8b,0x33,0x27,0x18,0x68,0x7f,0x5a,0xcf,0x2e, +0xed,0x8f,0x74,0x7b,0x61,0x5f,0xa0,0xbd,0x8c,0xac,0x8a,0x09, +0x06,0x57,0xaa,0xd7,0xf9,0xf8,0x1d,0x07,0x35,0x75,0x36,0xe7, +0x6b,0xdd,0x14,0x6e,0x51,0xfe,0xc5,0x3e,0xd0,0x68,0x87,0xcc, +0x37,0x64,0xa9,0xb0,0xcf,0xd9,0xe2,0x0f,0x6b,0x42,0x7a,0x73, +0xa9,0xa7,0x0d,0x95,0x72,0x28,0x7f,0xfe,0x16,0x2f,0x02,0xba, +0x02,0xa3,0xef,0x49,0x2d,0xe5,0xdc,0x71,0x98,0x19,0x6a,0x5c, +0xe1,0x23,0xae,0xdf,0x5b,0xd7,0x7f,0xdd,0x90,0xc1,0x8c,0x50, +0x13,0x12,0x8c,0x25,0x9f,0xd6,0x2f,0x49,0xf5,0x67,0x18,0x3b, +0xad,0x9f,0x9f,0xcd,0x26,0xc4,0xbd,0x9a,0x38,0x46,0x5b,0x1b, +0xbb,0x1a,0xf9,0xc2,0x61,0x3e,0xe0,0xcb,0xf9,0x79,0x50,0x78, +0x1f,0x54,0xdc,0x9b,0xc2,0xf2,0x19,0xc8,0xcd,0xaa,0xd5,0x0f, +0xec,0xc6,0x2c,0xce,0x8c,0xe2,0xdf,0xd8,0xdf,0xe9,0xc7,0xbe, +0xd4,0x7c,0xf7,0x83,0xfa,0x71,0xac,0xb0,0x2c,0x01,0x74,0xe0, +0xd5,0x82,0x1d,0x94,0xf3,0x0b,0xe5,0x54,0xe7,0x18,0x4a,0xfc, +0xc2,0xa9,0x2b,0x86,0xdb,0x4e,0x64,0x62,0x8c,0xac,0x39,0x2b, +0x65,0xc6,0xa2,0x99,0x09,0xc2,0x3f,0x1f,0xce,0xab,0x01,0x1d, +0x65,0xb7,0x39,0x56,0xf4,0xec,0xd6,0x1a,0xc3,0x31,0xc0,0x71, +0xa2,0xef,0x9d,0xbc,0x53,0x39,0xfb,0x8f,0xdb,0xe5,0x43,0xd5, +0x4a,0xf6,0x06,0xa7,0x3b,0xa8,0x27,0x93,0x45,0x60,0x0a,0xe9, +0x6d,0xea,0x49,0x3d,0x11,0x58,0xcb,0x95,0x28,0x3c,0x03,0xad, +0xd4,0xb9,0x82,0xcd,0xc0,0x61,0x88,0xe4,0x1d,0x69,0x35,0xf2, +0x43,0xe0,0x84,0x2b,0x92,0xf1,0x49,0x8c,0xb3,0xf8,0x16,0x81, +0x0f,0xe0,0x73,0x26,0x4e,0x94,0x27,0x72,0x48,0xe7,0x79,0x52, +0x4d,0x04,0x92,0x29,0xf5,0x1a,0xa5,0xde,0x70,0xf9,0x20,0xe4, +0x80,0x6c,0x0d,0x8a,0x09,0x5b,0x35,0x83,0xc3,0x7e,0xce,0x4c, +0x98,0xb7,0xc4,0x7d,0xc3,0x91,0x55,0x69,0xc2,0x7f,0x3c,0xcc, +0x25,0x45,0xaf,0x7b,0x6b,0x6c,0x80,0x81,0x4c,0xdc,0xd5,0x53, +0x39,0xfb,0x3e,0xb6,0xd7,0xc5,0xcb,0x86,0xf9,0x46,0x55,0x9a, +0xd7,0x37,0x57,0x74,0x32,0xa7,0x88,0x80,0x04,0x50,0x99,0x56, +0xdf,0x5a,0x80,0x33,0xb0,0x94,0x1c,0x1b,0xa1,0x92,0xae,0xcb, +0x29,0xb2,0x14,0xce,0xbc,0x2e,0x4a,0x4e,0x81,0x8e,0x78,0xbe, +0x70,0x30,0x87,0x93,0x1d,0x6f,0xe8,0x3c,0x73,0x43,0xc4,0x33, +0x38,0x0b,0x5e,0x23,0x8d,0x5d,0x94,0xea,0xc3,0xcf,0x4d,0xea, +0xd9,0x44,0xc5,0x50,0x30,0x07,0xab,0x6e,0x85,0xd1,0x5c,0x61, +0x2a,0x57,0x18,0x73,0xdd,0x5c,0x18,0x81,0x93,0xa8,0xc2,0xd0, +0x08,0x35,0x91,0x2a,0xf0,0x49,0x1d,0x01,0xd7,0xc8,0x4e,0xc3, +0xea,0xb2,0x4a,0x7c,0xca,0xac,0xa5,0x33,0x44,0xc0,0x37,0x70, +0x6c,0x55,0xc6,0x29,0xe1,0xf7,0x08,0xd0,0x33,0xb6,0x2d,0xcd, +0x40,0x49,0x47,0xd6,0x80,0xbc,0x4b,0x19,0x39,0x3b,0xb3,0xec, +0xcb,0x97,0x73,0x78,0x48,0x0f,0x33,0x5a,0x35,0x2f,0xec,0x02, +0xb5,0x40,0xbd,0x04,0xb2,0x87,0x2c,0x35,0x08,0xac,0x6a,0x17, +0xd9,0x16,0x53,0x20,0x45,0x65,0x08,0x4b,0xc3,0x7f,0x56,0x32, +0x5f,0x65,0x0a,0xcb,0xd2,0x7f,0x56,0x42,0x9c,0xe7,0x67,0xe1, +0xbe,0x02,0x64,0x80,0xb6,0x86,0x84,0xfb,0x20,0x4e,0x2e,0x60, +0xf8,0x20,0x4e,0xe9,0x9a,0x31,0x1c,0xdc,0xe6,0xbe,0x81,0x17, +0xba,0xca,0x0b,0x96,0xb6,0xb8,0x4b,0xf8,0xb9,0x71,0x99,0xcc, +0xc2,0x0f,0x85,0xfb,0x8d,0xa2,0x10,0xbb,0xa5,0x70,0xe4,0x75, +0x73,0x0e,0x9f,0xe6,0x95,0x2a,0x8e,0x41,0xfc,0x85,0x6c,0x2e, +0xcb,0x71,0x90,0xa5,0xc7,0xc2,0x52,0x05,0x44,0x68,0x29,0xc0, +0xcf,0x65,0x1d,0xc2,0x2a,0xad,0xb8,0xa6,0x70,0x1d,0x1f,0x60, +0x4d,0x21,0xe8,0x11,0x11,0x6a,0xc6,0x75,0xf9,0x3a,0xb5,0x30, +0x91,0x46,0x7a,0x02,0x8c,0xc1,0x93,0xc2,0xfa,0x0d,0x63,0x38, +0xaa,0xd2,0x84,0x95,0x64,0xaa,0x11,0x03,0x03,0xf1,0x63,0x61, +0x25,0x33,0x2e,0x54,0x70,0x23,0xb5,0xb9,0x11,0x6f,0x5c,0x23, +0xdc,0x57,0xf2,0xc9,0xd6,0xea,0x9b,0xd2,0xa8,0xcf,0x77,0x25, +0xfc,0x9e,0x5b,0xb8,0x94,0x9f,0x7c,0x53,0xfa,0x3f,0xcb,0x27, +0xa3,0xb0,0xb6,0x3c,0x07,0x38,0x00,0x54,0xfc,0x4d,0xe9,0xd6, +0x00,0xd8,0x1b,0xd6,0x10,0xf4,0xfd,0x5f,0x2d,0xed,0x8e,0xa0, +0x86,0xa2,0x27,0x2d,0xe4,0x68,0x75,0xd6,0x98,0x2a,0x3d,0xe5, +0x24,0x39,0x19,0x8f,0x76,0x63,0x0f,0xba,0xc4,0x3d,0x5b,0xf7, +0x82,0x93,0xcf,0x5c,0x2e,0x6f,0x17,0x6e,0x7b,0x9f,0x55,0x78, +0x45,0x9d,0x13,0xbe,0xad,0x41,0xae,0x11,0x7e,0xd7,0x8b,0x72, +0x79,0x87,0x14,0xa7,0x6a,0x3d,0x83,0xfc,0xf7,0x7b,0xa4,0xb8, +0xc2,0x00,0x3e,0x0a,0xd3,0xa9,0xf2,0x20,0xbf,0xe1,0x64,0x30, +0xef,0x12,0x1a,0x86,0x25,0x37,0x25,0x19,0x7b,0xce,0x2e,0xb8, +0xd4,0x10,0x9e,0x27,0x48,0xdc,0x9f,0x06,0xf3,0x57,0xdc,0x29, +0x9b,0x91,0xce,0x0d,0xea,0xed,0x9b,0x32,0x98,0xc6,0x22,0xc8, +0x4a,0x35,0x82,0xf2,0xbf,0x06,0x39,0x54,0xb5,0x90,0xc9,0x20, +0x53,0xb9,0x09,0x0f,0xe1,0x15,0x08,0xd9,0xb8,0x41,0x5e,0x00, +0xb3,0x17,0x14,0x41,0xfc,0x8b,0x8d,0xf3,0x94,0xde,0x38,0xd5, +0xdb,0x30,0xc7,0x9d,0x50,0xe3,0xe4,0x8b,0xe6,0x8c,0x5c,0x75, +0x0a,0x1f,0xd1,0x76,0xd8,0x9c,0xab,0x92,0x2c,0xbe,0xcf,0x1a, +0xa9,0x8e,0xb9,0x86,0x79,0xeb,0x8c,0x08,0xf0,0x00,0x6c,0x6e, +0x99,0x24,0xdb,0xb5,0x14,0xfe,0xb3,0x9f,0x62,0x0d,0xfc,0xa0, +0xe8,0x78,0xa4,0x14,0x5f,0x10,0x8a,0x52,0x4b,0xaf,0xc8,0x92, +0xb2,0x02,0x96,0xcb,0x33,0xb7,0x59,0xd5,0x6e,0xfc,0x4a,0xb8, +0x1f,0x00,0x79,0x2b,0x89,0xbd,0x54,0x55,0x60,0x2f,0x55,0x6b, +0xf0,0x7a,0xe1,0x92,0xa7,0xc7,0x72,0x15,0xa4,0x57,0x94,0x5a, +0x78,0x45,0x1a,0x54,0x18,0x9a,0xc7,0xbb,0x57,0xde,0x5a,0xcc, +0xc7,0x72,0x15,0x5c,0xc7,0x72,0x17,0x78,0x27,0xdf,0xe7,0x73, +0xb9,0x0a,0x7c,0x9e,0x49,0x36,0xc6,0x45,0x39,0x8d,0xb6,0xaf, +0x7e,0x2d,0x56,0x97,0xb6,0x6f,0x59,0x30,0x07,0xe8,0xe3,0xb9, +0x0a,0x7c,0x3c,0x57,0x55,0xed,0xe5,0x9d,0x7c,0x9f,0x4f,0x8c, +0x2a,0x88,0x80,0x5b,0x40,0xd9,0x2f,0x45,0xa9,0x89,0x57,0x2c, +0x78,0x4b,0x46,0x88,0xe0,0x5c,0x90,0x5e,0xea,0x24,0x6d,0x4a, +0x02,0xa9,0xc3,0x6d,0xbe,0x98,0x67,0x0e,0xe3,0xb3,0x95,0x0a, +0xbf,0x46,0xa9,0x68,0x0d,0x55,0x86,0x36,0x82,0x39,0x42,0x96, +0xe5,0x03,0x96,0x0a,0xd2,0xd7,0xda,0x53,0x39,0x0a,0xfb,0x3c, +0x3d,0x2c,0x63,0xb8,0xae,0x57,0x7e,0xa5,0x9a,0x2f,0xe5,0x99, +0xc3,0x8b,0xf7,0xa6,0xbc,0x99,0xc4,0xc7,0x65,0x15,0x5c,0x07, +0x71,0x59,0xbc,0xb7,0xff,0x7a,0x85,0xd1,0x2a,0x9b,0xb7,0xfc, +0x5f,0xae,0xb0,0x1c,0x7f,0xd5,0x7c,0xe0,0x7d,0x90,0xd5,0xd4, +0x76,0xcd,0x07,0xde,0x07,0xbc,0xcd,0x1f,0x08,0x83,0x74,0xf2, +0x33,0x4e,0xfe,0x53,0x4e,0xf0,0x3e,0x4c,0x56,0xa5,0x34,0x23, +0x70,0x8d,0x10,0x9f,0x41,0xcd,0xe1,0x33,0x35,0x3d,0x4a,0x63, +0x74,0xff,0x9b,0xf3,0x28,0x61,0x63,0xf5,0x06,0x73,0x02,0x82, +0x33,0x18,0xce,0xa1,0x87,0xfe,0x96,0xec,0xac,0xe6,0xf0,0xe0, +0x84,0xb8,0xa6,0xce,0x6e,0x95,0xa5,0xd5,0x8e,0xc2,0x5e,0xa4, +0xf1,0x37,0x86,0xb7,0xd5,0xa1,0xc2,0x8e,0xc5,0xe3,0x2a,0xdc, +0x5b,0xbb,0x7a,0x12,0x43,0x6d,0xde,0xd4,0x9c,0xc4,0x1c,0xce, +0x71,0x98,0x5d,0x63,0x8a,0x43,0x54,0x30,0x71,0x95,0xe2,0x63, +0xb5,0x0a,0xd2,0x3d,0x4a,0xcd,0xb8,0x22,0xfd,0x08,0x53,0xc9, +0x3c,0x66,0x2c,0x7a,0x11,0xd8,0xe9,0xa7,0x3e,0x53,0x3b,0xa5, +0x99,0xcc,0xfb,0x1c,0x0d,0x38,0x5c,0x73,0x19,0x42,0xa7,0x5e, +0x56,0xed,0x98,0xcd,0xfc,0x45,0x84,0xb1,0x2a,0x98,0x39,0x90, +0xb9,0xd9,0xcc,0x24,0xed,0xb9,0x03,0x1f,0x94,0x25,0xb7,0xc0, +0x31,0x56,0x55,0xb7,0x8a,0xb0,0x35,0x05,0xb3,0xa3,0xaa,0x5d, +0xf8,0x1e,0x17,0x1f,0xd7,0xc5,0x63,0x6e,0x99,0xf1,0x2d,0x48, +0x2d,0xf2,0x5f,0x04,0x4f,0xe5,0x55,0xb4,0xac,0x45,0xdc,0x46, +0x94,0x3d,0x04,0x69,0x27,0x43,0xde,0x93,0xaf,0x9e,0x53,0xfd, +0x3b,0xc9,0x6e,0xb3,0x99,0xe1,0x44,0x12,0xc3,0x09,0x74,0x9c, +0xec,0xf7,0x65,0xde,0x69,0x16,0x57,0x66,0x25,0x15,0xe1,0x24, +0x25,0xd4,0xfd,0x20,0x19,0xf1,0xaa,0x91,0x80,0x87,0x3a,0xdd, +0x47,0x9d,0x15,0x5e,0x3f,0xeb,0xa4,0xec,0x43,0x33,0xe2,0x35, +0x16,0x44,0xc0,0x1f,0x80,0x7d,0xf5,0xd1,0x58,0x6f,0xab,0xaa, +0x57,0x4b,0xae,0x04,0xb9,0x96,0x1f,0xbd,0xbe,0xcd,0xb4,0x9c, +0x32,0x38,0x3a,0xec,0xe8,0x5b,0xe6,0xb4,0x16,0x38,0x94,0x48, +0x0d,0x13,0x5e,0xee,0x7c,0x21,0xe5,0x0f,0x61,0xbc,0x05,0xe6, +0x56,0xf3,0x9a,0x11,0x2d,0xdb,0xe1,0xdb,0xb7,0xcc,0x05,0x2d, +0xb0,0x27,0x57,0x37,0x92,0x57,0xac,0xe6,0xa7,0xe3,0xaf,0x62, +0x2d,0xdb,0x89,0x0c,0xe2,0x8f,0x55,0x66,0xa6,0xcc,0x24,0xfe, +0x68,0x9f,0xc1,0x12,0x76,0xe3,0xa1,0x94,0x23,0x1f,0x87,0x2c, +0x95,0x5d,0x89,0x72,0xe1,0xeb,0x07,0xd9,0xfb,0xb2,0xed,0x57, +0x71,0x83,0xf3,0x37,0x32,0x50,0x71,0x84,0x2b,0x14,0xed,0xac, +0x5b,0xe6,0x12,0xab,0x8a,0xc3,0x5c,0xe1,0x95,0x0f,0xad,0x45, +0x19,0x07,0xd3,0xf1,0xb1,0x51,0x5c,0xd4,0x02,0x47,0x10,0x1d, +0xd5,0xb8,0xb0,0xa1,0x28,0x75,0x90,0x2c,0xcb,0xf7,0x80,0x34, +0xf1,0xc9,0x22,0xb8,0x35,0x74,0xc2,0xb3,0xb4,0x59,0xab,0x92, +0x05,0x7f,0x9d,0xb4,0x73,0x79,0x82,0xf3,0x48,0x52,0x55,0xa4, +0x0d,0x59,0x95,0x7d,0xe3,0x71,0xe6,0x3e,0xa2,0x38,0x00,0x47, +0x5d,0x35,0x27,0xb6,0xc6,0x58,0x2b,0xae,0xaf,0x28,0x2c,0x8b, +0x79,0x8c,0x9a,0xd1,0x96,0x24,0xa0,0x61,0x1a,0xe8,0x3d,0x42, +0x17,0xc0,0xc7,0x54,0xd1,0xad,0xb1,0x2b,0x01,0x91,0xd2,0x49, +0x50,0x72,0x23,0xbe,0x4b,0x1b,0xd1,0x39,0x1a,0x94,0xc0,0x01, +0xc2,0xfd,0x12,0xac,0x56,0xc7,0x78,0xa7,0x3d,0x97,0xf3,0xb6, +0x4a,0xe7,0xad,0xf4,0x5c,0x8e,0x39,0x1e,0x9f,0xe8,0xdd,0x02, +0x1c,0xf7,0xbe,0x9a,0xde,0x2d,0x00,0x0b,0x19,0x2e,0x88,0x53, +0x6f,0x0b,0xe3,0x24,0xff,0x95,0x39,0xb8,0x96,0x37,0x06,0x11, +0x31,0x47,0x13,0xb1,0x4b,0x53,0x3a,0x42,0x1f,0x22,0xf6,0x27, +0x22,0xca,0x6b,0x1a,0xea,0xe1,0x23,0xde,0x16,0x04,0x35,0x81, +0xa0,0x84,0xdc,0x6a,0xc4,0x48,0x3f,0x0e,0xaa,0x1d,0xd3,0x1a, +0x63,0x08,0xaa,0x92,0x21,0xab,0x63,0xd5,0xac,0xa3,0x18,0x26, +0xcb,0xc7,0xad,0x9a,0xb5,0x64,0x06,0xda,0xe1,0xe8,0xaa,0xf4, +0x13,0x21,0xb2,0xc6,0x19,0xe5,0x1f,0x2d,0xeb,0x58,0xde,0x41, +0xb7,0xd8,0x0e,0x58,0x1a,0x4b,0x64,0x0e,0xb4,0xe5,0x5d,0x48, +0xcf,0xda,0x99,0xa1,0xdd,0xf5,0xce,0xf5,0x90,0x9e,0xb8,0x9a, +0xf6,0x84,0xf0,0x78,0x9f,0x47,0x74,0x8c,0x08,0x1e,0x02,0x63, +0xc9,0x38,0xe5,0x95,0x0f,0x70,0x4c,0x1d,0xe1,0x85,0xff,0x77, +0x78,0x7b,0xe9,0x21,0xfa,0xdf,0xe2,0xf5,0xc5,0xd5,0xbc,0x35, +0x68,0x0d,0x84,0xb6,0x04,0x7c,0x81,0xfe,0x55,0xb9,0xc5,0xa7, +0x65,0x73,0xf1,0xa6,0xb0,0x35,0x81,0x50,0x3c,0xef,0xac,0xc9, +0x86,0xd7,0x32,0x32,0xbc,0x56,0xb7,0x28,0x06,0xb2,0xa8,0x86, +0x69,0x5c,0x6c,0x76,0x51,0x55,0x79,0xe7,0x90,0xf5,0x56,0x0a, +0xeb,0x10,0xa6,0x0a,0xba,0xec,0xa8,0xb1,0x7c,0xc5,0x2a,0x5e, +0x8a,0xd1,0xd8,0xd8,0xf6,0x71,0x26,0x76,0x92,0x75,0x67,0xa5, +0xcc,0x5c,0x3c,0x23,0x9e,0xa3,0x4b,0x90,0xb2,0x77,0x34,0xe5, +0xd8,0xa9,0x90,0xf7,0x85,0xdb,0x6f,0x10,0x67,0x45,0xaf,0xee, +0x11,0x58,0x0f,0x0d,0xc7,0x89,0x7e,0x5f,0x5e,0x3d,0xf9,0xf1, +0xbe,0xe3,0x1c,0x75,0xfb,0x15,0xda,0x40,0xe6,0x51,0xc0,0xe0, +0x96,0x50,0x95,0x5b,0x6c,0x74,0x50,0xd8,0x9a,0x73,0xa4,0xed, +0x14,0x15,0x4f,0x5b,0x68,0x33,0x98,0x3d,0x54,0x03,0xde,0x59, +0x44,0xd9,0x79,0xa2,0x2c,0xb6,0x05,0x06,0xb8,0x40,0xf1,0xeb, +0x07,0x06,0xe1,0x4a,0x9a,0x19,0x3f,0x33,0xc1,0xc6,0xb8,0x0e, +0xaf,0x4a,0x3b,0x11,0xb2,0x4c,0x46,0x9f,0x55,0x3d,0x3a,0xcb, +0x2e,0x6f,0x5b,0xd1,0xd2,0xa3,0x0d,0xd6,0x47,0x7f,0xc7,0xf1, +0xfe,0x5f,0x5e,0x3e,0x95,0xbd,0x37,0xc7,0x2e,0xfc,0x76,0x83, +0x3b,0x5e,0x56,0x7d,0x5c,0xfb,0x73,0x33,0xc8,0x81,0xb8,0x43, +0xef,0x4f,0xb7,0x14,0x20,0x56,0x57,0xa7,0x8b,0xac,0x53,0x51, +0xff,0x4f,0x84,0xa4,0x69,0x42,0x4a,0xe2,0x6f,0xbc,0x0b,0x85, +0x31,0x13,0x3e,0xc1,0x8f,0x9c,0x7f,0xf0,0xf8,0x95,0x6a,0x09, +0xe5,0x69,0x74,0x2a,0xeb,0x3d,0x94,0x88,0xe7,0x84,0x97,0x09, +0x1d,0xf0,0x82,0x08,0xad,0x09,0x85,0xb5,0x8b,0x8b,0xa9,0x85, +0x0c,0x2e,0x68,0x4e,0x6c,0xad,0x54,0x21,0x99,0x3c,0xfd,0x40, +0x05,0x63,0x75,0x61,0xa4,0x42,0x8c,0xde,0x41,0xf5,0x68,0x07, +0x5d,0xb3,0xa8,0x60,0x13,0x38,0xcf,0x9c,0xa0,0x77,0x10,0x65, +0x2e,0xe4,0x4c,0xf9,0x87,0xd1,0x4d,0x06,0xd6,0xc4,0x40,0xfa, +0x1f,0xcb,0xe4,0x99,0x13,0x45,0xc9,0xce,0x64,0x30,0xeb,0x0d, +0x44,0x30,0xc3,0x34,0xcc,0x67,0x46,0x57,0x19,0x58,0xc7,0x05, +0x63,0xcd,0x33,0xa3,0x89,0xc3,0x5b,0x71,0x37,0xb6,0x13,0xb6, +0x70,0x90,0x5b,0xf4,0x36,0x12,0x25,0xde,0x81,0x93,0x22,0xb4, +0x2e,0xa8,0xdb,0xfc,0xfe,0x8b,0x84,0xc2,0x5e,0x78,0xcf,0xb5, +0x9f,0x9e,0xcb,0x59,0xe8,0xda,0x4f,0xcf,0xe5,0x98,0x13,0x8a, +0xf6,0xd3,0x3a,0xa6,0xcc,0xb5,0x9f,0xd6,0xc1,0x3b,0x45,0xfb, +0x69,0x1d,0x2c,0xd4,0xfb,0x69,0x1d,0xc8,0xe3,0xae,0xfd,0x44, +0x34,0xcd,0xd1,0x34,0x3d,0x11,0x06,0xe9,0x01,0x0d,0x5c,0xfb, +0x87,0xb1,0x9b,0x43,0x55,0x79,0x2d,0x3a,0x16,0x81,0xfc,0x44, +0xd5,0x24,0xd9,0x21,0x42,0x03,0x01,0x7d,0xf3,0xcc,0x18,0x51, +0x72,0x0d,0x47,0xd2,0xd6,0xdb,0xc1,0x7f,0x00,0x0f,0x4f,0x55, +0x61,0xec,0x87,0x09,0x45,0xdb,0x61,0x1d,0xa4,0xbb,0xb6,0x03, +0xd7,0x1d,0x82,0xc7,0x5d,0xda,0x26,0xd5,0xf5,0xd1,0x7d,0xf5, +0xb1,0xe2,0x4e,0x6c,0xca,0x1b,0x22,0x2c,0x93,0x37,0x04,0xe9, +0x01,0x33,0x21,0x6e,0x0e,0xad,0x84,0xf5,0x69,0x29,0xe9,0x27, +0x43,0x64,0xf5,0x5c,0xe5,0x13,0x23,0x6b,0x5b,0xd0,0x3d,0xb6, +0x3d,0xed,0x08,0xc3,0x91,0x31,0xf0,0xca,0x85,0x8c,0xec,0x9d, +0x19,0x76,0x5a,0xb3,0x0b,0x79,0x4b,0xf8,0xb9,0xb6,0xc4,0x63, +0xb3,0x8f,0xb1,0xbf,0xbb,0x2c,0x7b,0xfc,0xab,0xc3,0x59,0x47, +0xed,0x6b,0x96,0xbf,0xff,0xce,0x07,0x73,0xe5,0x61,0x74,0xd8, +0x0e,0x9c,0xc0,0xed,0x32,0x68,0xda,0x72,0x5a,0xd0,0x71,0xf6, +0x37,0x67,0xce,0x4f,0xda,0x9e,0xba,0x6a,0xaf,0xf0,0xdb,0x01, +0x75,0xdb,0xf4,0xc4,0x84,0x7a,0x1e,0x66,0x30,0x96,0x32,0x24, +0xb4,0x40,0x50,0x16,0xd7,0x4d,0x6c,0xf5,0x1a,0xe4,0x4f,0xe2, +0xd7,0x84,0x99,0xfc,0x9a,0xd0,0x6b,0x26,0x5f,0xb6,0xbe,0x5c, +0x78,0x8e,0x50,0xbc,0xc1,0x28,0x4a,0xa7,0xdf,0xdb,0x9f,0x7d, +0xc0,0x9e,0xb4,0x78,0x4d,0xf2,0xda,0xc5,0x1c,0x5c,0xf8,0x10, +0x06,0x1e,0xf8,0x18,0xb7,0x4a,0x8f,0xa9,0xcb,0x67,0x2e,0xa2, +0x5d,0xf3,0xe6,0xac,0xf9,0x49,0xdb,0x76,0xa4,0xec,0x4e,0x3a, +0x20,0xfc,0x9b,0x43,0xb3,0xd6,0x7d,0x71,0x56,0x73,0x46,0x53, +0xc2,0xf8,0xa3,0x45,0xa8,0xb2,0xe8,0xcf,0x2a,0xc6,0x25,0x70, +0x86,0xf0,0xfd,0xea,0x5e,0xc2,0xbb,0x3b,0x27,0x49,0x2a,0xad, +0x16,0x5e,0x9f,0xea,0x64,0x77,0xbc,0x26,0xe0,0x90,0x06,0x08, +0x26,0x00,0xaf,0x42,0x4e,0x46,0x62,0x88,0x08,0xee,0xa1,0xcb, +0x3f,0x43,0x43,0xc0,0x12,0x17,0x69,0x5d,0x69,0x4c,0xbd,0x4a, +0x6b,0x82,0xc7,0xe2,0x11,0x7e,0x25,0xe8,0x35,0x8b,0x5f,0x01, +0x0e,0x35,0xcc,0x25,0x75,0x2d,0xc2,0xa3,0x19,0xe8,0x2b,0xd2, +0x21,0xa0,0x0a,0xc8,0x26,0xf1,0xb9,0xa4,0xcb,0x2b,0x61,0x25, +0x43,0x15,0x44,0x9b,0x05,0x34,0xae,0x7d,0x85,0x95,0x7a,0x69, +0xcd,0x05,0xe7,0xe5,0xb7,0x8c,0xe3,0xfd,0xee,0x65,0x9d,0x3e, +0xb4,0x8f,0x3d,0x6f,0x90,0x59,0x34,0x4f,0x76,0x46,0x1f,0x5b, +0x4e,0x06,0x46,0x49,0xb7,0xe9,0x2b,0x66,0x15,0xfc,0x08,0x47, +0xec,0xb2,0xcb,0x59,0xda,0x7a,0x7e,0xbf,0x80,0x79,0xb0,0x92, +0x11,0x19,0x5f,0x77,0x6e,0xd8,0x7c,0x0f,0xf9,0x52,0x04,0xba, +0x5b,0x17,0x34,0x0e,0x7f,0xa7,0x61,0xa9,0xe5,0x1d,0x0b,0xbf, +0xe2,0x18,0xc4,0x2d,0x85,0xb5,0x09,0x35,0xfb,0x1b,0x35,0xdb, +0x50,0x54,0xf0,0x87,0xff,0x79,0x63,0x57,0x70,0xb9,0x70,0x7f, +0x42,0x6d,0x3d,0xa1,0xb6,0x5a,0x19,0x39,0xfd,0xbe,0xca,0x10, +0x15,0x69,0x07,0x7b,0xd8,0xb2,0xa9,0x31,0xe1,0xf1,0x0d,0x2c, +0x48,0xda,0xb0,0x6b,0xe5,0x9e,0xa4,0x43,0xc2,0xbf,0x25,0x34, +0xed,0xd1,0x0b,0xeb,0x85,0x7b,0x98,0x87,0xc2,0x9c,0xc3,0xe0, +0xb7,0x56,0xf8,0x02,0x26,0xc2,0x7a,0xdc,0x26,0x68,0xd8,0x05, +0xcc,0xe7,0xaf,0x35,0x55,0x84,0x7b,0xa6,0x4e,0x7f,0xc2,0x5f, +0x97,0x36,0x41,0xfe,0x28,0x38,0xcb,0x00,0xde,0x9c,0x52,0xa1, +0x5c,0x7e,0x48,0x27,0x35,0xe8,0x45,0xc8,0x9f,0x2d,0xdc,0xe6, +0x12,0x13,0x39,0x6f,0x75,0x5e,0x6e,0x21,0x2c,0x0e,0x1d,0xb9, +0x57,0xb8,0x7f,0x46,0x14,0xfd,0x4c,0x14,0x35,0x17,0x7e,0x1f, +0xc3,0xca,0xa5,0xc2,0x73,0x27,0x65,0x0c,0x83,0x8d,0xbb,0x52, +0xf6,0x2c,0x3e,0x24,0x7c,0xb7,0xc3,0xfc,0x66,0x3d,0x7b,0x63, +0x78,0x03,0x22,0xa5,0x06,0xd6,0x84,0x9f,0x23,0xca,0x9d,0x81, +0x86,0xa5,0x96,0x45,0x4f,0x00,0x32,0xe6,0x46,0x08,0x4b,0x49, +0x10,0x41,0x43,0x38,0x14,0x2f,0xed,0xbd,0x5d,0x94,0x4e,0x86, +0x77,0xb0,0xa2,0x70,0x5f,0x43,0xad,0x9c,0xd1,0x73,0x91,0xd3, +0xef,0x5e,0x66,0xee,0xc1,0xbd,0x07,0x85,0xdb,0x75,0x0e,0x2a, +0x97,0xcd,0x21,0x96,0x5f,0xa4,0x91,0x5b,0x34,0x83,0x74,0x84, +0xf8,0xf9,0x49,0x1b,0x77,0x53,0x9f,0x0f,0x73,0x9f,0x1b,0x77, +0xef,0x85,0x75,0x69,0x25,0x1f,0xaa,0xca,0xa1,0x95,0x5f,0x68, +0x85,0x2f,0x53,0xa7,0x55,0x23,0x6c,0x2e,0xac,0xa3,0xb9,0x27, +0xf8,0x3d,0x9e,0x17,0x96,0x3b,0x1a,0x09,0xc7,0xdf,0x15,0xb0, +0x05,0x44,0x99,0x21,0xe0,0x5c,0x8a,0x3f,0x09,0xdb,0x0e,0x90, +0xcb,0x30,0xd8,0x90,0xfe,0x51,0x58,0x02,0xfb,0x40,0xe2,0xe9, +0x6e,0x09,0x6d,0xe6,0xb6,0xe0,0xe8,0xb9,0xfd,0x85,0xb5,0x29, +0x01,0x9e,0x04,0x75,0x49,0x8e,0x64,0x40,0xb3,0x5f,0xd9,0x4d, +0x50,0x0c,0x28,0x67,0xe0,0xdc,0xfc,0x5b,0x54,0x9e,0xc5,0xe5, +0x03,0x8d,0xcc,0x81,0x79,0xc7,0x32,0xf7,0xef,0x3a,0x60,0x5f, +0xc9,0xef,0x44,0xe6,0x91,0x81,0x6a,0xb1,0x91,0x94,0xab,0xf9, +0x3b,0xe9,0x35,0xf9,0xb5,0x61,0xc9,0x87,0x3c,0x47,0x07,0xed, +0xb2,0x7e,0xae,0x72,0xc4,0xc8,0x46,0x96,0xf9,0x8d,0xfb,0x76, +0xc3,0x10,0x1a,0x9f,0x7e,0x15,0xba,0x01,0x59,0x23,0x18,0x20, +0xfc,0x46,0x80,0x33,0x9b,0xc3,0x39,0xad,0x11,0x96,0x3a,0x50, +0x30,0x07,0x64,0x0b,0x61,0x8b,0x83,0x6a,0x54,0x6e,0x8d,0x42, +0xaf,0xe2,0xf2,0x79,0x1d,0x85,0xbb,0x82,0x82,0xc1,0xdc,0x81, +0xd3,0x72,0x3d,0xd9,0xbb,0x8a,0x44,0x7e,0xab,0xe2,0x9c,0x82, +0x17,0xb9,0x47,0x6e,0xc6,0x6f,0x51,0xf8,0x62,0xe1,0x7e,0x68, +0xeb,0x9c,0x0a,0x89,0x27,0x9c,0xfd,0x61,0xb4,0x6a,0x2d,0xbc, +0xca,0xff,0x27,0x28,0x33,0x1a,0xdf,0x11,0xee,0x6b,0x35,0xf6, +0xee,0xd4,0xb8,0x9c,0x29,0xe0,0xb1,0xeb,0xd7,0xbf,0xaa,0x32, +0x92,0x1a,0xf6,0xf6,0x7d,0x5a,0x03,0xe7,0x11,0x39,0x5e,0x71, +0x34,0x32,0x39,0x3c,0x32,0x5d,0x28,0xeb,0x0c,0x56,0x12,0xee, +0x5f,0x52,0xce,0x6b,0x8c,0xfb,0x33,0xee,0x54,0xf5,0x4d,0xf0, +0x47,0x14,0xbe,0xcc,0xed,0xa8,0x47,0x20,0xdf,0xc2,0xde,0xc2, +0xea,0x4d,0x10,0x47,0xb9,0xce,0x20,0x23,0x63,0x60,0x5e,0x5a, +0xe6,0xbe,0xdd,0x34,0x9a,0xec,0x03,0x87,0x47,0xf3,0x65,0x5b, +0xe6,0x11,0xac,0xf9,0xeb,0x8c,0x95,0x33,0x17,0xbb,0xbc,0x1a, +0x24,0x7d,0xb8,0x73,0xe5,0xae,0xa4,0x03,0x34,0xa2,0x27,0x95, +0xa3,0x2b,0x8f,0x68,0xf3,0x7e,0xdd,0xb1,0x54,0x63,0x1a,0xd1, +0xf2,0xc5,0x67,0xe0,0xd2,0x2f,0x0a,0x83,0x18,0x87,0x08,0xfa, +0x9d,0xe6,0xbf,0x14,0xdc,0xc1,0x64,0xe1,0x7e,0x94,0x54,0x97, +0x6d,0x8c,0x27,0x92,0xc9,0xf5,0xc6,0x32,0x92,0x98,0x7b,0x99, +0xfe,0x4c,0xdb,0xd7,0xc2,0xb0,0x90,0xf2,0x8e,0x4d,0x84,0x15, +0x88,0x69,0x9f,0x03,0xf9,0x62,0x14,0xba,0x17,0xf5,0x16,0x7b, +0x93,0x49,0x62,0x6d,0xa1,0x1b,0xc2,0xc3,0x04,0x63,0xe9,0xf6, +0xa7,0x96,0xac,0x02,0x36,0x82,0xb9,0x1a,0x9c,0xfd,0xf0,0x9e, +0x28,0xf1,0x23,0xc7,0xc2,0x68,0x29,0x0f,0x72,0xac,0xa1,0xf4, +0x5b,0x16,0x67,0x3f,0x39,0x8e,0x33,0x1f,0xe0,0x32,0x67,0x33, +0xce,0x5b,0xa7,0xf3,0x06,0x19,0xd9,0xb4,0xa3,0x4f,0x1f,0xd8, +0x77,0x90,0xbb,0x2a,0xfc,0x5f,0x04,0xde,0xd2,0xf3,0x8b,0xb6, +0xb4,0x5d,0x76,0x3d,0xa3,0xfa,0x45,0xcb,0xee,0x96,0x79,0x4d, +0x79,0x95,0xd3,0xce,0x3e,0x19,0xe6,0xbc,0xa0,0x77,0xb6,0x75, +0x41,0x93,0x46,0xef,0x34,0x2e,0x7c,0x4c,0x76,0xfb,0x36,0x3c, +0xc8,0xc7,0xde,0xd4,0x5c,0x14,0x37,0x97,0x7e,0xfa,0xc0,0x5e, +0x1e,0xb9,0x94,0x85,0x2b,0xe7,0xc9,0x68,0xde,0x96,0x1b,0xf4, +0xb6,0xa4,0xd6,0x4e,0xab,0xbe,0x5d,0xa8,0xb5,0xf9,0xcd,0x7a, +0xb8,0x36,0xe7,0xc9,0x1a,0xd4,0xda,0xcf,0xad,0xca,0xb9,0x1a, +0xa3,0xfd,0x59,0xf8,0x23,0x07,0x98,0x0d,0xc6,0xeb,0xb0,0x81, +0xfb,0x91,0x8d,0xc7,0xf8,0x03,0x71,0x58,0xe1,0xaa,0xe7,0x7e, +0x97,0x53,0x55,0xf1,0xe2,0xb3,0xdf,0xb7,0x68,0x47,0x5f,0x83, +0x0e,0x8c,0xbe,0x1f,0xfd,0x7c,0x84,0x3b,0x9c,0xde,0xcf,0x7e, +0x12,0x1f,0xa9,0x8a,0x97,0x9f,0xfb,0xcd,0xb5,0x4f,0xf3,0x01, +0x8d,0xb3,0xaf,0xec,0x4d,0x19,0x8d,0x31,0x0c,0x3f,0xe5,0x01, +0x59,0xae,0x07,0x64,0xc0,0xff,0x45,0x0f,0x26,0x93,0x91,0xc0, +0x37,0x54,0xde,0x87,0x56,0xb8,0x0a,0x2f,0x41,0x61,0x4b,0x46, +0x9f,0x58,0x50,0x1d,0xc2,0x09,0xfa,0x41,0xab,0x30,0xe9,0x84, +0x85,0x58,0xd9,0xd9,0x5a,0xc3,0xa8,0xe6,0xa1,0xb8,0xa6,0x88, +0x42,0x02,0xa9,0x47,0x20,0x0f,0x5b,0x55,0x21,0x10,0xfc,0x51, +0x55,0x92,0xd7,0x5c,0x30,0xed,0xb1,0x39,0x1e,0xfe,0xa7,0x0d, +0xe1,0x7b,0xd4,0x83,0x0b,0x24,0x1f,0x63,0x59,0x3e,0x96,0xc9, +0xf9,0xea,0x50,0xf6,0x11,0xfb,0x7b,0xec,0xa6,0x7b,0x0e,0x89, +0x60,0x61,0x23,0xe9,0xb8,0x4d,0x06,0x4e,0x5b,0x3e,0x83,0x75, +0x4a,0x2d,0x82,0xf7,0xa4,0xa4,0x26,0x1d,0x31,0x9d,0x90,0x58, +0x9f,0x84,0x70,0x3c,0x4d,0x6a,0x32,0x56,0x34,0x7e,0x8a,0xac, +0x84,0x1d,0xf8,0xbf,0x85,0xfa,0x41,0xff,0x8e,0xa7,0x0f,0xfa, +0xbd,0x62,0x59,0x04,0x9f,0xd7,0x22,0x78,0xa6,0x16,0xc1,0xc7, +0xee,0xee,0xcb,0xd1,0x22,0x78,0xc5,0xda,0x45,0x2e,0x11,0xec, +0x4f,0x48,0xb6,0x48,0x0b,0x8b,0xe0,0xe9,0x2e,0x24,0x24,0x82, +0x77,0x25,0xed,0x17,0x9e,0xfd,0x61,0xee,0x2b,0x91,0xfd,0x71, +0xc6,0x2b,0x8c,0xa5,0x8c,0xf1,0x43,0x64,0x75,0xec,0xc0,0xff, +0x2d,0xd4,0x0f,0xf6,0x03,0x49,0x10,0xaf,0xd3,0x6e,0xba,0xb4, +0x20,0x5e,0xc7,0x2f,0xf6,0x29,0x69,0xe3,0x24,0xc9,0xe4,0x55, +0x5a,0x26,0xaf,0xd3,0x6f,0xf6,0xb5,0x4c,0x5e,0xa7,0x9d,0x76, +0x69,0x99,0xbc,0x8e,0x5f,0xed,0x6b,0x99,0xbc,0x4e,0x3f,0xdb, +0x77,0xc9,0xe4,0x58,0x96,0xc9,0x99,0x5a,0x26,0xef,0x78,0xfa, +0x72,0xdf,0x6b,0x20,0x6b,0x65,0x27,0xf9,0xe5,0x7e,0xc9,0x9f, +0x49,0x51,0x36,0xbe,0x8d,0xa8,0x83,0xad,0xf9,0xbf,0x45,0xfa, +0xe5,0x3e,0x95,0x93,0xcc,0x7e,0xed,0xcf,0x32,0x7b,0x1d,0xcb, +0xec,0x9f,0x5c,0x32,0x7b,0x20,0xc9,0xec,0x72,0x7f,0x27,0xb3, +0x4b,0xfe,0x0a,0x18,0x23,0x7c,0x46,0x80,0xb0,0x05,0x90,0x42, +0x25,0xbc,0xa6,0x50,0xde,0xef,0xec,0x28,0x17,0xae,0x52,0x8a, +0x5f,0xba,0xe9,0x97,0xf8,0x65,0xa9,0x01,0x4b,0x2f,0xc0,0xad, +0xdd,0xe4,0xeb,0x15,0x70,0x38,0x36,0xb4,0x62,0x2f,0x38,0x59, +0x78,0x08,0x12,0x7e,0x97,0xc3,0x64,0xbf,0x5c,0x44,0xb9,0xcf, +0xf4,0xec,0x48,0x4c,0xbd,0xae,0x2c,0xd1,0xfb,0x33,0x4b,0x16, +0xae,0x31,0x88,0xdf,0x94,0xc6,0xba,0x1c,0x55,0x89,0x2a,0x6e, +0xef,0x26,0xc7,0x55,0xc0,0xd1,0x54,0x51,0xf8,0xcc,0xe0,0x5a, +0xa3,0x64,0xbf,0xf3,0x58,0x28,0xb3,0x4f,0x60,0xdc,0xaf,0x22, +0xa0,0x22,0xe0,0x9e,0x2f,0x19,0x74,0x24,0x34,0xc2,0x1d,0xdd, +0xe4,0x04,0x3e,0x08,0x25,0x58,0x6b,0x15,0x88,0xff,0x5d,0x8e, +0x91,0xfd,0x32,0x62,0x65,0xde,0x49,0xcc,0xfa,0x42,0x3f,0xca, +0xf7,0xc4,0xf7,0x84,0xb5,0x39,0x30,0x74,0x8d,0x5b,0x0f,0xf8, +0x85,0x7d,0xa8,0xd1,0x4b,0xc6,0x66,0x5b,0xd5,0x66,0xbc,0x61, +0xc4,0xff,0x26,0xfc,0x68,0xf9,0x36,0xb0,0x08,0xdf,0xbe,0xc4, +0x7a,0x65,0x79,0xe1,0xf3,0x08,0x32,0x55,0x29,0x2b,0x69,0xf9, +0xaf,0x1b,0xb3,0x2c,0x3d,0x87,0x6e,0xcf,0xc8,0xdc,0x2f,0xca, +0xf7,0xa5,0x0e,0x6e,0x02,0xd3,0x1a,0x31,0x0e,0x2d,0xd8,0x55, +0x5a,0x3a,0xe2,0xb1,0x72,0x20,0x3f,0x92,0xf7,0x84,0xe7,0x1a, +0xc0,0xb3,0x05,0xab,0xe1,0xf5,0x57,0xd1,0x0f,0x7d,0x1c,0xd9, +0x43,0x4e,0x9e,0x3e,0x70,0x74,0xcb,0x11,0xfb,0xbb,0xae,0x80, +0x63,0x25,0x0b,0xde,0x05,0xdc,0x87,0x5e,0x06,0xd5,0xf2,0x93, +0x5d,0x89,0xec,0x92,0x1b,0x8a,0x9f,0xf0,0x17,0x85,0x87,0x3d, +0x21,0xdc,0x07,0x10,0x7d,0xb3,0x69,0x24,0x27,0xf2,0x4b,0x7e, +0xf5,0x9e,0x7e,0xc8,0x6f,0x09,0xe0,0x01,0x75,0xcf,0x7e,0x5a, +0x54,0x0b,0x97,0x76,0xa6,0x09,0xb3,0xf2,0x84,0xb9,0xde,0xef, +0x07,0x67,0xf1,0xfb,0xfd,0xd0,0x59,0xb4,0x23,0xbe,0xe6,0x70, +0xca,0x41,0xec,0x53,0xbe,0xa3,0x69,0xa9,0x85,0xeb,0x69,0xe2, +0xce,0xe0,0xfa,0xfb,0x1a,0xc5,0x28,0x5c,0xa7,0x27,0xd0,0xf7, +0x1b,0x70,0xf6,0xc7,0x7d,0x46,0x76,0xff,0xbb,0x47,0x4e,0xa5, +0xee,0x4b,0x25,0xc9,0x99,0xb2,0x30,0x65,0xbe,0xec,0x54,0x4e, +0xab,0x36,0x3f,0xb0,0xb0,0x9f,0x99,0x60,0x9f,0x1e,0x4f,0x0a, +0xce,0xf6,0x95,0x3b,0x93,0xf6,0x09,0xb7,0x59,0xd0,0xba,0x47, +0x3f,0xac,0xd3,0xc2,0x43,0xbe,0x86,0x57,0x84,0x77,0x35,0x50, +0xdf,0x82,0x33,0x40,0x0e,0x26,0x9e,0x71,0xf7,0x30,0xb5,0xb1, +0xd7,0x9e,0x42,0x9a,0xdb,0xca,0x79,0xc2,0xb3,0x03,0xc4,0x2d, +0x9a,0x31,0xdb,0x3e,0x23,0x6e,0xfe,0x92,0xf5,0xdb,0x52,0x76, +0x26,0xed,0xe5,0xca,0x6d,0x04,0xbc,0x08,0x78,0x49,0x78,0x4f, +0x04,0x11,0xdc,0x99,0x06,0x4a,0x04,0x79,0x40,0xe1,0xb7,0x30, +0xec,0xa6,0xb9,0xbb,0x20,0x14,0x30,0x4b,0x40,0x04,0xed,0xf6, +0xb9,0x30,0x5d,0x75,0x29,0xa8,0x51,0xf4,0x95,0x55,0x58,0x3f, +0xd6,0x79,0xa3,0x54,0x17,0x61,0xd9,0x0b,0xfc,0x54,0x7e,0xb5, +0xce,0x78,0x5d,0x75,0x31,0xe6,0xdc,0x95,0x43,0x39,0x1c,0x6c, +0x57,0x39,0xb2,0x11,0x0e,0x15,0x3e,0xc4,0x2c,0x7c,0x2e,0x73, +0x93,0x43,0x6f,0x9a,0x7b,0xb8,0xc9,0x54,0x01,0x24,0x5c,0x7c, +0xef,0x33,0x99,0x89,0xc2,0xbb,0xbc,0xce,0xf9,0xf5,0xef,0x20, +0xa6,0x3f,0x4f,0x04,0xfd,0x6e,0xe8,0x22,0x2f,0x43,0xc0,0x04, +0x12,0x36,0x93,0x41,0x1e,0x16,0x3e,0x37,0x40,0xae,0xb1,0x24, +0xb6,0xed,0x30,0x10,0x27,0xb5,0xdf,0xd5,0xc3,0x26,0xed,0x87, +0xbf,0xd8,0x93,0xb9,0x67,0xf1,0x62,0xdb,0x9a,0xe4,0x75,0x05, +0xbf,0x82,0xf0,0x0b,0x62,0x14,0xaf,0x0a,0xdb,0x2e,0x3e,0x80, +0x05,0xda,0x6a,0xbe,0x5f,0xf1,0xf8,0x6e,0x17,0x86,0x07,0x74, +0x26,0xa6,0xe2,0xb9,0x11,0xa6,0x27,0x0b,0xcf,0x5c,0xb8,0x2e, +0x0f,0x70,0x84,0x54,0x11,0xf4,0x06,0xac,0x55,0xaf,0x1a,0x9f, +0x99,0x53,0x4f,0xa9,0xa9,0x9f,0xa9,0xfd,0x80,0xfb,0x39,0x40, +0x2a,0x3f,0xd7,0x22,0x9c,0x91,0xb8,0xd0,0x1c,0x0c,0x2d,0x96, +0x4f,0x31,0x83,0xa8,0x71,0x83,0x1b,0xef,0xa1,0x1b,0xdf,0x27, +0x60,0x1b,0x88,0x72,0x64,0x3b,0x35,0x18,0x90,0x67,0x5e,0x6f, +0xa3,0x26,0x5a,0xd5,0x12,0xd9,0x9b,0x14,0xa0,0xcb,0x07,0x32, +0x77,0xef,0xde,0x43,0xd3,0xb8,0x6a,0x11,0x89,0xec,0x3a,0x55, +0x59,0xff,0xa9,0xf1,0x2d,0x49,0xec,0x45,0x71,0xb3,0xed,0xf1, +0x73,0xe7,0x27,0x7d,0xb8,0x6d,0xe5,0x8e,0xa4,0x54,0xbb,0x0c, +0xd7,0x3a,0x50,0x43,0xcb,0xbc,0x36,0x7d,0xfb,0x60,0x48,0xa4, +0x87,0x8c,0xa2,0xa1,0xf7,0x0e,0xa3,0x8d,0x1e,0x05,0x94,0x4e, +0x17,0xde,0xdc,0xef,0x20,0x30,0xa7,0x0b,0xbf,0x34,0x52,0x9d, +0xb6,0x0b,0x6b,0x3a,0xa4,0xed,0xdd,0xb1,0x97,0xe3,0x7a,0xae, +0x98,0x27,0xc4,0x35,0x38,0x56,0x86,0x83,0x6d,0xa6,0xea,0x1b, +0x18,0x22,0x98,0x68,0x3f,0x2a,0x80,0xaf,0x95,0x8e,0x84,0x5c, +0xd5,0xdd,0x98,0x7e,0x4f,0x4e,0x94,0x3d,0x30,0xad,0xab,0x7c, +0xb3,0x11,0x4e,0xc2,0x4a,0xc5,0x5f,0xcc,0x43,0x4b,0xc9,0xd5, +0x72,0x9c,0x41,0x72,0x67,0x6b,0x9e,0xfc,0xc6,0xe5,0x28,0x6d, +0x24,0x1c,0xa1,0x1a,0xb3,0xef,0xe9,0x38,0x9c,0x7b,0xba,0xca, +0xd1,0x0d,0x48,0x78,0x54,0x72,0xd6,0x02,0x79,0x5f,0xb8,0xbb, +0x03,0x4e,0xd3,0x2e,0x36,0x08,0xcc,0xfc,0x00,0xb7,0x1a,0x58, +0x5d,0xbe,0xd8,0x1e,0xbf,0x95,0x7b,0xe5,0xb7,0xed,0x2d,0x6a, +0x02,0xee,0xe1,0x9a,0x43,0x39,0x82,0x67,0x57,0xf9,0x7a,0x03, +0x1c,0x46,0x9a,0x8e,0xd5,0x06,0xd2,0x53,0x56,0xb7,0x3c,0x23, +0xd0,0xe8,0x2d,0x1b,0x0c,0xca,0x33,0xd7,0x09,0x9f,0xb2,0x40, +0xd6,0x3a,0xb0,0xe3,0x90,0x40,0x38,0xaa,0x7a,0x18,0xf1,0x5f, +0xeb,0x40,0xaa,0x7b,0xbb,0xc9,0xf1,0xe1,0x38,0x86,0x2b,0xd7, +0x85,0x6f,0xe5,0x90,0x6c,0x1c,0xf2,0xb5,0x1c,0xff,0x31,0xa6, +0xe2,0x7d,0x99,0x73,0x9c,0xe7,0x2a,0x10,0x0e,0x10,0x95,0x09, +0xf7,0x88,0xf9,0xf4,0xc2,0xbd,0x5d,0xe5,0xb8,0x06,0xc4,0x91, +0x2a,0x89,0x32,0x35,0x40,0x4e,0x56,0x02,0x70,0x97,0xb1,0x51, +0xb6,0xe9,0xf8,0xee,0x74,0xec,0xe0,0xde,0xc1,0x32,0x5d,0x76, +0xe8,0x38,0x7f,0x23,0xb6,0x31,0xbf,0xe1,0x6b,0x2a,0xbb,0x99, +0x86,0x07,0x4c,0xc3,0xe0,0x3c,0x73,0x6d,0x1b,0xd5,0x8a,0xe7, +0xab,0x83,0x91,0x31,0xe8,0x4a,0x6a,0xc6,0xf6,0xdd,0x3b,0xed, +0x29,0xcb,0x56,0x69,0x15,0xab,0xbe,0x2d,0xf3,0x30,0xd6,0xfc, +0x7c,0x06,0x6d,0xbb,0x59,0x73,0xec,0xf1,0x73,0xe6,0x27,0xad, +0xdb,0xbc,0x72,0x4b,0xd2,0x4e,0xbb,0x6c,0x78,0x42,0x39,0xba, +0x91,0x86,0x35,0x37,0xba,0x6f,0x2c,0xda,0x3b,0xf2,0x7c,0x51, +0x2f,0x1a,0xe8,0x39,0x92,0xfd,0x84,0xcf,0xef,0x90,0x20,0x7c, +0x3e,0x82,0xf4,0xd7,0xce,0x7e,0x7c,0xe4,0xd0,0xb6,0x43,0xf6, +0x65,0x4b,0x85,0x2f,0xf1,0xb8,0xa0,0x12,0xec,0x11,0xfa,0x66, +0x3e,0xad,0xce,0x20,0xd2,0x1d,0x1b,0x93,0xc1,0x11,0x40,0xb6, +0xef,0x44,0x63,0xda,0x92,0x39,0x0b,0xa7,0xc7,0xcf,0x9a,0x6d, +0x23,0x35,0xfe,0xa3,0x15,0xeb,0x93,0xb6,0xd8,0xe5,0x9a,0x1c, +0xf5,0x4b,0x4f,0xb9,0xc5,0x92,0xd0,0xa7,0xed,0x28,0x9c,0xd0, +0x77,0x47,0x2f,0x9b,0x2c,0x9b,0x7a,0x77,0x6b,0xe6,0xf6,0x35, +0x4b,0x3f,0x58,0xf4,0xfe,0x7c,0xb9,0xb9,0x8e,0x6d,0x5b,0xb6, +0xbb,0x6f,0x6d,0x50,0xb7,0xae,0x9a,0xb7,0xac,0xaa,0x91,0x1a, +0x6f,0xf4,0x94,0x0d,0x84,0xa7,0x2f,0x50,0x6f,0xba,0x1b,0x99, +0xaf,0x5d,0xde,0x9f,0xb9,0x6b,0xf7,0xee,0xe2,0xd5,0x57,0xb7, +0x1a,0xeb,0x8b,0x35,0xbe,0x21,0x26,0xc2,0xda,0xf7,0xba,0x2d, +0x2b,0xb7,0x0b,0x8f,0xee,0xd0,0x8e,0x16,0x9c,0x3d,0x8a,0x3b, +0x90,0x86,0x7b,0x20,0x19,0x17,0x1a,0xe6,0xe2,0x57,0x2c,0x2a, +0x65,0x7a,0x72,0x8c,0xb9,0x64,0xa3,0x7b,0xd5,0x1b,0xb4,0x37, +0x48,0xf8,0x14,0x9c,0x00,0x51,0x7e,0x06,0xa8,0xa5,0xa2,0xc4, +0x21,0xf8,0x1a,0x2f,0x1a,0xb7,0xcd,0xf8,0x53,0x2a,0xfe,0x53, +0x73,0xf1,0x69,0x75,0x0b,0x53,0x39,0x8e,0xa9,0xde,0x26,0x25, +0x48,0x8b,0x58,0x58,0x70,0x17,0xf0,0x0d,0x63,0x9b,0x0c,0xe2, +0x08,0xc2,0x21,0xee,0x18,0x6d,0x79,0x43,0x86,0xb4,0x48,0xdc, +0x86,0x41,0xc2,0x63,0x83,0xab,0xeb,0xaf,0xe0,0x04,0x61,0x19, +0xc3,0xb7,0x6b,0x3e,0xbd,0x65,0x7e,0x6a,0x25,0xc5,0x29,0x97, +0xd5,0x9c,0x63,0xa7,0xf7,0xef,0x3b,0xc0,0xc6,0x26,0xab,0x39, +0x31,0xe8,0x66,0xcb,0xc9,0xc4,0x76,0x3f,0x4f,0x5f,0x31,0x93, +0x43,0x98,0x4c,0x8d,0x5b,0x90,0xb4,0x71,0xd7,0xca,0xdd,0x49, +0x64,0x02,0xc5,0x41,0xf3,0xee,0xbd,0xb1,0x5e,0x63,0x0f,0x39, +0x12,0xb7,0x17,0xb0,0xdf,0xe2,0x51,0xc2,0xe7,0x13,0x10,0xfe, +0x87,0x59,0x1d,0xd9,0xf2,0xbf,0x6a,0xcb,0xec,0x89,0xfb,0x24, +0x09,0x94,0xe0,0x07,0x7a,0x6d,0x8e,0xe6,0x93,0xf9,0xb7,0x49, +0x15,0xeb,0x4b,0xfa,0xaa,0x6d,0x0f,0xdf,0x76,0x0b,0x24,0x5d, +0x9d,0x95,0xbd,0xad,0x85,0x00,0xf8,0x2e,0x87,0x01,0x6d,0x24, +0xbc,0x7b,0xfd,0x39,0xef,0x35,0xce,0x0b,0xf9,0x73,0x9e,0xd9, +0x06,0xe7,0x0b,0xaf,0x33,0x70,0x9a,0x89,0x7c,0x47,0x67,0x8a, +0xc0,0x3f,0xfd,0xe4,0xc8,0x9d,0x8d,0x85,0xb7,0xf7,0x9f,0x40, +0x82,0x7a,0x41,0x61,0x0b,0xfe,0xbd,0xa0,0xa8,0xca,0x5b,0x4c, +0xd2,0x11,0x4d,0xd2,0x5a,0x4d,0xd2,0xe6,0xa2,0xc0,0x9b,0x76, +0x9c,0xeb,0x0c,0xe4,0xc2,0x3c,0x5d,0xb8,0x5e,0x58,0xd6,0xb1, +0xaf,0xe5,0x2d,0xec,0xa9,0xa1,0x0b,0xfb,0x74,0xd8,0xeb,0xcc, +0x27,0x9e,0xb0,0x06,0xe4,0x6e,0x66,0x2a,0x7e,0xac,0x65,0x1e, +0xd3,0x5a,0xa6,0x26,0x91,0xcc,0xac,0x42,0x76,0xe4,0x50,0x27, +0x7f,0xbd,0x86,0x6a,0x83,0xd5,0x84,0xcf,0xc2,0x3f,0xd3,0xb7, +0x5c,0x85,0x0b,0x9f,0x52,0xba,0xb8,0x31,0x8e,0x2c,0x7c,0xe3, +0x9f,0x35,0xf1,0x00,0xeb,0x0b,0xaf,0x43,0x2e,0x8d,0xa4,0x93, +0xf0,0x29,0x09,0xf2,0x26,0x60,0x3b,0xe1,0x35,0xc6,0xa5,0x90, +0x44,0x09,0xf7,0x69,0x2e,0x85,0xc4,0x2a,0xdc,0x5f,0xa7,0x81, +0xce,0x86,0x4a,0xe6,0x5b,0x80,0x2f,0x08,0x0f,0x3b,0xf8,0xca, +0x53,0x20,0x27,0x35,0xc0,0x80,0x6e,0x72,0x72,0x05,0x9c,0x80, +0x0d,0x85,0x4f,0x6f,0x78,0xeb,0x77,0x39,0x41,0x0e,0xaf,0x75, +0x57,0x4e,0x6d,0x10,0xde,0x49,0x0e,0xc1,0x8b,0xd7,0x4c,0x6f, +0xf4,0xb9,0x6b,0x79,0x0e,0x78,0x74,0x05,0xe2,0x52,0xac,0x91, +0x4c,0x67,0x8d,0x64,0x84,0x1c,0xde,0x90,0xa1,0x1b,0x29,0x37, +0xb9,0xd3,0x74,0x43,0xff,0xbb,0x96,0x5c,0x55,0x9e,0x99,0xd5, +0x6a,0x66,0x44,0xc2,0xfd,0x57,0x5d,0xaf,0x44,0x37,0x39,0xca, +0xa5,0x02,0x95,0x85,0x6d,0x3a,0xfc,0xf9,0xc7,0x65,0x66,0x9f, +0x14,0xee,0x61,0xdc,0xc6,0x70,0x39,0xbc,0xe9,0x5d,0xf9,0x46, +0x85,0xab,0xbf,0xc8,0xb7,0xce,0x5a,0xb0,0x1e,0x6e,0x32,0xb0, +0x9e,0x2c,0xd1,0x51,0x79,0xca,0xfd,0xa6,0x67,0x27,0x0b,0x5e, +0x73,0xa3,0xdf,0xa5,0x65,0x3d,0x17,0x19,0x53,0xc2,0xd1,0xde, +0x4d,0xce,0xa9,0x88,0x71,0x4c,0x86,0xef,0x00,0x98,0xf5,0xbb, +0x8c,0x93,0xc3,0x84,0xe5,0x6d,0xd0,0xc5,0x0d,0xd0,0xf6,0x8f, +0x7a,0x13,0x63,0x98,0xd4,0xa0,0x39,0x35,0xf9,0x4c,0x79,0x2a, +0x7d,0xb7,0x88,0x40,0xaa,0x62,0xff,0x47,0xf5,0x69,0x78,0x13, +0xaa,0xd2,0xb0,0x56,0x57,0xd6,0xa1,0x6a,0xdc,0x61,0xcf,0x0d, +0x6b,0xb4,0x02,0xc5,0x35,0xa6,0x35,0xc0,0x8a,0x45,0x5a,0x5d, +0x03,0x2b,0xab,0x4c,0xf1,0xbf,0x91,0x4a,0x37,0xbc,0xd3,0x5d, +0x39,0xa6,0xd9,0x94,0x5e,0xb2,0x5f,0x76,0xb9,0xdb,0x72,0xea, +0x59,0x8b,0x6a,0x88,0xd7,0x84,0xbd,0x37,0xcd,0xc1,0x6f,0x90, +0x3f,0x0f,0x5b,0x8a,0x92,0x8d,0x00,0x17,0x92,0x42,0x85,0xdd, +0xa4,0xa5,0x13,0x1e,0x0d,0x65,0xd5,0xe9,0x61,0x47,0x0b,0x1e, +0x72,0xa3,0x1c,0x5f,0xd9,0x8d,0xd5,0xa2,0x8d,0x20,0xc7,0xa3, +0xdb,0x35,0xe9,0x26,0x13,0xd0,0xed,0x3a,0xfd,0x19,0xa3,0xb5, +0xa3,0x87,0xc2,0x7d,0x81,0x4b,0x05,0x8a,0x2a,0xfc,0x1b,0x3b, +0x64,0x60,0xf5,0xe8,0xcf,0xfe,0x18,0x58,0x53,0x72,0x17,0xee, +0x1f,0x3c,0x03,0xab,0x5e,0xf6,0xa9,0xa6,0xf4,0x67,0xb7,0x0c, +0x34,0x50,0x93,0xeb,0xd4,0xd0,0x2a,0x93,0xe5,0x5b,0x4b,0xa4, +0x08,0x20,0xf3,0x8f,0xd5,0x26,0xab,0xd1,0x49,0x4e,0xa9,0x8e, +0xfe,0x5a,0x6d,0xf2,0xff,0x41,0x4e,0x39,0xc7,0xe1,0x2b,0xeb, +0x16,0xd5,0xfb,0x12,0x07,0x69,0x05,0x8a,0x87,0x60,0x28,0xbe, +0x7c,0xf1,0x2d,0xf9,0xd1,0x87,0x17,0xe5,0xcb,0x7c,0x6b,0x4a, +0x18,0x98,0x72,0x83,0x6f,0x4d,0x25,0x0b,0xef,0x50,0x6a,0xcb, +0x0f,0xd0,0x5f,0xf8,0xd4,0x72,0xa5,0xbc,0x85,0x57,0x02,0xa5, +0xfc,0x01,0xfd,0x84,0xfb,0xdb,0xf0,0x93,0x39,0x91,0xad,0x09, +0x91,0x7e,0xf7,0x40,0xd6,0x01,0xfb,0x12,0xfd,0x41,0xef,0x03, +0xb2,0x26,0xf6,0x63,0xd0,0x81,0x13,0xb8,0xb1,0xe8,0x83,0x5e, +0x02,0x5b,0x13,0x8b,0xb7,0xee,0xd4,0x1f,0xf4,0x3c,0x63,0x21, +0xb1,0x59,0x9b,0x3e,0x38,0xa3,0xb9,0x47,0x27,0xf4,0x71,0x5d, +0x91,0xb2,0x93,0x09,0x11,0xcc,0xc6,0xc2,0x07,0xda,0x58,0x08, +0x66,0x0b,0xa1,0x9f,0xb6,0x10,0x82,0x49,0x89,0x70,0x18,0x98, +0x47,0x73,0x67,0x51,0x97,0x70,0xb5,0xe1,0x9a,0x50,0xdc,0x2f, +0x2a,0xde,0x03,0x0b,0xcf,0xb0,0xb9,0x5e,0x0e,0xe0,0xd9,0xe4, +0x06,0x3e,0x23,0x6b,0x82,0x4d,0x88,0x92,0x3e,0x6c,0x42,0x9c, +0x62,0x13,0xe2,0x27,0xb3,0x9b,0x08,0xd8,0x0d,0x59,0x47,0xec, +0x8b,0x2d,0xc2,0x8f,0x74,0x83,0x12,0xd3,0x92,0xc9,0xc0,0x11, +0xa1,0xe3,0xa1,0x6e,0x54,0x0f,0x8c,0xab,0x43,0x54,0x90,0x68, +0xa6,0x09,0xf1,0xfa,0x89,0x66,0x41,0xb8,0xe7,0x50,0x6a,0x9b, +0xf6,0x91,0x50,0xc7,0xa2,0x56,0x71,0x38,0xc3,0xa5,0x5b,0xdc, +0xd1,0xfb,0x9a,0xfc,0x5c,0x9b,0x14,0xc1,0x6c,0x52,0xfc,0xee, +0x32,0x29,0xb6,0xb1,0xab,0x84,0x67,0x26,0x85,0xd1,0x3c,0x79, +0x12,0x86,0x17,0x4e,0x07,0x19,0xde,0x7c,0xee,0x76,0xac,0xe1, +0x8e,0xd5,0x62,0xf2,0xbd,0x73,0x91,0x76,0x0f,0x57,0x3b,0x4a, +0xf6,0x8d,0xd7,0x01,0x6d,0xdc,0xc7,0xe2,0x37,0x06,0x87,0x54, +0x3e,0x7d,0x68,0xef,0x61,0xfd,0x71,0xca,0x97,0x59,0x6d,0x5b, +0xe9,0x46,0x8a,0x4e,0xc1,0x8f,0x70,0x54,0xf8,0xaf,0x84,0xf9, +0x0d,0x7a,0x74,0xc7,0x7a,0xb5,0x3d,0xcc,0xdc,0x5a,0x85,0x4f, +0x74,0x4c,0xcc,0x67,0xdf,0x01,0x62,0xe5,0xe8,0xff,0xb2,0xfe, +0x03,0x5c,0xfd,0xec,0x93,0x41,0xac,0x7c,0xcd,0xc8,0xee,0xfb, +0x55,0xa6,0xfe,0x64,0xb0,0x62,0x69,0x0a,0x7f,0x32,0xf8,0x83, +0xa4,0xdc,0xe2,0x19,0xa2,0xc2,0x43,0x90,0x5d,0x73,0x55,0xbf, +0x18,0xfe,0x5e,0xd0,0xa4,0x47,0x4f,0xac,0x47,0xf6,0x71,0x6e, +0x3d,0xe3,0x35,0x98,0x8d,0xa3,0xf5,0x87,0x82,0xbd,0x45,0x1f, +0x0a,0x62,0x65,0x6b,0x61,0x4b,0x80,0x3a,0xc6,0x1b,0x58,0x1d, +0xdf,0xe2,0xd2,0x5c,0x36,0xfb,0x4b,0x92,0xd9,0x2f,0x4a,0x6c, +0x05,0xfc,0x16,0x0b,0xe4,0x67,0x6c,0xe1,0xc7,0xe2,0x71,0xe7, +0x63,0x68,0xda,0x8c,0x3f,0x02,0xd4,0x72,0x7d,0x04,0x78,0x96, +0x55,0x4e,0xd5,0x74,0x7d,0x07,0x78,0x9a,0x75,0x0b,0xdf,0x70, +0x7d,0x0a,0x88,0x95,0x7d,0x5c,0x39,0x8f,0x30,0xd5,0xf5,0x35, +0xe0,0x69,0x8e,0x2a,0x4b,0xd5,0x2e,0xff,0x39,0x8b,0x5b,0x72, +0x7d,0x13,0x18,0x20,0x7b,0xba,0xf2,0x1a,0x63,0xad,0x67,0x9f, +0x05,0x62,0x49,0xcb,0x20,0x7a,0x1b,0x18,0x3a,0x8e,0xe4,0x64, +0xd2,0x94,0xd2,0xa0,0x3b,0x03,0x8f,0x16,0xb6,0x9e,0x50,0x53, +0x78,0x7c,0x0c,0x5f,0xe0,0x0a,0x67,0x49,0xe2,0xd3,0xdf,0x93, +0xc9,0xbf,0xae,0xc8,0xe4,0x8f,0x95,0x73,0xa8,0xb1,0x66,0xcd, +0x48,0x4a,0x57,0xd7,0xb6,0xfe,0xf7,0xfa,0x62,0x98,0xcb,0xd8, +0x77,0x61,0x6f,0xd2,0x8c,0xad,0xfc,0x6a,0xda,0xca,0xff,0x5e, +0xdf,0xfd,0x2a,0xb2,0xf2,0x9f,0xd6,0x25,0xf3,0xbe,0x16,0x99, +0xf7,0x95,0x41,0xad,0xfe,0x84,0x0f,0x9b,0xde,0xc2,0x4b,0xda, +0xa9,0xde,0xca,0x44,0xd9,0x1d,0x1b,0xdb,0x4e,0x66,0x92,0x29, +0x55,0x47,0x78,0x9c,0x85,0x23,0x7c,0x50,0xb4,0x5a,0xf6,0x38, +0xa7,0x06,0x75,0x92,0xdd,0x67,0x5b,0xd1,0xab,0x6b,0x24,0x36, +0xc4,0x20,0xc7,0x89,0xbe,0x77,0xaf,0xe5,0xe6,0xec,0x3b,0x61, +0x47,0x2f,0xbc,0xe6,0xac,0xc9,0xd7,0xae,0x92,0x3f,0xb1,0xa8, +0xb7,0xa8,0x53,0x96,0x24,0x30,0x5b,0xab,0x7a,0x85,0xef,0x71, +0x66,0xbc,0xce,0xec,0xf0,0xac,0xf5,0x06,0xae,0xd6,0x6b,0xba, +0x5a,0x4f,0x3b,0x19,0xb2,0x4a,0xf6,0x38,0xaf,0x06,0x75,0x94, +0xdd,0xf9,0xf2,0x48,0xd7,0xd6,0xd4,0x3a,0x5f,0x1e,0xb9,0x9b, +0x97,0xab,0xcf,0x72,0xcb,0xa8,0x48,0x67,0x0a,0x37,0xd4,0x57, +0x37,0x14,0x26,0xbc,0x0a,0x88,0x47,0xe2,0x7b,0x2a,0x9e,0xa9, +0x8f,0xfd,0xc4,0x8c,0xb5,0xaa,0xa9,0x78,0xa0,0xd0,0x87,0xa4, +0xee,0x59,0x61,0x0f,0xff,0xfb,0x5c,0xb3,0x11,0x2a,0xe1,0xb5, +0x1f,0x0a,0x17,0x82,0x9a,0x2a,0x5b,0x70,0x4e,0x3b,0x12,0xcf, +0xf0,0xf0,0xb9,0x9c,0xae,0xea,0x1c,0x9f,0x3c,0x3d,0xcb,0x90, +0x5d,0xf9,0x2a,0xe8,0x58,0x6e,0x6b,0xc9,0x27,0x7c,0x9a,0xf4, +0x16,0xe6,0x0a,0x5b,0x0b,0x68,0xce,0x27,0xb2,0xf9,0x0b,0xcd, +0xa3,0xcf,0x85,0xaa,0x24,0x0e,0x9a,0xc2,0x5f,0x9d,0x6f,0x71, +0x00,0x3a,0x1b,0xbb,0x7c,0x39,0x7a,0x55,0x4a,0x4c,0xb7,0x98, +0xeb,0xb1,0xa5,0x31,0x7b,0xae,0xf0,0x2d,0xcb,0xe1,0xe6,0x4a, +0xeb,0x70,0x73,0x09,0x76,0xdf,0xa7,0xa1,0x2c,0xe3,0x6f,0xc8, +0x91,0x85,0x77,0xa1,0xaa,0x08,0x2c,0x4d,0x76,0x8d,0x0f,0x38, +0x23,0x26,0x1a,0xd2,0x0f,0xeb,0xe4,0x9c,0xda,0x97,0xb6,0x85, +0x43,0x7d,0xad,0x83,0x8c,0x34,0xe1,0x55,0x0d,0x3c,0x76,0xaa, +0x93,0x6a,0x9e,0x86,0x21,0x54,0x0e,0x35,0x13,0xf0,0x6f,0xaa, +0x92,0x7a,0x4c,0x66,0x5b,0x8c,0x21,0x77,0x98,0x65,0x9d,0xbd, +0xd9,0xe1,0x6a,0x25,0x8b,0x6f,0xc1,0xc7,0x0c,0x11,0xcb,0x10, +0x4a,0x55,0xc2,0xa5,0x1c,0x14,0xee,0x25,0xc3,0xd9,0x1e,0xa4, +0xbb,0x1c,0x75,0xca,0x75,0x15,0xe6,0x94,0x8e,0x5b,0xf9,0x0c, +0xf0,0x45,0xf4,0x2f,0x9c,0xcb,0x01,0xe2,0xee,0x13,0xbc,0xb9, +0x96,0x2c,0x89,0x0e,0xef,0x4e,0x13,0x1e,0x2f,0x81,0x8e,0x54, +0x59,0xa7,0x70,0x3d,0xdf,0x11,0xde,0x69,0xc8,0x21,0xa7,0x70, +0x88,0x05,0x2f,0xe1,0x7d,0x63,0xb6,0x08,0xe8,0x0d,0x72,0x18, +0xed,0xad,0xc1,0xd8,0x46,0xf8,0x75,0x03,0x59,0xcd,0x78,0x38, +0xdf,0x32,0xe8,0xad,0xa9,0x23,0x5e,0x0b,0x69,0x77,0x52,0x04, +0x0c,0x80,0x47,0x27,0x94,0x9f,0x95,0x94,0xfa,0x29,0x46,0x82, +0xa5,0xf7,0xc8,0x1d,0x59,0x59,0x7b,0x76,0x66,0x89,0x00,0x78, +0x16,0xf3,0x72,0x9a,0xab,0xf3,0xd5,0x45,0xa0,0xdd,0x15,0xf3, +0x72,0xf2,0x0d,0xf9,0x3a,0x65,0xd4,0x67,0x7c,0x65,0x70,0x9d, +0x2b,0x62,0xdc,0x4e,0x8e,0x18,0x97,0x6f,0x05,0xf9,0x5e,0xae, +0xfa,0x29,0x46,0xb8,0x0b,0xe8,0xb0,0x9b,0xcc,0xc4,0x52,0x87, +0xbe,0xdc,0x93,0xb1,0x67,0xcd,0xf2,0xb5,0x8b,0xde,0x17,0x01, +0x56,0x78,0x67,0x7a,0xbc,0xdd,0x57,0x94,0xab,0x47,0xe4,0xbe, +0xc1,0x23,0xd8,0x30,0x27,0x57,0x04,0x0c,0x04,0xac,0x6f,0xcb, +0x48,0x43,0x1f,0x59,0x79,0x76,0x4a,0x9c,0xb0,0x1e,0x04,0x5c, +0x1d,0xfd,0x69,0xa2,0xb5,0xfc,0x24,0x0e,0xb1,0xd4,0x8a,0xe3, +0x5b,0x2c,0x89,0x4f,0x10,0x9e,0xe5,0x21,0xfd,0x4c,0xc8,0x2a, +0xe1,0x1e,0x4c,0x06,0xe1,0x1c,0x28,0x0a,0x92,0xa1,0x83,0x2c, +0xcd,0xc3,0x2b,0x86,0x39,0x2b,0xcc,0xa2,0xe6,0xbf,0x99,0xdc, +0xd1,0x8c,0x33,0xbf,0x02,0x95,0x4b,0x56,0x4b,0xd9,0x34,0x50, +0xaf,0xdd,0x90,0x7d,0x88,0x58,0x1e,0x9c,0xeb,0x7c,0x85,0x87, +0x43,0xd2,0xfd,0xec,0x0a,0x49,0xf7,0xe3,0xd3,0x90,0x74,0xa2, +0xec,0xdf,0xa0,0xfe,0xff,0x21,0x3d,0xf1,0x78,0x46,0x87,0xb4, +0xb3,0x1a,0xaf,0x2c,0x9f,0x84,0xed,0x5c,0x21,0xed,0xda,0xb5, +0x48,0xdc,0x81,0xad,0x9e,0x45,0xf1,0x9c,0x81,0x5e,0x72,0x6c, +0x1b,0x35,0x2f,0x4f,0x8e,0x95,0x5e,0x38,0x35,0x4f,0x04,0x4d, +0x01,0xbc,0x83,0x3d,0x39,0xa2,0x8f,0xe3,0x5b,0xa0,0x8d,0xf8, +0x33,0xd6,0x4f,0x3b,0xb5,0x2b,0x5d,0x84,0x36,0x82,0x63,0x95, +0x65,0xd9,0xb9,0x2b,0xe3,0x96,0xc5,0x0b,0xcf,0x61,0x90,0x73, +0x41,0x78,0x0e,0x82,0xf2,0xd3,0x3b,0xbc,0xda,0xc8,0xd1,0xed, +0x1e,0x65,0xbf,0x2b,0x3c,0x9a,0x40,0xf2,0xa9,0x5c,0x9c,0x10, +0xf3,0xfd,0x3c,0x0e,0xac,0xd3,0x4e,0x58,0xf7,0x82,0x87,0x79, +0x5a,0x55,0x12,0xee,0xdf,0x42,0xbe,0x17,0xdf,0xd7,0xf3,0xc2, +0x31,0x79,0xe6,0xc2,0x36,0x64,0x8f,0x7a,0xc9,0xa1,0x64,0x36, +0xe7,0x59,0x70,0x81,0x6c,0x22,0xfc,0x2f,0x03,0xd6,0xb6,0xa5, +0xe9,0x80,0x64,0xbe,0x57,0x21,0x73,0x45,0xf6,0x85,0x90,0xe4, +0xaf,0x4f,0xe3,0x84,0x2e,0xe7,0xe7,0x59,0x2b,0x4e,0xef,0xc8, +0x38,0xee,0x16,0xac,0x85,0xb4,0xe4,0xcc,0xf3,0x05,0x9f,0x03, +0x47,0xed,0xa9,0x8b,0xee,0x8e,0xb4,0xfe,0x19,0xe7,0x77,0x66, +0x6e,0xca,0x14,0x01,0x87,0x79,0xb8,0xd2,0x4e,0xef,0x3a,0xb6, +0x21,0xc3,0x43,0x7e,0xad,0xc2,0x9d,0xaf,0x30,0xc2,0x24,0x46, +0xd8,0x2f,0xcf,0x1c,0xd2,0x06,0x07,0x10,0xc2,0x98,0x36,0xaa, +0xa3,0x46,0x58,0x5a,0xb8,0xbf,0x05,0xa4,0x4e,0x76,0x17,0x25, +0x86,0x14,0x07,0xdc,0x1c,0xc9,0x17,0xf8,0x34,0xf4,0x70,0xab, +0x6a,0x8d,0x39,0xc2,0x7d,0x2a,0xd4,0x54,0x69,0x05,0x96,0x7f, +0x0a,0x60,0x21,0xdd,0x60,0x1a,0xe0,0x46,0xf5,0xaa,0xb0,0x94, +0xfa,0x37,0x10,0x72,0x20,0xce,0xcf,0xe7,0xc3,0xb5,0x81,0xa0, +0xc8,0x7a,0xa4,0xd1,0xac,0x99,0xcf,0x51,0xa5,0x2c,0xc0,0xd1, +0x81,0xea,0xe4,0xc7,0x81,0x08,0xdc,0x07,0xb8,0x81,0xdb,0xf1, +0x75,0xa5,0xa9,0xcd,0xfc,0xb1,0xba,0x06,0x3e,0x5e,0x69,0x10, +0xb4,0x06,0x2e,0x87,0x5b,0xf3,0x5f,0xe7,0x3e,0xcd,0xe0,0x3e, +0x0d,0xcf,0x33,0x13,0x38,0xc2,0xa9,0x97,0x1c,0xd4,0x46,0xbd, +0x4e,0x9a,0x45,0x37,0xd9,0x82,0xda,0xae,0x9b,0x76,0x92,0x46, +0x20,0x53,0x47,0x0c,0xe2,0x18,0x6f,0xb5,0x6c,0x69,0x69,0x95, +0x65,0x19,0x8e,0x18,0x74,0x2e,0x64,0xb9,0x6b,0x3c,0x17,0x58, +0x2b,0xd1,0x78,0x36,0x16,0x1e,0x4b,0x61,0x2e,0x47,0x5d,0x3a, +0x96,0x9c,0x71,0x86,0x87,0xd4,0xe0,0x10,0x6f,0x6e,0x8e,0xb4, +0x01,0x19,0xe7,0x78,0x48,0x55,0x3a,0x78,0xc8,0x85,0xf8,0x53, +0xfe,0x40,0x46,0x3a,0x85,0x91,0x8e,0xe7,0x07,0x1e,0x38,0x85, +0x90,0x8e,0x68,0xa3,0xa6,0xea,0x81,0x8c,0x92,0x93,0xf4,0x43, +0x2e,0x61,0x59,0x05,0xa2,0xec,0x4c,0x50,0x31,0x94,0x3d,0x5f, +0xd6,0x15,0xee,0xbd,0x60,0x29,0xbe,0xf7,0x61,0xd1,0x2a,0x7b, +0x5a,0x87,0x14,0x6c,0x57,0x3b,0x3c,0xc4,0xd7,0xa9,0x32,0x56, +0xa6,0x55,0x6a,0xfd,0x8a,0x7a,0xbe,0x01,0xda,0xaa,0x83,0xc2, +0xba,0xeb,0x3f,0xa1,0xc3,0xfa,0x34,0x37,0x56,0xc3,0x85,0x2e, +0x5a,0xa3,0xab,0xc3,0xe8,0x56,0xe0,0xda,0xc2,0x1f,0x74,0x00, +0xca,0x95,0xd7,0x65,0xa0,0x8e,0xe6,0xb9,0x48,0x73,0xd9,0x26, +0x58,0xd1,0x19,0xff,0xe7,0xf8,0x9f,0x8b,0xfe,0x3a,0xfb,0x7d, +0x3e,0xda,0x67,0x3c,0xab,0xc0,0xcf,0xa2,0x7d,0x06,0xfc,0x3f, +0xde,0xde,0x3b,0xae,0xaa,0xa3,0xf9,0x1f,0x57,0x03,0xf7,0xe2, +0x6a,0x90,0xe2,0x91,0x7b,0x71,0x05,0x11,0xb1,0x1b,0x7b,0x4d, +0x2c,0xb1,0x57,0x90,0x62,0xc1,0x1e,0xbb,0x46,0x63,0x12,0xbb, +0x74,0x04,0x51,0xa4,0x48,0x13,0x8d,0x5d,0xc1,0x02,0x2a,0x4d, +0xa5,0x8a,0x28,0xa0,0x68,0x8a,0x60,0x4f,0x51,0x63,0x8c,0x31, +0xcd,0xc4,0x3c,0x29,0x7b,0x70,0x0e,0xe6,0x3b,0xb3,0x07,0xd4, +0xe4,0x29,0x9f,0xe7,0xf5,0xfd,0x7d,0xbe,0xbf,0x7f,0xf4,0x70, +0xcf,0xec,0xcc,0x6c,0x9b,0x9d,0xd9,0xb3,0xb3,0x6f,0x69,0x89, +0xed,0x36,0x33,0xe8,0x4c,0x47,0xee,0xde,0xf9,0x50,0x2b,0x84, +0x53,0xbc,0x49,0x92,0x8e,0x3f,0x09,0x8d,0x70,0xb6,0xeb,0x96, +0x18,0xff,0x06,0x9c,0x6a,0xff,0xc1,0x10,0xbf,0xa0,0x10,0x0d, +0xc0,0xf7,0x69,0xf3,0x97,0x58,0xa8,0xcb,0xb5,0x5e,0xaa,0xb3, +0x8e,0xec,0xf9,0x1a,0xdd,0x5f,0x13,0x88,0xd6,0xeb,0x25,0x8e, +0xff,0xd9,0x70,0xbf,0x44,0xf8,0x6f,0x0d,0xb7,0x84,0xf2,0x94, +0xb2,0xfe,0x17,0x2d,0x37,0x77,0x7e,0x40,0x5c,0x15,0x32,0xd8, +0xd4,0xf6,0x31,0xd7,0xb1,0x4b,0x25,0x2a,0xa8,0x0d,0xb7,0x6b, +0x26,0x81,0x3b,0x37,0x5d,0x17,0xcd,0x08,0x7f,0xd3,0x9e,0x5b, +0xbe,0x43,0xb0,0xa0,0x83,0x94,0xf5,0x81,0xf4,0x6d,0x3e,0x29, +0x3b,0xaa,0xd0,0x2c,0x62,0x3f,0xd4,0xee,0x8e,0x15,0xdb,0xb9, +0xf5,0x25,0x74,0xe4,0x85,0xdd,0xda,0x84,0x90,0x2d,0xeb,0x02, +0xb0,0xe6,0xc3,0xd1,0xf6,0x53,0x41,0xac,0x51,0xa3,0xff,0x5b, +0xe3,0x4f,0xd2,0x51,0x21,0xfe,0x5c,0xfa,0xbf,0xb6,0xdd,0xff, +0x44,0xf6,0x3f,0x98,0xd4,0x7f,0xd2,0xad,0x13,0xec,0x97,0x30, +0xa1,0xd3,0xb9,0xd5,0x8f,0xac,0xca,0x43,0xf4,0x16,0x7d,0x2a, +0x2f,0x5e,0xc9,0x59,0x9d,0xe1,0xcd,0xad,0xfd,0xff,0x0a,0x13, +0x1a,0x79,0x45,0xd8,0x09,0x5b,0x68,0x51,0xa9,0x1e,0xa4,0xb9, +0xf1,0x35,0xb7,0xc4,0x96,0x0f,0x8d,0x7d,0x09,0x2d,0xf4,0x0a, +0xb7,0x9a,0x2d,0xe1,0x42,0xc3,0xaf,0x08,0x5b,0x02,0x00,0xad, +0x24,0x63,0x7d,0x4b,0x58,0xbe,0x84,0x07,0x7a,0x11,0xed,0x76, +0x1d,0x1e,0xa8,0xb9,0x52,0xdd,0x39,0x02,0xcc,0xc8,0xbe,0xd1, +0x48,0x6d,0xc3,0x15,0x83,0xe6,0xfe,0xbf,0x61,0xcd,0x3f,0x14, +0xcd,0x5f,0x02,0x04,0x3d,0x2e,0x2d,0x7b,0x2d,0x22,0xa8,0x4d, +0xa5,0xba,0xf9,0x39,0x22,0xe8,0x7b,0x57,0x0c,0x10,0xfa,0xbf, +0x6e,0xd9,0xff,0x14,0x2d,0x5e,0xa0,0x84,0x16,0x93,0x91,0xd7, +0x51,0x42,0xa1,0x5e,0xa5,0x3a,0xb7,0x0e,0x26,0x74,0xac,0x14, +0x2d,0x6d,0x3c,0x16,0x70,0xd1,0x61,0x42,0xef,0x93,0xa9,0xe7, +0xce,0xe7,0x18,0xbe,0x1a,0xad,0x88,0xd1,0x04,0xf7,0xa6,0xb3, +0x3d,0x43,0x6c,0x79,0x2d,0x4c,0x28,0xb7,0x5e,0x8b,0x53,0x7a, +0x0e,0xc3,0x96,0xec,0xca,0x8d,0x87,0x24,0xd6,0xa7,0xd7,0x95, +0x5f,0x51,0x42,0x83,0xca,0x97,0x16,0x06,0x11,0x1a,0x2d,0x01, +0x41,0xa7,0x6b,0x85,0xb8,0x40,0xfc,0x9d,0x48,0x37,0xfd,0xb7, +0x7e,0xaf,0xc3,0x0c,0xa5,0x25,0xe2,0x3f,0xd1,0x44,0xa3,0x99, +0xa5,0x35,0x62,0x19,0x1a,0xb4,0xbf,0xad,0x11,0x1f,0x8a,0xc6, +0xa4,0x7f,0x13,0xed,0xa8,0x5c,0x2a,0x56,0x4a,0xfc,0x50,0x7d, +0xa9,0x58,0x29,0x41,0x43,0xe5,0x52,0xb1,0x8c,0xc1,0xb7,0x2f, +0x96,0x0a,0xbd,0xcc,0x2c,0xcd,0x19,0x17,0x0c,0x1a,0x2f,0x1b, +0xf4,0xf1,0xd2,0x1c,0xc7,0x03,0x55,0xe0,0x8b,0xbf,0xd7,0x3e, +0x34,0x86,0xd0,0x2e,0x63,0xb4,0x14,0x6e,0x9c,0xfc,0x57,0xdc, +0xd1,0xc5,0x57,0xd0,0x9e,0xd8,0x82,0x75,0xa5,0x1a,0x4c,0x25, +0x2b,0x65,0x93,0xd2,0xa0,0xac,0xc3,0x1d,0xfd,0x91,0x1b,0x57, +0x3e,0x07,0x1e,0x25,0xb2,0x11,0x2f,0x8a,0xd2,0x80,0xfb,0x7f, +0xb0,0x28,0x61,0xf5,0x9a,0xbd,0x04,0x3d,0xfa,0x3e,0x2d,0x50, +0xb5,0xd0,0xa3,0x53,0x2b,0xd5,0x2f,0x9f,0x43,0x8f,0x86,0xca, +0x51,0x30,0x58,0xce,0xa3,0x3f,0x85,0xeb,0x0b,0xe8,0xd1,0x0f, +0xb8,0x61,0x9c,0x1c,0x09,0xa8,0xdf,0x78,0x39,0x21,0x64,0x3b, +0x98,0xb1,0x55,0x88,0xb9,0x89,0xb0,0x47,0xeb,0xd1,0x49,0xdd, +0x28,0xd9,0x7a,0x6b,0xf4,0x36,0x68,0x59,0xa9,0xee,0xe3,0xac, +0x35,0xd3,0x5b,0x0b,0xde,0x81,0xf7,0xb8,0x61,0xc6,0x73,0x10, +0x50,0xa5,0x52,0x8d,0x7d,0x0e,0x02,0xba,0x4e,0x4a,0x1e,0x49, +0x4b,0xe3,0x9f,0xc2,0x51,0xa2,0x93,0x9e,0xd2,0x17,0xc8,0x2f, +0x71,0x81,0xc4,0x97,0x21,0xfa,0x02,0x29,0x9e,0x89,0x26,0x3a, +0x26,0x69,0xd3,0xbd,0x7f,0xc5,0x24,0x5d,0xa7,0x63,0x06,0x13, +0xd7,0xba,0x85,0x52,0x84,0x46,0xe9,0x98,0xa4,0x97,0xf4,0xe5, +0x72,0x8e,0xc4,0x21,0x95,0xeb,0xe5,0x7f,0xa5,0x03,0x86,0x97, +0x23,0xf4,0x65,0x13,0x95,0x70,0x97,0x4a,0x74,0x7b,0x59,0x89, +0xb5,0x9a,0x09,0x97,0x4f,0x1d,0xe2,0x6f,0x11,0x28,0xe3,0x84, +0x02,0xe1,0x37,0x28,0xd4,0xbb,0x05,0x37,0xb8,0xfd,0x0c,0xb6, +0x0a,0x3e,0x12,0x3f,0x32,0xf5,0x81,0x3c,0x71,0xab,0x40,0xf0, +0x0d,0x35,0xe1,0x4d,0x58,0x64,0xd4,0xa2,0xa1,0x3e,0xbd,0x56, +0x0f,0x68,0x1d,0xe8,0x5c,0xe1,0x03,0xf5,0x82,0x32,0x1e,0xdf, +0xbf,0x7f,0x43,0x0d,0x7a,0x13,0xe6,0xe2,0x7b,0x17,0x02,0x17, +0xeb,0x5d,0x72,0x21,0xab,0xb0,0xf6,0x0e,0xbb,0x58,0xee,0xa4, +0xb2,0x6d,0x67,0x2e,0x61,0x98,0xf8,0x4a,0x05,0x6c,0x73,0xbf, +0x15,0x6a,0x6c,0xf5,0xfe,0xb8,0xe1,0x12,0x6b,0x74,0x5b,0x40, +0x34,0xc1,0x41,0x4a,0x10,0xb9,0xbc,0x84,0xc2,0x4b,0x8e,0x3b, +0x6e,0x57,0x40,0x92,0xbb,0xa8,0x1f,0x64,0x84,0x66,0x0b,0x46, +0x73,0xab,0xab,0x0c,0x1d,0xdc,0xd8,0x5a,0xa4,0xbf,0x60,0x6d, +0x10,0x37,0x74,0x21,0xa1,0x1f,0x2b,0xee,0x28,0x74,0xe2,0x0d, +0x75,0xea,0x9b,0x30,0x1d,0x85,0xba,0x92,0x1f,0xdd,0xfb,0xac, +0x2e,0x94,0xb3,0xf3,0x12,0x83,0x74,0x07,0xb7,0xa4,0xab,0x36, +0x06,0xb3,0x73,0x7a,0x7c,0x84,0x4f,0x59,0x5a,0x19,0x6f,0x5c, +0x1f,0x1f,0xc7,0xb2,0x6c,0xad,0x4c,0xb4,0x94,0x4f,0xe2,0x38, +0x64,0xf0,0x66,0xd6,0x2f,0xf8,0xae,0xbc,0xa1,0xae,0xfb,0xb7, +0x7c,0xe7,0xc3,0xef,0x9e,0x44,0x7a,0x59,0x92,0x62,0xbb,0x6c, +0x7a,0x13,0x66,0xd5,0x91,0xf6,0x39,0x7b,0xb1,0x96,0xb4,0x54, +0xa2,0x8c,0xf6,0xe3,0x06,0xf4,0xf7,0xd1,0x08,0xc5,0xde,0x50, +0x23,0x38,0x7b,0x8f,0x89,0x6e,0xb0,0xb7,0xe6,0xb7,0xda,0x76, +0x9f,0x05,0x92,0xc7,0xc6,0x1b,0x18,0x42,0xe2,0x2a,0xfd,0xa1, +0x42,0xc5,0x88,0x8b,0x49,0x67,0x63,0x05,0x6b,0xe1,0x23,0x6e, +0x5c,0x2a,0x39,0x2c,0xb8,0xa1,0xce,0x7c,0x13,0x3c,0x8d,0xb0, +0xbb,0x35,0xd2,0x5d,0x20,0xba,0x6e,0xa6,0xb3,0x32,0x16,0xb4, +0x82,0x4e,0x5a,0x11,0x7f,0xf5,0xeb,0x17,0x6a,0x11,0xcb,0x7f, +0xa7,0x56,0x24,0x0e,0x29,0x83,0x57,0x2d,0x16,0xe4,0x9e,0x2a, +0x75,0x8f,0x11,0x1e,0xc3,0x32,0x65,0xc2,0x77,0x10,0x74,0x45, +0x0d,0x1f,0x89,0xa5,0x60,0x1c,0x58,0x29,0x51,0x72,0xfa,0xfe, +0x0a,0xdd,0xd1,0x98,0x73,0xdb,0x22,0x16,0x6a,0x0e,0x0e,0xd5, +0x01,0x36,0x4b,0x3e,0x76,0x4c,0xba,0x7f,0x01,0x96,0x4d,0xb8, +0x1c,0x66,0x6c,0xb5,0x7e,0xac,0x77,0x1f,0x27,0x9f,0x2f,0x09, +0x71,0x3a,0x98,0x00,0x1c,0xe9,0x02,0xcc,0x42,0xde,0xe4,0x18, +0x83,0xe6,0x4b,0x47,0xf5,0x00,0x83,0x44,0x66,0xc3,0xb9,0x5c, +0x8c,0x73,0xf9,0x67,0x89,0xd4,0xac,0xa3,0x88,0xf6,0x87,0xf3, +0xb8,0x76,0x0d,0x61,0xda,0x4e,0x74,0xe9,0x1e,0x8b,0xf3,0x24, +0x3f,0xe0,0x8a,0xba,0x41,0xca,0xcf,0x86,0x54,0x45,0x27,0xfc, +0x2f,0xb5,0xe0,0xad,0xc7,0xb2,0xff,0x2c,0xdb,0x4a,0xbd,0xa8, +0xb5,0xa6,0xd5,0x0b,0x45,0x6e,0x96,0x22,0x73,0x14,0xcf,0xef, +0x60,0xf9,0x15,0xf5,0xbd,0x91,0x74,0x82,0x78,0x1c,0x58,0x50, +0x95,0x25,0xae,0x68,0x17,0xb9,0x7e,0x39,0x6f,0x48,0x0e,0xda, +0xaa,0x23,0xc2,0xe1,0x1a,0x96,0x74,0xbf,0x1c,0x96,0x79,0xa2, +0xac,0xd6,0xeb,0xc7,0x7a,0xf5,0x75,0x9a,0x78,0xef,0x2f,0x35, +0x2e,0x20,0x68,0xb8,0xa4,0x32,0x22,0x79,0xb4,0xa1,0x16,0x64, +0xd4,0x40,0xf8,0x70,0x97,0xd3,0x8b,0xa5,0x19,0xfb,0x19,0x7a, +0x98,0xf2,0xcb,0xd3,0x0b,0x0e,0xa2,0xfd,0xfd,0x46,0xeb,0x89, +0x2b,0x19,0xea,0x31,0x57,0xea,0xb1,0x4f,0xf1,0xfe,0x0e,0x66, +0x5e,0x51,0xc7,0x8e,0x84,0xd1,0xa4,0xc7,0xab,0xdc,0x3e,0x87, +0x89,0x01,0xb0,0x95,0x37,0x9d,0x8a,0xe3,0xf3,0x0d,0xd6,0x4d, +0x46,0x25,0xf4,0xe4,0xa2,0xe5,0xd3,0xda,0x42,0x8f,0xaa,0x05, +0xfc,0x44,0x8b,0x88,0xdd,0x07,0x4c,0xbd,0xac,0x07,0x16,0x96, +0xd3,0x59,0x2b,0x22,0xb0,0x96,0x8f,0x48,0x4b,0x6b,0x05,0xbd, +0x77,0x95,0xb1,0x04,0x0a,0x0c,0x96,0x02,0x4f,0x72,0xb7,0x69, +0x0c,0x9a,0xf4,0x25,0xd8,0xf1,0xb8,0xa0,0x90,0xa0,0x50,0xd3, +0x66,0x09,0xb4,0x77,0xf6,0x32,0xd6,0xb2,0x0c,0x96,0x79,0x61, +0x2d,0xdd,0xfc,0xc6,0x79,0xd1,0x4a,0xbd,0x01,0x49,0x82,0x43, +0x08,0xd9,0x43,0x5e,0xa1,0x98,0x5c,0x46,0xef,0x1f,0x85,0xe2, +0xec,0xa4,0x2a,0x5a,0x38,0xe5,0xd5,0x5a,0xea,0xea,0x8e,0xec, +0x09,0x8e,0xc7,0xbc,0x32,0xaa,0x62,0x1d,0x3e,0xeb,0x6b,0x68, +0xf9,0x2d,0xc1,0x0a,0x82,0xd0,0x66,0x73,0xbb,0x44,0x26,0x96, +0xd5,0x46,0x0e,0xad,0xbe,0x62,0xb0,0xf8,0x8a,0xea,0xc1,0xd9, +0x2a,0x96,0x00,0xdb,0x6b,0xc3,0x06,0x2d,0x96,0x02,0x05,0x1c, +0x8c,0x73,0xb9,0xdd,0xd7,0x0c,0x5a,0xd7,0x45,0x0a,0x89,0x0c, +0xba,0xd5,0xc6,0x00,0x54,0x70,0xd1,0x15,0xd5,0x9d,0x0a,0x6e, +0x87,0x5d,0xcf,0x2d,0x58,0x2b,0xb0,0xf1,0x10,0x36,0x9d,0xe5, +0xbf,0xd0,0x53,0xda,0xb1,0xcf,0xe1,0x16,0xb7,0x9f,0xce,0xd6, +0xc1,0x65,0xb2,0x63,0xdf,0x56,0x1b,0x95,0x17,0x14,0x5d,0xa4, +0x35,0x6b,0x65,0xd4,0xe2,0x60,0x34,0x11,0xa9,0x87,0xb4,0x76, +0x64,0xcd,0xbe,0xad,0x7e,0x55,0x99,0x20,0x6c,0xba,0x80,0x0d, +0xfe,0x0b,0x6e,0xd2,0xa6,0x71,0xa2,0x1a,0x41,0x46,0xad,0x76, +0x16,0xc9,0x1b,0x32,0x51,0x8a,0xe9,0x4c,0x3e,0xdd,0x90,0x49, +0x81,0x39,0x34,0x67,0x7b,0x8b,0x92,0xce,0x5c,0x76,0xfc,0x40, +0xd4,0xab,0x80,0x04,0xf7,0xdb,0x41,0xc6,0x56,0xef,0x8d,0x25, +0x38,0xe5,0x47,0xdc,0x35,0x9f,0x15,0x71,0x37,0xf4,0x6a,0x1c, +0x08,0x9d,0xd1,0xca,0xa9,0x68,0xc6,0xf9,0x8f,0xb3,0x8a,0x52, +0x4b,0xe8,0xe6,0x49,0x35,0x4c,0x1b,0x28,0x2d,0xda,0xb7,0xd5, +0xf6,0x8a,0xa7,0xb0,0xe9,0xa5,0x0b,0x7e,0x55,0xda,0xb5,0x66, +0x24,0x78,0x98,0x34,0x40,0xc5,0x75,0x06,0xa8,0x0c,0xad,0xca, +0x5d,0xf8,0x80,0x37,0x9d,0x81,0x83,0xa0,0x3f,0x2b,0xd7,0x4a, +0xa5,0x61,0xeb,0xcf,0x4e,0x69,0xa5,0xba,0x61,0xeb,0xcf,0xd4, +0xed,0xf0,0x87,0x70,0xc7,0xc7,0xd7,0x99,0x7a,0x54,0xeb,0xfd, +0x6c,0xb7,0x7c,0x3c,0xad,0x95,0x4a,0x73,0xf7,0x3a,0x13,0x59, +0x70,0x42,0x9a,0x3b,0x1c,0x04,0x4d,0x09,0xa5,0x12,0xec,0x48, +0x52,0x5f,0xce,0x42,0x98,0x78,0x0a,0x69,0xdc,0xf2,0x3a,0x29, +0x64,0xab,0xf0,0xd6,0x7d,0xd8,0x9b,0x60,0xe2,0xb6,0x3b,0xd9, +0xdf,0x54,0x58,0x0c,0xbf,0x7a,0x32,0xde,0x3a,0x10,0x5d,0x3d, +0x69,0xff,0x9a,0x4b,0x9a,0x3e,0xc5,0x75,0x56,0xa6,0x1c,0xab, +0xd6,0x40,0xeb,0x23,0x8d,0x1f,0x4a,0x19,0x8c,0xc6,0xaf,0x56, +0x4a,0x1f,0xaa,0x4f,0x77,0xde,0xca,0x82,0xe5,0x61,0xe3,0xb9, +0x84,0x6c,0x0b,0x8c,0x09,0x0c,0x79,0x56,0xc9,0xf6,0xe6,0x6f, +0x2b,0xbc,0xe8,0x98,0x20,0xea,0x5d,0x80,0x84,0x09,0x9f,0x46, +0x70,0x6b,0x0b,0x56,0xe6,0x98,0x74,0xe3,0x02,0xc4,0x4d,0x10, +0x0d,0xc2,0x8c,0x60,0x33,0x7f,0x4c,0x1b,0x68,0xe0,0x54,0x34, +0xf3,0xfc,0xe5,0xcc,0xa2,0x43,0x67,0x9e,0x5f,0x31,0xda,0x0b, +0xf6,0xa9,0xe9,0x0c,0xf6,0xf1,0x56,0x51,0xec,0xb8,0x59,0xec, +0xb8,0xa0,0x3d,0x99,0x20,0x0e,0x18,0xc2,0xc6,0x8c,0x9d,0x0d, +0x2b,0xc6,0x72,0xe7,0x16,0xb5,0x03,0xa4,0x39,0xd8,0x78,0x3e, +0xef,0xd8,0xde,0xd2,0xe0,0xfe,0x08,0x1f,0x2b,0xa4,0xaa,0x34, +0xb8,0xc5,0xb5,0x06,0x77,0x05,0x5c,0x96,0x06,0x17,0xb5,0x76, +0x90,0x06,0xd7,0xce,0x08,0x07,0x60,0x00,0x12,0x56,0x10,0x61, +0x0f,0x53,0x71,0x79,0x56,0xc1,0xa1,0x22,0x42,0xee,0xcc,0x27, +0x8b,0x2b,0x1b,0xa1,0xb7,0xb4,0xb6,0xff,0xa2,0x11,0x62,0xe0, +0x22,0x99,0x5a,0xe2,0xd6,0xe7,0x86,0x1a,0xf8,0xff,0xa8,0x0d, +0x06,0x43,0xca,0x49,0xa6,0x7a,0x81,0x2f,0x37,0x74,0xac,0xc5, +0x4f,0xdc,0x73,0x85,0xcc,0xfa,0x17,0xd0,0x51,0xf1,0x7e,0xd0, +0xbd,0x87,0xf7,0x03,0xe8,0xf1,0xb1,0x1a,0x3e,0x1a,0x5a,0x18, +0x61,0x28,0xb4,0x55,0x82,0x43,0x09,0xec,0xaa,0x38,0xe9,0xec, +0xc7,0x8e,0xdb,0xbf,0x2c,0x87,0x25,0x9e,0x15,0x21,0x68,0xc8, +0xc7,0xf8,0x90,0x59,0xe3,0x4d,0x8e,0xb0,0xc2,0xc4,0xe2,0x8f, +0x1c,0xb7,0x9f,0xa7,0x37,0x0f,0x83,0x8d,0xc0,0x97,0x8e,0xee, +0x45,0x68,0x97,0xd3,0x0b,0x3f,0x4c,0x2b,0xd6,0xe1,0x3c,0x7b, +0x9a,0x08,0xce,0x71,0x3f,0xce,0x74,0xb2,0x98,0xbf,0xe0,0xcc, +0xcf,0x2f,0x68,0x2f,0x5c,0xb8,0xc5,0x5d,0x06,0xee,0xf0,0x50, +0x47,0xf7,0xdc,0x89,0x5e,0xc7,0x17,0xaa,0x45,0x9d,0x0a,0xdd, +0x3e,0x56,0x37,0x48,0x15,0x66,0xc1,0x38,0xe5,0x5f,0x14,0xfc, +0xdf,0xd3,0xca,0x4a,0xb5,0xd4,0x9c,0xc8,0xd6,0xa3,0x12,0x9b, +0x49,0x09,0xf1,0x9b,0xe2,0xf3,0xa0,0x67,0x0f,0x9f,0x07,0xe0, +0xf6,0xb1,0xfa,0xde,0x68,0x68,0x4e,0x4a,0x8c,0xe2,0xb6,0xa9, +0x7a,0xac,0xd2,0x5e,0xb4,0x0c,0xdb,0x16,0xb8,0x35,0x90,0x0e, +0x00,0xc8,0xc5,0x25,0xa9,0xe4,0x23,0xc7,0x1d,0x5f,0x96,0xc2, +0x12,0xef,0x8a,0x60,0xa3,0xab,0xdf,0x38,0xc2,0x01,0xbd,0x4b, +0x3a,0x14,0x24,0x16,0x7f,0xe8,0xb8,0xe3,0x3c,0xbd,0x79,0x18, +0x44,0x38,0xa0,0xa3,0x7b,0xea,0xcb,0x0c,0xea,0x80,0xc1,0x8b, +0xc5,0x79,0xa6,0x2b,0x51,0xb0,0x1f,0x83,0x97,0x9f,0xb4,0x6e, +0x68,0xe7,0x51,0x87,0xb9,0x52,0x87,0xbb,0xca,0xc4,0x07,0xbd, +0x7b,0x4c,0x7a,0x00,0x4d,0x3f,0x56,0xc7,0x8e,0x86,0x46,0x04, +0xa8,0xe2,0xce,0xed,0xb3,0x99,0x18,0x06,0xd1,0x64,0xeb,0x5f, +0x34,0x19,0xb7,0xfb,0x90,0xf9,0x6a,0x31,0x14,0x9c,0xe8,0xfd, +0xb9,0xe0,0x0a,0xc6,0x10,0xd8,0x9f,0x4d,0x95,0xc9,0x0f,0xfa, +0xf6,0x98,0x2c,0xeb,0xe1,0xc5,0x2d,0xcf,0xb3,0xbe,0x5a,0x1e, +0xad,0x0d,0x76,0x1b,0x31,0x62,0xd5,0x3e,0x57,0xc2,0x44,0x03, +0x6e,0xd9,0x9f,0xbe,0x07,0xd7,0x87,0x79,0x94,0xd2,0x6d,0x66, +0xaa,0x33,0xa4,0x19,0x3e,0xf6,0x52,0x44,0x5b,0x38,0x0e,0x6d, +0xe9,0x5a,0xe2,0x8d,0x4c,0xfc,0xac,0xd9,0xe0,0xe2,0x81,0x02, +0x17,0x48,0xd5,0xbe,0xe1,0x4e,0x8b,0x99,0xe6,0x86,0xe3,0xfc, +0x27,0x78,0x0d,0x6d,0x78,0xde,0x81,0x42,0x33,0x6f,0x7a,0x06, +0x67,0xf1,0x27,0x5a,0x57,0x5c,0x5a,0x5e,0x22,0xb4,0xbb,0xc1, +0xc0,0x4e,0x97,0xa4,0xd9,0xd3,0x26,0xc3,0x42,0x14,0x63,0x9d, +0xcc,0xde,0x0c,0xef,0xa1,0x63,0x85,0x5a,0x88,0x59,0xa5,0x30, +0x4b,0xbc,0x22,0xde,0xbe,0x00,0x19,0x5a,0x4b,0x1d,0x2e,0xd4, +0xd2,0x97,0xb5,0xd3,0xf2,0x68,0x3d,0xc2,0x27,0x31,0x1b,0x0e, +0xe0,0x7a,0x84,0x4c,0x83,0x25,0xd3,0x7f,0xf0,0x56,0x2a,0x83, +0xf3,0x70,0x4f,0xc9,0x2d,0xa7,0xb0,0x2f,0x8a,0x20,0xdc,0x23, +0xb8,0xcd,0x05,0xb6,0x8d,0x5b,0x97,0xb0,0x73,0xb0,0x64,0x22, +0x76,0x43,0x1b,0xbf,0x31,0x04,0x21,0x7e,0x8f,0x7a,0x0a,0xd7, +0x5d,0x1d,0x92,0xad,0x20,0xb1,0x08,0x8d,0xee,0x79,0x22,0xf9, +0x26,0x90,0x16,0x25,0xec,0x0f,0x0b,0xea,0x8f,0xcb,0x47,0x8b, +0x53,0xcf,0xe8,0xb8,0xac,0x11,0x56,0x22,0x06,0x1e,0xe3,0x12, +0xf4,0xd2,0x90,0xf4,0x79,0xd0,0x83,0x46,0x43,0xcf,0xda,0x21, +0x89,0x55,0x1f,0x5e,0x87,0x51,0xba,0xbf,0x08,0xab,0x5e,0x80, +0x55,0x3f,0xab,0xb9,0x50,0x4c,0xc0,0xed,0x22,0x98,0x58,0xa9, +0x75,0xd6,0x3d,0xfa,0x51,0x0c,0x5a,0x7d,0x8c,0x0b,0x17,0x36, +0xfd,0x07,0x90,0xbc,0xb7,0xb6,0x7b,0x62,0xaf,0xd0,0xc2,0xf5, +0x05,0xb4,0xe6,0x76,0x1f,0xd1,0x45,0x90,0x17,0xe4,0xc2,0x85, +0x55,0xf5,0xd4,0x72,0x94,0x27,0x6a,0xe8,0x65,0x2d,0xf4,0x89, +0x1a,0xfb,0x21,0xae,0x49,0x3f,0xb4,0x62,0x6a,0xe1,0x47,0xd4, +0x0b,0x11,0x0c,0x3a,0x40,0xb1,0xee,0xa2,0x23,0x57,0x97,0x8f, +0x71,0x55,0x43,0xae,0x7b,0x61,0x27,0xad,0x6a,0x8f,0xe9,0x24, +0x64,0x31,0x9d,0x84,0xb4,0x7b,0x48,0x27,0x21,0x2b,0x75,0x34, +0xd3,0x3f,0x94,0x1f,0x02,0x8d,0xe7,0xb2,0xb2,0xd2,0x53,0xd3, +0x92,0x12,0xb6,0x45,0x6e,0x0b,0x13,0x1d,0xc0,0xca,0x94,0x7f, +0x06,0xda,0xfc,0x11,0x90,0x18,0xb8,0x25,0x90,0x5b,0xbe,0xc1, +0xf6,0x1c,0x4b,0x3c,0x9e,0xeb,0x28,0xdc,0xb8,0xed,0x33,0x36, +0x6c,0xd9,0x8c,0xee,0xee,0x2e,0x5f,0x98,0x82,0x12,0x03,0x23, +0x03,0x43,0xfc,0x82,0x4c,0x9b,0xa3,0xf6,0x1e,0x4f,0x3c,0x11, +0x75,0xd2,0xfc,0x47,0x39,0x5c,0xf7,0x14,0xad,0x0d,0x9b,0x06, +0xcd,0xf0,0x84,0xa6,0x83,0xf3,0xa7,0x99,0x3e,0xc9,0x2b,0xc8, +0x4c,0xcb,0x48,0x4a,0xd8,0xb1,0x25,0x69,0x83,0xb0,0x75,0x33, +0xf9,0x77,0xd4,0xc1,0x4d,0x1d,0x3e,0x61,0x35,0x4e,0x74,0x5c, +0x72,0x22,0xe1,0x1b,0x39,0xd1,0xbd,0xf0,0xc9,0x84,0x6a,0xe4, +0x44,0x27,0x24,0x6f,0x10,0xaa,0x91,0x13,0x7d,0xfe,0x9c,0x48, +0xa8,0x46,0x4e,0x6c,0x28,0x70,0x42,0x35,0x72,0xa2,0x6f,0x9b, +0x0e,0x3a,0xaa,0xe9,0xf7,0xca,0x8f,0xdc,0x3e,0x9e,0x75,0xd0, +0x51,0x4d,0xcb,0x09,0xd5,0xf4,0x31,0x1d,0x93,0xcc,0x93,0x00, +0x47,0x73,0xe4,0xa7,0xcb,0x1e,0x06,0xde,0x24,0x56,0x3f,0x03, +0xe9,0x44,0x57,0xbb,0xff,0x21,0x71,0x8c,0xe6,0xb0,0x36,0xd0, +0xee,0xa9,0x99,0x3d,0x65,0xea,0x2e,0x85,0x0c,0xec,0x55,0x26, +0x9a,0x1b,0x6a,0xc6,0x57,0x72,0xfb,0x53,0x0c,0xbc,0x95,0xa1, +0xc1,0x3d,0x36,0x74,0x94,0xf8,0x56,0xdc,0x5a,0x5e,0xf1,0x3e, +0x88,0x3b,0x65,0x63,0x68,0x85,0xd4,0x3a,0xed,0x87,0xc6,0x9a, +0xf1,0x5b,0x25,0xf1,0x04,0xcd,0x9a,0x7d,0x36,0xa4,0xef,0xd3, +0x58,0x1d,0x67,0x93,0x30,0x2f,0xf7,0x72,0x1b,0x23,0x83,0x66, +0x2e,0x4e,0xc5,0x33,0x2e,0x97,0xe4,0x9e,0x3c,0x7a,0x92,0x37, +0xfc,0x94,0xf6,0x97,0x9a,0xe8,0xd8,0x9a,0x0d,0x83,0xb6,0x05, +0x6e,0x09,0x08,0x32,0x6b,0x29,0x77,0x08,0x5e,0x33,0xa2,0x4a, +0x94,0x11,0xbc,0x26,0x72,0x3f,0xa0,0x88,0x88,0xc1,0xda,0xde, +0x9b,0x62,0xa9,0x94,0xf0,0x78,0x94,0x52,0x38,0xb3,0xb8,0x38, +0x23,0xeb,0x60,0x0e,0x85,0x2a,0xbc,0x75,0x35,0xcb,0x89,0x85, +0xaf,0xe9,0x23,0x67,0x41,0x9e,0x8b,0xa8,0x1f,0xcc,0x6d,0x8e, +0xb3,0x3d,0x27,0x92,0x32,0xa3,0x4e,0x9b,0x7f,0x3b,0x0f,0x9b, +0x7c,0xae,0x1a,0x36,0x0f,0x7d,0x7f,0x2a,0xb7,0x2e,0x62,0x04, +0x97,0xc6,0x6d,0x73,0xd9,0xe6,0xee,0x8b,0x7d,0x3b,0xf7,0xb2, +0x52,0xaf,0xbb,0xa2,0x9a,0x77,0x86,0xf4,0x42,0x35,0x77,0xc2, +0x11,0xae,0x78,0x53,0x65,0xb2,0x14,0xb1,0x76,0x30,0x41,0x45, +0x4e,0xd5,0xc5,0x0d,0x52,0x0a,0x66,0x49,0xac,0x92,0x1c,0xf4, +0x21,0x08,0xa6,0xcc,0x54,0x98,0x97,0x91,0x95,0x92,0x1d,0x0b, +0x94,0x64,0x63,0xca,0xcf,0x6d,0x29,0xea,0x85,0x70,0x9b,0x13, +0x6c,0x37,0xdd,0xbc,0x7f,0xca,0xfc,0xdb,0x39,0xd8,0x34,0xf1, +0xaa,0x61,0xd3,0xb0,0x15,0xbe,0x1e,0x5e,0xe3,0x2a,0x4d,0x3a, +0x4e,0x59,0xf0,0x06,0x13,0x79,0xae,0xc7,0x08,0xb0,0xad,0x92, +0x28,0x44,0x3d,0xc3,0xe6,0x9e,0x0b,0xa7,0xbc,0xd6,0xdb,0x4a, +0xbd,0xd1,0x8e,0xdb,0xee,0x65,0x9f,0x0e,0xe9,0xc7,0x9b,0xf4, +0x92,0x28,0xa8,0x8f,0xd1,0x0d,0x68,0x3a,0x82,0xfa,0xe1,0x34, +0xf5,0x43,0xc3,0x3f,0x65,0x3f,0x3c,0x0e,0x83,0x5b,0x84,0xcb, +0xd9,0x9e,0x9b,0x3f,0xf8,0xd7,0xef,0xda,0x6a,0xed,0xb8,0x69, +0xdb,0xbf,0x7c,0x57,0x05,0xef,0x70,0x87,0x0f,0x59,0xf5,0xcf, +0x74,0x96,0x9b,0x37,0xcd,0xa0,0x27,0xa2,0xaf,0x99,0x48,0xb0, +0x27,0xd2,0x9a,0x7c,0xaf,0x70,0xeb,0xb7,0x75,0x30,0xcd,0xe7, +0xef,0xb8,0xa3,0x05,0x0b,0xef,0xc9,0x9b,0xf4,0x67,0x4f,0x77, +0x11,0x8a,0x66,0xf5,0x06,0x99,0xaa,0x21,0x1b,0x66,0x18,0xb2, +0x45,0x3f,0xad,0x3d,0xb7,0x4f,0xa5,0x76,0x3b,0xa1,0x08,0xbf, +0xc1,0x5a,0xbc,0xec,0xa6,0xcb,0xf8,0x7a,0xc8,0xf3,0x76,0xa3, +0xa5,0x93,0xba,0xe9,0xbf,0x6b,0x32,0xee,0xb6,0x8e,0xfd,0xf7, +0x4d,0x05,0xab,0x61,0x21,0x6f,0xfa,0x1d,0x4e,0xdc,0x91,0x68, +0x93,0x61,0x37,0x37,0x39,0xa0,0x32,0x30,0xfd,0x25,0x1d,0xc3, +0xc0,0x8d,0x3b,0x04,0x51,0xab,0xa4,0xc8,0x51,0xfd,0x91,0xde, +0x2a,0x81,0xdc,0x2e,0x9e,0x70,0x38,0x07,0xf0,0x96,0x5d,0xa8, +0x35,0xe0,0x17,0xf8,0x90,0x70,0x38,0x1f,0xea,0x38,0x9c,0x1f, +0x4b,0x1c,0xce,0x91,0x94,0x59,0x3d,0x80,0xf3,0x95,0x7f,0x67, +0xfa,0x32,0x14,0xa7,0xad,0x22,0x3a,0x85,0x1b,0x26,0x4b,0x28, +0xce,0xf1,0x55,0x13,0x25,0x14,0xe7,0xb9,0x4b,0x3a,0x14,0x67, +0x9c,0xe8,0x7c,0x41,0x87,0xe2,0x5c,0x20,0xa1,0x38,0xd3,0x72, +0x09,0x8a,0x73,0xd6,0xec,0xa5,0xad,0x9d,0xad,0xab,0xc3,0xc9, +0x57,0xda,0x0a,0x16,0x22,0x74,0x98,0x76,0xfa,0xaa,0x88,0x14, +0x16,0x90,0x58,0xa5,0x7e,0x62,0xd4,0x7a,0xc0,0x4a,0x45,0xe2, +0x44,0xed,0xce,0x48,0xca,0xc1,0x48,0x2c,0x8f,0x45,0x0e,0x5d, +0x33,0x79,0xb2,0x27,0x6f,0x58,0xc8,0x82,0x36,0x70,0xdb,0x1c, +0x56,0xc0,0x9b,0xac,0x61,0xdd,0xf3,0x67,0x9a,0x78,0xf3,0x2a, +0xd6,0x09,0xa2,0x94,0x47,0x23,0x3a,0x3e,0x3d,0xc1,0xc2,0xca, +0x27,0x84,0x0c,0xd9,0xf0,0xc6,0x46,0x73,0x57,0x98,0xa3,0xe0, +0xba,0xb4,0xfa,0xaa,0x38,0xa9,0xd9,0x32,0xf9,0x3f,0x5d,0xe6, +0x58,0xad,0xa8,0xd3,0x94,0x5a,0x31,0xc3,0x5f,0x88,0x36,0x68, +0x1f,0x8a,0x11,0x0a,0xb1,0xfa,0x6f,0xa4,0xa2,0x23,0x0d,0x16, +0xbc,0xe1,0x5a,0xa6,0xcb,0x14,0xef,0xc0,0xe6,0xea,0x5b,0x0c, +0x59,0xcf,0x23,0xd6,0x1b,0xab,0xd4,0xdc,0xe1,0x10,0x81,0xac, +0xd7,0x0d,0xd3,0xf6,0x4a,0xd6,0xfd,0x95,0xbc,0x33,0xe9,0x99, +0xfb,0xb2,0x75,0x10,0xe1,0xc7,0xd0,0xd8,0x74,0x2a,0x37,0x3d, +0xe3,0x40,0x96,0x0e,0x1f,0xf4,0x04,0x98,0x29,0x2f,0xff,0xb5, +0x5f,0x43,0x93,0x82,0xa2,0xd0,0x29,0x08,0xd9,0x10,0x41,0x1a, +0x6c,0xcb,0xce,0x77,0xfc,0xaa,0x0c,0x96,0x78,0x5d,0xc0,0xe9, +0xbb,0x66,0xca,0x14,0x6f,0xdf,0x8b,0x38,0x95,0x82,0xb7,0x04, +0x87,0x05,0x87,0x9a,0x68,0x03,0x23,0x8b,0xf0,0x41,0x4b,0xcb, +0x60,0xb1,0xd7,0x43,0x43,0x64,0xf7,0x65,0x93,0xfb,0xf4,0x24, +0xbd,0xea,0x73,0xdb,0x43,0xec,0x9b,0x11,0x9d,0x48,0x2f,0x1f, +0xd8,0xc5,0xcd,0x01,0x4c,0xeb,0xf9,0x91,0xe2,0xb7,0x70,0xe4, +0xda,0x51,0xcd,0xfd,0xc4,0xfa,0x11,0x10,0xae,0xdd,0x66,0xf9, +0xce,0xd6,0xdc,0xba,0x23,0x43,0xd5,0x4c,0x9c,0x8d,0x62,0x22, +0x60,0x0c,0xb7,0xca,0x40,0xc3,0xaf,0x04,0x88,0xb8,0xe1,0xe8, +0xde,0xba,0x9c,0x63,0xa3,0xd7,0x8e,0x6c,0xae,0xfe,0x20,0xea, +0x01,0x63,0xe1,0xc6,0xd9,0xeb,0xd6,0x2e,0x9d,0xef,0xe8,0x5e, +0xe1,0xfb,0x8f,0x7f,0x54,0x9c,0xa9,0xc8,0x5c,0x9b,0xf6,0xd6, +0x1e,0xa7,0x38,0x63,0x67,0x1c,0x03,0xeb,0x0d,0x3e,0xf3,0x0f, +0xe5,0xe7,0x65,0x1d,0x3a,0xef,0xbc,0xcb,0x70,0x2e,0xeb,0xdd, +0x99,0x33,0xe6,0xbf,0x3b,0x91,0x50,0x56,0x97,0x10,0xd8,0xe7, +0x9a,0xea,0x09,0xb4,0x01,0xe5,0xaa,0xf8,0xff,0x20,0x96,0x8b, +0xf9,0x90,0xef,0x21,0x56,0xbe,0x06,0xef,0x42,0x2f,0x0d,0x43, +0x34,0xd7,0x5f,0x71,0x80,0x75,0x63,0x4b,0xb5,0x61,0x9c,0x77, +0x62,0x62,0xe7,0x04,0x45,0xa4,0x89,0x3f,0xc9,0x7d,0xf0,0x56, +0x44,0x1b,0x88,0xa5,0x2f,0x17,0x44,0xa0,0x7a,0x40,0x24,0xb7, +0xdd,0xc3,0x44,0x86,0xa8,0x19,0x45,0xb8,0xba,0xe5,0x0a,0xce, +0xc2,0x30,0x06,0x73,0xa1,0xa7,0x04,0x89,0xa8,0x4c,0xa0,0x43, +0x56,0x17,0x2d,0x03,0xa6,0x0c,0x09,0xeb,0xdd,0x5c,0x7d,0x27, +0x8a,0x90,0x78,0x9b,0x12,0xca,0x2e,0x37,0x98,0x99,0x58,0x4e, +0xe9,0x35,0x54,0x5d,0xf0,0x17,0xe7,0xb8,0xdd,0x3e,0x99,0x4d, +0x63,0xf3,0x1b,0xdb,0xca,0x3a,0xa3,0x3b,0xd1,0x93,0x37,0xfe, +0x81,0xa1,0xa7,0x61,0x85,0x2b,0x23,0x52,0x43,0x34,0x6a,0xcb, +0x5b,0x54,0x30,0xe2,0x37,0x79,0x70,0x58,0xcf,0xe6,0x22,0x4a, +0x6c,0x22,0xc8,0x88,0x52,0x6e,0xb5,0x88,0xad,0x17,0xbe,0x63, +0xc2,0x0f,0x82,0xf7,0xb3,0xfb,0xd4,0xdf,0x2b,0xa9,0xbf,0x97, +0x54,0xa9,0x5b,0x86,0xe3,0x9a,0x69,0x21,0x16,0x0f,0xd3,0x56, +0x62,0x7f,0x2f,0x11,0x7b,0xb1,0xda,0x25,0xd8,0x38,0x3a,0x36, +0x6a,0x85,0x12,0x52,0xa7,0xee,0xd3,0xd9,0x0c,0x5b,0xbc,0xc9, +0x32,0x36,0x5e,0x87,0x46,0xbd,0x94,0xb5,0x36,0x7d,0xee,0x1e, +0xa7,0xad,0xc6,0xee,0xe8,0x3b,0x07,0x18,0x7c,0x17,0x1d,0xce, +0xe7,0x0d,0x3d,0xd9,0x8c,0x45,0xcb,0x7d,0xeb,0xa6,0x47,0x2c, +0x32,0x0e,0x19,0xa6,0x9d,0xb8,0x2a,0x36,0xa0,0xb0,0xe8,0x2a, +0xf5,0x82,0xb1,0x26,0x44,0x6b,0xc2,0xed,0x32,0xe9,0x06,0xd1, +0x5f,0x15,0x17,0xa6,0xee,0x13,0x45,0xda,0x55,0xc3,0x2d,0x77, +0x45,0xed,0x0f,0x43,0xb4,0xfe,0x86,0xda,0x92,0x81,0x58,0xf2, +0xdd,0x61,0x5a,0xdc,0x55,0xb1,0x06,0x4b,0x06,0x55,0xa9,0x87, +0xa9,0x64,0x03,0xd9,0xe1,0xcb,0x61,0x8a,0xa2,0x0d,0xfa,0x69, +0x08,0x1c,0xc1,0x98,0x69,0xaf,0xf8,0x7c,0x88,0x01,0x76,0x5b, +0x68,0x83,0x7e,0x55,0x07,0xc9,0x39,0xb2,0x4c,0xa9,0x2d,0x31, +0xfc,0x05,0x17,0x1a,0xc8,0xdd,0x64,0xe1,0xf7,0x29,0xc3,0x67, +0x2f,0x35,0x80,0x2f,0xd1,0x15,0x55,0xa9,0xea,0x70,0x88,0x47, +0xba,0xb0,0xba,0xb9,0x34,0x8c,0x37,0x6d,0x46,0x67,0xf1,0x70, +0x2c,0xfe,0x38,0xa2,0xcd,0xd3,0x18,0xf6,0x09,0x2c,0x57,0xd6, +0x25,0x04,0x47,0xae,0x0b,0x5a,0xb9,0x9e,0xdb,0x66,0xb3,0x33, +0x8e,0x87,0x06,0xac,0x32,0x76,0x9d,0xe2,0x0d,0x9b,0xba,0x3a, +0x65,0x7b,0x8a,0x66,0xc5,0x77,0x4e,0x9d,0x39,0x65,0x8e,0x89, +0xde,0x91,0xb8,0x73,0xcb,0xce,0x50,0xb3,0xd8,0x07,0x8e,0x39, +0x17,0x2c,0x49,0x97,0xe9,0xb5,0xf3,0xf5,0xe3,0xe1,0x75,0x6d, +0x71,0x4c,0xca,0x18,0x44,0x4d,0x10,0xd3,0x4b,0x81,0x49,0x1d, +0x86,0x75,0xee,0xf8,0xe3,0x30,0x31,0x49,0x4c,0xfc,0xf1,0xea, +0x0f,0xdf,0x75,0xb8,0x0a,0x13,0x9d,0xc5,0x02,0x78,0x53,0xf1, +0xf5,0x98,0x8a,0x4e,0x4f,0x07,0x6e,0xdb,0x96,0x89,0x0e,0xa2, +0xc3,0xc5,0xa9,0x53,0x9c,0x70,0x40,0x0d,0x60,0xb7,0x20,0x91, +0xbb,0xee,0x60,0xe9,0x51,0x39,0xbc,0xf9,0xaa,0xe7,0xfd,0x18, +0x5e,0xa5,0x1e,0x7a,0xde,0x8f,0x0b,0x65,0x3f,0xc6,0xd3,0xf0, +0x35,0xcb,0xe4,0x25,0xbd,0x49,0xc3,0xf1,0xed,0x9a,0x61,0xda, +0xbe,0xab,0x22,0x08,0x4b,0x6c,0xc2,0x99,0x4e,0x4d,0x8a,0xc3, +0x38,0x83,0xb2,0x95,0x5e,0x57,0xd4,0xad,0x7d,0x0d,0xda,0x07, +0x6b,0x12,0xc6,0xab,0xf1,0xa9,0x96,0xf0,0xca,0x0d,0xf1,0x91, +0xf6,0x99,0x51,0x8e,0x42,0x98,0xaf,0x39,0x2b,0x5f,0xa9,0x1b, +0x2a,0xb4,0x0d,0xf7,0xd5,0xad,0x97,0xb4,0x2f,0xa0,0x02,0x7d, +0xb3,0xa2,0xcb,0x06,0xa9,0x11,0x94,0x52,0xe1,0x3f,0x2e,0x69, +0x7f,0x18,0xd4,0xc5,0x10,0xa9,0x1c,0x15,0x2e,0x83,0xe2,0x57, +0x40,0x3b,0x4b,0x98,0x60,0x58,0x29,0xda,0xd1,0x49,0x57,0x17, +0x4b,0xe8,0xe0,0x51,0x6d,0x75,0x51,0xf6,0xcf,0x7f,0x54,0xb8, +0x29,0xe5,0x48,0xb5,0x66,0x5a,0xe1,0x4d,0x03,0xb8,0x89,0x86, +0xd5,0xf5,0xd8,0xc3,0xb7,0x8d,0x05,0xb4,0x66,0xe7,0xc4,0xd0, +0x02,0x64,0x87,0x7e,0x42,0x4b,0x61,0xc9,0x1b,0x26,0xb3,0x0d, +0x1b,0x63,0x2c,0xf7,0x64,0x6e,0xcb,0xc9,0xe3,0x0d,0xab,0xd9, +0xe6,0x81,0x84,0x1e,0x3e,0xae,0x8a,0x5b,0xf5,0x66,0x27,0x12, +0xb3,0xf2,0x1d,0xa3,0x78,0xc3,0xd7,0x59,0xe7,0x85,0x93,0x3a, +0x75,0x2d,0x9a,0x69,0x3a,0x7b,0x36,0x23,0x27,0xe5,0x54,0x8c, +0xdc,0x1b,0x15,0xf5,0xc1,0xd6,0xb4,0xf8,0x35,0xc3,0xa6,0xde, +0x3d,0x36,0xf7,0x54,0x63,0xc9,0x15,0x1a,0xcc,0x9d,0x57,0xbd, +0x10,0xfa,0x2a,0x0a,0xbd,0xff,0xbf,0x26,0x94,0xe0,0x71,0xa4, +0xc4,0xee,0xdc,0xaa,0x33,0xbb,0x0f,0xdb,0x6a,0xde,0x20,0x51, +0x7b,0xa4,0xa8,0x7a,0xdc,0x6e,0x2f,0x3b,0x83,0x6b,0xba,0x65, +0x1a,0xfd,0xe8,0x87,0x3f,0xb6,0xbe,0xc7,0xed,0x92,0xe9,0x2e, +0x4f,0x13,0xb7,0x0c,0xab,0x05,0xb3,0xd9,0x78,0x53,0xdd,0x68, +0x84,0xd6,0x5a,0x33,0x4e,0x17,0x56,0x99,0xb4,0x0e,0x84,0x96, +0x36,0x8c,0x96,0xf9,0xf6,0xca,0x86,0x1f,0xc4,0x3c,0xb1,0xe0, +0x69,0x23,0x16,0x2e,0xe1,0xd2,0x2e,0x10,0x5c,0x5a,0xbc,0x44, +0xa9,0x19,0x46,0xa0,0xaf,0x0e,0xd9,0x44,0xf9,0xb5,0xcc,0xb9, +0xaa,0x2d,0xf2,0x92,0xd7,0xb0,0x89,0xc0,0xd2,0x86,0x11,0xca, +0xcc,0x4b,0xbf,0x46,0x8b,0x48,0x32,0x19,0x17,0x94,0x83,0x62, +0x22,0x3a,0x0e,0x74,0x59,0xdf,0x97,0x74,0xfb,0x48,0x7d,0x92, +0x4e,0xf8,0xaf,0xf6,0xc7,0x49,0xd9,0x78,0x52,0xf6,0x0f,0xa9, +0xec,0x5a,0x5c,0xc6,0x2d,0x97,0xa0,0x13,0xda,0x99,0xbd,0x0e, +0xc9,0xdc,0xb4,0x52,0x3e,0x6a,0xa3,0x5b,0xf2,0x96,0xe1,0x44, +0xba,0x91,0x48,0xc5,0x2b,0xd5,0xf5,0xd9,0x17,0xd5,0x1f,0xb1, +0x3e,0x4f,0x6f,0x12,0x4c,0x4c,0x1b,0xee,0x74,0x51,0xa7,0x9b, +0x44,0x8b,0xb4,0x84,0xa9,0xcb,0x90,0x84,0xaf,0x21,0xe1,0x67, +0x48,0xd8,0x0f,0x09,0x6b,0xe1,0x53,0x6d,0x79,0xe3,0xb6,0xec, +0x86,0x3a,0x43,0xc9,0x9b,0x56,0x59,0x54,0x90,0x93,0x96,0xc3, +0x1b,0x7e,0xc6,0x24,0x9a,0xd3,0x27,0xc5,0xf9,0xd9,0x47,0xb3, +0x93,0x12,0xe5,0x7d,0x4c,0x04,0x5a,0x5a,0x70,0x06,0xda,0x0a, +0x16,0x88,0x2e,0x7e,0x40,0xb0,0x39,0x20,0x78,0x53,0x94,0xe5, +0xde,0x8c,0xc4,0xac,0x42,0x6e,0x75,0x81,0xf9,0x76,0x1d,0xe9, +0xfa,0xb5,0x29,0x28,0x89,0x3b,0x45,0xb3,0xf1,0xa0,0xf4,0xb1, +0x52,0x2f,0x42,0x6b,0x45,0x34,0x18,0x0a,0x0d,0x20,0x54,0xff, +0x6f,0x99,0x4c,0xae,0x7a,0xf4,0x02,0x2d,0x75,0x4c,0x1d,0x5a, +0x2a,0xfe,0xa8,0x3d,0x83,0xb9,0x35,0x0f,0x58,0x4d,0xea,0x73, +0x08,0xd3,0xd4,0xe7,0x10,0xa6,0xa9,0xcf,0x21,0x4c,0x53,0x9f, +0x43,0x98,0xa6,0x3e,0x87,0x30,0x4d,0xad,0x83,0x30,0x4d,0x7d, +0x01,0x61,0x3a,0xa6,0x0e,0xc2,0xf4,0xd1,0x0b,0x08,0xd3,0xd1, +0x2f,0x20,0x4c,0xbd,0x18,0x38,0xc8,0xa4,0xaf,0x50,0xfa,0x67, +0x99,0x0e,0x61,0x3a,0xfa,0x39,0x84,0x69,0xea,0x0b,0x08,0xd3, +0xd1,0xb5,0x10,0xa6,0xa9,0xff,0x02,0xc2,0x74,0x1d,0x5b,0x00, +0x06,0xba,0xd4,0xb4,0x87,0x8e,0x51,0x9a,0x58,0x25,0xce,0x94, +0xfd,0x2e,0xaf,0x36,0x2d,0x53,0x82,0xb9,0x55,0x12,0x1b,0xfd, +0x9e,0xd1,0x6d,0xe1,0x14,0x50,0xa0,0xbe,0xd3,0xd9,0xb7,0xe8, +0x80,0xfe,0xe1,0x93,0xe6,0xb8,0xd8,0x04,0x6e,0xf5,0x29,0x86, +0x67,0xe2,0xd5,0xc0,0xe4,0x20,0xf9,0xb1,0x9f,0xdb,0x4f,0x64, +0x18,0xbe,0x52,0xee,0x94,0xfd,0x22,0x06,0x16,0x94,0xb8,0x03, +0xf5,0x6f,0x89,0xfa,0x32,0x67,0xe7,0x09,0x38,0x7d,0x82,0x51, +0xdc,0x09,0x1d,0xcf,0xb4,0x03,0xd6,0xa7,0x5f,0xcd,0x51,0xf6, +0x13,0xba,0x93,0x33,0xcf,0x4c,0xae,0xee,0xcc,0x60,0x3f,0xa5, +0x40,0xd1,0xfb,0xc3,0x1e,0x62,0x7e,0x07,0x98,0x03,0xfd,0xb8, +0xb5,0x2b,0x23,0x38,0xb5,0x99,0xb5,0x19,0x56,0x23,0x09,0x50, +0xc9,0xfb,0x73,0x43,0x29,0xe5,0x57,0xb5,0x07,0x47,0x1d,0xb9, +0x34,0x9f,0x92,0xa6,0x3c,0x44,0x60,0x47,0x02,0x82,0x9b,0xc1, +0x0d,0xef,0xeb,0x52,0x8e,0x3e,0x75,0x27,0xb4,0x52,0x78,0xf6, +0xb4,0xb2,0x36,0xbd,0xaa,0x8e,0x72,0x59,0x07,0x58,0x02,0xfd, +0xb4,0x5f,0x91,0xf7,0x22,0x09,0x5b,0x7a,0x87,0x60,0x4b,0x77, +0x40,0x34,0x23,0x92,0xe7,0x39,0x55,0x3e,0x62,0xe6,0x79,0x6e, +0x5f,0x83,0x95,0xe9,0x48,0x79,0x52,0x6f,0x83,0x05,0x8c,0x13, +0x16,0xa3,0xa0,0xc0,0xe8,0xf2,0xdf,0x27,0x4a,0x9d,0x84,0x86, +0x0a,0xb7,0x42,0xff,0xd5,0xbe,0x13,0x25,0x49,0x35,0xbe,0x25, +0x1a,0xd3,0xad,0xae,0xe5,0x32,0x43,0xca,0xee,0xf7,0x97,0xb2, +0xa3,0xec,0x17,0xd0,0x79,0x6e,0xca,0x8e,0xc2,0x9f,0xbb,0x40, +0xac,0xf8,0xb3,0x36,0x27,0xca,0x0e,0x3b,0x3f,0x5c,0x55,0x6a, +0x53,0xa2,0xec,0xe7,0x63,0xcb,0xf2,0xc6,0xbb,0xa4,0xae,0x43, +0xdd,0xa8,0x27,0xdd,0xae,0x11,0xb8,0x69,0x25,0x8e,0xbf,0xd9, +0x64,0x0a,0x56,0xc2,0x72,0x6f,0xb1,0xdc,0xfb,0xa6,0xfa,0xb5, +0xb1,0x66,0x15,0xa4,0x71,0xbb,0x30,0x94,0x92,0x44,0xde,0xe2, +0xe2,0xab,0xe2,0x30,0x79,0x8b,0xf4,0x3f,0x79,0x8b,0x6a,0xb8, +0x38,0xa5,0xd4,0xd2,0x0e,0xd6,0x56,0x1a,0x6b,0x3a,0x88,0x99, +0x44,0xae,0x4e,0x83,0x4f,0x15,0x9c,0x03,0x56,0x09,0x18,0x52, +0x65,0x14,0x38,0xee,0x1f,0xb9,0xce,0xd8,0x7d,0xc1,0x4c,0x68, +0xd6,0xc1,0xa9,0x68,0xe6,0xe5,0xc2,0xbc,0xac,0xa3,0x99,0xe6, +0xf8,0xb8,0x44,0xca,0x51,0x76,0x02,0x0b,0x53,0x71,0xbe,0x65, +0xcd,0x44,0x31,0x8c,0xc2,0xba,0x77,0xab,0xc4,0x31,0x0a,0xeb, +0xb8,0xdd,0x5d,0x86,0x43,0xe9,0xd2,0x0b,0xac,0x53,0x17,0x60, +0x9f,0x45,0xe9,0x58,0xa7,0x8f,0x14,0xff,0x6d,0x01,0x18,0x0b, +0x06,0x06,0x63,0xcc,0xb4,0x2f,0x3d,0xe9,0x38,0x65,0xa9,0xb6, +0xbe,0x00,0x30,0x41,0xb4,0x37,0x84,0x0d,0x98,0x31,0x0d,0x1a, +0xf5,0xca,0x9b,0x21,0xa7,0xad,0x9e,0xaf,0x83,0x72,0xda,0xa2, +0x53,0x99,0x97,0x6f,0xa9,0xfb,0x7a,0x23,0xd0,0xd7,0xf3,0x17, +0x2b,0x46,0x40,0xe0,0x3e,0xc6,0x6d,0x1f,0xb0,0xb7,0x6e,0xaa, +0xc7,0xb8,0xfd,0x20,0x06,0x67,0x95,0x1b,0xa2,0x33,0x37,0x36, +0x23,0xac,0xd4,0xe5,0x5a,0x17,0x06,0x3b,0x15,0x7f,0x11,0x3e, +0x02,0xd7,0x73,0xe7,0x76,0xec,0x31,0x34,0x63,0x6a,0x53,0x1c, +0x41,0x6d,0xd8,0x7a,0xcd,0xe7,0x69,0x67,0x56,0xbe,0x86,0x51, +0x26,0x8f,0x2f,0x1c,0xae,0xac,0xcb,0xe4,0x69,0xc3,0x96,0x50, +0x8e,0xcc,0x97,0x62,0xa1,0x98,0x08,0x27,0xbc,0xc5,0xd2,0xbe, +0xb0,0x08,0xda,0x70,0xc7,0x71,0x0c,0x29,0xd2,0x0c,0x1f,0xfa, +0xd0,0xb8,0x5b,0xad,0xa7,0xf3,0xb4,0xa1,0x4c,0xe7,0x23,0x0a, +0x74,0xfa,0x63,0x0c,0xb7,0x33,0x32,0xed,0x5d,0x48,0x57,0x42, +0xbe,0x14,0xf3,0xb1,0xe4,0x31,0x6f,0xb1,0xb8,0xaf,0xcc,0xe4, +0x69,0x51,0x43,0x18,0x1a,0x74,0x80,0x9e,0xb5,0x65,0xea,0x6c, +0xb8,0xa7,0x04,0x6d,0x0b,0x88,0x0a,0x0c,0x46,0x27,0x37,0x22, +0x9a,0xdb,0x2e,0x64,0x47,0x46,0xbe,0x6f,0x6c,0xb9,0x70,0x12, +0x58,0x83,0xa5,0x53,0x58,0xb6,0x56,0xcc,0xfc,0xef,0x8b,0x40, +0x74,0x6d,0xcb,0xbc,0x45,0x68,0x5f,0x08,0x82,0x36,0x2d,0xd9, +0x09,0xc3,0x2f,0xb7,0xe2,0x77,0x5c,0x74,0x8e,0x4c,0x38,0x35, +0xff,0x52,0x39,0x77,0x6b,0xce,0xa0,0xb9,0xe9,0x4c,0x1e,0x7a, +0x0f,0xb3,0x85,0xbf,0x72,0x53,0x3d,0x3e,0x58,0xf3,0x80,0xe5, +0x53,0xc4,0x72,0x03,0x76,0x60,0x08,0x67,0x7d,0xd9,0xdb,0xda, +0x44,0x6e,0x9a,0xc7,0x48,0xe6,0x7c,0xcd,0x87,0x3b,0xf7,0x64, +0x3f,0x54,0x72,0xf3,0x6d,0x1c,0x5a,0x68,0x57,0x33,0xb0,0x91, +0x5a,0xc8,0x46,0x4a,0x43,0xaf,0x45,0xcc,0x2d,0xa1,0xfb,0x36, +0x95,0xa0,0xbb,0x62,0xae,0x98,0x04,0xe9,0x9e,0x62,0x51,0x7f, +0x98,0x87,0x9a,0x5b,0x0f,0x67,0xea,0xaf,0xa2,0x11,0x37,0x6f, +0x65,0xb2,0x37,0xd7,0x41,0x2e,0x01,0xc4,0xf2,0x16,0xbf,0x33, +0xe1,0x02,0xfb,0x14,0xf0,0xf8,0x69,0x34,0xec,0x96,0x07,0xdf, +0x2b,0xc7,0x18,0xc4,0x4d,0xe8,0x82,0x55,0x0b,0x8c,0x0a,0x08, +0x0e,0x0a,0xa1,0x50,0x78,0x6f,0x76,0xe2,0xc9,0x73,0x8e,0x87, +0x46,0xad,0x40,0xd3,0x31,0x19,0x6c,0xc1,0xc2,0xa9,0x68,0xf6, +0xc5,0xf3,0xa7,0x4f,0x1d,0x3e,0x65,0x8e,0xc3,0xf9,0x91,0x10, +0x26,0xcc,0xa0,0x98,0xce,0xe4,0x5a,0x6a,0xd3,0x76,0x23,0xaf, +0x3f,0x84,0x07,0x8d,0x9a,0xfe,0x4c,0xe4,0xc1,0x17,0xca,0xda, +0xf8,0x90,0xc8,0xf5,0x41,0x7e,0x41,0xa6,0x8d,0x51,0xa9,0xb5, +0x09,0x5f,0x71,0x15,0xda,0x7d,0x77,0xca,0x5f,0x1b,0x31,0x76, +0x3a,0xac,0x18,0x71,0xc2,0xc7,0x24,0x4c,0xb9,0x77,0x33,0x8a, +0x32,0x77,0x26,0xec,0xda,0xb2,0x2b,0x0c,0x1d,0x2a,0x2b,0x53, +0x46,0xa9,0x25,0xf2,0x78,0x9d,0x3d,0x80,0x25,0x84,0x51,0xbb, +0x82,0xb7,0x8a,0x66,0x12,0x99,0xd6,0xed,0x47,0x36,0x79,0xd4, +0x62,0x78,0xcf,0x37,0x7d,0x92,0x49,0x38,0x67,0xdc,0x3b,0x72, +0x26,0xed,0x83,0xad,0xbb,0x23,0x77,0x6e,0x14,0x29,0x5d,0x24, +0x44,0xad,0x3e,0x73,0x16,0xc3,0xf2,0x89,0x62,0xf9,0xe4,0x9b, +0xea,0x35,0x9a,0x39,0x29,0xdc,0x6e,0x03,0xe1,0xd5,0x2a,0x6a, +0xf8,0x40,0x83,0x16,0xbb,0x36,0xc1,0x5d,0x8d,0x48,0xb1,0x6c, +0x7d,0x1d,0xbd,0x51,0xca,0x7d,0xc3,0xb6,0xdd,0xa5,0x79,0x29, +0x9f,0xab,0xeb,0xca,0xb5,0x75,0x9f,0xa9,0x1b,0xcb,0xb5,0x4a, +0xc8,0xac,0xcb,0x7e,0xc3,0x8a,0x0c,0xa5,0x92,0x8f,0x2a,0xb4, +0x47,0x06,0x75,0x16,0xac,0x57,0x0e,0x0b,0x85,0x92,0x7b,0xb8, +0x25,0x8c,0x46,0x97,0x87,0x0f,0x0a,0x3b,0x0c,0x8a,0x25,0xb8, +0xb9,0xab,0xd5,0x15,0x06,0xa9,0xb4,0x8e,0x7e,0x5b,0x9e,0xc7, +0x70,0xa9,0x33,0x95,0xe9,0x0e,0x99,0xf6,0x55,0x95,0xfa,0x95, +0x51,0xeb,0xa7,0xad,0x51,0x26,0x89,0x81,0xd3,0x28,0xa8,0xd3, +0x16,0x1b,0xb5,0x0c,0x31,0x59,0xc9,0x9b,0x95,0x77,0x3a,0xfd, +0xd8,0xbe,0x13,0xe6,0x58,0x19,0x64,0x3d,0x76,0x31,0x9d,0xcc, +0x4a,0x4b,0x3f,0x70,0x9c,0x8e,0x2f,0xc6,0x46,0x3c,0x71,0x35, +0x9d,0xce,0xeb,0xf2,0x08,0x5c,0xd8,0xa6,0x98,0x5d,0xe9,0x89, +0xc7,0xa2,0x72,0xcc,0x0f,0xce,0xc3,0x62,0x9f,0x8b,0x86,0xcd, +0xee,0x6b,0x66,0x4e,0xf6,0xf5,0x3d,0x67,0x0a,0x49,0x0c,0xde, +0x12,0x12,0x16,0x28,0x3f,0x57,0xed,0x4c,0x4f,0x38,0x91,0xe3, +0x58,0x7a,0x1e,0x16,0xf9,0x3c,0x34,0x6c,0x1e,0xfc,0xce,0x8c, +0x3e,0x83,0xac,0xc4,0x5b,0x38,0x9d,0xae,0xe2,0x8c,0xbc,0x1b, +0x77,0x2b,0xf1,0x72,0x72,0x58,0xa9,0x69,0x15,0x76,0xa3,0x67, +0x30,0x0c,0x6f,0x1e,0x37,0x41,0xab,0xcf,0xfc,0x60,0xab,0x22, +0x16,0xc3,0xa2,0x2a,0x91,0x2a,0x41,0x05,0xdc,0x09,0x0f,0x50, +0xfe,0x45,0xa0,0x02,0x76,0x3d,0x98,0x9a,0x00,0xb7,0xb9,0xa3, +0x27,0x43,0xdb,0x30,0x92,0x6c,0xc3,0x8a,0x4a,0x91,0x01,0x85, +0x06,0x6b,0x5f,0xa6,0x55,0x56,0x19,0xb4,0x7e,0x84,0xde,0x3b, +0x70,0x7a,0x95,0x7a,0x66,0xb8,0xe6,0x4b,0x75,0xf2,0x54,0x72, +0x67,0xe5,0x9f,0x4e,0x4f,0xc7,0x3a,0xc5,0xc4,0xd2,0x19,0xcc, +0xc7,0xae,0x7a,0x9d,0xd2,0x65,0x9d,0x36,0x3d,0x71,0x33,0x9d, +0xce,0xed,0xf2,0x10,0xeb,0x14,0x11,0xb3,0x2b,0x2d,0xe9,0x78, +0x54,0x96,0xf9,0x41,0x09,0x2c,0x9e,0x84,0x75,0xf2,0x58,0x33, +0x6b,0xca,0xd4,0x29,0x25,0x14,0x40,0x46,0xbe,0xa8,0x53,0xfc, +0xf1,0x6c,0xc7,0xb2,0x12,0x58,0x34,0x09,0xeb,0x34,0x04,0xeb, +0xf4,0x26,0xd5,0x29,0x17,0xeb,0xe4,0xca,0x5f,0xcd,0x66,0xea, +0x3a,0xf8,0x8a,0x9b,0xfd,0x31,0x7c,0xac,0x78,0x16,0xc4,0xfc, +0xc4,0x3b,0x23,0x60,0xad,0x1e,0x3a,0xa2,0x82,0x19,0xa4,0xe0, +0xcf,0xca,0x14,0x31,0x70,0x56,0x95,0xba,0x8b,0xdb,0xc7,0x31, +0x28,0xc2,0x82,0x5d,0xb8,0x53,0x4f,0x26,0x3e,0x21,0x6c,0xde, +0x85,0xe7,0x61,0xa1,0x01,0x32,0xd1,0xc2,0x04,0x88,0x8d,0x68, +0x61,0x5a,0xb2,0xdd,0x86,0x7b,0xb7,0x76,0xef,0xc9,0x77,0x5e, +0x77,0xc1,0xd2,0x7f,0xc1,0xa8,0xf5,0x23,0x9a,0xab,0x3f,0x3d, +0x51,0x4a,0xb4,0x41,0x93,0x44,0x03,0x69,0x76,0xdc,0x98,0xb8, +0x0e,0xfe,0x94,0x39,0x78,0xb4,0x52,0x7c,0x03,0xbb,0x0d,0xb0, +0x1d,0xe7,0xdd,0xdf,0xf3,0x0c,0xb9,0xd5,0x3c,0x56,0xfe,0x2c, +0x98,0x2e,0xc8,0x76,0x63,0xb9,0xda,0x14,0x32,0x46,0x8b,0x74, +0x63,0xf4,0xb6,0x34,0x46,0x14,0x12,0x7e,0x57,0x15,0xbf,0xbd, +0xd4,0x39,0xb8,0xdc,0x32,0x70,0x0a,0x77,0x5d,0xa4,0xdb,0xa6, +0x8f,0x5e,0xb6,0x4d,0x6e,0x94,0x6a,0x78,0x8c,0x6c,0xd3,0x68, +0xf8,0x0a,0x03,0xcb,0xaf,0xc6,0x18,0xa4,0x7d,0x0a,0xd6,0xed, +0x53,0xba,0xb4,0x4f,0x0b,0x24,0x33,0xde,0xaa,0x39,0x8b,0xa2, +0x3c,0x1f,0x69,0xa6,0xaa,0xbf,0x66,0xea,0x0e,0x78,0xc0,0xad, +0xa6,0xb0,0xf3,0x8e,0x47,0x46,0xbd,0x6f,0x74,0xa9,0xb3,0x4d, +0x59,0xcf,0x42,0x58,0xc0,0x73,0xdb,0x14,0xd2,0x17,0x23,0x27, +0x2c,0x7e,0x5c,0xda,0xa6,0x0a,0xe7,0xc8,0xf8,0x93,0x0b,0x2e, +0x95,0xe7,0xe6,0x1d,0xc9,0x95,0xdb,0x7e,0x2d,0xea,0x2c,0xd4, +0xd7,0x2c,0x4f,0xf3,0x25,0x5b,0x84,0x4f,0x39,0xda,0x14,0x32, +0x45,0xdf,0x57,0x91,0x29,0xc2,0xbf,0xb1,0x11,0x08,0xe4,0xb8, +0x94,0x37,0x1f,0xcc,0xd4,0xdf,0xb8,0xb9,0x2f,0xa1,0x3c,0x97, +0x53,0xcb,0xff,0xca,0xed,0xbb,0xb2,0xda,0xce,0x6a,0x6d,0xe0, +0x4e,0xc7,0x19,0x9a,0xa6,0x14,0x05,0x26,0xa0,0xc9,0xd9,0x89, +0x26,0x67,0xbf,0xf8,0x44,0x9a,0x9c,0xd7,0xea,0xac,0xa9,0x34, +0x39,0x7b,0xd0,0xe4,0x94,0x38,0xa6,0x8e,0x5a,0x69,0x6c,0x23, +0x4d,0xce,0x2b,0x4e,0x85,0xb3,0x2f,0x95,0x9e,0x3e,0x75,0xe4, +0xb4,0x39,0x7e,0x6b,0xc2,0xe6,0xf8,0x70,0x34,0x39,0x4d,0x75, +0x93,0xb3,0x0b,0x79,0xfd,0x21,0x26,0xd0,0x40,0xed,0xce,0x54, +0x4b,0xb8,0xab,0xac,0x8d,0x43,0x93,0x13,0xe8,0x17,0xac,0x9b, +0x9c,0xa3,0xd2,0xe4,0x5c,0xd4,0xee,0x7b,0xa0,0xc9,0x09,0x1f, +0x31,0x76,0x26,0xac,0xac,0x35,0x39,0x77,0x32,0xce,0x64,0x3c, +0x37,0x39,0x46,0xdd,0xe4,0xb4,0x9a,0xc1,0x66,0x57,0xa9,0x3b, +0x87,0x6b,0x03,0x68,0x1c,0x8f,0xa1,0x71,0x7c,0x32,0xfd,0xe8, +0xbe,0x63,0xfa,0x38,0xde,0xf4,0xb8,0x9d,0xe9,0x64,0x46,0xda, +0xd1,0x03,0x69,0xdc,0xb2,0x29,0xeb,0x40,0x83,0xf8,0x4b,0x9a, +0x7c,0x41,0xf4,0x81,0x64,0x53,0xcc,0xce,0xc3,0x89,0x47,0xa2, +0x8f,0x9b,0x1f,0x14,0xc3,0xe2,0x29,0x17,0x0c,0x9b,0x26,0xad, +0x99,0x33,0x75,0xd6,0x94,0x62,0x53,0x08,0x46,0x93,0x21,0xe1, +0x34,0x94,0xa3,0x3e,0x38,0x1a,0x7f,0x24,0xea,0x84,0xb9,0xac, +0x18,0x16,0x4d,0x79,0x68,0x88,0x18,0xb3,0xec,0xad,0xfe,0x23, +0x69,0x28,0x1f,0xc7,0xd6,0x69,0x59,0x3b,0x3d,0xc3,0x4b,0x4c, +0x2b,0xc1,0x0e,0x3c,0x43,0x70,0x7a,0x6e,0xf5,0xb6,0xfc,0xe4, +0x4a,0x74,0xcc,0x47,0xce,0xa2,0x27,0xbc,0xab,0x88,0x23,0xe7, +0xe0,0x88,0x41,0xcc,0x86,0x15,0xca,0xda,0xd8,0xd0,0xcd,0x7e, +0x41,0x84,0xda,0x1d,0x7d,0x60,0x6f,0xd2,0x81,0xe8,0x54,0xb3, +0xf8,0xe0,0x9c,0xf6,0x8f,0x89,0x22,0xc5,0x10,0xec,0x3b,0xe2, +0x6d,0xf4,0x20,0x9d,0xcd,0xb5,0x86,0xa7,0xb2,0x4a,0xad,0x24, +0xc3,0xb3,0x80,0xdb,0xf9,0xb0,0x18,0x88,0x55,0xd4,0x78,0x34, +0x82,0x3b,0xd7,0xa1,0x11,0x4c,0x38,0x68,0xd9,0xe6,0x9a,0x28, +0xa0,0xc8,0x0f,0xfb,0xeb,0x04,0xf5,0xd7,0x4f,0x34,0x53,0x66, +0x56,0xa9,0xbb,0xb9,0x7d,0x01,0x13,0x47,0x50,0x33,0xd1,0xd2, +0xc8,0x9d,0x70,0x61,0xe1,0xc6,0xbb,0xf0,0x09,0x1a,0xc9,0xb0, +0x32,0x2d,0xec,0x33,0x35,0xee,0x02,0x06,0x86,0x64,0x24,0xcf, +0x5c,0xd4,0x9b,0x3e,0x0c,0x8d,0x88,0xfa,0x6b,0x85,0xf6,0xab, +0x41,0x5d,0x04,0x6b,0xd0,0x48,0xda,0x91,0x91,0x34,0x53,0x5c, +0xb8,0x4a,0x98,0xc9,0x48,0xda,0x59,0x42,0x7b,0xf7,0x6a,0x03, +0x19,0x49,0x6c,0x66,0x39,0x1b,0xed,0x56,0x51,0x26,0xe8,0x4a, +0x4a,0x87,0xe4,0x76,0x63,0x59,0x5b,0x58,0xca,0x9d,0xd7,0xca, +0x47,0x75,0x12,0x9c,0xe6,0x0e,0x15,0x14,0x27,0x14,0xdc,0x34, +0xd4,0xbc,0x27,0x12,0x69,0x93,0xb2,0x28,0x33,0x93,0xf6,0x92, +0x63,0x25,0x98,0x3b,0xfa,0x60,0x04,0xe6,0x9e,0x99,0x9a,0x8d, +0x9d,0xb3,0x05,0x63,0xbd,0x86,0xd0,0x08,0x63,0x37,0xa8,0xff, +0x5b,0x88,0xbe,0x3f,0x15,0x88,0x7d,0xb2,0xfb,0x58,0xd2,0x09, +0x34,0x99,0xbf,0x9f,0x87,0x48,0x9f,0xeb,0x86,0x4d,0x23,0xdf, +0x9b,0x36,0xc1,0x67,0xcc,0x15,0x53,0x70,0x62,0x10,0x9a,0x4c, +0x5a,0xba,0xe5,0xfe,0xe5,0xf1,0x1c,0xc7,0x2a,0xa2,0x10,0xf5, +0x0d,0x9b,0xfa,0x2e,0xf4,0xed,0xdc,0xcf,0x4a,0x04,0xc0,0x41, +0xba,0x44,0x9c,0xb7,0x10,0x4c,0xed,0x0e,0x15,0xd5,0x3b,0x49, +0x95,0x4d,0x52,0x95,0xb7,0x39,0x4b,0x60,0xe8,0x2f,0xdc,0x10, +0xb6,0xdc,0xe8,0xc0,0x44,0x14,0xf4,0xe7,0x16,0xd7,0x68,0xe9, +0x0d,0x14,0xb1,0xc3,0x61,0x0f,0xb7,0xae,0xcf,0xfe,0x90,0xbb, +0x51,0x6f,0xc9,0xdd,0x28,0x8f,0x0a,0xdf,0x7f,0xfc,0x52,0x71, +0xe6,0x62,0xd6,0xda,0xb4,0x39,0xfc,0xd5,0x95,0xb5,0x71,0x5e, +0xc2,0x4d,0x35,0x81,0x2e,0xf8,0x3f,0xc8,0x59,0x3f,0xf6,0xbe, +0x36,0x90,0x9b,0xf7,0xb0,0xea,0x5f,0xd8,0x5c,0x6d,0xa0,0xb2, +0xe1,0x7b,0x0c,0xf3,0xe6,0xd4,0x8c,0x45,0xe7,0x71,0x3e,0xf4, +0xe0,0xcd,0x57,0x33,0x71,0x4e,0x01,0x4d,0xa4,0x09,0xcd,0x38, +0x1a,0x5d,0x79,0x68,0x23,0xa2,0x64,0xd4,0xf7,0x0b,0x81,0x64, +0x37,0xe1,0x0e,0x1b,0xa8,0xa4,0x3a,0x05,0xce,0xf3,0xa6,0xf7, +0x6b,0x99,0x70,0x03,0xa1,0x8c,0x6e,0x56,0x7e,0x10,0xb3,0xce, +0xc3,0xac,0xef,0xc5,0xdb,0x65,0x70,0x02,0x6a,0x08,0x68,0xf4, +0x17,0x36,0xa7,0xf6,0x75,0xb4,0x08,0xa7,0xe0,0xaf,0x04,0x83, +0x3f,0xaf,0xd1,0x5b,0xfd,0x60,0xb2,0xe5,0x38,0x83,0x9f,0x98, +0x3c,0x66,0xe3,0x41,0xf0,0x7a,0x76,0x9f,0x2a,0x1c,0x25,0x2b, +0x1c,0x40,0x2a,0xa2,0xa3,0x39,0x82,0xdb,0x1f,0xa3,0x5f,0xd3, +0xe5,0xaf,0x31,0xb2,0x19,0x92,0xb1,0x19,0xea,0xc9,0x66,0x68, +0x0e,0x1b,0xb9,0x22,0x43,0xeb,0x8f,0xe4,0xfb,0xfd,0xdc,0x2e, +0x80,0xf2,0x2e,0xf3,0x78,0xd3,0x9d,0x68,0x34,0xdb,0x11,0x96, +0xf6,0x39,0x6e,0x7a,0xff,0x45,0x9f,0xa6,0x73,0x4b,0x0c,0x36, +0xf7,0xd4,0x62,0x69,0x97,0xaa,0x17,0xd8,0x84,0xe5,0x12,0x4c, +0x5b,0xe6,0x60,0xb6,0x23,0x30,0x6d,0x65,0xbc,0xba,0xb9,0xbf, +0x51,0x4b,0xa0,0x9d,0x8a,0x2d,0xa9,0x96,0xd0,0xe0,0x86,0xb8, +0x44,0x9e,0xb4,0x3b,0x8b,0xd5,0xfa,0x73,0xa7,0x72,0x49,0x47, +0xf0,0xda,0xdc,0xe2,0x7f,0xe2,0x0b,0x30,0x90,0x3b,0x84,0xe0, +0xe8,0x12,0xac,0x0d,0x38,0x8e,0x17,0x2b,0x21,0xfc,0x9a,0x28, +0xed,0xf6,0x44,0xac,0x6c,0x43,0x18,0xdc,0x77,0x31,0xf0,0x7c, +0x42,0xac,0x05,0x3a,0xd9,0x12,0x7d,0x3b,0xb1,0x52,0x5c,0xe9, +0xfc,0x2d,0xae,0x77,0x0d,0x72,0x36,0x1a,0xdd,0x16,0x4d,0x96, +0x61,0x53,0xf1,0x9c,0x4b,0xe7,0x4e,0x53,0xd8,0x14,0xbf,0x35, +0x51,0x86,0x4d,0x4e,0x7a,0xd8,0x14,0x18,0x6c,0x0e,0xa2,0x08, +0x6b,0xd1,0xd7,0x46,0x3d,0x7c,0x7a,0x53,0x66,0x7a,0x52,0xf8, +0xd4,0x40,0x66,0x7a,0xda,0x7d,0x5b,0x97,0xe9,0x69,0x5d,0xc1, +0xac,0xc5,0x7c,0x3d,0x79,0xf3,0x6f,0x01,0xd4,0x62,0xee,0x92, +0xca,0x5e,0xbc,0x5b,0xd4,0x01,0x1d,0xb8,0x7e,0x35,0x47,0xf0, +0xdd,0x5c,0x7c,0xe7,0xca,0x58,0xb9,0xd6,0x52,0xc1,0x90,0x37, +0x41,0xd0,0x17,0x4b,0xcb,0xb7,0xf5,0x4c,0x4e,0x0f,0xb1,0x40, +0x8f,0xb2,0x8c,0xd3,0x90,0x72,0x0e,0x52,0xda,0x8c,0x60,0xd0, +0x07,0xf6,0x2b,0xd0,0x51,0xd8,0x8e,0xd4,0x93,0x36,0x47,0x19, +0xa0,0x92,0x50,0xb7,0x1d,0x25,0xea,0xf6,0x7c,0x3d,0x69,0x93, +0x82,0x2d,0x58,0x4f,0x25,0xaf,0x62,0xc9,0xf5,0x62,0x91,0x4c, +0xd9,0x9c,0xaf,0xa7,0x6c,0x52,0xd8,0xb5,0xb8,0x2e,0x49,0x93, +0x62,0x2f,0x3d,0x3b,0xf3,0x6d,0x3d,0x3b,0xf3,0x6f,0xd1,0xd7, +0x62,0x3d,0x35,0xd3,0x5d,0x54,0x55,0xd4,0xa5,0x66,0xca,0x30, +0xec,0x6d,0x3d,0x33,0xb3,0x36,0x10,0xec,0x4b,0xb8,0xda,0x8f, +0x31,0x10,0x5c,0xac,0xe7,0x65,0xfa,0x88,0x69,0xe7,0x5f,0xe4, +0x65,0xd6,0x74,0x64,0x37,0xd5,0x77,0x95,0xfc,0xa9,0x9f,0x14, +0x14,0x64,0xa6,0x67,0x9a,0x13,0x12,0x77,0x6c,0x49,0x0a,0xc5, +0x88,0xa1,0x89,0xe9,0x4a,0x51,0x5e,0xe6,0x91,0x13,0x49,0x89, +0xc9,0x7a,0xe4,0xdf,0xd0,0x94,0x5f,0x84,0xb3,0xa0,0x01,0x6f, +0xfd,0x15,0x06,0x36,0x27,0x72,0x1d,0x29,0xea,0xb8,0x3e,0xe1, +0x0f,0x74,0x0f,0x96,0x4d,0xeb,0xee,0xee,0x7a,0xc7,0x14,0x98, +0x14,0x14,0x19,0x10,0xe2,0x1f,0x5c,0xf7,0x65,0xef,0x94,0xf9, +0x77,0xa2,0x10,0x6e,0x86,0x4d,0x03,0xe8,0xcb,0xde,0x40,0xab, +0xea,0xbd,0x38,0x20,0x58,0x2a,0x8a,0xf4,0x55,0xf2,0xa6,0x5e, +0x39,0x53,0x90,0x93,0x7e,0x52,0xee,0x34,0xb4,0x05,0xb3,0xe9, +0x93,0x92,0xfc,0xec,0xa3,0x59,0x89,0x49,0xdb,0x36,0x27,0xd1, +0xb7,0x44,0x7b,0xda,0x69,0x68,0x23,0x58,0x60,0x52,0x00,0xf5, +0x74,0x40,0x10,0x7d,0x26,0xcb,0x48,0xcc,0xe2,0x36,0xcb,0x58, +0xff,0xa5,0x53,0xba,0x8d,0x74,0x7d,0x48,0xdf,0x12,0xb7,0x04, +0x92,0xc4,0x4d,0xf4,0x2e,0x29,0x2b,0xdf,0xf1,0x0f,0x29,0xb1, +0xb5,0x61,0x73,0xaf,0x19,0xe3,0xa1,0x69,0x6f,0xab,0x05,0x50, +0x5f,0x19,0x23,0x96,0xb7,0xba,0xf6,0x9b,0x08,0x6e,0x75,0xfd, +0x37,0xb1,0xf4,0x23,0xca,0x22,0x7d,0x28,0xb3,0x48,0xed,0x7e, +0xfb,0xd7,0x09,0xa4,0xf6,0x0b,0x65,0x30,0xb9,0x4b,0x52,0x74, +0x72,0xc1,0x58,0x92,0xb7,0xd8,0x2c,0xbb,0x68,0x45,0xb7,0xce, +0x18,0x4b,0xf2,0x26,0x93,0x99,0x0c,0x25,0x1b,0xf0,0xc6,0xed, +0xf4,0xf6,0xa6,0x34,0x50,0x1d,0xb8,0xfb,0x15,0x31,0xef,0x12, +0x5d,0x2b,0xf7,0x22,0x13,0xf4,0x32,0x56,0x77,0x8c,0x52,0x30, +0xed,0x4a,0x71,0xfe,0xa9,0xf4,0x53,0xe6,0xc4,0xc4,0xed,0x5b, +0x12,0xa9,0x85,0x5b,0x98,0xae,0x9c,0xcb,0x3b,0x79,0x34,0x3b, +0x29,0x69,0x1b,0x5d,0x7f,0xd8,0x9e,0xa0,0xb3,0xa9,0xc6,0x4d, +0x82,0x92,0xfc,0x23,0x03,0x43,0xb0,0xc6,0x9b,0x08,0x3a,0x3b, +0x21,0xbb,0xd8,0x31,0x4a,0xb8,0xca,0xb6,0x36,0x46,0xf6,0x5a, +0x36,0xb9,0xdb,0xd0,0xd6,0xdf,0x99,0xe4,0xfe,0x4b,0x48,0x80, +0xac,0x39,0xc1,0x6b,0x17,0x3a,0xfe,0x5e,0x53,0xc2,0x22,0xbb, +0xce,0x1c,0x0b,0xcd,0xba,0x61,0xad,0x1b,0xca,0xac,0x53,0xcb, +0x85,0xb4,0xd1,0x52,0xa2,0x04,0x87,0x46,0xf0,0xd6,0xb3,0xd9, +0x64,0x6e,0x7b,0x93,0x9d,0x3f,0x7d,0x92,0x76,0x20,0x30,0x32, +0x8c,0x0b,0x17,0xce,0x12,0x4a,0x1a,0x27,0x94,0x35,0xb7,0x1d, +0xc2,0xbe,0x55,0xc4,0x1a,0x48,0xae,0x12,0xd7,0xe0,0x0c,0x35, +0xc3,0x62,0x06,0x8c,0x12,0x55,0x6f,0xaa,0x4b,0xf5,0x01,0x92, +0x95,0x9e,0x65,0x4e,0xd0,0x3f,0xca,0xb6,0x05,0x5b,0x39,0x40, +0x8e,0x66,0x24,0xd5,0x75,0x58,0x23,0x7d,0x80,0xbc,0xa2,0xab, +0x46,0xea,0x47,0x59,0xee,0x3d,0x91,0x70,0x3c,0xff,0xc5,0x48, +0x79,0x13,0x47,0xca,0x38,0xd7,0x7b,0xa8,0x3d,0x8d,0x14,0xa9, +0xfd,0xde,0x63,0x89,0x19,0x51,0xa7,0x5f,0x1e,0x29,0x13,0xa0, +0xe9,0x1b,0x58,0x03,0xab,0x17,0xe9,0xad,0x07,0xe5,0x55,0x75, +0xb4,0x1f,0x74,0x90,0xf6,0x83,0x26,0xd3,0x7e,0xd0,0x41,0xda, +0x0f,0xda,0x41,0xfb,0x41,0x07,0x69,0x3f,0xe8,0x16,0xed,0x07, +0x1d,0x94,0x37,0xd6,0xd1,0x7e,0xd0,0x41,0x4a,0x7d,0xa5,0xfd, +0xa0,0x83,0x32,0xb1,0x95,0xf6,0x83,0xec,0x6d,0xea,0x3e,0xf9, +0xca,0x66,0x59,0x06,0x05,0xcf,0x3e,0x63,0x59,0x09,0x39,0x67, +0x1d,0xd3,0x87,0x2e,0x37,0x76,0x5b,0x3a,0xb9,0xd3,0x60,0x6e, +0xbd,0x9f,0x9d,0x71,0x3c,0x3a,0xf4,0x5d,0xde,0xba,0x21,0x4b, +0x3b,0x6d,0x4e,0xa0,0xab,0xc4,0x08,0x6d,0xdd,0xc5,0x74,0xbd, +0xac,0xe8,0x54,0xda,0xe9,0x84,0xad,0x89,0x5b,0xb8,0xcd,0x4c, +0x86,0x8b,0x94,0x45,0x16,0xb2,0x9c,0x27,0xef,0x64,0x29,0x41, +0x8b,0xf8,0x0e,0x6d,0x1c,0x2d,0xa2,0x1b,0x74,0x78,0x93,0x22, +0x06,0x8d,0xea,0x52,0x5e,0x0f,0xd2,0x36,0x92,0x2a,0xb7,0x91, +0xde,0xa9,0x05,0x07,0x9f,0xa6,0x0c,0x48,0x58,0x01,0x3d,0x2d, +0x61,0xbc,0x61,0x85,0xe8,0x39,0x60,0x03,0xb7,0xea,0x48,0x7a, +0x52,0x8e,0xeb,0x5f,0xf6,0x96,0xec,0x66,0xd3,0xde,0xe9,0x28, +0x8a,0x0c,0x36,0x5d,0x17,0x17,0x25,0x52,0xf8,0xa6,0x6b,0x82, +0x12,0xbb,0xe8,0xd5,0x4a,0x18,0xc9,0x1d,0xae,0x90,0x05,0xde, +0x8b,0x16,0x78,0xb5,0x40,0x67,0x36,0x86,0x6d,0x14,0x16,0xd4, +0xa3,0x05,0x99,0xd9,0x29,0x39,0xf2,0x4c,0x4e,0x84,0xb0,0x02, +0x3b,0x53,0x61,0x3e,0xd4,0x13,0x16,0x21,0x89,0x41,0xd1,0x81, +0xa1,0xcf,0x9c,0xd9,0xee,0x8c,0xa4,0xec,0x3c,0xc7,0xdf,0xcb, +0x60,0xb3,0x57,0x95,0x61,0xf3,0xa0,0xf7,0xa7,0x78,0x4c,0x18, +0x57,0xc9,0x5b,0x5f,0x62,0x3b,0x4f,0x24,0x64,0xe5,0x39,0x46, +0x5d,0xa1,0x37,0xa2,0x9e,0x31,0xf2,0xb5,0x05,0x93,0x3a,0x77, +0xb7,0x52,0x1f,0xf6,0x93,0x58,0xe1,0xc7,0x5e,0x6c,0xa3,0xa2, +0xbc,0x41,0x9c,0xc5,0xb3,0xbe,0xe2,0xa9,0x44,0x0b,0xa7,0xbd, +0x54,0x7c,0x93,0x25,0x31,0xcb,0x8b,0xb8,0xdd,0x31,0xfa,0x62, +0xf8,0x4c,0x11,0xe3,0x75,0xe0,0xf0,0x1d,0x46,0x17,0xa6,0xa6, +0x7c,0x48,0x5b,0x9d,0xf1,0xac,0x66,0x35,0x9c,0xab,0xf6,0xa1, +0x7d,0xd6,0x5e,0xdc,0xbc,0x9b,0xc1,0x51,0xda,0x35,0xed,0xa9, +0x6c,0xf8,0x09,0x57,0xe0,0x45,0xb8,0x02,0xb7,0xc7,0x15,0xb8, +0x6f,0x75,0x29,0x13,0xdb,0x68,0xc1,0xc5,0xd7,0x57,0x5d,0xb9, +0x43,0x0e,0xd1,0x3d,0x80,0x1c,0x6d,0xf1,0xcb,0x05,0x16,0x8a, +0x45,0x5b,0x91,0x7e,0x21,0xf4,0xd5,0xf1,0xbd,0x7f,0x7e,0x9b, +0xfd,0xcc,0x9b,0x27,0x49,0x92,0x76,0x5a,0x4f,0xde,0xac,0x15, +0x69,0x15,0x28,0xf5,0xf5,0x44,0x99,0x3d,0xa0,0x17,0xb7,0x3f, +0x41,0xbf,0x25,0xd6,0xb6,0x19,0xd6,0xe1,0x0d,0x09,0x79,0xbe, +0x16,0x1d,0x21,0xda,0x63,0xb5,0xfb,0x86,0x49,0x68,0xf4,0x1b, +0x90,0xcc,0x9b,0x7e,0x40,0xa4,0xc7,0x25,0x69,0x30,0x16,0x0f, +0x81,0xce,0xbc,0x61,0x1a,0x1d,0x1a,0x99,0xc0,0xad,0xf7,0x31, +0xf1,0x41,0xb9,0xf6,0x0f,0x4f,0x71,0xd0,0x10,0xe2,0x39,0x6a, +0x3e,0x2c,0xf7,0x3c,0xce,0x6d,0xdb,0xb3,0x9d,0xf1,0xbb,0xb7, +0xec,0xe2,0xb6,0x0d,0xb0,0xc3,0x7b,0x51,0x3e,0x6b,0x43,0x42, +0xf6,0xee,0xc1,0x9b,0x94,0xe0,0x64,0xba,0x21,0x3e,0x37,0x52, +0x85,0x00,0xb4,0x6e,0xca,0x23,0x09,0xe2,0xfd,0x8d,0x0e,0xe2, +0x7d,0x95,0x1a,0x28,0x8f,0x36,0xfc,0xa9,0xd4,0x24,0x18,0x49, +0x40,0xde,0x3b,0x94,0xa3,0xa2,0xd3,0xa0,0xf8,0xf7,0xa1,0x87, +0x25,0x8c,0xc1,0xb1,0xd2,0x63,0x60,0x58,0x1a,0x74,0xe2,0x56, +0x07,0xff,0xaa,0x55,0x04,0x74,0x55,0x2e,0xc1,0xee,0xf1,0x46, +0xd5,0x13,0x14,0xda,0xc7,0xd5,0xd1,0xbd,0x93,0x6e,0xaa,0x49, +0x84,0xee,0x3d,0x96,0xdb,0xc7,0x32,0xad,0x0b,0xb4,0x13,0x3f, +0x12,0xef,0xa4,0x9b,0x06,0x68,0x79,0x43,0xfe,0x36,0x08,0x4c, +0xdc,0x21,0x94,0x7e,0x0c,0x92,0x90,0xdf,0x23,0xe8,0x28,0x77, +0xef,0x92,0x0b,0xd9,0xcf,0x4f,0x74,0x45,0x08,0x7b,0xfd,0x70, +0xa1,0xb5,0x4c,0x05,0x8c,0x09,0xa4,0xc3,0x2e,0x64,0x6b,0x0b, +0x9f,0x1f,0xa2,0xfe,0xc0,0xfd,0xf3,0x50,0x63,0xab,0xf7,0xc6, +0x0d,0xa3,0xcc,0xc0,0xe0,0x6d,0x81,0x51,0xfa,0x21,0xea,0x18, +0xcb,0x5d,0xf9,0x89,0x05,0x15,0x8e,0x3b,0x6e,0x56,0xc0,0x0e, +0x77,0x61,0xa4,0x43,0xd4,0xf3,0x46,0xf3,0xd6,0xdd,0x98,0x7e, +0x52,0x4c,0x5d,0xaf,0x1f,0xa0,0x46,0xe1,0xd3,0xa5,0xf0,0x4e, +0xdc,0x7e,0x16,0xc5,0x78,0xbb,0xe4,0x81,0x42,0x1b,0x2f,0xa6, +0x55,0xc1,0xa9,0xea,0x05,0xac,0x50,0x2b,0xe3,0x8d,0x3c,0xb1, +0x5f,0xee,0x30,0xf8,0x4d,0x6b,0xc3,0x1b,0x35,0x91,0xcf,0xc2, +0x1a,0x7c,0x85,0x3b,0x15,0x9f,0x29,0x8b,0x0f,0x40,0x52,0x75, +0xaf,0xd6,0x87,0x8e,0x18,0xda,0xfd,0xca,0xe0,0x57,0xad,0x0d, +0x9d,0x31,0xc4,0x47,0x57,0xb0,0xe5,0x96,0x7e,0x04,0xa4,0x8d, +0x64,0xfd,0x91,0x4c,0x3c,0x81,0x74,0x3a,0x58,0xd8,0x8b,0x10, +0xf2,0xa8,0xec,0x68,0x12,0xad,0x1e,0xd0,0x7a,0x70,0xcb,0xc3, +0xf4,0x6b,0x8c,0xfc,0xd5,0x8b,0x5a,0xa3,0x0f,0x67,0xce,0xcc, +0xcc,0x9b,0x4e,0x64,0x56,0x6a,0x9c,0xd6,0x8e,0x37,0x4d,0x22, +0x82,0x08,0x49,0xb0,0x80,0x78,0x75,0xd4,0x53,0x80,0x66,0xa3, +0x4f,0x69,0x12,0xb5,0x2d,0x1f,0x73,0x93,0xf2,0x70,0xab,0xe0, +0x22,0xb7,0x9f,0xcd,0xe2,0xa0,0x92,0x4e,0xf1,0xe9,0x8a,0xc2, +0x1d,0xd1,0x9f,0xdb,0x4f,0x63,0xd0,0x5b,0x2b,0x12,0x3f,0xb3, +0xa7,0x96,0xea,0x07,0x0a,0x38,0x8b,0xd8,0x41,0x5a,0xde,0x2d, +0x11,0x20,0x9c,0x29,0x99,0xae,0x90,0x3b,0xf7,0x66,0x30,0x41, +0x98,0xfc,0x93,0x02,0xa2,0xe5,0xfd,0x4b,0x1b,0xa3,0x0f,0x66, +0x71,0xeb,0x37,0x99,0x3b,0xf4,0x6c,0x59,0x32,0xc3,0x74,0xaf, +0xa2,0x3c,0x3f,0xab,0xc0,0x0a,0x9a,0xc3,0x21,0x51,0xc5,0xaa, +0xd7,0xab,0x7b,0x15,0x11,0x39,0x48,0x3b,0x7c,0x0b,0x63,0x61, +0xe7,0x0f,0x8d,0xc8,0x62,0x0d,0x77,0xee,0x43,0x2c,0x1c,0xfc, +0x13,0x25,0x0b,0xbf,0xa0,0xf0,0x98,0x83,0x99,0xdb,0xb2,0x79, +0x93,0xa3,0xac,0xa3,0x37,0xb2,0x71,0x21,0x36,0x17,0x75,0x36, +0xcd,0x60,0xbb,0x22,0x56,0xc1,0x8e,0xab,0xe2,0x16,0x14,0x19, +0xd4,0x83,0x18,0x17,0x86,0x84,0x72,0xeb,0x10,0x56,0x3c,0xe3, +0x72,0x69,0xee,0xe9,0xa3,0x32,0xfe,0xd3,0xd7,0x8a,0x66,0xa6, +0xb3,0x05,0xa8,0xae,0x2d,0x6f,0xf8,0x90,0x59,0x3f,0x0d,0xa3, +0xb4,0xc2,0xf7,0x34,0x1f,0xb4,0xa7,0xce,0xcc,0x2f,0x88,0xdb, +0x5d,0x63,0x6a,0x2b,0xfa,0xed,0xf0,0x25,0xe6,0xf7,0xac,0x27, +0xdb,0xf8,0xec,0x5d,0x36,0x5c,0x0b,0xe3,0x86,0x0f,0xfe,0xf6, +0x3b,0xb7,0xff,0x93,0xd5,0x04,0xd3,0x2f,0x0b,0xeb,0x7e,0xb1, +0x4b,0xff,0xdb,0x2f,0x58,0x76,0x34,0x96,0x6d,0x5c,0xef,0xef, +0x94,0xf6,0x63,0xff,0x99,0x52,0x9d,0x01,0x41,0x4a,0x19,0xcc, +0xf1,0x32,0xc2,0x55,0xba,0x12,0xa4,0x01,0xb5,0xca,0x11,0x45, +0x84,0x0c,0xd2,0x12,0x6e,0xa1,0x91,0x70,0xbe,0x4c,0xad,0xf2, +0x3e,0x77,0xaa,0xc7,0xfc,0xb8,0x4d,0x06,0x3b,0x70,0x3c,0x39, +0x33,0x2a,0xef,0xe9,0x9f,0x2c,0xa2,0x9b,0x97,0x17,0x74,0x77, +0x3b,0x3b,0xd3,0xf4,0x65,0x79,0x79,0x6e,0x66,0x9e,0x95,0x78, +0x05,0x4a,0x15,0x18,0x2f,0x2c,0x46,0x43,0xbe,0xdc,0x9d,0xfb, +0x91,0xdb,0xb4,0xa3,0x13,0x17,0x7b,0x4e,0x55,0x37,0x64,0x60, +0xb1,0x90,0xdb,0xb4,0x67,0x17,0x4f,0xe5,0x1f,0xc9,0x33,0xc7, +0xc5,0x27,0x70,0x9b,0x34,0x06,0x8e,0xa2,0x79,0xf0,0x36,0x99, +0x1a,0x07,0x59,0x38,0xdb,0xb1,0x70,0x63,0x31,0x1e,0x27,0x72, +0xc3,0xb9,0x4c,0xdb,0x7e,0x0b,0x1d,0x4c,0xd9,0xab,0x99,0xcf, +0xdb,0x49,0xc4,0xb1,0x7e,0x90,0xa4,0xa8,0xef,0x74,0x31,0x68, +0x6b,0xd7,0x70,0xd6,0x82,0x81,0xf5,0x0d,0xf1,0x95,0x96,0x87, +0xab,0xc5,0xdf,0x2b,0x16,0xae,0xb9,0x29,0xea,0xfc,0x0a,0x6d, +0xfe,0x37,0xea,0xfb,0x97,0xb4,0x62,0xb8,0xca,0xad,0x46,0x33, +0x6e,0x1c,0x49,0x64,0xf3,0x9e,0xb7,0xc8,0x4d,0x02,0x5d,0xd8, +0x0c,0xcd,0x85,0xdf,0x50,0x2d,0xe5,0x9a,0x08,0xc4,0xb0,0x20, +0xe2,0xba,0x5a,0x68,0xd4,0xde,0x5c,0x54,0xb3,0x8c,0xc1,0x39, +0x45,0xa0,0x77,0x7d,0x86,0x20,0x29,0x6c,0x03,0x13,0x03,0x62, +0x71,0x40,0xf0,0xd6,0x77,0x59,0x85,0xd6,0xc2,0x5d,0xf4,0x35, +0x44,0x74,0x99,0xe6,0x09,0x26,0xa8,0x47,0x97,0x3d,0x97,0x15, +0x16,0xa4,0x9f,0x4a,0x48,0x4a,0xde,0x94,0x18,0x6e,0x35,0x0a, +0xf6,0xe1,0xe8,0x52,0x1f,0xab,0x8b,0x08,0x06,0x22,0xe4,0xba, +0x7a,0x62,0x08,0x6c,0x40,0x19,0xab,0x86,0x6a,0xc9,0xd7,0x0c, +0xf0,0x9e,0x1a,0x0e,0x6f,0xb0,0x4e,0x18,0x8b,0x10,0xaf,0x8b, +0x5a,0x0b,0x0f,0xc9,0x6b,0xba,0x27,0x98,0xeb,0x78,0xe5,0xa7, +0x9f,0x4e,0x48,0x4c,0xde,0x9c,0x18,0x86,0xe2,0x9b,0x99,0x38, +0x6b,0xc4,0xa4,0x6c,0x17,0x28,0x84,0x0a,0x62,0xbc,0x84,0x18, +0xaf,0x91,0x98,0x1b,0xc1,0xc8,0xf8,0xfd,0xa1,0x5a,0x8c,0x64, +0x1c,0xa0,0x80,0xff,0x78,0xe1,0x6f,0x00,0x47,0x28,0x56,0x12, +0x13,0xb7,0x6d,0xe2,0xad,0x17,0xb1,0xa4,0xc0,0x58,0x3f,0xfa, +0xdc,0xb4,0x31,0x7a,0x5f,0x66,0x72,0x76,0x74,0xbe,0x59,0x74, +0x97,0x15,0xe8,0x67,0xd8,0xd8,0x75,0xba,0x17,0x98,0x5b,0x9e, +0x99,0x59,0xab,0xbf,0x15,0x06,0xc3,0x9a,0x86,0xe1,0x4f,0x93, +0x3c,0x06,0xef,0x21,0xe3,0xb9,0x43,0xb5,0x25,0x92,0xf1,0x74, +0xee,0x30,0x98,0x89,0x22,0xfa,0x98,0xf6,0x14,0xcd,0xf3,0x23, +0x96,0xa5,0x05,0x3e,0x6d,0x28,0x9f,0xf6,0x6b,0x01,0xd5,0xfa, +0x6f,0xea,0x06,0x5c,0x9d,0xbe,0xc0,0xbe,0x8a,0x65,0xea,0x66, +0x78,0xa6,0xc5,0xca,0xc7,0x03,0x5a,0x80,0x96,0x24,0x9f,0x90, +0x92,0x5b,0x16,0xc8,0x47,0xf1,0x29,0xf8,0x6b,0xdb,0x19,0x6f, +0x7a,0x84,0x89,0x31,0x18,0x73,0x19,0xda,0xea,0xcf,0x3f,0xc1, +0x1f,0xdc,0x90,0x82,0xcf,0x9f,0xb0,0xc5,0x90,0xc0,0x8d,0x0f, +0xf0,0xb1,0x8a,0xe5,0x69,0xeb,0xb9,0x31,0x1d,0x1f,0xfd,0x18, +0xac,0xd1,0x56,0xb2,0xa7,0x16,0xea,0x65,0xe5,0x32,0xba,0x5e, +0x2d,0x07,0x6b,0x79,0x37,0x45,0xfb,0xde,0x4c,0x98,0x8d,0x50, +0x21,0xc6,0xca,0xf9,0xef,0x41,0xf3,0x5f,0x53,0x58,0xcc,0x7f, +0x98,0xfa,0xc8,0xe1,0x8a,0xe4,0xd0,0x7c,0xb0,0x76,0xf8,0xa6, +0xc0,0x62,0xc2,0x81,0x38,0x8c,0x94,0xd3,0xdf,0x43,0x34,0xf3, +0x4f,0xf2,0x8f,0xc2,0x16,0x27,0xd0,0x94,0x03,0xff,0xdb,0xd3, +0x5f,0xed,0xc8,0x48,0x14,0x0e,0x6b,0xd1,0x94,0x2c,0x95,0x5f, +0x90,0xd9,0x2f,0x98,0x6c,0x00,0x6f,0x7a,0x88,0xc5,0x40,0x4a, +0x8d,0x3b,0x83,0xc4,0x9a,0x15,0x4c,0xec,0x66,0x13,0xb5,0x70, +0x6e,0x18,0x4c,0x4f,0xb5,0xe6,0xe0,0x99,0x05,0x95,0x7d,0xfd, +0x12,0xf3,0x4f,0xc4,0x2a,0x92,0x39,0xf8,0xdb,0x2f,0x68,0x0e, +0x90,0xba,0xd6,0x00,0xfc,0x9d,0x7a,0x2c,0xbd,0xc3,0x29,0x1f, +0xac,0x94,0xc3,0x1c,0x4f,0x9a,0xf2,0x3b,0x68,0xca,0xdf,0xd2, +0x21,0x43,0xb0,0x11,0x14,0x6a,0x84,0x51,0x34,0xdb,0xfd,0x71, +0x82,0x84,0xc7,0xfe,0xff,0x31,0xdd,0xd5,0xb5,0x4c,0x3b,0x89, +0xbd,0xd8,0x93,0xc1,0x25,0x31,0xba,0xba,0x11,0xd3,0x1c,0xb5, +0xee,0x4a,0xc9,0x0c,0x6e,0xd9,0x96,0x99,0xd5,0x38,0xba,0x2a, +0xd1,0xea,0x21,0xc3,0x06,0x2a,0xf9,0xbb,0xa2,0x7f,0x6f,0xc2, +0xa6,0xc1,0x38,0xc3,0x67,0xff,0xb5,0xca,0xf7,0x70,0x68,0x3e, +0xfc,0xb7,0x66,0x03,0x9b,0xe3,0xdf,0x18,0x8a,0xbf,0xb1,0xb9, +0x59,0x8b,0xa3,0xd0,0x06,0x5c,0x84,0x69,0xb8,0x96,0x56,0x25, +0x5a,0x09,0x17,0xe8,0x58,0xa5,0x9e,0x43,0x5b,0xb1,0x90,0x3b, +0x2c,0x62,0xe2,0x56,0xa9,0x22,0x7f,0x6c,0x45,0xf0,0x1b,0x9f, +0x73,0xab,0x6f,0x6b,0x8b,0xb8,0x61,0x11,0x87,0xe1,0x5a,0x4a, +0x95,0x68,0x89,0x6f,0xdb,0x57,0xfd,0x1b,0xf3,0x92,0x14,0x10, +0x23,0x07,0x5c,0x44,0xcc,0x9e,0x8c,0xe4,0x1c,0x9a,0xa6,0x3d, +0xe5,0x34,0xed,0x43,0xb6,0x61,0x02,0x98,0x5a,0xd6,0x9a,0x86, +0xb4,0xd3,0xdc,0x46,0xa0,0xb4,0x73,0x94,0x64,0xea,0x42,0x49, +0xa6,0x87,0xe1,0x26,0xd9,0x9b,0xef,0xd5,0xc6,0x0a,0xfe,0xe0, +0x56,0xa5,0x9e,0x18,0x0e,0x2d,0x51,0xa8,0xdd,0x70,0x2d,0xb9, +0xca,0x00,0xef,0x3c,0xb7,0x37,0xc8,0x3c,0x7a,0x4f,0x66,0x72, +0x0e,0x77,0x33,0xb2,0x2e,0x18,0x2c,0x98,0x5f,0xf0,0x4c,0x4c, +0x48,0x8e,0xfc,0xbb,0xb9,0x51,0xa7,0x8a,0xce,0x94,0x35,0xea, +0x22,0xb8,0x51,0xeb,0xa3,0xf9,0x90,0xed,0xf9,0x5e,0x54,0x92, +0x90,0x45,0x55,0xd5,0x9d,0x87,0xc3,0x1b,0xf8,0xea,0xb5,0xe1, +0x35,0x06,0x29,0xe4,0x3b,0xaa,0xd1,0x55,0xaa,0x51,0x4b,0x59, +0x23,0x53,0x20,0x61,0xf8,0x50,0x8d,0x30,0x52,0xc9,0x49,0x3e, +0x1d,0x75,0xe6,0x45,0x8d,0x36,0xb5,0xc5,0x10,0xd3,0x11,0x8c, +0x24,0xbe,0xa2,0xa8,0x30,0x2d,0x9f,0x5b,0x0e,0x64,0xea,0x3c, +0x31,0x49,0x81,0xfe,0xc8,0xb3,0xbf,0x11,0x72,0xb5,0x6f,0xb9, +0xf1,0x0b,0xaa,0x94,0x2d,0xc9,0x73,0xaa,0x52,0x0f,0x0c,0x07, +0x67,0x7c,0x67,0x3b,0x5c,0x8b,0x91,0xf2,0x9e,0xdb,0xba,0xe6, +0x64,0xeb,0x12,0x92,0x37,0x93,0xad,0xdb,0x56,0xdb,0x88,0x1b, +0x63,0xf6,0x66,0xe8,0xb6,0xee,0x79,0x23,0x76,0xc5,0x38,0xda, +0xec,0x82,0xb6,0xae,0xb2,0xac,0x08,0x2b,0x6c,0xa5,0x86,0x8a, +0x89,0x0a,0x38,0x50,0xe7,0x18,0x85,0x95,0x76,0x86,0xec,0x1e, +0xff,0x8c,0x51,0x5e,0x3e,0x72,0x9f,0xc6,0x9b,0x69,0x4c,0xf8, +0x72,0x8b,0x33,0xcc,0x9b,0x6e,0x60,0x7f,0x4a,0xaa,0x18,0x48, +0x95,0xd6,0x55,0x6a,0xce,0x70,0x6e,0x93,0xca,0x88,0x6c,0x33, +0x6f,0xd6,0x89,0xc1,0xc1,0x1a,0x5b,0x6e,0x65,0x4f,0x14,0xae, +0x44,0xd1,0xa4,0x4a,0x0d,0x19,0x0e,0x0a,0x72,0x36,0xf2,0x66, +0x63,0x98,0x78,0x93,0xb8,0xc0,0xf1,0x9a,0x76,0xdc,0x88,0xa6, +0x8d,0x6d,0x63,0xda,0x34,0x2d,0x53,0x5a,0x4f,0x7c,0x7c,0x5b, +0xcb,0x90,0xe6,0x73,0x1b,0x8b,0x86,0x5f,0xa5,0xf5,0x5c,0xc9, +0x44,0x7b,0xed,0xb8,0xb4,0x9e,0x2b,0x19,0xdc,0xa9,0xe9,0x24, +0xcd,0x27,0x3e,0xde,0xad,0xe9,0xa4,0xdb,0xcf,0x95,0xec,0x5d, +0xad,0x23,0x9a,0x4f,0x39,0xbe,0x48,0x15,0xc1,0x6b,0x15,0xc3, +0x91,0xb5,0x98,0x3b,0x24,0xe0,0xf0,0x28,0x79,0x3e,0x3c,0x42, +0xb5,0x44,0x6e,0xbc,0x82,0x63,0xf8,0x73,0xf4,0x77,0x7f,0xe4, +0x46,0x9c,0x24,0xf6,0xfb,0x19,0x0c,0xd4,0xde,0x23,0xb3,0x8b, +0x3d,0xfa,0x27,0x29,0x3d,0xa6,0x4a,0xfd,0x72,0x78,0xdd,0xf0, +0xde,0x27,0xdb,0x20,0x92,0x86,0x35,0xf6,0xca,0x54,0xca,0xcc, +0x71,0x11,0x38,0xae,0x77,0x5a,0x70,0xc7,0x2e,0xff,0xa6,0x25, +0x70,0x8c,0x61,0x57,0x94,0xe0,0xb2,0x83,0x0b,0x57,0x38,0x0e, +0x03,0x07,0x13,0x77,0xfc,0x93,0xc9,0x76,0xe6,0xb6,0x27,0x98, +0x70,0xd4,0x8e,0x71,0x83,0xa5,0x14,0x1e,0xae,0x65,0x48,0x33, +0xef,0x38,0x87,0xe1,0x48,0xb1,0x0c,0xa0,0x25,0x8a,0x10,0xaa, +0x22,0xa2,0x79,0xf3,0xd7,0x29,0xe9,0x71,0xb5,0x54,0x57,0xdb, +0x08,0x1f,0xd2,0x1a,0x80,0x02,0xdd,0x48,0xa0,0xad,0x6c,0x58, +0x3b,0xd4,0xc5,0x42,0x36,0xec,0x50,0xd9,0xb0,0x69,0x35,0xed, +0x69,0x75,0x40,0x22,0x45,0xe1,0xb6,0x9b,0xd9,0x70,0xde,0xe4, +0x82,0x54,0x69,0x15,0x77,0x88,0x23,0xfd,0xc7,0x2b,0xb2,0x33, +0x14,0xa3,0x66,0xd0,0xc6,0x70,0xa3,0xbd,0x2e,0xf7,0x35,0x61, +0xc4,0x39,0x47,0x72,0xfd,0x82,0x22,0xa3,0xa4,0x5c,0x37,0x5c, +0x5b,0xda,0xe2,0xb4,0x84,0x01,0xe3,0xc4,0x00,0x70,0xbf,0xad, +0x16,0x18,0xe1,0xfb,0x35,0xdc,0xb6,0x25,0xdd,0xb7,0xd9,0xd0, +0x89,0x81,0x0b,0xb7,0x49,0xc4,0xbe,0x32,0x30,0xde,0x2a,0x90, +0xb5,0xe5,0xae,0x0e,0xac,0x15,0xa4,0x72,0xa7,0x93,0xac,0x7a, +0xaa,0x08,0x51,0x6e,0xab,0x47,0x06,0x42,0x11,0xb7,0xfd,0x85, +0xee,0x5f,0xb4,0x40,0xc3,0x55,0x21,0x0b,0xb5,0x24,0xdb,0x3f, +0x8e,0x16,0x25,0x7f,0x2a,0x6a,0x79,0x30,0x2b,0xf9,0x64,0x91, +0xa3,0xf0,0xb9,0xa4,0x4d,0x1f,0x2f,0x7c,0x0c,0x9b,0xdb,0xe3, +0xba,0xd2,0xbd,0xe5,0xd9,0x19,0xa6,0xbb,0xb5,0xeb,0x4a,0x63, +0xba,0xbc,0xf6,0x43,0xe2,0x19,0xad,0xdc,0x52,0x77,0x0d,0x82, +0x3c,0x18,0xe0,0x21,0x06,0x18,0x60,0xb7,0x78,0x20,0xf9,0x96, +0x4b,0xbe,0xce,0x3a,0x5f,0x07,0xe4,0x1b,0xed,0x1f,0x24,0x3d, +0x55,0xcb,0x83,0x99,0xc8,0x9b,0xdb,0x0c,0x63,0xed,0xbd,0xb9, +0xd5,0x52,0x86,0xdc,0xd4,0x4e,0x5a,0x03,0xd1,0x9e,0x71,0xdb, +0x7e,0x0c,0x52,0x60,0xa0,0x97,0x18,0x68,0x80,0x3d,0xe2,0x13, +0xee,0x30,0x8a,0x89,0x08,0x58,0x5a,0x63,0x62,0xbc,0x91,0x3d, +0x5b,0xae,0x85,0x89,0x1c,0xf9,0x34,0x4b,0xdb,0x20,0x0e,0xc9, +0x27,0x75,0x08,0x94,0x8b,0x4d,0x4c,0x34,0x64,0xea,0x24,0xad, +0x01,0x46,0x8f,0xf8,0x34,0x1b,0xdf,0x1e,0xa4,0x07,0x22,0xeb, +0x4a,0x2a,0xd6,0x02,0x56,0x9c,0x80,0x01,0x9e,0xba,0x8a,0x9f, +0x4a,0xd6,0xcd,0xa0,0x94,0x37,0x42,0xb1,0x4a,0x2f,0xf6,0x29, +0xac,0x13,0xeb,0x71,0xd4,0x26,0xb3,0xf1,0xe0,0xc9,0xad,0xbd, +0xa8,0xf8,0x76,0x2d,0x98,0xbf,0x7a,0x5f,0xbe,0xfe,0x1a,0xfc, +0x44,0x10,0x61,0x71,0x15,0x4a,0xc7,0xab,0x09,0x94,0x2b,0x9e, +0x18,0x8a,0x8f,0xbc,0xaa,0xa6,0x0c,0x83,0x5c,0x23,0xf4,0x15, +0x07,0x14,0x58,0xef,0x21,0xd6,0x1b,0x5a,0xe1,0x8a,0x23,0x3a, +0xa3,0xc1,0xcc,0x83,0x8e,0xc2,0x8e,0xfc,0x31,0xf2,0x6b,0x42, +0x22,0xa2,0xf7,0x66,0x6d,0x3b,0x49,0x97,0x0f,0xf4,0xb8,0xa0, +0x99,0x27,0x88,0x5e,0x86,0x4d,0x9d,0x66,0xa2,0x71,0x83,0x06, +0x68,0x5e,0x2a,0xcb,0x0b,0xf2,0xd3,0x73,0xd1,0x99,0x22,0xc7, +0x6c,0x0c,0xec,0x45,0x43,0xc9,0x6d,0x8a,0x99,0xd6,0x44,0x84, +0x4a,0x31,0x83,0xae,0xaa,0xc9,0xc3,0x20,0x9b,0xc4,0xec,0x43, +0x31,0xee,0x28,0xa6,0x23,0x2e,0xeb,0x01,0xc1,0x92,0xeb,0xa9, +0xa8,0x82,0x97,0xb9,0xce,0xf2,0x44,0xa3,0xf5,0x9c,0xab,0xee, +0xa2,0x85,0x93,0x46,0xba,0x4a,0xb6,0x72,0x3c,0x05,0x9b,0x5b, +0x43,0x01,0x9a,0xca,0x5a,0x8c,0x96,0x26,0x62,0xbd,0x14,0xd4, +0xff,0xaa,0x1a,0x33,0x0c,0x4e,0x90,0xa0,0x3d,0xb5,0x82,0x90, +0x59,0x89,0x42,0xaa,0x25,0x85,0x8b,0x4e,0x68,0x78,0x25,0x13, +0x9b,0xc0,0xa4,0xc0,0x98,0xf5,0x2f,0xd5,0xab,0x80,0xbb,0x2d, +0x61,0x33,0x49,0x72,0x7d,0x94,0x7c,0xa5,0xbc,0x30,0x2f,0x1d, +0x8d,0xd7,0x12,0xdd,0x51,0xb3,0x69,0xc4,0xc4,0x7c,0xc5,0x0b, +0xf9,0xbb,0x5e,0x55,0x97,0x0c,0x83,0x03,0xc4,0x3f,0x89,0x3b, +0x0c,0x20,0x34,0xb2,0x05,0xba,0xb3,0x56,0xc4,0x4e,0xd6,0x3a, +0x6b,0x45,0x2c,0xa5,0xd6,0x59,0x2b,0x62,0xea,0xc6,0x5a,0x67, +0x2d,0x94,0xa9,0x51,0xb5,0xce,0x5a,0x28,0x4b,0xad,0x75,0xd6, +0x42,0x89,0x92,0x1b,0x46,0x52,0x2d,0x76,0xc8,0x5a,0xac,0x96, +0x52,0x7a,0x5d,0x55,0x37,0x0c,0x83,0xa3,0x24,0x65,0x97,0x94, +0x32,0x0e,0x72,0x75,0xe7,0x0d,0x17,0xd5,0x15,0x34,0x6d,0x9b, +0xae,0x66,0x4b,0x20,0x5e,0xf7,0xdc,0xa2,0x58,0xbe,0xe6,0xa7, +0x7b,0x6e,0xd1,0x6c,0x06,0x6c,0x95,0x73,0x8f,0x28,0x57,0xeb, +0x13,0x0d,0x3b,0xc9,0x5d,0xa0,0xd3,0xab,0xff,0x67,0x92,0xf3, +0xed,0x87,0x35,0xe0,0xc0,0xa0,0x2b,0x5c,0x46,0x43,0xb2,0x83, +0xee,0x92,0x72,0xc7,0x09,0x54,0x52,0x80,0xce,0x82,0x19,0x17, +0xfa,0x28,0x5a,0x50,0x82,0x08,0x6f,0x24,0x6b,0xfb,0xc9,0x33, +0x8e,0x04,0x37,0x32,0x99,0x26,0x51,0x64,0x3b,0x1f,0x0f,0xe8, +0xc1,0x9b,0xfc,0xc6,0xdc,0x20,0xe5,0xaf,0x13,0x72,0x2c,0x98, +0xb1,0x6c,0x2b,0x6e,0x51,0xcd,0x54,0x0e,0x0f,0x29,0x0b,0xf1, +0x92,0x92,0x24,0x79,0xf3,0x26,0xeb,0x98,0xe4,0x88,0xbe,0xb1, +0xe5,0x81,0xec,0xed,0x39,0x45,0x2f,0x38,0x6e,0x6e,0xef,0x53, +0x37,0x2d,0x2f,0x94,0x17,0x64,0xe4,0x5b,0x81,0x15,0x6c,0xfb, +0xeb,0xb4,0x1c,0x25,0xf5,0x76,0x93,0x9c,0x1d,0x74,0xce,0x17, +0x6a,0x39,0x0b,0x0f,0x70,0xa2,0xe9,0x39,0x5e,0x38,0x70,0x8b, +0x64,0xa6,0x2b,0x2c,0xd9,0x57,0x68,0x93,0xdc,0x85,0xb7,0x21, +0xb2,0xbd,0x0f,0x4d,0x50,0xe4,0xab,0x76,0xd5,0xea,0xd7,0x4d, +0xd0,0xde,0xe0,0x38,0x41,0x38,0x76,0x04,0x47,0x0f,0xe1,0x68, +0xc0,0xc1,0xfa,0x8c,0x3b,0xf4,0x60,0x22,0x12,0x96,0xd0,0x34, +0x65,0xdf,0xb3,0xf7,0x71,0xd6,0xe5,0xc8,0xa7,0x39,0x5a,0x28, +0x4d,0x53,0x7c,0x52,0x87,0x43,0x19,0x4e,0xd3,0x6a,0x5f,0xa6, +0xfa,0x6a,0xf5,0x71,0x9a,0xa2,0x82,0xc7,0xb1,0xea,0xfe,0x03, +0xb9,0xc5,0x61,0xb4,0x83,0x7b,0xd4,0x7a,0x0a,0xec,0xf3,0x10, +0xfb,0x0c,0x23,0x20,0x5c,0xc1,0xb0,0x16,0xfd,0x5a,0xbf,0x60, +0x13,0x6f,0xc1,0x19,0x77,0x63,0xcc,0x12,0x3e,0xd1,0x7a,0xe3, +0x9c,0xc6,0xf2,0xc4,0xb3,0xab,0x64,0xb4,0x0a,0x86,0x71,0xfb, +0x83,0x2f,0x4d,0xef,0x81,0xb4,0x83,0x6e,0x6e,0x23,0xff,0x25, +0x96,0x8d,0xa5,0x62,0x66,0x82,0xb0,0x40,0xd5,0x2d,0xa3,0xe9, +0x6b,0xc9,0x2f,0xbc,0x71,0x1f,0x2a,0x12,0x83,0xc2,0x77,0xbe, +0x10,0xce,0x0d,0xf3,0xd9,0x17,0xb0,0x5a,0x9a,0x80,0x68,0xe6, +0x49,0xfb,0x3f,0x5e,0x24,0x64,0xa7,0x16,0x24,0x4d,0x00,0xfe, +0x38,0x14,0x62,0x79,0xe3,0x9f,0xff,0x4d,0xd9,0x47,0xb0,0x16, +0xed,0x43,0xf5,0x2a,0xda,0x1e,0x28,0xbc,0x86,0x26,0x02,0x92, +0x35,0xa3,0xe2,0xe6,0xf5,0x0b,0x18,0x2a,0xd5,0x94,0x11,0xb0, +0xb0,0x8d,0xe7,0x13,0x03,0x0c,0x13,0xb1,0xdc,0xa6,0x8a,0xc1, +0x45,0x45,0x74,0x00,0x33,0xce,0xa4,0xf6,0xc2,0x8e,0xbb,0xe6, +0xb0,0x5c,0x6e,0xd3,0x90,0xb5,0x9d,0xe5,0x81,0xd3,0xc7,0xa2, +0x48,0x4e,0x9f,0x82,0xb4,0x5c,0xf2,0x36,0xc6,0xa1,0x15,0xac, +0x22,0xe4,0x94,0x13,0xdc,0xee,0x15,0xe6,0xf9,0x8b,0x4b,0xa5, +0x9a,0x3c,0x02,0xe6,0xb6,0xf1,0xe4,0x6e,0xe8,0x88,0x9a,0xb0, +0x27,0x6b,0x23,0xb0,0x0e,0xfa,0xf4,0x46,0x7e,0x34,0x33,0xa5, +0xc5,0xc1,0xee,0xdc,0x97,0x9d,0x7c,0x9a,0x58,0xb7,0x9b,0xed, +0x81,0xab,0x5e,0x2d,0xeb,0xfc,0xb4,0x5c,0xab,0x71,0x10,0x8b, +0x93,0x5f,0x87,0x97,0x81,0x64,0xd1,0x8f,0x34,0x75,0xab,0x54, +0x63,0x46,0xc0,0xec,0x36,0xde,0x52,0xd1,0x48,0x05,0xd6,0x4e, +0x10,0x6b,0x0d,0x28,0xa4,0x4c,0xd1,0x2d,0x13,0x0a,0x71,0xd0, +0x85,0xe0,0xf4,0xe7,0x36,0x3e,0xac,0x96,0x7b,0xfb,0xd9,0x13, +0x90,0xfb,0x2b,0x92,0x7b,0x41,0x5e,0x7a,0xae,0x95,0xba,0xb4, +0x36,0x40,0x73,0x41,0x27,0x41,0x71,0xf3,0xfe,0xa5,0x4f,0xa5, +0xba,0x64,0x04,0xf8,0xd4,0xb2,0x0e,0xe6,0x0e,0x8e,0x84,0x0a, +0x23,0xc3,0x34,0xd4,0x21,0x47,0xea,0x30,0x9c,0x2b,0xf3,0x58, +0xa9,0x36,0x81,0x7c,0x14,0xce,0x8e,0xb1,0x5c,0x2d,0x48,0x9a, +0x83,0x63,0xec,0xb0,0x16,0x28,0xcd,0xc1,0x31,0x0a,0xd8,0xce, +0x4b,0x73,0x10,0xc4,0xd4,0x58,0xf8,0x53,0x9a,0x83,0x20,0x76, +0x44,0x0b,0x94,0xe6,0x20,0x88,0x28,0xc9,0x1c,0xd0,0xa3,0xb8, +0x07,0x01,0xe8,0x7c,0x20,0xfb,0x1d,0x75,0x55,0xf4,0xfe,0xa5, +0x4d,0xa5,0xba,0x61,0x04,0xf8,0xd6,0xea,0x11,0x2e,0xf5,0xf0, +0xd0,0x03,0xbb,0x17,0x7a,0xc8,0x5e,0xb3,0xa8,0x54,0x77,0xf3, +0x56,0xbd,0xa9,0x8d,0xcb,0x5f,0xb4,0x31,0x39,0x0b,0x77,0xd1, +0x59,0x08,0x84,0x1f,0xa4,0x93,0xd0,0xb4,0x2f,0x13,0x37,0xf4, +0x60,0x10,0xcb,0x27,0x51,0x1f,0x4d,0xa4,0xca,0xce,0xe3,0xcd, +0xcc,0x74,0xba,0x72,0xa5,0xb4,0x35,0x8e,0x6c,0x59,0x5d,0x94, +0x38,0x89,0x15,0xd5,0xd9,0x9a,0xbe,0x6c,0x36,0xc4,0x91,0xad, +0xf9,0x7b,0x49,0x0c,0x7f,0x1a,0xca,0x00,0x52,0xfd,0xbe,0x3a, +0x76,0x0b,0x83,0x8f,0x95,0xec,0x49,0xa2,0x45,0xee,0xfd,0x0c, +0x6e,0xab,0xb1,0x70,0x91,0x03,0x46,0x53,0xce,0x39,0x38,0xf8, +0x8f,0xb5,0x71,0x7e,0x91,0xd8,0xd1,0x2b,0x03,0xc2,0xa3,0x0e, +0xa5,0x26,0x1f,0x8a,0x49,0xab,0x99,0xc4,0x02,0xc6,0x0f,0x78, +0x0b,0x96,0x8f,0x22,0x38,0x98,0xfa,0xca,0xaf,0x83,0x5d,0x35, +0xa3,0x2b,0xab,0x59,0x0c,0x73,0xd5,0xe6,0xc4,0x2d,0x7e,0x0b, +0x0d,0xbd,0xac,0x49,0xa2,0xf9,0xe9,0xfb,0x27,0x4a,0x4e,0x98, +0x63,0xa2,0x76,0x26,0xec,0x8b,0xdc,0x19,0x6e,0x16,0x27,0xc1, +0x32,0x1b,0x79,0x3e,0xe1,0xb6,0xaf,0xb3,0xf0,0xe8,0xd4,0x83, +0xc9,0xa9,0x92,0x9d,0xff,0x04,0x64,0xf7,0xce,0x68,0x64,0xd7, +0x4a,0xe7,0xd6,0x8d,0xc1,0x54,0xc8,0x10,0x21,0x4c,0xd8,0xd0, +0xb1,0xce,0xc2,0x9a,0x21,0xc4,0x37,0x51,0x81,0xd2,0x09,0xcf, +0x32,0xe8,0x92,0xe4,0xcc,0x29,0xc2,0xf9,0xd4,0x57,0xc7,0x90, +0xf9,0xce,0xb8,0x7d,0x5b,0x76,0x86,0x23,0xe7,0x7a,0xa6,0xac, +0xb3,0x90,0xf2,0x23,0xaa,0xbb,0xd9,0x3f,0x44,0xaa,0x7b,0x70, +0x7f,0xf2,0x81,0xd8,0x43,0x66,0x71,0xb4,0xbc,0xc6,0xe0,0x29, +0x0e,0x1b,0xd6,0x4e,0x7c,0x7d,0x1e,0x2c,0xf4,0xb0,0x52,0x95, +0x8e,0xca,0x8f,0x6f,0x76,0x58,0x45,0x9f,0x05,0x1a,0x3f,0xf3, +0x66,0x35,0x3b,0xe9,0xbb,0x40,0x5f,0xde,0x78,0x8a,0x7c,0xb4, +0xa3,0xc7,0xe6,0xf4,0x08,0x7d,0x21,0x8c,0x37,0xba,0x28,0x1f, +0xbd,0xe0,0x2c,0x67,0x57,0x24,0x41,0x33,0xad,0xaf,0x12,0xfa, +0xad,0x58,0x24,0xa6,0xf1,0x86,0x4d,0x19,0x74,0xe4,0x86,0x6a, +0xf6,0x48,0xe1,0x16,0x49,0x0c,0xb2,0xe1,0x67,0x51,0x7c,0x9e, +0xd2,0x7b,0xea,0x08,0x43,0xbe,0xa5,0x7b,0xe6,0x79,0x43,0x85, +0x08,0x8d,0xd6,0x4c,0xfd,0x58,0xe4,0xa9,0xd9,0x6c,0xea,0xd3, +0xfe,0x92,0xed,0xe7,0x60,0x53,0x83,0x6e,0x5b,0xa1,0x12,0xf2, +0x88,0x5b,0xfd,0x83,0x41,0x87,0x96,0x2c,0xdd,0xf0,0xf8,0x5a, +0xfc,0xf6,0x72,0xe7,0x90,0xb2,0x67,0xad,0x99,0xf0,0x13,0x76, +0xcf,0x66,0xc9,0x76,0xf0,0x44,0xe7,0x6e,0x30,0x0e,0xba,0x1d, +0xf4,0xd1,0xe1,0x80,0x18,0x4c,0x3f,0x6a,0xf6,0x50,0xc8,0x4d, +0xfb,0x18,0x37,0xfd,0xc8,0xc4,0xd1,0x73,0x35,0x86,0x89,0x22, +0xcd,0x10,0xe4,0x35,0x60,0x3e,0xac,0x18,0x8f,0xf5,0xec,0xa4, +0x3c,0x7e,0xb3,0xbd,0x66,0xf4,0xaa,0x2e,0x2b,0x33,0x6a,0xb9, +0xe8,0x4b,0x5d,0xa6,0x42,0x35,0x63,0x61,0x8e,0xa2,0x46,0xf7, +0x37,0x70,0xab,0xc9,0x4c,0xbb,0x61,0x24,0x5d,0x35,0x01,0x77, +0xf9,0xab,0x1f,0xd3,0x6b,0x1d,0x56,0xc7,0x43,0xde,0xa7,0x39, +0x87,0x1b,0xb7,0xd0,0xfe,0x00,0x46,0x6e,0x26,0x91,0x38,0x58, +0xbb,0x7d,0x53,0x6c,0x17,0x26,0x83,0x36,0x5a,0x7c,0xa8,0x40, +0xb2,0xa7,0x48,0x36,0x68,0x4d,0x31,0xce,0x39,0x3b,0xe3,0xde, +0x29,0x6e,0x93,0xcf,0xc2,0xc4,0xd8,0xb6,0xa6,0xb3,0x85,0x30, +0xec,0x9b,0xf5,0x09,0x01,0x74,0x6f,0xbb,0x7f,0x70,0x78,0xf4, +0xbe,0xc3,0xc9,0x47,0xe8,0x24,0xc7,0x84,0x72,0xcd,0xd7,0x13, +0xad,0x7d,0xd8,0x28,0x9f,0x19,0xd0,0x65,0xa8,0x95,0x9a,0xd1, +0x93,0xdb,0xee,0x63,0x3f,0x0c,0x6d,0x6b,0xdc,0xd4,0xa7,0xe7, +0xe6,0x5e,0xcd,0xe3,0xdc,0xb5,0x7e,0x04,0xba,0xd3,0x53,0x11, +0x4b,0x60,0x29,0xb7,0x79,0xc2,0x3c,0x14,0xb1,0x10,0x96,0x56, +0x8a,0x23,0xf2,0x38,0x53,0xab,0xf3,0x0c,0x05,0x6f,0x44,0xc1, +0x5e,0xba,0xe0,0x8b,0x4a,0xf1,0x8c,0x7b,0x39,0x65,0xc7,0x32, +0x8e,0x99,0xb7,0xc5,0xef,0xd8,0x92,0x1c,0x2e,0xc6,0x75,0xa0, +0x44,0xb7,0x61,0x0f,0x48,0x3c,0x8e,0x02,0x72,0x03,0xf7,0xa5, +0x26,0x1d,0x8e,0x39,0x66,0x16,0x9e,0x65,0x9a,0xaf,0x17,0xae, +0x65,0xa1,0xe3,0x7d,0x66,0xc2,0x6b,0x23,0x79,0xcb,0x91,0xcc, +0xdd,0x52,0x2c,0x14,0xef,0x26,0xa7,0x88,0xce,0xce,0x55,0xb0, +0x91,0x3b,0xac,0x67,0xea,0xcf,0x8c,0x36,0x51,0xc2,0x84,0xe9, +0x43,0x23,0xca,0x0a,0xad,0xfe,0x9c,0x1d,0xc0,0xe9,0xa3,0x78, +0xa2,0x67,0xcd,0x7e,0x83,0xd6,0xbc,0xe9,0x22,0xb4,0x10,0x8b, +0x99,0x66,0xab,0xd9,0x72,0x73,0xb2,0xfe,0xec,0x82,0xcf,0xa6, +0x04,0xf9,0xfc,0x29,0xcc,0xe6,0x0e,0xc7,0x88,0xf8,0x12,0x2e, +0x90,0x4d,0x8f,0xd3,0x93,0xd6,0x12,0xdf,0x5b,0x5b,0xb2,0xef, +0xab,0xe2,0xb7,0x97,0x71,0x8b,0xef,0xd1,0x66,0x7c,0xad,0xf0, +0x26,0xd8,0xa3,0x81,0x06,0x6b,0x7c,0x2f,0xfa,0x42,0x7b,0xde, +0x6c,0x35,0x91,0x8a,0xa6,0xd0,0x8a,0xdb,0xa7,0x48,0x35,0xf2, +0x6f,0x8a,0xf0,0x3a,0x35,0xb8,0x32,0x82,0x4d,0x78,0x97,0xfa, +0xdd,0x5d,0x01,0xcf,0x9f,0xc7,0xbc,0x74,0xfe,0x26,0x03,0x3a, +0xd3,0x67,0xb9,0x18,0xcb,0x3d,0x59,0x89,0xa7,0x4a,0x1c,0x53, +0x47,0xae,0x94,0xc7,0x84,0x6d,0xc1,0x82,0x5b,0x1c,0x65,0x71, +0x5b,0x13,0xe8,0xe0,0xa6,0x99,0x1c,0xaa,0x5c,0x30,0x0b,0x9b, +0xa0,0xda,0x3d,0x87,0x8c,0x96,0xc8,0xe8,0x0f,0xe1,0x49,0xdf, +0xe7,0xac,0x59,0x2e,0x04,0xf1,0xa6,0x73,0xa4,0xd8,0xe2,0x9b, +0x22,0xf2,0xa5,0xda,0x03,0xdd,0xdc,0xdc,0xd8,0x16,0x23,0x90, +0x26,0x0c,0x5a,0x58,0x9c,0x87,0x23,0x3e,0x46,0xd1,0x03,0xc6, +0x2b,0xfe,0x21,0x1b,0x71,0x82,0x25,0x1d,0xe4,0x6e,0xf5,0xd9, +0xc4,0x91,0x8b,0x61,0xf9,0xa4,0x63,0x93,0x4c,0xc2,0x29,0xf3, +0xde,0xd1,0x33,0xe9,0x1f,0xc4,0xed,0xc6,0xe9,0x2e,0x52,0x3b, +0x99,0x8e,0x9e,0x85,0xed,0xf7,0xd6,0xc6,0x6e,0xd8,0x2c,0xaf, +0xac,0x5a,0x5f,0xc7,0x9e,0x06,0xd0,0x79,0xe4,0xae,0xf5,0x83, +0x9e,0xfc,0xd5,0x35,0x54,0x75,0xf8,0x0e,0x0a,0xf8,0xab,0x56, +0xff,0x4a,0x07,0x94,0xd7,0x93,0xf3,0x55,0xba,0x0e,0xdb,0xa1, +0x25,0x77,0xe8,0xcc,0xb8,0xf3,0x0c,0xa6,0xf5,0x5c,0xca,0x1d, +0x86,0xb0,0x8e,0xdc,0xa2,0x90,0xfd,0x3a,0xb2,0xa5,0x31,0x62, +0xd4,0xf0,0xc8,0x91,0xcd,0xe3,0x3c,0x9e,0xa1,0xfd,0xc9,0x83, +0xee,0xdc,0xed,0x0d,0x24,0x9b,0x83,0x64,0xcb,0x78,0xc3,0xd3, +0x0c,0x2e,0x70,0xe7,0x54,0x76,0xdf,0x3f,0xc9,0x8f,0xce,0x49, +0x13,0x3a,0xd7,0xee,0x83,0x49,0x87,0xb8,0x6b,0x05,0x9b,0x06, +0xcd,0xc6,0x5a,0x89,0x24,0x68,0xa8,0xfc,0x31,0x12,0x5e,0x79, +0x9a,0xc1,0xc2,0xca,0xa0,0x29,0xeb,0x02,0xe3,0xb9,0x53,0x3e, +0x72,0x28,0x40,0x67,0x4e,0x3d,0x2d,0x59,0x94,0x2b,0x25,0xb3, +0xaf,0xe5,0x14,0xa5,0xa5,0x73,0xd7,0xc1,0xec,0x3e,0x6f,0x31, +0x98,0x8d,0xb5,0x52,0x67,0xf5,0x4a,0x61,0x3f,0x8f,0x74,0xc5, +0x72,0x62,0x3d,0xac,0xe3,0x0e,0x97,0x70,0x24,0x4c,0x23,0xf8, +0x9f,0x8d,0x5c,0x99,0x81,0xf3,0x75,0x36,0x13,0x9b,0xfb,0xf2, +0xa6,0xbb,0x19,0x37,0xce,0x24,0x56,0xb9,0xbc,0x69,0x47,0xb2, +0x27,0x15,0xbc,0x25,0x1d,0x49,0xbe,0xcd,0xbe,0x1c,0xd9,0x1d, +0x96,0x32,0x98,0xa1,0x59,0x72,0xa7,0x99,0xec,0xe9,0x10,0xd4, +0x38,0x80,0x5b,0xfe,0x41,0x80,0x40,0x06,0x6e,0xde,0x5e,0xfb, +0x4b,0xf5,0xa7,0x4c,0x24,0xb5,0x51,0xbe,0x1d,0xd9,0x01,0x89, +0xc3,0x4a,0x50,0xc3,0xb7,0x35,0x57,0x25,0xf4,0x81,0x58,0x20, +0xa6,0xd0,0x7d,0xf7,0x4b,0x7a,0xc1,0x02,0x68,0x47,0xf7,0xdd, +0x7f,0x07,0xdd,0x19,0xf8,0x43,0x47,0x83,0xf5,0xff,0x50,0x72, +0x2e,0xb7,0xf9,0x92,0xc1,0x3c,0x68,0xc7,0x5f,0xed,0xc7,0xc4, +0x10,0x3a,0x7f,0xd6,0x60,0x34,0x3c,0x12,0x99,0xe2,0xd1,0x68, +0x03,0x64,0x58,0xe0,0xdf,0x0d,0xf5,0x7b,0xa7,0x67,0x13,0x4e, +0x52,0x0c,0x6f,0xfa,0x27,0x56,0xc2,0x82,0x2a,0x11,0xf5,0xcf, +0x4c,0x97,0x6a,0xae,0xdc,0xb4,0x50,0x56,0x18,0x36,0xa3,0xe6, +0xcd,0xfa,0x21,0xf1,0x4d,0x22,0x8e,0xa0,0xda,0x54,0x80,0x23, +0xb7,0xd8,0x4a,0x17,0xfc,0x37,0xc5,0xb9,0xe2,0xfc,0x16,0x6a, +0xf6,0x2e,0x6f,0x36,0x82,0xfd,0x30,0xb2,0x6d,0x4d,0x20,0x83, +0xfd,0x70,0x8d,0x3b,0x6f,0xc0,0x17,0xf3,0xf1,0xc5,0x5a,0x05, +0x22,0xbc,0x45,0x84,0x01,0x7e,0x85,0xf3,0x4a,0xc9,0x5b,0x57, +0xb3,0x8b,0xd2,0x8e,0x1d,0xe3,0x16,0xf1,0xec,0x35,0x53,0x49, +0x2e,0xbc,0xf6,0xa5,0x1f,0xb7,0x78,0x87,0xed,0x4e,0x49,0x4c, +0x89,0x49,0xe3,0x16,0xfe,0xcc,0xc3,0x77,0x3a,0x38,0x8c,0xc3, +0x9e,0xe8,0xed,0xcd,0x1e,0x8d,0xec,0x88,0xec,0xc4,0x5a,0x18, +0xce,0x5b,0x7c,0x8f,0xec,0x0a,0x49,0x81,0x8c,0xff,0x7b,0x7e, +0xd8,0xb3,0xc8,0xaf,0x17,0xb2,0x53,0x8e,0x21,0x3b,0x3a,0xd1, +0xaa,0xe6,0x50,0x0f,0xee,0x1c,0xc6,0x1d,0x57,0xca,0xae,0xfe, +0x02,0x82,0xb9,0x09,0x18,0xb7,0x3a,0x44,0x2f,0xc3,0x64,0xd7, +0x35,0x86,0xa6,0xdc,0x81,0xf0,0xa9,0xa6,0xfd,0x7f,0xab,0x8e, +0x2e,0x1e,0x8e,0x42,0x17,0xde,0x32,0x44,0x6f,0x5b,0x5f,0xcd, +0xc8,0x9d,0xca,0xa4,0x64,0xc8,0xc1,0xdf,0xb9,0xe5,0x5f,0x45, +0x1b,0xc1,0xac,0x88,0xdd,0xa5,0xdc,0xe1,0x1e,0x5d,0xe6,0x7a, +0xfb,0x96,0x7a,0xdb,0x08,0xd7,0x43,0x15,0xf8,0xc0,0x53,0x7c, +0x60,0xd0,0x9a,0x41,0x95,0x52,0x3c,0xfd,0xcb,0x53,0x65,0xc7, +0x33,0x8f,0xd7,0x59,0xcd,0xf1,0x6d,0x4c,0xc5,0x85,0x30,0xe2, +0x1b,0x3f,0xdd,0x68,0xfb,0xa1,0xd1,0xde,0x7f,0x78,0x9b,0x34, +0xda,0x5e,0xe5,0xda,0x74,0x4f,0x31,0x51,0x37,0xda,0xdd,0x86, +0x59,0xa9,0x25,0x3d,0xb8,0xd3,0x75,0x76,0x50,0x74,0x75,0xd6, +0x66,0x92,0xa5,0x5e,0x0c,0x4b,0xab,0xc4,0x91,0x67,0xc7,0x6b, +0x6d,0x35,0xb7,0x9d,0x4a,0x17,0xb9,0x5f,0xb8,0x65,0x80,0xeb, +0x6a,0x09,0x0a,0xf5,0x22,0xa1,0x0e,0xd2,0x54,0x7f,0x89,0xa6, +0x3a,0x93,0xf3,0x28,0xa6,0x4d,0xf7,0x42,0x96,0xd2,0x10,0x77, +0x1d,0x69,0xa5,0x9e,0xeb,0x49,0x2c,0x53,0x90,0xe5,0xf7,0x10, +0xf6,0xd4,0x85,0xf9,0x30,0x2c,0x9b,0x2d,0x06,0xb1,0x52,0xd8, +0x5a,0x53,0xc0,0xc4,0x76,0xba,0xd3,0xb8,0x35,0x37,0xd4,0x67, +0x58,0xbb,0x1b,0x9b,0xa1,0x94,0x6e,0x31,0xb6,0x15,0xd9,0x2f, +0xfe,0x6c,0x85,0x7f,0xa6,0x3e,0xff,0x13,0x8d,0xb0,0x08,0xa5, +0x62,0x3f,0xa2,0x9f,0x35,0x8e,0x1e,0xc8,0x44,0x8b,0x03,0x92, +0x53,0x07,0xf4,0x2b,0x17,0xd3,0x7d,0xc4,0x5b,0x51,0xc5,0x1b, +0x6a,0x0c,0xd2,0xf7,0x83,0x56,0xa2,0x33,0x69,0x9d,0x2f,0xb5, +0xce,0x41,0xc9,0x4f,0x20,0xe4,0x69,0x3d,0xfa,0xa9,0x58,0xfe, +0x94,0x87,0x3f,0x0d,0x86,0x4d,0xe2,0x38,0xd3,0x7e,0x40,0x21, +0x6a,0x31,0x96,0xda,0x0c,0x2d,0xc4,0xe6,0xbf,0x92,0x68,0x83, +0xda,0x8a,0xcf,0xa4,0x94,0x9f,0x35,0x6b,0xe5,0xae,0xba,0xf6, +0x82,0xb6,0xf6,0x0e,0x01,0x72,0xe4,0xd3,0x91,0xe4,0x0a,0x83, +0xf5,0x5f,0xa9,0x47,0x43,0x4f,0x11,0xff,0x12,0x47,0xd8,0x01, +0x2d,0x45,0x20,0x79,0x3a,0x5b,0xd1,0x82,0x5d,0x56,0xb2,0x26, +0xa3,0x07,0xf5,0xe5,0xf1,0x92,0x0c,0xf4,0xa0,0x76,0xfd,0x0b, +0x0f,0x2a,0x2c,0x3a,0x35,0x25,0x39,0x35,0x36,0x8d,0x37,0xbc, +0xcd,0xd0,0xbd,0x09,0x70,0x1f,0x38,0x47,0x3a,0x65,0xdb,0xd0, +0x92,0x7d,0x3d,0xac,0x3b,0x78,0xd2,0x3f,0x11,0xe3,0xaa,0xcb, +0x2e,0x1b,0xd1,0x39,0x9b,0xf5,0xc2,0x39,0x3b,0xcf,0x5b,0x45, +0x32,0xe9,0x34,0xbd,0x62,0x22,0x6e,0x3f,0xad,0x8b,0x5b,0x4f, +0x3e,0xde,0xaa,0x80,0xf0,0xe8,0x94,0x83,0xc9,0x29,0xb1,0x47, +0xd1,0x29,0xf3,0x9b,0x30,0x60,0x2e,0x2c,0x1b,0x4b,0xec,0x0c, +0x2f,0xb1,0x1b,0x5f,0x5d,0x76,0xc9,0x88,0xde,0x59,0x3a,0x79, +0x67,0x46,0xf2,0xce,0xf2,0xfe,0xe6,0x9d,0xa5,0x29,0x99,0xbe, +0xe4,0x9d,0xa5,0x9f,0x3d,0x61,0xde,0x15,0x47,0x6a,0x8b,0x93, +0x2d,0x4d,0x59,0x25,0x90,0xf2,0x43,0x9d,0x73,0xe6,0x1f,0x1e, +0x7d,0x70,0x1f,0x77,0xbd,0xc6,0x26,0xf6,0x9f,0x8f,0x91,0xb9, +0x8b,0x33,0xb9,0x62,0x0d,0xd1,0x15,0xe3,0x96,0xf1,0xac,0xa6, +0x1e,0x4c,0x57,0x08,0xa1,0xe1,0x26,0x2c,0xa7,0x9b,0x65,0x2b, +0xb4,0x24,0x74,0xa7,0x76,0x91,0x8f,0xd6,0x4b,0xfa,0x68,0xbb, +0xc8,0x47,0xeb,0x25,0x7d,0xb4,0x5d,0xe4,0xa3,0x85,0x48,0x1f, +0x6d,0x17,0xd9,0xd4,0x22,0xe9,0xa3,0xed,0x22,0xd7,0xab,0xd7, +0x7f,0xe1,0xa3,0xd5,0x12,0xfe,0x27,0x1f,0x6d,0x17,0xf9,0x68, +0xaf,0xfe,0x57,0x3e,0x9a,0x91,0x7c,0xb4,0xc3,0xd2,0x47,0x8b, +0xa7,0xb5,0x7a,0x37,0xf9,0x68,0x46,0xf2,0xd1,0xf2,0xc8,0x47, +0xc3,0x36,0x42,0x37,0xaa,0xd4,0x87,0xda,0x28,0x53,0xc9,0xf0, +0x15,0x2d,0x4f,0x62,0x1b,0x1d,0xab,0x6b,0xa3,0x53,0xad,0x4d, +0x99,0xc5,0x90,0xf2,0xed,0xda,0xad,0x7e,0x91,0xd8,0x46,0x2b, +0xfc,0x37,0x46,0xa1,0x83,0x9c,0x12,0x7d,0xd4,0xfc,0xb2,0x63, +0xb7,0x00,0x56,0xb8,0x63,0x97,0xb4,0x51,0x3e,0x1f,0xf6,0x3a, +0x78,0xd2,0x3f,0x11,0xde,0xd5,0x65,0xa5,0xe4,0xdd,0x35,0xe2, +0x36,0x95,0x0c,0x36,0x68,0xf1,0x24,0x14,0x7d,0xbc,0x59,0x7f, +0xf5,0xf1,0x76,0x91,0x8f,0xf7,0xb9,0xf4,0xf1,0x8c,0xe8,0xe3, +0xb9,0xfe,0xd5,0xc7,0xa3,0xd7,0x79,0xd0,0x98,0xbb,0xdd,0x66, +0xf0,0xe6,0xb3,0xdf,0x48,0xd9,0x18,0x1c,0x29,0x9f,0x28,0xd9, +0x38,0x08,0x73,0x69,0x10,0xf2,0x56,0xed,0x99,0x1e,0x0c,0x04, +0xf1,0x86,0x33,0x58,0x3a,0xb7,0x78,0xc4,0xfc,0xc7,0x0f,0x7c, +0x0b,0xde,0x1d,0x69,0x55,0xbd,0x09,0xfa,0x3e,0xbb,0xc6,0x54, +0x63,0x37,0x38,0xe6,0x2e,0x56,0xc2,0xc2,0xab,0x62,0xcf,0x49, +0x1f,0xb1,0x9c,0x1e,0x52,0xe0,0xe0,0x43,0xa3,0x35,0xf2,0x8b, +0xe3,0xcd,0x9e,0x31,0x8f,0xf6,0xca,0x78,0xd5,0xd8,0x1d,0x8e, +0x79,0xa0,0x89,0xf6,0xaf,0x12,0x07,0xcb,0x44,0x03,0xd5,0x80, +0x23,0x6a,0x3a,0x9c,0xe6,0xe6,0x28,0xc6,0x0d,0x93,0x18,0x74, +0x1f,0xc4,0xda,0x72,0xd3,0x77,0xec,0x53,0x43,0x57,0x38,0xc6, +0x5f,0xc5,0x30,0xa6,0x59,0x21,0xeb,0xae,0x78,0xaa,0xc6,0xd6, +0x37,0xfe,0xa1,0x1a,0xcb,0x29,0x8f,0xc9,0x9e,0x46,0x8b,0xa1, +0x33,0x83,0x43,0xde,0xe2,0xbd,0xae,0xf0,0x0e,0xf5,0x9c,0x27, +0xfb,0x56,0x2c,0x13,0x3e,0x67,0xbc,0xc5,0x3c,0x38,0x7d,0x55, +0xfc,0x0e,0x07,0x6e,0x53,0x7a,0xae,0x4e,0xb4,0xb8,0x2b,0xcc, +0x27,0xa2,0xa9,0x48,0x34,0x5f,0xf8,0x54,0xc0,0x37,0x22,0x5d, +0x3c,0x86,0xd4,0xdb,0x86,0x72,0x32,0x98,0x1d,0x20,0x10,0x3a, +0xd4,0x52,0x1f,0xf1,0x16,0x0b,0xbb,0xe2,0xba,0xd8,0xc9,0x58, +0x53,0xc9,0xca,0x28,0xe5,0x37,0xbc,0x77,0x73,0x1c,0x4d,0x73, +0x85,0xcf,0x45,0x5c,0x1e,0xb3,0xc4,0x93,0x51,0x60,0x80,0x8e, +0xc2,0xe0,0x7d,0xd3,0x50,0x0a,0x9b,0x15,0xd1,0x11,0xac,0x69, +0xb9,0xe5,0x86,0xa1,0x6c,0x20,0x9d,0xeb,0x0e,0xec,0x06,0xeb, +0xa1,0x13,0x37,0x4e,0x47,0x59,0xeb,0xc5,0xf8,0xa2,0x6f,0x50, +0x69,0x03,0x0e,0xcf,0x0b,0xdc,0x3c,0x9f,0xe9,0x32,0xd2,0x38, +0xff,0x89,0x09,0x9f,0x8f,0xe0,0x5b,0x39,0x18,0x1f,0xc9,0xa1, +0x99,0x71,0xfb,0x39,0x13,0x6e,0xe9,0x21,0x47,0x63,0x25,0xa3, +0xc1,0xe9,0x53,0x34,0x59,0x54,0x5e,0x80,0xe2,0xdb,0x92,0x51, +0x43,0x88,0xc0,0xa1,0x49,0x84,0x9d,0x6f,0x7c,0x27,0xdb,0xe3, +0x16,0x38,0xc8,0x54,0x29,0xa3,0x96,0x82,0xe3,0x34,0xf8,0x11, +0xaa,0x3a,0x8d,0x14,0x91,0xd5,0xe8,0x60,0x70,0x61,0xc7,0x0c, +0x3f,0xdf,0xa0,0xf4,0x95,0x90,0x52,0xcb,0x00,0x9f,0xd7,0xc3, +0xbb,0x34,0xa7,0x41,0xab,0xfc,0x10,0x6e,0x98,0xbb,0x6e,0xdd, +0xd2,0x05,0x8e,0xee,0x17,0xa6,0x3d,0xfe,0xe9,0x42,0x61,0x45, +0xe6,0xba,0xb4,0xb9,0xbb,0x9d,0xe2,0xb8,0xb5,0x07,0x3b,0x9b, +0xf1,0xee,0xcc,0x99,0x0b,0xdf,0x9d,0xec,0x6c,0xcd,0x1b,0xf9, +0xb1,0x31,0xdc,0xe5,0x7b,0xf6,0x39,0xf6,0x94,0x01,0x26,0x40, +0x26,0x77,0x58,0x87,0x7d,0x12,0xc1,0xda,0x50,0x67,0x42,0x83, +0x9b,0xb5,0x7d,0xb8,0x0c,0x7b,0xab,0xe9,0x6c,0xbd,0x0f,0x7b, +0x0c,0x62,0x5d,0x61,0x27,0x37,0x07,0x33,0xf8,0xe0,0x1b,0xac, +0x55,0xb3,0x1d,0xac,0x87,0xe2,0xad,0x1a,0x87,0xb8,0xe1,0x48, +0x3e,0xe7,0x76,0x5d,0x35,0xe2,0xa0,0xb5,0xd1,0x2c,0x70,0xb8, +0xd6,0xd1,0x77,0x83,0x18,0x0f,0x1c,0xb2,0x46,0x1a,0xb2,0xb0, +0x15,0x07,0x0d,0x6f,0x34,0x12,0x8d,0x73,0x04,0x9c,0x42,0xf3, +0x99,0x5d,0xae,0x6d,0xff,0x52,0x0d,0x28,0xd5,0x02,0xee,0xaa, +0x91,0xe5,0xb0,0xe3,0x8e,0x41,0xea,0xd5,0x0d,0x0e,0xe0,0x28, +0xbe,0x08,0xfb,0x1f,0x4a,0x0d,0x96,0x50,0xac,0xbb,0x45,0x36, +0xcd,0xb0,0xd6,0x5e,0xe2,0x58,0x59,0xeb,0xab,0xd4,0x3e,0x35, +0xef,0x42,0x29,0x0d,0x6a,0x79,0x6f,0xd2,0x76,0x1f,0xb1,0xdd, +0x20,0xb6,0x9e,0x57,0xb4,0x83,0xb0,0x6c,0xb2,0x58,0x36,0xf3, +0x66,0xb5,0x85,0xb1,0x66,0x3a,0x3c,0x52,0x8a,0x67,0x7e,0x99, +0x51,0x7a,0x24,0x23,0xcd,0x9c,0x1c,0xbf,0x23,0x32,0x79,0xa3, +0x18,0xd7,0x43,0x46,0x13,0x9f,0x71,0xb7,0x38,0x76,0x30,0x29, +0x35,0x06,0xa7,0xa2,0xf7,0x79,0x6d,0x9a,0x0f,0x2d,0x5e,0xde, +0x13,0xe7,0x40,0x57,0x77,0xba,0x37,0x2a,0x43,0xb9,0x2e,0x1c, +0x76,0xb0,0xed,0x61,0xe7,0x6a,0x56,0x33,0x37,0x58,0x41,0xd1, +0xcb,0x84,0x4a,0x11,0x89,0x6b,0xa2,0x27,0x25,0x7c,0xd1,0x33, +0x1c,0x47,0x75,0x9b,0xfc,0xc1,0xb4,0x59,0xca,0x24,0xb1,0x6c, +0xd6,0x4d,0xf5,0xd7,0xc1,0x5a,0xbc,0xb1,0xc6,0x56,0x8c,0x53, +0xce,0xcc,0xfc,0xf2,0x44,0xe9,0x91,0xcc,0xa3,0xb8,0x18,0x7f, +0x40,0x42,0xc7,0xf7,0xa2,0x8f,0x60,0xc3,0x6f,0x73,0x97,0x58, +0x56,0xa2,0x4d,0x9b,0x84,0x21,0x4b,0xc8,0x24,0x9f,0xb9,0xd0, +0xd9,0x93,0x84,0x1d,0x47,0x61,0x8e,0x6a,0x1f,0xa6,0x4e,0x84, +0xd3,0x0a,0x1d,0x5b,0xe4,0x16,0xc0,0xf6,0xa4,0x27,0x9c,0xc8, +0x73,0xdc,0x33,0xd2,0xdf,0xd8,0x67,0xd1,0x6c,0x30,0x75,0x71, +0x2a,0x9c,0xf5,0x61,0x7e,0x5e,0xc6,0xd1,0x0c,0x73,0x42,0x5c, +0xe2,0xe6,0x84,0x8d,0xc2,0xa9,0x25,0x25,0x02,0xd4,0x4c,0x14, +0xbd,0x14,0x9c,0x76,0xb3,0xaf,0x88,0x9d,0x32,0x3f,0x8c,0x14, +0x9a,0xc4,0x9b,0x7c,0xcf,0x6a,0x1a,0x8b,0x51,0xa8,0xc8,0x3d, +0x52,0xe4,0x08,0xd6,0xfe,0x83,0x2d,0xdb,0xd1,0x2b,0xe8,0x63, +0x2a,0xca,0x83,0xe1,0xb7,0xd6,0xc5,0x49,0x20,0xa1,0xf5,0xc1, +0x1b,0xa3,0xf7,0xec,0x4f,0x3a,0x10,0x83,0x11,0xf5,0xc4,0x5a, +0xc5,0x82,0xa7,0xf8,0xe0,0x2c,0xf1,0xb6,0x12,0x0b,0xb0,0xe7, +0x15,0x27,0xf6,0xe1,0x33,0x60,0xeb,0xc4,0xcc,0xd1,0xb0,0x90, +0x5b,0x71,0x6a,0xee,0x9d,0xd8,0xdc,0x93,0xb0,0xb9,0x4f,0x68, +0xc3,0x94,0xa9,0x62,0xd9,0x92,0x9b,0x6a,0xf9,0x60,0x6d,0x05, +0x55,0x7c,0x20,0x6f,0xb9,0x8d,0xc1,0xc8,0x5b,0xeb,0xe3,0x03, +0xe8,0x94,0xdf,0x7a,0xf4,0x39,0xf6,0xec,0xdd,0xb6,0x3f,0x26, +0xc5,0x2c,0x26,0x49,0xee,0xde,0x86,0x80,0x69,0x5e,0xf3,0xa1, +0x8d,0x0f,0x55,0x7b,0x1f,0x55,0x7b,0x07,0x4b,0x0e,0x2f,0x36, +0xad,0x84,0xce,0x12,0xea,0xa0,0x79,0xdc,0xc4,0x67,0x7d,0x98, +0xd8,0x04,0x13,0xb9,0x2d,0xc6,0x52,0xd1,0x8a,0x3f,0x5d,0x3c, +0x10,0xf6,0x2c,0x82,0xed,0xde,0x93,0xe7,0xbc,0xee,0x3c,0xb7, +0x6d,0xc4,0x7e,0xe0,0x8d,0xd1,0x4a,0xb0,0x05,0xe8,0x9b,0xf6, +0xe0,0xe6,0x24,0xf9,0x38,0x1d,0x1f,0x4d,0x89,0xf2,0x51,0x1d, +0x8c,0xc3,0xc5,0x81,0x12,0x22,0xe7,0x53,0x83,0x96,0x72,0xa5, +0x19,0xe3,0xad,0x6f,0x33,0x6d,0xa7,0x72,0x53,0xbd,0x34,0x58, +0x5b,0x0e,0x8b,0xa6,0x89,0x45,0x06,0x6c,0x9d,0x77,0x38,0xfb, +0x93,0x4a,0x2a,0xa1,0x9f,0x8b,0xc5,0x62,0x0c,0x64,0x4d,0x14, +0xcb,0x06,0xc0,0x62,0x68,0xbe,0x9f,0x95,0x39,0x87,0x9c,0xe7, +0x4d,0xa6,0xb0,0xbb,0xe2,0xad,0x33,0xf0,0xd6,0x17,0x62,0xd9, +0x59,0x38,0x01,0x57,0xc5,0xd9,0xb3,0x74,0x47,0xd0,0x7c,0x36, +0x0d,0xc5,0x35,0x73,0x91,0x22,0xc4,0x7e,0xf0,0xe5,0xf6,0x59, +0xd4,0x2e,0xdb,0xb1,0x5d,0x26,0xcb,0x76,0x19,0xc7,0xdd,0x66, +0x53,0xfb,0x0f,0x97,0xed,0x31,0xe2,0xd6,0xba,0x97,0xda,0x63, +0xdf,0xb6,0xfd,0xb1,0xa9,0xd8,0xda,0xc5,0xda,0xb4,0x29,0xd8, +0xda,0x01,0x53,0xbd,0xe7,0x43,0x3b,0x6f,0x6a,0x8f,0x03,0xdc, +0x9e,0xee,0x6d,0xfe,0x93,0x89,0x63,0x50,0xa0,0xac,0xdb,0x4a, +0x38,0x4c,0x81,0x21,0x26,0x5c,0x56,0x53,0x12,0x53,0xa3,0xd3, +0xcc,0x22,0xa1,0x4c,0xbb,0xef,0x25,0x76,0xa2,0x93,0x35,0x7a, +0x1e,0xbc,0xeb,0x41,0x29,0x57,0x8e,0x39,0x77,0xd2,0xcf,0x1c, +0xd3,0x91,0xc6,0xb6,0xec,0x0e,0x13,0x07,0x5a,0x99,0xd2,0x4b, +0x28,0x57,0xab,0x86,0xdd,0x84,0x09,0xdc,0x21,0x95,0x71,0xd7, +0xa3,0x4c,0x8b,0xae,0x9d,0x14,0xea,0x4f,0x34,0x29,0x6e,0x73, +0xc5,0x92,0x0d,0x85,0x55,0x8a,0xba,0x71,0x88,0x41,0x8b,0xf5, +0x4f,0xf0,0x56,0x23,0xf6,0x59,0xf6,0xb8,0x2e,0xf6,0x6a,0x57, +0xf4,0x0a,0x46,0x6b,0xdd,0xb9,0xd3,0x79,0xa9,0x4c,0x7f,0x58, +0xc5,0x6d,0x1d,0x19,0xcc,0x55,0x0e,0x0b,0xab,0x41,0x09,0xab, +0xc0,0xc6,0x12,0xc6,0x1a,0x56,0x0a,0x9b,0xc1,0x1b,0x0e,0x83, +0x15,0xb7,0x08,0x67,0x24,0xec,0x21,0xf6,0x98,0xe1,0x6d,0xd6, +0x15,0xd7,0xa3,0xab,0xaa,0x30,0x6a,0xaf,0x07,0x2a,0xe0,0x3f, +0x51,0xf8,0x1b,0x62,0x34,0x0f,0x42,0xb7,0x9a,0x51,0xa5,0x7e, +0x33,0x5c,0x0b,0x37,0x6a,0x51,0xe2,0x4d,0xa5,0x78,0x5e,0xe5, +0xb1,0xc2,0x23,0xe9,0x47,0xcd,0x49,0x5b,0xb7,0x6f,0xd9,0xb6, +0x51,0xbc,0xd6,0xd7,0x74,0xf6,0x14,0x74,0xba,0xc9,0x5b,0x8f, +0x63,0xfb,0x63,0xb0,0x71,0x7a,0x9f,0xd3,0x9c,0x27,0x8a,0xbe, +0x86,0xc0,0x29,0xbe,0x6f,0x81,0x0d,0x36,0xce,0x48,0x48,0xe5, +0x8d,0xdb,0x13,0x60,0xd6,0xe3,0xab,0x06,0xed,0x75,0xf5,0xe1, +0x73,0xee,0xa3,0x89,0xfb,0xb4,0x2a,0xf5,0xce,0x70,0x6d,0x3d, +0x71,0x1f,0xa4,0x73,0x3f,0x4c,0xdc,0xe3,0xb6,0x47,0x6e,0x8b, +0x10,0x5d,0xfa,0x9a,0x8a,0x4f,0x22,0x77,0xff,0x44,0x7f,0xea, +0x84,0xa0,0x0d,0xe1,0xd1,0xbb,0xf6,0x25,0xee,0x8f,0xc5,0x41, +0xd9,0xbb,0x44,0x73,0x9e,0x24,0xfa,0x18,0x82,0xa6,0x4c,0x99, +0x03,0x4d,0x7c,0x48,0x4e,0x0a,0x67,0x87,0x49,0xce,0x23,0x29, +0xe7,0x4b,0x94,0x33,0x49,0xca,0x19,0x89,0x43,0x9d,0xe4,0xdc, +0x1a,0xae,0xad,0x26,0x39,0x83,0xb9,0x29,0x9d,0x51,0xb2,0xc0, +0x72,0xa2,0x2e,0x97,0xd4,0x67,0x91,0x7a,0xb2,0xa4,0xee,0xa1, +0x4c,0x13,0xbd,0x17,0x56,0xa9,0x27,0x87,0x6b,0xb3,0x89,0xba, +0x2f,0x37,0x33,0x86,0xdc,0xf7,0x70,0x36,0x9c,0xe8,0x7f,0x92, +0xf4,0x5f,0xf3,0x26,0x2b,0xd9,0x5b,0xa8,0x3b,0x37,0x04,0x53, +0x62,0x25,0xd6,0x71,0x2c,0x8e,0xe1,0x09,0xac,0x4c,0xeb,0xc9, +0xcd,0x3b,0xe4,0xe3,0x49,0x7c,0x34,0x25,0xc9,0x47,0x75,0x07, +0xc4,0x73,0x87,0x3b,0xac,0xfa,0x7b,0xa6,0x26,0x43,0x39,0x57, +0x4c,0xf4,0x78,0x8a,0x08,0x16,0xd0,0x53,0x26,0x1d,0x6a,0x74, +0xa6,0x27,0xf1,0x2d,0xcc,0xe0,0xf6,0x99,0x24,0xe9,0xbe,0x94, +0xf4,0x19,0x57,0x6e,0x93,0xfc,0x1d,0x9c,0xbd,0x8f,0xfd,0x95, +0xcb,0xd4,0x7a,0x50,0xaa,0xac,0xdd,0x1a,0x1a,0xe9,0x17,0xe8, +0x4f,0x43,0x2c,0x85,0xd0,0xc4,0x8e,0x99,0x45,0x7c,0xb9,0x76, +0xdf,0x13,0x87,0xd8,0x86,0xb1,0x63,0xe6,0xc0,0xfb,0xe3,0x28, +0xfc,0x77,0x3c,0x79,0xf7,0xf8,0x99,0xe3,0x1f,0xc4,0xef,0x8e, +0xda,0x85,0xe3,0x0b,0xea,0x99,0x8e,0x9d,0xa3,0x01,0x96,0x47, +0x30,0xdc,0xbe,0xdc,0xe1,0x28,0x75,0xfa,0x37,0x57,0xd5,0x6f, +0xb0,0xd3,0xc3,0xb8,0xbd,0x1b,0xdb,0x0a,0x7e,0xe8,0xe9,0xbd, +0x69,0xd0,0xb6,0xf9,0x25,0x78,0xaa,0x31,0x07,0x2c,0xbb,0xdc, +0x10,0x87,0xe8,0xbc,0x2b,0x6a,0x53,0x26,0xb5,0x29,0xe6,0xca, +0x2d,0xaa,0xef,0x56,0x45,0x34,0x31,0x7e,0x1a,0x77,0x2d,0xf1, +0x62,0x72,0x78,0x91,0x69,0x95,0xf8,0x82,0x41,0x23,0xe3,0x3d, +0x38,0xa3,0xdc,0x51,0x83,0xcf,0x69,0xc1,0x5f,0xa8,0xd1,0xa5, +0xda,0x2d,0x48,0x27,0x44,0xaf,0x32,0xca,0x6a,0xc9,0x65,0x1b, +0x89,0xf7,0x4f,0x65,0xda,0x4f,0x06,0x75,0x3e,0x2c,0xc6,0x11, +0x49,0x20,0x78,0x60,0xab,0x67,0xb5,0xd8,0x52,0x56,0x0b,0xb3, +0x84,0xb6,0xde,0xd5,0xf5,0x4b,0x0d,0xba,0x8a,0xaf,0x63,0x43, +0x38,0xf8,0x52,0xcc,0xf4,0xe4,0x96,0xfa,0x04,0x63,0xa6,0x08, +0x6e,0xdb,0x82,0xe1,0xf4,0xc2,0x65,0x21,0xab,0xec,0x28,0x67, +0x8c,0xa1,0x51,0xec,0x4a,0x4b,0xc2,0xf0,0x3b,0x34,0x4d,0xfd, +0x43,0xa4,0x51,0xdc,0x97,0xb2,0x4d,0xa2,0xab,0xf9,0x9c,0xd7, +0x66,0xf8,0x88,0x49,0x86,0x0d,0x13,0x7c,0xde,0x82,0x6e,0x63, +0xad,0xc4,0x52,0x88,0x55,0x6e,0x3c,0xe1,0x4e,0x7d,0x28,0x7e, +0x99,0xc2,0x9d,0xf2,0x98,0xba,0xa0,0x7a,0x1b,0xc6,0x44,0x3e, +0x18,0x13,0x89,0xeb,0xe7,0x94,0x41,0xda,0xc3,0x5b,0x86,0x9a, +0xc9,0x22,0x86,0x44,0x64,0x96,0x1d,0xad,0x5b,0x79,0x50,0x4c, +0x77,0x29,0xe6,0x0b,0xb2,0xbd,0xfe,0xa1,0x32,0x22,0xdb,0x77, +0x10,0xc5,0xa4,0xbd,0x24,0xc6,0xd3,0x67,0x0e,0x74,0x1b,0x47, +0x62,0xb6,0x2a,0x37,0x7e,0x79,0xf6,0x0a,0xdd,0x61,0xb2,0xab, +0x7a,0x0f,0xce,0x62,0x33,0x7a,0x7c,0x92,0x71,0x28,0x6f,0xdc, +0x8a,0xce,0x7f,0xde,0x10,0x16,0xf4,0xbe,0x1d,0x1c,0xe6,0xca, +0x7e,0xf6,0xb4,0x82,0x69,0x47,0xf0,0xfd,0x14,0x31,0x93,0x1b, +0x76,0x33,0xd8,0xa8,0xdc,0xf8,0xb9,0xa6,0x3b,0x13,0xa1,0xd0, +0x96,0xb3,0x5b,0xa4,0xe4,0x0e,0x54,0x72,0x22,0x29,0xb9,0xf9, +0x8c,0xa2,0xe5,0xdc,0x52,0x73,0x8c,0x35,0x53,0xe0,0x6e,0x75, +0x0c,0x5b,0x8c,0x71,0xcd,0xba,0xbb,0xe2,0x7d,0xe1,0x4d,0xc9, +0x72,0xab,0xfa,0xc3,0xfb,0xe0,0xea,0x5e,0x0b,0xca,0xe7,0xd2, +0x5c,0x24,0x8b,0xc5,0x94,0xca,0x7b,0xa0,0x52,0xdc,0xa3,0x54, +0xde,0xff,0xc4,0xc9,0x17,0x39,0x85,0xde,0x15,0x0b,0x90,0x13, +0x6d,0x5e,0xf4,0x87,0x05,0xe0,0x4a,0x9b,0x17,0xf7,0x68,0xf3, +0xe2,0x7d,0xf2,0xa6,0xfe,0x53,0xe9,0x49,0x7a,0xe9,0x79,0x58, +0x3a,0xdd,0x4b,0x2c,0xa4,0x64,0x59,0x57,0xee,0xdc,0x81,0x89, +0x01,0x0a,0x74,0xfa,0x6d,0x34,0xdc,0x11,0x99,0xe2,0xce,0x68, +0x03,0xa4,0xd2,0x1e,0x86,0x85,0xcc,0xa9,0x1b,0xcc,0x54,0x4f, +0x74,0x48,0x6c,0xa2,0xe9,0x03,0xd4,0xde,0xec,0xc4,0xd3,0xe7, +0x1c,0x8f,0x8c,0x7a,0xcf,0xd8,0x5a,0xa6,0xd6,0xbd,0xa2,0xa7, +0xd6,0x05,0xde,0x13,0x01,0xc2,0x0b,0xca,0xbc,0x44,0x70,0x7f, +0x08,0x00,0x57,0x78,0x9d,0x45,0x26,0x9c,0x5c,0x70,0xa9,0x2c, +0x37,0xf7,0x48,0xae,0x39,0x3e,0x2e,0x21,0x32,0x3e,0x4c,0xb4, +0x00,0xb3,0x9e,0x56,0x37,0x98,0x4d,0x45,0x35,0x42,0xee,0xe2, +0x8a,0xe0,0x4d,0x58,0x7e,0xcb,0xfa,0xa3,0xff,0xe1,0x5a,0x73, +0x8b,0x95,0x3f,0xbb,0xcb,0xc4,0xdd,0x4d,0xca,0x97,0x62,0xce, +0x59,0x98,0x73,0x4f,0xbc,0x43,0x08,0x80,0xf7,0x44,0xc9,0x79, +0x23,0x15,0xf2,0xfd,0x0f,0x85,0xa2,0xc4,0xdb,0x84,0x02,0x78, +0x50,0x39,0x20,0x06,0x8c,0x89,0xf3,0x83,0xa1,0x96,0x63,0x0d, +0x7e,0x62,0x28,0x5d,0x07,0x33,0xe0,0xd9,0x7d,0xd9,0x73,0xe9, +0xb2,0xe7,0xde,0xc2,0x46,0x10,0x7b,0xb0,0xc3,0x5a,0x5f,0x60, +0xd4,0x0e,0x5e,0xb2,0x1d,0x5e,0x97,0xed,0xd0,0xac,0x21,0x2e, +0x37,0x4b,0x69,0x33,0x71,0x9e,0x02,0x5e,0x8f,0xc6,0xc0,0x16, +0xb9,0x5b,0x58,0x3c,0xd6,0x20,0x6e,0xa0,0xdf,0x1f,0x9c,0x18, +0xb0,0x25,0x90,0xae,0x48,0x8d,0x88,0xb6,0xdc,0x93,0x99,0x98, +0x5d,0xec,0x78,0x70,0xd4,0x1a,0x63,0x87,0x85,0x53,0xc1,0xce, +0xc5,0xa9,0x68,0x76,0x45,0xc9,0xe9,0x9c,0x23,0x27,0xa5,0xe7, +0x10,0x47,0x3b,0x87,0xd6,0x32,0x59,0x6f,0x2a,0xae,0xe4,0x5e, +0x3f,0x13,0xd2,0x28,0xc6,0xb0,0xdf,0xcb,0x18,0xf6,0x3b,0x6e, +0x58,0xc3,0x70,0xf4,0xc5,0x68,0x40,0x9f,0xc7,0x93,0x95,0x80, +0x84,0x80,0xc8,0x40,0x3a,0x8d,0x8f,0x8c,0xf7,0xcb,0xd4,0x8e, +0xc3,0xc3,0x57,0x18,0x87,0x2c,0x9b,0xde,0x61,0x9c,0x53,0xcb, +0xcf,0x82,0x12,0x02,0xb7,0x40,0x2b,0x76,0x3c,0xf1,0xc4,0x69, +0xc7,0xd4,0x11,0xab,0x8c,0x03,0xde,0x9a,0x08,0xbc,0x9f,0x53, +0xfe,0xd4,0xaa,0xbc,0x42,0x99,0x31,0x42,0x08,0xd1,0x74,0x48, +0xbe,0x91,0xe9,0x6a,0x01,0xfe,0x72,0x22,0x91,0x40,0x22,0xe9, +0x73,0x48,0x3d,0x53,0xc1,0x19,0x34,0x23,0x54,0xa5,0x54,0x34, +0x8b,0xad,0x2f,0xb2,0xd4,0xa4,0x23,0xd2,0x02,0xc9,0xdc,0x40, +0x5c,0xe4,0x46,0x8f,0x9e,0x05,0xef,0xca,0xab,0xf2,0x4d,0xa7, +0xef,0x9e,0x28,0xca,0xb0,0x8a,0x32,0xec,0x4c,0xd8,0xfd,0xf4, +0x57,0xd9,0x60,0x97,0x65,0x83,0x05,0xcb,0xa1,0x1e,0xa6,0x5c, +0x9b,0x26,0x0e,0x9f,0x87,0xd4,0x6f,0x68,0xc0,0x1f,0x86,0x8f, +0xb8,0x69,0x8f,0x6c,0xac,0x37,0x30,0x06,0xf0,0x54,0xc3,0x07, +0x1a,0xb5,0x18,0xbf,0xf8,0x09,0x6a,0xc4,0x01,0xcb,0x0e,0x37, +0x44,0xa6,0xec,0xaf,0x28,0xad,0x89,0xf2,0xa9,0xba,0xb6,0x4c, +0x5b,0xfb,0x29,0xc5,0xf2,0xc7,0xeb,0xd2,0x8b,0xb1,0x54,0x77, +0xf0,0x51,0xd4,0x47,0x17,0xf4,0xf4,0xe2,0xf7,0xd0,0xc6,0xd8, +0x0c,0x4e,0x58,0x09,0x26,0x7d,0xd5,0x33,0xd1,0xaa,0x87,0x2b, +0xa0,0x9b,0xa7,0x5a,0x5d,0x6e,0xb0,0xfe,0x67,0x55,0x6e,0x3c, +0x46,0x25,0xbe,0xa2,0x8b,0xb3,0xa6,0xcb,0x8f,0x30,0xbc,0xd9, +0x9f,0x0c,0x23,0xa9,0x9e,0x35,0xb3,0x58,0x27,0xfa,0xb8,0xb8, +0x1a,0x16,0x57,0x8a,0xd4,0xae,0xdf,0x8b,0xd5,0x9d,0x3a,0x7b, +0x88,0xf7,0xe4,0x5f,0x60,0xfb,0xbd,0x0c,0xa6,0xe2,0x29,0x98, +0x42,0xe2,0x2e,0xda,0x25,0x24,0x36,0x79,0xa2,0x5b,0x17,0x58, +0x29,0xf2,0x3a,0x23,0x31,0x46,0x71,0x8e,0xed,0xd8,0x37,0xe4, +0x3e,0x63,0x08,0xd1,0xe0,0xaa,0x68,0x20,0x56,0xf7,0x01,0x47, +0x2f,0xd1,0xd9,0xb8,0xb1,0xdf,0xb4,0xa9,0x60,0xdd,0x35,0x77, +0xa6,0xe9,0x8a,0x4c,0x92,0x49,0x88,0x27,0x1c,0x4e,0xd1,0x91, +0xdb,0x76,0x62,0x74,0x1d,0x40,0xa0,0xfe,0xa9,0x7d,0x3f,0x61, +0xb2,0xe7,0x9a,0x45,0xbb,0x32,0xe8,0x75,0xcf,0x00,0x21,0x90, +0xc3,0x9d,0xda,0xca,0x20,0xac,0x8f,0xe2,0x29,0x56,0x40,0xc3, +0x4a,0xd1,0x50,0xf8,0x0f,0x76,0xf7,0x11,0x4b,0xcf,0xf7,0xba, +0x29,0x56,0xa0,0x83,0xdd,0x58,0xeb,0xcb,0x0d,0x9c,0x71,0x25, +0x88,0xb9,0x71,0xeb,0x73,0x94,0xf8,0xe2,0x36,0x84,0x55,0xd7, +0xa0,0xff,0x6e,0xf7,0xf7,0x00,0x6d,0x5a,0xe7,0x3b,0xc2,0xbf, +0x5f,0x8f,0x71,0x75,0x51,0x9a,0x35,0xfa,0xf2,0x75,0x94,0x7f, +0x8d,0xd2,0xa6,0xf5,0x22,0xca,0xde,0xf0,0x58,0x86,0x6a,0xb6, +0x77,0x0c,0x17,0x35,0x2b,0x05,0x3a,0x88,0x40,0x41,0xa1,0x9a, +0x65,0x11,0x13,0x6b,0xfa,0x11,0xd8,0xdc,0x22,0x19,0xad,0xf1, +0x57,0x7d,0xb1,0xd4,0x3c,0x31,0xed,0x8d,0x3b,0x62,0x75,0xfb, +0x2b,0x8f,0xc5,0x1a,0x8c,0x95,0x7a,0xa3,0x75,0x84,0xce,0xc2, +0x30,0x0a,0x9e,0x88,0x6c,0xf1,0x04,0x6d,0x42,0x9e,0x05,0xfe, +0x6d,0x2d,0x3a,0x53,0x00,0x31,0x9d,0x89,0x55,0x92,0xc3,0x5f, +0x23,0xb6,0x69,0xad,0xef,0x88,0xf5,0x50,0xaf,0x38,0xd2,0xc0, +0x9b,0xff,0xa8,0x5f,0xd7,0xb5,0xe7,0x54,0x42,0xee,0x05,0xc7, +0x63,0xd3,0x3e,0x37,0xea,0xba,0x36,0x93,0xf1,0xdb,0xb4,0xde, +0xa4,0x60,0xbf,0xda,0x1d,0x05,0x3d,0x88,0x6b,0x7e,0xa7,0x56, +0xb7,0x15,0xfd,0xc0,0xe1,0xaf,0x61,0x9c,0x5e,0x9f,0x0e,0x13, +0x28,0x96,0xeb,0x70,0x07,0x1b,0x8e,0x62,0xb9,0x28,0x8a,0xe5, +0x88,0xde,0xaf,0x1f,0xae,0x47,0xb5,0x21,0x9b,0x91,0x42,0xb6, +0x27,0x18,0xb2,0x5d,0x70,0x0e,0xc5,0x90,0xcd,0x9b,0x42,0xb6, +0xe0,0x47,0xdc,0xe6,0x2b,0x36,0x80,0xdb,0xae,0x67,0x9f,0x0a, +0xbf,0x72,0xca,0xbb,0x2a,0x7f,0x36,0x8b,0xc9,0x5a,0xac,0x73, +0xbd,0xfa,0xab,0x58,0xea,0x7a,0x71,0x9d,0x11,0xea,0x2f,0x9a, +0x08,0x4d,0xc0,0xe8,0x54,0x3c,0xb7,0xac,0xf4,0xe4,0xe9,0x43, +0xa7,0xcc,0x71,0x09,0xf2,0x2a,0x0c,0x13,0x38,0x9a,0x8a,0x4e, +0x83,0x49,0x34,0xa3,0x2b,0x02,0x28,0xe9,0x2d,0x84,0xea,0x95, +0x93,0x70,0xba,0xd4,0x31,0x6d,0xd2,0xf7,0x46,0xd8,0x02,0x33, +0x79,0x8b,0x4c,0x5c,0x3f,0x46,0xb0,0xcc,0xc9,0x82,0x9f,0xbe, +0x4f,0xdf,0xd7,0xa2,0xe5,0xd6,0xd3,0x2e,0xb9,0xf5,0x64,0x91, +0x75,0x0e,0x52,0x7e,0x5e,0x17,0xb7,0xbe,0xee,0x0b,0x9b,0xfc, +0x82,0x87,0x51,0xd1,0x91,0x8b,0x35,0x06,0x0f,0x71,0xc4,0xe0, +0x3f,0x61,0xc0,0x1c,0x78,0x67,0xac,0x95,0xc7,0x6b,0x8a,0xbb, +0x58,0xde,0xee,0xda,0x4f,0x22,0xb8,0xdd,0xf5,0x9f,0xc4,0xd2, +0x0a,0x8a,0x0d,0xab,0x38,0xa3,0x53,0x35,0x1e,0xac,0x3d,0xfa, +0x82,0x14,0x17,0x5a,0x3d,0x36,0x0c,0x6b,0xaf,0xc0,0xea,0xc7, +0x62,0xb5,0x1e,0x20,0xf6,0x55,0x30,0x72,0x6f,0x79,0xe9,0x7d, +0x71,0x24,0xe5,0xd2,0x1f,0x62,0x5e,0xa9,0x11,0x8e,0x80,0xa3, +0x02,0xbb,0x3e,0x15,0xbb,0x0c,0xae,0x50,0x45,0xa1,0x22,0x16, +0xef,0xd0,0xfa,0x79,0x94,0xe8,0xc2,0xdd,0x86,0xd2,0x20,0xeb, +0xd9,0xf9,0xa5,0x18,0x31,0xb0,0x54,0x0b,0xbc,0xab,0x6e,0x29, +0x07,0x23,0x77,0x7b,0x13,0x47,0xed,0xbb,0x4c,0xac,0xec,0x00, +0x4d,0x64,0x98,0xd8,0xe4,0x47,0xb1,0x12,0x95,0x29,0x24,0x0c, +0xbe,0xd5,0x3f,0xa2,0xdc,0x2f,0x60,0xaa,0x0c,0x18,0xa9,0xfd, +0xe7,0xb9,0x7c,0xf2,0xae,0xd8,0x7b,0xe8,0xe3,0xdf,0xc5,0xbc, +0xf2,0x3a,0xd1,0xb7,0x50,0xb4,0x36,0x1d,0x62,0xf4,0x2d,0x91, +0xe8,0xba,0x2d,0x11,0xa7,0xdc,0xaf,0x4e,0x9c,0xcd,0xd0,0x3f, +0x3e,0x86,0x89,0x6c,0xb0,0xa0,0x6f,0xa5,0x07,0x9e,0xac,0x8d, +0xe3,0x0d,0xbf,0x62,0xe1,0xd1,0xf4,0xa1,0x94,0x0c,0xd4,0xe1, +0x4b,0x35,0x86,0xf1,0xe2,0xa8,0x21,0x88,0xf6,0x49,0x56,0x8c, +0xb4,0xf2,0x70,0x53,0xe4,0x87,0xd2,0xf9,0x04,0xda,0xb2,0xe4, +0xaa,0x38,0x02,0x85,0x06,0xf1,0xf5,0x78,0x45,0x2c,0xd7,0xff, +0x3a,0x6d,0xb0,0xae,0xdd,0xfd,0xbb,0x48,0x5b,0x74,0xbb,0xe8, +0x33,0xac,0xdc,0xa2,0x3b,0xf0,0xd3,0x5a,0x7d,0x8b,0x6e,0x65, +0xc0,0xc6,0xe8,0x43,0x29,0xc8,0x5d,0xee,0xbf,0x04,0xb9,0x0f, +0x7a,0x0b,0x56,0x8e,0xb1,0xf2,0x68,0xab,0xc8,0x4f,0xa6,0x59, +0xc2,0x93,0x09,0x85,0x36,0xe5,0x8a,0xf5,0x4d,0xb9,0x84,0xba, +0x4d,0xb9,0xe3,0xb4,0x29,0xc7,0x73,0xee,0xa7,0x97,0x1c,0xa3, +0x2e,0x8d,0xdf,0xbf,0x45,0xee,0x26,0xba,0xd0,0xb6,0xdc,0xf7, +0xeb,0xb6,0xca,0x4f,0xbc,0x2b,0x02,0x36,0x46,0xa5,0x1c,0x48, +0x3e,0x18,0x7b,0x18,0x7b,0x54,0x7e,0x33,0x3d,0x6a,0xf0,0xf3, +0x79,0x7d,0x3e,0x2c,0x75,0xb7,0xf2,0xe8,0xba,0x92,0xf6,0xe8, +0x9a,0xd0,0xe7,0xd2,0x1d,0xb4,0xff,0xf6,0xba,0xdc,0x7f,0xdb, +0x41,0xfb,0x6f,0x11,0x72,0xff,0x6d,0x07,0xed,0xa5,0xbd,0xfe, +0x5f,0x6c,0xba,0xd5,0x12,0xfe,0xa7,0x4d,0xb7,0x1d,0xb4,0xe9, +0x66,0xff,0x5f,0x6d,0xba,0x29,0xb4,0xe9,0x76,0x5c,0x6e,0xba, +0x1d,0xa7,0x4d,0xb7,0x54,0xde,0xd4,0x48,0xbf,0x6a,0xf6,0xe8, +0x1c,0xfa,0x05,0x6d,0x8c,0x3a,0x44,0x98,0xd3,0x99,0x66,0x91, +0x54,0xa1,0xfd,0xe8,0x2e,0xf6,0x19,0xc2,0x87,0x8e,0x9b,0x01, +0xab,0x87,0x9e,0xf0,0x36,0x89,0xe6,0x05,0x77,0x32,0x0a,0xb3, +0x71,0xa5,0x88,0xc4,0x4e,0x3c,0x88,0x0b,0xcf,0x89,0x52,0x48, +0xfe,0x63,0x9d,0x4c,0x42,0x37,0x5b,0xab,0xdf,0xc9,0x3d,0x4d, +0x1f,0x51,0x6a,0xd0,0x22,0x20,0x47,0xc9,0x98,0x2a,0x1c,0xb3, +0xbf,0x4c,0x2b,0x49,0x37,0xc7,0x45,0xef,0x4a,0xd8,0x2f,0xb7, +0x63,0x4f,0xb9,0xd2,0x9e,0xdd,0x77,0xb5,0xfb,0x9a,0xef,0x07, +0x44,0x3c,0xdf,0xb3,0x3b,0x72,0xae,0xc6,0x62,0x22,0x75,0xbd, +0xe7,0xc0,0x05,0xb0,0x72,0x3c,0x36,0x20,0x6f,0xf8,0x3b,0xa1, +0x38,0xd2,0x26,0x5d,0x98,0xb2,0x36,0x78,0x53,0xd4,0x81,0x03, +0x49,0x29,0xd1,0x47,0x5e,0xa4,0x7f,0x87,0xfa,0x0c,0x5f,0x0c, +0x2b,0x3c,0xb3,0xa6,0xa2,0x23,0x9d,0xc5,0x6d,0x1a,0xb3,0x8e, +0xa6,0xec,0x62,0x88,0xbb,0xb7,0x76,0xab,0xdf,0x26,0xbf,0x10, +0xb3,0x35,0xd6,0xaa,0xf6,0xd3,0x6d,0x5f,0xde,0xc4,0x97,0x5d, +0x13,0x25,0x72,0x63,0x6f,0x07,0x6d,0xec,0xdd,0x97,0x1b,0x7b, +0x0a,0x6b,0x03,0x6d,0x15,0xed,0xe9,0x04,0xb9,0xb1,0x37,0x5b, +0x19,0x18,0xbf,0x02,0x5a,0x5b,0x82,0x87,0x61,0x85,0x68,0x3d, +0x30,0xec,0x08,0xb4,0xe0,0x56,0x1b,0xa8,0x75,0xb5,0x3c,0xb0, +0x41,0x4b,0x7e,0xac,0xdc,0xa8,0xcd,0x83,0xa1,0x38,0xb6,0xd1, +0xe9,0xbd,0x79,0x4b,0xbd,0x69,0x84,0x4f,0x43,0x78,0x43,0x17, +0x06,0x37,0x94,0x92,0x19,0xf7,0x4e,0x95,0x1f,0xcf,0x38,0x61, +0xde,0x16,0xbf,0x3d,0x52,0xff,0x46,0x70,0xb6,0x10,0x46,0x3c, +0xf2,0x4b,0xf0,0xaf,0xfb,0xb2,0xba,0xff,0xf0,0xb6,0xa3,0xb5, +0xdf,0x08,0x66,0x7a,0xa2,0x47,0x1a,0x36,0x6a,0xe2,0x34,0xe8, +0x3e,0xd4,0x4a,0xbd,0x38,0xe4,0x6b,0x02,0x4b,0x7c,0x83,0xbf, +0xfa,0x69,0xdd,0xc7,0x80,0x4f,0xe9,0x63,0xc0,0x4e,0x0a,0x17, +0x34,0x13,0x7c,0x4c,0x58,0xe1,0x27,0xcb,0x8e,0x67,0xc8,0x2f, +0x10,0x92,0x7b,0x7b,0x3a,0x20,0x34,0xe2,0xe1,0x4b,0xdc,0xf7, +0x1d,0xda,0x76,0x24,0xfa,0x84,0x59,0x78,0x97,0x69,0x33,0xbd, +0x88,0xfb,0x98,0x89,0x33,0xa0,0xfb,0x70,0xe4,0x3e,0x4c,0x59, +0xb1,0x9a,0xc5,0x79,0xd4,0xac,0x61,0xdf,0x43,0x14,0x77,0x6c, +0xc8,0x28,0xc7,0x66,0x35,0xad,0x7f,0x05,0x74,0xb5,0x85,0x0f, +0x43,0x69,0x39,0xdc,0xf2,0x11,0x1b,0xf6,0xac,0x9c,0x95,0xc2, +0xce,0x9a,0x02,0x76,0x81,0xc1,0x67,0x2a,0xba,0x30,0x3b,0x7d, +0x74,0x0d,0x4e,0xca,0xbd,0x9e,0xb2,0x34,0x72,0xea,0xc3,0x84, +0xbb,0xf4,0xb6,0x47,0x7c,0xce,0x6d,0x3c,0x18,0x7a,0xf3,0x32, +0x80,0xf6,0x3e,0xa7,0xcd,0x9c,0x28,0x26,0x93,0x9b,0x3d,0x97, +0xdc,0x6c,0xf5,0xe2,0x08,0xce,0xe6,0xd6,0x82,0xd4,0xa2,0x80, +0x0a,0xde,0xa8,0x1e,0x83,0x6f,0xe1,0x2e,0x37,0xf6,0xa1,0x2f, +0x0f,0x9f,0x6d,0x86,0x22,0xfa,0x2e,0xe1,0xa0,0x7f,0x97,0xd0, +0xff,0x6c,0x85,0x7f,0xa6,0x3e,0xff,0xf3,0x53,0x58,0x20,0x42, +0x59,0xf5,0x38,0xf6,0x23,0xec,0x16,0xe3,0xe8,0x41,0x73,0x41, +0x82,0x03,0xf4,0x04,0x1d,0xa0,0xcb,0x8b,0xef,0x12,0x9f,0xa9, +0x31,0x48,0xdf,0x0f,0xda,0xe9,0xdf,0x25,0x72,0xa5,0xc4,0xec, +0xba,0x2a,0x3d,0xc1,0x25,0xa3,0xde,0xcb,0x9a,0x38,0x0c,0x67, +0x83,0x95,0x95,0x30,0x9f,0x89,0xb7,0x6b,0xe6,0xb1,0x3b,0x10, +0x2a,0x86,0x63,0x14,0xb8,0x9f,0x0d,0x86,0x84,0xda,0x4f,0x16, +0x9f,0xa9,0xc5,0xc8,0x70,0x33,0xb8,0x8a,0xcd,0xf2,0x8d,0x36, +0x08,0x5e,0x11,0x9f,0x49,0xc1,0x3f,0x6b,0x4d,0xff,0xd5,0xa7, +0x0a,0x49,0x35,0x1a,0x06,0xd5,0x7e,0xa1,0xd0,0x19,0xc0,0x0e, +0x68,0x23,0x02,0x69,0xb4,0x14,0xc8,0xf3,0x69,0x9f,0xaf,0xe1, +0xb6,0xf6,0x64,0xac,0x1a,0xe6,0x30,0x70,0xa1,0x93,0x69,0xde, +0xc2,0xec,0x97,0x44,0xa7,0xaa,0xb8,0x73,0x0e,0x73,0x87,0x5e, +0x74,0x66,0xec,0x7e,0xc5,0x85,0xfc,0xec,0x42,0x2b,0x30,0xc2, +0x61,0x4a,0x42,0xdc,0x70,0x5d,0x9c,0x7f,0xd6,0x81,0x30,0x99, +0x36,0x5c,0x13,0xe7,0x69,0x67,0xac,0x13,0xc6,0x23,0xb7,0x0d, +0xf0,0x39,0x1d,0x33,0x38,0x34,0x5e,0x1c,0x22,0xd4,0xda,0x0b, +0x92,0x67,0x4b,0x53,0x49,0x21,0xf2,0x74,0xe0,0x56,0xcb,0x58, +0x66,0x72,0x36,0x6f,0xad,0xb1,0x8e,0x9e,0xc8,0xd6,0x45,0x67, +0x9b,0x47,0x6c,0x9b,0x61,0xa8,0xda,0xe8,0x43,0xf6,0x2c,0x8f, +0xb4,0x8c,0xe2,0x0e,0xbd,0x99,0xea,0xaa,0x19,0x45,0x7b,0x6a, +0xcc,0xf5,0xb7,0x88,0xed,0xdb,0xc8,0xd6,0x43,0x67,0x5b,0xa0, +0x24,0x25,0xed,0xd8,0x9c,0x4c,0xa8,0x8c,0x26,0x1a,0x72,0x5e, +0xc2,0x86,0x78,0xcb,0x93,0xfd,0x66,0x31,0xe5,0xa2,0xb6,0xd0, +0x43,0x4c,0x33,0x44,0x74,0xf3,0xf4,0x82,0x1e,0x74,0xc0,0xff, +0x7e,0x79,0x79,0x6e,0x56,0x9e,0x95,0xf0,0x97,0xa7,0x43,0xb1, +0xe2,0xfe,0xb7,0x55,0x7f,0xac,0x78,0x20,0x9c,0x61,0x6a,0x1f, +0xb8,0x40,0x87,0xcd,0x16,0x31,0x75,0xac,0xf6,0x0a,0x1d,0x36, +0x5b,0xc4,0x26,0x6a,0x61,0x74,0x7e,0x6c,0x11,0xf3,0xc1,0x87, +0xae,0x04,0xe2,0xb8,0x5e,0xd6,0x6c,0x19,0xd2,0x8b,0x1d,0x10, +0xcc,0x2d,0xef,0x30,0xde,0xea,0x36,0x73,0x27,0x75,0x7a,0xc2, +0x19,0xde,0xf0,0x24,0x5d,0x24,0x24,0x5b,0xce,0xde,0x2f,0x31, +0x80,0x0e,0xc5,0x1e,0x38,0x91,0x9c,0x15,0x95,0x6f,0x16,0xbe, +0x15,0xda,0x42,0x77,0x31,0xd5,0x10,0xd1,0x75,0xc2,0x04,0xd2, +0x06,0xab,0x7c,0xe1,0x42,0x6e,0x56,0xbe,0x95,0x68,0x0c,0xc5, +0x74,0xd6,0x0c,0xb9,0xef,0x94,0xdc,0x63,0x90,0xfb,0x27,0xb0, +0x56,0xac,0x27,0xc9,0xd1,0x5a,0x08,0x9d,0x25,0xfb,0xcb,0xcb, +0x4f,0x61,0xbd,0x08,0x62,0xdc,0x3a,0x9b,0x69,0x6d,0x04,0x13, +0xf7,0x19,0x7c,0xa3,0x2d,0x78,0x9a,0x86,0xbf,0xfc,0x82,0xbf, +0x94,0x29,0xa2,0x91,0xd6,0x6c,0xbc,0xf8,0x64,0x9c,0xfa,0x0b, +0x5b,0x97,0x38,0x56,0x5c,0x4d,0x9d,0x3b,0xb4,0xbd,0x27,0x78, +0x8c,0x86,0xef,0xd8,0xaf,0x8f,0x1f,0x8a,0xee,0x8e,0x62,0xa2, +0x76,0x51,0x5c,0x46,0xfa,0x7f,0x20,0x7d,0x89,0x22,0x98,0xa4, +0x1f,0x8f,0xf4,0xeb,0x89,0x9e,0x37,0xf9,0x8a,0x09,0x57,0xed, +0x86,0x98,0x82,0x24,0x4f,0x90,0x24,0x9b,0xdb,0xcd,0x64,0x35, +0x96,0x24,0xee,0x95,0x9a,0xbe,0x0c,0x3e,0xa8,0x19,0xcf,0x5f, +0x5d,0x5e,0xf7,0x0b,0xb7,0xaf,0x78,0xf1,0xd8,0x97,0x5d,0xc3, +0xa7,0x02,0xa4,0x12,0xee,0x5a,0xb1,0xea,0xcc,0xce,0x4a,0x9c, +0xb0,0xa0,0x5a,0x9c,0x30,0xf9,0x92,0xdb,0x07,0xe9,0x54,0xdc, +0xee,0x33,0x36,0x4e,0x7f,0xc0,0x31,0x6e,0xfd,0x23,0x3e,0x16, +0x73,0xeb,0xbe,0xec,0x35,0x2d,0xe2,0x3b,0xfc,0xfb,0x07,0xfc, +0xbb,0x48,0x7c,0xc3,0xe2,0xb5,0x8f,0x45,0x02,0x53,0xeb,0x4b, +0xca,0xc6,0x68,0xd0,0xda,0x6b,0x6e,0xe2,0x23,0xa6,0xce,0x26, +0x99,0x8d,0x90,0x00,0x4e,0x6b,0x33,0xb9,0x71,0x49,0x1d,0x89, +0xfd,0x6b,0x94,0xfb,0xe4,0x07,0x2d,0xc5,0xb2,0xa1,0x5a,0xe4, +0x35,0x0c,0x70,0x5b,0x82,0xff,0x75,0xf5,0x80,0x11,0x97,0x91, +0xb1,0xdc,0xb0,0x93,0xc1,0x3b,0xda,0x8c,0x67,0x73,0xd0,0xff, +0x28,0x65,0xe2,0xaa,0x56,0xf4,0xcc,0x9d,0xa9,0xdf,0x12,0x18, +0x60,0x4b,0x58,0x7a,0x5d,0xdd,0x3c,0x04,0x23,0xd6,0x96,0x62, +0xde,0x50,0xed,0xbd,0x6b,0x06,0x18,0x28,0xaa,0xc4,0x22,0x26, +0x4e,0x6a,0x1f,0x3d,0x9b,0x40,0x54,0xd1,0x44,0x35,0xe3,0xba, +0x3a,0x7f,0x08,0xcc,0x40,0x2a,0x8f,0xa1,0x9a,0xbb,0xa4,0x3a, +0xc9,0x6d,0xae,0xb2,0xb1,0x35,0xa5,0x0c,0x72,0xfd,0x12,0xdc, +0xc5,0x9e,0x03,0x8b,0x46,0xf4,0xf5,0x84,0xd7,0x46,0x73,0xd6, +0x8c,0xfd,0x72,0xff,0xa1,0x68,0xef,0x28,0xac,0xb4,0x36,0xcf, +0x7c,0x51,0x33,0xde,0x70,0x21,0xe1,0xf2,0xb5,0x7c,0x8b,0x91, +0x42,0x7d,0x14,0x61,0xe4,0xad,0xbe,0x61,0xb2,0xcc,0xa8,0x7e, +0x5e,0xd0,0x65,0xac,0xf9,0xb4,0xaf,0xa5,0x08,0xf8,0xe9,0xfe, +0x03,0xd1,0xc6,0x11,0x5a,0xd5,0x0c,0xa9,0xe9,0xf0,0x4f,0xa5, +0x7a,0xab,0x9d,0x19,0x74,0xaf,0x19,0x5a,0xd3,0xeb,0x5f,0xbe, +0x12,0x95,0xda,0xda,0x9a,0x3e,0xb8,0x8a,0xfe,0x83,0x89,0xeb, +0x5a,0xae,0xf6,0xb6,0x7c,0x84,0x6e,0x58,0x60,0xa8,0xfe,0x88, +0x65,0xab,0x93,0x99,0x5a,0x26,0x1e,0x28,0xf0,0x91,0xbb,0xf8, +0x08,0x5d,0xea,0xd4,0xa7,0xbf,0xe8,0x25,0xdc,0xb4,0xce,0xda, +0x2a,0xaa,0xac,0x1f,0x55,0x76,0xd1,0x75,0x35,0x74,0x08,0x2c, +0xc7,0xca,0xbe,0x35,0x54,0x5b,0x2a,0x2b,0xfb,0x11,0x36,0x49, +0x94,0xb6,0x5e,0x7b,0x8f,0x71,0x87,0xfd,0x4c,0xf4,0xd7,0x8a, +0x9f,0x8d,0xfd,0x3f,0xbc,0x7d,0x77,0x40,0x16,0x47,0xf3,0x70, +0x54,0x9e,0x7b,0x60,0x69,0x52,0x8e,0xba,0x02,0x22,0xf6,0x1e, +0x63,0x8d,0x15,0xc4,0x88,0x05,0xec,0x1a,0x8d,0xb1,0x61,0x07, +0x7b,0x8f,0x62,0x01,0x11,0x88,0x9a,0x28,0xf6,0x6e,0x62,0xd7, +0x18,0x13,0x63,0x49,0x62,0x6f,0x68,0xd4,0x44,0x14,0x4b,0x34, +0x76,0x13,0x63,0xac,0xd1,0xe8,0x1e,0xcc,0x3e,0xe4,0x9b,0xd9, +0x7b,0x28,0x1a,0x7d,0xdf,0xbc,0xbf,0x3f,0xbe,0x3f,0x94,0xbd, +0xbd,0x99,0xd9,0xd9,0xbd,0x9d,0xf6,0xdc,0xdc,0x2c,0xc1,0xa7, +0x11,0xbc,0x1f,0x0a,0xba,0x68,0x17,0x21,0x63,0x14,0xe8,0x6e, +0x1e,0x78,0x90,0xf5,0x95,0x25,0x73,0x57,0xfc,0x03,0xc0,0x5c, +0xb8,0x5d,0x04,0x30,0x48,0x96,0x96,0x6b,0x58,0x33,0xf3,0x1b, +0x98,0x77,0x18,0x2c,0x5d,0x53,0xb0,0xab,0xb1,0x37,0xfd,0x82, +0x28,0x4e,0xbd,0xeb,0xff,0xf5,0xd6,0x86,0xee,0xf4,0xfd,0xaa, +0x70,0xa8,0x85,0x81,0xb3,0x15,0x96,0xae,0xfd,0xcf,0x7b,0xbc, +0x05,0xd2,0x9e,0x4f,0x7b,0xbc,0x19,0x7d,0xe7,0x29,0x9c,0xf3, +0x39,0xe8,0x22,0x63,0xb9,0x35,0x89,0xb5,0xc4,0xeb,0xe5,0x85, +0x36,0xbe,0xba,0xa6,0x6d,0x6f,0x6f,0xd4,0xc9,0x87,0x78,0xed, +0xa6,0xb7,0x43,0x4d,0xb6,0x83,0xe3,0xa6,0xaf,0x63,0x36,0x22, +0x99,0xb8,0x83,0xad,0x65,0xf9,0x7b,0x3e,0x7f,0x7c,0x5b,0x23, +0x74,0xf2,0xbe,0x69,0x6f,0x11,0x5f,0x88,0xb7,0x1e,0xde,0x15, +0xb5,0x02,0xb8,0xdb,0x0f,0xcc,0xb8,0x05,0xb3,0x44,0x7d,0x66, +0x2c,0xa0,0x02,0x28,0xc2,0x07,0xe7,0xe6,0x85,0x73,0x5b,0x92, +0x2f,0x21,0x02,0x5d,0xc3,0xa5,0x4b,0x0a,0x49,0x08,0x8e,0xb7, +0x78,0xa9,0x8e,0x1b,0x8f,0xa6,0x1e,0x43,0x9b,0xf3,0xf1,0x84, +0x79,0xdc,0x23,0x83,0x3e,0x3c,0x72,0x5f,0xcd,0x60,0x20,0x2f, +0xf1,0x8c,0x19,0x9d,0x99,0x49,0x04,0xf6,0xc8,0x4e,0xdc,0xad, +0x4d,0x1e,0x19,0x94,0x22,0xf3,0x2b,0x9f,0x40,0xb4,0x5c,0xae, +0x91,0xf2,0x93,0x4c,0xe1,0x2b,0xca,0x41,0x68,0x26,0x0f,0xd8, +0x4e,0xd5,0x62,0xca,0xd0,0x67,0x18,0xe5,0xe8,0x33,0x8c,0x25, +0x90,0x95,0x3b,0xdb,0x0e,0xec,0x8f,0xc0,0xce,0x91,0x32,0x35, +0x53,0xe8,0x78,0x33,0x24,0xb3,0x90,0xd4,0x21,0x4e,0x69,0x3a, +0x1a,0xae,0x1c,0x1d,0x59,0x82,0xd1,0x3a,0x4a,0xa0,0x71,0x9b, +0x8e,0x86,0xc3,0x0e,0xee,0x57,0x9a,0x01,0x47,0x5c,0x6e,0x15, +0x95,0xe5,0x36,0x92,0xc8,0xdb,0xf4,0xc9,0x49,0x39,0xee,0x71, +0x91,0x61,0x77,0x51,0xf3,0x68,0xce,0xba,0xa6,0x34,0x9e,0x4e, +0xa4,0x03,0xb7,0xca,0x09,0x1f,0xab,0x70,0x97,0x47,0x48,0x30, +0x6f,0x1b,0xd5,0x89,0x4e,0x91,0x4c,0xa3,0x6f,0x24,0x20,0xc2, +0xb3,0x48,0x75,0x14,0x63,0xdd,0x7f,0x23,0x97,0x44,0xcd,0x0d, +0xa9,0xb9,0x59,0xbb,0xca,0x20,0x94,0x50,0xee,0xd3,0x86,0xc1, +0x32,0x5b,0x80,0x7c,0xce,0xb8,0x7b,0x07,0x26,0xf6,0x1a,0x55, +0x70,0xc8,0x84,0x3c,0x20,0x58,0x6b,0xab,0x26,0x3b,0xda,0xbf, +0x50,0x71,0xda,0xc3,0x9e,0xe1,0xb8,0x45,0xd5,0x09,0x9b,0x28, +0xcc,0x04,0x5a,0x17,0x02,0x75,0x0c,0x49,0xcb,0x81,0x9b,0x55, +0x76,0x93,0xdf,0xa3,0xf4,0xbe,0x16,0x56,0xc9,0x69,0x5d,0xe0, +0xf9,0xb0,0x83,0x11,0xb6,0xe6,0xbf,0x83,0x9d,0x0d,0x4f,0x94, +0x78,0xa3,0xfe,0xaa,0x2a,0x37,0x2a,0xf1,0xc6,0x19,0x5e,0xb0, +0xd5,0x54,0xe2,0x8d,0xcd,0x8b,0xb6,0x9a,0xaf,0x17,0xef,0xc3, +0x6c,0xac,0x0c,0x46,0xe9,0x7e,0xe9,0x69,0x4d,0xcf,0x14,0x5e, +0x48,0x37,0x08,0x1f,0xed,0x79,0xfb,0x63,0xf2,0xc7,0x6b,0x7f, +0xfa,0xc2,0x66,0x8d,0x8c,0xb0,0x03,0x17,0x37,0x9f,0x43,0x5c, +0xa6,0x70,0xc4,0x9b,0xc5,0x33,0x8d,0x69,0xc4,0x5a,0x38,0x3d, +0x90,0xba,0x10,0x44,0x67,0xb0,0x95,0x03,0x1f,0x6b,0x32,0x3c, +0x94,0x32,0xef,0xe9,0x29,0xa8,0xc8,0x02,0x4c,0x7a,0x22,0xa7, +0x5e,0x7e,0x82,0x50,0x47,0x8e,0x40,0x45,0x82,0x08,0xee,0x84, +0xd0,0x55,0x7d,0xac,0x63,0xdf,0x72,0xd3,0x15,0xc2,0x05,0x5d, +0x14,0x07,0x2a,0x1b,0xd5,0xcc,0x3a,0x31,0x6d,0x62,0xea,0xc4, +0x20,0xd8,0x39,0x31,0xbd,0xb5,0x58,0xbe,0x7a,0x60,0xc3,0xba, +0x2d,0xa1,0x6a,0x13,0xff,0xdd,0x5d,0x2c,0x18,0xe6,0x5b,0x6e, +0x3d,0x10,0x35,0xf1,0x69,0xce,0xa0,0x93,0xd5,0xca,0x89,0x60, +0xeb,0xa7,0x72,0x59,0xee,0x50,0xf5,0x34,0x45,0x49,0xb9,0x29, +0xb7,0x33,0x8d,0xa1,0xeb,0x6a,0x0b,0xd3,0x27,0x57,0xf6,0xb9, +0x4f,0x30,0xb7,0x95,0xda,0xa0,0xa7,0xa7,0x99,0x4b,0xe2,0x6f, +0x6d,0x0d,0x86,0x44,0xe7,0xca,0xa7,0x2d,0xea,0xb9,0x1d,0xa4, +0xdc,0xcc,0x0d,0xc6,0x2d,0x4d,0xcd,0xcd,0x15,0xa3,0xb0,0xbe, +0x7b,0x65,0x67,0xf4,0x90,0x3e,0xa8,0xe7,0xcc,0xd5,0xf2,0xc2, +0x2e,0x4b,0xa4,0xfc,0x28,0x53,0xb8,0x53,0xc9,0x54,0x5c,0xda, +0x2c,0x5a,0xa7,0xd0,0xfc,0xa5,0x4d,0x86,0x63,0xb2,0xc1,0xeb, +0x77,0xd8,0xe7,0xb8,0xc3,0xde,0x57,0xa3,0xc3,0xdf,0x32,0xca, +0x56,0xf9,0x5f,0x0e,0xdf,0x55,0x06,0xa0,0x16,0x2d,0xc3,0x50, +0x59,0x37,0x6f,0x29,0x9a,0xc3,0xa4,0x8b,0xc6,0x22,0xab,0xad, +0x2e,0xbc,0xa5,0x8b,0xd3,0x2d,0x35,0x5e,0x22,0x90,0x09,0x57, +0xa9,0x5b,0x2f,0xc8,0xeb,0xb6,0x2a,0x68,0x34,0x2a,0x32,0x88, +0x93,0x21,0x4c,0x38,0x92,0x56,0xd5,0x5b,0x8b,0xd3,0x4a,0xab, +0xce,0x6f,0x29,0x32,0x51,0xab,0x56,0x68,0x07,0x6d,0x9a,0x17, +0x68,0xd5,0xe9,0x32,0x83,0xce,0x1f,0xc2,0x68,0x67,0xa0,0xa2, +0xad,0x41,0x9c,0xb0,0x92,0x52,0x25,0x3c,0xa5,0x54,0x09,0x4f, +0x29,0xd5,0x9e,0xf2,0x82,0x6d,0x01,0x33,0xd0,0x81,0xeb,0xa7, +0xa8,0xf3,0xc0,0x43,0xec,0x2b,0x59,0x51,0xa2,0xc7,0x12,0xda, +0x98,0x72,0xf9,0x2a,0x71,0x97,0xab,0x0c,0x12,0x6c,0xad,0x73, +0x8a,0x31,0xee,0xf7,0x21,0x13,0x81,0xb6,0xfd,0xa2,0x8f,0x6a, +0x1a,0xcf,0xe5,0x53,0x39,0x1b,0x9b,0x33,0x99,0x48,0x91,0x07, +0xe8,0xbb,0xfd,0xe2,0x1f,0x31,0xf9,0x50,0xd4,0xe0,0x81,0xc7, +0x99,0xe0,0xb6,0xfd,0xf2,0x33,0x75,0x37,0x55,0xd6,0xc9,0xfe, +0x9a,0xcd,0x46,0x0d,0xcd,0x1d,0x4e,0xb3,0x17,0x44,0xf1,0xb4, +0x7c,0x47,0xb8,0x32,0xee,0xb0,0x00,0x07,0xa6,0x4e,0x34,0xab, +0x38,0x72,0x23,0x39,0xa3,0x2d,0xcb,0xee,0x26,0x56,0xeb,0x17, +0x8d,0x94,0x46,0x30,0x90,0x58,0x72,0xe0,0x2e,0x37,0xd9,0x05, +0x99,0x61,0x9b,0x49,0x8b,0x65,0x4e,0x08,0xc6,0x5f,0xa4,0x33, +0x77,0x76,0x43,0x5d,0xba,0x09,0xab,0x31,0xe2,0x99,0x8a,0x6b, +0x54,0xc1,0x3e,0xc2,0x33,0x5d,0x38,0xd1,0x5c,0x7f,0x8c,0x26, +0x55,0xf2,0x64,0xfc,0xfc,0x56,0xe2,0xec,0x9a,0xde,0x91,0x15, +0xda,0x53,0xd2,0x7f,0x26,0x03,0x27,0x59,0xde,0x36,0x87,0x71, +0x47,0x8c,0xc6,0x2a,0xa3,0x5b,0x2a,0x82,0x61,0xc4,0x59,0x23, +0xad,0x29,0xc4,0xf3,0xe2,0x15,0x19,0x7a,0x78,0x57,0x62,0xc4, +0xfc,0x28,0xeb,0xa4,0xb4,0x49,0xa9,0x09,0xbc,0x54,0x3f,0x16, +0x5e,0x2f,0x1a,0x2a,0x45,0xfa,0xef,0x7e,0x5f,0xd4,0xbb,0xfc, +0xeb,0xd9,0x2f,0x7f,0xf7,0x87,0x0e,0xf0,0x48,0x79,0x24,0xeb, +0x98,0x78,0x28,0x5b,0xa1,0xfe,0x2b,0xcf,0x64,0x6a,0x96,0x26, +0xab,0xd2,0x8f,0xf0,0x25,0xa1,0xc7,0x59,0x63,0x78,0x53,0xe8, +0x0f,0xc5,0xb5,0xd9,0x4b,0x67,0x2e,0x5b,0xce,0x4b,0x14,0x67, +0xa2,0xce,0xc5,0x5f,0x7f,0xda,0x76,0xc7,0x1f,0x6d,0x7d,0x57, +0x54,0x81,0x08,0xdf,0x17,0xe1,0x2b,0x8a,0x4e,0xba,0x28,0x01, +0xad,0xcf,0x1a,0xd1,0x4d,0xa1,0x13,0xb8,0x69,0x33,0x17,0xcd, +0x5c,0xb4,0x38,0x40,0x38,0xc1,0x95,0x36,0x62,0x7e,0x0b,0x6b, +0x42,0xda,0xe4,0xd4,0xc9,0x41,0xf0,0xd5,0x44,0x54,0x86,0x8b, +0x3e,0x1b,0xd8,0xec,0xdd,0x36,0x50,0x29,0xca,0x7f,0xd7,0xfb, +0xa2,0xe1,0xc5,0x5f,0x33,0xb7,0xde,0xf5,0x47,0xfb,0xbc,0x1f, +0x75,0xa0,0x6d,0x30,0x93,0x55,0xa8,0x7c,0xc1,0x35,0x06,0x56, +0x7c,0xa0,0x15,0x54,0x4f,0x55,0xec,0x71,0xa9,0xc2,0xc0,0x07, +0x7b,0x6a,0x16,0xee,0x11,0x0f,0xa4,0xb3,0x52,0x48,0xb7,0x99, +0x78,0x22,0x5b,0x28,0x85,0x74,0x9b,0x81,0x8e,0x70,0x11,0x66, +0x13,0x51,0xb2,0xbf,0x30,0x01,0x9a,0xc0,0x01,0x54,0x40,0xc8, +0xef,0x34,0xe4,0xb7,0x8a,0xe8,0xcb,0xfd,0xae,0xb3,0xf5,0xd2, +0x59,0x79,0x13,0x18,0xed,0x77,0x94,0x31,0x28,0x70,0x78,0x7b, +0x98,0xba,0xdd,0x8b,0x5c,0x86,0xe8,0xb3,0x46,0x0c,0x4d,0xc7, +0x5d,0x9b,0xb5,0x78,0xe6,0x92,0xa5,0x01,0xc2,0x4a,0xd3,0x59, +0xd0,0xca,0x9a,0xc0,0x9d,0x6a,0xa3,0xeb,0xb4,0x18,0x5d,0xa7, +0x7a,0x6d,0xa1,0x62,0x0b,0x74,0x9d,0x44,0xbd,0x2c,0x5c,0x97, +0x5b,0xfe,0x53,0x60,0x17,0x0a,0xe3,0xcb,0x74,0xf2,0x96,0xe5, +0x7f,0xa1,0x33,0x1d,0xbe,0x37,0xa5,0xca,0x1b,0x9a,0xb7,0xc2, +0x8d,0xe2,0x0e,0x2d,0x5a,0x8b,0x16,0x10,0xa2,0x84,0xab,0x01, +0x09,0xd7,0x09,0x12,0xae,0x00,0x12,0x2e,0x0f,0xeb,0xe5,0x02, +0xe1,0xf2,0x7e,0x97,0xa1,0xe6,0x6b,0x11,0x2d,0x5a,0x68,0x30, +0x4a,0xf4,0x23,0x29,0xf3,0x68,0x2d,0x4e,0xb4,0x82,0x27,0x0c, +0xee,0x93,0x9c,0x9d,0x5e,0x1b,0x1b,0x51,0xb1,0x2d,0x44,0x37, +0xf7,0xff,0xa6,0x83,0x45,0x6c,0x7a,0xf6,0x40,0x89,0xda,0xac, +0x7c,0x51,0xf3,0x40,0x02,0x6e,0xf9,0x04,0xfa,0x90,0xb8,0x11, +0x81,0xd6,0x8a,0x00,0x09,0xdc,0xe9,0x35,0x7d,0x9a,0x22,0x81, +0xd6,0x51,0x26,0x81,0xa7,0x48,0xa0,0x7a,0x80,0x18,0x90,0x2f, +0x80,0x2e,0x48,0xc0,0x31,0x9f,0xc0,0x07,0x76,0x02,0x3f,0xb4, +0xc6,0x5d,0x90,0x90,0x3a,0x99,0x3b,0xe5,0x30,0x22,0xd0,0x0e, +0xa2,0xf3,0x09,0xdc,0x11,0xd5,0x02,0xbe,0x35,0x85,0x35,0xb8, +0x35,0x83,0x03,0x24,0xac,0xb8,0x05,0xc6,0x98,0xc2,0xea,0xbb, +0x9c,0x89,0x60,0x53,0x58,0xb1,0x69,0x64,0x9b,0xc2,0xea,0xbb, +0x8c,0x89,0x4f,0x4d,0x61,0x75,0xef,0xc3,0xe4,0x9f,0x62,0x26, +0x0f,0xcc,0x60,0x22,0xc4,0x14,0x56,0xba,0x7b,0x16,0x80,0x3b, +0x0f,0x21,0x71,0xd5,0x72,0x51,0x58,0x2c,0x50,0x96,0x89,0x2e, +0x44,0xf8,0x7c,0x81,0xcc,0xba,0xbf,0x4b,0xe9,0xc9,0xb4,0xb4, +0x1a,0x92,0x58,0xa2,0x23,0x9b,0x9a,0x62,0x33,0x08,0x1e,0x4c, +0x40,0x71,0xfb,0xf1,0x75,0xac,0xd2,0x84,0xac,0xe2,0xb4,0xb4, +0xe9,0xdc,0xb2,0xa1,0x90,0x98,0x9b,0x2b,0x87,0xa3,0xf4,0xe4, +0x2e,0x37,0xd8,0x35,0x25,0xea,0xc6,0x4f,0x85,0x87,0xef,0x48, +0x02,0x4d,0x8b,0x11,0xcd,0xad,0x57,0xd9,0xe7,0x7d,0x22,0x2b, +0xb6,0x57,0xb4,0x3b,0x22,0xed,0x3f,0x1f,0xdc,0x12,0x55,0x03, +0xc0,0x45,0x96,0xb6,0xfd,0x45,0x0f,0xbe,0xe0,0x39,0x40,0x09, +0xa5,0x25,0x0e,0x90,0x96,0xb8,0x81,0xce,0x95,0xa9,0x25,0x70, +0xd6,0xb8,0xbc,0x9d,0xc8,0xd1,0x22,0x8a,0x31,0x44,0x71,0x4d, +0x9f,0xf7,0x50,0x39,0xb4,0x6e,0xe9,0x4f,0x4e,0xdc,0xa6,0x27, +0x48,0xb1,0x72,0x00,0xb4,0xb6,0x35,0x33,0x9a,0xb0,0xdc,0x6a, +0xaf,0x3e,0x5a,0xc5,0x25,0xac,0x93,0x9d,0x61,0xb6,0xa9,0x73, +0xfe,0x27,0x3e,0x8b,0x98,0xba,0xa7,0x78,0x37,0x06,0x8b,0xe4, +0x42,0x5d,0x1d,0x7a,0xeb,0x19,0x12,0xf3,0x02,0x9c,0xb8,0x7b, +0x37,0xdc,0x95,0x90,0x19,0x23,0x66,0xa2,0xf2,0xe1,0x25,0xbf, +0x61,0x9f,0x0d,0x0a,0xe7,0x1e,0x63,0x19,0xc6,0x17,0x71,0x2f, +0xae,0xdd,0x13,0x95,0x02,0xe0,0x03,0xf9,0x81,0x52,0x3c,0x0b, +0xd1,0x17,0x95,0xdf,0xa3,0xe2,0xa9,0x81,0x8a,0x07,0x3d,0xf3, +0x45,0xf3,0x91,0xd2,0x70,0x1e,0xf0,0x13,0xdb,0xd5,0xcd,0x22, +0xe2,0xff,0xba,0x76,0x57,0x54,0x08,0x10,0xc7,0x54,0x1c,0x84, +0x20,0x7d,0x09,0x64,0x1e,0x82,0x44,0xf3,0x52,0x6b,0x99,0x88, +0x40,0x36,0x21,0xb3,0xad,0x98,0xd5,0x02,0x95,0x9c,0x7a,0x68, +0x1b,0x26,0xcd,0x6d,0x23,0xe6,0xac,0x1e,0x14,0xd9,0xa0,0x0d, +0x94,0x79,0x8f,0x5b,0x5a,0xb0,0xa7,0xd7,0x7e,0x13,0x65,0x03, +0x44,0x80,0x0a,0x83,0x68,0xc0,0x7a,0xb6,0xd2,0xe8,0x63,0xc9, +0xcb,0xc4,0x77,0x4f,0xee,0xf7,0x3e,0x8a,0x8b,0x0a,0x76,0xf2, +0x7a,0x5c,0x2c,0x18,0x29,0x60,0x4f,0xcd,0xc2,0x3d,0xe2,0x96, +0x1c,0xab,0x54,0xcd,0x25,0x26,0x7e,0x93,0x3b,0x95,0xaa,0xb9, +0xc4,0x20,0x18,0xe1,0x22,0xcc,0x26,0xa2,0x28,0x55,0x83,0x00, +0xb5,0x65,0x25,0x54,0x35,0xc8,0xee,0x34,0x62,0x37,0x9d,0xfb, +0xd5,0x65,0x2b,0xcc,0xb8,0xc5,0xe7,0x3b,0x26,0x5a,0xa9,0xb8, +0x05,0xef,0x0e,0xa3,0xbb,0x2b,0x70,0x32,0x31,0xcd,0x42,0x43, +0xda,0xbe,0x80,0xb7,0xa0,0x48,0x5b,0x51,0x44,0x83,0x92,0xa2, +0x39,0x46,0x67,0x6a,0x5e,0x2d,0xf3,0x34,0x27,0xce,0x2b,0x06, +0xe7,0x35,0xf0,0xbd,0x06,0x6d,0xa1,0x74,0x14,0xcd,0xeb,0xc9, +0xb5,0x5f,0x45,0xe9,0x80,0xb1,0xb2,0x14,0xaa,0x1b,0x5e,0xbc, +0x3b,0x71,0x9a,0xca,0xfd,0x6a,0x33,0x78,0x57,0x76,0x20,0x0b, +0xef,0x73,0x96,0xd5,0xb0,0x35,0x50,0x06,0xfd,0x3b,0x06,0xcd, +0x65,0x3b,0x34,0xe8,0x79,0x83,0xae,0x54,0x2b,0xe8,0x1f,0xc6, +0x26,0xca,0xb2,0xa8,0x65,0x78,0xa0,0x60,0x90,0xae,0x0b,0xf7, +0x46,0xa8,0x66,0x6e,0x45,0x65,0x1f,0x39,0x6d,0xb5,0x0d,0x82, +0xb8,0x9c,0xc9,0xe6,0x9d,0x4f,0x75,0xe1,0xd2,0x08,0x5c,0xe0, +0x16,0x06,0x7f,0x1f,0xc0,0x61,0x31,0x89,0x71,0x1e,0xc4,0xe0, +0x63,0x14,0xec,0xc6,0x28,0x3c,0x37,0x2a,0xd0,0x8f,0xc5,0x59, +0xb6,0x26,0x4c,0x38,0x1b,0xd7,0xf4,0xf4,0x68,0x63,0xcd,0xf2, +0xe4,0x3e,0x49,0xfd,0xa6,0xf5,0xf5,0x3f,0x3f,0xd5,0xb2,0xe2, +0xe6,0xc2,0xeb,0x4f,0x03,0x32,0xe4,0xad,0xd6,0xc6,0x42,0x6b, +0x5c,0x5a,0x7c,0xea,0x90,0x20,0x88,0x83,0x44,0x7c,0x70,0x8d, +0xc1,0x09,0x6e,0xa8,0xba,0x5a,0x01,0xb6,0x85,0x4c,0xaa,0x42, +0xeb,0xdd,0xe4,0x7a,0xd5,0xf2,0xc4,0xd6,0x4a,0x6a,0x41,0x5d, +0x58,0xa6,0xd3,0xb7,0x62,0xef,0x49,0x67,0xf1,0x95,0xe1,0xfc, +0x9e,0x26,0x87,0x42,0xa6,0x9e,0xf4,0x58,0xa2,0x83,0x5e,0x8f, +0xbb,0x2e,0xa2,0x4f,0xb5,0xcb,0x6b,0x6e,0x52,0x55,0x62,0xff, +0x59,0x0e,0x51,0xe8,0x3e,0x88,0x3e,0x20,0xbf,0x95,0xac,0x08, +0x5d,0x81,0x00,0xb9,0xc1,0xe4,0x3c,0x05,0x97,0xb7,0x31,0x58, +0xd5,0xe8,0xed,0xe1,0xb8,0x9c,0xc0,0xb8,0xff,0x8f,0xf4,0xc3, +0xef,0x9e,0xec,0xcb,0x8c,0xbb,0xbc,0xc0,0x28,0x5e,0x17,0xc5, +0x1a,0x43,0x31,0xb8,0x01,0x78,0xe1,0x9f,0x3b,0x91,0xc1,0xc2, +0x43,0x78,0xa7,0x9f,0xaa,0xac,0x95,0x53,0x85,0x08,0x4a,0x01, +0x00,0x5f,0x9a,0xe0,0x13,0x74,0x51,0xb4,0x31,0x14,0xa5,0xa5, +0x90,0xbb,0xc1,0x4f,0xe2,0x13,0xb1,0x66,0x30,0x59,0x0f,0x9d, +0x15,0x19,0x38,0x29,0xbd,0x8d,0xe1,0xb6,0x2c,0xb9,0x27,0x77, +0x4f,0x64,0x57,0x65,0x8b,0x68,0xa3,0x28,0xf7,0xb8,0x4a,0x07, +0x2a,0xa1,0xf6,0x4f,0x61,0xc2,0x8f,0x8e,0xc8,0x73,0x4c,0x60, +0x6b,0x44,0xa5,0x60,0xd9,0x1d,0x22,0xb8,0xb5,0x1e,0x62,0xff, +0x85,0xd8,0xfb,0xfe,0x37,0xe4,0x33,0x30,0x9f,0x5b,0x1e,0x23, +0xee,0x63,0xc4,0x3d,0x86,0xb8,0x09,0xe9,0x6d,0x0d,0xb7,0xa5, +0xc9,0x3d,0x93,0xfa,0x4c,0xed,0xe5,0x9f,0x39,0xcd,0xb2,0xe2, +0xda,0xc2,0xab,0xf7,0x03,0x2e,0xcb,0x16,0x31,0x46,0xd1,0x49, +0x3c,0x70,0x37,0x5b,0x0d,0x9b,0xb8,0x56,0x0a,0x31,0x9e,0x32, +0xf9,0xee,0x1e,0xee,0x23,0xd8,0x5f,0x54,0x3e,0x0b,0x03,0x10, +0xeb,0x0b,0xa4,0x71,0x90,0x3b,0x7f,0x86,0x8f,0x17,0x1a,0x73, +0x6b,0x32,0xe3,0xf4,0x78,0x3c,0x64,0xa5,0xdc,0x18,0xb3,0x59, +0x92,0x3e,0xe2,0xdf,0xab,0xda,0x97,0x60,0x38,0xb7,0xe0,0x2e, +0xb2,0x2c,0x62,0x27,0x60,0x33,0xd7,0x5c,0x54,0x53,0x86,0x10, +0xc4,0x0e,0xb3,0xad,0xa0,0x4f,0xb3,0xec,0xa9,0xea,0x54,0x22, +0xdf,0x93,0x56,0xf9,0xee,0x5e,0xae,0xf5,0xa2,0xf7,0xcb,0x95, +0xb8,0xe5,0x0a,0x0e,0xf8,0x27,0xb2,0xb0,0x9f,0x58,0x40,0x37, +0x72,0x20,0xd7,0x7c,0xb1,0x0b,0x85,0xb4,0xde,0x21,0xe2,0x61, +0x27,0xcc,0xe5,0x96,0xbf,0x18,0xd7,0x43,0x48,0x7d,0xad,0xe2, +0x96,0x2d,0xd8,0x2e,0xc9,0xd2,0x00,0x5d,0xd3,0x25,0x08,0x78, +0x5c,0x2d,0x35,0xf7,0x01,0x26,0xeb,0x10,0xb7,0x83,0xd5,0xa0, +0xf0,0x3b,0xfc,0xc8,0xb5,0xeb,0x0a,0x4d,0xbc,0x8d,0xfd,0x5a, +0xac,0x42,0x83,0x45,0x50,0x51,0x9e,0x43,0x91,0x80,0x68,0x5d, +0x54,0x4a,0xd2,0xba,0x8c,0x1d,0x1b,0xd7,0x3f,0xa0,0xf5,0x19, +0x1e,0x70,0x93,0x55,0xa3,0x83,0xe1,0xbd,0xf2,0x8f,0xf9,0xf1, +0x82,0x79,0x67,0xe9,0x98,0x9f,0xc6,0xd0,0x97,0xf3,0x9e,0xe8, +0x6f,0xc1,0x0a,0x0c,0x25,0x9b,0x42,0x88,0x51,0x8b,0x25,0x1d, +0x6b,0x39,0xb9,0xee,0xb4,0x1a,0xc9,0xfe,0xed,0xa0,0x07,0xb7, +0xbe,0xcb,0xb2,0x8b,0xd0,0x89,0x3d,0x26,0x46,0xd3,0x02,0x2a, +0x1a,0x4c,0x10,0xcf,0x08,0x19,0x35,0x55,0x12,0x77,0xf8,0x96, +0xe5,0xe1,0x8b,0x04,0x48,0xa1,0xd3,0x78,0x8a,0xd0,0x69,0x3c, +0x5e,0x90,0x7c,0xd6,0xd8,0xd5,0x14,0x66,0x20,0x9a,0x79,0x1a, +0x0f,0xa2,0xfd,0xae,0xc3,0xd5,0x84,0xf4,0x76,0x22,0x73,0x09, +0x3e,0xc3,0x5e,0x53,0x7b,0xfa,0xff,0x44,0xcf,0x70,0xc1,0xb5, +0x07,0xf8,0x0c,0x5d,0xdb,0x88,0x8c,0x89,0xd6,0xe1,0x69,0xc3, +0xd3,0x46,0x06,0x21,0xe5,0xc9,0x3a,0x32,0x93,0x58,0x23,0xd9, +0x51,0xf8,0x37,0x85,0x12,0x3c,0xcc,0x81,0x2d,0x58,0x23,0xdc, +0x82,0x45,0x4f,0x58,0xc9,0xb5,0xea,0x68,0x55,0xbf,0xc1,0x4d, +0x2a,0x32,0xb8,0xf3,0xe7,0xe8,0xe1,0xa2,0x5a,0x94,0x2c,0x7b, +0x8a,0xb1,0x86,0xc9,0x71,0x67,0x45,0x5f,0x1c,0x3c,0xee,0xac, +0x31,0xcb,0x2a,0x1b,0xc1,0x7b,0x62,0x34,0x83,0x11,0xb2,0x34, +0xd7,0x9a,0xbc,0x01,0x80,0x6b,0x5d,0xd9,0x6c,0x19,0x41,0x47, +0x51,0xf4,0x15,0xb1,0xb0,0xb5,0x8d,0x18,0x58,0x19,0xfa,0xc2, +0x3b,0xbc,0x44,0x0e,0x13,0x7f,0xdb,0x8e,0x32,0xf8,0x84,0x4e, +0xd3,0x7b,0x33,0xb2,0x31,0x1c,0x52,0xb9,0x65,0x39,0xcb,0x99, +0xca,0xc4,0x39,0x1c,0x4e,0x4c,0x86,0x0d,0x9c,0x19,0xe6,0x35, +0x01,0xc8,0x08,0x07,0x24,0xde,0x1f,0x89,0x7f,0xd5,0x46,0x0c, +0x56,0x27,0xdf,0xac,0x66,0x47,0xe4,0x36,0xa6,0xce,0xb8,0xf9, +0x95,0xce,0xbf,0xc9,0x87,0xb5,0x73,0x42,0xc0,0xdb,0x14,0xf0, +0x00,0x78,0x27,0xe7,0x1c,0x4b,0xaa,0x11,0x88,0x31,0xe8,0x11, +0xee,0x34,0x8d,0xc1,0x0c,0x3a,0x0d,0xe7,0x23,0xf1,0x7e,0x54, +0xde,0x69,0x38,0x45,0xe8,0x50,0x12,0x2f,0x18,0x74,0xd6,0xf8, +0xb8,0x69,0xb6,0x27,0xa3,0x93,0x70,0x60,0xbc,0xf8,0x09,0x59, +0x39,0x49,0xfb,0xe9,0x1a,0x41,0xc4,0x13,0xc4,0xe4,0xb3,0xc6, +0xfa,0xa6,0x90,0x80,0x4f,0xc4,0x3c,0x56,0x06,0x17,0xf0,0x86, +0x5a,0xc0,0x69,0xb0,0x80,0x8e,0x95,0xe1,0x3e,0xe9,0x4c,0xe8, +0x4d,0xc1,0x9f,0x1e,0xe6,0x30,0x48,0xcb,0x9e,0xc8,0xb8,0xf7, +0x28,0x76,0x0b,0x16,0x72,0xcb,0xee,0xbc,0x71,0x38,0x73,0x63, +0x48,0xc1,0x3c,0xf8,0x04,0xc7,0x39,0x44,0x2b,0xec,0x84,0x2a, +0xbe,0x33,0xed,0xb5,0xe9,0x78,0x2b,0xef,0x98,0x16,0x2f,0x48, +0xc1,0x2d,0x40,0x7b,0xad,0x2b,0xf7,0x2d,0x82,0x76,0x19,0x1a, +0x72,0x2b,0xcb,0x5f,0x27,0xe8,0x28,0x4b,0x72,0x6b,0x23,0x35, +0x04,0x6c,0xc7,0x7b,0x5a,0xfb,0xff,0x38,0x86,0x03,0x84,0x71, +0xcb,0x1f,0xcc,0x40,0x39,0xf8,0x01,0x29,0xfa,0x9c,0xa4,0xb7, +0x29,0x11,0xe2,0x1b,0xfa,0x45,0xfb,0xfb,0x8b,0x1a,0xfc,0x20, +0x9e,0x53,0xe7,0x3d,0x98,0x67,0xab,0x4f,0x7d,0x2b,0x54,0xdf, +0x5d,0xee,0x73,0x8a,0x1d,0x86,0x4d,0xf0,0x0d,0xcb,0x4d,0x43, +0x4c,0x71,0x9c,0x73,0x57,0xb5,0x25,0x98,0x70,0x0f,0x07,0x4f, +0xee,0x5e,0x4b,0x7d,0xb7,0x81,0xba,0xce,0x17,0xb2,0xd0,0x9c, +0x56,0x65,0xf0,0x2b,0x3c,0x17,0x28,0xc1,0xce,0xc1,0xf4,0xea, +0xa2,0x72,0xee,0x42,0xb3,0x19,0x2a,0x2b,0xc1,0x69,0xd5,0xbc, +0x08,0x23,0xe0,0x1c,0xb6,0xaa,0xb1,0x07,0xf0,0x85,0xcd,0x45, +0xb5,0x50,0x21,0x54,0x82,0x9f,0xcc,0x26,0x41,0x1e,0x63,0xb6, +0x9f,0xa9,0x5a,0xcd,0x05,0xee,0xd9,0x9f,0xd5,0x85,0xca,0xf0, +0x33,0xf1,0x34,0x57,0xf1,0x74,0x5d,0xb1,0x30,0x9c,0x58,0x70, +0x0b,0x07,0x8f,0x7c,0x16,0x46,0x62,0x0c,0xf5,0xad,0x62,0xe1, +0x2a,0xcc,0xb5,0xa1,0xc2,0x70,0xae,0xcc,0x9a,0xc0,0x12,0xf8, +0x11,0xa5,0x7c,0x12,0x4b,0x85,0x0a,0xb6,0xa6,0xaa,0x4f,0x36, +0x40,0x6e,0x51,0x4d,0xf8,0x4c,0x67,0xad,0x73,0x1f,0x31,0x78, +0x24,0xcb,0x8b,0x73,0xe6,0x9d,0x28,0x68,0x0c,0x3b,0x15,0x38, +0x2c,0xc6,0x41,0x4f,0xa1,0xbd,0x7b,0x41,0x67,0x0d,0x08,0xcf, +0x08,0xf0,0x84,0x2a,0xe6,0x9f,0xd8,0xdc,0x12,0x0c,0xcd,0x61, +0x5f,0x65,0x0e,0xf1,0xf6,0x42,0x6e,0xdd,0xcf,0x5a,0x66,0x1f, +0x39,0x49,0x09,0xe7,0x7b,0xd1,0x1a,0xa2,0xd9,0xbb,0xc8,0x9d, +0xce,0xa0,0x47,0x76,0x94,0xdd,0x5e,0x78,0xfb,0x39,0x2f,0x7e, +0x8d,0x0d,0x4c,0x8b,0x4b,0x8d,0x0b,0x52,0x5f,0xbe,0x21,0xb4, +0xb2,0x90,0x67,0x4c,0x0b,0x79,0x5d,0x9f,0x1b,0x6d,0xac,0x5f, +0x9e,0x1c,0xab,0x2c,0xe4,0xb9,0xa9,0x96,0x95,0x37,0x16,0x5e, +0xff,0x13,0x2d,0xe4,0x9d,0x68,0x63,0x71,0x9e,0x85,0x54,0x36, +0xca,0x39,0x02,0x9c,0x91,0x09,0xf5,0x27,0xb6,0x02,0x19,0x4a, +0x1f,0x34,0x94,0xdc,0xb5,0xbd,0x3a,0x9c,0x04,0x16,0x32,0xdb, +0x36,0x06,0x53,0xf4,0x8d,0x0c,0xaa,0xe0,0xbf,0xd8,0xea,0xaa, +0x32,0x25,0x1a,0xd0,0x7f,0x74,0x7b,0x62,0xf7,0xca,0x7f,0x74, +0xa3,0x69,0x5d,0x64,0xdb,0xf1,0xcf,0xee,0x0e,0x70,0x1e,0xcd, +0xe8,0x3f,0x88,0xf8,0x20,0x91,0x01,0xaf,0xef,0x4e,0xfe,0x27, +0x91,0x2b,0x18,0x7a,0x6d,0xf8,0x77,0x2b,0xd3,0x1e,0x0e,0x92, +0x05,0xc6,0x69,0xa1,0x05,0xde,0x49,0x16,0xd8,0xb5,0x1d,0xbd, +0x7a,0x3d,0x9e,0xfd,0x54,0xd1,0x9d,0x8a,0xd6,0x3a,0x02,0xad, +0x75,0x15,0xf3,0x4f,0x6c,0x4c,0xf6,0x91,0x0c,0xfa,0x56,0xc1, +0x2b,0xcf,0x2c,0x23,0x38,0x9d,0x94,0x82,0x66,0xf9,0x55,0x36, +0xd0,0x46,0x0b,0xb2,0xd1,0x08,0x51,0x06,0xc2,0xb2,0x4f,0xfe, +0x13,0x60,0x37,0x78,0xa2,0xb5,0xce,0xfe,0x43,0x7c,0xab,0x9f, +0x82,0xf2,0xd6,0x55,0x7f,0xcc,0x7f,0x80,0x96,0xc4,0xdd,0x8d, +0x7d,0x94,0xde,0x9a,0x7b,0x3c,0x65,0x1f,0xf8,0xcb,0x3b,0x2d, +0x0c,0x0d,0x34,0xee,0x96,0xc4,0x84,0x86,0x9a,0xad,0xa3,0xc8, +0xd1,0xdf,0x08,0xf6,0x16,0x77,0x8c,0x66,0xc2,0xd3,0xd0,0x4e, +0x69,0xf0,0x21,0x5c,0x13,0x95,0x88,0xf4,0x61,0x24,0x5d,0xce, +0xba,0xf2,0xde,0xfc,0x7b,0xc2,0x12,0x90,0x25,0xaf,0xb6,0x32, +0xe6,0x5a,0x7b,0xa7,0xf5,0x4d,0xed,0x17,0x24,0xbf,0x40,0x7c, +0x63,0xd5,0xaa,0xe4,0x0f,0x92,0xba,0x4f,0xfd,0xd0,0x5f,0xfe, +0xda,0xc2,0xb0,0x82,0xe7,0xd2,0x81,0xa2,0xb2,0xc6,0xfd,0x1f, +0xb0,0xc7,0x5a,0x35,0xb8,0xce,0xad,0xc1,0x2c,0xbb,0x93,0x51, +0x42,0x5f,0x79,0x7b,0xfe,0x9d,0xe7,0x01,0x67,0xe4,0xd5,0x68, +0xc4,0xef,0x97,0x36,0x20,0x75,0xa0,0xc2,0x8f,0x31,0x56,0xad, +0x4c,0xee,0x91,0xd4,0x13,0x6d,0xbc,0xfc,0xb5,0x25,0xe2,0xfb, +0x5c,0x10,0x3e,0x86,0x76,0x52,0xc3,0xfd,0x52,0x6d,0x08,0xe3, +0xda,0x5d,0xd4,0x25,0xdc,0x69,0x0e,0xd3,0xb8,0xcf,0x73,0xf6, +0x27,0x7d,0x1c,0xa0,0x7a,0xac,0xe3,0x58,0xd2,0x9f,0xa2,0x8f, +0xe8,0x79,0x1c,0x72,0xc5,0x66,0xc3,0x09,0xd6,0xfc,0xa9,0x1d, +0x83,0xb7,0xb9,0x23,0x98,0x38,0x1b,0xb8,0x43,0x06,0xe2,0x68, +0xcb,0xd8,0x23,0xed,0x30,0x7c,0xc9,0x1d,0x0d,0xb4,0xb4,0xc5, +0x58,0x69,0xd8,0x1c,0x23,0x12,0xca,0xc1,0x04,0xa8,0xaf,0x71, +0xd7,0x15,0x68,0xd6,0x54,0x42,0x7f,0x07,0x78,0xca,0x5d,0x1a, +0x99,0x98,0x9b,0x8c,0x07,0x84,0xf8,0x91,0x1a,0xcc,0x44,0x01, +0x8c,0xe6,0x10,0xde,0xfa,0x1d,0x95,0x27,0x7c,0xce,0x9e,0x28, +0x1c,0x27,0xd8,0x22,0x7b,0x29,0xa2,0xe0,0x74,0xc1,0x4e,0xe7, +0x22,0x9a,0x12,0xa7,0xf1,0x0c,0xb2,0xb8,0x37,0xba,0x99,0x81, +0x89,0xac,0xd2,0x20,0x84,0x6b,0x29,0x9c,0x9a,0xc3,0x11,0x55, +0x15,0xeb,0x8f,0xed,0xe2,0x2d,0x35,0xbb,0x76,0x70,0x87,0x3b, +0xa3,0x03,0x12,0x88,0x4a,0x3e,0xe8,0x82,0x08,0x52,0x6b,0x1e, +0x8f,0x6b,0xee,0x87,0x7d,0x0e,0xa4,0x00,0x97,0xb6,0x16,0xab, +0x70,0x1d,0x0f,0x30,0xe1,0x80,0x8c,0x70,0x9d,0xc5,0x18,0xd6, +0x72,0xa5,0xdb,0x89,0x4d,0x47,0xca,0x3c,0x32,0xb4,0x0c,0x0d, +0xdd,0x99,0x9a,0x87,0x4c,0xe0,0x62,0xf0,0x69,0x2b,0x1e,0xda, +0x02,0xad,0x97,0x28,0x66,0x75,0xe3,0x2e,0xdf,0xb0,0x10,0x48, +0x86,0x2c,0xe4,0x78,0x15,0xaa,0x86,0x17,0xe6,0x3c,0xaa,0x86, +0xb5,0x11,0x5b,0x8e,0x95,0xbe,0x4b,0x8c,0xda,0x86,0xc3,0x9d, +0x09,0xf6,0x73,0x5a,0x7a,0xab,0x73,0x5a,0x9a,0x5f,0x30,0xae, +0x5a,0xe5,0xa7,0xf2,0x12,0xf7,0x0d,0x66,0x55,0xa8,0x8a,0xcd, +0x0e,0x66,0x4c,0x17,0x19,0xba,0xfd,0x5e,0x63,0xd9,0xdb,0x2a, +0x23,0x71,0x71,0xf1,0xb6,0xd1,0x0d,0x1e,0x72,0xe7,0x8b,0x74, +0xff,0xb2,0xde,0x51,0x0c,0x6d,0x77,0xc1,0xd8,0xd7,0x58,0xc6, +0x58,0x65,0x33,0x70,0xd4,0xb3,0x44,0x1d,0xed,0xc5,0x9c,0xc7, +0xf3,0x7f,0x59,0x94,0x74,0xc4,0x6f,0x40,0x72,0x6c,0x72,0xaf, +0x19,0x8e,0x8b,0x7f,0x4a,0x3f,0xfb,0x4b,0xc0,0x25,0xd9,0xa0, +0x8d,0x78,0x3a,0xd9,0x3a,0x34,0x6d,0x58,0xda,0x88,0x20,0xc9, +0xd0,0xc1,0x13,0xb6,0xa5,0x33,0x06,0x25,0x0f,0x4e,0x1a,0xec, +0x3f,0x0d,0xa3,0xfe,0x50,0x5e,0xfa,0x77,0x76,0x79,0x16,0x9d, +0xce,0x52,0x13,0x24,0xd7,0xaa,0x31,0xee,0x71,0x93,0x75,0xbc, +0x60,0xac,0x6f,0x2c,0xeb,0xd3,0xe8,0x6e,0xfa,0x79,0x51,0x5f, +0x7b,0x3e,0x87,0x87,0x4d,0x63,0x8b,0x4e,0xa7,0xff,0x78,0x39, +0xe0,0x82,0x6c,0xd0,0x4e,0x3c,0x9d,0x64,0x1d,0xa6,0x5c,0x09, +0xe9,0x94,0x30,0xb7,0xbd,0xb0,0x2d,0x49,0x89,0x4b,0x8e,0x4f, +0x8a,0x37,0x69,0xce,0x80,0x12,0x81,0x73,0x62,0x6a,0x53,0x06, +0xed,0x34,0xce,0x2e,0xa1,0xe6,0x64,0x6c,0x82,0x8c,0xe3,0x2e, +0x5d,0x55,0x73,0x10,0x35,0xb9,0x6a,0x1a,0xd1,0xb0,0x9b,0x3b, +0x1f,0xa5,0x69,0x3d,0xd2,0x3b,0x8b,0xa1,0xef,0x5f,0x30,0x56, +0x37,0x96,0xef,0xe2,0xc0,0x65,0xb8,0xd6,0x87,0x19,0x3d,0x70, +0x93,0x50,0x1d,0x5f,0x8f,0xfa,0xe8,0xec,0xc1,0x50,0x84,0xd0, +0x64,0x64,0x57,0xba,0x35,0x58,0xc6,0x73,0x17,0xd7,0x37,0x21, +0xf6,0xc5,0x21,0x9c,0x47,0xd2,0xdd,0xa7,0xf6,0xbb,0xcb,0x1b, +0xcb,0xda,0x78,0x37,0x14,0xa7,0x53,0x21,0xf7,0x2a,0x3b,0x8c, +0xeb,0xd4,0x57,0xad,0xd3,0xa9,0xb9,0x3f,0xfe,0xcc,0x43,0xe7, +0x30,0x9a,0x46,0xee,0x92,0x19,0xaf,0x4e,0xa3,0x0d,0x4e,0x63, +0x33,0x4c,0xe6,0xec,0x13,0xa2,0x76,0x85,0xd6,0xbe,0xad,0x5a, +0xfb,0x68,0x3b,0xb5,0xea,0xdc,0x77,0x27,0x13,0x41,0xf0,0x9d, +0xcd,0x93,0x20,0xbe,0xa3,0xa7,0x07,0x0e,0x17,0xb2,0x7d,0x1b, +0xcb,0xa1,0xb4,0x80,0x41,0x08,0xd3,0x05,0x47,0x3c,0x8a,0x23, +0xf6,0x51,0x23,0x9e,0xe3,0x41,0x9e,0x6c,0x40,0xd2,0x00,0x5e, +0xf2,0x32,0x9d,0x79,0x72,0x9a,0xbb,0x74,0x44,0x8b,0x82,0xe3, +0xec,0x82,0xe7,0x36,0x1d,0x9b,0x51,0xec,0x36,0x8c,0xe6,0xbe, +0x1b,0xec,0xbb,0xa5,0x03,0x0c,0xed,0xa0,0x76,0xc4,0x8f,0xb4, +0x5b,0x8e,0x73,0xdf,0x20,0xd6,0x1a,0x3e,0x93,0x28,0x5d,0x25, +0xe7,0xb2,0xf3,0xa2,0x3c,0xf7,0xdd,0xc5,0x96,0xcb,0x81,0xdc, +0xf5,0x9a,0x22,0x13,0x01,0x9f,0xe5,0x8e,0x52,0x54,0x1e,0xc3, +0x38,0x5d,0x2c,0x3f,0xb6,0x9b,0x41,0x94,0x40,0xed,0x35,0x9e, +0xc9,0x58,0xe4,0xbf,0x56,0xfb,0x4c,0xe3,0x48,0xa4,0xec,0x44, +0xe7,0xec,0xbe,0xa5,0x9f,0x15,0xb5,0x35,0xee,0xd8,0x9d,0xd9, +0xb7,0x4b,0xd1,0x76,0x62,0xef,0x64,0xee,0xe1,0xca,0x26,0xa7, +0xb7,0x17,0xc7,0x97,0xce,0x18,0x90,0x3c,0x30,0x71,0x50,0xce, +0x4e,0xf6,0x11,0x7c,0x9e,0xd3,0x89,0xd2,0xb5,0x2f,0x9d,0xd5, +0x64,0x1d,0xe1,0xf8,0x7f,0xa5,0x63,0x2c,0x82,0x07,0xd9,0x2b, +0x89,0xd0,0x71,0x45,0xc8,0x41,0xef,0x24,0x6a,0x75,0xcc,0x34, +0x76,0x44,0xca,0x16,0x48,0x28,0x14,0xe9,0x54,0xd7,0x76,0xe2, +0xe3,0x19,0x33,0x63,0xe4,0x8c,0x91,0x29,0x8e,0x8b,0x7f,0x9c, +0x7b,0xe6,0x0a,0x6e,0x39,0x45,0x4f,0x6d,0xe3,0xe1,0x41,0x90, +0x35,0x39,0xbd,0xa3,0x38,0xbe,0x64,0xc6,0x40,0xb5,0x8d,0xa7, +0x86,0x81,0xcb,0x0c,0xb0,0xe2,0xa3,0x6a,0xca,0x8c,0x09,0x90, +0x23,0xca,0x11,0xf9,0xcf,0x88,0x3c,0x9d,0x33,0x52,0xeb,0x83, +0x4c,0xe3,0x93,0x48,0x59,0x91,0xd8,0x74,0x46,0xf2,0x8d,0x90, +0xfc,0x01,0x24,0x3f,0x3a,0x05,0xc9,0x2f,0xcc,0x98,0x7b,0xe2, +0x1c,0x0f,0xe9,0xcd,0x52,0x86,0x24,0x0f,0x9d,0x3e,0xd4,0x7f, +0x5a,0x29,0x70,0x49,0x06,0xc7,0xc0,0x39,0xed,0x2c,0xa7,0x4e, +0xcd,0x9a,0x7d,0x32,0x58,0xfc,0x04,0x29,0xf2,0x73,0x96,0x7b, +0x90,0x61,0x64,0xd6,0x49,0xcd,0x79,0x7f,0xa4,0x6c,0x67,0x85, +0xf9,0x21,0xba,0xa8,0x61,0xcd,0x9b,0x31,0x0f,0xba,0xca,0x06, +0x26,0x0e,0xc4,0x09,0x42,0x55,0xeb,0x9f,0xb0,0x9e,0x5b,0xa7, +0x61,0xa0,0x73,0x81,0x4a,0xc2,0x7e,0x9c,0x9d,0xa1,0x9a,0xbb, +0xe4,0xd0,0xec,0xdd,0xaa,0x65,0x2c,0x83,0xfd,0xd9,0x94,0x3c, +0x7f,0x8d,0x32,0xe6,0x5f,0xd8,0xea,0xaa,0xe6,0x6e,0x39,0x2c, +0x7b,0x87,0x6a,0x6d,0x97,0x43,0x6d,0xb5,0x68,0x0e,0xeb,0xd4, +0x12,0x15,0xc1,0x71,0x6b,0x77,0x3a,0x63,0xcc,0x6f,0x46,0x93, +0xb8,0x4a,0x4b,0x54,0x89,0x6b,0xe8,0x44,0xdc,0x87,0x44,0xd8, +0x40,0x70,0xfb,0x14,0x9c,0xc5,0xbe,0x94,0x9b,0x22,0x65,0xa3, +0xfc,0xa5,0xe4,0xbe,0x0f,0x99,0xe8,0x0a,0xdf,0xc9,0x65,0xe8, +0x07,0xce,0x66,0x86,0x03,0x3c,0xcf,0xde,0x49,0x38,0xdf,0x28, +0x1c,0x77,0xc2,0xe9,0x9c,0x69,0xcc,0x33,0x17,0xa8,0x14,0xe2, +0x54,0x54,0xb4,0xeb,0xc2,0x94,0x6c,0x74,0x04,0x27,0xd0,0xa7, +0x3a,0xfa,0x37,0x2c,0x1d,0x3e,0xcb,0x19,0x8b,0x14,0x3a,0xe3, +0xce,0xbc,0xcc,0xb5,0xfb,0x8a,0x58,0x2a,0x76,0x7a,0xff,0x0b, +0x5a,0x0d,0x61,0x5a,0x76,0x1a,0xe3,0xa1,0xeb,0xa8,0x5c,0x4d, +0x0f,0x36,0x10,0x15,0x54,0xef,0x19,0x8e,0x4b,0xb2,0xd2,0x2f, +0xde,0x0a,0xf8,0x45,0x36,0x89,0x16,0x46,0x82,0x35,0x3e,0x6d, +0x48,0xda,0xd0,0x20,0xe9,0x3e,0x69,0x6e,0x8c,0x51,0x0c,0xb7, +0xcb,0xf4,0x01,0x49,0x03,0x51,0x0a,0x3d,0xa0,0xd4,0x0c,0x08, +0x92,0xc5,0x58,0x18,0x24,0xd9,0x42,0xd0,0x2b,0x38,0xc5,0xe4, +0x8c,0x59,0x28,0x51,0xff,0x67,0x42,0x46,0x27,0x38,0xc7,0x9d, +0x2f,0x51,0x22,0xcb,0xb6,0x8b,0x9a,0x4c,0x9e,0x4c,0x47,0x22, +0x5d,0x61,0x0b,0x79,0xd8,0x5f,0xec,0xfc,0x2d,0x8c,0x93,0x1a, +0xc7,0x08,0x31,0x19,0xc9,0xe0,0x5e,0x0b,0x92,0x6e,0x09,0x73, +0xdb,0x18,0x45,0x97,0xce,0xe8,0x9f,0x3c,0x80,0x87,0x3d,0x61, +0xd1,0x43,0x99,0x51,0x15,0xee,0xc0,0x49,0xc6,0x4b,0xdd,0x60, +0xc2,0x87,0xfb,0xee,0x60,0x22,0x15,0x62,0x38,0x43,0x47,0xd0, +0x39,0x9c,0x0d,0x93,0x9d,0x95,0x37,0x1b,0xce,0x7a,0xca,0xce, +0xb6,0x27,0xaa,0x65,0x44,0xc0,0x32,0xdb,0x53,0x6c,0x76,0xa3, +0x03,0x17,0x2e,0xc1,0x7a,0xd5,0xec,0x85,0x4e,0xd0,0xc7,0x4c, +0xdc,0x84,0xa1,0xea,0x12,0xc1,0x45,0x55,0x72,0x60,0x67,0x20, +0x4f,0x33,0x92,0x91,0xa7,0x22,0x57,0x18,0x69,0xf3,0x81,0xc9, +0x7d,0x67,0xe0,0x1c,0x17,0x9f,0x99,0x7b,0xf6,0x2a,0xb7,0x76, +0x67,0x83,0x92,0x07,0x29,0xcd,0xed,0x01,0x61,0x38,0x1f,0x98, +0x48,0xc9,0xc9,0x9d,0xb3,0x9b,0xa1,0xb8,0xff,0x48,0x36,0x22, +0x8b,0x3b,0x63,0xec,0xe6,0xdc,0x99,0x19,0x2d,0x28,0xf3,0x11, +0x43,0x59,0xe7,0xae,0x4c,0x6c,0x85,0x8b,0xb6,0xe2,0x08,0x72, +0x86,0xce,0x4a,0x68,0x25,0x02,0x54,0x6f,0x24,0x46,0x04,0x6e, +0xed,0xb1,0xf7,0x27,0x36,0x4f,0xb6,0x15,0x67,0x55,0x67,0x5d, +0x98,0xc8,0x5d,0x9e,0x28,0xd0,0x7b,0x10,0x93,0xfd,0x31,0xda, +0x3a,0x0b,0xda,0x5a,0xee,0x80,0x31,0x85,0x93,0x18,0x05,0x4e, +0x55,0x5a,0x8b,0x21,0x30,0xe7,0x1c,0x8a,0x85,0x87,0x70,0x42, +0x23,0x47,0xb7,0xad,0xdc,0x61,0x0a,0x1d,0x75,0x35,0x0a,0xfc, +0xbf,0x49,0xd1,0x72,0x3c,0x99,0x28,0x62,0x75,0x43,0x2f,0x26, +0x43,0x3f,0x49,0x5e,0xcc,0x5d,0xf4,0x62,0x1c,0xf2,0xbc,0x98, +0x3e,0x69,0xb1,0xa9,0xfd,0x0b,0x7b,0x31,0x3d,0xc8,0x8b,0xf9, +0xad,0xa5,0x18,0x0d,0xfc,0x9c,0xe0,0x62,0x54,0x29,0xf0,0x6f, +0x23,0xaa,0xa0,0x33,0xb0,0x87,0x3d,0xa3,0x24,0xe0,0x3b,0xdc, +0x5a,0x92,0xe5,0x14,0xa7,0x78,0xa9,0xd2,0x39,0x51,0x49,0x4c, +0x2c,0x15,0xdd,0x5e,0xc4,0x1d,0xae,0xf3,0x4c,0x0c,0x43,0x9b, +0xea,0x22,0x87,0x02,0xba,0x7f,0x81,0x9b,0x18,0x7a,0x42,0x48, +0xc3,0xa9,0x0c,0x15,0xa9,0x30,0x36,0x1f,0x97,0x73,0x45,0x07, +0x23,0xed,0x38,0xbc,0x85,0x5c,0xf2,0xd2,0x0d,0x99,0x51,0x92, +0x89,0x91,0xa5,0x30,0x1c,0x29,0x11,0xcb,0x3e,0xfa,0x53,0xc4, +0x89,0xc1,0x55,0x9f,0x89,0x71,0xa5,0x78,0xe8,0x18,0x1c,0xc6, +0x2d,0xff,0x6e,0x9e,0x8b,0x33,0xb8,0x36,0xdd,0xad,0x23,0x9d, +0x94,0x9f,0xe3,0xf1,0x4c,0x3b,0x26,0xeb,0xf0,0xe2,0x7f,0x2b, +0x46,0xc6,0x86,0x52,0x9a,0x74,0xbf,0x72,0xd0,0x1b,0xde,0xd5, +0x78,0x90,0x1b,0xfb,0x0b,0x79,0x73,0x3f,0x2b,0xdc,0xc5,0x58, +0x74,0x47,0x6a,0xc3,0x2e,0x23,0x48,0x0d,0x37,0x5a,0xc1,0x29, +0xc7,0xe7,0xdd,0x9c,0x85,0x6c,0xea,0x13,0x31,0x41,0x0c,0x2e, +0xf7,0x97,0x18,0x01,0x9c,0xbb,0xf4,0x65,0x4f,0xad,0x79,0xc3, +0xfa,0xf0,0x12,0xcb,0x68,0xd8,0x7e,0x62,0x70,0x1d,0xc5,0x94, +0xdb,0x1c,0x62,0x8a,0xc6,0xc2,0xbb,0xbe,0x85,0x3c,0x21,0xc5, +0x56,0x58,0x25,0x75,0x66,0x42,0xc5,0xa7,0xd9,0xa1,0x0c,0xb6, +0xa2,0x3f,0x44,0x80,0xe3,0x43,0xa1,0xb4,0xf1,0x90,0x69,0x39, +0xa3,0x91,0x9d,0xb8,0xb2,0xf2,0x00,0x2a,0xff,0xbf,0x19,0xfc, +0x01,0xdf,0x93,0x3f,0x79,0x4f,0x3f,0x01,0x65,0xad,0x2b,0x6e, +0xce,0xbf,0xc5,0x83,0x5d,0x58,0xef,0xa9,0xbd,0x71,0xc9,0x5b, +0xf3,0x92,0x5f,0xb2,0xa1,0x1a,0x0f,0xc0,0x28,0xc9,0xd5,0x0a, +0xb3,0x20,0x91,0xbb,0x8e,0xc4,0xa5,0xfc,0x91,0x8e,0x50,0xf5, +0x3d,0x27,0x7c,0xc5,0x14,0xf0,0xcd,0xc2,0x3f,0x71,0x3f,0xa0, +0x97,0x24,0x2d,0x02,0x03,0xa2,0xc0,0x62,0xf4,0xdb,0xb7,0x13, +0x25,0x34,0xa6,0xd4,0x6a,0xd3,0x91,0xbb,0xcf,0x64,0xf3,0x96, +0x7f,0xcc,0xdd,0xa7,0xb3,0xb9,0x53,0x3f,0x1e,0x9f,0xe0,0x3f, +0x7e,0xd2,0x8c,0x99,0x1b,0xbf,0x9c,0xbf,0x8d,0xf2,0x88,0xe6, +0x1f,0x07,0x27,0xc1,0xb4,0x08,0x60,0x3a,0x8c,0x10,0x8c,0xce, +0x26,0xc8,0xee,0x6c,0x94,0xd6,0x57,0xdc,0x9a,0x7f,0xeb,0x2f, +0x1e,0xd2,0x93,0xf5,0x48,0xea,0x3d,0x0d,0x3d,0xd0,0xdf,0x62, +0x30,0x16,0xf7,0x3d,0x31,0x5c,0x6c,0x58,0x7b,0x02,0x47,0x8b, +0xcd,0xd0,0xd0,0xf9,0x7b,0x47,0x87,0x05,0x8f,0xc5,0x02,0xad, +0x34,0xe4,0x1c,0x52,0x8b,0x39,0x02,0x8a,0x54,0xc9,0xf3,0xae, +0x2c,0xa2,0x08,0x92,0x2d,0xa2,0xc3,0x38,0x51,0x44,0x8c,0x43, +0xb2,0x9d,0x0c,0x17,0x9d,0xf3,0xfa,0x14,0x26,0x17,0x6f,0x6d, +0xe4,0x9c,0x80,0xe2,0xb8,0x59,0x47,0xa3,0xc7,0xb7,0x17,0xa2, +0x68,0x70,0x27,0x1c,0xfc,0x1a,0x8c,0xe7,0xae,0x73,0xd4,0x5a, +0xc5,0x82,0xcf,0xe9,0x11,0x62,0xd5,0x9a,0xd3,0xc2,0x47,0xc4, +0x9e,0xa0,0xe1,0xde,0xc6,0xe1,0xee,0xd3,0x71,0x07,0x1b,0xc5, +0x20,0x86,0xfe,0xba,0xd0,0x57,0xdd,0x47,0x7f,0xdd,0x91,0x87, +0xc4,0xb2,0xae,0x89,0xdd,0xa7,0xa2,0xb3,0xfe,0x2b,0xfd,0xc8, +0xa9,0xd9,0x06,0x42,0x82,0x2e,0x46,0xc2,0x82,0x73,0xe2,0x3c, +0x77,0x58,0xce,0x54,0x83,0x12,0x68,0xb3,0x3b,0xa1,0x93,0xbf, +0xf2,0x8f,0xf9,0xf7,0xd1,0xc9,0x47,0xa4,0x6e,0x49,0x1f,0x4e, +0xed,0x8e,0x73,0x6b,0x91,0x7d,0x04,0x7d,0xcc,0x0f,0xe0,0x17, +0x6e,0xa9,0xca,0xb6,0xa7,0xef,0x3c,0x14,0xb0,0xf9,0xbd,0xa1, +0xd6,0x90,0x01,0x1d,0x41,0x07,0x2d,0xe8,0x40,0xaf,0x13,0x47, +0x76,0xee,0x5c,0xbf,0xd3,0x7f,0xce,0xa7,0x73,0xe9,0x8c,0xa2, +0x20,0xf0,0xf3,0xdb,0xf7,0x2d,0x04,0x0b,0xcf,0xc9,0x8b,0x26, +0xab,0x13,0xd3,0x57,0x3c,0xa2,0x1c,0xc3,0xd5,0x67,0xc5,0x35, +0x3a,0xd4,0x20,0xbb,0xa3,0x51,0x44,0x5f,0x75,0x6f,0xfe,0x1f, +0x42,0x23,0x79,0x6a,0x6d,0xa4,0x63,0x54,0xd0,0x27,0xc5,0x8c, +0x0a,0x5a,0x19,0xab,0x57,0x27,0x77,0x4b,0x54,0xe3,0x9a,0xcc, +0x62,0x04,0x79,0x57,0x4f,0x98,0x36,0x63,0xd6,0xea,0xaf,0xe6, +0x7f,0x3d,0x6b,0xaf,0xbf,0x28,0x9b,0x21,0x8b,0xc6,0x60,0xa4, +0x90,0x5c,0xa9,0x5b,0x67,0x70,0x0b,0xfb,0xb6,0xbb,0xdf,0x8f, +0xc7,0xbe,0xdd,0xb1,0x71,0xc7,0xdc,0xf4,0x74,0x3a,0x29,0xa0, +0x22,0x94,0xf0,0xfb,0xf6,0x3b,0x28,0x25,0xdc,0x27,0x2d,0xa4, +0x43,0xfa,0xfc,0x21,0xa1,0xa3,0x3e,0x21,0x36,0x72,0x5c,0x64, +0xe0,0x04,0xb1,0xa8,0x19,0xac,0xb5,0xc5,0x31,0xee,0x72,0x88, +0x62,0xc9,0xc9,0xd9,0x25,0x18,0x2c,0xbf,0xcc,0x34,0x37,0x99, +0x46,0x41,0xe4,0x48,0xfd,0xa3,0xa7,0x28,0x54,0xf1,0xb0,0x23, +0x46,0x0c,0x2b,0x83,0x4e,0x75,0x03,0x6e,0xdd,0xc5,0xc4,0x3c, +0x5d,0xf4,0x81,0xac,0x73,0x86,0x37,0x6c,0x56,0x90,0x18,0x40, +0x7e,0x45,0xbf,0xcd,0x7a,0xbf,0x27,0x8b,0x8b,0xaf,0x8c,0xe2, +0xea,0xb7,0xd9,0x0b,0x7a,0xd2,0x53,0xd1,0x0b,0x71,0x31,0x4c, +0xe8,0x5b,0x06,0xa5,0xaa,0x81,0x79,0xf4,0xf1,0x5c,0x3a,0xfa, +0xf8,0xb8,0x25,0xc1,0x3c,0xfa,0x78,0x68,0x1a,0x21,0x06,0xa9, +0x5f,0x6e,0xd3,0x28,0xe4,0x7c,0xac,0x4f,0x53,0xc5,0xdc,0xbf, +0x4b,0xff,0xfe,0x87,0x80,0x6d,0xcd,0x07,0x5a,0xa1,0x78,0xff, +0xd6,0xe0,0x0a,0x7e,0x41,0x07,0x7b,0x1f,0x3d,0xb5,0x7d,0xcf, +0xba,0xef,0xfd,0x3f,0xf9,0x34,0x3d,0xed,0xd3,0xe9,0xc2,0x17, +0x2a,0xf9,0xed,0xa7,0x3a,0x34,0xe5,0x26,0x2f,0x9e,0x3c,0x93, +0x96,0xb5,0x03,0xf8,0xe9,0x53,0x9f,0xa2,0x3c,0xc6,0xc3,0x11, +0x14,0xd1,0x32,0x28,0xa2,0x0d,0x50,0x44,0xd5,0x64,0x7c,0x70, +0x32,0xc8,0x50,0x3f,0xbc,0xb7,0x2d,0x46,0x0c,0x2a,0x03,0xfd, +0x71,0x32,0x6e,0xc5,0xd8,0x13,0x5d,0xc4,0x1e,0x81,0x58,0xd4, +0x3b,0x47,0x61,0xbb,0xf4,0xb0,0xb5,0x61,0x79,0xd0,0x89,0x4f, +0xc5,0x00,0x84,0xfe,0x3a,0x46,0xc4,0x97,0x81,0x41,0x34,0xf5, +0x1c,0x66,0xfc,0x28,0xb2,0x74,0xc8,0x44,0x49,0xd5,0x3e,0x6c, +0xaf,0x37,0x9f,0xf3,0x11,0xf4,0xb6,0x44,0x6b,0x1f,0x89,0xde, +0xcd,0xa7,0x7f,0x06,0x1f,0x70,0x87,0x64,0xc2,0xc6,0x98,0xb7, +0x1a,0xa5,0x1b,0x5f,0xd0,0x13,0xff,0x7c,0x69,0x05,0xea,0x6b, +0x47,0x28,0xd5,0x38,0x4c,0x7f,0x34,0x5d,0xeb,0x39,0x6e,0xdc, +0x80,0xde,0x01,0x51,0xc7,0x3a,0x3e,0x7a,0x74,0xec,0xe0,0xe9, +0x6f,0xc6,0x6d,0xed,0xb9,0x22,0x68,0xce,0xe3,0x03,0x32,0xd0, +0x2a,0x3e,0x84,0xa1,0xfa,0x24,0xad,0x73,0xbf,0x4d,0x7b,0xf7, +0x6d,0xdb,0xb8,0x3f,0x78,0xb1,0xb6,0x7f,0x5b,0x7c,0x97,0xf7, +0xfb,0xc5,0xd1,0xd7,0xd3,0x81,0xb5,0x68,0x91,0xae,0xeb,0x53, +0xe9,0x33,0x82,0x95,0xbb,0xd2,0xbf,0x3b,0x1e,0xb0,0xb5,0xc5, +0x60,0x2b,0x38,0x0f,0x68,0x03,0x6e,0xe0,0x4d,0x47,0x56,0x1e, +0xff,0xfa,0x3b,0x1e,0x16,0xcf,0xa0,0xcc,0xbe,0x1d,0x10,0x20, +0xc2,0xa6,0x2c,0x9c,0x3c,0x73,0x22,0x15,0xe9,0x39,0xae,0x63, +0xf8,0xe4,0xf2,0x1e,0xfc,0xa0,0xc2,0x27,0x5b,0x73,0x0d,0x8e, +0x38,0x60,0x8f,0xb7,0x68,0x89,0x0a,0x1f,0x9f,0x3f,0x3e,0xde, +0xf3,0xb9,0x97,0x71,0x3b,0x7f,0x73,0x30,0xe0,0x8b,0x88,0x78, +0x6b,0xe5,0xb8,0x4e,0x95,0xea,0x05,0x85,0x3e,0x4e,0xa0,0xa3, +0x1d,0xa7,0xe4,0x7e,0xc4,0x56,0x6d,0x9f,0xb7,0x63,0x5f,0xc0, +0xe6,0x88,0x21,0xd6,0xf2,0x3d,0x5a,0x80,0x5f,0x99,0xa0,0xef, +0xbb,0x64,0x1e,0xd9,0xb3,0x7b,0xd3,0xb7,0xc6,0x29,0x06,0xe5, +0xfc,0xce,0x67,0xec,0xd9,0xb5,0x79,0x77,0x3a,0x9d,0xcb,0x95, +0x24,0xca,0x41,0xa0,0xdf,0x9e,0xfd,0x10,0x86,0x21,0xf0,0x77, +0xb8,0xbb,0xb6,0x33,0xe9,0x8d,0xbb,0x76,0xdc,0xa4,0x94,0x99, +0x1b,0xb7,0xce,0xff,0x9a,0x8a,0x3f,0xce,0x3f,0x21,0x1f,0x50, +0x5c,0x96,0xf2,0x4e,0x9b,0x0e,0x90,0x50,0xf3,0xeb,0xb6,0x7e, +0xc2,0xff,0xe0,0x2f,0xdf,0x7c,0xbf,0x63,0xc9,0xbc,0x65,0x1f, +0x2f,0x4d,0x14,0xab,0x91,0xc2,0xd7,0x47,0x61,0xa1,0x70,0xa7, +0x63,0x98,0x29,0x87,0x1a,0xf5,0x4c,0x49,0x7d,0xc5,0xed,0xf9, +0xb7,0x9e,0xf3,0x90,0x5e,0xa4,0x67,0x28,0xd2,0xfd,0x8d,0x6a, +0x48,0x68,0x72,0x17,0x54,0xa0,0x5f,0x01,0x96,0x1d,0xa2,0x07, +0x20,0x85,0xf4,0x80,0x67,0xec,0x9e,0x91,0x76,0x42,0x5e,0xc0, +0x48,0xb2,0x9d,0xe2,0xa0,0x0c,0xd4,0x87,0x8e,0xac,0x8b,0xde, +0x20,0x7d,0x04,0x34,0xcc,0x9d,0x80,0x0e,0x4c,0x83,0xc4,0x8d, +0x50,0x8b,0xbb,0xb7,0x62,0xd9,0x5d,0x8c,0x30,0x7d,0x39,0x6a, +0xb0,0x67,0x3c,0xb8,0x29,0xeb,0x33,0x0d,0x15,0xe9,0x5d,0xfa, +0x61,0x47,0x93,0xbb,0x91,0xee,0x25,0x06,0xd1,0x13,0x58,0x19, +0x26,0x37,0x5e,0x34,0x36,0x5a,0xa1,0x22,0x95,0xa6,0xe9,0x46, +0xbf,0xa2,0xb5,0xe7,0x41,0xdb,0xc9,0xba,0x6f,0xbc,0x48,0x1f, +0xf0,0x07,0xa8,0xde,0x38,0x68,0xc7,0x9d,0x4f,0xb1,0xdc,0x46, +0x0c,0xbb,0x7c,0xf5,0x7e,0xc9,0xbd,0x93,0x7b,0xcc,0x70,0x5c, +0x7a,0x7d,0xde,0xad,0x27,0x01,0xbf,0xca,0x86,0xd1,0xe2,0xc5, +0x04,0x1e,0x66,0x65,0x2b,0x66,0xf4,0x48,0xea,0x95,0xd8,0xd3, +0x3f,0x11,0x23,0x92,0x90,0x19,0x10,0x98,0x3b,0x97,0x1d,0x82, +0x83,0x5c,0x5f,0x42,0xf4,0xc6,0x10,0xbd,0xe7,0xdc,0xaf,0x2b, +0x7d,0xeb,0x57,0x81,0x7b,0x77,0xa3,0xce,0x75,0x6a,0x90,0x40, +0xee,0xa2,0x31,0xf8,0x55,0xea,0x3c,0xe4,0x19,0xb1,0x34,0xe1, +0xa2,0x31,0x01,0x59,0x82,0x6c,0xf8,0x9a,0x7e,0x75,0x7b,0x8f, +0xfb,0x2f,0xfd,0x47,0x77,0xa8,0x6c,0xc6,0xfd,0x16,0xbe,0xda, +0x7d,0x11,0xa6,0x73,0xdf,0x53,0x2c,0x7b,0x02,0xbb,0x8f,0x03, +0xb3,0x1c,0x6a,0xc9,0x92,0x08,0xea,0xd2,0x4e,0x1d,0x5b,0xf1, +0x6c,0x30,0x7b,0x46,0xa7,0x45,0x7d,0x29,0xdd,0xc5,0x81,0xa3, +0x68,0xf9,0x27,0x98,0x94,0x7c,0x4a,0x91,0x93,0x45,0x2c,0x56, +0x10,0x1e,0x48,0xa7,0x2e,0xbc,0xcb,0xbd,0xa8,0xaa,0xc2,0xb7, +0x0c,0x46,0xc2,0x24,0x6e,0x59,0x8d,0xed,0xdd,0xec,0x2a,0x6c, +0xe6,0xec,0x16,0x7a,0x1f,0x0b,0x58,0x13,0xd8,0xc1,0xfd,0x46, +0xd2,0x1c,0xd6,0xaa,0x39,0x34,0x46,0xac,0x54,0x0c,0xef,0xd9, +0x15,0x75,0x5b,0x36,0x40,0x0b,0x1d,0x92,0x48,0xe3,0xc3,0x23, +0x19,0xc1,0x83,0x8e,0x9b,0xdd,0x51,0xd0,0x86,0x07,0xfe,0xfd, +0x32,0x1a,0x2c,0x86,0xda,0xb2,0x06,0x83,0xce,0xba,0xfa,0xa4, +0xa0,0x4a,0x92,0xb5,0xd3,0x98,0xb1,0x83,0xfb,0x05,0xb4,0xcc, +0xec,0x20,0x6a,0x89,0xda,0x99,0x87,0x4e,0x6e,0x1b,0xbb,0xb9, +0xd3,0xaa,0xa0,0xb9,0x56,0x28,0x0d,0xd5,0xf5,0x21,0x5a,0x58, +0xcf,0xcd,0xdf,0xee,0xde,0xb9,0xf9,0x69,0xf0,0x06,0xed,0xcf, +0x5d,0x83,0x3f,0xec,0xde,0x63,0x70,0xe9,0x60,0xb7,0xb2,0x4c, +0x2e,0xba,0x64,0x2c,0xe2,0x01,0xb7,0x19,0xfc,0x2c,0xfb,0xd9, +0xaa,0x50,0x7e,0x6b,0xfa,0x25,0x0d,0xed,0xc4,0x63,0x7a,0x4d, +0xce,0x5b,0x8b,0x73,0xea,0x35,0xf9,0x73,0x7a,0x4d,0x7e,0x71, +0x6d,0xef,0x88,0x72,0xed,0xa0,0x7d,0x73,0xff,0xaf,0xdb,0x5b, +0xc4,0x8e,0x67,0x8f,0xd4,0x6b,0xf2,0x31,0xea,0x35,0x39,0xe2, +0x4d,0x56,0x78,0x57,0xe9,0xe5,0x36,0xe1,0xa9,0xb7,0xe3,0xcf, +0xe9,0xed,0xf8,0xc5,0x35,0xbd,0x9b,0x12,0x5e,0x94,0x89,0xf7, +0xf4,0x91,0x7a,0x3b,0xde,0x56,0xbd,0x1d,0x47,0xbc,0xae,0x0a, +0x6f,0x0f,0x0f,0x3c,0x4c,0x6f,0x00,0x1e,0x73,0xef,0x58,0xdc, +0xa5,0x6d,0x18,0xcc,0xb2,0xb5,0xe6,0x2e,0x0d,0xcc,0xf6,0x72, +0x6c,0x5b,0xa3,0x58,0x42,0xe7,0x70,0xfa,0xc9,0x7b,0x69,0xce, +0x69,0xd5,0x2d,0xfa,0xca,0x29,0x72,0x36,0xcb,0x4d,0x25,0xc3, +0x76,0x8c,0x5b,0x1d,0xd1,0x4f,0x50,0xef,0xbf,0xb1,0xc7,0x56, +0x1d,0x0d,0x96,0xc8,0x6a,0xa3,0xf1,0x12,0xe1,0x4c,0x68,0x92, +0x5b,0x85,0xb7,0x7a,0x11,0x5e,0x08,0x7a,0x82,0x4a,0x5e,0x39, +0x4a,0xd7,0x87,0x15,0xf6,0x7c,0xc8,0xe1,0x5e,0x29,0xc4,0xd4, +0x78,0xc5,0xd4,0x15,0xc5,0xd4,0x44,0x79,0x94,0xce,0x9e,0xe0, +0xfe,0x19,0x2c,0x43,0xbd,0xc1,0xe6,0xfe,0x27,0x18,0x94,0x92, +0x65,0x6c,0x2a,0xc5,0x7f,0xf6,0x25,0x7a,0x15,0xbd,0x11,0xea, +0xf2,0xc0,0x63,0x0c,0xb6,0x99,0xaf,0xa2,0xfd,0x8f,0x33,0x88, +0x55,0x6f,0x99,0x15,0xb0,0x9f,0xac,0x40,0xaf,0x86,0xdd,0xb6, +0x33,0xf8,0x11,0x22,0xb9,0x2f,0xf2,0x1f,0xfa,0x3d,0xb5,0xa7, +0x72,0xaf,0xc1,0x8c,0x3b,0x9c,0xa4,0x33,0x4f,0xc4,0x68,0x11, +0x72,0xd2,0x8a,0x9d,0x89,0xdc,0x73,0x2f,0x02,0xec,0x23,0x80, +0x24,0xee,0x39,0x86,0x19,0xf3,0x99,0xec,0x79,0x51,0xbc,0x2f, +0x82,0x35,0x38,0x07,0xe5,0x72,0x37,0x31,0xe1,0x80,0xa8,0xd6, +0xea,0xcc,0x88,0x62,0xd8,0x33,0x00,0x7b,0x9e,0xc2,0x3e,0x91, +0x56,0xe8,0x1a,0x72,0x64,0x0b,0xf9,0x21,0xee,0x60,0xf1,0x96, +0x3e,0x98,0x89,0xa2,0x62,0xf0,0x51,0xf4,0xa6,0x4a,0xa0,0x5e, +0xb7,0xc3,0x70,0x2f,0x8c,0xc5,0xad,0x0f,0x69,0x90,0xc9,0xdc, +0x73,0x1d,0x33,0xfc,0xa9,0x39,0x81,0x7b,0xfd,0x89,0x8c,0x3e, +0x22,0x90,0x58,0x6e,0xad,0x40,0x35,0xaf,0xca,0x89,0x93,0xea, +0xee,0x25,0x74,0xa9,0xfd,0x86,0x2b,0xfc,0x5f,0xa0,0x2a,0xb7, +0xb6,0xa4,0x2c,0xa2,0x6b,0xc6,0x70,0x84,0x7f,0x48,0xf0,0xbd, +0x15,0xfc,0x50,0xa8,0x2a,0x4e,0x9b,0x89,0xbf,0x81,0x22,0x3e, +0x5c,0x2e,0xca,0x12,0x53,0x44,0x20,0xa4,0x66,0x19,0x5f,0x5a, +0xe1,0x77,0x59,0x2d,0xe7,0x14,0xbd,0xa1,0x5c,0x9c,0x01,0x8b, +0x85,0x2e,0xd6,0x1d,0x87,0x87,0xb2,0x1d,0x77,0x2f,0xcb,0xe0, +0x73,0x88,0x92,0x5d,0xe9,0xe8,0x81,0xd1,0x74,0xf4,0xc0,0xe4, +0x2c,0x63,0x65,0x38,0x8c,0x41,0x12,0x03,0xc2,0x65,0x4a,0x96, +0x26,0x6b,0x5f,0xd4,0xe3,0x45,0xa0,0x58,0x7c,0x9c,0x17,0x7f, +0x87,0xc9,0xb6,0xdc,0x52,0x86,0x71,0xc7,0x95,0x0c,0xb4,0xc0, +0x14,0xe8,0x91,0xbb,0x88,0x10,0x47,0x10,0xe2,0xe8,0x2c,0x63, +0x51,0x38,0x8c,0x43,0xc4,0x41,0xe1,0x32,0x31,0x4b,0x03,0x3f, +0xf4,0xc6,0x24,0x3b,0x86,0xc3,0x79,0x8b,0x75,0x19,0x38,0x5c, +0xb4,0xf1,0x11,0xed,0xb4,0x2f,0xe5,0x78,0xaa,0x09,0x5c,0x94, +0x52,0x76,0x03,0x7b,0x31,0xe4,0x0d,0x72,0x72,0x71,0xcf,0xf6, +0x97,0xef,0xc1,0xc1,0xd7,0xdd,0x11,0x4b,0x61,0xb2,0x1c,0xc1, +0xb2,0xf7,0x30,0xb1,0x12,0xf6,0xe5,0x76,0xa2,0x16,0xf4,0x93, +0xef,0xc9,0xa1,0xaa,0x85,0x78,0xa2,0x3a,0xb5,0xee,0x42,0xf5, +0xdc,0x8e,0xb8,0x41,0x4b,0xb3,0x2e,0x30,0x40,0x6e,0x54,0x2d, +0x7c,0x5e,0x1b,0x72,0x57,0x32,0x1e,0x12,0x88,0x9b,0xe1,0x11, +0x12,0xab,0x06,0x65,0x56,0xd2,0x22,0x0d,0x45,0x46,0x7b,0x85, +0xcb,0x71,0x59,0xe8,0x5e,0x28,0xe6,0x3f,0xa1,0x45,0x0a,0x85, +0x19,0x0c,0xa6,0x41,0x44,0x6e,0x33,0x45,0xba,0x86,0x0c,0xcf, +0xed,0x8f,0xc8,0x1c,0x91,0x1f,0x22,0x72,0x4d,0x54,0xc6,0x54, +0x86,0xeb,0x12,0x9d,0x86,0xb3,0x4e,0x6d,0xa7,0xe0,0x9f,0xa9, +0xfd,0x99,0xda,0x4e,0xc1,0x97,0xa9,0xbd,0x46,0xed,0xa2,0xe0, +0x2b,0xd4,0x5e,0x4b,0xbb,0xe8,0x22,0xa3,0x83,0x08,0x4a,0xbe, +0xc3,0xa0,0x35,0xf4,0xcf,0x09,0xa3,0x13,0x9c,0x5b,0xd2,0x41, +0x00,0x2b,0x6c,0x23,0x99,0xcd,0x91,0x5e,0xff,0x4d,0xa7,0x7d, +0xf3,0x50,0xb6,0x10,0x7f,0x15,0xee,0xb0,0x51,0x49,0xeb,0x4e, +0x85,0x7a,0xf2,0x36,0x5f,0x41,0x8f,0xb9,0xf9,0x0a,0xe1,0xbc, +0x71,0xf3,0xd9,0x61,0x68,0xf3,0xb5,0xcc,0xa7,0x57,0x1f,0xaa, +0x8b,0x61,0xb8,0x19,0x7b,0x11,0xaf,0xcb,0x69,0x33,0x16,0xf0, +0x1a,0x01,0x9f,0x73,0xcf,0x04,0xea,0xf8,0xf8,0x82,0xb0,0xa8, +0x8e,0x45,0xb4,0x47,0x73,0x0f,0xa3,0x1a,0xbf,0x20,0x4a,0xe4, +0xa6,0x13,0x99,0xa4,0x42,0x5b,0xb5,0x00,0xb4,0x35,0xba,0x22, +0xb8,0x61,0x69,0xcc,0xb6,0xd0,0xaa,0xf0,0x86,0x0d,0x46,0x67, +0x38,0x1c,0x16,0x65,0xbf,0x60,0xa2,0x1d,0x84,0x73,0x47,0x4f, +0x45,0x2f,0xe9,0x82,0x28,0x5b,0x98,0x9e,0xb9,0x95,0xcd,0x3c, +0x42,0x0e,0xa1,0xc2,0x2d,0x52,0x2e,0xcf,0x14,0x25,0x45,0x28, +0x54,0xc8,0x34,0xbe,0xa1,0x07,0x55,0x87,0x6b,0x49,0x0c,0xbd, +0xff,0x30,0x5d,0x84,0x60,0x77,0x08,0x25,0xe1,0x5e,0x96,0x65, +0x19,0x2f,0x5e,0x14,0x75,0x6b,0xa6,0xea,0x2c,0x9f,0xf9,0x9f, +0x77,0x3e,0xa2,0x87,0xe8,0xe8,0xfa,0x85,0x42,0x10,0xe5,0xe3, +0x9e,0x27,0x29,0xb8,0x47,0x59,0x98,0x18,0x60,0x65,0x1a,0x2b, +0xa1,0x02,0x93,0x29,0x99,0x9a,0xac,0xf1,0x46,0x01,0x30,0x0e, +0x8a,0x54,0x1d,0xa3,0xe5,0x50,0x81,0x04,0x6a,0xc9,0x0e,0x24, +0x0d,0xf7,0x0c,0x3f,0x22,0x10,0x98,0x69,0x2c,0x8a,0xc4,0x18, +0x2b,0x54,0x38,0x45,0xca,0xc4,0x4c,0x0d,0xbc,0x5f,0x2b,0x0d, +0x8b,0xc4,0x5a,0xee,0xf0,0x8c,0x09,0x47,0x79,0x00,0xa5,0x82, +0x87,0xf8,0x32,0xf0,0xc6,0xb0,0xe2,0x12,0xdd,0x59,0x67,0xfc, +0xc1,0xe0,0x33,0x5b,0x80,0xec,0x86,0x37,0xc6,0xe3,0x8d,0xe7, +0x24,0x0b,0x8b,0xc4,0xb4,0x11,0x0c,0x36,0xdb,0xaa,0xe7,0x5a, +0xd1,0x4a,0x7d,0x41,0x89,0x0a,0xdf,0xe7,0x0e,0x37,0x9b,0x83, +0xe5,0xf7,0x7a,0x92,0x78,0x4b,0xc4,0x62,0x58,0xb3,0x35,0x46, +0xf4,0x0f,0x81,0x58,0x68,0x62,0x54,0x47,0x01,0x8a,0xd1,0xc5, +0x26,0x23,0xc0,0xd6,0x85,0xc1,0x06,0x28,0x43,0x9f,0x8a,0x7e, +0xc1,0x66,0xc3,0x33,0x14,0x2a,0x34,0x40,0xde,0x7f,0xe6,0xd3, +0x15,0xe5,0xe5,0x16,0x94,0xaf,0x97,0x3b,0xe1,0x17,0x5b,0x4d, +0x14,0xb5,0x57,0x3a,0xaf,0xda,0x6a,0xa2,0xd4,0xbd,0xdc,0x39, +0x5c,0x06,0xe7,0x76,0xcc,0x4f,0x9a,0x0e,0x15,0x2e,0x91,0x32, +0x3d,0x53,0x94,0xc0,0xe5,0x08,0xcb,0x24,0xc7,0xe5,0x77,0x59, +0x89,0xa6,0xc6,0x44,0x09,0x5d,0xf5,0x96,0xa0,0xfc,0xda,0x95, +0xb2,0xb3,0x3d,0xe7,0xb7,0x74,0x14,0x93,0xe3,0x32,0x85,0x2b, +0xde,0xf1,0xc9,0x2c,0x90,0x47,0x84,0x57,0xc9,0xb5,0xd8,0x6b, +0x9d,0x81,0x06,0xba,0x0f,0x2d,0x32,0xd7,0xed,0x50,0x91,0xe0, +0x83,0x23,0x39,0xf2,0xc0,0xa9,0x8c,0xca,0x7c,0xd3,0x85,0x8f, +0x15,0x1a,0xc8,0x51,0xa8,0x00,0x10,0xce,0x99,0xe0,0x3e,0xa0, +0x1a,0x1c,0x79,0x1b,0x69,0x3e,0x3d,0x8c,0x17,0x6a,0xfb,0x2c, +0x12,0xdb,0x74,0x08,0x81,0x50,0xee,0x5f,0xc4,0x5c,0x7b,0x76, +0x54,0x9f,0x7a,0xcc,0xc2,0x5d,0x3b,0xe7,0xad,0xbf,0x08,0x94, +0x5f,0xca,0x49,0x44,0xa8,0xb8,0x6e,0xee,0xa8,0xad,0xb4,0x2d, +0x52,0x15,0x8d,0x82,0xc7,0xd4,0x5c,0x6a,0xf0,0x05,0xe3,0xbe, +0xa5,0xd9,0x74,0xb9,0x8d,0xd4,0x8d,0xd5,0x1d,0x17,0xe6,0x91, +0x7d,0x61,0xb8,0x0f,0xee,0x4b,0xc7,0x21,0x6a,0x72,0x1a,0x52, +0x71,0x7f,0x79,0x72,0xbe,0x9c,0x5f,0x78,0x75,0x75,0x37,0xda, +0xaa,0x91,0xe2,0x41,0x82,0xd2,0x22,0xa3,0x72,0xb7,0x20,0x7b, +0xe3,0x10,0xe2,0x61,0x3e,0x45,0x57,0x2a,0xb2,0x3d,0x02,0xa2, +0x5a,0x8a,0x28,0x40,0x43,0xb8,0xc5,0x0a,0x03,0xe5,0x20,0x9d, +0x3b,0xce,0x63,0x71,0xb8,0xa3,0xf7,0x9c,0x80,0x3d,0xb8,0x62, +0x3f,0x9c,0x90,0xde,0xb2,0xeb,0x23,0x8d,0x3b,0xc5,0x33,0xe9, +0x07,0x2d,0xc4,0x19,0xc6,0x3d,0xaa,0xe6,0xe1,0x69,0xb8,0x22, +0xcd,0xed,0x28,0x25,0x4c,0x14,0xdd,0x44,0xe9,0x62,0x47,0x29, +0x0b,0x11,0x02,0x27,0xe3,0x51,0x87,0x5c,0xf3,0x16,0xad,0x28, +0x57,0x2b,0x08,0x5a,0xe8,0x53,0x33,0x78,0xf1,0x10,0x36,0x18, +0x45,0x6a,0xff,0x09,0xd8,0x8f,0xfb,0xf9,0xf4,0x09,0xe9,0x23, +0x3b,0x3d,0x94,0x25,0x18,0x3a,0x64,0xdb,0x04,0xce,0xd6,0xa3, +0x36,0x83,0x01,0x76,0x14,0x7f,0x68,0xce,0x5d,0x06,0xb0,0x0f, +0xc1,0x87,0x4a,0x5d,0xbb,0xd4,0x63,0xa2,0x1e,0x1c,0xb2,0x05, +0xaa,0x26,0x5c,0x91,0xad,0xc4,0xa7,0x66,0xf3,0x17,0xd9,0xca, +0x56,0x8d,0x71,0x27,0x9c,0x58,0x97,0x5c,0x1b,0x83,0x12,0xe8, +0x79,0xba,0xf4,0x67,0x93,0xa1,0x86,0x8d,0x33,0xb9,0x1f,0x09, +0x52,0xaf,0x9f,0x49,0x0d,0xde,0x46,0x43,0x6a,0xf9,0x4c,0xf5, +0x0f,0x36,0xfb,0x23,0xa9,0x3f,0x11,0xbd,0x87,0x7e,0xa8,0x06, +0x19,0xb7,0x34,0x62,0x1a,0xd2,0x28,0xa7,0x4f,0x3d,0x62,0xe1, +0xfc,0x2f,0x86,0xe1,0x4f,0x45,0xdb,0x0b,0x74,0x0b,0xf6,0xd1, +0x29,0x6c,0x16,0xee,0xf8,0x16,0x93,0xbb,0xec,0x60,0x65,0xab, +0xe8,0xdc,0x35,0x92,0xc1,0x2a,0x34,0x2a,0x53,0x4c,0x90,0xbf, +0x51,0x3b,0x59,0x3d,0x0a,0x28,0x95,0xad,0xa6,0x2b,0x2a,0x9d, +0xe1,0x6d,0x9b,0x3f,0x3e,0xce,0x85,0x04,0xbd,0x4e,0x3f,0x6b, +0x2c,0x6a,0x0a,0x23,0x72,0x93,0x19,0x58,0x8c,0xa7,0xa4,0x65, +0x3e,0xce,0x80,0x8f,0x71,0x1d,0x17,0x1e,0x87,0x6b,0xa8,0x65, +0x9c,0xea,0x33,0x98,0xad,0xec,0x6b,0x79,0x26,0x57,0xa2,0x51, +0x5c,0x35,0x0f,0x51,0x52,0xec,0x28,0x45,0x08,0x25,0xf0,0x25, +0x94,0xb6,0x97,0x35,0xe1,0xf9,0xe7,0xc2,0x15,0x59,0xc1,0xb0, +0x19,0xc2,0x51,0xa1,0x20,0xde,0x22,0xc2,0x9b,0xab,0xab,0xfa, +0xec,0xf1,0x84,0x57,0x14,0x65,0x65,0x36,0xea,0x92,0x99,0xb8, +0xf6,0x0b,0x33,0x10,0x2b,0x9a,0x7b,0xb4,0x65,0x22,0x5d,0x99, +0x56,0x44,0x18,0x9f,0x37,0x50,0xef,0xa6,0xd0,0x9d,0x10,0x5c, +0x8c,0x4e,0xec,0x3a,0xe8,0x72,0x1c,0xae,0x34,0xea,0xe4,0x70, +0x19,0x49,0x2a,0x83,0x9a,0xed,0x64,0x24,0x1a,0x5d,0x6a,0x8a, +0x6d,0x30,0x09,0x15,0x82,0x78,0x8f,0x89,0x6f,0x60,0x0f,0x6a, +0x01,0x6c,0x41,0x5b,0x19,0x89,0xa2,0x4f,0x2d,0x04,0x14,0x55, +0xd4,0x5d,0x0b,0x54,0x45,0x29,0xc7,0x61,0x3e,0xc9,0x1b,0x66, +0x5c,0x53,0xe8,0x47,0xc3,0x14,0xc3,0x61,0xe2,0x95,0xe9,0x7d, +0xe5,0xee,0x00,0x73,0xb6,0x9d,0xe8,0x87,0x5a,0x32,0xc7,0x66, +0x52,0x2a,0xac,0x5a,0xa1,0xab,0xbc,0xd6,0xf6,0xdc,0xd2,0x86, +0x55,0xad,0xaa,0x7f,0xd4,0xac,0xd2,0x64,0x28,0x12,0x38,0x44, +0x38,0x8a,0xd9,0x47,0x61,0xb6,0x28,0x26,0x16,0x1f,0xc3,0xd9, +0x95,0x36,0xd7,0x64,0x59,0x56,0x70,0x24,0x84,0xe1,0x7e,0x74, +0xf4,0xa5,0xb5,0x4f,0x7e,0x85,0x34,0x6e,0x51,0x32,0xdb,0xc4, +0x6b,0x90,0x6c,0x8c,0xd2,0x93,0x37,0xc8,0x4a,0x5d,0x25,0xbd, +0xfe,0xeb,0x41,0x5a,0xa0,0xa3,0x87,0x46,0x3e,0xe8,0x63,0x26, +0xab,0xe8,0xd9,0x16,0x16,0x8f,0x02,0xb5,0xfb,0x04,0xec,0x46, +0x81,0x3a,0x7a,0x42,0xba,0xc9,0xae,0xbf,0x72,0x0f,0x17,0x34, +0xd7,0xa6,0x3c,0x05,0xa3,0x07,0xf6,0x5e,0x39,0x7d,0x5a,0x86, +0x45,0x81,0x96,0x30,0x41,0x75,0x13,0xb4,0x8b,0x09,0x2a,0x4d, +0x39,0x0a,0x7e,0xce,0x20,0xaa,0xac,0xce,0x8b,0x77,0x41,0x40, +0x2e,0xbe,0x3f,0x01,0xdf,0xe3,0x03,0x3c,0x71,0x02,0xc3,0xa6, +0x4e,0xbf,0xe5,0xfc,0x45,0xe6,0x58,0x09,0x4f,0xf0,0x33,0x06, +0x4d,0x39,0x7f,0x1b,0x63,0x14,0x25,0x32,0xce,0x37,0x31,0xae, +0x44,0xe1,0xd0,0xcc,0xe6,0x16,0xd9,0xca,0xe8,0xa8,0x9a,0xa2, +0x13,0x24,0xd2,0x19,0xbc,0x01,0xcd,0x25,0x17,0x5f,0xc8,0xdf, +0x31,0xe4,0x16,0xa5,0x84,0xd2,0xef,0xcf,0x99,0x18,0x64,0x4a, +0x19,0x36,0x61,0xb3,0x29,0x65,0xd4,0xdc,0xa2,0xa4,0x2c,0xbb, +0xab,0x38,0xa9,0x5f,0x32,0x3e,0xb4,0x8d,0x42,0x63,0xfd,0x1e, +0x77,0xf9,0x9b,0x7d,0xa9,0xc4,0x8c,0xfb,0x95,0xa4,0x92,0x9b, +0x4a,0xb4,0xa8,0xbd,0x55,0x89,0x13,0x42,0xaf,0x44,0xe8,0x34, +0x05,0x1d,0x65,0x0a,0xd4,0x0b,0x12,0x41,0x25,0x50,0x2e,0x3e, +0x0c,0x8e,0x99,0x02,0xc5,0xfd,0x3e,0x66,0x30,0xcc,0x14,0x22, +0xea,0xce,0x32,0x85,0xa8,0x30,0x7e,0xe7,0x69,0xba,0x42,0x2e, +0xab,0xe4,0xc8,0xac,0xfd,0xfe,0xe5,0x39,0x32,0xd4,0x0b,0x50, +0x9c,0xce,0x60,0x50,0x14,0x5a,0x9b,0xf5,0xe6,0x4e,0x17,0xd9, +0x30,0x5c,0xa3,0xd4,0x0c,0x48,0xc5,0xc5,0x9c,0x77,0x1c,0x8d, +0x7b,0x3b,0x1e,0x46,0x75,0x41,0xa1,0x29,0x4a,0x53,0x0d,0x94, +0xa6,0x73,0x1a,0x2c,0xa0,0x04,0xcc,0x14,0xc2,0xe8,0xc7,0x4b, +0xf7,0x65,0xc7,0x11,0xd8,0xdb,0x04,0x6e,0xab,0x80,0x3f,0x85, +0x06,0xb9,0xaa,0x9c,0xf9,0x22,0x02,0x9e,0xab,0xab,0x4a,0xe6, +0xee,0xb9,0xaa,0xac,0xa8,0xb5,0x8d,0xb0,0x6a,0xe0,0xd5,0x87, +0x10,0x8f,0x99,0x88,0x19,0x88,0x18,0x6d,0x64,0xd2,0x0f,0xdb, +0x9b,0x50,0x92,0x10,0x6f,0x7c,0xde,0x20,0xbd,0x79,0xc0,0x4c, +0x26,0x8a,0x81,0x07,0xca,0x10,0xf6,0x6f,0xa4,0xfe,0x74,0xee, +0x7f,0x83,0x95,0x92,0xc5,0xc8,0x40,0x3b,0x5f,0xc5,0x29,0xc9, +0x46,0xca,0x12,0x63,0xb3,0xb6,0x6c,0x44,0x62,0x85,0x4d,0x71, +0x12,0xc6,0x92,0xf3,0xba,0x8e,0x89,0x9f,0x60,0x27,0x39,0xaf, +0xeb,0xe8,0xa0,0xbb,0x46,0xe4,0xbc,0xae,0x53,0x80,0x28,0x56, +0x74,0x37,0x04,0xca,0x93,0xf1,0x54,0x0b,0xf2,0xc9,0x39,0xb2, +0x10,0x0b,0x64,0x32,0xf7,0xbf,0xc5,0xc4,0x11,0xe8,0x89,0x46, +0x0f,0x47,0xfd,0x44,0x71,0x43,0x7d,0x29,0x10,0x8b,0x52,0x96, +0xcf,0x08,0x32,0x98,0xde,0x0c,0x3c,0x68,0x62,0x8e,0xf6,0x89, +0xb9,0x94,0xd5,0x93,0xc8,0x94,0x0d,0xa3,0xa2,0xf1,0x8b,0xd0, +0x86,0x71,0xdf,0x9f,0x99,0x78,0x07,0xd6,0xa0,0xf8,0xd9,0x93, +0x2f,0x17,0x98,0x19,0x9f,0x25,0x11,0xad,0x14,0xfe,0xc3,0xc5, +0x18,0x41,0xeb,0x3e,0x04,0x1d,0x90,0x8f,0x8f,0xa2,0x4a,0x72, +0x10,0x0b,0x8e,0xe1,0x8a,0x94,0xc3,0x15,0xe9,0x09,0x41,0x2b, +0xff,0xc9,0xdb,0x4d,0x2a,0x52,0xd9,0x88,0x7c,0x65,0x9c,0x49, +0x31,0x59,0x4f,0x99,0x2c,0xf4,0x87,0x7b,0xe0,0xb2,0x6f,0xc9, +0x1f,0x45,0xa5,0x78,0xfe,0xab,0x51,0xfa,0x42,0x28,0x4a,0x9e, +0x31,0x4e,0x7c,0xa1,0xff,0x4e,0xfe,0x56,0xa9,0x18,0x26,0x66, +0x56,0x19,0xc0,0xa8,0xe0,0x67,0x5f,0x2a,0xf8,0x39,0x4e,0x7c, +0xab,0xff,0x26,0x16,0xf3,0x50,0x5c,0xd7,0x8f,0xab,0xd9,0x2b, +0xab,0x6f,0x13,0x53,0x99,0xad,0x3d,0x13,0x8b,0x6d,0x77,0xb1, +0x57,0x3a,0x53,0x86,0xcb,0x5e,0x5b,0x38,0x9b,0x85,0x5d,0x13, +0x99,0x48,0xab,0xa7,0x4a,0xa3,0x17,0xcf,0x6d,0x5f,0xb8,0xc7, +0xc6,0x64,0x7d,0x01,0x2f,0xf5,0x78,0x62,0xcf,0xaf,0x2f,0x61, +0xd5,0x81,0x64,0x71,0xfe,0xa5,0x9e,0xf6,0x70,0x48,0x24,0xbe, +0x84,0xe5,0x83,0x58,0x37,0xfe,0xd1,0xb3,0xf7,0x25,0xac,0x2b, +0xe0,0x41,0x3f,0xc7,0xed,0xd3,0xa7,0xde,0x33,0x4b,0x19,0xca, +0x43,0xec,0xf5,0x05,0x00,0x70,0x86,0x47,0xf5,0xdb,0xa8,0x91, +0xe4,0x9c,0x7b,0xc6,0x88,0xc3,0xdc,0x61,0x0b,0x4e,0xa9,0x86, +0xb4,0x46,0x67,0x1f,0x39,0x6e,0xb5,0x97,0x06,0x80,0x47,0x48, +0x5a,0xa2,0xa6,0xfb,0xb8,0xb2,0x5a,0x81,0x78,0xf8,0x5c,0x34, +0x2e,0xb4,0x02,0xdc,0xe7,0xcf,0xc2,0xa3,0xcb,0xdd,0xe0,0xf1, +0xd2,0xd7,0xf1,0xbc,0xc4,0x22,0x26,0x62,0x8e,0x82,0x7c,0x20, +0x7e,0x39,0x0c,0x57,0x1f,0x88,0xfb,0x47,0xe5,0xdb,0xb2,0xa8, +0x68,0x52,0xc9,0xca,0x03,0x5d,0xf1,0x36,0xba,0x35,0x31,0x47, +0x40,0xfe,0x21,0x7e,0x39,0x04,0x57,0xef,0x89,0xfb,0x47,0xe4, +0xdb,0x90,0xa3,0x6e,0xeb,0x1f,0xe2,0x6d,0x94,0x8f,0x98,0xc3, +0x90,0x7b,0x4f,0x5c,0x3b,0x08,0xd7,0xee,0x89,0x87,0x47,0xe4, +0x3b,0x20,0x44,0x38,0xf7,0x9a,0xc2,0x6c,0xc8,0x6e,0x9b,0x83, +0x90,0x7b,0x5b,0x5c,0xdb,0x0f,0xd7,0x6f,0x89,0x47,0x87,0xf0, +0xde,0x1d,0xbc,0xe7,0x49,0x05,0x85,0xbb,0x31,0xd8,0x0a,0x7d, +0x79,0x00,0x06,0x56,0x37,0xa1,0x0e,0x77,0x45,0x26,0x7f,0x7a, +0x03,0xbc,0xcf,0xfb,0x6f,0xbe,0xa7,0x9f,0xff,0x0f,0xf7,0x1a, +0xbd,0x99,0x07,0xaf,0x90,0x37,0xdf,0xd3,0xb7,0xbe,0xf9,0x9e, +0x77,0xcb,0xff,0x30,0xaf,0xed,0xb8,0x20,0x67,0xdf,0xb4,0x20, +0x8b,0xf3,0x27,0x9d,0x73,0x9d,0xf1,0x92,0x01,0xac,0xb2,0x95, +0x7b,0xa1,0xf3,0x50,0x22,0xeb,0xf5,0x18,0x95,0xbf,0x65,0x75, +0x02,0xe7,0xc4,0x0c,0xa3,0x97,0x21,0xe9,0xaa,0x4e,0xb9,0xd5, +0xe9,0x4d,0x0c,0x37,0x64,0x54,0x80,0x7c,0xcf,0x05,0x91,0xc2, +0xfd,0x7f,0xa2,0xd2,0xe3,0xb5,0xa8,0xf4,0x38,0xf7,0x5d,0x41, +0xb5,0xc7,0xf7,0x50,0xed,0x71,0x5e,0xe2,0xdc,0x1b,0x18,0xf3, +0x5b,0xfd,0x1f,0x28,0x7b,0xa3,0xed,0xe3,0x69,0x4c,0xd4,0x3e, +0x02,0x3f,0xde,0x13,0x3b,0x0e,0xf3,0xe2,0x4f,0xd1,0x0b,0x12, +0x95,0xcb,0x5a,0x8d,0xe2,0x14,0xc6,0xd5,0xd6,0x8d,0x25,0x30, +0xe8,0x82,0xd8,0x20,0x7f,0x45,0x43,0x53,0x62,0x2d,0x42,0x1e, +0x85,0x1f,0x7f,0x17,0x3b,0x0e,0x29,0xc8,0x6c,0x51,0xb9,0x82, +0x75,0x06,0xb7,0x36,0x63,0x49,0x47,0xda,0x4d,0x89,0x4c,0x6c, +0x38,0xdd,0xbf,0x3a,0xb4,0xa7,0x2a,0x92,0x83,0xa9,0x06,0x7e, +0x34,0xd5,0x55,0x1e,0x4c,0x75,0x95,0x39,0x3f,0x61,0x0e,0x82, +0xa8,0x07,0x61,0xc7,0x5d,0x71,0xf8,0x88,0x74,0x82,0xe7,0xa2, +0x72,0x25,0x6e,0x8d,0xa5,0x02,0xdd,0x53,0x74,0x3a,0x33,0x39, +0x81,0x17,0xef,0xcc,0xbe,0x0f,0xf8,0xac,0xd9,0x38,0x6b,0xd5, +0x7e,0x1f,0x80,0x4f,0x99,0xa0,0xbd,0x1f,0xfe,0xb0,0x77,0xd7, +0xd7,0x1b,0xbf,0xf6,0x4f,0x9f,0xa3,0xca,0xc1,0x07,0x83,0x93, +0xdf,0xde,0x6f,0xa9,0x1e,0x64,0x34,0xbd,0xd4,0x98,0x70,0x46, +0xec,0xa2,0xc2,0x09,0x9c,0x7f,0xae,0x58,0x3b,0x7d,0x5f,0x7c, +0x73,0x08,0x76,0xdc,0x17,0x87,0x8f,0x22,0xfd,0xbf,0x45,0x65, +0x28,0x6a,0xe5,0xbc,0x15,0xda,0xaa,0xb7,0x98,0xa8,0x75,0x18, +0x4e,0xe3,0xf8,0xfb,0x61,0xe7,0xef,0xe2,0xf0,0x61,0xe9,0x08, +0x4f,0x45,0xe5,0x2a,0xf8,0x90,0x66,0xb2,0x9c,0x6e,0xec,0xba, +0x6e,0x4e,0xc0,0xf1,0xb6,0xa8,0x7d,0x08,0x7e,0xba,0x21,0x76, +0xee,0x87,0x5d,0xd7,0xc5,0xd1,0x43,0x48,0xe7,0xba,0xa8,0xcc, +0xbd,0x9c,0x70,0x19,0x23,0xd8,0x93,0xf5,0xec,0x2e,0x77,0x3f, +0xc7,0x72,0xa6,0x93,0x3a,0x3c,0xa3,0x8b,0x6a,0x46,0xe2,0x71, +0xf9,0x13,0x8c,0xe3,0xee,0x31,0x44,0xe6,0xce,0x7a,0x76,0xf5, +0xf5,0x04,0x02,0x96,0x32,0xee,0xda,0x80,0xc1,0x71,0xd9,0x60, +0x3d,0xbb,0x26,0x73,0x19,0xf7,0xc1,0x75,0xb1,0xa2,0x63,0x8a, +0x4d,0xbd,0x4a,0x7e,0xd3,0x7b,0x32,0x93,0xb1,0xaa,0xe5,0x55, +0xde,0xac,0x42,0x7e,0xee,0xa4,0x7e,0xed,0xf5,0x34,0xf5,0x80, +0x3c,0x58,0xef,0x32,0x79,0x2d,0xcf,0xef,0x18,0x3a,0xd6,0xee, +0xb8,0x4f,0xd3,0x84,0x1b,0xcc,0x3d,0x4b,0x35,0xb4,0x8f,0xcb, +0xc1,0x85,0xf8,0x5e,0x0d,0xbf,0xe8,0x25,0x99,0xb1,0x4c,0x6c, +0xe1,0x0e,0x63,0x19,0xbc,0x23,0xeb,0x6a,0x6e,0x84,0x72,0x86, +0x89,0x29,0xdc,0x63,0x06,0xe3,0x01,0x1a,0x55,0x21,0x6f,0xae, +0xcb,0xfa,0xc6,0x30,0x66,0x2c,0xe5,0x4e,0x8d,0x51,0x81,0xde, +0x37,0xea,0xd3,0x3a,0x9f,0x7c,0xf3,0x3a,0x5e,0x43,0x76,0xcf, +0xa3,0xb5,0xfd,0x63,0x3d,0x7b,0xf2,0x8f,0x1d,0x15,0x6a,0x4d, +0xa1,0x7d,0x72,0x09,0xde,0xe7,0xa5,0x7f,0x61,0x13,0xfd,0x92, +0x67,0x59,0x36,0x6f,0x9d,0xcf,0xdd,0x4f,0x32,0x48,0xa9,0x19, +0xf4,0x55,0x3b,0x11,0xb0,0xf7,0xda,0xf6,0xbd,0xdf,0xf8,0x2f, +0x4e,0x5f,0x46,0x25,0x4d,0x56,0x81,0xb7,0xdf,0xd7,0x47,0x2d, +0x6e,0xd9,0x9a,0xd1,0x41,0x37,0x80,0x35,0x35,0x36,0xa0,0x35, +0xb1,0x3e,0xe6,0xae,0x67,0xd8,0x55,0x48,0xe2,0x6e,0xd7,0xd8, +0x36,0x5e,0xbc,0x09,0x8b,0x68,0xdd,0x1d,0xc6,0x34,0xdd,0xda, +0xc1,0x4f,0x04,0x7c,0x7b,0x75,0xdb,0xde,0xaf,0x96,0xcc,0xe5, +0x1e,0xcd,0xd9,0xd6,0x43,0x16,0x37,0xae,0x5d,0x30,0x97,0xb6, +0x32,0xae,0x07,0x62,0x8b,0xc9,0x48,0x86,0xa6,0x06,0x1b,0xa1, +0xba,0x6e,0xcc,0xac,0x4b,0x85,0x48,0xce,0x8b,0xfd,0x54,0xb3, +0xcf,0x5c,0x3a,0xdb,0x3d,0xaa,0x50,0xee,0xa4,0x5f,0x37,0x26, +0x1f,0x93,0x93,0xaf,0x19,0x33,0x33,0xe4,0x45,0x94,0x2e,0xf7, +0xd6,0xec,0x75,0x5c,0xc0,0x76,0xa8,0x9e,0x73,0x83,0xc1,0x64, +0x7d,0x83,0x08,0x68,0x94,0x3e,0x0a,0x42,0x2d,0x10,0xad,0x8d, +0x12,0xa1,0x8d,0x12,0x37,0x40,0x00,0x2f,0x85,0xb1,0x44,0x1e, +0x07,0x45,0xd1,0xcd,0x43,0x3d,0xde,0xee,0xa8,0x7c,0xeb,0x81, +0xb8,0x71,0x18,0x6e,0x3e,0x10,0x8f,0x8f,0xca,0x5a,0xa8,0x86, +0xc3,0x2b,0x59,0x8d,0x46,0xf4,0xe3,0x7e,0x9d,0x42,0x05,0x47, +0x2a,0x3c,0xef,0xcf,0xee,0x8a,0x76,0x47,0x78,0xa9,0x50,0x46, +0x10,0x33,0xea,0xd5,0x49,0xab,0x1b,0x38,0x27,0x3a,0xf7,0x11, +0xfb,0x03,0xa6,0x9b,0x55,0xc6,0x2b,0x3c,0xee,0xcf,0x7e,0x13, +0xed,0x0e,0xdb,0xd0,0x65,0x08,0xaf,0x6c,0x95,0x2d,0xd9,0x61, +0x98,0x6b,0x56,0x0b,0xa9,0x88,0xb7,0x6e,0x89,0x76,0x07,0x65, +0x91,0xdb,0xe2,0xe6,0x7e,0xb8,0x75,0x4b,0x3c,0x39,0x24,0x6b, +0x91,0xb8,0x57,0xb7,0x72,0xb7,0x75,0x79,0x89,0xb4,0xa5,0xa8, +0x2a,0xb9,0xe1,0xc6,0x6c,0x7f,0xb0,0x1a,0xd6,0x19,0xf4,0x73, +0xbe,0x97,0xf8,0xba,0x70,0x47,0x28,0x76,0xac,0x2d,0xd4,0xf1, +0x33,0xf4,0x16,0xd3,0x98,0x6d,0x7c,0xde,0xf5,0x03,0x58,0x2c, +0x5a,0x15,0xba,0x96,0x25,0x11,0xe1,0xb3,0x42,0x1d,0x50,0x01, +0x2a,0x8a,0x81,0x8c,0xaa,0x48,0xdd,0xce,0x79,0x9e,0xd7,0x5b, +0x17,0xc2,0x0a,0x4a,0x83,0x54,0x78,0xf4,0xea,0x34,0x9e,0x40, +0xa2,0x59,0x21,0x64,0x0f,0xdd,0x7e,0xf6,0xea,0xed,0xc6,0x90, +0x26,0x30,0xf8,0xb6,0x0e,0xc9,0x23,0x97,0x0a,0xc1,0x66,0x2d, +0xf3,0xd7,0xc3,0xcb,0x46,0xa5,0xc5,0xe5,0xc2,0x3c,0x3d,0x96, +0xc5,0x75,0x6e,0x9d,0xc7,0x0a,0xca,0x9a,0xbf,0x01,0x31,0x0a, +0x6a,0x89,0xb9,0x85,0x47,0x82,0xc5,0x10,0x2a,0x12,0x58,0xb6, +0xb3,0xd8,0xa0,0x3f,0x16,0x5a,0x06,0x2f,0xd5,0x86,0x3d,0x2e, +0x0b,0x23,0x2b,0x30,0xb9,0xe2,0xb1,0x2e,0xc6,0x95,0x85,0x71, +0x1a,0x7a,0x43,0x3d,0xd1,0x77,0x41,0x98,0x1d,0xfa,0x7d,0xa1, +0x91,0xef,0xf2,0xa8,0x22,0x8c,0x54,0x16,0x5d,0xae,0xb8,0x8f, +0x50,0x15,0x11,0x4a,0x5c,0x82,0x2d,0xe8,0xc7,0xe4,0x56,0x66, +0xc2,0x8a,0x56,0xfc,0xb1,0x6d,0x22,0x9d,0xc9,0xfa,0x1d,0xba, +0x31,0xe8,0x76,0x6a,0x13,0xd9,0xa3,0x65,0x4c,0x44,0x80,0x2b, +0x3a,0x31,0xf0,0x94,0x7e,0x56,0x6f,0xc6,0x1e,0xc9,0x7a,0xac, +0x3c,0x74,0x17,0x3f,0x17,0x40,0x84,0xc8,0xba,0xe8,0xd3,0xe4, +0x5f,0x82,0x15,0xaf,0x7f,0x2d,0x44,0x00,0x20,0x11,0xfd,0x99, +0x82,0xeb,0x1b,0x18,0xbd,0x27,0x16,0x82,0x77,0x46,0xf8,0x1b, +0xaf,0x5c,0xef,0x2d,0x04,0xdf,0x05,0xdc,0xfe,0xa5,0x1f,0xf3, +0xd2,0x3c,0x6e,0xc1,0x46,0x72,0x5b,0x0a,0xf1,0x2d,0x8e,0xc2, +0x0a,0xf4,0x59,0xf2,0xa1,0xb8,0xfe,0x90,0x65,0x33,0x71,0x53, +0xbf,0x29,0xb4,0x03,0xdc,0xdd,0x9f,0x3d,0xaa,0x09,0xa3,0xcc, +0x4a,0xe0,0x2b,0x6f,0xea,0x62,0x42,0x4d,0x98,0xa0,0x8d,0x04, +0x57,0xf8,0xe1,0x25,0xc2,0xd0,0x18,0x3e,0xe4,0x5a,0xfe,0x04, +0x79,0xa0,0x4b,0x21,0x8a,0x7e,0x85,0x26,0x3a,0x02,0xdc,0x5e, +0xf2,0x80,0xb2,0x27,0x19,0xef,0xe9,0xe4,0x5d,0x1a,0xbf,0x68, +0xa2,0x08,0x94,0xe3,0x25,0xa2,0xa8,0xaf,0x0d,0x2f,0xd9,0x87, +0xd9,0x3a,0xd7,0xe1,0x3e,0xa5,0x99,0x78,0xc2,0x20,0x94,0x7b, +0x27,0xb0,0x5c,0xdc,0xec,0x9d,0xc2,0xf5,0x36,0x86,0x35,0xe4, +0xfc,0x0b,0xc3,0x7a,0x8c,0xaa,0x75,0xfb,0xe1,0x63,0xc0,0x7e, +0x51,0x14,0xfc,0xb8,0xdf,0xe2,0xfc,0xa6,0xcf,0x45,0x3b,0x34, +0xf7,0x5a,0x98,0xdf,0xe9,0xbb,0x35,0xaf,0x53,0xcf,0xca,0x6b, +0x79,0x3e,0xa4,0xe1,0xba,0xe8,0x05,0x4e,0x9e,0x71,0x45,0xb3, +0x75,0xae,0xc7,0xbd,0x9b,0xb3,0x9c,0x59,0xc8,0x42,0x2d,0xee, +0x55,0x59,0xb1,0x50,0xaa,0x11,0xab,0x02,0x4b,0xdb,0x88,0x55, +0xd6,0xe9,0xe1,0xad,0x3f,0x80,0xb1,0x11,0x9c,0x0f,0x65,0x1b, +0xe7,0x6f,0x9a,0xf5,0xb5,0xbf,0x98,0x7f,0x0c,0x6e,0xb2,0xec, +0x89,0xc6,0x60,0x9d,0x56,0xcc,0xf8,0x59,0xb3,0x75,0x6a,0xa2, +0xb7,0x33,0xac,0x0d,0xcd,0x9a,0xd4,0x97,0x0c,0xeb,0x11,0xaa, +0x49,0xed,0x44,0x25,0xd4,0x4d,0x52,0xd5,0x54,0x49,0xea,0xba, +0x28,0xf2,0xe8,0xa4,0x7f,0xfa,0x9b,0xd5,0x2d,0x8f,0x49,0x3e, +0x12,0x35,0xd3,0x13,0x56,0x8f,0x07,0x2c,0x2a,0x34,0xe1,0xc6, +0x66,0xcd,0xe9,0x0b,0x34,0x6b,0xdb,0x30,0x38,0x4e,0xbe,0x63, +0xe8,0x56,0xfa,0x7d,0x7c,0x07,0xb7,0x34,0x63,0x07,0xe0,0xc6, +0x55,0x72,0x1b,0x6a,0xa0,0x7f,0x8b,0x21,0xcf,0x67,0xdc,0x2f, +0x93,0xf1,0x52,0xe8,0x90,0xd6,0x16,0xa3,0x75,0xf8,0xfb,0xaa, +0xb8,0xbe,0x1f,0x6e,0x5c,0x31,0x21,0x2e,0x12,0xc4,0x6a,0xee, +0x5d,0x92,0x49,0x8d,0x75,0xbb,0x60,0xdc,0x6b,0x2c,0x93,0xad, +0x08,0x38,0xc4,0xa8,0xc3,0x60,0xa5,0x9e,0x25,0x82,0x6c,0x8c, +0x19,0x95,0xe1,0x04,0xd7,0x51,0x94,0x4b,0xbd,0x4d,0x44,0x7a, +0xd9,0x12,0x19,0x2c,0xe0,0x9e,0x5f,0x30,0xc3,0x97,0x06,0x5d, +0x49,0xd7,0xd3,0x73,0xdd,0xd9,0x70,0x59,0x53,0x1f,0x7f,0x45, +0x8c,0x10,0x2d,0xe1,0xdb,0x0e,0x62,0x74,0x43,0x18,0x01,0x25, +0xa2,0xd9,0xe1,0x82,0xb2,0x9d,0x7d,0xa8,0x6c,0xe7,0xd2,0x33, +0xe2,0x9c,0x2a,0xdb,0x59,0x08,0x99,0x7b,0xff,0xca,0x5e,0xbe, +0x0e,0xc6,0x29,0xad,0xa7,0xd1,0x3e,0xb5,0x77,0x64,0x31,0x59, +0x93,0xae,0x7b,0x9a,0xd7,0x5e,0x2d,0x90,0x9d,0x2a,0xd4,0xd1, +0x83,0x3a,0x92,0xb9,0xe7,0x10,0x9a,0x42,0x9f,0x0b,0xc6,0xcd, +0xc2,0x53,0x48,0xe7,0x5e,0x41,0xaf,0x9b,0xda,0x32,0xee,0x7d, +0x1e,0x15,0x46,0x7f,0x22,0x10,0xcb,0x5d,0x0f,0x31,0x58,0x02, +0x29,0xdc,0x3b,0x04,0x47,0xdd,0x40,0x6c,0x6c,0x51,0x40,0x38, +0xff,0x40,0x9c,0x7f,0x04,0x8c,0xe5,0x6e,0x6d,0x5f,0x1a,0x1f, +0x67,0x3b,0x57,0xbe,0xc3,0x5d,0xfd,0x5f,0x4b,0xdc,0x8e,0x57, +0x0f,0xf1,0xdc,0x51,0x3c,0x5d,0xa9,0x24,0xac,0xb7,0x59,0xae, +0xd1,0xbb,0x71,0xd2,0x7a,0x70,0x55,0x45,0x8a,0x5f,0x1d,0xdd, +0xe5,0x24,0xfb,0x0d,0x3a,0x53,0xd1,0x62,0x1e,0xb4,0x8c,0x55, +0x15,0xf1,0x3a,0xfc,0x70,0x49,0x7c,0xb5,0x0f,0xbe,0xbe,0x24, +0x0e,0x1c,0x94,0x0e,0x70,0xca,0x70,0xd7,0x20,0x01,0x79,0x77, +0x41,0x6f,0x23,0x78,0x08,0xa3,0x4f,0xb0,0xe1,0x87,0x8b,0x04, +0xf2,0xd5,0x05,0xb1,0xff,0x00,0x82,0x1c,0x37,0x41,0x16,0x53, +0xcd,0x60,0x1e,0x1c,0x4f,0x20,0xdc,0xad,0x33,0x83,0x45,0x54, +0x16,0x98,0x07,0x0f,0xc7,0x8e,0x9e,0x3a,0x9c,0x3a,0x27,0xb6, +0x7f,0x0f,0xdb,0xcf,0x8a,0x83,0x7b,0x11,0x67,0x97,0x89,0x33, +0x8f,0x2a,0x01,0xc3,0x58,0x26,0xeb,0xc8,0xc1,0x5c,0xc3,0x49, +0x26,0xc0,0x0c,0xae,0x7f,0xf0,0x8f,0x2e,0xef,0x3b,0xff,0xec, +0x8a,0x62,0x62,0x8d,0xd9,0xf4,0x3c,0x93,0xdf,0xf4,0x3e,0x97, +0xdf,0xf4,0x2a,0x04,0x10,0x9f,0x57,0x04,0xb8,0xce,0x03,0xce, +0x6f,0x52,0xe7,0x6c,0x55,0x03,0x38,0x78,0x58,0x21,0x6e,0x75, +0x74,0xb0,0xc2,0x99,0x78,0x4b,0xff,0x40,0xd4,0x8e,0xcd,0x34, +0xbe,0xe1,0x01,0xad,0x19,0x7c,0xc2,0xbd,0x59,0x41,0x6d,0xdf, +0x3a,0x32,0x91,0xfb,0xce,0x7b,0x73,0x71,0x5f,0x1a,0xb0,0x36, +0x0e,0xe8,0x37,0x84,0x06,0xfc,0x8d,0x06,0x7c,0x44,0x08,0xff, +0x4b,0xc5,0xde,0xd7,0xf1,0xe0,0xf5,0xac,0xa0,0x78,0xef,0x24, +0xf8,0x41,0x97,0xc5,0xee,0x88,0x5b,0x87,0xe0,0xd6,0x1d,0xf1, +0xe7,0x11,0x59,0x07,0x1e,0x1b,0x2d,0x30,0xb6,0xa6,0xb3,0x5a, +0xce,0x92,0xa9,0xfb,0x15,0x2d,0xd6,0x24,0xb1,0x13,0xa1,0x6e, +0x8b,0xdb,0x07,0xe1,0xce,0x2d,0xf1,0xf4,0x30,0x42,0xdd,0xb3, +0x43,0xbd,0x54,0x52,0xb7,0xb4,0x2a,0xa8,0x8b,0xe0,0x5b,0xb8, +0xdb,0xfb,0x0c,0x52,0xb9,0x97,0x95,0x5e,0x72,0x6f,0xc6,0xbe, +0x04,0xf1,0x49,0x6e,0x73,0x5c,0x2b,0xfd,0xfc,0x0b,0xb3,0x86, +0x6e,0x15,0xaa,0xa1,0x9b,0xbb,0x87,0x96,0x6f,0x1b,0xdd,0xe9, +0x95,0xbb,0x81,0x0d,0x94,0xba,0x3e,0xfe,0x46,0x7e,0xd9,0xdc, +0xba,0x28,0x7f,0x61,0x2f,0x95,0xcd,0x8d,0x23,0xf9,0x5b,0x7b, +0x46,0xdc,0x24,0xf9,0x2b,0x8c,0xcc,0xf5,0x22,0xaf,0x12,0x33, +0x1a,0xc2,0x60,0x1d,0x2a,0xbd,0x88,0x82,0x1b,0x62,0x9b,0xb8, +0x11,0xa5,0xc9,0xd1,0xb0,0x51,0x9f,0x76,0x9d,0x8e,0x27,0xa0, +0x2a,0xb0,0x03,0xea,0x42,0x2c,0x84,0xf1,0x12,0xb9,0xa8,0xcc, +0xa9,0xf2,0xad,0x6d,0x10,0xa2,0x8b,0xf9,0x26,0x39,0xcf,0xb3, +0xec,0xa5,0x6b,0xef,0xdf,0x5f,0xbe,0xf6,0xea,0xf2,0xca,0xc4, +0x10,0x65,0x1c,0xaa,0xba,0x4b,0x0c,0x3e,0xe2,0x5e,0x2a,0x8f, +0xe0,0x0f,0x73,0xe1,0xb8,0x15,0x03,0xa7,0x05,0x90,0xf0,0xff, +0xa9,0xfa,0x2b,0x71,0x30,0x41,0x18,0x94,0x65,0xb9,0x2a,0xfb, +0x19,0x86,0x89,0x0d,0x89,0xeb,0xad,0xc4,0xe2,0x44,0xee,0x3d, +0x90,0xe5,0x03,0xd4,0x07,0x3f,0x54,0xc5,0xd3,0x1b,0x72,0xf7, +0xfd,0xac,0xfc,0x79,0xb1,0xdd,0xfa,0xd2,0x02,0xe0,0xfa,0xcd, +0x94,0x3e,0xfa,0x65,0x55,0xcf,0xf5,0x32,0x15,0x3c,0xfb,0x32, +0xaf,0x9e,0x6b,0x1e,0x81,0xb7,0xa1,0xbd,0xd1,0x9b,0x35,0x9e, +0x3b,0xca,0xf0,0x7a,0x75,0x18,0x67,0xb2,0x42,0xcd,0x75,0x72, +0x5a,0x4c,0x43,0x58,0x86,0xf3,0x79,0x8c,0x87,0x58,0x18,0xb6, +0x83,0xb9,0x4f,0x43,0x65,0x37,0x82,0xb9,0x57,0x06,0xb3,0x49, +0x34,0x0a,0x11,0xaa,0x5c,0xaa,0xf3,0x19,0xe1,0x2c,0x26,0x36, +0x34,0xcb,0xa5,0x5e,0xb2,0x97,0x4b,0xad,0x47,0xe5,0x52,0x91, +0x5a,0x0b,0xee,0x3a,0x1e,0x4d,0x0d,0x0f,0x94,0x84,0x82,0xb6, +0xc5,0x87,0xfb,0x1a,0xf9,0x4d,0x9f,0x87,0x05,0x84,0xec,0xa5, +0x4e,0xab,0xe2,0xd3,0xad,0x4c,0xa5,0x4e,0xef,0x89,0x58,0xf1, +0x01,0x95,0x3a,0x2d,0xfb,0xd3,0xe3,0x57,0x4a,0x9d,0x3e,0x15, +0x5f,0x8b,0xa7,0x51,0x1a,0x7c,0x47,0xa5,0x4e,0x8b,0x53,0xa9, +0xd3,0x3c,0x82,0x5e,0x0b,0x0a,0x68,0x3f,0xb0,0xd3,0xe6,0xfa, +0x88,0x82,0x51,0xa8,0x08,0x29,0x3a,0x29,0xaf,0xad,0x3f,0x7a, +0x8f,0xea,0x8f,0x36,0xa4,0xfa,0xa3,0x97,0xec,0xf5,0x47,0x33, +0xd0,0x73,0xc1,0x49,0x0c,0x44,0xc3,0x7c,0x13,0x0d,0xb3,0x1c, +0x79,0xd3,0x98,0x76,0x4c,0x9e,0x84,0x47,0x68,0x9e,0x71,0x49, +0xfc,0xb8,0x57,0xae,0x5a,0x1e,0x5b,0xe7,0x06,0x54,0x11,0xb4, +0xea,0xb9,0xbb,0x62,0x4a,0xd5,0xac,0xbb,0xf6,0x8a,0xa0,0x3f, +0x50,0x45,0x50,0x73,0xc5,0x7c,0xc2,0xc8,0x30,0xc7,0xe9,0xf2, +0x93,0xdf,0x8c,0x61,0xfb,0xe4,0xf0,0x3b,0xc6,0xe4,0x83,0xf2, +0x38,0xfc,0xa6,0x8c,0x74,0x38,0xd5,0x05,0x85,0x22,0x66,0x61, +0x50,0x51,0xc4,0x5e,0x19,0x94,0xeb,0xb0,0xec,0x8a,0xaa,0x0c, +0x7a,0xce,0x6e,0xb0,0x83,0x39,0x0f,0xcb,0x9f,0x5e,0x60,0x13, +0x65,0xa1,0x69,0xdc,0x51,0x95,0xc0,0xbd,0x8d,0x91,0x73,0x0c, +0xdc,0xff,0xb0,0x97,0xff,0xac,0xa6,0xc3,0x98,0x3f,0x54,0xf9, +0xcf,0x2e,0x7a,0xc3,0xb9,0x23,0xa0,0xac,0x05,0x5a,0x6b,0x23, +0x44,0xd9,0x86,0x49,0x1b,0x21,0xc4,0x02,0x15,0xdb,0x65,0xbb, +0x1c,0x81,0x4a,0x6a,0xd9,0xcc,0x65,0x89,0x85,0xb7,0xcc,0xe2, +0xa0,0xf4,0xb2,0xf0,0x68,0xde,0xf0,0x3f,0x9b,0xd5,0x41,0x3f, +0x45,0x3b,0x2f,0x6a,0x1a,0x8e,0xba,0xf1,0xcb,0x71,0x39,0xe7, +0x91,0x31,0xe2,0xa8,0x1c,0xf9,0xc8,0x98,0x96,0x21,0x4f,0x69, +0xe0,0x2e,0x3f,0xe7,0x7c,0x3b,0x2d,0x52,0x27,0xdd,0xc0,0xb0, +0xd0,0x61,0x05,0xab,0xab,0xab,0x6f,0xca,0x0e,0xa3,0xab,0xaa, +0xe6,0x6c,0xbb,0xc9,0x6c,0x43,0x59,0x63,0x55,0x60,0xd3,0x1b, +0x1d,0xa5,0x57,0x3a,0xeb,0xa0,0xb7,0x7e,0xfe,0x95,0x4e,0x9b, +0x8f,0x6c,0x8c,0x8e,0xe7,0x6b,0x3a,0xf7,0xbe,0x8a,0x7e,0x05, +0xf4,0x7f,0xe9,0x82,0xfe,0x83,0xc7,0xb6,0xf0,0x35,0xba,0xa1, +0xe4,0xfb,0x71,0xb7,0xd9,0xf8,0x0c,0x6b,0x70,0xaf,0xb8,0x97, +0xa1,0xb8,0x6f,0x05,0x1a,0x6f,0x60,0xfe,0x73,0xfb,0xcd,0x98, +0x7c,0x00,0x07,0x6e,0xa4,0x8a,0x5d,0x7a,0xa3,0xfb,0xf9,0x2a, +0x51,0x5b,0x4b,0xe8,0xa3,0x1b,0xb3,0x6a,0xf3,0x52,0x3d,0x19, +0xbc,0x75,0x4e,0x1c,0xa5,0x1a,0x96,0x2f,0xd3,0x0c,0xd4,0x5e, +0x99,0x83,0xdc,0x0d,0xfa,0xcb,0xee,0x68,0x57,0xd1,0x5e,0xbf, +0x68,0x5c,0x68,0xa4,0xc9,0xbf,0x64,0x98,0x6e,0x34,0xcf,0x0b, +0x0a,0x6f,0x3c,0x10,0x8f,0x30,0x28,0xd4,0x3a,0xca,0x65,0x3c, +0x60,0x61,0x5e,0x2c,0x38,0x53,0x4c,0xd0,0x29,0x0e,0x34,0x9a, +0x6b,0x0f,0xdb,0xea,0x23,0xa1,0x12,0x8c,0x9d,0x06,0x83,0x73, +0x33,0x30,0x12,0x9c,0x65,0x46,0x82,0x33,0xc5,0x08,0x1d,0xc3, +0x16,0x05,0x50,0xb8,0x68,0xe4,0x2c,0x31,0xd8,0x36,0x83,0x75, +0xa2,0xca,0x8f,0xdc,0xef,0x3b,0x0c,0x7f,0xd1,0x91,0x32,0x56, +0x9e,0x90,0xd3,0xb9,0x87,0x1b,0xae,0xa2,0x9b,0x7c,0x84,0x30, +0x70,0x0c,0x61,0xde,0xdf,0x47,0xd1,0x9f,0x3f,0x46,0x7f,0x2f, +0xf7,0x85,0x62,0xdf,0xda,0x97,0xfb,0x7e,0x86,0x01,0x18,0x03, +0x52,0xba,0xd9,0x2c,0x31,0xc0,0x0e,0x56,0x12,0xc1,0x3e,0x7b, +0xb9,0x0f,0x23,0xbf,0xea,0x66,0xe4,0x37,0x4b,0x7c,0x60,0x76, +0xd5,0x85,0x0a,0x05,0x61,0xdf,0x4c,0x31,0xbc,0x30,0xcf,0x2f, +0x55,0x85,0x9c,0x29,0x12,0x74,0xce,0x3b,0xab,0x9b,0xad,0xf5, +0x9e,0xcc,0x9c,0xee,0x55,0x8c,0x66,0x22,0xf3,0xc2,0xbc,0x99, +0x62,0x4c,0x61,0xf4,0x82,0x5a,0x91,0xb3,0xc4,0x6c,0x73,0xb4, +0x54,0x28,0x5d,0x10,0x15,0xbe,0x02,0x6e,0x2f,0x20,0xc9,0xfd, +0xbe,0xa7,0x4c,0xa6,0x01,0x3a,0xc6,0x81,0x72,0x21,0x85,0x84, +0xb8,0x28,0x6f,0xc0,0x28,0x28,0x26,0x99,0x3f,0x02,0x46,0x83, +0xe5,0xcc,0x7a,0x92,0x5b,0xd4,0x1b,0xd9,0x68,0x39,0x48,0x9f, +0x9a,0x61,0x99,0x50,0x11,0x02,0x27,0x43,0x95,0x40,0x7a,0x31, +0xfb,0xd3,0x09,0xf8,0x49,0xf8,0x88,0xab,0x27,0x64,0x39,0xd9, +0x95,0x3b,0x20,0x8b,0x35,0xd4,0x6b,0xa4,0x4a,0x4c,0x2e,0xb9, +0xa4,0x41,0xf4,0xfe,0x97,0x11,0x4a,0x98,0x08,0xba,0x89,0xd0, +0x45,0x21,0x84,0xab,0x97,0x49,0x68,0xd6,0xe6,0x21,0x57,0x31, +0x7b,0xed,0x08,0x9c,0x10,0xe8,0x95,0x6c,0xe6,0x09,0xc8,0x14, +0xde,0xe2,0x3a,0x21,0x74,0x22,0x84,0x87,0xea,0xa5,0x12,0xc2, +0x8f,0x25,0xf8,0xf5,0xf4,0x82,0xbb,0x00,0x3e,0x80,0x32,0xbe, +0x15,0xfc,0x71,0x84,0x6f,0x6b,0x6c,0x64,0xcd,0xed,0xaf,0x69, +0xa7,0x33,0xb8,0x6b,0xbe,0x73,0xa2,0xa6,0x30,0xdf,0x39,0x61, +0x53,0x38,0xbf,0xe9,0x9d,0x93,0xcb,0x62,0xaa,0x06,0x60,0xbe, +0xd9,0x5d,0xcc,0xe0,0x85,0xfd,0xcd,0xee,0x62,0x85,0x6d,0xab, +0xa6,0x12,0xc0,0x62,0xf6,0xa8,0xb7,0x47,0xd6,0x0e,0x2c,0xd6, +0x7c,0xdf,0x14,0x30,0x87,0xb2,0x3e,0x06,0x52,0xd2,0x1e,0xae, +0xc1,0x46,0x5c,0x83,0x36,0x3f,0xd2,0xcb,0x34,0xce,0x6d,0x4c, +0x78,0x62,0x94,0xd8,0x4c,0xc1,0xc4,0xab,0xf7,0x50,0x3c,0x60, +0x2e,0x43,0x5f,0x88,0xde,0x3a,0x21,0x70,0x4f,0x04,0x7e,0x1f, +0xdd,0x26,0xa2,0x06,0xdf,0x9b,0x2f,0x9d,0x08,0x60,0x84,0x7a, +0xb3,0x04,0x35,0x99,0x5c,0x7d,0x51,0x4c,0x15,0xc1,0x27,0xad, +0xf0,0x58,0x34,0xd0,0xe5,0xf8,0xd6,0xc6,0x78,0x6d,0x3b,0x6c, +0x37,0xd0,0x5f,0x4c,0xf0,0x0b,0x47,0x3d,0x99,0xfa,0x61,0xea, +0x07,0x29,0x1f,0xa4,0xf9,0x8f,0x13,0xb3,0xc2,0xa7,0xaf,0x41, +0xd7,0xd8,0x6d,0x3e,0x93,0xcd,0x79,0xe9,0xe2,0xcc,0xf8,0x1c, +0x6a,0xea,0x53,0x13,0xa9,0xb6,0xfe,0xf6,0x79,0x3b,0x0f,0x29, +0xe3,0x0f,0x6f,0xf5,0xeb,0x04,0x3a,0x38,0x06,0xed,0xeb,0xfe, +0xc3,0xd1,0x5d,0xbb,0x36,0xee,0xf6,0x9f,0x33,0x27,0x9d,0x4a, +0x51,0x07,0x03,0xa7,0xe2,0x9b,0xc1,0x54,0x8a,0x7a,0xd2,0xc7, +0x54,0xf0,0x2e,0x7b,0x82,0x71,0x44,0x17,0x7d,0x1b,0xc9,0x61, +0x17,0x45,0x0f,0x3b,0x07,0xef,0x70,0xcf,0x9a,0xcc,0x70,0x67, +0xd8,0x8c,0x5f,0xc0,0x64,0x11,0x19,0x25,0xfe,0x2a,0xb8,0xbe, +0x8b,0x3e,0x1a,0xa5,0x70,0xd2,0xaa,0x7e,0xcd,0x5d,0xe7,0x53, +0xf2,0x66,0x29,0x41,0xe7,0x06,0x34,0x27,0x88,0xca,0x0b,0xd8, +0x35,0xd8,0x4b,0x79,0x66,0xe6,0x25,0xf7,0x3c,0xc1,0xf2,0xef, +0x60,0x90,0x17,0x25,0x3f,0x64,0xc6,0x09,0xee,0x92,0xc2,0xb8, +0x7b,0x45,0x26,0x7b,0x5c,0x14,0x5d,0xec,0xc3,0xe2,0x7d,0x51, +0x0e,0xaa,0x89,0x61,0x2c,0x7b,0xbc,0xb1,0x4f,0x17,0x83,0x1b, +0x53,0xb6,0x4d,0xbc,0x74,0x60,0xa2,0x1e,0xf7,0x6c,0xc3,0xb8, +0x93,0x87,0xaa,0x2f,0x38,0x96,0x7a,0x1a,0x72,0xcf,0x2b,0x66, +0x52,0xd9,0x63,0xf1,0xf6,0x02,0x06,0x89,0x68,0x70,0xed,0x29, +0x65,0xfe,0x94,0x52,0x96,0x9e,0x85,0xca,0xd5,0x1f,0x92,0xb2, +0x8c,0x4d,0x56,0x78,0xda,0x82,0x6b,0x18,0xaa,0x6c,0x82,0xa8, +0x9c,0x5a,0xcc,0x78,0x6c,0x0c,0xd5,0xed,0xb7,0xc2,0x0b,0xc0, +0x35,0x08,0x33,0x7a,0x2a,0xb0,0x0c,0x54,0x75,0x8b,0x08,0x6c, +0x04,0x81,0x0d,0xcb,0x32,0xd2,0x29,0x59,0xcc,0x9f,0x92,0xc5, +0x12,0x14,0x58,0x0c,0x77,0x72,0x60,0xb0,0x99,0x17,0x3f,0xcf, +0xc4,0x58,0xbf,0xc8,0xb9,0xe3,0x61,0xda,0x80,0x94,0x7e,0xa9, +0x7d,0xd3,0xfc,0x13,0x44,0x72,0xe4,0xf4,0x15,0x30,0xcd,0x92, +0x36,0x60,0xc0,0xc7,0x03,0x02,0xe7,0xc6,0x58,0x44,0x2d,0x11, +0x3e,0x6f,0xa5,0xb0,0x06,0x8b,0xb1,0xb0,0x3d,0x9b,0x4e,0x18, +0x35,0x92,0x88,0x6c,0x9f,0x2c,0x63,0x54,0x38,0xf4,0x47,0xb2, +0xef,0x87,0xcb,0xee,0x8a,0x6c,0xb5,0xec,0x03,0xa8,0x00,0x7d, +0xb3,0xdb,0xd3,0x34,0x7a,0xe2,0x9d,0x76,0xe1,0xb2,0x5d,0x96, +0xe8,0x28,0xfc,0x29,0xc1,0xec,0x69,0xa7,0xb3,0x0c,0x3e,0x54, +0xef,0xed,0xde,0x78,0x7b,0x08,0xf7,0xab,0xfe,0xc6,0xbb,0x62, +0x1e,0x06,0x5f,0xda,0x70,0x96,0x3d,0x9c,0x89,0x45,0xe6,0xfb, +0xbd,0xe1,0x0c,0xe2,0x65,0x23,0xae,0xcd,0x50,0xcd,0x21,0xb2, +0x11,0x65,0xa7,0x0d,0x67,0x37,0xd4,0xfb,0x3d,0xe4,0xf4,0x23, +0xfb,0x02,0xa4,0x51,0x51,0x49,0x7f,0x4a,0x42,0x1b,0xa9,0x38, +0x6d,0x86,0x9c,0xb6,0x85,0xf8,0xec,0xe5,0x8c,0xfb,0x94,0x60, +0x7f,0xc1,0x16,0x4a,0x24,0x29,0xb9,0x9c,0xc9,0x18,0x75,0xbb, +0xdc,0x59,0x56,0x9e,0xde,0xc2,0x21,0x27,0xa3,0x11,0xad,0x3f, +0x25,0xd9,0x89,0xe1,0x48,0x6a,0x7c,0x16,0x6e,0x3f,0x74,0xe3, +0xe1,0xbd,0xdc,0x66,0x0a,0x15,0xfd,0xd8,0x48,0x4a,0x19,0x21, +0xdc,0x68,0x85,0x5b,0xf6,0x2c,0xab,0xa2,0xde,0xad,0xe5,0x38, +0x18,0x59,0xfa,0x0f,0x10,0x24,0x7c,0x1a,0xcb,0xd5,0xdc,0xbd, +0x07,0x83,0x58,0x11,0xc4,0x5d,0xea,0x32,0xd9,0x1a,0x9a,0x53, +0x39,0xdb,0x25,0x59,0xe2,0x67,0x1b,0x4e,0x7a,0xc9,0x39,0xf1, +0x33,0x1d,0x53,0xfb,0x66,0x84,0xc2,0x72,0xc2,0x43,0x7e,0x60, +0xff,0x5d,0x2a,0xa8,0x26,0xe5,0xac,0x0b,0xc2,0xd3,0xac,0x49, +0x19,0x2b,0x02,0xb9,0xe7,0xfb,0xc4,0xd1,0x2d,0x35,0x80,0x63, +0x63,0x39,0xec,0x82,0xd0,0xf0,0xa6,0x0b,0xdd,0xf4,0x21,0x71, +0x69,0xc6,0xe4,0xf2,0x0b,0x22,0xe0,0x1d,0x35,0x2a,0xa0,0x86, +0x3d,0x0c,0x2d,0x28,0x73,0x6e,0x83,0x6d,0x24,0xcb,0xfd,0x93, +0x7a,0x8b,0xe7,0x8b,0x52,0xc1,0xb5,0x87,0x8c,0xd2,0x93,0xb8, +0xdb,0x47,0xec,0x9d,0x40,0xb1,0x88,0xbb,0xcd,0x28,0xb8,0xf5, +0x46,0x29,0xcb,0x87,0x30,0xa5,0xcc,0x7e,0x49,0x52,0x56,0x40, +0xd6,0x2e,0x65,0x87,0xc5,0xe7,0x7a,0x06,0x9c,0x8e,0xb1,0x8a, +0xcf,0xda,0xe8,0x51,0x73,0x26,0x40,0xbc,0x25,0x5a,0x9b,0xc0, +0xdd,0x8f,0x30,0x71,0xe5,0x68,0x13,0x8d,0x8a,0x5d,0x2a,0x78, +0xbb,0xd4,0xd1,0xa4,0x51,0xe0,0x9c,0xf2,0x26,0x1d,0x4c,0x42, +0xf7,0xd2,0xbc,0xb8,0x67,0x9d,0x42,0x35,0x3e,0x63,0x45,0x28, +0x09,0x61,0xe1,0x2c,0x3b,0x45,0x0e,0x3e,0x45,0x45,0x7b,0xf2, +0x65,0xc0,0xec,0x83,0x94,0xd6,0x13,0xa9,0x1b,0x43,0x2a,0x68, +0x72,0xdc,0x18,0xce,0xf0,0xd9,0x7b,0x9d,0x17,0x0f,0xe5,0x6e, +0x2b,0x3d,0xb8,0xf3,0xb8,0xae,0xc1,0x42,0x6f,0xac,0x30,0x44, +0x30,0x5d,0xf8,0x59,0xa1,0x8f,0xc2,0x13,0x11,0xd0,0x54,0x3f, +0x21,0xb3,0x5a,0x5b,0x8d,0xf8,0x2e,0xaa,0xb2,0x76,0x13,0x0b, +0xd4,0xd7,0x46,0x8a,0x26,0x8d,0x92,0x36,0x41,0x3d,0x0b,0x84, +0xc5,0x18,0xbf,0x65,0x40,0x29,0x5c,0x9a,0x42,0xf9,0x79,0x26, +0x27,0xa6,0x56,0x78,0x29,0x3b,0x6f,0x51,0x26,0x9a,0x9e,0x50, +0x28,0xad,0x32,0xee,0x9e,0x36,0xe7,0x96,0xfb,0x4c,0x14,0x13, +0xc1,0x85,0x92,0xf3,0xce,0xe7,0x3c,0x35,0x93,0xf3,0xd2,0x33, +0x45,0xa0,0x99,0x11,0x96,0xaf,0x43,0x10,0x34,0xb0,0x50,0x22, +0xde,0x19,0xd2,0x27,0xf6,0x44,0x3c,0x02,0x8b,0x54,0xc9,0x64, +0xae,0x94,0x4c,0xa6,0x41,0x90,0xa9,0x4f,0xc4,0x1c,0xb1,0xf6, +0x95,0xd4,0x3b,0xee,0x56,0x8b,0xe1,0xed,0xe3,0xdc,0xa9,0x18, +0x83,0xfd,0x7a,0x5c,0xf2,0x80,0xe4,0x3e,0x29,0x9f,0x89,0x14, +0xa5,0x4b,0xd2,0xa1,0xc8,0xf4,0x49,0x62,0x51,0xd3,0xa4,0x55, +0x90,0xce,0x43,0x04,0x4b,0x5f,0x45,0xda,0x43,0x11,0x79,0x17, +0x89,0xbc,0x6b,0x85,0x9d,0xf2,0x51,0xce,0xb7,0xf9,0xf9,0x7b, +0x3e,0x99,0x46,0x7a,0x7e,0xfe,0x5e,0x82,0x1a,0xf7,0xff,0xa6, +0xa0,0xe6,0x88,0x95,0xf6,0x0c,0xbf,0x7d,0xa4,0xa8,0xee,0x19, +0xa5,0x89,0xbc,0x43,0xa6,0x31,0x2a,0x12,0x3c,0x91,0xbc,0x43, +0xa4,0xfc,0x40,0x91,0xaf,0xaa,0xcb,0x6a,0xd1,0x46,0x35,0x6d, +0x05,0xac,0xe1,0x4e,0x89,0x4c,0x8c,0xf0,0x6b,0x86,0x43,0x4c, +0xec,0x4f,0x43,0xa4,0xfa,0x4f,0x12,0x53,0x9b,0xe1,0x10,0x13, +0x79,0x89,0x0a,0x34,0xf7,0xa5,0x54,0x8d,0x32,0x54,0x14,0xb7, +0x76,0x90,0x41,0xa8,0xda,0xf2,0xf2,0xd3,0x82,0x33,0x8d,0x35, +0x94,0x9f,0x36,0x5b,0x51,0xfc,0x00,0xf6,0x13,0xec,0x6a,0x7b, +0x1e,0x61,0xce,0x44,0x33,0x8f,0xd0,0x1c,0xaa,0x2d,0x0e,0xb5, +0x1c,0xe6,0xe9,0xf1,0xd3,0x07,0xcc,0x88,0x4d,0x59,0x25,0x62, +0xfd,0x9a,0xcf,0x9d,0x80,0x0a,0xc9,0x3a,0x3d,0x41,0x8c,0x7a, +0x2f,0x69,0x05,0x0c,0xe5,0x4e,0x7f,0xb2,0xb6,0xdc,0x71,0x24, +0xd1,0x48,0xcb,0xcf,0x39,0x84,0xd1,0xcc,0x54,0x7c,0xc5,0x44, +0x71,0x68,0x93,0x97,0x7e,0xf8,0x6a,0x6f,0x5e,0x26,0x62,0x3f, +0x31,0x42,0x7d,0xed,0x12,0x82,0x4a,0xb9,0x09,0x0f,0x89,0x40, +0x25,0x19,0xa3,0x8b,0x2f,0x8c,0x00,0xf8,0x42,0x3b,0xdd,0x4e, +0x17,0xe5,0x31,0xf4,0x28,0xaf,0xb9,0xbd,0x82,0x3e,0x1b,0x9e, +0x91,0x4e,0xbd,0x4d,0xbc,0x56,0x3c,0x6b,0x1f,0xbf,0x20,0x37, +0xb1,0x50,0x27,0xe5,0x26,0x92,0xa6,0x7d,0xa5,0x37,0x3f,0x39, +0xb1,0x50,0xe7,0x6b,0x92,0x13,0x67,0x67,0x0a,0x3f,0xfb,0xaa, +0xe1,0x56,0x6c,0x49,0xcb,0x55,0x4c,0xf8,0x15,0xce,0x4d,0xcc, +0xe9,0x57,0x28,0x37,0x71,0x24,0x15,0xfe,0x0c,0x05,0x8f,0x4c, +0x23,0x0d,0xc1,0xdb,0xa0,0xba,0x46,0x70,0x9f,0x82,0xd4,0xc4, +0x07,0x39,0xf5,0xf3,0x53,0x13,0x09,0xc8,0x9e,0x9a,0x18,0x89, +0x88,0xf4,0x38,0x48,0xbf,0x23,0x2b,0x8b,0x0a,0x25,0x29,0x0e, +0x47,0x65,0x9f,0x97,0xa4,0xd8,0x49,0x15,0xfe,0xb4,0xcb,0xd3, +0xa7,0x0a,0xa3,0x9b,0x92,0xa3,0x39,0x62,0xb3,0xca,0x52,0x14, +0x28,0x47,0x2b,0x1c,0x78,0x40,0xb5,0xff,0xfe,0xb8,0x45,0xa0, +0xfc,0x22,0xbb,0x73,0x3e,0x1c,0x65,0x5f,0x12,0x5c,0x92,0x82, +0x6b,0x57,0x00,0xd7,0x5c,0x16,0xc9,0xf1,0x61,0x5c,0xf7,0x2a, +0x9c,0xb7,0x18,0x44,0xa6,0x86,0xd6,0x2c,0x3f,0x6f,0x31,0x31, +0x53,0x78,0xa8,0xa4,0x58,0x32,0x34,0x38,0x67,0x2f,0x7b,0xc6, +0x62,0xe1,0x25,0xb7,0x67,0x2c,0x22,0xa9,0xc2,0x19,0x8b,0x41, +0x64,0x7a,0x4c,0x5a,0x2a,0x63,0x71,0x0c,0xd4,0x6a,0x29,0x6a, +0xc1,0xe4,0x4b,0xc6,0x6a,0x2b,0x4c,0xef,0xc0,0xfd,0x43,0x98, +0xac,0x00,0xcd,0xb9,0xeb,0x05,0x74,0x44,0xca,0xe3,0x7d,0xee, +0x81,0x33,0x9e,0xac,0xfa,0xeb,0x42,0x38,0xb7,0x3c,0xa1,0xa2, +0x76,0xcb,0x30,0x3a,0x9a,0xd5,0x08,0x1d,0xbb,0xda,0xad,0x45, +0x6d,0x2a,0xfc,0xf9,0x11,0x77,0x38,0x40,0xa2,0xe8,0xb1,0x99, +0x89,0x71,0x7e,0x11,0xa8,0xbd,0xa6,0x41,0x13,0x26,0x66,0x84, +0x27,0xad,0x81,0xa9,0x96,0xb4,0x9e,0x3d,0x3f,0xee,0x15,0x38, +0xb7,0x35,0xdc,0x60,0x2b,0x45,0x70,0xf0,0x73,0xee,0x5c,0x81, +0x71,0x8f,0x7a,0x0c,0xe2,0xf2,0x09,0x8c,0x57,0x04,0xd6,0x2b, +0x02,0xa3,0xfd,0x22,0xe6,0x8c,0x84,0x84,0x5e,0xa9,0x3d,0x52, +0x3e,0x4c,0xf3,0x1f,0x2f,0x12,0xc9,0x17,0x4c,0xe0,0xd6,0x2f, +0x58,0x1b,0xf0,0xe7,0x16,0x20,0xbe,0xbb,0x41,0xad,0x18,0xe4, +0xbb,0xfb,0x25,0xa3,0x27,0xf2,0xdd,0x5d,0x26,0x31,0xb8,0x2e, +0xa3,0xd0,0x3b,0x7e,0xfd,0xbd,0xc7,0x32,0x8a,0xbb,0xb6,0x7a, +0xfd,0x4d,0xe1,0x55,0xd8,0x08,0x91,0x03,0x6d,0xb7,0x41,0xdc, +0xf2,0x03,0x13,0x65,0x61,0x3f,0x39,0xd0,0xd8,0x84,0x47,0x48, +0xc4,0xf9,0xae,0xd9,0x46,0x82,0x79,0xb9,0x91,0x26,0x45,0x0d, +0xea,0x88,0x81,0x48,0x2d,0x0e,0xaa,0x91,0x1b,0xed,0x9c,0xcc, +0x46,0xc3,0x17,0x5c,0x7b,0x87,0x12,0x16,0x5f,0x01,0x41,0x77, +0xa1,0x0c,0xe5,0x69,0x21,0x0c,0xfc,0x0d,0x1a,0xb7,0xfe,0xfd, +0x3a,0xa0,0x41,0x50,0x19,0xbd,0xe6,0xaa,0x4c,0x6e,0x22,0xe7, +0x4e,0x5a,0x51,0xd5,0xf8,0xdc,0xa0,0x17,0xa3,0xe4,0xdd,0x95, +0xa7,0x6e,0x4d,0x5a,0xc5,0x21,0xd5,0x79,0x4c,0xf9,0x72,0xd8, +0x99,0xae,0x3a,0xb7,0xe9,0xad,0x44,0x11,0x2a,0x63,0x94,0xd0, +0x14,0x06,0x5a,0x2b,0xa1,0x5f,0xe9,0x34,0x15,0xfd,0xc2,0xec, +0xa2,0xf4,0x70,0x48,0x89,0x25,0x96,0x4c,0xce,0x53,0x91,0xdc, +0xbd,0x2a,0x3e,0x14,0x2d,0x58,0x8c,0x53,0x8e,0x1b,0xd2,0x18, +0xa5,0x68,0x7c,0xa6,0x68,0x74,0x3d,0x6b,0x74,0x6f,0x0a,0x5d, +0x90,0x46,0x45,0x1e,0x10,0xc4,0x8e,0x28,0xbf,0x8d,0x3b,0x57, +0xa2,0xe3,0xc4,0xcd,0xdc,0x2a,0x6c,0xc6,0x93,0x3f,0x46,0x2d, +0x31,0xdf,0xee,0x7b,0xf5,0xa1,0x62,0xf4,0xca,0xf7,0xea,0x43, +0x25,0x5d,0x4d,0xdf,0xab,0x8f,0x72,0xc3,0x28,0xb9,0xaa,0x0f, +0xbb,0xa9,0x7c,0x2f,0x1c,0x2c,0x4d,0x0d,0xb6,0x95,0xfb,0xce, +0x62,0xed,0xec,0xae,0x56,0x51,0xf6,0x5c,0xb9,0x5a,0xf6,0x42, +0x99,0x56,0xb1,0x5e,0xb1,0xd2,0x51,0x65,0x26,0xc6,0x20,0x2b, +0xe5,0x74,0x59,0xa9,0xad,0x51,0x49,0x5b,0x83,0xda,0x72,0xf0, +0x74,0xfa,0x6c,0x7a,0x95,0xe8,0xeb,0xf7,0xde,0xdc,0x8f,0x60, +0x28,0x2a,0xe7,0x34,0x54,0xce,0xa8,0x31,0x9b,0x27,0x2d,0x47, +0x8d,0x69,0x69,0xc2,0xda,0xe6,0xd8,0x58,0x05,0xd3,0x4f,0x93, +0x8b,0xb3,0x8c,0xc5,0xb4,0x94,0x23,0xb8,0xef,0x6c,0x06,0x29, +0xca,0x41,0x23,0xbe,0xea,0xaa,0x54,0xa9,0x57,0x06,0xec,0xa0, +0xb2,0x14,0xff,0x6f,0x03,0x56,0x55,0xce,0x1d,0x6e,0x0e,0x5f, +0xa8,0x19,0x2d,0x6a,0x42,0x51,0xa8,0xd9,0x1a,0xff,0xd4,0x54, +0x62,0xb6,0x06,0xc5,0x4c,0x67,0x52,0x83,0x88,0x7c,0x31,0x7b, +0x09,0x4c,0x83,0xce,0xe2,0x84,0x02,0xd1,0xa1,0x01,0x49,0x9c, +0x92,0x15,0x17,0xb5,0x3d,0xc2,0xec,0x9b,0xa4,0x8b,0xf8,0x9e, +0xfb,0x47,0xb0,0xb1,0xe0,0x65,0x17,0x08,0x07,0xa8,0xd9,0x56, +0xd4,0x2c,0xab,0xfe,0x07,0x3f,0xb5,0xbb,0xd7,0xf4,0xb4,0x39, +0x31,0xd8,0x2d,0xc3,0x4d,0xb1,0x78,0x23,0xc4,0x71,0x19,0x6e, +0x17,0x8e,0x37,0x81,0x88,0x7a,0x30,0xfe,0xb5,0x22,0x22,0x77, +0xbd,0x8c,0x44,0xac,0x7f,0x45,0x08,0xd1,0xb0,0x1b,0xc5,0xe6, +0x4d,0xb7,0x21,0x03,0x87,0x44,0x51,0x7a,0xe3,0x7d,0x64,0x29, +0x4f,0xbc,0x5e,0x77,0x3f,0x1d,0xca,0x93,0x90,0xe9,0x3f,0x33, +0xf0,0xa7,0x58,0xf5,0x73,0xdc,0x7e,0x1d,0xd8,0x32,0xd4,0x1f, +0x28,0x70,0xdc,0x07,0x85,0x2e,0x1a,0x4a,0x2a,0x11,0xeb,0x40, +0x1f,0xeb,0xbc,0x45,0x22,0x66,0xbc,0x78,0xc3,0x58,0x33,0x65, +0x03,0xfd,0x89,0x31,0xe4,0x07,0x39,0xe4,0x89,0xf1,0xd1,0x49, +0x79,0x1c,0xee,0x87,0x32,0x63,0xc3,0x29,0x4a,0xda,0x44,0xec, +0xdf,0xa8,0x9e,0xd6,0x7a,0x93,0x68,0x04,0x94,0xcb,0x4f,0x91, +0xdc,0x74,0x8e,0xa4,0xd2,0x01,0xaa,0xf1,0xa0,0xa6,0x6c,0x15, +0xec,0xd0,0xe3,0xa6,0xf7,0xc7,0x8d,0xb1,0x5a,0x4c,0x53,0x12, +0x36,0x33,0x0c,0xcd,0xf6,0x9c,0xc8,0xa4,0x95,0x30,0x33,0x67, +0x0b,0xa5,0x73,0x34,0x45,0xa9,0xad,0x81,0x52,0x7b,0x4e,0x93, +0x0e,0x86,0x1b,0x21,0xbd,0x03,0x87,0x75,0x04,0xff,0x27,0x74, +0xe2,0x61,0x93,0x96,0x3f,0xb4,0x80,0x01,0x66,0xba,0x64,0x3a, +0xa1,0x09,0xd0,0xdb,0x8a,0x62,0xa5,0xa0,0x18,0xfe,0x0f,0x7e, +0x67,0x8c,0x84,0x66,0xe8,0x9e,0x95,0xfa,0x4d,0x97,0xe5,0x62, +0x8c,0x72,0xda,0x2a,0xf8,0x4a,0x8f,0x4f,0xee,0x97,0xdc,0x3b, +0x65,0x35,0x46,0xd3,0x44,0x35,0x95,0x3b,0xa5,0x33,0x31,0x8b, +0xc8,0xa6,0x20,0x59,0x31,0x05,0xbe,0x44,0x09,0x47,0x6a,0xa3, +0x14,0xb5,0x7b,0x44,0xad,0x2c,0x14,0x6b,0x87,0xd4,0x9c,0xce, +0x18,0xdd,0x9b,0x81,0x87,0xb5,0xd4,0x15,0xee,0x52,0x87,0x9d, +0x02,0x2f,0x25,0xe6,0x21,0x54,0x5a,0xac,0xbe,0x12,0x73,0x6c, +0xf6,0x95,0xf5,0xb9,0xdf,0x40,0xd5,0x16,0xcb,0x61,0x94,0x12, +0xf4,0x5e,0x74,0xea,0xe8,0x76,0x12,0xf4,0x5e,0xe8,0x8c,0x22, +0x00,0x09,0x7a,0x2f,0x05,0x4b,0x82,0xde,0x8b,0xdd,0x83,0x32, +0x28,0xe8,0x38,0x66,0x9a,0x1a,0xf3,0x85,0x8e,0xa3,0x85,0x99, +0x63,0x7a,0x9f,0x31,0x46,0x36,0x83,0x00,0x6b,0xa9,0x3b,0x34, +0x66,0x57,0x18,0x48,0xd2,0xaf,0x87,0x51,0xda,0xf4,0x72,0xb4, +0x95,0x5c,0x47,0xe6,0x35,0xfb,0xc7,0x42,0x5e,0xb8,0xff,0x29, +0x35,0x12,0x1c,0xad,0xa5,0x2e,0x71,0xa7,0xa2,0x0c,0x16,0xaa, +0xc9,0xf6,0x41,0x47,0xa9,0xbf,0x92,0xc4,0xe1,0x03,0x52,0xfa, +0xa7,0xf6,0x23,0xd7,0x6f,0x74,0xf3,0xe9,0xcb,0x61,0x38,0xb7, +0xee,0x63,0x2b,0x84,0x43,0xf0,0xdb,0x50,0x22,0x2f,0x51,0x72, +0xf1,0x39,0x92,0x7e,0x07,0xa8,0xc0,0x7d,0x6e,0x32,0x98,0x62, +0x7e,0x54,0x84,0xcc,0x56,0x97,0xb5,0x95,0xa5,0x4c,0xa7,0x1f, +0xd1,0x9a,0x28,0x4b,0x89,0xe3,0x39,0x53,0x92,0xe4,0xff,0x3e, +0x5e,0x6d,0x28,0x89,0x92,0x9f,0xfd,0x23,0xe9,0xf3,0xbd,0xb6, +0x54,0xc6,0xfd,0x0f,0xd3,0xaf,0xb1,0x3f,0xe5,0xfe,0xc0,0xb2, +0x3f,0xce,0x4e,0xd2,0x6d,0x5a,0x74,0xb6,0xa6,0xc1,0x7a,0xb8, +0xab,0xff,0x2e,0xb6,0x65,0x40,0x79,0xeb,0x3a,0x11,0x44,0x87, +0x99,0x96,0xb1,0x40,0x2f,0x6d,0xb4,0x28,0xd3,0x28,0x71,0x1d, +0x04,0x59,0xa0,0x5c,0x8c,0xd8,0x56,0x45,0x6a,0xea,0x9b,0x53, +0x78,0x02,0xfa,0x8f,0xcc,0xd6,0x88,0x92,0x24,0x3b,0xe4,0xea, +0xaa,0xe5,0x89,0x2d,0x7f,0x6a,0x41,0x5d,0x58,0x90,0xeb,0xa7, +0x5a,0x1d,0x20,0xcb,0x66,0xa8,0xbb,0x3e,0x78,0x37,0x90,0x5a, +0x11,0x10,0x98,0xcb,0xd5,0xcd,0x2b,0xe0,0x93,0x4b,0xa5,0x46, +0x20,0x53,0x4f,0x7c,0x98,0x93,0xcd,0xa0,0x8e,0xf9,0xed,0x71, +0xb0,0xfe,0x70,0xba,0xd6,0x6b,0xdc,0xb8,0x41,0x7d,0x02,0x5a, +0x1c,0xeb,0xf4,0xe8,0xd1,0xb1,0x03,0xa7,0xb6,0x8f,0xdb,0xd2, +0x6b,0x45,0xd0,0x9c,0x47,0xf6,0x6f,0x8f,0x07,0x71,0x4b,0x65, +0xb6,0x67,0xdb,0x06,0xf3,0xc3,0xe3,0x21,0x5d,0xbb,0xf6,0x8b, +0xa7,0x0f,0x8f,0x4b,0xfb,0xa0,0x8f,0xa8,0xff,0x46,0x93,0xa8, +0x60,0xe5,0x6e,0xef,0x30,0xb1,0xad,0x5a,0x1e,0xc3,0xed,0xe0, +0xb0,0x5c,0xa5,0x56,0x21,0x1e,0x76,0xd9,0x30,0x14,0x70,0xe9, +0xa3,0xea,0x76,0xd9,0x76,0x32,0xee,0xfe,0x15,0x83,0xcb,0xfa, +0x1d,0xb1,0xed,0x28,0x94,0xb3,0xae,0x15,0xfe,0x8d,0xe6,0x8e, +0xa1,0x1f,0xc5,0xfb,0x68,0x63,0x44,0x48,0xa3,0xa4,0xb5,0xe0, +0x6f,0x81,0xb2,0x6d,0xc5,0xb6,0xb7,0xa5,0x46,0x29,0x19,0xf4, +0x21,0xaf,0x77,0x6e,0x07,0x13,0xed,0x67,0xfd,0xf6,0x7f,0x43, +0xab,0x21,0xb5,0x6c,0x3f,0xfa,0x49,0xd7,0x4b,0x8f,0x16,0x5b, +0x8e,0x5b,0x65,0x5f,0x88,0xfa,0x41,0xd5,0xdc,0x84,0x5f,0x31, +0xb8,0x90,0xc3,0xa3,0x8d,0xe1,0xda,0x41,0xb8,0xa9,0x47,0x4c, +0xae,0x9e,0x58,0x3e,0xd9,0xf1,0xa9,0x18,0x9c,0xc1,0xb5,0xc7, +0x2c,0x46,0xf4,0x29,0xa9,0xcd,0xa8,0x5b,0x2b,0xad,0x4e,0xe0, +0xdc,0x96,0xb9,0xb7,0x98,0xec,0x4e,0xe5,0x22,0xcd,0x7a,0x9b, +0x88,0xd9,0xf7,0xdf,0x63,0x9e,0xa1,0x92,0x94,0x66,0xb1,0x4d, +0x44,0xec,0xc7,0xdd,0xe7,0x30,0x38,0x9f,0xbb,0x8b,0x3d,0x16, +0x83,0x54,0x56,0xf6,0x29,0xf4,0xc2,0xb8,0xe3,0x49,0x06,0x45, +0xda,0x88,0xd8,0x30,0x2d,0xa5,0x6e,0xad,0xd4,0x3a,0x81,0x73, +0x5a,0x0d,0x63,0xab,0x61,0x43,0x5e,0xcd,0x4d,0x44,0xec,0xcc, +0x8b,0x5f,0x60,0x70,0xd2,0x44,0x3c,0x0a,0x0e,0xdc,0xfd,0x20, +0x83,0x10,0xee,0x8e,0x41,0xf7,0x5b,0x6d,0xf3,0x10,0x6b,0x07, +0xce,0x89,0x1e,0xc6,0xfe,0x02,0xbf,0xbc,0xd2,0x9c,0x76,0x56, +0x63,0x90,0xd5,0x43,0x70,0x03,0x91,0x9f,0xe2,0xa8,0xc4,0x25, +0x8e,0x55,0xb2,0xd0,0x58,0x70,0x83,0x6a,0x08,0x26,0xa3,0x34, +0x07,0x50,0x7c,0x5e,0x9e,0x6a,0x77,0x52,0xb3,0xa4,0x2c,0xa7, +0x6a,0x77,0x62,0xfb,0x12,0x0c,0xa1,0xda,0x9d,0xd9,0xd9,0xec, +0x04,0x31,0xe6,0x42,0x2d,0x19,0x42,0xf7,0x77,0xa8,0xa6,0x02, +0x2d,0x5c,0xb8,0x13,0xc7,0xee,0xc8,0xb5,0x31,0x54,0xb9,0xb3, +0x7c,0x5e,0xe5,0x4e,0xec,0xeb,0xfa,0xef,0x27,0x82,0xe1,0x4e, +0xff,0xbc,0x02,0x9f,0x6a,0xed,0x5c,0xbd,0xd9,0x4e,0xf8,0xd4, +0xac,0xf0,0x39,0x98,0x2a,0x7c,0x2e,0x37,0x2b,0x7c,0xc6,0xb1, +0x34,0x28,0x9d,0x57,0xe1,0x13,0x21,0x57,0x72,0xdf,0xf9,0x54, +0xe1,0xb3,0x01,0x55,0xf8,0x44,0xe6,0xe0,0x77,0x38,0x69,0x16, +0xf8,0x1c,0x4c,0x05,0x3e,0x1b,0x98,0x05,0x3e,0xe3,0xa8,0xc0, +0x67,0x39,0xce,0xd6,0x51,0x81,0xc5,0x74,0x70,0x11,0xd3,0x9b, +0xca,0xdd,0x67,0x45,0xaa,0x70,0x81,0xf4,0xb3,0xc6,0x19,0x2b, +0xdc,0x8c,0xe6,0x0e,0xab,0x91,0x5e,0xee,0x1d,0x26,0xde,0xe2, +0x25,0x50,0x72,0x1d,0x34,0xdb,0x0f,0x2c,0x77,0x2c,0x83,0x1d, +0x50,0x9f,0x3b,0xf6,0x30,0xab,0x80,0xba,0xe4,0x57,0x01,0x75, +0x31,0xab,0x80,0xc2,0xcd,0x18,0x5d,0xd6,0x6b,0x63,0xd4,0xd3, +0xa0,0x39,0x80,0xfe,0x82,0x7b,0x94,0x62,0xe9,0xa3,0xa0,0xa2, +0x05,0x2c,0xda,0x28,0x51,0x31,0x32,0x71,0x03,0x94,0xb2,0x54, +0x6c,0x2b,0xa2,0xa0,0x98,0x9d,0x5e,0xd2,0xb1,0xec,0x2a,0xec, +0x6d,0xf8,0x40,0x95,0x07,0x75,0xa4,0xf2,0xa0,0x2e,0xf9,0xe5, +0x41,0x5d,0xf2,0xca,0x83,0x86,0x1a,0x29,0x8a,0x9f,0xdb,0xc8, +0xcf,0xbf,0xa0,0x29,0x3e,0x82,0xc4,0xec,0x8b,0x8c,0x97,0xbc, +0xcd,0x9a,0xda,0xdc,0x14,0xfe,0x0d,0x3b,0x5b,0x9f,0xc3,0xd3, +0xf5,0x54,0xd8,0xa5,0xcd,0xd1,0xb2,0xd6,0xf5,0xa2,0x4c,0xe4, +0xbc,0x51,0x50,0xd5,0x24,0x54,0x35,0x72,0xda,0x06,0xd4,0x3d, +0x8a,0x90,0xab,0x96,0x12,0x15,0x99,0xd6,0x9c,0x3b,0x66,0xd0, +0xc7,0x42,0x7b,0xb8,0xf5,0x0a,0xf1,0x16,0x4b,0xbc,0xe5,0xd5, +0x20,0x75,0xc9,0xab,0x41,0x1a,0x6a,0x7c,0xa4,0x78,0xfb,0x85, +0x5b,0x22,0xd8,0x5f,0x48,0xb8,0x8c,0x75,0x83,0x08,0x8e,0x44, +0x45,0x56,0xd6,0x02,0x56,0x54,0x64,0x65,0x89,0xc3,0x60,0x93, +0x70,0x11,0xe2,0xd0,0x86,0xa1,0x4a,0x77,0x58,0x42,0x45,0x47, +0x73,0xb6,0x31,0xa3,0x23,0x77,0x42,0xff,0x37,0x13,0x8a,0xb1, +0x64,0xc7,0xc7,0x22,0xe6,0x30,0x31,0xc6,0x09,0x3f,0xcc,0xc4, +0x0f,0x8b,0x4c,0x5c,0x0f,0xdc,0x52,0xa9,0xbd,0x88,0x2a,0x95, +0x87,0x3e,0xbd,0x25,0xd5,0x27,0xb5,0xfd,0xc8,0x84,0x85,0x35, +0x85,0x4f,0x90,0x9b,0xa9,0x4d,0xe5,0x56,0xc5,0x4d,0x22,0xd7, +0x26,0xd2,0x2b,0xa5,0xdb,0xdc,0x9a,0xc8,0xb8,0x37,0xee,0xbc, +0x6e,0xb2,0x04,0xb7,0x56,0x62,0xbc,0x78,0x0f,0xd6,0xd4,0xac, +0x37,0xea,0x62,0xd6,0x1b,0x85,0x9b,0x3d,0x72,0x12,0xd1,0x0b, +0x97,0xa5,0xa8,0x98,0x29,0xf7,0xde,0xc7,0x06,0xcb,0xa6,0xdc, +0xb9,0x94,0x6a,0x1a,0xd1,0x90,0xa6,0x8a,0x90,0x22,0x8b,0x5d, +0x11,0x4c,0x4c,0xe4,0xec,0xa1,0x79,0x85,0x6b,0xd9,0x81,0x1e, +0x71,0x24,0x9c,0xd3,0xb9,0xeb,0x11,0x96,0x74,0xd8,0xf6,0x01, +0x1b,0x80,0xa8,0x2e,0x6e,0xf9,0xe0,0x30,0x1d,0xa9,0x3a,0x27, +0x60,0x90,0xe0,0xca,0xcc,0x42,0xa2,0xa8,0xfc,0x5d,0xa8,0x00, +0xe7,0x28,0xc5,0x66,0x27,0x84,0x39,0x0e,0x65,0xa8,0x98,0x68, +0x35,0x56,0x30,0x03,0x91,0x28,0x5c,0x70,0x4e,0xc8,0x5a,0x3b, +0x35,0x8f,0xd5,0xf0,0x84,0x5b,0xbb,0x10,0x48,0x02,0x82,0xa8, +0x22,0xa3,0x62,0x2c,0xf2,0x4f,0x85,0x47,0x11,0xa8,0xab,0x5a, +0xbb,0x33,0xb8,0x76,0xd3,0xff,0xfb,0xda,0xa5,0x44,0xbd,0x97, +0xda,0x5c,0x3e,0x60,0x62,0x2c,0x74,0xe1,0x56,0x17,0x7a,0xa4, +0xf1,0xba,0x9d,0x56,0xd3,0x02,0xfa,0xc4,0xdd,0x90,0xff,0x99, +0x2e,0xf7,0x7a,0x4e,0x04,0xdf,0x27,0x82,0x7b,0xce,0x1a,0x46, +0x53,0x98,0x8b,0x04,0x93,0xf2,0xf6,0xef,0x0c,0xb5,0x47,0x7e, +0x27,0x79,0x2a,0xa6,0xe4,0xc9,0x9a,0xcf,0xce,0xcf,0x54,0xcb, +0x77,0xdf,0x7f,0x78,0x98,0x22,0x1e,0xa6,0x67,0x4f,0x24,0x00, +0x92,0x8c,0xd3,0xf9,0x20,0x5b,0x14,0xc8,0x54,0x02,0x59,0x52, +0x87,0x6b,0x8e,0xf8,0xd8,0x9e,0xb0,0xeb,0x90,0x4e,0xa5,0x55, +0xb9,0xf7,0x53,0xf2,0x94,0x83,0xf3,0x6a,0xa8,0xba,0xe4,0xd7, +0x50,0x75,0x31,0x6b,0xa8,0xc2,0xcd,0x0e,0xdc,0x37,0x8b,0xc2, +0xa8,0x7a,0x54,0x42,0x55,0x6d,0x94,0x2e,0x32,0xd0,0x2c,0x9f, +0xfa,0x84,0xc1,0x4e,0xec,0xd7,0xda,0x9b,0x74,0xac,0x9c,0x7d, +0xae,0xaa,0xa4,0x0e,0xeb,0xc3,0x9d,0xce,0xa1,0x5e,0xbf,0xa9, +0x37,0x9c,0x5c,0x31,0x31,0x6c,0xba,0xe3,0x33,0x11,0x97,0xc1, +0x5d,0x2b,0xa2,0xea,0x8f,0x0d,0xd1,0x52,0xde,0xad,0x93,0x56, +0xef,0x3c,0x25,0x88,0x36,0x2e,0xa8,0xa1,0x3a,0xcc,0x48,0xff, +0x17,0x38,0xf7,0x60,0x4e,0x41,0x89,0xd5,0x61,0xc6,0x24,0xb9, +0x17,0x31,0xce,0xf7,0x47,0x45,0x19,0x77,0x0c,0x03,0x43,0x32, +0x15,0xc1,0xca,0x54,0x14,0x45,0xf5,0x5d,0x8a,0x3b,0x56,0x62, +0x87,0x61,0x83,0xbd,0x00,0xeb,0x30,0x03,0x77,0x41,0x16,0xc2, +0x9f,0xea,0xcf,0x9e,0xf0,0x12,0xbd,0x58,0xa8,0x49,0xd5,0x4c, +0x42,0xc5,0x50,0x42,0xa7,0x2a,0xac,0x2e,0x99,0x54,0x85,0xf5, +0x99,0xb8,0xc2,0x3e,0x43,0xed,0x1a,0x8f,0x03,0xfc,0x44,0xa7, +0x82,0x09,0x3a,0x29,0x95,0xbb,0xfb,0xb2,0xd1,0xc2,0x3f,0x9c, +0x7b,0xfc,0xce,0x44,0x9f,0x0a,0x26,0xfa,0xaf,0xf4,0x9e,0xb1, +0x42,0xee,0x42,0x82,0x1f,0x16,0x2f,0xb2,0xe8,0x15,0x63,0x79, +0x38,0x9d,0x7f,0x79,0x11,0x75,0xf4,0x39,0xd6,0x82,0xc6,0x1f, +0x80,0x97,0x0f,0x60,0x93,0xcd,0xa5,0xe0,0x12,0x8d,0x42,0x79, +0xf8,0xa9,0xd0,0x35,0x21,0x9b,0x15,0x5c,0x87,0x1a,0x7d,0xb1, +0xa3,0x2e,0x54,0x28,0x28,0xe0,0x3a,0xcc,0x18,0x6e,0x4e,0xe1, +0x24,0x4e,0x99,0xa6,0x50,0xea,0xa5,0x29,0x8c,0x84,0xfe,0x54, +0xc5,0x15,0xa7,0x70,0x15,0x3e,0x55,0x55,0x5c,0x07,0xb0,0x26, +0xb0,0x10,0x7e,0x64,0xb9,0x8d,0x69,0x80,0x39,0x6a,0xb9,0xbe, +0xef,0xcf,0xee,0xf0,0x12,0xbd,0x59,0x95,0x3c,0xfe,0x53,0xa1, +0xac,0x2a,0xef,0x3a,0x80,0xc9,0x06,0x21,0xb0,0xc4,0xce,0x8c, +0x82,0xdd,0x8b,0x0f,0xa3,0x52,0x62,0xa9,0x64,0xc7,0xdf,0x44, +0x1c,0x5a,0x22,0x74,0xbd,0xbc,0x9a,0xa4,0x8f,0x81,0x40,0x0b, +0x94,0xe4,0xc5,0x67,0x30,0x2a,0xb2,0x1e,0x5b,0x29,0x8f,0x0e, +0xc6,0xfb,0x65,0x54,0x35,0xd8,0x01,0xf4,0x72,0xb1,0x01,0xec, +0xfc,0xcf,0xc3,0xc2,0x62,0x9c,0xda,0x29,0x72,0xf2,0x26,0x65, +0xbb,0x52,0xa1,0x03,0x4d,0x7f,0x2c,0x4a,0x9e,0x80,0x8a,0xa8, +0x17,0xab,0x50,0xee,0x71,0x2d,0xb9,0x95,0x89,0x5a,0x94,0x79, +0x5c,0xc5,0x02,0x15,0x5a,0x8b,0x92,0x65,0x61,0xec,0x2f,0x4c, +0x2e,0x7a,0xac,0x8b,0xb8,0xb2,0x10,0xa7,0x41,0x3f,0x74,0x9b, +0x7b,0x32,0xae,0x15,0x67,0x22,0x13,0xbe,0x23,0xdf,0xd1,0xf9, +0x11,0x13,0x3b,0xe0,0xb4,0xe9,0x3b,0x4e,0xcb,0xf3,0x1d,0xfd, +0xe0,0x37,0xfd,0x0f,0x51,0xf2,0xb8,0xf2,0x1d,0x03,0x1a,0xe1, +0x04,0x42,0x4d,0x3f,0x28,0x94,0x7c,0xc7,0x00,0xf4,0x1d,0xa3, +0x45,0xc9,0x4a,0x30,0x96,0xfc,0xa0,0x45,0x7f,0x20,0xf5,0x4a, +0x48,0x5d,0xd4,0x07,0x6f,0xf4,0x21,0xe7,0x31,0xd0,0x64,0x3b, +0xf2,0x21,0xb1,0xe5,0x86,0x2d,0x7f,0x6a,0x89,0x67,0x30,0x8f, +0x7c,0x48,0x6c,0x5d,0x82,0xb3,0xe4,0x43,0xe2,0x5d,0x4f,0xbc, +0x1b,0x48,0x2d,0xa3,0x0d,0xf8,0x93,0x13,0x89,0x77,0xdb,0x82, +0x77,0xf6,0x10,0x93,0xaf,0xcb,0xdc,0x32,0xc0,0x64,0x76,0x3f, +0x7c,0x43,0x2e,0x9e,0xf3,0x63,0xfa,0x9a,0xf0,0x18,0xb9,0x78, +0xa5,0x7d,0x19,0x5c,0xd7,0xef,0x8b,0x50,0xd3,0x57,0xf3,0x6d, +0x94,0x3e,0x16,0x4d,0x01,0xf4,0xd5,0xc6,0x8a,0xe0,0x46,0x89, +0x6b,0xc1,0x57,0xf9,0x6a,0xa1,0x15,0x61,0x1c,0x55,0x6c,0xd5, +0xe4,0xa2,0xfb,0xc8,0x65,0x45,0xe4,0x32,0x0e,0x8a,0x93,0xaf, +0x87,0xa4,0x20,0x0a,0xfa,0xc0,0x34,0x1a,0xb4,0x12,0x3c,0xb3, +0x4d,0x57,0x7d,0x46,0x0d,0xae,0x75,0xa0,0xae,0xc1,0xe0,0xfe, +0x92,0x77,0x17,0xd8,0x83,0xd1,0xf9,0xbc,0xfd,0x69,0x99,0x12, +0x38,0x77,0x67,0xb6,0x21,0x35,0xb9,0xf3,0x68,0xbc,0xd1,0x9d, +0x41,0xd9,0xe1,0x0c,0x8a,0x2d,0x1b,0x28,0x2a,0x5b,0xb9,0x35, +0x94,0x71,0xc7,0x2f,0x30,0xfc,0xbc,0xa1,0x55,0x43,0x07,0xc1, +0x1a,0x82,0x10,0x0d,0x59,0x1d,0xbd,0xa5,0xa1,0x41,0x91,0x8b, +0xa2,0x88,0xa1,0x9d,0xa4,0x74,0xd2,0x20,0xdc,0x61,0x23,0x18, +0x6a,0x69,0xbf,0x25,0xf6,0x86,0xcf,0xcf,0xcc,0x96,0x86,0x80, +0xad,0x0c,0xad,0x0e,0x6c,0x8a,0x11,0x09,0x15,0x45,0x36,0x5a, +0x33,0xae,0x8d,0x30,0x01,0x72,0xaf,0xb0,0x3a,0xb0,0x31,0x27, +0x9a,0x89,0x0f,0x4f,0x42,0x6e,0xce,0x19,0x06,0x5b,0xaf,0x69, +0x6e,0x2f,0xa1,0xc4,0x57,0x80,0x41,0x50,0x57,0x3e,0x63,0x8f, +0xc4,0x00,0x74,0xaa,0x9f,0xb3,0xab,0xd9,0x65,0x69,0xd3,0xcc, +0x52,0x94,0xb9,0xe7,0x7d,0xc6,0x03,0x7e,0x66,0x86,0x35,0x7c, +0x30,0x86,0xa9,0xad,0x84,0x43,0x73,0xf8,0xce,0x5a,0x92,0xea, +0xf2,0xdc,0xe4,0x4e,0x4b,0x18,0x9c,0xc8,0x59,0xc4,0x06,0xb6, +0x05,0x77,0x70,0xa5,0x8a,0x3e,0xc7,0xb6,0xef,0x5e,0xb7,0xcb, +0xff,0xd3,0xb9,0xea,0xe4,0x5d,0xdf,0x9c,0x4f,0xa9,0x84,0x81, +0x93,0xce,0x1d,0xef,0x21,0x91,0x4b,0x0c,0x67,0xe3,0x7c,0x51, +0x38,0xab,0xd9,0xc4,0xc3,0x61,0x6e,0xe9,0x8e,0x0f,0xea,0x85, +0x5a,0x89,0x2a,0xb0,0x44,0x2e,0x66,0x70,0x93,0x06,0xad,0xcd, +0x2d,0xfb,0xf3,0x6f,0x54,0x85,0x4f,0xc4,0xdf,0x68,0x91,0xee, +0x5a,0xdd,0xf2,0x66,0x54,0x03,0xa6,0x1b,0x3a,0xb2,0x78,0x9b, +0xca,0xbf,0xd5,0x47,0x1e,0x5d,0x96,0xe5,0xaf,0x42,0x44,0x69, +0x5a,0xff,0xd2,0xe7,0x00,0xb7,0xfa,0x19,0x3a,0xb8,0xef,0x0e, +0xca,0xeb,0x70,0x5d,0x0e,0x6d,0x6b,0x0c,0xd5,0xd2,0xa1,0xb6, +0x0e,0x45,0xb5,0xb5,0xc2,0x25,0x1c,0x37,0xa7,0xb7,0x05,0x82, +0x71,0x73,0x7a,0x87,0xe3,0x83,0x77,0xb1,0x84,0xb4,0x33,0xa6, +0x68,0xf0,0x2d,0x2a,0x21,0x97,0x8a,0x4c,0xa2,0xd8,0x94,0x33, +0xfa,0x20,0x5a,0x3b,0x63,0x28,0x77,0x78,0xc8,0xd6,0x21,0xca, +0x3c,0x6e,0xf1,0x64,0x63,0x84,0x1e,0x3e,0x4d,0xc1,0xb7,0x37, +0xe1,0xbf,0xe3,0x2e,0x18,0x87,0xfa,0xed,0x65,0xb0,0x8b,0x7b, +0x39,0xb2,0xdc,0x5f,0x59,0xdf,0x0b,0xc6,0x17,0x8d,0x65,0x7b, +0x2b,0x52,0x68,0x62,0xc3,0x08,0x6d,0x2b,0x67,0xe1,0x0c,0xd0, +0x7e,0x8d,0x1c,0x4f,0x97,0x2b,0x65,0x35,0x36,0x41,0xb6,0xc9, +0xa9,0x6c,0x4f,0x84,0xe3,0xd6,0x43,0x85,0xef,0x72,0xef,0xdf, +0x5e,0xbe,0x6c,0x41,0x34,0x63,0x2f,0x18,0x5b,0x0b,0xd3,0x5c, +0xc9,0x19,0x46,0xa2,0x6e,0x77,0x89,0xcd,0xd1,0xf6,0x8e,0x67, +0x6f,0x00,0x9c,0xf0,0x3a,0xa6,0xb0,0xbf,0xb6,0xc9,0xf6,0x26, +0xce,0x86,0xb1,0x9c,0x0d,0x44,0xa9,0x1b,0xf7,0xd8,0xc2,0xa8, +0xf4,0x19,0xad,0x11,0x0b,0x47,0xe1,0xf0,0x44,0x0d,0x84,0xc2, +0xe1,0x49,0x6b,0xc4,0x2c,0x21,0x1d,0xcd,0x39,0xef,0xe4,0xde, +0x87,0x30,0xf0,0xf1,0x22,0x9c,0xc6,0xb8,0x48,0x1d,0xd4,0xda, +0x96,0xd5,0xd1,0x9f,0x5a,0x2b,0xde,0x8a,0x98,0x37,0x06,0x9c, +0x2c,0x10,0x8a,0x6b,0xeb,0x44,0x6b,0xf5,0x96,0xa5,0x64,0x27, +0xc2,0xfb,0x0e,0x9d,0x64,0x86,0x42,0xe8,0x76,0x0b,0x67,0x37, +0x92,0xfb,0xdc,0x61,0xad,0xe9,0xa7,0x80,0xcf,0xd9,0x04,0x34, +0x49,0x19,0x2c,0x4b,0x6c,0x97,0x3f,0x5a,0xdd,0xb8,0xee,0xce, +0x96,0xcb,0xb6,0xfa,0x15,0x63,0xdc,0x51,0x39,0xee,0x0a,0xa5, +0xaa,0x7d,0x6d,0x4f,0x55,0xcb,0x63,0x12,0x31,0x23,0x20,0xd5, +0xe8,0x4d,0x79,0x92,0x94,0xac,0xe6,0xae,0x53,0x7f,0x04,0xe7, +0x68,0x5a,0xbf,0x83,0x15,0x9c,0x6d,0x60,0x3c,0x68,0x39,0x6b, +0x64,0x74,0xd0,0x65,0x8d,0x0e,0x46,0x0d,0xe4,0xed,0x6d,0xbd, +0x82,0xb6,0x4e,0x38,0x45,0x22,0x6b,0x38,0x25,0x0d,0x59,0xf3, +0x8c,0x9c,0xb6,0x0e,0xd9,0xac,0xda,0xd1,0x88,0xd0,0x70,0xb7, +0x7f,0xc9,0x5d,0x2a,0x30,0xee,0xf9,0x0b,0xed,0xfc,0xcd,0xdc, +0x65,0x18,0xa5,0x68,0x9e,0xa6,0x14,0xcd,0x3f,0xb9,0xf3,0x6c, +0xea,0x5c,0xc7,0xbd,0x2c,0x2c,0xe7,0x30,0xeb,0x93,0x69,0x2c, +0x8b,0x94,0x4d,0xac,0x8d,0x8c,0xf2,0x48,0xbd,0xb3,0xa2,0xce, +0xf5,0x8a,0xda,0xda,0x27,0xcd,0x70,0xbd,0x8a,0x58,0x80,0xe1, +0x7a,0x15,0x69,0x96,0xb8,0xb6,0x8c,0xa5,0x5a,0x17,0x93,0xf6, +0x06,0xce,0x9a,0x10,0xbd,0x5b,0x26,0x3d,0xbd,0x0f,0xfb,0x13, +0xe6,0xeb,0xa2,0xa2,0x31,0x31,0x43,0x1e,0x87,0x29,0x68,0xd4, +0xc7,0xb2,0x0c,0xd9,0x41,0x9f,0x70,0x53,0x0c,0x17,0x1d,0x29, +0x55,0x72,0x4c,0x1d,0x18,0x01,0x65,0x3a,0xdb,0x77,0x48,0x48, +0xa0,0x58,0x24,0x86,0xe8,0xa2,0x0b,0xac,0xcf,0x14,0x77,0x28, +0x55,0x92,0x30,0x76,0x21,0xc6,0xd4,0x9b,0xa2,0xbf,0xe8,0x0c, +0x5b,0xdb,0x89,0xc1,0xb5,0xd0,0x28,0x95,0xb1,0x55,0x65,0xe2, +0x2e,0xb7,0x58,0x18,0x8c,0xa7,0xb7,0x25,0xd5,0x98,0xfc,0xf2, +0xac,0xf1,0x25,0xa5,0xa6,0xc6,0xe8,0x5d,0x44,0xed,0x5e,0x99, +0xc6,0x0a,0x38,0xc0,0x60,0x29,0xf7,0x76,0xa4,0xb9,0x14,0x5c, +0x33,0x55,0x5a,0xf5,0x4b,0x62,0xf0,0x3e,0xd7,0x77,0xb2,0xdd, +0xb2,0xa3,0x3e,0xf9,0xb6,0x18,0x2c,0x3a,0xc1,0xb6,0xf6,0x62, +0x68,0x4d,0x88,0x43,0x65,0x63,0x7d,0x9b,0xfd,0x2a,0xfa,0xec, +0x87,0x3e,0xb7,0xc5,0xd0,0x43,0xf0,0x25,0xdc,0x15,0x07,0x0e, +0x5a,0xdd,0x5e,0xa2,0xe3,0xd5,0x9c,0xe8,0x7c,0x41,0x74,0xee, +0xd1,0x88,0xbd,0x33,0x8d,0xe5,0xf6,0x11,0x6a,0xbd,0x6e,0x49, +0x7d,0x0b,0xd6,0x9c,0x45,0xe0,0x42,0x4c,0x60,0x46,0x31,0xb8, +0x40,0x89,0x8e,0xbc,0x0b,0x13,0xb5,0x69,0xb1,0x09,0x7d,0x39, +0xf7,0x76,0xa2,0x44,0xdb,0x8b,0x67,0x8d,0x8b,0x34,0x9b,0xa1, +0x5c,0x4f,0x63,0xe9,0x90,0xaa,0x1b,0x33,0x1b,0x6a,0x72,0xc1, +0x84,0xf4,0x18,0x63,0xf6,0xe7,0x16,0x4a,0x7b,0xa4,0x44,0x5b, +0xee,0x3d,0x9e,0xdd,0x86,0xd3,0xfa,0x65,0x63,0xf2,0x51,0x39, +0xf9,0x67,0x63,0xe6,0x31,0x79,0x51,0xe5,0x3b,0xee,0xa6,0x7c, +0x47,0x1c,0x23,0x15,0x52,0xe9,0xeb,0x9b,0x51,0xfa,0x06,0xe1, +0xd5,0x68,0xee,0x28,0x32,0x4d,0xf4,0xf5,0x4d,0x40,0xa3,0xa4, +0x0d,0xe0,0xc5,0x1d,0x3f,0xfb,0xc7,0xe8,0xda,0x06,0x2a,0x22, +0x3a,0x8c,0x6b,0x71,0x54,0x9b,0xea,0xe7,0x8b,0xc6,0xcf,0x56, +0x88,0x8b,0xe3,0x3e,0xa7,0x59,0x18,0x7a,0x8b,0xae,0x97,0xd0, +0x99,0xdf,0xc9,0x20,0xce,0xf8,0x8e,0xba,0x0c,0x5c,0x33,0xd1, +0x35,0x2f,0x5d,0x69,0xb0,0xb1,0x02,0xe3,0xde,0x36,0xe8,0x51, +0xa0,0x1a,0x29,0xd0,0x3c,0x25,0x0b,0x69,0x9e,0xb6,0xc2,0x81, +0x51,0x86,0xf4,0x60,0xf2,0x3f,0xe6,0x20,0x4e,0x9c,0x31,0x8e, +0x07,0xa2,0x0a,0x5a,0xa2,0x9f,0x17,0x54,0x45,0x29,0x15,0x6a, +0xe9,0xa2,0xff,0x21,0xe8,0xaf,0xc1,0x16,0x58,0xcf,0x4b,0xf4, +0x60,0x4f,0xc1,0x87,0x25,0x5b,0x7b,0x8f,0x1f,0x17,0xd7,0x3f, +0x20,0xe6,0x78,0xb7,0xa7,0x7f,0x1e,0xff,0x3e,0xe3,0xcb,0xf1, +0x9b,0x7a,0x2f,0x0b,0x9a,0x63,0xad,0x04,0xa5,0xf4,0xf1,0x5a, +0x87,0xbe,0x6b,0x77,0xef,0xfa,0x6a,0xed,0xa1,0xe0,0xe5,0xda, +0xc1,0xaf,0x86,0xf7,0xf8,0xb0,0xef,0xf0,0x8e,0xc1,0x6e,0xdc, +0xb9,0x0a,0x0a,0x97,0x23,0x77,0x4d,0xa1,0xd3,0x79,0xe3,0xc6, +0x64,0x9f,0x66,0xc3,0x64,0x2d,0xee,0xd2,0x39,0xff,0xb2,0x27, +0x5d,0x06,0xe4,0x5f,0x1a,0x91,0x90,0xc4,0x9d,0x8f,0xb3,0xec, +0x58,0xaa,0x1d,0xfa,0x3d,0xf7,0xbe,0x45,0xcd,0x5e,0xb2,0x36, +0x77,0x71,0xa1,0x16,0x81,0xfb,0x04,0xa9,0x04,0xae,0x38,0x63, +0x3a,0x22,0x88,0xb5,0x10,0xa1,0x8b,0xde,0x07,0xae,0xd1,0x19, +0xd6,0x93,0x7f,0xa5,0x5c,0x4d,0xd8,0xdc,0x56,0xf4,0xaf,0x41, +0x27,0xd5,0x87,0xb0,0x2d,0xda,0x9f,0x17,0xe6,0x2e,0xce,0x08, +0x9e,0x72,0xd4,0x32,0xa9,0xc3,0xbb,0xd3,0x2b,0x07,0x1a,0x7f, +0x89,0xe2,0xb9,0xe3,0xd9,0xdd,0x64,0x6b,0xec,0xf8,0xf1,0xf1, +0xfd,0x02,0x62,0x8e,0x76,0xbb,0xff,0xe0,0x28,0x4e,0x66,0xc2, +0xc6,0xd8,0xe5,0x38,0x99,0x6a,0x38,0x99,0x89,0x5a,0x97,0x81, +0x6b,0x77,0xed,0xfe,0x62,0xed,0xbe,0xe0,0x25,0xda,0xbe,0x2f, +0x86,0x7f,0xd8,0x63,0xe0,0xf0,0x2e,0x38,0x19,0x7d,0x0e,0x19, +0xf6,0xa9,0x36,0x4f,0x46,0xf3,0x32,0xa2,0x60,0xab,0x2d,0x1b, +0xdd,0xb2,0x1d,0x4c,0x7c,0x81,0xac,0xba,0xb8,0x63,0x64,0xbd, +0x86,0x0a,0x8e,0x56,0xc9,0x5e,0xad,0xba,0x23,0xa1,0x22,0x77, +0x4d,0x25,0xb6,0xe7,0xca,0x1a,0xdc,0x35,0x50,0x75,0xd6,0x85, +0x01,0xaa,0x58,0xf1,0x1a,0x74,0x7a,0xab,0x73,0xe7,0x1d,0xa6, +0xd1,0x2e,0xcf,0x5d,0x7d,0x99,0x81,0xbe,0x65,0x2c,0x2f,0xf1, +0x09,0xbb,0x09,0x65,0xb9,0x73,0x9c,0x69,0xb5,0xc3,0xb8,0x65, +0xbc,0xb2,0xce,0xf5,0xb8,0x65,0xa0,0x32,0xb2,0x61,0xdc,0x37, +0xdb,0xde,0xf0,0x79,0x44,0x86,0xa8,0xae,0xde,0x5a,0x8c,0xa8, +0x05,0xde,0x31,0xa2,0x5f,0x05,0xe8,0x0d,0x75,0xb9,0xb5,0x1b, +0x1a,0xd7,0xde,0x62,0x20,0x2f,0xde,0x8c,0x52,0xc0,0x57,0xd3, +0x4f,0xd6,0x1e,0xef,0x49,0x27,0xf1,0xb5,0xe1,0xd4,0x5c,0x83, +0x33,0x0e,0xf4,0x13,0xb6,0xca,0x2e,0x20,0x2a,0x75,0x99,0x18, +0x5d,0x53,0x55,0xee,0xac,0x08,0x13,0x08,0xfb,0x2c,0x62,0x4f, +0x10,0x03,0xb8,0x96,0x92,0x37,0xcc,0xe3,0xbc,0x61,0x46,0xd7, +0x22,0xc0,0x97,0x4c,0xf8,0xc0,0x7a,0x37,0xc4,0x88,0xda,0xdc, +0x63,0x34,0xbb,0x9e,0xed,0x4b,0x89,0xfc,0xb3,0xf2,0x80,0xc7, +0xd7,0x82,0xd2,0x31,0xa2,0x2f,0xf1,0x54,0xc7,0x7a,0x84,0x25, +0x3e,0x14,0xbd,0xc4,0xc0,0x56,0x37,0x44,0x5c,0x7d,0x79,0x80, +0x5d,0xa6,0x6a,0x9d,0xe7,0x6c,0x15,0xc9,0x55,0x49,0xb4,0x75, +0x65,0xd0,0x5c,0x47,0x15,0xb2,0x4e,0xf8,0xd3,0x6f,0x80,0x25, +0xcd,0xdf,0x00,0x4b,0x92,0x1f,0xe7,0x4f,0xbf,0x01,0x66,0xfb, +0x69,0x37,0xa1,0x14,0x67,0x6b,0xd1,0xae,0x5f,0xa6,0x7a,0x9d, +0x0e,0xe7,0x84,0x83,0x98,0x02,0x0e,0x59,0xf8,0x27,0x4e,0x99, +0xf7,0xfb,0xdc,0x32,0xc3,0xb4,0xe2,0x61,0xb9,0x7f,0xb3,0x8a, +0xe0,0x44,0xf6,0xdd,0xe9,0xbe,0x16,0x51,0x51,0x87,0x11,0xf7, +0xa9,0x1a,0xa7,0xf2,0x2f,0x2c,0xcb,0x0a,0x80,0x2a,0x95,0x44, +0x53,0xcf,0x4b,0xa4,0xb2,0xbc,0x75,0x18,0x59,0xbd,0x32,0x5a, +0x7a,0xee,0x8e,0xb6,0x0e,0x0d,0x7d,0x3d,0xee,0x52,0x2e,0x6f, +0x2e,0xb1,0x50,0xec,0xf4,0x48,0xb1,0xea,0xf3,0xd3,0xa2,0x98, +0xad,0x35,0xa3,0xac,0xd4,0x05,0xe7,0xa9,0x7e,0x66,0xba,0x72, +0x49,0x27,0xa2,0x4b,0xda,0x8a,0xf3,0xcf,0xd0,0xdf,0x7a,0x9b, +0xbb,0x56,0x55,0x4f,0xb2,0x7f,0x4e,0x0f,0xf6,0x0e,0x77,0xa6, +0x82,0x03,0x47,0x59,0x0d,0x6e,0x49,0x51,0xbe,0x2b,0xcd,0x34, +0xda,0x9c,0xe9,0xeb,0x7f,0xed,0x94,0xdf,0xb0,0x9a,0xba,0x3a, +0xf2,0xc7,0x1f,0xbd,0x2f,0x5f,0x56,0x9b,0x92,0x39,0x99,0xec, +0x8c,0xae,0x6a,0xde,0x95,0x27,0x5e,0xf9,0xe7,0x5d,0x41,0x5d, +0x58,0x8c,0x2e,0x6b,0xde,0x3d,0x1f,0xbc,0x17,0x98,0x77,0x15, +0x01,0x41,0xe8,0xaf,0xe6,0x01,0x5e,0x01,0x7f,0xf2,0x59,0x91, +0x1b,0x35,0x40,0x3b,0x38,0x2a,0x57,0x15,0xe2,0x94,0xcd,0x20, +0x06,0xa7,0x10,0x83,0xbd,0x70,0xc3,0x68,0xdc,0xad,0x26,0x23, +0x66,0xb8,0x6f,0x79,0x22,0x51,0x8b,0x5b,0x0e,0xe0,0xe2,0x37, +0x55,0xc7,0xfb,0xe8,0xc6,0xec,0xb7,0xb9,0xfb,0x1e,0x06,0xce, +0xe7,0xc4,0x2f,0xa4,0x02,0xed,0x63,0x48,0x01,0x06,0xf9,0xa8, +0x08,0x56,0x06,0xca,0x43,0x14,0xeb,0xa6,0x37,0x48,0x1f,0x09, +0xef,0x50,0xda,0xef,0x48,0xf1,0x4e,0x83,0x44,0xee,0x58,0x31, +0x8f,0x1f,0xb9,0x1b,0xbc,0x0b,0x3b,0xaf,0x14,0x60,0x8e,0x45, +0x17,0x68,0x54,0x34,0x77,0x8d,0x65,0x31,0xc6,0x74,0xed,0xa7, +0x88,0xdc,0xc7,0x14,0x4e,0xbe,0x57,0x10,0x4e,0x8e,0x35,0xd2, +0xff,0x01,0x71,0x0f,0x16,0x15,0x04,0x8f,0x63,0x8d,0x49,0x3c, +0xf0,0x77,0xd6,0x5c,0xef,0xc9,0xa6,0xc2,0xe0,0xdc,0x87,0x18, +0x28,0x6e,0xb3,0x07,0x8a,0x63,0x31,0x50,0x0c,0xbc,0xc7,0x9a, +0xd6,0x67,0xf6,0xa3,0x39,0x3a,0x30,0x18,0x63,0xcc,0xe1,0x56, +0x67,0x16,0x99,0x4b,0xbf,0x51,0x42,0x8e,0x19,0x1e,0x8e,0x8d, +0xcf,0xf5,0x60,0x31,0xf5,0x29,0x00,0xac,0x6a,0x06,0x80,0xf9, +0x3d,0xa1,0xb2,0x8a,0x19,0x03,0xe6,0xf5,0x5c,0x84,0x51,0x66, +0x18,0x38,0xd6,0x18,0x60,0xf6,0x3c,0x80,0x2f,0xcd,0x48,0x30, +0xbf,0x07,0x83,0xc1,0x2a,0x66,0x30,0x58,0xd0,0x45,0x84,0xcc, +0x78,0x70,0x8c,0xd1,0xd7,0xec,0xab,0x0b,0x55,0x0b,0x42,0xc2, +0xb1,0xa8,0xc0,0x91,0xd9,0x28,0x7d,0x64,0xee,0x21,0x8a,0x00, +0xe3,0x30,0x02,0x2c,0xe0,0x37,0x9c,0x3b,0x1e,0xc2,0x60,0x70, +0x1e,0x05,0x83,0x2e,0x0f,0x30,0x18,0x5c,0x61,0x0f,0x06,0xc7, +0x1a,0x73,0x90,0x58,0x9b,0xfa,0x68,0x72,0x2a,0x51,0xf0,0x87, +0x37,0x65,0x03,0xd0,0xcc,0xe8,0xcf,0x1c,0x3d,0xba,0x3e,0x45, +0x74,0x15,0x29,0xa2,0xa3,0xbb,0x51,0xd0,0xd4,0x1e,0xd1,0xe5, +0xe3,0xa2,0x79,0xac,0x4a,0x07,0x7d,0x38,0x95,0x67,0x9a,0xcd, +0x13,0xfd,0x69,0x23,0xe1,0x84,0x4c,0xd0,0xc6,0xfd,0x3f,0xd6, +0xde,0x03,0xac,0xaa,0x6b,0x59,0x00,0x4e,0xe1,0xec,0xad,0x4b, +0xc5,0xba,0x11,0x0e,0xcb,0x73,0xb0,0xc5,0x6e,0x62,0xd7,0xc4, +0x96,0x60,0x01,0x54,0x50,0xaa,0x02,0x52,0xac,0x80,0x1d,0x01, +0x15,0x2b,0x28,0x76,0x8d,0x0a,0xf6,0x8a,0x05,0x45,0x9a,0x8d, +0x2a,0xd2,0x55,0xec,0x0a,0x96,0xc4,0x12,0x4b,0xa2,0xc6,0x24, +0x37,0xcd,0xe4,0xce,0xc6,0xd9,0xf8,0xfe,0x59,0xfb,0x60,0x62, +0xee,0xcb,0x7d,0xef,0xbe,0xff,0xff,0xbf,0xcf,0x4f,0xd6,0x5e, +0x65,0x66,0xd6,0xac,0x99,0x59,0x33,0xb3,0xd6,0xd9,0x5b,0x13, +0x57,0xf2,0xf7,0x30,0xf7,0x95,0x76,0xc9,0xb0,0xe8,0xd3,0x4d, +0xb3,0x71,0xd5,0xd8,0x55,0xfe,0x2b,0xfd,0x56,0xdb,0xcd,0xa9, +0xb9,0xa6,0x68,0x58,0x1d,0x14,0xb8,0x26,0xc8,0x1e,0x7e,0xd5, +0x66,0x28,0x37,0xe1,0x4b,0xcc,0x18,0x0e,0x93,0x24,0xa8,0xa4, +0x7d,0x45,0x5c,0xda,0x4a,0x1b,0x0e,0x13,0xf5,0x8f,0x90,0x27, +0x7e,0x21,0x61,0xa4,0x1a,0xc6,0x6b,0xaf,0x62,0x78,0x52,0x09, +0x5a,0x3e,0x7a,0xb9,0xfb,0x4a,0x82,0x68,0xfb,0x77,0x20,0x79, +0xf3,0x7c,0x71,0x05,0x4c,0x3f,0x70,0x27,0xd6,0xac,0xbb,0x23, +0x86,0x8e,0xd6,0x87,0xa6,0xf0,0xda,0x0b,0xc5,0x41,0xee,0x67, +0xe2,0x94,0xdd,0x7f,0x95,0x9f,0x65,0xd8,0x0a,0xc7,0x9a,0xa3, +0x76,0x41,0x09,0x6f,0x60,0xc5,0x1e,0x8b,0x53,0x76,0x1a,0x3a, +0x53,0x1f,0x3a,0x80,0xdb,0xb5,0x60,0x7d,0x2d,0xc7,0xe7,0xda, +0x65,0x86,0x91,0x63,0xab,0x3b,0x32,0x7c,0xa9,0x1f,0x99,0xff, +0xf1,0xac,0xbd,0x6f,0x39,0x26,0xff,0xa3,0xe2,0x9f,0xff,0xe6, +0x64,0xbc,0xe6,0xb2,0x67,0xa4,0xda,0x95,0x3a,0x41,0x63,0xfd, +0x88,0xfc,0x2f,0x75,0xda,0x7b,0x96,0xb3,0xf2,0xbf,0x56,0xbe, +0xaf,0x1f,0x9a,0x8b,0x6b,0xa7,0x91,0xea,0x47,0x54,0x31,0x5a, +0x3f,0x2b,0xa7,0x0d,0x7c,0x19,0xd1,0x18,0xa1,0x7a,0x08,0x1a, +0xd1,0x13,0x67,0x2a,0x38,0x02,0xea,0x38,0x61,0xb9,0x03,0x83, +0x44,0x40,0x27,0x09,0x6e,0xe3,0x10,0x65,0xc9,0xd6,0x45,0x6b, +0x17,0x2e,0x8e,0x89,0xb5,0x5d,0xb1,0xde,0xb0,0x27,0x3b,0x21, +0xf7,0xbc,0x31,0x75,0xe8,0x74,0x19,0xd9,0x24,0x77,0x6c,0x80, +0x8d,0x4d,0x05,0x01,0xe5,0x97,0xb2,0xf2,0x0f,0x9f,0xb6,0xdb, +0xb8,0x21,0x7e,0xf5,0xc6,0x65,0x60,0xc4,0xb6,0xbc,0x41,0x3c, +0x11,0x07,0x23,0xc4,0x49,0x5e,0x3a,0x0b,0xb6,0x1c,0xc7,0x13, +0x19,0xab,0x75,0x8a,0xfc,0x05,0x03,0x56,0xd5,0x9c,0xc4,0xa7, +0x8b,0xd3,0x09,0xfd,0x24,0xfe,0xaf,0xed,0x8b,0xf4,0x43,0xf8, +0x57,0x06,0x75,0x87,0x82,0x66,0xf8,0x7c,0x80,0x76,0xe6,0x0e, +0xc4,0x82,0x59,0xd2,0x46,0x42,0x2e,0x6f,0xb2,0x97,0x55,0x45, +0xab,0x7b,0x15,0x58,0x3d,0x40,0x4b,0xbd,0x03,0x51,0xe2,0x82, +0x27,0x35,0xcc,0xe1,0x8d,0x66,0xb1,0x57,0xcb,0x18,0x15,0x67, +0xf0,0x46,0x3d,0x19,0x6f,0x91,0x2f,0xca,0x21,0xbc,0x51,0x6b, +0xa6,0xb6,0x10,0xc5,0x83,0xaf,0x77,0x91,0xe7,0xb7,0x9f,0x4b, +0x3b,0x58,0xf5,0x12,0x51,0x31,0x81,0x37,0xf2,0xf8,0x73,0x08, +0x05,0x0c,0xf2,0x50,0x51,0x0e,0xa6,0x7e,0xe4,0x0f,0x6d,0xe1, +0xf5,0x6a,0xbf,0x69,0xad,0xde,0xc0,0xf6,0x61,0x0e,0xaf,0xcd, +0xc5,0x4b,0x87,0xfa,0x93,0x8d,0xe9,0x61,0xb9,0x25,0xd6,0x63, +0xc0,0xd2,0x64,0xec,0xf4,0x8a,0xdc,0x86,0x70,0x71,0x9f,0x26, +0x1e,0x6d,0x20,0x6e,0xa0,0x96,0x7c,0x9b,0x36,0x34,0x1b,0x5c, +0x7a,0x5b,0x2d,0x92,0xb5,0x8f,0xc2,0xaa,0xea,0xb3,0x7c,0xcc, +0x51,0xce,0x85,0x67,0xfb,0x1e,0x30,0x6d,0x80,0x77,0xca,0x35, +0x57,0x57,0xb0,0x5e,0x2e,0xfb,0xce,0x0e,0x0f,0x1c,0x69,0xec, +0x7c,0x67,0xc4,0xcb,0x97,0x77,0x2e,0x7c,0x6b,0xc2,0xac,0x8d, +0xca,0x1e,0xf9,0x6a,0x7e,0x6a,0x79,0xf9,0x99,0x30,0x27,0xd3, +0x5c,0xd9,0x79,0x4c,0x98,0xab,0xab,0x6f,0xea,0x15,0x53,0x21, +0x66,0xbe,0xea,0xc5,0xd4,0x9f,0x45,0x4e,0xd8,0x06,0xa3,0x6f, +0xab,0x29,0x03,0x71,0x39,0xa1,0x9a,0x3b,0x50,0xdb,0x7c,0x5b, +0xc2,0xf1,0xe4,0x9a,0xd4,0x67,0x88,0xd8,0x45,0x01,0xeb,0x38, +0xc9,0x37,0x22,0x3c,0xd8,0xdd,0xf8,0xd1,0x9d,0x91,0x04,0xf6, +0xdc,0xb3,0xb2,0xf0,0x4c,0xdf,0xfd,0xa6,0x8d,0xf0,0xce,0x79, +0xcd,0x55,0x86,0xe7,0xe8,0xcc,0x15,0x3b,0x01,0x2a,0x4c,0x80, +0x9a,0x73,0x5b,0xdd,0x3f,0x10,0x97,0x10,0xa8,0xf0,0x81,0xda, +0x7a,0x1d,0x54,0x2c,0x50,0x74,0x96,0x1d,0x0f,0x39,0x4c,0x2d, +0xd5,0x9a,0x69,0x3b,0x45,0xdf,0x68,0xd1,0x77,0xd2,0x6d,0x35, +0x66,0x20,0xce,0xa2,0xbe,0xe3,0x07,0x6a,0x61,0x7a,0xdf,0x20, +0x6e,0xff,0x9d,0xe8,0xac,0xec,0x94,0xcb,0xcf,0x24,0x97,0x5f, +0x38,0x33,0xcd,0xd5,0x34,0x5f,0x76,0x1d,0x33,0x7d,0x84,0xeb, +0x98,0x23,0xe5,0x26,0xb5,0x29,0x2e,0xe7,0xd2,0xc5,0x1a,0xde, +0x0c,0xa2,0x20,0x1d,0xeb,0x33,0x62,0x48,0x64,0x75,0x4b,0xf1, +0x6e,0x77,0x43,0xc5,0xdf,0xb7,0x48,0xdc,0x90,0xf5,0xb7,0x2d, +0xea,0x43,0x6e,0xd0,0xe9,0x99,0xab,0x50,0xe5,0x40,0x6a,0x15, +0x44,0x4c,0x14,0x2d,0x4f,0xc9,0x78,0x7e,0xfe,0xb7,0x4d,0x20, +0x6b,0x1b,0xb5,0xcd,0x7f,0xdf,0x24,0x69,0x1b,0xb9,0x21,0xef, +0xef,0x21,0xf6,0xc0,0x0d,0x9a,0x38,0x40,0xa3,0x3d,0xeb,0x39, +0x97,0x5a,0x59,0x4a,0xce,0xdc,0x50,0x40,0x6e,0xfc,0x6f,0xa4, +0xe5,0xd2,0x6f,0x7a,0xd5,0x4d,0x2e,0x39,0x89,0xbb,0x9b,0x17, +0xf5,0xbb,0x9b,0x0e,0x03,0xb5,0x33,0xb7,0xa1,0x73,0x4f,0x72, +0xdc,0x64,0x3c,0x0b,0xce,0x42,0x56,0xef,0x30,0x2d,0xf5,0x36, +0xb4,0xa3,0x3a,0x45,0xd4,0x0d,0x12,0x62,0xaa,0x76,0x60,0x54, +0x1c,0x2c,0xc4,0x54,0x75,0xd7,0x2f,0x38,0xd6,0xe7,0xf5,0xdb, +0x31,0xe8,0x23,0x84,0x95,0x37,0xc9,0x62,0xc0,0xb0,0x54,0x5c, +0xf0,0xfc,0x5c,0x5c,0xf0,0xb4,0x12,0x9d,0x7b,0x93,0x50,0x96, +0x6b,0x07,0xb8,0x34,0xf0,0xad,0x8a,0x1a,0x69,0xfe,0xb3,0x42, +0xdd,0x82,0xdf,0xf0,0x7a,0x2d,0xde,0xd4,0xf0,0x46,0x1d,0xfe, +0x2c,0x1e,0xfd,0xb3,0xe8,0xf1,0xf6,0x90,0xf7,0x70,0x8f,0x26, +0x5e,0xa5,0xc0,0xa5,0xf7,0xfe,0x24,0x8c,0xc4,0x6d,0x2e,0xd3, +0x72,0x69,0x32,0xdd,0x45,0xcd,0x50,0xde,0xa8,0xcd,0x9b,0x46, +0xd2,0x05,0xb8,0xa5,0x99,0x95,0xf9,0x8b,0x96,0xaf,0x4b,0x4a, +0xdd,0x92,0xbe,0x36,0xd3,0x0e,0xd6,0x5f,0xd4,0xee,0x0f,0x87, +0xad,0x52,0xdc,0x27,0xae,0x3e,0x18,0xf1,0xf1,0x31,0x77,0x5b, +0xb0,0x2d,0x78,0x70,0xea,0xf4,0xa9,0x9d,0xf1,0x3b,0x56,0xef, +0x58,0x06,0xbb,0xd1,0xc6,0xf6,0x78,0x19,0x6e,0x02,0x32,0xf3, +0x97,0x48,0xcf,0x82,0xde,0x60,0x7f,0xa3,0x67,0x7f,0xc2,0x4e, +0xc3,0x5c,0x45,0x9d,0xde,0x45,0xd2,0xe6,0xce,0x89,0x1f,0xae, +0xce,0x3c,0x64,0xc0,0x3a,0xb7,0xe0,0x81,0xb8,0xca,0x29,0x58, +0xb5,0xe8,0x36,0x34,0xd6,0x59,0x45,0xae,0xd5,0x0f,0x0c,0xde, +0xd5,0x06,0x29,0xea,0xc4,0x0b,0xda,0xc4,0xa7,0x6a,0xf8,0x05, +0xad,0x00,0xaf,0xf3,0x5a,0xce,0x6f,0xc1,0xfa,0x5f,0x74,0x56, +0x1c,0x4f,0x63,0x5b,0xe4,0x60,0x74,0xd4,0xd2,0x2b,0xa1,0x15, +0x70,0xec,0x54,0xc9,0xed,0xdf,0x61,0xf0,0xe1,0x49,0x85,0x4c, +0x2e,0xc7,0x96,0xb2,0xf6,0x65,0xa8,0xae,0x95,0x69,0xa4,0x95, +0xa1,0x42,0x2b,0x9d,0x2c,0x5a,0x79,0xd5,0x74,0x99,0xbc,0xf0, +0x5a,0xcf,0x6b,0xa0,0xb4,0x21,0x28,0x76,0x8e,0x5a,0x72,0xa5, +0x3e,0xac,0x63,0xe5,0xff,0x49,0xf3,0xe1,0xc3,0x53,0xe2,0x86, +0x28,0x17,0x37,0x44,0xbf,0x0c,0xf9,0x9f,0x8d,0xc0,0x3f,0xd4, +0xba,0x0a,0xf5,0x6c,0x51,0xa9,0xa6,0x38,0x62,0x73,0xc2,0xda, +0xd8,0x51,0xdb,0x5c,0x29,0x61,0xd0,0x7f,0x6c,0x04,0xaa,0xdc, +0x96,0x88,0x9b,0x7f,0x1c,0xec,0x65,0xf2,0x26,0xfa,0xeb,0xf6, +0xe0,0x1f,0x70,0x5d,0x40,0x0d,0xab,0xac,0xfa,0xd0,0x11,0xfb, +0x52,0x5b,0x67,0xc7,0xea,0xda,0x3a,0xd4,0x1f,0xb9,0x55,0x14, +0x09,0xa3,0x72,0x21,0x3c,0xd7,0xf7,0x90,0x98,0xc3,0x05,0xcd, +0x75,0x04,0xd4,0x5f,0x2e,0x8f,0x09,0x0f,0xf7,0x1f,0x61,0x6c, +0x7b,0xc7,0x85,0x30,0x5c,0xfe,0xd1,0x04,0xd9,0x30,0x54,0xc1, +0x8f,0x69,0xe8,0xc7,0xb2,0x36,0x0a,0x1d,0xb9,0xfd,0x7a,0x41, +0x6c,0x13,0x01,0xb6,0x79,0xa5,0xba,0x9f,0x9c,0x43,0x6a,0x6b, +0xe0,0xa8,0xad,0xd7,0xc1,0x0a,0x33,0x43,0x43,0xfa,0x89,0x4b, +0x80,0x1c,0x6c,0x64,0xcd,0x1d,0x7b,0xbc,0x65,0x73,0xfe,0xa1, +0x36,0x13,0x03,0x6b,0x57,0xaa,0x31,0x8e,0x68,0xa4,0x1e,0x75, +0x1d,0xb5,0x50,0x7d,0x60,0xa0,0xb0,0x39,0x34,0xf2,0x63,0xad, +0x8c,0xd1,0xa0,0xae,0xff,0x8b,0xed,0xe1,0x0d,0x63,0x19,0x7e, +0x50,0xa9,0xe6,0x38,0xf2,0xfa,0xe5,0x4c,0x00,0xd8,0x00,0x71, +0x62,0xfc,0x60,0x45,0x27,0xc8,0x24,0x88,0x1d,0xf0,0x6a,0x06, +0x83,0x01,0xbc,0xde,0x24,0x81,0xb8,0xb9,0x40,0xdc,0xa8,0x52, +0x5d,0xee,0xa8,0x93,0x56,0x8b,0x1b,0xbd,0x18,0xf4,0xb4,0x60, +0xeb,0xcc,0xad,0x9d,0x19,0xf4,0xd0,0xd6,0x71,0xb9,0x13,0xe3, +0x2c,0xad,0xc6,0x8c,0xe9,0x25,0xdd,0x6c,0x89,0x92,0xc5,0x4c, +0x61,0x03,0xfa,0x27,0xc8,0xe7,0x56,0x47,0x05,0x5e,0x2e,0xf5, +0x17,0x68,0x75,0x40,0x1e,0xd8,0x59,0x5b,0xfa,0xc6,0x68,0xfd, +0xef,0x1d,0x6b,0x4c,0xd8,0x7f,0xd0,0xb1,0xc6,0xa0,0xfd,0x07, +0xb8,0x2d,0xe6,0x4d,0x97,0x5d,0xc1,0x18,0x30,0xd1,0xa4,0x05, +0x9b,0x48,0x6a,0xa7,0x08,0x06,0x7d,0x78,0x42,0xd1,0xeb,0x88, +0x3f,0x5f,0x86,0x29,0xbc,0x41,0x30,0x9b,0x47,0xa2,0x38,0x85, +0x44,0x31,0xe5,0x8a,0x89,0x4c,0x8c,0x99,0xf1,0xc6,0xaf,0x98, +0xfa,0x05,0xaf,0x7b,0x9d,0xec,0xa0,0x7f,0x8d,0x91,0x24,0x39, +0xaa,0x16,0xec,0x1b,0x51,0xa9,0x3e,0x75,0x7c,0xa3,0x59,0xc9, +0xfa,0xba,0xad,0xd7,0xe5,0xa8,0x50,0x29,0x0f,0xcf,0xf1,0x3d, +0x68,0xda,0xc8,0x1b,0x31,0xa6,0xcb,0xd0,0x58,0x57,0x63,0xbb, +0x3b,0xc3,0x48,0x86,0x2e,0xfd,0x43,0xc8,0xd0,0x68,0x05,0x5b, +0xd2,0xb0,0x96,0x62,0x59,0x3c,0xb8,0xcd,0x00,0xcb,0x02,0x76, +0x26,0x7d,0x72,0xc4,0x0f,0xa8,0xc1,0xd6,0x51,0xdb,0xa2,0xc3, +0x5b,0xf6,0xf7,0xcb,0xa8,0x12,0x35,0x31,0x16,0x8a,0x74,0x63, +0x2d,0x58,0xd1,0xaa,0x52,0xdd,0xec,0x88,0x4d,0xa8,0x9b,0xe4, +0xa8,0x4d,0xd0,0x47,0xfb,0xbf,0xb2,0xfe,0x57,0xde,0x2d,0xc2, +0x15,0x5a,0x94,0x3e,0x2b,0xdd,0xb8,0x8b,0x81,0x8a,0x2e,0x05, +0xfa,0x40,0x5d,0x0a,0xfa,0x58,0xa4,0xa0,0x8b,0x2e,0x05,0xbd, +0x79,0xbd,0x74,0x1d,0x91,0xbe,0x05,0xfc,0x5f,0xf0,0xac,0xd6, +0x22,0xc4,0xad,0xaf,0x07,0xd8,0x66,0x38,0xb4,0xc1,0x5e,0x5f, +0xa8,0x85,0x32,0x7e,0x15,0x89,0x2a,0x0b,0xc7,0x81,0xca,0x46, +0xf8,0xe0,0x82,0x96,0x31,0x02,0xda,0xc7,0xc9,0xee,0xb3,0x67, +0x04,0xba,0x1b,0xbb,0x93,0x61,0x6d,0x04,0x8d,0xee,0x5d,0x7c, +0x52,0x36,0x23,0xdb,0xfd,0x80,0x09,0xdf,0xc7,0xc9,0xca,0x1c, +0xc9,0xd1,0xeb,0xd8,0xb5,0x6b,0x45,0x19,0x37,0xcd,0x7b,0xa5, +0xca,0xe2,0xc9,0x43,0x87,0x7a,0x4e,0x1a,0x64,0x26,0xad,0x1e, +0x2b,0x7e,0xbc,0xb0,0xe8,0x26,0x9c,0x79,0xdd,0x9e,0xc1,0x44, +0x5c,0x54,0x09,0x67,0x30,0x4d,0xb2,0x56,0xcf,0xab,0x5e,0x8a, +0xc0,0xd6,0xf9,0x0b,0x35,0xad,0x3f,0xde,0x94,0x71,0x23,0x14, +0x57,0xb5,0x65,0xe7,0x31,0x53,0x29,0x99,0x91,0xe9,0x21,0x8c, +0x43,0xeb,0x72,0x2d,0xc3,0x15,0xda,0x11,0xde,0x88,0x99,0x41, +0x5e,0xc6,0x5e,0xf7,0x5d,0x75,0xbc,0xe5,0x0f,0x4d,0xf8,0xfd, +0x6e,0xe5,0x4a,0x71,0xfa,0x4d,0x93,0xc0,0x15,0xe2,0xec,0xe2, +0x19,0x32,0xc8,0x4c,0x14,0x78,0xa6,0x5f,0x36,0xaf,0xc4,0x42, +0xce,0x68,0x8b,0x0f,0x60,0x6a,0xa2,0xf6,0x01,0xb4,0x63,0x84, +0x69,0x02,0x05,0xb0,0x6d,0xb1,0xce,0x1d,0x35,0x7a,0x00,0x9e, +0x95,0xc9,0xe8,0x67,0xf1,0x86,0xbb,0x18,0x1e,0x55,0x0a,0x67, +0x9e,0xf4,0x4c,0x34,0x6d,0x82,0x96,0xe7,0xb5,0x0c,0x37,0x68, +0xcb,0x5b,0x16,0xb1,0x7b,0x67,0xbf,0x22,0xf0,0xbb,0x94,0x8b, +0x45,0x69,0x37,0x79,0xf3,0x87,0xe2,0xdd,0x1c,0x6b,0x38,0xfb, +0x50,0xf0,0xa7,0x10,0xdb,0xf0,0x86,0xe5,0x8c,0x78,0x33,0x9f, +0x4b,0x11,0x4c,0x75,0xc0,0x55,0xb0,0x92,0x61,0x37,0x5a,0x97, +0x2f,0xd4,0x05,0x5c,0x1a,0xc5,0xd4,0x8b,0x14,0xeb,0x84,0xfe, +0x51,0xd5,0x1f,0x0b,0xc5,0xbc,0x32,0x44,0xef,0x7e,0xda,0x50, +0xf8,0x48,0x27,0xeb,0x8a,0xd6,0x84,0x2b,0xcb,0xf4,0x62,0x73, +0x6e,0x7b,0x40,0xef,0xdd,0xfd,0x0b,0x75,0xa7,0x00,0x00,0xde, +0xb8,0x05,0xa2,0x59,0xd5,0x6c,0x71,0x4f,0xa9,0xe8,0x16,0x19, +0x6d,0xfc,0x09,0x6f,0x2b,0xc3,0x1f,0x62,0xcf,0x4a,0x35,0xd9, +0x11,0xcb,0xc5,0x37,0xee,0x32,0x29,0xf8,0x1e,0x01,0x5b,0xa4, +0x4c,0xb2,0xe4,0x67,0x67,0x67,0x8f,0x3d,0x60,0xda,0xf8,0xb2, +0x5c,0x73,0x74,0x85,0x3a,0xcb,0x65,0xff,0xf0,0xd9,0x81,0xa3, +0x8c,0x9d,0x6f,0x8d,0xf8,0xf9,0xe7,0x9b,0xc2,0x85,0x4b,0xd1, +0x5d,0xb8,0xdc,0xd4,0x73,0x67,0xf3,0x2c,0xd6,0xdb,0x3f,0x6c, +0xd4,0xc8,0xb1,0x64,0xbd,0x8b,0x74,0xeb,0xdd,0x81,0x69,0x29, +0xb7,0x24,0xfc,0x09,0x66,0x29,0x23,0x1e,0x62,0x07,0x5d,0x5e, +0x8a,0x04,0x8e,0x63,0x7f,0xe0,0x38,0xae,0x94,0xce,0xce,0x1c, +0xbb,0xdf,0xb4,0xe9,0xe5,0x79,0xcd,0xd1,0x0d,0xea,0xc4,0xc9, +0xfe,0x11,0xb3,0x85,0x29,0xbf,0x35,0x92,0x70,0x9c,0x7b,0x46, +0x38,0x36,0x29,0xbb,0xe4,0xcb,0xb9,0x29,0xe7,0xce,0xe5,0x4e, +0x71,0x31,0x45,0xcb,0xc3,0xc6,0x4e,0x19,0x39,0x72,0x6c,0xca, +0x25,0xd3,0x01,0x4c,0xc6,0x72,0x81,0x63,0x7f,0x0d,0x0e,0xd7, +0x87,0x42,0x73,0xd6,0x73,0x9b,0xa7,0x4c,0x2d,0xd3,0x0d,0x2b, +0x35,0xc6,0xe8,0x8d,0x3e,0xa2,0x91,0x6c,0x44,0xa8,0x23,0x1e, +0x13,0x04,0x24,0x11,0x01,0x6e,0x3a,0x01,0x49,0x4a,0x51,0xc4, +0x49,0x22,0x60,0xc3,0xaf,0x67,0x35,0xc7,0x51,0x40,0x5a,0x3a, +0x36,0x72,0xf6,0x78,0x2f,0x63,0xcf,0x5b,0xee,0x44,0x40,0xd9, +0x23,0x13,0xa6,0xea,0x0e,0x5f,0x5e,0xf2,0xb9,0x73,0x79,0x16, +0xa3,0xeb,0x3f,0x7d,0xe4,0x48,0x7f,0x61,0x74,0x6d,0x6b,0x8c, +0x2e,0xfb,0x59,0xbc,0xce,0x55,0xb7,0x8c,0x54,0x92,0x2d,0x96, +0xf1,0x67,0xa6,0x3e,0x12,0x96,0x91,0x1b,0x36,0x32,0xf5,0x99, +0x6e,0xfb,0x44,0x11,0x6a,0xe9,0xd6,0x4d,0x2f,0x92,0xa1,0xe3, +0xd2,0x50,0x4b,0x8f,0x9e,0x16,0x07,0x8c,0x5c,0x21,0xf5,0x5b, +0xdd,0x01,0x13,0x25,0x17,0x8b,0x03,0x56,0xc8,0x2c,0xca,0xda, +0xe4,0x0a,0x7b,0xa2,0x7b,0x62,0x4d,0x1e,0x0a,0xed,0x5c,0xc3, +0x4d,0xe7,0x84,0xe4,0x78,0xa1,0x9d,0x2b,0xd8,0xa1,0xc1,0xf2, +0xa7,0xb1,0xae,0x60,0xff,0x88,0x54,0x70,0xdf,0x30,0xd8,0x27, +0x45,0xe9,0x4a,0xd6,0xe0,0x82,0xb6,0x6a,0x04,0x98,0xe2,0x64, +0x0f,0x8b,0x92,0xdd,0x1d,0x0e,0x0d,0xa0,0x81,0x50,0xb2,0x99, +0xba,0x92,0xbd,0x47,0x4a,0x36,0x57,0x1a,0xec,0x4d,0x4a,0x56, +0x98,0x51,0x61,0xde,0x23,0x55,0x14,0x92,0x92,0x79,0x4f,0x1a, +0x6c,0xc6,0x86,0xdc,0xd4,0x49,0xfc,0x56,0x75,0x81,0xa2,0xeb, +0x92,0x2b,0xda,0x8d,0x20,0x2c,0xef,0xe9,0xc8,0x24,0xdc,0xa7, +0xb6,0xc2,0xa6,0x6c,0x0e,0xf6,0x23,0x24,0xf5,0xcb,0xb5,0x55, +0xae,0xd0,0x8c,0x90,0x44,0xcc,0x0c,0xf6,0x34,0xf6,0xba,0xeb, +0xaa,0x23,0x29,0x7f,0x58,0x32,0x53,0xa8,0x1c,0x69,0x72,0x00, +0x69,0xf2,0x60,0xef,0xf4,0xcb,0x57,0x0a,0xd3,0x2b,0x48,0x93, +0x2b,0x8a,0x48,0xbb,0xbc,0x49,0xbb,0xd0,0x01,0xfd,0x74,0xbd, +0xf2,0x63,0xea,0x61,0xad,0x0d,0xe9,0x15,0x6f,0xd8,0x87,0xa1, +0x63,0x18,0x6b,0x1d,0x46,0x16,0x3d,0x51,0x6d,0x82,0x4f,0xd9, +0xc5,0x1a,0x95,0x12,0xca,0x6b,0x7d,0x5e,0x5b,0xe5,0x06,0x3c, +0x4e,0xf6,0x8c,0x98,0x39,0xde,0xc7,0xd8,0xfb,0xee,0x28,0x1d, +0x95,0xd0,0xae,0xa7,0xbb,0x95,0x0b,0xbc,0xa1,0x1b,0x1b,0x31, +0xdc,0x3b,0x64,0xb0,0x39,0x52,0x1a,0xe2,0x9d,0x7e,0xd1,0xac, +0xbe,0x8b,0x6b,0x6b,0xf4,0x2c,0x94,0xb5,0x27,0xe5,0x21,0x0e, +0xcd,0xe7,0x4d,0x83,0xd9,0x0b,0xed,0x00,0x9c,0xfc,0x97,0x6a, +0x69,0x36,0x1b,0x42,0xfa,0x94,0xf4,0xdf,0xab,0xd5,0x76,0xba, +0x52,0x12,0x37,0xd2,0x2c,0x4a,0x49,0x06,0xe0,0xba,0xae,0x94, +0x6f,0xaa,0xfa,0xd3,0x08,0xc1,0x95,0x3a,0xa2,0xfb,0x50,0x82, +0x72,0xe0,0xef,0x9b,0x86,0x58,0x14,0xd6,0x17,0x32,0xa8,0x29, +0x5a,0x07,0xf4,0x03,0x4e,0xe0,0x8d,0x0f,0xe8,0x3c,0xa8,0xd4, +0x14,0x5d,0x89,0xa9,0xd8,0x46,0xb3,0xe3,0xb6,0x55,0xa2,0xe7, +0x7a,0x45,0x57,0x63,0x72,0x06,0xfd,0x2d,0x6a,0xec,0xc7,0xca, +0x71,0x3e,0x77,0x58,0x46,0xf2,0x70,0x89,0x81,0x3d,0x37,0x75, +0x16,0x75,0x79,0x98,0xcb,0xed,0xab,0xff,0x3a,0x60,0x32,0x6e, +0x83,0xc5,0x7f,0xd1,0xfb,0xdf,0x71,0xb7,0xe2,0xf6,0xa2,0x73, +0x47,0xb7,0xef,0x86,0x54,0xa8,0xc9,0x83,0xf0,0x73,0x19,0xbb, +0xd3,0x12,0x63,0xc2,0x08,0x48,0x90,0x8e,0x61,0x96,0x72,0x2e, +0x32,0x3b,0x80,0x9c,0xb8,0x1f,0xcb,0xb5,0x1e,0xae,0x60,0x58, +0x2e,0x07,0x84,0x47,0x92,0xea,0x77,0xaa,0x18,0xfe,0xe3,0x3f, +0x2a,0x2e,0xbe,0x30,0x61,0xe2,0x06,0x65,0xaf,0x7c,0x35,0x3b, +0xb5,0xb4,0x34,0x9b,0x54,0x7f,0x8e,0xec,0x14,0x18,0xe6,0xe1, +0x11,0x48,0x7e,0xe2,0x19,0xcc,0xfa,0x53,0xf5,0x7f,0x87,0x64, +0x65,0xe4,0x8b,0x8f,0x08,0xcd,0xc8,0x0a,0x75,0xf3,0x20,0x5c, +0x29,0xd0,0xcc,0xfd,0x03,0xcd,0x31,0xa5,0x2c,0x32,0x93,0xd0, +0x6c,0xfc,0xf1,0xbc,0xd6,0xc3,0x0d,0x0c,0xcb,0xe4,0x80,0x88, +0xc8,0x20,0x0f,0xe3,0x47,0x15,0x6e,0x84,0xe6,0x3c,0x69,0xff, +0xfe,0x4d,0xca,0x6e,0xf9,0x72,0x76,0x4a,0x59,0x69,0x0e,0x69, +0xff,0x3c,0xd9,0x25,0x60,0x8a,0x87,0x7b,0x60,0xca,0x65,0x53, +0x22,0x1e,0xfd,0x53,0xfb,0x7f,0x87,0xc3,0xca,0xa8,0x17,0x5d, +0x3b,0x8e,0xfa,0x6e,0x58,0x85,0xba,0x7e,0x10,0xc6,0x08,0x34, +0xa4,0x01,0x09,0xae,0x3a,0x9a,0xa3,0x4a,0x29,0xa1,0x21,0x23, +0xf3,0x63,0x99,0xd6,0xc3,0x5d,0x47,0x33,0x3b,0x72,0x9c,0x87, +0xb1,0x6b,0xc5,0x48,0x42,0x73,0xee,0x1b,0x1d,0xcd,0xae,0x3f, +0xd1,0x90,0x91,0xb1,0xa0,0xb9,0x64,0x52,0x8b,0xdf,0x36,0x24, +0xbf,0xc3,0x1a,0xc2,0xd3,0x8b,0xf0,0x04,0x57,0xa8,0xd3,0x07, +0xe1,0x02,0x81,0x27,0x9c,0xf0,0xb8,0xe9,0x78,0x0e,0x2a,0x45, +0x91,0x27,0x03,0x49,0x3e,0xff,0xa1,0xe3,0xb1,0x8a,0x93,0x03, +0x23,0x22,0xc7,0x7b,0x1b,0xbb,0x57,0xb8,0x13,0x9e,0xb2,0x27, +0x3a,0x9e,0x9d,0xf2,0x85,0xec,0x64,0xc2,0x33,0x6d,0x04,0xd9, +0x92,0x11,0x01,0xd3,0x08,0x4f,0xf2,0x05,0x93,0xaa,0xe0,0x0a, +0x61,0x4b,0x08,0x51,0x8e,0x8e,0xe8,0x04,0x57,0xc8,0x4f,0xe9, +0xaf,0x4d,0xe0,0x0e,0x3f,0x91,0x31,0x78,0xc0,0xa0,0x89,0xc5, +0xc2,0x50,0xc9,0xca,0x62,0x61,0x1e,0x30,0xf5,0x81,0xc5,0xc2, +0x90,0xef,0xf9,0x75,0x8d,0x85,0x59,0xcf,0xc0,0x50,0x63,0x61, +0xa8,0x68,0xf5,0xc6,0xc2,0x50,0x8f,0x6e,0x35,0x16,0xe6,0x05, +0xb9,0x62,0x16,0x0b,0x43,0xa5,0xa1,0x16,0x0b,0x33,0xd7,0x62, +0x61,0xb4,0x17,0x8c,0x24,0xe3,0x73,0xae,0x5c,0x60,0x0f,0x75, +0x43,0xc3,0x29,0x9a,0xd8,0xa7,0x14,0xd3,0xac,0x12,0x69,0x56, +0xa5,0x5a,0x0f,0x0f,0xb0,0x5a,0x26,0x07,0x46,0x46,0x4e,0x20, +0x0b,0x69,0x99,0x15,0x59,0xc8,0x03,0x82,0x7b,0xe5,0x39,0xc9, +0x65,0x65,0xd9,0x64,0x21,0xa3,0x65,0xd7,0xc0,0xe9,0xee,0xee, +0x01,0x64,0x21,0xa1,0x97,0xee,0x35,0x10,0xa2,0x0a,0xe1,0x35, +0xe8,0x78,0x84,0x3b,0xa0,0xfe,0x5c,0xb5,0x11,0x15,0x86,0x75, +0x35,0x4f,0xe5,0x8a,0x0c,0xdd,0xe2,0xcb,0x4b,0x2f,0x18,0x33, +0x23,0x32,0x5c,0x12,0xc9,0xe5,0x1e,0x76,0xae,0xda,0x7b,0x24, +0x0c,0x8b,0x93,0x5d,0xa2,0x22,0x26,0x8d,0x33,0x8e,0xb8,0xe0, +0x0e,0xdd,0x96,0x99,0x9c,0x35,0x79,0x78,0x55,0xd9,0x45,0x59, +0xfb,0x1a,0x26,0x29,0xf9,0xa7,0x33,0xc0,0xca,0x94,0x2b,0x81, +0xd5,0xe9,0xc9,0xbe,0xbe,0x7e,0x21,0x68,0x65,0x1e,0x2b,0xa1, +0x95,0x5f,0x7a,0xbe,0x19,0x8d,0x5a,0x47,0x5e,0xef,0x3e,0xe3, +0x75,0xac,0xc5,0x51,0x4b,0x09,0x37,0xc4,0x30,0x6d,0x36,0x0b, +0xd0,0x9e,0xf2,0xba,0xcd,0x44,0x49,0xfd,0x54,0xeb,0xc1,0xeb, +0x9c,0x13,0x45,0x5f,0xed,0xa9,0x12,0xf3,0x0c,0xc2,0xc0,0x07, +0x4f,0xf0,0xda,0x75,0x99,0xf4,0xca,0x93,0x36,0x50,0x38,0xa1, +0x9e,0x60,0xfe,0xaf,0xfa,0x30,0xae,0x50,0x10,0xd8,0x56,0x9b, +0xc8,0xeb,0x0c,0x10,0x14,0xc7,0x57,0x97,0x08,0x8a,0x9d,0x74, +0x8a,0x37,0x95,0x97,0x9c,0x33,0x9e,0x8a,0x4c,0x1b,0xb6,0x97, +0x36,0x78,0xe7,0xd2,0x6a,0x6f,0x0f,0x70,0x5e,0x26,0x0f,0x9b, +0x13,0x19,0x32,0xde,0xe8,0x76,0xc1,0xab,0x86,0xe2,0x2e,0x4c, +0xfb,0x06,0x82,0x95,0xbc,0xbc,0x74,0x30,0x98,0x4e,0x4b,0x60, +0xc8,0x0b,0xf1,0x1f,0xeb,0x1f,0x82,0x06,0xb3,0x9f,0x84,0x06, +0xff,0xf4,0x5c,0xb3,0x5a,0x47,0x0b,0xe1,0xec,0x0a,0xab,0xf2, +0x17,0x9f,0xd7,0x88,0xe2,0xb6,0x7b,0x05,0xaa,0x6d,0x02,0x55, +0x3d,0xad,0x99,0x52,0xc6,0xf9,0x02,0xe6,0xae,0xc9,0xee,0x55, +0x65,0x65,0xb2,0xf6,0x14,0x86,0x73,0x93,0x13,0xcb,0x25,0x27, +0xa4,0x4e,0x81,0x18,0xd2,0x4a,0x33,0x73,0x87,0x58,0x51,0x52, +0x17,0xe3,0x53,0xce,0x87,0x8a,0x59,0xe5,0x88,0xe6,0x53,0x22, +0x4a,0x5f,0xaa,0xa0,0x2d,0x24,0x0d,0xd4,0x1e,0xdf,0x86,0xcf, +0xc1,0x56,0xd2,0x5c,0xe0,0xb1,0x82,0x3b,0xdd,0x60,0xa7,0x04, +0x43,0xb5,0xde,0x4a,0xbf,0xc5,0xed,0x63,0x5b,0x2c,0xaf,0x75, +0x4d,0xfe,0x35,0xe1,0x52,0xfe,0x15,0x5e,0x7f,0x2e,0x13,0xc6, +0xdb,0x27,0x2a,0x3c,0xc4,0xdf,0xe8,0x74,0xc9,0xf7,0x65,0xac, +0x69,0x30,0x6f,0x7e,0x81,0x69,0x01,0xb0,0x82,0xd7,0xf3,0x63, +0x91,0x9a,0x89,0xb7,0x98,0x4d,0xc1,0xf0,0x28,0x05,0x42,0x30, +0xe4,0x1a,0xec,0x17,0xbf,0x14,0xad,0x5a,0xa2,0xae,0x52,0x60, +0xdf,0x40,0xed,0xfa,0x6d,0x58,0x06,0xb6,0x97,0x64,0xc2,0xb2, +0x5b,0x11,0x2f,0xaf,0xd2,0xb1,0x7c,0xc8,0x1b,0xf4,0x65,0xf1, +0x97,0xf2,0x2e,0x1b,0x73,0x78,0xf3,0x35,0x2c,0xc0,0xe8,0x72, +0xc9,0x9f,0xd7,0x0a,0x67,0xae,0x06,0x08,0xe3,0xb5,0xf3,0x18, +0x2c,0x53,0x4a,0x0a,0x92,0x6e,0x98,0x92,0xa5,0x1b,0x05,0x33, +0x3d,0xbd,0x78,0xc3,0xf6,0xac,0xd8,0xac,0xae,0xd7,0xc2,0x94, +0xc5,0xb1,0xbc,0xf9,0x66,0x96,0x1f,0x74,0xb9,0x20,0x87,0xb7, +0xfc,0x92,0x9d,0xce,0x46,0x13,0xbc,0xb7,0x38,0x61,0xd1,0xda, +0x85,0x4b,0xec,0xb4,0xfd,0x95,0x0a,0xcc,0xc1,0xd9,0xd7,0x21, +0x0d,0xf3,0x25,0x6b,0xce,0xa6,0x31,0x35,0x48,0x9b,0xa3,0x2c, +0x5c,0xb2,0x62,0xfd,0xde,0xa3,0x9b,0x53,0xd7,0x9d,0xb2,0x83, +0x56,0x65,0x88,0xee,0xd0,0x4e,0x8a,0xeb,0x3f,0x36,0x10,0xeb, +0xf6,0xca,0x1d,0x6b,0x7b,0x25,0x3f,0xf7,0x58,0x72,0xc6,0xa6, +0x4d,0x9b,0xc5,0xd7,0xa9,0xda,0xa0,0x64,0x9b,0x9d,0x83,0xa6, +0x97,0x0b,0x36,0x2f,0x5a,0x4d,0x20,0x71,0xc9,0x64,0x65,0xfe, +0xe4,0xa1,0xf3,0x86,0xda,0xcf,0x87,0xe9,0x43,0x71,0x9e,0x03, +0xdb,0x23,0x3d,0xbc,0xb3,0x77,0x6f,0xae,0xd9,0x9a,0x5b,0xbd, +0x66,0x5a,0xe2,0x6d,0x18,0x07,0xb6,0x17,0xc4,0xf4,0xe2,0x79, +0xed,0x1c,0xa6,0xd5,0x15,0xfc,0x5b,0xda,0x22,0xae,0xd6,0x05, +0xce,0xf3,0x99,0x0b,0x6f,0xb8,0x8d,0xb9,0x73,0x3e,0x9f,0xa9, +0xc7,0xf1,0x37,0xa5,0x14,0x27,0x79,0xc8,0x98,0x86,0xd3,0x94, +0x05,0xb0,0x72,0x08,0x6e,0x70,0x60,0xbb,0xa5,0x47,0xb7,0x77, +0xef,0xc9,0x35,0xcf,0x2b,0x32,0x2c,0x98,0xe4,0x34,0x7f,0xa8, +0x3d,0x38,0xfe,0xae,0xfc,0xbe,0x5c,0x1a,0x17,0x3d,0x77,0xda, +0x64,0xe3,0xa8,0x72,0xff,0x5f,0x7f,0x2d,0xcf,0x3b,0x9b,0x31, +0x37,0x79,0xdc,0x2e,0xd3,0x86,0xdf,0x8b,0xb4,0xde,0x32,0xcc, +0x40,0x0f,0x25,0x5a,0xf2,0x98,0x78,0x30,0x2b,0xeb,0xf8,0xa1, +0x52,0xf3,0x2e,0xa9,0xe4,0xf8,0xac,0xa0,0xa0,0x89,0xe1,0x9e, +0x66,0xf1,0x33,0xcf,0x04,0xb1,0xb8,0x9b,0x07,0x6a,0x47,0x6f, +0xc3,0x14,0xcb,0xe2,0xde,0xc0,0x12,0x56,0xa2,0x3d,0xb4,0x9c, +0x3c,0xbb,0x8b,0x97,0x64,0xe9,0x27,0xcf,0xad,0x78,0xad,0x09, +0x35,0xaf,0xc9,0xd2,0xcf,0x9e,0x67,0x8a,0xb3,0xe7,0x23,0xd7, +0xe1,0x11,0xee,0x96,0xfe,0x3d,0xa0,0x13,0x04,0x48,0x3f,0x90, +0x76,0xc7,0x74,0x4f,0x08,0xeb,0x8d,0x93,0x08,0x50,0x7d,0x99, +0xdd,0x88,0xdf,0x56,0x6a,0x8e,0xe1,0xcd,0x74,0x01,0xfb,0xfb, +0xa1,0xea,0x16,0xad,0x27,0x6f,0x7e,0x83,0xc5,0x3e,0x86,0xf1, +0x34,0x3c,0xc5,0x13,0x42,0x7a,0xeb,0x6f,0xf3,0xa1,0xe1,0xd7, +0xe2,0xb7,0x95,0x88,0x97,0xb1,0x88,0x4f,0xcb,0xf4,0xb4,0x57, +0x23,0xd6,0x8a,0xcc,0xaf,0x2c,0xb2,0xbd,0x55,0x3f,0xb2,0x93, +0xdc,0xfe,0x77,0x06,0x5f,0x3d,0x52,0x60,0x5c,0x01,0x8e,0x7b, +0x02,0xd3,0x8b,0x30,0x03,0x1f,0x43,0x51,0x11,0x2e,0xd6,0xdb, +0x4f,0x88,0x76,0xb5,0x8c,0x5c,0xbd,0x12,0xbc,0xec,0x29,0x43, +0x62,0x80,0xe2,0xb2,0x71,0x3e,0x3a,0x1b,0x86,0x49,0xf3,0xc1, +0xd9,0x25,0xee,0x00,0x3a,0x1a,0x3e,0xf5,0x82,0xbb,0xc5,0x9f, +0xe9,0xdd,0xd5,0x72,0xd4,0x94,0x42,0x1c,0xe7,0x23,0x63,0x05, +0xce,0x55,0x16,0x3f,0x81,0x09,0x30,0x0a,0x53,0xbc,0x60,0x72, +0x4f,0x22,0xa7,0x05,0x6f,0x5e,0xc4,0xc4,0xa1,0x25,0xcc,0x05, +0x6b,0xe5,0x59,0x9c,0x34,0x31,0x7a,0xde,0xf4,0x10,0xe3,0xa8, +0xb3,0x01,0x3f,0x7c,0x7f,0x36,0xe7,0x6c,0x7a,0xf4,0x91,0x89, +0xbb,0x4c,0x1b,0x9f,0x9d,0xd6,0x1a,0xc8,0xe0,0x8b,0x6e,0xb4, +0x12,0xa3,0x43,0x0e,0x65,0x65,0xa6,0x1f,0x2a,0xa0,0x95,0x28, +0x4c,0x9f,0x15,0x1c,0x14,0x32,0x4b,0x5c,0x50,0x27,0xd9,0x83, +0x1b,0x5a,0x84,0xb2,0x30,0x26,0x6e,0xdd,0xa1,0xa4,0x84,0xe4, +0x75,0xe9,0x76,0xb0,0xe9,0xac,0xf6,0x78,0x14,0xec,0x92,0x96, +0x0d,0x71,0x09,0xc4,0x88,0xa1,0xa9,0xde,0xb6,0x60,0x9f,0xfd, +0x55,0x46,0x7e,0xc6,0xce,0xf8,0x5d,0x6b,0x76,0x2f,0x25,0xcd, +0x91,0x6c,0x53,0x8a,0x71,0xeb,0x2f,0xf3,0x36,0xc6,0xac,0x9a, +0xbf,0xd8,0xce,0x22,0x62,0xb7,0x6e,0xc3,0x96,0x37,0x22,0x26, +0xd8,0xe8,0x8c,0xbf,0x2a,0xf9,0x78,0xc4,0x57,0x86,0xae,0x38, +0x44,0x59,0x14,0x1b,0xb7,0xee,0x40,0xe2,0xe6,0x03,0x6b,0x0f, +0xdb,0xc1,0xce,0x7c,0xed,0x57,0x5f,0x38,0x2c,0xc5,0x7a,0x3a, +0x85,0x62,0x84,0xf7,0xd1,0x31,0xb6,0xd0,0xe2,0xd8,0xa3,0xe4, +0xfc,0xa3,0x3b,0x36,0xec,0x5e,0xb5,0x63,0x39,0x24,0x75,0xb6, +0x3d,0x5c,0x80,0x3b,0x1e,0xcc,0x5b,0xbf,0x74,0x65,0xf4,0x12, +0x3b,0xb1,0xca,0x1b,0xc4,0x52,0x6d,0x1f,0xa8,0x5d,0xbc,0x0d, +0x71,0x96,0xa5,0xba,0xcd,0x59,0x11,0xdb,0xad,0x71,0x45,0x5d, +0xd8,0x47,0xd2,0x56,0xcc,0x8f,0x77,0x57,0x17,0x27,0x1a,0xda, +0x89,0x9b,0x1b,0xe7,0x64,0xc1,0xbf,0x1f,0xb4,0xf5,0x8a,0x3a, +0xab,0x4c,0x9b,0x75,0x4f,0x5d,0x54,0xa6,0x95,0x63,0x9a,0x03, +0x53,0x8f,0x9c,0xd5,0x36,0xd4,0x28,0xdc,0xb7,0x9a,0xbd,0x52, +0xa2,0x3d,0xf6,0x94,0xd5,0x39,0xc1,0x8a,0x38,0x78,0x6f,0x66, +0xc0,0x21,0x52,0x04,0x34,0x13,0x07,0xef,0x36,0x06,0x6c,0xe5, +0xa9,0xfe,0x5a,0x82,0xad,0xa4,0xbf,0x9f,0xdc,0x08,0x54,0x69, +0x15,0x77,0x7b,0xca,0xe8,0x84,0x92,0x02,0x6d,0x96,0x49,0x7e, +0xf3,0xe6,0xcd,0x98,0x6a,0x74,0xbf,0xee,0x07,0xbd,0xa0,0xd7, +0xf5,0xd3,0x65,0x47,0xe7,0x1d,0xf6,0xdb,0x4d,0xd6,0xb5,0x4d, +0x71,0xb5,0x24,0xc3,0x03,0x1c,0xa9,0x4c,0x91,0x5a,0x06,0x1d, +0x3e,0x71,0x22,0x2b,0xe9,0xa5,0x39,0x45,0xfa,0x35,0x6b,0xe6, +0x84,0x09,0x41,0x33,0x5a,0xd1,0x12,0x98,0xc7,0x31,0xad,0x0b, +0x6d,0xf7,0xab,0x47,0xc2,0x6a,0xa9,0xbd,0xf6,0xa9,0x72,0x4d, +0x7e,0x9e,0x70,0x36,0xf7,0x92,0x31,0x3b,0x32,0x6d,0xec,0x1e, +0xd3,0xc6,0x7f,0x96,0x6a,0x64,0x9f,0x0d,0x71,0xf2,0xd8,0xb9, +0x91,0xa1,0x81,0xc6,0xe1,0xa5,0xfe,0xcf,0x63,0x4d,0x8e,0xaf, +0x32,0xd8,0xb2,0x32,0x6c,0xc2,0xb0,0x1d,0x04,0xf3,0xfa,0xcf, +0x99,0x4f,0xe0,0x74,0x37,0xf2,0x17,0xdd,0x02,0x8e,0x14,0x9a, +0xcb,0x34,0x23,0x37,0xe5,0x32,0x6e,0xce,0x13,0x77,0xf1,0x4e, +0xf3,0xda,0x8b,0x99,0x66,0x3e,0xc8,0x2e,0x09,0xb8,0x39,0x17, +0x8d,0x59,0x91,0x29,0x01,0x04,0xf7,0xf7,0x12,0xcd,0xdb,0x13, +0xde,0x8f,0x93,0x03,0xe6,0x46,0x85,0x05,0x1b,0x47,0x94,0x06, +0x10,0xdc,0x21,0x04,0x17,0x91,0x7c,0xa9,0xc2,0xec,0x43,0x17, +0x4c,0x89,0x52,0x79,0xf6,0x2c,0x1f,0x9f,0x80,0x99,0x02,0xb4, +0x6b,0x40,0x52,0xa1,0x59,0x7d,0xac,0x05,0xf3,0xa6,0x17,0x18, +0xaf,0x75,0x58,0xc0,0xce,0x04,0x7b,0x11,0xad,0x4c,0xe3,0x56, +0xcf,0x98,0xc5,0x78,0xf1,0xd6,0xef,0xb3,0xfe,0xfe,0x63,0xb1, +0x4e,0xcf,0x9c,0x00,0xdb,0xab,0x67,0x72,0x8f,0x27,0x1f,0xdb, +0xb4,0x31,0x61,0x4d,0x82,0xb0,0x59,0xb5,0xc9,0x66,0x19,0xb4, +0xee,0x97,0x5f,0x2f,0x66,0xd1,0x30,0x63,0x28,0x2e,0xe0,0xf5, +0x3b,0x33,0xd8,0xc2,0xd4,0x5f,0xf0,0x0c,0x6f,0xb2,0x9b,0xbd, +0xfa,0x8c,0x38,0x11,0xc3,0x25,0x2b,0xf1,0x5b,0xd0,0xfb,0xdc, +0x8e,0xf6,0xfb,0x46,0x87,0x18,0x4c,0x22,0x8d,0x4f,0x77,0x87, +0xb0,0x1e,0xa4,0xc5,0x6d,0xc5,0xb5,0x92,0x17,0xd8,0x55,0x7c, +0xbe,0x45,0xfc,0xfc,0x50,0xb4,0x8f,0xe7,0x0d,0x1e,0x31,0xd2, +0x89,0xb6,0xbc,0x5e,0x1f,0x06,0x9f,0x29,0xd8,0x11,0xde,0x73, +0xc6,0xe7,0x70,0x0c,0x9e,0x3b,0x4b,0x98,0x61,0x45,0xcf,0xb5, +0xc5,0x5b,0xb8,0x04,0xa6,0xaf,0xc9,0x25,0x69,0xf2,0x5f,0x8c, +0xcb,0x56,0x82,0xfc,0x0d,0xbc,0xc9,0x70,0x06,0x75,0x09,0x97, +0xed,0x64,0x41,0x08,0xc5,0x34,0xf7,0xb9,0x4d,0x1f,0x9d,0xa6, +0x3e,0x24,0xbf,0x30,0xbe,0x38,0x85,0xe1,0x29,0xde,0x24,0x9e, +0x98,0x79,0x5a,0x8c,0x38,0x41,0x13,0x86,0x43,0x5a,0x3b,0xae, +0xa4,0xfe,0x85,0x07,0xc3,0x09,0xae,0xad,0x78,0x5f,0x74,0x92, +0xa8,0x5a,0xa9,0xcf,0x61,0x19,0x7e,0xc7,0x9b,0x26,0xd1,0x48, +0x3f,0x9a,0xd6,0x7c,0xea,0xf5,0x40,0x6b,0xcc,0x1d,0x62,0x74, +0x44,0xbd,0xb4,0x07,0xdc,0x54,0xf6,0x36,0x88,0x4a,0x6a,0xe4, +0x86,0xbf,0x42,0x58,0x85,0x3f,0x2a,0xb0,0xbb,0x84,0x37,0x7d, +0x28,0x5e,0xd0,0xf2,0xf8,0x8e,0xfa,0x58,0xc6,0x2b,0xcb,0x11, +0xc4,0xf8,0xde,0xca,0xa7,0x8b,0x3f,0x5c,0xda,0x66,0x79,0xad, +0x2b,0xf2,0x6f,0x9b,0x2f,0x9f,0xbe,0x6a,0xcc,0x9b,0x95,0xe1, +0xbd,0x97,0xa2,0x0b,0xfb,0x32,0xed,0x90,0x3b,0x34,0x8f,0x93, +0xbd,0xe7,0xcc,0x9a,0x4c,0x7b,0xe1,0x65,0x3f,0x7d,0x2f,0xb4, +0x6f,0xcb,0x16,0xd3,0x1e,0x68,0xca,0x13,0x87,0x49,0xd7,0xef, +0x48,0x78,0x45,0xbd,0xf2,0x3a,0x56,0x40,0xfa,0x90,0xb7,0xaa, +0xcf,0xc4,0x16,0xd7,0xe2,0x20,0x9b,0x13,0x1e,0x4a,0xbb,0xdc, +0x65,0x7f,0x31,0x44,0x5e,0xd9,0xab,0xfb,0xaa,0x9e,0x4f,0x99, +0xe6,0x6e,0xd9,0xe7,0x2a,0x4c,0x47,0xa5,0x1b,0x85,0xb4,0xcf, +0x79,0xcf,0x18,0x62,0x9e,0x2a,0x0d,0xf6,0x39,0x4c,0x9b,0x5d, +0xba,0x16,0xca,0x9b,0x8a,0x28,0x72,0x01,0x53,0xd7,0x69,0x91, +0x5c,0xd9,0x2b,0xe0,0x27,0xea,0xf0,0xf7,0x2a,0xb8,0x7b,0x14, +0xec,0x96,0x08,0x47,0x5d,0x5e,0x7b,0x3a,0x2b,0xe7,0xfc,0x0c, +0x1b,0x66,0x01,0x6b,0xbf,0x91,0xf6,0x9b,0x68,0x06,0xcf,0xf0, +0x37,0xde,0x64,0x93,0xb8,0xca,0x72,0xf4,0x8e,0xf8,0x71,0xfd, +0xd5,0x55,0x78,0x9b,0x5d,0xd6,0x1e,0x72,0xbb,0x84,0x7f,0xa9, +0xcc,0xa7,0x4a,0xdb,0x7f,0xed,0xa9,0xee,0x23,0x6b,0xdd,0x34, +0x85,0x55,0x7d,0xca,0xd4,0x4c,0x22,0xa5,0x49,0xb5,0x28,0xea, +0x5d,0x43,0x44,0xe9,0x34,0x95,0x6c,0x1c,0xf4,0xe6,0x77,0x51, +0xe3,0x8d,0x33,0x04,0x75,0x67,0x74,0xea,0x4e,0xf3,0x86,0x66, +0xa6,0x71,0x41,0x18,0xb1,0x30,0xfe,0x72,0x76,0xb9,0x31,0x73, +0x76,0xca,0x18,0xa1,0xb4,0x36,0x25,0xda,0x21,0x4f,0xe0,0xcb, +0xe4,0x31,0xf3,0x66,0x4f,0x09,0x36,0xba,0x5e,0x0e,0x7c,0xb9, +0xd4,0x34,0xe4,0x0f,0xc2,0xab,0xe7,0x30,0xcd,0x83,0x02,0x81, +0xc2,0x82,0x83,0x15,0xa6,0x54,0xa9,0xa2,0x20,0xdc,0x67,0xb4, +0xcf,0xac,0xc1,0xe6,0x30,0xe2,0x09,0x19,0x58,0x88,0xd2,0xba, +0x72,0x25,0x45,0x60,0xba,0xab,0x63,0xba,0xc5,0x0d,0x2a,0x53, +0x0f,0x0a,0xd1,0x4b,0xb0,0x70,0x4a,0xd6,0xa6,0x72,0x5b,0x55, +0x1c,0x3d,0x8a,0x97,0xda,0x5d,0x55,0x2b,0xc5,0x54,0xdc,0xf1, +0x57,0xde,0xf4,0xbc,0x58,0xe9,0x8b,0x77,0xd4,0x8b,0xb4,0xd2, +0x2b,0x39,0x2b,0x66,0x7b,0x88,0x44,0x87,0x25,0x62,0x06,0xff, +0xd0,0xbe,0xe2,0xa6,0x52,0x1d,0xc0,0x66,0xcd,0x9e,0xf3,0x77, +0xfe,0x3a,0x1e,0x5c,0x51,0xe5,0x4d,0x7d,0xdf,0xb8,0xa7,0x49, +0x9a,0x97,0xf2,0xa3,0x5c,0x70,0x20,0x31,0xed,0x98,0x70,0x4e, +0x79,0xcb,0xc3,0x2c,0x32,0x62,0xf2,0x38,0xe3,0xa4,0xc4,0xd0, +0x82,0xd9,0xa6,0xb6,0x38,0x9b,0xdc,0x3b,0x47,0xc8,0x57,0xc8, +0x0f,0x35,0x9c,0x9e,0xec,0xe7,0xeb,0x37,0x99,0x1c,0x3b,0xf2, +0x43,0x0d,0x7e,0x19,0xf9,0xa7,0xc9,0x43,0x35,0x98,0x3f,0xc2, +0x19,0xea,0x29,0xd6,0x1f,0xe7,0xca,0x18,0x88,0x63,0x84,0x5b, +0x5a,0xe5,0x2c,0x2e,0xbf,0x26,0xc1,0x28,0xc6,0x1b,0x57,0x30, +0x28,0xc5,0x34,0x5e,0xa7,0x35,0x11,0xb4,0x97,0xd4,0x0e,0x6b, +0xe9,0xce,0xea,0x7c,0x86,0xef,0x68,0x9d,0x79,0xdd,0x31,0x7a, +0xb1,0x96,0x28,0x36,0x13,0x45,0x78,0x85,0x8b,0x74,0xc7,0x75, +0xbe,0x78,0x85,0x6b,0x36,0x67,0x57,0xf5,0x0e,0x75,0xb5,0xce, +0x4a,0xec,0x33,0x08,0x21,0x27,0xf6,0x18,0xaf,0x5d,0x87,0x9c, +0x58,0x2f,0x06,0x4f,0x9e,0x2a,0xdc,0x2a,0x81,0x91,0x5b,0xdb, +0x30,0x4e,0x7c,0x55,0xb3,0xa6,0xdf,0xff,0xe0,0xec,0x0a,0xa8, +0x3e,0x58,0x97,0xb3,0x75,0x16,0xca,0x9e,0xe0,0xee,0xb7,0xfc, +0xde,0x24,0xcd,0x59,0xf9,0x87,0x5c,0x90,0x98,0x98,0x96,0x6e, +0x3c,0xf9,0x37,0x5e,0x6f,0xe8,0x78,0x63,0x08,0x71,0x25,0xd2, +0xd4,0xee,0xcd,0x2b,0x6e,0x07,0xc1,0x29,0x25,0x5f,0xf7,0x78, +0xc7,0x5a,0x3c,0x5e,0x5f,0x09,0x25,0xf2,0x78,0x73,0xc9,0x17, +0x96,0xcc,0x5d,0x70,0x72,0x0d,0x63,0xe0,0x2c,0xee,0xd0,0x1d, +0x60,0x67,0xf1,0x1a,0xa1,0x34,0xe1,0x00,0xf3,0x06,0xf5,0x99, +0x66,0x52,0xbe,0xe6,0x3c,0x97,0x75,0xc3,0xd9,0x96,0x17,0xc2, +0x0e,0x85,0x04,0x6e,0x9f,0xcf,0x06,0xd3,0x90,0x70,0x94,0x75, +0xff,0xd7,0x99,0xe1,0xa7,0xe8,0x2d,0x1c,0x60,0xc1,0xbf,0x2e, +0x78,0x93,0xd7,0xbb,0x2c,0x6a,0xc9,0xf0,0x70,0xdd,0x17,0x9e, +0xcf,0x66,0x11,0x4f,0xc9,0x17,0x56,0x33,0xc4,0x27,0xd4,0x3e, +0x52,0x5c,0xf4,0xf5,0x73,0xae,0x70,0x0b,0x65,0xe7,0xaf,0x9c, +0xfa,0x6b,0xbc,0x21,0x83,0x17,0xf6,0x53,0x2c,0x61,0xc4,0xe9, +0xd3,0xbc,0xc1,0x14,0xe6,0xe7,0xa7,0x47,0x16,0x14,0x9a,0x39, +0xbf,0xee,0xca,0x7a,0x62,0xaa,0x2b,0x44,0xa0,0x6f,0x05,0xac, +0x3f,0xe5,0x43,0xbe,0x19,0x15,0xb6,0xe2,0x81,0x47,0xb2,0x35, +0xaf,0x33,0x96,0xf5,0xc2,0xe4,0x91,0xe4,0x90,0x2e,0xbe,0x01, +0x87,0x4a,0x7e,0x53,0xa5,0x0b,0x32,0xfa,0x12,0x97,0xed,0x1e, +0x30,0x6b,0x6e,0xb3,0x87,0xa9,0x8d,0x71,0xd0,0x00,0xd6,0x61, +0xff,0x24,0x71,0x3b,0x98,0x4f,0x61,0x8b,0x96,0xac,0x58,0xb7, +0x37,0x65,0x73,0xda,0xba,0x4c,0x3b,0x68,0x57,0x86,0xd7,0xee, +0x48,0xdd,0x30,0x89,0x9b,0xda,0x32,0x6e,0x93,0xc8,0xb4,0x21, +0xf8,0x9e,0x32,0x4a,0x95,0x3b,0xdc,0xfa,0x5e,0x95,0xcf,0x8a, +0x8b,0xc2,0xd6,0x42,0x2c,0xb8,0xd4,0x9e,0xe1,0x11,0x0f,0xcb, +0xdd,0xab,0xb6,0x72,0xf5,0x75,0x56,0xfa,0x3a,0x93,0xc5,0x3e, +0x25,0x17,0x6b,0xf8,0x79,0xbc,0x07,0xc7,0xe1,0x85,0x13,0x8a, +0xab,0x47,0x56,0x1e,0xd7,0xa5,0x52,0x5c,0xa2,0x40,0x07,0xac, +0xa3,0x1b,0x78,0x22,0x40,0x1b,0x4c,0x7b,0xec,0x08,0x55,0x76, +0x9a,0xd6,0x1e,0x47,0xfd,0x30,0x0c,0xe3,0x5b,0x88,0x2b,0xbf, +0xb9,0x27,0xef,0x11,0xa9,0x12,0xba,0x61,0x0a,0x79,0xdb,0x2b, +0xd6,0x19,0xf6,0x1c,0x8b,0x3f,0x59,0x64,0x3c,0x3c,0x6c,0x36, +0xa9,0x34,0x19,0xed,0x56,0x0a,0x8e,0x7a,0x09,0xa3,0x24,0x6b, +0x12,0x02,0xf2,0xf4,0xae,0x8f,0x84,0xeb,0x12,0x7e,0x85,0x9d, +0x14,0xcb,0x82,0x0f,0xab,0x70,0x0f,0x65,0x65,0x97,0xfe,0x10, +0x87,0xb2,0x6a,0x6f,0x77,0x70,0x96,0x69,0xab,0xe9,0xa5,0xe8, +0xe1,0x4d,0x5a,0x6e,0x5e,0x5e,0x1a,0x67,0xf5,0x59,0x28,0x05, +0x3d,0xa1,0x24,0x02,0xda,0x20,0xac,0x25,0xc8,0x68,0x7e,0xfb, +0x77,0x9d,0x47,0xd3,0xf0,0xc8,0xeb,0xbb,0x2c,0x2d,0x3e,0x3d, +0xc7,0x78,0xc4,0x71,0xb6,0x3c,0x70,0xaa,0x7f,0xc7,0x61,0xa6, +0x16,0xf7,0x16,0xc5,0x2f,0x5a,0xb3,0x20,0xc6,0x6e,0x71,0x0c, +0x91,0xb4,0x2f,0x3d,0x21,0x3d,0xdb,0x78,0xc8,0x31,0x42,0xee, +0x3b,0xce,0x13,0xed,0x7b,0x9b,0xf2,0x46,0x73,0x56,0x8f,0x6d, +0xd0,0x7d,0xf8,0x8e,0x68,0x6d,0x5b,0x71,0xfa,0xf4,0xf1,0x94, +0x8c,0x84,0x0d,0xf1,0x62,0x83,0x6c,0x87,0xef,0x8b,0xaf,0x7f, +0xb6,0xfc,0x79,0x61,0xc2,0xc2,0x35,0x0b,0x84,0x5f,0xa5,0x6c, +0x66,0xdd,0x45,0x30,0x92,0x28,0x2f,0x1b,0x3c,0x2c,0x10,0x23, +0x87,0xf0,0xfa,0x27,0xd8,0xea,0x5d,0xcb,0xe0,0x20,0xca,0xb6, +0xa9,0xc5,0xb8,0xed,0xe5,0x3c,0xde,0xf2,0x0a,0x3b,0x66,0x27, +0x3e,0x47,0xb1,0xe3,0x89,0x60,0x57,0x24,0xc3,0xf7,0x15,0x0f, +0x55,0x76,0x69,0xed,0x0d,0x47,0x8b,0x5a,0x5f,0x56,0x65,0x12, +0xbf,0x06,0xf8,0x8a,0xdb,0xde,0x64,0x62,0xad,0x7b,0xe0,0x7e, +0xfd,0x3d,0x7c,0x89,0x8f,0xf5,0x49,0x84,0xe1,0x1a,0xde,0xec, +0x07,0x5a,0x9f,0xde,0x6c,0xb8,0xe5,0xcd,0xb9,0x17,0xc5,0xba, +0x55,0xcf,0x24,0x15,0xb5,0xd5,0x3f,0x8a,0xb9,0x1f,0x43,0x7c, +0x20,0xc4,0xff,0x76,0x95,0x41,0xc6,0xca,0x55,0x64,0xd1,0x3d, +0xc8,0xa2,0xe3,0x7e,0x74,0x50,0xfc,0xa2,0x23,0xa6,0x4f,0x34, +0x0e,0xbb,0x1b,0x0c,0xf5,0xa1,0xc1,0xdd,0xcc,0x4b,0xc7,0x23, +0x8e,0xf8,0xed,0xe2,0xad,0xae,0x31,0x6a,0x0b,0x93,0x86,0x8c, +0xde,0x9f,0x97,0x7b,0x26,0xf1,0x86,0x39,0x55,0xba,0x5e,0x10, +0x39,0xd6,0xdf,0x27,0x62,0xa8,0xd9,0x1b,0xb3,0x94,0x9b,0x60, +0x54,0x7b,0x31,0x07,0x9c,0xa3,0xc0,0x54,0x74,0xbb,0x0a,0x2b, +0x5f,0xa7,0x31,0x77,0xf1,0xaa,0x7d,0x51,0xd6,0xd3,0xdf,0x2b, +0x60,0x9b,0x32,0x1a,0x42,0xc6,0xde,0x56,0x7f,0x1d,0xa8,0x6d, +0x94,0x71,0xa5,0x70,0xff,0x76,0x7b,0x0a,0xb4,0x07,0xd1,0xa8, +0x8c,0x8d,0x8e,0x98,0x39,0xd9,0x38,0xe2,0xee,0x78,0x1d,0xed, +0xc9,0x0b,0x19,0x91,0x49,0xfe,0x84,0xf6,0x3a,0x43,0x5b,0x25, +0x84,0xd0,0x26,0x66,0x65,0x9f,0xd9,0x77,0xc3,0x9c,0x2e,0x5d, +0x3f,0x13,0x15,0x18,0x34,0x3a,0x72,0xa8,0xd9,0x0b,0x33,0x09, +0xad,0xdd,0x76,0xb6,0x75,0x59,0x91,0x13,0xf3,0x78,0xdd,0x4b, +0x5c,0xd7,0xcf,0x56,0xc4,0x4a,0x2d,0x8a,0x59,0x14,0x63,0xbb, +0x92,0x84,0x27,0x25,0x81,0xd6,0x71,0xaf,0xd3,0x02,0xb9,0xd7, +0xe4,0x20,0xb4,0xed,0x6c,0x3a,0x1d,0x74,0x39,0x2f,0x27,0x23, +0xf9,0x98,0xdd,0xa6,0xcf,0xf5,0x17,0xf6,0x3b,0x38,0xd8,0xe6, +0x67,0x1b,0xaa,0x3d,0xa1,0x97,0x02,0x73,0x31,0xf8,0x1a,0xec, +0xd4,0x63,0xb7,0xda,0xc3,0x59,0x8a,0xf8,0x30,0xdb,0x77,0x4c, +0xdb,0x06,0x57,0xb9,0x9d,0x1d,0x73,0xc7,0x2c,0xae,0x98,0x58, +0xf9,0x6b,0x24,0x27,0x27,0xc0,0x09,0x27,0x89,0xe8,0xe9,0xe1, +0x17,0x7b,0xf7,0x88,0x58,0xac,0x7e,0x15,0xd3,0x3e,0x51,0x7c, +0x61,0xda,0xc4,0xdb,0xea,0xd9,0x81,0xda,0x74,0x59,0xdb,0x07, +0xf9,0xdc,0xce,0x9e,0x79,0x11,0x3d,0x37,0xa1,0x05,0x14,0x32, +0x62,0x82,0x9f,0x02,0x93,0x0b,0xc4,0x0d,0xcb,0x0c,0xdc,0xa0, +0xcc,0x87,0xe8,0xa1,0x18,0xf3,0x7a,0x05,0xdb,0xbd,0x27,0xc7, +0x1c,0x5d,0x48,0xf1,0xd7,0x50,0x8a,0xbf,0xd4,0xef,0x7f,0xe4, +0x75,0x3d,0xc8,0xd8,0xbd,0xc3,0x36,0xe3,0x6b,0x05,0xb8,0xba, +0xf0,0x2c,0x39,0xb9,0x63,0x71,0x32,0x99,0x93,0x30,0x36,0x9d, +0x76,0x45,0xbb,0xcd,0x7a,0x31,0x80,0x8a,0xb6,0x09,0x7a,0x51, +0xfd,0x0c,0x13,0x78,0xd3,0xab,0x54,0x9e,0xca,0x54,0x1f,0x3c, +0xc7,0x15,0x1b,0xc6,0x5b,0x7d,0xc9,0xb4,0x78,0xe5,0xb6,0x7a, +0x6e,0xa0,0x36,0x15,0x43,0xfc,0x20,0x44,0xd2,0x76,0xc2,0x77, +0xbc,0x8e,0x2c,0x46,0x2a,0xb1,0xf7,0x20,0x14,0x5c,0xf0,0xb8, +0x17,0x4c,0xeb,0x87,0xa1,0x68,0x9f,0xc8,0xca,0xcc,0x31,0x25, +0xbc,0xfe,0x68,0xf6,0x15,0x04,0x9f,0xc1,0xe0,0xfb,0x30,0xad, +0x10,0xd3,0xb1,0x02,0x0a,0x0b,0xc9,0x96,0x10,0xdc,0xb1,0xe2, +0x16,0x66,0x73,0x1d,0x05,0x1c,0x40,0x7f,0xde,0xf8,0x38,0x53, +0x27,0x57,0x6d,0xa1,0x05,0xf4,0xa2,0x05,0x4c,0x11,0x6f,0x60, +0x0a,0x62,0xda,0x0e,0x38,0xa7,0x04,0xce,0x8f,0x9a,0x15,0x6a, +0x1c,0xf9,0xe5,0x44,0xb0,0x86,0xfa,0x5f,0x1e,0x3f,0x97,0x16, +0x75,0x28,0x70,0x27,0xf9,0x2f,0xf5,0x0a,0xb4,0x9d,0xa3,0xa1, +0xb1,0x0c,0x9d,0xb0,0xa1,0x58,0xd0,0x31,0x7b,0x33,0xb3,0xf2, +0xf7,0x58,0x16,0x74,0x6e,0x50,0xf0,0xe8,0x39,0x62,0x41,0x53, +0x79,0xe3,0x66,0x34,0xfb,0xba,0x0c,0x0e,0x63,0x3e,0xe7,0x5f, +0x33,0x11,0xa5,0xd8,0x9e,0x7a,0x90,0x7a,0x26,0x75,0xdd,0x5a, +0xdb,0x9d,0xf1,0xbb,0x79,0xeb,0x4a,0x6a,0xaf,0xc3,0xbe,0x40, +0x0f,0xde,0xf4,0x10,0x13,0x0b,0x05,0x2b,0x4b,0x14,0x6d,0x95, +0x3e,0x47,0x92,0xad,0xe7,0xb2,0xf6,0x35,0xba,0x71,0xc5,0x4c, +0x86,0x3c,0x42,0xbc,0xc2,0x98,0x37,0x66,0x6c,0x9d,0xd6,0x85, +0x9b,0x4a,0x74,0xc0,0x3d,0xa8,0x56,0xbc,0xa0,0x98,0x0d,0x8c, +0x8f,0x10,0x17,0xb5,0xc5,0x0b,0x8a,0x1b,0x0d,0x5c,0x7a,0x98, +0x9c,0x3c,0xf1,0x82,0x62,0x02,0xfd,0x1c,0x47,0x8b,0x17,0x12, +0x7f,0xc4,0xb4,0xff,0xaa,0x50,0xff,0x4b,0xdc,0x05,0xde,0xa5, +0x8c,0x81,0x5e,0x01,0x37,0xd4,0x1f,0x07,0x6b,0x9f,0xcb,0xd8, +0x55,0x5d,0x4f,0x5e,0xbd,0x07,0x79,0xf5,0xb8,0x9e,0x64,0x33, +0x28,0x7a,0xce,0xf4,0x49,0xc6,0xe1,0x95,0xe3,0xe0,0x7d,0xb0, +0xaa,0x38,0x75,0xf1,0xd8,0x9c,0xc3,0xc1,0xbb,0x4d,0x1b,0x7f, +0x2e,0xd4,0xbc,0x7c,0xfe,0x29,0x83,0x11,0x4d,0xca,0x4c,0xc9, +0x35,0x70,0x7f,0x4e,0x6e,0xd6,0xbe,0x0b,0xe6,0x24,0xa9,0x3c, +0x2b,0x6a,0x6c,0x40,0x60,0x84,0x9b,0x99,0xb6,0x3c,0xa5,0x02, +0xb8,0xf4,0xe5,0xc6,0xca,0x84,0xf3,0x5b,0x96,0x15,0x72,0xab, +0x47,0xcc,0x43,0x6b,0xca,0xe6,0xe2,0x7c,0x05,0xa6,0xa0,0xeb, +0x35,0xd2,0xa1,0x85,0x4c,0xcf,0x6b,0xb8,0x5e,0xb7,0xe8,0x50, +0x5b,0xa6,0xfd,0xa3,0x42,0xd2,0xba,0xa9,0x4f,0x88,0x02,0x2f, +0xa2,0x60,0xb9,0xe6,0x24,0x68,0x1b,0x7b,0x43,0xbd,0x3f,0x58, +0x5b,0x20,0x6b,0x9d,0xa0,0x5c,0x09,0x9e,0x3f,0x87,0x14,0xc9, +0xad,0x72,0xbc,0x4e,0xd0,0xc9,0xf3,0x19,0x73,0x92,0xc6,0xd1, +0x02,0xfc,0x54,0xa0,0x79,0x8d,0xfe,0x5d,0x06,0x4e,0x34,0x4f, +0x27,0x82,0x12,0xb3,0xb3,0xb3,0xf6,0x5e,0x30,0x1f,0xa1,0x58, +0x60,0x4e,0x60,0x60,0x60,0xa4,0x2b,0xa9,0x71,0x3a,0x11,0x64, +0x6f,0x21,0x68,0x2b,0x6f,0xde,0x89,0xa9,0x09,0x98,0xaf,0x2c, +0x8e,0x5f,0xb4,0x96,0x5b,0x21,0xdb,0x93,0x2a,0x74,0x69,0x0f, +0xe9,0x52,0x4f,0xa1,0x4b,0x9d,0x48,0x97,0x2e,0x59,0x74,0x29, +0x7e,0x43,0x82,0xe5,0xe3,0x17,0xef,0xe8,0xca,0xe4,0x05,0x1f, +0x8b,0x44,0xc8,0x84,0x6b,0xb0,0x47,0xff,0xf8,0x45,0x83,0x22, +0x46,0x24,0xdf,0xe3,0x4a,0x15,0xc3,0x34,0x81,0x81,0xd7,0xd5, +0x98,0x3a,0x0f,0x2f,0x73,0xbb,0x21,0xec,0x8a,0x9e,0xe0,0x70, +0xb2,0x8f,0x86,0xc0,0xa1,0x18,0x26,0x22,0x07,0x6e,0xf2,0x61, +0x93,0x6e,0xa8,0x64,0xa8,0x4c,0xcc,0x1b,0x53,0x05,0x8f,0x5e, +0xbf,0x14,0x5f,0x2c,0xf2,0xe5,0x0d,0x1b,0x30,0x5c,0xad,0x2c, +0x80,0xa8,0x21,0xb8,0x98,0x54,0x67,0xcf,0xee,0x1c,0xf3,0xbc, +0x62,0xde,0xb0,0x0e,0x7b,0xa1,0xe4,0x6b,0xbd,0x7d,0x5f,0x2e, +0x97,0xc7,0xcf,0x9f,0x37,0x33,0xcc,0xe8,0x51,0x1e,0xfc,0xeb, +0x2f,0xe5,0x99,0xa5,0xa9,0xf3,0x0e,0x4d,0xa0,0xa9,0xcb,0x1d, +0xb0,0x89,0x32,0x47,0xf2,0x98,0xb8,0xff,0xd4,0xc9,0xe3,0xfb, +0x4b,0xcd,0x7b,0xa5,0xd2,0xe3,0x11,0xe3,0xc7,0x4d,0x8c,0xf0, +0x10,0xa1,0xb2,0x17,0x2b,0xd3,0xba,0x28,0x73,0xef,0xc1,0x6c, +0x70,0xc6,0x5c,0x6f,0x98,0xd3,0x0f,0x67,0xa3,0xd1,0x87,0x95, +0xbc,0x5e,0x22,0x3e,0x70,0x17,0x28,0x5e,0x20,0xbc,0xf9,0x3a, +0xe1,0x17,0xb7,0xe2,0xa9,0xf7,0x29,0xea,0xbd,0xe4,0x1e,0xf9, +0x36,0xce,0x98,0xee,0x0d,0x53,0xfb,0x61,0x08,0x1a,0x5f,0x5d, +0x65,0xc5,0xdc,0xaa,0x82,0x79,0x29,0x90,0x42,0x3d,0x53,0xa4, +0x4b,0xde,0x62,0xaf,0x9b,0xa8,0xef,0x75,0x34,0x46,0xdd,0x8e, +0x24,0x34,0x1d,0x7f,0x74,0xc6,0x2b,0x14,0xbf,0x5c,0xd1,0xdf, +0x2c,0xbc,0x43,0x40,0x99,0x48,0x50,0x52,0xbc,0x21,0xac,0x1f, +0x05,0x41,0x46,0xfd,0x9b,0xe0,0x96,0x64,0x44,0xf1,0x9b,0x64, +0x44,0xe4,0xe7,0x34,0xee,0x37,0x11,0xe7,0x70,0x43,0xa0,0xb8, +0x5b,0x52,0xac,0x2c,0xd9,0x2c,0xf2,0x4d,0x8b,0x63,0xc4,0x75, +0xb0,0xbd,0xc7,0x13,0x68,0x77,0x3c,0xe8,0x1c,0x29,0xb7,0x9d, +0xec,0x8b,0xf5,0x1d,0x4c,0xcb,0x32,0x5e,0xc7,0xb0,0x85,0xf7, +0x61,0x11,0x38,0x61,0x99,0x37,0xc4,0xf6,0xc7,0xc5,0x68,0xef, +0xc0,0xd2,0xa4,0x5f,0x6f,0xc7,0x6f,0x2b,0x37,0xaf,0xde,0x78, +0x32,0xe4,0x52,0x49,0x76,0xe6,0x91,0x2c,0x3b,0xf1,0x71,0xea, +0x8d,0x71,0xd0,0x0c,0x1b,0xdb,0xe6,0x67,0x19,0x74,0xf0,0x99, +0x96,0xa9,0x85,0x11,0x51,0xc7,0xbc,0x61,0x7a,0x3f,0x9c,0x82, +0x46,0xce,0x33,0x59,0xf1,0xeb,0xaf,0x18,0x3c,0x58,0xa9,0x3c, +0x80,0xf1,0x67,0x70,0xfc,0x7d,0x98,0x51,0x40,0x36,0xec,0x3a, +0x14,0x09,0xe3,0x40,0xc3,0x8e,0xfd,0xcd,0x30,0x07,0x76,0x54, +0xfa,0xce,0x92,0x97,0xd1,0x47,0xaf,0x85,0x20,0x05,0x2e,0x97, +0xe2,0x65,0x09,0xd6,0xe0,0x16,0x65,0x3f,0xf4,0x74,0xd9,0xb0, +0x00,0x3f,0x31,0x38,0x4b,0xf3,0xe1,0x13,0x97,0xe5,0xfb,0xb1, +0xa7,0xe1,0x33,0x6f,0xb8,0x5b,0x64,0x99,0x27,0x7c,0x8b,0xbe, +0x14,0xa6,0x15,0x50,0x98,0xb6,0x47,0x59,0x28,0xd8,0xe4,0x22, +0x72,0x24,0x82,0x4d,0x5c,0xb9,0x2d,0xae,0xf9,0x7f,0xa5,0xeb, +0xc1,0x6d,0x6e,0xd3,0x94,0x84,0xe4,0x20,0x09,0x49,0x23,0x89, +0x9b,0x0e,0x32,0x5a,0xab,0x95,0x5c,0x21,0x55,0x6f,0x74,0x8e, +0xc1,0x7f,0x11,0xb3,0xe6,0x6d,0x88,0x5d,0x15,0xbd,0x78,0x61, +0x8c,0x6d,0xdc,0xba,0x03,0x87,0x36,0x27,0xad,0x4b,0xb1,0x83, +0xf8,0x73,0xda,0x63,0x91,0x09,0x8c,0x1d,0xee,0x32,0x0e,0x67, +0x0d,0x7f,0x63,0x62,0xf2,0xd3,0xd6,0xeb,0x26,0x66,0xcd,0xee, +0x65,0x90,0x48,0xa2,0x9c,0x5a,0x4c,0x4c,0x69,0x74,0x9e,0x41, +0x4f,0xa4,0x65,0x3d,0x72,0x1a,0x8f,0x48,0xe0,0x8f,0xc1,0x8a, +0xc8,0x5f,0x2c,0x58,0xb2,0x68,0x29,0x41,0x4c,0xdc,0x93,0xb0, +0x77,0xdd,0x41,0x3b,0xd8,0x75,0x46,0xfb,0x75,0x0c,0x1c,0x96, +0x96,0xf8,0x0d,0x9e,0x8a,0x33,0xc6,0x1e,0xf1,0xb5,0x85,0x96, +0x69,0x8f,0x92,0xf2,0x8f,0xec,0xaa,0x49,0x7d,0xf4,0xb4,0x4d, +0xca,0x37,0x88,0x1f,0x4b,0x7c,0x5d,0xa1,0x7e,0x2d,0x6b,0xdd, +0x96,0xf2,0xc6,0x7d,0xd9,0x06,0x9c,0xab,0xa8,0x6b,0x07,0x48, +0xda,0x96,0x05,0xf1,0xee,0xe2,0x35,0xde,0x9d,0x6b,0x5e,0xe3, +0xcd,0x9b,0x3c,0x62,0xbb,0x71,0xb7,0x02,0xf5,0x64,0x8b,0x2e, +0xc6,0xe5,0xdb,0x46,0xc2,0x7d,0x86,0xb5,0xe5,0x87,0x98,0xab, +0xdc,0x52,0x97,0x14,0x6b,0x4b,0x6e,0xaa,0xeb,0x4a,0xb4,0x3b, +0xb8,0x5d,0xfc,0xe8,0xa0,0x54,0x84,0xcc,0xe7,0xd8,0x72,0x01, +0xf0,0xc7,0x52,0xf1,0x9a,0xef,0x09,0x18,0xa6,0x1c,0x81,0xba, +0x22,0x03,0xd2,0xd8,0xf2,0xd3,0x83,0xc6,0x22,0x03,0x52,0xd7, +0x80,0x6d,0x3d,0xab,0xde,0x2d,0x91,0x2c,0x33,0xfb,0x44,0x70, +0x79,0x77,0x51,0x0e,0xc3,0xee,0xdc,0xb6,0x54,0x84,0x28,0xaf, +0xee,0xa8,0xaf,0x44,0x30,0x4a,0x21,0x24,0x26,0x62,0x0b,0x65, +0x34,0x45,0x4a,0xe3,0x8c,0x43,0xef,0x8d,0x85,0x86,0xd0,0xe8, +0x5e,0xee,0xb5,0xcc,0xf0,0xa3,0xa3,0xc9,0xba,0x81,0x4d,0xa9, +0x96,0xe8,0x01,0xf6,0x32,0x7c,0x80,0x1d,0x95,0x29,0xd2,0x10, +0x9f,0x83,0xf9,0x67,0x0a,0x0e,0xde,0x30,0xa7,0x88,0xb0,0x69, +0x8c,0xaf,0x4f,0xf8,0x60,0xb3,0xa7,0xf8,0x71,0xc1,0xf7,0xdc, +0x6a,0x2f,0x3b,0xcb,0xad,0x1f,0xb2,0xfb,0xe2,0xab,0x1e,0x1e, +0xc2,0xb2,0x79,0x5d,0x83,0xcf,0xc9,0x3b,0x20,0xcb,0x16,0xaa, +0x97,0x85,0x65,0xa3,0xa0,0xea,0x85,0x1e,0x54,0x3d,0xa7,0x2d, +0xc5,0xdd,0xe2,0x13,0xb4,0x50,0xfc,0xe6,0xcd,0x9e,0x3a,0xc1, +0xe8,0x72,0x2f,0x50,0xc7,0x9e,0x7d,0xf9,0x44,0xc4,0x51,0x5f, +0x81,0xbd,0x51,0x89,0x96,0xe8,0x09,0xb6,0x32,0xb4,0xc7,0x0f, +0x14,0x11,0x9e,0x1d,0xc8,0xcb,0x2f,0xd8,0x5f,0x61,0x16,0x41, +0x5b,0x84,0xaf,0xbf,0xcf,0xec,0xc1,0x66,0x0f,0xdc,0xac,0xdc, +0x7a,0x21,0xb0,0x97,0xd9,0x46,0xe2,0x44,0xf6,0xe0,0xe1,0xba, +0xf5,0xf7,0xcd,0xea,0x70,0x4c,0x50,0x44,0xbe,0x76,0x51,0x8d, +0xfe,0x08,0xa3,0x96,0x6b,0xdc,0xe7,0x14,0x2d,0x77,0x17,0x46, +0xad,0x83,0x30,0x6a,0xa7,0x73,0x8e,0x09,0x07,0x61,0x63,0xc2, +0xaa,0xf8,0xe5,0xe0,0x20,0xbc,0x37,0xdd,0x43,0x18,0x20,0x3c, +0x84,0xd0,0x6b,0xb4,0xfd,0xe5,0xeb,0xf4,0x3e,0xd4,0xe9,0xfd, +0xaa,0xea,0x16,0xc3,0xc3,0xca,0x2d,0x30,0xbc,0x3a,0xc0,0xd4, +0xf6,0x78,0x48,0x99,0xbf,0x85,0xb7,0x9c,0xc9,0x92,0x37,0xa7, +0x88,0x0f,0x23,0xb4,0x7e,0x93,0xf0,0xfd,0xcc,0x2f,0x10,0xeb, +0xf4,0xcb,0x19,0x6b,0x7b,0x2d,0x2f,0x37,0xe3,0x68,0xc6,0x26, +0x52,0xbe,0x84,0xe5,0xc4,0xbd,0xf7,0xf4,0xe4,0x49,0xb7,0x4b, +0xe4,0x57,0xcc,0x83,0xf1,0xce,0x38,0x95,0xd7,0xe2,0x8c,0xd7, +0x9a,0xc8,0xb4,0x8c,0x3b,0x92,0xf6,0x15,0xfc,0xcc,0xa5,0x44, +0x86,0xdb,0x94,0x5b,0xbf,0xbd,0x7e,0x9f,0xc1,0x0a,0x6c,0xa7, +0xc0,0xa4,0x52,0x9c,0x24,0xe1,0x71,0xdc,0x49,0x96,0x70,0xc1, +0x10,0x5c,0xf5,0xaa,0x8c,0x91,0xdf,0xa0,0x14,0x69,0xbd,0xbd, +0x7f,0x8f,0x93,0xc7,0x45,0xcf,0x15,0x19,0xc3,0xf2,0xb1,0xbf, +0xfe,0x5a,0x9e,0x7b,0x36,0x7d,0xee,0x91,0x9a,0x5f,0x6c,0x70, +0x91,0xb6,0x9d,0x74,0x20,0x2b,0xf3,0xd8,0x41,0x4b,0xda,0x36, +0x3c,0x38,0x68,0xe2,0x6c,0x4f,0x61,0x01,0xe7,0xb0,0x50,0xad, +0xbe,0x32,0xef,0x01,0x84,0x83,0x1b,0xe6,0x7a,0x40,0x64,0x5f, +0x0c,0x47,0x87,0xbf,0x7c,0xc6,0x20,0x44,0x58,0xc1,0x7d,0xd7, +0xe1,0x4b,0x8b,0x15,0x9c,0xc3,0xc6,0xd0,0x88,0x98,0x07,0x30, +0x89,0x46,0xa4,0x79,0x40,0x58,0x5f,0x9c,0x2c,0x5e,0x6c,0xd0, +0x85,0x89,0x2c,0x2a,0xaf,0x55,0xc9,0xa8,0xe7,0x51,0xe9,0x12, +0x29,0x4e,0x7b,0x9c,0x8e,0xed,0x2d,0x63,0x54,0xf2,0x35,0x14, +0xec,0xf0,0xd2,0x19,0xef,0x40,0x06,0xdc,0x21,0x2b,0x18,0x81, +0xfb,0x05,0x94,0x09,0x04,0x25,0xc5,0x03,0x42,0xfa,0x92,0xc5, +0x74,0x90,0x6a,0xc2,0x88,0x9a,0x3c,0xec,0xfb,0x22,0x0f,0x0b, +0x5b,0x45,0x1c,0xbd,0x5b,0xd1,0x5f,0xdf,0x18,0xb3,0xc4,0xb2, +0x74,0x27,0x12,0x4e,0x51,0x60,0xe0,0x34,0x5b,0xfe,0x60,0xb2, +0x0f,0x5a,0xe3,0xbb,0xa6,0x65,0xc7,0xc8,0xf6,0x2d,0xfa,0x0a, +0x16,0x52,0xcc,0x5c,0xe6,0x01,0x4b,0xfa,0xe2,0x42,0x74,0x10, +0xb6,0xef,0x97,0x3b,0xba,0xed,0xdb,0x74,0x6a,0xf2,0x85,0xd2, +0xec,0x2c,0xb2,0x7d,0xc4,0xfe,0xd5,0x9b,0x96,0x93,0xed,0x6b, +0x6a,0x7b,0x26,0xdb,0x20,0xc0,0x8b,0xf9,0xc4,0x3e,0x20,0xaf, +0xc8,0x0d,0x8f,0x7b,0xc0,0xb4,0xbe,0xe4,0x15,0x39,0x70,0xd3, +0x5c,0xf6,0x08,0x82,0x0b,0x30,0xf8,0x21,0x4c,0x2b,0x22,0x7f, +0xe8,0x2e,0x14,0x16,0xc9,0xa2,0xf7,0x68,0x4b,0xef,0x10,0xea, +0x7d,0xec,0x8f,0xde,0xe6,0x8e,0x0c,0x42,0xdf,0x18,0xb9,0xd5, +0xb8,0x8f,0x8c,0x5c,0x3f,0x97,0x8d,0x0b,0xd0,0x91,0x8c,0xdc, +0x02,0x70,0x74,0x89,0xdb,0x8f,0xfd,0x78,0x6d,0x4f,0x46,0xe3, +0x69,0x67,0xec,0x42,0xf6,0xad,0x30,0x45,0xc8,0xce,0xe2,0xaf, +0x28,0x5e,0x1a,0x21,0xec,0x5b,0xc8,0xc7,0x14,0x47,0x99,0x78, +0xbd,0x6a,0x06,0x75,0x68,0x47,0xab,0xef,0xfb,0x6c,0xb9,0x3c, +0x21,0x3a,0x7a,0x7a,0xa8,0xd1,0xfd,0x6c,0xc0,0xf7,0x3f,0x9c, +0xcd,0x29,0x4b,0x8b,0x3e,0x2c,0x32,0xc0,0xf2,0x47,0xfa,0x7a, +0xfa,0x84,0x1c,0xcc,0xcc,0x4c,0x3f,0x58,0x48,0xeb,0x59,0x90, +0x1e,0x1e,0x1c,0x1c,0x12,0x3e,0xda,0x6c,0xad,0x4e,0x13,0x97, +0xe1,0x74,0x25,0x82,0x2b,0x65,0xca,0x00,0xad,0x82,0x04,0xe9, +0x81,0x6a,0x4d,0x8e,0xfd,0x6c,0x72,0xec,0x87,0xdf,0x0b,0xd6, +0xb5,0x29,0xf3,0x22,0x39,0xf6,0xbe,0xbb,0x84,0x36,0x15,0x6b, +0x89,0x5e,0x42,0x9b,0x3a,0xa0,0x99,0x3c,0xb3,0xc1,0x3e,0xfb, +0x73,0x4e,0x17,0xec,0xab,0x20,0xcf,0xac,0xa2,0x20,0xca,0x2f, +0xc0,0x27,0x62,0xb0,0xd9,0x9d,0x3c,0xd6,0x5b,0xdf,0x0b,0x09, +0x6c,0x8c,0x13,0x28,0x02,0x7b,0xe1,0x22,0x8e,0x0f,0x20,0x11, +0x4a,0x5d,0xc4,0x15,0xe5,0x36,0xb4,0x27,0x2d,0x5c,0xb3,0xd0, +0xb2,0x30,0xbc,0xd5,0x51,0x36,0x06,0x1b,0x39,0x98,0xf2,0x83, +0xce,0x17,0x65,0x9f,0x3a,0x7c,0xd2,0x2e,0x7e,0x53,0xfc,0x1a, +0x8a,0x8c,0xec,0xb0,0x81,0xe0,0xb6,0xe6,0xb7,0x8b,0x20,0xfc, +0x2c,0x62,0x38,0xde,0x78,0x90,0xf0,0x5e,0xd7,0x2b,0x0b,0xe3, +0xc5,0x79,0x87,0x78,0xc5,0xfd,0x7a,0x43,0x62,0x6a,0x7c,0x5a, +0x96,0xf1,0xf0,0xe0,0x08,0x79,0xd0,0xb4,0xb1,0xe2,0x15,0xf7, +0x5f,0x8a,0x57,0xdc,0x2f,0xa4,0xd8,0x6b,0xc9,0xf2,0xf5,0x86, +0x7d,0xa4,0xb0,0x99,0xc6,0x83,0x43,0xa2,0xe4,0x01,0xe2,0x45, +0xf7,0x9f,0x58,0x5e,0x74,0x9f,0x91,0x92,0xa1,0xbf,0xe8,0x7e, +0xf3,0x52,0x9a,0x44,0x2d,0xdb,0x1b,0xb9,0x54,0x93,0xbe,0xb9, +0xe6,0x45,0xf7,0xcd,0xf5,0xf7,0xdc,0x93,0xc6,0x7e,0xa3,0x6b, +0xec,0xd7,0x42,0x63,0x49,0xa1,0xfe,0x41,0x0a,0x4b,0x11,0xd7, +0x4e,0xc5,0x92,0xef,0xa6,0x2d,0x62,0xd9,0xba,0x43,0x87,0x12, +0x0e,0xaf,0x4b,0xa5,0x2d,0xa2,0x4c,0x7b,0xec,0x4e,0x5b,0xc4, +0x52,0x17,0x97,0x60,0x0c,0x1f,0x26,0xb6,0x08,0x9e,0xf5,0x20, +0xed,0x4c,0xfa,0xce,0x4d,0xbb,0xd6,0xec,0x5a,0x4a,0xfb,0xc3, +0xbb,0x96,0xfd,0x41,0x28,0xea,0x2d,0xa1,0xa8,0xaa,0x8d,0xae, +0xa8,0x5b,0x95,0x4a,0x7f,0x38,0x9c,0x8f,0x87,0xc4,0x37,0x0e, +0xe0,0x10,0x5e,0x51,0xe6,0xae,0x5f,0x4a,0xd0,0x17,0xc5,0xd2, +0x76,0xb1,0x7f,0x5f,0x42,0xe2,0xba,0x24,0xda,0x2e,0xf4,0x4c, +0x79,0x92,0x14,0xe3,0x33,0x34,0x0c,0x67,0xf9,0x26,0x8f,0xb1, +0x85,0xe6,0xe9,0x0f,0x0f,0xe7,0x27,0xef,0xdc,0xb8,0x67,0xf5, +0xce,0x38,0x48,0xea,0x6a,0x7b,0xb8,0xc0,0x60,0xdd,0x46,0x50, +0xac,0x7e,0x43,0xe6,0x78,0xf5,0x5b,0x24,0x7f,0x82,0x23,0x15, +0x75,0x79,0x7f,0x49,0xfb,0x5c,0x24,0xc7,0x57,0xec,0x37,0x74, +0xba,0x09,0xc9,0xda,0x35,0x5d,0x2c,0x57,0x6b,0xd6,0xe2,0xfb, +0x1c,0x7f,0x3b,0xd5,0xae,0x38,0x92,0x37,0x34,0x32,0x9c,0xa6, +0x1c,0x06,0x6b,0xe1,0xfc,0xda,0x58,0x9c,0x5f,0x1b,0xe1,0xfc, +0x5a,0xeb,0xce,0xef,0x7f,0x9f,0xcc,0xad,0x97,0x34,0x8d,0x27, +0xd8,0x89,0xb7,0x7c,0x87,0xc1,0x07,0xcb,0x64,0xff,0x79,0xf3, +0x66,0x4e,0x33,0x7a,0xde,0xf0,0x87,0x9e,0xd0,0xeb,0x46,0x5e, +0xc9,0xd1,0x79,0x49,0x7e,0xbb,0x4c,0x9b,0x64,0xec,0x80,0x8a, +0x32,0x55,0x6a,0x19,0x94,0x74,0xfc,0x58,0xd6,0xa1,0x97,0xe6, +0xa3,0xd2,0xcb,0xac,0x59,0x93,0x26,0x06,0xcd,0x6c,0x49,0xf2, +0xa8,0xe7,0x39,0xba,0x28,0x2e,0x51,0x22,0xcf,0xe1,0xa2,0xe7, +0x39,0x2e,0x67,0x46,0xa4,0xbb,0xec,0x23,0xd9,0x7b,0x2b,0xcf, +0xd1,0xf7,0x4d,0x9e,0x23,0x4f,0xe4,0x39,0xfc,0xff,0xc8,0x73, +0x38,0xf5,0x61,0x10,0xd1,0x5d,0x5c,0xed,0xd0,0x13,0x1d,0x5b, +0x3f,0x7a,0x02,0x51,0xdd,0x3b,0xb9,0xbe,0xc9,0x76,0x34,0x7c, +0x22,0xb2,0x1d,0x7d,0x59,0x37,0xb4,0x75,0x23,0xaf,0x73,0xc1, +0x0d,0xc8,0xe9,0xf4,0x35,0x44,0xa1,0x81,0xb7,0x0a,0x67,0x59, +0x27,0x8e,0x1c,0xdf,0xc8,0x5b,0xd3,0x5c,0x38,0xbc,0xbf,0x70, +0xcb,0x92,0x35,0xf8,0x0b,0xdb,0x93,0x1e,0x7f,0x22,0xdf,0x98, +0x14,0xf2,0x90,0xc6,0xb5,0xee,0xc6,0xc8,0xa2,0x0e,0x9f,0x13, +0x19,0x46,0x2e,0x7c,0x85,0x57,0x28,0x2b,0xbe,0x78,0x3c,0x32, +0x65,0xf8,0x5e,0xd3,0x06,0x70,0xd2,0x53,0x07,0x4e,0xe2,0x9c, +0xa5,0x93,0xe2,0x2b,0x52,0x07,0x29,0x59,0x39,0x79,0x29,0x60, +0x30,0xe7,0x4b,0x60,0x95,0x37,0x25,0x20,0xc8,0x7f,0x8a,0x20, +0xb0,0x31,0x7e,0xa6,0x5d,0x60,0xcd,0x2b,0x7e,0x87,0xa8,0xbe, +0xd8,0xd8,0x03,0x3a,0xcb,0x71,0x7d,0xfd,0xc7,0x62,0xfd,0xee, +0xd9,0x01,0xb6,0xd7,0x0a,0x72,0x8f,0x27,0x67,0x24,0xc4,0xeb, +0x72,0xd8,0x01,0x99,0x6d,0x56,0x36,0xb6,0xfc,0xe7,0x82,0xcd, +0x8b,0x78,0xc3,0xef,0x18,0x49,0xb2,0x9e,0x6c,0x69,0x5f,0x8a, +0xfd,0xee,0x8a,0xaf,0x91,0x24,0x2b,0xf3,0x27,0x0d,0x99,0x3b, +0x98,0x5c,0xe1,0x28,0xde,0xa2,0x1e,0xe3,0x0a,0x45,0x8d,0xe1, +0x8e,0xd8,0xd0,0x03,0x66,0x75,0x23,0x23,0xda,0x46,0xe6,0xf5, +0xa6,0xb2,0xe8,0x67,0x30,0x0d,0x7c,0x3a,0x57,0x42,0xb4,0x63, +0x77,0x37,0x98,0x80,0x27,0x2a,0xe0,0x47,0xac,0x57,0x49,0xba, +0x24,0xba,0xcf,0x76,0xc4,0x46,0x1e,0x10,0xda,0x8d,0xec,0x28, +0x75,0xb7,0xf6,0x67,0xb1,0xcf,0xc8,0x77,0xf2,0xe9,0x51,0x09, +0x0b,0x1c,0x7b,0xe2,0x33,0x72,0x4e,0x9f,0x61,0xc3,0x4a,0xe9, +0x3c,0x82,0x82,0xed,0x61,0x2e,0x90,0x61,0xae,0x9a,0xc1,0x60, +0xce,0x20,0xfd,0x03,0x08,0x96,0x2c,0x0e,0xaf,0xd5,0x8b,0x95, +0x72,0x43,0x7b,0x91,0xc7,0x99,0x00,0xa3,0xfb,0x56,0x40,0x54, +0x97,0x6b,0x4f,0x61,0xce,0x39,0xf1,0x1d,0x84,0x65,0xe2,0x3b, +0x08,0x56,0x4e,0xf8,0x02,0x4e,0xc0,0x0b,0x67,0x09,0x4f,0x88, +0xef,0x20,0xd4,0x11,0xdf,0x41,0xe0,0x4a,0x01,0x83,0x48,0x1d, +0xd0,0xa2,0x6e,0x18,0xad,0xe3,0x0f,0x60,0x31,0xcf,0x20,0x1a, +0x7c,0x5a,0x55,0x40,0xf4,0x07,0x05,0xd2,0x6a,0x7c,0x37,0xc4, +0x83,0x2c,0x35,0x2b,0x18,0x6f,0x7b,0xf6,0xdc,0xa9,0xec,0xa4, +0xac,0x8d,0x9b,0x12,0xf4,0x9f,0x71,0x63,0x33,0xdb,0xfc,0x4c, +0x6c,0x0a,0xc6,0x45,0x5b,0x97,0xac,0x59,0xb8,0xc4,0x6e,0x49, +0xac,0xf0,0x6d,0x4f,0xc5,0x67,0x9f,0x35,0xa6,0xf8,0x5d,0x17, +0x0b,0xdc,0x9f,0x0d,0x42,0xc5,0x03,0xa6,0x74,0x23,0x77,0xbb, +0x8d,0xfc,0xca,0x8b,0x59,0xd2,0x8b,0xbd,0x08,0xf2,0xa0,0x8f, +0xf1,0x5b,0x28,0x28,0xc6,0x05,0x4f,0xf5,0xf4,0xa2,0xb1,0xc2, +0x32,0xa9,0xf0,0x41,0x68,0x23,0x72,0x8a,0xf2,0x2b,0x4f,0x66, +0xc9,0x31,0xf6,0x14,0x9d,0x3b,0x8c,0x84,0xeb,0xe7,0xb0,0x5d, +0x05,0x84,0xd3,0x84,0x6a,0xe3,0x92,0x57,0x7d,0x44,0x3e,0x71, +0x8b,0x38,0xdc,0x7e,0x8c,0xad,0x95,0x11,0x73,0xa3,0xa6,0x4c, +0x36,0xba,0x56,0xf8,0x80,0x1b,0xb8,0x55,0x14,0x96,0x67,0x44, +0xa5,0x8c,0xd8,0x43,0xe2,0x30,0x44,0x17,0x87,0x21,0x32,0xb9, +0x80,0x1f,0x58,0xc4,0xe1,0xe8,0xa9,0xcc,0xbc,0xe4,0x37,0xe2, +0x30,0x2d,0x78,0x9c,0xff,0x54,0x8b,0x38,0x0c,0x54,0xca,0xab, +0xcb,0x5c,0x61,0x5e,0xa7,0x8a,0x17,0x30,0xb5,0xd3,0xf9,0x85, +0x22,0x6f,0xf5,0x76,0x26,0xcb,0xfb,0xa1,0x8c,0xab,0xd1,0x45, +0xb1,0x24,0xbd,0x1c,0x44,0xd2,0xeb,0x9c,0x8b,0x84,0x1b,0xad, +0x6a,0x12,0x5b,0xbc,0x4e,0x28,0x83,0x19,0xdd,0x2b,0x9f,0xc0, +0x92,0xee,0x37,0x9f,0xc0,0xd4,0x0b,0x32,0x4e,0xc5,0x52,0x65, +0x91,0xb0,0x7e,0x89,0xc9,0xf1,0x29,0x27,0x8c,0x07,0x07,0xcf, +0x91,0x87,0x4d,0x0d,0xea,0xe0,0x69,0x6a,0x71,0x8d,0xb7,0xec, +0xc4,0x8e,0x1b,0xf7,0x0f,0x9e,0x2b,0x3b,0x8d,0x1f,0x83,0xcd, +0x3e,0x33,0xe5,0x8e,0xb9,0x7a,0x22,0x37,0x25,0x25,0xc5,0x6e, +0xed,0xda,0x84,0xf8,0xad,0x6b,0xb6,0x2c,0xb3,0x23,0xc9,0x7b, +0xe7,0x7a,0x66,0x5e,0x2a,0xd5,0x6d,0xde,0xa8,0x7f,0x0c,0xa4, +0x7d,0x07,0xdb,0xd3,0x05,0xd8,0xf2,0xc9,0x82,0x04,0xfd,0x98, +0x59,0xd7,0x9f,0x8f,0xb0,0x96,0x9e,0x91,0x1a,0x22,0x32,0x52, +0x43,0xd3,0x3c,0xc9,0xe2,0xe5,0xdc,0x4f,0x3f,0x7d,0x6c,0x67, +0xfc,0x1e,0x4b,0x6a,0x4a,0x12,0xa9,0xa9,0xad,0xbf,0xce,0x15, +0xa9,0xa9,0x0c,0x3d,0x35,0x55,0xeb,0x99,0x34,0x48,0x7c,0xef, +0xe1,0x19,0x44,0x89,0x1c,0x55,0x84,0xb8,0xe4,0xed,0x0e,0x13, +0xda,0x5f,0x98,0x0d,0x47,0x0e,0x5c,0xf8,0x01,0x26,0x94,0x89, +0xcf,0x39,0x34,0x50,0x70,0xd7,0x55,0xfd,0x6b,0x12,0x25,0x4a, +0xf4,0x92,0x15,0x6b,0xf7,0x27,0x26,0xec,0xe7,0xad,0xdf,0x65, +0x3e,0x83,0xc8,0xf8,0x79,0x1e,0x27,0x5f,0xd9,0x98,0xf1,0x20, +0xe9,0x4c,0xf2,0xae,0xf8,0x7d,0x6b,0x76,0xc7,0xc1,0x9e,0xce, +0xb6,0x27,0x0a,0x70,0xc3,0xbd,0x39,0x1b,0x17,0xac,0x8c,0x8e, +0xb1,0xd0,0xd6,0xa5,0xd5,0x28,0x75,0x5d,0x5f,0x99,0x1b,0x4c, +0xac,0x6d,0x25,0x9c,0x6a,0xfe,0x54,0x1e,0xc4,0x1b,0xbe,0xcb, +0x74,0x4e,0x45,0x74,0x79,0xf3,0x09,0x8a,0xa7,0x10,0x71,0x41, +0x7c,0x82,0xa2,0x23,0x91,0xf4,0x54,0xff,0x04,0xc5,0x28,0xfd, +0xce,0x79,0x33,0x03,0xba,0x49,0xb3,0xa1,0x59,0xff,0xa5,0x47, +0x50,0x31,0x60,0x7b,0xfd,0x13,0x14,0x1d,0x2c,0x42,0x32,0xa1, +0xc3,0xf9,0x99,0x90,0x9a,0x74,0xfe,0x7b,0x98,0x70,0x4e,0x10, +0xdb,0x90,0x88,0xbd,0x62,0xf9,0xf6,0xc4,0x62,0x05,0xfa,0xc4, +0x49,0xee,0x73,0xe7,0x4c,0x0b,0x35,0x8e,0xba,0xe2,0x0d,0xfd, +0xa1,0xff,0x95,0xa2,0xb3,0x69,0x73,0x92,0xdd,0xf7,0x90,0xe1, +0xea,0x53,0x5c,0xcd,0x65,0x78,0x8a,0x7e,0xca,0x2c,0xc9,0x21, +0x28,0x39,0x2b,0x33,0x2b,0xf9,0x9f,0xe6,0x43,0xd2,0x3f,0xb3, +0xa6,0x05,0x07,0x05,0x4d,0x73,0x30,0x5b,0xbf,0xb9,0x4e,0x72, +0x0f,0xbb,0x2a,0xce,0x91,0x11,0x93,0x83,0x8d,0x43,0x2b,0x5c, +0x43,0x59,0xf9,0xb5,0xcc,0x88,0x0c,0xe7,0x44,0x5e,0xdb,0x99, +0x81,0x07,0x3a,0x2a,0x81,0x22,0x35,0x7f,0xec,0x4c,0xbe,0x9e, +0x9a,0xcf,0xd6,0x93,0xf6,0xbe,0x63,0xfc,0x26,0x89,0xc4,0xe4, +0x67,0x58,0x57,0xfc,0xbe,0x2f,0x14,0xfd,0xf4,0x24,0xfd,0x44, +0xf1,0x81,0xd9,0xa3,0x30,0x8a,0x69,0x33,0xc5,0x0f,0x02,0xbb, +0xea,0x19,0xf8,0x99,0xe2,0x2b,0x16,0xb1,0x7a,0x06,0x7e,0xa6, +0xf8,0x81,0xdf,0x69,0x3d,0x03,0x3f,0x53,0xfc,0x2a,0xb0,0xeb, +0xff,0x7c,0x8d,0x24,0x89,0xe1,0x48,0x4c,0x7c,0xfb,0x1a,0xc9, +0x03,0xec,0x4c,0x46,0x3a,0x32,0x44,0x24,0xa3,0x47,0x85,0xb2, +0xb3,0x57,0x4e,0x45,0x5a,0x8c,0xb4,0x8b,0x9e,0x54,0x77,0x91, +0x09,0x56,0x5f,0x4b,0x16,0x95,0x8c,0x74,0x5e,0xba,0xc8,0xa2, +0x86,0xf8,0xfb,0xe9,0x89,0x74,0x6d,0x10,0x32,0x45,0xff,0x00, +0xec,0x6e,0x3d,0x71,0x3e,0x51,0xfc,0xaa,0xe8,0xb8,0x32,0x9f, +0xd6,0xfb,0xe0,0x91,0xcd,0xc9,0xeb,0xf4,0x5c,0xa6,0xf6,0x03, +0x49,0x98,0xb4,0x6c,0xd0,0xb0,0x20,0x8c,0x1c,0x2c,0x72,0x9e, +0x62,0x2b,0x3d,0x80,0xb2,0x6d,0x5a,0x31,0x6e,0xfb,0x8d,0x22, +0xb5,0xd5,0xd1,0x8b,0x68,0xc1,0x6d,0x66,0x33,0x7c,0x47,0xff, +0xcc,0x45,0x1d,0x91,0x52,0xff,0xe3,0x88,0xec,0xba,0x38,0x22, +0xc3,0xdd,0xd8,0x41,0xf1,0x9a,0x33,0x6b,0xb2,0x9f,0xf1,0xd3, +0x7b,0xde,0xd0,0x08,0x1a,0xde,0x2f,0xba,0x75,0x7a,0x56,0x86, +0xd7,0x5e,0xde,0xea,0x06,0xc3,0xc1,0xca,0x74,0x72,0x60,0x92, +0xcb,0x4a,0x0b,0x92,0x2b,0xcc,0x47,0xa4,0xca,0x82,0x69,0x1e, +0xee,0x3e,0xd3,0x06,0x99,0x21,0xbb,0xe3,0x37,0xe2,0x87,0x85, +0x9d,0xdf,0x3a,0x29,0xbb,0xaa,0x5e,0x16,0x61,0xce,0x1e,0x6c, +0xab,0x78,0xcf,0x09,0x0f,0x09,0x30,0x3a,0xde,0x1b,0xad,0xbb, +0x46,0x05,0x95,0x39,0x55,0x3d,0x58,0xa9,0x76,0xc8,0x03,0x1c, +0x64,0x68,0x81,0xfd,0x95,0x69,0x04,0xf4,0x48,0x71,0x49,0xc1, +0xe1,0x0a,0x73,0xb2,0x54,0x51,0x38,0xc3,0xd3,0xcb,0x7b,0xfa, +0x60,0x33,0x9c,0xea,0xf4,0x0d,0x7b,0x8e,0x0b,0x2c,0x27,0x65, +0xfb,0xd8,0x59,0x5c,0xf3,0xd6,0x41,0xd9,0x75,0x75,0x0f,0x6f, +0x3a,0x94,0x75,0xe3,0x0e,0xe4,0xe5,0xbd,0x8b,0xf6,0x7f,0x39, +0x0f,0xbb,0xb1,0x12,0x6f,0x88,0x5f,0x1b,0xca,0x7f,0x39,0x10, +0xb3,0xd4,0xb6,0xa0,0x5a,0xdb,0x7f,0xed,0xfb,0x05,0x06,0xe8, +0x07,0x62,0xc3,0xd8,0x3f,0x70,0xa3,0x7e,0x1e,0x36,0xac,0xa6, +0x67,0x88,0x5e,0x6c,0x49,0x45,0x71,0x22,0x36,0x4c,0x7c,0xc1, +0xf0,0xad,0x03,0xb1,0xeb,0x6a,0xde,0x9b,0x88,0x6a,0x3f,0x59, +0xae,0x31,0x73,0xc3,0xc3,0x82,0x8d,0x43,0x28,0x9e,0x13,0x9c, +0xcb,0xbd,0x9e,0x19,0x9e,0x3a,0x46,0x88,0x73,0x53,0xcb,0xd1, +0x98,0x0c,0x6d,0x48,0x5c,0xa7,0x48,0x83,0xbd,0x93,0x0a,0x0a, +0x0b,0x0f,0x55,0x88,0x78,0xae,0x70,0x96,0xcf,0x68,0xef,0x99, +0x34,0xdb,0xcc,0x0f,0x95,0xc8,0x28,0xb6,0xd1,0xdd,0x00,0x53, +0x20,0x62,0xcb,0x41,0xf1,0x9d,0xc6,0x59,0x38,0xea,0xad,0x23, +0xb1,0xab,0xea,0x2d,0x0b,0x43,0xdb,0xeb,0x0c,0x1d,0x6b,0xfc, +0xec,0x0d,0x43,0x6f,0xe6,0x12,0x43,0xf5,0x03,0x4c,0x9d,0xa1, +0x03,0x2d,0x0c,0x2d,0x2d,0x29,0x38,0x62,0x61,0xe8,0x74,0x4f, +0x8f,0x3f,0x18,0xfa,0x00,0xa3,0x2c,0x07,0x6a,0xfb,0xd8,0x00, +0x12,0xed,0x3f,0xcf,0xd3,0x6e,0xa8,0x15,0xc4,0x88,0xd5,0x68, +0xfc,0xcb,0x71,0xda,0xd5,0x95,0xbc,0xce,0xbb,0x4c,0x1b,0x88, +0x5d,0xf5,0xf3,0xb4,0x61,0x0c,0x7f,0xd1,0x24,0xcb,0x81,0xda, +0x3e,0xf1,0x5b,0xc7,0x2e,0x6f,0x9d,0xa8,0x59,0x20,0xe0,0x76, +0x72,0xd6,0x9b,0xfa,0x0a,0x10,0x85,0xfa,0xbd,0xd4,0x07,0xe2, +0xe2,0xf7,0x5c,0xfd,0x4e,0x6a,0xfb,0x0b,0x5a,0xee,0x08,0xde, +0x30,0x9e,0xb9,0x1b,0xbb,0x3f,0x18,0x0e,0x4d,0xa0,0xf1,0x83, +0x8b,0x4f,0xca,0xa6,0x67,0x8f,0x3a,0x60,0x42,0x2b,0xfd,0xd2, +0xf7,0xa7,0x9e,0xc7,0xae,0x5d,0x2b,0xce,0xb8,0x6d,0xde,0x2b, +0xdd,0xb2,0x5c,0xfa,0xfe,0xcc,0x8c,0xcd,0xc5,0x7d,0xd4,0x8e, +0x4c,0x4b,0xfb,0x42,0xc2,0x07,0xea,0x8e,0xaa,0xb6,0xec,0x9a, +0xe5,0x56,0xf7,0x28,0x71,0x31,0xb4,0x5d,0xb9,0x96,0xeb,0x0a, +0x9d,0xe2,0xe4,0x51,0x11,0x33,0xc4,0x1d,0xd4,0x07,0xae,0x3a, +0x60,0x71,0xab,0xfb,0x97,0xdd,0xca,0x95,0x92,0xf4,0x5b,0xa6, +0x7d,0xd2,0xad,0x92,0x10,0x67,0x17,0x8f,0x90,0xcf,0xcc,0x51, +0xd2,0x67,0x1e,0xe9,0x97,0xcd,0x71,0x35,0xb7,0xba,0xa7,0x30, +0x75,0x8f,0x7e,0xab,0x9b,0xe6,0x10,0x7d,0x47,0x80,0x9f,0xa2, +0xe0,0xfe,0x11,0xb0,0x5f,0xba,0x86,0x47,0x95,0xa2,0x19,0x27, +0xdd,0x13,0x09,0x45,0xdb,0xf3,0x5a,0xae,0x1b,0x74,0x8c,0x93, +0xdd,0x23,0x67,0x8c,0xf3,0x31,0xf6,0x7e,0x30,0x4a,0x47,0x21, +0xee,0x9e,0x12,0x8a,0x0b,0x25,0x69,0xb7,0x4c,0x89,0xd2,0xcd, +0x92,0xd0,0x11,0xc3,0x3d,0x42,0x1c,0xcd,0x91,0x02,0xc5,0x45, +0x33,0xa8,0x6f,0x2e,0xa0,0x6a,0x0b,0xf4,0x0b,0xa5,0x0f,0xe6, +0xc3,0x12,0xf6,0x48,0xbf,0x7d,0xca,0x95,0xd7,0xac,0xa7,0x7e, +0xe1,0x54,0x94,0x54,0x3b,0xfd,0x8e,0x69,0x47,0xd1,0x51,0x90, +0x30,0x95,0xfa,0xa9,0xe7,0xf5,0x4b,0xa6,0x7f,0xd6,0xf1,0xa6, +0x6b,0x59,0x2f,0xfd,0x76,0xe9,0x5f,0xfa,0x5d,0xd7,0xf6,0x8b, +0x5b,0xa5,0x53,0x44,0x0a,0xfc,0x3e,0x6f,0x3e,0x8b,0x51,0xc0, +0xd0,0x47,0x59,0xa2,0x47,0x72,0x8b,0x79,0xcb,0x4c,0x52,0x8e, +0xc9,0x9e,0xd8,0x10,0xeb,0x98,0xce,0x04,0x9e,0x3f,0x97,0x95, +0x73,0x24,0xc7,0x8e,0xdc,0x02,0xde,0x0a,0xd9,0x6e,0x85,0xd7, +0xf6,0xd6,0x39,0x60,0x12,0xb7,0xc6,0x09,0xea,0x4e,0x1d,0xea, +0x1a,0x82,0x4a,0xc6,0x53,0xdc,0x37,0xe5,0xcd,0xa6,0x31,0x68, +0x7d,0x4e,0xcb,0x19,0x29,0x6e,0xcd,0x7b,0x44,0xcd,0x9c,0x38, +0xc6,0xd8,0xf7,0x2b,0x2f,0x68,0x0c,0x4d,0x1e,0x14,0xdf,0x35, +0xe1,0xaf,0x7b,0x94,0x73,0xc5,0x29,0x37,0x4d,0x87,0xa4,0x9b, +0xc5,0x53,0x46,0x8e,0xf4,0x9c,0xe2,0x68,0x9e,0x25,0x39,0x7a, +0xa6,0x9c,0x33,0x43,0x23,0x6d,0x8f,0xf2,0x4c,0x9d,0x55,0xae, +0xcd,0x7a,0x2a,0x7e,0xed,0x7a,0x11,0xaf,0xb7,0x60,0xea,0xd1, +0x8b,0xb4,0x2f,0x4c,0x61,0xc7,0xb9,0xfd,0x49,0xe6,0xc8,0xb0, +0x01,0xcc,0xd2,0x7e,0x63,0xd6,0x5d,0x59,0x86,0xfa,0xde,0xeb, +0x0d,0xa2,0x90,0xc9,0x25,0x17,0xf1,0xf7,0xbb,0x2a,0x6b,0x2e, +0x21,0xeb,0xca,0x76,0xa9,0xb3,0xaa,0x0e,0xd1,0xdf,0x3d,0xea, +0xcc,0xaa,0x2d,0x34,0x66,0x20,0x4c,0xe1,0xf2,0x18,0xaa,0x28, +0x57,0x07,0x71,0xa6,0x51,0x61,0x75,0x95,0xc2,0xa5,0x26,0xd4, +0x04,0xce,0x10,0xc6,0x6d,0x8e,0x0a,0xc0,0x65,0x30,0x85,0x00, +0x83,0x16,0x60,0x01,0xff,0x0b,0xec,0x54,0xb8,0xbc,0x9d,0x69, +0x5e,0xaa,0xfc,0xba,0x4c,0xd4,0x40,0xb8,0x40,0x84,0x3f,0x43, +0x80,0xe5,0x19,0x1b,0x55,0x59,0x53,0x49,0x6d,0xfd,0x88,0x37, +0x73,0x61,0x7f,0x3c,0xc3,0x1d,0x98,0xa6,0xa3,0x7f,0xf3,0x7c, +0x17,0xa6,0xea,0x64,0xd4,0x60,0x50,0x3b,0x05,0x58,0xa8,0x81, +0x38,0x75,0x90,0xc2,0xad,0x5b,0x30,0xed,0x7d,0x1d,0x24,0x44, +0xc1,0x16,0x2e,0x3d,0x11,0x2d,0x43,0x05,0x7d,0xe7,0x19,0x9e, +0x5d,0x26,0xea,0xcf,0xc1,0x47,0xbc,0x1e,0x08,0x88,0xad,0xf4, +0x39,0xab,0x2e,0xaa,0x35,0xb7,0x37,0x33,0x67,0xa6,0x19,0x60, +0xaf,0x20,0xb7,0x1f,0xc3,0x7d,0x5a,0xb4,0x60,0x07,0x95,0x76, +0x68,0xbd,0xb9,0x8d,0x07,0xa3,0xd2,0x44,0x9c,0x2e,0x38,0x42, +0xa5,0x93,0x5a,0x1d,0xa2,0x89,0x0a,0xc7,0xb5,0xba,0x44,0x8c, +0x33,0xc3,0x9b,0xb0,0x5d,0x90,0xd1,0x4f,0xdc,0xe8,0xec,0x2d, +0xb8,0x42,0xa5,0xb3,0xe2,0x85,0x87,0x4d,0xa8,0x75,0x18,0x6c, +0x13,0x5c,0x21,0x04,0xb9,0xb0,0xfd,0x4f,0xae,0xb8,0x33,0x64, +0x9a,0x8f,0xf8,0x2d,0x8a,0xd1,0x30,0x1a,0x52,0xf3,0x70,0x96, +0x0c,0xd2,0xaf,0x06,0xce,0xd7,0x31,0xbc,0x0c,0x0b,0x05,0x5b, +0xdc,0xd9,0x46,0x5a,0xc4,0xd2,0x90,0x63,0xde,0x09,0x26,0xde, +0xd4,0x95,0x99,0x35,0x27,0x28,0xb3,0x34,0xd0,0xee,0x39,0x5d, +0xe7,0x57,0x80,0xf2,0xa4,0x3c,0xcb,0x15,0x32,0x9d,0x65,0x5e, +0xbb,0x84,0x89,0x7b,0xf6,0x36,0xaf,0xbe,0x66,0x7f,0x76,0xf0, +0x7c,0xa2,0xdc,0x1f,0x9d,0xff,0xa9,0x5f,0xf8,0xdc,0xc9,0x73, +0x4c,0xcb,0xd7,0x6e,0x85,0x9e,0x06,0xf0,0xc8,0xc7,0x85,0xd2, +0x02,0x5c,0x90,0x1b,0x67,0xd8,0xbb,0x3b,0x71,0x47,0xa6,0x7d, +0xe1,0x91,0x30,0x5f,0x73,0x8c,0x3c,0x66,0xda,0x64,0x4f,0xff, +0x69,0x89,0xc7,0x22,0x4d,0xe3,0xa6,0x18,0x82,0x92,0x32,0xa7, +0x57,0xd8,0x3f,0x2b,0x2a,0x7b,0x60,0x7e,0x0b,0x9f,0xf7,0x13, +0xe5,0xee,0xe8,0x33,0x9f,0xf9,0x4c,0x9b,0x11,0x12,0x4d,0xe0, +0x76,0x7d,0x7d,0xf6,0xe2,0x8f,0xd7,0xed,0xfa,0x4b,0x9f,0x78, +0x0f,0xf8,0x10,0x1b,0x19,0x3f,0xca,0x1f,0xf6,0xdd,0x93,0xd2, +0xb2,0x07,0xa6,0x51,0x8b,0x78,0xb3,0xb7,0xe6,0x5c,0xb3,0x4e, +0xee,0x6c,0xbf,0xb6,0x5f,0x29,0x09,0x3d,0xee,0xb3,0xcd,0xf4, +0xb9,0x9c,0xb9,0xed,0x68,0x4a,0xa1,0xf1,0xd2,0x98,0xec,0x5e, +0xbd,0xc6,0x04,0x0c,0xf7,0x39,0x1a,0x96,0xb5,0xd8,0xb4,0x42, +0xf6,0x59,0x14,0x32,0xc9,0xc3,0x38,0xb8,0xc4,0xef,0xf9,0xf3, +0x92,0xd3,0x37,0x4c,0xda,0x18,0x28,0x7f,0x6b,0x3d,0x89,0x6b, +0x0d,0x05,0x63,0xff,0x75,0x3d,0x89,0x42,0x4f,0x7d,0xd1,0xd4, +0xc7,0xd0,0x43,0xe1,0x2d,0x7f,0x65,0x3f,0x15,0x54,0x42,0x2b, +0x93,0xeb,0x34,0x6e,0xed,0xc5,0x42,0xbf,0xb6,0xa9,0x9e,0xcf, +0xaa,0x78,0x8f,0x85,0x2c,0x54,0x4d,0xae,0x3a,0xcb,0xaa,0xda, +0x2d,0xa6,0x22,0xad,0x9a,0x21,0x85,0xa9,0x33,0xb4,0xae,0xa2, +0xbe,0x8e,0x0d,0xb7,0x3d,0x48,0x7f,0x97,0x57,0x59,0xf1,0x26, +0xcf,0xa9,0xb5,0x78,0x31,0x6f,0xd2,0x92,0xfe,0x3a,0xf2,0xe6, +0x5f,0x30,0xc8,0xab,0x6e,0x24,0x86,0x14,0x71,0x76,0x9a,0xa9, +0x4e,0x9f,0xe9,0x90,0x78,0x1d,0x42,0xe8,0x84,0x3f,0x2d,0x64, +0xea,0xc5,0x57,0xb6,0xbc,0x59,0x22,0xab,0x2e,0xda,0xaa,0x08, +0x54,0x45,0x8b,0x14,0xde,0xac,0xaf,0xa5,0xe3,0xab,0xfe,0x4c, +0xfd,0xe1,0x53,0xe5,0x0d,0x05,0xea,0x45,0x6e,0x35,0x8d,0x68, +0xd0,0x1e,0x0a,0xa2,0xb8,0xd5,0x23,0xbd,0xae,0xea,0x17,0x41, +0x4b,0xf5,0x76,0xed,0x03,0xe5,0x8f,0x5a,0x1a,0xf8,0xaa,0xce, +0xa7,0x8a,0x20,0x4b,0x14,0x97,0xab,0x79,0x82,0x30,0x2a,0x56, +0x15,0xf7,0x10,0xa4,0x89,0x92,0x23,0xb5,0xb7,0x08,0xa8,0x21, +0x4f,0xa7,0xc2,0xe8,0xff,0x27,0x15,0x70,0x5f,0xe1,0xc6,0x97, +0x16,0x32,0x74,0xbc,0xdc,0xb8,0x8e,0xbd,0x4e,0xd6,0x5c,0x6b, +0x9a,0xb7,0xf3,0x7a,0xfe,0x7f,0xcc,0xc0,0xc2,0x99,0x2b,0xf0, +0xc0,0xd2,0x9f,0x64,0xd8,0x5b,0x1b,0xc8,0x6d,0x74,0x51,0x4f, +0xc7,0x9b,0xbc,0xf6,0x02,0x06,0x2e,0x9e,0xda,0xc8,0x92,0x3c, +0x2e,0x7f,0xc4,0xb0,0xb9,0x12,0x24,0x73,0xe9,0x99,0x90,0xff, +0x68,0xd8,0xc4,0x8d,0xe3,0x45,0xbf,0x85,0xe8,0xc5,0x6d,0x2b, +0x45,0xa9,0x94,0x46,0xd8,0x6d,0x12,0xad,0x47,0xd5,0x03,0x0a, +0xee,0x29,0x86,0x3d,0x57,0xb2,0x9d,0x9f,0x5d,0xc9,0x72,0x95, +0xc7,0xcf,0x8d,0x9c,0x64,0x1e,0x38,0x26,0x50,0x16,0x1a,0xb6, +0x41,0x7b,0xc0,0x1b,0xcd,0x14,0x23,0x52,0x04,0x8e,0xf9,0x64, +0x46,0x08,0x07,0x97,0x72,0xc4,0xd0,0x55,0x55,0xd6,0xca,0x81, +0xcd,0xbc,0xf6,0x05,0x16,0xc3,0x65,0x27,0x86,0x17,0x8b,0xe1, +0xa2,0x6c,0xfd,0xa6,0x61,0x8b,0x68,0x58,0x22,0x1a,0xb4,0xa6, +0xbe,0x41,0x79,0xf2,0xc9,0x5d,0x7b,0xd3,0xcd,0x6a,0x1d,0x1d, +0x6c,0x4f,0xbc,0xc7,0x9b,0xcd,0x12,0x30,0xc2,0x69,0x96,0x2d, +0xbe,0x15,0x08,0x86,0x11,0x02,0x5b,0x9b,0xb7,0x50,0xe5,0x79, +0xe2,0x45,0x81,0x89,0xd7,0xe9,0xc7,0x1e,0x17,0x9e,0xfb,0xe5, +0xa5,0xcf,0xb9,0x1e,0x3d,0x7c,0x46,0xb6,0x6c,0x5d,0x30,0xf2, +0x89,0x39,0xcb,0xca,0x67,0xfa,0xb1,0x32,0x73,0xbe,0x7c,0xf6, +0x48,0x7a,0x61,0xc1,0x91,0xc9,0xee,0x26,0x5f,0xd9,0x7d,0xc6, +0x24,0x1f,0x93,0xf5,0x9f,0xfc,0x38,0xed,0xa9,0x7d,0x56,0x02, +0x9f,0xe8,0xfc,0x18,0xae,0x08,0x6e,0x08,0x1e,0x68,0x75,0xb8, +0xed,0xcf,0xa2,0x74,0x4e,0xb3,0xe1,0xa6,0x7c,0x1d,0x7c,0xe5, +0xe9,0x63,0x65,0x25,0x93,0x0f,0xbb,0xc6,0x9b,0xa7,0x7c,0x6e, +0x08,0xf9,0x3c,0x7a,0x5b,0xb2,0xf1,0x70,0xe2,0xae,0x13,0xc7, +0x0e,0xcc,0x8f,0xda,0x6b,0x4a,0x49,0x35,0x1c,0x9a,0x35,0x7d, +0x9f,0xab,0xbd,0xcb,0xd8,0x10,0x77,0x8f,0x8c,0x59,0x17,0x96, +0x9a,0x93,0x57,0x18,0x52,0x96,0xef,0x5d,0x32,0xd5,0x38,0x75, +0x4e,0x74,0xe0,0xc4,0xe9,0xdb,0x8f,0x86,0x9b,0x42,0xa7,0x18, +0x26,0x1c,0x3d,0x11,0x5d,0x6c,0x2f,0x18,0x10,0x49,0xb3,0x6a, +0x96,0x2c,0x90,0x2c,0xd1,0xd2,0x79,0x33,0x2b,0x51,0xda,0xac, +0xf9,0xf2,0x66,0x4f,0x45,0xa9,0xaf,0x36,0x86,0xdb,0x76,0x16, +0xa5,0xde,0xc4,0x07,0xfb,0x34,0x51,0xda,0xa5,0x4d,0xe3,0xfc, +0x5d,0x51,0x72,0xd5,0x6a,0x71,0x87,0xdf,0xc9,0x06,0x86,0x90, +0x95,0xe7,0x9f,0x52,0xe1,0x2e,0x19,0x73,0x9b,0x62,0xb2,0xab, +0xbb,0x60,0x02,0x37,0x76,0x14,0x06,0xb6,0xbd,0x68,0x6b,0x23, +0x4a,0xf5,0xc8,0xe4,0x3b,0xac,0x15,0x25,0x99,0x4a,0x2d,0xea, +0xe8,0xbb,0x01,0x29,0xcb,0x6f,0x54,0xf5,0x8b,0xfa,0x01,0x77, +0xf8,0x85,0x0a,0xdd,0x45,0x53,0x5d,0x2a,0xbc,0xa4,0x71,0xcd, +0x24,0x61,0x78,0x1d,0x05,0x84,0x5b,0x54,0xd5,0x9e,0xda,0x5a, +0x5f,0xa7,0xaa,0xf5,0x6a,0x37,0xce,0x8f,0x51,0xe1,0x37,0xd2, +0xa3,0x66,0x2d,0xc5,0x9e,0x31,0xc1,0xea,0x9f,0x57,0x6f,0x41, +0x0b,0x68,0xe9,0x74,0xcb,0x01,0xdf,0x71,0xfa,0x94,0xec,0x61, +0x8b,0xab,0x9f,0xc2,0x3b,0xe6,0x33,0x56,0xdc,0x5a,0xbc,0xd2, +0x08,0x8d,0x34,0xda,0xbe,0x8a,0x4a,0xcf,0x41,0xe2,0xb6,0x1f, +0x0a,0xc8,0x5d,0xd4,0x8d,0xdc,0xe8,0x42,0x55,0xab,0x88,0x5c, +0x9b,0x23,0x54,0x38,0xac,0xde,0x53,0xc0,0xa6,0x00,0xaf,0x8f, +0x06,0x1b,0xcd,0xaa,0x54,0xb2,0x76,0x64,0x1d,0x04,0x21,0xef, +0x53,0xf7,0x02,0x75,0x30,0x6f,0x16,0x25,0xc6,0xf5,0x14,0x1f, +0x23,0xb6,0xfd,0x96,0x79,0x49,0x62,0x0b,0xfa,0x84,0x3a,0xd8, +0x87,0x53,0xfd,0xe7,0xaa,0x2b,0x6f,0xf6,0xb5,0xe8,0xf0,0x81, +0x7a,0x8f,0x3b,0x7c,0x2b,0x4a,0xef,0xa9,0x7d,0x85,0xe8,0x77, +0x65,0x89,0xea,0x91,0x7f,0x27,0xf9,0x8e,0x6c,0x87,0x60,0xd7, +0x78,0xea,0x55,0x51,0xd5,0x46,0xc8,0x7d,0x57,0xb6,0x96,0xba, +0x93,0xd8,0x3b,0xb2,0x30,0x35,0xf2,0xdf,0x49,0x7d,0x57,0x56, +0x08,0x7b,0x85,0xd0,0x77,0x65,0x07,0x05,0xf4,0xb7,0x64,0xde, +0x91,0xa9,0x8f,0xac,0xfe,0xbb,0xc4,0x5b,0xaa,0xff,0xad,0xbc, +0x13,0xbd,0x2d,0xd4,0x44,0x21,0xef,0x8e,0x6c,0xbf,0x58,0x08, +0x7d,0x0a,0xf5,0x08,0x36,0x89,0xfb,0x1f,0x48,0xde,0x48,0xbb, +0xce,0xf5,0xff,0x83,0xb8,0xff,0xc1,0x83,0xff,0x2e,0xed,0x34, +0x71,0x75,0x96,0x10,0xf6,0xae,0x6c,0x95,0x3a,0x49,0xc8,0xba, +0x0e,0xfc,0xff,0x57,0x61,0x77,0x64,0x7b,0x69,0x4a,0x24,0xeb, +0x5d,0xd9,0x35,0xb8,0x2a,0x44,0xbd,0x2b,0xcb,0x53,0x5b,0x08, +0x49,0xa7,0x49,0x72,0xb5,0xa5,0x90,0x74,0x2a,0x39,0x10,0x07, +0x48,0xd2,0xbb,0xb2,0x93,0x6a,0x7d,0x21,0xe8,0x5d,0xc5,0xaf, +0xb9,0x22,0x84,0xa0,0xeb,0x34,0xe9,0xfb,0x01,0xb4,0x1a,0x7d, +0xb3,0x4d,0x9b,0xd1,0x9f,0x61,0x2b,0x6c,0x55,0xe0,0xf8,0x93, +0x39,0xcf,0xca,0x25,0xbc,0xf8,0x91,0x99,0x37,0x98,0xc9,0xdc, +0xe4,0x9e,0xe1,0x5e,0x2e,0x26,0xeb,0xe5,0xc2,0xb7,0x58,0x5b, +0x1d,0xce,0xbe,0xb0,0xe1,0xf5,0xa6,0x31,0x7a,0xce,0xe2,0x75, +0xe7,0xb1,0x6a,0x79,0x35,0xd5,0xd1,0x13,0xcd,0xdf,0xa6,0x1b, +0xd3,0xa6,0x6c,0xb2,0x3c,0xd6,0x74,0xce,0x7a,0xa2,0x9c,0x96, +0xc1,0x0d,0x8e,0x19,0xae,0x60,0x66,0x79,0x90,0x6b,0x77,0xef, +0x27,0x12,0x76,0xce,0x52,0xa0,0x33,0x44,0xaf,0x90,0xfe,0xec, +0x07,0x7e,0xcb,0x78,0x53,0x60,0x7f,0x3e,0x07,0x2c,0x53,0x3a, +0xfa,0x5e,0x7a,0x06,0x8d,0xee,0x3c,0xbf,0x57,0x64,0xfe,0x42, +0x6a,0x3b,0x64,0xd4,0xf0,0xe8,0x6e,0x1b,0x56,0xdb,0xa6,0xef, +0x4a,0x3e,0x5c,0x68,0x7f,0xb3,0x60,0x4c,0xdf,0x3e,0x1e,0xee, +0xdd,0xcd,0xd9,0x56,0x45,0x29,0xa9,0xf9,0xe6,0x1d,0x72,0xfe, +0x94,0x34,0x6f,0xaf,0x29,0xa1,0xbe,0xa6,0x85,0xb2,0x6f,0x6a, +0x68,0xd1,0x5b,0x04,0x43,0x23,0x1b,0xee,0xf0,0x9c,0x60,0x83, +0x13,0xc4,0x29,0x1f,0x7a,0x9e,0xbe,0x51,0x9a,0x7e,0xac,0x70, +0x9b,0xf9,0x73,0x39,0x68,0xeb,0xd4,0xd4,0x42,0xe3,0xc5,0x33, +0x39,0x0f,0x1f,0x9e,0x09,0x1c,0xe6,0x33,0x75,0x4a,0xf0,0x22, +0xda,0x69,0x0b,0x17,0xa5,0x4d,0xf4,0x34,0x0e,0xf6,0xf4,0xfb, +0xd0,0xa4,0xcd,0x15,0xd3,0x81,0xb1,0x10,0xa3,0xe4,0x1f,0x3d, +0x74,0xd2,0xbc,0x55,0x3e,0x35,0xf5,0x90,0xaf,0xef,0xd4,0x59, +0xe3,0x4c,0x8b,0xe5,0xf1,0x47,0x67,0xe5,0x9b,0x70,0xac,0x55, +0x49,0xea,0x91,0x6c,0xf3,0x36,0x39,0x3b,0xec,0x88,0xa7,0x67, +0xd8,0xf4,0x40,0xd3,0x22,0x39,0x30,0x75,0x7a,0x89,0x20,0xe0, +0x29,0xe7,0x07,0x89,0x25,0x3a,0xc3,0x08,0xc8,0x58,0xa5,0xf8, +0x68,0x5a,0xbe,0x79,0xbb,0x7c,0x26,0x2c,0xcd,0x87,0x68,0x1d, +0x43,0xb4,0x8e,0x49,0x0d,0xb3,0xd0,0x7a,0x43,0x70,0x13,0xa6, +0x2d,0x55,0x78,0x73,0x3b,0x96,0x47,0x4a,0x6e,0x12,0x14,0xc7, +0x59,0xb5,0x19,0xad,0xaf,0x4f,0xc1,0xcd,0x9f,0x7e,0x2a,0xd0, +0xd7,0x67,0xb4,0x63,0x1b,0xf3,0x9b,0x76,0xf2,0x54,0xdf,0xf0, +0xbb,0x99,0x18,0x4f,0x85,0x45,0x62,0x19,0x44,0x45,0x57,0xf8, +0xfa,0x7f,0xe1,0xfd,0x2a,0x88,0xb3,0x30,0x9d,0xd0,0xfc,0x7f, +0x66,0xf6,0x40,0x58,0xab,0xd4,0xb0,0x39,0xce,0xea,0xff,0xc4, +0x64,0x58,0x69,0xf5,0xff,0x86,0xb9,0x5d,0x04,0x73,0xb7,0xfd, +0x8f,0x4c,0x25,0xcf,0x7b,0x8d,0xce,0x4f,0x6d,0x9e,0xbe,0x8e, +0x01,0x27,0x15,0xc1,0x37,0x77,0xe6,0x8d,0x11,0x8a,0x16,0xef, +0xc6,0x1d,0x4e,0xe9,0x4e,0x63,0x3e,0xce,0x54,0xb4,0x4e,0xea, +0xfa,0x72,0x6d,0x08,0xfc,0x2c,0x53,0x8d,0x17,0x66,0x28,0xe7, +0xb5,0xe5,0x5a,0x1b,0x75,0xdd,0x79,0x6d,0x30,0x64,0x88,0xbd, +0x55,0x5b,0x0c,0x89,0xdc,0xa1,0xbd,0x70,0xde,0xe2,0xe0,0x00, +0x6f,0x3e,0xcc,0x52,0xda,0xc3,0x4d,0xa7,0x09,0xe2,0x3c,0xed, +0x9a,0x82,0xa1,0xd0,0x73,0xfe,0xd6,0x85,0x6b,0xe6,0x2f,0xb6, +0xe3,0xf6,0x49,0x4c,0x6c,0x47,0x2b,0x61,0x2b,0xb7,0xbb,0x49, +0xed,0xeb,0xb4,0x4b,0x0a,0x3d,0x75,0x8c,0xde,0xbc,0x60,0xc5, +0xc2,0x25,0x76,0xd1,0x0b,0x57,0xae,0x33,0xa4,0xe4,0x6e,0xce, +0x2b,0x35,0xc2,0x02,0xfd,0x37,0xb9,0x8b,0xa4,0x55,0x6d,0x7c, +0x07,0xe0,0x0c,0x94,0x4e,0x78,0xdb,0x42,0xbd,0x4b,0xb7,0x0b, +0x73,0x0a,0xb6,0xc6,0x6f,0x5d,0xb5,0x3d,0x16,0x36,0x60,0x77, +0x5b,0xe1,0x17,0x0f,0x44,0xf2,0x8b,0x77,0xb9,0xc1,0x2e,0x09, +0x3e,0xc3,0xef,0x14,0x8c,0x05,0x43,0x74,0xc2,0xc2,0x15,0x0b, +0x62,0xec,0xe6,0x2d,0xe2,0xc6,0xdf,0xc5,0x54,0x7c,0x71,0x9a, +0xa2,0x25,0x8c,0x54,0x5d,0xa5,0xa0,0xd5,0x41,0x2b,0x83,0x4d, +0xda,0x84,0x79,0x09,0x6e,0xaa,0xcf,0xde,0xb8,0xd1,0x4b,0xbd, +0x17,0x7b,0xd8,0x5d,0x8f,0x31,0x1c,0x81,0xa6,0x1b,0xff,0xf9, +0xb3,0x51,0x4c,0x28,0x06,0xf6,0x71,0x87,0xe5,0xc2,0x47,0xbc, +0x89,0xe9,0x8a,0x7a,0xf2,0xbc,0x76,0x52,0x5a,0xa6,0xb5,0x53, +0xd4,0x92,0x73,0x68,0x27,0x1d,0x86,0x49,0xbc,0xf9,0x72,0x26, +0x09,0xcc,0xfd,0x70,0x14,0x45,0x9f,0x6e,0x14,0x7d,0x7e,0x8e, +0xdd,0x94,0x0d,0xd0,0xeb,0x9c,0xf6,0x0b,0x37,0xad,0x22,0xf9, +0x43,0x4f,0x6e,0x5e,0xc1,0xb8,0x61,0x03,0xd3,0xc6,0x03,0x6d, +0x17,0x87,0x2d,0x65,0x73,0x2b,0x6e,0x1a,0x63,0x29,0x36,0x43, +0x2b,0xde,0xec,0x08,0xe3,0x4d,0x24,0x06,0x66,0x08,0x83,0x39, +0x98,0xec,0x03,0x53,0x69,0x64,0x18,0xc6,0x55,0x4a,0x50,0xf7, +0x71,0xfc,0xb6,0x6b,0xbc,0xf6,0x39,0xd6,0x6b,0x29,0xbe,0x6f, +0x2f,0x56,0xa3,0xbd,0x55,0x61,0x5b,0x58,0xe2,0xaa,0x41,0x39, +0xdc,0x91,0xb5,0xa9,0xd8,0x91,0x37,0x4f,0xd4,0x41,0x61,0xdc, +0xf7,0xdc,0x5c,0x9f,0x20,0x1d,0x65,0x98,0x97,0xc6,0xed,0x3a, +0x51,0xb1,0x88,0xe1,0x97,0xb0,0x9e,0xdb,0x37,0x67,0xfa,0xc8, +0xa2,0xb6,0xb0,0xb8,0xaa,0x25,0xf9,0xfb,0xd9,0x89,0xdc,0xb6, +0x89,0xa5,0x3d,0x94,0x02,0x8d,0xa6,0x0d,0xa8,0x9c,0xcc,0xc8, +0x6b,0x76,0xe5,0xf6,0x33,0x2d,0xc4,0x98,0x60,0x6a,0x01,0x4e, +0x85,0x86,0x10,0x59,0x88,0x27,0xb4,0x1e,0x44,0x8b,0x4c,0xb4, +0xdc,0x14,0xb4,0xf4,0x5c,0x8a,0xef,0xd9,0x5b,0x0b,0x44,0xda, +0x5c,0x18,0xa9,0xc0,0x0f,0x85,0xf8,0x83,0x04,0x7b,0xf1,0x67, +0x6e,0x3f,0x48,0x20,0xea,0x61,0x55,0xd0,0x01,0xd6,0x8e,0xd0, +0xe0,0x02,0x5c,0x96,0x31,0x98,0x84,0xa0,0x29,0x8a,0xfa,0x33, +0x5a,0x2d,0x25,0xcd,0xff,0xbb,0x93,0xe5,0x69,0xc7,0xd2,0xed, +0xb6,0x6c,0xda,0xba,0x7a,0x5b,0x1c,0xf8,0x3b,0xd8,0xa6,0x9f, +0x46,0xf7,0x1f,0x16,0x6e,0x5a,0xbc,0x7a,0x61,0x8c,0xdd,0xfc, +0xc5,0x2b,0xd7,0x26,0x1e,0xb1,0xfc,0x36,0x63,0x54,0xa1,0xe6, +0xe6,0x03,0x1e,0xd2,0x72,0x17,0x5f,0x3f,0xec,0xe3,0x5c,0x4b, +0x4d,0xc5,0x8f,0x94,0x22,0xed,0x86,0x37,0xc4,0x63,0xc4,0x45, +0x88,0x10,0xa2,0x38,0x52,0xcb,0x55,0x32,0x55,0x53,0x30,0x36, +0x77,0x9d,0x54,0x2e,0x69,0xb6,0xb8,0x52,0x01,0x6b,0xf9,0xea, +0xe6,0xd4,0xf3,0x37,0x8c,0x5f,0x8c,0xbf,0xdc,0xa7,0xcf,0x78, +0x97,0xfe,0x83,0x53,0xdd,0xae,0xc5,0x98,0xd0,0x1a,0xed,0x27, +0xc2,0x95,0xe3,0x32,0xd4,0x86,0x08,0xe5,0x32,0xbe,0x93,0x72, +0x78,0xf8,0x2f,0xcb,0x37,0xc7,0xae,0x8e,0x8d,0xb3,0x8b,0x5d, +0xb6,0x62,0xbd,0x61,0x73,0xd2,0xa6,0xe4,0x63,0xc6,0xf8,0xab, +0xc7,0x70,0xc8,0xa4,0x6b,0x71,0xf2,0xc0,0x48,0xff,0x91,0x3d, +0x4c,0x29,0x33,0x8f,0x9d,0xdb,0x7e,0x70,0x47,0x9a,0xdd,0xfa, +0x0d,0x1b,0x56,0xaf,0x5f,0x51,0x0b,0x5f,0x1e,0x52,0x0e,0xc8, +0x67,0x0e,0x64,0x16,0x15,0x1f,0x08,0x1e,0x63,0x9a,0x2d,0x8f, +0x99,0x1d,0xe4,0xe5,0x3d,0x3b,0xeb,0x8c,0x89,0xa8,0x7b,0xa5, +0xa4,0xa3,0x0b,0xf0,0x60,0x6c,0x21,0xcf,0x49,0x88,0xdd,0x6d, +0x22,0xfa,0xba,0x60,0x0f,0x05,0xeb,0x4e,0x86,0xba,0x12,0x56, +0xe1,0x16,0xe5,0x7f,0x22,0x0c,0xed,0xe5,0xb6,0xb0,0xfe,0xdf, +0x40,0x87,0xfb,0x49,0x4a,0xf8,0x82,0x98,0xd9,0x33,0x8d,0x81, +0x29,0xe3,0x2a,0xae,0xa7,0x9d,0xca,0x4e,0x8a,0x39,0x10,0xbe, +0xc3,0xb4,0xf1,0x5a,0x06,0x1e,0x98,0x7c,0x55,0xbe,0x89,0xf5, +0x94,0x58,0x69,0x52,0xe4,0xc1,0xb4,0xb4,0x03,0x87,0xd2,0xcd, +0x09,0x52,0xda,0x81,0x59,0xa1,0xa1,0xb3,0xc3,0x43,0xcd,0xd0, +0x11,0x65,0x25,0x03,0xaf,0x4c,0x06,0x7b,0xec,0x93,0x05,0x7d, +0xc4,0xbe,0xff,0x26,0x8a,0x5d,0xb2,0x92,0x9b,0xb2,0xfe,0x8c, +0x6a,0x81,0x1c,0x4f,0x8a,0xb7,0xdf,0xea,0x10,0xc1,0x6d,0xda, +0xbd,0x15,0xf5,0x26,0x3f,0xa0,0xb0,0x61,0x38,0x45,0xba,0xbc, +0x56,0xdc,0x5b,0xd5,0x7e,0x10,0x66,0x09,0xb7,0x6b,0x9e,0x03, +0x20,0x94,0x22,0xdc,0x3f,0xc1,0x9e,0x51,0x65,0xee,0xd0,0xf1, +0xad,0x0e,0x2b,0xa0,0x9f,0x25,0x0b,0xf0,0xa6,0xc2,0x99,0xc2, +0x69,0x0a,0x7b,0xab,0xcd,0x0c,0x2a,0x60,0xa2,0x88,0xac,0xa9, +0xa8,0xd6,0xc2,0x81,0x16,0xfa,0xfe,0xc8,0x04,0x04,0x0b,0x7a, +0x44,0x2f,0xcd,0x66,0x83,0x9c,0x13,0x9f,0x9e,0x52,0x6a,0xbc, +0xec,0x93,0xf5,0x89,0xf3,0xb8,0x19,0xe3,0x66,0x9b,0x32,0xa6, +0x18,0xd2,0xf6,0x1c,0xdd,0x97,0x65,0x9f,0x93,0x3c,0x63,0x22, +0x05,0xa6,0x93,0xa6,0xcd,0x1a,0x6d,0xf2,0xf7,0xcf,0x93,0x4a, +0xd2,0x67,0x06,0x98,0x63,0xe5,0x80,0xd0,0x69,0xa3,0x7d,0xa7, +0xed,0x3b,0x1e,0x69,0x0a,0xa6,0x40,0xf5,0x70,0xe6,0xf4,0x9b, +0xf6,0x8f,0xcb,0xf2,0x6e,0xeb,0x91,0xb2,0xd9,0x5a,0x20,0xec, +0xd2,0x5d,0xe4,0x11,0x04,0xfc,0xaf,0x73,0x2c,0x33,0xda,0xa6, +0x5e,0x56,0x84,0x1d,0x3c,0xab,0xc5,0xeb,0x8c,0x1b,0x54,0x55, +0x57,0x71,0xac,0x31,0x86,0x92,0x5e,0xa1,0x5e,0x51,0xd4,0xfe, +0x7f,0x5a,0x43,0xe1,0x43,0xe2,0x6a,0x98,0x2d,0x6c,0x21,0x95, +0x36,0x40,0xa4,0xb0,0x85,0x7a,0x69,0xa6,0xb0,0x85,0x5d,0x59, +0x92,0xea,0xa6,0x08,0x03,0x78,0xaa,0xf4,0x2d,0x8b,0x48,0xa3, +0xd6,0x42,0xa8,0x30,0x86,0x5d,0xd9,0x05,0xd5,0x59,0xb1,0x18, +0xc2,0xe8,0x85,0xb6,0xff,0x47,0x43,0x78,0xaa,0xc4,0x20,0xfc, +0x3a,0xdb,0xaa,0xd6,0x35,0xb6,0x70,0x18,0xce,0x53,0x2c,0x66, +0x70,0xde,0x22,0x5b,0x61,0x06,0x4f,0x14,0x8b,0x1e,0xb8,0x59, +0xbd,0xa9,0xfc,0xef,0x76,0xf0,0x8e,0x96,0x20,0xdc,0x48,0xf1, +0xc1,0x62,0x61,0x0b,0x09,0xf2,0x81,0x2a,0xa6,0x68,0x27,0xdd, +0xd4,0x93,0x52,0xfb,0x01,0x8a,0xb0,0x80,0x23,0x2d,0xf6,0x50, +0x60,0xb5,0xaf,0xea,0x50,0x63,0x07,0x35,0x97,0x8e,0x8a,0xb0, +0x80,0xc2,0x16,0xca,0x78,0x12,0x13,0x2c,0x66,0x30,0x89,0x69, +0xe7,0xc1,0x68,0x31,0x83,0x54,0x5e,0x8a,0x1f,0x5a,0xec,0x20, +0x95,0x63,0xb0,0xb7,0xc5,0x0e,0x6a,0xff,0x89,0x1d,0xe4,0x4a, +0x3e,0xfb,0xb1,0x50,0xd6,0xae,0x61,0x90,0xc5,0xfc,0x25,0x31, +0x7c,0x91,0xad,0x9b,0x3f,0x25,0x96,0x69,0xa6,0xb9,0xba,0xf9, +0x53,0x96,0x30,0xad,0x2f,0xf8,0x0a,0xf3,0xc7,0x95,0x33,0xec, +0xc7,0x22,0x59,0x33,0x4e,0xd5,0x0d,0x1f,0xb5,0xe0,0x65,0xf2, +0xc2,0x85,0xe1,0x53,0x62,0xc8,0x32,0x11,0x55,0xba,0xe1,0xd3, +0xfe,0x13,0xc3,0x47,0x28,0x70,0x19,0xb8,0x29,0xf8,0x83,0x0f, +0xfc,0x20,0xf5,0xc7,0x7c,0x61,0xf7,0x68,0xfe,0x13,0xc4,0x0b, +0xa9,0x6a,0xec,0xde,0xf7,0x05,0x32,0x16,0x93,0x07,0xda,0x54, +0xa4,0xc3,0x36,0xaa,0xb9,0xca,0x18,0x68,0x1b,0x8c,0x5f,0x66, +0x82,0xc3,0x19,0x09,0x07,0x80,0xa3,0xd2,0x62,0xf2,0x6f,0x92, +0xda,0x72,0x9c,0xd2,0x69,0xd9,0xc0,0xd8,0x81,0xa6,0xcc,0x65, +0x86,0x84,0xdb,0x9b,0x1e,0x3f,0x37,0x66,0xe2,0xc2,0xc9,0xe0, +0x21,0x6b,0x1e,0xd8,0x5e,0xb9,0xdc,0x33,0xf9,0xf0,0xf0,0x2f, +0xe3,0xe2,0x63,0xd7,0x2e,0x5d,0x26,0x6c,0xd4,0x3a,0xc3,0x96, +0xfd,0x1b,0x0f,0x1c,0x36,0x56,0x64,0xa0,0xf3,0xe4,0xeb,0xd2, +0x6a,0xef,0xa8,0x09,0x6e,0x43,0x92,0x67,0xd9,0x1e,0xcf,0xdd, +0xb5,0x7f,0xeb,0xc1,0xcf,0xc9,0x42,0x7d,0xbe,0xa2,0x96,0x5a, +0x5b,0xdc,0xcc,0xf2,0x0a,0x42,0x2f,0x34,0x4c,0x84,0xcb,0xc7, +0x65,0xad,0xa2,0xab,0x32,0x67,0x33,0x99,0x23,0x70,0x85,0x61, +0x18,0x26,0x65,0x4d,0x56,0xa0,0x09,0xbe,0x8f,0x4d,0xf4,0x35, +0xdb,0x08,0x43,0x95,0x6c,0x75,0x47,0xa0,0xa4,0xf5,0xc7,0x2e, +0xca,0xe7,0x1b,0xe2,0xd7,0x6c,0x5c,0xfe,0xb2,0xa3,0xed,0xc1, +0x94,0x4e,0x4f,0x62,0x12,0x62,0xd7,0xc6,0xc4,0xda,0xc5,0x2e, +0x5d,0xb9,0x76,0xdb,0xc1,0x0d,0x87,0xd6,0x1e,0xb5,0xfb,0xf1, +0x18,0xae,0x98,0xf4,0xb3,0xb4,0xca,0x75,0xea,0xb8,0x9e,0x23, +0x0e,0x4c,0xb1,0x3d,0x93,0x9e,0x7a,0x64,0x7f,0x4a,0x2d,0x38, +0x49,0xd6,0xa7,0x2c,0x23,0xe7,0xcb,0xbb,0x93,0x73,0xdc,0x3d, +0x26,0x07,0xf4,0xed,0x97,0x11,0x50,0x6a,0xf6,0x85,0x96,0x4a, +0xe6,0xbe,0x43,0x87,0x8f,0xec,0x9d,0x15,0x6c,0x9a,0x20,0x07, +0xcf,0x99,0x35,0x7d,0x46,0xd4,0xa1,0x4c,0x93,0x66,0x83,0x03, +0x14,0x32,0x46,0x3e,0x59,0xe0,0x03,0xf6,0xc7,0xf1,0x8a,0x04, +0x0f,0x5c,0x94,0xf5,0x93,0x0c,0xf7,0x1f,0x6e,0xda,0x5e,0x6a, +0x5e,0x91,0x61,0x58,0xe8,0xd1,0x27,0xae,0x8f,0x3d,0x51,0xa7, +0x3a,0x5b,0xc1,0x07,0x57,0xaf,0xdc,0xbf,0x37,0xf4,0x12,0xb6, +0xc6,0xd6,0x43,0x87,0x7d,0xf2,0xf1,0x35,0x67,0x68,0x6d,0xc6, +0x0f,0xa0,0x93,0x92,0x97,0x9d,0xf9,0xcb,0x2f,0xd9,0xe3,0xfc, +0xc8,0xe9,0xf1,0x0b,0x1c,0xd7,0xba,0x75,0xe0,0xa9,0xd3,0x26, +0x74,0xc0,0x8d,0x8a,0xd8,0x1e,0x2e,0x40,0x04,0x24,0xd0,0x5e, +0x21,0x59,0xbf,0x80,0x4d,0x90,0xae,0xfc,0x22,0xe3,0xfb,0xab, +0x0c,0x30,0x6c,0x3f,0xb9,0x77,0x46,0x18,0x61,0x4f,0xff,0xd5, +0xeb,0x8f,0x75,0xcb,0xcd,0xff,0x94,0x62,0xf7,0x1a,0xa0,0xef, +0x00,0xec,0x01,0xef,0xe2,0x70,0x7b,0x8c,0xc7,0x00,0x0c,0xc1, +0x4d,0xf3,0xd7,0xcc,0x5b,0x17,0x6d,0xae,0x6a,0x0f,0x33,0x14, +0xfc,0x58,0xc2,0x56,0xad,0x0d,0xbf,0xb4,0xc1,0xc7,0x3f,0xc1, +0x7b,0xf2,0xa3,0x0b,0x3f,0xe1,0x00,0x03,0x18,0x24,0xb4,0x83, +0xb9,0x06,0xd5,0xbc,0x44,0xc1,0xf5,0x2d,0x25,0xe8,0xf8,0xb9, +0x01,0x07,0x45,0x60,0x07,0x6c,0x8e,0x2e,0xf6,0xc8,0xb1,0xfe, +0x17,0x60,0x3d,0xc2,0xec,0x20,0x6d,0x9a,0x63,0xc0,0x01,0x37, +0xa1,0x4f,0x73,0x18,0x66,0x4f,0xcc,0x0e,0x86,0x49,0x90,0xb0, +0x73,0xd5,0xce,0x55,0xbb,0x74,0x8b,0x03,0xcf,0xb2,0xc9,0x52, +0x8a,0xc2,0x60,0x08,0x10,0x36,0x52,0x58,0xa1,0xfa,0x36,0xff, +0x59,0x96,0xcb,0x92,0x11,0xc3,0xe6,0x8f,0x45,0x8a,0x4b,0xc0, +0xb8,0x41,0xa6,0x93,0xac,0x28,0xad,0xaa,0x53,0x95,0xc2,0xeb, +0x6f,0x65,0xb8,0x7b,0x99,0x76,0x9f,0x01,0xe4,0x2b,0x22,0x4a, +0x11,0x41,0x8b,0xe9,0xbc,0xfc,0xe4,0x50,0xe1,0xa5,0x4b,0x87, +0x7c,0xba,0x9b,0xb4,0x73,0xf8,0xee,0x2b,0x11,0xc0,0xf6,0xac, +0xb2,0x16,0xdd,0x2a,0x7b,0x72,0x73,0x37,0x56,0x5d,0xe7,0x91, +0xc2,0x6b,0xa7,0xff,0x25,0x01,0xdb,0x91,0x0c,0xb8,0x9e,0xd7, +0xad,0x49,0xc0,0x9e,0x27,0x62,0xf5,0xe7,0x9a,0x91,0x9a,0xcd, +0x9b,0x54,0x62,0xd1,0x93,0xf2,0x2c,0xb9,0xba,0x96,0x8d,0x80, +0x00,0xe3,0x2c,0xdb,0x44,0x4d,0xa7,0x74,0xb0,0xe5,0x75,0x5e, +0x32,0x6d,0x21,0xda,0xbe,0x8d,0xf5,0x38,0x34,0xe5,0x9c,0x14, +0x75,0x09,0x36,0xe5,0x0d,0xd6,0x32,0xb5,0xed,0x12,0xc5,0x77, +0x4a,0x98,0xb7,0x77,0x58,0x5a,0xbe,0x69,0xbb,0xbc,0x7f,0xd3, +0xde,0xed,0x3b,0x4c,0x3b,0x77,0x24,0x26,0x1c,0xb6,0x2f,0x4a, +0x09,0xf5,0x35,0x5b,0xff,0x31,0xb0,0x01,0x64,0x72,0x87,0x23, +0xe2,0x5d,0x9b,0x99,0x3a,0xbc,0x3f,0x92,0xb9,0x78,0x17,0x02, +0x44,0x87,0x11,0xf0,0x29,0x77,0xf0,0x66,0x1a,0xc7,0x4f,0x75, +0xc8,0xed,0xa3,0xb8,0xc3,0x8a,0xb7,0x73,0xbb,0xbb,0x74,0xee, +0xec,0xae,0x50,0xbc,0xc3,0x52,0xcf,0x08,0x1f,0x39,0x25,0xad, +0xb8,0x30,0x55,0xf7,0x91,0x7d,0xa7,0x86,0x7a,0x99,0xb4,0xa9, +0x83,0x2c,0x90,0xdf,0xb0,0xf3,0x7b,0x32,0x52,0x34,0x05,0x75, +0x70,0x6f,0x3d,0x3f,0x08,0x45,0x6f,0x65,0xbd,0x9e,0xe3,0x74, +0x91,0x15,0xe9,0x27,0x3e,0x24,0xd2,0x5b,0xa4,0x45,0xc8,0xbf, +0x9d,0x2b,0x32,0x5c,0x1d,0x85,0x27,0x6c,0xae,0xea,0x2b,0xf2, +0x22,0x54,0x7a,0x0f,0xb6,0x8b,0xbc,0x08,0xb5,0x6a,0x22,0xc5, +0x54,0xc7,0x92,0x12,0x9e,0x24,0x12,0x23,0x54,0xd7,0x52,0xf5, +0x14,0x99,0x11,0x2a,0x3d,0x12,0xad,0x75,0x45,0xa9,0x39,0x8d, +0x6d,0x26,0x89,0x7e,0x8a,0xc0,0x71,0x4b,0xd4,0x7d,0x47,0xad, +0xad,0xaf,0x8b,0xba,0x62,0xcd,0x59,0x64,0x47,0xfa,0x89,0x0f, +0x9c,0xe4,0x8b,0xf4,0x88,0xc8,0x1b,0xfd,0x8f,0xd9,0x11,0x22, +0xa2,0x3e,0x0d,0xb7,0xaf,0x12,0x80,0x3a,0x41,0x77,0x91,0x1e, +0xa1,0xe1,0x6d,0xf0,0x7b,0x91,0x1e,0xa1,0xba,0x35,0x44,0xb6, +0xcd,0x11,0x51,0x9a,0x56,0x55,0xfb,0xaf,0x09,0x12,0xaa,0x7b, +0x21,0xc8,0x79,0x5f,0x8c,0xd8,0xa8,0xf5,0x12,0x29,0x12,0x77, +0xd6,0x1e,0xa7,0x2b,0x01,0xe8,0x27,0x92,0x24,0x22,0xcd,0xd5, +0x8c,0xc8,0xb4,0x0f,0x17,0x3d,0x8a,0xb4,0xce,0x22,0x47,0x42, +0xa5,0xae,0x98,0x28,0x72,0x24,0x2f,0x20,0xb1,0xa3,0x72,0xbe, +0xc8,0xe5,0x56,0xcf,0x2f,0xbb,0x5f,0xb5,0x1b,0xed,0x7e,0x6f, +0xe4,0x57,0xfd,0x2e,0xf7,0xb3,0x23,0x2d,0xf5,0xc7,0x77,0x94, +0xaf,0x2e,0x5c,0x7c,0xf4,0x68,0xc4,0xc5,0xde,0xbd,0x5d,0x87, +0xf7,0xec,0x59,0x3e,0xfc,0x2b,0x73,0x89,0x95,0x57,0xd8,0xa9, +0xc2,0xc2,0xd4,0xcc,0xe2,0xe2,0xd4,0x60,0x1f,0x9f,0xb0,0x71, +0x5e,0x66,0xeb,0x17,0xaf,0x66,0xa3,0x49,0xc1,0xf7,0xbe,0xfd, +0x04,0xda,0x83,0x93,0xb1,0x50,0x86,0x21,0xf7,0xa1,0x03,0xbc, +0xfb,0xc2,0x84,0xe7,0x5f,0xdb,0x48,0x10,0x9b,0xa4,0xe0,0xf8, +0xaa,0x47,0x30,0x5e,0xea,0xd0,0xdc,0x9d,0x0c,0x42,0x7b,0xa3, +0x8f,0x8c,0x1d,0x4a,0xd1,0xe1,0x87,0x16,0x26,0xeb,0x17,0x09, +0x34,0x16,0xce,0xbf,0xb2,0xc1,0xf3,0x12,0xbc,0xdb,0xe9,0x3e, +0x29,0xec,0x10,0xd1,0xee,0xf4,0x09,0xb6,0xc7,0xf7,0x3a,0x9b, +0xae,0x27,0x29,0x3f,0xfc,0x56,0x0a,0x0e,0xd0,0x41,0x00,0x6e, +0xef,0x0e,0x0e,0x1d,0x7e,0x37,0xc1,0xf8,0xea,0x47,0x64,0x48, +0xaa,0xae,0x8b,0xb1,0xed,0x24,0xac,0x0d,0xc3,0x0d,0x6a,0x92, +0x70,0x24,0x87,0x1b,0x90,0x9e,0x0d,0xd8,0xcf,0xa0,0x95,0xc9, +0xd0,0x14,0x5b,0x28,0x6d,0xa0,0x9d,0x41,0xcd,0x92,0x7f,0xa2, +0x3f,0x5f,0x4a,0x1d,0xb1,0xbd,0x41,0x3b,0x25,0x7f,0x47,0x7f, +0xac,0x5f,0xec,0xb7,0x8c,0x06,0x03,0xf4,0x33,0xa8,0x65,0x32, +0x8a,0xbf,0x34,0x1a,0x6a,0xe3,0x70,0x83,0x96,0x24,0x0f,0x23, +0xf3,0xfb,0x1d,0xb4,0x37,0xa8,0xa7,0xe4,0x8e,0xf4,0xe7,0x4b, +0xe9,0x27,0x6c,0x67,0xd0,0xb2,0xe4,0x36,0xf4,0x87,0x70,0x87, +0x88,0xd1,0xd1,0x49,0x7d,0xab,0x1e,0xdd,0x4d,0xc2,0x68,0x29, +0xa5,0x1a,0x95,0xaa,0x47,0x4f,0xaa,0x1f,0xc9,0xc4,0xba,0x23, +0xd4,0x46,0x33,0x8a,0x9e,0x79,0xb7,0xfa,0x51,0xdf,0x99,0x32, +0xf8,0x26,0x29,0xdd,0xa9,0x51,0xb2,0xe6,0xb6,0xb7,0xd9,0x8b, +0xaa,0xbd,0x55,0xa3,0x94,0x09,0xf3,0x22,0xa6,0x99,0x17,0xca, +0xe1,0xdb,0xa3,0xd2,0x57,0x9a,0x62,0x02,0x66,0xfa,0xf9,0xfa, +0xd5,0x3a,0x27,0x15,0xe5,0x1c,0xbf,0x73,0xcd,0xb8,0x43,0x4e, +0x9e,0xb7,0x7f,0x22,0xf1,0xa6,0xea,0x91,0x1a,0xa2,0x9c,0x2f, +0x74,0xb9,0xdd,0xf3,0xcb,0x1e,0x57,0xec,0x7c,0x3c,0xee,0xb9, +0xd1,0xe2,0xf4,0xa7,0xc5,0xa9,0x5a,0xab,0x7e,0xaa,0x2f,0xce, +0xc3,0x11,0x97,0x7a,0xf7,0x1e,0x31,0xac,0x57,0xcf,0x0b,0xb4, +0x38,0xc5,0xb4,0x38,0x99,0x6f,0x2d,0x4e,0xb0,0x58,0x9c,0xaa, +0xb5,0xbc,0xd5,0x47,0x6c,0xe2,0xbc,0xa8,0x69,0xa4,0x45,0x53, +0x77,0x47,0x1d,0x37,0x69,0x5d,0xad,0x8e,0xab,0xc0,0x26,0x4e, +0xe4,0x56,0x5f,0xb2,0xe3,0x02,0xcd,0x1e,0xd1,0x65,0xc2,0x1f, +0x5d,0x4e,0x98,0xd6,0xe2,0x19,0xa2,0x30,0xf2,0x0d,0x85,0x2b, +0x2c,0x14,0xfa,0x0b,0x0a,0xb3,0x8f,0x7f,0x71,0xd5,0xb8,0x93, +0x28,0x4c,0xd4,0x29,0x8c,0x86,0x31,0xbc,0x55,0x31,0xcb,0xe2, +0xa6,0xff,0x62,0xf4,0xe8,0xc1,0xeb,0xae,0x66,0x77,0xf2,0x02, +0x07,0x9b,0xa3,0xe4,0x9e,0xc3,0x7c,0xb1,0xd6,0x4a,0xd3,0x49, +0xad,0x0e,0x37,0x67,0x50,0x63,0x01,0xd2,0x46,0xf7,0xde,0xb7, +0xd0,0xfe,0x1e,0x38,0xd9,0x17,0x4a,0x30,0x04,0x3a,0x7c,0x8c, +0xef,0xbe,0x30,0x03,0x49,0x89,0x9c,0x84,0xb1,0x0a,0x90,0x94, +0xe0,0x78,0xf9,0xfb,0xe6,0xe8,0x50,0x86,0xed,0xed,0x7d,0x24, +0x12,0x06,0x07,0x8f,0xf6,0x2d,0x68,0x16,0x05,0x55,0x5b,0x15, +0x24,0x29,0x81,0xf3,0x32,0xbe,0xdb,0x09,0x69,0xe0,0x10,0xd1, +0xee,0x84,0x04,0xec,0xbd,0xce,0xe6,0xa4,0x21,0x4a,0xfb,0xdf, +0xc0,0xc1,0x03,0x3a,0x08,0xc0,0xed,0xc1,0xa1,0xec,0xfb,0xdf, +0xcd,0x38,0x5e,0x5f,0x0d,0x35,0x46,0x5d,0x44,0x5e,0xf2,0x59, +0x36,0x71,0xdf,0xbc,0x64,0x33,0xee,0xb1,0xda,0x2e,0x25,0xef, +0xdb,0x7d,0xfc,0x44,0xd4,0x6e,0x9a,0x9e,0x34,0x2d,0x6a,0xde, +0x04,0x4b,0xc3,0x5e,0xbd,0x61,0xcf,0xf1,0xe3,0x7f,0x34,0x4c, +0x9c,0xb8,0x6f,0x6e,0x32,0x21,0x57,0x5d,0xd5,0x1e,0xdc,0xb8, +0x83,0xbd,0x50,0x27,0x55,0xd9,0x2b,0xd5,0xa3,0xaf,0x55,0x8d, +0x16,0x70,0x27,0xa9,0xa7,0x15,0x6d,0xdb,0x35,0x75,0x1b,0x3d, +0x94,0xa8,0x47,0x14,0x6d,0xcd,0x75,0x75,0x8d,0x2c,0xe6,0xc9, +0x95,0x8f,0x65,0xde,0x22,0x90,0xdd,0x93,0xbf,0xef,0x81,0xbd, +0x1f,0xa2,0x9f,0x3d,0x52,0xc0,0xd4,0xb3,0x53,0x4f,0x7d,0x26, +0xbb,0xa9,0xb5,0xd3,0x23,0xe8,0xd3,0x13,0xfc,0xec,0xc1,0x0f, +0x7a,0x3f,0xfc,0xfe,0xb1,0xf9,0x9e,0xdc,0xba,0x33,0x76,0xea, +0x8b,0x83,0x2d,0xb3,0xea,0x70,0xf7,0x97,0x0f,0x45,0xdf,0xbe, +0x4a,0xcb,0xf3,0x5f,0x43,0xa2,0x7c,0x29,0x37,0xeb,0xec,0x06, +0xf3,0x66,0x69,0xd4,0x86,0xdc,0xa0,0x4b,0xf6,0x90,0xd8,0xed, +0xfc,0x4b,0x29,0x3d,0xea,0xe0,0x38,0x13,0x6e,0x93,0x46,0xce, +0x38,0x71,0xd6,0xdc,0x57,0x1a,0x35,0x7d,0xc2,0x48,0xf1,0x38, +0x2e,0x2a,0x3c,0x44,0xe8,0xa4,0x73,0x55,0x63,0xe5,0xa5,0x5b, +0x37,0x4c,0x94,0x87,0x8f,0x0d,0x1a,0xb5,0xdc,0xbc,0x44,0x3a, +0xbb,0x7c,0x6c,0x16,0x6d,0xa8,0xfb,0xbf,0x76,0x6b,0x29,0x85, +0xec,0x0b,0x3f,0x65,0x82,0x6d,0xd2,0xb9,0x23,0x13,0x46,0x99, +0xef,0x4a,0x67,0x0f,0x9f,0x38,0x27,0x1e,0x4f,0xed,0x3b,0x98, +0x2e,0xf0,0xb6,0x55,0xfa,0xca,0xd0,0x1f,0x98,0x41,0x2d,0x91, +0xa0,0x3f,0x32,0xc3,0x5d,0xf1,0xba,0x16,0xd9,0xa0,0xdd,0x96, +0xc4,0x0c,0xa2,0x44,0x73,0x77,0x94,0x0d,0xea,0x6d,0x09,0x44, +0x3d,0x35,0x8b,0x5e,0x5a,0x89,0x68,0xc6,0x71,0x8a,0x98,0x3c, +0x9c,0xa0,0x65,0x15,0xbd,0x37,0x29,0x78,0x82,0x56,0xee,0xc4, +0xdf,0x4f,0x31,0x59,0xf1,0xe4,0x0d,0x56,0xb1,0x12,0x59,0xf3, +0x02,0x27,0x83,0xe6,0x85,0x8f,0xfe,0x52,0x21,0x00,0x44,0x2a, +0x9e,0xb2,0xea,0x85,0x4e,0xaa,0xa8,0x10,0xf5,0x28,0x3a,0x1e, +0xfe,0x9b,0x5a,0x5a,0x95,0x95,0x0f,0x14,0xbd,0xd8,0x57,0x00, +0xb9,0x2b,0xd6,0x69,0xa5,0x1a,0xae,0xe8,0x9d,0xee,0xea,0x9d, +0x74,0xb0,0x7d,0x85,0x9a,0x66,0x1d,0x52,0x3e,0xab,0x92,0x91, +0x5d,0x24,0xff,0x8e,0x64,0xd7,0x57,0x3d,0xaa,0xdc,0xac,0x96, +0x81,0x0d,0x47,0xf1,0x0c,0xeb,0xc1,0x4a,0xc1,0x0f,0xd5,0x27, +0x68,0x4d,0xe6,0x27,0x59,0xae,0xf6,0x98,0xa2,0x54,0xf5,0xc6, +0xd0,0x1e,0x60,0xad,0x91,0x2a,0xbf,0xd8,0x5b,0x15,0xaa,0x60, +0x72,0xd5,0x74,0xf8,0x50,0x7b,0x42,0x21,0x2e,0x1a,0xa6,0x28, +0x8f,0xd1,0x5a,0x7d,0xf2,0x51,0x75,0x6f,0xc1,0x85,0x28,0x05, +0xfb,0x9c,0xff,0xba,0x6a,0x4f,0xb7,0xf3,0x22,0xc4,0xa3,0xf5, +0x50,0xab,0x15,0xe8,0xed,0xd6,0xbd,0x7a,0xcf,0x13,0x37,0xec, +0x2d,0xe8,0x8a,0xe0,0xf6,0xc7,0x49,0xa6,0xea,0xa8,0x41,0x4a, +0x25,0xa4,0x3a,0x4a,0x30,0x18,0x53,0x2d,0x25,0x6a,0xcc,0x87, +0x60,0x65,0x32,0x06,0x1b,0x2e,0x49,0x19,0x10,0x6c,0x00,0xd3, +0x79,0x72,0x0f,0x0f,0x43,0x5f,0x03,0x98,0xa9,0xc4,0x6b,0xad, +0x60,0xd8,0x59,0xff,0xdf,0xe4,0x06,0x8d,0xa5,0x19,0xd8,0xd7, +0x20,0x4a,0x4d,0xa4,0xb7,0x86,0xf4,0x3e,0xaf,0x60,0x67,0xcb, +0x98,0xce,0x02,0xe2,0x8c,0x3e,0xca,0x85,0x07,0x12,0x34,0xde, +0x7a,0xef,0x16,0x48,0xc6,0xdf,0x5c,0x4b,0xd0,0x74,0xd4,0x14, +0xbb,0xce,0x00,0x8b,0xe4,0x4b,0xb1,0xb9,0x53,0x52,0xc7,0x96, +0xe7,0xda,0xfa,0x5d,0x71,0x39,0xd1,0x25,0xbe,0xd6,0xfd,0x11, +0x7d,0x64,0xac,0xb5,0xe4,0xe3,0x11,0x0e,0xc6,0x56,0xe5,0x1e, +0xd0,0x6c,0xaa,0x09,0x37,0xcb,0x4e,0x09,0x63,0xd2,0x83,0xca, +0x46,0x7a,0xdb,0xe6,0xbb,0x5c,0xf3,0xff,0x79,0x59,0x2d,0x64, +0xea,0x3e,0xe5,0x6c,0x5e,0x46,0x65,0x82,0x09,0x67,0xc9,0x9f, +0x24,0x4e,0x38,0x7c,0xcd,0x08,0xe5,0xf8,0x40,0x19,0x3a,0x66, +0x6c,0xdf,0x18,0x13,0xac,0x96,0xbf,0x8d,0xcc,0x08,0x73,0x32, +0x12,0x27,0xb7,0xc2,0x55,0xee,0x70,0x94,0x8d,0xc7,0xab,0xca, +0x17,0x92,0x3a,0xb7,0xca,0xd5,0xd0,0x5f,0xd2,0x46,0xd2,0x4a, +0x8f,0x9a,0x71,0xf2,0x8e,0xf9,0xbc,0x7c,0xe7,0xf0,0xc9,0xb3, +0x67,0x0f,0x8f,0x1f,0x60,0x72,0x93,0x07,0xcc,0x18,0x3f,0xca, +0xa4,0x46,0x6a,0xd6,0x62,0x40,0xa1,0xd5,0xbf,0xe9,0x40,0xab, +0x65,0xfd,0x40,0xb9,0xdd,0xc7,0xf0,0x52,0x42,0x0e,0xad,0x13, +0xb3,0x77,0x15,0x26,0x9c,0xb5,0xab,0xb8,0x86,0x5c,0x5a,0x39, +0x32,0x66,0xe4,0x9c,0xd1,0xd8,0x05,0xfa,0xd9,0x7e,0x9d,0x5f, +0x59,0xf8,0xdc,0xf8,0xcd,0x90,0xf2,0xb6,0xf8,0xae,0xe3,0xa7, +0x9d,0x46,0x1c,0xf5,0x39,0x3d,0xc6,0xe4,0x38,0x61,0x90,0x57, +0x4b,0xa3,0xc3,0x9d,0x1e,0x14,0x57,0x18,0x2e,0x9c,0x4b,0x3f, +0x6c,0xa2,0x90,0xf1,0xac,0x52,0x90,0x3d,0xd5,0x8b,0x37,0x6b, +0xc4,0x4e,0xa7,0x16,0x1f,0x31,0x81,0x1b,0x06,0x18,0x02,0x43, +0x7c,0x67,0x38,0xd9,0x13,0xe3,0x26,0xbc,0x59,0x20,0xdd,0xbe, +0xd9,0xc7,0xd3,0x9e,0x79,0x86,0xdb,0x6f,0xa2,0xa5,0xeb,0xa9, +0xda,0x2a,0x0f,0xa0,0xfe,0x03,0xac,0x5f,0x7a,0xea,0x23,0xf1, +0xa9,0xeb,0x13,0x91,0x57,0xd1,0x34,0x7a,0x23,0xb4,0x31,0x0c, +0x96,0x36,0xd2,0x06,0x6e,0x2a,0x88,0x74,0x82,0x16,0x13,0x3e, +0xc2,0x5a,0x42,0x34,0xc7,0x71,0x87,0x04,0x1a,0xb5,0x03,0x6a, +0x73,0xd9,0x85,0x0c,0xa2,0x2a,0xc1,0x76,0x05,0xb6,0x3f,0xc6, +0xed,0x62,0x7d,0x56,0x2e,0x5e,0x48,0x90,0x9f,0x60,0x07,0xf5, +0xbe,0x68,0x5b,0x49,0xae,0x0c,0xb1,0x2e,0x53,0x9c,0x2e,0x12, +0xe2,0x99,0x55,0x67,0x45,0xed,0x7c,0x71,0xbc,0x48,0x7f,0x6f, +0x73,0x7e,0x87,0x76,0x12,0x17,0xde,0x74,0x05,0x41,0x5c,0xc5, +0x6d,0xb2,0x45,0x6d,0x3d,0xde,0xdc,0x8d,0x1e,0x57,0x8a,0xc3, +0x4d,0x1a,0x33,0x4b,0x1c,0x6c,0xea,0x0a,0xd0,0xf2,0xd5,0x6a, +0xa6,0x7d,0x68,0x95,0xb9,0xe7,0x40,0x9a,0x79,0x9b,0x9c,0x36, +0xf7,0x40,0x70,0xf0,0xdc,0xd9,0xa1,0xe4,0xa8,0x87,0xee,0x99, +0x9d,0x49,0xdc,0x54,0x77,0x70,0xdb,0x8f,0x08,0x7b,0x16,0x6f, +0x76,0x82,0xfe,0xec,0xe5,0xcd,0xf7,0xe9,0x4f,0xa6,0xeb,0x04, +0xce,0x93,0xdb,0xa4,0x10,0xae,0x59,0x14,0x53,0x94,0xe3,0x7c, +0x19,0x47,0x61,0x63,0x6e,0xb6,0x66,0xf8,0x7e,0xd8,0x90,0x11, +0x93,0xe6,0x6d,0x2f,0x34,0x41,0xd9,0x90,0xa1,0x2b,0xe4,0xac, +0x79,0x21,0x69,0xae,0xf6,0x9d,0x3f,0x1e,0x84,0xed,0xb0,0xdd, +0xfd,0x41,0xdf,0x96,0x1f,0x4b,0x2d,0x3a,0x64,0xfe,0x5c,0x1a, +0xbd,0x31,0x25,0xe4,0xa2,0x3d,0x34,0x3a,0x4d,0x0c,0x32,0xd1, +0xd6,0xe8,0x42,0x7e,0xfd,0x48,0x5c,0x82,0x1f,0xe2,0x40,0x5c, +0x4b,0xae,0x4d,0x47,0xec,0x09,0xd1,0xe6,0x18,0x48,0x50,0x06, +0x85,0xe5,0x5c,0x27,0x4b,0x78,0x3d,0x35,0xa7,0xa2,0x22,0x75, +0xc2,0x68,0x13,0x5a,0xcb,0xae,0xa1,0x21,0x83,0xc5,0x6a,0xfb, +0xbe,0xaa,0x2f,0xb8,0xb1,0x81,0xdb,0x9d,0x11,0x6f,0x6d,0xbb, +0xcd,0x9b,0x1f,0x10,0x9c,0x5c,0xcc,0xa5,0x6d,0xa2,0x7e,0x59, +0x95,0xab,0x52,0xed,0x4a,0x92,0x0c,0x9f,0x81,0x15,0xe1,0x59, +0x08,0x0b,0x91,0xfe,0xe2,0x67,0xe6,0x6a,0x2b,0x2b,0x6c,0xaf, +0xe6,0x41,0x7b,0x8a,0x1a,0xef,0x7f,0x82,0x26,0x33,0x4a,0x32, +0x9a,0x3e,0xfe,0x04,0x65,0x02,0x0b,0x27,0x6d,0xd4,0xfe,0xbc, +0xc5,0x23,0x26,0xa2,0x92,0xef,0xb8,0xfc,0xad,0xe0,0x9a,0x27, +0x97,0xe6,0x8a,0xbf,0xbd,0xe1,0x3a,0x6f,0x1e,0x21,0xa0,0x6b, +0x36,0xda,0x37,0xa2,0xc6,0x8d,0xb0,0xe0,0x17,0x9f,0xc2,0x32, +0x6d,0xa0,0xd4,0x35,0x38,0xd0,0x71,0xd0,0xe4,0xcc,0xf3,0x8b, +0x4c,0x03,0xe6,0x19,0x3a,0xee,0xb9,0x3a,0x0c,0xde,0xb1,0x07, +0xf6,0xe0,0x36,0x30,0xb1,0x61,0xcc,0x80,0xef,0x15,0x58,0x80, +0xdf,0x0b,0xf9,0x3c,0xaa,0xb6,0x84,0x6d,0x50,0x68,0x68,0x25, +0xe1,0x64,0x5c,0xdf,0x06,0xeb,0x19,0x56,0xaa,0x72,0xaf,0x6a, +0xd7,0x87,0xb0,0x50,0xa0,0xad,0xb4,0x51,0x1b,0xde,0xc2,0x33, +0x55,0x56,0xbd,0xc4,0x93,0xdb,0xab,0xd6,0x62,0xc5,0x3a,0xaa, +0xfd,0x29,0x6a,0xd2,0xfa,0x1b,0x7e,0xa8,0x72,0xed,0xa3,0x7d, +0xb9,0x52,0xea,0x05,0x1f,0x62,0xbc,0xda,0xdf,0xd0,0xbe,0xda, +0xf5,0x81,0xfa,0xe5,0x7a,0x8b,0xbc,0x28,0xe0,0x44,0x73,0x6d, +0x0c,0x8b,0xb8,0xbc,0x9f,0xe1,0x22,0x9a,0x6f,0x63,0x70,0x32, +0xdf,0xb6,0xc2,0x7a,0x3d,0x9f,0x82,0xc9,0x0c,0xb5,0x64,0x30, +0x3d,0x7a,0x0a,0xf5,0xa0,0xde,0xa3,0x2e,0x68,0x32,0x61,0x2d, +0x9a,0x79,0xcf,0x2e,0x58,0x4f,0xcc,0x3c,0xdf,0x86,0x5b,0xf7, +0x11,0x93,0x6a,0x81,0xbd,0x95,0x1b,0x0e,0x8f,0x64,0xe8,0xb4, +0xef,0x7b,0x72,0xe1,0x43,0x8d,0x3a,0xb0,0x19,0xbf,0x60,0x23, +0xe8,0xb1,0xc0,0x34,0x48,0xf6,0x3f,0x12,0x52,0x62,0x1a,0x0d, +0x73,0x94,0xff,0x00,0xaa,0x6a,0xb0,0x21,0x17,0xbc,0x97,0xcc, +0x5b,0x8f,0x62,0xcf,0xf6,0xe5,0x5f,0xff,0xc5,0x08,0x8d,0x3f, +0xab,0x40,0x6b,0x13,0x1e,0xad,0x76,0x95,0xe0,0xa8,0x5a,0x4b, +0x41,0x6f,0xd8,0x00,0xde,0x12,0x6f,0x9d,0x2b,0xe6,0xb9,0x96, +0x2b,0xc2,0x6d,0x50,0x4f,0x54,0x59,0x29,0x10,0x7e,0x4b,0x3b, +0xf8,0x29,0x84,0x57,0x5b,0x3d,0x14,0x9c,0x78,0x4c,0xcc,0xee, +0xa5,0x7d,0x24,0x61,0xe0,0x85,0x8e,0x14,0x28,0xbb,0x5e,0xe3, +0x0e,0x42,0x11,0x54,0x8f,0xea,0x16,0x62,0x4d,0x56,0x56,0x9d, +0x14,0x4f,0xa3,0xb8,0x31,0x8f,0x04,0x61,0xac,0xcd,0x43,0x48, +0x91,0x60,0x85,0xda,0xcb,0xd0,0x41,0x42,0x57,0xfc,0xc6,0xb0, +0x92,0xfe,0xc0,0x37,0xf4,0x44,0xab,0xf5,0xb1,0xf0,0xd7,0x96, +0xdb,0xdc,0xd2,0x7a,0xca,0x6a,0x5b,0x35,0xc7,0x70,0x47,0x9b, +0xf6,0xa9,0xda,0x48,0xd6,0xda,0x68,0x39,0x86,0x01,0xc2,0xf2, +0x1f,0xab,0x5a,0xab,0xbc,0xb6,0x81,0xde,0x17,0x3b,0x56,0x6d, +0xfb,0xee,0xa2,0xb0,0xcd,0xcf,0xb0,0x83,0x52,0x29,0xe1,0xd6, +0x57,0xf5,0x0d,0x42,0xef,0x21,0xc8,0xe2,0xd1,0xf5,0x1e,0xfe, +0x5d,0xf5,0xb6,0x8e,0xc3,0xc5,0x98,0xc1,0x14,0xc4,0x95,0xa7, +0xf0,0xe6,0xdb,0x05,0x35,0x6b,0xb0,0x8f,0xa2,0xae,0xbb,0xa1, +0xad,0x13,0x0b,0xd3,0xa7,0x6a,0x81,0xf2,0x3b,0x76,0x2b,0x3c, +0xd0,0x13,0xfa,0x0b,0xcc,0x7d,0x6d,0xb8,0x74,0x94,0x61,0x74, +0x29,0xaf,0xf5,0x2e,0x69,0xd5,0x45,0xce,0xd3,0x18,0xd8,0x55, +0xf7,0x7d,0xe5,0x43,0x94,0x6f,0x5d,0x0c,0x79,0x62,0x19,0x9a, +0xe0,0x26,0x0a,0x27,0x66,0xab,0x6e,0x3a,0x5b,0x16,0x2b,0x3f, +0xdc,0x3a,0x7d,0x83,0xb7,0xb6,0x63,0x57,0xbf,0x31,0x1f,0x50, +0xe5,0xe3,0x32,0x7c,0xd0,0xf3,0x77,0xa4,0x70,0xfa,0xc3,0xe6, +0xd8,0x1b,0x7b,0x3f,0x6f,0x0e,0x0e,0x26,0x75,0x9a,0xd5,0x83, +0x12,0xd7,0x8f,0xcc,0x4b,0xf0,0xf8,0x26,0xf9,0x69,0xf9,0x95, +0x27,0x62,0x05,0x26,0xbc,0x1a,0x2a,0xc0,0xcd,0x71,0xe7,0xac, +0x1d,0x21,0x2b,0xe4,0x7c,0x9a,0x6e,0x02,0xaa,0x1a,0x2a,0x18, +0x41,0x16,0xb8,0x9e,0x82,0xcf,0x45,0x45,0x1a,0xaf,0xd7,0x4e, +0x7f,0xac,0x36,0xf6,0x1a,0x5c,0x28,0x7f,0x91,0x9e,0x5f,0x61, +0x56,0xbf,0x15,0xdb,0xde,0x99,0xd7,0x57,0x45,0x87,0x78,0x5c, +0x28,0x66,0xf6,0x81,0xb6,0x55,0xfc,0x29,0xe4,0x75,0xf7,0xeb, +0x70,0x16,0x73,0x3b,0x32,0x3c,0x70,0x56,0xdd,0xc6,0xeb,0xfc, +0x93,0xac,0x42,0x93,0x87,0xdc,0xf6,0x98,0x68,0x69,0x69,0xc3, +0xeb,0x4d,0x17,0x85,0xcf,0xb9,0xe1,0x92,0xf8,0x7b,0xd8,0xe6, +0x27,0xde,0xba,0x13,0x93,0x42,0x96,0x2c,0x0e,0x35,0xf9,0x0d, +0x7e,0x84,0xd5,0xd2,0x98,0x64,0x92,0x25,0xa2,0xee,0xdd,0x87, +0x4a,0xaf,0x7b,0xea,0xb6,0x4f,0xb0,0x4a,0x1e,0x3a,0x62,0xea, +0xf0,0xfe,0xe3,0xf2,0x9e,0x9b,0xe0,0xc6,0x27,0xf8,0x50,0xc6, +0x86,0xd7,0x1c,0x7f,0x7f,0x7c,0x22,0x2f,0x7f,0xaf,0x98,0xcc, +0x18,0xde,0xec,0x47,0x42,0xd6,0x46,0xdd,0xa6,0x80,0x49,0xdb, +0x66,0xf8,0x41,0xaa,0x84,0xb5,0xd9,0xd0,0xc5,0xb0,0x4e,0xca, +0xc1,0x2e,0x95,0xb8,0xd6,0xf0,0xa3,0x04,0xcd,0xd4,0x6d,0x86, +0x81,0x92,0x07,0xce,0xf6,0xc6,0x28,0xc3,0x2a,0x69,0x18,0x44, +0x39,0xc1,0x6c,0xc3,0x20,0xc9,0x05,0x67,0x0f,0xd7,0x6b,0x3c, +0x21,0xca,0x93,0x6a,0x08,0x5e,0x00,0xaf,0x9b,0x48,0x34,0xb7, +0x20,0xe2,0xed,0x33,0x08,0x70,0xb1,0x8d,0xda,0xe2,0x06,0x05, +0x1e,0xdc,0xfa,0x25,0x51,0xfc,0xea,0x1d,0x6e,0x17,0x24,0x9c, +0x3c,0x5a,0xeb,0x6b,0xaf,0x6c,0x86,0x8a,0x75,0x6f,0xc0,0xed, +0xc6,0x51,0x47,0x24,0x8f,0x7d,0x24,0xa4,0x9f,0x13,0xa2,0xf1, +0x35,0xc4,0x2a,0x17,0x30,0xd6,0xf0,0x4c,0x2a,0x87,0xc5,0x06, +0x30,0x5e,0xc5,0xda,0xd2,0x81,0xef,0x0c,0xdf,0x5e,0x1d,0x20, +0x9d,0x87,0x45,0x86,0x5e,0x92,0x27,0xc6,0x18,0x70,0xb0,0xe4, +0x06,0x31,0x24,0x7e,0x23,0xc4,0xc3,0xa7,0x92,0x37,0x3d,0xf4, +0x96,0x4a,0x71,0x91,0x61,0xa0,0xd3,0x33,0x29,0xb1,0xa3,0x01, +0x0d,0x4e,0xa0,0x50,0xc5,0x62,0x82,0x73,0x11,0x62,0x0d,0xbb, +0xca,0x95,0x6d,0xf9,0xbc,0x75,0x0e,0xc3,0x90,0x8b,0x8a,0x0b, +0x6e,0x27,0xba,0x47,0xc1,0xf6,0xa5,0xc7,0x0d,0xd0,0x42,0x82, +0xfb,0x58,0xa0,0xac,0x94,0x5c,0x60,0x5b,0x2c,0x3d,0x7f,0x20, +0xc5,0x4e,0x14,0x93,0x99,0xf4,0x6a,0x95,0xc2,0x5f,0xcd,0xbd, +0xca,0x0d,0x2b,0x75,0x6f,0x94,0x1b,0x7c,0x14,0x0e,0xa7,0xae, +0xf2,0x5a,0x42,0x3e,0x0b,0xfc,0x14,0x6c,0x27,0xc3,0x70,0xa8, +0x4d,0x91,0x91,0x04,0xc3,0xb1,0xb6,0x01,0xda,0xc9,0xd8,0x0f, +0x0c,0x14,0x19,0x49,0xd8,0x02,0x9b,0x52,0xec,0xf3,0x13,0x45, +0x46,0x12,0xb4,0x6b,0x63,0xf8,0x7f,0x08,0xfb,0x0e,0xb8,0x28, +0x92,0xe0,0xdd,0x4f,0x64,0x77,0x74,0x55,0x30,0xcd,0x0a,0xec, +0xba,0x6b,0x56,0xc0,0x4c,0x36,0xa3,0x64,0x10,0xc9,0x62,0x4e, +0x28,0xa8,0x08,0x22,0x39,0x47,0x15,0x31,0x21,0x4a,0x90,0xa0, +0xa2,0x98,0x15,0x73,0x38,0x73,0xce,0xf9,0xf4,0x8c,0x67,0x3a, +0xd3,0x79,0xe7,0x79,0x7a,0xa1,0x67,0xe9,0xc1,0x7b,0x3d,0xbb, +0xea,0x79,0xef,0xfd,0xdf,0x7b,0xbf,0xfd,0xb1,0x3d,0x5d,0x5d, +0xf5,0x75,0x55,0x75,0x75,0x4f,0xd7,0xee,0xf4,0x32,0x90,0xa3, +0x56,0x6f,0x59,0x66,0x24,0xa7,0x56,0xdd,0xf5,0x5b,0xae,0x05, +0x7a,0xe9,0x81,0x54,0xc6,0x32,0x23,0x39,0x91,0xa4,0x24,0x69, +0x09,0x45,0xdc,0x20,0xa7,0x7d,0x2e,0xf3,0x84,0x31,0x0a,0x7b, +0xd9,0x5e,0xfb,0xad,0x24,0xcc,0x20,0xc4,0xfd,0x72,0xca,0x00, +0x99,0xf0,0x69,0x9e,0xa6,0x6c,0x78,0xa0,0x7b,0x3a,0x60,0x03, +0x49,0xe1,0xea,0x29,0xdb,0x35,0x3d,0xb5,0xd5,0xe7,0x6b,0xc7, +0x84,0x45,0x6c,0x12,0x91,0x94,0xd9,0x03,0xea,0x9f,0x3e,0x98, +0x2d,0xdf,0x40,0x47,0xf3,0xcf,0x59,0x9b,0xa4,0xfd,0x50,0x62, +0xcb,0x07,0xaf,0x99,0xba,0x3d,0x4a,0x73,0x68,0x8b,0x2c,0x76, +0x73,0xf6,0xda,0xed,0x16,0xbb,0xcb,0x36,0x55,0x1f,0xd2,0xd4, +0x9c,0x28,0xdd,0xba,0xdf,0xe2,0x64,0xc2,0xae,0xe9,0x9b,0x34, +0x63,0x23,0x65,0xeb,0x66,0x15,0xc7,0x4d,0xb7,0x08,0xcb,0x88, +0x8a,0x1f,0xab,0x99,0x13,0x92,0x39,0x73,0xa2,0x85,0x3e,0x19, +0x7a,0xc8,0xef,0xaa,0x5a,0xb3,0x59,0xbb,0x52,0x9f,0x96,0x4c, +0x65,0x89,0x0b,0x4b,0x64,0x66,0x49,0xb9,0x0e,0x83,0x06,0x8b, +0x1e,0x31,0xf2,0x9a,0x10,0xc9,0x91,0xb6,0x4a,0xc3,0x05,0x53, +0x85,0xdc,0xe0,0x87,0xd5,0x29,0xbf,0x97,0x76,0x66,0x3d,0x04, +0x27,0xde,0x8f,0xd6,0x9e,0x93,0x9b,0x88,0x6d,0xd9,0xe2,0x64, +0xa1,0x6e,0x37,0x4e,0x41,0xd2,0x4f,0x4a,0x85,0x09,0x3d,0x27, +0x6c,0xbe,0xcf,0xee,0xd1,0xe2,0x34,0x77,0xa1,0x3d,0x0d,0xe6, +0x4c,0xc4,0x33,0xe4,0xb2,0x60,0xaa,0x96,0x4f,0x56,0x84,0xc7, +0xcd,0x52,0x9b,0x3e,0x51,0x30,0x02,0x27,0xec,0xd7,0x1d,0x57, +0x98,0x88,0x07,0xc8,0x7d,0xf2,0x23,0x5f,0xb7,0x91,0x5d,0xb6, +0xbd,0xfb,0x90,0x27,0x41,0xa4,0x9f,0xec,0x2e,0x47,0x59,0x11, +0x1b,0x4c,0xda,0xb2,0x7c,0x96,0xfd,0xc9,0x48,0x7a,0xf0,0xff, +0xa5,0xc5,0xc4,0xef,0x8b,0x3c,0xf1,0xa6,0x3f,0xaa,0x55,0x8d, +0x15,0xd3,0xff,0x43,0x68,0x34,0x42,0xa1,0xeb,0x79,0x54,0xea, +0x3a,0x22,0x2e,0x52,0xea,0xda,0xe9,0x73,0xcf,0xe7,0xc5,0xfd, +0x12,0x37,0x3d,0x47,0x3e,0x0a,0xec,0xbe,0xd3,0x90,0x74,0x9c, +0xb0,0x85,0x36,0x96,0x5e,0xa4,0xf1,0x84,0x48,0xd2,0x90,0x76, +0x94,0x99,0x88,0xba,0x1f,0x85,0x95,0xfc,0x15,0xca,0x5d,0x61, +0xdb,0x75,0xaa,0x14,0x2b,0x78,0xa2,0x64,0x11,0xc5,0xc9,0x98, +0x89,0xe4,0x84,0xf0,0x86,0x27,0x58,0x7f,0xf3,0x54,0x95,0x76, +0x7c,0x75,0xc2,0x0c,0x59,0x54,0x52,0x5a,0xfc,0x48,0x55,0x68, +0x72,0xf5,0xa6,0x14,0x6d,0xc2,0xb6,0xf1,0xf1,0xb2,0xa0,0xaa, +0xf5,0xae,0xec,0x06,0x67,0xe0,0x15,0xf9,0xda,0x8a,0xaa,0x8d, +0xda,0x12,0x6e,0x63,0x6a,0x55,0x44,0x44,0x6a,0x72,0xb4,0x26, +0x8b,0x8b,0xae,0x48,0xae,0xd5,0x18,0x9a,0x6f,0xf3,0x57,0x8e, +0x1d,0xbe,0x76,0x2d,0xf4,0xb0,0x97,0x57,0xe8,0x18,0x0f,0x8f, +0x63,0x63,0xae,0x68,0x8f,0x18,0x87,0xc7,0xaf,0xae,0xd5,0x56, +0x73,0xb5,0xd5,0xab,0x77,0xec,0xa8,0x4e,0x8c,0xd0,0xc4,0x73, +0x11,0xf1,0x89,0xe1,0x7a,0x89,0x95,0x74,0x0a,0x7f,0x68,0x53, +0xd5,0x9a,0x52,0xed,0x94,0xdd,0xb2,0xd4,0x8c,0xd4,0xdc,0x24, +0x55,0x52,0x66,0xd1,0xda,0x35,0x65,0x35,0x4f,0xef,0x69,0x73, +0xab,0x65,0xc1,0xf2,0xc2,0x64,0x99,0xcf,0xf8,0x49,0xd3,0x42, +0x2c,0x42,0xf6,0xc7,0x1d,0x97,0x64,0x84,0xc6,0x82,0xc0,0x64, +0xd6,0x6f,0x58,0xa5,0x9d,0xb1,0x47,0x96,0x92,0x98,0x96,0x1d, +0xa7,0x4a,0x49,0x28,0xaa,0x9c,0xa9,0x2d,0x49,0x88,0x2d,0x8f, +0x50,0x8d,0x8d,0x8a,0x99,0x9d,0xa4,0xdd,0x36,0x45,0x56,0xb9, +0xba,0xbc,0x78,0xad,0xaa,0x72,0x4d,0x5e,0xca,0x56,0x6d,0xd6, +0x9a,0x75,0x69,0xb5,0x7a,0x13,0x9e,0xe9,0xd2,0x79,0xb7,0x6d, +0xf6,0x74,0xd0,0xe1,0x78,0x19,0x59,0x45,0x6c,0xbe,0x56,0x4c, +0x44,0x67,0x62,0xcc,0x66,0xff,0xad,0x3a,0xa5,0x8b,0x9c,0x78, +0x7d,0x52,0xf2,0xdf,0xd7,0x29,0xd9,0xfa,0x2f,0x74,0x22,0x65, +0xca,0x2f,0xfb,0xd6,0xa4,0x7a,0x5f,0xd9,0x1e,0xb6,0xa1,0x95, +0x3d,0x50,0xe8,0xf7,0xa9,0x52,0x69,0x3a,0x92,0xff,0xfd,0xcc, +0x0d,0xc2,0x13,0x3e,0xe0,0x46,0x97,0x2e,0x01,0x6e,0x94,0xa7, +0xfc,0x19,0xb7,0xdf,0xb5,0xc7,0x8d,0x03,0xa2,0x76,0xdf,0x63, +0x1b,0xd8,0x7b,0x9b,0x76,0x9f,0x39,0xb3,0x29,0x6c,0x10,0xdb, +0xc0,0x0e,0x8a,0x0a,0x0b,0x60,0x46,0xbc,0x24,0x2d,0xa4,0xd4, +0xf9,0x84,0x82,0x5c,0xa2,0x2b,0xf9,0x1d,0xf2,0x1a,0xb2,0x52, +0x46,0xf2,0x6c,0x69,0x1e,0x47,0xe7,0xa9,0xb5,0x50,0x90,0x5d, +0x6a,0x6d,0x6b,0x05,0xfd,0x75,0xb3,0xce,0x84,0x17,0x16,0xde, +0x10,0x17,0xca,0x4d,0xea,0x17,0x52,0xb5,0x52,0xdd,0x39,0x5f, +0x61,0x72,0x98,0xb8,0x4b,0x89,0xf6,0x0f,0x6a,0x93,0x7b,0x0a, +0x21,0x86,0x3a,0xa8,0xdb,0x2e,0x57,0x7c,0xb7,0xff,0xae,0xea, +0xbf,0x99,0xb7,0xe8,0x29,0xa5,0xde,0xb5,0x8c,0x43,0x0f,0xd5, +0xe9,0x5b,0xa1,0xfe,0x74,0x90,0x94,0xb7,0xd3,0x3a,0x29,0x71, +0x17,0x3a,0x2b,0x77,0x57,0xad,0xde,0xa4,0xad,0xe0,0x36,0x25, +0xaf,0x09,0x9b,0x92,0x92,0x10,0xa5,0x49,0xe5,0xa2,0x2a,0x13, +0xf7,0x30,0x3d,0x3b,0x09,0x61,0x6a,0xf5,0x1b,0x05,0xc3,0x96, +0xe4,0xe8,0x6b,0x49,0xee,0x84,0x62,0x9f,0x5e,0xc5,0x4f,0x4a, +0x75,0xbb,0x58,0x16,0xed,0x35,0xc4,0x9f,0xdc,0x55,0xab,0x14, +0xd2,0x64,0xa8,0x66,0x11,0xab,0x6e,0xeb,0xa7,0x10,0x4f,0x91, +0x03,0x6a,0x33,0xb9,0x7e,0x5a,0x78,0xb2,0x56,0xb3,0x59,0x0a, +0xf1,0x3a,0xb1,0x91,0x5a,0x3b,0xff,0xae,0xa0,0x8a,0x93,0xd7, +0x49,0x2f,0x8e,0x76,0xa3,0xdf,0x33,0xaf,0x6f,0x20,0x7e,0x92, +0xfc,0x70,0x05,0x99,0xad,0xd6,0xae,0x54,0xd0,0x21,0x6a,0x6d, +0xb9,0x5e,0xf0,0x96,0x70,0x46,0x6d,0xe6,0xaf,0x10,0xcb,0x4f, +0x32,0xb9,0xb3,0x64,0x89,0xfc,0xd8,0x81,0x9a,0x83,0xa7,0x6b, +0x22,0xbc,0x35,0x34,0xf1,0x2c,0x49,0xe7,0x5e,0x4d,0x3e,0x36, +0xc8,0x77,0xc6,0xcc,0x88,0x0c,0x4d,0xfe,0x59,0x7f,0xb9,0x5e, +0x91,0xb9,0x7a,0x3d,0xd8,0x54,0x54,0x1e,0xb5,0x24,0xdf,0xf7, +0xe4,0x3a,0x77,0xda,0x31,0xed,0xe5,0x0b,0xd9,0x32,0xba,0x86, +0x36,0x18,0x25,0xd7,0xcf,0xdf,0x6f,0xe7,0x90,0x34,0x7d,0xc9, +0x2c,0xfd,0xf4,0x65,0xba,0xab,0xdb,0x76,0xd3,0x2b,0x4e,0xbe, +0xe7,0x8f,0xd2,0x24,0x4e,0x6d,0x9e,0x63,0xd0,0x7f,0xee,0x17, +0xf5,0x95,0xa4,0x13,0xb9,0x29,0x3b,0x4e,0x6b,0x68,0xe3,0x93, +0xd7,0xfe,0x63,0x80,0xba,0xf5,0x59,0xa9,0xdb,0x5b,0x24,0x55, +0xaf,0xb1,0x3d,0xa9,0xc9,0xe4,0x7f,0x3e,0x7b,0xe9,0x5e,0xad, +0x36,0xa0,0x56,0xe6,0x1b,0x1d,0x31,0x61,0x84,0x6a,0xe4,0xac, +0xad,0x3f,0x69,0x0f,0x70,0xa4,0x0d,0x69,0xfa,0x3d,0x31,0x22, +0x66,0x16,0xa4,0xc1,0x98,0x73,0xbd,0xfa,0xf9,0x8d,0xa5,0x9d, +0x34,0xf4,0x26,0x37,0x3b,0x21,0x32,0x29,0x3a,0x69,0x5b,0xb0, +0xd9,0xaa,0xd2,0xca,0x92,0x55,0xe5,0x8d,0xb2,0xb9,0x2e,0xc7, +0x5c,0x7f,0xd3,0xe4,0xe8,0x86,0xf3,0xbb,0xd7,0xc5,0xb8,0x6b, +0x53,0xb8,0xbe,0xe3,0xfb,0x3a,0xd8,0xb0,0x3c,0x9d,0x7b,0xb5, +0x61,0xfd,0x6e,0x8d,0x09,0x69,0xa6,0xbb,0x2c,0x80,0x7f,0x79, +0xf3,0x12,0x43,0x33,0x72,0xbd,0xd4,0xa7,0x8f,0xab,0x0f,0x35, +0xa2,0x46,0x37,0x7d,0x5e,0x6a,0xeb,0xdb,0x89,0xe0,0x85,0x5b, +0x4b,0xb8,0xc7,0xb4,0x17,0xc9,0x12,0x1d,0x64,0x3f,0xeb,0x7c, +0x07,0x8a,0x0f,0xf2,0xe5,0x56,0x2c,0xcd,0x8c,0x13,0x2c,0x65, +0xbd,0xd8,0x8e,0x4c,0x17,0x25,0xd8,0xf1,0x81,0xd3,0xf7,0x1e, +0xd3,0x9e,0xe6,0x8e,0x6d,0xdf,0x7b,0xfa,0xf4,0xf6,0xc9,0xa1, +0x9a,0x40,0x2e,0x74,0xfa,0xe4,0x40,0x0d,0x5b,0x96,0x86,0xf2, +0x57,0xe9,0x06,0x4f,0xce,0x44,0x67,0x4c,0xce,0xe9,0x64,0x3c, +0x19,0x77,0x5b,0x4c,0x19,0x4a,0xc6,0xd5,0xcb,0x9e,0xc8,0xc9, +0x39,0xa5,0xd0,0xee,0x36,0xbd,0x4a,0xe6,0x93,0x83,0x77,0xe8, +0x41,0x92,0x49,0xae,0xde,0x16,0xdb,0xc9,0x85,0xda,0x7a,0x5f, +0x9e,0xfc,0x7d,0x9b,0xae,0xd3,0xb1,0xdb,0x9d,0x09,0x0d,0x38, +0xcb,0x96,0x7b,0xd2,0x50,0xee,0xb5,0xce,0xe5,0xc3,0x1f,0xea, +0x8e,0xc6,0x8a,0x8e,0x43,0x3b,0xfb,0xc4,0x6a,0x68,0x43,0x92, +0x72,0x87,0xda,0x14,0x73,0x8f,0x0f,0x7e,0xff,0x9e,0x58,0x5a, +0x10,0xc7,0xde,0x64,0x00,0x9d,0x44,0x27,0xf5,0xa6,0x03,0xd8, +0xf6,0xc6,0xf2,0xfb,0xae,0x8f,0xc7,0x6b,0xb2,0xa9,0x0d,0x67, +0x42,0xab,0xc8,0x0f,0xba,0x0c,0xb6,0xa2,0x1c,0xb9,0x7a,0x35, +0xf4,0x08,0x5b,0x51,0x46,0x7b,0x7a,0x1e,0x1b,0xfd,0xff,0x58, +0x51,0x48,0x58,0xfd,0x0e,0xb5,0xaa,0xf6,0xdb,0xa5,0x53,0xdd, +0xfa,0x9c,0x62,0xec,0xb7,0xab,0x76,0x87,0x64,0x85,0x9d,0x44, +0xcc,0xf9,0xcf,0xf2,0x2a,0x9b,0xad,0x98,0xf9,0xcd,0x82,0xca, +0xaa,0x33,0xc8,0x5e,0x29,0x82,0x87,0xd4,0xab,0xa5,0x9a,0xcf, +0xff,0x18,0xbc,0xaf,0x0d,0x92,0xe2,0x92,0xf3,0xfa,0x24,0xa1, +0xfd,0x79,0xa5,0x9a,0xf3,0x51,0x98,0x90,0x43,0x86,0x0b,0xa1, +0x93,0x2b,0x2f,0xd1,0x3f,0xea,0x9b,0x85,0x17,0xae,0x6c,0x6e, +0xec,0x57,0xd0,0xa3,0xa4,0x50,0xda,0xc6,0x7e,0xd4,0x17,0xba, +0xb6,0xcc,0x69,0x12,0x93,0xb0,0xf0,0xdf,0xba,0x1e,0xa5,0x4e, +0xf5,0x5f,0xc2,0x17,0xb4,0xbf,0x3f,0xa3,0xb1,0x35,0x42,0xc5, +0x29,0xe8,0x77,0x2c,0x2f,0x62,0xdb,0xe0,0xfa,0x4e,0xa4,0x85, +0xba,0x59,0x5f,0x16,0xb1,0x56,0xec,0x42,0xde,0x44,0xfa,0x67, +0xc9,0xcd,0x78,0xb5,0xb6,0x13,0xbb,0x8d,0xf5,0x36,0x50,0xc8, +0x12,0x25,0xdb,0x05,0x8a,0x3b,0x3f,0xd3,0xc9,0x20,0xa5,0xb4, +0x1b,0xa4,0x8e,0x06,0x41,0xb2,0x53,0x2c,0x53,0xb7,0x7d,0xa5, +0x10,0xfb,0x92,0x31,0xd2,0xce,0x8b,0x3a,0x0a,0xf5,0xd2,0x36, +0x51,0xb4,0x57,0xab,0xd9,0xd6,0xee,0x19,0xab,0x31,0x8c,0xfa, +0xde,0x6a,0x95,0x19,0xb3,0xf0,0x85,0xa1,0x6a,0x80,0xfc,0x64, +0x25,0x11,0xbf,0xe0,0x59,0x7e,0xc6,0x3b,0x4a,0x57,0xa8,0x55, +0x8d,0x14,0x62,0x47,0x12,0x21,0xed,0xbc,0xec,0x84,0xa3,0x2c, +0xd3,0x8e,0x98,0xf9,0xab,0x35,0xdb,0x83,0x4c,0x16,0xde,0xc9, +0xf7,0x4f,0x9c,0x38,0x51,0x26,0xbe,0x9b,0xcc,0xf6,0x18,0x56, +0xd6,0xb5,0x33,0x49,0x04,0x89,0x90,0x99,0xd8,0x09,0x67,0xf5, +0x5c,0xbf,0x30,0xae,0x01,0xf2,0x5f,0x7f,0x89,0xd8,0x4a,0xa7, +0xd3,0x08,0xc2,0xfe,0x6a,0xb7,0x5a,0xfd,0x22,0x13,0x06,0xc8, +0xad,0xbf,0xf0,0x8a,0xe2,0x44,0x7e,0xe2,0xfe,0xfd,0xfb,0x65, +0xc2,0x12,0x03,0x96,0x14,0x2f,0x0d,0x59,0xe2,0x60,0x23,0x27, +0xf9,0x6c,0x99,0xfe,0x9b,0x15,0x6c,0xd1,0xb6,0x97,0xbb,0xd2, +0xc9,0x32,0x5a,0x2b,0x27,0x5a,0xb1,0x2f,0x4f,0x15,0xe4,0x8d, +0x8c,0xcc,0x95,0x53,0x05,0x7d,0xc3,0x04,0xae,0x0b,0xab,0x49, +0x35,0x4f,0xca,0xa8,0x13,0x91,0xf5,0x3e,0xad,0xa1,0x2d,0xe5, +0xa4,0xa9,0x37,0x69,0x62,0xbb,0xd5,0x3a,0x7f,0x81,0x59,0x6d, +0xd4,0xd4,0xd5,0x7e,0x2a,0x6a,0x6e,0xdb,0x85,0xf6,0xa1,0x7d, +0x9e,0x77,0x21,0x5d,0x88,0xf6,0xa7,0x97,0x24,0x50,0x4b,0x53, +0x68,0x04,0x6f,0x13,0x70,0xf4,0x0f,0xed,0x4d,0xee,0x8f,0x33, +0x47,0x7f,0xfa,0xe9,0xcc,0xa8,0x8e,0x1a,0x57,0xae,0x63,0xc0, +0x28,0x1b,0xb6,0x66,0xde,0x15,0x32,0x98,0x12,0xe2,0x20,0x67, +0xf2,0x96,0xce,0xa3,0x3f,0x38,0x93,0x1f,0x68,0x06,0x7d,0xeb, +0x2c,0x0c,0x62,0x53,0xe2,0xdc,0x2e,0xd6,0x44,0xca,0xeb,0x67, +0x90,0x72,0xdd,0x0c,0x59,0xaf,0x11,0x3c,0x1d,0x24,0x46,0xd3, +0x41,0x42,0xb4,0x94,0x2a,0x5c,0x26,0x17,0xf8,0x6b,0xe2,0xaf, +0xdc,0xdd,0xd2,0xf3,0x17,0x89,0xb9,0x4a,0x68,0x7f,0x5d,0x6c, +0x2f,0xa7,0xa3,0x1d,0xda,0xd1,0x36,0xb4,0xdd,0x0b,0x2a,0x23, +0xa3,0xb5,0x82,0xfa,0xa6,0x44,0x33,0x1b,0x7e,0xe1,0x79,0x06, +0x4b,0x35,0x89,0x1b,0x13,0x61,0xae,0xb4,0xcd,0xf4,0xf1,0xa5, +0x66,0x2a,0xb1,0x9d,0xab,0xa0,0x92,0x93,0xd1,0x2f,0x89,0x8c, +0xb4,0x23,0x6d,0xec,0xff,0xa6,0xa3,0xb5,0x62,0x3b,0x77,0xa1, +0x9d,0x9c,0x98,0x9f,0x1f,0x3e,0xb8,0x54,0x2b,0xfe,0xc2,0x74, +0x18,0x4b,0x22,0xe8,0x58,0x5e,0x77,0x85,0xd4,0xd6,0x5f,0x79, +0xa2,0xbb,0xf2,0xf0,0x8e,0xf8,0xb7,0xf3,0xc3,0xfa,0x2b,0x6c, +0x77,0xd3,0x45,0x88,0xa0,0x2d,0x79,0x4a,0x99,0xe3,0xc8,0xef, +0xb2,0x93,0x1c,0x95,0x0a,0x42,0xef,0x88,0x21,0x43,0xe4,0x6c, +0x17,0xd4,0x48,0x36,0x9f,0xa3,0x52,0x31,0x44,0x08,0xe1,0xa4, +0x1b,0xb1,0x91,0x92,0x8c,0x63,0x1e,0x1e,0x28,0xb7,0xa2,0xbf, +0x0f,0xa4,0x3b,0x64,0xf3,0xe4,0x43,0xc8,0x8e,0xf1,0x6c,0x77, +0x43,0x6d,0xbd,0xd9,0xde,0xbc,0x85,0x18,0x2a,0x99,0x35,0x83, +0xcc,0xe0,0xc7,0x8c,0xdc,0xfd,0x2c,0x4c,0xfb,0x6c,0xf7,0xf1, +0xdd,0x87,0x55,0x1b,0xaa,0xe6,0x66,0xd4,0x68,0xb7,0x5f,0x91, +0xad,0x0e,0x9f,0x51,0x14,0xa1,0x72,0xf3,0x9e,0x32,0x78,0xb4, +0xf6,0x87,0x50,0xb7,0xbd,0x43,0x55,0xd4,0xc4,0x71,0x00,0x6d, +0x42,0x9b,0x3c,0x1e,0x40,0x4c,0x6e,0xdf,0xd8,0xfb,0xc3,0x31, +0xed,0xe0,0x23,0x97,0xa7,0xdc,0x50,0xd5,0x6e,0x2b,0x5a,0xbd, +0x43,0x3b,0xfd,0x8a,0x2c,0x63,0x4e,0xf2,0xdc,0xd9,0x2a,0xb1, +0x89,0x72,0xc0,0x98,0x43,0xf7,0xef,0x1f,0x3e,0xf4,0xe0,0xd4, +0xc9,0x09,0xfd,0xf6,0x6a,0xfb,0x4d,0x0a,0x99,0x10,0xc4,0xee, +0xee,0xfd,0x48,0x08,0xe1,0xf8,0xbb,0x67,0xf7,0xfe,0xb6,0x5a, +0x5b,0x28,0xef,0xbe,0xf5,0xf4,0xf8,0x3f,0x55,0xa4,0xc1,0x8d, +0x87,0xd2,0x0a,0xe9,0xf6,0x90,0x36,0x18,0xec,0x3f,0xb9,0x5b, +0xa2,0x76,0x9e,0xfc,0xed,0xcc,0xc0,0x83,0x1d,0x54,0xb4,0x81, +0x5b,0x7f,0x69,0xc5,0xbc,0xd1,0x9f,0x34,0xd0,0x5e,0x37,0xf6, +0x9b,0xb6,0xeb,0x9c,0xf6,0x28,0x77,0x6e,0xe7,0xae,0x73,0x57, +0x0e,0x4d,0xb7,0x59,0xab,0xb1,0x89,0x1b,0x3b,0xdd,0x4b,0x45, +0xfe,0x54,0x7a,0x8d,0xdd,0xfe,0x53,0x9c,0xf6,0xa7,0xb5,0x87, +0xb6,0x5f,0x51,0x9d,0xdb,0x39,0xd5,0x4f,0x3b,0x8a,0xf3,0x9b, +0x36,0xd5,0x4f,0xca,0xa4,0x43,0xb6,0xf3,0x82,0x70,0x49,0x5c, +0x5e,0x28,0x17,0xfa,0x09,0xd9,0x23,0xf7,0x89,0x33,0xc5,0x43, +0xd2,0xfe,0xbc,0xf1,0xd7,0x8d,0x84,0x37,0xdb,0x48,0xe8,0xaf, +0xa4,0x4f,0x06,0x84,0x5d,0x3c,0x2d,0x15,0x7b,0x4b,0x6b,0xe8, +0x68,0x72,0x5f,0xb6,0x54,0x4e,0xc6,0xd0,0xfb,0xb2,0xc7,0x72, +0x5a,0x22,0xf4,0x66,0x62,0x6c,0x03,0xb5,0x8b,0x77,0x90,0x13, +0x89,0xe5,0x98,0x9c,0x48,0x44,0x47,0x39,0x95,0x58,0xe6,0x4b, +0xf9,0xc8,0x73,0xa5,0xe0,0xcc,0x72,0xc1,0x7d,0xe7,0xa4,0x1f, +0x6d,0xdf,0xe7,0x47,0xbb,0x68,0x44,0xe7,0xc7,0x82,0x23,0x47, +0xa6,0x78,0x3e,0xa6,0xde,0xd4,0xdb,0xd3,0x91,0x4e,0xd1,0x88, +0xd2,0xc7,0x8b,0xe4,0x39,0x8b,0x33,0x47,0x91,0x09,0x4f,0xb9, +0xea,0x48,0xbc,0x89,0xf7,0xd5,0xc7,0x64,0x8a,0x46,0x70,0x74, +0x14,0x9d,0x39,0xda,0x65,0x92,0x1f,0x6d,0x4e,0x9b,0x4f,0x3a, +0x47,0xba,0x68,0x4c,0xc4,0xb8,0xa3,0x2c,0x1a,0x5e,0xca,0xef, +0xed,0x38,0x74,0x4b,0xab,0xcb,0x23,0xa6,0x37,0xfb,0x70,0x83, +0xc2,0xc7,0xba,0x68,0xeb,0xf3,0xa8,0x29,0x1b,0x65,0xaf,0x5d, +0xcc,0x92,0xe1,0xbf,0x73,0x67,0xd7,0x6d,0x38,0xae,0xd5,0xed, +0xf9,0x78,0xb1,0x2b,0xe7,0x1f,0x1b,0x1d,0xaa,0xad,0xdf,0xc3, +0x91,0x12,0xe5,0xff,0xdc,0x60,0x22,0x9a,0x09,0xa3,0xc8,0x5a, +0xfe,0xbd,0xe7,0x83,0x5e,0x15,0x1a,0x36,0x59,0x4d,0x2f,0x75, +0xe4,0x86,0xc7,0xcc,0x1c,0xa9,0xa5,0x81,0x5c,0xcf,0x34,0x8f, +0x01,0x5d,0x2c,0xba,0x5c,0x1b,0xf0,0x26,0x4d,0x43,0x23,0xa8, +0x89,0xcf,0x47,0xee,0xe2,0xfa,0xed,0x47,0xb5,0x24,0x90,0x7b, +0x5d,0x71,0xf5,0xc1,0x7b,0x0b,0x7a,0x4b,0x79,0x69,0xfb,0xb1, +0x33,0x2b,0x35,0x74,0x05,0x17,0xb0,0x72,0xfa,0xb1,0x4b,0x16, +0xc4,0x96,0xb6,0xe2,0x49,0x11,0x77,0x2a,0x6d,0x7b,0xa8,0xaf, +0x85,0xef,0xf4,0xd0,0xa0,0x34,0x8d,0xfe,0x93,0xad,0x60,0xfe, +0xdb,0xef,0x32,0xe8,0x14,0xfa,0xce,0x40,0x08,0x93,0x08,0xbb, +0x35,0x42,0x5f,0xe5,0x6e,0x56,0x0d,0xfb,0xfa,0x5d,0x07,0xf9, +0x4e,0xb8,0xc4,0x87,0xa9,0x5b,0x0c,0x54,0xec,0xde,0xa5,0x6e, +0xde,0x57,0x31,0x55,0x62,0x99,0x2a,0xd5,0x77,0xed,0x96,0xea, +0x61,0x06,0x0c,0x03,0xe5,0x33,0x87,0xfe,0x1b,0x80,0x48,0xe9, +0x1b,0x00,0xfd,0xf7,0x37,0x42,0x73,0x92,0xc9,0xef,0xdf,0x5a, +0x5a,0x73,0x42,0x5b,0x7d,0x68,0x53,0xd9,0x6e,0xd5,0xf6,0xb5, +0xd9,0xb1,0x9b,0xb5,0x5b,0x0e,0xc9,0xb6,0x47,0x4d,0x5d,0x13, +0xac,0x9a,0x38,0x33,0x73,0x4e,0x88,0x36,0x7e,0x6c,0x54,0x46, +0x98,0x6a,0x7a,0x5c,0xf1,0xba,0x59,0xda,0xc8,0xb1,0xb2,0xe9, +0x9b,0x76,0x25,0x9c,0x54,0xb1,0xfe,0x3f,0x09,0x99,0xfc,0xce, +0xca,0x35,0x9b,0xb4,0x65,0xdc,0xa6,0x94,0xd5,0xd3,0xa6,0x25, +0x27,0x46,0x69,0x32,0xb8,0xa8,0xaa,0x84,0x9d,0x1a,0x4b,0xaa, +0xe5,0xd5,0x0a,0x95,0x82,0xc6,0x1b,0x4b,0x85,0xa0,0xa0,0x85, +0xfc,0xce,0x2a,0x03,0x6b,0x32,0x63,0x4d,0x31,0xb0,0x56,0x32, +0x56,0x06,0x54,0x29,0x4c,0x36,0x70,0xaf,0xd0,0x73,0xd3,0xe5, +0xc6,0x42,0xe4,0x55,0x31,0x52,0xfa,0x94,0x32,0x44,0xf8,0x8e, +0xbf,0xca,0x89,0xbd,0xa9,0x99,0xcc,0x8f,0x13,0x7a,0x53,0xa5, +0xec,0x0a,0x47,0x2f,0xbc,0x92,0x2d,0xe7,0x3a,0xd2,0xdd,0xea, +0x0e,0x91,0x2c,0xa3,0x3d,0x24,0x50,0xde,0x93,0x23,0x17,0x7a, +0xcb,0x72,0x59,0x53,0x6f,0x99,0x17,0xe3,0x23,0x4a,0xd9,0x39, +0x49,0xea,0xb2,0x81,0x65,0x18,0xd9,0xc2,0x0b,0x6a,0x5a,0x2a, +0x7b,0x22,0xfd,0x3b,0xaa,0xd1,0xb2,0x42,0x8e,0x48,0xc5,0x63, +0x4e,0x54,0xd3,0x12,0x19,0x29,0x09,0xfd,0x7f,0xb4,0x32,0x97, +0x5d,0x26,0x5b,0xd4,0xda,0x35,0x0a,0x9d,0x86,0x94,0x4a,0x25, +0xa3,0x0c,0x7a,0xca,0x0b,0x36,0xb7,0x45,0x1b,0x39,0x6d,0xe5, +0x7b,0x92,0x98,0x12,0xd3,0x0b,0x27,0x49,0x2b,0xed,0x67,0x92, +0x77,0xdf,0x01,0x74,0x30,0x1d,0xfc,0x62,0x00,0xf1,0x96,0x96, +0x35,0x1b,0x89,0x97,0x4d,0x9d,0x17,0x0f,0xc8,0x60,0x32,0xb8, +0xef,0x03,0xea,0xad,0x15,0x6d,0x86,0x4a,0xa4,0x56,0x17,0x82, +0xa9,0x29,0x35,0xf5,0x0d,0xa6,0xad,0x18,0x49,0x9a,0x53,0x03, +0xc9,0x6c,0x5e,0xb0,0xbd,0x2d,0xda,0x32,0xe0,0x11,0xc7,0x3e, +0x7e,0x3c,0x7f,0x4c,0x82,0xb5,0xbd,0x23,0x11,0xbc,0x6d,0xfa, +0xd1,0xae,0xb4,0xcb,0x4f,0xfd,0x18,0x2c,0x5d,0x45,0xe3,0x78, +0xdd,0xa0,0x3b,0xf5,0x83,0xa4,0xa9,0x64,0xa3,0x97,0x62,0x5d, +0xfc,0xf4,0x88,0x2d,0xeb,0x5d,0x6d,0x1e,0x49,0x5d,0xd8,0x3a, +0x4b,0xa4,0x56,0xe7,0x43,0x3b,0x75,0x1a,0x11,0x2a,0x75,0xc0, +0x20,0x8e,0x1a,0x7f,0x96,0x51,0xb7,0xf1,0x53,0x2c,0x22,0xf7, +0xf9,0xda,0xcd,0x9b,0x76,0xec,0x98,0xb5,0x29,0x62,0x5a,0x54, +0x54,0x78,0xf8,0xa6,0xa8,0x9d,0xd2,0x27,0x7e,0xb5,0x44,0xc3, +0x0b,0xe3,0x07,0x8b,0xe3,0x69,0xb9,0xb7,0xf0,0xeb,0x65,0x69, +0x02,0x66,0x90,0xcd,0xff,0xa6,0xa5,0x6b,0xa6,0x4e,0x4d,0xd2, +0x7f,0xbf,0x36,0x6b,0x15,0x4b,0x4b,0xc9,0x2a,0xe5,0xb7,0x2d, +0x86,0x6f,0xde,0xf4,0x09,0xab,0xd4,0xb2,0xca,0xd0,0x92,0xf4, +0xdf,0x16,0x36,0xae,0x45,0xc2,0x5b,0xfe,0xa3,0xb7,0xcd,0x71, +0x2a,0x57,0x51,0xb9,0xcd,0xc8,0x4e,0xde,0xda,0x6b,0x53,0x65, +0x8f,0x8f,0x5d,0xdc,0xf9,0x4c,0xf5,0xec,0xe2,0x34,0xc7,0x63, +0xd2,0xf7,0x3e,0x69,0x64,0x15,0xbf,0xe9,0x53,0x5a,0x14,0xa7, +0xbf,0x5e,0xca,0x9f,0xfc,0x94,0x16,0x2c,0x65,0xd8,0xa5,0x74, +0x36,0x5f,0x97,0x16,0xf5,0x29,0x4d,0xaa,0xac,0xd3,0x57,0x82, +0xf5,0x15,0x83,0x84,0x58,0x22,0x96,0x6e,0x12,0x52,0xd8,0x74, +0x7f,0xaf,0x10,0x2b,0xc4,0x6d,0xbb,0x84,0x30,0x76,0xad,0x55, +0x88,0xb5,0x62,0xf9,0x5d,0x21,0xe1,0x2b,0x9a,0xb8,0x4e,0xac, +0x3e,0x29,0xcc,0xfc,0x82,0x28,0x94,0x8a,0xa5,0x51,0x42,0x8a, +0x98,0x22,0x11,0x2a,0x24,0xc2,0x36,0xb1,0x62,0x18,0xcb,0x8b, +0xc2,0x24,0x42,0xad,0x44,0x28,0x17,0x6b,0xc3,0x85,0xc9,0x62, +0xc2,0x97,0x7e,0x85,0x6a,0x71,0x5d,0xb0,0x30,0x4b,0x64,0x18, +0xea,0xe6,0x26,0x0a,0xb1,0x84,0x2d,0x16,0x37,0x15,0xe2,0x36, +0x56,0x98,0xb2,0x9d,0x3e,0xa3,0x36,0xfa,0x53,0x21,0xae,0xd7, +0xf7,0xc0,0x34,0x13,0x4a,0xa2,0xc4,0x64,0x31,0x25,0x4a,0xdf, +0x01,0xc9,0x67,0x1d,0x4c,0x15,0xc3,0xc4,0xf8,0x61,0x7a,0x7c, +0x52,0xce,0xf0,0x07,0x8b,0x09,0xe2,0xe4,0x70,0x3d,0x3c,0xd3, +0x50,0x58,0x1f,0x2c,0x46,0x8b,0xb3,0x82,0x0d,0xe8,0x9f,0xd2, +0xf4,0x46,0xb1,0x0e,0x3e,0xa5,0xe9,0x4d,0x92,0xfa,0xc8,0x5f, +0x25,0xe6,0xef,0xe2,0x0a,0x84,0x04,0x99,0x49,0x9d,0xc8,0xaa, +0x49,0x62,0xbe,0xde,0x44,0xc9,0xdc,0x29,0x42,0xc2,0xe0,0x4f, +0x69,0x86,0x2a,0xf3,0xc4,0x64,0x21,0x6c,0xb0,0x81,0x5f,0x2f, +0x7c,0xf3,0x0b,0x77,0x98,0x41,0xcd,0x4f,0x69,0xdf,0xf8,0x82, +0x79,0x57,0xaf,0xe9,0xb7,0xee,0xa8,0x4b,0x33,0x68,0xfb,0xd5, +0x23,0x64,0x1b,0x2f,0xe4,0x1b,0x34,0x66,0xb4,0x84,0x5d,0x42, +0xfe,0x57,0x47,0xe5,0x27,0x09,0xf9,0x53,0x59,0x4b,0xfc,0x57, +0x77,0xd5,0xea,0x11,0x3e,0x73,0x7f,0xa1,0x7d,0x46,0x08,0x13, +0x27,0xeb,0x51,0xff,0x4f,0x04,0x7d,0x7f,0x93,0x0d,0xfd,0x7d, +0x1e,0x68,0xbd,0x47,0x0c,0x3e,0xff,0x37,0x42,0x24,0x3d,0x0d, +0x43,0xce,0xec,0xce,0xaf,0x12,0xf3,0x3f,0xe3,0x7d,0x36,0x3d, +0x3f,0x59,0xcc,0xff,0xac,0x63,0x98,0x9e,0xf2,0x29,0xed,0x33, +0x83,0x21,0x32,0x3e,0xa5,0xe9,0x75,0xfa,0xea,0x39,0x03,0x02, +0xeb,0xf7,0xee,0x7f,0x11,0xf4,0x3c,0x61,0xdf,0x86,0xa3,0xa4, +0x88,0xde,0x6f,0xfa,0xf1,0x37,0x0c,0xae,0x34,0x10,0x7a,0xc5, +0xf3,0xab,0x0c,0x7e,0xd6,0xfb,0x21,0x3f,0xd9,0x50,0x31,0x0c, +0xb8,0x34,0x76,0x86,0xa1,0x96,0xae,0xf4,0x0e,0x90,0xb8,0xd5, +0xa6,0x46,0x0a,0x3d,0xa7,0x3e,0x70,0x0c,0x63,0x2f,0x75,0x56, +0xc5,0xa2,0x3a,0x59,0x48,0x89,0x12,0x53,0x0c,0x83,0x92,0xbc, +0x49,0x48,0x36,0x74,0x34,0x51,0x8c,0x1f,0xac,0xee,0x48,0x15, +0x5f,0xfb,0xf9,0x62,0xe5,0x97,0xbe,0xbe,0xda,0xf9,0xa5,0x4b, +0x03,0x47,0x82,0x41,0xfc,0xcb,0x10,0xe9,0x0d,0xfd,0xca,0xf1, +0x2d,0x41,0xd2,0x4d,0xea,0x40,0xaf,0xda,0x17,0xf0,0xaf,0x26, +0x7e,0xf1,0xd1,0xd7,0xee,0xbf,0xb8,0xe8,0x6b,0xc4,0xfd,0x3b, +0xb8,0xdf,0x2a,0xa5,0x97,0x0b,0xfb,0xc6,0xfa,0x2f,0x40,0xfa, +0x6e,0xbe,0x80,0x7c,0xf5,0xc2,0xbf,0x6e,0xee,0x7c,0x4c,0xa1, +0x0b,0x0d,0xe7,0xeb,0x6d,0xea,0x6d,0x75,0x36,0xdc,0x75,0x1b, +0xbe,0x7c,0xf9,0xf2,0x8a,0xf2,0x9c,0xe2,0xf4,0xb4,0xec,0xec, +0xb4,0xf4,0xe2,0xec,0x72,0xed,0x0b,0x65,0x69,0x49,0xf1,0xca, +0xf2,0xac,0xe2,0xcc,0xf4,0x2c,0x46,0x2a,0xc9,0x5e,0xc9,0x48, +0x2b,0x0d,0xa4,0xf4,0xb4,0x9c,0xec,0xb4,0xd4,0xa2,0xdc,0x4a, +0xed,0x4b,0x65,0x45,0x91,0x41,0x30,0x33,0x93,0x71,0x95,0x66, +0x97,0x32,0x52,0x79,0x31,0xe3,0xca,0x2e,0x4e,0xfb,0x2a,0xc8, +0xb8,0x24,0xf8,0xec,0xe2,0xf4,0x74,0x83,0x60,0x05,0xc3,0xfa, +0xca,0xc5,0x7a,0x4c,0x5d,0xce,0x48,0xe2,0x76,0x1b,0x7e,0xe5, +0x8a,0x15,0x65,0x2b,0x73,0x4a,0x98,0x1a,0x59,0xe9,0x19,0xc5, +0x39,0x06,0x35,0x18,0x29,0xab,0x84,0xa9,0xc1,0x48,0x25,0x39, +0x06,0x35,0xf4,0x24,0xa6,0x06,0x23,0xad,0x60,0x5c,0x2f,0x95, +0x5f,0x04,0x33,0x33,0x19,0xa9,0x34,0xc7,0xa0,0x06,0x23,0x65, +0x97,0xa4,0x7d,0x15,0x64,0x5c,0x06,0x12,0x53,0x43,0x2f,0xb8, +0x52,0xaf,0xc6,0x67,0x2e,0x43,0x8f,0x2b,0x99,0x1a,0xbd,0x98, +0x1a,0x25,0x2b,0xff,0xf5,0x46,0x96,0x41,0x8d,0x92,0x6f,0xbc, +0x91,0x65,0x50,0xa3,0xe4,0xab,0x37,0xd2,0x57,0x64,0x19,0xd4, +0x30,0x08,0x1a,0xbc,0x91,0x65,0x50,0xa3,0xe4,0x1b,0x6f,0x64, +0x19,0xd4,0xd0,0x93,0xf4,0xde,0x60,0x82,0x06,0x35,0x4a,0xbe, +0x7a,0x83,0xf5,0x28,0xa9,0xd1,0x97,0xa9,0x51,0x5a,0x5a,0x91, +0xbb,0x3c,0x8d,0xa9,0x91,0x9e,0x59,0x9c,0x69,0x50,0xa3,0xb4, +0x74,0xa5,0x41,0x8d,0xf4,0xcc,0x92,0x4c,0x83,0x1a,0x7a,0x52, +0x7a,0x4a,0x5e,0x6e,0x6a,0xe6,0x8a,0x4c,0x83,0x1a,0x4c,0x30, +0x6f,0x79,0x2a,0x53,0x23,0x3d,0xb3,0x34,0xd3,0xa0,0x06,0xe3, +0x32,0xa8,0x61,0x10,0x94,0xd4,0xd0,0xc3,0xa7,0xa6,0x1a,0x04, +0x0d,0x6a,0x18,0xb8,0x52,0x73,0x19,0xa9,0x38,0x53,0x52,0xa3, +0x37,0x53,0xa3,0xb8,0xfc,0xcb,0xa0,0xa4,0x7d,0x8d,0x8d,0xf2, +0xcf,0x83,0xa2,0xee,0x14,0xac,0x30,0x0c,0x45,0xda,0x8a,0x6c, +0x43,0xe7,0x06,0x76,0x36,0x14,0xea,0x4e,0x41,0x0a,0xc3,0x00, +0xa4,0x19,0xe2,0x60,0x65,0x31,0x6b,0xfb,0x3c,0x00,0x8c,0xdd, +0xd0,0xa5,0x9e,0xa4,0x1f,0x00,0x86,0xfe,0xc5,0xf2,0x92,0x95, +0xa5,0x86,0x01,0xc8,0xfc,0x66,0x00,0x4a,0x0d,0x96,0x67,0x7e, +0x33,0x00,0xa5,0x86,0x01,0xc8,0xfc,0x66,0x00,0x4a,0x0d,0x03, +0x90,0xf9,0xcd,0x00,0x94,0x1a,0x2c,0xcf,0xfc,0x66,0x00,0x4a, +0x0d,0x03,0x90,0xf9,0xcd,0x00,0x94,0x1a,0x06,0x20,0xf3,0xf3, +0x00,0xf4,0xd1,0x5b,0xfe,0x65,0x00,0xfe,0x63,0xb9,0x5e,0x0d, +0xc9,0x72,0x83,0xdb,0xbf,0xb1,0xfc,0xb3,0xdb,0x25,0xcb,0x0d, +0xce,0xfe,0xc6,0xf2,0x2f,0xce,0xfe,0x8f,0xe5,0x06,0x67,0xeb, +0x2d,0x67,0x5b,0x84,0xd6,0xba,0x91,0x7c,0x7d,0x9a,0x8e,0xbd, +0x3e,0xcf,0xd2,0xe0,0x30,0xbe,0xbe,0x47,0x7d,0x4f,0x5d,0x0f, +0x8e,0xf4,0xa1,0xbd,0x79,0xfa,0x17,0xf9,0x93,0xfc,0xc5,0x96, +0x8e,0xf7,0x8a,0x7a,0x36,0x81,0x75,0xb6,0xce,0xf5,0xb6,0xf2, +0x18,0x63,0x43,0x39,0xc7,0x58,0xdd,0xc9,0x4e,0x61,0x78,0x97, +0x68,0x43,0x19,0xed,0x0b,0xe7,0x9d,0x7a,0x1b,0x67,0xf9,0x7b, +0x9d,0x8d,0xba,0xe3,0x0a,0xc5,0x6f,0xea,0x0e,0x15,0x86,0x37, +0x7d,0xab,0x09,0x6d,0xc0,0x3b,0xdf,0xbe,0x23,0x7f,0xaf,0x36, +0x5d,0xc3,0xc8,0x5f,0xde,0xc4,0xb7,0xd4,0x99,0x77,0xbe,0x23, +0xd1,0xdb,0xb7,0x51,0x38,0xf3,0x77,0xee,0x38,0x73,0xbf,0x29, +0x25,0xc2,0x7a,0x67,0x5e,0xdd,0x29,0x5d,0xf1,0xb9,0x55,0xe9, +0xec,0x7c,0x87,0xfb,0xcd,0xd0,0xfe,0x5e,0xdf,0x5e,0x63,0xa8, +0xac,0x57,0x4a,0xef,0xe2,0xdb,0x39,0xbc,0xc4,0x41,0x86,0x4a, +0x30,0xca,0x3b,0xce,0xce,0xf2,0xdf,0x94,0x86,0x66,0x09,0x44, +0x2f,0xfd,0x5e,0x4f,0x26,0xce,0x77,0xf4,0x9c,0xef,0x0d,0xe2, +0x35,0xc4,0x48,0xf1,0xfe,0x3f,0x10,0x9f,0xd9,0x86,0x1a,0xd8, +0x7e,0xd3,0xd7,0xde,0x33,0xae,0xcf,0x78,0x77,0x78,0x89,0x20, +0xbe,0x8d,0xe1,0xbf,0x34,0xe8,0x1b,0xbf,0x29,0xc9,0x50,0xbd, +0x7e,0x7a,0xab,0x9d,0xc3,0x78,0x62,0x21,0x17,0x56,0x88,0xcb, +0x65,0x54,0xc5,0x89,0x51,0x3a,0x0b,0x9e,0xb0,0x44,0xf9,0x35, +0x7d,0x2d,0xa3,0x16,0x1c,0x3d,0x29,0xcc,0xd2,0xd7,0xfb,0x51, +0x27,0x19,0x55,0x73,0xb4,0x35,0x39,0x29,0x3d,0x94,0xdb,0x5a, +0x9e,0x24,0x6e,0xe7,0xa9,0x4a,0x2e,0xae,0x10,0x56,0xc8,0x88, +0x8a,0x13,0xa2,0xea,0x55,0x3c,0xb5,0x90,0xd3,0x37,0xd2,0x87, +0x08,0x16,0x1c,0x39,0x25,0x46,0x49,0xed,0xb4,0x3f,0xe9,0x2f, +0xb5,0x13,0x9e,0x9e,0xe2,0x29,0x4f,0x78,0x69,0x1b,0x2e,0xea, +0x47,0xb7,0x3e,0x55,0x97,0x26,0xa7,0xc1,0xba,0x20,0x49,0x81, +0x7a,0x8b,0x7a,0x0b,0x3d,0xdf,0x6b,0x61,0xb9,0xd4,0xa1,0x18, +0x25,0xce,0xd2,0xe3,0xf4,0x23,0xaf,0xa5,0x3a,0x3d,0x49,0x4f, +0xca,0xa4,0x5f,0xb8,0x70,0x32,0x26,0xad,0xe5,0x94,0x69,0x20, +0x5b,0xc5,0x34,0xd0,0xa9,0x74,0x2a,0xbd,0xde,0x2b,0xc4,0x15, +0xb2,0x5d,0x4a,0x21,0x4a,0x88,0xd2,0xab,0xfd,0x86,0xbe,0x61, +0x55,0x72,0x8a,0x9c,0x92,0x5a,0x69,0x7f,0xda,0x5f,0xaa,0xb2, +0xee,0x65,0x94,0xd7,0x47,0x8d,0x78,0x27,0x8c,0x0f,0x0e,0x0e, +0x66,0x98,0xdb,0x95,0x41,0xfa,0xb2,0x56,0x19,0x1c,0x1c,0xa4, +0xaf,0xeb,0xe9,0x62,0x33,0xda,0x9e,0x77,0xbf,0x7e,0xed,0xda, +0x75,0x0f,0x19,0xd9,0xec,0xce,0x7b,0x5c,0x67,0xd7,0x1e,0x32, +0x9a,0xc7,0x2e,0xaf,0x5d,0x93,0x2e,0xc5,0x4e,0xa7,0xd5,0xa6, +0x51,0x0a,0x71,0x0d,0xed,0xc0,0xbb,0x7b,0x78,0xb0,0x66,0x99, +0x10,0xe2,0xce,0x33,0x3e,0x0f,0x0f,0x77,0x19,0xdd,0x72,0x8d, +0xf7,0x90,0xa8,0x57,0x65,0x7f,0x7a,0xf0,0x4c,0xc0,0x53,0x22, +0x96,0x1e,0xe6,0xaf,0x7b,0x30,0xe6,0x6b,0x32,0x92,0xe7,0xc1, +0x4b,0xad,0xd7,0x3c,0x65,0x7f,0xb9,0xf3,0xee,0xd7,0xf4,0xe8, +0xe2,0xcd,0x53,0x9f,0x21,0xdb,0x4b,0x90,0x4c,0x4a,0x46,0x86, +0x50,0x0b,0x7d,0x8f,0x4c,0x8f,0x5d,0x4a,0x89,0xcb,0xc3,0x43, +0xf6,0xc7,0x35,0xfe,0xf3,0x95,0xe8,0xf2,0x0d,0xe2,0x35,0xfe, +0x1a,0xbb,0xd2,0x5f,0x7a,0x7e,0x03,0xc9,0x9f,0x0a,0x0c,0x0a, +0x96,0xe9,0x7a,0x2a,0x83,0x4e,0x9e,0x3a,0x2d,0x33,0x80,0xbb, +0x33,0xc8,0xeb,0x52,0xcf,0x8c,0x8b,0xc9,0xc8,0xfe,0xbc,0xf6, +0xe5,0xea,0xaf,0xeb,0x92,0xb6,0xd2,0x95,0x38,0xec,0x08,0x03, +0xfc,0x8c,0x7d,0xfd,0x5f,0x6c,0xc3,0xa5,0xfb,0x35,0x99,0xe8, +0xa5,0x57,0xb7,0x5e,0x45,0x79,0xfe,0xd4,0xa9,0x53,0x41,0xb2, +0x4b,0x4a,0x7d,0x71,0x51,0x79,0xfa,0xd4,0xc9,0xaf,0x35,0x93, +0x9f,0x6f,0x45,0xf3,0xba,0xf7,0x72,0x71,0xa8,0x2e,0x8b,0x55, +0xea,0xec,0xa2,0x78,0xd1,0x59,0x97,0x25,0x3a,0xd7,0x67,0xc9, +0x04,0x67,0x5d,0x5f,0x9e,0x7c,0xaa,0x6f,0x26,0xab,0x8f,0x90, +0x72,0x8f,0xe1,0xba,0x54,0xbe,0xfe,0x24,0xa7,0x73,0x10,0xa4, +0x07,0x11,0x89,0x6b,0x7f,0x5e,0xe7,0x2e,0xd8,0xd6,0xb3,0x3f, +0x99,0x20,0x8a,0xb6,0xbc,0x78,0x87,0x7e,0x90,0xe9,0x7c,0xd9, +0x3e,0xe6,0x3c,0x8b,0x1b,0xc1,0xa7,0xbe,0x58,0xf0,0xd1,0x15, +0xeb,0x1f,0x6f,0x0a,0xe4,0x85,0xa1,0xba,0x1c,0x59,0xfd,0xef, +0x72,0x5d,0xed,0x34,0x5e,0x44,0xbd,0x89,0x08,0x9d,0x89,0xf4, +0x29,0xcb,0x15,0x86,0x72,0x87,0xab,0xf7,0x10,0xed,0x24,0x4c, +0x33,0xf2,0x82,0x81,0x8a,0xb6,0x32,0x46,0x0b,0xab,0x2f,0xe2, +0xc5,0xdb,0xe4,0x83,0x70,0x9b,0x7c,0x94,0x40,0x16,0xe8,0x4a, +0x79,0xd1,0x47,0xf4,0x14,0x86,0x8b,0x5e,0x82,0xa7,0xe0,0xc5, +0x68,0x17,0xc8,0x73,0x9e,0x55,0xbd,0x05,0x2f,0xc1,0x9b,0x11, +0xbd,0x64,0x42,0x6b,0xd1,0x8b,0x17,0x5b,0x8b,0x4a,0x96,0xc9, +0x2b,0x05,0x33,0x81,0x67,0x4c,0xa7,0x24,0xa6,0x00,0xd1,0x4f, +0xf0,0x17,0xfc,0xd9,0xbb,0x9f,0x4c,0x50,0x89,0x7e,0xbc,0xa8, +0x62,0x2f,0x8d,0x60,0x21,0x68,0x04,0xb5,0xac,0x80,0x8e,0xe0, +0xe9,0x44,0x3a,0x91,0x48,0x7f,0x13,0xc8,0x44,0xbd,0xce,0x1e, +0x3c,0x89,0x25,0x1e,0xc4,0x8d,0xc4,0x93,0x78,0xca,0x4a,0x1a, +0xcb,0x5e,0x1e,0xd4,0x8d,0xc6,0xd3,0x78,0xc2,0x4a,0x12,0xab, +0xdd,0x65,0x4c,0xc7,0x53,0x3b,0x62,0xcf,0x64,0x26,0x10,0xa9, +0x1c,0xcf,0x5e,0xf6,0xd4,0x9e,0x4e,0x60,0x2f,0xa9,0x1c,0xaf, +0x25,0x83,0x8d,0x09,0x9e,0xbd,0xf8,0xf3,0x4f,0xbb,0x17,0x14, +0x14,0x76,0x7d,0x3b,0x74,0x78,0xd6,0x97,0x40,0xca,0xbe,0xf2, +0x3d,0xa5,0x1e,0xdc,0x58,0xca,0x9a,0x40,0xe2,0xa8,0x0b,0x71, +0x65,0xc8,0xb1,0xd4,0x95,0xbd,0xe2,0x68,0x02,0xab,0x0d,0x63, +0x3d,0xec,0x34,0xa6,0xe3,0xa8,0x2d,0x4b,0xfb,0x26,0x91,0x89, +0x44,0x2a,0xc7,0xb1,0xab,0xde,0xd4,0x86,0x69,0x3b,0x89,0xda, +0xb2,0x72,0x9c,0x76,0x11,0xb1,0xe5,0x89,0xf1,0xab,0x67,0x44, +0x41,0x14,0xbd,0x9f,0x51,0x63,0x2a,0xeb,0x6d,0x47,0x15,0x54, +0xf1,0xca,0x8e,0xc8,0x98,0x7c,0xef,0x21,0xb7,0x7e,0xf9,0xe5, +0x87,0x5b,0xaf,0x5e,0xfe,0xe0,0x62,0x6d,0x3d,0xc4,0xa5,0x8f, +0xd4,0xf3,0x7c,0x66,0x5b,0x0c,0xf1,0x64,0xaf,0x18,0x32,0x9b, +0x7a,0x12,0x2f,0x1a,0x43,0x59,0x49,0xbd,0xd8,0x3b,0xa3,0x33, +0xca,0x6c,0x89,0x8d,0x05,0x2a,0x89,0x63,0x4c,0x2e,0x4c,0xc1, +0x78,0xea,0x4e,0x86,0xd1,0x04,0x1a,0x45,0xdd,0xe9,0x30,0xa6, +0x68,0x02,0x71,0x67,0x2a,0x47,0x69,0x75,0xcb,0x8c,0x99,0xed, +0xf6,0x4c,0x97,0x09,0x4c,0x27,0x7d,0x29,0x89,0x2e,0x62,0xa2, +0x51,0xc4,0xfd,0x1b,0xd1,0x28,0x26,0xfc,0x45,0xd4,0x93,0x89, +0xc6,0x49,0xde,0x63,0x5e,0x62,0x56,0x49,0x3e,0x97,0x4a,0xbd, +0x64,0xbe,0x6e,0xb1,0xf4,0x4f,0x4f,0xb7,0xd3,0xcb,0xe3,0x99, +0x64,0x54,0x08,0xbd,0x48,0x36,0xb3,0x54,0x77,0x33,0xed,0x12, +0x42,0x2e,0xb2,0xb1,0x88,0xa2,0x97,0x0f,0xea,0xc7,0x47,0x57, +0xc0,0xd3,0xb6,0x74,0x2b,0x3d,0x37,0x9e,0xd9,0x10,0x39,0x92, +0x9e,0x23,0x1b,0x49,0x27,0xb2,0x91,0x76,0x0a,0x21,0xe7,0x98, +0x5d,0x91,0xf4,0xdc,0x41,0x19,0x6d,0x4b,0x02,0xf8,0xdf,0xe8, +0xf8,0x92,0x39,0x35,0xf9,0x24,0x76,0x06,0xd3,0xae,0x4f,0x72, +0x72,0xe1,0x9c,0x9d,0x34,0x9a,0x86,0xfe,0x1e,0x53,0x1a,0x93, +0x41,0x43,0x3b,0xef,0x20,0xb3,0x0a,0x37,0x26,0xae,0xa1,0x7d, +0x48,0x2f,0xb2,0x70,0x67,0x49,0x8d,0x14,0x87,0xf9,0xcf,0xd9, +0x42,0x2a,0x5f,0x57,0x52,0xbc,0x4e,0x2b,0x1c,0xe1,0xaa,0x52, +0x4b,0x92,0x34,0xd2,0xb2,0x9a,0x9a,0x95,0xac,0x15,0x8f,0x70, +0xb1,0x25,0xd9,0xeb,0x34,0xa4,0x7d,0x8c,0xf4,0xa8,0x5a,0x78, +0x6a,0xe5,0x0e,0xad,0x50,0x1c,0xcc,0xc5,0x24,0xa7,0xce,0xd6, +0x8a,0x37,0xb9,0xd9,0x55,0xa9,0xeb,0x35,0xba,0x1c,0xf9,0xfa, +0xaa,0xf2,0x8d,0x5a,0xe1,0x26,0xb7,0x21,0xb9,0x22,0x46,0x23, +0x7a,0x89,0xc5,0xf2,0xf0,0x94,0x94,0x08,0x0d,0x31,0x13,0x4c, +0xf8,0x1f,0xc8,0x85,0x21,0x1c,0xad,0xa4,0xcd,0xd4,0xe6,0xa9, +0x0a,0xe6,0x7b,0x23,0x3e,0x3e,0xa5,0xb2,0x7a,0x4d,0x65,0x65, +0x75,0x75,0x45,0x4a,0x42,0x7c,0x6a,0x4a,0xbc,0x96,0x18,0x29, +0x13,0x0c,0xb4,0x35,0xd5,0x95,0x8c,0x96,0x22,0xd1,0x1a,0x2a, +0xbf,0xf0,0xad,0x31,0xd0,0x12,0xa4,0xdf,0x09,0x32,0x92,0x50, +0xd8,0xdc,0x35,0xd2,0x71,0xbc,0xe8,0xb9,0x4b,0x5e,0x93,0x55, +0x3a,0x47,0x43,0x87,0xca,0xe7,0x64,0x65,0xce,0xd1,0x4e,0x1d, +0xca,0xc5,0xa4,0xa5,0xc6,0x68,0xc5,0xef,0xb9,0x98,0x72,0x49, +0xb3,0x7c,0xf9,0xfa,0xf2,0x8a,0xf5,0x5a,0xe1,0x7b,0x6e,0x7d, +0x1a,0xd3,0xac,0x5e,0xb5,0x8f,0x27,0x43,0xc5,0x8b,0x8c,0x5f, +0xa7,0xe9,0xc2,0xd7,0x2f,0x11,0x9e,0xdd,0x15,0x93,0xe4,0x73, +0x4a,0x32,0x6a,0x34,0x64,0xa8,0xbc,0xa6,0xa4,0xac,0x46,0x2b, +0x24,0x09,0x3e,0x9c,0x43,0x3f,0x9e,0x9e,0x18,0x44,0x4e,0xc8, +0xe9,0x4a,0xda,0x88,0xaf,0xae,0xaa,0x5c,0xb3,0x36,0xb9,0x32, +0x3e,0x21,0x39,0x25,0x2e,0xa1,0x2a,0x65,0x0d,0xd3,0xed,0x3e, +0x1f,0x97,0xc2,0x2a,0x95,0x29,0x6b,0xab,0x99,0xd2,0x6b,0x53, +0x2a,0xf5,0x46,0xc4,0x1b,0x68,0xd5,0x5f,0x69,0x4c,0xe1,0x11, +0x92,0xf8,0xda,0xea,0xe4,0x0a,0x26,0x9e,0x1a,0x1f,0xf7,0xaf, +0x38,0xab,0x18,0xc4,0xd7,0x56,0xa7,0x54,0x7c,0x16,0xd7,0xd3, +0xaa,0xbf,0xd2,0x68,0x4c,0x3b,0x3e,0x21,0x39,0x39,0x3e,0x9e, +0x49,0x31,0x94,0xea,0xea,0xe4,0x2a,0xbd,0x63,0xe2,0x52,0x18, +0xcd,0x20,0x5c,0x5d,0x9d,0x52,0xf5,0x59,0x58,0x4f,0xab,0xfe, +0x4a,0x63,0xeb,0x4d,0x8d,0x90,0xc2,0x07,0x25,0x70,0xc9,0xfb, +0xc6,0x6f,0x1d,0x5d,0x43,0xa3,0x88,0xdc,0x6c,0xda,0xea,0x49, +0xf3,0x13,0x66,0x24,0x46,0x2e,0x1b,0xbf,0x37,0xf1,0x63,0xa8, +0x99,0x68,0x2a,0x1f,0x15,0x1d,0x15,0x16,0xb6,0x31,0xfa,0xa8, +0x96,0x38,0xc9,0xe7,0xe6,0xcd,0xcf,0x4c,0xb7,0x88,0x2e,0x4f, +0x5c,0x93,0xab,0xc9,0xc9,0x99,0x97,0x96,0x6c,0x11,0xb1,0x36, +0x76,0xf3,0x3c,0x4d,0x5e,0xce,0xbc,0xf4,0x0c,0x8b,0x88,0x9a, +0x59,0x07,0x35,0x24,0x5d,0x7e,0xed,0x70,0xc5,0xfe,0x1d,0xda, +0x8d,0xbe,0x64,0xb4,0xe0,0x2d,0xa7,0xf3,0xe8,0x6f,0xfc,0xdc, +0x1c,0x59,0x44,0xf4,0xa4,0x54,0x3f,0x55,0x3f,0xf9,0x8a,0x15, +0x4b,0xca,0x4a,0x2d,0xd6,0x66,0xaf,0x4e,0x2c,0xd1,0x94,0x15, +0x2f,0xab,0x5c,0x65,0x51,0x93,0xb5,0x3a,0xa1,0x58,0x53,0xbc, +0x7c,0x59,0xc5,0x2a,0x8b,0xad,0xf1,0xdb,0x27,0x6b,0xe8,0x3f, +0xf2,0x59,0xe9,0x65,0x6b,0xaa,0x57,0x96,0x6d,0xd6,0x4a,0xdf, +0x15,0x54,0x3e,0xed,0xf7,0x4e,0x55,0xb0,0x59,0xe6,0x30,0xf8, +0xc1,0xe3,0x1c,0x6d,0x41,0x39,0xed,0xf3,0x60,0x56,0xf9,0xa2, +0xea,0xe2,0x0a,0xf3,0x15,0x15,0x6b,0x0b,0x37,0xa6,0xb3,0x88, +0x97,0x9b,0x1d,0x88,0xdb,0x35,0xab,0x72,0x6a,0x61,0x96,0xd9, +0x1e,0x5a,0x26,0xdf,0x4a,0xae,0xf1,0xc4,0x5c,0x54,0x50,0x73, +0x39,0x7d,0x4d,0xd2,0xf8,0xa4,0xcc,0xb4,0x54,0x0d,0xed,0x26, +0x4f,0xc9,0x2c,0x5f,0xb5,0xaa,0xb4,0xbc,0x52,0x4b,0x3a,0xcb, +0x57,0x95,0xa6,0x25,0x69,0x2b,0x2c,0xf9,0xa4,0x8c,0xd4,0x14, +0x0d,0x6d,0x2b,0x4f,0xc8,0xac,0x58,0x55,0x55,0x5a,0xbe,0x4a, +0x4b,0xb4,0xf2,0xca,0xb2,0xd4,0x14,0x6d,0x49,0x57,0xd6,0x96, +0x96,0xa2,0x69,0xcf,0x9a,0x2a,0x2b,0xab,0x4a,0x2b,0xd7,0x68, +0xff,0x62,0x2d,0x29,0xc9,0xd2,0xb6,0x2f,0x92,0x80,0xdf,0x28, +0x9f,0xb8,0xe3,0x70,0xea,0x35,0x15,0x33,0xf9,0x60,0xcd,0xe6, +0xda,0xb2,0x79,0x2b,0xf3,0x56,0x68,0x37,0x17,0xae,0x5d,0x57, +0x6b,0x51,0x35,0xaf,0x3c,0x67,0x85,0x66,0xcd,0xf2,0xf2,0xd5, +0x1b,0x2d,0x56,0xce,0x2f,0x9d,0x5b,0xa4,0x61,0xde,0x3b,0xb2, +0x69,0xe3,0xee,0xdd,0x51,0x9b,0x46,0x6b,0x45,0x13,0xf9,0x87, +0x63,0x7b,0x57,0x2f,0x3b,0x98,0xb8,0xc5,0x3c,0x61,0xdb,0xa4, +0xa5,0xd3,0x12,0xd9,0x82,0x20,0x37,0x1b,0x3d,0x67,0xfc,0xcc, +0xe4,0x49,0x8d,0x12,0x4e,0xd1,0xd1,0xa2,0x37,0x19,0x2d,0xdf, +0x43,0xfe,0xe2,0x0b,0x4b,0x2a,0x77,0xed,0xda,0x7c,0x60,0xad, +0x39,0x99,0x4d,0xe4,0x1b,0x57,0xae,0x9d,0xb7,0x22,0xd5,0xbc, +0x38,0x75,0x51,0xfc,0xac,0x34,0xda,0x67,0x80,0x59,0x41,0x9a, +0xcc,0x31,0x67,0xf0,0x00,0x07,0x55,0xc1,0x2c,0xd9,0xbb,0xa7, +0x8f,0x7e,0xa9,0xd4,0x0a,0x03,0xe5,0x9b,0xca,0x33,0xe2,0x13, +0xd2,0x32,0xa2,0xb4,0x22,0xe4,0x93,0xe3,0xa7,0xcf,0x4c,0x5a, +0x96,0x5a,0x9c,0xab,0x4d,0xc8,0xce,0x4a,0x9c,0x63,0x91,0xb4, +0x2c,0xa5,0x2c,0x5b,0x93,0x98,0x95,0x9d,0x18,0x67,0x91,0xb9, +0x84,0x65,0x54,0x9a,0x7e,0x72,0xbf,0x49,0x15,0xb5,0xd1,0xda, +0xb9,0x2b,0x64,0x13,0x48,0x99,0x7c,0xe6,0x49,0x5e,0x72,0x9b, +0xa0,0xe0,0x84,0x48,0xb6,0x5b,0x60,0xce,0x5a,0xa5,0x61,0xce, +0xaa,0x64,0xce,0x62,0x4e,0x4c,0xd1,0x32,0x27,0xa6,0x32,0x27, +0x6a,0x53,0x2d,0xf9,0xca,0xb2,0x8a,0x4a,0x0d,0x73,0x16,0x73, +0x64,0x72,0x52,0x66,0x2a,0x9b,0x7d,0x6d,0xe5,0x29,0x19,0x15, +0xab,0xb4,0x59,0x5d,0xf9,0xaa,0xb2,0xca,0x4a,0xcd,0x5f,0xf2, +0x35,0xa5,0x29,0xc9,0x29,0x99,0x6c,0x62,0xb6,0x67,0x2d,0x4c, +0x4a,0x7a,0x6a,0x89,0x64,0xf0,0xa4,0x4d,0xd5,0x2b,0xd2,0x80, +0xb4,0xb2,0x20,0xed,0x69,0x23,0x22,0xa7,0x1d,0xd9,0xab,0x11, +0x95,0xd1,0x0e,0x54,0xf9,0xaa,0x1d,0x69,0x93,0xa2,0xe9,0x44, +0xdd,0x46,0xb0,0x7b,0x4c,0xf7,0x3b,0xa4,0x3b,0x71,0x3b,0x4f, +0xdd,0x38,0x1a,0x47,0x74,0xfc,0x87,0xc7,0x4f,0xfe,0xf8,0xf8, +0xc4,0xa1,0x73,0x27,0x07,0xc7,0x4e,0x1d,0x1d,0x7f,0xfc,0x43, +0xfa,0x54,0x77,0xae,0xae,0x17,0xef,0x43,0xfa,0x72,0xe7,0x96, +0x2c,0x5a,0x10,0x34,0x92,0x36,0xa3,0x4d,0x64,0xdb,0x26,0x05, +0xaf,0xf2,0x57,0xd1,0xf6,0x0c,0x50,0xce,0xde,0xdb,0x13,0x56, +0x92,0xf6,0xec,0x25,0x67,0xaf,0xf6,0xe7,0x12,0x4f,0xce,0xd8, +0xaf,0x25,0xcd,0x48,0xd3,0xe3,0x27,0x17,0x2f,0xc8,0xf7,0x95, +0xd1,0xee,0x97,0xc8,0x1d,0x4e,0xf4,0xac,0x6f,0xc0,0x77,0xe9, +0xf7,0xf8,0xc3,0x87,0x87,0xec,0xef,0x91,0x63,0xe7,0xce,0x4e, +0x8e,0x5d,0xa4,0x29,0xf2,0x83,0xc0,0x76,0x8b,0xcf,0xc9,0x2b, +0xfa,0x9c,0xbe,0x92,0x4d,0x9f,0x9e,0x3c,0x61,0x8c,0xc5,0x98, +0xaa,0x71,0xdb,0x23,0x34,0xd3,0xb7,0x1f,0x48,0x3a,0xa2,0xfa, +0xee,0xe0,0xaa,0xed,0xdb,0xb5,0xdb,0xb6,0xc9,0xe6,0x70,0x8e, +0x93,0x42,0x5d,0x52,0x35,0x51,0x79,0xb2,0x09,0x42,0xcb,0x03, +0x5c,0x54,0x91,0xcc,0xa5,0x62,0xd2,0xb1,0xc7,0x16,0x35,0xdc, +0xb6,0x19,0xb2,0xe9,0xdb,0x0f,0x26,0x7d,0xa7,0x3a,0x72,0x40, +0x62,0xde,0x5e,0x5b,0xf5,0xdd,0x61,0x8b,0xc3,0xc9,0x07,0xa6, +0x6f,0xd7,0x7f,0x00,0x3e,0x92,0x27,0x6f,0xc8,0x7b,0xd9,0x81, +0x03,0x6b,0x4e,0x9f,0xb6,0x20,0x4d,0xbb,0xfd,0x4e,0x15,0xfe, +0x81,0x71,0x13,0x27,0x69,0x66,0xce,0x98,0xb9,0x4d,0xb6,0x7f, +0x52,0xc0,0xda,0x00,0x15,0x55,0x74,0xeb,0x4a,0x9b,0x05,0xad, +0x09,0x38,0x30,0x41,0x4b,0xde,0xd0,0x03,0x3c,0x3d,0x4b,0x2e, +0xc9,0xc2,0x76,0x27,0x1c,0x3d,0x6c,0xf1,0xdb,0xa3,0x27,0xbf, +0x1c,0x3c,0x9c,0x14,0x5e,0xab,0x39,0xef,0x73,0xfe,0x92,0xac, +0x76,0xdb,0xd1,0xd5,0x07,0x55,0xef,0x1e,0xd8,0x59,0x8d,0x4e, +0x18,0x1d,0x16,0x26,0xd9,0x10,0x2c,0x84,0xf1,0x19,0x99,0x05, +0xf9,0x59,0xda,0xe2,0x75,0xcb,0xd6,0x6f,0xb4,0xf8,0xe0,0xf8, +0xb8,0x73,0x67,0x47,0xc7,0xce,0xd1,0xcb,0x62,0x8a,0x63,0x35, +0x4b,0xb2,0x32,0x17,0x65,0xa8,0xa4,0x7a,0xa7,0xc7,0x8e,0x1f, +0xae,0x9e,0xdd,0x7e,0x7c,0xab,0x36,0x52,0x6f,0x4d,0x8a,0x26, +0x6a,0xee,0x67,0x6b,0x96,0xc9,0x5c,0x2a,0x25,0x6b,0xb6,0x70, +0x23,0xb7,0x9e,0x9d,0x7e,0x55,0xf5,0xe1,0xf1,0xe3,0x8f,0x12, +0x8c,0x1e,0x3e,0x8e,0x9f,0xb5,0xac,0x5f,0x45,0xc4,0xf9,0x82, +0x27,0xe6,0x15,0x5c,0xd0,0xbe,0x63,0xf1,0xa7,0x55,0x1f,0xef, +0x3f,0xfd,0xe5,0x60,0xca,0xc1,0x69,0x3b,0xb5,0xf4,0xd9,0x67, +0xe7,0x4d,0x0b,0x4f,0x19,0x37,0xde,0xc2,0xf2,0x91,0xe3,0xfb, +0xd3,0xc7,0xaa,0x4f,0xed,0xd3,0xa4,0x72,0x05,0x0e,0x11,0x23, +0xfa,0xa5,0xce,0x9a,0x6b,0x16,0x2e,0xf4,0xe0,0x3e,0x08,0x03, +0xf8,0x8d,0x51,0x2b,0xa7,0x85,0x5b,0x0c,0xf0,0xf2,0x1e,0xe4, +0x17,0xbe,0xf6,0xcc,0x58,0x4d,0x51,0x5e,0xde,0x92,0x3c,0x55, +0x66,0x6e,0x4e,0xba,0x76,0x34,0xe7,0xbe,0xda,0xf3,0x46,0xb4, +0x86,0xc6,0xcb,0x6f,0x6c,0x5c,0x7d,0xf5,0xba,0xc5,0x11,0xae, +0x3c,0x67,0x79,0x56,0x5e,0x6e,0x7e,0xee,0x5c,0x4d,0xe0,0xd8, +0x69,0x71,0xfe,0xaa,0x41,0x5e,0x97,0x1f,0xec,0x28,0xdf,0xb5, +0x61,0xa3,0x96,0x9c,0x67,0xde,0xf9,0xd7,0xb7,0xcf,0x9e,0x2d, +0x24,0x5a,0xbb,0xe7,0xe6,0x7b,0x27,0x07,0xaf,0xf3,0x53,0x05, +0x04,0xc6,0x4e,0x9e,0xac,0xd5,0x3b,0x77,0xef,0xe4,0xc0,0x75, +0x01,0x2a,0xbf,0x60,0x89,0x60,0x67,0xbb,0x90,0x6a,0x9f,0xd9, +0x35,0x92,0x9e,0x1f,0x4d,0xe0,0x99,0xc1,0xfd,0x2a,0xc3,0xcf, +0xfe,0x68,0x51,0xc1,0x4d,0xdc,0xf6,0x5d,0xec,0x25,0xd5,0x9f, +0xcf,0x9e,0xfd,0xf1,0xe7,0xd0,0x07,0x1d,0xb2,0x73,0x0b,0x0a, +0xe6,0x6a,0x8b,0x2a,0x97,0x55,0xd7,0x58,0x10,0xd8,0x3f,0x61, +0x81,0xdb,0xc8,0xde,0x81,0x22,0xb6,0x30,0x7e,0x59,0x8a,0x66, +0xd1,0xdc,0xdc,0x45,0x39,0xaa,0xf6,0x43,0xfb,0x77,0xe8,0xf8, +0xcc,0x8e,0xe0,0xfc,0x77,0xeb,0xf6,0x6f,0xd7,0xa6,0x72,0x4e, +0xd3,0xfc,0xfa,0xa7,0x6a,0x66,0xcd,0x95,0x85,0x0b,0xdd,0x39, +0x3a,0x41,0x97,0xc8,0xbf,0xba,0xe5,0xd5,0x67,0x56,0xc6,0xac, +0xdc,0x0c,0x6d,0x76,0xf2,0xca,0xe4,0xea,0xc2,0x46,0x8b,0x97, +0xaf,0x2e,0xac,0x50,0x3d,0x39,0xe5,0x6d,0xef,0xe0,0xe1,0xe6, +0x30,0x7a,0xca,0x9a,0xad,0x51,0xda,0xf8,0x1a,0x59,0x7a,0x45, +0x7c,0x6e,0x92,0x85,0x3f,0xe7,0x59,0xe9,0x7e,0x9f,0xdd,0xc7, +0x72,0xe4,0xf7,0x6a,0x56,0x5d,0xbf,0x6a,0x71,0x96,0x5b,0x15, +0xbf,0x3c,0x3d,0x55,0x93,0x10,0x2b,0x9b,0x11,0x3d,0x29,0x61, +0xac,0xca,0xce,0xfd,0xc6,0x93,0xa7,0xa7,0xaf,0x3c,0xae,0x58, +0x3d,0x2f,0x7f,0x85,0x76,0xf5,0xdc,0xf2,0xaa,0x9c,0xaa,0x46, +0x79,0x65,0x19,0x5b,0x36,0x5b,0xbc,0xbc,0x75,0xe5,0x95,0x14, +0x68,0x45,0xe7,0xf9,0x9a,0x4d,0xe9,0x65,0xb2,0x59,0x6b,0xd3, +0xd6,0x54,0x5b,0x54,0xaf,0xac,0x58,0xb7,0x5a,0x53,0xb3,0x66, +0x7d,0xcd,0x3e,0x8b,0x7d,0x31,0x35,0x73,0xd6,0x68,0xe2,0x56, +0xa7,0x55,0x56,0x5b,0xac,0x65,0xf4,0x35,0x9a,0x9a,0xd5,0x7a, +0xfa,0xac,0xcd,0x31,0xab,0x35,0x89,0xe5,0x73,0xa2,0x56,0xa5, +0xc9,0x36,0xc5,0x97,0x27,0x26,0x58,0x24,0xa4,0xa7,0xc6,0x26, +0x68,0xe6,0x24,0xcc,0x8e,0x99,0x64,0x31,0x79,0x43,0x4c,0x4d, +0x82,0x66,0x5d,0xe2,0xca,0xd4,0x38,0x8b,0xf8,0x34,0x3d,0x3d, +0x31,0x26,0x66,0xb2,0xc5,0xb8,0x1d,0x91,0x55,0x6c,0xb9,0xb5, +0xde,0xce,0xfa,0x4b,0x29,0x97,0xc5,0xae,0xca,0x2c,0xaf,0xb2, +0xa8,0x2c,0x2e,0xab,0xaa,0xd4,0xac,0x66,0x37,0xf0,0x1d,0x16, +0x3b,0x13,0x56,0x27,0x56,0x69,0x92,0x2b,0xb2,0xcb,0x2a,0x2d, +0xaa,0x8a,0x4b,0xab,0x2a,0x34,0xab,0xaa,0xaa,0xd7,0xec,0xb0, +0xd8,0x35,0x67,0x7d,0xec,0x2a,0x4d,0x4a,0xd9,0x9c,0xa8,0xf2, +0x0c,0xd9,0xda,0xe4,0xf2,0x94,0x24,0x8b,0x94,0xac,0xcc,0xe4, +0x14,0x4d,0x52,0x72,0xbc,0xba,0xbd,0xb5,0x82,0x15,0xf1,0xe1, +0x16,0x53,0x36,0xcd,0x59,0x95,0xaa,0x11,0x8c,0xd2,0xf8,0xf5, +0x9b,0x92,0xcb,0x65,0x71,0xab,0x32,0x24,0xf8,0x12,0x03,0x7c, +0xb5,0x04,0x1f,0x6f,0x80,0xcf,0x92,0xe0,0x4b,0x0c,0xf0,0x6b, +0x25,0xf8,0x18,0x09,0x3e,0xb5,0x2c,0xe6,0x7f,0x87,0x4f,0x4c, +0x4e,0x90,0xe0,0x59,0x21,0xc1,0x6f,0x9c,0xb3,0x9a,0x69,0x3f, +0x90,0x2e,0xe0,0x49,0x31,0x19,0xf1,0x27,0x69,0x7b,0xcf,0xff, +0x6a,0xbb,0x5a,0xed,0x54,0xee,0xfb,0x98,0xe3,0xa3,0x7c,0x2c, +0xd8,0x6e,0xd2,0xcd,0x46,0xda,0xf6,0x52,0xd7,0x9f,0x88,0xe2, +0xd2,0xb1,0xa3,0xdf,0xaf,0xd7,0xec,0xe2,0xda,0x45,0xf8,0x7b, +0x0e,0xb2,0x60,0x3b,0xac,0x11,0x1d,0x48,0xb1,0x46,0xfa,0xfe, +0xfe,0xf1,0x07,0x5e,0x78,0x3d,0x55,0x2c,0xe3,0x56,0xa7,0xce, +0x2e,0x9f,0xa9,0x1a,0x3e,0x32,0xd4,0xc7,0xe7,0x78,0xe8,0xc5, +0xcb,0x47,0x8e,0x5d,0xd2,0x52,0xd9,0x60,0x7e,0x72,0xc4,0xb6, +0xfd,0xfb,0xb6,0x6f,0xdf,0xb7,0x7f,0xeb,0xf4,0x49,0x13,0x23, +0x67,0xb0,0xed,0x1e,0xdb,0xb4,0x2d,0xd1,0xd9,0xf1,0x62,0x06, +0x57,0x99,0x1a,0x53,0x31,0x53,0xe5,0x13,0xca,0x44,0x8e,0x85, +0x5e,0xba,0x24,0x89,0x08,0x7b,0xa5,0xdf,0xcd,0xee,0x7b,0x22, +0x70,0xc9,0xd0,0xc0,0x40,0xf3,0x41,0x83,0xd6,0xcf,0xbe,0x7f, +0xff,0xc6,0x8d,0x82,0x77,0xee,0x37,0xcd,0xe9,0x10,0xe2,0x26, +0x4b,0xad,0x88,0xce,0x8a,0xb5,0x70,0x66,0xb9,0xed,0xa4,0x08, +0x06,0x5a,0xbb,0x6d,0xdf,0x3e,0x06,0x3c,0x29,0x72,0xfa,0x44, +0x69,0x8a,0x6e,0xd7,0x0d,0xe6,0xc5,0x00,0x79,0x74,0x4a,0x12, +0xbb,0x2d,0x84,0x72,0x55,0x59,0xb3,0x2a,0x66,0xa8,0x7c,0x46, +0x8f,0xf1,0xf6,0x3e,0x32,0xe6,0xd2,0xe5,0xc3,0x87,0x2f,0x6b, +0xc9,0x3f,0xc2,0x44,0xba,0x4b,0xdf,0x32,0xf3,0x6b,0xcb,0xa5, +0x23,0xac,0x45,0xd8,0xc0,0x6d,0x2a,0x48,0x59,0x15,0xad,0x12, +0x47,0x4d,0xe5,0x19,0x93,0x56,0x9c,0x28,0xa7,0xc6,0x62,0x34, +0x3f,0x69,0xe6,0x96,0xfd,0xfb,0xb7,0x6e,0xd9,0xb7,0x7f,0xcb, +0x4c,0x66,0x41,0xe4,0x44,0xad,0x30,0x5f,0xf9,0x85,0xb6,0x6f, +0x2b,0xa3,0xcd,0x8c,0x9c,0xa4,0xb7,0xea,0x1f,0xc1,0x8f,0x0f, +0x9f,0x99,0x16,0x39,0x53,0x3b,0x79,0x8a,0x8c,0xbc,0x9e,0x5a, +0xdf,0x95,0x9b,0xb1,0x2d,0x7b,0xd5,0x6a,0x0d,0x4b,0x10,0x26, +0xca,0xb6,0x6c,0x29,0xdb,0xbc,0xcf,0xe2,0xfb,0x31,0x47,0x5d, +0x34,0x47,0xe8,0x18,0x9e,0x06,0xd0,0x40,0x19,0x29,0xe4,0x6e, +0xdd,0x90,0x55,0x57,0xaf,0x5f,0x51,0xad,0x3a,0xbc,0x2d,0x32, +0x64,0x46,0x4e,0x62,0x5c,0x2c,0x33,0x84,0xdd,0x79,0x7f,0x25, +0x43,0x78,0xe2,0x44,0xae,0x0f,0x5e,0x4c,0xad,0xe9,0x75,0x19, +0x59,0xcc,0xc6,0x69,0x30,0xb9,0xee,0xbc,0x98,0xf6,0x65,0x55, +0xc6,0x30,0x53,0xe8,0xc5,0x0b,0xd7,0xbe,0x17,0xaf,0xc9,0xe9, +0x11,0x63,0xc3,0x05,0x13,0x54,0xab,0xe7,0x2a,0x04,0xde,0x55, +0x0c,0x21,0xfb,0xaf,0x70,0xfa,0x1a,0xb9,0x4d,0xa6,0x5f,0xa1, +0x3b,0x3e,0x53,0x74,0x0e,0xe4,0x57,0x3e,0xbb,0x2c,0x7d,0x61, +0x7a,0x56,0xfd,0x11,0xc5,0x9a,0x53,0xcb,0x4f,0xdf,0xb5,0xd8, +0xed,0x16,0xce,0xd1,0x8e,0x33,0x5d,0xa9,0x29,0x1d,0xa4,0x39, +0x31,0xf1,0xec,0xa3,0x3d,0x67,0xd7,0x9f,0x36,0x5f,0xb6,0x62, +0x79,0xc1,0xb2,0x1c,0xa2,0xa4,0x3e,0x66,0xc7,0x0f,0xca,0xc4, +0x67,0xab,0x78,0x75,0xfb,0x65,0x8a,0xa4,0x8b,0xb2,0x94,0xf1, +0x4e,0xa9,0xfe,0x2a,0x13,0xe1,0x27,0xe1,0x07,0x9e,0xfa,0x88, +0x11,0x32,0xc1,0x58,0x2e,0x36,0xfe,0x9d,0x37,0xd0,0x25,0x26, +0x32,0x88,0xd4,0xf0,0xef,0xe8,0x72,0x19,0x0d,0x95,0x9b,0xe8, +0x56,0x90,0xd7,0x7c,0x6e,0x79,0xca,0xe2,0x8c,0x8c,0x79,0xf3, +0xcd,0xf2,0x97,0xc8,0x2a,0xce,0x2c,0x3f,0x7d,0xcb,0x62,0x8f, +0xe7,0x34,0x8e,0x9a,0xcd,0xe8,0x61,0x43,0x6d,0x34,0x27,0xa7, +0x1c,0x78,0xb4,0xfe,0xd4,0x9a,0x63,0xe6,0x4b,0x8a,0x8a,0x16, +0x2e,0xcd,0xfb,0x95,0xba,0x9a,0x1d,0xdf,0xcf,0x12,0xd0,0x52, +0x3e,0x97,0x74,0x24,0xfd,0xc8,0x12,0x9a,0x15,0x40,0x06,0xb1, +0x9b,0x5c,0x3f,0x3a,0x56,0x1e,0x51,0x99,0xbc,0x59,0xb3,0x45, +0xfe,0xf8,0xfa,0x8a,0xf2,0x53,0xda,0xcc,0x33,0xb2,0xb4,0x91, +0x2e,0xb9,0x43,0x54,0x24,0x80,0x3c,0xe2,0x49,0x1f,0xd1,0xfc, +0xaa,0x30,0x9a,0xc6,0xca,0x4d,0xd4,0xaa,0x20,0x05,0x79,0x5c, +0xc8,0x93,0xc7,0x64,0xec,0x39,0xba,0x5a,0x0c,0x22,0x9b,0xa5, +0x7f,0x78,0x59,0x4c,0x5e,0x31,0x5d,0xd2,0x16,0x65,0x64,0x32, +0x5d,0x16,0x2c,0x96,0x74,0x39,0xf3,0xbd,0xc5,0x1e,0x3f,0xa6, +0x4b,0xdb,0x28,0x1b,0x96,0xc9,0x68,0x0e,0x4f,0xd9,0xf5,0xc3, +0xa6,0xf3,0xab,0x4f,0x9b,0x2f,0x5d,0xba,0xac,0x60,0xc9,0xdc, +0x9f,0xa9,0x9b,0xd9,0xa1,0xbd,0x32,0xfa,0x81,0x2c,0xe0,0x29, +0x47,0x1c,0xfc,0xc4,0x51,0x24,0x4d,0x18,0xe5,0x2f,0x17,0x5b, +0x88,0x5a,0x3e,0x9f,0xa9,0xd7,0x93,0x2c,0xa5,0xd1,0x81,0xa4, +0x2f,0x53,0xaf,0x17,0x1d,0x27,0x8f,0x28,0x4b,0xde,0xa8,0xd9, +0x20,0xbf,0x7d,0x62,0x45,0xf9,0x11,0x6d,0xd6,0x69,0x59,0xda, +0xe8,0x91,0xb9,0x9e,0x2a,0xa1,0x45,0x81,0x24,0xee,0x4a,0x38, +0xb9,0x89,0xf0,0x5e,0x72,0x5c,0x7f,0xe6,0x38,0xf2,0x9c,0xed, +0xdb,0x9e,0xf2,0x29,0x81,0x43,0xb2,0x6d,0x55,0xe9,0x2c,0x91, +0x09,0x63,0x58,0x5b,0x02,0x48,0x04,0xc3,0x9a,0xca,0xf2,0x24, +0x13,0xc5,0x36,0xf9,0x83,0x47,0x2b,0x56,0x5f,0xd1,0xb2,0x54, +0x69,0x33,0xff,0x92,0x2e,0x95,0x51,0x77,0xb9,0x09,0x99,0x4a, +0xfa,0xf3,0x19,0xa4,0x03,0x99,0xc6,0x3c,0xb3,0x2d,0x80,0xcc, +0x60,0xec,0xd3,0x98,0x67,0xa6,0x57,0x26,0x6f,0xd3,0x6c,0x95, +0xbf,0xfe,0xa1,0xa8,0xf2,0x92,0x36,0xfb,0xac,0x2c,0x35,0x78, +0x60,0x6e,0x6f,0x15,0x59,0x29,0xa8,0x79,0x7f,0x72,0xf8,0xac, +0xf4,0x18,0x90,0x8a,0xb7,0x1f,0x3e,0xdc,0xd2,0xf2,0xe2,0xf0, +0xa7,0xcf,0x2e,0x5e,0x7c,0xf7,0x6e,0xf8,0x45,0x3b,0xed,0x73, +0x3a,0x94,0x0f,0x0a,0x0f,0x0f,0x1d,0x15,0xbe,0xe3,0x94,0x66, +0x13,0x77,0x72,0xc7,0x8e,0xa3,0xc7,0x76,0x84,0x07,0x6b,0x4c, +0x84,0x44,0xe1,0x3c,0x2f,0x8e,0x21,0x9b,0x84,0x31,0xde,0x2c, +0xc9,0xeb,0x46,0xec,0x39,0xb1,0x6f,0xbe,0xba,0xfd,0x6d,0x05, +0x79,0x47,0x5f,0xf3,0x8c,0xe0,0x46,0xba,0x31,0x73,0xdc,0x49, +0x67,0xfe,0xf8,0xe4,0x63,0xf7,0x77,0x9d,0x5f,0x7f,0xd6,0xbc, +0xb0,0x88,0x45,0x4d,0x2e,0x69,0xce,0xa2,0xe6,0xd8,0x7e,0xda, +0x82,0x8c,0xc8,0x29,0x4b,0x5b,0x98,0x91,0x65,0x9e,0x99,0xa3, +0x6e,0x77,0x43,0x41,0x4f,0x09,0x36,0x3c,0x8b,0xc4,0x03,0x42, +0x08,0xe7,0x29,0xaa,0x79,0xda,0x97,0x3c,0x23,0x7d,0x19,0x86, +0x2f,0x31,0xe2,0xc9,0x23,0x39,0x75,0x14,0x22,0x64,0xe2,0xac, +0x64,0x7d,0x27,0x03,0x58,0x27,0x3f,0x91,0xa5,0x3f,0x31,0xab, +0x4d,0x58,0x02,0x7c,0x9f,0x17,0x12,0xc8,0xcf,0x62,0x82,0xfc, +0x06,0xdd,0xc6,0x93,0x68,0xf2,0x2b,0x8d,0xe6,0xe8,0x10,0xb1, +0xa5,0xba,0xe9,0x2d,0x05,0xf1,0x96,0xe4,0x2b,0x84,0x10,0x4f, +0x96,0x1d,0x7b,0x11,0x1b,0x4f,0xb1,0x03,0x73,0x9e,0xb0,0x78, +0x11,0x7f,0x4b,0x08,0xa2,0x95,0x5e,0x24,0x58,0x2e,0x66,0xd0, +0xfb,0x3c,0x71,0x66,0x69,0xaf,0x33,0x67,0x22,0x5c,0x24,0xce, +0x3c,0xb9,0x4f,0x02,0x2e,0xd1,0x12,0xa6,0x4e,0xd5,0x45,0x4e, +0xec,0x42,0x92,0xd4,0x6d,0xe3,0x98,0x0c,0x79,0xc7,0xcf,0x9b, +0xb7,0x60,0xb1,0x5a,0xfd,0x90,0xad,0x80,0x66,0x87,0xf7,0x5a, +0x11,0x6f,0x29,0x62,0xd2,0x33,0xcd,0x69,0xea,0x39,0xe9,0x13, +0x33,0x7b,0x5f,0xd1,0x5a,0x3e,0xab,0x3c,0x75,0x93,0x86,0x4c, +0x16,0x46,0x8d,0x90,0x93,0x47,0xf3,0x79,0x6f,0xd2,0x43,0x6c, +0x7d,0x59,0x08,0xe2,0xc4,0x7d,0xa2,0x4a,0x62,0x72,0x91,0x3e, +0x58,0x13,0x52,0xc8,0x5b,0x7e,0xde,0xfc,0x05,0x8b,0xf4,0x60, +0x1e,0x66,0x87,0xf7,0x59,0x11,0x9f,0xdc,0xf2,0x54,0x16,0x7e, +0xe6,0x34,0xe6,0x1b,0xb0,0x8a,0xd4,0x8d,0x9f,0xc1,0x04,0x27, +0xb1,0x1d,0x4f,0x5e,0x11,0xb3,0xd3,0x34,0x98,0x69,0x36,0xe6, +0x34,0x27,0x9e,0x5e,0xf4,0x15,0x50,0xe7,0x4a,0x9e,0xaa,0xcd, +0x9b,0x2a,0xc4,0x50,0x92,0xa3,0xd7,0x36,0x45,0x38,0xc7,0xb3, +0x88,0x3c,0x78,0x86,0x25,0xd8,0x1d,0xea,0x3d,0x15,0x6c,0xfb, +0x37,0xe3,0x0c,0x27,0xfe,0x28,0x86,0xf2,0x64,0x81,0xc1,0x1d, +0x8e,0x5f,0xdc,0x51,0x7e,0x4e,0xb2,0xdf,0x51,0xb2,0xff,0x8b, +0x3b,0x7f,0x77,0x63,0x7b,0xc7,0x5f,0x89,0xdc,0x8d,0x39,0x95, +0xa5,0x84,0x8d,0x98,0x53,0x1b,0x49,0x4e,0x6d,0xfe,0xd9,0xa9, +0x77,0x79,0x92,0x45,0xde,0x06,0xb0,0x85,0xa1,0x19,0x31,0xf1, +0x97,0x93,0xfd,0xf4,0xe7,0xaf,0x14,0x13,0x62,0x12,0x20,0xa7, +0x69,0xf4,0x20,0x2f,0x9d,0xb0,0xa0,0xcd,0x38,0x32,0x40,0xc9, +0xae,0x4c,0xd8,0x15,0x9d,0x2c,0x1a,0x4b,0x08,0x3f,0x92,0x1e, +0xfc,0x89,0x89,0x57,0x1e,0xef,0x3b,0xb7,0xfe,0x84,0xf9,0xb2, +0x65,0xcb,0x0a,0x0a,0x73,0x49,0x3b,0xea,0x6d,0x76,0xec,0x10, +0xdb,0xae,0xba,0x65,0xaf,0xcc,0x50,0x77,0xb4,0x53,0x78,0xcc, +0xe0,0xa8,0x2a,0xde,0x8f,0xed,0x8a,0x3d,0x34,0xc2,0x2f,0x33, +0xf9,0x9b,0x82,0x3b,0x3d,0xea,0x4b,0x12,0x99,0xfb,0x8e,0x90, +0xa1,0xbc,0xd0,0xc6,0x8d,0xf9,0x61,0xeb,0x25,0x4e,0x0c,0x27, +0xc3,0xd4,0x9a,0x74,0xc5,0x99,0x87,0x3b,0xcf,0x6c,0x62,0xcb, +0x53,0x71,0xf1,0x42,0xb6,0x3c,0x99,0x53,0x5f,0x09,0x4e,0x45, +0x86,0x33,0xb8,0x82,0xb4,0x2c,0x73,0x13,0x61,0x9f,0x61,0x6c, +0xa7,0x5d,0xa2,0x5b,0x98,0xe4,0xae,0x8b,0x92,0xa4,0x8b,0x24, +0x79,0xfe,0xe9,0x8e,0x93,0x9b,0x4e,0x99,0x17,0xae,0x28,0x96, +0x14,0xf9,0x3f,0x25,0xaf,0xb1,0x40,0x3e,0x31,0xf9,0xfc,0xe3, +0x3d,0xe7,0xd6,0x9f,0x61,0x81,0x5c,0x54,0x50,0x98,0x43,0xcc, +0x24,0xae,0x03,0xd4,0x82,0xf8,0x64,0x95,0x67,0x49,0xff,0x6e, +0x4e,0xad,0x15,0x15,0x42,0x9b,0x04,0x9e,0x5c,0x10,0x86,0x7b, +0xd1,0x3e,0xd4,0x8d,0xf4,0xf1,0x92,0x93,0xf9,0x62,0x6b,0x9e, +0x5d,0x0e,0x26,0x6e,0x6c,0x7a,0x6e,0x64,0x21,0x24,0xb1,0xfd, +0x7f,0xb1,0x84,0xbe,0x19,0xd2,0x68,0x9a,0x90,0x28,0x16,0xbe, +0xc2,0x38,0x39,0x4d,0x16,0xc2,0x65,0xb4,0xb5,0x68,0xcd,0x93, +0xd6,0xa4,0x9a,0xb4,0xa6,0xd5,0x2c,0xf2,0x57,0xff,0xce,0xbf, +0x39,0xfb,0x88,0xf4,0x20,0x3d,0xfd,0x1f,0xf5,0xec,0xe1,0xdf, +0x8f,0xf6,0xa4,0x3d,0xce,0xf6,0xfb,0x59,0x4b,0xea,0x94,0x3f, +0x7f,0xa1,0xf7,0xe8,0xf9,0x85,0xfe,0x46,0x4b,0xeb,0xce,0xf2, +0x23,0x23,0x0e,0xfc,0xa8,0xfd,0x9d,0x7b,0x54,0x7b,0xe0,0xf8, +0xb1,0xda,0x09,0xfd,0x34,0x5d,0x38,0xa7,0x88,0x09,0xa1,0x1a, +0x26,0x12,0xfa,0xb5,0xe5,0xd8,0xf1,0xaf,0x2d,0x23,0xd9,0x64, +0x4f,0x12,0x8a,0xf9,0x77,0x43,0xac,0x38,0xea,0x90,0xe1,0xd4, +0xad,0x9d,0x05,0xe5,0xde,0x76,0x90,0x7e,0xb2,0xfd,0xed,0x9f, +0x84,0xfb,0xdb,0xe9,0x1d,0xb5,0x2f,0xd3,0x90,0xfe,0x34,0x91, +0x77,0x76,0x1d,0x42,0x55,0x54,0xe5,0xfa,0xc3,0x1d,0x4d,0x15, +0x77,0xe7,0xe6,0x0f,0x44,0x45,0x54,0x37,0x87,0x38,0x6b,0x4c, +0xc8,0x35,0x61,0xa1,0x5a,0x63,0xa4,0x20,0x3a,0x6a,0xc3,0x1b, +0x26,0x7d,0x66,0x8e,0x99,0x34,0xe9,0xff,0xe7,0xb5,0x41,0x26, +0x0e,0x20,0x2d,0xd4,0xed,0x4d,0x15,0x26,0xc2,0x47,0x69,0x3d, +0x74,0x94,0xd6,0xc3,0x47,0x72,0x71,0xac,0xd0,0x56,0x82,0x39, +0x4b,0x63,0xa4,0x46,0x92,0xf1,0x82,0x97,0x16,0x00,0xea,0xc2, +0x82,0xdf,0x5f,0xd7,0x9d,0x17,0x97,0xfb,0x0b,0xcb,0xe5,0xb4, +0x39,0x9d,0xcd,0xaf,0x27,0xf6,0xde,0x45,0xf1,0x74,0xa0,0x8c, +0x76,0x94,0xc7,0x93,0x81,0xde,0x79,0xeb,0xa9,0xbd,0x8c,0xb6, +0xf1,0x17,0xd6,0x9e,0x95,0xd3,0x0a,0xda,0x94,0xef,0x31,0x34, +0xb4,0x7f,0xbf,0xdb,0xa3,0x7e,0xfe,0xf9,0xf6,0xd1,0x47,0x0f, +0x87,0x1e,0xeb,0xa1,0xfd,0x83,0xaa,0xf9,0x71,0x63,0xa2,0x03, +0x03,0xc7,0x6c,0xfc,0x4e,0x53,0xcc,0x1d,0x3c,0xbc,0xe9,0xf4, +0xe9,0xc3,0x51,0xe3,0x99,0xf5,0xcd,0x85,0x2b,0x3c,0x1d,0x13, +0x40,0xc6,0xc8,0xc9,0xaf,0x67,0x3e,0x5f,0x89,0x1f,0x69,0x67, +0xfe,0xf9,0x7c,0xf9,0xd4,0x84,0xf8,0x30,0x7f,0x0b,0x9b,0x0b, +0x81,0x77,0x7f,0xb8,0x70,0xfa,0xa7,0x33,0xf1,0x7b,0xa6,0xad, +0xd1,0x2c,0xbd,0x75,0x92,0x5e,0xe1,0x74,0x9d,0x82,0x79,0x56, +0x06,0x3f,0x9f,0xcf,0xfd,0x97,0xe9,0x6c,0xfc,0x9e,0xa9,0xab, +0x35,0x4b,0x39,0xfa,0x0b,0x6d,0xad,0x6e,0xdf,0x42,0x41,0x7e, +0x0d,0x93,0x0a,0x13,0x62,0x2b,0x54,0xf1,0xc2,0x8d,0xf3,0xe2, +0x0d,0x39,0xd9,0x2d,0x2e,0xe6,0x89,0xeb,0xf3,0x97,0xef,0xde, +0xf5,0x7d,0x49,0x87,0xd1,0x61,0x7d,0xfb,0x58,0x5a,0xbe,0xe8, +0x43,0x86,0x69,0xcf,0x1a,0x53,0x53,0x8f,0x0b,0xe7,0xb5,0x55, +0xdc,0xf9,0x6b,0x17,0xa4,0x87,0x4f,0xae,0xf9,0x8e,0xd0,0x24, +0x73,0x23,0x3c,0x7c,0xa9,0xa9,0xc6,0x44,0xf7,0x8f,0x30,0x97, +0xbf,0x4c,0xdb,0x90,0xb0,0x21,0xf5,0xc2,0x0f,0x6c,0xdb,0xdf, +0x46,0xaa,0x04,0x71,0xf4,0x02,0x7d,0xc7,0x93,0xb8,0x61,0xea, +0x0e,0x4f,0x14,0x63,0xc7,0x16,0x8c,0x15,0xad,0x14,0x63,0xf3, +0x82,0xe6,0xfa,0xcd,0x33,0x37,0xd1,0xcd,0x95,0xfe,0x83,0xc9, +0x34,0xda,0x94,0x8c,0x74,0xad,0xbf,0x79,0x93,0x65,0x0d,0x4d, +0xe9,0x93,0x5b,0x3a,0x81,0xa3,0x81,0x62,0x14,0xcf,0x36,0x27, +0x4d,0xe9,0x78,0x8e,0xfe,0x4a,0x79,0x9e,0x44,0xb8,0xb0,0x55, +0x75,0x72,0xfe,0x84,0xfc,0x09,0x05,0x8d,0x48,0x82,0x0b,0x4d, +0xe6,0x0a,0xa6,0x4d,0x5b,0x18,0xae,0xee,0x58,0xa1,0x98,0x39, +0x37,0x7c,0x5e,0xd8,0x7c,0x73,0x93,0x7e,0x0a,0x7a,0x47,0xfc, +0xc4,0x93,0x78,0x17,0xa9,0xab,0x51,0xa3,0x0a,0x46,0xab,0x8d, +0x93,0x15,0xa1,0xb9,0x7e,0x73,0xbd,0xa5,0xbe,0xc6,0xb1,0xbe, +0xc4,0x62,0x7d,0x62,0xdb,0xc3,0x90,0xde,0xb6,0xff,0x41,0xea, +0xaa,0xab,0xd8,0x8f,0xcf,0xbd,0x20,0x8b,0xa3,0x3d,0x68,0x52, +0x16,0x9d,0xa9,0x2a,0xf2,0x91,0x1d,0x3e,0xbc,0x68,0xd1,0x61, +0xad,0xd8,0xed,0xb6,0x60,0xc5,0x91,0x96,0xcb,0x64,0x62,0xef, +0xdb,0x82,0x3d,0x77,0xb5,0xf0,0x62,0xd1,0x89,0xe5,0x8d,0x4c, +0xea,0xaf,0x4a,0x3f,0x30,0xb9,0x8c,0xad,0x7d,0x7e,0x84,0xb7, +0xd5,0xbf,0x53,0xe5,0xa7,0xdb,0x8a,0x71,0x62,0x4f,0x75,0x87, +0xbf,0x14,0xb5,0x3b,0x16,0x2e,0xaa,0xd5,0x52,0xf1,0x06,0xf9, +0x87,0xab,0x5d,0x54,0xbb,0x78,0xdb,0x92,0x46,0xa2,0xec,0x86, +0xd0,0x84,0x3b,0x56,0x78,0xb8,0x68,0x2f,0x93,0x67,0x7a,0x76, +0x15,0x47,0xa8,0x3b,0x9d,0x56,0x1c,0x62,0xfd,0x1c,0xd2,0xd2, +0x1f,0x6e,0x93,0x7b,0xdc,0xb1,0xc5,0x47,0x17,0x1f,0x5e,0xda, +0x88,0x3e,0xbd,0x4d,0x5e,0x72,0x67,0x0b,0x4f,0x16,0x1d,0x2e, +0x6a,0x64,0x22,0x04,0x90,0x2d,0x86,0xe7,0x97,0x56,0x72,0x9b, +0x92,0xd5,0x1d,0x47,0x2a,0x84,0x6d,0xdd,0xf8,0x7b,0x3a,0x61, +0x90,0x9c,0x8e,0x17,0x3f,0x3f,0x05,0xc5,0x9a,0x52,0xa4,0x26, +0x72,0xbd,0xee,0x6d,0x9d,0xa9,0xa2,0xfe,0x78,0x47,0xe9,0x5c, +0x11,0x39,0x5d,0xf7,0x58,0xaa,0xed,0xa9,0x87,0x5a,0xbd,0x5b, +0x41,0x2e,0xd4,0xfd,0x24,0x55,0x0f,0xd6,0x5f,0xa0,0xab,0x15, +0xc2,0x9f,0x6a,0x59,0x2a,0xab,0x7e,0x7a,0x51,0x8f,0xc3,0x6c, +0xf4,0x37,0x3f,0xfd,0x74,0x4d,0x51,0xa7,0xad,0x4f,0x92,0x9e, +0xfb,0x15,0xba,0xaa,0x8d,0x0f,0xd0,0x74,0xc5,0x27,0x7b,0xe9, +0x60,0x95,0x6e,0x68,0x69,0x1d,0xa7,0xa8,0xeb,0x2c,0x71,0xa8, +0xe5,0xcd,0xeb,0x93,0xf8,0xba,0x07,0xff,0x69,0x22,0xe9,0x3a, +0x3b,0xe9,0xdc,0x9f,0xf8,0x54,0xdd,0xe4,0xad,0x82,0xc4,0xe8, +0x2c,0xf5,0xb5,0xdb,0xea,0x66,0x0a,0x05,0x49,0xd0,0xf5,0xd4, +0xd7,0xee,0x7f,0x52,0xb2,0x6e,0xc9,0xc8,0xba,0xfb,0xea,0xd6, +0x07,0x14,0x9f,0xf2,0x68,0x47,0xb5,0xaa,0x4a,0xa1,0x9b,0xa7, +0x36,0x5f,0xa7,0x10,0x72,0xd5,0xb2,0x18,0x89,0xac,0xae,0x7b, +0x71,0xe6,0xb0,0xa2,0x6e,0xb7,0x44,0x24,0x5a,0xa9,0x43,0x9d, +0x58,0xbf,0x4b,0x3a,0x85,0x45,0xaa,0x84,0x0d,0xe4,0x46,0x9d, +0x5a,0xa1,0xdb,0xa6,0xd7,0xb4,0xb9,0x38,0x80,0x55,0xea,0x2e, +0xbe,0xa9,0xeb,0xac,0x50,0x1b,0xc7,0x88,0x2d,0xa5,0x5a,0x90, +0xb0,0x4f,0x3a,0x77,0xa8,0x1b,0x4c,0x66,0x48,0x9c,0xf7,0xc9, +0xa3,0xff,0xed,0x48,0x9c,0xae,0x5c,0x8f,0xe1,0xab,0x4b,0x65, +0xd6,0xd5,0x77,0xa1,0x63,0x25,0x95,0x72,0xeb,0x36,0x4a,0xb6, +0x06,0x48,0x87,0xb4,0x82,0x05,0x1b,0x5a,0xa4,0x20,0xaf,0x1d, +0x24,0x1b,0xc5,0x88,0xf3,0xd2,0x51,0xb2,0x76,0x52,0x87,0xc2, +0x26,0x83,0xdd,0x26,0xe4,0x00,0x91,0xd5,0xb9,0x2b,0x84,0xe6, +0x62,0x00,0xf3,0x9b,0xb0,0xf5,0xa9,0x74,0xa8,0x4b,0xb8,0x22, +0x96,0x49,0xb5,0x9d,0x3a,0xe9,0xa8,0x97,0x78,0xb3,0x7e,0x22, +0x03,0xd6,0x3d,0x7a,0xca,0x2a,0xba,0x7a,0x43,0xd3,0x0c,0xb2, +0x39,0x53,0xad,0x88,0x55,0x08,0x39,0x7a,0xb8,0xc0,0xfa,0x24, +0x46,0x55,0x1b,0xaf,0x55,0x37,0x6a,0x4c,0x7e,0x54,0xcb,0x6f, +0x2b,0xd4,0xba,0xb1,0xf4,0xc7,0xc3,0x5f,0xf8,0x75,0x67,0xd4, +0xf2,0xd2,0xcf,0x0d,0x74,0x09,0xfd,0x59,0x12,0x25,0x57,0xd5, +0xc6,0x6b,0x18,0xad,0x55,0x17,0x09,0x5b,0x3f,0x1a,0x0a,0xb1, +0x97,0x54,0x55,0x1b,0x57,0xa9,0xb9,0x08,0xb5,0x72,0x84,0x42, +0x2d,0xbc,0x13,0xf7,0xff,0x8b,0x72,0x5c,0x2d,0xfb,0x5b,0x4f, +0x66,0x39,0xc3,0x29,0x3d,0xc6,0x85,0xba,0xe5,0xc2,0x7e,0x75, +0xcb,0x19,0x0a,0xdd,0x5d,0x3d,0x84,0x6c,0x3a,0x0d,0xd1,0x57, +0xef,0xd7,0xc9,0xf5,0xc7,0x66,0x3f,0xed,0x97,0x54,0x53,0xcb, +0x72,0xd5,0x72,0x4f,0x06,0x5c,0x2c,0x91,0xd5,0x66,0x6d,0x99, +0x7e,0xd3,0x25,0xfd,0x3e,0x37,0x90,0xb8,0x37,0xfa,0xc3,0x8f, +0x3a,0x67,0xb1,0x11,0x0b,0x01,0x5d,0xae,0xde,0xaa,0x31,0x2c, +0x7e,0x14,0x41,0x8a,0xba,0x35,0xd2,0xb0,0xe8,0xfc,0xea,0x7d, +0xf5,0x35,0x6b,0xc3,0xb0,0x90,0x82,0xce,0x52,0x55,0xb8,0xae, +0x96,0xb5,0x63,0x4e,0x16,0x93,0x1d,0xd4,0xad,0x72,0x14,0xf5, +0x09,0x4a,0xb5,0xf2,0x34,0x83,0xad,0x36,0x90,0xd9,0xac,0xcc, +0x94,0xb4,0xe8,0xcd,0xa0,0x5a,0xb6,0x61,0x26,0x7e,0xf8,0x97, +0x6e,0x50,0xe3,0x3d,0xfd,0x51,0x6a,0x21,0x76,0x4f,0xd5,0x6d, +0x6e,0x29,0x74,0x1d,0xc5,0x1a,0x75,0x93,0xa5,0x0a,0x71,0xd5, +0xf7,0x75,0x6c,0x06,0x58,0xea,0xc7,0x43,0x17,0xae,0xd7,0xb1, +0xa7,0xee,0xa4,0x74,0x8e,0xae,0x3e,0x92,0xfa,0x49,0x21,0x3f, +0x5a,0x1a,0x8f,0xba,0x32,0x7d,0xd3,0x32,0xdd,0xfe,0xfa,0x0e, +0x4c,0x07,0x7d,0xc4,0xce,0xd5,0x6d,0x91,0x2a,0xb3,0xf4,0x01, +0xbb,0x49,0x77,0x55,0xaa,0x14,0xea,0xe3,0x55,0xd8,0x5f,0xf7, +0x90,0xd5,0xea,0x57,0xd5,0xfb,0x4a,0xb3,0x24,0x42,0x6f,0xe5, +0x1b,0xa6,0x5a,0xdb,0x34,0x85,0x50,0xaa,0xb7,0xf2,0x3d,0xb3, +0x52,0xaa,0x1d,0xd2,0xcd,0xd7,0xed,0x51,0x88,0xf9,0x12,0xa2, +0xb0,0x59,0x97,0x20,0x55,0x12,0x25,0x44,0xe1,0x94,0x6e,0xa9, +0x54,0x31,0x20,0xea,0x1e,0xd4,0x6d,0x64,0xb5,0xfa,0x4d,0x7a, +0x44,0x61,0x81,0x1e,0x71,0x17,0x0b,0x2e,0xb5,0x7c,0x25,0x1b, +0xb0,0x5d,0x7a,0xcc,0x5d,0xd2,0xb3,0xea,0x52,0x9d,0xbc,0xd4, +0xb7,0x3b,0xd6,0xf7,0x54,0xb7,0xb1,0x65,0xcd,0x46,0xba,0xba, +0x3b,0xd2,0xd5,0xa7,0x01,0x3a,0x63,0xb5,0x6a,0x8d,0x04,0x20, +0x4c,0xd4,0x1f,0x8d,0x24,0x36,0x52,0xe4,0x99,0x8b,0x13,0xa5, +0x03,0x92,0xe4,0xe1,0x1b,0xe9,0x90,0xaf,0xce,0x97,0x5e,0x91, +0x4e,0x16,0xd6,0x17,0xa8,0xdb,0xfb,0x2b,0x7e,0x66,0x11,0xc8, +0xe6,0xac,0x30,0x57,0xf9,0xee,0xda,0xe1,0x3b,0xdb,0xb4,0xfe, +0xbb,0x65,0x7e,0xd1,0x63,0x23,0xbd,0x54,0xdd,0x47,0x5f,0x79, +0xa9,0xfd,0x89,0x7b,0x79,0xe4,0xca,0xdb,0x4b,0x07,0x22,0x43, +0x56,0x69,0xae,0x6d,0x97,0xdd,0x9a,0xe5,0x7b,0xb4,0xb3,0xba, +0x53,0x4f,0xa6,0xc2,0xe0,0xba,0x4e,0xcc,0xff,0xf5,0x4d,0xac, +0x25,0xe1,0x82,0xef,0xa5,0x29,0xa1,0x36,0x4e,0xd4,0x29,0xf4, +0xd1,0x42,0x46,0x2b,0xd5,0xea,0x5a,0x45,0xfd,0xad,0xfa,0x3c, +0xe9,0x18,0xb1,0x5a,0xbe,0x61,0xbc,0x34,0x5d,0x85,0x75,0xe4, +0xb5,0xfe,0x5c,0xb1,0x70,0x4e,0x49,0x34,0x6f,0xff,0x22,0x8e, +0xc4,0xb1,0xbb,0x74,0xf6,0x52,0xd3,0x5d,0x7f,0xf6,0xf2,0x6d, +0x7b,0xa2,0xd1,0xde,0x32,0xb6,0xf3,0x3d,0x41,0x1a,0x68,0xef, +0x70,0xa4,0xc1,0x85,0x13,0xcf,0x9e,0x5d,0x08,0xa1,0x0d,0x34, +0xce,0x1c,0x6d,0xe0,0x1b,0x62,0xa7,0x11,0xda,0xb9,0xa4,0x33, +0x3b,0x0c,0xf3,0xb1,0x5c,0xa8,0x93,0x8e,0x26,0xdf,0xe4,0x3e, +0xde,0x53,0x9b,0xee,0x57,0x14,0x5d,0xdb,0xf9,0x87,0x05,0x69, +0xe0,0x72,0x8b,0x72,0x1a,0x96,0x8b,0x9c,0xe2,0x49,0x12,0x09, +0xe6,0xae,0xee,0x89,0x18,0xae,0x9d,0xce,0x0d,0x9f,0x12,0xe1, +0xa9,0xa9,0xef,0x4d,0x5f,0x30,0x45,0x85,0x68,0xc9,0x70,0xb2, +0xd7,0x10,0x80,0xc2,0x09,0xa1,0xaf,0x74,0x66,0x91,0x84,0x3e, +0x95,0x4e,0x74,0xea,0xfe,0xa8,0x4f,0x62,0xa1,0x3b,0x55,0xef, +0xe1,0xc3,0x6c,0x04,0xfe,0x2f,0x47,0x2d,0x49,0x2e,0x4b,0xf0, +0x98,0x2e,0x23,0xa4,0x05,0x82,0xb6,0x32,0x54,0xae,0x49,0xcf, +0xe2,0xeb,0xf6,0xa8,0xe5,0xc3,0x58,0x4d,0x5d,0xd7,0x52,0x8a, +0xac,0x13,0x2c,0x12,0xcd,0xef,0x2a,0x84,0x03,0xfa,0xc0,0x14, +0xf2,0xa5,0x29,0x28,0x36,0x14,0xc7,0xb2,0xb8,0x1c,0x49,0xf2, +0xa4,0x48,0x24,0x4f,0x4b,0x79,0xfd,0x09,0x4f,0xd2,0x9f,0xec, +0x93,0x8e,0xed,0x0a,0x99,0xa5,0xd2,0x61,0x01,0xe1,0x62,0x5d, +0x98,0x74,0xa2,0xb5,0xfe,0xef,0xcf,0x81,0xa0,0x36,0x5e,0x56, +0xdf,0x52,0x7f,0xb6,0xd5,0x9d,0xca,0xf9,0x9b,0x1f,0xe5,0x4f, +0x8a,0xce,0x7e,0xb7,0xe9,0x9a,0xff,0x6e,0xb3,0xd8,0x91,0x53, +0x67,0xa9,0x3b,0x54,0x29,0x42,0x0e,0x39,0x16,0x35,0xfa,0xe8, +0xda,0x81,0xa3,0x4d,0x52,0xdc,0xba,0x52,0x2b,0x0b,0x6a,0x79, +0xbd,0x0b,0x69,0x9a,0xa2,0xe9,0x4c,0x62,0xf9,0x9f,0xb8,0x7b, +0xb5,0xe7,0xaf,0xaf,0x54,0x77,0xbe,0xc9,0x46,0xbd,0x56,0x29, +0x8c,0xf8,0x41,0x44,0xa1,0x7c,0xcf,0x86,0xda,0xcb,0x3f,0x58, +0xac,0x2c,0x28,0x5b,0xc0,0x76,0x4c,0xa3,0x6f,0xd2,0x48,0x79, +0xc6,0xbe,0xb4,0x7d,0xc7,0x2c,0x7e,0x3d,0x79,0xf8,0xd9,0xed, +0x43,0x33,0x42,0xb6,0x6b,0x2e,0x7d,0x27,0xbb,0x35,0xde,0x63, +0x7f,0x67,0x15,0xed,0x6c,0x6f,0x4b,0x9b,0x07,0x55,0x4c,0x2c, +0x1f,0xaf,0x75,0x71,0x7d,0x29,0x5f,0x9c,0xb6,0x38,0x25,0xc5, +0x22,0x30,0x35,0x20,0x30,0x56,0x7a,0x86,0xb2,0xfb,0x7d,0xfe, +0xc6,0xe7,0xf3,0x7c,0xd2,0xb3,0xa3,0x7b,0xd9,0xee,0x94,0xb8, +0x5c,0xa3,0x2e,0xbf,0x48,0xef,0x6a,0x39,0xdb,0x9d,0xdd,0x95, +0xf5,0x94,0xd3,0x41,0xf4,0xba,0x6c,0x9e,0x9c,0x0e,0x23,0xd7, +0x65,0x3d,0x18,0x91,0xde,0x95,0x51,0xb5,0x07,0x71,0xb1,0xa6, +0x2e,0xec,0x9d,0x76,0x7e,0x2c,0x37,0xa1,0x0f,0x04,0x1b,0xe5, +0x43,0xa1,0x4c,0x6d,0x6e,0xaf,0x60,0xd7,0xb9,0x42,0x19,0xdf, +0xdf,0x61,0xbe,0xfc,0xca,0xec,0x91,0x5b,0x86,0xa9,0x68,0x6b, +0xa7,0x0e,0xd4,0x89,0x3a,0xfd,0xd8,0x81,0xb4,0xfe,0xfe,0xf0, +0xd6,0xcb,0x5b,0xb4,0x4b,0x87,0xc9,0xbb,0x04,0x87,0xf4,0x1c, +0x31,0x61,0xf5,0x8e,0x08,0xcd,0xd8,0x20,0xd9,0xc4,0x3d,0xe7, +0xa3,0x9f,0xa8,0x48,0xe7,0x27,0xcf,0x48,0x47,0x2d,0x0d,0xdf, +0xcf,0xf7,0x0e,0xb8,0xf4,0x8a,0x85,0xf2,0xab,0x33,0x97,0x5e, +0xdd,0x3e,0x3b,0x29,0x40,0x43,0x03,0x39,0x77,0xbf,0xa9,0xc3, +0x34,0x26,0x62,0x13,0xa1,0x52,0xad,0x89,0x52,0x6c,0xab,0xac, +0x5d,0xa1,0xcd,0xaf,0xac,0x58,0x50,0xa9,0x22,0x8d,0xef,0xdf, +0xfe,0x73,0x7f,0xfa,0xd6,0xb8,0x0d,0xda,0x87,0x97,0xa9,0x9d, +0x7c,0x79,0x5c,0xcc,0xd2,0x28,0x15,0x6d,0x34,0x50,0x6d,0x12, +0xa9,0x98,0x51,0x1e,0xbb,0x25,0x4d,0x93,0xc5,0x85,0xa6,0x45, +0x46,0xa9,0x5b,0x24,0x2b,0x48,0xff,0xc7,0x87,0xff,0xd6,0xd0, +0x22,0xf2,0x9d,0x5a,0xdd,0x54,0x51,0xb1,0x76,0xab,0xba,0xf3, +0x6d,0xe9,0xb0,0xa0,0xf4,0x63,0x49,0x24,0xd5,0x78,0x77,0xc5, +0x9a,0x2d,0xda,0x12,0x6e,0x4b,0x6a,0x75,0x58,0x58,0x6a,0x7c, +0x24,0x13,0x8c,0xac,0x48,0xd8,0x6d,0x38,0xcc,0xa7,0x6e,0xeb, +0xac,0x70,0x9f,0x5c,0x7b,0x3e,0x4e,0x4b,0xb6,0x91,0xab,0xb2, +0x25,0x89,0x8b,0x12,0xe3,0x2c,0xa4,0x13,0xf4,0xaa,0x89,0xd6, +0x2c,0xe0,0x69,0x77,0xb6,0x27,0x27,0xaa,0xfd,0xbf,0x90,0x06, +0xd7,0xf7,0x84,0x8f,0x58,0xab,0xa1,0xdb,0xe8,0x15,0xd9,0x82, +0xd5,0x05,0x6b,0xaa,0x2d,0x4c,0xd0,0xa0,0x41,0x83,0xa6,0x42, +0xbb,0xa6,0x5d,0x4a,0xda,0x42,0x7e,0xff,0xd7,0x96,0x0b,0x17, +0xca,0xeb,0x9a,0xb7,0xae,0xd3,0xf0,0x25,0xad,0xac,0xc6,0x36, +0x04,0x1a,0x00,0x8d,0x80,0xe6,0x40,0x1b,0x40,0x0d,0x74,0x02, +0xac,0x80,0xde,0x80,0x3d,0x30,0x10,0x18,0x06,0x78,0x02,0xf3, +0x81,0x12,0x60,0x0b,0xb0,0x1f,0x38,0x03,0x5c,0x05,0x6e,0x03, +0x0f,0x18,0x32,0x1a,0x84,0xa3,0x41,0x0c,0x1a,0x6c,0x46,0x83, +0x63,0x68,0x70,0x1e,0x0d,0x6e,0xa0,0xc1,0x7d,0x34,0x78,0x8e, +0x06,0xaf,0xd1,0xe0,0x23,0x1a,0x10,0x34,0xf8,0x04,0xa3,0xc6, +0x30,0x6a,0x01,0x23,0x33,0x18,0xb5,0x83,0x51,0x57,0x18,0xf5, +0x82,0x91,0x2d,0x8c,0x06,0xc2,0xc8,0x05,0x46,0x5e,0x30,0xf2, +0x87,0xd1,0x48,0x18,0x8d,0x83,0x51,0x18,0x8c,0x66,0xc0,0x28, +0x06,0x46,0x89,0x30,0xca,0x84,0x51,0x1e,0x8c,0xca,0x61,0xb4, +0x16,0x46,0x07,0x61,0x74,0x0b,0x0d,0x5b,0xa3,0xa1,0x0a,0x0d, +0xdb,0xa3,0x61,0x4f,0x34,0x74,0x44,0x43,0x17,0x34,0x1c,0x8e, +0x86,0x21,0x68,0x38,0x09,0x0d,0x23,0xd1,0x30,0x09,0x0d,0x33, +0xd0,0x70,0x3e,0x1a,0x6e,0x46,0xc3,0x3d,0x68,0x78,0x10,0x0d, +0x4f,0xa3,0xe1,0x15,0x34,0xbc,0x8d,0x86,0x8f,0xd0,0xf0,0x05, +0x1a,0xfe,0x82,0x86,0x1f,0xd0,0x90,0xa0,0xe1,0x27,0x18,0x1b, +0xc3,0x58,0x01,0xe3,0xe6,0x30,0xb6,0x85,0x71,0x7f,0x18,0xbb, +0xc0,0xd8,0x1b,0xc6,0x01,0x30,0x9e,0x01,0xe3,0x04,0x18,0x2f, +0x85,0xf1,0x06,0x18,0x6f,0x87,0x8c,0x83,0x4c,0x0b,0x99,0x25, +0x64,0x01,0x90,0x55,0x42,0xb6,0x07,0xb2,0xe7,0x90,0xfd,0x0a, +0xd9,0x07,0xc8,0x5b,0x41,0x1e,0x0c,0x79,0x0c,0xe4,0x4b,0x21, +0x5f,0x03,0xf9,0x1e,0xc8,0x8f,0x40,0x7e,0x16,0xf2,0x7b,0x90, +0x3f,0x83,0xfc,0x2d,0xe4,0x7f,0x83,0x6b,0x00,0x4e,0x01,0x8e, +0x07,0xa7,0x06,0xd7,0x11,0x5c,0x0f,0x70,0xb6,0xe0,0xfa,0x81, +0x73,0x06,0xe7,0x01,0xce,0x0f,0x5c,0x28,0xb8,0x89,0xe0,0x22, +0xc0,0xcd,0x06,0x97,0x00,0x2e,0x0d,0xdc,0x5c,0x70,0x8b,0xc0, +0x15,0x81,0x2b,0x03,0xb7,0x0a,0x5c,0x0d,0xb8,0xc3,0xe0,0x08, +0x1a,0xa9,0xd0,0x28,0x08,0x8d,0x46,0xa3,0x51,0x26,0x1a,0x55, +0xa0,0xd1,0x2d,0x34,0x6e,0x81,0xc6,0xc3,0xd1,0x38,0x08,0x8d, +0xa3,0xd1,0x78,0x3d,0x1a,0x3f,0x46,0xe3,0x17,0x68,0x5c,0x07, +0x45,0x43,0x28,0x1a,0x43,0x31,0x00,0x0a,0x7f,0x28,0xc2,0xa1, +0xc8,0x82,0x62,0x09,0x14,0xfb,0xa0,0x38,0x0e,0xc5,0x65,0x28, +0x7e,0x84,0xe2,0x3d,0x9a,0x34,0x46,0x93,0xfe,0x68,0x92,0x84, +0x26,0x0f,0xd0,0xd4,0x1a,0x4d,0x33,0xd0,0x74,0x3e,0x9a,0x16, +0xa2,0xe9,0x19,0x34,0x7d,0x8b,0x66,0xdd,0xd0,0xcc,0x0b,0xcd, +0x92,0xd0,0x6c,0x29,0x9a,0x55,0xa3,0xd9,0x25,0x34,0x7b,0x8e, +0x66,0x14,0x26,0x2d,0x61,0x62,0x0d,0x93,0xc1,0x30,0xf1,0x87, +0xc9,0x28,0x98,0x4c,0x85,0x49,0x0c,0x4c,0xf2,0x60,0xb2,0x10, +0x26,0x45,0x30,0x59,0x09,0x93,0x35,0x30,0xd9,0x0c,0x93,0xbd, +0x30,0x39,0x06,0x93,0xf3,0x30,0xb9,0x05,0x93,0x07,0x30,0x79, +0x05,0x93,0xf7,0x30,0x11,0x60,0xda,0x00,0xa6,0x8d,0x60,0xda, +0x02,0xa6,0x2a,0x98,0x76,0x86,0xa9,0x35,0x4c,0xfb,0xc2,0x74, +0x00,0x4c,0x5d,0x60,0xea,0x05,0xd3,0x40,0x98,0x8e,0x86,0xe9, +0x24,0x98,0x46,0xc0,0x74,0x36,0x4c,0x93,0x60,0x9a,0x01,0xd3, +0x3c,0x98,0x2e,0x84,0x69,0x11,0x4c,0x57,0xc2,0x74,0x35,0x4c, +0xd7,0xc3,0xf4,0x3c,0x4c,0x7f,0x45,0xf3,0x6e,0x68,0xee,0x81, +0xe6,0x91,0x68,0x5e,0x89,0xe6,0x27,0xd1,0xfc,0x29,0x5a,0x70, +0x68,0xd1,0x0b,0x2d,0xc6,0xa3,0x45,0x26,0x5a,0xe4,0xa3,0xc5, +0x32,0xb4,0x28,0x47,0x8b,0x9b,0x68,0x71,0x0f,0x2d,0x5e,0xa0, +0xa5,0x39,0x5a,0xf6,0x44,0x4b,0x7b,0xb4,0x1c,0x8e,0x96,0x41, +0x68,0x59,0x80,0x96,0xa5,0x68,0xb9,0x0e,0x2d,0x0f,0xa3,0xe5, +0x1d,0xb4,0x7c,0x8c,0x96,0x7f,0xa2,0x55,0x13,0xb4,0xea,0x80, +0x56,0xd6,0x68,0x35,0x15,0xad,0xa2,0xd0,0xea,0x12,0x5a,0xbd, +0x44,0xeb,0x06,0x68,0xed,0x8c,0xd6,0xf1,0x68,0xbd,0x02,0xad, +0xab,0xd0,0xfa,0x2c,0x5a,0x3f,0x07,0x2f,0x07,0xdf,0x19,0xbc, +0x0d,0xf8,0x48,0xf0,0x89,0xe0,0x17,0x80,0x5f,0x0d,0x7e,0x23, +0xf8,0x5d,0xe0,0x8f,0x82,0xff,0x1e,0xfc,0x63,0xf0,0xbf,0x81, +0x27,0x50,0x02,0xca,0x66,0x50,0x2a,0xa1,0xd4,0x40,0xd9,0x07, +0x4a,0x27,0x28,0xdd,0xa1,0x0c,0x82,0x72,0x02,0x94,0x33,0xa0, +0x8c,0x81,0x32,0x03,0xca,0x79,0x50,0x2e,0x85,0xb2,0x02,0xca, +0xf5,0x50,0x6e,0x87,0x72,0x3f,0x94,0xa7,0xa0,0xbc,0x0a,0xe5, +0x1d,0x28,0x1f,0x42,0xf9,0x02,0xca,0x77,0x50,0x52,0xb4,0x69, +0x88,0x36,0xcd,0xd0,0x46,0x89,0x36,0x1a,0xb4,0xe9,0x8a,0x36, +0xbd,0xd1,0xc6,0x11,0x6d,0x86,0xa0,0x8d,0x27,0xda,0xf8,0xa3, +0xcd,0x48,0xb4,0x19,0x87,0x36,0xd3,0xd0,0x66,0x16,0xda,0xc4, +0xa1,0xcd,0x0e,0xb4,0x79,0x8c,0x36,0xbf,0xc3,0xac,0x15,0xcc, +0x3a,0xc2,0xcc,0x1d,0x66,0xb1,0x30,0x2b,0x85,0xd9,0x49,0x98, +0xdd,0x86,0xd9,0xcf,0x30,0xfb,0x03,0xe6,0x1c,0xcc,0x4d,0x60, +0xde,0x11,0xe6,0xf6,0x30,0xf7,0x84,0xf9,0x08,0x98,0x8f,0x86, +0x79,0x34,0xcc,0xe7,0xc2,0x7c,0x25,0xcc,0xb7,0xc3,0xfc,0x00, +0xcc,0x6f,0xc0,0x42,0x0d,0x8b,0x2e,0xb0,0xf0,0x85,0xc5,0x64, +0x58,0xc4,0xc1,0xe2,0x10,0x2c,0x9e,0x40,0xc5,0x43,0xd5,0x03, +0xaa,0x24,0xa8,0xb2,0xa1,0x2a,0x84,0xaa,0x14,0xaa,0x5b,0x50, +0xfd,0x09,0xb5,0x0d,0xd4,0x03,0xa1,0x9e,0x0e,0x75,0x3c,0xd4, +0x4b,0xa0,0xde,0x07,0xf5,0x55,0xa8,0x1f,0x41,0xfd,0x13,0xda, +0x76,0x41,0xdb,0xc1,0x68,0x3b,0x1c,0x6d,0x47,0xa1,0xed,0x24, +0xb4,0x8d,0x42,0xdb,0x78,0xb4,0xcd,0x46,0xdb,0xe5,0x68,0xbb, +0x1e,0x6d,0xf7,0xa2,0xed,0x31,0xb4,0x3d,0x87,0xb6,0xf7,0xd1, +0xf6,0x67,0xb4,0xfd,0x1d,0x6d,0xeb,0xa0,0x31,0x82,0xa6,0x31, +0x34,0xcd,0xa1,0xb1,0x80,0xa6,0x3d,0x34,0x56,0xd0,0xf4,0x86, +0x66,0x00,0x34,0xae,0xd0,0x8c,0x80,0x26,0x14,0x9a,0x71,0xd0, +0x44,0x40,0x13,0x03,0x4d,0x1a,0x34,0xf3,0xa1,0x29,0x82,0xa6, +0x02,0x9a,0x1a,0x68,0xb6,0x43,0xb3,0x0f,0x9a,0x13,0xd0,0x5c, +0x80,0xe6,0x7b,0x68,0x1e,0x41,0xf3,0x13,0x34,0xbf,0x40,0xf3, +0x07,0x34,0x14,0xda,0x06,0xd0,0xca,0xa1,0x35,0x85,0xd6,0x0c, +0xda,0xf6,0xd0,0x5a,0x42,0xdb,0x07,0x5a,0x27,0x68,0x87,0x40, +0xeb,0x09,0x6d,0x00,0xb4,0xa3,0xa0,0x9d,0x04,0x6d,0x04,0xb4, +0xd1,0xd0,0x26,0x40,0x9b,0x06,0x6d,0x2e,0xb4,0x0b,0xa0,0x2d, +0x84,0xb6,0x04,0xda,0x4a,0x68,0xd7,0x42,0x7b,0x08,0xda,0x9b, +0xd0,0xbe,0x86,0xb6,0x1e,0xed,0x02,0xd1,0x2e,0x07,0xed,0x8e, +0xa2,0xdd,0x03,0xb4,0x6f,0x83,0xf6,0x9d,0xd0,0x7e,0x28,0xda, +0xa7,0xa1,0x7d,0x19,0xda,0x9f,0x46,0xfb,0x37,0xe8,0xd0,0x08, +0x1d,0xac,0xd1,0x21,0x1c,0x1d,0x62,0xd1,0xa1,0x18,0x1d,0x0e, +0xa2,0xc3,0x39,0x74,0xb8,0x89,0x0e,0x1f,0xd0,0xd1,0x14,0x1d, +0xbb,0xa0,0xe3,0x30,0x74,0x0c,0x44,0xc7,0x68,0x74,0x4c,0x45, +0xc7,0x2d,0xe8,0x78,0x0a,0x1d,0x2f,0xa0,0xe3,0x2d,0x74,0xbc, +0x87,0x8e,0xbf,0xa1,0x93,0x1c,0x9d,0x4c,0xd1,0x49,0x8b,0x4e, +0xf3,0xd1,0xe9,0x1e,0x3a,0x9b,0xa3,0x73,0x37,0x74,0xf6,0x47, +0xe7,0x49,0xe8,0xbc,0x04,0x9d,0xcb,0xd0,0xf9,0x14,0x3a,0x33, +0xfa,0x1b,0x74,0x51,0xa2,0x4b,0x57,0x74,0x99,0x86,0x2e,0x59, +0xe8,0xb2,0x1d,0x5d,0x0e,0xa0,0xcb,0x13,0x74,0x6d,0x81,0xae, +0x6d,0xd1,0x75,0x14,0xba,0x4e,0x45,0xd7,0x28,0x74,0x5d,0x84, +0xae,0x65,0xe8,0xba,0x05,0x5d,0x4f,0xa2,0xeb,0x05,0x74,0x65, +0x0c,0x7f,0xa2,0x9b,0x02,0xdd,0xda,0xa1,0x5b,0x17,0x74,0x73, +0x46,0x37,0x4f,0x74,0x1b,0x83,0x6e,0x31,0xe8,0x36,0x1f,0xdd, +0x0a,0xd1,0x6d,0x33,0xba,0xed,0x47,0xb7,0xb3,0xe8,0x76,0x13, +0xdd,0xee,0xa1,0xdb,0x33,0x74,0xfb,0x03,0x96,0x32,0x58,0x9a, +0xc0,0xd2,0x1c,0x96,0xed,0x61,0xd9,0x1d,0x96,0x8e,0xb0,0x74, +0x81,0x65,0x38,0x2c,0x63,0x61,0x99,0x09,0xcb,0x45,0xb0,0xac, +0x82,0xe5,0x26,0x58,0xee,0x80,0xe5,0x7e,0x58,0x1e,0x85,0xe5, +0x05,0x58,0xde,0x84,0xe5,0x7d,0x58,0xbe,0x86,0xe5,0x6f,0xb0, +0xac,0x83,0x95,0x0c,0x56,0x26,0xb0,0x52,0xc1,0xaa,0x03,0xac, +0xac,0x61,0xd5,0x17,0x56,0xfd,0x60,0x35,0x14,0x56,0xde,0xb0, +0x0a,0x81,0xd5,0x44,0x58,0x4d,0x87,0x55,0x3c,0xac,0x32,0x60, +0x35,0x1f,0x56,0x85,0xb0,0x2a,0x83,0xd5,0x5a,0x58,0x6d,0x85, +0xd5,0x5e,0x58,0x1d,0x85,0xd5,0x39,0x58,0x5d,0x87,0xd5,0x3d, +0x58,0x3d,0x83,0xd5,0x1b,0x58,0x7d,0x84,0x55,0x1d,0xac,0x8d, +0x60,0xdd,0x04,0xd6,0xad,0x60,0xad,0x82,0x75,0x07,0x58,0x5b, +0xc2,0xda,0x06,0xd6,0x4e,0xb0,0x76,0x86,0xb5,0x3b,0xac,0x87, +0xc3,0x3a,0x10,0xd6,0xa3,0x61,0x3d,0x09,0xd6,0x11,0xb0,0x8e, +0x82,0x75,0x1c,0xac,0x53,0x60,0x9d,0x05,0xeb,0x32,0x58,0xdf, +0x84,0xf5,0x7b,0x74,0x37,0x45,0x77,0x17,0x74,0x0f,0x46,0xf7, +0x09,0xe8,0x3e,0x07,0xdd,0x97,0xa2,0xfb,0x31,0x74,0x7f,0x84, +0xee,0x22,0x7a,0x18,0xa3,0x47,0x33,0xf4,0xe8,0x8d,0x1e,0xc9, +0xe8,0xb1,0x0f,0x3d,0x4e,0xa1,0xc7,0xdf,0xe8,0x21,0xa2,0x67, +0x23,0xf4,0xd4,0xa0,0xa7,0x25,0x7a,0x86,0xa0,0xe7,0x42,0xf4, +0xdc,0x8c,0x9e,0xa7,0xd1,0xab,0x39,0x7a,0x75,0x43,0x2f,0x1f, +0xf4,0x4a,0x45,0xaf,0x45,0xe8,0xb5,0x01,0xbd,0x2e,0xa0,0xd7, +0x6b,0xf4,0x12,0xd0,0x5b,0x8d,0xde,0x8e,0xe8,0x1d,0x83,0xde, +0x0b,0xd0,0xbb,0x0c,0xbd,0x37,0xa2,0xf7,0x5e,0xf4,0x3e,0x8d, +0xde,0x3a,0xf4,0xf1,0x45,0x9f,0x29,0xe8,0x93,0x83,0x3e,0xf7, +0xd0,0xe7,0x77,0xf4,0x35,0x46,0x5f,0x15,0xfa,0x8e,0x41,0xdf, +0x54,0xf4,0x9d,0x8f,0xbe,0x9b,0xd1,0xf7,0x38,0xfa,0x5e,0x47, +0xdf,0xbb,0xe8,0xcb,0x5a,0x45,0xd8,0xb4,0x86,0x4d,0x5b,0xd8, +0x0c,0x80,0xcd,0x48,0xd8,0x64,0xc0,0xa6,0x14,0x36,0x77,0x60, +0xf3,0x09,0xb6,0x26,0xb0,0x55,0xc2,0xb6,0x0f,0x6c,0xbd,0x61, +0x1b,0x0c,0xdb,0x19,0xb0,0x8d,0x87,0x6d,0x06,0x6c,0xf3,0x61, +0x5b,0x02,0xdb,0x4d,0xb0,0x3d,0x0c,0xdb,0x9b,0xb0,0xfd,0x1b, +0x76,0x1c,0xec,0x86,0xc1,0x6e,0x34,0xec,0x62,0x60,0x97,0x04, +0xbb,0x45,0xb0,0x5b,0x0e,0xbb,0x4d,0xb0,0xdb,0x0b,0xbb,0x13, +0xb0,0xbb,0x0a,0xbb,0x87,0xb0,0x7b,0x0d,0xbb,0x3f,0xa4,0xbd, +0x80,0xbd,0x39,0xec,0xdb,0xc1,0xbe,0x0b,0xec,0xfb,0xc2,0x7e, +0x00,0xec,0x87,0xc3,0x3e,0x04,0xf6,0xe3,0x61,0x3f,0x0d,0xf6, +0x49,0xb0,0x2f,0x80,0xfd,0x2a,0xd8,0xd7,0xc0,0x7e,0x37,0xec, +0xcf,0xc2,0xfe,0x1a,0xec,0x9f,0xc2,0xfe,0x23,0xec,0xeb,0xe1, +0x60,0x02,0x87,0xb6,0x70,0xe8,0x08,0x87,0x5e,0x70,0xe8,0x0f, +0x07,0x2f,0x38,0x04,0xc1,0x61,0x1c,0x1c,0xa6,0xc2,0x21,0x12, +0x0e,0xf1,0x70,0x98,0x0b,0x87,0xc5,0x70,0x58,0x09,0x87,0xf5, +0x70,0xd8,0x0e,0x87,0x83,0x70,0x38,0x09,0x87,0xcb,0x70,0xb8, +0x03,0x87,0xc7,0x70,0x78,0x0d,0x87,0xdf,0xe1,0x40,0xe1,0x28, +0x83,0xa3,0x29,0x1c,0xcd,0xe1,0xd8,0x11,0x8e,0x3d,0xe0,0xe8, +0x00,0xc7,0xc1,0x70,0xf4,0x80,0xa3,0x3f,0x1c,0x47,0xc1,0x71, +0x0a,0x1c,0x67,0xc1,0x31,0x1e,0x8e,0xb9,0x70,0x5c,0x04,0xc7, +0x62,0x38,0xae,0x82,0xe3,0x46,0x38,0xee,0x84,0xe3,0x41,0x38, +0x9e,0x80,0xe3,0x45,0x38,0xde,0x82,0xe3,0x43,0x38,0x3e,0x87, +0xe3,0xcf,0x70,0xfc,0x13,0x8e,0xff,0xc0,0x89,0x83,0x93,0x29, +0x9c,0x94,0x70,0xd2,0xc2,0xa9,0x1b,0x9c,0xfa,0xc0,0xa9,0x1f, +0x9c,0x5c,0xe0,0xe4,0x0b,0xa7,0x10,0x38,0x8d,0x87,0xd3,0x34, +0x38,0x45,0xc1,0x29,0x01,0x4e,0xe9,0x70,0xca,0x83,0xd3,0x62, +0x38,0x15,0xc3,0xa9,0x0a,0x4e,0x35,0x70,0xda,0x0a,0xa7,0xdd, +0x70,0x3a,0x02,0xa7,0xd3,0x70,0xba,0x04,0xa7,0x9b,0x70,0xba, +0x07,0xa7,0xc7,0x70,0x7a,0x05,0xa7,0xdf,0xe0,0xf4,0x27,0x9c, +0xea,0xe0,0xf4,0x0f,0xfa,0xc9,0xd1,0xaf,0x19,0xfa,0xb5,0x46, +0x3f,0x0b,0xf4,0x6b,0x87,0x7e,0x21,0xe8,0x57,0x8a,0x7e,0x1f, +0xd0,0xbf,0x21,0xfa,0xc7,0xa3,0xff,0x72,0xf4,0x5f,0x8b,0xfe, +0x2f,0xd1,0xff,0x23,0x06,0xc8,0x30,0xc0,0x14,0x03,0xcc,0x31, +0xa0,0x13,0x06,0xd8,0x62,0x40,0x20,0x06,0x8c,0xc5,0x80,0x0a, +0x0c,0xa8,0xc1,0x80,0xdd,0x18,0x20,0x60,0xa0,0x31,0x06,0xf2, +0x18,0xd8,0x0d,0x03,0x03,0x31,0x70,0x17,0x06,0x5e,0xc7,0xc0, +0xbf,0x30,0xa8,0x25,0x06,0x0d,0xc0,0xa0,0x48,0x0c,0xda,0x8f, +0x41,0x75,0x18,0xdc,0x15,0x83,0x07,0x62,0x70,0x14,0x06,0x57, +0x62,0xf0,0x53,0x0c,0xfe,0x1d,0x83,0x75,0x18,0xa2,0xc1,0x90, +0x21,0x18,0x12,0x87,0x21,0x7b,0x30,0xe4,0x08,0x86,0x5c,0xc2, +0x90,0xef,0xe1,0x6c,0x04,0x67,0x0d,0x9c,0xdd,0xe0,0x1c,0x08, +0xe7,0x49,0x70,0x9e,0x09,0xe7,0x79,0x70,0xfe,0x01,0xce,0xaf, +0xe0,0xfc,0x27,0x9c,0xff,0xc1,0xd0,0xf6,0x18,0xda,0x0f,0x43, +0x87,0x61,0xa8,0x07,0x86,0x8e,0xc1,0xd0,0x44,0x0c,0xdd,0x81, +0xa1,0x77,0x31,0xf4,0x2d,0x86,0xfe,0x81,0xa1,0xff,0x60,0x58, +0x23,0x0c,0xeb,0x80,0x61,0x3d,0x31,0x6c,0x28,0x86,0xf9,0x62, +0xd8,0x58,0x0c,0x8b,0xc3,0xb0,0x62,0x0c,0x5b,0x8d,0x61,0xc7, +0x31,0xec,0x36,0x86,0x3d,0xc4,0xb0,0x5f,0xe1,0x62,0x04,0x97, +0x96,0x70,0xb1,0x82,0x8b,0x3b,0x5c,0x46,0xc1,0x65,0x32,0x5c, +0x66,0xc2,0x25,0x03,0x2e,0x0b,0xe1,0xb2,0x16,0x2e,0x1b,0xe1, +0x72,0x10,0x2e,0x17,0xe1,0x72,0x0d,0x2e,0xb7,0xe1,0xf2,0x0a, +0x2e,0x1f,0xe0,0x22,0xc2,0x95,0x83,0x6b,0x73,0xb8,0xb6,0x87, +0xab,0x2d,0x5c,0x7d,0xe0,0x1a,0x02,0xd7,0x49,0x70,0x8d,0x82, +0x6b,0x22,0x5c,0xd3,0xe0,0x5a,0x0c,0xd7,0xb5,0x70,0xdd,0x06, +0xd7,0xbd,0x70,0x3d,0x05,0xd7,0x1b,0x70,0x7d,0x08,0xd7,0x9f, +0xe0,0xfa,0x1e,0xae,0x7f,0xc1,0xf5,0x13,0xdc,0x14,0x70,0x6b, +0x05,0xb7,0xb6,0x70,0xeb,0x00,0x37,0x4b,0xb8,0xd9,0xc2,0x6d, +0x08,0xdc,0x7c,0xe0,0x16,0x02,0xb7,0xc9,0x70,0x9b,0x01,0xb7, +0x58,0xb8,0x65,0xc2,0xad,0x00,0x6e,0x2b,0xe0,0xb6,0x0a,0x6e, +0x1b,0xe0,0xb6,0x13,0x6e,0x07,0xe1,0x76,0x12,0x6e,0xd7,0xe1, +0x76,0x17,0x6e,0x2f,0xe1,0xf6,0x0e,0x6e,0x7f,0xc3,0x1d,0x70, +0x57,0xc0,0xbd,0x35,0xdc,0x35,0x70,0xef,0x00,0xf7,0x1e,0x70, +0x77,0x84,0xbb,0x33,0xdc,0xbd,0xe0,0x1e,0x08,0xf7,0xb1,0x70, +0x9f,0x0a,0xf7,0x99,0x70,0x9f,0x03,0xf7,0x14,0xb8,0xcf,0x85, +0xfb,0x12,0xb8,0x97,0xc1,0x7d,0x2d,0xdc,0xb7,0xc1,0x7d,0x1f, +0xdc,0x8f,0xc1,0xfd,0x3c,0xdc,0x6f,0xc0,0xfd,0x3e,0xdc,0x9f, +0xc2,0xfd,0x2d,0xdc,0xff,0x80,0xbb,0x08,0x0f,0x19,0x3c,0x4c, +0xe0,0xd1,0x06,0x1e,0xed,0xe0,0x61,0x09,0x8f,0xbe,0xf0,0xe8, +0x0f,0x0f,0x17,0x78,0xf8,0xc2,0x23,0x14,0x1e,0x13,0xe0,0x31, +0x1d,0x1e,0xb1,0xf0,0x48,0x85,0x47,0x2e,0x3c,0x16,0xc0,0xa3, +0x10,0x1e,0x2b,0xe1,0xb1,0x16,0x1e,0x5b,0xe1,0xb1,0x17,0x1e, +0x47,0xe1,0x71,0x16,0x1e,0x57,0xe1,0x71,0x07,0x1e,0x3f,0xc2, +0xe3,0x25,0x3c,0xde,0xc1,0xe3,0x2f,0x78,0xd4,0xc3,0x53,0x06, +0xcf,0xa6,0xf0,0x6c,0x05,0x4f,0x0b,0x78,0x76,0x80,0xa7,0x15, +0x3c,0xfb,0xc2,0xb3,0x1f,0x3c,0x87,0xc2,0xd3,0x0b,0x9e,0x23, +0xe0,0x19,0x02,0xcf,0x71,0xf0,0x0c,0x83,0xe7,0x4c,0x78,0xce, +0x81,0x67,0x02,0x3c,0xd3,0xe0,0x99,0x05,0xcf,0x79,0xf0,0x5c, +0x0c,0xcf,0x15,0xf0,0x2c,0x87,0xe7,0x1a,0x78,0x6e,0x84,0x67, +0x2d,0x3c,0xf7,0xc2,0xf3,0x30,0x3c,0x4f,0xc1,0xf3,0x02,0x3c, +0xaf,0xc3,0xf3,0x0e,0x3c,0x1f,0xc2,0xf3,0x19,0x3c,0x09,0x3c, +0x3f,0xc1,0xcb,0x18,0x5e,0x4d,0xe0,0xd5,0x02,0x5e,0xe6,0xf0, +0xea,0x04,0x2f,0x2b,0x78,0xd9,0xc3,0x6b,0x00,0xbc,0xdc,0xe0, +0x35,0x11,0x5e,0xd3,0xe1,0x15,0x05,0xaf,0x38,0x78,0x15,0xc2, +0xab,0x14,0x5e,0xab,0xe1,0xb5,0x11,0x5e,0x4f,0xe0,0xf5,0x0b, +0xbc,0x3e,0xc2,0x4b,0x80,0x77,0x4b,0x78,0x9b,0xc3,0xbb,0x33, +0xbc,0x1d,0xe0,0x3d,0x16,0xde,0xe1,0xf0,0x8e,0x82,0x77,0x1a, +0xbc,0xb3,0xe1,0x5d,0x06,0xef,0x6a,0x78,0x6f,0x82,0xf7,0x0e, +0x78,0x7f,0x07,0xef,0x33,0xf0,0xbe,0x0c,0xef,0x5b,0xf0,0xbe, +0x07,0xef,0xc7,0xf0,0x7e,0x0b,0xef,0x0f,0xf0,0xae,0x83,0x8f, +0x11,0x7c,0x1a,0xc1,0xc7,0x04,0x3e,0xf6,0xf0,0x99,0x0e,0x9f, +0xd9,0xf0,0x49,0x86,0x4f,0x36,0x7c,0x0a,0xe0,0xb3,0x0c,0x3e, +0xa5,0xf0,0xa9,0x82,0xcf,0x3a,0xf8,0x6c,0x86,0xcf,0x3e,0xf8, +0x1c,0x85,0xcf,0x59,0xf8,0x5c,0x83,0xcf,0x6d,0xf8,0xfc,0x08, +0x9f,0xe7,0xf0,0xf9,0x19,0x3e,0xef,0xe1,0x23,0xc0,0xe7,0x1f, +0x0c,0x6f,0x89,0xe1,0xed,0x31,0x3c,0x08,0xc3,0xc3,0x31,0x7c, +0x16,0x86,0xc7,0x60,0x78,0x0a,0x86,0x97,0x60,0xf8,0x3d,0x0c, +0xff,0x00,0xdf,0xd6,0xf0,0xed,0x05,0xdf,0x29,0xf0,0x5d,0x04, +0xdf,0x4a,0xf8,0xae,0x87,0x6f,0x2d,0x7c,0x8f,0xc2,0xf7,0x0c, +0x7c,0xaf,0xc0,0xf7,0x7b,0xf8,0x3e,0x80,0xef,0x0b,0xf8,0xfe, +0x02,0x5f,0xc6,0x2c,0x62,0x44,0x4b,0x8c,0xe8,0x8a,0x11,0xdd, +0x31,0xc2,0x06,0x23,0x66,0x63,0x44,0x12,0x46,0x64,0x60,0xc4, +0x5c,0x8c,0x58,0x88,0x11,0x6b,0x31,0x62,0x0f,0x46,0x1c,0xc5, +0x88,0x3b,0xf0,0x6b,0x09,0x3f,0x0b,0xf8,0x75,0x82,0x5f,0x0f, +0xf8,0x39,0xc2,0xcf,0x19,0x7e,0x3e,0xf0,0x0b,0x86,0xdf,0x78, +0xf8,0x85,0xc1,0x6f,0x06,0xfc,0x62,0xe1,0x97,0x0c,0xbf,0x4c, +0xf8,0x2d,0x82,0x5f,0x0d,0xfc,0x7e,0x84,0xdf,0x6b,0xf8,0xfd, +0x05,0xff,0x06,0xf0,0x57,0xc0,0xbf,0x25,0xfc,0xcd,0xe0,0xdf, +0x0e,0xfe,0x5d,0xe0,0xdf,0x1d,0xfe,0x7d,0xe1,0xef,0x0a,0x7f, +0x6f,0xf8,0x07,0xc3,0x3f,0x1c,0xfe,0xb3,0xe1,0x5f,0x08,0xff, +0x9d,0xf0,0x3f,0x0b,0xff,0x4f,0x08,0x68,0x82,0x80,0xd6,0x08, +0x50,0x21,0xa0,0x03,0x02,0xac,0x11,0xd0,0x07,0x01,0x5e,0x08, +0x88,0x42,0x40,0x16,0x02,0xaa,0x10,0xf0,0x1b,0x02,0x08,0x02, +0xcd,0x10,0x68,0x87,0x40,0x4f,0x04,0x26,0x21,0xb0,0x00,0x81, +0xcb,0x10,0x58,0x8a,0xc0,0xb5,0x08,0xac,0x45,0xe0,0x41,0x04, +0x1e,0x43,0xe0,0x79,0x04,0x5e,0x43,0xe0,0x6d,0x04,0x3e,0x40, +0xe0,0x53,0x04,0xbe,0x42,0x10,0x10,0x64,0x87,0x20,0x67,0x04, +0xf9,0x23,0x68,0x24,0x82,0xc6,0x23,0x28,0x06,0x41,0xf3,0x11, +0xb4,0x09,0x41,0xc7,0x11,0xf4,0x08,0x41,0x7f,0x22,0xb8,0x05, +0x82,0x07,0x21,0x78,0x14,0x82,0xf3,0x10,0x7c,0x04,0xc1,0x57, +0x11,0xfc,0x37,0x42,0x38,0x84,0xb4,0x44,0x48,0x5b,0x84,0x58, +0x22,0xa4,0x37,0x42,0x1c,0x10,0x32,0x08,0x21,0xae,0x08,0xf1, +0x46,0x88,0x3f,0x42,0x62,0x11,0x72,0x1d,0x21,0xf7,0x11,0xf2, +0x07,0x46,0x1a,0x61,0xa4,0x35,0x46,0x3a,0x60,0xe4,0x10,0x8c, +0xf4,0xc4,0xc8,0x91,0x18,0x59,0x89,0x91,0xbb,0x31,0xf2,0x04, +0x46,0x5e,0xc7,0xc8,0x1f,0x11,0xda,0x01,0xa1,0x83,0x11,0x1a, +0x8e,0xd0,0x33,0x08,0x7d,0x81,0xd0,0xdf,0x30,0xaa,0x3f,0x46, +0x95,0x60,0xd4,0x61,0x8c,0xba,0x84,0x51,0x3f,0x63,0xb4,0x1c, +0xa3,0x79,0x8c,0xf6,0xc6,0xe8,0x51,0x18,0x3d,0x05,0xa3,0x93, +0x31,0xfa,0x34,0x46,0xbf,0xc7,0x18,0x05,0xc6,0x04,0x60,0x4c, +0x1a,0xc6,0x2c,0xc7,0x98,0xb3,0x18,0xf3,0x18,0x63,0x3e,0x60, +0xac,0x11,0xc6,0xb6,0xc6,0x58,0x2b,0x8c,0x75,0xc4,0xd8,0x40, +0x8c,0x4d,0xc2,0xd8,0x74,0x8c,0xdd,0x8b,0xb1,0xdf,0x61,0xec, +0x69,0x8c,0xe3,0x31,0xae,0x13,0xc6,0xd9,0x60,0x5c,0x01,0xc6, +0xad,0xc7,0xb8,0xbd,0x18,0xdf,0x10,0xe3,0x83,0x30,0x7e,0x01, +0xc6,0x97,0x61,0xfc,0x53,0x4c,0xd0,0x60,0x82,0x17,0x26,0x2c, +0xc6,0x84,0x0a,0x4c,0x38,0x87,0x89,0x0d,0x31,0x71,0x08,0x26, +0x4e,0xc4,0xc4,0x12,0x4c,0x5c,0x83,0x89,0x87,0x30,0xf1,0x38, +0x26,0x5e,0xc3,0xc4,0x67,0x98,0xf8,0x0a,0x93,0x9a,0x61,0x92, +0x23,0x26,0x85,0x62,0x52,0x3e,0x26,0x9d,0xc4,0xa4,0x9f,0x30, +0xe9,0x6f,0x4c,0x76,0xc4,0xe4,0x48,0x4c,0x5e,0x84,0xc9,0x65, +0x98,0xbc,0x1b,0x93,0x8f,0x60,0xf2,0x65,0x4c,0xae,0xc3,0x94, +0x4e,0x98,0x62,0x83,0x29,0x43,0x31,0x65,0x38,0xa6,0x14,0x60, +0xca,0x16,0x4c,0xb9,0x88,0x29,0x6f,0x10,0xa6,0x42,0x58,0x67, +0x84,0x85,0x21,0x2c,0x1f,0x61,0xcb,0x10,0x76,0x0a,0x53,0x79, +0x4c,0x75,0xc1,0xd4,0x72,0x4c,0xbd,0x88,0x69,0x46,0x98,0xd6, +0x0a,0xd3,0xec,0x31,0xcd,0x15,0xd3,0xa6,0x62,0x5a,0x16,0xa6, +0xed,0xc5,0xb4,0x27,0x98,0xf6,0x12,0xe1,0x3d,0x10,0x1e,0x83, +0xf0,0x52,0x84,0x1f,0x45,0xf8,0x9f,0x88,0xe0,0x11,0xe1,0x80, +0x08,0x57,0x44,0x8c,0x46,0xc4,0x3c,0x44,0xac,0x44,0xc4,0x59, +0x4c,0x07,0xa6,0x3b,0x62,0x7a,0x24,0xa6,0xcf,0xc7,0xf4,0x23, +0x98,0xfe,0x06,0xd3,0x09,0x66,0xb4,0xc0,0x8c,0x9e,0x98,0x31, +0x0c,0x33,0xe6,0x62,0x46,0x0d,0x66,0x3c,0xc4,0x8c,0x37,0x98, +0xa1,0xc3,0xcc,0x86,0x98,0x69,0x89,0x99,0xf3,0x30,0x73,0x17, +0x66,0x5e,0xc5,0xcc,0x27,0x98,0xf9,0x1b,0x22,0xdb,0x20,0xb2, +0x0b,0x22,0xfb,0x21,0x72,0x3c,0x22,0x13,0x10,0x99,0x87,0xc8, +0xb5,0x88,0x3c,0x8f,0xc8,0x2b,0x88,0xbc,0x85,0x59,0xa6,0x98, +0x65,0x87,0x59,0xc3,0x30,0x6b,0x1a,0x66,0xe5,0x61,0x56,0x11, +0x66,0xad,0xc2,0xac,0x7b,0x98,0xf5,0x33,0xa2,0x9a,0x21,0xaa, +0x17,0xa2,0xfa,0x21,0xca,0x0f,0x51,0x63,0x10,0x15,0x81,0xa8, +0x2c,0x44,0x6d,0x47,0xd4,0x43,0x44,0x37,0x40,0x74,0x13,0x44, +0xf7,0x40,0xf4,0x00,0x44,0x7b,0x23,0xda,0x1f,0xd1,0xb3,0x11, +0x9d,0x8e,0xe8,0xb9,0x88,0x2e,0x42,0x74,0x05,0xa2,0x8f,0x20, +0xfa,0x3e,0xa2,0x9f,0x20,0xfa,0x15,0x66,0x6b,0x31,0x3b,0x14, +0xb3,0x4b,0x31,0xfb,0x24,0x66,0xdf,0xc5,0xec,0x5f,0x31,0xfb, +0x1f,0xc4,0xf0,0x88,0xe9,0x8a,0x18,0x1b,0xc4,0x84,0x22,0x66, +0x39,0x62,0xca,0x11,0xb3,0x05,0x31,0x3b,0x11,0x73,0x04,0x31, +0x97,0x11,0xf3,0x08,0x31,0x6f,0x11,0xf3,0x07,0x62,0x3e,0x61, +0x8e,0x39,0xe6,0x0c,0xc1,0x9c,0x00,0xcc,0xc9,0xc4,0x9c,0x02, +0xcc,0x59,0x87,0x39,0xa7,0x31,0xe7,0x57,0xcc,0x11,0x30,0xe7, +0x13,0x62,0x3b,0x22,0xb6,0x27,0x62,0x87,0x21,0xd6,0x17,0xb1, +0x93,0x11,0x9b,0x8c,0xd8,0x42,0xc4,0xae,0x47,0xec,0x56,0xc4, +0x3e,0x43,0x9c,0x0a,0x71,0xf6,0x88,0xf3,0x44,0x5c,0x12,0xe2, +0xe6,0x23,0x6e,0x29,0xe2,0x2a,0x10,0x57,0x83,0xb8,0xf3,0x88, +0xab,0x43,0x7c,0x03,0xc4,0x37,0x46,0x7c,0x2b,0xc4,0x6b,0x10, +0xdf,0x1d,0xf1,0x5e,0x88,0x0f,0x41,0x7c,0x3c,0xe2,0xb7,0x21, +0xfe,0x12,0xe2,0xdf,0x20,0xfe,0x6f,0x24,0x34,0x45,0x82,0x39, +0x12,0xba,0x20,0xc1,0x16,0x09,0x5e,0x48,0x08,0x46,0xc2,0x24, +0x24,0xcc,0x44,0x42,0x29,0x12,0x6a,0x90,0x70,0x18,0x09,0x4f, +0x90,0xf0,0x07,0x12,0x81,0xc4,0x96,0x48,0xec,0x84,0x44,0x7b, +0x24,0x0e,0x47,0x62,0x38,0x12,0x4b,0x91,0xb8,0x1e,0x89,0x47, +0x90,0xf8,0x1c,0x89,0x6f,0x90,0xf8,0x37,0x92,0x1a,0x23,0xc9, +0x02,0x49,0xbd,0x90,0xe4,0x82,0xa4,0x00,0x24,0x85,0x23,0x29, +0x1a,0x49,0x49,0x48,0xca,0x46,0xd2,0x12,0x24,0x95,0x20,0x69, +0x0f,0x92,0xee,0x23,0xe9,0x2d,0x92,0x1b,0x20,0xb9,0x31,0x92, +0x95,0x48,0x56,0x23,0xb9,0x1f,0x92,0x3d,0x90,0x1c,0x80,0xe4, +0xf1,0x48,0x8e,0x45,0x72,0x1e,0x92,0x97,0x22,0x79,0x2d,0x92, +0xf7,0x21,0xf9,0x02,0x92,0x1f,0x22,0xf9,0x05,0x92,0x3f,0x20, +0xa5,0x21,0x52,0x9a,0x21,0x45,0x8d,0x94,0x9e,0x48,0x19,0x82, +0x94,0x00,0xa4,0x84,0x21,0x25,0x01,0x29,0xf9,0x48,0x29,0x41, +0xca,0x3a,0xa4,0xec,0x42,0xca,0x71,0xa4,0x5c,0x40,0xca,0x7d, +0xa4,0x3c,0x41,0xca,0x5b,0xa4,0xfc,0x8d,0x54,0x19,0x52,0x3b, +0x21,0xd5,0x1b,0xa9,0xd3,0x91,0x9a,0x88,0xd4,0x4c,0xa4,0x16, +0x22,0xb5,0x1a,0xa9,0x3b,0x91,0x7a,0x10,0xa9,0xe7,0x90,0x7a, +0x0b,0xa9,0x4f,0x91,0xfa,0x07,0xd2,0xe4,0x48,0x53,0x22,0xad, +0x13,0xd2,0xba,0x23,0xcd,0x0e,0x69,0x43,0x91,0x16,0x84,0xb4, +0x69,0x48,0x4b,0x42,0xda,0x7c,0xa4,0xad,0x46,0xda,0x66,0xa4, +0x1d,0x42,0xda,0x45,0xa4,0xdd,0x42,0xda,0x7d,0xa4,0xfd,0x8e, +0x34,0x01,0x69,0x9f,0x90,0x2e,0x47,0x7a,0x0b,0xa4,0x9b,0x23, +0xbd,0x13,0xd2,0x7b,0x23,0xdd,0x09,0xe9,0x2e,0x48,0x1f,0x8e, +0xf4,0x20,0xa4,0x4f,0x44,0x7a,0x24,0xd2,0x93,0x90,0x9e,0x89, +0xf4,0x7c,0xa4,0x17,0x23,0xbd,0x0a,0xe9,0x1b,0x90,0xbe,0x07, +0xe9,0x47,0x90,0x7e,0x11,0xe9,0x77,0x91,0xfe,0x0b,0xd2,0xff, +0x42,0x7a,0x3d,0x32,0x4c,0x90,0xa1,0x46,0x86,0x15,0x32,0xfa, +0x22,0x63,0x08,0x32,0x7c,0x91,0x11,0x82,0x8c,0x49,0xc8,0x88, +0x44,0x46,0x22,0x32,0x72,0x91,0xb1,0x14,0x19,0x15,0xc8,0xa8, +0x41,0xc6,0x4e,0x64,0x1c,0x41,0xc6,0x05,0x64,0xdc,0x40,0xc6, +0x8f,0xc8,0xf8,0x19,0x19,0x7f,0x21,0xb3,0x01,0x32,0x15,0xc8, +0x34,0x47,0x66,0x3b,0x64,0x5a,0x23,0xb3,0x0f,0x32,0x07,0x20, +0xd3,0x1d,0x99,0x01,0xc8,0x1c,0x87,0xcc,0x70,0x64,0x46,0x23, +0x33,0x15,0x99,0xf3,0x91,0xb9,0x1c,0x99,0x95,0xc8,0x5c,0x8f, +0xcc,0x5a,0x64,0x1e,0x40,0xe6,0x59,0x64,0xde,0x44,0xe6,0x8f, +0xc8,0x7c,0x8d,0xcc,0x0f,0xc8,0xa4,0xc8,0x6a,0x88,0xac,0x66, +0xc8,0x32,0x43,0x96,0x16,0x59,0x56,0xc8,0xb2,0x43,0x56,0x3f, +0x64,0x0d,0x43,0xd6,0x08,0x64,0x8d,0x44,0xd6,0x14,0x64,0x45, +0x23,0x2b,0x15,0x59,0x39,0xc8,0x5a,0x82,0xac,0x52,0x64,0xad, +0x46,0xd6,0x26,0x64,0xed,0x46,0xd6,0x11,0x64,0x9d,0x43,0xd6, +0x0d,0x64,0x3d,0x40,0xd6,0x0b,0x64,0xbd,0x43,0xd6,0xdf,0xc8, +0xfa,0x07,0xd9,0x8d,0x90,0xdd,0x02,0xd9,0x16,0xc8,0xee,0x88, +0xec,0xee,0xc8,0xb6,0x43,0xf6,0x20,0x64,0x7b,0x22,0x3b,0x08, +0xd9,0x13,0x90,0x1d,0x8e,0xec,0x68,0x64,0x27,0x22,0x3b,0x13, +0xd9,0xf3,0x91,0xbd,0x14,0xd9,0x65,0xc8,0xae,0x46,0xf6,0x16, +0x64,0xef,0x41,0xf6,0x11,0x64,0x9f,0x45,0xf6,0x35,0x64,0xdf, +0x41,0xf6,0x63,0x64,0xbf,0x46,0xf6,0xef,0xc8,0xd6,0x21,0xfb, +0x1f,0xe4,0x34,0x46,0x8e,0x29,0x72,0xcc,0x91,0xd3,0x11,0x39, +0x3d,0x90,0xe3,0x80,0x1c,0x67,0xe4,0x78,0x22,0xc7,0x1f,0x39, +0xa3,0x90,0x33,0x01,0x39,0x33,0x90,0x33,0x07,0x39,0x49,0xc8, +0xc9,0x46,0x4e,0x01,0x72,0x96,0x23,0xa7,0x12,0x39,0xeb,0x91, +0xb3,0x15,0x39,0x7b,0x91,0x73,0x14,0x39,0xe7,0x90,0x73,0x1d, +0x39,0x77,0x91,0xf3,0x04,0x39,0xaf,0x91,0xf3,0x1e,0x39,0x04, +0x39,0xff,0x20,0x97,0x43,0xae,0x29,0x72,0xdb,0x20,0x57,0x8b, +0xdc,0xae,0xc8,0xed,0x85,0x5c,0x07,0xe4,0x0e,0x42,0xae,0x0b, +0x72,0xbd,0x90,0x1b,0x84,0xdc,0xf1,0xc8,0x9d,0x8a,0xdc,0x48, +0xe4,0xc6,0x22,0x37,0x05,0xb9,0xd9,0xc8,0xcd,0x47,0xee,0x52, +0xe4,0x96,0x20,0xb7,0x0a,0xb9,0x35,0xc8,0xdd,0x8a,0xdc,0xdd, +0xc8,0x3d,0x84,0xdc,0x53,0xc8,0xbd,0x84,0xdc,0x5b,0xc8,0x7d, +0x80,0xdc,0xe7,0xc8,0x7d,0x8b,0xdc,0x8f,0xc8,0xad,0x43,0x9e, +0x11,0xf2,0x14,0xc8,0x6b,0x85,0x3c,0x35,0xf2,0x3a,0x23,0xaf, +0x27,0xf2,0xec,0x90,0x37,0x00,0x79,0xc3,0x90,0xe7,0x85,0x3c, +0x7f,0xe4,0x85,0x22,0x6f,0x02,0xf2,0xa6,0x21,0x2f,0x12,0x79, +0xa9,0xc8,0x5b,0x80,0xbc,0x33,0xc8,0xbb,0x89,0xbc,0xa7,0xc8, +0xfb,0x15,0x73,0x9b,0x61,0xae,0x1a,0x73,0xbb,0x61,0xae,0x3b, +0xe6,0x06,0x60,0xee,0x44,0xcc,0x9d,0x81,0xb9,0xc9,0x98,0x9b, +0x8f,0xb9,0x45,0x98,0xbb,0x13,0x73,0xcf,0x63,0xee,0x23,0xcc, +0xeb,0x86,0x79,0xab,0x31,0x6f,0x0b,0xe6,0xed,0xc7,0xfc,0xa6, +0x98,0xdf,0x1d,0xf3,0x87,0x61,0xfe,0x28,0xcc,0xdf,0x8b,0xf9, +0x37,0x30,0xff,0x0d,0xf2,0xbb,0x21,0xdf,0x15,0xf9,0x59,0xc8, +0x5f,0x8a,0xfc,0xcd,0xc8,0x3f,0x88,0xfc,0x53,0xc8,0xbf,0x82, +0xfc,0xc7,0xc8,0xff,0x15,0xf9,0x75,0x58,0x10,0x84,0x05,0x53, +0xb1,0x20,0x06,0x0b,0x8a,0xb0,0x60,0x1d,0x16,0x1c,0xc1,0x82, +0xb3,0x58,0xf0,0x08,0x0b,0x04,0x14,0x38,0xa3,0x20,0x04,0x05, +0x93,0x51,0x10,0x87,0x82,0x6c,0x14,0x14,0xa3,0x60,0x3f,0x0a, +0xae,0xa0,0xe0,0x01,0x16,0x36,0xc3,0xc2,0x00,0x2c,0x5c,0x87, +0x85,0xb7,0xb1,0xf0,0x67,0x2c,0xac,0xc3,0x22,0x0e,0x8b,0xfa, +0x62,0x91,0x03,0x16,0xf9,0x62,0xd1,0x28,0x2c,0x8a,0xc0,0xa2, +0x2c,0x2c,0x2a,0xc4,0xa2,0xe3,0x58,0xf4,0x0f,0x16,0x37,0xc2, +0xe2,0x96,0x58,0xdc,0x06,0x8b,0x3b,0x61,0x71,0x5f,0x2c,0x1e, +0x85,0xc5,0x53,0xb1,0x38,0x01,0x8b,0x8f,0x62,0x89,0x31,0x96, +0x74,0xc6,0x92,0xde,0x58,0xe2,0x8e,0x25,0x59,0x58,0xb2,0x1d, +0x4b,0x1e,0x60,0x69,0x47,0x2c,0xed,0x8b,0xa5,0x39,0x58,0xba, +0x02,0x4b,0x4f,0x60,0xe9,0x55,0x14,0xca,0x51,0xd8,0x1a,0x85, +0x3d,0x51,0x18,0x83,0xc2,0x04,0x14,0xe6,0xa1,0xb0,0x14,0x85, +0x1b,0x50,0xb8,0x1b,0xcb,0x80,0x65,0x4e,0x58,0xe6,0x8e,0x65, +0xe1,0x58,0x56,0x82,0x65,0x07,0xb0,0xec,0x0a,0x96,0xdd,0xc4, +0xb2,0x47,0x58,0xf6,0x1c,0xcb,0x7e,0x47,0x51,0x13,0x14,0x59, +0xa2,0xa8,0x27,0x8a,0x7c,0x51,0x14,0x8b,0xa2,0x4c,0x14,0x55, +0xa1,0x68,0x37,0x8a,0xde,0x63,0x39,0xb0,0xdc,0x0f,0xcb,0x13, +0xb0,0xbc,0x14,0xcb,0xb7,0x63,0xf9,0x49,0x2c,0x3f,0x87,0x15, +0x46,0x58,0xd1,0x08,0x2b,0xba,0x60,0xc5,0x04,0xac,0x48,0xc7, +0x8a,0x4a,0xac,0x58,0x87,0xe2,0x66,0x28,0xee,0x80,0x62,0x7b, +0x14,0xfb,0xa2,0x78,0x39,0x8a,0x6f,0xa3,0xa4,0x09,0x4a,0x78, +0x94,0x74,0x44,0x49,0x24,0x4a,0x2a,0x50,0xb2,0x03,0x25,0x2f, +0x51,0xda,0x15,0xa5,0x53,0x51,0x3a,0x0b,0xa5,0xab,0x50,0x5a, +0x87,0xb2,0x66,0x28,0xeb,0x85,0x32,0x7f,0x94,0x4d,0x40,0xd9, +0x74,0x94,0xad,0x41,0x59,0x2d,0xca,0xbe,0x43,0xd9,0x6f,0x58, +0x39,0x0e,0x2b,0xe3,0xb0,0x32,0x13,0x2b,0x97,0x60,0xe5,0x36, +0x94,0x77,0x46,0xf9,0x1c,0x94,0xcf,0x47,0x79,0x29,0xca,0x05, +0x54,0x70,0xa8,0x68,0x83,0x0a,0x47,0x54,0x24,0xa1,0x22,0x17, +0x15,0x8b,0xfe,0x17,0x05,0x67,0x19,0x95,0x05,0xc3,0x6c,0xd1, +0xd9,0x03,0x48,0xb7,0xdd,0x62,0x77,0x77,0x77,0xb7,0xd8,0xdd, +0xdd,0xdd,0xa2,0x62,0x37,0x82,0x12,0xd2,0xdd,0x3c,0x74,0xaa, +0x88,0xad,0xaf,0xdd,0xad,0xd8,0xdd,0x0a,0xea,0xbd,0xdf,0xfc, +0xdc,0x73,0xd6,0xfc,0x9f,0x33,0xb3,0x8e,0x78,0x05,0x88,0x57, +0x82,0x78,0x9d,0x10,0xaf,0x57,0xe2,0x55,0x20,0xde,0xc6,0xe2, +0x6d,0x29,0xde,0x1d,0xc5,0x7b,0xa8,0x78,0xbb,0x8b,0xf7,0x55, +0xf1,0x31,0x11,0x9f,0x4a,0xe2,0xd3,0x4c,0x7c,0x66,0x8b,0x8f, +0x8b,0xf8,0xec,0x16,0x9f,0x20,0xf1,0x39,0x2d,0x3e,0x37,0xc5, +0xe7,0x99,0xf8,0xbc,0x96,0x23,0x45,0xe4,0x48,0x4d,0x39,0x52, +0x5f,0x8e,0xb4,0x94,0x23,0x9b,0xe4,0x48,0x82,0x1c,0x39,0x2e, +0x47,0xde,0x88,0x6f,0x51,0xf1,0xed,0x21,0xbe,0xab,0xc5,0xd7, +0x43,0x7c,0x7d,0xc5,0x37,0x42,0x7c,0xcf,0x89,0xef,0x43,0xf1, +0x33,0x11,0xbf,0x0a,0xe2,0x37,0x48,0xfc,0xc6,0x89,0xdf,0x02, +0xf1,0x73,0x15,0x3f,0x1f,0xf1,0x0b,0x14,0xbf,0x08,0xf1,0x8b, +0x15,0xbf,0x3b,0xe2,0x97,0x2f,0x7e,0x85,0xe2,0x6f,0x2a,0xfe, +0x4e,0xe2,0x3f,0x51,0xfc,0xe7,0x88,0xff,0x4a,0xf1,0x0f,0x16, +0xff,0x18,0xf1,0xbf,0x22,0xfe,0x4f,0xc5,0xff,0xad,0x04,0x20, +0x01,0x56,0x12,0xe0,0x24,0x01,0x2d,0x24,0xa0,0x8f,0x04,0x4c, +0x95,0x80,0xf5,0x12,0xe0,0x2e,0x01,0x09,0x12,0x70,0x5c,0x02, +0xce,0x4a,0xc0,0x4d,0x09,0xf8,0x2c,0x01,0x85,0x12,0xe8,0x28, +0x81,0x75,0x24,0x70,0xb0,0x04,0x8e,0x94,0xc0,0x69,0x12,0xb8, +0x42,0x02,0xf7,0x4b,0xa0,0xa7,0x04,0x26,0x4a,0xe0,0x29,0x09, +0xbc,0x24,0x81,0xf7,0x24,0xf0,0xb5,0x04,0x21,0x41,0x25,0x25, +0xa8,0x8e,0x04,0x35,0x96,0xa0,0xa1,0x12,0x34,0x5e,0x82,0x66, +0x48,0xd0,0x06,0x09,0xda,0x2f,0x41,0x5e,0x12,0x14,0x29,0x41, +0x49,0x12,0x94,0x29,0x41,0xb9,0x12,0x74,0x51,0x82,0x1e,0x48, +0x50,0xbe,0x04,0xbd,0x97,0xa0,0xbf,0x12,0xec,0x20,0xc1,0xe5, +0x24,0xb8,0x85,0x04,0x77,0x97,0xe0,0xe1,0x12,0x3c,0x5d,0x82, +0x17,0x4a,0xf0,0x36,0x09,0xf6,0x93,0xe0,0x14,0x09,0xbe,0x22, +0xc1,0xcf,0x25,0xf8,0xb7,0x84,0x58,0x4a,0x88,0xbd,0x84,0x38, +0x49,0x48,0x03,0x09,0x69,0x2f,0x21,0x63,0x24,0x64,0xba,0x84, +0xcc,0x93,0x90,0xcd,0x12,0x72,0x48,0x42,0x82,0x24,0x24,0x4e, +0x42,0x8e,0x49,0xc8,0x55,0x09,0x79,0x20,0x21,0xaf,0x24,0xa4, +0x40,0x42,0x1d,0x24,0xb4,0x94,0x84,0x56,0x94,0xd0,0x86,0x12, +0xda,0x59,0x42,0xfb,0x48,0xe8,0x08,0x09,0x9d,0x28,0xa1,0xcb, +0x24,0x74,0xa7,0x84,0xee,0x97,0xd0,0x23,0x12,0x1a,0x25,0xa1, +0x49,0x12,0x7a,0x42,0x42,0x2f,0x48,0xe8,0x03,0x09,0x7d,0x27, +0xa1,0x85,0x12,0x66,0x27,0x61,0xd5,0x25,0xac,0x99,0x84,0xf5, +0x94,0xb0,0x41,0x12,0x36,0x45,0xc2,0x66,0x4b,0xd8,0x12,0x09, +0xdb,0x20,0x61,0xfb,0x25,0xcc,0x47,0xc2,0x22,0x24,0x2c,0x43, +0xc2,0xce,0x4b,0xd8,0x6d,0x09,0x7b,0x22,0x61,0x3f,0x25,0xbc, +0x88,0x84,0x57,0x90,0xf0,0xaa,0x12,0xde,0x4a,0xc2,0x7b,0x4b, +0xf8,0x28,0x09,0x5f,0x24,0xe1,0xdb,0x24,0xdc,0x43,0xc2,0x43, +0x25,0x3c,0x4e,0xc2,0xd3,0x25,0xfc,0x8a,0x84,0x3f,0x94,0xf0, +0x37,0xff,0xbb,0xba,0x44,0xd8,0x48,0x44,0x59,0x89,0xa8,0x25, +0x11,0x9d,0x25,0x62,0xa8,0x44,0x8c,0x93,0x88,0xd9,0x12,0xb1, +0x42,0x22,0x5c,0x24,0x62,0x8f,0x44,0x78,0x4a,0x44,0x94,0x44, +0x64,0x4b,0xc4,0x25,0x89,0x78,0x22,0x11,0x1f,0x25,0x12,0x89, +0xb4,0x94,0xc8,0x62,0x12,0x59,0x53,0x22,0x5b,0x49,0x64,0x6f, +0x89,0x1c,0x26,0x91,0xe3,0x24,0x72,0x86,0x44,0xae,0x91,0xc8, +0x8d,0x12,0x79,0x40,0x22,0x03,0x25,0x32,0x56,0x22,0x33,0x24, +0x32,0x4f,0x22,0xaf,0x4b,0xe4,0x3d,0x89,0xcc,0x97,0xc8,0x4f, +0x12,0xf9,0x47,0xa2,0xcc,0x25,0xaa,0xa4,0x44,0x55,0x91,0xa8, +0xfa,0x12,0xd5,0x4a,0xa2,0xba,0x4a,0x54,0x7f,0x89,0x1a,0x21, +0x51,0x93,0x24,0x6a,0xae,0x44,0x2d,0x92,0xa8,0x75,0x12,0xb5, +0x43,0xa2,0xdc,0x24,0xca,0x4f,0xa2,0xa2,0x24,0x2a,0x49,0xa2, +0x32,0x24,0xea,0x84,0x44,0x5d,0x91,0xa8,0x47,0x12,0xf5,0x5e, +0xa2,0x0a,0x25,0xba,0x8c,0x44,0xd7,0x95,0xe8,0x96,0x12,0xdd, +0x55,0xa2,0xfb,0x4b,0xf4,0x08,0x89,0x9e,0x24,0xd1,0x73,0x24, +0x7a,0x99,0x44,0x6f,0x92,0xe8,0x7d,0x12,0x7d,0x48,0xa2,0xfd, +0x25,0x3a,0x4a,0xa2,0x0d,0x12,0x9d,0x2d,0xd1,0x67,0x24,0xfa, +0x9a,0x44,0x3f,0x94,0xe8,0xd7,0x12,0xfd,0x4d,0x62,0x44,0x62, +0x2c,0x25,0xa6,0xb8,0xc4,0x54,0x92,0x98,0x3a,0x12,0xd3,0x54, +0x62,0xda,0x49,0x4c,0x2f,0x89,0x19,0x24,0x31,0x63,0x24,0x66, +0x86,0xc4,0x2c,0x91,0x98,0x0d,0x12,0xb3,0x4b,0x62,0x0e,0x4b, +0x4c,0xb0,0xc4,0xc4,0x4b,0x4c,0x96,0xc4,0x9c,0x91,0x98,0xeb, +0x12,0xf3,0x40,0x62,0x5e,0x48,0xcc,0x07,0x89,0xf9,0x25,0xb1, +0x26,0x12,0x6b,0x2b,0xb1,0xa5,0x24,0xb6,0xb2,0xc4,0xd6,0x95, +0xd8,0xe6,0x12,0xdb,0x56,0x62,0xbb,0x4b,0xec,0x40,0x89,0x1d, +0x25,0xb1,0x53,0x24,0x76,0x9e,0xc4,0xae,0x90,0xd8,0x8d,0x12, +0xbb,0x4b,0x62,0x3d,0x24,0xd6,0x5f,0x62,0x23,0x25,0x36,0x49, +0x62,0x73,0x24,0xf6,0x8c,0xc4,0x5e,0x95,0xd8,0x7b,0x12,0x9b, +0x2f,0xb1,0xef,0x25,0xf6,0x87,0xc4,0x89,0xc4,0x99,0x4b,0x9c, +0x83,0xc4,0x95,0x95,0xb8,0x5a,0x12,0xd7,0x54,0xe2,0x3a,0x48, +0x5c,0x6f,0x89,0x1b,0x2a,0x71,0x13,0x24,0x6e,0xb6,0xc4,0x2d, +0x96,0xb8,0xf5,0x12,0xb7,0x53,0xe2,0xdc,0x24,0xce,0x5f,0xe2, +0x22,0x24,0xce,0x20,0x71,0xe9,0x12,0x97,0x2b,0x71,0xe7,0x25, +0xee,0xba,0xc4,0x3d,0x90,0xb8,0x17,0x12,0xf7,0x51,0xe2,0x7e, +0x49,0xbc,0x4a,0xbc,0xa5,0xc4,0x17,0x95,0xf8,0x72,0x12,0x5f, +0x4d,0xe2,0xeb,0x4b,0x7c,0x0b,0x89,0xef,0x28,0xf1,0xbd,0x24, +0x7e,0xb0,0xc4,0x8f,0x96,0xf8,0x29,0x12,0x3f,0x57,0xe2,0x97, +0x49,0xfc,0x7a,0x89,0xdf,0x26,0xf1,0x7b,0x24,0xfe,0x90,0xc4, +0xfb,0x4b,0x7c,0x84,0xc4,0x1b,0x24,0x3e,0x4b,0xe2,0x4f,0x49, +0xfc,0x65,0x89,0xbf,0x2b,0xf1,0xf9,0x12,0xff,0x41,0xe2,0x7f, +0x49,0x82,0x91,0x24,0x58,0x4b,0x42,0x09,0x49,0xa8,0x20,0x09, +0xd5,0x25,0xa1,0xbe,0x24,0xb4,0x96,0x84,0xee,0x92,0x30,0x58, +0x12,0xc6,0x49,0xc2,0x34,0x49,0x58,0x28,0x09,0x6b,0x24,0x61, +0xab,0x24,0x1c,0x90,0x84,0x23,0x92,0x10,0x2e,0x09,0x89,0x92, +0x90,0x23,0x09,0x67,0x25,0xe1,0xaa,0x24,0xdc,0x93,0x84,0x7c, +0x49,0x78,0x2f,0x09,0x3f,0xc4,0x20,0x62,0x30,0x17,0x83,0x83, +0x18,0xca,0x88,0xa1,0x8a,0x18,0xea,0x8a,0xa1,0x99,0x18,0xda, +0x8b,0xa1,0x87,0x18,0x06,0x8a,0x61,0xa4,0x18,0x26,0x89,0x61, +0xb6,0x18,0x96,0x88,0x61,0xad,0x18,0xb6,0x88,0x61,0xaf,0x18, +0x0e,0x8b,0x21,0x40,0x0c,0x91,0x62,0x48,0x14,0x43,0x96,0x18, +0xf2,0xc4,0x70,0x41,0x0c,0xd7,0xc5,0x70,0x5f,0x0c,0xf9,0x62, +0x78,0x27,0x86,0x6f,0x62,0xf8,0x23,0x89,0x26,0x92,0x68,0x2d, +0x89,0xc5,0x24,0xb1,0xb4,0x24,0x3a,0x49,0x62,0x2d,0x49,0x6c, +0x24,0x89,0xad,0x24,0xb1,0x93,0x24,0xf6,0x92,0xc4,0x81,0x92, +0x38,0x5a,0x12,0xa7,0x4a,0xe2,0x7c,0x49,0x5c,0x29,0x89,0x9b, +0x24,0x71,0x87,0x24,0xee,0x97,0xc4,0xc3,0x92,0xe8,0x27,0x89, +0xa1,0x92,0x18,0x23,0x89,0x49,0x92,0x98,0x29,0x89,0x67,0x25, +0xf1,0x96,0x24,0x3e,0x92,0xc4,0x97,0x92,0xf8,0x51,0x12,0x7f, +0x4a,0x92,0x48,0x92,0x99,0x24,0xd9,0x49,0x52,0x49,0x49,0xaa, +0x28,0x49,0x35,0x24,0xa9,0x81,0x24,0xb5,0x90,0xa4,0x0e,0x92, +0xd4,0x43,0x92,0x06,0x48,0xd2,0x70,0x49,0x1a,0x2f,0x49,0xd3, +0x25,0x69,0xbe,0x24,0x2d,0x97,0xa4,0xf5,0x92,0xb4,0x55,0x92, +0x76,0x4b,0x92,0x87,0x24,0xf9,0x49,0x52,0xb8,0x24,0x25,0x48, +0x52,0x86,0x24,0x1d,0x97,0xa4,0x33,0x92,0x74,0x49,0x92,0x6e, +0x4a,0xd2,0x03,0x49,0xca,0x97,0xa4,0xb7,0x92,0xf4,0x45,0x92, +0x7e,0x4b,0x32,0x92,0x6c,0x26,0xc9,0xb6,0x92,0x5c,0x5c,0x92, +0xcb,0x49,0x72,0x15,0x49,0xae,0x2d,0xc9,0x8d,0x24,0x79,0xbf, +0x24,0xbf,0x91,0x94,0x22,0x92,0x62,0x2b,0x29,0x9b,0x25,0xc5, +0x4d,0x52,0x7e,0x48,0x6a,0x1f,0x49,0x1d,0x25,0xa9,0x53,0x25, +0xd5,0x5b,0x52,0x4f,0x4a,0xea,0x35,0x49,0x7d,0x2a,0xa9,0x7f, +0x25,0xcd,0x41,0xd2,0xd6,0x4b,0xda,0x66,0x49,0xf3,0x97,0xb4, +0x57,0x92,0xf6,0x49,0xd2,0x2d,0x24,0xbd,0xb8,0xa4,0x8f,0x95, +0xf4,0x19,0x92,0xbe,0x48,0xd2,0xf7,0x4a,0x7a,0xbc,0xa4,0xa7, +0x4b,0xfa,0x55,0xc9,0x28,0x25,0x19,0x9d,0x25,0x63,0xb7,0x64, +0x78,0x4b,0x46,0x96,0x64,0x9c,0x92,0x8c,0xdb,0x92,0xf1,0x49, +0x32,0xfe,0x48,0xa6,0xa3,0x64,0x96,0x97,0xcc,0x9a,0x92,0xd9, +0x4d,0x32,0x07,0x4a,0xe6,0x78,0xc9,0xf4,0x93,0xcc,0x1c,0xc9, +0x2a,0x25,0x59,0xeb,0x24,0x6b,0x9b,0x64,0x5d,0x92,0xec,0x1a, +0x92,0xbd,0x5e,0xb2,0x63,0x24,0xfb,0x9f,0xe4,0xd8,0x48,0x4e, +0x45,0xc9,0xa9,0x2f,0x39,0xed,0x24,0x67,0xa3,0xe4,0x1c,0x94, +0x9c,0x14,0xc9,0xf9,0x27,0x47,0x2d,0xe5,0x68,0x1f,0x39,0x3a, +0x46,0x8e,0x2e,0x94,0xa3,0x7b,0xe5,0xe8,0x41,0x39,0x9a,0x2a, +0x47,0xef,0xcb,0xd1,0x3f,0x72,0xcc,0x54,0x8e,0x95,0x90,0x63, +0x63,0xe5,0x98,0x9f,0x1c,0xcb,0x97,0x63,0x9f,0xe5,0xb8,0x85, +0x1c,0x77,0x90,0xe3,0x4d,0xe5,0x78,0x57,0x39,0xee,0x27,0xc7, +0x8f,0x49,0xae,0x89,0xe4,0x16,0x95,0xdc,0xd1,0x92,0x3b,0x51, +0x72,0xd7,0x48,0xee,0x3e,0xc9,0x4d,0x96,0xdc,0x0c,0xc9,0xfd, +0x25,0x27,0xac,0xe5,0x44,0x63,0x39,0xd1,0x42,0x4e,0x74,0x96, +0x13,0xfd,0xe4,0xc4,0x70,0x39,0x31,0x53,0x4e,0xac,0x93,0x13, +0x5b,0xe4,0x44,0x94,0x9c,0x78,0x2d,0x79,0x48,0x9e,0x85,0xe4, +0x15,0x95,0xbc,0xba,0x92,0xd7,0x49,0xf2,0xd6,0x4b,0x9e,0xab, +0xe4,0x79,0x49,0x5e,0xa8,0xe4,0xa5,0x48,0xde,0x37,0x39,0x69, +0x26,0x27,0x6d,0xe4,0xe4,0x52,0x39,0x79,0x50,0x4e,0x3e,0x92, +0x93,0x5f,0xe4,0x54,0x51,0x39,0xd5,0x5f,0x4e,0x0d,0x91,0x53, +0xe3,0xe4,0xd4,0x0e,0x39,0x75,0x5d,0x4e,0xbd,0x91,0xd3,0xbd, +0xe4,0xf4,0x70,0x39,0xbd,0x55,0x4e,0xa7,0xca,0x19,0x47,0x39, +0x53,0x55,0xce,0xd4,0x93,0x33,0x1b,0xe4,0xcc,0x4e,0x39,0xf3, +0x47,0xce,0xda,0xc9,0xd9,0x76,0x72,0xb6,0xaf,0x9c,0x1d,0x22, +0x67,0xd7,0xcb,0xd9,0x1d,0x72,0xd6,0x20,0x67,0x3f,0xc8,0xd9, +0xaf,0x72,0xae,0x8a,0x9c,0xeb,0x25,0xe7,0x36,0xcb,0xb9,0xbd, +0x72,0xee,0x84,0x9c,0xb7,0x94,0xf3,0x1d,0xe4,0xfc,0x20,0x39, +0x3f,0x5a,0xce,0x4f,0x91,0xf3,0xfb,0xe4,0xfc,0x15,0x39,0xff, +0x58,0x2e,0xb4,0x96,0x0b,0xae,0x72,0x61,0xaf,0x5c,0xf0,0x93, +0x0b,0x37,0xe4,0x62,0x43,0xb9,0x38,0x4c,0x2e,0x1e,0x96,0x8b, +0x01,0x72,0xf1,0x9a,0xfc,0x67,0x24,0xff,0x0d,0x96,0xff,0x96, +0xca,0x7f,0x3b,0xe5,0xbf,0xab,0x72,0xa9,0xb6,0x5c,0x1a,0x20, +0x97,0xd6,0xc9,0xa5,0xfb,0x72,0xe9,0xa9,0x5c,0xfa,0x28,0x97, +0x1b,0xca,0xe5,0x36,0x72,0x79,0xb4,0x5c,0x9e,0x2a,0x97,0xf7, +0xc8,0xe5,0x83,0x72,0xd9,0x5f,0x2e,0xa7,0xcb,0xe5,0x3c,0xb9, +0x62,0x2b,0x57,0xba,0xcb,0x95,0xb5,0x72,0x65,0xbf,0x5c,0x39, +0x22,0x57,0xc2,0xe5,0xca,0x05,0xb9,0x5a,0x41,0xae,0xd6,0x92, +0xab,0x0b,0xe5,0xea,0x2a,0xb9,0x1a,0x20,0x57,0x53,0xe5,0x6a, +0x9e,0x5c,0xcd,0x97,0x6b,0xc5,0xe5,0xda,0x30,0xb9,0x76,0x44, +0xae,0xbd,0x90,0xeb,0xe6,0x72,0xbd,0x84,0x5c,0xaf,0x21,0xd7, +0x87,0xcb,0xf5,0x89,0x72,0x7d,0xba,0x5c,0x3f,0x28,0xd7,0x33, +0xe5,0x7a,0x81,0xdc,0xa8,0x2f,0x37,0xda,0xc8,0x8d,0xe5,0x72, +0x23,0x41,0x6e,0x3c,0x96,0x9b,0x22,0x37,0xab,0xca,0xcd,0x06, +0x72,0xb3,0xad,0xdc,0xec,0x29,0x37,0x37,0xc9,0xcd,0x9d,0x72, +0xf3,0x90,0xdc,0x3c,0x22,0x37,0x13,0xe4,0xe6,0x0b,0xb9,0x65, +0x23,0xb7,0xba,0xcb,0xad,0x81,0x72,0x6b,0x87,0xdc,0xda,0x2f, +0xb7,0x52,0xe4,0xd6,0x69,0xb9,0xf5,0x5e,0x6e,0x7d,0x93,0x5b, +0x85,0x72,0xdb,0x5c,0x6e,0xd7,0x92,0xdb,0xb3,0xe5,0xb6,0x87, +0xdc,0x4e,0x94,0xdb,0xf9,0x72,0xfb,0xb3,0xdc,0x29,0x2e,0x77, +0x9a,0xcb,0x9d,0x36,0x72,0x67,0x8e,0xdc,0x59,0x2c,0x77,0x56, +0xca,0x9d,0x2d,0x72,0x67,0xbf,0xdc,0x09,0x97,0x3b,0xf7,0xe5, +0xce,0x3f,0xb9,0xdb,0x58,0xee,0x76,0x90,0xbb,0x23,0xe5,0xee, +0x64,0xb9,0xeb,0x26,0x77,0x33,0xe5,0x6e,0x9e,0xdc,0xbd,0x2a, +0x77,0xbf,0xcb,0xbd,0x0e,0x72,0xaf,0x9b,0xdc,0x1b,0x28,0xf7, +0x66,0xc8,0xbd,0xfd,0x72,0xef,0xa6,0xdc,0x7b,0x2a,0xf7,0x8b, +0xc8,0xfd,0x52,0x72,0xbf,0x8a,0xdc,0x6f,0x24,0xf7,0x7b,0xc8, +0xfd,0x61,0x72,0x7f,0x93,0xdc,0x8f,0x97,0xfb,0xe7,0xe4,0x7e, +0x81,0x3c,0x68,0x27,0x0f,0x5c,0xe5,0x41,0x8e,0x3c,0x78,0x2a, +0x0f,0xbe,0xc8,0xc3,0x6a,0xf2,0xb0,0x8e,0x3c,0x1c,0x28,0x0f, +0xa7,0xca,0xc3,0x48,0x79,0x98,0x20,0x0f,0x73,0xe4,0xe1,0x79, +0x79,0xf8,0x4c,0x1e,0xfe,0x91,0x47,0xf6,0xf2,0xa8,0xa7,0x3c, +0xda,0x28,0x8f,0xf6,0xc8,0x23,0x4f,0x79,0x14,0x24,0x8f,0xae, +0xc9,0xa3,0xa7,0xf2,0xb8,0x92,0x3c,0x6e,0x2d,0x8f,0xbb,0xcb, +0xe3,0x49,0xf2,0x78,0x86,0x3c,0x5e,0x26,0x8f,0xd7,0xcb,0xe3, +0x9d,0xf2,0xf8,0xb0,0x3c,0xce,0x95,0x27,0x46,0xf2,0xc4,0x42, +0x9e,0x54,0x91,0x27,0xbd,0xe5,0xc9,0x74,0x79,0xe2,0x27,0x4f, +0x1e,0xc8,0x53,0x6b,0x79,0x5a,0x45,0x9e,0x4e,0x94,0xa7,0x7e, +0xf2,0xd4,0x20,0x4f,0x3f,0xc8,0xd3,0x5f,0xf2,0xac,0xbe,0x3c, +0x1b,0x2c,0xcf,0x46,0xcb,0xb3,0xa9,0xf2,0x2c,0x40,0x9e,0xc5, +0xca,0xb3,0x7c,0xc9,0x17,0xc9,0x2f,0x2e,0xf9,0xd5,0x25,0xbf, +0xad,0xe4,0x0f,0x90,0xfc,0x71,0x92,0xbf,0x57,0xf2,0x0d,0x92, +0x7f,0x57,0xf2,0x9f,0x48,0xfe,0x17,0x79,0x6e,0x25,0xcf,0xcb, +0xca,0xf3,0x66,0xf2,0xbc,0xb3,0x3c,0x5f,0x2d,0xcf,0xbd,0xe4, +0xf9,0x45,0x79,0x5e,0x28,0x2f,0x54,0x5e,0xd4,0x91,0x17,0xfd, +0xe5,0xc5,0x58,0x79,0xb1,0x52,0x5e,0xb8,0xc9,0x8b,0xd3,0xf2, +0xe2,0x83,0xbc,0xf8,0x26,0x2f,0x6d,0xe4,0x65,0x79,0x79,0xd9, +0x44,0x5e,0xf6,0x90,0x97,0x43,0xe5,0xe5,0x78,0x79,0xe9,0x2e, +0x2f,0x03,0xe5,0xe5,0x45,0x79,0xf9,0x5c,0x5e,0xbe,0x95,0x57, +0x95,0xe4,0x55,0x37,0x79,0x35,0x45,0x5e,0xcd,0x93,0x57,0x6b, +0xe5,0xd5,0x36,0x79,0x75,0x44,0x5e,0x9d,0x95,0x57,0x97,0xe4, +0xd5,0x57,0x79,0x6d,0x26,0xaf,0x2b,0xca,0xeb,0x6a,0xf2,0xba, +0xa1,0xbc,0x6e,0x2b,0xaf,0x87,0xca,0xeb,0xb9,0xf2,0x7a,0x95, +0xbc,0xde,0x27,0xaf,0x3d,0xe4,0x75,0x90,0xbc,0x8e,0x96,0xd7, +0x39,0xf2,0xfa,0xba,0xbc,0xfe,0x2d,0x6f,0x8a,0xc9,0x9b,0x06, +0xf2,0xa6,0xb7,0xbc,0x19,0x2f,0x6f,0xd6,0xcb,0x9b,0x48,0x79, +0x93,0x22,0x6f,0x2e,0xc9,0x9b,0xaf,0xf2,0xe6,0xb7,0xbc,0x55, +0x79,0x6b,0x23,0x6f,0x4b,0xcb,0xdb,0xaa,0xf2,0xb6,0x9e,0xbc, +0xed,0x28,0x6f,0x47,0xcb,0xdb,0x99,0xf2,0x76,0xa3,0xbc,0xdd, +0x2d,0x6f,0x03,0xe5,0x6d,0xaa,0xbc,0x3d,0x2a,0x6f,0x6f,0xcb, +0xdb,0xf7,0xf2,0xf6,0x9b,0xbc,0xfd,0x2b,0xef,0xac,0xe5,0x9d, +0x93,0xbc,0x6b,0x29,0xef,0xba,0xcb,0xbb,0xf1,0xf2,0x6e,0xa5, +0xbc,0xdb,0x2c,0xef,0x76,0xcb,0xbb,0x40,0x79,0x77,0x4a,0xde, +0xe5,0xcb,0x7b,0x73,0x79,0x5f,0x53,0xde,0x0f,0x92,0xf7,0x13, +0xe4,0xfd,0x6c,0x79,0xbf,0x44,0xde,0xaf,0x95,0xf7,0xde,0xf2, +0x3e,0x42,0xde,0x5f,0x93,0xf7,0xaf,0xe4,0x83,0xca,0x07,0x07, +0xf9,0xe0,0x24,0x1f,0xea,0xc9,0x87,0x61,0xf2,0x61,0xa6,0x7c, +0x58,0x25,0x1f,0x36,0xc8,0x07,0x37,0xf9,0x10,0x26,0x1f,0x12, +0xe4,0x43,0xa6,0x7c,0xb8,0x2b,0x1f,0x8d,0xe4,0x63,0x71,0xf9, +0x58,0x5e,0x3e,0xd6,0x95,0x8f,0x1d,0xe4,0xe3,0x60,0xf9,0x38, +0x43,0x3e,0x2e,0x91,0x8f,0x3b,0xe5,0xe3,0x21,0xf9,0xe8,0x2b, +0x1f,0x43,0xe4,0x63,0x82,0x7c,0xcc,0x93,0x8f,0xff,0x2f,0x7e, +0x2e,0x1f,0x7f,0xcb,0x27,0x5b,0xf9,0x54,0x53,0x3e,0x35,0x94, +0x4f,0xdd,0xe5,0x53,0x5f,0xf9,0x34,0x41,0x3e,0x2d,0x95,0x4f, +0x3b,0xe4,0x93,0xbb,0x7c,0x0a,0x96,0x4f,0x71,0xf2,0x29,0x5b, +0x3e,0x5d,0x92,0x4f,0xaf,0xe5,0xd3,0x47,0xf9,0xf4,0x5d,0x3e, +0x23,0x9f,0xcd,0xe4,0xb3,0xad,0x7c,0x2e,0x2e,0x9f,0x6b,0xcb, +0xe7,0x86,0xf2,0xb9,0xa3,0x7c,0xee,0x27,0x9f,0x27,0xcb,0xe7, +0xbd,0xf2,0x39,0x45,0x3e,0x9f,0x97,0xcf,0x8f,0xe5,0xf3,0x57, +0xf9,0xfc,0x57,0xbe,0x18,0xcb,0x17,0x1b,0xf9,0x52,0x5d,0xbe, +0x74,0x90,0x2f,0x83,0xe5,0xcb,0x78,0xf9,0xb2,0x54,0xbe,0x6c, +0x93,0x2f,0x1e,0xf2,0x25,0x40,0xbe,0x24,0xcb,0x97,0x2c,0xf9, +0x72,0x51,0xbe,0xdc,0x95,0x2f,0x2f,0xe5,0x4b,0x81,0x7c,0x75, +0x90,0xaf,0xe5,0xe4,0x6b,0x23,0xf9,0xda,0x56,0xbe,0xf6,0x90, +0xaf,0x23,0xe4,0xeb,0x1c,0xf9,0xba,0x58,0xbe,0xee,0x91,0xaf, +0x11,0xf2,0x35,0x4b,0xbe,0x5e,0x92,0xaf,0xf7,0xe4,0xeb,0x1b, +0xf9,0xfa,0x4d,0xbe,0xfe,0x91,0x6f,0x45,0xe5,0x5b,0x55,0xf9, +0xd6,0x46,0xbe,0xf5,0x94,0x6f,0x83,0xe5,0xdb,0x1c,0xf9,0xb6, +0x58,0xbe,0xb9,0xca,0xb7,0x43,0xf2,0x2d,0x42,0xbe,0x65,0xc8, +0xb7,0xf3,0xf2,0xed,0xa7,0x7c,0xb7,0x97,0xef,0x75,0xe4,0x7b, +0x07,0xf9,0x3e,0x54,0xbe,0x8f,0x96,0xef,0x13,0xe5,0xfb,0x72, +0xf9,0xbe,0x49,0xbe,0xef,0x90,0xef,0xde,0xf2,0x3d,0x53,0xbe, +0x9f,0x97,0xef,0x77,0xe5,0xfb,0x17,0xf9,0x81,0xfc,0x28,0x26, +0x3f,0x6a,0xca,0x8f,0xc6,0xf2,0xa3,0xab,0xfc,0x70,0x96,0x1f, +0x63,0xe5,0xc7,0x2c,0xf9,0xb1,0x5e,0x7e,0x1c,0x94,0x1f,0xa1, +0xf2,0x23,0x55,0x7e,0x9c,0x91,0x1f,0x37,0xe4,0xc7,0x3b,0xf9, +0x69,0x2c,0x3f,0xcb,0xc8,0xcf,0x5a,0xf2,0xb3,0xad,0xfc,0xec, +0x2a,0x3f,0xfb,0xc9,0xcf,0xc9,0xf2,0x73,0xa5,0xfc,0xdc,0x21, +0x3f,0xbd,0xe4,0x67,0xb0,0xfc,0x4c,0x93,0x9f,0xb9,0xf2,0xf3, +0xa6,0xfc,0x7c,0x29,0x3f,0x0b,0xe5,0x97,0x91,0xfc,0xb2,0x97, +0x5f,0x25,0xe5,0x57,0x05,0xf9,0x55,0x4d,0x7e,0x35,0x91,0x5f, +0xfd,0xe5,0xd7,0x24,0xf9,0xb5,0x52,0x7e,0x6d,0x97,0x5f,0x9e, +0xf2,0x2b,0x42,0x7e,0xc5,0xca,0xaf,0x14,0xf9,0x75,0x41,0x7e, +0xdd,0x93,0x5f,0x6f,0xe4,0xd7,0x5f,0xf9,0x6d,0x2f,0xbf,0xab, +0xc8,0xef,0xe6,0xf2,0xbb,0x97,0xfc,0x1e,0x23,0xbf,0xa7,0xcb, +0xef,0x65,0xf2,0x7b,0xa7,0xfc,0xf6,0x91,0xdf,0xe1,0xf2,0x3b, +0x51,0x7e,0xa7,0xcb,0xef,0xab,0xf2,0xfb,0xad,0x14,0x98,0x48, +0x41,0x79,0x29,0xa8,0x2a,0x05,0x8d,0xa5,0xa0,0x8d,0x14,0xf4, +0x92,0x82,0x61,0x52,0x30,0x5e,0x0a,0x66,0x49,0xc1,0x4a,0x29, +0xd8,0x26,0x05,0xee,0x52,0xe0,0x27,0x05,0x29,0x52,0x70,0x51, +0x0a,0xf2,0xa5,0xe0,0x9d,0x14,0x14,0x4a,0xa1,0x85,0x14,0xda, +0x49,0xa1,0x93,0x14,0x36,0x91,0xc2,0x6e,0x52,0x38,0x5c,0x0a, +0xa7,0x4a,0xe1,0x62,0x29,0x74,0x95,0xc2,0x43,0x52,0x18,0x21, +0x85,0x99,0x52,0x78,0x51,0x0a,0xef,0x49,0xe1,0x7b,0x29,0xfc, +0x5f,0xc0,0x87,0xfc,0x29,0x2b,0x7f,0x1a,0xc8,0x9f,0xd6,0xf2, +0xa7,0xbb,0xfc,0x19,0x27,0x7f,0x96,0xc9,0x1f,0x5f,0xf9,0x93, +0x24,0x7f,0xce,0xc9,0x9f,0xc7,0xf2,0xe7,0x87,0xfc,0x45,0xfe, +0x16,0x95,0xbf,0x95,0xe5,0x6f,0x7d,0xf9,0xdb,0x4c,0xfe,0x76, +0x97,0xbf,0xc3,0xe5,0xef,0x0c,0xf9,0xbb,0x52,0xfe,0xba,0xc8, +0xdf,0x03,0xf2,0xd7,0x47,0xfe,0x86,0xca,0xdf,0x78,0xf9,0x9b, +0x2e,0x7f,0x6f,0xc9,0xdf,0xd7,0xf2,0xb7,0x40,0xfe,0xd9,0xc9, +0xbf,0xb2,0xf2,0xaf,0xaa,0xfc,0x6b,0x28,0xff,0xda,0xca,0xbf, +0x9e,0xf2,0x6f,0x9c,0xfc,0x9b,0x29,0xff,0x56,0xc8,0xbf,0x0d, +0xf2,0x6f,0x87,0xfc,0x3b,0x24,0xff,0xc2,0xe4,0x5f,0xa2,0xfc, +0xcb,0x90,0x7f,0x67,0xe4,0xdf,0x4d,0xf9,0xf7,0x4c,0xfe,0xbd, +0x97,0x7f,0x05,0xfc,0xef,0x07,0xcb,0x16,0x29,0x8e,0x38,0x21, +0xb5,0x91,0x96,0x48,0x57,0x64,0x00,0x32,0x1e,0x99,0xc9,0xff, +0x5c,0xbc,0xad,0x88,0x07,0x12,0x82,0x24,0x20,0xd9,0xc8,0x59, +0xe4,0x06,0xf2,0x10,0x79,0x8f,0x7c,0xe7,0x7f,0x65,0x09,0xb6, +0x50,0x0a,0x2a,0x41,0x4d,0x68,0x00,0xed,0x60,0x20,0x8c,0x80, +0x49,0x30,0x1b,0x56,0xc0,0x46,0xd8,0x01,0x1e,0x10,0x08,0xe1, +0x60,0x80,0x63,0x70,0x16,0x2e,0xc3,0x43,0x78,0x07,0x3f,0xd1, +0x22,0x68,0x49,0xb4,0x06,0xda,0x0a,0xed,0x83,0x8e,0x45,0x67, +0xa1,0xcb,0xd0,0x8d,0xe8,0x1e,0xf4,0x20,0x1a,0x8c,0x26,0xa0, +0x39,0xe8,0x25,0xf4,0x01,0xfa,0x12,0xfd,0x86,0xfe,0xc3,0xc8, +0x0a,0xa3,0x52,0x18,0x55,0xc3,0xa8,0x0e,0x46,0x2d,0x31,0x6a, +0x8f,0x51,0x1f,0x8c,0x9c,0x31,0x9a,0x88,0xd1,0x1c,0x8c,0x96, +0x62,0xb4,0x06,0xa3,0xad,0x18,0xed,0xc1,0xc8,0x13,0x23,0x3f, +0x8c,0xc2,0x31,0x4a,0xc0,0x28,0x07,0xa3,0x3c,0x8c,0xae,0x63, +0x94,0x8f,0xd1,0x37,0x8c,0x4d,0x30,0x2e,0x86,0x71,0x45,0x8c, +0x6b,0x60,0x5c,0x0f,0xe3,0x0e,0x18,0xf7,0xc1,0xd8,0x19,0xe3, +0x09,0x18,0xcf,0xc1,0x78,0x31,0xc6,0xab,0x31,0xde,0x8c,0xf1, +0x3e,0x8c,0x7d,0x30,0x0e,0xc7,0x38,0x09,0xe3,0x63,0x18,0x9f, +0xc5,0xf8,0x2a,0xc6,0x0f,0x31,0x7e,0x89,0xf1,0x27,0x8c,0x7f, +0x63,0x62,0x84,0x89,0x15,0x26,0x25,0x31,0xa9,0x82,0x49,0x03, +0x4c,0xda,0x60,0xd2,0x03,0x93,0x01,0x98,0x0c,0xc7,0x64,0x02, +0x26,0x33,0x31,0x59,0x84,0xc9,0x6a,0x4c,0x0e,0x62,0x12,0x83, +0x49,0x2e,0x26,0xb7,0x31,0x79,0x8a,0xc9,0x67,0x4c,0xfe,0x52, +0xc4,0x9a,0x22,0x25,0x28,0x52,0x89,0x22,0x35,0x28,0xd2,0x88, +0x22,0x2d,0x28,0xd2,0x89,0x22,0x7d,0x28,0x32,0x94,0x22,0xe3, +0x29,0x32,0x9d,0x22,0xf3,0x28,0xb2,0x9c,0x22,0x1b,0x28,0xb2, +0x9d,0x22,0x07,0x28,0xe2,0x4d,0x91,0x60,0x8a,0xc4,0x50,0x24, +0x95,0x22,0xc7,0x28,0x72,0x9a,0x22,0x97,0x29,0xf2,0x90,0x22, +0xef,0x28,0xf2,0x15,0x53,0xc1,0xd4,0x06,0xd3,0xb2,0x98,0x56, +0xc7,0xb4,0x11,0xa6,0x6d,0x31,0xed,0x81,0xe9,0x60,0x4c,0xc7, +0x62,0x3a,0x03,0xd3,0xc5,0x98,0xae,0xc3,0x74,0x3b,0xa6,0x07, +0x31,0xf5,0xc3,0x34,0x12,0xd3,0x64,0x4c,0xb3,0x31,0x3d,0x83, +0xe9,0x35,0x4c,0xef,0x61,0xfa,0x02,0xd3,0xcf,0x98,0xfe,0xc1, +0xcc,0x0c,0x33,0x47,0xcc,0xca,0x63,0x56,0x13,0xb3,0x26,0x98, +0xb5,0xc7,0xac,0x17,0x66,0x83,0x30,0x1b,0x8b,0xd9,0x4c,0xcc, +0x16,0x62,0xb6,0x0e,0xb3,0xad,0x98,0x1d,0xc4,0xec,0x08,0x66, +0xa1,0x98,0x25,0x62,0x96,0x85,0xd9,0x49,0xcc,0xae,0x62,0x76, +0x0f,0xb3,0x57,0x98,0x7d,0xc6,0xac,0x00,0x73,0x63,0xcc,0xad, +0x31,0x2f,0x8e,0x79,0x05,0xcc,0x6b,0x60,0xde,0x10,0xf3,0x56, +0x98,0x77,0xc6,0xbc,0x27,0xe6,0xfd,0x31,0x1f,0x8e,0xf9,0x04, +0xcc,0x67,0x62,0xbe,0x08,0xf3,0xd5,0x98,0x6f,0xc6,0x7c,0x37, +0xe6,0x1e,0x98,0xfb,0x61,0x1e,0x8e,0x79,0x02,0xe6,0x19,0x98, +0x9f,0xc0,0xfc,0x02,0xe6,0x37,0x30,0x7f,0x88,0xf9,0x4b,0xcc, +0x3f,0x61,0xfe,0x1b,0x0b,0xb0,0x30,0xc3,0xc2,0x1e,0x8b,0x0a, +0x58,0xd4,0xc2,0xa2,0x11,0x16,0x6d,0xb0,0xe8,0x86,0xc5,0x00, +0x2c,0x46,0x62,0x31,0x19,0x8b,0xb9,0x58,0x2c,0xc7,0xc2,0x05, +0x8b,0x9d,0x58,0xb8,0x63,0xe1,0x87,0x45,0x04,0x16,0x89,0x58, +0x64,0x63,0x71,0x1a,0x8b,0x2b,0x58,0xdc,0xc3,0xe2,0x39,0x16, +0x1f,0xb1,0xf8,0x8d,0xa5,0x31,0x96,0x36,0x58,0x96,0xc4,0xd2, +0x09,0xcb,0x3a,0x58,0x36,0xc3,0xb2,0x03,0x96,0xbd,0xb0,0x1c, +0x82,0xe5,0x58,0x2c,0xa7,0x63,0xb9,0x10,0xcb,0xd5,0x58,0xba, +0x62,0xb9,0x17,0x4b,0x4f,0x2c,0x03,0xb0,0x8c,0xc0,0x32,0x01, +0xcb,0x3c,0x2c,0x2f,0x61,0x79,0x13,0xcb,0xa7,0x58,0xbe,0xc5, +0xf2,0x1b,0x56,0x60,0x65,0x8d,0x55,0x29,0xac,0xaa,0x62,0xd5, +0x10,0xab,0xb6,0x58,0xf5,0xc4,0x6a,0x00,0x56,0xa3,0xb1,0x9a, +0x8e,0xd5,0x62,0xac,0x5c,0xb1,0xda,0x8b,0xd5,0x21,0xac,0xfc, +0xb0,0x0a,0xc3,0x2a,0x0d,0xab,0xb3,0x58,0x5d,0xc7,0xea,0x11, +0x56,0x6f,0xb0,0xfa,0x8e,0x35,0x58,0x5b,0x61,0x5d,0x02,0x6b, +0x27,0xac,0xeb,0x62,0xdd,0x0c,0xeb,0x8e,0x58,0xf7,0xc1,0x7a, +0x30,0xd6,0x63,0xb1,0x9e,0x81,0xf5,0x62,0xac,0xd7,0x61,0xbd, +0x1d,0xeb,0x03,0x58,0x7b,0x63,0x1d,0x8c,0x75,0x0c,0xd6,0x29, +0x58,0x1f,0xc5,0xfa,0x0c,0xd6,0x57,0xb0,0xbe,0x8b,0xf5,0x33, +0xac,0xdf,0x61,0xfd,0xff,0xd3,0xfe,0x61,0x63,0x86,0x8d,0x3d, +0x36,0xa5,0xb1,0xa9,0x8c,0x4d,0x1d,0x6c,0x9a,0x62,0xd3,0x0e, +0x9b,0xee,0xd8,0x0c,0xc0,0x66,0x04,0x36,0x13,0xb1,0x99,0x85, +0xcd,0x62,0x6c,0xd6,0x60,0xe3,0x8a,0xcd,0x1e,0x6c,0x0e,0x61, +0xe3,0x8f,0x4d,0x04,0x36,0x06,0x6c,0x32,0xb1,0xc9,0xc3,0xe6, +0x22,0x36,0x37,0xb1,0x79,0x84,0xcd,0x2b,0x6c,0x3e,0x63,0x53, +0x80,0xad,0x31,0xb6,0x16,0xd8,0xda,0x61,0x5b,0x0a,0x5b,0x27, +0x6c,0x6b,0x63,0xdb,0x04,0xdb,0xb6,0xd8,0x76,0xc3,0xb6,0x3f, +0xb6,0xc3,0xb1,0x9d,0x80,0xed,0x4c,0x6c,0x17,0x61,0xbb,0x1a, +0xdb,0x4d,0xd8,0xee,0xc4,0xd6,0x0d,0x5b,0x6f,0x6c,0x83,0xb0, +0x8d,0xc2,0x36,0x11,0xdb,0x0c,0x6c,0x8f,0x63,0x7b,0x06,0xdb, +0x5b,0xd8,0x3e,0xc1,0xf6,0x2d,0xb6,0xdf,0xb1,0x13,0xec,0x2c, +0xb0,0x2b,0x8a,0x5d,0x79,0xec,0x6a,0x60,0xd7,0x08,0xbb,0x36, +0xd8,0x75,0xc3,0x6e,0x00,0x76,0x23,0xb1,0x9b,0x8c,0xdd,0x5c, +0xec,0x96,0x63,0xe7,0x82,0xdd,0x4e,0xec,0xdc,0xb1,0xf3,0xc3, +0x2e,0x02,0xbb,0x44,0xec,0x32,0xb0,0x3b,0x8e,0xdd,0x19,0xec, +0x2e,0x61,0x77,0x13,0xbb,0x07,0xd8,0xbd,0xc5,0xee,0x2b,0x76, +0x85,0xd8,0x1b,0x63,0x6f,0x85,0x7d,0x51,0xec,0xcb,0x62,0x5f, +0x05,0xfb,0x3a,0xd8,0x37,0xc1,0xbe,0x0d,0xf6,0x5d,0xb0,0xef, +0x83,0xfd,0x10,0xec,0x47,0x63,0x3f,0x19,0xfb,0xd9,0xd8,0x2f, +0xc6,0x7e,0x35,0xf6,0x9b,0xb0,0xdf,0x89,0xbd,0x1b,0xf6,0xde, +0xd8,0x07,0x61,0x1f,0x85,0x7d,0x22,0xf6,0x99,0xd8,0x9f,0xc0, +0xfe,0x3c,0xf6,0xd7,0xb0,0xbf,0x87,0xfd,0x33,0xec,0xdf,0x62, +0xff,0x15,0xfb,0x42,0x1c,0x8c,0x71,0xb0,0xc2,0xa1,0x18,0x0e, +0xe5,0x71,0xa8,0x8e,0x43,0x03,0x1c,0x5a,0xe2,0xd0,0x09,0x87, +0xde,0x38,0x0c,0xc1,0x61,0x0c,0x0e,0x53,0x71,0x98,0x87,0xc3, +0x72,0x1c,0x36,0xe0,0xb0,0x1d,0x87,0x03,0x38,0x78,0xe3,0x10, +0x8c,0x43,0x0c,0x0e,0x29,0x38,0x1c,0xc5,0xe1,0x0c,0x0e,0x57, +0x70,0xb8,0x8b,0xc3,0x33,0x1c,0xde,0xe1,0xf0,0x1d,0x87,0x7f, +0x38,0x9a,0xe1,0x68,0x8f,0x63,0x69,0x1c,0x2b,0xe3,0x58,0x07, +0xc7,0xa6,0x38,0xb6,0xc1,0xb1,0x33,0x8e,0xbd,0x70,0x1c,0x88, +0xe3,0x70,0x1c,0xc7,0xe1,0x38,0x15,0xc7,0x39,0x38,0x2e,0xc6, +0x71,0x15,0x8e,0x2e,0x38,0x6e,0xc3,0x71,0x2f,0x8e,0x1e,0x38, +0x1e,0xc1,0x31,0x18,0xc7,0x28,0x1c,0x0d,0x38,0xa6,0xe1,0x78, +0x1c,0xc7,0x9b,0x38,0xbe,0xa1,0xa8,0x09,0x45,0x4b,0x53,0x74, +0x29,0x45,0x5d,0x28,0xba,0x9b,0xa2,0x9e,0x14,0x8d,0xa3,0x58, +0x03,0x8a,0xb5,0xa7,0x58,0x7f,0x8a,0x1d,0xa1,0xb8,0x50,0x7c, +0x0e,0xc5,0x1f,0x50,0xfc,0x1d,0x25,0x86,0x53,0xc2,0x97,0x12, +0xb1,0x94,0xc8,0xa6,0xc4,0x79,0x4a,0xbc,0xa3,0xa4,0x52,0xb2, +0x38,0x25,0xb7,0x50,0xf2,0x00,0x25,0xdf,0x51,0xca,0x8c,0x52, +0x9d,0x28,0x35,0x84,0x52,0x09,0x94,0x3a,0x46,0xe9,0xfa,0x94, +0xee,0x4a,0xe9,0x61,0x94,0x3e,0x4f,0x99,0x66,0x94,0xf1,0xa6, +0x4c,0x38,0x65,0x8e,0x51,0xb6,0x3a,0x65,0xe7,0x50,0x76,0x35, +0x65,0xb7,0x50,0xd6,0x93,0xb2,0x89,0x94,0x3d,0x4a,0xd9,0xf3, +0x94,0xbd,0x47,0xb9,0x8a,0x94,0x6b,0x40,0xb9,0x36,0x94,0x1b, +0x4d,0xb9,0xb3,0x94,0x77,0xa4,0xfc,0x16,0xca,0x1f,0xa4,0x82, +0x35,0x15,0x2a,0x51,0xa1,0x3a,0x15,0x1a,0x52,0xc1,0x97,0x0a, +0x91,0x54,0x48,0xa4,0xc2,0x29,0x2a,0x3c,0xa1,0xc2,0x1f,0x2a, +0xda,0x50,0xb1,0x32,0x15,0xdb,0x51,0xb1,0x0f,0x15,0xa7,0x51, +0x71,0x03,0x15,0x6f,0x50,0xf1,0x03,0x95,0x6a,0x52,0xa9,0x29, +0x95,0xba,0x52,0xa9,0x1f,0x95,0x66,0x52,0x69,0x23,0x95,0x76, +0x51,0x29,0x12,0xa7,0xd2,0x38,0x55,0xc3,0xa9,0x2f,0x4e,0x23, +0x71,0x9a,0x81,0xd3,0x02,0x9c,0x36,0xe0,0xb4,0x0b,0x27,0x5f, +0x9c,0xe2,0x71,0xca,0xc5,0xe9,0x1a,0x95,0x2b,0x50,0xb9,0x26, +0x95,0x9b,0x52,0x79,0x35,0x95,0x53,0xa8,0x7c,0x85,0x2a,0x25, +0xa8,0x52,0x87,0x2a,0xcd,0xa8,0x32,0x92,0x2a,0x2b,0xa9,0x72, +0x9d,0x2a,0x2f,0xa9,0x6a,0x4c,0xd5,0x05,0x54,0xbd,0x42,0xd5, +0x3f,0x54,0x33,0xa7,0x5a,0x53,0xaa,0xf5,0xa3,0xda,0x48,0xaa, +0x4d,0xa6,0x5a,0x32,0xd5,0x7e,0x53,0xdd,0x84,0xea,0xd6,0x54, +0x1f,0x4b,0xf5,0x24,0xaa,0x9f,0xa0,0xfa,0x4d,0xaa,0x3f,0xa6, +0xfa,0x0b,0xaa,0x17,0x50,0xa3,0x3c,0x35,0x9a,0x51,0x63,0x33, +0x35,0xbc,0xa9,0x11,0x44,0x8d,0x14,0x6a,0x9c,0xa0,0xc6,0x2d, +0x6a,0x1a,0x51,0xd3,0x96,0x9a,0x95,0xa8,0xd9,0x98,0x9a,0x7d, +0xa9,0xe9,0x47,0xcd,0x3f,0xd4,0x32,0xa7,0x56,0x35,0x6a,0xf5, +0xa4,0xd6,0x40,0x6a,0x2d,0xa0,0xd6,0x76,0x6a,0xf9,0x52,0x2b, +0x92,0x5a,0x99,0xd4,0xfa,0x49,0xed,0x32,0xd4,0xee,0x42,0xed, +0xbd,0xd4,0xbe,0x47,0x9d,0x6a,0xd4,0x59,0x4a,0x9d,0x6b,0xd4, +0xad,0x4f,0xdd,0xa5,0xd4,0xcd,0xa5,0x9e,0x39,0xf5,0xea,0x51, +0x6f,0x2c,0xf5,0xe6,0x50,0x6f,0x0d,0xf5,0xee,0x52,0xef,0x37, +0xf5,0xcb,0x52,0xbf,0x36,0xf5,0x5b,0x51,0x7f,0x28,0xf5,0x97, +0x50,0xff,0x0a,0xf5,0x1f,0x50,0xff,0x25,0x0d,0x84,0x06,0x4e, +0x34,0x58,0x45,0x83,0x48,0x1a,0x24,0xd1,0x20,0x87,0x06,0x57, +0x69,0x70,0x8f,0x86,0xe6,0x34,0x6c,0x45,0xc3,0x83,0x34,0xbc, +0x4d,0x23,0x63,0x1a,0x8d,0xa1,0xd1,0x3a,0x1a,0x9d,0xa3,0xd1, +0x53,0x1a,0x97,0xa5,0x71,0x6d,0x1a,0xb7,0xa7,0xf1,0x2c,0x1a, +0x47,0xd3,0xd8,0x40,0xe3,0x34,0x1a,0xe7,0xd1,0xf8,0x36,0x4d, +0x4a,0xd1,0xa4,0x06,0x4d,0xda,0xd0,0xa4,0x07,0x4d,0x86,0xd1, +0x24,0x98,0x26,0x89,0x34,0xb9,0x44,0x53,0x33,0x9a,0x0e,0xa2, +0x69,0x2c,0x4d,0x33,0x68,0x7a,0x9a,0x66,0x95,0x68,0x56,0x9f, +0x66,0xed,0x69,0xb6,0x8e,0x66,0xee,0x34,0xbb,0x47,0x73,0x4b, +0x9a,0xf7,0xa0,0xf9,0x46,0x9a,0xef,0xa7,0x79,0x14,0xcd,0x9f, +0xd1,0xfc,0x2f,0x2d,0x6a,0xd0,0x62,0x0a,0x2d,0xe2,0x68,0xf1, +0x89,0x96,0xd6,0xb4,0x1c,0x42,0x4b,0x2f,0x5a,0x5e,0xa4,0x65, +0x3e,0x2d,0xbf,0xd3,0xca,0x9c,0x56,0x83,0x69,0x35,0x91,0x56, +0xf3,0x69,0x15,0x4b,0xab,0x4c,0x5a,0xbd,0xa6,0x75,0x51,0x5a, +0x37,0xa3,0xf5,0x4a,0x5a,0x6f,0xa6,0xf5,0x3e,0x5a,0x5f,0xa0, +0xf5,0x3d,0x5a,0x7f,0xa7,0x4d,0x59,0xda,0xb4,0xa1,0xcd,0x16, +0xda,0x9c,0xa6,0xcd,0x2f,0xda,0x76,0xa0,0x6d,0x37,0xda,0x6e, +0xa3,0xed,0x41,0xda,0xde,0xa0,0xed,0x07,0xda,0xfe,0xa6,0x9d, +0x11,0xed,0x1a,0xd0,0xae,0x35,0xed,0x56,0xd1,0x2e,0x97,0x76, +0x17,0x68,0xf7,0x98,0xf6,0xd5,0x68,0x3f,0x91,0xf6,0x73,0x68, +0x1f,0x4f,0xfb,0x4c,0xda,0x9f,0xa1,0xfd,0x65,0xda,0xdf,0xa2, +0x43,0x5d,0x3a,0xcc,0xa5,0x83,0x81,0x0e,0x39,0x74,0x38,0x47, +0x87,0x3b,0x74,0x78,0x4a,0x87,0x5f,0x74,0x34,0xa5,0x63,0x5f, +0x3a,0xee,0xa5,0x63,0x02,0x1d,0xcf,0xd3,0xf1,0x06,0x1d,0x5f, +0xd3,0xa9,0x2e,0x9d,0x9a,0xd3,0x69,0x35,0x9d,0xfc,0xe8,0x74, +0x8e,0xce,0x16,0x74,0xee,0x4b,0xe7,0x79,0x74,0xde,0x48,0x67, +0x4f,0x3a,0x87,0xd3,0x39,0x95,0xce,0xdf,0xe8,0xfc,0x8f,0x2e, +0x96,0x74,0x29,0x49,0x97,0xd1,0x74,0xf1,0xa3,0xcb,0x33,0xba, +0xda,0xd1,0xb5,0x05,0x5d,0x07,0xd3,0x75,0x34,0x5d,0x77,0xd2, +0xd5,0x83,0xae,0xa9,0x74,0x7d,0x4f,0xd7,0x5f,0x74,0x2b,0x41, +0xb7,0x4a,0x74,0x9b,0x4c,0xb7,0xc3,0x74,0x0b,0xa3,0xdb,0x05, +0xba,0xbd,0xa0,0xdb,0x07,0xba,0x57,0xa3,0xfb,0x74,0xba,0x6f, +0xa2,0xfb,0x59,0xba,0x3f,0xa0,0xfb,0x5b,0xba,0xff,0xa4,0x47, +0x29,0x7a,0x0c,0xa0,0xc7,0x48,0x7a,0x04,0xd2,0xe3,0x39,0x3d, +0xed,0xe8,0xd9,0x91,0x9e,0x6b,0xe8,0xb9,0x95,0x9e,0x07,0xe9, +0xe9,0x4b,0xcf,0x7c,0x7a,0xd5,0xa6,0xd7,0x28,0x7a,0x2d,0xa6, +0x57,0x2e,0xbd,0xfe,0xa3,0xb7,0x03,0xbd,0x6b,0xd1,0xbb,0x2b, +0xbd,0x0f,0xd0,0xfb,0x24,0x7d,0x8a,0xd3,0xc7,0x89,0x3e,0x23, +0xe8,0x33,0x93,0x3e,0x9e,0xf4,0x89,0xa7,0x4f,0x2e,0x7d,0x95, +0xbe,0x76,0xf4,0xad,0x40,0xdf,0x9a,0xf4,0x1d,0x44,0xdf,0x95, +0xf4,0xf5,0xa3,0x6f,0x0a,0x7d,0x8f,0xd3,0xcf,0x96,0x7e,0x35, +0xe8,0xd7,0x9d,0x7e,0x73,0xe8,0xb7,0x9d,0x7e,0x07,0xe9,0x77, +0x91,0x7e,0x77,0xe8,0xf7,0x84,0xfe,0x16,0xf4,0xb7,0xa3,0x7f, +0x59,0xfa,0xd7,0xa3,0xff,0x20,0xfa,0x4f,0xa6,0xbf,0x1b,0xfd, +0xef,0xd1,0xff,0x25,0x03,0x2a,0x33,0xa0,0x2b,0x03,0x06,0x33, +0x60,0x0c,0x03,0xa6,0x32,0x60,0x36,0x03,0x7c,0x18,0x60,0x60, +0xc0,0x71,0x06,0x9c,0x67,0xc0,0x0d,0x06,0x14,0x30,0xb0,0x14, +0x03,0xab,0x33,0xb0,0x39,0x03,0x97,0x32,0xd0,0x9b,0x81,0x27, +0x19,0x98,0xcf,0x20,0x27,0x06,0x8d,0x61,0x90,0x1b,0x83,0x4e, +0x31,0xe8,0x2b,0x83,0x4b,0x30,0xb8,0x3a,0x83,0xfb,0x32,0x78, +0x23,0x83,0xdd,0x19,0xec,0xcd,0xe0,0x30,0x06,0xa7,0x32,0xf8, +0x2d,0x43,0x4a,0x32,0xa4,0x17,0x43,0x86,0x32,0x64,0x3e,0x43, +0x56,0x33,0x24,0x88,0x21,0xc7,0x18,0xf2,0x81,0x21,0x3f,0x71, +0x2e,0x86,0x73,0x45,0x9c,0xeb,0xe0,0xdc,0x1c,0xe7,0xce,0x38, +0x6f,0xc4,0x79,0x2f,0xce,0x3e,0x38,0xe7,0xe0,0xfc,0x92,0xa1, +0xd5,0x18,0xea,0xcc,0xd0,0x2d,0x0c,0x8d,0x61,0xe8,0x0d,0x86, +0xde,0x63,0xe8,0x47,0x86,0x16,0x32,0xac,0x1a,0xc3,0x66,0x32, +0x2c,0x82,0x61,0xcf,0x19,0x6e,0xc4,0xf0,0xe2,0x0c,0x1f,0xc1, +0xf0,0x49,0x0c,0x5f,0xca,0xf0,0x0d,0x0c,0xdf,0xcb,0xf0,0x2b, +0x8c,0xb0,0x65,0x44,0x0f,0x46,0x8c,0x60,0xc4,0x14,0x46,0x6c, +0x63,0x44,0x02,0x23,0x32,0x19,0xf1,0x81,0x91,0xc6,0x8c,0x2c, +0xcb,0xc8,0x2a,0x8c,0xec,0xc7,0xc8,0x85,0x8c,0x0c,0x67,0xe4, +0x51,0x46,0x9e,0x67,0xe4,0x7d,0x46,0x99,0x31,0xaa,0x04,0xa3, +0xda,0x33,0x6a,0x11,0xa3,0xd6,0x32,0xca,0x9b,0x51,0xe7,0x19, +0x0d,0xa3,0x2d,0x18,0x6d,0xcf,0xe8,0xb6,0x8c,0x5e,0xc2,0x68, +0x17,0x46,0xa7,0x32,0xfa,0x19,0x63,0xcc,0x19,0x53,0x93,0x31, +0xfd,0x18,0xb3,0x99,0x31,0xf1,0x8c,0xb9,0xcf,0x98,0xdf,0x8c, +0x2d,0xcf,0xd8,0xb6,0x8c,0x5d,0xcd,0xd8,0x0c,0xc6,0xe6,0x31, +0xf6,0x19,0xe3,0x8c,0x18,0x57,0x87,0x71,0xcd,0x18,0x37,0x87, +0x71,0x7b,0x19,0x97,0xc1,0xb8,0xfb,0x8c,0xb7,0x63,0x7c,0x4f, +0xc6,0x8f,0x65,0xfc,0x52,0xc6,0x07,0x32,0xfe,0x38,0xe3,0x5f, +0x31,0xfe,0x07,0x13,0xea,0x33,0x61,0x06,0x13,0x82,0x99,0x70, +0x8b,0x09,0x7f,0x98,0x68,0xc3,0xc4,0x5a,0x4c,0x6c,0xc2,0xc4, +0xc1,0x4c,0x5c,0xc6,0xc4,0xd5,0x4c,0xdc,0xc9,0xc4,0x04,0x26, +0x9e,0x64,0xe2,0x57,0x26,0x95,0x66,0x52,0x75,0x26,0xb5,0x63, +0x52,0x3f,0x26,0x4d,0x65,0xd2,0x42,0x26,0xb9,0x30,0xc9,0x8f, +0x49,0xe7,0x99,0x6c,0xca,0xe4,0x92,0x4c,0xae,0xc9,0xe4,0x56, +0x4c,0x1e,0xc5,0xe4,0xb9,0x4c,0x0e,0x65,0xf2,0x49,0x26,0x7f, +0x63,0x4a,0x59,0xa6,0x74,0x60,0xca,0x24,0xa6,0x6c,0x63,0x4a, +0x34,0x53,0x2e,0x30,0xe5,0x37,0x53,0xab,0x31,0x75,0x3c,0x53, +0xa7,0x31,0x75,0x0d,0x53,0xdd,0x98,0x1a,0xcc,0xd4,0x33,0x4c, +0xfd,0xc0,0x34,0x33,0xa6,0xb5,0x67,0x5a,0x0f,0xa6,0x0d,0x64, +0xda,0x34,0xa6,0xb9,0x33,0x2d,0x94,0x69,0x51,0x4c,0x7b,0xca, +0x74,0x07,0xa6,0xb7,0x60,0xfa,0x20,0xa6,0xcf,0x60,0xfa,0x76, +0xa6,0xef,0x65,0xba,0x3b,0xd3,0x93,0x98,0x7e,0x9f,0xe9,0x85, +0xcc,0xa8,0xc8,0x8c,0xe1,0xcc,0x58,0xc2,0x0c,0x1f,0x66,0x9c, +0x64,0xc6,0x15,0x66,0x3c,0x64,0xa6,0x30,0xb3,0x1a,0x33,0xeb, +0x30,0x73,0x22,0x33,0x57,0x31,0xd3,0x95,0x99,0xfb,0x99,0x19, +0xca,0xcc,0x1c,0x66,0x3e,0x62,0x66,0x01,0xb3,0x94,0x59,0x36, +0xcc,0x2a,0xcd,0xac,0x86,0xcc,0x9a,0xc2,0xac,0xc3,0xcc,0x3a, +0xcd,0xac,0x42,0x66,0x37,0x60,0xf6,0x64,0x66,0xbb,0x32,0xdb, +0x97,0xd9,0x39,0xcc,0xbe,0xca,0xec,0x97,0xcc,0xfe,0xce,0x1c, +0x5b,0xe6,0x34,0x60,0x4e,0x2b,0xe6,0x74,0x65,0x4e,0x7f,0xe6, +0xec,0x61,0x4e,0x2c,0x73,0x92,0x98,0x93,0xc1,0x9c,0x13,0xcc, +0xf9,0x8f,0xb9,0x26,0xcc,0x6d,0xc1,0xdc,0x09,0xcc,0xdd,0xc4, +0xdc,0x60,0xe6,0x66,0x31,0xf7,0x0e,0xf3,0xac,0x98,0xd7,0x9a, +0x79,0xa3,0x99,0x37,0x8b,0x79,0x2b,0x98,0xb7,0x95,0x79,0xc7, +0x99,0xf7,0x85,0xf9,0xc6,0xcc,0x6f,0xc1,0xfc,0x21,0xcc,0x9f, +0xc5,0xfc,0x0d,0xcc,0xf7,0x60,0x7e,0x0c,0xf3,0x73,0x98,0x7f, +0x9e,0xf9,0xef,0x99,0xff,0x97,0x05,0xb5,0x58,0xd0,0x95,0x05, +0x73,0x59,0xb0,0x91,0x05,0x7b,0x58,0xe0,0xc5,0x82,0x38,0x16, +0x5c,0x62,0x41,0x21,0x0b,0xcb,0xb2,0xb0,0x37,0x0b,0x67,0xb0, +0x70,0x3b,0x0b,0xdd,0x59,0x98,0xc4,0xc2,0x3b,0x2c,0xfc,0xc5, +0xc2,0x7f,0x2c,0xb2,0x60,0x51,0x33,0x16,0x75,0x67,0xd1,0x60, +0x16,0x4d,0x64,0xd1,0x22,0x16,0xf9,0xb0,0xe8,0x0a,0x8b,0x7e, +0xb1,0xe8,0x1f,0x8b,0x6b,0xb3,0xb8,0x0b,0x8b,0x07,0xb3,0x78, +0x22,0x8b,0x5d,0x58,0x1c,0xc1,0xe2,0xab,0x2c,0x2e,0x64,0x49, +0x55,0x96,0x34,0x64,0x49,0x3b,0x96,0x74,0x65,0xc9,0x3c,0x96, +0xec,0x63,0x49,0x3c,0x4b,0x32,0x59,0x72,0x96,0x25,0x85,0x2c, +0x2d,0xc3,0xd2,0xfa,0x2c,0xed,0xc3,0xd2,0x59,0x2c,0x75,0x63, +0x69,0x16,0x4b,0xef,0xb2,0xf4,0x0d,0xcb,0x8c,0x59,0x56,0x8f, +0x65,0xdd,0x58,0x36,0x9a,0x65,0x0b,0x59,0xe6,0xca,0xb2,0x58, +0x96,0x25,0xb1,0xec,0x1a,0xcb,0x7e,0xb2,0x1c,0x96,0x3b,0xb1, +0xbc,0x05,0xcb,0x9d,0x59,0xbe,0x92,0xe5,0x1e,0x2c,0xcf,0x64, +0xf9,0x55,0x96,0xbf,0xfe,0xdf,0xe2,0xb8,0xa2,0x0b,0x2b,0x7a, +0xb1,0x62,0x32,0x2b,0x66,0xb1,0x62,0x09,0x2b,0x56,0xb3,0xe2, +0x10,0x2b,0x12,0x59,0x71,0x8d,0x15,0x8f,0x58,0xf1,0x8f,0x95, +0x95,0x58,0xe9,0xcc,0x4a,0x77,0x56,0x1a,0x58,0x79,0x82,0x95, +0x77,0x58,0xf9,0x91,0x55,0x45,0x58,0x65,0xcb,0xaa,0xaa,0xac, +0x6a,0xcd,0xaa,0x8e,0xac,0x9a,0xcf,0xaa,0x35,0xac,0x3a,0xc2, +0xaa,0x50,0x56,0x9d,0x61,0xd5,0x6d,0x56,0x3d,0x67,0xd5,0x27, +0x56,0xfd,0x64,0xd5,0x3f,0x56,0x97,0x60,0x75,0x23,0x56,0x77, +0x67,0xf5,0x30,0x56,0xaf,0x62,0xb5,0x07,0xab,0xc3,0x58,0x9d, +0xc4,0xea,0x63,0xac,0x7e,0xc2,0x1a,0x23,0xd6,0x58,0xb1,0xa6, +0x34,0x6b,0x5a,0xb2,0xa6,0x13,0x6b,0x7a,0xb1,0xc6,0x99,0x35, +0x33,0x59,0xb3,0x8c,0x35,0xbb,0x59,0xe3,0xcb,0x9a,0x5c,0xd6, +0x3c,0x66,0xcd,0x2b,0xd6,0xc2,0x5a,0x0b,0xd6,0xd6,0x63,0x6d, +0x4f,0xd6,0xce,0x61,0xed,0x3e,0xd6,0x46,0xb2,0x36,0x8f,0xb5, +0x57,0x59,0xfb,0x8d,0x75,0x26,0xac,0x2b,0xc7,0xba,0x3a,0xac, +0xeb,0xc4,0xba,0x61,0xac,0x9b,0xc6,0xba,0x00,0xd6,0x3d,0x62, +0xdd,0x5b,0xd6,0x15,0xb2,0xbe,0x14,0xeb,0x6b,0xb0,0xbe,0x11, +0xeb,0x3b,0xb2,0x7e,0x24,0xeb,0x17,0xb1,0x7e,0x27,0xeb,0x03, +0x58,0x9f,0xcc,0xfa,0xab,0xac,0x7f,0xc9,0xfa,0xdf,0x6c,0xb0, +0x62,0x43,0x3d,0x36,0x0c,0x60,0xc3,0x68,0x36,0x4c,0x64,0xc3, +0x6a,0x36,0xec,0x64,0x43,0x10,0x1b,0x22,0xd9,0x90,0xcb,0x86, +0xf3,0x6c,0x78,0xc6,0x86,0x42,0x5c,0x4a,0xe2,0xd2,0x18,0x97, +0x76,0xb8,0x8c,0xc4,0x65,0x09,0x2e,0x6e,0xb8,0x44,0xe0,0x72, +0x14,0x97,0x1b,0xb8,0x3c,0xc4,0xe5,0x39,0x2e,0xdf,0x71,0xf9, +0xc7,0x46,0x73,0x36,0x3a,0xb0,0xb1,0x2c,0x1b,0x9b,0xb1,0x71, +0x00,0x1b,0x87,0xb1,0x71,0x22,0x1b,0x97,0xb0,0x71,0x2b,0x1b, +0xf7,0xb2,0xf1,0x30,0x1b,0xc3,0xd8,0x98,0xc6,0xc6,0x8b,0x6c, +0x7c,0xc4,0xc6,0x77,0x6c,0xfc,0xcd,0x26,0x4b,0x36,0x39,0xb0, +0xa9,0x2e,0x9b,0x3a,0xb3,0xa9,0x3f,0x9b,0x66,0xb2,0x69,0x29, +0x9b,0xf6,0xb0,0x29,0x81,0x4d,0xd7,0xd8,0xf4,0x93,0xcd,0xa6, +0x6c,0x2e,0xc1,0xe6,0xa6,0x6c,0xee,0xc2,0xe6,0x61,0x6c,0x9e, +0xc0,0xe6,0xd9,0x6c,0xde,0xc4,0xe6,0x00,0x36,0x47,0xb1,0x39, +0x85,0xcd,0xc7,0xd8,0x7c,0x8d,0xcd,0xcf,0xd9,0xfc,0x0f,0x57, +0x2b,0x5c,0x9d,0x70,0xad,0x87,0x6b,0x77,0x5c,0x87,0xe1,0x3a, +0x09,0xd7,0x55,0xb8,0x6e,0xc0,0xd5,0x1d,0xd7,0x70,0x5c,0x63, +0x71,0x4d,0xc2,0x35,0x03,0xd7,0x4b,0xb8,0x3e,0xc2,0xf5,0x39, +0xae,0x3f,0xd8,0x62,0xc2,0x16,0x47,0xb6,0xd4,0x65,0x4b,0x2f, +0xb6,0x0c,0x61,0xcb,0x54,0xb6,0x6c,0x64,0xcb,0x01,0xb6,0x84, +0xb0,0x25,0x97,0x2d,0xb7,0xd8,0x72,0x9f,0xad,0xa6,0x6c,0x2d, +0xcf,0xd6,0x86,0x6c,0x6d,0xcb,0xd6,0x5e,0x6c,0x9d,0xc0,0xd6, +0xe5,0x6c,0xdd,0xc9,0x56,0x5f,0xb6,0xa6,0xb0,0xf5,0x22,0x5b, +0xf3,0xd9,0x66,0xcc,0x36,0x4b,0xb6,0x95,0x63,0x5b,0x15,0xb6, +0x35,0x63,0x5b,0x5b,0xb6,0x0d,0x63,0xdb,0x2c,0xb6,0xad,0x63, +0x9b,0x07,0xdb,0xe2,0xd9,0x76,0x8a,0x6d,0x8f,0xd9,0xf6,0x8a, +0x6d,0xff,0xd8,0x5e,0x8c,0xed,0xb5,0xd9,0xde,0x91,0xed,0xc3, +0xd8,0x3e,0x87,0xed,0x9b,0xd8,0xbe,0x9f,0xed,0x01,0x6c,0x4f, +0x66,0xfb,0x49,0xb6,0x5f,0x61,0xfb,0x3b,0xb6,0x7f,0x65,0x87, +0x2d,0x3b,0x6a,0xb1,0xa3,0x39,0x3b,0xba,0xb1,0x63,0x00,0x3b, +0x26,0xb2,0x63,0x05,0x3b,0xdc,0xd8,0x71,0x84,0x1d,0x49,0xec, +0xb8,0xc4,0x8e,0x57,0xec,0x54,0x76,0xd6,0x63,0xe7,0x40,0x76, +0xae,0x61,0xe7,0x0e,0x76,0x1e,0x64,0xa7,0x2f,0x3b,0xc3,0xd9, +0x19,0xc7,0xce,0x5c,0x76,0xde,0x66,0x67,0x3e,0x3b,0x7f,0xb2, +0xcb,0x84,0x5d,0x96,0xec,0x2a,0xc7,0xae,0xe6,0xec,0xea,0xce, +0xae,0x31,0xec,0x9a,0xc3,0xae,0xf5,0xec,0x3a,0xc0,0xae,0x10, +0x76,0xa5,0xb1,0xeb,0x38,0xbb,0xae,0xb3,0xeb,0x21,0xbb,0x7e, +0xb3,0xdb,0x96,0xdd,0x55,0xd8,0xdd,0x92,0xdd,0xfd,0xd8,0x3d, +0x89,0xdd,0xcb,0xd9,0xbd,0x95,0xdd,0x3e,0xec,0x4e,0x62,0x77, +0x06,0xbb,0xaf,0xb2,0xfb,0x0d,0x7b,0xac,0xd9,0x53,0x83,0x3d, +0xce,0xec,0x19,0xc7,0x9e,0xe5,0xec,0xd9,0xc7,0x9e,0x08,0xf6, +0xe4,0xb2,0xe7,0x1e,0x7b,0x9e,0xb0,0xe7,0x27,0x7b,0xed,0xd9, +0x5b,0x99,0xbd,0x6d,0xd8,0xeb,0xcc,0xde,0x69,0xec,0x5d,0xc6, +0xde,0x2d,0xec,0xf5,0x62,0x6f,0x2c,0x7b,0x4f,0xb3,0xf7,0x21, +0x7b,0x7f,0xb2,0xaf,0x18,0xfb,0x1a,0xb2,0xcf,0x99,0x7d,0xb3, +0xd9,0xb7,0x8c,0x7d,0xbb,0xd9,0x17,0xcc,0xbe,0x48,0xf6,0x65, +0xb0,0xef,0x38,0xfb,0xce,0xb1,0xef,0x3e,0xfb,0x9e,0xb3,0xdf, +0x82,0xfd,0x8e,0xec,0xaf,0xc6,0xfe,0xe6,0xec,0xef,0xc4,0xfe, +0x91,0xec,0x5f,0xc8,0xfe,0x55,0xec,0xdf,0xc2,0x7e,0x5f,0xf6, +0xc7,0xb1,0xff,0x34,0xfb,0xef,0xb2,0xff,0x13,0x07,0x4c,0x39, +0x50,0x9a,0x03,0x75,0x38,0xd0,0x9a,0x03,0x13,0x39,0x30,0x83, +0x03,0x4b,0x38,0xb0,0x93,0x03,0x87,0x39,0x10,0xce,0x81,0x78, +0x0e,0xa4,0x71,0xe0,0x18,0x07,0x2e,0x70,0xe0,0x19,0x07,0xbe, +0xe2,0x66,0x82,0x9b,0x3d,0x6e,0x35,0x70,0x6b,0x8e,0x5b,0x27, +0xdc,0x06,0xe3,0x36,0x06,0xb7,0x69,0xb8,0x2d,0xc7,0xcd,0x15, +0x37,0x0f,0xdc,0xc2,0x70,0x4b,0xc2,0xed,0x24,0x6e,0x57,0x70, +0x7b,0x80,0xdb,0x07,0x0e,0x0a,0x07,0x6d,0x38,0x58,0x91,0x83, +0xf5,0x38,0xd8,0x9e,0x83,0x7d,0x38,0x38,0x86,0x83,0xd3,0x38, +0xb8,0x81,0x83,0xfb,0x39,0x18,0xc4,0xc1,0x74,0x0e,0x9e,0xe6, +0xe0,0x6d,0x0e,0x7e,0xc0,0xdd,0x04,0xf7,0x32,0xb8,0x37,0xc4, +0xbd,0x2d,0xee,0x3d,0x71,0x1f,0x83,0xfb,0x1c,0xdc,0xd7,0xe0, +0xbe,0x0b,0x77,0x77,0xdc,0x03,0x70,0x8f,0xc1,0x3d,0x05,0xf7, +0xf3,0xb8,0x5f,0xc3,0xfd,0x01,0xee,0x5f,0xf0,0x30,0xc3,0xc3, +0x1e,0x8f,0x52,0x78,0xd4,0xc5,0xa3,0x39,0x1e,0x1d,0xf0,0xe8, +0x87,0xc7,0x50,0x3c,0x66,0xe2,0xb1,0x08,0x8f,0x35,0x78,0xb8, +0xe2,0xb1,0x1f,0x8f,0x10,0x3c,0xd2,0xf1,0xb8,0x88,0xc7,0x75, +0x3c,0xf2,0xf1,0xf8,0x84,0xc7,0x1f,0x0e,0x15,0xe1,0x50,0x31, +0x0e,0x55,0xe4,0x50,0x1d,0x0e,0xb5,0xe2,0x50,0x0f,0x0e,0x0d, +0xe2,0xd0,0x04,0x0e,0x2d,0xe6,0xd0,0x16,0x0e,0x79,0x72,0x28, +0x9a,0x43,0x47,0x39,0x74,0x95,0x43,0xcf,0x39,0xf4,0x8b,0xc3, +0x56,0x1c,0xae,0xc0,0xe1,0x46,0x1c,0xee,0xca,0xe1,0xe1,0x1c, +0x9e,0xc4,0xe1,0xa5,0x1c,0x76,0xe5,0xf0,0x61,0x0e,0x87,0x70, +0x38,0x99,0xc3,0x47,0x39,0x7c,0x9e,0xc3,0xb7,0x38,0xfc,0x86, +0xc3,0xdf,0xf1,0x54,0x3c,0x6d,0xf0,0xac,0x87,0x67,0x3f,0x3c, +0x87,0xe1,0x39,0x19,0xcf,0x39,0x78,0xae,0xc2,0xd3,0x15,0x4f, +0x37,0x3c,0x03,0xf0,0x8c,0xc3,0x33,0x1d,0xcf,0xd3,0x78,0xde, +0xc0,0xf3,0x19,0x9e,0x9f,0xf1,0x12,0xbc,0x6c,0xf0,0x2a,0x8e, +0x97,0x13,0x5e,0x4d,0xf0,0xea,0x86,0xd7,0x70,0xbc,0x26,0xe0, +0xb5,0x08,0xaf,0xcd,0x78,0x79,0xe0,0x15,0x8e,0x57,0x06,0x5e, +0x17,0xf0,0x7a,0x88,0xd7,0x27,0xbc,0x8d,0xf0,0x2e,0x86,0x77, +0x75,0xbc,0x5b,0xe2,0xdd,0x1b,0xef,0x31,0x78,0xcf,0xc2,0x7b, +0x0d,0xde,0x3b,0xf0,0x3e,0x8c,0x77,0x28,0xde,0x69,0x78,0x9f, +0xc3,0xfb,0x3e,0xde,0x1f,0xf0,0x01,0x1f,0x47,0x7c,0xca,0xe2, +0x53,0x0f,0x9f,0xe6,0xf8,0xf4,0xc4,0x67,0x14,0x3e,0x73,0xf0, +0x59,0x87,0xcf,0x56,0x7c,0x3c,0xf0,0x09,0xc6,0xc7,0x80,0xcf, +0x7f,0xf8,0xdc,0xc5,0xe7,0x05,0x3e,0xef,0xf1,0xf9,0xca,0x11, +0x53,0x8e,0x54,0xe1,0x48,0x6b,0x8e,0xf4,0xe1,0xc8,0x18,0x8e, +0xcc,0xe5,0xc8,0x2a,0x8e,0xec,0xe4,0x88,0x0f,0x47,0x62,0x38, +0x92,0xc3,0x91,0x4b,0x1c,0x79,0xcc,0x91,0xcf,0x1c,0xf9,0x87, +0xaf,0x1d,0xbe,0x95,0xf0,0xad,0x8d,0x6f,0x13,0x7c,0x3b,0xe2, +0xdb,0x1b,0xdf,0xe1,0xf8,0x4e,0xc0,0x77,0x2e,0xbe,0xcb,0xf0, +0x5d,0x8f,0xef,0x36,0x7c,0xf7,0xe3,0xeb,0x85,0x6f,0x08,0xbe, +0xb1,0xf8,0xa6,0xe3,0x7b,0x0c,0xdf,0xb3,0xf8,0x5e,0xc5,0xf7, +0x39,0xbe,0x3f,0xf0,0x53,0xfc,0x1c,0xf0,0xab,0x80,0x5f,0x1d, +0xfc,0x5a,0xe2,0xd7,0x13,0xbf,0x11,0xf8,0xcd,0xc0,0x6f,0x29, +0x7e,0xae,0xf8,0xed,0xc3,0xcf,0x1f,0xbf,0x68,0xfc,0x0c,0xf8, +0xe5,0xe2,0xf7,0x1f,0x7e,0x77,0xf1,0x7b,0x89,0xdf,0x4f,0xfc, +0x8d,0xf1,0xb7,0xc5,0xbf,0x02,0xfe,0xf5,0xf1,0x6f,0x8f,0x7f, +0x7f,0xfc,0xc7,0xe1,0x3f,0x0b,0xff,0xc5,0xf8,0x6f,0xc2,0xdf, +0x0d,0x7f,0x5f,0xfc,0x43,0xf0,0x8f,0xc1,0x3f,0x19,0xff,0x63, +0xf8,0x9f,0xc7,0xff,0x39,0xfe,0x85,0x04,0xd8,0x13,0x50,0x93, +0x80,0xe6,0x04,0x74,0x20,0xa0,0x0f,0x01,0xc3,0x09,0x98,0x4c, +0xc0,0x6c,0x02,0x96,0x12,0xe0,0x42,0xc0,0x6e,0x02,0x3c,0x08, +0x88,0x20,0xe0,0x28,0x01,0x17,0x09,0xc8,0x27,0xe0,0xdb,0xff, +0x3c,0xd4,0x40,0x6b,0x02,0x4b,0x13,0x58,0x93,0xc0,0x66,0x04, +0x76,0x25,0x70,0x08,0x81,0x93,0x08,0x5c,0x48,0xe0,0x06,0x02, +0xf7,0x12,0xe8,0x4b,0x60,0x0c,0x81,0x59,0x04,0x9e,0x27,0xf0, +0x2e,0x81,0xcf,0x09,0xfc,0x4c,0x10,0x04,0xd9,0x11,0x54,0x81, +0xa0,0x6a,0x04,0x35,0x22,0xa8,0x23,0x41,0x7d,0x09,0x1a,0x41, +0xd0,0x74,0x82,0x96,0x11,0xe4,0x4a,0xd0,0x41,0x82,0x82,0x08, +0x32,0x10,0x74,0x9c,0xa0,0xcb,0x04,0x3d,0x22,0xe8,0x03,0x41, +0x7f,0x09,0x36,0x25,0xd8,0x9e,0xe0,0x8a,0x04,0xd7,0x27,0xb8, +0x1d,0xc1,0x7d,0x09,0x1e,0x46,0xf0,0x78,0x82,0xe7,0x11,0xbc, +0x82,0x60,0x17,0x82,0x77,0x12,0xec,0x4e,0x70,0x34,0xc1,0x27, +0x08,0xbe,0x4b,0xf0,0x2b,0x82,0x7f,0x10,0x22,0x84,0x58,0x10, +0x52,0x92,0x90,0xca,0x84,0x34,0x24,0xa4,0x0d,0x21,0xbd,0x08, +0x19,0x4c,0xc8,0x68,0x42,0x66,0x12,0xb2,0x84,0x90,0x8d,0x84, +0xec,0x22,0xc4,0x8b,0x90,0x00,0x42,0xe2,0x08,0xc9,0x26,0xe4, +0x3c,0x21,0x77,0x08,0x79,0x49,0xc8,0x77,0x42,0x8d,0x09,0x75, +0x20,0xb4,0x2c,0xa1,0xd5,0x08,0x6d,0x42,0x68,0x27,0x42,0xfb, +0x11,0x3a,0x9a,0xd0,0x99,0x84,0x2e,0x21,0x74,0x3d,0xa1,0x3b, +0x08,0x75,0x27,0xd4,0x9f,0xd0,0x28,0x42,0x53,0x08,0x3d,0x4e, +0xe8,0x05,0x42,0x6f,0x11,0xfa,0x94,0xd0,0xf7,0x84,0xfe,0x22, +0xcc,0x98,0x30,0x5b,0xc2,0x4a,0x13,0x56,0x95,0xb0,0x06,0x84, +0xb5,0x26,0xac,0x1b,0x61,0x03,0x09,0x1b,0x4d,0xd8,0x34,0xc2, +0x16,0x12,0xb6,0x86,0xb0,0x03,0x84,0x85,0x12,0x66,0x20,0x2c, +0x87,0xb0,0x73,0x84,0xdd,0x24,0xec,0x29,0x61,0x1f,0x08,0x2b, +0x20,0xdc,0x94,0x70,0x47,0xc2,0x2b,0x10,0x5e,0x85,0xf0,0xba, +0x84,0x77,0x22,0x7c,0x08,0xe1,0xd3,0x08,0x5f,0x4c,0xf8,0x06, +0xc2,0x77,0x13,0xee,0x45,0x78,0x10,0xe1,0xf1,0x84,0x67,0x13, +0x7e,0x8a,0xf0,0x6b,0x84,0x3f,0x26,0xfc,0x3d,0xe1,0xbf,0x88, +0x28,0x42,0x84,0x1d,0x11,0xe5,0x88,0xa8,0x45,0x44,0x73,0x22, +0xba,0x10,0x31,0x90,0x88,0xb1,0x44,0xcc,0x22,0x62,0x39,0x11, +0xeb,0x89,0xd8,0x45,0x84,0x27,0x11,0xa1,0x44,0x24,0x12,0x71, +0x8c,0x88,0x73,0x44,0xdc,0x22,0x22,0x9f,0x88,0xb7,0x44,0x7c, +0x21,0x52,0x88,0xb4,0x26,0xb2,0x34,0x91,0xd5,0x89,0x6c,0x42, +0x64,0x47,0x22,0xfb,0x11,0x39,0x8a,0xc8,0xe9,0x44,0x2e,0x21, +0xd2,0x85,0xc8,0x1d,0x44,0xba,0x11,0xe9,0x43,0x64,0x08,0x91, +0xb1,0x44,0xa6,0x12,0x79,0x8c,0xc8,0xb3,0x44,0x5e,0x25,0xf2, +0x05,0x91,0x05,0x44,0x59,0x10,0x55,0x8c,0xa8,0x72,0x44,0xd5, +0x20,0xaa,0x11,0x51,0x2d,0x88,0xea,0x44,0x54,0x1f,0xa2,0x86, +0x12,0x35,0x9e,0xa8,0x69,0x44,0x2d,0x20,0x6a,0x15,0x51,0x9b, +0x89,0xda,0x43,0xd4,0x61,0xa2,0x02,0x89,0x8a,0x26,0x2a,0x85, +0xa8,0x63,0x44,0x9d,0x23,0xea,0x3a,0x51,0x0f,0x89,0x7a,0x45, +0xd4,0x17,0xa2,0xfe,0x10,0x6d,0x42,0x74,0x49,0xa2,0xab,0x10, +0xdd,0x80,0xe8,0x16,0x44,0x77,0x21,0x7a,0x00,0xd1,0xa3,0x89, +0x9e,0x48,0xf4,0x5c,0xa2,0x57,0x12,0xed,0x4a,0xf4,0x7e,0xa2, +0x8f,0x10,0x1d,0x44,0x74,0x1c,0xd1,0x99,0x44,0x9f,0x26,0xfa, +0x1a,0xd1,0x8f,0x88,0x7e,0x4b,0xf4,0x4f,0x62,0x20,0xc6,0x82, +0x98,0xe2,0xc4,0x38,0x11,0x53,0x8f,0x98,0x56,0xc4,0x74,0x23, +0x66,0x10,0x31,0x63,0x89,0x99,0x49,0xcc,0x52,0x62,0x5c,0x88, +0xd9,0x4d,0x8c,0x3b,0x31,0x01,0xc4,0xc4,0x10,0x93,0x4e,0xcc, +0x49,0x62,0xae,0x10,0xf3,0x80,0x98,0xd7,0xc4,0x7c,0x27,0x56, +0x89,0xb5,0x21,0xb6,0x34,0xb1,0xd5,0x88,0x6d,0x44,0x6c,0x2b, +0x62,0xbb,0x11,0x3b,0x88,0xd8,0xb1,0xc4,0xce,0x24,0x76,0x29, +0xb1,0x2e,0xc4,0xee,0x26,0xd6,0x93,0x58,0x7f,0x62,0xa3,0x89, +0x4d,0x23,0x36,0x8f,0xd8,0xcb,0xc4,0xde,0x27,0xf6,0x15,0xb1, +0xdf,0x88,0x83,0x38,0x6b,0xe2,0x2a,0x10,0xd7,0x90,0xb8,0xce, +0xc4,0x39,0x13,0x37,0x8e,0xb8,0x19,0xc4,0x2d,0x20,0xce,0x85, +0xb8,0xed,0xc4,0x1d,0x26,0x2e,0x88,0xb8,0x58,0xe2,0xd2,0x89, +0xcb,0x23,0xee,0x12,0x71,0x77,0x89,0x7b,0x4e,0xdc,0x27,0xe2, +0x0a,0x89,0x57,0xe2,0xad,0x89,0x2f,0x49,0x7c,0x65,0xe2,0xeb, +0x11,0xdf,0x92,0xf8,0x2e,0xc4,0xf7,0x27,0x7e,0x24,0xf1,0x53, +0x88,0x9f,0x4f,0xfc,0x2a,0xe2,0x5d,0x89,0xdf,0x47,0xbc,0x37, +0xf1,0xa1,0xc4,0x27,0x10,0x9f,0x45,0xfc,0x69,0xe2,0xaf,0x12, +0xff,0x80,0xf8,0x57,0xc4,0x7f,0x25,0xfe,0x1f,0x09,0x16,0x24, +0x14,0x23,0xa1,0x22,0x09,0xb5,0x49,0x68,0x46,0x42,0x47,0x12, +0xfa,0x90,0x30,0x8c,0x84,0x89,0x24,0x4c,0x27,0x61,0x2e,0x09, +0x2b,0x48,0xd8,0x44,0xc2,0x1e,0x12,0x3c,0x49,0x08,0x26,0x21, +0x8e,0x84,0x0c,0x12,0x4e,0x92,0x70,0x99,0x84,0x7b,0x24,0xbc, +0x20,0xe1,0x33,0x09,0x7f,0x30,0x98,0x61,0x70,0xc4,0x50,0x1e, +0x43,0x4d,0x0c,0x4d,0x30,0xb4,0xc7,0xd0,0x0b,0x83,0x33,0x86, +0xf1,0x18,0x66,0x61,0x58,0x8a,0x61,0x03,0x86,0x2d,0x18,0xf6, +0x62,0x38,0x8c,0x21,0x00,0x43,0x24,0x86,0x44,0x0c,0x59,0x18, +0x4e,0x62,0xf8,0x0f,0xc3,0x2d,0x0c,0x8f,0x31,0xbc,0xc6,0xf0, +0x05,0x43,0x21,0x89,0x26,0x24,0xda,0x90,0x58,0x82,0xc4,0x8a, +0x24,0xd6,0x24,0xb1,0x11,0x89,0x2d,0x49,0xec,0x44,0x62,0x6f, +0x12,0x87,0x90,0x38,0x86,0xc4,0xa9,0x24,0xce,0x23,0x71,0x39, +0x89,0x1b,0x48,0xdc,0x4e,0xe2,0x01,0x12,0xbd,0x49,0x0c,0x26, +0x31,0x86,0xc4,0x14,0x12,0x8f,0x92,0x78,0x92,0xc4,0xff,0x48, +0xbc,0x45,0xe2,0x63,0x12,0x5f,0x93,0xf8,0x85,0xc4,0x42,0x92, +0x4c,0x48,0xb2,0x26,0xa9,0x18,0x49,0xe5,0x48,0xaa,0x4a,0x52, +0x53,0x92,0xba,0x92,0xe4,0x4c,0xd2,0x14,0x92,0xe6,0x92,0xb4, +0x8c,0xa4,0xf5,0x24,0x6d,0x23,0x69,0x3f,0x49,0x5e,0x24,0x05, +0x91,0x64,0x20,0xe9,0x38,0x49,0x97,0x49,0x7a,0x44,0xd2,0x1b, +0x92,0x7e,0x93,0x6c,0x4e,0x72,0x71,0x92,0x2b,0x92,0x5c,0x8b, +0xe4,0x26,0x24,0xb7,0x23,0xb9,0x07,0xc9,0x83,0x48,0x1e,0x4d, +0xf2,0x54,0x92,0xe7,0x93,0xbc,0x92,0xe4,0x4d,0x24,0xef,0x26, +0xf9,0x10,0xc9,0x01,0x24,0x47,0x91,0x9c,0x4c,0xf2,0x51,0x92, +0xcf,0x92,0x7c,0x8d,0xe4,0x07,0x24,0xbf,0x24,0xf9,0x33,0xc9, +0x85,0xa4,0x14,0x21,0xc5,0x8e,0x94,0xd2,0xa4,0x54,0x21,0xa5, +0x1e,0x29,0x2d,0x48,0xe9,0x44,0x4a,0x1f,0x52,0x86,0x92,0x32, +0x9e,0x94,0x99,0xa4,0x2c,0x26,0x65,0x2d,0x29,0x5b,0x49,0xd9, +0x4f,0x8a,0x37,0x29,0x21,0xa4,0xc4,0x91,0x92,0x4e,0xca,0x09, +0x52,0x2e,0x92,0x72,0x8b,0x94,0x27,0xa4,0xbc,0x25,0xe5,0x3b, +0xa9,0x42,0xaa,0x05,0xa9,0x45,0x49,0x2d,0x4f,0x6a,0x0d,0x52, +0x1b,0x91,0xda,0x86,0xd4,0x6e,0xa4,0x0e,0x20,0x75,0x24,0xa9, +0x93,0x49,0x9d,0x4b,0xea,0x72,0x52,0x5d,0x48,0xdd,0x49,0xaa, +0x3b,0xa9,0x7e,0xa4,0x46,0x90,0x9a,0x48,0x6a,0x36,0xa9,0xa7, +0x49,0xbd,0x42,0xea,0x3d,0x52,0x9f,0x93,0xfa,0x91,0xd4,0xdf, +0xa4,0x19,0x93,0x66,0x43,0x5a,0x49,0xd2,0x9c,0x48,0xab,0x43, +0x5a,0x63,0xd2,0x3a,0x92,0xd6,0x9f,0xb4,0x31,0xa4,0xcd,0x22, +0x6d,0x05,0x69,0x5b,0x48,0x3b,0x40,0x9a,0x17,0x69,0x81,0xa4, +0x45,0x92,0x66,0x20,0x2d,0x83,0xb4,0x5c,0xd2,0xce,0x91,0x76, +0x95,0xb4,0xbb,0xa4,0x3d,0x25,0xed,0x0d,0x69,0x5f,0x48,0x2b, +0x20,0xdd,0x88,0x74,0x4b,0xd2,0x1d,0x49,0x2f,0x43,0x7a,0x65, +0xd2,0x6b,0x93,0xde,0x98,0xf4,0xd6,0xa4,0x77,0x26,0xbd,0x37, +0xe9,0x83,0x49,0x1f,0x45,0xfa,0x24,0xd2,0x67,0x91,0xbe,0x88, +0xf4,0x55,0xa4,0x6f,0x24,0x7d,0x07,0xe9,0x07,0x48,0xf7,0x22, +0x3d,0x90,0xf4,0x48,0xd2,0x0d,0xa4,0x67,0x90,0x9e,0x4b,0xfa, +0x39,0xd2,0xaf,0x92,0xfe,0x88,0xf4,0x77,0xa4,0xff,0x26,0xc3, +0x94,0x0c,0x3b,0x32,0x4a,0x91,0xe1,0x44,0x46,0x6d,0x32,0x9a, +0x90,0xd1,0x96,0x8c,0x6e,0x64,0xf4,0x27,0x63,0x38,0x19,0x13, +0xc8,0x98,0x49,0xc6,0x22,0x32,0x56,0x93,0xb1,0x99,0x8c,0xdd, +0x64,0x78,0x90,0xe1,0x47,0x46,0x38,0x19,0x09,0x64,0x64,0x90, +0x71,0x82,0x8c,0x0b,0x64,0xdc,0x20,0xe3,0x21,0x19,0x2f,0xc9, +0xf8,0x44,0xc6,0x6f,0x32,0x8d,0xc8,0xb4,0x22,0xb3,0x18,0x99, +0xe5,0xc9,0xac,0x4e,0x66,0x03,0x32,0x5b,0x92,0xd9,0x89,0xcc, +0xde,0x64,0x0e,0x21,0x73,0x0c,0x99,0x53,0xc9,0x9c,0x47,0xe6, +0x72,0x32,0x37,0x90,0xb9,0x9d,0xcc,0x03,0x64,0x7a,0x93,0x19, +0x4c,0x66,0x0c,0x99,0x29,0x64,0x1e,0x25,0xf3,0x0c,0x99,0x57, +0xc8,0xbc,0x4b,0xe6,0x33,0x32,0xdf,0x91,0xf9,0x9d,0xcc,0x7f, +0x64,0x99,0x91,0x65,0x4f,0x56,0x69,0xb2,0x2a,0x93,0x55,0x87, +0xac,0xa6,0x64,0xb5,0x23,0xab,0x3b,0x59,0x03,0xc8,0x1a,0x41, +0xd6,0x44,0xb2,0x66,0x91,0xb5,0x98,0xac,0x35,0x64,0xb9,0x92, +0xb5,0x87,0xac,0x43,0x64,0xf9,0x93,0x15,0x41,0x96,0x81,0xac, +0x4c,0xb2,0xf2,0xc8,0xba,0x48,0xd6,0x4d,0xb2,0x1e,0x91,0xf5, +0x8a,0xac,0xcf,0x64,0x15,0x90,0x6d,0x4c,0xb6,0x35,0xd9,0xc5, +0xc9,0xae,0x40,0x76,0x0d,0xb2,0x1b,0x92,0xdd,0x8a,0xec,0xce, +0x64,0xf7,0x21,0xdb,0x99,0xec,0xb1,0x64,0x4f,0x23,0x7b,0x3e, +0xd9,0x2b,0xc8,0x76,0x21,0x7b,0x07,0xd9,0x6e,0x64,0xfb,0x90, +0x1d,0x42,0x76,0x2c,0xd9,0xa9,0x64,0x1f,0x23,0xfb,0x2c,0xd9, +0x57,0xc9,0xbe,0x47,0x76,0x3e,0xd9,0xef,0xc9,0xfe,0x41,0x8e, +0x90,0x63,0x4e,0x8e,0x03,0x39,0x65,0xc8,0xa9,0x42,0x4e,0x5d, +0x72,0x9a,0x91,0xd3,0x9e,0x9c,0x1e,0xe4,0x0c,0x24,0x67,0x24, +0x39,0x93,0xc8,0x99,0x4d,0xce,0x12,0x72,0xd6,0x92,0xb3,0x85, +0x9c,0xdd,0xe4,0x1c,0x24,0xc7,0x9b,0x9c,0x40,0x8e,0x96,0xe6, +0x68,0x75,0x8e,0x36,0xe0,0xe8,0x30,0x8e,0x5e,0xe3,0xe8,0x4b, +0x8e,0xb5,0xe6,0x58,0x37,0x8e,0x2d,0xe7,0x58,0x14,0xc7,0x85, +0xe3,0xcb,0x39,0x9e,0x40,0xae,0x11,0xb9,0xd5,0xc8,0x6d,0x4a, +0x6e,0x27,0x72,0x77,0x93,0x7b,0x8c,0x13,0xc2,0x09,0x6b,0x4e, +0x78,0x72,0xc2,0x9f,0x13,0x6f,0xc8,0x83,0x3c,0x2b,0xf2,0x4a, +0x93,0xd7,0x9d,0xbc,0x51,0xe4,0xed,0x23,0xcf,0x9f,0xbc,0x18, +0xf2,0x32,0xc9,0xbb,0x41,0xde,0x0b,0x4e,0xd6,0xe3,0x64,0x4b, +0x4e,0xba,0x71,0xf2,0x37,0xa7,0x6a,0x71,0xaa,0x33,0xa7,0x96, +0x71,0x6a,0x2f,0xa7,0xe2,0x39,0x75,0x89,0x53,0xf7,0x39,0xf5, +0x85,0xd3,0x5d,0x38,0xbd,0x87,0xd3,0xdf,0x39,0x63,0xcb,0x99, +0xd2,0x9c,0xa9,0xc6,0x99,0xd6,0x9c,0xe9,0xce,0x99,0x65,0x9c, +0x71,0xe5,0xac,0x03,0x67,0x6b,0x73,0xb6,0x05,0x67,0x07,0x70, +0x76,0x04,0x67,0x33,0x39,0xfb,0x87,0x73,0x76,0x9c,0x2b,0xcd, +0xb9,0x68,0xce,0xa5,0x73,0xee,0x21,0xe7,0xde,0x70,0xee,0x07, +0xe7,0xa7,0x71,0x7e,0x11,0xe7,0x73,0x38,0x7f,0x8b,0x0b,0xb6, +0x5c,0x28,0xc3,0x85,0x9e,0x5c,0x48,0xe1,0xc2,0x09,0x2e,0xfc, +0x3f,0x79,0xc1,0xc5,0x6a,0x5c,0x74,0xe6,0xa2,0x1b,0x17,0x63, +0xb9,0x78,0x9c,0xff,0x2a,0xf3,0x5f,0x3d,0xfe,0x6b,0xc9,0x7f, +0x43,0xf8,0x6f,0x12,0xff,0xed,0xe4,0x3f,0x4f,0x2e,0xd5,0xe3, +0x52,0x0c,0x97,0x32,0xb9,0x5c,0x89,0xcb,0x4d,0xb8,0xdc,0x99, +0xcb,0xfd,0xb8,0x9c,0xc1,0xe5,0xdb,0x5c,0x7e,0xc6,0xe5,0x0f, +0x5c,0x31,0xe7,0xca,0x4c,0xae,0xac,0xe7,0xca,0x1e,0xae,0x1c, +0xe2,0x4a,0x1a,0x57,0xce,0x72,0xe5,0x2a,0x57,0xbb,0x71,0xd5, +0xc0,0xd5,0x8b,0x5c,0x7d,0xc2,0xd5,0x4f,0x5c,0x33,0xe5,0x5a, +0x19,0xae,0x4d,0xe5,0x5a,0x18,0xd7,0xae,0x71,0xed,0x21,0xd7, +0x85,0xeb,0x0d,0xb9,0xde,0x9b,0xeb,0x5b,0xb8,0x9e,0xcf,0xf5, +0x9f,0xdc,0x30,0xe5,0x86,0x13,0x37,0x7a,0x73,0x23,0x97,0x1b, +0x57,0xb8,0xd9,0x82,0x9b,0x13,0xb9,0xb9,0x8a,0x9b,0xa9,0xdc, +0xbc,0xc9,0xad,0xce,0xdc,0x4a,0xe0,0xd6,0x35,0x6e,0xbd,0xe0, +0xd6,0x57,0x6e,0xcf,0xe4,0xf6,0x7e,0x6e,0x07,0x71,0x3b,0x8e, +0xdb,0x39,0xdc,0xa9,0xc3,0x9d,0xfe,0xdc,0xd9,0xc8,0x9d,0xdd, +0xdc,0x39,0xc4,0x9d,0x74,0xee,0xfc,0xc7,0xdd,0x96,0xdc,0xed, +0xc2,0xdd,0x01,0xdc,0x1d,0xc9,0xdd,0x29,0xdc,0x5d,0xcc,0xdd, +0xbb,0xdc,0xab,0xc9,0xbd,0x16,0xdc,0x1b,0xc9,0xbd,0xc5,0xdc, +0x8b,0xe2,0x7e,0x79,0xee,0xef,0xe4,0x7e,0x22,0xf7,0xcf,0xf2, +0xa0,0x02,0x0f,0xf6,0xf2,0x20,0x90,0x07,0xb9,0x3c,0x78,0xcb, +0x43,0x53,0x1e,0x96,0xe1,0x61,0x0d,0x1e,0xf6,0xe4,0xe1,0x60, +0x1e,0xba,0xf2,0xf0,0x31,0x0f,0x3f,0xf3,0x68,0x08,0x8f,0xa6, +0xf2,0x68,0x31,0x8f,0xfc,0x78,0x14,0xcb,0x63,0x6b,0x1e,0x4f, +0xe1,0xf1,0x7c,0x1e,0xaf,0xe6,0xf1,0x21,0x1e,0x07,0xf3,0x38, +0x91,0xc7,0xd7,0x78,0xfc,0x88,0xc7,0xaf,0x79,0x52,0x9b,0x27, +0x2d,0x79,0xd2,0x8d,0x27,0xe3,0x78,0xb2,0x85,0x27,0x87,0x79, +0x12,0xca,0x93,0x3c,0x9e,0x5c,0xe1,0x69,0x5b,0x9e,0xf6,0xe1, +0xe9,0x28,0x9e,0x4e,0xe0,0xe9,0x0c,0x9e,0xce,0xe3,0xe9,0x56, +0x9e,0xfa,0xf0,0xf4,0x2d,0xcf,0x06,0xf0,0x6c,0x14,0xcf,0x36, +0xf2,0x2c,0x90,0x67,0x57,0x79,0xf6,0x8e,0x67,0x05,0xe4,0x9b, +0x90,0x6f,0x43,0x7e,0x69,0xf2,0x2b,0x93,0x5f,0x8f,0xfc,0xe6, +0xe4,0xf7,0x26,0xdf,0x99,0xfc,0x71,0xe4,0x6f,0x24,0xff,0x10, +0xf9,0x06,0xf2,0xcf,0x93,0xff,0x98,0xe7,0x76,0x3c,0xaf,0xca, +0xf3,0xa6,0x3c,0x1f,0xc6,0xf3,0xc9,0x3c,0x5f,0xcc,0xf3,0x54, +0x9e,0xdf,0xe7,0x45,0x27,0x5e,0x4c,0xe3,0xc5,0x2a,0x5e,0xec, +0xe2,0x85,0x17,0x2f,0xc2,0x78,0x91,0xc0,0x8b,0x0c,0x5e,0x9c, +0xe1,0x65,0x71,0x5e,0x8e,0xe1,0xe5,0x5a,0x5e,0xa6,0xf0,0xf2, +0x3a,0x2f,0x1f,0xf3,0xf2,0x3d,0x2f,0xbf,0xf2,0x0a,0x5e,0x95, +0xe0,0xd5,0x3c,0x5e,0x5d,0xe0,0xd5,0x33,0x5e,0xbd,0xe7,0xd5, +0x6f,0x5e,0x97,0xe4,0xf5,0x34,0x5e,0x2f,0xe3,0xb5,0x17,0xaf, +0x43,0x78,0x1d,0xcb,0xeb,0xb7,0xbc,0xfe,0xc7,0x1b,0x07,0xde, +0x94,0xe1,0x4d,0x55,0xde,0xb4,0xe2,0x4d,0x37,0xde,0x0c,0xe6, +0x4d,0x2e,0x6f,0x9e,0xf1,0x76,0x08,0x6f,0xe7,0xf0,0xd6,0x95, +0xb7,0x07,0x78,0xeb,0xcb,0xbb,0xe2,0xbc,0xab,0xc7,0xbb,0xe6, +0xbc,0xeb,0xc0,0xbb,0x20,0xde,0x19,0x78,0x77,0x96,0xf7,0x4e, +0xbc,0xaf,0xcf,0xfb,0x76,0xbc,0xef,0xc2,0xfb,0x3e,0xbc,0x1f, +0xc4,0xfb,0x09,0xbc,0x4f,0xe3,0xfd,0x29,0x3e,0x28,0x1f,0x5a, +0xf3,0xa1,0x27,0x1f,0x96,0xf3,0xc1,0x85,0x0f,0x3e,0x7c,0xb4, +0xe0,0x63,0x51,0x3e,0x56,0xe0,0x63,0x4d,0x3e,0x36,0xe2,0x63, +0x38,0x1f,0xe3,0xf8,0x98,0xc2,0xc7,0x6c,0x3e,0xe6,0xf1,0xf1, +0x22,0x1f,0xbf,0xf3,0xc9,0x88,0x4f,0x25,0xf9,0x54,0x8b,0x4f, +0x7e,0x7c,0x36,0xe2,0x73,0x31,0x3e,0x57,0xe7,0xf3,0x7e,0x3e, +0x7b,0xf3,0x39,0x8c,0xcf,0x2f,0xf8,0xd2,0x87,0x2f,0x83,0xf8, +0x32,0x9c,0x2f,0x63,0xf9,0x72,0x8e,0xaf,0x76,0x7c,0x2d,0xce, +0xd7,0xf6,0x7c,0xed,0xc5,0xd7,0x49,0x7c,0x5d,0xc0,0xd7,0xbd, +0x7c,0x3d,0xcc,0xd7,0xdf,0x7c,0x33,0xe2,0x9b,0x2d,0xdf,0x2a, +0xf0,0x6d,0x2e,0xdf,0xb2,0xf8,0x5e,0x9d,0xef,0xee,0xfc,0x30, +0xe3,0xc7,0x50,0x7e,0x64,0xf1,0xe3,0x2c,0x3f,0xbe,0xf3,0xd3, +0x84,0x9f,0x76,0xfc,0x2c,0xc3,0xcf,0x36,0xfc,0xec,0xc4,0xcf, +0xfe,0xfc,0x0c,0xe3,0x97,0x25,0xbf,0x6a,0xf2,0xab,0x3b,0xbf, +0x06,0xf2,0x6b,0x14,0xbf,0x66,0xf0,0xcb,0x83,0x5f,0x01,0xfc, +0x4a,0xe5,0xb7,0x1d,0xbf,0x97,0xf1,0xfb,0x00,0xbf,0x3d,0xf9, +0xfd,0x96,0xdf,0x7f,0x28,0x28,0x43,0x41,0x55,0x0a,0x86,0x52, +0xb0,0x86,0x02,0x2f,0x0a,0x3e,0x53,0x50,0x40,0xe1,0x24,0x0a, +0xe7,0x53,0xb8,0x82,0x42,0x17,0x0a,0x77,0x50,0xf8,0x9e,0x3f, +0x76,0xfc,0x99,0xc9,0x9f,0xc5,0xfc,0xc9,0xe3,0xaf,0x29,0x7f, +0x5b,0xf3,0x77,0x21,0x7f,0x5d,0xf8,0xeb,0xc3,0xdf,0x0c,0xfe, +0xd9,0xf0,0x6f,0x20,0xff,0x76,0xf3,0x2f,0x4c,0x45,0x54,0xca, +0xa8,0xb4,0x50,0x39,0xa0,0xf2,0x49,0x19,0xa1,0x9c,0x50,0x2d, +0xa5,0x5a,0x5b,0xb5,0x8f,0xaa,0x41,0x8d,0xca,0xa8,0x51,0x33, +0x35,0xea,0xab,0x46,0xce,0x6a,0x34,0x5e,0x8d,0x62,0xd5,0xe8, +0xa4,0x1a,0xbd,0x50,0x63,0x51,0x63,0x6b,0x35,0x2e,0xad,0xc6, +0x0b,0xd5,0x78,0x95,0x1a,0x9f,0x51,0xe3,0x5b,0x6a,0xfc,0x43, +0x4d,0x4c,0xd4,0xa4,0xb8,0x9a,0x54,0x57,0x93,0xa6,0x6a,0xd2, +0x46,0x4d,0x82,0xd4,0x24,0x41,0x4d,0x32,0xd4,0xe4,0xbe,0x9a, +0xbc,0xd0,0x22,0xce,0x5a,0x64,0xbc,0x16,0x99,0xa9,0x45,0x52, +0xb4,0xc8,0x69,0x2d,0x72,0x5d,0x8b,0xbc,0x55,0x53,0x5b,0x35, +0x2d,0xab,0xa6,0xd5,0xd4,0x74,0x99,0x9a,0x6e,0x50,0xd3,0x04, +0x35,0xab,0xa8,0x66,0xae,0x6a,0xf6,0x50,0xcd,0x9e,0xab,0xf9, +0x10,0x35,0x1f,0xa5,0xe6,0x13,0xd5,0xfc,0x98,0x5a,0x58,0xa8, +0xc5,0x44,0xb5,0xb8,0xa0,0x16,0xd7,0xd4,0xe2,0xae,0x5a,0x3c, +0x51,0x8b,0x57,0x6a,0x39,0x58,0x2d,0xc7,0xa8,0xe5,0x71,0xb5, +0xbc,0xac,0x96,0x77,0xd5,0xf2,0xb9,0x5a,0xbe,0x53,0xab,0x62, +0x6a,0x55,0x51,0xad,0xea,0xaa,0xd5,0x70,0xb5,0x5a,0xa8,0x56, +0x19,0x6a,0xf5,0x5c,0xad,0x9b,0xab,0x75,0x27,0xb5,0x1e,0xa6, +0xd6,0xe1,0x6a,0x63,0xaa,0x36,0x0d,0xd5,0x66,0xa1,0xda,0x6c, +0x50,0x9b,0x9d,0x6a,0xf3,0x5d,0x6d,0x6b,0xa9,0xed,0x22,0xb5, +0x75,0x51,0xdb,0x3d,0x6a,0x7b,0x52,0x6d,0xcf,0xab,0xed,0x17, +0xb5,0x6b,0xab,0x76,0xab,0xd5,0x2e,0x52,0xed,0xcd,0xd4,0x7e, +0xb2,0xda,0x2f,0x52,0xfb,0xeb,0xea,0xd0,0x48,0x1d,0xda,0xa8, +0x83,0xb3,0x3a,0xec,0x57,0x87,0x10,0x75,0x30,0xa8,0x43,0xb6, +0x3a,0xdc,0x52,0x87,0x7c,0x75,0xac,0xac,0x8e,0x1d,0xd4,0x71, +0x9f,0x3a,0x1e,0x57,0xc7,0x73,0xea,0x78,0x4b,0x1d,0x9f,0x6a, +0x51,0x47,0x2d,0xda,0x52,0x8b,0x0e,0xd6,0xa2,0xa3,0xb5,0xe8, +0x12,0x2d,0xba,0x41,0x8b,0xee,0xd3,0xa2,0x91,0x5a,0x34,0x5e, +0x8b,0x9e,0xd5,0xa2,0xff,0x2f,0x28,0xd4,0x62,0xe6,0x5a,0xcc, +0x49,0x8b,0xad,0xd3,0x62,0xaf,0xb4,0x78,0x07,0x2d,0x3e,0x58, +0x8b,0x4f,0xd4,0xe2,0xbb,0xb4,0xf8,0x47,0x2d,0xd1,0x47,0x4b, +0xc4,0x6a,0x49,0x0b,0x2d,0x39,0x52,0x4b,0x7a,0x6a,0xc9,0x6f, +0x5a,0xaa,0xbf,0x96,0x32,0x68,0x69,0x7b,0x2d,0xdd,0x42,0x4b, +0x3b,0x6b,0x69,0x37,0x2d,0x1d,0xa0,0xa5,0x53,0xb5,0xf4,0x29, +0x2d,0xfd,0x4c,0x4b,0x7f,0xd0,0x32,0xe6,0x5a,0x66,0xa8,0x96, +0x49,0xd5,0x32,0x79,0x5a,0xb6,0xa4,0x96,0x9d,0xa8,0x65,0x8f, +0x69,0xd9,0xab,0x5a,0xae,0x8c,0x96,0x5b,0xa6,0xe5,0xb6,0x6b, +0xb9,0x70,0x2d,0x77,0x46,0xcb,0xdd,0xd2,0x72,0x4f,0xb4,0x7c, +0x15,0x2d,0xdf,0x51,0xcb,0xf7,0xd2,0xf2,0xb3,0xb4,0xfc,0x2a, +0x2d,0xff,0x40,0x2b,0x74,0xd2,0x0a,0xd3,0xb5,0xc2,0x32,0xad, +0xe0,0xaa,0x15,0x32,0xb4,0xc2,0x2d,0xad,0xf0,0x41,0x2b,0x56, +0xd2,0x8a,0x4d,0xb5,0x62,0x27,0xad,0xd8,0x43,0x2b,0xf6,0xd3, +0x8a,0x01,0x5a,0x31,0x53,0x2b,0x95,0xd0,0x4a,0xd3,0xb5,0x52, +0x9e,0x56,0xba,0xa9,0x4e,0xad,0xd5,0x69,0xb4,0x3a,0xcd,0x50, +0xa7,0x95,0xea,0xb4,0x43,0x9d,0x42,0xd5,0xe9,0xb2,0x3a,0xdd, +0xd1,0xca,0xcd,0xb5,0x72,0x57,0xad,0xdc,0x57,0x2b,0x4f,0xd4, +0xca,0xbe,0x5a,0xf9,0xff,0xc9,0x1b,0xad,0xd2,0x4c,0xab,0xf8, +0x68,0x95,0x64,0xad,0x72,0x49,0xab,0x3c,0xd6,0x2a,0xef,0xb4, +0xca,0x2f,0xad,0x6a,0xa2,0x55,0x8b,0x6a,0xd5,0xca,0x5a,0xb5, +0x97,0x56,0x1d,0xa1,0x55,0xa7,0x6b,0xd5,0x08,0xad,0x56,0x44, +0xab,0xd9,0x6b,0xb5,0xb6,0x5a,0x6d,0x8a,0x56,0xcb,0xd3,0xea, +0x0e,0x5a,0xbd,0xbd,0x56,0xdf,0xaf,0xd5,0xc3,0xb4,0xfa,0x0d, +0xad,0xd1,0x42,0x6b,0x6c,0xd3,0x1a,0x97,0xb4,0xc6,0x6b,0xad, +0xf1,0x5d,0x6b,0xb6,0xd1,0x9a,0xeb,0xb4,0xe6,0x66,0xad,0xf9, +0x50,0x6b,0xd5,0xd5,0x5a,0x3b,0xb4,0x56,0x94,0xd6,0xba,0xad, +0xb5,0x9e,0x69,0xad,0x42,0xad,0x6d,0xa3,0xb5,0xcb,0x69,0xed, +0xa6,0x5a,0xbb,0x83,0xd6,0x76,0xd6,0xda,0xee,0x5a,0xfb,0xb2, +0xd6,0x7e,0xa4,0x75,0x5a,0x69,0x1d,0x5f,0xad,0xf3,0x46,0xeb, +0xfc,0xd4,0xba,0x26,0x5a,0xb7,0x84,0xd6,0x2d,0xa7,0x75,0x07, +0x6a,0x5d,0x1f,0xad,0xfb,0x48,0xeb,0x7e,0xd3,0x7a,0xc3,0xb4, +0xde,0x78,0xad,0xb7,0x43,0xeb,0x05,0x69,0xbd,0x04,0xad,0x97, +0xa6,0xf5,0x9e,0x6a,0xbd,0x8f,0x5a,0xbf,0xb2,0xd6,0x6f,0xa2, +0xf5,0x3b,0x69,0xfd,0xde,0x5a,0xdf,0x57,0xeb,0xbf,0xd2,0xfa, +0x3f,0xb4,0x41,0x27,0x6d,0xb0,0x59,0x1b,0xec,0xd3,0x06,0x21, +0xda,0xe0,0xad,0x36,0x28,0xd0,0x86,0x65,0xb4,0x61,0x0b,0x6d, +0xd8,0x4d,0x1b,0x4e,0xd1,0x86,0x5b,0xb5,0xa1,0x97,0x36,0x4c, +0xd0,0x86,0x7f,0xb4,0x51,0x47,0x6d,0xb4,0x44,0x1b,0x6d,0xd0, +0x46,0x7b,0xb5,0xd1,0x63,0x6d,0x8c,0x36,0x1e,0xae,0x8d,0xa7, +0x68,0xe3,0x34,0x6d,0x62,0xa2,0x4d,0xaa,0x6a,0x93,0xc6,0xda, +0x64,0x8e,0x36,0xd9,0xaa,0x4d,0xf6,0x6b,0x93,0x78,0x6d,0x52, +0xa8,0x4d,0x4d,0xb5,0xa9,0xad,0x36,0x6d,0xa4,0x4d,0x97,0x6a, +0xd3,0x78,0x6d,0xfa,0x5b,0x9b,0x95,0xd1,0x66,0x43,0xb5,0xd9, +0x3c,0x6d,0xb6,0x4b,0x9b,0x45,0x6b,0xb3,0x53,0xda,0xec,0x92, +0x36,0x7b,0xa6,0xcd,0x9b,0x68,0xf3,0x4e,0xda,0x7c,0xa4,0x36, +0x5f,0xac,0xcd,0xd7,0x69,0xf3,0x68,0x6d,0x9e,0xaa,0x2d,0x8c, +0xb4,0x45,0x37,0x6d,0x31,0x5f,0x5b,0xb8,0x68,0x8b,0xe3,0xda, +0x52,0xb5,0xa5,0x95,0xb6,0x1c,0xa5,0x2d,0xe7,0x6a,0xcb,0x30, +0x6d,0x65,0xa4,0xad,0x5a,0x6b,0xab,0xc3,0xda,0x2a,0x5e,0x5b, +0x9d,0xd0,0xd6,0x8e,0xda,0xba,0xb6,0xb6,0x6e,0xa3,0xad,0x57, +0x68,0xeb,0x3d,0xda,0x3a,0x4e,0x5b,0xdf,0xd0,0x36,0xaa,0x6d, +0x06,0x6a,0x9b,0xa5,0xda,0x26,0x4f,0xdb,0x3c,0xd6,0xb6,0x15, +0xb4,0xed,0x18,0x6d,0xbb,0x57,0xdb,0x46,0x69,0xdb,0x3c,0x6d, +0xfb,0x9f,0xb6,0xbd,0xab,0x6d,0xdf,0x6a,0xdb,0xef,0xda,0x0e, +0x6d,0x57,0x45,0xdb,0x35,0xd0,0x76,0xed,0xb5,0xdd,0x28,0x6d, +0xb7,0x4a,0xdb,0xb9,0x6a,0xbb,0x24,0x6d,0x6f,0xab,0xed,0xcb, +0x68,0xfb,0xe9,0xda,0xde,0x4f,0xdb,0x9f,0xd4,0x0e,0xc5,0xb4, +0xc3,0x6c,0xed,0x90,0xab,0x1d,0xae,0x69,0x87,0x5f,0xda,0xb1, +0x9f,0x76,0x5c,0xa8,0x1d,0x77,0x68,0xc7,0xcb,0xda,0xf1,0xa1, +0x76,0xaa,0xac,0x9d,0xea,0x68,0xa7,0x4e,0xda,0x69,0x9f,0x76, +0xba,0xaa,0x9d,0xee,0x6b,0xa7,0xd7,0xda,0xb9,0xb2,0x76,0x6e, +0xae,0x9d,0xa7,0x69,0xe7,0x25,0xda,0xf9,0x82,0x76,0xa9,0xae, +0x5d,0x7a,0x68,0x17,0x67,0xed,0xb2,0x44,0xbb,0x44,0x68,0x97, +0x3b,0xda,0xb5,0x85,0x76,0xed,0xa6,0x5d,0xf7,0x6a,0xd7,0x58, +0xed,0x9a,0xa9,0x5d,0x0b,0xb5,0x5b,0x0f,0xed,0x36,0x5f,0xbb, +0x6d,0xd1,0x6e,0xf1,0xda,0xed,0x9d,0x76,0xfb,0xa9,0xdd,0x4b, +0x69,0xf7,0x2a,0xda,0xbd,0xa5,0x76,0xef,0xa1,0xdd,0x87,0x6a, +0xf7,0x43,0xda,0x3d,0x54,0xbb,0x3f,0xd6,0x1e,0x4e,0xda,0x63, +0x96,0xf6,0x08,0xd4,0x1e,0x71,0xda,0x23,0x5b,0x7b,0xaa,0xf6, +0x1c,0xa0,0x3d,0x37,0x68,0xcf,0x24,0xed,0xf9,0x5c,0x7b,0x7e, +0xd3,0x5e,0xaa,0xbd,0x8a,0x6a,0xaf,0xa6,0xda,0x6b,0x81,0xf6, +0x5a,0xa7,0xbd,0x76,0x69,0xaf,0x48,0xed,0x75,0x47,0x7b,0x7d, +0xd7,0xde,0xad,0xb4,0xb7,0xab,0xf6,0xce,0xd2,0xde,0x57,0xb5, +0xf7,0x3d,0xed,0x53,0x51,0xfb,0xf4,0xd3,0x3e,0x41,0xda,0x27, +0x53,0xfb,0xdc,0xd5,0x3e,0x05,0xda,0xd7,0x48,0xfb,0x5a,0x6a, +0x5f,0x47,0xed,0x5b,0x46,0xfb,0xb6,0xd6,0xbe,0xcb,0xb5,0xef, +0x61,0xed,0x1b,0xa0,0x7d,0xa3,0xb4,0xef,0x4b,0xed,0xfb,0x4d, +0xfb,0xd5,0xd7,0x7e,0x4b,0xb4,0xdf,0x5a,0xed,0x97,0xaa,0xfd, +0xad,0xb4,0xff,0x60,0xed,0x3f,0x5d,0xfb,0xaf,0xd3,0xfe,0x67, +0xb5,0xff,0x6d,0xed,0xff,0x42,0xfb,0x7f,0xd6,0x01,0xaa,0x03, +0x6c,0x75,0x40,0x39,0x1d,0x30,0x4e,0x07,0xec,0xd0,0x01,0xee, +0x3a,0x20,0x48,0x07,0xa4,0xea,0x80,0x27,0x3a,0xb0,0x96,0x0e, +0x1c,0xac,0x03,0x0f,0xeb,0xc0,0x34,0x1d,0x78,0x4a,0x07,0x3e, +0xd7,0x81,0xdf,0x74,0xe0,0x3f,0x1d,0x64,0xa1,0x83,0x4a,0xea, +0xa0,0xc1,0x3a,0xc8,0x4b,0x07,0x5d,0xd1,0xc1,0xc5,0x75,0x70, +0x0d,0x1d,0xdc,0x5e,0x07,0xef,0xd1,0xc1,0x19,0x3a,0xc4,0x52, +0x87,0x8c,0xd7,0x21,0x8b,0x75,0x48,0x8e,0x0e,0xb9,0xa9,0x43, +0x5e,0xea,0x90,0x1f,0xea,0x6c,0xae,0xce,0x65,0xd4,0xb9,0xb5, +0x3a,0xf7,0x50,0xe7,0xe1,0xea,0x3c,0x45,0x9d,0x17,0xa9,0x73, +0x8c,0x3a,0xa7,0xaa,0x73,0xae,0x0e,0x2d,0xae,0x43,0xdb,0xe8, +0x50,0x67,0x1d,0x3a,0x5f,0x87,0xae,0xd0,0xa1,0x39,0x3a,0xf4, +0x93,0x0e,0x6b,0xab,0xc3,0xc6,0xea,0xb0,0x5d,0x3a,0x2c,0x46, +0x87,0xbd,0xd6,0x61,0xbf,0x74,0x78,0x1d,0x1d,0x3e,0x56,0x87, +0x2f,0xd2,0xe1,0x1b,0x74,0xf8,0x1e,0x1d,0x9e,0xa6,0xc3,0x4f, +0xe8,0x08,0x0b,0x1d,0x51,0x42,0x47,0x34,0xd3,0x11,0x7d,0x75, +0xc4,0x68,0x1d,0x31,0x4f,0x47,0xc4,0xeb,0x88,0x3b,0x3a,0xe2, +0x95,0x8e,0xf8,0xa1,0x23,0x8d,0x74,0x64,0x79,0x1d,0x59,0x4f, +0x47,0xb6,0xd3,0x91,0xdd,0x74,0xe4,0x14,0x1d,0x39,0x47,0x47, +0x86,0xeb,0xc8,0x54,0x1d,0x79,0x52,0x47,0x3e,0xd7,0x51,0xc6, +0x3a,0xaa,0xa3,0x8e,0xea,0xa3,0xa3,0x66,0xe8,0xa8,0x83,0x3a, +0xea,0xa4,0x8e,0x56,0x1d,0xdd,0x58,0x47,0x4f,0xd4,0xd1,0xfb, +0x75,0xf4,0x65,0x1d,0x63,0xac,0x63,0x1a,0xeb,0x98,0xd5,0x3a, +0xe6,0x90,0x8e,0x79,0xa6,0x63,0x9b,0xe9,0x58,0x17,0x1d,0x1b, +0xa8,0x63,0x0d,0x3a,0xf6,0x8f,0x8e,0x2b,0xa1,0xe3,0xaa,0xe9, +0xb8,0xa6,0x3a,0xce,0x59,0xc7,0x6d,0xd2,0x71,0x47,0x75,0xdc, +0x1b,0x1d,0x5f,0x4b,0xc7,0xf7,0xd6,0xf1,0xfb,0x74,0x7c,0xa8, +0x8e,0x2f,0xd0,0x09,0x76,0x3a,0xa1,0x94,0x4e,0xe8,0xac,0x13, +0x06,0xea,0x04,0x17,0x9d,0x90,0xac,0x13,0x3e,0xe9,0x84,0xbf, +0x3a,0xb1,0xb4,0x4e,0xac,0xaf,0x13,0x97,0xe8,0xc4,0xbd,0x3a, +0x31,0x4e,0x27,0x9e,0xd5,0x89,0x97,0x75,0x92,0xa9,0x4e,0xaa, +0xac,0x93,0x3a,0xe9,0xa4,0x95,0x3a,0x29,0x4a,0x27,0x3d,0xd7, +0xc9,0xf5,0x75,0xf2,0x48,0x9d,0xbc,0x46,0x27,0x1f,0xd4,0xc9, +0x06,0x9d,0x9c,0xa7,0x93,0x2f,0xe8,0xe4,0x57,0x3a,0xf9,0x83, +0x4e,0xfe,0xa3,0x53,0x2a,0xeb,0x94,0x06,0x3a,0xa5,0xad,0x4e, +0x99,0xa0,0x53,0x66,0xeb,0x94,0xb5,0x3a,0x65,0x9f,0x4e,0x09, +0xd1,0x29,0xbf,0x75,0x6a,0x0f,0x9d,0x3a,0x5e,0xa7,0x6e,0xd3, +0xa9,0xee,0x3a,0x35,0x4c,0xa7,0xbe,0xd5,0x69,0x76,0x3a,0xad, +0x8c,0x4e,0x9b,0xa9,0xd3,0x96,0xeb,0xb4,0x03,0x3a,0x2d,0x4e, +0xa7,0x9d,0xd3,0x69,0xdf,0x75,0x7a,0x15,0x9d,0xde,0x50,0xa7, +0xaf,0xd7,0xe9,0x11,0x3a,0x3d,0x41,0xa7,0xe7,0xe8,0xf4,0xbb, +0x3a,0xfd,0x85,0xce,0x30,0xd3,0x19,0x15,0x75,0x46,0x5d,0x9d, +0xd1,0x4a,0x67,0x74,0xd5,0x19,0x7d,0x74,0xc6,0x04,0x9d,0xb1, +0x43,0x67,0x64,0xeb,0x8c,0x5c,0x9d,0x69,0xa1,0x33,0xeb,0xeb, +0xcc,0x5e,0x3a,0x73,0x93,0xce,0x3c,0xa5,0x33,0xaf,0xe8,0x2c, +0x63,0x9d,0x55,0x5b,0x67,0xcd,0xd3,0x59,0x89,0x3a,0xeb,0x8b, +0xce,0xae,0xaf,0xb3,0x67,0xe9,0xec,0x48,0x9d,0xfd,0x4b,0xe7, +0x74,0xd6,0x39,0x43,0x75,0xce,0x2c,0x9d,0x13,0xa8,0x73,0x52, +0x75,0xce,0x05,0x9d,0x73,0x5b,0xe7,0x9a,0xe8,0xdc,0x0a,0x3a, +0x77,0x80,0xce,0x1d,0xa3,0x73,0x67,0xe8,0xdc,0x25,0x3a,0x77, +0x8d,0xce,0xcd,0xd0,0xb9,0xff,0x74,0x5e,0x1b,0x9d,0xd7,0x59, +0xe7,0xf5,0xd2,0x79,0x4b,0x75,0xde,0x06,0x9d,0x77,0x42,0xe7, +0x5b,0xea,0xfc,0xee,0x3a,0x7f,0x9d,0xce,0x3f,0xaa,0xf3,0xcf, +0xeb,0x82,0x72,0xba,0x60,0xa6,0x2e,0x58,0xa7,0x0b,0x4e,0xeb, +0x82,0x97,0xba,0xb0,0x82,0x2e,0x6c,0xa1,0x0b,0x9d,0x75,0xe1, +0x68,0x5d,0x38,0x51,0x17,0x6e,0xd0,0x85,0x07,0x74,0xa1,0x8f, +0x2e,0x0c,0xd1,0x85,0x47,0x75,0xe1,0x6f,0x5d,0x54,0x57,0x17, +0x2d,0xd1,0x45,0xa9,0xba,0xe8,0x8a,0x2e,0x2e,0xab,0x8b,0x9b, +0xeb,0xe2,0x8e,0xba,0x78,0xa6,0x2e,0x8e,0xd2,0xc5,0x19,0xba, +0xf8,0xac,0x2e,0x7e,0xac,0x8b,0x5f,0xe8,0xe2,0x8f,0xba,0xa4, +0xa6,0x2e,0x19,0xa8,0x4b,0x76,0xeb,0x92,0x14,0x5d,0xf2,0x44, +0x97,0x16,0xd7,0xa5,0xed,0x75,0xe9,0x52,0x5d,0x9a,0xa8,0xcb, +0x54,0x97,0x35,0xd4,0x65,0x43,0x74,0x59,0x80,0x2e,0xbb,0xac, +0xcb,0x7e,0xe8,0xf2,0x1a,0xba,0x7c,0x8a,0x2e,0x0f,0xd6,0xe5, +0xa7,0x75,0x85,0xe8,0x8a,0xfa,0xba,0x62,0x90,0xae,0x18,0xa7, +0x2b,0xd6,0xeb,0x8a,0x33,0xba,0xe2,0xbd,0xae,0x6c,0xa5,0x2b, +0x3b,0xe8,0xca,0x3e,0xba,0x72,0x94,0xae,0x9c,0xa1,0x2b,0xa3, +0x75,0x65,0xaa,0xae,0xcc,0xd6,0x95,0x27,0x74,0xe5,0x05,0x5d, +0x65,0xab,0xab,0x46,0xeb,0xaa,0x35,0xba,0x6a,0x8f,0xae,0x0a, +0xd5,0x55,0x06,0x5d,0x75,0x5c,0x57,0x5d,0xd1,0xd5,0xe5,0x75, +0x75,0x43,0x5d,0xbd,0x44,0x57,0xc7,0xeb,0xea,0x0f,0xba,0xa6, +0xb2,0xae,0x19,0xa3,0x6b,0x96,0xe8,0x9a,0x04,0x5d,0x93,0xa5, +0x6b,0xce,0xe9,0x9a,0x57,0xba,0xb6,0x92,0xae,0xad,0xad,0x6b, +0x87,0xeb,0xda,0x83,0xba,0xf6,0x8c,0xae,0x2d,0xd0,0x75,0x65, +0x74,0x5d,0x75,0x5d,0xd7,0x5a,0xd7,0xcd,0xd1,0x75,0x8b,0x74, +0x5d,0xa8,0xae,0x7b,0xac,0xeb,0xab,0xe8,0xfa,0x66,0xba,0x7e, +0x92,0xae,0xdf,0xab,0xeb,0xef,0xeb,0x06,0x27,0xdd,0x30,0x55, +0x37,0x04,0xe8,0x86,0x27,0xea,0x62,0xa4,0x2e,0x36,0xea,0x52, +0x5b,0x5d,0xc6,0xaa,0xcb,0x66,0x75,0xf1,0x57,0x97,0x48,0x75, +0x49,0x56,0x97,0xff,0x6f,0x15,0xea,0xc6,0xba,0xba,0xb1,0xbd, +0x6e,0xec,0xa1,0x1b,0x77,0xe8,0xc6,0x8b,0xba,0xc9,0x54,0x37, +0x55,0xd4,0x4d,0xa3,0x75,0xd3,0x32,0xdd,0xe4,0xaf,0x9b,0x1e, +0xeb,0x66,0x63,0xdd,0xdc,0x5a,0x37,0x0f,0xd7,0xcd,0x53,0x74, +0xf3,0x7a,0xdd,0xbc,0x4b,0x37,0x7b,0xea,0xe6,0x70,0xdd,0x9c, +0xaa,0xae,0xc6,0xea,0xda,0x5e,0x5d,0x17,0xab,0xab,0x8b,0xba, +0x06,0xaa,0x6b,0xb4,0xba,0xfe,0xd0,0x2d,0xb6,0xba,0x65,0x84, +0x6e,0xd9,0xaf,0x5b,0x3c,0x74,0xcb,0x03,0xdd,0x5a,0x4e,0xb7, +0x0e,0xd4,0xad,0xde,0xba,0xf5,0x8a,0x6e,0xfd,0xab,0xdb,0xac, +0x74,0x5b,0x4d,0xdd,0x36,0x59,0xb7,0x2d,0xd6,0x6d,0xe9,0xba, +0xad,0x40,0xb7,0x37,0xd2,0xed,0xb3,0x74,0x7b,0xb0,0x6e,0x3f, +0xa6,0xdb,0x9f,0xe9,0xf6,0x4f,0xba,0xc3,0x4a,0x77,0xd4,0xd4, +0x1d,0x2d,0x75,0x47,0x17,0xdd,0x31,0x4b,0x77,0xc4,0xeb,0x8e, +0x27,0xba,0xb3,0xb2,0xee,0x9c,0xae,0x3b,0xb7,0xeb,0x4e,0x3f, +0xdd,0x79,0x57,0x77,0x3e,0xd7,0x9d,0x1f,0x74,0x57,0x4b,0xdd, +0xb5,0x4c,0x77,0x79,0xe8,0xae,0x6b,0xba,0xdb,0x44,0x77,0xf7, +0xd1,0xdd,0xab,0x75,0xf7,0x51,0xdd,0x7d,0x4e,0x77,0x17,0xea, +0x9e,0x52,0xba,0xa7,0xaa,0xee,0x69,0xaf,0x7b,0x86,0xeb,0x9e, +0xed,0xba,0xe7,0x88,0xee,0xb9,0xa7,0x7b,0xab,0xe9,0xde,0x59, +0xba,0x37,0x4c,0xf7,0x7e,0xd6,0x7d,0x6d,0x74,0xdf,0x00,0xdd, +0x37,0x54,0xf7,0x2d,0xd7,0x7d,0x9e,0xba,0x2f,0x54,0xf7,0x7d, +0xd2,0xfd,0x66,0xba,0x7f,0x90,0xee,0x3f,0xa0,0xfb,0x8f,0xeb, +0x01,0x0b,0x3d,0xd0,0x5f,0x0f,0x2c,0xd1,0x03,0xdb,0xf5,0x80, +0x8f,0x1e,0x08,0xd1,0x03,0x09,0x7a,0xe0,0xbd,0xba,0x95,0x57, +0xb7,0x9e,0xea,0x36,0x5c,0xdd,0x26,0xa8,0x5b,0x90,0xba,0x45, +0xaa,0xdb,0x6d,0x3d,0xe8,0xa4,0x07,0x47,0xe9,0xc1,0x6d,0x7a, +0x30,0x55,0x0f,0x7e,0x54,0xf7,0x2a,0xea,0x3e,0x4a,0xdd,0xa7, +0xa9,0xbb,0x9b,0xba,0x5f,0x51,0x0f,0x07,0xf5,0xa8,0xa0,0x1e, +0xb5,0xd5,0xa3,0x9d,0x7a,0xf4,0x52,0x8f,0xed,0xea,0xe1,0xae, +0x1e,0x01,0xea,0x71,0x49,0x3d,0x9e,0xeb,0xa1,0xd2,0x7a,0x68, +0x9c,0x1e,0x5a,0xa8,0x87,0xd2,0xf4,0xd0,0x0f,0x3d,0xdc,0x4e, +0x0f,0xaf,0xd5,0xc3,0xdb,0xf5,0x70,0xb2,0x1e,0x7e,0xae,0x87, +0x7f,0xfc,0x2f,0x29,0xd3,0xb3,0x82,0x7a,0x0e,0x55,0xcf,0xb1, +0xea,0x39,0x43,0x3d,0x17,0xa9,0xe7,0x4a,0xf5,0x0c,0x57,0xcf, +0x34,0xf5,0x3c,0xae,0x9e,0xaf,0xd4,0xab,0xb8,0x7a,0xd5,0x56, +0xaf,0x49,0xea,0xe5,0xa1,0x5e,0x61,0xea,0x95,0xa1,0x5e,0x97, +0xd5,0xeb,0x99,0x7a,0x7d,0x53,0xef,0x3a,0xea,0xdd,0x43,0xbd, +0xf7,0xaa,0xf7,0x2d,0xf5,0xce,0x57,0x9f,0x5a,0xea,0xd3,0x4e, +0x7d,0x7a,0xab,0xcf,0x30,0xf5,0xd9,0xa4,0x3e,0xb9,0xea,0x73, +0x41,0x7d,0xde,0xaa,0xcf,0x37,0xf5,0xf9,0xab,0x47,0x4c,0xf5, +0x48,0x39,0x3d,0xd2,0x47,0x8f,0xec,0xd4,0x23,0xa7,0xd5,0xd7, +0x46,0x7d,0xcb,0xab,0x6f,0x37,0xf5,0x5d,0xab,0xbe,0x91,0xea, +0x9b,0xab,0xbe,0x6f,0xd5,0xaf,0x94,0xfa,0xb5,0x57,0xbf,0xb1, +0xea,0xb7,0x54,0xfd,0x36,0xa8,0x5f,0xbc,0xfa,0xbd,0x51,0xbf, +0x9f,0xea,0x5f,0x5d,0xfd,0xdb,0xaa,0xff,0x30,0xf5,0x9f,0xa6, +0xfe,0x8b,0xd4,0x7f,0x9d,0xfa,0x6f,0x53,0xff,0x4b,0xea,0xff, +0x52,0x03,0xd0,0x00,0x1b,0x0d,0x68,0xa8,0x01,0xed,0x35,0x60, +0xad,0x06,0xc4,0x69,0xc0,0x37,0x0d,0x6c,0xa5,0x81,0xab,0x35, +0x30,0x44,0x03,0xef,0x6a,0xe0,0x3f,0x0d,0x6a,0xae,0x41,0x73, +0x34,0x28,0x46,0x83,0x6e,0x68,0xd0,0x23,0x0d,0x7a,0xa1,0x41, +0x3f,0x34,0xb8,0xa6,0x06,0x3b,0x6b,0xf0,0x64,0x0d,0x76,0xd5, +0xe0,0xc3,0x1a,0x1c,0xaa,0xc1,0xd1,0x1a,0x9c,0xa6,0xc1,0x57, +0x34,0xc4,0x51,0x43,0x2a,0x68,0x48,0x75,0x0d,0x99,0xa6,0x21, +0x7b,0x34,0xe4,0xb2,0x86,0x3c,0xd0,0x90,0x37,0x1a,0x5a,0x52, +0x43,0x47,0x6a,0xa8,0x97,0x86,0x26,0x6b,0xe8,0x59,0x0d,0x7d, +0xa7,0x61,0xc5,0x34,0xac,0x81,0x86,0x4d,0xd3,0x30,0x5f,0x0d, +0x3b,0xab,0x61,0xff,0x34,0xbc,0x8b,0x86,0xf7,0xd6,0xf0,0x19, +0x1a,0x1e,0xa6,0xe1,0xb1,0x1a,0x9e,0xad,0x11,0x68,0x44,0x6d, +0x8d,0xe8,0xa6,0x11,0x53,0x35,0x22,0x5c,0x23,0x32,0x34,0xe2, +0x92,0x46,0x7c,0xd4,0xc8,0xa2,0x1a,0x59,0x53,0x23,0x5b,0x69, +0x64,0x6f,0x8d,0x1c,0xa4,0x91,0x3b,0x34,0x32,0x51,0x23,0x8f, +0x6b,0xe4,0x3d,0x8d,0x2a,0xa2,0x51,0x55,0x35,0xaa,0xbf,0x46, +0x4d,0xd7,0xa8,0x28,0x8d,0xba,0xac,0x51,0x3f,0x35,0xba,0x98, +0x46,0x77,0xd2,0xe8,0x1e,0x1a,0xdd,0x4f,0xa3,0x87,0x68,0xb4, +0xbb,0x46,0x1b,0x34,0xfa,0x9b,0xc6,0x98,0x69,0x4c,0x67,0x8d, +0x71,0xd6,0x98,0x09,0x1a,0x33,0x47,0x63,0xe2,0x34,0x26,0x53, +0x63,0x9e,0x69,0xac,0xa9,0xc6,0x56,0xd7,0xd8,0x46,0x1a,0xdb, +0x4e,0x63,0x17,0x6b,0xec,0x3a,0x8d,0x3d,0xac,0xb1,0xa1,0x1a, +0x7b,0x41,0xe3,0xcc,0x34,0xae,0xbe,0xc6,0x8d,0xd2,0xb8,0xf5, +0x1a,0x17,0xa2,0x71,0xb7,0x35,0xbe,0xb4,0xc6,0x77,0xd7,0xf8, +0x21,0x1a,0x3f,0x52,0xe3,0xc7,0x6b,0xbc,0x9b,0xc6,0x9f,0xd6, +0xf8,0x42,0x4d,0x68,0xa4,0x09,0x73,0x35,0x21,0x5c,0x13,0xb2, +0x34,0xa1,0x40,0x0d,0x4d,0xd5,0x30,0x57,0x0d,0xeb,0xd4,0x70, +0x4c,0x0d,0x9f,0xd4,0x50,0xa0,0x89,0x6d,0x35,0x71,0x9d,0x26, +0xc6,0x68,0xe2,0x05,0x4d,0xbc,0xa1,0x89,0x3f,0x35,0xc9,0x51, +0x93,0xda,0x68,0xd2,0x12,0x4d,0xda,0xa8,0x49,0x01,0x9a,0xf4, +0x4c,0x93,0xde,0x6b,0xb2,0x6a,0xb2,0x95,0x26,0x37,0xd0,0xe4, +0xf9,0x9a,0xbc,0x5a,0x93,0xb7,0x6b,0xf2,0x71,0x4d,0x31,0xd2, +0x94,0x56,0x9a,0x32,0x46,0x53,0xb6,0x6b,0xca,0x01,0x4d,0x39, +0xaf,0x29,0xbf,0x34,0xb5,0x92,0xa6,0xb6,0xd0,0xd4,0x2e,0x9a, +0xba,0x52,0x53,0x5d,0x35,0xf5,0xa0,0xa6,0x06,0x69,0xaa,0x41, +0x53,0x5f,0x68,0x9a,0x68,0x9a,0x93,0xa6,0xf5,0xd3,0xb4,0xa5, +0x9a,0x16,0xa0,0x69,0x8f,0x35,0xbd,0xa2,0xa6,0x8f,0xd2,0x74, +0x4f,0x4d,0x3f,0xa5,0x19,0x45,0x34,0xa3,0x95,0x66,0x74,0xd3, +0x8c,0xcd,0x9a,0x91,0xa2,0x19,0xff,0x4f,0xfe,0x6a,0xa6,0x8d, +0x66,0x96,0xd7,0xcc,0xaa,0x9a,0x59,0x5f,0x33,0x3b,0x68,0x66, +0x77,0xcd,0x1c,0xad,0x99,0x73,0x35,0x33,0x46,0x33,0x1f,0x6b, +0x56,0x69,0xcd,0xaa,0xae,0x59,0x6d,0x35,0x6b,0xbe,0x66,0xc5, +0x69,0xd6,0x4d,0xcd,0x7a,0xa2,0x59,0xaf,0x34,0xeb,0xa3,0x66, +0x57,0xd3,0xec,0xa9,0x9a,0xbd,0x52,0xb3,0x5d,0x35,0x3b,0x48, +0xb3,0x0d,0x9a,0x7d,0x5f,0x73,0xac,0x35,0xa7,0xae,0xe6,0x74, +0xd3,0x9c,0xb1,0x9a,0xb3,0x4f,0x73,0x92,0x35,0xe7,0xa1,0xe6, +0x14,0xea,0xd1,0x6a,0x7a,0xb4,0xb7,0x1e,0x9d,0xa5,0x47,0xc3, +0xf5,0x68,0x86,0x1e,0xfd,0xae,0xc7,0x9a,0xe8,0xb1,0x19,0x7a, +0x6c,0x85,0x1e,0xdb,0xac,0xc7,0x32,0xf4,0xd8,0x31,0x3d,0x76, +0x4e,0x8f,0x9b,0xeb,0xf1,0xc6,0x7a,0x7c,0xa1,0x1e,0x8f,0xd7, +0xe3,0x8f,0x34,0xb7,0xb8,0xe6,0x96,0xd3,0xdc,0xd1,0x9a,0xeb, +0xa6,0xb9,0x47,0x35,0xf7,0xa7,0x9e,0xb0,0xd4,0x13,0xad,0xf5, +0xc4,0x20,0x3d,0x31,0x4e,0x4f,0xec,0xd3,0x13,0x71,0x7a,0xe2, +0xaa,0xe6,0x39,0x68,0xde,0x40,0xcd,0xdb,0xab,0x79,0x11,0x9a, +0x77,0x42,0xf3,0x1e,0x6b,0xde,0x7b,0x3d,0xe9,0xa8,0x27,0xcb, +0xeb,0xc9,0xbe,0x7a,0x72,0xb6,0x9e,0x3c,0xa2,0x27,0xef,0xea, +0xa9,0xff,0x23,0xeb,0xad,0xc3,0xa2,0xea,0xde,0xa8,0x61,0xdd, +0x0b,0x66,0xf0,0x8c,0x62,0x8e,0x12,0x47,0x10,0x44,0x45,0xec, +0x6e,0xb1,0xc5,0x02,0x41,0xec,0xee,0xc2,0x46,0x24,0xa4,0x04, +0x95,0x12,0x29,0x11,0x11,0x0b,0x0b,0x41,0x90,0x46,0xba,0x4b, +0x40,0x41,0x4a,0x94,0x10,0xc1,0xee,0x78,0xdc,0x83,0x7b,0xf0, +0xf9,0xce,0xf0,0xfc,0xde,0xf7,0xbb,0xae,0xef,0xfb,0x67,0xce, +0x39,0x7b,0x76,0xde,0xfb,0xbe,0xef,0xb5,0xd6,0x3e,0xe2,0xa8, +0x91,0xc2,0x95,0xa4,0xd0,0x86,0x14,0xde,0x24,0x85,0x29,0xa4, +0xb0,0x82,0x14,0x89,0x48,0xd1,0x18,0x52,0xb4,0x80,0x14,0xb9, +0x90,0xa2,0x2c,0x52,0x54,0x4f,0x8a,0x18,0x29,0xd6,0x25,0xc5, +0x63,0x48,0xf1,0x56,0x52,0x1c,0x48,0x8a,0x6f,0x90,0xe2,0x46, +0x52,0xfc,0x83,0x3c,0xea,0x49,0x1e,0x19,0x92,0x47,0x07,0xc9, +0x23,0x4b,0xf2,0x28,0x92,0x3c,0xfa,0x48,0x4a,0xf4,0x48,0xc9, +0x3c,0x52,0x62,0x4e,0x4a,0xb6,0x91,0x92,0xbd,0xa4,0xe4,0x30, +0x29,0x71,0x23,0x25,0x05,0xa4,0xe4,0x37,0x29,0xd5,0x20,0xa5, +0x6b,0x48,0xe9,0x1e,0x52,0xea,0x41,0x4a,0xef,0x92,0xd2,0x16, +0x52,0xd6,0x8f,0x94,0xcd,0x20,0x65,0x76,0xa4,0x2c,0x9c,0x94, +0xd5,0x90,0xc7,0x1c,0x79,0x3c,0x93,0x3c,0xb6,0x25,0x8f,0x13, +0xc9,0xe3,0x1f,0xe4,0x49,0x57,0xf2,0xc4,0x88,0x3c,0x71,0x25, +0x4f,0x12,0xc9,0x93,0x1f,0xa4,0x5c,0x44,0xca,0x87,0x93,0xf2, +0x85,0xa4,0xfc,0x18,0x29,0x0f,0x25,0xe5,0xf7,0x49,0x79,0x1c, +0x29,0x4f,0x23,0xe5,0x55,0xa4,0xfc,0x1d,0xa9,0xe8,0x44,0x2a, +0xd4,0x49,0xc5,0x0a,0x52,0xe1,0x45,0x2a,0x8a,0xc9,0x53,0x11, +0x79,0x3a,0x97,0x3c,0x75,0x22,0x4f,0xd3,0xc9,0xd3,0x37,0xa4, +0x52,0x9d,0x54,0xce,0x21,0x95,0xfb,0x49,0xa5,0x3d,0xa9,0x74, +0x27,0x95,0x05,0xa4,0x92,0x92,0x2a,0x31,0xa9,0xea,0x4b,0xaa, +0x16,0x93,0xaa,0xb3,0xa4,0x2a,0x8f,0x54,0xc9,0x49,0xf5,0x14, +0x52,0x6d,0x45,0xaa,0x6f,0x92,0xea,0x22,0x52,0xfd,0x95,0xd4, +0x28,0x93,0x9a,0x5e,0xa4,0x66,0x2c,0xa9,0x99,0x46,0x6a,0xac, +0x49,0xcd,0x7d,0x52,0xf3,0x9e,0xd4,0x76,0x27,0xb5,0xc3,0x49, +0xed,0x34,0x52,0xbb,0x98,0xd4,0x9e,0x26,0xb5,0x59,0xa4,0x56, +0x28,0xfc,0x45,0x6a,0xff,0x25,0xcf,0xa6,0x92,0x67,0x16,0xe4, +0x99,0x23,0x79,0x76,0x8b,0x3c,0xab,0x26,0x75,0x2a,0xa4,0x6e, +0x12,0xa9,0x5b,0x43,0xea,0xf6,0x90,0xba,0x93,0xa4,0xee,0x34, +0xa9,0xf3,0x23,0x75,0x71,0xa4,0x2e,0x9d,0xd4,0xb5,0x90,0xba, +0x7f,0xc8,0xf3,0x91,0xe4,0xf9,0x26,0xf2,0xdc,0x8f,0x3c,0x2f, +0x21,0xcf,0x65,0xe4,0xc5,0x20,0xf2,0xc2,0x94,0xbc,0x38,0x41, +0x5e,0x5c,0x26,0x2f,0x92,0xc9,0x8b,0xd7,0xe4,0xc5,0x2f,0x52, +0xdf,0x83,0xd4,0x1b,0x91,0xfa,0x2d,0xa4,0xfe,0x24,0xa9,0x7f, +0x48,0xea,0x2b,0x49,0xfd,0x73,0x52,0xcf,0x48,0xc3,0x04,0xd2, +0xb0,0x83,0x34,0xd8,0x93,0x86,0x78,0xd2,0xf0,0x85,0x34,0xea, +0x93,0xc6,0x75,0xa4,0xd1,0x87,0x34,0x3e,0x22,0x8d,0x7f,0x48, +0x53,0x6f,0xd2,0xb4,0x80,0x34,0x1d,0x21,0x4d,0x5e,0xa4,0xa9, +0x90,0x34,0xd5,0x93,0xa6,0x8f,0xe4,0xa5,0x0a,0x79,0x69,0x48, +0x5e,0xda,0x92,0x97,0x6e,0xe4,0x65,0x2e,0x79,0xf9,0x97,0x34, +0x4f,0x21,0xcd,0x8b,0x49,0xb3,0x35,0x69,0x8e,0x23,0xcd,0x5f, +0xc8,0xab,0x01,0xe4,0xd5,0x08,0xf2,0x6a,0x0b,0x79,0x75,0x99, +0xbc,0x0a,0x23,0xaf,0x1a,0xc9,0xab,0xaf,0xa4,0xa5,0x13,0x69, +0xe9,0x47,0x5a,0xcc,0x48,0xcb,0x51,0xd2,0x72,0x9e,0xb4,0x84, +0x90,0x96,0x9b,0xa4,0x25,0x9a,0xb4,0x64,0x93,0x16,0x39,0x69, +0x1d,0x44,0x5a,0x47,0x90,0xd6,0xe9,0xa4,0x75,0x23,0x69,0x3d, +0x4b,0x5a,0xfd,0x48,0xeb,0x15,0xd2,0x9a,0x40,0x5a,0xcb,0x48, +0xeb,0x5f,0xf2,0x7a,0x34,0x79,0xbd,0x95,0xbc,0x3e,0x44,0x5e, +0x07,0x93,0xd7,0x79,0xe4,0x75,0x3b,0x79,0x33,0x91,0xbc,0xd9, +0x4a,0xde,0x78,0x91,0x37,0x09,0xe4,0xcd,0x2b,0xf2,0xb6,0x1b, +0x79,0x3b,0x99,0xbc,0x35,0x27,0x6f,0xad,0xc9,0x5b,0x3f,0xf2, +0xf6,0x3e,0x79,0xfb,0x98,0xbc,0x13,0x93,0x77,0xb3,0xc8,0xbb, +0x05,0xe4,0xdd,0x52,0xf2,0xce,0x8c,0xbc,0x5b,0x43,0xde,0x6d, +0x22,0xef,0x8e,0x93,0x77,0x67,0xc9,0xbb,0x4b,0xe4,0xdd,0x1d, +0xf2,0x2e,0x8a,0xbc,0x4b,0x26,0xef,0x3e,0x93,0xf7,0x22,0xf2, +0xbe,0x3b,0x79,0x3f,0x8c,0xbc,0xdf,0x49,0xde,0x5f,0x21,0xef, +0x4b,0xc8,0xfb,0x26,0xf2,0xfe,0x0d,0xf9,0xd0,0x85,0x7c,0x18, +0x44,0x3e,0x8c,0x26,0x1f,0xd6,0x92,0x0f,0x5b,0xc8,0x07,0x27, +0xf2,0x21,0x85,0x7c,0xf8,0x45,0x3e,0x0e,0x22,0x1f,0x27,0x92, +0x8f,0xdb,0xc9,0x47,0x77,0xf2,0x31,0x91,0x7c,0x2c,0x27,0x1f, +0x3f,0x93,0x4f,0xfd,0xc9,0xa7,0xd5,0xe4,0xd3,0x36,0xf2,0xe9, +0x08,0xf9,0x74,0x8d,0x7c,0xaa,0x20,0x9f,0x84,0xc2,0xbf,0xe4, +0xb3,0x06,0xf9,0xac,0x43,0x3e,0x8f,0x27,0x9f,0x37,0x92,0xcf, +0x96,0xe4,0xb3,0x1f,0xf9,0x1c,0x4c,0x3e,0x27,0x93,0xcf,0xdf, +0xc9,0x17,0x29,0xf9,0xb2,0x8c,0x7c,0xb1,0x27,0x5f,0x6e,0x91, +0x2f,0xf5,0xe4,0xab,0x12,0xf9,0x3a,0x82,0x7c,0x5d,0x4f,0xbe, +0x7a,0x91,0xaf,0xf9,0xe4,0xeb,0x5f,0xf2,0x4d,0x9d,0x7c,0x1b, +0x43,0xbe,0x4d,0x25,0xdf,0x66,0x91,0x6f,0x36,0xe4,0xdb,0x2d, +0xf2,0x2d,0x8d,0x7c,0x7b,0x42,0xbe,0xd5,0x90,0xef,0xdd,0xc9, +0xf7,0x21,0xe4,0xfb,0x74,0xf2,0x7d,0x21,0xf9,0x7e,0x98,0x7c, +0x77,0x24,0xdf,0xbd,0xc9,0xf7,0x60,0xf2,0x3d,0x8b,0x7c,0xaf, +0x27,0xdf,0xdf,0x92,0x1f,0x5d,0xc9,0x0f,0x29,0xf9,0xb1,0x94, +0xfc,0x70,0x21,0x3f,0xa2,0xc9,0x8f,0xb7,0xe4,0xa7,0x16,0xf9, +0x39,0x9b,0xfc,0x5c,0x4f,0x7e,0xba,0x91,0x9f,0x91,0xe4,0x67, +0x2b,0xf9,0xa5,0x49,0x7e,0xe9,0x92,0x5f,0xb3,0xc9,0x2f,0x23, +0xf2,0x6b,0x05,0xf9,0xb5,0x96,0xfc,0xda,0x4e,0x7e,0xf9,0x90, +0x5f,0x0f,0xc9,0xaf,0xb7,0xe4,0x1f,0x25,0xf2,0xcf,0x08,0xf2, +0x8f,0x29,0xf9,0xc7,0x9d,0xfc,0x13,0x47,0xfe,0xa9,0x27,0xbf, +0x95,0xc8,0xef,0x21,0xe4,0xf7,0x7c,0xf2,0x7b,0x07,0xf9,0xed, +0x42,0x7e,0xc7,0x93,0xdf,0x55,0xe4,0x77,0x1b,0xa1,0x7d,0x09, +0x1d,0x4d,0xe8,0x1a,0x42,0x4f,0x13,0x9a,0x4e,0xe8,0x3f,0x44, +0xa6,0x45,0x64,0x83,0x89,0x6c,0x0c,0x91,0x99,0x11,0xd9,0x41, +0x22,0xf3,0x21,0xb2,0x28,0x22,0xcb,0x22,0x32,0x19,0x69,0x1b, +0x4d,0xda,0x56,0x91,0xb6,0x1d,0xa4,0xed,0x10,0x69,0xf3,0x20, +0x6d,0x59,0xa4,0xed,0x33,0xf9,0xa3,0x49,0xfe,0xcc,0x22,0x7f, +0x0e,0x90,0x3f,0xe7,0xc9,0x9f,0x04,0xf2,0x27,0x95,0xfc,0xa9, +0x20,0x7f,0x64,0x84,0xa9,0x10,0x36,0x96,0xb0,0x0d,0x84,0x9d, +0x21,0x2c,0x92,0xb0,0x02,0xc2,0xde,0x13,0xf6,0x9b,0xb0,0x7f, +0x89,0x5c,0x44,0xe4,0xbd,0x89,0x7c,0x0c,0x91,0x6f,0x20,0xf2, +0xb3,0x44,0x7e,0x9d,0xc8,0xa3,0x88,0xbc,0x9e,0xb4,0x73,0xa4, +0x7d,0x32,0x69,0x5f,0x4d,0xda,0xbd,0x48,0xbb,0x2f,0x69,0x0f, +0x21,0xed,0x37,0x49,0x7b,0x2a,0x69,0xcf,0x23,0xed,0x6f,0xc8, +0x5f,0x75,0xf2,0x77,0x21,0xf9,0x6b,0x4f,0xfe,0x86,0x90,0xbf, +0xe1,0xe4,0x6f,0x0e,0xf9,0xfb,0x95,0xfc,0x6d,0x27,0xff,0x8e, +0x23,0xff,0x6e,0x24,0xff,0xee,0x23,0xff,0x5e,0x27,0xff,0x3e, +0x20,0xff,0x36,0x43,0xf1,0x9f,0x17,0x2f,0x42,0x27,0x3b,0x74, +0x8a,0x42,0xa7,0x57,0x50,0xfc,0x85,0x95,0x3a,0x3a,0x8f,0x42, +0x67,0x73,0x74,0xb6,0x42,0xe7,0x70,0x74,0x6e,0x04,0xe9,0x05, +0xb2,0x00,0xc4,0x16,0x24,0x0a,0xa4,0x10,0xe4,0x13,0xa0,0x0e, +0x2c,0x03,0x9c,0x81,0x04,0xa0,0x18,0x68,0x87,0xd2,0x18,0x28, +0x2d,0x87,0xd2,0x41,0x28,0x85,0x42,0x29,0x1b,0x4a,0x8f,0xa1, +0xf4,0x1b,0xca,0x06,0x50,0x9e,0x04,0xe5,0xa5,0x50,0xde,0x0f, +0x65,0x4f,0x28,0xc7,0x43,0xb9,0x15,0x22,0x25,0x88,0x06,0x42, +0x34,0x07,0xa2,0xb5,0x10,0xd9,0x40,0xe4,0x04,0xd1,0x59,0x88, +0x2e,0x43,0x94,0x01,0x51,0x25,0x44,0xad,0x10,0xab,0x40,0xac, +0x01,0xf1,0x74,0x88,0x17,0x43,0xbc,0x0a,0xe2,0x9d,0x10,0x7b, +0x40,0x9c,0x08,0x71,0x39,0xc4,0x1f,0xa0,0xd2,0x03,0x2a,0xd3, +0xa1,0xb2,0x14,0x2a,0x2b,0xa1,0xb2,0x1d,0x2a,0x27,0xa0,0xe2, +0x04,0x15,0x5f,0xa8,0x84,0x40,0x25,0x1d,0x2a,0x2f,0xa0,0xd2, +0x8e,0x2e,0x43,0xd1,0x65,0x25,0xba,0xb8,0xa3,0x4b,0x3a,0xba, +0xbc,0x05,0xa7,0x09,0xce,0x08,0xdc,0x61,0x70,0xa7,0xc1,0x25, +0x83,0x7b,0x0f,0x89,0x12,0x24,0xda,0x90,0x18,0x43,0x72,0x10, +0x12,0x5b,0x48,0x82,0x20,0x89,0x84,0xa4,0x02,0x92,0x17,0x90, +0x34,0x43,0x22,0x47,0xd7,0xae,0xe8,0x3a,0x0e,0x5d,0xd7,0xa1, +0xeb,0x39,0x74,0xcd,0x42,0xd7,0x42,0x74,0x7d,0x8c,0x6e,0x9d, +0xd1,0x6d,0x20,0xba,0x2d,0x45,0xb7,0xb5,0xe8,0xe6,0x8c,0x6e, +0xf1,0xe8,0xf6,0x16,0xaa,0xbd,0xa0,0x3a,0x17,0xaa,0x16,0x50, +0xf5,0x87,0x6a,0x24,0x54,0xeb,0xd1,0xbd,0x3b,0xba,0xcf,0x41, +0xf7,0xd5,0xe8,0x6e,0x89,0xee,0x4e,0xe8,0xee,0x85,0xee,0xb1, +0xe8,0xfe,0x02,0xdd,0x5f,0xa3,0xfb,0x67,0x74,0xff,0x07,0x3d, +0xf4,0xd1,0x63,0x05,0x7a,0x9c,0x41,0x8f,0xbb,0xe8,0x11,0x8d, +0x1e,0xcd,0xe8,0x29,0x41,0xcf,0xde,0xe8,0xd9,0x1f,0x3d,0x4d, +0xd0,0xf3,0x38,0x7a,0x06,0xa3,0x67,0x26,0x7a,0xd6,0xa0,0x57, +0x27,0xf4,0x32,0x40,0xaf,0x71,0xe8,0xb5,0x11,0xbd,0xce,0xa3, +0x57,0x36,0x7a,0x35,0xa3,0xb7,0x04,0xbd,0x47,0xa2,0xf7,0x7c, +0xf4,0x3e,0x81,0xde,0xde,0xe8,0x9d,0x85,0xde,0x4d,0xe8,0x4d, +0xd1,0x67,0x28,0xfa,0xac,0x47,0x1f,0x0f,0xf4,0x89,0x43,0x9f, +0xd7,0x90,0xf6,0x83,0x74,0x11,0xa4,0x07,0x21,0x0d,0x82,0x34, +0x14,0xd2,0x28,0x48,0xd3,0x20,0x7d,0x04,0xe9,0x27,0xf4,0xed, +0x85,0xbe,0x63,0xd0,0x77,0x2b,0xfa,0xee,0x47,0xdf,0xcb,0xe8, +0x9b,0x8d,0xbe,0x8f,0xd0,0xf7,0x0b,0xfa,0xfe,0x42,0x3f,0x0d, +0xf4,0x9b,0x8c,0x7e,0x6b,0xd0,0xcf,0x1d,0xfd,0x52,0xd0,0xef, +0x23,0xfa,0xb5,0x43,0x4d,0x17,0x6a,0x2b,0xa0,0xb6,0x09,0x6a, +0xe7,0xa1,0x16,0x05,0xb5,0xc7,0x50,0x6b,0x51,0xfc,0x51,0xa0, +0xfa,0x60,0xa8,0x8f,0x81,0xfa,0x16,0xa8,0x9f,0x87,0xfa,0x25, +0xa8,0xdf,0x83,0x7a,0x1e,0xd4,0x2b,0xa0,0x2e,0x7c,0xfb,0x0d, +0xea,0x0c,0x1a,0xc3,0xa0,0x61,0x0a,0x0d,0x2b,0x68,0x5c,0x84, +0x46,0x24,0x34,0xca,0xa1,0xf1,0x15,0x9a,0xca,0xd0,0xd4,0x87, +0xe6,0x1a,0x68,0xba,0x41,0xf3,0x21,0x34,0xdf,0x81,0x57,0x03, +0x3f,0x08,0xbc,0x29,0x78,0x6b,0xf0,0x01,0xe0,0x93,0xc0,0x67, +0x80,0xcf,0x07,0xff,0x05,0xbc,0x1c,0xfd,0xd5,0xd0,0x7f,0x18, +0xfa,0x9b,0xa1,0xff,0x7e,0xf4,0xbf,0x84,0xfe,0xc9,0xe8,0x5f, +0x82,0xfe,0x6f,0xa0,0xc5,0x41,0x6b,0x24,0xb4,0x96,0x43,0x6b, +0x3b,0xb4,0xdc,0xa0,0x95,0x04,0xad,0x37,0xd0,0x96,0x42,0x7b, +0x1e,0xb4,0x77,0x42,0x3b,0x00,0xda,0xa1,0xd0,0xae,0xc0,0x80, +0x4e,0x18,0xa0,0x8e,0x01,0x53,0x31,0xc0,0x18,0x03,0x2c,0x31, +0x20,0x10,0x03,0xf2,0x31,0xa0,0x0e,0x03,0x9a,0x30,0xe0,0x2b, +0x06,0xb4,0x41,0xa7,0x1b,0x74,0xb4,0xa1,0x33,0x0e,0x3a,0xab, +0xa1,0x73,0x0a,0x3a,0xb7,0xa1,0xf3,0x08,0x3a,0x9f,0xa1,0xcb, +0x43,0x77,0x09,0x74,0x6d,0xa1,0xeb,0x0e,0xdd,0x20,0xe8,0xc6, +0x43,0xb7,0x02,0xba,0xbf,0x30,0x50,0x07,0x03,0x67,0x63,0xe0, +0x41,0x0c,0xf4,0xc3,0xc0,0x3b,0x18,0x58,0x89,0x81,0x0d,0x18, +0xf8,0x06,0x03,0xbf,0x40,0xaf,0x33,0xf4,0x46,0x41,0x6f,0x05, +0xf4,0x4e,0x40,0xef,0x36,0xf4,0x2a,0xa1,0xf7,0x0e,0x7a,0xbf, +0x31,0x48,0x09,0x83,0x54,0x31,0x68,0x3a,0x06,0xad,0xc2,0xa0, +0x03,0x18,0x64,0x83,0x41,0xd7,0x31,0xa8,0x18,0x83,0x28,0x06, +0xfd,0xc5,0x60,0x65,0x0c,0xee,0x87,0xc1,0x06,0x18,0x6c,0x86, +0xc1,0x9b,0x31,0xf8,0x20,0x06,0x9f,0xc0,0xe0,0x9b,0x18,0xfc, +0x04,0x83,0xdf,0x62,0xf0,0x4f,0x0c,0xe9,0x83,0x21,0xba,0x18, +0x32,0x17,0x43,0x4c,0x31,0xc4,0x16,0x43,0xee,0x62,0x48,0x15, +0xf4,0x3b,0x43,0xbf,0x07,0xf4,0x27,0x40,0x7f,0x1b,0xf4,0xbd, +0xa0,0x9f,0x08,0xfd,0x16,0x0c,0x55,0xc1,0xd0,0x21,0x18,0x6a, +0x8e,0xa1,0xce,0x18,0x7a,0x07,0x43,0xe3,0x30,0xb4,0x0c,0x43, +0xdf,0xc1,0xa0,0x2b,0x0c,0x26,0xc1,0x60,0x06,0x0c,0xcc,0x60, +0xb0,0x05,0x06,0x56,0x30,0xf0,0x87,0xc1,0x25,0x18,0x5c,0x83, +0x41,0x3c,0x0c,0xb2,0x61,0x50,0x09,0x83,0x6f,0x18,0xd6,0x0b, +0xc3,0xf4,0x31,0x6c,0x11,0x86,0x59,0x60,0x98,0x37,0x86,0xdd, +0xc6,0xb0,0x02,0x0c,0xab,0xc7,0xf0,0x4e,0x18,0xce,0x63,0xf8, +0x3c,0x0c,0xdf,0x8d,0xe1,0xe7,0x31,0x3c,0x15,0xc3,0x1f,0x61, +0x78,0x1d,0x86,0xb7,0x63,0x84,0x1e,0x46,0x4c,0xc7,0x88,0x9d, +0x18,0x71,0x0e,0x23,0x92,0x31,0xa2,0x01,0x23,0x3e,0x60,0x64, +0x17,0x8c,0x9c,0x80,0x91,0xab,0x31,0x72,0x23,0x46,0x3a,0x63, +0xa4,0x17,0x46,0x46,0x60,0x64,0x1e,0x46,0x56,0x62,0xe4,0x17, +0x8c,0x52,0xc6,0xa8,0xc1,0x18,0x35,0x11,0xa3,0x56,0x63,0xd4, +0x09,0x8c,0xba,0x82,0x51,0xb9,0x18,0xf5,0x05,0xa3,0xd5,0x31, +0x7a,0x16,0x46,0xef,0xc2,0xe8,0xf3,0x18,0x7d,0x0f,0xa3,0x2b, +0x30,0xba,0x0d,0x63,0xf4,0x30,0x66,0x29,0xc6,0x9c,0xc0,0x98, +0x50,0x8c,0x29,0xc2,0x98,0x8f,0x18,0xf3,0x1b,0x63,0x7b,0x62, +0xec,0x50,0x8c,0x9d,0x8e,0xb1,0xdb,0x31,0xd6,0x09,0x63,0xc3, +0x30,0xb6,0x12,0x63,0xdf,0x61,0x5c,0x4f,0x8c,0x1b,0x8c,0x71, +0x4b,0x30,0x6e,0x1b,0xc6,0x9d,0xc1,0xb8,0x3b,0x18,0xf7,0x08, +0xe3,0x7e,0x62,0x3c,0x8f,0xf1,0xe3,0x30,0x7e,0x03,0xc6,0x3b, +0x61,0xfc,0x2d,0x8c,0x4f,0xc6,0xf8,0x3c,0x8c,0x2f,0xc5,0xf8, +0xdf,0x98,0xa0,0x89,0x09,0xd3,0x30,0xc1,0x08,0x13,0x8e,0x62, +0x42,0x08,0x26,0xdc,0xc6,0x84,0x27,0x98,0xd0,0x86,0x89,0x1a, +0x98,0x38,0x0f,0x13,0x2d,0x30,0xd1,0x0a,0x13,0x83,0x30,0x31, +0x13,0x13,0x4b,0x30,0xf1,0x33,0x26,0xf5,0xc6,0xa4,0x29,0x98, +0xb4,0x0a,0x93,0x9c,0x30,0xe9,0x16,0x26,0xe5,0x62,0x52,0x35, +0x26,0xb5,0x2a,0x7e,0xf4,0x60,0x72,0x57,0x4c,0x1e,0x8d,0xc9, +0xa6,0x98,0xbc,0x1b,0x93,0xcf,0x63,0x72,0x30,0x26,0x3f,0xc4, +0xe4,0x0a,0x4c,0x6e,0xc4,0xe4,0x2f,0x98,0x2c,0xc7,0x14,0x5d, +0x4c,0x19,0x85,0x29,0x6b,0x30,0x65,0x13,0xa6,0xec,0xc1,0x14, +0x5f,0x4c,0xb9,0x81,0x29,0x51,0x98,0xf2,0x14,0x53,0x18,0xa6, +0xea,0x61,0xea,0x70,0x4c,0x1d,0x8b,0xa9,0xeb,0x31,0xd5,0x15, +0x53,0x23,0x31,0xb5,0x06,0x53,0x7f,0x61,0x9a,0x14,0xd3,0xa6, +0x63,0xda,0x5a,0x4c,0x3b,0x8a,0x69,0x9e,0x98,0x76,0x0b,0xd3, +0x62,0x31,0x2d,0x0b,0xd3,0xaa,0x30,0xad,0x11,0xd3,0x28,0xa6, +0x13,0x4c,0xd7,0xc2,0xf4,0xf9,0x98,0xbe,0x0f,0xd3,0x9d,0x30, +0xfd,0x22,0xa6,0x47,0x61,0x7a,0x3e,0xa6,0xd7,0x63,0xfa,0x4f, +0x4c,0xff,0x17,0x33,0xfa,0x60,0x86,0x26,0x66,0xe8,0x63,0xc6, +0x38,0xcc,0x98,0x8f,0x19,0x1b,0x31,0x63,0x17,0x66,0x38,0x60, +0x46,0x00,0x66,0xa4,0x61,0xc6,0x0b,0xcc,0xf8,0x8e,0x99,0xaa, +0x98,0xa9,0x85,0x99,0xa3,0x30,0x73,0x26,0x66,0x9a,0x60,0xe6, +0x51,0xcc,0x3c,0x8b,0x99,0x0f,0x30,0x33,0x1d,0x33,0x5f,0x63, +0xe6,0x17,0xcc,0xfc,0x17,0x86,0x5d,0x61,0xd8,0x17,0x86,0xba, +0x30,0x1c,0x0a,0xc3,0x71,0x30,0x9c,0x0b,0xc3,0xbd,0x30,0x3c, +0x01,0x43,0x57,0x18,0x06,0xc3,0x30,0x05,0x86,0xb5,0x30,0xa4, +0x98,0xa5,0x85,0x59,0xa3,0x30,0x6b,0x21,0x66,0xed,0xc5,0x2c, +0x3b,0xcc,0x0a,0xc5,0xac,0x7c,0xcc,0xfa,0x84,0xd9,0x1c,0x66, +0x0f,0xc1,0xec,0xc5,0x98,0xbd,0x02,0xb3,0xd7,0x63,0xf6,0x11, +0xcc,0x0e,0xc2,0xec,0x44,0xcc,0x7e,0x8a,0xd9,0x9f,0x31,0xa7, +0x0f,0xe6,0x4c,0xc2,0x1c,0x73,0xcc,0x39,0x8e,0x39,0xee,0x98, +0x73,0x03,0x73,0x32,0x31,0xe7,0x25,0xe6,0xfc,0xc0,0x5c,0x25, +0xcc,0xd5,0xc1,0xdc,0x09,0x98,0xbb,0x04,0x73,0x57,0x63,0xee, +0x11,0xcc,0x75,0xc0,0xdc,0xcb,0x98,0x9b,0x8d,0xb9,0xd5,0x98, +0xfb,0x1e,0x73,0xdb,0x31,0x4f,0x05,0xf3,0x46,0x62,0x9e,0x39, +0xe6,0xad,0xc7,0x3c,0x4b,0xcc,0xb3,0xc7,0xbc,0xeb,0x98,0x97, +0x85,0x79,0x2d,0x98,0xf7,0x0f,0xe6,0x6b,0x62,0xbe,0x01,0xe6, +0x2f,0xc7,0xfc,0xdd,0x98,0xef,0x89,0xf9,0x81,0x98,0x1f,0x82, +0xf9,0x59,0x98,0xdf,0x8a,0xf9,0xdf,0x31,0xbf,0x1d,0x0b,0xba, +0x61,0x81,0x3e,0x16,0x2c,0xc3,0x82,0xed,0x58,0xe0,0x86,0x05, +0x91,0x58,0xf0,0x14,0x0b,0x28,0x16,0xaa,0x62,0xa1,0x36,0x16, +0x8e,0xc2,0xc2,0x59,0x58,0xb8,0x1e,0x0b,0x2d,0xb0,0xd0,0x06, +0x0b,0xaf,0x62,0xe1,0x2d,0x2c,0x0c,0xc7,0xc2,0x52,0x2c,0xfc, +0x08,0x23,0x02,0xa3,0x9e,0x30,0x1a,0x0c,0xa3,0x45,0x30,0xda, +0x01,0xa3,0x63,0x30,0x72,0x83,0xd1,0x0d,0x18,0x25,0xc3,0xa8, +0x04,0x46,0x5f,0x60,0xd4,0x8e,0x45,0xc0,0xa2,0x3e,0x58,0x34, +0x08,0x8b,0xa6,0x62,0xd1,0x26,0x2c,0xda,0x8f,0x45,0x2e,0x58, +0x74,0x09,0x8b,0x22,0xb0,0xe8,0x21,0x16,0xe5,0x61,0xd1,0x3b, +0x2c,0xee,0x8a,0xc5,0xbd,0xb0,0x78,0x28,0x16,0x8f,0xc1,0xe2, +0xd9,0x58,0xbc,0x18,0x8b,0x57,0x63,0xf1,0x21,0x2c,0x3e,0x8b, +0xc5,0x21,0x58,0x1c,0x85,0xc5,0x39,0x58,0x5c,0x83,0xc5,0x7f, +0xb0,0x44,0x1d,0x4b,0x66,0x60,0xc9,0x56,0x2c,0x39,0x85,0x25, +0xa1,0x58,0x52,0x80,0x25,0xad,0x58,0x4a,0xb0,0x94,0xc7,0xd2, +0x89,0x58,0xba,0x12,0x4b,0x0f,0x62,0xa9,0x37,0x96,0xde,0xc7, +0xd2,0x42,0x2c,0x6d,0xc6,0x32,0x65,0x2c,0xeb,0x8e,0x65,0x63, +0xb0,0x6c,0x05,0x96,0xed,0xc6,0x32,0x77,0x2c,0x8b,0xc0,0xb2, +0x68,0x2c,0x4b,0xc0,0xb2,0x42,0x2c,0xfb,0x00,0xe3,0x6e,0x30, +0x1e,0x0d,0xe3,0x15,0x30,0xb6,0x82,0xf1,0x25,0x18,0xdf,0x86, +0x71,0x11,0x8c,0x9b,0x60,0x42,0x60,0x32,0x10,0x26,0xb3,0x60, +0xb2,0x1d,0x26,0x47,0x60,0x72,0x0a,0x26,0xb7,0x61,0x92,0x0f, +0x93,0x77,0x30,0xf9,0x89,0xe5,0x7d,0xb1,0x5c,0x17,0xcb,0xe7, +0x63,0xf9,0x0a,0x2c,0xdf,0x85,0xe5,0x67,0xb1,0xfc,0x16,0x96, +0xe7,0x60,0x79,0x0b,0x4c,0x3b,0xc1,0x54,0x19,0xa6,0x1a,0x30, +0x1d,0x08,0x53,0x03,0x98,0x4e,0x81,0xa9,0x11,0x4c,0x57,0xc3, +0x74,0x0b,0x4c,0x2d,0x60,0x6a,0x05,0x53,0x47,0x98,0xba,0xc1, +0xf4,0x3c,0x4c,0xef,0xc3,0xf4,0x31,0x4c,0xdf,0xc3,0xf4,0x1f, +0x98,0xf5,0x83,0xd9,0x08,0x98,0x2d,0x85,0xd9,0x41,0x98,0xf9, +0xc0,0x2c,0x1c,0x66,0x89,0x30,0xcb,0x87,0x59,0x29,0xcc,0xde, +0x60,0x85,0x12,0x56,0xf4,0xc5,0x8a,0xf1,0x58,0x61,0x84,0x15, +0xfb,0xb0,0xc2,0x05,0x2b,0x6e,0x60,0xc5,0x7d,0xac,0x28,0xc5, +0x8a,0x77,0x30,0x57,0x82,0x39,0x07,0xf3,0x1e,0x30,0x1f,0x0d, +0x73,0x23,0x98,0x6f,0x82,0xb9,0x05,0xcc,0xad,0x60,0xee,0x04, +0x73,0x77,0x98,0xdf,0x81,0x79,0x0e,0xcc,0x9f,0xc0,0xfc,0x93, +0xe2,0xc5,0xe6,0x4a,0x0d,0xac,0x9c,0x86,0x95,0x1b,0xb0,0x72, +0x0f,0x56,0x3a,0x61,0xe5,0x05,0xac,0x8c,0xc6,0xca,0x0a,0xac, +0x7c,0x8e,0x95,0xdf,0xb0,0xf2,0x0f,0x56,0x75,0xc7,0xaa,0xd1, +0x58,0x35,0x03,0xab,0x36,0x61,0x95,0x1d,0x56,0x85,0x60,0x55, +0x02,0x56,0x55,0x61,0xd5,0x3f,0x58,0xdd,0x1d,0xab,0x47,0x62, +0xf5,0x22,0xac,0xde,0x8e,0xd5,0x8e,0x58,0x1d,0x8c,0xd5,0xc9, +0x58,0xfd,0x04,0xab,0x3f,0x60,0x8d,0x32,0xd6,0x0c,0xc0,0x9a, +0x69,0x58,0x33,0x0b,0x6b,0x8c,0xb1,0x66,0x2f,0xd6,0x9c,0xc6, +0x9a,0x4b,0x58,0xf3,0x10,0x6b,0x6a,0xb1,0xe6,0x37,0xd6,0x4a, +0xb1,0x56,0x0f,0x6b,0x27,0x61,0xed,0x7c,0xac,0x5d,0x83,0xb5, +0x3b,0xb1,0xd6,0x19,0x6b,0x6f,0x60,0x6d,0x36,0xd6,0x16,0x63, +0x6d,0x35,0xd6,0x36,0x63,0xed,0x67,0xac,0xeb,0x86,0x75,0x23, +0xb0,0x6e,0x19,0xd6,0x1d,0xc0,0x3a,0x4f,0xac,0xbb,0x8e,0x75, +0xa9,0x58,0x57,0x8d,0x75,0x1f,0xb0,0xee,0x17,0xd6,0x8b,0xb0, +0xbe,0x37,0xd6,0x0f,0xc6,0xfa,0x69,0x58,0x6f,0x84,0xf5,0x7b, +0xb0,0xde,0x0d,0xeb,0xaf,0x60,0x7d,0x3a,0xd6,0x37,0x60,0xfd, +0x1f,0x6c,0xe8,0x81,0x0d,0x23,0xb1,0x61,0x29,0x36,0xec,0xc3, +0x06,0x37,0x6c,0x08,0xc5,0x86,0x34,0x6c,0xa8,0xc1,0x86,0x6f, +0xd8,0xc8,0x61,0xa3,0x0e,0x36,0x4e,0xc3,0x46,0x23,0x6c,0xdc, +0x86,0x8d,0xb6,0xd8,0xe8,0x8a,0x8d,0xee,0xd8,0x78,0x01,0x1b, +0x43,0xb0,0xf1,0x16,0x36,0xa6,0x63,0x63,0x3d,0x36,0x7e,0xc0, +0xc6,0x76,0x6c,0x12,0x61,0xd3,0x20,0x6c,0x9a,0x87,0x4d,0xeb, +0xb1,0xc9,0x16,0x9b,0x02,0xb0,0x29,0x18,0x9b,0xa2,0xb1,0x29, +0x05,0x9b,0xca,0xb0,0xe9,0x15,0x36,0xc9,0xb0,0x59,0x15,0x9b, +0xf5,0xb1,0x79,0x14,0x36,0x4f,0xc6,0xe6,0x39,0xd8,0xbc,0x14, +0x9b,0x77,0x60,0xb3,0x0d,0x36,0x7b,0x63,0xf3,0x25,0x6c,0xbe, +0x87,0xcd,0x89,0xd8,0x5c,0x84,0xcd,0x8d,0xd8,0xfc,0x11,0x5b, +0x3a,0x61,0x8b,0x36,0xb6,0x8c,0xc4,0x96,0x19,0xd8,0xb2,0x14, +0x5b,0x4c,0xb1,0xe5,0x20,0xb6,0x78,0x62,0xcb,0x2d,0x6c,0x49, +0xc1,0x96,0x5a,0x6c,0xf9,0x86,0xad,0xdd,0xb0,0xb5,0x17,0xb6, +0x8e,0xc2,0x56,0x23,0x6c,0xdd,0x8a,0xad,0xb6,0xd8,0x1a,0x80, +0xad,0x31,0xd8,0x5a,0x88,0xad,0x65,0xd8,0xfa,0x02,0x5b,0x3f, +0x63,0x1b,0xc1,0xb6,0x5e,0xd8,0xa6,0x86,0x6d,0x3a,0xd8,0x66, +0x80,0x6d,0x53,0xb0,0x6d,0x3e,0xb6,0x99,0x62,0xdb,0x7e,0x6c, +0xb3,0xc1,0xb6,0x33,0xd8,0x76,0x01,0xdb,0xae,0x62,0xdb,0x03, +0x6c,0xcb,0xc4,0xb6,0x67,0xd8,0xf6,0x13,0xdb,0x7b,0x62,0xfb, +0x10,0x6c,0x9f,0x8f,0xed,0xdb,0xb1,0xdd,0x19,0xdb,0xaf,0x61, +0xfb,0x6d,0x6c,0xcf,0xc2,0xf6,0x4a,0x6c,0x7f,0x8e,0xed,0x32, +0xec,0xe8,0x8b,0x1d,0x3a,0xd8,0x61,0x88,0x1d,0x66,0xd8,0x61, +0x81,0x1d,0x1e,0xd8,0x11,0x86,0x1d,0x05,0xd8,0x51,0x86,0x1d, +0xaf,0xb0,0xe3,0x27,0x76,0xaa,0x60,0x67,0x77,0xec,0xd4,0xc3, +0xce,0x29,0xd8,0x69,0x8a,0x9d,0x7b,0xb0,0xd3,0x09,0x3b,0x83, +0xb0,0x33,0x1e,0x3b,0xcb,0xb0,0xb3,0x0e,0x3b,0x3f,0x61,0x97, +0x12,0x76,0xf5,0xc7,0xae,0xa1,0xd8,0x35,0x01,0xbb,0xe6,0x62, +0xd7,0x66,0xec,0xda,0x85,0x5d,0x27,0xb1,0xcb,0x0b,0xbb,0x6e, +0x61,0x57,0x1a,0x76,0x3d,0xc1,0xae,0x37,0xd8,0x25,0xd4,0x64, +0xd8,0x2d,0xc1,0xee,0x9e,0xd8,0xdd,0x0f,0xbb,0xf5,0xb0,0x7b, +0x14,0x76,0xcf,0xc4,0xee,0x15,0xd8,0xbd,0x05,0xbb,0x0f,0x61, +0xb7,0x03,0x76,0xfb,0x60,0xf7,0x0d,0xec,0xbe,0x8b,0xdd,0x91, +0xd8,0x9d,0x85,0xdd,0x35,0xd8,0xfd,0x16,0x7b,0x94,0xb0,0xa7, +0x17,0xf6,0x0c,0xc0,0x9e,0xc1,0xd8,0x33,0x17,0x7b,0xb6,0x60, +0x8f,0x3d,0xf6,0x04,0x63,0x4f,0x38,0xf6,0xa4,0x62,0xcf,0x33, +0xec,0xf9,0x80,0x3d,0x7f,0xb1,0x57,0x1d,0x7b,0x27,0x62,0xef, +0x0a,0xec,0xdd,0x84,0xbd,0xbb,0xb1,0xd7,0x15,0x7b,0xaf,0x60, +0x6f,0x0a,0xf6,0x56,0x63,0x6f,0x0b,0xf6,0xfe,0xc1,0x3e,0x55, +0xec,0x1b,0x8c,0x7d,0x33,0xb0,0x6f,0x39,0xf6,0x6d,0xc7,0xbe, +0x43,0xd8,0x77,0x06,0xfb,0x82,0xb0,0xef,0x16,0xf6,0xa5,0x61, +0x5f,0x3e,0xf6,0xd5,0x63,0xdf,0x3b,0xec,0x6b,0xc3,0x7e,0x31, +0xf6,0xf7,0xc6,0x7e,0x3d,0xec,0x9f,0x80,0xfd,0xd3,0xb0,0x7f, +0x31,0xf6,0xaf,0xc6,0xfe,0x1d,0xd8,0x7f,0x04,0xfb,0x1d,0xb0, +0xdf,0x13,0xfb,0x03,0xb1,0xff,0x1a,0xf6,0x87,0x61,0x7f,0x1c, +0xf6,0x97,0x60,0xff,0x4b,0xec,0xff,0x0e,0x0b,0x15,0x58,0xe8, +0xc1,0x62,0x02,0x2c,0x66,0xc0,0xc2,0x0c,0x16,0x7b,0x60,0x61, +0x05,0x0b,0x6f,0x58,0x84,0xc3,0xa2,0x00,0x16,0xaf,0x60,0xf1, +0x17,0x07,0x7a,0xe3,0xc0,0x28,0x1c,0x30,0xc2,0x81,0xad,0x38, +0x60,0x85,0x03,0x67,0x71,0xc0,0x07,0x07,0xc2,0x70,0x20,0x03, +0x07,0x4a,0x70,0xe0,0x25,0x0e,0xbc,0xc5,0x41,0xe0,0x60,0x5f, +0x1c,0x1c,0x82,0x83,0x93,0x71,0x70,0x11,0x0e,0xee,0xc4,0x41, +0x4b,0x1c,0xf4,0xc1,0xc1,0x7b,0x38,0xf8,0x10,0x07,0xab,0x70, +0xf0,0x2d,0x0e,0x01,0x87,0xb4,0x71,0x68,0x1a,0x0e,0x99,0xe1, +0xd0,0x16,0x1c,0xb2,0xc2,0x21,0x67,0x1c,0xf2,0xc1,0xa1,0xeb, +0x38,0x94,0x86,0x43,0x65,0x38,0xf4,0x1e,0x87,0x3b,0xe3,0xb0, +0x3a,0x0e,0x8f,0xc1,0xe1,0xf9,0x38,0x6c,0x8c,0xc3,0xfb,0x70, +0xd8,0x0e,0x87,0xcf,0xe3,0xf0,0x4d,0x1c,0x4e,0xc2,0xe1,0x34, +0x1c,0x7e,0x8a,0xc3,0x1f,0x70,0x44,0x09,0x47,0xfa,0xe1,0xc8, +0x18,0x1c,0x59,0x82,0x23,0x5b,0x70,0xc4,0x16,0x47,0xce,0xe3, +0xc8,0x3d,0x1c,0x89,0xc2,0x91,0x3c,0x1c,0x79,0x8e,0x23,0xdf, +0x70,0x14,0x38,0x2a,0xc5,0xd1,0x21,0x38,0x3a,0x03,0x47,0x57, +0xe0,0xe8,0x5e,0x1c,0x75,0xc2,0x51,0x1f,0x1c,0x0d,0xc7,0xd1, +0x87,0x38,0xfa,0x14,0x47,0x3f,0xe1,0xe8,0x0f,0x1c,0x13,0xe3, +0x98,0x16,0x8e,0x0d,0xc1,0xb1,0x31,0x38,0x36,0x0b,0xc7,0x96, +0xe0,0xd8,0x2e,0x1c,0x73,0xc6,0xb1,0x60,0x1c,0x8b,0xc1,0xb1, +0x1c,0x1c,0x2b,0xc6,0xb1,0x26,0x1c,0xfb,0x82,0x63,0x6d,0xb0, +0x54,0x82,0xa5,0x36,0x2c,0x0d,0x60,0x39,0x06,0x96,0x93,0x61, +0xb9,0x02,0x96,0xeb,0x60,0xb9,0x15,0x96,0x7b,0x60,0x69,0x05, +0x4b,0x5f,0x58,0x5e,0x86,0x65,0x1c,0x2c,0x1f,0xc3,0xf2,0x2d, +0x2c,0xff,0xe2,0xb8,0x3a,0x8e,0x0f,0xc3,0xf1,0xa9,0x38,0xbe, +0x04,0xc7,0x77,0xe1,0xb8,0x1d,0x8e,0x07,0xe2,0x78,0x0c,0x8e, +0x97,0xe2,0x78,0x0b,0x8e,0xcb,0x60,0xd5,0x0d,0x56,0xba,0xb0, +0x9a,0x01,0xab,0x79,0xb0,0x5a,0x02,0xab,0x6d,0xb0,0xb2,0x81, +0x95,0x0f,0xac,0xee,0xc2,0x2a,0x19,0x56,0xe5,0xb0,0x7a,0x8b, +0x13,0x04,0x27,0xba,0xe2,0x84,0x16,0x4e,0x4c,0xc1,0x89,0xd9, +0x38,0x61,0x82,0x13,0xfb,0x70,0xc2,0x05,0x27,0x42,0x70,0xe2, +0x06,0x4e,0xa4,0xe0,0x44,0x25,0x4e,0xd4,0xe1,0xc4,0x0f,0x58, +0x4b,0x60,0xad,0x07,0xeb,0x19,0xb0,0x5e,0x05,0xeb,0x43,0xb0, +0x76,0x83,0xf5,0x0d,0x58,0x47,0xc3,0x3a,0x11,0xd6,0x59,0xb0, +0x2e,0x84,0x75,0x2d,0xac,0xdf,0xc2,0xfa,0x1b,0xac,0xff,0xc0, +0xa6,0x0f,0x6c,0xb4,0x61,0x33,0x01,0x36,0x86,0xb0,0x59,0x06, +0x9b,0x0d,0xb0,0x39,0x08,0x9b,0xe3,0xb0,0x71,0x84,0x8d,0x1f, +0x6c,0x6e,0xc3,0x26,0x15,0x36,0x8f,0x61,0xf3,0x0e,0x36,0x3f, +0x61,0xdb,0x05,0xb6,0xdd,0x61,0xab,0x0d,0xdb,0x51,0xb0,0x5d, +0x04,0xdb,0xed,0xb0,0xb5,0x87,0xad,0x3f,0x6c,0x23,0x61,0x9b, +0x03,0xdb,0x6a,0xd8,0x7e,0x80,0x2d,0x83,0x5d,0x57,0xd8,0xe9, +0xc2,0x6e,0x3c,0xec,0xa6,0xc1,0x6e,0x25,0xec,0x0e,0xc1,0xce, +0x06,0x76,0xa7,0x61,0xe7,0x0b,0xbb,0x6b,0xb0,0x8b,0x87,0x5d, +0x36,0xec,0x6a,0x60,0xf7,0x19,0x76,0x7f,0x70,0xb2,0x0f,0x4e, +0x8e,0xc4,0xc9,0x69,0x38,0x69,0x84,0x93,0xdb,0x70,0xf2,0x10, +0x4e,0xba,0xe2,0xe4,0x55,0x9c,0x7c,0x88,0x93,0xe5,0x38,0xf9, +0x06,0x27,0xdb,0x61,0xdf,0x0f,0xf6,0x23,0x61,0x6f,0x08,0xfb, +0xb5,0xb0,0x3f,0x06,0x7b,0x0f,0xd8,0xdf,0x80,0x7d,0x2a,0xec, +0x1f,0xc3,0xfe,0x35,0xec,0xff,0x85,0x83,0x3a,0x1c,0xc6,0xc1, +0x61,0x19,0x1c,0x76,0xc3,0xc1,0x19,0x0e,0x97,0xe1,0x10,0x03, +0x87,0x42,0x38,0xd4,0xc1,0xe1,0x2d,0x1c,0xda,0xe1,0x28,0x81, +0xa3,0x0e,0x1c,0x47,0xc0,0x71,0x3a,0x1c,0xcd,0xe1,0xb8,0x13, +0x8e,0x76,0x70,0xf4,0x87,0x63,0x04,0x1c,0x73,0xe1,0x58,0x0e, +0xc7,0x77,0x70,0xea,0x04,0x27,0x29,0x9c,0x0c,0xe0,0x34,0x0d, +0x4e,0xcb,0xe1,0xb4,0x13,0x4e,0xc7,0xe1,0xe4,0x01,0xa7,0x6b, +0x70,0x4a,0x82,0xd3,0x13,0x38,0x35,0xc0,0xe9,0x1f,0x38,0x77, +0x83,0xf3,0x20,0x38,0xcf,0x80,0xf3,0x4a,0x38,0x6f,0x87,0xf3, +0x71,0x38,0xdb,0xc1,0xd9,0x1f,0xce,0xd7,0xe0,0x1c,0x01,0xe7, +0x24,0x38,0xe7,0xc2,0xf9,0x09,0x9c,0x5f,0xc0,0xf9,0x17,0x4e, +0x75,0xc3,0xa9,0xde,0x38,0x65,0x80,0x53,0x73,0x71,0x6a,0x03, +0x4e,0x1d,0xc7,0x29,0x6f,0x9c,0xba,0x8b,0x53,0x59,0x38,0x55, +0x87,0x53,0x9f,0xe1,0xd2,0x19,0x2e,0x1a,0x70,0x19,0x07,0x97, +0xa5,0x70,0xd9,0x09,0x17,0x07,0xb8,0x5c,0x84,0x4b,0x28,0x5c, +0xa2,0xe1,0x92,0x08,0x97,0x34,0xb8,0x54,0xc3,0xe5,0x0b,0x5c, +0x01,0xd7,0xde,0x70,0xd5,0x87,0xeb,0x6c,0xb8,0xae,0x83,0xeb, +0x31,0xb8,0x7a,0xc1,0xf5,0x36,0x5c,0x33,0xe0,0x5a,0x0b,0xd7, +0x4f,0x38,0xad,0x8c,0xd3,0x5a,0x38,0x3d,0x09,0xa7,0x97,0xe3, +0xf4,0x5e,0x9c,0x3e,0x81,0xd3,0x3e,0x38,0x7d,0x0f,0xa7,0x63, +0x71,0x3a,0x15,0xa7,0xab,0x70,0xfa,0x33,0xce,0x88,0x70,0x46, +0x1b,0x67,0x26,0xe3,0x8c,0x29,0xce,0xec,0xc3,0x99,0x63,0x38, +0xe3,0x85,0x33,0xb7,0x71,0x26,0x03,0x67,0xaa,0x70,0xe6,0x83, +0xe2,0x27,0xbf,0xce,0x4a,0x71,0xd6,0x00,0x67,0x67,0xe1,0xec, +0x2a,0x9c,0xb5,0xc0,0xd9,0x53,0x38,0x1b,0x84,0xb3,0x31,0x38, +0xfb,0x08,0x67,0x5b,0x70,0x56,0x0e,0x37,0x0e,0x6e,0x3a,0x70, +0x1b,0x0f,0xb7,0x85,0x70,0xdb,0x02,0x37,0x1b,0xb8,0xf9,0xc1, +0x2d,0x02,0x6e,0x99,0x70,0xab,0x86,0xdb,0x5b,0xb8,0x7d,0x87, +0x1b,0x85,0xbb,0x04,0xee,0x9a,0x70,0xd7,0x83,0xfb,0x64,0xb8, +0x2f,0x85,0xfb,0x3a,0xb8,0xef,0x81,0xbb,0x03,0xdc,0xbd,0xe0, +0x7e,0x1b,0xee,0x71,0x70,0x2f,0x85,0xfb,0x4b,0xb8,0x7f,0x81, +0x87,0x12,0x3c,0xfa,0xc3,0x63,0x0c,0x3c,0x8c,0xe0,0xb1,0x01, +0x1e,0xc7,0xe0,0x71,0x1a,0x1e,0x17,0xe0,0x11,0x05,0x8f,0x24, +0x78,0x64,0xc1,0xa3,0x0a,0x1e,0x9f,0xe1,0xf1,0x07,0x9e,0x3d, +0xe1,0xa9,0x0f,0xcf,0xd9,0xf0,0x5c,0x0d,0xcf,0xc3,0xf0,0x74, +0x87,0x67,0x00,0x3c,0x6f,0xc0,0x33,0x09,0x9e,0xa5,0xf0,0x6c, +0x86,0xe7,0x1f,0x78,0xf5,0x86,0xd7,0x70,0x78,0xcd,0x82,0xd7, +0x5a,0x78,0x1d,0x86,0x97,0x3b,0xbc,0xae,0xc0,0x2b,0x06,0x5e, +0x8f,0xe0,0xd5,0x02,0xaf,0x3f,0x38,0xa7,0x84,0x73,0xbd,0x71, +0x4e,0x1f,0xe7,0x66,0xe0,0x9c,0x39,0xce,0xad,0xc5,0xb9,0xc3, +0x38,0xe7,0x8c,0x73,0x81,0x38,0x17,0x8a,0x73,0xc9,0x38,0x57, +0x8e,0x73,0xd5,0x38,0xf7,0x09,0xde,0x9d,0xe0,0xdd,0x0f,0xde, +0x06,0xf0,0x9e,0x01,0xef,0xa5,0xf0,0x5e,0x0d,0xef,0x8d,0xf0, +0xb6,0x80,0xb7,0x35,0xbc,0x5d,0xe0,0xed,0x09,0xef,0x20,0x78, +0x5f,0x83,0xf7,0x6d,0x78,0xa7,0xc3,0x3b,0x17,0xde,0x55,0xf0, +0xae,0x87,0xf7,0x67,0x78,0x33,0x9c,0x07,0xce,0xf7,0xc1,0xf9, +0x41,0x38,0x3f,0x11,0xe7,0x8d,0x71,0x7e,0x17,0xce,0x3b,0xe0, +0x7c,0x20,0xce,0x87,0xe3,0x7c,0x0e,0xce,0x3f,0xc7,0xf9,0x4f, +0xf0,0x51,0x82,0x0f,0x0f,0x9f,0xd1,0xf0,0x31,0x82,0xcf,0x26, +0xf8,0x58,0xc2,0xc7,0x03,0x3e,0xd7,0xe1,0xf3,0x10,0x3e,0xe5, +0xf0,0x79,0x07,0xdf,0x4e,0xf0,0x55,0x83,0xaf,0x3e,0x7c,0x67, +0xc1,0x77,0x0d,0x7c,0xf7,0xc3,0xd7,0x05,0xbe,0xbe,0xf0,0xbd, +0x07,0xdf,0x6c,0xf8,0xd6,0xc1,0xf7,0x35,0x7c,0xdb,0xe1,0x27, +0x85,0xdf,0x08,0xf8,0xcd,0x85,0xdf,0x12,0xf8,0x6d,0x80,0xdf, +0x36,0xf8,0x1d,0x87,0xdf,0x19,0xf8,0x5d,0x86,0x5f,0x04,0xfc, +0xe2,0xe1,0x57,0x0a,0xbf,0x97,0xf0,0xfb,0x01,0x7f,0x25,0xf8, +0xab,0xc1,0x7f,0x38,0xfc,0xe7,0xc1,0x7f,0x19,0xfc,0xb7,0xc1, +0xdf,0x0a,0xfe,0xde,0xf0,0x0f,0x85,0x7f,0x12,0xfc,0x4b,0xe1, +0xdf,0x0a,0xff,0x3f,0x08,0x90,0x20,0x80,0x47,0xc0,0x58,0x04, +0x18,0x21,0x60,0x13,0x02,0x2c,0x11,0xe0,0x81,0x80,0xeb,0x08, +0x48,0x44,0x40,0x31,0x02,0xea,0x11,0xf0,0x03,0x17,0x54,0x70, +0xa1,0x17,0x2e,0x68,0xe2,0x82,0x1e,0x2e,0x4c,0xc5,0x85,0xe5, +0xb8,0xb0,0x0a,0x17,0x36,0xe3,0xc2,0x71,0x5c,0xf0,0xc2,0x85, +0x9b,0xb8,0x70,0x0f,0x17,0xb2,0x70,0xe1,0x09,0x2e,0xbc,0xc1, +0x85,0xdf,0x08,0xec,0x86,0x40,0x1e,0x81,0xe3,0x10,0x38,0x15, +0x81,0x26,0x08,0xdc,0x85,0x40,0x7b,0x04,0x06,0x20,0x30,0x02, +0x81,0x39,0x08,0xac,0x43,0xe0,0x37,0x04,0x52,0x5c,0x54,0xc5, +0xc5,0x7e,0xb8,0xa8,0x8f,0x8b,0x63,0x71,0x71,0x01,0x2e,0x6e, +0xc4,0x45,0x4b,0x5c,0xf4,0xc4,0xc5,0x50,0x5c,0x8c,0xc1,0xc5, +0x22,0x5c,0xac,0xc2,0xc5,0x8f,0xb8,0xf8,0x13,0x41,0x62,0x04, +0x69,0x21,0x68,0x0c,0x82,0x8c,0x10,0xb4,0x01,0x41,0x16,0x08, +0x72,0x41,0x50,0x30,0x82,0x22,0x11,0x94,0x87,0xa0,0x17,0x08, +0xfa,0x82,0x4b,0x9d,0x71,0x49,0x0d,0x97,0x46,0xe1,0x92,0x21, +0x2e,0x99,0xe1,0xd2,0x0e,0x5c,0xb2,0xc3,0xa5,0x73,0xb8,0x74, +0x1d,0x97,0xa2,0x70,0xe9,0x21,0x2e,0x3d,0xc1,0xa5,0x37,0xb8, +0xf4,0x15,0xc1,0x40,0x70,0x4f,0x04,0xeb,0x23,0x78,0x32,0x82, +0x4d,0x10,0xbc,0x01,0xc1,0x07,0x10,0xec,0x8a,0xe0,0xcb,0x08, +0x8e,0x45,0x70,0x31,0x82,0x9f,0x20,0xf8,0x05,0x82,0xdf,0x20, +0xf8,0x07,0x2e,0x77,0xc2,0xe5,0x7e,0xb8,0x6c,0x80,0xcb,0x53, +0x70,0x79,0x36,0x2e,0xaf,0xc4,0xe5,0x7d,0xb8,0xec,0x88,0xcb, +0xbe,0xb8,0x1c,0x8c,0xcb,0x37,0x71,0x39,0x01,0x97,0x0b,0x71, +0xb9,0x0e,0x97,0x3f,0xe2,0xb2,0x1c,0x21,0x3d,0x11,0x32,0x10, +0x21,0xe3,0x11,0x32,0x03,0x21,0x66,0x08,0xd9,0x8d,0x90,0xe3, +0x08,0x71,0x46,0xc8,0x79,0x84,0x04,0x23,0xe4,0x16,0x42,0xc2, +0x11,0x12,0x8d,0x90,0x54,0x84,0x14,0x23,0xa4,0x16,0x21,0xaf, +0x10,0xf2,0x19,0x21,0x32,0x5c,0x01,0xae,0x70,0xb8,0xc2,0xe3, +0xca,0x30,0x5c,0x99,0x84,0x2b,0xcb,0x70,0x65,0x3b,0xae,0xec, +0xc3,0x15,0x27,0x5c,0x39,0x8f,0x2b,0xa1,0xb8,0xf2,0x10,0x57, +0x1e,0xe3,0x4a,0x2b,0xae,0xfc,0xc6,0x55,0xe0,0x6a,0x0f,0x5c, +0xd5,0xc3,0xd5,0xc9,0xb8,0x6a,0x8c,0xab,0x5b,0x70,0xd5,0x0a, +0x57,0xbd,0x70,0xf5,0x22,0xae,0xde,0xc5,0xd5,0x24,0x5c,0x2d, +0xc3,0xd5,0x66,0x5c,0xa5,0xb8,0xd6,0x0d,0xd7,0x06,0xe2,0xda, +0x14,0x5c,0x33,0xc1,0xb5,0x35,0xb8,0x76,0x10,0xd7,0x5c,0x71, +0xed,0x22,0xae,0x85,0xe3,0x5a,0x16,0xae,0xd5,0xe0,0x5a,0x2b, +0xae,0xfd,0xc2,0x75,0x0e,0xd7,0x07,0xe0,0xfa,0x44,0x5c,0x5f, +0x8a,0xeb,0xdb,0x70,0x7d,0x2f,0xae,0xdb,0xe2,0xba,0x0f,0xae, +0xdf,0xc1,0xf5,0x34,0x5c,0x2f,0xc7,0xf5,0x5a,0x5c,0x6f,0xc4, +0xf5,0xd7,0xb8,0xfe,0x03,0xd7,0xdb,0x71,0xa3,0x1b,0x6e,0x68, +0xe1,0xc6,0x68,0xdc,0x98,0x8a,0x1b,0xcb,0x71,0x63,0x17,0x6e, +0x9c,0xc4,0x0d,0x37,0xdc,0xb8,0x8a,0x1b,0xd1,0xb8,0x91,0x83, +0x1b,0xcf,0x70,0xe3,0x0b,0x42,0x09,0x42,0xfb,0x22,0xd4,0x00, +0xa1,0xd3,0x10,0x3a,0x0b,0xa1,0x8b,0x11,0x6a,0x82,0xd0,0xf5, +0x08,0x3d,0x8c,0xd0,0x53,0x08,0x75,0x43,0x68,0x20,0x42,0xef, +0x22,0x34,0x0d,0xa1,0x15,0x08,0x6d,0x44,0xe8,0x4f,0xdc,0x54, +0xc1,0xcd,0xfe,0xb8,0x39,0x16,0x37,0x17,0xe2,0xa6,0x39,0x6e, +0xee,0xc5,0x4d,0x5b,0xdc,0x74,0xc1,0x4d,0x0f,0xdc,0x0c,0xc1, +0xcd,0x28,0xdc,0x4c,0xc5,0xcd,0x72,0xdc,0x7c,0x8d,0x9b,0x7f, +0x70,0xab,0x3b,0x6e,0xe9,0xe1,0xd6,0x14,0xdc,0x32,0xc6,0xad, +0xed,0xb8,0x65,0x8d,0x5b,0xee,0xb8,0x75,0x15,0xb7,0x1e,0xe0, +0xd6,0x43,0xdc,0x2a,0xc0,0xad,0xa7,0xb8,0xf5,0x16,0xb7,0xe4, +0xb8,0xdd,0x13,0xb7,0x07,0xe0,0xf6,0x60,0xdc,0x9e,0x86,0xdb, +0xcb,0x71,0x7b,0x3b,0x6e,0x5b,0xe3,0xf6,0x39,0xdc,0x0e,0xc5, +0xed,0x24,0xdc,0x2e,0xc5,0xed,0x4a,0xdc,0x7e,0x8e,0xdb,0x5f, +0x71,0x47,0x09,0x77,0xd4,0x71,0x67,0x24,0xee,0xcc,0xc0,0x1d, +0x33,0xdc,0xd9,0x81,0x3b,0x87,0x70,0xc7,0x09,0x77,0x2e,0xe0, +0xce,0x1d,0xdc,0x49,0xc2,0x9d,0x22,0xdc,0xa9,0xc4,0x9d,0x06, +0xdc,0xf9,0x81,0xbb,0x62,0xdc,0x55,0xc5,0xdd,0x81,0xb8,0x3b, +0x19,0x77,0x97,0xe1,0xee,0x36,0xdc,0x3d,0x84,0xbb,0x8e,0xb8, +0x7b,0x16,0x77,0x43,0x70,0xf7,0x01,0xee,0xe6,0xe0,0x6e,0x35, +0xee,0xbe,0xc3,0x5d,0x86,0x30,0x0e,0x61,0xfd,0x11,0x66,0x80, +0xb0,0x49,0x08,0x9b,0x87,0xb0,0x65,0x08,0x5b,0x85,0xb0,0xad, +0x08,0x3b,0x88,0x30,0x3b,0x84,0xb9,0x21,0xec,0x02,0xc2,0xae, +0x23,0x2c,0x12,0x61,0x29,0x08,0x2b,0x44,0x58,0x15,0xc2,0x9a, +0x11,0xf6,0x01,0x61,0xbf,0x10,0xd6,0x8e,0x7b,0x22,0xdc,0xd3, +0xc0,0xbd,0x91,0xb8,0x37,0x11,0xf7,0x66,0xe1,0x9e,0x31,0xee, +0x6d,0xc6,0xbd,0x43,0xb8,0x67,0x83,0x7b,0xe7,0x70,0x2f,0x04, +0xf7,0xee,0xe0,0x5e,0x3c,0xee,0x15,0xe1,0x5e,0x05,0xee,0xbd, +0xc6,0xbd,0x7f,0x10,0xae,0x8c,0x70,0x55,0x84,0xeb,0x22,0x7c, +0x34,0xc2,0xa7,0x22,0x7c,0x29,0xc2,0xb7,0x20,0xdc,0x12,0xe1, +0x6e,0x08,0x0f,0x41,0xf8,0x7d,0x84,0xa7,0x21,0xbc,0x1c,0xe1, +0x35,0x08,0x7f,0x85,0xf0,0x4f,0x88,0xe8,0x84,0x88,0x3e,0x88, +0xe8,0x8f,0x88,0x31,0x88,0x98,0x8f,0x88,0x55,0x88,0xd8,0x87, +0x08,0x07,0x44,0xf8,0x21,0xe2,0x26,0x22,0x92,0x10,0x51,0x82, +0x88,0x2a,0x44,0xbc,0x43,0x84,0x1c,0xf7,0xbb,0xe2,0xfe,0x00, +0xdc,0x1f,0x8f,0xfb,0xd3,0x71,0x7f,0x01,0xee,0xaf,0xc2,0xfd, +0x5d,0xb8,0x6f,0x8b,0xfb,0x6e,0xb8,0xef,0x8d,0xfb,0xa1,0xb8, +0x9f,0x88,0xfb,0x8f,0x70,0xbf,0x11,0xf7,0x7f,0x20,0x52,0x84, +0xc8,0x7e,0x88,0x1c,0x84,0xc8,0x29,0x88,0x5c,0x86,0x48,0x73, +0x44,0xae,0x47,0xa4,0x05,0x22,0x4f,0x22,0xd2,0x07,0x91,0xb7, +0x10,0x19,0x8d,0xc8,0x3c,0x44,0x56,0x20,0xf2,0x35,0x22,0xdb, +0x10,0xd5,0x05,0x51,0xbd,0x11,0x35,0x08,0x51,0x93,0x10,0x35, +0x1f,0x51,0xab,0x11,0xb5,0x17,0x51,0x76,0x88,0x3a,0x87,0xa8, +0x8b,0x88,0xba,0x81,0xa8,0x30,0x44,0xc5,0x22,0x2a,0x0d,0x51, +0x05,0x88,0x2a,0x47,0x54,0x0b,0xa2,0xbe,0x23,0x8a,0xe1,0x81, +0x2a,0x1e,0xe8,0xe0,0x81,0x3e,0x1e,0x4c,0xc3,0x83,0xf9,0x78, +0x60,0x8e,0x07,0xbb,0xf1,0xc0,0x16,0x0f,0xce,0xe1,0x41,0x08, +0x1e,0x3c,0xc0,0x83,0x64,0x3c,0xc8,0xc4,0x83,0x62,0x3c,0xa8, +0xc3,0x83,0xf7,0x78,0x20,0x47,0x74,0x77,0x44,0xeb,0x22,0x7a, +0x02,0xa2,0x8d,0x10,0xbd,0x1e,0xd1,0x07,0x11,0xed,0x8c,0xe8, +0x00,0x44,0xdf,0x45,0x74,0x0c,0xa2,0xf3,0x10,0x5d,0x8b,0xe8, +0x0f,0x88,0x6e,0x47,0x4c,0x0f,0xc4,0x0c,0x44,0xcc,0x44,0xc4, +0x2c,0x40,0xcc,0x2a,0xc4,0xec,0x42,0x8c,0x0d,0x62,0xbc,0x10, +0x73,0x0d,0x31,0xb1,0x88,0xc9,0x46,0x4c,0x09,0x62,0x1a,0x11, +0xf3,0x19,0xb1,0x9d,0x10,0xdb,0x05,0xb1,0x3c,0x62,0x0d,0x10, +0x3b,0x03,0xb1,0x0b,0x10,0xbb,0x16,0xb1,0x16,0x88,0x75,0x44, +0xac,0x1f,0x62,0x83,0x11,0x1b,0x89,0xd8,0x2c,0xc4,0x56,0x22, +0xf6,0x0d,0x62,0xbf,0x20,0x56,0x86,0x38,0x31,0xe2,0xfa,0x22, +0x6e,0x10,0xe2,0xc6,0x23,0x6e,0x21,0xe2,0xd6,0x21,0xee,0x00, +0xe2,0x9c,0x10,0xe7,0x8d,0xb8,0x4b,0x88,0xbb,0x8f,0xb8,0x14, +0xc4,0x15,0x22,0xae,0x0a,0x71,0xcd,0x88,0xfb,0x8a,0x38,0x39, +0xe2,0xbb,0x20,0x5e,0x03,0xf1,0xc3,0x10,0x3f,0x1d,0xf1,0xb3, +0x11,0xbf,0x0c,0xf1,0x6b,0x11,0xbf,0x13,0xf1,0x47,0x10,0x6f, +0x8d,0x78,0x57,0xc4,0xfb,0x20,0x3e,0x04,0xf1,0x61,0x88,0x8f, +0x47,0x7c,0x16,0xe2,0x4b,0x11,0x5f,0x85,0xf8,0x06,0xc4,0x7f, +0x45,0x3c,0x45,0x82,0x32,0x12,0xfa,0x21,0x61,0x28,0x12,0xa6, +0x21,0x61,0x19,0x12,0x36,0x23,0xe1,0x20,0x12,0xec,0x91,0x70, +0x1e,0x09,0x37,0x90,0x10,0x87,0x84,0x74,0x24,0x3c,0x41,0x42, +0x33,0x12,0x3e,0x22,0x41,0x86,0x44,0x0e,0x89,0x3c,0x12,0x47, +0x22,0x71,0x16,0x12,0xcd,0x90,0xb8,0x03,0x89,0x56,0x48,0x74, +0x43,0x62,0x30,0x12,0xef,0x23,0x31,0x05,0x89,0xd9,0x48,0xac, +0x44,0xe2,0x6b,0x24,0x52,0x24,0x75,0x41,0x92,0x26,0x92,0x46, +0x20,0xc9,0x10,0x49,0xa6,0x48,0x5a,0x8b,0xa4,0xfd,0x48,0xb2, +0x45,0x92,0x17,0x92,0xae,0x22,0x29,0x1a,0x49,0x39,0x48,0xaa, +0x42,0xd2,0x1b,0x24,0xc9,0xf0,0x90,0xc3,0x43,0x1e,0x0f,0x47, +0xe2,0xe1,0x2c,0x3c,0x34,0xc3,0xc3,0x1d,0x78,0x68,0x85,0x87, +0x6e,0x78,0x18,0x8c,0x87,0xe1,0x78,0x98,0x86,0x87,0x8f,0xf1, +0xf0,0x25,0x1e,0xfe,0x40,0xb2,0x12,0x92,0xfb,0x22,0x59,0x0f, +0xc9,0x23,0x90,0x6c,0x88,0x64,0x53,0x24,0x6f,0x47,0xf2,0x51, +0x24,0x3b,0x23,0xd9,0x1f,0xc9,0xb7,0x91,0x9c,0x84,0xe4,0x62, +0x24,0xbf,0x40,0xf2,0x67,0x24,0xff,0x8b,0x94,0x9e,0x48,0x19, +0x88,0x94,0x09,0x48,0x59,0x88,0x94,0xb5,0x48,0xd9,0x8f,0x14, +0x7b,0xa4,0x9c,0x47,0x4a,0x08,0x52,0xa2,0x90,0x92,0x85,0x94, +0xa7,0x48,0x79,0x89,0x94,0xaf,0x48,0x69,0x47,0x6a,0x57,0xa4, +0xf6,0x42,0xaa,0x1a,0x52,0x0d,0x90,0x3a,0x1d,0xa9,0xc6,0x48, +0xdd,0x82,0xd4,0x83,0x48,0x75,0x40,0xaa,0x0f,0x52,0x2f,0x21, +0x35,0x02,0xa9,0xa9,0x48,0x2d,0x41,0xea,0x0b,0xa4,0xbe,0x41, +0xea,0x6f,0xa4,0x89,0x90,0xd6,0x0f,0x69,0xfa,0x48,0x9b,0x82, +0x34,0x23,0xa4,0xad,0x45,0xda,0x3e,0xa4,0xd9,0x21,0xcd,0x0b, +0x69,0x57,0x90,0x16,0x85,0xb4,0x4c,0xa4,0x95,0x23,0xad,0x19, +0x69,0x3f,0x90,0x0e,0xa4,0xf7,0x41,0xba,0x2e,0xd2,0xc7,0x21, +0x7d,0x36,0xd2,0x4d,0x90,0xbe,0x11,0xe9,0x07,0x91,0xee,0x88, +0x74,0x1f,0xa4,0xdf,0x40,0x7a,0x2c,0xd2,0x73,0x91,0x5e,0x85, +0xf4,0xd7,0x48,0xff,0x8d,0x0c,0x31,0x32,0x54,0x91,0x21,0x45, +0xc6,0x60,0x64,0x4c,0x42,0x86,0x11,0x32,0xd6,0x22,0x63,0x1f, +0x32,0xec,0x90,0xe1,0x85,0x8c,0x2b,0xc8,0x88,0x42,0x46,0x26, +0x32,0xca,0x91,0xd1,0x8c,0x8c,0x1f,0xc8,0x04,0x32,0x39,0x64, +0x6a,0x22,0x73,0x38,0x32,0x67,0x20,0x73,0x31,0x32,0xd7,0x23, +0xd3,0x02,0x99,0xf6,0xc8,0xf4,0x44,0x66,0x08,0x32,0x23,0x91, +0x99,0x81,0xcc,0x02,0x64,0x56,0x21,0xf3,0x15,0x32,0x7f,0x22, +0x4b,0x09,0x59,0x52,0x64,0x0d,0x46,0xd6,0x24,0x64,0x19,0x21, +0x6b,0x2d,0xb2,0xf6,0x21,0xcb,0x0e,0x59,0xce,0xc8,0xf2,0x43, +0xd6,0x4d,0x64,0xc5,0x23,0x2b,0x1f,0x59,0xa5,0xc8,0x7a,0x86, +0xac,0xf7,0xc8,0xfa,0x83,0x6c,0x09,0xb2,0x79,0x64,0x8f,0x40, +0xf6,0x4c,0x64,0x9b,0x20,0x7b,0x13,0xb2,0x77,0x20,0xfb,0x38, +0xb2,0xcf,0x20,0xfb,0x02,0xb2,0x43,0x91,0x1d,0x87,0xec,0x3c, +0x64,0x57,0x23,0xbb,0x1e,0xd9,0x2d,0xc8,0xfe,0x85,0x1c,0x65, +0xe4,0xf4,0x45,0xce,0x10,0xe4,0x4c,0x46,0xce,0x22,0xe4,0xac, +0x43,0xce,0x5e,0xe4,0x58,0x23,0xe7,0x2c,0x72,0x02,0x91,0x73, +0x1b,0x39,0xf1,0xc8,0xc9,0x45,0xce,0x53,0xe4,0x34,0x23,0xe7, +0x1b,0x72,0x18,0x72,0x45,0xc8,0xed,0x89,0x5c,0x1e,0xb9,0x43, +0x90,0x3b,0x16,0xb9,0x33,0x90,0x6b,0x84,0xdc,0x15,0xc8,0xdd, +0x84,0xdc,0xbd,0xc8,0xb5,0x44,0xae,0x23,0x72,0x3d,0x90,0x7b, +0x01,0xb9,0xd7,0x91,0x1b,0x81,0xdc,0x44,0xe4,0x66,0x23,0xb7, +0x14,0xb9,0x4f,0x91,0xdb,0x80,0xdc,0x77,0xc8,0xfd,0x89,0xdc, +0x3f,0xc8,0x53,0x46,0x5e,0x0f,0xe4,0xa9,0x23,0x4f,0x17,0x79, +0xc3,0x90,0x37,0x06,0x79,0x53,0x91,0x37,0x17,0x79,0x4b,0x91, +0xb7,0x12,0x79,0x1b,0x91,0x77,0x00,0x79,0x36,0xc8,0x73,0x47, +0xde,0x25,0xe4,0xdd,0x43,0x5e,0x3c,0xf2,0xf2,0x90,0x57,0x85, +0xbc,0x7a,0xe4,0x7d,0x42,0x9e,0x1c,0xf9,0x04,0xf9,0xbd,0x90, +0xaf,0x8b,0xfc,0xb1,0xc8,0x9f,0x83,0x7c,0x33,0xe4,0x6f,0x43, +0xfe,0x51,0xe4,0x9f,0x42,0xbe,0x1f,0xf2,0x43,0x91,0x1f,0x8b, +0xfc,0x1c,0xe4,0x3f,0x45,0xfe,0x2b,0xe4,0xff,0x50,0xfc,0xab, +0xfc,0x82,0x5e,0x28,0xd0,0x45,0xc1,0x58,0x14,0xcc,0x41,0x81, +0x31,0x0a,0x36,0xa1,0xe0,0x20,0x0a,0x1c,0x50,0xe0,0x8d,0x82, +0xab,0x28,0x08,0x47,0x41,0x0a,0x0a,0x1e,0xa1,0xe0,0x39,0x0a, +0x3e,0xa0,0xe0,0x0f,0x0a,0x39,0x14,0x6a,0xa0,0xd0,0x00,0x85, +0x53,0x51,0xb8,0x18,0x85,0xeb,0x50,0xb8,0x0f,0x85,0xb6,0x28, +0xf4,0x40,0x61,0x30,0x0a,0xef,0xa0,0x30,0x11,0x85,0x05,0x28, +0xac,0x41,0xe1,0x1b,0x14,0x7e,0x46,0xe1,0x2f,0x14,0x29,0xa1, +0xa8,0x0f,0x8a,0xf4,0x50,0x34,0x1e,0x45,0xf3,0x50,0xb4,0x04, +0x45,0xeb,0x51,0xb4,0x1f,0x45,0x76,0x28,0xf2,0x44,0xd1,0x65, +0x14,0x45,0xa0,0x28,0x15,0x45,0x25,0x28,0x7a,0x81,0xa2,0x8f, +0x28,0x62,0x8a,0xf7,0x81,0xc5,0xbd,0x51,0x3c,0x10,0xc5,0xe3, +0x50,0x3c,0x17,0xc5,0x2b,0x50,0xbc,0x1d,0xc5,0xc7,0x50,0xec, +0x82,0x62,0x7f,0x14,0xdf,0x44,0x71,0x04,0x8a,0xe3,0x50,0x9c, +0x8b,0xe2,0x4a,0x14,0xb7,0xa0,0xf8,0x27,0x1e,0x01,0x8f,0x7a, +0xe3,0xd1,0x40,0x3c,0x1a,0x87,0x47,0x86,0x78,0x64,0x82,0x47, +0x9b,0xf1,0xe8,0x10,0x1e,0x39,0xe2,0xd1,0x79,0x3c,0xba,0x88, +0x47,0x57,0xf1,0x28,0x0a,0x8f,0x32,0xf0,0xe8,0x31,0x1e,0x35, +0xe2,0xd1,0x17,0x3c,0xfa,0x8b,0x92,0xae,0x28,0xd1,0x40,0x89, +0x3e,0x4a,0x26,0xa2,0x64,0x1a,0x4a,0x16,0xa1,0x64,0x35,0x4a, +0xb6,0xa0,0x64,0x2f,0x4a,0xac,0x51,0x72,0x16,0x25,0x7e,0x28, +0xb9,0x81,0x92,0x68,0x94,0xa4,0xa2,0xa4,0x00,0x25,0x15,0x28, +0xa9,0x47,0xc9,0x47,0x94,0xfc,0x41,0x69,0x17,0x94,0xaa,0xa1, +0x74,0x08,0x4a,0x27,0xa2,0x74,0x3e,0x4a,0xcd,0x51,0xba,0x1e, +0xa5,0xfb,0x50,0x7a,0x1c,0xa5,0xae,0x28,0xf5,0x47,0x69,0x28, +0x4a,0x63,0x50,0x9a,0x85,0xd2,0x27,0x28,0x6d,0x44,0xe9,0x67, +0x94,0xca,0x51,0x26,0x41,0x99,0x06,0xca,0x86,0xa2,0x6c,0x32, +0xca,0x16,0xa2,0x6c,0x15,0xca,0x76,0xa2,0xcc,0x12,0x65,0x2e, +0x28,0xf3,0x43,0xd9,0x0d,0x94,0x45,0xa3,0x2c,0x13,0x65,0x8f, +0x51,0xd6,0x80,0xb2,0x4f,0x28,0x63,0x78,0xcc,0xe1,0xb1,0x3a, +0x1e,0xeb,0xe3,0xf1,0x24,0x3c,0x5e,0x80,0xc7,0x2b,0xf1,0x78, +0x07,0x1e,0x1f,0xc3,0xe3,0x53,0x78,0xec,0x8b,0xc7,0xd7,0xf1, +0xf8,0x01,0x1e,0x67,0xe0,0x71,0x19,0x1e,0xd7,0xe3,0xf1,0x47, +0x3c,0xfe,0x83,0x27,0x5d,0xf0,0x44,0x0d,0x4f,0x86,0xe0,0xc9, +0x44,0x3c,0x99,0x8f,0x27,0xe6,0x78,0xb2,0x1d,0x4f,0x8e,0xe2, +0x89,0x33,0x9e,0xf8,0xe0,0xc9,0x35,0x3c,0x89,0xc2,0x93,0x04, +0x3c,0xc9,0xc3,0x93,0x4a,0x3c,0x79,0x85,0x27,0xdf,0x51,0xde, +0x09,0xe5,0xdd,0x51,0xae,0x85,0xf2,0x11,0x28,0x9f,0x8e,0xf2, +0x25,0x28,0x5f,0x87,0xf2,0xbd,0x28,0xb7,0x46,0xf9,0x59,0x94, +0x07,0xa2,0xfc,0x36,0xca,0xe3,0x51,0x9e,0x89,0xf2,0xc7,0x28, +0x6f,0x40,0xf9,0x27,0x94,0x33,0x54,0x70,0xa8,0x50,0x47,0x85, +0x3e,0x2a,0x26,0xa1,0x62,0x01,0x2a,0x56,0xa2,0x62,0x07,0x2a, +0x8e,0xa1,0xe2,0x14,0x2a,0x7c,0x51,0x71,0x1d,0x15,0x0f,0x50, +0x91,0x81,0x8a,0x32,0x54,0xd4,0xa3,0xe2,0x23,0x2a,0xfe,0xe0, +0x69,0x17,0x3c,0x55,0xc3,0xd3,0x21,0x78,0x3a,0x11,0x4f,0xe7, +0xe3,0xa9,0x39,0x9e,0xae,0xc3,0xd3,0xbd,0x78,0x6a,0x8d,0xa7, +0x67,0xf1,0x34,0x10,0x4f,0x43,0xf0,0x34,0x14,0x4f,0x63,0xf0, +0x34,0x0b,0x4f,0x9f,0xe0,0x69,0x23,0x9e,0x7e,0xc6,0x53,0x39, +0x2a,0x25,0xa8,0xd4,0x40,0xe5,0x50,0x54,0x4e,0x46,0xa5,0x21, +0x2a,0x8d,0x51,0xb9,0x11,0x95,0x16,0xa8,0xb4,0x43,0xa5,0x07, +0x2a,0x2f,0xa1,0xf2,0x0e,0x2a,0xe3,0x50,0x99,0x85,0xca,0x32, +0x54,0x3e,0x47,0x65,0x2b,0x2a,0xbf,0xa0,0x52,0x86,0x2a,0x82, +0xaa,0xae,0xa8,0xea,0x8b,0xaa,0x01,0xa8,0x32,0x40,0xd5,0x78, +0x54,0xcd,0x44,0x95,0x11,0xaa,0x8c,0x51,0xb5,0x06,0x55,0xdb, +0x50,0x65,0x81,0x2a,0x2b,0x54,0x39,0xa1,0xca,0x03,0x55,0x01, +0xa8,0xba,0x8a,0xaa,0x30,0x54,0x25,0xa2,0x2a,0x0f,0x55,0x4f, +0x51,0xf5,0x12,0x55,0x5f,0x50,0x25,0x47,0x35,0x87,0x6a,0x35, +0x54,0x0f,0x46,0xf5,0x78,0x54,0xcf,0x41,0xf5,0x72,0x54,0x6f, +0x42,0xb5,0x05,0xaa,0x6d,0x51,0xed,0x86,0xea,0x40,0x54,0xdf, +0x42,0x75,0x2c,0xaa,0xb3,0x50,0xfd,0x18,0xd5,0xf5,0xa8,0xfe, +0x80,0x6a,0x19,0x6a,0x44,0xa8,0xe9,0x83,0x1a,0x5d,0xd4,0x8c, +0x46,0xcd,0x4c,0xd4,0x2c,0x45,0xcd,0x3a,0xd4,0xec,0x41,0x8d, +0x15,0x6a,0x5c,0x51,0xe3,0x87,0x9a,0xeb,0xa8,0x89,0x42,0x4d, +0x1a,0x6a,0x1e,0xa1,0xe6,0x19,0x6a,0xde,0xa0,0xe6,0x17,0x6a, +0x09,0x6a,0x7b,0xa0,0x56,0x0b,0xb5,0xc3,0x51,0x3b,0x15,0xb5, +0x46,0xa8,0x5d,0x85,0xda,0x1d,0xa8,0x3d,0x8a,0x5a,0x27,0xd4, +0x7a,0xa3,0x36,0x04,0xb5,0xe1,0xa8,0x7d,0x88,0xda,0x02,0xd4, +0x56,0xa1,0xf6,0x15,0x6a,0xbf,0xa1,0xf6,0x2f,0x9e,0x75,0xc5, +0x33,0x0d,0x3c,0xd3,0xc7,0xb3,0x89,0x78,0x36,0x0f,0xcf,0xcc, +0xf0,0x6c,0x0b,0x9e,0x1d,0xc4,0xb3,0x93,0x78,0xe6,0x81,0x67, +0x41,0x78,0x76,0x07,0xcf,0xe2,0xf1,0x2c,0x07,0xcf,0xca,0xf1, +0xac,0x11,0xcf,0x3e,0xe1,0xd9,0x1f,0xd4,0xa9,0xa0,0xae,0x2f, +0xea,0xf4,0x50,0x37,0x16,0x75,0xb3,0x50,0x67,0x8c,0xba,0x0d, +0xa8,0xdb,0x87,0x3a,0x6b,0xd4,0x9d,0x41,0x5d,0x00,0xea,0x42, +0x51,0x17,0x8d,0xba,0x0c,0xd4,0x95,0xa2,0xee,0x39,0xea,0xde, +0xa1,0xee,0x37,0x9e,0x2b,0xe1,0x79,0x2f,0x3c,0x1f,0x80,0xe7, +0x23,0xf1,0x7c,0x3a,0x9e,0x2f,0xc6,0xf3,0x35,0x78,0xbe,0x0b, +0xcf,0x2d,0xf1,0xfc,0x14,0x9e,0xfb,0xe0,0xf9,0x55,0x3c,0xbf, +0x8f,0xe7,0x29,0x78,0x5e,0x84,0xe7,0x35,0x78,0xde,0x8a,0xe7, +0x3f,0xf0,0xa2,0x13,0x5e,0xa8,0xe2,0x05,0x8f,0x17,0x06,0x78, +0x31,0x19,0x2f,0x16,0xe0,0x85,0x39,0x5e,0x6c,0xc3,0x8b,0xc3, +0x78,0xe1,0x80,0x17,0x5e,0x78,0xe1,0x87,0x17,0xd7,0xf1,0xe2, +0x0e,0x5e,0xc4,0xe3,0x45,0x0e,0x5e,0x94,0xe3,0x45,0x23,0x5e, +0x7c,0xc2,0x8b,0x3f,0xa8,0x57,0x41,0x7d,0x5f,0xd4,0xeb,0xa1, +0x7e,0x2c,0xea,0x67,0xa1,0xde,0x18,0xf5,0x1b,0x50,0xbf,0x0f, +0xf5,0xd6,0xa8,0x3f,0x83,0x7a,0x3f,0xd4,0x5f,0x45,0x7d,0x38, +0xea,0x13,0x51,0x9f,0x83,0xfa,0xc7,0xa8,0x7f,0x8e,0xfa,0x37, +0xa8,0xff,0x81,0xfa,0xbf,0x68,0xe0,0xd0,0xd0,0x17,0x0d,0x5a, +0x68,0x18,0x8c,0x86,0x91,0x68,0x98,0x88,0x86,0x99,0x68,0x58, +0x80,0x06,0x63,0x34,0xac,0x42,0xc3,0x26,0x34,0xec,0x42,0xc3, +0x41,0x34,0x58,0xa1,0xc1,0x05,0x0d,0x3e,0x68,0xb8,0x82,0x86, +0x70,0x34,0x24,0xa1,0x21,0x0f,0x0d,0x15,0x68,0x68,0x44,0xc3, +0x47,0x34,0xc8,0xd0,0xa8,0x8c,0xc6,0x5e,0x68,0xd4,0x46,0xe3, +0x70,0x34,0x4e,0x41,0xe3,0x02,0x34,0xae,0x40,0xe3,0x16,0x34, +0x1e,0x40,0xa3,0x2d,0x1a,0xcf,0xa2,0x31,0x00,0x8d,0x37,0xd0, +0x18,0x85,0xc6,0x54,0x34,0x16,0xa1,0xb1,0x1a,0x8d,0xaf,0xd0, +0xf8,0x15,0x8d,0x72,0x34,0x75,0x41,0x53,0x5f,0x34,0x0d,0x44, +0xd3,0x68,0x34,0xcd,0x40,0xd3,0x62,0x34,0xad,0x46,0xd3,0x0e, +0x34,0x1d,0x41,0x93,0x03,0x9a,0x3c,0xd1,0x14,0x84,0xa6,0xdb, +0x68,0x8a,0x45,0x53,0x26,0x9a,0x4a,0xd1,0x54,0x87,0xa6,0x37, +0x68,0xfa,0x89,0x97,0x9d,0xf0,0xb2,0x1b,0x5e,0x6a,0xe0,0xe5, +0x10,0xbc,0x1c,0x8f,0x97,0xb3,0xf1,0xd2,0x18,0x2f,0xd7,0xe3, +0xe5,0x1e,0xbc,0x3c,0x8e,0x97,0xa7,0xf0,0xf2,0x3c,0x5e,0x86, +0xe0,0xe5,0x3d,0xbc,0x4c,0xc4,0xcb,0x5c,0xbc,0x2c,0xc7,0xcb, +0x06,0xbc,0xfc,0x80,0x97,0x14,0xcd,0x4a,0x68,0xee,0x89,0x66, +0x2d,0x34,0x0f,0x43,0xf3,0x64,0x34,0xcf,0x47,0xb3,0x19,0x9a, +0x37,0xa3,0xd9,0x02,0xcd,0x36,0x68,0x3e,0x83,0x66,0x7f,0x34, +0x5f,0x47,0x73,0x24,0x9a,0x53,0xd0,0x5c,0x88,0xe6,0x2a,0x34, +0x37,0xa3,0xf9,0x0b,0x9a,0x19,0x5e,0xa9,0xe0,0x95,0x14,0xaf, +0x74,0xf1,0x6a,0x14,0x5e,0x4d,0xc7,0xab,0x45,0x78,0xb5,0x0a, +0xaf,0xb6,0xe3,0xd5,0x61,0xbc,0xb2,0xc7,0x2b,0x0f,0xbc,0xba, +0x88,0x57,0xb7,0xf0,0x2a,0x06,0xaf,0x32,0xf0,0xaa,0x04,0xaf, +0x9e,0xe1,0xd5,0x6b,0xbc,0xfa,0x81,0x57,0xff,0xa2,0xa5,0x2b, +0x5a,0xd4,0xd1,0x32,0x18,0x2d,0xe3,0xd0,0x32,0x0b,0x2d,0xcb, +0xd0,0xb2,0x0e,0x2d,0xbb,0xd1,0x62,0x89,0x16,0x67,0xb4,0x78, +0xa3,0xe5,0x32,0x5a,0xc2,0xd0,0x12,0x87,0x96,0x0c,0xb4,0x14, +0xa3,0xa5,0x0a,0x2d,0x4d,0x68,0xf9,0x80,0x96,0x7f,0x14,0xbf, +0xe8,0xde,0x2a,0x41,0x6b,0x5f,0xb4,0xea,0xa0,0xd5,0x00,0xad, +0xe3,0xd0,0x3a,0x1d,0xad,0xf3,0xd1,0x6a,0x8c,0xd6,0xd5,0x68, +0xdd,0x82,0xd6,0xbd,0x68,0x3d,0x8a,0x56,0x3b,0xb4,0xba,0xa2, +0xf5,0x1c,0x5a,0x03,0xd1,0x7a,0x0d,0xad,0x61,0x68,0x8d,0x41, +0x6b,0x0a,0x5a,0x73,0xd1,0x5a,0x8a,0xd6,0x6a,0xb4,0x36,0xa2, +0xf5,0x2d,0x5a,0xbf,0xa1,0xb5,0x0d,0xaf,0x09,0x5e,0x4b,0xf0, +0xba,0x0f,0x5e,0xf7,0xe7,0x39,0x5d,0x8e,0x1e,0x97,0xc8,0x45, +0x8b,0xdb,0xf2,0x4a,0xc5,0x12,0xb6,0x68,0x29,0x5d,0x24,0x92, +0x48,0xff,0xf6,0xe7,0x24,0xd2,0x93,0xbb,0x16,0x5a,0x1b,0x69, +0x4a,0x64,0x53,0x45,0xf2,0x7f,0x25,0x34,0x5b,0xd4,0x6e,0x23, +0xa1,0x37,0x4b,0xd8,0x27,0x89,0xf7,0x79,0x1f,0xcf,0xf3,0x67, +0x25,0x4c,0x6c,0x4a,0x85,0x26,0x4e,0x4b,0xe9,0x64,0x89,0x94, +0x4e,0x3d,0x23,0x32,0xb5,0x3e,0x61,0xb1,0x47,0x63,0x79,0xd9, +0x4a,0x3a,0x93,0xce,0x2c,0xcb,0x2e,0x88,0x3a,0x11,0x6e,0x7a, +0x55,0xcb,0x87,0x4e,0xcd,0x6d,0xe7,0xc5,0xf4,0x35,0xdb,0x2c, +0x3d,0x22,0xd2,0xd9,0x72,0x2f,0x29,0x31,0xf1,0xde,0x3f,0xda, +0xb7,0x45,0xff,0x24,0x1e,0xd8,0xb2,0x79,0xcb,0x01,0x1d,0x6d, +0x55,0x51,0x9d,0x6f,0x65,0x40,0xe1,0xc5,0xd3,0x69,0x6a,0xc7, +0x69,0xbd,0x30,0xb2,0x5c,0x83,0x8a,0xf9,0xee,0x33,0x38,0x96, +0xad,0x24,0xdc,0x76,0x93,0x69,0x88,0x54,0xff,0xe6,0x72,0xf2, +0xed,0x35,0x54,0xf4,0xd7,0x5f,0xf8,0xde,0x66,0xde,0x20,0x47, +0x5e,0xeb,0x2b,0x77,0xf1,0xea,0x33,0x6d,0x09,0xdf,0xff,0x2c, +0x77,0x8b,0x8e,0xd6,0x96,0x28,0xd3,0xfd,0xed,0x3b,0x38,0x89, +0xa6,0xdf,0xd2,0x2a,0xa1,0x8e,0x7d,0x90,0xbd,0x87,0xbd,0x93, +0xa3,0xb3,0xda,0x59,0x5e,0xc9,0x83,0xa3,0xfa,0xa2,0xb3,0x43, +0xd6,0xaf,0x64,0x5d,0x75,0x53,0x79,0x95,0x31,0x5c,0x4a,0xaa, +0xb2,0x7c,0x1c,0xdf,0xcd,0x9f,0x93,0x3a,0x06,0xda,0x79,0x38, +0x38,0x3b,0x38,0xa9,0x9d,0xf5,0x56,0xbe,0x91,0xe0,0x9f,0x94, +0xa7,0x11,0x3d,0x77,0x9f,0x78,0xb0,0x85,0xd9,0xf0,0x09,0x5a, +0x3a,0xff,0x38,0x05,0xda,0x79,0x39,0x38,0xab,0x3b,0x38,0x9f, +0x3d,0xa7,0x7c,0x23,0x31,0xe0,0x61,0x8e,0x46,0xe4,0xdc,0xfd, +0x62,0x9d,0x4d,0x0b,0x58,0x3f,0xd6,0x59,0x2b,0x75,0x4d,0x45, +0x61,0x6a,0x5a,0x44,0xaa,0xba,0xbf,0x5f,0x80,0x87,0xbf,0x0b, +0x1d,0xce,0xc6,0xaa,0x55,0x97,0xa4,0xa5,0x44,0xa4,0xfa,0xf9, +0x04,0x78,0xf8,0xb9,0x50,0x7d,0x36,0x48,0x2d,0x2d,0x53,0x59, +0x35,0x9e,0x93,0x99,0xb2,0xf5,0xbc,0xda,0x63,0x4e,0x7a,0xcc, +0x46,0xe8,0x2a,0x2a,0x31,0x30,0x29,0x47,0xe3,0xde,0xf4,0x23, +0xe2,0xc1,0x2b,0x97,0x31,0xaf,0x41,0x5a,0xf1,0xcb,0x69,0xbf, +0xbc,0xc6,0xe4,0xcc,0x64,0x75,0xef,0x73,0x97,0x02,0x2e,0x7b, +0x86,0x9c,0x52,0xa7,0x77,0x98,0x7e,0x42,0x01,0xbb,0x4c,0x79, +0xbe,0xe7,0x36,0x8e,0xd7,0x0e,0xe4,0xe8,0x31,0x06,0x76,0x98, +0x2d,0x34,0xe6,0x8a,0x4e,0x70,0xbc,0x8a,0x01,0x37,0x84,0x93, +0xaf,0x7f,0x26,0x5b,0x2f,0x96,0x48,0x99,0x2a,0xeb,0x49,0x55, +0xc5,0x12,0xd9,0x69,0x5a,0x23,0x5d,0x4d,0x0f,0x49,0xa4,0x66, +0x4e,0xf3,0x5c,0x66,0x9e,0x51,0x91,0x84,0x71,0x32,0xb1,0x60, +0x99,0xdd,0xf4,0xf0,0xc5,0x5b,0x74,0xb8,0xb6,0x84,0x29,0x71, +0x22,0x55,0x2a,0x2d,0x11,0xb7,0xcf,0x91,0x34,0x8b,0x3e,0xd5, +0x06,0x04,0xa5,0x68,0xd3,0xef,0x12,0x65,0x87,0xd5,0xb3,0x5d, +0xc7,0x69,0x4a,0x44,0xff,0xf0,0xbd,0x7a,0x70,0xc2,0xe3,0x9a, +0xd9,0xae,0x13,0x34,0x25,0x0a,0xf7,0x90,0x09,0xfe,0xe0,0xd8, +0x61,0x00,0x89,0xe5,0xdf,0xa1,0x82,0x65,0x4d,0xe8,0xfd,0x42, +0xb1,0x7c,0xa7,0x44,0xcd,0x52,0x18,0x76,0x89,0x84,0x06,0x8a, +0xe4,0xeb,0x24,0xde,0x3e,0x3e,0x1e,0x82,0x4f,0x54,0xb4,0x55, +0xcc,0x17,0xea,0x97,0xb4,0xe7,0x2d,0x91,0xd8,0x3b,0xaa,0xdb, +0xd9,0x9f,0x91,0x30,0x23,0x13,0x6a,0x24,0x51,0x77,0x72,0x71, +0xf3,0x56,0x96,0xb0,0x35,0xc6,0x74,0x8d,0xa4,0xcd,0x5a,0xca, +0xf3,0x51,0x42,0x57,0x7c,0xff,0x38,0x4e,0xca,0x1c,0xbf,0x8a, +0xe9,0x78,0xaa,0x1e,0x74,0xe5,0xbd,0xb6,0x73,0x9e,0x32,0x3f, +0xa0,0x80,0x13,0x49,0x68,0x16,0x57,0xce,0xf7,0xfe,0xcd,0x49, +0x79,0x95,0x48,0x4e,0x4e,0x4c,0xe8,0x08,0x11,0x2f,0xd6,0xe5, +0x98,0xc3,0x1a,0x5e,0x3c,0x80,0xe3,0xb9,0x81,0x1c,0x6d,0x76, +0x93,0x52,0xf1,0x7e,0x8e,0x8a,0xe8,0xfe,0x7c,0xf6,0x40,0x3e, +0x88,0x66,0xe5,0x8b,0x55,0xa5,0xfe,0xfe,0x17,0x3d,0x2e,0xb8, +0x50,0x53,0x36,0x4a,0x2d,0x27,0x9d,0x99,0xd0,0x21,0xf6,0xc2, +0x1e,0x9e,0x74,0x54,0x3f,0xe9,0x74,0xda,0x5b,0x39,0x34,0xe1, +0xa2,0xb0,0x87,0x3e,0x74,0x45,0xb1,0x7c,0xe3,0x32,0xba,0xc2, +0x43,0xcc,0x94,0xcd,0x17,0xb2,0x89,0xac,0x9b,0x56,0xce,0x86, +0xa6,0xc7,0xf9,0x19,0xb1,0x99,0xea,0x12,0x4d,0xdf,0x65,0x7f, +0xbf,0x70,0x8a,0xcb,0x61,0x61,0x86,0x96,0x56,0x9c,0xaf,0xc9, +0xff,0x3c,0x4b,0x3a,0x5e,0xc4,0xeb,0xbc,0xe5,0x74,0x45,0x92, +0x3f,0x44,0xf6,0x51,0x5a,0xcc,0x78,0xda,0x69,0x96,0x84,0xed, +0xe4,0xe8,0x7e,0xf9,0x53,0x4e,0xa2,0xcf,0xc9,0x2b,0x9f,0x8a, +0xe4,0x93,0x25,0x5f,0x45,0x74,0x0c,0xed,0x1f,0x74,0xed,0xad, +0xb6,0xa4,0xed,0x4e,0xdb,0x05,0xa9,0x61,0x7b,0xe7,0x5a,0x91, +0xa4,0x6d,0xbd,0x70,0x2b,0xf7,0xae,0x95,0x79,0x8b,0x25,0x6d, +0xaa,0x1c,0x75,0x97,0x0c,0xe6,0xe4,0x31,0xb5,0xb2,0x18,0xb1, +0x44,0xae,0x47,0x23,0x65,0x7a,0x0b,0x45,0xf2,0x03,0xec,0xa3, +0xec,0x2d,0xc7,0xa2,0x4c,0xe8,0x1e,0xa6,0xc4,0x76,0xb0,0x05, +0x7f,0xe7,0x71,0xb2,0x03,0x5e,0x52,0xa1,0x31,0x25,0xd2,0xda, +0xb6,0x21,0x86,0x92,0x17,0xdc,0x45,0xd7,0xff,0x75,0x2b,0x0f, +0x11,0xba,0x95,0xce,0x71,0x1a,0xe3,0x62,0x70,0x5a,0x45,0xa2, +0xee,0xed,0xe3,0xeb,0xe1,0x7d,0x56,0xb1,0x77,0x73,0x5c,0x27, +0x6a,0x4a,0x9e,0xfb,0x56,0xfb,0x17,0x0a,0x75,0xa5,0x6c,0xbd, +0x09,0xed,0x2b,0x11,0xbb,0x19,0x2d,0x70,0x97,0xc8,0x66,0x88, +0xda,0x3b,0x0b,0x5b,0xb2,0x94,0x1a,0x09,0x36,0xce,0x15,0xc9, +0xdd,0x24,0xb4,0xaa,0x44,0x3e,0x40,0xc2,0x1e,0x88,0x68,0x95, +0x84,0xef,0xa9,0xc9,0xb1,0xdb,0xd2,0x70,0x3a,0xc1,0xd0,0xff, +0x28,0x9b,0xa1,0xcc,0x16,0x88,0x8e,0xd1,0x19,0x86,0x2e,0xf7, +0xd8,0x04,0x65,0xa6,0x6f,0x22,0xfb,0x53,0x28,0x52,0xe5,0x35, +0xf4,0xb8,0x36,0xc1,0xe7,0x4e,0x09,0x5b,0xc5,0xff,0xcb,0x49, +0xf8,0x01,0x15,0x1c,0x5d,0x2b,0x91,0x56,0xd7,0xb5,0x8f,0x15, +0x6c,0x44,0x77,0xb3,0x88,0x4a,0xfa,0xe1,0xaf,0x3d,0xb7,0x54, +0x4a,0x77,0xb0,0x88,0x2a,0xfa,0x81,0x45,0x0a,0xad,0x74,0xdb, +0x39,0x99,0x0e,0x3b,0x2a,0xd7,0x11,0xa9,0xb6,0xfd,0x2b,0x3b, +0x2d,0x2d,0x61,0xda,0x74,0x9b,0x61,0xbb,0xac,0x96,0x7e,0xa0, +0xda,0x8a,0x07,0x73,0xa1,0x4f,0x99,0xed,0x10,0x91,0xdc,0xc5, +0xca,0x7f,0xa9,0xcc,0xee,0xb6,0x32,0xeb,0x57,0x43,0x7f,0xc9, +0x85,0x3d,0xe5,0x75,0x28,0x27,0x64,0x1a,0xa9,0xc3,0x05,0x5e, +0xe9,0x14,0x17,0xef,0x9f,0x94,0xab,0xf1,0x60,0xde,0x3e,0xb1, +0xbe,0x85,0xf9,0xb0,0x89,0x5a,0xba,0x3f,0x1d,0x03,0x4f,0x7a, +0xd9,0x3b,0xa9,0x3b,0x9d,0x3a,0xe3,0xad,0x7c,0x3d,0x3e,0x20, +0x31,0x5b,0x23,0x6a,0xde,0x7e,0xb1,0xde,0xa6,0x85,0x4c,0x4d, +0x47,0x2b,0x6d,0xcd,0xd3,0xc2,0x54,0x21,0x22,0xd5,0xfd,0x7c, +0xfc,0x15,0x31,0x3a,0x82,0x8d,0x54,0xab,0x2a,0x4e,0x4f,0xe1, +0x7b,0x0a,0x7d,0x0e,0x61,0x3a,0x6a,0xe9,0x42,0x7c,0x4a,0x69, +0x77,0x36,0x26,0x2b,0x3f,0x26,0xf9,0x4e,0xba,0x3a,0xaf,0x72, +0x95,0x4b,0x4b,0xe6,0x25,0xc3,0x38,0x15,0x09,0x2f,0x1e,0xcf, +0x7d,0xa8,0xe8,0x70,0x43,0x1b,0x7f,0x67,0x0f,0x5b,0x07,0x1b, +0x07,0xb5,0xb3,0xe7,0xee,0x46,0x05,0x3e,0xf0,0x7a,0xa8,0x4e, +0x7d,0x1e,0xc9,0x5f,0x2e,0xa5,0x97,0x44,0x67,0x26,0x98,0xac, +0x64,0x36,0x93,0x62,0xcc,0x78,0xad,0x32,0x4e,0x4a,0xc3,0xf2, +0x59,0x98,0x88,0x6e,0x61,0x97,0xa5,0xd6,0x3e,0xa7,0x3c,0x6c, +0x1d,0x6d,0x1d,0xd5,0xce,0x7a,0xdd,0xbe,0x73,0x21,0xec,0x5c, +0xa4,0x3a,0xbd,0x54,0x20,0xff,0xb1,0x9c,0xde,0x12,0xb9,0x2e, +0x5a,0xbc,0x8d,0x59,0x2e,0x89,0x5c,0xa9,0x46,0xd5,0xe3,0x1b, +0x23,0xd3,0x23,0xbd,0xbc,0xd4,0x82,0xfd,0xaf,0x7a,0x86,0xb8, +0xd2,0x9b,0xac,0xb3,0xda,0xfd,0x6c,0x65,0x55,0x5e,0xad,0x96, +0x8b,0x51,0xb6,0x37,0x9b,0xc6,0x6b,0xf5,0xe0,0xbe,0xd7,0xf2, +0x4a,0xa5,0x1c,0x3f,0xc0,0x9f,0xe3,0x7b,0x4c,0xe0,0x1e,0xb3, +0x2b,0xd2,0xb4,0xc3,0x31,0xe6,0xd7,0xb5,0x78,0xad,0x20,0x4e, +0x8b,0x7d,0xba,0x2a,0xcd,0xcf,0x8a,0xa8,0xd4,0xba,0x25,0x7a, +0x9a,0xb5,0xdf,0x74,0xf9,0xca,0xfd,0xf3,0xb5,0x8f,0x8a,0xe6, +0xad,0x8c,0x28,0x10,0xb2,0x63,0x2f,0x27,0x8e,0x36,0x15,0xcc, +0x12,0xa9,0x4a,0x79,0xf5,0xad,0x9c,0xd4,0xe9,0xa2,0xbd,0xa7, +0xbd,0xa3,0xb3,0x8b,0x9a,0x1b,0xaf,0x33,0x96,0x4b,0xdf,0x58, +0x52,0xfc,0x30,0x39,0x2c,0x45,0xdd,0xd7,0xc7,0xcf,0xdd,0xef, +0x34,0xaf,0xaa,0x2d,0x2c,0xc0,0x8a,0x5d,0xaf,0xa0,0x8d,0x2c, +0x4d,0x24,0x7b,0xc4,0xc6,0x2a,0x1a,0x78,0xf0,0x3d,0x3e,0x71, +0xd7,0xe2,0xfc,0x13,0xb2,0x35,0xee,0x2e,0x38,0x26,0xd6,0xdd, +0xb9,0x8a,0x49,0x99,0x48,0x2b,0x63,0x63,0x49,0xfe,0xc3,0xa4, +0xb0,0xa4,0xff,0x35,0xa6,0x03,0x98,0xba,0x5a,0x46,0x8a,0x60, +0x4d,0xbb,0xcf,0xf4,0x30,0xdd,0xc9,0x92,0x97,0x53,0xcb,0xe1, +0xec,0x08,0x9b,0x68,0xcc,0x15,0x9e,0xe0,0xa8,0x1b,0xdf,0x53, +0x18,0xdf,0xf5,0x3b,0xdd,0x4e,0xf7,0xb3,0x48,0x5e,0x6c,0xcd, +0xd1,0x4b,0x2b,0xa4,0x34,0x42,0xd6,0x85,0x45,0x88,0xca,0x56, +0xf0,0x2a,0x8c,0x93,0xea,0x53,0xdd,0x2f,0x22,0x1a,0xc1,0x74, +0xff,0xbb,0x93,0xfc,0x51,0x92,0x19,0x4a,0x99,0x1e,0x7d,0xa7, +0x70,0x14,0xd9,0x0e,0xaa,0x27,0x38,0x2d,0xaf,0x88,0xbb,0x2e, +0x42,0x0c,0x8d,0xe7,0x2e,0xde,0x54,0xe4,0x7d,0xa9,0x7c,0xa4, +0xbc,0xb7,0x6c,0xa4,0x68,0x56,0xb1,0x94,0x05,0xd1,0x8b,0x34, +0x48,0x08,0x0a,0x5e,0xd3,0x90,0x63,0x47,0xc4,0x92,0x1a,0x51, +0x4b,0x6d,0x40,0x60,0x82,0x50,0x49,0x76,0x81,0x05,0xd5,0xd0, +0x3a,0xf9,0x4b,0x91,0xea,0x4f,0x11,0x9d,0x40,0x07,0x04,0x5d, +0xfd,0xa0,0x2d,0x11,0x52,0xa8,0xfb,0x33,0x99,0xbb,0x22,0x45, +0xce,0xa2,0x8b,0x02,0x6f,0xd1,0xee,0xda,0x92,0x91,0x9c,0xdc, +0x4e,0x08,0xac,0xe1,0x9c,0x7c,0xd3,0x33,0xa1,0x2b,0x9b,0xb9, +0x3a,0x8e,0x4c,0x59,0xf3,0xa8,0x64,0x00,0x77,0x45,0xf4,0xb2, +0x56,0xc2,0x2b,0x2f,0xe7,0x46,0x4a,0xda,0x4a,0x84,0x08,0x34, +0x92,0xf0,0x5d,0x66,0x72,0xec,0xbe,0xe0,0xf5,0xa5,0x45,0xac, +0x54,0xa8,0xcc,0xae,0x2c,0xa7,0x57,0x44,0x42,0x0c,0x9a,0x4d, +0x73,0x1d,0xae,0x29,0x51,0x3e,0xb9,0x78,0x84,0xeb,0x00,0x4d, +0x01,0x4b,0x77,0x77,0x60,0x29,0x7d,0x51,0x22,0xd7,0xef,0x88, +0xb5,0x6a,0x89,0xd4,0x94,0x86,0xe7,0x8b,0x99,0x92,0x44,0x5d, +0xc8,0xae,0x42,0x6a,0x54,0x66,0x4b,0x44,0x47,0x25,0xd2,0x2c, +0x79,0xf7,0x55,0x12,0xbd,0xa5,0x3f,0x44,0xa3,0x25,0xc2,0xf2, +0x7a,0x68,0x4b,0xfe,0x7f,0x09,0x81,0x06,0xf3,0xaa,0x67,0x84, +0x7d,0x1a,0xc1,0xf4,0x33,0x92,0xd9,0x30,0xaa,0xe3,0x70,0xf1, +0xa4,0xf7,0x49,0xbe,0x67,0x2b,0xf7,0xf0,0x62,0x72,0x8e,0x06, +0x1d,0x55,0x24,0xef,0x63,0x4c,0xc7,0x8a,0x3c,0x18,0x36,0x2c, +0x66,0x3c,0xeb,0x99,0xb1,0x49,0xad,0xbc,0x34,0x2d,0x3d,0x22, +0xcd,0xdf,0x3f,0xd0,0x23,0xc0,0x45,0xf0,0xeb,0x2e,0xda,0x1c, +0x73,0x94,0x86,0x51,0x75,0x43,0x3f,0x4b,0x36,0x40,0x99,0x2d, +0x12,0x59,0xd2,0x01,0x86,0xae,0x61,0x4c,0x5d,0x99,0x0d,0x36, +0x96,0xb5,0x15,0x09,0xee,0x62,0x69,0x77,0xe6,0x9c,0xf2,0xfd, +0x07,0x81,0x31,0x29,0x1a,0xb7,0xa7,0x5b,0x89,0x27,0xae,0x5a, +0xcd,0xbc,0xc6,0x6b,0xc5,0x2e,0xa7,0x6a,0x69,0x4d,0x71,0x19, +0x71,0x02,0x52,0x05,0x0b,0x48,0x75,0xa5,0x03,0xa9,0xa4,0x71, +0x85,0xec,0x12,0x15,0xdb,0xf0,0xca,0x42,0x6e,0xd6,0x74,0xe7, +0x9a,0x85,0x15,0xd3,0x4e,0xf4,0x20,0x3d,0xca,0x1e,0x9a,0xd0, +0xa3,0x3a,0xec,0x10,0x9b,0xb3,0x5a,0x01,0x5b,0xf4,0xaa,0x94, +0xae,0x62,0xcf,0x2b,0x65,0x1a,0xec,0xaa,0x48,0xd5,0x3b,0x34, +0x22,0xf0,0xc1,0xb9,0x84,0x3f,0xff,0x72,0x67,0x26,0x99,0xad, +0x62,0x63,0x86,0x65,0x6e,0x54,0x6b,0xca,0xc9,0x4f,0x88,0x49, +0x50,0x11,0xec,0xee,0xef,0xe4,0x65,0x6d,0x7f,0xdc,0x4e,0xed, +0x8c,0x97,0x72,0x54,0x52,0x60,0x72,0x9e,0x00,0x98,0x87,0xc5, +0x03,0xd7,0x2c,0x61,0x6e,0xba,0x5a,0xf1,0xa6,0x54,0xad,0xb0, +0x21,0x25,0x3d,0x55,0x3d,0x28,0xe0,0x92,0x00,0x97,0xf4,0x2a, +0x1b,0xae,0x96,0x58,0x20,0x38,0x9f,0x8d,0xfd,0xd9,0x73,0xf7, +0xa2,0x2f,0xc4,0x79,0xa5,0xa9,0x53,0xef,0x12,0x79,0xfd,0x12, +0x7a,0x51,0xe4,0x3e,0xda,0xd4,0x8c,0xd9,0x8d,0x8e,0x31,0x55, +0xa3,0x7d,0x73,0xea,0x13,0xd3,0x92,0x82,0x03,0x82,0x3d,0x2f, +0xbb,0xd0,0x2b,0x6c,0x80,0x5a,0x6c,0x1e,0xf3,0xa7,0x8a,0xc1, +0x3c,0x6d,0xed,0xd5,0x85,0x55,0xdb,0x9e,0x15,0x86,0x4b,0x0e, +0x4c,0x29,0xd4,0x88,0x98,0x71,0x50,0xcc,0x3a,0xaf,0x5e,0xc4, +0x5c,0x05,0xac,0x4f,0x30,0xa5,0xfd,0x8a,0xeb,0xd3,0xd3,0xd2, +0xd5,0x83,0xfc,0x2f,0xb9,0x07,0xbb,0xd0,0x60,0x36,0x46,0x2d, +0xa9,0x80,0xf9,0x50,0x3d,0x9b,0x00,0x47,0x2f,0x1b,0xa1,0x2d, +0xaf,0xbd,0x92,0xa3,0xab,0x05,0x77,0x9c,0x49,0x3b,0xcf,0x66, +0x99,0x03,0x38,0xd9,0x75,0xfa,0x63,0xb6,0x88,0xc5,0x2a,0x09, +0x25,0x22,0xd9,0x4c,0xc1,0xa6,0x6c,0xe9,0xc8,0x89,0x03,0x58, +0xa7,0x77,0x93,0xe8,0x52,0xba,0xec,0x4d,0x13,0xed,0xf4,0x7b, +0xf4,0x4b,0xb6,0x4c,0x9b,0xae,0x61,0x1b,0xa5,0xc6,0xe6,0xc6, +0x4c,0x87,0x0d,0x58,0x51,0x54,0xa4,0x15,0x22,0x2e,0xce,0x2d, +0xa4,0x03,0xa8,0x4e,0x8e,0xc9,0x32,0x2d,0x55,0x7e,0xd0,0x0b, +0xee,0xee,0xb9,0x08,0x21,0x79,0xe4,0xc9,0x7f,0x98,0xd1,0x9b, +0x22,0x67,0x93,0xf9,0x3b,0xd8,0x91,0xa5,0x71,0xab,0xd5,0xa8, +0x5a,0x7c,0x43,0x78,0x7a,0x64,0x88,0xff,0x35,0xcf,0xcb,0xae, +0xf4,0xba,0xae,0x5a,0x5c,0x36,0xf3,0x79,0x73,0xc2,0xcf,0xce, +0xcd,0xd6,0x49,0x5d,0x95,0xd5,0xf0,0x02,0x82,0x4b,0xbf,0xc9, +0xac,0x1e,0xc9,0xad,0xbe,0xc9,0x5c,0x4a,0xe4,0x4f,0xd8,0x47, +0x01,0xd0,0xa3,0x4b,0x15,0xd9,0x40,0x77,0x31,0x27,0xaf,0x11, +0x92,0xab,0x46,0x19,0x57,0x23,0x91,0x8d,0x95,0xe5,0x49,0xaf, +0x5c,0xb8,0xc2,0x0f,0xcc,0xe7,0xfc,0xed,0x84,0x4c,0xa7,0x7e, +0xc4,0xe6,0xf4,0x39,0xe5,0x07,0x09,0xc1,0xc9,0x05,0x1a,0x77, +0x67,0x1e,0x15,0xeb,0x2d,0x5e,0xc2,0x82,0x04,0xa2,0x62,0x46, +0xb5,0xf2,0x5e,0x3f,0xcc,0x4d,0x53,0x97,0x48,0x75,0x38,0x99, +0x23,0xfd,0x2e,0x8f,0x11,0xd5,0x2e,0x95,0xca,0xd4,0x85,0xd4, +0xae,0x2e,0x74,0x4b,0x77,0xb1,0x90,0x2a,0xfa,0xe2,0xaf,0x01, +0x27,0x24,0x7f,0xc5,0x9d,0x22,0xf9,0x4b,0x67,0x33,0x4d,0x76, +0x91,0x6a,0xcc,0x91,0x6b,0xcb,0x0c,0x44,0xb3,0x8b,0xa4,0xc2, +0x83,0xb6,0xb0,0x2f,0x12,0x59,0xa0,0x10,0x7f,0x35,0xb4,0xdf, +0x44,0x8e,0xf6,0x16,0x12,0xfc,0xc7,0xd3,0xa2,0xed,0x36,0xd6, +0x16,0xbb,0x34,0x8c,0x0b,0xd6,0x7f,0xf9,0x52,0x90,0x5a,0x14, +0x6d,0x13,0xbe,0x3d,0x44,0xcb,0x8f,0x57,0x35,0xe1,0x32,0x1e, +0x1c,0xde,0xb4,0x69,0xf7,0xe1,0x35,0xda,0xaa,0xe3,0x92,0xb9, +0xc9,0x9a,0xbe,0x2b,0x14,0xe8,0xcc,0xeb,0x7c,0xe5,0x64,0xb1, +0x8f,0xe4,0x41,0x22,0x55,0x1f,0x6e,0x38,0xdb,0xcd,0x26,0xde, +0xe0,0x72,0xb5,0x9d,0x0b,0x95,0xed,0x57,0xcf,0x16,0x42,0x7e, +0x47,0x89,0x3c,0x86,0xa5,0x8a,0x84,0x89,0xba,0x95,0xca,0x0f, +0x88,0x3a,0xf2,0xfc,0x84,0xac,0x82,0x98,0x54,0x21,0xcf,0xb7, +0xaf,0xe5,0x04,0xba,0x96,0x91,0xca,0x4b,0x7c,0x85,0x4c,0x2f, +0xc0,0x56,0x01,0xdb,0x2d,0x62,0xf7,0x59,0x99,0xd4,0x81,0x46, +0xce,0x63,0x19,0xb2,0x8d,0x9c,0xec,0x03,0xed,0xce,0x77,0xd1, +0xe4,0x36,0x9f,0x38,0xb1,0x67,0xab,0x86,0x51,0x21,0xaf,0xa3, +0xc3,0xed,0x0c,0x4f,0x4f,0x8f,0xe1,0x07,0xae,0xe7,0x78,0xe5, +0x51,0x5c,0xac,0x22,0x25,0x46,0x2c,0xe4,0x07,0x9d,0xe6,0x8a, +0x73,0x13,0x13,0xee,0x26,0x08,0xa9,0xd0,0xdf,0xc3,0xf7,0x34, +0xd5,0x62,0x7d,0xd5,0x84,0xd8,0xd4,0xa6,0x3d,0x1c,0x2f,0x3a, +0x7a,0x0a,0xe0,0x24,0xbf,0xfa,0x51,0x91,0x58,0x43,0x9e,0xd2, +0x3a,0x96,0x2e,0x4c,0xc4,0xf1,0x82,0x9d,0x50,0xec,0x28,0xd0, +0xce,0x73,0x0a,0xcc,0x4a,0xc8,0xd1,0x88,0x12,0x88,0xe5,0x70, +0x8b,0x95,0xc3,0xa7,0x6a,0xe9,0x7e,0x75,0xbc,0xa0,0x40,0xb4, +0xbf,0x76,0x9c,0xe2,0xab,0x2c,0x8d,0xfb,0x73,0x2d,0xc4,0x43, +0x36,0x2f,0x66,0x6a,0x7a,0x0a,0xca,0x99,0x97,0x96,0x1c,0x91, +0xac,0xee,0xe7,0x2b,0x30,0x4c,0x57,0x3a,0x92,0x19,0xa8,0x55, +0x16,0xa6,0x3d,0x8c,0x48,0xf2,0xf7,0x15,0xf0,0xcd,0x55,0xa0, +0x9c,0xfd,0x3b,0x28,0xa7,0x22,0x6f,0x0b,0x7d,0x28,0x12,0xfd, +0x39,0xe5,0x6b,0x29,0x01,0xe9,0x8f,0x34,0xa2,0x17,0xec,0x13, +0xb3,0x9e,0xbb,0x96,0xb1,0xae,0xac,0x9f,0x96,0x6b,0xfc,0xdf, +0x41,0x9c,0x33,0xed,0x4c,0x6d,0xe9,0x11,0x96,0x67,0x42,0x1d, +0x74,0x98,0x1d,0x9b,0x33,0x80,0x8b,0x14,0xfd,0xa8,0x69,0x53, +0xe1,0xf8,0x81,0xc7,0x39,0xff,0x00,0x4f,0x5f,0x57,0x75,0xda, +0x9f,0x8d,0xcd,0x4c,0x16,0xe0,0x68,0xc0,0x5f,0x4e,0x08,0xe9, +0xad,0x42,0x48,0x47,0x98,0xd0,0x9d,0x03,0xd8,0x56,0x36,0x9b, +0xef,0x26,0x94,0x0d,0x96,0xe6,0xc8,0xbb,0x9b,0x7f,0x38,0x2d, +0xde,0x66,0x6d,0xbd,0x67,0x9b,0xc6,0xa2,0x7c,0xf3,0x8f,0x9f, +0xf2,0x73,0xca,0xe2,0xad,0xa3,0xb6,0x5d,0xd5,0xf2,0x15,0x8f, +0x65,0x93,0xa5,0x4e,0xa2,0xb5,0xbb,0xef,0xa5,0xa7,0x3d,0xb8, +0x97,0xae,0x1d,0x28,0x4a,0x8f,0x3a,0xb0,0x6e,0xed,0x9e,0x03, +0x6b,0xb5,0x55,0xf9,0xee,0x06,0x1c,0x0b,0x6c,0x4b,0xe7,0xfe, +0x7c,0xe0,0x58,0x3c,0x2f,0x12,0x7c,0xd5,0xda,0xde,0xcd,0x2b, +0x2c,0x8a,0xef,0x3e,0x8f,0x9b,0xb8,0xdc,0x9c,0x39,0x4c,0x8a, +0x15,0x42,0x56,0x3d,0xab,0x3e,0x2e,0x35,0x21,0x38,0x20,0xc4, +0xf3,0xf2,0x29,0x7a,0x83,0xa9,0xa9,0xc5,0xe6,0xb3,0x40,0xda, +0xb5,0x23,0x64,0x1d,0x84,0x90,0xe5,0x7b,0xec,0xe0,0xa8,0xc9, +0x3b,0x45,0x34,0x8d,0x7c,0xc9,0x4c,0xb4,0xe9,0x7a,0x45,0x34, +0xad,0x30,0x66,0x03,0xd9,0x40,0x33,0x21,0x9a,0xf8,0xee,0xd1, +0x9c,0xaa,0x42,0x0f,0x08,0xc0,0xe7,0x20,0xe8,0x01,0xef,0x1b, +0xb1,0x42,0x7a,0xc8,0xe4,0x7b,0x1e,0xe3,0xe8,0x50,0xd1,0xd9, +0xa1,0xeb,0x57,0xb1,0xae,0x7a,0xa9,0xfc,0x20,0x47,0xce,0xe7, +0x8c,0x60,0x3f,0x2d,0x35,0x85,0x3a,0x18,0x5f,0xfe,0xd7,0x91, +0xb3,0xa7,0x97,0xe7,0xb1,0x08,0xd9,0x31,0x4e,0x7a,0xf2,0x33, +0x3d,0xf4,0x7f,0x21,0xed,0x30,0x9b,0x28,0xdf,0x2c,0x00,0x9a, +0x22,0x95,0xe5,0x3e,0x95,0x11,0x76,0x45,0xa4,0xfa,0x1f,0xb0, +0xf2,0x7a,0xeb,0xb8,0x05,0x87,0xc5,0x8c,0xec,0x34,0x67,0x82, +0x73,0x0e,0xe1,0x04,0x50,0xd4,0x12,0x30,0xb1,0x7d,0x25,0x75, +0x94,0xd2,0xe3,0xec,0xfe,0x53,0x81,0x0d,0xa5,0x29,0xf6,0xdf, +0x99,0xd7,0x9c,0xca,0x09,0x0e,0xd2,0xab,0x43,0xa7,0xf0,0xfd, +0x0b,0xb8,0x14,0xc1,0x20,0x2a,0xed,0x1c,0x8b,0xe1,0xc5,0xe7, +0xb9,0x3c,0x79,0xb4,0x90,0x48,0x17,0x08,0xbc,0xc3,0x4f,0xb1, +0x4a,0x1b,0x7b,0xc1,0x51,0xc2,0xa2,0x2e,0x44,0x77,0xf0,0x8e, +0x12,0xf9,0xcb,0x25,0x02,0xef,0x38,0x3b,0x51,0xe0,0x1d,0xb6, +0x13,0x63,0x4c,0x3b,0x78,0x07,0xfb,0xc2,0x4c,0x65,0xc6,0xd9, +0x72,0x95,0x46,0xfa,0x85,0x9a,0xca,0x27,0x9b,0xd3,0x1f,0x22, +0x36,0x5d,0x08,0x02,0x0b,0x6a,0x27,0xcf,0x5c,0x22,0x3b,0xa6, +0x27,0xb0,0xcb,0x45,0x8a,0x58,0xb8,0x56,0x2a,0x77,0x15,0xa6, +0x20,0x57,0x6a,0xa4,0xad,0x99,0xec,0x75,0x03,0xfd,0x99,0x23, +0x9f,0xcc,0x9e,0xcb,0x16,0x8b,0x58,0xa0,0x02,0x71,0xdf,0x08, +0xcc,0x56,0x8b,0x2a,0xcf,0x92,0x5b,0xd5,0xd0,0xae,0x54,0x4b, +0xf1,0xd0,0x53,0xc1,0xcd,0x4e,0x8d,0x14,0xc9,0x3d,0x8f,0xb7, +0x2f,0xe5,0x58,0xcf,0x6a,0xfa,0x56,0x5e,0x2a,0x56,0x6d,0xdb, +0xa2,0xa0,0xb4,0x46,0xec,0xd0,0x2a,0x7a,0x68,0x5b,0x8d,0xec, +0x8e,0x58,0xc2,0xab,0x0c,0xe2,0x4e,0x0b,0xc2,0x41,0x2a,0x3b, +0xc3,0x6e,0xd7,0xd0,0xd7,0xf2,0x0a,0x91,0xea,0x1f,0x51,0x07, +0x59,0x16,0xbc,0x67,0x9e,0xe4,0x8f,0xb2,0x2c,0x59,0x2a,0x2c, +0xfb,0xb0,0xa1,0xdc,0xbd,0x96,0x1e,0xa0,0xda,0x22,0x05,0xdc, +0x3e,0xa8,0xed,0xb8,0x04,0x0b,0x97,0xa1,0x5c,0xfb,0x88,0xaa, +0x0e,0xf0,0x75,0x79,0xd6,0x41,0x6e,0x47,0xbb,0xe8,0x0b,0xe4, +0xf6,0x7f,0x84,0x37,0xab,0x83,0x47,0xd3,0x25,0xd2,0x5a,0x59, +0xa3,0xa1,0xa4,0xcd,0x45,0x96,0x28,0xa5,0xc7,0x66,0x49,0x3e, +0x8a,0xa8,0x01,0xed,0x1b,0x74,0xf5,0x95,0x20,0x02,0xeb,0x1b, +0xcf,0x79,0xbf,0x10,0x88,0xb7,0xa5,0xd0,0xa0,0x5d,0x56,0xd5, +0x26,0xc8,0x1f,0xa1,0x97,0xb1,0x2e,0x43,0x05,0x31,0x14,0x60, +0x7f,0xce,0x4e,0x10,0x25,0x8e,0x12,0x4a,0x45,0x73,0x05,0xb6, +0xb0,0xeb,0x3f,0x81,0x23,0xd4,0xb0,0x9d,0xaf,0xeb,0x38,0x44, +0xf3,0xb0,0xa2,0xf3,0xcb,0x42,0xe7,0xde,0x86,0x12,0x9b,0x71, +0x4c,0xea,0xc0,0xb4,0x04,0xdc,0xff,0x5b,0xc9,0x51,0x4b,0x49, +0x1b,0x47,0xb3,0xa5,0x6f,0x25,0x36,0x23,0x58,0x7f,0x47,0xa6, +0x2f,0x54,0x15,0xdb,0x79,0x9c,0x74,0x3b,0xa9,0x25,0xf9,0x1b, +0x29,0x30,0x5d,0x09,0x1b,0xc9,0xac,0x9d,0xd9,0x01,0x61,0xe5, +0x2b,0xe8,0xf6,0x5c,0x81,0x9d,0x54,0x0b,0xe3,0x2f,0xf9,0xef, +0xb2,0x58,0xa2,0xa0,0x71,0xa7,0x15,0x7c,0xc0,0x61,0xa5,0xa1, +0xeb,0x68,0x41,0x53,0x57,0x8b,0xda,0x4d,0x25,0x06,0x42,0xc2, +0x9a,0x22,0x51,0x3f,0xe5,0x2a,0x84,0xa8,0x44,0xdd,0xc1,0x49, +0xc1,0x02,0x04,0x9d,0xa4,0xb8,0xd0,0x11,0xf9,0xec,0xb8,0x64, +0x51,0x5b,0x5e,0x99,0x60,0xd3,0xee,0x3e,0x1c,0xf3,0x91,0xba, +0x7c,0xa1,0x7b,0xe8,0x5e,0x16,0x6b,0x42,0x0f,0x18,0xb0,0x7d, +0x6c,0x0a,0x2f,0xfe,0xc3,0xc9,0x6e,0xd0,0xb5,0xec,0x9c,0xc0, +0xaa,0xbe,0xd0,0x5d,0xc2,0x77,0xd1,0x26,0x74,0xdf,0x5f,0x5d, +0x8e,0x57,0x05,0xf7,0x59,0x20,0xdf,0xb9,0x6c,0xc7,0x57,0x7a, +0x38,0x9f,0xc5,0xc9,0xbb,0xb4,0x2f,0xe7,0x64,0x63,0x64,0xb5, +0xd2,0xab,0x17,0xae,0x78,0x5e,0x3d,0x45,0x93,0x85,0x2c,0x11, +0x9f,0xcb,0xee,0xd3,0x5e,0xfc,0xa0,0x56,0xce,0xd6,0x55,0x90, +0xa4,0x31,0xc1,0x02,0x71,0xbe,0x39,0xcb,0x4a,0x3c,0x7c,0x91, +0x29,0x0b,0x1a,0xa9,0x15,0x67,0x4e,0xfb,0x67,0xbc,0x8e,0xcf, +0x4b,0x56,0x97,0x4b,0x24,0x8a,0x01,0xb6,0x0b,0x03,0x44,0x0a, +0x3c,0xc4,0x40,0xa0,0x21,0xc2,0xe0,0xfe,0x9c,0x4c,0xa9,0x3d, +0x9f,0x63,0xfe,0x6c,0x88,0x02,0xd8,0x86,0xd2,0x9e,0x0b,0xe5, +0x5d,0x68,0x8c,0xac,0x8b,0x20,0x63,0x0e,0xb1,0x27,0x42,0x8b, +0x3f,0x6d,0x9c,0x50,0xb1,0x5b,0x10,0x47,0x35,0x84,0x38,0x53, +0x6d,0xf3,0x6c,0x3b,0x25,0x6d,0x17,0x2d,0x6f,0x13,0x89,0x02, +0xd8,0x42,0x29,0xd3,0x17,0xdd,0x16,0xf8,0x87,0xbf,0x15,0xd3, +0x51,0x66,0xdb,0x45,0x56,0x54,0xc7,0xd0,0xe5,0xb6,0x82,0x7f, +0x0c,0x31,0x6d,0x53,0x13,0xb5,0x1f,0x94,0xc8,0xe6,0xc8,0x6c, +0x78,0x15,0x41,0xba,0xcf,0xa4,0x16,0x85,0x2c,0x91,0x25,0xfc, +0x6d,0xe2,0xe2,0xa5,0xcc,0x8a,0x4e,0x55,0x3c,0x27,0xb1,0xb8, +0xbf,0x6d,0x02,0x02,0xd8,0x7d,0xa1,0x16,0xc2,0xc4,0x12,0x4c, +0xe8,0x61,0x03,0x76,0x40,0x31,0xb1,0x24,0x8e,0x9e,0x93,0xb6, +0x8d,0xe0,0x04,0x56,0xa9,0x2a,0x1b,0x2d,0xab,0x93,0x7a,0x79, +0x5d,0x09,0xbc,0xea,0x71,0x55,0x20,0x2a,0xc9,0x4c,0x93,0xef, +0x5f,0xc7,0x2d,0x67,0x41,0x63,0xb4,0xe2,0x56,0x50,0x5e,0xb1, +0xbe,0x24,0xf5,0x4a,0x49,0x5b,0x17,0x99,0xc0,0xa7,0x08,0xed, +0x54,0x28,0x3f,0x43,0xb7,0xcf,0x62,0xd7,0xbe,0x30,0xc2,0x8e, +0x2f,0x6b,0xcb,0x2b,0x16,0xcb,0x2f,0x0b,0xc2,0x4b,0xc8,0x79, +0x84,0x1d,0x15,0xe0,0x6a,0x96,0xcc,0x4f,0x7a,0x2a,0x57,0xd9, +0x69,0xdd,0xfc,0x53,0x63,0x35,0x6d,0xa8,0x3e,0x3d,0x94,0xcf, +0x1e,0xb2,0x10,0xbe,0x47,0x36,0x17,0x2b,0x65,0xb6,0x74,0x90, +0xc2,0xdc,0xc9,0x02,0x15,0xca,0x15,0x31,0x03,0x89,0x3c,0x9d, +0xf3,0x67,0xb3,0xa5,0x0c,0xa2,0x3b,0xb4,0xf7,0x6c,0x61,0xa5, +0x9a,0xca,0x4c,0x97,0xef,0x71,0x96,0x63,0x9d,0x4c,0x65,0xa7, +0x45,0x4f,0x24,0x6d,0xfd,0x65,0x8c,0xd7,0x18,0x2f,0x2c,0xa3, +0x4a,0x40,0x9a,0x6e,0xf1,0x9c,0xa4,0xed,0xa4,0xec,0x20,0xaf, +0x71,0x5d,0x28,0x09,0x08,0xe8,0xd0,0xb1,0xe6,0x6c,0xb4,0x5a, +0x6e,0x3a,0x33,0xa3,0x43,0xf8,0x81,0xd1,0x5c,0x87,0x78,0x5d, +0x59,0x2c,0xdf,0xba,0x8c,0xae,0x54,0x88,0xd7,0x15,0x0b,0xd9, +0xe4,0x0e,0xf1,0xfa,0xf2,0x71,0x61,0x46,0x8c,0x20,0x5e,0x15, +0x68,0xde,0x6e,0x23,0x00,0x63,0xf7,0xc5,0x0a,0xcf,0xbe,0xab, +0x40,0xfa,0xcc,0x0d,0xcd,0x89,0x05,0x0f,0x62,0x1e,0xa8,0x5f, +0xf0,0x11,0xba,0x3c,0x4d,0x4d,0xf4,0xd4,0x32,0x53,0x99,0xd1, +0x07,0x5e,0x6f,0x11,0x17,0x7e,0x2e,0x46,0x9d,0xae,0xc8,0x97, +0x6f,0x30,0xa5,0xe6,0xa2,0xd3,0xf3,0x57,0x6e,0x60,0xe3,0x67, +0xa9,0xd0,0x3d,0x02,0x1e,0x1e,0x63,0xbe,0x95,0xb4,0x9c,0x57, +0xba,0xc2,0x75,0xdc,0xb0,0x44,0x05,0x67,0xe8,0xee,0xcd,0xc9, +0x87,0x73,0xd2,0xaf,0x02,0xf0,0x5b,0xc9,0x2b,0x96,0xc8,0x4e, +0xeb,0xcb,0x1d,0xd9,0x3c,0x05,0xa5,0x28,0x11,0x75,0xc8,0x34, +0xc1,0xab,0xff,0xc6,0x71,0xfb,0x44,0x23,0xb7,0x2f,0x67,0x5d, +0xc7,0x6a,0x65,0x6e,0x53,0xa6,0x7d,0xbf,0xa5,0x94,0xd2,0x5e, +0x82,0x0b,0x58,0x49,0x99,0xd2,0x4e,0x63,0x26,0x19,0xae,0x95, +0x23,0x14,0xf7,0xfe,0x95,0xf8,0x84,0x0e,0xd2,0xf8,0xc0,0x16, +0x99,0x50,0x65,0xb1,0x44,0x66,0xc6,0xc9,0x4f,0xd6,0xd0,0x9e, +0x7c,0x97,0xbe,0x82,0xa4,0x54,0xba,0xc6,0x65,0x1b,0x71,0x66, +0xf2,0x06,0xc1,0x10,0xf3,0x26,0xb0,0xf0,0xa6,0x79,0x2c,0x5e, +0x36,0x59,0x34,0x2f,0x57,0xca,0xc2,0xdf,0xd2,0x70,0x11,0x5b, +0x20,0xa1,0x6b,0xb2,0xe5,0x22,0xb1,0x57,0x8b,0x32,0xfd,0x48, +0x57,0xc9,0x27,0x99,0xd3,0x6f,0xe3,0xd9,0x27,0xb6,0x8a,0xce, +0x56,0x58,0x55,0xde,0x61,0xd5,0xb6,0x13,0xb2,0x3b,0x52,0xb9, +0x07,0x1d,0x2b,0x3b,0x55,0x24,0x2f,0x63,0xf7,0xff,0x8b,0x3a, +0xa9,0x6c,0xcf,0x23,0xf9,0x9e,0x1f,0xb2,0xe3,0x25,0xf2,0x1c, +0xf6,0x4d,0x60,0x69,0x37,0x4b,0xe5,0x6e,0xc2,0xe2,0x7e,0xc8, +0xdc,0x85,0x4c,0x59,0xbf,0x44,0x76,0x5e,0x4f,0xee,0xce,0x16, +0x09,0x8b,0x4a,0x13,0xac,0x27,0x6c,0xc8,0xa1,0xff,0x36,0x84, +0x6e,0xcf,0x8f,0xe0,0xd8,0x07,0xe9,0x29,0xaa,0x4c,0xb7,0xf0, +0x7c,0x19,0x27,0xfb,0x49,0x47,0x74,0x60,0xdf,0xa7,0x33,0xe2, +0x2d,0x56,0xbc,0xde,0x7c,0x2e,0x7a,0xcb,0x35,0x2d,0x1f,0xf1, +0x78,0x66,0xd8,0x81,0x78,0xe1,0x99,0x99,0x0f,0xf8,0x1e,0xa7, +0x04,0x96,0x25,0x34,0xe3,0x95,0xdb,0x39,0x41,0xc0,0xda,0xbb, +0xdb,0x3b,0x29,0x30,0x48,0x40,0xfd,0x28,0x7f,0x81,0x59,0xdf, +0x9b,0x77,0x44,0x3c,0xed,0xc0,0xfa,0x61,0x0b,0xb4,0x74,0x5e, +0x3a,0x06,0xf0,0x7a,0xcd,0x5c,0xf4,0x43,0x8d,0xbb,0xf3,0x8f, +0x89,0x27,0x6e,0x31,0x63,0x1a,0xe3,0xb4,0x52,0xd6,0x56,0xa4, +0xa5,0xc6,0x86,0xc7,0xa9,0x07,0xf8,0x04,0x78,0x04,0xb8,0xd2, +0xe1,0xac,0x8f,0x5a,0x65,0x46,0x5a,0x6c,0x44,0xac,0xbf,0x4f, +0x07,0x01,0x30,0x60,0x5d,0xd4,0x52,0x33,0x04,0x78,0xee,0xa5, +0xcf,0xb1,0x3e,0x52,0xe7,0xaf,0x02,0xa0,0xef,0xe9,0x00,0xf4, +0x61,0xcc,0x96,0x4d,0xfd,0x73,0x91,0x53,0xe5,0xa5,0x67,0x39, +0x05,0xda,0x3b,0x7d,0xa7,0x76,0x74,0x1f,0xcb,0x5b,0x4e,0x1d, +0x87,0xb0,0x93,0x6c,0x1a,0xcf,0xeb,0xfc,0x5f,0xb9,0xba,0x99, +0x5d,0x93,0xda,0xf8,0x38,0xff,0x4f,0xae,0xb6,0x89,0x05,0x6d, +0x96,0x2f,0xff,0x66,0xca,0x2b,0xf3,0xdc,0x92,0xfb,0x2b,0x15, +0x3c,0xb3,0x31,0x32,0x2d,0xf2,0x9c,0x97,0xda,0x65,0xff,0x2b, +0x5e,0x57,0x5c,0x04,0x18,0xee,0xac,0x16,0x29,0x88,0x54,0x29, +0xaf,0x7a,0x8b,0xa3,0xb5,0x6c,0xa9,0xd4,0x59,0x50,0xe1,0x0e, +0x4e,0xce,0xa7,0xd4,0x78,0xb1,0x03,0x97,0xbe,0xa9,0xa8,0x2c, +0x31,0x3d,0x2c,0x4d,0x21,0x0d,0x3d,0x7c,0x5d,0xa9,0x86,0xc0, +0xce,0x33,0x92,0x95,0xe5,0x9b,0xf8,0x1e,0x0e,0x9c,0x4c,0x30, +0xe3,0x0d,0x5e,0xd7,0x8b,0x8b,0xea,0xd0,0xc3,0xdf,0x96,0xd3, +0x50,0xd1,0xe9,0xc5,0x4b,0xb6,0x30,0xcb,0xc5,0xbc,0x76,0x7f, +0xae,0x83,0x15,0x5c,0xfa,0xbb,0x97,0xe3,0x55,0xec,0x38,0x1a, +0x2d,0xeb,0x24,0x24,0x94,0x83,0xac,0x48,0xea,0xf2,0x99,0x6e, +0xa3,0x3b,0xf9,0xfe,0xf5,0x9c,0xeb,0x44,0x4d,0xd9,0x41,0x2f, +0x21,0x83,0x50,0x29,0xd5,0x17,0xfc,0x4e,0x25,0x99,0xa3,0xf7, +0x65,0x7a,0x46,0x8a,0x7a,0x1f,0xff,0xa8,0x70,0x02,0xf9,0x13, +0x30,0x48,0x08,0x24,0xa5,0x3b,0x9c,0xa2,0xd9,0x4e,0x45,0xb3, +0x06,0xce,0x75,0xbc,0x26,0xbd,0xbc,0x5c,0xa1,0x38,0x89,0x42, +0x71,0x9a,0x49,0x05,0xfd,0xef,0xab,0xc8,0x5e,0x7c,0x97,0x75, +0x82,0xb4,0x2e,0xe5,0x58,0x37,0x83,0x64,0x5e,0x47,0x97,0x53, +0x96,0x8f,0x7b,0xf2,0x97,0x71,0x27,0xa9,0xe7,0x02,0x76,0xe9, +0x3a,0xc7,0xf7,0xfc,0xc4,0xc9,0x8f,0xd4,0xd2,0xdd,0x54,0xbb, +0x44,0x80,0x8a,0xcc,0xf5,0xcd,0x29,0x05,0x31,0x31,0xb1,0x42, +0x38,0x05,0xba,0x5f,0x38,0x43,0x8d,0x19,0x51,0xc4,0xd3,0xc2, +0x6f,0x36,0x01,0xf6,0x8a,0x83,0x26,0x5b,0xc7,0x33,0xe7,0x6e, +0x46,0x5c,0x88,0x3c,0x17,0xc7,0x2b,0x39,0x70,0x86,0x2b,0xd7, +0xb2,0x71,0x53,0x55,0x64,0x85,0x12,0x7e,0xd0,0x7c,0x6e,0xaf, +0x98,0xef,0xb6,0x89,0x93,0xb0,0xb5,0xb2,0xba,0x3c,0xf9,0xf9, +0x97,0x32,0x2b,0xba,0x56,0x9e,0xbf,0x42,0x76,0x52,0x42,0xcd, +0xb2,0xe5,0x9d,0x5b,0x68,0x73,0x26,0x7b,0xf5,0x8a,0x7e,0xcb, +0x91,0x4f,0x64,0xad,0x74,0x8e,0x64,0xbc,0xd8,0x8d,0xd7,0xbd, +0x24,0xc4,0xc3,0x20,0x3d,0x6e,0x84,0xdc,0x86,0xed,0x94,0xe4, +0xcb,0x7d,0xdf,0xcb,0x8e,0xe6,0xf1,0x4a,0xf7,0x05,0x8f,0xfc, +0x29,0x3b,0xf5,0x48,0x7e,0xea,0x87,0xec,0x7c,0x89,0xfc,0x05, +0xfb,0x26,0x38,0x6c,0xaa,0xe0,0xb0,0xa3,0x39,0xf9,0xdd,0xa7, +0xb2,0xbb,0x62,0xf9,0x64,0x41,0x8d,0x52,0xba,0x65,0x36,0xbb, +0x2c,0x9b,0x2d,0xfa,0x3a,0x6f,0xba,0x10,0x0f,0xfd,0x85,0x58, +0x7e,0xce,0x29,0x22,0x35,0x9a,0x13,0x86,0xa0,0x12,0xf9,0xf9, +0x57,0xb2,0xc3,0xd9,0xf2,0x23,0xcd,0x32,0xc7,0x5c,0x09,0xaf, +0x39,0x84,0x13,0x98,0xf3,0x0a,0x89,0xec,0x38,0xd7,0x71,0x56, +0x28,0x70,0x81,0xd1,0x52,0x41,0x6c,0xb7,0xcd,0x6a,0x97,0xd5, +0xc8,0x84,0x7c,0x29,0x92,0xf0,0x03,0xa6,0x72,0xf2,0xcb,0x22, +0x55,0x4d,0x5f,0x63,0x65,0xba,0x9f,0x1e,0x17,0x24,0xea,0x28, +0x6d,0x09,0xf5,0x2d,0x94,0x9f,0xa6,0x3b,0x0d,0xd9,0x0d,0xea, +0x2e,0xa1,0x5c,0x91,0x80,0xf5,0x5d,0xc4,0xf2,0xfd,0xff,0x07, +0xb5,0x5d,0x14,0xc7,0x54,0x74,0x7b,0x5e,0x04,0x27,0x11,0xf8, +0xc7,0x3d,0xd1,0xc7,0x72,0xbf,0xa0,0x3c,0x6d,0x67,0x89,0x5c, +0xbc,0xa4,0x2d,0xaf,0x44,0x24,0xc9,0x11,0x97,0x65,0xfb,0x5f, +0x88,0x10,0x06,0x54,0x91,0x55,0x4b,0x1f,0x31,0x35,0x2a,0x9d, +0xad,0x60,0xe4,0x79,0x1d,0x8c,0x5c,0xf2,0xbf,0xa3,0xa4,0x8e, +0x53,0x4e,0x1d,0xc5,0x29,0xa7,0xa2,0x8f,0x77,0xe5,0xfe,0x41, +0x39,0x42,0x1f,0xff,0x1b,0xe2,0x8e,0x82,0x18,0xa8,0xc8,0x36, +0x48,0x69,0x57,0x49,0xdb,0x69,0x36,0x49,0xb0,0x8e,0xa1,0xe3, +0x70,0x17,0x3d,0x01,0xf4,0x69,0xc3,0xfc,0xf6,0x8a,0x0a,0xd9, +0x22,0x89,0xdb,0xa2,0x85,0xee,0x46,0x9a,0xbe,0xcb,0x14,0x52, +0xdf,0x48,0xa2,0x5c,0xf7,0xfc,0x9c,0xf7,0x33,0x6d,0x89,0x88, +0x76,0xf2,0xfd,0x72,0xa1,0x41,0x71,0x50,0x36,0xd3,0x71,0x44, +0x47,0x0b,0xd9,0x7b,0xd9,0x18,0x29,0xd5,0x91,0x74,0x9c,0x4b, +0x08,0x5e,0x22,0xa1,0x6a,0x8a,0x49,0xa9,0x89,0x25,0x62,0x07, +0x0f,0x47,0x77,0x27,0x2d,0x61,0x2a,0xe5,0xa6,0xb4,0x5c,0x24, +0xb1,0x19,0xc9,0x78,0x07,0x36,0x58,0x53,0x52,0xc0,0xaa,0x96, +0x2b,0x4e,0x27,0x02,0x6f,0x75,0x48,0xf6,0x4a,0x51,0xfb,0x72, +0x89,0xd4,0x9c,0x6e,0xcf,0x11,0xcb,0xef,0x48,0x9c,0x4e,0xa9, +0x75,0x60,0xba,0xf2,0x7c,0xf9,0xb1,0x0a,0x09,0xaf,0xad,0xcd, +0x45,0x7a,0x27,0xa8,0xd3,0x41,0xbc,0x32,0xb8,0xe9,0x1b,0x36, +0xb0,0xae,0xe3,0x1e,0x6e,0x52,0x2b,0x4d,0x7f,0x18,0x13,0x1e, +0xed,0xe5,0xa5,0xe6,0xe7,0x7f,0x41,0x11,0xe9,0x43,0x58,0x57, +0xb5,0xa4,0x87,0x82,0x2b,0x96,0x4a,0x4f,0xf2,0x2a,0x4a,0xdc, +0xb5,0x64,0x6d,0x55,0x01,0x7f,0x3c,0xa5,0xa7,0x72,0x14,0xf8, +0xe3,0xa2,0xc0,0x9f,0x51,0xff,0xe1,0xcf,0x4d,0xbe,0x47,0xce, +0x7f,0xf8,0x33,0xfc,0x3f,0xfc,0xb9,0xae,0xc0,0x9f,0x54,0xc9, +0xff,0x42,0xa1,0x0d,0x9c,0x4c,0x8f,0x85,0xf3,0xdd,0xab,0x39, +0x5e,0xd7,0x9f,0x5b,0x2a,0xbb,0x2a,0xf6,0x18,0xef,0xb8,0xc0, +0xce,0x58,0x65,0xf4,0x4c,0x29,0x1d,0x3b,0x97,0x8d,0x65,0x23, +0xe9,0xd8,0x39,0xc2,0x65,0xd7,0x40,0x85,0xa6,0xd2,0x33,0xe2, +0xe4,0x9f,0x96,0xd1,0xeb,0x22,0x9e,0xd7,0xe0,0x3a,0xa0,0xbd, +0xd7,0x42,0xb9,0x44,0x80,0x76,0x49,0x07,0xb4,0x57,0x48,0x5d, +0xbf,0xca,0x6b,0x39,0x36,0xb5,0x03,0xda,0xf9,0x0e,0x68,0x97, +0xc8,0x3a,0x4b,0xdf,0x7c,0xa7,0xc5,0xb3,0x0d,0xe4,0x33,0x3f, +0xcd,0x66,0xc5,0xdf,0x47,0xb3,0x63,0x63,0xb8,0xf6,0xce,0xd4, +0x43,0x2a,0x9b,0x29,0x94,0x89,0xbe,0x98,0x4a,0xa9,0xf5,0x68, +0x66,0x2d,0x78,0x90,0xb4,0x3f,0xe7,0xc5,0x12,0xa5,0xd9,0x9b, +0x95,0xa9,0xc1,0xef,0x9c,0x72,0x01,0x03,0x3e,0xb1,0xfd,0xcb, +0xa8,0xde,0x66,0x41,0x6c,0x6f,0x58,0xc6,0x74,0x0c,0xb4,0x04, +0xae,0x25,0xdb,0x25,0x7d,0xea,0xa4,0x1c,0x52,0x7e,0xa9,0xe1, +0xbd,0x46,0xb2,0xbc,0x61,0xa9,0xcc,0xbf,0x63,0xce,0x27,0x8d, +0x55,0xd8,0xe2,0xd9,0x52,0x3a,0x7a,0x16,0x1b,0xcd,0x5a,0x84, +0xd9,0xf2,0x5a,0x5d,0x38,0x36,0x53,0x3e,0x5d,0xf4,0x59,0x08, +0x6c,0xeb,0x61,0x8a,0x01,0xa8,0x44,0xf6,0x9a,0xd7,0x9e,0xc2, +0x99,0xca,0x82,0xc5,0x16,0x1e,0x07,0xdd,0x0f,0x69,0x31,0x89, +0x84,0x97,0x34,0x71,0x1f,0xcb,0x65,0xfa,0x9c,0x02,0xeb,0x45, +0xd2,0xaf,0x94,0x14,0xca,0x3d,0xe9,0x78,0x99,0x0b,0x3f,0xa0, +0xa7,0xd0,0x8b,0xe4,0x0d,0xc7,0x4a,0x24,0xb2,0x38,0x81,0x83, +0xd6,0x50,0x47,0xaa,0x56,0x22,0x66,0x51,0x6c,0x3d,0xaf,0xe4, +0x25,0xd8,0x43,0x40,0x95,0x35,0xb2,0x65,0x39,0x72,0x65,0x11, +0x3f,0xe8,0x0a,0x27,0xa2,0x02,0x82,0xc8,0x0d,0x98,0x29,0x27, +0xf3,0x6e,0xeb,0xcb,0xc9,0x0d,0x68,0x37,0x41,0xd2,0xaa,0x8a, +0x79,0xed,0x4f,0x9c,0x44,0xcc,0xab,0xdc,0xe7,0x0a,0xff,0x0a, +0x19,0x4a,0x40,0x19,0x67,0xba,0x5f,0x5e,0xce,0xf7,0x78,0xcd, +0x29,0x38,0xb7,0xa0,0x51,0x85,0xa8,0x11,0x02,0xea,0xb1,0xe0, +0xdf,0x5a,0x94,0x9f,0x25,0x6f,0xac,0xa1,0xc6,0x82,0xec,0xd5, +0x12,0xf8,0x5d,0x6f,0x33,0x8e,0xf5,0x95,0x7e,0x9d,0x3b,0x84, +0x9d,0x52,0x7c,0x1c,0x18,0x23,0xcc,0xa8,0xf7,0x6b,0x8e,0x1d, +0x90,0xfe,0x9c,0x3b,0x90,0xb9,0x2a,0x3e,0x2c,0x3a,0xca,0x76, +0x70,0x4c,0x59,0x6a,0xc0,0x49,0xfe,0xea,0x73,0xf2,0x3b,0xac, +0x56,0xea,0xf2,0x4d,0xb1,0x11,0xd3,0x44,0x79,0x9c,0x90,0xd9, +0x75,0xe9,0x4f,0xee,0xef,0x73,0x2e,0xc6,0x3f,0x3e,0x4b,0x23, +0x72,0xee,0x01,0xf1,0x28,0x8b,0xd5,0xc3,0xa7,0x6b,0xe9,0x7e, +0x16,0x40,0xc7,0xd3,0xde,0x59,0xbd,0xe3,0x08,0xff,0x7a,0x5c, +0x40,0x7c,0x86,0x46,0xf8,0xdc,0x43,0xbc,0xd6,0x6c,0xae,0xba, +0x20,0x2d,0x29,0x22,0xd1,0xcf,0x27,0x40,0x71,0x78,0xa7,0xcf, +0xd4,0x05,0xdd,0xc8,0xf4,0x68,0x77,0xa1,0xbe,0xc7,0x49,0x67, +0x75,0x01,0x51,0x78,0x4e,0x10,0x52,0xc2,0x70,0x6d,0x3d,0x04, +0x93,0xfd,0x16,0xd7,0x84,0x45,0xa5,0xe4,0xf1,0x3d,0xe6,0x72, +0x66,0x51,0x1b,0x6a,0x0e,0x6a,0x0d,0x60,0x07,0x85,0x2d,0x16, +0x53,0x07,0x5e,0x33,0x93,0x1b,0xc7,0x9c,0x84,0x85,0xf4,0xfb, +0xce,0x31,0xa9,0xb4,0x75,0xce,0x58,0x36,0x4f,0xf1,0xe1,0xa9, +0x98,0xf4,0xff,0x47,0xd2,0x08,0xec,0xb4,0x7b,0x12,0xc7,0x22, +0xa5,0xd1,0x6b,0xa8,0x56,0x5c,0x73,0x78,0xd6,0x7d,0xf5,0x10, +0xbf,0x1b,0x9e,0x97,0x4f,0xd3,0x78,0x3d,0xb5,0x98,0x4c,0x76, +0xf3,0xad,0xb5,0x8f,0x9d,0x62,0xfc,0xa3,0x27,0xcf,0x78,0xdd, +0x09,0x0d,0xbc,0xe5,0x1d,0xa6,0x4e,0xc3,0x72,0xdb,0x45,0x2b, +0x04,0xd8,0xb7,0x37,0x9f,0xbe,0x8b,0x1d,0xe6,0x75,0xb4,0x85, +0x7e,0x15,0xbd,0x44,0xf3,0x9a,0xc6,0xdc,0xff,0xfb,0xed,0x8a, +0x19,0xbb,0xd8,0x11,0x63,0x15,0x99,0x74,0xb8,0xf4,0xd3,0x6c, +0x83,0xe3,0x9c,0x44,0xf6,0x49,0xd6,0x5d,0x4a,0xc7,0x2d,0x64, +0xe3,0x98,0x2a,0x1d,0xb7,0x48,0x7c,0x39,0xfd,0x42,0x4e,0xa1, +0x46,0x8a,0xe2,0x90,0x6e,0xb5,0x78,0x92,0x95,0x91,0xc5,0x32, +0xbe,0x67,0x32,0x17,0xaa,0xce,0x86,0xb2,0xdc,0x31,0x1c,0x5b, +0xfd,0x9e,0xd7,0x0e,0x13,0x5a,0xbd,0x6f,0x0b,0x90,0xb2,0xdc, +0x15,0x8a,0xe3,0xf1,0xb3,0xc2,0xdc,0xd5,0x4e,0x71,0x26,0xa3, +0x2d,0x05,0xab,0x2b,0x8c,0x1b,0x97,0xa1,0x11,0x31,0xf7,0x90, +0x78,0xac,0xc5,0x9a,0xe1,0x86,0xbc,0xea,0x0d,0x2e,0x4d,0xe3, +0xde,0xdc,0xc3,0xe2,0x91,0x5b,0x96,0x31,0xf5,0x61,0x0a,0x75, +0x9e,0x95,0x9a,0x18,0x91,0x24,0x13,0xb0,0x64,0x80,0x5a,0x65, +0x6e,0x7a,0x62,0x78,0xbc,0xbf,0x20,0xd4,0x3b,0x74,0x79,0x9f, +0xff,0xec,0xcb,0xf1,0x4a,0x31,0x1d,0x82,0x37,0x8b,0x97,0xf4, +0xe4,0x78,0x2e,0x83,0x9b,0xcf,0x22,0x07,0x70,0x21,0xa2,0x97, +0x4c,0x8b,0x53,0x9c,0xad,0x33,0x53,0x21,0xdf,0xf7,0xe3,0x58, +0xa3,0xf4,0x03,0xd5,0xcd,0x67,0xfa,0xe2,0xdb,0xb4,0x9f,0xa1, +0xff,0x09,0xa6,0xad,0xcc,0x76,0x8a,0x4e,0x50,0x6d,0x05,0x4d, +0xee,0xa7,0xa0,0xc9,0x54,0x77,0x38,0xb3,0x56,0x90,0x54,0x91, +0x3c,0xe8,0x83,0x94,0x5a,0x0c,0x67,0x16,0x42,0x78,0x69,0x9e, +0xe0,0x76,0x2f,0x65,0xaa,0x7c,0xb7,0xde,0xdc,0x8f,0x1a,0xc5, +0xa1,0x71,0xd1,0x93,0xa4,0xcc,0xbb,0x7c,0x8f,0x58,0x8e,0x8d, +0x57,0x53,0x08,0xf9,0xb6,0x5e,0x42,0xb0,0xb6,0x50,0x35,0x5a, +0xbc,0x68,0x28,0x1b,0xfb,0x71,0x09,0x2b,0x6c,0x1a,0xc7,0x5c, +0x5b,0x9a,0x68,0xf1,0x12,0xc5,0xf3,0x22,0x56,0x48,0xd5,0xc6, +0x29,0x1c,0xae,0x7d,0x24,0x3d,0x2b,0xe4,0x07,0x7d,0x36,0x56, +0x44,0xff,0x7c,0xf9,0xdf,0x9d,0x24,0x9e,0x93,0x99,0xb1,0x75, +0xbc,0x68,0x18,0xc7,0x2b,0x8f,0xe7,0x1e,0xb3,0x18,0x69,0xd6, +0xe1,0x78,0xb3,0x50,0x2d,0x5f,0x3a,0xb8,0x48,0x1e,0x6b,0x4c, +0x0d,0xf8,0xee,0x73,0xb9,0xfa,0x82,0x26,0x2d,0xf6,0x29,0x44, +0x5a,0x9a,0x1d,0x59,0xc9,0xab,0x86,0x0a,0xdb,0xd5,0x25,0x9c, +0xa3,0x5b,0xd8,0x0a,0x5e,0x7d,0x3c,0x47,0xb3,0x84,0xe4,0xc1, +0xd1,0x66,0xaa,0x24,0xfd,0x3f,0x6f,0x6f,0xa2,0xe4,0x83,0x04, +0x85,0x22,0x75,0x08,0x3a,0xf9,0xff,0x7d,0x67,0xb7,0x41,0xf1, +0xce,0x2e,0x45,0xf1,0xce,0x2e,0x55,0xa1,0xca,0x3b,0xde,0xd9, +0xd9,0xf0,0x83,0xba,0x70,0xb1,0x5e,0xa9,0xea,0x54,0x40,0xbe, +0x26,0x41,0x0a,0xf3,0xaa,0xc5,0x9c,0xb2,0x6a,0x47,0xba,0x9b, +0x73,0x5a,0x81,0xf2,0x8a,0x03,0x52,0xc5,0x39,0xa4,0x20,0x23, +0xa4,0x4e,0xa7,0x04,0xc7,0xbf,0x1a,0xeb,0x1f,0x97,0xa5,0x11, +0x6e,0x74,0x44,0xac,0xb7,0x67,0x35,0x93,0xb2,0xce,0x5a,0x59, +0x5b,0x8b,0xb2,0x13,0x12,0xee,0xc6,0xa9,0xfb,0xf9,0xfa,0x7b, +0x0a,0x44,0x4a,0x9b,0xf5,0x56,0x4b,0x4f,0x16,0x62,0xb3,0x1b, +0xdf,0x73,0x0e,0xf7,0x56,0x4a,0x4f,0xb0,0x0b,0x15,0xb4,0xa2, +0xe3,0xb4,0x46,0x6e,0xf8,0x7e,0x0e,0x0b,0xee,0x38,0xd0,0x2b, +0x9b,0x2d,0x62,0x3e,0x4a,0x72,0xc3,0xcf,0x32,0x43,0x05,0x21, +0x1e,0xe4,0xa9,0x00,0xd2,0xd7,0x32,0x23,0xd1,0x67,0xc5,0x69, +0x94,0x8f,0x10,0xe9,0xc5,0xf2,0x10,0x91,0x2a,0xfb,0xc9,0xb5, +0xf2,0x3a,0xc2,0x92,0x2c,0xe5,0x7d,0x04,0xf5,0x18,0xd8,0xf1, +0x82,0x92,0xef,0x96,0x23,0x30,0x1b,0x21,0x35,0x78,0x14,0xcb, +0xab,0xd9,0x05,0x05,0x12,0xb7,0xd9,0xca,0x6e,0x48,0xa9,0x9b, +0xa1,0xbc,0xb1,0x96,0x86,0x77,0xf0,0x0b,0xa1,0x24,0x41,0x4a, +0x2d,0x0d,0xe5,0x27,0x6b,0xe9,0x86,0x8e,0x12,0x9e,0x4f,0xe4, +0xe8,0x4e,0x76,0xa7,0x92,0xbe,0xee,0x78,0x93,0xd2,0x7f,0x38, +0xf7,0xdf,0x41,0xb5,0x7c,0x18,0x67,0xfc,0xd7,0x93,0x93,0x8c, +0x62,0x96,0x26,0x6d,0x79,0x85,0x62,0xf9,0x35,0x61,0xda,0xb6, +0xa3,0x98,0xad,0xa0,0x54,0x36,0x57,0x33,0xa3,0x36,0x25,0xd6, +0x4f,0xc4,0x0f,0x9c,0xc1,0x09,0x6e,0xa1,0xea,0xce,0xb1,0x20, +0xc9,0x5f,0x43,0x8e,0x0d,0xfb,0x7f,0xe8,0x7a,0xef,0xb8,0x28, +0xae,0xee,0x7f,0xdc,0x24,0xec,0x0c,0xde,0x51,0x90,0x98,0xd1, +0xdd,0xe5,0xba,0x74,0x4b,0x2c,0xd1,0x98,0x68,0xd4,0x28,0x16, +0x54,0x2c,0x14,0x41,0x05,0xec,0x1d,0x8d,0x35,0x56,0x50,0x69, +0x02,0x0a,0x08,0x2a,0x4d,0xb1,0xd7,0xd8,0xb0,0x61,0x05,0x04, +0x54,0xa4,0x59,0x92,0x58,0x31,0x89,0xc6,0x98,0xae,0x26,0x6a, +0x62,0x92,0xe7,0x0e,0x9e,0xc1,0xe7,0x77,0xcf,0x1d,0x30,0x3e, +0x9f,0xd7,0xf7,0xf7,0x8f,0xee,0x0e,0xbb,0xb3,0x33,0x77,0xee, +0x3d,0xe7,0xbc,0xcf,0x79,0xbf,0xcf,0x7d,0xf6,0xe2,0x1f,0x2c, +0x6f,0x05,0x50,0x2b,0x7f,0x30,0x26,0xa3,0x76,0xe5,0x4b,0x86, +0xbd,0xe4,0x4e,0xf3,0xe5,0xb7,0xa4,0xcc,0x97,0x04,0xf0,0x57, +0xbd,0xa8,0x67,0x37,0xfe,0x3d,0x7e,0xcf,0xab,0xaf,0xe8,0xf3, +0xf0,0x56,0x1b,0xcf,0x26,0xf5,0x0e,0xba,0x29,0x53,0xfb,0x2a, +0xad,0x99,0xab,0xbf,0xee,0xca,0xe6,0x2b,0x7a,0x15,0xfc,0xaa, +0x7d,0x2d,0xd5,0x8e,0x54,0xc2,0x78,0xec,0x71,0x5d,0xd2,0x3f, +0x56,0xe0,0x63,0xe2,0xce,0xbf,0xbb,0x5d,0xfa,0xe1,0xde,0xf6, +0x1d,0x85,0x2e,0x0e,0xef,0x11,0x7d,0xda,0x2d,0x6d,0x1a,0xbf, +0xbb,0x7d,0xc2,0x5d,0xe7,0x71,0x77,0x7d,0x57,0x62,0x8e,0xac, +0x41,0xce,0xb6,0x5b,0x2e,0xca,0xcf,0x12,0x73,0x65,0x8d,0x73, +0xb6,0xdd,0x77,0x51,0xd4,0x79,0xf1,0x13,0x57,0x8e,0x4e,0xb1, +0x57,0x2a,0xa5,0xeb,0x15,0x99,0xd9,0x87,0xf9,0x91,0x7e,0x1c, +0xbd,0x63,0x81,0x8b,0x2d,0xdc,0x20,0x86,0xb1,0xee,0x1c,0xa7, +0xd0,0xe5,0xb7,0xd0,0x6a,0x54,0x7d,0x89,0xa8,0x64,0x66,0x6f, +0x10,0x95,0x4c,0xfd,0x98,0xc8,0x47,0x9a,0x05,0xb4,0xe7,0xb8, +0xdd,0xf4,0xcd,0xdd,0x54,0xf4,0xf3,0x3c,0xb0,0xe9,0x91,0xd0, +0xc1,0x59,0x09,0x8e,0xeb,0x1f,0xef,0xbd,0x92,0x23,0x25,0xbb, +0x17,0x64,0x87,0x52,0xd3,0x98,0x64,0x61,0xed,0x72,0xf5,0xda, +0x95,0xac,0x89,0x02,0x07,0x45,0x58,0xd8,0x52,0xd1,0x6f,0x48, +0xd5,0x7e,0xaa,0xf6,0x31,0x9f,0xb7,0x5f,0x71,0x03,0xc3,0xc3, +0x97,0xf8,0xdf,0x78,0xfc,0x37,0x4d,0xa9,0x99,0x57,0x13,0xa7, +0xea,0xd7,0x14,0x2d,0x82,0x95,0xa9,0x3f,0x29,0x30,0x72,0x28, +0x1b,0x29,0xc1,0x32,0xe5,0x9a,0x74,0xbb,0x2a,0x6b,0xfd,0x31, +0x1e,0x0a,0x9d,0x2b,0x87,0xe5,0x92,0x83,0x85,0x79,0x56,0x02, +0x04,0xf0,0x67,0x1d,0x7e,0x59,0x3f,0xa9,0xb0,0x29,0x97,0x64, +0xc8,0x55,0x32,0x87,0x6a,0xf1,0x7b,0x4d,0x0a,0x1c,0x0e,0x14, +0x10,0xcb,0xce,0x1b,0xec,0x14,0x36,0xee,0x22,0x8c,0x53,0x2c, +0x71,0xa2,0x3c,0xca,0x3e,0xaa,0x82,0x38,0xc5,0x7c,0xa1,0x04, +0xfa,0x2b,0x2c,0x5e,0x82,0xab,0xdc,0x7e,0xbe,0x24,0xe0,0xa7, +0x46,0xac,0x5d,0x91,0xbc,0x34,0x66,0x59,0xac,0x99,0x3a,0x27, +0x90,0x43,0xa5,0x7c,0x15,0x6f,0x30,0x0a,0xa0,0x76,0xb5,0x83, +0x08,0x7b,0x8b,0x7d,0x52,0x51,0xe3,0x45,0xb0,0xfc,0x49,0x3d, +0x43,0x88,0xfe,0xe6,0x30,0x2c,0x97,0xd2,0x2e,0x04,0xa2,0x27, +0xd3,0xc6,0xb9,0x84,0x1f,0x0d,0xad,0x2f,0xa2,0xd2,0x8f,0xf8, +0xd1,0x91,0x54,0x76,0x21,0x6a,0x4c,0x5c,0x92,0x58,0x19,0xa7, +0x2e,0x58,0x0f,0x0e,0xfe,0x54,0x76,0x9f,0x31,0x12,0x1c,0xe1, +0x2d,0x5b,0xc9,0xe4,0xf2,0xd2,0x93,0xa7,0xf6,0x62,0x32,0x53, +0x40,0x8c,0xe6,0x68,0xba,0x4e,0x43,0x73,0xe6,0x14,0xbd,0x3e, +0x86,0xc7,0xf8,0x16,0xc8,0xe3,0x38,0xcc,0xff,0x8f,0x41,0xb0, +0xdd,0x95,0xb0,0x1d,0xec,0xc6,0x20,0x09,0xb6,0xd8,0x81,0x3f, +0x7b,0x83,0xf9,0xf3,0xe9,0xe9,0x98,0x47,0xe0,0xae,0xfa,0x33, +0x3b,0x66,0xd8,0x2e,0x8b,0x77,0xc6,0x62,0x2c,0x31,0x20,0xc4, +0x77,0xf5,0x4e,0xa8,0x83,0xf8,0xec,0x58,0x27,0x5d,0xaa,0x31, +0x73,0xf7,0xca,0xd7,0xbc,0x91,0x97,0x4b,0x5a,0xb3,0x93,0x7a, +0x7e,0x46,0x00,0xfc,0x70,0xe1,0x63,0x56,0x4e,0xf1,0x2c,0xc4, +0xac,0x5c,0xfa,0x4a,0x1e,0x0c,0xd9,0xcc,0x67,0x8d,0xac,0x1c, +0x60,0x56,0xae,0x3f,0xe4,0xee,0xe0,0xa1,0xfd,0x1f,0xd4,0x6b, +0x3e,0xf7,0x7f,0xda,0x18,0xc2,0x36,0x07,0x60,0x60,0xdf,0x08, +0x33,0x12,0x5b,0x44,0x46,0x22,0x66,0x7d,0xb4,0x51,0xe8,0xc2, +0xd5,0x4f,0x9b,0xc8,0xdc,0x33,0xb9,0xd9,0x8a,0xc7,0x5e,0x39, +0x7f,0xe6,0xe4,0x01,0x7e,0x6b,0x6b,0x33,0x53,0xb8,0xd7,0x73, +0x01,0x47,0xf3,0x39,0x91,0x9e,0x1b,0x85,0xe9,0xb9,0x55,0x37, +0x58,0x19,0xa6,0xe7,0xa8,0x6d,0x31,0x22,0x0f,0x32,0x90,0x5a, +0xae,0x11,0x4a,0xc3,0xf8,0x3c,0x6a,0x05,0x9f,0x42,0x0f,0xa3, +0x90,0x95,0xa1,0xb2,0x10,0xf8,0xfc,0x86,0xd6,0x08,0x4b,0x18, +0xd4,0xc6,0xd1,0x9d,0x03,0xd8,0xdb,0x12,0xf2,0x38,0xc4,0x8a, +0xfa,0x89,0x45,0xb3,0x30,0x28,0x0b,0x62,0x2b,0x3e,0x84,0x18, +0x78,0xd7,0xc8,0xa7,0x66,0xe4,0x54,0xb9,0xa4,0x64,0x9e,0x9c, +0x76,0xa9,0xf2,0x4c,0xfe,0x81,0x7c,0x4b,0x7a,0x7a,0x16,0xf5, +0xf2,0xe6,0xd0,0x4b,0xd2,0x9b,0xf9,0xb1,0x2f,0x03,0xe5,0x98, +0x94,0x58,0x1e,0x54,0xc2,0x1f,0x4b,0xb3,0x86,0xb2,0x1b,0xd4, +0x2d,0x87,0x9b,0x4b,0xe2,0x44,0x74,0x17,0x0e,0x6a,0x5c,0x04, +0xa8,0xf9,0x85,0xda,0xa7,0x11,0x16,0x0e,0x6f,0xc0,0x14,0xf0, +0xd1,0x3a,0x11,0x81,0x7e,0x5a,0x32,0x2f,0xd6,0x92,0x5f,0x80, +0xeb,0x60,0x72,0x50,0x7a,0x7c,0x3d,0x23,0xe7,0x22,0xb5,0x7d, +0x47,0x76,0x33,0xdf,0x21,0xe9,0x4b,0xc1,0xdf,0x34,0x58,0x5a, +0xca,0xfc,0x87,0x24,0xee,0x06,0x5f,0xed,0x27,0xf2,0x7f,0xbe, +0x2f,0x46,0xeb,0xa0,0xe6,0x52,0x1b,0xca,0x3d,0x31,0xf0,0x93, +0x68,0x11,0xda,0x5b,0xea,0x03,0x96,0xc6,0xae,0xf0,0x08,0xae, +0xe7,0xef,0xbd,0xe1,0x0a,0x4b,0xeb,0x32,0x8d,0xd4,0x36,0x60, +0x89,0xaa,0xd6,0xb3,0x8d,0xde,0x93,0xaf,0x80,0x05,0x91,0x2b, +0xd7,0x98,0x8e,0x9c,0x58,0x7f,0xfa,0xbc,0x75,0xff,0xc7,0xf3, +0xe5,0xb6,0x23,0x02,0x21,0xb5,0xb5,0x60,0x2e,0x94,0xde,0x3f, +0x53,0x92,0x6f,0x59,0xfb,0x1a,0x73,0xc1,0xe3,0x54,0x05,0x6c, +0x62,0xcd,0x23,0x33,0x63,0x53,0x22,0x63,0x78,0x28,0xc1,0xf1, +0xfc,0x79,0x5f,0x12,0x8c,0x78,0x9e,0xff,0x54,0x23,0x3e,0x3b, +0x52,0xd9,0x49,0xfd,0x1a,0x9c,0x64,0x69,0x9d,0x74,0xb9,0x13, +0xd1,0xff,0xcb,0x6e,0xaa,0x5a,0x77,0xe8,0xa9,0x77,0xe7,0xb6, +0xaa,0xe9,0x28,0xc2,0xff,0xbe,0xfb,0x65,0x31,0x3a,0xc1,0xdd, +0x2c,0x7c,0x50,0xfa,0x32,0x98,0x6d,0xf2,0x93,0x96,0x51,0x47, +0x1e,0xe9,0x7c,0x53,0x8e,0x90,0x6f,0x39,0x29,0xa7,0x76,0x37, +0x08,0x0f,0x2b,0x73,0x15,0xea,0x76,0x8d,0xdc,0x62,0x3f,0x8a, +0x4a,0x83,0xf6,0xf0,0x12,0xf5,0xfa,0x90,0xcc,0x87,0x3e,0x46, +0xf1,0xba,0x8f,0x77,0xc2,0x41,0xe8,0x6e,0x82,0x36,0x46,0xf1, +0x5a,0xd5,0xa3,0x03,0xb4,0x68,0xe9,0x14,0xac,0x51,0x27,0xac, +0x0c,0x5b,0x19,0xb4,0x6a,0x1f,0x1b,0x6f,0xa6,0xb6,0x44,0x42, +0x9b,0xbc,0xc5,0x87,0xdd,0xd9,0x93,0x9c,0xd7,0x9d,0x65,0x36, +0x8e,0xba,0x7f,0x4d,0x8e,0xcd,0x19,0x35,0x6a,0xda,0xec,0x10, +0x17,0x07,0x75,0x39,0x7b,0x93,0xcd,0xe1,0xf3,0x23,0xdf,0x9f, +0xcd,0x77,0x85,0xb9,0xd0,0xdf,0xa8,0x65,0xed,0xa6,0x8e,0x12, +0x11,0xf7,0xf3,0x88,0x7a,0xb8,0x70,0x84,0xc6,0xef,0x44,0xa9, +0xf9,0xb4,0x66,0x8d,0xda,0x87,0x0f,0xd9,0x93,0xde,0x70,0x55, +0xbb,0x21,0xf5,0x29,0x57,0xf9,0x6b,0xa3,0xee,0x8e,0x24,0x96, +0x4f,0xab,0xd9,0x3b,0x06,0x89,0x25,0x33,0x76,0x75,0x64,0xd4, +0xc2,0x65,0xe6,0x55,0xa9,0xd4,0x2b,0x98,0x84,0x04,0x41,0x52, +0x3b,0xdb,0x89,0x61,0xcc,0xca,0x87,0xb3,0x38,0xdf,0x92,0x93, +0xb1,0x29,0x79,0x73,0x02,0xdb,0x0e,0x2e,0xe6,0x93,0x58,0xd7, +0xf2,0xe9,0x08,0xb9,0x3f,0xf7,0x83,0x32,0xad,0xbb,0xe4,0x53, +0xae,0x42,0xee,0x13,0x96,0x2b,0xb1,0xa1,0x0a,0xd6,0x03,0x37, +0x2b,0x2f,0x1c,0x08,0xe4,0x67,0xea,0xf1,0x44,0x69,0x46,0x6d, +0xef,0x60,0xb2,0x62,0x1a,0xec,0xbc,0xc5,0x1e,0x60,0x19,0x66, +0x2a,0xec,0xbc,0xc9,0x1e,0x88,0xc1,0xe1,0x53,0x20,0xfa,0x26, +0x2b,0xae,0xaf,0xcd,0x47,0xdf,0x62,0xc5,0x78,0xfc,0x7d,0x02, +0x36,0x2a,0x0d,0x16,0xcf,0xc6,0x4e,0x7d,0x48,0x9b,0xee,0x20, +0x1d,0xa8,0x7d,0x6f,0xf1,0xde,0xa4,0x3e,0x5d,0x21,0x5f,0x3c, +0x75,0xfc,0xf0,0xbe,0xc3,0x59,0xe9,0x59,0xc9,0x99,0x89,0xec, +0x5d,0x70,0x32,0x17,0x96,0xf0,0x48,0xc6,0x3e,0x3a,0x4b,0xab, +0x24,0x47,0xb3,0xf2,0xce,0xf2,0x88,0x72,0x9e,0xdc,0x75,0x76, +0x68,0x3b,0x5f,0x9b,0xeb,0x0f,0xd1,0xd9,0x31,0xab,0x69,0xc3, +0x2e,0xe4,0x58,0xf6,0xf1,0x02,0xeb,0xfe,0x7e,0x9f,0xca,0x1f, +0x8c,0x1b,0x02,0xcd,0xba,0xd8,0x0a,0xc3,0xae,0x15,0x9d,0x3d, +0x99,0x7b,0xca,0x92,0xb5,0x4e,0x00,0x9c,0x77,0x38,0x6e,0x8e, +0x6a,0x2d,0x7e,0x07,0x33,0x24,0xbf,0xaa,0x2b,0xb8,0x01,0x99, +0xc8,0x16,0x40,0x6e,0x20,0xbf,0xe6,0x06,0x30,0x09,0xfa,0x69, +0xb3,0x48,0x62,0x7b,0x67,0xed,0x6f,0xd6,0x46,0xbd,0xa8,0x3b, +0x06,0x3f,0x4e,0x94,0x27,0x2e,0x89,0x98,0x3e,0xd1,0x3a,0xa8, +0x3c,0xf8,0xf7,0xdf,0xcb,0x2f,0x7e,0x7e,0x2a,0xe2,0xc8,0xc4, +0xed,0xb6,0x74,0xb9,0x33,0xf4,0xa0,0x9e,0x0e,0xa4,0xf8,0xc8, +0xac,0xd0,0xb0,0xe9,0xb3,0xc2,0x5c,0x30,0x1b,0x2f,0xb2,0x11, +0x58,0xfd,0xa0,0x6e,0xc1,0xa4,0xae,0xda,0xf1,0x26,0x5b,0xca, +0xe6,0x63,0x02,0x24,0xda,0x15,0x96,0x81,0x0f,0xcc,0x26,0xa7, +0xa7,0x5e,0xbe,0x76,0xfa,0xdc,0xfe,0x12,0xcb,0x3a,0x23,0x51, +0xd1,0x02,0x3a,0x8b,0x20,0x89,0x2a,0x3c,0xfe,0x76,0x52,0xff, +0xf6,0x76,0xd7,0x25,0x8c,0x62,0x1b,0x7e,0x26,0xc2,0x1e,0xb5, +0xa2,0x56,0x0e,0x64,0x9d,0x12,0xe4,0xe1,0x8b,0x16,0x4f,0x9f, +0x62,0x1d,0x7c,0x3d,0x90,0x75,0xa1,0x5e,0x21,0x44,0x06,0x0f, +0xf8,0x98,0xba,0xa4,0x12,0x98,0x48,0xe0,0x82,0x1a,0xcd,0x76, +0xf9,0xc0,0x71,0xaa,0xfe,0x22,0x52,0x3e,0xab,0xa3,0x62,0x0d, +0x7e,0xd1,0x8e,0x63,0x99,0x27,0x8a,0xad,0xb9,0x3e,0x73,0xe5, +0x0f,0x67,0x87,0xb4,0xed,0x63,0x73,0xa3,0x6e,0x5b,0x48,0xff, +0x79,0x72,0xc7,0xf1,0xd4,0x79,0x37,0xc1,0x1f,0xfd,0x83,0x80, +0x3d,0x46,0xdc,0xd4,0xe1,0x1a,0xd9,0x9f,0x9d,0x9b,0x76,0xcc, +0xc2,0xd2,0xab,0xf4,0xef,0xfd,0xd9,0x26,0x29,0xb1,0xdf,0x90, +0x31,0xb0,0xd0,0xe7,0xc8,0x70,0x33,0x6b,0x96,0x7f,0xef,0x68, +0xf1,0xb1,0x35,0xa9,0xd4,0xfd,0x31,0xa1,0xe6,0x37,0x09,0xbb, +0x43,0x2d,0xc1,0x44,0x1f,0xbb,0x55,0xe5,0xb6,0xd3,0x81,0xf9, +0xf1,0xf5,0x61,0x79,0x44,0x3e,0x52,0x59,0x97,0xbe,0xd0,0x45, +0x77,0xc2,0xf3,0xd9,0x3b,0x10,0xb6,0x93,0xdd,0x1e,0x24,0xb1, +0x6a,0xe8,0x44,0x1d,0x67,0x92,0x13,0x59,0x58,0xcd,0xf7,0x5d, +0x20,0xbb,0x4f,0x0b,0x01,0x27,0x90,0x6c,0x45,0x54,0x8e,0x22, +0xfa,0x18,0xea,0xb8,0x9e,0xbb,0x0b,0x75,0x1d,0x79,0x0e,0xef, +0x99,0xf3,0xcb,0x0e,0x17,0xee,0x2a,0xb4,0x57,0xd4,0x08,0xbe, +0x90,0x97,0x45,0x2f,0x8d,0x36,0xaf,0x4c,0xdb,0x9b,0xbb,0xfe, +0x50,0xea,0x09,0x7e,0x5d,0x97,0xf4,0xef,0xfd,0xf0,0xba,0xbc, +0x87,0x86,0xc1,0x62,0xef,0x63,0x41,0x1c,0xb5,0x17,0xde,0xcb, +0x2b,0x3e,0xbe,0x36,0xcd,0xbc,0x29,0x73,0x73,0xea,0x96,0x78, +0xb6,0x03,0x9a,0x98,0x8f,0x5d,0x34,0x39,0xd4,0x1e,0xc5,0xf5, +0x9c,0x85,0xeb,0xf9,0x1a,0x5f,0xcf,0x63,0x07,0x53,0xfb,0x6f, +0xc8,0x20,0xea,0xf8,0x80,0x50,0xcf,0x36,0x24,0x7f,0x7d,0x41, +0xb9,0xf5,0xd0,0xc7,0x73,0x64,0xd7,0x90,0xc1,0xb0,0xd2,0x15, +0x2b,0xad,0xcd,0x2a,0xef,0x15,0x15,0x17,0x59,0x36,0x66,0x6d, +0x4c,0xd9,0xbc,0x82,0x6d,0x85,0x0e,0xe6,0x33,0x7c,0x09,0x50, +0xcf,0x0c,0x02,0x49,0xd4,0xd2,0x19,0x59,0x5b,0xd1,0x46,0x71, +0x8b,0x1b,0xf7,0xed,0xf9,0xd4,0x31,0x81,0x80,0x23,0x6d,0xe1, +0x44,0xfe,0xbc,0x53,0x63,0x4f,0x2e,0x5d,0x39,0x7d,0x96,0x7a, +0xf4,0xe2,0x03,0xaa,0xa6,0xf6,0x9c,0xdf,0x7f,0x86,0xff,0x95, +0x65,0xe6,0x23,0x5f,0x7c,0xf6,0xdd,0xf7,0xd6,0x52,0x08,0x0a, +0x62,0x8e,0x32,0x4b,0x5d,0xa1,0xa6,0x76,0x8d,0x1a,0x18,0xe1, +0x7f,0x25,0xd6,0xbc,0xfd,0xf3,0x8d,0x37,0x7e,0xb2,0x5e,0x81, +0xd1,0x41,0xcc,0x22,0x2b,0x1b,0x49,0x4e,0x02,0xb7,0x54,0x41, +0x18,0x0c,0xa9,0x7a,0x58,0x80,0x16,0x26,0x1d,0x80,0x8d,0x6a, +0x78,0xe2,0x84,0x55,0xa3,0x57,0xed,0x61,0x33,0xcc,0x3e,0xdc, +0x9b,0x2d,0x98,0x94,0x34,0x3e,0x79,0x42,0x8a,0x65,0x19,0x8b, +0xe8,0x97,0xb0,0x13,0x16,0x98,0xa6,0x4c,0x4e,0x99,0xe2,0x9c, +0x31,0xcc,0xc4,0x06,0xb3,0xb0,0xac,0xed,0xec,0x1d,0x17,0xb1, +0xd2,0x27,0x54,0xb3,0xb7,0x70,0xa5,0x53,0x87,0xc7,0xa4,0xbd, +0x8a,0xd0,0x3a,0x8a,0xcf,0xf0,0x39,0x7c,0x86,0x17,0x04,0xb0, +0x05,0x58,0x13,0xf7,0xe1,0x76,0xe4,0x65,0x2c,0x61,0x39,0xd4, +0xe3,0x6f,0xa2,0x65,0x13,0x7d,0xdc,0x1d,0x16,0x82,0x35,0x11, +0xfe,0xe8,0xb4,0x65,0x97,0xf4,0x4a,0x8e,0xaa,0xb0,0x60,0x73, +0x19,0x0d,0xdb,0x82,0x56,0x92,0x1e,0xb5,0x38,0x6b,0xa8,0xb6, +0x70,0xaf,0x09,0xcc,0xb7,0xd9,0xdf,0x7a,0xb1,0xec,0x40,0x69, +0x47,0x02,0x05,0x0a,0xeb,0x59,0x0a,0x37,0x1f,0xb0,0x0b,0x2c, +0x58,0x27,0xc3,0x59,0x79,0x57,0x28,0x85,0xe1,0xac,0x9d,0x28, +0xd1,0x66,0x71,0x43,0x5b,0x21,0xa2,0x99,0x8e,0xd0,0x4d,0xef, +0x28,0x40,0xe8,0x19,0x01,0x42,0x3b,0xf7,0xae,0x6d,0x55,0xcd, +0xe6,0x70,0x10,0xda,0x51,0x56,0x58,0xd7,0x52,0xf8,0xf2,0x01, +0x3b,0x7d,0x0e,0xce,0x7c,0xc7,0xca,0x4b,0xf5,0x86,0xf0,0x1d, +0x6b,0xaf,0x24,0x7f,0xf4,0xb2,0x02,0x07,0xe2,0x43,0xf6,0x56, +0x1f,0xa8,0xe4,0xc1,0x60,0x0e,0x7b,0xd1,0x5b,0x82,0x02,0x3b, +0x7e,0x84,0x68,0x1f,0xf2,0xcb,0xba,0xfd,0x8c,0xda,0x70,0xac, +0xe0,0x37,0xf0,0xa5,0x0d,0x09,0x61,0x03,0x29,0xb1,0x11,0xe8, +0x2d,0x4c,0x10,0x92,0x7f,0x8c,0x4a,0x70,0x3d,0x0d,0x48,0xd5, +0x12,0x7b,0x48,0xfa,0xda,0xc8,0x4c,0x3f,0x6d,0xd5,0x1e,0x93, +0xfb,0x2d,0x76,0x41,0xff,0x82,0x47,0x2d,0x18,0x25,0x63,0x18, +0xaa,0xea,0x9d,0x1f,0xf7,0x85,0xcd,0xfc,0x87,0x32,0xd9,0x17, +0x7d,0x25,0xc8,0xb0,0xd3,0x3b,0x3f,0xd3,0x3a,0xa3,0xe9,0x1a, +0xa7,0x2d,0xbd,0x42,0xed,0xff,0x21,0x98,0xd1,0x66,0x47,0xf3, +0xdd,0x35,0xf2,0x01,0x8f,0x6d,0x0f,0xf2,0x18,0x95,0xa3,0xee, +0x8f,0x48,0x25,0x35,0xd9,0x93,0x78,0xee,0x0a,0x9a,0x10,0x18, +0xcc,0x7f,0x3c,0xae,0x17,0xa4,0xe9,0x6d,0x08,0x8f,0xa6,0xd7, +0xa8,0x6c,0xb3,0x77,0x6d,0xab,0x3b,0xec,0x41,0x7d,0x7c,0x5d, +0xa0,0x62,0xfd,0x69,0xcd,0x1d,0x36,0x5f,0x1c,0x69,0x89,0x95, +0x27,0x6d,0x13,0x06,0xda,0xe7,0x48,0x54,0x28,0xe6,0x0e,0x79, +0x78,0xec,0x4f,0xed,0x39,0xe6,0xab,0x8b,0x35,0xb1,0xee,0x54, +0x57,0xc6,0x6a,0xc6,0x1a,0xf4,0x51,0x6a,0x16,0x60,0xe1,0x6b, +0xdb,0x6d,0x6d,0x9b,0xac,0x68,0x54,0x24,0x28,0x7f,0x54,0x13, +0xf8,0xd3,0x9d,0xc2,0x9f,0xee,0x11,0x1e,0xdd,0x71,0xfb,0x35, +0x85,0xdb,0xaf,0x31,0xc2,0x55,0x2b,0x35,0x23,0x45,0x31,0xea, +0x0e,0x16,0xa3,0x04,0x0d,0xac,0x56,0xab,0xc6,0xd7,0xd4,0xbe, +0x98,0x8c,0xac,0xd6,0x7e,0xed,0xad,0x2f,0xe3,0x4f,0xe0,0xd0, +0xf5,0x36,0x5a,0xe9,0x93,0xeb,0x70,0xa8,0xff,0x13,0xbd,0xb4, +0x8d,0xa4,0xc0,0x04,0xb0,0xb2,0xa0,0x7e,0x7a,0xd0,0x4d,0x2c, +0x87,0xdd,0xff,0x4a,0x54,0xc5,0x92,0xf9,0x7f,0x1f,0x12,0x7d, +0x74,0xb5,0xa4,0xdc,0x93,0x58,0x53,0x0c,0xa0,0xab,0x5d,0x30, +0x4c,0xdf,0x70,0x59,0x8f,0x92,0x1c,0x4c,0xdf,0x7e,0x97,0xb6, +0xe6,0x1e,0x0f,0x9a,0x07,0x49,0xb4,0x61,0x29,0x39,0xff,0x43, +0xd5,0x69,0x7f,0xfe,0x9b,0x8b,0x68,0x93,0xce,0xfc,0x66,0x16, +0xe1,0x55,0x4f,0xbb,0x29,0x02,0x71,0x23,0x6f,0x76,0xe8,0x0e, +0xc6,0xf8,0xdb,0xa4,0xef,0xee,0xec,0xd8,0xa6,0x70,0xeb,0x3b, +0x53,0x14,0x77,0x5b,0xc3,0x24,0x3e,0x84,0x93,0xca,0xef,0x13, +0x3c,0xf3,0xc9,0x2b,0xfa,0x26,0xe4,0x83,0x50,0x37,0x74,0x5b, +0x6c,0x6b,0x15,0x6c,0x95,0x30,0x18,0x17,0xe4,0x1b,0x78,0x46, +0xf4,0x45,0xda,0x94,0xa9,0xf5,0x27,0xc4,0xc8,0x1e,0x13,0x1e, +0x3b,0x2f,0xeb,0xab,0x24,0x07,0x9c,0xbd,0xb9,0x97,0xf4,0x0c, +0xc5,0xc2,0x76,0x56,0xe9,0xba,0x3f,0xdb,0x23,0x25,0x22,0xe7, +0x66,0xc2,0x57,0xda,0x04,0x59,0x31,0xc5,0x4d,0x1f,0x91,0xe0, +0xe7,0xbc,0x42,0x01,0xf3,0x50,0x66,0x96,0x60,0x8f,0xa2,0x56, +0xd5,0x96,0xf9,0xf3,0xa0,0x3d,0xb2,0x23,0x58,0x62,0xc0,0xd3, +0x79,0xae,0x82,0x1e,0xb4,0x8a,0x7b,0x50,0xe5,0x49,0x5f,0x36, +0x8a,0x8d,0x7a,0x72,0x4b,0x24,0xec,0xfe,0xc8,0xfa,0x36,0x87, +0xcf,0x39,0x27,0xa0,0xa2,0x34,0xd9,0xab,0x2e,0xd5,0x37,0x9c, +0x85,0xbf,0xc7,0xc7,0xbd,0x9d,0xa2,0x5d,0x93,0x7a,0xf3,0x6f, +0x75,0x57,0x16,0x05,0xb3,0xd1,0x17,0xdd,0x95,0x9a,0x51,0x6c, +0x9b,0x7a,0x47,0x5b,0xed,0xad,0x98,0xa2,0x83,0xbb,0x27,0xb4, +0x77,0xe6,0x33,0x6d,0x51,0x80,0xb6,0x48,0x52,0x62,0xe2,0x2c, +0x09,0x2b,0x45,0xe1,0x6d,0xcd,0xda,0xb5,0x29,0x6b,0x92,0x14, +0xed,0x29,0x26,0xff,0x5a,0x28,0xb6,0xf3,0x93,0x4c,0x4c,0x55, +0xd8,0xa4,0xbe,0xfa,0xc2,0x5b,0x78,0x82,0x4b,0x2a,0xbf,0xe8, +0x5e,0x0a,0x98,0x6e,0x32,0x93,0xf2,0xc9,0x8a,0x91,0x09,0xc1, +0xa9,0x16,0xc5,0x28,0x55,0xb1,0x9c,0x2b,0xf0,0xbd,0xa2,0x25, +0x56,0x70,0x64,0x80,0x69,0xd1,0x85,0x1b,0x14,0x97,0xd8,0x4a, +0x53,0x54,0xa8,0x92,0xb6,0x76,0xdd,0x6a,0xe4,0xe4,0xc1,0x38, +0x69,0x81,0xc2,0x81,0x04,0x0c,0x52,0xd8,0x01,0x09,0x86,0x2a, +0xd7,0x6b,0x6e,0xf5,0xe7,0x30,0x6d,0x09,0x77,0xb8,0x0f,0xa8, +0x4b,0x08,0xe9,0x22,0xc2,0xa0,0x74,0xe6,0x46,0xdd,0x19,0x66, +0x37,0x16,0xa1,0xbd,0xfe,0xcb,0x17,0xed,0x75,0x1f,0xea,0x79, +0x82,0x6c,0x3f,0x9d,0x95,0x5f,0x61,0xcd,0x1d,0x30,0x57,0x06, +0x39,0x9c,0x3a,0x5d,0x26,0x55,0x97,0x4e,0x17,0xee,0x2b,0xac, +0x69,0x47,0x98,0x05,0x3c,0xb5,0x22,0xc2,0xc1,0x14,0x37,0xfc, +0x46,0x66,0xe8,0x16,0x16,0x0b,0xc5,0xc3,0xa4,0x76,0x55,0xc4, +0x48,0x0f,0xb9,0xc2,0x59,0xa2,0x2e,0x7b,0xc6,0x66,0xf1,0xc3, +0x58,0x2d,0x6b,0x0d,0xb3,0xa1,0xbb,0xa8,0x96,0xad,0x55,0xa9, +0xc9,0x51,0x94,0xcb,0x5e,0x23,0xcd,0xae,0xd9,0x41,0x9d,0x86, +0x10,0x78,0xc1,0x83,0x71,0xea,0xfe,0x29,0xf9,0xa2,0xaa,0x20, +0xff,0xc0,0xe9,0xf4,0xb5,0xe9,0x29,0xe9,0x89,0xd4,0x4d,0x22, +0x3e,0x70,0x4c,0x4c,0x1b,0xcc,0x59,0x34,0xfa,0x0f,0x81,0xe5, +0x1c,0x89,0xf4,0x06,0x3b,0x78,0xc0,0x9d,0x8d,0x60,0xbb,0x86, +0x21,0xdb,0x55,0x7f,0x8f,0xc0,0x6e,0x2a,0xff,0x4a,0xb6,0x6c, +0xa3,0xa6,0x36,0xe4,0x0f,0xf6,0x9c,0x40,0xb2,0x48,0x00,0x67, +0xe6,0x94,0xd1,0x16,0x1d,0x08,0x33,0x51,0xfb,0x9e,0x04,0x8e, +0xea,0xee,0x82,0xbc,0x49,0xc9,0x04,0x1e,0x77,0xc3,0x10,0x35, +0x6e,0x85,0x51,0x45,0xb8,0xf4,0xf9,0xe9,0xe2,0x7d,0xf5,0x55, +0x04,0xea,0x3e,0x85,0xc0,0x31,0x68,0xa6,0xc2,0x10,0x66,0x66, +0x43,0xb8,0x97,0x6b,0x7a,0x89,0x40,0x5e,0xa5,0x0a,0x43,0x99, +0x9d,0x2f,0x14,0x0a,0x30,0xf2,0xc4,0x57,0x82,0x53,0x76,0xd4, +0xfe,0x11,0x51,0x13,0xfe,0x60,0x93,0xd9,0x27,0xa2,0x66,0xd9, +0x86,0xcf,0x8a,0x1e,0xa2,0x66,0x29,0x8b,0xd4,0x3f,0xb5,0x3b, +0x49,0x5e,0x7e,0xc5,0x2d,0x45,0xcd,0x32,0xa2,0x77,0x26,0x10, +0x40,0xcd,0x97,0xc8,0xff,0x3a,0x49,0x35,0x76,0x7d,0xd4,0xea, +0x68,0xea,0x60,0x4f,0xce,0xbe,0xe6,0x19,0x97,0x6f,0x88,0x4e, +0x11,0x15,0x9c,0x95,0x6b,0x76,0x1c,0xc9,0x3e,0x9a,0x56,0x58, +0x1b,0x80,0x24,0x82,0x95,0x9d,0x47,0x87,0x81,0xd2,0xae,0x60, +0xac,0xf9,0xf3,0x0b,0xf9,0x27,0x0f,0x9c,0xc8,0xc8,0x10,0x49, +0x9f,0x56,0x1c,0x39,0x15,0x14,0x22,0x6c,0x51,0x97,0x09,0x02, +0xd8,0x72,0x96,0xd0,0x1f,0x32,0x90,0x50,0x60,0x10,0x8e,0x22, +0xb0,0xae,0x7f,0x20,0x2f,0xfb,0x38,0xb2,0x95,0xd2,0xaf,0xe8, +0xdf,0x63,0x5d,0x5f,0xb0,0x95,0xa2,0x05,0x5b,0xa9,0x79,0xe9, +0xbd,0xd3,0xc5,0x67,0x90,0x67,0xb5,0x19,0xdd,0x29,0xb2,0x95, +0x4c,0x0e,0x7e,0x6c,0x87,0x8c,0xa9,0x59,0x4c,0xd4,0x2a,0xb5, +0xfc,0x2e,0xbe,0x54,0x63,0x9f,0xb2,0x49,0x68,0x6f,0x03,0xd9, +0xb4,0xb6,0x3c,0x70,0xea,0x5a,0xfb,0x80,0x20,0xd8,0xd5,0xfe, +0xa2,0x8e,0x23,0x48,0xe4,0xa1,0x49,0xd4,0x61,0x05,0x29,0x3a, +0x3a,0x67,0xf4,0xe8,0xf0,0x39,0xa3,0x5c,0x1c,0x9a,0xd1,0xb7, +0x3d,0xf9,0x4a,0xae,0x82,0x70,0x7f,0x19,0x0e,0x51,0xd5,0x8e, +0x50,0xb2,0x9a,0xb0,0x07,0x49,0xea,0xd3,0x99,0xe4,0x89,0x91, +0x8f,0x31,0x81,0x89,0xdc,0xe5,0xce,0xb0,0xcc,0xbc,0x90,0x15, +0xe1,0xb2,0x7f,0xa7,0xdd,0x5d,0x68,0x4e,0x1d,0x6b,0x09,0x6b, +0xfe,0xf8,0x2e,0x7b,0xc7,0xa6,0x93,0x65,0x6a,0xae,0x7c,0xb7, +0xb2,0xe4,0xc7,0x1f,0x2a,0x43,0x7b,0xd8,0x66,0xca,0x1f,0x07, +0x84,0x7c,0xd0,0x39,0xe0,0xdc,0x37,0x36,0x1e,0x2e,0xc4,0x26, +0xa5,0xee,0xda,0x99,0xbd,0x27,0x6d,0x9f,0x85,0x6d,0x2a,0xd5, +0x9f,0x0f,0xe7,0xeb,0x3e,0x76,0x84,0xcf,0x0c,0x98,0x17,0x94, +0x37,0xca,0xcc,0xac,0x79,0xb4,0x49,0x23,0xd2,0xd6,0x7c,0xbc, +0x04,0xd2,0xbf,0x8b,0x58,0xb7,0x2c,0x69,0x59,0x9c,0xc5,0x41, +0x5d,0xb1,0x21,0x66,0x5d,0x74,0x5c,0xec,0x0a,0x33,0x35,0x7b, +0xbc,0x16,0x7d,0x50,0xaf,0xed,0xc4,0xa4,0xa8,0xd4,0xbd,0x27, +0x61,0x2a,0x5e,0x83,0x0b,0x1f,0xd6,0x45,0x2a,0x75,0xf2,0xe4, +0x31,0x7b,0x38,0xbf,0x32,0x41,0x74,0x89,0xa9,0x23,0xba,0xe4, +0x67,0x15,0x56,0x5a,0x0f,0x0f,0x98,0x25,0x83,0xfd,0xb4,0x40, +0x68,0x0c,0x4d,0xa8,0xdd,0x11,0x8c,0x21,0x63,0x9e,0xf0,0x25, +0x30,0x4d,0xd4,0xbe,0xda,0xf1,0xd0,0xef,0x23,0x04,0x66,0x7f, +0x52,0xbb,0x2d,0xa4,0xea,0xf2,0x19,0xea,0x75,0x94,0x40,0x6b, +0xac,0x4f,0x71,0xf0,0x3a,0x83,0x70,0x5b,0xfe,0x90,0xca,0x83, +0xea,0x72,0x49,0xda,0x1c,0xda,0x30,0x98,0x0f,0xf5,0x06,0x1e, +0x60,0xab,0xb9,0xcc,0xa7,0x57,0xc6,0x7c,0x18,0x62,0x82,0xfe, +0xd2,0x7c,0x36,0x04,0xa1,0x85,0x8f,0xe0,0xc5,0xd6,0x20,0x2f, +0xd6,0xcb,0x44,0x98,0x3b,0xb5,0xbf,0x43,0x38,0xe0,0x2c,0xa6, +0x8e,0x97,0xc9,0xe0,0xe0,0x6e,0xb6,0x20,0x6a,0xdf,0x98,0x14, +0xd1,0xb7,0x1b,0x90,0x99,0x83,0x3a,0x73,0x98,0x58,0x38,0xa6, +0xf8,0x0a,0x6d,0x18,0x48,0x14,0x18,0x4a,0x90,0xb2,0x34,0x1d, +0xba,0xbc,0xb8,0x49,0x90,0x7a,0x5d,0x13,0xa2,0xb9,0xab,0xdb, +0x7e,0xc8,0xfe,0xf1,0x6f,0xea,0xe2,0x43,0x26,0xc6,0x4d,0xb2, +0xe8,0xbf,0x18,0xf5,0x11,0x4a,0x87,0x13,0x36,0x1e,0x46,0xaa, +0x41,0x41,0x41,0xd0,0x12,0xbc,0x02,0xcb,0xca,0x6c,0x5b,0xe4, +0xf2,0x8a,0x32,0x44,0x80,0x65,0x41,0xc3,0x6c,0x0e,0xd4,0x69, +0x0c,0x1f,0x8d,0xa5,0xe4,0xa8,0x7c,0xbf,0xf2,0xfc,0x0f,0xdf, +0x57,0x8e,0xfc,0xc8,0x16,0x2e,0x7f,0x14,0x30,0xf2,0xc3,0x0f, +0x02,0xce,0xdf,0xb7,0x29,0xd4,0xb3,0x90,0x70,0x74,0xec,0xae, +0xfa,0x81,0x7b,0xed,0x3c,0x82,0xe9,0x8c,0x3f,0xd8,0x74,0xbe, +0x36,0x8e,0x53,0x8f,0x48,0x42,0x1b,0xf7,0x22,0xc3,0x55,0x5f, +0x0e,0xb2,0xc6,0x99,0xfc,0xa5,0x65,0x6c,0x9c,0x6f,0x22,0xb5, +0xf7,0xe0,0x73,0x9d,0xd9,0xb1,0xb9,0x1c,0xf5,0xf0,0x68,0x65, +0x3e,0x87,0x8e,0x73,0x61,0x40,0x1d,0xf3,0xbc,0x0d,0x51,0xf5, +0x25,0x81,0xda,0x12,0x29,0x0f,0xd6,0xaa,0x13,0x12,0x43,0x05, +0x8c,0x9a,0x60,0xee,0x97,0xb1,0x08,0x3e,0x19,0x9f,0x3c,0x2e, +0x79,0x5c,0x8a,0x25,0x92,0xcd,0xf6,0xe1,0xd8,0x73,0x86,0x69, +0xfc,0xc4,0x94,0x89,0xce,0x19,0x81,0xf0,0x80,0x6c,0x67,0x2e, +0xdc,0x2f,0x6d,0x92,0x2b,0x8b,0x0f,0x5c,0xba,0x54,0x32,0x3b, +0xc0,0xb6,0x5c,0x0e,0x08,0x9d,0xed,0xe7,0x17,0x76,0xa0,0x92, +0x4f,0x19,0xd6,0x1e,0xde,0xa7,0x5e,0x6e,0x84,0x3a,0x8f,0x42, +0x3a,0x96,0x76,0xe7,0x92,0x7e,0x47,0xd2,0xe6,0x42,0x43,0xda, +0xe2,0x07,0xcc,0x5f,0xc4,0x13,0xf4,0x25,0xfb,0x85,0xf7,0x0f, +0xaf,0x34,0xa8,0x5a,0x37,0xa9,0x3a,0x82,0x9b,0x9f,0xbf,0x91, +0xa8,0xe5,0xa4,0x96,0xe9,0x3d,0x83,0x98,0xbc,0x52,0xa6,0x8e, +0x6f,0x93,0x23,0xe3,0x11,0x16,0xbc,0x07,0x1f,0xab,0x31,0xd2, +0xf0,0xa9,0x07,0x4b,0x4a,0xf2,0x0e,0x96,0xba,0x6c,0x90,0x2e, +0xe4,0xcd,0x0a,0x0d,0x9d,0x3a,0x6b,0x04,0x07,0x08,0xd1,0x59, +0xcb,0x53,0xa2,0xe2,0x62,0x8c,0x52,0x6c,0x5e,0xe6,0xc9,0x73, +0xd6,0x43,0x3e,0x73,0xe4,0x8e,0xb3,0x42,0xdb,0xf5,0xb4,0xb9, +0x3f,0x8e,0xa6,0x5e,0xbb,0xc9,0xf1,0xac,0x93,0xc5,0xd6,0x83, +0x3e,0xd4,0x2b,0x81,0x5c,0x38,0x7b,0xe6,0xe0,0x69,0x4b,0x66, +0x46,0xf6,0x6a,0x41,0x21,0xf6,0x30,0xdf,0x2a,0x2f,0x3a,0x7d, +0xf0,0x74,0xe6,0x3a,0xc1,0xb9,0x6a,0x03,0xcd,0x0d,0xce,0x15, +0xb2,0x86,0x91,0x4a,0x6c,0x36,0xb8,0xc4,0x48,0x25,0x56,0x68, +0x13,0x47,0xa2,0xb7,0x50,0x7f,0xa0,0xb4,0x80,0x7c,0x00,0x0b, +0x34,0x9d,0xe8,0x03,0x59,0x26,0x75,0x2e,0x22,0x03,0x20,0x82, +0xfb,0xae,0xb8,0x15,0x49,0x6b,0x4c,0xdb,0x4e,0x67,0xe6,0xf3, +0x79,0x3b,0x98,0xcf,0x5b,0x79,0x7a,0x20,0x38,0x80,0xa3,0xed, +0xdc,0xe4,0x8b,0x95,0x27,0xf2,0xf7,0x9e,0xa1,0x4e,0xa7,0x48, +0xbc,0x85,0x99,0xc1,0xbd,0xf8,0x34,0x58,0x98,0x4b,0xec,0x86, +0x98,0xd4,0xe5,0xb1,0x16,0x38,0x56,0x81,0x76,0xcf,0xde,0x17, +0xce,0x0b,0xbb,0xc7,0x5d,0x05,0x9c,0xb5,0xe3,0x47,0x1c,0xd9, +0xd0,0xba,0x8a,0xa6,0xf3,0x47,0x84,0x9b,0x9e,0x2f,0x5f,0xc6, +0x90,0xe5,0x6c,0x4d,0x7f,0xd8,0xc2,0xcd,0x0e,0xa5,0x0a,0xd1, +0x7e,0x63,0x12,0xb5,0x8f,0x21,0x43,0xab,0x42,0xfe,0xa4,0xd4, +0x9f,0x0f,0xae,0x92,0x8e,0x57,0xfd,0xa1,0xd9,0x60,0xc6,0x19, +0xc4,0x38,0xfe,0x44,0xf6,0x57,0x60,0x65,0x78,0x22,0x87,0xca, +0x11,0xeb,0xe2,0x92,0x96,0x51,0xcf,0xc7,0xa4,0x8e,0xbf,0xbc, +0x5b,0x8a,0x0d,0xf2,0x9d,0x0a,0xb3,0x83,0xb0,0x34,0x6c,0x3d, +0x7e,0xff,0x60,0xf1,0x21,0xfb,0x54,0x69,0x53,0xe6,0xb6,0x94, +0x2d,0x89,0x6c,0x8f,0x97,0x39,0xb7,0xd4,0xe0,0x8b,0x51,0xaf, +0x2e,0x1c,0x11,0x81,0x0f,0x9a,0xa3,0xc4,0x0e,0xd4,0xba,0x8a, +0x1b,0xa1,0xd9,0xa1,0x61,0xe1,0xb3,0xb9,0x11,0x12,0x90,0x6a, +0x18,0x8c,0x40,0xcb,0xab,0xfd,0x51,0x93,0x53,0x5b,0x4a,0xa0, +0xb1,0x4e,0xd5,0x8b,0x94,0x2e,0x27,0xc1,0xba,0x1c,0x58,0x53, +0x56,0x21,0xeb,0x3f,0xb3,0x21,0xd4,0xe6,0x8b,0xf1,0x65,0x4b, +0x66,0xf6,0xd5,0x2d,0xec,0x10,0xb5,0x06,0x12,0xfe,0xc6,0x4d, +0xe4,0x3e,0xe8,0x57,0x84,0x55,0x53,0x4b,0x29,0x07,0x3f,0xb4, +0x49,0x14,0xa1,0xcd,0x16,0x10,0xd7,0x85,0x98,0x3e,0x69,0x67, +0x64,0xc7,0xde,0xc4,0xec,0xd8,0x1b,0xec,0x13,0xb4,0x68,0xce, +0xdc,0xa2,0xd1,0x46,0x7e,0x44,0x1f,0x0e,0xcd,0xa8,0xb3,0x46, +0xfe,0xb7,0x6c,0x4c,0x9d,0xef,0x12,0xa3,0x62,0x8c,0xfe,0x20, +0x98,0x9a,0x3f,0x27,0xd4,0xc1,0x97,0x63,0xc0,0x69,0x43,0xb9, +0x19,0x31,0x53,0xbb,0x47,0x24,0x96,0xbd,0x45,0xed,0x62,0x08, +0x2c,0x05,0x1f,0x4a,0x5d,0xf9,0xf7,0x0b,0x09,0x16,0xf6,0xa8, +0xd5,0x1f,0x33,0xed,0x32,0x1f,0xc4,0x16,0xd0,0x4a,0x98,0x11, +0xf4,0x1d,0x75,0xc5,0x70,0xd7,0x2f,0x0d,0xf0,0x19,0xfb,0x94, +0xb6,0x98,0x46,0xaa,0xae,0x9c,0x16,0xd6,0xa6,0x8d,0x00,0x99, +0xe8,0xa1,0xa6,0xf1,0x55,0x78,0x8c,0xda,0xf8,0xb2,0x32,0x55, +0x92,0x3f,0xd9,0xbc,0x72,0x2a,0xcf,0x45,0xaa,0xce,0x37,0xea, +0xd6,0xf5,0xdb,0x92,0x05,0x55,0xc7,0x8a,0x54,0x9d,0x5c,0xe6, +0x14,0x91,0xb1,0x2c,0x79,0x69,0xac,0x41,0xcc,0x3c,0x72,0x6c, +0xd3,0x29,0xa4,0xeb,0x2c,0x91,0xdb,0x0f,0x32,0xe8,0x2c,0x82, +0xae,0x73,0xa2,0x2c,0xdf,0xc2,0x17,0xf7,0x39,0xd3,0x8a,0xb9, +0x63,0x13,0x46,0x3b,0xc7,0xb3,0x96,0xac,0x09,0x87,0x02,0x90, +0x45,0xed,0x7e,0x27,0x27,0x54,0x70,0x66,0xee,0xac,0x69,0x29, +0x84,0xc0,0x5a,0x36,0x5e,0x12,0xf0,0x60,0x07,0xbb,0x52,0x1b, +0x42,0xc0,0x5f,0xff,0x98,0x23,0x83,0xd1,0xe4,0xc7,0x7d,0xe4, +0x3e,0x8f,0x8d,0xba,0xfc,0xa7,0x0f,0x14,0x61,0x18,0x97,0xc3, +0x9e,0xf5,0x91,0xe0,0xa8,0x9d,0xde,0x85,0x99,0xb4,0x2e,0x98, +0x3f,0xe9,0xf5,0x77,0x1f,0x38,0x25,0x52,0xe1,0x0f,0xf9,0x5f, +0x0e,0x20,0xb7,0xf5,0x4d,0xe4,0xb6,0x52,0xb7,0xb1,0xf5,0x44, +0x73,0xb6,0x10,0x12,0x6f,0xb2,0x8b,0xb4,0x21,0x77,0xed,0x89, +0xb7,0xd8,0x45,0xe4,0x8e,0x50,0xfb,0x29,0xa4,0x52,0x60,0x1d, +0x45,0x4d,0xa4,0x0e,0xcb,0x08,0xb7,0x78,0x2f,0xbf,0x25,0xe5, +0xe6,0x85,0x2f,0xa6,0x13,0x4c,0xab,0x26,0x52,0xcf,0xb3,0x84, +0x7d,0xfc,0xf2,0x05,0x3a,0x9b,0x11,0xda,0xd2,0xcb,0x1c,0xfd, +0xec,0x14,0xe8,0x07,0xa9,0x25,0xf6,0xc9,0x84,0xdd,0x12,0x49, +0x8b,0x75,0xb7,0xd8,0x97,0x02,0x49,0x3c,0x13,0xb4,0xd6,0x67, +0x06,0xad,0xf5,0x51,0x1d,0xad,0xd5,0x73,0xb2,0x1f,0x34,0x6a, +0xab,0x17,0x90,0xff,0x14,0x5e,0x67,0x56,0x2b,0x6b,0xbd,0x58, +0x05,0x87,0x69,0x83,0x41,0xf1,0xa2,0x8e,0x17,0x09,0x6b,0x4f, +0x9b,0xa0,0xbe,0x88,0x9f,0x75,0x3d,0xbb,0x4d,0x4d,0x12,0x81, +0x10,0x84,0x44,0xda,0x7b,0xda,0x25,0x35,0x0d,0x69,0x42,0xab, +0xb7,0xc5,0x59,0x58,0x3e,0x78,0x9d,0x2a,0x83,0x43,0xcc,0x39, +0x32,0x93,0x8f,0x78,0x8c,0x65,0x7e,0x64,0x02,0x66,0xbe,0x36, +0xe5,0x97,0x59,0xf7,0x7a,0x2f,0x90,0x5b,0x51,0xaf,0x07,0x84, +0x39,0x97,0xfe,0x7c,0xfa,0x62,0x21,0x1f,0x6d,0x24,0xc3,0x2c, +0x11,0x64,0x98,0x56,0x7a,0x0c,0xf4,0xaf,0xbb,0x10,0xea,0x99, +0x85,0x99,0x80,0xec,0xac,0x9c,0x94,0xf5,0xf1,0x2c,0x08,0xa8, +0xf9,0x5c,0x21,0x04,0x28,0xc8,0x11,0xae,0x7d,0x03,0xab,0x83, +0x1c,0xcd,0xad,0x5e,0x8c,0x64,0x3a,0x01,0xe5,0xae,0xf0,0xe0, +0xc7,0x41,0x41,0xe8,0x42,0x4d,0x8d,0x09,0xc4,0xdf,0xd0,0xf6, +0xf8,0x50,0xa7,0x38,0xa2,0x4f,0xb9,0x2e,0x41,0x43,0x45,0x5d, +0x08,0xed,0x61,0xf1,0x0a,0x98,0x79,0x1b,0x47,0x67,0xb6,0x36, +0xe7,0x8a,0x7e,0x96,0xda,0x0f,0x21,0x7a,0x7f,0x8e,0x19,0x6f, +0xb1,0x37,0x68,0x93,0xbf,0x30,0xa5,0xef,0x6f,0xe2,0xf0,0x72, +0x09,0x0f,0xcc,0xdf,0x77,0x51,0x56,0x75,0xff,0x28,0xa5,0x9b, +0x73,0x7a,0x40,0xed,0x12,0xa2,0xe0,0xc7,0x46,0xdf,0xfa,0x47, +0x7c,0xaa,0x72,0x43,0x42,0xa9,0x79,0xa1,0xf6,0x0f,0x19,0xe6, +0x83,0x79,0x81,0xe3,0x58,0xc2,0xcd,0x61,0xc9,0xf0,0x43,0x00, +0xdb,0x02,0x4d,0x21,0x07,0xd2,0x5f,0x68,0x58,0x3d,0xe7,0xf0, +0xe9,0x3e,0x47,0x55,0x1e,0x43,0x48,0x3d,0xf2,0x71,0x62,0x0d, +0xfa,0x2a,0xd4,0xab,0x35,0x79,0x57,0x8f,0x84,0xd9,0x75,0xa3, +0xf8,0x40,0x8c,0xe2,0x44,0x1c,0x45,0x1e,0x7a,0xde,0x11,0xfa, +0x17,0xfe,0xe5,0x49,0xd4,0xfe,0x02,0xd1,0xfc,0x89,0x76,0x86, +0x63,0xd7,0x9a,0x58,0x6d,0x8f,0xca,0x12,0x7b,0xeb,0x7b,0xaa, +0xd9,0x42,0x66,0xbe,0xcc,0xd1,0x47,0xac,0x76,0x50,0x65,0x31, +0xbd,0xf5,0xac,0x6a,0x36,0x03,0xcb,0xad,0x48,0x2f,0x6c,0x5b, +0x4f,0x2f,0x7c,0xe7,0x36,0x7b,0x82,0xf4,0xc2,0x17,0xe7,0x08, +0x1c,0x11,0xf4,0x7e,0x27,0xa4,0xf7,0x53,0x77,0x33,0x51,0x5a, +0xc1,0x02,0xff,0x9a,0xb2,0x2a,0x59,0xdf,0xf6,0x4c,0x65,0x11, +0xad,0x44,0x45,0x99,0x34,0x21,0xbb,0x91,0xaf,0xc0,0xcf,0xba, +0x49,0x65,0x6b,0x7b,0xeb,0x7a,0x35,0x87,0xc2,0x78,0x56,0x7e, +0x64,0x9e,0xca,0x0a,0x7a,0xd7,0xbe,0x57,0xcd,0x2e,0x8b,0x23, +0x1d,0x89,0xfe,0xc3,0x0d,0xed,0x07,0xa4,0x47,0x68,0xab,0x58, +0x89,0x3a,0x9a,0xcd,0x9e,0x50,0xad,0x55,0xf4,0xd6,0x67,0xf2, +0x6b,0xf0,0x01,0x0f,0x98,0xcc,0xdc,0xfb,0xeb,0xed,0xd9,0x1f, +0x92,0xa2,0xdf,0xe4,0x06,0x4a,0x30,0x19,0x77,0x54,0xb3,0x07, +0xc8,0x64,0x54,0xb5,0xe5,0x06,0xab,0x91,0xbb,0xfb,0x1a,0x6f, +0xf2,0x4f,0xfa,0xd3,0xec,0x7b,0xec,0x4f,0x32,0xac,0xab,0xd0, +0xbd,0x5c,0x34,0xe8,0x0a,0x1c,0xbb,0xf7,0x86,0x3e,0xda,0x62, +0xe1,0xb0,0x4e,0xf0,0x4f,0xf2,0x19,0x71,0x90,0xcf,0x08,0x21, +0xc0,0xf1,0x75,0x4e,0x57,0x9c,0x33,0x06,0x9b,0x38,0x50,0x9c, +0xb3,0x61,0x0f,0x7b,0xd7,0x25,0xa1,0x4a,0xc1,0xcf,0xed,0xc0, +0x61,0x12,0xa0,0x72,0xe2,0x6d,0x6d,0xa2,0x2c,0xe4,0x0a,0x6b, +0xab,0xd9,0x97,0x28,0x57,0xc0,0xbf,0xe7,0x23,0x23,0xbf,0x4b, +0x34,0xbc,0xb1,0x02,0x1a,0x72,0xa0,0xa3,0x06,0xc7,0xf6,0x8f, +0xef,0x8d,0x2f,0xc0,0xd1,0x8b,0x39,0xca,0xfa,0x24,0xa5,0x66, +0x0a,0xdb,0xa1,0xde,0xd6,0x92,0xfb,0xf0,0x63,0x16,0xfe,0xac, +0x2c,0xb2,0x02,0xbe,0x43,0x18,0x77,0x0b,0xb3,0x94,0x2a,0xe9, +0x7a,0x65,0x66,0xf6,0x21,0x17,0x54,0x26,0x75,0x64,0x54,0x28, +0x93,0x50,0xa3,0xa4,0xe6,0x6c,0xe5,0xaf,0x54,0x76,0xb5,0x1c, +0xae,0x4a,0x2c,0x05,0xd9,0x8f,0x87,0x38,0x4c,0x8a,0xf2,0xc6, +0x57,0xd7,0xf9,0xab,0x50,0xf1,0xea,0x33,0xfe,0x2a,0x41,0xbc, +0x5a,0xc7,0x5f,0x6d,0xe4,0x20,0xea,0xf3,0x2f,0xd2,0xd6,0x5c, +0x75,0x41,0x35,0x51,0xdf,0x32,0x15,0x72,0x95,0xe5,0xe8,0x92, +0x96,0xc5,0x24,0x2a,0x8b,0x49,0x86,0x9f,0x89,0x7d,0xa2,0x70, +0xbb,0xb6,0x48,0xd0,0x11,0xf1,0x5b,0x1b,0xf9,0xb7,0xd6,0x79, +0x23,0x8f,0xc3,0x4f,0x65,0x53,0x95,0x99,0xdc,0xce,0x09,0xc5, +0x56,0x63,0x1e,0xf4,0x2b,0xe0,0x42,0xf4,0x49,0xda,0x62,0x6f, +0xac,0xf3,0x74,0x8e,0x6f,0x8b,0xf7,0x34,0x3c,0x76,0x40,0x42, +0xef,0x44,0x7b,0x45,0xfb,0x50,0xf2,0xbe,0xa4,0xc2,0x16,0xe5, +0x7d,0x5d,0x16,0x0f,0x1d,0xb5,0x4d,0xbd,0x13,0x3e,0xe0,0xe8, +0x2d,0x7e,0xce,0xb8,0xc4,0x10,0xfe,0x7f,0x10,0x9b,0x5c,0x26, +0xeb,0x31,0x8a,0xd6,0x5e,0xc8,0x3f,0x36,0xe0,0x43,0xdd,0xad, +0x86,0xb2,0xd9,0x0a,0x73,0xb8,0xc2,0xdd,0x87,0xc2,0x5c,0xaf, +0xc8,0xf0,0x8c,0x8f,0xb9,0x9f,0xe9,0xee,0xbd,0xb4,0x35,0x5f, +0xbb,0x20,0xac,0x76,0x66,0x41,0x7d,0xf5,0xa0,0x5b,0xfc,0x3e, +0xbe,0x14,0xf7,0xc1,0x83,0x67,0x8e,0x95,0x02,0x15,0x16,0x71, +0x49,0xd2,0xbb,0x0a,0xd6,0xe9,0x0a,0xe4,0x8b,0xaa,0x91,0x03, +0xbd,0x62,0xda,0x38,0xcf,0x57,0x6e,0x48,0xf7,0x6f,0x64,0xad, +0x3f,0xe1,0x22,0x0a,0x43,0xfe,0x58,0x18,0xe2,0x80,0x70,0x3b, +0x07,0x84,0x29,0xbd,0xf0,0x06,0x4f,0xf0,0x1b,0xc4,0x3b,0x80, +0x5d,0x43,0xd8,0x2e,0xa1,0x02,0x09,0x40,0x15,0x88,0x31,0x51, +0xcf,0x28,0x45,0xa3,0xd8,0xf5,0x2a,0x28,0x41,0x68,0x99,0xa2, +0x32,0x2b,0x7f,0xb8,0x51,0x55,0x7a,0x94,0x52,0xa3,0xb0,0x83, +0xea,0x33,0x25,0x2a,0xd6,0x12,0x83,0x25,0x4a,0x24,0x97,0x44, +0x27,0xc7,0xd8,0x94,0x47,0x2f,0x96,0xb3,0x24,0xf5,0x26,0xd6, +0x98,0x8e,0xaa,0x8f,0x94,0x47,0x12,0xeb,0xd6,0xec,0x91,0xf2, +0x57,0x7f,0x7d,0xd0,0x75,0x49,0x31,0x21,0x01,0x35,0x16,0x5a, +0x3b,0x2b,0x96,0xb8,0x04,0x2c,0x19,0x59,0x4e,0x04,0x9b,0xd8, +0x11,0x85,0x8d,0xeb,0xab,0x4f,0xb9,0xa5,0xe8,0x39,0x77,0xb5, +0x1c,0x59,0x61,0xad,0x58,0xcb,0x72,0x7e,0x1d,0x3b,0x90,0xc6, +0xa1,0xac,0x5d,0x97,0xb2,0x36,0x89,0xf1,0xa3,0x73,0x2a,0x20, +0x5f,0x61,0x73,0x2b,0xa0,0x40,0x81,0x4d,0x0f,0x25,0x07,0x13, +0x0b,0x61,0xe1,0x59,0x82,0x81,0xca,0xcf,0x14,0xc0,0x66,0xb7, +0x86,0x4f,0x14,0xad,0xbf,0x04,0x1b,0x15,0x88,0xb8,0xad,0xad, +0xe7,0x4b,0xeb,0x1d,0x72,0xe4,0xd4,0xfa,0xd3,0x17,0x84,0x58, +0xb1,0xcd,0x88,0x00,0x48,0x6d,0x89,0x29,0x7f,0x4b,0xd9,0xfd, +0xfc,0x92,0x02,0x4b,0x5a,0xea,0xc6,0xac,0xcd,0x29,0x5b,0xe2, +0x31,0xe5,0xdf,0x52,0xa4,0xfc,0x2d,0xd4,0x69,0x0a,0x51,0x63, +0xd9,0x51,0x1f,0x28,0xa6,0x8d,0x75,0xc2,0x9a,0xaa,0xec,0xad, +0x04,0x69,0x42,0x44,0xc4,0x27,0x53,0xac,0x83,0x2b,0x43,0x9e, +0xff,0x59,0x79,0xee,0xea,0xf1,0x88,0x43,0xd4,0x2b,0x8e,0xc0, +0x0c,0x75,0x99,0x34,0x62,0xca,0xfe,0xa2,0xb3,0xc7,0xf7,0x5f, +0x70,0xd9,0x2c,0x9d,0x3f,0x3e,0x67,0xf4,0xa8,0x29,0x73,0x46, +0xf2,0xe8,0x8c,0x4d,0x2a,0xbb,0x4f,0xe0,0xaa,0x1a,0xf7,0xdb, +0x2b,0x5c,0xd3,0x0e,0x26,0x43,0x97,0x57,0x09,0x61,0xeb,0xcb, +0x48,0xf2,0x08,0x29,0xe7,0x91,0x33,0xa7,0x58,0xfd,0xca,0x43, +0x7e,0xfb,0xbd,0xfc,0xdc,0xa5,0xe3,0x91,0xb9,0x75,0x94,0xf3, +0x0e,0x6a,0xb4,0x14,0x16,0xbe,0xaf,0xb0,0xf0,0xe8,0xbe,0x62, +0x97,0x1c,0xa9,0xf8,0xe8,0xdc,0x31,0x63,0xc2,0xe7,0x86,0xb9, +0x38,0xd4,0xec,0xe7,0x6b,0xac,0x9f,0xbe,0xf2,0xa6,0x04,0xad, +0x98,0xa9,0xe6,0x1a,0x5f,0xb8,0x85,0xe3,0xcf,0x9d,0x3d,0x9a, +0xb7,0xfb,0xf8,0xcb,0xd3,0x1c,0x8e,0x42,0x23,0xf3,0xd9,0xd3, +0x47,0x8f,0xed,0xc9,0x5b,0x0b,0x6f,0x13,0x20,0xe6,0x82,0x7c, +0xd7,0xbf,0xe3,0x68,0x93,0xc3,0x64,0xeb,0xa1,0xf5,0x47,0x52, +0x4f,0x5a,0xfe,0xbe,0x00,0x49,0x23,0x6e,0x48,0x49,0x03,0x16, +0x8c,0x09,0x18,0x3e,0xf4,0x73,0x73,0x5c,0x76,0xcc,0xea,0xd8, +0x84,0x58,0x01,0x3e,0x36,0x1d,0xca,0x3c,0x72,0xc2,0x7a,0x0d, +0x3f,0xc1,0x1a,0x48,0xc9,0x1f,0x85,0x87,0x75,0xe8,0x66,0xaf, +0xdd,0xee,0x40,0x9d,0xb6,0x93,0x9b,0x7d,0xbd,0xa9,0xe3,0x87, +0x44,0xb0,0xa5,0xa8,0x13,0x9f,0xf2,0x8d,0x68,0xc3,0xbf,0xb9, +0x79,0xa5,0xc5,0x64,0xa8,0x9c,0xd4,0xf5,0x83,0xe4,0x2e,0xce, +0xe9,0xc3,0x28,0x5d,0xca,0x4d,0x72,0x0b,0x33,0x11,0xbc,0x8a, +0x48,0x2a,0x1f,0xe0,0x30,0x61,0x22,0x81,0x22,0x35,0x9a,0x6d, +0xf5,0x81,0xc3,0x2f,0x4a,0xc8,0xf2,0x69,0xbe,0x11,0x03,0x9d, +0x79,0xbc,0x6b,0x52,0x4b,0xf5,0x5e,0xc3,0xd9,0x5b,0x89,0x32, +0xf5,0xb0,0x92,0xdc,0x89,0x78,0xdf,0xed,0xf9,0x7d,0x2f,0xe3, +0xf1,0xee,0xbe,0xb3,0x85,0x1c,0x61,0x3d,0x21,0x63,0x46,0x4f, +0x99,0x3b,0x02,0x59,0xe5,0x75,0x3c,0x3a,0x6a,0xb9,0x4e,0x6a, +0xfe,0x46,0x5e,0xc9,0xa3,0xbe,0xed,0x21,0x00,0xff,0x59,0x89, +0xc9,0xed,0xe6,0x03,0xc9,0x07,0xd4,0x35,0x97,0xbf,0x6a,0x34, +0x81,0x70,0x6c,0x85,0xbc,0x9a,0xb7,0xdd,0x30,0x82,0xa2,0x6e, +0xfe,0x82,0x82,0x8e,0xbc,0xc0,0x68,0x33,0xb5,0x1e,0xc7,0xa4, +0x6a,0xfc,0x6f,0x6c,0x2a,0x9b,0x86,0x8c,0x3a,0x51,0x6b,0x17, +0x85,0xb7,0x37,0xb1,0xf0,0x96,0x81,0x85,0x37,0x0c,0x9f,0xfc, +0x69,0xa3,0x56,0x1c,0x3f,0x88,0x0a,0x1c,0x62,0xe5,0xb4,0x1d, +0x87,0xb3,0x8f,0xa4,0xe5,0xd7,0x51,0x9e,0x3e,0x1a,0x13,0x06, +0x8d,0x3a,0x71,0xac,0xfc,0xc5,0xf9,0x82,0x13,0x07,0x8e,0x67, +0xa4,0x0b,0x02,0x4a,0x2b,0x68,0x62,0xce,0xa7,0x5e,0x94,0xb0, +0xa8,0x81,0x90,0xb4,0x83,0xc3,0x99,0x6b,0x3c,0x7a,0xd0,0x33, +0x88,0x27,0xd1,0x97,0x56,0x4b,0xd0,0x8e,0xd1,0x9a,0xeb,0x68, +0x67,0x17,0xc3,0xa6,0xeb,0xec,0x6b,0x43,0x9e,0xf6,0x1e,0x46, +0x5a,0x29,0x46,0x26,0x78,0x8d,0x69,0x7b,0x5e,0xe6,0xa9,0xf3, +0x42,0xa2,0xe6,0x39,0x15,0x8b,0xfc,0x76,0xb6,0x92,0xb1,0x97, +0x2f,0x9e,0x39,0x7d,0xe0,0x34,0x16,0xf9,0x93,0xd3,0x57,0x32, +0x57,0x1e,0xa9,0xa3,0x44,0x0d,0xd3,0xb3,0xa3,0xab,0xff,0xa1, +0xce,0xb9,0x75,0xb7,0x9a,0xca,0x52,0x30,0x3d,0x5d,0x41,0x1b, +0xef,0x27,0x1f,0x11,0xf0,0x85,0xb9,0xd4,0x9e,0xc7,0x0b,0x5f, +0xf7,0xd1,0x9b,0xbf,0x3c,0xcf,0xe3,0x93,0x89,0x5a,0x57,0x75, +0xc7,0x57,0x1b,0xef,0x3f,0x07,0x2f,0xe2,0xb1,0xac,0xeb,0xe2, +0xde,0xf6,0x70,0x5c,0xfa,0xec,0x9b,0xad,0x0f,0x9e,0x5b,0xcb, +0x6b,0x54,0xe2,0xb1,0xa4,0xfb,0xdc,0x9e,0xf6,0x90,0x84,0xc1, +0x05,0x6c,0x1a,0xc1,0x36,0x49,0x7a,0x73,0xc8,0x53,0x8b,0xc7, +0x3e,0x38,0x56,0x76,0xe0,0xe8,0x41,0x4b,0x4e,0xc6,0xc6,0x94, +0x9c,0x95,0xcc,0xff,0x7d,0xa4,0x18,0x0c,0xbc,0xbb,0x34,0x23, +0x7a,0xf5,0xf2,0x38,0xcb,0xd2,0xd8,0xc4,0xb4,0x1d,0x7b,0xd6, +0x7f,0xb6,0xe6,0x80,0x85,0x05,0x9f,0xd7,0xc7,0x8c,0x64,0x23, +0xa4,0x15,0x41,0x23,0x26,0x41,0x27,0x7f,0x7b,0xed,0xc2,0xc7, +0x82,0xc1,0xe6,0x95,0x68,0xff,0x73,0xbf,0x0e,0xb4,0xe1,0x73, +0x32,0x1c,0x3d,0x39,0x6d,0x98,0xcf,0xe7,0x8e,0xda,0x33,0xf6, +0xdd,0x78,0xf7,0x44,0xfb,0x2a,0x4a,0x8b,0xc8,0x10,0xea,0x94, +0x43,0xf8,0xdc,0x59,0xc6,0x7f,0x3b,0x81,0x35,0xe0,0x9e,0x65, +0x3e,0xea,0xc5,0xc2,0x5d,0x61,0x0a,0x77,0x43,0xaf,0x8a,0x7d, +0x56,0x2c,0xf6,0xed,0x07,0x51,0x31,0x3c,0x4d,0x06,0x64,0x2d, +0x81,0x06,0x26,0x20,0xd2,0x12,0xd6,0x60,0xc0,0x8a,0xcf,0x5a, +0x9b,0x3a,0x86,0x6a,0xfd,0x70,0xdd,0xd3,0x86,0x76,0x04,0x0e, +0xd1,0x26,0xb7,0x09,0x8b,0x30,0x0f,0xc8,0x88,0x80,0xf8,0xe9, +0x49,0xd3,0x92,0xa7,0xa5,0x58,0xa2,0xd8,0xaa,0xfe,0x89,0xdb, +0x20,0x9e,0x7a,0xc4,0x93,0x6d,0x4c,0xe6,0xd3,0xb8,0xc9,0x1d, +0x02,0x87,0xb5,0x9b,0x84,0x45,0x9a,0xfb,0x66,0x2c,0x80,0x04, +0xda,0x30,0x83,0xb0,0xa4,0x7e,0x89,0x7b,0x20,0xde,0x94,0x32, +0x7e,0xe2,0xea,0x09,0x68,0x74,0xd9,0x28,0x36,0x23,0x6b,0x1b, +0x73,0xe3,0x6e,0x06,0xf6,0x06,0xb0,0xbd,0x12,0x7c,0x00,0x87, +0xd4,0xf5,0xd9,0x1b,0x93,0x37,0x24,0xb0,0xe1,0xfc,0x99,0xf3, +0xb0,0x28,0x88,0xd9,0x2f,0xcb,0x8a,0x4a,0x13,0xdc,0xc9,0xc4, +0x35,0xbb,0x85,0x26,0xcc,0xc2,0x42,0x2b,0xf5,0xf0,0x00,0x36, +0x5a,0x12,0xd2,0xb0,0xce,0x28,0x0d,0x7b,0x50,0x2f,0x0d,0x83, +0xcd,0xc3,0xd9,0x66,0x49,0x37,0xc3,0x49,0xb5,0x64,0xdc,0x83, +0xa3,0x65,0x07,0x29,0x21,0x24,0x01,0x87,0xb7,0xa4,0x10,0x06, +0xdc,0xa5,0x4d,0x02,0x08,0x8e,0x6b,0xda,0x41,0x3e,0xae,0x17, +0xf4,0x71,0x23,0x58,0x88,0x14,0x3f,0x6c,0xf8,0x64,0xe8,0x34, +0xd4,0x5e,0xab,0x1c,0x40,0x5d,0x0f,0xf3,0xa1,0x7a,0x92,0x28, +0x4d,0x8c,0x88,0x98,0x31,0xd9,0x3a,0xb8,0x62,0xe4,0xd3,0xa7, +0x15,0xe7,0xaf,0x9e,0x88,0x38,0x8c,0xab,0xe8,0x69,0x7d,0x01, +0xf0,0x2e,0x39,0x36,0x27,0xcc,0x28,0x00,0xbe,0x68,0x47,0x3a, +0xab,0xde,0xb1,0x22,0xc9,0xf8,0xb8,0x4f,0x6b,0x39,0x89,0x36, +0xfa,0x85,0x3f,0x0b,0xf3,0x1b,0x48,0x7d,0xf5,0x56,0x63,0x36, +0xf0,0x89,0x1e,0x8b,0x99,0x0b,0x97,0x5a,0x52,0x51,0x71,0xaa, +0x60,0x7f,0x3e,0xb5,0x9f,0x49,0xc0,0x1d,0x29,0xaf,0x46,0x55, +0xa6,0x31,0x26,0xe7,0xd4,0x48,0x6e,0x2d,0x22,0xa3,0x16,0x2e, +0x35,0x53,0xfb,0x38,0x12,0xe2,0x0b,0x49,0x86,0xb0,0xac,0x59, +0x95,0x28,0x77,0x6c,0x5a,0xbf,0x09,0xcb,0x1d,0xdb,0x84,0xb0, +0x8c,0x03,0x28,0xbb,0x5a,0xc2,0x5f,0xf2,0x3b,0x22,0xcc,0x23, +0x2e,0x27,0x6a,0x0d,0x78,0x90,0x82,0xec,0xe2,0x4b,0xd6,0x2f, +0x7d,0x86,0xc8,0x1e,0xf3,0xfd,0x06,0x74,0xb7,0xf9,0xfc,0x18, +0xb7,0x21,0x3a,0x2d,0x7a,0x85,0x25,0x21,0x91,0xdb,0x9f,0x2d, +0xf9,0x99,0x85,0x95,0xd4,0xed,0x1e,0xd9,0x73,0xce,0x22,0x24, +0xfa,0x2b,0xb9,0xa9,0x31,0xa3,0x74,0xe0,0x00,0x6b,0x45,0x5d, +0xee,0x11,0x7e,0x05,0x37,0x58,0x0b,0xda,0x38,0x0f,0xc5,0xfd, +0xf5,0x89,0x2c,0xea,0xfa,0x39,0xe1,0x21,0x73,0x01,0x75,0xf3, +0xf8,0x97,0xf8,0x9a,0x3c,0x00,0x36,0xf0,0x25,0x48,0x83,0x90, +0xb4,0xd3,0x57,0x0d,0x0d,0x0a,0x83,0x56,0xd0,0x2a,0xb0,0xb8, +0xc4,0xb6,0x51,0x3e,0x57,0x51,0xcc,0xdd,0x4b,0xab,0xb2,0xb0, +0x10,0x1b,0x47,0xbc,0x0d,0x1f,0x90,0x4d,0x5f,0x67,0xde,0x7d, +0x68,0x7d,0xa0,0xf7,0x0a,0x60,0xff,0x2c,0x93,0x67,0xa6,0xcc, +0x4a,0x99,0x63,0xd3,0x1b,0x47,0x65,0x06,0x6a,0x6f,0x6c,0x59, +0x35,0x39,0x71,0xca,0x8a,0x29,0x96,0x15,0xe0,0x08,0xae,0xab, +0x80,0xbe,0xac,0x24,0x58,0x4c,0x8a,0x4b,0x16,0xf6,0x64,0x65, +0xda,0xbe,0x83,0xd9,0x87,0x5f,0x2f,0x26,0xad,0xf4,0xf6,0x0b, +0x83,0x88,0x3e,0x58,0x4c,0x6a,0x56,0x78,0xef,0x58,0x71,0xde, +0x9a,0xd7,0x8a,0x49,0x0e,0xa2,0x98,0x44,0x1b,0xb5,0x27,0x0b, +0x5f,0x96,0x72,0xcb,0xf8,0x17,0xf9,0x05,0x99,0x34,0xd5,0x70, +0x03,0x82,0x08,0xbf,0x33,0x2f,0xda,0xec,0x3f,0xb8,0xfe,0x82, +0xda,0xf5,0x6a,0xe5,0xf9,0xb8,0x17,0x0b,0x62,0xc3,0x1e,0x7d, +0xf5,0xfc,0x59,0xfb,0xaf,0x60,0x98,0x0b,0x1b,0x0f,0xfe,0xea, +0xf0,0x61,0xc3,0xc1,0x0b,0x5a,0x52,0xa7,0xd6,0x84,0x03,0x23, +0xaf,0xf2,0x11,0x41,0x36,0x3e,0xca,0x85,0xe4,0x5b,0x2a,0xeb, +0xa4,0x8b,0xbc,0xaa,0x7f,0x9f,0x14,0xea,0xc4,0xa3,0xd9,0xc7, +0xac,0x3b,0xb5,0x9f,0xc1,0x4f,0x35,0x35,0x71,0xfc,0xca,0xb1, +0xab,0xec,0xb7,0xdc,0xdc,0xf0,0xfd,0x43,0xeb,0x35,0xbd,0x5f, +0x00,0x83,0x25,0x72,0x4a,0xdb,0xe8,0xee,0x91,0x03,0xec,0xe3, +0x39,0x2c,0x6c,0xb1,0x0a,0x2c,0x3f,0x13,0xc1,0x1b,0xdc,0x5a, +0xcd,0x56,0xd0,0xa6,0x65,0x44,0xe1,0xe6,0x2a,0xae,0x5a,0xaa, +0x5d,0xcc,0x86,0xd7,0x0c,0x47,0x26,0xfb,0x3a,0x02,0x67,0xe8, +0x3b,0x39,0x02,0x2e,0x62,0xbd,0x0a,0xe1,0xe2,0x9f,0x77,0x04, +0x5c,0xa4,0x1c,0x2e,0x22,0x0e,0xc4,0xf2,0xe7,0x1d,0x35,0xee, +0x4f,0xbd,0x01,0x61,0xd3,0x5a,0x71,0x3f,0xd7,0xe3,0xc5,0x04, +0xc2,0xdc,0xd4,0x0b,0xba,0xe3,0x88,0xc7,0x2b,0x51,0x57,0x35, +0x63,0x92,0x75,0x48,0xf9,0x48,0xee,0xe4,0xce,0x5f,0x39,0x11, +0x79,0xb8,0xce,0xc9,0x7d,0x20,0x9c,0xdc,0x81,0xb3,0x45,0x47, +0xf7,0x1b,0x4e,0x6e,0xce,0xa8,0xd1,0xe1,0xa8,0xab,0x7a,0xdd, +0x67,0x50,0xf5,0x21,0x31,0x2e,0x49,0xff,0x5c,0xb3,0xd6,0x1c, +0xe1,0x60,0xe0,0x31,0xb7,0x7d,0xb7,0xff,0x79,0xd1,0x8a,0x9b, +0x35,0x3f,0xed,0x43,0x75,0xeb,0xd7,0x1b,0x7f,0xf9,0xd3,0x7a, +0x41,0xaf,0x1e,0xa2,0xa5,0xa6,0xc8,0x29,0x2d,0xa3,0xbb,0x46, +0xf4,0xb6,0xd7,0xef,0xa1,0xf6,0x44,0xc2,0xb0,0x9c,0xcd,0xd0, +0xaf,0xf9,0x69,0xab,0x3a,0xe8,0x71,0xd0,0x55,0x50,0x19,0x05, +0xc1,0x89,0x5a,0xbd,0x09,0x9c,0xec,0x86,0x35,0xf3,0xad,0xc4, +0x41,0xfd,0x45,0x4b,0x62,0xd3,0xf4,0xaf,0xfc,0xb5,0x35,0xef, +0xeb,0x49,0xf0,0xa1,0xde,0x92,0x50,0xf3,0x72,0x6e,0x56,0x93, +0xd5,0x84,0x8b,0x94,0xbc,0x49,0xd8,0x26,0xd6,0xb4,0x02,0x46, +0xe9,0x4d,0xa8,0xdd,0x67,0x7c,0x60,0x87,0x80,0x3b,0x38,0x32, +0xd7,0x21,0xba,0x07,0x5b,0x2b,0xb1,0xeb,0x9a,0xd7,0xff,0x1e, +0xd1,0x9d,0xca,0x79,0x60,0xcb,0x3c,0x98,0x23,0xff,0x23,0x78, +0xd4,0xbf,0xe6,0xa3,0x79,0x86,0xfc,0xcc,0xfa,0xb0,0x52,0x9f, +0xf7,0xe1,0xd0,0x8f,0x3e,0x70,0x81,0xf5,0x6b,0x2f,0x27,0x75, +0xef,0x9a,0xd2,0xed,0x67,0x8e,0x83,0xd8,0x01,0x95,0x1d,0x6a, +0x0b,0x87,0xf8,0x55,0xfb,0x69,0x2b,0x3e,0x94,0xf5,0xd5,0x4b, +0x10,0x4d,0xc8,0xd5,0xec,0x26,0x47,0x57,0x5e,0x5f,0x93,0x2c, +0x7d,0x10,0xf2,0x5b,0x1d,0x52,0x50,0x1a,0x71,0xec,0x12,0x8f, +0xb8,0x5b,0x10,0x58,0x8f,0x34,0xac,0x17,0x1e,0x04,0xde,0x63, +0xdd,0xd4,0x17,0xe3,0x48,0x07,0xbf,0xa3,0x95,0x36,0x6d,0x0e, +0x84,0xa8,0x62,0x96,0xd5,0x8d,0x16,0xb5,0xbb,0x6e,0x68,0xdb, +0x0f,0xdc,0x64,0x0f,0x6b,0x6f,0x10,0xf1,0x3f,0xff,0x29,0x24, +0xc0,0xef,0x17,0xa7,0xe3,0x01,0xfc,0x77,0x6a,0xd7,0xbb,0x35, +0x11,0x3d,0xa0,0x8a,0xda,0x50,0x9a,0xa2,0xf7,0x82,0x23,0x1c, +0x19,0xf7,0xad,0xa0,0xf6,0x4e,0x84,0x0d,0x84,0xa3,0xc6,0x19, +0xfb,0x41,0xe0,0xcb,0x08,0xd2,0x9e,0x3a,0x1d,0x25,0x73,0x18, +0x61,0x6b,0x59,0x04,0x54,0x07,0xb2,0x0c,0xb0,0x83,0xb5,0xb0, +0x5c,0x2b,0xe0,0x13,0x3b,0x19,0x09,0x1d,0x5a,0x02,0x3f,0x85, +0xf6,0x3d,0x5f,0x18,0x92,0x16,0x02,0x27,0xd4,0x83,0xac,0xb7, +0x77,0xc6,0x7c,0x18,0x68,0x82,0xbe,0xd2,0x02,0x36,0xd0,0x9b, +0x7a,0xae,0x23,0xaa,0x6f,0xc6,0x32,0x18,0x2b,0x92,0x76,0x63, +0x7d,0x13,0x76,0xc1,0x48,0x6a,0xb7,0x92,0x50,0x17,0xee,0x8a, +0x1b,0x62,0x2b,0x88,0xef,0xd4,0x91,0x6c,0xae,0x6f,0xb5,0x56, +0xda,0x5b,0x1f,0x8c,0x4d,0x22,0x62,0x9e,0xcb,0xac,0x07,0x73, +0xce,0xd9,0xfa,0xbb,0x0b,0x8a,0xf7,0x5d,0x4b,0x31,0x13,0x98, +0xc0,0xec,0xf4,0xa6,0x04,0xde,0x84,0x70,0xe8,0xef,0xca,0x7f, +0xf2,0xe2,0xa5,0xc3,0xbf,0xfe,0x7c,0x69,0x46,0xb0,0x2d,0x56, +0x0e,0xf6,0xfb,0xa4,0xd3,0x7b,0x7e,0x87,0x2e,0xda,0x18,0xff, +0xdc,0x52,0x1f,0xaf,0x18,0x90,0x9c,0x67,0x31,0x0b,0xdb,0x84, +0x91,0xde,0xdb,0x6c,0x5f,0x25,0x3c,0xd1,0x07,0x6b,0xdc,0xef, +0x18,0x3a,0xb0,0x60,0x98,0x1b,0xc2,0xe6,0x4e,0xa9,0xd6,0x8e, +0xc8,0x0a,0x75,0x6f,0x4d,0x04,0x0c,0xad,0x42,0xad,0xe6,0x50, +0xd4,0x6a,0x02,0xd3,0x25,0xd4,0x5d,0x55,0xa9,0x10,0xce,0xd2, +0x58,0x38,0x4e,0xae,0x35,0x9d,0x25,0xea,0xb8,0x56,0xe8,0x50, +0x55,0x6d,0xe9,0xbb,0x42,0xfb,0x3f,0x44,0x5b,0xb6,0xd7,0x04, +0x6a,0x35,0x7b,0x86,0xda,0x7f,0xf8,0x54,0xcb,0xe0,0xb1,0x40, +0x47,0xc2,0x4e,0xb1,0xb3,0x57,0x74,0x49,0xef,0x54,0x3b,0x9d, +0xe0,0xcd,0x9d,0x57,0x83,0xd9,0xdc,0xe1,0xd5,0xda,0x57,0xbd, +0xf5,0x19,0xb2,0xd2,0xec,0xc5,0x37,0xa2,0x65,0xc3,0x5c,0xf1, +0xb7,0x55,0x1c,0x17,0xcc,0x85,0x86,0xd5,0x35,0x81,0xbd,0xf5, +0x5d,0x02,0xf3,0x55,0xdd,0xd0,0xaa,0x10,0xf3,0xf1,0x97,0x5f, +0xdd,0xd0,0xbe,0xaa,0x7b,0x79,0xf3,0x86,0x76,0xb3,0xee,0x65, +0xd9,0x0d,0xad,0x8c,0x23,0xa6,0x86,0x03,0x02,0x60,0x73,0x5b, +0x78,0x83,0xfc,0xe7,0xde,0x0d,0xd6,0xd5,0xaa,0xd4,0x2c,0xe1, +0x77,0x46,0xdd,0x55,0xf2,0x17,0x73,0x87,0x37,0xaf,0x63,0xe5, +0xec,0xf0,0xa6,0xad,0x7b,0x5d,0x72,0xe4,0xbd,0xcb,0xb7,0xce, +0x98,0xb1,0x3c,0x72,0x9e,0x2d,0x5a,0x9e,0xb7,0x29,0xf2,0xb0, +0x4d,0xe0,0x54,0x77,0x6a,0xef,0x48,0x14,0xeb,0x79,0xfd,0x9b, +0xa1,0xda,0xba,0x64,0x39,0x85,0x4f,0x99,0x45,0xde,0x10,0xe7, +0x6e,0xe0,0x60,0xea,0x76,0x90,0x68,0xfb,0xf8,0x8b,0x64,0x11, +0x57,0xe9,0xdd,0xeb,0x6a,0x9d,0x9b,0xd9,0x17,0x7d,0x44,0xad, +0xb3,0xfb,0x33,0xad,0xbb,0xe4,0x20,0x72,0xd3,0x77,0x32,0x91, +0x34,0x94,0xae,0x50,0x53,0x5f,0x12,0x2c,0x4a,0x91,0xd0,0x8b, +0x18,0x72,0x77,0x36,0x1d,0x22,0x6f,0xb0,0x33,0xba,0x13,0x81, +0x48,0x05,0xbc,0xc1,0x12,0xc0,0x2c,0xad,0xc4,0xbf,0x78,0x23, +0x25,0x37,0xb4,0x12,0xbc,0x27,0x91,0x3a,0x29,0xe7,0x73,0x7c, +0x32,0x3e,0x9b,0xd1,0xd5,0xd8,0x27,0x64,0x31,0x49,0xf7,0x37, +0x29,0xef,0x11,0x7d,0xdb,0x2d,0xac,0x5c,0xf2,0xf1,0x87,0x98, +0x3b,0xac,0x58,0xff,0x46,0x72,0xd8,0x90,0x50,0x6e,0xc6,0x5e, +0x17,0x38,0xc9,0xcb,0x0d,0x20,0x6b,0xe2,0xef,0x15,0x6a,0x9f, +0x4f,0x2a,0xcc,0x4a,0x4d,0x31,0xc6,0xcd,0xb5,0xed,0x6f,0x0a, +0x4d,0xfe,0xd7,0xa2,0x7e,0xec,0xd4,0x5b,0x31,0xf4,0x77,0xfa, +0xfe,0x6a,0x96,0xac,0x7c,0x25,0xb1,0x46,0x7f,0xae,0xdf,0x72, +0x03,0xb5,0xf6,0x1b,0x60,0x4e,0x35,0x3b,0xac,0xff,0x80,0x74, +0xb0,0x70,0xf2,0x12,0x03,0x17,0x8f,0x54,0x03,0xa4,0x1b,0xe4, +0xfd,0x0c,0x41,0xde,0x77,0x4e,0x0f,0x30,0x5d,0xe5,0x50,0xf2, +0x0a,0x8a,0xf8,0x5f,0x0c,0xd5,0x5e,0x48,0x60,0xc2,0xf3,0x34, +0xfe,0x3b,0x67,0x2b,0x3f,0x0f,0xde,0xc2,0x1e,0x3e,0x5c,0x75, +0x04,0xea,0x1c,0xc9,0x81,0xc9,0xbd,0xe1,0x4b,0x9c,0xa5,0xcc, +0x81,0x3f,0x0f,0x07,0x59,0xe9,0x0f,0x04,0x5a,0x70,0x68,0x34, +0xf4,0xba,0x04,0x1d,0x94,0xcc,0x9c,0x8b,0xd4,0x9e,0x2f,0xd4, +0x9a,0x44,0xbc,0xe7,0x7d,0xd7,0x51,0x06,0xf1,0xb1,0x82,0x12, +0x90,0x70,0x8e,0x3b,0x55,0xfd,0x63,0x16,0xa0,0x7d,0xcc,0xd7, +0xec,0xec,0x55,0x9f,0x24,0x4d,0x4f,0xb2,0xdf,0xc2,0x0f,0x81, +0x9f,0x06,0xf8,0xab,0x1c,0xc5,0x1d,0xe1,0x28,0x6e,0x99,0xb7, +0x12,0xd9,0x1d,0x1a,0xc6,0xc0,0x3b,0xce,0x0b,0x15,0xb0,0x27, +0x06,0x60,0xe8,0xad,0x47,0x56,0x4b,0x0a,0xcc,0x87,0x66,0x6c, +0x4a,0x6f,0x7d,0x76,0xb5,0xc2,0x83,0x81,0xf6,0x2b,0xbc,0x04, +0xfe,0x9e,0xcc,0x9d,0xe1,0x64,0x49,0x99,0x98,0x3c,0x3e,0x09, +0xf3,0xde,0x0a,0xfb,0x4b,0xf2,0xa9,0x54,0x61,0xaa,0x52,0x2d, +0xfd,0x54,0x2d,0x5a,0x0f,0x50,0xbb,0x24,0xb2,0x81,0xbb,0xe2, +0x81,0x84,0x83,0x2c,0x15,0x96,0xfb,0xb3,0xe5,0x58,0x74,0xc5, +0x87,0x8c,0xcc,0x30,0x3e,0x34,0x8b,0x49,0x6f,0x1e,0x4a,0xf3, +0xcb,0x2f,0x33,0xb4,0xcb,0x8a,0xde,0x1e,0x2b,0x78,0xe1,0x6c, +0xba,0x22,0x8a,0xc5,0x37,0xb0,0x58,0xac,0x75,0x14,0x68,0x38, +0xe7,0x15,0x43,0x54,0x61,0x5f,0xf5,0xad,0xbd,0x7e,0x4b,0xf3, +0x57,0xb4,0x4a,0xed,0x13,0x35,0x80,0xb5,0x42,0xc5,0xc2,0x95, +0x11,0x2a,0x6b,0xcb,0x7f,0xf3,0x14,0x3e,0x36,0x79,0xd8,0x90, +0xb0,0x59,0xa4,0xb8,0x9c,0xcf,0xce,0xde,0xb1,0xed,0xe3,0x5b, +0x72,0x50,0xcd,0x61,0xb6,0xd1,0x2f,0x04,0xd3,0x04,0x6e,0x98, +0x26,0xa8,0x6b,0x9d,0xb0,0x41,0xe9,0x03,0x26,0xbd,0x27,0x33, +0xf5,0xe6,0xa3,0xea,0x0c,0xee,0xac,0x71,0x7f,0x5c,0x4b,0x2f, +0x70,0x9d,0x29,0xb1,0x96,0x28,0x94,0x27,0xee,0x50,0x60,0xb0, +0x3f,0x1b,0x2c,0xc1,0x42,0x85,0x35,0x45,0x1e,0xa8,0x59,0x56, +0xac,0x97,0xe0,0x94,0x1f,0x9b,0x25,0xa7,0x2a,0x6c,0x32,0x07, +0xfd,0xd8,0xaa,0x80,0x63,0x5a,0xf8,0x8e,0x6c,0x57,0xa2,0xea, +0x5a,0xe7,0xec,0x50,0xe2,0xb2,0x62,0x57,0xc7,0xac,0xe0,0x40, +0x17,0x0b,0xc8,0xe5,0x58,0x40,0x46,0x94,0xbb,0x49,0x3d,0xaa, +0x7c,0xb5,0x63,0x5b,0x01,0xc7,0x65,0xef,0x91,0xf8,0xc4,0x24, +0x05,0x1a,0xd9,0xce,0x8d,0x29,0xfd,0x22,0x4f,0x89,0x8e,0xb3, +0xc4,0xc6,0x27,0x73,0x50,0x8c,0x91,0x55,0x54,0xac,0x39,0x89, +0x5f,0x41,0x74,0x9c,0x71,0x05,0x53,0x6f,0x69,0xf3,0xfa,0xc2, +0x04,0x84,0xb7,0x43,0x11,0xde,0xaa,0xe7,0xf5,0x5e,0x23,0xd9, +0x1b,0x28,0xca,0xf0,0x47,0x51,0x06,0xe6,0x46,0x90,0xe1,0x29, +0xba,0x14,0x71,0xd8,0x2b,0x3a,0xd3,0x30,0x7b,0xe5,0x87,0xf4, +0xbb,0x59,0x9f,0x6f,0x48,0x50,0xb4,0x27,0x9a,0xa7,0xca,0xa8, +0xc2,0x9a,0x01,0x37,0x56,0x71,0x8a,0x34,0x63,0x6b,0xe4,0x21, +0x9b,0xa2,0x49,0x97,0xe5,0xda,0x4f,0x15,0xb5,0xb6,0x6c,0x08, +0x0b,0x47,0xba,0x68,0xf7,0x44,0xac,0x13,0x5f,0xd0,0xbd,0x47, +0xb0,0xb7,0x14,0x35,0x33,0x63,0xfd,0xea,0xec,0x78,0x45,0xad, +0x29,0xbb,0x5a,0x5b,0xc6,0x27,0x83,0x24,0xaf,0xdd,0x96,0xb6, +0x1d,0xa7,0x1c,0x3e,0x33,0xe4,0x7d,0xca,0x0e,0xa6,0x3e,0x41, +0xec,0x9b,0x32,0x45,0x0d,0x8a,0xeb,0x1f,0xdf,0x4b,0x9c,0x49, +0x93,0x14,0xdb,0x89,0x61,0x26,0x76,0x42,0x69,0xed,0xf7,0x54, +0x82,0x6f,0xb0,0x36,0xae,0x7c,0xb2,0x35,0x32,0xd7,0x86,0xb3, +0x5b,0xc1,0xfa,0x8e,0xac,0x18,0x73,0xac,0xae,0x82,0x6e,0x10, +0x04,0x94,0x9a,0x51,0xe2,0xdf,0x4a,0xfe,0xaf,0x8f,0xb1,0xfa, +0xfa,0x2a,0x43,0x6b,0xca,0x30,0x77,0x86,0x6f,0xfa,0x18,0xcc, +0x84,0x5e,0x8a,0xd1,0xb7,0xc9,0xa0,0x29,0x18,0xa2,0x57,0xa5, +0x26,0x16,0xff,0x15,0xea,0x45,0xe5,0x91,0x96,0x54,0x73,0x54, +0xa5,0x1e,0xbe,0x84,0x7a,0xd8,0x88,0xcb,0x4b,0x8e,0x76,0xf8, +0xf2,0x31,0x56,0xb3,0xd2,0x85,0xe0,0xf3,0xab,0x39,0x22,0x7e, +0x9d,0xd9,0xf8,0x9a,0x56,0x4c,0x5f,0xdf,0x15,0xaa,0x98,0x3a, +0x80,0x24,0x88,0x6a,0x97,0x6a,0xcb,0xfc,0x94,0x9a,0xd0,0x7f, +0x69,0x0b,0xe0,0xeb,0xcf,0x7c,0x15,0x75,0x02,0x89,0x83,0x99, +0x18,0xd1,0x3d,0x62,0x99,0x35,0xa9,0xdc,0x4a,0x76,0x27,0xd4, +0xf1,0x73,0xfe,0x43,0x0b,0x88,0x56,0xd0,0x8c,0xd2,0x95,0x04, +0xa9,0x15,0xcb,0xef,0x68,0xcb,0x65,0xa5,0x1b,0xaa,0x6c,0xa1, +0x53,0x00,0xeb,0x84,0x9d,0x21,0x44,0x9a,0x52,0x74,0x86,0x80, +0xb7,0x60,0x2e,0x0c,0x0c,0xa9,0xef,0x68,0x54,0x53,0xc5,0x7f, +0xa5,0xbf,0xb2,0x92,0x1c,0x12,0xd7,0x69,0xba,0xf2,0xb9,0x30, +0x0e,0x42,0x31,0x26,0xf4,0x69,0xcb,0xa8,0x47,0x3b,0x62,0xb4, +0x50,0x49,0xf4,0x1d,0x32,0x01,0x16,0x0f,0x12,0x2d,0x54,0x4e, +0xdd,0x3f,0x5c,0x7c,0xa4,0xae,0x85,0xca,0x66,0x6c,0xa1,0xf2, +0x96,0xf9,0x70,0xa9,0x09,0xa9,0x2e,0xb7,0x85,0xa9,0xc2,0xd1, +0xdd,0x2f,0xc6,0xd0,0x30,0x72,0x8f,0x58,0x28,0xd8,0x54,0x71, +0xb5,0xb6,0x11,0xe2,0x6a,0x5b,0x24,0x11,0xea,0xb6,0x8a,0xa0, +0x0c,0x79,0xe5,0x1d,0x49,0xdc,0xff,0xb8,0x6a,0xf6,0x06,0x0e, +0x00,0x5f,0x6f,0x5f,0xa8,0x6c,0xb4,0xb7,0x3e,0xfa,0x0e,0x1b, +0x2e,0x18,0x23,0x46,0x85,0x5b,0xad,0xac,0x95,0x68,0x8b,0x66, +0xe4,0x53,0xc9,0x6b,0xdc,0xd1,0xe2,0xe2,0xfc,0x23,0x7f,0xba, +0x7c,0x26,0x3d,0x3f,0x33,0x3d,0x2c,0x6c,0x7c,0xb8,0x27,0x87, +0xdd,0xf2,0x55,0xf2,0x63,0xc6,0xa6,0x2f,0xb9,0x9d,0xe3,0x27, +0x5d,0x83,0x8c,0x67,0x92,0x53,0x67,0x65,0xd1,0x4f,0xa9,0xd4, +0xb4,0x9f,0x3c,0xfa,0x8a,0x9d,0x50,0xf1,0x1a,0xf0,0x5a,0x6a, +0x66,0x6a,0xb3,0x55,0x31,0x6e,0xaa,0xc1,0x52,0xb6,0x57,0xbc, +0x88,0x9e,0x6f,0x88,0xa3,0x97,0xe3,0x55,0x15,0x90,0x32,0xf3, +0x22,0xac,0xc7,0xe2,0xc9,0x7f,0xc8,0xd8,0x74,0x0d,0x15,0x50, +0x38,0x66,0x03,0x8d,0x86,0x24,0xfd,0x15,0x0e,0xfa,0xa6,0x74, +0x50,0x20,0xcc,0x9f,0x85,0x29,0x5a,0x5f,0x7c,0x42,0xce,0xe9, +0xfe,0x98,0x9f,0xbc,0xfd,0xbb,0x9e,0x85,0x74,0xef,0x3e,0x6c, +0x50,0xed,0x39,0x1e,0xd7,0x48,0xc6,0xdc,0x5b,0x08,0xed,0x60, +0x89,0x02,0xa3,0x6f,0x69,0xd3,0x84,0x76,0x00,0xcb,0x1d,0xa8, +0x1d,0x30,0x1a,0xce,0x5c,0xbe,0x76,0xfa,0xfc,0xeb,0xe4,0x38, +0x43,0x41,0x20,0xca,0xf4,0xd5,0x42,0xf3,0x27,0x7a,0x0c,0x18, +0x9a,0xbf,0x12,0xd4,0xfc,0x15,0xed,0x2b,0xe6,0x9f,0xce,0x4a, +0x59,0xf7,0xaf,0xe6,0x6f,0x2c,0x6a,0xfe,0xf8,0x0d,0xec,0x47, +0xbe,0x76,0x6c,0x9d,0x62,0x5b,0x97,0x8c,0xc9,0x2c,0xa8,0x1b, +0x1e,0xfc,0x46,0x75,0x19,0x0f,0x28,0x2c,0x80,0x05,0xdc,0x50, +0xc0,0xea,0xcf,0xac,0x0a,0x1b,0x7f,0x11,0xc6,0x2b,0xd0,0x11, +0x3a,0x0e,0xc1,0xbe,0x54,0x6e,0x3d,0x89,0x31,0x37,0x75,0x7b, +0x02,0x97,0xe1,0x1b,0x22,0x12,0x7a,0xdf,0xb8,0x88,0xfc,0xaf, +0xd0,0xab,0xbd,0xbc,0x29,0x9a,0x55,0x81,0x03,0x37,0x5e,0xdc, +0x37,0xec,0x47,0xfa,0xb7,0x2a,0xea,0x48,0xfc,0xf4,0x9a,0xce, +0x5d,0x28,0xbf,0x57,0x1c,0x11,0x8e,0x72,0xaf,0x12,0xb6,0x81, +0x9b,0xff,0x0f,0x50,0xc8,0x93,0x83,0x42,0x9e,0x0f,0x58,0x63, +0xed,0x03,0x2c,0x29,0x9d,0x46,0xbe,0xd2,0xde,0x5b,0x06,0xd9, +0x5e,0x65,0xfd,0x56,0x4a,0x83,0x16,0x2f,0x0e,0x9f,0x6c,0x1d, +0x54,0xd3,0x85,0x7c,0x7e,0x7c,0xf1,0x31,0x6a,0xcf,0xb1,0xf1, +0xcf,0x10,0xa9,0x2e,0x90,0xdc,0xc7,0x1f,0x29,0x2e,0x3e,0x73, +0xf4,0x6f,0x97,0xdd,0xd2,0xdf,0x67,0xc2,0xf9,0x73,0x9f,0xee, +0xee,0xe2,0x50,0x27,0xec,0x0b,0xd5,0xcb,0x83,0xb4,0xe5,0x5d, +0xf5,0x25,0x10,0xa6,0x5c,0xa4,0x1e,0x83,0x89,0xf2,0x22,0x85, +0x38,0xe8,0x6d,0x89,0x1f,0xb5,0x2d,0xe2,0xcf,0x23,0x26,0x7b, +0x59,0x4a,0x34,0x6d,0x76,0x8d,0x14,0xe6,0x16,0x08,0x0d,0x0e, +0x6a,0x44,0xdc,0x5e,0xef,0xdd,0xb0,0x42,0xb0,0x17,0xdd,0xa3, +0x08,0x58,0x8d,0xf2,0x93,0xc4,0x96,0xb2,0xc5,0x42,0xdb,0xc9, +0x97,0xcd,0x52,0x18,0x58,0x1f,0x28,0x54,0xba,0x24,0x67,0xe7, +0x53,0xcf,0x9e,0x88,0x28,0x8c,0x27,0xf4,0x2f,0x91,0x03,0xdb, +0x0c,0x20,0x01,0x81,0xba,0xf4,0x33,0x3a,0x0c,0xfc,0x4f,0xd1, +0xcb,0xee,0x3b,0xa4,0x05,0x8b,0xc6,0x32,0x82,0x56,0x8c,0xf5, +0xaf,0xd7,0x0f,0xba,0x72,0x67,0xfd,0xe8,0x3a,0xda,0xb8,0x58, +0xda,0xe2,0x14,0xe1,0xd8,0xaa,0x7d,0x37,0x37,0xb7,0x47,0xdd, +0x38,0xb6,0x0a,0x7a,0xf4,0xed,0x3f,0xff,0xb4,0xff,0x16,0x82, +0x10,0x5b,0x85,0xa9,0x81,0x41,0x81,0xa2,0x34,0x5d,0x51,0x61, +0xdb,0x22,0x57,0x56,0x54,0x88,0xd2,0x74,0x60,0x80,0x4d,0x30, +0x72,0xf5,0x87,0x92,0x36,0x96,0x83,0xf5,0x83,0xac,0x0f,0xc6, +0xb0,0xbe,0x46,0xfd,0xdc,0x17,0xeb,0xe7,0x7d,0x5e,0x51,0x73, +0xb9,0xa9,0x02,0x27,0x15,0xcd,0x14,0x9a,0x2b,0xfe,0x58,0x1d, +0xf6,0x1a,0x7d,0xdd,0x5a,0xa3,0xa2,0x51,0xd4,0x15,0xfa,0x73, +0x97,0x35,0x85,0x99,0xfb,0xeb,0x2a,0xe6,0xe7,0x3b,0x90,0xda, +0xf7,0x50,0x59,0x08,0x17,0xfd,0x5e,0x1e,0x25,0x28,0xd0,0xff, +0x41,0x7d,0xa0,0x68,0x4b,0xd8,0xcf,0xea,0x3d,0xf4,0xe7,0x5f, +0x70,0x7f,0x3e,0xda,0xdb,0x58,0x1f,0x3e,0x0a,0x1c,0x0b,0x64, +0x33,0x11,0xcf,0x50,0x0f,0x99,0x60,0x75,0x41,0xfd,0x4b,0x14, +0x90,0x9e,0x1b,0x05,0xa4,0x3f,0xea,0xfb,0xa2,0x88,0xaa,0xc6, +0x43,0xbd,0x4a,0xba,0x33,0x04,0x29,0x73,0xd3,0xb1,0xb2,0xa1, +0x52,0xf3,0x2e,0xa2,0x46,0x64,0x53,0xeb,0xfb,0x3c,0x6c,0x8b, +0x0c,0xd0,0x22,0xa5,0x13,0xb0,0x46,0x9d,0xb8,0x72,0xd4,0xca, +0xe1,0xab,0xf6,0xb2,0xf1,0x66,0x9f,0xf4,0x85,0x30,0x7d,0x4c, +0xf2,0xe8,0xa4,0xb0,0x57,0xa5,0xef,0xe9,0xa6,0x94,0x09,0x13, +0x56,0x4f,0x74,0xce,0x08,0x30,0x72,0x20,0xdb,0x31,0x07,0xa2, +0xcb,0x75,0x7d,0xf6,0xcc,0xfe,0xcc,0xac,0x48,0xcf,0xd3,0x7f, +0xcb,0xfa,0x46,0x81,0xb4,0x00,0x96,0xa6,0xa8,0xcf,0xb5,0x68, +0xb6,0x0c,0xeb,0x48,0x09,0x9e,0x7a,0xb4,0xd0,0x1f,0xe3,0xf5, +0x74,0x81,0x85,0x58,0x32,0xde,0xfe,0x40,0x65,0x4b,0xbb,0xa0, +0xb2,0xc3,0xa8,0x77,0x53,0xf3,0x7f,0xf9,0x83,0xfa,0x99,0xdf, +0x32,0x41,0xf6,0x7a,0x32,0xb2,0xd7,0x4f,0xdf,0x60,0x7f,0x23, +0x7b,0x1d,0xad,0xe5,0x56,0xb4,0x96,0xc9,0xcb,0x62,0x22,0x63, +0xcc,0x2b,0x53,0xf7,0xee,0xcb,0xde,0x9f,0x76,0xe4,0xb5,0xe6, +0x53,0x28,0xb6,0x5d,0x34,0x18,0x2d,0xa7,0x55,0x58,0xce,0x4d, +0x19,0xdb,0x52,0xb7,0x50,0xa7,0x47,0xc4,0xe4,0x80,0x4d,0x8e, +0x90,0xd5,0x23,0x84,0x9a,0x8f,0xf9,0xa3,0x47,0x1b,0xbe,0xf2, +0x8e,0xb6,0x52,0xc6,0xc6,0x7a,0xf5,0x39,0x74,0xd5,0xf0,0xb1, +0xf6,0xca,0x9f,0x12,0x7b,0x9f,0xb9,0xe4,0x6c,0x7b,0x88,0xf9, +0x9d,0x29,0xac,0x05,0x9b,0x22,0x61,0xef,0xb9,0xfe,0xa2,0xf7, +0x9c,0xca,0x3d,0xe5,0x60,0x85,0x87,0xfc,0x20,0x29,0x72,0xd2, +0x20,0xa3,0xfa,0x01,0x93,0x25,0xb8,0xae,0x48,0xd4,0xb6,0x0f, +0xc3,0xb8,0x38,0x6f,0x48,0xab,0x8f,0x8e,0xed,0x9b,0x11,0xad, +0x0a,0xfa,0xd5,0xb5,0xa8,0xe2,0xb3,0x9f,0xf2,0xab,0x31,0x39, +0xd4,0xb4,0xc1,0x24,0xc4,0x67,0x6a,0x44,0xfa,0x8a,0x94,0xa5, +0xd1,0x4b,0x63,0xcc,0x89,0xa9,0xfb,0xf6,0x65,0x1f,0x48,0x3d, +0xca,0x6f,0xa8,0x52,0xff,0x23,0x00,0xd5,0xc3,0x03,0xfd,0xd0, +0x15,0x08,0xa1,0x32,0xbf,0xa1,0xa2,0x23,0x7c,0xd9,0xcc,0x21, +0x42,0xa9,0x34,0x96,0x9a,0xaf,0x91,0x7f,0x9b,0xc2,0x24,0x76, +0x76,0x16,0xb5,0x95,0x5d,0xd5,0xec,0x47,0xac,0xad,0x88,0x06, +0x13,0x6d,0x30,0x1a,0x62,0x5b,0x2f,0x63,0x58,0xc2,0x01,0x1b, +0x0f,0xb1,0xbe,0x49,0xbf,0x9d,0x85,0xbd,0xd3,0x58,0x2e,0x32, +0xb6,0xf8,0x71,0x6d,0x18,0xbf,0x83,0xee,0x5d,0x92,0xb9,0xc9, +0xf0,0x60,0x72,0x1f,0x0c,0x42,0xb5,0x55,0xda,0x9b,0xde,0xd4, +0xab,0x1b,0x51,0x05,0x9d,0x86,0xdb,0xe6,0x72,0x83,0x2b,0xf3, +0x8a,0x61,0x68,0x74,0xb8,0x40,0x05,0x8f,0x7b,0xab,0xfa,0xd8, +0x7d,0x72,0x39,0xb5,0xf6,0x27,0xa8,0x1a,0xa7,0x8d,0xff,0x26, +0xe0,0x4d,0x1d,0x3f,0x21,0x45,0x47,0x67,0x85,0x84,0x84,0xcf, +0xc2,0xa2,0xb8,0xd1,0x70,0xac,0x45,0xc1,0xff,0x4f,0x77,0x3b, +0xd1,0x06,0xb0,0xce,0x69,0xbe,0x6a,0x03,0x88,0xfd,0x81,0xf6, +0xfe,0xdb,0x1f,0x68,0x8f,0x14,0x17,0xe0,0x33,0x15,0x3e,0x1d, +0x7a,0x3c,0x54,0xe8,0xb6,0xb1,0x3f,0x50,0xc6,0xf6,0xd4,0x2d, +0x09,0x6c,0xbb,0xbb,0xf9,0xc4,0x79,0x48,0xff,0x65,0x49,0xc6, +0x72,0xd1,0x1f,0x68,0x80,0x68,0xbe,0x23,0x19,0x61,0x00,0x6d, +0xd1,0x91,0x54,0xbe,0xe4,0x37,0xd2,0x0e,0xbb,0x0a,0x0a,0x97, +0xb3,0x15,0x57,0x97,0x77,0x6c,0x3b,0x11,0xe9,0xca,0x49,0xdd, +0x3e,0x4c,0xe6,0x51,0x2c,0x47,0x1d,0x87,0xd4,0x6c,0x23,0x7f, +0x37,0xcc,0xc8,0xdf,0x05,0xf0,0xe0,0x8a,0xbe,0xd3,0x80,0x94, +0xd5,0xda,0xb0,0xcd,0xe3,0x22,0xc3,0x32,0x16,0x15,0x9d,0x39, +0x62,0x58,0xc6,0xe9,0xa3,0x46,0x09,0xcb,0xa8,0xb2,0x4f,0xb4, +0xa5,0x57,0xf4,0x4a,0xc8,0x17,0xe0,0x04,0xab,0xa4,0x96,0x70, +0xac,0xc7,0x37,0x57,0xe3,0xfe,0xe4,0xb6,0x6d,0xa6,0xb0,0x6d, +0xad,0xb9,0x69,0xfb,0x18,0x75,0xeb,0x6a,0x1c,0x46,0x80,0xdb, +0xf2,0x33,0x0b,0x2a,0xad,0x47,0x90,0x1a,0x41,0xa6,0x07,0x70, +0xdb,0xfe,0x36,0x52,0x23,0xaa,0x4e,0x14,0x50,0xcf,0xd9,0x04, +0xbc,0x4a,0x4e,0x81,0x95,0xb9,0xc7,0xe6,0xc4,0xac,0x46,0x52, +0xc4,0xd1,0x4a,0x24,0x87,0x29,0x03,0xa1,0x92,0xcf,0x5f,0xb6, +0x83,0xbd,0xf0,0x95,0xe0,0x82,0x1d,0x3f,0xf4,0x36,0xf2,0xc5, +0x50,0x75,0x57,0x4c,0x95,0x26,0xa2,0x0b,0xd9,0x34,0xfe,0x73, +0xc7,0x68,0x8b,0x2d,0x7c,0x09,0x3d,0x33,0x7a,0x65,0x3c,0x37, +0x7a,0x65,0x38,0xa0,0x12,0x6d,0xd9,0x9f,0x06,0x51,0x8e,0xb6, +0x98,0x42,0xd8,0x1a,0x94,0x7c,0x4c,0x86,0x1b,0x37,0x35,0x27, +0xc1,0x92,0x4b,0xa0,0xf2,0x47,0xe4,0x03,0x67,0xe3,0x11,0x51, +0xfb,0x30,0xc2,0x8d,0x89,0xde,0x71,0x18,0x0f,0xd0,0xb7,0x42, +0x96,0x3a,0x3b,0x71,0xfa,0xaa,0x29,0x49,0x3b,0xd8,0x14,0xb3, +0x6f,0xc6,0x52,0xfe,0xa0,0xe4,0xc4,0x68,0xb6,0x70,0x60,0xc2, +0x36,0x98,0x4b,0x1b,0xfe,0x49,0x86,0x51,0xfb,0x05,0xaf,0x85, +0x14,0x06,0xe1,0xf7,0x0a,0xf6,0x1f,0xfb,0xc4,0x68,0x5e,0x39, +0xe4,0x16,0x51,0xfe,0x90,0x58,0x07,0x46,0x73,0xb6,0xfd,0x22, +0x34,0xd8,0x37,0x44,0x08,0x63,0xee,0x8d,0x36,0x6d,0x07,0xb7, +0x69,0xc9,0xdc,0xa6,0x51,0x1e,0x4a,0x08,0x9e,0xa5,0x60,0x57, +0x4a,0x7f,0xa7,0xff,0xce,0x0d,0x09,0xda,0x16,0x49,0x61,0x37, +0xae,0xe8,0x36,0x05,0x26,0x49,0xc0,0x1d,0xa9,0xcd,0x9f,0xd9, +0xb8,0xb7,0x33,0x91,0x99,0x0c,0x73,0x30,0x11,0xf0,0x43,0x20, +0xdb,0xca,0x6d,0xfb,0x46,0x58,0xfe,0x82,0xe1,0x02,0x74,0xea, +0xf1,0x15,0x28,0xa0,0xf4,0xe8,0x05,0x4e,0xe0,0x74,0xb7,0x27, +0x53,0x98,0x72,0xf7,0x6b,0xe6,0x64,0x83,0xea,0x85,0x6a,0xbe, +0x7c,0xab,0xa8,0xf0,0xf6,0xed,0xa2,0x31,0x7d,0x6d,0xe3,0xe4, +0x7e,0xa3,0x46,0xf7,0xe9,0x33,0xea,0xec,0x4d,0x1e,0x28,0x67, +0x93,0xba,0x50,0x88,0x5b,0xa3,0x86,0x8f,0x88,0xc0,0xc5,0xfd, +0x11,0x24,0xf3,0xe9,0x22,0x52,0x1c,0x3c,0xe4,0xc0,0x64,0xb5, +0xe0,0xb6,0xd0,0x46,0x5f,0x91,0x73,0xd8,0x0a,0xa9,0x23,0xb5, +0x5b,0xc5,0xd7,0x8a,0x63,0x1c,0xd1,0xdf,0xf4,0x63,0xed,0x24, +0xda,0x88,0x63,0xb7,0x98,0x11,0xb4,0xf1,0xa1,0x7a,0x36,0x9c, +0xe8,0x72,0x53,0xdf,0xbb,0xab,0x5e,0xda,0xd7,0x62,0x35,0xa9, +0x8b,0x38,0x8e,0x51,0xcb,0xbb,0xff,0x87,0x00,0x88,0xde,0xcc, +0xe8,0x9c,0x58,0xaf,0xfc,0xaf,0xe3,0x6c,0x71,0x3f,0xa6,0xed, +0x26,0xec,0x0b,0xcd,0x8b,0xff,0xa7,0x73,0x14,0xba,0x8a,0x40, +0x63,0xe6,0xc1,0x1a,0x1b,0xcd,0x2c,0xa9,0xd7,0x36,0xe2,0x35, +0x3b,0xb8,0xfd,0x07,0x36,0xf7,0xff,0x50,0xb7,0xe7,0xc4,0x07, +0x9b,0x7a,0x52,0xcb,0x76,0xa2,0x62,0x56,0x63,0x1f,0x37,0x6a, +0x70,0x58,0x5d,0x1a,0xb3,0xf2,0x95,0xa5,0xc9,0xa1,0x4d,0x96, +0x13,0x66,0x3d,0xcd,0x8d,0xcb,0xd1,0xcd,0x19,0x5b,0x57,0x6f, +0xa6,0x8e,0x3f,0x72,0x03,0x03,0x83,0x60,0xac,0xca,0x3e,0x48, +0x94,0x82,0x16,0x2d,0xa2,0x0d,0xa7,0x90,0xeb,0x55,0x5f,0x9e, +0x5c,0x44,0x1d,0x46,0x12,0x54,0x4d,0x37,0x1d,0xa8,0x3b,0xb0, +0x3c,0xcd,0x41,0xa8,0xa6,0x6f,0x21,0xd9,0x63,0x22,0x9b,0x05, +0xb9,0xb4,0xc5,0x76,0xa2,0xcd,0x4d,0xc1,0x4f,0xb4,0x40,0xf1, +0xb4,0xb0,0x7b,0x3b,0xb9,0xdd,0x5b,0x81,0x9d,0x5f,0xb6,0x9f, +0xce,0x2a,0xa0,0x1e,0x3f,0x91,0x92,0xb1,0x97,0x2f,0xe5,0x9f, +0xc5,0xce,0x7c,0x58,0xb9,0xc0,0xe6,0x7a,0x5e,0xb8,0xd4,0xdc, +0x98,0xab,0x61,0x1e,0x2d,0x0e,0x6a,0x46,0x16,0x76,0x73,0x63, +0xc1,0xe0,0xc3,0xbd,0xfc,0xe4,0xd7,0xb3,0x45,0xf9,0xdc,0xd3, +0xfa,0x78,0x1b,0x4c,0xb5,0x3e,0xaf,0x31,0xd5,0x5a,0x05,0x68, +0xcf,0xb9,0xa7,0xe5,0xa8,0xee,0x7b,0xb5,0xae,0x65,0x4f,0x6f, +0xdd,0xf7,0x15,0x19,0xf8,0x08,0x5f,0xef,0xdf,0x4a,0xec,0x1d, +0x66,0x97,0x83,0x8d,0x55,0x8d,0x86,0x95,0x5b,0xef,0x68,0x5b, +0x65,0x85,0x83,0xba,0xd6,0x30,0x45,0x01,0x13,0xc8,0x1c,0x0c, +0xdd,0x56,0x6f,0xf7,0xe9,0xc3,0x6d,0xa5,0x74,0x55,0x86,0xd9, +0x8a,0xb6,0x42,0x82,0x33,0xdc,0x8b,0xdd,0xd0,0x2a,0x94,0xda, +0x0a,0xe2,0x7e,0x43,0x9b,0xe8,0xc3,0x1f,0xad,0x5b,0x1d,0x2c, +0xff,0x86,0x75,0xa7,0x96,0x4f,0x88,0x16,0xce,0xec,0x6a,0x39, +0x36,0xd7,0x1e,0xd7,0x64,0x72,0x97,0x1d,0xc0,0x5d,0x36,0x94, +0xa8,0x79,0x21,0xac,0xc5,0xc9,0x1f,0x0e,0x9d,0x3b,0x6c,0xd9, +0x92,0xb9,0x33,0x65,0x73,0x22,0x3b,0xe1,0x6a,0x3e,0x7e,0x1e, +0x76,0xfd,0x86,0x2a,0xe0,0x65,0xb1,0x96,0x85,0x51,0x09,0xa9, +0x7b,0xf7,0x6c,0x10,0xa9,0xfc,0xfd,0xe5,0xb5,0xd2,0x30,0x76, +0x40,0x8a,0x09,0xec,0x35,0x05,0x16,0x0c,0xb5,0xd7,0xd6,0xc3, +0x9b,0xea,0x0f,0x3e,0x3c,0x84,0xc3,0x7f,0x56,0x75,0x22,0xca, +0x08,0x02,0x6d,0xb9,0xc1,0x9c,0x45,0xb0,0x3c,0x7b,0x58,0xfd, +0x4a,0x5b,0xde,0x0b,0xf6,0x40,0xcf,0x20,0xd6,0x53,0x82,0xad, +0xec,0x1a,0x7d,0x3b,0x9d,0x28,0x6d,0x50,0x8a,0x28,0xe9,0x94, +0x6d,0xa5,0xa6,0x2f,0xf8,0xe5,0xfc,0x17,0xe9,0xbe,0x66,0xf7, +0x6b,0xda,0xc4,0x01,0xfc,0xa2,0xcd,0x7f,0x0d,0xd0,0x87,0x5e, +0x93,0xa0,0x56,0x6b,0xf3,0xd2,0x44,0xd8,0xef,0xbe,0x18,0x4d, +0x9a,0x31,0x9a,0x54,0xcb,0x61,0xf2,0x30,0x19,0xbe,0xa4,0xef, +0x38,0x88,0x8e,0x1e,0xbf,0xd2,0x77,0xc2,0xeb,0x5a,0x7b,0xbc, +0x33,0x95,0xf0,0xb3,0x4e,0xbc,0x25,0xc1,0xc6,0x0c,0xfa,0xf6, +0x68,0x4c,0x76,0x0c,0x20,0x79,0x23,0x99,0xed,0xd4,0xf7,0xe2, +0xce,0x84,0xbe,0x99,0x7a,0x6d,0x21,0xcb,0x92,0x97,0xc5,0xf1, +0x5b,0x4a,0xe4,0xb7,0xb4,0xfe,0x7f,0x6f,0x29,0xa0,0xd7,0x54, +0x58,0x30,0xc4,0x5e,0x6b,0xe6,0xae,0xfe,0xd5,0xdb,0x43,0x08, +0x89,0x38,0x4c,0x4d,0x51,0x99,0xf3,0x44,0xd2,0x57,0x7f,0x93, +0x48,0x70,0x8f,0x7d,0xf0,0x92,0xc7,0x8d,0x6d,0xf9,0x0f,0xdd, +0x96,0x60,0x07,0xff,0xa1,0xd5,0x44,0x59,0xcb,0xdf,0xf1,0xd0, +0xa8,0x0b,0xab,0xa2,0x6f,0x6f,0x15,0x6f,0xa7,0xdd,0x90,0x20, +0x23,0x9d,0xbe,0xbd,0x56,0x8c,0x74,0x7a,0xfd,0x48,0x5f,0x50, +0x8d,0xeb,0x39,0xfc,0xda,0x48,0xc3,0x1b,0xe6,0xe3,0x17,0x60, +0xd7,0xef,0x11,0xeb,0x96,0xa6,0x2c,0xaf,0x1b,0x6a,0xea,0xf1, +0x31,0x09,0xe0,0xc3,0x3b,0x7f,0xa8,0x7d,0x40,0x6b,0xa1,0x44, +0x41,0xe1,0x6e,0x67,0x3e,0xcb,0xf9,0x6a,0xa0,0xce,0xfb,0x48, +0x6e,0x29,0xac,0xff,0x35,0x62,0xdd,0x8a,0x64,0xd1,0x7a,0x2b, +0x26,0x8e,0xba,0x75,0x20,0xd1,0xd9,0x51,0xd4,0x16,0x4c,0xae, +0x5d,0x28,0x3a,0x9d,0x7b,0xc6,0x92,0x91,0x9e,0x4d,0x6d,0x59, +0x04,0x3c,0x59,0xe3,0xe8,0x2c,0x43,0x4a,0xce,0x3f,0xb7,0x72, +0x8d,0x69,0xa7,0x50,0x4f,0x23,0xcd,0xae,0xd3,0xec,0xd0,0xb6, +0x3d,0x6d,0x6e,0xbf,0x53,0x8f,0xe3,0xe4,0x64,0x91,0xf5,0xa0, +0xcf,0x3c,0xb9,0xfd,0x84,0xa1,0x60,0x69,0x63,0x2b,0x0c,0xbb, +0x51,0x5a,0x74,0xe6,0xe0,0x19,0x0b,0xb6,0x37,0x11,0x2d,0x75, +0xdd,0xcd,0x37,0xcb,0x8a,0x4e,0x1f,0x3c,0x95,0x95,0x91,0x95, +0x2c,0x74,0xd4,0xcd,0xcc,0x45,0x25,0xe2,0xe4,0xd9,0x28,0x16, +0xb6,0x38,0xd4,0x98,0xb4,0x34,0x95,0x35,0x81,0x30,0x31,0xef, +0xc6,0x41,0x13,0x16,0xe8,0xa3,0x0f,0xe5,0xa3,0xf2,0x96,0x78, +0x86,0x86,0x82,0xd2,0x1f,0x65,0x23,0xb4,0x61,0x0c,0xd1,0xcd, +0xc1,0xe4,0xb2,0xfc,0x6b,0x56,0xf9,0xe9,0x4b,0xd6,0x53,0x8b, +0x0e,0x8e,0xdb,0x66,0x4b,0xff,0xe7,0x82,0x3e,0x92,0x43,0xfc, +0x04,0x79,0x5c,0xe4,0xe2,0x99,0x93,0xac,0x7e,0x17,0x27,0xfc, +0x1a,0x6f,0x1b,0x58,0x1b,0x4d,0x00,0x58,0x84,0x5a,0x72,0x66, +0x4f,0x95,0x6d,0x97,0x74,0xe9,0xcc,0xfc,0xd0,0xd0,0x71,0x9f, +0xfa,0xbb,0x2c,0x94,0x02,0xc6,0x7d,0x56,0xc2,0x5d,0xb9,0xb8, +0xb9,0xba,0x66,0x2e,0x3b,0x8f,0x66,0x1e,0x2b,0xb4,0x1e,0xe8, +0xff,0xa9,0xfc,0xf1,0xec,0x51,0xef,0xf6,0xb7,0xb9,0x7d,0x1f, +0x9d,0x19,0x9d,0x0a,0xee,0xa8,0x8e,0x2a,0xb0,0xee,0xc5,0x7e, +0x2e,0x13,0x87,0x81,0x73,0x67,0x5b,0xc1,0x28,0xec,0xe7,0x92, +0x7b,0xdc,0x92,0x99,0x2e,0x44,0x50,0xed,0xe1,0x1d,0xf3,0x8d, +0x92,0xb3,0x79,0x07,0x8f,0x53,0xa7,0x3f,0x08,0x34,0x34,0x17, +0x96,0xf0,0xe8,0x3d,0x46,0x90,0x13,0xb1,0x38,0xc3,0x47,0x37, +0x26,0x7b,0x39,0x8e,0xee,0xf5,0x0b,0xa8,0xd6,0xc7,0xbe,0x6f, +0x38,0xba,0x26,0x87,0x35,0xfc,0x76,0x0e,0xf3,0x79,0x11,0xc6, +0x1a,0xb2,0x34,0xfe,0xb0,0x9f,0xe3,0x28,0x34,0x83,0xb0,0x5b, +0xda,0xc4,0xbe,0x7c,0x14,0x9a,0xb1,0xc0,0x7e,0xba,0xdf,0x4d, +0x09,0xde,0x67,0xf3,0xbe,0x17,0x39,0x65,0x23,0x9c,0xfb,0x7f, +0xd1,0xae,0x8d,0xc9,0xab,0xdb,0xb1,0x31,0xb4,0xa9,0x1b,0x11, +0x5c,0xcc,0xf6,0xdc,0x64,0xb7,0x63,0xad,0x63,0xd6,0x47,0xad, +0x5d,0x86,0x9d,0x25,0x0b,0x37,0x14,0x95,0x53,0xc7,0xdf,0xf9, +0x15,0x8e,0x1b,0x08,0x36,0x68,0x6e,0x2b,0x19,0x7b,0xfd,0x8b, +0xa2,0xf3,0xb9,0x25,0x96,0x8c,0x8c,0xf5,0xfc,0x41,0xf1,0x00, +0xc0,0x34,0x88,0x18,0x45,0xe2,0x63,0xfc,0xea,0xf8,0x4a,0xac, +0xd0,0xde,0x66,0x07,0x11,0xe8,0xf0,0x67,0xbf,0xe3,0x68,0xf6, +0x31,0x4a,0x9d,0x09,0xb8,0x32,0x12,0x45,0x69,0x0e,0x51,0x63, +0x05,0xed,0xf1,0x18,0xb6,0x23,0xd8,0xdb,0x7f,0xa1,0xdc,0x7a, +0x5a,0x28,0xa8,0xd0,0x80,0x9f,0xb6,0xf2,0xdc,0x99,0x93,0xfb, +0x4f,0x58,0xd2,0xd2,0x32,0x32,0xb3,0x56,0x67,0x26,0x58,0x98, +0x0d,0xde,0xe6,0x86,0xcf,0x85,0x35,0x8a,0x59,0x1f,0xcd,0x47, +0xc5,0xa2,0xef,0xfe,0x11,0x8b,0xc0,0xe9,0xd7,0xd9,0x17,0x42, +0xab,0xd9,0x70,0x14,0x59,0x95,0xb6,0xe3,0x58,0x76,0x5e,0x5a, +0x91,0x41,0xc6,0x4e,0x7c,0x6f,0x4c,0x08,0x34,0x6a,0x5d,0x30, +0xd6,0xfc,0x65,0x79,0xc1,0xe9,0x83,0x27,0xd3,0xd7,0x66,0xa4, +0x64,0x24,0x52,0x1a,0x40,0xb0,0xf5,0xc6,0x21,0xea,0x7a,0x93, +0x7c,0x51,0x52,0x90,0x77,0x30,0x2f,0x3d,0x3d,0x2b,0x39,0x8b, +0xd2,0xbd,0x08,0x8c,0xea,0x0a,0x62,0x51,0x71,0x1c,0x73,0xe1, +0xd5,0xa6,0x15,0x5a,0x98,0x67,0x15,0x80,0x3f,0x6b,0x2d,0xad, +0xec,0x3c,0x26,0x14,0x4b,0x64,0x63,0xcd,0x9f,0x97,0x16,0x9e, +0x3a,0x70,0x02,0x8b,0xc9,0xa2,0x62,0xad,0x0a,0x76,0x77,0x5d, +0xcd,0x6c,0xe5,0x00,0xc8,0xda,0xc1,0x0d,0xff,0xa8,0x36,0xbd, +0xdb,0xb4,0x7e,0xd2,0x47,0xa8,0x15,0x6e,0x3f,0x7d,0xd2,0xa6, +0x1a,0x46,0xb9,0x70,0xbb,0xef,0xab,0xbe,0x78,0x42,0x2e,0x5c, +0x2e,0xe1,0x9e,0xfd,0xbd,0xaa,0xd0,0x11,0x36,0x07,0xda,0xe2, +0x2c,0xb7,0xf2,0x15,0xc5,0xa7,0xf3,0x0e,0x1c,0xa7,0x5e,0xd3, +0xb9,0x7f,0x2a,0xa1,0xee,0x4e,0x84,0x47,0x3d,0xab,0xea,0x55, +0xb9,0xb9,0xbe,0xd8,0x5a,0xb0,0xea,0xe2,0xa9,0x53,0xfb,0x4e, +0xa2,0x6c,0xf4,0xb5,0xd6,0x82,0x36,0xd6,0x24,0x7a,0x43,0x2c, +0xb6,0x16,0x44,0xb6,0x44,0xe9,0x7d,0x02,0x85,0x94,0x7e,0x4b, +0x86,0x77,0x4f,0xec,0x80,0xfc,0x08,0x47,0x6a,0xe1,0x13,0x04, +0x69,0x90,0xa9,0x6c,0xc7,0xcb,0x78,0xc2,0x92,0xe1,0x1e,0xb5, +0xd9,0x88,0xbe,0x1a,0x8f,0xac,0xa6,0x9e,0x39,0x04,0xca,0xb1, +0xd8,0x4d,0xdf,0x9e,0xce,0x8f,0x50,0xc7,0x3e,0x84,0x85,0x51, +0xd7,0x7c,0x6c,0x0e,0xc3,0xbf,0xa5,0x95,0xb1,0x6f,0x55,0xb8, +0xea,0xcf,0xae,0x4a,0xbe,0xb0,0x1d,0xbf,0xa8,0x56,0xc2,0xd5, +0x00,0x19,0xd6,0xc1,0x61,0xda,0x7c,0x24,0xd1,0x7e,0x44,0xab, +0xd9,0xd2,0xfd,0xa6,0x36,0x91,0x7a,0xde,0x42,0x3f,0x2b,0x11, +0x76,0x3b,0x5c,0xe3,0xb1,0x8b,0xf6,0x2b,0xfe,0xc9,0x43,0x78, +0x01,0x6a,0x7f,0x92,0xcf,0xd0,0xe6,0x4c,0x7a,0x31,0x84,0xb0, +0x2d,0x6c,0x3e,0x1a,0x53,0x0f,0x61,0x4c,0xa9,0xb5,0x93,0xe1, +0xf5,0x23,0xa2,0x17,0x2e,0xc5,0x15,0x74,0xf8,0x24,0xb2,0x4c, +0x50,0x58,0xda,0x26,0x24,0x00,0x56,0xb6,0x46,0x25,0xa4,0xa5, +0xec,0xdb,0x82,0xe2,0x02,0x54,0x42,0xa6,0x6c,0x8a,0x67,0xdb, +0xc0,0xd3,0x7c,0xaa,0xc2,0xe4,0x00,0x3f,0xd6,0x9c,0x26,0x75, +0x96,0x1e,0xc5,0x49,0xcc,0x11,0xba,0x9d,0xaf,0xca,0x2b,0xda, +0x5b,0x62,0xa1,0x44,0x26,0xd0,0xd5,0x5c,0x72,0x16,0x14,0xd6, +0x3a,0x76,0x43,0xf4,0x5a,0xf0,0x20,0x85,0xd4,0x3d,0x88,0x44, +0xa7,0x45,0xd7,0xe9,0x3c,0xb6,0x16,0x64,0x9e,0xad,0xb2,0x7e, +0xd9,0x77,0xb0,0x0c,0x96,0x69,0x83,0xbc,0x80,0x18,0x09,0xc7, +0xe2,0x3d,0xe7,0xb1,0x7f,0xf2,0xea,0x35,0x3c,0xd2,0xe5,0x71, +0x44,0x74,0x48,0xdf,0x84,0xfa,0x3e,0x02,0x9d,0xb9,0x51,0xbd, +0x29,0xf1,0xb0,0x5f,0xa1,0x2a,0x45,0xc1,0x72,0x6c,0x52,0x9a, +0x69,0xc7,0xa9,0x2c,0xec,0x42,0xdc,0xef,0x13,0xb9,0xf5,0x6c, +0xec,0x42,0xec,0xf1,0x57,0x2c,0x75,0xf3,0x26,0x1e,0xe3,0x7d, +0xa1,0x39,0x36,0x1d,0xbe,0x5e,0x59,0x74,0xf6,0x60,0xa1,0xa5, +0x0e,0xd8,0xb7,0x15,0x4d,0x87,0x8b,0x38,0xd2,0xcf,0x5c,0x97, +0x89,0x07,0x5a,0x8a,0xc6,0xc3,0x7c,0x2c,0x2c,0x98,0x06,0x88, +0x42,0x13,0x59,0x0e,0xe1,0xdc,0xbd,0x1c,0x82,0x15,0xf5,0x85, +0x3b,0x99,0x03,0x5a,0x6f,0x6a,0xe6,0x20,0x98,0x50,0xe7,0x03, +0x44,0x6f,0xc2,0x83,0x90,0xc6,0x33,0x04,0xc1,0x20,0xd8,0x20, +0x18,0x5c,0x54,0x4b,0xc6,0x3c,0x38,0x59,0x96,0x7b,0xec,0x90, +0x65,0x7d,0xc6,0xc6,0xd5,0xd4,0xa3,0x07,0x89,0x15,0xa4,0x82, +0x9d,0x9f,0x65,0xef,0x5b,0x73,0xc8,0xc2,0x82,0x4b,0xf5,0x31, +0xc3,0x91,0x54,0xe0,0x37,0x7c,0x3c,0x74,0xf4,0xb5,0xd7,0x2e, +0x7c,0x58,0x49,0x1e,0xf7,0x6b,0x83,0x74,0x82,0xfa,0xa6,0xd6, +0xd4,0x69,0x26,0x39,0x92,0x79,0xb4,0xc0,0x7a,0xc0,0x67,0xbe, +0xfc,0xf1,0xac,0x31,0xed,0x06,0xd9,0xdc,0xef,0x45,0x67,0x45, +0xa7,0x2e,0xaf,0xef,0x19,0x72,0x24,0xf3,0x58,0xbe,0x75,0xaf, +0xcf,0x02,0xb9,0xdb,0xc4,0x20,0xb0,0x76,0xb1,0x15,0x86,0x5e, +0x2b,0xe4,0x16,0x2b,0xcf,0x82,0x29,0xd1,0xac,0x78,0xea,0xfa, +0x31,0xe1,0xb7,0xf2,0x77,0x94,0xb0,0x87,0x16,0x07,0x34,0x04, +0xd1,0x86,0xb0,0xe1,0x68,0xf6,0xf1,0x54,0xbe,0x8e,0x32,0x2e, +0xeb,0x3f,0x0d,0x65,0x9b,0xa5,0xa4,0xce,0x81,0xc1,0x10,0xd5, +0x59,0xb4,0x61,0x3d,0xff,0x2d,0xf5,0x3a,0x44,0xd8,0x4e,0x68, +0x21,0x34,0x0d,0xdc,0x04,0x2d,0xe4,0x26,0xa8,0x27,0x7b,0x40, +0xd5,0xbe,0xe8,0x75,0x1a,0x60,0xed,0xfb,0xec,0xd9,0x56,0xcc, +0x75,0xc5,0xfa,0x98,0x74,0x4c,0x07,0x0b,0x83,0x51,0x94,0x75, +0xee,0x8a,0xf5,0x5a,0xff,0x41,0xb2,0x67,0xe4,0x90,0xa0,0x6e, +0xb6,0xe0,0x07,0xf1,0xeb,0x63,0xd6,0xc5,0xc4,0x5a,0x56,0x24, +0x24,0xaf,0xa1,0xee,0x4f,0x09,0x48,0xb6,0xc2,0xd1,0x45,0x57, +0x0e,0xd1,0xc6,0x0f,0x49,0x11,0xa2,0x3a,0x4c,0xdf,0x2c,0x5a, +0x3c,0x6d,0xb2,0x75,0xf0,0x65,0x3f,0xd6,0x97,0xf5,0xbd,0x7c, +0xe9,0xea,0x89,0xc5,0x79,0x83,0x76,0xd8,0xd6,0xb1,0x7e,0x15, +0x88,0x57,0x7e,0x82,0x28,0x75,0x21,0xc7,0x2b,0x47,0x4b,0x4a, +0x30,0x93,0xb3,0x4b,0xfa,0xe7,0x4c,0x78,0x68,0xe8,0xf8,0x70, +0x37,0x24,0x89,0x67,0x63,0x16,0xa5,0x4e,0xbc,0x49,0xdd,0x6f, +0x92,0x98,0xcc,0x28,0xea,0xdc,0x9c,0x14,0x1d,0xcf,0xcd,0xcb, +0x5c,0xcb,0x1d,0x54,0x22,0x6b,0x03,0xf6,0xa2,0xff,0x16,0xb7, +0xd9,0xd8,0x9c,0xda,0x60,0x92,0xf7,0x43,0x26,0x79,0x48,0xbb, +0x5e,0x36,0xf7,0xc7,0xff,0xb6,0xf2,0x34,0xe8,0xe4,0xd4,0xf5, +0x04,0x59,0x2d,0x1c,0x9b,0x41,0x22,0xcf,0xad,0xe1,0x56,0xd1, +0xa0,0x8f,0x1b,0x91,0x09,0xec,0x48,0xa7,0x6a,0x3f,0xa3,0x8e, +0xdd,0xf7,0xdd,0x36,0x8f,0xfb,0x88,0x5c,0xcb,0xed,0x27,0xbf, +0xb7,0xbf,0x65,0xe4,0x5a,0x06,0xa8,0x23,0x83,0x42,0xa1,0x25, +0xb4,0x1c,0x56,0x72,0xde,0x46,0xbd,0x1c,0x88,0x03,0x6d,0x12, +0x46,0x0a,0xa8,0x53,0x11,0xe1,0x4f,0xac,0x7e,0x94,0x3e,0xa7, +0x0d,0x27,0x12,0xcf,0xa5,0x83,0x87,0x7d,0x84,0x83,0x44,0xed, +0x4e,0x90,0xc2,0xcc,0xe2,0xab,0xd6,0xcc,0xf2,0x4a,0x98,0x17, +0xf0,0x30,0x81,0xcf,0xfe,0x59,0x83,0xa8,0x7c,0x0c,0x75,0xc8, +0x31,0xab,0x52,0xf7,0xf0,0x09,0xf3,0x6f,0x7b,0xea,0xdd,0x52, +0xbc,0xdf,0x80,0xc9,0xb0,0x70,0xf0,0x89,0xd0,0x57,0x1d,0x66, +0xb3,0xb6,0xad,0xde,0xca,0x11,0xa4,0x9b,0x40,0x90,0x0f,0x97, +0xa4,0x2f,0x47,0x2a,0xb2,0x83,0xf6,0x93,0x61,0x07,0x8c,0xc5, +0x7e,0x82,0x2f,0x76,0x1b,0x6b,0xfa,0xe2,0x53,0xc2,0xf6,0xb2, +0x69,0x68,0x0c,0x04,0x11,0xda,0xa0,0x46,0xb8,0x9f,0x44,0x9d, +0x7c,0x43,0xd4,0xc9,0xc7,0x91,0xe8,0x5f,0x58,0x14,0x1b,0x85, +0x3a,0xf9,0xd8,0xce,0x10,0x05,0x6d,0xa1,0x07,0x49,0xc9,0x3c, +0x49,0xdd,0x1e,0x91,0xe2,0x7c,0xe1,0x3c,0x70,0x71,0x7f,0x57, +0xa7,0x83,0x77,0x63,0x87,0x34,0x37,0x91,0xb0,0x7a,0x48,0x9d, +0xbf,0x21,0x86,0x22,0x03,0x16,0xd4,0xe4,0x10,0x23,0x18,0xd2, +0x03,0x38,0x4c,0x68,0x86,0xb1,0x8a,0xe5,0x5b,0xa2,0xef,0xb8, +0x87,0xad,0x3b,0x62,0xae,0xb3,0x42,0x6c,0xdd,0x01,0x5f,0xd7, +0xf0,0xa0,0x3e,0x82,0xba,0xde,0x21,0xa1,0x41,0x90,0xdc,0x01, +0x1b,0x07,0xf3,0xb9,0x77,0xaa,0xf8,0xb4,0x25,0x35,0x55,0xe8, +0x6a,0x56,0x58,0xd8,0x76,0xa0,0x42,0x62,0x0d,0xa3,0x03,0x59, +0xb3,0x70,0xa9,0xf5,0xe4,0x00,0x68,0xd4,0x41,0x2f,0x20,0x7f, +0x17,0x7e,0x41,0xbd,0xba,0x92,0xd6,0x35,0xae,0x84,0xbd,0x71, +0xfa,0x06,0x6b,0x63,0x7d,0x02,0x83,0x02,0x45,0xb7,0xba,0x5f, +0xd1,0xdb,0xba,0x42,0xd8,0x6d,0x6d,0x62,0x1f,0xee,0x6d,0x5d, +0x59,0x60,0x1f,0x7d,0x28,0x8f,0xcb,0x06,0x0a,0x53,0xc8,0x01, +0x7f,0x1c,0x11,0x8e,0x8d,0x7a,0x1e,0x25,0x46,0xc3,0x01,0xec, +0xd7,0x8a,0x0d,0x07,0xde,0xae,0x6b,0x38,0x30,0xe5,0x7f,0x9c, +0x18,0x4a,0x5b,0x93,0x31,0x67,0x93,0xb4,0x34,0x66,0x59,0x9c, +0x79,0x65,0xea,0xee,0x5d,0xd9,0xbb,0xb1,0xf5,0xcd,0xa6,0x72, +0xfd,0xf9,0x30,0x24,0xdc,0x0f,0x1f,0x38,0x0d,0x66,0x0f,0xc7, +0x9c,0x0d,0xcd,0xa3,0x5e,0x45,0xa4,0x95,0x19,0xdb,0x40,0x20, +0x98,0x59,0xb3,0x23,0x2f,0xfb,0x24,0x95,0x4f,0x90,0xb3,0xa3, +0xcd,0x5f,0x54,0x15,0x9c,0xa1,0x6e,0x7d,0x08,0xf6,0x22,0x6d, +0x51,0x29,0x32,0x7e,0xcd,0x1f,0x10,0xf6,0x56,0x5f,0x90,0xe4, +0x55,0xdd,0xbb,0xa4,0x7c,0x24,0x18,0x18,0x31,0x59,0x48,0x4f, +0xaf,0x2d,0x22,0xdb,0x0e,0x67,0x1e,0x3b,0x6b,0xdd,0x39,0x30, +0x42,0xee,0x34,0x6d,0x2c,0x34,0x6b,0x6d,0x2b,0x1a,0x77,0xb9, +0x28,0x3f,0x6f,0x7f,0x9e,0x45,0x28,0x98,0xf0,0x7a,0x65,0x4c, +0xe2,0xf2,0xeb,0x1d,0x84,0xd7,0xbb,0xe8,0x3a,0x3b,0x2e,0xfa, +0x97,0xce,0x8e,0x1f,0x97,0x18,0x92,0x62,0xcf,0xf6,0xb3,0x86, +0x15,0x10,0xa0,0xdb,0x4a,0xe4,0x2f,0x4b,0x33,0xd7,0x1f,0x74, +0x61,0xa9,0x49,0x6a,0xc2,0xc5,0x19,0x2b,0x46,0x26,0x04,0xa5, +0x5a,0x92,0xd9,0x41,0xa3,0xea,0xef,0xaa,0xbb,0x60,0x38,0x8a, +0x63,0xd6,0xe2,0xd5,0x98,0xb5,0x60,0x81,0x7d,0x75,0x3f,0x3e, +0xe1,0xad,0x4c,0xe6,0xfe,0x41,0x61,0x3a,0x81,0x1f,0xd4,0xdb, +0x8f,0x31,0x4d,0x4d,0x1d,0x3f,0x45,0xa7,0xd2,0x1d,0xff,0xe7, +0xe8,0xcd,0x33,0x12,0xd1,0x5b,0x7b,0x44,0x6f,0x62,0x6e,0xc8, +0xec,0x37,0x11,0xc8,0x63,0xd4,0x62,0x61,0x12,0x6d,0x56,0x8e, +0xeb,0x65,0x58,0x87,0x5e,0xad,0x3c,0x1f,0xf6,0x62,0xc3,0x58, +0xe0,0xc3,0xaf,0x9e,0x3f,0xeb,0xf0,0x15,0x04,0xba,0xb0,0x31, +0xc8,0xfb,0x08,0x1a,0x0e,0x1e,0xe0,0x29,0x78,0x1f,0x9e,0xcc, +0xa3,0x0c,0x79,0x1f,0xe8,0xa7,0xfb,0xb6,0x69,0x55,0xef,0xa7, +0x9f,0x3d,0x69,0x73,0xcb,0xf0,0xd3,0x03,0xd1,0x4f,0x9f,0xbf, +0x7c,0x4e,0xf8,0xe9,0x90,0x91,0xdc,0x4f,0xbf,0xd2,0x02,0xb1, +0xcd,0x2f,0x3e,0x27,0x75,0xf8,0xc1,0x95,0x4d,0xa4,0xcd,0x57, +0x63,0x53,0xa6,0x08,0x52,0xb3,0x1d,0x7a,0x22,0x13,0x02,0x0d, +0xdf,0xd2,0xd7,0x3b,0xc4,0xaf,0xbd,0xac,0x7f,0xf7,0xaa,0x43, +0x7c,0x44,0xd7,0x3c,0xa4,0xb5,0x9c,0xbb,0x77,0xaa,0xe8,0x14, +0xaa,0x25,0x0c,0x51,0xd7,0x36,0xb0,0x0a,0x03,0xa8,0x3d,0xd4, +0x52,0x55,0x3e,0xdc,0xa1,0x75,0xa3,0xe3,0x52,0x3f,0x3a,0xee, +0xec,0x1d,0xbe,0xa0,0xb8,0x25,0x23,0xf0,0x7d,0x20,0xdb,0x3c, +0x58,0x8e,0x42,0x96,0x28,0x6d,0x08,0x64,0xd7,0x0c,0x9f,0x8f, +0xa8,0x67,0x35,0x61,0x6d,0xad,0xf5,0x1c,0x5e,0x48,0x85,0xd3, +0xd4,0xc1,0x44,0x44,0x87,0x35,0x6a,0xf7,0x98,0x68,0x2b,0xd2, +0xa8,0xad,0x05,0x31,0xec,0xe0,0x12,0x61,0x07,0x6b,0xba,0x10, +0x6e,0x02,0x8f,0xd6,0xa5,0xb1,0x23,0x5e,0xa5,0xb1,0xeb,0x93, +0x35,0x75,0x69,0x6c,0xda,0x28,0x1e,0x65,0x7d,0xc8,0x05,0xb4, +0x5f,0x4a,0xbe,0x96,0x99,0x9c,0x75,0xb7,0xec,0x27,0xeb,0x93, +0x77,0xcb,0xc1,0x19,0xac,0xef,0x0e,0x6b,0xf3,0xfe,0xdd,0x60, +0x26,0xc5,0xd9,0xba,0x51,0x87,0xad,0x44,0x9f,0xcb,0x72,0xd4, +0x0d,0x72,0xc5,0xe5,0xa3,0x0f,0x1f,0x5d,0x0a,0x0f,0xb4,0xc5, +0xc8,0x01,0x7e,0xe1,0xed,0x3b,0x0c,0x3d,0x8a,0xd2,0x1e,0xed, +0xaf,0x4b,0xfa,0x5f,0x92,0x36,0x15,0x4e,0xaa,0xb9,0xaf,0x12, +0xc0,0x43,0x8d,0x04,0x70,0x2e,0xf4,0xa1,0x4d,0x6a,0x09,0x6d, +0xfa,0x13,0x81,0xf4,0x6e,0x68,0x8d,0xb2,0x79,0x4c,0x80,0x14, +0xa9,0x24,0xea,0x39,0x9e,0x84,0x0c,0x82,0x64,0x1e,0x15,0x0a, +0x49,0xf8,0xb7,0x45,0xc5,0x67,0xf9,0xa2,0xdd,0x88,0x2c,0xa9, +0x38,0x0b,0xdb,0x01,0xef,0x89,0x7e,0xdf,0x75,0xb0,0x8c,0xe3, +0xf5,0xd7,0xfa,0x07,0x4c,0x81,0x06,0x30,0x11,0xfa,0xd1,0xc6, +0xff,0xe5,0x01,0x21,0xb6,0x95,0xfe,0xb7,0x6f,0xc0,0x6f,0x46, +0xdf,0x80,0x49,0xdb,0x6d,0xe9,0xbf,0x5d,0xd4,0x9b,0xc8,0x2c, +0x14,0x16,0x60,0xf3,0x80,0xa2,0xa3,0xb3,0x42,0xc3,0x44,0x12, +0x4e,0xe5,0xe8,0xdf,0xfb,0x5c,0x31,0x74,0x66,0x1f,0x47,0x6f, +0x88,0x4e,0xe5,0x58,0x3b,0x26,0x2e,0x71,0xad,0x69,0xe7,0xd9, +0xcc,0xf3,0x97,0xac,0x17,0xfa,0x86,0xc8,0xd0,0x8c,0x7a,0xad, +0x20,0x17,0x73,0xcb,0x69,0x93,0x77,0x44,0x13,0xea,0xf5,0x04, +0x4b,0x9b,0xd8,0x4c,0xa5,0x28,0xab,0xe4,0x8a,0x35,0xf3,0xc7, +0x72,0x98,0x37,0xec,0xca,0x4a,0xb9,0xe5,0xd2,0x21,0xc3,0x3e, +0xa2,0xf6,0x6b,0x09,0x76,0x78,0xdd,0x5c,0x98,0x59,0x74,0xc9, +0x9a,0x55,0x8e,0x7f,0x43,0x03,0xac,0xce,0x1a,0xf4,0x3e,0x98, +0x6c,0x05,0x63,0x8b,0x2e,0xe7,0x96,0xec,0x29,0xae,0x69,0x4b, +0xfe,0x84,0xf7,0xcd,0x05,0x65,0x87,0xce,0xee,0xe2,0x9e,0x8b, +0x7a,0xb6,0x26,0xc7,0xd6,0x1f,0x2f,0xb2,0x7e,0xd6,0x73,0x91, +0xdc,0x39,0x64,0x04,0x24,0xbd,0x6f,0x3b,0xce,0x87,0xa1,0xe4, +0xdb,0x13,0xc5,0xa7,0x2c,0x6b,0x52,0x45,0xaf,0x8d,0x78,0x1c, +0x06,0xf3,0x09,0x1c,0x06,0x54,0xe8,0x2f,0x8d,0xc6,0x6e,0xe9, +0x69,0xa6,0xdc,0x7f,0xbf,0x18,0x3a,0x02,0x92,0xdf,0xc7,0x58, +0xaa,0x79,0xc9,0xb7,0x27,0xf9,0x17,0x5f,0xcd,0x3b,0xfe,0x3d, +0xf1,0x45,0xda,0x94,0x11,0x66,0x0f,0x9f,0x50,0xbb,0x02,0x42, +0x5d,0xf1,0x69,0xab,0x2d,0x08,0xcb,0xf9,0x4e,0x35,0x7a,0xb2, +0x49,0xf5,0x3d,0xd9,0x5e,0x6b,0xd7,0x56,0x87,0x41,0x75,0x33, +0xc7,0x0b,0x96,0x9e,0xf5,0xd0,0x43,0x7d,0xb5,0xb0,0xd5,0xfa, +0xa9,0x3b,0x50,0x6b,0x0b,0xf1,0x7c,0x80,0xe2,0x85,0x07,0x8f, +0xe1,0x4e,0xa0,0xd9,0x43,0x7e,0x93,0x1d,0xcc,0x35,0x9e,0x84, +0xba,0x9d,0x26,0x26,0x51,0xd8,0x5b,0x47,0x1d,0x76,0xd4,0xb5, +0x9b,0x64,0xbb,0xa4,0xb8,0x61,0x28,0x2c,0x1a,0x86,0xa9,0x5c, +0xcb,0xf1,0x6f,0x73,0x8b,0x73,0xd3,0x52,0xcd,0x9b,0x32,0xb6, +0xae,0xde,0x9a,0xc8,0x76,0x79,0x1a,0x26,0x4f,0x34,0xce,0xe0, +0xb7,0x4a,0x3d,0xde,0x24,0x01,0x90,0xf4,0xae,0x08,0x15,0x2f, +0xde,0xcf,0xe7,0xa1,0xe2,0xc6,0xcc,0x4d,0xd8,0x9b,0x7d,0x07, +0x47,0x8d,0x68,0xd1,0xe1,0x36,0x95,0xee,0x0b,0xac,0xf1,0xaa, +0xcf,0x8d,0xef,0x3c,0xd9,0x63,0x3a,0xee,0x5f,0xf0,0x16,0x76, +0x80,0x2a,0x3d,0x75,0x6a,0x3f,0x46,0xd6,0x99,0xab,0x85,0x6d, +0x6e,0x66,0x74,0x80,0x72,0x8c,0xae,0x6f,0xda,0xfd,0x18,0x7d, +0xc9,0xa6,0xeb,0xac,0x5a,0xf8,0x12,0x57,0x2c,0xfb,0xf5,0x53, +0x4b,0x6b,0xa5,0xe1,0xac,0x6d,0x82,0x1c,0x16,0xb1,0x64,0xce, +0x0c,0x6b,0xc0,0xb5,0x50,0xd6,0x95,0x75,0xbd,0x5e,0x52,0x79, +0x38,0x62,0x7f,0xe8,0x36,0x5b,0x86,0x0c,0xad,0xc1,0x43,0x9d, +0x23,0x79,0x8c,0xdf,0x7f,0xea,0xe4,0x99,0x03,0x7f,0xb9,0xec, +0x97,0xfe,0x3a,0x3d,0x7b,0xd2,0xc4,0x09,0x73,0x3c,0x5c,0x1c, +0x50,0x53,0x10,0x04,0x23,0xd4,0xf2,0x5a,0x99,0xba,0xfc,0x46, +0x42,0xb6,0xe3,0xe7,0x5b,0x42,0x07,0xea,0xe9,0x45,0x9e,0x9f, +0x9e,0x39,0x7e,0xfc,0x84,0x99,0x9e,0x2e,0x0e,0xda,0x03,0xf2, +0xa5,0xb1,0xc5,0x43,0x30,0x6e,0xf1,0xb0,0x91,0xd8,0xe0,0xf9, +0x36,0xb5,0xbc,0x34,0xf7,0x96,0xed,0x33,0xe9,0x66,0xe9,0xcc, +0x61,0xd4,0x2b,0x1a,0xbb,0x42,0x86,0x92,0xbd,0x83,0x16,0xc8, +0xed,0x67,0x8c,0x81,0xe6,0xad,0x6c,0xe7,0x26,0x5e,0x2a,0x3e, +0x95,0xb7,0xff,0xb8,0x25,0x83,0x7a,0xed,0x24,0xdc,0xbc,0xbe, +0x15,0xbd,0x5e,0x00,0x04,0x7d,0xc7,0x37,0x78,0x1b,0xcb,0xaf, +0xb3,0x7c,0xbc,0x0d,0xea,0xfe,0x1f,0x02,0xa7,0xd5,0x15,0xbf, +0xb0,0xc9,0xdc,0x05,0xe7,0x06,0xb1,0xe9,0x9d,0x61,0x0a,0xb4, +0xa5,0x2d,0x5e,0x12,0xd6,0x98,0xb5,0xc3,0xa4,0xec,0x34,0xa2, +0x8f,0x00,0x07,0x35,0xee,0x11,0x5b,0xca,0x0d,0x68,0x59,0x30, +0x8b,0xee,0x08,0x4b,0xa1,0xbd,0xf4,0xe2,0x6b,0x52,0x56,0x3b, +0x96,0xa0,0xd2,0xa3,0x0c,0x2b,0x32,0x3f,0x51,0x69,0x1c,0x51, +0x6a,0x1c,0x49,0x11,0x5f,0xdb,0xd4,0x75,0x09,0xe9,0x70,0xc7, +0xff,0xaf,0xbf,0xee,0x54,0x3d,0xc4,0x0e,0x89,0x1b,0xfd,0xb9, +0xe5,0x2b,0x82,0x5c,0xf5,0xe2,0xfc,0x53,0xa3,0x76,0xf1,0x78, +0xab,0x41,0xb9,0xee,0x3f,0x8c,0x39,0xac,0x94,0x47,0x2d,0x9c, +0x3f,0x31,0xd8,0xda,0xf9,0x4e,0x20,0xff,0x6c,0xc5,0x8f,0x36, +0x05,0x65,0xc2,0x3b,0xfe,0x57,0x26,0x8c,0x7a,0x2f,0x07,0x5f, +0xdd,0xc4,0x0e,0x6b,0x26,0x91,0xdd,0xbb,0x4a,0x9b,0xb8,0x93, +0x40,0x36,0xa3,0x0d,0x4c,0x85,0x8f,0x84,0xae,0xbe,0x19,0xff, +0x88,0x05,0x55,0x60,0x6a,0x29,0xec,0x1b,0x2e,0xf3,0xc8,0xa8, +0x9f,0x1a,0xb1,0x36,0x3e,0x79,0x69,0xcc,0xf2,0x38,0x73,0x62, +0xea,0xee,0x9d,0xd9,0xbb,0x51,0x7f,0xba,0x99,0x7a,0x2e,0x26, +0xb9,0x23,0xb9,0xdb,0x3c,0xf6,0xdd,0xfe,0xa2,0x83,0x9b,0x33, +0xb7,0x63,0xf2,0xe3,0xb3,0x76,0xe6,0x83,0x58,0x69,0x13,0x19, +0x4a,0xb7,0x60,0x12,0x7f,0x12,0x94,0x57,0x0d,0x42,0xca,0x45, +0x83,0x90,0xa5,0xe0,0x63,0x14,0xd8,0xb0,0x1d,0xba,0xdb,0x26, +0xc2,0x27,0x46,0x07,0xa3,0xad,0x08,0x8f,0xd6,0x61,0x78,0xdb, +0x6e,0x6e,0x6e,0xbf,0x75,0x63,0xc3,0xd9,0xf0,0xc7,0xdf,0xfe, +0xf3,0x4f,0xbb,0x6f,0x61,0xb8,0x0b,0x9b,0x8c,0x85,0xb0,0xc0, +0x40,0x3e,0x01,0x5a,0x07,0x18,0x85,0xb0,0xca,0x0a,0xd6,0x9a, +0xb5,0xae,0xc0,0x42,0x18,0xb5,0xec,0x27,0xdc,0xbf,0xf4,0x57, +0xa9,0x7d,0x3a,0xd9,0x28,0x9f,0xbf,0x5c,0x2c,0x5c,0x4c,0x18, +0x77,0x31,0xaa,0xa1,0x6c,0x05,0x73,0xfb,0x1e,0x7c,0x66,0xaa, +0x8f,0x7a,0x30,0xb3,0x50,0xd9,0xaa,0x36,0xbd,0x21,0xaa,0x6c, +0xef,0x55,0x96,0xfc,0xf0,0x43,0x65,0x68,0x77,0xdb,0x4c,0xb9, +0x7b,0x40,0xe8,0x07,0x1f,0x04,0x94,0xdc,0x43,0xc9,0x64,0x73, +0xea,0x74,0x9e,0x07,0x8f,0xd0,0x4c,0xbb,0x4b,0x58,0x33,0x1b, +0x54,0x2f,0x50,0x8b,0xe4,0x3b,0xc5,0x45,0xb7,0x6e,0x15,0x8d, +0xf2,0xb6,0x8d,0x92,0xbd,0x47,0x8d,0xea,0xdb,0x37,0xac,0xe8, +0x0e,0x7e,0xd6,0x42,0x9d,0x2e,0x10,0xda,0x22,0x9c,0x68,0x9f, +0x13,0xa3,0xc3,0x0e,0x66,0xaf,0xdf,0x9a,0x49,0xf8,0x3d,0x8b, +0x02,0x43,0x0b,0x91,0x0a,0x48,0x4c,0xdb,0x75,0x6c,0x03,0x0f, +0xda,0x5f,0xfc,0x97,0x24,0xb5,0x0f,0x0e,0x84,0x0f,0xdc,0xce, +0x8f,0x35,0x7f,0x57,0x59,0x9e,0x9f,0x87,0x6d,0x40,0xb4,0x5f, +0x2b,0xf5,0x5f,0x25,0x6d,0x1c,0x07,0x29,0xfb,0x19,0xa5,0x2e, +0xf7,0x91,0x52,0x1a,0x19,0xbd,0x2a,0x6d,0x3f,0x46,0xfa,0x67, +0xff,0xdd,0x70,0x21,0xa9,0xd3,0xb0,0xe1,0xb0,0xf4,0x7d,0x11, +0xe9,0x5f,0xb8,0x7b,0xaa,0xe8,0x0c,0x77,0x78,0x28,0x15,0xd8, +0x9c,0xc0,0xb6,0x82,0x0d,0xf7,0x5c,0xc8,0x60,0x6f,0xbf,0xda, +0x73,0xc1,0x0f,0xda,0xb4,0x66,0xad,0xfc,0xf4,0x4e,0x6c,0x81, +0xc4,0x72,0xb5,0xce,0x75,0x07,0xfc,0xf9,0x81,0xf9,0x92,0xa2, +0x66,0x66,0xe6,0xac,0xce,0x5a,0x21,0x76,0xf4,0xb9,0x58,0x04, +0x01,0xac,0x35,0x76,0x42,0x2e,0xc0,0x4e,0xc8,0x41,0x97,0xf4, +0x31,0x7e,0x2c,0x38,0xb9,0x7e,0x1b,0x1f,0x07,0x5b,0xe9,0xe8, +0xef,0xbe,0xac,0x28,0xc9,0x3b,0x6f,0x51,0xa8,0x6c,0x47,0x60, +0x9e,0xb6,0x8e,0x4a,0x76,0xe8,0xc2,0xa6,0x12,0xfd,0xec,0x1d, +0x49,0xbf,0xcf,0x74,0xfa,0xb6,0x3b,0x51,0x2a,0x08,0xdc,0xd6, +0x36,0xc3,0x45,0x64,0xc2,0xfe,0x4b,0x53,0xa7,0xae,0xf3,0xc9, +0x6b,0xbc,0xf4,0xcc,0xe4,0xcc,0x44,0x4a,0x6f,0x89,0x28,0xca, +0x44,0xc8,0x61,0x44,0x49,0xfb,0x39,0x4a,0xea,0x35,0x7b,0x4c, +0x5b,0x5f,0x9b,0xdb,0xb7,0x88,0x92,0x44,0x6c,0xbf,0xfd,0x70, +0xd6,0xb1,0x33,0x1c,0x22,0x2d,0x94,0xbb,0x4d,0x0a,0x06,0x67, +0x01,0x91,0xce,0x9e,0xcd,0xcb,0xcd,0xab,0x4f,0xf3,0xb4,0x03, +0x27,0xf3,0xf5,0xa2,0x22,0x0e,0x9a,0x44,0x9a,0xc7,0xc4,0x21, +0x03,0x78,0xfe,0x1d,0x9d,0x69,0xa4,0xc7,0x0c,0xc8,0xec,0x69, +0xe4,0xd1,0x81,0x80,0xe7,0x5f,0x03,0xf4,0xa0,0x6b,0x12,0x54, +0x8b,0x94,0x9f,0x36,0x8d,0x35,0x41,0xe0,0xec,0x29,0x80,0xb3, +0xc8,0x7a,0x61,0xd9,0xb8,0xe0,0x60,0x41,0x56,0x7a,0xa6,0xb1, +0xcb,0x94,0x51,0x36,0x7e,0xc9,0x6f,0xb8,0x8a,0xf5,0xb8,0x44, +0x96,0x67,0xe9,0x2a,0x79,0x39,0x8f,0x28,0x75,0xd0,0xb5,0x29, +0xfb,0x8e,0x9a,0x78,0xa8,0x4f,0x5d,0xb2,0x89,0xd8,0xd3,0x25, +0x66,0x03,0x0f,0x22,0x44,0xdd,0xde,0xad,0x23,0xee,0x01,0x53, +0x9e,0x7f,0xe6,0xc0,0x19,0xea,0xe4,0x46,0xc0,0x82,0xd1,0xa9, +0x43,0x4d,0x31,0x35,0xbd,0x41,0x74,0x77,0xd6,0x80,0xbe,0x3d, +0x80,0x28,0x2f,0xde,0x20,0xda,0xe8,0xf7,0x83,0xc9,0xdf,0x03, +0xe0,0x8d,0x97,0xc7,0xc9,0xc0,0xda,0x08,0x6c,0x6a,0xf2,0x5a, +0x94,0xc1,0xee,0x27,0xa9,0xbf,0xb2,0x49,0xe7,0x61,0xd2,0x2f, +0x6c,0x4e,0x29,0x1c,0x85,0xa7,0xec,0x7c,0xa9,0xec,0x20,0x72, +0x0b,0x7c,0x9a,0x3d,0x9b,0x49,0x9e,0x19,0x93,0xcc,0x5e,0x4c, +0xb2,0xd7,0xcc,0x07,0xba,0x07,0x6e,0x89,0xa6,0xd1,0x16,0xeb, +0x89,0x01,0xb9,0xb1,0xa3,0x13,0x7b,0x0a,0xef,0x13,0x88,0x83, +0xb6,0xdc,0x18,0xfd,0xef,0xb2,0xaf,0x93,0x1b,0xc8,0xaf,0x1a, +0xf8,0xae,0x47,0xcd,0x01,0xac,0x7b,0x31,0x92,0xa0,0xb1,0xff, +0x8d,0xfc,0x1f,0xeb,0x1c,0x58,0x6f,0x9d,0x2b,0x5e,0xb3,0xce, +0xee,0x86,0x75,0x3e,0x79,0xf2,0xcc,0x7e,0xc3,0x3a,0xcf,0x99, +0x34,0x49,0x58,0x67,0xea,0x9e,0x40,0xf4,0x20,0x7f,0xcd,0x5e, +0x66,0xef,0xc1,0x0e,0xf5,0xc3,0x28,0xd4,0x5b,0x91,0x95,0xf6, +0xcc,0xbb,0x0f,0xf4,0x95,0x93,0x07,0xf6,0x4f,0x19,0xf0,0x33, +0x52,0x29,0x18,0x79,0x59,0x40,0x2a,0xcc,0x0b,0x84,0x32,0x7e, +0xe1,0x52,0xdc,0xa0,0xe4,0x14,0xf6,0xc5,0x42,0x91,0xcc,0xbb, +0x23,0x02,0xa8,0xad,0x29,0x41,0x2d,0x4c,0x64,0x66,0x0c,0x77, +0x54,0x1c,0x11,0x3b,0xdc,0x27,0x79,0xb4,0x49,0x1f,0xd2,0x77, +0xe8,0x58,0x58,0xd4,0x0f,0x5b,0xf8,0x58,0x0b,0xbe,0xcd,0x2b, +0xa6,0x9e,0xf3,0x50,0x4f,0xf1,0x33,0x44,0xfb,0xb1,0xae,0xd3, +0x64,0x6a,0xcd,0x25,0x82,0x78,0x12,0x51,0xcd,0x9c,0x05,0xf3, +0x66,0xd1,0x32,0x7e,0xea,0x43,0x27,0xd7,0x9f,0x3a,0x6f,0xdd, +0xdf,0x73,0xbe,0xdc,0x36,0xb4,0xde,0xdd,0x99,0xb9,0xbb,0x2b, +0xca,0xb7,0x6c,0xca,0x12,0x8c,0xf1,0xed,0xdc,0xdd,0x9d,0xaa, +0x80,0x2c,0x56,0xe7,0x1a,0x31,0x25,0x34,0x1c,0x86,0xd2,0xc6, +0x35,0x04,0x6b,0x04,0x99,0x09,0xa8,0x64,0xfa,0x85,0xcd,0xe7, +0xe6,0xbe,0x20,0x88,0x2d,0xea,0x0c,0xf3,0xa1,0xad,0x3f,0x29, +0xc3,0xcd,0x69,0x12,0xdd,0x9c,0xd9,0x06,0x16,0x41,0x9b,0xf4, +0xe0,0x30,0xd2,0xfe,0x1a,0x61,0x0b,0xdb,0xc0,0xa7,0xf0,0x91, +0x3f,0xa9,0x14,0x14,0x89,0x1c,0x96,0x86,0x9b,0x1c,0x54,0xdd, +0xe4,0x23,0x8e,0xcd,0xce,0xcc,0x51,0xe4,0x16,0x3b,0x27,0x88, +0x11,0x90,0xe9,0x8e,0x5d,0x5a,0x2a,0xa4,0x5e,0x90,0xa4,0xea, +0x6d,0xd9,0x60,0x8d,0x3f,0xad,0x1a,0x07,0xee,0xcf,0xe1,0x11, +0xa6,0x88,0x54,0xea,0x10,0x43,0x60,0x03,0x64,0x8b,0x3a,0xd3, +0x66,0xf9,0x4a,0xf1,0xc1,0xaa,0x4b,0xc5,0xb3,0x86,0xd8,0x96, +0xc9,0x43,0xc2,0x66,0xf9,0xf9,0x87,0x1d,0xbc,0xc2,0xed,0x52, +0x3d,0x8e,0x38,0x60,0xe0,0x08,0x57,0x6a,0xff,0x17,0x49,0xb8, +0x68,0x8a,0x9b,0x31,0x32,0x31,0xc8,0x39,0x99,0x1d,0x32,0xf0, +0x83,0xbb,0xc1,0x1a,0x7e,0xf2,0xc5,0xd9,0xdb,0x87,0x5c,0x86, +0x1d,0x37,0x05,0xce,0x1d,0x33,0x6b,0xb0,0x73,0xbb,0x51,0x57, +0x7f,0x76,0xf9,0x51,0xfe,0xb9,0xe8,0xea,0xe3,0xcb,0x67,0x66, +0x8d,0xdc,0x66,0xfb,0xe2,0xb0,0xe9,0xc6,0x6c,0xff,0x62,0x2f, +0xea,0xd9,0x01,0x97,0xfc,0x2f,0xaf,0x4a,0x11,0xb4,0xae,0x14, +0xd1,0x4f,0x7b,0x97,0x07,0x24,0x5a,0xd3,0x81,0xb8,0x9e,0x28, +0xae,0x27,0x98,0x4a,0xea,0x58,0x24,0xe8,0xed,0x3e,0xe1,0x11, +0x4d,0x43,0x95,0x40,0x7b,0x2a,0x3b,0x10,0xed,0x0b,0x56,0xa8, +0xc2,0xf5,0x40,0x76,0x5d,0x1a,0x37,0x8a,0x36,0xfe,0x86,0x04, +0x13,0xda,0x78,0x10,0xd1,0xdf,0x62,0xfb,0xa8,0xd3,0x6c,0x22, +0xaa,0xf7,0xd4,0x3d,0x90,0xd4,0x6d,0x38,0x80,0xa5,0xdb,0xdf, +0x14,0x84,0x15,0x83,0x3b,0x75,0x7c,0x32,0x44,0xc0,0x8a,0x2b, +0xbf,0xfc,0xdc,0xe6,0xaa,0x01,0x2b,0x3e,0x54,0xa9,0x8b,0x95, +0xa8,0xb7,0x98,0x05,0x5b,0x0c,0x5d,0xa8,0x5d,0xcc,0xef,0xe7, +0x17,0x6d,0x05,0x75,0xed,0x48,0xa8,0x6d,0x1e,0xe1,0xe6,0x37, +0x89,0xbe,0x7d,0x0b,0xc5,0x38,0xcf,0x09,0xf4,0xed,0x66,0x44, +0xdd,0x0f,0xd9,0x00,0x96,0xab,0xf7,0x82,0x5c,0xd6,0xf7,0x5d, +0x11,0x66,0x8f,0x65,0x4f,0x55,0x76,0x88,0x5b,0x3a,0x24,0x39, +0xd7,0xf4,0x20,0xf6,0x4f,0x59,0x47,0xf6,0x99,0xfe,0x36,0x7c, +0xc6,0xde,0xf3,0x60,0x2f,0x89,0xfe,0x06,0x7b,0x4e,0x9b,0xdc, +0xe4,0xdf,0xb6,0x5e,0x25,0xd5,0x7c,0xc1,0x0f,0x24,0x6c,0x82, +0x82,0x95,0x25,0xdc,0xed,0xa9,0x64,0xec,0xe5,0xaa,0x33,0x85, +0x07,0x0a,0xfe,0xad,0x29,0xb9,0x1b,0x35,0xa5,0x16,0x75,0x35, +0x25,0x7d,0x27,0x6b,0x80,0xea,0x5d,0xc1,0x24,0x38,0x8b,0xec, +0x97,0x7d,0xe5,0x46,0x35,0x6c,0x9f,0xba,0x34,0x46,0xb4,0x05, +0xcf,0x79,0xd5,0x16,0xfc,0x30,0xf5,0xf8,0x84,0x64,0x6c,0x45, +0x6e,0xfe,0x2e,0xb1,0x65,0x15,0xac,0x7f,0x62,0xec,0x78,0x85, +0xf3,0x6f,0x5f,0x85,0xf1,0xc5,0x83,0xa2,0x8c,0x56,0xcf,0x40, +0xc8,0x11,0xed,0xbe,0x77,0x1b,0x0c,0x84,0x85,0x82,0x81,0xe0, +0x7c,0xea,0xfe,0x91,0xe2,0x23,0x9b,0xd2,0xb7,0xa6,0x6e,0xa2, +0x4e,0x32,0x41,0xbd,0xad,0xd0,0x86,0xc3,0x60,0x18,0xa5,0xb2, +0x4e,0x09,0x52,0x5d,0xab,0xad,0x6b,0x81,0xac,0x2b,0xb6,0xda, +0x62,0x1d,0x2b,0x6a,0x25,0x99,0xdd,0x85,0x25,0xd8,0x6f,0x0b, +0x37,0xdb,0x69,0xd0,0x07,0xce,0x0a,0x41,0xf2,0x53,0x94,0x2a, +0x53,0xfb,0xff,0x70,0x77,0x6d,0x57,0xdf,0xc9,0x57,0x82,0x23, +0xe0,0x2c,0x1a,0xf9,0xbe,0xd2,0x10,0x4f,0x85,0x75,0x37,0xeb, +0x34,0xc4,0x6c,0x1a,0xc4,0xdf,0x62,0xa5,0x46,0x8f,0x22,0x7c, +0x25,0x8e,0xfe,0xa8,0x2d,0xa9,0xd2,0x97,0xfc,0xa8,0x25,0x5c, +0xa2,0x4d,0x9a,0x10,0x6c,0xbe,0x44,0x3d,0xe3,0xea,0x39,0xe3, +0x7a,0x31,0xb9,0x06,0xc5,0xb4,0x21,0xe3,0x4f,0x67,0x16,0x75, +0x6c,0x4e,0x16,0x33,0x4b,0x1f,0xea,0xf4,0x90,0x9f,0xe1,0x5d, +0x29,0xa9,0xc7,0x47,0x29,0xdd,0xd1,0x44,0x60,0x02,0xc3,0x17, +0x9e,0xb3,0x3c,0xf6,0xdc,0x57,0xd2,0xe7,0x41,0x91,0xba,0xe2, +0x11,0x8f,0xb7,0xc6,0x40,0x6e,0xb0,0xd1,0xa3,0xa6,0xbd,0x54, +0x7b,0x8d,0x2f,0xc1,0xa8,0xd0,0xbe,0x89,0x5d,0x9c,0xb5,0x79, +0x69,0xf8,0x8d,0x26,0x0c,0x0d,0x9e,0xb9,0x0d,0xa9,0x49,0x34, +0x9e,0x2e,0x7f,0x96,0xb1,0x04,0x1a,0xf0,0x07,0xcb,0x51,0x46, +0xe3,0x10,0x41,0x5e,0xe7,0x01,0xe4,0xe1,0x2a,0x3d,0x9b,0x5f, +0x54,0x80,0x96,0xf8,0x11,0x75,0x3c,0x47,0xdc,0x6e,0x33,0x6e, +0x6c,0x55,0xe6,0xab,0x45,0x5e,0xd2,0x2b,0x20,0x83,0x5f,0xe8, +0x56,0x7e,0xd1,0x7c,0x8a,0x0f,0x8d,0x83,0xde,0xce,0xeb,0x46, +0xea,0xcd,0x51,0x56,0xd6,0x87,0xbb,0xff,0x8f,0x79,0xb4,0x3e, +0x51,0x86,0x27,0xf0,0x10,0x11,0x37,0x4e,0xb1,0xdf,0x99,0x5f, +0x25,0xfc,0x87,0xbd,0xcb,0x9e,0x54,0xea,0x5d,0x61,0x17,0xeb, +0xd9,0x12,0x27,0x9a,0x82,0x97,0x3b,0x1d,0x57,0xc3,0x3b,0xb8, +0x1a,0xa4,0x1a,0xf2,0x50,0x65,0x53,0xce,0xc3,0x94,0x87,0x6c, +0x5e,0x29,0x1c,0x87,0x3f,0x59,0x49,0x29,0xb6,0xb9,0xe4,0xd7, +0x73,0x99,0x9c,0x0c,0xe6,0x61,0x1a,0x6b,0xf0,0xe4,0x57,0xd6, +0xc5,0xaa,0x18,0x25,0xcc,0xfc,0x72,0xa3,0x55,0x8d,0x34,0x35, +0x88,0x07,0x34,0x0e,0xa8,0xc3,0xaa,0xca,0x2f,0xdc,0xff,0x6a, +0xe6,0xb9,0xf1,0x99,0x57,0x52,0xc8,0xc3,0x92,0x36,0xf2,0x8b, +0x03,0xdc,0xe1,0xc9,0xff,0xb3,0xef,0x48,0x64,0x35,0x73,0xfc, +0x77,0xdf,0x11,0x7e,0x25,0x53,0xf9,0xc0,0x1d,0x0e,0x66,0x33, +0x3a,0x72,0x2f,0xd0,0x9e,0xb6,0xd0,0x09,0x7b,0x86,0x4c,0xd7, +0xe1,0xb4,0xc9,0x4b,0x0e,0x6d,0x1b,0x89,0x36,0x8a,0x43,0x39, +0x30,0x8e,0x4a,0x8a,0xb6,0xc1,0x33,0x6c,0xa3,0x78,0x73,0xf7, +0xa4,0x3e,0x6d,0x02,0x21,0x80,0x36,0xfc,0x8e,0xfc,0xe7,0xc9, +0x2f,0xec,0x03,0x0e,0x91,0xa9,0xc7,0x13,0xf1,0x10,0xab,0xf8, +0xd8,0xec,0xa2,0xf2,0x0a,0xbe,0xf0,0x08,0x99,0x2f,0x36,0xbf, +0x38,0xb9,0x89,0x5f,0xf1,0x3e,0xef,0x05,0xc6,0x36,0x47,0x2d, +0x6d,0x27,0x83,0x99,0xad,0xec,0x97,0xfc,0xd2,0x22,0x1e,0x47, +0xd8,0x5e,0x12,0x6d,0x3c,0x3b,0xa7,0x7a,0x2b,0xb5,0x57,0xc9, +0x5f,0x2c,0xa0,0x02,0x80,0x8d,0xeb,0x0b,0x1b,0x99,0xb7,0x2b, +0xab,0x25,0xa2,0xf9,0xe0,0x4d,0xf6,0xa3,0xd0,0x02,0xb0,0x70, +0x58,0x7d,0x93,0x5d,0x46,0x7d,0xc0,0xea,0x5b,0xec,0xb2,0x61, +0x27,0x77,0x21,0xd9,0x21,0x89,0xdd,0xe6,0x86,0x72,0xbd,0xaa, +0xbb,0xb1,0x10,0xcd,0x4d,0xec,0x36,0x10,0x71,0x59,0x8f,0xf8, +0x53,0x4b,0xbc,0xa2,0xdf,0x80,0xa7,0xf8,0x91,0xe3,0xb8,0xdb, +0x40,0x94,0x16,0xa2,0xfe,0xdb,0xe2,0x5d,0xbb,0x2b,0xb1,0x37, +0x94,0x0d,0x09,0xa5,0xbe,0x44,0x81,0x66,0x24,0x51,0x9e,0xb4, +0x34,0x62,0x76,0xb8,0x35,0xa0,0x6a,0xcc,0xf3,0x3f,0xab,0x0a, +0x2b,0x8f,0x46,0xee,0x9f,0xb4,0xd5,0x96,0x2e,0xb7,0x03,0x37, +0x35,0x52,0x1a,0x3e,0x75,0xcf,0x99,0x33,0x79,0x7b,0x4a,0x5d, +0xb6,0x4a,0x17,0xf2,0xe6,0x8f,0x1f,0x3f,0x75,0x3e,0xf6,0xb9, +0x78,0xba,0x52,0x9a,0xb0,0x04,0xf5,0x23,0x83,0x2b,0x46,0x3c, +0x7d,0x5a,0x71,0x41,0xc8,0x9c,0xb6,0xbf,0x92,0x39,0xc1,0x2c, +0x35,0x4a,0x0a,0x9d,0x76,0xa0,0xa8,0xf8,0xd8,0x81,0x12,0x97, +0x8d,0xd2,0xb9,0xa3,0xb3,0xc3,0x46,0x85,0xd7,0x35,0x3d,0x34, +0x9a,0x95,0xd5,0x6f,0xe0,0xe5,0x63,0xb0,0x34,0x3d,0xfe,0xe6, +0x8b,0xce,0x1b,0x69,0x73,0xbb,0x91,0x36,0xe7,0xcd,0x1a,0x8b, +0x4e,0xb8,0xaf,0x61,0xe6,0x1c,0x81,0x99,0xa3,0x45,0xc9,0xaf, +0x38,0xf3,0xdc,0x25,0x6b,0x69,0xdf,0x91,0x32,0x34,0x47,0xcc, +0x5c,0x96,0x5b,0x66,0x60,0x66,0xd6,0x99,0x03,0x7f,0xc7,0x53, +0x84,0xd2,0xe9,0xd8,0xee,0xe3,0xf6,0x6f,0x54,0xe6,0xd8,0x13, +0x77,0x2c,0xa0,0xf2,0x0d,0x1e,0x2d,0x2c,0x15,0x0a,0x82,0x3d, +0xa8,0x20,0x50,0x97,0x3e,0x62,0xb3,0xf9,0x04,0x38,0x15,0xcc, +0x3e,0xed,0x08,0x73,0xf8,0x04,0x68,0xfc,0x88,0xb0,0xe5,0xd8, +0x0b,0xa0,0xe0,0x06,0x63,0x82,0x91,0x91,0x95,0xbe,0x7e,0x75, +0x76,0x02,0x1b,0x04,0x0d,0xcd,0x17,0x8a,0xc1,0x87,0x35,0x58, +0x96,0x85,0x3b,0x2d,0x58,0x22,0xa9,0xfb,0x52,0xd2,0x77,0x8e, +0xdc,0x35,0x64,0x38,0x74,0xef,0x64,0x3b,0x37,0xfa,0x87,0xe2, +0x8a,0x13,0x79,0x67,0x2c,0xb3,0x15,0x79,0x95,0xd0,0x70,0xc9, +0x49,0xbe,0xd4,0xa3,0x29,0x51,0x86,0x6a,0x6b,0x3a,0xcb,0x28, +0x45,0x10,0xeb,0x83,0xc1,0x5d,0xcc,0xb9,0x88,0xc6,0xff,0x11, +0x77,0xf8,0x28,0x08,0x12,0x8f,0x49,0xe1,0x30,0x95,0xb5,0xae, +0x82,0x4f,0xf5,0xa6,0xd4,0x71,0x13,0x56,0x34,0xba,0x55,0xc1, +0x0a,0x5d,0x7d,0xb9,0x16,0x33,0x7e,0xb5,0x44,0x73,0x87,0xf9, +0xba,0x3b,0x2e,0xe1,0xe5,0xe4,0xf7,0x3c,0x35,0xf9,0x7f,0x44, +0x2f,0x09,0x17,0x67,0xc4,0x89,0xac,0x98,0xa2,0xa6,0xaf,0xcb, +0x5e,0x9d,0xb5,0x92,0xbd,0xe7,0x69,0x2e,0x2a,0x80,0x36,0x0f, +0xa3,0xb3,0x96,0x27,0x47,0xc5,0x59,0xa2,0x30,0xd9,0xbe,0xfd, +0x40,0x76,0xee,0x09,0xeb,0xde,0x81,0x8b,0xe5,0x5e,0xa3,0x43, +0xc1,0xab,0xa7,0xed,0xec,0xb8,0xdb,0xa7,0x2f,0x1c,0x3d,0x72, +0x9c,0x7f,0xed,0x27,0xb8,0xef,0xcf,0xb2,0xa6,0xc9,0x60,0x3f, +0x2c,0x00,0xe6,0xb7,0xb6,0x9d,0x09,0x33,0xb1,0x44,0xd6,0xe0, +0xda,0x97,0xec,0x7d,0x3e,0xbb,0x7f,0x15,0x7f,0x9d,0x2c,0x83, +0xe3,0x30,0x7f,0x98,0xef,0x65,0x3b,0x13,0x62,0x62,0x09,0xcc, +0x74,0xfd,0x26,0xae,0x4a,0xdc,0x67,0x2b,0xbe,0x9a,0x39,0x19, +0xfb,0x6c,0xf1,0xb5,0x76,0x53,0x70,0x4a,0x9a,0xf7,0x46,0xdd, +0x52,0x33,0x7e,0xd4,0x2a,0x2b,0x03,0x88,0xbe,0xae,0x9a,0x35, +0x36,0xd8,0x40,0xfc,0xcd,0x46,0xe3,0x2f,0xfc,0x0d,0x8c,0x25, +0x7a,0x54,0x35,0x7b,0x93,0xbf,0x7b,0x47,0x56,0xfc,0xb5,0x55, +0xef,0xe9,0x71,0xd0,0x45,0xae,0xd3,0x02,0x3d,0xd4,0x56,0xb0, +0x70,0x45,0x7f,0x4a,0xa0,0xad,0xde,0x05,0x5b,0x0b,0x23,0x3f, +0x64,0xb2,0x68,0x5e,0x2c,0x29,0xd4,0x53,0xc3,0x5d,0xfa,0x1c, +0x5d,0x0c,0xb8,0x72,0x01,0xe1,0x4a,0x73,0x84,0x2b,0xcd,0x39, +0x5c,0x99,0xaf,0x16,0xff,0x0b,0x57,0xc2,0x38,0x5c,0x09,0xe3, +0x70,0xa5,0x98,0xc3,0x95,0x97,0x49,0x84,0xed,0x7c,0xa9,0x11, +0xdd,0xc6,0x4f,0x07,0x56,0xdc,0x19,0x6f,0x21,0xb3,0xf6,0x4e, +0xd8,0x07,0x4d,0x4d,0xe0,0x35,0x4c,0xab,0x29,0x97,0x38,0x8c, +0xc4,0xc5,0x30,0x9d,0x2f,0x86,0xb1,0x7c,0x31,0x14,0x54,0x1e, +0xa1,0x6e,0x7f,0x92,0xfa,0xd9,0x3f,0x61,0x82,0x98,0xfd,0xf0, +0xa5,0xbb,0xa1,0x1c,0xf8,0x45,0x28,0xae,0x7f,0xd2,0x52,0x2e, +0x29,0xe8,0x6d,0xe1,0x3c,0x1b,0x48,0x9b,0xf5,0xab,0x17,0xae, +0xcc,0x84,0xd9,0x75,0x6d,0x00,0x64,0xa5,0x26,0x52,0xcb,0x53, +0x59,0x44,0x6f,0x7d,0x5f,0x35,0x8b,0x47,0xf1,0x38,0x1e,0x39, +0xa9,0xb2,0x45,0xbd,0xf5,0xd5,0xd5,0x3c,0x40,0xc0,0x23,0x2f, +0xde,0xd4,0x9e,0xe0,0xee,0x9f,0xff,0xf4,0xd6,0x43,0xab,0xff, +0x63,0x6c,0x48,0x28,0x73,0x4b,0xc5,0x3d,0xe7,0xf4,0x1b,0x6c, +0x2f,0xf7,0x9c,0xec,0x27,0x3f,0x95,0xcd,0x35,0xde,0xe1,0xc6, +0x29,0x8c,0x7c,0x5d,0xf8,0xe0,0xfb,0x9e,0x05,0x3c,0x16,0x21, +0x3d,0xc7,0x7e,0xd8,0xe5,0xeb,0x31,0x8c,0xb8,0xc0,0xdb,0xcc, +0x59,0x3d,0x77,0x76,0xef,0xd7,0x5f,0x9f,0x9d,0x17,0x62,0x4b, +0x94,0x43,0x46,0x7f,0xda,0xb3,0xe7,0xe8,0xcf,0xce,0x21,0x5c, +0x0b,0xd2,0x3e,0xbd,0xac,0x97,0xc0,0x36,0x6a,0x9f,0x40,0x28, +0x79,0x9b,0xe8,0x8d,0xd8,0x71,0xad,0x91,0xaf,0x04,0x37,0xed, +0xb8,0xa3,0xa0,0xe8,0x28,0xd4,0xb8,0x78,0xea,0xf6,0x17,0x01, +0xb3,0x2d,0x21,0x4f,0x80,0x57,0x13,0x07,0xaf,0x0b,0xa1,0x1c, +0xe9,0xa1,0x6f,0xf0,0x95,0x34,0x80,0xd2,0x7c,0x94,0x67,0xad, +0x24,0xdf,0x2b,0x35,0x8f,0xd9,0x43,0x7e,0xc5,0xad,0x64,0xda, +0x9c,0x07,0x07,0x2f,0x4c,0xda,0x29,0xdc,0x84,0xe9,0x55,0x93, +0x69,0x09,0x89,0xfe,0x15,0xea,0x70,0x36,0x37,0xa4,0x5a,0xfb, +0xa2,0xb7,0x3e,0x59,0x16,0xdd,0x1d,0x92,0xd8,0x43,0xbd,0x50, +0xf0,0x20,0xdd,0x60,0x3a,0x6e,0xdc,0x89,0x07,0x77,0xf2,0x83, +0x37,0xc5,0xc1,0x1e,0xfc,0x60,0x0f,0x3e,0xdb,0x1d,0x3e,0x23, +0x28,0x89,0x87,0xc1,0xd8,0x43,0xc4,0xe8,0x29,0xf2,0x99,0x7e, +0x43,0xba,0x3d,0x4c,0xd5,0x7a,0x41,0x27,0xbd,0x17,0x37,0xb7, +0xdd,0x88,0x60,0xde,0x51,0x8f,0xb5,0x84,0x36,0xec,0x8e,0x46, +0x33,0x8a,0xe8,0x8b,0xae,0x4b,0xca,0x1d,0xa2,0x6f,0xa9,0x66, +0x16,0x3e,0xb3,0x54,0x59,0xc1,0x7e,0x11,0xbb,0xd0,0xdd,0x32, +0x89,0xba,0xff,0x42,0x02,0xd8,0xb6,0x5d,0xd3,0x07,0x75,0x0b, +0x82,0xf7,0x86,0x52,0xd2,0x8c,0x3c,0xfd,0xfe,0x47,0x4c,0x3e, +0xa9,0x4c,0x86,0xef,0x03,0xd8,0x66,0xbf,0xda,0x8b,0x04,0xce, +0x2c,0xcf,0xf4,0x67,0x5b,0x77,0x4d,0xf7,0xe5,0x9f,0xea,0x30, +0x18,0x3f,0xf5,0xec,0xfb,0x9f,0x58,0x2b,0xab,0x42,0x1b,0xf6, +0x23,0x6c,0x34,0x9b,0x59,0x05,0xa7,0xe1,0x76,0xed,0x44,0x24, +0xc7,0xa4,0xbd,0x2b,0xe9,0xeb,0x51,0x5e,0xb4,0x06,0xe5,0x45, +0xb7,0xd9,0x33,0xfd,0x0e,0x6e,0x2d,0x3a,0x52,0xec,0x57,0xa5, +0x55,0x13,0x56,0xdd,0x4f,0x7f,0x87,0x3a,0xb6,0x44,0x72,0xb5, +0x27,0xd9,0xa0,0xa8,0x8f,0x74,0x75,0x08,0xab,0x9a,0x2a,0x43, +0xd3,0x01,0x7e,0xb0,0xc5,0x4b,0xf0,0xf8,0x4f,0x32,0xd3,0xb7, +0xb7,0x59,0x2f,0x7e,0x19,0x2f,0xdb,0x11,0x76,0xe8,0xe5,0x11, +0xa2,0xbf,0xcb,0x43,0x53,0xea,0x69,0x87,0xd3,0xdc,0xc1,0x85, +0x47,0x85,0xd4,0xed,0x63,0x62,0x84,0x84,0x2a,0xfc,0xf7,0x1e, +0xfb,0xee,0x1c,0x3c,0xb8,0xcb,0x9e,0x5e,0xd0,0x3b,0xc3,0x2d, +0xc0,0xfd,0x6c,0x5a,0xb3,0xf6,0x62,0x8f,0xcb,0xf6,0xc6,0x2b, +0xe5,0x39,0x52,0x28,0x6d,0x82,0x42,0xc9,0x17,0xe6,0x1e,0x15, +0xcc,0xff,0xb6,0xca,0x90,0xf0,0x59,0xe5,0xe3,0xb3,0xfa,0xd4, +0x5b,0x5f,0x77,0x87,0x2d,0xc0,0x67,0xc5,0x0f,0x9d,0xc0,0x43, +0x8b,0xbd,0xf5,0xad,0x77,0xd8,0xb2,0xba,0x43,0x65,0x78,0x68, +0xaa,0xb7,0xbe,0xf8,0x0e,0x77,0x97,0xfc,0x50,0x12,0xf6,0xff, +0x10,0xd9,0x7e,0xf6,0x89,0xb6,0xf2,0x8a,0x7e,0x13,0xf2,0x71, +0xeb,0x9e,0x3f,0x71,0x62,0x7d,0xfa,0x87,0x16,0x7d,0x45,0xbf, +0x0c,0xbf,0xf3,0x23,0x82,0x4a,0x56,0x66,0x9e,0x80,0xea,0xef, +0x22,0x02,0x1f,0xe8,0xc3,0xd4,0x1b,0xcc,0xf3,0x50,0xfd,0xda, +0x98,0x0b,0x73,0x83,0xd9,0xdc,0xe0,0x6a,0xed,0x3b,0xbe,0x12, +0x26,0xb0,0x78,0xd5,0xe0,0x0c,0x89,0x2d,0xbf,0x24,0xe4,0xb1, +0x9d,0xe3,0xe7,0xc7,0x2d,0x3e,0xea,0xa8,0x8e,0xfc,0x48,0x99, +0xfa,0xef,0x75,0x18,0x47,0x0c,0xae,0xdb,0xe4,0xfa,0x86,0xe6, +0xaf,0x8e,0x4c,0xb8,0xc3,0xc2,0x0c,0xdb,0xea,0xf4,0x84,0xe8, +0xa1,0x77,0x58,0xb0,0x78,0x07,0x1f,0x72,0xeb,0x73,0x87,0x45, +0xd6,0xfd,0xe9,0x29,0xd1,0x57,0xbf,0x32,0xc2,0x4e,0xcf,0xb8, +0x2d,0xba,0xc3,0xa6,0x19,0x7b,0xb1,0xb0,0x71,0xde,0xf0,0x09, +0x87,0xf3,0x6a,0xa7,0xe0,0x4b,0xbf,0x72,0x2c,0xf0,0xeb,0xc5, +0x4b,0x3f,0x53,0xaf,0x0e,0x18,0x28,0xb9,0x60,0x23,0x99,0xf8, +0x3f,0x58,0x38,0x9b,0xb9,0x8e,0xb4,0xc2,0x35,0xfb,0xbd,0xd8, +0xb1,0x97,0xf4,0xe6,0x37,0xfa,0x33,0x81,0x18,0xf8,0xac,0xee, +0x46,0xa9,0xdd,0x5a,0x6c,0x82,0x92,0xc6,0x92,0xa1,0x3a,0x80, +0xad,0x83,0xa6,0x90,0x06,0xe9,0x5f,0x4b,0xac,0xe9,0xf3,0x9c, +0xad,0xb7,0x5c,0x94,0xff,0x77,0x5f,0xc7,0x3a,0x20,0x4a,0x51, +0xf7,0x9e,0x2b,0x1a,0x4e,0x2f,0x1d,0xd8,0x2e,0x06,0xde,0x70, +0x9e,0xcb,0x2c,0x2c,0xb5,0x1c,0x52,0x59,0x53,0x96,0x53,0x09, +0xf7,0xf5,0xc1,0xd4,0x69,0x18,0x11,0x06,0x78,0x4d,0x35,0xa3, +0x86,0x01,0xa6,0xf6,0xb9,0x42,0x14,0xc5,0x57,0xdd,0x31,0x94, +0xd7,0x78,0x55,0xd7,0x70,0x53,0x1c,0x29,0xf6,0x6f,0x2e,0x54, +0xeb,0xc6,0xbb,0xb7,0x3e,0x57,0xc6,0xbd,0x08,0x9a,0xab,0x41, +0xcc,0xf1,0x43,0x6e,0xd6,0x99,0xa3,0xa2,0xcd,0x27,0x58,0x88, +0x50,0x5e,0xae,0x22,0xdb,0xb7,0xe7,0xbb,0x44,0x5e,0xa6,0xa6, +0x76,0x44,0xf9,0x55,0xea,0xf7,0x9e,0x0a,0x11,0xbf,0xb2,0x08, +0x8c,0x37,0x18,0x77,0x48,0x9d,0x91,0xec,0x37,0x4d,0x7a,0x7d, +0xbb,0x35,0xa3,0xdd,0x25,0x7f,0x64,0x63,0xf1,0xb1,0x3e,0x83, +0xd9,0x7e,0x6c,0x36,0x8c,0x17,0x7a,0x0e,0x55,0xfb,0xb5,0x02, +0xf3,0x3a,0xe3,0x61,0xa1,0xba,0x8f,0x35,0x15,0x44,0x5f,0xb1, +0x63,0xb4,0x10,0x6c,0xa9,0xbd,0xe1,0x13,0x6a,0x7f,0x9e,0x07, +0x5a,0x8b,0x7a,0x41,0x9c,0xde,0x86,0xbf,0x88,0xf6,0x86,0x14, +0x6e,0x59,0x4b,0x31,0xca,0x7c,0x0f,0x22,0xe3,0x60,0x0e,0xf6, +0x9e,0xa9,0x03,0x52,0x35,0xb1,0x75,0x16,0x74,0x59,0x35,0x0b, +0x11,0x3d,0x57,0x60,0x82,0xe6,0x77,0x51,0x37,0x3d,0x62,0xbf, +0xb1,0x89,0x7a,0x97,0x20,0xf6,0x4c,0xf9,0x52,0xaa,0xae,0xca, +0x5a,0x7f,0xd4,0x85,0xed,0x3b,0xa9,0x42,0x0f,0x7e,0x01,0x73, +0x59,0x84,0x7e,0x61,0x88,0xb6,0xa8,0x25,0x9f,0x70,0x03,0x78, +0x30,0xbf,0xf3,0x2a,0xb6,0x8f,0xa4,0x8e,0x1d,0x71,0x47,0x9a, +0xe1,0x3d,0x14,0x36,0xbe,0x0c,0xc6,0x3f,0x35,0x5a,0xd3,0xd9, +0xb3,0x73,0xe5,0x0a,0x7c,0xea,0x41,0x4d,0x43,0x09,0x93,0xae, +0xdf,0x62,0x1f,0x59,0xb1,0xf3,0xfc,0x4d,0xd1,0x79,0xfe,0x61, +0x3f,0xc8,0x42,0x81,0x98,0x36,0xe5,0xb2,0x3e,0x85,0x4f,0xf6, +0x2b,0xdc,0x8a,0x3e,0xe5,0x27,0xdc,0x76,0x55,0x8f,0x97,0x1c, +0x5e,0x7c,0x41,0x0c,0x7d,0xd5,0x57,0x98,0xd4,0x01,0x2f,0xf2, +0x6e,0x54,0x8f,0x25,0x4a,0x01,0xe9,0xe6,0x9c,0x3e,0x14,0x65, +0x04,0x42,0x72,0x96,0xcf,0xa3,0x7c,0x48,0xd7,0xbf,0x20,0x6c, +0x90,0x96,0x52,0x85,0x8b,0xf2,0x73,0xe1,0x2d,0x5b,0xf4,0xc6, +0xd6,0x95,0xd7,0xef,0x68,0xd7,0x85,0x0b,0xdd,0x89,0x2b,0x35, +0x89,0xcf,0x26,0x53,0x4b,0x92,0xb3,0x15,0x37,0x22,0x6f,0xf2, +0x17,0xd1,0x2f,0xa0,0xa5,0x01,0xbe,0x1c,0x4a,0xf5,0xaf,0xb1, +0x61,0x4c,0x1a,0x7c,0x76,0x9b,0xfd,0xac,0xdf,0xc1,0xd7,0x1b, +0x60,0x45,0x35,0xbb,0x80,0xaa,0x38,0xd5,0x1b,0xc2,0xf5,0x2f, +0x09,0x75,0xfc,0xcd,0x10,0x04,0xe2,0x6a,0x80,0x70,0x77,0xe3, +0x8d,0xb6,0x97,0x70,0xf3,0xdc,0x5d,0xe8,0xc2,0x84,0xd9,0xac, +0x89,0xe7,0x8f,0x4c,0x34,0x75,0x51,0x06,0xe2,0x9d,0x56,0x89, +0x3b,0xd5,0xd3,0x1f,0x6b,0xf3,0x2f,0xea,0x0b,0x1e,0x6b,0x2b, +0xca,0x15,0xc1,0x1e,0x4d,0xa8,0x30,0x89,0x3e,0x41,0xdc,0xf0, +0x3c,0x06,0x7f,0x6d,0xf0,0x79,0xfd,0xad,0x7b,0xec,0x11,0xf3, +0xa7,0x76,0x5f,0x8a,0x9d,0x77,0xb4,0x13,0x97,0xf5,0x8d,0xa8, +0xff,0xef,0x4e,0x50,0xc2,0xcb,0x27,0xdb,0x55,0x75,0x04,0x9b, +0xcb,0x1d,0x5f,0x49,0x6f,0x7d,0x2c,0xf6,0x22,0xab,0x32,0x45, +0x74,0x00,0x1a,0x03,0x2d,0x9d,0x3f,0xe5,0xf3,0xfe,0xf0,0xf1, +0xa4,0x7c,0xe7,0xfc,0xe3,0x6b,0x32,0x0e,0xbb,0x20,0x31,0x95, +0xba,0xbd,0x49,0x94,0xb8,0x0d,0x51,0x6b,0xa2,0xe3,0x8c,0x8e, +0x21,0xdb,0x15,0x6c,0x6f,0x94,0x8d,0x14,0x44,0x17,0x0e,0x24, +0x0d,0xc9,0x21,0x8f,0xae,0xad,0x57,0xe0,0xa8,0x1f,0x0b,0x4f, +0x46,0x49,0xd8,0xe8,0xff,0x8f,0xae,0xff,0x0e,0x88,0xe2,0x08, +0xff,0xc7,0x71,0x0b,0xb7,0x07,0xb3,0x8a,0x62,0x5c,0xbd,0x3b, +0xc6,0x3b,0x11,0xb0,0x6b,0xec,0x25,0xc6,0x0e,0x56,0xba,0x62, +0xaf,0x51,0xd1,0xd8,0x63,0x89,0x8d,0x2a,0xa0,0xa2,0x88,0x22, +0x2d,0x1a,0x6b,0xec,0xa2,0x52,0x54,0xa4,0x83,0x52,0x2d,0x89, +0x62,0x4d,0x31,0x31,0x3d,0x51,0x63,0xba,0x99,0xc5,0x67,0xf1, +0xfd,0x9d,0x67,0xf6,0x30,0x79,0x7f,0x7e,0xef,0xdf,0x3f,0xb0, +0xb7,0x1c,0x7b,0x7b,0xb3,0x33,0xcf,0x3c,0xcf,0xcc,0xab,0x8c, +0xd4,0x66,0xdd,0xe5,0xfd,0xc0,0x19,0xfb,0xe2,0x27,0xd8,0x17, +0xa7,0x0f,0xc5,0xd6,0xfb,0x46,0x34,0xa9,0xd3,0x30,0xb4,0x14, +0xf8,0x46,0x58,0x0a,0x38,0x8d,0xb0,0x23,0x0e,0x0b,0x1e,0xaa, +0x05,0x42,0x95,0xb5,0xf8,0xa1,0x5a,0x6c,0xb4,0x6b,0xad,0x6e, +0xbf,0xaf,0x6e,0xaf,0x3f,0x4e,0xbd,0xaf,0xa6,0xd6,0x1f,0x6f, +0xbc,0xaf,0x6e,0x34,0x22,0x0f,0x91,0x3a,0xfd,0x8f,0xf8,0x92, +0x67,0xa5,0xdf,0x1f,0xec,0xd9,0x5b,0x65,0x8b,0xe2,0x0f,0x62, +0x1b,0xc4,0xdd,0x67,0xd5,0x7c,0x2e,0xe2,0x8d,0xbf,0x1b,0xe2, +0x1e,0xf0,0xe3,0x2f,0xf0,0xf8,0xb0,0x8e,0xff,0x7e,0x26,0x4c, +0xe9,0xc2,0x85,0x07,0x80,0x32,0x1e,0xdc,0xa0,0x29,0xb3,0x21, +0x01,0x79,0xa7,0x84,0xb4,0xbb,0xda,0x16,0xa4,0x1e,0x18,0x99, +0xf8,0x50,0x92,0xeb,0x02,0x09,0x3b,0x21,0x7f,0x8e,0xa6,0x05, +0x0d,0x3f,0x38,0x70,0xd7,0x26,0x43,0x1a,0x38,0xb3,0x38,0x2f, +0x2d,0xfb,0x8e,0xfc,0x97,0xc4,0x06,0x32,0xd7,0xb4,0x83,0xbf, +0xd8,0xec,0xb4,0xb8,0x37,0x8c,0xd8,0x11,0xec,0x0a,0x6a,0x73, +0x44,0xc3,0x88,0x89,0x6d,0x73,0xd9,0x6b,0xcd,0x53,0x9d,0x97, +0x19,0xf7,0x00,0xcd,0x87,0xd5,0xdf,0x11,0xa9,0x77,0xdb,0x1f, +0xd9,0x6b,0xba,0x9f,0x37,0xa2,0xe7,0xab,0xe1,0x80,0x9f,0x11, +0x15,0x88,0x80,0xd7,0xbe,0xb7,0xa5,0xd9,0x38,0xb2,0xf2,0x79, +0x5a,0x31,0x4c,0x56,0x62,0xd3,0xb3,0xb6,0x5d,0x76,0xbd,0x9c, +0x95,0x90,0x98,0x6e,0x13,0x0a,0x45,0x42,0x2b,0xa8,0x46,0xff, +0x9e,0x51,0x0f,0x58,0xa9,0xf8,0x9e,0xec,0xd4,0x55,0xfd,0xf3, +0x6b,0xa7,0xb3,0x5b,0xca,0x43,0x75,0xda,0x50,0x59,0x84,0xb5, +0x34,0xf4,0x5c,0x10,0x36,0x2f,0x68,0x12,0xbb,0x47,0xe8,0x0f, +0xb1,0x0a,0x59,0xb0,0x75,0x66,0xa0,0x5c,0x81,0x6c,0xf9,0x84, +0x36,0xff,0xe3,0xb5,0xfa,0xed,0x45,0x64,0xee,0x08,0x0a,0x9a, +0x76,0xf0,0x9e,0x24,0xff,0xa2,0xfe,0xc5,0x43,0xd7,0x77,0xea, +0xa7,0x4a,0x00,0x53,0x64,0x61,0x5d,0x72,0xff,0xc0,0x81,0x5c, +0xdb,0x26,0xf1,0x3d,0x4f,0x5f,0x43,0x95,0xb0,0x58,0x36,0x6f, +0x28,0x1c,0x52,0xf9,0x0c,0xaf,0x68,0x5b,0xd9,0x86,0xa1,0x90, +0xa3,0xde,0x95,0xd0,0x31,0xbe,0x3e,0x5c,0xc8,0xa1,0x3b,0xc2, +0x01,0xed,0x78,0x44,0xdf,0x26,0xe0,0xf2,0xd7,0x68,0x1e,0xdc, +0xa3,0x89,0x76,0x9a,0xff,0x0f,0x6f,0x8f,0xdd,0xa0,0x10,0xc1, +0xd8,0x0c,0x40,0xc6,0xa6,0x0e,0x07,0x8c,0x61,0x5d,0xe5,0x21, +0xfa,0x9a,0xf6,0xa7,0x56,0xb9,0x76,0x4a,0x47,0x85,0x87,0xaf, +0x61,0xc2,0x11,0xf2,0x23,0xfe,0xf5,0xb6,0x0a,0x89,0xa2,0x33, +0xfc,0x28,0x62,0xa8,0x7c,0x4f,0x62,0x4e,0x4f,0x53,0xf7,0xdd, +0xe2,0xcd,0x33,0x67,0xcb,0xe4,0x2d,0x41,0x5b,0x4f,0xc9,0xca, +0xdc,0x2d,0x53,0xb7,0x4c,0xdc,0x76,0x4a,0x30,0x84,0xda,0x8b, +0xd5,0x54,0x6d,0x9d,0x0f,0xca,0x18,0xca,0xca,0x06,0xbb,0xff, +0x23,0x92,0x2c,0xaf,0x23,0xc9,0xb2,0xeb,0x97,0x98,0xa9,0x76, +0x1d,0x28,0xc3,0xa4,0xf1,0xba,0xc5,0x03,0xfb,0x5b,0x78,0x46, +0xce,0x97,0xbf,0x18,0xc4,0x64,0x46,0x1e,0x7d,0x21,0x2b,0x77, +0x25,0xb6,0xf7,0x65,0x33,0xc3,0x48,0xc9,0x4e,0xe1,0xe3,0x21, +0x5e,0xb2,0x9b,0x51,0xee,0x45,0x33,0x4a,0x05,0x0e,0xfb,0x09, +0x86,0x22,0x7c,0xe4,0x27,0x84,0x81,0x22,0x37,0x63,0x7d,0x2c, +0xdb,0x13,0x10,0x04,0x9f,0xbe,0xa5,0xb0,0xc6,0xb2,0x61,0xf8, +0x04,0xf6,0x79,0x99,0xe4,0x6c,0xd8,0xbc,0x12,0x65,0xdb,0x62, +0x78,0x59,0x32,0xda,0x2b,0x6e,0x14,0x6f,0x25,0x3e,0xf9,0x18, +0xd8,0x3c,0xb6,0x4e,0x56,0x82,0xa3,0xc6,0x44,0x8f,0xc0,0x6e, +0xc1,0xe7,0x17,0x17,0x30,0x23,0x9f,0xbb,0x0d,0xb4,0x63,0x6d, +0x8c,0x42,0x85,0xa9,0x12,0x55,0x98,0x28,0xb1,0x10,0x78,0x5b, +0xd6,0x05,0x7c,0x79,0x00,0xa9,0x9d,0xf6,0x9b,0xf2,0x69,0x6d, +0xcf,0x21,0xd8,0x71,0xd0,0x65,0x64,0x98,0x7c,0xa3,0x88,0xf5, +0x60,0x3d,0x6e,0x4c,0x95,0xe1,0x77,0x02,0xbf,0xa1,0xbe,0x91, +0x98,0xb3,0x56,0xca,0x96,0xf2,0x5a,0xde,0xde,0x02,0xb5,0xeb, +0xa5,0x05,0xdd,0x91,0x79,0x0b,0x8d,0xc7,0xc5,0x83,0x44,0x44, +0xd2,0x56,0x2a,0x9f,0xaa,0xf3,0x86,0xc8,0x07,0x0e,0x9f,0xb1, +0x7d,0x60,0x3c,0xb3,0xe1,0xb0,0x7c,0xbc,0xc4,0x0e,0x96,0x92, +0x8d,0x2b,0xb7,0xaf,0xda,0xbe,0x8a,0x3f,0x0c,0xab,0xfa,0xab, +0xa2,0x6d,0x90,0x99,0x33,0x6c,0xbd,0xa3,0x56,0xcb,0x81,0xb5, +0xe5,0x15,0x46,0xd9,0xcc,0x8e,0x55,0xd7,0x35,0xf2,0x63,0x27, +0x25,0x99,0x2d,0xad,0xa6,0x9e,0xfe,0x44,0xf6,0xa5,0x2e,0xc1, +0x04,0xd9,0xa8,0xdd,0xa3,0x3b,0x20,0xed,0x02,0x0f,0x04,0x2d, +0x75,0x49,0xec,0x82,0xad,0x73,0xb7,0x1e,0x91,0xfb,0xea,0x92, +0x32,0x67,0x84,0x01,0x67,0x04,0x58,0x5d,0xe5,0x8d,0xd4,0x93, +0xd7,0xbf,0xea,0x56,0x96,0x2c,0x84,0x9d,0xc4,0x62,0x52,0xfc, +0x79,0xb3,0xac,0x33,0xa4,0x73,0x16,0xc8,0xc9,0xb9,0xe5,0x96, +0xf4,0xd1,0x2b,0x84,0x3c,0xd4,0x70,0x94,0xd2,0x54,0xe0,0xa8, +0x2f,0x3b,0x8a,0xed,0xfe,0x0f,0x1b,0xc9,0x9e,0xcb,0x4a,0x9d, +0xe4,0x5b,0x2b,0xa1,0xac,0xf6,0xcd,0x2a,0xdd,0xa6,0x7b,0xaf, +0x2f,0xdb,0x2b,0xc9,0xe6,0x9d,0x09,0xbb,0x77,0xec,0xdc,0x2a, +0x27,0xef,0xdf,0xfe,0x61,0x34,0x3b,0x22,0xc3,0x3a,0x3e,0x76, +0xdf,0xf5,0x92,0x61,0x17,0x1f,0xda,0x51,0xe2,0xf7,0x1b,0xe2, +0x37,0x86,0x33,0x1e,0xcd,0xd4,0x46,0xc3,0x90,0x4f,0x20,0xb3, +0xb5,0xd7,0x50,0x95,0x0d,0x19,0x6b,0xe8,0x35,0xee,0xf9,0x84, +0xc8,0x6c,0xee,0x15,0x98,0xcb,0x1c,0xf9,0xfd,0xe5,0xd8,0x9d, +0xf9,0x3a,0xca,0xd2,0x8b,0xc4,0x5f,0x93,0x1f,0xa1,0xdf,0x4b, +0xb5,0x76,0x5f,0x56,0xae,0xcc,0x32,0xf0,0x0e,0x2c,0x74,0x85, +0xdf,0x90,0xad,0x57,0xe7,0xe1,0x2f,0xb5,0x1f,0x9a,0x1a,0xca, +0x6c,0xb5,0xb8,0xa0,0xaf,0xc6,0xae,0xb1,0x87,0x72,0x5e,0xd9, +0xd9,0xbc,0x8f,0x0a,0x64,0x3e,0xd5,0xb5,0x65,0x25,0x82,0x97, +0x0a,0x0f,0xf1,0x97,0x50,0x82,0x83,0x8f,0x7c,0x44,0x57,0x62, +0xa7,0xaa,0x00,0x8d,0x49,0x36,0x2d,0xf0,0x5a,0xef,0xed,0x2a, +0x9b,0x13,0x12,0x76,0xa1,0xd2,0xb0,0x30,0xed,0x48,0x8c,0x95, +0xd9,0x3c,0xf8,0xf8,0xae,0xda,0x44,0x0e,0x8a,0xf4,0x8a,0x1e, +0xb2,0xc5,0x8c,0x71,0x7b,0x67,0x44,0x94,0x59,0x46,0x2b,0xa8, +0xc8,0xe8,0x2d,0x32,0x78,0xf9,0x30,0x2f,0x69,0x80,0x7c,0x5d, +0xfb,0xc6,0x87,0xed,0x93,0x64,0x43,0xe4,0xb4,0x51,0x9b,0x7b, +0xbb,0x6e,0xd2,0x27,0xff,0xc5,0x6c,0x8d,0xbc,0xea,0xfc,0xa4, +0x43,0xd6,0x44,0x66,0x91,0xaf,0xfb,0x09,0xe0,0x54,0xb5,0x6c, +0x2d,0xe1,0xf7,0xec,0x22,0x8b,0xbd,0xe0,0x0e,0x72,0x47,0x3f, +0x41,0x68,0xf5,0x9b,0xc0,0x96,0x96,0x0d,0x40,0xd2,0x6d,0xcc, +0xb0,0x2d,0x72,0x82,0xd0,0x9a,0x92,0x05,0xf3,0x56,0x92,0xab, +0x4a,0xbf,0xfd,0xb6,0x6a,0x12,0x2e,0x98,0xbb,0xf2,0x5c,0xa4, +0x9a,0x68,0x17,0x1e,0x4a,0x75,0x53,0xd8,0xbb,0xb5,0x09,0x82, +0x68,0x79,0xe6,0xa1,0x04,0x9f,0xa8,0xa7,0xe0,0x01,0x6f,0xbe, +0x8f,0xd4,0x7c,0xda,0x66,0x20,0x61,0xe6,0xf0,0x54,0xda,0xce, +0x9b,0x2c,0x35,0x76,0x5c,0x36,0xa1,0xfb,0xdb,0x56,0xb7,0x3f, +0x22,0x52,0x42,0x77,0x52,0xd2,0x98,0x1c,0xbe,0x94,0x92,0x53, +0x6a,0x39,0x3b,0x62,0x99,0xd1,0x73,0xe6,0x48,0xea,0xf1,0x39, +0x81,0x50,0x58,0x89,0xf0,0x84,0x57,0x03,0x51,0xde,0x82,0xbd, +0x43,0x0d,0xa9,0x42,0x7d,0x63,0xcb,0x03,0x09,0x3c,0x98,0x03, +0x25,0x43,0x78,0xa7,0xf9,0x92,0x68,0x77,0xd8,0x3d,0x4a,0x02, +0x31,0x0f,0x16,0xa2,0x52,0x1f,0x53,0xe9,0x28,0xf9,0x8f,0x2c, +0x6e,0x91,0x2e,0x8b,0x3b,0xd5,0xe6,0x6c,0x97,0xc9,0xa8,0x61, +0xb9,0x94,0x04,0x11,0x79,0x81,0x30,0xa4,0x9c,0x49,0xa5,0x16, +0x98,0x22,0x7e,0x4b,0x4e,0x68,0x43,0x94,0xa7,0x94,0xe6,0x93, +0xae,0xe8,0x6d,0xa6,0x79,0xb1,0x74,0xea,0x9a,0x47,0x86,0xa1, +0x88,0x27,0x9f,0xf7,0x3d,0xd9,0x21,0x2a,0xf7,0x7a,0xfd,0xb5, +0x6a,0xd4,0x93,0x50,0x23,0xb6,0x99,0x3e,0x57,0x3f,0x84,0x42, +0x71,0x63,0xa1,0xfc,0xe2,0x0f,0xf8,0x7f,0x91,0xf9,0xfc,0xa6, +0x63,0x89,0x76,0xfe,0x13,0x49,0x1b,0xf8,0x9c,0x2a,0xbd,0x11, +0xb8,0xae,0x2d,0x67,0x85,0x6c,0x2a,0x26,0xae,0xf4,0x2c,0xa1, +0xa6,0x26,0xc4,0x91,0xbd,0x80,0xb7,0xa9,0xd3,0x7a,0x72,0x7f, +0xd4,0x60,0x95,0x17,0x43,0xb4,0x59,0x81,0xd8,0x7a,0xe8,0x2d, +0x09,0xd9,0x39,0x78,0x87,0xf8,0xf5,0x27,0xea,0x74,0xf8,0x9c, +0x4d,0x23,0xd4,0xe5,0x2b,0xe2,0x2b,0x12,0xf3,0xde,0x46,0xcd, +0x1b,0x0c,0x54,0xe6,0x1f,0x51,0x77,0x97,0x40,0xa5,0x12,0xce, +0x4e,0x7a,0xc1,0x65,0x2a,0xa9,0x84,0x39,0xe9,0x5c,0x66,0x87, +0x58,0xa3,0x5d,0x8e,0xab,0x7a,0xf2,0x1f,0x7f,0x56,0xa3,0x1c, +0x57,0xfa,0x1c,0xdc,0x19,0xe9,0x06,0xbd,0x94,0x50,0x69,0xe2, +0xfc,0x53,0x05,0x85,0xd9,0xa7,0xae,0xda,0xf6,0x49,0x57,0xb3, +0x96,0x4f,0x9b,0xbe,0x60,0xf9,0x44,0x9b,0xb3,0x52,0x30,0xab, +0xa4,0x28,0x23,0xf3,0xe8,0x05,0xf3,0x2e,0x9d,0x55,0x6d,0x00, +0x67,0x53,0x61,0x6e,0x46,0xe6,0xf1,0xac,0x84,0x5d,0x89,0x78, +0xc2,0x11,0x64,0x53,0x7e,0x2e,0x34,0x78,0x11,0x95,0x12,0x11, +0x1f,0x8e,0x70,0x88,0xad,0x09,0x07,0xce,0xa5,0x9c,0x8f,0xbf, +0x64,0x7e,0x71,0x15,0xe2,0x26,0xde,0x91,0xb6,0x79,0xaf,0x9a, +0xee,0x3f,0x61,0xfc,0x2d,0x13,0x72,0xc1,0x85,0x66,0x16,0x8f, +0x85,0x1f,0x9e,0x4d,0x3e,0x7f,0xd1,0x72,0x0b,0xdf,0x81,0x9a, +0x59,0x7d,0x43,0xa6,0x75,0xef,0xef,0xa8,0xfe,0x38,0x5c,0x59, +0xf3,0xb2,0x2f,0xc1,0x76,0x75,0x65,0x5d,0xa8,0x1c,0xf5,0x9f, +0xa7,0xd1,0x8b,0x88,0x4d,0xb0,0x1d,0x61,0x11,0x76,0xf1,0xd6, +0x6c,0x14,0x7d,0x3a,0xeb,0x45,0xdd,0x9e,0x91,0x2d,0x09,0xf5, +0x0e,0x67,0x5e,0x2b,0x8c,0x9d,0x67,0x8f,0x07,0x53,0x07,0xf4, +0xe4,0x2a,0x2b,0xc8,0x15,0xb8,0x74,0x31,0x85,0x74,0x83,0xf6, +0xa6,0x7b,0x95,0x45,0x97,0xcf,0x5c,0xb6,0xab,0xb7,0x76,0x04, +0x8b,0xce,0xba,0x8c,0xda,0x4c,0xdb,0x7e,0xa2,0xef,0x04,0xdb, +0xad,0x32,0x2b,0x84,0x55,0xe6,0x26,0x18,0x44,0x2d,0x97,0xc9, +0x6b,0x4a,0x01,0x75,0x38,0x49,0x24,0x38,0xa8,0x36,0xa0,0xd2, +0x02,0xf1,0xc0,0x4e,0x13,0x6a,0xee,0x80,0x6b,0x92,0x5e,0xd4, +0xe1,0x37,0x42,0xdb,0x7e,0x27,0xf8,0x07,0x3b,0xf9,0x44,0xb4, +0x7f,0x28,0x8c,0x07,0xb3,0x2f,0x33,0xb7,0x05,0xb3,0x1f,0x33, +0x4b,0x70,0x58,0xb5,0xc1,0x0f,0xe4,0xba,0xee,0x9a,0x35,0xf1, +0x88,0x75,0x0f,0x73,0xae,0xd6,0xe2,0xfc,0x18,0x45,0x4b,0x89, +0x95,0xef,0x4c,0xb2,0xf4,0xff,0x3c,0x80,0x35,0x67,0xcd,0xbf, +0x40,0x03,0xad,0x1f,0x0e,0x28,0x37,0xa8,0x8b,0x3f,0x19,0x3f, +0x7e,0xd2,0x42,0x6f,0xdb,0x5a,0x69,0xd4,0xa4,0x8c,0x1b,0x36, +0xd1,0x17,0xa1,0x89,0x36,0x98,0xff,0x8d,0x86,0x91,0xf1,0x42, +0x37,0xfc,0x7b,0x36,0x83,0x5a,0xc7,0x8a,0xfe,0xe1,0xf7,0x19, +0xa9,0x18,0x43,0xfc,0x0c,0x9f,0x7d,0x11,0xbf,0xeb,0x53,0x1b, +0xcb,0x85,0x5c,0xb6,0x9a,0xa8,0x55,0xea,0x54,0xc5,0x8f,0x75, +0x00,0x77,0x71,0x4f,0xb7,0x8d,0x90,0xc8,0x8a,0xa9,0xcb,0x7e, +0xa2,0xdf,0xc8,0x04,0xbc,0x11,0x8f,0x6a,0x2d,0xc3,0x8f,0x75, +0x42,0xfb,0x2e,0xf1,0xe9,0xcf,0xf6,0x2b,0x37,0x4b,0xcf,0xdd, +0xd3,0xed,0xbb,0x50,0x68,0xf5,0x21,0x8c,0x53,0xa2,0x70,0x03, +0x9c,0x5a,0x5f,0x90,0x22,0xda,0xb6,0x80,0xa0,0x9f,0x67,0x18, +0x41,0x7d,0x23,0x69,0x0c,0x14,0x0b,0x1d,0xda,0x3f,0x84,0x7a, +0xf6,0x70,0x25,0x32,0x8d,0x3a,0x26,0x11,0xda,0x6e,0x12,0x29, +0x9a,0x55,0x59,0x75,0x29,0x0f,0xd7,0x7e,0x05,0xa0,0x9b,0x99, +0xc1,0x1d,0xe5,0xca,0x85,0x4f,0x85,0x7d,0x83,0xd2,0x81,0x7d, +0x4b,0x5b,0x84,0xe0,0xae,0x45,0x13,0xdc,0xe3,0x08,0xc2,0x2b, +0x36,0x18,0x43,0x9b,0x35,0x26,0xfc,0xc0,0x09,0xdf,0x68,0x47, +0x5d,0x19,0xd9,0x01,0xda,0x62,0x95,0x18,0x57,0x4b,0xd5,0x6d, +0xb5,0xb8,0x95,0xdd,0x6a,0x15,0x01,0xa3,0xd2,0x53,0x70,0x99, +0xa0,0x67,0x69,0x45,0x76,0xfe,0x89,0x42,0x33,0x6d,0x39,0x81, +0x38,0xca,0x23,0x88,0x36,0xb7,0x46,0x82,0x1d,0x89,0xb4,0x45, +0x84,0xe0,0xb5,0x85,0x7e,0x2a,0xc1,0x17,0xea,0x0a,0x28,0x12, +0x76,0xae,0x95,0xe9,0x04,0x7e,0x50,0x36,0xb3,0x46,0x6c,0x0e, +0x5b,0x2b,0x74,0xef,0xa1,0x21,0xaa,0xd5,0x0a,0x57,0xf3,0x8e, +0xc2,0xd9,0xf5,0x59,0xac,0x71,0xee,0x7a,0x44,0x0e,0x8d,0xa9, +0x98,0xf8,0xcb,0xb3,0x8a,0xab,0x9f,0xe8,0x8e,0x23,0xbb,0x8d, +0xbd,0xe1,0x2d,0xbb,0xab,0x79,0xb1,0xdd,0xd5,0x5c,0x17,0xb6, +0x45,0x89,0xb9,0x48,0xf5,0x00,0xc1,0xba,0xa7,0xee,0xd6,0x50, +0x2a,0x59,0xf9,0x58,0xcf,0x25,0xf0,0x48,0xdd,0x4e,0x5b,0xbf, +0x23,0x48,0x1d,0x3b,0x15,0x66,0x79,0x8d,0x95,0xb1,0xd4,0x63, +0x65,0xbe,0x62,0x83,0xe8,0x1b,0xd7,0x89,0xfc,0x72,0xae,0x00, +0xea,0xeb,0x2b,0x26,0xd4,0x75,0x37,0xd1,0x15,0xdd,0x6b,0x94, +0xe8,0xe7,0xe8,0xa7,0x3c,0x40,0x17,0x73,0xb7,0xd5,0x75,0x21, +0xb4,0xd5,0x1a,0x02,0x0d,0x95,0x00,0xf9,0x15,0xaf,0x4a,0x42, +0x6e,0x48,0x90,0xc7,0x1c,0x95,0xcf,0xa1,0x51,0xb5,0x1a,0x44, +0xa5,0x24,0xfe,0x51,0xbf,0x21,0x7f,0xc4,0x3c,0x97,0x8c,0x80, +0x39,0x60,0xd6,0x15,0x0f,0x79,0x64,0x54,0xbb,0xdc,0x21,0xf2, +0x73,0x75,0x9a,0x92,0x3d,0x91,0x59,0x4b,0xbf,0xb9,0x54,0x72, +0xd9,0xbc,0x2f,0xf9,0xc0,0x8e,0x03,0x9b,0x59,0x0e,0xb4,0x31, +0x5d,0x28,0x83,0xd3,0xb8,0x33,0x1f,0xba,0x63,0x53,0x84,0xf9, +0xfd,0xd0,0x2d,0x3b,0x4f,0x9f,0x4f,0xcb,0x8a,0xbf,0xac,0xd6, +0x91,0xd8,0xde,0xde,0xc1,0x10,0xd9,0xc7,0x51,0x6d,0x05,0x66, +0x85,0x19,0x87,0x82,0xf1,0xd5,0x2b,0x22,0x6b,0x3b,0x10,0x2b, +0xce,0xb3,0x8f,0x9b,0x01,0x02,0x2b,0xbe,0x1d,0x31,0xe5,0xaf, +0xc7,0xea,0x66,0x1c,0x1e,0xca,0x78,0x54,0x17,0x1e,0x64,0x2a, +0xbd,0x96,0x55,0x78,0xa2,0xc4,0xf1,0xdf,0x78,0x2d,0xb5,0x13, +0x1d,0xd6,0xf8,0x9a,0xd5,0xce,0x23,0xde,0x20,0x66,0x21,0x6a, +0x20,0x81,0x85,0x30,0x28,0x0b,0xaf,0x9c,0x4c,0x1d,0xd7,0x12, +0xdd,0x2f,0x24,0xf6,0x28,0xcc,0x04,0x07,0x32,0x5c,0x6c,0xdb, +0x54,0x43,0x88,0x04,0xe7,0xe0,0x81,0x12,0xc1,0xb2,0xbd,0xa0, +0x8c,0x2a,0x3f,0x20,0xc5,0x7c,0x23,0x8f,0xbc,0x5d,0x98,0x02, +0xd9,0x44,0xae,0x47,0xbc,0x2d,0xb4,0x23,0xde,0xb2,0x5f,0x23, +0xde,0xd6,0xd9,0x11,0x6f,0xff,0xa1,0x27,0xda,0x11,0x6f,0xd6, +0x8d,0xc4,0xdb,0xda,0xee,0x9b,0xf0,0x94,0x70,0x94,0xb3,0xd4, +0xc1,0xcf,0x99,0xc9,0x59,0xf9,0xba,0x8b,0xcd,0xdc,0x40,0xea, +0xf1,0x05,0x49,0x4a,0x4c,0xde,0x21,0x78,0x1b,0x26,0xd3,0x9d, +0x92,0x82,0x0b,0xe9,0xd9,0xc9,0x7a,0x58,0xe9,0x84,0xca,0x81, +0x25,0x68,0x52,0xd2,0x84,0x5c,0x48,0xca,0xb9,0x6a,0xc9,0xf0, +0x5a,0x62,0xec,0xb4,0x34,0xb8,0xeb,0x00,0xab,0xdb,0x9f,0x11, +0xd4,0x63,0x31,0xb9,0xcc,0xa3,0xd4,0xc8,0xa5,0x46,0xcf,0x59, +0x63,0xa1,0x75,0x3b,0x0c,0x4b,0x95,0x85,0xf9,0xe9,0xf9,0x3c, +0xb3,0xdd,0xb3,0x5d,0x88,0x4a,0x77,0x35,0xdd,0xab,0x2e,0xcc, +0x4b,0xcf,0x4d,0x4a,0xb4,0x87,0xa5,0xb6,0x7a,0x58,0x8a,0x48, +0x0b,0xdf,0x19,0x46,0xdb,0x65,0xf2,0x1c,0x19,0x8d,0xfd,0xa0, +0xb5,0x35,0x36,0x4b,0xb8,0xd9,0xe8,0x6a,0xc4,0x9b,0x74,0x98, +0x8a,0xee,0xf5,0x47,0x6d,0xbb,0x09,0x75,0xe2,0xc3,0x7a,0xd6, +0x7d,0x75,0xfa,0x70,0x08,0x36,0x6a,0x7d,0xa1,0xf7,0xcb,0xa6, +0x44,0x7e,0xdd,0x29,0xe1,0x3c,0x0c,0x7c,0xe9,0xf5,0x9f,0x59, +0x53,0x42,0x04,0x17,0x1f,0x09,0x1f,0x29,0x62,0xf3,0x4e,0xe8, +0x2b,0xe8,0x96,0xbc,0x63,0x7c,0xe6,0xc0,0x5a,0x41,0xaa,0x35, +0x5f,0xfa,0xf2,0x7c,0xd1,0xb9,0x78,0x24,0xd5,0xc2,0xda,0xda, +0xed,0xe4,0x15,0x2f,0xce,0x42,0x6e,0x4a,0x90,0xc3,0x16,0x28, +0xb7,0x60,0xf6,0x0d,0xec,0x71,0x1f,0xeb,0xb3,0xed,0xb6,0x9d, +0x54,0x7e,0x8f,0xc8,0xa3,0x89,0x96,0xc4,0xc7,0xeb,0x7b,0xea, +0x56,0x2a,0xa3,0x00,0xed,0x5d,0xd4,0xd4,0x9b,0xa0,0xb0,0x6e, +0x31,0xd2,0xe4,0x75,0xeb,0x96,0x84,0x58,0x7c,0x6e,0x53,0xcb, +0xd7,0xba,0x7b,0x4d,0x26,0x35,0x77,0x42,0x2f,0x47,0xcf,0x3b, +0xe4,0xff,0xf4,0xbd,0x5a,0x64,0xf7,0xad,0x5a,0x45,0x74,0x5b, +0xdf,0x7f,0xbd,0xaf,0x14,0x76,0xa0,0x9c,0x0f,0xae,0xa1,0xaf, +0x37,0xfd,0xa7,0xac,0x5f,0xbf,0x9c,0x36,0xef,0x4a,0x6e,0x8b, +0xfd,0xfe,0xa9,0x07,0xac,0x49,0xfa,0x7e,0xff,0x32,0xc9,0x43, +0xdf,0xef,0xff,0xd3,0x76,0xfa,0x3f,0xfb,0xfd,0x76,0xe9,0xff, +0x6a,0x62,0x37,0x35,0x34,0xdd,0x26,0x90,0x5d,0xbb,0x97,0x50, +0xe9,0x00,0x81,0x25,0xca,0xfd,0x7b,0x75,0xbd,0x10,0x83,0xec, +0xc4,0x93,0x8a,0x7b,0x6c,0x21,0x95,0x70,0xcf,0xcc,0xe9,0x24, +0x81,0xa9,0x48,0x2c,0x87,0xc9,0x10,0x2c,0xd1,0xa6,0x57,0x88, +0x46,0xf6,0x2a,0xb4,0xf9,0x02,0xb2,0xcc,0x38,0xc8,0x6f,0x72, +0x9f,0xde,0x7e,0x25,0x5f,0x58,0xff,0x9d,0xae,0xd2,0x11,0x04, +0xcd,0x72,0xbd,0x50,0x5a,0x10,0xe5,0x30,0xa9,0xe9,0x4f,0x82, +0xf8,0x8b,0x1d,0xe1,0x76,0x6f,0xb2,0x43,0x97,0x30,0x7d,0x3d, +0xe3,0xbd,0xd2,0x08,0x0e,0x0b,0x26,0x40,0x4b,0x68,0x82,0xbb, +0x65,0x55,0xb9,0xf9,0xa7,0x72,0xf5,0xdd,0x32,0x54,0x2d,0x74, +0xb3,0x83,0x86,0x63,0x70,0x8d,0x39,0xeb,0x0e,0x9f,0x6a,0x70, +0x77,0x16,0x1d,0x0a,0x84,0x4c,0x80,0x7d,0xd3,0xad,0xd2,0x92, +0xee,0xbd,0xc2,0x08,0x8e,0x0b,0x82,0xf8,0x65,0x9a,0xa3,0xd9, +0xd9,0x75,0x7e,0x99,0x02,0xb4,0x4f,0x40,0xbe,0x8a,0x4e,0x21, +0xc4,0xcb,0x24,0xe0,0x65,0x0a,0xee,0xb0,0x5a,0xfd,0x32,0xb8, +0xf9,0x8b,0x12,0x8a,0xd4,0x79,0x3e,0x29,0x9e,0x79,0xad,0x4a, +0xdf,0x23,0xde,0x93,0xc4,0xb3,0x58,0xea,0x6c,0x23,0x94,0x46, +0x92,0x8f,0xa1,0x1d,0x6d,0x73,0x86,0xf0,0x72,0xa4,0x91,0x90, +0x76,0xcd,0xf2,0xe7,0xd3,0x63,0x43,0x08,0x01,0xaf,0x97,0x16, +0x1c,0x6c,0x7a,0xa5,0x39,0x1b,0xde,0x57,0x36,0xec,0xda,0xbc, +0x6d,0x53,0xa4,0xc0,0x30,0x1f,0xfb,0x28,0x59,0x40,0xb0,0xf6, +0x51,0x23,0x4f,0x3f,0xda,0x66,0x3e,0x3e,0x5d,0x74,0x66,0x5f, +0xe2,0x81,0xb8,0x7d,0x5b,0xd8,0xf1,0x6e,0xa6,0xd3,0xd8,0xb9, +0xa1,0x2b,0x6b,0x3c,0x16,0x9e,0xb2,0x4c,0xf6,0x74,0x2c,0xee, +0x93,0x5e,0x50,0xa2,0xbe,0x67,0xf3,0xd9,0x54,0xc4,0xa5,0xbd, +0xdb,0x07,0x16,0x40,0x27,0x6a,0x34,0x11,0x5e,0x6f,0x75,0x95, +0x04,0x8b,0x4c,0xf8,0x42,0x76,0x12,0x8e,0x14,0xd4,0xe5,0x7f, +0x08,0x12,0x62,0x70,0xa0,0xe4,0x17,0x80,0x8d,0xb5,0x08,0xfb, +0x20,0x74,0x7b,0x38,0x6d,0x53,0x49,0xf2,0x70,0xfb,0x4a,0x34, +0x4e,0x58,0x24,0x6f,0xe3,0x23,0xe7,0x52,0xce,0xed,0xbc,0x6c, +0x66,0x1e,0xa8,0x3e,0xf9,0xd6,0xcc,0x69,0x68,0xb8,0x3b,0xd3, +0x74,0xb3,0x38,0x2f,0xfb,0x34,0x1a,0xee,0x52,0x43,0x10,0xe1, +0x53,0xa3,0xb3,0x29,0x97,0xd7,0xbf,0x7d,0x6e,0x2a,0x9b,0x16, +0x8e,0x12,0x56,0x0d,0xeb,0x47,0x41,0xf4,0xe1,0x7a,0xf1,0xb4, +0xf9,0x6c,0x19,0x95,0x93,0x71,0x67,0x97,0xcf,0x48,0x63,0xa0, +0xa2,0x2d,0x5a,0x45,0xa8,0xc2,0x9f,0xc3,0xab,0xde,0x82,0x40, +0xd8,0xfc,0x1e,0xba,0x9c,0x9c,0x67,0x37,0xea,0x70,0x5a,0x18, +0x04,0xcd,0xa1,0x85,0xb5,0x68,0x56,0xf5,0xf5,0x9c,0x82,0x93, +0xf9,0xf5,0x14,0x1e,0x33,0x74,0xc0,0x19,0xb0,0x85,0xee,0xd4, +0x34,0x90,0xdc,0x2c,0xcc,0xcd,0x3a,0x9d,0x65,0xde,0xb3,0x2b, +0x89,0x5a,0x0a,0x88,0x82,0xb0,0xa2,0xf0,0xc8,0x88,0xcd,0xa8, +0x29,0x7a,0xf0,0x3c,0xda,0x6b,0x1d,0x19,0x45,0xdd,0xcf,0x93, +0xd3,0xc8,0x1a,0x4b,0x8a,0x4b,0xda,0xc2,0x6c,0xe0,0x68,0x2a, +0xa2,0xed,0x9a,0x11,0x61,0x54,0x97,0xa1,0x92,0x31,0xc2,0xa8, +0x0e,0x89,0x6e,0xe3,0x05,0xf1,0x7f,0x63,0xc4,0xa6,0x08,0xd3, +0x96,0x9d,0x47,0x3f,0x4a,0x11,0xfe,0xa9,0xfb,0xea,0x55,0xdb, +0x27,0x20,0x88,0x7c,0x82,0x00,0x91,0x67,0x23,0x88,0xbc,0xbd, +0x40,0x54,0xda,0x89,0x07,0x69,0x89,0xb4,0x65,0x27,0xdc,0x15, +0xee,0x8d,0xd8,0xeb,0xc1,0xf8,0x1b,0x99,0xb3,0xdb,0x10,0x7b, +0xdd,0x5d,0x30,0x67,0xc3,0x04,0x4c,0x80,0xdf,0xd9,0x96,0x9d, +0x47,0xb2,0x92,0xb3,0x76,0x16,0x21,0xe1,0xaa,0xb3,0xb4,0xa5, +0xdb,0xf4,0x49,0xd0,0xa4,0x3d,0x12,0xae,0x2a,0xf3,0x2f,0x9f, +0xbe,0x84,0x36,0x21,0xc2,0x52,0x96,0x52,0xf7,0xf9,0x44,0xf7, +0xbd,0x48,0xf2,0x86,0x23,0x28,0x40,0xcf,0x73,0x3a,0xfb,0xac, +0x0f,0xa9,0xfc,0xf3,0x96,0xf3,0x16,0xdd,0x18,0x8e,0x9c,0x31, +0x48,0x61,0x4e,0xe8,0x17,0x87,0xfb,0xff,0x3c,0x7a,0x44,0xf1, +0xe8,0xf1,0xbe,0xba,0x8c,0xb6,0x1e,0xf4,0x9f,0xdc,0xef,0x36, +0xce,0x5c,0x73,0x95,0xec,0x60,0xd6,0xb6,0xe4,0xdb,0x9c,0x92, +0x1c,0xf3,0xde,0x3d,0xfb,0x77,0xec,0x8f,0xe6,0x33,0x97,0xab, +0xe9,0x02,0xef,0x81,0xcc,0x65,0xc3,0x9e,0xd0,0xf8,0x8d,0xe1, +0xe6,0x75,0x61,0x5b,0x76,0x9e,0x3a,0x97,0x96,0x11,0x7f,0x99, +0x3a,0xcd,0x20,0xb1,0x7d,0xbd,0x27,0x41,0x44,0x5f,0x47,0x35, +0x09,0xdc,0x95,0xe7,0x23,0x3b,0xc1,0x38,0xfc,0x11,0xc7,0x6b, +0x07,0x75,0x1d,0x43,0xab,0xc2,0x0b,0xec,0xe7,0x31,0xe0,0x00, +0x3d,0x58,0xa3,0x71,0x50,0x33,0x92,0xdd,0x1d,0xa7,0xbf,0x18, +0x03,0x3f,0xb2,0x0b,0x3d,0xd3,0xd0,0x96,0xa5,0x03,0x75,0x5a, +0x4d,0xd8,0xac,0x56,0xac,0x07,0x48,0xd0,0x43,0xaa,0xa7,0x61, +0x1e,0xda,0x43,0x5b,0x56,0x09,0xdd,0xcd,0xff,0x77,0x58,0x1c, +0x11,0x7e,0xb7,0xc3,0x62,0xfb,0xe0,0x1c,0x4e,0xdb,0x06,0x13, +0x76,0x31,0x4a,0x89,0xef,0x17,0xee,0xbd,0xce,0xef,0x56,0x84, +0xe9,0xd0,0xad,0xbd,0x77,0x7f,0xb0,0xdc,0x84,0xd0,0x20,0xd6, +0xcf,0xc8,0x5a,0x43,0xce,0xab,0xbe,0x84,0xf5,0xf7,0xe6,0x89, +0xa6,0x5b,0xa5,0x0e,0x65,0x1f,0xe8,0xe6,0xf6,0xf3,0x40,0x16, +0x48,0xdb,0x2e,0x20,0x81,0x3a,0x94,0xb0,0xa2,0x52,0x80,0xd7, +0x05,0x94,0xd0,0xf5,0x8b,0x7a,0x59,0x4f,0x0f,0x94,0xf5,0xcc, +0x46,0x59,0x4f,0xed,0x9d,0xda,0x5c,0xf2,0x2a,0x9a,0x40,0x3c, +0x8f,0x9b,0xad,0x3b,0x92,0x56,0x54,0xda,0x2b,0xea,0x11,0x7d, +0x56,0xa4,0x80,0x5a,0xa7,0xb4,0x33,0x61,0x5f,0x22,0x58,0x6b, +0x5e,0x29,0xcc,0xfb,0x91,0xad,0xb8,0x02,0x19,0xf0,0x0b,0x2b, +0xbd,0x82,0xf2,0xe3,0xb7,0xc9,0xe9,0xd4,0x33,0xf1,0x59,0x66, +0x74,0xf3,0xfe,0xc6,0x5f,0x58,0x8e,0xf9,0xce,0x80,0xf7,0x47, +0x52,0x6b,0x57,0x02,0xbb,0x5f,0xb6,0x24,0x38,0x36,0x17,0xf2, +0xb1,0x79,0x3e,0x88,0x2d,0xe9,0xc3,0xa7,0xe8,0x4e,0x75,0x6f, +0x12,0xf6,0x0b,0x35,0x18,0x08,0x84,0x43,0x27,0x3e,0x40,0xa3, +0x7f,0x67,0x0b,0xd8,0x12,0xb1,0x50,0xde,0x41,0x77,0x5c,0x31, +0x13,0xb5,0x09,0xba,0x6a,0xa2,0x8d,0xb6,0x6e,0xcc,0xf8,0xfa, +0x61,0xfe,0x5c,0x4f,0x71,0xb5,0xc0,0xf4,0xfb,0x6a,0xc8,0x70, +0xdd,0xee,0x68,0xb8,0x16,0xc4,0xdb,0xd5,0xfc,0xfb,0xd7,0xff, +0x3f,0x04,0x58,0xd3,0x1f,0xaf,0x7e,0xe7,0x6d,0xb3,0x2e,0x62, +0x5b,0xfc,0xd1,0xa3,0xa9,0x27,0x12,0xfe,0x23,0x78,0x10,0x19, +0xe0,0xb5,0x00,0x56,0xfa,0xda,0x05,0x0f,0x4e,0x17,0x9d,0xdb, +0x9f,0x74,0x68,0x07,0x0a,0x1e,0xb8,0xdb,0x05,0x0f,0x90,0xae, +0xc2,0xfb,0x15,0x7f,0x6a,0x21,0xf8,0xd4,0x12,0x95,0xbb,0x3c, +0xde,0xef,0xe6,0x57,0x9b,0x92,0x6b,0x2c,0x3e,0xbe,0x21,0xc4, +0x16,0x6b,0x9c,0xff,0xde,0xda,0x29,0x33,0xd6,0x1c,0x3e,0xb5, +0xde,0x3a,0xe3,0x5d,0xc3,0xa2,0x63,0x59,0x4b,0xef,0xb9,0x7e, +0x77,0x35,0xe7,0x66,0xe9,0xfc,0x53,0xb3,0x92,0x6c,0x09,0xc6, +0x9c,0xe4,0xf3,0x27,0x0b,0x2c,0x55,0xc1,0xe7,0x87,0x8e,0x59, +0xb0,0x62,0xf1,0x1a,0x6b,0xce,0xbb,0x86,0x93,0x07,0x8f,0xed, +0xcf,0x76,0xbd,0x70,0x6c,0xfd,0x62,0xdb,0x56,0xe3,0xd2,0xd5, +0xef,0x4f,0xb1,0xea,0xea,0xa9,0xc7,0xa8,0x53,0x34,0x61,0xab, +0x4c,0xa3,0xf6,0x6c,0x80,0xd0,0x85,0xdb,0x42,0xe2,0x16,0xc4, +0x99,0xc3,0x58,0xd4,0xa8,0xd8,0x83,0x10,0x4a,0xdb,0x08,0x4e, +0xed,0x56,0x02,0x67,0x50,0x39,0x75,0xad,0x69,0xe4,0x9e,0x55, +0x10,0x29,0x94,0x53,0x63,0x46,0xf2,0x0c,0x27,0x82,0xba,0x15, +0xd5,0x93,0x7c,0xb5,0x81,0x6c,0x86,0xc2,0xda,0x41,0xf0,0x3d, +0xd5,0xe7,0x65,0x18,0x2f,0xe8,0x3c,0x08,0xbb,0xa1,0xf0,0x1c, +0xf8,0x8c,0x6a,0x34,0x8e,0x85,0x5b,0x7c,0x1a,0x94,0x21,0xbc, +0xb6,0x8a,0xb4,0xba,0xaf,0x35,0x36,0xb2,0x00,0x36,0xd8,0xf0, +0xfd,0x17,0x37,0x1e,0xb2,0x06,0x16,0x26,0x0f,0x7e,0x0c,0x14, +0x5c,0x7d,0x07,0x0e,0x5c,0x69,0x7d,0xb0,0xdc,0xf0,0xf1,0xc1, +0x0b,0x25,0xdf,0xb8,0x7e,0x93,0x33,0x69,0x88,0x2d,0xc2,0x38, +0x66,0xaa,0xf7,0x38,0x7f,0x2b,0xac,0x87,0x10,0x43,0x5f,0xa3, +0x2c,0xd1,0xd6,0x8e,0xb8,0x7f,0x55,0x42,0xe0,0x92,0xb2,0xf1, +0x7b,0xf6,0x1e,0x7f,0xbe,0x79,0x41,0xec,0xfd,0xbe,0xb0,0x0a, +0x3a,0x4f,0x26,0x15,0xaf,0x22,0x89,0x0e,0x2e,0xdf,0x10,0xfe, +0xbe,0x0e,0x2e,0xcf,0x48,0xcd,0x2e,0xb0,0x9c,0x18,0xbc,0xd6, +0xd8,0x07,0x51,0xe9,0xbd,0x11,0x95,0x6e,0xd2,0x51,0xe9,0x02, +0xe3,0x89,0xe3,0xf1,0x08,0xb4,0x36,0x65,0x23,0xb8,0x1c,0xad, +0x33,0x57,0x77,0x80,0x95,0xff,0xa7,0x75,0xa6,0x12,0xfa,0x9c, +0xad,0xe0,0x49,0x77,0x5e,0x00,0x5b,0xd3,0x95,0xbf,0xa7,0xdf, +0x64,0xbb,0x43,0x00,0xdb,0x46,0x3d,0x07,0x13,0x18,0x4b,0xa6, +0xbd,0x5c,0x46,0xde,0x35,0x16,0x5c,0x3a,0x9f,0x79,0x3c,0x73, +0xd7,0x6e,0x51,0x78,0x3a,0xf1,0x3a,0x33,0x8f,0xd7,0x99,0x7f, +0xf3,0x2a,0x32,0x3e,0x3c,0x5a,0x88,0x82,0x1d,0x38,0x9b,0x92, +0x11,0x7f,0xc1,0xfc,0xe2,0x0a,0xc4,0x05,0xdf,0x95,0xb6,0x8d, +0x5a,0x35,0xc3,0x7f,0xe2,0xf8,0x4f,0x4c,0x91,0xaf,0xeb,0xcc, +0x9d,0xa2,0xce,0xbc,0x60,0xb9,0x4d,0x9d,0x7e,0x22,0xdb,0x06, +0x2c,0x9c,0xda,0x6d,0x60,0xc1,0x6c,0x53,0x49,0x61,0x46,0xe6, +0xb1,0xec,0x57,0x3c,0x29,0x6c,0x0c,0xc4,0xb4,0x48,0xa6,0xae, +0x3f,0x12,0x08,0x53,0xee,0x3f,0x45,0x9d,0xa6,0x32,0xd3,0x1a, +0xea,0x3c,0x0c,0xed,0x3b,0xe6,0x11,0x38,0xa9,0x35,0x50,0x7e, +0xa6,0x6d,0xde,0x25,0xdd,0x35,0xe9,0x11,0x4f,0xa6,0x7a,0xab, +0x09,0xca,0x53,0x98,0xfd,0x89,0x1a,0x32,0x86,0xba,0xf8,0x12, +0x49,0xeb,0x44,0x6d,0x6d,0x89,0x5c,0x45,0xbe,0x61,0x91,0xac, +0xd2,0xaf,0x03,0x38,0x3d,0x0f,0x80,0x7c,0x7f,0x56,0xe8,0x8f, +0x87,0xfe,0x50,0xce,0xde,0xef,0x65,0xdc,0x36,0xa0,0x2f,0xaa, +0x3c,0xfb,0x19,0xd8,0x32,0xf6,0x7e,0xda,0x31,0xd6,0xd3,0xa6, +0x79,0xb2,0x21,0x0a,0x38,0xfd,0xc1,0x9c,0x24,0x36,0xba,0x15, +0x73,0xf2,0x04,0x27,0x49,0x86,0x71,0xa4,0x26,0xed,0xe1,0x4f, +0x96,0xcf,0x68,0xf3,0xdf,0x48,0xc7,0xf0,0xc1,0xeb,0xbd,0xc6, +0x6e,0x19,0xb9,0x6d,0x78,0x9c,0xe3,0xd1,0x87,0x1f,0x7e,0xfb, +0xd4,0x72,0x0f,0xde,0x0b,0x60,0x5d,0x36,0x19,0xe3,0x3b,0x6c, +0xe8,0xff,0xde,0x70,0xc7,0xed,0x33,0x67,0xec,0x98,0x29,0x74, +0x76,0x17,0xb3,0xb5,0xa9,0x87,0x51,0x5e,0x5a,0x59,0x9f,0x12, +0xa9,0xab,0xcc,0x6e,0x89,0x37,0x64,0x08,0x77,0xbd,0xf4,0xb7, +0x57,0x18,0xdd,0x26,0x8f,0x83,0xb8,0xb6,0xc8,0x7f,0x32,0x55, +0x7f,0x55,0x60,0x77,0xd7,0xdb,0x8f,0xe0,0xc1,0xee,0x26,0x24, +0x52,0x08,0x4d,0xab,0x49,0xd4,0x74,0x0b,0x19,0x2e,0x8b,0xf8, +0x74,0xf0,0x61,0x22,0x6d,0xb5,0x03,0x83,0xd1,0x81,0x20,0x76, +0x40,0x82,0x63,0xd0,0x56,0x99,0xbe,0x61,0xf5,0xf2,0xf9,0x96, +0x71,0x5f,0xcc,0x61,0x2e,0xac,0xc5,0x17,0x39,0x37,0xb3,0xd7, +0x9c,0x9a,0x76,0xc0,0x9a,0xc8,0x5a,0x5c,0xd1,0x8e,0x04,0x33, +0x93,0x91,0x75,0xe6,0xb9,0xd6,0x62,0xc9,0x7b,0xf2,0x47,0xf9, +0xf9,0xc5,0x47,0xee,0xd8,0xce,0x4a,0x77,0x8a,0xd7,0xce,0x98, +0x31,0x79,0x8d,0xb7,0x6d,0x82,0x4c,0x5d,0xf8,0xa4,0x0d,0x05, +0x0a,0x75,0xff,0x96,0xa0,0x6a,0xb5,0x42,0x78,0x8d,0x79,0x40, +0xb9,0x55,0x9a,0x79,0xcf,0x7a,0x48,0xba,0x57,0x1a,0x32,0x7a, +0x4c,0x70,0xc8,0x48,0xdb,0x3a,0x69,0x64,0x70,0xe6,0x27,0xbc, +0xcc,0xb5,0xc8,0x84,0xa7,0x2a,0xfe,0x48,0x3b,0x0a,0xad,0x61, +0x79,0x82,0x76,0x04,0x81,0xdd,0x06,0xb4,0x85,0x06,0x4f,0x06, +0xb0,0x40,0x16,0xf8,0xe4,0x2b,0xd6,0xe0,0x9f,0x6e,0x5f,0xa1, +0xba,0xeb,0x2c,0x98,0xae,0xf8,0x05,0xf9,0x83,0x27,0x78,0x04, +0x56,0x55,0xf3,0x68,0x59,0x5d,0x51,0xc5,0xa3,0xa5,0x67,0xb9, +0xbf,0x1f,0x52,0x7d,0xb6,0x4e,0x64,0x5b,0x25,0xf8,0x8b,0x17, +0xbb,0x25,0x73,0xef,0x64,0x14,0x9e,0x3a,0x9b,0x6e,0x4e,0xd9, +0x9d,0xb6,0x23,0x65,0x2b,0xeb,0xdd,0xdb,0x54,0x7a,0x19,0xde, +0xfc,0x3c,0x94,0x3a,0x2c,0x27,0xfb,0x91,0x73,0xc5,0xf3,0x95, +0xb7,0xaf,0x68,0x5d,0x82,0xd9,0xdb,0x52,0xe4,0xc4,0xa9,0xb3, +0xa1,0x55,0x80,0xa3,0xdd,0xf9,0xbb,0x44,0xd8,0xaa,0xf7,0xd4, +0x89,0x7d,0xcf,0x68,0xb3,0x63,0x24,0x3b,0x19,0xfd,0x1c,0x91, +0xd2,0x27,0x16,0xa7,0x05,0xa5,0xaf,0x48,0xf8,0xc2,0xa0,0xa4, +0x35,0xf5,0x0c,0xe0,0xc9,0x78,0x39,0xa1,0xca,0x28,0xe2,0xbf, +0x52,0xf7,0x30,0x71,0x1e,0xa3,0x35,0x66,0xe7,0xd4,0xc6,0xa3, +0x25,0x6d,0x19,0x5c,0x47,0x65,0xc2,0xf9,0x2c,0x04,0x03,0xe6, +0xbb,0x5d,0x78,0xb2,0xd3,0xff,0x95,0x17,0x51,0x97,0x21,0xb0, +0xbd,0xb5,0x48,0x6f,0x5f,0x31,0x5d,0x92,0xbc,0x30,0x27,0x8b, +0xf7,0xd4,0x5d,0x09,0xe8,0x25,0xc6,0x1c,0x79,0x67,0x2d,0xc8, +0x6d,0xfb,0x77,0x64,0x72,0xc4,0x4e,0xb1,0xd0,0xb2,0x2d,0xc1, +0x70,0x20,0x23,0x25,0xf3,0x92,0xe5,0xf2,0xa8,0x85,0xc6,0x61, +0xab,0xa6,0x52,0xcf,0xf5,0x24,0x2a,0x46,0x74,0xfa,0xa4,0x8c, +0x4b,0x96,0x9c,0x51,0x21,0xc6,0x9e,0x21,0x53,0xba,0xf4,0xb7, +0x16,0xce,0x2a,0x29,0xe0,0x5d,0xfe,0x82,0x59,0x1d,0x8e,0x85, +0x57,0xaf,0xd7,0xfe,0x1b,0xfb,0x81,0xbd,0x3c,0xc8,0xf3,0xbc, +0x40,0xc2,0x66,0x82,0x8f,0x12,0x1c,0x34,0x09,0x3c,0xc0,0x3d, +0xb0,0xf4,0x8a,0xf5,0x43,0xe3,0xd5,0x8a,0x52,0xe6,0xce,0x3c, +0xca,0x27,0x4d,0xe4,0xf3,0x4e,0xdb,0xa3,0x68,0x44,0xa4,0xbf, +0x03,0x19,0x88,0xaf,0xdf,0xd1,0x9e,0xb5,0x17,0xef,0xb0,0xcf, +0x8b,0xa7,0xf6,0xd0,0xd6,0xdb,0xb1,0xf8,0x93,0x2a,0x79,0x13, +0x20,0xca,0x3a,0x39,0x29,0x15,0x77,0x8a,0x02,0xa1,0x9f,0xa9, +0xac,0x08,0xfc,0x59,0xf7,0xb0,0xb4,0x4d,0xf1,0xa1,0x11,0xb4, +0x79,0x2d,0xb9,0xae,0xcd,0xf4,0x61,0x13,0xa2,0x8d,0x40,0x26, +0x7a,0x41,0x3f,0x9e,0x2f,0x95,0x4d,0x7b,0x7c,0xa7,0xa2,0x34, +0xeb,0xaa,0x19,0x37,0xbb,0xce,0xd7,0xf0,0x40,0xf8,0x2b,0x6d, +0x11,0x2c,0x96,0x83,0xb6,0xb3,0x0f,0x28,0xf1,0x27,0xaf,0x55, +0x2a,0xcf,0x09,0xa1,0xdb,0x43,0xde,0x90,0x21,0x84,0x8b,0x1e, +0x1e,0x3e,0x94,0x67,0x5b,0x5f,0x65,0xb0,0xcb,0xa4,0xd7,0x3b, +0xdd,0x54,0x4d,0xfe,0x13,0x9d,0x6e,0xee,0xab,0xb3,0x95,0xdc, +0xe9,0xb7,0x0b,0xf3,0xb3,0xcf,0x5c,0x30,0x27,0x27,0x7f,0xb0, +0x23,0x65,0xb3,0xd0,0x13,0xf8,0xa4,0x38,0x8f,0x7a,0xbc,0x47, +0xf2,0x8b,0xa0,0x03,0x73,0xe2,0xd5,0x1f,0xca,0x0a,0x84,0x21, +0xcb,0xf7,0x50,0x46,0x72,0x66,0x01,0x6d,0xb7,0x96,0xbc,0xbd, +0x74,0x4a,0x8f,0x31,0xee,0xdf,0x9b,0x22,0x92,0xc1,0x42,0xf8, +0xf9,0xf3,0x29,0xd9,0xb9,0xd4,0xe1,0x67,0xd2,0x7f,0x96,0x2f, +0x28,0xfd,0x1d,0xd5,0x2a,0x70,0x53,0x58,0x83,0x91,0xd0,0x00, +0x36,0xeb,0xbf,0x96,0xf1,0xe4,0xa2,0xae,0x88,0xfc,0x5f,0x75, +0x3b,0x4b,0x27,0xea,0x58,0xc8,0xa7,0xe4,0x3b,0x62,0x07,0x42, +0x0f,0x52,0x8b,0xe9,0x1b,0x1e,0x18,0x85,0xb3,0x48,0x46,0x4a, +0x16,0x12,0xe5,0xd1,0xb8,0x47,0x09,0xb5,0x27,0xa2,0x3b,0x46, +0xc1,0xde,0xc3,0x84,0x1d,0x52,0x2b,0x94,0xe4,0xc4,0x14,0x7d, +0x11,0xcb,0x13,0x65,0x11,0x2e,0x9f,0xb9,0x2c,0x4c,0x59,0xb1, +0xfc,0x6c,0x83,0xf6,0xf2,0x9e,0xac,0x65,0x18,0x0c,0x16,0x5c, +0xd3,0x52,0xcb,0xb9,0x11,0xcb,0x8c,0xdd,0x96,0x06,0x77,0x1b, +0x6a,0x6d,0xfb,0x0b,0xd6,0xb4,0xa8,0xc6,0x18,0x89,0x35,0xed, +0x85,0xe4,0x1c,0xde,0x6d,0x47,0x2e,0x37,0x76,0x9e,0xe9,0x0d, +0x4a,0x37,0x44,0xab,0x5f,0x29,0xcc,0x4d,0xcf,0x33,0xab,0x46, +0xd8,0xca,0x6b,0xfb,0x91,0x60,0x84,0x18,0xfd,0xd7,0x52,0x4c, +0x92,0xd6,0xb3,0x07,0xca,0x5f,0x91,0xc6,0x92,0x4b,0x59,0xe7, +0x8e,0x9f,0xa5,0xed,0x02,0x49,0x72,0xf8,0x8e,0x30,0x6a,0x78, +0x9b,0x1c,0x42,0xf3,0x57,0xea,0x58,0x49,0xa6,0xf6,0x1c,0xd5, +0xee,0x47,0xde,0x3a,0xd4,0xba,0x93,0xf8,0x81,0xd2,0x2f,0x77, +0x9a,0x89,0x37,0xf3,0x85,0x33,0x17,0x93,0x93,0x78,0x2b,0x47, +0xb3,0xe6,0xd0,0xd8,0x14,0xee,0x5e,0xf7,0x00,0x57,0x52,0x5f, +0x11,0xed,0xcc,0x03,0xb6,0x84,0x99,0xae,0x19,0xb5,0x71,0x2c, +0x09,0xae,0xe2,0x26,0x10,0x56,0xa7,0xae,0x37,0x8c,0x75,0xcf, +0xbd,0xe0,0xa1,0xf8,0xc4,0x87,0x0a,0x6b,0x14,0x65,0x2c,0x2f, +0xb8,0x98,0x75,0x22,0x3b,0x79,0x97,0x58,0x50,0xef,0x04,0x36, +0x5e,0x62,0x83,0x07,0x6b,0x45,0xdd,0x3b,0x12,0xfe,0xfd,0x78, +0x35,0xdd,0x95,0x7f,0xbf,0x21,0x56,0xb7,0xe7,0xfc,0xfb,0x51, +0x8f,0x3a,0x52,0x2c,0xbe,0x56,0x47,0xfc,0x5a,0x5d,0xf9,0xd7, +0xba,0xa5,0x7f,0xad,0xe4,0x3d,0xa2,0xd1,0x5a,0x41,0x73,0x53, +0x28,0x34,0xc2,0xbb,0xe0,0x49,0x7d,0xd2,0x03,0xa9,0xee,0x3d, +0x16,0x43,0x09,0xb2,0xce,0xa8,0x87,0x17,0xd1,0x7e,0x41,0xb3, +0x04,0x4a,0xcd,0xc4,0x99,0xda,0x86,0xf1,0xfc,0x4a,0x8a,0x19, +0x3d,0x6e,0x36,0xac,0x16,0x0a,0x83,0xa6,0x9c,0xaf,0xce,0x17, +0x66,0x38,0xc6,0x4b,0x1f,0x26,0x1d,0x78,0xf9,0x17,0x1a,0xf4, +0x7c,0x29,0x0c,0x7a,0x0e,0xa1,0x41,0x8f,0x19,0x93,0xcf,0xb3, +0xac,0xf9,0xfa,0xa4,0x4d,0xbc,0xf4,0x31,0x0b,0x48,0xe1,0xb9, +0xcc,0x7d,0xfc,0x11,0x1c,0x1d,0x8e,0x06,0x3d,0x81,0xf0,0x41, +0x2f,0x2b,0x2e,0xb7,0x14,0xff,0x78,0xb1,0x8c,0xd7,0x21,0x33, +0x64,0xf8,0x50,0x98,0xb8,0x99,0x4b,0x51,0x24,0xa7,0xca,0x40, +0x29,0x5a,0xae,0x40,0xea,0xef,0x46,0xd6,0x8f,0x59,0xd2,0x0e, +0x3e,0xb5,0x45,0x55,0x1a,0x68,0xdb,0x0a,0x34,0x6e,0x6f,0x31, +0x96,0xb0,0x68,0x08,0x54,0x7f,0xe6,0x59,0x64,0xbb,0xff,0x16, +0xf2,0x3f,0xb0,0x60,0x2a,0x21,0x8c,0xf8,0xff,0x08,0x22,0x6c, +0x9f,0x40,0x27,0x38,0x20,0x3a,0x21,0x59,0xa0,0x13,0xae,0x69, +0x3f,0xf9,0x1a,0xd5,0x4d,0xd3,0x15,0x6a,0xfb,0x92,0x88,0x33, +0x28,0x05,0x6e,0xed,0xc1,0x9f,0x88,0x3c,0x83,0x4f,0xd2,0x72, +0xbd,0x06,0x4f,0x38,0x9f,0x36,0x4e,0xf3,0x5e,0x18,0x9f,0x47, +0x9d,0x66,0x93,0xad,0x7d,0xfc,0x27,0xc2,0xa6,0x3e,0x48,0xe4, +0x30,0x5d,0xf9,0xf2,0x52,0x61,0x8e,0xce,0x99,0xe5,0x33,0x3c, +0x15,0xb4,0xc5,0x7a,0x99,0x35,0xea,0xde,0x94,0xc0,0x72,0x76, +0x83,0x1a,0xcb,0x91,0x5f,0x8a,0xf6,0xac,0x11,0xc8,0x2f,0xe5, +0x1d,0xf1,0x8a,0xe5,0xc4,0x98,0xd5,0x46,0x8f,0x90,0x29,0xe0, +0x02,0x06,0xea,0x70,0x9a,0xec,0xd9,0xcd,0x2b,0xcb,0x2d,0xbc, +0x0a,0x6a,0x6d,0x2a,0xba,0x6c,0xd0,0xa6,0xb3,0xd1,0xd4,0xed, +0x3e,0x81,0x7d,0x0e,0x10,0xc0,0x1a,0xb0,0x00,0x7e,0x6b,0x85, +0x73,0x6e,0xe7,0x14,0x65,0x9e,0xcb,0x34,0xa7,0x24,0xa6,0xe2, +0x6a,0x4b,0xaf,0x76,0xfc,0x9d,0xd0,0xfd,0xf9,0xa6,0x94,0xd0, +0x78,0xa1,0x0c,0xba,0x25,0x01,0x81,0x72,0x68,0x8f,0xdb,0xa7, +0x5c,0xb3,0x06,0xb1,0x01,0x52,0xec,0xf0,0x69,0x93,0xc0,0x3c, +0xd8,0x11,0x61,0x72,0x3a,0x9c,0xbe,0xc3,0x54,0x7f,0xf0,0xe8, +0x6c,0x2d,0x99,0x65,0xe0,0xd5,0x4b,0x83,0x4a,0xb4,0x03,0x8a, +0x87,0x6a,0xe5,0xca,0x4b,0x3e,0x2c,0x91,0xdb,0x46,0x0d,0xee, +0x04,0xda,0x7a,0x58,0xe5,0xff,0x1a,0x9d,0xad,0xe6,0xd9,0xfb, +0xca,0xff,0x18,0x9d,0x51,0xb3,0x44,0x98,0x04,0x87,0x95,0x71, +0xe1,0x03,0xa3,0x7b,0x6d,0x71,0xa4,0x36,0x5c,0x5b,0x5a,0xbd, +0x81,0x0f,0xa3,0xf3,0xba,0x71,0xed,0x60,0xdd,0xb8,0x36,0x46, +0x18,0xd7,0x2a,0x55,0x5f,0x14,0x16,0x16,0x98,0xf7,0xa6,0x08, +0x5c,0xfe,0x3e,0x61,0x5c,0x0b,0xbb,0x59,0x3b,0xea,0xf2,0x0e, +0xbf,0x5c,0x02,0xb1,0xdb,0x47,0xfb,0xfd,0x6b,0x1f,0xcd,0x43, +0xe4,0x19,0x02,0x1b,0xcb,0xa8,0x63,0x43,0x5d,0x79,0x6f,0x91, +0xae,0xbc,0x47,0x9b,0x59,0x74,0xd1,0x32,0x59,0xd9,0xf4,0x2b, +0xbf,0xbb,0x85,0x88,0xc3,0x5c,0xdd,0x85,0xdf,0x5c,0xff,0xc9, +0x22,0x95,0xda,0x81,0xc0,0xfc,0xca,0xbb,0xaa,0x01,0x53,0x29, +0xfb,0xee,0x42,0x08,0x9b,0x48,0xe5,0x5b,0x3c,0xf2,0x8c,0x27, +0x5d,0x79,0x4f,0xe8,0x47,0x1d,0x3d,0x05,0x72,0x38,0x0d,0x71, +0x60,0x97,0x78,0xf6,0xb8,0x4d,0xd9,0x5c,0x61,0x88,0x9a,0x33, +0x2a,0x66,0x90,0x2b,0xcf,0xd2,0xd8,0x80,0x2a,0xea,0x89,0xbb, +0x0a,0xb0,0x37,0x50,0x70,0xb5,0x0e,0x2b,0xa5,0xab,0x2e,0x4c, +0x3f,0x62,0xdd,0xfd,0x4f,0x99,0xe6,0x37,0x81,0x7a,0x56,0x92, +0x09,0x7f,0xfd,0xf5,0xb0,0xec,0xb1,0x55,0x6e,0x45,0x69,0x1b, +0x82,0x16,0x75,0xed,0x15,0x01,0x21,0x43,0xc5,0xa9,0xa4,0xcf, +0x53,0x63,0xcb,0x4c,0x2b,0xb6,0x2d,0xdb,0xba,0x24,0xce,0x71, +0x5f,0x55,0xca,0x8d,0x4f,0x2d,0xb7,0x61,0x65,0x10,0xeb,0x12, +0x69,0x8c,0x1f,0x18,0x31,0x66,0x63,0xc0,0xd8,0xad,0x5e,0x98, +0xb8,0x1c,0xf9,0x78,0xef,0xa7,0x8f,0x2c,0xd5,0xf0,0x1e,0xff, +0x53,0x38,0xff,0xd3,0xc6,0x91,0x6b,0x7d,0x1c,0xb7,0x4f,0x9d, +0xba,0x63,0x2a,0x6d,0xfe,0x21,0x91,0xdd,0x17,0x4e,0x82,0x96, +0xd0,0xd8,0x5a,0x32,0xb7,0xfa,0x6a,0x4e,0xce,0xc9,0x8b,0x66, +0xec,0x1f,0x42,0xe8,0x42,0xd1,0x85,0x2e,0x9a,0x85,0xa7,0x51, +0x8f,0x5f,0x08,0xb2,0xf7,0x16,0xf2,0x2c,0xc2,0x4c,0xe0,0x43, +0xe5,0x34,0xeb,0x86,0x1d,0x19,0x37,0xbc,0x7f,0xad,0xd6,0x7e, +0x95,0xd4,0xf9,0x10,0xa1,0x9c,0x62,0xe6,0x21,0x89,0x6b,0xc0, +0x86,0xec,0xd2,0x35,0xcc,0x36,0x24,0xf6,0x14,0x9a,0xcd,0x77, +0xf4,0xab,0x6d,0x88,0xee,0x39,0xea,0x1f,0xd5,0xda,0x1f,0x48, +0x43,0xdd,0xc9,0xff,0xdb,0x7d,0x68,0xd2,0x6a,0xe8,0x82,0x6f, +0x5c,0xcd,0xba,0x0c,0x8d,0x3e,0x05,0xee,0xa8,0x43,0x58,0xdb, +0x18,0x2d,0xc2,0x21,0xa8,0xeb,0x60,0x4f,0x8f,0xa7,0x6f,0x0b, +0x01,0xf9,0xcf,0xff,0xfc,0xa3,0xdb,0x67,0xba,0x80,0x7c,0xa0, +0x32,0x21,0x70,0x02,0x0a,0xc8,0x07,0x96,0x95,0xf1,0x69,0xaf, +0xa2,0xe2,0xaa,0x50,0x91,0x9f,0x18,0x68,0xd5,0xf9,0x60,0xed, +0xdc,0x9e,0xbd,0x25,0xf8,0x60,0x8f,0x5e,0xfc,0x5d,0xcf,0x07, +0x9b,0xa2,0x04,0xd6,0xf3,0xc1,0x2a,0x78,0x5a,0x52,0x59,0xcf, +0x07,0x0b,0x78,0x4d,0xfa,0x42,0x63,0x43,0x61,0xa6,0x88,0x6e, +0x86,0x8b,0x8d,0xe8,0x6b,0x28,0xf3,0xd4,0x77,0x3a,0x6d,0xba, +0x9b,0xbc,0x2e,0x22,0x71,0x4b,0xd3,0x93,0xb9,0x8e,0xd6,0xdc, +0x78,0xf2,0xe0,0x26,0x92,0x87,0x9f,0xb5,0xe7,0x3c,0x57,0x88, +0xc7,0xf3,0xfc,0x2e,0x50,0x5c,0x7a,0x0d,0xe1,0xf3,0xd0,0x6d, +0x45,0x6d,0x57,0x03,0x55,0x12,0x75,0xe6,0x85,0xb6,0xb2,0xa1, +0x2b,0x98,0x22,0xa0,0x8b,0xeb,0x12,0xd6,0x96,0x5d,0x67,0x7b, +0x10,0x28,0xfd,0x31,0xb4,0x86,0x6b,0xb0,0xef,0x77,0xa9,0x3e, +0xd4,0xc8,0x8a,0xd6,0xe1,0xc5,0x70,0xb8,0xdc,0x96,0xa8,0x71, +0xec,0xe9,0x70,0x09,0xd2,0x1d,0xb4,0x0e,0xac,0xb1,0xca,0x63, +0x84,0x3a,0x4c,0x7d,0x8f,0xda,0x92,0x09,0x1b,0xc1,0x96,0x57, +0x41,0x2e,0xe4,0xd1,0x36,0xbd,0x09,0x1b,0xc2,0x56,0x54,0x41, +0x1e,0xe4,0xb0,0x32,0x09,0x3a,0x83,0xab,0xf2,0xfb,0xc8,0xf6, +0xb0,0x0a,0x7f,0xac,0xe5,0x93,0xc5,0x30,0x6d,0x82,0xb1,0xce, +0x85,0x05,0xd0,0x26,0xc8,0x25,0xb5,0x38,0x11,0x16,0x88,0x19, +0x5c,0xd8,0x6d,0x96,0x2f,0x16,0x9b,0xa2,0xab,0xa9,0x5b,0x31, +0x81,0x2f,0x1e,0xb0,0xc7,0xc6,0x3f,0x13,0x9f,0x26,0x7f,0x96, +0xe6,0xc8,0x5b,0xc2,0xf2,0xbc,0xea,0xb7,0xe7,0x9d,0x2a,0xc1, +0x02,0x96,0x4e,0x01,0x9d,0x3a,0x3c,0xf7,0x67,0x16,0x1b,0xee, +0xac,0xbc,0xe2,0x7d,0xce,0x8f,0xba,0x1e,0xe6,0x4d,0xb2,0xfb, +0x25,0x1f,0x91,0x0e,0x35,0x44,0x9b,0x0f,0xe3,0xa9,0xd3,0xc7, +0x84,0x1d,0xd4,0xa1,0xb8,0x26,0xea,0xd9,0x89,0x54,0x50,0x97, +0xdd,0xb8,0xfb,0x20,0xf0,0xb8,0x16,0xc4,0xe3,0xc2,0x57,0x04, +0xde,0x36,0x52,0x63,0x3e,0x0e,0x80,0x66,0xe7,0x70,0x23,0xa1, +0x4b,0x58,0x6a,0x28,0x9a,0x4c,0x84,0x46,0x52,0x1a,0x87,0x29, +0x84,0x07,0x6d,0x9a,0x43,0xc0,0x86,0xc6,0xbf,0x9d,0xfe,0xff, +0x95,0xc5,0x4a,0xc9,0xf4,0xef,0xf2,0x2b,0xb3,0xb2,0xb2,0xcd, +0x29,0xbb,0x52,0xb6,0x27,0xc7,0x32,0x3f,0x68,0xc4,0x2b,0x07, +0x18,0xfd,0xfb,0xc6,0xe4,0x30,0xd4,0x9c,0xdb,0x18,0xb1,0x75, +0xe7,0x47,0xe8,0x89,0x7d,0xd1,0xcc,0x02,0x2b,0xb5,0x69,0x01, +0x6c,0xa2,0x14,0x3b,0x34,0x78,0x0a,0xf4,0x19,0xe4,0xa8,0x96, +0xcb,0xd4,0x1a,0x55,0xaf,0x02,0xab,0xa8,0x09,0x3d,0x24,0xea, +0x11,0x27,0xe4,0xce,0xa1,0xe5,0xc2,0xf1,0xd0,0x14,0xa8,0xf5, +0xca,0x3b,0x95,0xb7,0x2e,0x14,0x9f,0x28,0x34,0xef,0xda,0x95, +0xb8,0x7d,0x77,0x2c,0x33,0x41,0x0f,0x53,0x49,0x0e,0x2f,0x85, +0xbb,0x45,0xee,0x15,0x40,0x6a,0x4c,0xd5,0xde,0xa2,0x12,0x8e, +0x53,0xf5,0xaf,0x6a,0x9d,0x49,0x9d,0xa9,0xa4,0xb3,0x21,0xc8, +0xa4,0xf6,0xd6,0x99,0xd4,0xde,0xc8,0xa4,0x1e,0x22,0x98,0xd4, +0xa8,0x73,0x5f,0x45,0xdd,0xdf,0x22,0x76,0xed,0x5c,0x64,0x2b, +0xd1,0x66,0x4e,0xfa,0x52,0xbb,0x2e,0x0b,0x2d,0x40,0x42,0x51, +0xb0,0xe4,0x28,0x6f,0x26,0x1d,0x8f,0xa1,0xf9,0xe8,0x9e,0xf1, +0x29,0xf7,0xd8,0x3d,0x9d,0x0c,0x81,0x47,0xf5,0x14,0x09,0xf4, +0x89,0xd7,0xcf,0xd6,0x3b,0xc6,0xff,0x2f,0xa4,0x3b,0xff,0x2d, +0xd0,0xef,0x63,0x13,0x37,0xc1,0x38,0x83,0x8f,0xb4,0x89,0x8d, +0x1b,0x1b,0xfb,0x11,0x78,0x19,0x86,0x4d,0x60,0x8f,0xcb,0x86, +0x89,0xbf,0x6c,0x04,0x3f,0x83,0x9f,0xb4,0x91,0xf9,0xe1,0x5f, +0xc6,0x18,0x86,0x05,0xb1,0xc7,0xe5,0xf8,0x17,0x37,0xad,0xfb, +0x8b,0x61,0x70,0xb9,0x1d,0x51,0xf7,0xb0,0xa7,0xd2,0x30,0x48, +0xa7,0x2e,0x0d,0x88,0xa2,0xf5,0x63,0x8d,0x86,0xc3,0x15,0xdd, +0x80,0xee,0x6f,0xde,0x25,0x2f,0xa2,0x01,0x9d,0x11,0x0d,0xe8, +0x50,0xe7,0x3c,0x04,0xe1,0x0d,0x83,0x8c,0xd4,0xea,0xcc,0x53, +0x85,0xeb,0xdf,0xb5,0xaa,0xdb,0x24,0xa0,0xe3,0xfc,0x8c,0xf3, +0x78,0xf2,0x3b,0xdb,0x88,0xd2,0xfb,0x7f,0x0d,0x87,0x8b,0x92, +0x00,0xb6,0xfc,0xc4,0xff,0xff,0x14,0xda,0xd4,0x35,0x44,0x9b, +0xba,0x7a,0x67,0xd4,0xbf,0xe5,0x1e,0xfc,0xd6,0xc1,0x99,0x85, +0x79,0x69,0xf1,0x77,0xd8,0x02,0xe6,0x0c,0xcb,0xee,0xa8,0x1f, +0x21,0x26,0x64,0xc0,0xef,0xc3,0xe1,0x9c,0x90,0x65,0xff,0x7a, +0x98,0x04,0x47,0x1c,0xb4,0x01,0x2f,0xd4,0x01,0x7c,0x30,0x64, +0x92,0x1f,0xd9,0x30,0xe1,0x3d,0x90,0x2e,0xbc,0x07,0xbc,0xba, +0x19,0xb7,0x0d,0xec,0x47,0x5b,0x6c,0x26,0x5a,0x00,0x3b,0xc3, +0xe7,0xdb,0x2e,0x90,0xce,0x27,0x6c,0xcb,0x36,0x52,0xd7,0x1d, +0x5d,0x8a,0xa9,0xdb,0x10,0xbb,0x62,0xad,0x1a,0xa4,0x68,0x41, +0x5f,0xa8,0x41,0xac,0x71,0x0d,0x34,0xa6,0xc6,0x23,0xf8,0x28, +0xd7,0xb3,0x65,0xda,0x35,0x3f,0x35,0xbc,0xab,0xb6,0x1e,0x06, +0x49,0x02,0x38,0xa3,0xed,0xe6,0x2d,0xf2,0x9c,0x3a,0x2f,0x41, +0x41,0x41,0xda,0x6e,0x1e,0x61,0xe6,0x5f,0x84,0xd5,0x6a,0xf3, +0x50,0xfe,0xb2,0x86,0xf4,0xf6,0x15,0xee,0xaa,0x1b,0x46,0xba, +0x45,0x82,0xc1,0x75,0x15,0xdb,0x83,0x10,0xe9,0x66,0x2f,0x10, +0xb0,0x2a,0x11,0x5e,0x4d,0xf8,0xca,0x70,0x82,0x3a,0x25,0x12, +0x23,0x6d,0xc5,0x4f,0xfa,0xb3,0xc5,0xaf,0xda,0x11,0x6a,0xac, +0x21,0xbf,0xb2,0x10,0x84,0xd8,0x55,0x6b,0x2b,0x9e,0xa8,0xa1, +0xd7,0xb4,0x6a,0x78,0xc8,0xbf,0xdd,0xe9,0xeb,0xda,0x2e,0xfe, +0x71,0x7f,0xa8,0x6b,0xd8,0x46,0xad,0x6a,0x9c,0xba,0xb1,0xbd, +0xb6,0x06,0xc6,0x20,0x04,0xed,0xa6,0xa0,0x27,0x84,0xb2,0x0d, +0xda,0x27,0xe3,0xd5,0xcd,0x9e,0x5a,0x28,0x3a,0x7b,0x9b,0x49, +0x16,0x61,0xdf,0x6e,0x53,0x64,0xf5,0x1c,0x61,0x6f,0xbd,0xb2, +0x12,0xc8,0x40,0x44,0xd4,0xf1,0x1c,0x05,0xde,0xe2,0x91,0xa4, +0x67,0x05,0x6c,0x80,0x33,0x6c,0xb3,0x74,0x31,0x50,0x91,0xa9, +0xe3,0x40,0x52,0x46,0x5d,0x70,0x43,0xaf,0x59,0x38,0x29,0xd3, +0x08,0x76,0xae,0x77,0x61,0x55,0x0d,0xcb,0x78,0x15,0x46,0xfc, +0xb0,0x4b,0xad,0xba,0xc3,0x32,0xb0,0x23,0x51,0xe7,0x4f,0xc8, +0x0f,0x65,0xbe,0x6f,0x5a,0x7b,0x1b,0xdf,0x9c,0xe0,0xdb,0x93, +0x97,0x18,0x6e,0x2d,0xec,0x72,0xa0,0x6d,0xfb,0x91,0x21,0x90, +0x88,0xd4,0xb2,0x20,0xa4,0x96,0xb5,0x25,0xd9,0xb4,0x5d,0x04, +0xfa,0x07,0x52,0xe3,0x03,0x02,0x46,0xb9,0x3d,0x75,0x7e,0x93, +0x74,0x94,0xbb,0xc3,0x3d,0x3e,0xcc,0x0f,0x13,0x30,0xc8,0x55, +0xd7,0x32,0x7e,0xfe,0xf9,0xfa,0x42,0x7f,0x94,0x1f,0xf0,0x59, +0xd8,0x5d,0xa6,0x6d,0x12,0x48,0xdd,0x72,0x59,0x5d,0x4a,0x62, +0xd0,0x34,0x4a,0x2c,0xd3,0xa1,0xd7,0x41,0x43,0x58,0x88,0x9b, +0x26,0x3c,0x97,0xa2,0x8e,0x5f,0x10,0x6d,0xbd,0xfe,0xf8,0x97, +0xde,0x51,0x77,0x1a,0xe5,0xda,0x58,0xda,0xae,0x11,0xa9,0x41, +0xb0,0x99,0xa2,0x0d,0x63,0xd2,0x70,0xb8,0xc9,0x1b,0xeb,0x28, +0xfb,0x1f,0xde,0x15,0x8a,0x1d,0xf8,0x99,0x26,0xea,0x30,0xbc, +0xb9,0x97,0xe4,0xa1,0x8f,0xa2,0x7a,0x40,0x90,0xe6,0x51,0x2f, +0x1a,0xfb,0xb9,0xb0,0xc2,0x9b,0x21,0x04,0x63,0x45,0xcf,0xbb, +0x0e,0x40,0xc0,0x1f,0x51,0xd1,0xb0,0x80,0xd8,0x85,0xb5,0x15, +0x75,0x47,0x3f,0x49,0x4b,0x59,0x97,0xe4,0xa3,0xee,0x3c,0x61, +0x00,0xe9,0x01,0xab,0xd1,0xdd,0x0f,0x36,0xf5,0x92,0xb4,0x98, +0xf7,0xf9,0xe9,0xd0,0xe3,0x06,0x90,0xef,0xb3,0x2f,0xd1,0xfd, +0x40,0x51,0xc3,0x3a,0x48,0xda,0x16,0x3c,0x1d,0xce,0x4f,0xb7, +0x46,0xab,0xc0,0x2a,0xa3,0x33,0x82,0xd4,0x76,0x48,0xea,0xdb, +0x6c,0x2f,0x42,0xa7,0x1a,0x33,0x62,0xd4,0x9a,0xc0,0x6c,0xea, +0x86,0xea,0x40,0x83,0x93,0x56,0x41,0xbf,0x57,0x1b,0x09,0xeb, +0x37,0x38,0xfa,0x34,0x74,0xa7,0x0e,0x1b,0x89,0x38,0xf7,0x36, +0x9e,0x7b,0x1b,0xcf,0xf5,0xa1,0xcd,0x7c,0x78,0xde,0xd1,0x7c, +0x2e,0xd9,0x60,0x1c,0x3b,0x75,0x89,0x9f,0xdf,0xb4,0xf4,0x8f, +0xad,0x48,0x2d,0x7a,0x07,0x17,0x63,0x05,0x10,0x6a,0x05,0xab, +0xf6,0xd2,0xa4,0xba,0x77,0x31,0xee,0xfa,0xa8,0x09,0xdd,0x8c, +0xd4,0x63,0x1b,0x81,0x5d,0xb2,0x56,0x41,0x50,0xc1,0xfa,0x55, +0x27,0xa2,0x8b,0x4a,0xff,0x0c,0x5f,0xf9,0xfe,0x4b,0x3a,0x70, +0xb7,0x5e,0x9e,0x52,0x4f,0x3a,0xe8,0x6f,0x91,0x69,0x5b,0xe4, +0x7d,0xce,0x65,0x4b,0x7c,0x78,0x46,0x68,0x14,0xf4,0x37,0x75, +0xe7,0x20,0x49,0x4b,0x43,0xf7,0xf7,0x5d,0x76,0xf7,0x77,0xfc, +0xee,0x3e,0xea,0xe6,0x5e,0x46,0xbb,0x1b,0x62,0x93,0x07,0xec, +0x4b,0x1e,0x1d,0xb7,0xd4,0x3f,0xd5,0xbd,0xbc,0xc5,0xd0,0xed, +0x10,0x0a,0x68,0xb3,0x14,0x7e,0x01,0x01,0x8b,0xdf,0xcf,0x1f, +0x49,0xca,0x0d,0x6d,0x23,0x06,0xa2,0x69,0xba,0x55,0xe4,0x89, +0x7a,0xab,0xc8,0x11,0xe0,0x0b,0x2e,0x12,0x6d,0xb3,0x84,0xc8, +0x6e,0xbe,0x6a,0x42,0x57,0x23,0x75,0xc7,0x65,0x43,0xea,0xb2, +0x9e,0x08,0x43,0xca,0x1d,0xf7,0xd8,0x35,0xc4,0xe4,0xd7,0x36, +0x50,0xd7,0x28,0xec,0x0d,0x78,0xf7,0xae,0xba,0x7d,0x64,0x6d, +0x0b,0xa2,0xad,0xbd,0x23,0x81,0x2a,0x53,0xdb,0x45,0xb4,0x55, +0xa0,0xce,0x9d,0x89,0xf6,0x09,0xef,0x02,0x6f,0x4d,0x54,0xdf, +0x92,0x8e,0x41,0x21,0x92,0xff,0xca,0x85,0x70,0xe7,0x29,0x54, +0xad,0xd5,0xf6,0x3f,0x64,0x2b,0x99,0xed,0xba,0x51,0xee,0xa2, +0x75,0x21,0x01,0xaf,0x76,0xa0,0xbb,0xba,0x7a,0x41,0x2d,0x27, +0x75,0xfe,0x3d,0xf8,0x40,0xac,0xb5,0xaa,0x3f,0x52,0xb7,0x96, +0xba,0xd7,0xe4,0x2e,0xf6,0x5c,0xbb,0x22,0x20,0xf3,0x9d,0x60, +0x99,0xd6,0xa9,0x1e,0x47,0xff,0x03,0xe2,0xe8,0x7d,0x10,0x47, +0x1f,0x82,0x38,0x7a,0xfe,0x00,0x7c,0x89,0x9c,0x40,0xc0,0x71, +0x3a,0x01,0xa7,0xe9,0x3c,0xf7,0xb7,0x5f,0x91,0x39,0x41,0x37, +0x5e,0xa4,0xd4,0x86,0xa9,0x63,0xa9,0x73,0x02,0x0f,0x79,0x3f, +0x12,0x3f,0x03,0xf3,0x66,0xbe,0xa9,0xc7,0xd8,0x1b,0x68,0x1f, +0x10,0x47,0x8e,0xe1,0xc2,0x0f,0xb4,0x35,0x15,0xe5,0x80,0x89, +0xd1,0x88,0x0f,0x84,0x7c,0x01,0xfa,0x19,0xba,0xc1,0x3c,0x66, +0xf3,0xe6,0xf3,0xf9,0xef,0x88,0xc4,0x6b,0xc4,0xce,0xa8,0x8d, +0x8c,0x63,0x79,0xa8,0x80,0xf6,0x02,0x4b,0xf2,0x7a,0x05,0xa0, +0x3b,0x24,0xd1,0x26,0x23,0xf0,0x01,0x75,0xac,0x47,0xc9,0x9f, +0x14,0xfd,0xed,0x4f,0x81,0x92,0xf7,0x9c,0x4a,0x4e,0x19,0xe0, +0x8d,0xbb,0xec,0x09,0x3e,0x30,0x6f,0xd7,0x4d,0xec,0xa4,0x37, +0x66,0x0c,0x87,0xa4,0x6f,0xbf,0x38,0x74,0xb8,0xc0,0xe6,0x2c, +0xbd,0xfc,0x94,0x54,0xd7,0xcd,0xc4,0x72,0x46,0xc8,0x97,0xe5, +0x24,0x5d,0xae,0xb4,0x9c,0x1d,0xb7,0xcc,0xc8,0x87,0x25,0x75, +0x1f,0x49,0x34,0x55,0xb6,0xbb,0xdb,0xbc,0xc3,0xc3,0x43,0x1d, +0x11,0xde,0x80,0xe0,0x20,0xe3,0x9c,0x31,0x5d,0xcc,0x19,0xd3, +0xc7,0x51,0xc7,0x4f,0x89,0x1c,0x9d,0x1a,0xbe,0x3b,0x12,0xdd, +0x03,0x3e,0xe4,0x31,0x63,0xe0,0x30,0xf0,0x42,0xf7,0x44,0x84, +0x14,0xb2,0x45,0xea,0xfb,0x37,0xb4,0x32,0xc8,0xe1,0x27,0xf6, +0x09,0x1b,0xe0,0xc5,0xea,0xfa,0x1b,0x5a,0x05,0xe4,0x22,0xdf, +0x4d,0x9c,0x98,0xa7,0xe3,0xdc,0xb3,0xb4,0xae,0x84,0x36,0xbf, +0x82,0x7e,0xa7,0x1b,0x64,0xe9,0x8f,0xc4,0x27,0x29,0x9f,0xa1, +0xe7,0xe5,0x1c,0xb2,0x19,0xc5,0xd0,0xfd,0xb5,0x2f,0x79,0xfa, +0xfa,0x4f,0xe2,0x6f,0x29,0x5f,0xa6,0x45,0x57,0x51,0xb7,0xcf, +0xc4,0x06,0x1d,0x61,0x8b,0x79,0xee,0x9f,0x39,0x81,0x2d,0x07, +0x47,0x58,0x02,0x23,0x51,0xf8,0xfa,0x19,0xa6,0xce,0x77,0x88, +0x5c,0xd4,0x89,0xdd,0xed,0x6e,0xf4,0xf4,0xc8,0x08,0xf9,0xe1, +0x7b,0x43,0x22,0x1c,0x86,0x86,0x53,0x05,0x61,0x22,0x07,0xc1, +0xb3,0x53,0x1e,0xa8,0x8f,0x86,0x69,0xab,0x8d,0xf2,0xab,0x8b, +0xa4,0xec,0xd5,0x43,0xfe,0x19,0xc3,0xf8,0x67,0x78,0xe9,0xd3, +0xe9,0xd1,0x7b,0xec,0xbb,0x57,0xe7,0xc8,0x78,0xe4,0x2a,0xe1, +0x71,0xfd,0x84,0x9a,0x7e,0x8f,0x3d,0xc5,0x09,0x75,0x01,0xa4, +0xdf,0x65,0x4f,0xf1,0xac,0x61,0xfb,0xa2,0x77,0x77,0xbc,0xeb, +0xba,0x27,0x80,0x3a,0x7c,0x8f,0xc4,0xa3,0x64,0x7c,0xc4,0x23, +0xd9,0x58,0xfe,0x88,0x5b,0xd8,0xf0,0x89,0xfb,0x0a,0xfc,0x0f, +0x6d,0xd3,0xd5,0x4e,0xa7,0x11,0x36,0xa1,0x18,0xb2,0xbc,0x60, +0x1d,0x34,0x61,0xef,0x7a,0xf1,0x30,0x26,0x41,0x3b,0x59,0xa2, +0x86,0xd6,0xa4,0xcc,0xb4,0x16,0x9a,0x83,0x9f,0x3c,0x1c,0x4d, +0xd1,0x79,0x20,0x7a,0x3e,0x5c,0xd2,0x3d,0x31,0xe0,0x17,0x68, +0x52,0x77,0x83,0xb0,0x26,0xda,0x5c,0xe1,0x29,0x81,0x68,0xf1, +0xd6,0x88,0x16,0xff,0x10,0xd1,0xe2,0xf8,0xca,0x15,0x5f,0x1d, +0xc2,0x57,0xe6,0x28,0x0f,0x90,0xb7,0x82,0xd1,0x35,0x31,0x00, +0xbf,0xce,0x08,0x70,0x85,0x34,0x66,0x19,0xa1,0xd9,0xd4,0x4e, +0xd2,0x88,0x6a,0x85,0xbf,0xb0,0xb1,0x34,0x7e,0x5d,0x27,0x44, +0x34,0x34,0x85,0xa9,0x35,0xea,0x5c,0x6f,0xea,0x14,0x82,0x35, +0xab,0xe3,0x33,0x3d,0x86,0x2b,0x6c,0xd5,0x50,0x08,0x6f,0x57, +0xff,0x22,0x74,0x28,0x6c,0xb3,0xc3,0xc6,0xa9,0xd3,0x62,0x04, +0x39,0xbf,0x2d,0xa3,0xac,0x08,0x93,0xae,0xde,0x63,0x5d,0x2d, +0x7f,0x20,0xac,0xfd,0x30,0xc2,0xda,0x79,0xd5,0x83,0x75,0xae, +0xc2,0xe2,0x87,0x69,0xe7,0x1f,0xb0,0xf7,0x75,0x2f,0xcf,0x18, +0xc1,0x1a,0x18,0xa6,0x4d,0x7f,0xc0,0xb3,0x6c,0x0b,0x9e,0x89, +0x13,0x67,0x86,0x6b,0xd3,0xef,0xf3,0x33,0xca,0x7f,0xcf,0xcc, +0xba,0xcf,0x26,0x8b,0x33,0x1d,0x89,0x96,0x81,0x5c,0xf3,0x67, +0xca,0x14,0xd6,0x1f,0x3f,0xe0,0xc0,0xc1,0x5c,0xdb,0xc6,0x4a, +0x43,0x68,0xc8,0xe8,0x8d,0xa3,0x5d,0xeb,0x25,0x74,0x13,0x75, +0x93,0x91,0x63,0xd7,0xb5,0xed,0xfc,0xde,0x0c,0x03,0x48,0xbd, +0x1e,0xa8,0xcb,0x5f,0xa3,0x35,0xdf,0x5b,0xfc,0x71,0x87,0xd4, +0xee,0xb5,0x3b,0xbb,0xb1,0xfb,0x45,0x68,0xb5,0xf0,0x94,0x3d, +0x53,0x6e,0x42,0x77,0xe3,0x81,0x2f,0xf6,0xfe,0xfc,0x97,0xa5, +0x4c,0x46,0x6c,0x6f,0xe4,0x34,0xef,0xe8,0x5e,0xae,0x1b,0x65, +0x4c,0x1f,0x0e,0x48,0x5f,0xf3,0xa9,0x5a,0x37,0xcd,0x59,0x26, +0x8b,0x72,0xdc,0xed,0x35,0x6b,0x3d,0x03,0x2b,0x70,0xda,0xa6, +0x0b,0xe1,0x59,0x21,0x1b,0x34,0x12,0x06,0x41,0x77,0x36,0x68, +0x04,0xff,0x15,0x82,0x46,0x12,0x10,0xfa,0xbb,0x10,0x24,0xfe, +0x8d,0xad,0xac,0x10,0x70,0xf2,0xb8,0x87,0xec,0x9a,0x0e,0x27, +0x3f,0x0c,0x07,0x1e,0xb0,0xaf,0x10,0xb9,0x4c,0x9b,0xf5,0x12, +0x58,0xf6,0xe1,0x32,0xa4,0x32,0xf7,0x11,0x5a,0x6f,0xfe,0x58, +0x86,0xeb,0xe4,0x1a,0x87,0x15,0x04,0x3a,0xf3,0x61,0x17,0xa3, +0x5b,0xf0,0xb8,0x91,0x53,0xd2,0x93,0x1a,0xdd,0x71,0x05,0xf1, +0xd1,0x7f,0xdc,0x47,0xc9,0xf8,0xfa,0x63,0x1d,0x2b,0x7d,0xa7, +0x66,0x68,0x6d,0xaf,0x41,0x75,0x9e,0xd2,0xf4,0xd3,0x8b,0xae, +0x5a,0x65,0xbd,0x13,0xad,0x11,0x9d,0xc8,0x92,0x5c,0x51,0x09, +0x2b,0x03,0x7e,0x8e,0x35,0xca,0x30,0x0b,0x5a,0xe8,0xea,0x9a, +0xe8,0x24,0xda,0x93,0xb5,0xf9,0xe0,0x20,0xfa,0x87,0xa2,0x86, +0x76,0xc7,0x2d,0x8e,0x3f,0xf2,0x7b,0xfd,0xb5,0x52,0x14,0x63, +0xfc,0xe8,0xb7,0x6b,0xda,0x6f,0x92,0x3a,0x4f,0x36,0x80,0xbb, +0xbf,0xfa,0x63,0x15,0xb8,0x23,0x97,0x3f,0x9e,0x38,0xbf,0xe9, +0xfb,0x13,0xc8,0xfc,0x87,0x04,0x0f,0x11,0xfb,0x8d,0xfe,0x0c, +0x4d,0x98,0xe2,0x85,0xd0,0xfa,0xf7,0x3f,0x55,0xdf,0xaf,0xc7, +0x75,0x7f,0x70,0x1f,0x7d,0x2c,0xc5,0x71,0x9d,0x7a,0x1f,0xfb, +0xea,0x9b,0x44,0xdb,0x7e,0x0f,0xe7,0x65,0x44,0xc4,0x44,0xc8, +0x4c,0x2a,0xd7,0x06,0x1b,0xd9,0x0a,0x59,0xd9,0xb3,0x78,0x41, +0xc2,0x1c,0xd7,0x39,0x0b,0xb6,0xc5,0x2c,0xb6,0xc9,0x93,0xfc, +0x26,0xf3,0x9c,0xb6,0xbb,0x4f,0x49,0xa9,0x75,0xaf,0x51,0x8e, +0xdf,0x14,0x21,0x12,0xf4,0xa3,0xe7,0x53,0x33,0xe3,0xe5,0x27, +0xac,0x65,0xed,0x64,0xa5,0x6e,0x53,0x6d,0x68,0xed,0x26,0xde, +0xf7,0xfd,0xf9,0xa8,0x94,0xae,0xad,0x66,0xa7,0x8e,0x5e,0x63, +0x12,0x9b,0x5f,0x65,0x84,0x74,0x70,0x53,0x20,0xf5,0x11,0x4b, +0x95,0x3c,0x79,0x27,0xfe,0x98,0xf8,0xf3,0x8c,0x75,0x25,0x02, +0x4f,0x16,0x53,0x87,0xef,0x08,0xea,0x86,0x27,0x3f,0x60,0xf7, +0x50,0x37,0x1c,0x77,0x97,0x8e,0x80,0xc1,0x74,0xee,0x8a,0xc1, +0x59,0x62,0x1e,0x8c,0x7c,0x70,0xe0,0xb1,0x4d,0xb8,0x19,0x6c, +0x76,0xdf,0xe2,0xf8,0x35,0x22,0x69,0x2d,0x82,0x74,0x2e,0x3f, +0x92,0x58,0xeb,0x7f,0xd2,0x50,0x4f,0x57,0x1c,0x09,0xa6,0x00, +0x9f,0x14,0xdf,0x15,0x80,0xa3,0xce,0x3c,0x1c,0x6e,0x8e,0x89, +0xdb,0x69,0x38,0x24,0xd4,0xd9,0xb2,0x65,0xda,0xbc,0x94,0x68, +0x03,0x84,0x29,0xea,0x5a,0xf5,0xfd,0x05,0xb2,0x81,0xf5,0x65, +0x5e,0xc9,0x87,0x98,0x84,0xb8,0xaf,0xbf,0x08,0xec,0x94,0x85, +0x31,0xde,0x3b,0xfe,0x6c,0x92,0x24,0x5b,0xae,0xbf,0xc6,0xd9, +0xf3,0x41,0x5a,0xef,0xa4,0x93,0x1c,0x8a,0x18,0xcf,0xf0,0xcd, +0x5b,0x76,0xd6,0xc3,0xd7,0x93,0x11,0xbf,0xad,0x1f,0x6e,0xc0, +0xc3,0x93,0xff,0xef,0xe1,0xfe,0x7f,0x0f,0xcf,0xd7,0x63,0xbd, +0x47,0x6a,0x5f,0xdf,0x95,0xe4,0x1f,0x63,0x8d,0xf3,0x37,0x6c, +0x5c,0xbe,0xd0,0xe2,0x8f,0xab,0x04,0xa8,0x65,0x55,0x28,0x6b, +0x9f,0x48,0xf7,0xfd,0x15,0x75,0x20,0xbf,0xd9,0xeb,0x44,0x80, +0x45,0x57,0xa7,0xf1,0x1b,0xe0,0xf1,0xfb,0x29,0xe1,0x8f,0xbb, +0xab,0x5f,0x6d,0xd3,0x6a,0xc0,0xfd,0x7a,0x6d,0x2b,0x5b,0x3d, +0x14,0x32,0x11,0xf9,0x6d,0x66,0x6f,0x97,0x69,0x5d,0x26,0xb0, +0xb7,0xa5,0x28,0x7e,0x1c,0x50,0xa9,0x4d,0x09,0x60,0x41,0x52, +0x2c,0x3f,0x0e,0xaa,0xd2,0xa6,0xfb,0x63,0xcd,0x24,0x0b,0xfa, +0x9a,0x70,0x37,0x68,0x28,0x04,0xf2,0xd7,0x41,0x5a,0x0d,0xbb, +0xd7,0x5d,0x46,0x00,0xdd,0x6a,0x48,0xbc,0xcb,0x6e,0xf5,0x94, +0x85,0x2e,0xaa,0xd0,0xe3,0x3b,0x52,0x6f,0x3e,0x14,0xfd,0x80, +0xcd,0x97,0xd1,0x27,0x74,0xbe,0xf0,0x09,0xed,0xc6,0x6f,0xc1, +0x73,0xa2,0x5a,0x7b,0x95,0x07,0xd5,0x61,0x01,0xba,0x23,0x35, +0xee,0xcf,0xa3,0x6c,0x8b,0x11,0xf9,0xd9,0x03,0x6b,0xfb,0xf0, +0xd4,0x00,0x2d,0xb6,0x74,0x63,0x03,0x39,0xe1,0x08,0x75,0x19, +0x4f,0x00,0x7c,0xf9,0x57,0x7c,0x27,0x90,0xbd,0x23,0x69,0x87, +0x65,0x65,0x78,0x04,0xef,0xd3,0xb1,0xfc,0x49,0x2a,0xda,0x6d, +0xb8,0xa1,0xde,0x96,0x86,0xc9,0x4a,0xf2,0x9e,0x94,0x1d,0xa9, +0x31,0x6c,0xac,0x8c,0xde,0x5d,0x2b,0x11,0x42,0x56,0xa6,0xab, +0xd9,0x2b,0x70,0xd0,0x97,0x1d,0x44,0x07,0x22,0x73,0xca,0xee, +0xd4,0x1d,0x29,0x5b,0x58,0x6f,0xd9,0x0a,0x35,0x5f,0xf0,0x1a, +0x97,0xb9,0xc8,0x82,0x38,0xfd,0x1d,0x5b,0x79,0x95,0x1f,0x5d, +0x81,0xf9,0x3f,0xe2,0x51,0xed,0x74,0x96,0xa9,0x3c,0x54,0x37, +0x0c,0x95,0x43,0x53,0xc2,0x74,0xf3,0x5c,0x74,0xf0,0x1d,0xaf, +0xdc,0x57,0xbf,0x1a,0x8e,0x47,0x8d,0x94,0xfb,0xb5,0x1d,0xf8, +0xd8,0x5e,0xea,0xc7,0x96,0xf2,0x84,0x75,0xa9,0x7c,0x57,0x62, +0xe4,0x49,0xea,0xbe,0xdb,0x36,0x59,0x38,0x3e,0x6c,0xdf,0x93, +0x33,0x5f,0x16,0x4c,0x43,0x1f,0x85,0x2d,0x97,0xb5,0x1b,0xf0, +0x4a,0xfd,0x42,0xaa,0x9b,0x2c,0x26,0x3c,0x5e,0x55,0xc7,0x08, +0x6b,0xa2,0xf6,0x68,0x4d,0xc4,0x93,0x98,0x00,0x4c,0x62,0x78, +0xf7,0xd4,0x2d,0x0c,0x65,0x34,0x15,0x94,0x59,0xa7,0x28,0x19, +0x8c,0x77,0xd4,0x25,0x5e,0x40,0x84,0x43,0x70,0x32,0x3a,0x04, +0x0b,0x70,0x4d,0x47,0xdc,0x7d,0x80,0x7e,0x60,0x0e,0x60,0xe6, +0x2e,0xba,0xb3,0x94,0xa5,0x4c,0xfb,0x7c,0xbc,0xee,0x69,0x65, +0x2d,0x9c,0x73,0xad,0x2c,0x27,0xe7,0x54,0x8e,0x59,0x86,0x96, +0x40,0x99,0x34,0x52,0x5b,0x76,0x57,0xae,0x92,0xae,0x95,0x26, +0xa5,0x9e,0xb6,0xb1,0x30,0x59,0x5b,0xfd,0x44,0xdd,0x5c,0x89, +0xb7,0x64,0x67,0x46,0xa0,0xe3,0x98,0x6c,0x8d,0xb9,0x84,0xa6, +0x3a,0xc2,0x75,0x2a,0x06,0xf9,0x31,0x9f,0xe3,0x9c,0x30,0x09, +0xbe,0xbd,0xcb,0x03,0xe3,0x41,0xc9,0x39,0x3c,0x45,0xd4,0xd3, +0xfc,0x21,0xf5,0xe9,0x19,0xd7,0x4b,0xc0,0x90,0x97,0xc8,0xa9, +0x94,0x38,0x90,0x9d,0x06,0x4c,0x06,0x3a,0x40,0x8a,0x88,0x9a, +0x06,0x37,0xd4,0x3e,0x77,0x84,0x38,0x5d,0xee,0x5c,0xf8,0x32, +0x0a,0x2b,0x26,0xef,0xc8,0xbe,0xd1,0xdd,0xf1,0x60,0x7c,0xc4, +0xc0,0xcd,0xbd,0xf1,0xc0,0x2f,0x72,0x58,0xf4,0x5b,0x76,0xbb, +0xe4,0x98,0xa1,0x88,0x32,0x5f,0xb8,0x65,0xf6,0x96,0x19,0xdb, +0x8e,0xf3,0xc6,0x71,0x01,0x37,0x41,0x2f,0x5f,0x1e,0x33,0x1b, +0x15,0x28,0x64,0x65,0x65,0xcc,0xdc,0x2d,0xd3,0xf1,0x40,0x5b, +0xe7,0xab,0x93,0x02,0xde,0x8e,0xe8,0xb0,0xb9,0x2d,0xff,0x77, +0xf3,0xce,0x5d,0xbb,0xb6,0x27,0x6c,0xfb,0x55,0x38,0x25,0x5d, +0x17,0x2e,0xc3,0x83,0xa4,0x11,0x65,0x0a,0x9c,0x16,0x07,0xe5, +0xe2,0x60,0xdc,0x15,0xad,0xf1,0x57,0xec,0x09,0xa2,0xef,0x3b, +0x60,0x79,0x8a,0x07,0x9d,0x04,0x0c,0xff,0x9d,0x6d,0x73,0xe3, +0xe6,0x6c,0x37,0xf3,0x69,0xa1,0xaf,0x1f,0xeb,0x2b,0xc1,0x64, +0xa4,0x94,0xea,0x36,0x28,0x08,0x61,0x8f,0x4b,0xbe,0xbc,0x40, +0x7e,0x95,0xc9,0x67,0x73,0x19,0x02,0xc7,0xb3,0x40,0x09,0x56, +0xc8,0x5a,0xef,0x60,0xf6,0x5c,0x82,0xa1,0xbc,0x55,0x6b,0x2a, +0x93,0x93,0xcf,0xf1,0x90,0xd1,0xea,0x1a,0xb4,0x62,0x4e,0x88, +0x71,0xb7,0x6b,0x93,0xe2,0x1e,0x48,0xb9,0xd8,0x03,0xc1,0x5e, +0x97,0x12,0x87,0x6b,0x13,0x32,0xf3,0xad,0xb6,0x63,0xde,0x6b, +0x27,0x75,0x54,0x1e,0xd6,0xaa,0x43,0xf9,0xdc,0xb5,0x81,0xad, +0xd0,0xaa,0x79,0xa9,0x89,0xbd,0x6e,0x07,0xef,0x75,0x07,0x87, +0xca,0x1b,0xde,0x5f,0x6a,0x0d,0x37,0x2e,0x3d,0xf0,0xbe,0x7c, +0xac,0xd8,0xbc,0x53,0x87,0x8e,0xeb,0xc6,0x5b,0x07,0xd1,0xc0, +0x6b,0x73,0xc8,0x94,0x18,0x2f,0x57,0xde,0x14,0x6b,0xfc,0xd5, +0x35,0x92,0x1c,0x93,0x1a,0x8e,0x12,0x9c,0x3a,0x1b,0x61,0x3e, +0x1f,0x98,0xe7,0xfd,0x91,0xcb,0xd1,0x14,0x7c,0x30,0xdd,0xd9, +0x2d,0x5b,0x98,0x67,0x25,0x9a,0xd8,0x35,0x90,0xe2,0x90,0xbb, +0x91,0xac,0xc0,0xed,0x40,0xe4,0xb2,0x18,0x86,0x07,0xb2,0xcf, +0x2b,0xd0,0x67,0xb8,0x17,0x1b,0xce,0xa3,0x98,0x03,0xbf,0xb4, +0x6e,0x96,0x19,0xb5,0xd9,0x24,0x94,0x77,0xb6,0x0b,0x88,0x0e, +0x0f,0x03,0x27,0xab,0xeb,0x24,0x3f,0x76,0x9a,0x07,0xb5,0x7f, +0x2a,0xe1,0x7e,0x00,0xf3,0xe0,0x97,0xb2,0xc6,0x64,0xd7,0xdb, +0x30,0xd9,0xa2,0x2a,0xf8,0x17,0x17,0xe0,0x7e,0xdc,0xef,0xc4, +0xbe,0xc1,0xd6,0xf0,0xd6,0xb9,0x5e,0x92,0x9c,0x72,0xc6,0xc6, +0xc2,0x65,0x29,0x09,0x06,0x28,0xd0,0x88,0xf7,0x07,0xaf,0xc8, +0x3e,0xd1,0x5d,0xf1,0xa1,0x07,0x46,0x8e,0x88,0x1e,0x2c,0x18, +0x13,0x5b,0x78,0x4d,0xb0,0x45,0x42,0x1a,0x80,0x4f,0xad,0x24, +0x25,0x0b,0xfb,0x30,0x17,0xb4,0x0f,0x43,0x56,0x55,0x3b,0xf4, +0xc0,0x62,0x7e,0xd7,0xb5,0x60,0x1f,0x16,0x20,0xb3,0xc9,0x23, +0xeb,0x78,0xf9,0x52,0x85,0x46,0x10,0x23,0xaa,0x14,0x38,0x2b, +0x43,0x43,0x7f,0xd6,0x50,0x02,0x37,0x19,0x14,0x08,0xde,0x0c, +0xe3,0x5c,0x65,0x3b,0x96,0xf7,0x20,0x5a,0x37,0x87,0xa3,0x2d, +0x96,0x2c,0xe0,0x3a,0xe8,0xe1,0x9c,0xb0,0x7b,0xd7,0x8e,0x5d, +0x5b,0x58,0x73,0x7e,0x80,0x06,0x9c,0xac,0x19,0x26,0x32,0xc9, +0x0a,0x4b,0x19,0x26,0xc3,0xd8,0xf1,0x6c,0xac,0x04,0x8b,0xf8, +0x53,0xf6,0xd1,0x9f,0xb2,0x88,0xb2,0x73,0x79,0x74,0x2c,0x34, +0xde,0x28,0x49,0x4e,0x3e,0x65,0x93,0x2b,0x00,0x02,0x51,0xc1, +0x58,0x7e,0x28,0x7d,0xff,0x69,0x72,0x6a,0x8e,0x0d,0x1d,0xbd, +0x6e,0x4e,0x54,0x58,0x27,0x19,0x1d,0x49,0x78,0xb1,0xd0,0x43, +0xd6,0x3e,0x1b,0xaf,0xee,0xc2,0x71,0xc8,0x1b,0x64,0x18,0x36, +0x88,0x23,0x64,0x49,0xc7,0x1e,0xec,0xe3,0x4d,0x1b,0x89,0x94, +0x7b,0x9e,0x82,0x87,0x4c,0x8e,0xc5,0xa7,0x07,0xa1,0x01,0x68, +0x35,0x56,0xeb,0x88,0x95,0x4e,0x13,0xb9,0xab,0x1f,0xda,0x50, +0x77,0x41,0x6a,0xc0,0xad,0xbb,0x6a,0x33,0x39,0xb8,0x4f,0x1f, +0xff,0x2b,0x8f,0xad,0x32,0xdb,0xcc,0xfb,0xc4,0xc9,0xa1,0xf2, +0xfb,0xa0,0x18,0xa0,0xad,0x24,0x47,0xf1,0xec,0x5b,0xd6,0x61, +0xdd,0xbf,0xcb,0xa7,0x0a,0xcd,0xbb,0x77,0x27,0x6d,0x97,0x1f, +0x54,0x43,0xaa,0x1f,0x73,0x90,0x1f,0x25,0x3e,0x48,0xbe,0x86, +0x26,0x5a,0x4f,0x54,0x45,0x61,0xed,0x64,0xed,0x27,0x1f,0xf5, +0x20,0xbf,0x19,0xa1,0x05,0x3f,0x4b,0x36,0x6e,0x1d,0xd4,0x5f, +0x44,0xd8,0x34,0x99,0x1d,0x95,0x62,0xc7,0xa2,0xd1,0x88,0x68, +0x26,0xdd,0x06,0x4c,0x4b,0xdd,0x98,0x14,0xa0,0x26,0x1c,0x35, +0xc8,0x4c,0xd9,0xa4,0x07,0x3e,0x59,0x60,0x0b,0xcc,0xce,0xd2, +0x5f,0x89,0xcf,0x93,0x3f,0x97,0xad,0x17,0x83,0xd0,0xce,0x7a, +0x9a,0x11,0xc8,0xf4,0x71,0x72,0x49,0x65,0x76,0xc1,0x89,0x22, +0x19,0x83,0x22,0xcf,0xe5,0xbf,0xe4,0x13,0x28,0x6b,0x20,0x3f, +0xae,0xae,0xc8,0xcb,0xca,0xe7,0x5f,0xef,0x57,0xe6,0x3d,0x02, +0xc2,0xd5,0xfe,0xe8,0x5b,0x6b,0x4f,0xea,0xc6,0x84,0x8e,0x72, +0x55,0x9f,0x22,0x11,0x64,0x44,0x4c,0x5f,0x57,0xd9,0xf0,0xe5, +0x63,0xc1,0xc4,0x35,0x6c,0x12,0x1b,0x82,0xb2,0x12,0x26,0x4d, +0x0e,0x39,0x5d,0xc8,0x9b,0x68,0xe1,0x24,0xd1,0xc1,0xa3,0xa2, +0x11,0x64,0x25,0x2b,0xe8,0x97,0xca,0x87,0x80,0xb2,0x8b,0x8f, +0xf4,0x5d,0xdb,0x64,0xa1,0xad,0x9f,0x14,0xcd,0x07,0xc0,0x7b, +0xfe,0xea,0x7b,0x98,0x19,0x1f,0xf2,0x65,0x87,0x04,0x81,0xa9, +0x3b,0x6c,0x88,0x94,0xcd,0xfa,0xe3,0x95,0xcd,0x1b,0xc3,0x63, +0x13,0x0c,0x47,0xe5,0x5a,0x09,0x15,0x9c,0x5c,0xe4,0x9e,0xd0, +0x32,0x02,0xdc,0x5d,0x79,0xa0,0x17,0x4e,0x68,0x32,0x8b,0xe7, +0x4d,0x7b,0x60,0x28,0xda,0xa7,0x45,0xf0,0x0f,0x92,0x37,0xa7, +0x84,0xc7,0x47,0x6c,0xe6,0xdf,0x39,0x39,0x2d,0x2e,0x39,0xc6, +0x51,0x86,0x29,0x30,0xd6,0x87,0x4f,0x28,0xd3,0x17,0xac,0x98, +0x68,0xe3,0x45,0xc0,0xbb,0x0b,0x77,0x2c,0x76,0xdd,0x83,0xaa, +0x04,0xde,0x71,0xa3,0x91,0xfe,0x13,0x14,0xe5,0x25,0xac,0x54, +0xa0,0x49,0x8d,0xba,0xd2,0x9b,0x07,0x6a,0x31,0x65,0xf1,0xbc, +0x0f,0xc9,0xc5,0x5f,0xb1,0xc7,0x3c,0x9a,0xae,0xaa,0xd2,0x56, +0xf1,0x57,0xc1,0x81,0xac,0x85,0xd8,0xc4,0xd9,0xbe,0x51,0x36, +0xe7,0x4c,0x37,0xf0,0x49,0xc1,0x7a,0x81,0xb7,0x65,0xa6,0x6c, +0xcd,0x9d,0x6c,0x60,0xd1,0x98,0x6c,0xfd,0xa8,0x5c,0x93,0xd9, +0xd2,0xeb,0x28,0xda,0xcf,0x2b,0x9d,0x1e,0xb0,0x84,0x77,0x6e, +0x1f,0xde,0xb9,0x51,0xd7,0xbf,0x27,0x6b,0x2c,0xef,0x49,0x4a, +0xde,0x9e,0x1c,0x23,0x6b,0x21,0xf7,0x30,0xe1,0xaa,0x7d,0xaa, +0x1a,0x95,0x9b,0x32,0x3c,0x16,0xaf,0x54,0xe9,0x86,0x91,0x87, +0x2e,0x25,0x3e,0x21,0x91,0xb7,0xd4,0x0b,0xe8,0x64,0xca,0xcd, +0xeb,0xc0,0xcc,0xa8,0xbf,0x8b,0xbb,0xd0,0x51,0xd8,0x8e,0xf9, +0xc9,0x85,0xd5,0x96,0xdd,0xdf,0x95,0xc3,0xca,0xa0,0x1b,0xdb, +0x8d,0x9d,0x37,0xf9,0x06,0xbc,0x6d,0x0d,0xfa,0x32,0x3a,0x25, +0x32,0x31,0x22,0xca,0x1c,0x85,0x79,0xce,0xbe,0xdc,0xa4,0xbc, +0x4a,0x4b,0x62,0x25,0xbe,0xe5,0xc9,0x36,0x23,0x34,0xa3,0x6e, +0x9d,0x85,0x24,0x20,0x72,0x5e,0x8e,0x16,0x38,0xf2,0x9c,0xe2, +0x16,0x81,0x3e,0xa6,0xbc,0xfc,0x0e,0xcc,0x23,0x3a,0x95,0x36, +0xab,0x22,0x07,0x8a,0x93,0x4b,0x3f,0xb1,0x24,0x7d,0x57,0x0d, +0x2b,0xfd,0x6e,0xc4,0x1a,0xdb,0x6d,0x1c,0x83,0x9a,0xb6,0xdf, +0xbe,0x3c,0x40,0x0a,0x92,0x4a,0x6e,0xf0,0xec,0x14,0xff,0x80, +0x82,0x8a,0x74,0xe9,0x98,0x5e,0xe0,0x84,0x82,0x8a,0x37,0xd3, +0x4b,0x8e,0x15,0x53,0x97,0x1c,0x02,0x03,0x4c,0x79,0x55,0x67, +0x0b,0x3f,0x2a,0x72,0x94,0xa7,0x10,0x2d,0xe4,0x16,0xca,0xe8, +0xff,0xa8,0x4c,0xfe,0x6e,0x40,0xef,0xc9,0xdf,0x81,0xe7,0xc7, +0x6a,0x10,0x35,0x5c,0x45,0xf8,0x96,0x6e,0xe8,0x21,0x2b,0x05, +0xb3,0x8a,0x4b,0x32,0xb2,0x8f,0x5e,0x12,0x34,0x87,0x04,0xa4, +0x39,0xb4,0x34,0x15,0xe4,0x67,0x64,0x1d,0xbb,0xb8,0x0b,0xde, +0xe0,0xd5,0x80,0x29,0x3f,0xd7,0x8d,0x39,0x44,0xa6,0x44,0xa2, +0x9e,0x74,0xc4,0xe6,0xad,0xbb,0x0c,0x07,0x32,0x53,0xb3,0x72, +0x2d,0x7f,0x97,0xc1,0xb6,0x09,0x35,0x52,0xdc,0xb0,0xd5,0x93, +0x03,0x02,0x7c,0x6a,0x4c,0x91,0x68,0x0b,0x1e,0xad,0xbb,0x52, +0x7f,0x98,0x91,0xc4,0xdf,0x71,0x0b,0xdf,0xf1,0x8f,0xb4,0xbd, +0xfb,0xa2,0x49,0xdd,0x7a,0x39,0xaa,0xf7,0xda,0x69,0xce,0xe4, +0xeb,0x11,0xbd,0x5e,0xee,0x22,0x08,0x53,0x0f,0xa9,0x91,0xe0, +0x39,0x3b,0x4d,0x5b,0xbc,0x81,0xec,0x06,0xf4,0xb9,0x3b,0x92, +0x99,0x94,0x5d,0x24,0xc4,0xf2,0xfb,0x2e,0x9b,0xd2,0x65,0x98, +0xd5,0xed,0x67,0x84,0x05,0x52,0x43,0x1b,0x92,0x95,0x7c,0xa1, +0xd0,0x72,0xda,0x6b,0xa5,0xf1,0xcd,0x39,0x7e,0x60,0xee,0x8a, +0x92,0xf9,0x57,0x0a,0x2e,0xa5,0xe7,0xfc,0x2b,0x99,0x6f,0x35, +0xdd,0x2d,0x2b,0xbc,0x94,0x7e,0x29,0x79,0x97,0x1d,0x49,0xdc, +0x42,0x97,0xcc,0x77,0x12,0x53,0x2c,0xea,0xeb,0x18,0x7a,0x10, +0xe6,0x00,0x6f,0x98,0x0a,0xf3,0x32,0xb2,0x8f,0x5f,0x4c,0x48, +0xc0,0x4e,0xcf,0x24,0x68,0x6e,0x2a,0xca,0x73,0x63,0x8d,0x69, +0xb3,0xe3,0x24,0x2b,0x25,0x3b,0xcf,0x52,0xe8,0x35,0xd7,0xf8, +0xd6,0xaa,0x29,0x7e,0x7e,0x56,0xbf,0x4f,0xa2,0xb0,0xeb,0x46, +0xf3,0xd0,0xb0,0xef,0x7c,0x32,0x75,0xa9,0x25,0x8b,0x26,0x75, +0xed,0x69,0x2d,0x9e,0x59,0x54,0x9c,0x91,0x7d,0x8c,0xd2,0x1a, +0x82,0x95,0x56,0x25,0xaf,0xb4,0x7a,0xab,0x57,0xe9,0x1b,0x83, +0x51,0x63,0xee,0x53,0xf2,0xf3,0xe8,0xce,0xb0,0x14,0xb5,0xc2, +0xc6,0x10,0x68,0x11,0x62,0x07,0x2f,0x9f,0xd7,0x8a,0x49,0x18, +0x73,0x62,0x61,0x6c,0x15,0x4a,0x0b,0x6e,0x06,0x23,0x84,0xc3, +0x88,0xff,0x78,0x59,0xa5,0xe6,0xce,0xa3,0x6d,0x13,0x09,0x4f, +0x82,0x3e,0x51,0x10,0xc6,0xdc,0x15,0x4c,0xfe,0xcc,0xd4,0x4b, +0xfc,0x94,0xb4,0xdd,0xc7,0x78,0xf4,0x86,0xbe,0xc5,0x3c,0x32, +0x1c,0x2f,0x32,0xc3,0xe5,0x7f,0x71,0xfe,0xbb,0x12,0x69,0x8b, +0x96,0x58,0x23,0x6f,0x15,0xbe,0x51,0x5f,0xc2,0x7e,0x2a,0x49, +0x84,0x36,0x7b,0x41,0xb4,0xe1,0xca,0x74,0xb6,0x68,0xee,0x03, +0xf5,0x1a,0x92,0xaa,0xeb,0x9a,0xb0,0x21,0x94,0xfc,0x0f,0x91, +0xeb,0x3f,0x81,0x7a,0x1c,0x24,0xda,0xce,0x99,0xb4,0x65,0x57, +0x22,0x3f,0x50,0xfd,0x95,0xbc,0x69,0xb7,0x8a,0xf3,0x2f,0x9d, +0xb9,0x64,0x4e,0x4e,0xda,0xbb,0x23,0x39,0x9a,0x67,0x1e,0x6d, +0x4c,0xb7,0xae,0xe4,0x5e,0x3c,0x9d,0x9d,0x92,0x8c,0x8a,0xd7, +0xac,0x33,0xb4,0x36,0xe5,0x17,0x21,0x9c,0x83,0x7a,0xfc,0x44, +0x32,0x93,0x2e,0x14,0x59,0x98,0x7b,0x25,0xdc,0x0b,0xe0,0x0f, +0xb8,0xdf,0xb2,0x29,0x3d,0x47,0xba,0x3f,0x31,0x45,0xa4,0xe0, +0x3c,0x17,0x1a,0x69,0x8a,0x8b,0x37,0x1c,0xca,0x4c,0xb9,0x50, +0x60,0x79,0x51,0x57,0x4a,0xe2,0x7a,0xcd,0x1e,0x07,0xad,0xfa, +0x38,0x86,0x00,0x51,0xba,0x11,0x19,0x4a,0xb4,0xc3,0x44,0x19, +0xcf,0x56,0x82,0x74,0x97,0xd7,0x20,0xa1,0x43,0x6b,0xdf,0x22, +0x0f,0xd9,0xca,0x1b,0xfc,0x1e,0xb5,0xb1,0xc2,0xa9,0x06,0x7c, +0x99,0x61,0x0c,0xea,0x1b,0xb1,0xc3,0xec,0x57,0xc1,0xad,0x18, +0x8a,0xdc,0x0a,0xa7,0xef,0xc8,0x16,0x5e,0x35,0xe4,0xd4,0x3a, +0x11,0x30,0x2c,0x9c,0xc0,0x0b,0xb5,0xa6,0x56,0x3b,0xd1,0x22, +0xf7,0x5f,0xa2,0x45,0x3b,0x84,0x99,0x0a,0xeb,0x69,0xfa,0xc6, +0x42,0xd2,0x56,0xf1,0xe5,0x45,0xa1,0x99,0x68,0x8f,0x1e,0xf2, +0x44,0x91,0xc5,0xd1,0x26,0xed,0x50,0x74,0xf8,0xfe,0xb3,0x57, +0x8d,0x71,0x81,0x8c,0x54,0x11,0xd6,0x8c,0x36,0x3f,0xab,0x4b, +0xaa,0xf7,0x2f,0xad,0xa2,0x2e,0xb3,0x71,0x28,0x16,0xe6,0x41, +0x53,0xd6,0x21,0x2a,0x35,0x9c,0x1a,0x2f,0x12,0xf8,0xc0,0xef, +0xb3,0x18,0xa3,0xfb,0xaa,0xf1,0xa3,0xfa,0x5b,0x87,0xff,0x1c, +0x95,0x16,0x9e,0x10,0x11,0x49,0x9d,0xdc,0x49,0x41,0xb5,0x25, +0x8d,0x1a,0x5a,0xf1,0xd6,0xde,0x4c,0xb2,0x8b,0x8e,0x97,0xbc, +0xca,0x41,0x59,0x97,0x6e,0x04,0x96,0x41,0x19,0x6d,0x39,0x8c, +0x50,0x47,0x7f,0xa2,0x9e,0xa7,0x2d,0x2b,0xc8,0x40,0x82,0x0a, +0x64,0x66,0x34,0xfa,0x79,0x39,0x94,0xb0,0x25,0x1d,0xbf,0xe3, +0xfd,0x40,0xa6,0x4d,0x16,0x90,0x6f,0x8c,0xce,0x8a,0xaf,0x6a, +0xec,0x8f,0x95,0x91,0xee,0x02,0x64,0xa4,0x4d,0x0f,0x92,0x5f, +0x55,0xe9,0x9a,0x04,0x13,0xe1,0x6b,0xda,0x64,0x28,0xa1,0x86, +0xef,0x09,0x4c,0xc0,0x2f,0x42,0x3f,0x27,0xda,0x32,0xfe,0xd4, +0x97,0xab,0xf3,0x68,0xeb,0xa1,0x44,0x8d,0x66,0x23,0xa9,0x03, +0x12,0x3b,0x2a,0x78,0x12,0x6f,0x84,0x3b,0x70,0x80,0xba,0x8e, +0x26,0xb1,0xd2,0x3b,0xc2,0xe4,0x7b,0x7c,0xc5,0xa4,0x5f,0x9e, +0xfd,0xeb,0x9e,0xfc,0xf4,0x8a,0xae,0xfc,0xba,0x58,0x89,0x90, +0xa6,0x2c,0x3a,0x5d,0x50,0x78,0xfe,0x54,0xb1,0x2d,0xed,0x3f, +0x16,0xca,0x75,0x9f,0x12,0xf8,0x58,0x89,0x7c,0xce,0xcb,0x8a, +0x05,0xb4,0xe9,0x56,0x82,0x5b,0x06,0x7f,0x21,0x6b,0x6c,0xfd, +0xd9,0x79,0xc8,0x1a,0x2b,0xd4,0x59,0x63,0xa8,0x16,0x8b,0xf2, +0xaf,0xd4,0xf3,0x47,0x52,0x98,0x5c,0x72,0xdd,0xb2,0xe7,0x3b, +0xac,0x95,0x6f,0x6c,0x15,0xd2,0xaf,0x03,0x51,0xfa,0x35,0xda, +0x2e,0xfd,0x5a,0xfd,0xf2,0x11,0xd1,0x35,0x5f,0x1d,0x74,0xcd, +0xd7,0xa2,0x63,0x45,0x5a,0x41,0xbd,0xe6,0x6b,0x3e,0x86,0x28, +0x85,0xb6,0x2c,0xa8,0xd7,0x47,0x75,0x94,0x5f,0x75,0x27,0xd0, +0xe4,0x2e,0x6b,0xc2,0xd6,0xf4,0xa6,0xa6,0x3c,0xf2,0x9d,0x04, +0x51,0x70,0xab,0xb6,0x33,0xd9,0xc8,0x76,0x8f,0x82,0x03,0x75, +0x4b,0x89,0xdd,0x2c,0xca,0xd2,0xb0,0x1e,0xf5,0x69,0x37,0x79, +0xa0,0xae,0x89,0xd8,0xca,0x1b,0xdc,0xee,0xbe,0x60,0x8b,0xdd, +0xa8,0x39,0x86,0xfc,0x69,0x84,0x9d,0xf0,0x1e,0x6d,0xba,0x9a, +0xe0,0x26,0xd0,0x24,0xf2,0x04,0x86,0xd4,0xee,0x20,0x8a,0x8f, +0x6a,0x1c,0x4c,0xdd,0x3a,0x92,0x1f,0x05,0xb7,0x30,0x08,0xee, +0x50,0xb9,0x88,0x3f,0x41,0x37,0xc2,0xba,0xd1,0x16,0xed,0x89, +0xfc,0xb2,0x37,0x51,0x27,0x41,0x1e,0x95,0x1a,0x13,0xb4,0x4e, +0x3a,0xa3,0x44,0xb0,0x34,0x6f,0x38,0xaa,0x5e,0x25,0x65,0x86, +0xb0,0x90,0xb1,0xa1,0xde,0xae,0xbc,0xcd,0x4d,0xc7,0x09,0x6d, +0x2e,0x13,0xb6,0x98,0xb6,0xe8,0x2a,0x70,0x39,0x55,0xc2,0x3d, +0x16,0xee,0x52,0x65,0x12,0xa1,0x0e,0x77,0x09,0xe4,0xa1,0xa2, +0xbd,0x37,0x9c,0xa3,0xb6,0x0e,0xc2,0x79,0x22,0x82,0xf8,0x56, +0x4d,0xfe,0xf3,0xcf,0xea,0x92,0x6b,0x3a,0xf3,0x2c,0xd1,0xd8, +0x0d,0xba,0x0b,0xe6,0xd9,0xc9,0x82,0xfc,0xec,0x93,0x3a,0xf3, +0x6c,0xc5,0x0c,0x6a,0xc0,0x6e,0x93,0x41,0x60,0x83,0x12,0xc6, +0x52,0xbd,0xe1,0xf8,0xbf,0xab,0x43,0x38,0x9b,0xd3,0x26,0x8d, +0x89,0x4e,0x04,0x8b,0x14,0x44,0x30,0xda,0xbc,0x3f,0x69,0xbf, +0x74,0x42,0xd7,0xbe,0x56,0xb7,0x17,0x11,0xa9,0xa1,0xf1,0xf0, +0x07,0x39,0x7c,0x29,0x39,0xf7,0x8a,0xe5,0x3c,0x9a,0xfb,0xcc, +0x1c,0x0d,0xad,0xa1,0x81,0xb5,0x70,0xca,0xed,0xaa,0x82,0xfc, +0xf4,0x02,0x33,0x9a,0x4b,0x24,0x6f,0x66,0xdd,0xa0,0xa7,0xe9, +0xfe,0xf5,0xc2,0x82,0xf4,0x7c,0xdc,0x74,0x4e,0xc2,0xa1,0xee, +0x61,0x2a,0x12,0xac,0x0b,0x94,0x2f,0x3a,0x7c,0x36,0xf9,0xdc, +0x65,0xcb,0x49,0xef,0xd5,0x46,0xaf,0xa5,0x33,0xba,0xf8,0x58, +0xdd,0x3e,0x0d,0x47,0xe8,0x8b,0x5d,0x18,0xff,0xd0,0xb9,0xe4, +0x73,0x39,0x96,0xe3,0xde,0x6b,0x8d,0x43,0xe6,0x06,0x83,0xeb, +0x40,0x6b,0xde,0xd4,0xdb,0xb9,0x05,0x99,0xe9,0x19,0x66,0x44, +0xe9,0xa4,0xc4,0xb2,0x2e,0xd0,0xc4,0x54,0x93,0x8f,0x67,0x92, +0x79,0x68,0x4e,0x89,0x61,0x9d,0xda,0x0a,0xe1,0xc7,0x5f,0xc3, +0x92,0xc3,0xe3,0xb0,0xd4,0x51,0xdc,0x09,0xac,0x83,0x9a,0x57, +0xd7,0x89,0xa2,0x65,0x90,0xbf,0xa1,0x07,0x9f,0x6c,0x3a,0xb0, +0xb6,0xd4,0xf1,0x21,0x49,0x30,0x1c,0x2c,0x40,0xad,0xfb,0x5b, +0xde,0xe3,0x84,0xd6,0xfd,0x5b,0xd6,0x09,0x8f,0xa9,0xcb,0x4f, +0x84,0x4f,0xa2,0x42,0xe7,0xde,0x40,0x9b,0x7b,0x13,0x91,0xb7, +0xff,0x01,0xbd,0x4d,0x79,0x15,0xe7,0x84,0x6a,0xb0,0x12,0x9e, +0x4c,0x3d,0x82,0x48,0xa1,0x25,0x7d,0xe4,0x0a,0xe3,0x80,0xa5, +0x53,0xba,0x7a,0x59,0xdb,0x7d,0x47,0x9d,0xbe,0x27,0xfc,0xeb, +0x08,0x32,0x4b,0x76,0xbe,0xe5,0xf4,0xc8,0xf7,0x8c,0xbd,0xe6, +0x06,0x80,0xe5,0x4d,0x24,0xa1,0x14,0x17,0x5c,0x4c,0xbf,0x28, +0xb8,0x71,0x82,0xd5,0x62,0x31,0xdd,0x29,0x2d,0xbc,0x98,0x7e, +0x21,0xa9,0x1e,0x56,0xe4,0x6c,0x2a,0x28,0x45,0x56,0x4b,0x53, +0x72,0x21,0xe9,0x22,0x6f,0xcc,0x91,0x4b,0x8d,0xdd,0x96,0x4e, +0xea,0x3a,0xd0,0xda,0xee,0x77,0xde,0xca,0x3b,0x74,0x69,0xfb, +0x0b,0xc9,0x97,0x8a,0x2d,0x67,0x47,0x2e,0x33,0x76,0xe2,0xd1, +0xcd,0xe4,0x89,0xd7,0xad,0x28,0xcc,0x4b,0xcf,0x33,0x27,0xe9, +0xad,0xda,0x95,0x67,0x0b,0xf7,0xab,0x8b,0x72,0xcf,0x5c,0x4e, +0xda,0x25,0xac,0x33,0x3a,0x02,0x15,0xe4,0x16,0x6a,0x3b,0x48, +0x04,0x47,0xa6,0x1d,0x6d,0xf3,0x39,0x11,0xff,0x96,0xcf,0xff, +0x0d,0x6f,0x67,0x4f,0x0c,0xeb,0x4e,0x3d,0x5e,0x10,0xe1,0x8b, +0x68,0x13,0xef,0xae,0x9d,0xc6,0x12,0x79,0x3e,0xf5,0xc1,0x50, +0x18,0x23,0x52,0x70,0x4f,0xea,0x50,0x4b,0xd4,0xd6,0xf0,0x03, +0x81,0x9e,0x50,0xa9,0xa4,0x24,0xef,0xc5,0x46,0xf6,0xe7,0xf3, +0x5f,0x49,0x3e,0x8f,0x9b,0xad,0xa9,0x43,0x1a,0x52,0x02,0x3f, +0xca,0xfa,0x80,0xcf,0x98,0xcc,0xaf,0x5a,0x9b,0xe4,0xc7,0x26, +0x48,0xdb,0x3b,0x4d,0xa4,0x8e,0x4b,0x49,0x46,0x9e,0x23,0xe2, +0x6c,0xa3,0xee,0x4b,0xf0,0x82,0xed,0xa6,0x2d,0x10,0x09,0xd3, +0x2c,0x97,0xf7,0xe5,0x42,0x22,0xc1,0x7b,0x3c,0xa8,0xb4,0xd8, +0x4d,0xe4,0x20,0x12,0xaf,0x75,0x56,0x4a,0x3a,0xb0,0xc8,0x5a, +0x77,0x62,0xac,0x7f,0xff,0x6f,0x6c,0x26,0x6d,0x31,0x54,0x37, +0xd8,0xd9,0x41,0xa0,0x1a,0x5d,0x8c,0xda,0x5e,0xfe,0xe6,0x7c, +0x69,0x86,0xf9,0xc3,0xc4,0x43,0x3b,0xf6,0xc5,0xb0,0x8b,0xe0, +0x80,0xde,0x3a,0x47,0x7f,0xdb,0xb0,0x87,0x3a,0x7d,0x4b,0x62, +0x77,0x1e,0x3f,0x9a,0x76,0x3c,0xe1,0x4c,0xdd,0x24,0x12,0xea, +0x3f,0x78,0x1e,0x2c,0x1f,0x83,0xe6,0x45,0x84,0xb6,0xd3,0x50, +0x3f,0x92,0x3a,0x7d,0x40,0xd0,0xf6,0x4b,0x5b,0x0a,0xa3,0xa8, +0xb4,0x81,0xc7,0xfc,0xee,0xcc,0xea,0xa3,0xd3,0x60,0x7c,0x24, +0x6d,0x15,0x3c,0xa5,0xae,0xf7,0x89,0xba,0x6a,0x27,0xfe,0xa1, +0x23,0xeb,0x2e,0x78,0x2f,0x95,0xc2,0x94,0x0e,0xa6,0x28,0x65, +0x75,0xd2,0x04,0xd6,0x37,0xd6,0x18,0xb8,0x76,0x2d,0x9a,0x54, +0xa2,0x4c,0x1e,0xeb,0x5f,0x53,0xf9,0xf1,0x85,0xb5,0x19,0x81, +0x47,0xf8,0xd8,0x02,0x1b,0x9f,0x31,0x56,0x4a,0x1e,0xb3,0xce, +0x17,0x16,0xe4,0x9e,0xff,0xd3,0x76,0x02,0x2d,0x4a,0xa7,0x4f, +0x9b,0xbd,0xc8,0xc3,0xe6,0xcc,0xcc,0x7c,0xa6,0x19,0x77,0x98, +0xb6,0x68,0x21,0x18,0x8b,0xf6,0xc6,0xcd,0x85,0xc1,0xfe,0xba, +0x63,0xd2,0x77,0xd4,0x21,0x11,0x7d,0x42,0x9c,0xac,0x44,0x28, +0x3c,0x80,0x0f,0x75,0xfc,0x81,0x44,0x60,0xca,0x9b,0x99,0x76, +0xb1,0x90,0x36,0xf7,0x22,0x9d,0x26,0x60,0x63,0xa2,0x3a,0xec, +0x6b,0x64,0x92,0x36,0xa8,0x88,0x4a,0x73,0xf5,0xe6,0xa1,0xad, +0xfe,0x87,0xa8,0xad,0xa0,0x81,0xf2,0xf7,0xb0,0x76,0xc2,0xd5, +0x88,0x87,0xe7,0x93,0x81,0x46,0xd6,0x1b,0x26,0x2b,0x9b,0x22, +0xa9,0x6b,0x8c,0x30,0x14,0xfa,0x7e,0xfd,0xae,0xcd,0x02,0xa0, +0x0d,0xf7,0x6b,0x1f,0x11,0xb1,0x30,0xe7,0x60,0x5f,0x98,0x73, +0xb0,0x2f,0xcc,0x59,0x15,0x48,0xfd,0x0c,0x17,0xe6,0xe0,0xbb, +0x5a,0x1e,0xa4,0x5c,0x0e,0x12,0x96,0xc9,0xea,0x84,0x34,0x70, +0x85,0x12,0x4d,0x1d,0x62,0x08,0xaf,0xb5,0xfb,0xb4,0x25,0xa7, +0xa8,0xf9,0x04,0x61,0x2d,0x59,0x47,0x5c,0x63,0x7e,0x46,0xda, +0xe1,0xaa,0xf4,0xcb,0x7f,0x88,0xa4,0x35,0x78,0x0e,0xfc,0xf6, +0xb6,0xb0,0x28,0x64,0xff,0x5b,0x90,0xfd,0x4f,0xcd,0x67,0x89, +0x36,0x83,0xb6,0xf1,0xc5,0xa8,0xd8,0x13,0x7a,0x12,0xb1,0x2f, +0x4e,0x5b,0xcf,0xe1,0x31,0x70,0x2d,0xd2,0x3b,0xfe,0x1a,0x23, +0xb1,0x87,0x30,0xdc,0x0e,0x67,0xd2,0xe9,0x1d,0x07,0x73,0x92, +0x11,0x50,0x3b,0x7a,0x85,0x11,0x8c,0x21,0xd4,0xe5,0x3a,0xa9, +0xbe,0x96,0x93,0x7f,0x12,0x85,0xed,0x92,0x77,0xec,0xc1,0x39, +0xd7,0x83,0x36,0x4f,0xe2,0x13,0x29,0x4e,0xba,0x0a,0x6d,0xd7, +0x10,0x8d,0x52,0x47,0x2a,0x91,0xfc,0x0a,0xb4,0xf9,0x2f,0x44, +0xff,0xef,0xb3,0xa3,0x97,0xe3,0x7f,0x07,0xf2,0x59,0xbb,0xb9, +0xb5,0x78,0x56,0xd5,0xb5,0x1c,0x34,0xfa,0xda,0xad,0x93,0x43, +0x2c,0xd0,0x5e,0x5c,0xa1,0xb9,0xb8,0x02,0xef,0xc6,0x4d,0xc7, +0xc0,0x0d,0xc1,0x36,0x79,0x25,0xd8,0x26,0xa3,0xf9,0xf4,0x8f, +0x82,0xb5,0xfc,0x76,0xb6,0xec,0x42,0xb6,0x49,0x7e,0x15,0xbf, +0xe0,0x32,0x23,0xc8,0x21,0xc8,0x36,0x69,0x69,0x2d,0x16,0xcc, +0xcc,0x99,0xa8,0xe3,0xc0,0xdb,0x01,0xe7,0x7e,0xc7,0x4d,0x48, +0x12,0x69,0x30,0x86,0x9a,0x6b,0x48,0xed,0x74,0x76,0x83,0x3f, +0xe6,0x59,0x43,0xc1,0x65,0x18,0xe9,0x34,0x8c,0x37,0xcc,0xc0, +0xd2,0x97,0xc8,0xfa,0x50,0x0a,0xc8,0x6f,0x25,0xbc,0x51,0x2c, +0x4d,0x89,0x36,0x8b,0xcd,0x43,0x8f,0x35,0xe7,0xd1,0x50,0x83, +0x9f,0xac,0x3a,0x8c,0x96,0xe0,0x3a,0xda,0xe8,0xb5,0x16,0xae, +0x6b,0xce,0xc7,0x08,0x7b,0x48,0xcd,0xe5,0x82,0xff,0x19,0x4e, +0x44,0xf1,0xc4,0xa3,0xd2,0x05,0xf2,0x0c,0x1c,0x4d,0xf9,0xf9, +0xbd,0xfe,0xa0,0xee,0x85,0x84,0x47,0x9a,0xdc,0x51,0x0b,0x8c, +0xc3,0xd6,0x4f,0x99,0x1c,0x68,0x9d,0x55,0x16,0x85,0x19,0x71, +0x8c,0x6e,0xea,0xbc,0x2f,0x23,0x89,0xff,0x35,0x87,0xff,0xb5, +0xfb,0x8a,0x29,0x03,0x7a,0x5b,0xf3,0x67,0x5e,0x2e,0x38,0x93, +0x71,0x38,0xdb,0xcc,0x7e,0x85,0x99,0xd4,0xe5,0x24,0xf9,0xcb, +0x1b,0x1a,0x50,0x37,0xcc,0xcc,0xc3,0xd2,0xec,0x0e,0x1c,0xd4, +0x75,0xe0,0xff,0x06,0x45,0xc6,0x8d,0x82,0xb4,0xc3,0x44,0x6d, +0xaf,0x0c,0x1d,0xf1,0xa5,0xf4,0xbc,0x64,0xc6,0x40,0x5b,0xb4, +0x71,0xe0,0xe4,0x19,0x9d,0xfa,0xbd,0x93,0x79,0x75,0xa1,0xd5, +0x67,0xba,0xc1,0x3f,0xe7,0x5a,0x00,0x6b,0xea,0xca,0xda,0x3d, +0xfd,0x8a,0x35,0xf9,0x7b,0x64,0xd9,0xb0,0x7d,0xb6,0x5d,0xc6, +0xfb,0x07,0xab,0xa8,0x6d,0x29,0xb9,0x5f,0x1c,0x32,0xc2,0x16, +0x63,0x1c,0x33,0x7d,0x5a,0x37,0xab,0x4e,0x40,0xc9,0x46,0x02, +0x8a,0x91,0xba,0xcc,0x23,0xbc,0xdb,0xee,0xda,0x81,0xb3,0x7f, +0xf6,0x64,0x46,0x73,0xbe,0x39,0x5f,0x72,0xde,0x1c,0x2f,0xed, +0x4f,0x3a,0xbc,0x7d,0x7f,0x2c,0xcb,0x06,0x03,0x62,0xfd,0x3e, +0xfa,0x6d,0xfd,0x9e,0x8d,0x71,0x9b,0x22,0xcd,0x6b,0xc3,0x62, +0x77,0x9e,0x38,0x9e,0x76,0x62,0xe7,0x59,0xea,0xf0,0x13,0x89, +0xf4,0x19,0x32,0x17,0xd6,0x8c,0x71,0xf4,0xf7,0x44,0x3e,0x2a, +0x6d,0xf1,0x0f,0x19,0x20,0xdb,0x33,0x9a,0x97,0x1d,0xd1,0xc4, +0xf2,0x05,0xf9,0x4a,0x24,0x33,0x4e,0xb0,0x4f,0x9b,0x4b,0x94, +0x89,0xac,0x59,0x4f,0x68,0xc6,0x7f,0x82,0x4b,0x0d,0x2f,0x45, +0x5a,0xef,0xe3,0xa3,0xb0,0x5a,0x28,0xef,0x4a,0x2c,0x95,0x36, +0x19,0x4e,0xd8,0x8e,0x6d,0x4a,0xf4,0x55,0xed,0x12,0xd9,0xc6, +0x3e,0x62,0x2d,0x2a,0x60,0x8a,0xd6,0xaa,0x2e,0x84,0xc8,0xda, +0xbc,0xda,0x4b,0x04,0x5d,0x9a,0xfa,0xf1,0x21,0xd9,0x95,0xf5, +0x88,0x48,0x0b,0x4d,0xe0,0x37,0x83,0x94,0x6b,0xc3,0x91,0xc2, +0xd4,0xa2,0x6a,0xcb,0x2e,0xea,0xb4,0x94,0x6c,0xe5,0xe5,0xd5, +0x4c,0x2f,0x68,0x03,0x6d,0xac,0x25,0xb3,0x6e,0xd7,0x14,0x5d, +0x4d,0x2f,0x35,0x27,0xee,0xd1,0xf5,0x60,0xa9,0xcb,0x3f,0x04, +0x66,0x8a,0x7e,0x30,0xc5,0xa8,0xf5,0x7e,0x93,0xa5,0x60,0xe2, +0x9c,0x4b,0x60,0x11,0xf4,0x6b,0x2b,0xb2,0x08,0x95,0xdf,0xf1, +0x37,0x4f,0x95,0x25,0xe4,0x17,0x5d,0xba,0xb7,0x31,0x2b,0xad, +0x40,0xc9,0x47,0x2d,0xb1,0xf6,0x25,0xa1,0xb6,0x40,0x9c,0xf1, +0xdf,0xf8,0x1a,0xbd,0xce,0xf6,0x92,0xb3,0xf1,0xd9,0xd4,0x75, +0x2d,0xa1,0x6f,0x84,0xf0,0x24,0xd3,0x47,0x95,0x64,0x4a,0x04, +0x2f,0xb4,0x9a,0x3a,0x6d,0xe6,0x99,0x09,0xb5,0xba,0xf1,0x11, +0xbb,0x86,0xc0,0xd4,0xbb,0xea,0xdc,0x91,0x2f,0xbf,0xe4,0x9d, +0x4e,0xc2,0xd1,0x28,0xd3,0x56,0xfb,0xc8,0x00,0x25,0x50,0x56, +0xa2,0x9f,0xb1,0x05,0x3a,0x84,0x71,0x51,0x57,0x98,0x0f,0xfd, +0x04,0x71,0xa4,0xd1,0x6b,0xe2,0xc8,0x1e,0x5c,0xf8,0xd3,0x9c, +0x95,0x0d,0x7b,0x10,0xa2,0xb8,0x11,0xa9,0x4d,0x27,0xcf,0xa6, +0x22,0xb7,0x9c,0xed,0xbe,0xae,0x7d,0x2d,0x2c,0x16,0xde,0xf2, +0x9b,0x0c,0xeb,0xdf,0x42,0x8b,0x85,0xd6,0x45,0x5f,0x5e,0x2c, +0xbc,0xb8,0x2f,0x69,0x3f,0xea,0xdc,0x1f,0x02,0xc5,0x94,0x55, +0xce,0x27,0x74,0x3f,0x55,0x1a,0xda,0x3e,0x90,0x9d,0xa9,0x68, +0xff,0x50,0x95,0xaa,0x8d,0x9a,0x8b,0x66,0xe5,0x81,0x44,0x01, +0xde,0x0e,0xca,0xab,0x89,0x84,0xb6,0x88,0x24,0xec,0xab,0xca, +0xe1,0x92,0xf3,0x58,0x90,0x8c,0x30,0x8b,0x0f,0x7b,0xda,0xb2, +0x88,0xfc,0xca,0xb3,0xb1,0xdc,0xf2,0xf4,0xdc,0x8f,0xb0,0x34, +0x6d,0x36,0x91,0xb0,0x62,0xb5,0x1b,0x61,0x1f,0x87,0x61,0x10, +0xe9,0x88,0x41,0x44,0xfd,0x85,0xfd,0xa4,0xb0,0x51,0xa3,0x61, +0x14,0x38,0xb3,0x51,0x63,0x8c,0xfb,0xaf,0xa4,0x54,0xdc,0xb4, +0x94,0xc2,0x01,0x3f,0x36,0xd9,0x18,0xdf,0x7d,0xcd,0x70,0xea, +0xde,0x86,0xa0,0xd5,0x32,0xf5,0x0c,0x26,0xbf,0x59,0x2a,0xe1, +0x8e,0x1f,0xdb,0x69,0x8c,0xef,0x12,0x36,0x74,0xe3,0x28,0x7e, +0xc9,0x37,0xfc,0x48,0x3f,0x3e,0x05,0xf0,0xc0,0xb3,0x2e,0x0a, +0x78,0xe9,0x3f,0x5e,0x00,0xf9,0xa9,0x69,0x03,0xa1,0xce,0x8d, +0xc9,0xaf,0xba,0x31,0x25,0x6e,0xd5,0x5a,0xa5,0x7f,0xd0,0x01, +0xf9,0x73,0x01,0x22,0xa0,0x0e,0xbf,0x92,0x5f,0xd9,0x26,0xf6, +0x85,0x1f,0x34,0x02,0x23,0x6b,0xe0,0x0f,0x9f,0xf8,0xb3,0xdb, +0xfe,0xfc,0x85,0xc4,0x1a,0xf8,0xc1,0x67,0x6c,0xbd,0x07,0x75, +0xdf,0xc6,0xab,0xa0,0x6e,0x36,0x4d,0x61,0x7e,0x0a,0x3f,0xed, +0x40,0x5b,0xc8,0x04,0x1c,0xc0,0x28,0xc9,0xda,0x65,0x02,0xd3, +0xa1,0x9f,0x3f,0xeb,0x27,0xc1,0x00,0xf6,0xae,0x16,0x43,0xe4, +0x08,0x2a,0xef,0xd2,0xf3,0xfe,0xb7,0x4a,0xaf,0x65,0x15,0x9c, +0x28,0xd1,0x17,0x38,0xb6,0x32,0x17,0xe8,0x6f,0x2a,0xa2,0x9e, +0xe7,0x89,0xa8,0xde,0x0f,0x16,0xa4,0x14,0xdf,0xb0,0xec,0x63, +0x0e,0xd7,0xe0,0x03,0xdf,0x4f,0x23,0x8d,0xd0,0x60,0xf5,0x78, +0xef,0x7e,0xd6,0x11,0x4f,0xa2,0xa8,0x93,0x3f,0x39,0x90,0x9b, +0x54,0x7c,0xdd,0xb2,0xef,0xc1,0x35,0x48,0xf5,0x65,0x0e,0xe1, +0x46,0xb0,0x2c,0x18,0xe3,0x09,0x32,0x2f,0x12,0xaf,0x7e,0x92, +0x55,0x7c,0xfc,0x5f,0x83,0xa5,0xba,0x60,0xf2,0x6a,0x06,0x89, +0xed,0x4d,0x9b,0xbd,0x45,0xc6,0xfd,0xbb,0x01,0x3c,0x16,0x37, +0x80,0x91,0xde,0xeb,0xcf,0xef,0x63,0xfa,0x1d,0x35,0xc8,0x0b, +0xfc,0x8d,0x70,0xa4,0xbd,0x82,0xf9,0x43,0x71,0x2e,0x74,0x66, +0xee,0xe1,0x69,0x61,0x09,0x9b,0xc0,0x4c,0x72,0xd3,0x0a,0xca, +0x2c,0xac,0x5b,0xb5,0xd6,0xdc,0x8f,0xf5,0x94,0xb6,0x83,0xc3, +0xac,0x71,0xbc,0x9f,0xb7,0x2c,0x9a,0x6d,0xaa,0xb9,0x59,0x50, +0x9c,0x5e,0xb8,0x27,0x29,0x4d,0x98,0x92,0xbd,0xae,0xf0,0xda, +0xad,0x27,0x4c,0xa1,0x6f,0x7c,0x6c,0x27,0xdf,0x9c,0x44,0xf2, +0xcd,0x1a,0xd3,0xc8,0xc4,0x55,0x10,0x2e,0xc8,0x37,0xd1,0x48, +0xbe,0x09,0x17,0xe4,0x1b,0x65,0x6d,0x68,0xec,0x4e,0x43,0xfa, +0xd9,0xd4,0x8c,0x1c,0xcb,0xd1,0xb7,0xd7,0x1b,0x07,0x4f,0x9a, +0x0e,0xf1,0x6f,0x59,0xb3,0x02,0x98,0x39,0xef,0x71,0x56,0x71, +0x96,0x39,0x21,0xfe,0xc3,0xa4,0x0f,0xe3,0xd1,0x7c,0xe1,0x14, +0x34,0xcd,0xaa,0x84,0xb4,0x7f,0xd6,0xef,0xd1,0xd7,0xb0,0xb4, +0x3d,0x2f,0x9d,0xf4,0x12,0x65,0xa2,0x3e,0x0c,0x4c,0x5e,0x64, +0x2e,0xf5,0xfc,0x8e,0x3c,0xfb,0xa5,0xa2,0xec,0x93,0x1c,0xe4, +0x8e,0x53,0x8f,0xfd,0x64,0xea,0xc2,0x33,0xc5,0xc5,0x19,0xe9, +0x82,0x36,0x7e,0x7e,0xc9,0x94,0x29,0x8b,0x96,0x4e,0x45,0xd7, +0x89,0x79,0x57,0xd3,0x09,0x3c,0x51,0xb0,0x36,0x5e,0xc0,0x6b, +0xa2,0xf4,0x09,0xec,0x5d,0x70,0x84,0x05,0x30,0x9c,0xba,0x76, +0x10,0xba,0xfb,0xea,0x5f,0xac,0xab,0x52,0xa2,0x35,0x9b,0x4c, +0x6d,0x8e,0x04,0x06,0x2b,0x91,0xd2,0x94,0x10,0x7e,0xa5,0xcc, +0x33,0xc5,0xfc,0x4a,0xc5,0x99,0x4b,0xa7,0x4c,0x09,0x59,0x3a, +0x45,0x5c,0xa9,0x0c,0x4d,0x66,0x4b,0xb5,0x66,0x93,0x84,0xc9, +0xec,0x08,0x6a,0x0b,0x23,0x7c,0x32,0x7a,0x9b,0xa4,0xf0,0x07, +0xb4,0xf7,0xf5,0xe3,0x73,0xe3,0x4f,0x6f,0x80,0x75,0xc4,0x4f, +0xbc,0x8c,0xc3,0x55,0xa9,0xe8,0x58,0xf4,0xc7,0xca,0x45,0x97, +0x8a,0xff,0x3c,0x44,0xd3,0x82,0xb1,0x9e,0xe0,0x84,0x0f,0xf1, +0xe3,0xac,0x22,0x55,0x45,0x2e,0x77,0x7f,0x53,0x69,0x15,0x76, +0x12,0xfb,0x1a,0xa7,0x0b,0xf4,0x35,0xd9,0xa5,0xc6,0xe1,0x83, +0x44,0xda,0xc4,0x40,0xe4,0x57,0x17,0xc8,0x02,0xc9,0x63,0x9e, +0x0f,0x34,0xe9,0xa2,0xe5,0x11,0xd6,0x20,0x1f,0xd1,0xb7,0xac, +0xe3,0xfb,0x7c,0xd8,0x84,0x8c,0x05,0xd9,0x03,0x1d,0x75,0x1c, +0x72,0xee,0xb3,0x6e,0x96,0x3f,0x68,0x0b,0x17,0xde,0xe6,0xbf, +0x97,0xdf,0x66,0x0a,0x53,0x82,0x6e,0xb7,0x6f,0x1f,0x34,0x0a, +0x35,0xf0,0xcb,0x47,0xfd,0x6e,0x2b,0x71,0x08,0x5a,0x9e,0xfd, +0xa9,0xad,0xca,0xf8,0xe9,0xa9,0xec,0xf2,0xf2,0x53,0xf3,0x87, +0x58,0xfd,0x8d,0x43,0x96,0xcf,0x0f,0xe2,0x21,0xbb,0x1c,0xde, +0x09,0xc2,0x22,0x2f,0x49,0x89,0xc2,0xad,0x9f,0x10,0xdc,0xfa, +0x59,0xd0,0x95,0xa7,0x00,0xfd,0x84,0xe7,0x87,0x45,0x79,0x12, +0x2b,0xcd,0x5b,0xbf,0x7e,0xc9,0x7c,0x8b,0x6f,0xc5,0x64,0x5e, +0xf9,0xf1,0x5a,0x63,0x43,0xfa,0x3c,0x5e,0x6b,0x3c,0x29,0xc5, +0xca,0x6f,0x2a,0xcc,0x53,0xc2,0xa4,0xa9,0x8b,0x4e,0xe6,0xe7, +0x9f,0x3f,0x59,0x64,0xdb,0x2b,0x15,0x66,0xac,0x98,0x31,0x63, +0xe1,0x0a,0xe1,0xfe,0xf1,0x4e,0x19,0xbc,0x43,0x5b,0x68,0xd8, +0xdc,0xce,0x68,0xa3,0x86,0x26,0x8f,0x77,0x69,0xcb,0xfd,0x04, +0x8b,0xc2,0xeb,0x4a,0xa4,0x48,0x36,0xe6,0x41,0x1f,0xea,0x1c, +0xaf,0xd7,0x85,0xac,0x8d,0x72,0x45,0x6b,0x16,0xfc,0x73,0xac, +0x71,0xde,0xfa,0x0d,0x8b,0xe7,0x5b,0x7c,0x2a,0x26,0xf3,0x07, +0x5e,0x72,0x3d,0x7b,0xc3,0x59,0xfc,0x48,0x63,0x4f,0xe8,0xa1, +0x84,0x4b,0x53,0x17,0x9e,0xca,0xcf,0xcf,0x38,0x55,0x64,0xfb, +0x80,0x7f,0xda,0x72,0xfe,0x69,0x58,0x3d,0xbe,0x2c,0x25,0xda, +0x53,0xe8,0xac,0x36,0xe2,0x6d,0x90,0x37,0xa7,0x24,0x3f,0xf3, +0xfc,0xd1,0x6c,0x81,0x04,0x14,0xeb,0x31,0x4e,0xa6,0x82,0x4b, +0x99,0x19,0xc7,0x33,0x71,0x31,0x76,0x37,0x72,0x9f,0x24,0x53, +0xde,0x65,0x68,0xf0,0x7b,0x64,0x52,0x24,0x6a,0x6c,0x84,0x6f, +0xde,0xba,0x6b,0xff,0xe9,0x94,0xb3,0xf1,0x59,0xe6,0x7f,0x4a, +0x61,0xfb,0xa4,0x7b,0xd2,0xb6,0xf1,0xef,0xcd,0x08,0x98,0x3c, +0xf6,0x63,0xd4,0xd8,0xd8,0x1e,0x19,0x13,0x81,0x0b,0x50,0x1f, +0x9e,0x4e,0xc2,0x77,0xd4,0xe0,0x3b,0x58,0x43,0x69,0xdb,0xe0, +0x85,0x33,0xba,0x0d,0x76,0x64,0x61,0xb2,0x32,0x4e,0x35,0x76, +0x7a,0xf0,0x1c,0x57,0x6e,0xb5,0x66,0xf0,0x80,0x36,0xe9,0x47, +0xb4,0xf9,0x82,0x0d,0xac,0x73,0x93,0x13,0x90,0x9b,0x7c,0xb9, +0x5c,0x27,0x15,0x37,0xe6,0xd9,0x85,0x42,0xdb,0x0c,0x26,0xc8, +0x72,0xac,0xd1,0x09,0xc8,0x76,0x51,0x86,0x37,0xd9,0x64,0xda, +0x04,0x15,0xb7,0x5b,0x36,0xe4,0xe5,0x8c,0x6c,0xf7,0x6f,0xe6, +0x57,0xd8,0xf6,0xbf,0xaf,0x80,0xb4,0x64,0x71,0x85,0xff,0x50, +0x98,0xdd,0x89,0xd6,0x92,0x7f,0xb4,0x69,0x25,0x8f,0xc4,0x1f, +0x06,0xb1,0x0f,0x25,0xcd,0x04,0x55,0x4a,0xc9,0xcc,0xc7,0x17, +0x2a,0xce,0x66,0x50,0x1a,0xcf,0x53,0x8c,0x20,0x36,0x19,0x0d, +0xcc,0x66,0x41,0x8f,0xd1,0x8e,0x6a,0x95,0xac,0xf6,0x50,0xaf, +0x2a,0xf1,0xd2,0x81,0xd4,0x83,0xd4,0xbd,0x82,0x24,0x6f,0x42, +0x23,0xca,0x55,0x1b,0x62,0x12,0x0c,0x19,0x17,0xf7,0xe5,0x55, +0x5a,0x4e,0x0e,0x41,0x11,0xdf,0x71,0xf0,0x81,0xa7,0xf5,0x62, +0x10,0xa3,0xe5,0x3f,0x5c,0x2e,0x2b,0x34,0x6b,0x04,0xd6,0xa2, +0x54,0x8c,0x42,0x2d,0x3d,0x88,0x4e,0xfa,0x6e,0xbb,0x8f,0xdc, +0xbe,0x52,0x9d,0xb1,0xee,0xcc,0x14,0x61,0xc1,0xd1,0x01,0x3a, +0x2b,0x2b,0x24,0x8f,0x39,0x67,0x72,0x72,0x72,0xce,0xfc,0x69, +0x3b,0xc9,0x93,0xe4,0xa5,0x73,0xe6,0xcc,0x5e,0xca,0x93,0x64, +0xea,0xd4,0x98,0xc0,0x05,0xc1,0xe9,0x0b,0x37,0x8d,0xda,0xb3, +0x1e,0xe2,0xa0,0x61,0x6c,0x18,0x4b,0xf0,0x8e,0x39,0x04,0x71, +0x86,0x45,0x0b,0xb7,0xd3,0x36,0x6f,0x22,0x4f,0xac,0x2f,0xf9, +0x04,0x0e,0x2a,0x45,0x2b,0xb3,0x26,0x1e,0xb6,0x52,0xf7,0x9b, +0x64,0xaa,0xe5,0xed,0x47,0xc1,0xac,0x05,0x6b,0xf1,0xe8,0xca, +0xe7,0x56,0xf8,0xe5,0xa0,0x52,0x59,0x9a,0x7e,0xd7,0x7a,0x54, +0xba,0x5b,0xba,0x24,0x20,0x20,0x78,0x89,0x97,0x6d,0xb5,0xe4, +0x15,0x9c,0x5e,0x69,0x93,0x2b,0x88,0x16,0xc1,0x7c,0xe9,0x1b, +0x37,0xf4,0x08,0x3c,0xa4,0xf4,0x7a,0x56,0x11,0x8f,0xc0,0xc2, +0xcc,0xee,0x2d,0x53,0x31,0x6d,0x3a,0x86,0x3c,0x89,0x4a,0x0b, +0x8b,0xd7,0x0a,0xc9,0x81,0x7c,0x1e,0x62,0xa9,0xdb,0x57,0xe4, +0xd8,0x15,0x3d,0x9a,0x6e,0x75,0xac,0x47,0xdc,0x64,0x25,0x67, +0x17,0x8b,0x62,0xb4,0xd3,0xc2,0x69,0xd0,0xca,0x8d,0x0f,0xd8, +0x6b,0xa5,0xb9,0x17,0x4e,0x61,0x6d,0x97,0x84,0xab,0x41,0x36, +0x68,0x86,0xdb,0x7e,0x36,0xe6,0x14,0x21,0x0c,0x0f,0xcc,0xda, +0xd1,0x2f,0xd1,0x35,0x7c,0xeb,0x1d,0x56,0x2e,0xb8,0x55,0xfc, +0xf8,0xf8,0x1d,0xf6,0x1d,0x3f,0x56,0xaf,0x43,0x1f,0x9e,0xf4, +0xda,0xfb,0x01,0x6d,0x7b,0x1d,0x3d,0x02,0x2a,0x73,0x2f,0x9f, +0xca,0x35,0xef,0xd9,0xbd,0x67,0xbb,0x50,0x0e,0xa7,0xc2,0x28, +0x00,0x7d,0x37,0xfb,0x96,0x56,0x65,0xe7,0x9f,0x28,0x32,0x53, +0x65,0x31,0xe1,0x33,0x9a,0xcd,0xa0,0x4f,0x92,0x32,0x95,0x5c, +0xf8,0x84,0xa3,0xf8,0xa2,0x63,0x9e,0x7d,0x41,0xb3,0xd8,0x92, +0xee,0xb5,0xc2,0xd8,0x67,0xd9,0x94,0xce,0xc3,0x79,0xc5,0xe7, +0xb6,0x9f,0x78,0xad,0x34,0xf6,0x98,0x43,0x5d,0x8f,0xa2,0x5b, +0xa8,0x23,0x75,0xc8,0x22,0x7c,0x60,0x2f,0x0c,0x42,0x1b,0xbc, +0x48,0x25,0x9c,0xed,0xf3,0x82,0x33,0xba,0x0d,0x1e,0x33,0x28, +0xcc,0x21,0x56,0xa2,0xee,0x16,0x72,0x76,0xce,0x01,0xda,0xfc, +0x31,0xba,0x60,0x2f,0x50,0x36,0xd9,0xd7,0x0c,0x68,0xf3,0xe7, +0x64,0xc6,0xf4,0xf9,0x2b,0x82,0x6d,0xce,0xb5,0x9f,0x11,0x75, +0xf6,0x90,0x63,0xf5,0x4b,0x8f,0x0a,0xec,0x0b,0xd2,0xcd,0xf2, +0x6e,0x88,0x5e,0x55,0x7e,0x2e,0xf3,0x9c,0x30,0xcb,0x4b,0x8b, +0x61,0xbe,0x9d,0xb0,0xa4,0x19,0xf5,0xc3,0xc6,0x3d,0x62,0x23, +0x42,0x18,0xe7,0x9d,0x48,0x3d,0x85,0x3e,0x68,0x13,0xca,0xb4, +0x19,0x13,0x58,0xb0,0x14,0x3d,0x6e,0xe2,0x6c,0xe8,0xe9,0xed, +0xa8,0x5e,0xe9,0x43,0xdd,0x6e,0x09,0xcf,0x3c,0xb6,0x26,0x55, +0xb8,0xd2,0xbf,0xda,0x4c,0x58,0x7f,0xad,0x37,0xf5,0x68,0x46, +0x3e,0xb6,0xe4,0xd6,0xf6,0x25,0xe5,0xda,0xf1,0x20,0xd6,0x36, +0xd6,0x38,0x69,0xdd,0xaa,0x45,0xb3,0x2c,0x63,0x6f,0xce,0xf8, +0x6b,0xb3,0xd5,0xdb,0xb8,0xad,0x7f,0x9f,0xb8,0x7e,0x3f,0x10, +0x2d,0x88,0x6d,0x51,0xae,0x16,0x9f,0xbc,0x63,0x3d,0x23,0xd5, +0x94,0xac,0x98,0x38,0x61,0xd2,0x8a,0x51,0xb6,0xa5,0x92,0xf7, +0xe4,0x93,0x65,0x36,0x19,0x47,0x81,0x0b,0x9c,0xae,0xeb,0x4d, +0xea,0xec,0xcb,0x25,0xe2,0x9b,0x2b,0x3f,0x89,0xd7,0xd5,0xfc, +0xf5,0x19,0x2f,0xc8,0x17,0x1a,0x3e,0x44,0xb9,0xaa,0x0d,0x99, +0x88,0x1a,0x3e,0xd4,0x3d,0x9d,0xac,0x3f,0x2b,0x96,0x4f,0xba, +0x43,0x6f,0x6c,0x8a,0x05,0xa7,0x0a,0x0b,0xb3,0xa8,0xfb,0x54, +0x7d,0xd5,0x64,0x1d,0x9f,0x48,0x12,0xbd,0xe1,0xb0,0x40,0xa2, +0x3c,0xd4,0x17,0x4e,0x50,0x2d,0x52,0x7d,0xc6,0x1a,0xf0,0x70, +0x35,0x24,0x98,0x35,0x12,0xe2,0x26,0x4b,0x43,0x2c,0x7e,0xd5, +0x53,0xff,0xfc,0xa3,0xba,0xa8,0x3a,0x73,0xc3,0x99,0xb9,0x07, +0x85,0x9e,0x74,0x47,0x71,0xbd,0x13,0x79,0xb9,0x59,0x27,0xae, +0xda,0x3e,0x94,0xae,0x66,0xad,0x9c,0x35,0x73,0xc1,0xca,0x89, +0x7c,0x30,0xb8,0x76,0xd3,0xcd,0xcb,0x6d,0x04,0x75,0x17,0x22, +0x78,0x0c,0x3d,0x53,0x52,0x72,0xfe,0x4c,0x91,0x2d,0x4d,0xfa, +0xd7,0xc6,0x5c,0x5b,0x82,0x41,0x60,0xe7,0xeb,0x30,0x92,0x9f, +0x5c,0x78,0xc3,0x92,0x35,0xea,0x5d,0xa3,0x90,0xb0,0x68,0x0a, +0x26,0xea,0xf0,0x84,0x44,0xfe,0x57,0xc0,0xe2,0x7c,0xfd,0xe2, +0x6f,0xca,0xe5,0xf9,0x28,0x62,0x01,0xf1,0xe4,0x6f,0xda,0xe4, +0x11,0x0e,0x59,0xd7,0xe3,0x44,0xf7,0x6d,0xa4,0x2e,0x7e,0x24, +0x84,0x67,0x14,0x94,0x14,0xd7,0xbb,0x35,0x6e,0xfd,0x8f,0xb2, +0x08,0x25,0x8e,0xb8,0xde,0x8f,0x4b,0x50,0x57,0xf5,0x25,0xa8, +0xe3,0x8a,0xe0,0x4e,0x7d,0xf0,0xb2,0x9c,0x27,0xf5,0x7f,0x43, +0x2b,0xb2,0x85,0xb7,0xda,0x59,0xb2,0xe1,0xf4,0x3b,0x07,0xac, +0xbb,0xf9,0xb7,0x6c,0x47,0x6d,0x09,0x84,0xba,0xbf,0x43,0xf4, +0x9d,0xda,0x01,0x75,0x5f,0x93,0xb7,0x63,0xba,0xb9,0xb2,0xf5, +0xac,0xad,0x7d,0xfe,0x58,0xfc,0xef,0xca,0x61,0xf6,0x86,0x73, +0xff,0xce,0x1f,0x53,0x60,0x91,0x7d,0xe5,0x30,0xff,0xfc,0x69, +0x7d,0xe5,0x70,0xd9,0x0c,0x7d,0xe5,0x50,0x89,0x48,0xe1,0x03, +0x87,0xda,0x80,0x0f,0x9a,0xea,0xe2,0x5c,0x61,0xc8,0x93,0x24, +0x34,0x43,0xac,0x20,0x9b,0x4a,0x68,0xbb,0xe6,0x84,0x36,0xff, +0x87,0xfc,0xad,0x35,0x38,0x46,0xa8,0xf9,0x39,0x01,0x8d,0x27, +0xd2,0xb6,0x03,0x42,0xd5,0x88,0x7a,0x04,0x22,0x85,0x09,0x17, +0xfd,0x97,0x4e,0xe9,0x4a,0xdd,0x9d,0xc9,0xa1,0xcc,0xe4,0x0b, +0x05,0xc2,0x20,0x57,0xac,0xf6,0x77,0xc3,0xa5,0x95,0xd2,0x02, +0xea,0x79,0x8e,0xe0,0x2a,0xff,0xd5,0xc2,0x4b,0xe9,0x17,0xc5, +0x1a,0x0b,0x1a,0x11,0xb6,0xb0,0xeb,0x85,0xa4,0xbc,0x36,0x22, +0x44,0xbe,0x62,0x0f,0x7e,0xa5,0xc1,0x68,0x44,0x98,0xaa,0xe3, +0x42,0x70,0xa3,0x46,0xf7,0x22,0x44,0xaa,0x54,0xd7,0xd9,0x3e, +0x60,0xea,0x8c,0x57,0xbd,0x6a,0x37,0xef,0x7d,0x6d,0xbb,0x7b, +0xaf,0xdc,0xee,0x4e,0x88,0x86,0xbb,0x28,0xd5,0x10,0xd0,0x6d, +0x44,0xe7,0x4e,0x4f,0x86,0xb3,0x00,0x16,0xf0,0xf3,0xfd,0xe7, +0xbf,0x74,0xa7,0x1e,0xa1,0x04,0xdc,0xa9,0x53,0x7b,0x22,0x08, +0x82,0xe8,0x69,0xaa,0x40,0x70,0x67,0xaf,0x6e,0x5d,0x7e,0xf1, +0x62,0xc1,0x6c,0xe2,0xb3,0x3b,0xcf,0x9e,0x74,0xb9,0x83,0x3c, +0x88,0xf9,0x3c,0x9b,0x9e,0x1a,0x30,0x0d,0x3a,0x41,0x27,0xea, +0xd2,0x81,0xb0,0x4e,0xac,0x53,0xe5,0xb4,0x29,0xfc,0xed,0xbb, +0x84,0x5c,0x98,0x9d,0xe3,0x98,0x99,0x79,0x2c,0xcb,0x2e,0x2f, +0xe5,0x88,0x53,0x5f,0x5e,0xdb,0x3f,0x23,0x93,0xf5,0x9d,0x16, +0x74,0xc6,0x3e,0x78,0x0e,0x39,0x8e,0x17,0xbd,0xdf,0x35,0x0e, +0x5b,0x35,0x1d,0x39,0x8e,0x91,0xc2,0x55,0xeb,0x5c,0xd2,0xb9, +0x8b,0x96,0x0b,0xfc,0x6c,0xef,0x45,0x53,0x3b,0x0f,0xb0,0x16, +0xce,0x2c,0x29,0xc8,0xc8,0xe2,0x93,0xe8,0x7d,0x19,0x57,0x53, +0x79,0x0a,0xe8,0xa2,0xc0,0x1a,0xc2,0x12,0x5a,0xf1,0x9f,0xf6, +0x58,0x79,0x28,0x97,0x36,0xe3,0x53,0x78,0x33,0x6b,0xf4,0x45, +0xdc,0x5f,0xe6,0x8f,0x3c,0xf2,0x39,0xcf,0xa6,0x17,0x08,0xbd, +0xa7,0xae,0xbc,0x43,0xf6,0x83,0x65,0xe4,0xd2,0x82,0x6b,0xd7, +0x2f,0x17,0x52,0xf7,0x21,0x68,0xa5,0xe4,0xce,0xa3,0xa1,0x40, +0x90,0x68,0x5f,0x13,0x6d,0xd5,0x3f,0xb4,0x65,0x87,0xd7,0x4a, +0x3d,0xa2,0x4e,0xda,0xc6,0xc3,0xd3,0x12,0xc2,0x1a,0xb3,0x25, +0x95,0xbc,0x54,0x6a,0x2b,0x5c,0x4e,0xb4,0x85,0x44,0x93,0x61, +0x3a,0xae,0x55,0x23,0x87,0xd8,0xa4,0x35,0x56,0x9e,0x33,0xb7, +0x6a,0xe8,0x62,0xa4,0x6d,0x65,0xc2,0xdc,0x3a,0xc1,0x3a,0xac, +0x0b,0x24,0xed,0x83,0xe7,0x0a,0x5b,0xda,0x09,0x96,0x62,0xbe, +0xd8,0x91,0xf8,0xc8,0x62,0x0d,0xe5,0xfb,0x33,0xb4,0x05,0x96, +0xe5,0x92,0x3f,0x61,0x8f,0x5b,0x31,0x89,0xcd,0xb9,0x02,0x73, +0xd0,0xdb,0xba,0xbc,0xd6,0x93,0x94,0x1b,0x9d,0xa9,0x54,0x45, +0xe2,0x61,0x2d,0x6d,0xca,0x43,0x42,0xe9,0xf4,0x6f,0x8b,0x2b, +0x2f,0x66,0x5d,0x12,0x14,0x85,0x24,0xa4,0x28,0xc8,0x82,0xa2, +0xc0,0x1a,0x6d,0x4a,0x0e,0x8b,0xa7,0x6e,0xd9,0xe4,0xb2,0x99, +0x05,0x56,0x6b,0xd3,0x70,0xf9,0x6b,0xcb,0xc0,0x89,0xc1,0xd0, +0xbb,0x97,0xa3,0x7a,0xc9,0x43,0x19,0x11,0xd9,0x2b,0xba,0x73, +0xac,0x23,0x73,0x18,0x81,0x8c,0x3f,0x5e,0x58,0xae,0x50,0xd6, +0x53,0x4f,0x27,0x92,0x19,0x9f,0x27,0x5c,0x3b,0x7f,0xf0,0x61, +0xfb,0x25,0x41,0x01,0x0b,0xeb,0x87,0x14,0x30,0xa5,0xf8,0xd1, +0xc5,0xa2,0x8b,0xbb,0x13,0x4c,0x76,0x9e,0xf7,0x47,0x76,0xf3, +0x3a,0x6a,0x6a,0x48,0x58,0x26,0x0c,0x51,0x22,0x37,0x53,0x5b, +0x1d,0xa9,0xae,0xc6,0x25,0x91,0xda,0xae,0x3c,0x0f,0x43,0x9d, +0xff,0x3c,0xb0,0x30,0xaa,0x6f,0xfb,0x9b,0x21,0x13,0x84,0x84, +0x86,0xbe,0x29,0x21,0x3f,0x26,0xf6,0x06,0xfc,0x4d,0xd1,0x9a, +0x13,0x2c,0x2f,0x29,0x52,0x48,0x17,0xb3,0xa3,0xb5,0x01,0x44, +0x56,0x3b,0x13,0x6d,0x1e,0x4b,0xaf,0x9d,0x86,0xa2,0x14,0xff, +0x8f,0x10,0x4c,0x6d,0x63,0xa2,0xda,0xb0,0x40,0x14,0x78,0xba, +0x73,0x82,0xd1,0x16,0x81,0x44,0xd0,0xf4,0xff,0xb5,0x3c,0xcd, +0x24,0x85,0x35,0x8c,0x95,0xe6,0x6e,0xd8,0xb0,0x8c,0xc7,0xb9, +0xaa,0x69,0x7f,0xfe,0x51,0x55,0x58,0x9d,0xb9,0x1e,0x23,0x40, +0x22,0x6b,0x58,0xaa,0x0d,0x32,0xb2,0xf7,0xf8,0x33,0xda,0x20, +0x4d,0x0c,0x39,0x9e,0x97,0x9b,0x79,0x5c,0xe8,0x87,0x67,0xbe, +0x37,0x6b,0x66,0xc8,0x7b,0xa8,0x9e,0xbf,0xfa,0xd5,0x55,0x12, +0x07,0xdd,0xea,0x76,0x11,0xa5,0x64,0xfa,0xb7,0xf9,0x55,0x59, +0x99,0x17,0xcc,0x29,0x09,0xd4,0x89,0x27,0xea,0x8d,0x4c,0x25, +0x05,0x30,0xea,0x0f,0x6a,0xfb,0x80,0xe8,0xf4,0x0f,0xea,0x7c, +0x9a,0xc4,0x0e,0x9d,0xa4,0x13,0x3f,0x2e,0xf5,0x52,0x46,0x46, +0xf6,0x8c,0xe1,0x8d,0xfb,0x6c,0x44,0xc7,0x6a,0xd2,0x9f,0x3a, +0x79,0x10,0xa1,0xa6,0x4b,0x69,0x37,0x14,0x21,0x5a,0xc1,0x83, +0x74,0x20,0xc9,0x48,0xc9,0xa6,0x6e,0x7f,0x13,0xdd,0x10,0xf5, +0x51,0x4e,0xe1,0xa5,0x84,0x9d,0xd8,0xb4,0xdb,0xf7,0x63,0xdd, +0xaa,0x1b,0xa3,0x22,0xff,0x2f,0x97,0x47,0x1b,0x24,0xff,0xc5, +0x94,0xeb,0x22,0x90,0x66,0x59,0x2c,0xdc,0x79,0xb1,0x26,0xb4, +0x05,0xb2,0x17,0xc3,0x22,0x71,0x75,0x04,0xda,0x32,0xa7,0x30, +0x61,0xec,0x63,0x86,0x88,0x69,0xc2,0x92,0x58,0x5f,0x23,0xd1, +0x74,0x1b,0xce,0x70,0x6a,0xfd,0x9b,0x14,0xce,0xae,0xae,0xca, +0xc9,0x3d,0x95,0xab,0x3f,0x1c,0xab,0xa9,0x28,0xd7,0xa0,0xcd, +0x60,0x81,0x0a,0xf8,0xb1,0x86,0x63,0x51,0x70,0x8b,0x3a,0x4d, +0x22,0x4a,0xe2,0x9e,0x64,0x64,0xe8,0xf5,0x40,0x06,0x56,0x21, +0x74,0x62,0x24,0x2c,0x35,0x74,0x7b,0x68,0x84,0x20,0xdb,0x1b, +0x0e,0x67,0xa6,0x64,0x17,0x58,0x32,0xbd,0x96,0x18,0xbb,0x4d, +0xf7,0x05,0xf7,0x0e,0xd6,0xe2,0x19,0xf7,0xaf,0x96,0xe6,0x9c, +0xe3,0x5d,0x66,0x33,0x2c,0xa4,0x6d,0x26,0x12,0xb4,0x6c,0x4a, +0xc5,0xa5,0xd8,0xf1,0x3c,0x4d,0xb8,0x52,0x02,0xa3,0x98,0x4b, +0x68,0x6a,0x68,0x5c,0x68,0x04,0x35,0xf4,0x27,0x59,0xa9,0xd9, +0xd4,0xd3,0x8f,0x87,0xdd,0x25,0xa4,0x32,0x37,0xbb,0xd0,0xcc, +0xae,0xc1,0x3b,0xbc,0xad,0x7a,0x61,0x5b,0x31,0xe3,0x70,0x20, +0xd5,0x64,0x80,0x6b,0xa2,0x8f,0x36,0x50,0xd7,0x5a,0x69,0x34, +0x06,0x72,0xc4,0xea,0xd7,0x13,0xb1,0xfa,0x35,0x58,0x68,0xad, +0x84,0x23,0xb7,0xf0,0x90,0xb0,0xe0,0x15,0x42,0x2b,0x8d,0xc4, +0x0e,0x98,0x6c,0x2d,0x9a,0x55,0x55,0x95,0x93,0xa7,0x7f,0x3b, +0x33,0xd8,0x70,0xf7,0x8b,0xe8,0xcb,0x68,0x81,0xac,0xf9,0x38, +0xb8,0x25,0x16,0xb3,0x1a,0x8d,0x93,0xd8,0x5d,0x6a,0xbe,0x4a, +0xb4,0x69,0xfb,0xf1,0x0f,0xad,0x59,0xa0,0xe4,0x3c,0x04,0xde, +0x25,0xa8,0xce,0x26,0xd3,0xd6,0x73,0x71,0x5d,0xe2,0x23,0xa2, +0xb6,0x80,0xb7,0x95,0x8a,0xba,0xf2,0x40,0xd5,0xe8,0x25,0x2b, +0x55,0x75,0x46,0x7f,0xd6,0x3b,0xc6,0x48,0x9d,0xbf,0x21,0xef, +0x67,0x04,0x1d,0xc1,0x9c,0xb1,0x1d,0x8f,0x6a,0xab,0x24,0x8f, +0xd9,0xe7,0x0b,0x8b,0x2e,0x9f,0xff,0xd3,0x76,0x0c,0x17,0x56, +0xa7,0xea,0x0b,0xab,0xb4,0x4d,0x09,0x81,0x45,0xb4,0x69,0x22, +0xa1,0xf2,0x68,0x32,0x44,0xae,0x7d,0x47,0x75,0x55,0x0e,0x7d, +0xb5,0xf7,0x7b,0xd6,0x58,0x2d,0x22,0x60,0x08,0xed,0xb1,0x76, +0xa0,0x23,0x64,0x4b,0x27,0x1e,0xef,0xff,0x89,0x35,0x52,0x93, +0xf8,0xa9,0xf5,0xbd,0x96,0xf7,0x77,0x84,0x6d,0x8f,0x70,0x19, +0xfa,0x47,0x72,0x98,0x7a,0x1c,0x27,0xf0,0xd2,0x97,0x75,0xa4, +0x6e,0x27,0x49,0x55,0x5e,0xee,0xe9,0x9c,0xdd,0x68,0x63,0x4d, +0xdb,0x56,0x13,0xaf,0x97,0x37,0x78,0xf4,0x27,0xba,0x71,0x95, +0x50,0xb8,0x49,0x38,0x7c,0x56,0x57,0xb8,0xf1,0x14,0x0a,0x37, +0x33,0x50,0xe1,0x06,0x7d,0xac,0x4a,0xf2,0x2e,0x9c,0xce,0xe2, +0x21,0x5d,0x5f,0x72,0x77,0x36,0x5d,0xa6,0x9e,0x94,0xb0,0xf5, +0xa3,0x51,0xd7,0x46,0x37,0xbc,0xa6,0x6d,0x16,0x91,0x4f,0x4a, +0xf3,0xb2,0xeb,0xed,0xae,0xf8,0xdb,0x9a,0x99,0x2e,0xd7,0xeb, +0xe0,0xa0,0x74,0xcb,0x26,0xb6,0x71,0x14,0xc4,0xea,0x82,0xc9, +0x76,0x01,0xa9,0x2e,0xb4,0x45,0xa0,0x70,0x27,0x8a,0xe1,0x75, +0xf2,0xb9,0xd4,0x8c,0xcb,0x96,0xa3,0x43,0xd6,0x1b,0x07,0x05, +0xf3,0x3a,0x79,0xa0,0x35,0x33,0x90,0x99,0xf2,0xbf,0xca,0x2c, +0xc9,0x34,0xef,0x4e,0xd8,0x97,0xbc,0x5f,0x98,0x14,0x9e,0x86, +0x66,0x99,0x95,0xb0,0x97,0x35,0xdc,0xb0,0x27,0x52,0x37,0x78, +0xb1,0x5b,0x65,0x6e,0x89,0x3f,0x95,0x91,0x2a,0xa2,0xcd,0x6b, +0xab,0xcc,0x3e,0x01,0x13,0x61,0x43,0x1f,0x5c,0xc7,0x31,0x5d, +0x79,0x74,0xa9,0xf0,0xf2,0xbe,0xa4,0x7d,0x48,0x38,0x3d,0x68, +0x27,0x9c,0x8a,0x6c,0xfc,0xbc,0xb2,0x74,0xcb,0xa2,0xad,0xf3, +0xb7,0x1e,0x61,0x9b,0x4c,0xa3,0x12,0xd7,0x43,0xec,0xa2,0xb8, +0x90,0xb8,0x90,0xed,0xe6,0x30,0x16,0xe7,0x1d,0x7b,0x08,0x62, +0x0d,0xdb,0x17,0x2e,0xda,0x21,0xd2,0x72,0x9e,0x04,0x19,0xd8, +0x72,0xb6,0x4e,0xe7,0x76,0x36,0x86,0x15,0x30,0x7a,0x32,0xa9, +0x16,0x2a,0x13,0xd4,0xb1,0x33,0x51,0xd6,0x33,0x47,0xb6,0x8a, +0xe7,0x92,0xb9,0x41,0xec,0x7d,0x90,0x60,0x35,0x8c,0x98,0xfc, +0x5f,0x63,0xa4,0x13,0x48,0xd1,0xa4,0xad,0xd6,0xf2,0xe1,0xae, +0xf0,0x8e,0x20,0x0b,0xd6,0x2e,0x35,0x13,0xe4,0x0b,0xcb,0x2f, +0x8b,0x89,0x80,0x95,0x50,0xd3,0x7a,0x22,0x00,0x23,0x7c,0x8e, +0x9f,0x00,0x23,0x4c,0x57,0x4a,0x79,0xaf,0x1a,0x18,0xf6,0x41, +0x18,0x0e,0x99,0x8d,0x61,0x7c,0xc8,0x1c,0xcd,0xc7,0x45,0xb9, +0xab,0x43,0xa7,0x1a,0xe1,0x8d,0xe0,0xe1,0xd0,0x1f,0x6c,0xd6, +0xb2,0xa9,0xdf,0x3c,0xac,0xaa,0xc8,0xac,0x34,0xcb,0x2f,0xbd, +0x09,0xbc,0xcf,0x67,0x09,0x1c,0xd3,0xda,0x57,0x93,0x68,0x8b, +0xd9,0x3c,0xf2,0x2d,0x78,0xe9,0x8c,0x82,0xec,0x2f,0x08,0xbf, +0x89,0xb5,0x0a,0x6a,0xae,0xdc,0x66,0xcf,0x84,0x68,0xc6,0xa6, +0xdf,0xd8,0x32,0x1e,0x09,0x73,0x02,0xd8,0x7b,0x9d,0x60,0x39, +0x0c,0x68,0x4b,0x2e,0x48,0x4c,0xfa,0x56,0x50,0xcc,0xaa,0x0c, +0xa1,0xe3,0xbb,0xc7,0xf0,0x3b,0x4f,0x41,0xdf,0xa6,0x89,0xba, +0x6f,0xd3,0x7e,0x54,0xda,0x78,0xa6,0x2b,0x6d,0xf8,0xb3,0x35, +0xdd,0x61,0x25,0xf4,0x7d,0xad,0xb4,0xb1,0x05,0x11,0x78,0x57, +0xee,0xaa,0x0d,0xc4,0xb5,0xe3,0x7b,0xaf,0x1a,0xf2,0xee,0x98, +0xeb,0x1b,0x4d,0x19,0xf7,0x8e,0xff,0xf0,0xc4,0x72,0x8d,0x36, +0x0f,0x21,0x5d,0xc3,0x86,0xaf,0x1b,0x73,0x33,0xc2,0x74,0xe8, +0xde,0xde,0x4f,0x7f,0xb1,0xd4,0xc0,0xf4,0x40,0x66,0x36,0x3e, +0x83,0x47,0x5a,0x53,0xc2,0x86,0x8d,0xe5,0xd1,0x78,0x8a,0xbe, +0x8e,0xd7,0x5b,0x34,0x90,0xf2,0x95,0x60,0xdf,0x2e,0x31,0xf6, +0x9c,0x1a,0x04,0x1e,0x3d,0xad,0xc5,0xb3,0x0d,0xec,0xcd,0xdf, +0x2a,0x3f,0x66,0x2d,0x2c,0xf1,0x70,0x41,0x11,0x2e,0x92,0x2f, +0xae,0xde,0x66,0x1e,0x96,0xa7,0x82,0x84,0x3b,0xc7,0xd8,0x16, +0xfd,0x25,0xbb,0x58,0x65,0x6a,0x71,0x27,0xb5,0xbc,0x7e,0x68, +0x3b,0x0e,0xa1,0xf7,0xc2,0x59,0xcc,0xfa,0x98,0x7c,0xc4,0xc6, +0x8c,0x4f,0xdc,0x04,0x7e,0x86,0xb1,0xd2,0x26,0xe6,0x37,0x3e, +0xf6,0x28,0x8c,0x51,0xbf,0x27,0xb8,0xbc,0xc8,0xe2,0x59,0xfc, +0x2b,0x3e,0x96,0xaa,0x71,0x75,0x11,0xce,0x51,0x17,0x57,0xe4, +0x85,0x9e,0x61,0xdd,0x91,0x16,0xd7,0xd7,0x00,0xa3,0xa4,0xd5, +0xac,0xef,0xd0,0x98,0xd3,0xd0,0xdd,0x00,0x1d,0xfd,0xd5,0x97, +0x55,0x92,0xb3,0x76,0x0c,0x97,0xb9,0x9c,0x55,0x2f,0xda,0x2a, +0x8c,0xc8,0xc8,0x37,0x87,0x0c,0xe8,0x47,0x5b,0x6c,0xe7,0xdf, +0xc0,0xfa,0x88,0x40,0x9c,0x1b,0x72,0x78,0x5b,0x57,0x7d,0x59, +0x50,0xf4,0x9a,0xc3,0x7b,0x18,0xba,0x09,0x79,0x0c,0xea,0x58, +0x40,0x7e,0x30,0x32,0x43,0xea,0x67,0xd5,0xcf,0x2c,0x2f,0xba, +0xdc,0x04,0x13,0x98,0xbb,0x8c,0x73,0xeb,0xf2,0xb9,0x2f,0x9a, +0xa0,0x76,0x57,0xd7,0x8a,0xf0,0xae,0xcd,0x62,0x59,0xca,0x87, +0xc6,0x9b,0xd5,0x17,0x7e,0xfc,0xe1,0xda,0xbc,0x71,0xd6,0x4d, +0xc6,0x71,0xbe,0xf3,0x7a,0xf6,0xf0,0xbb,0x70,0xd3,0x2a,0xbf, +0xba,0x4c,0x7e,0x63,0xc3,0xd8,0x97,0x5e,0x9e,0x70,0xe6,0xb7, +0x91,0xf0,0x05,0xf3,0xf2,0x40,0xfe,0x58,0x1c,0x46,0xbb,0x95, +0x48,0x21,0xbb,0xa2,0xb0,0x33,0xd0,0x80,0xcf,0x69,0x48,0x48, +0x70,0x62,0x8b,0x79,0xb7,0xcc,0xd2,0x09,0x09,0x8b,0x61,0xf8, +0x11,0x52,0x6e,0x8b,0x14,0x54,0x2a,0xea,0x18,0xcf,0x2b,0x0f, +0xe6,0x5c,0x0e,0x13,0x79,0x91,0xe0,0xf0,0x0b,0xc9,0x51,0xc0, +0xcc,0x7a,0x33,0x97,0x72,0x98,0x0c,0x27,0xd8,0x6c,0x69,0x1f, +0x34,0x7e,0xf5,0x3d,0x79,0xe1,0x0d,0x8d,0xce,0x10,0xbf,0x59, +0x44,0x1e,0x02,0x25,0xa8,0xf7,0x98,0x41,0x5b,0xa3,0xdd,0xb7, +0x47,0x1a,0xaf,0x66,0x95,0x74,0x36,0x6c,0xc8,0x9e,0xd5,0x30, +0xda,0x00,0xa3,0x79,0x3b,0x8d,0x1e,0x1a,0x73,0x06,0x86,0x89, +0x76,0xaa,0xad,0x12,0x54,0xd9,0x6b,0x48,0x95,0x0d,0xa1,0x9e, +0xbc,0x81,0x91,0x22,0xdb,0x71,0x68,0xcc,0x29,0x70,0x7b,0x4d, +0x91,0x05,0x8f,0x97,0x66,0x32,0x81,0xfc,0x68,0xfc,0x33,0xf5, +0x76,0xf5,0x13,0xcb,0xdf,0x7d,0xaf,0x83,0x33,0x34,0xeb,0xeb, +0xd3,0xae,0x6b,0x8d,0xdf,0xdf,0x51,0xd6,0xae,0xe1,0xe8,0x56, +0x9e,0xc9,0x1b,0xe2,0xe3,0xd2,0xac,0x2f,0x1f,0x95,0x2e,0x18, +0x4b,0x3d,0x11,0x06,0xd2,0xea,0x1e,0xa9,0xdd,0xc6,0x7f,0xdd, +0x27,0x03,0x64,0xda,0xee,0x20,0x4f,0xac,0x60,0x1e,0x35,0xbf, +0x45,0x64,0x1f,0x02,0xb7,0x21,0x98,0x1a,0xd1,0x73,0xe5,0x0d, +0x46,0x80,0x40,0x8c,0x82,0x66,0xa4,0x31,0x65,0x3a,0x94,0xd3, +0x2c,0xdc,0xb0,0x87,0x75,0xea,0xf8,0x74,0xa8,0x20,0xe5,0x3e, +0xfc,0xf5,0x79,0xb7,0x07,0x3a,0x29,0x77,0xac,0x12,0x1c,0x38, +0x59,0x90,0x72,0x4b,0xae,0x58,0xf7,0x1a,0xaf,0x56,0x94,0x08, +0x52,0xee,0x64,0x54,0xab,0xa0,0x13,0x71,0xd1,0x7d,0x92,0x12, +0x18,0x14,0xc4,0x0b,0xfc,0xf6,0x01,0xe5,0x82,0x82,0x5b,0x59, +0xce,0xdf,0xd1,0xa1,0x3c,0x28,0xc0,0x4e,0xdb,0xf5,0x68,0x57, +0x4f,0xdb,0xfd,0xfb,0xcf,0x7a,0xda,0x2e,0xff,0x9f,0x80,0x40, +0x41,0xdb,0xad,0xa8,0xb0,0x7e,0x68,0xac,0xac,0x2a,0x17,0xb4, +0x5d,0xf1,0x3f,0x33,0x58,0xff,0x79,0x35,0xea,0x25,0xda,0x66, +0x1e,0x1f,0xa7,0x23,0x78,0x23,0x35,0xeb,0x4f,0xaa,0x20,0x07, +0x2a,0xa9,0x73,0x39,0x3f,0xb8,0x0c,0x65,0xaf,0x6a,0xd1,0xe1, +0x62,0x2e,0x81,0x23,0xb4,0xe9,0x1e,0xa2,0x68,0xe6,0x88,0x3d, +0x81,0xaa,0xf3,0xbe,0x2d,0xf3,0x63,0x42,0xa2,0x16,0x98,0xef, +0x6c,0x36,0x1c,0xfc,0x2c,0xf5,0xd3,0x9f,0x2c,0xf7,0xb5,0x71, +0x01,0x6a,0xc3,0x70,0xe3,0xea,0xed,0xab,0xb7,0xaf,0xb1,0x32, +0x37,0x3e,0x61,0xb4,0x99,0x81,0xb3,0xde,0x5c,0xe9,0x97,0x07, +0x86,0xb2,0x9c,0xec,0xec,0x4a,0xcb,0x8d,0x59,0xb9,0x03,0xde, +0x9a,0x3f,0x67,0xc6,0x26,0xeb,0x95,0x75,0x86,0xf4,0xd4,0x43, +0xc7,0xf3,0x5d,0x73,0x8e,0xac,0x5d,0x64,0x8b,0x35,0xe2,0xa2, +0x70,0x07,0xda,0xfa,0x32,0xb2,0x45,0x8e,0x91,0x59,0x0a,0xb5, +0x3d,0xd2,0x79,0xfd,0x70,0xd8,0x9f,0x1d,0x96,0xa0,0x17,0x8f, +0x92,0xd4,0x93,0x08,0x05,0xcd,0xd0,0x64,0x1d,0x63,0x1c,0x49, +0xdb,0x50,0xc4,0x65,0x14,0xcd,0xae,0xc9,0x2f,0xba,0x70,0x96, +0xe7,0x32,0x28,0x27,0xb1,0x85,0xf5,0x42,0x97,0xe7,0xcb,0xd0, +0x9d,0x35,0x08,0x15,0x76,0xe5,0xe6,0xa8,0x98,0x2d,0x09,0x07, +0xcf,0xa6,0x9c,0xdf,0x79,0xc9,0xcc,0xfa,0x54,0x6a,0xd6,0x00, +0x36,0x50,0xda,0x32,0x60,0x5a,0x10,0xb8,0xf6,0x75,0x54,0xa7, +0xbb,0x2b,0x13,0xa2,0xbc,0xa3,0x87,0x6e,0xe1,0xa3,0xb5,0xf5, +0x72,0xd2,0x5f,0xaf,0xf4,0x0d,0x62,0xc5,0xb3,0xb6,0xbb,0xda, +0x4b,0xf9,0x03,0x1a,0xdf,0x54,0x43,0xc6,0x51,0x97,0x5b,0x44, +0xd2,0x3c,0x84,0x34,0x0e,0xa2,0x8a,0xdb,0x8c,0xd6,0x3c,0xd8, +0x39,0xd5,0x43,0x48,0xfb,0x3d,0x53,0x7f,0xe2,0xa3,0xd6,0x9f, +0x2d,0xd4,0xe9,0xee,0x28,0x7c,0xb2,0x9c,0x3a,0x9c,0x20,0x0a, +0x3b,0x70,0x35,0x97,0xc0,0x20,0xe5,0x4a,0x9d,0x14,0xcc,0xda, +0xc7,0x18,0x67,0x6c,0xdc,0xf0,0xde,0x32,0x4b,0x70,0xcd,0x0c, +0xd6,0x8f,0xf5,0xaf,0xc9,0xbf,0x72,0x7a,0xc3,0xf1,0x19,0xfb, +0x71,0xfa,0xed,0x0a,0x2d,0x94,0xa5,0x92,0xfb,0x9c,0x13,0x19, +0x99,0x39,0xc7,0xff,0xb2,0x9d,0x91,0xfe,0xca,0x79,0x2f,0x64, +0xe1,0x9c,0x95,0xee,0xb8,0x86,0x77,0xa0,0x0c,0x2f,0x42,0x4d, +0x95,0xa4,0xd6,0x45,0x1d,0xa5,0xdc,0x8d,0x32,0x7c,0xf8,0x60, +0xdf,0x0f,0x7f,0x5a,0x0a,0xb5,0x9f,0xc6,0xab,0x07,0x8c,0x9d, +0x23,0x06,0x6f,0x1c,0x6d,0xed,0x39,0xe0,0xe5,0x2d,0xd2,0x4d, +0x70,0xae,0xba,0xc2,0x2e,0x1f,0xb6,0x4b,0x02,0x0b,0x0c,0xa3, +0x96,0x03,0xa2,0x47,0xde,0x05,0x3f,0xea,0x38,0x8f,0xfc,0xcb, +0x20,0xa1,0x4d,0x7b,0xea,0xce,0x5e,0xa6,0xd1,0x9a,0x99,0x65, +0x53,0x4b,0x00,0x7a,0x51,0xb7,0x43,0x2f,0x96,0xa2,0x27,0x02, +0x42,0x31,0x11,0xbe,0xa2,0x66,0x67,0x1e,0x61,0x1e,0x93,0x8d, +0xd0,0x53,0xa1,0xd6,0x34,0x52,0xf8,0x5e,0x56,0xf0,0x61,0x2b, +0x9f,0x79,0xc6,0xf0,0x5c,0x61,0xd4,0xa4,0xf4,0xca,0x8a,0x92, +0xf4,0x1a,0x9e,0x2b,0xd4,0x94,0x2c,0x09,0x0c,0x08,0x5e,0x32, +0xda,0x26,0xab,0x5f,0x93,0xf7,0xc5,0x9b,0x53,0x49,0xe1,0x4a, +0xf1,0x66,0x83,0x78,0xb3,0xf7,0x44,0xfe,0xe6,0x2b,0xe9,0x77, +0xf8,0x9b,0xef,0x5c,0xe1,0x6f,0x9e,0xb8,0xc4,0x9b,0xa7,0x8f, +0x4d,0x86,0x93,0x5f,0x32,0x95,0xff,0xb5,0x1f,0x24,0x76,0x88, +0x78,0xd6,0x90,0x48,0xa0,0x58,0xcd,0x24,0x4f,0xd8,0xe2,0x0a, +0x70,0x30,0x9e,0xa4,0x6e,0xf9,0x3c,0x27,0x94,0xd0,0x9e,0x2c, +0xfa,0x04,0xb8,0x18,0xa0,0x41,0xa0,0xb0,0x28,0xd3,0x29,0xab, +0xbc,0xd7,0xb4,0x21,0x90,0xab,0x14,0xcf,0xfa,0x3a,0xb3,0xfc, +0x74,0x46,0xba,0x39,0x2d,0x71,0xef,0x8e,0xb4,0x58,0xe6,0xdb, +0x13,0x57,0x89,0xbc,0x1f,0x6d,0xd8,0x13,0xb6,0x23,0x34,0x8a, +0x77,0x99,0xd8,0x9d,0x87,0x8f,0xa7,0x1e,0xdf,0x99,0x6e,0x66, +0x13,0xaf,0x68,0x33,0x83,0xd9,0x24,0x29,0x3a,0x30,0x78,0x0e, +0xf4,0xf2,0x71,0x94,0xff,0x50,0x3c,0x3f,0x63,0x00,0x91,0xc3, +0x59,0xf7,0x51,0x46,0x8f,0xb7,0xa6,0x76,0x06,0xf3,0xc0,0x9f, +0x98,0xd5,0xca,0x0c,0x46,0x66,0x7d,0xfc,0x23,0x6b,0xf6,0xdd, +0xcd,0x99,0xc3,0xd3,0xad,0xb7,0x2f,0x19,0x7e,0x9c,0xd5,0xff, +0x1a,0xb8,0xb8,0xc2,0x68,0x3e,0xb4,0x15,0x08,0x85,0x70,0x26, +0xc3,0x1b,0x6c,0xe8,0x8b,0x3b,0x85,0x37,0xf7,0xa3,0x35,0xd0, +0x5a,0x48,0xba,0xc3,0x6a,0xf4,0xa5,0xa7,0x2e,0x68,0x9e,0x5e, +0x82,0xe6,0xe9,0xc6,0x0e,0x21,0x53,0xf8,0xdb,0x1b,0x5a,0x8b, +0x66,0x5e,0xbf,0x92,0x7b,0x49,0xb8,0xa8,0x27,0xe9,0x2e,0xea, +0x6f,0xe8,0xcb,0x4f,0x9b,0xaf,0x18,0x36,0x2f,0x0a,0x8e,0xf6, +0x75,0xdd,0xcc,0x7a,0xb2,0x6e,0xe5,0xb0,0x16,0x8e,0xaa,0xd1, +0x84,0x75,0x65,0x3d,0xcb,0x61,0x23,0x1c,0xac,0xf3,0x46,0xe1, +0x03,0x4f,0x1e,0x05,0x6e,0x68,0x8d,0x69,0x33,0x3e,0xd1,0x9e, +0x97,0xa9,0xc3,0x11,0x02,0x8f,0xa9,0x61,0x24,0xf9,0x87,0x05, +0x54,0xb4,0x37,0x9e,0x62,0x36,0xef,0xe4,0x35,0xd0,0xd1,0x00, +0x06,0x69,0x0d,0xeb,0xe8,0xbd,0xf9,0x14,0xd8,0x0c,0x5d,0x02, +0xd9,0x58,0x68,0x2c,0xd5,0x5d,0x17,0x36,0x1d,0x12,0x6d,0xfd, +0x8c,0x3f,0xf9,0x39,0x1b,0x56,0x2f,0xb2,0x85,0x19,0x57,0xa6, +0xad,0x3f,0x11,0x63,0x8d,0x9c,0xb1,0xfa,0xdd,0x79,0x73,0x1c, +0x3f,0x91,0xca,0x0b,0xcf,0xdd,0xbb,0x6a,0xd9,0x6b,0x3c,0xbf, +0xe1,0xe8,0x1c,0x3e,0x8b,0xd1,0x08,0xe1,0xd9,0xc0,0xbe,0x65, +0x0e,0x0a,0x75,0x9c,0x4a,0x60,0x93,0xe4,0xec,0xad,0x45,0x1a, +0xb5,0x78,0x36,0x5c,0x29,0x9e,0xf7,0xff,0x91,0xf5,0x1e,0x60, +0x55,0x1c,0x5f,0xdc,0xbf,0x1a,0xee,0x2e,0xce,0x2a,0xd6,0x35, +0xdc,0xcb,0x78,0x11,0x14,0x7b,0xc1,0xde,0x23,0x28,0x58,0xe9, +0xd8,0x7b,0x05,0x4d,0x24,0xc6,0x2e,0x2a,0x55,0x40,0xc0,0x4a, +0x55,0xa3,0x51,0xa3,0xc6,0x2e,0x82,0xa0,0x74,0xb0,0x80,0x80, +0x9a,0xa8,0xa8,0x98,0xf2,0x8b,0xe9,0xcd,0x68,0x12,0x93,0x98, +0x59,0x3d,0x8b,0xef,0x7f,0xce,0xec,0xc5,0xe4,0x7d,0xff,0x8f, +0xcf,0x23,0x7b,0x67,0xef,0x9d,0xdd,0x9d,0x9d,0x39,0x73,0xce, +0x94,0xcf,0xf7,0xce,0xb9,0xe2,0x13,0x67,0x4e,0xf1,0x76,0xb7, +0x77,0x5b,0x66,0x02,0xeb,0x33,0xd8,0xb1,0xec,0x22,0xf4,0x7c, +0xb8,0x29,0x6d,0xf3,0x36,0x1c,0xcf,0xdd,0x92,0xb0,0xe3,0xc0, +0xa1,0x8c,0x23,0x3b,0x3f,0x32,0xb3,0x41,0xe5,0xba,0xf3,0x34, +0x36,0x44,0x8a,0x9c,0x36,0x73,0x01,0xb4,0x9a,0xcc,0x9b,0x9a, +0x63,0x0f,0xd4,0x85,0x13,0xc1,0xe1,0x08,0xd6,0x94,0xb6,0x89, +0xe1,0xb7,0xd4,0x60,0x8b,0xac,0x5b,0xb9,0x3b,0x72,0x8b,0x30, +0x67,0xb6,0xaf,0x9a,0xfb,0x59,0x6f,0xb2,0xe3,0x35,0xf0,0x54, +0x9f,0x41,0x5b,0x74,0xc1,0xfe,0xe2,0x02,0xe1,0xb5,0x74,0x2f, +0x4b,0x81,0x6f,0x7d,0xd9,0x7e,0x78,0x13,0xf6,0xc0,0xfb,0x28, +0xca,0x38,0x94,0xb0,0xd5,0x03,0x68,0xbb,0xeb,0xe4,0x5b,0xb6, +0x61,0x00,0x75,0x5d,0x47,0x50,0x98,0x22,0x8e,0x35,0x62,0x4b, +0x79,0xcf,0x93,0xeb,0xcf,0xc2,0x3a,0xc0,0x32,0xf0,0xec,0x40, +0x4e,0x4b,0xbf,0x22,0x8f,0x76,0x14,0x3e,0xd6,0x23,0x1e,0xe9, +0x36,0x61,0x0b,0xae,0xc1,0x02,0xd6,0x98,0x85,0x55,0x42,0xb6, +0xee,0xc4,0xae,0xa0,0xa4,0xe7,0x37,0xfc,0x37,0xf6,0x57,0x24, +0x68,0xbe,0xd4,0x8f,0xf7,0x05,0xaa,0xf5,0xca,0xc2,0x8a,0x9b, +0xb9,0xc5,0xc7,0x0b,0xcd,0xbb,0xf9,0x2b,0xdb,0x1d,0xcf,0xde, +0x84,0x6e,0x8e,0xe5,0xf9,0xbc,0xa3,0x72,0x8b,0xde,0x1b,0x85, +0xe0,0x1f,0xb7,0x65,0xe4,0xfc,0xcc,0x47,0x3c,0x90,0xb5,0xae, +0x17,0x9b,0x94,0xff,0x60,0x21,0x0a,0xed,0x18,0x4e,0xf4,0xbf, +0xf8,0xe1,0x52,0xa5,0x92,0x40,0xf0,0x0d,0x6a,0x1e,0x8e,0x63, +0xa2,0x3d,0xa1,0x0f,0x0f,0x22,0xbb,0xb3,0xee,0x91,0x99,0x11, +0x3b,0x69,0x27,0x7f,0xb2,0x83,0xf5,0xae,0xd1,0x5b,0xf9,0x32, +0xf7,0x24,0x19,0x94,0xb9,0xe3,0x78,0x3f,0xe2,0x68,0x2d,0x9b, +0x7b,0xe7,0x13,0xea,0x96,0x2d,0x06,0x79,0xbb,0x90,0x6b,0xb3, +0xbe,0xae,0xad,0x12,0x08,0x21,0x11,0x8b,0x70,0xcf,0x2c,0x08, +0x86,0x18,0xe4,0x21,0x77,0x83,0x3c,0x64,0xde,0x1c,0x1d,0xc7, +0x3d,0xb3,0xfc,0x3d,0x45,0x95,0x96,0xbd,0xd4,0xed,0x11,0x89, +0xe1,0x79,0x05,0x8f,0x81,0x81,0xd0,0x46,0x00,0x88,0xae,0x5f, +0xc1,0x5f,0xe3,0xca,0x0b,0xb6,0x3f,0x18,0x49,0x7b,0x18,0x6d, +0xde,0x98,0x8c,0x77,0x73,0x01,0x77,0xb7,0x34,0xd8,0x2f,0xda, +0xfc,0x3c,0x51,0x37,0xc9,0x01,0x7e,0x81,0x62,0xdf,0x51,0xe5, +0x75,0xde,0x5f,0x54,0xdd,0xa8,0x14,0xda,0xbe,0x81,0xc8,0xea, +0x6b,0xd6,0x9a,0xa0,0x96,0xc7,0x49,0x1e,0x5f,0x9c,0xd2,0x5c, +0xa9,0xd3,0xfb,0x44,0x91,0xf5,0x9b,0xd3,0xa9,0x05,0xc7,0xfc, +0x59,0x7b,0x99,0x5a,0x4f,0x11,0xc1,0xf3,0x0f,0x8f,0xd8,0xba, +0xe3,0x54,0x0e,0x0f,0x09,0x9b,0xef,0x12,0xd1,0x61,0x16,0x42, +0x58,0x44,0x1c,0xfe,0xbd,0x0f,0xdb,0xcf,0xe3,0x70,0xee,0x19, +0x6f,0x6e,0x88,0xc3,0x2f,0x96,0xe6,0xed,0xdc,0x41,0x5d,0x7f, +0xe1,0x06,0xd3,0xfe,0xeb,0xea,0xa7,0xf9,0xce,0xe3,0x2f,0x9a, +0x46,0xad,0xf0,0x9b,0xd1,0xcf,0x09,0x9a,0x79,0x7d,0xcb,0x3a, +0x3a,0xff,0x25,0xb3,0x8e,0xb5,0x8f,0x59,0xb3,0x6f,0x2a,0x67, +0x8f,0x39,0x61,0xbd,0x9d,0x67,0x7a,0x32,0x6f,0xf8,0x35,0xb0, +0x77,0x02,0x2f,0x57,0xee,0xbb,0x44,0x40,0xc4,0xdf,0xd0,0x92, +0x79,0x39,0x2b,0x3f,0x4b,0xd4,0xf1,0x77,0x24,0x03,0xf6,0x26, +0x6c,0x9f,0xbf,0xca,0x4e,0x72,0x97,0xf1,0xa4,0x08,0xab,0x3b, +0x41,0x26,0xe0,0xe6,0x66,0xd6,0x4c,0x08,0x2e,0x4d,0x10,0xca, +0xf3,0x11,0xb4,0xd3,0x07,0x64,0xe9,0xe8,0xa1,0x7e,0xd0,0xc7, +0xdb,0x8c,0x0a,0x64,0x9b,0xff,0xf9,0xe6,0x67,0xd6,0xdb,0xa2, +0x00,0xfa,0xd5,0x17,0x49,0xdc,0x1f,0x6c,0x01,0x5b,0x50,0xa5, +0x37,0x62,0x39,0x9a,0xc3,0x38,0x68,0xc3,0xa3,0xc7,0x36,0xc1, +0xd8,0xe3,0x7c,0x7d,0xbe,0xe2,0xe4,0xf9,0x53,0xe6,0x3d,0x69, +0xef,0x27,0xef,0x8d,0x67,0x7e,0x62,0x5d,0xe1,0xb8,0xcf,0x68, +0x4b,0x7f,0x72,0xe8,0x08,0xb7,0x2f,0x27,0xcd,0x6c,0xea,0x65, +0x7d,0xce,0x54,0x36,0x45,0x8a,0x9d,0x32,0x65,0x21,0xb8,0xfb, +0xdb,0xb3,0xe5,0x0a,0x8f,0xba,0xbf,0xb1,0xd1,0x17,0x52,0x32, +0x93,0x32,0xe3,0x99,0xbf,0x11,0x77,0x8f,0x7f,0x16,0x9e,0x8e, +0xc8,0x4d,0x73,0x78,0x54,0xc2,0x8e,0xa3,0x67,0x32,0xcf,0x21, +0x7d,0x21,0xf8,0xba,0x3e,0x3b,0x80,0xff,0x3e,0xfe,0xad,0xc9, +0x33,0x60,0xc0,0x50,0xde,0xcf,0x25,0x0f,0x88,0xf6,0xd8,0xe8, +0x7f,0x2f,0xda,0xf1,0xc0,0xed,0x7d,0xdf,0xfc,0x62,0xa9,0xd6, +0x03,0x7d,0x35,0x19,0xb5,0x5d,0x4b,0xd5,0x81,0x51,0xd0,0x24, +0x16,0x9a,0x26,0xd8,0xb3,0x89,0x9e,0xe0,0x4b,0x5d,0x6e,0xf1, +0x22,0x30,0x4b,0x84,0xd7,0xdd,0x22,0x15,0x21,0x2f,0x71,0x95, +0x06,0xf1,0x85,0x57,0xa0,0x59,0x1b,0x57,0xaf,0x08,0xb1,0xf8, +0x7e,0xb1,0x50,0x50,0xcf,0xf2,0x6a,0xb2,0xd7,0x9c,0x98,0x79, +0xc0,0xba,0xfb,0x5f,0xea,0x59,0x0f,0xb0,0xa8,0x4b,0x25,0xaf, +0xe9,0x47,0xf2,0x0b,0x4a,0x0f,0xdf,0x73,0xce,0x92,0x6a,0xcb, +0xd6,0xcd,0x9d,0x87,0xd4,0xb3,0x20,0x45,0xeb,0xfd,0x22,0x49, +0x9d,0x88,0xd0,0x48,0x66,0x37,0x1e,0x1e,0xb3,0x3c,0x89,0xe9, +0xec,0x89,0x3a,0xde,0x48,0x99,0x28,0x52,0xf4,0x91,0x15,0x2a, +0xff,0x64,0xcf,0xdc,0x25,0xf6,0x12,0xec,0x5f,0x1f,0xf7,0x50, +0xd4,0x18,0xda,0x72,0x1d,0x4e,0x36,0x0d,0xfa,0x77,0x13,0xfb, +0x86,0xb4,0x98,0x6d,0x1b,0x8d,0xe0,0xe9,0x04,0x0f,0xbe,0xb6, +0xe7,0xff,0x67,0x12,0x7c,0x88,0xff,0x14,0x08,0x1f,0x2a,0x82, +0xa7,0xb2,0x2f,0x2f,0x96,0x5c,0x7c,0x3f,0xf5,0x7d,0x43,0xec, +0xfd,0x4d,0x31,0x09,0x2e,0xeb,0xb7,0x74,0x27,0x6a,0x71,0x24, +0x58,0x34,0x51,0x1e,0x9b,0xb0,0x68,0xf6,0x7f,0xf2,0x3e,0x2f, +0x9a,0x1a,0x5b,0xd1,0xb8,0xf2,0xa2,0x19,0x1a,0xe5,0x1a,0x0b, +0x76,0xb6,0x92,0x91,0x93,0xc6,0x7a,0x25,0x7b,0x37,0x04,0xe4, +0xda,0x57,0x35,0xfa,0x57,0x92,0x36,0x15,0xce,0x70,0x4f,0x7b, +0x18,0x7a,0xda,0x9e,0x26,0xf0,0xe4,0x0e,0xa2,0xe7,0x5b,0xdc, +0x83,0x1c,0x46,0x5b,0xea,0x44,0xad,0x65,0xce,0xb4,0x79,0x0e, +0xc1,0x16,0x3c,0xe5,0x1e,0xb5,0x1c,0x24,0x4a,0xc1,0xdd,0x00, +0x96,0x2d,0xb1,0xc6,0x9e,0xb7,0xa0,0x65,0x6f,0xdf,0x39,0x93, +0x57,0x58,0x8b,0xe7,0x9a,0x8a,0x4e,0xe4,0x9d,0xaa,0x71,0xfa, +0x32,0x77,0xd1,0x68,0xe7,0xe9,0x6e,0x32,0x74,0xf7,0x9e,0xd2, +0xbd,0xc7,0x4d,0x7f,0xd6,0xf8,0xde,0xd5,0xb3,0x37,0x3e,0x74, +0xde,0x2d,0xcd,0x4a,0x39,0x1a,0x7a,0xdd,0x49,0x79,0x1d,0x72, +0xb6,0x7d,0x82,0x6b,0xa5,0x36,0x25,0xec,0x30,0x9d,0xbd,0x90, +0x99,0x57,0x66,0x39,0x39,0x72,0xb5,0xdc,0x6b,0x7a,0x10,0x24, +0xf6,0x14,0xfa,0xef,0x57,0x1f,0xe5,0x97,0xe4,0x9b,0x79,0xb0, +0x98,0x2c,0xf4,0xdf,0x9d,0x1d,0xf3,0xae,0x43,0x1a,0x6b,0x4d, +0x9b,0x4e,0x21,0x6a,0x27,0xdd,0xfd,0x4f,0x4f,0xc8,0x16,0x90, +0x89,0xef,0x24,0x4f,0xf8,0x48,0xd5,0xdd,0x59,0x23,0x0d,0xf7, +0xe9,0x73,0x53,0x2a,0x7b,0xe0,0x2a,0x17,0xed,0xb0,0x66,0xe7, +0x21,0xc1,0x55,0xda,0xb2,0x15,0xb1,0xa9,0xe7,0x02,0x49,0x49, +0xdf,0x63,0xa8,0xe7,0xc6,0x7c,0xcd,0x42,0x78,0xa0,0x84,0xe0, +0xcb,0x21,0x10,0x0a,0x9d,0x69,0x07,0x0f,0x04,0x2f,0x3d,0x66, +0xa1,0x6c,0xe1,0x6e,0xd2,0x87,0x27,0xf5,0xa7,0xcd,0x78,0x1f, +0xe1,0x46,0xf4,0xcf,0x1f,0x4a,0xf0,0xa9,0x36,0x92,0x36,0x7f, +0xcc,0xbf,0x11,0x9e,0x8e,0x0a,0xc0,0x6b,0xc2,0x1d,0x0d,0x5e, +0x10,0x37,0x35,0x67,0x6c,0xbc,0xa0,0x44,0xea,0xf6,0x2e,0xd9, +0xb1,0xdd,0x88,0x32,0xcc,0x3c,0xbc,0xed,0x9d,0x8f,0x51,0x46, +0x73,0x85,0xb0,0x03,0x5f,0xa9,0xf0,0xae,0x0f,0xeb,0x3c,0x5f, +0x82,0xc6,0xb3,0x7c,0xc1,0xb5,0x87,0x55,0x28,0x47,0xfc,0x73, +0xed,0x0e,0xea,0x9f,0xbd,0xca,0x25,0xa1,0x52,0xd7,0x45,0x7e, +0xd0,0xac,0xb7,0x5e,0x48,0xfe,0x2e,0xba,0x4d,0xdd,0x06,0x93, +0x2e,0x38,0xa1,0xda,0xf8,0x52,0x2d,0xeb,0x6e,0xf9,0x0d,0x26, +0xf8,0xf3,0x0e,0x98,0xc7,0x53,0x3c,0x2c,0x0a,0xe0,0xfe,0xfe, +0x7e,0x32,0x83,0xba,0xa8,0xc4,0xf7,0x45,0xf3,0x1a,0xb4,0x5b, +0x57,0xd9,0x12,0xe9,0xe2,0xf9,0x43,0x39,0x05,0x87,0xdf,0x9b, +0x6a,0x85,0xe0,0xab,0x6c,0xba,0xfc,0x69,0x68,0xfe,0x04,0xab, +0x03,0xf7,0x82,0xa6,0xbd,0xaa,0x27,0x10,0xca,0x56,0x51,0xd7, +0xce,0x28,0xbe,0xd2,0xf5,0xcf,0xd1,0x90,0x2d,0xb0,0x30,0xdf, +0x79,0x4a,0xf0,0x91,0x9d,0xde,0x95,0x97,0x5a,0x57,0xc9,0x41, +0x7a,0x9e,0x42,0x9d,0xcc,0x36,0xb6,0x85,0x80,0xbf,0xb6,0xe8, +0x5c,0x30,0xc7,0xf1,0x76,0x65,0xe1,0xc5,0x93,0x17,0xd3,0xd2, +0xc4,0xda,0xbd,0x9e,0x3c,0x5e,0x2f,0x28,0x84,0x8e,0xac,0x45, +0xc4,0x9e,0xcd,0x38,0x26,0x85,0x63,0x47,0x38,0x74,0xb4,0xa3, +0xd4,0xcc,0x3d,0x69,0x18,0xa8,0xa8,0xbe,0xe0,0xde,0x95,0xf5, +0xf6,0xd5,0x3d,0x0c,0xd9,0xef,0xd1,0xb6,0x04,0x3f,0x9e,0x80, +0xb2,0xdf,0xe1,0x69,0x51,0xc9,0x1b,0xa3,0xd6,0x6c,0xa4,0xad, +0x2e,0x90,0x52,0x01,0x9c,0x74,0x9f,0x1e,0x0c,0x49,0xee,0x42, +0xff,0xb8,0xfc,0xcb,0x8b,0xa5,0x97,0xcc,0x36,0x18,0xd5,0x61, +0xb0,0x38,0xe6,0xf2,0xd2,0x33,0xe4,0x8f,0x23,0xd6,0x6c,0x72, +0xdc,0x4a,0xdd,0x9a,0x90,0x69,0xfe,0x90,0xd0,0x49,0x7c,0xbb, +0xf2,0x51,0x51,0x49,0xa1,0x79,0x5f,0xfa,0xfb,0xdb,0xde,0xc7, +0x91,0x84,0xae,0x8e,0x17,0xf9,0xb7,0x25,0x6a,0x19,0x4b,0x14, +0x98,0x47,0x42,0x13,0x16,0x25,0xcc,0xdb,0x6a,0xff,0x7e,0x75, +0xe6,0xbd,0xcf,0x2c,0x37,0xf4,0x51,0xbe,0xec,0x9f,0xcd,0xf2, +0x88,0xa8,0xf1,0x9b,0x82,0xac,0xb1,0xd0,0x02,0x3a,0x6c,0x05, +0xaa,0xbf,0xc1,0xcd,0x83,0x09,0x2d,0x24,0xeb,0x56,0x0d,0xab, +0xf5,0x36,0xd4,0xe1,0x2a,0x89,0x47,0x88,0xd2,0x7e,0x64,0xce, +0x6c,0xd1,0x55,0x6a,0x42,0x99,0xf1,0x66,0x2f,0x89,0xc1,0xa0, +0xe9,0x2a,0x34,0x21,0x11,0x53,0x73,0xc1,0xc0,0xd4,0xf4,0xa4, +0x0e,0xcb,0x08,0xcb,0xab,0x1f,0x47,0xf4,0xde,0xe2,0x5c,0x8b, +0x15,0x48,0xd9,0x1d,0x8c,0x7f,0x75,0x07,0xda,0x69,0x03,0x52, +0x76,0x7b,0x22,0x65,0x37,0x2d,0x55,0xac,0x31,0x0f,0x42,0x52, +0x1e,0xca,0x9d,0xf7,0x11,0xfd,0x55,0xb4,0x79,0x73,0x54,0xfc, +0x2e,0xd3,0x91,0x4b,0x7b,0x8a,0x2a,0x8c,0xfe,0x2a,0x16,0xfb, +0x2b,0x2f,0xd1,0x5f,0x29,0xea,0x80,0xe0,0xc0,0xa1,0x23,0xca, +0x67,0xdc,0x2b,0x3d,0x7d,0xfc,0xfc,0x07,0xce,0xbb,0x93,0x37, +0xf6,0x0b,0x9c,0xd4,0x75,0x82,0xf9,0x53,0xe9,0x7f,0xe5,0x75, +0x3f,0xb3,0x56,0x96,0x1f,0x67,0xdd,0xe2,0x31,0x36,0xf7,0x08, +0x9a,0x5f,0x27,0xfa,0x9f,0xea,0x1f,0x5a,0x06,0xdb,0xa0,0xff, +0x3c,0x51,0x3b,0xd0,0x45,0xcf,0x84,0xb1,0xbc,0x65,0x54,0xdf, +0x92,0x1c,0x1a,0x66,0x9f,0x32,0xbc,0xe0,0x23,0x9c,0x7d,0xf2, +0xd5,0xb6,0xf6,0xd6,0x63,0x60,0x70,0x83,0xd2,0xe3,0x2f,0x5a, +0x2c,0x5b,0xa6,0xbc,0x78,0xef,0x45,0x1c,0xb5,0xdb,0x41,0xaa, +0x55,0x7d,0x18,0x0b,0xd4,0x86,0x49,0x6c,0x06,0x8f,0xe6,0xde, +0xe7,0xdd,0xdb,0x69,0xde,0xbd,0xb5,0x4f,0xc1,0x75,0xf5,0xdc, +0xe5,0xa6,0x12,0x6f,0xb0,0xbc,0xc3,0xf5,0xe3,0x1d,0x6e,0xe6, +0x26,0x63,0x8b,0x23,0x2e,0x1c,0xcc,0xc7,0x56,0xb0,0x97,0x05, +0xde,0xd4,0x67,0x4f,0x62,0xc1,0xbc,0xd3,0x25,0xb6,0x4e,0xb7, +0x62,0xd6,0xa3,0xbb,0x46,0xa7,0xfb,0xba,0xcd,0xab,0xbf,0x11, +0x11,0xf9,0x8d,0xeb,0xdd,0xfb,0xf1,0x58,0x1e,0xf9,0x05,0xfd, +0x72,0xe7,0xe7,0x9f,0x7b,0xdd,0x86,0x20,0x67,0xb6,0x00,0x46, +0xa8,0x33,0x03,0x67,0xf1,0xb8,0xae,0x4b,0x40,0x71,0x89,0x95, +0xba,0x35,0x27,0x3c,0x6e,0x0d,0x67,0xa1,0x7a,0x8d,0xbf,0x16, +0xe5,0xae,0x87,0xe3,0x3a,0x26,0xed,0x54,0x35,0x6e,0xed,0xc6, +0xc7,0xfe,0x8a,0xa8,0xa5,0xb0,0x40,0x36,0x02,0xab,0xdc,0x4a, +0xcb,0xcd,0x39,0x05,0x43,0x87,0x2f,0x7a,0x1d,0x58,0x1d,0xfe, +0xa8,0xd0,0xe9,0xe2,0x91,0x35,0xcb,0x78,0x60,0x15,0xba,0x26, +0x6c,0xf1,0x3b,0x56,0x68,0xe7,0x6a,0x0a,0x42,0xa5,0xb6,0x62, +0xf2,0x37,0x1b,0xc3,0x2a,0xf5,0x61,0x50,0xc9,0x46,0x43,0xa3, +0x86,0x40,0xdf,0x5f,0x6b,0xa7,0xb2,0x53,0xe0,0x07,0xa7,0x24, +0xdc,0xfd,0xb3,0x1c,0x37,0x25,0xa4,0xd7,0x6a,0xa5,0x5e,0x10, +0x05,0x0e,0x6c,0xa5,0x97,0x1e,0x5b,0x2b,0x81,0xfc,0xe8,0x04, +0x79,0xa4,0xd0,0xf6,0x07,0x49,0x0c,0x77,0xab,0x36,0x36,0x98, +0x87,0x08,0x96,0x43,0x1d,0x66,0x10,0xc5,0x29,0x25,0xb0,0x61, +0xd3,0x2e,0xd4,0x8a,0x42,0xbe,0xa1,0xef,0xfd,0x49,0x48,0x55, +0xfe,0x88,0x52,0x95,0x3c,0x7e,0x4b,0xb0,0x31,0x60,0x58,0xdb, +0xee,0x5f,0x80,0xd9,0x99,0x75,0x83,0xd5,0xea,0x08,0xbf,0x69, +0xfd,0x05,0x0a,0xe6,0x94,0xfc,0x45,0x4d,0xd9,0x77,0xdf,0x55, +0x4f,0x1f,0x8e,0xc3,0x27,0x9f,0x90,0x3a,0xe5,0x85,0x8f,0x46, +0xd5,0x83,0x5f,0xed,0xfb,0x95,0x35,0xb6,0x54,0xe8,0x75,0x93, +0xb4,0xed,0x49,0x72,0x32,0x34,0x8e,0x74,0x5f,0x3f,0xdc,0x5e, +0xff,0x62,0xc2,0x8b,0x8a,0x8f,0x79,0xc3,0x7a,0xa4,0xed,0x60, +0xb3,0xf4,0x2f,0x02,0xb5,0xd4,0x21,0xfa,0x76,0xe8,0x4e,0xed, +0xbd,0x88,0xaa,0xad,0xa8,0xd2,0x57,0xfc,0xa0,0x6d,0xae,0xd6, +0xab,0xe1,0x63,0x1b,0x8d,0x66,0x97,0xc4,0xed,0xd1,0xef,0xc4, +0x9d,0x17,0x02,0xaf,0xab,0x51,0xb4,0xd9,0x4f,0xbc,0xda,0x76, +0x98,0x4a,0xd8,0x08,0x98,0x4a,0x3b,0x6c,0x25,0xea,0x04,0x4d, +0x01,0xef,0x87,0xcc,0x5b,0x6b,0xfc,0xb1,0x5c,0x2f,0xc1,0x60, +0xd5,0x03,0x16,0xd2,0x16,0xe9,0x44,0x9d,0xc8,0x4f,0x4c,0x7a, +0xc8,0x26,0x69,0x8d,0x6f,0xe1,0x89,0xa1,0xfc,0xc4,0x32,0x6d, +0x1b,0xd2,0x25,0x86,0x4a,0xd4,0xe1,0x33,0xa2,0x3f,0x90,0x1d, +0x02,0x97,0x2f,0x99,0xbe,0x60,0xe9,0xb1,0x6c,0x2b,0x7b,0x43, +0xce,0xc9,0x3a,0x72,0xb1,0xec,0x74,0x48,0x20,0x7a,0x4b,0x79, +0xc4,0xad,0xa1,0x02,0x74,0xa7,0xed,0x2a,0xb0,0xdd,0x39,0x89, +0xfd,0x1c,0x8a,0x3a,0x3e,0x65,0x13,0xcc,0x35,0xf9,0x49,0x9b, +0xd8,0xdc,0xf1,0xf1,0xd4,0xbe,0x23,0xe1,0x8f,0x12,0x55,0xa9, +0x47,0x3d,0xd2,0xb6,0x57,0xea,0x0f,0x05,0x45,0xa8,0xa0,0x4a, +0x72,0x38,0xf8,0x60,0xef,0xe7,0x4f,0xc0,0x8d,0x74,0x8b,0x18, +0xbe,0x7e,0x8c,0xd8,0x1c,0xf7,0xf0,0xfd,0xff,0x3d,0xd5,0xfe, +0x22,0xdd,0xc3,0x47,0xac,0xf4,0xb4,0x87,0xed,0x93,0x70,0x73, +0x93,0xbd,0xb6,0x0e,0x3d,0x9b,0x65,0xb5,0x5a,0xa2,0x17,0x8f, +0x1b,0x9a,0xb1,0x50,0x6f,0x7d,0xd5,0x5d,0x94,0xd8,0xe1,0xa7, +0xd6,0xe3,0xa9,0xb7,0xc5,0xa9,0x35,0xfc,0x54,0x88,0xb7,0xbe, +0x5a,0x9c,0x02,0x13,0x8f,0x17,0x3a,0x7a,0xa6,0xad,0x45,0x76, +0x98,0x55,0x5a,0xcb,0x7a,0x78,0x6e,0x39,0x81,0xec,0xb0,0xc6, +0xca,0xff,0x5f,0xba,0xb7,0x7e,0x9a,0xa8,0x3e,0xdc,0x51,0x9e, +0x58,0x0d,0x7f,0xf1,0x4a,0xf4,0xb8,0x5a,0xef,0x0f,0xa5,0x6c, +0x24,0xd8,0xd9,0x6a,0x91,0xd2,0x10,0xc0,0xf8,0x39,0x45,0xb3, +0x6e,0xac,0x37,0x06,0x30,0xfb,0x05,0x56,0x07,0x65,0xf1,0x98, +0x1b,0xeb,0x57,0x01,0xe1,0x90,0xc9,0x62,0xa5,0x0b,0xca,0x49, +0xa2,0x49,0xdc,0x88,0xc4,0x91,0xc7,0xb2,0x03,0x9c,0x57,0xb5, +0xd8,0x7e,0x92,0xbe,0x6d,0x7d,0xda,0x24,0x6d,0xcb,0x71,0x13, +0x34,0x43,0x5e,0xcc,0x2d,0x99,0x07,0x44,0x97,0x4d,0xb1,0xcb, +0x26,0x8b,0x80,0xa8,0x8f,0x91,0xdf,0x61,0xed,0x6d,0xc2,0xba, +0x63,0x40,0x14,0x0e,0x07,0xd8,0x16,0x89,0xbb,0xb4,0x5b,0xc9, +0x37,0x38,0x7a,0xd0,0xa3,0x7e,0xad,0x18,0xc4,0x6c,0x80,0x65, +0x72,0x9b,0x14,0x42,0xa2,0x2b,0x74,0x42,0xd8,0xb7,0xc8,0xc6, +0x71,0x6d,0x42,0x6a,0x71,0xbf,0xbd,0xfe,0x3f,0xee,0x81,0x50, +0xfb,0x78,0xa2,0xea,0x1d,0xb1,0xb7,0xbc,0xcd,0x1b,0xd6,0x56, +0xad,0x89,0x07,0x75,0x1b,0x2a,0x50,0x4d,0xb2,0x27,0x54,0x75, +0x40,0x52,0xd3,0x4b,0xde,0x4b,0x94,0x22,0xa9,0xc9,0x01,0x49, +0x4d,0xea,0x83,0xbf,0x5f,0x15,0x92,0x4a,0xc7,0xd5,0x82,0xa3, +0xeb,0xcf,0x96,0xb8,0xc2,0x42,0xee,0x2b,0xb8,0x90,0x33,0xd2, +0xd3,0x7b,0xa9,0x7b,0x2b,0x9d,0x63,0xaa,0x5f,0x21,0xf4,0xb2, +0xf9,0x48,0xa2,0xa7,0xeb,0x53,0xd4,0x47,0x82,0x95,0x92,0xcc, +0xae,0xeb,0x25,0xd2,0x43,0x5f,0x64,0xeb,0x4c,0x6c,0x60,0xeb, +0xa4,0xb3,0xf3,0xfa,0x75,0xe9,0x81,0x9f,0xaa,0xf5,0x85,0x41, +0x7a,0x5f,0x5e,0x2f,0x29,0xef,0xd0,0xf0,0x2d,0x4a,0xda,0x7c, +0xd5,0x86,0x6e,0xf2,0xfa,0x17,0xe7,0x24,0x29,0x93,0xb4,0xf8, +0xce,0x7a,0x94,0x90,0x12,0xbc,0xf0,0xb1,0xbe,0xef,0x99,0x16, +0xc5,0xd6,0xf1,0xca,0x7b,0x97,0xe8,0xff,0x47,0xe1,0xce,0xb6, +0x1e,0x0f,0x15,0x29,0xbc,0x9f,0x97,0x74,0xea,0xcb,0xee,0x07, +0xc8,0xb4,0xfd,0x68,0xa2,0x68,0xb9,0x44,0xbf,0x5c,0xc7,0x3e, +0xb2,0xd5,0xbe,0x59,0x42,0x35,0x5c,0xd5,0xb6,0x0d,0x11,0xbc, +0x1e,0x5f,0x6d,0xc7,0x47,0x26,0x78,0xa3,0x8e,0xdd,0x12,0xcc, +0x1a,0x7d,0x8d,0x3f,0x6d,0xbe,0x98,0x04,0x68,0xf1,0xd2,0x6d, +0xdc,0x61,0xfd,0xdb,0x68,0x38,0x29,0x98,0x51,0x5f,0xf0,0x42, +0xf8,0xc0,0x4e,0x1f,0xf6,0x17,0xb7,0x8c,0xfc,0x6b,0x9e,0xdf, +0x8f,0x81,0xed,0x06,0x88,0xaa,0x7c,0xb4,0x04,0x71,0x76,0xba, +0xe7,0x4f,0x9a,0x27,0xef,0x43,0x11,0x92,0x54,0x61,0x40,0x92, +0x5c,0x25,0xa2,0xfb,0xdf,0x95,0x14,0xf8,0x55,0x12,0x3a,0xd0, +0xfa,0xde,0x67,0x5a,0xc4,0x0d,0x3d,0xe2,0x0f,0x2d,0xf9,0x06, +0xfa,0x5c,0xd5,0xe8,0x73,0x4d,0xe3,0x6e,0xcb,0x29,0x36,0x70, +0x54,0xda,0x2a,0x18,0x69,0xf8,0x5c,0x23,0xdf,0xda,0x72,0x1a, +0x06,0xa2,0xcf,0x25,0xa0,0x78,0x07,0xa9,0xfd,0x27,0x04,0xbc, +0xa5,0x55,0x6c,0x30,0x0e,0x7b,0xba,0x9b,0xa0,0x8b,0x31,0x9c, +0x27,0x86,0x46,0x0f,0x73,0x87,0xad,0x1f,0x3a,0x6c,0x43,0x8d, +0xa1,0xd1,0xa1,0xf8,0x9d,0x7e,0xaf,0x87,0x46,0x55,0xed,0xe7, +0x6a,0xea,0x36,0x90,0xac,0x46,0x87,0x6e,0x1c,0xcf,0xc3,0xd3, +0x03,0x1d,0x3a,0x1c,0xf1,0xb3,0x9d,0xff,0xab,0xc6,0x40,0x8f, +0x9d,0x57,0xcf,0xb0,0x91,0x98,0x91,0x97,0x81,0x1e,0xf3,0x42, +0xf4,0x18,0xbf,0xa3,0x9e,0xfe,0x2f,0x4c,0x78,0xb1,0xa6,0xe7, +0xc9,0x15,0xda,0xa9,0xbb,0xcd,0x3b,0xa8,0xaf,0x26,0x15,0xda, +0x75,0xe2,0xbf,0x02,0x5f,0xf4,0x50,0xb2,0x5d,0x85,0x9e,0x4a, +0xc3,0xfc,0x9d,0xa2,0xfe,0x88,0x0a,0xab,0x35,0x4b,0x65,0x68, +0x3e,0xd6,0x1f,0x3e,0xe8,0x2e,0x14,0x56,0x2f,0xb2,0x46,0xff, +0xbb,0x8f,0xf8,0x20,0x1f,0x6d,0x67,0x57,0xda,0x32,0x81,0x80, +0xe3,0x3d,0xf6,0x17,0x2f,0x62,0x1a,0x95,0x12,0xa8,0xb5,0xda, +0xbf,0xd5,0x18,0x45,0xbb,0x1b,0x6b,0x3a,0xf4,0x59,0xe6,0xa7, +0x3f,0x5a,0x1e,0xe8,0xbe,0x01,0x9a,0x5d,0xa4,0xbc,0x2a,0x79, +0x0d,0x8e,0xa2,0xf5,0x57,0xd4,0x08,0x99,0xda,0xa7,0x90,0x7d, +0xf2,0xe5,0x1b,0xa5,0x22,0x0a,0x9b,0x31,0xd5,0xca,0xef,0x7f, +0x39,0xdb,0xa8,0x97,0x4f,0xd4,0x56,0x77,0xd6,0xc3,0x60,0x3c, +0x96,0xf3,0xa1,0x5b,0x7a,0x1c,0xca,0x76,0x0a,0xfd,0xac,0x8d, +0x2c,0x73,0x2c,0x1c,0xad,0x5f,0x4e,0x50,0x4f,0x6b,0x3d,0x7e, +0xb6,0x6d,0xb2,0x11,0x1b,0x6e,0x6c,0xe7,0xe2,0xdd,0x67,0x4f, +0x03,0x87,0xae,0x38,0xb3,0x52,0x51,0x98,0x77,0x2a,0x2f,0x35, +0x55,0xac,0xf9,0xee,0x01,0x66,0xc7,0xc2,0x22,0xee,0xea,0x28, +0x82,0x8f,0x1f,0x6d,0x7e,0x0d,0x9d,0xb9,0xec,0xb8,0x76,0x1d, +0x49,0x09,0x44,0xe2,0x0c,0xb5,0x2f,0x20,0x55,0xff,0x25,0xaf, +0xf1,0xb8,0xef,0x23,0xa2,0xd4,0x7f,0x4c,0x20,0x53,0xff,0x41, +0x05,0x4f,0x3f,0xe6,0x09,0x41,0xaf,0xee,0x13,0x81,0xc4,0x99, +0x2b,0x56,0x44,0xce,0x9d,0x18,0x7f,0x14,0xa6,0x03,0x3a,0x16, +0xf6,0x43,0xc8,0x35,0x6a,0xb2,0x47,0xaf,0xec,0xa5,0x8f,0xf6, +0x92,0xb6,0x77,0x21,0x6a,0x6c,0x85,0x89,0x76,0xfa,0x92,0x54, +0xc2,0x1d,0xf6,0x06,0xfb,0xf2,0xba,0xee,0xa6,0x77,0xfe,0x43, +0x62,0x03,0x99,0x63,0xe6,0x81,0x5f,0x50,0x7b,0x2e,0xf2,0x77, +0x99,0x0d,0x60,0xe6,0xbd,0x07,0x7f,0x71,0x8e,0xae,0x30,0x85, +0xf7,0x86,0x76,0x51,0xd0,0xd5,0x69,0x19,0x6b,0xca,0x6e,0xb2, +0x70,0xbd,0x5d,0x00,0xfb,0x04,0xec,0x78,0x77,0xf0,0xbd,0x96, +0xc8,0x96,0xe8,0x9f,0xfa,0x6b,0x3b,0xfb,0xe9,0x89,0xd0,0x5f, +0xef,0x4c,0xd4,0x1f,0xb5,0x18,0xda,0xc1,0x9d,0xa8,0x7f,0xd0, +0x16,0x2f,0x89,0x70,0x0f,0x10,0x0a,0xf6,0x92,0xa0,0x80,0xa3, +0xe5,0x5f,0x04,0x8b,0xa4,0xec,0x96,0xc2,0x32,0xcf,0xae,0xce, +0x77,0xfa,0x22,0xff,0xda,0xdf,0xcf,0xe7,0x55,0x0c,0x77,0xfe, +0x58,0x8c,0xf4,0x59,0xc6,0xeb,0x94,0x9d,0xa3,0xcd,0x33,0x08, +0xff,0xd0,0x11,0x61,0x02,0xf5,0x0f,0x49,0xc5,0xab,0x47,0x02, +0xb2,0xc7,0xfd,0xe6,0xab,0x61,0xb1,0x33,0xe3,0xa6,0x6f,0x37, +0xb3,0x4a,0x66,0x5f,0x09,0xbe,0xfa,0xd0,0xfa,0x07,0xdc,0x12, +0xed,0x47,0xd9,0x97,0xb1,0xb8,0xfa,0x58,0xa1,0xce,0x53,0x49, +0x7d,0x63,0xfe,0x67,0x31,0xd1,0x53,0x10,0xde,0xe4,0x80,0xca, +0xed,0x87,0x6a,0x24,0x07,0x66,0xe2,0x9e,0xf8,0x7a,0xc8,0xa1, +0xf2,0x2e,0x1b,0x1c,0x51,0x49,0x9a,0x95,0x38,0x2b,0xd9,0xbc, +0x9e,0x25,0x8e,0x89,0x3f,0x06,0x5b,0x4c,0xc9,0xf3,0xe7,0x6d, +0x9b,0xef,0xa4,0x50,0xc7,0x08,0x72,0x8f,0x95,0x1b,0xba,0xec, +0x4b,0x61,0x5d,0x2d,0xcb,0xd3,0x5b,0x11,0x58,0x77,0x8f,0xe5, +0x09,0x0c,0x0f,0x76,0x26,0xcb,0x44,0x67,0xb2,0x6c,0x7c,0xfc, +0x11,0x6e,0xe0,0xec,0x12,0x88,0xea,0x93,0xba,0x11,0xe6,0x9b, +0xc6,0x4b,0x1b,0xd9,0x7c,0x9f,0xb8,0x23,0x30,0xe3,0x5f,0x84, +0x5d,0xea,0x24,0x13,0xed,0xb0,0x93,0xa8,0xdf,0x6a,0x91,0xd5, +0x7a,0xe4,0x37,0xda,0xb6,0x1a,0xde,0xe3,0x54,0xdb,0xd0,0x36, +0x70,0x9e,0x3a,0x98,0x89,0x4a,0x3b,0x5c,0x27,0x70,0x03,0xa2, +0x7e,0x97,0x44,0xb9,0x7f,0xc0,0xdf,0xc2,0x8b,0x26,0xb8,0xf7, +0xba,0x35,0x76,0x33,0xc9,0x5e,0xd4,0xfe,0x1b,0xee,0x25,0x45, +0xa0,0xd5,0xf2,0x47,0xab,0x95,0x5a,0xab,0x7d,0xea,0x45,0x5b, +0xd4,0xf2,0x44,0xee,0x69,0xb8,0xac,0x27,0xfa,0x7e,0xd1,0xcb, +0x50,0x79,0x29,0x61,0x83,0xe7,0xdf,0xd5,0xd2,0xbd,0xf5,0x01, +0xb2,0x32,0x7e,0x6c,0xf2,0x78,0xa7,0x14,0x7f,0x64,0x4c,0x09, +0x31,0xdc,0x9d,0x0f,0xd9,0x4a,0x21,0x7f,0xbb,0x77,0xf5,0xea, +0xe8,0xc8,0x8d,0xd6,0x18,0x79,0x53,0x66,0xe4,0x51,0xeb,0x7b, +0x3e,0x2a,0x6e,0xd0,0xb7,0xa3,0xa6,0x61,0x38,0x55,0xde,0x04, +0x16,0x83,0xf7,0x7f,0x28,0xa2,0x94,0x0a,0x0c,0x16,0xfd,0x3f, +0x44,0xd1,0xbf,0x27,0x5a,0x27,0x6f,0x55,0x47,0xd2,0x90,0xc3, +0x79,0x02,0xe7,0xf9,0x9f,0x6c,0x31,0x36,0xe6,0x90,0x83,0x7f, +0x8e,0xed,0x3c,0x65,0x66,0xef,0x57,0xea,0x7f,0x06,0xb2,0xa3, +0x52,0x4c,0xd0,0xf8,0x25,0xb0,0x22,0x90,0x37,0xdf,0xe9,0x64, +0x23,0x0f,0x27,0xd2,0x08,0xdc,0xa4,0xad,0xde,0x24,0x42,0x93, +0x44,0x89,0xdf,0x79,0x34,0x9b,0x3a,0x78,0x12,0x7f,0x18,0xd0, +0x01,0x85,0xfa,0x56,0x92,0xeb,0x50,0xcb,0xab,0xe3,0xd7,0xd7, +0xf5,0xae,0x7a,0x57,0x6a,0x77,0x8e,0x9b,0x55,0x0f,0x6d,0x19, +0x75,0x4e,0x23,0x6c,0x82,0x01,0x91,0xbc,0x42,0xdb,0xf7,0x23, +0x6c,0xac,0x01,0x91,0x2c,0x43,0x88,0x64,0x31,0xb4,0x54,0xff, +0x18,0xd5,0x79,0x1e,0x31,0xb4,0x76,0x17,0xfd,0x5f,0x5a,0xbb, +0xff,0xd2,0x6c,0xff,0xa3,0xb5,0x2b,0xf8,0x59,0xdf,0xbd,0xd6, +0xa1,0x5e,0x24,0xf8,0x59,0x3c,0xf1,0x00,0x2b,0xd1,0x3f,0x91, +0x1e,0xf2,0x8e,0x62,0x20,0x8c,0xd6,0x07,0xf2,0xc4,0xeb,0x12, +0xeb,0xa3,0x49,0xa6,0x12,0x38,0x0b,0xe6,0xe2,0x6f,0x99,0xb7, +0xec,0x20,0xbf,0xc4,0xba,0xf8,0x3f,0x12,0xcb,0x9b,0x60,0x87, +0xb7,0x79,0x43,0x7c,0xf9,0x99,0x58,0x5d,0x1b,0xa3,0x58,0x3e, +0xd5,0x3d,0x02,0x18,0x8b,0x94,0x57,0x24,0xaf,0x4c,0x5e,0x69, +0xd5,0x1d,0x22,0x52,0x83,0xb4,0x37,0xf6,0x6f,0xc5,0x17,0x36, +0x16,0x5f,0xd8,0xb6,0x5a,0xed,0x73,0xee,0x1b,0xf3,0x6e,0x66, +0x8f,0x17,0x92,0x9b,0x95,0x17,0x0a,0x4a,0x14,0x28,0x30,0xeb, +0xae,0x16,0xe2,0x4d,0x9b,0x2e,0x25,0x92,0xa2,0x05,0x09,0xa5, +0xdf,0x8e,0xb4,0x69,0x3b,0x82,0x42,0xa7,0x0f,0x85,0xd0,0x69, +0x1b,0x21,0x1f,0xde,0xdc,0xd0,0xb9,0xd6,0xcb,0x09,0x28,0x30, +0xce,0x8f,0x8d,0x03,0x7b,0xf1,0x47,0x42,0xa7,0x9a,0x7b,0x34, +0x15,0x84,0xf9,0xbc,0x7a,0x89,0xb6,0xa1,0x93,0x46,0x32,0x8f, +0x21,0xe7,0x09,0x24,0xb1,0x94,0xe3,0x6f,0x41,0x9b,0x8c,0x31, +0x6f,0x8c,0x4c,0xd8,0xc1,0x5f,0xd3,0xdf,0xf8,0x9a,0xb4,0xad, +0xac,0x48,0x9d,0xc9,0xc2,0xfc,0xea,0xb4,0x2f,0x85,0x58,0x70, +0x57,0xa2,0xe7,0xe1,0x48,0x35,0x93,0xd4,0xa9,0x8a,0x58,0xed, +0x2a,0xf7,0x83,0x5e,0xd4,0x79,0x3d,0xf7,0xbc,0x56,0x77,0x97, +0xf4,0x88,0x75,0xe9,0x93,0xb4,0x35,0xda,0xb7,0x44,0x2f,0x15, +0xc4,0xb9,0x81,0x92,0x1e,0xb7,0xde,0x46,0x9c,0x93,0x1e,0xb0, +0x7b,0x06,0x71,0x2e,0x86,0x76,0x94,0x89,0x7e,0x53,0x16,0x1c, +0x24,0x68,0x72,0x47,0x0b,0x69,0x00,0x21,0x05,0xdd,0x96,0x14, +0xfd,0x57,0x1c,0xf4,0xb6,0xa2,0xce,0x3b,0xe4,0xea,0xcd,0x04, +0xad,0x08,0xb5,0xc8,0xab,0x4c,0x28,0x88,0x9d,0x85,0x82,0xd8, +0x3d,0x3f,0x32,0xa8,0xc6,0x98,0xb0,0x87,0x3d,0xb8,0xa9,0xbb, +0xe8,0xaa,0x36,0x8c,0x57,0x84,0xb9,0xc6,0x98,0x97,0x3e,0x89, +0x99,0x3c,0xe0,0x06,0xef,0x2d,0xcf,0xb3,0x7a,0x1e,0x73,0x97, +0xd8,0xf1,0x14,0x45,0x9b,0x84,0xdd,0xe5,0xa8,0x86,0x53,0x47, +0x1b,0x4e,0x8d,0xe2,0xa7,0x46,0x49,0x02,0x12,0xe7,0xde,0x00, +0x89,0x6b,0x5e,0xc7,0xbe,0xe6,0x5e,0x50,0x33,0x02,0x0f,0xeb, +0xd8,0x43,0x96,0x68,0xfc,0x09,0xe5,0x0d,0x71,0x22,0x6b,0x61, +0x6c,0x5a,0x39,0xac,0xb0,0x46,0x04,0x46,0xf0,0x6e,0xf6,0x2c, +0xa9,0x7a,0x85,0xd0,0xfe,0x40,0x6d,0x9c,0x4a,0xe5,0x12,0xfe, +0x52,0x2e,0x12,0xad,0xcd,0x18,0xde,0x58,0x98,0xe5,0xe9,0xad, +0x7f,0x9e,0x77,0xbb,0x25,0xb0,0xa3,0x13,0x5d,0x3a,0x3c,0x9d, +0x28,0xb0,0xa3,0xaf,0x3e,0x23,0x08,0x98,0x08,0x63,0x6b,0x05, +0xa5,0x5f,0x99,0x5f,0x5d,0x21,0x68,0x27,0x62,0x57,0x1a,0xaa, +0xb7,0x38,0x22,0xb7,0x58,0xd9,0x4a,0x3b,0x2d,0x24,0x21,0x7e, +0x3c,0x42,0x6c,0xc7,0xdd,0x6f,0x37,0x2b,0xb9,0x86,0x1b,0x35, +0xf8,0xe3,0x0d,0x7a,0xe6,0x09,0x17,0x84,0x43,0xf4,0x83,0x11, +0x36,0x0f,0xe2,0x61,0x33,0x77,0x88,0xa8,0x35,0x88,0xb0,0x69, +0xfc,0xb2,0x83,0x0c,0x0a,0x63,0xb4,0x40,0xd6,0x09,0x32,0xd6, +0x48,0x2d,0xf6,0x86,0x7e,0x1b,0x12,0x31,0xe5,0x38,0xa6,0x68, +0x8b,0x6f,0xea,0x39,0xdc,0x75,0x45,0x15,0xf6,0x5b,0x7a,0x18, +0x7e,0x27,0x40,0x0b,0xbf,0xa1,0x5f,0x87,0x03,0x88,0x3b,0xbb, +0x89,0x5f,0x59,0x59,0xa3,0x97,0x41,0x2a,0xa2,0xf0,0x6e,0x20, +0x0a,0x8f,0xb6,0x7a,0x83,0xfc,0xf8,0x15,0x6b,0xf4,0x8f,0xfb, +0xd7,0xe0,0xe7,0xcc,0x66,0xc0,0x1c,0xd5,0x2f,0xd8,0x0f,0x5c, +0xc0,0x25,0xa8,0x1a,0x91,0xf8,0x35,0x15,0x55,0xcc,0x85,0xb9, +0x5c,0xf3,0xf7,0x45,0xf6,0x6c,0x13,0x2d,0x9a,0xad,0xd6,0xef, +0x06,0x68,0x09,0xd0,0x58,0x8f,0x06,0x4f,0x9e,0x6b,0xf6,0x75, +0x9e,0x2b,0xa2,0x02,0xfb,0x23,0x2a,0xb0,0x3f,0xa2,0x02,0xb9, +0x97,0xdb,0xc3,0xff,0x45,0xb3,0x2a,0x81,0xf3,0xc1,0x53,0x5e, +0x78,0xca,0x6b,0x24,0x77,0x3c,0x46,0x50,0xb7,0x9b,0x44,0xc5, +0x49,0x44,0xee,0xfe,0xfa,0x73,0x8f,0xa2,0xe3,0x5b,0x71,0x27, +0x81,0x52,0xfb,0x2d,0x04,0xde,0x21,0xfa,0x1c,0x05,0xff,0x0f, +0xe3,0xdd,0xc1,0x53,0x98,0xa5,0xf9,0x5d,0xd3,0xe5,0xef,0xd9, +0x53,0x1e,0x76,0x0c,0x09,0x62,0xcf,0x24,0x45,0xc0,0xdf,0x20, +0x04,0xc6,0x7e,0x88,0x33,0x65,0x2f,0x48,0x7d,0x20,0xf7,0xba, +0x49,0xf5,0x8d,0xfc,0xe2,0x93,0xc5,0xb8,0x11,0x2a,0x29,0x25, +0x9e,0x7b,0x6b,0xc3,0x09,0x75,0x1b,0x47,0x9e,0x98,0xd8,0x63, +0xb6,0x58,0x1f,0x1c,0xc4,0x7e,0xef,0x01,0xbf,0xc2,0x12,0xe6, +0xd9,0x53,0xd2,0x46,0xe1,0xa8,0xbc,0xed,0xd5,0xb2,0x7d,0xc1, +0xdc,0x3c,0x28,0x5f,0x69,0x1b,0xae,0xeb,0x1b,0x1e,0x69,0xf1, +0x55,0xfa,0x1d,0x28,0xe1,0xc5,0xdc,0x48,0xdb,0x70,0x4d,0xdf, +0xc0,0xff,0xf0,0x94,0xdb,0xf0,0x0b,0x3e,0xa1,0xf0,0x64,0xd6, +0xb3,0x4d,0x7a,0xcd,0x24,0x6d,0x33,0x6d,0xe9,0xc4,0xbb,0x38, +0x21,0xdc,0xf9,0x3b,0x0b,0xbb,0x66,0xec,0x71,0xb9,0xc6,0x23, +0x13,0x95,0x9d,0x66,0xdf,0xc3,0x69,0xe9,0xe6,0x14,0x95,0x75, +0x87,0xf5,0xd0,0x9d,0x77,0x3b,0xd2,0x9f,0x26,0xea,0x34,0x8a, +0x18,0x22,0xc9,0xbc,0x2f,0xa5,0x91,0xb4,0xe5,0x4b,0xb2,0x0f, +0xf9,0x57,0x30,0x8e,0xb0,0xfb,0xac,0xf8,0xa6,0x2e,0xe9,0x81, +0xf5,0x4b,0x79,0xbb,0xd8,0x89,0x64,0x4a,0xd8,0xc6,0xab,0xc2, +0x48,0x38,0xa0,0xb7,0xe3,0xee,0x77,0x3e,0x56,0xfb,0x37,0xbe, +0x67,0xdf,0x5d,0x81,0xef,0xbf,0x63,0x7f,0x56,0xe8,0x43,0xe0, +0x89,0x36,0x51,0xd8,0x8f,0x35,0x68,0x58,0x96,0xdd,0xd5,0x92, +0xbd,0xf9,0x95,0x1c,0x50,0x7d,0xd4,0x16,0x08,0xfe,0x2c,0x02, +0xc1,0x9f,0x30,0x10,0xe4,0x6e,0xcc,0x1b,0x77,0x47,0xca,0xa3, +0x42,0x66,0x7a,0x39,0x77,0x1c,0xec,0x2d,0x2b,0x2c,0x12,0xec, +0x59,0x1b,0x18,0xcf,0xff,0xd9,0x43,0x1b,0x88,0x54,0x4e,0x3b, +0xb3,0x6d,0x49,0xb6,0xbd,0x42,0x8a,0xfa,0x13,0x7f,0xb9,0xcb, +0xf4,0xbb,0xbe,0x5a,0x42,0x5f,0xfe,0x6e,0x87,0xe0,0x93,0x23, +0x42,0x4f,0x5b,0x7d,0x43,0x5f,0xfd,0xa7,0x16,0x7d,0x53,0xbf, +0x05,0x7f,0xf0,0x7a,0x73,0xf6,0x96,0x9e,0xca,0x93,0xff,0xd0, +0x92,0xd8,0x06,0xfd,0x7f,0x13,0xb5,0x5d,0x5d,0xf4,0x24,0xd1, +0xdb,0x97,0x20,0x4e,0xef,0x99,0xe8,0xfc,0xc7,0xd9,0x3a,0x7f, +0x7c,0x1b,0x2c,0xa8,0x82,0xd2,0x69,0x84,0x8d,0xee,0x29,0xe3, +0x0b,0x50,0xf7,0x70,0x03,0xda,0x9c,0x3f,0xaf,0xb3,0xac,0xef, +0x83,0x1b,0x17,0xd0,0x6f,0x58,0x57,0xad,0xaf,0xfb,0x5e,0xdb, +0x82,0x95,0xf9,0x0e,0x5e,0xf6,0x86,0xc8,0x9f,0x57,0xee,0xd8, +0x3f,0xb4,0x5d,0x37,0xf5,0x2f,0xe0,0x57,0x9e,0x5a,0x7c,0x0b, +0x81,0x77,0xf3,0xe7,0x6f,0x5b,0xe0,0x94,0xea,0x0b,0x5f,0x93, +0x43,0xcc,0xd9,0x59,0x11,0xeb,0x54,0xeb,0x0e,0x21,0xbf,0xff, +0x86,0x69,0x53,0x08,0x0f,0x46,0x96,0x22,0xea,0xce,0xc1,0x59, +0xe9,0x07,0x12,0xee,0x98,0xbe,0x79,0xa6,0xec,0x58,0xa9,0x79, +0xe7,0x2e,0xc1,0xaa,0xe1,0xce,0xa1,0xbb,0x8c,0x2c,0x5d,0x05, +0x9a,0x8e,0xf3,0x87,0x3d,0x3d,0x84,0xef,0x78,0xfe,0x9f,0xcf, +0x6b,0xd1,0x75,0xdc,0x5e,0x4e,0x5b,0xad,0x26,0xac,0x9b,0xb4, +0xb5,0x2b,0x2a,0x13,0x75,0x54,0x76,0x45,0xe2,0x9c,0x26,0x12, +0xfd,0x8b,0x33,0x4a,0x6b,0x2c,0x19,0xcc,0xae,0x9a,0x5b,0xd1, +0xe7,0xd8,0xf5,0xa9,0xbe,0xd0,0xab,0x2b,0xeb,0xe1,0xab,0x0f, +0x63,0xab,0xd1,0xf1,0xd8,0x4f,0xd8,0x4e,0x81,0x7f,0xc4,0x3e, +0xd9,0x99,0x77,0xe8,0x4d,0x85,0xf7,0x55,0x85,0xde,0xd7,0x96, +0x67,0x6c,0xa9,0x92,0x71,0x76,0x47,0xae,0x99,0xb9,0x55,0x00, +0x04,0xb1,0xee,0x52,0x9c,0xc7,0xac,0xd9,0x40,0x86,0xe4,0xcf, +0x75,0xbc,0x5d,0xaa,0x1c,0x78,0xb0,0xef,0x9b,0x27,0xb0,0x8a, +0xf4,0x88,0x1c,0xb1,0xc1,0xdb,0x5e,0xff,0x6a,0xa2,0x86,0x46, +0xb9,0x7e,0x9c,0x30,0xca,0xa3,0xd5,0x60,0x36,0xb8,0xe7,0xdd, +0x17,0xae,0xde,0xfa,0x36,0x59,0x31,0x25,0x2f,0x5b,0x8a,0xac, +0x8f,0x20,0x83,0x8d,0x83,0x48,0x9a,0x31,0xe0,0x00,0xbd,0x8d, +0x3f,0x8b,0x0d,0x0c,0xdc,0x33,0xb1,0xfd,0xe7,0x19,0x62,0xe0, +0xa8,0x43,0x37,0xe2,0x80,0x6b,0x52,0x68,0x8b,0xa9,0xa8,0x1b, +0x70,0x1c,0xf3,0xfc,0x43,0x9d,0xca,0x86,0xcc,0xbd,0xa3,0x65, +0x8c,0xd5,0xfb,0x23,0xaf,0xb4,0x97,0xde,0x86,0xb6,0x2a,0xc6, +0x51,0xaa,0x3d,0x88,0x7d,0x1a,0x0e,0xfb,0xa9,0x5d,0x25,0x2e, +0xb7,0xe4,0x2e,0x15,0xef,0x8a,0xde,0x47,0xc5,0xf2,0x5d,0x1e, +0x7a,0x59,0x1d,0xdb,0xc2,0x1c,0x45,0xd2,0x01,0x4c,0xda,0xe1, +0xa1,0x17,0xd7,0xb1,0x58,0x5b,0xd2,0x31,0x4c,0x8a,0x17,0xe0, +0xbd,0x48,0x5b,0x92,0x3b,0xae,0x30,0x78,0xe1,0x51,0xaf,0xd5, +0x69,0xc1,0xcc,0x2c,0x92,0x2e,0xe1,0xb7,0x56,0x7b,0xe8,0x09, +0x75,0x2c,0xd4,0xf6,0xad,0x0f,0x30,0x69,0xbb,0x87,0x5e,0x50, +0xc7,0xa2,0x31,0x49,0x7a,0xfb,0x83,0xf0,0x33,0xd6,0x5c,0x89, +0xf1,0x82,0x74,0xb8,0x4d,0xb0,0xab,0x36,0xc3,0x52,0xdd,0xdc, +0xc0,0x4b,0xfd,0x5a,0xaf,0x16,0x31,0x5d,0x7f,0x58,0xa2,0xf7, +0x6f,0x48,0xbc,0x21,0x20,0xaa,0x3e,0x08,0x51,0x95,0x5f,0x87, +0x48,0x31,0xbc,0x47,0xb4,0x4b,0x22,0x55,0x2f,0x08,0x89,0x53, +0x04,0xe5,0x57,0x51,0x3d,0xc1,0x89,0xc7,0xb3,0x16,0x4f,0xdd, +0x59,0x73,0x97,0x3c,0xab,0x55,0xfe,0xc1,0x99,0x1d,0x90,0xf0, +0x44,0x47,0xd8,0xc3,0x5c,0x47,0xeb,0x7d,0xb4,0xee,0xe2,0xc4, +0x1e,0xd6,0x45,0x80,0x0a,0x25,0xcd,0x1b,0xdb,0x5a,0x56,0xad, +0xf6,0xca,0x0b,0x8e,0xf3,0xb6,0xb6,0xd7,0x4b,0xbf,0x51,0x2b, +0x4e,0xbc,0x8d,0x27,0x56,0xd5,0x6a,0x1f,0x78,0x41,0x0c,0x3f, +0xb1,0xda,0x4b,0xdf,0xca,0x4f,0xd0,0x0e,0xd9,0x88,0x95,0x55, +0x3d,0x60,0xb9,0x4d,0x3d,0xfd,0x7d,0xdc,0x4d,0xf9,0xd4,0x40, +0x18,0xaa,0x2c,0x6a,0x14,0x6c,0x7b,0x6d,0xb1,0x59,0xf0,0x28, +0x98,0xc7,0x2b,0x77,0x29,0xd2,0x0d,0x5b,0x38,0x19,0x8e,0xa1, +0x1c,0x99,0x1c,0x95,0x14,0x4d,0x9b,0xf2,0x3e,0x5d,0xf5,0x82, +0xce,0xb0,0x88,0xb9,0x79,0xeb,0xfd,0x11,0xc6,0x99,0x5e,0x54, +0x6d,0x39,0x37,0x36,0x4c,0x06,0x12,0x1a,0x00,0xcd,0x15,0x7f, +0x70,0xef,0xc2,0x7a,0xfb,0xeb,0x1e,0xec,0x3d,0x49,0x61,0x8d, +0xb9,0x3f,0x75,0xcf,0x9f,0x3d,0x40,0xf8,0x5f,0xcf,0x06,0x1e, +0x27,0x0f,0xf3,0x5b,0x3f,0x60,0x8f,0x91,0xc7,0xc9,0xa3,0x7f, +0x77,0x1e,0xfd,0xaf,0xb3,0x45,0xff,0x0e,0x0f,0xd8,0xb7,0x22, +0xfa,0xd7,0xb6,0xf0,0x5e,0x7e,0xfb,0x5a,0x1e,0xab,0xc6,0x9d, +0x30,0x41,0xbb,0xfb,0xec,0x29,0x26,0x23,0x67,0x30,0x1a,0x5d, +0x40,0xf8,0x9b,0x59,0xd9,0x93,0x4a,0x7d,0x10,0xa4,0x5d,0x24, +0x88,0xbd,0x4f,0x1e,0x0b,0x7b,0x8d,0xf5,0xe1,0x4a,0x3b,0xda, +0xd1,0x9b,0x77,0x92,0xf3,0x91,0xbd,0xb7,0x08,0x56,0x4c,0x66, +0x2b,0xa6,0xd5,0x69,0x9f,0xc8,0xb6,0x94,0x65,0xb0,0x22,0x98, +0xad,0x98,0x5c,0xa7,0x7d,0xda,0x90,0xb2,0x0e,0x56,0x04,0xb1, +0x15,0xc1,0x75,0xda,0x4f,0x0d,0x29,0x73,0x60,0x85,0x4d,0x4c, +0x9e,0xbf,0xef,0xa6,0xad,0x08,0x3a,0x3c,0x2b,0x58,0x07,0xa4, +0x32,0x46,0xf3,0x4a,0x45,0x5b,0xdd,0x22,0xcc,0xf1,0x86,0xf8, +0x74,0x44,0x65,0x5b,0x3d,0xf4,0x43,0x75,0x6c,0xb9,0x41,0x76, +0x8c,0xd6,0x4e,0xf3,0xd2,0xf4,0xd0,0x0f,0xd4,0x71,0xcf,0xd6, +0x96,0x92,0xa5,0xb2,0x4d,0x1e,0x7a,0xaa,0xf8,0x8e,0xf1,0xab, +0x1c,0x95,0x6d,0xf0,0xd0,0x23,0xeb,0xd8,0xcc,0x86,0xef,0xec, +0x57,0xd9,0x4e,0x0f,0xbd,0x48,0xd4,0x37,0x23,0xe5,0x00,0xbf, +0x4e,0x2d,0xf9,0xf7,0x13,0xd6,0x6d,0x5e,0x1f,0xa3,0x1a,0x52, +0x3e,0xe0,0xe7,0xef,0x92,0x06,0x9e,0xe4,0x4d,0x95,0xcd,0xf5, +0xd0,0x57,0x62,0x15,0x46,0x9e,0x24,0x75,0x7b,0x42,0xa6,0x8c, +0x5f,0x0a,0x2b,0xa7,0x9d,0x99,0xea,0x68,0x33,0x48,0xaf,0x05, +0x45,0x26,0x20,0x3f,0x48,0x7a,0x6d,0x0a,0x94,0x57,0x7d,0x09, +0x7b,0x38,0x46,0x6f,0x87,0x90,0x5c,0x36,0x8b,0x55,0x07,0x76, +0xee,0xf5,0x5b,0x10,0x14,0x4c,0x63,0x45,0xc1,0xfc,0x28,0x10, +0xae,0xb3,0xd9,0xca,0xa5,0x0f,0x8e,0x64,0x39,0xef,0x95,0xb3, +0xc2,0x8f,0xcc,0x9f,0x1f,0xbe,0x66,0xa9,0x35,0x52,0x5e,0xfa, +0xc1,0x9a,0x4b,0x56,0xfe,0x5a,0xbf,0xae,0xd1,0xbf,0x96,0xb4, +0x75,0xd0,0x54,0x7d,0x8b,0xf7,0xaa,0x3e,0x26,0xf0,0xe0,0xa1, +0xb4,0xcf,0x5b,0x5b,0xce,0x60,0x58,0xcd,0xe3,0xf6,0x3f,0xab, +0x84,0x9f,0xeb,0xa3,0xad,0xef,0x2e,0xeb,0x31,0xc8,0xff,0x0d, +0xe7,0x4e,0x5a,0x9b,0x3a,0xf6,0x54,0xf0,0x72,0xd7,0xf7,0xe6, +0xa9,0x6b,0x31,0x95,0xbf,0xfe,0x56,0x75,0xec,0x27,0x44,0x67, +0x2c,0x3a,0x59,0xe6,0x7c,0x58,0x2e,0xcd,0x3b,0xf1,0xa3,0xf5, +0xf9,0x20,0x69,0x6a,0xd0,0xc2,0x11,0x56,0x5e,0xa9,0x4d,0x08, +0x31,0x5c,0x35,0x21,0xe1,0x18,0x84,0x99,0x3c,0x10,0xc7,0xe5, +0x69,0xb0,0x2e,0xcf,0x54,0xeb,0x69,0x92,0x43,0x88,0xb1,0xc4, +0x6f,0xf5,0x38,0x88,0x14,0x02,0x2a,0x9f,0x1e,0x46,0xea,0xec, +0x45,0xc1,0xb1,0xed,0x89,0x80,0x08,0xa5,0x57,0x21,0xae,0xc7, +0xf4,0xa7,0xa4,0x25,0xf7,0xe0,0xa6,0xd3,0x16,0xcb,0x09,0xb2, +0x4f,0xbf,0xe3,0x96,0x67,0xc5,0xbc,0x3a,0xed,0x84,0x87,0x3e, +0x56,0xc6,0x84,0x32,0x95,0x57,0x99,0x29,0xbc,0x82,0x78,0xe8, +0xef,0x88,0x84,0xab,0x98,0xe0,0x23,0x5c,0xd3,0x50,0x91,0x70, +0x03,0x71,0xa9,0x0b,0x79,0xf5,0xf0,0xd0,0xe7,0xa1,0x45,0xa8, +0x45,0x62,0x86,0xf2,0xf5,0x96,0xcc,0xa8,0x5d,0x51,0xb1,0x66, +0x41,0x41,0xdc,0x5f,0x9c,0xca,0x6b,0xa9,0xff,0xb3,0x09,0x70, +0xa4,0x03,0x72,0x2c,0xaf,0x11,0xf6,0x11,0x36,0x5d,0xda,0xb4, +0x35,0xe1,0x8d,0x78,0x1e,0x82,0x98,0xce,0xb2,0x21,0xec,0x2c, +0x3f,0xa8,0xd6,0xef,0xfb,0xc9,0x5a,0xd8,0x74,0x5e,0x80,0xab, +0x71,0xfc,0x61,0x04,0x8e,0x88,0x8c,0xe2,0x3e,0xcb,0xc0,0x97, +0xdf,0x12,0x95,0x4d,0x34,0xb0,0xc0,0x99,0x0d,0x58,0x60,0xa4, +0xc3,0xbe,0x7b,0x53,0x2f,0x81,0x1c,0xde,0x46,0xd3,0x78,0x07, +0x94,0xa4,0x3e,0x61,0xf3,0xae,0xc2,0xbc,0x5f,0x8d,0xed,0xad, +0x8d,0xc4,0x9a,0x6d,0xd4,0x45,0x2c,0xad,0x65,0x3a,0x14,0x4b, +0xc8,0x9b,0xdc,0x75,0x5f,0xdb,0x25,0x2b,0x99,0x07,0x1f,0x60, +0x08,0xb5,0xd1,0xbb,0x5f,0xb4,0xf2,0xab,0x34,0xa6,0x87,0x0a, +0x6b,0x7e,0x65,0x6b,0x24,0xe5,0x89,0x34,0xa6,0x3b,0x3f,0x7e, +0x82,0xc7,0xaa,0x57,0x1f,0x38,0xf5,0xc3,0x18,0xa8,0xd4,0x86, +0x48,0x5e,0x95,0x2a,0x9c,0xfa,0x0d,0x6d,0xae,0x51,0xa4,0xd8, +0xa7,0x39,0x30,0x59,0x1a,0x03,0xb2,0x0a,0x1b,0x98,0xcc,0x36, +0xf0,0xdb,0x79,0x4e,0x3b,0x2a,0x44,0x76,0xe0,0xa1,0x87,0x63, +0x48,0xfc,0x82,0xad,0xf3,0x78,0xaf,0xcf,0x2d,0xa5,0xfd,0xb7, +0xa9,0xef,0xdf,0x71,0x8e,0x51,0x6e,0xd5,0xe4,0xfe,0xf4,0xd3, +0x8d,0x45,0x13,0xad,0x9b,0xe5,0x89,0x3e,0x8b,0xfa,0x08,0x08, +0x68,0xcc,0x43,0x76,0x05,0x21,0xa0,0x47,0x60,0x3a,0xc6,0xaa, +0xfc,0x1d,0x9e,0x92,0x7e,0xbe,0x4d,0x4d,0xde,0x64,0x86,0xa7, +0x22,0x3e,0xfd,0x72,0x07,0x24,0x12,0x31,0xdd,0x53,0x01,0xd7, +0xee,0xd6,0xf2,0x79,0x26,0xd6,0x83,0x35,0xaa,0x54,0x04,0x59, +0xa2,0xbf,0x63,0x71,0x31,0xaf,0xff,0x88,0x80,0xdd,0x05,0xcd, +0x58,0x8c,0xb7,0xc2,0x8e,0x53,0xbb,0x6c,0xc2,0x4e,0xe2,0x02, +0xc0,0xef,0xef,0x69,0x9d,0x70,0x01,0xe0,0x29,0xe8,0x89,0xbc, +0x68,0x09,0x31,0x89,0xc3,0x9c,0x52,0x7d,0xee,0xe3,0xf6,0xde, +0x78,0x72,0x0c,0x29,0xa2,0x72,0xe2,0xe0,0xfe,0x49,0x03,0x79, +0x22,0x75,0x69,0xcc,0x23,0x14,0xfe,0x95,0xa4,0xa1,0xbc,0xfb, +0xc6,0xaf,0x74,0xba,0x46,0x6c,0x9c,0xad,0x59,0x8e,0xb7,0x51, +0x96,0x31,0x69,0x77,0x82,0x90,0x65,0x54,0x68,0x4b,0x17,0x1e, +0x0f,0x08,0xf8,0xf0,0x24,0xe8,0x05,0xcd,0x59,0x8f,0x49,0xfa, +0x70,0xb6,0x43,0x7c,0xec,0xcb,0x3f,0xf6,0x99,0xa4,0x7b,0x89, +0x8f,0x2b,0xff,0x5d,0x47,0xfb,0x91,0xa4,0x38,0xa2,0x88,0x74, +0x74,0x6c,0x4c,0x9c,0xe0,0x27,0x19,0x00,0xd3,0x3b,0x69,0x36, +0x80,0xe9,0x69,0xe9,0xd7,0x5a,0xa4,0x60,0x35,0x1c,0xa7,0x8a, +0xe3,0xe8,0x98,0x57,0x2e,0x64,0x7f,0x71,0x5a,0xd9,0x4d,0x8b, +0x82,0x8b,0xe2,0xf2,0x79,0x97,0xa5,0xe8,0x7b,0xd6,0x21,0x6a, +0x9a,0xb7,0x11,0xe5,0x1e,0xfb,0x5c,0x79,0x87,0x30,0x13,0x7f, +0xdb,0x0d,0xa8,0xcb,0x1b,0x0f,0xf9,0x85,0x6f,0x41,0x2f,0x19, +0xbb,0x6d,0x05,0x63,0x37,0x38,0x43,0xed,0xaa,0x89,0x54,0xc1, +0x9f,0x0f,0xed,0x7d,0x25,0x37,0xe0,0xfc,0x6f,0x01,0x37,0xe4, +0xbc,0xd2,0x14,0xa1,0xf3,0xa8,0x0f,0xd4,0x5b,0xe9,0xcd,0x08, +0xcb,0xc0,0xae,0xe6,0x3f,0x5d,0x2a,0xb7,0x31,0x11,0xd8,0xe7, +0x79,0xd3,0x8e,0xfb,0x49,0x60,0xb4,0xe0,0xca,0x7e,0x58,0xa3, +0x27,0x21,0xb7,0x5c,0x3b,0x78,0x03,0x47,0x9a,0xba,0xfe,0x20, +0x8d,0xe9,0xcb,0x2b,0xc0,0x0f,0xf8,0xfe,0xa1,0x18,0x73,0xc6, +0x7a,0x08,0x7d,0x54,0xd8,0xe6,0x4a,0x94,0x72,0xf9,0xd3,0xd2, +0x92,0xfb,0xf7,0x4b,0x66,0xbe,0x65,0xe5,0xf7,0x81,0xf4,0xcb, +0x03,0xb5,0xac,0xaa,0x02,0x27,0x01,0x12,0xd1,0x7b,0x7c,0x8b, +0x07,0xce,0x76,0xff,0x90,0xff,0xea,0xb4,0xec,0x38,0xa5,0x6c, +0xd9,0x13,0xb9,0x1b,0x9c,0xc8,0x07,0xca,0xf6,0x4b,0xb4,0xe5, +0x5b,0x44,0xd9,0x91,0x65,0x66,0x83,0x84,0x24,0xca,0x60,0x29, +0x4e,0xc9,0xcc,0x2b,0xb6,0xe4,0x79,0x84,0xca,0xdd,0xa7,0xfa, +0xc0,0x50,0xc5,0x9d,0xe8,0x7f,0xd6,0x6a,0x7f,0xca,0xfa,0x10, +0x45,0xcf,0x0c,0x4f,0xf3,0xd7,0x76,0x1e,0x33,0x75,0xbc,0xc7, +0xca,0x6c,0xcb,0xc3,0x05,0x46,0x65,0xa7,0xe9,0x50,0x5e,0xfa, +0x25,0xa5,0x7e,0x02,0x61,0x12,0xae,0x23,0xca,0xd2,0xdd,0xb8, +0x27,0xf2,0xaf,0xcd,0xe6,0x16,0x7a,0x59,0x83,0x2d,0xdd,0xa3, +0xb2,0x54,0x0f,0xfd,0x6e,0x1d,0x4b,0x6b,0xb0,0xa7,0x85,0x2a, +0x7b,0xcf,0x43,0x4f,0xaa,0xe3,0xb1,0x13,0xda,0xd3,0x4b,0x08, +0x22,0xde,0xba,0x66,0xeb,0xaa,0x44,0xfb,0x7d,0xa2,0x0a,0x1f, +0x7e,0xc0,0x3b,0xfd,0x87,0xe8,0x89,0xee,0x81,0x0d,0x75,0x2c, +0x5f,0xff,0xf6,0x35,0xd3,0xf6,0x4b,0x64,0xda,0x4a,0xb4,0x45, +0x4f,0x1b,0x9c,0xf9,0x7f,0x7b,0xe2,0x2a,0xc6,0x13,0xff,0xfa, +0x1a,0x1c,0xfc,0xe2,0x76,0xe0,0xbe,0xa7,0xde,0xfa,0xd5,0x65, +0xc2,0x9b,0xd4,0x85,0x7f,0x9b,0x89,0x16,0xf6,0x22,0x53,0x85, +0x0f,0x82,0xd9,0x07,0x12,0xfb,0xe4,0xaa,0x3a,0x4a,0x89,0xdc, +0xb3,0x79,0xdb,0xab,0x5a,0xb2,0xd3,0x74,0xa4,0x74,0x4f,0x99, +0x62,0x6b,0x22,0xa9,0x7b,0x15,0xf5,0x28,0x0b,0xc6,0x9d,0xc6, +0x33,0x4c,0x3e,0xfc,0x9d,0xf7,0xfa,0x13,0x9e,0x92,0x4e,0xbd, +0x78,0x3d,0xcb,0xa9,0xe0,0xde,0x01,0x09,0x4f,0x8d,0x41,0x68, +0xda,0xf6,0xed,0x06,0x38,0xc9,0xcc,0xcc,0x4a,0x00,0xf4,0x87, +0x46,0xe5,0x73,0x1c,0x1f,0x55,0x55,0x16,0xf2,0x5a,0x1c,0x40, +0x8e,0x2a,0x2f,0xd6,0x63,0xeb,0x41,0x5e,0xa0,0xe2,0x2d,0xa4, +0x6e,0x17,0x2a,0x7a,0x00,0xce,0x0c,0x2f,0xe3,0x2d,0x28,0x3b, +0x08,0xb5,0xaa,0xf2,0xee,0x4a,0xfa,0x08,0xe5,0xaf,0x58,0xab, +0x97,0x9c,0x38,0x72,0x68,0xf2,0x08,0xa7,0x14,0xc5,0xc4,0x06, +0xb1,0xd1,0xe9,0x87,0x98,0xec,0xcc,0x0f,0x3d,0xd8,0xf8,0xfa, +0x72,0xdc,0x2b,0xf8,0x31,0x99,0xac,0xe2,0xa8,0x31,0x0b,0xd6, +0x86,0x49,0xfa,0xff,0x51,0x2c,0xb7,0x69,0xcb,0x67,0xbc,0x1f, +0x69,0x86,0x30,0x5c,0x47,0x59,0x7f,0x47,0x81,0xce,0x04,0xf8, +0x57,0x46,0x45,0xf5,0x10,0xc4,0x4e,0x15,0xba,0xb2,0xe6,0xe3, +0xf4,0x46,0xf8,0x4c,0x06,0xcd,0x17,0x2b,0x3d,0x6d,0xb1,0x04, +0x7d,0xa3,0x44,0xcf,0x51,0xc9,0x9e,0x02,0x8a,0x18,0xca,0xde, +0xdb,0xa3,0xa8,0x57,0xf5,0x51,0x93,0x99,0x5d,0x82,0x4d,0xe6, +0x9d,0xff,0xf6,0x4f,0xd6,0x9e,0x3d,0xbe,0xae,0x0f,0x80,0x54, +0x6d,0x84,0xa4,0x18,0x73,0xd1,0xc5,0xd7,0xc5,0x5c,0x34,0x34, +0x52,0xb4,0xff,0x55,0xe9,0xa9,0x4f,0xb4,0x70,0x16,0xa6,0x57, +0xfb,0x6b,0x91,0x8a,0x09,0xba,0x07,0xbe,0x68,0x56,0x09,0x3d, +0x8c,0xea,0x9f,0xc1,0xad,0x67,0x3b,0xda,0x34,0x8b,0x38,0x70, +0xb7,0xb3,0x1a,0xdd,0xce,0xe7,0xea,0x34,0x36,0x98,0xb6,0xfc, +0x91,0xbf,0xaa,0x2c,0xb6,0xc0,0x34,0x49,0x5a,0x0a,0x0b,0x4c, +0xa2,0xc9,0x5c,0xac,0x42,0x76,0x2a,0x0b,0x81,0xdd,0xf7,0xd9, +0x6d,0x38,0xcf,0xcb,0x3a,0xb6,0xc2,0x14,0x3d,0x73,0x6c,0x6c, +0x7f,0xa7,0x8d,0xfc,0xb8,0x4c,0xfb,0x01,0xa7,0xcd,0xaf,0xd2, +0xa6,0x7f,0x18,0xa2,0x99,0x38,0x56,0x85,0x8e,0x48,0x13,0x43, +0x7f,0xc7,0x4f,0xb1,0x06,0x63,0x87,0xb0,0x3b,0x2a,0xc6,0x1c, +0xab,0xf4,0xf6,0x65,0xef,0x0a,0xec,0x2b,0xb4,0x52,0xa6,0xf9, +0xcd,0x10,0xcb,0x6b,0x4a,0xcb,0xad,0xca,0x8b,0x39,0xe8,0x6e, +0xc4,0xd4,0x69,0x31,0xe8,0x68,0x7c,0x87,0xbb,0xc3,0x0e,0x2a, +0x68,0xa0,0x69,0xd3,0x2f,0x88,0x12,0x8b,0x20,0xba,0x9c,0xb4, +0xbc,0xcb,0x96,0x53,0x68,0xc2,0x63,0xef,0x6b,0xb1,0x82,0x1d, +0x7c,0xfe,0xbe,0x76,0x5e,0x1c,0xec,0xbd,0x8f,0x64,0x61,0x7e, +0x70,0xe4,0x3e,0xea,0x3d,0xf0,0x83,0x93,0xf7,0xb5,0x93,0xbc, +0xfe,0xae,0xc1,0x6c,0x53,0xee,0x6b,0x29,0x3c,0xbe,0xba,0xc8, +0xc2,0xf5,0x46,0x01,0xac,0x00,0xec,0x78,0x7f,0x88,0xe9,0x07, +0xef,0x69,0x07,0x65,0x05,0x37,0x9d,0x89,0x1d,0xcf,0x7d,0x1c, +0x15,0x64,0xfa,0xc6,0x5c,0x37,0x21,0xe2,0x59,0x39,0x5d,0x76, +0xac,0xfc,0x05,0xef,0x20,0xaf,0xd3,0xa6,0x6d,0x48,0x80,0x95, +0x17,0x61,0xd7,0xc0,0x17,0x8d,0x91,0x7c,0x89,0x4b,0x66,0x1b, +0x57,0x19,0x2b,0x0d,0x16,0xf3,0xd2,0x77,0xe0,0xcd,0x7d,0xdd, +0x4f,0x6c,0x9d,0xe4,0xd0,0x30,0x77,0x91,0x5c,0xab,0x95,0xbf, +0x9e,0xbb,0x88,0x33,0xfc,0xd1,0x49,0x78,0x62,0x4b,0xad,0xf6, +0xb1,0x17,0x1c,0xe6,0x27,0x52,0xbd,0xf4,0x7c,0xe3,0x04,0x46, +0x8b,0x94,0x38,0x10,0x11,0x29,0xea,0xa1,0x98,0xd8,0x5c,0x9b, +0x8d,0xb3,0x55,0xdb,0xee,0x6a,0x15,0xde,0xb4,0xd5,0x16,0xa2, +0x9f,0xbd,0x8b,0x3d,0xa6,0x85,0xf7,0x2c,0xcb,0xb7,0x2e,0xe3, +0xb5,0x63,0xec,0xe8,0x24,0x6f,0x21,0x11,0xe8,0xc1,0x26,0xd8, +0x60,0xd0,0x86,0x2d,0x45,0x28,0xe3,0x87,0xd9,0x19,0x39,0x3b, +0x8a,0xcd,0xac,0x4b,0x95,0x22,0x26,0x9e,0x2e,0xaa,0x30,0x9c, +0xd7,0x98,0xd0,0x20,0x16,0x2a,0xe9,0x51,0x0a,0xbc,0x41,0x12, +0xec,0xbf,0x7f,0x8d,0xbe,0x1d,0xcb,0x33,0x36,0x91,0x30,0xc4, +0x1b,0x77,0x36,0xf0,0xc6,0xfc,0xa8,0xe3,0x5f,0x82,0x08,0x2d, +0x00,0xb5,0x19,0xfb,0xef,0x38,0x2b,0x7a,0x32,0x9b,0xa0,0xc5, +0x56,0xeb,0x1f,0x2b,0xaf,0xce,0x91,0x76,0x3e,0x6c,0x89,0x82, +0xd0,0x56,0x81,0xa4,0xed,0xcc,0xda,0x8f,0xd7,0x3b,0x09,0x0a, +0x28,0x22,0x55,0x0c,0x76,0x74,0x37,0x5e,0xc1,0x79,0x08,0xe6, +0xc7,0xdb,0xc3,0x2a,0xf4,0x14,0xb2,0xd0,0x75,0x78,0xcd,0xfb, +0x46,0xa8,0x37,0x3a,0x6a,0xa2,0x93,0xd3,0x72,0x6f,0xa2,0x13, +0xce,0x8d,0x6a,0x9e,0xf0,0xc6,0xd5,0xb5,0xd4,0x25,0xcd,0x18, +0x6e,0xaa,0xbf,0x82,0x4c,0x5e,0x1e,0xfb,0x57,0x22,0xad,0xb7, +0x8a,0xb7,0x2e,0x45,0x4d,0x5d,0xba,0x78,0xd7,0x5c,0xa7,0xb9, +0x8b,0xb7,0xc6,0x2d,0x75,0x56,0x50,0xc8,0x6d,0xf8,0x72,0xc5, +0x29,0xc5,0x07,0x8b,0x62,0x22,0xae,0xec,0x9b,0xc4,0x3e,0x59, +0x22,0x43,0x1b,0x2f,0x5f,0x38,0xec,0x66,0x55,0x36,0x67,0x6e, +0xc6,0x85,0x61,0x9b,0x70,0xa2,0xfd,0xa8,0xc2,0xc3,0xbb,0xf1, +0xb4,0xd5,0x26,0xb2,0x31,0x42,0x91,0xd6,0xb2,0xce,0x9e,0xb1, +0x27,0xa0,0x3d,0xaf,0xe5,0x27,0x59,0x7b,0xcf,0xf4,0xb5,0xd0, +0xd9,0x84,0x46,0xe5,0x6d,0x54,0x36,0x79,0x8f,0x1f,0x9e,0x62, +0xee,0x38,0x27,0x32,0x98,0x1f,0x0e,0x8c,0xb4,0xad,0x2c,0x52, +0x70,0xad,0xfe,0x7b,0x6c,0x29,0x14,0x06,0x28,0xce,0x31,0xd7, +0x1a,0xf8,0xa5,0x6e,0x20,0x5b,0x4b,0xe7,0x5c,0xbd,0x95,0x53, +0xaa,0x78,0xc6,0x0d,0x74,0x32,0x56,0x97,0x29,0x9e,0xd0,0x44, +0x1f,0xc9,0x9a,0x78,0xc0,0x63,0x65,0xe2,0x61,0xeb,0x6e,0x36, +0xba,0xb2,0xde,0x2a,0x2b,0x11,0x3b,0x78,0x4b,0x88,0xc3,0x7d, +0xf9,0x4a,0x2c,0x82,0x16,0x51,0xfb,0x2a,0x51,0x89,0x3f,0x0a, +0x53,0x70,0x56,0x00,0x77,0xe2,0xe2,0x52,0xc8,0x92,0x02,0x85, +0xdb,0xb6,0x45,0x62,0xce,0x60,0x11,0x52,0x45,0x69,0xd3,0x53, +0xa4,0x81,0xf8,0x7c,0xea,0x5f,0xf8,0xf3,0xc5,0x7f,0x0f,0x2b, +0xff,0x25,0x3e,0xdf,0xc2,0xc3,0x93,0xfc,0x10,0x51,0xca,0xbc, +0x0f,0x5c,0x0f,0xad,0xd9,0x32,0x6f,0x7d,0xcd,0x5d,0xe5,0x99, +0xc4,0x06,0x33,0xb3,0xd0,0x08,0xfa,0x13,0x87,0xb4,0x9d,0xf7, +0x1e,0xe2,0x87,0xcf,0x37,0x66,0x44,0x6c,0xdb,0x24,0x88,0xc5, +0xec,0xcd,0xcd,0x19,0x42,0x52,0x67,0x93,0xa2,0xfd,0x86,0x04, +0x4c,0xaa,0x20,0x24,0x3b,0xa2,0x8e,0x95,0x22,0x24,0x1b,0x8f, +0x63,0xeb,0xd8,0x55,0x3c,0x06,0x1f,0xd6,0x9c,0xf9,0x20,0x0a, +0x76,0xb9,0x18,0x57,0x73,0x77,0x8e,0xab,0xe6,0x96,0x62,0xe9, +0x28,0x58,0x83,0x32,0xf0,0xac,0x5f,0x9c,0x14,0xbc,0x16,0xd5, +0xda,0xc7,0xf1,0x0f,0x6b,0x46,0x41,0x34,0xa6,0x4e,0xe5,0x66, +0xa6,0xe3,0x46,0xe3,0x60,0xce,0x5d,0xed,0xb4,0xb7,0x3e,0x8e, +0x87,0xb9,0x0d,0xc6,0x47,0x65,0xd3,0x47,0xc1,0x62,0xfe,0x3d, +0xb6,0x88,0xcd,0x42,0x5c,0x42,0xa8,0x3b,0x0f,0x9c,0x69,0xd3, +0x83,0x84,0x6d,0x4f,0x52,0x95,0x5f,0x5e,0x6e,0x66,0xbb,0xd4, +0x2b,0x7a,0x98,0xb6,0x62,0x8a,0xc2,0x5d,0xc1,0xb3,0x38,0x83, +0xa0,0xa0,0x10,0x8c,0x1d,0x0a,0xc1,0x98,0xa0,0xb3,0x6d,0xb5, +0x3b,0x8a,0xe7,0x09,0xf9,0x5a,0x6d,0x04,0x0f,0x3c,0x47,0x60, +0x5b,0x7d,0x8b,0xf5,0xc5,0xef,0xe0,0xd6,0xb2,0xbd,0xc2,0x11, +0x17,0x76,0x18,0x01,0xc2,0x71,0xc6,0x04,0x44,0x03,0xc7,0x68, +0x3e,0x37,0xe6,0xcf,0xc9,0x08,0x45,0xf0,0xbb,0x14,0xb1,0x2e, +0xda,0x03,0xdf,0xbc,0xde,0x35,0x48,0xeb,0x2a,0x71,0x5b,0xa8, +0xbb,0xfb,0xf2,0xf8,0xf4,0x20,0x1e,0xf8,0x19,0x07,0x82,0x09, +0x6f,0x42,0x3c,0xeb,0xa1,0x49,0xec,0x90,0xf4,0x09,0x52,0xc3, +0x0d,0x23,0x6f,0x4e,0x11,0xd4,0x51,0x7b,0xa5,0xe7,0x55,0xdc, +0x5e,0xd0,0x6b,0xb2,0xa2,0x4d,0x2c,0xd7,0xed,0x3e,0x67,0x8f, +0x95,0x60,0xf6,0x4e,0x7f,0x58,0x0a,0x5d,0x90,0xdb,0xd9,0x1f, +0xde,0xe1,0x07,0x73,0xe3,0xa7,0x39,0xb1,0x73,0xac,0xa9,0x32, +0xf7,0xae,0x76,0xcd,0x5b,0x5f,0x20,0x2b,0xf3,0xee,0x6a,0x85, +0xde,0xfa,0x0c,0x59,0x89,0x32,0xc7,0xe0,0x86,0xc9,0x43,0xc8, +0x19,0x16,0x5d,0xb2,0xc2,0x7e,0x95,0xbc,0xab,0x54,0x98,0xa7, +0xdc,0x2c,0x67,0xee,0xcc,0xfd,0xe6,0x34,0x05,0xb2,0x69,0x6b, +0x07,0xa2,0xc0,0x05,0x6a,0xf2,0xe7,0x25,0x48,0x6b,0x80,0xb2, +0xe6,0xb2,0x92,0xfe,0xe5,0xde,0xb8,0x0a,0xc7,0x57,0x9f,0x91, +0x14,0x7f,0xd3,0x67,0x8a,0x28,0x23,0x23,0x14,0x41,0xeb,0x9e, +0xc5,0xdd,0x15,0x89,0x35,0xda,0xfd,0x47,0xfa,0xff,0x32,0xe3, +0x15,0xb5,0x42,0x1f,0x19,0xc4,0xa4,0x04,0xfe,0x46,0xb4,0xfb, +0x35,0xfa,0x7d,0x49,0x0b,0x53,0xd4,0x5d,0xbb,0x77,0x27,0xef, +0xda,0xca,0xec,0x14,0x35,0x2d,0x63,0x5f,0x12,0xb7,0x18,0xfe, +0xfc,0xec,0x4f,0xd5,0xfa,0x4f,0x92,0x36,0x57,0x51,0x87,0x46, +0xba,0x6e,0x01,0x3b,0x2c,0x46,0xd8,0x1f,0x28,0x36,0xfb,0xf3, +0xe2,0xf0,0xee,0x14,0x0d,0x6f,0x38,0xad,0x56,0xcc,0xb1,0xf1, +0xdc,0x74,0x1f,0x28,0x48,0x57,0x84,0x48,0x6a,0x28,0x5b,0xb9, +0x47,0x71,0xa9,0x7d,0xce,0xd6,0xd7,0x48,0x30,0x58,0x09,0x2c, +0x43,0xa0,0xfb,0x95,0xca,0x32,0x04,0x55,0xdd,0x54,0x3f,0xd5, +0xe6,0xbe,0x85,0x47,0x71,0xea,0x43,0xed,0xa3,0x51,0x78,0x94, +0xc8,0xd3,0x3e,0x7c,0x0b,0x11,0xc7,0x67,0x78,0x5a,0xe4,0x28, +0x3c,0xca,0xe4,0x47,0x69,0xa3,0x94,0xf0,0x3e,0x40,0x23,0xa1, +0x93,0xd3,0x7b,0xc8,0x03,0x39,0xae,0x3e,0xd0,0xb6,0x08,0xc4, +0xf6,0x59,0x7e,0x14,0x21,0x8e,0xb2,0xf8,0xd1,0x26,0x71,0x74, +0x97,0x1f,0x4d,0x17,0x47,0x1f,0xf1,0xa3,0x38,0x71,0x74,0x8b, +0x1f,0xcd,0x11,0x47,0xbb,0xf9,0xd1,0x3e,0x71,0x94,0xcb,0x8f, +0xd6,0x89,0xa3,0x03,0xfc,0x68,0x87,0xa7,0x12,0x11,0x63,0x8e, +0x88,0xc2,0xdd,0x71,0x0a,0x46,0xfc,0x56,0xb8,0xb0,0x39,0x4d, +0x11,0x4b,0xfb,0xae,0xa9,0xe0,0x8e,0x6d,0x52,0x5f,0x70,0x4f, +0xe3,0x2f,0xa9,0x5a,0x85,0x4c,0xd6,0x8d,0x65,0x4a,0xca,0xed, +0x0a,0x48,0x0e,0x62,0x8d,0xe4,0x64,0xe5,0x73,0x89,0xb5,0x7e, +0xb6,0xe7,0xe0,0x7d,0x67,0x05,0x4a,0x24,0xf6,0x83,0xaf,0xca, +0xc2,0x70,0x17,0x73,0x35,0x84,0x4a,0x38,0x3c,0xd5,0xbd,0x2b, +0xeb,0xaa,0xb0,0xaa,0xd1,0x12,0x6c,0xe7,0xe5,0xea,0xaf,0xc9, +0x23,0xdd,0x04,0xc7,0xe6,0x33,0x4d,0xaa,0x92,0xf5,0x56,0x0a, +0x6d,0xb5,0x83,0x80,0xe5,0xf1,0x10,0xc6,0x4b,0x33,0xf6,0xfa, +0x8b,0xfe,0x44,0xb1,0xb8,0x3f,0x9d,0xc4,0xa3,0xe4,0x99,0x4f, +0x6f,0xfe,0xa8,0x58,0x7e,0xeb,0xfd,0x70,0x26,0x19,0xd5,0x55, +0xb1,0xfc,0xde,0xfb,0xd3,0x99,0xe4,0xad,0x2e,0x8a,0xa5,0xeb, +0x53,0x4f,0x71,0xf6,0xc1,0x6f,0x0a,0xf3,0xba,0x56,0x3f,0x35, +0x98,0x79,0xc9,0x6c,0x9e,0x62,0x4d,0x61,0x3e,0xd7,0xeb,0xa7, +0x06,0x30,0x1f,0xde,0x01,0xfa,0x74,0x12,0xfb,0x1b,0x1f,0x6f, +0x4c,0x53,0xc6,0x43,0x02,0x34,0x16,0xea,0x76,0xd5,0x8a,0x16, +0x8a,0x4e,0xd0,0x07,0x93,0xb9,0xc7,0xc5,0x0b,0x18,0x1f,0xab, +0xf0,0xa1,0x56,0xc8,0x0d,0xd5,0x76,0xda,0xca,0x93,0x28,0x99, +0x91,0x68,0xb0,0x04,0x48,0x44,0x39,0x53,0x76,0xb4,0xac,0x61, +0xb8,0xae,0xd0,0xa0,0x6c,0x94,0x66,0xad,0x98,0xa3,0xfc,0x4b, +0xa0,0x9a,0x66,0x90,0x90,0x0d,0xe6,0x78,0x67,0x9c,0x26,0x34, +0x8d,0x9e,0xc2,0x3e,0xbf,0x22,0x39,0x18,0x0b,0xb9,0xcc,0x0e, +0xe0,0xc7,0x9a,0x32,0x3f,0xc9,0x81,0x0d,0xae,0x82,0x4f,0x98, +0x27,0xbb,0x5e,0xa5,0x37,0x83,0x42,0xd6,0x43,0x61,0x93,0xa1, +0xe7,0x3d,0xd6,0x93,0xe5,0x19,0x7f,0x26,0x2b,0xf2,0x50,0xbf, +0xa9,0x03,0x07,0xf8,0x5d,0xfe,0xd2,0x8a,0xd0,0xa8,0xc8,0xe4, +0xcd,0xe8,0xce,0xf2,0xda,0xd5,0x03,0x3a,0xa0,0x00,0xda,0x4a, +0xc5,0xcc,0x8e,0x55,0xd7,0x37,0xf1,0x63,0xc7,0x25,0xc5,0xbc, +0x36,0x22,0x6e,0xc7,0xf1,0x63,0x7b,0x8e,0xef,0xe4,0xa9,0x1f, +0x56,0xeb,0xba,0x1f,0x3b,0x8a,0x88,0xfa,0xd4,0x9b,0xfa,0xf7, +0x93,0x78,0xb5,0x54,0xcc,0xff,0x54,0xc2,0xfd,0x40,0xe6,0x26, +0x25,0x2a,0x96,0xb4,0xef,0xaa,0xe0,0x3d,0xff,0x9b,0xbc,0x9a, +0x53,0x93,0x0f,0xf7,0x8a,0xef,0xde,0x53,0x5e,0x9a,0xb4,0x93, +0x2a,0x38,0xb3,0x98,0x51,0x4a,0xc8,0x42,0xcb,0xb8,0xbb,0x7e, +0xb8,0x35,0x41,0x41,0x06,0x64,0x69,0x3a,0x6a,0x24,0x34,0x67, +0x01,0x63,0x75,0x9f,0x3b,0x0a,0xcc,0x87,0x0e,0x2c,0x68,0x8c, +0x1e,0x74,0x0f,0x0f,0x15,0x16,0xe4,0xad,0x07,0xdd,0xb5,0x99, +0xdd,0xfa,0xc6,0xdc,0xec,0xde,0x91,0xea,0xaa,0xd3,0x33,0xb3, +0x9d,0xd9,0x49,0x45,0xae,0x6f,0xc4,0x74,0x6e,0x81,0x14,0xd6, +0xe7,0x86,0xde,0xd6,0x87,0xf5,0x55,0x58,0x5f,0xa6,0xee,0xfd, +0xe0,0x47,0x67,0x45,0xf5,0x8c,0xee,0xb3,0xa5,0x0b,0xb6,0x9a, +0x31,0xd1,0x7d,0x45,0x67,0x29,0x0e,0xba,0x1b,0x07,0xfd,0xb6, +0xf4,0x10,0x0d,0xca,0x9d,0xbd,0xc1,0xdc,0x25,0x71,0x20,0x89, +0x03,0xdc,0x3a,0xd3,0x4f,0x50,0xd0,0x63,0x6c,0x14,0x74,0x58, +0xc5,0xfd,0x40,0x5c,0x5a,0xb7,0x93,0xb7,0xd2,0x9d,0x89,0xbf, +0x28,0x6a,0x40,0xcc,0xe8,0x2d,0x23,0x04,0x20,0x9d,0xcd,0xbd, +0x26,0xeb,0xc7,0x78,0xb5,0x8b,0x81,0x46,0x10,0xc3,0xbf,0x33, +0xf3,0xbd,0x55,0xef,0x46,0x3a,0x6f,0x55,0xd4,0xb9,0xef,0xac, +0x0a,0x8b,0x76,0x4e,0x50,0xd4,0xf9,0x09,0xd3,0x13,0x82,0xb7, +0x9e,0x44,0xe3,0x16,0x60,0x18,0x37,0x48,0x0e,0x64,0xc9,0x12, +0xb7,0x7b,0x7a,0x4f,0x5f,0xad,0x27,0x12,0xe6,0xf5,0x9e,0x7e, +0xc6,0x01,0xdc,0xf2,0x67,0xb7,0xa4,0xf1,0x0a,0xee,0xd4,0x4b, +0x58,0x9c,0xf8,0xa1,0xa2,0xbe,0xbb,0x65,0x5e,0x82,0x00,0xad, +0x03,0x0a,0xdc,0xb6,0xc3,0xf1,0xca,0x61,0x41,0x06,0x97,0x5e, +0x0f,0xf7,0xd5,0xc2,0xa5,0x5c,0x24,0xae,0x77,0x15,0xc4,0x75, +0x55,0x8f,0xf4,0xd5,0x22,0xa5,0x8b,0x8a,0x39,0x35,0xcd,0x30, +0x89,0x5d,0xa5,0x1d,0x87,0xb6,0x1f,0x3a,0x62,0x51,0x70,0xb4, +0xaf,0x46,0x85,0x03,0x4a,0xf7,0x5b,0xe0,0x04,0x96,0xee,0x13, +0x15,0xb6,0x74,0xb4,0x1e,0x7d,0x9f,0xb7,0x19,0x4f,0xe0,0xed, +0x8d,0x49,0x1e,0x8a,0x57,0x17,0x38,0xfb,0x9b,0x17,0x3c,0x54, +0xfc,0xd9,0x7b,0x5d,0x21,0x0c,0x46,0x28,0x73,0x8d,0x49,0xe2, +0x0d,0xca,0xdb,0x49,0x4b,0x93,0x96,0x26,0x9b,0x23,0x15,0x68, +0xeb,0xcb,0xda,0x4a,0xfa,0x00,0x25,0x9c,0xba,0x8d,0x27,0xca, +0x46,0x6a,0x1a,0x4a,0x14,0x1e,0x77,0x8a,0xfd,0xe6,0x0a,0xce, +0xd3,0xa3,0x5c,0x8c,0x02,0x33,0x1e,0x68,0x73,0x3d,0x61,0xa6, +0x92,0xfb,0xb5,0x26,0xdd,0x94,0x20,0x50,0xe1,0x3d,0xc4,0x53, +0x3f,0x95,0x6d,0x50,0xb4,0xcb,0xda,0x7d,0xd5,0x9f,0x0d,0x51, +0x60,0xd1,0x03,0xed,0x1d,0x4f,0x98,0xab,0x94,0xc9,0xb7,0xaf, +0x22,0x8f,0x5c,0x81,0x8d,0x41,0x6c,0xa0,0xcc,0x9a,0x19,0x1c, +0xef,0x3d,0x97,0x9c,0x95,0xef,0xe1,0x73,0x3f,0x96,0x12,0x22, +0x2b,0xfa,0x15,0x3f,0x6d,0x7d,0x1f,0x7d,0x25,0xb7,0x8b,0xf1, +0x6f,0x49,0xfa,0x2e,0x6c,0xe1,0x83,0xbb,0xb2,0x81,0xbc,0xe8, +0x3f,0xa8,0x01,0xde,0xac,0x58,0x98,0xd0,0x28,0x52,0xb4,0xf7, +0xb5,0x34,0x95,0x4d,0x51,0x50,0x7e,0xb4,0x7d,0xee,0x57,0x4a, +0xc3,0xf4,0x80,0x7a,0x1d,0x4e,0x04,0xc8,0x8a,0x20,0x4c,0xfa, +0x2a,0xb0,0x2a,0x88,0xf5,0x92,0xb9,0x9f,0x06,0x63,0xfd,0xd9, +0x58,0xb0,0x17,0x7f,0x14,0x6e,0x61,0x36,0x9a,0x76,0xc3,0x46, +0x09,0x75,0xc8,0x52,0xfe,0xc8,0xe0,0x56,0x5d,0x1c,0xfd,0x96, +0x6e,0x1c,0x75,0x62,0xdc,0x7d,0x7d,0xe4,0xac,0x88,0x0d,0xf8, +0x3b,0x13,0x19,0x77,0x5b,0xd2,0x0d,0x7b,0x3d,0x45,0x51,0x33, +0x5e,0x1f,0x69,0xdf,0xd4,0xe8,0xdf,0x48,0x1a,0xef,0xed,0x60, +0x6b,0x90,0x90,0x50,0x56,0xd4,0x9f,0xf5,0x96,0x93,0x58,0xc5, +0x12,0xb9,0xc1,0x86,0xb3,0x71,0x8a,0xe5,0x16,0x5c,0xf4,0x65, +0xcb,0xe5,0xed,0x0a,0x5b,0xbd,0xe7,0x28,0xeb,0xed,0xac,0xcf, +0x53,0xa6,0x57,0xf3,0x20,0x1e,0xf5,0xb7,0xd1,0x43,0xec,0xfa, +0x97,0xa8,0xf9,0xe8,0xbe,0xc4,0x26,0xed,0x30,0xf1,0x68,0x95, +0x5b,0x89,0xf8,0x04,0xb4,0x12,0x42,0x8a,0xa4,0xca,0x14,0x11, +0xac,0xec,0x89,0x43,0xd9,0x1a,0x07,0x98,0xa4,0xec,0x89,0xdc, +0xc9,0xcd,0x69,0x6c,0x5c,0xa2,0x02,0xfe,0x90,0x6d,0x9a,0xc5, +0x66,0x0f,0x50,0xae,0xcd,0xfa,0xea,0x6e,0xe5,0x95,0x0b,0x57, +0xcd,0x4a,0x66,0x44,0xb2,0x90,0x09,0x00,0xd7,0xe5,0xe3,0xfa, +0x29,0xce,0x5b,0x4a,0x4d,0x51,0xe3,0x14,0x7f,0x6d,0xeb,0x51, +0x53,0x37,0x05,0x64,0xe8,0xcb,0x1f,0x66,0xef,0x7e,0xe7,0x0c, +0xf9,0x80,0x22,0x24,0x4f,0x2a,0x05,0x0b,0x7c,0x90,0x93,0x62, +0xc0,0xc3,0xcc,0x0e,0xb8,0xbb,0x33,0xce,0xc5,0x09,0x21,0xf7, +0xd3,0x04,0x03,0x1c,0xdc,0xff,0x12,0x0d,0xe6,0xe3,0xfa,0x8a, +0x09,0x1a,0xff,0x9b,0xea,0xa7,0x9d,0x38,0xc8,0xeb,0xbb,0x3e, +0xc3,0x47,0x9b,0x81,0x2d,0x8a,0x3c,0x65,0x04,0xc7,0xd3,0xd7, +0xf8,0x21,0x0c,0x5f,0xd5,0xd7,0x06,0x68,0x6b,0x25,0x54,0x01, +0x4d,0xd8,0x61,0x3a,0xaf,0xa8,0x1b,0x76,0xc5,0x26,0x6e,0x8a, +0xe6,0x61,0x8c,0x6f,0xff,0x98,0xae,0x4e,0xc8,0xb2,0xaf,0xa9, +0x97,0x7c,0x15,0xa1,0x63,0x99,0x1a,0xaf,0x98,0x0d,0x0d,0x5c, +0xa5,0x2f,0xb4,0x89,0xe2,0x9d,0x10,0xe2,0xd7,0xbf,0xba,0xa7, +0x59,0x15,0xf6,0x0e,0x56,0x5b,0xf1,0xbe,0xe3,0xef,0xb3,0x6b, +0xca,0x38,0x73,0xee,0x64,0x44,0x9f,0x87,0x26,0x2c,0x4c,0x98, +0xbf,0xd5,0x5e,0x01,0x2b,0x6f,0xca,0x74,0x9c,0xb2,0x31,0x69, +0x53,0x8c,0x79,0xed,0x66,0x25,0x62,0x5b,0x64,0x74,0x74,0xac, +0xa3,0x12,0x95,0x11,0x81,0x5b,0xb4,0x14,0x03,0x30,0x6c,0x56, +0x84,0x56,0xf1,0x76,0x93,0x72,0x05,0x92,0xa7,0x20,0xcb,0xfb, +0x8b,0x94,0x07,0xa9,0xd5,0xbc,0x7f,0xd6,0x7e,0x41,0x8f,0xcc, +0x55,0xa9,0xf7,0x85,0x50,0x55,0xdb,0xa9,0x68,0x3a,0x7e,0xb6, +0x28,0x88,0xd7,0x5d,0xc8,0xdf,0x15,0x14,0xfb,0xb3,0x55,0xf8, +0xf7,0x1f,0x36,0x92,0x3d,0xe5,0xa6,0x9d,0x48,0x63,0x2f,0xab, +0x10,0xad,0x98,0x62,0x57,0xcc,0x89,0x9b,0xe5,0x14,0xaf,0x98, +0x92,0x97,0x2e,0xdd,0xb6,0x14,0x79,0xe4,0x5b,0x87,0x0d,0x4a, +0x1e,0xc2,0xa3,0x59,0x39,0x69,0x72,0x50,0xf2,0x64,0x04,0x93, +0x0b,0x9b,0x84,0x2d,0x35,0xe8,0x45,0x45,0x85,0xac,0xe7,0xf3, +0x62,0xb2,0x67,0x8d,0x98,0xbd,0x64,0xa8,0x4c,0x74,0x44,0x77, +0x06,0xdb,0x6e,0x3a,0x6f,0xbb,0x96,0xbf,0x2b,0x20,0x29,0x88, +0xc7,0x2a,0x56,0x78,0xb2,0x31,0xc3,0x87,0x7d,0xc2,0x0f,0xf2, +0x37,0xa7,0xf9,0xb1,0x83,0x8a,0x36,0x48,0xf2,0xba,0xaa,0xc2, +0x49,0x65,0xe2,0xd8,0xc1,0x56,0xaf,0x9f,0x62,0xf6,0x2a,0x13, +0xb7,0x7a,0x27,0x8e,0x49,0xb2,0xff,0x50,0x69,0x98,0x5d,0x50, +0x7c,0x6d,0x82,0x11,0xca,0x94,0xd9,0xd0,0xd7,0xc3,0x9e,0xfb, +0x5c,0xcb,0x62,0xa6,0xc6,0x05,0x6d,0x37,0x27,0x29,0x11,0x51, +0x06,0x59,0x5e,0x89,0xdc,0x1d,0x6d,0xd4,0x18,0x64,0xe1,0xf1, +0xea,0x11,0xa5,0xec,0xc0,0x15,0xa7,0x91,0xf1,0x3b,0x05,0x89, +0x7f,0xe7,0x56,0xd6,0xca,0x38,0xe0,0xc1,0x1b,0xca,0x0d,0xa3, +0xfc,0xc2,0x68,0xe5,0xfc,0x69,0xf3,0x1e,0x64,0xc1,0x28,0xa5, +0x05,0xd0,0x93,0xb5,0x8c,0xcc,0x50,0xaa,0xe5,0x2f,0xab,0x33, +0xb8,0x45,0x56,0x04,0xb7,0x35,0xc7,0x9c,0xa6,0x40,0x7c,0xad, +0x76,0xdc,0x0b,0xd6,0x2b,0xcc,0xe4,0x5c,0x2c,0x31,0x53,0x91, +0x62,0xf3,0x4d,0xb0,0xd3,0x72,0x1a,0x2f,0x36,0x84,0xb5,0xe6, +0x4e,0x6b,0x17,0x36,0xf4,0x77,0xfe,0xf0,0x6b,0x36,0xc6,0xf3, +0xdb,0x71,0x5c,0xc3,0x2b,0xb2,0x8f,0x62,0xbe,0x34,0xdd,0xc4, +0x22,0x14,0xa1,0x41,0xdb,0x4b,0xb1,0x5e,0x99,0x6f,0x62,0x5d, +0x78,0xcc,0xb1,0x1a,0x8e,0xde,0xc3,0x29,0xd0,0xae,0x10,0xaa, +0x68,0xcb,0x3f,0xd6,0x97,0x73,0xaf,0xbb,0x15,0x74,0xe3,0x77, +0x96,0xee,0xa3,0xad,0xf8,0xc8,0xa4,0xe8,0xfd,0xa7,0xb1,0xdf, +0x24,0xe5,0x72,0xd5,0x85,0xe2,0xe3,0xe5,0x4a,0xb5,0x9e,0xfa, +0x54,0x0b,0x57,0x6a,0x2c,0xa7,0x46,0xbe,0xc7,0x9b,0xdd,0x8d, +0xfa,0x0a,0x1f,0x85,0x5d,0x26,0x77,0x68,0xfb,0x42,0xdc,0x4a, +0xe2,0x05,0xff,0x53,0xd9,0x04,0xf2,0x0c,0xa9,0xe9,0xd7,0x0d, +0x90,0xb0,0xd0,0x7a,0xd2,0xb3,0xee,0x6a,0x59,0xb2,0x3e,0x54, +0x9f,0x24,0xc4,0xb3,0x8d,0x41,0x7a,0x7f,0x58,0x31,0x5d,0x0c, +0xd2,0x9f,0x93,0xeb,0xd7,0x42,0x06,0x25,0x43,0x70,0x51,0xc9, +0x77,0x04,0x53,0x3c,0x74,0x7f,0xb9,0xbe,0x3b,0xf3,0x13,0x89, +0x9d,0x88,0x5e,0x2a,0x14,0x92,0xdf,0xa7,0xed,0xe7,0x92,0x44, +0x46,0xa0,0x19,0xb2,0xa7,0x1a,0x3f,0xb7,0x21,0x39,0x22,0xb7, +0x24,0xee,0xf8,0xe0,0x6c,0x46,0xd6,0xf6,0x5c,0xf3,0x73,0x1b, +0x7b,0x6a,0xec,0xca,0x59,0x01,0x93,0x27,0xdc,0xa1,0xae,0x3b, +0x49,0xde,0xbf,0xb8,0xa9,0x21,0x21,0x33,0x7b,0x0f,0xb1,0x67, +0x11,0xc0,0x1d,0x25,0x66,0x47,0xe5,0x37,0x11,0x14,0x55,0x43, +0x20,0x95,0x15,0x52,0xf3,0x5f,0xe4,0x95,0x37,0xd1,0x1f,0x80, +0x97,0x10,0xf5,0xa6,0x0e,0x05,0xa4,0x7e,0xe2,0xd7,0x02,0x47, +0x2a,0x36,0x22,0x85,0xe0,0x16,0x58,0x5e,0x50,0x1d,0x20,0x04, +0x3c,0x5f,0x5a,0xc4,0x5d,0x65,0xd5,0x49,0xe0,0xc6,0xec,0x5f, +0x34,0x22,0x3f,0xbf,0x2d,0x17,0x17,0x9c,0xcf,0x39,0x76,0x01, +0x65,0xd2,0xed,0xa1,0xa5,0x63,0x51,0x41,0x07,0xd6,0xc4,0x06, +0x67,0x47,0x36,0x96,0xe9,0x60,0x56,0x46,0xce,0x25,0xcb,0xf3, +0xab,0x90,0x34,0xb9,0x56,0x4a,0xf2,0x5c,0x35,0xc3,0x3f,0x70, +0xd2,0x5d,0x47,0x81,0xa2,0xdc,0x12,0x6d,0x0c,0x2e,0x9e,0x4b, +0xcf,0xbe,0x64,0xb9,0x73,0x15,0x92,0x27,0xf3,0x9b,0x4d,0xea, +0x1b,0x32,0xbd,0x57,0xff,0xe2,0xb9,0x8e,0xe5,0x65,0xd9,0xb9, +0x47,0xf3,0x90,0x6b,0xb9,0x7b,0x2b,0x6b,0xcc,0xb3,0x5e,0xd6, +0x83,0xda,0xf7,0x12,0xd7,0x2f,0x10,0xd7,0x27,0xb4,0xf5,0x41, +0xee,0x3d,0x2f,0x20,0x70,0x05,0xe9,0xc6,0x5e,0x70,0x8e,0xaa, +0x3f,0xfe,0x8b,0x2b,0x4e,0xf7,0x86,0xa3,0xd4,0xe5,0x0a,0x99, +0x60,0xa8,0x90,0x37,0x06,0x42,0x12,0xe4,0xf9,0xe1,0x1b,0xde, +0x59,0x62,0xf1,0xad,0x9e,0xf1,0xe7,0x9f,0xd5,0xa5,0x35,0x39, +0x1b,0x10,0xb6,0xb3,0x5b,0xee,0x05,0xdd,0xd4,0x8d,0x02,0xb6, +0x53,0x88,0xb0,0x9d,0x03,0xd2,0x95,0x9c,0xf7,0xe6,0xcc,0x59, +0xf2,0x1e,0xe2,0x27,0x22,0x33,0x22,0x5e,0xeb,0xdd,0x1c,0xce, +0x49,0xbb,0x50,0x2e,0xf8,0x49,0xfd,0xc2,0xa6,0xf5,0x18,0x65, +0x75,0x79,0x1c,0x95,0x2e,0x0c,0x41,0x54,0x6c,0xc2,0x0e,0xea, +0xe6,0x45,0x4e,0x79,0xbf,0x27,0xf7,0x9e,0xeb,0x2b,0x70,0x2e, +0x33,0xee,0x5c,0x2e,0xbe,0x74,0xe6,0x92,0x39,0x15,0x71,0x8f, +0x88,0x73,0xe9,0x60,0x43,0xc2,0xa7,0x21,0xdf,0x05,0x89,0xba, +0x6d,0x05,0xd4,0xc5,0x78,0x1e,0xfd,0x2e,0xfb,0x9d,0x9a,0xfa, +0xa2,0xd6,0x7c,0x2b,0xc7,0x92,0xc2,0xec,0xec,0x8f,0x72,0x77, +0x22,0xee,0xde,0xc1,0xb1,0xa4,0xa8,0xc3,0x3f,0x58,0xa0,0x11, +0x31,0xaf,0x9c,0x09,0x96,0x66,0xbe,0x25,0xdf,0x3b,0x54,0x1e, +0xb1,0x6a,0xa6,0x4f,0x80,0xd5,0xf7,0xe3,0x68,0x31,0x4c,0x0b, +0x8f,0xc9,0xfb,0x67,0xd3,0xce,0xe7,0x5b,0x2e,0x79,0x2f,0x91, +0xfb,0x84,0x4e,0xef,0x31,0xc0,0x5a,0x3a,0xbb,0xac,0x34,0xfb, +0xc2,0xd1,0x3c,0xf3,0x7d,0x78,0xc6,0x5f,0xbb,0x89,0xb6,0x67, +0xa2,0xf0,0x4e,0x89,0x8b,0xdd,0xa1,0x4d,0x2f,0x10,0x41,0x9f, +0xcf,0xb9,0x70,0x2c,0xd7,0x78,0x7b,0xad,0x1c,0x8b,0x8b,0xf8, +0xdb,0xc3,0x0e,0x38,0xc2,0x26,0x6a,0x7f,0x30,0x3b,0xe3,0x42, +0x81,0xa5,0xd0,0x7b,0xb1,0x3c,0x7c,0xd5,0x74,0x1f,0x3f,0xab, +0xcf,0x6d,0x63,0x58,0xd8,0x1c,0x83,0x81,0xc2,0x7e,0xda,0xb1, +0x8e,0x94,0xce,0x29,0x2f,0x13,0xbc,0x7e,0xcd,0x83,0xfb,0x5d, +0x7d,0xc8,0xaf,0xa3,0xbb,0x1a,0xe3,0xd4,0xd4,0x7c,0x5a,0x5c, +0x30,0x97,0x5f,0xf0,0x0e,0xab,0xa5,0xad,0x4b,0xc4,0xc7,0xe3, +0xbc,0x4a,0xaf,0x63,0x8b,0x68,0xc7,0x9d,0x84,0x07,0x29,0xbc, +0x10,0x4a,0x0d,0x00,0xfe,0x2e,0xc1,0x12,0x12,0x77,0xc1,0xeb, +0xd0,0x1b,0xfc,0xb9,0xa8,0x9b,0x1d,0xc9,0xb7,0x3c,0xbf,0x06, +0x49,0xc1,0xbc,0xea,0x78,0xac,0x9c,0xee,0x1f,0x30,0xa9,0xd6, +0x31,0x56,0x50,0x4c,0xa3,0x0d,0xae,0x7f,0x56,0x3a,0xaf,0x5c, +0xb7,0xf1,0x1b,0x28,0x7c,0xe2,0x1e,0x3a,0xb5,0x57,0x7f,0x7b, +0xed,0x87,0x61,0xec,0x25,0xaf,0x18,0x17,0x09,0xfb,0x15,0xc2, +0xa8,0xdd,0x6e,0x02,0x17,0xd4,0xa8,0xaf,0x79,0x84,0x3a,0x0d, +0xce,0x04,0xb2,0xa5,0x43,0x60,0x31,0x74,0xa1,0x0e,0xde,0x44, +0xfb,0x9b,0x5a,0x57,0x10,0xff,0x8a,0x39,0x4f,0x9e,0x54,0x16, +0x56,0x65,0x85,0x9f,0x5c,0x82,0x4c,0x22,0x77,0xda,0xd1,0x85, +0x94,0x66,0xad,0x9a,0xb7,0x60,0xe9,0xaa,0x19,0xce,0x0e,0x2f, +0x46,0x91,0xe7,0x29,0xbf,0x65,0xfc,0x8f,0x3d,0x23,0x81,0xb4, +0x0d,0x25,0xb4,0xcd,0x27,0x08,0x3f,0x78,0xc0,0x28,0x95,0xdb, +0xe1,0xca,0xe8,0xaf,0x09,0x24,0xaa,0x0f,0x1e,0xd3,0xf6,0x1a, +0xae,0xba,0x47,0xd7,0xbc,0x35,0xb4,0x08,0x62,0x2d,0x06,0x42, +0x8b,0x40,0xd6,0x02,0xde,0xe4,0xbe,0x8b,0xac,0x7f,0x01,0x97, +0x28,0x89,0x21,0x8a,0x36,0x8b,0x88,0x14,0x4f,0x68,0x2d,0xeb, +0x29,0x30,0x44,0x24,0xbe,0x88,0x45,0xb3,0x10,0x72,0x57,0x0b, +0x91,0xe1,0x29,0x04,0x0a,0x05,0x02,0x5e,0x50,0x1f,0xf2,0x72, +0xab,0x63,0x97,0x69,0xab,0x76,0x04,0x65,0xba,0x8b,0xb3,0x2f, +0x1c,0xbb,0xb4,0x13,0xbe,0x17,0x30,0x20,0xfe,0x9e,0x64,0x6e, +0x05,0xb0,0x8f,0x8e,0xde,0x82,0x0c,0xda,0xec,0x8c,0xdc,0x22, +0x4b,0xb1,0xf7,0x42,0x79,0xc8,0xaa,0xa9,0xbe,0x3e,0x56,0x9f, +0x5a,0xf1,0x9e,0xb6,0x18,0x33,0xee,0xfb,0xcf,0xa7,0x5d,0x28, +0xb4,0x14,0x79,0x2d,0x90,0xbb,0x86,0x4e,0xee,0xd9,0xc7,0x5a, +0x32,0xbb,0xfc,0xf2,0xf9,0xbc,0xa3,0x97,0xcc,0x9a,0x37,0x78, +0xab,0x6b,0xa8,0x4b,0x3a,0xbf,0x89,0xc6,0xe4,0x8b,0x17,0xb7, +0xc8,0x90,0x97,0x75,0x28,0xc6,0x87,0xc4,0xf4,0x43,0x97,0xd2, +0x0a,0xab,0x2c,0xe7,0x26,0x2e,0x97,0xc1,0x7e,0x69,0x00,0x37, +0xa6,0x2d,0xad,0xe5,0x8b,0xae,0x55,0x5d,0x28,0x38,0x9e,0x6f, +0x1b,0xa7,0x4d,0x8d,0x33,0xb3,0x37,0xc1,0xb5,0xec,0x22,0x98, +0x59,0x87,0xa8,0x3d,0x51,0x08,0x37,0x82,0xec,0x2a,0xe4,0xd6, +0xda,0x8f,0x83,0xab,0x02,0x98,0xff,0x7c,0x3c,0x2e,0x21,0xe2, +0x29,0x2d,0x91,0x5b,0x6b,0x14,0x50,0x20,0xa8,0x01,0x4c,0x85, +0x10,0x51,0x34,0x0f,0xe1,0x22,0x25,0xb1,0xfc,0xa2,0xb5,0xac, +0x07,0x6e,0x5a,0x62,0xb7,0x61,0x65,0x03,0x3f,0xea,0x14,0xec, +0x57,0x37,0xb3,0x84,0xb1,0x90,0x66,0x4c,0x91,0xa2,0x70,0x5c, +0xf8,0x75,0xd3,0xe6,0x50,0x14,0x8e,0xd3,0x7e,0xfa,0x03,0xda, +0x11,0xad,0x2d,0xa2,0x83,0xbb,0x4b,0xff,0x79,0x49,0xe9,0xfc, +0x25,0x6d,0x21,0x5a,0x12,0xdc,0x54,0x37,0xa7,0x47,0x1a,0xec, +0x5a,0x94,0x3e,0x39,0x97,0x4e,0x3b,0x3e,0x20,0x91,0x69,0x51, +0xb8,0x8a,0x4b,0xe0,0xc3,0x79,0x12,0x6f,0x33,0x48,0x6c,0x1b, +0xbe,0x70,0x32,0xd0,0xc1,0xd6,0xc2,0x99,0x94,0x34,0x27,0xbb, +0x33,0x70,0xb7,0x62,0x4f,0xde,0xf8,0x6a,0x4b,0x04,0x3a,0xdc, +0x68,0xb1,0x3d,0xe0,0x0d,0xc7,0xa2,0x52,0x13,0xca,0xb6,0x77, +0x93,0x5e,0x9e,0xc2,0x2b,0x7c,0xca,0x28,0xee,0xb6,0xa2,0xd2, +0x67,0x29,0xf7,0xd2,0xab,0x32,0xe3,0x4b,0xf9,0x47,0xa1,0x3f, +0xb8,0x7b,0x8a,0xfe,0x26,0x3e,0xca,0x6c,0xfe,0x28,0xe5,0x06, +0x0a,0x6b,0x3b,0x7f,0x94,0x8d,0x63,0x21,0x96,0x3a,0x77,0x23, +0x8f,0xd5,0x62,0x7d,0xc8,0xac,0xbf,0xe2,0xe5,0x45,0x9b,0xc2, +0x57,0xbc,0x6d,0x09,0xae,0x9e,0xff,0xe7,0xb3,0xea,0x4b,0xd7, +0xce,0x86,0x9f,0x58,0xbc,0xdf,0x9a,0x22,0xf7,0x80,0x37,0xd5, +0xf5,0x52,0xf0,0x92,0xa3,0x79,0xb9,0x39,0x47,0xaf,0x39,0x1f, +0x92,0xae,0xe5,0xac,0x5e,0xb4,0x70,0xc9,0xea,0x60,0x6e,0x90, +0x1e,0xb0,0xfe,0xda,0x68,0x12,0x83,0x3a,0x8a,0x7e,0x83,0x89, +0xe6,0x07,0x5f,0xd4,0xbf,0xc0,0x22,0xe8,0x6d,0x14,0x01,0x2c, +0x24,0x7e,0xb4,0xcd,0x11,0xa2,0x16,0x94,0x9c,0xc9,0x3e,0x7c, +0x61,0xe7,0x4e,0xec,0x79,0x9f,0x02,0x71,0xbc,0x98,0x7f,0x26, +0xeb,0x48,0xb6,0x10,0x59,0x49,0xfc,0x03,0x9a,0x3a,0x16,0x14, +0xf4,0xfe,0x2b,0x26,0x3d,0x1a,0xa9,0x93,0xa2,0xa9,0x7f,0x20, +0x9a,0xfa,0x77,0xd7,0xe0,0xed,0xe0,0xeb,0x52,0xd2,0x98,0xf0, +0x19,0xd3,0x82,0x68,0xd3,0x62,0xc2,0xdd,0x9d,0x44,0x43,0x40, +0xa3,0xd0,0xb2,0xfd,0xda,0x35,0x58,0x16,0xfc,0x83,0x9c,0xdc, +0x2f,0x6c,0xfa,0xe0,0x81,0xf6,0x5a,0x5c,0x67,0x23,0x7a,0x89, +0xb7,0xff,0x6a,0x6c,0xff,0x97,0x3b,0x89,0xf2,0x40,0x5b,0xa2, +0x16,0xce,0xba,0x5d,0x52,0x94,0x73,0xfa,0x82,0x39,0x3d,0x7d, +0xdf,0xb6,0x8c,0x58,0xd6,0x85,0x37,0xf1,0x4f,0xca,0x0a,0x73, +0x4e,0xe5,0x64,0xa4,0x65,0x6e,0xcb,0x44,0xe5,0x86,0x96,0x8e, +0x85,0xa8,0xdc,0x60,0x4f,0x3b,0x7d,0x45,0xb2,0xd2,0xcf,0x17, +0x51,0xbb,0x6f,0xc8,0x5b,0x61,0x33,0xfb,0x8e,0x77,0xfd,0xde, +0x31,0x2a,0x2d,0x72,0x5b,0x64,0xcc,0xe6,0x28,0xc7,0xc4,0xed, +0x87,0xce,0xa7,0x9f,0xdf,0x5e,0x60,0xfe,0xa7,0xfe,0x32,0x49, +0x1c,0x3a,0xc7,0x17,0xda,0x0e,0xb3,0xd7,0xaa,0xa0,0x3d,0xed, +0xd8,0x18,0xaf,0xb4,0x1c,0xaf,0x54,0x54,0x98,0x73,0xe6,0x82, +0xd0,0x88,0xc8,0x40,0x70,0x7c,0x6b,0xc7,0x4f,0xb8,0x41,0x3b, +0x95,0x9d,0x91,0x9e,0x99,0x2c,0xae,0xd4,0xdc,0xb1,0xb0,0x84, +0x5f,0x49,0x8a,0xe0,0xf5,0x20,0x32,0xda,0xbc,0x19,0xbd,0xb4, +0x43,0xfc,0x92,0x05,0x78,0x49,0xcf,0xb0,0x99,0xfd,0x26,0xba, +0x7c,0xe3,0x18,0x95,0xce,0x2f,0x89,0x32,0x11,0x89,0xdb,0xa9, +0x8b,0x07,0x19,0x81,0x57,0xa1,0xe2,0x2a,0xda,0x15,0x22,0x6a, +0x29,0x25,0x2b,0x85,0x28,0x08,0xed,0x70,0x8b,0x77,0xc2,0xdd, +0x0b,0xa8,0x8b,0x2b,0xb2,0x7e,0x48,0x24,0xa5,0x7b,0x8d,0xdd, +0x76,0xd6,0xbe,0x44,0x4b,0x80,0x42,0xda,0x49,0x21,0x67,0xd2, +0xce,0x5d,0xb2,0x1c,0x1f,0xbb,0x56,0xf6,0x5e,0x3e,0xa7,0xbb, +0xaf,0xd5,0xe5,0xe1,0xeb,0x1a,0x87,0xfc,0xf7,0xb3,0xe9,0x59, +0x17,0x2d,0x47,0xc7,0xae,0x93,0x3d,0x16,0x4e,0x85,0xf6,0x23, +0x78,0x8d,0xbb,0x7d,0xa9,0x28,0xeb,0x4c,0x96,0x39,0x23,0x35, +0x63,0x7b,0x66,0x2c,0xaf,0x75,0xb2,0xe3,0x9d,0x02,0x9e,0x72, +0x8e,0x27,0x60,0x35,0xec,0xde,0x51,0x54,0xba,0x9d,0x29,0xbb, +0xb6,0xed,0x4e,0x60,0x2d,0x61,0x30,0x6e,0x0e,0x6f,0xc6,0xba, +0xc5,0xec,0x89,0xdc,0x15,0x11,0xfd,0xca,0x85,0x1c,0x2a,0xa6, +0xae,0x41,0xbc,0xdf,0xab,0x23,0x07,0x0a,0xd3,0x8a,0x6b,0x2c, +0xb7,0xc7,0x4c,0x94,0xc1,0xbc,0x64,0x42,0x67,0x20,0xd6,0xb2, +0xd9,0x57,0x3f,0xb9,0x50,0xfa,0xd1,0x65,0xf3,0x0e,0xc1,0x7d, +0xe5,0xdd,0xfe,0x87,0x04,0x5e,0x22,0xcb,0x96,0xb6,0xff,0x9b, +0xdb,0xc8,0xf5,0x44,0x1f,0x1e,0x4f,0xdb,0xe0,0x1e,0x00,0xa9, +0x29,0x81,0x4f,0xd5,0x07,0x4f,0xea,0xab,0x51,0x8f,0x54,0x0b, +0xe5,0x26,0xe1,0x4b,0x02,0xe3,0xd5,0x51,0xd1,0xbd,0xb6,0x74, +0x8e,0xb7,0xff,0x72,0xf4,0x20,0xc3,0xac,0x0b,0x9d,0x6a,0x9e, +0x41,0x18,0xd1,0xe6,0x51,0xf2,0x1b,0x51,0xa9,0xc3,0x50,0xf2, +0xc2,0x53,0xb7,0x7f,0x29,0x13,0x77,0xd4,0x1f,0xd1,0xae,0xcb, +0x7a,0xff,0xad,0x42,0x80,0x84,0xdb,0x60,0x6d,0x1f,0x3c,0xa2, +0xae,0x7f,0x91,0x4b,0xd7,0x2c,0x27,0xc7,0xad,0x94,0x5d,0x42, +0xa7,0x70,0x4b,0x62,0xb2,0xc6,0xe5,0xbc,0x72,0x23,0x11,0xdf, +0xb2,0x48,0x36,0x15,0x2a,0x82,0x58,0xec,0x60,0x88,0xe2,0x46, +0xb9,0x43,0x7f,0x92,0x9c,0x96,0x17,0x72,0xe3,0x3a,0x75,0x73, +0x22,0x40,0x11,0x8d,0xf4,0xff,0x18,0x60,0x9d,0x57,0xf5,0xa7, +0x53,0x89,0x36,0x1d,0xaa,0xe0,0x04,0xf2,0x77,0x90,0x90,0x18, +0x41,0xad,0x3b,0x49,0xe1,0x1c,0xc7,0x5b,0x48,0xd1,0xc9,0xa1, +0x26,0x5e,0x1a,0xf4,0x3e,0x29,0xe4,0x8d,0xc5,0x88,0xb2,0x1f, +0x83,0xbd,0x63,0xde,0xc5,0xd3,0x59,0x1f,0x9e,0xdf,0xb9,0x1b, +0x65,0x56,0x9e,0xf0,0x32,0x2e,0x2c,0xea,0xf7,0x07,0x35,0x8d, +0x24,0x62,0x98,0x0e,0xeb,0x7e,0xa1,0xe5,0xd2,0xb8,0x50,0xd9, +0x63,0xc3,0x8c,0x69,0x81,0xd6,0x39,0xd7,0x62,0x0d,0xf3,0xf9, +0x9a,0x95,0x5d,0x60,0xb9,0x34,0x36,0x44,0xee,0xb3,0x62,0xc6, +0x90,0x01,0xd6,0xa2,0x39,0x97,0x8a,0x4e,0x9f,0x3f,0x9c,0x63, +0x66,0xbf,0x73,0x6b,0x6d,0xf7,0x3b,0xf9,0xd5,0xbb,0xcb,0xcb, +0x73,0x38,0x49,0x76,0x82,0xc0,0x6a,0xed,0x02,0x8f,0xd4,0x82, +0x45,0xa4,0x06,0x57,0xd5,0xcb,0x0b,0x6a,0x2f,0x94,0x9c,0x3e, +0x7b,0x96,0xda,0xa5,0x92,0xde,0x8e,0x97,0xf3,0xa1,0xf7,0xd7, +0x9b,0xa8,0xdd,0xbb,0xe4,0x83,0x63,0xe9,0xc7,0x76,0x9e,0xa6, +0x76,0x9b,0x89,0xff,0x8c,0xd9,0xf0,0xa6,0x8f,0xbd,0x36,0x6f, +0x50,0x30,0xf9,0x7d,0x5c,0xc7,0xfa,0x48,0xa2,0xb0,0xc3,0xda, +0x27,0x6a,0x5a,0x4a,0x06,0xe2,0xff,0x7b,0x71,0xbf,0xa1,0xf6, +0x6a,0xc9,0xc5,0xd3,0x97,0xd2,0x8d,0x84,0xee,0xe0,0x88,0x0a, +0x06,0x9d,0xb9,0xaf,0x0c,0x23,0xc9,0xa1,0x9c,0xf4,0xdc,0x52, +0xcb,0xd9,0x31,0xef,0xca,0x7d,0x97,0x4f,0xed,0x3d,0xda,0x0a, +0x8d,0x7e,0x89,0xcc,0x88,0xdc,0x5e,0x3f,0x8b,0x5c,0x40,0x8d, +0x9a,0xd3,0x63,0x56,0xc8,0xbd,0xe7,0x8c,0x07,0xd5,0xdd,0x5a, +0x34,0xfd,0xee,0xe5,0x92,0x4b,0x67,0x0a,0xcc,0x9a,0x04,0x91, +0x2a,0x6b,0x32,0x06,0x9a,0x40,0x9c,0xf1,0x67,0x79,0x77,0x82, +0xda,0x3c,0x0b,0x6e,0x4b,0x10,0x9f,0x4a,0xdb,0x0c,0x13,0x77, +0x70,0x03,0xef,0x00,0x3d,0x97,0x5e,0xe0,0xca,0x3d,0x97,0xe2, +0xfc,0x33,0x97,0xd2,0x77,0x09,0x3b,0xd8,0x1d,0x9c,0x8c,0x3b, +0x68,0x83,0x62,0x36,0x42,0x80,0x0b,0x85,0x1a,0x72,0xd2,0xf3, +0xca,0x85,0x02,0x81,0xfb,0xf2,0xa9,0xbd,0xde,0xb2,0x76,0x78, +0x42,0x3b,0xfd,0x40,0x72,0x91,0x72,0x87,0x77,0xd1,0x63,0xce, +0x38,0x50,0x7b,0x5b,0x8b,0x66,0xf0,0xbb,0x28,0x30,0xee,0x22, +0x56,0x65,0x6f,0x8c,0xe1,0x51,0x73,0x9c,0xf1,0x07,0xef,0xc2, +0xe8,0x0a,0x17,0xdc,0xd5,0x16,0xc8,0xb0,0x4b,0x9f,0x25,0xc4, +0x64,0x54,0x84,0x9d,0x2b,0xd4,0xf9,0x2c,0xef,0x06,0x69,0xdb, +0x79,0x44,0xdb,0xc0,0xbe,0x56,0x7f,0x8f,0x96,0x2f,0x5f,0xcc, +0x3e,0xf3,0xd1,0xd9,0xd7,0x4d,0xbd,0xa5,0xd1,0xd4,0x9b,0x46, +0x88,0xd6,0x8c,0x23,0x81,0x3b,0xb0,0xa9,0x67,0xdb,0xac,0xcb, +0x8c,0xbe,0xe3,0x5c,0x7f,0xc0,0xa6,0x4e,0x5b,0x8d,0xe5,0x46, +0x27,0xbb,0xc1,0xb0,0x0c,0x99,0xe3,0x07,0x6d,0x87,0x16,0xce, +0x74,0xe4,0x56,0x2b,0xf7,0xf4,0x05,0x9b,0x29,0x69,0x01,0x8d, +0x1d,0x23,0xbb,0xd4,0xd7,0xe1,0x6e,0xab,0x73,0x84,0x17,0x51, +0x77,0x2a,0x35,0x26,0x94,0x9c,0x26,0x6b,0x5e,0x0e,0x24,0x82, +0x28,0xde,0xb5,0x0e,0x55,0x51,0x64,0x78,0x08,0xce,0xb4,0xcd, +0x49,0x42,0x3b,0x7d,0x4a,0x0a,0x55,0x7d,0x05,0x2c,0xb5,0xc9, +0xdc,0xc8,0xf5,0xd3,0xa0,0xd2,0xa6,0x71,0x83,0x9d,0xde,0x28, +0x70,0xf2,0x67,0x4e,0xb0,0xe6,0x81,0x36,0x0b,0x3b,0xbd,0x53, +0x42,0xea,0xc6,0x1d,0xc1,0x16,0xda,0x79,0x59,0x1f,0xa2,0xfb, +0xd3,0x36,0x08,0x12,0x71,0xb1,0x23,0xfa,0x07,0xc6,0x4a,0x30, +0x7d,0x02,0x3b,0x47,0xdb,0xfa,0xe1,0xec,0xfe,0x67,0xa4,0x4c, +0xd5,0x97,0x37,0xe4,0xcd,0x1b,0xd8,0x8f,0x30,0x96,0x2a,0xb2, +0x68,0x89,0x2d,0x02,0x88,0xd6,0x07,0x6e,0x50,0xc9,0x9d,0xd0, +0x16,0x2f,0x88,0x3e,0xd4,0x26,0xb4,0x73,0xdd,0x43,0x5f,0x2e, +0xeb,0xfb,0x59,0x91,0xf8,0xe2,0x8b,0x68,0x6d,0xb7,0xca,0xf6, +0x79,0xe8,0x37,0xea,0x58,0xbc,0x20,0x18,0x4c,0x64,0x99,0x94, +0x5c,0x46,0xb9,0x9d,0x69,0xb4,0xfd,0x1c,0x82,0x4a,0x13,0x6d, +0x1d,0x8b,0xb0,0x0c,0x9b,0x47,0xa6,0x09,0xd4,0xde,0x66,0x14, +0xcc,0x3a,0xcc,0x4d,0x7f,0x89,0x85,0x75,0x42,0x6d,0x1d,0xda, +0x29,0x9e,0xf0,0x4e,0x1e,0xad,0x33,0x9e,0xc0,0x46,0xf3,0x1c, +0xd3,0x99,0x9b,0x94,0x34,0x70,0x8e,0x0f,0xa8,0x03,0xed,0x43, +0xc0,0x1e,0x31,0xaf,0x2f,0x74,0xa2,0x85,0xc3,0x27,0xd4,0x3c, +0x96,0xdc,0x7c,0x15,0x45,0xc2,0xd9,0xdc,0xf1,0x10,0x4a,0x5b, +0xf4,0xc6,0x9e,0xaa,0x43,0xfd,0x5a,0x82,0x1b,0x94,0x9f,0x13, +0x81,0x41,0xc5,0x88,0xda,0xa0,0xa7,0xe6,0x96,0x5b,0x8e,0x8d, +0x5f,0x2b,0x77,0x0d,0x99,0xc1,0x63,0xb1,0xc6,0xd6,0x92,0xf9, +0xd5,0x57,0xf3,0x2f,0x22,0x3e,0x75,0x37,0x75,0x18,0x49,0x3c, +0x21,0x50,0xd6,0x77,0x74,0x69,0x70,0x16,0xda,0xa2,0xcd,0x65, +0x33,0x20,0x89,0xaa,0x57,0x09,0x2b,0x22,0xec,0xe6,0x9e,0x62, +0xe2,0xa0,0x6e,0xf9,0x8d,0x87,0x86,0x4b,0x77,0x93,0x57,0xae, +0xa8,0x96,0xbe,0x83,0xb6,0xf0,0x24,0x6c,0x3a,0x95,0xbb,0x10, +0xc9,0x61,0x1c,0x8c,0x91,0xc1,0x07,0xde,0x50,0x69,0xdb,0x12, +0xf2,0x87,0xa0,0x8a,0x9f,0x15,0x54,0xf1,0xfa,0x1f,0x88,0x3e, +0x9a,0xb6,0xe5,0xf5,0xef,0xbf,0xb3,0xd9,0xb1,0x57,0x55,0xbd, +0xf8,0xa1,0x56,0x2c,0xeb,0x8f,0x20,0x98,0xb6,0x76,0xe5,0x67, +0x37,0xb0,0x6f,0xd4,0x7f,0x62,0xe5,0x6b,0x85,0xb9,0x39,0x27, +0xb2,0x6d,0xfa,0x1c,0xdd,0xb9,0x9d,0x2a,0x42,0x69,0xa7,0xb6, +0xa8,0x84,0x12,0xd9,0xd0,0x1a,0x2e,0xa4,0xdb,0xe0,0x8f,0xbd, +0x97,0x4f,0xe1,0xad,0xc1,0xe5,0x29,0x36,0xcb,0x08,0xe8,0x4a, +0x72,0x33,0x2e,0x96,0xf1,0x16,0xf1,0xae,0xdc,0x1d,0x5b,0x04, +0x6a,0x47,0xdd,0xbd,0xca,0x5b,0x44,0xa1,0x39,0x7d,0xb7,0xc8, +0xaf,0x2d,0xef,0xb4,0x22,0x3a,0x60,0xd5,0x43,0xd0,0xe1,0x1d, +0x36,0x96,0x9a,0x9e,0xf1,0xf2,0xfc,0x8f,0x15,0x1c,0x4c,0x96, +0x50,0xfb,0xf7,0x08,0x0b,0x1b,0x02,0x6f,0x43,0xe7,0xfa,0x87, +0xa4,0x12,0xb7,0x75,0x6c,0xa7,0xcd,0xfe,0x22,0x86,0x61,0x5e, +0xc2,0x5b,0x8e,0x34,0x96,0xb8,0x11,0x5c,0x5f,0x01,0x1f,0x6b, +0x55,0x94,0x5c,0x21,0x4a,0x22,0xf9,0x43,0x3c,0x23,0x7f,0xfc, +0x29,0x44,0x50,0xc5,0x29,0x71,0x26,0x42,0xf2,0x26,0x80,0x30, +0x07,0x43,0x76,0x88,0xb6,0x0d,0xe4,0xc7,0x30,0xc4,0xb1,0xbc, +0x3a,0xa7,0xf8,0x78,0x99,0xbd,0xc0,0xe1,0xf6,0x2f,0xab,0xcc, +0x29,0x3a,0x5e,0x62,0xa6,0xa4,0x9a,0x18,0x29,0x7d,0xcb,0x2b, +0x73,0x0a,0x11,0x38,0x4b,0xae,0xf3,0x14,0x48,0x20,0xf5,0xb3, +0x61,0x0f,0x6d,0xd6,0x91,0xc0,0x79,0xdd,0x9d,0x9b,0x8f,0x23, +0xda,0x15,0x35,0x35,0x25,0x83,0xb6,0x7f,0x9b,0x64,0x46,0x24, +0x73,0x6b,0x94,0x9b,0x7e,0xf1,0x8a,0xe5,0xdc,0xe8,0x30,0xb9, +0xfb,0xf2,0x29,0xbd,0x47,0x5a,0x5d,0x7e,0xc7,0x21,0x14,0x4c, +0xcf,0xb8,0xc4,0x23,0xaa,0xd1,0xef,0xca,0x5d,0xe7,0x78,0x41, +0xdb,0x1e,0xd6,0xe2,0xe9,0x77,0xae,0x96,0x14,0x9e,0x29,0x32, +0xc3,0x66,0x08,0xc3,0x8a,0x04,0xdc,0xd8,0x6f,0x15,0x7e,0x16, +0x95,0x6f,0x90,0xfa,0xdb,0x51,0x54,0xb2,0x12,0x9b,0xac,0x51, +0xd1,0xab,0xcf,0x49,0x4e,0x1a,0xaf,0x35,0x28,0xb5,0xd2,0x77, +0xf9,0xb4,0x9e,0x1e,0xd4,0xe1,0x43,0x52,0x6a,0x39,0x35,0xe6, +0x3d,0xda,0xa9,0x29,0x39,0x7d,0xc9,0x2c,0x4c,0x18,0xba,0x72, +0x2e,0xc8,0xd2,0xe4,0x46,0x34,0x6d,0x77,0xfa,0x36,0xda,0x72, +0x2e,0x61,0x8a,0x40,0xdd,0xb2,0x85,0x57,0x1f,0x11,0xf8,0x95, +0x5a,0xc3,0xc9,0xb3,0x3a,0x1c,0x07,0x8b,0xae,0xa0,0x2d,0x9d, +0x09,0xeb,0xf3,0x2a,0x9c,0x50,0x67,0xde,0x23,0x7a,0x20,0x63, +0x34,0xe4,0x4c,0x79,0x79,0xf6,0x19,0x64,0x8c,0x96,0x9d,0x7f, +0x67,0xda,0xb4,0xd0,0x77,0xa6,0x3b,0x3b,0x80,0x8a,0x1a,0xb8, +0xc7,0xe1,0x81,0xba,0xe5,0x0f,0xfd,0x21,0x81,0xe1,0x52,0x05, +0x61,0x9b,0x98,0x2b,0xfb,0x8b,0xf0,0x68,0xb2,0x02,0x16,0x05, +0xc9,0x70,0x17,0xf6,0xd2,0x4e,0x79,0xc8,0x0e,0x18,0x8a,0xa0, +0xea,0xf8,0xde,0xc8,0x35,0x75,0x52,0x1f,0x27,0xa0,0x22,0x92, +0x01,0xa9,0x46,0x2e,0x36,0x42,0xaa,0x17,0xf2,0x38,0xf4,0xf1, +0x55,0x83,0x8b,0x1d,0x42,0x9d,0xd7,0x11,0x75,0xcb,0x53,0x5e, +0x91,0x43,0x20,0x27,0x80,0xbd,0xd3,0x03,0x42,0x61,0x30,0xc6, +0xde,0xb6,0x8a,0xfa,0x90,0x17,0xc0,0x14,0xb6,0xe8,0x8a,0xcc, +0xaf,0x7f,0x51,0x8d,0xf9,0xc1,0x08,0x6d,0x68,0xab,0x9b,0x44, +0xa2,0x0e,0xb3,0xf0,0x36,0x1c,0xa8,0x79,0x1a,0x51,0xa7,0xb1, +0x45,0xe5,0xb2,0xb8,0xc7,0xa8,0xbf,0x69,0x8b,0xdf,0x08,0x0c, +0xe2,0xe7,0x67,0xe2,0xf9,0x8e,0xd4,0x3c,0x1d,0x9f,0xfe,0x1a, +0x7f,0xfa,0x52,0x35,0xfa,0x47,0xb6,0x90,0xcd,0xc1,0xe0,0x28, +0xb4,0x1f,0xbf,0xd9,0x5e,0xda,0x41,0x72,0x1d,0x59,0xe7,0x7f, +0xb3,0x36,0xbc,0x1c,0x7e,0xe2,0x5e,0x6a,0x78,0xf8,0xf2,0x10, +0x8b,0x7f,0xe5,0x4c,0x1e,0x29,0x95,0x54,0x65,0x87,0x9f,0x5e, +0xfc,0x01,0xf7,0x52,0xdd,0xa1,0xb3,0x1a,0x21,0x4d,0x5f,0xfa, +0x51,0x41,0x41,0xd6,0xf1,0x32,0xe7,0x7d,0x52,0xd9,0xb9,0xf7, +0xe6,0xce,0x5d,0xb6,0x72,0xba,0xa1,0xdd,0x84,0x98,0x6e,0x24, +0x27,0x20,0x10,0xbc,0x9d,0xbd,0x20,0x77,0xdf,0x15,0xc5,0xb1, +0x10,0x86,0xd6,0x7f,0x4d,0x86,0xf3,0xe2,0xe0,0x57,0x70,0xa2, +0xca,0x0a,0xa2,0x16,0xcf,0xc5,0x20,0xf2,0x58,0x9e,0x99,0xba, +0xfd,0x42,0xb8,0x1b,0xc7,0x63,0xc2,0x1c,0x1e,0x01,0xef,0x4e, +0x49,0x16,0x31,0x61,0x0b,0x11,0x13,0x36,0x89,0x4e,0x8f,0xda, +0x81,0x42,0x77,0xb1,0x5b,0x77,0x1e,0x3c,0xcf,0x4d,0xf8,0x25, +0x73,0x43,0x70,0x38,0x9a,0x07,0x87,0x41,0x93,0xee,0x3a,0xc6, +0xa6,0xdb,0x82,0x43,0xf4,0x59,0xcf,0xa5,0x65,0xff,0x27,0x38, +0xec,0x17,0x3a,0xad,0xd7,0x00,0x1e,0x1c,0x2a,0x6a,0xd1,0xbc, +0xf2,0xe2,0xec,0xec,0xa3,0xb9,0x42,0x61,0x6e,0x57,0x02,0x93, +0x40,0x71,0x2c,0xb9,0xc8,0x2f,0x98,0x63,0x28,0x2e,0x22,0xfd, +0x4a,0x0c,0xb4,0xfc,0xcd,0x43,0xac,0xed,0xb6,0x0b,0x1e,0x38, +0x9b,0x79,0x6e,0xfb,0x05,0xf3,0x73,0x1c,0xe2,0xbb,0x2f,0x25, +0x8e,0x5f,0x39,0x2b,0x60,0xca,0x84,0xdb,0x38,0xd0,0x72,0xc1, +0x7c,0x97,0x36,0xfd,0x89,0x24,0x0e,0x0b,0x99,0xd9,0x7b,0x18, +0x42,0xbd,0xa9,0x7c,0x48,0x48,0xd9,0xeb,0x0b,0xb5,0xb6,0xf5, +0x0a,0xf9,0x15,0xf2,0xd5,0xc9,0x31,0x63,0x71,0x52,0x92,0xf5, +0x98,0x00,0x7d,0x6c,0xab,0x01,0x52,0xfc,0xe7,0x12,0xb1,0xe9, +0x47,0xff,0xfe,0xb1,0xe0,0x8c,0x1a,0x8b,0x5b,0x5a,0x83,0x0b, +0xb3,0xf3,0xd6,0xc3,0xee,0x32,0x85,0xb9,0xa0,0x28,0x45,0x8c, +0xac,0x7b,0xae,0x46,0x79,0x2d,0xf6,0x4f,0xa9,0xca,0x5a,0x61, +0xa2,0xac,0xd4,0xcf,0xe3,0xf7,0x78,0x8f,0x47,0xed,0x6b,0xfa, +0x51,0xc7,0x02,0xf2,0x3d,0x0a,0x53,0x7d,0x49,0xad,0x9d,0xc5, +0x58,0xce,0x7b,0x30,0x92,0x2a,0xfd,0x78,0xd3,0xf1,0x25,0x7a, +0x1f,0xaa,0x36,0x13,0x4c,0x84,0xaa,0x87,0x52,0xfd,0x4c,0x76, +0x58,0x2d,0x9f,0xfd,0x6d,0xe1,0xf5,0x9c,0x9c,0x1c,0x54,0xc9, +0x4d,0xca,0x40,0x9a,0x47,0x23,0x41,0xf3,0xf8,0x3d,0x3c,0x2d, +0x12,0x77,0x88,0x87,0xf3,0x7e,0xf3,0xc8,0xe9,0x8c,0x33,0x3b, +0x2e,0x98,0x59,0x70,0x95,0x3e,0x5b,0xe8,0x02,0x8f,0x9e,0x3c, +0x13,0xfa,0x0f,0xb7,0x67,0x4b,0xe1,0x30,0xb7,0x30,0x4d,0x02, +0x88,0xf2,0x37,0xe1,0xb9,0xbd,0xad,0x5e,0x9e,0xf5,0x4d,0x69, +0x55,0x5e,0x76,0x1e,0xb5,0xbb,0x8f,0x85,0x76,0xb9,0x14,0xc6, +0x51,0x97,0x43,0x04,0x49,0xa7,0xb3,0xfc,0xf0,0x97,0x43,0x27, +0x4f,0x83,0x7e,0x3c,0x26,0xaf,0xe8,0x56,0x7f,0x8b,0xb0,0x46, +0x9e,0xf0,0x86,0xbc,0x75,0xd8,0x90,0xe4,0xa1,0xaf,0x9e,0x12, +0x65,0x32,0xe6,0xf1,0x1e,0x6d,0xfb,0xd4,0x66,0x9b,0x1e,0xe2, +0xb2,0x9c,0xb5,0xe4,0xb8,0xee,0xa7,0x3e,0x95,0xcb,0x8e,0x7c, +0x78,0x2e,0xdb,0x42,0x3b,0x7e,0x41,0xe2,0xe5,0x89,0xeb,0xd7, +0x2c,0x5d,0x68,0x09,0xf9,0x70,0x59,0xd9,0x1a,0x6b,0x37,0x58, +0xdd,0x97,0xe8,0x5e,0xac,0x40,0xc5,0x91,0xc0,0xe2,0xa5,0xb3, +0x66,0xcd,0x0a,0x05,0x93,0xf3,0x2c,0x09,0x4c,0xb3,0xce,0x17, +0x17,0x17,0x67,0x31,0x93,0x73,0x5f,0x58,0xae,0xe5,0x91,0x51, +0xb0,0x41,0xe6,0x19,0xb6,0x20,0x7a,0x07,0xf5,0x5b,0xb9,0xec, +0xd0,0x87,0x27,0xcf,0x5a,0xce,0xaf,0x3b,0xe5,0x7f,0x80,0x76, +0x0c,0xe5,0x99,0xfa,0x87,0xaf,0x0b,0x5b,0x6a,0x79,0xfb,0xc3, +0x77,0xcb,0xd6,0x5b,0x07,0x70,0xb7,0x4d,0x27,0xfa,0x58,0x96, +0xa1,0x96,0x4b,0x4c,0x2a,0x0a,0x5b,0xb4,0x68,0x76,0x18,0x48, +0xce,0xd3,0x24,0x90,0x66,0x9f,0xca,0xcd,0x2d,0x3a,0xc5,0x24, +0xe7,0xfe,0xc0,0xfb,0xbf,0x42,0x32,0x16,0xb3,0xb5,0x99,0xd6, +0x4f,0xb8,0x69,0x55,0x1a,0x8b,0xf2,0x2d,0xe1,0x1f,0x3f,0xd3, +0xf2,0xa9,0xe9,0x27,0xe2,0xf5,0xaa,0x92,0x37,0xd5,0x77,0x09, +0x6b,0x26,0x0a,0x1f,0x5c,0xa9,0xe9,0x31,0x79,0x91,0x28,0xc6, +0x03,0x3f,0x31,0xc6,0x03,0x7d,0xa8,0xda,0x9f,0x3f,0xed,0x9b, +0x43,0x50,0x34,0x2c,0x14,0x21,0x9b,0x76,0x13,0xa0,0x40,0x04, +0xcc,0xbf,0xf2,0x80,0x39,0xd7,0x8e,0xa7,0x34,0x43,0x6c,0xa6, +0x7e,0x8f,0xfb,0xe0,0xe0,0xa7,0xb2,0x9e,0x71,0xd2,0xf4,0xf5, +0xeb,0x97,0x87,0x5a,0x7c,0xef,0x50,0xcb,0x37,0x18,0x74,0x58, +0xa9,0xd5,0x9d,0x68,0x19,0x70,0x59,0x45,0x45,0x2c,0x6a,0x07, +0xe4,0x20,0x0f,0x2e,0x0a,0x2c,0x07,0xc7,0x6d,0x96,0x07,0x85, +0xce,0x87,0x37,0x7b,0x59,0x8b,0xe7,0xd7,0x14,0xe4,0x9f,0x3f, +0x95,0xc5,0xe3,0xf5,0xb4,0x34,0x1e,0x4d,0xc4,0x9b,0x99,0x33, +0x34,0x2a,0xc9,0x37,0xd5,0x4f,0x61,0x43,0x55,0xb6,0x1e,0x16, +0xdd,0x61,0x07,0x05,0x79,0xfc,0x01,0x33,0x4b,0xff,0xa4,0xfe, +0x96,0xfe,0xbf,0xbd,0x71,0x57,0x1d,0x57,0xe3,0x8e,0x49,0xda, +0x6e,0x08,0x76,0x27,0x4e,0xb4,0xed,0x74,0x42,0x55,0x6f,0x52, +0x32,0xa7,0xcc,0x68,0xa2,0xda,0x58,0x18,0xa0,0x1a,0x03,0x85, +0x5e,0xcc,0x47,0xe0,0x4f,0x8d,0xf5,0x39,0x31,0xf7,0x78,0x65, +0x85,0x3d,0xf0,0xb3,0x50,0x2e,0x13,0x69,0xd4,0xee,0x34,0xf2, +0x3f,0x29,0xb4,0xc4,0x73,0xba,0xfb,0xda,0x97,0x0e,0xdc,0xb8, +0x66,0x63,0x3d,0xa6,0xbc,0x1e,0xeb,0x5f,0xbc,0xab,0x6f,0x79, +0x1d,0x4e,0xf8,0x51,0xe5,0x12,0x0f,0x27,0x54,0x1f,0xec,0x9d, +0x10,0x29,0x7d,0xa1,0xe4,0xf8,0x65,0xec,0x9f,0xd4,0x89,0x44, +0x40,0xa6,0xcb,0x31,0xa5,0xdc,0xde,0x36,0x8e,0xda,0x1f,0x56, +0x4c,0x65,0x2b,0x7c,0xeb,0xb4,0xe3,0xb2,0xbe,0x1b,0xb9,0x82, +0x8b,0xc5,0x8b,0x38,0xf6,0x50,0xd2,0x97,0xb3,0x7b,0x6a,0x7a, +0x6a,0x26,0x7a,0x72,0xbe,0x60,0x76,0xbc,0x5c,0x06,0xe3,0x59, +0xcb,0xcd,0xe9,0x62,0xd6,0x62,0x63,0x44,0xfc,0x4e,0xd3,0x91, +0xec,0xcc,0xdc,0x22,0xcb,0x85,0xd1,0xcb,0xe4,0x9e,0x93,0xfd, +0x60,0x78,0x67,0xeb,0x95,0x99,0xdf,0x54,0x54,0x17,0x5c,0x28, +0x36,0xb3,0x3a,0x98,0x0b,0x63,0x08,0xb3,0x1f,0x0d,0xbc,0xf2, +0xbc,0xc9,0x6f,0xce,0x88,0xdb,0x4e,0xa7,0x9f,0xcd,0xb5,0x1c, +0xf3,0x5e,0x2f,0x4f,0x58,0x3e,0xaf,0x47,0x90,0xd5,0xb5,0x96, +0x76,0xec,0x45,0x72,0x2d,0x47,0xbc,0x37,0xc8,0xde,0x0b,0x67, +0x00,0xf5,0xb0,0x16,0xce,0xf8,0x24,0xb7,0xe8,0xec,0xe9,0x33, +0xbc,0xb0,0x45,0xa4,0x1b,0x67,0x66,0x3d,0xa0,0xc9,0xed,0x4b, +0xc5,0x67,0x4f,0x9f,0x35,0x67,0xa6,0x60,0xf1,0xb3,0xee,0x5d, +0xd1,0x73,0xee,0xf8,0x3d,0x8e,0x4b,0xe0,0x0c,0x0a,0x35,0x37, +0x27,0xfa,0x64,0x50,0xa9,0x93,0x46,0x68,0xeb,0xae,0x04,0x1c, +0xd5,0x88,0xe7,0x3c,0x28,0x0a,0x11,0xb2,0x8c,0x9d,0x20,0x12, +0x06,0x73,0x93,0x3d,0x87,0xfb,0x35,0xf7,0x5f,0xbf,0xa0,0xf8, +0x2b,0x8e,0xaf,0xc5,0x4a,0x52,0x02,0xeb,0x6b,0xc8,0x77,0xb0, +0x8c,0xbe,0x79,0xc2,0xf6,0xb2,0x76,0x11,0xea,0x9a,0x84,0xc4, +0xf2,0x38,0x43,0x38,0xaf,0xfd,0x17,0x24,0x6e,0x90,0x93,0xb6, +0x62,0xbb,0x0a,0xdd,0x98,0xca,0xba,0x49,0x0e,0x2f,0x16,0x62, +0xe9,0x05,0xc3,0xca,0x69,0x6c,0xe5,0xe2,0xfb,0x58,0x1f,0xd7, +0xc6,0x50,0x65,0x11,0x0e,0x42,0x7f,0x4b,0x30,0x61,0xb4,0x1e, +0x2c,0xeb,0x3d,0xb5,0x09,0x46,0xa2,0x65,0x36,0xd1,0xfa,0xd9, +0x51,0xcb,0x5f,0x04,0xd7,0x69,0xc5,0xdc,0xc7,0xf7,0xd8,0x82, +0xf7,0x36,0x28,0x35,0x37,0x99,0xe8,0x21,0x0c,0xa8,0xdd,0x4e, +0x1c,0xa8,0xbc,0x52,0x06,0x5e,0xcc,0x6e,0x53,0x3a,0x6d,0x19, +0x4c,0xce,0x65,0x64,0x17,0x58,0xb2,0x3c,0xc3,0xe4,0x01,0x53, +0x83,0x61,0x58,0x2f,0xeb,0xe5,0x99,0xdf,0x96,0x57,0xe5,0xe5, +0x14,0x98,0xdf,0x81,0x7a,0x1c,0x8c,0x0c,0x30,0x10,0xab,0x1f, +0xe6,0x64,0xe4,0x6e,0xbf,0x2c,0x36,0x8a,0x08,0xc8,0x6a,0x75, +0x61,0xfe,0x69,0x01,0x59,0x4d,0x41,0xc8,0xaa,0xa2,0xdb,0x13, +0xb8,0x4e,0xdb,0x97,0x22,0x7d,0xbe,0x25,0x0f,0x16,0xb6,0x4a, +0xf3,0xc2,0xb1,0xdf,0x9c,0x78,0x6d,0xca,0x3f,0xb4,0x53,0x1c, +0xd1,0x87,0xc9,0x6c,0x39,0xb5,0xde,0x26,0xb4,0x69,0x01,0xd1, +0xbb,0xab,0x23,0xa3,0xba,0x6f,0x71,0x8d,0xb7,0xbf,0x23,0xff, +0x99,0x76,0xb3,0xf0,0xa6,0x25,0x9f,0xba,0x6c,0x23,0xf3,0x2c, +0x93,0x6e,0xce,0xa1,0xf6,0xab,0x10,0x1c,0x8f,0x2a,0xe9,0xc7, +0xc4,0xdc,0x18,0x8b,0x51,0x2f,0x97,0x9d,0xb8,0x8b,0x24,0xf8, +0xd2,0x15,0x53,0xa7,0x4c,0x17,0x24,0xf8,0xb1,0xd3,0x4e,0x5c, +0x71,0xe6,0xa5,0xe0,0xcc,0xf3,0xa2,0x4d,0xdf,0x25,0x9f,0xc8, +0x7f,0xa7,0xdf,0x12,0xf9,0xb8,0x1e,0x23,0x1b,0x56,0x2d,0xe5, +0x59,0xdd,0x9a,0xf3,0x2f,0x51,0x1e,0xf7,0x83,0xfe,0x46,0xf4, +0x60,0xcc,0xab,0x5c,0x50,0xe5,0x6b,0xcb,0x79,0x5e,0x53,0x57, +0x78,0x23,0x55,0x7e,0x2a,0xe6,0xf5,0x5a,0x9d,0xa3,0x3f,0xef, +0xd1,0xa0,0x39,0x73,0x8b,0xdd,0x13,0x41,0x5d,0x9e,0x13,0xc8, +0xf4,0x7b,0x18,0x27,0x77,0x5a,0x35,0x69,0x2c,0x6a,0x7f,0x44, +0xef,0xb1,0x4d,0xd9,0xe3,0xda,0x8b,0x7c,0xda,0x29,0x84,0x80, +0xba,0x64,0x22,0xb5,0xaf,0x25,0x1f,0x95,0x9b,0x8d,0xd5,0x1c, +0xff,0xe6,0x34,0xc0,0xc8,0xa9,0x4b,0x6c,0x66,0x84,0x10,0x83, +0x14,0x39,0x75,0xfc,0x37,0xa7,0x9d,0x51,0xd1,0xb6,0x9c,0x0a, +0x44,0x4e,0xed,0x50,0x3b,0x44,0xac,0x76,0xfa,0x38,0xa7,0xf4, +0x23,0x14,0x95,0x49,0xc1,0xfc,0xea,0x67,0x10,0x23,0xab,0x66, +0xac,0x33,0x4a,0x48,0x46,0xc6,0x18,0x0b,0x56,0x0e,0x17,0xe1, +0xe6,0x9c,0x7d,0xac,0x51,0x15,0xa4,0xf9,0x7f,0x1a,0x63,0xcb, +0x79,0x0c,0xea,0x93,0xe0,0x90,0xbe,0x2d,0xe7,0xb4,0xe2,0x6a, +0xcb,0xfb,0x0f,0xaa,0x20,0xc5,0x9f,0x35,0x8e,0x92,0xa1,0x5d, +0xc8,0x84,0xce,0xfc,0x1a,0x25,0x73,0x71,0x45,0x95,0xa6,0x11, +0x91,0xfb,0x40,0x23,0xf7,0x2e,0x46,0xee,0xf0,0x98,0x1c,0x2a, +0xca,0x28,0xab,0xb1,0xec,0x65,0x8d,0xaa,0x21,0xcd,0x4f,0x64, +0x8d,0x13,0x4e,0x63,0x7e,0xfe,0x7f,0xb3,0xae,0xe1,0x59,0x57, +0x43,0x8a,0x9f,0xc8,0xfa,0x4d,0xcc,0xda,0xde,0xc8,0xba,0x0c, +0xb3,0xa6,0xf6,0x07,0x89,0x90,0xc3,0xec,0xc0,0xcb,0x72,0x27, +0x38,0x91,0x83,0x85,0x99,0x25,0xd7,0x2d,0xa9,0xcc,0xae,0x0a, +0x32,0xfd,0x1f,0x26,0xca,0x5d,0x57,0xfb,0x7a,0x0d,0xb3,0x8e, +0xfe,0x1e,0xb3,0x8d,0xa2,0x9d,0x66,0x91,0x4f,0xab,0x20,0xc3, +0x1f,0x49,0xfb,0xd0,0x72,0x09,0xed,0xd8,0x96,0xf0,0xf2,0x4c, +0x10,0xab,0x08,0x77,0x52,0x2b,0x23,0x19,0xa5,0x37,0xf8,0x3d, +0x09,0x39,0x96,0xcf,0x62,0x65,0x97,0x55,0xaf,0xe5,0x58,0x76, +0x88,0x82,0xe4,0x45,0x72,0xa0,0x20,0xbd,0x84,0x17,0x89,0x4d, +0x8e,0x05,0xef,0xc9,0x90,0x63,0x29,0x9d,0x7b,0xf5,0xe3,0x0b, +0xe2,0x71,0xa9,0xdb,0x61,0x92,0xcf,0x9f,0xd5,0xd5,0x78,0x94, +0x57,0x77,0xc8,0x21,0x7e,0x53,0x55,0x96,0x74,0xd6,0xe8,0x3a, +0xa4,0x05,0x7c,0x16,0x4f,0x1d,0xec,0x48,0xa5,0x25,0xf3,0xc1, +0x75,0x48,0x09,0x60,0x4d,0xb6,0xc8,0xd0,0x6a,0xc9,0xc4,0xce, +0xf0,0x86,0xb5,0x64,0xde,0x95,0x1b,0x42,0xea,0xe7,0xd5,0x03, +0x7c,0x32,0x9b,0x46,0x18,0xb2,0x19,0xab,0xd5,0x2d,0x0d,0xd8, +0xa9,0x0e,0xe4,0x94,0x10,0x54,0x53,0x51,0x50,0x0d,0x39,0x7d, +0x19,0xb5,0xec,0x9e,0x8d,0xd3,0x87,0xba,0x68,0xc9,0x11,0xd1, +0x28,0x11,0xe1,0xd2,0x07,0x25,0x22,0xae,0x15,0x5c,0x3a,0x75, +0x91,0xb6,0x72,0x21,0x3c,0x96,0x33,0xd4,0x21,0x42,0xaa,0x21, +0x44,0x82,0x73,0x50,0x47,0xd5,0x69,0x42,0xcc,0xe0,0x82,0x4d, +0xcb,0x91,0x4a,0xc3,0x08,0x37,0x6e,0xf8,0xd2,0xcf,0xa5,0x9f, +0x2f,0xb4,0x9c,0x1c,0xb3,0x4a,0x7e,0x6b,0xf9,0xec,0x9e,0x13, +0xad,0xae,0x5f,0xf0,0x1e,0x85,0xba,0x35,0x22,0x05,0x96,0xe3, +0x63,0xd6,0xc8,0x43,0x17,0x04,0x83,0x65,0x30,0x0e,0x20,0x14, +0x97,0xe4,0x9c,0xce,0x31,0xa7,0xed,0xb6,0x39,0xd5,0x2d,0x71, +0x7c,0x34,0xe7,0x4c,0x76,0xfa,0xee,0x34,0x43,0x92,0xd5,0xce, +0xb1,0xb8,0x1c,0x3a,0xfe,0x19,0x91,0x6e,0xd3,0xb8,0x35,0x2f, +0x26,0xfa,0x54,0x50,0xd4,0x98,0x1f,0xd9,0x46,0xee,0xa2,0x72, +0x9b,0x16,0xd9,0x1f,0x36,0x42,0x17,0x6e,0xd3,0xe6,0x12,0x7e, +0x7a,0x09,0x9e,0x6e,0xae,0xc6,0xfc,0xcc,0x4f,0xcf,0x12,0xa7, +0xfb,0xf2,0xd3,0x3d,0x25,0xdb,0x76,0x60,0x07,0x15,0x42,0xfc, +0x58,0x88,0xa4,0x47,0xc1,0x3e,0xbc,0x7b,0x15,0x42,0xfd,0xc4, +0x9a,0x48,0xfe,0x51,0xc1,0x31,0x39,0x78,0xe3,0xc0,0x32,0xd6, +0x4b,0xa6,0xb2,0x2b,0xa1,0xf6,0x3c,0x4e,0xaf,0xfa,0x5a,0x72, +0x87,0x9b,0x54,0xee,0x40,0x5e,0xdd,0x23,0x9a,0x0c,0x4d,0xf6, +0x2f,0x65,0x3d,0x65,0xda,0x0c,0x78,0x64,0x1c,0xc3,0x4f,0x3f, +0xe2,0xa7,0xeb,0x68,0xf3,0xb3,0x04,0x4e,0x08,0xd4,0x7f,0x10, +0x29,0x15,0xb1,0xc3,0xe0,0xe5,0xd3,0x7b,0x8e,0xb6,0xba,0xfe, +0x20,0xe6,0x75,0xa3,0xc4,0x74,0x0e,0x8e,0x67,0xe4,0x14,0x0b, +0xa5,0xc6,0xbe,0xf3,0xfd,0xc1,0xdc,0x1b,0x01,0xfd,0xe5,0xc5, +0x17,0xcf,0x5c,0x14,0x8a,0x8a,0xe9,0x06,0x5e,0xe9,0xde,0x95, +0xe2,0xbc,0x33,0xb9,0xe9,0x29,0x22,0x01,0xb9,0xcd,0x88,0xff, +0x47,0x1f,0x8c,0x3b,0xee,0x54,0x89,0x31,0x3c,0xf6,0xa1,0x54, +0xbd,0xc8,0x8d,0x59,0x1f,0x24,0x40,0x18,0xa3,0xd9,0x42,0x0d, +0xc1,0x36,0x7a,0x8d,0xe9,0x87,0x54,0xc4,0x26,0xc3,0xde,0x57, +0x5b,0xc9,0x21,0x43,0x5e,0xd3,0x06,0x04,0x79,0xfc,0x3b,0xfb, +0x93,0xa8,0x91,0x99,0x9b,0x8d,0x39,0xa8,0xc4,0x9d,0x28,0xb1, +0xe9,0xb6,0x3c,0xb8,0xe7,0x00,0xab,0xcb,0x3f,0xb4,0xe5,0x49, +0xc2,0xef,0xf3,0x52,0x7a,0xc1,0x55,0xcb,0x39,0xa1,0xb0,0x39, +0x16,0xde,0xc4,0xb8,0x79,0xfa,0x9d,0xaa,0x92,0xe2,0x33,0x25, +0xe6,0xd4,0xd4,0x74,0x63,0x00,0xa7,0x9f,0xe3,0x83,0x9b,0x86, +0xc2,0x66,0x7a,0x52,0x6a,0x1c,0xeb,0x02,0x6e,0x86,0xc2,0x66, +0x05,0x9c,0x08,0x92,0xd9,0x7c,0x08,0x52,0x37,0xec,0x8e,0x4d, +0xda,0x18,0xb9,0x29,0xda,0x31,0x61,0xc7,0xd1,0xa3,0x19,0x54, +0x0e,0x20,0x67,0xc5,0x9a,0x87,0x47,0x67,0x4a,0xcf,0xbe,0x9f, +0xfa,0x41,0xf2,0x7e,0xda,0xaa,0x09,0x2f,0xe3,0x57,0x04,0x66, +0x50,0xf3,0x00,0x1e,0x8b,0xf9,0x91,0x01,0x02,0x41,0xfd,0x62, +0xb5,0xe8,0xfa,0x1f,0x60,0xd7,0xff,0x1c,0xe2,0x85,0x88,0x63, +0x22,0x61,0x4d,0xc4,0x33,0xd3,0xf6,0x83,0xc9,0xe6,0xed,0x11, +0xd4,0x75,0x1c,0xc1,0x32,0xa4,0xae,0xe9,0x84,0x17,0x9b,0x13, +0x2f,0xb6,0x92,0xbc,0x33,0x79,0x69,0xbb,0x6c,0x13,0x61,0x0e, +0x86,0x6a,0x42,0x24,0x75,0x0d,0x46,0x39,0x92,0xa1,0xcb,0x67, +0xf4,0x1c,0x63,0x75,0xf9,0x8e,0x47,0xcc,0xdb,0x36,0x53,0xab, +0x1f,0x29,0xce,0xfd,0xaf,0x3e,0xa6,0xd9,0xf1,0xde,0xe5,0x62, +0xea,0xea,0x40,0x50,0x11,0x53,0x08,0xff,0xa2,0x8a,0xc2,0xa0, +0x30,0x7c,0x85,0x2e,0xfc,0x15,0x6e,0xc6,0x57,0x18,0x8d,0x42, +0x6c,0x86,0x72,0x03,0x8f,0x06,0x65,0x77,0xbc,0xbc,0x50,0x6e, +0x28,0x2f,0xb9,0xc4,0x5f,0x61,0x6a,0xc3,0x2b,0x6c,0x8f,0x0a, +0x0e,0x78,0x2f,0x28,0xdc,0x8c,0xe8,0xed,0x56,0x0d,0x0a,0x0e, +0x9b,0xb7,0x45,0x44,0x45,0x8a,0xe5,0xf8,0x18,0xcb,0x5f,0xb6, +0xc5,0xf2,0xd3,0x7a,0x0e,0xb7,0xba,0x3e,0x15,0x17,0x11,0xb2, +0x9b,0x17,0x50,0x76,0x93,0x5f,0x9f,0x5a,0x3d,0xc9,0xfd,0xeb, +0xa5,0xf9,0xa7,0x51,0xad,0xc1,0x6c,0xa8,0x35,0x44,0xe1,0xf3, +0xf0,0x8b,0x0f,0x0d,0x6b,0x78,0x9e,0x88,0x6d,0x11,0xf8,0x3c, +0x25,0x79,0xa7,0xf3,0xb4,0x5b,0x44,0x3c,0x49,0x89,0x78,0x12, +0x63,0xe6,0x8f,0x57,0x9f,0x82,0xec,0xec,0x8f,0x2e,0x88,0x59, +0x9e,0xe6,0x38,0xcb,0xf3,0xdc,0x98,0xe4,0xb1,0xcd,0xfc,0x5d, +0xb2,0xe4,0x7b,0x87,0xc8,0x6f,0xad,0x9a,0xe9,0x1b,0x60,0xf5, +0xf9,0xd8,0x10,0xb8,0xc6,0x99,0xbf,0x73,0x69,0x59,0x97,0x2c, +0x17,0xf9,0x29,0xf7,0xd0,0xe9,0x3d,0x06,0x72,0x5b,0x5f,0x56, +0x92,0x9d,0x83,0x33,0x7f,0xca,0x43,0xa2,0xef,0xad,0x63,0xaa, +0xd8,0xf3,0x0e,0xd5,0x6c,0x9c,0x3e,0x99,0xb0,0xb6,0x9b,0x33, +0x22,0x76,0x6c,0x8a,0x32,0x6f,0x8a,0x66,0x29,0x42,0x73,0x72, +0xad,0xfa,0x50,0xcb,0x1b,0x05,0x7e,0x42,0xd0,0xb3,0x83,0x10, +0xf4,0xec,0x80,0x82,0x9e,0xee,0xdc,0x0a,0xa5,0xa3,0xa0,0xe7, +0x16,0xda,0x22,0x9c,0xec,0x10,0xbc,0x46,0x43,0xcb,0x33,0xaf, +0xc4,0xc2,0x7c,0x6b,0xf4,0xa9,0xbe,0xdc,0xc5,0x4f,0xea,0x16, +0xec,0x0f,0xfd,0x68,0x8b,0xbf,0xd1,0x3f,0x40,0xe9,0x4e,0x36, +0x9f,0x39,0x41,0xc8,0x7d,0x5b,0xe0,0x82,0x12,0x9e,0x3c,0x58, +0x98,0xc3,0x96,0x1a,0x1a,0x09,0xb9,0xb4,0xd3,0x0a,0x82,0x71, +0x02,0x6b,0x8c,0x8b,0x58,0x51,0x19,0xe1,0x92,0xf9,0x75,0xbc, +0x90,0x30,0x0c,0x95,0x11,0x78,0xbc,0x50,0xd5,0xaf,0x3e,0x8e, +0xa0,0xd8,0xe7,0x41,0x21,0x0e,0x7a,0x94,0xaa,0x35,0x44,0xe9, +0x42,0xa8,0xdd,0x09,0xde,0xe8,0x3f,0xd5,0x36,0xcb,0xf0,0x6b, +0x24,0x95,0x96,0xf0,0x2a,0xe6,0xf8,0x90,0x9c,0x7b,0x15,0x43, +0x22,0x78,0xbc,0x14,0x69,0xc8,0x59,0xc7,0x80,0x3d,0x77,0x9c, +0xc6,0x34,0xc8,0x59,0x57,0x1b,0x8a,0x26,0x1d,0xd2,0x88,0xe1, +0x69,0x4b,0x13,0xa0,0x4c,0x78,0xda,0xcf,0xc6,0x4b,0x2c,0x87, +0x47,0xf8,0xd1,0xb1,0xfc,0xa9,0x0e,0x51,0xd7,0xa9,0xa4,0x04, +0xe5,0x9b,0x0b,0x4e,0x16,0x52,0xfb,0x77,0x08,0x74,0x14,0xaa, +0x09,0xed,0x85,0x18,0x53,0xb4,0x99,0xb7,0x67,0xb7,0x5a,0x02, +0xc7,0x29,0xd1,0x08,0x7c,0x4b,0xdb,0x7e,0x47,0xd0,0x03,0xd6, +0x1f,0x65,0x0a,0x58,0xf8,0x7f,0x5b,0xc1,0xef,0x50,0x20,0xa4, +0x49,0x6d,0x73,0xad,0x1f,0x6b,0x43,0x68,0x87,0x20,0xc2,0x2e, +0x46,0xaa,0xdb,0xfb,0x44,0x78,0xae,0x9f,0x70,0x3b,0xca,0xf1, +0xd0,0xbd,0x7d,0x9f,0xfe,0x6a,0xb9,0x03,0x9b,0x83,0xd8,0x60, +0x99,0xb5,0x83,0xda,0x57,0x03,0x09,0xf3,0xf2,0x86,0xf1,0xd4, +0xee,0x02,0xb1,0xad,0xcd,0x6d,0x98,0x3a,0xfd,0x58,0xf3,0xa4, +0xea,0x33,0x6e,0x3f,0xdc,0xc9,0x3b,0x62,0xd8,0x67,0x39,0x6d, +0xce,0x3d,0xa2,0x47,0xb4,0xc3,0x3f,0x44,0x88,0x23,0xc0,0x3e, +0xe8,0xa3,0x2f,0x27,0x2f,0xd6,0xd2,0xa6,0x43,0x89,0xee,0x0a, +0xcf,0x69,0xeb,0xb1,0x44,0x19,0x47,0xf4,0xd2,0xfb,0x92,0xbe, +0x52,0x3b,0xa3,0x06,0x74,0x01,0xe5,0xa9,0x3f,0x5c,0x65,0xb1, +0x12,0x2b,0x65,0x15,0xaa,0x7f,0x17,0x20,0x4f,0x03,0xf8,0xe7, +0x18,0x09,0xb4,0x32,0x15,0x94,0x67,0x4c,0x91,0x58,0x89,0x9b, +0x0a,0xe4,0x19,0x23,0x12,0xec,0xd5,0xdb,0x71,0x1f,0xad,0x11, +0xee,0x8b,0xc2,0x55,0xa8,0x7e,0x2b,0x5e,0xbf,0x88,0xdf,0x59, +0x18,0x6d,0xd7,0x06,0x07,0x45,0x27,0x10,0x90,0x43,0x03,0xa1, +0x39,0x34,0xb7,0xc6,0xe5,0xd1,0xf6,0xc9,0xe4,0xcf,0xba,0x17, +0xf6,0x84,0x76,0x48,0x25,0xc6,0xba,0x72,0x1c,0xd4,0x4b,0x14, +0x32,0x1f,0xf2,0x57,0x04,0x5a,0xf1,0x2f,0x99,0x22,0x82,0x86, +0xc7,0xf5,0x74,0x8a,0xfe,0x9d,0xb6,0x0f,0x21,0x35,0xb7,0xf2, +0x4b,0xa8,0x49,0x25,0xbb,0xe3,0x59,0x7b,0xe8,0xe1,0x58,0x5e, +0xc8,0x9b,0x8b,0x28,0x68,0xea,0x36,0x89,0x1c,0x2a,0x48,0xe7, +0x4e,0x40,0xd6,0xd8,0xe5,0x32,0x34,0x0b,0xf1,0x83,0x66,0xd0, +0x86,0xff,0xfc,0x95,0x1b,0x89,0xfe,0x93,0x6d,0x62,0xef,0x40, +0x45,0x00,0x8b,0xea,0x0c,0x9b,0x61,0x04,0x84,0x91,0x4b,0x4b, +0x6a,0x3e,0xce,0x2f,0x13,0x39,0xc5,0xf1,0x9c,0x7a,0xbd,0xce, +0x69,0x7b,0x64,0x83,0x3a,0xa7,0xa1,0x7e,0x35,0x4e,0xe8,0x67, +0x05,0xf3,0x1b,0x6e,0x6a,0x8d,0xcb,0xb5,0x49,0x8e,0x44,0xfe, +0xc8,0x36,0xb3,0x39,0x50,0x11,0xc8,0xa2,0xfb,0x43,0x04,0xf4, +0x36,0x34,0x70,0x52,0x85,0x06,0xce,0xa5,0xc5,0x42,0xa5,0xa1, +0xd0,0x8c,0x42,0x0c,0xdc,0x4a,0x51,0xe8,0xe0,0x58,0x86,0x99, +0x53,0x07,0x57,0x02,0x2e,0xdf,0x50,0xe9,0x5b,0x31,0x22,0xa5, +0x0f,0x67,0x92,0x90,0x5a,0xb5,0xcd,0xe3,0x27,0xee,0xe4,0x65, +0x37,0x40,0xfa,0x7b,0xf7,0x93,0xb4,0xcf,0x33,0xe3,0x2b,0x1d, +0x57,0x6c,0x0d,0x4b,0x7c,0x27,0xd1,0xfe,0xfd,0x9a,0x8c,0x8f, +0xbf,0xb0,0xd4,0xc2,0x7b,0x81,0xac,0x47,0x94,0xbc,0x7d,0x70, +0xd4,0xb8,0x8d,0xbe,0x13,0x12,0xc6,0x24,0x8e,0x4e,0xb2,0xff, +0xf0,0xf6,0xbe,0xcf,0x1f,0x59,0x6e,0xc2,0x4a,0x7e,0x2a,0x42, +0xde,0x3e,0x68,0xa3,0xe7,0x9a,0x89,0xf6,0xc9,0x33,0x66,0x6c, +0x9b,0xe9,0x94,0xe2,0x8b,0xd0,0x1e,0x47,0x5e,0xe7,0xd3,0x79, +0x00,0xd0,0x9c,0xe1,0xc6,0x95,0x37,0xbd,0xc9,0x18,0x75,0x0d, +0x2c,0x21,0xec,0x9d,0x7a,0x1e,0xf1,0xbc,0x8a,0xe5,0xdd,0x07, +0x74,0x51,0xa7,0xad,0x5f,0xb5,0x6c,0xae,0x65,0xcc,0x17,0x33, +0x05,0x21,0xb3,0xe4,0x1e,0xf7,0xfe,0xc6,0x10,0x99,0x75,0x82, +0xe1,0xaa,0xd0,0x38,0xba,0x72,0xa5,0xec,0x44,0xad,0xb3,0x50, +0x3e,0x9a,0x32,0x05,0x95,0x8f,0x58,0x6e,0x2f,0x8c,0x53,0xd9, +0x63,0xa4,0x99,0x48,0xfa,0x0b,0xf6,0x0a,0x12,0x09,0x30,0xf5, +0xc1,0x63,0x3d,0x5d,0x04,0x52,0x1f,0xf2,0xd4,0x70,0x76,0x1b, +0x9a,0x12,0x36,0x91,0x9b,0xaa,0x2b,0xa5,0x30,0x96,0x07,0x51, +0x19,0x42,0x85,0x62,0x63,0xa4,0x30,0x04,0x99,0xbc,0x87,0x14, +0x41,0xd4,0x14,0x3f,0x18,0xea,0x66,0xbd,0x3c,0xeb,0x9b,0x8a, +0x2a,0x11,0x44,0x7d,0x07,0x93,0x75,0xf6,0xba,0x4c,0x16,0xf2, +0xb8,0x3a,0xf6,0xaa,0x7e,0x93,0xb0,0x61,0xaf,0xac,0x04,0xb2, +0x90,0x0f,0x3c,0x88,0xf5,0xad,0xe4,0x7d,0xfd,0xa9,0x7a,0x6f, +0x31,0x7f,0x2e,0x42,0x02,0x35,0x2d,0x7d,0x4f,0x32,0x77,0x24, +0x02,0xb9,0xf3,0x78,0xad,0x04,0xfc,0x58,0x6f,0xc4,0xd6,0x6d, +0x42,0xbb,0x63,0x60,0xeb,0x0a,0x69,0xab,0x00,0xc2,0x26,0xc7, +0xca,0x60,0x1f,0x84,0xd8,0xbd,0xd6,0x56,0x5c,0x93,0x76,0xfd, +0x72,0xce,0x15,0xb3,0xc2,0x4d,0x55,0x66,0x52,0x46,0x9c,0xf1, +0x63,0x84,0xcc,0xf6,0x6a,0x60,0xde,0x09,0xa3,0x95,0xbf,0xa7, +0x80,0xb6,0x5c,0x81,0xc4,0x3e,0xfb,0xc9,0x5e,0x30,0x88,0x57, +0x49,0xfe,0xd3,0x3b,0x95,0xe2,0xa7,0xd4,0xf1,0x0b,0x02,0x47, +0x79,0x09,0x3b,0x50,0xeb,0x30,0xa2,0xbc,0x24,0xb8,0xb5,0xda, +0x89,0xad,0x1e,0xad,0x27,0xdc,0x67,0xa1,0xcc,0x49,0x82,0xf3, +0xdd,0x04,0xa2,0xfe,0x5f,0x63,0x59,0x4a,0x5b,0x3d,0x23,0xec, +0x67,0x21,0xce,0x5b,0xc5,0xef,0x7b,0x1f,0x4e,0x42,0xf8,0x43, +0x07,0xda,0x32,0x9d,0x08,0x25,0xab,0xa8,0x84,0x1d,0xd4,0x35, +0x92,0x74,0xa5,0x1d,0xdf,0x6c,0x58,0xf8,0x33,0x1c,0x56,0x4c, +0x63,0x2b,0x66,0xd4,0x69,0x1f,0x62,0xc0,0x7a,0x98,0x4a,0x3c, +0xbc,0x7a,0xb1,0x0e,0x07,0x7d,0x78,0x85,0x12,0x5b,0x39,0x9e, +0x32,0x17,0xd7,0x5a,0x6d,0x81,0xac,0x67,0x41,0x1e,0x35,0xbf, +0x4d,0xd8,0xe7,0x31,0x2a,0x73,0x60,0x2e,0x80,0x52,0xb9,0x0e, +0x4b,0xc8,0xf7,0x32,0x93,0x33,0xbe,0xa8,0x7a,0x6c,0xf9,0xab, +0x7b,0x8d,0x58,0x79,0xe9,0xdb,0xb1,0xe7,0x17,0xfe,0x82,0x7e, +0x0f,0x6f,0x09,0x42,0x9b,0xfe,0x2e,0x3b,0xab,0xee,0x93,0x6f, +0xdc,0xc8,0xfd,0x89,0xb6,0x9a,0x4c,0x16,0xf7,0xee,0xe3,0x73, +0xe1,0x86,0x55,0x8c,0xab,0x40,0x33,0xdd,0x4f,0xfd,0x58,0x66, +0xfd,0x53,0xab,0xaf,0xd5,0x58,0xf2,0xd6,0x64,0xd1,0x8e,0x27, +0xc8,0x3a,0x1c,0x59,0xf1,0xad,0x09,0x66,0xfd,0xe3,0xac,0x13, +0x50,0x1d,0x58,0xff,0x8e,0x2d,0x56,0x4b,0x8a,0xb2,0x98,0xc9, +0x5a,0x88,0x4b,0xad,0x96,0xce,0x9c,0x35,0x7b,0x29,0x98,0x9c, +0xe7,0x48,0x60,0x9a,0x9d,0x55,0xec,0xac,0x68,0x7f,0xbd,0xd8, +0x5b,0xcf,0xad,0x4e,0x4b,0xdd,0x59,0xad,0xa4,0xd6,0x5a,0x12, +0xbe,0x2e,0x2c,0xd4,0x32,0xb9,0x66,0x16,0xeb,0x1f,0x6f,0x0d, +0x5c,0x4b,0xf4,0x1f,0x98,0x9f,0x9a,0x5b,0x78,0x8a,0x67,0x50, +0xce,0x33,0x28,0x0c,0x5b,0xb4,0x70,0x4e,0x18,0xcf,0x60,0x1a, +0xcf,0x60,0xce,0xa9,0x3c,0xe7,0x7f,0x01,0x39,0xa1,0xd0,0x84, +0xfb,0xb7,0xde,0x54,0xfe,0x81,0x44,0x4e,0xf7,0x8c,0xa3,0x8e, +0xc1,0x44,0x8d,0x66,0xc7,0xbd,0x20,0x57,0xbb,0x4a,0x2a,0xfe, +0xd5,0x8f,0x21,0x2a,0xf7,0xde,0xa5,0x05,0xc6,0xd2,0x9d,0xaa, +0x19,0x7f,0x3e,0xab,0x2a,0xad,0xa1,0x1d,0x3f,0x25,0x30,0x5f, +0x88,0xc6,0x9c,0x28,0x2c,0xca,0x3e,0x6e,0x88,0xc6,0xbc,0x37, +0x7b,0x4e,0x08,0x2a,0x90,0xf1,0x6c,0x4e,0x79,0xc1,0xa5,0xff, +0x3b,0x1b,0xe5,0x3f,0xd9,0xf8,0x18,0xd9,0xdc,0x10,0xd9,0x2c, +0x30,0xb2,0x29,0x2a,0xcc,0x3e,0x61,0x64,0xb3,0x62,0xce,0x6c, +0x23,0x9b,0xb4,0xb4,0x3d,0xbc,0xf7,0xe3,0x55,0xaa,0xb7,0xe3, +0x55,0xac,0x8f,0x5d,0x36,0xf3,0x2a,0x15,0x61,0xab,0x52,0x1f, +0x5e,0xdc,0x93,0x7f,0xd5,0xb2,0x8b,0x05,0xdf,0xd0,0xe7,0x50, +0x87,0x16,0xa4,0x2c,0xe7,0xb2,0x99,0x77,0x51,0x70,0x0c,0x46, +0x06,0xb1,0x91,0xd0,0x5f,0xf4,0x52,0x8f,0x23,0x69,0xeb,0x14, +0x11,0x39,0x2f,0xb8,0x8f,0x93,0x5a,0xfb,0xf4,0x99,0xb4,0xf5, +0x2c,0x62,0xec,0xf6,0x18,0xa3,0x17,0xdc,0x93,0xa0,0x0b,0x6b, +0x46,0xdb,0x6d,0x14,0x73,0x1a,0x23,0xa4,0xcf,0x53,0x1e,0xa4, +0x51,0x07,0x3f,0xc2,0xfe,0x0f,0x1c,0x54,0x37,0xa4,0xc6,0x24, +0x6d,0x8c,0x5a,0xbf,0xd9,0x31,0x6e,0x87,0xe9,0xf4,0x99,0x8c, +0xb3,0x17,0x2d,0x1f,0x7a,0x6c,0x94,0x3d,0xa6,0xcd,0x81,0xa4, +0x91,0xd6,0xf3,0x93,0x99,0x63,0xfe,0xa3,0xf3,0xa5,0xe7,0xcd, +0x3b,0xb6,0xef,0x4f,0x47,0xa1,0x55,0x33,0x3b,0x06,0x72,0xd6, +0x35,0xb1,0x40,0x61,0x22,0x6d,0x9e,0x8d,0x99,0x14,0xb3,0x35, +0x04,0x7c,0x50,0xeb,0x33,0xae,0xbf,0x13,0xfb,0x11,0x56,0x10, +0xdc,0xbc,0xc8,0x73,0xdd,0x18,0xe9,0xb8,0x75,0xc7,0x89,0xd3, +0x19,0xe7,0xb6,0xe7,0x9a,0xd9,0xee,0x1a,0xfd,0x1b,0x5f,0xb6, +0x5f,0x4a,0x18,0xe5,0x3b,0x03,0x36,0x78,0x9e,0x47,0x05,0xd7, +0xa2,0x2f,0x73,0x4a,0x72,0x76,0x6c,0x77,0x44,0xa1,0xcd,0xfd, +0x5b,0xd8,0x87,0xdc,0x4b,0x3b,0xcf,0xf3,0x46,0x9b,0x07,0x3f, +0xb0,0x0c,0x2a,0xad,0x43,0x62,0xf1,0x49,0x32,0x46,0x86,0xc6, +0xab,0x26,0x8e,0x13,0x4b,0x07,0xb9,0xe5,0x8f,0x8c,0x35,0xc7, +0x89,0x48,0xae,0x18,0x95,0x48,0xef,0x8d,0xa1,0x1d,0x5b,0x92, +0x63,0x97,0xa9,0x69,0x10,0x4e,0xa0,0xb3,0x3c,0x2f,0xa8,0xd4, +0xe6,0x70,0xe7,0x97,0xb5,0x52,0x2b,0xf4,0x11,0xb4,0xe5,0x44, +0x32,0xbe,0x3a,0xf8,0xd9,0xb3,0xaa,0x6b,0x9f,0x50,0x37,0x5f, +0x22,0xf7,0x81,0x11,0xd4,0x79,0x33,0xa1,0x6d,0x6a,0xb8,0x99, +0xa8,0x54,0x21,0x88,0x49,0x93,0xa0,0x48,0xf4,0xd6,0x4f,0x27, +0x49,0x90,0x6f,0xc7,0x53,0x5a,0xb0,0x20,0x1e,0x07,0xa5,0xec, +0x4e,0xdf,0x96,0x1a,0xcf,0xfa,0xe2,0x60,0x71,0x31,0x74,0x67, +0xf6,0x91,0x99,0x9b,0x92,0x71,0x7e,0x25,0x0b,0x57,0xc2,0x9c, +0xf7,0x5e,0x2e,0xf7,0x9e,0xe5,0x4f,0x3b,0x9e,0x27,0x30,0x57, +0xfb,0x99,0x30,0xc9,0x1b,0x78,0x64,0xbf,0x87,0xf8,0x99,0xd8, +0x5b,0xcc,0x3b,0xf3,0x18,0x6b,0xee,0xac,0x1c,0x41,0x52,0x94, +0x27,0x6d,0x1d,0xca,0x3b,0xd7,0xcf,0x89,0x6e,0x07,0x8e,0xb4, +0x75,0xc8,0xeb,0x7e,0x7b,0x31,0x8b,0xfc,0x17,0x0d,0x18,0xc3, +0x86,0xa2,0xe5,0x3a,0x4b,0xed,0xb3,0x08,0x1b,0xc0,0xfa,0x55, +0x42,0x38,0x9c,0x44,0x26,0x60,0x47,0xea,0xe2,0x40,0x50,0x2f, +0x96,0xf7,0xd9,0x7d,0x5e,0xf7,0xd9,0x8b,0x59,0x34,0x6d,0x77, +0x16,0x77,0xee,0x2e,0x22,0x6c,0x59,0x2f,0x58,0x02,0x03,0x68, +0xfb,0x97,0xfc,0x7d,0x20,0x3e,0x69,0x97,0xd8,0xcd,0xb2,0xe5, +0x29,0x5b,0xc2,0x96,0xd8,0xe4,0x76,0x97,0xc0,0x20,0xda,0x61, +0x14,0x61,0xfb,0x03,0x90,0x72,0xdd,0xa4,0x7e,0x3a,0x81,0x14, +0xe8,0xcc,0xbf,0x15,0x19,0xbd,0x75,0xc7,0xa1,0x33,0x19,0xe7, +0x50,0x04,0xa0,0x5b,0x85,0xfe,0x46,0x10,0xeb,0x25,0x51,0xca, +0x9d,0x93,0x2d,0x0b,0xa8,0xb5,0x2b,0x8e,0x02,0x8e,0x96,0x2e, +0x91,0xab,0x8e,0x6b,0xb5,0xe7,0x24,0xc0,0x0b,0x5f,0x78,0xb6, +0x8a,0x4a,0xa8,0x1b,0x23,0xd7,0x6d,0x76,0x44,0x09,0x55,0x31, +0x10,0x73,0x6c,0xd4,0x06,0x79,0xc8,0xb4,0xe9,0x90,0x34,0xc8, +0x9a,0x13,0xcc,0x9c,0x4a,0x1e,0xe5,0x96,0xe6,0x9a,0xf7,0xa5, +0x1e,0x40,0x99,0xf4,0x23,0xbc,0x00,0xb3,0x2b,0x4d,0x38,0x02, +0x38,0x5e,0x1b,0x4d,0x70,0xc1,0x75,0x8a,0xef,0x60,0xc2,0xf2, +0xe1,0xac,0x1a,0x4e,0x5b,0x9c,0x21,0x19,0xd9,0x85,0x96,0x8f, +0x46,0xad,0x93,0x07,0x4f,0x9d,0x06,0x89,0x3c,0x83,0x20,0x46, +0x4b,0xbf,0xca,0x2b,0xc9,0x33,0xef,0x4b,0xd9,0x9f,0xf4,0x7e, +0x3c,0xaf,0x18,0x6d,0x1c,0x73,0x30,0x03,0x43,0xad,0x1a,0x05, +0x7e,0x0e,0x6b,0x4d,0x50,0x29,0x88,0xd2,0x3b,0xa4,0xfa,0xd6, +0xa5,0x92,0x13,0xc5,0xe6,0x14,0xd4,0x2c,0x8c,0x63,0x16,0xe8, +0x86,0x9d,0x28,0x6f,0x2f,0x2d,0x23,0x88,0x18,0xf5,0x1c,0x0f, +0x85,0x42,0x5a,0xe8,0x89,0xd0,0xf9,0x7e,0xab,0x41,0xe7,0x7b, +0x8b,0x98,0x11,0xbc,0xf8,0xa2,0x29,0x01,0xbb,0x10,0xda,0xb2, +0x1b,0xb9,0x7e,0xb1,0xf0,0x64,0x81,0x39,0x25,0x2d,0x9d,0xb6, +0x3c,0x4d,0x4c,0x36,0x69,0x6d,0x31,0x42,0x0a,0xf9,0x54,0xdd, +0x87,0xe4,0xd6,0x0e,0xc6,0x48,0x43,0xfd,0x78,0x72,0xb0,0xe0, +0xf5,0x90,0xc0,0x5e,0xff,0xcf,0x12,0xe5,0xae,0xab,0x7c,0xbd, +0x87,0x59,0x3d,0xbf,0x8f,0xd9,0x13,0xb5,0x23,0x12,0x87,0x04, +0x1e,0xe2,0x58,0x01,0x33,0xe1,0x90,0xc0,0x62,0x1c,0x12,0x48, +0x49,0xde,0x99,0xa0,0xd4,0xbf,0x43,0x74,0x19,0xe6,0xd0,0xd6, +0xab,0xd0,0x63,0x85,0x1a,0xf6,0x4c,0xd5,0xdb,0x47,0xa4,0x05, +0x6a,0xad,0x0e,0x24,0x2c,0x88,0x5b,0x10,0xbd,0xc0,0x5c,0x1b, +0x63,0x3a,0xf8,0xd5,0x9e,0x47,0x4f,0x2c,0x5f,0xe8,0xbe,0xfe, +0x9a,0xdd,0x26,0xed,0x05,0x61,0x3c,0x9e,0xd5,0xdd,0x08,0x6b, +0x37,0x1a,0xcc,0x36,0x4e,0xb3,0xd8,0xb3,0xcd,0xfb,0xcf,0xbb, +0x0f,0x25,0x78,0x47,0xcb,0xa3,0xb4,0x25,0x81,0x7c,0xc8,0xc0, +0xa5,0x97,0x01,0x38,0x64,0xc6,0x73,0xfe,0x87,0xb6,0xbb,0x81, +0x62,0x1c,0xf1,0xc4,0xef,0x15,0xf2,0x55,0xc5,0x53,0xa3,0x36, +0x54,0x29,0xed,0x34,0x1c,0x75,0x93,0xac,0x8e,0x65,0x05,0xfc, +0x29,0x59,0x10,0x3e,0x66,0xa3,0xf1,0xa8,0x0a,0x85,0x22,0x12, +0x42,0xb1,0xcb,0xfc,0x1d,0xd1,0x1b,0x53,0x53,0x35,0x37,0x22, +0xad,0xd8,0x63,0x6e,0xd4,0xe4,0xba,0x53,0x59,0xe5,0x55,0x96, +0xdf,0x7a,0x3f,0x98,0x49,0x3c,0xbb,0xfa,0x67,0x4d,0xab,0x0b, +0xb3,0x72,0xd3,0x1a,0xd6,0x9d,0xd4,0xdb,0xb3,0x64,0x75,0x2f, +0x6d,0xc1,0x0d,0xac,0x1c,0x38,0x71,0xc6,0x72,0x52,0x5a,0x69, +0x7d,0x06,0x7d,0xb5,0x9d,0xa4,0x1f,0x44,0xcb,0xf8,0xfb,0x3f, +0x55,0xd6,0x08,0x7f,0x5f,0x76,0xdd,0xf2,0xa4,0xf7,0xfd,0x99, +0x64,0x74,0xf7,0x80,0xac,0xe9,0xf8,0xfb,0x46,0xb6,0xdf,0x27, +0xa8,0x7b,0xe5,0x8a,0x9b,0x25,0xb8,0x65,0xe9,0xd6,0xcc,0x20, +0x6b,0xa4,0x1c,0x34,0x71,0xe6,0x72,0x52,0x52,0xc1,0xf3,0xe9, +0xcd,0xf3,0xe9,0x8f,0xf9,0x60,0x90,0xdb,0x9b,0xb6,0x7b,0xf9, +0x7f,0xcf,0xdf,0x6f,0xc3,0xf9,0xfb,0x28,0xe1,0x89,0x1e,0xe7, +0x9e,0xe8,0x3a,0x6d,0x9b,0xea,0xdf,0x01,0xec,0xff,0xf6,0x83, +0xfb,0xdc,0xf3,0xe4,0x9e,0x68,0x9d,0xea,0x87,0x9f,0xfd,0xc5, +0x67,0x78,0x71,0x19,0x97,0x2f,0x37,0x66,0xf6,0xdc,0x15,0x85, +0xc6,0x0d,0xc7,0xbf,0x41,0x18,0x95,0x37,0x8b,0x4c,0xb2,0xee, +0x0b,0x5b,0x59,0x45,0x9e,0xb0,0x68,0xf6,0xc0,0xf6,0xd3,0x6a, +0x7f,0x76,0xc3,0x96,0xeb,0x3d,0xb6,0xae,0x0b,0x75,0x51,0x08, +0xf3,0xa1,0x4d,0xff,0x21,0x6c,0x7c,0x3b,0x66,0xcf,0x9f,0xc2, +0x5e,0xe2,0xe5,0xbc,0x9f,0xbc,0x48,0x84,0xc1,0xa3,0x70,0xa4, +0xa6,0x1f,0x81,0x5e,0xea,0xc4,0x75,0x6b,0x96,0x2d,0xb4,0x4c, +0xac,0x0d,0x58,0x46,0xae,0xdf,0xca,0x5b,0x73,0x8e,0xba,0xad, +0xe7,0xbe,0xd2,0x54,0x18,0xaa,0xce,0x92,0xc0,0x6e,0x76,0x56, +0x51,0x51,0xd1,0x39,0x66,0x87,0x6b,0x8d,0xed,0x8a,0x96,0xcd, +0x9e,0xcd,0x3b,0x40,0x3b,0x67,0xad,0x2d,0x8c,0x1d,0x4a,0xd8, +0x1a,0x9e,0xdd,0x01,0xa2,0xa9,0x30,0x0e,0xb3,0x6b,0x77,0x88, +0x68,0x6d,0x60,0xb4,0x48,0xe7,0x2e,0x71,0x12,0x4b,0x55,0x15, +0xaa,0x96,0x11,0xb6,0x0a,0x97,0x0b,0xbd,0xde,0x06,0x7b,0x72, +0xd2,0x2a,0xd9,0x6d,0xe9,0x0c,0x68,0x81,0x42,0x0a,0x8b,0x2a, +0xaf,0xe4,0xe5,0x9e,0xc8,0x13,0x72,0xf5,0xdc,0xb1,0x7c,0x93, +0x37,0xc0,0xe2,0x4b,0xd0,0x8e,0x35,0x8f,0xdc,0x13,0x25,0x22, +0x8d,0xec,0x2b,0x2a,0x04,0x3e,0x99,0x08,0x19,0xc2,0xee,0x55, +0x73,0xbb,0x97,0x66,0x07,0x81,0x7f,0xa3,0x46,0x96,0xca,0x7a, +0x52,0xd9,0x8d,0x40,0x17,0x99,0x95,0x6e,0x41,0xa5,0x3f,0xbf, +0x81,0xfd,0x9f,0xf8,0x0b,0xa5,0xbf,0xaa,0xef,0xbe,0xe9,0x51, +0x8d,0xd2,0x29,0x21,0xd0,0x5b,0x9d,0xe7,0xbf,0x00,0xba,0xc3, +0xff,0xc7,0xd6,0x7b,0x07,0x54,0x71,0x7c,0x7f,0xa0,0x9a,0x78, +0x77,0x61,0x56,0x41,0x13,0x57,0xe1,0x32,0x5e,0xa4,0x59,0x50, +0xec,0x8a,0xc6,0x42,0x13,0x2b,0x1d,0x11,0x7b,0xef,0xbd,0x2b, +0x28,0x20,0x4a,0x51,0x14,0x0b,0x28,0xf6,0x12,0x35,0x8a,0xbd, +0x83,0x0d,0x51,0xe9,0xd6,0x80,0x35,0xb1,0x9b,0x58,0x63,0x4f, +0x39,0x8b,0x67,0xe0,0xfb,0x66,0xf6,0x82,0xc9,0xef,0xbd,0xf7, +0x87,0x72,0x77,0x76,0x76,0xb6,0xcc,0xcc,0x39,0x9f,0x33,0x73, +0xce,0xf9,0x34,0x09,0x38,0x99,0x69,0x5a,0x27,0x9f,0x2a,0x3c, +0x09,0x4d,0xc0,0xb5,0x60,0xf8,0x10,0x91,0x75,0xaa,0x8d,0xcc, +0x75,0xcc,0x1a,0xc6,0x9f,0xb6,0x85,0x0c,0x17,0x12,0x44,0x23, +0x3d,0x5b,0xb4,0x78,0xdb,0x53,0x6f,0xe4,0xda,0x8b,0x17,0x4d, +0xae,0x89,0x46,0x46,0xa3,0xbb,0x3a,0x30,0x68,0x08,0x6f,0xc4, +0x35,0xe0,0xd4,0x59,0x53,0x9a,0x7c,0xae,0xf0,0x14,0xb8,0x82, +0x6b,0xfe,0x90,0x01,0x26,0xab,0xf2,0xf3,0x84,0x25,0xb2,0xe5, +0xf4,0xbb,0xe5,0x5c,0x72,0x36,0x22,0xb8,0x5d,0x28,0xb5,0x65, +0x95,0xde,0x9d,0xd8,0x14,0x1a,0xd0,0xba,0x55,0xf4,0x65,0x80, +0x1a,0xfa,0xa8,0x68,0x44,0xd8,0x33,0x11,0xb4,0xfc,0x49,0x0d, +0x87,0x76,0x43,0x8a,0xb5,0x1b,0xb4,0xae,0xc8,0x7b,0x57,0x27, +0x81,0x60,0x83,0x0a,0x7e,0x2f,0x33,0x42,0xb9,0x8f,0xcd,0xd5, +0x9e,0x73,0x66,0x8d,0x1d,0x6e,0xec,0x5e,0x12,0x38,0x9e,0x14, +0xdc,0xc8,0x98,0x75,0xb8,0xe7,0x36,0x11,0x14,0x95,0x57,0xd6, +0x37,0x18,0xfc,0x64,0xe8,0xc3,0xed,0x35,0x0e,0x45,0xaa,0x0d, +0x3c,0x7c,0xee,0x1c,0xad,0x39,0x91,0x0c,0x18,0x30,0x70,0x2c, +0xef,0x1c,0xe6,0x83,0x8a,0x2a,0xf6,0xef,0x3f,0x9a,0xc1,0xc9, +0x33,0x74,0x51,0x03,0x22,0xe6,0x4c,0x1a,0x6b,0x0c,0x2c,0x09, +0x1f,0x4f,0xb2,0x0b,0xa8,0x63,0x18,0x41,0x67,0xb5,0xbf,0x40, +0x31,0x7b,0x4f,0x9c,0x3c,0xc3,0xe1,0x89,0x7d,0x96,0xc0,0x37, +0x93,0x87,0x8f,0x18,0x24,0xe0,0x09,0xf3,0xc5,0x2a,0xaa,0xc6, +0x44,0x0a,0xfa,0x59,0x82,0xb2,0xc6,0x5b,0xed,0x17,0xdc,0x1f, +0x1b,0x60,0x83,0xa0,0xac,0xf3,0xa6,0xf5,0x72,0x76,0xfe,0x39, +0x11,0x1e,0x95,0x37,0x20,0xdc,0x24,0x44,0x65,0x8b,0xca,0xcd, +0x92,0xdc,0x1e,0x24,0xa0,0xac,0x88,0xc0,0x7c,0x74,0xc7,0xe3, +0x84,0x63,0x5e,0x2f,0xdc,0x43,0xab,0xd7,0x24,0xa5,0xb1,0xba, +0x4f,0x67,0x89,0xf0,0xe9,0x4c,0x61,0xc3,0xe8,0x77,0x2b,0xf5, +0xcf,0xb3,0x59,0xff,0x3c,0x2e,0xd8,0x8b,0xdc,0x5e,0x77,0xff, +0x9d,0xf1,0x21,0x4e,0x0f,0x82,0x26,0x11,0xf2,0x72,0xa7,0xe8, +0xf6,0xf3,0x3c,0x7a,0x26,0x7a,0x2f,0xf1,0x5a,0x6a,0xb1,0xf3, +0xfe,0xe6,0x97,0xef,0x8d,0xbf,0xe8,0xa7,0xe6,0xca,0xcb,0x1d, +0x23,0x5a,0x4f,0xef,0x64,0x91,0x34,0x98,0x3a,0xd9,0x08,0x2f, +0xad,0xbe,0x04,0x9b,0xb2,0x22,0xb1,0x67,0xf2,0x87,0xf4,0x69, +0xf5,0x1b,0x5a,0xff,0x1e,0xb9,0x6f,0x2f,0x52,0x79,0x89,0x24, +0xcd,0xbd,0x5b,0xb5,0x78,0xd3,0x5b,0x4f,0xd2,0x7c,0xe5,0xc5, +0xef,0x6e,0x57,0xcc,0x49,0x9a,0xdb,0xa8,0x83,0x83,0x87,0xea, +0x49,0x9a,0x33,0x4f,0xf3,0xd1,0x70,0x26,0x3f,0x03,0x1a,0x42, +0xc3,0xbc,0x61,0x83,0xf8,0x9b,0x44,0x41,0x35,0x98,0x22,0xc2, +0xbe,0x05,0x35,0x57,0x55,0x9c,0x8a,0xdd,0xbe,0x0c,0x20,0xb0, +0x5b,0x24,0xa4,0x78,0x56,0xa2,0x39,0xe0,0x16,0xc9,0xaa,0xb4, +0x99,0xc6,0xed,0x4f,0xac,0x73,0x55,0x5b,0xd9,0x0b,0xbf,0x77, +0x01,0x43,0x6f,0x16,0x71,0x45,0x70,0xca,0xd8,0x76,0x21,0x30, +0x13,0x0e,0xd0,0x5a,0x94,0xe0,0x0c,0x6a,0xfc,0x51,0xc0,0x63, +0x6a,0xe8,0x48,0xb0,0x0e,0xb6,0x0d,0x80,0xb6,0x58,0x95,0x56, +0xbb,0x4c,0x04,0xff,0x7c,0x31,0xd9,0xcb,0xe1,0x6c,0xb5,0x73, +0x04,0x62,0x6c,0x7c,0x56,0xcf,0xc6,0xa5,0xb4,0x1a,0xff,0x62, +0x2b,0x7c,0xe2,0x77,0x60,0x12,0xad,0xd9,0x9e,0x40,0xbf,0x35, +0xdb,0x41,0x15,0x2b,0xef,0xad,0xb9,0xa9,0x88,0x6d,0x03,0xf9, +0xc5,0x55,0xf4,0x8b,0xf3,0x68,0xad,0x74,0xc2,0x2d,0x6f,0x71, +0xed,0x7c,0x1b,0x9f,0x94,0xd9,0x98,0xa0,0x5f,0xbb,0xcc,0x27, +0x6e,0x07,0x26,0x18,0x46,0x8e,0x4c,0x1a,0x65,0x97,0xc2,0x55, +0x7a,0x2f,0xde,0xc4,0x36,0xd1,0x84,0x6e,0x87,0xe3,0x10,0x6e, +0xb7,0x07,0x79,0x33,0xff,0x5b,0x10,0xca,0x55,0x4e,0xff,0xdb, +0x95,0x88,0xfa,0x7b,0x2e,0x74,0xcd,0x1d,0x33,0x5c,0x47,0xd9, +0xed,0xd0,0x8d,0x7e,0xb7,0x85,0xdb,0x50,0x1d,0x09,0x4b,0x58, +0x2e,0xf6,0xc0,0xee,0x13,0x6a,0xbb,0x98,0xdc,0x7f,0x90,0xbc, +0xe2,0x57,0x7b,0x21,0xc3,0xd7,0x73,0x19,0xfe,0xab,0xb6,0x84, +0xd6,0x6d,0xa7,0x8b,0xf4,0x13,0xfa,0xe1,0x8f,0xb4,0xae,0xbb, +0x7e,0x98,0xc1,0x2d,0xa4,0x84,0x95,0xfc,0xba,0xef,0xa8,0x43, +0x38,0xb9,0xf3,0xd4,0xf8,0x80,0x79,0x05,0x82,0x16,0x25,0x4f, +0x49,0x9a,0x9a,0x34,0xcd,0xc4,0x6a,0x0a,0xed,0xf1,0xed,0xa6, +0xc4,0xb1,0xf1,0xe3,0xe2,0xc6,0xd9,0x2e,0xe2,0xef,0xe6,0x94, +0x88,0x26,0xe4,0xe2,0x2c,0x90,0x4f,0xa0,0x64,0x7d,0xfe,0xe8, +0xb3,0xc0,0x41,0x9f,0x05,0xfc,0xf7,0x16,0xc2,0xba,0xa2,0x41, +0xb8,0x17,0x29,0xef,0xb4,0x29,0xea,0xb1,0x3e,0x60,0xca,0x7a, +0x7a,0x3c,0xfb,0xa4,0xed,0xc6,0x35,0x5b,0x97,0x6d,0x59,0x04, +0x27,0xb1,0x8e,0xcd,0xf1,0x4b,0xb8,0x07,0x6a,0xcc,0x4b,0x59, +0xb0,0x8c,0x5b,0x46,0x73,0xa2,0x12,0x96,0xa7,0x1f,0x48,0x3b, +0x94,0x7c,0x82,0xd6,0xec,0x4c,0xda,0x77,0x1d,0x80,0x51,0x1d, +0x2c,0xb4,0x54,0x6e,0x88,0x38,0x96,0x13,0xde,0xc6,0x58,0xbd, +0x8d,0xf3,0x4f,0x4f,0x56,0xb4,0xb1,0x79,0x11,0x64,0x70,0x63, +0xee,0x78,0x0e,0x6f,0xc3,0x6a,0x5e,0xaa,0xde,0xc6,0xec,0x05, +0x09,0xc9,0x7b,0x0f,0xf2,0x36,0x32,0x44,0x1b,0xed,0x7c,0xfb, +0x61,0xb4,0xbb,0x68,0xc3,0x41,0x6f,0xa3,0xbc,0x21,0x61,0x2b, +0xaf,0x48,0x78,0x06,0x8c,0xea,0x7d,0xfc,0xae,0x50,0x8b,0x08, +0x40,0xd2,0xf1,0x31,0x75,0x59,0x40,0x30,0x5d,0x6b,0xab,0x8a, +0x1f,0xa0,0xc1,0x2e,0x15,0xab,0x77,0x84,0xea,0x32,0xfe,0x8e, +0x13,0xd5,0x86,0xd0,0xf4,0x83,0x04,0xe9,0xd8,0xd4,0xfc,0x4b, +0x51,0xe7,0x42,0x15,0x98,0x25,0xc2,0xb0,0xfb,0xc0,0x5c,0x07, +0x9c,0x85,0x1d,0x02,0x48,0xce,0xbf,0x14,0x6f,0x6b,0x55,0x08, +0xc7,0x6b,0x25,0x5a,0xf5,0x0a,0x06,0xb4,0xe9,0x9d,0x27,0xf4, +0xb8,0x1a,0x69,0x73,0xf8,0xf6,0x4f,0xcf,0x5f,0x53,0xeb,0x2d, +0xc4,0x8d,0xd6,0xba,0x4f,0x6e,0x51,0x6b,0x0e,0xe6,0xee,0xd1, +0x1a,0xa7,0x88,0xd8,0xc3,0x51,0xa8,0xf1,0x12,0x61,0x54,0x6c, +0x7a,0xb1,0x3c,0x12,0x7f,0x91,0x1a,0xda,0x12,0x9c,0x6c,0xb7, +0x3a,0xd4,0x5d,0xdf,0x4f,0xec,0x44,0xeb,0x0c,0xd6,0x7f,0xf8, +0x53,0x8b,0x7d,0x64,0xc9,0x98,0x25,0x16,0x9b,0xb8,0x05,0xfe, +0x90,0x5b,0xe0,0x93,0x83,0xa1,0xd1,0x42,0x79,0x79,0x5b,0xea, +0xdc,0x9f,0xdc,0x7f,0xcc,0xed,0xee,0x29,0xc1,0xd4,0xd1,0x96, +0xcf,0x62,0xb1,0x1d,0x6f,0x13,0xcf,0xad,0x51,0xea,0x30,0xba, +0xd2,0x69,0xab,0x1a,0x1a,0x03,0xc1,0xe8,0xa0,0xff,0x8f,0x96, +0xba,0xeb,0x56,0x3c,0xd6,0xa4,0xdf,0x3f,0xd1,0x21,0xc2,0x54, +0x6d,0x29,0xb5,0xbc,0x45,0x7e,0xc6,0x5f,0xc7,0x92,0x8f,0x30, +0x29,0x1f,0x25,0x39,0x1d,0xea,0x8b,0xd4,0xd4,0x8d,0x0c,0x68, +0x2f,0xcd,0x86,0x46,0x22,0x35,0x75,0x7d,0x03,0x7e,0x13,0x04, +0xa3,0x1c,0xa9,0x45,0x53,0xb3,0xc6,0xe0,0xa2,0x46,0x70,0x32, +0x6b,0xbf,0x11,0xfc,0xf6,0x67,0x6d,0x48,0x37,0x5a,0x33,0x82, +0x08,0x37,0x1d,0x17,0xd5,0x0f,0x1d,0xb1,0x3a,0xd4,0xff,0x22, +0x98,0xba,0xea,0x6f,0x21,0x78,0x8a,0xda,0xfc,0x43,0xca,0x9b, +0x11,0x37,0xb4,0x09,0x82,0x79,0xb8,0xe6,0x67,0xb8,0xe1,0xf6, +0x1a,0xe6,0xe0,0xb7,0xc7,0x13,0xb8,0x3e,0x09,0xd7,0x89,0x79, +0xce,0x8f,0x28,0xba,0x98,0x71,0x72,0x8f,0xf0,0x92,0x5a,0x43, +0x2d,0x7e,0x21,0x68,0xfa,0xaa,0x49,0x62,0xa8,0xc5,0x5a,0x32, +0xee,0xb9,0xc8,0xa9,0x73,0x35,0x17,0xaf,0x4a,0xb8,0x1c,0xdf, +0x7c,0xf9,0x89,0xfc,0x9c,0xba,0x3e,0x97,0x5a,0x14,0x13,0x6d, +0x61,0xb2,0xba,0x0b,0xa6,0xfa,0xaf,0x8e,0xc4,0xd9,0x86,0x1e, +0x52,0x04,0xcc,0xf6,0x8f,0xdf,0x85,0x53,0x0d,0x9e,0x7d,0xe0, +0xd7,0x4b,0x82,0xc5,0xea,0x6a,0x00,0x5c,0x95,0x58,0x2e,0xee, +0xa5,0x75,0x1b,0x09,0xd6,0x63,0xeb,0x3e,0xaf,0x13,0xe4,0x7f, +0x5d,0x57,0xde,0xe6,0x7e,0x75,0x5d,0x91,0x5b,0x63,0x73,0xe1, +0xb5,0x42,0x5d,0x46,0x11,0x57,0x9c,0x86,0x1d,0xd8,0x50,0x22, +0xf8,0xef,0xfa,0x62,0x61,0x89,0x26,0x0b,0x31,0x22,0x3c,0xe6, +0xbf,0xd4,0xfa,0xea,0xd8,0x3e,0x06,0x46,0xa8,0x8b,0x72,0xc5, +0x92,0x40,0x0f,0x70,0xcb,0xc7,0xd9,0x78,0xfe,0x67,0xe9,0x76, +0x61,0xaa,0x08,0xc4,0xfc,0x29,0x93,0x3a,0xa5,0x90,0x13,0xdd, +0xd5,0x59,0xac,0xb6,0x58,0x0c,0xdb,0x29,0x80,0xb5,0xba,0xe8, +0x05,0x8c,0x83,0xc1,0x78,0x24,0x18,0x26,0xb5,0xc2,0xf1,0xe8, +0x56,0x76,0x97,0x14,0x18,0xa2,0xf4,0x70,0x7e,0x58,0x0e,0x51, +0xfc,0x0d,0xf3,0xf9,0x1b,0x42,0x12,0x66,0xaa,0x3b,0xc0,0x4f, +0x24,0x1a,0x09,0x31,0xf4,0x96,0xe6,0x43,0x88,0x48,0xe0,0xeb, +0x57,0xfe,0xf4,0x3f,0x56,0x50,0x32,0x2c,0xa3,0xce,0xeb,0x09, +0xe6,0xa9,0x3b,0x21,0xec,0xcb,0x66,0xc2,0x1f,0xae,0xb7,0x26, +0xb5,0x12,0xfc,0xf5,0xfc,0x1b,0x17,0x43,0x56,0xee,0x3f,0x9a, +0x74,0x45,0xe6,0x62,0x24,0x57,0x5d,0x28,0x3e,0x61,0xcf,0xe9, +0xb2,0xcb,0x58,0x33,0x0d,0x52,0xf6,0xf0,0xa2,0x4b,0x99,0xe2, +0x6b,0xaf,0x5e,0x99,0xaa,0x7f,0xed,0x7a,0xe6,0xaf,0xcd,0x8d, +0x42,0xab,0xf2,0xff,0x91,0x06,0xb4,0x7a,0x6d,0xf2,0x51,0xf2, +0x69,0xa0,0xe2,0x8c,0x8f,0x30,0x83,0xa3,0xb5,0xea,0x7b,0x74, +0x87,0xdb,0x97,0xd4,0xd4,0x49,0xb8,0x7b,0x0c,0x25,0xcc,0xe3, +0x10,0xb5,0x9d,0x52,0x39,0xc0,0xaa,0xa2,0x29,0x10,0x4c,0xf5, +0xf5,0xff,0xd1,0x4a,0x77,0x88,0x5f,0x82,0x8c,0x56,0xe7,0xc6, +0x55,0xe9,0x14,0xb1,0x81,0xce,0xc7,0xc6,0x13,0xf8,0x56,0x1f, +0x28,0x32,0x8b,0x9d,0x54,0x39,0x44,0x7a,0x33,0x27,0x58,0x26, +0xc1,0x35,0x70,0x52,0x81,0xf0,0xf3,0x44,0x66,0xf3,0xdb,0x51, +0x87,0xf1,0x62,0x84,0x65,0x11,0xd7,0x0a,0x09,0x32,0x46,0xcc, +0x7e,0x07,0x31,0xfb,0x33,0x74,0xbc,0xbf,0x65,0x31,0x97,0x20, +0xb6,0x42,0x82,0xa4,0x83,0x75,0x04,0x97,0x20,0x91,0x5c,0x82, +0x2c,0x48,0x4c,0x4e,0x3f,0xb8,0xee,0xf0,0xf2,0x93,0xd4,0x72, +0x10,0x89,0x77,0xef,0x1a,0x8e,0xd1,0xed,0x2d,0xb4,0x3a,0x58, +0x9b,0x43,0x4b,0x0f,0xfc,0x66,0xa8,0x10,0x23,0x43,0x75,0x31, +0x92,0xad,0x37,0xb4,0x71,0xcd,0x16,0x21,0x8a,0x32,0xd0,0xce, +0xdc,0xd0,0x77,0x11,0xab,0x69,0x2d,0x4f,0xb2,0xf7,0x10,0x6f, +0x23,0x53,0x2b,0x23,0xf1,0x6d,0x7c,0xc3,0x71,0x61,0x5b,0xd1, +0x84,0xaa,0xc2,0xb7,0x1e,0xf8,0xad,0x48,0xb0,0x5d,0xf3,0x2f, +0xb2,0x8a,0x8f,0xe3,0x71,0xd8,0xe6,0xcb,0x4d,0xd1,0x0b,0x5a, +0x2e,0xe4,0x52,0xcb,0x45,0x04,0x13,0xa9,0xc5,0x38,0x32,0x1f, +0xfa,0xf7,0xe4,0xfd,0x14,0xca,0xfb,0x89,0xd6,0x4b,0x26,0x22, +0x1a,0x31,0xdc,0x33,0xae,0x8d,0xa8,0x95,0xcf,0xc7,0x61,0x90, +0x88,0x63,0xc5,0x24,0xd1,0x5f,0xa2,0x67,0x07,0x1a,0xfc,0xa4, +0x48,0x18,0xd8,0x8b,0x5a,0xdc,0x13,0x9d,0xe7,0x46,0x70,0x20, +0x5e,0x50,0x17,0x2e,0x4a,0xa4,0xce,0xc3,0x48,0x38,0xad,0x75, +0x87,0x5c,0xca,0x38,0x61,0x46,0x58,0xe6,0xfc,0x0c,0x22,0xc8, +0x84,0xcf,0x0b,0x2b,0x5a,0xcb,0x9b,0xbc,0x12,0x7e,0x0f,0xeb, +0x8a,0xe1,0x26,0x66,0x09,0xfa,0xdb,0xeb,0x84,0xd5,0xd5,0xc1, +0xb4,0xee,0x8a,0xd3,0x09,0x7a,0x9a,0x59,0x9d,0x5a,0x12,0x96, +0x89,0xc6,0xb2,0x3f,0x89,0xd6,0x52,0xbb,0xae,0x6e,0x4d,0xdb, +0xb2,0x6c,0x6b,0x2c,0x9c,0x46,0x67,0x9b,0x13,0xb9,0x78,0x10, +0x6c,0x23,0xcc,0xa4,0xf7,0x33,0x23,0xb9,0x65,0x7e,0xe8,0xf8, +0xc6,0xcc,0x5c,0xe3,0x4f,0x9e,0xb3,0xe5,0x06,0x3d,0xfd,0x71, +0xbd,0xab,0xe9,0x78,0x28,0xd4,0xbb,0xf4,0x22,0x23,0xe7,0x8c, +0x2d,0x0c,0xc2,0x05,0xd4,0xf1,0x7f,0x1c,0x97,0xb4,0xd1,0xae, +0xa9,0x5b,0xd6,0x6c,0x5e,0xca,0x3f,0xdc,0x69,0x6c,0x60,0x73, +0x22,0x87,0xb7,0x42,0xff,0x6d,0x65,0x85,0xde,0x4a,0x9e,0x71, +0xb7,0xe7,0x2c,0xd9,0x59,0xb4,0xd2,0x50,0xb4,0x52,0x3f,0xef, +0x45,0x66,0xce,0x39,0x5b,0xe8,0x8f,0x8b,0xf4,0x56,0x74,0x05, +0x39,0x15,0xdb,0xf9,0x43,0x3b,0x09,0xdb,0xc3,0x7c,0x5a,0xed, +0x02,0xc1,0x7d,0x5a,0x09,0x81,0x39,0x5c,0x39,0xce,0xc4,0x85, +0xe8,0x45,0x20,0xce,0x9b,0x4f,0xe2,0x18,0x2a,0x1f,0xac,0x5c, +0x76,0x6a,0xae,0x27,0x8e,0x0b,0xae,0x5c,0x76,0xfa,0xd2,0x82, +0x3f,0xce,0x5b,0xf8,0x53,0x85,0x2e,0xdd,0xb1,0x0b,0x5a,0x41, +0x97,0x1e,0xf2,0xe6,0x0b,0x6b,0xf3,0xae,0x18,0xcf,0xe3,0x96, +0x40,0x08,0x97,0x97,0xb7,0x98,0xe5,0x35,0xa1,0xc7,0xb5,0xf9, +0x36,0x69,0x3b,0xd7,0xee,0x5a,0xf3,0x93,0x05,0x47,0x36,0x39, +0xae,0x04,0xfb,0xbd,0x57,0x6f,0x2c,0x34,0x6c,0xbe,0xb5,0xe1, +0xd7,0xf7,0xc6,0x5c,0x2c,0x09,0x84,0x64,0x79,0xb9,0x5b,0x94, +0x67,0x64,0x77,0x0b,0x25,0xb0,0x34,0xb7,0x40,0xe6,0xdf,0xab, +0x66,0x79,0x1f,0x2e,0x01,0xfa,0x90,0xc9,0x89,0x13,0x97,0x5a, +0x6c,0x2c,0x58,0x7b,0xed,0x57,0x63,0xb1,0xbe,0xe2,0xb9,0x50, +0xac,0x78,0xf6,0x88,0x0c,0xe8,0x99,0xe8,0x93,0xc8,0x11,0xce, +0x8e,0xeb,0x1b,0x7e,0x79,0x58,0xb1,0xe2,0x19,0xcd,0x4f,0x45, +0x7a,0x57,0xae,0x78,0xd2,0x9a,0x9b,0x88,0xd2,0x80,0x60,0x27, +0x0c,0xf5,0x83,0x50,0x9c,0x75,0x57,0x48,0xdc,0x38,0xdc,0x41, +0xbf,0xbf,0x5a,0x39,0x63,0xc2,0xb0,0x76,0x20,0xd4,0xc6,0x21, +0xba,0x30,0x8e,0x16,0xc2,0xf8,0x9a,0xfe,0x42,0xa8,0x42,0xe7, +0xee,0xd8,0x99,0xbf,0x50,0xe7,0x9e,0xf2,0xa6,0xec,0xb5,0x39, +0x45,0xc6,0x2c,0xf3,0x0b,0xb5,0x9a,0xed,0x33,0xb1,0xa7,0xe9, +0xda,0xfc,0xb4,0x1d,0x6b,0x77,0xa5,0xee,0xb2,0xc5,0xd6,0xe6, +0xf7,0x79,0x27,0xde,0x67,0xcb,0xcd,0xf5,0xf7,0xde,0x1a,0x73, +0x2a,0xde,0xa7,0x59,0xb4,0x77,0x44,0x2f,0x0b,0x73,0x7a,0x0b, +0x4b,0x6b,0xe2,0xa1,0x79,0xaa,0xac,0x75,0x98,0xd6,0x5a,0x4a, +0xc5,0x86,0x6a,0x13,0xe9,0x27,0xa8,0xea,0xbb,0x66,0x2e,0x12, +0x03,0xb7,0x2a,0xe6,0x02,0xf1,0x5d,0xf4,0x13,0x56,0x35,0xb4, +0x08,0xd7,0x7c,0xb8,0x86,0x03,0x72,0xab,0xf0,0xc3,0x2f,0x43, +0xb3,0x50,0xda,0x6c,0x3f,0x72,0xb5,0xa1,0xf7,0xda,0x71,0xdb, +0xb2,0x8c,0xe7,0x0e,0xed,0xbb,0x76,0x2d,0x73,0xd2,0xc4,0x1d, +0xa6,0x0b,0x67,0x0d,0xd9,0xc3,0xfb,0xec,0x6b,0x6f,0xe7,0xd8, +0xa9,0xbf,0x4b,0x93,0x92,0x51,0x6f,0xa2,0xec,0x4f,0xc4,0x1b, +0x6e,0xc4,0xfe,0x38,0x69,0xa4,0xb1,0xef,0xc8,0x49,0xdd,0x7b, +0x0d,0x4c,0xcf,0x1a,0x69,0x0a,0x19,0x6c,0x08,0x38,0x7d,0x79, +0xe4,0x1b,0x3b,0xae,0xdd,0x92,0x09,0x46,0xd5,0xa7,0x35,0x06, +0x11,0x85,0xcf,0x77,0xe7,0xd8,0xb4,0xe8,0x95,0xb4,0xc6,0x36, +0x22,0x76,0xa5,0xe3,0x12,0xcc,0xbb,0xd2,0x67,0xf2,0x8d,0xd7, +0xbc,0xfd,0x64,0x54,0xc7,0xf4,0x76,0x41,0x49,0xf8,0xfa,0x5f, +0x39,0x96,0xb5,0x2b,0xdb,0x56,0x0f,0xa5,0x4a,0xf8,0xba,0xe6, +0xc4,0xaa,0xe1,0x06,0xfa,0xbd,0x03,0x1f,0xd4,0x8b,0x2e,0x19, +0x62,0xc7,0x09,0x66,0x82,0x58,0xf0,0x80,0xe6,0x79,0x38,0x07, +0x8f,0x7d,0xe1,0xc8,0xea,0x07,0xb1,0x9e,0x11,0x89,0x87,0x20, +0x4e,0xda,0xe5,0x88,0xcd,0xc8,0x27,0x6f,0x47,0x6a,0xb5,0x59, +0x80,0xcd,0xcf,0xa4,0xa5,0xea,0xb9,0xb0,0xb9,0xf0,0xff,0x7f, +0xe6,0xd5,0xb2,0x90,0xb8,0x97,0x3d,0xd0,0xa9,0xfa,0xcc,0xdd, +0xc3,0x11,0xfd,0x28,0xbd,0x63,0xca,0x4f,0x11,0x74,0x05,0x3b, +0x75,0x6c,0xfc,0x88,0xc4,0xa1,0x89,0x16,0x9b,0x1e,0xa5,0x3e, +0x7d,0x67,0x7c,0xc1,0xba,0x04,0xc0,0x3f,0x73,0xe5,0x71,0x49, +0x13,0x96,0x4e,0x32,0xb1,0x1a,0xf3,0x53,0x03,0xb5,0xaa,0x5b, +0x13,0x87,0xc5,0x0f,0x5f,0x34,0xdc,0x56,0x90,0xba,0x38,0x24, +0xa2,0x1d,0xad,0x11,0x4d,0x94,0xd6,0x84,0x6d,0xbd,0x29,0xe1, +0xfa,0x34,0x6a,0xd3,0x9e,0x28,0xf0,0x9a,0x14,0xe3,0x3c,0x15, +0x14,0x0f,0x54,0x86,0x9a,0x37,0x50,0xbd,0xa8,0xcd,0x31,0xa2, +0x7c,0xd4,0x42,0x69,0xad,0x83,0xe4,0x7c,0xa6,0xed,0x72,0x89, +0x5a,0x77,0x23,0x50,0x3b,0x82,0xe3,0x97,0x48,0x5a,0x7f,0x2a, +0x69,0xd5,0x2d,0x0c,0xa3,0x5b,0x5a,0xf8,0xa1,0x10,0x06,0x8a, +0x8a,0xa1,0x4d,0xbd,0x1a,0x35,0x7a,0xe3,0xc9,0xe1,0x5f,0xc8, +0x9b,0x3b,0xef,0xdf,0x37,0xbd,0x2d,0x90,0xf0,0x30,0xec,0x49, +0x9d,0x4d,0xe4,0x62,0xde,0x05,0x7c,0x41,0xfa,0xea,0x4c,0xe9, +0x7d,0x5d,0x7d,0x9a,0x36,0x79,0xeb,0x03,0x7d,0x21,0xec,0xed, +0xcd,0x3f,0xde,0xb8,0xde,0xc4,0x30,0x61,0x3f,0x71,0xec,0x1f, +0x48,0xad,0xb2,0x48,0x81,0x40,0xfb,0x1e,0xc4,0x1d,0xd3,0x69, +0xb5,0x02,0x22,0x53,0x69,0x33,0x79,0x20,0xe5,0xe0,0x16,0x6a, +0xa1,0x11,0x2a,0xf3,0xef,0xfb,0xa6,0xad,0xf6,0x0d,0x51,0xba, +0x39,0x73,0x65,0x7f,0x71,0x7c,0xf0,0x5e,0x2f,0x3b,0x24,0x9d, +0xba,0x70,0x98,0xf7,0xfd,0xaf,0x5d,0x80,0xdc,0x2e,0xd8,0x77, +0xe9,0x80,0x3d,0x66,0xbc,0x52,0xcf,0xca,0xb7,0xce,0x9d,0xbd, +0x7d,0xeb,0xdc,0x40,0x6f,0xd3,0x40,0xd9,0x7b,0xc0,0x20,0x6f, +0xaf,0x01,0x67,0x6e,0x99,0x34,0xcf,0x27,0x1c,0x33,0xa1,0x2c, +0xaf,0xda,0x92,0xbc,0x7d,0xbb,0x71,0xfb,0xd2,0xed,0x09,0x5b, +0x4c,0x66,0x46,0x38,0xac,0x43,0x6b,0xf8,0x10,0x98,0xd8,0x5e, +0xa7,0x85,0xb3,0x5a,0x2d,0x68,0xe1,0xcc,0x54,0x71,0xb4,0x8d, +0x4e,0x15,0xd7,0x9e,0x59,0xc2,0x7e,0xcd,0x12,0x6b,0x3d,0x93, +0xf2,0x59,0x43,0x5a,0xf3,0x7f,0x44,0x65,0x76,0x51,0xa9,0x41, +0x9a,0xd5,0xe6,0x84,0xa1,0xd4,0x7a,0x31,0x79,0xc0,0x7a,0x05, +0x6a,0xdf,0x2c,0xa8,0x48,0xa3,0x0d,0xf5,0x31,0x9a,0xd6,0x1b, +0x28,0x3e,0xcd,0xc3,0x98,0xd4,0x50,0x28,0xde,0x98,0x38,0x6c, +0xf1,0x08,0xea,0xb2,0x8e,0xdc,0xa3,0x4e,0xdc,0x5c,0x9a,0x47, +0xeb,0x85,0xf2,0xfe,0x16,0x4b,0x7b,0x87,0x1a,0x7c,0xe9,0x5a, +0xe9,0x47,0x85,0x79,0x5a,0x0b,0x41,0xe0,0xe5,0x6d,0x26,0xf0, +0xba,0xbe,0xe1,0xe9,0x4b,0xc1,0x52,0xe5,0x67,0x26,0xf0,0xca, +0x14,0x69,0x76,0xaa,0x2e,0x42,0x92,0x60,0x01,0xdd,0xbd,0xb0, +0x17,0xb5,0xda,0xca,0x27,0x62,0x36,0x61,0xcd,0x20,0x92,0xda, +0x3c,0x14,0xf6,0xdf,0xa7,0x8a,0x8e,0x1b,0x44,0x4d,0x32,0x49, +0xad,0x50,0x37,0x09,0xc9,0xe9,0xba,0xaa,0x60,0xd7,0x48,0x9b, +0x6e,0x5c,0xd9,0xb4,0xe1,0xfd,0x56,0x43,0x77,0xf5,0xe5,0xc0, +0x7a,0x28,0xa9,0x34,0x2e,0xbf,0xdf,0x48,0x94,0x3f,0x09,0xf6, +0xd0,0x3a,0xb2,0x60,0xc2,0xc6,0x98,0x7d,0xc4,0xcc,0xeb,0xe5, +0xda,0x5f,0xe4,0x4f,0x70,0xc0,0x6f,0x74,0xeb,0xea,0x35,0xe2, +0x13,0x02,0x0a,0x58,0x7e,0x5d,0x29,0x47,0x6e,0x49,0xbe,0xc2, +0x2f,0xe5,0x1f,0x89,0x1e,0xd6,0x18,0xa4,0xbf,0x4e,0x2a,0x7f, +0x9d,0x59,0xda,0x70,0x6a,0xb9,0x94,0x8b,0x4c,0x6a,0x19,0x25, +0x64,0xa6,0xb7,0x90,0x99,0x83,0x2a,0x73,0xd7,0xc7,0xf9,0xe8, +0x82,0xd3,0xe1,0x1c,0x1f,0xd0,0x0d,0x38,0xe6,0xe5,0x78,0x29, +0x03,0x22,0xd4,0x1b,0x38,0xfd,0x8a,0x16,0xd1,0x1b,0x47,0x74, +0x07,0x4f,0x7f,0x6c,0xd2,0x10,0x1a,0x05,0xb2,0x56,0x5c,0xb5, +0x73,0xc1,0xdb,0x56,0x0d,0xd0,0x0b,0x02,0xf4,0x82,0x80,0xdc, +0x0a,0xdc,0xbb,0xf7,0x2b,0xee,0x2d,0x7f,0x49,0x58,0x8c,0x90, +0x5e,0x57,0xfe,0xaf,0xbd,0x60,0xbc,0x4f,0xd6,0xc7,0xe5,0xe9, +0x59,0x07,0x87,0x24,0x58,0x6c,0xba,0xb1,0xee,0xd7,0xa7,0xc6, +0x6b,0xac,0x43,0x10,0x7c,0x9a,0x27,0x27,0xb5,0x8e,0xf1,0x8c, +0xec,0x6d,0xb1,0x18,0xad,0x04,0xed,0x91,0x51,0x58,0x0b,0x2a, +0x36,0x03,0x93,0x1f,0x73,0x80,0x83,0x9a,0x43,0x6f,0x89,0xcd, +0xc0,0xb7,0xd4,0xee,0x2e,0xd1,0x66,0x24,0x8b,0x13,0x8d,0xa1, +0x19,0xd7,0x81,0x21,0x70,0x20,0x57,0x66,0xa3,0xf9,0x10,0xaf, +0x5e,0x9f,0xcb,0xe0,0x7b,0x04,0xbb,0x50,0x9b,0x4d,0x84,0x71, +0x85,0xe1,0x47,0x6d,0xae,0x10,0xdc,0x4f,0xeb,0x1e,0x24,0xb4, +0xda,0x19,0xf2,0x12,0x06,0xc2,0x9d,0x60,0xac,0xea,0xf6,0x4f, +0x08,0xe6,0x87,0x43,0x61,0xa8,0xf8,0x19,0x8c,0xb7,0x60,0x50, +0x13,0xea,0x60,0x41,0xa0,0x9b,0xea,0x06,0xdf,0xe0,0x3b,0x82, +0xdf,0xb8,0x49,0x4a,0xd9,0x64,0x82,0xd9,0x2a,0x34,0xc3,0xba, +0xd4,0xf8,0x90,0xac,0x59,0x9b,0xb6,0x64,0x4d,0xbc,0x85,0x42, +0x1d,0xa2,0xc9,0xe3,0xe6,0x18,0xf7,0xf2,0x31,0xb5,0x13,0x54, +0xdd,0xba,0x33,0x80,0x20,0x07,0x33,0x9b,0x35,0xa2,0xe7,0x54, +0x3d,0x34,0x9e,0xda,0x23,0x39,0x3f,0x38,0xff,0x5c,0xc6,0xd1, +0xf4,0x23,0xb6,0x2b,0x57,0xa6,0x54,0xe4,0x76,0xb3,0x47,0xe5, +0x3c,0x75,0xac,0x49,0xa8,0xa1,0x39,0xc9,0xac,0x0c,0x32,0xa4, +0x76,0xfc,0x9e,0x27,0xf8,0x48,0xa8,0x8c,0x15,0x54,0xc3,0x60, +0xdf,0x45,0x19,0xbf,0xe5,0xca,0xcf,0xe6,0x16,0xb7,0xcb,0xce, +0x91,0x56,0x2a,0xf4,0xf6,0xc6,0xde,0xac,0x16,0x9f,0xe4,0xb0, +0x4c,0x0b,0x51,0x7f,0x8e,0x30,0x1c,0xbf,0x97,0xfe,0xec,0xa3, +0x31,0x9b,0x5a,0xbe,0x25,0xcd,0xa6,0x7a,0x8d,0xf6,0xb1,0xd0, +0xec,0x97,0xa8,0x25,0x51,0x86,0x9d,0x77,0x37,0x3d,0xf8,0x68, +0xcc,0xa3,0x96,0xef,0x48,0xd3,0xf9,0x9d,0x66,0x75,0xb7,0x40, +0xd7,0x36,0x2a,0xf8,0x78,0xa3,0x0f,0xab,0xe5,0xaa,0xeb,0x98, +0x70,0x0c,0x93,0x69,0x8d,0x8b,0x04,0xc2,0xb0,0x3f,0xd7,0x33, +0x12,0xbe,0xc7,0x25,0x6a,0xc7,0x80,0xf0,0x36,0xad,0x03,0xb2, +0xef,0x9b,0x68,0xcd,0xd1,0x95,0x7e,0xb3,0x98,0xac,0x65,0xaa, +0x5d,0x5b,0xe3,0xde,0x67,0x3e,0x98,0x25,0x92,0x4b,0xe6,0xaa, +0xb8,0xf7,0x0d,0xec,0x95,0xb0,0x1b,0x73,0x11,0x5b,0x57,0x7c, +0xc4,0x68,0xaf,0xb4,0xe9,0x2a,0x9f,0x66,0x91,0xb7,0xb4,0xad, +0xde,0x18,0x81,0xf5,0x61,0xa2,0x0f,0x8b,0xe7,0x52,0xad,0x0b, +0xb5,0x5b,0x56,0xf9,0x39,0x16,0x0a,0xc7,0xe4,0xca,0x48,0x87, +0x9f,0x7c,0x67,0x53,0xe7,0xc3,0xe4,0xd4,0xc9,0xbd,0x1c,0xa8, +0x88,0x34,0x05,0x09,0xfc,0xbb,0x7c,0x27,0x9c,0x76,0xca,0xc2, +0x60,0xa8,0xf0,0xf3,0x59,0x5e,0x02,0x97,0x75,0xe7,0x4c,0x2e, +0x5c,0xe5,0x1e,0xf8,0x27,0x1c,0x86,0x3f,0x7b,0x4a,0x6c,0x2a, +0x9e,0x15,0x68,0x78,0xe4,0x57,0x8f,0xed,0x51,0xe8,0x26,0x61, +0xb8,0x80,0xc3,0x7a,0x96,0x05,0xdd,0xd7,0xcf,0x15,0xac,0xc1, +0x55,0x5c,0xda,0x44,0xac,0xb1,0xbe,0x86,0xa3,0x82,0xbc,0x9d, +0x4d,0xc3,0x13,0xea,0x22,0xe1,0x2e,0xde,0x4f,0xcf,0xd5,0xd4, +0x9a,0x5f,0xda,0x48,0x2a,0xfb,0x99,0xe4,0x94,0x9f,0x24,0xda, +0xb4,0x64,0x51,0x5b,0x11,0x5c,0xaa,0xe2,0x07,0x07,0x5c,0x1f, +0xf9,0x65,0x1f,0xf5,0xcb,0xce,0xa8,0x8b,0x5e,0x51,0x8b,0xcf, +0x04,0x9b,0x8a,0xea,0xb9,0xe2,0x4e,0xf1,0xfc,0x4e,0xe6,0x4b, +0xac,0xcc,0x97,0x34,0x05,0xb9,0x27,0xbf,0xe4,0x08,0x7c,0xec, +0x29,0x2e,0x39,0xad,0xc6,0xbe,0x84,0x51,0x22,0x2b,0x54,0x08, +0x8c,0x6f,0x85,0xa3,0xb1,0x29,0x95,0x6d,0x08,0xaf,0xdc,0x54, +0xd2,0x65,0xea,0x6e,0x3d,0x39,0x3c,0xef,0x81,0xf7,0x04,0x86, +0x15,0x62,0xb9,0x2e,0xcf,0x76,0x3d,0x96,0xf2,0xb9,0xed,0x6a, +0x81,0x44,0x54,0xd9,0xa7,0xbd,0x15,0x52,0x77,0x3e,0x79,0x6c, +0x76,0x7c,0xda,0x50,0x02,0x77,0xa9,0x73,0x12,0x89,0x5d,0x64, +0x43,0xad,0x62,0xcd,0xee,0x4e,0x99,0x7b,0x33,0x74,0x77,0xa7, +0x3a,0x15,0xee,0x4e,0xb3,0x71,0x7d,0x09,0xdc,0x11,0xb5,0x04, +0x3f,0xbd,0xee,0xb9,0x21,0x68,0x4c,0x5d,0xc6,0x08,0x6b,0xe9, +0x5b,0x41,0x63,0x9a,0x73,0x2a,0x23,0x9d,0x63,0xdd,0x5f,0x08, +0xff,0xde,0xaa,0x7e,0x15,0xad,0xb7,0x86,0xd0,0x1a,0xe7,0x88, +0x36,0xb5,0x0e,0x36,0x86,0xba,0xc2,0x49,0x92,0xda,0xb5,0x21, +0x7f,0x2b,0x5f,0x42,0xc9,0x30,0x11,0x6a,0x29,0xd4,0x5e,0xe9, +0xb7,0x5a,0x9a,0xfa,0x17,0x0e,0x2d,0xd1,0x86,0x50,0x5b,0x7f, +0x7e,0xfc,0x1d,0x3c,0x57,0x9f,0x83,0x0d,0x3c,0xe9,0xc9,0x51, +0x7c,0xcb,0x7f,0x7a,0xe1,0xa3,0xc7,0x2d,0x31,0xee,0xf9,0x63, +0x78,0xd2,0x4b,0x2f,0xe8,0x89,0x8f,0xc0,0xa6,0xa5,0x08,0x6b, +0x2a,0x6b,0x06,0x69,0xd4,0x61,0x90,0x1e,0x40,0xf2,0x8f,0x7a, +0x47,0x86,0x9e,0xa9,0x0f,0x8b,0x5f,0x54,0x2e,0xb8,0xb6,0x78, +0xe8,0x0b,0xbd,0x16,0x9b,0x3c,0xc7,0x11,0xb9,0xcc,0x02,0x16, +0xa9,0xeb,0x65,0x5a,0xdf,0x4a,0xaf,0xfb,0x41,0xaf,0xbb,0xe6, +0x61,0xc9,0xcb,0xca,0xc5,0xdd,0xe6,0x0f,0x7d,0xfe,0x53,0x37, +0x9e,0xd7,0xcd,0xd3,0x3e,0x92,0x60,0x53,0x34,0x72,0x54,0x87, +0x63,0x08,0x97,0x0d,0x1f,0x69,0xed,0x86,0xfc,0xe9,0x26,0x09, +0xe3,0xc1,0xf1,0x16,0x01,0x5f,0xf3,0x33,0xcb,0x2c,0x6a,0x12, +0xa5,0x17,0x89,0x58,0xe6,0xc6,0x75,0x6c,0x18,0xad,0xdd,0x58, +0xec,0xc8,0xac,0x89,0x5e,0x2e,0x3c,0x87,0xb7,0x1d,0x4a,0x3d, +0x7a,0xd6,0xf8,0x63,0x77,0xea,0x74,0x88,0xa4,0x1f,0xb5,0x4d, +0x49,0x59,0x6b,0xe6,0x78,0xb5,0xb0,0xe1,0x13,0xd5,0x9a,0x63, +0xf2,0xb3,0xfc,0x6b,0x17,0x9d,0xcf,0x3c,0x9e,0x7e,0xcc,0xd6, +0x3c,0x8b,0xf9,0xc9,0x1a,0x36,0xd9,0xd4,0xb1,0x16,0x51,0xb1, +0x15,0xd4,0xf6,0xe3,0x0a,0xe9,0xa8,0x66,0xc9,0xa5,0xd3,0x4c, +0xbc,0xa9,0x2e,0xfc,0x5b,0x0f,0x37,0x70,0x17,0xc3,0x32,0x57, +0x8c,0xad,0x99,0x75,0x78,0xa5,0x7a,0xd0,0x4a,0xb2,0x72,0x22, +0xac,0x16,0xee,0x2a,0x6b,0x4d,0xb4,0x66,0xa5,0xcb,0x68,0xbd, +0x1a,0x24,0x87,0x5a,0xce,0x24,0xf0,0x05,0x25,0xf1,0xb7,0xcc, +0x0d,0x97,0x09,0x55,0x40,0xab,0x7f,0x4f,0x70,0x88,0x4e,0x67, +0xcc,0x7e,0x15,0xf4,0x2c,0xfc,0x79,0xa7,0xe8,0x8b,0xe7,0xae, +0x40,0xa8,0xd1,0x82,0x7f,0x9e,0x60,0xc2,0x8d,0x89,0x8e,0x3a, +0x55,0x89,0xba,0x56,0xf8,0xfa,0xc6,0x81,0x3f,0xd6,0x15,0x2e, +0xe8,0x3d,0xa0,0xc6,0x82,0xb4,0x28,0x5a,0xcb,0x97,0xec,0x38, +0x92,0x76,0x54,0xb8,0xf9,0x4e,0x90,0xdd,0xc2,0x02,0xb1,0x53, +0x43,0xd3,0x85,0x81,0xcf,0x72,0x0a,0x33,0x8e,0x9e,0xb5,0x85, +0xbb,0x38,0x50,0x84,0x36,0x2e,0x72,0x11,0xf2,0xcc,0xde,0x8f, +0xe0,0x46,0xe6,0x46,0xab,0x0b,0x90,0xcd,0x0f,0xca,0x7a,0xe2, +0x08,0x5a,0xa3,0x4a,0x25,0x82,0xee,0xaa,0x7b,0x1a,0x8f,0x14, +0x08,0x1a,0x97,0x61,0x38,0x35,0x34,0x22,0xb8,0x97,0x4f,0x7c, +0xfb,0xc9,0xfa,0x32,0x80,0x2b,0x58,0x14,0x90,0x77,0xe0,0x05, +0xf7,0xa8,0xe5,0x2a,0x02,0x3e,0x0d,0xe4,0xc4,0x1f,0xdc,0x75, +0x17,0x77,0x36,0x04,0xb2,0x54,0x38,0x50,0x1f,0x0f,0x48,0xdc, +0x88,0x8a,0x51,0x8f,0x86,0x81,0xfd,0x99,0x67,0xc7,0xb2,0x8f, +0xdb,0x6e,0x4c,0xe5,0x16,0x85,0x58,0xcf,0xb1,0xb6,0x39,0x76, +0x11,0xf7,0x80,0xe1,0xdf,0xf5,0x9c,0xe4,0x3d,0x7b,0xd7,0xed, +0x4f,0x3e,0xca,0x2d,0xa9,0x45,0x1e,0xde,0x83,0x31,0xd2,0x83, +0x5b,0x52,0x8a,0xba,0x38,0x5b,0xdf,0x8a,0x0a,0xe4,0xd8,0x8d, +0xeb,0x96,0x4b,0x38,0x13,0xd7,0xde,0x90,0x6e,0x15,0xad,0x49, +0x3b,0x64,0x0f,0xbb,0x8e,0xa9,0xd8,0x01,0x9c,0xa0,0xe5,0x25, +0x9c,0x87,0xab,0x60,0xa1,0x64,0x26,0xf1,0x18,0x0f,0x33,0xf1, +0x78,0x10,0x4c,0xc2,0x2a,0xdc,0x60,0xf6,0xa9,0x5f,0x91,0xb5, +0x35,0xd7,0x7e,0xa1,0x6e,0x5d,0xc5,0xb7,0xb2,0x83,0xc7,0x4b, +0xb8,0x81,0x46,0x1d,0xd3,0x88,0x58,0x22,0xa8,0xad,0xaf,0x2c, +0x5b,0xcb,0x5a,0x0a,0x17,0xc2,0xac,0xd3,0x23,0x1f,0x8e,0x3f, +0x05,0x9b,0xd2,0x11,0x6f,0x09,0xe7,0x56,0x63,0x9d,0x9e,0x89, +0xd4,0x89,0x2a,0x38,0xc8,0xd4,0x94,0x4e,0x90,0xca,0xda,0x5a, +0xac,0xc3,0xeb,0x3d,0xf7,0xc1,0x64,0xbd,0xde,0x05,0x5e,0x2f, +0x81,0xd7,0x7b,0x2d,0xea,0x71,0x38,0xa0,0xfc,0x43,0x4a,0x07, +0x40,0x91,0x7a,0x4f,0x1b,0x56,0x36,0x8b,0x30,0x06,0x76,0xfa, +0x27,0x15,0x0b,0xc6,0xdb,0xd8,0x00,0x5a,0xbb,0xa0,0xc2,0x47, +0x5c,0x4f,0x64,0x28,0xd2,0x17,0xbe,0x83,0x06,0x8e,0x22,0x41, +0x17,0xab,0x87,0xf5,0x35,0x89,0x7f,0x48,0x6c,0x25,0x74,0x7a, +0x03,0xa1,0xd3,0x4b,0x97,0x95,0xc6,0xaa,0x65,0x52,0x40,0xa9, +0x24,0xa1,0x0d,0xfe,0xa5,0xfe,0x01,0x0e,0x85,0xe8,0x2a,0xef, +0x01,0x67,0x8f,0xd4,0x59,0xd8,0xd4,0x80,0x43,0xa5,0x59,0xd0, +0xd4,0x63,0xf1,0x1e,0x74,0x36,0x60,0xe3,0x00,0x70,0x68,0x82, +0x73,0xfd,0x4a,0x73,0x2f,0x4b,0x6c,0xfd,0x1f,0x2a,0x4c,0x6a, +0x82,0x93,0x24,0xd1,0xc6,0xc2,0x7f,0xdb,0x40,0xf5,0xad,0x68, +0xa3,0x89,0x9c,0x0e,0x8d,0x3d,0x52,0x66,0x61,0x0b,0x76,0x88, +0x40,0x0b,0x41,0xb2,0xde,0xd8,0x80,0xae,0xbc,0x05,0x57,0x9c, +0x5b,0x6a,0x43,0xd8,0xfa,0xb7,0xfc,0x7a,0x57,0x71,0xfd,0x47, +0x2d,0x52,0x3d,0xd6,0x97,0xba,0x14,0x92,0xcd,0x8b,0xe1,0x28, +0xd6,0x14,0x3d,0xb7,0x13,0x0c,0xdc,0x8e,0x5e,0x5e,0xb1,0x8a, +0x96,0xbe,0x2f,0x4d,0x0f,0x9c,0xf8,0xb1,0x80,0x61,0x20,0xec, +0x94,0x16,0x77,0xe9,0x3a,0x48,0x74,0xa0,0x9f,0xf2,0x9f,0x65, +0x17,0x78,0x5c,0x07,0xe4,0x52,0x23,0x11,0x6c,0x07,0x8e,0x70, +0x21,0x97,0x7f,0xfb,0xc8,0x18,0x6a,0x3c,0x4c,0x70,0x2d,0x90, +0x88,0xd5,0x0b,0x97,0x71,0x93,0xd0,0x4a,0x1d,0x38,0x63,0xde, +0xd8,0xb9,0xf6,0x09,0xcb,0xd7,0x41,0x3b,0x03,0x84,0x9e,0xc3, +0x28,0x69,0x01,0x2e,0x38,0x1d,0x6f,0xd8,0xb6,0xe5,0xc7,0x8d, +0x27,0xed,0xb2,0xd3,0x27,0x0c,0xb0,0x8f,0x95,0xfb,0x4f,0x1e, +0xdb,0x67,0xd0,0xe4,0x1f,0x8f,0xcc,0x36,0x8d,0x98,0x68,0x18, +0xb6,0xfb,0xe4,0x94,0x12,0xbb,0x17,0x17,0x72,0x1f,0x3e,0xe8, +0x77,0xce,0xcb,0xbe,0x42,0x2d,0x0b,0xfe,0xbe,0xff,0x74,0x03, +0xfa,0x77,0x37,0x8f,0x72,0xfa,0x80,0x80,0x2d,0x1b,0xf4,0x25, +0x5c,0xf8,0x8d,0x3b,0x96,0x3f,0x24,0x22,0xd5,0x2b,0xa5,0xf6, +0x44,0x6c,0x7a,0x0b,0x6f,0xce,0x40,0x6c,0x6f,0x73,0xf1,0x1c, +0xfa,0x41,0xcb,0xa8,0x75,0x0b,0xcc,0x4e,0x18,0xc2,0x8f,0xe2, +0x94,0x4e,0xd6,0x0b,0x01,0x45,0x2c,0xcc,0x1f,0x82,0x05,0x61, +0x6f,0x1f,0x1f,0x6c,0x83,0xaa,0xe9,0xd2,0xa0,0x47,0x25,0x79, +0x17,0x8e,0x98,0xe9,0x7e,0x2b,0xdc,0x38,0xdc,0x6d,0x74,0xf6, +0x41,0x41,0x9f,0x68,0x4e,0x57,0x98,0x60,0x66,0x1f,0x34,0xbb, +0x71,0x2c,0x96,0x91,0x84,0x98,0xd9,0x13,0x73,0x06,0x3e,0x2e, +0xc9,0xaf,0xe4,0x0a,0x5e,0x97,0xc4,0xe7,0x72,0x98,0xe0,0x5e, +0xcc,0xc2,0x10,0x68,0xb6,0x20,0x6d,0xc1,0x32,0x9d,0xba,0x90, +0x5b,0xc9,0xbb,0xc4,0xc5,0x2e,0x8e,0x04,0x2d,0x83,0xbb,0x72, +0xbb,0x54,0x38,0x71,0x3c,0x29,0x2e,0xc8,0xd6,0x2f,0x84,0x00, +0xec,0x48,0x8d,0xc3,0x49,0x8a,0xb8,0x7b,0x9c,0x85,0xbe,0xa7, +0xeb,0x84,0x1f,0xa8,0x4a,0x89,0xee,0x3c,0xf1,0x19,0xba,0xc1, +0x45,0x91,0xc3,0x17,0xbc,0xeb,0x57,0x7a,0x4b,0x0c,0xd6,0xf8, +0x88,0x3e,0x80,0x3d,0xc5,0x04,0xe5,0x52,0x0b,0x26,0x70,0xf4, +0x7f,0x24,0x14,0xa6,0x38,0xe3,0x44,0xe1,0x79,0x5f,0x63,0x3e, +0x81,0x27,0x9f,0x55,0x5a,0x8b,0x4f,0x8c,0xe3,0x5c,0xc2,0x65, +0xe7,0x60,0xb4,0xd0,0x0d,0x77,0x09,0x6c,0xa2,0xd6,0x1c,0x94, +0xd4,0x74,0x24,0x81,0x30,0xde,0x95,0x6b,0xb7,0xf6,0xf5,0x49, +0xba,0xf4,0x46,0xcf,0xfe,0x1c,0xee,0x1d,0xdf,0x86,0xcf,0xad, +0x77,0x2a,0x0c,0xba,0x84,0x83,0x3e,0xc0,0xb8,0x3c,0x3c,0xc0, +0x2c,0x20,0x2b,0x0f,0x23,0xc4,0xc5,0xbf,0xf2,0x8b,0x03,0xc5, +0x3e,0xaf,0x83,0xd8,0xe7,0x3d,0x2c,0xf6,0x79,0x69,0xb5,0xc7, +0x44,0xa7,0x61,0x1f,0x89,0xdd,0xbe,0xba,0x43,0xd8,0xaf,0x24, +0x22,0x73,0x09,0xb5,0x61,0x84,0xb9,0x89,0xb8,0xc6,0x51,0x30, +0x4e,0xec,0x17,0xeb,0xb7,0xeb,0x50,0xe6,0x4c,0xf4,0x46,0x64, +0xdc,0x27,0x5d,0x0b,0x55,0xf9,0x2c,0x59,0xa7,0xef,0x18,0xff, +0xac,0x85,0xd0,0x7a,0x1b,0xc8,0x42,0x13,0xa6,0x47,0xa5,0x04, +0xc1,0xea,0x1f,0xc7,0xf7,0xe8,0x1c,0x82,0x2e,0xbd,0xa8,0xa1, +0x17,0x79,0xff,0xe8,0x77,0x70,0x32,0x2a,0xea,0x98,0x0a,0x3b, +0xed,0xc9,0x9a,0xdf,0x3e,0x1a,0x5f,0x55,0xd8,0x69,0x63,0x93, +0xc6,0x2f,0x9d,0xa0,0xdb,0x69,0xfe,0x5a,0xd5,0x6d,0x89,0x43, +0xe2,0x86,0x2d,0x1e,0xc6,0xed,0xb4,0x9a,0x68,0x9f,0x88,0x54, +0x84,0xeb,0x50,0x79,0x04,0x1f,0x3e,0xa3,0x54,0x6a,0x35,0x4c, +0x00,0xb5,0xb4,0x17,0x12,0xfd,0xae,0x86,0x59,0x9f,0x6c,0xe7, +0xf2,0x59,0xf5,0xd1,0xdd,0x1c,0x66,0xdd,0xd2,0x66,0xc9,0xac, +0x33,0x36,0xa2,0xaa,0x77,0xa5,0x65,0xe8,0xa2,0x8e,0x8a,0x1f, +0x96,0x30,0x28,0xd1,0x62,0xf3,0xdd,0xf5,0xcf,0xdf,0xd1,0x9a, +0x1b,0x48,0x83,0xe8,0xb6,0x11,0x5e,0x1c,0xe3,0xd6,0xc0,0x7a, +0x89,0x68,0xab,0x5b,0x81,0x2a,0xd4,0x60,0xaa,0x3f,0x5c,0xeb, +0x2d,0xd3,0x7a,0x76,0x02,0x31,0xbd,0x82,0x89,0x1c,0x3d,0xf0, +0xde,0x98,0xda,0x02,0x27,0x61,0x13,0x2a,0xb7,0x22,0x6f,0x60, +0x64,0x36,0x8e,0x7c,0x0d,0x53,0x2f,0xf2,0xef,0xf6,0x09,0x2e, +0x5c,0xe4,0x73,0x27,0xf6,0x15,0x17,0x74,0x83,0xf0,0x48,0x08, +0x4c,0x6a,0x29,0x16,0x06,0xa9,0x45,0x14,0xc9,0xaf,0x58,0x3e, +0x82,0xc7,0x4b,0xd5,0x57,0x3a,0xbb,0xc8,0x4b,0x9d,0x5d,0x84, +0x63,0x28,0xc1,0x2e,0xa2,0x52,0x3a,0x81,0xc0,0x73,0x6a,0xa1, +0x12,0x6a,0xf5,0x33,0x49,0x5f,0xbb,0x3f,0xf9,0x88,0x2d,0xac, +0x2e,0x64,0x4f,0x03,0x60,0xa3,0x14,0xef,0xe3,0x37,0x08,0x67, +0x77,0xa5,0xa6,0xa6,0x1c,0xa0,0xf6,0x24,0xd4,0xf9,0x35,0x81, +0xd5,0xa5,0xad,0x48,0x7c,0x87,0x80,0xbe,0x38,0xef,0x07,0xc1, +0xec,0xfb,0xfd,0xb9,0x07,0xc7,0xb3,0x8e,0xaf,0x5a,0x61,0xb3, +0x71,0xcd,0xc6,0x65,0x5c,0x18,0x6c,0xe3,0xf0,0xe3,0x58,0x2e, +0x87,0x1f,0xf3,0x17,0x26,0x24,0xff,0x94,0xbe,0x76,0x5f,0xf2, +0x51,0xde,0x5e,0x01,0x13,0x9c,0xcd,0x52,0xbc,0x77,0xef,0xc1, +0x38,0xdb,0xe7,0x50,0x1f,0x1b,0xb0,0x3b,0xfd,0xf0,0xe8,0x39, +0xea,0x3c,0x4d,0x4c,0xf5,0x2a,0xf3,0x56,0xc7,0x26,0xcd,0xe7, +0x53,0x9d,0x1a,0x3d,0x08,0x66,0x8a,0xdd,0x44,0x1b,0x6e,0x2e, +0xd4,0x50,0xd0,0x32,0x00,0xb6,0xcb,0x4b,0xda,0x05,0x85,0x51, +0xeb,0xe5,0x64,0xcd,0x96,0x65,0xd4,0x3a,0x9e,0xa4,0xc4,0x2e, +0x8b,0x88,0xb6,0x8d,0x88,0x4a,0x5c,0xbe,0xf7,0xf0,0xda,0x23, +0x82,0x93,0x7a,0x6d,0x21,0x5a,0x2a,0xda,0x5c,0x78,0xa5,0x3e, +0x83,0xe3,0xf0,0xa4,0x07,0x97,0xf2,0x2d,0xfe,0xee,0x85,0x45, +0x3e,0x70,0xa5,0x97,0xfe,0xbb,0x07,0xc7,0x1f,0xc7,0xdb,0x70, +0xa4,0xc0,0x56,0x83,0x33,0xb5,0x9c,0x41,0x60,0x48,0x1d,0x68, +0xc1,0xf1,0x74,0x0b,0xc9,0xdc,0x97,0x7e,0xa3,0xf9,0x87,0xf8, +0x93,0x28,0xab,0xcd,0x3b,0x59,0x36,0xe3,0x12,0x46,0x26,0x0c, +0x5f,0x62,0xb1,0xb1,0x38,0xf5,0xd6,0x23,0xe3,0x3d,0xd6,0x39, +0x08,0x3e,0x7f,0xe5,0x61,0x22,0xd1,0xa9,0x41,0x50,0xb6,0x29, +0x71,0x7c,0xfc,0xf8,0xb8,0x09,0xd4,0xb9,0x09,0xd1,0xa7,0x8b, +0x08,0x50,0x3c,0x18,0x0a,0x13,0x9d,0x45,0x80,0x22,0x9f,0x2e, +0x91,0x04,0x36,0x84,0x0b,0x9e,0xa8,0x6a,0xb8,0x5f,0xba,0x1c, +0x26,0x88,0xba,0xd7,0xeb,0xbc,0x35,0x0b,0x7f,0xe7,0x75,0xfb, +0x0b,0xf2,0xde,0x49,0x6d,0xb8,0xda,0x6e,0x4c,0x8d,0x7e,0x04, +0xde,0x0a,0x7e,0x97,0x3e,0x22,0xf7,0x67,0xb4,0x9e,0xfb,0x93, +0xe3,0xc5,0xb1,0xbc,0xc7,0x05,0xc3,0x6f,0x2b,0xde,0x60,0xd3, +0xb2,0xe6,0x04,0x3e,0x51,0x83,0x81,0xe0,0x62,0xfd,0xfc,0xa2, +0x57,0x30,0x9a,0x9f,0xe7,0x37,0x1c,0xdf,0x82,0x4f,0x81,0x26, +0xb4,0x1e,0x23,0xf0,0x8e,0xdf,0xe9,0x4a,0xa8,0x20,0x89,0x89, +0x16,0x24,0x31,0x02,0x19,0x8f,0xe1,0xc8,0xf8,0x50,0xb0,0x00, +0x9d,0x63,0xd0,0x4d,0x00,0x04,0x3d,0x57,0x33,0x3b,0x42,0xcc, +0xb9,0x5e,0x85,0x8f,0x05,0xfc,0xc9,0xef,0x7d,0x95,0xdf,0xbb, +0x11,0xc6,0x61,0x23,0xf3,0x65,0xa3,0x21,0x5c,0x6f,0xbb,0x35, +0x6f,0x5b,0x78,0xa8,0x0f,0xaa,0x78,0x19,0x78,0x21,0x6e,0xd1, +0x47,0xdc,0x62,0x9e,0x7e,0x8b,0xc5,0x1f,0x79,0xdd,0x49,0x78, +0x98,0xcf,0xfc,0x86,0xbc,0x6e,0x47,0x89,0xd6,0xcf,0x22,0xb0, +0x91,0x3f,0xc4,0x41,0x0e,0x61,0x0f,0xea,0xd3,0xb1,0x31,0x7f, +0x71,0xf1,0xcc,0x71,0x1f,0x38,0xda,0x9e,0x88,0x07,0x05,0xd8, +0xfd,0x81,0xca,0xa9,0xc2,0x2b,0x7d,0xbf,0x74,0x2d,0x84,0x56, +0x3b,0x41,0x68,0xed,0x2a,0xe4,0x52,0x99,0x49,0x86,0xe7,0x38, +0x47,0x9d,0x29,0x39,0x0c,0x39,0x9c,0x75,0xee,0xd4,0xe1,0xbf, +0xed,0x77,0x4a,0x7f,0x9f,0x1a,0x3b,0xa0,0xff,0x90,0xb1,0x0e, +0xf6,0x5c,0x3a,0x59,0xb2,0x3a,0xfe,0x70,0x23,0xa0,0x2c,0x87, +0xe0,0xc7,0x88,0x35,0x7e,0x70,0x73,0xd7,0x08,0xdf,0xc6,0xa1, +0x18,0x48,0xad,0x8a,0x79,0x27,0x64,0x0d,0x79,0x72,0x24,0x37, +0xfd,0xc8,0x3e,0xdb,0xb4,0x94,0x8d,0xcb,0xd6,0xc5,0x41,0x80, +0x1e,0x69,0xd2,0xed,0x7e,0x44,0x4a,0x94,0xc8,0xc6,0x12,0xb9, +0x30,0x61,0xf9,0xf6,0x5d,0x69,0xbb,0x93,0xf7,0xd9,0x42,0x9f, +0x8b,0x6c,0x70,0x18,0xf4,0x95,0x16,0x87,0x86,0x0d,0xc7,0x56, +0xfe,0x3a,0xb7,0xf7,0xf9,0xc1,0x4f,0x4e,0xe4,0x1f,0x3c,0x72, +0xc8,0x36,0x6d,0xd5,0xba,0xa5,0x6b,0x13,0xc0,0xbf,0xb1,0xc8, +0x2e,0xd1,0xed,0x79,0x64,0x6a,0x94,0xd9,0x8b,0x2d,0x31,0x79, +0xfb,0x9e,0xb4,0x74,0x91,0xd2,0x3c,0x38,0x8f,0x85,0x07,0x43, +0x88,0xb4,0xb8,0x57,0xd8,0x60,0x6c,0xe1,0x2b,0x72,0x80,0x09, +0x0d,0xd3,0x56,0x27,0x08,0xd5,0xde,0x69,0xf3,0x55,0xb0,0xc3, +0xd9,0xb7,0xb4,0x95,0xde,0x38,0x15,0xed,0x60,0xb8,0x37,0x9b, +0x77,0x8b,0xeb,0xd9,0x0f,0x98,0x58,0x79,0xda,0x88,0xb3,0x6f, +0x6b,0x2b,0xbd,0xf8,0x69,0x23,0x0c,0xf7,0x62,0xf3,0x6e,0x4b, +0x68,0xfb,0x9e,0xf5,0xe0,0x6f,0x91,0x5f,0x26,0x05,0x81,0x5b, +0xbc,0x1c,0x3e,0x77,0xee,0xc4,0xb1,0x46,0xff,0xe2,0x30,0x91, +0xcd,0xb1,0xf8,0x62,0xd1,0xe1,0xb9,0xfb,0xc3,0xb7,0x99,0x56, +0xcb,0xd8,0x80,0xf7,0xb6,0x7d,0x12,0xc7,0xa1,0x17,0x08,0x0e, +0xa7,0x35,0x56,0xe9,0xf1,0x6f,0x15,0x49,0x57,0xe2,0xb2,0x6d, +0x66,0x73,0x41,0xe2,0x17,0x2b,0xd2,0xae,0x84,0xb2,0xba,0x64, +0x1e,0xf2,0x9b,0x4d,0xc4,0x01,0x37,0x20,0xb5,0x3c,0x8a,0x84, +0x08,0xea,0xb9,0x01,0x3f,0x43,0xaa,0x4e,0x39,0x57,0x02,0x0d, +0xa9,0xa9,0x35,0x99,0xcf,0x61,0x26,0xaf,0x32,0xfa,0x06,0x6c, +0xe3,0x55,0x82,0x45,0x95,0xd1,0x3f,0xf3,0x69,0x7c,0x50,0x32, +0xef,0xee,0x7e,0x4d,0xa5,0xe2,0x4e,0x9a,0x61,0xb2,0x0a,0x13, +0xf4,0xd3,0xe6,0xaa,0x63,0xcd,0x55,0x75,0x52,0x3b,0x7b,0x1d, +0x33,0x19,0xe5,0xf5,0xbc,0x92,0xce,0x7d,0xb6,0x8e,0x5d,0x97, +0x6e,0x07,0xab,0x5a,0x07,0x74,0x62,0x1d,0x78,0x8d,0x35,0xa9, +0x69,0x49,0x69,0xf1,0xd0,0x13,0xbf,0x2b,0xeb,0x46,0x40,0xa6, +0xb5,0x86,0x90,0x43,0xc2,0xa3,0xe6,0x88,0xf7,0x44,0xb9,0x55, +0xdf,0x20,0xfc,0xa1,0xa9,0xe9,0xc2,0x80,0xa7,0x17,0x0a,0x4e, +0x1e,0x3d,0x2d,0xbc,0x26,0xbd,0x04,0x25,0x96,0x03,0x06,0x97, +0x68,0x5c,0x31,0xf6,0x45,0x6b,0x29,0x79,0xe3,0xf2,0x8d,0x9b, +0x8c,0x20,0xe1,0xfd,0x20,0x48,0xf3,0x93,0x63,0xa8,0xa5,0x3b, +0xd7,0x38,0x1b,0x76,0x8c,0xeb,0xf9,0x43,0x08,0x36,0xe9,0x6d, +0x9b,0xd1,0x1f,0x3a,0xdc,0x7c,0x7e,0xf5,0xc8,0x53,0xe1,0x7a, +0x46,0x0d,0x5c,0x92,0x0c,0xe6,0x8a,0x5e,0xc6,0x09,0x02,0xcd, +0x8e,0x15,0x2e,0xd3,0x18,0x86,0x3d,0xfc,0xa0,0x07,0x0e,0x13, +0xe5,0x65,0xbe,0x1c,0xd8,0x56,0x1f,0xcf,0x21,0xc1,0x08,0xad, +0xbe,0xba,0xed,0xd1,0x86,0x67,0x50,0x55,0xcb,0x22,0xf8,0xed, +0x82,0x96,0xb3,0x7f,0x10,0x3c,0xad,0x3f,0x3d,0xde,0xfc,0x1c, +0xaa,0xd2,0x6a,0x93,0x78,0xd9,0xbc,0xd6,0x53,0xdb,0xd3,0x6a, +0x19,0x66,0xed,0x09,0x55,0xc0,0xbf,0x90,0x5a,0xbe,0x27,0xcc, +0x1d,0x33,0x05,0x7f,0x2a,0xad,0xb6,0x84,0x98,0x1d,0x95,0xcd, +0x2b,0x1b,0xb8,0x08,0xee,0xaa,0x5c,0xc0,0xf6,0xf7,0xc2,0x35, +0x5a,0x67,0x89,0x8f,0xff,0x2d,0xfc,0x53,0x5a,0x94,0x9f,0x26, +0xf9,0x36,0x33,0x81,0x9b,0xc8,0xa5,0x6f,0xb8,0xac,0xba,0x8a, +0xb6,0x32,0x35,0xae,0x22,0x15,0xa9,0xfb,0x0e,0x9d,0x5c,0x97, +0x79,0xd1,0xb8,0xb7,0xd3,0x34,0xb9,0x71,0x58,0x00,0x2e,0x6f, +0x68,0x3a,0x11,0x04,0xb5,0x2f,0x3d,0xcc,0xcc,0x3e,0x65,0x9b, +0xb2,0x72,0xc3,0xda,0x4d,0x49,0x9b,0x17,0xdb,0xc2,0x6e,0x6c, +0x70,0x32,0x1f,0x37,0x81,0x2d,0xad,0x35,0x82,0x50,0x52,0x9b, +0x1c,0x38,0x9c,0x76,0xe4,0x94,0xf1,0xa7,0x4e,0x73,0xe4,0x0e, +0x7d,0xfb,0xe3,0xf2,0x76,0xa6,0xa3,0x41,0x60,0x73,0xf6,0xf1, +0xb1,0xec,0x63,0xb6,0x2b,0x92,0x37,0xa6,0x6e,0x5a,0x2e,0xae, +0x4a,0xc7,0xef,0x8e,0xe5,0xe3,0x3a,0xa8,0x36,0x4f,0x90,0x58, +0x0b,0x48,0x35,0x4f,0xcf,0x3e,0x38,0x3f,0xa6,0x92,0xb5,0x3d, +0xc3,0x16,0x56,0x5e,0x66,0x8f,0xcd,0xac,0xed,0x01,0xe1,0x38, +0xb7,0xbd,0xce,0xda,0x9e,0xfd,0xf0,0xc4,0xb9,0x93,0x1b,0x52, +0x37,0x25,0x6d,0x8c,0xe3,0xdd,0x6c,0xa3,0xb3,0xb6,0x53,0xcb, +0x68,0x82,0xfb,0xd5,0xc9,0x09,0x63,0x12,0x46,0x24,0xfe,0x08, +0x11,0x36,0xdd,0x52,0x22,0x71,0xd1,0x84,0x25,0x63,0x97,0x8e, +0x5d,0x6a,0x1b,0x0d,0x89,0xdd,0xe2,0xb7,0xe2,0xa2,0x4a,0x3e, +0xa1,0x20,0x5a,0x4d,0xb8,0x37,0x58,0x26,0x72,0xd0,0xa0,0xdd, +0x24,0x10,0x6d,0xe3,0x9d,0x32,0x03,0x97,0x0e,0x59,0x3a,0x68, +0xc9,0xa0,0x24,0xdb,0x79,0x90,0x2c,0x56,0xe8,0x97,0x50,0xab, +0xb5,0x1c,0x0c,0x67,0xea,0x9d,0x26,0x61,0x3d,0x74,0xd5,0xfb, +0x8b,0x3a,0x6f,0xe0,0xa8,0xa2,0x06,0x17,0xce,0x1c,0xcf,0xba, +0x76,0x59,0xbc,0x17,0x1d,0x05,0x41,0xa8,0x39,0x7f,0x79,0x09, +0x38,0x48,0x02,0x7c,0x2b,0xff,0x3f,0xfb,0xf6,0xe1,0xa4,0xb0, +0x7c,0x21,0x81,0xf5,0xd4,0xa2,0x31,0xe1,0xa7,0x0d,0xfc,0xf4, +0x5c,0xf3,0xe9,0x6f,0xf9,0xe9,0xee,0x62,0x5b,0xdf,0xcc,0x33, +0x51,0xa2,0x39,0x8b,0xfd,0x38,0x6a,0x3b,0x96,0x58,0x51,0x47, +0xae,0x15,0xa6,0x3a,0x70,0xf5,0xda,0x81,0xda,0x0a,0x36,0xd0, +0x20,0xa8,0x82,0x7d,0x8a,0x35,0x3f,0x5f,0x0c,0x96,0xb1,0x10, +0x5b,0x33,0x4b,0x02,0xdb,0xc0,0x32,0x0f,0x03,0x58,0xed,0xf3, +0xf2,0x8d,0x8b,0x7a,0x66,0x4d,0x31,0x5b,0xa6,0x96,0xc0,0x41, +0xc1,0xe5,0x28,0xfe,0xea,0x53,0x21,0xa9,0x95,0x20,0xb3,0xbf, +0xb1,0xd0,0x66,0xd3,0x8d,0x8d,0x4f,0xdf,0x18,0x8b,0x98,0xa5, +0x3f,0xe4,0xc8,0x60,0xc0,0xb3,0xd4,0x72,0x16,0x01,0xbf,0x6e, +0x5c,0x62,0x59,0x8f,0x23,0x69,0x3a,0x9d,0x94,0x9a,0xd4,0x26, +0xc6,0xdb,0x5c,0xfb,0xfa,0x46,0xb1,0xa8,0x48,0x6b,0xbd,0x20, +0x78,0x52,0xed,0x15,0xd3,0x61,0x71,0xab,0x78,0x0b,0xe8,0x45, +0xeb,0x0b,0xba,0x2e,0x8c,0xf2,0x87,0x76,0x63,0x24,0x6a,0xdc, +0xc7,0x45,0x88,0xb7,0xd6,0x47,0x6b,0x4e,0x32,0x54,0x9c,0x03, +0xe1,0x5a,0x39,0x29,0x8b,0x68,0x29,0xd6,0x7a,0xf9,0x07,0xc4, +0xb0,0xf2,0x23,0x84,0x69,0x59,0xfa,0xb8,0xe6,0x93,0xc0,0xfa, +0x1d,0xc1,0x86,0xf7,0xb8,0xc5,0xcb,0x4d,0xba,0x96,0x6a,0x6c, +0xae,0x01,0x63,0x74,0xab,0x83,0x05,0xe2,0x20,0x5a,0x47,0x24, +0x19,0x79,0xa3,0x49,0xea,0x15,0x3e,0x6b,0x05,0x3f,0x36,0x2a, +0xfc,0x7d,0x4c,0xfa,0x34,0xb6,0x95,0xdf,0x61,0xbc,0x0a,0x8e, +0x5a,0x54,0x1e,0x2b,0x14,0x59,0xad,0xb5,0x6d,0x82,0x8e,0x6d, +0xf6,0x7c,0xea,0x3c,0x98,0xf4,0x0b,0xc6,0xa5,0x82,0xe1,0x0a, +0x8c,0x97,0x1e,0x9e,0xca,0xca,0xb4,0xdd,0x90,0xaa,0x33,0x99, +0x6f,0xc7,0xfa,0x66,0x9a,0xfb,0xef,0x75,0x9a,0xfb,0x45,0x3a, +0xc1,0x95,0x1e,0xc4,0x76,0xa4,0xc7,0x04,0x19,0xad,0xc6,0x05, +0xa0,0x15,0xd6,0x35,0x5d,0x1c,0x91,0x77,0xf5,0xf8,0xd9,0xdd, +0x67,0x6d,0x57,0xae,0x4c,0x5d,0xb6,0x4a,0x38,0xfd,0xb8,0xda, +0x64,0x67,0xa2,0x2d,0x34,0x5c,0xa8,0x7b,0xcb,0x0b,0xf8,0x2a, +0x64,0xba,0xdd,0x58,0xb2,0x5a,0x64,0x5b,0x15,0x84,0xf7,0x1c, +0x02,0x07,0xd0,0xea,0x45,0x44,0xa4,0x70,0x4c,0xe1,0x05,0x0d, +0xb9,0x39,0xa9,0xbf,0x96,0xa0,0x08,0x91,0x2d,0xc8,0x57,0x67, +0x87,0xfa,0x10,0xe4,0xc5,0xfc,0x6e,0x43,0x08,0xd4,0xaf,0x70, +0x76,0x30,0x1b,0x50,0xdc,0x68,0xfc,0xcc,0x35,0xea,0xc4,0x55, +0xa4,0x21,0xd7,0xb9,0x9d,0xa9,0xad,0x60,0xfe,0x3b,0xc7,0xda, +0x0f,0xf8,0x2b,0x41,0x1e,0x11,0x19,0x31,0x75,0xbc,0x31,0xa4, +0x70,0xe8,0xe7,0x4f,0x85,0x99,0xb9,0x07,0x23,0xf6,0x8c,0x34, +0xe7,0x9d,0x32,0xaa,0x11,0x52,0xc8,0xe8,0x5d,0x27,0x4f,0x1c, +0xdd,0x99,0x6b,0xbf,0x45,0xca,0x39,0x36,0x73,0xc4,0xf0,0x51, +0x33,0x44,0xde,0xa9,0xb9,0x7f,0xc3,0x34,0xae,0xee,0x4f,0x86, +0xc2,0x4c,0x67,0x9c,0x86,0xee,0xb4,0x86,0xc0,0x45,0x6a,0xa9, +0x1b,0x9f,0x18,0x7c,0x38,0x39,0x37,0x22,0x47,0xd3,0x8e,0x9d, +0x33,0xfe,0xd4,0x79,0xb6,0xdc,0x2a,0xbc,0x0f,0x2e,0x69,0x65, +0x3a,0x16,0x0c,0x75,0xce,0x3f,0x3c,0x71,0xfe,0xa4,0x6d,0xf2, +0xf2,0x0d,0x6b,0x36,0x2d,0x13,0xb3,0x72,0x3b,0xda,0x1e,0x17, +0xce,0x82,0x11,0xb4,0xfe,0x5d,0x12,0x1e,0x82,0x4b,0x9a,0x89, +0x6f,0xaa,0x66,0x3f,0xcc,0xc8,0x3a,0xc9,0x27,0xaf,0x5e,0x6d, +0x91,0x2d,0x9f,0x77,0xf4,0x84,0xce,0x26,0xff,0x0a,0x66,0x70, +0x6d,0x7e,0x3a,0x04,0x66,0xb7,0xc4,0x19,0xd8,0x2c,0x80,0xe4, +0xcd,0x25,0x62,0xb7,0xb7,0x3f,0x66,0xfc,0xcc,0x95,0xb8,0xf0, +0x17,0x88,0x7c,0x05,0x93,0x39,0x2c,0xe0,0x0f,0x36,0xbd,0x05, +0x4e,0xe1,0x8a,0x42,0x3c,0x58,0x84,0x0a,0xa3,0x30,0xa3,0x04, +0xfe,0x16,0x0f,0xa7,0x46,0xbe,0xe0,0x55,0xc2,0xf5,0x2a,0xad, +0x79,0x15,0xae,0xdd,0x6b,0x4c,0x22,0xb0,0x02,0xe6,0x88,0x5a, +0xc7,0x4a,0xe0,0xbd,0xb9,0xd6,0x4b,0x98,0x2e,0x6e,0x16,0x04, +0xb3,0x5a,0xe3,0x74,0x71,0xb3,0x7c,0x7e,0x33,0xae,0x4b,0xfa, +0xe1,0xc9,0xe2,0x8a,0x9b,0xcd,0xff,0x08,0x93,0xb8,0x36,0x38, +0x19,0x08,0xd3,0x1a,0xe3,0x64,0x6e,0x70,0xc8,0x99,0x04,0x56, +0xaa,0xd4,0x60,0xad,0x7f,0x06,0xae,0xe8,0x6a,0xab,0x40,0xb1, +0xde,0x4d,0x6d,0xab,0x0f,0x75,0x9a,0xc2,0x67,0xf6,0x30,0x6d, +0x3e,0x24,0x10,0xe0,0x32,0x53,0x64,0xdd,0xa5,0x50,0x47,0x66, +0x21,0xd8,0x16,0x4e,0x09,0x72,0x9d,0x15,0x22,0xcc,0x47,0x8f, +0x9b,0xfd,0x76,0xfe,0x1a,0xea,0xfc,0x84,0x1c,0x36,0x47,0xcd, +0xb6,0x15,0x51,0xb3,0xcd,0x44,0xd4,0xec,0x79,0x73,0xd4,0xac, +0xd2,0x15,0xfd,0x1d,0xa5,0x3f,0xa3,0x3c,0x8a,0x1c,0x2a,0xf7, +0x18,0x6a,0xfd,0xda,0x19,0x08,0x7c,0x73,0xf7,0x3a,0x7c,0x93, +0x66,0x8f,0x37,0x57,0xa8,0xa7,0xe4,0xdb,0x67,0xcf,0xdc,0xbe, +0x75,0x6e,0x90,0x97,0x69,0x88,0x79,0x97,0x61,0xe0,0x99,0x5b, +0x82,0x95,0x9c,0x9b,0x4b,0x41,0x0a,0x35,0xbd,0xe7,0xb3,0x15, +0x3a,0xaa,0xd4,0x31,0x9c,0x60,0xf3,0xde,0x99,0x17,0x4d,0x18, +0xfc,0x35,0x91,0x37,0xb5,0x8e,0xe4,0xd8,0xde,0xa5,0x72,0xb6, +0x70,0x1c,0x3f,0xee,0x96,0x36,0x4e,0xc6,0x4d,0x6c,0x04,0xad, +0xb3,0x8c,0x08,0xd3,0x79,0x51,0xa5,0xe9,0xbc,0x87,0x9b,0xce, +0xaf,0xe1,0x48,0x01,0x37,0x9d,0xa9,0x55,0x5b,0x02,0x47,0xdc, +0x98,0xc4,0x0d,0xe5,0xca,0x3d,0x03,0x57,0x20,0x22,0xd4,0x5f, +0x86,0xc0,0x7c,0x44,0x98,0xe9,0x8d,0x87,0xc0,0x43,0xc4,0xdf, +0xb5,0x21,0x3b,0x85,0xb2,0xb8,0x28,0xa1,0xb5,0x98,0x14,0xb4, +0x5e,0x5d,0x12,0x23,0xb2,0x57,0x9d,0x4e,0x3d,0x73,0xd9,0x78, +0x64,0x80,0x02,0x8a,0x56,0xa2,0xa6,0x06,0x68,0xbb,0xb6,0x26, +0x0c,0x8b,0x1b,0x19,0x3b,0xc2,0xf6,0x56,0xac,0x61,0xfb,0xf3, +0x75,0xbf,0x43,0x55,0xe3,0x65,0xf6,0xcc,0x5f,0x5b,0x27,0x8f, +0x4b,0x9a,0xb8,0x74,0xa2,0x89,0x0b,0xab,0x15,0x2a,0x54,0xf7, +0xc4,0xea,0xf8,0xc4,0x49,0xd0,0x0e,0xe4,0x1a,0x68,0x0d,0x5f, +0x33,0xff,0x00,0xa5,0x9f,0x85,0xd8,0x88,0x79,0x2b,0x9b,0x33, +0x37,0xbf,0xb4,0x17,0x67,0xad,0x46,0x8a,0xd4,0xb1,0x6b,0x52, +0xd7,0x26,0xa5,0xc5,0x71,0x4d,0x5c,0x53,0x68,0x62,0x89,0x5a, +0xff,0x8f,0xfc,0xc8,0xf5,0x08,0x57,0xc5,0x5e,0x42,0x15,0x07, +0x9b,0x55,0xf1,0x33,0xa1,0x8a,0x4f,0xd9,0xfe,0xbb,0x79,0x66, +0xcb,0x2d,0xc8,0x3a,0x79,0x22,0x33,0x8a,0xb1,0x39,0x51,0x23, +0xd6,0x2c,0x4c,0x8a,0x88,0x9e,0x3d,0xdf,0x86,0xeb,0xae,0xfd, +0x47,0xd3,0x8e,0x67,0x19,0xf7,0x74,0x9e,0x25,0xb7,0xe8,0xc7, +0x07,0x72,0x73,0x31,0xde,0x6d,0x2f,0xf0,0x81,0x9c,0xc1,0x85, +0xc3,0xa6,0x65,0x9b,0x16,0xf3,0xc1,0x4e,0x6d,0x8e,0xeb,0xc3, +0x58,0xe4,0xd2,0x8e,0x9e,0x1d,0x29,0x5c,0x72,0x0f,0x1e,0x4f, +0x3b,0x91,0x6d,0x4c,0xef,0x34,0x53,0x76,0xe3,0x32,0x25,0x91, +0xba,0x4c,0x23,0xeb,0x53,0x36,0x2e,0xdd,0x20,0x94,0x8d,0x90, +0x25,0xbc,0x7a,0x21,0x7b,0x13,0x20,0x6b,0x51,0x83,0x55,0x8f, +0x94,0x99,0x82,0x20,0xba,0x27,0xd7,0x05,0xad,0xba,0xc4,0xed, +0x13,0x5c,0x90,0x8d,0x82,0x34,0x96,0x2f,0x20,0xab,0x9e,0xe3, +0x6e,0xbd,0x48,0xb1,0xd3,0x81,0x5c,0x39,0x7b,0xea,0xe8,0xde, +0x23,0x22,0x44,0x8e,0x1a,0xcf,0xfe,0xbf,0x92,0xc1,0xb9,0x13, +0x6d,0x20,0x16,0x97,0x6e,0x25,0xea,0xc2,0x71,0xfd,0xe3,0x7b, +0xd8,0x41,0x0e,0x38,0x14,0x70,0x7c,0xd0,0x91,0xd6,0x7f,0x48, +0x20,0x0f,0x5a,0x14,0x60,0x04,0xb7,0xd7,0x98,0xfe,0x8a,0xde, +0xfa,0xff,0x5e,0x62,0xab,0x99,0x4f,0x90,0xf3,0xe0,0x28,0x6a, +0xb6,0xa3,0xf5,0x1f,0x11,0xb8,0x08,0x2d,0x45,0xcd,0xf6,0xf4, +0xbb,0x6f,0x2a,0x4e,0xa7,0x83,0x63,0x1e,0x3f,0x5d,0x8f,0xba, +0x1c,0x27,0x8b,0x73,0x0c,0x31,0x23,0x7a,0xc5,0xfb,0xd8,0xc5, +0x71,0xc0,0xdc,0x92,0x5b,0xba,0xcc,0x5e,0x34,0xa9,0xd7,0x3b, +0x6b,0x6e,0xa6,0xb5,0xde,0xcc,0x79,0x73,0x33,0x6d,0xcd,0xcd, +0x58,0x73,0xfd,0x73,0x5d,0xf3,0x14,0x7f,0x99,0x55,0xbe,0x8a, +0x35,0xa0,0x05,0xd4,0x90,0xe0,0x3a,0xb6,0xa8,0xfc,0xad,0x40, +0xb2,0x7a,0x5e,0x06,0x27,0x30,0x1a,0x32,0x8e,0x6f,0xdb,0x77, +0xcc,0xb8,0x5e,0x3e,0x39,0x69,0xf7,0xd0,0x01,0xd3,0xa6,0x8c, +0x88,0x31,0x0d,0xd8,0x62,0xc8,0xdd,0x7c,0x3a,0xf3,0x17,0xbb, +0xc7,0x67,0xfa,0xfb,0x74,0x1f,0x3c,0x64,0xd0,0x08,0x7b,0x94, +0x9c,0x0d,0x30,0x7d,0x90,0xa4,0x34,0x20,0x1d,0x31,0x39,0x18, +0x92,0x1b,0xe9,0xff,0xa3,0xfb,0x5d,0x21,0x3a,0xe7,0x73,0x58, +0x54,0x23,0x53,0x87,0x3f,0x5d,0xd4,0x6d,0x77,0x37,0x3c,0xf8, +0x80,0x2e,0xc4,0x65,0x41,0x87,0x39,0xde,0x16,0x78,0x4c,0xda, +0xfd,0xcb,0xa6,0x47,0x1f,0xb5,0x3f,0x49,0x83,0x79,0x1d,0xa7, +0x7a,0xe8,0xc8,0xa7,0x32,0x3c,0x83,0x56,0x84,0x67,0x50,0x73, +0x78,0xc6,0x77,0x03,0x71,0x31,0x81,0x65,0x18,0x22,0xd6,0xa7, +0xa8,0x1e,0x9d,0x61,0xe8,0x23,0x14,0x08,0x55,0xc5,0x50,0xe9, +0x07,0xee,0x23,0x8b,0xb5,0xcd,0xd4,0x28,0x54,0x2a,0xb8,0xc9, +0x19,0x24,0xb7,0xfc,0xae,0x9e,0x16,0x70,0x75,0x40,0x57,0x82, +0x8d,0xe5,0x7b,0x38,0x94,0xdb,0x46,0x9e,0xe8,0xae,0xcd,0x21, +0x2a,0x04,0xbe,0x12,0x94,0xa1,0xcd,0x9e,0x70,0xf9,0x5f,0x73, +0x14,0xb1,0x2f,0xac,0x86,0x4e,0x21,0x85,0x85,0xf6,0xd4,0xfa, +0x08,0x89,0x94,0x05,0x7f,0xa8,0x93,0xc9,0x8a,0xab,0x2e,0x23, +0x37,0xb4,0xa7,0xaa,0x18,0xdc,0xcc,0xbb,0x49,0xe3,0x57,0xde, +0x10,0x0c,0x41,0xaf,0x6e,0xbd,0xfb,0xa3,0xd9,0x2d,0x0c,0xb2, +0xe7,0xf6,0xaf,0xaf,0x1a,0x1e,0xd2,0x1f,0x9d,0xd0,0x39,0x38, +0x2b,0xdb,0xb4,0x41,0xce,0xce,0xcb,0x02,0x67,0x70,0xca,0xed, +0x1f,0x6e,0xb2,0xd2,0x9a,0x95,0x26,0xab,0xbd,0x1a,0x62,0xcb, +0x77,0xd4,0xfa,0x23,0xd1,0xff,0x9a,0xde,0x92,0xb2,0x66,0xca, +0x33,0x82,0x3f,0xa3,0x4a,0xe5,0xe9,0x5c,0x3f,0x5e,0x25,0x18, +0xc8,0x3f,0x4e,0xdd,0x56,0xe4,0x6b,0x76,0x78,0xea,0xdc,0x8a, +0x4b,0x0a,0x94,0xf4,0x2f,0xd6,0x80,0x70,0x3c,0x1a,0x1f,0x08, +0xf1,0x38,0x58,0x6c,0xca,0xe3,0x78,0xe6,0x42,0x6d,0x45,0xa6, +0xb0,0x5d,0x82,0x4a,0x27,0x48,0x15,0x2c,0x1c,0x53,0x74,0xa2, +0xb3,0x29,0xc2,0x93,0x63,0x9c,0xc1,0xab,0x82,0xe8,0xcc,0xc8, +0xef,0xda,0x9d,0x8c,0x95,0x1a,0x8d,0x08,0x44,0xe2,0x66,0xca, +0x1e,0x69,0x80,0xda,0x7f,0x9d,0xb9,0x0e,0x75,0x8d,0x0a,0xa5, +0xaf,0xc8,0x3d,0x3b,0x7d,0x45,0x30,0x9d,0x0d,0xa0,0x75,0x93, +0xf4,0xd5,0x04,0x56,0x1f,0x37,0xd0,0xba,0xcb,0x74,0xef,0xad, +0xe6,0x6c,0x30,0xd9,0x8c,0xef,0x54,0x68,0xe9,0x89,0x9d,0xb8, +0x42,0xde,0x27,0x38,0x34,0x31,0xd8,0xad,0x83,0x83,0xc3,0xeb, +0x0e,0xfc,0x13,0x04,0xbf,0x7e,0xf8,0xf7,0xdf,0x6e,0x0f,0x31, +0xd8,0x1e,0x86,0x60,0x7f,0x35,0x28,0x24,0x08,0x5d,0xf8,0x27, +0xc8,0xcf,0x37,0x6d,0x96,0x0b,0xf2,0xf2,0xf9,0x27,0x70,0xc9, +0x0d,0x0a,0x14,0x5b,0xbd,0xc1,0xcd,0xf8,0x35,0xaf,0x3a,0xe8, +0x9f,0x8d,0x5f,0xd3,0xec,0xa1,0xf8,0x6c,0x83,0xf9,0x35,0x81, +0xfc,0x1a,0x67,0x74,0x09,0xce,0x2f,0xe0,0xd7,0x14,0xf2,0x6b, +0x5c,0xc0,0x39,0x37,0x28,0xc0,0x7c,0x8d,0x57,0xe3,0x46,0xaf, +0xbc,0xf4,0x6b,0x6e,0xbf,0x7f,0xd7,0xec,0xb6,0xf9,0x53,0xf7, +0x50,0xfb,0x86,0xf4,0x13,0x9f,0x9a,0x5a,0x36,0x20,0xfa,0x57, +0xee,0x17,0x66,0xae,0xde,0xd1,0xd9,0xf1,0x55,0x47,0xbd,0xfa, +0xfd,0xbf,0x3e,0x37,0xbb,0x6f,0xae,0xde,0x47,0x0d,0x09,0x09, +0xd6,0x7b,0x26,0x2f,0xd7,0xb4,0x49,0xce,0xcb,0xcb,0xd5,0xaf, +0x09,0x09,0x16,0xd7,0x84,0x34,0xf5,0x76,0x75,0x7d,0xe3,0xad, +0xfb,0x6c,0xde,0x7a,0xfb,0xd6,0xed,0x96,0x79,0xa7,0xba,0x9b, +0xda,0x2f,0xb8,0x9f,0xee,0x7d,0x7a,0xfe,0xbc,0x69,0xa3,0x9c, +0x9d,0x7f,0x5e,0xf7,0x3e,0xed,0x17,0xae,0x5f,0xe3,0xe6,0xd5, +0xa8,0xd1,0x6b,0x4f,0x7e,0x4d,0xd0,0xeb,0x3b,0xef,0xdf,0xbb, +0xdd,0x36,0xbf,0x4a,0x4f,0xfe,0x58,0x7d,0xf5,0x57,0xb9,0x70, +0x81,0x5f,0x73,0x31,0xef,0x82,0xfe,0x2a,0x62,0xa7,0x9b,0xd6, +0xdf,0x4d,0xb8,0xa6,0xeb,0xaa,0xf6,0x0b,0xea,0x8f,0x8d,0xb1, +0x71,0x40,0x96,0xde,0x6a,0x61,0x16,0x34,0x86,0xc6,0xf9,0xfd, +0xf5,0x56,0xfb,0x35,0x0e,0x68,0x43,0x6b,0x6e,0x21,0xcf,0x5c, +0x0b,0xb1,0x9f,0xf0,0x28,0x6d,0xa6,0x52,0x7b,0x3b,0xc2,0x9c, +0xc9,0x9f,0x7c,0x22,0x9e,0x64,0xdf,0xe3,0x49,0x68,0x81,0x55, +0xca,0xa2,0x08,0xab,0xaa,0xc9,0x2a,0x24,0xa0,0x2f,0x26,0x70, +0xb9,0x4a,0x1d,0xb9,0x71,0x50,0xf7,0xcd,0x23,0x30,0x52,0x87, +0x39,0x1c,0xcd,0xd6,0xfc,0xcf,0x00,0x32,0x71,0x33,0x62,0x2e, +0x14,0x53,0xab,0x86,0x44,0x69,0x4a,0xd8,0xb0,0x7b,0x12,0x06, +0x9e,0xd7,0xc7,0x58,0xa5,0x8b,0x85,0xa3,0xd6,0x5b,0xed,0xd1, +0x05,0x63,0xee,0xf6,0xc4,0x6d,0xd4,0xa5,0x88,0x0f,0xc4,0x9b, +0x44,0x0b,0xc6,0x30,0x35,0xaf,0x4c,0x0a,0x86,0x66,0x71,0x72, +0xdf,0x39,0x73,0x27,0x8c,0x31,0xf6,0x2e,0x0e,0xd5,0x4d,0xc2, +0x9c,0x2b,0x5c,0x66,0x3c,0x25,0xb8,0x55,0xb7,0x01,0xf5,0x2d, +0xe1,0x09,0xf4,0x7b,0x23,0x29,0x1d,0xad,0xf5,0x50,0xf5,0xc9, +0xd7,0x47,0x2c,0xba,0x73,0x9d,0x6d,0xfb,0x26,0xef,0xdd,0xdb, +0xa6,0x79,0x68,0x8b,0xc6,0x26,0xc1,0xae,0x8d,0xff,0xe0,0xc0, +0xcd,0x1e,0xdd,0xa0,0xad,0x9a,0x5f,0x74,0xe8,0xc5,0xf3,0xa2, +0x71,0x41,0xa6,0x85,0x72,0x90,0xff,0xb8,0x96,0x2d,0xfc,0x0f, +0xe5,0x9b,0xc0,0xc0,0xbe,0xaf,0x88,0x41,0xd3,0x3e,0x6a,0x93, +0x54,0xa8,0x83,0xb3,0xef,0x68,0x5b,0x3d,0xa9,0xd3,0x5c,0xae, +0xc1,0x47,0xea,0x1a,0x1c,0x33,0x53,0x85,0xd2,0xe6,0x08,0xdb, +0xce,0x82,0xd4,0xa1,0xf5,0xec,0x45,0x78,0xf3,0x26,0x12,0xf7, +0x0f,0x8c,0xe1,0xf6,0x2d,0xa1,0x56,0x4e,0xe4,0x03,0x0c,0x57, +0xd4,0xec,0x81,0x4f,0x32,0xf2,0x0e,0x1f,0x3d,0xc2,0x4d,0xea, +0xb4,0xa4,0xb5,0xf1,0xd4,0xb2,0x17,0x89,0x5e,0x36,0x3f,0xd6, +0x76,0x7e,0x74,0xc2,0x8a,0x1f,0xd3,0xd3,0xf6,0x27,0x1f,0xa1, +0xd5,0xa2,0x88,0x2f,0x25,0x55,0x09,0x5e,0x17,0xa2,0x9a,0x09, +0x47,0xc5,0xa0,0xc6,0xa8,0xfc,0x11,0x88,0xd9,0xe6,0x18,0xcd, +0x8b,0x6a,0x60,0x63,0x24,0x7f,0x04,0xf1,0xe3,0xca,0x18,0xcd, +0x8f,0x7a,0x8c,0x66,0x03,0x2e,0x8c,0x3e,0xea,0x31,0x9a,0x8a, +0x1a,0xdc,0x14,0x6b,0xbc,0x0a,0xc2,0x0c,0xfd,0x12,0xea,0x3c, +0x8a,0x20,0x64,0x71,0xa9,0xf9,0x56,0x08,0xd0,0x73,0xae,0x2a, +0x56,0x7f,0x0b,0xd5,0x25,0xdc,0xa0,0xa8,0xa3,0xe2,0x87,0x26, +0x0e,0x4e,0xb4,0xd8,0xfc,0xcb,0xfa,0x97,0x1f,0xc4,0xe2,0x9b, +0x73,0x74,0xeb,0x08,0x8f,0xaf,0x8b,0x6f,0xe5,0x29,0x22,0x90, +0x40,0xeb,0xa5,0xde,0x8c,0x35,0x6c,0xba,0xb3,0xf1,0xf7,0xcf, +0xc6,0xb3,0xd4,0x60,0x4b,0x5c,0x63,0xba,0x44,0x76,0xb7,0x68, +0xd9,0xfe,0xcb,0x0d,0xe2,0xa4,0xcf,0xfe,0xa6,0xb8,0xd2,0x0f, +0x56,0x62,0x9c,0x3e,0xfb,0xc7,0xb0,0xba,0xd4,0xb8,0x45,0xd7, +0xf9,0xcb,0xb8,0xce,0x0f,0xfe,0x47,0xa5,0xf5,0xcf,0x13,0xbc, +0x82,0x69,0x7f,0x4a,0xd0,0x19,0xe8,0xba,0xad,0xef,0x84,0x9d, +0xc0,0x3b,0xe1,0xed,0x1f,0x4d,0x73,0xf5,0x4e,0x08,0x69,0xe2, +0x5a,0xd9,0x09,0x6d,0xd4,0xbc,0xa2,0x83,0xbc,0x13,0xc6,0x07, +0xf3,0x4e,0x08,0x36,0x77,0x42,0x1e,0xef,0x04,0xa5,0xb4,0x3a, +0x3c,0x50,0x5f,0x7f,0x84,0x17,0x5e,0x58,0x95,0x75,0x86,0xaa, +0x9e,0xf8,0xe2,0xa3,0x1b,0xce,0x70,0x25,0x65,0x55,0x60,0x93, +0xaa,0x75,0x16,0xa5,0xd2,0xbb,0x40,0x15,0xe6,0xb9,0xe1,0x3c, +0xa9,0x22,0x48,0x11,0x57,0xc0,0x36,0x15,0x01,0xa6,0x7b,0xe1, +0x61,0xcd,0x4b,0xfa,0xd0,0x51,0xd5,0xf7,0xec,0xc4,0x92,0x65, +0xc5,0xe3,0xf5,0xe3,0x8f,0x47,0x99,0x6e,0x81,0x9e,0xe3,0x16, +0x68,0x63,0x99,0xd2,0x2e,0x42,0x32,0x3b,0x7f,0x75,0x85,0xaf, +0x2f,0x0b,0x80,0xa0,0x27,0x8c,0xf1,0xe3,0x4a,0xfb,0x62,0x36, +0x76,0x87,0xef,0xe6,0xaf,0x8d,0xa2,0xce,0xbb,0xc8,0x8e,0x23, +0xeb,0x8e,0x53,0x97,0x00,0xd2,0x87,0xf2,0xd1,0x86,0x23,0xf4, +0x84,0x98,0x2e,0x09,0x16,0x50,0xdd,0x1b,0xad,0x69,0xcd,0x3a, +0xbc,0xd9,0xbe,0x9a,0x41,0xdd,0xf6,0x6a,0xed,0x1b,0x30,0x18, +0x6f,0xb2,0x87,0x01,0x5a,0x6a,0x92,0x3c,0x22,0x69,0xf4,0xd2, +0x31,0x26,0x76,0x68,0x3e,0x47,0x34,0x3f,0x6e,0x4f,0x18,0xb8, +0x78,0x48,0xec,0x60,0x5b,0xf6,0xbc,0x77,0x69,0xee,0x15,0x49, +0x3c,0xc7,0x0b,0xb5,0x08,0x1b,0xf2,0xe7,0xb8,0x41,0x84,0xa7, +0x5e,0xc5,0x3e,0xf3,0x44,0xed,0x80,0xca,0xa6,0x07,0x6b,0xd3, +0xa9,0x43,0x3a,0x49,0x9d,0x8d,0x75,0xcd,0x5e,0xa4,0x75,0xbd, +0x17,0xef,0x46,0x6b,0x03,0x56,0x09,0x81,0x6a,0x04,0x57,0x57, +0x64,0x60,0xd2,0xad,0xc1,0xca,0x70,0xb1,0x44,0x8c,0x15,0x84, +0x6e,0x61,0x77,0x60,0x95,0x4e,0xe8,0x56,0x02,0x6e,0x62,0x99, +0x23,0x11,0x53,0x45,0xf1,0xf0,0x3b,0xb0,0xa5,0xa2,0xb8,0xb9, +0x24,0x18,0xe1,0x66,0x99,0xc3,0x85,0x12,0xb9,0x91,0x3e,0x40, +0x4c,0xa3,0x16,0x7c,0x0c,0x7a,0x60,0x8a,0xaa,0xa5,0xe0,0xb0, +0xdb,0xbc,0xee,0x03,0x7d,0x19,0x44,0xa1,0xb2,0x33,0x71,0xe7, +0x3a,0x47,0x5b,0x85,0x73,0xee,0x70,0x11,0x70,0x5f,0x2f,0x6e, +0x4d,0xeb,0x11,0x82,0x93,0x6e,0xc3,0x3e,0xbd,0x5e,0x5f,0x70, +0x1f,0x5a,0xac,0xad,0xa5,0xf6,0x3d,0x89,0x72,0x24,0xed,0xc4, +0xf2,0x73,0xb6,0xd0,0xaf,0x90,0x8d,0x08,0x80,0xbe,0xd2,0x92, +0x46,0x21,0x01,0xd8,0x1a,0xab,0x5e,0x18,0x6c,0xf3,0xa4,0x30, +0xf7,0xec,0xd1,0x33,0x16,0x0a,0xb5,0xad,0x23,0xb2,0xab,0x3d, +0x24,0xb9,0x36,0xb3,0xbf,0x8c,0x13,0x26,0xca,0x05,0xc1,0x44, +0xc6,0xe1,0x9a,0x55,0x2e,0xf6,0xc1,0x1d,0x05,0xd2,0xe5,0xec, +0xd4,0xb4,0x7d,0xf6,0x10,0x7d,0x52,0x10,0xde,0x36,0x85,0x5a, +0xb9,0x18,0x8e,0x5b,0x61,0xa8,0xb4,0x51,0xe1,0xa2,0x08,0xaa, +0x40,0xbb,0x3c,0xbc,0x0e,0x1d,0x20,0x3f,0x8f,0x55,0xc7,0x83, +0xd0,0x04,0xab,0x71,0x89,0xa4,0x0f,0xb5,0xfc,0x0f,0xef,0x9b, +0xe6,0xeb,0x43,0x2d,0xa8,0x51,0xc3,0x3f,0x82,0xcc,0x43,0xad, +0x83,0x5a,0x50,0x74,0xf8,0x05,0xad,0x39,0x8b,0xb4,0xf0,0x3f, +0x5c,0x60,0x52,0x4a,0xc3,0xe0,0x8b,0xba,0xfd,0x8f,0xb5,0x7f, +0x80,0x05,0x75,0xfa,0x96,0xcc,0xa7,0x0e,0x5f,0x88,0x70,0xd3, +0xc0,0x50,0x46,0xa9,0x6d,0x47,0xb3,0xa1,0x68,0xc3,0x15,0x90, +0x6d,0x67,0x1d,0xf5,0xc6,0x96,0x0d,0x20,0x38,0x50,0x45,0x57, +0x89,0x5a,0xb5,0x21,0xec,0x04,0x17,0x10,0x07,0x09,0x78,0x8a, +0x60,0xb0,0x93,0x82,0xac,0x6b,0x37,0x37,0x48,0x7f,0x80,0x4e, +0xe6,0x60,0xd6,0x23,0xb0,0x58,0x12,0x63,0xf8,0x77,0xf5,0xe5, +0x47,0x78,0xea,0xe5,0xc0,0x3a,0xff,0xed,0x89,0x4f,0x3f,0x36, +0xaf,0x18,0xc1,0x69,0x7c,0x04,0x3b,0x8a,0x01,0x2c,0xa8,0x2b, +0x9a,0x8b,0x01,0x5c,0x69,0xc1,0xa9,0x5f,0xdd,0xd5,0xd5,0x0a, +0x0b,0x4e,0x47,0x18,0xca,0xa5,0x0b,0x18,0x0a,0xbe,0xd1,0xeb, +0x17,0x24,0x45,0xc5,0xd8,0x46,0x46,0x25,0x26,0x1b,0x76,0x9c, +0x4f,0xcb,0xbe,0x6a,0xcc,0xf7,0xe8,0x23,0xa3,0x5d,0x9f,0x4e, +0xe8,0x8e,0x0d,0x4c,0x39,0xfd,0x9f,0x3d,0x28,0x28,0x3a,0x7a, +0xd9,0x56,0xd1,0x3e,0x6b,0x73,0x55,0xde,0xc4,0x03,0xe2,0x85, +0xb3,0x78,0xa3,0x63,0xbc,0x59,0xd4,0x2d,0x09,0xbb,0x6b,0xc1, +0x5f,0x04,0xd9,0xec,0x2d,0xa8,0x25,0xfd,0xb9,0xfa,0x8f,0x35, +0xbf,0xae,0x8b,0xcf,0x36,0xa7,0x10,0x5a,0x28,0xa2,0xbd,0xc2, +0x0c,0x0f,0x1e,0xea,0xcc,0x91,0x6a,0x8a,0x9f,0x41,0x5b,0xa2, +0xa7,0x16,0x56,0xca,0x9b,0x11,0x07,0x67,0x5c,0xcf,0x55,0xee, +0x76,0xb8,0xe2,0xfc,0xb7,0xe4,0xe3,0xa0,0xe2,0xac,0xbf,0x61, +0x96,0xf4,0x01,0x41,0xbb,0x42,0x4a,0x9b,0x69,0xad,0xd4,0x4f, +0xf8,0xed,0x55,0x6d,0x4c,0x2f,0x5a,0xeb,0x06,0x91,0x98,0xb3, +0xd6,0x81,0x25,0x8a,0x80,0x80,0x8d,0xcc,0x89,0xe0,0xf0,0xf2, +0xb5,0x44,0x31,0xa5,0xc8,0x5c,0x1d,0xb5,0x56,0xa7,0x48,0xce, +0xc3,0x0e,0x9c,0x3e,0x95,0x71,0xe0,0xb3,0x7d,0xba,0xf4,0x29, +0x73,0xc2,0x90,0xc1,0x43,0x27,0xb8,0xd8,0x5b,0xe1,0x0d,0x5a, +0xef,0x35,0xe9,0x23,0xdc,0xa8,0x57,0xd3,0xba,0x69,0xfc,0x01, +0x5f,0xdf,0xca,0x7a,0x70,0xdf,0xfb,0xbc,0x9b,0x9b,0x77,0xbf, +0x8e,0x3f,0xdc,0xea,0xff,0xda,0x3e,0xbb,0x5a,0xe8,0xc0,0x3d, +0xa7,0xed,0xd7,0xca,0xa7,0xce,0xa6,0xe7,0xe4,0x9c,0x9d,0x32, +0xc4,0x14,0x2b,0x0f,0x1e,0x38,0x35,0xd4,0x64,0x15,0x08,0xa3, +0x1d,0x71,0x04,0xfa,0x08,0x77,0x84,0x82,0x72,0xfe,0x76,0xfc, +0xe0,0x07,0x2a,0x0f,0xe4,0x32,0x78,0x84,0xf0,0x31,0x3e,0xa0, +0xfb,0x18,0x8f,0xa4,0x75,0x85,0x9d,0x55,0xef,0x12,0xe9,0xa8, +0x82,0x97,0x27,0x7a,0xe1,0x6f,0xe5,0xf5,0x78,0xbf,0x5a,0x9a, +0xc5,0xdd,0xe6,0x3b,0x1b,0x84,0xb8,0x63,0x0f,0xfd,0xb4,0x54, +0x39,0x89,0x4b,0xbc,0xf9,0xdd,0x2d,0xb0,0xe7,0xd7,0xaa,0x62, +0x1f,0xda,0x31,0x8a,0xc3,0x3a,0x53,0xdc,0x51,0x54,0x48,0x2c, +0x48,0x10,0x09,0x73,0x30,0x2f,0x10,0xa2,0xf1,0x5b,0xde,0xdd, +0xdd,0xff,0x4f,0x86,0x01,0xea,0xdc,0x99,0x40,0x3d,0x6c,0x63, +0xc3,0x07,0xa3,0xcd,0x9b,0x4b,0x6f,0x5e,0x53,0x4b,0x4b,0xe2, +0xd6,0x94,0xd6,0x8a,0xe3,0x03,0x9e,0xd6,0x18,0x47,0x98,0xbb, +0x00,0x34,0xff,0x0e,0x7d,0xf4,0xa2,0x72,0x2d,0x02,0x4d,0xa5, +0xc4,0x06,0x03,0xc3,0xd0,0xca,0xe1,0xcc,0x40,0x9b,0xeb,0x45, +0xa7,0x33,0xf6,0x66,0xac,0x4e,0x11,0xa4,0x15,0x7c,0x68,0x3b, +0xd8,0x9c,0x39,0x8b,0x8e,0xf0,0x5d,0xd4,0xfa,0x05,0xcb,0xa2, +0x63,0x6c,0x15,0xb5,0xb4,0x23,0xb1,0x80,0x6a,0xd0,0xfa,0x12, +0x16,0xc2,0x20,0x5f,0x4c,0x85,0x46,0x68,0x09,0xe5,0x62,0xf8, +0x4b,0x62,0xef,0xe4,0x7a,0x90,0x4c,0xeb,0x75,0x35,0x1f,0xd6, +0xf2,0x87,0xcb,0xe2,0xd0,0x87,0x1f,0x6e,0x90,0x0b,0xcc,0xa4, +0x53,0x57,0xc3,0x03,0x4d,0x51,0x72,0x60,0xaf,0xf0,0x49,0x24, +0xbb,0xc0,0xf4,0x09,0xdb,0x52,0xe7,0x53,0xa2,0x7a,0x75,0xbd, +0x7a,0x6f,0x39,0x2a,0x29,0x7a,0x69,0xb4,0xa0,0x4a,0xde,0x39, +0xca,0xcb,0x35,0x08,0x03,0xba,0xdb,0x9e,0xe8,0x63,0x80,0x7d, +0xff,0xbc,0x7d,0x01,0x6d,0x8c,0x7a,0x3d,0x71,0x17,0x3f,0x5e, +0x2f,0x6a,0x49,0xb4,0x09,0x3f,0x08,0x26,0x89,0x92,0x5d,0x23, +0xbd,0x1a,0x07,0x62,0x10,0xb5,0x7c,0x4c,0xfe,0x79,0xa7,0x57, +0xe4,0x53,0xe0,0x8d,0xfa,0xe1,0x03,0x5c,0x66,0x3f,0xe3,0xe5, +0x0f,0x0d,0x2b,0x86,0xff,0x67,0x41,0xee,0x15,0x22,0xa8,0x5b, +0x84,0x00,0x6f,0xa8,0x8f,0xff,0xea,0xbc,0xf4,0xfd,0x07,0xc8, +0xe5,0x15,0x73,0x3f,0x34,0xaa,0xa8,0xf8,0x47,0x25,0x0b,0x98, +0x5e,0xb1,0x91,0xa8,0x28,0x66,0x68,0x18,0xfb,0x9e,0x1a,0xb7, +0x9a,0x99,0xc8,0x74,0x89,0x53,0x9f,0x77,0xbb,0xc8,0x25,0x27, +0x08,0x0d,0x17,0x5d,0x14,0xbe,0xe4,0xcd,0xc0,0x2d,0x17,0x67, +0xe3,0x76,0x6d,0x37,0x39,0x21,0xe6,0xa5,0x2b,0xb4,0xcc,0xe5, +0x1d,0xb5,0x59,0x04,0x99,0xcf,0xd4,0x13,0x07,0x0b,0xb7,0x8a, +0x9b,0xea,0x4b,0x48,0x86,0x8f,0xd8,0x84,0xe0,0x47,0x48,0x6e, +0x5e,0x5e,0x2e,0x6e,0xba,0x55,0xa8,0x17,0x03,0x9f,0x9d,0xa2, +0xc6,0x23,0xf5,0x77,0x5e,0xe3,0x0d,0xb5,0xb8,0x45,0x20,0xb9, +0xd5,0x18,0x71,0x7e,0xbd,0x38,0xff,0x8d,0x38,0x9f,0x47,0xf0, +0x0c,0xdc,0xa7,0x26,0x6e,0x73,0xfe,0x48,0x72,0x74,0xe6,0x14, +0x33,0xab,0xdc,0x5f,0x04,0xe7,0x68,0x4b,0x69,0xb5,0x87,0x24, +0x95,0x5b,0x06,0x68,0x90,0xd2,0xc1,0xde,0x6b,0xcd,0x2c,0x11, +0x0c,0x60,0xe2,0x16,0x5c,0x23,0xaf,0x45,0xe9,0x68,0x2f,0x82, +0x01,0xb4,0x78,0xe9,0x46,0x37,0x91,0xdf,0x42,0xed,0x05,0xe7, +0xb1,0xfb,0x4d,0xe8,0x0e,0x0d,0xcc,0x7f,0xe6,0x5d,0x95,0xcb, +0x0c,0xe8,0xa1,0x7a,0xe0,0x88,0xb2,0x87,0xc2,0xf3,0xdf,0x81, +0x3a,0xd8,0x90,0xff,0x4c,0x3f,0x2b,0x55,0x7b,0x5c,0xc4,0x1e, +0x4b,0x5a,0x38,0xc7,0x4b,0x16,0xd7,0x09,0x1f,0x44,0xd6,0x59, +0x04,0x5d,0x02,0xb5,0x0f,0x05,0xdc,0x26,0xb4,0xb4,0x27,0xdc, +0x3a,0x4e,0x07,0x67,0x61,0x39,0x72,0x6b,0xb1,0xbb,0x34,0x13, +0x9a,0x88,0x3d,0x6d,0x67,0x6a,0x01,0x44,0xd5,0x3e,0x14,0xb2, +0x0f,0x92,0x36,0x12,0xd3,0xd4,0xbd,0xbc,0xdc,0x6c,0x5d,0xfa, +0xfd,0xc7,0xba,0x6c,0x1c,0x54,0x5a,0x55,0xac,0x79,0x69,0xff, +0x14,0xb2,0x7f,0x24,0x6d,0x3c,0x2e,0xe7,0x15,0x1d,0x3d,0x52, +0x67,0xa2,0xab,0x01,0x83,0xc4,0x92,0xa4,0xc7,0xe2,0x74,0xb1, +0x24,0xe9,0x1a,0x58,0x6a,0xc1,0x6f,0x08,0xd3,0x19,0x15,0xbe, +0x10,0x3b,0xc0,0x4b,0x38,0x66,0x77,0xd7,0x5d,0xee,0xbb,0x0b, +0x97,0x7b,0xaf,0xf2,0xa7,0xa4,0x3c,0x8e,0xe0,0x9d,0x7f,0xa3, +0x7e,0x15,0x35,0xe2,0x77,0x98,0x01,0xfd,0xf5,0xe5,0x9c,0xb6, +0x38,0x03,0x5d,0x03,0x48,0x1e,0xb5,0xbc,0x4a,0x84,0xed,0xff, +0x5c,0x4d,0x0d,0xd2,0x7e,0xda,0x9c,0x30,0x3a,0x6e,0xcc,0xa2, +0xb1,0xc2,0xf6,0xdf,0xfa,0x68,0xdd,0xc3,0xf7,0xc6,0x3c,0xf6, +0x2c,0x88,0x9b,0xfe,0x93,0x93,0xa6,0x2c,0x9d,0xca,0x4d,0x7f, +0x85,0x7d,0x56,0x3f,0x6a,0xc9,0x97,0x59,0xf2,0x47,0x6d,0xe3, +0x15,0xf6,0x52,0xe7,0xb2,0x2f,0xbc,0xca,0x9f,0x38,0xe6,0x37, +0x18,0xc9,0x9b,0x16,0x09,0xfe,0xdb,0xe1,0x28,0x74,0x15,0x09, +0xfe,0x15,0x35,0xe6,0x33,0x4c,0x84,0x91,0xfa,0x26,0x62,0x03, +0x9c,0x84,0xad,0xf5,0x55,0x4e,0x6a,0x50,0x08,0xb7,0x52,0x1b, +0x15,0xe2,0x74,0xd6,0x80,0xd6,0x7f,0x4c,0xe0,0x90,0x92,0xe8, +0x3a,0xb0,0x2f,0x5a,0x39,0x8b,0x39,0x98,0x7f,0xfa,0x64,0xfa, +0xc9,0x94,0x94,0xd4,0x65,0x29,0x22,0xe5,0x7b,0x3d,0xf3,0x1c, +0xb4,0x8e,0x5a,0xcf,0x07,0xfd,0x42,0x5b,0x45,0xa2,0xa6,0xdd, +0x5c,0x82,0xb4,0xd6,0x56,0xa8,0x6f,0x70,0xe8,0x75,0x6d,0x4c, +0x0f,0x5a,0xcb,0x9f,0xcb,0xbf,0xc6,0xba,0xfc,0xc3,0xd7,0xb9, +0x42,0xf2,0xf1,0xd3,0x91,0xfc,0xf4,0xac,0xeb,0xda,0xca,0x1e, +0x38,0xbb,0x29,0x8c,0xed,0xc9,0x22,0xae,0xf1,0x3a,0x22,0x66, +0x0a,0x5f,0xe7,0xe9,0xc1,0x52,0x82,0x96,0x93,0x52,0xd4,0xd7, +0x2b,0x7e,0x13,0x06,0xae,0xe5,0xfa,0x2d,0x8f,0xc4,0x7a,0x45, +0x64,0x47,0xac,0x16,0x83,0xb5,0xed,0xa6,0x00,0xa1,0x16,0x9b, +0xc5,0xd2,0x05,0xa6,0xbd,0x93,0xa1,0x35,0xd4,0x59,0xb7,0xf5, +0x95,0xa0,0xbb,0xa4,0xf5,0x2f,0xf2,0xd2,0x52,0x4b,0x3e,0xc9, +0xfe,0x84,0x6f,0xa8,0xcb,0x09,0xf2,0xd1,0x09,0x67,0xbb,0x12, +0xb6,0xe9,0x4f,0x15,0x66,0x38,0xe1,0x0c,0xfd,0xe4,0x7b,0x2e, +0x05,0xa0,0x6a,0x21,0x5b,0x02,0xf3,0x3c,0xf1,0xe4,0x07,0x94, +0xcc,0x55,0x40,0xe2,0x75,0xf8,0x81,0xb9,0xd2,0x67,0xf5,0xb3, +0x68,0xe1,0x24,0xf9,0xe8,0x6c,0x3e,0xfd,0x99,0x9f,0x75,0xae, +0x38,0xf9,0x8f,0x0a,0x06,0xa8,0x5a,0xc0,0x5b,0x98,0xe9,0x89, +0x87,0x3f,0xa0,0xa1,0xa2,0x05,0x83,0x68,0xc1,0x20,0x2a,0xa9, +0xb7,0xb4,0x95,0x10,0xc0,0xee,0x87,0x68,0x6b,0xbc,0xd9,0x0a, +0xa4,0x82,0xa2,0x37,0x8f,0x77,0xc6,0x53,0x2d,0x16,0x86,0xb2, +0x9f,0x83,0xb4,0xc4,0xb6,0x2c,0x16,0x9b,0xf1,0xe2,0x23,0x85, +0x62,0x54,0x4d,0xcf,0x67,0xd3,0x1f,0x69,0xd1,0x05,0xac,0x10, +0xcf,0xd5,0x27,0x5a,0x7a,0x21,0x5b,0x25,0x76,0x51,0xf6,0xe4, +0xe3,0x1e,0x09,0x5a,0xe1,0x06,0x75,0x7e,0x4c,0x42,0xf2,0xae, +0x9d,0x69,0x3f,0x25,0xef,0xb5,0x85,0xf5,0x79,0xec,0x63,0x30, +0xec,0x90,0x62,0x83,0x7b,0x8e,0xc6,0x29,0xc1,0x07,0x68,0xad, +0xc6,0x64,0x63,0xca,0xd6,0x65,0x9b,0xe3,0x61,0xa7,0xb3,0xcd, +0xfe,0x4b,0xb8,0xf6,0xf9,0x5c,0x91,0xb5,0x28,0xc6,0xd6,0xaa, +0x2c,0x80,0xd2,0x63,0x44,0x7d,0x5c,0xfe,0x37,0x99,0x28,0xb7, +0xe8,0x1f,0x8c,0x0d,0x5a,0x9a,0xb2,0x07,0x1b,0xa0,0xc5,0xa7, +0x82,0xeb,0xf0,0x3d,0x37,0x34,0x39,0x38,0xc1,0x36,0x8a,0x39, +0xfd,0x48,0xfd,0x33,0x44,0xf9,0xb2,0x9c,0xab,0x2a,0xb7,0x0a, +0x36,0xe6,0x78,0xac,0x0e,0x73,0x7d,0xd9,0xa6,0x62,0x2e,0xde, +0xab,0x0b,0xca,0xcf,0x63,0x32,0x16,0x56,0x9c,0x8b,0xe6,0xe7, +0xa6,0xf9,0xb2,0xe5,0xc5,0x7c,0xe0,0x56,0xc7,0xc8,0x12,0x6d, +0x87,0x38,0xa7,0xb3,0x22,0x5a,0x5a,0x71,0xeb,0x25,0x58,0xed, +0xd1,0x09,0x63,0x7e,0xe9,0x89,0x3f,0x0a,0xeb,0x05,0x5b,0xb2, +0x56,0x78,0x88,0x8f,0xb0,0x1a,0x2d,0xc5,0x6f,0x1b,0x14,0x8a, +0xc9,0xd6,0x14,0x2f,0x92,0x9d,0x57,0xaa,0x8f,0x5c,0xb3,0xfa, +0x98,0x6f,0x56,0x1f,0x7c,0x30,0xb6,0x26,0x97,0xf0,0x49,0x79, +0x26,0xf9,0x0c,0x13,0xf2,0xa9,0xf4,0x81,0x04,0xc1,0x28,0x07, +0x69,0x49,0x87,0x76,0x4b,0xdb,0xdb,0xad,0xf6,0x9b,0xc6,0x25, +0x56,0x4b,0x2d,0x5f,0xdd,0x92,0xb6,0x95,0xda,0x3b,0x10,0x73, +0xc0,0xc0,0x8c,0xc8,0xc5,0xc9,0x86,0xc3,0x27,0x36,0x9e,0xce, +0x33,0xee,0xf6,0xa0,0x4e,0x93,0x48,0x28,0xd4,0xcb,0x7d,0x2e, +0x42,0x05,0x98,0x82,0x33,0x84,0xff,0x94,0xd6,0x4a,0xbb,0xa2, +0x6e,0x59,0xbb,0x25,0x69,0x6b,0x2c,0x9c,0x42,0x17,0x9b,0x93, +0xb9,0x78,0x00,0xec,0x22,0x52,0xe7,0x27,0xe9,0x97,0x9b,0xa3, +0x16,0x4e,0xe5,0xf2,0xcb,0x67,0xc9,0x0d,0xa8,0xcb,0x13,0x02, +0xa6,0x1c,0xde,0xc0,0x59,0x5b,0x0e,0xaa,0xa6,0x89,0x06,0x66, +0x92,0x26,0x68,0xf4,0x87,0x59,0x18,0x7f,0x13,0x72,0x5a,0xfe, +0x01,0xb3,0x9a,0x34,0xf3,0xa7,0x96,0x8f,0x08,0xd6,0xfa,0x43, +0xb0,0xd9,0x67,0x12,0x7f,0x15,0x46,0x63,0xe2,0x4d,0xc8,0xd3, +0xf7,0xcc,0xee,0x69,0x11,0x39,0x2c,0xe2,0xae,0x96,0x90,0xcb, +0x6e,0xe0,0x4f,0xa2,0xbf,0xc5,0x30,0xc0,0x58,0x41,0xf4,0x0d, +0x27,0x24,0x0f,0x9c,0xab,0x32,0x0e,0xc6,0x34,0x37,0x7d,0x70, +0x44,0xe4,0xb1,0x88,0xa7,0x5a,0x42,0x3e,0x97,0xfa,0xd9,0x15, +0x63,0x83,0x3a,0x7c,0x67,0x66,0x79,0xd6,0x99,0x98,0xb5,0x0d, +0x70,0x9e,0x5f,0x14,0xab,0xb2,0xd6,0xd0,0x55,0x6b,0x2d,0x4a, +0xd7,0xeb,0xa5,0x57,0x78,0x69,0xb2,0x28,0x0d,0x14,0xa5,0x6c, +0x3a,0xb5,0x8f,0x25,0x9a,0xa7,0x36,0x97,0x5a,0x0f,0x20,0xe0, +0x81,0xbf,0x11,0x3c,0x41,0xad,0xf6,0x10,0xe8,0x88,0xcf,0x08, +0x1e,0x83,0x1c,0x09,0x5d,0xb1,0x8e,0xfa,0xd6,0xc7,0x15,0x67, +0x88,0xff,0xf8,0xf8,0x55,0x7c,0x99,0x97,0xcc,0x56,0x50,0x9b, +0x4c,0x02,0xdd,0xf8,0xd4,0x72,0x02,0xab,0xee,0xcc,0x00,0xfb, +0x35,0x43,0x77,0x89,0x8d,0xc7,0xab,0x94,0x36,0x23,0xda,0xf8, +0x3a,0xbc,0xdc,0x16,0x9c,0xf8,0x73,0x99,0x36,0x11,0xd6,0x27, +0x54,0x37,0x25,0x32,0x75,0x57,0xd0,0x7d,0x6a,0xd7,0x36,0xb8, +0xf7,0x89,0x0f,0x9e,0xa9,0xe4,0x19,0x7f,0xa5,0xbb,0x82,0x9a, +0xb7,0x15,0x04,0x97,0x35,0x95,0xcf,0xe9,0xdb,0x0a,0x38,0x20, +0x08,0xd4,0xd1,0x12,0x75,0x74,0x15,0x79,0xbd,0x23,0x08,0x1f, +0x45,0x12,0x5a,0xf2,0xc1,0xc8,0x35,0x48,0x09,0xb7,0xb9,0xb8, +0x48,0xe7,0x3d,0x15,0xa2,0x79,0xa8,0x30,0x4a,0x5f,0xca,0x11, +0x2e,0x7e,0xfa,0xda,0xce,0x28,0x7b,0x45,0x8f,0x25,0x73,0x12, +0xb1,0x64,0x4d,0xcc,0x56,0x40,0x13,0x11,0x4b,0xe6,0xc4,0xd5, +0x07,0xc7,0xcc,0x05,0xd4,0x81,0x5b,0x5b,0xd7,0xef,0x40,0x89, +0xfc,0x79,0xf5,0x9b,0xb5,0xbf,0xac,0xb3,0xb0,0xa2,0x8e,0x26, +0x92,0xbc,0xe2,0x0a,0xad,0xb9,0x99,0xac,0x29,0xe2,0xc7,0x6a, +0x5c,0x9e,0x61,0x16,0xd6,0xc4,0xc0,0x45,0xe8,0x63,0xb7,0xca, +0xdf,0x70,0xed,0x5a,0xf2,0x8a,0xab,0xf6,0xb8,0xa6,0x04,0xd6, +0xcb,0x0f,0x57,0xdf,0x35,0xd7,0x71,0x23,0x65,0x13,0x70,0x82, +0x60,0x5c,0x5f,0x72,0x13,0xf2,0xa9,0x65,0x67,0x82,0x4b,0x6e, +0x41,0x3e,0x66,0xf0,0x17,0xb7,0x68,0x4d,0x7a,0x53,0xeb,0x25, +0x82,0xe6,0xb6,0x19,0x58,0x49,0xfa,0xaa,0xd6,0xf0,0x62,0x6d, +0x2b,0x35,0xf5,0x16,0x03,0xbc,0x31,0x19,0x29,0x7c,0x75,0x5f, +0x56,0x38,0x35,0xbe,0x81,0xe5,0x66,0x2d,0x0e,0xc9,0x4d,0x85, +0xcb,0xc1,0xff,0xe0,0xa5,0xaa,0xfd,0xc0,0xb5,0xf8,0x0f,0x92, +0xd9,0x93,0x51,0x54,0xd0,0xf1,0xc0,0xd7,0x0a,0xef,0x44,0x85, +0x10,0x51,0x81,0x5a,0x48,0x64,0x27,0x34,0xb5,0xaf,0xcc,0xa3, +0xea,0xfa,0x27,0xad,0xc1,0xf1,0xa0,0x48,0x72,0x5b,0x0d,0xbf, +0xf5,0xd3,0x92,0x71,0xd1,0x5d,0xb8,0xe8,0x02,0xd5,0x64,0x1f, +0x11,0xe7,0x3a,0x8b,0x43,0x20,0xae,0x09,0xf5,0x87,0x1f,0xcd, +0x86,0x91,0xfa,0x24,0x9d,0x3a,0xda,0x89,0x6d,0xca,0x75,0xc4, +0x33,0x5e,0x04,0x0d,0x29,0x32,0x7a,0x2d,0x6a,0xd7,0xbd,0x85, +0xb1,0x31,0xcb,0x27,0xef,0x5e,0xb4,0xbb,0x81,0x5e,0x6b,0x4c, +0x8a,0xba,0x3a,0xa0,0x6c,0x2e,0x89,0xcb,0x37,0xcc,0x9c,0x23, +0x32,0xaf,0x63,0x2c,0x7f,0xb5,0x99,0x5d,0x59,0x62,0x09,0x4c, +0x00,0x2b,0x9c,0x51,0xa2,0x6d,0x91,0xb9,0xc9,0xf3,0x85,0x68, +0xd7,0xe1,0x86,0x8a,0xc5,0x01,0x50,0x2c,0x0d,0x51,0xe4,0x97, +0x6b,0xf2,0x4e,0x5d,0x31,0x66,0xcc,0x3e,0x38,0x64,0xab,0x69, +0xf5,0xdf,0x97,0x58,0xdf,0x3e,0x50,0x2d,0x5e,0x1e,0x32,0x6f, +0xf6,0xf8,0x61,0x46,0xbf,0x9c,0x21,0x2f,0x17,0x71,0xa3,0xc2, +0x42,0x1b,0x25,0xf8,0x7f,0x63,0xb9,0xe8,0xe8,0x8a,0x89,0x5c, +0x64,0x44,0xf8,0xb2,0x8d,0xa2,0xb3,0x3f,0x08,0xb7,0x7a,0xd3, +0x33,0xf2,0x17,0xff,0xeb,0x8d,0x01,0x72,0x27,0x74,0xa2,0x96, +0x8e,0x04,0x36,0xc1,0x8e,0xcb,0xf8,0x07,0xab,0xc3,0x1e,0x8b, +0xd8,0x15,0x22,0x53,0x3b,0x17,0xae,0x35,0xfc,0x34,0x07,0x75, +0xeb,0xa3,0x0d,0x6f,0xa0,0x8a,0x31,0x97,0xdd,0xe9,0xad,0x2d, +0x5f,0x2a,0x27,0x61,0x95,0xe8,0x96,0x73,0x3b,0x59,0xb0,0xfb, +0x3d,0x4b,0x73,0xaf,0x49,0x66,0x8e,0xbc,0x09,0x60,0x01,0xe7, +0xf3,0xf1,0x3c,0x7c,0x0b,0x57,0xf3,0x59,0x6d,0xd6,0xe8,0x1d, +0xe3,0xa8,0xf6,0xe4,0xd6,0x9d,0x87,0xec,0x37,0xc8,0xbb,0x63, +0xb6,0x4d,0x5b,0x6d,0x4a,0x3b,0xb3,0xf3,0xd0,0xf1,0x93,0x16, +0x3d,0xa4,0x90,0x01,0xe3,0xbd,0xc2,0x8c,0x51,0xf2,0xb8,0xad, +0x33,0x4f,0x9a,0x94,0x8c,0x2d,0x15,0x75,0xb6,0x4e,0x4b,0x11, +0x75,0x0e,0x1e,0xcf,0x30,0xd7,0xf1,0xee,0x23,0xea,0x6c,0x99, +0x99,0x61,0x52,0x04,0xbb,0x84,0x9b,0xb6,0x8a,0x9c,0x5b,0xcb, +0x2d,0x8d,0xdb,0x3e,0x5d,0x65,0xfc,0x66,0x7a,0x4f,0x41,0x0d, +0xa6,0xbc,0xe0,0x80,0xea,0x6c,0xf7,0x56,0x18,0xf7,0x5b,0x0f, +0x0e,0x81,0x9a,0x35,0x95,0x97,0xf4,0xec,0xb6,0xb4,0x47,0xd9, +0xbc,0x8a,0xbd,0xdd,0x6b,0xd8,0x5c,0xa6,0xa6,0x32,0xfe,0x46, +0x9e,0xda,0xd4,0x2f,0x97,0xf9,0xfc,0x12,0x13,0xf2,0xdc,0x97, +0x1d,0xc2,0x95,0x8f,0xcf,0xc7,0xd3,0xd4,0xe5,0x0d,0x79,0xeb, +0xe1,0x3a,0x54,0x74,0x15,0x1f,0x58,0x63,0xd0,0xe7,0x28,0x81, +0x0d,0xd4,0x2a,0x91,0xa8,0xbd,0x34,0x05,0x5b,0xdc,0x85,0x16, +0x5a,0x55,0x8e,0x80,0xf8,0x08,0x50,0x3d,0x31,0x50,0x5b,0x46, +0x84,0xa4,0xa9,0xe3,0x5f,0x21,0x69,0x84,0x93,0xe2,0x58,0x8c, +0xb8,0x09,0x99,0x82,0xd3,0x58,0x94,0x8a,0xdf,0xbc,0xd4,0x81, +0x68,0xcb,0xe1,0x30,0x3b,0x2f,0xdd,0x0e,0x50,0x35,0x57,0x6c, +0xc7,0x84,0x97,0x86,0x83,0x30,0x5d,0x4e,0x20,0x12,0xfc,0x41, +0x10,0xca,0x72,0x88,0x71,0x93,0x5a,0xfe,0x4c,0xcc,0x7b,0x0b, +0x37,0x17,0x19,0xb6,0xff,0xbe,0xee,0x77,0xfe,0xa1,0x2f,0xb3, +0xdf,0x03,0xb4,0x0d,0x95,0x7b,0x0b,0x22,0xd1,0x12,0x58,0xfb, +0xa0,0x35,0x36,0x33,0xff,0x19,0xe5,0xaa,0xa3,0x93,0xeb,0x82, +0x91,0x6e,0xb7,0xd8,0x99,0x18,0x11,0x3b,0x5c,0xdf,0x99,0x78, +0xb1,0xee,0x39,0x7c,0x63,0xbc,0xc2,0x7e,0xf7,0xd7,0xaf,0x9e, +0x60,0xbe,0x7a,0xa3,0x0a,0xdf,0xfb,0xe0,0xf7,0xfc,0x6a,0xfd, +0xcf,0x28,0xb1,0x41,0x01,0x4e,0xfc,0xab,0xec,0x23,0x68,0x2f, +0x2b,0x3e,0x5c,0x1c,0x75,0xf3,0x87,0x6e,0x52,0x7b,0x07,0x5a, +0x7f,0x08,0x51,0xba,0xa1,0x93,0xcc,0x75,0xf1,0x0a,0x5a,0xf3, +0x1e,0x81,0x7b,0xec,0x38,0x61,0x21,0xf7,0x24,0xa8,0xfe,0x29, +0x6d,0x53,0x89,0xbd,0x42,0x5d,0x56,0x92,0x02,0x5a,0x93,0x5b, +0x9d,0x41,0xda,0x7c,0xa2,0xc8,0xd4,0xa2,0x3e,0xc9,0x2d,0x5f, +0xa8,0xff,0x72,0xaf,0xf0,0xc1,0x6e,0x6b,0xb7,0x48,0x51,0xbd, +0xd0,0x88,0xeb,0xc0,0xd6,0x9b,0xd5,0xd3,0x5c,0x25,0xaf,0x42, +0x95,0x1f,0x98,0x60,0x1d,0x9f,0xb1,0xb9,0xe7,0xd3,0x8b,0x4d, +0xe9,0xd2,0xcf,0xe7,0xa7,0x84,0x84,0xf6,0x9b,0xdc,0xcd,0x7e, +0x8a,0xd4,0x2d,0x7c,0x6f,0x0e,0x37,0xf4,0x9a,0x87,0x5d,0x78, +0x6d,0x9f,0x2a,0xbf,0xbe,0x78,0xe1,0xe5,0xcb,0x8b,0x7d,0xdd, +0x4c,0x8b,0x65,0xb7,0xb0,0xbe,0xcd,0xf9,0x0c,0xe1,0x82,0xe8, +0xde,0xc7,0x0f,0xcd,0x7e,0x19,0x40,0x3a,0x37,0x6c,0xf0,0xaa, +0x0b,0x17,0x44,0x38,0x4d,0x41,0xa5,0x5b,0x10,0x6e,0x69,0x62, +0x3a,0x16,0x6c,0x80,0x8c,0x7f,0x1e,0x94,0x80,0x3b,0xb7,0x05, +0xb4,0x44,0xed,0x1b,0x0f,0x94,0x99,0x13,0xc8,0x5e,0x22,0xe9, +0x87,0xd6,0xf1,0xaa,0xca,0x0f,0x6a,0x68,0x5c,0x68,0x96,0xff, +0x46,0x5c,0x70,0x39,0xae,0x65,0xd7,0x09,0xf8,0x6b,0x49,0x85, +0x98,0xf2,0x49,0x08,0x14,0x3e,0xe5,0x72,0xee,0x42,0x81,0xfc, +0xa9,0x52,0x64,0x89,0x92,0xcb,0x77,0xe1,0xfa,0xd7,0x92,0xd2, +0x00,0x2e,0x0c,0x37,0xdf,0xdd,0xf0,0xec,0x9d,0xf1,0xa2,0x3e, +0x01,0x92,0xb8,0x59,0x16,0xfd,0xc3,0x3c,0x1f,0x0b,0xf6,0xc0, +0x3c,0xfe,0xb5,0x59,0x52,0x2a,0x86,0x9b,0xc1,0x35,0x97,0x8e, +0xb3,0x84,0x74,0x14,0xe0,0x9a,0x4b,0xc7,0x74,0xb3,0x74,0xd4, +0x57,0xe2,0xb9,0x10,0xb6,0xcb,0xe4,0xc6,0xfc,0x48,0x5a,0xff, +0x03,0xa1,0x96,0x37,0x48,0x33,0x3c,0x50,0xa1,0xcd,0xce,0x9e, +0x08,0xd3,0x15,0xd9,0xce,0x57,0x7c,0xe4,0xe4,0x14,0x1c,0x78, +0xf1,0xbc,0x70,0x42,0xa8,0x69,0x21,0x75,0xd8,0xcb,0xfb,0x6a, +0x9d,0x5c,0x98,0x7d,0xf0,0xd1,0x83,0x0b,0xe3,0x03,0x4c,0x31, +0x72,0x60,0xdf,0x71,0x3f,0xb4,0x0f,0x3f,0x54,0x60,0xe2,0xd2, +0xbb,0x36,0x81,0x61,0x0a,0x0c,0x86,0x49,0x6b,0xb6,0x82,0xa3, +0xfd,0xe2,0x7c,0x33,0x11,0xa7,0x6d,0x3a,0x44,0x7a,0xa7,0x28, +0xa2,0x67,0x72,0x44,0xcf,0x9c,0x02,0x2b,0x78,0x9a,0x28,0x3b, +0xe2,0x37,0x63,0xf7,0x70,0x75,0x6f,0x6d,0x78,0xc6,0xc8,0x5f, +0x43,0x24,0xe5,0x3e,0x7c,0x96,0xce,0x65,0x1f,0x79,0x6a,0x3a, +0x73,0x7f,0x92,0xe4,0x3e,0x68,0xf0,0x80,0x08,0xfb,0x84,0x37, +0x1d,0x25,0x41,0xbb,0x6e,0xde,0xc7,0x3f,0x15,0xc8,0x21,0x55, +0xe5,0x3e,0xfe,0x5c,0x22,0x36,0xf1,0xcd,0x54,0x86,0xd3,0xc0, +0x0e,0x96,0x16,0xe0,0x52,0xa8,0x0d,0x6b,0x0a,0xf1,0x57,0x3e, +0x14,0x8a,0x89,0xb0,0x40,0x0e,0x6a,0xee,0xd4,0x42,0x20,0x5c, +0x27,0xe6,0xfe,0xa7,0x37,0x1e,0x13,0xdc,0xc0,0xeb,0xe1,0xb9, +0xe4,0x85,0x7b,0x54,0xe6,0x0e,0x55,0x35,0x77,0x49,0xcf,0xc8, +0x62,0xd9,0x03,0x73,0xf5,0x34,0x12,0xd0,0x5d,0xc2,0xf3,0x5f, +0x79,0x98,0x44,0xfa,0xf6,0xa6,0xd8,0x50,0x9d,0x2f,0x58,0xcf, +0x4e,0x9d,0x12,0xac,0x67,0x9b,0xa4,0x4b,0x47,0xa7,0x0d,0x19, +0x32,0x7a,0x5a,0x1f,0x7b,0x2b,0xd5,0x5f,0x5b,0xda,0x5a,0x66, +0xa9,0x73,0x52,0xfd,0xb5,0x65,0xbb,0x0d,0x48,0x6e,0xc3,0x3d, +0x59,0x2f,0x75,0xe7,0xa5,0xf3,0x52,0xfd,0xf4,0x52,0xc3,0x6d, +0xde,0x75,0x1c,0xd5,0x45,0xb5,0x97,0x58,0x42,0x24,0x9f,0x20, +0x31,0xbb,0x0c,0x0e,0xb7,0xe1,0x12,0x2b,0xe0,0x10,0xa1,0x46, +0x31,0x61,0xb5,0xd4,0x00,0x3e,0xd3,0x57,0x10,0xa8,0xfa,0x5f, +0xce,0xf3,0x9c,0xf2,0x07,0x62,0xef,0x73,0x29,0xc9,0x29,0x25, +0x62,0x0b,0xe8,0x04,0xc9,0xa5,0xe4,0x1b,0x0e,0x94,0x92,0xa9, +0xd5,0x45,0x82,0x29,0x8a,0x4e,0x94,0x3e,0x81,0x95,0xf0,0xb7, +0x6b,0xc0,0x9a,0x7d,0xf4,0xc4,0x83,0x5c,0xf7,0xa7,0xc0,0x13, +0xc9,0x13,0x7f,0x54,0x59,0xb3,0xbf,0x35,0x11,0xf0,0xd2,0x94, +0xb5,0x78,0xe3,0x85,0x9b,0xf4,0x33,0xd7,0xf9,0x6b,0xa7,0xa8, +0xac,0xc5,0x07,0xad,0x05,0x1f,0x67,0x35,0x8e,0x10,0x2d,0x92, +0xf7,0x49,0x37,0xe1,0x5c,0x49,0x8e,0x57,0x28,0xa8,0xf7,0x90, +0x2a,0x70,0x2e,0x2c,0x6b,0xc4,0xb5,0x8f,0x59,0x25,0xe9,0x45, +0x27,0x2a,0x8b,0xa8,0x69,0x2b,0x61,0xe3,0x54,0xe5,0x0b,0x9f, +0x85,0xeb,0x98,0xa6,0x2a,0x22,0x1e,0x78,0x4c,0x53,0x91,0x81, +0x55,0x24,0xef,0xe7,0x73,0xa3,0x9d,0x16,0x51,0xc4,0xf2,0x05, +0x2d,0xb6,0xb6,0x45,0x20,0x95,0x00,0x6d,0x71,0x47,0x99,0x2d, +0x8f,0xe0,0x1f,0x29,0x6e,0x97,0xc1,0xf1,0x36,0x08,0x77,0x44, +0xf0,0xd4,0x12,0x8a,0xd8,0x4d,0x4c,0x12,0x3d,0xb2,0x5f,0x54, +0xe3,0x25,0x31,0x45,0xec,0x1a,0x26,0x61,0x28,0x51,0xf9,0x7c, +0xd0,0x0f,0xd6,0x89,0x03,0x6d,0x66,0x21,0xbb,0x80,0xf3,0xf9, +0xe4,0x59,0x5f,0xc4,0xa2,0xf8,0xa3,0x3b,0xad,0x23,0x18,0xa3, +0x88,0x25,0xb4,0x95,0x57,0xd8,0xa3,0xde,0xb0,0x9e,0xd6,0x5b, +0xc6,0x45,0x12,0xe8,0x1b,0x88,0x82,0x38,0x53,0xed,0x9c,0xaa, +0xdb,0x6c,0xfe,0xdc,0xae,0x6b,0xd5,0x79,0xf1,0x5e,0x6e,0xe7, +0x54,0x8b,0x24,0xd4,0x41,0x25,0x01,0xa5,0x35,0x0a,0x75,0x57, +0xbb,0xce,0xa9,0x33,0xb0,0x53,0x79,0x24,0x81,0x4e,0x9d,0x17, +0xef,0xc3,0x36,0x06,0x6c,0x1a,0x50,0x5a,0xbd,0x10,0x39,0xf2, +0xfa,0xb9,0x1c,0x49,0x14,0x6c,0xf7,0xc5,0x23,0xdb,0x09,0xdb, +0xa6,0xbe,0xd4,0xe6,0xc0,0x78,0x56,0x10,0xa0,0x45,0x35,0x67, +0x73,0xd1,0x9d,0xbf,0xd5,0x9e,0x22,0xc9,0x4a,0xa3,0x1c,0x07, +0x4d,0xc6,0xdf,0x74,0x0f,0xf2,0x91,0x30,0x53,0xcf,0x50,0x84, +0x55,0xb8,0x49,0xe5,0x53,0xde,0x95,0x68,0x93,0x97,0xab,0xca, +0x58,0xf2,0x02,0xfa,0xe5,0x30,0x49,0x5e,0xfe,0xda,0x00,0x7f, +0xc0,0x70,0xe6,0x1e,0x02,0x1f,0xdd,0xf0,0x2d,0x0e,0x03,0x2f, +0x37,0x89,0x71,0x78,0x10,0x3b,0x26,0x3c,0xbe,0xab,0x1d,0x1c, +0x32,0xdb,0x58,0x8d,0x0b,0xe5,0x87,0x45,0x6b,0xd6,0x51,0x27, +0x2f,0x02,0x47,0xcb,0xba,0x13,0xd6,0xa4,0x7c,0x25,0x51,0x44, +0x6c,0x40,0xa1,0x88,0x0d,0x98,0x9a,0xa4,0x62,0x63,0xc1,0xf2, +0x92,0x47,0x0c,0x10,0x0b,0x86,0x9f,0x6f,0x42,0x3b,0x2e,0x60, +0x5e,0xb3,0xef,0x7b,0x43,0xbe,0xa0,0x86,0xef,0xe6,0x87,0x1b, +0x1b,0x98,0x8e,0x73,0xe9,0x73,0x0c,0x0c,0x0f,0x6f,0x43,0x17, +0x0e,0xe8,0x2d,0x07,0x12,0x38,0x50,0x1e,0x4d,0x98,0x6b,0x79, +0xb2,0x30,0x2c,0x5b,0xa0,0xed,0x42,0x74,0xb6,0x9b,0x0a,0x67, +0x1e,0x12,0xd6,0xfe,0x0e,0xd7,0x48,0xc1,0x62,0x47,0x40,0x08, +0x01,0x6a,0xd5,0x9b,0x7c,0xe2,0xd0,0x7b,0x50,0x96,0x82,0x4e, +0xe4,0xcc,0xda,0x73,0x85,0xc6,0x1b,0x3e,0xbd,0x65,0xe7,0x19, +0x7e,0xbe,0x1d,0x4d,0x5d,0x7f,0x8f,0x5d,0x17,0xa5,0x08,0x16, +0xa1,0x85,0x31,0x3a,0x0d,0xc9,0x36,0x9d,0x50,0x42,0xa7,0x21, +0x19,0x6b,0xa6,0x21,0x51,0x58,0x7b,0x31,0x92,0xfc,0x8f,0x8b, +0x14,0xbd,0x03,0x08,0x1e,0x42,0x4f,0xfe,0x93,0xb9,0x8b,0xc2, +0x8e,0xc7,0x85,0x33,0x8e,0x1c,0xe6,0x1f,0x8e,0xcd,0xb1,0xb9, +0x7f,0xf6,0x45,0xd3,0x06,0xea,0xbc,0x82,0xf0,0xa2,0x2f,0xef, +0xc8,0xc5,0xcb,0xe7,0x39,0x74,0x6a,0x5e,0xa8,0xef,0x0e,0x69, +0x09,0x30,0x80,0xdd,0x0c,0xd2,0x96,0xbb,0xb3,0x04,0x6c,0x2c, +0xf1,0xc1,0x71,0xb2,0x80,0x6d,0x17,0x46,0xd1,0x9e,0xab,0x6c, +0x39,0xb5,0xee,0xc5,0x61,0x8c,0xd5,0x7f,0x03,0x9c,0xe7,0xc3, +0xc0,0x9e,0x15,0x01,0xce,0xd4,0x61,0x05,0xd1,0x8e,0x15,0xb1, +0x4d,0xa2,0xfa,0x22,0x18,0xcd,0x7e,0x0e,0xd5,0x12,0x1b,0x72, +0xcb,0xaa,0xb5,0x68,0xe7,0x58,0x2e,0xdb,0x2c,0x3c,0x13,0x46, +0x77,0x9d,0xeb,0x6b,0x17,0x09,0xf3,0xba,0x61,0x5c,0xd9,0x24, +0x52,0xea,0x4a,0xe6,0xc3,0x36,0x5f,0x3c,0xcc,0x7f,0x63,0x9c, +0x8a,0xab,0x78,0xff,0x2e,0xe1,0x80,0xb8,0x0b,0x3f,0x60,0x0e, +0xe0,0xab,0x39,0x70,0xfc,0xbc,0x9c,0x9a,0xf2,0x05,0xc6,0x1a, +0x85,0xdd,0x74,0x3f,0xc9,0x9f,0x53,0xd7,0xe7,0xd8,0xc7,0xd2, +0x7a,0x27,0x89,0xbe,0xb2,0x5c,0x40,0x2d,0x2f,0x10,0xe1,0x56, +0xb7,0x3a,0xb0,0x2b,0x11,0x96,0xef,0x5e,0xfd,0xff,0x03,0xfa, +0xff,0xdc,0xcc,0xd9,0x40,0xd6,0xc7,0x9f,0xb7,0x99,0x69,0x4e, +0x46,0x2e,0x56,0x12,0xcb,0xdd,0xf9,0x87,0xa7,0x64,0x5d,0x5c, +0x9e,0xcd,0xcc,0xf2,0xc6,0x64,0x75,0xe0,0x54,0xa1,0xad,0x4c, +0x7b,0x84,0xb5,0x9b,0x63,0x28,0xad,0x46,0x66,0xc0,0x47,0x2f, +0xde,0x65,0x82,0xf1,0xb2,0xda,0x29,0x02,0xdd,0xbb,0x62,0x2f, +0x6a,0xdd,0x5a,0x4c,0xae,0x4b,0xe3,0x24,0x2a,0x1f,0x23,0xbf, +0xb3,0x1a,0x7c,0x2a,0xba,0xf8,0x92,0x71,0x32,0x92,0x6e,0x81, +0xb8,0xa5,0xa9,0x59,0xed,0xfc,0xfd,0xe0,0xa6,0xae,0x76,0x9e, +0x63,0xb4,0x1f,0xb8,0x8f,0x91,0x5d,0xfa,0xfb,0xa3,0x73,0x63, +0x9d,0xd5,0xb3,0x19,0x54,0xcd,0x2f,0x81,0x7a,0x46,0xc5,0x55, +0x30,0x4b,0x50,0x6a,0x41,0x94,0xf6,0x38,0x1e,0x1b,0x08,0x47, +0xe0,0x3c,0x43,0xb4,0xee,0x08,0x2c,0x26,0x3c,0x37,0x8e,0xab, +0x40,0x4a,0x21,0x4b,0x84,0x48,0x0f,0xcc,0x04,0x8e,0xac,0x98, +0x2c,0xd6,0xe3,0x65,0x05,0xbb,0x13,0xb8,0x06,0x67,0xaf,0x30, +0x89,0xf5,0x2a,0x1b,0xc7,0x81,0xe7,0x35,0x11,0x72,0xc2,0x54, +0xf4,0xea,0x03,0x5e,0xe8,0x55,0x7e,0x8b,0x63,0x80,0x2a,0xf3, +0x5b,0x5d,0xc3,0xea,0x76,0x68,0xdb,0xa4,0x23,0xd6,0xc6,0xda, +0x7f,0x74,0xe4,0xf6,0x81,0xd5,0xf3,0x1b,0xf0,0xed,0x7a,0xae, +0x4f,0x59,0x95,0x5f,0xe1,0x49,0x16,0x3e,0xfd,0x05,0x3e,0x64, +0xb3,0xd6,0x78,0x45,0xf3,0x15,0x34,0xa4,0x1c,0x65,0xbe,0x01, +0xff,0x8b,0x8d,0xe4,0xdd,0x50,0xcb,0x77,0xcd,0x1c,0x34,0x8a, +0xb8,0xe1,0xd9,0x60,0xf4,0x5d,0xb4,0x1b,0x6b,0x19,0xdc,0xc2, +0xa0,0x57,0x23,0xe9,0x2b,0x82,0x52,0x79,0xef,0x7c,0x62,0x67, +0x44,0x6a,0x52,0xad,0xe3,0x15,0xd1,0x45,0x33,0x44,0x17,0xa9, +0x8f,0xb4,0x78,0x18,0xc8,0x6e,0x06,0x6b,0xcb,0xda,0xb3,0x78, +0x74,0x65,0x6e,0x84,0xd6,0xbc,0x45,0x02,0xb5,0xa4,0xf6,0xd4, +0x2a,0x9e,0x8b,0x90,0x7d,0x57,0xd9,0x2a,0x6a,0xbd,0x42,0x1f, +0x3d,0x2f,0xb4,0x64,0x18,0xa3,0x6f,0x40,0xb4,0x62,0xc9,0xd8, +0x96,0xf7,0x78,0x96,0x30,0xbb,0x5f,0xf1,0x89,0x3e,0x41,0x4c, +0xf4,0x05,0xcd,0xd9,0x1c,0xec,0x50,0x31,0xd1,0xd5,0x4f,0xda, +0x02,0x98,0xc7,0xae,0xf7,0xd6,0x16,0x35,0x60,0x0b,0xb0,0x3b, +0xb5,0xb4,0x25,0x2a,0xad,0xe9,0x46,0xd8,0x1d,0x3c,0x54,0x31, +0xae,0xd6,0x8b,0x01,0x17,0x9d,0xc3,0xa2,0x1f,0x69,0xcb,0xf2, +0x04,0x53,0x9f,0x5e,0x9e,0x67,0x2e,0x5f,0x78,0x91,0x2d,0x7c, +0xab,0x25,0xe7,0xf1,0xfa,0x42,0xff,0xf3,0x62,0x3e,0x3e,0xc1, +0x43,0x44,0x84,0x55,0xe9,0x49,0xbf,0x93,0x09,0xee,0xab,0xc6, +0x7f,0xcb,0x22,0x3a,0x8c,0x5a,0x1c,0x21,0xd0,0x2e,0x07,0xaf, +0xbd,0x82,0x93,0xd9,0x98,0xf1,0x0a,0x72,0x72,0x98,0x05,0x7e, +0x06,0xb7,0x66,0xb2,0x56,0x53,0xc4,0xdc,0x70,0xa9,0xa0,0x29, +0x11,0x3e,0x0e,0x0b,0xd1,0x60,0x37,0x03,0x76,0x97,0x6b,0x84, +0x39,0xff,0xcd,0x75,0x42,0x03,0x6a,0xdf,0x84,0x4f,0xb6,0x76, +0x84,0xcd,0x50,0xc3,0xc0,0x3d,0xbc,0x58,0xbb,0xee,0xcb,0x46, +0xf1,0x2e,0xbb,0x43,0xed,0x3d,0xc5,0xb8,0x19,0x83,0x1b,0x6f, +0xc1,0x2f,0x78,0x58,0x82,0x5b,0x7e,0xc2,0x24,0xdd,0x78,0x93, +0x1f,0x09,0x93,0x94,0x43,0xc5,0xe4,0x9b,0x70,0xb5,0xac,0x84, +0x60,0xf2,0x2d,0xb8,0x6a,0x2e,0xfb,0x8f,0xe3,0xda,0x4d,0x38, +0x68,0x2e,0x1b,0x8f,0x53,0x8a,0x61,0x1f,0x87,0x94,0x81,0xe2, +0x1a,0xf1,0x5b,0x2f,0x17,0x1b,0xda,0x41,0x86,0x00,0x29,0x12, +0x82,0x7a,0xc6,0xef,0xc0,0x5e,0x06,0xcf,0x10,0x78,0x94,0xeb, +0x25,0xd4,0xea,0x01,0x7d,0x2e,0x3d,0xe6,0x73,0x69,0xbb,0xe8, +0xa8,0xe1,0x7a,0x47,0x71,0x74,0x31,0xa0,0x04,0xd6,0xe1,0x59, +0x09,0x7e,0x0f,0x50,0x61,0xaa,0xf9,0x88,0x5b,0x52,0x6a,0x4a, +0x2f,0x03,0xad,0xbf,0x92,0xf0,0xae,0x9c,0x57,0xc0,0xe6,0x3d, +0xd0,0xe2,0x0b,0xb9,0x1d,0x74,0x4e,0x18,0xbe,0x45,0x7a,0x07, +0x0b,0x73,0xf8,0x91,0x96,0x90,0xc7,0x4b,0x33,0x45,0xa9,0x70, +0xf5,0xfb,0x4d,0x5b,0x5c,0xc8,0x16,0xff,0xa6,0xad,0x2a,0x62, +0x0f,0xf0,0x0a,0x2f,0x3d,0x27,0x54,0xc9,0x4b,0x6d,0x7a,0x21, +0x9b,0xfe,0x42,0x8b,0x2e,0x62,0x97,0xb1,0x44,0xec,0x87,0xeb, +0x16,0xf3,0x2a,0xdd,0xcc,0xae,0x98,0xdb,0x4d,0xf8,0xdc,0xd6, +0xe3,0xf1,0xd6,0xea,0x4f,0x59,0xc8,0x4b,0x97,0x8a,0xa7,0xec, +0xa5,0x3f,0xe5,0x27,0x6d,0xde,0x65,0x36,0xef,0xa3,0x16,0x7f, +0x85,0x95,0xe0,0x5b,0xa1,0xa3,0x8e,0x5d,0xe5,0x80,0xad,0x1e, +0x29,0xfb,0x16,0x1d,0x54,0x0f,0x1c,0xcb,0x6e,0x13,0xea,0xf2, +0x8c,0x40,0x3d,0xf5,0x77,0xe1,0x7e,0xc7,0xa7,0x9a,0x52,0xba, +0x4a,0x3b,0xad,0xc2,0x34,0x1f,0xb6,0xe2,0x26,0xcc,0x00,0xab, +0x2b,0x32,0x7b,0xae,0x9c,0xdf,0x79,0x9e,0x9d,0x25,0x9f,0xb0, +0xad,0xcd,0xe9,0xfc,0x83,0x67,0x77,0x70,0x81,0x50,0x81,0x4e, +0x61,0x05,0x37,0x7c,0xdf,0x61,0xb8,0xe6,0x7f,0x89,0x49,0xd2, +0xf2,0x67,0x06,0x78,0x0b,0x7d,0x59,0xfb,0x50,0xf8,0x24,0x61, +0x47,0xde,0xd1,0x7b,0x39,0x38,0x53,0xd4,0xf7,0x09,0xd2,0xf0, +0x79,0xf3,0xc6,0x8f,0x34,0xf6,0xca,0xef,0xfb,0xee,0x7d,0xfe, +0x85,0xab,0xc7,0xe7,0x89,0x3c,0x22,0xab,0xdf,0x29,0xa5,0x06, +0xb1,0x87,0x51,0x13,0xe7,0x95,0x68,0x69,0x5d,0x91,0x5b,0xb0, +0x30,0xa6,0x2b,0x8b,0x2a,0x91,0xd8,0xb7,0x5c,0xfa,0x1e,0x20, +0x05,0x1c,0x3c,0xc4,0x7d,0x82,0x91,0x4a,0xe9,0x6c,0xed,0xa4, +0x96,0x4b,0xc0,0x12,0x5b,0x95,0xb7,0x22,0x4a,0x81,0xee,0x88, +0xe2,0xc0,0x11,0xd1,0x17,0x24,0x50,0x53,0x2c,0xd0,0x8c,0x28, +0xd6,0x32,0x7d,0x59,0x7f,0x59,0xa4,0x9f,0x42,0x91,0x7e,0x0a, +0x6c,0xc4,0x10,0x1a,0x52,0xac,0x5d,0xf5,0x65,0xe3,0x39,0x06, +0x78,0x2f,0x42,0x36,0x8d,0x5f,0x43,0x36,0x8d,0x95,0x21,0x9b, +0xbd,0x95,0xb7,0x09,0x32,0x75,0x68,0x40,0xe4,0x36,0x0a,0x6e, +0x55,0x31,0xf8,0x8f,0x5e,0x82,0x80,0x12,0x7e,0x84,0xfc,0x5e, +0x12,0xdc,0xc1,0x46,0x2a,0xd7,0x3f,0x55,0x39,0xaa,0x31,0xef, +0x45,0xfd,0x60,0xde,0x8b,0x3a,0x04,0x4d,0xd0,0x20,0xe2,0x18, +0xfa,0x4e,0x38,0x90,0xc5,0x6d,0xac,0xac,0xfd,0x07,0x2f,0x66, +0x1f,0x18,0xdf,0xdf,0x14,0x25,0x0f,0x98,0x34,0x5e,0xa8,0x80, +0x9b,0xf0,0x06,0x0f,0xfb,0xc1,0x58,0x09,0x4a,0x70,0xbf,0x7a, +0x8b,0x1f,0x1d,0xf4,0x83,0x51,0x92,0xd5,0xc5,0x6c,0x0c,0x81, +0xae,0x62,0x97,0xa7,0xbc,0x84,0xac,0x34,0xec,0x38,0xb7,0x8e, +0x1b,0x5e,0x79,0x1e,0x61,0x32,0x1a,0xc3,0x3a,0xa3,0x3b,0xba, +0x98,0x72,0x06,0x3c,0xbd,0x5f,0x50,0x70,0xa4,0xd0,0x56,0xb9, +0x78,0x81,0xd7,0xf5,0xa2,0x16,0x63,0xc8,0x65,0x73,0x15,0x9b, +0x30,0x0f,0x5e,0xc5,0xd1,0x94,0x33,0xf0,0xe9,0xbd,0xfc,0xfc, +0xa3,0x05,0xbc,0xca,0x45,0x5e,0xc5,0x3b,0x7a,0xdd,0x82,0x65, +0xbc,0xb9,0x15,0x86,0x1d,0x59,0xeb,0xb2,0xaf,0xf0,0xba,0x7d, +0x64,0xb4,0xd5,0xeb,0x3a,0x89,0xe6,0x7e,0xc9,0x2f,0x10,0x75, +0xb5,0x4b,0x5c,0x44,0x56,0x66,0xc8,0xe4,0x30,0x37,0x4c,0x90, +0x14,0x69,0x7f,0x2a,0x95,0xfc,0x3c,0xfa,0xaf,0x4e,0xf1,0x6e, +0x76,0x30,0x4f,0xa1,0xf5,0xbb,0x10,0xed,0x0f,0x45,0x30,0x71, +0x3e,0xbe,0xbb,0x7d,0xdb,0x69,0xfb,0x79,0x05,0xd4,0xd0,0xf4, +0xbf,0x45,0xff,0xc9,0x5c,0x0e,0x9e,0x7c,0x48,0x70,0x8c,0x57, +0xc0,0x31,0x1e,0x3c,0x53,0xe4,0x86,0xd3,0xfd,0xbb,0xfd,0x60, +0xf2,0x7e,0x1e,0x4b,0x2d,0x03,0xc9,0xe6,0x8c,0x35,0x67,0x78, +0x73,0xa5,0x04,0x27,0x60,0x13,0x73,0x04,0x1f,0xb5,0x2f,0x25, +0xca,0xfc,0x5e,0x4d,0x62,0x1d,0xed,0xe6,0xc0,0x53,0x61,0x09, +0x0d,0xc2,0x81,0x44,0xd1,0xb9,0xc1,0x56,0x18,0xb6,0x1e,0x13, +0xf4,0x51,0x7b,0x7a,0xcc,0x94,0x1d,0xc7,0x86,0x73,0xa5,0x2c, +0x99,0x94,0xe6,0x04,0x5f,0xa2,0x1d,0xb6,0x21,0x60,0x47,0x0d, +0xa1,0x7a,0x8e,0xb1,0x42,0xd1,0xc9,0x7f,0x89,0xae,0x1f,0x54, +0xac,0x9d,0xf4,0x65,0xc1,0x82,0xdf,0xbe,0x1d,0xa6,0x94,0x3a, +0x10,0xdc,0x0d,0x4e,0xb0,0x5b,0x52,0xbe,0x54,0xd3,0xd6,0xa9, +0x68,0x03,0x29,0x9e,0xac,0xf8,0x0e,0xa4,0x82,0x8d,0x24,0xb2, +0xbd,0x5e,0x57,0x51,0x85,0x81,0x5e,0x6c,0xc8,0x6d,0x08,0x07, +0xf5,0xff,0x14,0x0d,0xbc,0x0d,0x7d,0x44,0x91,0x1f,0x84,0xca, +0x58,0xad,0x4f,0x37,0x6c,0x87,0x56,0xa6,0x4b,0x83,0x1e,0x5f, +0xcf,0x57,0x68,0xbd,0x96,0xe6,0x55,0x8b,0x8a,0xf4,0x78,0x57, +0xf4,0xf4,0x78,0xa1,0xbd,0x07,0x60,0x0b,0xae,0xc1,0x9a,0xf0, +0x0f,0xbb,0x70,0x58,0x37,0x2e,0xa1,0xfe,0xbf,0xfb,0x35,0x71, +0xb9,0xa5,0x1d,0x89,0xad,0x22,0x4c,0xd4,0x25,0xf0,0x8a,0x9d, +0x91,0x6e,0xfb,0xab,0x9a,0x0b,0x4e,0x62,0x2e,0x66,0xbb,0xf5, +0x20,0xfc,0xc6,0x1e,0x4b,0x77,0x7b,0xab,0x5a,0x77,0x1c,0xc9, +0xba,0x9b,0x0b,0x57,0xf2,0x9a,0x17,0xf5,0xc2,0xc6,0x38,0x8e, +0x35,0x36,0x17,0x26,0xc3,0x15,0x96,0x2d,0xdd,0xe5,0x97,0x37, +0xc4,0x40,0xd6,0xd0,0x5c,0xb8,0x19,0x2e,0xb2,0xeb,0xd2,0x5d, +0x3f,0x55,0x6b,0x8b,0x3e,0xac,0x6d,0x65,0xe1,0x09,0x5e,0x78, +0x87,0x1b,0xc8,0xee,0xdc,0x20,0x76,0xaf,0x34,0x90,0x6f,0x95, +0x85,0x13,0x0c,0x17,0x06,0xb2,0xf9,0x78,0x13,0x2b,0x91,0x6e, +0x87,0xa8,0x5a,0x17,0x6c,0xcc,0xba,0x48,0x56,0x3e,0xc3,0xb2, +0x5e,0xd9,0x9f,0x96,0x5f,0x65,0x64,0xdd,0x2c,0xc9,0xe8,0xdf, +0xcc,0x34,0x58,0x6e,0x36,0xac,0x7f,0x57,0x93,0x15,0x56,0xa3, +0x16,0x55,0xc8,0xd5,0x5d,0x17,0x9f,0xd8,0x17,0xc8,0xcf,0xa6, +0x67,0xf7,0xee,0x3d,0x3d,0xbc,0x8d,0x29,0x50,0x6e,0xb7,0x2b, +0xec,0xaa,0xc9,0x0a,0xea,0xa3,0x63,0x45,0x20,0xf3,0x52,0x21, +0x17,0x33,0x4a,0xe0,0x2f,0x2e,0x17,0xad,0x44,0x4a,0xf6,0xcc, +0x35,0xa7,0xa8,0xd3,0xef,0x24,0x6b,0xf0,0xe5,0xa2,0x53,0x67, +0xf7,0x9e,0xb1,0x5d,0xb5,0x3a,0x75,0x69,0x4a,0x3c,0xbf,0xc2, +0x85,0x5f,0xc1,0xb1,0xda,0x28,0x71,0xaa,0xf0,0xd4,0x19,0x7e, +0x6a,0xf5,0xaa,0x14,0xf3,0x29,0xd1,0x98,0xb2,0x52,0x3e,0xb9, +0x7e,0xdf,0xfe,0x6c,0xe3,0x95,0xfe,0x99,0xee,0xee,0xfd,0x87, +0xf8,0x85,0xef,0x9b,0x90,0x11,0x63,0x4a,0x94,0xc3,0xa3,0xc7, +0x8d,0x09,0x35,0xfa,0x5e,0x1a,0xf8,0xf2,0xe5,0xa5,0xb3,0xc5, +0x97,0xc6,0x1f,0x0d,0x5f,0x6f,0x52,0xe4,0x0a,0x70,0x19,0xa7, +0xa8,0xde,0xe8,0xcc,0x0d,0x62,0x27,0x6f,0xd6,0x46,0x6b,0x2c, +0x79,0x17,0x09,0xeb,0xb8,0xb1,0x6e,0x1d,0x7b,0xa3,0x8b,0xf9, +0x44,0x6b,0x71,0xa2,0xf0,0xff,0x9e,0x48,0x03,0x67,0x1f,0xd6, +0x52,0x6b,0x28,0x79,0x17,0xa8,0xfc,0xa0,0x31,0xa4,0xf1,0x13, +0x3e,0x7c,0xc0,0xa5,0x81,0xd1,0x87,0xd9,0x6b,0x0d,0x24,0x9f, +0x42,0x71,0xc2,0x5e,0x3f,0x71,0x21,0x73,0x77,0x91,0xe9,0x47, +0xa9,0x30,0x73,0x5a,0xdf,0xf0,0x21,0x53,0x02,0xed,0x67,0x4b, +0x01,0x43,0xd2,0xb3,0x39,0x30,0xa0,0x72,0x19,0x47,0x44,0x92, +0x36,0x4b,0x05,0x2b,0x9c,0x54,0xa2,0x25,0x77,0xa5,0x96,0x7b, +0x09,0x9b,0x57,0x22,0x29,0xa5,0xaa,0x28,0xad,0x86,0x93,0x8a, +0xb5,0x64,0x5f,0x9c,0x8b,0xd5,0x60,0x7c,0x57,0xfd,0x04,0x1f, +0xa3,0x37,0xd5,0xcb,0x68,0x82,0xba,0x9e,0x6c,0x07,0xb5,0x1e, +0x4a,0x14,0x1f,0xf4,0x47,0x6b,0x2e,0x5e,0xfe,0x62,0x12,0xfc, +0xa5,0xdf,0x78,0x34,0x24,0xc3,0x68,0x49,0xec,0x33,0xcc,0x51, +0xdf,0xe0,0x82,0xeb,0xda,0xa6,0x1e,0x18,0xd1,0x14,0x26,0xf6, +0x64,0x8b,0xc5,0x3e,0x83,0x42,0x6b,0x3e,0x27,0xba,0x70,0xbf, +0xcc,0x36,0xbd,0xd6,0x62,0x61,0xa2,0xf0,0xe0,0xb0,0x18,0x48, +0x90,0xe3,0xe6,0x86,0xc2,0x83,0x43,0x29,0xe3,0x56,0xf2,0x35, +0x76,0x91,0x40,0xa8,0xf6,0x83,0x04,0xfd,0x95,0xd2,0x39,0x1a, +0x37,0xae,0xf4,0xa5,0xfe,0x23,0x65,0xe7,0x49,0x63,0x9d,0xc4, +0x6f,0x8e,0xb6,0x51,0x94,0x45,0x78,0x62,0x46,0x65,0xd9,0x1e, +0x68,0x24,0x22,0x2e,0x5b,0x98,0x23,0x2e,0x5b,0x88,0x88,0xcb, +0x46,0x06,0x6c,0x1c,0xa8,0xa4,0x43,0x53,0x71,0xa2,0x8d,0x08, +0xa3,0x6c,0x23,0x76,0x89,0x9a,0x8a,0x5d,0x22,0x45,0x7b,0x0d, +0xb7,0x55,0x70,0xc4,0xc9,0xc5,0xa5,0x6e,0xbe,0x42,0x52,0x41, +0x63,0xdf,0x32,0xa9,0x58,0x52,0x84,0x93,0xa8,0x64,0x76,0x12, +0x9d,0xea,0x8d,0xfb,0xc0,0x03,0x2d,0xff,0xa5,0x86,0x52,0x81, +0xe8,0x61,0x2f,0xfe,0xf8,0x91,0xe0,0xc7,0x48,0x73,0xd8,0x4b, +0x57,0x57,0xea,0x54,0x87,0x28,0x8f,0xe1,0x3c,0xf4,0x95,0xa0, +0x56,0xf1,0x3d,0xb0,0x06,0x6b,0xdf,0x7b,0x58,0xcb,0x1e,0xf7, +0x49,0x8f,0xf1,0x57,0x15,0x56,0x41,0x5f,0x99,0xba,0x9c,0x16, +0x68,0x6a,0x95,0xbb,0xc4,0x36,0x0a,0x4b,0x35,0xa5,0xc2,0x52, +0x65,0xbf,0xca,0x56,0xe5,0xf7,0x89,0x03,0x75,0xc9,0x26,0x7f, +0xeb,0x66,0x6b,0x6b,0x6e,0xb6,0x0a,0x0b,0x37,0xfa,0x27,0x03, +0x5a,0x72,0x0b,0x57,0xd8,0xad,0xfa,0xce,0xab,0xad,0x48,0x2a, +0x9b,0x69,0x60,0x03,0x37,0x71,0xe1,0xff,0xa7,0xc8,0xbb,0x58, +0xd6,0x9a,0x5a,0xd4,0x16,0x18,0x04,0x7c,0xb4,0xe9,0x97,0xd9, +0x79,0x5c,0x49,0x2d,0xe2,0xc8,0x1c,0x33,0xc2,0x4d,0x3b,0x4e, +0xad,0xf7,0x12,0xd7,0x50,0x05,0xb2,0xf3,0x71,0x01,0x57,0x0b, +0xa3,0x72,0x70,0x14,0xff,0x33,0x2d,0x8f,0x5b,0xb7,0xc7,0xc9, +0xa5,0xc9,0x8b,0x06,0x28,0xea,0x42,0x20,0x30,0x56,0x98,0x53, +0xa1,0x30,0x09,0x2d,0x70,0x1c,0xfa,0x70,0x2c,0xf5,0x15,0x72, +0xeb,0x36,0xb1,0xb6,0x95,0xe4,0x51,0xa7,0x58,0x0e,0x99,0x7d, +0x27,0x8f,0x1b,0x10,0x6c,0x5e,0xbc,0xcc,0x1b,0x77,0xce,0x77, +0x2f,0x1f,0xd0,0x77,0xf6,0x1f,0xba,0x50,0x44,0x2d,0xbb,0x11, +0xff,0x43,0x7d,0xef,0x4c,0x34,0x29,0x22,0xc9,0x79,0x72,0x34, +0x75,0x3c,0xc2,0x5f,0x76,0xa3,0x5c,0x98,0xb5,0xb7,0xb0,0x28, +0x6b,0x72,0x80,0x69,0x81,0x1c,0xd0,0x7f,0x8a,0x7f,0x40,0xff, +0xf4,0x42,0x93,0xf2,0xe5,0x1b,0xed,0x9d,0x5a,0x84,0xf4,0x6f, +0x4f,0x36,0xe0,0x0e,0x7f,0x1e,0xca,0x7f,0x83,0x2c,0x2b,0x5f, +0xee,0x91,0xc2,0xb2,0xc1,0x24,0x96,0x6b,0x31,0x7f,0x82,0x4d, +0x98,0x2f,0xcb,0xd1,0x57,0x0f,0x0f,0xda,0xaf,0x97,0x0f,0xce, +0xdb,0x39,0x7c,0xf8,0xbc,0x99,0xe3,0xb9,0x24,0x1b,0xaf,0xaf, +0x18,0x16,0xac,0x8b,0xcb,0xa6,0xd5,0x9e,0x90,0x50,0xc3,0xd5, +0x6b,0xc9,0x2b,0xae,0xd8,0x2b,0x7f,0x64,0x33,0x3b,0xc1,0x19, +0x31,0x50,0x8d,0x94,0xc2,0xc7,0xee,0x3e,0x75,0xea,0xf0,0xee, +0x6c,0xfb,0xcd,0x7c,0x12,0x68,0x77,0x8b,0x68,0x2d,0x0b,0x82, +0x9d,0xa4,0x19,0xd0,0xc3,0x83,0xd6,0x8c,0xe5,0xe8,0x34,0xc1, +0x53,0x62,0x2b,0xe7,0xa7,0x72,0x73,0xe5,0x47,0x43,0x8b,0x5b, +0xb0,0x8b,0xdd,0xe0,0x5f,0xde,0x4f,0x9b,0xdb,0x5c,0x66,0xb1, +0x73,0x79,0xe7,0x44,0xf0,0x4f,0x6f,0x75,0x07,0x9e,0xe9,0x8b, +0x0b,0x8b,0xda,0xc9,0x6c,0xd9,0xdc,0x32,0x3f,0x82,0xd2,0x1d, +0x28,0x16,0x5d,0x94,0x7a,0x95,0xcd,0x85,0xc9,0xda,0x94,0x2b, +0xec,0x1c,0x9e,0x15,0x08,0xb7,0xdd,0x8c,0xb0,0x5e,0xbd,0x66, +0x5c,0x7c,0x62,0xa2,0x35,0xa7,0x11,0xab,0x23,0x21,0x3f,0x9a, +0x56,0x43,0xeb,0x82,0x32,0x49,0x86,0x5f,0x31,0x46,0x9d,0x2e, +0xb9,0x0c,0x39,0x9c,0x95,0x75,0xea,0xd0,0x27,0xfb,0x9f,0xa4, +0xcf,0x99,0xe3,0xfa,0xf7,0x1f,0x3a,0xd6,0xd9,0xde,0x8a,0x3a, +0xcc,0x20,0x18,0xcd,0x01,0xb9,0x30,0x49,0x02,0x68,0x4d,0xb1, +0xf1,0xca,0xbe,0x79,0x06,0x4f,0x2f,0xe0,0xb3,0x27,0xf0,0x29, +0x87,0xb9,0xe3,0xef,0x5a,0x4f,0x09,0xd3,0xb8,0x48,0x6f,0x21, +0x16,0xd6,0xc2,0x3c,0xe2,0x5a,0xd8,0x29,0x0e,0x64,0xbf,0xf4, +0xee,0x66,0xca,0xfa,0x3c,0xd1,0x3d,0xce,0x1c,0x58,0xdc,0x25, +0x7a,0x37,0xf1,0xcf,0x27,0xc8,0x49,0x94,0x2f,0xbf,0x90,0x1c, +0xf1,0x77,0x05,0x69,0x5d,0x5e,0x4c,0x1a,0xf1,0x7f,0x92,0x12, +0xd1,0x01,0x2d,0x62,0xb0,0xae,0xdd,0x14,0xa8,0x07,0x27,0x20, +0x99,0x55,0x09,0x80,0x4c,0xac,0xad,0x44,0xf8,0x3a,0xc6,0x34, +0xb4,0x9b,0x06,0x4f,0xba,0x32,0x93,0xc6,0xad,0x21,0x7e,0xbc, +0x50,0x1c,0xff,0xea,0xc3,0x6c,0xa9,0x75,0x03,0x11,0x2c,0x92, +0x46,0x26,0x02,0xa1,0xd6,0xbc,0x3d,0x9d,0x7a,0x7b,0xcd,0xa9, +0x3c,0xe3,0x7e,0xdf,0xa9,0x32,0x4a,0xa3,0x43,0xb8,0xbd,0x61, +0x65,0xfa,0xd7,0xbd,0xda,0x92,0x5a,0x44,0x56,0x84,0xc2,0x7f, +0x47,0xab,0xed,0x10,0x17,0x8f,0xe7,0xdd,0x08,0xfe,0x6a,0x97, +0x98,0xa6,0x8b,0x9d,0xe3,0x2d,0x94,0x24,0x71,0x38,0x52,0xf4, +0x2a,0x75,0x71,0xe5,0x63,0xaa,0x96,0x88,0xb7,0x69,0x04,0xae, +0xef,0x25,0xd8,0x8f,0xae,0xe6,0x5f,0xca,0x44,0xf2,0x16,0x26, +0xe6,0xe1,0x21,0xf6,0x2d,0x64,0xe7,0x29,0xde,0x8e,0x3e,0x87, +0x43,0x0a,0xa7,0xd8,0x0b,0x79,0x3a,0x66,0x46,0xb8,0x51,0xe1, +0x66,0xc7,0x63,0xd5,0xcc,0xaf,0x95,0xe5,0xc9,0x7a,0xe9,0x28, +0xea,0x1f,0x1d,0x45,0x59,0xa9,0xe1,0x7c,0x7e,0x8e,0xd5,0xa6, +0x15,0xf1,0x5e,0x39,0x2a,0xa0,0xa7,0x00,0xa1,0x5a,0x52,0x11, +0xbb,0x8d,0x9b,0x7e,0x15,0xf6,0x6a,0x45,0x97,0x51,0x8b,0xde, +0x44,0x05,0x2f,0x6d,0xd1,0x65,0x76,0x03,0x93,0x79,0xc5,0xdd, +0x57,0xc4,0x49,0x1f,0x2d,0xe2,0x32,0xcb,0xc7,0x95,0x62,0x19, +0x45,0x2f,0xe8,0x61,0x9e,0x52,0x6b,0xc4,0x94,0x52,0xb5,0x99, +0x45,0xec,0x02,0xae,0x13,0x86,0xc6,0xfa,0xcb,0x62,0x51,0x44, +0x85,0x41,0xe6,0xf3,0xe9,0xfa,0x79,0x18,0xa9,0xcd,0xb9,0xc2, +0x72,0xf4,0x1b,0x6f,0x14,0x1b,0xbf,0x30,0x5a,0x4b,0xb8,0xc2, +0x6e,0xe2,0x71,0xd6,0x94,0x88,0x83,0x94,0x2b,0xec,0x31,0x1e, +0xe7,0x67,0x33,0xae,0xea,0x7b,0x04,0xa1,0x38,0x8e,0x5a,0xff, +0x2a,0xd0,0xda,0x18,0x3e,0xfd,0x8e,0x06,0xc1,0x04,0xac,0x22, +0x96,0x9e,0x7f,0x24,0xb9,0xec,0x08,0xf1,0x8c,0x57,0x7e,0x34, +0xa5,0x40,0xab,0x8a,0x31,0x14,0x45,0xed,0x93,0x09,0xad,0xb5, +0x96,0xf8,0x8b,0xa4,0x92,0x21,0xeb,0x76,0x42,0x5d,0x7b,0x7c, +0xa3,0xc8,0x4b,0xda,0xb7,0x5d,0xda,0xce,0x2e,0xa5,0xb7,0x01, +0x26,0xeb,0xa9,0x9e,0x5b,0xda,0xb3,0x06,0xfc,0xe3,0xae,0x22, +0x90,0x8c,0xcf,0x02,0x60,0x13,0xef,0xe3,0xc8,0xee,0x2e,0x31, +0x8d,0xed,0x66,0x68,0x16,0x5d,0x99,0x2f,0xad,0x76,0x9f,0x28, +0x66,0xdc,0x52,0x91,0x7f,0xc2,0x79,0x8c,0xc8,0x1f,0x57,0xcd, +0xa4,0x70,0x90,0x2b,0xb7,0xc2,0x56,0x6a,0xb4,0xd4,0x7f,0x6c, +0xfa,0xd9,0xb3,0x87,0xd3,0xb3,0xec,0xd7,0x4b,0x0a,0x7c,0x9e, +0x2f,0x27,0xfd,0x10,0xe3,0xbb,0x20,0xc8,0x62,0x31,0x5a,0x8b, +0x90,0x5b,0xa3,0xdd,0x6a,0x05,0xf7,0xfb,0xf1,0x47,0x5e,0x7d, +0x13,0x8a,0x4e,0x84,0xc2,0x14,0xf1,0xe3,0x67,0xdc,0xa9,0xb0, +0x38,0x74,0x13,0xb2,0xfd,0x38,0xb7,0xed,0x02,0x45,0xb0,0xa5, +0x33,0xee,0xa7,0xd6,0xb7,0x85,0xf9,0x72,0x50,0xa3,0x5f,0xe3, +0x0f,0xf7,0x9b,0xe3,0x0f,0x2b,0xde,0xfb,0x88,0xfe,0xde,0x1c, +0x9a,0x7f,0x00,0x1b,0x78,0x99,0xcb,0x5a,0xe0,0x52,0xad,0xbd, +0xa4,0xbc,0xe1,0xba,0x61,0x32,0x2b,0x0e,0xd0,0x12,0x9a,0xb2, +0x85,0x02,0x9f,0xd7,0x1b,0x4d,0xe6,0xff,0x03,0x93,0x14,0xb1, +0x37,0xf9,0xf1,0x0e,0xb5,0xcc,0x26,0x1d,0x15,0xd9,0xa7,0x39, +0xb5,0xc8,0x23,0x2f,0x61,0x11,0x07,0x54,0xd4,0xa9,0x37,0xd1, +0xee,0x8b,0x4d,0xe9,0xea,0xd0,0x1c,0xaa,0x4b,0x70,0x0d,0x9b, +0x0b,0x5f,0xed,0xe6,0xc2,0x57,0x5b,0xa5,0x8e,0xdb,0x08,0x7c, +0xa3,0xfc,0xc0,0xac,0xa8,0xb5,0x2f,0x41,0x3b,0x25,0xca,0xbf, +0x55,0x6c,0x23,0xbb,0xe9,0x7c,0x3a,0xc4,0xf3,0x4f,0x75,0x3d, +0x00,0x96,0xf2,0x4f,0x85,0x9b,0xc1,0xc9,0x8b,0xab,0xdd,0x16, +0xfa,0x6a,0xf5,0x66,0xae,0x5d,0xb9,0xfc,0xa0,0xf5,0xb6,0x90, +0xc5,0xff,0xc0,0x38,0xc5,0x90,0x34,0x94,0x3a,0x51,0xa2,0xe8, +0xe1,0x54,0xe3,0xf5,0xfc,0x9e,0x6d,0xa1,0xeb,0x9a,0x6d,0x20, +0xd9,0x2b,0xbc,0xd3,0xcc,0x0e,0x17,0x8a,0x58,0x36,0xd0,0xf3, +0x40,0xca,0x89,0xed,0x5a,0x26,0xb5,0xe1,0x7d,0x43,0x9d,0x86, +0x70,0x4b,0xb1,0x09,0xf1,0x2f,0x5f,0x46,0xcc,0x3d,0xe6,0x6e, +0xb7,0x9a,0x5f,0x3c,0x0e,0x66,0xf0,0x7e,0x74,0xb3,0x57,0xa8, +0x53,0x12,0xd1,0x7f,0xc8,0x4b,0x3a,0x0a,0x3d,0x53,0x20,0x12, +0x74,0x27,0xeb,0x81,0xe0,0x4a,0x45,0xee,0x66,0x7d,0xc3,0xd5, +0x4c,0x86,0x13,0x33,0x3f,0xc6,0x26,0x3e,0xf9,0xa7,0x9d,0x6b, +0xc5,0x66,0xb4,0x62,0x72,0x7c,0x1d,0xbd,0x26,0x4a,0x44,0xea, +0x2c,0x8c,0x35,0xd3,0xbb,0x1e,0x57,0xb8,0xc6,0xbf,0x79,0x71, +0x7c,0x2f,0xbf,0x3e,0x63,0xbb,0x72,0x8d,0xdf,0xb5,0xcf,0xe1, +0xcb,0xfc,0x1e,0x16,0x83,0x08,0x7b,0xa1,0x88,0x75,0xd6,0xee, +0x78,0x4b,0x18,0x0d,0x9a,0xdc,0x5d,0x52,0xcc,0xe0,0x2a,0x8f, +0x83,0xab,0x3b,0x8a,0xae,0xe4,0xec,0x56,0x87,0xb2,0xa3,0x22, +0x2d,0xde,0x25,0x72,0x5c,0xc5,0x08,0xe5,0xb5,0x36,0xb7,0x90, +0xcd,0x7d,0xad,0xc5,0x15,0x71,0x2b,0xf0,0xae,0x62,0x0b,0xc1, +0xf9,0xac,0x7f,0x10,0x84,0x8a,0xcd,0xb1,0xf7,0xa4,0xa1,0xe6, +0x4d,0x1d,0xa9,0x50,0x6b,0xdb,0x2f,0xb3,0x78,0x88,0xed,0x22, +0x52,0x2e,0x58,0xa9,0xcc,0x8d,0xd9,0x33,0x99,0xc0,0x4e,0x1d, +0xb6,0xcc,0x9a,0x43,0x52,0xfc,0x44,0xa3,0x2a,0xeb,0x8c,0x87, +0x68,0xad,0x6c,0x02,0x1d,0x60,0xbf,0x8e,0x27,0x36,0x0b,0xcc, +0x9b,0xec,0xc9,0x8e,0xdc,0x81,0xb9,0x3a,0xe6,0xad,0x26,0x18, +0x0e,0x6c,0xb8,0xb2,0x67,0x0b,0xee,0xc0,0xe0,0x8a,0xa2,0x2d, +0xa2,0x68,0xb9,0x27,0x3b,0x74,0x07,0xe6,0xe8,0x45,0x06,0xed, +0x94,0x8a,0xf6,0x30,0xdd,0x83,0xad,0xbf,0x0b,0xf3,0xc1,0x5e, +0x2f,0x3a,0x22,0x8a,0x22,0x3c,0xd8,0x81,0xbb,0x90,0x58,0x51, +0x74,0x5c,0x14,0xcd,0xf1,0x60,0x3b,0xee,0xc2,0xc2,0x8a,0xa2, +0x5c,0x51,0x34,0xda,0x83,0x45,0xdc,0xe5,0xdf,0x5f,0x14,0x59, +0x68,0xbb,0x84,0x43,0x5f,0xbc,0x27,0xdb,0x7b,0x07,0x22,0xc0, +0x56,0x2f,0xda,0x27,0x8a,0x62,0x3c,0xd9,0x86,0x3b,0x30,0xa5, +0xa2,0x28,0x43,0x14,0xf1,0xe7,0x8a,0xbd,0x03,0x23,0x2a,0x8a, +0x36,0x8a,0xa2,0x95,0x9e,0xec,0xfc,0x1d,0x58,0x5c,0x51,0xb4, +0x59,0x14,0xf1,0x17,0xca,0xb8,0x03,0x51,0x15,0x45,0x5b,0x44, +0x11,0x7f,0xfa,0xe3,0x77,0xf8,0xa3,0xf2,0xa2,0xc0,0x60,0xea, +0x12,0x41,0x04,0x0f,0xa8,0xd2,0x5f,0x4f,0x63,0x6c,0xce,0xe3, +0x5b,0x78,0x4e,0xa4,0x31,0x16,0x70,0x68,0x04,0xf6,0xf5,0x83, +0xbe,0x18,0xa0,0xc3,0xa1,0xd2,0xc1,0x22,0xd1,0xc7,0x17,0x9c, +0x1c,0x00,0x93,0x31,0xec,0x4e,0xa9,0xc8,0x48,0x6c,0x5d,0x40, +0x36,0x67,0xad,0xe5,0xc6,0xd3,0x86,0x27,0x0a,0x4e,0x15,0x53, +0xee,0x60,0x21,0x5b,0x0b,0xae,0xda,0x72,0x0e,0xfe,0x5d,0x9a, +0x0a,0x80,0x3f,0xd4,0x57,0x29,0x1b,0x4e,0x4e,0x8a,0xa0,0xb4, +0x20,0x3e,0x6b,0xca,0x1f,0x0b,0xbf,0xa3,0x39,0xd0,0x9b,0xff, +0x7e,0x89,0xbf,0x06,0xc0,0xea,0x91,0x32,0x5a,0x07,0x07,0xe0, +0x54,0x67,0x53,0x66,0x3f,0x05,0xd3,0xc4,0x8e,0x48,0x80,0x96, +0x54,0xa8,0xa8,0x8b,0xc0,0x00,0xc3,0x61,0x2e,0xee,0x0f,0x54, +0xde,0x4b,0x3e,0x8d,0x54,0x9c,0xf5,0x1e,0x66,0x49,0x8a,0xb4, +0xa4,0x65,0x70,0x1f,0x5c,0xd0,0xea,0x68,0xb0,0x0d,0xd4,0xbd, +0xf8,0x30,0xe3,0x5c,0xe6,0xc6,0xd4,0x8d,0x49,0x9b,0x16,0xc3, +0x56,0xac,0x67,0x73,0x2c,0x57,0x81,0x1a,0x02,0x17,0x5d,0x17, +0xae,0x5a,0x51,0x4b,0x85,0x0b,0x96,0x08,0x09,0x2e,0xd9,0x39, +0xd2,0xcb,0x35,0x10,0x83,0xba,0xd9,0x72,0x13,0x6e,0x1f,0xd1, +0x0e,0xe9,0xcb,0xce,0xd1,0x1e,0x98,0xc4,0xc5,0x60,0xe6,0x65, +0xb1,0xfc,0xf2,0x89,0x68,0x59,0xa2,0xd4,0x3b,0xf0,0xe8,0x75, +0x7b,0xe8,0x23,0xe7,0x16,0x9c,0xbc,0xa5,0x8f,0xca,0x18,0x6e, +0x56,0x1c,0xe5,0xa3,0x27,0x42,0xe7,0x1a,0x88,0x8c,0xb1,0x49, +0x48,0xde,0xad,0xf4,0xb2,0x3d,0xde,0xc7,0x00,0x87,0x3e,0xbd, +0x7b,0x06,0xcd,0x8d,0xca,0xe2,0xb4,0x98,0x55,0xd1,0xb1,0xb6, +0x31,0x8b,0x96,0x26,0x1b,0xb6,0x28,0xfc,0xed,0xd9,0x1d,0x9c, +0x5a,0x9f,0xc3,0xc3,0x78,0xf1,0xcd,0x0a,0x8b,0xb5,0x42,0x99, +0x75,0xaa,0x38,0xba,0x59,0xac,0xdd,0xfc,0xf7,0xe8,0x5e,0xb1, +0x76,0xef,0xdf,0xa3,0xf3,0xc5,0xda,0x79,0x71,0x74,0x66,0xa8, +0xaf,0xfd,0x1c,0xb9,0x9d,0xdf,0x00,0xb4,0x58,0x62,0x52,0x58, +0x5a,0x44,0x6a,0x80,0xb6,0xe2,0x27,0x83,0xc3,0x4d,0xb8,0xa8, +0x18,0x44,0xee,0xdd,0x5f,0xec,0xf5,0x51,0xef,0x06,0xb1,0xd4, +0x29,0x8d,0x28,0xd0,0x0c,0xbe,0x2d,0xee,0x2c,0x79,0x8c,0x19, +0xe8,0x63,0xef,0xe4,0xee,0xfb,0x98,0x4b,0x21,0xb4,0xfc,0x0c, +0x96,0x12,0x9c,0x73,0xae,0xf8,0xc5,0x9f,0x7f,0x75,0x6c,0x52, +0x64,0xf4,0x82,0x85,0x62,0xce,0x8a,0x00,0x7c,0xa5,0x07,0x09, +0x30,0x3c,0x7c,0x9c,0xbc,0x42,0xf1,0xfa,0x3f,0x49,0x36,0x25, +0xd6,0x45,0x09,0x9d,0x3d,0x7b,0xec,0x48,0x63,0xf7,0xe2,0x40, +0xdd,0xa7,0xbc,0xe0,0xc6,0xf1,0x8a,0x3c,0x2f,0x33,0x71,0x6a, +0x18,0x4c,0xed,0x77,0x47,0x7b,0x20,0x57,0x94,0xcc,0xc7,0xa9, +0x7d,0x60,0x6a,0xdf,0x3b,0xda,0xcb,0xca,0x92,0x18,0x3d,0x9b, +0x22,0x2f,0x79,0x5b,0x59,0x92,0x58,0x59,0xf2,0x57,0x65,0xc9, +0x24,0xbd,0x9d,0x61,0x77,0xb4,0x6b,0xa2,0x04,0xe6,0xab,0x77, +0xb4,0x43,0x9e,0x2c,0x54,0xa7,0xff,0x90,0x84,0x66,0x8d,0x52, +0x43,0x60,0x2a,0x56,0xbb,0x53,0x1a,0xe6,0xc9,0x0e,0xc8,0x8a, +0x2e,0x78,0x0c,0xe0,0x0b,0xfe,0x69,0xbb,0xa0,0xb6,0xfd,0xe2, +0x7c,0xb1,0xba,0x71,0x5c,0x65,0x09,0x30,0xc2,0x13,0xb7,0x69, +0xc5,0x52,0x59,0xa0,0x52,0x1a,0xa9,0x65,0xab,0x30,0xc1,0x83, +0x2d,0xb9,0x0b,0x33,0xc0,0xfe,0x8a,0x2c,0x4a,0x72,0xd5,0x7f, +0xe7,0x98,0xb9,0xa4,0x48,0x85,0x61,0x1e,0x2c,0xee,0x2e,0xcc, +0xd3,0x4b,0x68,0xad,0xb7,0x84,0x45,0xde,0x85,0x69,0x95,0xe7, +0xaf,0x71,0x75,0xea,0xc1,0x46,0xde,0x85,0x81,0x15,0xe7,0xdf, +0x11,0x36,0xe0,0x2e,0x84,0x55,0x1c,0xbd,0x17,0x89,0xd2,0xf8, +0xec,0x37,0x1f,0x7d,0x20,0x2c,0xa6,0xb2,0x6d,0xc8,0xd6,0xea, +0x18,0x0a,0x58,0x2d,0x5f,0x38,0x22,0xe3,0x69,0x66,0x6d,0x10, +0x8c,0xe2,0x9b,0x54,0x58,0xa1,0xcf,0xb8,0x08,0xc1,0x28,0x2e, +0x4a,0x36,0xab,0xff,0xca,0x19,0x51,0xb2,0xb8,0xa2,0xc4,0x3c, +0x51,0xff,0x5b,0xf2,0xff,0x50,0xf5,0x1d,0x60,0x51,0x24,0xcd, +0xdf,0xea,0xc1,0x0c,0x74,0x9b,0x61,0x74,0x77,0xe9,0x5b,0x44, +0x30,0xe7,0xac,0xa7,0x9e,0x18,0x40,0x51,0x82,0x22,0x2a,0xe6, +0x74,0x07,0xc6,0x3b,0xd3,0xa9,0x48,0x0e,0x06,0x10,0x50,0x24, +0x98,0x33,0x7a,0x2a,0x48,0x46,0x72,0x14,0x05,0xcc,0x18,0xf0, +0xbd,0xfc,0x5e,0x4e,0x7a,0xf9,0xae,0x47,0x6b,0xf4,0xff,0x55, +0xcf,0xa2,0xf7,0x7e,0x8f,0x8f,0x6c,0xcd,0xec,0xec,0xa4,0xae, +0xae,0xfa,0x55,0x75,0x05,0xfc,0xd5,0x8e,0x57,0x7b,0xd2,0x95, +0x7f,0x05,0xc3,0x0d,0xe1,0xff,0xed,0x4c,0x5e,0x7d,0x95,0xa5, +0xf0,0x60,0x57,0x6d,0x5f,0x33,0x5f,0xdd,0xf2,0x95,0xdd,0xeb, +0xaf,0x8e,0x2b,0xff,0xce,0x77,0xcb,0x1e,0xcb,0xfd,0x14,0xfe, +0xcf,0x9e,0x5c,0x85,0x6f,0x77,0xd5,0x82,0x9b,0xd1,0xb0,0x6f, +0xd9,0x73,0x46,0xe1,0xbb,0x5d,0xb5,0x63,0xfa,0x09,0xc5,0x53, +0x22,0x42,0xaf,0x11,0x08,0xbd,0x49,0x3d,0xe1,0xc6,0x7a,0x4c, +0x27,0xda,0xce,0x26,0x11,0xcd,0x01,0xf8,0xf0,0x2b,0xd4,0x77, +0x26,0x68,0x5b,0xb5,0x15,0x81,0x14,0x72,0x75,0xff,0xcf,0x37, +0xd3,0x24,0xc8,0xb4,0xa2,0x4a,0x3a,0x5f,0xef,0x95,0x14,0x04, +0x9b,0xad,0x3d,0xa4,0x20,0xbe,0x59,0x54,0xcd,0x5d,0xff,0xba, +0x6a,0xae,0x7a,0x00,0xd6,0x34,0xf3,0x0b,0xda,0x67,0x62,0x0e, +0xce,0x85,0x2f,0x1e,0xa8,0x8e,0x22,0x73,0x50,0xd2,0x57,0xc0, +0x84,0xe3,0xfc,0x92,0x88,0x40,0x73,0x22,0x07,0x63,0xae,0x1b, +0x3e,0x80,0x01,0xb0,0x35,0x12,0xd6,0x9e,0x45,0xa1,0x5d,0xb3, +0xc4,0x9a,0xf7,0xff,0xe7,0xea,0x3d,0xde,0xc3,0xf4,0x04,0xde, +0xf3,0xe4,0x3d,0x97,0xc9,0xd0,0x7a,0xa1,0x17,0x74,0xef,0x87, +0x60,0x5f,0x5d,0x7b,0x43,0x5b,0xfb,0x9b,0xba,0xfd,0xa6,0x76, +0x0d,0x9e,0x74,0x23,0xea,0xb9,0x5b,0x5a,0x9c,0xf0,0xf1,0xfd, +0x83,0x22,0xfe,0x69,0x83,0x36,0x12,0xf2,0xd5,0x09,0xd2,0xef, +0x02,0xe4,0x0d,0xd1,0x41,0xde,0x10,0x0b,0x45,0x4d,0x8f,0xb4, +0xcf,0xbc,0xd4,0x03,0xf2,0xb2,0xb8,0x95,0xb1,0xef,0x9a,0xb5, +0xcb,0xd4,0x5c,0xba,0xa8,0xfc,0xe6,0xa5,0xca,0xf4,0xca,0x67, +0x1d,0x71,0x62,0x2d,0xaf,0x86,0xe5,0xdf,0xf1,0xf5,0xb5,0x90, +0x05,0xbf,0xf0,0xaa,0x5a,0xba,0x64,0xdb,0xb6,0xc0,0xe5,0x26, +0x8f,0xfa,0xd9,0x7f,0xfc,0x5e,0x7f,0xf5,0x76,0xe1,0xb6,0x96, +0x1d,0xd3,0x2c,0x3b,0xee,0xe0,0x0e,0x35,0x86,0xff,0x47,0x99, +0xc7,0x37,0x4c,0x6b,0x56,0x1b,0x5c,0x85,0x87,0x05,0xb9,0xf9, +0x94,0x82,0xfc,0x3f,0xa0,0xf9,0x99,0xa3,0xab,0x16,0xab,0xef, +0x78,0x88,0x47,0xbc,0xef,0xa9,0x1f,0x31,0x47,0xdf,0x51,0xa1, +0xb4,0xcc,0x07,0xd1,0x92,0x9e,0x5e,0x03,0x2b,0xf9,0x3c,0x73, +0x2a,0x25,0xe0,0x24,0xd1,0x5b,0xea,0xd1,0xe9,0x60,0xec,0xc1, +0xe9,0x0c,0x2d,0x5a,0x94,0x15,0xa7,0xda,0xbe,0xef,0xd4,0x0d, +0x95,0xda,0xc6,0x6f,0xd4,0xf0,0x1a,0xad,0x01,0xbe,0xa3,0xd2, +0xab,0xb5,0x43,0x44,0x9d,0x73,0x27,0xc0,0x8a,0xee,0x84,0x82, +0x83,0x37,0x77,0x90,0xb4,0x84,0x45,0x0a,0xef,0x40,0x63,0xd2, +0xc2,0x92,0x22,0x22,0xe0,0x0b,0x7c,0x9e,0x5c,0x95,0x4e,0x85, +0xce,0xd0,0x87,0x77,0x9e,0x4d,0xb5,0x71,0xff,0xb8,0x42,0x05, +0x8a,0xa9,0x46,0x2d,0x8e,0xfb,0xa8,0x51,0x62,0xd5,0xed,0xa6, +0xa8,0x35,0x19,0xf9,0x40,0x82,0x83,0x74,0x3e,0xd1,0xce,0x34, +0x49,0x28,0x8d,0x90,0xa8,0xd4,0x09,0xc4,0xa4,0x42,0x5e,0x1e, +0xa7,0xda,0x63,0xdd,0xb7,0x5a,0x4c,0x3f,0x91,0xd0,0xc2,0x6c, +0x75,0xe8,0xf8,0x43,0x94,0x47,0xd6,0x3d,0xc9,0xc1,0x13,0xff, +0x71,0xa4,0xdc,0xee,0x06,0xd8,0x71,0x93,0xac,0xd5,0x20,0xee, +0xee,0x42,0xe0,0x9a,0x48,0x9a,0xbe,0x74,0x5d,0x06,0x2b,0x31, +0xbd,0xee,0x28,0x7c,0xe1,0x04,0xfa,0x51,0xd2,0x43,0x51,0x97, +0xa0,0xc6,0x92,0xf4,0xc5,0xa4,0x8f,0xc4,0x88,0x77,0x25,0xb5, +0xec,0xcd,0xe1,0x24,0x12,0x26,0xeb,0x3b,0xba,0x91,0x13,0xd2, +0x17,0x8f,0x4f,0x9e,0x2c,0x75,0x6c,0xff,0x0a,0xe8,0xf8,0x58, +0x80,0x8e,0x78,0xe0,0x4c,0xa9,0xa5,0x1d,0x39,0xb5,0x58,0x89, +0xfa,0xca,0x69,0x94,0x65,0xe3,0x67,0x51,0x48,0xc8,0x31,0x12, +0x81,0xcf,0xf0,0x41,0xb1,0x43,0x1d,0x0e,0x78,0x5a,0x20,0x0e, +0xb5,0x58,0xcf,0x96,0xc5,0x53,0xbe,0x05,0xb7,0xf7,0x8c,0x1c, +0x12,0x3b,0x5c,0x87,0x40,0x6b,0xf9,0xe6,0x83,0xaf,0x21,0x8e, +0xb7,0x8e,0x11,0xa2,0xea,0xac,0x23,0x16,0xb8,0x47,0x0f,0x73, +0x08,0xe6,0xde,0x7c,0x2d,0x6e,0x5f,0x7b,0x36,0x8c,0x70,0x3f, +0x41,0xc2,0x5f,0x7c,0x00,0x7f,0x52,0x8f,0x5c,0x75,0x4e,0x7d, +0x5b,0xa2,0xa2,0x08,0x6f,0x9c,0x48,0xf2,0x9a,0xab,0x50,0xe6, +0x32,0x88,0xd4,0x53,0x73,0xf5,0xe2,0x87,0x8f,0xca,0xeb,0x32, +0xae,0x19,0x93,0x52,0xd3,0xe2,0x92,0xa9,0xab,0xbe,0x00,0x10, +0xa6,0xb6,0x71,0x95,0x50,0xda,0x66,0xe8,0x6b,0xb2,0x9f,0x4b, +0x13,0xa9,0x0f,0x9a,0xa3,0x3e,0x33,0x2c,0xc1,0xc6,0x74,0x9e, +0x0c,0x76,0x73,0x5c,0x61,0x14,0x38,0x0a,0xff,0xe3,0x63,0xca, +0xf7,0x3d,0x6b,0x4f,0x10,0x0e,0xde,0x54,0xce,0xd2,0x08,0x66, +0x5b,0x43,0x12,0xad,0x4f,0x96,0xa5,0xd2,0x9d,0xb2,0xef,0x96, +0x0d,0x2b,0xe6,0x9a,0x46,0x7d,0x3a,0x93,0x77,0xe6,0x9d,0x69, +0x6a,0xae,0x5e,0xec,0xa4,0x51,0x7b,0xe2,0xc5,0x4f,0x49,0x7b, +0x50,0x0e,0x5d,0x83,0x90,0x3f,0x74,0x13,0xfb,0x0f,0x61,0x61, +0x8b,0xd6,0x37,0xc7,0xa3,0x78,0x1e,0x98,0x45,0x35,0xe2,0x73, +0x14,0xa6,0xcd,0xe4,0x56,0x32,0xf4,0xba,0xae,0x87,0x5f,0x75, +0xa1,0x79,0xdb,0x33,0x96,0x9d,0x60,0x1d,0xbf,0x20,0x7c,0x23, +0x15,0xee,0x8e,0xf9,0x2f,0x9f,0x13,0xfa,0x87,0xba,0x85,0x07, +0x6b,0xf5,0x33,0xd4,0x1d,0x2e,0xda,0x16,0xf0,0xa0,0xdc,0xd4, +0xf7,0x33,0x30,0x82,0xb1,0xef,0x18,0x30,0x81,0xe9,0x09,0xb5, +0x86,0xfe,0x5e,0xcf,0xda,0x35,0x8a,0xf5,0x54,0xa1,0x41,0x11, +0x68,0x0b,0xed,0x9f,0x7e,0xd3,0xf2,0x79,0x5e,0xb8,0xed,0x3d, +0xd5,0x83,0x7a,0x52,0x84,0x6e,0xb9,0x1e,0x84,0x98,0x66,0x5e, +0x2b,0xb7,0xe7,0xfd,0xb9,0x7c,0xf5,0x11,0x1f,0x60,0xfa,0x43, +0x9f,0xc1,0x0b,0x64,0xa0,0x0b,0xa7,0x43,0x77,0x67,0x73,0x0b, +0x9e,0xd6,0x87,0x14,0xe1,0xab,0xdf,0x58,0xbd,0x17,0x3c,0x55, +0xbf,0x56,0x87,0x88,0x1a,0x24,0x6d,0x9a,0xd4,0x00,0x37,0x66, +0x5b,0x4e,0x24,0x18,0x43,0xb9,0xe3,0xcb,0x20,0xf2,0xe3,0x4e, +0x79,0xc5,0xf6,0xa0,0x35,0x2b,0x4d,0x9e,0xd7,0xe6,0xfe,0xfc, +0xe4,0x5a,0xf5,0x8d,0x7c,0xca,0xdf,0x13,0x69,0xcf,0x1f,0xde, +0xe3,0xdf,0x08,0x79,0x02,0xd2,0xb7,0xd2,0x64,0xd6,0xa9,0x35, +0xb1,0x0e,0x9b,0xab,0x17,0xc1,0xfe,0x62,0xb7,0x42,0x25,0xa1, +0x4c,0x7d,0xd4,0xc4,0x74,0xeb,0xee,0xfa,0x8a,0x5b,0xc4,0x02, +0xb7,0xa8,0xa1,0x0e,0x3b,0x28,0xb3,0xe2,0x84,0xcf,0x51,0xe8, +0x26,0x18,0x25,0x56,0x86,0x47,0x8d,0xa7,0xbc,0x84,0x07,0x69, +0xd6,0x33,0x79,0x05,0xf2,0x6d,0xf5,0x0d,0x53,0xed,0xa4,0xb9, +0x32,0x74,0x5d,0xee,0x4a,0x9b,0xb9,0xc3,0x48,0x82,0xec,0x2d, +0x9c,0x56,0x8b,0x44,0x76,0xa3,0x35,0x99,0xf2,0xcc,0x8e,0x68, +0x59,0xc2,0x63,0xd5,0x4e,0x78,0xac,0xda,0x42,0x74,0x93,0x9a, +0xee,0xc6,0x3a,0x45,0x12,0xed,0x9d,0x26,0xc4,0xa7,0xdd,0xb7, +0x11,0x2d,0xf6,0x11,0xef,0xca,0x9c,0x23,0xfe,0x4d,0xfd,0x9a, +0x00,0x12,0x1a,0xc4,0x60,0x0d,0xd3,0xbd,0xf9,0x74,0x91,0x8c, +0x09,0x9d,0x5c,0x49,0x1f,0x57,0x02,0xb2,0xc8,0xc3,0xb4,0x30, +0xf2,0x4f,0x4d,0x07,0x90,0x91,0x05,0x7d,0x49,0xa7,0xaf,0x3a, +0xd2,0x97,0x79,0x64,0xaa,0x43,0x12,0x72,0xb0,0x2b,0x9f,0x86, +0x0c,0x3b,0xd7,0x2f,0x6e,0x8e,0xce,0xd0,0xe3,0xb8,0x1b,0x65, +0xa4,0x13,0xb1,0xd4,0xc0,0x14,0x80,0x3a,0x02,0xed,0xa7,0x4b, +0x55,0x55,0xd9,0x97,0x2a,0x1c,0x85,0x07,0x2e,0xe2,0x7f,0x97, +0x70,0xa9,0x32,0x05,0x9c,0x60,0x25,0xef,0xe6,0xa6,0xf5,0xe1, +0xbf,0xe1,0xb7,0x35,0x5a,0x87,0x39,0x3f,0xec,0x92,0x57,0x6e, +0x17,0xbd,0x9f,0xa8,0x52,0xeb,0xe7,0xe7,0x67,0xfd,0x6c,0x60, +0x17,0xbf,0xda,0xda,0x5a,0x6b,0xaa,0xcc,0x40,0x78,0xd8,0x8e, +0xf7,0x9e,0xa1,0x8d,0xe0,0x09,0x92,0xd8,0x1c,0x8d,0x9b,0x23, +0x67,0x68,0x7e,0x2d,0x9b,0xfd,0x70,0xb3,0xcf,0x0c,0xb4,0x7c, +0x2d,0x9b,0x03,0x70,0xb3,0xdf,0x0c,0xed,0x6d,0x7d,0xd3,0x13, +0x37,0xdb,0x8a,0xcd,0xb1,0x7c,0xaf,0x30,0x8a,0x42,0xe6,0xf0, +0x10,0x29,0x51,0xf3,0x52,0xfc,0xf9,0x48,0x2a,0x9a,0xb7,0xc8, +0xd3,0xa0,0x1a,0x85,0x90,0x32,0x80,0xcb,0xa2,0xa8,0xa6,0x3c, +0x00,0x85,0x72,0xfc,0xd5,0x3a,0x58,0xed,0xfb,0xad,0x1c,0x37, +0xf8,0x3d,0xff,0x91,0xd4,0x54,0xba,0x31,0x6b,0xde,0x29,0x73, +0x12,0x37,0xd4,0x69,0xc7,0x7d,0x29,0xf7,0x06,0x47,0x43,0x75, +0x29,0xfe,0xd4,0x10,0x92,0x1a,0x4a,0xdf,0x16,0xf5,0x0c,0x24, +0x3a,0x85,0x75,0x8a,0x26,0xda,0x87,0x7a,0x00,0xa1,0xcf,0x3c, +0x08,0x1e,0x2b,0x00,0xa2,0xa9,0xea,0xd3,0xbc,0x32,0x8a,0xf6, +0xa2,0xd9,0x8b,0x9b,0x81,0xa2,0x04,0xfc,0xf7,0x55,0x46,0xd0, +0xd0,0xc4,0x30,0xbd,0x83,0x2d,0xbe,0x90,0xf2,0xd4,0x2a,0x1a, +0x16,0xb9,0x3b,0xf1,0x4c,0x7e,0x6a,0x7e,0x7c,0x8d,0x91,0xf7, +0x6c,0xc4,0xcd,0x3d,0x89,0x7a,0xfb,0xe5,0x2a,0x7d,0x33,0x4a, +0xfe,0xdf,0x4e,0xc1,0x34,0x66,0x79,0xe4,0x32,0x63,0x53,0xa4, +0xf5,0x89,0x2f,0x0f,0x7e,0xf1,0x8b,0x89,0xa6,0x94,0xd4,0x9b, +0x32,0xdd,0xdf,0x93,0xc1,0x26,0x70,0x26,0xb4,0xa3,0x47,0xa2, +0xf8,0x19,0xbd,0x30,0x06,0x1c,0xe4,0xed,0x82,0x28,0x4c,0x7f, +0x80,0xc6,0xb2,0x25,0x74,0xdd,0x55,0xa1,0xd7,0x84,0x39,0xe8, +0x6c,0x49,0xe3,0x75,0x56,0xa8,0x9e,0xd5,0x3b,0xd0,0xb2,0x39, +0xb0,0x65,0x73,0x98,0x65,0x73,0x18,0x0a,0x14,0xab,0x0c,0x61, +0x00,0x99,0xa8,0x48,0xa6,0x39,0x57,0xa4,0xc0,0x5b,0x14,0xc2, +0x46,0xe9,0x0f,0x57,0xfd,0x69,0x7e,0x59,0xe1,0x11,0xaa,0xfe, +0xf0,0x8c,0xa0,0x88,0xed,0x38,0x00,0x3a,0xe2,0x5f,0xfa,0xa7, +0x70,0x06,0x6c,0xfc,0x43,0x0d,0xbb,0xa9,0xdd,0x80,0xdf,0xa8, +0x76,0x70,0x6b,0xb2,0xa7,0xba,0x4f,0xc4,0xa8,0x3c,0xe0,0x1f, +0xd3,0x96,0xb0,0x3d,0xed,0x0e,0x1a,0x41,0x9b,0x7c,0xd4,0x4d, +0x52,0x2d,0xbd,0x7e,0x30,0xa6,0x16,0x05,0x71,0x64,0x8b,0x20, +0x16,0x8e,0x85,0xb3,0x8d,0x5a,0xac,0xd4,0x1e,0x45,0x56,0xc1, +0x0d,0xb1,0x66,0x29,0x76,0x1d,0xb8,0xa5,0x6d,0x93,0xda,0xa3, +0x0d,0xe1,0xc3,0xdb,0x70,0x1f,0x9c,0xdf,0xbd,0xfc,0x85,0xe3, +0xd8,0xa5,0x72,0xf2,0xaf,0xbf,0x56,0x3e,0xe0,0x2e,0xdc,0xc5, +0xff,0x61,0x2f,0x47,0x3c,0xbf,0x67,0x4b,0x1e,0xa9,0x27,0xf7, +0xfa,0xee,0xb3,0xbf,0xff,0x1e,0xfc,0x19,0x78,0xa1,0x52,0x18, +0x7f,0x15,0xee,0xff,0xc8,0xab,0xf9,0x32,0x8d,0xf8,0xf2,0xab, +0x03,0xa1,0x1a,0x96,0xf1,0xfe,0xba,0xf7,0xa5,0xce,0x3a,0x72, +0x99,0x7b,0xcc,0x38,0x87,0x68,0xaa,0x44,0x46,0x8b,0xae,0x61, +0x8d,0xa9,0xb7,0x3e,0x36,0x5d,0x40,0x74,0x65,0x22,0xb0,0x4a, +0xf9,0x10,0x4d,0xc0,0x4f,0x08,0xcf,0x0b,0x57,0xe2,0xa9,0xc8, +0xec,0x1f,0x2b,0xc4,0xd0,0xc7,0x63,0x39,0xa1,0x68,0xd1,0xa2, +0xa0,0xd6,0xbb,0x4a,0x4d,0x52,0x26,0x3e,0x7c,0x24,0xfd,0x6a, +0xf9,0xa0,0x33,0xe0,0x47,0xf2,0x1b,0x22,0xf3,0x01,0x26,0x1a, +0x92,0x16,0x12,0x2b,0xca,0xf4,0x84,0xed,0x4c,0xb0,0x3e,0x4b, +0x43,0x44,0xc9,0xc3,0xb3,0x79,0x69,0x54,0x34,0x1a,0x85,0xdf, +0xc9,0x29,0x1a,0x91,0x1a,0x9e,0x10,0x16,0x65,0x0c,0x8f,0x46, +0x33,0xe8,0x04,0x8d,0xc4,0xad,0xd0,0x28,0xd1,0x4b,0x54,0x87, +0xf4,0xe1,0x91,0xc6,0xa8,0x18,0x84,0xf4,0x47,0x50,0x83,0x32, +0x62,0x85,0xf2,0xf7,0x08,0x8d,0x2f,0xfb,0x9f,0xec,0x2d,0x1a, +0x5f,0x2c,0xca,0xb9,0x53,0x4b,0x3f,0xa9,0x60,0xbd,0x9f,0x54, +0x36,0x4d,0xae,0xb8,0x65,0x4a,0xad,0xbb,0x0e,0xeb,0x67,0x7e, +0x1f,0x2d,0xd3,0x14,0x51,0x2c,0x2e,0x8a,0xfb,0xc0,0x10,0x43, +0x4d,0x19,0x3d,0x28,0x3a,0x25,0xce,0x05,0x2f,0x43,0x6d,0x35, +0xcc,0xa1,0x87,0x3f,0x7a,0x6a,0x6a,0x82,0x1d,0xb3,0xf8,0x08, +0x99,0xb7,0xa5,0xc7,0xe4,0xc6,0xba,0x7a,0xe4,0x0b,0xe7,0xab, +0x3e,0x5e,0x66,0x91,0x5a,0xb5,0x53,0x79,0x21,0xcd,0xd4,0x0b, +0x0a,0xd0,0xcb,0x7e,0x06,0xce,0x4a,0x3e,0xcd,0x2a,0xcb,0x39, +0x9a,0x7c,0x02,0x75,0x65,0x1b,0xc2,0x83,0x63,0x95,0x68,0xd4, +0xb0,0x27,0x08,0x8f,0xdf,0xa3,0xc4,0xd0,0xaa,0x0a,0x18,0xce, +0x27,0x88,0xd6,0x92,0x21,0xe1,0x46,0xfa,0x15,0x97,0xb9,0xcd, +0xf0,0x2b,0xf3,0x13,0x1d,0x93,0xe4,0x12,0xaa,0xfe,0x24,0x22, +0xb5,0xaf,0xfa,0xbe,0xcc,0xd6,0x2b,0x0d,0xed,0x50,0x5a,0xfa, +0x8f,0x4e,0xa2,0xf0,0x95,0x12,0xa2,0x17,0x5e,0x0d,0x8d,0x30, +0xec,0xa6,0xd6,0x7c,0x02,0xf7,0x38,0x78,0x96,0x77,0x70,0xa4, +0x3a,0xd8,0x46,0xd2,0x0e,0xc5,0xcf,0x6b,0x16,0xa2,0xd2,0x66, +0x3e,0x4a,0x24,0x42,0x0c,0x46,0x12,0x31,0xf0,0xc4,0xa8,0xf3, +0xd0,0xc5,0x9a,0xca,0x5a,0xe2,0x8e,0x03,0x3e,0xea,0xee,0xb3, +0x82,0x4c,0xde,0x9a,0x3c,0x43,0x04,0x3f,0x51,0xf9,0x43,0xde, +0x65,0x62,0xca,0x56,0x70,0xb4,0x16,0x29,0x9f,0x5f,0x95,0x5f, +0xcf,0xcb,0xcd,0x37,0x52,0x73,0xed,0x0a,0x6b,0x6e,0xc7,0xad, +0xae,0x3c,0xa4,0x7c,0xbd,0xc8,0x83,0x0e,0xb4,0x9e,0x38,0x8b, +0xae,0x88,0x59,0x19,0xb9,0x52,0x44,0x0d,0x9e,0xa4,0xf0,0x26, +0x38,0xf1,0x0e,0x6e,0x5a,0x74,0x13,0x0d,0x13,0x23,0xa0,0x1b, +0x55,0x14,0x7a,0x02,0xe3,0x86,0xc9,0xda,0x99,0x07,0x74,0x9f, +0xe8,0x04,0x1e,0xa3,0x9b,0xad,0x29,0x55,0xb7,0x4d,0xf7,0xdd, +0xdc,0x65,0xe7,0x20,0x9a,0x5b,0x6a,0x4a,0x7f,0x7b,0x9b,0x3c, +0x72,0xde,0x5c,0xfa,0xec,0x43,0x7c,0xda,0x09,0xda,0xb5,0xc7, +0x12,0xbd,0x2e,0xf5,0xf9,0x6e,0x2c,0xea,0x6a,0x0f,0x13,0x85, +0x0f,0xc0,0xc4,0x03,0x27,0x6b,0xc1,0x0f,0x28,0x6c,0x07,0x07, +0xbe,0x66,0xb2,0x16,0x8d,0x64,0x0a,0xb4,0xe7,0xbb,0xa6,0x68, +0x39,0xf7,0x51,0xe5,0x85,0xde,0xd0,0x42,0x7f,0x57,0xe3,0x6e, +0x52,0x38,0x86,0x7b,0x13,0xa7,0x68,0xb5,0xf7,0x29,0x1f,0x75, +0x15,0xee,0xfc,0xc8,0x0b,0x6b,0xa0,0xf0,0x07,0x7e,0xb5,0x4e, +0xb3,0x45,0x44,0x39,0x80,0xce,0x16,0x5e,0x25,0x27,0x51,0xf5, +0x6a,0x8e,0xc2,0xfb,0x41,0x21,0xf4,0xc3,0x49,0x72,0xdb,0x57, +0xe1,0xbd,0x20,0x4f,0x6f,0x5e,0xa6,0xee,0x82,0xb4,0x66,0xde, +0xac,0x35,0x59,0x68,0x54,0x7e,0x57,0x2d,0xf4,0x1e,0x88,0x7c, +0xc4,0xab,0xb5,0xfb,0xba,0x43,0x50,0x57,0x8a,0xda,0x23,0x41, +0x27,0x42,0xd8,0x63,0x5e,0xae,0x7d,0x2c,0xe8,0xfd,0xb0,0xbd, +0x99,0x17,0xe9,0xc9,0x84,0xea,0x31,0x08,0x7e,0xc4,0x4b,0xb5, +0xef,0x04,0x1d,0x02,0xa7,0x9a,0xf9,0x7f,0xb5,0x7a,0x0b,0x8d, +0x88,0xff,0xae,0xa0,0x59,0xf7,0x20,0xd2,0x1e,0x5f,0xe4,0x62, +0xb0,0x6a,0x69,0xd4,0x30,0x08,0xce,0x78,0xa9,0xd0,0x08,0xa7, +0xbf,0xd7,0xbb,0x34,0xac,0xa1,0x62,0x65,0xc0,0x17,0x7c,0x3c, +0x70,0x5e,0xfc,0xf1,0xf4,0x5b,0x3e,0xc4,0x44,0x45,0x5b,0xb3, +0x37,0x0c,0x97,0x6b,0x21,0xed,0x97,0xed,0x49,0x51,0x7a,0xf5, +0x1f,0xa9,0xa5,0x16,0x4b,0x17,0x73,0xcd,0x0a,0x2a,0x5f,0xbb, +0x59,0xa9,0xe7,0x43,0xf9,0xcf,0x42,0x70,0x1d,0x7a,0x30,0x14, +0x59,0x24,0x5c,0xf4,0xfa,0x45,0x55,0x51,0xf4,0x61,0x83,0xf9, +0xb4,0x54,0x5f,0xf4,0xfe,0x1c,0x4b,0x98,0x7f,0xc7,0xef,0xf5, +0x94,0xa3,0x71,0x0b,0xef,0xa9,0x75,0xee,0xda,0x52,0x34,0x3e, +0x17,0xf2,0x55,0x8b,0xd1,0x22,0xd4,0xd1,0xae,0xc2,0x67,0x4d, +0x80,0xc5,0x08,0x49,0x4d,0x09,0x7c,0x50,0xa3,0x66,0xef,0xc5, +0x87,0xe0,0xde,0x7e,0xb0,0x6e,0xa6,0x5e,0x34,0x52,0x38,0x05, +0xf8,0xbb,0x3c,0x40,0x94,0xdb,0x5d,0xed,0x02,0x01,0x94,0x07, +0xf0,0xb5,0x90,0xc3,0x88,0x89,0x50,0x0f,0xb8,0xc5,0x0b,0x24, +0xae,0xf1,0x3b,0x8a,0x07,0x75,0x16,0x8e,0xca,0x40,0x45,0xdd, +0x47,0xbd,0xf8,0x6c,0x69,0xd7,0x28,0x3f,0x3f,0x18,0x36,0xc4, +0x86,0xfa,0x40,0x5f,0xbd,0xe0,0xf4,0x10,0xbe,0x41,0xa2,0xd0, +0xba,0x6a,0xb1,0xe1,0xf3,0xfa,0x6b,0x25,0x39,0xa5,0x36,0x54, +0x7d,0xe7,0xd9,0x51,0x05,0x0e,0xcd,0xe3,0x87,0xa4,0x2c,0xb1, +0x71,0x08,0x37,0xe6,0xe8,0x1b,0x4b,0xad,0x79,0x5f,0x6e,0x5d, +0xfb,0x90,0xf7,0x33,0xfd,0x4e,0x41,0x9e,0xc9,0xe5,0x6e,0x60, +0x33,0x93,0xdb,0xa0,0xe5,0x19,0xf8,0xec,0xa0,0x02,0xc7,0xe7, +0xf2,0xe3,0x52,0x06,0x0a,0xa0,0x81,0xa4,0xa7,0xf6,0x01,0x85, +0x2e,0x16,0x41,0x4e,0x83,0x0e,0x44,0x52,0x30,0xf4,0x1f,0x03, +0x06,0x30,0xfc,0x34,0x86,0x1b,0xc4,0x86,0x1e,0xeb,0xf2,0xd3, +0x58,0xb1,0xe1,0xe0,0xa5,0x43,0xee,0x85,0x02,0x72,0x87,0xa4, +0x86,0xc4,0x86,0x0a,0xb9,0xb3,0x0b,0x99,0x17,0x27,0x65,0x42, +0x68,0xf8,0x4b,0x54,0x72,0x71,0x29,0x3b,0x51,0x7b,0xd9,0x18, +0xaa,0xcb,0x61,0x2a,0x7d,0xb6,0x4d,0xcc,0x4a,0x07,0xe8,0xce, +0xdb,0xb9,0xd1,0x03,0x3e,0xac,0xe3,0x4e,0x42,0x0f,0x78,0xe9, +0x1f,0x7a,0x97,0x30,0x91,0xa9,0xc9,0xa9,0x1b,0x9a,0x64,0x96, +0x0d,0x03,0xa7,0xee,0x34,0x27,0x25,0xbf,0x52,0x54,0x46,0x96, +0xfb,0x04,0x2c,0xa0,0xb9,0x8e,0xfc,0x4e,0x2c,0x02,0x53,0xdd, +0xcd,0x52,0x69,0xe2,0x03,0xeb,0xb4,0xce,0xbe,0x7c,0x98,0x14, +0x47,0x6b,0xde,0xb1,0x46,0x64,0x6e,0x55,0xf8,0x50,0x08,0xc1, +0x67,0x15,0x78,0x82,0x49,0x5a,0xe4,0x43,0x49,0xeb,0x40,0x3f, +0xfb,0xb0,0xe2,0xe2,0xb1,0xe4,0x53,0x22,0x49,0x04,0x27,0x5b, +0xbc,0x72,0xe1,0x55,0xf6,0x12,0xfd,0xf1,0x79,0x08,0x3f,0xa1, +0x5c,0xd0,0x82,0xd4,0xa0,0xf7,0xf4,0x26,0x96,0x0a,0xdc,0xf3, +0xe5,0xf7,0xa4,0xb3,0x54,0xbb,0xa7,0x47,0x58,0xe4,0x50,0x2b, +0x6d,0x1c,0x6f,0xaf,0x57,0x39,0x85,0x5e,0x3c,0x95,0x0b,0x4e, +0x17,0x7d,0x79,0xf8,0xe6,0x31,0x14,0x91,0x2e,0x0a,0xb7,0x68, +0x1b,0x11,0x0c,0x21,0x40,0xfe,0x64,0xca,0x9c,0x77,0x5b,0x2a, +0x9a,0x08,0x22,0xdd,0x42,0xc4,0x23,0xd1,0x5f,0xf8,0x17,0xdf, +0x1a,0x15,0x3b,0x5a,0x47,0xe6,0x81,0x7c,0x43,0x9a,0xbe,0x0f, +0xb6,0xe8,0xc5,0x11,0xb6,0x78,0xa0,0xb1,0xf8,0x9e,0xb5,0xab, +0x28,0x8e,0x40,0x5d,0xb4,0xad,0xe0,0x21,0xb4,0xcf,0x85,0x5b, +0x5a,0x22,0x4e,0xb1,0xca,0x9c,0xf5,0x0b,0x16,0x04,0xac,0xf7, +0x77,0xd4,0x61,0xe6,0x19,0x01,0x33,0xb5,0xa6,0x19,0x38,0xc1, +0xce,0x35,0x4b,0xed,0x05,0x6a,0x8c,0x19,0xe0,0xa0,0xfe,0x45, +0xad,0xc5,0x6a,0x81,0xc0,0x38,0xce,0x88,0x71,0x9c,0xdc,0xa8, +0xa8,0x0d,0xf9,0xae,0xa8,0x0d,0x49,0x95,0x6f,0x20,0xc8,0x9b, +0x0f,0x7b,0x57,0xa6,0xc6,0xe4,0x94,0x43,0x42,0x30,0xf7,0xa2, +0x7a,0x69,0x9a,0xd3,0x94,0x07,0xaa,0xc1,0x37,0xd1,0x9e,0x2a, +0xa4,0x93,0x7b,0x28,0xb0,0xe5,0x77,0xe1,0x6c,0xd2,0xfb,0x1f, +0xbf,0xad,0x44,0x44,0xd1,0xd9,0xd0,0x11,0xda,0x9a,0x2b,0x96, +0xd4,0xd3,0xe5,0xbe,0xe0,0x30,0xc2,0x5c,0xb2,0xa0,0x89,0x5a, +0xaa,0x8f,0x1d,0x3d,0x66,0xa2,0xab,0x4d,0x33,0xef,0xf9,0xf3, +0x51,0x7c,0x14,0x55,0x43,0xaf,0x6a,0xa1,0x9f,0xaa,0x71,0x75, +0x74,0xfb,0xab,0x88,0x3b,0xba,0xbd,0x1f,0x98,0xc3,0xa1,0x9f, +0xc3,0x46,0x1a,0xf4,0x16,0xd8,0x46,0x80,0xbd,0xc3,0x16,0x7a, +0xe8,0xf8,0x53,0xe1,0xa7,0xdd,0xd1,0x87,0x1e,0x3f,0x75,0xc9, +0x7c,0x48,0xbe,0x14,0x74,0x8a,0xe2,0x28,0xbd,0x50,0x1f,0x08, +0xcf,0x1a,0x1c,0xe6,0xf6,0xfc,0x7c,0x03,0x3c,0x45,0x7d,0x7a, +0xd2,0x9b,0x9f,0x94,0xa8,0x9b,0x36,0x4c,0x1e,0xc0,0x43,0x15, +0xb8,0xc6,0x87,0xb8,0xc3,0xbb,0x2a,0x22,0x1e,0xeb,0x53,0x85, +0xc9,0x45,0x75,0xa6,0x9c,0x29,0x6b,0x64,0xda,0xd2,0xe9,0x49, +0x38,0xe5,0x45,0xaa,0x1f,0xeb,0x94,0x24,0x96,0x08,0xad,0x76, +0x49,0xcb,0xb6,0x6f,0x5b,0xf3,0x8e,0xc8,0x4c,0x9c,0x0f,0xb9, +0xf7,0xf8,0x2f,0x08,0x8c,0xa9,0x32,0x3e,0xa2,0x6f,0x74,0xf7, +0x9d,0x36,0xf7,0xe4,0x3f,0xa8,0xe8,0x68,0x12,0x43,0xff,0x35, +0x1f,0x76,0x21,0x9d,0x78,0x43,0xfb,0xd4,0x93,0x1f,0xd4,0xe9, +0x99,0x0d,0xda,0x7c,0x6f,0x9c,0x6f,0x3b,0x91,0x3e,0xa0,0x97, +0x6b,0x3c,0x82,0xb4,0xa9,0xd7,0xd3,0x89,0x7c,0x01,0x5f,0xf0, +0xf4,0xd1,0xaf,0xd4,0xc4,0x3a,0x5e,0xc5,0xc9,0xcd,0xfd,0x1a, +0xb4,0x45,0xa2,0x41,0x75,0x1c,0x5a,0xd0,0x0b,0xcb,0x6f,0x66, +0x56,0x9e,0xad,0x34,0x26,0xd2,0xb1,0xff,0xe5,0x5b,0x5c,0xee, +0xff,0xc1,0xb7,0x35,0xea,0x0e,0xd4,0x46,0x7d,0xd9,0xd6,0xc9, +0x55,0xb8,0x23,0xbf,0x52,0x1a,0x11,0x18,0xda,0x4e,0x11,0xb4, +0x58,0xce,0xb5,0xe3,0x5d,0x27,0x51,0x5f,0x2e,0xed,0x92,0x2d, +0x36,0xb5,0x28,0xe7,0x54,0xf0,0x58,0x2d,0x90,0x05,0x71,0xfc, +0x3f,0x22,0xf7,0xe0,0xd9,0x42,0xe1,0x3c,0xfa,0xf2,0xb1,0xfa, +0xe5,0x2b,0x7f,0x64,0x62,0xb3,0x9a,0x28,0xe3,0xc4,0x0c,0xdb, +0x1b,0xa2,0xd7,0xf2,0x4b,0xa0,0xc1,0xa9,0x2d,0x85,0xf9,0x76, +0x26,0xd2,0x67,0x2b,0xc5,0x31,0x5b,0x9b,0xd5,0xad,0x72,0x0b, +0xbd,0xa4,0x59,0x80,0xeb,0xd0,0x7f,0x3b,0xf4,0xd2,0xb0,0x7d, +0xc1,0xe1,0xc6,0xd0,0x48,0xd1,0xcf,0x9e,0xea,0x58,0x20,0x22, +0x5a,0xac,0x4b,0x50,0x51,0x89,0x35,0xbd,0x22,0xad,0xe6,0x8e, +0xe9,0x80,0x25,0xc8,0x22,0xc1,0xfa,0x44,0x76,0x4a,0x2e,0x8d, +0xaa,0xb7,0x66,0x1d,0x7f,0x22,0x34,0x41,0xf4,0x90,0xd8,0xfd, +0x17,0xaa,0xf5,0x12,0x4b,0x95,0x5e,0x2d,0xea,0x81,0x1a,0x25, +0xb7,0xd0,0x67,0x1e,0xa8,0x67,0x5e,0xd1,0x17,0x1e,0xa8,0x17, +0x5e,0xd1,0x49,0x0f,0xd4,0x24,0x99,0x26,0x47,0xa3,0x49,0xa3, +0x18,0xca,0xab,0xc0,0xa5,0x25,0x8b,0x6a,0x1b,0xbe,0x8a,0xd5, +0xf4,0xb8,0x7c,0xbb,0x24,0xf3,0xfa,0xf5,0x92,0x35,0x1e,0x66, +0x41,0x97,0x67,0x36,0x34,0x54,0x08,0xfa,0x84,0x74,0xbf,0x3a, +0x60,0xea,0xb4,0x39,0x01,0x6e,0x8e,0x02,0x17,0x84,0x23,0x2e, +0xf0,0x42,0x5c,0x40,0x61,0xe6,0xc0,0x91,0xdd,0xa0,0xd5,0x0f, +0xa3,0xf8,0x4c,0x7a,0x51,0xfe,0xa4,0xa1,0xea,0xeb,0xaf,0x1a, +0xe6,0x8d,0x35,0x53,0xf0,0x9d,0xc5,0x3a,0xb7,0x25,0x34,0x53, +0xfe,0xa4,0xbe,0xf2,0xeb,0xaf,0xea,0xfd,0x71,0xdf,0xb3,0x14, +0x5d,0x8a,0x08,0x3f,0x02,0x2d,0x34,0xdd,0xab,0x85,0x38,0x3f, +0xde,0x5a,0x8a,0xa5,0x45,0x45,0x97,0x7e,0x77,0xbc,0x20,0xfd, +0x71,0x65,0xdd,0x52,0x5a,0x96,0xcd,0xad,0x1c,0x4b,0x24,0x6e, +0x55,0x16,0x48,0xcb,0x72,0x5e,0xd1,0x01,0xb4,0xdc,0xc4,0x5d, +0xae,0xc3,0xc3,0x99,0xff,0xe0,0xe8,0x56,0xfd,0x2b,0x66,0xa8, +0x5e,0xa5,0x76,0x36,0xad,0x97,0xbf,0x3a,0x57,0x75,0xf3,0xe6, +0xb9,0x79,0xc3,0xcd,0xb4,0x01,0x9e,0xe9,0xd5,0x2d,0xd3,0x3f, +0x97,0x68,0x93,0x9a,0xe6,0x86,0x72,0xeb,0x4d,0x21,0xc4,0xf4, +0x60,0x25,0x23,0x2a,0x71,0xa4,0xbf,0x6d,0x0c,0xf4,0x31,0x87, +0xc9,0x3e,0x5e,0x81,0x43,0x44,0x3f,0xba,0x03,0x28,0x67,0x7c, +0x50,0xce,0xd0,0xa7,0x7c,0x05,0x7f,0xd7,0x12,0x54,0x4c,0x45, +0xab,0xa2,0x58,0xb8,0xaf,0x9c,0xe5,0x4b,0x29,0x6f,0x75,0xfd, +0x1e,0x77,0x30,0xc5,0x43,0xa3,0x42,0xd1,0x60,0x7a,0xe3,0x33, +0xd1,0xe2,0xa7,0x1d,0xef,0xe6,0x29,0x5a,0xfc,0x50,0x30,0x09, +0x59,0xcc,0xbb,0xfe,0xf4,0x19,0x37,0x99,0x35,0xdb,0x20,0xe5, +0x7f,0x4c,0x2c,0x7f,0xbd,0xb2,0x9f,0x44,0xeb,0xb5,0xdf,0x44, +0xb5,0xe1,0x9d,0x53,0x3d,0x97,0xc1,0x56,0x8f,0xcb,0x73,0x0c, +0xf4,0x84,0x88,0xfd,0x56,0x44,0xa4,0xb7,0x4e,0x19,0x04,0x05, +0xd3,0x79,0x57,0xb4,0xc5,0xda,0x5b,0xa2,0x96,0xfa,0xf2,0xeb, +0x75,0x1a,0x85,0xe3,0xbc,0x2f,0x45,0xc4,0x33,0x91,0xf5,0xb8, +0x41,0x74,0x53,0xaa,0x22,0x7b,0xdd,0xbc,0x79,0x81,0xeb,0xe6, +0x3b,0xb6,0xb7,0xe6,0xeb,0xf4,0xee,0x4b,0x83,0x05,0x5c,0x5a, +0xcf,0xb7,0x22,0x39,0x44,0x90,0x22,0x08,0xfe,0x24,0xef,0xae, +0x23,0xa7,0x0f,0x10,0x0d,0xed,0xbb,0xa0,0xc3,0x25,0x87,0x89, +0xd1,0xe7,0xc1,0x0e,0x81,0xd1,0x8c,0xb9,0xef,0x8e,0x19,0x3d, +0x37,0xf7,0xa6,0x99,0xca,0xea,0x1c,0x3e,0x4d,0x9d,0x03,0xd3, +0x70,0xef,0xe3,0xf2,0x8a,0x47,0x0f,0xcb,0xe7,0x4f,0xc0,0xbd, +0xda,0xd0,0x3e,0x96,0x12,0xc1,0x54,0x61,0xb6,0x59,0x44,0x37, +0xde,0xe2,0xc3,0x04,0x17,0x52,0x65,0x16,0x1f,0x3d,0x14,0x46, +0xfb,0xf2,0xd1,0x54,0xc1,0x3f,0x23,0x60,0xf4,0x6c,0x41,0x8e, +0x08,0x83,0x56,0x51,0x60,0xbb,0xcb,0x46,0xac,0x6d,0xf0,0x36, +0xea,0x78,0xe9,0x45,0x6b,0xfa,0xef,0x12,0x3d,0xb5,0x34,0x15, +0x15,0x3d,0x41,0xa9,0xa1,0xaa,0x14,0x3c,0xb9,0x11,0x35,0x94, +0x58,0x44,0x69,0xd4,0x16,0x0a,0x7d,0x4a,0x4d,0xb7,0xf4,0xc8, +0xab,0x58,0x39,0x9e,0x9a,0x6a,0xb4,0x8f,0x67,0xa8,0xfb,0xe3, +0xe4,0x38,0x6a,0xba,0xfa,0x2a,0xcb,0x86,0x9a,0x9a,0xb5,0xc9, +0x5e,0x1c,0x3e,0x40,0xd2,0x01,0xba,0xf6,0xd3,0xfd,0x00,0x3f, +0x53,0xe1,0x3c,0xf9,0xe4,0xd3,0x78,0xd1,0x0c,0xce,0x11,0x4a, +0xef,0xf3,0x4a,0x91,0x3a,0x45,0x87,0x3d,0xf5,0xe6,0xfe,0xdc, +0xff,0x49,0xc3,0xd7,0x54,0x74,0x5f,0x79,0x77,0x46,0x4f,0x11, +0x90,0xc4,0xf7,0x4e,0xc0,0x09,0xcd,0x43,0xb9,0xa3,0x4e,0x96, +0x3c,0xe6,0x51,0x48,0x82,0x1d,0x2a,0x40,0x6b,0x37,0x2d,0xb8, +0x49,0xd4,0xda,0x3a,0xac,0xfc,0x47,0xdd,0xff,0xb6,0x24,0xc8, +0x78,0x24,0x8f,0x5b,0xc8,0xfd,0x48,0x1e,0x46,0x12,0xe5,0xb9, +0x13,0x57,0xdc,0xb4,0xe3,0x28,0x7b,0x9d,0xcd,0x75,0x0b,0xbe, +0xfc,0xb8,0xe1,0x7a,0x0e,0x0d,0x8b,0x8f,0x88,0x36,0xea,0x75, +0xe5,0x68,0x78,0x5a,0x48,0x7c,0x28,0x62,0xc6,0xc8,0xdd,0x34, +0xfc,0x50,0x68,0x7c,0x68,0xb8,0x11,0x8d,0x3a,0xba,0x17,0xe7, +0x9b,0x51,0xef,0x4e,0x4e,0xe3,0xc3,0x22,0x8d,0x31,0xbb,0x44, +0xf7,0x5d,0x0a,0xa3,0x0c,0xd5,0xf5,0xb9,0x65,0xe7,0x2b,0x6d, +0x68,0x32,0x73,0x39,0x4b,0x68,0x8a,0xfe,0xd7,0x22,0x3e,0x82, +0x85,0xf8,0x00,0x6f,0x3f,0xde,0x56,0xf4,0x22,0x0f,0xa6,0x30, +0xbb,0xff,0x28,0x27,0xa7,0x9f,0x46,0x23,0xb7,0x57,0x18,0xf7, +0x27,0x27,0xef,0x3d,0x10,0xcd,0xdf,0xa4,0xcf,0xce,0xeb,0x48, +0xf3,0x23,0x44,0x9a,0x16,0xd0,0xf9,0x42,0x79,0x4d,0x6a,0x99, +0xff,0x92,0xfa,0x01,0xa2,0x9f,0xb1,0xab,0xb6,0xbb,0xf9,0x35, +0x79,0x18,0xc9,0xab,0x99,0xa2,0xb4,0xe8,0x81,0x43,0x7b,0x0f, +0xd2,0x67,0x59,0xfa,0xde,0x68,0x71,0x80,0x85,0xdc,0x8a,0x24, +0x6c,0x40,0xac,0xba,0x62,0xb2,0xb6,0xfe,0xc1,0x2b,0x35,0xfe, +0xf9,0x43,0xe9,0x15,0x99,0xf5,0x2f,0xb9,0x44,0x90,0xf5,0x48, +0x4e,0xd1,0xbe,0xbe,0x2f,0xd1,0x2f,0xa5,0xa7,0x8f,0x53,0x0f, +0x96,0x39,0xf2,0x3f,0x75,0x32,0xe5,0x90,0x4e,0x7e,0x37,0xe8, +0x1e,0xbc,0x03,0xef,0x0c,0x72,0x1f,0x4c,0xbf,0x1b,0xa8,0x93, +0x03,0x91,0xfc,0x55,0xe2,0x43,0xf8,0x9b,0x87,0x4f,0x7c,0xef, +0x48,0x7f,0x87,0x41,0x86,0x92,0xd2,0x3e,0xdc,0x1c,0x43,0x7f, +0x97,0x50,0x9f,0x19,0x0f,0x1d,0xff,0x49,0xb8,0xf6,0xfa,0xa2, +0x92,0xb0,0x8e,0x0b,0x0c,0x88,0x0b,0x74,0x38,0x80,0xca,0x7b, +0xd4,0xb0,0xd8,0x11,0x48,0x28,0xa1,0x5e,0x43,0x23,0x7a,0xa3, +0x5a,0x53,0x20,0x93,0x7b,0x73,0x51,0x21,0xba,0x1e,0x6e,0xf9, +0xc8,0xfc,0x34,0x9a,0xfd,0x6a,0xd8,0x0d,0x59,0x3b,0x44,0x95, +0x16,0x39,0x49,0x15,0x3f,0x7e,0xa9,0x56,0x86,0x37,0xf0,0xe0, +0xed,0x3e,0x7c,0xbb,0xe4,0x82,0x3a,0xc9,0x16,0x44,0xfd,0x5f, +0x24,0x76,0xc3,0x08,0xd8,0x8d,0x3f,0xff,0x42,0x8d,0xe1,0x4b, +0xb4,0x07,0x54,0x59,0xb7,0x6b,0xd5,0xee,0x77,0xf6,0x9c,0x16, +0x46,0xea,0x4c,0xdd,0x48,0x55,0xb4,0x20,0x4f,0x35,0x48,0xca, +0xa7,0x4a,0x88,0x25,0x06,0x8e,0x1a,0x13,0xf7,0xed,0xdb,0x9b, +0xb0,0xfb,0x0f,0x44,0x1e,0xa2,0x20,0x20,0x22,0x0f,0xd3,0x0d, +0xd8,0x34,0x8b,0x0f,0x90,0xa9,0xe9,0x37,0xd6,0xb9,0x13,0x2a, +0xa5,0xdf,0x21,0xd0,0x9b,0x77,0xc3,0xed,0x46,0x4b,0x0e,0x13, +0x35,0x27,0x71,0xab,0x5a,0x6d,0x82,0x4c,0x45,0x7f,0x07,0x5f, +0xbe,0x6a,0x04,0xc5,0x99,0x22,0x02,0x98,0x32,0x28,0x5f,0xc9, +0x17,0x7a,0x7e,0x86,0x68,0x74,0x1a,0xc8,0x30,0x98,0x5b,0x4f, +0xa7,0xd3,0x2d,0xc4,0x34,0xea,0xa5,0xee,0x1e,0xa0,0x45,0xc2, +0x18,0xba,0x40,0x8f,0x9a,0x9b,0x29,0xd3,0x85,0x4d,0x6a,0x9d, +0x9b,0x80,0xba,0x20,0xf9,0x70,0x34,0xd0,0x3a,0x51,0x91,0x6f, +0xef,0xa6,0x0d,0x97,0xe9,0x8e,0x31,0x20,0x85,0x83,0xe2,0x40, +0x77,0xf4,0x03,0x16,0x0e,0x03,0x1d,0x68,0x28,0xeb,0x31,0x83, +0xd0,0x0f,0x45,0x02,0x49,0x4d,0xde,0xfb,0xb4,0x5a,0xbf,0xf1, +0xc4,0xdd,0x54,0xef,0x5f,0x19,0x8a,0x13,0xee,0x1e,0xbf,0x20, +0xc2,0x73,0x1f,0x51,0x28,0xf4,0xe2,0xeb,0xc4,0x14,0x84,0x2b, +0x3f,0xf2,0x3a,0x34,0x36,0x28,0xef,0xd4,0x08,0x9d,0xb8,0x2d, +0xc2,0xe8,0xe8,0x9f,0x11,0x2a,0xbd,0x23,0x2a,0xc1,0xd6,0xcd, +0x54,0xc5,0x02,0x4f,0x9c,0x2f,0x8f,0x93,0x68,0x4a,0xca,0xc1, +0x58,0xd1,0x71,0x44,0x14,0x16,0x35,0xf2,0x9f,0xaf,0x69,0xc3, +0x21,0x01,0x01,0x1a,0xb5,0x74,0x84,0x3f,0x53,0x74,0xb0,0xa4, +0xce,0x74,0x90,0xfb,0xa2,0x01,0xe5,0xb0,0x91,0x7f,0xed,0xaa, +0x75,0xb7,0x8c,0xb6,0xee,0xcc,0x47,0x79,0xec,0x82,0x98,0x52, +0xdb,0x89,0xb2,0xd7,0xfa,0x55,0x86,0xbc,0x35,0xf4,0xf7,0x79, +0x66,0x2d,0x6c,0x0c,0xde,0x17,0x22,0xf5,0x72,0xbe,0x88,0xf5, +0x0e,0xe9,0x58,0x4f,0x1b,0xc8,0xdf,0x10,0xb9,0x25,0x43,0x14, +0xd8,0xfa,0x2d,0xdf,0x2a,0xb5,0xdf,0xc9,0xd3,0x5d,0x0c,0x99, +0xb5,0xa2,0xb7,0xb1,0xd7,0x2b,0x55,0xe4,0xc5,0xbd,0xa9,0x9e, +0x36,0xf3,0x61,0x59,0x59,0xae,0xfe,0xd4,0xb4,0x77,0x9f,0x1f, +0x5c,0xf5,0x4c,0x29,0x3e,0x4d,0xb9,0x76,0x93,0x4e,0x71,0x48, +0xf2,0xf9,0x37,0x7a,0x00,0xb5,0xc8,0x8f,0x04,0xd2,0x9e,0x6e, +0xdf,0x1f,0x45,0xb5,0xc7,0x92,0xfa,0x3e,0xc8,0xca,0x84,0x03, +0x9b,0x84,0x4c,0x44,0xc1,0x7f,0x5f,0x17,0xfc,0x37,0x95,0x9a, +0xa5,0xd6,0x14,0x85,0x6f,0x79,0xf6,0x5a,0x7f,0xff,0xc0,0x75, +0x0b,0x50,0xf8,0x86,0x04,0x4e,0x0d,0x9e,0xea,0xa0,0xfe,0x40, +0x25,0x8e,0x4f,0x21,0x52,0xc3,0xa9,0xfc,0x5e,0xdc,0x86,0xb8, +0x8d,0x66,0x40,0xdb,0x72,0x98,0x1a,0xd2,0x80,0x60,0x2e,0x58, +0x04,0x40,0xd7,0x43,0x80,0x04,0x97,0x45,0x48,0x46,0x25,0x04, +0x4a,0x90,0x89,0x2f,0x2b,0xdd,0x87,0xa7,0x4b,0x30,0x0c,0xf7, +0x5d,0xa8,0x81,0x0b,0x12,0x2a,0x19,0x05,0xce,0x7b,0xf2,0xf3, +0xfa,0xbe,0x57,0xe0,0x19,0x99,0x77,0xff,0xfe,0xbd,0xfb,0x76, +0xf1,0x8e,0x54,0xd9,0x87,0x63,0xb6,0x6f,0x37,0xb7,0xa2,0x4a, +0x6a,0xea,0xa1,0xd8,0xd4,0x18,0x14,0x04,0x8a,0xfa,0x7d,0xbd, +0xf6,0xbd,0xa4,0x2e,0x16,0x54,0xe3,0x6b,0xea,0xaa,0xa0,0xf0, +0x7c,0xea,0x0f,0x0d,0xda,0x0f,0xfa,0x3e,0x30,0xf5,0x10,0xfe, +0xf0,0x15,0x48,0x1d,0xf1,0x43,0x00,0xa5,0x75,0xa5,0x4a,0x90, +0x9b,0x4b,0x38,0xbc,0xe1,0xb0,0x19,0xf7,0x1d,0x9f,0x85,0xe6, +0x06,0x42,0x47,0x05,0x4e,0x78,0xf2,0x13,0x12,0x0c,0x44,0x8e, +0xde,0x77,0x40,0x6f,0x2f,0x41,0xcd,0xd5,0xba,0xb1,0xd2,0xea, +0x1a,0xe5,0x33,0xaf,0xf5,0x42,0x93,0xda,0xd9,0x8d,0x8e,0xf5, +0xf1,0x1f,0x3e,0xcc,0xa7,0xf2,0x13,0x94,0xa8,0x01,0x35,0x10, +0xf0,0x07,0xdf,0x74,0x95,0x4e,0x5b,0xb2,0x66,0xb6,0xef,0xd2, +0xcc,0x3b,0x66,0xea,0x5d,0x5e,0x61,0x3e,0x2c,0x57,0x36,0x94, +0xd3,0x59,0xb5,0xb5,0xe6,0x23,0x72,0xdd,0xb5,0x1a,0x3a,0xc7, +0xc0,0x1d,0xf2,0x3e,0xcf,0x28,0xcf,0xa4,0xf3,0xde,0x77,0x77, +0x5c,0x2f,0xb9,0xcf,0xfb,0x90,0xbe,0xea,0x28,0x8c,0x3c,0xdc, +0xc1,0x50,0x54,0x0c,0xce,0xbc,0x0d,0x5d,0x3d,0xfd,0xc6,0x0e, +0x43,0xf6,0xfd,0x73,0xdf,0x50,0x75,0x0b,0xdf,0x2e,0xdc,0xbf, +0xc1,0x42,0xfc,0xee,0x43,0xf1,0x7b,0xe4,0x6d,0x41,0x45,0x20, +0x75,0x51,0xa7,0xce,0xa1,0x82,0x8d,0x99,0x20,0xa8,0x51,0x48, +0xfd,0xa1,0x53,0x69,0x48,0x25,0xeb,0xd4,0x04,0xa4,0x7e,0x9a, +0x80,0x26,0x11,0x30,0x73,0xc5,0xd2,0x7b,0x4d,0x42,0x25,0x37, +0xe2,0xbe,0x65,0x13,0x04,0x95,0x87,0xd4,0x36,0x9d,0x4a,0x45, +0x2a,0x45,0xa7,0xb2,0x91,0xda,0xa1,0x53,0x25,0x48,0x6d,0x98, +0x40,0xb7,0x1f,0x08,0x8e,0x0d,0x8e,0x30,0x7e,0x10,0x2a,0x16, +0x08,0xf7,0x28,0xcd,0xea,0x69,0x57,0x1a,0xb4,0x75,0x9d,0x63, +0x98,0xbc,0xee,0xf8,0x56,0x1a,0x34,0x10,0x1c,0xc2,0xa1,0x87, +0xc3,0x06,0x0a,0x4e,0x68,0xab,0x3b,0x22,0x14,0xa0,0x21,0xf1, +0x2d,0xdd,0x93,0x28,0x5a,0x5e,0xa2,0x2f,0x38,0x22,0xba,0xb0, +0xb4,0x70,0x54,0x9c,0x46,0xed,0x24,0x0d,0x37,0x9c,0xbc,0x7f, +0xf8,0xf1,0x4f,0xa6,0xbb,0x74,0x17,0x5a,0xe9,0x36,0xf8,0xc8, +0xd6,0x54,0x77,0x0d,0x85,0xe2,0x3c,0xa1,0x71,0x61,0x91,0x21, +0xe1,0x86,0x3d,0x09,0x27,0x51,0xfe,0xef,0xb5,0xfc,0x9c,0x8a, +0x8e,0xf1,0xfc,0x34,0x10,0x03,0xbd,0xc0,0x7b,0x88,0x32,0x15, +0x03,0xad,0xe9,0xc5,0x87,0xc6,0x7d,0xc9,0xc9,0x71,0x49,0x31, +0x34,0x2f,0xb5,0x20,0xbe,0xda,0xc8,0x9d,0x1b,0xe9,0x95,0x53, +0x8d,0x08,0xa0,0x1a,0x8a,0xb6,0x52,0x58,0xd6,0x9f,0xfb,0x7a, +0x68,0xbe,0xb7,0x69,0xc5,0x4d,0x53,0xd3,0xa4,0xa9,0x32,0x38, +0xd0,0xaa,0xcb,0x4d,0x68,0x2d,0xdf,0xaf,0x5a,0x4d,0xf5,0x89, +0x78,0x43,0x5b,0xec,0x49,0x3f,0x96,0x78,0xe7,0xdf,0xf5,0x55, +0x93,0xcf,0x1b,0xab,0xbf,0xfe,0xba,0x61,0xee,0x68,0xc4,0x6c, +0xfb,0xba,0xf3,0xc8,0x69,0x5a,0xd6,0x1d,0xfa,0xc3,0x8d,0x95, +0x9e,0xe6,0x50,0xd9,0xd3,0x93,0xc2,0x31,0x4b,0x56,0x4f,0x01, +0xd5,0xe2,0xb8,0xb7,0xbe,0x42,0x43,0xb5,0xdb,0x50,0xa1,0x3e, +0x92,0x5e,0xcc,0xa2,0xdc,0x8a,0x2f,0xe7,0x1f,0x88,0xf5,0x71, +0xdd,0xee,0x5c,0x2c,0xec,0xce,0x26,0x14,0x25,0x22,0x36,0x3f, +0x29,0x45,0x18,0x63,0xdc,0x0f,0x3c,0x0d,0x35,0xc8,0xe4,0xa6, +0xfe,0x9f,0x41,0x57,0xdd,0x74,0x35,0xd1,0xd9,0x4f,0x9e,0x5c, +0xbb,0x7a,0xe7,0xca,0xf6,0xec,0x65,0x27,0xcd,0xfb,0x05,0x5c, +0x6e,0x71,0x90,0x25,0x5a,0x9f,0xa5,0x42,0x1d,0x1a,0x13,0xf7, +0x8b,0xee,0x68,0xbc,0x33,0x45,0x4c,0xf5,0x05,0x37,0x23,0xa6, +0xda,0xa6,0xe4,0x09,0x43,0x7e,0x1e,0x5c,0xbd,0xaf,0xb6,0x11, +0xbe,0xf5,0xa0,0x14,0x51,0xae,0xd1,0xd8,0x3e,0x48,0x78,0xbe, +0xc2,0xf1,0x33,0xd9,0xb2,0x0d,0xde,0x5c,0xe6,0xde,0x28,0x44, +0xc2,0xe6,0x4d,0x10,0x49,0x25,0xd6,0x27,0x0b,0x52,0xae,0xd4, +0x9a,0xa8,0xf4,0xb8,0x31,0x25,0x2d,0x07,0x27,0xa8,0x3b,0x2c, +0x55,0x60,0x89,0xd0,0x1c,0xc3,0x50,0x73,0x50,0x05,0x35,0xb5, +0x18,0x26,0x25,0x72,0x95,0xff,0xce,0x69,0xb8,0xcd,0x63,0xfa, +0x41,0x8c,0x70,0x13,0xa7,0x7a,0xf1,0x54,0xfc,0xfc,0x15,0x2d, +0x98,0x6d,0xdb,0x70,0xff,0x8a,0x6a,0x58,0x21,0xf6,0x9f,0xf4, +0x14,0xd6,0x90,0x31,0x61,0x7f,0x52,0x1c,0x8a,0x50,0xf1,0xfe, +0x01,0x31,0xcd,0xb3,0x36,0x6a,0x82,0x82,0x77,0x3c,0xc8,0x9b, +0x37,0x35,0xc0,0x00,0x3a,0x5a,0x93,0x11,0x85,0xca,0x74,0xbc, +0x37,0xf4,0x70,0x33,0x16,0x53,0xbe,0x05,0xf6,0x3e,0xe0,0x8d, +0x74,0xb6,0xe9,0xad,0xdb,0x8b,0xf9,0x08,0xfa,0x81,0x1f,0x5f, +0x58,0x0b,0xad,0x68,0xe8,0x21,0x1c,0xed,0x70,0x23,0xb2,0x49, +0x68,0x22,0xbe,0x05,0x1a,0x39,0x37,0xc6,0x37,0xde,0x18,0x4b, +0xe3,0x8e,0xea,0x92,0x8d,0x26,0xb7,0x48,0xd7,0x0f,0xad,0xa1, +0xeb,0x43,0xfe,0x2b,0xb5,0xe0,0x74,0x37,0xe1,0x44,0x7b,0x43, +0xe1,0x0c,0x07,0x0d,0xb7,0x23,0xdd,0xe8,0x8f,0x7e,0xdc,0xe8, +0x08,0xfd,0x28,0xfc,0xc0,0x2b,0x6b,0x20,0x84,0xf2,0xb6,0xb0, +0xe7,0xbe,0x5a,0x43,0x79,0x7b,0xd8,0x7d,0x5f,0xc5,0xc9,0xeb, +0x00,0xdb,0x1e,0xaa,0x87,0x29,0x77,0x02,0x63,0x13,0x7e,0xb6, +0x04,0xdf,0xe8,0xf6,0x2f,0x55,0x16,0xe8,0xf1,0xd8,0xcd,0x6e, +0x1a,0x9a,0x29,0xfa,0x20,0x75,0x81,0xae,0xba,0x7f,0x81,0x3b, +0xbc,0x1e,0x37,0x07,0xca,0x7b,0x37,0x6a,0x79,0x5e,0xbc,0x3f, +0x45,0xdb,0xcf,0xbd,0x46,0x81,0x08,0x2a,0xc2,0xa7,0x77,0x0a, +0xc7,0xa9,0x75,0x94,0xa5,0x69,0x1d,0x95,0x56,0x1f,0xdb,0x9e, +0x69,0xc6,0x17,0xc4,0x07,0xee,0x94,0x67,0x6e,0x7e,0x7f,0x29, +0x95,0x77,0x7b,0xb8,0xc7,0x4d,0x73,0x48,0xc2,0x4b,0xba,0x4d, +0x8c,0x9d,0xa2,0x13,0xd3,0xc4,0x1e,0xa1,0xc7,0x3d,0xdc,0x63, +0xa7,0xea,0x7b,0xc6,0x8f,0x89,0x1b,0xe7,0xb0,0x9f,0xca,0xb1, +0x73,0xe6,0xc4,0xcd,0x11,0x7b,0x60,0x38,0xdf,0xa1,0x40,0x0a, +0x42,0xd1,0x24,0x98,0x24,0x18,0x4b,0x81,0x33,0x5e,0xfc,0x8c, +0x54,0x4f,0x95,0x49,0x11,0x43,0xa2,0xfb,0x08,0xa0,0x09,0xbd, +0x39,0x9d,0x0a,0x2f,0xa8,0x32,0x39,0x62,0x68,0x74,0x3f,0xb1, +0x67,0x0a,0x12,0xfd,0x05,0xc1,0x87,0xa0,0xee,0x1c,0x22,0xc6, +0x6b,0x30,0xb7,0xe5,0x83,0x2d,0x04,0xd1,0x09,0x14,0x99,0x3e, +0x32,0xca,0x95,0x16,0x60,0xf0,0x3b,0x55,0x66,0x46,0x4c,0x8a, +0x1e,0x27,0x7e,0x35,0x2b,0x72,0x52,0xf4,0x78,0x1d,0xc2,0xce, +0xf7,0x52,0xe7,0x4b,0x17,0x45,0x05,0xaf,0x3e,0xd2,0xc7,0x49, +0x0f,0xf1,0xe7,0x32,0xb7,0xe6,0x32,0xfe,0x5c,0xa4,0x95,0xfa, +0xee,0xfe,0x10,0x8f,0x79,0x7f,0xb6,0xfa,0xbe,0x94,0x4c,0x95, +0xbc,0x39,0xfc,0xcd,0xea,0xff,0x5e,0xc1,0x63,0x1c,0x11,0x1d, +0x3a,0x22,0xa3,0x06,0xb9,0xf7,0x0b,0x87,0x36,0xc8,0x4d,0x2d, +0x11,0x67,0xd4,0x50,0x5e,0x9c,0x9b,0x9b,0x9e,0x9f,0x48,0x45, +0x55,0xd2,0xcc,0xdc,0xb4,0x7c,0x6a,0x88,0x4d,0xb0,0x3e,0x9a, +0x93,0x9c,0x47,0x0d,0xc5,0xd7,0x33,0xcb,0xce,0x54,0xd8,0x50, +0x63,0x7c,0xfc,0xfe,0xe4,0xd4,0xbd,0x49,0x88,0x2b,0xf6,0xef, +0x8b,0x4b,0xdc,0xf3,0x3b,0x35,0xdd,0xad,0x85,0x3d,0x7e,0xff, +0x20,0x36,0xfe,0xba,0x0e,0xd6,0xf8,0xd6,0x4b,0xd4,0x7c,0x3b, +0x38,0xf5,0x54,0xca,0xe9,0x64,0xfa,0x2a,0xba,0x99,0xaa,0x03, +0x24,0x57,0x11,0x18,0x4d,0x7b,0x71,0x27,0x3d,0x0a,0x84,0x0e, +0xbc,0xef,0xf5,0xcb,0xd3,0xfb,0x8d,0x3f,0x50,0xf5,0x2d,0x69, +0xca,0x75,0x44,0x46,0x3a,0xc4,0xb8,0x26,0x20,0xc6,0x5b,0x1f, +0x03,0x01,0x3a,0x76,0x1c,0x7d,0xeb,0x13,0x9d,0x18,0x4b,0x51, +0x29,0xd6,0x5b,0xc1,0xe0,0x19,0x74,0x22,0x58,0x21,0x6e,0xb7, +0x72,0xa5,0x33,0xac,0xff,0xfb,0x65,0x42,0x22,0xea,0x32,0xb1, +0x8c,0xd2,0x9e,0xf7,0xf3,0xa4,0x22,0xbb,0xff,0xe8,0x63,0xfe, +0x31,0x15,0x95,0x84,0x56,0xb8,0xf7,0xf5,0xa3,0x3e,0x28,0xc0, +0x50,0x10,0x87,0xd0,0x59,0x6a,0xe2,0x58,0x6d,0x0f,0x1a,0x91, +0xbe,0xd0,0x11,0x3a,0x98,0x2b,0x96,0xd0,0xd9,0x3c,0x70,0x38, +0xe2,0xba,0x5e,0x54,0x84,0x0b,0x64,0x35,0xf3,0x30,0xba,0x6c, +0xdb,0xf6,0xc0,0x65,0xa6,0x69,0xd7,0xa8,0xc5,0xc5,0x05,0x46, +0x0a,0xa4,0xc7,0x9f,0x33,0x34,0xdf,0x9b,0x54,0x5d,0xa3,0x5e, +0x55,0x3c,0xf9,0x4e,0x2a,0xa2,0x04,0x8a,0x9b,0x79,0x04,0x15, +0x61,0x07,0x65,0xcd,0x3c,0x0a,0x51,0xb9,0x37,0xb7,0x93,0x20, +0x1b,0x89,0x99,0x82,0xc8,0xa2,0x60,0xef,0xc9,0xed,0x25,0x6d, +0x38,0x05,0x05,0xda,0x98,0xab,0x97,0x37,0x50,0xe8,0xda,0xa4, +0xc6,0xba,0x41,0x47,0xba,0xa1,0xc8,0xf7,0x2c,0x22,0xab,0x8e, +0x28,0xf9,0xff,0x52,0xfe,0xf3,0xac,0xff,0xdb,0x14,0xba,0xf7, +0xe2,0xdd,0x7c,0xb4,0x6e,0x34,0xd4,0x75,0xdb,0xd4,0xbb,0x28, +0x7a,0xe9,0xab,0xf2,0x5c,0x34,0xb4,0x45,0x49,0x8b,0x55,0xef, +0x7f,0x44,0xfc,0xa4,0x20,0xbe,0x79,0x45,0x64,0x21,0x4c,0xdc, +0x28,0x88,0xa7,0xaf,0xf6,0x34,0x2b,0xf3,0x2c,0x7b,0x3e,0x56, +0xfc,0x71,0x0f,0x8a,0xe6,0x28,0xb4,0xcf,0x4f,0xd1,0x48,0x94, +0xec,0xe1,0x51,0x46,0xc4,0x0c,0xb6,0xde,0xa2,0x8e,0xb6,0xf4, +0xda,0x65,0x4f,0xa3,0x45,0xf6,0x18,0xb4,0x9e,0xa5,0x7b,0x39, +0xdb,0x18,0x2e,0xd7,0xd2,0x16,0x91,0x9e,0x40,0x61,0xe4,0x0c, +0xbd,0x35,0xa8,0x58,0x8a,0xbe,0xa9,0xf0,0x25,0x13,0x04,0x71, +0x4f,0xe1,0xf3,0x75,0xa2,0x58,0xe1,0x1b,0x75,0xa2,0x52,0xe1, +0x6b,0x27,0xd0,0x94,0xa4,0x54,0xe1,0xae,0xef,0x4b,0x61,0xbc, +0x17,0x1f,0x2f,0xc1,0x71,0xaa,0x9e,0x3a,0xb5,0x6b,0x61,0xcc, +0xe2,0x08,0x11,0xc8,0x71,0x50,0xe1,0x07,0x5c,0xe9,0x91,0xe4, +0x63,0xa2,0xbf,0xc5,0x69,0xaa,0x9e,0xc3,0x5f,0x79,0xf1,0xe9, +0x54,0xfd,0x50,0x6d,0x52,0xbc,0xf9,0x34,0x7a,0xa9,0x24,0x79, +0x7f,0x4a,0xec,0x81,0x18,0xaa,0x0d,0xf3,0xe3,0x4f,0x25,0x98, +0x40,0x73,0x8b,0x4d,0xa5,0x93,0x97,0xc9,0x7d,0xa9,0x5a,0xad, +0xd6,0xe0,0xc1,0xa3,0x69,0xb9,0x7c,0xb3,0x2a,0x39,0xf5,0x82, +0x23,0xad,0xca,0x36,0x1e,0x4b,0x3e,0x15,0x77,0x94,0xaa,0xf5, +0xea,0x4c,0x1c,0x94,0x5e,0xf4,0x1a,0x34,0xcf,0xe2,0xad,0xd0, +0x42,0x6f,0x28,0x29,0xbe,0x58,0x94,0x94,0x98,0x44,0x6f,0x99, +0xee,0xba,0x79,0xc8,0x28,0xc2,0x5b,0x62,0xdc,0xdf,0xa1,0xf7, +0xa5,0xcf,0xef,0x27,0x1f,0xcc,0x77,0xa4,0x62,0xc5,0x9e,0x4f, +0x54,0x7a,0x88,0x05,0xd3,0x3a,0x3c,0x33,0x1a,0xca,0x09,0x33, +0x78,0x82,0x04,0x5d,0x29,0x4a,0x92,0xae,0xc2,0x3a,0xa6,0xf0, +0x15,0xcf,0xe6,0x5f,0x79,0x48,0x54,0xbb,0x87,0x88,0x76,0x90, +0x16,0x89,0xf8,0xaa,0x01,0x3e,0xf5,0xe6,0xbd,0x05,0xa1,0x79, +0x7b,0xe3,0x34,0x47,0x30,0xcb,0xa7,0x75,0xe1,0x08,0x90,0x3b, +0xc8,0x3c,0x3e,0x42,0x89,0xa7,0xbc,0x27,0xa7,0x07,0x4f,0xfc, +0xd7,0x11,0x59,0x6b,0xed,0x60,0x58,0x45,0xe3,0xf5,0x69,0x4b, +0x45,0xf1,0xdc,0x83,0x31,0x14,0x3c,0x7c,0xb8,0x15,0x4e,0xb9, +0x97,0x8f,0x08,0xb7,0x02,0x9c,0x68,0x57,0xb2,0xb3,0xcf,0xe5, +0x25,0xee,0xdb,0x1f,0x87,0x60,0x49,0x06,0x5b,0x43,0x59,0x49, +0xb7,0x3f,0x23,0x52,0x22,0xf4,0x45,0x16,0x31,0x70,0x27,0xb2, +0x52,0x73,0x0b,0x4d,0x45,0xee,0x81,0xb2,0xeb,0xa6,0xf9,0x5e, +0xbe,0x66,0xaf,0x1b,0x91,0xa9,0x61,0x7b,0x23,0x62,0x8c,0x91, +0xc2,0x80,0x3b,0x7a,0x39,0x39,0xab,0xd0,0x74,0xc5,0x2d,0x40, +0x1e,0xb2,0xca,0xbf,0xdf,0x28,0x73,0xf9,0x92,0xca,0xd2,0x9c, +0xdc,0xb3,0x79,0x46,0x75,0x38,0x4c,0x63,0x9d,0x8e,0x93,0xcf, +0x26,0x8d,0xb0,0x98,0x1f,0xac,0x4b,0x07,0xb4,0x8b,0xfd,0x7e, +0x84,0x75,0x77,0x55,0x5f,0x46,0x3e,0xc0,0x8d,0xbb,0xaa,0x17, +0xb3,0x2b,0x23,0x94,0xd9,0x2d,0x21,0xfc,0xb6,0x68,0xe9,0x99, +0x40,0xf8,0x44,0xde,0x51,0xe1,0xf2,0x2e,0x89,0x75,0xe8,0x44, +0xb2,0x97,0xa2,0xc6,0x7b,0xfe,0x33,0x81,0x2d,0xcc,0x31,0x98, +0xa0,0x54,0x83,0x51,0x16,0x0b,0xd0,0xc8,0x48,0x3d,0xb1,0x51, +0x97,0x69,0x7d,0x94,0xb0,0x48,0xbc,0x8d,0x53,0x05,0xc9,0x45, +0x57,0x4d,0x39,0x93,0xd7,0xc8,0x3d,0xd7,0xcf,0xe9,0x3f,0xd2, +0xec,0xfc,0xa7,0x6e,0x58,0x46,0x58,0x1e,0xe1,0x54,0x61,0x4a, +0x51,0x8d,0xe9,0xf2,0xe4,0xb5,0x72,0xf7,0x65,0xd3,0xa0,0x6b, +0x37,0x73,0x99,0xff,0xbd,0xeb,0xe5,0x65,0x97,0xca,0x8c,0xc9, +0x49,0xc9,0x82,0x61,0xfa,0xc3,0x60,0xc3,0x83,0xc6,0xf2,0x52, +0x64,0x80,0xa4,0x14,0xa1,0x86,0x7b,0x42,0x77,0xe1,0xec,0xe9, +0xce,0x4d,0x61,0xa9,0x21,0x71,0x68,0xa0,0xb6,0x67,0x76,0x51, +0x84,0x59,0xbd,0x60,0xd6,0x37,0x09,0x53,0x9d,0x0e,0x2a,0xac, +0xcb,0x55,0xf2,0x72,0x01,0xe1,0x5f,0x42,0x81,0xc2,0x57,0x5e, +0x83,0x95,0x12,0xdc,0x81,0x9f,0x94,0x48,0xe6,0xd4,0x4a,0xc4, +0xe1,0xb9,0xb3,0x0e,0xb3,0x09,0x1f,0xa0,0x3c,0x11,0xea,0x70, +0x7b,0x00,0xce,0xe7,0x3a,0xe6,0xf2,0x98,0x3c,0xa9,0xd5,0x70, +0x98,0xe6,0xc1,0x56,0x25,0x42,0xf2,0x5f,0x75,0xa9,0xaa,0x2a, +0xeb,0x52,0xa5,0x0e,0x92,0x75,0x0f,0x05,0x82,0x64,0xfd,0x55, +0xf8,0xc1,0xdf,0xda,0x69,0xfd,0x71,0xc7,0x56,0x37,0xe6,0x96, +0x9f,0xaf,0x32,0x32,0x65,0x86,0xfe,0xb8,0x43,0xc5,0xe3,0xb2, +0x1e,0x27,0x48,0xcf,0xf5,0xbe,0xfd,0x47,0x98,0x9d,0xff,0x66, +0x4e,0x7f,0x10,0x7c,0x2e,0xa7,0xa5,0xcc,0x78,0x52,0xff,0xc5, +0xe8,0xea,0x06,0xcb,0x0b,0x52,0x56,0x13,0x1b,0x7c,0xa9,0x1f, +0xb2,0xb6,0x7f,0x89,0x97,0xda,0xa9,0xe5,0xa5,0x76,0xfe,0xf7, +0xa5,0x7e,0xc0,0x1c,0x43,0x08,0x3f,0xa9,0x3e,0x54,0x52,0x0e, +0xa4,0xc5,0xea,0xaf,0xc1,0x68,0x68,0xaa,0x2a,0x2b,0xc8,0xc8, +0xc7,0x89,0x14,0x9b,0xbc,0x93,0xf7,0x01,0x3b,0xd6,0x7d,0x9f, +0x08,0x63,0xc8,0x4e,0xc9,0x2b,0x33,0x5d,0x9a,0xbc,0x41,0x1e, +0xb9,0x7e,0xde,0x00,0x77,0xb3,0xd3,0xb7,0xa2,0xcd,0x5a,0x18, +0xf4,0x26,0x39,0x29,0x79,0xa5,0xa6,0x0b,0xac,0xc7,0x66,0x72, +0xb7,0xbc,0xac,0x30,0xa3,0xd0,0x08,0x41,0x54,0xdc,0xc7,0xc8, +0xea,0xeb,0xff,0x62,0x13,0x66,0x56,0x49,0x6a,0x45,0xa3,0xe9, +0x10,0xb7,0x6a,0x80,0x43,0xde,0x1f,0x45,0xc9,0xdd,0x37,0x79, +0xba,0x8d,0x36,0x4f,0xfa,0x2e,0xf2,0x60,0x98,0x10,0x0a,0xd1, +0x31,0x96,0xfe,0xaf,0x65,0x8d,0xa6,0xc3,0xcc,0xba,0x0b,0x09, +0xd7,0xd7,0x6e,0x99,0xcd,0x7d,0x72,0xbe,0xea,0xe5,0x15,0x7c, +0xf4,0xc9,0xda,0xdb,0x08,0x3d,0x76,0x25,0x9e,0xce,0x4b,0xcd, +0x67,0x72,0x3e,0x29,0x5b,0x68,0xb8,0x53,0x5f,0x52,0xcc,0x9c, +0x26,0x92,0x90,0xbd,0x61,0xec,0xcd,0x7a,0x52,0x22,0x3a,0x8b, +0x74,0x80,0xb7,0xf0,0xf9,0xc5,0x1b,0x7b,0x31,0x9f,0x30,0xd3, +0x64,0x92,0x52,0x76,0xc3,0x74,0x77,0x12,0xce,0x41,0x63,0x80, +0x47,0x0f,0x68,0x6b,0xae,0x5c,0x7c,0xf5,0x4e,0x6e,0x65,0x7a, +0x4d,0x4b,0x47,0x59,0x1b,0xee,0xa7,0x59,0xb5,0xbc,0x6b,0xf1, +0xcb,0x0a,0x9d,0xb5,0x6c,0x08,0x8c,0x32,0x54,0x96,0x21,0x52, +0xe8,0x13,0x79,0x88,0x75,0x08,0x27,0xa2,0x68,0xc8,0x64,0x19, +0x5a,0x6d,0x64,0xb6,0x2f,0x48,0x68,0xbc,0x56,0x4e,0x8e,0x97, +0x26,0xe3,0xf3,0x3c,0x98,0xe4,0x2e,0x03,0x13,0x67,0x66,0xa4, +0x22,0xbd,0xa6,0xe5,0x4e,0x3d,0x9e,0x1d,0x21,0x56,0x10,0x0e, +0xb3,0xf9,0x6c,0x1e,0x81,0xff,0xc4,0x67,0x38,0xfe,0x9b,0x0d, +0xb3,0x21,0x02,0xff,0x89,0xcf,0x70,0xb4,0xa2,0xde,0x2c,0x16, +0xfd,0xde,0x46,0x3e,0x7f,0x40,0x76,0x0e,0x73,0xa0,0x4c,0x3a, +0x4d,0x20,0x54,0x79,0xf4,0xd1,0xcb,0x37,0x08,0x7d,0xd9,0x40, +0x54,0x7f,0xb8,0xa4,0xd4,0xc2,0x4a,0x3f,0x19,0xee,0x42,0x01, +0x33,0x07,0x11,0x4b,0xb0,0x45,0x64,0x9d,0x75,0xe8,0xec,0x71, +0x31,0x22,0x7f,0x8d,0x0f,0x62,0xe6,0x4f,0x48,0xb5,0xd6,0x51, +0xb0,0xd4,0x07,0x82,0xa5,0x02,0x32,0xaa,0xaa,0x72,0x32,0x04, +0x4b,0x55,0xe6,0xac,0x9d,0x37,0x2f,0x60,0xad,0xbf,0x63,0xfb, +0x4f,0xf8,0x73,0xe9,0x76,0x7d,0x06,0xeb,0x51,0x44,0x6e,0x5f, +0xcb,0xb8,0xf1,0x51,0xd6,0xc2,0xc1,0xcc,0x2a,0x99,0x78,0x3e, +0xe8,0x3e,0x6c,0xfe,0x82,0xd9,0xdb,0xcd,0xb1,0xd2,0xa3,0xf7, +0xbd,0x2e,0x4d,0x75,0x18,0x1b,0xb8,0x6c,0xee,0x16,0xc7,0xdd, +0x5f,0x8c,0x15,0x15,0x9c,0x86,0x93,0x3b,0x78,0xf9,0xaa,0x0d, +0xf9,0xb3,0x45,0x2c,0x79,0x8f,0x7a,0x2d,0xcf,0x87,0xf7,0x61, +0xce,0xd5,0xe4,0xd3,0x6b,0x9f,0x9b,0xe1,0xc9,0x31,0xe5,0x46, +0xcd,0xe5,0x07,0xcc,0xe9,0x0b,0xc2,0xbf,0x83,0xbd,0xb0,0x9c, +0x40,0x8d,0x12,0xc6,0x8f,0x4f,0x81,0xcb,0x4c,0xa9,0x26,0x4a, +0x8f,0x39,0xbf,0x0f,0xbc,0xa7,0xae,0x67,0x5d,0x8c,0xa2,0x5e, +0xf6,0x46,0x02,0x87,0x61,0x82,0xc2,0x9c,0x15,0xc2,0x9c,0xbf, +0x22,0x32,0xef,0x0a,0xeb,0x94,0x6d,0xd2,0xe4,0x39,0x39,0x77, +0xee,0x56,0xe7,0x3c,0x74,0x3c,0x29,0x3d,0xb4,0x38,0x4b,0x27, +0x3b,0xf2,0x9f,0xe1,0x12,0xeb,0xb4,0x96,0xe4,0x24,0xe7,0x96, +0x9b,0x32,0x90,0xdd,0x46,0xad,0xf7,0xef,0x3f,0xd9,0xec,0xfc, +0x4d,0x78,0x2a,0x73,0xf9,0x92,0x20,0xab,0x5d,0x9c,0xb2,0x51, +0x1e,0xba,0xdc,0x07,0x8c,0x83,0xc4,0x2c,0xae,0x2c,0x2b,0xbc, +0x54,0x60,0x14,0x93,0x36,0x45,0x54,0x36,0x73,0x30,0xdc,0xaf, +0x29,0x2f,0xb8,0x94,0x8f,0x62,0x5c,0xf4,0xf3,0xeb,0x85,0x86, +0x52,0x79,0x25,0x62,0x0c,0x29,0x54,0xcc,0xe2,0x08,0x9c,0xc5, +0xc6,0xf6,0x44,0xf3,0xa3,0x82,0xe1,0xf7,0xa6,0xc5,0xf0,0x19, +0xd0,0x49,0x74,0xd7,0x73,0xe7,0x72,0x70,0x4a,0x68,0x5c,0x48, +0xcb,0xf2,0xcf,0xe9,0x2c,0xd1,0x8b,0x23,0x7b,0xf2,0x3a,0x79, +0xd8,0x9c,0x59,0x30,0x76,0x80,0xb9,0x7a,0xe1,0x97,0x55,0x0d, +0x7a,0x3b,0x93,0x1b,0x30,0xfd,0xc5,0xbb,0xe4,0xef,0x89,0xd0, +0xba,0x81,0x8c,0x7a,0x79,0x9d,0xd0,0x17,0xf9,0x84,0x87,0x43, +0xbf,0xff,0x11,0x01,0xcc,0x7e,0x0a,0x79,0x79,0x8c,0xa8,0x89, +0x5a,0x37,0x66,0x9f,0x45,0x50,0x3d,0x5a,0xc1,0x80,0xfb,0xe2, +0x65,0xac,0x25,0xf4,0x67,0xb2,0x07,0xbe,0x7d,0x75,0xf0,0x5d, +0xf8,0x9e,0x39,0xfc,0x87,0xf0,0x20,0xde,0x4f,0xf9,0x19,0xe7, +0xa6,0x53,0x0f,0xf2,0xe4,0xaa,0x45,0x3e,0xe0,0xd4,0xdc,0x41, +0x18,0x95,0x88,0x3a,0x19,0x0e,0x29,0xf5,0x10,0xe8,0x23,0x43, +0x26,0x53,0xde,0x20,0x82,0x31,0xba,0x6a,0xa3,0x94,0xc8,0x68, +0xd6,0x6d,0x03,0xc9,0xd2,0x2a,0x49,0x28,0xa7,0x3c,0x8c,0x6f, +0x82,0x6b,0xb3,0x79,0x14,0xd8,0x40,0x18,0x4c,0x66,0xac,0x98, +0x54,0x89,0xe6,0xe0,0x03,0x85,0x4b,0x2d,0x0c,0xd1,0xbe,0x32, +0xeb,0xc7,0x51,0xfd,0x7d,0x7f,0x5a,0xa4,0xdf,0xc6,0xf7,0x22, +0x39,0x79,0x0d,0xd1,0x86,0xc2,0x7c,0xd6,0xf9,0x14,0x11,0xd1, +0x62,0xf7,0x9a,0x24,0x6d,0xcc,0xdf,0xac,0xb3,0x9f,0xbe,0xf5, +0xb1,0x65,0xcb,0x6e,0x10,0xe1,0xcb,0xa1,0x12,0x21,0x5d,0x6f, +0xd6,0x2e,0x0f,0x7f,0x64,0x9c,0x42,0xf8,0x5a,0xe8,0xa4,0x97, +0xc0,0x63,0x4a,0x5f,0xc2,0xac,0xef,0x11,0x6e,0x07,0x46,0xa5, +0x0e,0x02,0x7d,0xf1,0xfe,0x60,0x1f,0xf2,0xc0,0xa5,0x29,0x50, +0xca,0xe4,0x67,0x84,0xbb,0x72,0x9c,0x55,0xd6,0x3b,0x25,0xe6, +0x9c,0x41,0xb6,0x65,0x0a,0xd3,0x85,0x5b,0x0b,0x4f,0x0e,0xde, +0xea,0x1a,0xe1,0x6d,0x78,0xe7,0x42,0x79,0x79,0x1e,0x73,0x9e, +0x4f,0x5e,0xec,0x27,0xea,0x0a,0xad,0x27,0x53,0x7c,0x75,0x32, +0x59,0xb3,0x57,0xc2,0xa3,0x44,0x4f,0xd1,0xc2,0x94,0x2b,0x75, +0xa6,0x8b,0x53,0x37,0xca,0xd0,0x26,0xd0,0x0f,0xf1,0x12,0x35, +0x97,0x2f,0x6d,0xa8,0xbf,0x52,0x7c,0xa1,0xd8,0xd2,0x06,0x3d, +0x86,0x9b,0xc0,0x6c,0xa8,0x28,0x06,0x23,0x37,0x85,0xa7,0x0a, +0x7f,0xab,0x11,0x72,0xae,0x2a,0x68,0xd2,0xb4,0xf2,0xd0,0xa3, +0x1b,0x4f,0xf1,0x6f,0x3c,0x44,0x74,0x23,0xb3,0x9d,0x4b,0xa0, +0x92,0xdc,0x85,0x74,0xc1,0x5b,0xf9,0xc9,0x05,0x35,0xa6,0x2c, +0x1c,0xdd,0x01,0xeb,0xe7,0xf6,0x1f,0x63,0x76,0xfe,0x2d,0x3c, +0x4d,0x8f,0x2d,0x38,0x99,0x9f,0x52,0x58,0x69,0xca,0x9c,0xb2, +0x5e,0xee,0xbd,0x74,0x06,0x74,0xed,0x81,0xfc,0xd5,0x74,0xad, +0xac,0x38,0xa3,0xc4,0x78,0x40,0xb0,0x53,0x34,0xf2,0x57,0x1f, +0xc3,0xc3,0x86,0xf2,0xe2,0x8c,0xa2,0x03,0x3a,0x4c,0x40,0x2d, +0xc1,0x2c,0x5a,0xc2,0x2e,0xec,0x15,0x7f,0x75,0x9b,0x43,0x78, +0x5e,0xa4,0x12,0x3f,0x32,0xd4,0x6d,0xbb,0xf7,0x1d,0xc4,0x51, +0x77,0x0f,0x3f,0xf8,0xd6,0x74,0x8b,0xd9,0x9e,0x24,0x70,0x45, +0x71,0x8b,0x18,0x11,0x3d,0x00,0x85,0xce,0x28,0x37,0x78,0x8b, +0x39,0x5d,0x25,0x02,0x25,0x55,0x8b,0x40,0xc2,0x79,0xcd,0xea, +0x03,0x57,0x6d,0xb5,0xfc,0xa2,0x2f,0xc7,0x41,0x89,0xd6,0xbf, +0xf8,0x48,0xc0,0xa7,0xa9,0xcd,0x6a,0xbd,0xab,0x36,0x53,0x7c, +0xe1,0xc3,0xec,0xbe,0x22,0x7c,0x3b,0x64,0x8a,0x6e,0xbb,0x12, +0x6f,0x9d,0xf4,0x5b,0xca,0x67,0x87,0x62,0x6a,0x99,0x4b,0x5f, +0xf2,0x71,0x42,0xe2,0x7f,0x1c,0xc5,0x6f,0xca,0x44,0xdc,0xa2, +0x5f,0xb3,0xfa,0x99,0xab,0xf6,0x9e,0xf8,0xcd,0x22,0xd6,0x59, +0x2c,0x4e,0x2a,0x6a,0x80,0xc8,0xcb,0xdb,0x23,0xd2,0x87,0x61, +0x27,0x58,0xf1,0x6d,0x53,0xb4,0x53,0xf7,0x25,0xed,0x26,0x1f, +0xcd,0x3a,0x67,0xe3,0xd0,0x22,0xa7,0xf1,0x37,0xe0,0x1f,0xe6, +0xb4,0x99,0xf0,0xcb,0xcc,0xd8,0x97,0xc0,0x65,0x30,0x28,0x30, +0x8b,0x9b,0x44,0xaa,0x98,0xe2,0xfd,0x05,0x98,0x1e,0x08,0xde, +0xf9,0x0e,0x8f,0x35,0x75,0x16,0xc8,0xc1,0xa8,0x34,0x40,0xa0, +0xb7,0x18,0xf5,0xc3,0x3a,0x2f,0xb8,0x74,0x12,0x65,0xef,0x07, +0x89,0xcf,0x96,0xb2,0xf7,0xbd,0x2d,0x11,0x31,0xbd,0x5f,0xd1, +0x5b,0xe0,0xd3,0x7f,0x15,0xbc,0xb4,0x4b,0x6a,0x89,0xcc,0x6c, +0x98,0xfd,0xfb,0xef,0x0d,0x22,0x32,0x33,0x0b,0xf5,0x52,0x52, +0x8b,0xb2,0x0f,0x22,0x3f,0x13,0xee,0xa0,0xbd,0x8f,0x7c,0xbe, +0x9b,0xb9,0xac,0x24,0x81,0x9e,0xd0,0x4e,0x14,0x2d,0xcd,0x43, +0xd9,0xf7,0x16,0x33,0x77,0x24,0x7f,0x3c,0x16,0xb2,0x30,0x36, +0xb5,0xe8,0x9d,0xfa,0xdb,0x85,0x15,0x17,0x2a,0x8c,0x09,0x09, +0xfb,0x53,0x84,0x93,0xd7,0xc8,0xdf,0x84,0x61,0x16,0xee,0x8f, +0x38,0x14,0x12,0x1f,0x8e,0xdc,0xff,0xec,0x2c,0xe1,0x54,0x5b, +0xa3,0x84,0x47,0xec,0x4e,0x64,0x3d,0x7c,0xc9,0xfa,0x39,0xfd, +0xfe,0x07,0x21,0x44,0x44,0x09,0x83,0xb6,0x30,0xa5,0xb8,0x05, +0x21,0x2c,0xd5,0x11,0x42,0xb9,0x7f,0x53,0xbd,0x8e,0x10,0x70, +0xa8,0xe3,0xf4,0xaa,0x89,0x83,0x0d,0x0f,0x5f,0x23,0x84,0x03, +0x16,0x84,0x50,0x51,0x05,0xce,0x82,0xf5,0x82,0x75,0x84,0xf0, +0xe2,0x3d,0xf2,0x9b,0x58,0x55,0x5f,0x7a,0x4f,0x4d,0x65,0xf6, +0x3e,0x84,0x1b,0xe0,0x29,0x6b,0x87,0x53,0xea,0xc5,0x68,0xc2, +0xf7,0xc1,0x73,0x66,0x17,0x8a,0x33,0xc2,0xdc,0xf3,0x9e,0xea, +0xc9,0xe8,0x49,0x62,0x09,0x12,0x66,0x9d,0x6e,0xe1,0x83,0xde, +0x90,0x5f,0x3c,0x9d,0xc0,0x3a,0x1f,0x20,0xf4,0xf9,0x4a,0xa2, +0xbd,0x05,0x33,0x58,0xe7,0x3a,0xc4,0x47,0x07,0x04,0x18,0xd9, +0xc5,0x07,0x23,0x4c,0xab,0x28,0x85,0x7e,0xbc,0x35,0x73,0xf9, +0x86,0x5c,0x16,0xbd,0x96,0x32,0xdd,0xdf,0x97,0x87,0x2d,0x98, +0x05,0xce,0x83,0x10,0x71,0x35,0x57,0x54,0x17,0x5c,0xbe,0x62, +0x14,0x35,0x62,0x6f,0x34,0x4b,0x2f,0x36,0xf2,0x93,0xac,0x73, +0x28,0x11,0x9b,0xf7,0xf5,0xcd,0x33,0x4a,0xd9,0x92,0xaa,0xf2, +0xec,0xdc,0xb3,0x05,0xc6,0x7d,0x02,0xe7,0xed,0xe1,0x92,0x10, +0x8c,0x45,0xd9,0xb9,0xe7,0x72,0x85,0x7a,0x46,0xe0,0x67,0x03, +0xed,0x0c,0x65,0xc5,0xd0,0x9a,0xb7,0x8a,0x4c,0x09,0x4f,0x10, +0x91,0xf1,0xd1,0x7b,0x12,0x8f,0x5d,0x4e,0xcb,0x8a,0x2f,0x34, +0xfe,0x25,0x56,0x9e,0x1e,0x48,0x7b,0xdc,0x36,0x2d,0x98,0x39, +0x7b,0xfa,0x5d,0x03,0x1e,0x11,0x1f,0x11,0x1d,0x11,0x6d,0xd8, +0xbd,0xcf,0xfa,0x68,0x46,0x4a,0x16,0xeb,0xb8,0x9a,0x8c,0x08, +0xf0,0x1f,0x30,0xda,0x86,0x87,0xc2,0x39,0x64,0x4e,0x5b,0xe9, +0x9f,0xa4,0x5f,0x91,0x37,0xa3,0xeb,0x99,0xf5,0x08,0x02,0xef, +0x9d,0x15,0x55,0x46,0x36,0x12,0x2e,0x89,0xb7,0xb3,0xec,0x9e, +0x9a,0xc2,0xec,0x07,0x12,0x78,0xc2,0xde,0x9c,0x2b,0x24,0xd1, +0x0d,0xa2,0xad,0xe4,0x55,0xac,0xf3,0x0d,0xfd,0x8e,0x93,0xf5, +0x3b,0x8e,0x61,0xd6,0xff,0x25,0x10,0xa7,0x3c,0xc2,0x83,0x54, +0x9c,0x0c,0xbb,0x08,0x0a,0xa7,0x10,0x11,0x72,0x7a,0x4f,0x34, +0x39,0x7e,0x5f,0x44,0xa1,0xb5,0x9b,0x06,0x37,0xf5,0x08,0xe6, +0x97,0xd3,0x24,0x9e,0x0d,0x53,0x95,0x48,0x1d,0xad,0x16,0xa7, +0x94,0x34,0x98,0x32,0xa7,0xae,0x97,0x81,0x06,0x0a,0x23,0xcb, +0x1e,0x8d,0xac,0x86,0x5b,0x57,0xca,0x2f,0x94,0x19,0xf7,0xef, +0x4f,0xb6,0x08,0x8d,0x3e,0x86,0xca,0x12,0x30,0x71,0x97,0x88, +0x83,0xba,0x33,0x01,0xb2,0xa1,0xb3,0x38,0xa3,0x3d,0xf7,0x92, +0xda,0xbf,0x1c,0x47,0x3e,0x42,0xdb,0x24,0xe5,0xa3,0xba,0x6f, +0x4c,0x4f,0x2d,0xc5,0xd6,0xfb,0xcf,0xea,0x33,0xf4,0xa3,0xd9, +0x5c,0x8a,0x34,0xbf,0x25,0x96,0xc1,0xb5,0x17,0x44,0x5b,0xca, +0x0f,0x29,0x07,0xe5,0xfa,0xc6,0xec,0xef,0xbf,0x13,0x4b,0x63, +0xe1,0x62,0x69,0x6c,0xf0,0x20,0xbd,0x1c,0xb3,0x2e,0x37,0x2f, +0xa0,0xdc,0x44,0xb1,0x69,0x9e,0x40,0xc0,0x45,0xa6,0xa8,0x0e, +0x8a,0xb4,0x33,0xac,0x8b,0x2f,0x41,0xd3,0xe8,0xed,0x85,0x4d, +0x6a,0xb9,0x9b,0xe6,0x2f,0x6b,0xd9,0x7c,0x8e,0x52,0xb4,0xb4, +0xa4,0x30,0x23,0xe3,0x54,0x96,0xc0,0x23,0x71,0x89,0xbb,0x9f, +0xba,0x18,0x0a,0x72,0x2e,0x65,0x9c,0xc9,0xb0,0x8c,0xcb,0x6f, +0x3d,0x0c,0x57,0x8a,0x06,0x7d,0x0b,0x4e,0x64,0x4f,0xe2,0xd1, +0x0b,0xa9,0x19,0xf1,0x39,0xc6,0xaf,0xab,0x60,0xf5,0xbc,0x7a, +0x69,0xcf,0xac,0x6d,0xcb,0xe6,0x2f,0xf4,0xaf,0xc1,0xd1,0x88, +0x88,0x8b,0xdc,0x19,0x16,0x89,0xf6,0xf1,0xd1,0x4b,0x49,0x19, +0xf1,0xb9,0xc6,0xba,0x2a,0x58,0x35,0xef,0x5b,0x69,0xcf,0x94, +0xf5,0x4b,0xc7,0x4c,0xb6,0x41,0x11,0x5e,0x2e,0x44,0xb8,0xf4, +0x79,0xd2,0xe3,0x94,0x1b,0x07,0x63,0x6a,0x0c,0x5b,0xa0,0x13, +0xcc,0x8a,0x04,0x37,0x87,0x24,0x5f,0xad,0xb5,0xde,0xda,0xe1, +0xed,0x25,0x4d,0xea,0x71,0xd6,0x19,0x21,0x39,0xec,0x25,0x5a, +0x1c,0x3f,0xc2,0xec,0xf3,0x50,0x5a,0xaa,0xcf,0x26,0x10,0x21, +0x66,0x52,0x51,0xcc,0x5c,0xb5,0x54,0x3f,0x99,0xf9,0xa2,0x11, +0x0f,0x0a,0x13,0x07,0x65,0xb0,0xce,0xa2,0x74,0xb4,0xb3,0xa0, +0xcf,0xb3,0xce,0x57,0x5a,0xda,0x43,0x65,0x88,0xf6,0x50,0xdb, +0xf4,0x3e,0xe4,0x51,0xcc,0xf6,0x00,0xe1,0xbb,0x27,0xc7,0xa4, +0x43,0xa4,0x68,0x0d,0x95,0x87,0x12,0x30,0x3c,0x72,0x77,0xe2, +0xa9,0xdc,0x94,0xbc,0x84,0x8a,0x17,0x38,0x43,0xfa,0x4a,0xbb, +0xfa,0x2d,0x9c,0x07,0x6d,0x5d,0x4a,0x16,0x1b,0xee,0x5e,0x2f, +0x29,0xba,0x78,0xa5,0x25,0x41,0xba,0x37,0xbc,0x69,0x28,0x29, +0x85,0x6e,0xbc,0x83,0x25,0x92,0xc5,0x08,0x61,0xb3,0x5f,0x86, +0x93,0x10,0x9e,0xe6,0x06,0xe9,0x2f,0x77,0x93,0x53,0x27,0x4a, +0x11,0x2b,0xb7,0x57,0xc9,0x8b,0xe9,0x67,0x58,0x67,0x34,0x21, +0x14,0xd1,0xe1,0xe9,0x2d,0xe8,0x3c,0x8b,0x77,0xee,0xcf,0x3a, +0x3d,0x24,0x27,0x44,0x87,0xef,0xb7,0x2a,0x2b,0x60,0x10,0x1f, +0x25,0x42,0xac,0x70,0x98,0x43,0x23,0x76,0xeb,0xf1,0xb8,0x55, +0xf5,0xa6,0xaa,0xc9,0xf3,0x65,0xe8,0xbc,0x72,0x32,0x38,0x81, +0xb3,0xb9,0x6a,0xc9,0x83,0xfb,0x65,0x57,0x33,0xea,0x8c,0x16, +0x17,0x9c,0x0d,0x55,0x98,0xbd,0x1f,0x11,0x10,0xd6,0x60,0xc1, +0xb0,0x36,0x7c,0x27,0xce,0x64,0x49,0x13,0xca,0x97,0xbb,0xa1, +0xfc,0xe5,0xb7,0xea,0xe0,0x96,0x04,0xfb,0xe1,0xe7,0xe7,0xe7, +0x48,0x13,0x78,0x13,0xf5,0x38,0xdf,0xa4,0x78,0xed,0xdf,0x01, +0x1f,0x58,0x4f,0x93,0x82,0xf8,0x07,0x5e,0xbb,0xd2,0x61,0x83, +0x25,0x7c,0xde,0x55,0xc2,0xfb,0x44,0x01,0xb0,0x03,0x7e,0x65, +0xf6,0x66,0xc2,0x3a,0x8e,0x21,0xbc,0x0f,0x1f,0x54,0x07,0x5b, +0xe1,0x28,0xb3,0x5d,0x23,0x92,0x6b,0xc6,0xf3,0x1e,0x7c,0x78, +0x1d,0x04,0x43,0x1a,0x8f,0x91,0xce,0x0d,0x7e,0x59,0x44,0xbe, +0x9e,0x34,0x98,0xb5,0x3f,0xaa,0x4f,0x88,0xfc,0x66,0x49,0x7b, +0xc4,0x4b,0x95,0x44,0x8b,0x63,0xdb,0x0a,0xba,0xa0,0x2c,0xc8, +0xc9,0x4f,0x2f,0xb4,0x00,0x58,0x9c,0xb9,0x76,0x62,0xe6,0xb6, +0xe2,0xa8,0x68,0x87,0x93,0x52,0xd3,0xdf,0xd7,0x20,0x76,0x56, +0x93,0x14,0x37,0x6e,0xd3,0x3c,0x6f,0x6f,0xcf,0x07,0xc8,0x1f, +0xcc,0xe5,0x3b,0x92,0x5b,0x6a,0x4a,0xb8,0x2b,0xbe,0xe1,0xad, +0xe4,0xb8,0x7e,0x01,0x73,0x06,0x0c,0x2a,0x5b,0x62,0xa8,0xaa, +0xca,0x2e,0x48,0x2f,0xb4,0x51,0xa7,0x80,0x2b,0x33,0x5e,0x14, +0x66,0xd8,0x31,0xc2,0xbb,0x6a,0xad,0x99,0x61,0x87,0x68,0x8d, +0xb9,0x9e,0x40,0x14,0x1f,0xce,0xac,0xb7,0x13,0xfe,0x7f,0xbc, +0xe3,0xcb,0xef,0xf4,0xdb,0xb9,0x86,0xb7,0xd3,0xc4,0xff,0x61, +0x9d,0xb3,0x08,0xe5,0x4b,0xc8,0x4f,0x5a,0xf8,0xff,0x07,0xcb, +0x4b,0x2d,0xb0,0x1c,0xc7,0x71,0xdf,0x01,0xe6,0x3c,0x52,0x60, +0x73,0x1c,0xbb,0x70,0x5f,0x25,0x24,0xd0,0x7d,0xfb,0x34,0x87, +0x50,0x7e,0xdc,0xed,0xf9,0x4d,0xf2,0xf8,0xd4,0x09,0x44,0xeb, +0xaf,0x56,0xed,0xce,0x5c,0x3e,0x98,0x1d,0x7f,0xe5,0xf9,0xff, +0x91,0x5d,0xc3,0x7d,0xfd,0x60,0x48,0xef,0xaa,0xc5,0x86,0xff, +0xd6,0xd5,0x5d,0xc9,0x2d,0xb2,0xe1,0x9b,0x61,0xb3,0x8e,0x2d, +0x99,0xd2,0x87,0xa0,0x66,0x7b,0xa3,0x3f,0xbc,0x81,0x7f,0xa1, +0xdd,0x3d,0xd5,0xd7,0x1d,0x88,0xec,0xfc,0x31,0xb3,0x6d,0x83, +0xe0,0x52,0x59,0xbf,0x33,0x60,0xf7,0xca,0xdd,0xa7,0xf8,0x1a, +0xc3,0xd4,0x03,0xc1,0xb0,0x05,0x5a,0xed,0x0c,0xe3,0xdb,0xa7, +0xed,0x3c,0x8e,0xaa,0x44,0xae,0x24,0x27,0xb9,0x95,0x68,0x1d, +0xcb,0x08,0x04,0x6a,0x3d,0x08,0xb7,0x9d,0x04,0x6d,0x5f,0x07, +0x8e,0xbf,0xfc,0x85,0xe8,0xc1,0x26,0x81,0x7c,0xd5,0x7e,0xd2, +0x07,0xe1,0xf8,0x68,0xbd,0xa7,0x14,0x3e,0xe9,0x2d,0xfd,0x49, +0x9f,0x31,0xdb,0x3c,0x02,0x9d,0x0d,0xe5,0x25,0xba,0x3f,0x6a, +0xdf,0x7e,0xf1,0xce,0x65,0x14,0x9f,0x15,0xa5,0xdd,0x78,0x9b, +0x88,0x94,0xf0,0xc4,0xb0,0xa8,0x97,0xf7,0xc8,0xf1,0xec,0xb4, +0x3c,0xe1,0x2a,0x58,0x29,0x8f,0x45,0x23,0xd9,0xc7,0xec,0x75, +0x3b,0x32,0x95,0x75,0xfc,0x90,0x1c,0x61,0xce,0xcd,0xa4,0x72, +0x51,0x65,0x65,0x76,0xde,0xd9,0x42,0xe3,0x43,0x78,0x21,0xc4, +0xe3,0xf3,0x74,0x7c,0xbd,0x5d,0xc2,0xc8,0xcb,0xb7,0xb5,0x2b, +0x65,0xa4,0x3d,0x4a,0x07,0x04,0xa2,0x87,0x58,0xd7,0x81,0x44, +0xfd,0x0c,0x65,0x36,0x7f,0xc8,0x24,0x5b,0x02,0x1f,0x0b,0xe9, +0x67,0x9b,0x43,0xae,0x19,0x36,0xab,0x81,0x7a,0x6d,0xfc,0x8e, +0x2f,0xff,0x24,0xfc,0x07,0x58,0xc2,0xec,0x72,0x88,0xf2,0x90, +0x77,0x64,0xed,0x0a,0x50,0xfe,0xc1,0x22,0xc4,0x93,0x95,0x19, +0x04,0x4e,0x2b,0xe1,0x9f,0xf0,0x95,0x78,0xaa,0x8c,0x39,0x7c, +0xd5,0x78,0x78,0x07,0x18,0xeb,0x22,0xb7,0x74,0x94,0xe0,0x97, +0xe0,0x7d,0x66,0xfd,0x29,0x51,0x86,0x4b,0x6b,0x22,0x0e,0x1d, +0x3d,0x9c,0x7a,0xf0,0x74,0xb2,0xe3,0x9e,0x23,0x47,0x62,0x8f, +0x3a,0x7c,0x74,0xa5,0xa0,0x21,0x3b,0xf4,0xc2,0xfb,0xc7,0x1c, +0x4f,0xdf,0x2b,0xf4,0x93,0x3f,0x08,0x8f,0xd8,0xe2,0xb8,0x5d, +0x3e,0x10,0xb2,0x75,0xff,0x16,0x87,0x71,0xcb,0x97,0x7b,0x2e, +0x3d,0xb5,0x3e,0x2b,0xd8,0x31,0x56,0x7e,0x2f,0x66,0xc3,0x8e, +0xf5,0xa6,0x2d,0x87,0xb6,0x9d,0xdb,0x65,0xde,0x25,0x07,0x44, +0x7f,0xb0,0x65,0xb5,0x69,0x71,0xfe,0x7b,0xbf,0xf2,0x36,0xe5, +0x19,0x37,0xab,0xd6,0x5e,0x9a,0x64,0x16,0x65,0x35,0x95,0xc3, +0x72,0x56,0xfa,0xd9,0xa2,0xa2,0xf4,0xcd,0xab,0xcc,0xa1,0xf2, +0xaa,0x4d,0x9b,0x97,0x2e,0xdd,0x74,0x36,0xcb,0xfc,0x25,0x0a, +0xa1,0xb5,0xd2,0xbc,0xf5,0xc7,0x2e,0x9d,0x4c,0x3b,0x76,0x32, +0xd5,0xf1,0x6f,0xe9,0xca,0xe9,0xb0,0xf7,0x02,0xd6,0x04,0xfb, +0xe1,0x34,0x46,0x03,0xe1,0x0e,0x14,0x2a,0xb5,0xef,0x17,0xfa, +0x9e,0x31,0x27,0xf1,0x5e,0x0d,0x5a,0x9e,0x37,0xef,0x27,0xa2, +0xe6,0xdf,0x5f,0xee,0x67,0x1a,0xf5,0xa9,0xb7,0x88,0x9a,0xff, +0xb4,0xe1,0x0b,0x33,0xfc,0x7c,0x5c,0xb9,0x5d,0x9d,0xf5,0xd0, +0x2c,0x2c,0x86,0x55,0x1e,0xd3,0xe7,0xac,0x9a,0xec,0x28,0xec, +0x88,0xac,0x5b,0x8e,0x21,0x50,0x25,0x1a,0xa5,0xa7,0xde,0xe7, +0x0f,0xa0,0x5c,0x52,0xcf,0x42,0x7f,0x01,0x91,0x9d,0x06,0x91, +0xca,0xc5,0x37,0x6a,0x8b,0xae,0x5c,0x2c,0x34,0x1e,0x48,0x4a, +0x8e,0x4d,0x12,0x0d,0xc0,0xed,0xc5,0x7a,0xba,0x23,0xef,0x10, +0x9e,0x16,0xa6,0x63,0x36,0xc5,0x93,0xb7,0x06,0xff,0xfb,0xaa, +0x2f,0x33,0x58,0x89,0xe2,0x6d,0x3f,0x12,0x8d,0xa1,0x08,0xb4, +0xdd,0x46,0xa0,0xb5,0x21,0x3f,0x9f,0x75,0xfb,0x88,0x88,0x18, +0x13,0x44,0xa4,0xc7,0xb3,0x52,0x73,0xaf,0x98,0xf2,0xa6,0xad, +0x95,0xdd,0xb6,0x2f,0x9c,0x37,0xc7,0xbc,0xa4,0x2a,0x32,0x35, +0x42,0xb8,0x42,0x22,0x04,0x5e,0x3d,0x92,0x95,0x9c,0x8d,0xdf, +0x4e,0x5d,0x23,0x8f,0xdc,0xb0,0x70,0xf4,0x5b,0xe6,0x92,0xc5, +0x57,0x8a,0x2f,0x65,0x9e,0xca,0x36,0xd6,0x6b,0x6d,0x84,0x5f, +0xf4,0x79,0x2e,0x89,0x80,0x49,0xcc,0x6a,0x7d,0xcb,0xe4,0x9a, +0xc2,0x67,0xf1,0x20,0xc2,0x17,0xf3,0xed,0x62,0x6e,0x31,0xbb, +0x24,0x04,0x5d,0x78,0x5c,0x37,0x66,0x1e,0x8e,0xe0,0xe0,0x1f, +0xc2,0xbb,0x43,0x17,0x66,0x3f,0x95,0x2c,0x26,0xfc,0x1c,0xb8, +0xb1,0x4e,0x1b,0x08,0xdc,0x87,0x32,0x25,0xfc,0x5b,0xfe,0x0e, +0x5f,0x24,0xaa,0x42,0xeb,0xcd,0xee,0xfb,0x77,0xd3,0x33,0x2b, +0x0e,0x1c,0xae,0x77,0x8c,0xb8,0xa6,0x87,0xe1,0x8b,0x80,0x2a, +0xe4,0x95,0x20,0xf2,0xfd,0x2e,0xf9,0x9d,0xa0,0xa0,0xf5,0x01, +0x26,0x9f,0x6b,0x0b,0x7f,0x7e,0x72,0xad,0xac,0x3e,0x7b,0xc7, +0xc5,0x77,0x44,0x99,0xbc,0xc1,0xe0,0xac,0x84,0x48,0xfe,0xab, +0xcf,0x15,0x15,0x5f,0x3e,0x57,0xe9,0x78,0x44,0xaa,0xbc,0xbc, +0x71,0xc9,0xd2,0xd5,0x1b,0xd1,0x58,0x7c,0x79,0x81,0xf0,0x13, +0x30,0x90,0xb9,0x5c,0x27,0x5f,0xe0,0x75,0xfc,0xc4,0xa2,0x6b, +0xe0,0x18,0xbc,0x8e,0x0b,0xeb,0x62,0x4b,0x5e,0x3c,0x21,0xfc, +0x98,0xd6,0x81,0xd9,0x85,0x90,0x67,0x9c,0xf0,0x66,0x50,0xc5, +0x0d,0x32,0xc7,0x71,0x84,0x77,0xe3,0x37,0xf8,0x01,0x91,0xc8, +0x77,0x1b,0xba,0x4a,0xfc,0xa8,0xb6,0x8b,0xd9,0x8f,0x23,0xcc, +0xbc,0x59,0xbc,0xcc,0x83,0xcc,0x7a,0x30,0xf9,0xd1,0xc9,0x90, +0x9f,0x8b,0xef,0x23,0xf3,0xd9,0x38,0xf2,0xa4,0xbb,0xa1,0xb8, +0x64,0xd8,0xf7,0x51,0xa9,0xe1,0x7b,0xc3,0x23,0x45,0xfc,0xce, +0x3e,0xeb,0xe3,0x97,0x53,0xb3,0x0b,0x4d,0x39,0xd3,0xde,0x93, +0xdd,0xb7,0x2f,0x9a,0x37,0xd7,0xbc,0xa4,0x92,0xb9,0x3c,0x25, +0x99,0xc9,0x62,0xe7,0xd4,0x75,0xf2,0xe8,0x0d,0x8b,0x47,0x8f, +0x13,0xaf,0xf4,0x8a,0xe5,0x95,0xc2,0xff,0xb1,0x37,0xe7,0x88, +0xb7,0xf6,0x98,0x20,0xea,0x38,0x2b,0xa6,0xd5,0x8b,0x06,0x9c, +0x2b,0x5b,0xf4,0xb9,0xa2,0xf7,0xcd,0x7a,0x49,0x3e,0x87,0x53, +0xe2,0x2e,0x94,0x7b,0xaa,0x17,0xeb,0x7a,0x54,0x8c,0xed,0x7e, +0x02,0xa9,0x4a,0xf4,0xef,0x7c,0x15,0x1a,0x32,0x79,0xf0,0x39, +0x81,0x71,0x7a,0x75,0xd4,0xd3,0x7c,0x31,0x73,0x5a,0x8c,0x48, +0xed,0x7f,0x21,0x9c,0xc9,0x95,0x50,0x3d,0xdf,0x56,0x1b,0x83, +0xa7,0x2c,0x59,0x56,0x55,0x92,0x93,0x7d,0x36,0x87,0xb9,0xdc, +0x24,0x85,0x39,0x59,0xe9,0xd9,0x89,0x49,0x07,0x84,0xcb,0xcc, +0x16,0xac,0x0d,0xc5,0x45,0xdd,0x7e,0x8d,0x48,0x8e,0x10,0x8e, +0x8c,0x50,0x04,0x21,0xc7,0x2f,0xa5,0x66,0xa2,0xa6,0xfe,0xbb, +0x0a,0xf6,0xcc,0x43,0xdc,0xe4,0xb9,0x69,0xf1,0xcc,0x79,0x1e, +0xb7,0x58,0x8f,0x00,0x62,0x7d,0xf4,0x52,0x4a,0x66,0x8e,0xa9, +0x49,0x7c,0xc3,0x5b,0x49,0x7b,0x26,0x04,0x2e,0x1a,0x30,0xde, +0x86,0x07,0xc1,0x55,0x7c,0x80,0x7e,0xcc,0x36,0x5b,0x34,0xb2, +0xd0,0xab,0x8c,0x8d,0xc2,0x4b,0x96,0x2e,0xad,0x2a,0xcd,0xce, +0x3e,0x9b,0x8b,0xa8,0x4d,0x07,0x69,0xd6,0x60,0x6b,0x28,0x2d, +0xcc,0xc9,0x4e,0xcf,0xd9,0x87,0xca,0x60,0xbf,0x40,0x6d,0xb2, +0xa1,0xa4,0xa8,0xdb,0x6f,0x11,0x29,0xfa,0xb5,0xc3,0xa2,0x76, +0xed,0x13,0xd7,0x4e,0xc8,0x31,0xfe,0x55,0x03,0x7b,0xe6,0x3c, +0x90,0x76,0xcf,0xd8,0xb4,0x78,0xd6,0xbc,0xe9,0xb7,0x04,0x66, +0x63,0xce,0xa3,0x88,0xd8,0x2b,0xae,0xfb,0x76,0xc0,0xc2,0x81, +0xfa,0x75,0xef,0xe2,0x75,0x87,0x3f,0x77,0x17,0x2f,0xf2,0x6b, +0x34,0x44,0xe1,0x26,0x6e,0x0f,0x95,0x78,0xab,0xa4,0xdf,0x98, +0x6d,0x57,0xf2,0x89,0x6e,0x56,0x3c,0x8b,0x11,0x71,0x50,0x01, +0x77,0xd5,0x00,0x19,0x3e,0x05,0x7b,0xd6,0xf9,0x11,0xa1,0xfe, +0x44,0xdb,0x77,0x57,0x82,0x4f,0xf9,0xff,0xb1,0xce,0xb7,0x2c, +0x56,0xb0,0x2b,0x0c,0x54,0xf8,0xed,0x7a,0xb8,0x2d,0x14,0xe3, +0x8f,0xac,0xeb,0x1c,0xf2,0x62,0x23,0xd1,0x12,0x1f,0x72,0x0a, +0x3d,0x45,0x53,0x26,0x7b,0x66,0xbd,0x5e,0x84,0xf8,0x45,0x0c, +0x13,0x2b,0x0e,0xff,0xe5,0xc1,0xfc,0xba,0x77,0x2f,0xb0,0x79, +0x3a,0x13,0x4a,0x7d,0x78,0xf9,0x4c,0x41,0xfa,0x40,0x1d,0xdf, +0x3e,0x54,0xde,0x33,0x62,0x68,0xec,0x30,0x3d,0xc9,0x67,0x35, +0xdf,0x7c,0x30,0x9d,0x0f,0x70,0xd4,0xec,0xf9,0xdb,0x0a,0xd8, +0xfc,0xce,0x6d,0x24,0xee,0xde,0x85,0xdb,0xf4,0x00,0x1b,0x89, +0x2a,0x0f,0x54,0xcf,0xc9,0x30,0x44,0xbb,0x41,0xe6,0x8a,0xe5, +0x8b,0xd1,0xa8,0xec,0x87,0xf2,0x11,0x7a,0xe8,0x66,0x98,0x31, +0x2c,0x62,0xd7,0x3e,0xeb,0x53,0xa5,0x29,0x95,0x42,0xd9,0x2f, +0x90,0xa1,0xd3,0xf2,0xc9,0xd0,0x1d,0xba,0x99,0xab,0x17,0x3f, +0x68,0xaa,0xa8,0xcd,0xa8,0x65,0x1d,0xed,0xf5,0x6e,0x4c,0xad, +0x3f,0x21,0xa2,0x4f,0xf0,0xea,0x5d,0xef,0xee,0x5e,0xb1,0xdb, +0xe6,0xf0,0xbd,0x03,0xf7,0x3f,0x63,0xf2,0x62,0xb2,0x66,0xd7, +0x9a,0x98,0xb5,0xc6,0x28,0x44,0x4a,0x2e,0xbb,0xc1,0x0c,0x08, +0x3d,0x5f,0x2e,0x27,0xfc,0x73,0xc8,0x11,0x20,0x1e,0xcd,0xa9, +0x45,0xc2,0x9c,0x4a,0x68,0x52,0xaf,0xbb,0xc1,0x3e,0x34,0xa7, +0x22,0xa7,0x88,0x6c,0x12,0x34,0xa7,0x26,0x32,0x3b,0xb4,0xb7, +0x14,0x5d,0x3f,0x49,0xbd,0x7d,0x7e,0xe9,0xf7,0x6c,0x0c,0x59, +0xcb,0xac,0xaa,0x08,0xcf,0xe2,0xad,0xeb,0xc0,0x5d,0x73,0x62, +0x1d,0x5a,0x91,0x18,0xff,0x78,0x23,0xcf,0xe5,0x72,0x1d,0x78, +0x6a,0xce,0x2f,0x1e,0x09,0x5c,0xdb,0x96,0x80,0x09,0x2e,0x2a, +0xfa,0xf2,0x55,0x0c,0x1f,0x84,0x70,0x9c,0x99,0x34,0x22,0xd6, +0x6c,0x4e,0xf8,0x88,0x25,0xe6,0xc1,0x28,0x1b,0x52,0x53,0x0f, +0xc7,0x1e,0x8c,0xe1,0x3e,0xa8,0x8e,0x2a,0xcb,0xc0,0x93,0xdb, +0x86,0xa4,0x84,0x30,0x22,0x91,0x33,0x97,0x99,0xcb,0x5a,0xb2, +0x67,0x04,0x6a,0xcf,0xc1,0x7d,0x51,0x7b,0x7e,0x56,0x5b,0x57, +0x98,0x7b,0x05,0x7f,0x5b,0xb6,0x04,0x15,0x4f,0xfe,0xd9,0x7c, +0x23,0xf2,0x0b,0x82,0x4b,0x64,0xa0,0xce,0x86,0xb2,0x92,0xec, +0xdc,0xf4,0x82,0x7d,0xf0,0x0d,0x81,0x8e,0x86,0xd2,0x62,0x27, +0x54,0x62,0xac,0x63,0x16,0xb1,0x3e,0x91,0x9d,0x86,0xb2,0xed, +0x2f,0xb1,0x80,0x72,0x5f,0x8a,0x9d,0xb8,0x69,0x3e,0x6b,0x5f, +0x4e,0xb2,0x92,0x73,0x8a,0x58,0xa7,0x22,0x12,0x37,0x64,0x95, +0xff,0x80,0x61,0x36,0xea,0xc3,0xee,0x5a,0x7b,0xf2,0xc5,0xa4, +0x61,0xcf,0xf7,0xe9,0x2a,0xf2,0x02,0xaa,0xc8,0x66,0xfe,0x98, +0x91,0x4b,0x64,0xf3,0xf3,0x11,0x84,0x4e,0x42,0xae,0x68,0x92, +0xe0,0x29,0xaf,0x66,0x9d,0xbf,0x11,0xce,0x0e,0x0f,0xf8,0xe1, +0x65,0x34,0x41,0x7e,0xf8,0x1e,0xf6,0x09,0x90,0xf4,0x9e,0xe2, +0xb1,0x7f,0x07,0xb3,0x69,0xa3,0xbb,0x31,0x7a,0x80,0xa6,0x20, +0x3c,0x33,0x7b,0x5a,0x32,0x60,0x3c,0x25,0x6d,0x13,0x1a,0x05, +0xed,0xa7,0x10,0x75,0x53,0x82,0xf8,0x02,0x51,0x92,0xd4,0xfe, +0x59,0x6b,0xf2,0xd5,0x6a,0xb9,0x0c,0x6d,0x95,0xf4,0x3c,0x34, +0x5e,0xf6,0xea,0x33,0xae,0x3d,0x72,0x3d,0x22,0x9e,0xd6,0x91, +0x16,0x37,0xb5,0x48,0x03,0x39,0x91,0x95,0x92,0x13,0x5f,0x60, +0xfc,0xbb,0x06,0x62,0x91,0xef,0xf7,0x4c,0xd9,0x34,0xdf,0xc7, +0x77,0x46,0x93,0x01,0x67,0x06,0xca,0xe7,0xf0,0x68,0x83,0xee, +0xaa,0x4e,0xc9,0x29,0x30,0xdd,0x63,0xb6,0xdf,0x93,0xd8,0xe1, +0x68,0xaf,0x8c,0x2c,0x5b,0x6a,0xa8,0xaa,0xc8,0xce,0x4b,0xcf, +0x17,0xbe,0xf0,0x37,0xf0,0xac,0xab,0x86,0x30,0xe7,0x18,0x92, +0xce,0x87,0x3a,0xbe,0xea,0xb7,0xf1,0x88,0xd7,0xb0,0xce,0x7f, +0xe8,0x0f,0x9b,0xa5,0x6f,0x56,0xbd,0x02,0x62,0x6f,0x80,0xd1, +0x50,0x51,0x9e,0x93,0x7f,0xee,0x4a,0x02,0x73,0x1e,0x4d,0x52, +0xc3,0x13,0x43,0x23,0x5f,0x3a,0x92,0x93,0x79,0xa9,0x05,0x65, +0xa6,0xca,0xc9,0x4b,0xe4,0x51,0x9b,0xe6,0x7a,0xcf,0x30,0x7b, +0xdd,0x8f,0x4c,0x0d,0x8f,0x0f,0x8f,0x7e,0xe9,0x44,0x8e,0xe4, +0x24,0xe7,0x95,0x99,0xca,0xf1,0xab,0x9e,0x81,0xb3,0x07,0x0c, +0x30,0x57,0x2c,0xaa,0xaa,0xc9,0x2e,0x38,0x7b,0xc5,0x88,0x00, +0xcc,0x5d,0x07,0x60,0xf8,0xfe,0x02,0xf4,0xf7,0x77,0xf1,0x95, +0x9f,0x7c,0x2a,0x4c,0x96,0xb5,0x2e,0xdd,0x94,0xdf,0x60,0x60, +0x71,0x5d,0x66,0xf1,0x99,0x32,0x23,0xb3,0x2f,0x17,0x6c,0x21, +0xdc,0xbb,0xc2,0xdb,0x6b,0xb0,0xb8,0x7b,0x05,0x44,0x7d,0x21, +0x20,0x2a,0xa3,0x9d,0xc9,0x4d,0x38,0xa3,0xf0,0xe3,0xd7,0xe1, +0xb8,0x04,0x1e,0xb0,0x40,0xe1,0x23,0x77,0x4a,0xac,0x5b,0x00, +0xe1,0x23,0xea,0x2c,0x15,0x21,0x42,0x94,0x8d,0x92,0x8b,0xa5, +0x33,0xf3,0x1f,0xa2,0xaa,0x88,0xa5,0x33,0xb3,0xa8,0x2a,0xd2, +0x63,0x39,0x79,0x58,0x7a,0xf5,0xd4,0x63,0x23,0x6a,0xc4,0xf9, +0x7a,0xcf,0x54,0xcf,0x3e,0x52,0xfc,0xb1,0xf8,0xe3,0x8c,0x89, +0x8e,0x89,0xad,0xc8,0x0f,0x6b,0xe5,0xd2,0xe2,0xec,0x9c,0xf4, +0x02,0x14,0xe2,0x28,0x7e,0x3a,0x23,0x07,0x75,0xe3,0xd6,0xff, +0x2e,0x17,0xa0,0x1c,0x47,0x24,0x54,0x64,0xfa,0xeb,0x2a,0xc4, +0xce,0x46,0x3e,0x72,0xdd,0x34,0xcf,0xc7,0x67,0x06,0x73,0x09, +0x26,0x47,0xb3,0x93,0x73,0x8a,0x4d,0xf7,0xae,0x42,0xdc,0x6c, +0x94,0x40,0x71,0x03,0x03,0xe6,0x0e,0x18,0x5a,0xbe,0xc4,0x50, +0x59,0x95,0x93,0x7f,0xb6,0xb0,0xc5,0x2c,0x6d,0x0d,0x9d,0x0c, +0xab,0xfb,0x31,0x9b,0x01,0xfa,0xb5,0xbe,0x5d,0x25,0x97,0x97, +0x64,0xe7,0x9c,0xcb,0x7b,0xc9,0xc5,0xb5,0xda,0xeb,0xd7,0x6a, +0xfd,0xfa,0x5a,0xbb,0x2c,0x63,0x5e,0x68,0xfc,0xbb,0x16,0x62, +0x05,0xcf,0x4e,0xde,0xb4,0xc0,0x67,0xd6,0x8c,0x7b,0x06,0x7c, +0xe1,0x7b,0xd1,0x3e,0x8d,0x31,0x88,0x8c,0x83,0xcc,0xe4,0x1c, +0x61,0x9f,0x0e,0x0d,0x98,0x3f,0x60,0x84,0x80,0xbc,0x95,0x39, +0x68,0x06,0x0b,0x18,0x87,0xe2,0xf3,0x0d,0x9c,0x01,0x81,0x03, +0xf5,0xcb,0x29,0xcc,0xd0,0x96,0x30,0x96,0x49,0xfa,0xc1,0x46, +0xe5,0x91,0xfb,0x78,0xf5,0x3b,0xe2,0xc3,0x3a,0x94,0x91,0x98, +0xab,0x33,0x23,0xc5,0x5a,0xa7,0x91,0x3e,0xaf,0x27,0x9a,0x17, +0x1f,0xcf,0xec,0x77,0x11,0xf5,0x06,0x6f,0xa3,0xab,0x6c,0x79, +0x29,0x81,0xdd,0x16,0x88,0x4c,0x75,0xbe,0x10,0x8b,0xf0,0x30, +0x4e,0xb4,0xab,0x6e,0xc7,0x07,0x47,0xa5,0x85,0x26,0x86,0x89, +0x84,0x14,0x61,0x76,0x54,0xa4,0x56,0xdf,0x36,0x1d,0xe7,0x56, +0x8d,0x70,0xc8,0xeb,0x3f,0xc1,0x32,0xbc,0xb1,0x69,0x9a,0xfb, +0x70,0xf3,0xa4,0x27,0x91,0x28,0xae,0xf0,0xa0,0xe8,0x9d,0x02, +0x5e,0x94,0x25,0x57,0xde,0x36,0x9d,0x68,0x6e,0x84,0x34,0x2f, +0x6e,0xb5,0x43,0x86,0x6e,0xef,0x32,0xe7,0xf3,0x44,0x5f,0x38, +0xc7,0xb1,0x9e,0x60,0xa8,0xbe,0x91,0x5b,0x71,0xbe,0xc6,0x06, +0x46,0x41,0xa2,0x32,0x01,0xa2,0xb5,0xbb,0x02,0xdd,0xd9,0x6b, +0x29,0x22,0xe7,0x70,0xd4,0x8b,0x07,0x04,0xc5,0xd3,0x9b,0x4b, +0x09,0x6f,0xa3,0xd4,0x68,0x6f,0xcf,0xe1,0x6d,0x58,0xf7,0x5c, +0x12,0x74,0x69,0x39,0x6b,0xb7,0x85,0x3c,0x47,0xd6,0x1a,0x12, +0xc9,0xec,0x3d,0x85,0x27,0xe4,0x53,0x25,0xea,0x6b,0x01,0x30, +0x60,0x1a,0xac,0x42,0x46,0x1a,0x2c,0x3a,0x4f,0x0f,0x61,0x1d, +0x6c,0xc4,0x1a,0xcc,0x07,0xda,0x59,0xc2,0x6b,0x89,0xea,0x06, +0xf9,0x4a,0x68,0x32,0x02,0xa4,0x48,0x91,0x67,0x92,0x60,0x7d, +0x3a,0x23,0xf9,0x72,0xa1,0xe9,0xbc,0xdb,0x07,0xb2,0xfb,0xfa, +0x25,0xfd,0xbc,0xcd,0xdd,0x1e,0x85,0xa5,0x84,0xed,0xc5,0x3b, +0x47,0x41,0x9b,0x68,0x7d,0x2a,0x33,0xe5,0x72,0x81,0xe9,0xac, +0xfb,0x36,0x79,0xe2,0xf2,0xb9,0xc0,0xc6,0x9b,0x4b,0x16,0xdc, +0x29,0x2c,0xbd,0x7c,0xe9,0xb2,0x31,0x5e,0x4a,0x49,0x39,0xb8, +0x37,0x4d,0x38,0xcf,0x24,0xc3,0xbd,0xe2,0x32,0xdc,0x97,0x7a, +0x20,0x4d,0x78,0x6b,0xfb,0xba,0x18,0x4a,0x2b,0xac,0xdb,0x2b, +0xdf,0x6b,0xca,0x0c,0xde,0x88,0xba,0xa5,0x83,0xbb,0x37,0xeb, +0x51,0x43,0x1e,0xf0,0xb1,0x26,0xbe,0x5b,0x6b,0xad,0x88,0x50, +0xb0,0x40,0x66,0x5f,0x83,0x36,0xd3,0x08,0x12,0x02,0x43,0x14, +0x66,0x3e,0x44,0xca,0x37,0xe4,0xfa,0x9d,0x32,0x83,0x15,0x4c, +0x53,0x36,0x49,0x53,0xe6,0x64,0x5c,0xbf,0x56,0x9d,0xf1,0xc0, +0x31,0x5d,0xba,0x5f,0xbd,0x76,0xd6,0xcc,0x39,0x6b,0xdd,0x1c, +0x7b,0x6a,0x53,0x59,0xdb,0x56,0xe4,0xe5,0x06,0xa2,0x3a,0x68, +0x6d,0x84,0x07,0x96,0xd9,0x25,0x12,0x98,0xc8,0x9f,0xeb,0xed, +0x82,0xba,0xe9,0xa0,0x79,0x0f,0x2c,0x64,0x9d,0x3a,0x12,0xd8, +0xa7,0x84,0xf0,0x60,0x77,0x88,0x66,0x8e,0x7d,0xc8,0x53,0xd6, +0x76,0x36,0x61,0xf6,0x67,0xc8,0x43,0x78,0xde,0x02,0x27,0xae, +0xb7,0x40,0xef,0xe2,0xf2,0x8c,0x9c,0x53,0xf9,0x89,0x89,0x38, +0xc0,0xbb,0x9f,0x02,0x35,0x14,0x16,0x65,0x64,0x9f,0xc9,0xd1, +0x8d,0x81,0xdd,0xbf,0xa1,0x52,0x2e,0x2e,0x1e,0xf8,0x27,0x22, +0xc1,0xf8,0x70,0x21,0x01,0x8e,0x67,0xa7,0xe6,0x95,0xb0,0x4e, +0xc5,0x24,0x76,0xf2,0x76,0xff,0x79,0xbe,0xcc,0xb6,0x8c,0x44, +0x58,0xe4,0x4f,0x4e,0x72,0x6e,0xc9,0xbf,0x89,0x72,0x43,0xd7, +0xcf,0x1b,0x35,0xc2,0x46,0x8d,0x71,0x61,0xb6,0xdb,0xc9,0xe7, +0xee,0xc3,0x9f,0x8b,0x26,0x0b,0xa8,0x3d,0xbe,0x73,0xef,0xff, +0x3c,0xb1,0x85,0xb9,0x3c,0x74,0x88,0x48,0x11,0x6b,0x69,0xd3, +0xad,0xc4,0x48,0xbd,0x5c,0x42,0xb8,0x3d,0x62,0x31,0xbb,0x74, +0xbc,0xd5,0x7c,0x72,0x4f,0x33,0x09,0x85,0xad,0x2b,0x70,0xdb, +0x37,0x09,0xb4,0x35,0x94,0x17,0x21,0x3e,0xc8,0x15,0x02,0xcd, +0xb2,0x96,0xe7,0x24,0xd6,0xf2,0xe2,0xc3,0xa2,0x5f,0xaf,0xe5, +0xe5,0x14,0x9a,0x0a,0xdd,0x56,0xcb,0x13,0x36,0x2f,0xf0,0xf2, +0x35,0x7b,0xde,0xd4,0x9d,0x39,0x31,0x16,0x78,0x7b,0xf4,0x72, +0x72,0x76,0x81,0xa9,0xc0,0x3d,0x50,0x1e,0x1a,0x38,0x5f,0xac, +0xe5,0x2d,0xae,0x2c,0xcf,0xce,0x39,0x9b,0x67,0xb4,0x5c,0x66, +0xd8,0xf3,0xcd,0x2d,0x97,0x21,0xfa,0xaa,0x61,0x7a,0xee,0x3e, +0x66,0xee,0x44,0xf0,0x27,0xf9,0xee,0x6b,0x65,0xd7,0xcd,0x8b, +0x3c,0x5b,0x4e,0x88,0x12,0x17,0x4d,0xa2,0x23,0x19,0x29,0x59, +0x05,0xa6,0x3c,0xf7,0x35,0xf2,0xf0,0xc0,0x05,0xfd,0x46,0x8b, +0xb3,0x95,0x21,0x9a,0x11,0x67,0xeb,0x24,0xd0,0x8e,0xb8,0xe9, +0xde,0x44,0xfb,0x0e,0xf5,0xe6,0x58,0xf5,0x0b,0x66,0xd7,0x43, +0xdf,0x7c,0xac,0x6f,0x36,0x31,0x17,0x47,0xf2,0x4e,0x93,0x5a, +0xc0,0xba,0x22,0x2c,0x99,0x0a,0x87,0x90,0x43,0xbb,0xa2,0xf5, +0x43,0x75,0xa8,0xe9,0x88,0x50,0x73,0xbf,0x05,0x6a,0xda,0x4b, +0x3c,0x4c,0x4b,0x63,0x8a,0x3f,0x79,0xf1,0x23,0x69,0x80,0x6e, +0xcc,0x0a,0x11,0x5e,0x91,0x12,0xf6,0x0d,0x62,0xd7,0x85,0x7a, +0xe7,0x94,0xe1,0xf0,0xae,0x28,0xc8,0x77,0x59,0xfa,0x55,0xc7, +0xc8,0x91,0x02,0x23,0xbf,0xb5,0x73,0x90,0x83,0xfa,0x27,0x6f, +0xcf,0x8c,0xfb,0xc8,0x33,0xa3,0xc5,0xbc,0xcb,0xce,0x3d,0x57, +0x90,0x98,0xb8,0x4f,0xc8,0x05,0xdd,0x3b,0x56,0x82,0xb2,0x26, +0xf2,0x7f,0x73,0xcd,0xc4,0xb0,0x9a,0x4a,0xa6,0xbc,0x23,0x8f, +0xdd,0xec,0x8f,0x16,0x9e,0xf7,0xed,0x08,0xcb,0x7a,0xb6,0x65, +0x19,0x34,0x2b,0x39,0xb7,0xc8,0x54,0xe2,0xb6,0x42,0xee,0x1f, +0x38,0xaf,0xff,0x50,0x73,0xc5,0x62,0xdd,0xe4,0x2b,0x30,0xaa, +0xc3,0x60,0xf1,0xcb,0x11,0xe4,0xa7,0x49,0xbd,0x99,0xd5,0x76, +0x4b,0xea,0x9b,0x22,0x64,0xa7,0x15,0x9a,0x21,0x68,0x53,0xe6, +0xa5,0xeb,0xc2,0x68,0x9f,0xb0,0x29,0x3b,0x19,0xca,0xd1,0xa6, +0x7c,0x23,0x32,0xed,0x55,0x4a,0x5b,0x8e,0xb8,0x62,0xf9,0x94, +0xe5,0xf2,0x5b,0x9b,0xe6,0x79,0xe2,0x15,0xef,0xe0,0x57,0x7b, +0xc3,0xa3,0x2d,0x12,0x05,0xaf,0x98,0x53,0x62,0x2a,0x9d,0xb2, +0x4c,0xee,0x1b,0x30,0xb7,0xff,0x10,0xbc,0x62,0x15,0xea,0xfa, +0xf4,0x42,0xa3,0x3a,0x01,0x96,0xc0,0x20,0xbc,0x62,0x1f,0x66, +0x33,0xd0,0x82,0x85,0x77,0x0c,0x00,0x63,0x18,0xf4,0x75,0x58, +0xc3,0xdf,0xe4,0x77,0x1b,0xe1,0x2e,0xb7,0xe7,0x9f,0x35,0x6a, +0x3d,0xb5,0xb9,0xcc,0xe6,0x2b,0xc4,0x84,0x39,0xe2,0xfd,0xbd, +0x4c,0x25,0x68,0x3a,0x9d,0x57,0x60,0xc5,0x4c,0xbe,0x42,0xd2, +0x4e,0xc1,0x25,0x66,0x1f,0x40,0x98,0xad,0x44,0xd0,0xb2,0xaa, +0x7b,0xbf,0x68,0x56,0xba,0x79,0x3f,0xeb,0x94,0x48,0x76,0x31, +0x87,0x10,0xc2,0xbf,0x81,0xff,0x53,0x3e,0x08,0xde,0x99,0x60, +0x9d,0x99,0x97,0x56,0x50,0x69,0xfa,0x70,0xfc,0x66,0x79,0x90, +0xbf,0x2f,0xec,0x1c,0x20,0x5a,0x1f,0x1b,0x6b,0x3f,0x2f,0x2a, +0x2b,0x32,0xb6,0xb4,0x80,0x3d,0x06,0x66,0xd1,0x4e,0x3a,0x81, +0x77,0xdc,0x2e,0x3a,0xcd,0x86,0x1a,0xdb,0x33,0x79,0x36,0xb1, +0x51,0xff,0x84,0x38,0x25,0x4c,0x04,0x13,0x9d,0xce,0x4d,0xce, +0xab,0x30,0x65,0x4c,0x7e,0x4f,0x1e,0xb9,0xde,0x7f,0xc0,0x24, +0x73,0xf7,0x6f,0xc3,0x2d,0x21,0x5d,0x11,0x51,0x42,0xb4,0xe4, +0x24,0xe7,0x97,0x99,0x2e,0x4e,0xd9,0x20,0x0f,0x16,0xab,0x3e, +0x03,0x84,0x57,0xbe,0xaa,0xac,0xf0,0xd2,0x15,0xdd,0x33,0x9b, +0x62,0xe9,0x67,0x73,0xbf,0xb6,0xac,0x20,0xa3,0xe0,0xf5,0xaa, +0x4f,0x27,0xe1,0x95,0x77,0xe2,0xf2,0xab,0x55,0x1f,0x01,0x44, +0x63,0x1f,0xe2,0xb8,0xea,0x40,0xd4,0xe6,0x99,0x58,0x7b,0x9e, +0x88,0x70,0xf0,0x20,0x77,0x9a,0xa4,0xf5,0x7f,0x5d,0x61,0xbe, +0x07,0x3f,0x28,0xf1,0x46,0x61,0x33,0x98,0x09,0x6b,0xbb,0x9d, +0x68,0xf6,0x68,0xaf,0x8b,0x4a,0xe6,0xf7,0x39,0x17,0x46,0xe5, +0x19,0x70,0x55,0x22,0xa3,0xf8,0x57,0x04,0xba,0xf1,0x37,0x11, +0x67,0xee,0xd5,0xad,0x47,0x66,0xec,0x85,0x9a,0xe3,0x22,0x19, +0x08,0xa1,0x0a,0xeb,0xf6,0x35,0xaa,0x8c,0x59,0x11,0x22,0x2a, +0xc6,0xd8,0x02,0x9c,0x97,0xdf,0x55,0x97,0xcb,0xb0,0x53,0x5b, +0xc0,0xec,0x3c,0x45,0x75,0x9c,0x6a,0xa2,0x0d,0x53,0x3f,0x61, +0x76,0xe3,0x5e,0xf3,0xfb,0x30,0xf5,0x01,0x73,0xe9,0x4e,0x02, +0x9a,0xd4,0x42,0x66,0xb0,0x26,0x90,0x8e,0xdc,0x8e,0xc2,0x6e, +0x28,0xa1,0x8b,0xc5,0x2a,0x60,0x05,0xb3,0xff,0x8a,0xa4,0x11, +0xad,0x9d,0xe6,0xa1,0xd7,0x3e,0x5a,0xc5,0x37,0x43,0xfe,0x4c, +0xbe,0x1e,0x5a,0xc1,0x6a,0x98,0x2c,0x6a,0x4d,0x3e,0x69,0x82, +0x31,0x64,0xc2,0xce,0x61,0x0e,0xfc,0x73,0xde,0x4a,0x61,0xdd, +0xd3,0x08,0x84,0x49,0xed,0x85,0x46,0x8a,0x4b,0x64,0xdd,0xf3, +0xc9,0x13,0x61,0x27,0x94,0x0c,0xfd,0x3d,0x2a,0x35,0x2c,0x01, +0xed,0xad,0x48,0x91,0x2f,0x71,0x1c,0xb9,0xab,0xd4,0x74,0x65, +0x6a,0xa0,0x3c,0x61,0xfb,0xfc,0x79,0xb3,0xcc,0x8b,0xeb,0x98, +0xcb,0xaf,0x62,0xdd,0xad,0xd4,0x54,0xe8,0x1e,0x20,0x0f,0x7a, +0xdf,0x7f,0xf4,0x70,0x73,0xe9,0xa2,0x2b,0x65,0x97,0xb2,0x4f, +0xe5,0x19,0xf9,0xaf,0xe0,0xc7,0xac,0x7e,0x25,0x3f,0xbb,0xf5, +0x7a,0x7e,0x59,0x2c,0xe3,0x7f,0x3d,0x6c,0x98,0xdf,0xd7,0x30, +0xfc,0xb6,0x1a,0xcd,0xec,0xd0,0x5c,0x55,0xe6,0xe0,0x8e,0xb9, +0xfa,0x8e,0x20,0x0f,0xe8,0x22,0x23,0x0b,0xba,0x2b,0xf1,0x89, +0x49,0xf1,0x89,0xbb,0x58,0xc7,0xeb,0xe4,0x20,0x6b,0x5f,0x4d, +0x6a,0x61,0x8d,0x5f,0x43,0x84,0xdc,0x23,0x78,0xc6,0xec,0xd1, +0xe6,0x39,0xff,0x65,0xce,0x35,0xa4,0xfc,0x86,0xe9,0x48,0xad, +0xd8,0xff,0x5d,0x98,0x0c,0x5d,0xd6,0x4d,0x1b,0x0e,0x56,0xe6, +0x92,0x45,0x65,0x37,0x2f,0x56,0x9c,0xab,0x60,0x56,0xb5,0x04, +0x86,0x19,0x8a,0xae,0x65,0x96,0x8a,0x68,0x1f,0xb4,0x38,0xd6, +0xa2,0xc5,0xb1,0xf3,0xa4,0x72,0x5b,0xf5,0x60,0x76,0xbb,0x75, +0x1b,0x24,0x5e,0xec,0x49,0x66,0x76,0x63,0x05,0xd8,0x6c,0x86, +0x63,0x0a,0x5c,0xf0,0xe1,0x17,0x24,0xb0,0x85,0xf7,0x95,0x1d, +0xe1,0xac,0x5b,0x23,0x81,0xad,0xd3,0x2f,0x33,0xa7,0x3d,0x24, +0xb3,0x16,0x52,0x9f,0x6e,0xdf,0x1f,0x19,0x17,0x2c,0x96,0xc3, +0x2c,0xbe,0x14,0xf5,0x20,0x5c,0x67,0x8a,0x81,0xbc,0xec,0x40, +0xd4,0x79,0x70,0x4d,0x89,0x40,0xb6,0x0b,0x8b,0xd4,0x93,0xe6, +0xac,0x4f,0xe6,0x8a,0x32,0x57,0xe7,0xa6,0x7e,0x20,0xf7,0x5a, +0x35,0x0f,0x3a,0x74,0x33,0xc7,0xe4,0x8a,0xb5,0xb6,0x4f,0x78, +0x28,0x9f,0x01,0x75,0x7e,0x3c,0x72,0x02,0x84,0x81,0xb9,0x1b, +0xc9,0xd2,0xbb,0xa5,0xd5,0x3b,0xc6,0x25,0x17,0x06,0x34,0xd6, +0x16,0x15,0x5e,0xd0,0x1d,0x0d,0x22,0x14,0x94,0xe1,0x0c,0xaf, +0x28,0xb2,0x16,0x16,0xb5,0x3a,0x0b,0x4e,0xeb,0x19,0x01,0xa1, +0x2d,0x79,0x29,0x27,0xf3,0x45,0x90,0xdd,0x85,0x69,0x1b,0x65, +0xe7,0xc0,0xb9,0xd0,0x1e,0x9f,0x3a,0x26,0xf7,0x65,0x24,0x09, +0xfb,0x2f,0x9e,0x7e,0x36,0xd4,0xf9,0xf2,0x88,0x31,0x10,0x0a, +0x2e,0x30,0x96,0xc4,0x25,0x17,0x04,0x34,0x5e,0x2b,0x2a,0xba, +0x50,0xa4,0x3b,0x30,0xf0,0xbc,0x6f,0x82,0xc9,0x50,0x51,0x6c, +0xdd,0x9e,0x27,0x11,0xfe,0x8b,0x26,0x8b,0x65,0x33,0xa6,0xd8, +0xa2,0xf0,0x7b,0xca,0x8c,0xe3,0x44,0x6b,0x8e,0xd5,0x04,0x26, +0x81,0x59,0x61,0x5d,0xae,0x90,0x5f,0x60,0xa0,0xa1,0xb8,0x2e, +0x03,0x71,0x23,0xeb,0xf6,0x50,0x2c,0xc5,0x7e,0x4d,0x96,0x35, +0xab,0x97,0x99,0xdd,0x04,0x42,0x47,0x10,0x6d,0x8f,0xee,0xe2, +0x9a,0xc3,0xec,0x96,0xe9,0x0d,0xe4,0x12,0x14,0xde,0x0e,0x56, +0x36,0xa9,0x6b,0xdd,0x70,0xf8,0xda,0xf1,0x99,0xee,0x9a,0xc7, +0x3d,0x09,0xa2,0xf9,0x88,0x17,0x9d,0x08,0x7d,0x5e,0x4c,0xb4, +0x99,0x7c,0x9c,0xc0,0x3f,0x62,0x41,0x63,0xb3,0x36,0x8a,0x75, +0xe9,0x4d,0x9e,0xd5,0x90,0x9e,0x88,0x14,0x82,0xc2,0x76,0xc5, +0x5f,0xc8,0x4e,0xcb,0x89,0x2f,0x61,0x1d,0x27,0x90,0xe1,0x33, +0xfd,0x60,0xdb,0xf0,0x5c,0x5f,0x03,0x57,0xaa,0x3f,0xbd,0x52, +0x5e,0x18,0x1f,0x6f,0xb0,0xf4,0x4a,0x47,0x59,0x20,0x2a,0xfe, +0xc0,0x01,0xde,0x69,0x7b,0x72,0xa4,0x9e,0xc3,0x88,0x53,0xe0, +0x2b,0x51,0x82,0xed,0x77,0x66,0x1a,0x2f,0x66,0x87,0x2f,0x4e, +0x2e,0xad,0x07,0xb3,0xdb,0xaf,0x2f,0x81,0xd5,0xb7,0x14,0xd9, +0xb8,0xea,0xaa,0xad,0x10,0xcb,0x59,0xfe,0xcc,0xee,0x4b,0x1d, +0x26,0x2f,0x47,0x98,0xbc,0x2f,0x49,0x04,0x90,0x4c,0x85,0xe1, +0x7d,0x67,0x3e,0x91,0xb4,0x2e,0x73,0x95,0xdf,0x61,0x10,0x82, +0xe4,0xd2,0x33,0xa5,0x46,0xa6,0x24,0x22,0x48,0xc6,0xe3,0xd6, +0x8a,0xe3,0x4e,0xe2,0x71,0x1e,0x7a,0xa0,0xc9,0x24,0x4b,0xc3, +0x9a,0x7d,0xc8,0x32,0x1b,0x75,0x06,0x5a,0x2e,0x18,0xe8,0x00, +0xeb,0x36,0x02,0xa5,0x1c,0x74,0x53,0x8a,0xea,0x32,0x4b,0xf0, +0x5d,0x29,0xf1,0x02,0x62,0xcf,0xfa,0x11,0x22,0xef,0x0a,0xfe, +0x16,0xc5,0xbc,0x67,0xff,0x08,0x11,0x77,0xd5,0xa0,0xa9,0x30, +0x47,0x06,0x4f,0xb0,0x56,0xb4,0x6c,0xf2,0xa7,0x08,0xbd,0x2f, +0xe9,0xcd,0x1d,0xa3,0x2c,0x61,0x4c,0xe1,0x51,0xb1,0x38,0xdb, +0x9e,0x92,0x9e,0xc1,0x33,0x7c,0x47,0x99,0x67,0x7f,0x29,0xa2, +0x9b,0x22,0x22,0x5f,0x4c,0x23,0x47,0x4b,0x92,0x91,0xd1,0xd3, +0xea,0xea,0x60,0xbd,0xef,0xf7,0x22,0x2b,0x7d,0x9d,0xc7,0x30, +0x1c,0xf2,0xe2,0xc5,0xe5,0x37,0x32,0x2a,0xd3,0x2b,0x9e,0xf5, +0x23,0xbf,0xc1,0x50,0x1c,0xa7,0xcc,0xb2,0x33,0xe5,0x36,0xa2, +0xac,0xf7,0xf7,0xca,0xaf,0xcc,0xee,0x00,0xe9,0xf5,0xa2,0x59, +0xb7,0x3c,0x72,0x75,0xcb,0xa3,0x5c,0xe0,0x18,0xca,0x3a,0xff, +0x43,0x86,0x21,0x4e,0xe8,0x44,0xf8,0x96,0xde,0xb8,0xa5,0x92, +0xfe,0xc8,0xfa,0xd0,0xa4,0xbd,0x44,0x0b,0x8b,0x7f,0x89,0xd8, +0x8f,0xd9,0x8c,0x27,0x90,0xa5,0x75,0x7f,0x31,0x93,0x28,0x9e, +0xaa,0x34,0xe0,0xf1,0x8f,0xcf,0x50,0xec,0x75,0x53,0x66,0xf3, +0x25,0x57,0x99,0xdd,0x0b,0xa2,0x30,0x22,0x13,0x70,0xb5,0xc4, +0x37,0x0c,0x55,0xf7,0x93,0xca,0xd4,0x9a,0xbb,0xa6,0x8f,0x26, +0x4f,0x90,0x41,0xde,0x38,0x6d,0xea,0x70,0xf3,0xe4,0x27,0xf0, +0x26,0x41,0x01,0x51,0x9e,0xcc,0x9c,0xa6,0x90,0xf4,0xab,0xaf, +0xc2,0x4b,0x3b,0xc0,0x24,0x43,0xf5,0xad,0xdc,0xaa,0xf3,0xd5, +0x02,0x81,0xa6,0x20,0x02,0x4d,0x10,0x08,0x74,0xa6,0x2a,0xf7, +0x79,0xf4,0x54,0x95,0xaf,0xcb,0xf0,0x18,0x8c,0x8a,0x1f,0x5f, +0x52,0x2b,0x6b,0xe9,0x50,0xa9,0x44,0xfc,0x28,0x22,0xf4,0x21, +0x43,0xab,0x25,0x7a,0xf9,0x8f,0x5f,0x1f,0xe9,0x0a,0xf8,0xaa, +0xee,0xa4,0x1a,0xe4,0xc0,0x83,0x79,0x67,0xe5,0xe7,0x9d,0xd2, +0xca,0xa0,0xa0,0x75,0x01,0x26,0xef,0xeb,0x0b,0x9f,0xfe,0x72, +0xbd,0xac,0x21,0x27,0xe8,0xd2,0xca,0xe3,0xe6,0x24,0xd6,0xde, +0x87,0x54,0x65,0x6f,0x58,0xb2,0x24,0x70,0xc3,0x3c,0xb4,0x4b, +0x0c,0x6f,0x13,0xbe,0x4e,0x33,0x3f,0xb7,0x16,0x80,0xf7,0x8d, +0x99,0x84,0x1b,0x51,0x79,0x88,0x75,0xde,0x69,0x90,0xad,0xaf, +0x01,0x7d,0xe5,0x21,0xf1,0x66,0x66,0xac,0x21,0xda,0xa2,0xe3, +0x0a,0xeb,0xf4,0x2e,0x51,0xb4,0x81,0x9a,0x49,0x1d,0x28,0xb9, +0x36,0x2a,0x70,0x88,0x9f,0xe0,0x87,0x24,0x7e,0x5d,0xeb,0xae, +0x40,0x80,0x37,0x0f,0x10,0x98,0x32,0x36,0xc1,0xfa,0x44,0x45, +0x0a,0x62,0xf2,0x07,0x6e,0x6e,0xb2,0x73,0x90,0x87,0xef,0x18, +0xf3,0x6c,0x66,0xd3,0x8e,0x54,0xdc,0x32,0xdd,0x73,0x9b,0x26, +0x83,0x69,0xed,0xb4,0x61,0x60,0x63,0x2e,0x5d,0x58,0x71,0x8b, +0xd9,0xce,0xc4,0xf7,0xae,0xd4,0x93,0x40,0xbf,0xfe,0xc2,0x6a, +0xab,0x44,0xab,0x2d,0xdd,0x62,0xb5,0x09,0x50,0x89,0xf3,0x68, +0x49,0xb3,0x04,0xdd,0xea,0x74,0xa6,0x65,0x76,0xb3,0x11,0x6c, +0xbe,0xfc,0xbf,0x16,0x6a,0xca,0x46,0x41,0x6c,0x23,0xcf,0x4e, +0xc2,0xdb,0x2f,0x3f,0x11,0xb4,0x1f,0xce,0x4e,0x81,0xa3,0xec, +0xe6,0x12,0x98,0x8a,0xa2,0x41,0xa2,0xe7,0x09,0xdf,0x04,0x3f, +0x6a,0x1f,0x10,0xc5,0x63,0xfe,0x5a,0x6f,0xef,0x05,0x19,0xb7, +0xcd,0xac,0xe3,0x72,0xc2,0x39,0xb3,0x5f,0x2b,0x00,0xdf,0x5f, +0xd0,0x93,0xd9,0xaf,0x22,0x12,0x34,0x41,0x11,0x6b,0xab,0x0a, +0x37,0xd6,0xdf,0x44,0x9b,0xa2,0x2c,0xe0,0xab,0xe6,0x35,0xab, +0x8f,0x5d,0xb5,0x4d,0xf2,0x8b,0xb6,0x7c,0x22,0x33,0x7c,0x48, +0x20,0x0d,0x21,0x6e,0x07,0x5e,0x25,0xba,0x3c,0x8e,0x25,0x4b, +0x9a,0xd5,0x17,0xae,0xda,0x31,0xf9,0x45,0x27,0x3e,0x8b,0x29, +0xb2,0xf8,0xe1,0x3f,0x44,0x5b,0xa0,0xcc,0xe3,0xeb,0xf1,0xab, +0x5f,0x5c,0xb5,0x04,0xf1,0x95,0x07,0x53,0xac,0x71,0xb2,0xed, +0xe6,0x89,0x8a,0xbf,0x9e,0x05,0xac,0xb9,0x6a,0x47,0x65,0xd8, +0xa3,0x1e,0x66,0xf6,0xf6,0xba,0x8e,0xaa,0xd0,0x6b,0x24,0xb6, +0x61,0x5d,0xf2,0x08,0x64,0x32,0xe9,0x02,0xa1,0x4b,0xd0,0xc6, +0xec,0xa3,0xf0,0x15,0x75,0x9f,0x13,0xb8,0xc1,0x24,0x34,0x19, +0x4c,0x7a,0x41,0x0a,0x51,0xe2,0x23,0x68,0xfb,0xda,0x77,0x4c, +0x9e,0xd7,0xfc,0x9f,0x3c,0xb9,0x56,0x79,0x23,0x77,0x3b,0x93, +0x57,0x0b,0xfb,0xc2,0xe5,0x79,0x2e,0x89,0x44,0xb9,0x34,0x97, +0xa8,0x21,0xf0,0x03,0x53,0xce,0xe8,0x3b,0x25,0xd6,0x61,0x00, +0xe1,0xfe,0x70,0x41,0x3b,0x86,0x1a,0x77,0x1c,0x51,0x77,0xb0, +0x0e,0x25,0x24,0xf1,0xe4,0x45,0x26,0x97,0x91,0x92,0x9c,0x4b, +0x39,0x62,0x9d,0x3f,0x65,0x27,0x63,0x0f,0x48,0xa9,0xa3,0x10, +0xdb,0x3d,0x58,0xbb,0x48,0x02,0x3f,0xf0,0xde,0x3a,0x23,0x30, +0xd9,0x99,0xa8,0xbd,0xe1,0x22,0x53,0x4e,0x8b,0xed,0x01,0x2f, +0x3e,0x20,0xea,0x70,0x71,0x86,0x84,0x53,0xc2,0x0d,0x96,0x6f, +0xe4,0x3d,0xea,0x00,0x7c,0x79,0x1f,0x29,0xc6,0x75,0xd1,0x22, +0xa0,0xa3,0x8b,0x96,0x18,0xee,0x56,0x94,0xe6,0xe2,0x79,0xf7, +0xa7,0xc4,0x26,0xb3,0x4e,0x53,0x50,0x17,0xdf,0x56,0x82,0x99, +0x8d,0x15,0x11,0x2b,0x12,0x83,0xe5,0xdd,0xac,0xfb,0x61,0x34, +0x0f,0xc6,0xa1,0xf1,0x31,0x9b,0x07,0x4a,0x5a,0x14,0xac,0x47, +0x13,0x61,0xaf,0x3b,0x1c,0x7a,0x5e,0x47,0xd4,0x9f,0xff,0xe4, +0x7f,0x90,0x96,0x8c,0xe3,0x39,0x22,0xe3,0x58,0x1b,0x2b,0x46, +0x61,0x79,0xb3,0x7a,0xc3,0x55,0x7b,0x5f,0xd6,0x8e,0xf2,0x72, +0x65,0x59,0xf0,0xd6,0x4d,0x6b,0x4d,0xbe,0x1f,0x05,0xf2,0xf6, +0xbc,0xc3,0x47,0xd9,0x75,0x19,0x5b,0xd3,0x97,0x1d,0x35,0x27, +0xf1,0xb6,0x95,0xda,0x51,0x7f,0xde,0x59,0xe6,0x03,0x81,0x28, +0xab,0x24,0xf7,0xf9,0x27,0xf2,0xf3,0xcb,0x8f,0x37,0x39,0x66, +0x49,0xf7,0x2a,0x82,0x56,0xae,0xf4,0xdf,0x3e,0xd5,0x71,0x0e, +0x6a,0xfe,0x87,0xf8,0x33,0x31,0x7c,0x1d,0x9e,0x11,0x6d,0x9c, +0x38,0xf9,0xac,0xc7,0xea,0xc7,0x13,0x2c,0x27,0xaf,0x60,0x86, +0x4f,0x08,0x7c,0x88,0xc7,0x74,0x66,0xe6,0xb7,0x04,0x16,0xf7, +0x24,0x19,0x9a,0x2f,0xeb,0xf0,0x13,0xd1,0x0e,0xf1,0x3b,0x4c, +0x71,0x24,0x22,0xcc,0x31,0x5a,0xe1,0xe7,0x5d,0xb5,0x8f,0x9b, +0xf9,0x1e,0x66,0x77,0x4d,0x08,0xfd,0x3f,0x89,0x5e,0x19,0x9a, +0xd9,0x89,0x80,0x83,0x7c,0xa2,0x55,0x37,0xf3,0x73,0xcc,0xae, +0x4e,0x30,0x21,0xea,0x0a,0x1b,0x51,0x02,0x57,0x67,0xc7,0xc9, +0x17,0xf4,0xe1,0xce,0x16,0xc3,0xfd,0x33,0xb3,0x2b,0xd2,0xb7, +0x6e,0xeb,0xd2,0x19,0x79,0x66,0xa4,0xe8,0x6d,0xad,0x25,0xf2, +0x99,0x4a,0xc5,0xb2,0xa6,0xbc,0x8a,0xcb,0x99,0x97,0x8d,0xa9, +0xfb,0xd3,0x62,0x53,0x76,0xf1,0xa1,0x03,0x50,0xd1,0xc1,0x80, +0xaf,0x82,0x53,0x42,0x9e,0x0d,0x26,0x09,0x27,0x3e,0x4c,0xbd, +0xc0,0x6c,0xfc,0x88,0xc7,0x82,0x05,0x60,0x74,0xb7,0xe1,0xee, +0x90,0x2f,0xc6,0x96,0x6a,0x93,0xc8,0x9f,0xca,0x5c,0x71,0x9e, +0xf6,0xe2,0x3c,0x7e,0x78,0x9e,0xbb,0x79,0x15,0x99,0x97,0xf1, +0x3c,0x49,0x07,0xf7,0xa6,0xec,0xe4,0x43,0xfb,0xe9,0xe7,0xf9, +0x66,0x47,0x4a,0x28,0x9e,0x27,0xf1,0xc4,0xf9,0xd4,0x8b,0xe2, +0x3c,0xd3,0x16,0xcc,0x6f,0x39,0x4f,0x89,0x68,0x44,0xf7,0xf2, +0x12,0x01,0xd0,0xa6,0xeb,0xed,0x96,0x02,0x45,0xb0,0x4b,0x21, +0xd1,0xdb,0x55,0x22,0xfc,0x51,0x1b,0x58,0xdb,0x3d,0x84,0x2f, +0x21,0xef,0x6a,0xc1,0x8a,0xa8,0x20,0x71,0x31,0x27,0x35,0x97, +0x39,0xfd,0x45,0xf2,0x66,0x19,0x78,0x17,0xa1,0x8b,0xae,0x24, +0xe8,0xba,0x28,0x0e,0x75,0xd1,0x49,0x8b,0x2e,0x4a,0xe5,0x9d, +0x5f,0x75,0x22,0x11,0x77,0xc9,0x17,0xb2,0x76,0x7f,0x93,0x08, +0xd6,0xee,0x14,0x29,0x5b,0xd6,0xa2,0xd0,0x93,0xf6,0xb1,0xf6, +0xe3,0x09,0x33,0x9a,0x45,0x3c,0x4c,0x12,0x33,0xfc,0x4d,0xf6, +0xbc,0x35,0x52,0x7b,0x41,0x8a,0x20,0x82,0xd9,0xaf,0x20,0xda, +0x42,0xd6,0xd6,0x48,0x98,0x63,0x15,0xd1,0xee,0xf0,0xa5,0x4c, +0x91,0x08,0x1d,0x25,0x16,0x5c,0xd6,0x29,0x7c,0x65,0x2d,0x73, +0x70,0x25,0x68,0x6a,0xb4,0x65,0xc6,0xfd,0x62,0xcd,0x46,0xc1, +0xc1,0xe5,0x5d,0x60,0x8f,0x02,0xb3,0xbe,0x9d,0x0e,0x7b,0x74, +0xd9,0x55,0xa6,0x57,0x60,0xef,0xae,0x44,0xa4,0x88,0x10,0x16, +0x0b,0xfc,0x38,0x91,0x9d,0x82,0x98,0x38,0x7d,0xda,0x36,0xb9, +0x5f,0xe0,0x42,0xe8,0xdc,0xdd,0x5c,0xbe,0xac,0xa1,0xea,0x4a, +0xfe,0x85,0x7c,0x11,0xeb,0x24,0x96,0x31,0x8c,0xd0,0x96,0x75, +0x3c,0x40,0x7e,0xd1,0xc3,0x33,0x90,0x21,0x5e,0x10,0xc2,0xbb, +0x42,0xa4,0x02,0xbe,0x78,0xde,0x5d,0xfa,0x79,0x4b,0x66,0x48, +0xfc,0x21,0x38,0xe1,0x79,0x11,0xa9,0xea,0xb0,0x06,0x65,0x5e, +0x8e,0x38,0xef,0x99,0xe9,0xdb,0xd1,0x4e,0x59,0x00,0x76,0xce, +0xe6,0xb2,0xe5,0x8d,0xe2,0xbc,0x05,0x46,0x04,0xcf,0x71,0x78, +0x5e,0x07,0x11,0x08,0x70,0xc5,0x5a,0x5b,0x80,0x58,0xca,0xf7, +0x09,0xf7,0x15,0xab,0x97,0x6b,0x08,0x2f,0x86,0x64,0x94,0x9d, +0x3e,0x3c,0x40,0xd2,0x42,0x21,0x85,0x29,0x0b,0x84,0x60,0x6a, +0x84,0x43,0xcc,0xfe,0x32,0x51,0xfe,0x84,0x39,0xf7,0x55,0x4f, +0xd6,0x76,0x09,0xea,0x49,0x2f,0x1e,0x34,0x0c,0x7a,0xa8,0x4f, +0x89,0xfc,0xfc,0x03,0xf2,0x35,0x5f,0x37,0x46,0xab,0x26,0x9f, +0xc1,0xff,0x11,0x78,0xcc,0xff,0x24,0x62,0x45,0x0b,0xa7,0x2c, +0xb7,0x83,0x77,0xf1,0x05,0xfc,0x38,0x1d,0x12,0xf5,0x1b,0xad, +0xd1,0x5f,0x40,0x0f,0xf1,0x02,0xf0,0x46,0x75,0x84,0xc4,0x5c, +0x2e,0x91,0x05,0xd0,0xb9,0x9b,0x78,0xee,0xea,0x2b,0x05,0xf8, +0xdc,0x22,0x16,0x42,0xaf,0x63,0xdc,0x41,0x3c,0xf7,0x6f,0xe2, +0xb9,0x99,0xf2,0x58,0x18,0x87,0xfb,0x51,0x2e,0x74,0x10,0xc6, +0xa1,0x02,0x21,0x73,0xf5,0x52,0x35,0x53,0x71,0xe2,0x8c,0x7c, +0x15,0xa0,0xaf,0xc5,0x73,0x57,0x66,0xc8,0x20,0x70,0xf6,0x99, +0x86,0x8c,0x2e,0x3d,0x24,0x2f,0xee,0xc2,0x67,0x65,0xa4,0xbd, +0x3a,0x86,0xf0,0x14,0x66,0xbf,0x0e,0x47,0xd6,0x89,0x8c,0x80, +0x24,0x65,0x4b,0xf0,0xae,0x04,0xeb,0xcb,0x85,0x69,0x45,0xb5, +0xa6,0x8b,0xe3,0x37,0xca,0x3d,0xe7,0xf9,0x40,0x8c,0x8b,0x30, +0x68,0xba,0x5e,0xfb,0xb4,0xa4,0xa2,0xd4,0x78,0x08,0x41,0xcc, +0xe1,0x28,0x04,0x31,0xbd,0x0d,0x85,0xd7,0x61,0x1f,0x77,0x60, +0xb6,0x73,0x84,0xdd,0xc9,0x83,0xe1,0x00,0xeb,0x98,0x40,0x58, +0x97,0x91,0xa4,0x1c,0x91,0x19,0xeb,0xd2,0x85,0x1c,0x87,0xcb, +0x0a,0x77,0x90,0x45,0x67,0x4d,0x84,0xc3,0x38,0xbf,0xd6,0x10, +0x44,0x0d,0x33,0x90,0x08,0x26,0x01,0x20,0x29,0xd3,0xf1,0x55, +0xa9,0x32,0x58,0x35,0x73,0x2b,0x55,0x6a,0x94,0x61,0x3d,0x64, +0x31,0xfb,0x65,0x28,0x04,0x9d,0x08,0xbc,0xa9,0xf5,0x61,0x5d, +0x07,0x11,0x9c,0x2b,0x22,0x56,0xa0,0x9e,0xd9,0x95,0xe8,0xcd, +0xe5,0xdf,0xc6,0x27,0xca,0x73,0xd3,0x7c,0x44,0xe0,0xc0,0x2c, +0x11,0x38,0x50,0x90,0x91,0x71,0xea,0xb2,0x25,0x90,0x71,0xf7, +0xd3,0x1e,0x86,0x82,0x6c,0x11,0x38,0xc0,0xac,0xed,0x49,0x2f, +0x11,0x35,0xf0,0xb5,0x25,0x6a,0xe0,0x62,0xea,0xa5,0xf8,0xec, +0xd7,0x51,0x03,0xbe,0xdb,0x96,0xcd,0x5f,0xec,0x5f,0x6d,0x88, +0x44,0x96,0x7f,0x15,0x35,0x70,0x31,0x49,0xc4,0x15,0xbc,0x8a, +0x1a,0x70,0x5b,0xbf,0x6c,0xcc,0x14,0x1b,0xfa,0xac,0x95,0x08, +0x19,0xb2,0x83,0xe8,0x07,0x6a,0xde,0x64,0xd8,0x09,0x76,0x22, +0x64,0xe8,0xe8,0x7d,0x09,0x38,0xbf,0xc1,0x94,0xa5,0x84,0x4e, +0x85,0x15,0x02,0x09,0x11,0x1d,0xe5,0x27,0xec,0xfe,0x0b,0x86, +0x23,0x18,0xea,0xc5,0x5d,0x44,0xe9,0x32,0x66,0x5b,0x41,0x2a, +0x53,0x6a,0xee,0x98,0x52,0xbf,0xac,0x87,0xf5,0x3e,0x37,0xa2, +0x65,0xa7,0x1d,0x1e,0xb3,0x47,0x9a,0xfd,0xbe,0x8a,0x3a,0x88, +0x98,0x28,0xa2,0xc5,0x82,0x2d,0x4b,0xae,0xba,0x85,0xb0,0x48, +0x1c,0x22,0x60,0xd1,0x9b,0xeb,0x50,0xe5,0xda,0x22,0xfe,0x2f, +0xbf,0x7d,0xa9,0x2a,0x5d,0xf4,0x62,0xf8,0x15,0x46,0x19,0x4a, +0xea,0x11,0x16,0x55,0xda,0xe0,0xf5,0x16,0x89,0xeb,0xd9,0x28, +0xcc,0xbe,0x04,0xbf,0xc0,0xab,0x5d,0xb3,0xe0,0x25,0x0f,0x78, +0x53,0x86,0xa5,0xe0,0x81,0x5f,0x94,0x22,0xe0,0x1d,0x6e,0x28, +0xba,0x9e,0x59,0x76,0x1a,0xbf,0x60,0x1d,0x4b,0x89,0x76,0x8f, +0x2f,0x63,0xf6,0x76,0x22,0x6a,0xc9,0x8e,0x40,0x6b,0x64,0x58, +0x9c,0xbd,0x4a,0xcc,0x2e,0x34,0xe8,0x4f,0x37,0xa4,0xde,0xfd, +0xd2,0x54,0xca,0xdb,0xdc,0x80,0x83,0x9e,0xff,0x59,0x20,0x43, +0xf7,0xf7,0xc7,0x4e,0x73,0x32,0x4f,0xe1,0x52,0xd4,0xe1,0x1d, +0x22,0xeb,0x74,0xa7,0x38,0xea,0x78,0x7d,0xca,0xed,0xef,0x4c, +0x57,0x1e,0x8a,0x83,0xb8,0xf5,0x12,0xbc,0x85,0x80,0xb7,0x7b, +0xc2,0x60,0x73,0xd5,0xc2,0xea,0x2f,0xf3,0xeb,0xd3,0x6f,0x1b, +0x13,0x2c,0x4b,0xc2,0x1d,0x60,0x99,0xa1,0xfa,0xe3,0xdc,0xeb, +0xe7,0x6f,0x26,0x58,0xfc,0x80,0x9d,0x60,0xa9,0xa1,0xaa,0x0c, +0xda,0x73,0xdf,0xa8,0xc3,0x21,0x89,0xba,0x15,0x3a,0x9a,0xf0, +0x79,0x5a,0x04,0xeb,0xb0,0x9a,0x68,0xeb,0xe1,0x07,0xed,0x29, +0x51,0xd7,0x33,0xdb,0xd9,0x04,0x0d,0x9a,0x08,0x66,0x87,0xb0, +0x1a,0x09,0x4f,0xdd,0xb2,0x41,0x62,0xab,0x47,0xcf,0xa1,0x3e, +0xdf,0x0c,0xc7,0xff,0x12,0x2c,0x3c,0x24,0x5e,0xf2,0x5e,0xe6, +0x5c,0x4f,0xc2,0x99,0xed,0xbb,0x04,0xdf,0xda,0xbd,0xa9,0x1e, +0xb2,0x4b,0xf0,0xf4,0xd9,0x63,0xd0,0x90,0x8a,0x49,0x0d,0x4f, +0x0a,0x67,0xd6,0x76,0xe4,0xa8,0x1e,0x93,0x7a,0xdb,0xdd,0x53, +0x06,0xc3,0xba,0x69,0x23,0x40,0x12,0xb6,0xd4,0xad,0x4b,0x15, +0xe9,0x55,0xc6,0x84,0x44,0x91,0x21,0xf1,0x0b,0x8c,0xd0,0xdf, +0x8e,0xb0,0xa7,0x98,0xf2,0x0c,0xb5,0x39,0x4e,0x1d,0x13,0x6b, +0x2b,0xe6,0x05,0x1a,0xa0,0x08,0xfd,0x8b,0x75,0x03,0xf4,0x38, +0xee,0x6e,0xaf,0x1b,0xa0,0xcf,0x23,0x08,0x2f,0x52,0xf4,0xf8, +0x37,0x11,0x87,0xd4,0xd6,0x12,0x87,0xd4,0x46,0xc4,0x21,0x65, +0xa5,0xe6,0x14,0x9b,0x2e,0xbb,0xbf,0x2f,0x0f,0x69,0x89,0x43, +0x5a,0xdc,0x5c,0x59,0x5d,0x70,0xb9,0xc8,0xc8,0xa3,0xc1,0x57, +0x99,0x13,0x31,0x2d,0x66,0xd2,0x2e,0x9b,0x7f,0xdc,0xe0,0x0d, +0x3d,0xa1,0x65,0xaa,0xbe,0x9e,0x33,0x9e,0xbb,0x1f,0x3c,0xcb, +0xdb,0x39,0x52,0x57,0x64,0x63,0xc4,0xf3,0xde,0xcc,0xee,0x8e, +0xde,0xcc,0xea,0x07,0xe5,0x1f,0x66,0x3f,0x9c,0x74,0x13,0x88, +0x97,0xd9,0x79,0x93,0x21,0xf8,0x77,0x13,0x42,0xdc,0xbe,0xf8, +0xe9,0x43,0x06,0x88,0x4a,0xd1,0xbf,0x3c,0x96,0xe0,0xb6,0xfa, +0x33,0xb3,0x1f,0x40,0x68,0xb3,0x3a,0x4d,0x29,0x5d,0x70,0xb7, +0xba,0xb4,0xe0,0xd2,0x15,0x63,0x4a,0xf2,0xa1,0xbd,0x29,0xd1, +0x68,0xf6,0x3b,0x32,0x97,0x1b,0x84,0xf7,0x01,0xa3,0xa1,0xac, +0x12,0x7a,0xf2,0x0e,0xac,0xbb,0x3b,0x89,0xe7,0xce,0x7a,0x1e, +0xbc,0x1c,0x37,0x7c,0xfd,0xbc,0x21,0x93,0x5d,0x7e,0x34,0x84, +0xa5,0x82,0x89,0x24,0x58,0x9f,0x42,0x03,0xaf,0xcc,0xf4,0xf7, +0x8b,0x6a,0x12,0x37,0x78,0xc9,0x74,0xe8,0x32,0xc4,0xe6,0xd9, +0xc9,0xd7,0x1d,0x17,0xfe,0x66,0xf6,0xa2,0x85,0x8b,0x7d,0x6f, +0xf2,0x8e,0x36,0x5f,0xd9,0x12,0x84,0x92,0x33,0xab,0x38,0xad, +0xe4,0x9a,0x29,0x73,0xdc,0x7b,0x72,0x37,0xff,0xe9,0xb0,0x9b, +0xf5,0x78,0x8f,0xc4,0xc7,0x1f,0x4e,0x3d,0x12,0x77,0x24,0xca, +0xc8,0x8f,0xc3,0xc0,0xa2,0xeb,0x68,0xd6,0x74,0x0f,0x4a,0x09, +0xb7,0xa4,0x55,0x15,0x92,0x7c,0xcd,0x4f,0x89,0xf8,0x92,0xaf, +0xe1,0xf3,0x20,0xc7,0x97,0xbf,0x37,0x12,0xd6,0x8a,0xce,0x2f, +0x08,0x77,0x36,0x8b,0xfe,0xc2,0x99,0xca,0x59,0xee,0x36,0x63, +0xff,0x0e,0x98,0x6e,0x3d,0x5d,0xda,0xc1,0xa7,0xcf,0xd8,0x75, +0x16,0xdc,0xd4,0x6f,0x48,0x8b,0x69,0x9a,0xa3,0x8d,0x60,0x5d, +0x1c,0x85,0x65,0xba,0x8c,0x39,0xfc,0x41,0x78,0x02,0x7f,0x47, +0xe1,0xb7,0x6a,0x45,0x8e,0x7d,0x1c,0x1c,0x51,0xce,0xf0,0x31, +0xd3,0x93,0x42,0x60,0x82,0xb5,0x87,0x14,0xc2,0x27,0x4c,0xdf, +0x79,0x06,0xc6,0x30,0x5b,0x3f,0xe1,0xf4,0x9c,0xa2,0xc5,0x88, +0x38,0x23,0xdd,0xa2,0x99,0x50,0xaa,0xb0,0xae,0xdf,0xe1,0x9c, +0x18,0x6c,0x68,0x31,0x6c,0xd8,0x5c,0x51,0x64,0xa2,0x13,0xbc, +0x55,0xdd,0x98,0x57,0x2e,0x82,0xb3,0x93,0x74,0x64,0x6f,0x07, +0xa3,0xc5,0xc0,0xb6,0xe3,0x7d,0x23,0x0e,0x86,0x25,0x86,0x09, +0x9b,0xe5,0x64,0x79,0x5a,0xc5,0x4d,0xd3,0x11,0xfe,0x46,0x23, +0x1c,0xf1,0xfa,0x38,0x42,0x86,0x56,0x9b,0xa6,0x4f,0x19,0x69, +0x9e,0xf8,0x13,0xda,0x06,0x09,0x22,0x52,0xbb,0x12,0x4d,0xf7, +0xe6,0x46,0x38,0xec,0xc5,0x25,0xb4,0xdd,0x1d,0xde,0xf5,0x70, +0x01,0x6a,0xae,0x5c,0x5c,0x7b,0x27,0xaf,0xf2,0x5c,0xb5,0x38, +0x71,0x5c,0xe2,0x2e,0xe4,0x32,0xbb,0x6f,0x08,0x24,0x5b,0x90, +0xef,0x13,0x7c,0x6a,0x1d,0xf0,0x32,0xbb,0x5f,0x10,0xc6,0x58, +0x30,0x32,0x52,0x97,0x10,0x23,0x3f,0x42,0xd4,0x52,0xbc,0xe8, +0xee,0x95,0x92,0xac,0x4b,0x59,0xc6,0xd4,0xe4,0x23,0x7b,0x53, +0x45,0xc1,0x05,0xd9,0x70,0xbb,0xb8,0x38,0xeb,0x62,0x66,0x5a, +0x4a,0x5a,0x5c,0x5a,0x34,0xef,0x0b,0x6d,0x0c,0x25,0xe5,0xd0, +0xeb,0x8f,0xb0,0xe4,0x30,0x11,0x57,0x12,0x1c,0x1e,0x1b,0x6f, +0x7d,0x32,0x33,0x39,0xa3,0xd0,0xc4,0x7b,0xd6,0x41,0xb3,0xaf, +0x48,0xbe,0xf0,0x78,0x6f,0xf1,0xe0,0x59,0x4e,0x1f,0x19,0xc2, +0x93,0xc3,0xe3,0xc2,0x22,0x83,0x23,0x0c,0xb1,0xf1,0x27,0x33, +0x52,0x32,0xe3,0xf3,0x8d,0xff,0xd4,0xc1,0x43,0x5f,0xde,0x43, +0xda,0x33,0x65,0x91,0x1f,0xd8,0x4f,0xb2,0x51,0xeb,0xf1,0xfa, +0x5b,0x11,0x9a,0xe3,0x47,0x90,0xe5,0x63,0x87,0xe5,0x23,0x58, +0x7c,0x2c,0x26,0xcb,0xb4,0xd1,0xac,0x8b,0x99,0xa0,0x01,0x3f, +0x9f,0x39,0xfc,0x4e,0x78,0x3c,0x7f,0x4f,0x0c,0xdd,0x79,0x7c, +0xfd,0x13,0x44,0x4b,0x2b,0x37,0xbd,0x35,0xb4,0x9b,0x68,0x0d, +0x3d,0xe1,0xe5,0x97,0x04,0x39,0xfc,0x7d,0x3c,0x08,0xde,0x62, +0xf6,0x4b,0xc8,0x6b,0x78,0xd2,0x61,0xe8,0x6b,0x78,0x22,0x02, +0x8b,0x66,0x13,0x7c,0xfd,0x43,0x0c,0xd5,0xd7,0xf2,0x4a,0xcf, +0x97,0x8b,0xbc,0xab,0xf6,0x30,0xba,0x4a,0x2c,0xe1,0x54,0x89, +0x0c,0x39,0x3d,0x75,0x15,0x46,0x8a,0xc1,0x68,0xcb,0x7b,0x47, +0xea,0x83,0x61,0x71,0x30,0x9e,0x2c,0x4b,0xad,0xbc,0x69,0x3a, +0x26,0xf2,0x3f,0x92,0xbd,0xff,0x13,0x2a,0x3b,0x6d,0x9a,0xee, +0x3e,0xda,0x3c,0xf9,0xbb,0xc8,0x43,0x61,0xf1,0x61,0x51,0x96, +0xf5,0x83,0x63,0x25,0x29,0x68,0x67,0x1e,0x7f,0xd8,0x00,0x49, +0xde,0xbc,0x75,0xb0,0x1e,0xf3,0xde,0x13,0x88,0xb9,0x62,0x71, +0xcd,0xed,0xbc,0xca,0xf4,0xea,0x57,0x31,0xef,0xfa,0x55,0x2d, +0x89,0x14,0x7a,0x9c,0x3c,0x4a,0x85,0xca,0x12,0xd6,0x7d,0x1c, +0x49,0xc3,0x41,0x3d,0x2c,0x86,0x3c,0xcd,0xab,0x39,0x42,0x76, +0xda,0x3c,0xc3,0x0d,0x2f,0xf1,0x7d,0xe4,0xc1,0x50,0x3d,0x44, +0x7f,0xe7,0x1e,0x3d,0x44,0xbf,0xbc,0xd1,0x74,0xe4,0x71,0xa3, +0x48,0xf7,0x6b,0x8d,0x03,0x6f,0x78,0x17,0x2f,0x61,0x2b,0x06, +0xfe,0x76,0xae,0x10,0x34,0x7a,0xdc,0x9a,0x7e,0x89,0x7f,0x53, +0x00,0x44,0x38,0x95,0x8d,0xce,0x77,0xb8,0x07,0xf9,0xae,0x02, +0xf7,0xf8,0xb6,0xec,0x19,0xc5,0x88,0x23,0xd1,0x6f,0x6c,0xdf, +0x6e,0xde,0x19,0xef,0xa4,0xa2,0x04,0x65,0x66,0x2f,0xcb,0xa3, +0xbf,0xbc,0x47,0x4e,0x95,0x8a,0xbc,0x81,0x54,0x91,0x37,0x70, +0xc4,0xfb,0x93,0x18,0xd9,0x79,0xd3,0x8c,0xc9,0xa3,0xcc,0xae, +0x3f,0x46,0xa6,0x85,0x25,0xea,0x65,0xa5,0x2c,0x79,0x03,0xa5, +0x0d,0xa6,0x83,0x8f,0x1b,0xe0,0xb0,0x37,0x97,0x85,0x81,0xfd, +0x0e,0x72,0xa3,0x28,0xfb,0x76,0xf5,0x76,0x5e,0x85,0xaa,0x12, +0xc1,0x87,0x3f,0x11,0x58,0x2b,0x90,0x2e,0x04,0x08,0x0f,0x83, +0x89,0xd9,0xc7,0x08,0x1f,0xfb,0x2f,0x08,0x06,0x46,0x2b,0xd5, +0x0b,0xbf,0xac,0xa8,0x2f,0xc8,0x29,0x60,0x56,0x0f,0x85,0x73, +0xbb,0xaa,0x02,0xdc,0x99,0xd3,0x49,0xf2,0x6f,0x2d,0x95,0x31, +0x7e,0xf3,0x60,0xe8,0x30,0x1b,0xb5,0xb0,0xcf,0x8b,0x77,0x09, +0x6f,0x35,0x11,0xde,0x80,0x18,0x21,0x85,0xb6,0x29,0xc5,0x0b, +0xef,0x16,0x97,0x64,0x5f,0xca,0x31,0xa6,0x1e,0x38,0x2c,0x22, +0xca,0x7b,0xa1,0x8c,0xbc,0x5d,0x5a,0x9c,0x7d,0x31,0x2b,0x35, +0xe5,0x60,0x5c,0x6a,0x34,0x73,0x8e,0x22,0x11,0xc6,0x90,0xf0, +0x3d,0x82,0x53,0x53,0x2e,0x17,0x99,0xb8,0xcb,0x35,0x78,0xa8, +0xa7,0x09,0xb9,0xaf,0x5f,0x38,0xc4,0xbb,0xfb,0x67,0x86,0xb0, +0xe4,0x88,0xb8,0xd0,0xc8,0x90,0x08,0xc3,0x9e,0x78,0x3c,0x24, +0x2b,0xbe,0x80,0xd9,0x2e,0x23,0xae,0x4b,0x66,0x83,0x32,0xc1, +0x26,0x40,0x67,0xd1,0x00,0xdd,0x86,0x14,0x7f,0xb7,0xe3,0xdf, +0x66,0x75,0xbd,0x52,0xb2,0xe0,0x4e,0x69,0x69,0x6e,0x46,0x8e, +0x31,0x39,0xe5,0xf0,0xde,0xd4,0x28,0xbc,0x6c,0x47,0xc3,0xdd, +0xf2,0xe2,0x9c,0x8b,0xd9,0xa9,0x38,0x57,0x52,0xc5,0x5c,0x21, +0x62,0xae,0xf4,0x44,0x23,0xc9,0xe5,0x2b,0x92,0x95,0x7c,0xb9, +0xa4,0xe5,0xca,0xff,0x48,0xb1,0x13,0xd7,0x2f,0x1c,0xea,0xe9, +0xfc,0x39,0x4a,0xc2,0xf0,0xb8,0xd0,0x28,0x91,0x45,0x1b,0x7f, +0xf2,0x72,0x6a,0x76,0xfc,0x15,0xe3,0xdf,0xfa,0xbd,0xe1,0x14, +0x19,0xb7,0x78,0x26,0xd8,0x8f,0xb7,0x11,0x17,0x5b,0x22,0x2e, +0x56,0x51,0x9a,0x97,0x91,0xcf,0x6c,0x3f,0x26,0xcc,0xe1,0x01, +0xc9,0x66,0x1d,0xd7,0x93,0x71,0xeb,0xe6,0x0f,0x9d,0xe6,0xfc, +0x8d,0x21,0x0c,0x25,0x5e,0x68,0x84,0xb8,0xfb,0x84,0x93,0xa8, +0x12,0xe2,0x4b,0x8c,0x7f,0x0b,0x81,0x8b,0x27,0x89,0x1d,0xb5, +0xc8,0x1b,0xec,0x47,0xe9,0xcf,0xb0,0x03,0xef,0x5b,0xf7,0x44, +0xf7,0x07,0x43,0x38,0xf4,0x75,0x58,0xcb,0xdf,0xe4,0xb7,0x1b, +0xe1,0x36,0x02,0xe2,0x4f,0x1a,0xb5,0x1e,0x9a,0x3f,0xeb,0x58, +0x4f,0xb4,0x31,0x38,0x5f,0xba,0xf6,0x23,0xca,0x10,0x82,0x78, +0xe8,0x3c,0xb3,0x97,0x89,0x02,0x47,0x99,0x23,0x25,0x16,0x77, +0xff,0x2d,0x50,0x24,0x88,0xd1,0xfa,0x8a,0x63,0xe0,0x4b,0x34, +0x3f,0xaf,0xa3,0xf9,0xf9,0xad,0x70,0x53,0xe3,0x5f,0xc3,0x14, +0xc2,0x3a,0xdd,0x26,0xb3,0x9f,0x3c,0xa9,0xd3,0x73,0x65,0x97, +0x9f,0x34,0xef,0x97,0x87,0xc1,0x78,0xe6,0x18,0x46,0x94,0xbb, +0x42,0xc3,0x96,0xeb,0x19,0x47,0x5b,0xa7,0xc2,0x94,0xbe,0x5e, +0x4f,0x24,0x98,0xe1,0xab,0x24,0xe8,0xd0,0xe5,0x4f,0x18,0x6a, +0x28,0x2d,0xeb,0xcd,0xbb,0x45,0xa7,0x85,0x27,0x85,0x09,0x05, +0x5b,0x89,0x0a,0xd6,0x1d,0x15,0xec,0x8e,0x19,0xa8,0x60,0xfd, +0xfe,0xab,0xa7,0xa9,0x45,0xbc,0x74,0xd2,0x15,0xec,0x0d,0xd3, +0x6d,0x37,0x5d,0xc1,0x7a,0x0c,0x43,0x16,0x13,0xa5,0x67,0x99, +0xcd,0x29,0xd1,0x35,0x8a,0x75,0x2a,0x10,0x02,0xad,0x82,0xdc, +0x7c,0x51,0x37,0x83,0x3e,0xbf,0x40,0xd0,0xb6,0x5e,0xc2,0x14, +0x1b,0xb4,0x58,0xbe,0x25,0xef,0x34,0xab,0x59,0xcf,0xbb,0x11, +0xc8,0xd6,0x06,0x8b,0xa6,0x18,0xb2,0x26,0x41,0xb5,0x12,0x9d, +0x1a,0x96,0x14,0x1e,0x19,0x1e,0x25,0x52,0x1b,0x8f,0x57,0xa4, +0x54,0xdf,0x62,0xb6,0xcb,0x89,0xf3,0x8e,0xe9,0xb3,0x46,0x0b, +0xef,0x51,0x6a,0xd8,0x7e,0x66,0xf3,0x16,0x49,0xbe,0x56,0x0f, +0x1b,0x7c,0x7e,0xd8,0x29,0x83,0x69,0xdd,0x34,0x26,0xe7,0xe0, +0xa5,0x5a,0xb0,0x4f,0x05,0xeb,0x38,0x9f,0x94,0x5a,0xe3,0x10, +0xf9,0xb3,0x37,0x17,0x93,0x68,0x91,0xad,0x63,0x28,0x15,0x63, +0xde,0x56,0x54,0xcb,0x0b,0x0b,0x37,0x86,0x86,0x8b,0xe4,0xa7, +0xec,0xe4,0x9c,0x8a,0x96,0xc1,0x67,0x2e,0x3b,0x49,0xcb,0x90, +0xa3,0x06,0xcc,0x49,0xcd,0xd1,0xe3,0x05,0xf5,0x21,0x8f,0x1d, +0xb1,0xd8,0x13,0x94,0x11,0x36,0x78,0xba,0xed,0xaf,0xb8,0x3a, +0xdb,0x98,0x8a,0xec,0x95,0x26,0xd8,0x8b,0x18,0x6e,0x97,0xb4, +0x70,0x75,0x6c,0x6a,0x8c,0xe0,0xea,0x70,0xc1,0xd5,0x09,0xaf, +0xb9,0x5a,0x17,0xae,0xad,0xa4,0x38,0xf7,0x75,0x8b,0x86,0x78, +0xfd,0xcb,0xd5,0xfa,0x95,0x4e,0x66,0xa6,0x5e,0x2e,0x34,0xbd, +0x96,0xbf,0x2d,0xbc,0x8d,0x57,0x0a,0x52,0x8a,0x16,0xe1,0x95, +0xb2,0x90,0x91,0x53,0x50,0xe8,0xa7,0x09,0x2d,0x4e,0xf5,0xf9, +0x73,0xe1,0x72,0x1a,0xce,0x1f,0x5d,0xe8,0x4b,0x86,0x62,0x14, +0xfa,0x7f,0xeb,0xeb,0x8d,0xff,0x5e,0x34,0xf3,0x7f,0xa7,0xd2, +0xd4,0xf7,0x16,0x0e,0xf6,0x71,0xfa,0x54,0x08,0x7d,0x54,0x0c, +0x96,0xbc,0x70,0xbc,0x2f,0xcb,0x54,0x9a,0xb8,0xd8,0x17,0xec, +0x5d,0xc5,0xe5,0xbc,0x94,0xd2,0x85,0x77,0x2b,0x4b,0x0a,0x33, +0x0a,0x8c,0x29,0x2d,0xb5,0xa4,0x80,0x19,0xee,0xd6,0x14,0xe7, +0x5f,0xcc,0x4b,0x4d,0x4d,0x8b,0x4b,0x11,0xef,0xb0,0x8b,0xa1, +0xac,0x02,0xdf,0x61,0xbb,0xf0,0x34,0x91,0x58,0x64,0x3d,0x8e, +0x9c,0xd2,0xd7,0x27,0xb8,0x73,0x3d,0x3c,0xf4,0xf9,0x47,0x8a, +0x1b,0xa5,0xe3,0x88,0x1f,0x70,0xf6,0x08,0xb3,0x2a,0x34,0xc2, +0xf2,0x2a,0x53,0xf2,0xf1,0x55,0x8a,0x23,0xb8,0x8b,0x14,0x3b, +0x74,0x29,0x02,0x8a,0x61,0xe2,0x8a,0x4b,0x5f,0x4f,0x1e,0xfd, +0x8a,0xa9,0x51,0x62,0xfe,0xe4,0x94,0xbd,0x9e,0x8b,0x71,0xe3, +0xd7,0xfb,0x0f,0x99,0x2a,0xa6,0x91,0x98,0x8b,0x16,0x21,0x80, +0x23,0x96,0x9a,0x5b,0xfc,0xef,0xc0,0x8c,0x5a,0xec,0x0d,0xca, +0x28,0x71,0x36,0x5f,0x3c,0x1b,0xde,0x7f,0x41,0x46,0x61,0xcb, +0xd9,0xf4,0xfb,0xbf,0x53,0x53,0x52,0x70,0x31,0x37,0x25,0x55, +0x9f,0xf7,0xff,0xde,0x7f,0x58,0x5a,0x68,0x5c,0xa8,0x7e,0xff, +0x39,0xc9,0xf9,0x62,0xc6,0x8e,0x5e,0x37,0x6f,0xc8,0x94,0x96, +0x1b,0x0f,0x8b,0xb0,0x2c,0xeb,0x22,0x0a,0xca,0x2d,0x35,0xfd, +0x83,0x28,0x28,0x76,0x38,0xa2,0x20,0x65,0xb8,0x88,0x38,0x59, +0x39,0x8b,0xaf,0x94,0xb4,0x13,0xcc,0xbe,0x3d,0x79,0xbd,0x01, +0x97,0x99,0x39,0x8c,0xfc,0xd6,0xcc,0x9c,0x37,0x11,0xbd,0x77, +0x16,0xef,0x27,0x72,0x8f,0xae,0xb6,0xe4,0x1e,0xe9,0xb3,0x0c, +0x56,0x72,0x17,0x3c,0x98,0xcf,0x85,0xc7,0x2f,0xe7,0x13,0x84, +0xbb,0xf0,0xe1,0x0b,0x2f,0xd6,0xf5,0x53,0xc2,0xda,0x8d,0x20, +0x67,0x20,0x99,0x29,0xb3,0x08,0xeb,0x1e,0x43,0xb4,0x59,0xde, +0xaa,0x2c,0xf3,0xee,0x70,0x9a,0xd9,0xa2,0x01,0x38,0x61,0x22, +0x4c,0x92,0x63,0xdd,0xa6,0xc4,0xb9,0x89,0x84,0x1a,0x85,0x49, +0x97,0xf4,0x68,0x47,0x17,0xd1,0xaf,0x31,0x45,0xf3,0x20,0x54, +0x2c,0xd1,0x75,0x7d,0x15,0xf5,0xba,0xbf,0x25,0xea,0x55,0x31, +0x94,0x95,0x40,0x2b,0x2e,0x8b,0xa8,0xd7,0x32,0x53,0xfc,0xdf, +0x75,0x10,0xeb,0xdb,0x24,0xc7,0x8d,0xdd,0x34,0xd7,0xc7,0x6b, +0xc6,0x03,0x43,0x64,0xaa,0x08,0x7b,0xcd,0x2b,0x35,0x25,0xde, +0x15,0xdf,0x88,0xb0,0xd7,0x3e,0x01,0x7e,0x03,0x06,0xfd,0x3f, +0xb2,0xde,0x3b,0x20,0x8a,0xe3,0xfd,0x1f,0xb7,0xc0,0x2d,0xcc, +0x29,0xa0,0x71,0xe1,0xee,0x18,0x8f,0x6e,0x03,0x7b,0x37,0x6a, +0x14,0x29,0x82,0xa2,0x48,0x13,0x7b,0xef,0x62,0xa2,0xc6,0xa8, +0x28,0x55,0xec,0xa0,0x52,0xed,0x25,0xb1,0x83,0x74,0xa4,0x37, +0x15,0xb1,0x77,0x4d,0xa2,0x29,0xa6,0x27,0x9a,0x5e,0xe7,0xf4, +0x59,0xfc,0xfc,0xe6,0x99,0x3d,0xd0,0xf7,0xef,0xfb,0x8f,0xb8, +0x77,0xbb,0xcf,0xec,0xed,0xce,0x3c,0x6d,0x5e,0xcf,0xeb,0xa9, +0x9a,0xa1,0xab,0xab,0x2f,0x28,0x39,0x5e,0x6a,0x65,0xf2,0xc1, +0xde,0x0e,0x1f,0x93,0xb2,0x9c,0x82,0xd7,0x7b,0xb9,0x04,0xf7, +0x72,0xff,0x49,0xcc,0xe2,0xd3,0x28,0xb1,0x79,0x9f,0x24,0xab, +0xb8,0xc2,0xf0,0x8d,0x5a,0x4f,0xbc,0xdd,0x7b,0x6d,0xe4,0xe4, +0x49,0x53,0xae,0x21,0xea,0x7a,0x67,0x7c,0x92,0xba,0xaf,0x7b, +0xa8,0x20,0x8d,0xbf,0x7c,0x75,0x5b,0x57,0xb3,0xa3,0x4f,0xd4, +0xe4,0xc1,0xdc,0x52,0x24,0x41,0x1b,0xda,0xe1,0x14,0xd1,0x06, +0xb8,0x70,0x17,0xbe,0xbf,0xea,0xc6,0x67,0xca,0x54,0x4e,0x21, +0x66,0x27,0xbc,0x5a,0xc4,0x2e,0x03,0xf9,0x37,0x43,0xfb,0x05, +0xe3,0xb7,0x59,0x32,0xe6,0x9d,0x5f,0x3b,0x6b,0xdc,0x68,0x59, +0xec,0x24,0xfc,0xb9,0x77,0x5a,0x44,0xc4,0xff,0x0a,0x68,0xa7, +0x05,0x44,0xbe,0xcc,0xdf,0x88,0x04,0xb7,0xf1,0xc8,0x87,0x70, +0x1d,0x78,0x89,0xeb,0xc0,0xe7,0xd4,0xb1,0x27,0xa9,0x57,0x6c, +0x23,0xa8,0x13,0x21,0xe0,0x2d,0xc7,0x61,0x21,0x58,0xbd,0x28, +0x04,0xdb,0xab,0xa9,0xcd,0x5f,0x36,0x39,0x62,0x11,0x16,0x82, +0x99,0xec,0x08,0x9b,0x01,0xc9,0x54,0x9e,0xc1,0x2f,0x5c,0x74, +0x45,0x30,0x6b,0xc0,0x03,0x39,0x96,0x15,0xf9,0xc0,0x25,0xd3, +0x0c,0xf5,0x41,0xdb,0xeb,0x6a,0xaa,0x0a,0x70,0x5b,0x72,0xcf, +0x6b,0x78,0x31,0x3e,0x68,0x4b,0xea,0x56,0x4a,0x8a,0x2a,0x0c, +0xea,0x83,0xd6,0x6c,0x1f,0xb1,0x2a,0x72,0xe2,0x84,0xf1,0x88, +0xec,0x38,0x90,0x9f,0x81,0xfb,0xda,0x2d,0xcf,0xd9,0x6b,0x61, +0x44,0xcf,0x3e,0xf8,0x9c,0x9b,0xe1,0xc5,0x5a,0x51,0x01,0x12, +0xbf,0x0f,0x91,0x0e,0xe8,0x5a,0x56,0xb5,0xf8,0x19,0xc2,0xb5, +0x74,0x59,0x35,0xce,0x67,0xb0,0x71,0xf4,0x4f,0x22,0xeb,0xcc, +0x7d,0x98,0xaa,0x6b,0x6f,0x7a,0x96,0x3a,0xf4,0x2c,0x55,0x07, +0xa3,0xa8,0xe6,0x64,0x9d,0xd9,0xb3,0x44,0xcf,0x41,0x87,0xae, +0x83,0xf9,0x36,0xdf,0xe2,0x0f,0x15,0x41,0x31,0x1b,0xde,0x74, +0xaf,0x54,0x5f,0x84,0x7f,0xd7,0x5b,0xc7,0x15,0x73,0x25,0x61, +0x73,0xb4,0x09,0x52,0x5d,0x71,0x41,0xce,0xc9,0x1c,0xb4,0x92, +0xdc,0x5a,0xf7,0x00,0x5b,0x5d,0x05,0xae,0x16,0x0d,0x75,0x7f, +0x4a,0x72,0x33,0xf2,0x2a,0xa9,0xc5,0xd7,0x64,0x54,0xd4,0xd4, +0xbe,0x81,0xae,0xdf,0xe8,0xe2,0x32,0x62,0x9b,0x59,0x26,0xa8, +0xcb,0x28,0x32,0xac,0x62,0x9a,0xee,0x4e,0x55,0x65,0x61,0x76, +0x51,0x46,0xfa,0x7e,0x74,0x50,0x6d,0x5d,0x74,0xb1,0xda,0x17, +0xf1,0x30,0x9d,0x20,0x31,0x7c,0xd3,0x9d,0x77,0xa8,0xc6,0x28, +0x72,0x3f,0xbb,0x60,0x99,0xd2,0x9b,0xc0,0x11,0x79,0x23,0xdb, +0xe2,0x07,0xe9,0x98,0x3a,0x7c,0xfe,0x07,0xd8,0x13,0x53,0x27, +0xfe,0x76,0xf8,0xbf,0x4a,0xd4,0xab,0xc9,0x44,0xe5,0xe1,0x5b, +0x33,0x14,0xf4,0xa1,0x2c,0xb6,0x0f,0x44,0x43,0x4f,0x2a,0x4d, +0x27,0xcf,0xb0,0xab,0xab,0xfb,0x17,0x2c,0x1a,0xda,0xd4,0x6a, +0x40,0x43,0x69,0x7f,0x42,0x3d,0xf6,0x91,0x69,0x4f,0x24,0x1b, +0xcc,0xb4,0x0f,0x47,0xd6,0xc5,0xff,0x3d,0x7b,0x7c,0xf5,0x73, +0x93,0xd4,0xa8,0x81,0x50,0xb8,0x4e,0xf5,0x0b,0x89,0x0d,0x9f, +0x13,0x17,0xf8,0x9c,0x78,0x42,0x8d,0x0f,0x88,0x99,0x71,0xbb, +0x81,0xda,0x39,0x11,0xe6,0x4e,0xf5,0x29,0x62,0x29,0xde,0x82, +0x4d,0x72,0x7c,0xa2,0xb9,0x97,0xcb,0x05,0xc3,0x29,0xff,0xd5, +0x92,0xfb,0xa2,0x48,0xe8,0x00,0x96,0xd4,0xe2,0x2c,0x49,0xdd, +0x93,0xbe,0x23,0x6d,0x0b,0x33,0xe0,0x92,0x2b,0x03,0x3d,0xeb, +0x10,0x97,0x25,0x8a,0xc8,0xa0,0xe0,0x82,0x0c,0x13,0x7f,0x0f, +0x80,0xc3,0x22,0x69,0x73,0x37,0x40,0x03,0x07,0x2c,0x60,0x22, +0x6b,0x25,0xb8,0x65,0x1f,0x31,0x1d,0xd5,0x5c,0x20,0x88,0x39, +0x43,0x4c,0x95,0x28,0x35,0x79,0x31,0x82,0xe0,0x56,0x2c,0x62, +0x78,0x8a,0xf9,0xbb,0xd8,0x21,0xea,0x4c,0x6c,0xd4,0x3a,0x93, +0xd6,0x08,0x3c,0x50,0x61,0x09,0xbb,0x0f,0xe7,0x66,0x15,0xbc, +0xae,0x33,0xd9,0x3e,0x06,0xb1,0x5b,0x81,0x77,0xcd,0x75,0x26, +0x09,0x9b,0x74,0x5b,0x76,0x23,0x76,0x2b,0x1f,0x71,0x3c,0xfd, +0x17,0x45,0x7a,0x0d,0xb4,0x62,0x31,0x5a,0x6a,0x5c,0x89,0xc8, +0xd2,0xfd,0xb4,0xd3,0xef,0x68,0x75,0x7f,0x24,0x30,0x4f,0x1e, +0xaf,0xfe,0x67,0x91,0x48,0xb3,0xfc,0x8a,0xfe,0x5e,0xa0,0x36, +0x5e,0xaa,0x2b,0x28,0x38,0x7b,0xf2,0x0c,0x0f,0x21,0xb6,0x8b, +0x17,0xde,0x56,0x57,0x51,0x05,0x5d,0xff,0x8e,0xc5,0x77,0x1b, +0xdf,0x6c,0x4d,0xd4,0x10,0x82,0x76,0x78,0x45,0x02,0xa2,0x66, +0xf4,0x0b,0x76,0x7e,0x82,0x96,0x84,0x76,0xf0,0x23,0x39,0xdc, +0x88,0x14,0xa1,0x11,0x19,0x23,0x62,0x86,0x72,0x3e,0x03,0xca, +0x30,0x46,0x31,0x87,0x28,0x1d,0x7a,0xe8,0x36,0x6a,0x4d,0xcf, +0x4d,0xb2,0x4c,0x3b,0x6c,0x27,0xbe,0xd4,0xb6,0x91,0x68,0x60, +0x85,0x69,0x0d,0xb5,0x57,0x08,0x9b,0x20,0x83,0x8c,0xec,0x57, +0x12,0x9f,0x12,0xa6,0x09,0x70,0x5b,0x8e,0xc9,0x88,0xd9,0xd1, +0xac,0x78,0x3f,0xcc,0x4d,0xa7,0x6e,0x8f,0x48,0x1c,0x8f,0x64, +0xc0,0x95,0xcf,0xbc,0xfc,0x32,0xc3,0x49,0xbf,0x35,0xd2,0xdb, +0x73,0xc2,0x80,0x0e,0x36,0x56,0x4c,0xbd,0x5f,0x59,0x55,0xc8, +0xbd,0xca,0x8c,0x3d,0x99,0x6a,0x7d,0xb2,0x8d,0xee,0x7e,0x75, +0x75,0x41,0x76,0x41,0xe6,0x9e,0x0c,0x51,0xe1,0xce,0x7f,0x07, +0xa2,0x67,0x84,0x62,0xe0,0x0f,0xe1,0x10,0x91,0x2f,0xc2,0xdc, +0x30,0x09,0xee,0xc3,0x26,0x4a,0xbf,0x20,0xa1,0x2a,0x1b,0x37, +0xb3,0x95,0x7f,0xd8,0xac,0x59,0xb0,0x7e,0x7d,0xd4,0x62,0xc3, +0xc4,0xcb,0xd3,0x7f,0xf9,0xf9,0x72,0xe5,0x95,0xbc,0xe8,0xb3, +0x0b,0x0e,0x19,0xd3,0x7e,0x10,0x65,0xa3,0x53,0x21,0x42,0xde, +0xa0,0x99,0xb2,0xf8,0x44,0x59,0x59,0xde,0x89,0x1a,0xa7,0x83, +0x9a,0x9a,0xdc,0x55,0xb3,0x66,0x2d,0x59,0x35,0xc5,0xc9,0x46, +0x6e,0x80,0x79,0x21,0x12,0xdc,0x83,0x74,0x39,0xfe,0x67,0x36, +0x97,0x2d,0xa4,0xed,0xb7,0x12,0x55,0xaa,0x5e,0x7e,0xb6,0x59, +0x33,0x77,0xdd,0xfa,0x65,0x0b,0x44,0xa2,0xff,0x67,0x4c,0xf4, +0xaf,0xcf,0x99,0x77,0xc4,0x98,0xfa,0xec,0x02,0x4a,0x9d,0x02, +0xf3,0xa8,0xd3,0x5a,0x22,0x87,0xb0,0x79,0x0d,0x92,0x72,0x0a, +0xbe,0x97,0x37,0xfd,0xc7,0xe6,0xb0,0x95,0x90,0x43,0x35,0xff, +0x47,0xd8,0x06,0xd6,0x9d,0x76,0x78,0x97,0x20,0x0b,0x7f,0x63, +0xe8,0x6f,0xb4,0xb3,0x33,0xa9,0x2d,0x58,0x1e,0x11,0x29,0x8a, +0x55,0xf9,0x35,0x33,0xf9,0x35,0x27,0xff,0xff,0xd7,0x6c,0x64, +0xdd,0xe5,0xdf,0x37,0x6b,0x66,0xaf,0x5b,0xa7,0x5e,0xf6,0x2b, +0x5e,0x56,0xa7,0x5e,0x86,0x3b,0x44,0xd6,0xeb,0x09,0x7c,0x42, +0x1d,0x1f,0x13,0xe6,0x4a,0xf5,0x53,0x88,0xd8,0xed,0x42,0x31, +0x0f,0x11,0xdc,0x3f,0x87,0x2d,0xa3,0x56,0xa3,0xb9,0x10,0xaa, +0x6f,0x45,0xcc,0xeb,0xe3,0x13,0x39,0xe1,0x4f,0xa5,0x15,0x61, +0x0b,0xbb,0xc2,0x3c,0x78,0xfb,0xe5,0x6c,0xc2,0x5c,0x70,0x7d, +0x98,0x37,0x35,0x1e,0xcb,0x09,0x7f,0xb7,0x7c,0x3b,0x02,0xbf, +0x75,0x15,0x1b,0x1c,0xcf,0xb7,0x48,0x73,0xd7,0xad,0x5b,0x32, +0xd7,0x30,0xee,0x72,0xf8,0xcf,0xbf,0x5c,0xbe,0x70,0xa3,0x78, +0x7d,0xee,0x5c,0xb5,0xff,0xd1,0x40,0xd1,0xff,0xe8,0x6c,0x75, +0x55,0xfe,0x59,0xec,0x7f,0x54,0x93,0x1f,0x35,0x6d,0xea,0xa2, +0x28,0xfe,0x20,0x9b,0x3e,0x25,0xb8,0xb9,0xfc,0x9c,0x3f,0xc3, +0xb9,0x82,0x2b,0xaf,0x37,0xcc,0x85,0xfe,0x2f,0xf9,0xfd,0x38, +0x50,0xdb,0x28,0x32,0x01,0xb7,0x4a,0x1a,0x6a,0xaf,0xaa,0x4f, +0x70,0x0f,0x97,0xd4,0x43,0x8e,0xe1,0xaf,0xe4,0x54,0x05,0xb5, +0x9e,0x44,0x66,0x2c,0x7e,0xcf,0x2c,0xe2,0xa6,0xf9,0x35,0x98, +0x7b,0x78,0xcf,0x85,0x41,0xcd,0x1d,0x2d,0xff,0xe1,0x2f,0x44, +0xd0,0x81,0x6f,0x36,0xd3,0x81,0x8f,0x57,0x45,0xf2,0x97,0x82, +0xbb,0x2f,0x78,0xf1,0x2d,0x39,0xfe,0x77,0x7e,0xf1,0x62,0x71, +0x71,0x77,0x7e,0x31,0x8f,0x6c,0xad,0xb0,0xf3,0x54,0x5d,0x0e, +0xe6,0x22,0xe2,0xbe,0x61,0xf3,0xd8,0x24,0x51,0x38,0x30,0x08, +0xe6,0x83,0x2b,0x6d,0xdf,0x44,0x98,0x8d,0x5c,0xa5,0xd8,0x4e, +0xfb,0x61,0xb3,0x34,0x3f,0x3a,0x7a,0xc5,0x62,0xc3,0xa4,0xcb, +0x33,0xf9,0x2f,0x2e,0xbf,0x9c,0x17,0x7d,0x66,0xfe,0x21,0xfe, +0x8b,0xfb,0x82,0x13,0xb6,0x4b,0x5b,0x7c,0xb2,0xf4,0x7c,0xde, +0x49,0x6c,0x97,0x56,0x9b,0xb7,0x72,0xce,0xec,0xc5,0x08,0x22, +0x37,0x17,0x24,0x1c,0x53,0x0b,0x12,0x02,0x20,0x27,0x42,0x14, +0x24,0x50,0xf9,0x63,0xf2,0xbf,0xb5,0x0a,0x01,0x62,0xc8,0x91, +0x7c,0x48,0x47,0x51,0xab,0x40,0x3b,0xda,0x12,0xc4,0x0b,0x64, +0x21,0x5e,0xe0,0x02,0x2c,0x0d,0xbf,0x1a,0x2f,0x75,0x51,0xd3, +0x5c,0x4f,0x93,0xb2,0x62,0xf7,0xc4,0x63,0x34,0x8c,0xfc,0xce, +0x95,0x19,0x02,0x3a,0x80,0xa7,0xa8,0xd0,0x81,0x00,0x33,0x74, +0xe0,0xfa,0xd9,0xda,0x93,0x35,0xfa,0x94,0xdd,0xbb,0x77,0xec, +0xda,0xfa,0x1b,0x77,0xec,0x05,0x7c,0x00,0x03,0xed,0x14,0x81, +0xde,0xfa,0x1b,0x7a,0x89,0x3d,0x5b,0x23,0x37,0xf1,0xa9,0x66, +0xae,0x62,0xdc,0xb3,0xf5,0xd8,0x30,0x3e,0x84,0x7b,0xdd,0xe8, +0xea,0xa7,0xb6,0xec,0xd9,0xf2,0x98,0xf2,0x8d,0x3d,0xdb,0xc0, +0x96,0x3d,0xdb,0x1a,0xf3,0x9e,0x6d,0x5f,0xdc,0x5b,0xaf,0x3c, +0x5e,0x63,0x65,0x36,0x9c,0x55,0x55,0xf9,0xdc,0x70,0xee,0xde, +0x83,0x7a,0xaf,0x13,0x62,0xaf,0x98,0x26,0x01,0x0b,0x44,0xb0, +0x9a,0x0e,0xb5,0x6d,0x21,0x7a,0x12,0x7f,0x37,0xc0,0x36,0x6e, +0x3f,0x77,0x8c,0x58,0x35,0x79,0xe2,0x84,0xa0,0x7b,0xba,0x78, +0xc4,0x8d,0xa1,0x96,0xe3,0xd1,0xf5,0x81,0xfc,0x74,0x6e,0x61, +0x53,0xee,0xe0,0x29,0xff,0x49,0x3b,0x3c,0x17,0x87,0xf7,0xec, +0x53,0x3d,0x43,0x57,0x5b,0x9f,0x5f,0x7c,0x9c,0x1b,0xd2,0x01, +0xcd,0xd0,0x21,0xee,0xfb,0x54,0x8a,0xa1,0x84,0x8a,0xed,0xc8, +0x35,0xaa,0x0b,0xb3,0xfc,0x9f,0xa1,0xb8,0xd3,0x52,0xde,0x3c, +0xd4,0xf6,0x91,0xab,0x23,0x27,0x06,0x07,0xdd,0xd1,0xc5,0x67, +0xc5,0xef,0xe4,0x43,0x25,0xa1,0xd3,0xc2,0x87,0x32,0x1b,0x6d, +0x31,0x54,0xcf,0xc5,0xdc,0x66,0x0b,0x38,0x66,0xf3,0x50,0xd4, +0xb8,0x0a,0x15,0x6c,0xda,0x6b,0xe8,0x7e,0xce,0xb1,0x5c,0x84, +0xee,0xbb,0x21,0x74,0xff,0x7b,0x01,0xdd,0x47,0x94,0xd2,0xe1, +0xdc,0xcc,0x3c,0x15,0xb7,0xef,0xbf,0x6e,0x86,0x8a,0xdb,0x77, +0x2b,0x23,0xfc,0xa3,0x7c,0xff,0x28,0x69,0xa8,0x8a,0xda,0x9f, +0x59,0x7a,0x5e,0xa0,0xf6,0xb1,0xd6,0x6c,0xd0,0x9c,0x7b,0xa6, +0x23,0xb4,0xbd,0x0b,0x81,0x6c,0x38,0xcf,0x5d,0x0e,0x2d,0xe6, +0x99,0x6d,0x60,0xf3,0x3d,0x53,0x09,0x96,0xa6,0xda,0x60,0x9e, +0xf9,0xc8,0x7d,0x8d,0x32,0xd7,0xd4,0x9b,0xda,0x77,0x24,0x5a, +0x5f,0x65,0x2e,0x26,0xbc,0x23,0x30,0xe1,0x5d,0x9a,0x73,0xee, +0x58,0xee,0xab,0x52,0xf2,0xab,0xab,0xae,0x84,0xdf,0xcf,0x47, +0xe7,0x84,0x55,0xd9,0xf6,0x87,0x1b,0xe6,0xbb,0x7f,0x04,0x17, +0xb2,0x75,0xd7,0xa1,0x9c,0xcc,0x73,0xc9,0x45,0xfa,0x6f,0xeb, +0x61,0x49,0x04,0xf7,0xd7,0x26,0xac,0x9d,0x15,0x39,0x45,0xad, +0x92,0xdb,0x99,0x90,0x14,0x2b,0x42,0xad,0x83,0x39,0x69,0xb9, +0xc5,0x86,0x86,0x7a,0x58,0x1c,0xf1,0x3d,0x0f,0x86,0x57,0xcc, +0x18,0xcc,0x83,0x03,0x5f,0x65,0x04,0x0e,0x13,0xa8,0xe6,0xd5, +0xcf,0x1e,0x3b,0xa7,0x16,0xe4,0x6d,0xfb,0xb5,0x1b,0xe6,0xd5, +0xcf,0x7e,0x94,0x8d,0x79,0xf5,0x1e,0x38,0xce,0x57,0x6a,0x5e, +0xfd,0x74,0xc6,0x99,0x94,0x5c,0xfd,0xb7,0xb5,0xb0,0x24,0xb2, +0x51,0xb3,0x2d,0x62,0xed,0xdc,0xa9,0xb3,0x22,0x6b,0x31,0xaf, +0x8e,0xd5,0x78,0x7c,0x9c,0xe4,0x03,0x67,0xd3,0xce,0x24,0xe7, +0xe9,0x1b,0x6a,0x61,0x71,0xe4,0xf7,0x9a,0xad,0x81,0x51,0x73, +0x86,0xf9,0x63,0x1a,0x5b,0xc0,0x15,0x30,0xfa,0x44,0x90,0x02, +0xd2,0xf7,0xa9,0x98,0x05,0xfc,0x6a,0x5c,0x8f,0xf1,0xf8,0xd5, +0x24,0xfe,0xd5,0xee,0x37,0x42,0xca,0x5f,0x08,0x9c,0x95,0xb5, +0xca,0x3b,0x44,0xf9,0x36,0x87,0xca,0xb3,0x89,0x56,0x19,0xc9, +0xff,0x7b,0x56,0x4e,0x4f,0xcf,0xda,0x99,0x89,0x45,0xec,0x0e, +0xba,0x0b,0x58,0xc4,0xde,0x7e,0x43,0x56,0xcc,0xb6,0x8d,0xf1, +0xd4,0x72,0x30,0x11,0xd0,0xb1,0x22,0xef,0xa5,0x52,0xcf,0x88, +0x89,0xf0,0x76,0x57,0xac,0x60,0xbf,0x74,0xb5,0xb4,0xa8,0x52, +0xcf,0xae,0xc1,0x54,0xcc,0x61,0x58,0x8e,0x06,0x6b,0x69,0xdb, +0xd0,0x81,0x4a,0x13,0xa6,0x41,0x7c,0x09,0x14,0xb1,0x6e,0x26, +0x4a,0xbe,0x52,0xda,0x73,0xd7,0xdb,0x8d,0x5a,0xcd,0x11,0xc5, +0x10,0xac,0x1d,0x56,0x43,0x8c,0xbf,0x6b,0xca,0xf4,0x53,0x5c, +0x24,0xd8,0x0f,0x6d,0x64,0x36,0x52,0xa2,0x0e,0x56,0x04,0x86, +0x49,0xff,0xff,0xa2,0x4e,0xfd,0x4f,0x04,0x0e,0x89,0xa2,0x4e, +0x74,0x87,0x94,0x00,0xb6,0x9d,0x76,0x0a,0x6a,0x39,0x88,0xa2, +0x9d,0x26,0x98,0x0f,0x02,0xd9,0x87,0x3c,0xae,0x0f,0x66,0x07, +0x35,0xcc,0x5f,0xe9,0x4f,0xed,0x86,0x93,0x8c,0x1b,0x15,0xb7, +0x0c,0xe5,0xab,0xf2,0x26,0x1f,0x35,0xa6,0x32,0x07,0xec,0x19, +0xc0,0xe8,0x66,0x29,0x72,0xed,0xaa,0xc5,0x33,0x0d,0x01,0x37, +0xa6,0x53,0xab,0x55,0x64,0x82,0x25,0x5b,0x4a,0xad,0xb9,0x13, +0xb7,0x45,0xbe,0x58,0x7b,0xfa,0x9e,0xf1,0xac,0xe6,0x5e,0xed, +0xbb,0x61,0xa1,0xb4,0x43,0x0f,0x72,0xc9,0x49,0x7b,0x8a,0x98, +0x5c,0x94,0xd5,0xca,0x32,0xa2,0x5c,0x23,0xd0,0xf6,0x3e,0x6b, +0xcb,0x3e,0x18,0x04,0x86,0x10,0xd6,0x53,0xda,0x32,0x74,0xda, +0x54,0xb0,0xe9,0x83,0x3b,0xbf,0xf5,0x15,0x45,0x67,0x0b,0xd3, +0xd3,0x70,0x47,0x99,0x47,0x2f,0x1d,0xbc,0xc8,0x46,0xd1,0x61, +0x41,0x1f,0x93,0xb0,0x35,0xe5,0x43,0x3e,0x8d,0x53,0xca,0xf4, +0xac,0x5b,0x03,0x0c,0xfc,0x4a,0x03,0x09,0xc8,0xb8,0xd0,0x55, +0xc4,0x30,0xd9,0x4d,0x41,0xca,0xaf,0x84,0x1d,0x78,0x79,0x8b, +0xbc,0xdc,0x47,0x16,0x4f,0x02,0x1b,0x68,0x6f,0xac,0x9d,0x77, +0xf9,0x4a,0x49,0xf9,0xa9,0x72,0x7d,0x2a,0xb7,0xc7,0x7b,0x36, +0x33,0xdd,0x4b,0xec,0x47,0xc8,0xfa,0xc1,0x60,0xac,0x42,0xa0, +0x86,0xef,0xf8,0x91,0x99,0xd1,0x6b,0x32,0xf8,0xe8,0xa8,0xe3, +0x62,0x2c,0xe7,0xe5,0x4e,0x27,0xb7,0xdd,0xe1,0xe0,0xcb,0x3f, +0xe0,0xaf,0x51,0x7e,0x2a,0xda,0x51,0x2f,0x93,0xa8,0xe1,0x2f, +0x7c,0xcf,0xdf,0x10,0xb6,0x5e,0x54,0x7d,0x20,0x4e,0xb2,0xf8, +0x75,0xd5,0x47,0x3b,0x5d,0x65,0x69,0x41,0xc1,0x89,0xc2,0xdd, +0xbb,0xf7,0x24,0xef,0x41,0x97,0xdc,0x1a,0xab,0x3e,0xfe,0x36, +0x57,0x7d,0x88,0x8a,0x93,0x9c,0x2c,0xee,0xa7,0x34,0x57,0x7d, +0x6c,0x0b,0x58,0x35,0x3d,0x38,0x3c,0xf0,0x36,0xf5,0x58,0x84, +0x28,0x4c,0x5c,0x0f,0x77,0x9b,0x2b,0x3f,0xde,0x5e,0x38,0xad, +0xd7,0x30,0x2b,0x3e,0xce,0x1b,0xa9,0xee,0xc7,0xe6,0x0a,0xdb, +0x4e,0x4f,0xb0,0x87,0xfd,0x37,0xe4,0x94,0x32,0x42,0x7e,0x46, +0x69,0x25,0xe9,0x09,0xab,0x27,0xbc,0x68,0xb8,0x2a,0x29,0x3e, +0x2c,0x9b,0x3a,0x56,0x90,0xd1,0xb0,0x4e,0xc2,0x42,0x88,0x8b, +0xf0,0x2b,0x82,0x7f,0xcc,0xfb,0x28,0xd7,0x33,0xef,0xfe,0x60, +0x60,0x6d,0xbd,0xc1,0x52,0x82,0xee,0x2b,0x07,0xfb,0x43,0x5b, +0xa3,0x0f,0xb3,0x49,0xd8,0xbf,0xc1,0xbc,0x89,0x92,0x62,0x79, +0xf8,0x5a,0xc6,0xbd,0x67,0x86,0x7f,0xbc,0x9d,0x25,0x08,0x5b, +0x38,0xbc,0x0b,0x0c,0x31,0xd6,0x4d,0xbb,0xf0,0x7d,0xd1,0xb5, +0xe3,0x77,0x45,0xd2,0x53,0x6c,0x9f,0x2c,0xd5,0xd5,0x7f,0x51, +0x78,0xe3,0xd4,0x2d,0xb1,0x9f,0xb2,0x95,0x7b,0xf1,0x4b,0xd4, +0xed,0x93,0x19,0x9b,0xf6,0x45,0x63,0xd7,0x07,0xb1,0x0f,0x39, +0x4d,0xf1,0xa4,0xfc,0xce,0x5f,0xbd,0x47,0xee,0x40,0x34,0x16, +0xcc,0xd1,0xce,0x33,0x09,0x56,0x04,0xf0,0x47,0xc4,0xbd,0xca, +0xff,0x12,0xd2,0xe3,0x9a,0x79,0x6b,0x0e,0x9f,0xcb,0xcc,0x57, +0x0b,0x02,0x76,0x84,0x3f,0xd4,0x6c,0xf3,0x5b,0x89,0xc5,0xcb, +0x77,0x75,0xf1,0xe9,0x71,0x3b,0x13,0x36,0x37,0x55,0x93,0x83, +0xe7,0xd2,0xf3,0x4a,0x0c,0xf7,0x44,0x35,0xc0,0x60,0x51,0xbd, +0xcc,0xd7,0x81,0x05,0x81,0xd5,0xa6,0xe4,0x17,0x8f,0x89,0x69, +0xd6,0x48,0x2c,0xd2,0x73,0xf3,0x20,0x4a,0x17,0x56,0x48,0xe5, +0x6d,0xfc,0xc0,0x26,0x8a,0x28,0x1e,0xec,0x43,0xaa,0xff,0x96, +0x80,0x22,0x1c,0x5e,0xc3,0x21,0xa2,0x72,0x82,0xa3,0xe3,0xc7, +0x3a,0xa0,0x0f,0x28,0x29,0xa3,0xdf,0xa5,0x0e,0xa9,0x84,0x7d, +0x72,0x49,0x66,0x32,0x73,0x01,0xee,0xfe,0x51,0xcd,0x4b,0xa2, +0xa4,0xf1,0x99,0x6e,0x3f,0x5f,0x3c,0x69,0x66,0x47,0x65,0x2d, +0xff,0x1f,0x0f,0xc7,0xe2,0x21,0xe6,0x8d,0x3e,0x1f,0x68,0x23, +0x44,0x77,0xc5,0xb1,0xef,0x4b,0x1e,0xc2,0x23,0xb7,0x30,0x56, +0xcd,0xbe,0x7a,0xa9,0xec,0xfc,0x69,0x84,0x95,0x65,0x50,0xf7, +0x97,0x84,0xf9,0xca,0x10,0xfc,0x5b,0x00,0x1c,0x10,0x5e,0xf8, +0xad,0x40,0x0d,0xec,0xb5,0x80,0xe0,0xff,0x58,0xb0,0xc6,0x86, +0x3f,0x96,0x8b,0xb0,0x8e,0xb6,0xb7,0x26,0x7c,0x66,0x21,0x69, +0xf6,0x52,0xa9,0xd7,0xd4,0x49,0xe0,0xda,0xc7,0x58,0x37,0x8b, +0xba,0x73,0xab,0xdb,0x66,0x46,0x10,0x18,0x7b,0x18,0xeb,0x67, +0x5b,0xb2,0x6e,0xff,0x5d,0x50,0xdb,0x32,0xa9,0x7c,0x9b,0x72, +0xc5,0xac,0xba,0x8a,0x82,0xbc,0xe3,0x05,0xa2,0x54,0x64,0x0f, +0xce,0x3a,0x4b,0x5d,0x65,0x71,0x41,0xfe,0x89,0xfc,0x5d,0xbb, +0xd3,0xd4,0xaa,0x8b,0xb6,0xba,0xf2,0x52,0xe7,0x5f,0xdf,0x98, +0x75,0x87,0xce,0x66,0x9d,0x4b,0xce,0xd7,0xff,0x5b,0x0f,0xdb, +0x22,0x1e,0x68,0xb6,0x06,0xad,0x9a,0x11,0x3c,0x25,0xf0,0xfa, +0x6b,0x5d,0xbb,0x75,0xd7,0xc1,0xb3,0xe9,0x78,0xc6,0x3d,0x3c, +0x03,0x67,0xdf,0x68,0x3e,0xfb,0xb8,0xb2,0xc5,0x62,0xaa,0xf2, +0xfc,0x5c,0x3e,0xda,0x9e,0x3d,0x82,0x77,0x48,0x03,0x16,0x38, +0x5a,0xde,0x89,0xbc,0x5d,0x7b,0xcc,0xa3,0xb5,0xc1,0xd1,0x7e, +0xc1,0xfa,0x8d,0xb8,0x4d,0xb8,0x42,0x77,0x1d,0x3a,0xc3,0x47, +0xcb,0x6b,0xae,0xaa,0xda,0x3a,0x61,0xd5,0xcc,0x49,0x53,0x03, +0xae,0x63,0x55,0x15,0x1f,0x25,0x87,0x7f,0xa3,0x56,0x55,0xb5, +0xd6,0x6c,0xf5,0x5e,0x38,0xa3,0xd7,0x68,0x3e,0x4a,0xe5,0xec, +0xba,0x0a,0xac,0x9f,0xc2,0x92,0xad,0x12,0x2e,0xfc,0x75,0xd9, +0x94,0x46,0x2d,0x9b,0x32,0x97,0x6c,0x25,0x6c,0xdd,0x7d,0x28, +0x3b,0x0b,0x4b,0xa7,0x9b,0x7f,0x0a,0x96,0x4d,0x45,0x06,0xde, +0xe4,0xb3,0x25,0x1e,0xcb,0xa6,0x9a,0x6f,0x7f,0xe4,0xc2,0xe9, +0xbd,0x46,0xf0,0x79,0xd2,0xa9,0x35,0x31,0x7d,0xad,0x65,0x47, +0x4c,0x4f,0xe4,0x8c,0x54,0xb1,0xa6,0x7b,0x72,0x9b,0x7c,0xaf, +0xa6,0xba,0x38,0xbb,0x28,0x53,0x65,0xce,0xc1,0xc8,0x52,0xec, +0x42,0x69,0x62,0x33,0x04,0x98,0x35,0x26,0x9e,0xaf,0x95,0xa3, +0x79,0x98,0x6e,0xc9,0xf6,0x59,0x29,0x0d,0x59,0x1e,0xe9,0x35, +0xd6,0xe8,0xfc,0x0d,0xd2,0xe8,0xc4,0x24,0x60,0xa6,0x4e,0x24, +0xe4,0xb8,0xd6,0x3e,0x3d,0x66,0x95,0x34,0x70,0xe6,0x78,0xb0, +0x1f,0x64,0xac,0x9c,0x7a,0xa7,0xaa,0xba,0x38,0xa7,0x44,0x6f, +0xc2,0x41,0xdb,0x10,0xd3,0x17,0xe2,0x0f,0x6c,0xd0,0xb2,0x0f, +0x4d,0x65,0x72,0x7a,0xaa,0x39,0x38,0xf0,0xd4,0x3d,0xb8,0x52, +0x5d,0x41,0x3b,0x30,0xc2,0xba,0x81,0x9b,0xae,0xba,0x1e,0xdc, +0x98,0x0e,0xbb,0xa5,0x37,0x4d,0x23,0x82,0xce,0x2f,0xcf,0x7b, +0x99,0xd4,0x6d,0x79,0x68,0xaf,0xe1,0x46,0xd7,0x3f,0xe2,0xb2, +0x36,0xa6,0xd0,0x0e,0xa3,0x49,0x49,0x66,0x59,0xbd,0x21,0xd7, +0x7b,0xb9,0xe4,0x3e,0xdd,0x07,0xde,0xea,0x66,0xac,0x8e,0xbc, +0x73,0xa9,0xaa,0x32,0xa7,0x4a,0xcf,0x47,0xe1,0xe2,0x6f,0x51, +0xb7,0x74,0x52,0x92,0x73,0x3e,0x1d,0x7f,0x4f,0x12,0x97,0xcb, +0xfd,0x9b,0x3a,0x70,0x67,0xed,0x63,0x61,0x04,0x39,0x26,0x48, +0xed,0xcf,0x79,0x47,0x49,0xfd,0x96,0x4f,0xee,0xe5,0x63,0x74, +0xf9,0x21,0x2e,0x8b,0x3a,0x5f,0x21,0x63,0xa1,0x53,0x3f,0x63, +0xd5,0x94,0x3b,0xb5,0xd5,0xa5,0x39,0x65,0x7a,0xbc,0xcf,0x8f, +0x4c,0x8d,0x72,0xfa,0xee,0x4c,0xa4,0x50,0xf0,0x02,0x77,0xdd, +0xfd,0x86,0xea,0xb2,0x9c,0xb2,0xf4,0xdd,0x3c,0x88,0xa1,0xee, +0x7f,0x91,0xac,0x98,0x1d,0xfc,0x16,0x8b,0x32,0xce,0xd7,0x0b, +0x61,0x3d,0x97,0x47,0xf4,0x1a,0x69,0x74,0xf9,0x35,0x2e,0x93, +0x5a,0x4f,0x20,0xc5,0x99,0xa5,0xb5,0x86,0x6c,0xef,0x77,0xa5, +0xee,0x33,0xfc,0xa0,0x93,0x17,0x97,0x7b,0xf7,0x42,0x75,0x79, +0x4e,0xa5,0x1e,0xe9,0xfa,0x3e,0x32,0x9d,0x97,0xd3,0xd5,0x58, +0xc8,0x0b,0x7a,0xea,0xee,0xf3,0xdf,0x9f,0x5d,0x91,0x91,0x9a, +0xa1,0x16,0x8f,0x7b,0x20,0x00,0xd8,0x8d,0x39,0xf2,0x67,0x80, +0x00,0xe0,0x38,0xd1,0xdf,0x92,0x3f,0x89,0x4b,0x86,0x7c,0x6e, +0x13,0xbb,0x2c,0x0f,0xeb,0x35,0xcc,0xe8,0xfa,0x17,0x3e,0x09, +0xc1,0xf2,0x7f,0xec,0x3c,0x3e,0x0b,0x7c,0x48,0x6e,0xd3,0xc7, +0xc0,0x5b,0x5d,0xf9,0xb3,0xb8,0xdb,0x50,0x55,0x95,0x53,0xad, +0x37,0x7d,0xce,0x9f,0x78,0x5b,0x62,0xfe,0xc3,0x07,0xa6,0x9d, +0x2c,0xd4,0x23,0x0b,0x3c,0xc2,0x4c,0xae,0x37,0x0f,0xb5,0xad, +0x5b,0xe1,0x26,0x4a,0x55,0x65,0x57,0xd6,0x05,0xc1,0x80,0x31, +0x98,0x3b,0xda,0xa6,0x22,0xcc,0xee,0x18,0x1e,0xfa,0xfa,0x48, +0xce,0xeb,0x03,0x10,0x13,0xf8,0x8d,0x99,0xf1,0x4c,0xed,0x86, +0x51,0x95,0x56,0x7b,0xcb,0x70,0xcf,0xd7,0x5f,0x82,0xce,0xcb, +0xfc,0xfb,0x03,0x31,0x56,0x4e,0xaf,0xb9,0x95,0x53,0x7b,0x5c, +0xf0,0xcd,0xee,0x48,0xd9,0xf6,0x17,0x0c,0xd5,0x55,0x5c,0xcd, +0xad,0xc6,0xed,0xda,0x17,0xff,0x91,0x81,0x90,0x4f,0x75,0x3a, +0x32,0x94,0x5b,0x09,0xf7,0x07,0x7f,0xb1,0xa5,0xee,0x57,0x56, +0x49,0x20,0x2d,0x99,0x04,0xb6,0x60,0x63,0xac,0x9b,0x77,0xf9, +0xaa,0x30,0x48,0x7b,0x52,0x05,0x8e,0xc3,0x01,0xe9,0x29,0x4a, +0x41,0xc7,0x8c,0x71,0x7b,0xe3,0x54,0x9a,0x0b,0x04,0xb1,0x9f, +0x4f,0xaf,0x68,0x34,0x9c,0x8b,0xf8,0x55,0x82,0x64,0x58,0x2a, +0x7a,0xf9,0x04,0x60,0x43,0x31,0x76,0x8c,0xfd,0x31,0x56,0x03, +0xe5,0x16,0xfc,0x13,0x1b,0x64,0x41,0xe0,0x4e,0x80,0x0e,0xab, +0x8d,0xdf,0x86,0x99,0xd4,0x61,0x0a,0x16,0x7b,0x3e,0x53,0x52, +0x71,0x74,0xe5,0x17,0xe4,0xbb,0x49,0xa7,0x96,0x47,0x09,0x0c, +0x25,0xd4,0xd1,0x95,0xc8,0xf0,0x45,0x7c,0x5a,0x38,0xbb,0x7f, +0x60,0xeb,0xdc,0xa4,0xf9,0x09,0xf3,0xf4,0xb7,0x13,0x2d,0x0f, +0x7f,0x9a,0xf5,0xe9,0xf7,0x86,0x47,0x4a,0xfb,0x50,0x76,0x75, +0xa3,0xf4,0xfe,0x8e,0xf7,0x77,0xac,0x31,0x6a,0xa9,0xc3,0x1e, +0x52,0xac,0xd8,0xb1,0x6f,0xcd,0xa4,0x0f,0x96,0x2c,0x9a,0xda, +0x6f,0x24,0x2a,0xcd,0x3a,0x75,0xe3,0xce,0x46,0x27,0x46,0xa1, +0xf3,0x03,0x7c,0xa6,0x7d,0x56,0x32,0xae,0x26,0x7b,0x17,0xc9, +0xcc,0x9e,0x7f,0x66,0x2f,0x29,0x4f,0x96,0xb3,0x72,0xa2,0x7d, +0xb5,0x99,0x28,0x95,0xb7,0x35,0xca,0x50,0xd6,0x86,0xea,0xf9, +0xbd,0xbc,0xc5,0x6f,0xd3,0x89,0xb6,0x2f,0xc6,0xa4,0x8b,0x69, +0x16,0x7c,0x26,0xc7,0xef,0xa5,0xd6,0xdf,0x92,0xad,0x7c,0x7e, +0x2f,0x22,0x48,0x1c,0xe3,0x2c,0xd0,0xb5,0x96,0xc6,0xa4,0x22, +0x04,0xef,0x7e,0xcd,0x62,0xb8,0xf1,0x6d,0x08,0x61,0x09,0x43, +0x20,0x16,0xba,0xa8,0xe0,0xdd,0x34,0xa4,0x11,0xc9,0x28,0x5d, +0x70,0xad,0xb1,0x8c,0xba,0x9c,0x22,0x18,0x33,0xde,0x93,0x37, +0xfd,0xfa,0xf2,0x05,0x81,0x21,0x9a,0x06,0x0c,0x3c,0xf9,0x08, +0xbf,0x90,0x7a,0xec,0x10,0x3d,0x8b,0xba,0x3e,0x26,0xf9,0x2b, +0xa6,0xf2,0xb8,0x8e,0xc7,0x9c,0xf2,0x95,0xa6,0x86,0x89,0x6c, +0xbd,0xd7,0xfd,0xe7,0x6c,0xb9,0xd7,0x95,0xf5,0x12,0xb4,0x5e, +0x1c,0xce,0xdf,0x85,0xc4,0x9d,0x83,0x86,0x4b,0x25,0xa5,0xa7, +0xce,0xeb,0x53,0xd3,0x33,0x77,0xf2,0x89,0xaf,0x03,0x83,0xae, +0x1a,0xdf,0x85,0x7d,0x5c,0x56,0x2c,0xb2,0xd4,0xc4,0x25,0xe0, +0xbb,0x28,0x4e,0xe7,0xf3,0x31,0x3b,0xe2,0x6b,0x09,0x76,0x42, +0x38,0xed,0x5c,0x20,0x6a,0x56,0xdc,0xa0,0x91,0xb6,0x77,0x25, +0xd4,0x3d,0x8b,0xcc,0x37,0x8c,0x7b,0x31,0x88,0xdc,0x28,0xfa, +0x20,0x3f,0xf0,0x98,0x71,0x0f,0xf3,0xd6,0xb2,0xc3,0xa6,0xfb, +0x32,0x96,0xd3,0x64,0x24,0xf2,0x49,0xaf,0xd3,0xdd,0x37,0x53, +0x75,0x65,0xe0,0x02,0xed,0x0e,0x1d,0x91,0xaa,0x2b,0xc5,0xf2, +0x68,0x41,0x46,0x61,0x95,0x21,0x67,0xcc,0xbb,0x02,0x4e,0xef, +0x67,0x74,0xf9,0x2e,0x36,0xb3,0x85,0xaa,0xab,0xc2,0x70,0x16, +0xa9,0xba,0x6e,0x55,0x21,0x5e,0x5e,0x8f,0xeb,0xbc,0x51,0xce, +0xd8,0x23,0x28,0xcf,0xbc,0xb8,0xe6,0x78,0xc0,0x97,0x67,0x76, +0x99,0x58,0xaf,0xb8,0x3c,0x69,0x07,0x7f,0xdc,0x29,0x2f,0x46, +0x9b,0x94,0x2b,0xd6,0x67,0x78,0xaf,0x77,0x8c,0x2e,0xbf,0x20, +0xd9,0x4e,0x4c,0x82,0x99,0xb1,0xb5,0x38,0xf3,0x7c,0xad,0x21, +0xc7,0x7b,0x85,0xd4,0xe3,0xf5,0x32,0x15,0xac,0x39,0xb8,0x48, +0xab,0x68,0x67,0x3e,0x5f,0xb9,0x2e,0xa2,0xae,0xbe,0x64,0x99, +0xd4,0x3d,0x0a,0x75,0x90,0xcb,0x1f,0xd4,0x75,0x2c,0x39,0xc7, +0x55,0x8f,0xc7,0x0c,0x1f,0xea,0xce,0xbd,0x0e,0x7e,0xe6,0x25, +0x5c,0xce,0xb4,0xf3,0x52,0x82,0xea,0xa5,0x38,0xe3,0xfc,0x05, +0xa1,0x9b,0x3c,0xf9,0x88,0x23,0x8c,0x2e,0xbf,0x71,0xf5,0xc2, +0x35,0x42,0x49,0x66,0x69,0x9d,0x18,0xaa,0xeb,0x0c,0x5f,0xe8, +0xe4,0x89,0x04,0x50,0x17,0xab,0x2b,0xb9,0x46,0x10,0x33,0xe3, +0x3e,0xce,0x8c,0x7f,0xa8,0xdc,0x0f,0x77,0xee,0xcf,0x12,0x45, +0x0f,0xb6,0x72,0x4c,0x33,0x61,0x69,0x5e,0x7a,0xbe,0xca,0x1d, +0x35,0x22,0x6a,0x9a,0xe7,0x58,0xa3,0xeb,0x17,0xa8,0x78,0x37, +0x0a,0xe2,0x71,0xa1,0x96,0xf3,0xcb,0x0d,0xa7,0x7d,0x56,0x4b, +0x43,0xe6,0x84,0x80,0x61,0xa0,0xb1,0x32,0xf2,0xb6,0x9a,0x7f, +0x49,0x4e,0x16,0x4e,0xf6,0x26,0x3d,0x7f,0x3c,0x1d,0xef,0xd7, +0x54,0x15,0xe6,0x14,0xea,0x33,0x52,0xcd,0x29,0x18,0x09,0x35, +0xa2,0xdb,0xbf,0x31,0x2a,0x75,0x14,0xee,0xf9,0x9b,0x0e,0xc1, +0x69,0x19,0xbc,0x58,0xeb,0x00,0xf8,0x9e,0x15,0xb0,0xef,0x03, +0x34,0xca,0x7b,0x90,0x27,0x27,0x7c,0xcd,0xe6,0x73,0x3f,0x30, +0x27,0x84,0x2d,0x19,0x04,0x0b,0xa0,0x0b,0x95,0x74,0x84,0x59, +0x33,0x2f,0x8d,0x0d,0xa2,0x29,0xd9,0x50,0x58,0x41,0x3b,0x74, +0x24,0xb0,0x52,0x5e,0xbf,0x0b,0xbb,0xf4,0xc6,0x24,0xe8,0xb6, +0xa4,0x1c,0x3f,0x96,0xf1,0x61,0xca,0x29,0x3d,0x3b,0x50,0xaf, +0xfc,0x15,0xc1,0x4e,0x69,0xe2,0xa7,0xf8,0x2f,0x85,0xf7,0xa6, +0x66,0x4f,0xd6,0x31,0x97,0xfc,0xaf,0x4e,0xd7,0x9c,0x3d,0xb0, +0xfb,0xd0,0xce,0x83,0x5b,0xd8,0xc9,0xbe,0xba,0x33,0x75,0x96, +0x2d,0x0b,0x76,0x10,0x4c,0xa5,0x0e,0x67,0x89,0xfc,0xe8,0xef, +0xa6,0x7e,0xe4,0x1b,0xf0,0xa4,0x0e,0xd3,0x09,0xe8,0xe4,0xcb, +0xb0,0x70,0x92,0x04,0xb9,0x90,0x88,0x2c,0x5d,0xbe,0x90,0x4b, +0x6d,0xda,0x70,0xd7,0x9d,0xda,0x0d,0x23,0xe3,0xaf,0x4e,0xfe, +0xeb,0xaf,0xab,0x75,0xd7,0xa9,0xed,0x58,0x02,0x0b,0x69,0x07, +0x0b,0x72,0xb1,0xf0,0xdd,0x69,0xd4,0x72,0x14,0x81,0xdd,0xb4, +0xd3,0x30,0x4c,0x3b,0xdb,0x5c,0x21,0x6c,0x3e,0x58,0xc0,0x1c, +0xf0,0xa3,0x86,0x89,0xe4,0xa2,0x9a,0xf3,0x47,0x0a,0xbb,0x29, +0x82,0xc2,0x8e,0xda,0x25,0x22,0x58,0x69,0x00,0xf6,0x95,0x81, +0x4a,0x96,0x2d,0xef,0xd9,0x93,0xb9,0x33,0x63,0x0b,0xeb,0xc5, +0xad,0x7a,0x4d,0x15,0x74,0xfb,0x23,0x36,0x63,0x03,0xaa,0xe1, +0x18,0xf1,0x26,0x72,0xb0,0xce,0x3b,0xdb,0x6f,0xa5,0x34,0x74, +0x6a,0x18,0xb8,0x0f,0x34,0x56,0xcf,0x78,0x54,0x79,0xa1,0x28, +0xef,0xbc,0x7e,0x99,0xd2,0xf1,0x65,0x3f,0x81,0x74,0xe2,0x92, +0x7e,0x20,0x50,0xc5,0x8e,0xcb,0xa9,0x68,0xe2,0x10,0x79,0xd2, +0x5a,0x57,0x5d,0x09,0xdd,0x7f,0xa3,0x6e,0x85,0x24,0xb7,0xc4, +0x70,0xc6,0xff,0x7d,0x69,0xd8,0xb4,0x70,0xf0,0x18,0x6c,0xac, +0x9a,0xf5,0xa8,0xfc,0x42,0x61,0x5e,0x89,0x7e,0xb9,0xa2,0x85, +0xfd,0x44,0xec,0x6d,0x0f,0xaf,0xbd,0x26,0x72,0xc5,0x94,0x9e, +0x21,0x3e,0x12,0xb4,0x59,0x15,0x48,0x5d,0x87,0x90,0xaa,0xf4, +0xda,0x1b,0x86,0xfb,0x63,0x7c,0x91,0xb1,0x6d,0x6c,0x17,0x68, +0x4f,0x5d,0xd3,0xf0,0x74,0x3b,0x18,0x51,0x7f,0xbd,0xa8,0xe6, +0x14,0xee,0x5d,0x0b,0xd7,0xb3,0x23,0xbc,0xad,0xab,0xab,0x86, +0xf6,0xcc,0xcb,0xb4,0x87,0x54,0x67,0xd6,0xdd,0x34,0x3c,0xf2, +0x46,0x29,0x2b,0x03,0x7d,0x07,0x1b,0xc7,0xfc,0xf4,0xa2,0x37, +0xd9,0x24,0x9c,0xda,0xca,0xf4,0xda,0xeb,0x86,0xfb,0xa3,0xb9, +0xfa,0x36,0x2e,0x0c,0x70,0x47,0x1d,0x3c,0xed,0xd2,0x9d,0xc2, +0xba,0x93,0x17,0xcc,0x80,0x69,0x2b,0x21,0x7c,0x68,0xfd,0x55, +0x84,0x5a,0x50,0xcb,0x41,0x98,0x9a,0x1e,0x84,0x4e,0x6d,0x3b, +0x4c,0x86,0x53,0xb7,0xee,0xe4,0x1e,0x12,0xd3,0xb5,0x5a,0x39, +0x1e,0x77,0xf2,0x7f,0x8c,0x57,0xb7,0xd9,0x93,0x36,0xe3,0xa6, +0x43,0x39,0x66,0x1f,0xee,0x8c,0x0e,0xc4,0xfc,0xf7,0x58,0x0f, +0x6e,0x1a,0xea,0xa6,0x5f,0xba,0x5d,0x58,0x83,0xc8,0x0a,0xb3, +0x6c,0xea,0xb0,0x8f,0x44,0x40,0xb1,0xfc,0x90,0xe9,0x4c,0x58, +0x2c,0x5e,0x3e,0xab,0xbc,0x2c,0x07,0x83,0xec,0xdd,0x6a,0x99, +0x9a,0xb3,0xae,0xa4,0x88,0x87,0xc8,0xb9,0x18,0xb7,0xba,0xea, +0x4a,0xcb,0x7b,0xff,0x24,0xe2,0xd6,0x43,0x98,0xd1,0x2c,0xd6, +0x7f,0x7b,0x11,0x96,0x84,0xf1,0xf8,0x38,0x68,0xed,0xcc,0xc8, +0xc8,0xc8,0x8b,0xba,0x84,0xcc,0x16,0x16,0x19,0xac,0x99,0xe4, +0x8f,0xf8,0xd2,0x45,0x58,0x1c,0xc6,0xe3,0xe3,0x77,0x78,0x7c, +0x3c,0xd2,0x8a,0xcd,0xe1,0x23,0xd4,0xe4,0x14,0xbe,0xae,0x82, +0x6b,0x8f,0x55,0x70,0x05,0x1f,0x15,0x36,0xef,0x9c,0x68,0x71, +0xe7,0xe4,0x5f,0xac,0x82,0x7b,0xbd,0x73,0x82,0x15,0x26,0x82, +0x89,0xb5,0x51,0xb3,0xc3,0x7b,0x5d,0xe4,0xe4,0xe0,0x48,0xf3, +0xce,0xc9,0xe6,0xb8,0x44,0xda,0xa1,0x98,0x54,0x51,0xdb,0xb5, +0xa4,0xaf,0x95,0x29,0x89,0xbb,0xde,0x3e,0x3c,0x00,0xb1,0x47, +0x80,0xbb,0xed,0x1c,0xb4,0x0d,0xd3,0x94,0x85,0xe4,0x40,0xb7, +0x57,0xdf,0x91,0x9f,0x7c,0x7b,0x64,0x93,0xe0,0x99,0xdc,0x5d, +0xee,0x81,0x9f,0x2f,0x97,0x37,0xd5,0x59,0x26,0xbe,0x3b,0x23, +0x69,0x9a,0x63,0x12,0xf3,0x60,0xb6,0x97,0x20,0x0c,0x32,0xa8, +0xc5,0x2f,0xc8,0xa3,0x62,0x60,0xce,0xac,0xe3,0x25,0x98,0x0c, +0xbb,0xd9,0x2c,0xcd,0x01,0x0f,0x7e,0xf1,0xcf,0xbe,0x5d,0xb3, +0xc9,0xc4,0x99,0x66,0x23,0xa3,0xec,0x7f,0x60,0xda,0x2f,0xc1, +0x5e,0xe0,0x4a,0x02,0x19,0x4e,0x90,0x3e,0xc6,0x87,0x75,0xa2, +0xf2,0xef,0x44,0xfb,0x0f,0x51,0x96,0xb3,0x47,0xb4,0x5d,0x11, +0xd1,0x76,0x27,0x4a,0x26,0x36,0xde,0x61,0xb1,0x82,0xbb,0xcd, +0xfd,0xbe,0x69,0x3e,0x72,0xb7,0x31,0x0f,0xad,0x0c,0x8b,0x26, +0x22,0x2a,0x38,0x4e,0x30,0xb1,0xd9,0x62,0x95,0x64,0x9a,0x0c, +0x9e,0x7f,0x06,0xc0,0x7d,0x96,0xcf,0xee,0xf3,0xd5,0xbe,0x06, +0x0e,0xcb,0x89,0x9f,0xf1,0xd5,0x3e,0x0e,0x72,0xc2,0xd8,0x22, +0xcc,0x6c,0x75,0xd6,0x34,0xdd,0x25,0x97,0x90,0x91,0xdf,0xb4, +0x26,0x99,0x9f,0xcd,0x5a,0x31,0x4f,0xbe,0xf0,0xdb,0xdd,0x20, +0x9f,0x43,0x08,0x75,0xfd,0x8b,0x44,0xc7,0xc7,0x24,0xea,0xb6, +0x50,0xfa,0x36,0x61,0x27,0xfb,0xeb,0xce,0xd4,0x5a,0x22,0xa0, +0xd3,0x71,0x3f,0xd9,0x97,0x74,0xa1,0xe9,0x03,0x62,0x0a,0x85, +0x72,0x39,0x2e,0x3d,0x36,0x99,0x5a,0x00,0x39,0xc2,0x83,0x96, +0x72,0xc3,0x91,0xb1,0x1b,0xa5,0x41,0x8b,0x67,0x83,0xae,0xa7, +0xb1,0x72,0xf6,0x4d,0x04,0x1b,0x14,0x88,0x62,0x28,0xee,0x76, +0x3a,0x43,0x2b,0x5d,0x75,0x99,0x65,0x53,0x18,0x1b,0x2a,0xb3, +0x75,0x30,0xef,0x0e,0x3b,0x02,0xd5,0x3c,0x32,0xc8,0x24,0x10, +0xaa,0xb0,0x97,0x73,0xb0,0x97,0x9e,0x29,0x09,0xf1,0x44,0xa7, +0x5e,0x6d,0xc2,0xb2,0xd1,0x6f,0xa8,0xd5,0x2d,0x32,0x41,0x13, +0xcd,0xde,0x43,0x14,0xd1,0x52,0x4b,0x6f,0xec,0xe2,0xc3,0x6f, +0xcf,0xfe,0x36,0x31,0x8d,0xf5,0x8e,0x21,0x8e,0x48,0x45,0xc0, +0xc3,0x98,0x13,0x54,0xfe,0x80,0x7b,0x3c,0x84,0x39,0xc2,0x0e, +0x2a,0xbf,0x2f,0x60,0x8f,0x0f,0x06,0xca,0x70,0x73,0x12,0xbb, +0xa9,0x51,0x1a,0x60,0x83,0x9c,0xf0,0x1d,0x5b,0xc2,0xa6,0x41, +0xc1,0x24,0x16,0x35,0x00,0x96,0x82,0x67,0xd3,0x27,0xa4,0xf1, +0xd5,0x97,0xc4,0x94,0x98,0x4c,0x8d,0x9d,0x89,0x1c,0xbf,0x30, +0x62,0xb3,0x8f,0x23,0xdb,0xcf,0xba,0x5f,0x85,0xd5,0xca,0x5b, +0xd4,0xe6,0x22,0x49,0x7a,0xdb,0x71,0x13,0x3b,0xc4,0x86,0x5e, +0x85,0x4d,0x8a,0x4c,0x2d,0x91,0x7c,0xc3,0x6a,0x00,0xb2,0x88, +0xf9,0xe1,0x5f,0xec,0xb7,0xbe,0x9d,0x98,0x3b,0xeb,0x21,0xbf, +0x4f,0x08,0x35,0xe4,0x89,0xbe,0x55,0x5c,0x3d,0x3c,0x43,0xf5, +0x90,0x6e,0xb2,0x24,0xcb,0xc1,0x84,0x7b,0x85,0xe7,0x90,0x51, +0xc5,0x8f,0xfc,0xed,0x0f,0xad,0x9a,0x62,0x89,0x40,0x9f,0x0c, +0xa4,0x96,0xee,0x44,0x4f,0xe5,0xc5,0x08,0xff,0x70,0xd8,0x4b, +0x42,0x21,0x53,0x7e,0xf4,0x93,0xe6,0xcf,0xd4,0x67,0x99,0x8f, +0xf7,0x26,0x35,0x50,0x9b,0xa7,0xe4,0x73,0x27,0x2d,0x12,0x75, +0x5d,0xd5,0xd2,0x0e,0x5f,0x92,0xbe,0x1f,0x9b,0x2e,0x8e,0x52, +0xfa,0x4b,0x8a,0x2f,0x58,0xf0,0xe8,0xee,0x6d,0x6a,0x3f,0x43, +0xd4,0xa0,0x7c,0x82,0x94,0x6a,0x23,0x3e,0x36,0x7d,0x3a,0x4a, +0x09,0xc1,0x2f,0xed,0xa8,0x76,0x81,0xf8,0xe2,0x29,0x7e,0xf1, +0xce,0xc7,0xa6,0xdb,0xa3,0x94,0x40,0xfc,0xc2,0x86,0xca,0x08, +0xce,0xef,0xf0,0x15,0x89,0x78,0x68,0xfa,0x91,0xca,0x63,0xc5, +0x59,0xa5,0x72,0x38,0x5b,0x19,0xf9,0xd0,0xf4,0xb9,0xb7,0xb2, +0x5a,0x52,0xbc,0x4c,0xf3,0xa8,0xfc,0x1f,0xd1,0x6e,0x92,0x2e, +0x96,0x15,0x15,0x9c,0xca,0xcf,0x48,0xcb,0xdc,0x26,0xa2,0x05, +0x83,0xae,0x12,0xbd,0xeb,0x0e,0xb1,0x99,0xa6,0x2b,0x84,0x07, +0x81,0xdc,0xbb,0x1e,0xb3,0x42,0xea,0xb3,0x3c,0xbc,0xe7,0x68, +0xa3,0xcb,0x73,0xb4,0xe0,0x31,0xdc,0x82,0x17,0x65,0x96,0xd4, +0x18,0xb2,0xb9,0x69,0xf7,0x9a,0xe1,0x0f,0x72,0x6f,0x63,0xe5, +0x94,0x7b,0xf5,0xdc,0x25,0x2e,0xd7,0xa3,0xc9,0xe6,0x36,0xe9, +0x2d,0x20,0xba,0x58,0xd1,0xe8,0x86,0xc7,0x50,0x76,0x88,0xea, +0xaa,0xc0,0x56,0x8e,0x08,0x96,0x11,0xab,0x12,0x43,0x90,0x6a, +0x04,0x12,0x1d,0x66,0xad,0xae,0x41,0x7a,0xd0,0xa7,0x31,0x02, +0xd8,0xe5,0x37,0xd0,0x38,0xe6,0x99,0xa8,0x44,0x7e,0x8d,0x24, +0xaa,0xe1,0x27,0x3d,0xbc,0x06,0xa9,0x41,0x02,0x49,0xe4,0x88, +0x1a,0x13,0xbb,0x29,0x5d,0xb8,0xad,0x22,0x89,0x84,0x16,0xd2, +0x0a,0xaa,0xcc,0x41,0xba,0x5a,0xea,0x91,0x47,0x44,0x3f,0x8f, +0x23,0x55,0x59,0xb5,0x66,0xd8,0x98,0xc0,0x10,0x41,0xab,0xd5, +0xe3,0x7c,0x07,0x71,0xad,0xa9,0x6e,0xee,0xa9,0xb0,0xb1,0xd7, +0xe8,0x21,0xc3,0x42,0xae,0xdc,0x54,0xd8,0x58,0x21,0x8a,0x55, +0x79,0x0a,0xf8,0x34,0xf8,0x92,0x28,0x0b,0x4d,0x6d,0x68,0xbb, +0xa5,0x64,0x99,0xa2,0x61,0x39,0x04,0x9b,0xdc,0xee,0x17,0x94, +0xb9,0x43,0xc5,0xda,0x35,0xfd,0x68,0x72,0x94,0x99,0x3b,0x12, +0x1a,0xa7,0xfa,0xc2,0x5b,0xfc,0xc9,0x59,0xfa,0x29,0x1b,0xee, +0x6a,0xe0,0x13,0xaa,0xe3,0xee,0xfa,0x22,0x66,0x90,0x45,0xaf, +0x04,0x3d,0x0f,0x6d,0x85,0x9b,0xf2,0x61,0x61,0x7a,0x31,0xf7, +0x1d,0x7c,0xde,0xc5,0x88,0xc5,0xf3,0x1d,0xa3,0xeb,0x73,0x1e, +0x97,0x25,0x63,0x47,0x41,0xfe,0xb0,0xab,0x45,0x7d,0x61,0xaf, +0x59,0x41,0xa0,0xef,0xc1,0xfd,0x97,0x7b,0x17,0xaa,0x4a,0x73, +0x4a,0xf5,0x66,0x2a,0xd8,0x9e,0xe0,0xac,0x7b,0x70,0x89,0x07, +0x34,0xe7,0xd3,0xf7,0x08,0xb2,0xd8,0xee,0x58,0xba,0x59,0x8b, +0x8d,0x18,0x62,0x32,0x63,0x04,0xf3,0x1b,0x0e,0x81,0x95,0x8a, +0x19,0x45,0xb5,0x62,0x88,0x81,0x7c,0x08,0xea,0x66,0x83,0xb2, +0x8b,0x54,0xd9,0x7d,0x66,0x4d,0x00,0xbd,0xf0,0x8d,0xea,0xaa, +0xcf,0x67,0x9f,0xd7,0xa7,0xa7,0x65,0xaa,0xb2,0x3b,0x23,0x63, +0xe5,0xf9,0xec,0x12,0xb3,0x53,0xd1,0x1d,0x37,0xcc,0x50,0xb6, +0x55,0x8c,0x5a,0x03,0x69,0x23,0x58,0xeb,0x2c,0x8f,0x15,0xa6, +0x97,0xd4,0xa9,0x53,0x22,0x6a,0xb2,0xd7,0x48,0xa3,0xdb,0x73, +0xf4,0xc1,0x90,0xb4,0xb0,0x28,0x03,0xa7,0x04,0x1f,0xd4,0x6b, +0xf6,0x78,0xd0,0x75,0x17,0x3e,0x51,0x55,0x19,0xbf,0xfd,0xb4, +0xd4,0x0c,0x84,0x45,0x7a,0xa2,0x5b,0x77,0xb9,0x0a,0x6f,0x3f, +0x35,0x1d,0xeb,0x25,0xbb,0x80,0x83,0x4a,0x5a,0x68,0x13,0x9b, +0xa1,0x52,0xdb,0xbe,0x7a,0x42,0x84,0xf8,0xdc,0x31,0x51,0x7c, +0xc6,0x4d,0xf6,0x1a,0x61,0x74,0xfd,0x25,0x36,0x53,0x34,0x63, +0x89,0x13,0xe4,0x78,0x62,0x0c,0xf4,0x28,0x3d,0x67,0xf1,0x31, +0xba,0x61,0x09,0xe6,0x25,0x3e,0x46,0x99,0xfa,0x88,0x30,0x02, +0xf3,0xd0,0x3d,0xbc,0xcc,0x23,0xbb,0x17,0x8e,0xdc,0xd9,0x10, +0x5d,0x92,0xb8,0x74,0x6a,0xdd,0x40,0x9a,0x45,0x9f,0x1b,0x23, +0x42,0x45,0x7e,0xe7,0xae,0xcf,0x62,0xb1,0x10,0x2e,0xee,0xd5, +0x06,0xa2,0xca,0x15,0xd3,0x99,0xdf,0x3b,0x3e,0xfa,0xc8,0x7b, +0x17,0xf9,0x9d,0x96,0x99,0x6e,0x12,0x1e,0xbe,0x3c,0x6c,0xa8, +0x2e,0xcd,0x2e,0xc5,0x20,0x8f,0xda,0xcd,0x24,0xac,0x1d,0xb5, +0x28,0x44,0x79,0x45,0xe9,0xe8,0x8d,0x8e,0xa1,0x2e,0x3f,0x13, +0x7c,0x30,0x3c,0x78,0x54,0xef,0xad,0xc7,0xac,0x40,0xea,0xee, +0x4d,0x52,0xcd,0xce,0x2c,0xbf,0xa3,0xc6,0x9a,0xb2,0x6c,0xbc, +0x23,0xbd,0x7a,0x47,0x76,0xa6,0xca,0x37,0xae,0x8f,0x92,0x7a, +0x2f,0x8f,0xf0,0x7a,0xdb,0xe8,0xfa,0x9b,0xf8,0xa9,0xe8,0x94, +0x0b,0x6f,0x16,0x39,0x20,0xf1,0x96,0xba,0xcf,0x1a,0x07,0xba, +0xae,0xea,0x4f,0xe5,0x2b,0x0c,0x6f,0xa9,0x0b,0x17,0x29,0xc2, +0x57,0x95,0x12,0xb0,0x1b,0xba,0xf5,0x42,0x70,0xf3,0x4f,0xe5, +0x1e,0xfd,0x45,0xc1,0x2c,0xd9,0x63,0x79,0xb8,0xd7,0x10,0xa3, +0xeb,0x9f,0xb1,0xd4,0x7d,0x29,0x29,0xad,0x17,0x3f,0xdf,0x63, +0x66,0x00,0x38,0xb8,0xa1,0xc0,0xc6,0xea,0x0a,0xee,0xb3,0x8a, +0xd9,0xb4,0x49,0x44,0xef,0x8f,0xae,0xf1,0x4f,0xca,0xf1,0x03, +0x21,0xd6,0x59,0x15,0x6b,0x1f,0x9b,0xa5,0x96,0xaf,0x72,0xc9, +0x25,0xcd,0x92,0xbb,0x73,0xc9,0x83,0x79,0xec,0xca,0x1f,0xe2, +0x4e,0xe1,0xbe,0x6e,0x53,0x23,0x5b,0x75,0x0c,0x77,0x1c,0xc3, +0x55,0x1d,0xa3,0x32,0xbb,0x52,0x9f,0xb1,0x27,0xbd,0x39,0x42, +0x7e,0x74,0xad,0xa6,0x02,0xf9,0xad,0xd3,0xd5,0x08,0xd9,0x45, +0x1d,0xc3,0xa1,0x79,0x0c,0xc1,0xe2,0x65,0xf9,0x61,0x41,0x3a, +0xc6,0xf5,0x3e,0x2b,0xa4,0x7e,0x51,0x91,0x9e,0x3c,0x14,0xff, +0x19,0xdd,0x64,0x6a,0xd9,0x99,0xc7,0xe8,0xc5,0xd5,0x7c,0x9a, +0xbd,0x27,0xf5,0x9c,0x2d,0x56,0x49,0x25,0xae,0x92,0x32,0xb1, +0x4a,0x32,0xd5,0x9f,0xe1,0x82,0xd1,0x03,0x9f,0x66,0xe6,0x31, +0x45,0xbb,0x2c,0x9c,0xc9,0xed,0xf8,0x63,0xa7,0x8e,0x1f,0x13, +0xb6,0x4e,0xa5,0x43,0xa6,0x2e,0x5d,0x5e,0xd3,0x20,0x53,0xdb, +0xa5,0xe4,0x35,0xf9,0xb1,0xfc,0xf2,0x25,0x19,0xbb,0x58,0x7a, +0xd9,0x9b,0x28,0xa1,0x40,0xe5,0x04,0x6e,0x2a,0xa3,0xd9,0x4a, +0x68,0xa0,0x9d,0x8f,0x10,0xdc,0x8f,0x5c,0x18,0x82,0x3e,0x6c, +0x3c,0xf7,0x61,0x0f,0xf8,0x42,0xb6,0xf0,0x61,0x2d,0xd1,0x87, +0x0d,0x52,0x7d,0xd8,0x6b,0xc2,0x87,0x5d,0x60,0x6e,0x65,0x52, +0xa9,0xb6,0x32,0xe1,0xde,0xec,0x74,0xf4,0x66,0xb9,0x0b,0xbc, +0x68,0x12,0xd2,0x55,0x6e,0x15,0x64,0x62,0x13,0x4c,0x92,0x2f, +0x75,0x79,0x4e,0xbe,0x32,0x69,0xae,0x6a,0x20,0x18,0x4a,0xa8, +0xc3,0xfa,0x66,0xf0,0xad,0x69,0x3f,0x0f,0x70,0x1d,0xbe,0x20, +0x4a,0x1f,0xb2,0x44,0x09,0x96,0x13,0xbf,0xe2,0xf6,0x3c,0x02, +0xce,0x85,0xb0,0xc5,0x43,0x60,0x3e,0x6d,0xff,0x80,0xd0,0xf6, +0x77,0x44,0x25,0xfe,0x10,0xee,0x5f,0xdb,0x7f,0x40,0xa8,0xdd, +0x7f,0xa4,0x87,0xa2,0x93,0xa9,0xfe,0x57,0x92,0x54,0x0f,0x9d, +0x08,0x37,0xf2,0x41,0xd4,0xe9,0x30,0x56,0x24,0xec,0x0d,0x61, +0x7b,0x35,0x4a,0x27,0xb8,0x21,0xd7,0xce,0x78,0x5a,0xdc,0x90, +0x9b,0x9f,0xab,0xcf,0x4a,0xdb,0xbf,0x73,0x6f,0x12,0x1b,0xdf, +0x5d,0x57,0x5b,0x09,0x3e,0xdf,0x47,0xa7,0xc5,0xec,0xdc,0x40, +0xdd,0x7f,0x23,0x6c,0xd2,0x25,0x65,0x4a,0x28,0x0b,0xd3,0x6c, +0x0a,0x0c,0x9b,0x09,0xbd,0xfd,0xa8,0xb3,0x3f,0x99,0xd8,0xdc, +0x6e,0xaf,0x27,0x36,0x6a,0xdd,0x1b,0xae,0x0a,0x2b,0x94,0x6b, +0x66,0x3c,0x2d,0x68,0x38,0x9b,0x9f,0xad,0xdf,0x9b,0xca,0x85, +0x6d,0x66,0x41,0xfd,0x51,0xd5,0xfb,0x7e,0x86,0xc2,0x62,0xb0, +0xaf,0xda,0xe6,0x94,0x63,0xc7,0xb3,0x4e,0xed,0x3a,0xab,0x67, +0x93,0xea,0x95,0x29,0x11,0x5c,0x6a,0x62,0x48,0xf8,0x5c,0xe8, +0x3d,0xc1,0xca,0x94,0x3f,0x1c,0x69,0xff,0x13,0xbd,0xb6,0x58, +0x7d,0x37,0xa6,0x97,0xb4,0x6d,0xf0,0x80,0xed,0x03,0x1d,0x53, +0xc3,0x90,0xe4,0xc8,0x4f,0x19,0x20,0x29,0x9d,0xd9,0x36,0xac, +0x27,0xd5,0x0a,0x9e,0x13,0x6a,0x64,0x24,0xab,0xe6,0xba,0x61, +0x9f,0xaa,0xd1,0x3f,0x49,0x44,0xb4,0x46,0x33,0x2a,0x34,0x25, +0x2e,0xbe,0x19,0x15,0x9a,0x5e,0x7d,0xcd,0xb0,0xff,0x53,0x55, +0xaf,0xc7,0x49,0xe0,0x80,0x94,0xc8,0xd6,0xdc,0x5c,0x20,0x2a, +0xf4,0x64,0x33,0x2a,0x54,0xab,0x62,0x4d,0x85,0x4d,0x32,0x83, +0x5b,0x05,0x1c,0x24,0x53,0x20,0x8d,0x55,0x64,0x6b,0x9c,0xe4, +0xb2,0x72,0x9c,0x3f,0xfa,0xd9,0xd4,0xad,0x82,0xd4,0x50,0x8f, +0x52,0xae,0x51,0xd0,0xf8,0x58,0x1b,0xab,0x55,0x69,0xf5,0xaf, +0x4a,0xf1,0xe6,0xcc,0x80,0xd1,0x01,0x2a,0x60,0xb4,0x8b,0x99, +0x47,0x23,0x01,0xf1,0xa0,0xc7,0x2a,0x32,0x6b,0xae,0x1a,0xb2, +0x5a,0x30,0xa3,0xee,0xab,0xc6,0x8d,0x19,0x62,0x1c,0xf5,0x13, +0x37,0x83,0x58,0xfe,0xdc,0x7c,0xcb,0x95,0x57,0xde,0xc4,0x8c, +0xca,0xf3,0xb9,0xfa,0xe8,0x4b,0x04,0xba,0x44,0xfb,0x06,0x72, +0xa4,0xba,0x02,0x51,0x25,0xda,0xe6,0x16,0x1b,0xd0,0x9f,0x7f, +0xc2,0x9d,0x12,0x0f,0x3e,0x20,0x75,0xf9,0x97,0x20,0x9b,0xb5, +0x18,0x81,0xfb,0xf0,0xa3,0x7f,0xc4,0xbb,0x88,0x4b,0xa0,0xd6, +0x6e,0x04,0x01,0xa9,0x48,0x64,0x8d,0x92,0x17,0x04,0xb6,0x10, +0x59,0x6b,0xd5,0x6a,0x0d,0x81,0x57,0xa9,0x29,0xe7,0x37,0xde, +0xfd,0xb5,0x6d,0x46,0x90,0x6f,0xcb,0xb3,0x3e,0x10,0xf4,0x59, +0x22,0x3e,0x0a,0x1f,0x2e,0xf6,0xa7,0x78,0x6a,0x3d,0x91,0x1c, +0x56,0xd9,0xb1,0x55,0x64,0x8c,0x84,0x0f,0x79,0xbe,0x40,0xc6, +0xd4,0xcc,0x34,0xa3,0x5c,0xb9,0xeb,0xec,0x82,0x94,0xe3,0x2d, +0xe4,0xcb,0xe3,0x88,0x76,0x1b,0xb2,0x81,0x44,0xb0,0x41,0x11, +0xa2,0xd9,0x91,0xa7,0x04,0x99,0xae,0x32,0xf3,0x92,0xa8,0xc3, +0xcf,0x04,0xba,0x4a,0x5a,0xcd,0x7f,0x69,0xbf,0x65,0x7c,0xbe, +0x2f,0xe9,0xa2,0xee,0xfd,0x0f,0x54,0x72,0xc7,0xdf,0x21,0x4a, +0x66,0x87,0x1b,0xca,0x09,0xbc,0xc3,0x78,0x18,0x69,0x6e,0xc5, +0x93,0x03,0x77,0xb1,0xe6,0x87,0x76,0xb0,0x25,0xf8,0xbf,0x29, +0x84,0x52,0x2d,0x31,0x3d,0x67,0x92,0x7c,0x51,0x19,0xc9,0x9d, +0xe4,0x2d,0x92,0xda,0xb5,0x70,0x1c,0x5f,0x88,0x7f,0x5e,0xad, +0xbb,0x51,0xb4,0x2e,0x67,0x0e,0xee,0x8a,0xf7,0x84,0x3e,0x62, +0x35,0x9e,0xe1,0xab,0xf1,0x8c,0xda,0x4e,0x69,0xc5,0xf4,0x69, +0xf3,0x57,0x84,0xe3,0x8e,0xfd,0x48,0x24,0x99,0xfd,0x58,0x8e, +0x63,0x25,0x3e,0x70,0x99,0x4a,0x79,0x64,0xec,0x3a,0x7f,0x47, +0xd3,0xcf,0x54,0xf7,0x7f,0x04,0x29,0x86,0xef,0x51,0x39,0x82, +0x50,0x8b,0x07,0x04,0x8a,0xf8,0x82,0xcf,0xf0,0x85,0xe3,0xd4, +0xa6,0x35,0x61,0xad,0x81,0x10,0xea,0x5a,0x44,0xd6,0x65,0xcf, +0xa5,0x9d,0x13,0x09,0xb2,0x9e,0xd4,0xf2,0xef,0x8f,0xfa,0x40, +0x3e,0x95,0x7f,0x22,0x66,0x53,0x9c,0x9b,0x91,0x57,0x61,0x38, +0xe3,0xbb,0x5a,0x7a,0x67,0xf9,0x34,0xcf,0x00,0xa3,0xcb,0x17, +0xb1,0xdc,0x83,0x6e,0x51,0xf2,0x79,0xe9,0x3c,0xdc,0x3f,0xe9, +0xcb,0x63,0xc8,0x39,0xa1,0xe0,0x38,0xd8,0x58,0x31,0x85,0x92, +0xf6,0x84,0x2b,0xb2,0x0c,0xd4,0x95,0xb6,0xba,0xfb,0xd5,0x3c, +0xd0,0x2f,0xc0,0xbc,0x48,0x06,0x72,0xa0,0x5b,0x62,0x26,0xd7, +0xfd,0xaf,0x98,0x8c,0xd8,0x1d,0x1b,0x91,0x09,0xde,0x92,0x10, +0xe1,0x87,0xa3,0xfc,0xd1,0x51,0x33,0x7a,0x70,0xf9,0x9f,0x21, +0x3a,0xb1,0x25,0xd3,0x98,0x9b,0x91,0x5f,0x2a,0x5a,0x7e,0xbe, +0x3d,0x27,0x5c,0x95,0x7f,0xaf,0xb2,0xaa,0x00,0xe1,0x1c,0x7c, +0x8c,0x4c,0xa4,0x2c,0xb0,0xd1,0x3d,0xa8,0xae,0x2e,0xcc,0x2e, +0xc8,0xd8,0x9d,0xae,0x8e,0xd1,0x56,0x8c,0xf1,0x27,0x77,0x4a, +0xb0,0xb9,0x8b,0x18,0x83,0xba,0x3e,0x20,0xfc,0xb6,0xa9,0xa3, +0x03,0xa9,0x2a,0xca,0x29,0xcc,0xc0,0x92,0x45,0x3c,0xd5,0x4a, +0x9c,0xfa,0x2f,0x57,0xab,0xcd,0x25,0x59,0x71,0x58,0x92,0x35, +0x85,0xb4,0x84,0x27,0xb0,0x97,0xca,0xe1,0xe4,0xcd,0xb8,0x5d, +0xf3,0xf2,0x53,0x84,0xa1,0x87,0x0e,0x57,0xd9,0xe1,0x7a,0xf2, +0xf7,0x66,0x1b,0x46,0xdb,0xff,0xc3,0x5f,0x33,0xaa,0xe0,0x9a, +0x3c,0xae,0x82,0x17,0x63,0x87,0x3c,0x39,0x91,0x7a,0x0c,0x42, +0x02,0x7b,0x1f,0xd3,0x72,0xb2,0xb9,0x27,0x35,0x6c,0x25,0x35, +0xf9,0x51,0x91,0x53,0x04,0x92,0x01,0xd9,0xaa,0xf9,0xd5,0x9e, +0xf2,0x25,0xc5,0x36,0x94,0x3a,0x59,0x13,0x84,0xd7,0x46,0x23, +0xf4,0x64,0x51,0x18,0xaa,0xd6,0x15,0xf2,0x46,0x6a,0xfc,0x83, +0xf8,0x3b,0xb2,0x77,0xfe,0x91,0x59,0x1b,0xae,0xeb,0xdd,0xce, +0x91,0x75,0x67,0xe7,0x1e,0x36,0xee,0x61,0x6d,0xea,0x91,0xfb, +0x79,0x35,0x4c,0xa6,0x4e,0xbb,0x88,0xfc,0x60,0x1a,0x3b,0x7d, +0x11,0x4e,0xfe,0xd2,0xd4,0x8f,0xb0,0xd3,0x70,0x9f,0xea,0x8e, +0xa8,0xf0,0x79,0x53,0x3f,0xb8,0x41,0xe5,0x63,0x44,0xe9,0x48, +0x3b,0xed,0x25,0xca,0x7c,0xda,0x69,0x3f,0x51,0x96,0xc8,0x48, +0xb1,0x1b,0x9b,0x10,0x8b,0x25,0x6c,0x48,0xe0,0xbb,0x1c,0x29, +0xfe,0x5d,0xff,0x8e,0xcb,0xc2,0x2d,0x26,0x74,0x24,0x5a,0xf8, +0xfd,0xdd,0x66,0xf9,0x83,0x0e,0xf9,0xfd,0xef,0x5d,0xa9,0xae, +0xcc,0xa9,0xc6,0xb0,0x88,0x7a,0x1c,0x24,0xc8,0xda,0x2b,0xac, +0x6d,0x37,0xc1,0xeb,0xcf,0x23,0xac,0xbb,0x3c,0x9c,0x30,0xf2, +0xd5,0xb1,0xf3,0x32,0xec,0x64,0x16,0x2c,0xab,0x11,0x9e,0x28, +0xdd,0x4c,0xf7,0x88,0x00,0x0a,0x24,0x63,0x9b,0xc8,0x21,0xba, +0xaa,0xaa,0xae,0xac,0x9b,0x39,0x9f,0x1b,0x9f,0xb8,0x7d,0x97, +0xe5,0x91,0x5a,0xcc,0xe7,0x3e,0xf2,0xf5,0x91,0xa0,0xf5,0xfa, +0xb1,0xa1,0x83,0x8d,0x21,0xdf,0x26,0x51,0x0f,0x2d,0x49,0xab, +0xbd,0x2d,0xba,0x1a,0x83,0x11,0xf3,0xb8,0xed,0xb0,0x6a,0xf8, +0x76,0x4e,0xfd,0xf1,0x3a,0x6a,0xf7,0x98,0xc0,0xdb,0xba,0x8a, +0x6b,0xb9,0x35,0x58,0xc2,0x84,0x28,0x01,0x6e,0x14,0x2b,0x91, +0xf5,0x03,0x39,0x8d,0x34,0xf0,0x96,0xa0,0x91,0xb4,0x4c,0x68, +0x61,0x8f,0x2a,0xcc,0x2c,0xae,0x30,0xd4,0x8c,0x99,0x2d,0x0d, +0x5d,0x19,0x19,0x14,0x64,0x9c,0x70,0x87,0xba,0x95,0x93,0xc2, +0x72,0x43,0xb5,0xf7,0x2c,0xa9,0xfb,0xa2,0x30,0xaf,0x3e,0xc6, +0xda,0xe9,0x75,0xb8,0x47,0x5f,0xaa,0x37,0xbd,0xa3,0x95,0xb1, +0x6d,0xc3,0xae,0x6d,0x02,0x11,0x50,0x5d,0x91,0x5f,0x7c,0xb2, +0x04,0x13,0xc7,0x82,0xdf,0x17,0x25,0xbb,0x30,0x8b,0xf8,0xac, +0x37,0x18,0x4c,0x0a,0x32,0x4b,0xb8,0x70,0x1f,0x2e,0x7c,0x55, +0xe4,0x84,0x20,0xe4,0x13,0xa1,0x6e,0xf7,0x08,0x17,0x3e,0x86, +0x0b,0x5f,0xac,0x0a,0xaf,0x35,0x0b,0xef,0xc7,0xe3,0x29,0x4f, +0xb2,0x1b,0x2f,0x2a,0xae,0xa0,0x86,0x6b,0x3c,0xd6,0x15,0x30, +0xbe,0x1e,0x09,0xfb,0x62,0x50,0xd1,0x26,0x62,0x98,0x80,0x4d, +0xd8,0x6f,0x18,0x1e,0x7a,0xfb,0xf2,0xe7,0xb1,0x72,0x1c,0x66, +0x47,0x7e,0x7c,0x23,0x3b,0xc2,0x55,0xd9,0x3d,0xcc,0x8e,0x38, +0x62,0x06,0xa3,0x9d,0x9a,0xc1,0xa8,0x3d,0xd9,0xcc,0xbc,0xcf, +0xc3,0x93,0x61,0x3a,0x51,0x86,0x52,0xd7,0xc2,0x9c,0x34,0x44, +0xa7,0x7d,0xd1,0x5a,0xad,0x3b,0xdb,0x76,0xdf,0x54,0xe6,0xd3, +0x5c,0x77,0x76,0xec,0xbe,0x06,0xa2,0xd9,0x4f,0xd4,0xa1,0xb5, +0x79,0x4f,0xce,0x91,0x0d,0xa6,0xf6,0xbd,0x88,0x96,0x3b,0x0a, +0xfb,0x1f,0xf2,0x98,0x5e,0xb1,0x85,0x32,0x2a,0x17,0x10,0x6d, +0x1f,0x2c,0x5f,0x35,0xe5,0x4b,0xca,0x10,0x65,0x22,0x95,0xb9, +0xbe,0xf5,0xe4,0xc1,0xfc,0x23,0x0d,0xfc,0xcb,0x4e,0x98,0x39, +0xd0,0x17,0x88,0x70,0xfe,0x47,0xc2,0x36,0x6a,0x5f,0x5e,0x22, +0x02,0x8c,0xe0,0x5c,0x4a,0xfc,0x33,0xd6,0x42,0x2b,0x4b,0x68, +0xa7,0x59,0xcb,0x5a,0xf9,0x27,0x9e,0xec,0x66,0xd9,0x27,0xd2, +0x34,0x46,0x03,0x21,0x70,0x90,0x6a,0x32,0xd5,0xd2,0x55,0x2a, +0xef,0x78,0xdd,0x8b,0x3b,0xfa,0xa1,0x29,0xd3,0xbb,0xb9,0xd3, +0xdf,0x7c,0x1e,0x98,0xac,0x34,0x4d,0x35,0x93,0xb8,0x9d,0x51, +0x49,0xdc,0x36,0x0b,0x12,0xb7,0xea,0x72,0xf0,0x62,0x16,0xd4, +0x23,0x9d,0x9c,0xcb,0xca,0xdf,0x55,0xa2,0x67,0xfd,0x1b,0x95, +0xce,0xc1,0x6c,0xa8,0x66,0xf3,0xb0,0x69,0x11,0xe0,0xd0,0xad, +0x7a,0x96,0xee,0x5e,0x7d,0x55,0xd9,0xb9,0x22,0x2b,0xe6,0xaa, +0x6d,0x06,0xd0,0x3e,0x51,0xfa,0x2a,0x2b,0x09,0x82,0x99,0x04, +0x5e,0xe9,0x6a,0x53,0x03,0xf7,0x56,0xdc,0xa8,0xee,0x19,0xf9, +0x42,0xd3,0x07,0x0a,0x68,0xfb,0x1c,0x0c,0xbf,0x93,0xea,0x43, +0xe2,0x7d,0x37,0x8d,0xdc,0xa2,0x37,0x85,0xc0,0x3a,0xea,0xfa, +0x1f,0x81,0xf3,0x72,0xe2,0x77,0x6a,0xc9,0xbd,0xe0,0xbd,0x99, +0xcf,0xbd,0x13,0xab,0x45,0xe4,0xa2,0x53,0x42,0xe3,0xab,0xf3, +0xc4,0xb4,0xc6,0x9e,0xdf,0x4a,0x7b,0x4c,0x3a,0x22,0x73,0xc4, +0x1c,0x78,0x25,0x47,0xc7,0x6d,0x49,0x3e,0x9d,0x9b,0x95,0x9f, +0x5c,0x8a,0xac,0x0d,0x43,0x26,0x4c,0x86,0x35,0x43,0x0a,0x42, +0x74,0x4c,0x57,0xf7,0x79,0x49,0xf5,0xf9,0x03,0xe9,0x07,0x77, +0x1c,0x48,0x62,0x87,0xb9,0x43,0x5f,0x88,0x94,0x0d,0xed,0xa8, +0xf5,0x0d,0x22,0x53,0x79,0x67,0x4b,0x91,0x9d,0x19,0x57,0xa3, +0x62,0xe8,0xfb,0xe8,0x2a,0x2b,0xbb,0x31,0x67,0x6a,0xd5,0x8e, +0xdc,0x34,0xdc,0xf1,0x0b,0x94,0x3c,0xa2,0x03,0x43,0x87,0x19, +0xc3,0x9e,0xd2,0x0e,0x3f,0x12,0x9c,0x7e,0x07,0x2b,0x54,0xf0, +0xfc,0x38,0x6e,0xb9,0x10,0x3c,0xaf,0xa1,0xb6,0xb6,0xe4,0x4f, +0x6e,0x4f,0xcb,0xcd,0x85,0x7c,0xf2,0x6e,0x75,0xeb,0xd7,0x12, +0xe3,0xab,0xca,0xc2,0xc2,0x13,0xe7,0xd5,0x5c,0x13,0x93,0xa0, +0xa3,0x58,0x27,0x16,0xe6,0xde,0xef,0xf1,0x28,0xee,0xb0,0x80, +0xb8,0x54,0x8d,0x99,0xcb,0x67,0xf3,0x14,0xbe,0x54,0x82,0xee, +0x70,0x4b,0x9a,0x1c,0x9f,0x88,0x7d,0x25,0x77,0x21,0x17,0x67, +0x01,0xb2,0xf5,0xcc,0x95,0x7a,0x2c,0x8a,0xf0,0x6c,0x99,0xd8, +0xe7,0xf5,0x0f,0xb5,0x32,0xb5,0xcf,0x22,0x7c,0xf6,0x0d,0xd4, +0xd5,0x5f,0x29,0xaa,0x3c,0x55,0x83,0x2b,0x11,0x31,0xa3,0x5a, +0x6a,0x1d,0x47,0x94,0x2e,0xa1,0xe4,0x36,0x6d,0xff,0x0e,0x19, +0xd3,0x14,0x4b,0x00,0x58,0x3c,0xb5,0xe9,0xc6,0x75,0xc2,0x5f, +0xc8,0x2c,0x91,0xab,0x32,0x4b,0xec,0x21,0x56,0x82,0xf5,0xb8, +0x33,0x0b,0xa7,0xf6,0xde,0x04,0x71,0x19,0x90,0x07,0x23,0xa9, +0xbd,0x0a,0xcc,0xe0,0xff,0x1f,0x4e,0xed,0xe7,0x88,0x88,0xf5, +0xc8,0x03,0x8d,0x62,0x6f,0x92,0xa8,0x5c,0x28,0x0e,0x53,0xf1, +0x90,0x29,0x54,0x46,0x32,0x7d,0x3b,0x2d,0x61,0x4b,0x5f,0x37, +0x07,0x70,0x3b,0x4e,0xdc,0x20,0x5b,0xe6,0x11,0xa1,0x0d,0x35, +0xbc,0x20,0x19,0x19,0xfb,0x44,0x1b,0xab,0xee,0x38,0xc1,0x31, +0x17,0xf5,0x81,0x98,0xde,0xcd,0x9b,0xf6,0x4c,0x43,0xe5,0x12, +0xf2,0xda,0x7c,0x8f,0x25,0x68,0xbb,0xbf,0x85,0x65,0xa6,0x32, +0xc2,0x9d,0x6a,0xeb,0x8f,0xc9,0xc6,0x04,0xdd,0x96,0xe4,0xe3, +0x1f,0x65,0x1c,0x4f,0x39,0xad,0x67,0x07,0xa9,0x64,0x22,0xcc, +0x58,0xf0,0xf4,0x6c,0x75,0xf6,0xa1,0xd4,0x43,0x3b,0x0e,0x6d, +0x66,0x27,0x7a,0xea,0xce,0xa2,0x1e,0xc4,0xe4,0x75,0x4c,0x7c, +0x6c,0xbc,0x4e,0xb5,0x9a,0xf9,0x68,0xd5,0x56,0x49,0xa3,0xa2, +0xa6,0xf5,0x18,0x6b,0x74,0xfe,0x32,0x36,0x3d,0x8e,0x7a,0xb4, +0x22,0x65,0x86,0x53,0x68,0x2c,0xe7,0x86,0x01,0x1d,0x84,0x7d, +0x94,0x2b,0x45,0x1e,0x3c,0x7d,0x4f,0x8b,0xc1,0xbc,0x57,0x5d, +0x55,0x90,0x53,0x90,0x99,0x6a,0xa6,0xc9,0xb7,0x30,0x63,0x13, +0x8f,0x11,0x53,0x1b,0x25,0xfe,0x55,0x30,0xc2,0x8d,0x2f,0x21, +0xdc,0x38,0x17,0x4e,0xca,0x1b,0xd9,0x36,0x3f,0xd8,0xe3,0x4c, +0x0e,0x6b,0xbe,0xfa,0xe4,0xf0,0x91,0x72,0xa7,0xe8,0x7a,0xcb, +0x8d,0x0b,0xd5,0xc6,0x80,0xff,0x52,0x7d,0x2a,0xb7,0xe0,0xdf, +0xb2,0xf9,0xd4,0xee,0x2b,0xee,0xc9,0x43,0xb7,0x37,0x88,0x9b, +0x1a,0x5e,0x13,0x37,0xd9,0x22,0x71,0x93,0x1c,0xdb,0x7c,0xeb, +0x18,0xb8,0xe4,0xa2,0x41,0x3e,0xcd,0xef,0xf2,0x9d,0x15,0xd3, +0xbb,0x07,0x18,0x9d,0xbf,0x88,0xe3,0x06,0x19,0x03,0x97,0x3c, +0x84,0x56,0x9e,0xf0,0xfb,0x40,0x1a,0x36,0x3b,0x4c,0xd8,0x62, +0x7e,0xfb,0xdc,0xf2,0x16,0x0a,0x68,0xa5,0x88,0x8f,0x6d,0x74, +0xf7,0xab,0xaa,0x0a,0xb3,0x31,0x17,0x83,0xdc,0x8b,0x2d,0xd0, +0x4a,0xf7,0x76,0x44,0xed,0x2a,0xe3,0x83,0x5b,0x86,0xe1,0x9e, +0x03,0x8d,0xae,0xff,0x50,0xbb,0x33,0xa4,0x85,0x2d,0xde,0x87, +0xdb,0x9b,0x99,0xc2,0xde,0xa8,0x6c,0xf1,0x39,0xc8,0x16,0x9f, +0x8e,0xf6,0x26,0xa7,0xd9,0xde,0x74,0x15,0x2c,0xf1,0x5c,0x58, +0xe7,0xc1,0x24,0x26,0x79,0x23,0x75,0xf5,0x27,0x73,0x26,0x82, +0x81,0xba,0x66,0x70,0x4f,0xad,0xa5,0x5d,0x45,0xcb,0x16,0x8e, +0x8d,0xae,0x0a,0x5f,0x4a,0x6c,0x16,0x75,0x9f,0x44,0xd4,0xb0, +0x7e,0x10,0x0f,0xc4,0x90,0x13,0xa9,0x25,0x20,0xdf,0x22,0x50, +0xfb,0xc5,0x55,0x86,0x33,0x3c,0x1a,0xeb,0x3b,0xdb,0xcc,0x89, +0x74,0xb7,0xae,0x9a,0x7a,0xe4,0x12,0xe8,0xac,0x7b,0x70,0x41, +0x70,0x21,0x35,0xe7,0x13,0xec,0x84,0xbd,0x43,0xde,0x08,0x6e, +0xb9,0x6d,0x5e,0xad,0xe7,0x2e,0xd5,0x1a,0xd2,0x30,0xfd,0x17, +0x4a,0x83,0x08,0x75,0x3a,0x42,0xa2,0x30,0x52,0x75,0xa1,0x9d, +0x9f,0x90,0x6a,0x6c,0x77,0x50,0xd9,0x1c,0x99,0x26,0xb1,0x9e, +0xd4,0xfd,0x5f,0x22,0xf8,0x94,0x9c,0xc4,0x6f,0xe0,0x56,0x78, +0x23,0xf7,0x71,0x84,0x15,0x16,0xf9,0x94,0x5a,0x11,0x46,0xf3, +0x48,0xd1,0x6b,0x94,0xd1,0xe5,0x47,0x41,0xa7,0x2f,0xc2,0x7a, +0x7e,0x77,0x2a,0x9f,0x53,0x2f,0x8c,0x15,0xbd,0xd0,0x1a,0x5f, +0xa8,0xc6,0x8c,0x4a,0x5a,0xf3,0x4e,0x93,0x13,0x66,0x54,0xce, +0xe3,0x5d,0x8a,0x94,0x44,0x37,0x6e,0xae,0xaa,0x31,0xef,0x19, +0x47,0xdd,0xee,0x92,0x2a,0xc3,0xd9,0x31,0xef,0x49,0xc3,0xa2, +0xa6,0x7a,0xfa,0x1a,0x5d,0xbf,0xa6,0xb6,0x27,0x48,0x3e,0xee, +0x9a,0x8b,0x7d,0xf1,0x39,0x93,0xc0,0xd0,0xcf,0x58,0x19,0xc9, +0x27,0x5c,0x71,0x4e,0x71,0x73,0xe3,0x0f,0x2f,0xb0,0xd7,0x3d, +0xa8,0xc3,0xdd,0xf7,0xf4,0x66,0x78,0xac,0x56,0x3c,0x49,0xea, +0x36,0x97,0x20,0xde,0x71,0x1e,0x0c,0x41,0x0c,0xa7,0x33,0xff, +0xf9,0xcf,0xb6,0x48,0x73,0xd7,0xae,0x5b,0x3a,0xcf,0x30,0xee, +0x72,0xc4,0x2f,0xbf,0x5c,0xae,0xbf,0x51,0xbc,0xee,0xdc,0x3c, +0x15,0xc1,0xd9,0x5f,0x8e,0xd5,0x44,0x2e,0x3e,0x5b,0x55,0x99, +0x77,0xb6,0xd6,0x69,0x9f,0xa6,0x3a,0x3f,0x6a,0xfa,0xb4,0x45, +0x51,0x18,0x97,0x9a,0xd9,0x20,0x92,0x60,0xb1,0x1c,0x83,0x1e, +0x8e,0x9f,0xa3,0xe9,0x97,0x3f,0x70,0xb2,0x52,0x8a,0x7c,0x7b, +0xca,0x5a,0xaa,0x9f,0xa1,0x72,0x65,0xd5,0x08,0xae,0xac,0xe3, +0xc6,0x54,0xe4,0xca,0xda,0x2c,0x4d,0x5a,0xfd,0xee,0xac,0x10, +0xc3,0x80,0xcf,0xc7,0x0b,0x0a,0xe3,0xeb,0xdf,0x18,0xe1,0xe7, +0x23,0xf2,0x9d,0xfa,0x7c,0x95,0xc2,0x78,0x91,0xbf,0x3f,0x36, +0x3d,0x11,0xad,0x50,0xee,0x38,0xad,0x85,0xc6,0x97,0x83,0x89, +0xb2,0x52,0x8e,0x17,0x5d,0x3b,0x12,0x36,0xe9,0xb0,0xc5,0x47, +0x11,0x68,0x49,0x3c,0x0f,0x73,0x2d,0xe2,0x08,0x44,0x83,0x1f, +0x2e,0x88,0x3f,0xcd,0xbd,0x0f,0xca,0xe7,0x5f,0xbd,0x5d,0x5a, +0x77,0xa6,0xa5,0xbd,0x2d,0xe5,0xca,0xb4,0xae,0x82,0xff,0xea, +0x4e,0x45,0xe4,0xae,0xb6,0x85,0xb8,0xba,0xa0,0xf0,0xa4,0x4a, +0x5c,0x8d,0xc8,0x07,0x5b,0x41,0x32,0xd6,0x2a,0x3e,0x93,0xda, +0x85,0x13,0x41,0xd5,0x88,0x94,0x66,0xc3,0x57,0x4d,0x19,0x2f, +0x48,0xab,0xb3,0x62,0x77,0xc6,0x6f,0x52,0x2b,0x0e,0x51,0x85, +0x96,0x19,0xca,0x7c,0xe7,0x4b,0x3d,0x17,0x4d,0xf6,0xec,0x8f, +0x74,0x95,0x2a,0xa5,0x99,0xca,0x01,0x67,0xa5,0xab,0x3e,0x9f, +0x8f,0x54,0xb4,0xf0,0x16,0xc1,0x9d,0xb0,0x0a,0x97,0x3f,0xa8, +0x5b,0x7f,0xa2,0x92,0xc1,0x79,0xaf,0x9e,0x36,0x3e,0xd4,0x38, +0xfe,0xfa,0x9b,0x64,0x70,0xb9,0x25,0x86,0x42,0xfe,0xd5,0x80, +0x45,0xd3,0x3c,0x87,0x8a,0x36,0x51,0x82,0xda,0xf6,0xae,0x2a, +0xcd,0x86,0x5b,0xca,0x82,0xfc,0x13,0x45,0x2a,0x71,0x5d,0x3b, +0x14,0xf7,0x6f,0xbc,0xba,0x97,0xa0,0x02,0x1a,0x05,0xf3,0x72, +0xa9,0xef,0x22,0xe9,0x9d,0xf7,0x23,0xc7,0x4f,0x32,0x8e,0xbf, +0xa5,0xa2,0xc3,0xd5,0x9d,0x06,0x24,0xae,0x2b,0x15,0xc4,0x75, +0x7d,0x16,0x45,0x7a,0x0e,0x52,0x89,0xeb,0x0a,0x8f,0x17,0xa3, +0x74,0x5d,0x02,0x61,0x7d,0x14,0x77,0x99,0x75,0x97,0x9e,0xa4, +0x3e,0x4c,0x6f,0xdc,0x9b,0x74,0xe9,0xd5,0x27,0x24,0x11,0x46, +0x41,0x84,0xe0,0xe6,0x37,0xad,0x23,0x4a,0xc9,0xc7,0xac,0xfb, +0x00,0x02,0xd7,0x58,0xc0,0x0b,0x2d,0x81,0xbe,0xd0,0x28,0x9b, +0x52,0x09,0x4c,0xa4,0x56,0xdf,0x93,0x78,0x24,0x2b,0xab,0x9f, +0xa1,0xa3,0x96,0x5d,0xb9,0xde,0x0f,0x23,0x4d,0x33,0xd8,0x32, +0x2a,0x37,0x0a,0x4f,0x60,0xb5,0x4c,0x3b,0x6c,0x23,0xde,0xd4, +0xf6,0x0e,0x41,0x07,0x60,0x0d,0x75,0x18,0x45,0xb4,0x21,0x24, +0x59,0xe9,0x21,0xd7,0x75,0x65,0xf1,0x13,0x14,0x76,0x95,0x7d, +0x22,0x99,0x3f,0xa9,0xef,0xca,0xe2,0x5e,0xb8,0x11,0x81,0x9f, +0x62,0xa7,0x94,0x41,0xff,0x4f,0x19,0x38,0x6d,0x3f,0x95,0x4c, +0x82,0x6f,0x45,0xe5,0x7f,0x7c,0x22,0x72,0x09,0xf0,0x00,0xb1, +0x33,0x33,0xc4,0xf3,0x75,0x85,0xf8,0x27,0x39,0x21,0x91,0x3a, +0xdf,0x21,0x9b,0x4a,0x70,0x42,0xfc,0xc6,0x36,0xb0,0xc5,0x70, +0x39,0x98,0xc5,0xf5,0x80,0x0d,0x30,0x14,0xa2,0xc8,0xf9,0x05, +0x57,0x6f,0x94,0x55,0x9d,0xae,0xd2,0xa7,0xa6,0x65,0xa8,0x93, +0xa1,0xbb,0x4e,0xb4,0xc1,0xf0,0x50,0x5b,0x51,0x0b,0x01,0x5b, +0x76,0x5b,0x1e,0x2d,0xa3,0xb6,0x3c,0xba,0xb2,0xa3,0x16,0x79, +0x84,0x1a,0x77,0x93,0xbf,0xa8,0xc5,0x21,0x72,0xed,0x46,0x69, +0xd5,0x19,0x7e,0x29,0x36,0x48,0x40,0x86,0xa9,0x6e,0xd8,0x20, +0xa1,0x33,0x73,0x7b,0x7d,0x29,0x12,0x2a,0x33,0xe2,0x03,0xbb, +0x70,0xa6,0xa3,0xdf,0xb9,0x33,0x65,0xeb,0x73,0x20,0xba,0x92, +0xd2,0xec,0xfc,0x0f,0x0b,0x54,0xb7,0xf3,0x67,0xe4,0x27,0xae, +0xec,0xf7,0x17,0x75,0xab,0x26,0xc5,0x95,0x86,0x72,0xdf,0x05, +0xd2,0xc8,0xf5,0xc8,0x2d,0x36,0xf3,0x12,0x92,0xa0,0x8a,0xb7, +0xb5,0x1d,0x51,0xae,0x69,0x85,0x55,0x86,0x32,0x3f,0x3e,0xb1, +0xde,0x8d,0x1c,0xd2,0xdf,0x58,0x85,0x24,0x63,0x05,0x48,0x32, +0xf6,0x9b,0xea,0x03,0x08,0xd0,0x1b,0x9f,0x52,0xe7,0xf3,0x11, +0xb3,0xb3,0x4b,0x60,0x76,0x24,0x34,0x2a,0xe5,0x2e,0xbf,0x09, +0x36,0xc3,0x44,0xb5,0xa5,0xdc,0xe1,0x73,0x59,0x79,0x7c,0x52, +0xf9,0x47,0x49,0x63,0x56,0x4d,0x1b,0x1f,0x66,0x0c,0xba,0x16, +0x8f,0x74,0xdc,0x9b,0xf4,0xf1,0x62,0xfe,0xe6,0x64,0x9c,0x2b, +0x36,0x14,0xf8,0x2d,0x97,0x06,0x2f,0x9e,0xde,0x63,0x98,0xb1, +0x0a,0x3b,0x93,0xe5,0xf1,0x29,0xd7,0x32,0x88,0xb9,0xfd,0x59, +0xc1,0xc9,0x82,0x5d,0x48,0x64,0x58,0x80,0xdc,0x87,0x4b,0xa5, +0x51,0x7c,0xee,0xb6,0x30,0x23,0x36,0xcb,0x3a,0xd7,0xcc,0x65, +0xd8,0x7f,0xd1,0x54,0xb5,0xcb,0x59,0x95,0x60,0x46,0xe4,0xf3, +0xab,0x98,0x40,0x04,0x9c,0x55,0x39,0xf3,0x75,0x65,0x84,0xa5, +0x40,0xb6,0xf0,0x19,0x71,0x62,0x55,0x7c,0xcc,0x7a,0xf1,0x89, +0x75,0x99,0xf9,0xbf,0xf8,0x98,0x4f,0x0d,0xda,0xe9,0x1a,0xc1, +0x66,0xab,0xef,0xc9,0x9f,0x98,0x2a,0xa8,0x71,0x13,0xb9,0x0e, +0x55,0x32,0x75,0xfe,0x80,0x0c,0x78,0x12,0xc4,0xec,0x98,0xdd, +0x67,0xd7,0xb8,0x82,0xf8,0xfe,0x30,0x57,0x10,0x05,0xf7,0x8d, +0xd4,0x6e,0x2e,0x59,0xa7,0xf1,0x0d,0x2f,0xb8,0xed,0xa4,0x45, +0x5c,0x34,0xba,0x58,0x15,0x95,0x5d,0x45,0x99,0xe2,0x1e,0xee, +0x81,0xab,0x80,0x8e,0xea,0x8c,0xba,0x5b,0x86,0xcc,0xaf,0x1b, +0x21,0x2a,0xf8,0x7a,0x92,0xe4,0x4e,0xdd,0xc7,0x11,0x91,0xe6, +0x3f,0x58,0x49,0x6d,0xcf,0x71,0x77,0x54,0x78,0x5a,0xc6,0x8a, +0x19,0x55,0x37,0x90,0x6a,0x4a,0xa9,0x22,0x5a,0x74,0xd8,0x90, +0x4a,0x40,0xe0,0xe4,0x76,0x24,0x5b,0x1e,0xaa,0xcd,0xac,0xbf, +0x69,0xd8,0xff,0x15,0xee,0xd3,0x5d,0x8d,0x97,0xdc,0x54,0x7a, +0xb6,0xa7,0x48,0xcf,0x56,0xcb,0x3f,0xbf,0x88,0x9f,0x7f,0x1f, +0x27,0x81,0x21,0x6a,0xec,0x00,0xee,0xb4,0x19,0x97,0xf1,0xdf, +0xe9,0x52,0x4a,0xba,0x32,0xbd,0xa8,0x97,0x44,0x0c,0x35,0xb5, +0xff,0x89,0x68,0xd5,0xee,0x90,0x7f,0x43,0x0f,0x5d,0x79,0x79, +0x57,0x66,0x10,0x48,0x17,0xe4,0xe6,0xc5,0xe2,0xc6,0xaa,0x8c, +0x9a,0x2b,0x86,0xf4,0x6f,0x2e,0x42,0x54,0xd8,0x8d,0xad,0x52, +0x8f,0x0d,0x41,0xc1,0xc3,0x8c,0xa1,0x5f,0x6e,0xca,0x8a,0x57, +0x09,0xb2,0x0e,0x54,0x20,0x2c,0x25,0xe3,0x32,0x7e,0x8f,0x95, +0x8e,0x76,0xcb,0x02,0xfb,0x43,0x2b,0x63,0xd9,0xcc,0x9a,0xab, +0xd9,0x35,0x27,0xaa,0xf4,0x22,0xcc,0xd9,0xaa,0x45,0x0e,0x33, +0x64,0x35,0xe3,0xce,0xd3,0x2c,0xe2,0xa3,0xac,0xbb,0xcf,0x16, +0xb0,0x76,0xb0,0xfc,0xbe,0x29,0x45,0x82,0xaf,0x67,0xc9,0xca, +0xb0,0x30,0xd3,0x30,0x0d,0xf8,0xc2,0x03,0x99,0xb6,0x6f,0x20, +0x49,0x97,0x9a,0xa6,0xb7,0xf8,0xff,0xbf,0xb3,0x95,0xd8,0xc4, +0xa6,0xc3,0x03,0x74,0xfe,0x7f,0x20,0x2c,0x8e,0xaf,0x4a,0xa5, +0x87,0x45,0x5d,0x37,0x16,0x2f,0x16,0xa5,0xd8,0xd3,0xb3,0x40, +0x12,0x21,0xcf,0xa6,0x35,0x84,0x95,0xd2,0xf6,0x5c,0x11,0x1d, +0xd0,0x24,0xf9,0x07,0xce,0x82,0x55,0x01,0xe7,0xc2,0x75,0x4c, +0x5f,0xfa,0x45,0x5e,0x4d,0x5e,0x72,0xb2,0xee,0x40,0xfa,0x91, +0x97,0x48,0x65,0xc2,0xbc,0xa6,0x13,0x56,0x06,0x5f,0x36,0xc9, +0xdc,0xbd,0x69,0x8f,0xf5,0xa9,0xb7,0xc7,0x49,0x1b,0x77,0xc4, +0x6c,0x8b,0x35,0xc2,0x6f,0xeb,0x33,0xc6,0xb3,0x07,0x27,0xe6, +0xbd,0xd3,0x63,0x02,0x4c,0xf2,0xd1,0x97,0x84,0x59,0xb2,0x5c, +0xd6,0xe6,0xd7,0x9f,0xd8,0x60,0xc3,0x66,0x45,0x43,0x0d,0x8b, +0xc9,0x66,0xea,0x18,0x44,0xaa,0xa8,0xd3,0x01,0xc2,0x46,0x51, +0xa7,0xfd,0xc4,0x06,0xbe,0xa0,0x56,0x13,0x89,0x69,0x29,0x8b, +0x7a,0x51,0x47,0x6c,0xb0,0x9d,0x05,0x75,0xb4,0x47,0x8e,0x9f, +0xb5,0x04,0xda,0xe8,0x8a,0x8b,0xb3,0xcf,0x7d,0x98,0x97,0x22, +0xe6,0xed,0x2f,0xd0,0x0a,0x21,0xd8,0xcf,0xa8,0xe5,0x08,0xa2, +0x6e,0xb4,0x0a,0xe5,0x58,0x3c,0x76,0xa9,0xe4,0xb3,0x6e,0x2a, +0xd2,0xd2,0xd7,0x23,0x75,0x7a,0x6e,0x7a,0xa1,0xca,0x46,0x3f, +0xf0,0xbd,0x69,0x43,0x86,0xaa,0x6c,0xf4,0xb9,0x48,0x9d,0xce, +0x43,0xa8,0x4c,0x92,0x7b,0x28,0x37,0xc3,0x69,0xdb,0x81,0xc3, +0xdb,0x0f,0x39,0x32,0xf2,0xe9,0xc3,0x7f,0x2e,0xae,0xa9,0x58, +0x98,0xe3,0x74,0xee,0xd7,0x7b,0x23,0xa5,0xd9,0xd1,0x2b,0xe6, +0x39,0x25,0x4a,0xfb,0xde,0x5d,0x9a,0xb6,0xd0,0x11,0xac,0x47, +0x52,0x9b,0xe5,0x64,0xf1,0xa1,0xf7,0xcf,0xc4,0x18,0xe3,0xa5, +0xc8,0x98,0xe5,0x51,0xb4,0xc3,0x7a,0xc2,0x86,0x3d,0xad,0xfe, +0xd7,0xa8,0x7d,0x99,0x48,0x58,0xd8,0xcb,0xd6,0xc4,0x34,0xad, +0xf7,0x09,0x31,0xb3,0x73,0xe4,0x4f,0x4d,0xb1,0x23,0x61,0x09, +0x57,0x88,0xc7,0x4c,0x5a,0xd3,0x53,0x3e,0xc3,0x8f,0xc8,0x35, +0x2b,0x0b,0xc3,0x8f,0x19,0xa9,0xdb,0x0d,0x32,0xc5,0x30,0xfc, +0x49,0xb8,0x98,0xe9,0x17,0x9e,0x18,0xe1,0x87,0x23,0x72,0x63, +0x5d,0xce,0x3d,0xe3,0x71,0xcd,0xfd,0xba,0x65,0xc1,0xc1,0xe1, +0xcb,0xfc,0x9c,0x56,0x6b,0xfc,0x22,0x72,0x1a,0x9d,0xb4,0x2f, +0x66,0xe1,0x7e,0x6d,0xe1,0x43,0x53,0xa1,0xd4,0x34,0x2f,0x4a, +0x86,0x27,0x2c,0x81,0x7d,0x3e,0x11,0xda,0x80,0xc4,0x5a,0x49, +0x2c,0xce,0x5e,0xfd,0x60,0x82,0xf9,0x03,0x08,0x80,0x53,0xd4, +0x65,0x11,0x51,0xb6,0x41,0xa6,0x9c,0x36,0xde,0x92,0xba,0x50, +0xee,0x8b,0x3f,0x23,0xf0,0x3b,0x5c,0xa6,0xf6,0x6f,0x61,0x9c, +0x88,0x4a,0x9a,0xbd,0x8b,0xfa,0x5a,0x45,0x68,0xa6,0x09,0x66, +0xb5,0xd2,0x8f,0x35,0xca,0x2d,0x93,0xb7,0x9c,0xdc,0x6f,0xe5, +0xc8,0x25,0xfe,0xb7,0xa3,0x75,0x79,0x8f,0x4e,0x7e,0xff,0x9c, +0xda,0x7d,0x46,0xd8,0xf9,0x38,0x39,0xd9,0x2b,0x66,0xd4,0xda, +0xb1,0xb7,0x63,0x75,0x47,0x1f,0x51,0x0f,0x5b,0x02,0x4f,0x4c, +0x05,0x84,0x8d,0xf5,0x85,0xf1,0xd4,0xa2,0x88,0xb0,0x0f,0xf6, +0x1e,0x47,0x36,0x4f,0xee,0xd7,0xef,0xe0,0x7e,0xbd,0x33,0xb3, +0xa7,0xf2,0x4b,0xcc,0xc1,0x95,0x13,0x6a,0x57,0x8d,0x06,0x81, +0xba,0x76,0x22,0xae,0x70,0x56,0xc6,0x40,0x10,0xc9,0xbc,0xa9, +0xe5,0x48,0xe4,0x11,0xdb,0x4a,0x0a,0x5e,0x25,0x90,0x8d,0xac, +0x15,0x8b,0xe3,0x2a,0xbc,0x21,0x8c,0x25,0xba,0x40,0x1c,0x0c, +0xa5,0xd4,0xa5,0x39,0xff,0x7c,0x5e,0x19,0x48,0x75,0x0b,0x71, +0x83,0x79,0x8e,0x20,0x7f,0x78,0xba,0x55,0xfe,0x82,0xcd,0xa9, +0x85,0x39,0x5f,0xb0,0xa8,0x3a,0x1e,0x5f,0x3c,0x64,0x75,0xf5, +0x92,0xd8,0x24,0x46,0xd6,0x9f,0x73,0x50,0x47,0xe9,0xb7,0x24, +0x27,0x82,0x07,0x6e,0x25,0x5f,0xe6,0x54,0xe7,0xee,0x12,0x73, +0x94,0x7a,0x3c,0x20,0xd4,0x63,0x16,0xb6,0x5e,0xd3,0xca,0x2c, +0x88,0xda,0x7f,0x49,0x20,0x40,0xe2,0x4b,0x37,0xe7,0x35,0xd6, +0x1b,0x51,0x23,0xee,0x02,0xeb,0x4d,0x6d,0x7f,0x22,0x50,0xc8, +0x06,0xc8,0x8c,0x7c,0x56,0xf7,0xe3,0x0f,0x6f,0xd7,0x61,0xbb, +0xd3,0xe1,0x93,0xfb,0xf4,0x7e,0x32,0x99,0x69,0x9d,0x78,0x14, +0xde,0x4d,0xbe,0x54,0x7d,0xe6,0xf1,0xa7,0xd5,0x2b,0x42,0x8d, +0x89,0x52,0xd8,0xd4,0xa8,0x91,0x23,0xa6,0x9e,0xbd,0x68,0xfc, +0x4a,0xe9,0x4a,0x3b,0x9c,0x25,0x19,0x8d,0xd4,0x6d,0x18,0xb9, +0x79,0x3b,0x65,0xd7,0x0d,0xae,0xab,0xac,0xfe,0xc0,0x11,0xfa, +0x72,0x51,0x8f,0x6b,0xbe,0xff,0x6e,0x44,0x0d,0x17,0x45,0x46, +0x4c,0xe9,0xd7,0xf7,0xf1,0x14,0x46,0x9c,0xa0,0x23,0x73,0x97, +0x2f,0x54,0x9d,0x79,0xfc,0xb8,0x6a,0x45,0x38,0x17,0x15,0x3e, +0x6d,0xc5,0x88,0x11,0xd3,0xce,0x5c,0xe0,0xa2,0x9c,0x85,0x28, +0x6a,0x9b,0x86,0x24,0x86,0xab,0x09,0xd4,0xb3,0x60,0x39,0xb1, +0xda,0xf4,0x3d,0xe1,0x41,0xb1,0x6d,0x3d,0x84,0x42,0x0a,0xb5, +0xc8,0x21,0x05,0xe6,0x7d,0xfe,0x7a,0xae,0x75,0xb7,0xb3,0x99, +0x1a,0x38,0xcc,0x95,0xaf,0x68,0x05,0x60,0x63,0x22,0xca,0x97, +0x93,0xa8,0x7d,0x1e,0xd1,0xfa,0x13,0xe5,0x3a,0x0f,0x9b,0x56, +0x9a,0xca,0xa8,0x7d,0x27,0x71,0x78,0x5f,0x1c,0xd6,0xc8,0x13, +0x3d,0xc0,0xfa,0xf7,0x09,0xdc,0xd4,0x27,0x6a,0x58,0x0d,0xbb, +0x21,0x4f,0xf0,0x00,0xab,0xdf,0x27,0xf2,0x63,0x73,0x73,0x6d, +0xeb,0xbf,0x99,0xb5,0x86,0x55,0xbb,0xc9,0x60,0xf5,0x37,0x36, +0x5f,0xdd,0xab,0x74,0xe1,0x4b,0x5d,0x7a,0x4c,0x1a,0x75,0xef, +0x43,0x2f,0x58,0x97,0x00,0x51,0xc7,0x85,0xc0,0x4a,0x21,0x30, +0x8f,0xb6,0x3b,0x4d,0x14,0x3b,0x24,0x23,0x7b,0x4c,0x2e,0xea, +0x5e,0x3d,0x26,0xa9,0xc1,0xef,0x0a,0xad,0xb3,0x45,0x68,0x9d, +0xb9,0xa8,0x75,0x9c,0x1e,0x98,0x56,0x8d,0x81,0x6c,0x09,0x7a, +0xb1,0x8f,0x64,0xc8,0x9a,0xc8,0xb2,0x34,0xe7,0xe1,0x43,0xb9, +0xfe,0xfd,0xa2,0x19,0x1f,0x1a,0x53,0xff,0x6a,0x50,0xc6,0x84, +0x50,0x8f,0xcb,0x24,0xe4,0x8f,0x3f,0x1e,0x36,0x3c,0x35,0xc2, +0xb9,0x34,0xf9,0xa0,0x74,0xb5,0xe2,0xec,0x95,0xc6,0xca,0xa8, +0x09,0xc6,0x0d,0xd2,0xc4,0xe9,0x2b,0x82,0x27,0xce,0x38,0x83, +0xad,0x85,0x8c,0x93,0x91,0xa4,0xa5,0x92,0xea,0x8c,0x3c,0x28, +0x8d,0xdb,0x17,0xbb,0x33,0x06,0xdd,0x44,0x44,0x30,0x95,0x66, +0x20,0xb0,0xcf,0x2f,0x4a,0x02,0xcb,0x45,0x93,0xa0,0x3d,0xb4, +0x33,0x26,0x95,0x58,0xc6,0x84,0xbc,0x9d,0xe4,0xe5,0x18,0xff, +0x9c,0x3b,0x0b,0x73,0xa1,0x81,0x3b,0x0b,0x7d,0x60,0x23,0x0c, +0xe0,0xce,0x42,0xe9,0x82,0x6b,0xd7,0xb8,0xc5,0xaf,0x6c,0xb6, +0xf8,0x14,0x3c,0x54,0xcf,0xd1,0xe2,0x7b,0xc2,0xa3,0xa9,0xa3, +0xe7,0x33,0xca,0x1a,0x0c,0x67,0xc7,0x9a,0x3b,0xaf,0xd9,0x00, +0x41,0x7e,0x4a,0x0f,0x12,0xf3,0x23,0x8b,0x65,0xd3,0x04,0x82, +0xae,0x1f,0xc4,0x82,0x97,0x99,0x9f,0xf2,0xfa,0xd5,0xb2,0x4a, +0xec,0xc9,0xb6,0x47,0xf0,0x5e,0x76,0x06,0x17,0xc1,0x4f,0x49, +0x8d,0x1b,0xb8,0x5f,0x07,0x56,0xd4,0xe2,0x19,0xd9,0xf8,0x1d, +0xbf,0x70,0x0a,0x5e,0x98,0x38,0x90,0x4f,0xf6,0x1e,0x94,0xba, +0x36,0x4f,0xf6,0x12,0x9c,0xec,0x99,0x62,0xb2,0x2b,0x03,0xe5, +0x84,0xcf,0xd8,0x42,0x36,0x0e,0xf2,0xc2,0xd8,0xb2,0x91,0xb0, +0x08,0x3a,0x23,0xbb,0xe9,0xb3,0x7b,0xe9,0xfb,0x2e,0x22,0x6f, +0x60,0x6c,0x24,0xb5,0x7a,0x80,0x2c,0xb5,0xd9,0x9a,0x1b,0x11, +0xd8,0xec,0x7e,0x09,0x36,0xbb,0x7f,0xf1,0x0e,0xf9,0x17,0x7b, +0x9b,0xb2,0x3f,0xc9,0xa4,0xc1,0x64,0xa9,0x12,0x4c,0x35,0x7c, +0x99,0xf2,0x90,0x77,0x1f,0xa1,0x0e,0x5f,0x13,0x53,0x49,0x93, +0x5d,0x0c,0x72,0x78,0x4c,0x15,0x1c,0x1e,0x5f,0x6e,0x93,0xbf, +0x66,0x73,0xeb,0x60,0xee,0xd7,0x6c,0xc5,0x45,0xc8,0x87,0x6f, +0x58,0xfd,0x45,0xbe,0x96,0x20,0x88,0x59,0x06,0x40,0x95,0x40, +0x42,0xfe,0x46,0xed,0xba,0xa9,0x4f,0xe1,0x85,0x35,0xe1,0x8f, +0x33,0x14,0xec,0xa0,0x3d,0x37,0xf9,0x8d,0x8d,0xe7,0x2b,0xce, +0x94,0x53,0xab,0x65,0x04,0x5c,0x45,0xff,0x28,0x8a,0xfd,0xa3, +0xb0,0xbf,0x4d,0x21,0x5f,0x62,0xd8,0x91,0x4a,0xf4,0x8f,0x9a, +0x49,0x60,0x1f,0xb8,0x52,0x87,0x9e,0x84,0xd9,0x39,0xf5,0xa3, +0xf2,0x68,0xf2,0x6a,0x38,0xf9,0x89,0xf9,0xb0,0x1c,0x65,0x18, +0xe4,0xb0,0xd1,0x9e,0xcd,0x3d,0xa4,0x26,0xb2,0xdf,0x64,0x96, +0x0d,0x83,0xf8,0xcf,0xd1,0xca,0xf5,0xd3,0xbe,0xad,0x6d,0x2c, +0xa1,0xee,0xef,0x92,0xba,0x6a,0xf0,0x67,0x6d,0x36,0x64,0x6c, +0xc4,0xfe,0x38,0xd1,0x71,0x5b,0x93,0x3f,0xc2,0xf2,0xc8,0x52, +0x3d,0x0b,0xb9,0xaa,0x4c,0x43,0x36,0x8a,0x2d,0x43,0xc3,0xc3, +0x61,0x40,0x3f,0x2b,0x53,0x83,0x47,0xd3,0x15,0xc2,0xda,0x8e, +0xe6,0x56,0x59,0xf3,0x0c,0x29,0x7c,0xec,0x48,0xc6,0x66,0x16, +0x04,0xed,0x75,0xf5,0x28,0xc3,0x62,0x43,0x06,0x75,0x0f,0x26, +0x65,0x7a,0x36,0xe9,0x9a,0x32,0x95,0xda,0xfe,0x45,0x4c,0x0d, +0x5d,0xe4,0x91,0x71,0x3d,0x37,0xb9,0x6f,0xb6,0x12,0x97,0x49, +0xdb,0xde,0x1e,0xbc,0x63,0xe8,0x23,0xb3,0x95,0x69,0xa5,0x2b, +0x2e,0xc2,0x66,0x27,0x48,0xbb,0xc1,0x4d,0x4a,0x01,0x76,0x3a, +0x59,0xce,0x4d,0xca,0xf4,0xe6,0x4e,0x27,0x3b,0xe2,0x37,0x8b, +0x82,0x29,0xee,0x0e,0xa5,0xf3,0x6f,0x0b,0xfd,0x97,0x49,0x83, +0xb9,0x6d,0x79,0x1b,0x6d,0x4b,0x19,0xb7,0x2d,0x79,0x7a,0xed, +0x0b,0x2b,0x4c,0xdf,0xb5,0x6b,0x49,0xdf,0xb5,0x6b,0x4e,0xdf, +0xb9,0x9a,0xd6,0x52,0x87,0x87,0x44,0xfb,0xb2,0x80,0x98,0xa6, +0x72,0x53,0x1d,0xca,0x4d,0xf5,0x09,0xa8,0x3d,0x41,0x7e,0x66, +0x41,0x17,0xbb,0x49,0xa7,0x58,0x47,0xdf,0x8c,0x0f,0xc0,0xd1, +0x12,0xac,0x34,0x6b,0x98,0xa3,0x6f,0xe2,0x69,0xe8,0x68,0xe9, +0x15,0xc6,0x02,0xbb,0x6a,0xb0,0xe7,0xf5,0xd8,0xa6,0x75,0xd8, +0x24,0xa1,0x3d,0xa1,0xc4,0x86,0x60,0x43,0x6f,0x1f,0x65,0x91, +0x10,0x1a,0xf0,0x72,0x13,0xb7,0x3b,0x4e,0x7c,0xd0,0x7f,0x60, +0xdb,0x6d,0x53,0xd9,0x58,0xd8,0xec,0xca,0xd6,0x8e,0x55,0x8e, +0xdd,0xd6,0x80,0xe5,0x3f,0xd4,0x61,0x21,0xff,0x76,0x95,0xc0, +0x97,0xae,0x25,0x6c,0x39,0xb3,0x87,0x35,0x1f,0xb7,0xe0,0x4b, +0xa1,0x2c,0x1d,0x41,0xa5,0xa2,0x0d,0x1b,0xdb,0xec,0xad,0xe4, +0x3d,0xe4,0x93,0xd4,0xf1,0xba,0x04,0x05,0xe0,0x4b,0xed,0x9f, +0xf2,0x01,0x1d,0x7e,0x22,0xcf,0x95,0x0c,0xa2,0xe2,0x11,0x66, +0xb2,0x78,0xda,0xee,0x02,0x61,0x96,0x0a,0x45,0x40,0x82,0xb9, +0x43,0xd0,0xb6,0x14,0xbe,0xf6,0x07,0x53,0xb7,0xff,0x23,0xcb, +0xb6,0x5b,0x1d,0xbc,0x91,0x79,0xf7,0xa9,0xe1,0x11,0xbc,0x17, +0xcc,0x3c,0xe3,0xa4,0xe4,0xbe,0x71,0x63,0xa2,0xc7,0x05,0x6c, +0x1d,0xb3,0x75,0xf4,0x76,0xab,0x8f,0xee,0xed,0xff,0xfc,0x5b, +0xc3,0x1d,0x6a,0xf7,0x3b,0xe9,0x1b,0x3d,0xf2,0x7d,0x3f,0xab, +0x1d,0x53,0xa6,0xec,0x9c,0x8a,0xfd,0xc4,0x3f,0xfb,0x3c,0x25, +0xe5,0xb1,0x53,0x73,0x6f,0xa5,0x6d,0xc9,0xd4,0x5e,0x16,0x0a, +0x26,0x5d,0x28,0x98,0xad,0xa8,0x60,0xb0,0xdc,0xe0,0x19,0x35, +0x0e,0x27,0xda,0xa6,0x46,0x1e,0xbf,0x9f,0x20,0xe0,0x02,0xbf, +0x60,0x89,0xaf,0xde,0x0a,0xb1,0x0e,0xad,0x9a,0xee,0xa1,0x61, +0x49,0x20,0x4a,0x0c,0x8c,0x11,0x90,0xc7,0x2c,0x6a,0x95,0x4e, +0x8a,0x33,0xce,0x5f,0x14,0xa5,0x04,0xae,0x8b,0x26,0xab,0x28, +0x58,0x34,0x3c,0xb1,0x88,0x82,0x0d,0x41,0xbb,0x13,0x4f,0x1d, +0x6f,0x11,0x4b,0x1b,0x1e,0x8f,0x40,0x64,0x53,0x5b,0x51,0xa7, +0x6f,0x97,0x82,0x7b,0xea,0x47,0x05,0x52,0x1a,0x97,0xbf,0x33, +0x5f,0xfd,0x88,0x68,0x15,0xe4,0xb7,0xb1,0xdf,0xf2,0x2b,0x23, +0xe1,0x32,0x5f,0xfd,0x83,0x20,0x06,0xba,0xf3,0xd5,0xbf,0x3d, +0xfd,0xfc,0xc2,0xab,0x97,0x4b,0xcb,0x91,0x9d,0x36,0x5d,0x90, +0x2f,0x77,0x06,0xa3,0x0e,0x39,0xd0,0x5e,0x28,0xc4,0xd4,0x0a, +0x2e,0xc9,0xeb,0xf6,0x24,0xee,0xd8,0x10,0xbb,0x31,0x41,0xb7, +0x39,0xe5,0xc4,0xc9,0xcc,0x53,0x29,0xe7,0xf4,0x2c,0xed,0xb2, +0xf2,0xf5,0x24,0x76,0x50,0xb3,0x69,0x5c,0xe0,0x5c,0x58,0x35, +0xfe,0x1c,0x37,0x5c,0x86,0x92,0x2f,0x73,0x6b,0x72,0x0f,0xa4, +0x1d,0x4e,0x3e,0x84,0x1d,0xa0,0x5b,0xe9,0xce,0x5d,0x10,0xc4, +0xb9,0x53,0x14,0x59,0x4e,0x7c,0xca,0x55,0x42,0x18,0xe4,0x85, +0xb0,0xa5,0x43,0x61,0x21,0xb8,0x37,0xf5,0x26,0xec,0x1b,0xc8, +0xd1,0xdc,0x08,0x93,0x99,0x27,0xbc,0x0f,0x9e,0x1a,0x9b,0x26, +0x6e,0xea,0x25,0x70,0x04,0x67,0x64,0xda,0x1d,0x43,0x75,0x97, +0x09,0xec,0x35,0x97,0xb5,0xe3,0xbe,0x52,0xc0,0x3a,0x7f,0xc7, +0xff,0x69,0x2b,0xfc,0xba,0xd3,0x20,0x8f,0xf8,0xc3,0x17,0x64, +0xd7,0xd4,0x16,0x66,0x5f,0xe0,0x11,0xff,0x85,0xc2,0xe5,0x91, +0x53,0x16,0x2c,0x0f,0x77,0xb2,0x81,0xfd,0xfc,0xfa,0xe6,0x7d, +0x29,0xf3,0xf5,0xaf,0x3b,0xe8,0xb6,0x5c,0xbf,0x46,0xbd,0xbe, +0xf6,0x8d,0xeb,0x23,0xc5,0xf5,0x54,0x47,0x09,0xd3,0x73,0xf3, +0xac,0x95,0x6b,0x66,0xdf,0xad,0xac,0x29,0xcc,0x2d,0xd6,0x63, +0xa9,0x00,0x5f,0x9f,0x7d,0xc1,0x52,0x57,0x5b,0x06,0xbd,0xfe, +0xdd,0x98,0x29,0xfa,0x0f,0x26,0x24,0x6d,0xde,0x75,0x34,0x27, +0x33,0x37,0xa5,0x44,0xcf,0x06,0x34,0x2a,0xc6,0x60,0x36,0x44, +0xb3,0x65,0xd8,0xd4,0x30,0x30,0x0c,0xb2,0x32,0x4d,0xeb,0x7e, +0x82,0x30,0x2b,0x3f,0x68,0xf7,0xaa,0x88,0xf8,0x2b,0xbf,0x60, +0x88,0x71,0x96,0x40,0x01,0xb7,0xfd,0xfa,0xfd,0x64,0x6f,0xd2, +0xc5,0xa6,0x0f,0xf8,0x08,0x75,0xd3,0xbf,0x2e,0xbd,0x9c,0x5f, +0x98,0x2f,0xf8,0x18,0x33,0xb7,0x50,0xeb,0x40,0x22,0xc0,0x01, +0x1b,0xe2,0xb6,0xa6,0x7c,0x78,0x26,0x33,0x3b,0xa5,0x40,0xcf, +0x82,0x2f,0x2b,0x91,0x93,0x58,0x88,0x66,0xb3,0x1f,0x25,0xad, +0x09,0x5c,0xa1,0x1a,0x86,0x2b,0xaa,0x2f,0x79,0xd6,0x45,0x57, +0x9c,0x9f,0x9d,0x7d,0x2c,0xe7,0x15,0x23,0xbf,0x74,0xe3,0xbe, +0x7b,0xff,0xaf,0xd5,0xda,0x3e,0xdc,0x34,0xe0,0xae,0xfb,0xb9, +0xcc,0xbc,0x22,0x43,0x2e,0x9f,0x0b,0x01,0xeb,0x66,0x4d,0x9e, +0x62,0x9c,0x59,0x95,0xa0,0xc6,0x58,0xaa,0x22,0xc8,0x41,0xa8, +0xe0,0xb9,0xb1,0xef,0x49,0x23,0xde,0x9d,0x35,0x64,0x94,0xb1, +0x7c,0x66,0x59,0x71,0x76,0xf6,0x51,0xae,0x08,0xe4,0x70,0x36, +0xdc,0xe7,0xae,0xa9,0xc1,0x4f,0xf1,0x97,0xe0,0x2b,0x40,0x6d, +0x3f,0x9e,0xba,0xbd,0x22,0xdc,0x53,0xb8,0x43,0x02,0xa2,0x83, +0x23,0xb6,0x4e,0xda,0x16,0xbc,0xdd,0xea,0xd8,0xad,0x03,0x8f, +0x3f,0x37,0x5c,0xa6,0x76,0x05,0x64,0x0c,0x75,0xf5,0x16,0xf0, +0xae,0xe1,0x01,0x77,0x4d,0xe7,0xfd,0x94,0x91,0x78,0x9d,0x05, +0xbf,0xce,0x4f,0x43,0xad,0x7f,0x22,0x17,0x74,0xfe,0x89,0x96, +0x07,0x1a,0x33,0xaf,0x7f,0x62,0xb8,0x05,0x81,0x11,0xcc,0x9a, +0x2f,0xb0,0xa1,0x71,0x81,0xd1,0x93,0x22,0xb6,0x08,0x49,0x1f, +0xde,0xda,0xff,0xe4,0x33,0xc3,0x45,0x98,0x10,0xc1,0xda,0xc5, +0x48,0xc9,0x43,0x36,0xf8,0xae,0x0e,0xb2,0xda,0xb1,0x78,0xd1, +0xce,0x45,0x8e,0xa9,0x93,0x2c,0x6f,0xde,0x4e,0x46,0xdf,0xe4, +0x7f,0xaa,0xd9,0xbe,0x02,0x6c,0xcb,0x34,0xf2,0x45,0x23,0xb6, +0x36,0xe5,0xfe,0x86,0xa7,0xd2,0x53,0x66,0x5d,0xa9,0x71,0x14, +0x01,0x37,0xee,0x28,0x59,0xbb,0x10,0xf8,0x54,0xae,0x9f,0xf1, +0xb4,0xf4,0x72,0x6e,0x7e,0x9e,0x3e,0x2b,0x6d,0x9f,0xd8,0xb5, +0xf7,0xd0,0xd5,0x57,0x81,0xdf,0x4f,0x1b,0xd2,0x37,0xaa,0x8f, +0x78,0xf3,0xae,0x0f,0x4f,0x67,0x89,0x47,0x1c,0xd2,0xa0,0xcc, +0x0c,0x61,0x11,0xfc,0x11,0x87,0xcf,0x80,0xfe,0xa3,0xac,0x4c, +0x57,0x46,0xc9,0xb3,0x49,0x22,0x2c,0x7b,0x75,0xa5,0x85,0x03, +0x66,0x94,0x12,0x2a,0x41,0x37,0xd3,0xe8,0xa6,0x36,0x04,0x8e, +0x0a,0x2e,0x98,0x93,0x44,0x89,0x66,0x97,0xa8,0x7e,0x25,0x81, +0x89,0x4d,0x49,0x2d,0x7a,0x65,0x2e,0x3b,0x68,0xca,0x25,0xcc, +0xfb,0x95,0x91,0xeb,0x29,0xd3,0x29,0x52,0x2a,0xc3,0x30,0x36, +0x92,0xf5,0xbd,0x0c,0xd1,0x50,0xd4,0xe4,0x4b,0x60,0x0f,0xd7, +0x3b,0xe4,0x55,0x05,0xf7,0x4b,0xd6,0x70,0x43,0xbc,0x36,0x01, +0x96,0x1d,0x6f,0x69,0xd0,0x36,0x97,0xed,0xa7,0xed,0x1a,0x09, +0xdc,0x84,0x5d,0xa8,0xaa,0xa8,0xa5,0x8e,0x80,0xfe,0x9e,0x69, +0xbf,0x2f,0xf5,0x08,0x24,0xca,0xa6,0x7b,0x1a,0x30,0x52,0x7d, +0x1c,0x61,0xa9,0x6c,0x1f,0xb5,0xf8,0x9b,0xdf,0xc4,0x1f,0xa6, +0x0f,0x64,0xae,0x1c,0x17,0x7d,0x6c,0xda,0x32,0x0a,0xd6,0x80, +0x3d,0x5b,0x34,0x4a,0x59,0xf5,0xb1,0x06,0xe6,0x51,0xc7,0x13, +0xa8,0x27,0xa9,0x4d,0x00,0x3f,0xeb,0xff,0x10,0x73,0xa5,0x03, +0xbb,0xbb,0xa6,0x1d,0x7e,0xf0,0x16,0xe8,0x10,0x73,0xf5,0xfe, +0x5d,0x0d,0x34,0x99,0x02,0xa9,0xe6,0x3c,0x61,0xbf,0xf8,0x22, +0xe8,0x4a,0x27,0x40,0x57,0x71,0x82,0x1d,0x45,0x65,0xbb,0xc6, +0xa2,0xa6,0x3a,0xc3,0xc9,0xb1,0x6b,0xa4,0xae,0x8b,0xa6,0x80, +0x8d,0x8b,0x31,0x29,0x1f,0x15,0x11,0x72,0x69,0x07,0x42,0x43, +0x38,0x8b,0x1f,0xc9,0xd5,0x09,0x6d,0xce,0x6c,0x5d,0x75,0xda, +0x91,0x56,0xb2,0xa8,0x99,0x4b,0x1b,0xf7,0xef,0x46,0x11,0xda, +0xb9,0x86,0xb0,0x31,0xb8,0x82,0x2d,0xb6,0x6a,0x66,0xad,0x5f, +0xb7,0x74,0xbe,0x21,0xf0,0x62,0x38,0x6b,0x45,0xdd,0x93,0x88, +0xf2,0xb6,0xc4,0xa2,0xa8,0xf1,0x0e,0x41,0xfe,0x6e,0x95,0x61, +0x7b,0x5b,0xcb,0x98,0xfe,0x6b,0xa4,0x6e,0x38,0xa6,0x33,0x2a, +0x3f,0x0f,0x12,0xfb,0x44,0x1d,0x33,0x8c,0x25,0x8c,0xe2,0x0e, +0x4c,0x67,0x1c,0xf3,0xaf,0x8f,0x9b,0xc7,0xbc,0xde,0x3c,0x66, +0x3a,0x8e,0x29,0x8f,0x53,0xd9,0x78,0x6f,0x18,0x0f,0x49,0x37, +0xab,0x73,0xae,0x5e,0xad,0x59,0x16,0x68,0x84,0xa9,0x50,0x09, +0x57,0xff,0x67,0xfb,0x65,0xa9,0xd2,0x0d,0xb1,0x8f,0xcb,0xb8, +0x63,0x54,0x3c,0x89,0xbd,0x37,0x00,0x96,0x63,0xbf,0x81,0x6c, +0xcd,0xcf,0xf7,0xd2,0xf6,0x35,0x38,0x25,0x34,0x5a,0xc6,0x4e, +0x7e,0x27,0xa9,0xbf,0x23,0xfb,0x76,0xab,0xfc,0x23,0xb5,0xb5, +0x23,0x92,0x0d,0x6d,0xc7,0x7f,0xcd,0x4a,0xf8,0x46,0x7e,0x3f, +0x7a,0x4b,0x8a,0xe5,0xb9,0xe2,0x2c,0x7e,0xa7,0x67,0x46,0xac, +0x92,0x7a,0x45,0x4e,0x82,0xcd,0x9e,0x82,0x41,0xff,0xd2,0x17, +0x65,0xd5,0xe5,0xfa,0x7d,0x69,0xfb,0xb7,0x1f,0x48,0x62,0x07, +0xc1,0x19,0x09,0x27,0x77,0xb1,0x8e,0xb4,0xc3,0x7c,0x1e,0x6c, +0x3a,0x81,0xa5,0x68,0x30,0xd4,0x1a,0x9c,0x9e,0xfa,0x81,0x01, +0x66,0x31,0xbd,0xbf,0x22,0xb3,0x9f,0x34,0xcc,0x89,0x6d,0x93, +0xa1,0x15,0x38,0xf1,0x98,0xc8,0x0f,0x26,0xca,0xfc,0x1b,0x23, +0x9b,0xa5,0xc1,0x42,0xc3,0x58,0x51,0x68,0xd8,0x6b,0x4a,0x08, +0xb8,0xf7,0x31,0xd6,0xce,0xb4,0x64,0xbd,0xff,0x6c,0xbc,0xcd, +0xde,0x32,0x60,0x4f,0x0c,0xaa,0xf9,0x87,0xba,0xec,0x25,0x9f, +0x7d,0x91,0xb2,0xeb,0x89,0x93,0xa9,0x0f,0x34,0x52,0xbd,0x3f, +0x6a,0x9a,0x51,0x44,0xf0,0x95,0x0a,0x9a,0x2c,0x65,0x58,0x1d, +0xb5,0x07,0xf2,0x9a,0xee,0x42,0x79,0xbb,0x86,0x6a,0x78,0xe4, +0xf0,0x92,0x07,0xca,0xad,0xa9,0xfd,0x4c,0x84,0xd0,0x42,0x0f, +0x26,0x51,0xfb,0x05,0x62,0xb3,0xe3,0x04,0x0f,0x8a,0x2c,0x4c, +0x44,0x9e,0xc4,0xda,0xba,0x42,0xdb,0x60,0xd6,0x16,0xdc,0xef, +0x9a,0x76,0xf9,0x81,0x33,0xee,0x64,0xfd,0xc6,0x67,0x53,0x1d, +0x51,0x8c,0xec,0x02,0xb5,0x9f,0x2b,0x10,0xb7,0xa9,0xdc,0xda, +0x19,0x59,0x05,0xb5,0x9f,0xa7,0xd6,0x20,0x42,0x3b,0x65,0xb8, +0x7c,0x9d,0xd2,0x18,0x32,0x5e,0x91,0xfa,0x12,0xe5,0x3b,0x36, +0x8d,0x1a,0x71,0x12,0x2a,0x26,0x59,0x66,0x06,0xb0,0xa7,0x6e, +0xcf,0x89,0xd2,0x8a,0xea,0x6f,0x11,0xb6,0x85,0x65,0xe2,0xc4, +0x33,0xa8,0x68,0x3f,0xf6,0x91,0x0f,0x14,0x89,0x2e,0xd4,0x5c, +0x83,0xfb,0x72,0x0d,0xee,0x3c,0x92,0xaf,0x23,0xd4,0xde,0x1a, +0x04,0x1f,0xb9,0x13,0x26,0x35,0x28,0x23,0x24,0xb6,0x02,0xd6, +0x50,0xb7,0x3d,0xa4,0x88,0xab,0xec,0xf9,0xa8,0xb2,0x65,0x15, +0xc0,0x58,0x91,0x5e,0x79,0xdd,0x90,0x1f,0xb8,0x54,0x02,0xdb, +0x45,0x13,0xb8,0x23,0xed,0x60,0xac,0x9f,0x77,0xe9,0x7a,0x51, +0xd5,0xa9,0x0a,0x7d,0x72,0xf2,0xee,0xf4,0xcc,0x9d,0xa9,0x49, +0x7a,0xbe,0x08,0x7a,0xd4,0x96,0xf2,0x01,0xbb,0xc6,0xef,0x8b, +0xdb,0xb9,0x11,0xdb,0x0e,0x5f,0x93,0x21,0x90,0xd9,0xf9,0xc3, +0x43,0x74,0x21,0x4d,0x92,0xbf,0x06,0x6e,0x59,0xf0,0x4f,0x74, +0x2c,0x50,0x63,0x83,0x8d,0x93,0x4d,0x9d,0x60,0x19,0xf6,0xe7, +0x41,0x53,0xd5,0x0e,0x74,0x32,0x6e,0x7f,0x9f,0xd6,0xb0,0x59, +0x10,0x2d,0xaf,0xdb,0xbd,0x69,0x5b,0x74,0xdc,0xc6,0x44,0xdd, +0xe6,0xe4,0xe3,0x1f,0x66,0x7e,0x24,0x36,0x6c,0x2e,0x28,0x7f, +0x85,0xb3,0x13,0x9a,0x84,0x08,0xbf,0x25,0xb0,0x22,0x02,0x63, +0xbb,0xce,0x05,0x5f,0x9e,0xad,0x39,0x7b,0x30,0xed,0xc8,0xce, +0x83,0x9b,0xd9,0x49,0x2f,0x5d,0x76,0x9d,0xa5,0xcd,0x9b,0xd3, +0x30,0x8a,0x4f,0xc3,0xc4,0xef,0xb8,0xa9,0x9c,0x06,0x79,0x93, +0xd8,0xd2,0x01,0xdc,0x54,0x7a,0x52,0xab,0x8d,0x5c,0xe1,0x5a, +0xdc,0x27,0xc1,0x32,0xcb,0x61,0xbf,0x41,0x3f,0x02,0x09,0x68, +0x2f,0x03,0xd9,0x6a,0x7e,0x13,0x0e,0xd4,0x26,0x83,0xb0,0x55, +0x83,0x59,0x3b,0xb6,0x0e,0xb8,0x92,0xb0,0x21,0x4c,0xcb,0x56, +0xdf,0x44,0xf6,0xfc,0x06,0x2a,0x0d,0x27,0xd4,0xb5,0x35,0x61, +0xf9,0xe0,0xad,0x36,0x56,0x3d,0x5a,0x9a,0x8e,0xfc,0x87,0xfe, +0x2b,0x24,0x90,0x78,0x84,0x61,0x07,0x76,0xd8,0x58,0xf5,0x7a, +0x69,0xe5,0xe9,0x96,0xbc,0xa1,0x01,0xba,0xa8,0x8d,0x55,0x9d, +0x55,0xae,0x7b,0x6c,0xac,0x6a,0x8b,0x8e,0xb1,0x9d,0x28,0x29, +0x8a,0x60,0xe3,0xa6,0xdd,0x32,0x5d,0x0b,0x50,0xe6,0x4b,0xf0, +0xd8,0x14,0x26,0x87,0xf6,0xe9,0xf5,0xdd,0x24,0x38,0x87,0x8c, +0x41,0x7b,0x59,0x9e,0x3c,0x89,0x1f,0x86,0x8a,0x43,0xb8,0x53, +0x2d,0xf7,0xfa,0x89,0x4f,0xe7,0xcc,0x5e,0xe2,0x2f,0xac,0x54, +0xfa,0x88,0x16,0xa6,0xd0,0x81,0x5c,0xd2,0xad,0xa6,0x7c,0x5a, +0xa5,0x06,0x5b,0xde,0xbe,0x93,0xb2,0xeb,0x96,0x13,0x96,0x94, +0x8f,0x9b,0x7a,0xcb,0x54,0x17,0xa0,0x4c,0x43,0xb1,0x13,0xe4, +0xb0,0x3e,0x9e,0x5c,0xce,0x59,0x55,0x6c,0x0e,0x1f,0xc5,0xf3, +0xbb,0x30,0x71,0x08,0xb7,0x2b,0x65,0xcf,0x9f,0x7e,0xd6,0xb0, +0xac,0x5e,0xe2,0x2f,0xac,0x56,0x7a,0x70,0xb1,0x5d,0x51,0x6c, +0xbd,0xee,0x7d,0x14,0xbb,0x27,0xc4,0xf2,0xf6,0xdd,0xe4,0xdd, +0x5c,0x2c,0xd5,0x7f,0x40,0xf8,0x09,0x9d,0x44,0x43,0x3e,0xac, +0x30,0xa2,0x9a,0x25,0x84,0x45,0xb1,0x0c,0xb9,0xe9,0x3d,0x62, +0x72,0x0d,0xd2,0xb0,0x42,0xa0,0x8a,0x1b,0x81,0x39,0x88,0xad, +0x0e,0x51,0x98,0x9c,0xc4,0xda,0x60,0x06,0x64,0x97,0xfc,0xa9, +0xe9,0xe0,0x48,0x38,0x01,0x23,0x42,0xd8,0x08,0x1e,0x9d,0xb2, +0xbb,0xaf,0x5b,0x78,0xe5,0xa8,0x2d,0xbc,0x36,0xb1,0x89,0x60, +0x87,0xe0,0xaf,0xf1,0xcc,0x6a,0x63,0xc6,0xc6,0x94,0x8d,0x71, +0x6a,0x1f,0xcc,0x73,0xd8,0xc6,0x6b,0xeb,0xc0,0xd0,0x08,0xe8, +0xe3,0x59,0x3b,0x43,0xf7,0xe5,0x05,0xb5,0x8d,0x97,0x69,0x33, +0xbb,0x25,0x87,0xb1,0x77,0xfd,0x04,0x06,0x79,0x3a,0x42,0x8d, +0xb1,0x73,0xd9,0x3b,0x9a,0x7f,0x69,0x3b,0x07,0xf2,0x59,0xf2, +0x6e,0xb5,0xf5,0xf3,0x23,0x3c,0x67,0xac,0x80,0x23,0x87,0xe1, +0x39,0x56,0xd4,0x81,0x47,0x89,0x2f,0xce,0x70,0xef,0x77,0x8c, +0x52,0xf5,0x40,0x03,0x5d,0x19,0x5f,0x59,0x65,0xe4,0x37,0x16, +0xcf,0xbe,0x08,0x52,0x33,0x27,0x13,0xe1,0xee,0x44,0x76,0xdf, +0x9c,0x46,0x99,0x00,0x9f,0xb1,0x0f,0x3c,0xa8,0x4d,0x2c,0x61, +0x13,0x69,0x87,0x6c,0xc2,0x02,0xec,0x19,0x0f,0x27,0x41,0xd2, +0x20,0x1d,0x53,0x80,0x4a,0xe0,0x4d,0x1d,0xb6,0x20,0x8f,0xf1, +0x50,0xd3,0x60,0x9c,0x1b,0x7b,0xe5,0x75,0xe9,0xf1,0xdb,0xa3, +0xe3,0xd6,0x6c,0xd0,0x71,0x4d,0x96,0x93,0x9b,0x99,0x57,0x66, +0xf8,0xe8,0x9d,0x75,0xd2,0x88,0xc9,0x53,0x61,0xfb,0x30,0x63, +0x41,0x28,0xd3,0x55,0x7c,0x59,0x58,0x53,0xa8,0x4f,0x49,0x3e, +0x90,0x7e,0x68,0xe7,0x41,0xbe,0x74,0x8e,0x43,0xfb,0xfc,0x06, +0x4b,0x44,0xa4,0xb3,0x7c,0x6a,0xff,0x0f,0xa1,0xf4,0x31,0x61, +0x0f,0xa9,0x3e,0x94,0x28,0x53,0x0f,0xca,0x10,0xca,0x27,0x4b, +0x28,0x5f,0x32,0xb8,0x97,0x72,0x43,0xbe,0xb6,0xa2,0x7a,0xc2, +0x49,0xe3,0x1e,0xe6,0x75,0x5d,0x29,0x1a,0xcf,0xfa,0x6c,0x91, +0x26,0xac,0x5c,0x31,0x35,0xc8,0xe0,0xf5,0xb9,0xbf,0xd8,0x4f, +0xb9,0xf3,0xdc,0x08,0xcf,0x0f,0xc9,0x9f,0xd4,0x97,0x3c,0x32, +0x1e,0xd2,0x3c,0xbc,0x30,0xf7,0x9d,0x51,0x61,0x73,0xc7,0x38, +0x45,0x6b,0xbc,0xc3,0x4b,0x3e,0x76,0xe2,0x2a,0x07,0x49,0xea, +0xa7,0x2b,0x5f,0x22,0x58,0x0f,0x9c,0x2c,0x2e,0xc2,0x99,0x30, +0x89,0xf5,0x87,0x20,0x79,0x63,0xc2,0x16,0x5c,0x6b,0x62,0x73, +0xf4,0x00,0x75,0xff,0x80,0xa0,0x13,0x8a,0xfb,0xa3,0x35,0x39, +0x07,0x52,0x0f,0xef,0x50,0x57,0xd8,0xd9,0x3a,0xd8,0xf7,0x94, +0x2f,0x4e,0xfe,0xfb,0xf4,0x18,0xd6,0x3d,0x86,0xb9,0xd4,0xe1, +0x1c,0xa1,0x7a,0x0f,0xf2,0x95,0xa6,0x0f,0xdc,0xa5,0x92,0x13, +0x81,0x19,0xff,0x2f,0x0d,0x3d,0x0c,0xa1,0x56,0x91,0xe4,0x92, +0xda,0xb9,0xbc,0x95,0xe8,0x5c,0x4e,0x8c,0xd5,0xb3,0xae,0x5c, +0x3e,0x8f,0x7e,0x72,0x6a,0x5a,0x26,0x75,0xee,0x8b,0x6d,0xe1, +0x87,0x0c,0x85,0x21,0xfc,0x5f,0x30,0xdc,0x35,0xcd,0xa6,0x9d, +0x65,0x24,0xbd,0x32,0x85,0xf8,0x40,0x28,0xb5,0x0c,0x26,0xbd, +0x7b,0xcb,0x1b,0xfc,0xbc,0xe2,0xa0,0xb5,0xe3,0x0a,0x66,0xc5, +0x76,0x5d,0xe6,0xca,0xbf,0x2d,0xdb,0xdf,0x08,0x5f,0x2a,0x1e, +0x4f,0x34,0xac,0xe3,0x9f,0x7b,0x0f,0x3d,0x74,0xd2,0xbe,0xee, +0x9d,0x40,0x2f,0xf3,0xab,0x71,0xef,0xc4,0x02,0xb7,0xca,0x2b, +0x0a,0x8a,0x4e,0x14,0xed,0x52,0xdb,0x46,0xe1,0x8e,0x8f,0xe0, +0x6f,0x6a,0x63,0x26,0xdc,0x89,0xc7,0x4d,0x00,0x6c,0x66,0x53, +0x66,0xa8,0xf0,0xc3,0x9d,0x9f,0xc8,0xa0,0x09,0xc6,0xf1,0x77, +0x44,0xd3,0x2c,0xdc,0xa9,0x39,0xa8,0x6e,0xfb,0x60,0x76,0x7e, +0x61,0x84,0x57,0x7f,0x23,0xc2,0x0e,0x43,0x55,0xd8,0xe1,0x25, +0xb9,0x76,0xfa,0xd3,0x92,0x86,0x9c,0xfc,0x73,0x2d,0x18,0x46, +0x4f,0x6c,0x23,0xe0,0xf3,0x4d,0x74,0x5a,0x8c,0xe8,0xe6,0x8a, +0xb0,0xc3,0x93,0x99,0xa7,0x77,0x71,0x2f,0x7f,0xd2,0x45,0x65, +0x4a,0x18,0xc2,0x0e,0x83,0xc2,0x66,0x41,0xaf,0xb1,0x56,0xa6, +0xfc,0x81,0xb4,0xc3,0x31,0xf2,0x6c,0x4c,0xf7,0x66,0xc8,0x21, +0xb7,0x2b,0x9f,0x90,0xdf,0xa8,0xf5,0x1a,0xf2,0x15,0x95,0x14, +0xd2,0x4f,0xda,0xe6,0x3b,0x7a,0x3b,0xed,0xc0,0x5f,0xfc,0x73, +0x36,0x92,0x5a,0x2d,0x21,0x5a,0x6f,0x65,0x03,0x42,0xe6,0x97, +0x50,0xf9,0x5f,0x04,0xd6,0x7f,0x4d,0xde,0xf9,0xd8,0x54,0x33, +0x4a,0x19,0x2e,0x29,0x7e,0xdd,0xf8,0x0a,0xf0,0xd0,0xfc,0x97, +0x46,0x75,0x17,0xcd,0xdd,0xcf,0x77,0xed,0xd9,0xad,0xa2,0xde, +0x87,0xea,0xea,0x68,0xe7,0x53,0x44,0x80,0x08,0x13,0x78,0x24, +0xf4,0x31,0x39,0x54,0x99,0x51,0x73,0xd3,0x70,0xdf,0xdb,0x4f, +0x82,0xce,0x0b,0xc6,0x76,0x01,0x4a,0x6a,0x4f,0x5e,0xa0,0x1d, +0x56,0x71,0xa1,0xd8,0x0b,0x61,0xa8,0xae,0x16,0x2f,0xf0,0x1b, +0x6c,0xf4,0x31,0x5f,0x80,0xe8,0x95,0xe6,0x0b,0x10,0xa2,0xce, +0x2f,0x38,0x71,0x41,0x85,0xef,0x99,0x4b,0x84,0x86,0x62,0x21, +0x4f,0x7b,0xe6,0x99,0xb0,0xd7,0xdc,0xe4,0x0b,0xe1,0x30,0x35, +0x6f,0x14,0x0b,0x8d,0xf3,0x19,0x84,0xe2,0xf6,0xc6,0xe0,0x76, +0x45,0xd2,0x16,0x33,0xa8,0x9e,0x0b,0x1d,0x2d,0xee,0x22,0xc0, +0x03,0xda,0x1b,0xeb,0xa6,0x5f,0xbc,0x5d,0xcc,0x25,0xeb,0x77, +0x99,0x71,0xef,0x1d,0x9a,0x08,0x0c,0xc4,0xbd,0x01,0xfb,0x38, +0xa2,0x85,0xfe,0x04,0x1c,0x44,0x3a,0xb5,0x4e,0x82,0x54,0x96, +0x6f,0xfa,0x8a,0x5c,0xc1,0x6c,0xea,0x7b,0x6a,0x36,0xf5,0x3a, +0x66,0x53,0x3f,0x0f,0xc7,0x85,0x20,0xb2,0xa9,0xbf,0x1c,0x91, +0x1b,0x2f,0xe4,0x3c,0xc0,0x6c,0xea,0x85,0x65,0xc1,0xc1,0x61, +0xcb,0x7c,0x9d,0x56,0x6b,0x7c,0xc2,0x30,0x9b,0x6a,0xfa,0xd5, +0xb4,0x06,0x51,0x2b,0x2b,0x1f,0x9a,0x52,0xbd,0xb9,0x7f,0xe7, +0xc8,0x16,0xf1,0x47,0xfb,0x50,0x03,0x5f,0x20,0x5a,0x5e,0x4b, +0xed,0xdb,0x12,0x98,0x60,0x56,0x61,0x72,0x4c,0xfc,0x96,0x5d, +0xc7,0x72,0x32,0x72,0x77,0x51,0xf7,0xf7,0xc9,0x74,0xd0,0xf6, +0x2f,0x9f,0xa9,0xbb,0x55,0x5b,0x51,0x88,0xd4,0x09,0xe6,0xdd, +0xda,0x76,0xba,0xb2,0x72,0x70,0x66,0xad,0x63,0xb2,0x90,0xd0, +0x48,0x0f,0x71,0xb3,0xe5,0x8d,0xc8,0xa1,0x7f,0xb4,0x82,0x9b, +0x51,0xac,0xd5,0x3e,0x96,0x97,0x59,0x90,0x52,0xa9,0x67,0xee, +0x57,0x81,0x2f,0x8f,0xee,0x9a,0x2d,0xfd,0xa7,0x45,0x82,0xd6, +0xb3,0x62,0x86,0xee,0xd6,0xc5,0xf2,0x92,0xec,0xe2,0xb4,0x34, +0x33,0xd4,0x59,0xc6,0x2e,0xcf,0x4e,0x5c,0x0d,0xee,0x15,0xbd, +0x58,0x21,0x6e,0x9a,0xe8,0xf2,0xbc,0xc5,0x17,0x32,0x4c,0xab, +0xb9,0x05,0x4f,0xa0,0xce,0xb7,0x08,0xbf,0xb2,0x9c,0xba,0x70, +0x5d,0xeb,0xc4,0xac,0x63,0xf6,0xc6,0x88,0x13,0x63,0xa7,0xbe, +0x02,0x7e,0xe2,0x76,0x3f,0xd8,0x7b,0x8c,0xc8,0xd4,0x36,0x9e, +0x28,0x6d,0x82,0x68,0xbb,0xcf,0x08,0x36,0x1b,0x8e,0x9e,0xef, +0xbb,0xee,0x65,0x16,0x79,0xcd,0x6c,0x66,0x7a,0xce,0x7d,0xc7, +0x06,0x65,0x38,0xb5,0x0b,0x24,0xa2,0xe1,0xfc,0x95,0x4b,0xb7, +0xa8,0x47,0x10,0x91,0x7a,0xc3,0xdb,0xd4,0x69,0xc3,0xff,0x7b, +0x26,0x57,0xde,0xd2,0x16,0xa9,0x25,0x56,0xc4,0xf3,0xe4,0x38, +0x4d,0x98,0x1a,0x2a,0x5e,0x74,0xda,0xfb,0x46,0xa8,0xd8,0x0c, +0x60,0x94,0xbf,0x27,0x72,0x5c,0x02,0x75,0x1c,0x82,0xed,0x81, +0xda,0xc5,0xf0,0x1f,0x84,0x8e,0x41,0xec,0x64,0xf1,0x83,0x76, +0xf9,0xc2,0x21,0xfc,0x41,0x71,0x2c,0xdf,0x07,0xea,0xa9,0xfc, +0x5d,0xcb,0x7f,0x9b,0x71,0x8f,0xcf,0xa8,0xee,0x15,0xc1,0x58, +0x7c,0x5a,0x53,0xdb,0x66,0xbe,0x09,0x73,0x8a,0xac,0x41,0x19, +0x48,0x79,0xb8,0x47,0x2d,0x7e,0x20,0xf8,0x6a,0x32,0xcf,0xa5, +0xe0,0xab,0x99,0x01,0xda,0x01,0xfc,0xd5,0xdc,0xac,0x2e,0x2f, +0x3c,0x9b,0x9f,0x92,0xa2,0xa3,0x96,0x21,0x58,0xfe,0xad,0xe5, +0xef,0xc6,0x52,0x19,0x70,0x93,0x0f,0xbb,0x81,0xad,0xf4,0x83, +0x8d,0xce,0xe4,0x88,0xe6,0xe9,0x27,0xc7,0x8e,0x62,0xc3,0xec, +0xce,0x7d,0xc9,0x09,0xe6,0xe5,0x74,0x0f,0xb6,0x52,0x87,0x68, +0x22,0xa7,0xa6,0x66,0xec,0x4c,0xc3,0x88,0xf4,0x2d,0xac,0xd3, +0xeb,0xc1,0xac,0x63,0x33,0x37,0xec,0xa4,0xa4,0x2d,0x39,0x9a, +0x9f,0x59,0x5c,0x69,0xc8,0xf7,0x8d,0x92,0x7a,0x4e,0x9b,0x40, +0xdd,0xf2,0x09,0xcc,0x36,0xfd,0x44,0x98,0xc6,0x17,0x08,0x75, +0xe1,0xba,0x06,0xac,0xb1,0x65,0xb1,0x5e,0x77,0xa1,0x16,0xfc, +0x98,0xdd,0x06,0x2c,0x80,0x8c,0x53,0x69,0x47,0xf8,0x65,0x45, +0xde,0x4b,0x24,0xaf,0xf0,0x09,0x30,0xac,0x8b,0xf1,0xc2,0xd4, +0xaf,0x1b,0xae,0x94,0x17,0x55,0x21,0xed,0xc8,0x4c,0xa4,0x1d, +0xc1,0xac,0x13,0x52,0xa7,0xca,0xe9,0x69,0x82,0xbb,0x24,0x10, +0xf8,0x02,0x46,0x21,0x1d,0x37,0x66,0x6d,0xdc,0x1e,0x13,0xa7, +0x5f,0x1f,0xbb,0x65,0x97,0xe5,0x47,0x05,0x59,0x25,0xd5,0x86, +0xf3,0xa3,0x17,0x49,0xdd,0xa9,0xdb,0x32,0x72,0xa5,0xbc,0xb0, +0x5a,0xcf,0xae,0xc2,0x7c,0x6a,0xbd,0x92,0x47,0xc3,0xde,0xa0, +0x95,0xb6,0x0d,0x19,0xb8,0x7d,0xb0,0x89,0xfb,0x8a,0x72,0x46, +0x7a,0x16,0x42,0x2a,0xc7,0x73,0x41,0xfc,0x6e,0xfc,0xd9,0x5b, +0x3c,0xac,0xa6,0xee,0x27,0xc8,0xf1,0xc2,0xac,0x62,0x2e,0x63, +0x14,0x97,0x11,0x4e,0x8d,0x51,0x04,0xe6,0xc3,0x18,0xc2,0xda, +0x7b,0x83,0x1d,0xb5,0xc3,0x7d,0x15,0xc3,0x08,0x6e,0xb6,0x21, +0x87,0xb6,0x2b,0xe4,0x42,0x3c,0x42,0xfe,0x04,0x8b,0xbb,0xa6, +0xc3,0xd4,0xbe,0x1f,0x31,0xef,0x3d,0x24,0x3c,0x34,0x25,0x48, +0x4d,0xf3,0xd6,0xc8,0x70,0x99,0x25,0xb0,0x2b,0xc1,0x5d,0xc0, +0xfa,0x37,0x89,0xc5,0xdb,0xab,0x87,0x13,0xc5,0x21,0xf8,0x43, +0x2a,0xb5,0xf9,0x82,0x28,0xdb,0x21,0x5e,0x4e,0x9d,0x40,0xed, +0x92,0x48,0xd2,0x65,0xcb,0x57,0x8f,0xd1,0x85,0x55,0x08,0xf4, +0x43,0x1d,0xa1,0xc5,0x36,0xf3,0xb1,0x48,0x00,0xbe,0x69,0x33, +0x76,0xfe,0xa9,0xcc,0xc4,0xca,0xbe,0x31,0xe3,0x24,0xb7,0x95, +0x41,0x7e,0xc3,0x8d,0x3e,0xdf,0x72,0x15,0x41,0xad,0x6b,0x09, +0x02,0x92,0x2f,0x1b,0x6e,0x7b,0x53,0xbb,0x23,0x84,0xeb,0x85, +0x1b,0x85,0x35,0x27,0x6b,0x9b,0xf5,0x02,0xaa,0xb6,0x3d,0xd4, +0xf9,0x06,0x56,0xf7,0x56,0xd1,0xce,0x77,0x49,0x7a,0xd5,0x35, +0xc3,0x6d,0x2e,0xa3,0x85,0x7e,0x77,0xba,0x60,0xc7,0x43,0x6c, +0x1d,0x42,0xe9,0x04,0xd0,0xba,0x2f,0x7a,0x18,0xed,0x98,0x3b, +0x02,0xad,0x69,0xfb,0xa3,0x24,0x59,0xa9,0x16,0x83,0x34,0x1a, +0x6e,0x8d,0xc1,0x41,0xf8,0x35,0x37,0x8a,0xcc,0x83,0xec,0x14, +0x98,0x67,0xc4,0x7b,0xf3,0x41,0xb8,0xaf,0x57,0x89,0x83,0x20, +0xdc,0xf8,0xb6,0x37,0x0e,0xa2,0xa2,0xb9,0x6b,0xa7,0x5f,0x42, +0x8e,0xdf,0x66,0x00,0x9f,0xb6,0x19,0x38,0x55,0x57,0x85,0x88, +0x2a,0x11,0x25,0xc0,0xf7,0x6c,0x36,0x75,0xc8,0x7c,0x23,0x4c, +0xe0,0x9f,0x84,0x53,0xcd,0x07,0x22,0x34,0xcd,0xe6,0xa1,0xe9, +0x7c,0x96,0x45,0x35,0x7f,0x91,0xfe,0xf2,0xa8,0xb8,0xde,0x9b, +0xba,0x6c,0xb6,0xfa,0x7a,0x74,0xbf,0xab,0x64,0x70,0xd3,0xe7, +0x2d,0xdb,0x31,0xf3,0x59,0xac,0x9c,0x78,0xc9,0x32,0x61,0x71, +0x78,0xd2,0x04,0xc7,0x04,0x36,0x0a,0x03,0xe0,0xf3,0x4d,0x93, +0x08,0x3b,0xc9,0x43,0xe0,0xb7,0xd9,0x70,0xd6,0xef,0x32,0xac, +0x87,0x02,0x96,0xa8,0x29,0x72,0xa5,0xc6,0x47,0x6a,0x4b,0x35, +0x1e,0x40,0xec,0xe0,0xea,0x6c,0x7f,0x3a,0xb5,0x4f,0x13,0xe1, +0x44,0x16,0x1e,0x65,0x51,0xfb,0xdd,0xa2,0x25,0xc1,0xea,0x01, +0xe0,0xf0,0xb2,0x1b,0x61,0xcb,0x06,0x7f,0xc3,0xd6,0x0d,0x44, +0x4f,0xf7,0xeb,0x17,0xae,0x04,0x0e,0x2b,0x73,0x30,0x3e,0x59, +0x3d,0x94,0xbb,0xc2,0x96,0x13,0x09,0x52,0xea,0xdd,0x25,0xcf, +0xd8,0x52,0x36,0x7d,0xe0,0x17,0x6c,0xe3,0xd0,0x1e,0xc1,0xec, +0x5e,0x23,0x78,0x7e,0xc1,0x56,0x5f,0x46,0x9f,0x38,0x99,0xb6, +0x7f,0x42,0x44,0xb4,0xf4,0x57,0xea,0xf3,0x8c,0xc7,0x2a,0xea, +0x8a,0x5a,0x7a,0x12,0x96,0x0b,0x4b,0xa9,0xfe,0x3f,0x22,0x3c, +0x81,0x00,0xe1,0x09,0x1c,0x13,0x9e,0xc0,0x27,0x30,0x44,0x16, +0xe4,0x79,0xd8,0xd4,0x01,0x37,0x6b,0x5b,0xf2,0x6a,0xd0,0x6a, +0x61,0xb3,0x5b,0x70,0xb5,0xb1,0xb4,0xfc,0x34,0x77,0x0b,0x52, +0x33,0x84,0x5b,0x00,0x13,0xfe,0x0d,0x80,0x6c,0x21,0xe2,0x0b, +0x21,0x62,0x90,0x1c,0xb7,0x57,0xcd,0xe6,0x99,0x3b,0x46,0x39, +0x2f,0x8c,0xe0,0x97,0x5a,0xf1,0x4b,0x1b,0x1b,0x4a,0x4b,0x4f, +0x97,0xf2,0xb0,0x44,0xad,0x33,0xd7,0x73,0x07,0xdc,0xb1,0x86, +0x7a,0xfc,0x4c,0x98,0x25,0x9b,0xc0,0x7d,0x28,0x2b,0x1b,0x14, +0xf3,0x48,0x74,0x57,0xe8,0xcb,0xef,0x84,0x47,0xe4,0xd4,0xc6, +0x8a,0x54,0xcf,0x6e,0xbc,0x54,0x8a,0x8c,0x22,0xea,0x85,0xe9, +0xfc,0x42,0x1e,0xb5,0xd7,0x94,0x59,0x2a,0xd3,0xa8,0x6d,0x16, +0x5f,0xe0,0xab,0x85,0x43,0xd6,0x40,0x94,0x69,0x87,0x64,0x98, +0xc4,0x0c,0xd8,0x6b,0xe1,0x65,0x67,0xd2,0xc3,0x93,0x1a,0x96, +0x90,0x37,0xf1,0x10,0x6c,0x0a,0x04,0x73,0xff,0xbe,0xf7,0xe8, +0xee,0xdd,0x7e,0x1c,0xcd,0x82,0x58,0xd0,0x0f,0x8f,0x7e,0xfb, +0xb5,0xcf,0x23,0x08,0x72,0x62,0x91,0x30,0x56,0x8e,0x08,0x8b, +0x04,0x17,0x70,0x0e,0xad,0xad,0x37,0xee,0x97,0x2e,0x5c,0xaa, +0x65,0xce,0xcc,0xe5,0x62,0x64,0xb8,0xd1,0x46,0xf6,0x08,0xfd, +0xb3,0xcb,0x5d,0xd3,0x26,0x3f,0x98,0xd2,0x25,0xf4,0x0f,0x0d, +0xf8,0xb0,0xcd,0x32,0xac,0x0b,0x66,0xeb,0x34,0xee,0x50,0x8d, +0x89,0x7d,0x7b,0x6a,0xf8,0x8c,0x64,0x64,0xec,0xdd,0x86,0x18, +0x38,0xb0,0x61,0x2e,0x2a,0xbc,0x9f,0xbb,0x27,0x47,0x2b,0x32, +0xab,0x1a,0x0d,0x69,0xcc,0xf2,0x0a,0x1c,0x98,0xf8,0xd9,0x36, +0xa9,0xeb,0xaa,0x20,0xef,0x61,0xc6,0xd1,0xdf,0x0b,0xe4,0x3d, +0x92,0xe0,0x1f,0x2a,0xcd,0xe0,0x71,0x4a,0xc6,0x27,0x57,0x60, +0xff,0x44,0x26,0xe1,0x66,0xf2,0xfc,0x71,0xee,0xd0,0x96,0x3f, +0xae,0x86,0x6b,0x85,0xd5,0x27,0x6b,0xf4,0xbb,0x55,0x88,0x3f, +0xbc,0x24,0xd0,0x01,0xfa,0x4c,0x64,0x7d,0xba,0x8b,0x7f,0xb9, +0x1f,0x55,0xff,0xb2,0x3b,0xd1,0xbe,0x1a,0x45,0xe0,0xba,0xa9, +0x8d,0x68,0x17,0xbf,0x00,0xdb,0xc5,0x4b,0xde,0x40,0xd4,0x76, +0xf1,0x98,0xc7,0xd9,0xc6,0x75,0x88,0x1c,0xce,0x06,0x8f,0x17, +0x80,0x7a,0x67,0x09,0xb2,0xc0,0x4a,0x66,0x6f,0x4b,0xd4,0xe0, +0x47,0x60,0x90,0xa4,0xa5,0x72,0x85,0x4a,0x5b,0x2f,0x57,0x91, +0xdf,0xea,0xf0,0xb8,0x9a,0xfc,0x2e,0xfe,0xd6,0x90,0xdf,0xeb, +0x31,0xad,0xf4,0x33,0x71,0xbd,0x67,0x9a,0xe3,0xfb,0xf2,0x3f, +0xa2,0x51,0x5a,0xfd,0x6a,0xb2,0x20,0xa6,0xce,0x6c,0x8a,0x0c, +0x36,0x3c,0x6e,0xb2,0xe1,0xf1,0x6b,0x4b,0x12,0x03,0x95,0xc5, +0xf9,0x8c,0xd2,0x06,0xd5,0x8f,0x6c,0x23,0x26,0x8c,0xd6,0x58, +0x33,0xeb,0x4a,0xa3,0xea,0x47,0xa6,0x67,0x52,0x77,0x20,0x2c, +0x84,0xba,0xac,0x24,0x70,0xce,0x82,0x5a,0x47,0x90,0x57,0xa9, +0x68,0x3e,0x36,0xb1,0x7a,0x02,0xc3,0x08,0x7b,0xca,0x2c,0xe5, +0x17,0x06,0xd2,0x00,0x79,0x8a,0x07,0xab,0x6b,0xc0,0x96,0x70, +0x2f,0xdd,0x49,0xcf,0x1e,0xe2,0x2d,0xba,0xb4,0x25,0xd4,0xf9, +0x36,0x49,0xd2,0x52,0xab,0x42,0xc4,0xef,0x5c,0xa8,0x81,0xd1, +0xff,0xf2,0x60,0x64,0x3b,0x57,0x54,0x5c,0x07,0xa7,0x58,0x7e, +0xc4,0x9d,0xf9,0x52,0xc3,0x39,0xef,0x77,0xa5,0x21,0x11,0xe1, +0x30,0xb8,0x9f,0xb1,0x7e,0xda,0xd3,0xea,0xc6,0xe2,0xc2,0xf3, +0xfa,0xe5,0x8a,0x9e,0x3b,0x5f,0x3d,0xa6,0x63,0xda,0xec,0x3b, +0xa2,0x20,0xf7,0xa3,0xcb,0x74,0x91,0xb9,0x1b,0x8c,0xad,0x5d, +0xde,0x31,0xf9,0xc9,0x4a,0xff,0x70,0x53,0x7f,0x4d,0x3a,0xf4, +0x90,0x3d,0x35,0x27,0x59,0x5b,0xdf,0x8c,0xb5,0xd0,0x0e,0x53, +0xfb,0x6b,0x59,0x3b,0xdf,0xc4,0x93,0xd0,0xd6,0xb2,0xcf,0x64, +0x84,0xd7,0xee,0x87,0x1c,0xec,0xe8,0x22,0xfa,0xc4,0x6d,0xfd, +0x13,0xf1,0x0d,0x15,0xdd,0x99,0x73,0x52,0x16,0xb5,0xbd,0x42, +0x0e,0x57,0x67,0xd4,0xdf,0x34,0xdc,0xf1,0x0f,0x94,0xdc,0x37, +0x8c,0x33,0x13,0xc0,0xc5,0xed,0xf9,0x9f,0x3e,0x07,0x02,0x49, +0x3a,0x76,0x20,0x58,0xaa,0xa0,0x04,0x1a,0x41,0x90,0xee,0x5e, +0x4b,0xdd,0xff,0x0f,0x59,0x00,0xdd,0xff,0x26,0x35,0x19,0xf5, +0xb7,0x0d,0xf7,0xfd,0xfd,0x24,0xb7,0x0d,0x81,0xa2,0xe7,0x5c, +0x52,0x66,0x6c,0x2a,0x92,0x2a,0x23,0x3e,0x15,0x1c,0x11,0xd0, +0x60,0x85,0xd8,0x88,0x9b,0xd9,0xb5,0xd4,0xe2,0x89,0x0a,0x8d, +0xd8,0xb5,0xf5,0x2f,0xf0,0x12,0x7c,0xd0,0x86,0x16,0x7c,0x03, +0xa2,0x24,0xaa,0x32,0xf8,0x98,0x37,0xfc,0x26,0x4a,0xdd,0xa2, +0x83,0x42,0x47,0x18,0xc3,0x3e,0xdf,0x84,0x6d,0x17,0x12,0x90, +0x15,0xba,0x3c,0x8d,0x2b,0xd5,0xeb,0xfc,0x2b,0xe8,0xb0,0x7c, +0x5c,0x7f,0x68,0x8d,0xac,0xd0,0xd7,0xb2,0xab,0x4f,0x54,0xbf, +0xb0,0x43,0x99,0x08,0x27,0x6f,0xe6,0x98,0x76,0xd9,0x94,0x15, +0x9b,0x0a,0x8e,0xe2,0xd7,0xdd,0x32,0xdc,0xf7,0xe3,0xb7,0x16, +0x1d,0xa8,0x92,0x4c,0x67,0x52,0x62,0x41,0x10,0xb8,0x91,0x5e, +0x43,0x3b,0xb6,0x22,0x08,0xdc,0xb0,0x6a,0xe1,0x97,0xd6,0x52, +0x8f,0xa3,0xa4,0x2b,0x33,0x60,0xff,0x0c,0x81,0xfd,0xa0,0x3a, +0x37,0x82,0x5d,0x11,0xca,0x3e,0xd1,0xc0,0x32,0xd3,0x11,0xea, +0xf8,0x3d,0x76,0x33,0x7d,0xc4,0x5a,0x07,0x0b,0x4d,0x7a,0xf6, +0x63,0x0d,0x78,0xb1,0x2e,0x10,0x48,0x3e,0xd9,0xfb,0xc5,0xef, +0x86,0xa7,0xb0,0x72,0x22,0xf3,0x8c,0x96,0x92,0xa1,0x55,0xec, +0xa0,0xb5,0x23,0x03,0xb6,0x78,0x6f,0x1b,0xbd,0xdd,0xea,0xc4, +0xe7,0x87,0x9e,0xfd,0x69,0xf8,0x4c,0x7c,0xb7,0x8e,0x7f,0xd7, +0x7a,0x7d,0xdf,0xf7,0x86,0x59,0xed,0x98,0x31,0x83,0x5a,0xfc, +0x4c,0xb2,0x8e,0x99,0x77,0xb7,0xf7,0x8b,0x44,0x4e,0x5b,0x6a, +0xff,0x75,0x4b,0xff,0xb4,0x9d,0x5c,0xcf,0x5e,0x45,0xbf,0xf1, +0x30,0xe6,0x35,0xc6,0xbc,0x83,0xff,0xfd,0x90,0x98,0x3a,0xc2, +0x70,0x41,0x6a,0x6a,0x92,0xb4,0x12,0xeb,0xd6,0x54,0xcb,0xe7, +0xe1,0x5d,0x6a,0x68,0x4d,0x4c,0x6b,0x84,0xd7,0xc1,0xa7,0xf8, +0x89,0x17,0xa7,0x09,0xb5,0xfd,0x81,0x7c,0x58,0x98,0x51,0x94, +0x52,0xd3,0x34,0x91,0xa0,0x6f,0xe8,0x39,0x7d,0x32,0xb4,0x77, +0xe7,0xbe,0xe1,0x9d,0x2b,0x95,0x65,0x67,0x4b,0x53,0x77,0xa5, +0xe1,0x36,0x62,0x57,0xe8,0xcc,0x7d,0x43,0x4b,0xa5,0xff,0x1d, +0xe1,0xe8,0x65,0xf9,0xc1,0x09,0x67,0x72,0x48,0xf3,0x15,0x18, +0x09,0xb5,0x9e,0x4a,0xb6,0xa6,0x1c,0x2b,0xc8,0x2c,0x4c,0xa9, +0x52,0x65,0x6c,0xee,0xc3,0x65,0xb4,0xeb,0x8e,0x32,0x2e,0x57, +0x9e,0x3f,0x7b,0x3e,0x75,0x57,0xfa,0x8e,0xd4,0x2d,0x94,0x4e, +0x24,0xd4,0xd0,0x91,0xdc,0x83,0xd5,0x98,0x7a,0x91,0xd9,0x20, +0xe9,0xe5,0x67,0x24,0x11,0x83,0xd8,0x2f,0x79,0x18,0x37,0x9a, +0xb0,0x05,0x30,0x4a,0x8e,0x0c,0xa6,0x36,0x35,0xa4,0x71,0xea, +0x64,0xa3,0x0d,0x6d,0x5f,0x45,0xd8,0xbe,0xef,0x65,0x58,0x36, +0x9e,0xb9,0x4f,0xd5,0x40,0xfb,0x69,0x81,0xe0,0xec,0x62,0xbc, +0x38,0xcb,0x92,0x75,0x67,0x56,0x17,0x1f,0xb1,0x5e,0x06,0xc5, +0x43,0x89,0x7a,0x99,0x43,0xe4,0x0d,0x99,0xd4,0xed,0x3d,0x82, +0xbe,0x58,0x89,0x1e,0xc9,0xaf,0x21,0x84,0xf5,0xd0,0x6c,0x1e, +0x39,0x7d,0x16,0xb4,0x1b,0xcc,0x6f,0xe3,0x76,0x75,0x45,0xc1, +0xd9,0x82,0xf4,0xd4,0x74,0x2c,0xd9,0xe8,0x0a,0x1a,0xe1,0x94, +0x61,0xab,0xa9,0x85,0xfe,0xeb,0xc7,0x3a,0x46,0xb3,0x15,0x63, +0x61,0x3d,0xb5,0xa2,0x44,0x46,0x0a,0xb2,0x98,0xb8,0x58,0x6a, +0xdc,0x45,0xca,0x67,0xe8,0x6e,0xd6,0x55,0x14,0x65,0x17,0xa1, +0x27,0x47,0xdd,0x93,0x89,0xdf,0xba,0xb1,0x8e,0x1b,0x59,0x8c, +0x1f,0x6c,0x3b,0x26,0x9c,0xbf,0xad,0x29,0x47,0xb3,0x33,0x73, +0x76,0x15,0xbd,0xd1,0xd6,0xca,0x7b,0x3a,0x77,0x03,0x87,0x95, +0x71,0x0f,0xbd,0x0a,0xf9,0xba,0xd3,0xd2,0x45,0x7d,0x49,0x17, +0xb0,0x7c,0x63,0x40,0x2e,0x65,0x03,0x8b,0xf2,0x87,0x75,0xc7, +0x9a,0x5d,0xc8,0xec,0xcc,0x5c,0xea,0xfc,0x80,0xdc,0xa9,0xad, +0x2c,0x3a,0x5b,0x98,0xb6,0x87,0xdf,0x24,0xa5,0xa7,0x08,0x3a, +0xef,0x93,0x78,0x04,0xe9,0x73,0x1f,0x1d,0xa1,0x78,0xa2,0xed, +0x45,0x94,0x4a,0x3e,0xbd,0x96,0x9b,0x4e,0x52,0xc7,0x1f,0x08, +0x6c,0x95,0x1f,0xfd,0x89,0xdd,0xd2,0x2f,0xe9,0xde,0xa7,0x36, +0xa3,0xde,0x00,0x23,0x77,0xa0,0xf6,0x58,0x7d,0x64,0xbf,0x8a, +0x80,0x46,0xee,0x8b,0x6a,0x81,0xbb,0x5b,0x7a,0xf8,0x5c,0x79, +0x81,0xf6,0xb2,0x35,0xed,0x5c,0xc9,0x55,0x2d,0x35,0x2c,0xc7, +0xc6,0xc2,0x6c,0x25,0x74,0x91,0x21,0xc4,0x2b,0x68,0xe0,0x80, +0xe7,0x41,0x2c,0x84,0x4d,0x7a,0x7e,0xed,0x9b,0xaf,0xbd,0xae, +0xc1,0x24,0x27,0x36,0x07,0x7a,0xc9,0xb3,0x26,0xcd,0x81,0xae, +0xd0,0x2d,0xf8,0x7c,0x99,0x31,0x4b,0x2a,0x6f,0x2c,0x61,0xdd, +0x58,0xd7,0xcb,0x73,0x67,0x1a,0x51,0xc9,0xf4,0xd2,0x88,0x7d, +0x5e,0x98,0x4b,0x26,0x0c,0x26,0x2c,0x1a,0xfa,0xa3,0x1c,0xff, +0x3e,0xbd,0x9e,0x8f,0x15,0x72,0x6e,0xff,0xf4,0x83,0xd7,0x1d, +0x94,0x33,0x1b,0x86,0xc9,0xd3,0x42,0xa6,0x73,0x39,0x5d,0x83, +0x2b,0xab,0x8c,0x7b,0xa5,0xea,0xc6,0x0a,0xd6,0x95,0x75,0x6d, +0x98,0x31,0x95,0xbf,0x62,0x97,0x8f,0x09,0x37,0x87,0x5e,0xaa, +0x39,0x8c,0x6f,0xaa,0x26,0x2a,0xe5,0xd6,0x49,0xa4,0xdc,0x5a, +0x38,0x05,0x29,0xb7,0x90,0x04,0x37,0x6d,0x77,0x3a,0x92,0x6d, +0xa1,0xfd,0xfb,0x4f,0xb4,0x58,0x82,0x49,0xbf,0x06,0x42,0x96, +0x08,0xf2,0xaf,0x09,0x83,0xda,0x83,0xda,0x2e,0x53,0x6b,0x5b, +0x31,0xb1,0xdd,0x65,0x11,0x5e,0xda,0xc6,0x58,0x35,0xfb,0x3a, +0xb7,0xad,0x67,0x4a,0xf5,0x69,0xbb,0xd3,0x30,0xc2,0xd1,0xc3, +0x5b,0xd8,0xae,0xe8,0x1f,0xd1,0xae,0x48,0xef,0x4f,0x6e,0xf0, +0xc9,0xbc,0x9e,0xcd,0x0c,0x80,0x45,0xf8,0xf6,0x5f,0xcd,0x24, +0x8a,0xb3,0xf2,0x16,0xa5,0xdc,0x89,0x78,0xfa,0x9d,0x8c,0xd9, +0x61,0xd1,0xb8,0x73,0x12,0xeb,0xd8,0x1d,0x3a,0xf2,0x7f,0xa1, +0xfb,0x3d,0xd3,0x76,0x5f,0x30,0x62,0xd9,0xa3,0xbf,0xcc,0xba, +0xc3,0x80,0xda,0x0a,0xe8,0xce,0x7a,0xc5,0xed,0xdb,0xb8,0x8b, +0x47,0x17,0x6a,0x75,0x6e,0x75,0x56,0xcd,0x55,0xc3,0x1e,0xd6, +0xed,0x9a,0x62,0x1d,0xc4,0x7a,0x6f,0x91,0xc0,0x66,0xa6,0x0f, +0xed,0x30,0x90,0x54,0x5f,0x38,0x5b,0x47,0xad,0xf9,0x9b,0x91, +0x43,0xf8,0x5b,0x1d,0x78,0xdf,0xb4,0xc9,0x07,0xce,0x4a,0x30, +0x84,0xf1,0x5f,0x15,0x3d,0x91,0x45,0x6b,0xdc,0xa0,0x4a,0x66, +0x5e,0x20,0x53,0xc3,0x2b,0x92,0x2e,0x78,0xdd,0xad,0xf0,0xdc, +0x8e,0x9e,0xd0,0x91,0xff,0x0b,0x3d,0xee,0x99,0x36,0xfb,0x62, +0x73,0x9d,0x5c,0xf0,0x41,0xa3,0xdc,0xaf,0xa6,0x9c,0x8f,0xdd, +0x93,0x12,0x4b,0x82,0x8d,0x59,0x3f,0xac,0xc2,0x71,0x77,0xb3, +0xde,0x57,0x15,0xdb,0x09,0xac,0x17,0x1f,0xb7,0xfd,0x4c,0x5f, +0x1c,0xb7,0xaa,0x3e,0xbb,0x5e,0x9f,0x96,0x9e,0xb5,0x33,0x23, +0x51,0x95,0xd7,0x0b,0x3a,0x86,0x72,0x79,0x5d,0xee,0x99,0x36, +0xf8,0x82,0x23,0xca,0x1b,0x85,0xf2,0xfa,0x08,0x79,0x9e,0xdc, +0x43,0xda,0xbd,0x21,0x4e,0x1f,0xb7,0x09,0x65,0x56,0x66,0xd5, +0x34,0x72,0x99,0xbd,0xae,0x28,0x36,0x13,0x85,0x4c,0x32,0xd3, +0x0f,0x1c,0x41,0xcf,0xed,0xde,0x9d,0x3b,0xd5,0xf5,0x5c,0x4f, +0x8b,0x1f,0x14,0xda,0x22,0xd4,0x70,0xcf,0xb4,0x9c,0x3a,0x04, +0x09,0xf3,0x33,0x28,0xf4,0x9e,0xe9,0xbc,0xaf,0x32,0x56,0x82, +0xcf,0x5d,0x78,0xe8,0x34,0x50,0x53,0x4a,0x2e,0xea,0x3e,0xd8, +0xfa,0xfe,0xd6,0x55,0xdb,0xac,0xf6,0xdf,0x4c,0xbb,0xf3,0xd8, +0xf0,0xb1,0xd2,0x26,0x8c,0xd5,0xc4,0x98,0x5e,0x10,0x78,0x18, +0x9b,0x16,0xc1,0xae,0x1d,0xdc,0xba,0x64,0xcb,0xb2,0xa4,0x65, +0xfa,0x04,0x77,0x68,0xb7,0x15,0x24,0xc7,0xd4,0x49,0x3e,0xaa, +0xa8,0x96,0x82,0xb9,0xcf,0x5d,0xb9,0x28,0x2f,0xaa,0x89,0x21, +0x98,0x6a,0x1c,0x8c,0x05,0x23,0xc0,0xed,0xeb,0x41,0x24,0xaf, +0xe4,0x8a,0x76,0xb7,0x50,0xb4,0x2e,0xd4,0xc1,0x99,0x34,0xf7, +0x9b,0xdc,0x79,0x54,0xbe,0x6b,0x0a,0xa0,0x0e,0x07,0x89,0xd6, +0xf4,0xfc,0x45,0x2a,0xb5,0x6f,0x22,0x2f,0xb6,0xf1,0xd9,0x8a, +0x75,0x1c,0x5a,0xd3,0xef,0xa6,0x28,0x99,0x4f,0x8b,0x8d,0x0f, +0x4d,0x27,0xbc,0x21,0x16,0xf4,0xec,0x3d,0x6f,0x65,0x17,0xf7, +0x56,0xdd,0x4d,0xd3,0xa1,0x8e,0x68,0xfb,0x11,0x36,0xc7,0xb4, +0x45,0x16,0xb0,0xb4,0xd7,0x07,0x2a,0x94,0x54,0x3d,0xde,0x2a, +0x0b,0x20,0x29,0x5f,0x6f,0xc7,0x54,0x95,0xdb,0xd8,0xd4,0x10, +0xac,0xa5,0xce,0xce,0x64,0xea,0x12,0x52,0xdd,0x98,0xf7,0xc1, +0xd9,0x89,0x87,0x8d,0x7b,0xa8,0xf5,0x58,0x02,0x46,0x79,0xb2, +0x06,0x2c,0x67,0x9c,0x29,0x2e,0xaa,0x38,0xc3,0x2c,0x9d,0xea, +0x34,0xcc,0xb2,0x62,0xc5,0xfc,0x79,0x33,0x56,0x80,0xa5,0xd3, +0x1b,0x97,0x4a,0x2f,0x10,0x84,0xa6,0x3b,0x25,0xc2,0xcf,0x71, +0x4d,0x6d,0x69,0xfb,0x77,0xb9,0x23,0x1a,0xfa,0xed,0x38,0x48, +0x10,0x13,0xbe,0x64,0x9c,0x86,0x3d,0xe2,0xc2,0xb0,0x3f,0x97, +0x5a,0x85,0x85,0x80,0x5c,0x2c,0x6d,0xc7,0x46,0x62,0x3d,0x17, +0x4f,0xc7,0x46,0x62,0x95,0x73,0xaf,0xd5,0x95,0x15,0x9d,0x56, +0x1b,0x94,0xa5,0x61,0x32,0x58,0xab,0xab,0x3a,0xaf,0x36,0x12, +0x0b,0xfd,0xb9,0x25,0xa7,0x57,0x6b,0xee,0x25,0xac,0xe2,0xa3, +0xb1,0x97,0xf0,0x61,0xb8,0x29,0x9b,0x36,0x42,0xcc,0xc7,0xac, +0x46,0xb9,0xa2,0xb1,0x51,0xaa,0xa8,0x66,0x22,0xf6,0x5a,0xc9, +0x93,0xd9,0xcd,0x06,0x6c,0x78,0xb3,0x0d,0xbe,0xa7,0xb6,0x16, +0xe4,0xf0,0xc3,0x7d,0x4f,0x7e,0x36,0xbd,0x4f,0x7c,0xa8,0xa5, +0x35,0xf9,0xdc,0x54,0x4f,0x3c,0xd7,0x0f,0x5f,0xe9,0x6d,0x05, +0xc9,0x81,0x5a,0xaa,0x8b,0x20,0x7d,0x5f,0xfd,0x6e,0xce,0x81, +0xb5,0x05,0x9d,0xae,0xa6,0xba,0xa0,0xe8,0x44,0xe9,0x2e,0xea, +0x36,0x84,0x64,0xc4,0xed,0x52,0xdb,0x29,0x17,0x65,0x96,0x54, +0x1a,0x6a,0x7c,0x66,0x49,0x83,0x57,0x45,0x4c,0x18,0x6f,0x0c, +0xba,0x97,0x90,0x19,0x8b,0x08,0x4f,0xb5,0x19,0x55,0x7e,0x3a, +0x0f,0x5d,0xab,0xf9,0xb7,0x1e,0x5a,0x39,0xf8,0x59,0x2f,0xaf, +0xe0,0xe7,0x63,0xef,0x9b,0x3e,0xa2,0x6e,0x1f,0x91,0x02,0x28, +0x96,0xa9,0xf3,0xe7,0x84,0x76,0xa8,0x21,0x46,0xf8,0x28,0x55, +0x3e,0x22,0xdd,0x2a,0x3b,0xd7,0x70,0xa9,0x7c,0x69,0x80,0x71, +0x9d,0x44,0x3b,0x74,0x21,0xd8,0x2b,0xb4,0x9f,0xd7,0xa4,0xe7, +0x21,0xf7,0x4d,0x5b,0xa9,0x9b,0x2d,0x81,0x6c,0xf9,0xd2,0x9a, +0xf3,0x33,0x3f,0x32,0xa6,0xfd,0xc6,0x63,0xf7,0x10,0x66,0x99, +0x24,0xcd,0x5c,0xbd,0x66,0x6e,0xa8,0xa1,0xdf,0xfd,0xe0,0xdf, +0x7e,0xbd,0xdf,0xf8,0x1d,0x17,0x93,0x26,0x1f,0x92,0x6e,0x96, +0xe5,0x70,0x31,0xcb,0x02,0x8d,0xd1,0xd2,0xb8,0x99,0xcb,0x42, +0x43,0x66,0xe5,0xdc,0x30,0x6a,0x5f,0xb4,0x41,0x08,0x45,0x47, +0xd8,0x74,0xdf,0x54,0x84,0x10,0x8a,0x8e,0x6c,0xad,0xaf,0xb2, +0x9f,0xcf,0xab,0x18,0x13,0xa5,0xfa,0x51,0x18,0x68,0x79,0x13, +0x93,0x85,0xbc,0x63,0x48,0x9c,0xdf,0xc6,0xd0,0x3b,0x09,0xba, +0x03,0xd7,0x0f,0x7c,0xfe,0x9d,0xa1,0x91,0x76,0xf8,0x01,0x79, +0x75,0x03,0xe3,0x86,0x6e,0xea,0xb7,0xd9,0x8a,0x8d,0xf6,0x03, +0x1f,0xea,0x72,0x83,0xa0,0xbc,0xe9,0x28,0x6f,0xcb,0x7d,0x53, +0x9d,0x0f,0xec,0xe6,0xf2,0x12,0x7c,0x95,0xd3,0x42,0x5e,0x77, +0xda,0x6e,0x8c,0xf0,0x22,0x3e,0xfc,0x44,0xa3,0x2c,0x61,0x63, +0x64,0x66,0xf8,0xf5,0xfa,0xdf,0x7f,0x77,0xbf,0x0e,0x06,0x30, +0x74,0x1f,0xef,0xe6,0xf6,0xeb,0x78,0x66,0x70,0x82,0xde,0xcc, +0x5b,0xbe,0x7e,0xad,0xf8,0x27,0xda,0x21,0x8c,0xcc,0xeb,0xd5, +0x2b,0xa8,0xf8,0xba,0xd1,0xb4,0x02,0x16,0x2b,0x8c,0x68,0x9b, +0xee,0x10,0x65,0x0b,0x37,0x0c,0xdc,0x06,0x38,0xf0,0x05,0x31, +0x91,0x28,0x5b,0x77,0xf0,0xa3,0x36,0x68,0x27,0x1a,0x74,0x4b, +0xb6,0xcc,0xdf,0x32,0x77,0xab,0xd5,0xfe,0x7b,0xe9,0x0f,0xbe, +0xa4,0xd2,0x0c,0xb2,0x64,0xcb,0x92,0x4d,0x4b,0xf5,0x89,0x5c, +0x53,0xba,0x6d,0x05,0xa3,0x28,0xf8,0xd3,0x36,0xcd,0xe3,0xd7, +0x1c,0xe1,0xd7,0x74,0x54,0xaf,0x59,0xbc,0x65,0xc1,0x56,0xf5, +0x9a,0x87,0x4f,0xf1,0x9a,0xc5,0x9b,0x97,0x24,0x2d,0x69,0xb9, +0x06,0x36,0x0a,0x6c,0x44,0xee,0x43,0x8d,0xf2,0x81,0x69,0x3f, +0x35,0xfc,0x48,0x60,0x16,0xb5,0x89,0x14,0x88,0xab,0x1d,0x8f, +0x34,0x70,0x2c,0x9d,0x3a,0x74,0x16,0x47,0x59,0x78,0x94,0x45, +0x1d,0x1c,0xf9,0xdb,0x51,0x89,0xd3,0xff,0x37,0xc6,0x0b,0xad, +0x9e,0x82,0xe1,0x5d,0xdd,0x13,0x41,0x9e,0x6e,0x0d,0x3b,0x30, +0xbc,0x43,0x85,0xec,0xc2,0x15,0xb2,0x2e,0x9d,0x80,0x81,0xba, +0x84,0x93,0xa4,0x5e,0x58,0x6f,0x62,0x2d,0x98,0x90,0xbf,0xdf, +0x2c,0x2d,0xd8,0x10,0xfd,0xee,0x12,0x43,0xe8,0xe5,0x59,0xbf, +0xfc,0x7c,0xb9,0xec,0x52,0x6e,0xf4,0xe9,0x85,0x07,0x8d,0xa9, +0x52,0x1f,0xd0,0xcb,0xeb,0x35,0x93,0x97,0x1c,0x3f,0x5f,0x92, +0x7b,0xa2,0xce,0xe9,0xb0,0xa6,0x36,0x6f,0xd5,0xdc,0x39,0x8b, +0x57,0x47,0x3a,0xd9,0x60,0x1f,0xf3,0x79,0xd8,0xd7,0xd9,0xe1, +0xdb,0x37,0xfa,0xd3,0xf9,0xc8,0x53,0xd8,0xa0,0x59,0xf7,0x4c, +0xf7,0x7c,0x91,0x13,0x24,0x99,0x8d,0xa0,0x7a,0x2d,0x26,0x38, +0xfb,0x22,0x60,0x6a,0xe0,0x04,0x36,0xd0,0x95,0x5a,0x5c,0x27, +0xec,0x02,0xd5,0xab,0xaf,0xa7,0x82,0x5b,0xe1,0xcf,0x4d,0x27, +0xa8,0xc3,0x3c,0xfe,0x3a,0xaf,0x8a,0x84,0x7e,0x32,0xf7,0xca, +0x34,0xac,0x90,0x3a,0x2c,0x68,0xf9,0x68,0x99,0xf8,0xe8,0x43, +0x39,0x98,0xb5,0x82,0x90,0x7b,0xa6,0x00,0x5f,0x08,0x96,0xe0, +0x2a,0xf4,0x55,0xac,0x09,0x3b,0xcc,0xac,0x2f,0xc3,0x04,0xa5, +0x63,0xad,0x74,0xe7,0x42,0x46,0x06,0x95,0x8e,0x63,0x64,0xd8, +0xf1,0x32,0x44,0x2a,0x9d,0x9a,0x16,0x12,0xed,0x6e,0xae,0xb9, +0xb8,0x29,0x1f,0xc4,0xee,0x53,0x8f,0x39,0xe4,0x51,0xd5,0xa5, +0xa3,0x9f,0xe8,0x59,0x6b,0x98,0x2c,0xa4,0x8c,0xeb,0xae,0x49, +0x3e,0x94,0x7c,0x88,0xd2,0x9d,0xe2,0xc4,0x64,0x71,0xe2,0x33, +0xea,0xb0,0x4c,0x1c,0xa6,0xde,0xd7,0x40,0x1a,0x7f,0xea,0xd8, +0x7a,0xd8,0xd9,0x89,0xc0,0x53,0x16,0xc1,0x98,0x80,0xc7,0xa7, +0xf0,0xe9,0x44,0xad,0x0f,0xf3,0x27,0xc9,0x82,0xbd,0x95,0x00, +0xae,0xe3,0xbe,0x44,0xc0,0x8a,0xf6,0x55,0x57,0xa2,0x1c,0xbc, +0xa1,0x81,0x0a,0xee,0xa4,0x3b,0x2c,0xc1,0x54,0xcc,0x44,0x52, +0xaf,0x72,0x4a,0xad,0xa5,0x4e,0x31,0x84,0xda,0xb4,0x22,0x98, +0x0c,0xc3,0xbf,0x7c,0x5e,0x59,0x3b,0x12,0xdc,0xb5,0xe3,0x4f, +0x79,0x38,0xa2,0x2d,0xe6,0x67,0xd7,0xd6,0x16,0x51,0xb7,0xe9, +0x84,0x6a,0x4c,0xfc,0xb4,0x26,0xf1,0x97,0xdb,0x37,0x42,0x36, +0x4b,0x73,0x54,0xf6,0xeb,0xab,0x91,0x7f,0xfe,0x75,0x15,0x7b, +0x8f,0xe6,0xcc,0x39,0x6c,0x4c,0x93,0xbc,0xa0,0xa7,0xbc,0x51, +0x13,0x36,0xff,0x74,0x65,0x45,0xd1,0xe9,0x8b,0x4e,0x07,0x90, +0x12,0x60,0xc6,0xf4,0x05,0xef,0x86,0x39,0xd9,0xbc,0xac,0x25, +0x1b,0x17,0x8a,0xf4,0xdb,0x73,0x14,0x25,0x6f,0xa6,0xd2,0x10, +0xd2,0xdf,0x91,0xa5,0x50,0x2a,0xa9,0x85,0x77,0x2c,0x0a,0xda, +0x50,0x67,0x5f,0xc2,0xda,0x48,0x3e,0x7d,0xa8,0x7b,0x0d,0xf9, +0x81,0x25,0x49,0x3f,0x43,0xf4,0xcb,0x0f,0xc8,0xab,0x07,0xe8, +0xcd,0xd8,0x50,0x67,0x1f,0xc2,0x23,0x37,0xef,0x2e,0x2f,0x7f, +0x21,0x7f,0xb0,0x75,0xd2,0x5f,0x90,0x41,0xdb,0x9f,0xe0,0xde, +0x66,0x08,0xf8,0x5c,0xaa,0x86,0x60,0x36,0x32,0x76,0xef,0x06, +0x91,0x1d,0x8f,0xe3,0x16,0xee,0xb8,0xb0,0x9a,0xfb,0x59,0xc8, +0x75,0x65,0x06,0x75,0x1f,0x40,0x2e,0x4d,0xfd,0xea,0x71,0x63, +0x43,0xe1,0x15,0xb4,0x6b,0x4b,0xe0,0x80,0xfc,0x0e,0x24,0x28, +0x5f,0x92,0xa6,0x8d,0x84,0x39,0x43,0x39,0xd5,0xad,0x45,0xf0, +0xd8,0x2f,0x2c,0xf0,0x0a,0xfc,0xc5,0x7a,0xb0,0xe7,0x57,0x94, +0xfe,0xf0,0x11,0x1b,0xde,0xd5,0x0c,0x21,0xe3,0x4f,0x3c,0x84, +0xb0,0xa2,0x58,0x39,0xb9,0x77,0xcc,0xe8,0x75,0x01,0xb7,0xe3, +0x74,0x47,0x1f,0xec,0xff,0xf4,0x67,0xc3,0x5d,0x6a,0x7d,0x94, +0xc0,0x7d,0x6a,0x51,0x4e,0x98,0x8f,0x0f,0xf8,0x53,0x9b,0x7d, +0x7c,0xf6,0x25,0xf7,0x5f,0x39,0x62,0xa9,0xff,0xcd,0x68,0x5d, +0xbe,0x00,0xb9,0xda,0x1e,0x26,0x5e,0xb4,0xc3,0x67,0xe4,0x11, +0xb5,0xcd,0x47,0x2c,0x11,0x9e,0x3c,0xd6,0x07,0xc6,0x51,0xdb, +0xfe,0xe4,0x38,0xeb,0xe5,0x64,0xbe,0x60,0xec,0x2d,0x15,0x15, +0xfb,0xac,0x05,0x15,0xdb,0x33,0x66,0xd4,0x5a,0x7f,0x1c,0xeb, +0xa1,0x40,0xc5,0x7e,0xfa,0xea,0xff,0xe3,0xeb,0x3d,0xc0,0xa2, +0x48,0x9a,0xf8,0x61,0xef,0x64,0x67,0x96,0x46,0x01,0xc3,0xe8, +0xee,0xd2,0xee,0x82,0x60,0xc6,0x9c,0xce,0x33,0x13,0x54,0x90, +0x1c,0x15,0x31,0x62,0xc2,0x9c,0x13,0x39,0x19,0x10,0x3c,0x01, +0x05,0xcf,0x9c,0x05,0x51,0x11,0x44,0x45,0x04,0x94,0x8c,0x59, +0x30,0x9c,0xd9,0xf3,0xee,0xd4,0xcb,0xe7,0xc5,0x5a,0xad,0xd1, +0xf7,0xeb,0x9e,0x05,0xdf,0x7b,0xff,0xff,0xef,0xfb,0x1e,0x9f, +0xc7,0x1d,0x66,0xba,0xaa,0x7b,0x76,0xbb,0x2b,0x74,0x57,0xfd, +0x6a,0x20,0x81,0xb1,0x6c,0x9a,0x28,0x51,0xb1,0x2b,0xb3,0x0e, +0x43,0x1f,0x03,0x1b,0x98,0xbf,0xa9,0x71,0x9f,0x28,0xa7,0xd5, +0xee,0xb7,0x68,0x2b,0x67,0x82,0x91,0x7e,0x30,0x58,0x84,0x76, +0x78,0x83,0x13,0x8c,0x76,0x45,0xd7,0xff,0x25,0x08,0x20,0x50, +0xc8,0x08,0x06,0x44,0xbb,0xac,0x1e,0x7f,0x2b,0x56,0xb3,0xef, +0xf6,0x97,0xf7,0x5e,0xeb,0x6e,0x72,0xaa,0x41,0x22,0xb4,0xc7, +0x1a,0x4e,0x35,0xd2,0x15,0x9d,0xa9,0x1d,0x0f,0xd8,0xe0,0xcd, +0x0b,0x78,0xf3,0x28,0x97,0x35,0xe3,0x6f,0x7e,0x6c,0xae,0xbc, +0x78,0x8d,0xe4,0x1a,0x3b,0x30,0xa1,0xe7,0x7a,0x35,0x6f,0xef, +0x44,0xed,0x2a,0xb9,0x08,0xe8,0x81,0xe4,0x07,0x6f,0x2c,0x86, +0x38,0x01,0x4a,0xa0,0x44,0xf2,0xe6,0x7f,0xfb,0x28,0x7f,0x23, +0x30,0xab,0xa2,0x81,0xc0,0xc5,0x6e,0xfc,0x03,0x77,0xc9,0x4e, +0xdc,0xd8,0xa4,0xfa,0xb9,0x24,0x16,0x17,0x2a,0xf8,0x47,0x4c, +0xbe,0x3b,0x62,0x8b,0xef,0x7d,0xf0,0x9c,0x42,0x4e,0x1d,0x66, +0x12,0xfc,0xa7,0x54,0xc2,0x16,0x3f,0x43,0x0b,0x01,0x2e,0x76, +0x6f,0xbc,0xc2,0xdd,0xf2,0x50,0x1e,0x41,0x4e,0x3b,0xfc,0x45, +0xf8,0x09,0x9d,0x2f,0xb5,0x5f,0x4f,0x66,0x6f,0x54,0xef,0xba, +0xba,0xfd,0xe6,0x53,0x5d,0x03,0x2e,0xf4,0x81,0x2e,0x71,0x62, +0xea,0x00,0xea,0x30,0x91,0x3c,0xfa,0x5a,0x77,0x1d,0x17,0xf9, +0xd0,0x8e,0x5a,0xe2,0xf9,0x7e,0x8a,0xd2,0x7c,0x3c,0x35,0xd7, +0x91,0x4a,0xcd,0x82,0x0d,0xe1,0x1b,0xe7,0x6c,0x54,0xef,0xac, +0xdb,0x7e,0xfd,0xb1,0xae,0x1e,0x17,0xfa,0x41,0xd7,0x18,0x31, +0x65,0x70,0xf4,0xd8,0x75,0x5e,0xd4,0xfc,0x03,0xb9,0xb9,0xf3, +0xd1,0x53,0xdd,0x55,0x5c,0xc4,0x6e,0x47,0x8b,0x29,0x83,0xd6, +0x3a,0xad,0x70,0x57,0x27,0x4f,0x0a,0xd9,0x1c,0xc2,0x46,0xca, +0x19,0xd1,0x4e,0x8f,0x88,0xec,0x2a,0x4d,0x82,0xc1,0x53,0xea, +0x8d,0x0d,0xae,0xf2,0x4a,0x51,0xee,0x05,0x35,0x54,0xbb,0x9a, +0x04,0x59,0x48,0x40,0xd1,0xf2,0xb6,0x71,0xc5,0x18,0x26,0xef, +0xf4,0x42,0x55,0xb8,0x4f,0xee,0x68,0x1b,0x24,0xc3,0x86,0x62, +0x7b,0x6c,0xff,0x68,0x28,0x90,0xfb,0xb5,0x27,0x6a,0x4e,0x1a, +0xb0,0xe8,0x7b,0xe9,0x12,0xb5,0x4e,0x26,0xc1,0xe2,0x88,0x90, +0x89,0x4e,0xa3,0x43,0x4a,0x1f,0xe8,0x8d,0xa3,0x98,0x57,0x64, +0x8d,0x22,0xd9,0xaf,0x3b,0xb8,0x69,0xff,0xfa,0x7d,0x7a,0x85, +0x57,0xeb,0xdb,0xc6,0x98,0x31,0xd8,0x02,0x0d,0x42,0xd5,0x3c, +0x9f,0xe3,0x0a,0xaf,0x61,0x5c,0x75,0x70,0x5e,0x5f,0xd5,0x9e, +0xac,0x3d,0x61,0xc0,0xf3,0xaf,0xa5,0x0a,0xf1,0x61,0x49,0xc9, +0xdd,0x3b,0xa5,0x21,0xcc,0x6b,0x16,0x87,0x4f,0x0c,0x71,0x76, +0x0a,0x29,0x79,0xa8,0x37,0x8e,0xfc,0x5e,0xc2,0xd6,0x8c,0xe3, +0x01,0xc6,0xf1,0x80,0x89,0x63,0x07,0xfc,0xe4,0xb6,0x71,0xe6, +0x18,0x14,0xd8,0xe8,0x2a,0x9b,0x46,0x37,0x8c,0x8d,0xae,0x5d, +0xe3,0xe8,0xaa,0x39,0xc7,0x1f,0xa4,0x32,0x3e,0xba,0x09,0x6c, +0x74,0x21,0x6c,0x74,0x25,0x7c,0x74,0xdf,0x4a,0x3c,0x4e,0xad, +0x71,0x74,0x7b,0x99,0x12,0x55,0x19,0x23,0x38,0xfa,0xda,0x92, +0x06,0x63,0xb2,0x0b,0x2e,0x41,0x6b,0x98,0xe1,0x22,0xaf,0x60, +0x92,0xab,0xb9,0x29,0x56,0xc5,0x82,0xc9,0xa0,0xc8,0x07,0xc6, +0x48,0x11,0x9f,0x46,0xd0,0xf6,0x29,0xc4,0x22,0x86,0x59,0xa4, +0x2f,0x9f,0x42,0xdb,0x3f,0x7d,0x6a,0x91,0x1e,0x37,0xf8,0xed, +0x50,0xf5,0xdf,0x37,0x2d,0xe7,0x86,0xee,0x7e,0x45,0xc1,0x77, +0x4f,0x2e,0xcf,0x0b,0xca,0xd7,0x5f,0xbd,0xa0,0xba,0x17,0x3c, +0xfa,0x4c,0x47,0x1b,0xec,0xd0,0x73,0x1c,0x5a,0xdb,0xd6,0xfb, +0x43,0x9b,0x45,0x86,0xaa,0x68,0xd5,0xeb,0x55,0xa7,0xe7,0xb9, +0x51,0x7b,0x15,0x79,0x34,0x19,0xcc,0x6c,0x2c,0xde,0xcd,0xe0, +0x60,0xbf,0x83,0x24,0xda,0xd2,0xcd,0x94,0x83,0x80,0xfd,0x60, +0x3d,0x6d,0xb5,0x50,0xd9,0x97,0x3c,0xcc,0x14,0x97,0xc8,0x04, +0x7b,0xfb,0x2f,0x48,0x53,0x6e,0xa7,0x08,0x17,0x69,0xfb,0x2d, +0x26,0xb1,0x38,0x9b,0x89,0xc5,0x79,0xa0,0x96,0xf0,0xd3,0x3a, +0xa3,0x1f,0xb5,0xcf,0x26,0xdf,0x88,0x98,0x03,0xd7,0xa8,0xcd, +0x4e,0x25,0xfc,0xc6,0x41,0x62,0xc6,0x4d,0x07,0x1e,0x46,0x41, +0x3b,0x1e,0x20,0xbc,0x1c,0xe2,0x70,0x6a,0xb5,0x9c,0x18,0x87, +0xc1,0x09,0xfe,0x5d,0x36,0x87,0xd6,0xa2,0xdc,0x02,0x97,0x51, +0xcb,0x2f,0x94,0xe6,0x5d,0x78,0x73,0xdd,0x6d,0xe3,0xc6,0x31, +0x4c,0x7b,0x36,0xff,0xd6,0x03,0x1d,0x79,0x02,0xb7,0x07,0xf3, +0xd8,0x36,0x73,0xda,0xcf,0xa9,0x83,0x96,0xd3,0x66,0xf3,0x5f, +0xb6,0x39,0x58,0x73,0xda,0x45,0xd4,0x6e,0x01,0xa3,0xfd,0x96, +0xa0,0xe3,0x6d,0xe3,0x86,0x31,0xa8,0xc2,0xe6,0x4f,0x3d,0xd0, +0x8e,0xd1,0x19,0x3c,0x64,0x7b,0x13,0x5d,0x27,0x89,0xdf,0x69, +0x01,0x86,0x77,0xac,0xa9,0x52,0x29,0x40,0x2d,0x95,0xc8,0x56, +0x21,0x2f,0xd7,0x8b,0xb3,0xd6,0xad,0x5b,0x12,0xae,0xf3,0xab, +0x9e,0xfa,0xd3,0xcf,0xd5,0xe7,0xab,0x4e,0xac,0x3b,0x36,0xab, +0x49,0x3f,0xf2,0x4a,0x01,0x87,0x0b,0x0b,0x4f,0x1d,0x32,0x55, +0x0a,0x58,0x3e,0x63,0xc6,0xdc,0x65,0x4c,0x3f,0xf2,0x2a,0x08, +0xba,0xff,0xbf,0xe2,0x05,0xc6,0xbd,0xc4,0x94,0xf8,0xa9,0xd4, +0x39,0xb0,0xf8,0xb0,0x96,0xbc,0x5a,0x2f,0xce,0x5c,0xcb,0x0b, +0x12,0xf8,0x54,0x4f,0x66,0xdd,0x5c,0xa8,0x39,0xb5,0x2e,0x7b, +0xd6,0x6e,0xe5,0x8c,0xa6,0x03,0x93,0xf3,0x13,0xc2,0x0f,0x9f, +0x3d,0x77,0xf2,0x70,0x19,0x93,0xf3,0x65,0x27,0x97,0x4d,0x9b, +0x1e,0xce,0xbb,0xa1,0x2d,0x46,0x71,0x93,0x72,0x37,0x33,0x29, +0x2b,0xa9,0xf5,0x6a,0x42,0x6d,0x2f,0x10,0xe6,0x67,0x79,0x1a, +0xc5,0xcf,0xf1,0x13,0x5f,0x28,0xaa,0xc6,0x4f,0x9e,0x18,0xc5, +0x2b,0xe2,0xfb,0xa5,0xf8,0x50,0x82,0xd1,0x49,0x82,0xc7,0xea, +0x95,0x73,0x67,0xea,0xdc,0x6f,0x32,0xe9,0x0d,0x23,0x6e,0xd6, +0x5c,0x2f,0x58,0x79,0xca,0x83,0x83,0x70,0x8e,0xae,0x7a,0xaf, +0x17,0xe1,0x25,0x2e,0x97,0x96,0x0b,0x1d,0xa7,0x9e,0x2c,0xb9, +0x78,0xfe,0xd4,0x5f,0x86,0x43,0xc2,0x5f,0xe7,0xe7,0x4e,0x0a, +0x99,0x1a,0xde,0xd1,0x60,0xb9,0x9c,0x74,0xa5,0x66,0xb1,0xe4, +0x57,0x58,0x81,0xe6,0x85,0x1b,0xc5,0x77,0xad,0xc9,0xf7,0xa2, +0x25,0x73,0x8c,0xa7,0xc9,0x9a,0x0f,0x3f,0x92,0x0f,0x09,0x04, +0x53,0xf1,0x95,0x94,0x04,0x66,0x30,0x1b,0x56,0x62,0xbe,0x37, +0xcc,0xc3,0x4f,0x71,0x36,0xba,0x1e,0x20,0x55,0xf2,0x69,0x32, +0x8a,0x17,0x31,0x8e,0xa7,0x1d,0xde,0x10,0xa5,0x5c,0xe6,0x7c, +0x58,0x6e,0x4a,0x32,0x90,0x3c,0x9f,0x63,0xbf,0x3b,0xdc,0x1c, +0xdd,0x4f,0xce,0x62,0x21,0x33,0x47,0x1f,0x93,0x5e,0xf7,0xbc, +0xde,0xbc,0xb9,0x5b,0xf7,0xbd,0x1e,0x73,0xd3,0x24,0x6a,0x3d, +0x8d,0xac,0x15,0xdd,0x26,0xcf,0xf7,0xf1,0x99,0x9c,0x7b,0x83, +0xad,0xa5,0x94,0xc1,0xcb,0x46,0xd3,0x56,0x3d,0xc9,0x4b,0x5d, +0x2d,0xb5,0x9e,0x4d,0xfa,0x46,0x39,0xaf,0x76,0xbf,0xce,0xc4, +0x64,0xfd,0x97,0x5f,0xfd,0xc0,0xa4,0xea,0x24,0x5f,0xd0,0x32, +0x35,0x76,0x5d,0x6e,0x49,0xe0,0x33,0x37,0x1c,0x66,0x9c,0x40, +0x14,0x9a,0x51,0x9c,0xe6,0x95,0xae,0x16,0xfd,0xfc,0xc0,0x4a, +0x84,0x14,0x45,0x82,0x73,0x52,0x26,0xee,0x1b,0x38,0xe9,0x2d, +0x9c,0xe4,0xa7,0x90,0xde,0xfe,0x1f,0x52,0xaf,0xe7,0xd8,0xe5, +0x0e,0x33,0x7e,0xdb,0xbd,0x64,0x53,0xc2,0xa6,0x35,0xc1,0x1d, +0x72,0x47,0x26,0xd2,0x84,0xb7,0x94,0x64,0x25,0xd6,0x68,0x96, +0x7f,0xe8,0x46,0x14,0x6b,0x8f,0xdd,0x1b,0x24,0xfc,0x95,0xf6, +0x73,0xc6,0x23,0xda,0xfe,0x35,0x79,0xfc,0x24,0x65,0xcb,0x23, +0x26,0xfb,0x1d,0xec,0x08,0x13,0x56,0x2f,0x5c,0xe5,0x78,0x51, +0xee,0x09,0xd7,0xa4,0xe9,0x11,0xab,0x17,0xcf,0xd1,0x79,0xdd, +0x09,0x83,0xe6,0x60,0xd6,0x70,0xa6,0x2e,0x6f,0xf5,0xb1,0xe9, +0x6c,0x22,0xbd,0x29,0x93,0x03,0x27,0xfc,0x2d,0x32,0xc1,0x63, +0x23,0x2d,0x12,0xbc,0xa6,0x1e,0x3c,0x5f,0x44,0x5b,0x79,0x90, +0x29,0x53,0xa7,0xae,0xf0,0x32,0x98,0x04,0x9f,0x33,0x17,0x7c, +0xcc,0x47,0xbb,0xa1,0x58,0x56,0xbd,0xa0,0x8a,0x0b,0x3e,0x2e, +0x0d,0x52,0xb9,0x34,0x08,0x6b,0x30,0xce,0x77,0xc1,0x29,0x4c, +0x1a,0xf8,0xb8,0xc8,0x6e,0x8a,0x34,0xe8,0xfc,0x41,0xc5,0x47, +0xbc,0x96,0x67,0xee,0x9f,0x94,0x78,0x75,0xb3,0x6d,0xa6,0x72, +0x2b,0x54,0xc7,0xeb,0x06,0x42,0x3d,0x6d,0xe7,0xaa,0x38,0x7a, +0xa7,0xee,0x0b,0xf2,0x6c,0x98,0x21,0xc5,0x57,0xc9,0xd7,0x08, +0xf8,0x42,0xcf,0x1a,0x5c,0x89,0x75,0xd4,0x6a,0x33,0x01,0x4f, +0xe8,0x5b,0x83,0x6b,0xb1,0x0a,0xe2,0x85,0xc2,0x31,0xa6,0x90, +0x3f,0x6a,0xb5,0x4f,0xa1,0x4a,0x53,0xa8,0x42,0xa8,0x4d,0x2f, +0xe2,0x26,0xad,0x90,0xdb,0x32,0x7d,0x97,0xa9,0x9c,0x58,0x30, +0x3f,0x70,0x25,0xf7,0x03,0xd7,0xde,0x35,0x7e,0xc9,0x8f,0x64, +0xb5,0xfc,0x48,0x36,0x81,0xfb,0x81,0x3c,0x32,0xcf,0x42,0x8a, +0x7d,0xcd,0x6c,0xd4,0x49,0x4a,0xe5,0xd0,0x7e,0x38,0x1f,0x1d, +0xdf,0x7f,0x45,0xaa,0x3f,0x3c,0xe3,0x93,0x38,0x8a,0xd7,0xa0, +0x3c,0x27,0x1d,0x04,0x8f,0xf1,0x5b,0x23,0xd0,0x57,0xe5,0x26, +0x44,0x80,0x2f,0x2f,0x1f,0xea,0x61,0xfc,0x8e,0x50,0xad,0x8a, +0x43,0xfc,0xd5,0xa3,0x17,0x6f,0x3a,0xa3,0xa9,0x66,0xe8,0x66, +0xdc,0xc1,0x08,0x06,0xf3,0xa2,0x95,0xc3,0x55,0xee,0x8c,0x60, +0x38,0x47,0xfb,0x1b,0xcc,0x6b,0x86,0x4a,0xf1,0x2f,0x60,0x2e, +0xb3,0x55,0x4e,0x07,0xc0,0xc2,0xcf,0x30,0x9c,0xf5,0x6f,0x70, +0x64,0x76,0x4d,0x13,0xe5,0x26,0x3c,0x26,0x1d,0x02,0x67,0x4e, +0xe9,0xa6,0x94,0xbb,0x74,0xe3,0x94,0xce,0x26,0xca,0xc7,0x8c, +0xd2,0x1d,0x4f,0x07,0xc2,0xc2,0xe1,0x8c,0xd2,0xe6,0x00,0xa9, +0x34,0xc4,0x57,0xa8,0xa2,0x83,0x46,0xf3,0x78,0xb7,0x54,0x08, +0x63,0x4c,0xca,0x4d,0x25,0x4b,0x77,0x28,0x25,0x4b,0xd9,0x78, +0x47,0xb0,0xee,0x23,0x61,0x84,0xfb,0xfa,0x83,0x38,0x44,0xe5, +0x14,0x04,0x8f,0x2e,0xb3,0x75,0x98,0xf0,0x2b,0xcc,0x81,0xb9, +0x5b,0x49,0x37,0x9c,0x83,0x9f,0xe5,0x13,0x66,0x7e,0x59,0x31, +0xb9,0x30,0xd1,0x8d,0x75,0x3a,0x55,0xe5,0xc1,0x3a,0x9d,0xca, +0x6b,0x6c,0x4e,0xfc,0xf0,0x82,0xd0,0x16,0x7e,0xfc,0xc5,0xb2, +0x18,0xe7,0x1a,0xbe,0x90,0xf9,0xb8,0x66,0x29,0x4d,0x66,0xb9, +0xb1,0x26,0x53,0x59,0x13,0xf9,0x0a,0xe9,0x8e,0x6a,0x6f,0xd8, +0x2f,0x52,0xaa,0x21,0xd4,0xc1,0x9d,0xa0,0x9a,0x76,0x72,0x22, +0x7c,0xb5,0xf7,0xc1,0x13,0xde,0xb0,0x06,0x23,0xeb,0xe1,0x50, +0x55,0x63,0xe1,0xe5,0x50,0x66,0x66,0x69,0x53,0x98,0xbf,0xcb, +0x23,0xe4,0x66,0x0b,0x54,0x97,0x4b,0xe2,0x70,0xf4,0xbb,0x75, +0x64,0x19,0xdf,0xff,0x6f,0xbb,0x4f,0x59,0xb3,0x5b,0xf1,0x35, +0x6e,0x22,0x39,0xc2,0x4f,0xc6,0x44,0x62,0xdc,0x03,0x8b,0x24, +0xb7,0xad,0xeb,0xa8,0xfa,0x53,0xc2,0x2c,0xf7,0x76,0xfe,0x44, +0xf2,0x86,0x61,0x18,0x74,0xd7,0xe8,0x41,0x5b,0x3a,0x99,0x82, +0x6a,0x99,0x3d,0xda,0xce,0x54,0xb0,0xac,0x70,0x0b,0x7e,0x47, +0x78,0x7a,0xf3,0x05,0x5b,0x50,0xc5,0x6e,0x8b,0xdd,0x12,0x15, +0xa7,0x8d,0x4d,0xd8,0x60,0x41,0xdb,0x67,0x10,0xe3,0x4c,0x08, +0xa0,0xad,0x4e,0x71,0x0b,0xf8,0x67,0x22,0x3b,0x34,0xed,0xa3, +0x83,0xe6,0xc7,0x8a,0x1f,0xbe,0x77,0x2c,0x47,0x0d,0x6a,0x7b, +0x06,0xf6,0xea,0x49,0x5b,0x25,0x12,0x66,0x8f,0xb4,0x9c,0x4b, +0xe4,0x5e,0x4d,0x1b,0xef,0x86,0x73,0x44,0x16,0x78,0xf0,0x9b, +0xc5,0xbb,0x97,0x44,0xde,0xd2,0x00,0x16,0x54,0xbd,0x86,0x40, +0xcf,0xb7,0x87,0x98,0x47,0x75,0x97,0xc8,0x9b,0xd8,0xda,0x7b, +0x5f,0x45,0xe4,0x99,0xe8,0xfd,0xae,0x05,0x6b,0xdf,0x71,0x10, +0x71,0xc0,0x6a,0xbe,0xeb,0xd2,0x9e,0xea,0x9e,0x99,0x52,0x91, +0x20,0x49,0x72,0x9a,0x9e,0x7d,0x6e,0xb1,0xe1,0x6c,0xae,0x6a, +0xd6,0x81,0x9c,0x55,0x25,0x36,0x65,0x27,0x73,0x8a,0x0c,0xdb, +0xc4,0xa2,0xb9,0x47,0x03,0xf4,0xa1,0xc5,0xc5,0x42,0x59,0xce, +0x91,0xd3,0x86,0xed,0x62,0xfe,0xc2,0x63,0x53,0xa6,0x2d,0x58, +0x15,0xbe,0x46,0x3f,0x27,0x57,0x55,0x78,0xa8,0xf0,0xd8,0x0d, +0x9b,0xc7,0x97,0xa6,0xb9,0xfb,0xcf,0x9d,0x3f,0x25,0xc1,0xb0, +0x5e,0xbc,0x1c,0x7f,0x6a,0xb6,0xbf,0x6e,0x94,0x5f,0xe8,0x40, +0xbd,0x72,0xaa,0xd2,0x1c,0x07,0xfa,0xc2,0xc0,0xae,0xca,0xff, +0x02,0x06,0x43,0x9e,0x24,0x4f,0xf4,0x36,0x4e,0x14,0x72,0x30, +0x4b,0x9a,0xb3,0x7e,0xda,0x86,0x49,0x1b,0x0e,0xc3,0x6c,0x8d, +0x4b,0xfa,0x2a,0x5c,0x8a,0x6d,0x93,0x22,0x60,0x95,0x73,0xe2, +0x01,0x5c,0xa2,0x4a,0x9e,0x19,0xb6,0x79,0xa6,0x4d,0xba,0x8f, +0x0a,0xdc,0x61,0xe2,0xb6,0x7d,0xd0,0x96,0x2d,0x69,0xcb,0xa9, +0xec,0x7b,0xc9,0xe3,0xa6,0xf4,0x18,0x6a,0x33,0x83,0xa4,0xf3, +0x8a,0x0a,0x89,0x6a,0xf6,0x3a,0x85,0x84,0xe9,0x7b,0xf3,0xc6, +0xb8,0xf4,0x57,0x10,0x05,0x21,0x4a,0x5c,0x7a,0x7f,0x8c,0xc2, +0x1e,0xa6,0xb8,0x74,0x6a,0xc7,0x53,0x22,0xda,0xb7,0x20,0xe8, +0xd3,0x18,0xd9,0xa0,0xa0,0x1b,0xcd,0x6b,0x44,0x37,0xfa,0x9c, +0x6a,0xaa,0x88,0x14,0xf7,0x2d,0x84,0xc3,0x04,0xcc,0xf7,0x83, +0x85,0x03,0xd9,0x0c,0xee,0x4a,0xad,0x66,0x91,0xd8,0x6a,0x99, +0x10,0x63,0x15,0x9c,0x6e,0x04,0xb7,0x74,0xc3,0x15,0x6c,0xf2, +0xba,0xf2,0x99,0x36,0x5e,0x59,0x01,0xe3,0xf9,0x0a,0x70,0x55, +0x39,0xf9,0xc1,0xa3,0x2a,0xbe,0xab,0x71,0x83,0x40,0x3e,0x74, +0xad,0xc3,0xa5,0x72,0x0f,0x6a,0x19,0x4e,0xe0,0x0c,0x47,0xb4, +0x8c,0x97,0x7b,0x7e,0x60,0xde,0xd1,0x20,0x74,0x7b,0x37,0x9f, +0x48,0x3d,0x09,0x9b,0x67,0x57,0x69,0xfb,0x80,0xc6,0xcb,0x2b, +0x52,0x9c,0x92,0xbd,0x59,0x90,0x71,0xb6,0x42,0x77,0x7c,0xec, +0x12,0xd1,0x6e,0x6e,0x10,0x4a,0xa8,0xd2,0x97,0x4f,0xab,0xab, +0x3c,0x7b,0x8e,0xa3,0xfd,0x6f,0x4d,0xe7,0x55,0xb8,0xf4,0xd8, +0x9e,0x87,0xd4,0xe9,0xa1,0x55,0x74,0x16,0xaf,0xb3,0xa9,0x95, +0xf7,0xfe,0x24,0xc1,0x2a,0xdc,0xd7,0x00,0x4f,0xb0,0x94,0x2d, +0x9d,0x5a,0xbc,0xe1,0x2d,0xb2,0xf9,0x79,0x92,0xb6,0x0f,0xe4, +0x53,0xbf,0x1b,0x6a,0x7c,0xd9,0x0c,0x8f,0xbe,0x0d,0x45,0x3d, +0x7f,0x61,0x0d,0xad,0xa8,0xae,0x2b,0xf9,0x41,0xb4,0x94,0xf6, +0x89,0xf5,0x25,0xa7,0xea,0xea,0x4a,0xe7,0xba,0xea,0x57,0x8b, +0xae,0x13,0xe7,0x7a,0x79,0x85,0x9c,0xaa,0xd7,0x1b,0x3d,0xa9, +0xf6,0x30,0x13,0x4a,0x68,0x40,0x73,0xaa,0x65,0xfe,0xb1,0x39, +0x18,0x04,0x67,0x34,0x48,0xb8,0x0c,0x0c,0xb0,0x4c,0xb0,0x94, +0x9b,0x49,0xc6,0xff,0x5c,0x91,0xff,0x23,0x30,0x8f,0x3f,0x4f, +0xca,0x85,0xe1,0x23,0xd2,0x97,0xa1,0x8b,0x0a,0xfd,0x84,0x65, +0xe0,0x32,0x32,0x31,0x97,0xc9,0x13,0xec,0xe5,0xfd,0xb6,0x55, +0x2d,0x1b,0x4b,0xfc,0x65,0x55,0x7c,0x78,0x40,0x82,0xa7,0x4d, +0x3c,0xf4,0x84,0x5e,0x95,0x4c,0xaa,0xed,0x31,0xce,0x23,0xd0, +0x15,0xfa,0x56,0x32,0xf1,0xb8,0x03,0x12,0x04,0xbc,0x85,0xf9, +0xa6,0xcc,0x49,0x26,0x73,0xc7,0x11,0xdc,0x83,0x7b,0xa8,0x96, +0x79,0x8e,0x92,0x07,0xb4,0xc2,0x75,0x8a,0xad,0x36,0x4b,0xc4, +0x03,0xd8,0x8c,0x87,0xf6,0x0f,0xb8,0x74,0x01,0xbb,0x9b,0xf6, +0x3a,0x23,0x14,0x24,0xc2,0x2d,0x8d,0x7b,0x9d,0x5f,0x40,0xaf, +0xab,0x72,0x2b,0x0f,0xe8,0xb3,0x41,0x44,0xcb,0xc9,0x2e,0x48, +0x91,0xea,0xcb,0xa6,0xd6,0xd7,0x97,0x94,0x1f,0xbf,0x44,0xcd, +0x93,0x4d,0xe1,0x09,0xee,0x68,0xf3,0x7e,0x0c,0x81,0xd6,0x11, +0xdb,0xa9,0xb5,0x3f,0xc9,0xa7,0xea,0x40,0xe2,0xc0,0xe3,0x11, +0xaa,0x6b,0x8a,0x0a,0x4a,0xb4,0xf0,0x2d,0x06,0xf1,0x0d,0x23, +0xda,0x7e,0x34,0xe9,0xe3,0x4f,0x14,0x6b,0xb6,0xcd,0x6d,0x63, +0x14,0x6d,0xcf,0x77,0xd6,0x5a,0xad,0x20,0x18,0x76,0xc7,0x38, +0xdf,0x99,0xe9,0x8a,0xd6,0x4d,0xba,0x42,0xf8,0x11,0xf7,0xf0, +0x44,0xb9,0x69,0x04,0xc5,0xbf,0xa8,0x4e,0xc7,0x4b,0xd3,0x2c, +0xac,0x17,0x98,0xc9,0xf4,0x3f,0x79,0x7e,0xc8,0xb1,0x3b,0xf8, +0xb9,0xa5,0x71,0xa6,0xa2,0x57,0x1c,0x78,0x21,0x78,0x47,0x8e, +0xea,0x61,0x24,0x26,0xf5,0xc2,0xe6,0xaf,0xed,0x42,0x5e,0xec, +0x74,0x0d,0xd5,0x11,0xce,0xb1,0x1d,0x2f,0x15,0x3a,0x99,0x6a, +0x4e,0xf2,0xbd,0x9d,0x41,0x44,0xee,0x47,0x75,0x01,0xcc,0x08, +0x3b,0x47,0xdb,0x45,0x73,0x5b,0x8c,0x07,0xbc,0x76,0x45,0x3d, +0xd5,0x74,0xe2,0xbb,0xea,0x5d,0x79,0x94,0x2b,0xbb,0x69,0xc3, +0x6f,0x36,0xc1,0x5f,0x76,0x05,0x95,0xab,0x1c,0xc1,0x06,0x33, +0x84,0xda,0x24,0x13,0xb8,0x11,0x2f,0x35,0xb5,0x94,0x12,0x7f, +0x85,0x59,0x30,0x17,0x4f,0x79,0xc3,0xdc,0xee,0x38,0x0b,0x3f, +0xe3,0x19,0x55,0x3f,0xde,0x46,0x81,0x44,0x05,0x3b,0x31,0x6b, +0x03,0xbe,0x80,0x2f,0xde,0x5a,0x12,0x38,0x80,0x02,0xb3,0x2a, +0x8a,0xc8,0x68,0x8e,0xfd,0x1a,0x45,0x2c,0x99,0x3c,0xf4,0x80, +0xc1,0x33,0x04,0x6c,0x3e,0xd1,0x1d,0x1d,0x3a,0xea,0x2f,0x4d, +0x51,0x41,0x2f,0x50,0xd7,0xdc,0x07,0x7b,0x5d,0x0a,0x7e,0x2d, +0x55,0x4c,0xe1,0x67,0x22,0x56,0x15,0x8f,0x60,0xa0,0x0e,0x3e, +0x55,0x0e,0x4c,0x02,0x45,0x94,0x26,0xb9,0xa0,0x2d,0x36,0xd7, +0xaf,0xee,0xc6,0x1c,0xd9,0x54,0xf9,0x16,0x13,0xab,0xf5,0x7e, +0x50,0x2f,0xc8,0x37,0x99,0x06,0x88,0xf9,0x1b,0x16,0xc0,0x6c, +0x2c,0xa0,0x9d,0x5e,0x10,0x81,0x8a,0x5d,0x89,0xf1,0x00,0x7b, +0x6b,0x71,0x38,0xa1,0x56,0x5b,0xf9,0xce,0x55,0xc2,0x3f,0x4c, +0x9d,0x2c,0x63,0xcf,0x3b,0xec,0xe1,0x8f,0x66,0xf3,0x18,0x54, +0x09,0x35,0x8e,0x43,0xf8,0x0f,0xfc,0xe3,0x10,0xd0,0x40,0xfb, +0x1f,0x9f,0x02,0x05,0xea,0xf8,0x14,0xdb,0x1b,0xa0,0x33,0xc6, +0x49,0x83,0xbd,0x83,0x06,0x0e,0xf0,0xbe,0xfc,0x5c,0x9f,0x2f, +0x3e,0xab,0x2d,0xff,0xe6,0x45,0x6d,0xe0,0x67,0x7a,0x3c,0x2e, +0xeb,0xe5,0xb7,0x84,0x5a,0x7f,0x45,0xb0,0x4a,0x9a,0x9e,0x34, +0x71,0xbd,0xff,0xc6,0x1c,0x48,0xd5,0x38,0xa7,0x2f,0xc5,0x1d, +0x53,0x36,0x85,0x6e,0x0c,0x4d,0xd6,0xae,0x86,0xdd,0x4e,0x49, +0x47,0x30,0x4b,0x95,0x3c,0x6d,0xda,0xe6,0x69,0x3c,0x0b,0x07, +0x42,0x20,0x9c,0x09,0x1d,0x3b,0x03,0x5e,0x41,0xc2,0x06,0xbf, +0xc2,0x14,0x35,0x28,0xb7,0x92,0xdb,0x50,0x6d,0x96,0x12,0xb6, +0xbb,0x52,0xb6,0x90,0xd6,0x7d,0x07,0x4b,0x99,0x5a,0xbe,0xe0, +0x0b,0xab,0x06,0xe0,0x32,0xec,0x11,0x4c,0xaa,0x55,0x91,0xee, +0x3d,0x93,0x6c,0x6d,0x60,0x07,0xac,0x96,0xb8,0x2c,0xa9,0x87, +0x5f,0x71,0x2f,0x5b,0x38,0xdf,0x48,0x09,0xbf,0xb1,0x17,0x9a, +0x8f,0x05,0xf8,0x8c,0xcb,0x9b,0x96,0x23,0x48,0x80,0x34,0x2e, +0x9d,0xab,0x34,0x2f,0xae,0xd2,0xc6,0x25,0x52,0xb5,0x3d,0xa1, +0xea,0xe3,0x64,0x23,0xf7,0x11,0xaf,0x6d,0xbf,0xf5,0x5c,0x77, +0x47,0xf1,0x11,0x63,0xc4,0xd4,0xfe,0xd1,0x2e,0xeb,0x3c,0xdc, +0x37,0xb8,0x6c,0x74,0xde,0xa4,0x3e,0x78,0x7b,0xe7,0xe3,0x17, +0xcc,0x66,0x5b,0xe4,0x03,0x5d,0xa3,0xc4,0x94,0xfe,0x6b,0x47, +0xad,0x18,0xab,0x4e,0x0e,0x09,0xd9,0x3c,0xc9,0x26,0x4d,0xf1, +0x1d,0xb9,0xdf,0x58,0xf1,0xd1,0x6f,0xac,0xd9,0x7e,0xf5,0x01, +0x33,0xd3,0x16,0xfa,0x43,0xd7,0x58,0x31,0xe5,0xf3,0x18,0xb7, +0x75,0x3e,0xdc,0x6f,0xbc,0xf1,0xe5,0x83,0xc7,0xba,0x1a,0x5c, +0xe4,0xaf,0xf8,0x8d,0x43,0xd6,0xb9,0xae,0xf0,0x50,0x98,0x30, +0xbf,0xd1,0x47,0x61,0xa2,0x96,0xc9,0x77,0x22,0x88,0xdb,0x1f, +0xd7,0x7e,0xaf,0xfb,0xa3,0x7b,0x1d,0xda,0xa0,0xae,0xbb,0x97, +0x43,0xaf,0xc7,0xde,0x20,0xc4,0xe9,0x7b,0x53,0x75,0x6f,0x22, +0x2f,0x82,0x1c,0x69,0xa7,0x78,0xe5,0x6a,0xfe,0xeb,0xef,0xaf, +0xce,0xf2,0xd4,0x47,0x8a,0x9e,0x1e,0xb3,0x7a,0xf5,0xf6,0xc8, +0xbf,0xa2,0xb7,0x38,0x43,0x5e,0x89,0xa0,0xca,0x7c,0x74,0xe5, +0x67,0xdd,0xdf,0x3d,0xae,0x73,0xd5,0xd5,0xc3,0xdd,0xae,0xfb, +0x23,0x4f,0xa6,0xf4,0xf4,0x3d,0x71,0x02,0x91,0x27,0x43,0x21, +0xa3,0xbd,0x71,0xe5,0xcc,0xcb,0xef,0xae,0x84,0xb9,0x31,0x5a, +0x37,0xcf,0xb0,0x7e,0x7d,0x3d,0xcf,0xdc,0xe0,0xb4,0xac,0x63, +0xd5,0xf6,0x87,0x75,0x3f,0xe8,0xfe,0x74,0xbc,0xc2,0x23,0xb9, +0x1d,0x3d,0xed,0x7b,0x3e,0xf4,0x02,0x91,0x75,0xfc,0xfe,0x39, +0x91,0xa7,0xc2,0x49,0xe9,0x4b,0xf1,0xea,0x95,0x82,0x57,0x2f, +0xaf,0xcc,0xf4,0xd0,0x47,0x89,0xe3,0x3d,0x67,0xf6,0xed,0xe3, +0x59,0x70,0x8d,0x29,0x9c,0x0f,0xe4,0x5b,0x85,0x98,0x8f,0xda, +0xb1,0x4e,0x21,0xf6,0x72,0xe8,0xf9,0xd0,0x47,0x21,0xbe,0x40, +0x86,0x7c,0xa8,0xe1,0xf4,0xc7,0x19,0xfd,0x95,0xba,0xfc,0xd7, +0xaf,0xea,0xd8,0xb8,0xa3,0x44,0x4f,0xaf,0x99,0x7d,0x7a,0x7b, +0x15,0xb0,0x71,0x4b,0x5e,0x4c,0xf2,0xac,0x6d,0x30,0x26,0xb9, +0x60,0x18,0x93,0x3c,0x76,0x5c,0xf0,0xf4,0x53,0x04,0x8f,0x63, +0x4c,0x16,0x13,0x3c,0xb1,0x8d,0x82,0xe7,0x62,0x66,0x69,0xad, +0x6e,0x4b,0x93,0xe0,0xd9,0x28,0x62,0xcb,0xc9,0xae,0x6c,0x5e, +0xda,0xe8,0xcb,0xa6,0xd4,0xdf,0x66,0x82,0xe7,0xb2,0x22,0x78, +0x14,0x6e,0x2b,0x1a,0x8c,0x11,0xcc,0xca,0x64,0xdc,0x38,0xd6, +0x1e,0xf6,0x29,0xe3,0xdc,0xba,0x47,0x67,0x45,0x99,0xb8,0x99, +0x8e,0x39,0x4a,0x94,0x63,0x8e,0x3a,0xb9,0x95,0x97,0x22,0xc6, +0xf8,0x31,0x47,0x07,0xd4,0x30,0x6e,0xb7,0x6f,0xd1,0x4e,0xa7, +0x79,0x19,0x54,0x9b,0x1c,0x92,0x58,0xc5,0xc1,0x24,0x47,0xc2, +0x6a,0xda,0x92,0xef,0x93,0x99,0x1d,0x24,0xdf,0x51,0x43,0x1f, +0xd2,0x8b,0x8a,0xa9,0x4c,0xe7,0x50,0x5b,0x66,0x79,0xcb,0x95, +0xfc,0x8b,0x17,0x33,0x1f,0xf3,0x2f,0x9e,0x9a,0xa7,0x12,0xbb, +0xee,0x8f,0x3d,0x41,0x88,0xd5,0x3b,0x2a,0x8d,0xf8,0x77,0x7e, +0xfd,0x6a,0xe1,0xab,0xd7,0x57,0x67,0xb8,0xb3,0xef,0xdc,0xdd, +0x63,0x46,0xef,0x3e,0x1e,0x85,0xd7,0xf5,0x26,0x19,0x37,0xf1, +0x8e,0x71,0xba,0xf3,0xbb,0xa7,0x84,0x09,0x37,0x1e,0x88,0x60, +0xf1,0x56,0x30,0x06,0x48,0x46,0x24,0x2e,0xc6,0x6c,0xe6,0x5d, +0x8a,0xbf,0x51,0x1d,0xdf,0xd5,0x33,0x5c,0x32,0x49,0xbc,0xcf, +0xb9,0x78,0x2a,0x22,0xbf,0x1d,0x26,0xdf,0x43,0x77,0x28,0x1d, +0xdb,0x17,0x13,0xbe,0x1b,0x8b,0x25,0xd0,0xab,0xbb,0xd8,0x94, +0xa3,0x27,0x7f,0xca,0xbe,0x69,0x48,0xe8,0x8e,0x09,0x82,0x05, +0x87,0x34,0x62,0x93,0x28,0x57,0x32,0x61,0x19,0x71,0x64,0x23, +0x0d,0x87,0x36,0x52,0x9b,0x36,0x3a,0x17,0xe0,0x20,0x4f,0xe6, +0x0b,0xe0,0x67,0xb0,0x96,0x9a,0x5d,0x26,0x78,0x8c,0xb6,0xca, +0x65,0x8a,0x48,0xe3,0x9c,0xb6,0x1c,0xa3,0x91,0x99,0x7f,0x09, +0x4e,0x49,0x87,0x31,0x9a,0x8a,0x4c,0x2a,0xbe,0x9d,0xc9,0x9c, +0x82,0x7b,0xc6,0x29,0xb4,0xbd,0x87,0x82,0xb7,0x24,0x0f,0x83, +0x56,0x54,0xdb,0xca,0x54,0x08,0x6b,0x18,0x87,0x03,0x6a,0xcd, +0xcf,0x43,0x4a,0x49,0x1f,0xc9,0xcb,0xc2,0xf8,0x33,0xbc,0x94, +0x60,0xcc,0x58,0x1c,0x83,0x96,0x30,0xd6,0x4d,0xdc,0x75,0x79, +0x7b,0xcd,0x35,0x5d,0x39,0xee,0xf1,0x82,0x60,0x31,0xa5,0xd7, +0x8a,0x51,0xd4,0xbe,0x03,0x71,0x7f,0x5b,0x75,0x9d,0x76,0x0a, +0x24,0x6f,0xd8,0x92,0x68,0xf0,0x82,0x54,0x31,0xa5,0x7b,0xd4, +0xc8,0x75,0x63,0xd4,0xa6,0xdc,0x83,0xe7,0xe8,0x28,0x79,0xac, +0x5a,0xc9,0xb3,0x4c,0x1a,0xfc,0xc2,0x49,0x15,0x73,0xff,0x4e, +0x7a,0xf0,0xd2,0x54,0xe3,0xaa,0xde,0x07,0xf9,0xc1,0x38,0x5e, +0xe1,0x70,0xa0,0x34,0x49,0x40,0x55,0xe8,0xc9,0xa2,0xe2,0xe2, +0x13,0x94,0x58,0x91,0x79,0xa1,0x53,0x42,0xc3,0x51,0x65,0x90, +0x5d,0x2c,0x8c,0x6f,0xde,0xee,0x78,0x5f,0x41,0xf0,0x1b,0x74, +0x90,0xbc,0xd6,0xae,0x5a,0x30,0x47,0xe7,0xd3,0x30,0x21,0x9c, +0x94,0xd5,0xd0,0x8e,0x81,0x04,0xed,0xa5,0x89,0x02,0x0a,0x93, +0x73,0x0a,0x0b,0x2f,0x64,0x83,0x60,0x28,0x15,0x40,0xb8,0xb0, +0x68,0xc6,0x8c,0xc9,0x0b,0x51,0x30,0xc8,0xae,0xca,0xb1,0x8e, +0x3c,0x86,0x7d,0x1c,0xe4,0x1f,0x52,0x35,0x33,0x42,0x44,0xe6, +0x33,0x46,0xf2,0x43,0x42,0xe3,0x4e,0xf0,0x90,0xb8,0x21,0xe2, +0xa3,0x18,0x22,0x3e,0xdc,0x10,0x71,0x37,0x19,0x22,0x5c,0x6e, +0x6b,0x46,0x90,0x2e,0xf8,0x80,0x5a,0x3d,0x25,0x1b,0x3e,0x1f, +0x94,0xfc,0x19,0x9b,0xf9,0xcc,0x7f,0x0f,0x93,0x56,0x45,0xf0, +0xd8,0xec,0xd3,0x99,0xf9,0x17,0x75,0x87,0x47,0xac,0x12,0x07, +0x04,0x07,0xe1,0xa6,0xfe,0xfa,0x02,0xe6,0xc6,0x95,0x3d,0x2b, +0x2c,0x3d,0xab,0xdd,0x99,0xb1,0x33,0x79,0x17,0x4f,0xbb,0x6b, +0xaf,0xc9,0xaf,0xc6,0x74,0x30,0x5f,0x43,0x55,0xb6,0x84,0xa7, +0x34,0xce,0xdb,0xa4,0xde,0x7d,0x63,0x7b,0xc3,0x0b,0xdd,0x7d, +0x25,0xa5,0x91,0xc9,0x8d,0xde,0x31,0xa3,0xd7,0xba,0x35,0xa6, +0x34,0x1e,0xb8,0xb3,0xeb,0xd9,0x77,0xba,0x7a,0x5c,0xca,0x1e, +0x45,0xb2,0x6f,0x76,0xed,0xb0,0xe5,0xae,0x8d,0x22,0xe5,0xbf, +0x69,0x8d,0xb5,0xe4,0x37,0x88,0x85,0xc7,0x1f,0xe3,0xcd,0x6f, +0x7a,0xc3,0xed,0x8f,0xf1,0xe6,0x0f,0x61,0x95,0x03,0xb5,0xab, +0xe3,0x35,0x96,0xbc,0x24,0x76,0xcb,0x0c,0x44,0xc1,0x14,0x75, +0x6e,0xc6,0xa3,0xce,0xa9,0xd9,0xaf,0x84,0x03,0x9d,0x3c,0xf5, +0xfa,0x77,0xb4,0x3a,0x47,0x01,0x10,0x4c,0xd1,0xea,0x6b,0x3a, +0x51,0x3b,0xa6,0xea,0xbd,0x25,0x76,0x43,0x45,0x5b,0x5b,0x90, +0xc6,0x68,0xf5,0x04,0xb6,0x1a,0xdf,0x10,0xe8,0x0f,0x96,0x1c, +0x1e,0xfe,0x50,0xad,0x70,0xf5,0x52,0x46,0xe6,0x71,0x03,0x44, +0x17,0x32,0xbd,0x08,0xbd,0xa1,0x15,0x07,0x89,0xdf,0xc7,0x41, +0xe2,0xf1,0x53,0xaa,0x72,0x26,0x7f,0xba,0x62,0xb3,0xe3,0xc4, +0x53,0x05,0xa3,0xc1,0xed,0xc3,0x6a,0xbe,0xf8,0xda,0x7b,0x91, +0xca,0xb9,0xa7,0x83,0xb6,0x31,0xd7,0x3b,0x6c,0x42,0x91,0x50, +0x7a,0x74,0xdd,0x2c,0x43,0x92,0x38,0x6b,0xc9,0x8a,0x89,0x93, +0x97,0xef,0xcf,0x5e,0xa3,0x0f,0x0d,0x57,0x85,0x1f,0xce,0x9f, +0x7f,0xd7,0xe6,0x9b,0xca,0x73,0xd7,0x2f,0xcf,0xcc,0x9e,0x92, +0x61,0xd8,0x22,0x9e,0xdd,0x96,0x77,0xec,0xa2,0xae,0x36,0xe0, +0xd4,0x28,0xb7,0x99,0x8b,0xe7,0xad,0xd0,0x9f,0x0b,0x57,0x1d, +0xdb,0x73,0x64,0x77,0x81,0xcd,0x99,0xc3,0x6b,0xe6,0x19,0x36, +0x88,0x0b,0x97,0xaf,0x9c,0xa0,0xb7,0x18,0x89,0x0f,0x79,0x38, +0x6f,0xd5,0xdb,0xae,0xa4,0x16,0x2f,0x4a,0x95,0x8b,0xcf,0xfb, +0x1d,0x62,0x53,0xab,0x73,0x9d,0x9c,0xe7,0x05,0xdd,0x93,0x44, +0xbf,0xe5,0x8b,0xa7,0xfa,0xeb,0x06,0x3c,0xf1,0x54,0x22,0x7b, +0x39,0x22,0xc8,0x4f,0x7b,0xa4,0x5b,0xe5,0xa7,0x39,0x64,0xd0, +0x9d,0xf2,0xd9,0x63,0xc7,0x05,0xcc,0x76,0xe1,0x90,0x41,0x01, +0x0a,0x30,0x88,0xfd,0x01,0x66,0x7b,0x94,0x73,0xdc,0x30,0x66, +0xd8,0xf3,0x33,0x2a,0xe6,0x3c,0xba,0xe0,0x45,0x7e,0xcc,0x7b, +0x44,0xc2,0x75,0x5e,0xb0,0x4e,0xe8,0x88,0x35,0xfc,0xb9,0x4d, +0x69,0x11,0xf6,0x80,0xb6,0x1c,0x8b,0xae,0x20,0xf3,0x6c,0x4a, +0x89,0x82,0x45,0xa7,0xf5,0x61,0x36,0xfa,0xa6,0x1e,0x93,0xbd, +0x98,0xe0,0x34,0x2b,0x9d,0xaa,0xb9,0x5d,0x73,0xb1,0xf8,0x78, +0x51,0x46,0x46,0x96,0x82,0x3e,0x86,0xdd,0xc8,0x40,0x25,0xe2, +0xba,0xb7,0x28,0x8f,0x51,0x50,0xd1,0x3f,0xe3,0x21,0xd7,0x36, +0xda,0xc6,0x90,0x6b,0x63,0x12,0x3c,0x95,0xfc,0x60,0xb1,0x93, +0x92,0x75,0xe0,0xa1,0xa0,0xa3,0xb3,0x46,0x9e,0x54,0x6d,0x20, +0xeb,0xd5,0x5f,0x5e,0xcd,0xbc,0xf3,0x40,0x77,0x4d,0xfe,0xdc, +0x1b,0xfe,0x58,0x27,0x26,0x0f,0x8d,0x1d,0x17,0xe1,0x4b,0xed, +0x6e,0x28,0xa8,0xe8,0xf7,0x39,0xd9,0x48,0x25,0xa1,0xc1,0x9f, +0x93,0xb5,0xa5,0xda,0xf6,0xc4,0x82,0xb9,0x6a,0x57,0xe1,0xa1, +0x12,0x7a,0x35,0x87,0x87,0x5e,0x99,0x3b,0x61,0x0b,0x53,0xe8, +0x15,0x8f,0x16,0x6f,0x57,0x42,0xde,0x6e,0x64,0x1f,0xbb,0x88, +0xb7,0x85,0xf1,0x0f,0xee,0xd1,0xb7,0xc3,0xb0,0xbb,0xc6,0xf9, +0x4e,0xcc,0x4a,0x6b,0x07,0x3e,0xce,0xb2,0xdb,0x1d,0x01,0xfb, +0xc1,0x82,0x17,0xdc,0xa1,0x72,0x23,0x78,0x7f,0xa9,0x44,0xd5, +0x9e,0x24,0x58,0x34,0xf2,0x3e,0xbb,0x91,0x7b,0x58,0xca,0x91, +0x37,0xa4,0x7a,0x63,0x00,0xa5,0x89,0x5c,0x9e,0x5e,0x24,0xcf, +0xa8,0xed,0x18,0x32,0x80,0xc9,0x2f,0x6a,0xdf,0x86,0xc8,0xd6, +0xb0,0x4b,0x91,0xb4,0x92,0x7f,0x9c,0x6b,0xc2,0xc8,0x24,0xf5, +0xb7,0xe2,0x1f,0x99,0xb7,0xab,0xbe,0xd7,0xfd,0x3e,0xb0,0x16, +0x2d,0xd1,0x6a,0xa0,0x77,0xa7,0x5e,0xf5,0xbe,0x7f,0x71,0xa5, +0x14,0xc5,0x2c,0x03,0xc8,0x96,0x76,0x88,0xd7,0x2e,0x9f,0x7e, +0xf6,0xf4,0xf2,0xec,0xf1,0xfa,0x68,0x6a,0xbd,0x91,0x58,0xf8, +0x13,0x85,0xa6,0x9a,0x29,0xa3,0x26,0x1a,0x87,0x5e,0xf5,0x3e, +0x9c,0x26,0x9a,0x93,0x70,0x3d,0x74,0xed,0x72,0x3e,0x23,0x99, +0x35,0x5e,0x1f,0xa5,0x90,0xb0,0xf1,0x44,0xb9,0x76,0xc5,0xd6, +0x5e,0xfc,0xd0,0xbf,0x8d,0x17,0xb4,0x11,0xf0,0xd4,0x21,0x09, +0x7a,0xa1,0xf3,0xa5,0x32,0xec,0x03,0x23,0xa9,0x75,0x33,0xb2, +0xbf,0x34,0xe3,0xf2,0x55,0x5d,0xa5,0x33,0x33,0xb1,0xb4,0x33, +0x46,0x33,0x63,0xbd,0xab,0xfe,0xd2,0xe4,0x3b,0xf7,0x4b,0xaa, +0x8f,0x57,0x6b,0xd3,0xb6,0x67,0x6e,0xce,0xe0,0x27,0xed,0xf5, +0xc6,0x18,0xd7,0x2e,0x4d,0x7c,0x3c,0x39,0x9f,0xbc,0x83,0x9c, +0x8f,0x13,0xe3,0xd3,0x0b,0x46,0xc6,0x64,0x45,0xa5,0x50,0xb3, +0x77,0x9c,0xd7,0x25,0x85,0x17,0x75,0x38,0x4d,0xbe,0x2a,0xa9, +0x3a,0x5e,0xa5,0x4d,0xcb,0xcc,0x4c,0x4e,0x37,0xb1,0x98,0xe9, +0xda,0x13,0x5b,0x7b,0xf3,0x18,0x80,0x36,0xde,0xca,0x50,0x0e, +0x50,0xed,0x5c,0x65,0x90,0x2b,0x5c,0x7b,0x28,0x4f,0xba,0x7f, +0x7c,0xc2,0x99,0x8f,0xba,0x54,0x8a,0xbd,0x61,0x18,0xb5,0xce, +0xe1,0x71,0xa3,0x25,0xdb,0x2e,0x5f,0xd1,0x55,0x38,0x07,0x89, +0xd8,0x3e,0xcc,0x89,0x59,0x82,0x5d,0x98,0xdd,0x78,0xe7,0x9e, +0xa9,0x8f,0xed,0x99,0xc9,0x19,0x09,0x6a,0x0e,0xf0,0x18,0x2a, +0x41,0x1b,0x50,0x11,0x97,0xb7,0x6d,0x89,0x7c,0x4a,0x81,0x76, +0x64,0x9a,0x26,0x9b,0x28,0x45,0x20,0xfe,0xa1,0xba,0x78,0xe6, +0xc2,0xde,0x24,0x3c,0x85,0xbc,0xdc,0xc5,0x78,0x85,0xb9,0x24, +0x7f,0xf9,0x93,0x7f,0xa0,0x2f,0x54,0xc8,0x6d,0xb0,0x02,0xfa, +0x60,0x73,0xf6,0x4d,0x7e,0x62,0x94,0xa8,0xd9,0x1b,0x66,0xe9, +0xb7,0x00,0xfb,0x58,0x6a,0x5e,0x4e,0x3e,0x46,0xd6,0x3a,0x8d, +0x17,0x1d,0x96,0x7a,0xba,0x0e,0xd5,0xbb,0x7c,0x1b,0x9b,0x15, +0x95,0x2a,0x97,0x90,0x3d,0xe7,0x95,0xc8,0xda,0xd1,0x1e,0x1c, +0x8a,0x77,0x7c,0x27,0x14,0x38,0x14,0xa5,0x12,0x5f,0xcb,0x23, +0xfa,0x1d,0x89,0xbc,0xf1,0x81,0x20,0xaf,0x86,0x40,0xaa,0x19, +0x49,0x1a,0x23,0x49,0x65,0x33,0x58,0x46,0x35,0xa3,0x79,0x12, +0xdc,0xcf,0x04,0xb2,0xcb,0xdf,0x9b,0x05,0x42,0x8e,0x10,0xe3, +0x37,0x7c,0x16,0x2e,0xf7,0x54,0x7b,0x2b,0x73,0xd1,0x9b,0x9f, +0xee,0x6f,0xe5,0xa7,0xfb,0x16,0xb4,0x53,0x3f,0x82,0xbd,0x24, +0xf7,0xd5,0x2b,0xe6,0xce,0xd0,0xb9,0x35,0xf8,0x84,0x93,0x9a, +0x1b,0xd4,0xfe,0x31,0x11,0x21,0x10,0x87,0x4a,0x93,0xb9,0x9e, +0x38,0x55,0x7c,0xb1,0xf8,0x14,0xa8,0x0c,0x17,0x98,0xa4,0x2a, +0x9e,0x3b,0x29,0x34,0x74,0x2e,0xd3,0x15,0xcc,0x91,0x7d,0x49, +0x56,0xaf,0x9c,0x37,0x8b,0xea,0xe3,0x09,0xd3,0x29,0x7d,0x4d, +0x3a,0xe5,0xc4,0xf9,0x0b,0x8d,0x3a,0x65,0xf2,0xd4,0xd0,0x79, +0x4a,0x3b,0xbb,0xbd,0x64,0x96,0xce,0xa3,0x21,0x20,0x9c,0x54, +0x5c,0x2d,0x58,0x99,0xcb,0x94,0xd1,0xd6,0xff,0x2a,0xa3,0x10, +0xd6,0x77,0x08,0x27,0xcc,0x3d,0x7f,0xbe,0xf8,0x04,0xeb,0xa4, +0x44,0x00,0xb3,0xe2,0x79,0x53,0xa7,0x86,0xce,0x47,0x33,0x13, +0xf1,0x4c,0xa5,0x87,0x10,0xec,0x63,0x6a,0x78,0xe2,0x7c,0xd1, +0xbf,0x1a,0x4e,0xe1,0xbd,0xf0,0x86,0xb6,0x2f,0x89,0x6f,0xc3, +0xc4,0x70,0x52,0x5a,0x9d,0xb7,0x2a,0xc7,0x7b,0xb7,0x3e,0x4d, +0x89,0x22,0x30,0x34,0x45,0x11,0xd0,0x4e,0x3a,0x62,0x0a,0x1e, +0x50,0x9a,0x36,0x2a,0x35,0x53,0xc0,0x81,0xa9,0xa9,0x9d,0xa9, +0x69,0xce,0x99,0x33,0x17,0x72,0x9a,0x02,0x0e,0x16,0x86,0x85, +0x31,0xdd,0xa6,0xd0,0xd8,0x12,0xce,0xfc,0x7f,0x42,0x14,0x1a, +0x99,0xe7,0x14,0x70,0xe6,0x33,0x4d,0x0d,0x25,0xe3,0x46,0x12, +0x87,0xf3,0x6d,0x8c,0xb3,0xe5,0x45,0xcc,0xf7,0xff,0xe1,0xc1, +0x9b,0xdf,0x7a,0x3e,0x40,0x3f,0xf4,0x73,0x1c,0xd1,0xa5,0xf3, +0x8f,0x23,0xc0,0xcf,0x50,0x67,0x86,0x9d,0x7d,0xcb,0xcb,0x0d, +0xb4,0x53,0x2b,0x12,0x21,0x06,0xfa,0x05,0x62,0x67,0xbd,0xa5, +0x04,0xf3,0x61,0x45,0x26,0x3f,0x4d,0x4a,0xac,0xc6,0x69,0x84, +0x51,0x8f,0xe5,0xd4,0xb7,0xbf,0xff,0xbe,0xe7,0x2d,0x85,0x7a, +0x6c,0xaf,0x5e,0x3f,0x8e,0x61,0xd4,0xd5,0x66,0xd8,0xc5,0xe7, +0x62,0x09,0xa3,0x6e,0x49,0xa2,0xc5,0x10,0xdf,0x49,0x6c,0x9e, +0x5a,0x4a,0xb7,0x67,0x14,0x0c,0xf7,0x9c,0xb7,0x7c,0xd6,0x4a, +0xfd,0xa9,0xc5,0xaa,0x63,0x3b,0x0f,0xed,0x29,0xb0,0xb9,0x70, +0x60,0xc5,0x14,0xc3,0x42,0x37,0x71,0x50,0xd8,0x5c,0x9f,0xc0, +0x53,0xe1,0x57,0x4b,0x72,0xf7,0x9f,0xca,0x32,0x7c,0x21,0x2c, +0xda,0xb9,0xfa,0xa8,0xbe,0xf8,0xdc,0x2c,0x01,0xdb,0xc5,0x48, +0xb3,0x97,0xef,0x3e,0x6e,0xd8,0x21,0x1e,0x3f,0xb4,0xa7,0x54, +0x7f,0x25,0x44,0x98,0x31,0x77,0x75,0x18,0x1f,0x8b,0x85,0xdc, +0xce,0x0b,0x6e,0x79,0x88,0x51,0xc9,0xd1,0x9b,0xa2,0xf5,0xf8, +0xc6,0x84,0x08,0x34,0xc3,0xa9,0xbb,0x0f,0x32,0x7b,0xfc,0x39, +0xf9,0xfb,0x97,0x57,0xd0,0x5f,0x07,0x3e,0x72,0xf4,0x87,0x3f, +0x08,0xcf,0x21,0x73,0x96,0x81,0xaa,0xb7,0x10,0x58,0x6e,0x8b, +0x8b,0xd1,0xf5,0x5d,0x08,0x01,0x26,0x05,0x82,0xf0,0x79,0x83, +0xd1,0x80,0x7b,0x98,0x77,0xfd,0xba,0xe2,0xe2,0xc3,0xfa,0xe9, +0x27,0x47,0x7e,0x69,0x98,0x9e,0xae,0x9a,0x91,0xb1,0x68,0xc7, +0x05,0xdd,0xd9,0x9c,0x83,0xe5,0x17,0x72,0x23,0x16,0x1e,0xd4, +0xe7,0xe7,0xab,0xf2,0x16,0x4d,0x39,0xe0,0x69,0xd3,0x2f,0x60, +0x8a,0x93,0x5b,0xc1,0xcc,0xc7,0x31,0x86,0xb3,0x89,0xaa,0x33, +0x49,0x39,0x11,0xa1,0xba,0xc9,0xf3,0x97,0xf8,0x07,0xcd,0x3d, +0x70,0x62,0xb1,0x7e,0xd6,0x1c,0x55,0xd8,0x89,0xe2,0xc5,0x0d, +0x36,0x6c,0x7c,0xd4,0xf1,0x19,0xb6,0x67,0xde,0xd5,0x67,0xdc, +0x8a,0xfd,0x71,0x30,0x68,0xa8,0xfd,0xef,0x44,0x71,0xa1,0x06, +0xe9,0xe7,0x88,0x83,0xbc,0x03,0x99,0x63,0x55,0xfe,0xb5,0xfe, +0x2a,0xfe,0xf3,0xbe,0x39,0x91,0x7e,0x2b,0xbb,0x03,0x0e,0xd4, +0xfe,0x0f,0x62,0x90,0xd7,0xa6,0xcb,0x7f,0x11,0xe3,0xda,0xf5, +0x92,0xfb,0xb2,0xf2,0xaf,0x0d,0xd4,0x7a,0x09,0xf1,0x16,0x07, +0x2d,0x0b,0x74,0xd7,0x5b,0xc2,0x4c,0xe9,0x01,0x34,0x13,0xbe, +0xdd,0xfd,0x53,0x2d,0xb4,0xd5,0x81,0x38,0xfc,0x1e,0x5a,0x61, +0x2b,0xb7,0x91,0x03,0x97,0xe9,0xef,0x2d,0x56,0xdd,0xdc,0x75, +0xa1,0xf4,0x81,0x4d,0x43,0x31,0xed,0x14,0x4b,0x0a,0xe4,0xb6, +0xd4,0xd0,0x86,0x48,0xf1,0x15,0x3c,0xd0,0x3b,0x81,0x07,0x7a, +0x8f,0xe4,0x81,0xde,0x05,0x54,0x7d,0x8a,0xc0,0xe7,0xa6,0x18, +0xef,0x53,0x4a,0x8c,0xb7,0x34,0x2a,0xb6,0x77,0x42,0xe7,0xf5, +0xea,0x37,0xa3,0xed,0xeb,0xc8,0x60,0x66,0x59,0xc8,0xf9,0xc4, +0xb4,0x27,0x1e,0x5f,0xae,0x8a,0x6f,0x24,0x1e,0xc8,0x89,0xb3, +0x15,0xe2,0x3e,0x26,0xe2,0x43,0xff,0x22,0x4e,0x52,0xff,0x36, +0xda,0x41,0x21,0x66,0x2a,0x7e,0x1e,0xac,0x34,0xed,0xa9,0x53, +0xeb,0x21,0x04,0x86,0x40,0xef,0x6a,0x5c,0x85,0x27,0xde,0x95, +0x10,0x18,0x00,0xfd,0xab,0x31,0x02,0xb3,0x21,0x51,0x38,0x6c, +0x4f,0x3b,0x94,0x11,0x53,0x93,0x81,0xa6,0x26,0xd9,0xbc,0x49, +0x1f,0x53,0x93,0x43,0xbc,0x49,0x47,0xec,0x45,0x7e,0x73,0x72, +0x30,0xa5,0x22,0x28,0xac,0xe7,0xc0,0x32,0xc6,0x9a,0x23,0xb5, +0x2b,0x01,0xec,0x01,0x89,0x9e,0x3c,0x80,0xdd,0x44,0x7e,0x96, +0x9a,0xcf,0xe3,0x49,0xdc,0xc3,0x60,0x98,0x89,0xc7,0x69,0x85, +0x87,0xd2,0x8d,0x74,0xdb,0x18,0xcb,0x8c,0xd5,0x77,0xdf,0xf1, +0xb8,0x6b,0xd5,0x38,0x32,0x53,0xa0,0x1d,0x7b,0x10,0x98,0x13, +0x2d,0x51,0x7b,0x37,0xe6,0xc8,0x12,0x25,0xf4,0x68,0x50,0x58, +0xbd,0x71,0x37,0x2f,0x9c,0xcb,0xe4,0xe4,0x05,0xf2,0xbb,0xec, +0x40,0x7e,0x67,0xe3,0x39,0x22,0xb7,0xc6,0x23,0xd0,0xdb,0x8e, +0x8a,0x33,0x99,0x54,0x84,0xbf,0xa8,0xf5,0x1d,0x66,0x16,0x6b, +0x09,0x0e,0x43,0x1f,0x0f,0xf0,0x11,0xe4,0xcf,0xe6,0xfe,0xb7, +0xee,0xa8,0xb3,0xe6,0xf2,0x65,0xf4,0x85,0x21,0x51,0x3b,0x94, +0x24,0x9a,0xb5,0x91,0xcc,0xb3,0x39,0x58,0x9c,0x55,0x5a,0xa7, +0xab,0x18,0x31,0x51,0xc4,0x36,0x81,0xa3,0x70,0x30,0xea,0xf5, +0x95,0x13,0x5f,0x7c,0x55,0x5b,0x9d,0x5f,0xab,0xb5,0x78,0x3b, +0x09,0xae,0x4a,0x5f,0x19,0xa7,0x8e,0x64,0xec,0xfc,0x3d,0xc0, +0x5f,0x90,0xf5,0xb3,0x24,0x5e,0xc0,0x94,0xd7,0x2f,0x35,0xb1, +0x55,0x5b,0x44,0xc7,0x37,0x42,0x7c,0xd5,0xe9,0x32,0x5f,0x5c, +0xc6,0x79,0x41,0x57,0x12,0xc4,0xee,0x91,0x9e,0xbe,0x9f,0xeb, +0x03,0x9e,0xf1,0x98,0x5d,0x53,0x3d,0xe5,0xa2,0x8c,0x8b,0xd5, +0xba,0x1d,0x95,0xfc,0xf9,0xab,0x78,0x1e,0x29,0xeb,0x3e,0x00, +0x9b,0xe9,0x8b,0xa6,0x5c,0xac,0xcb,0x29,0x3d,0x72,0x51,0xa9, +0x78,0xb7,0x65,0x83,0x45,0x0c,0x2f,0x3c,0xc3,0xa3,0x4a,0x98, +0xcb,0x64,0x43,0x5b,0x08,0x4a,0xf8,0xc3,0x17,0x5f,0x09,0xec, +0xcf,0xf6,0x54,0x13,0xd2,0x04,0xa3,0x8a,0x3b,0x32,0xa8,0x66, +0xb0,0x12,0x5f,0xb5,0x5d,0xc2,0x2a,0x5f,0xa8,0x12,0xe4,0x8d, +0x78,0x4a,0x3a,0x3d,0x11,0xf4,0x85,0x2f,0x4e,0x5c,0x3e,0xa9, +0xdd,0x9d,0x71,0x80,0xa7,0xf1,0x15,0x62,0x33,0x4d,0xfe,0x65, +0x3c,0xfc,0xd3,0x9a,0xb4,0x88,0x4d,0x91,0xf1,0xda,0xe5,0x91, +0x1c,0x15,0x95,0xda,0xdf,0x21,0x01,0x43,0x67,0xe2,0x1c,0x6f, +0x2e,0xcb,0xad,0xce,0xf3,0x22,0x57,0x9a,0x78,0xee,0x42,0xdc, +0x25,0x5c,0xb8,0xdf,0x23,0xfd,0x2d,0xe0,0x3e,0xc1,0x71,0xcb, +0x49,0x0f,0x0b,0x6c,0x4f,0x50,0xc0,0x97,0x52,0x24,0xb5,0x0e, +0x22,0x30,0xe9,0xaa,0x3c,0xcf,0x03,0x26,0xac,0x17,0xd1,0x2e, +0x60,0x08,0x0e,0xc5,0x4e,0xfa,0x8a,0xd0,0x97,0xcf,0x6a,0xaf, +0xe4,0x5f,0xd3,0xa6,0x65,0x64,0xf1,0x90,0xbf,0x89,0x38,0x51, +0x53,0x59,0x82,0x41,0xe0,0x1d,0xb5,0x23,0x22,0x35,0x22,0x46, +0x6b,0x29,0xa5,0x8b,0x05,0xe9,0x47,0x8f,0x95,0xeb,0x6e,0xcc, +0x3c,0xe3,0xae,0xc7,0x71,0xf2,0x60,0x08,0x16,0xae,0x9d,0x2b, +0xb9,0x79,0x6d,0x7a,0xee,0xf4,0xad,0x06,0x1c,0x08,0x3d,0x25, +0x30,0x13,0x4e,0xef,0x5b,0xbe,0xc0,0xb0,0x4a,0x5c,0xb0,0x7a, +0xd9,0x6c,0x3d,0x9a,0x09,0xe0,0x89,0xed,0xa4,0x79,0xab,0x16, +0xcf,0xd0,0xa3,0x15,0x47,0x40,0x12,0x0a,0xf7,0x2f,0x99,0x67, +0x68,0xcc,0xdd,0x6d,0x47,0x5b,0x1c,0x22,0xb0,0xec,0x33,0x25, +0x77,0xb7,0xc5,0xe7,0xb2,0x0d,0xb5,0x74,0x62,0xde,0x16,0xb4, +0x60,0x6e,0x40,0xcb,0x45,0xe4,0xdd,0x23,0x39,0xd4,0xe8,0x4d, +0xe4,0x67,0x1b,0xa8,0xfa,0x13,0x72,0x86,0xfc,0x09,0x9e,0x35, +0x08,0x30,0xc5,0x09,0xbf,0x84,0x11,0xb6,0xe2,0xc6,0xcf,0x07, +0xf1,0xe8,0x01,0x09,0xda,0xda,0x72,0x9c,0xb1,0x0e,0x6d,0x99, +0x22,0x6d,0x4d,0xcd,0xd3,0x88,0x48,0x75,0xdf,0x10,0x98,0xdf, +0xdb,0x02,0x3a,0x72,0x60,0x11,0x1b,0x09,0xdb,0xf1,0x42,0x14, +0x22,0x9f,0xa2,0xab,0xc6,0xa0,0x45,0x6f,0xaf,0xd7,0x68,0xce, +0xfe,0x13,0xf0,0x2b,0xb8,0xcd,0xa7,0xea,0x6c,0xa1,0xcb,0x4c, +0x4f,0x54,0xf7,0xd4,0x97,0xcd,0x54,0x41,0xeb,0xbf,0x8a,0x6e, +0x81,0x46,0x07,0x0e,0x2b,0x25,0xb4,0x98,0x3d,0x1e,0xc5,0x2e, +0xfa,0xcb,0xec,0xb6,0x35,0x7c,0x72,0xb6,0x01,0x7a,0xe8,0x7e, +0x41,0x17,0x5f,0xf8,0x44,0x64,0xda,0x72,0x0a,0x31,0x85,0xcd, +0x8f,0xa1,0x3a,0x15,0xc1,0xd1,0x8c,0xbd,0x4c,0xa3,0xd2,0x7d, +0x8c,0xd6,0xbb,0x37,0x4c,0x4d,0x9c,0x1e,0x3b,0x4d,0xdb,0x10, +0xaf,0xda,0xfb,0x75,0xd6,0xf3,0x5f,0x75,0x4f,0x64,0x4f,0x6f, +0xa3,0x59,0xa4,0xb8,0x38,0x79,0x69,0xf2,0x52,0x3d,0xf4,0xc7, +0x68,0x69,0x60,0x0c,0x36,0x8b,0x47,0xf3,0xf5,0x6a,0x68,0xef, +0x84,0xba,0xc6,0xc8,0x7c,0x5e,0xc9,0xeb,0x23,0x8f,0x69,0x26, +0x1e,0x71,0xaa,0xbd,0x2f,0x38,0x8f,0xa7,0xb2,0xa7,0x97,0xd1, +0x8c,0xb6,0x7a,0x4a,0x38,0x3d,0xb5,0xde,0x4a,0x40,0xeb,0x84, +0xb4,0xd1,0xb0,0x4c,0xf7,0xb8,0xcb,0x69,0x3b,0x44,0x65,0xf8, +0x9a,0x68,0x67,0xc4,0xce,0x50,0xfa,0x7f,0x9a,0xf5,0xf4,0x27, +0xdd,0x23,0xa5,0xff,0x28,0x91,0xf5,0x9e,0xbc,0x9c,0xf7,0xbf, +0x96,0xdb,0xa5,0x6d,0x9d,0xb0,0xbd,0x89,0x9c,0xb6,0xe4,0xd5, +0x86,0xe4,0xa5,0x3e,0xc6,0xa5,0x42,0x06,0xba,0x48,0xd8,0x5c, +0x38,0x06,0xd2,0xe8,0x8c,0x95,0xd8,0x41,0x85,0x06,0x61,0x25, +0x74,0x70,0x4a,0x38,0x8a,0x92,0x0a,0x9b,0xf9,0x80,0x19,0x47, +0x25,0xb9,0x07,0x02,0x15,0x1d,0xf8,0x77,0x6f,0xfb,0xfa,0x07, +0xe8,0x00,0x9a,0x81,0xcf,0xb0,0xc5,0xa0,0x89,0xd3,0xfc,0xe6, +0x19,0xd6,0xa7,0xe6,0xc3,0xa0,0x67,0xaf,0xa0,0x1b,0x7c,0xa2, +0xc5,0x66,0x02,0x9a,0x39,0x61,0x07,0x1c,0x84,0x61,0x3a,0xfc, +0xfc,0xbb,0x4e,0xd0,0x49,0x9f,0x7c,0x97,0xb6,0x0c,0xfd,0x5f, +0x24,0x09,0x37,0xa3,0x87,0xfc,0x07,0x91,0xbb,0x70,0x24,0x89, +0x38,0x13,0x88,0xef,0x01,0x05,0xb3,0x36,0xcf,0x79,0x9e,0xd8, +0x75,0x41,0x80,0x52,0x2a,0x24,0x86,0xda,0x8d,0x24,0x0e,0x1c, +0x18,0xdd,0xae,0x09,0x18,0xfd,0x62,0x13,0x14,0x6b,0x4f,0xec, +0xa5,0xb9,0x7b,0xa5,0xa4,0x69,0xdf,0xd1,0x46,0x52,0x56,0xd8, +0x6c,0xbe,0xc2,0xd2,0xa8,0x66,0x22,0xcf,0x77,0xf8,0x9d,0x07, +0xf6,0x4f,0xa9,0x37,0x6e,0xa7,0xd6,0x83,0x08,0x7e,0x86,0x79, +0x1c,0x24,0xa3,0xe5,0x39,0x82,0x1d,0x45,0xbe,0xfe,0xd2,0x25, +0xac,0xf4,0xfe,0x90,0x47,0x98,0x13,0x92,0x1f,0x04,0x86,0xb3, +0xdf,0x9c,0xbc,0x74,0x4a,0xbb,0x3b,0x6d,0xff,0xe6,0x9d,0x89, +0xb4,0xd3,0x6e,0xb2,0x6e,0x53,0x64,0x9c,0x76,0x45,0x54,0x52, +0xca,0x11,0x6a,0x3f,0x8c,0xf8,0x8c,0x08,0xc3,0x65,0x1e,0xbc, +0x1e,0xd3,0x1f,0x04,0x5d,0x3e,0x3c,0xe6,0x7b,0x57,0x37,0x08, +0xd4,0x40,0xd7,0x2b,0xb8,0x54,0x76,0xa2,0x9d,0xba,0x91,0x1a, +0xda,0x8a,0xfd,0x40,0x75,0x30,0xe4,0x0a,0xc6,0xcb,0x2e,0x1f, +0xbe,0xe0,0x6e,0xf4,0xa7,0x8d,0xbb,0x89,0x54,0xfd,0x1f,0x26, +0xe6,0xfd,0x61,0x4e,0x6f,0x9c,0x89,0x3d,0xc5,0xf7,0xb7,0xf9, +0xd9,0xf0,0x04,0xa7,0xa4,0x41,0x36,0xf1,0x3f,0x40,0x18,0xf8, +0xd7,0xe2,0x6b,0xc8,0x87,0x3f,0xc6,0xb1,0xf5,0xda,0x03,0x04, +0xff,0x07,0x42,0x25,0x6e,0xe6,0x1b,0x3a,0xd6,0x3c,0xe9,0x9d, +0x5a,0x2d,0xe1,0xb5,0xa5,0x82,0xf8,0xa7,0x6c,0x59,0xcb,0xc1, +0xcc,0x87,0x42,0x4b,0x01,0x6e,0x32,0x13,0xad,0xf1,0x1a,0x77, +0xe1,0x5d,0xd6,0x55,0x82,0x2d,0x31,0x1e,0xbd,0x2a,0xa7,0x08, +0x96,0x6c,0x84,0x9f,0xe1,0x31,0x6f,0x98,0xd5,0x1d,0x67,0xe0, +0x10,0x6a,0x69,0xcf,0xfc,0xd1,0xe9,0x30,0xa5,0x16,0x11,0xf2, +0x8d,0xe6,0x63,0x29,0xa1,0xc4,0xff,0x31,0xeb,0x65,0x27,0x8f, +0xcd,0xd5,0x61,0x37,0x81,0xc7,0x29,0xab,0x7c,0xc8,0x10,0x0c, +0xa7,0xe6,0x06,0x26,0xba,0x5b,0x12,0x1c,0x2b,0x2c,0x87,0xee, +0x23,0x13,0xb2,0xb1,0x23,0x55,0x03,0xa1,0x5a,0x3d,0xf7,0x52, +0xc7,0xd1,0x4e,0x9f,0xb3,0x6b,0x3b,0xf6,0xdb,0xa1,0x07,0x0f, +0x7f,0xcc,0xbc,0x0f,0xf7,0x79,0xf8,0x23,0xc7,0x48,0xa9,0xe5, +0x18,0x29,0xe3,0xd6,0xf9,0x34,0x22,0x9b,0xec,0xbf,0xb1,0xf3, +0x71,0x13,0x46,0xca,0x8a,0xf1,0xea,0xe4,0x39,0x0a,0xa6,0x89, +0x4f,0x13,0xa6,0x89,0x48,0xdb,0xf3,0x5d,0x64,0xe6,0x2b,0xff, +0xc4,0x7c,0xe5,0x7b,0x5e,0xb6,0xa8,0xfe,0xcb,0x07,0xeb,0xbc, +0xe1,0xaa,0x0f,0xbf,0xf4,0xc2,0x3b,0xb0,0xb6,0x0b,0xb5,0x23, +0x04,0x3c,0xa8,0xf9,0x3f,0x04,0xc6,0xb4,0x03,0x35,0x36,0x43, +0xb5,0xc0,0x77,0xdd,0x3f,0xe1,0xbb,0xee,0x19,0x2e,0xb8,0x48, +0x74,0x84,0xa1,0xd4,0x3c,0x96,0x30,0x21,0x3a,0x7f,0xfd,0xac, +0xf5,0xd3,0x37,0x1e,0x80,0x08,0xcd,0x98,0xb4,0xb5,0x98,0x14, +0xbe,0x69,0xce,0xa6,0x39,0xc9,0xda,0x68,0xd8,0xe4,0x9a,0xb4, +0x17,0x93,0xa8,0x65,0xa6,0x12,0x51,0xdc,0xdc,0x1e,0x9b,0xb3, +0xff,0xd1,0x4e,0xc9,0xe3,0xa1,0xa2,0xfd,0xb7,0xd4,0x3c,0x9a, +0xe0,0x09,0x69,0x41,0xd2,0x9c,0x0d,0x33,0x36,0x1c,0x80,0x75, +0x9a,0x31,0xe9,0xeb,0x30,0xb1,0x63,0x52,0x34,0x6c,0x1c,0xc3, +0x28,0x13,0x55,0xc9,0xe1,0x73,0x37,0xcf,0xb3,0x49,0xf7,0xa5, +0x66,0xdf,0xf1,0x4d,0xf6,0xcd,0x6c,0xe9,0xc3,0x6b,0xda,0xf2, +0x27,0x22,0x6f,0x7f,0x2b,0xf3,0x65,0xb4,0xd8,0xcf,0xb8,0x98, +0x9a,0xfd,0x42,0x8e,0x42,0x0b,0xa7,0x6d,0x54,0xd5,0x9a,0xac, +0x02,0xc9,0x29,0xfe,0x08,0xb6,0x50,0xd9,0xfa,0x1b,0x63,0x05, +0xbc,0x80,0xc5,0x3c,0x34,0x47,0x9e,0xcc,0xc9,0x4f,0x10,0x1c, +0x20,0xe1,0xa7,0xc2,0x11,0x20,0x4e,0x19,0xab,0xb1,0xb5,0x0a, +0xed,0x84,0xd5,0xd0,0xda,0x29,0xe1,0x08,0x12,0x95,0x6d,0xa0, +0xa9,0xfd,0x39,0x05,0xe7,0xc6,0x19,0xcf,0x73,0xf0,0xb5,0x5c, +0x09,0x33,0xbd,0x14,0xf0,0xb5,0x5c,0xa9,0x72,0x79,0xe1,0xe4, +0x83,0xfa,0xb4,0x3f,0xab,0x65,0x67,0x5f,0xb0,0x58,0x2f,0x86, +0xae,0x58,0x3e,0xdd,0x5f,0xd7,0xff,0x9e,0xcf,0x9b,0x37,0x77, +0x6b,0xbe,0xd5,0xe3,0x89,0x0c,0x69,0x97,0x78,0xad,0xf8,0x78, +0x4d,0x4d,0xf1,0x82,0xf1,0xfa,0x08,0x71,0x7c,0xe8,0x02,0x1f, +0x9f,0xd0,0xe3,0xd7,0xf4,0x16,0xff,0x42,0x72,0xf3,0x55,0x98, +0xed,0xff,0x88,0xe4,0x56,0x29,0x3b,0xfb,0x73,0x24,0x37,0x7f, +0xc6,0xa4,0xf2,0xb9,0x1e,0x4f,0x66,0x48,0x3b,0xc5,0xda,0x62, +0x05,0xc9,0xcd,0x5b,0x1f,0x29,0x7a,0x87,0x2e,0xf4,0xf1,0x0e, +0xcd,0xa9,0xd5,0x33,0x17,0x7d,0x35,0x75,0x38,0x45,0x70,0x9f, +0x74,0x79,0x65,0xc1,0xd4,0x03,0xfa,0xf4,0x5f,0x2a,0xe5,0x81, +0xfe,0x60,0x96,0x28,0x4e,0x5d,0xb9,0x32,0x2c,0x58,0x37,0xb8, +0xc1,0xef,0xd7,0x5f,0x1a,0x38,0x1a,0xdc,0x21,0x3e,0x90,0xda, +0xa2,0x9c,0xaa,0xaa,0xf3,0x8c,0x47,0x84,0xe8,0x35,0x75,0x91, +0x9f,0xdf,0x94,0xec,0x3a,0xbd,0x05,0xd7,0xba,0xc5,0x1c,0x58, +0x73,0xeb,0xb7,0x55,0xb8,0xc4,0xef,0x5a,0xb2,0xd8,0x2d,0xc2, +0xcb,0x67,0xa8,0xde,0xef,0x69,0x42,0x66,0x6c,0x5a,0x4c,0x1c, +0x47,0x5b,0x4d,0x55,0xed,0x2c,0xe2,0xd8,0x9a,0xe9,0x35,0xbc, +0xc9,0x0f,0x1b,0x45,0xb4,0xa6,0x76,0xdd,0x9b,0x32,0x47,0xde, +0x87,0x40,0xa6,0x74,0x69,0xd2,0x8b,0xa2,0x9a,0xd3,0xf9,0xf9, +0xda,0xed,0x69,0x59,0x9b,0xb6,0x27,0x81,0xb7,0x2d,0x4f,0x5b, +0x1c,0xf7,0xeb,0xda,0x8c,0x68,0x1e,0xb5,0xb6,0x36,0x66,0x43, +0xea,0xc1,0x9c,0xed,0x27,0x68,0x27,0x81,0x38,0x07,0x84,0x60, +0xff,0xe1,0x6a,0x98,0xcb,0x63,0xff,0x0b,0x95,0xd8,0x7f,0x91, +0x4b,0x87,0xa9,0xf5,0xc6,0x6d,0x8a,0x74,0x88,0x61,0xd3,0xa7, +0x01,0x3a,0xf3,0x6a,0x6c,0x66,0xfb,0x09,0x6c,0x94,0x57,0x7e, +0x18,0xcf,0x56,0x41,0x1b,0xc2,0x14,0x16,0xfd,0x8d,0x40,0xe8, +0x20,0x9e,0x58,0x37,0x04,0x7f,0xa7,0xf6,0x0d,0x4c,0x5d,0x3d, +0x65,0xf3,0x9d,0x3f,0x6c,0xed,0x0f,0xe1,0x7d,0x70,0x16,0x0f, +0xce,0x0c,0x21,0x3f,0xc0,0xac,0xc6,0x04,0xbc,0x41,0xf8,0x1b, +0xe4,0xc2,0x6f,0xd8,0xea,0xa9,0x50,0x2b,0x13,0x89,0xd9,0x00, +0x71,0xd0,0x5d,0xb0,0x64,0x36,0xd9,0xb2,0x41,0xd8,0x4a,0x39, +0xd0,0x98,0x89,0x43,0xde,0x67,0xb3,0x45,0x19,0x06,0xe1,0xd4, +0x9e,0x90,0x6a,0xd9,0x56,0xc2,0x2e,0x90,0x01,0x5d,0x94,0x66, +0x2b,0x07,0xa1,0xe6,0x9d,0x17,0x81,0xf0,0xa1,0x5f,0x33,0x92, +0xe1,0xb2,0xf9,0xbb,0xdb,0x04,0x3b,0x7c,0xcd,0x65,0x41,0x4b, +0x1e,0x5a,0xa8,0xdd,0x4f,0x64,0x0b,0xc2,0xdc,0xca,0x8b,0x3c, +0xd2,0xce,0xa4,0x59,0x5b,0x53,0xfa,0xf3,0x47,0x54,0x8c,0x16, +0x9f,0xc9,0x12,0xe4,0x1a,0x25,0x6c,0xc5,0x34,0x6b,0x8d,0x1c, +0xc8,0x99,0x1f,0xe1,0xcc,0xb1,0xab,0x7c,0x87,0xd9,0x07,0xe8, +0x25,0x41,0xcf,0x24,0x21,0x68,0xd5,0xea,0xf9,0xb3,0x75,0x1e, +0xf5,0x54,0xf7,0x35,0xc1,0x23,0x12,0xda,0x60,0x27,0xb0,0x19, +0x2b,0x1b,0xe0,0xa4,0xd1,0x20,0xca,0xf9,0xf8,0x8a,0x9f,0x3f, +0xa2,0x03,0xc1,0x4f,0xd8,0x80,0x5d,0x3e,0xb8,0x10,0xe3,0xc2, +0x14,0x89,0xb5,0x61,0xff,0xd8,0x58,0xb8,0xca,0x9d,0x56,0x1a, +0x0c,0x61,0xd8,0x70,0xc7,0xd8,0x0a,0x0f,0x58,0x08,0x8f,0xd2, +0xee,0x65,0xc8,0x6e,0x7c,0x45,0x68,0xa3,0xd3,0xfd,0x8c,0x96, +0xbb,0xd6,0xcf,0x48,0x9c,0x15,0x37,0x53,0x51,0x69,0x8f,0x33, +0x1f,0xfd,0xa0,0xfb,0x4a,0x76,0xf7,0x36,0x7e,0x12,0x25,0x2e, +0x4b,0x5e,0x96,0xbc,0x42,0x0f,0x76,0xb8,0x94,0x9a,0x95,0x13, +0x68,0x39,0x1a,0xad,0xc5,0x8d,0xa3,0x47,0x26,0x8f,0xa6,0xe6, +0x0e,0xcc,0x4a,0x76,0x64,0xa6,0x68,0x00,0x0c,0x76,0x57,0xc2, +0xe2,0x87,0x8b,0xf8,0x14,0xcd,0xd9,0xcf,0xe3,0x2a,0x7c,0x28, +0x24,0x95,0x9a,0xa5,0xeb,0x17,0x6f,0x58,0xb8,0x51,0xfd,0x65, +0x4d,0xe6,0xed,0xbb,0xba,0x3a,0x7c,0xef,0x07,0xe7,0xd7,0x89, +0xc9,0x23,0x62,0xdd,0x23,0x02,0xd5,0x09,0x5d,0x51,0xb5,0x01, +0x9b,0xd9,0xa4,0x79,0xf3,0x70,0xf8,0x00,0x25,0xdd,0xad,0xca, +0x55,0xf6,0xe2,0x2c,0xd4,0x1c,0x92,0x89,0x76,0xd4,0x91,0x5a, +0xbe,0xbd,0x73,0x05,0xdf,0xfb,0xc2,0xf9,0x08,0x31,0xf9,0xf3, +0xd8,0x71,0x11,0xfe,0xea,0xf8,0x26,0x42,0x1f,0x4e,0xf8,0xef, +0x3c,0x39,0x13,0xe1,0x50,0x2a,0x5c,0xe6,0xef,0x65,0xc3,0xd5, +0xad,0xe5,0xee,0xf5,0x4c,0x55,0xc7,0x4d,0xd7,0xd6,0x33,0x75, +0xfb,0x3c,0xeb,0xd9,0xcf,0xba,0xc7,0xfc,0xbd,0x3e,0x8d,0x30, +0xbe,0xe5,0xe1,0x8f,0xeb,0x94,0x77,0x92,0x46,0xa3,0x46,0xdc, +0xe8,0xc4,0xde,0xc9,0x26,0xcd,0x63,0x09,0x33,0x54,0x86,0xf1, +0x5d,0xe5,0x0b,0xbc,0x0e,0xae,0xa9,0xc8,0x82,0xa4,0xa1,0xba, +0xf7,0x44,0x6d,0x8c,0xb7,0xd8,0xcc,0x21,0x23,0x0a,0x82,0xa8, +0x61,0x05,0xf9,0x83,0xdb,0x7b,0x11,0xb1,0xd4,0x7c,0x32,0x39, +0xae,0x85,0x63,0x75,0xef,0x05,0x2f,0xc8,0x16,0xa2,0xbc,0x86, +0x4f,0xc7,0xc5,0xe3,0xd4,0xbc,0x65,0x8d,0x94,0x1f,0x0c,0xf4, +0xdc,0x8b,0x93,0x97,0xf3,0xb4,0x29,0xc2,0xee,0x8c,0xfd,0x26, +0x73,0xd1,0x4c,0x53,0x50,0x8e,0x87,0x7e,0xa3,0xad,0x86,0x92, +0xa4,0xd4,0x23,0x87,0xb2,0x8e,0x6c,0xf9,0x17,0x7d,0xa4,0x0f, +0xa3,0x5f,0xe4,0xa6,0xd0,0xdf,0x90,0x0a,0x82,0x79,0x4f,0xbf, +0xaf,0x49,0xff,0xd8,0xd3,0xfb,0x20,0x62,0xea,0x62,0xac,0xda, +0x42,0x49,0xbd,0x7a,0xf2,0x9b,0xee,0x99,0xb2,0x3f,0xba,0x56, +0x4c,0xb1,0x8d,0x1e,0xb4,0x66,0xe4,0xb8,0x0d,0xce,0x3c,0xf3, +0xea,0xd0,0x93,0xdd,0xdf,0xbf,0xd1,0x3d,0x52,0x1e,0xad,0xe6, +0x59,0x59,0x6b,0xfb,0x2d,0x1d,0x4a,0xed,0x6e,0xf2,0x18,0xe1, +0xa7,0xd1,0x19,0x01,0x50,0xbf,0x73,0xc3,0xb4,0x84,0xe9,0xb4, +0x53,0x16,0x79,0x48,0xed,0x2b,0x08,0x46,0xd0,0x0e,0xfe,0x7c, +0x5b,0x2b,0x9b,0xd9,0x2e,0x2e,0xd8,0xc1,0x38,0x88,0xd9,0xbe, +0xa7,0xc8,0xfb,0x38,0x0e,0x2c,0x3d,0x45,0x45,0x0d,0xbb,0x09, +0x1c,0x9c,0x21,0x95,0xb3,0x4b,0x2b,0xbf,0xc6,0x54,0xdc,0x53, +0xe8,0x46,0x75,0x43,0xf8,0x4a,0x5c,0x4c,0xb0,0xda,0xe8,0x40, +0x35,0x8f,0x94,0xed,0x8d,0xd9,0x77,0x05,0xb9,0x17,0x04,0x53, +0xcd,0xb3,0x8f,0xc0,0x3b,0xbd,0x60,0x29,0xd5,0x3c,0x21,0x16, +0x8f,0xb7,0xde,0xcb,0xa8,0xdb,0x9e,0x54,0xae,0x19,0x17,0xaf, +0xda,0x59,0xb1,0xad,0xba,0x5e,0x77,0x15,0xdd,0x27,0x80,0x79, +0xac,0x98,0x32,0x32,0xc6,0x7b,0x5d,0x60,0xd0,0x06,0x3f,0x45, +0x21,0x5d,0xf9,0xf2,0xab,0x7b,0xba,0x12,0xf4,0x9a,0x00,0x2d, +0x62,0xc4,0x94,0x11,0x11,0x6e,0x2b,0xfc,0x9a,0xd4,0xd2,0x47, +0xa8,0x2d,0x13,0x66,0x17,0x63,0xf4,0x65,0xf5,0xf6,0x2b,0xf7, +0x1a,0x31,0xbb,0x94,0x03,0xa9,0xf1,0xeb,0xfc,0x9a,0x18,0x5d, +0xff,0xf2,0xe1,0x43,0x5d,0xb9,0x82,0xd9,0x15,0xcd,0x1e,0x45, +0xb0,0x79,0xc5,0x37,0x5d,0x18,0x69,0x45,0x23,0xdc,0xd7,0xb5, +0x07,0xba,0x9b,0xe8,0x1e,0xa0,0x90,0x0e,0x89,0xf9,0x2f,0x70, +0xd8,0x81,0xeb,0x5f,0x3e,0x7a,0xa2,0xab,0xe2,0x4a,0xd1,0x45, +0x01,0x0e,0x6b,0xca,0x46,0xfa,0x9b,0x6a,0xce,0x32,0x23,0xa9, +0x33,0x7b,0xd1,0xeb,0x02,0x2e,0x83,0x59,0x12,0x4e,0xbd,0x66, +0xf4,0xa3,0x1d,0x77,0x12,0x18,0x27,0xe2,0x71,0x58,0x44,0x3b, +0xa4,0xf1,0x8d,0x1d,0x6b,0x82,0x2d,0x25,0x7b,0xf6,0x8d,0x9b, +0x4a,0x2f,0x9d,0xcb,0x38,0x5f,0xa3,0x3b,0x39,0x76,0x81,0x88, +0xaa,0xb9,0x7e,0x28,0x61,0x0b,0x7e,0x16,0x5f,0x7b,0xf6,0x02, +0xcf,0xcd,0xdd,0x9a,0xce,0xe1,0x6d,0x0c,0x68,0xd0,0x5c,0xe2, +0xb8,0x07,0x36,0x31,0x59,0xd1,0x1c,0xf7,0x51,0xde,0x03,0x9f, +0xf2,0xc3,0x78,0x66,0xdd,0xfe,0xa1,0x1c,0xc6,0xc7,0xd5,0xaa, +0x3e,0x38,0x12,0x38,0xf1,0xe1,0x14,0x91,0xbb,0x1f,0xe1,0x3b, +0x3a,0xbe,0x94,0xae,0x62,0x92,0xcb,0x2f,0x18,0xfc,0x84,0x91, +0xcc,0x78,0x8d,0x8e,0xe3,0x98,0x6a,0x79,0x19,0x05,0x17,0x74, +0x5b,0xa0,0xc3,0x25,0xfc,0x3a,0x18,0x74,0xc9,0x62,0xff,0x05, +0xde,0x68,0x65,0xa7,0x2f,0x9a,0x55,0x57,0x79,0xa6,0xf0,0xd8, +0x05,0xa5,0x86,0xf7,0xd6,0xf5,0xa0,0x45,0xad,0xa6,0xa8,0x00, +0xdb,0x41,0xeb,0xb8,0x6d,0x51,0xa9,0x31,0xf1,0x5a,0xcb,0x77, +0x49,0x64,0xd7,0x68,0x09,0x03,0x7a,0x8c,0xed,0xdd,0xf3,0xa7, +0x71,0x10,0x00,0x01,0x3f,0xde,0xfc,0xe1,0xb5,0xe3,0x2d,0x0c, +0x30,0xc0,0x4c,0x66,0xc7,0x4c,0xf2,0x99,0x84,0xdd,0xb0,0x9b, +0xf7,0xc5,0x8b,0xfa,0x1d,0x62,0x49,0x6d,0x31,0xb3,0x25,0xbb, +0xd5,0x84,0xf2,0xb4,0xa7,0xf6,0x3e,0xc4,0x92,0x7b,0x32,0x7d, +0xd8,0xc4,0xdd,0xbe,0x7d,0xc7,0xa6,0xed,0x89,0xe0,0x85,0x1d, +0x39,0x96,0x99,0x27,0xe8,0xa2,0xb6,0x47,0x72,0x47,0x25,0x32, +0x96,0xe7,0x7d,0x16,0xec,0x38,0x5b,0xaa,0x03,0xaf,0x3a,0x39, +0xd8,0x0b,0x02,0x84,0xe4,0xce,0x01,0x5e,0xd8,0x1f,0x3f,0xbd, +0x34,0x59,0xf3,0xac,0xae,0xba,0xf8,0x74,0xb1,0xda,0xa2,0x96, +0xbc,0x86,0x58,0xb8,0xe9,0x65,0x8f,0xe6,0xbf,0xfb,0x60,0x85, +0x37,0x54,0x79,0xf3,0x4b,0x6f,0xbc,0x0e,0xab,0x1c,0x15,0x77, +0x78,0x10,0x13,0x1c,0x3c,0x19,0x5e,0xee,0x04,0xcc,0x24,0x36, +0xff,0x9b,0x43,0xaa,0x8e,0x6d,0x07,0xe6,0x76,0x68,0x2e,0x30, +0xf2,0x9f,0x18,0x79,0xbd,0x97,0x1d,0xaa,0xff,0xf4,0xc6,0x6a, +0x6f,0xa8,0xf5,0xe6,0x97,0x5e,0x78,0x0b,0x56,0x75,0xa5,0x76, +0x16,0x04,0xdc,0x25,0x54,0xff,0x03,0x6a,0x01,0xc6,0x31,0x53, +0xc5,0x56,0xb1,0x54,0x5c,0x62,0xfb,0x27,0x38,0xae,0x57,0xbf, +0x62,0x16,0x0e,0xef,0x58,0xdd,0xd8,0xb1,0x0f,0xbf,0xe4,0x1d, +0xaf,0x61,0x1d,0x0f,0xec,0xb7,0xa9,0x3f,0xeb,0x58,0x05,0xe1, +0x4a,0xd8,0x5c,0x4f,0x83,0xdc,0x96,0x77,0xaf,0xfe,0x9b,0xb3, +0xe2,0x56,0x8f,0x1d,0x67,0xc5,0x0d,0x25,0x0e,0x88,0x6a,0x1a, +0x80,0x8f,0x32,0x00,0x9f,0xa6,0x01,0xac,0xed,0xaa,0x18,0x4a, +0x1f,0x07,0x30,0xa6,0x69,0x00,0xd4,0xac,0x98,0xfc,0x0c,0x93, +0xe0,0x5b,0x5f,0x14,0x7a,0x82,0x99,0x1f,0x7e,0x15,0x0c,0x0f, +0xfd,0x95,0x6b,0x5f,0x7c,0x01,0xa1,0x9d,0xa9,0x65,0x14,0x01, +0x4f,0x6a,0xb5,0x8a,0xa3,0x63,0xcf,0x20,0x78,0x37,0x18,0xee, +0x53,0x1d,0x8f,0x03,0x36,0x25,0x36,0xa3,0x16,0x4b,0x24,0x53, +0x46,0x33,0xcf,0x6f,0xd6,0xf0,0x04,0x67,0xb5,0x85,0x74,0xc7, +0x18,0xe5,0x8c,0xe3,0xe5,0xab,0x24,0x44,0x82,0xbe,0x38,0xfa, +0x52,0x29,0xf6,0x83,0x91,0xd1,0x59,0xd1,0xbc,0xd4,0x43,0x34, +0x2f,0x4d,0xbd,0xbf,0x74,0x1b,0xdf,0xad,0x75,0x0a,0x14,0x51, +0x33,0x7d,0x34,0xda,0x61,0x17,0x6a,0x35,0x8c,0x24,0x28,0xa4, +0x33,0x9d,0xd1,0x85,0x93,0x52,0x2d,0xdf,0xb3,0xbe,0x63,0x5c, +0xe1,0x8c,0x63,0xd9,0xdf,0x13,0x39,0xab,0x91,0x0a,0xab,0x61, +0x31,0x3b,0x98,0x12,0x8f,0x69,0x2c,0x4b,0x65,0xda,0x9d,0x75, +0xe2,0xbb,0xb3,0x0a,0xab,0x4e,0xfa,0xcb,0x93,0xef,0xdc,0x2b, +0xad,0x3c,0x5e,0xa5,0x4d,0x6f,0xdc,0x9d,0x65,0xe6,0xd5,0xb0, +0x0f,0x4f,0x09,0x4f,0xc3,0x08,0x5b,0x3f,0x7d,0x83,0x7a,0xe7, +0xed,0x8c,0x86,0xa7,0xba,0x07,0xf2,0x70,0x1f,0xf8,0x23,0x5a, +0x5c,0xc2,0xbc,0xa0,0x65,0x7a,0x99,0x44,0x65,0xf8,0xc1,0x7b, +0x9e,0x3a,0x35,0x4f,0x49,0xe7,0xb0,0x46,0xbb,0x0d,0x48,0x1b, +0x23,0xa5,0xef,0xc1,0x48,0xc6,0xa0,0xfa,0x23,0x83,0x86,0x8c, +0x3b,0x5f,0xeb,0x1e,0x36,0x32,0x58,0x94,0xcc,0x58,0xfc,0x97, +0x81,0x92,0xdb,0x41,0xed,0x98,0x5c,0x62,0xd2,0xf2,0x6e,0xd6, +0xc3,0x9f,0x74,0x4f,0x14,0x91,0x18,0x21,0xa6,0x38,0x44,0x0f, +0x59,0x33,0xda,0xad,0x51,0x5a,0x3e,0xda,0xf5,0xf2,0x17,0xdd, +0x57,0x4d,0x82,0xd4,0x7e,0xed,0x80,0x65,0x23,0xd4,0xc9,0xa1, +0xd4,0x5e,0xc3,0xed,0x40,0x5b,0x82,0xd7,0xa5,0x6d,0xdb,0x77, +0x24,0x67,0x72,0x5c,0x25,0x7b,0x6e,0xbc,0x78,0x80,0x2e,0x32, +0x53,0x96,0x48,0xaa,0xea,0x50,0x41,0xd6,0xd9,0x52,0x6a,0xed, +0x42,0x3a,0xfb,0x37,0x4d,0xe3,0xe7,0x57,0xaa,0x8a,0xf3,0xd9, +0x34,0xfe,0xbf,0xf6,0x98,0xa1,0x39,0x35,0x0f,0x26,0x28,0x32, +0x8f,0x8e,0x76,0xa8,0x26,0xa1,0xdf,0x4b,0x4a,0xb0,0xf2,0xc4, +0x92,0x87,0xfa,0x72,0xf1,0x41,0x69,0xe9,0xdd,0x3b,0xa5,0x13, +0x47,0xe8,0x61,0xfc,0x69,0xda,0xb1,0x13,0xdf,0x1b,0x2a,0x26, +0xf2,0x4a,0x78,0x4f,0xb5,0xb4,0x11,0x61,0xcf,0xaa,0xde,0xf8, +0x85,0x2b,0xfb,0x9d,0x3b,0x82,0x05,0xb5,0x89,0x23,0xb0,0xdb, +0x84,0xad,0xf7,0x03,0x8f,0xdf,0xb0,0x43,0xab,0x06,0xe3,0x17, +0x2e,0xec,0xa9,0x1d,0x7f,0x1a,0x4b,0x60,0x0f,0xf6,0x34,0x89, +0xa9,0x5d,0x4c,0x4c,0x9d,0x87,0x58,0xaa,0xe5,0x5e,0xb8,0x12, +0x64,0x76,0x9b,0x7d,0x97,0x84,0x89,0x26,0x66,0x98,0x5c,0x97, +0xd6,0x46,0x6f,0x4c,0x39,0x7a,0x32,0xf3,0x14,0x55,0xfb,0x93, +0xcf,0xa9,0x55,0x24,0x29,0xdc,0xf5,0xb6,0x15,0x41,0x89,0xaa, +0xe7,0x91,0x68,0xad,0xa5,0xd4,0x9d,0x37,0xbb,0x24,0x71,0xa0, +0xd8,0xa3,0x39,0xdb,0x73,0x53,0x0b,0xb4,0xb0,0xbd,0x56,0xfe, +0xd9,0x1b,0xf6,0x0b,0x49,0xa3,0x3d,0x26,0xe1,0x2a,0xa7,0x53, +0xfe,0x1a,0xa0,0x17,0x9f,0xe4,0x5d,0x2c,0xd8,0xb9,0x6d,0x6f, +0xf2,0xae,0x04,0x38,0x88,0x2d,0x34,0x79,0x15,0x98,0x05,0x9f, +0xae,0x4d,0x8b,0x4b,0xe6,0xe8,0x46,0xd4,0xb0,0x9d,0x18,0x0f, +0x61,0x3f,0x5e,0x63,0xc0,0xae,0x0f,0x29,0x9b,0x7c,0xb5,0xaa, +0xe8,0x3c,0x07,0xf5,0x4c,0x4b,0xe7,0xb9,0x5c,0x06,0x26,0x88, +0x2e,0x71,0x9c,0x96,0x36,0x31,0x59,0x0a,0xe2,0x8b,0xa5,0x84, +0xa7,0xdd,0xe1,0xb4,0x20,0x0f,0x44,0x77,0x09,0x7a,0x27,0x09, +0xb4,0x13,0x9b,0xfe,0xea,0x57,0x0f,0x40,0xfb,0x62,0x7e,0xb5, +0x4f,0xb6,0x3e,0x8d,0xa7,0x23,0xe6,0x8a,0xc6,0xae,0x98,0x2a, +0xf5,0xf3,0x0b,0x19,0x39,0xd2,0xaf,0xe4,0x3b,0x7d,0xa1,0xf8, +0xaa,0xa2,0xf8,0xe1,0xa3,0xf2,0xd0,0x3e,0x7a,0x4b,0xb4,0xe5, +0xe6,0x93,0xb3,0x04,0xdd,0x13,0x85,0x89,0x6b,0xd6,0x2c,0x0a, +0xd7,0x79,0xdf,0x9e,0x00,0x83,0x61,0xf0,0xed,0xb2,0xda,0x93, +0x6b,0xb2,0x27,0xec,0xd5,0xa7,0x43,0x8f,0x8a,0xf7,0x82,0x08, +0x4f,0x30,0x44,0x5a,0x28,0xd8,0x4f,0xcb,0x3e,0x5b,0x78,0x2e, +0xe7,0x4f,0x43,0x8e,0xf0,0xc7,0xf9,0x85,0x33,0xa6,0x4f,0x5d, +0xe4,0x60,0xb0,0xe4,0x36,0x98,0x3b,0x06,0x32,0x1b,0x2c,0x51, +0xa0,0x76,0x2f,0x49,0xd0,0x3e,0x46,0xd5,0xb3,0xda,0x44,0x35, +0x97,0x1a,0x36,0x91,0x42,0x82,0x6e,0x8c,0x1e,0xfa,0xb3,0x06, +0x96,0x2f,0xc8,0xaa,0x3c,0x3f,0x6a,0x19,0x49,0x24,0xb0,0xef, +0xfe,0x82,0xef,0x7e,0xf6,0x18,0x88,0xf6,0xd8,0xf1,0xa7,0x81, +0x3c,0xb6,0xe4,0xe7,0x17,0xd0,0x51,0x2f,0xb7,0x58,0x25,0x9d, +0x15,0xbf,0xab,0xad,0xfc,0xf6,0x9b,0x3a,0xff,0x7e,0xfa,0xe9, +0x62,0x7f,0x2f,0xbf,0x01,0xfd,0xbd,0xab,0xbe,0xd5,0x43,0x17, +0x2c,0x91,0xc7,0x12,0x6a,0xc9,0xf4,0x86,0xcd,0xe7,0x54,0x37, +0x8f,0x48,0x71,0x55,0x2a,0x2a,0x06,0xf0,0x25,0xbe,0x9f,0x7f, +0xdd,0xd8,0x97,0x2d,0x71,0x0e,0xf0,0x95,0xc9,0x65,0xab,0x96, +0x4f,0x44,0x4f,0xb0,0x8e,0xdc,0x1e,0x95,0x6a,0x4a,0xfe,0x48, +0x3d,0x98,0x97,0x59,0x90,0x72,0x41,0x0b,0xde,0x35,0x72,0x90, +0x0f,0xf8,0x0b,0x9b,0x7a,0x07,0xf8,0x61,0x3f,0xfb,0x32,0x36, +0x27,0xab,0xab,0x8a,0x4e,0x9f,0x67,0xcb,0x6f,0x34,0xac,0x83, +0xe6,0xe2,0xf8,0x43,0xce,0x6f,0xfe,0xa2,0xf6,0x66,0xa4,0xa3, +0x73,0xe7,0xf1,0xcb,0xf5,0xd8,0x1c,0xd6,0xdd,0xc3,0xfe,0xdb, +0xc5,0xa7,0x45,0x77,0xdf,0x40,0x57,0x1d,0x7c,0xd6,0x17,0x86, +0x31,0x87,0x74,0x46,0x5f,0x1c,0xc6,0x1c,0xf2,0xae,0x77,0x3b, +0x3f,0x9d,0xa2,0x8f,0x13,0x2d,0xfe,0x5d,0xbc,0xc2,0x07,0x34, +0xd4,0x2c,0xeb,0x7f,0xd0,0x1a,0xd8,0x38,0x8f,0x7a,0xc2,0x51, +0x01,0x07,0x60,0x39,0x35,0x2f,0xe4,0xb5,0x62,0x2e,0x17,0xa3, +0x3f,0xb0,0xa9,0xb4,0x90,0xe4,0x65,0x15,0xa4,0x14,0x6b,0x61, +0x62,0xad,0x3c,0xc7,0x1b,0x42,0x84,0x8d,0x3d,0x7d,0x7d,0x70, +0xa0,0x1d,0x5b,0x2e,0x2f,0x6a,0x6b,0x2e,0xe4,0x5f,0xf8,0x37, +0x71,0x8d,0x42,0x6c,0x6b,0x22,0xd6,0x44,0xf0,0xf7,0x8b,0xa1, +0x86,0x33,0xc4,0x1b,0x07,0xda,0x72,0x82,0x3a,0x46,0xc0,0xd6, +0x17,0xb3,0xbf,0xd7,0x76,0xb9,0xf3,0x1b,0xcc,0xeb,0x52,0xbb, +0x98,0x29,0xd5,0x70,0x3f,0xb4,0xe2,0x55,0xc0,0xc2,0xaa,0x6a, +0x0a,0x8b,0x8e,0x28,0x80,0x17,0x29,0xe9,0x09,0xd0,0x9e,0x17, +0x97,0x39,0x87,0x1a,0xa6,0x54,0x77,0x28,0x01,0x6e,0x71,0x09, +0x1c,0x31,0xf2,0x6c,0x46,0x51,0xb5,0xee,0x44,0xd0,0x2f,0x22, +0x87,0xef,0x68,0x86,0x0b,0xeb,0x8d,0xb1,0xae,0x18,0xce,0xd3, +0x99,0x98,0x97,0x9a,0xc8,0x63,0xec,0xd4,0x35,0xe8,0x25,0x77, +0xa7,0x62,0x0c,0x81,0x73,0xd0,0xba,0x06,0x27,0xc8,0x8e,0xd4, +0xec,0x36,0x4f,0x01,0x04,0x9e,0x02,0xa8,0xe3,0x29,0x80,0x85, +0x47,0xce,0xa5,0x7e,0xb1,0x35,0xf9,0x8b,0x0d,0x20,0xf0,0x9c, +0xc0,0x8b,0xb6,0x40,0xe2,0x9a,0xd2,0x01,0xf7,0x15,0x6c,0x3f, +0x7b,0x51,0x57,0xe6,0x3c,0x85,0x6f,0x5e,0x7b,0x8d,0xd7,0x7b, +0xde,0xe1,0x35,0x2a,0x62,0x78,0xf1,0x13,0x0b,0x25,0xaf,0x6c, +0x8a,0x92,0x57,0x26,0xdd,0x36,0x46,0x8c,0xc1,0x56,0x5d,0xbd, +0x7e,0x75,0x78,0x3b,0x84,0xcc,0xa5,0x66,0x97,0x08,0x94,0xc1, +0x27,0x55,0x38,0x46,0xee,0x47,0x2d,0x9d,0x49,0xe2,0x84,0x14, +0x2d,0x94,0x83,0xba,0x0a,0x3d,0xe5,0x01,0xef,0xef,0xf1,0xc9, +0xa0,0xe4,0xd6,0xa2,0x0e,0x2f,0x4a,0xa6,0xa4,0x5a,0x9e,0x62, +0xab,0xe1,0x39,0xb6,0x6a,0x0b,0x0e,0xd4,0x35,0x50,0x1e,0xac, +0x80,0xce,0x28,0xe5,0xc2,0x28,0xe6,0x48,0xa6,0x78,0x31,0xa5, +0x5c,0x18,0x0f,0x1f,0x53,0x2b,0x26,0xae,0x0e,0x8b,0xd8,0x83, +0xcc,0x8d,0x1f,0x4d,0xdc,0x77,0x9c,0xdc,0xfc,0x1c,0x33,0xe5, +0xa4,0xcb,0xd3,0x1a,0x0a,0x4a,0x72,0x4f,0x50,0xfb,0x51,0xe4, +0x1b,0x8e,0x43,0x1a,0x15,0xa7,0x8d,0x49,0x48,0x4a,0xdd,0x73, +0x68,0xdb,0xd1,0x2d,0x39,0xd4,0x2c,0x92,0x78,0x4d,0x08,0xc5, +0x76,0xe3,0xd5,0xc6,0xa9,0x26,0x8a,0x5a,0x6a,0x38,0x42,0xbe, +0xa1,0x1d,0x46,0x11,0x77,0x7e,0x4f,0xc2,0x1d,0x01,0xb0,0x43, +0x90,0x25,0x3c,0x2b,0x95,0x4d,0xfe,0xfa,0x74,0x65,0x0e,0x25, +0x84,0x24,0x81,0x47,0x3f,0xa5,0x20,0xe9,0x63,0xda,0x29,0x8d, +0x1c,0xce,0x3c,0x92,0x9a,0xab,0x05,0xff,0x72,0x79,0x52,0x20, +0x04,0x0a,0x09,0x7e,0x81,0xd3,0xb0,0xaf,0xa7,0x1a,0xc2,0x19, +0xf5,0x4e,0x3f,0xd8,0x29,0xc8,0xed,0xf0,0x9e,0x54,0x16,0xfa, +0xf5,0xb9,0xaa,0x93,0xa7,0x39,0x38,0xea,0x97,0xc9,0x59,0x8c, +0x43,0x67,0x3e,0xe9,0xc7,0xbc,0x8a,0xc8,0x88,0x4a,0x89,0x30, +0xc1,0x81,0x1d,0xc8,0xce,0xcc,0x49,0xcd,0x53,0xc0,0x51,0x43, +0xfd,0x18,0xa7,0xc4,0xb1,0x81,0xa1,0xd8,0xcf,0x59,0x6d,0xbc, +0x6c,0x42,0x58,0xad,0x97,0x2e,0x85,0x7e,0x7d,0xf6,0xbf,0x75, +0x51,0x93,0xc0,0xf3,0x23,0x13,0x13,0xc2,0x2a,0xc7,0x14,0x3b, +0x96,0x95,0xad,0x30,0xa9,0x96,0xa7,0xf8,0x42,0x90,0x90,0x38, +0x2e,0x70,0x32,0xf6,0x73,0x51,0x1b,0x6b,0x2d,0x3e,0xc4,0xf3, +0x28,0xc2,0x9e,0x52,0xe0,0xaa,0xa5,0x73,0x42,0x75,0x23,0x1f, +0x07,0x43,0x6b,0x68,0xf5,0xe4,0xd2,0x57,0xc5,0x4b,0xf3,0x02, +0xf7,0x53,0x87,0x7a,0x82,0x63,0xa4,0x45,0x82,0x6b,0x30,0xf3, +0x9f,0xcb,0x72,0x1a,0x0c,0xd9,0x42,0xc3,0xa5,0x85,0x7e,0x7e, +0xc1,0x0b,0x5d,0x0c,0x70,0x9e,0xbd,0xcb,0x1e,0x3f,0xd8,0x23, +0xe0,0x21,0x74,0x90,0x26,0xae,0x5d,0xbe,0x20,0x4c,0x37,0xee, +0xf1,0x14,0x85,0x41,0xd1,0xcd,0x33,0xcb,0x8f,0x4f,0xdc,0xc3, +0xc4,0x49,0xbb,0x0a,0xf9,0x48,0x00,0xd8,0x88,0xd0,0x15,0xbb, +0x4b,0xf3,0x05,0xd7,0xa0,0x43,0xa5,0x25,0x97,0x0e,0x37,0x18, +0x72,0x19,0xa7,0x65,0x21,0x13,0x83,0x96,0xbb,0x1a,0xe0,0xac, +0x45,0x13,0xc6,0x5f,0x6f,0x2c,0x66,0x3f,0xdb,0x97,0x5c,0x17, +0xf9,0xb0,0x39,0x58,0xc6,0x75,0x51,0xab,0x48,0x66,0xbd,0xf1, +0xaf,0x83,0x63,0xfc,0x9d,0x32,0x89,0x80,0xc0,0x1a,0x39,0xd4, +0x87,0x99,0x57,0x9b,0x7a,0xfb,0x73,0x11,0xc0,0xad,0xab,0x9a, +0xaa,0xf3,0x7c,0x9d,0x35,0x6d,0xee,0xff,0x4d,0xad,0x63,0x09, +0x7e,0xca,0xf7,0xf5,0x2d,0x68,0xfb,0x45,0xa4,0x9f,0x05,0xb5, +0xfc,0x9a,0xac,0x94,0x62,0xe7,0x4e,0x4c,0x1a,0x67,0xc3,0xbc, +0x50,0x3b,0xda,0xf2,0x0d,0xfb,0xd5,0x8e,0x41,0x9f,0x5a,0x5c, +0x2b,0x1b,0x50,0x26,0x1f,0x5b,0x4c,0x30,0xb5,0xe8,0xc8,0x5b, +0x24,0xb2,0x16,0x7d,0x3f,0xb6,0x60,0xfa,0x89,0xe7,0x5f,0x8f, +0xa4,0x9a,0x81,0xc4,0x62,0xab,0x58,0x94,0x71,0x2a,0xb7,0x52, +0x77,0x3d,0xf8,0xdc,0x50,0xb7,0x19,0x8b,0x67,0x2c,0xd7,0xe7, +0xcd,0x57,0x9d,0xdc,0x7b,0x7c,0xff,0x39,0x9b,0xa2,0x9c,0xc5, +0xb3,0x0c,0x71,0xe2,0xec,0x85,0x4b,0x27,0xe8,0x43,0x43,0x8b, +0x85,0x8a,0x53,0x4b,0xa6,0x18,0xe2,0xc5,0x29,0xe1,0x0b,0x27, +0x84,0x2c,0xdc,0x9f,0xbf,0x52,0x3f,0x7d,0xbe,0x6a,0xda,0xb1, +0xb3,0x8b,0xee,0xda,0xbc,0xa8,0x2a,0xbe,0x6f,0xf1,0x61,0x28, +0x91,0xd7,0xa7,0xf0,0x00,0xe6,0xc7,0x84,0xda,0x64,0x93,0xc7, +0x4f,0x38,0x94,0xa8,0xc5,0x0f,0xc6,0x8d,0x8e,0x12,0x33,0xf6, +0xfc,0x99,0xa5,0x1a,0x0b,0x31,0x4c,0x5c,0x04,0x60,0x2c,0xfb, +0xe7,0x8f,0x01,0x18,0x83,0xec,0x3e,0xb2,0xfb,0x86,0x7c,0x33, +0x0c,0xc7,0xd1,0xe0,0x04,0x0b,0x60,0x3e,0xf0,0xcf,0x70,0xf6, +0x6f,0x34,0x3a,0xe1,0x7c,0x5c,0x80,0xfc,0x33,0xdc,0x60,0x61, +0x7c,0x41,0xf2,0xb7,0x9d,0xb9,0xa4,0x14,0xd5,0xec,0x3a,0x6b, +0x02,0xb3,0xcf,0x9b,0xe9,0xcb,0x26,0x5f,0x29,0x2f,0x2a,0xcc, +0x29,0xd4,0x36,0xc2,0x58,0x19,0xb0,0x35,0x9f,0xc0,0x7a,0x5e, +0xa9,0xee,0x25,0x91,0x0f,0x3f,0xe7,0xb6,0x79,0x4a,0x3d,0x5c, +0xc5,0x12,0xc1,0x92,0x31,0x50,0x0a,0x3f,0x1f,0x1f,0x4b,0xed, +0x6d,0x49,0x36,0x23,0xda,0xba,0x6d,0x73,0x1a,0x75,0xf8,0x87, +0x64,0xc6,0x6c,0x8e,0x8e,0xd3,0xca,0xfb,0xbe,0xe7,0xcd,0xb3, +0x1a,0xe0,0xae,0x62,0xca,0xc7,0xc6,0x73,0x30,0xd0,0x33,0x19, +0x85,0x15,0xba,0xe3,0xe3,0x96,0x88,0x1d,0x95,0xf8,0x5c,0x33, +0xfd,0xe5,0xe9,0x75,0x1c,0x3b,0x87,0xf7,0x99,0x61,0xea,0xb3, +0x3d,0x2f,0x40,0xab,0x07,0xeb,0x7f,0xc7,0xe7,0xae,0xc6,0xdd, +0xf5,0xf0,0x80,0xf3,0xa1,0xaa,0xde,0x44,0x09,0xf2,0xcd,0x1d, +0xbb,0xf8,0x63,0x90,0xef,0xe5,0xe9,0x57,0x2a,0x15,0xe4,0x9e, +0xb4,0x2f,0x14,0xa8,0x8b,0xc6,0x20,0x5f,0x03,0xb4,0x8a,0x69, +0x62,0xf2,0x33,0x1f,0xcc,0xde,0x06,0x78,0xac,0x30,0xa1,0x31, +0x64,0x54,0xd2,0x00,0x1b,0xe3,0x5e,0x58,0x2c,0xb9,0xa5,0xad, +0xc3,0x15,0x2a,0x6f,0x61,0x2d,0xac,0x70,0x4b,0x3a,0x8c,0x8b, +0x54,0xa3,0x7c,0xe1,0x71,0xf5,0x28,0xc1,0xd2,0x84,0xfa,0x62, +0xdc,0x63,0x6a,0x43,0xad,0x75,0x64,0x94,0x29,0xc5,0xa5,0xcf, +0xfd,0x57,0x3c,0xd2,0x5d,0xb6,0xc4,0xf3,0x54,0x9b,0x41,0x3e, +0x3c,0x20,0x38,0x9e,0x6a,0x76,0x33,0x2d,0xb8,0xe7,0x52,0x11, +0xc1,0x81,0x54,0x53,0x49,0xa8,0x7d,0x33,0x02,0x5d,0x12,0xc5, +0xd0,0xb5,0x6b,0x16,0x2f,0xd0,0xf9,0xd5,0x4f,0x82,0x41,0x30, +0xb8,0xfe,0x62,0xd5,0xf1,0x35,0xc7,0x26,0xf1,0x1c,0x4a,0xec, +0x8e,0x3a,0x69,0x01,0xd3,0xc2,0xc7,0x0a,0x0a,0xce,0x1d,0xfd, +0xd3,0x70,0x5c,0xf8,0xf3,0xdc,0x92,0x99,0x33,0xa7,0x2d,0xb6, +0x37,0x58,0x9a,0x60,0xb7,0xfd,0x24,0xa6,0xad,0x03,0xa0,0x6f, +0x92,0x18,0xb0,0x7a,0x55,0xf8,0x6c,0x9d,0xc7,0x6d,0x7f,0xae, +0xce,0xeb,0x2b,0xaf,0x9e,0x5e,0x75,0x32,0x80,0x63,0xa8,0x61, +0x47,0xec,0x47,0x0d,0x1b,0x89,0xa9,0xbd,0x13,0xb5,0xfd,0x92, +0xd4,0x97,0x56,0xe7,0xae,0xc9,0x66,0xeb,0x8c,0x3d,0xed,0x86, +0x94,0xad,0x54,0xfb,0xa9,0xc7,0xce,0x14,0x9c,0x3f,0xf6,0xa7, +0x21,0x9b,0x76,0xba,0xce,0x87,0x58,0x83,0x7b,0x04,0xa3,0x1f, +0x86,0x50,0x4d,0x2d,0x91,0xfb,0x13,0xf4,0xa2,0x9a,0x1b,0x4c, +0xad,0x33,0x0e,0x93,0xa5,0xda,0xf7,0x82,0x37,0x53,0xed,0xa2, +0xff,0xaa,0x95,0x73,0xc2,0x74,0x63,0xeb,0x7d,0x94,0x51,0xd7, +0xdc,0x3a,0xb3,0x32,0xcf,0x7f,0x3f,0x1f,0xb5,0x1d,0x8e,0x94, +0x96,0x08,0x0e,0x53,0x4f,0xf1,0x44,0x9d,0x3f,0x0c,0x47,0x85, +0xdf,0x95,0x44,0x9d,0xb9,0x9d,0x0c,0x96,0x71,0x38,0x9f,0xb6, +0xaf,0x27,0x4a,0x89,0x92,0x3d,0x52,0x89,0xa9,0x44,0x89,0x3e, +0x8b,0x28,0x65,0x49,0xaa,0x79,0x59,0x92,0xc3,0x42,0xfd,0xa5, +0xf9,0xbe,0x3e,0x81,0xf3,0xc7,0x1a,0x96,0x35,0x96,0x25,0x91, +0xf0,0xa0,0x27,0x1c,0x14,0x78,0x14,0xf3,0xe5,0xc5,0x85,0x7e, +0x07,0xb9,0x9d,0x53,0x27,0x5f,0xf0,0x02,0xc7,0x44,0xd1,0x6f, +0xe5,0xe2,0x19,0x41,0xba,0xc1,0x4f,0x7d,0xa0,0x2d,0xb4,0x79, +0x5a,0xf3,0x5c,0x8f,0xbf,0xef,0x96,0xae,0x57,0x9c,0xbc,0xa7, +0x3f,0x20,0xdc,0xad,0x08,0x77,0xf7,0xf0,0x9f,0xe3,0x6c,0x58, +0x29,0x38,0xf9,0xe7,0x5d,0x35,0x58,0xbc,0xed,0x4a,0x6e,0xf1, +0xe0,0x9f,0x45,0x4a,0xad,0x30,0xe8,0xce,0x99,0xd0,0x56,0x19, +0xc4,0x5f,0x37,0xe0,0xa9,0xa7,0xc2,0x80,0x07,0xfe,0xfc,0xbe, +0x87,0x76,0x0a,0x25,0xe3,0xfc,0x67,0x3b,0x19,0x56,0x31,0x42, +0x1e,0xf0,0xa3,0x80,0x00,0xb2,0xf1,0x9a,0x40,0x00,0xf5,0x99, +0x44,0x01,0xfe,0xab,0x2e,0xcf,0x6d,0x60,0xe3,0x6d,0x28,0x67, +0xe3,0xe5,0xc0,0x7f,0xcb,0x04,0x57,0x05,0xf8,0x4f,0x51,0x9e, +0xf3,0xeb,0x8d,0xab,0x5c,0x71,0x3a,0x57,0x9e,0x43,0x78,0x2e, +0x70,0x9e,0x29,0x17,0xb8,0x93,0xa2,0x3b,0x0b,0x4c,0x59,0xc0, +0x5d,0x14,0xdd,0xc9,0xbd,0x9c,0xef,0x99,0x97,0xf3,0xc0,0x17, +0x3f,0xe9,0xf9,0x8f,0x1f,0x5e,0x09,0x86,0x6b,0xfe,0xfc,0xd2, +0x17,0xef,0x43,0x68,0x77,0xea,0xf0,0x29,0x61,0x8e,0x55,0x7b, +0x03,0xfe,0x08,0x63,0xa5,0x9e,0x4c,0xcb,0xfe,0x42,0xb0,0x79, +0x4f,0xe6,0x1d,0x69,0x8f,0x91,0xed,0x51,0x5f,0x30,0x33,0x27, +0x32,0x76,0x43,0xea,0xbe,0xd3,0x59,0x85,0x1c,0xfc,0xaf,0x7f, +0x9d,0xdc,0xc1,0x0b,0x3e,0x13,0x36,0xf4,0x0c,0xf5,0x61,0x86, +0xef,0xa7,0xa5,0x53,0x35,0xf5,0xd5,0x25,0xc5,0xc7,0xcf,0x9b, +0x0a,0xa1,0x30,0x9a,0xcc,0xa8,0x2d,0x8d,0x34,0x7b,0xf3,0xb3, +0xce,0x70,0x9a,0x01,0x0a,0xcd,0x60,0x4e,0xe3,0x8d,0x1a,0xfc, +0x44,0xa1,0xb9,0xc8,0x68,0xb6,0x35,0x86,0x4e,0x4b,0x8f,0x50, +0x53,0x67,0x4c,0xa0,0x1a,0xbe,0x3d,0xf6,0x18,0x55,0x75,0xc6, +0x70,0x2f,0x54,0x0f,0x7d,0x4e,0xad,0xfe,0x24,0x98,0x6d,0xec, +0x2f,0xf1,0x0b,0x30,0xc2,0x21,0x09,0x2d,0x86,0x82,0x85,0x88, +0xdf,0xe1,0x3c,0xda,0xf1,0x1d,0xd7,0xcb,0x64,0x96,0x3b,0x9a, +0x77,0xd5,0x97,0x87,0x7d,0x73,0xbf,0xb8,0x6a,0xff,0x03,0x2d, +0x7c,0x8a,0x4b,0x94,0xaf,0x26,0xb4,0xab,0x90,0xba,0x27,0x65, +0xdf,0x7e,0xdd,0xaf,0xd4,0x6a,0x2c,0x99,0x2d,0x74,0x9d,0xe1, +0x85,0xa4,0x27,0x33,0x55,0x54,0xd0,0xf6,0xaf,0xe2,0x5b,0xd0, +0x5e,0xc7,0x35,0x85,0x3f,0xd7,0x14,0x07,0x51,0x2f,0x4d,0x5a, +0xbb,0x62,0xd1,0x4c,0x9d,0xfb,0xa3,0x69,0x60,0x05,0xd6,0x8f, +0xce,0x5d,0x2f,0x58,0x91,0x3d,0x69,0x0f,0x75,0xb8,0x45,0x98, +0x16,0x99,0x27,0x8c,0x99,0x70,0xa8,0xf8,0x62,0xe9,0xc1,0x7a, +0xc3,0x09,0xe1,0x76,0xd9,0x8a,0x49,0xa1,0xc1,0xcb,0xc7,0x1a, +0x82,0x2c,0xe0,0x07,0x62,0xf4,0xc0,0xe3,0x3c,0x65,0x78,0xa5, +0x05,0xd5,0xbc,0x26,0xc6,0xf1,0xb8,0x87,0x9f,0x7f,0x7c,0xe8, +0x43,0xb0,0xed,0x50,0xc2,0x7c,0xa8,0x2e,0x04,0xc2,0xa8,0xcd, +0x5e,0xe6,0x31,0xa4,0x89,0xf2,0x49,0xbc,0x4b,0x35,0x7c,0x93, +0x67,0xa7,0x31,0x9a,0x1f,0xb8,0x2e,0xfb,0xca,0xb8,0x69,0x24, +0x13,0x88,0x81,0x02,0xa8,0xa3,0xfb,0xd4,0xa3,0x25,0xb5,0xde, +0x49,0x86,0x40,0x7b,0x68,0xf1,0xea,0x16,0x08,0x3b,0x0d,0xb2, +0xf9,0x6e,0xe9,0xa4,0xf8,0xfc,0xed,0x08,0x32,0x58,0x1f,0x2e, +0x7e,0xe6,0x1d,0x38,0x60,0x80,0x77,0xf9,0x33,0xfd,0xc7,0xe2, +0x94,0xba,0xc3,0xff,0x2d,0x4e,0xa9,0x3b,0xc2,0xf8,0x9e,0x21, +0xf2,0xce,0xfb,0x10,0xa3,0x40,0xb4,0x9d,0xc2,0x49,0xd4,0x2c, +0x85,0x40,0x50,0xb9,0xfc,0xe9,0xb7,0xf0,0x03,0x04,0xc9,0x03, +0x02,0xe0,0x97,0x01,0xf8,0x03,0x06,0xc1,0xa8,0x0f,0x53,0x58, +0xeb,0x83,0x7c,0x44,0x4f,0x79,0x14,0x59,0x7f,0xda,0xc9,0x96, +0x89,0xf8,0x89,0xcc,0x1a,0xf9,0x98,0xb9,0xdf,0x83,0x9a,0x9d, +0x65,0x1e,0x1f,0x35,0xff,0x9a,0x7c,0x79,0x25,0xeb,0xee,0x23, +0xdd,0x55,0x79,0xa4,0x27,0xfc,0x13,0x29,0x0e,0x8d,0x19,0x1b, +0xe1,0xab,0xe7,0x0e,0xa2,0xed,0x06,0xb4,0x91,0x9b,0x2b,0xd1, +0x36,0x89,0x0f,0x04,0x39,0x06,0xd6,0x49,0xe9,0x19,0x99,0x1c, +0x4d,0x32,0x08,0x9d,0x34,0xe5,0x97,0x99,0x22,0x50,0x4e,0xa5, +0x99,0xaf,0xba,0x2e,0x8a,0x49,0xde,0x83,0x4a,0x9a,0xf4,0xc7, +0x53,0xe9,0x21,0xca,0xa9,0xf4,0xb7,0x8d,0xa7,0xd2,0xf2,0xd7, +0xdc,0xf3,0x7a,0x4e,0x5b,0x5a,0x90,0x54,0x3c,0x4b,0xad,0xf8, +0xf9,0x78,0x8c,0x22,0xaf,0x99,0x88,0x2f,0xd7,0x1d,0x1f,0xbf, +0x54,0x91,0xd7,0x56,0xd8,0x5c,0x5f,0x16,0x56,0x75,0xf9,0x4c, +0xe1,0xd1,0xc2,0x26,0xac,0xb3,0x04,0x2d,0xb4,0xc3,0xb6,0x25, +0xe7,0xb0,0x3d,0x13,0xb6,0x99,0x31,0x0a,0x48,0x71,0xa1,0x2d, +0x47,0x6e,0xfb,0x84,0x43,0xa6,0x31,0xb1,0x6f,0xc2,0xb6,0xc8, +0x2f,0xd1,0x1d,0x1a,0x43,0x1d,0x9e,0x90,0xa2,0x33,0xd9,0x05, +0x1c,0x11,0x3c,0x39,0x83,0x0b,0x7b,0x62,0x12,0xf6,0xaa,0xe8, +0x6d,0xd1,0x29,0xd1,0x31,0x5a,0xf9,0xf0,0x43,0x2e,0xa7,0xa3, +0x6e,0x43,0x31,0x5e,0xfc,0xa8,0x34,0xce,0x67,0x14,0xd5,0xea, +0x4e,0xba,0x2f,0x10,0x51,0x0c,0xf7,0x61,0xa3,0xb0,0x62,0x33, +0xa9,0xba,0xee,0xcc,0x85,0xa3,0x45,0xca,0xc6,0x4e,0x5a,0x22, +0x68,0x78,0x55,0x48,0x6e,0xf4,0x1a,0x98,0xc0,0x37,0x8d,0x01, +0x5b,0x48,0xcc,0x54,0xb0,0x02,0x0f,0x93,0xce,0xb8,0x90,0x51, +0x7c,0x45,0x97,0xe7,0x3e,0x5f,0x44,0xcb,0xb9,0x5e,0x68,0x89, +0xed,0xf4,0x97,0xc3,0xaa,0xaf,0x9d,0x29,0x39,0x72,0x41,0xd1, +0x3c,0x0a,0x8f,0x6e,0x9a,0xd2,0xb3,0x4d,0x18,0xd4,0x26,0x1e, +0x6d,0x24,0x6a,0x1d,0x43,0xa8,0xae,0x0d,0x91,0x47,0xa2,0x37, +0x3f,0x62,0x92,0xb0,0x1b,0xe8,0xc6,0xca,0x36,0x90,0x6f,0xb4, +0x19,0x2b,0xc8,0x8b,0xf1,0x85,0x94,0x08,0xcd,0x60,0x3a,0x2c, +0xe3,0xd0,0x87,0x77,0x88,0x71,0x71,0x32,0x6f,0xe2,0x00,0xfc, +0xe8,0xaa,0x1a,0xb3,0x7d,0x45,0x18,0x80,0xc1,0x12,0x33,0xba, +0xa8,0x6d,0x73,0x42,0xcd,0xb3,0xc9,0xf1,0x92,0x13,0x3b,0xd3, +0xf6,0x70,0xd0,0xe9,0xc3,0x9d,0x34,0xb9,0xcc,0x6b,0xfc,0x6e, +0xcd,0x17,0xf1,0x9b,0x94,0x63,0x6d,0xec,0x0b,0x6d,0x3d,0x64, +0x02,0xa7,0x8d,0x64,0x3c,0xd5,0x06,0x12,0x63,0x3e,0x73,0x82, +0xa9,0xe6,0x1a,0x13,0xdb,0x2b,0xb0,0xa8,0x01,0x80,0x7d,0x29, +0xc6,0x3a,0x1c,0x2d,0xf1,0x3a,0x29,0x51,0xb1,0xbc,0xa0,0xa1, +0xa5,0x1d,0x51,0x31,0x42,0xc2,0xfa,0x24,0xe3,0x10,0x99,0x2c, +0x42,0x51,0x2e,0xc0,0x4a,0x29,0xf1,0x47,0x98,0x01,0x33,0x30, +0xd7,0x07,0x66,0xf5,0x66,0xae,0x4d,0x7f,0xaa,0x76,0x20,0x89, +0x83,0x6c,0x8c,0x8b,0x53,0xf8,0xf8,0xda,0xf0,0xf1,0x19,0x87, +0x90,0x0a,0xaa,0xeb,0x4f,0x28,0xdd,0x4f,0x7e,0xc1,0x30,0xda, +0x61,0x25,0xc1,0x20,0x02,0xef,0xf1,0x22,0xac,0x20,0x6f,0xcd, +0x78,0xb1,0x17,0x4b,0x5c,0x22,0x61,0x57,0xb0,0x1a,0x27,0xab, +0x20,0xcf,0xa8,0x62,0x6f,0xbc,0x88,0xb9,0xd0,0x89,0xbf,0x32, +0xde,0x73,0xf1,0x84,0x0f,0xcc,0xa6,0x2d,0x4b,0x88,0x71,0x51, +0x3b,0xd6,0xa6,0x3d,0x74,0x65,0x2c,0x45,0x66,0x81,0xef,0x52, +0x12,0x5f,0x76,0x02,0x65,0x5f,0xc1,0x1d,0x9e,0xc4,0x15,0xa8, +0x1c,0x8d,0xe3,0x24,0x05,0x8e,0xd7,0x13,0xdb,0xc2,0x00,0xee, +0xd6,0x4f,0x03,0xcd,0x18,0x59,0x82,0x9f,0x04,0xd7,0x6a,0x89, +0xfd,0xd1,0x01,0xa6,0x09,0x5c,0x1a,0x47,0x62,0x5f,0x89,0xea, +0xbf,0x24,0x4c,0x22,0x33,0x9d,0xc3,0x8f,0xf6,0xa4,0xa5,0x82, +0xb3,0x7f,0x6e,0x4d,0x75,0x45,0xee,0x5d,0xc3,0x11,0xe1,0x4e, +0x05,0x93,0xc9,0xfe,0xf3,0x5d,0x0c,0xa6,0xe3,0xb6,0xd9,0x0d, +0xc6,0xe5,0x2e,0x38,0x43,0x74,0x84,0x81,0x54,0xa7,0x27,0xa6, +0x9b,0x2b,0x14,0x6c,0x9e,0x99,0xec,0xe6,0x00,0x49,0x76,0xf4, +0x36,0x3a,0x0a,0x87,0xf1,0xe8,0xdb,0x4f,0x09,0xac,0x50,0xce, +0xd0,0x62,0x6c,0xd7,0x47,0x41,0x3c,0x3f,0x43,0x8b,0xa6,0xaa, +0xd1,0xc4,0xe7,0xdd,0x7b,0xf2,0xf1,0xec,0x6e,0x8b,0x0b,0x73, +0x8b,0x1c,0x39,0xf2,0x5a,0x1c,0xc1,0x5c,0x4e,0xb3,0x96,0xd1, +0xac,0xc5,0x44,0xbb,0xf5,0xd1,0xb0,0x81,0x9f,0xd8,0x25,0x50, +0xab,0xde,0x64,0x2f,0x08,0x4a,0xf5,0x83,0x01,0xd4,0x7e,0x1d, +0x61,0x5f,0x58,0x36,0xd5,0x51,0x62,0xf1,0x7e,0x21,0x61,0x6e, +0x06,0x77,0x30,0xf8,0x16,0x3a,0xb5,0x86,0xff,0xbd,0xf5,0x8e, +0x98,0x3c,0x10,0xb5,0x72,0xf7,0x12,0x0f,0xf7,0x6b,0x4f,0x75, +0xff,0x31,0x35,0xe4,0xe7,0x77,0xbd,0x21,0x9c,0x5a,0x06,0x13, +0xdc,0xc1,0x8f,0xef,0xa8,0xf5,0x7d,0x82,0x8f,0x3e,0x9c,0x27, +0x6f,0x60,0x5e,0x0d,0xaa,0xc4,0x6c,0xb0,0xe5,0xe7,0xe0,0x5d, +0x55,0xa8,0x17,0x56,0x42,0xd7,0xd1,0x09,0xc7,0xd0,0x56,0x85, +0x9f,0xf8,0xc0,0x4c,0x7b,0x61,0xe3,0x90,0x41,0x9b,0x3e,0x33, +0xed,0xe7,0x53,0xb3,0xa7,0xe4,0x36,0x3e,0xa7,0xe6,0x22,0xf9, +0x1d,0x16,0xd4,0xd0,0x96,0x3d,0x08,0x6b,0x62,0x47,0xd5,0x8e, +0xe4,0x5f,0xf6,0xb9,0xbd,0x14,0xb2,0x76,0xf9,0x42,0x6e,0x9f, +0x4f,0x85,0x56,0xd0,0xfa,0xf1,0x79,0x66,0x9f,0xe7,0x84,0x70, +0xfb,0xbc,0x4d,0x85,0x7c,0x20,0x00,0xb4,0x22,0x74,0xc3,0x6e, +0x4c,0xfc,0xba,0x06,0x1f,0xbe,0x58,0x52,0x76,0xa8,0x81,0x89, +0xdf,0x86,0xb2,0xe5,0x21,0x93,0x82,0x97,0xb9,0x72,0xb5,0xbd, +0x27,0xc0,0xc4,0x47,0x2f,0x85,0xae,0x5b,0xb1,0x78,0x96,0xce, +0xf3,0xd1,0x74,0x45,0x7a,0x9f,0xbd,0x92,0xbf,0xe2,0x58,0xe8, +0x6e,0xa6,0x82,0xad,0x2f,0xcb,0xbb,0x82,0xa0,0x1d,0xe7,0xd3, +0x41,0x0a,0x17,0xc6,0x06,0x1f,0x2c,0xba,0x50,0xb6,0xff,0xb6, +0xe1,0xa4,0x50,0x5f,0xba,0x6a,0xf2,0x94,0x09,0x2b,0xc6,0x18, +0x94,0x2d,0x23,0x0e,0xa3,0x42,0xb5,0x5e,0xdc,0x94,0x6e,0x29, +0x62,0x2e,0x0e,0xe5,0x31,0xfe,0xdd,0x4b,0x8b,0xb0,0x3b,0x38, +0xd0,0x56,0x91,0x24,0x5a,0x09,0xf0,0xbf,0x90,0x79,0xb1,0x4a, +0x07,0x8e,0xb5,0x72,0x4b,0x0e,0x2d,0x88,0xaa,0x29,0x6e,0xd8, +0x01,0x25,0x7d,0xc9,0xd4,0xdb,0xd7,0x4b,0x2e,0xf1,0xba,0xe4, +0x4c,0x9d,0xf1,0xfd,0x36,0x4a,0xdb,0x12,0x70,0x58,0x2d,0x51, +0xbb,0x57,0xe4,0xc7,0xa6,0xf8,0x08,0xab,0x30,0x82,0x2b,0x60, +0x02,0x6d,0xf1,0x8c,0x47,0xdf,0x7b,0x92,0xf7,0xc3,0xbb,0x50, +0x9b,0xda,0xff,0x0f,0xa1,0xed,0x53,0x8e,0x1f,0xbe,0x85,0x67, +0x97,0xf0,0xf9,0x37,0xf0,0x6b,0x85,0x3c,0x00,0xbf,0x03,0x27, +0x2e,0xb3,0x07,0x32,0x49,0x7b,0x5f,0x90,0x57,0x1a,0xcd,0xa5, +0x67,0x1f,0xfe,0x26,0x0b,0xc4,0x7e,0x13,0xfd,0xb0,0x73,0x5f, +0x25,0x91,0xa7,0xcf,0x6f,0xb5,0x37,0xa0,0xb5,0x2e,0x15,0x0b, +0xde,0xea,0xc9,0xdf,0x95,0xb7,0xc1,0x5e,0xf7,0x13,0x2e,0xf2, +0x80,0xce,0xd3,0x45,0xdb,0x49,0x5e,0xd8,0xb1,0x87,0x9e,0xf5, +0xab,0x22,0x50,0x6a,0xec,0xc5,0x7a,0xfd,0x9e,0x67,0xaa,0xda, +0x7e,0x04,0x0f,0xb6,0x85,0x39,0xce,0x72,0xc4,0x1d,0x81,0x69, +0x15,0x9b,0x64,0xbe,0x91,0xde,0x8a,0x20,0x91,0xc6,0xb3,0x8b, +0xd6,0x1c,0xff,0xab,0xf1,0x42,0xb9,0xd3,0xf1,0x0f,0x12,0x11, +0x1b,0x15,0xaf,0x49,0xa2,0x74,0x28,0x81,0xa3,0xfd,0x35,0xc7, +0xca,0x54,0x96,0xb4,0x15,0x7b,0xbc,0xb6,0x11,0xf5,0x3e,0x2a, +0x9e,0xda,0xe6,0x91,0x79,0xb8,0x4c,0xc1,0xb8,0xd7,0xe7,0x3d, +0xcf,0x29,0xcd,0xd9,0x99,0x66,0xc2,0xb8,0xef,0xa5,0x54,0x28, +0xe6,0x15,0x8d,0x57,0x48,0xab,0x59,0xeb,0x08,0x8e,0x91,0xcf, +0x71,0xbb,0xb7,0x29,0x18,0xf9,0x3b,0x15,0x8c,0xfc,0x23,0x42, +0x5c,0xb0,0x1b,0xa3,0x9f,0xc0,0xe9,0x0d,0x79,0xcf,0xb3,0x4b, +0x72,0x76,0xa5,0xed,0x51,0x2a,0x1c,0xf7,0x31,0x55,0x38,0x86, +0xec,0x4a,0xcc,0x16,0x60,0x3a,0xc6,0x48,0x26,0xc9,0x15,0x11, +0xab,0x59,0x9f,0xaa,0x20,0xed,0x53,0x87,0x45,0x64,0x2e,0x2e, +0x0a,0xe6,0xf5,0xfd,0x14,0xf4,0xef,0xe3,0x3b,0xd3,0x76,0xf3, +0x73,0xa0,0xc3,0x3d,0x35,0xc7,0xcb,0x15,0xda,0x8b,0x9c,0x36, +0x14,0xa7,0x49,0x6b,0xb7,0x24,0x6c,0x8c,0x54,0x5e,0x26,0xf5, +0xc0,0xde,0xed,0xfb,0x53,0x0f,0x6b,0x61,0x77,0x89,0xfc,0x47, +0x08,0x1c,0x13,0x62,0x26,0xba,0x2e,0xc4,0x45,0xa1,0xd9,0x21, +0x1a,0xb0,0x3b,0xf9,0xf5,0xb1,0x92,0x63,0xbb,0x4d,0x6f,0x70, +0x74,0x80,0xe6,0x68,0x09,0xe3,0x12,0x57,0xa7,0xa2,0x86,0x77, +0x84,0xb1,0x09,0xe5,0xc7,0x01,0xd4,0xae,0x9e,0xc4,0xbd,0x80, +0x99,0xe0,0x87,0xb9,0x01,0x30,0xf7,0x33,0x9c,0x85,0x0e,0xc2, +0xfb,0xdb,0xa4,0x92,0x57,0xe9,0x5e,0xc1,0xe4,0x5d,0x0f,0x10, +0xa1,0x07,0xc7,0x1c,0xeb,0xc1,0x8b,0x52,0xfd,0xc2,0x84,0xe4, +0x2f,0x6e,0x82,0xbc,0x02,0xcf,0x49,0xf1,0xaf,0x20,0x0c,0x42, +0x30,0xd7,0x0f,0xe6,0xf6,0x57,0xea,0x7b,0x5b,0x89,0xe4,0x16, +0x35,0xbf,0xda,0x44,0xd7,0xd2,0x44,0xe7,0x08,0xcd,0xdd,0x99, +0x8d,0x96,0x07,0x3f,0x32,0xba,0x25,0x78,0x86,0xd7,0xa7,0x98, +0x05,0x13,0xf1,0x84,0x1f,0x84,0x0f,0x60,0xdd,0x75,0xa3,0x1d, +0xde,0x73,0xb0,0x7f,0x47,0x0e,0x12,0xfa,0x1f,0x82,0xc7,0x95, +0xc3,0x59,0xff,0xeb,0xf8,0xbd,0x72,0x2e,0x9b,0xf7,0xa8,0xf1, +0xfe,0xd1,0xff,0xf3,0x5c,0xd6,0xbf,0x0e,0x5f,0x29,0x47,0xb2, +0x47,0x1e,0x09,0xd5,0xa8,0xa3,0xd6,0x1f,0x08,0xd7,0x02,0xd6, +0x1e,0x72,0x33,0xa6,0x05,0x9a,0x8d,0x17,0xe4,0x65,0x78,0x4d, +0x8a,0xfd,0x83,0x35,0x0d,0xc3,0x5c,0x7f,0x98,0xd7,0x19,0x67, +0x33,0x59,0xde,0xe1,0x2d,0x61,0xf2,0xb6,0x6f,0x63,0x3c,0xc5, +0x91,0xff,0xe3,0xe4,0x76,0x0a,0xb5,0x5e,0x4a,0x6a,0xd0,0x20, +0x41,0x17,0xcc,0xc0,0x2e,0xac,0xef,0x8e,0x9b,0x08,0xd6,0x4a, +0x89,0x3f,0x31,0xb1,0x3d,0x9b,0x76,0x78,0x4c,0x92,0xb8,0x22, +0x68,0xc7,0xf4,0x80,0xc4,0xf5,0x00,0xed,0xb0,0x8d,0x74,0x63, +0x3a,0xe2,0x33,0x4a,0xd5,0xc4,0x74,0x5f,0xa3,0xdc,0xa7,0xb5, +0xe4,0x0d,0xce,0xe4,0x7a,0x81,0xda,0x05,0x93,0xbb,0x2f,0x74, +0x0f,0xe5,0xd1,0x3e,0x60,0xe4,0xdb,0xce,0x8b,0xf9,0xb6,0xb3, +0x75,0x74,0x86,0x8f,0xb1,0x39,0xdf,0x76,0x9e,0xfb,0x7f,0x40, +0x0a,0x35,0xee,0x58,0xcf,0xe4,0x3b,0xd6,0x5f,0xde,0xca,0xa8, +0x7f,0xa2,0xbb,0x2f,0x0f,0xf7,0x85,0x3f,0xa2,0x8d,0x6f,0x89, +0x4c,0xa2,0x33,0x7c,0xf9,0x6e,0xf5,0xbc,0xf5,0xf3,0x13,0xe6, +0x33,0x32,0x2b,0xec,0x48,0x3b,0x7d,0x4f,0x1e,0x2b,0x21,0xf0, +0xc2,0xdf,0x69,0x1c,0x82,0xdc,0xf4,0x87,0x14,0x5f,0xa5,0xc4, +0x33,0xf2,0x0c,0xc8,0xc6,0x0c,0xf1,0x5a,0x25,0x43,0xdc,0xc3, +0x94,0x21,0x5e,0xa1,0x64,0x88,0x53,0xcb,0x93,0x26,0xd4,0xda, +0xb7,0x66,0xc6,0x58,0xe9,0x4f,0x5c,0xde,0x60,0xdc,0xe8,0x82, +0xf3,0xed,0x79,0x38,0xd4,0x04,0xd2,0x74,0x77,0x2d,0x97,0xed, +0xb4,0xe3,0x23,0x22,0xe0,0x4d,0xe3,0x70,0xda,0xb2,0x8f,0xf2, +0x24,0x93,0x3d,0xd9,0xc8,0x51,0xa6,0xb4,0x1e,0xdc,0x84,0x1e, +0x47,0xa0,0x07,0x56,0x7c,0xf8,0x0f,0xbf,0x76,0xe3,0xd7,0xb5, +0x1f,0xfa,0xf1,0x25,0xf9,0x2d,0xc1,0x5b,0x1f,0xbe,0xe5,0x81, +0x0f,0xbd,0x51,0xe3,0x09,0x1a,0x26,0xfa,0x82,0xf9,0xa9,0xc0, +0xe0,0xb2,0x32,0xec,0x07,0xfd,0x63,0xb2,0xa2,0x53,0x23,0xa3, +0x1b,0x4f,0x05,0x8a,0xb7,0x95,0xd6,0xe8,0xca,0x9c,0x26,0x89, +0x68,0x3d,0xc3,0x85,0xf9,0x68,0x76,0x4c,0x44,0xdc,0xad,0x2f, +0x29,0xcf,0xad,0xd4,0xa6,0x6f,0xcf,0x52,0x4e,0x05,0x8c,0x6b, +0x98,0x14,0x79,0x40,0x0d,0x7d,0xc9,0x08,0x5e,0x8c,0xe3,0xbd, +0x08,0x11,0x54,0xcc,0x51,0x02,0xf9,0x4b,0xa5,0x40,0x58,0x3a, +0xed,0xae,0xf1,0x86,0x93,0xbc,0x80,0x63,0xb5,0x4f,0xa1,0xba, +0x4a,0xae,0x1c,0xbe,0x21,0x33,0xef,0x1a,0x4f,0x51,0x6d,0x34, +0x1b,0xf6,0x5c,0x8e,0xa7,0xbc,0xe5,0xae,0x71,0x8b,0xf8,0x7e, +0xd9,0x0c,0x89,0x3a,0x2c,0x27,0x90,0xd6,0x8e,0x7f,0x60,0x90, +0xdc,0x8c,0xda,0x2d,0x51,0xce,0x21,0xbf,0xb8,0x2b,0x60,0xd6, +0x36,0xaa,0xcd,0x23,0x16,0x6f,0x8c,0x9e,0xd2,0x99,0x00,0xa0, +0xe5,0x5f,0x9f,0x2f,0x3b,0xcf,0x2c,0xb7,0x5d,0xdb,0x77,0x27, +0xef,0x89,0xd7,0x42,0x3e,0xda,0x15,0x56,0xe2,0x51,0x68,0xb7, +0x2e,0x23,0x22,0x25,0x22,0x5a,0xbb,0x32,0x72,0x43,0x6a,0xce, +0xe9,0xac,0xfc,0x94,0x62,0xf9,0x06,0xe9,0x3d,0x26,0x00,0xa3, +0xfb,0xa8,0xdf,0x26,0x59,0x80,0xe5,0xdb,0x0d,0x12,0xfe,0x0c, +0x85,0xf0,0xab,0x3b,0xaa,0xb1,0x0f,0x08,0x22,0x5c,0x68,0x67, +0xba,0x31,0xae,0xf1,0x06,0x4e,0xc1,0x33,0xd4,0x76,0x3f,0xc1, +0xad,0x1f,0x78,0xe4,0x49,0x09,0x1e,0x0b,0x11,0x61,0x32,0x13, +0xe6,0x6b,0xd8,0x32,0x8f,0x88,0x8d,0x8e,0xd7,0x24,0xa6,0x1e, +0x3e,0xb0,0xed,0x50,0xca,0xb1,0xa6,0x65,0x7e,0x54,0x88,0x0f, +0x18,0x17,0x8e,0xcb,0x83,0x72,0x26,0xb2,0x65,0x7e,0xfa,0x79, +0x76,0xe9,0x71,0x26,0x68,0x36,0xed,0x5a,0x0f,0x47,0x7b,0x29, +0x72,0x8d,0x43,0xfd,0x6e,0x56,0xca,0x36,0xaf,0x67,0x46,0x60, +0xde,0xb6,0xfc,0x8b,0xba,0x83,0xae,0xab,0xc5,0x3e,0x73,0x42, +0xb1,0x5d,0x67,0x7d,0xe9,0xe4,0x2b,0xa5,0x45,0x05,0x39,0x05, +0x7c,0xb3,0x82,0xdb,0x92,0x7a,0x34,0xd7,0x5c,0x2a,0x56,0xbd, +0x0f,0x04,0x4f,0x6e,0x42,0xae,0xab,0x87,0xf3,0x7c,0x9b,0x42, +0xe2,0x65,0xcb,0x4d,0xb0,0x84,0x27,0xb7,0x9d,0x66,0x1c,0xc6, +0xae,0x11,0xfb,0xcc,0x9e,0x8c,0xed,0xbb,0x30,0xdd,0x71,0x8d, +0xa3,0xb0,0x9f,0xd1,0xa6,0x7f,0xa1,0xd4,0xd9,0xb3,0xe5,0x25, +0x98,0x8b,0x38,0x87,0xf1,0x12,0xac,0xc1,0x55,0xb7,0xa0,0xa0, +0x89,0x03,0x47,0x1c,0x8e,0xd7,0x50,0xbb,0xed,0xe4,0xe2,0x34, +0x46,0x44,0xed,0x1f,0x92,0x92,0xf3,0xaa,0xf7,0x01,0xe0,0xc6, +0x5b,0x2e,0xbf,0x05,0x27,0x95,0x96,0xcc,0x0a,0x6a,0x39,0x8e, +0xad,0xdc,0x3c,0x63,0x33,0xc5,0x52,0x6a,0x5a,0x72,0x8a,0xa5, +0xe4,0xc8,0x56,0xd8,0x20,0x6e,0x85,0xf1,0xc5,0xa7,0x58,0x4c, +0x12,0xb7,0x98,0x38,0x51,0x9b,0xb1,0x72,0x4b,0xb6,0xdc,0x5b, +0x2a,0x44,0x77,0xa5,0x84,0x3f,0xde,0xed,0x24,0x38,0x9c,0xea, +0x07,0x11,0xa0,0x4a,0x9b,0xb8,0x5a,0xd5,0x3a,0x47,0xd4,0xc4, +0x60,0x77,0x9b,0xf9,0xa0,0x87,0x1b,0x57,0xf0,0x06,0xb4,0x83, +0xc7,0x57,0xe4,0x4e,0x72,0x08,0xb5,0x66,0x7e,0xfc,0x08,0x74, +0xa7,0xea,0x4d,0x04,0xee,0x79,0x48,0x30,0x13,0xb7,0xde,0x81, +0x5b,0x78,0x42,0x11,0x78,0x6f,0xdc,0xf0,0x16,0x93,0x5b,0xb7, +0x14,0x79,0xb7,0x8b,0x97,0x03,0x9c,0x09,0xee,0x98,0x1b,0x08, +0x73,0x87,0x33,0x39,0x64,0xc3,0xc5,0x64,0xc5,0x7f,0xc5,0x64, +0x33,0x45,0xdc,0xc1,0x4a,0xdc,0xd2,0x00,0xd7,0xd9,0x2b,0x19, +0xaf,0x32,0x1b,0x80,0x03,0x3b,0x52,0xeb,0x9f,0xc9,0xde,0xd3, +0xdb,0xce,0x94,0x29,0x85,0xeb,0xbb,0xcd,0x9e,0x88,0x92,0x2d, +0xfb,0x09,0xae,0x5e,0x2e,0x3a,0xcb,0xf7,0x8b,0x4c,0x85,0x0a, +0x0d,0x68,0xcd,0x7f,0x02,0xd6,0xed,0x6e,0x6a,0xb0,0x20,0x90, +0xce,0x6b,0xb8,0x5e,0xc7,0x76,0x02,0x6e,0x92,0xfb,0xfd,0xbf, +0x0c,0xef,0x10,0xf3,0x96,0x31,0x83,0x6a,0xdf,0x13,0xe3,0x0e, +0x4a,0x9f,0x10,0x8b,0xbd,0x2f,0xb6,0x7f,0x4b,0x0d,0x2d,0xc8, +0xf4,0xb8,0x19,0x5a,0xf9,0x95,0xa7,0x05,0x35,0x5f,0x4f,0xf0, +0xde,0x31,0x66,0xc7,0x78,0x57,0x76,0x11,0x8f,0x81,0xde,0x95, +0xd9,0x3f,0x9d,0x79,0x4a,0xd2,0x4a,0xe8,0xec,0xca,0xec,0x1f, +0xbd,0xca,0xd1,0x1f,0xdc,0xec,0x84,0x8d,0x6e,0x63,0x37,0x8d, +0xe3,0xd5,0xbc,0xc6,0xa0,0x55,0x57,0xaf,0x5f,0x3b,0xbd,0x1d, +0x42,0xe6,0xbd,0x9f,0x43,0xa0,0x04,0x3e,0xa9,0xc6,0x31,0x72, +0x1f,0x6a,0xd5,0x8c,0x24,0xf1,0x8d,0xe5,0x32,0x50,0x57,0xa3, +0xa7,0xdc,0x8f,0x6f,0x2c,0x2b,0x07,0x4e,0xcb,0x81,0x79,0x19, +0x54,0x17,0xc2,0x56,0x55,0x3e,0x5b,0x55,0x4e,0xf2,0x86,0xbb, +0x82,0xbc,0xda,0x38,0x97,0x3a,0xb4,0x21,0x50,0x6f,0xec,0xc4, +0x3f,0xe5,0x56,0x35,0xd4,0x6e,0xf1,0xc7,0x16,0x1b,0x95,0x16, +0x61,0x54,0xa7,0x55,0x62,0xfb,0xbe,0x60,0x9a,0x3b,0x93,0xad, +0x33,0x9e,0x25,0xd3,0xfe,0x2f,0xe2,0x61,0x41,0x2d,0x3b,0x11, +0x5c,0x28,0x9b,0x53,0x4b,0x1f,0xf2,0x11,0xe4,0x00,0x5e,0xc0, +0xa7,0x12,0x55,0x0f,0x67,0x1e,0xa3,0xdc,0xf1,0xbd,0x0f,0x93, +0xf2,0x8e,0xec,0xa7,0xb9,0x0d,0xa7,0xe1,0x36,0xfb,0x69,0x56, +0xb2,0x9f,0x26,0xfe,0x11,0x13,0xdd,0xee,0x8a,0x06,0x1b,0xc9, +0x84,0x39,0x15,0xec,0x18,0xe9,0xf7,0xb7,0x78,0xa9,0xc6,0xf8, +0x4a,0x55,0x74,0xb0,0x13,0xb7,0xde,0x57,0xb2,0x9f,0xc9,0xf1, +0x1f,0xae,0x67,0x78,0xb5,0xed,0x7e,0x22,0x94,0x51,0xdd,0x78, +0x52,0xc4,0x67,0x8b,0xa6,0x9a,0x48,0xdb,0xd2,0x33,0x95,0x2a, +0x12,0xec,0x87,0xb8,0x5c,0x8a,0x63,0x41,0x88,0xd8,0x1e,0xb5, +0x29,0xb2,0x09,0x80,0xf8,0x54,0xe6,0xe9,0x22,0x5d,0x9e,0xd3, +0x02,0xb1,0x7f,0xa0,0x2f,0x0e,0xeb,0xa9,0xbf,0x3c,0xe9,0x9b, +0x4b,0x75,0x67,0xf3,0x2f,0x68,0xe1,0x2b,0x74,0x47,0x67,0x7e, +0xd6,0x28,0x13,0x91,0x76,0xda,0x40,0x7e,0x2c,0x0b,0xea,0x6d, +0x88,0x13,0x7b,0x4f,0x08,0x72,0x1c,0x3c,0xf7,0x74,0xc5,0x1c, +0xbd,0xc7,0x24,0x95,0xf7,0xd9,0x5a,0x1f,0x50,0x53,0x83,0x2b, +0xfb,0x22,0x5a,0xc3,0xcf,0xd2,0x4b,0xa6,0x24,0x1e,0xb9,0xd9, +0x61,0xdf,0x3f,0xdd,0xf1,0xc1,0xf3,0xbe,0x98,0xf8,0xf2,0x39, +0x3c,0x72,0xe7,0x7f,0xbb,0xe1,0x03,0xd0,0xf4,0xc5,0x05,0x4c, +0xb0,0xf5,0x82,0x74,0x2e,0x26,0x9b,0x61,0x5f,0x01,0x10,0x9a, +0x35,0x5d,0x5b,0xb8,0xca,0x53,0x38,0x4e,0xdb,0x20,0xaa,0x25, +0x3c,0xed,0x7b,0x91,0x28,0x6f,0x61,0xf6,0x99,0xd6,0x5c,0xc1, +0x11,0x2a,0xfa,0xca,0x58,0x24,0xbe,0x1f,0xbd,0x48,0xc2,0xc7, +0xc6,0xcf,0xe1,0xa9,0x4b,0x27,0xcc,0xfd,0x4d,0x84,0x5c,0xdc, +0x2f,0x61,0x2e,0x9b,0xa2,0xb9,0x82,0xdc,0x0b,0xf7,0xd1,0x16, +0xd7,0x89,0x85,0x52,0x33,0x6d,0x4f,0xf1,0xb6,0xb2,0x2b,0xba, +0x6b,0x63,0xbd,0xc5,0x6e,0x11,0x9e,0xfe,0x43,0xf5,0x81,0x4f, +0x12,0x33,0x63,0xd2,0x62,0x62,0xf1,0x39,0x0f,0x92,0x56,0x90, +0x84,0x7d,0x44,0x6c,0xbd,0xd0,0x7d,0x00,0x7e,0xc2,0xc1,0x89, +0x15,0x24,0x61,0x6d,0x2a,0x8f,0x8f,0xde,0x68,0x91,0x99,0x54, +0xad,0xe1,0x61,0x3b,0xf3,0x9a,0x32,0x86,0xef,0x36,0x15,0x1b, +0xec,0x1f,0xe3,0xb2,0x6e,0xbc,0xdb,0x7a,0xe5,0xc0,0xf4,0x60, +0xfd,0x97,0x8f,0xbf,0xd1,0xdd,0xe4,0xc5,0x06,0xfb,0xad,0x1b, +0xc9,0xb3,0x85,0x95,0x62,0x83,0x69,0x9e,0x2a,0x0b,0xaa,0xff, +0x40,0x8c,0x6d,0xe0,0x12,0x13,0xc8,0x5f,0x31,0x81,0x2c,0xbf, +0x45,0x07,0xdc,0x48,0x10,0xa4,0x7b,0x4a,0x95,0x43,0xdc,0xc8, +0x84,0xb6,0xe5,0x29,0x82,0x6e,0xf2,0x6a,0x5e,0x3a,0x8c,0xa3, +0x61,0xf7,0x80,0x5e,0xb5,0xe4,0x05,0x75,0xe8,0x49,0xfa,0x89, +0x1b,0x3e,0x1f,0x9c,0x3c,0xe4,0x25,0xcf,0xe6,0x3d,0x26,0x41, +0x6e,0x37,0xcc,0x15,0x2c,0x3e,0x14,0x92,0x72,0x8e,0xb2,0xb9, +0x71,0xf9,0x46,0xf5,0x8e,0xba,0xf4,0x6b,0xf7,0xa8,0xed,0x0c, +0xb2,0x61,0xc1,0x86,0x85,0x89,0x8b,0xb4,0x71,0xf6,0x0a,0xac, +0x26,0xd5,0x32,0x56,0x26,0x30,0xce,0xe5,0x1b,0x97,0x6d,0x50, +0xef,0xbc,0x95,0xde,0xf0,0x98,0xea,0x9f,0x92,0x79,0x09,0xf3, +0xde,0x9d,0x6b,0x7a,0xb4,0x62,0x03,0xe7,0x70,0x3d,0xfd,0xc6, +0x03,0xdd,0x3d,0x05,0xa7,0x33,0x5a,0xc1,0xe9,0x8c,0xe1,0x38, +0x9d,0x3b,0x99,0xf6,0x5d,0x90,0xb8,0xe0,0x7f,0x71,0x3a,0x4d, +0xa9,0xf1,0x9d,0xb1,0xdd,0x1d,0x63,0xa6,0x33,0xf3,0xd0,0x3a, +0x83,0x85,0x8b,0x1c,0xd5,0x20,0xa0,0x33,0xbc,0x91,0x7e,0xc0, +0x67,0x9e,0xb0,0x6d,0x86,0x88,0xad,0x7c,0xbc,0x8c,0x8b,0xd8, +0x5a,0x9e,0x2d,0x29,0x4d,0x3e,0x66,0xcf,0x77,0x46,0xeb,0x3b, +0xc6,0x64,0x67,0x6c,0xc3,0x6e,0xaa,0x5c,0xe4,0xe5,0x0a,0xdd, +0xf7,0xef,0x56,0xb0,0xa6,0xf3,0xfe,0xdb,0xf4,0x35,0x6f,0x6a, +0x8f,0xd6,0x0a,0x36,0x41,0x1b,0xb4,0x6f,0x6a,0xda,0x1e,0xda, +0x7e,0xd8,0x48,0xe0,0xd0,0x07,0x23,0x91,0x6d,0xff,0x26,0xb0, +0x1b,0x94,0x9c,0x7b,0x7b,0x4e,0xf4,0x8b,0x31,0x5e,0xca,0x0f, +0x04,0xfd,0x85,0x6f,0x0a,0x2e,0x15,0x68,0x77,0x66,0xec,0xdd, +0xbc,0x37,0x01,0xce,0xa2,0x25,0x0f,0x2d,0xca,0x06,0xb3,0xb5, +0xe9,0x91,0x9b,0x99,0xff,0xbc,0x2a,0x6a,0x7d,0xea,0xb1,0x9c, +0xcc,0xe3,0xa9,0xf9,0x5a,0x38,0x52,0xfb,0xfe,0x53,0x6f,0x66, +0x49,0xc6,0x8f,0x74,0x9a,0x82,0xeb,0x46,0xa9,0x8d,0x69,0x4c, +0x89,0x77,0x25,0x4c,0x99,0xbd,0x31,0xfa,0x51,0xfa,0x0d,0x59, +0x15,0xb9,0x3e,0x35,0x27,0x8f,0xa9,0xba,0x22,0xa6,0xea,0xfa, +0x72,0x55,0xd7,0x4f,0xad,0x3c,0x5d,0x26,0x15,0x04,0x40,0x87, +0x8b,0x2f,0xce,0x94,0x9d,0x61,0x9a,0x72,0x67,0xc6,0x9e,0xcd, +0x7b,0x12,0xb8,0xa6,0x6c,0x73,0xa6,0x12,0x0f,0x81,0xb8,0x26, +0x3d,0x32,0x85,0xf7,0xc5,0xc8,0x8f,0xe5,0x66,0x9e,0x48,0x3d, +0x43,0xcd,0xa7,0x90,0x84,0x61,0xae,0x21,0xb8,0x6e,0x38,0xf3, +0x3e,0x34,0xdd,0x79,0x1f,0x12,0x86,0x41,0x77,0x5e,0x2f,0x29, +0x45,0x0e,0xf9,0xb0,0x98,0x48,0x2e,0xd3,0xb3,0xcf,0x2d,0x31, +0x14,0xe6,0xaa,0x66,0x1f,0xc8,0x59,0x59,0x6c,0x53,0x91,0x93, +0x57,0x6a,0xd8,0x2e,0x96,0x2c,0x3a,0x11,0x3c,0x7d,0x65,0xe4, +0xea,0xb5,0xfa,0xc9,0x69,0x3b,0x21,0x52,0x05,0x51,0x21,0xe8, +0x2f,0xc4,0xe0,0xa0,0xad,0xc9,0xaa,0xbc,0x7d,0x87,0xf7,0x5e, +0xb4,0xb9,0x57,0x16,0xf2,0xf9,0x90,0x20,0xbf,0x3e,0x86,0x8f, +0x51,0x7d,0x4b,0xfb,0xe0,0x22,0x6e,0x3d,0xfa,0x32,0xeb,0x71, +0x21,0x84,0xf6,0xe4,0x51,0x7d,0xfd,0x3d,0x99,0x4c,0xbd,0xc0, +0x77,0x07,0x2c,0x9f,0xfe,0x2b,0x98,0x6f,0x49,0x77,0x5c,0xc8, +0x4c,0xc2,0x1c,0x66,0x12,0x2e,0x60,0x6e,0xa5,0xdd,0x11,0xc2, +0x0c,0x98,0xfe,0xd4,0xd0,0x8b,0xe7,0x77,0x8f,0xc1,0xad,0x52, +0x94,0xf8,0xee,0x17,0x72,0xf9,0xea,0x25,0xe8,0x05,0xbd,0xeb, +0x82,0x83,0xf4,0x4c,0x6e,0x4f,0x09,0xe2,0x05,0x80,0x8b,0xb1, +0xad,0xf4,0xd7,0x06,0x21,0x6c,0xd5,0xca,0x30,0x5f,0x5d,0xef, +0xeb,0x01,0xcf,0x9e,0x5e,0xaf,0x78,0x5d,0xbd,0xf2,0x4c,0xd8, +0x7e,0xfd,0x17,0xbf,0x96,0xc9,0x16,0x22,0xe4,0xe0,0x58,0xc9, +0x77,0xce,0xfc,0x89,0x13,0x67,0xe7,0x56,0xeb,0x8f,0x8b,0x35, +0xa7,0x72,0x2f,0x95,0x9d,0x9a,0xef,0xc3,0xd3,0x74,0x1c,0x44, +0x6a,0xd5,0x93,0xa0,0xad,0x68,0x4c,0x47,0x8a,0x8b,0x88,0x04, +0x9d,0xc4,0xc6,0xf0,0x3b,0x7e,0x73,0x9b,0x72,0xb3,0x29,0x32, +0xd0,0x92,0x99,0x72,0xcb,0x7a,0x9b,0x22,0x03,0x07,0x7a,0x50, +0xf3,0x27,0x04,0x2d,0x79,0xc8,0xbd,0x51,0x44,0x0b,0x3c,0xaa, +0x04,0x0e,0xce,0xab,0x63,0xba,0x91,0x47,0x0c,0x1e,0x06,0x0b, +0xa1,0x86,0x1f,0x70,0x77,0xc1,0x23,0xdc,0xa8,0xfd,0xbf,0x72, +0xab,0xd5,0x3c,0xcb,0x9b,0xd7,0x9d,0x1d,0xa7,0xd4,0x9d,0x3d, +0xc0,0x8c,0x13,0x41,0xb9,0x21,0x8c,0xc3,0x32,0xe5,0xc6,0xef, +0xec,0x06,0xb8,0x29,0xfb,0x80,0x2e,0xe8,0xcd,0xbc,0xfc,0xae, +0x92,0xec,0xe8,0xab,0xec,0x0e,0x6c,0x93,0xe6,0x27,0x71,0x9c, +0xcc,0xfd,0x30,0x4b,0x33,0x36,0x3d,0x02,0x17,0xcf,0xd9,0x38, +0x3b,0x79,0xd6,0x26,0x6d,0x34,0xac,0x18,0x97,0xb8,0x07,0x17, +0xf3,0x7d,0x02,0x5f,0xbe,0x4f,0xe0,0x2a,0x4f,0xa7,0x0e,0x6a, +0x32,0x5b,0x41,0x52,0x3a,0x5d,0x73,0x72,0xcd,0x91,0x19,0xbb, +0xf4,0x69,0xbf,0x5e,0x94,0x03,0x27,0x51,0x3b,0x77,0x72,0x7e, +0xf5,0xb4,0xe9,0x53,0x56,0x79,0x19,0x82,0x2c,0xde,0x7a,0x49, +0xb8,0x46,0xa0,0xda,0x78,0x02,0x63,0x05,0x0b,0x2a,0xce,0x20, +0xb2,0x0c,0x6d,0x25,0xcc,0x7c,0x25,0xd2,0xd6,0x2d,0x09,0x53, +0xe9,0xd4,0x72,0x1a,0x11,0x2c,0x0e,0x92,0xf7,0x4e,0xab,0x25, +0xac,0x62,0xa2,0xae,0xda,0xa5,0x0f,0xe6,0xbe,0xe4,0xa2,0x2e, +0x99,0x89,0xba,0x5f,0x4c,0x92,0x6e,0xb3,0xc4,0xc4,0x0c,0xb5, +0xb3,0x21,0x16,0xf2,0xaf,0xe4,0xfd,0x28,0x1c,0x22,0xe1,0x04, +0xa3,0x67,0x85,0xac,0x62,0x92,0x7a,0x0f,0x19,0x28,0xc8,0x4c, +0x68,0x50,0x8d,0x8d,0x62,0x3c,0x56,0xf2,0x92,0x55,0x3e,0x4a, +0x16,0xe8,0x6c,0x11,0x47,0x40,0x9a,0x84,0xbf,0x83,0xef,0x68, +0x4c,0x31,0x0e,0xe5,0xb1,0xd8,0x75,0xd2,0x3d,0x18,0x18,0xaa, +0xb4,0xbc,0xca,0xcc,0xcc,0xc5,0x7e,0x4a,0x9a,0xe9,0x54,0xde, +0x72,0x0b,0xb5,0xe9,0xc3,0xe5,0xe9,0x86,0x2d,0x7b,0x4e,0x6e, +0xcf,0x4b,0x39,0xab,0xfd,0xb6,0x02,0xe7,0x05,0xd4,0x0a,0x9b, +0xdc,0x56,0x87,0x06,0x07,0x4d,0xa8,0xd2,0xf0,0x72,0xb5,0x71, +0x49,0x31,0x4a,0x2d,0xc0,0x5d,0x27,0x33,0xf2,0xce,0xe9,0xaa, +0x2a,0x30,0x3c,0xe0,0x95,0xb0,0xe9,0xf3,0x85,0x93,0x06,0x7f, +0x5e,0x34,0x55,0x53,0x74,0x21,0xf7,0xe4,0xfe,0x7c,0x2e,0x0c, +0xfa,0x72,0x61,0x20,0x2a,0x78,0x1f,0x04,0x3b,0xff,0xa9,0xc0, +0x7d,0x30,0x59,0x70,0xcd,0x28,0x30,0x59,0x30,0xc7,0x78,0x97, +0x70,0x31,0xc0,0x1a,0xd9,0x2b,0xa5,0x57,0xed,0x1b,0x1b,0xb4, +0x87,0xe6,0xef,0xc6,0xf3,0x85,0xbf,0x8c,0x83,0xf7,0xdb,0x73, +0xf0,0xfe,0x37,0x46,0x5f,0xbe,0x58,0xb9,0x5d,0x7a,0x3c,0x2f, +0x33,0x3f,0xe5,0x42,0xd3,0x62,0xed,0xab,0xf6,0x60,0x0f,0xc3, +0x94,0xb5,0x5a,0xf6,0xf5,0xd9,0x4b,0x67,0xb5,0x3b,0xb7,0xed, +0xa1,0x76,0x7d,0x4d,0xeb,0xfa,0x64,0x26,0x7b,0x03,0xbe,0x30, +0x93,0x06,0xbb,0x06,0x63,0xe4,0x60,0xd6,0x98,0x6a,0xba,0x71, +0xd5,0xcc,0xd6,0x27,0xff,0xbf,0x07,0xfb,0x9f,0x87,0x8e,0x6d, +0x51,0xed,0x3e,0xbb,0xed,0x7c,0x85,0xee,0x08,0x68,0x2f,0xe3, +0x93,0x20,0xd0,0x2e,0x17,0xd1,0x6c,0x96,0x33,0xb2,0xe9,0xa7, +0xbf,0x30,0xb3,0xee,0x66,0x61,0xe9,0xd1,0xcb,0xda,0x2f,0xd2, +0x33,0x92,0xb7,0x26,0x81,0x06,0x07,0x68,0x8a,0xcf,0xb0,0x51, +0xf6,0x8c,0xcb,0x8a,0xdc,0x14,0x97,0xa8,0xe5,0xa1,0xe9,0x66, +0x25,0xc4,0x38,0x1c,0x6d,0xa5,0xce,0x72,0x9f,0x37,0xd4,0x6a, +0x04,0x61,0x3a,0x4a,0xee,0xf3,0xb7,0xb1,0x0f,0xb3,0xa2,0x26, +0x86,0x2f,0x99,0x13,0x6d,0xd8,0x20,0x14,0x46,0xcd,0x3f,0x30, +0xd5,0x66,0xd2,0xd2,0x65,0x8b,0x62,0x0c,0xeb,0x8b,0x03,0xf0, +0x6a,0x05,0xcc,0x12,0xce,0x9e,0xdc,0x97,0x77,0x7e,0xff,0xe2, +0x60,0x3d,0xfa,0xb3,0x3f,0x45,0xfe,0xe7,0x85,0x7d,0x8d,0x7f, +0x4e,0x10,0x1f,0xcc,0x39,0xef,0xc1,0xd6,0xd2,0xda,0x68,0xaa, +0xcb,0x27,0xb8,0x1d,0xc4,0xb5,0xe9,0xb1,0xc9,0xca,0x0e,0xe1, +0x3a,0xa6,0xc8,0x8f,0x9d,0x62,0xaf,0x57,0x44,0xad,0x47,0x92, +0x81,0xde,0x81,0xb8,0x6a,0x70,0xbe,0x9f,0x06,0xda,0x5e,0x7a, +0x5c,0x58,0x52,0xb8,0x25,0x55,0xf3,0xe5,0xb6,0x5d,0x9b,0x77, +0x27,0xc0,0x6e,0xd4,0x69,0x0a,0xaa,0x30,0x1d,0x2c,0xd7,0x64, +0xc4,0x25,0xaf,0x8b,0xd6,0x5a,0x72,0xfc,0xb3,0x47,0xcc,0xab, +0x7a,0x68,0x80,0x65,0xcc,0xd1,0xd4,0x2d,0x23,0x52,0x9a,0xd7, +0xfb,0xd5,0x44,0x49,0xed,0xb3,0x90,0xd2,0xfc,0xf8,0x75,0xb9, +0x72,0x5d,0x3a,0xf5,0xf9,0xa9,0xaa,0xec,0xbc,0x6c,0x6d,0x56, +0xc6,0xce,0xe4,0x1d,0x49,0xe0,0x39,0x48,0x53,0x72,0x01,0xc7, +0x7c,0xb5,0x2e,0x3d,0x6a,0x73,0x64,0x3c,0x3f,0x76,0x4d,0xdd, +0x77,0x60,0xfb,0xa1,0x2d,0xcc,0x94,0x0f,0xbc,0x2c,0x4f,0x0a, +0x82,0x00,0x21,0x36,0x38,0x20,0x0c,0x1d,0xfd,0xd4,0x10,0x8e, +0xc7,0xa5,0xbb,0x16,0xc6,0x27,0xe4,0x9d,0x56,0xee,0x4d,0x85, +0xbb,0x7c,0xc1,0x84,0xf1,0x05,0x33,0x4b,0x59,0x30,0xf9,0x1f, +0x17,0x4c,0x89,0x1c,0x18,0xc2,0x17,0xcc,0x39,0xb6,0x60,0xa6, +0xb2,0x05,0x63,0xf1,0x21,0x85,0xc8,0xd1,0xf2,0x74,0x09,0xb4, +0x3f,0x3f,0x05,0x1d,0xb5,0x1a,0x4f,0x86,0x80,0xd6,0x70,0xc5, +0xac,0xbf,0x67,0xf9,0x33,0x03,0xed,0xd8,0x40,0xf4,0x16,0x1f, +0x5e,0xf3,0x26,0x6e,0xbc,0xc9,0x63,0x68,0x4b,0x3b,0x86,0x11, +0xe5,0xf9,0xa5,0x47,0xec,0x79,0x3d,0x7b,0xce,0x17,0x19,0x3a, +0x53,0xca,0x5c,0x36,0x23,0xe3,0xd6,0x01,0x02,0xa8,0x8d,0x1b, +0xb1,0xf8,0x98,0x4d,0x75,0xcd,0x55,0xa9,0x36,0xe0,0x3b,0x5c, +0xef,0xff,0x84,0x5a,0x1d,0x23,0x26,0xeb,0x80,0xdd,0x44,0xeb, +0x05,0xee,0xfd,0x1a,0xeb,0x0c,0x9c,0xb8,0x78,0xa8,0xf4,0x6d, +0x8f,0x8f,0xd5,0x17,0x75,0x49,0xc4,0xa2,0xde,0xb8,0xd7,0x55, +0xc1,0x7f,0x61,0x2f,0x93,0x64,0x02,0x85,0x61,0x82,0xeb,0x46, +0x8c,0xd4,0x84,0x92,0xbb,0x2f,0x83,0xea,0xfc,0x3f,0xa2,0xe4, +0xee,0xcb,0x54,0x52,0x90,0x99,0x27,0x2c,0x7a,0x83,0x88,0x02, +0xaa,0x7d,0x78,0xe5,0x73,0x1d,0xac,0xa3,0xfa,0xe6,0xdc,0x1b, +0x8b,0x96,0x0a,0x02,0x69,0xa7,0x3a,0xb2,0x27,0x01,0x4e,0xa3, +0x95,0x12,0x20,0xab,0x68,0x31,0xae,0x59,0xf8,0x5c,0x3f,0x76, +0x3c,0x33,0x97,0x6b,0xb1,0x03,0xb5,0x32,0x7a,0xc3,0x21,0xa6, +0xc5,0x5c,0x26,0xe3,0xda,0x91,0x6a,0x46,0x1a,0x40,0x5b,0x9d, +0x24,0x97,0xce,0x6b,0xa9,0xd5,0x18,0x02,0x6d,0xd6,0x66,0xd0, +0x56,0xa3,0x48,0xce,0xa9,0x46,0x3d,0xd6,0x6f,0x4c,0x20,0xd7, +0x63,0xac,0xd9,0x4c,0xd6,0x03,0xe8,0xcb,0xbe,0x2e,0x54,0x56, +0xc6,0x6e,0xbe,0x32,0x38,0xe3,0xec,0x13,0x99,0x79,0xa9,0xca, +0xca,0x48,0x1c,0x3c,0x66,0x02,0x5f,0x19,0xac,0xed,0x64,0xaa, +0x17,0x49,0x3a,0x67,0x94,0x7d,0x32,0xf3,0x74,0xea,0x39,0xd6, +0x6f,0x9d,0x2c,0x7b,0xc1,0x61,0x21,0x71,0xe0,0x98,0x20,0x8c, +0x1a,0xa8,0xb6,0x90,0x12,0xff,0x81,0xd9,0x6c,0xde,0x9c,0xa6, +0x1d,0x76,0x11,0xf8,0xe6,0x6f,0x66,0xc5,0x57,0xe2,0x4c,0xf8, +0x04,0x96,0x54,0xe3,0x19,0xd9,0x06,0x2e,0xd5,0x60,0x24,0x77, +0x1c,0x5a,0x71,0x8b,0xff,0xe6,0xd8,0x0f,0x3d,0x08,0xfe,0xba, +0x76,0xdb,0x78,0x68,0x38,0x14,0x36,0xb4,0x9b,0x07,0x7a,0x8f, +0xd2,0x16,0x06,0xa8,0xe0,0x24,0x88,0xbf,0xfc,0x04,0x23,0x75, +0x38,0x43,0xee,0xdf,0x88,0xcb,0x2a,0xcd,0x43,0x6b,0xd5,0x06, +0x61,0x0e,0x58,0xcf,0x86,0xd6,0xaa,0x09,0xc2,0x1c,0x6c,0x3d, +0x97,0xdd,0x49,0x12,0xe6,0x81,0xf5,0x3c,0x76,0x27,0x48,0x78, +0x89,0x57,0x55,0x55,0xc2,0x19,0xd0,0xe6,0xc2,0xa7,0xaa,0x2d, +0x42,0x2e,0x7e,0x7a,0x06,0xb5,0xaa,0x6a,0xe1,0x25,0x5c,0x65, +0xed,0x2d,0xa5,0xe2,0xf1,0x25,0xe2,0xeb,0xac,0xf2,0xbb,0x20, +0xe9,0xc0,0x7e,0xdc,0x3d,0x5b,0x6c,0x36,0x6e,0x34,0xda,0x63, +0xfb,0xca,0xd1,0x3f,0xc6,0xe9,0x67,0x89,0xb3,0xf7,0xac,0x2e, +0xd4,0xcf,0x05,0x07,0x89,0x5a,0x52,0x62,0xb4,0x7f,0x97,0xcc, +0x0c,0x70,0x33,0x4a,0xdf,0x10,0x4b,0x79,0x24,0xd5,0x84,0x13, +0xcc,0xa2,0x9a,0x55,0x04,0x8f,0xf1,0xba,0x7b,0xc9,0x11,0xd4, +0xe1,0x07,0x02,0x5b,0xdf,0xf6,0x23,0xeb,0x87,0x78,0x05,0xe1, +0x9a,0xcf,0xf9,0xd2,0x92,0x4a,0x9f,0x9c,0x29,0x2d,0x4c,0x4d, +0xd1,0xec,0x64,0x4b,0x6b,0x57,0x02,0xec,0xc7,0x76,0x9a,0xfc, +0x2a,0x95,0x25,0x1e,0xa3,0x0e,0x75,0x24,0x37,0xf3,0x14,0x13, +0x96,0x0a,0x4d,0xd2,0x50,0xef,0x60,0x5c,0x33,0xec,0x34,0xa7, +0x29,0x79,0x52,0x50,0x7a,0xe6,0x8b,0x8f,0xcb,0x71,0x1f,0xb6, +0x55,0x68,0x38,0x5e,0x58,0x6f,0x05,0xa5,0xbd,0x3b,0x47,0x69, +0xa7,0x0e,0xde,0x64,0x0b,0x07,0x2d,0xb1,0xf4,0x82,0x5e,0x1b, +0x99,0xd0,0x99,0x3a,0x96,0xa9,0x47,0x05,0x9b,0xfd,0xe6,0x7f, +0xb1,0xd9,0xa1,0x27,0xf6,0xbe,0x54,0x8c,0x8e,0xd0,0x8d,0xd1, +0x7c,0x84,0x3c,0xd9,0x5f,0x9c,0x55,0x52,0x43,0xad,0x7e,0x26, +0x48,0x26,0x8f,0x6d,0x84,0x3a,0xa9,0xbf,0x55,0x72,0x29,0xb7, +0xcc,0x04,0x9c,0xa2,0x84,0xd9,0xb4,0xb0,0xf5,0xfe,0x07,0x05, +0x6a,0x06,0x04,0xfc,0x25,0xb0,0xc0,0x7a,0x5f,0x48,0x1d,0xd7, +0x94,0x41,0x9b,0x1d,0x99,0xee,0x03,0x69,0x07,0xe6,0x3b,0x0f, +0xf3,0xc2,0xce,0x63,0xa8,0xca,0x9d,0xfc,0xfd,0xec,0x35,0x74, +0xd7,0x71,0xda,0xa4,0x31,0xd8,0x8a,0xd3,0xaa,0x15,0xda,0x20, +0x5e,0x81,0xbc,0xde,0x07,0x52,0xdc,0x9a,0x68,0x8f,0x45,0xa6, +0x7b,0xc1,0xd6,0x03,0xf3,0x9c,0x69,0xab,0xd5,0x24,0x44,0x05, +0x0b,0xfe,0x61,0xa4,0x8e,0x0a,0xe9,0x02,0xaa,0xbb,0x45,0xce, +0x4d,0x52,0xc1,0x22,0xce,0xae,0x1b,0xbb,0x97,0x9e,0x91,0xc5, +0x0f,0xa6,0xbc,0x70,0x98,0xa6,0xa2,0x04,0x3d,0x60,0x60,0x14, +0xc7,0xef,0x8d,0xd1,0x46,0xc5,0x71,0xaf,0xe4,0x02,0x87,0x6e, +0xd9,0x4d,0xcd,0xfe,0x22,0x51,0x22,0x5a,0x06,0x8c,0xc6,0xfe, +0xec,0x5d,0x2a,0x27,0x3d,0xbb,0x5b,0x55,0x91,0x5f,0xa9,0xe5, +0x85,0xad,0xb2,0x36,0x33,0x6a,0x5f,0x1c,0xa2,0xa9,0x2c,0x45, +0x2f,0xe8,0x1b,0x95,0x19,0x41,0xed,0xce,0x92,0xe2,0x6a,0xdd, +0x4e,0xf0,0xbd,0x2a,0x87,0x7a,0x80,0x7f,0xac,0x88,0x2d,0xfc, +0x9d,0x71,0x20,0xb6,0xd5,0x57,0x4d,0x7a,0xde,0x50,0x5d,0x6e, +0xa2,0xcc,0xc8,0xda,0xbc,0x3d,0x01,0x02,0x58,0xbf,0x55,0xa5, +0xe8,0x07,0x03,0xa8,0xfa,0x0a,0x29,0xca,0x64,0x6b,0x7e,0x07, +0x04,0x5e,0x93,0xa7,0x8f,0x87,0x80,0x38,0x11,0x5b,0xfa,0x39, +0xe3,0x60,0x6c,0xc7,0xba,0x7c,0x71,0xa7,0xa6,0xa2,0x89,0x90, +0x0f,0xd8,0x1b,0x07,0x6b,0xa8,0x6e,0x2a,0x2f,0xae,0xc5,0xc1, +0xf7,0x13,0xc0,0x0f,0x87,0xf2,0x31,0x78,0x43,0xff,0xc6,0x37, +0x88,0x8c,0x4d,0xda,0xa2,0x3a,0x58,0x94,0xa5,0xb0,0xf4,0xbb, +0x26,0x4f,0x1e,0x0f,0xfe,0x71,0x7c,0x2c,0x4e,0x6c,0x2c,0x9c, +0xe5,0xf3,0x3b,0x35,0x8d,0x63,0xd9,0x96,0x95,0xcc,0xc6,0x12, +0xc8,0x58,0x56,0xf2,0xb1,0xf4,0xe6,0x63,0x39,0x97,0x79,0x91, +0x76,0xea,0xc8,0x7e,0x41,0x5f,0x17,0x36,0x84,0xd6,0xfa,0xca, +0x90,0xaf,0x1b,0x6a,0x2f,0xe7,0x57,0x68,0x2d,0xa8,0x56,0x4b, +0x02,0x31,0x8f,0x89,0x52,0xe9,0x4f,0x9c,0xd7,0x60,0x5c,0xe1, +0x82,0xd3,0x3a,0x0a,0xf0,0x69,0xf4,0x88,0x1b,0x76,0xff,0x83, +0x30,0x0b,0x9f,0x3c,0xb8,0x0d,0x62,0xa6,0x01,0xef,0xa4,0x48, +0x65,0xe2,0x83,0x92,0x92,0xbb,0x77,0x2f,0x86,0x8c,0xd0,0x4f, +0x10,0x47,0x4e,0x0a,0x71,0x72,0x0a,0x29,0xf9,0x4a,0xcf,0x39, +0x2c,0x6a,0x30,0xc6,0xb8,0xe0,0x6c,0xc6,0xc1,0x2c,0x7a,0xe4, +0x0d,0x5b,0x13,0x0a,0xac,0x16,0xb5,0x0a,0x87,0x66,0x0f,0x6f, +0x81,0x9a,0x73,0x48,0x95,0x2e,0x2b,0x1c,0xee,0x94,0x30,0x0e, +0x41,0x1c,0x0d,0x96,0x23,0xcb,0x3e,0x50,0x38,0x84,0x36,0x18, +0x67,0xba,0xe0,0x64,0xd3,0x18,0xae,0xdb,0x35,0xe1,0xc8,0xb6, +0x7f,0x34,0xac,0x91,0x83,0xc0,0x39,0x6c,0xa1,0xb6,0xe3,0x98, +0x9d,0x72,0x9f,0xe0,0x6b,0xaa,0x8f,0x26,0xbf,0xdf,0xa3,0xf6, +0xcb,0x48,0x52,0x4f,0x8e,0x34,0xda,0x43,0xaa,0x94,0xad,0xfc, +0x7f,0x5a,0x2f,0x32,0xf5,0xfb,0x0d,0xc1,0x2d,0x92,0xbb,0x05, +0xed,0xb4,0x98,0xe0,0x53,0x28,0x14,0x40,0x86,0xe7,0xd2,0x38, +0xe6,0x19,0xf6,0xf9,0xdb,0x1d,0x9f,0x52,0x7d,0x00,0xc1,0x24, +0x69,0xbc,0x91,0x35,0xd5,0xff,0x4a,0xaa,0xcd,0xb0,0xf7,0xf8, +0xf3,0xe5,0x86,0x4c,0x91,0x76,0x0c,0x26,0x7a,0xd9,0x11,0xdb, +0xf0,0x28,0x73,0xa3,0x9f,0xf1,0x33,0x26,0x86,0xbe,0xbf,0xff, +0xcb,0xaf,0xbd,0xee,0x87,0x90,0x51,0xb4,0x95,0x8a,0x94,0x41, +0x1f,0xe8,0x73,0x6d,0x82,0xaf,0x3e,0x1a,0xfb,0x10,0xf4,0xc1, +0x58,0xde,0xd0,0x0b,0x5b,0x0e,0x7b,0xee,0x85,0x3d,0xbb,0x50, +0x87,0x6c,0xe2,0xcd,0x3e,0xa1,0x87,0xb7,0x3c,0x18,0x96,0x08, +0x60,0xe4,0x48,0xad,0x2d,0x86,0x41,0x0b,0x11,0x5f,0xe2,0x62, +0xa9,0x0b,0xf4,0xfa,0x4d,0x80,0x6c,0xec,0x65,0xba,0x62,0xbf, +0xc1,0x0f,0x64,0xb0,0x04,0x83,0x9d,0x70,0xb0,0xdc,0xca,0xc2, +0xb8,0x43,0x94,0xf3,0xf0,0x9a,0x04,0xfd,0x15,0xfc,0x87,0x01, +0x30,0xa2,0x31,0x14,0x98,0xd2,0x39,0x44,0x6d,0x61,0xdc,0xcb, +0x1f,0xdf,0xe6,0x8f,0x5d,0x2e,0x95,0xb2,0xc7,0x4e,0x31,0x59, +0x4a,0xba,0x4f,0x4c,0x1c,0xaf,0x3b,0x54,0xba,0xad,0xfc,0xaa, +0xae,0xca,0x29,0x40,0x44,0xed,0xf4,0x91,0xd8,0x11,0xbb,0xe9, +0x2f,0x4f,0xbe,0x77,0xbf,0xa4,0x3a,0xb7,0x56,0x9b,0xc6,0x66, +0x46,0x7a,0x82,0xba,0xb1,0xee,0xaf,0xee,0x10,0x31,0xf9,0x8d, +0xf1,0x70,0x97,0x5a,0x0d,0x21,0xb8,0x03,0x77,0x73,0xbf,0x11, +0x9d,0x08,0xb8,0xe1,0x45,0x79,0x13,0xe1,0x95,0xeb,0x45,0x7b, +0x62,0x1c,0x8c,0xb3,0x24,0x79,0xe0,0x37,0xce,0xb8,0xc1,0x96, +0x18,0x33,0xa0,0xd8,0x59,0xc0,0x58,0x33,0x79,0xe0,0x2b,0xe3, +0x40,0x26,0x15,0xbf,0x0b,0xae,0xe8,0x3f,0x20,0x70,0xe2,0x28, +0x97,0xd2,0xa9,0xb7,0xcb,0x8e,0x1c,0xce,0xde,0xa5,0xff,0x22, +0x79,0xcd,0xd0,0xe0,0xd0,0x3e,0x5e,0xda,0xe7,0xc2,0xcd,0x33, +0x5f,0xbd,0xf8,0x4b,0x87,0x76,0x93,0xa4,0xd0,0x45,0x07,0x8a, +0x0d,0x69,0x62,0x71,0xf6,0x81,0xe2,0xe2,0xec,0x95,0xa1,0xfa, +0x24,0x31,0x74,0x11,0xfb,0xb0,0xe4,0x27,0x82,0x72,0x0b,0xa6, +0x4a,0x6d,0x7b,0x90,0xb7,0xcd,0x89,0xd1,0xee,0xfd,0x04,0x82, +0x79,0xd8,0x59,0xb0,0xa4,0x0e,0x05,0x64,0x73,0x46,0x12,0xf4, +0x43,0x73,0x4d,0x59,0x11,0xf6,0x82,0x4f,0x22,0x33,0x4d,0x55, +0xd7,0x13,0xd6,0x6f,0xd9,0x77,0x72,0xfb,0x29,0xae,0x3f,0xfa, +0xd7,0xca,0x7a,0x6f,0x18,0x22,0xac,0x1f,0x34,0xd1,0x0f,0x75, +0xff,0x0f,0x57,0xdf,0x1d,0x10,0xc5,0xf1,0xfe,0x1d,0x23,0x77, +0x0b,0x73,0x11,0x35,0xc9,0x9a,0xbb,0x63,0xb8,0xa3,0x2a,0xa8, +0x60,0xef,0x1d,0x14,0x15,0xa5,0x77,0x2c,0xa0,0x62,0xef,0x58, +0x41,0xba,0x80,0x8a,0x68,0x14,0x04,0x15,0xec,0x9a,0x08,0xa2, +0xf4,0xde,0x3b,0xd8,0x62,0x4f,0x31,0xf6,0xa8,0x51,0xa3,0xc6, +0x98,0xc4,0x39,0xf3,0x2c,0xfe,0xde,0x99,0xdd,0xc3,0xe4,0xfb, +0xfe,0xa1,0xc7,0xee,0x3c,0xcf,0xce,0xde,0xde,0xec,0xf3,0x3c, +0x9f,0x99,0x79,0x3e,0xcf,0x50,0x43,0xdd,0x2c,0x05,0x5f,0x3f, +0xeb,0x97,0xfa,0xd6,0x92,0x82,0x52,0x55,0xea,0xd7,0x69,0xac, +0x6a,0xbb,0x0b,0x75,0x7c,0x0d,0xd5,0xd2,0x1c,0x45,0x04,0xdb, +0xdc,0x16,0x1e,0xb5,0x6d,0xd7,0xc9,0x5c,0x16,0xe4,0xa9,0x88, +0x47,0xbb,0x30,0xcb,0x95,0x78,0xc9,0x13,0x87,0xfa,0x7a,0xc3, +0x50,0x7b,0xb6,0x2f,0x8d,0x5e,0xe0,0x51,0x2d,0xbd,0x40,0x89, +0x6a,0xdf,0x9e,0x74,0x36,0xe1,0x47,0x7f,0x57,0x65,0x3d,0xbb, +0x80,0x41,0xf8,0xbe,0xc8,0x7f,0x5e,0xa3,0x32,0xaa,0x76,0x5e, +0x98,0xe5,0x42,0xa3,0x91,0xc4,0x11,0xde,0xde,0x30,0x64,0x10, +0x53,0xc3,0x16,0x7f,0x21,0x2a,0xda,0x5d,0x12,0x95,0x63,0x2b, +0x17,0x94,0x9f,0x5c,0x2e,0xf6,0x10,0x88,0xad,0xc3,0x91,0xae, +0x59,0x12,0x71,0x91,0x44,0x9c,0x88,0x9c,0x5e,0xed,0xe3,0xed, +0xe4,0xa5,0x8b,0xc2,0xee,0xed,0x42,0x80,0x28,0x5c,0xcc,0x0c, +0x9c,0x27,0x56,0xb1,0x7c,0xd3,0x45,0x09,0x0b,0xb6,0x05,0x6d, +0x33,0xcc,0xbc,0x93,0x7a,0xff,0x95,0xfa,0xb1,0x30,0xde,0x95, +0xbc,0x0b,0xe3,0x96,0x26,0x2d,0xdf,0xb1,0x42,0x23,0x74,0xdb, +0x92,0xea,0xaa,0xeb,0x72,0x64,0xdb,0xbc,0xf8,0xf9,0x5b,0xe7, +0xab,0x3a,0xd7,0xeb,0xf5,0xa9,0xb1,0x8b,0x12,0xe6,0x8b,0x8a, +0x0f,0xf6,0x3d,0xfe,0x43,0xfd,0xab,0x30,0xde,0x85,0xbc,0xdb, +0x8c,0xad,0x38,0x74,0x74,0xdb,0x9c,0xf8,0xa0,0xb8,0x60,0x71, +0x42,0x9c,0x89,0xb3,0x1c,0xdc,0xf7,0x81,0xe4,0x3c,0xff,0xa3, +0x2e,0xb8,0x63,0x3d,0x02,0xbf,0x68,0x3e,0x7c,0x0c,0x18,0x44, +0xc3,0x97,0x26,0xab,0x08,0xc2,0x86,0x87,0x10,0x94,0x40,0xf4, +0x2f,0xd8,0xe2,0x73,0xfa,0x36,0x84,0xa1,0x8e,0x09,0xe0,0xc6, +0x63,0x8b,0x1f,0x50,0x3f,0x4e,0xb0,0x81,0x06,0xac,0x54,0x33, +0x9a,0xca,0x89,0xa8,0x63,0x54,0x1f,0x6c,0xd2,0x8e,0xc4,0x11, +0xda,0xea,0xf2,0xa1,0x08,0x85,0xc8,0x2d,0x16,0xcc,0x84,0xcf, +0x6c,0x85,0x0a,0x3a,0xe0,0x2a,0xaf,0x13,0x53,0x35,0xb1,0xd9, +0xc0,0x43,0x8f,0x45,0xd3,0x40,0x61,0xf1,0x9e,0x02,0x25,0xae, +0xf4,0x7b,0x62,0xaf,0x7e,0x8b,0x3f,0xef,0xd9,0x99,0x39,0x6e, +0x89,0x3f,0xcb,0xfa,0x4f,0xe6,0xb8,0x39,0x56,0xb7,0x88,0x73, +0x5f,0x47,0x6e,0xc8,0x05,0x4b,0x62,0x83,0xd5,0xad,0x9d,0x89, +0xe4,0xf4,0xb0,0x37,0x56,0xb7,0xb3,0x0d,0x04,0x8f,0xc8,0x72, +0x6a,0x7b,0xf3,0xbd,0xc8,0xaa,0x11,0xb0,0x1c,0xac,0xb1,0x61, +0x24,0x6a,0x96,0x45,0xf9,0x4d,0x8c,0x1f,0x6a,0x42,0xee,0x6e, +0xe7,0x7f,0x21,0x0b,0xea,0x61,0xc1,0x23,0xb2,0xba,0x81,0x8e, +0xac,0xc7,0xa4,0xbe,0x81,0xa3,0xc3,0x2e,0x13,0x39,0xb0,0xe6, +0x4c,0x2f,0x96,0x25,0xf6,0x19,0xab,0xaf,0x7c,0x4c,0x4c,0x35, +0x55,0xc9,0xd8,0x3c,0x9a,0xc8,0xc2,0x7a,0x6f,0x1b,0x7f,0x87, +0xcc,0xaf,0x85,0xf9,0x77,0xc8,0xaa,0x3a,0xaa,0x7a,0x9d,0xd4, +0xd7,0x73,0xc6,0x7c,0xdc,0x2f,0x64,0x09,0xf1,0x67,0xfc,0xae, +0x7a,0xe6,0x49,0x33,0xfa,0xc6,0xdc,0xdf,0xce,0x3f,0x21,0xf3, +0xea,0x61,0xde,0x63,0xb2,0xb2,0x01,0x72,0xe1,0x39,0xa9,0x6b, +0x64,0xb2,0x0f,0xc9,0x52,0x6a,0xcc,0x0b,0x3e,0x32,0xb4,0x6a, +0x36,0xa3,0xc7,0x64,0x5e,0x2d,0xcc,0x7b,0x44,0x56,0xd6,0x53, +0xb9,0x87,0xa4,0x8e,0x5d,0x93,0xad,0xec,0x8b,0x61,0x8f,0x1b, +0x59,0x66,0x06,0x8b,0x61,0x12,0x36,0x73,0x44,0xe4,0x80,0x1b, +0x4f,0xce,0xe9,0xd4,0x70,0x4e,0x7e,0xd9,0x93,0xa5,0xa9,0x66, +0x89,0x69,0xaa,0x10,0x31,0x83,0x0c,0x99,0x29,0x87,0x91,0xb3, +0x46,0xd0,0xf7,0xdb,0x4a,0xc3,0xf8,0xfc,0xfa,0x92,0x01,0x2d, +0xbf,0x11,0x77,0x75,0x79,0x3b,0x4f,0xcc,0x46,0xcb,0xc1,0x65, +0xb6,0x3d,0x0d,0x0a,0xed,0x34,0x2d,0x41,0x32,0x62,0x4d,0xc6, +0x34,0xbe,0x25,0xf3,0xd5,0xc4,0x0a,0x96,0xd2,0xae,0xde,0x37, +0x9f,0xef,0x68,0x96,0xeb,0xfa,0x0b,0xae,0x3c,0x09,0x7c,0x75, +0xe9,0xe9,0x53,0xdb,0x4b,0x10,0x08,0x81,0xb6,0xce,0x03,0x07, +0xbe,0x72,0x26,0x81,0x8c,0x62,0xc3,0x7e,0x66,0x79,0xa5,0x76, +0x3f,0x57,0x75,0xa1,0x4c,0x44,0xec,0x41,0xb3,0x34,0xd1,0xdc, +0x6c,0xd7,0xb9,0x30,0x40,0x63,0x0c,0x86,0x88,0xaa,0xc6,0x30, +0xd5,0x5b,0x6f,0x5e,0xd9,0xde,0x12,0x55,0x27,0xd9,0xf6,0x7e, +0x35,0x89,0xaa,0xb6,0x33,0xd5,0xba,0x06,0xed,0x41,0xae,0xa1, +0x13,0xec,0xfb,0x68,0x22,0x39,0x1f,0x57,0x3f,0xa6,0xca,0x3f, +0x68,0xaa,0xf9,0xfe,0xba,0x7f,0xe9,0x54,0xff,0xb5,0xa1,0xab, +0xc3,0xb5,0xdb,0x92,0x8f,0xfc,0x5c,0x5b,0xf9,0xac,0x5d,0x35, +0x42,0x3e,0x6d,0xc1,0xf8,0x61,0x16,0xea,0xc1,0x75,0xde,0x8f, +0x35,0x55,0x06,0xa2,0xa5,0xd8,0xf3,0xaf,0xa5,0x48,0xd4,0x5b, +0x0a,0x9e,0xf4,0xe0,0x7e,0xda,0x7b,0x63,0x5f,0xdb,0xfe,0x84, +0x6a,0xe5,0x06,0x42,0x01,0xfc,0x67,0xdc,0x7d,0xa8,0xe1,0xbf, +0xd7,0xc5,0x34,0x0a,0x31,0xb7,0x74,0xbb,0x9a,0x84,0x1f,0xe0, +0x88,0x05,0xd2,0x95,0x37,0xd3,0x87,0xb4,0x39,0x62,0xfb,0xae, +0xac,0x73,0x69,0x05,0xec,0xa5,0x4a,0x3b,0x2f,0xbc,0x74,0x21, +0xc7,0xe4,0xdb,0x46,0x7a,0xd0,0xa8,0x75,0x54,0xa1,0x87,0x92, +0xa8,0xea,0xee,0x14,0x55,0x17,0xd3,0x38,0x8b,0x6d,0xaa,0x3f, +0x4e,0xe3,0xac,0xc2,0x16,0x48,0x27,0x28,0x8c,0x86,0x66,0x0c, +0xc2,0xf0,0x9b,0x23,0xb7,0x27,0x67,0xe7,0xe1,0xee,0x93,0xd1, +0x30,0x77,0x0a,0x02,0x87,0x8b,0x3a,0xf5,0x77,0x8a,0xab,0x4a, +0x68,0x8c,0xbb,0x33,0x33,0x8e,0xea,0xa8,0x24,0x1d,0xe3,0xcd, +0x29,0x31,0x3b,0x99,0x0e,0x5b,0xc3,0x12,0x8c,0x60,0x32,0xb3, +0x64,0x7c,0x58,0x0a,0xc3,0x42,0xe1,0xd1,0xca,0xc4,0xe4,0xd3, +0x67,0xd2,0xce,0x26,0x17,0xd2,0xc0,0xed,0xbc,0xf0,0xd0,0x85, +0x64,0xca,0x13,0x26,0xb9,0x06,0xc2,0x66,0xc7,0x3c,0x16,0xbc, +0x95,0xdf,0xc9,0xaf,0xc9,0xa7,0xc1,0x5b,0xa6,0x14,0xf0,0x1d, +0x07,0x85,0x32,0xaf,0x49,0x66,0xcc,0xc2,0x3d,0x86,0x2c,0xa9, +0xa1,0xd9,0xcb,0x42,0xc4,0x11,0x2e,0x3e,0xb0,0x79,0xa4,0x18, +0x22,0xd6,0xde,0x95,0xd0,0x57,0xc6,0xbe,0x8c,0x9d,0x87,0xe2, +0x68,0xb8,0xa7,0xa4,0xe8,0x8b,0x86,0x7b,0x12,0x6e,0x0b,0x8b, +0x52,0x32,0x20,0xc7,0x8e,0x23,0x69,0xc4,0x73,0x26,0x3f,0xbd, +0xb8,0x4a,0xfd,0xf1,0xfb,0xef,0x18,0xe8,0xe1,0x09,0x31,0x83, +0xc5,0xef,0xd2,0x78,0xa7,0xb4,0xaa,0x34,0x83,0xa5,0x23,0x68, +0x18,0x7c,0xdb,0x4f,0x41,0x8e,0xd1,0x45,0x7a,0xdf,0x7b,0xd9, +0x97,0xa1,0xf7,0x8d,0xd5,0x79,0xec,0x32,0x8c,0x83,0x57,0xca, +0x48,0x60,0x8c,0xbc,0xc6,0x62,0xb1,0x05,0x01,0xed,0x67,0x6b, +0x60,0x53,0xb0,0xea,0x04,0xe2,0x89,0x8d,0xbe,0x30,0x17,0x9b, +0x25,0xb6,0xa2,0x7e,0xd4,0x74,0x01,0x82,0x01,0x0a,0x7e,0xeb, +0xca,0xb9,0x09,0x7e,0x26,0x64,0x3f,0x31,0x6a,0x05,0x37,0xc1, +0x18,0x1b,0x1d,0x61,0xf1,0xe5,0x62,0x88,0xbb,0x41,0xea,0x3e, +0x44,0x22,0x57,0x36,0x3b,0x1f,0x47,0x01,0x60,0xf0,0x95,0x8a, +0x9a,0x82,0x73,0x85,0xaa,0x7d,0x52,0x51,0xd1,0x41,0x60,0xa0, +0xac,0x2d,0x03,0xfb,0xbf,0x22,0xa8,0xa9,0x16,0xf9,0x76,0xa9, +0xad,0x3f,0x9b,0x76,0x6e,0x57,0x91,0x8a,0x0c,0x6d,0x11,0x34, +0x1e,0x64,0xa4,0x3c,0x71,0x74,0xa0,0x0f,0xa8,0x87,0x33,0x5b, +0x8f,0xbb,0x37,0x22,0x66,0xa4,0x59,0xee,0x2b,0x70,0xcc,0xac, +0x4e,0xfb,0x3b,0x7c,0x9f,0xb8,0xf9,0x98,0xe1,0xd7,0x93,0x67, +0x59,0xcc,0x8c,0x0d,0xa2,0xd0,0x18,0x6f,0x7f,0x18,0x32,0x9c, +0xa5,0xbf,0xf2,0x75,0xb3,0x1e,0x55,0xb7,0x16,0x16,0x14,0xab, +0xd2,0xa8,0x7b,0x48,0x63,0xd6,0x5d,0x2e,0x66,0xcd,0xfe,0x1d, +0x9e,0x1a,0x99,0xdc,0xb9,0xdd,0xff,0x6c,0xfa,0x39,0x49,0x71, +0xac,0x8f,0x1f,0x0c,0x19,0x21,0xda,0x77,0xc3,0xd7,0x08,0x0a, +0xc8,0x10,0x6c,0x32,0x84,0x51,0xa0,0x52,0xfb,0x70,0xba,0xa9, +0xc3,0xc0,0x8b,0x64,0xcb,0x23,0xbd,0xc6,0x2d,0x82,0xb5,0xae, +0x86,0x52,0x98,0x71,0x47,0x0a,0x33,0xee,0x7d,0x0c,0x33,0xee, +0x60,0xa3,0x91,0x88,0x7c,0x4a,0x06,0xca,0xc9,0x3f,0xf0,0x29, +0x0f,0x03,0xc5,0xbf,0x3b,0xec,0x20,0x9a,0x9f,0xa9,0xd0,0x0d, +0xd4,0xd5,0xf1,0xc9,0xf2,0xc3,0xe9,0x87,0x77,0x1e,0x89,0x25, +0x15,0xd0,0x57,0x59,0xd2,0x0c,0x67,0x89,0x59,0xd8,0xbe,0x2d, +0x6c,0x24,0x86,0x86,0xc5,0xef,0x92,0xe5,0x95,0x64,0x54,0xb4, +0xa9,0x4f,0x8f,0x5f,0xc7,0x59,0x38,0x3b,0xc3,0x01,0x4b,0x4d, +0xb1,0x27,0xc1,0x2d,0x4f,0xca,0x9b,0xaa,0x69,0xf8,0xa6,0x41, +0x68,0x6d,0x58,0xfc,0x6e,0x59,0x5e,0x71,0x46,0x79,0xab,0xfa, +0xdb,0x09,0xeb,0x38,0x2b,0xe7,0x19,0x70,0xa0,0x37,0x13,0xd2, +0xb4,0x3c,0x2d,0x6f,0xac,0x56,0x91,0x59,0x0a,0xdd,0x60,0x5d, +0x2d,0x56,0x15,0x22,0x1d,0x9b,0x93,0x78,0x82,0x74,0x6c,0xa9, +0xff,0x29,0x12,0xba,0x29,0x74,0x43,0x75,0x4d,0xfc,0xa1,0x7d, +0x87,0x93,0x0e,0xc5,0x61,0xab,0x85,0x88,0x8d,0xe4,0xb5,0x9b, +0x13,0xc4,0xcb,0x89,0x7d,0x86,0x72,0x96,0xac,0x4f,0x6b,0x76, +0x39,0x6d,0xcb,0xd3,0x0a,0xda,0xa7,0xce,0x59,0x31,0x80,0x87, +0x40,0x37,0xf2,0xa5,0x8b,0x1c,0x86,0x86,0x8c,0x02,0x3a,0x86, +0x34,0x8d,0xf3,0x65,0xa4,0x27,0xb1,0xad,0x7c,0x46,0x9c,0xd5, +0x79,0xad,0x3c,0xf9,0x74,0x8c,0x1c,0xa6,0x85,0x0c,0x06,0x43, +0xb0,0xd1,0x34,0x2d,0x60,0x4c,0x12,0x43,0xca,0x7e,0x27,0xb3, +0xd5,0x44,0x03,0x53,0xb9,0xff,0x71,0x36,0xbe,0x31,0x3c,0xc6, +0xc0,0x16,0x49,0xb6,0x20,0x58,0xf1,0x0e,0x7f,0x76,0x57,0x5c, +0x54,0x8c,0xb9,0x29,0x17,0xc6,0x91,0x97,0xff,0x29,0xb6,0xad, +0xbc,0xaa,0x9b,0x2b,0x16,0xdb,0xd6,0xb3,0xef,0x8f,0x23,0xff, +0x60,0xf5,0x0b,0xea,0x6e,0x1e,0xeb,0xe7,0x84,0xf5,0x13,0xbd, +0xbd,0x3b,0xaa,0x90,0x1c,0x34,0xd4,0x77,0x70,0x80,0xc8,0xb7, +0x64,0xe3,0xc7,0x29,0x61,0x62,0xfc,0x7e,0x27,0x0f,0x97,0x48, +0x31,0xf9,0xce,0xb9,0x0f,0x0c,0x7a,0xc5,0x91,0xca,0x5e,0xd2, +0xe1,0x74,0xf1,0x10,0xe6,0xc2,0x3e,0x6c,0xb1,0x15,0x75,0xd8, +0x43,0x84,0x98,0x5f,0x18,0xf3,0x96,0x9a,0xfa,0x05,0x90,0xeb, +0x45,0x56,0xf4,0x86,0x25,0x6c,0x39,0x1c,0x90,0xee,0x53,0xe6, +0x2c,0xd2,0x99,0xb3,0xe0,0x63,0x1f,0x52,0xab,0xed,0x09,0xe7, +0xbc,0xc9,0xb2,0x91,0xd4,0x6a,0x5b,0xe1,0xee,0x83,0x10,0x36, +0x2d,0x46,0x7c,0xec,0x53,0xb2,0x18,0x9b,0xa6,0x23,0x6c,0xb9, +0x04,0x91,0xd7,0x70,0x46,0x7e,0xd1,0x47,0x5c,0x71,0x8f,0xfd, +0x99,0x2a,0x38,0xc3,0x39,0x1f,0xb2,0x6c,0x1c,0x55,0x30,0x61, +0x0a,0x8d,0xd4,0x55,0x4d,0x8a,0x1f,0x46,0x7d,0x91,0x37,0x4f, +0xce,0x90,0x6b,0x4c,0xda,0x8f,0xe1,0xb7,0xa5,0xd0,0x97,0x51, +0xf3,0xde,0x16,0x55,0x72,0x69,0x1f,0x13,0x60,0x11,0x60,0x76, +0x0f,0x54,0x28,0x47,0x7e,0xd1,0x97,0x11,0x24,0x2c,0x16,0x6f, +0x64,0xeb,0x6f,0x24,0x84,0x2c,0x82,0x5c,0x77,0xb2,0xb4,0x3f, +0x2c,0x64,0xab,0x7f,0xd6,0x28,0x81,0xc5,0x53,0x9f,0xd2,0xab, +0x5d,0xf6,0x62,0x8f,0x27,0x85,0x05,0x55,0xfc,0xd6,0xb7,0xd8, +0x3a,0x14,0xc1,0x38,0xdd,0x6c,0x44,0x32,0xdd,0x98,0xef,0x33, +0xee,0x68,0x41,0x70,0x84,0xcd,0x73,0x32,0xec,0xbd,0x80,0x3a, +0xa1,0x73,0x6e,0x64,0x89,0x05,0x84,0x80,0x83,0xfc,0x9f,0x1f, +0x50,0xfb,0x87,0x3b,0x88,0x1c,0x14,0xbd,0x24,0xcf,0x24,0xc5, +0x19,0xd1,0xce,0x2d,0x06,0xff,0x3b,0x49,0xec,0x55,0xe3,0xdb, +0x39,0x3f,0x7c,0xe2,0xf6,0xbf,0x3b,0x06,0xfe,0x67,0x7a,0x78, +0x6e,0x8d,0xdf,0x7b,0x3b,0x04,0xc7,0xef,0x31,0x10,0x3f,0x3a, +0x51,0xee,0xb1,0x79,0xd3,0x8a,0x25,0x6a,0x8f,0xcb,0x3e,0x8c, +0xad,0xff,0x72,0x43,0x4b,0xee,0xa6,0x33,0x1e,0x47,0x34,0x7b, +0xc8,0xe8,0x86,0x0e,0xcc,0xd8,0xfa,0xe7,0xf0,0x6b,0xe5,0x66, +0xc1,0xd9,0x65,0xa5,0xa5,0xd9,0xef,0xb4,0xdf,0xc8,0xdf,0x95, +0xae,0x0c,0x0e,0x0a,0x5e,0x69,0xc6,0xca,0xf3,0xa4,0xa3,0x05, +0xea,0x19,0xef,0x87,0xa3,0x8b,0x45,0x1b,0xf3,0x30,0xde,0x8c, +0xb0,0xd1,0x2d,0x24,0x02,0xa4,0x33,0x63,0x57,0x73,0xf0,0x89, +0xb7,0x33,0xec,0x84,0x2e,0x9a,0x62,0x77,0xd2,0xab,0xed,0x6e, +0x55,0x5d,0x95,0xea,0xeb,0xdd,0x19,0x69,0x19,0x3b,0x0f,0xc7, +0xaa,0xc8,0x37,0x30,0xb0,0xac,0x05,0x0e,0x93,0xde,0x61,0xfb, +0xa2,0x77,0x4a,0xf6,0x9e,0xd5,0x8a,0x8f,0x62,0x5b,0x44,0x92, +0x4f,0x1c,0xdb,0x77,0x62,0xf7,0x37,0x2a,0x92,0xd9,0x28,0xbc, +0xf5,0x26,0xa7,0xe4,0xd1,0xfe,0x53,0x97,0xc2,0xca,0x40,0xb6, +0x49,0x45,0x9d,0x7b,0x2f,0xab,0x26,0x8b,0x02,0xf4,0xcc,0x94, +0xa3,0x3b,0xd9,0x3e,0x95,0x01,0xca,0x33,0x6c,0x9f,0xca,0x96, +0xe8,0x6d,0xbb,0x4e,0x9d,0x4e,0xcb,0xde,0x95,0xaf,0x22,0xe9, +0xad,0xc2,0x4b,0x77,0x72,0x5c,0x1e,0x3f,0x65,0x46,0x10,0x6c, +0x70,0xc2,0xdd,0x0b,0x51,0xd2,0xa1,0x78,0x72,0x8a,0x9a,0xa7, +0xb3,0x0d,0x70,0xe0,0xcf,0xb0,0xbd,0x71,0x62,0x55,0x7a,0x6a, +0x5a,0x5d,0xa9,0x69,0x75,0x15,0x4d,0xeb,0x08,0x64,0x8c,0xbb, +0x0d,0x63,0x24,0x27,0xc3,0x31,0xde,0xa0,0x77,0x43,0x61,0x91, +0xca,0x6d,0xbb,0xb2,0xf3,0xd2,0xc4,0xec,0x9e,0x3d,0x17,0x84, +0x07,0x33,0xc9,0x41,0xf9,0xf6,0x21,0xee,0x5e,0x10,0x31,0xa4, +0x80,0xda,0xf0,0x5e,0xf5,0x77,0xb0,0xf5,0x59,0x44,0x7d,0x80, +0xa9,0xe8,0x03,0x04,0x25,0x56,0xbe,0xa7,0xc3,0x6f,0x2a,0xdb, +0x58,0xb7,0x3a,0x12,0xb1,0x0c,0xd7,0x2e,0x09,0xf2,0x79,0xe1, +0x61,0x2b,0x17,0xa9,0xdd,0xda,0x66,0xbf,0xfd,0xa3,0xad,0xb2, +0x2d,0x7f,0x73,0xf6,0x7c,0xb6,0x67,0xaa,0x4b,0x9d,0x30,0x86, +0x23,0x6b,0xc1,0x8f,0x0f,0x93,0x7b,0x2f,0xfc,0xb6,0xb4,0xac, +0xe0,0xdb,0x46,0xed,0x61,0x79,0x43,0xc1,0x9a,0xa0,0xe0,0x85, +0x6b,0x7c,0xb4,0xc6,0x44,0xce,0x13,0x83,0x04,0x39,0xb6,0x34, +0x41,0x67,0x83,0x0f,0xe3,0x1e,0xf7,0x11,0x1d,0x19,0x8b,0xf8, +0x2d,0xac,0x1a,0x4f,0x55,0x55,0x21,0xee,0xf1,0x0a,0xcd,0x9a, +0x15,0xb2,0x9a,0x55,0xd1,0xae,0x0e,0xbe,0x7f,0xae,0xf9,0x74, +0x5e,0x96,0xea,0x40,0x8a,0x38,0x8b,0xe7,0x3a,0x4a,0x59,0x55, +0x0e,0x4e,0xb7,0xc2,0xf6,0x46,0x32,0x1b,0xbe,0x25,0x26,0x7e, +0xd7,0x91,0xa3,0xe9,0xc7,0x76,0x9f,0x52,0x11,0xdf,0x5a,0x61, +0x96,0x3f,0x0d,0xb7,0x23,0x67,0x7b,0x2e,0x84,0xde,0x3e,0x62, +0x56,0x4a,0x4d,0xd0,0xb5,0xe2,0x9a,0xdc,0x73,0x79,0xaa,0xb4, +0x3d,0x69,0x3b,0xf6,0x6d,0x23,0x83,0xfa,0xb0,0x78,0xdf,0xee, +0x29,0x8d,0xd6,0xd9,0xf6,0xfe,0xe8,0xad,0x89,0xbb,0x8e,0x66, +0xa7,0x9d,0x61,0x0f,0x77,0x58,0xab,0xa0,0x71,0x27,0x23,0xe4, +0x89,0x93,0x03,0xfd,0xc1,0xc4,0xc1,0x90,0x38,0x51,0xf5,0xb9, +0x0f,0x72,0x9b,0xb2,0xf2,0xcf,0xa8,0xd2,0x69,0xef,0xfb,0x13, +0x89,0xcb,0x50,0xb6,0xd3,0x73,0xca,0x4f,0xd8,0xfc,0x6b,0x24, +0xe6,0xc0,0x78,0xcb,0x63,0x7d,0xbd,0x17,0x80,0x9d,0x3b,0xeb, +0x8d,0xa1,0x8a,0xa4,0xd4,0xc4,0x7f,0x51,0xc5,0x27,0x9d,0xa8, +0x22,0x5e,0xf4,0x34,0x79,0xbb,0x4a,0xfe,0x45,0x15,0x09,0x23, +0x02,0x45,0x54,0xa1,0x60,0x45,0x9e,0xc8,0x54,0x05,0xcb,0x9a, +0x29,0x6e,0x3d,0xcb,0xb2,0x66,0xf6,0xec,0xdf,0x91,0x46,0xfb, +0xea,0xcb,0xf2,0x44,0x9c,0x1e,0x87,0xa7,0x88,0xae,0x23,0x9c, +0x8e,0x83,0xe3,0xa7,0xd3,0xb2,0x76,0x9d,0xa3,0x61,0x7f,0x8b, +0xe0,0xe7,0x41,0x3c,0xe5,0x5b,0x67,0xf8,0xcc,0x85,0x81,0x4e, +0x86,0x24,0x88,0xb9,0x9e,0x07,0xa5,0x2d,0xb9,0x05,0x79,0x54, +0x3d,0x9d,0xa9,0x4b,0x49,0x37,0x53,0x7e,0xc5,0xda,0x03,0xe8, +0x78,0x56,0xfa,0x19,0x96,0x28,0xe3,0xde,0x2a,0xf8,0xbb,0x53, +0x3d,0x31,0xdb,0x66,0xa0,0xa3,0x21,0x09,0x66,0x7a,0x0f,0xcb, +0x5a,0xf2,0x0a,0xf2,0x55,0xe9,0x7b,0xd3,0x93,0xd2,0xa9,0xaf, +0xb3,0x50,0xd6,0x51,0x57,0xf7,0x1b,0xb6,0x9a,0x8e,0x72,0x18, +0xbb,0xc3,0x64,0xef,0x59,0x30,0x64,0x82,0xe4,0xde,0x66,0x3f, +0x2c,0x6f,0x11,0x39,0x21,0xf4,0x7d,0x88,0x9c,0x10,0x4e,0xaf, +0x18,0xd8,0x60,0x5b,0x74,0x19,0x27,0xc4,0x19,0x96,0x6c,0x88, +0x0d,0x22,0x91,0x83,0x4f,0x20,0x0c,0x1a,0x27,0xf6,0x01,0xf9, +0x3f,0xbf,0x0f,0x1e,0x33,0x02,0x6b,0xde,0x23,0xe0,0xd7,0xe9, +0xdc,0x24,0x0e,0x80,0x59,0x22,0x79,0xc0,0x5c,0xce,0x8e,0x24, +0xb3,0x6a,0xda,0xce,0x4e,0x10,0xa7,0xa3,0xc6,0x35,0x9a,0xc6, +0x5d,0xd7,0x89,0x1d,0x63,0x23,0x68,0x56,0xae,0xd7,0xfd,0x8d, +0xdc,0xa4,0xda,0x7b,0xff,0x92,0xcd,0x44,0x43,0x1e,0x95,0xe8, +0xc3,0xe8,0x24,0x34,0x6b,0x11,0xd4,0x13,0x77,0x6c,0xe2,0xcc, +0x0e,0x42,0xd9,0xc1,0x0c,0x3e,0xae,0x46,0xf7,0x04,0x11,0x73, +0xd2,0xbd,0x1e,0xbc,0x60,0x67,0x9b,0xfc,0x7c,0xfd,0xbe,0xb4, +0x6c,0x2d,0x89,0x2c,0xe0,0x41,0x4d,0x4c,0xc9,0xe7,0xf5,0xe0, +0x0b,0x89,0x64,0x2e,0xc5,0xc6,0x86,0x6f,0x90,0x1d,0xd9,0xce, +0x7a,0x9f,0xe4,0x04,0x9b,0xa4,0xde,0x2b,0xc5,0xc2,0x7e,0xbd, +0xde,0x21,0x36,0x61,0xb0,0xfa,0xba,0x2e,0x12,0x9b,0x06,0xa3, +0x09,0xbb,0xf8,0xf1,0x81,0x01,0x8e,0x0e,0xac,0xe8,0x4d,0x9d, +0x54,0xb8,0xa6,0x3a,0x70,0x9c,0x46,0x41,0x9c,0xf9,0xea,0x79, +0x57,0xf3,0xaa,0xb3,0xcf,0xe5,0xd0,0x07,0xb8,0x9f,0x41,0xc2, +0xc1,0x43,0xd9,0x26,0x5e,0xfb,0x3b,0x5b,0xf6,0x45,0xee,0x8c, +0x8c,0x63,0xd3,0x5c,0xbb,0x8e,0x7c,0x93,0xf6,0x2d,0xcb,0x9b, +0x1a,0xd1,0x24,0x68,0xbc,0x68,0x94,0xb1,0xd5,0x35,0x70,0x2e, +0xa8,0x66,0x18,0x2a,0x40,0xe5,0x4a,0xec,0xb8,0x6d,0xb6,0xb3, +0x7c,0xa1,0xbb,0x65,0xe5,0x6c,0xe5,0x77,0xad,0xe5,0xa5,0xd9, +0xc5,0x29,0xa9,0xa9,0x8c,0x31,0xaa,0xbf,0x58,0xea,0x14,0x2c, +0x49,0x0f,0x3d,0x31,0x17,0xcb,0x12,0x3f,0x5e,0x98,0x56,0x94, +0x5c,0xaf,0x22,0x7d,0xda,0x61,0x18,0x55,0x77,0x27,0xf6,0x5c, +0xe2,0x80,0x59,0x7e,0xd0,0xdd,0xa6,0x7c,0x8e,0xf2,0x4a,0x73, +0x45,0x49,0x56,0x51,0x6a,0xea,0x3e,0x49,0x5d,0xa5,0x2c,0xaf, +0xa0,0xea,0x9f,0x45,0xee,0x8f,0x60,0x79,0xe9,0x2c,0x71,0xf8, +0x58,0x5e,0x5a,0xc1,0x2e,0xea,0xb5,0x6d,0x5a,0xa9,0x3a,0x83, +0x5b,0x13,0x97,0xf2,0xf0,0x41,0x37,0xad,0x19,0x5b,0x27,0x23, +0x4e,0x08,0xa5,0x70,0x92,0x21,0x2e,0xb6,0x46,0x33,0x69,0x1d, +0x0f,0x4f,0x74,0xd3,0x1a,0xb1,0xf5,0x4e,0xb1,0x65,0xa4,0xb8, +0x3c,0x33,0x9e,0x22,0xb4,0x35,0x3c,0xe4,0xea,0xc6,0x93,0x5c, +0xce,0x01,0xd6,0x61,0xc3,0x9e,0x48,0x18,0x02,0xd7,0x70,0xb7, +0xb1,0x12,0x67,0x39,0xd8,0xe8,0xfc,0xb0,0xc9,0x63,0x24,0x4e, +0x35,0x5c,0x16,0xb4,0x58,0x3b,0x06,0xbd,0x2c,0xe4,0x77,0x90, +0x42,0xf2,0x45,0x1b,0x04,0x0a,0x7d,0x05,0x2d,0x8a,0x6f,0x5e, +0x1a,0xe7,0x1b,0xef,0x99,0xac,0x52,0xe8,0x0e,0x72,0xf0,0xd6, +0x05,0xab,0x9e,0x48,0xc8,0xee,0xb2,0xd0,0x87,0xa5,0x22,0x94, +0x10,0xa3,0x36,0x1a,0xd9,0xd9,0x63,0xc3,0x3f,0xa9,0x2c,0x46, +0x9f,0x22,0x52,0x2e,0x69,0x0f,0x6c,0x97,0x5f,0x6b,0x4b,0x4d, +0x3f,0xab,0x65,0x9e,0x99,0x2d,0xd0,0x88,0x6b,0x2f,0xbd,0xe1, +0x25,0x62,0xc9,0x36,0xff,0xac,0x65,0x3e,0x79,0x11,0x5b,0x9a, +0x79,0xbd,0xef,0x0e,0x2b,0x49,0xba,0x44,0x5f,0x6a,0xee,0x72, +0xca,0x95,0xdb,0xd8,0x62,0x2f,0x8a,0x4e,0xf1,0x24,0x1f,0x32, +0xb6,0x2d,0x17,0x57,0x8d,0xd9,0x56,0x2f,0xf3,0x6d,0x60,0xca, +0xb2,0xc3,0x7f,0xa2,0xa3,0xbb,0x43,0xee,0x47,0xac,0x13,0xb8, +0x39,0x61,0x61,0xa1,0x2b,0xd5,0xbe,0xd7,0xe6,0xb0,0xb4,0x91, +0xab,0x15,0xf5,0xd9,0x61,0xa7,0xe6,0x88,0xa9,0x28,0xfd,0xa1, +0x27,0xbf,0x5c,0x6e,0x11,0xfc,0x4d,0x5e,0x7e,0xe9,0x37,0x7f, +0x69,0x73,0xe4,0x7f,0x95,0xae,0x5d,0xb4,0x38,0x78,0xad,0x05, +0xb5,0x53,0x62,0x96,0x4b,0xdf,0x78,0x2e,0x20,0x6c,0xf3,0xaa, +0x65,0x6a,0xf7,0xab,0x01,0x62,0x96,0x4b,0x4d,0xeb,0x59,0x31, +0x69,0x95,0x2a,0xdb,0x80,0x56,0xca,0x63,0x29,0x2e,0x12,0xf3, +0x58,0xe4,0x7f,0x96,0xae,0x5e,0x30,0x5f,0xcc,0x94,0x91,0x94, +0xfb,0x6d,0xe5,0xfc,0xc3,0x36,0xaf,0x5c,0xf6,0x9f,0x8c,0x57, +0xaa,0x1c,0x70,0x44,0x93,0xca,0x94,0x2d,0xf9,0x95,0x72,0xab, +0xa0,0xac,0x92,0xe2,0xb2,0xac,0xb7,0xda,0x6c,0xaa,0xbc,0x6a, +0xfe,0xbc,0xe0,0x55,0x54,0x99,0xe5,0xcb,0x5c,0x65,0xf9,0x32, +0xa7,0x03,0x8f,0x74,0xe6,0xcb,0x30,0x51,0x31,0x5f,0x86,0x8a, +0x8a,0xf9,0x32,0xcd,0x1d,0x9c,0x27,0x19,0x9e,0xc0,0x61,0xb3, +0x45,0x88,0x03,0x2d,0x38,0xf2,0xa1,0xf4,0x56,0xf2,0x6a,0xaa, +0xcb,0xf2,0xfe,0xd4,0x9e,0x92,0xff,0x59,0xb6,0x38,0x30,0x20, +0x68,0x31,0xbb,0x1a,0x76,0x47,0xd7,0x1a,0xcf,0xe7,0x6d,0xca, +0xf1,0x15,0x73,0x73,0xac,0xa1,0x3f,0xd6,0x26,0x21,0x76,0xfa, +0xaa,0x78,0xda,0x4f,0x3c,0xdd,0x9b,0x9d,0xde,0x89,0xb0,0x75, +0x20,0x5a,0xbe,0x58,0x3d,0xf3,0x9a,0xb7,0x98,0x61,0xd3,0x78, +0x41,0xd2,0x4b,0x61,0x7a,0xf6,0xf4,0xdb,0x5a,0x05,0xe7,0x94, +0x97,0x95,0x9e,0x79,0x4b,0xbf,0xed,0x1f,0x65,0x2b,0x82,0xe6, +0x06,0x2d,0xb7,0x66,0x37,0x9c,0x81,0xae,0x35,0xb4,0xe7,0x6d, +0x3a,0xe3,0x27,0x8a,0xf6,0x86,0xbe,0xa2,0xe8,0x99,0xd2,0xd2, +0x8f,0xa2,0xc1,0xc1,0x41,0x2b,0xa8,0x28,0xdf,0xd2,0x21,0xc7, +0xda,0xdf,0xd0,0xc7,0x6b,0xb2,0xdc,0x5d,0xbe,0xb5,0x43,0x4e, +0x87,0x7d,0x02,0xd7,0x49,0xaf,0xe2,0x25,0x76,0xde,0x74,0x21, +0x9f,0x76,0x7e,0x4c,0xba,0xe9,0x81,0x52,0xe7,0x15,0x65,0xa5, +0x67,0xa5,0x2b,0x2e,0x0b,0x9a,0x23,0x76,0x2e,0xe5,0x06,0x0d, +0x4e,0xe0,0xbc,0x36,0x6c,0x5c,0x1c,0xa2,0x9e,0xde,0x99,0x1b, +0x74,0xb9,0x70,0xa3,0x3e,0x37,0xc8,0x02,0xc6,0x8a,0xb9,0x41, +0xe7,0xaa,0xfe,0x93,0x1b,0x34,0x2b,0x68,0xe9,0x47,0xe5,0x21, +0xf1,0x1c,0xcb,0x19,0xde,0x90,0xe7,0x75,0x5c,0x92,0x9f,0x84, +0xb5,0xbb,0x10,0x6d,0xe3,0xb0,0x69,0x2f,0x14,0x4a,0x55,0xf3, +0x6a,0x6a,0x98,0xea,0x29,0xf9,0xdb,0xb2,0x25,0x01,0xf4,0xb9, +0x5a,0x51,0xd5,0x9b,0x44,0x7d,0x10,0x1d,0x88,0x6f,0xe8,0xd8, +0x88,0xac,0x61,0x13,0x4f,0x96,0x81,0xff,0x55,0x92,0xf2,0xe1, +0x1c,0xf2,0xe0,0xc9,0x12,0xf1,0x6f,0x8a,0xc4,0x8d,0xf9,0x5b, +0x7f,0x60,0xcd,0x48,0x04,0x9f,0x42,0x20,0xd6,0x94,0x23,0x1e, +0x9c,0x13,0xb9,0xec,0x98,0x65,0xd8,0xe2,0x2a,0xda,0x33,0xbb, +0x41,0xe7,0x2e,0x07,0xa5,0xd0,0x8f,0xf7,0x5f,0x51,0xd0,0xa2, +0x2d,0xe5,0x5a,0x72,0xf2,0x6b,0x4a,0xf2,0xd6,0x2f,0xd4,0x40, +0x57,0x6e,0xd1,0xe2,0xd0,0x79,0x14,0xc6,0x6e,0x8e,0xd9,0x9e, +0x7c,0xf2,0x78,0xda,0xc9,0xe4,0x2c,0x15,0xc9,0xa8,0x17,0xde, +0xfa,0xd2,0x18,0x23,0xce,0x77,0xf2,0x32,0x08,0xf5,0x2a,0x08, +0xa4,0x31,0x46,0x1e,0xee,0xf1,0x19,0xb2,0x53,0x16,0xd6,0xc2, +0x9e,0x3b,0x9b,0xf6,0x44,0xec,0x08,0x8f,0x51,0x19,0x77,0x44, +0x20,0xdd,0x68,0xb0,0xc0,0xd8,0x09,0x3d,0x7f,0xff,0x09,0x89, +0xe6,0x1b,0x0a,0x8e,0x9d,0xcb,0xd2,0xae,0xa8,0x94,0xad,0x5b, +0xb9,0x3e,0x76,0xa9,0x49,0xc8,0xaa,0x03,0xc7,0x67,0x6b,0x4f, +0xf9,0x2e,0xdf,0x1f,0x6c,0xe2,0xb3,0x70,0xe3,0xd2,0x55,0xda, +0x33,0xb3,0x65,0x27,0xb3,0x4f,0xa4,0x9d,0x33,0x29,0xcc,0x8a, +0xda,0x50,0xa9,0x0d,0xad,0xcf,0x89,0x2e,0x35,0x31,0xe6,0xa3, +0x0f,0x44,0x26,0x47,0x45,0xc7,0x6d,0x55,0x6e,0xc3,0x16,0xae, +0x08,0x94,0x9a,0x04,0x05,0x9f,0x34,0x28,0x7a,0x42,0x38,0xb6, +0x1a,0x8e,0x74,0x1c,0x47,0x06,0x40,0x2b,0x36,0xbc,0x82,0x88, +0xfb,0x24,0xf0,0xc2,0xe6,0x97,0xa8,0x81,0x4d,0x1a,0x12,0x3d, +0x71,0x8b,0xeb,0x8d,0x18,0xe5,0xa1,0x2b,0x07,0x1f,0xbd,0x50, +0xb7,0x0b,0x1e,0x33,0x25,0xc1,0x3a,0x51,0x70,0xc6,0x24,0x70, +0xc5,0x56,0x32,0x24,0xb2,0x77,0x52,0xe9,0x61,0x31,0x8e,0xe1, +0xee,0x4c,0xfa,0xf2,0xc1,0x07,0x4f,0x99,0xb4,0x8b,0x24,0x5d, +0xcc,0x0f,0x8b,0x82,0x2e,0x71,0x80,0x12,0x0d,0xc9,0x94,0x49, +0x30,0x0d,0x1b,0x1f,0x61,0x5b,0x1f,0x4d,0x90,0x17,0x23,0x54, +0x83,0xa5,0x22,0xf3,0xfa,0x62,0xdc,0xa3,0x1f,0x22,0x0a,0xf8, +0xd9,0x8d,0xa4,0x39,0x77,0xae,0x00,0x14,0x44,0xa4,0xba,0x91, +0x03,0xc7,0x97,0x4e,0x1e,0xed,0x06,0xfd,0xa6,0xaa,0xca,0x02, +0xc8,0xe8,0x1f,0x9f,0x5c,0xcd,0x7b,0xaa,0x12,0x15,0x57,0x8b, +0x04,0xf0,0xcb,0xa1,0xbb,0x7c,0x57,0x66,0x72,0xe6,0x21,0x35, +0xd3,0x76,0x27,0x69,0xd3,0xff,0xa3,0xed,0xca,0xb4,0x1d,0x47, +0xbb,0x42,0x3f,0x27,0xbd,0xf6,0xf5,0xbc,0x5f,0x25,0x6d,0x0f, +0x31,0x51,0xc0,0x97,0x69,0x1f,0x4c,0xce,0xc8,0x54,0x13,0x8e, +0x69,0xa7,0xcf,0xe4,0xa2,0xb0,0xd1,0x08,0xe4,0x4a,0x0e,0x9e, +0x58,0x32,0x6d,0xb4,0x07,0xf4,0x73,0x56,0x95,0x52,0xc5,0x9b, +0x4f,0xae,0xe4,0x3f,0x92,0x14,0xe7,0x5c,0xd7,0xad,0x98,0x4c, +0x23,0x6d,0x7d,0xb7,0xd8,0xb4,0x07,0x22,0xa3,0x7e,0x7c,0x7a, +0x35,0xef,0x09,0x35,0x98,0xf6,0xef,0x13,0xb1,0xe9,0x67,0xa8, +0x19,0x9b,0x07,0x21,0xd2,0x8f,0x1d,0xef,0xc0,0xa6,0xc6,0xf4, +0xd8,0x8c,0x95,0x03,0x57,0x39,0xa3,0x0e,0x3b,0xf1,0x43,0x6a, +0xdb,0xce,0xda,0x9a,0x70,0xcf,0x93,0x88,0xe2,0x43,0x24,0x7e, +0xd2,0xf3,0x43,0x74,0xcd,0x14,0x97,0x1d,0xd9,0x79,0x28,0x96, +0x94,0x83,0x8d,0xb2,0xb4,0x15,0x72,0x88,0x69,0x58,0xaa,0x88, +0x0a,0xd7,0xea,0x51,0x21,0x05,0x7c,0x59,0xe3,0x42,0x39,0xeb, +0x99,0xce,0x70,0xd0,0x5a,0x53,0x42,0x01,0x5f,0xb3,0x84,0x0a, +0xa9,0xf6,0x4d,0xfe,0x30,0x45,0x75,0x87,0xe3,0xb0,0x85,0x1b, +0x0a,0x0d,0x4f,0xd8,0x25,0xcb,0x2d,0x3c,0x58,0xda,0xa8,0xfe, +0x66,0xc2,0x7a,0xae,0x9f,0xb3,0x1b,0x1c,0xb0,0xd3,0x14,0x7b, +0x11,0x6d,0xfd,0x93,0xd2,0xa6,0x0a,0x51,0xfe,0x67,0xd6,0x1b, +0x95,0xa7,0x18,0xd4,0x44,0x89,0x4d,0x7f,0x42,0x1e,0x70,0x60, +0xa0,0xa6,0x88,0xca,0xd4,0x3d,0x2d,0x66,0x32,0x4b,0xc0,0x4e, +0x96,0x20,0x0f,0x21,0x76,0x81,0x64,0x96,0x6c,0x86,0x3c,0x00, +0x66,0x2d,0xa4,0x67,0xe2,0xe5,0x4b,0x89,0x5d,0x10,0x3d,0xe3, +0x25,0xff,0x43,0x18,0x21,0xbb,0x24,0x6f,0x26,0x1b,0xcf,0x92, +0x2f,0x65,0x7b,0xe5,0x39,0xf0,0x65,0x33,0x6c,0xa4,0x67,0xfe, +0xd4,0x8d,0x90,0x29,0x32,0x17,0x53,0x27,0x8a,0xf1,0x70,0x84, +0xad,0xfc,0x10,0xb4,0xe9,0xe7,0xa0,0x0d,0x05,0x44,0x3e,0x21, +0x2e,0xed,0xf0,0x8e,0x8c,0x22,0xaf,0xda,0x85,0x11,0x50,0x44, +0xc6,0x41,0x57,0x56,0xb1,0xa0,0x73,0x55,0xd4,0xe0,0x04,0x13, +0x34,0xb8,0x85,0x58,0x6b,0x0d,0x6d,0x95,0xc1,0xf2,0x4e,0xf6, +0xc8,0x26,0x6f,0xc6,0x5e,0x57,0xc4,0xe7,0x05,0x12,0x4d,0xd1, +0xa3,0x9c,0xba,0xb3,0x8c,0x0e,0x28,0xe5,0x78,0x52,0x66,0x22, +0x29,0xb1,0x50,0xe6,0xd7,0xc2,0xa9,0xe7,0x22,0x79,0x64,0xac, +0x6a,0x5d,0x64,0x62,0xf2,0x37,0x27,0xf7,0x9f,0xda,0x95,0xad, +0x52,0x3c,0xe1,0x05,0x1b,0x37,0x9d,0x8d,0xfc,0x18,0x54,0xf1, +0x2b,0x12,0x16,0x6d,0x5b,0xb0,0xed,0x04,0x49,0x54,0x4e,0x49, +0x09,0x83,0xbd,0xd8,0x28,0x15,0x91,0xb4,0x29,0xf1,0x47,0x61, +0x8f,0x2c,0x69,0xc9,0xd2,0x9d,0x4b,0x4d,0x52,0xdc,0x44,0xca, +0xb3,0x27,0x22,0x43,0x5a,0x11,0xbf,0x22,0x71,0x71,0xe2,0xfc, +0xed,0xc7,0x49,0xb4,0x98,0xa9,0x91,0x24,0xca,0xef,0x66,0xf2, +0x3b,0xfe,0xa1,0xa1,0xce,0x33,0xf2,0xe6,0x32,0xd9,0x27,0xdb, +0x25,0xbf,0x08,0xfb,0x9e,0xc2,0x1b,0xd9,0x33,0x39,0x99,0xfa, +0xde,0x55,0x36,0x4c,0x3e,0x16,0x1e,0xd3,0x47,0x2e,0xdb,0x2e, +0x77,0x26,0x07,0x86,0x93,0xc7,0xb2,0x7e,0xf2,0x21,0xf0,0x98, +0xfe,0x68,0xb2,0x1d,0x72,0x0f,0x72,0x70,0x22,0x3d,0x33,0x58, +0xae,0xe0,0x13,0xe5,0xd9,0x31,0xcb,0x99,0x1d,0xf9,0x1a,0xc6, +0x34,0xea,0x1c,0xbc,0xe5,0xe3,0xe1,0x1b,0xde,0x7f,0x79,0xa7, +0x21,0xa9,0x2d,0xee,0x34,0x24,0x4b,0x44,0x43,0x22,0x51,0xa2, +0xea,0x69,0x73,0x5b,0x21,0x18,0x91,0x68,0x21,0x94,0xd7,0xa5, +0x90,0x57,0x13,0xcd,0x04,0xfb,0x77,0x13,0xa1,0xd2,0x0c,0xe9, +0xa6,0x5e,0xc4,0x3d,0x3f,0x41,0x62,0x28,0x1f,0xb4,0x69,0xf3, +0xb2,0xf9,0x6a,0xe7,0x36,0x5f,0x0a,0x04,0xea,0x2f,0x15,0x6d, +0x3e,0x87,0xad,0x63,0x29,0xe2,0xa6,0x21,0xbd,0x4f,0x48,0x76, +0x75,0x75,0x61,0x76,0x83,0x36,0x53,0x5e,0x5f,0xb8,0x32,0x30, +0x30,0x64,0xa5,0x2f,0x35,0x87,0xa4,0xbb,0xd0,0x6b,0x26,0x45, +0xca,0x5c,0x44,0x52,0xe4,0x76,0xfa,0x26,0x49,0xeb,0xac,0xa7, +0x16,0x4c,0xe8,0xeb,0x06,0xee,0x8e,0xfa,0x75,0xd6,0x4f,0x5f, +0x3d,0x23,0x23,0xd5,0x50,0x2f,0x2c,0x65,0xe4,0xf5,0xfc,0x93, +0xf9,0x72,0x8f,0xc0,0x55,0x5e,0x8e,0x73,0x2a,0x5f,0x68,0xaa, +0xb8,0x17,0x15,0x95,0x37,0xea,0xf2,0xd6,0x2c,0xc8,0xd4,0x54, +0x9e,0x92,0xb5,0xae,0xf6,0x3d,0x37,0xc5,0x04,0xba,0x38,0xb1, +0x55,0x09,0x8b,0xab,0x0e,0xaf,0x2f,0x16,0x66,0x15,0x1f,0xd0, +0xee,0x99,0x59,0x4d,0x56,0x81,0x35,0xb5,0xab,0xeb,0xc2,0xb7, +0xd3,0x51,0x5a,0x9e,0x5e,0xd5,0xaa,0xce,0x19,0xbb,0x8a,0x22, +0x38,0xff,0x69,0x90,0x48,0x11,0x5c,0x89,0x07,0xe9,0xd5,0x7e, +0xa7,0xba,0xba,0x46,0x75,0x30,0x2d,0x23,0x29,0x23,0x8e,0x1c, +0x82,0x41,0xca,0xb2,0x56,0x48,0x21,0x56,0x61,0xfb,0x62,0x92, +0xc3,0x22,0x29,0x98,0x5a,0x1f,0x9e,0xb0,0x5b,0x76,0xae,0x30, +0xbd,0xb8,0x56,0x9d,0x35,0x76,0x1d,0x67,0xef,0xe3,0x09,0xc9, +0xfd,0x34,0x45,0xee,0x44,0xd5,0x70,0xaf,0xac,0xae,0x54,0xdc, +0x89,0x9c,0x91,0xc4,0xf6,0x57,0x7d,0x0b,0x66,0xc5,0xad,0x70, +0x90,0xad,0x68,0x47,0xeb,0xe7,0xfa,0xf6,0xc4,0x25,0x85,0x47, +0xb3,0x39,0x2f,0xb3,0xf3,0x08,0x36,0x38,0x9f,0xc5,0xe6,0xdb, +0xd1,0xb9,0x46,0x8a,0xeb,0x36,0xef,0x65,0x49,0x07,0x91,0xb1, +0xca,0xf8,0x5d,0xdf,0xd0,0xb0,0x3e,0x39,0x57,0x45,0x52,0x5b, +0x84,0x87,0x1e,0x24,0x53,0x1e,0xef,0xe4,0x1c,0x04,0xeb,0xa6, +0x9e,0x65,0xa8,0xb0,0xfc,0x5e,0x6e,0x75,0xde,0xa1,0xd4,0x43, +0x6c,0xfd,0xf5,0x04,0xc8,0x29,0xce,0x63,0xba,0x29,0x31,0x3b, +0xb7,0x44,0x86,0x47,0x29,0x13,0x77,0x9d,0x3e,0x2b,0x2d,0xdd, +0x7e,0x7d,0x41,0xb8,0xcf,0x30,0x5c,0xc2,0x18,0x57,0x3f,0xd8, +0x28,0x2e,0xf9,0xaa,0x6a,0xef,0x14,0x57,0x17,0x33,0x1a,0xff, +0x8c,0x78,0x0a,0xe4,0xa4,0xf5,0x5e,0x3e,0x6c,0x4f,0x6c,0xd2, +0x16,0x76,0x47,0x89,0xef,0x39,0x44,0x0e,0xb4,0x09,0x6f,0xdc, +0xb0,0x0c,0x23,0xe7,0x73,0x3e,0xb4,0xb7,0x92,0x7b,0xe7,0x6a, +0x72,0x0f,0xa6,0x52,0xcb,0x10,0x4f,0x8e,0xc3,0xa7,0x4a,0xf1, +0x4e,0x45,0x8d,0xa8,0xce,0x3b,0x15,0x81,0x44,0x4a,0xab,0xf0, +0xd0,0x9d,0xcd,0x37,0x3a,0x32,0x20,0x3a,0x45,0xd4,0x2d,0xbf, +0x97,0x57,0x5d,0x90,0x99,0x92,0x29,0xdd,0xa9,0xa1,0xf2,0x1c, +0xbd,0x53,0xd2,0x85,0x6f,0x10,0xc6,0xfb,0x90,0x4f,0xb1,0x45, +0x21,0x0a,0x3b,0x33,0x0f,0x9b,0xc6,0x21,0x0a,0xfe,0x1a,0x85, +0xf1,0xde,0xa4,0x2b,0x0d,0x47,0x28,0x00,0xcc,0x99,0xc7,0xc2, +0x16,0x3b,0x18,0x80,0x7b,0x1a,0xa0,0x86,0xc2,0xd5,0x7a,0xe0, +0x47,0xba,0xb3,0x0a,0xaf,0x73,0x37,0x6d,0x5a,0x32,0x4f,0x3d, +0xad,0x1d,0x9b,0x9b,0xa3,0x90,0x33,0x35,0x35,0x85,0xd8,0x72, +0x96,0xbe,0xf8,0x6b,0xd0,0xa6,0x4d,0x8b,0x69,0x53,0x9b,0xd7, +0x1f,0x7f,0xb4,0x37,0x7d,0x57,0xb2,0x29,0x37,0xe8,0xa8,0x58, +0xec,0x4f,0xac,0x06,0xbb,0xf0,0x4c,0x6d,0x6d,0x01,0xab,0x06, +0x4b,0xcc,0xf8,0xd7,0x89,0xf2,0x79,0xd2,0xe8,0x6c,0xf5,0x7d, +0xf5,0xba,0x55,0x1c,0x9d,0xf3,0x69,0x9f,0xaf,0xea,0x05,0x13, +0x8e,0x04,0x61,0x8b,0x9f,0x51,0xde,0xaa,0x80,0xc0,0xc5,0x2b, +0xfd,0x68,0xaf,0x66,0x9c,0x70,0xdc,0x00,0xab,0x07,0xa1,0x7f, +0x6e,0xa0,0x84,0x21,0x26,0x34,0xa2,0x1d,0x8c,0x9a,0x3e,0xdc, +0x63,0xdb,0x49,0x84,0xee,0x01,0xcf,0x13,0xb8,0xf9,0x9b,0xc3, +0x96,0x85,0xa8,0x67,0xb4,0xf8,0xfe,0xf6,0xb2,0xa5,0xfe,0x62, +0xa1,0x82,0x8f,0xbd,0x4d,0x96,0xb2,0x6a,0x67,0xde,0x64,0xe5, +0x04,0x58,0x06,0xd8,0x8c,0xb9,0x35,0x56,0x83,0xd9,0xfb,0x4a, +0x8c,0x32,0xe3,0x62,0xc6,0xcf,0x8f,0xd5,0x2d,0x82,0x91,0x1b, +0x69,0xe2,0x14,0x5c,0x47,0xe8,0x32,0x0a,0xcd,0x57,0x48,0xfb, +0xdc,0x57,0x20,0xea,0x1b,0x9e,0x89,0x5b,0x72,0xc9,0x18,0x9e, +0x82,0xc6,0xe1,0x75,0x75,0x30,0x84,0x0c,0x8e,0xda,0x1f,0x4d, +0xc1,0xd4,0x07,0x33,0x74,0xb4,0xea,0x7f,0xb6,0xe0,0x5b,0x8a, +0x5b,0xf0,0x6f,0x5d,0xab,0x91,0xb6,0xe0,0xa7,0x27,0x89,0xec, +0xee,0x35,0xc1,0x57,0x8b,0x6a,0xce,0x9d,0xcb,0x55,0xa5,0x51, +0xf8,0x46,0xd1,0xc7,0xa0,0xbe,0x6c,0x8e,0xd3,0xee,0x49,0x78, +0x5a,0xe4,0xfb,0x81,0x68,0xd7,0x91,0x2c,0xe9,0x07,0x1b,0x2e, +0xce,0x6f,0x8e,0x90,0x27,0x4c,0x99,0x15,0x00,0x26,0x8e,0x4c, +0x31,0xe4,0xda,0x99,0xaa,0x6f,0x73,0xb2,0x28,0x6c,0x39,0xb0, +0x33,0x3d,0x91,0xd8,0x8f,0x55,0xd6,0x16,0x43,0xbf,0xeb,0x22, +0x73,0x44,0x9c,0xc8,0x1c,0x91,0x79,0x24,0xed,0xe8,0xd7,0x27, +0xa8,0x72,0x8d,0xa0,0x0d,0xa0,0x90,0x35,0x62,0x76,0xc0,0x02, +0xe8,0x1e,0x40,0x95,0x6b,0x17,0x5c,0x39,0x57,0xf5,0xed,0xd9, +0x6c,0xda,0x2b,0x55,0x4e,0x20,0x03,0x46,0x33,0xe5,0xfe,0xb7, +0xb6,0xec,0xd3,0xd3,0x4e,0x24,0xee,0xca,0x38,0x9a,0x76,0xec, +0x6b,0x8a,0xca,0x47,0xd4,0x09,0x5a,0x3f,0x8a,0x79,0xa2,0x02, +0xfc,0xe7,0x41,0x77,0x3f,0xaa,0x1c,0x93,0x19,0xbd,0x23,0x2a, +0x26,0x3a,0x56,0xb9,0x7d,0xf7,0xd1,0x9a,0xf4,0xda,0xe4,0xab, +0x2a,0xf2,0xf9,0x05,0xb8,0x39,0x93,0xf0,0xf2,0x1d,0xd0,0x7d, +0xd9,0x24,0x90,0x83,0x4d,0xd9,0x6c,0x65,0xfb,0x9d,0xdc,0xa6, +0x6f,0x1a,0xf7,0xee,0x4b,0xdd,0xb1,0x27,0x9e,0xf0,0x30,0x53, +0x59,0x52,0x2d,0x53,0xf0,0x71,0xf1,0xdb,0x77,0xcb,0x8e,0x96, +0xa7,0x56,0x5d,0x50,0xe7,0x4d,0x5b,0xc6,0x41,0xf7,0xc5,0xae, +0xd0,0x0d,0x7a,0x69,0x1a,0xe6,0x37,0x5d,0x28,0xaa,0xfc,0xb6, +0x42,0x95,0xcc,0x7d,0x9d,0xba,0x8f,0x65,0x42,0x7e,0x05,0x7d, +0x95,0x75,0x65,0xa0,0x22,0xbd,0xa3,0x0f,0x44,0x33,0xe2,0x24, +0x05,0xbf,0x95,0x95,0xf4,0xa6,0xca,0x95,0xe7,0xd5,0xf9,0x4c, +0xd9,0x78,0x89,0x9b,0x98,0x44,0x49,0x95,0xcf,0x17,0x55,0x7d, +0x5b,0xfe,0x5f,0x65,0x5b,0xbd,0x72,0x8c,0xf8,0x73,0xa8,0xa4, +0x50,0x66,0x8b,0x18,0xca,0xc8,0x39,0xc2,0x8a,0x27,0x8c,0x8a, +0xb2,0xdc,0x0a,0x06,0x09,0x86,0x52,0x3c,0x63,0x25,0x67,0x49, +0xd0,0x8c,0x5a,0x4f,0x0a,0x6a,0x6e,0xc6,0x28,0x33,0xaf,0x64, +0x3c,0x7c,0xa1,0x3e,0xcf,0x82,0x1a,0x51,0xa5,0xee,0x5f,0x15, +0x29,0xb2,0x91,0xb3,0xc8,0x46,0x54,0x19,0x1a,0xed,0xb0,0xc5, +0x8d,0x46,0x36,0x99,0xdf,0x65,0x3c,0x78,0x26,0xa9,0x70,0x4c, +0xa5,0x0c,0x1b,0x99,0x21,0x32,0x75,0x12,0x38,0x63,0xe3,0xa3, +0x6c,0x64,0x0d,0x8b,0x76,0xdc,0xc2,0x42,0xa0,0xcc,0xcb,0x19, +0xff,0x09,0x81,0x2c,0xa0,0x58,0x14,0x94,0x82,0x1f,0x26,0x78, +0x05,0x42,0x2e,0xea,0x96,0xce,0x80,0xa0,0xa9,0x64,0x02,0x36, +0x19,0xc6,0xb6,0x52,0xc0,0xc6,0x8b,0xba,0xad,0x58,0xed,0xc7, +0x88,0xf6,0x02,0x5c,0x74,0x01,0xf2,0xb3,0x50,0xc6,0x2f,0x4a, +0x98,0xbb,0x6d,0xd6,0xb6,0x6f,0x48,0x9c,0xd2,0x31,0x65,0x3d, +0xec,0x5a,0xb0,0x63,0xde,0x8e,0xe0,0x24,0xd5,0x16,0xb2,0xd7, +0x21,0xfe,0x04,0x24,0xcb,0x92,0x16,0x88,0xd5,0xd7,0xa8,0x37, +0x98,0x21,0x56,0x5f,0xeb,0xa5,0xa5,0xa0,0xb9,0x00,0x81,0x91, +0xb2,0xa1,0x16,0x1c,0xde,0x45,0xec,0x8b,0xd8,0x41,0x81,0x69, +0x38,0xb6,0x08,0x47,0x93,0x56,0x73,0xc3,0xfd,0xbc,0x61,0xe4, +0x60,0x4d,0xfd,0xac,0x07,0xd5,0xad,0x45,0x05,0xa5,0xaa,0x55, +0x82,0x39,0x7f,0x8b,0x71,0x3f,0xb9,0xcb,0xff,0xc6,0xea,0x77, +0x9d,0xe9,0x30,0x01,0x64,0x46,0xf0,0x65,0x5d,0x26,0x56,0x5f, +0x45,0xb0,0x4e,0xc1,0xcf,0x09,0x5f,0xbf,0x66,0x89,0xda,0xf5, +0x76,0x88,0x98,0x7a,0x57,0xd8,0x9e,0xbb,0xe1,0xdb,0xd9,0x99, +0xd8,0x8a,0x36,0xf2,0xfc,0x62,0xb9,0x53,0xc0,0xb1,0xd2,0xb2, +0xea,0xa3,0xd7,0xb4,0x79,0xf2,0x6b,0x35,0x9b,0x82,0x82,0xfd, +0x37,0x3a,0xd1,0x4b,0x04,0x87,0x6f,0x5c,0xb5,0x50,0x3d,0xf3, +0x46,0xb0,0xb8,0x1f,0xab,0xf4,0x42,0xc1,0xa6,0xac,0xe0,0x43, +0x9a,0xbd,0x6f,0xeb,0x05,0x3f,0x5f,0xd2,0x85,0x23,0x4a,0x30, +0xe7,0xd7,0xca,0xdd,0xe6,0x9e,0xa8,0xac,0x2c,0x3b,0xde,0xae, +0xfd,0x46,0x7e,0xbe,0x74,0xc3,0xec,0xd9,0xac,0x20,0xa4,0x2f, +0x55,0x8e,0xd8,0xb8,0x6e,0xb9,0xda,0xeb,0xa7,0xc5,0x84,0x9a, +0x99,0x9f,0xf2,0x9a,0x72,0x36,0x9e,0x0c,0xce,0xd0,0xa4,0x90, +0xcf,0x6a,0x84,0xcc,0x00,0xf2,0x39,0x47,0xec,0xc1,0x88,0xf6, +0x3c,0xd5,0xff,0x48,0x61,0x51,0xcd,0xe1,0xab,0xac,0xe7,0xea, +0xb0,0x05,0x21,0x01,0x9b,0x59,0xcf,0x8f,0x3f,0xfc,0x8d,0x16, +0x73,0x36,0x01,0xae,0xd0,0xbb,0x9f,0xa6,0x7e,0x8e,0x8c,0x0c, +0x20,0x9f,0xb4,0x5d,0x23,0x6a,0xf5,0x2e,0x68,0x7b,0xaf,0xa1, +0xd6,0xad,0xe9,0x26,0xe9,0xaf,0xfe,0x43,0xcc,0x9b,0xa3,0x6f, +0xae,0xd1,0x2c,0x67,0xb0,0xb0,0xd2,0x28,0xf8,0x27,0x10,0x39, +0x93,0x0c,0x5f,0xc4,0x59,0x07,0xb8,0x80,0xa5,0xad,0xa6,0x7e, +0xae,0x8c,0xf4,0x27,0x5d,0x5a,0xd9,0xc2,0x65,0x32,0x7c,0xc7, +0x37,0x04,0xb1,0xc2,0x59,0x86,0x0d,0xb7,0x88,0xbd,0xfa,0x4f, +0x58,0x3a,0x93,0x58,0x04,0x72,0xd0,0x6d,0xb6,0x33,0x68,0xcd, +0xa9,0xf2,0x53,0xb1,0x0c,0x61,0x08,0x67,0x15,0x30,0x13,0xac, +0x6c,0xf4,0x55,0xb7,0x3e,0x6d,0xbd,0x41,0x34,0x54,0xf9,0x9a, +0xbe,0xea,0x16,0x6a,0xfc,0x9e,0x0c,0x50,0xff,0x05,0xcb,0x5d, +0x88,0x95,0x3f,0x1d,0xdc,0xb3,0xa6,0x81,0x19,0x55,0xd6,0xdd, +0x42,0xf4,0x77,0x0e,0x4e,0xf0,0x4b,0xf4,0xdc,0x96,0x45,0xb6, +0x2a,0x1d,0x52,0xd6,0xc1,0x2e,0xfa,0x2b,0xef,0x08,0xc2,0xd6, +0x19,0x28,0x38,0x38,0x69,0x1e,0xfd,0x7d,0xe1,0x01,0x3a,0x4a, +0xb4,0xf4,0xc7,0x65,0x35,0x77,0x8a,0x74,0xd7,0xa9,0xbf,0x17, +0x05,0xd9,0x70,0xd8,0x1e,0x94,0xa4,0xda,0x4c,0x76,0xb1,0xba, +0x3b,0xdb,0xc5,0xba,0x3b,0x62,0x0d,0xad,0x32,0x7e,0x5e,0x62, +0x40,0x82,0xf7,0xf6,0x2c,0x71,0xe8,0xac,0x85,0x5d,0x73,0x77, +0xcc,0xde,0x31,0x9b,0x5d,0x32,0x68,0x5e,0x12,0xb6,0x62,0xb3, +0x01,0x46,0x3b,0x58,0xfd,0x1e,0xa3,0x48,0x56,0xbf,0x07,0x6b, +0xe2,0x11,0xee,0x61,0x80,0x14,0x1f,0x9a,0x90,0xb0,0xf6,0x7b, +0xf2,0x25,0x36,0xc9,0x61,0x84,0x5a,0x07,0x51,0xb4,0x06,0xb2, +0x22,0x53,0xdc,0xc8,0xde,0xe3,0x4b,0xa7,0x8e,0xf3,0x00,0xeb, +0xe9,0x6c,0x0f,0xcf,0x9b,0x7b,0x4f,0x88,0xb5,0x5a,0xb1,0x94, +0x05,0x76,0xaa,0x97,0x48,0x21,0x74,0xe5,0x63,0xb7,0xb2,0x97, +0xf7,0x42,0xea,0xe5,0x7b,0xea,0xc7,0x0e,0x03,0x39,0x98,0x1a, +0x64,0x4b,0x6d,0xa2,0x87,0xa6,0x71,0xf6,0x4f,0x7f,0xd6,0x7c, +0x7f,0xe6,0x27,0x15,0x7b,0x75,0xa9,0xa9,0x18,0x0e,0xdb,0x19, +0xd1,0xf6,0x08,0x12,0x1f,0x9b,0x21,0x16,0xd8,0x56,0x88,0x9a, +0x87,0x73,0xd3,0xf2,0xcb,0xd4,0x45,0x53,0x97,0x71,0x53,0xc2, +0x02,0x7d,0x7d,0x34,0x73,0xea,0xb1,0xd5,0xef,0xe8,0x5c,0x4a, +0x7e,0x29,0x3d,0xb9,0x94,0x1b,0xb6,0x26,0x70,0xc4,0x68,0x4d, +0xe5,0x9c,0xd2,0xb2,0x33,0xb9,0xc7,0xf2,0x98,0xce,0xf6,0xaf, +0x65,0x87,0xf3,0xd3,0x0a,0x2b,0xd5,0xe5,0x53,0x16,0x72,0x13, +0xc2,0x02,0xfc,0xdc,0x35,0x73,0x9b,0x63,0xd3,0xa2,0x77,0xc6, +0xc4,0xeb,0x29,0x54,0xf3,0x53,0xf2,0xab,0xd4,0x65,0x4e,0x21, +0x9c,0xfd,0x6a,0xff,0x91,0x43,0x34,0x55,0xb3,0x4b,0xab,0xce, +0xe4,0x1d,0x2b,0x54,0x29,0x60,0x22,0xcb,0x18,0xc7,0x66,0x6b, +0x51,0x7b,0x7b,0x69,0xe5,0xe9,0xca,0xf7,0xfd,0x11,0x51,0x83, +0x25,0x63,0xf3,0x50,0x13,0x53,0x46,0x13,0x48,0x5f,0x1a,0x05, +0xcc,0x60,0xbc,0x5a,0x5c,0x14,0xaa,0x9d,0xdb,0x7e,0xb9,0xb4, +0x26,0xab,0x46,0xb5,0xe7,0xeb,0x94,0x1d,0x7b,0x13,0xb0,0x45, +0x48,0x67,0xe1,0x7a,0x61,0x34,0x09,0xc5,0x26,0x6e,0x9d,0x7b, +0xf2,0xe8,0x61,0x38,0x36,0x71,0x67,0xcb,0xd2,0x8c,0x04,0xee, +0x50,0x19,0x73,0x10,0x57,0x66,0x4e,0xe5,0xa0,0xe7,0x82,0x89, +0x34,0x78,0xfd,0x42,0x53,0x39,0xbf,0xfd,0x46,0x49,0xe3,0xb7, +0xcd,0xaa,0xaf,0xf7,0xa6,0xec,0xdc,0xcd,0xb6,0x7b,0x3a,0x28, +0xab,0x8b,0x41,0x49,0xc6,0xc6,0xed,0x8f,0x4c,0x8a,0xd9,0x4a, +0x43,0x12,0x91,0x49,0xe9,0x68,0x49,0x6a,0x59,0xb3,0xfa,0xec, +0xb4,0x95,0x1c,0x7c,0xba,0xd8,0x0b,0xbe,0x04,0xa4,0xa9,0x0f, +0x3e,0xdf,0x5a,0x52,0x2e,0xf1,0x1a,0xee,0x10,0x6b,0x0c,0x9a, +0xb2,0x59,0x4c,0x2d,0x51,0xea,0xe9,0x47,0x8c,0xf9,0xbd,0x6e, +0x6c,0x7b,0x65,0x33,0x0b,0x07,0x23,0x85,0x69,0xbc,0x2e,0x95, +0x5c,0x70,0xb0,0x13,0x86,0x3e,0x77,0x84,0xfd,0x34,0x1c,0x74, +0x6e,0xe5,0x85,0xa1,0xaf,0x74,0x43,0x19,0xd7,0x78,0x25,0x82, +0x40,0x41,0xd7,0xf1,0x01,0x61,0x8d,0x0c,0xc1,0x4f,0xc2,0x7a, +0xe1,0x3d,0xe2,0x85,0x2d,0x33,0x75,0x5b,0xe4,0x20,0xa3,0xaa, +0x79,0xe4,0xdd,0xa4,0x94,0xe5,0xc2,0xa7,0xf0,0x65,0x42,0xa8, +0x8e,0x9b,0x14,0x9f,0x2d,0x74,0x91,0x05,0x05,0x25,0x05,0x89, +0x35,0xd7,0xfc,0xc8,0x92,0x7d,0x27,0x88,0x85,0x36,0xbe,0x2d, +0x28,0x3e,0x20,0xd1,0x6b,0x9b,0x14,0x47,0x6d,0xa7,0x38,0xf2, +0x05,0x22,0x19,0xad,0xc2,0x5b,0x77,0x72,0x52,0x1e,0xe3,0x39, +0x6d,0x21,0xac,0xf2,0x14,0x43,0x8f,0xc2,0x7b,0x67,0x6a,0xce, +0x66,0xa6,0x4a,0xf9,0x9d,0xd6,0xca,0xb3,0x62,0x7c,0xb5,0x27, +0x6e,0x47,0x78,0xd4,0x96,0x68,0x65,0x02,0x36,0x39,0x8d,0xc4, +0x53,0x61,0xc4,0x88,0x84,0x92,0x75,0x50,0xe1,0x45,0x36,0x01, +0x07,0xeb,0x60,0xb2,0x1f,0x6a,0xfe,0xb7,0x4e,0x5b,0x36,0x36, +0xc8,0x47,0x63,0x46,0x6c,0x93,0x5f,0x5a,0xe3,0x77,0xc6,0xd1, +0x04,0xf8,0xd1,0x16,0x30,0x0a,0x46,0xdd,0xb1,0x20,0xfc,0xd5, +0xda,0x9c,0x8b,0x67,0xb4,0x5f,0xcb,0x41,0xb5,0x8e,0x1f,0xe8, +0x7d,0xfe,0x57,0xed,0x2f,0xdc,0xaf,0x8d,0xe7,0x9f,0x62,0x4b, +0x82,0x04,0x1f,0x9e,0x46,0x8a,0x3b,0xc3,0xa2,0xd6,0x85,0x29, +0xe9,0x83,0xcd,0x2b,0x4f,0xaf,0x6c,0x11,0x63,0x4c,0x33,0x3f, +0x67,0xd8,0x81,0xad,0x57,0xa2,0x64,0x39,0x8b,0x2d,0x33,0xe3, +0xc8,0x31,0xb0,0xa7,0x58,0x4b,0x66,0x8c,0x35,0xab,0x91,0x7b, +0xf3,0x9c,0x97,0x62,0x95,0xe2,0xb0,0xac,0x85,0x87,0x35,0x7b, +0xb8,0x81,0xfa,0x2a,0xc5,0x27,0x4b,0xf5,0x55,0x8a,0x6b,0x72, +0x43,0x83,0x83,0x97,0xac,0x0b,0xa0,0xc1,0x72,0xd4,0x3e,0xc6, +0x2b,0x19,0x13,0xc7,0x32,0xc8,0x8e,0x9e,0x4b,0xcd,0xaf,0x50, +0x1f,0x9f,0x1a,0xc6,0x0d,0x59,0x3c,0x17,0xbe,0xea,0xab,0xa9, +0x0a,0xa2,0x31,0x48,0x8b,0x4c,0x68,0x47,0xe4,0xd4,0x5d,0x24, +0x98,0x7d,0x4f,0x47,0x47,0x5c,0x9b,0x2c,0xac,0x2f,0x98,0x47, +0x43,0x7f,0x93,0x35,0x64,0x3f,0xb6,0x60,0xfc,0x53,0xd7,0x89, +0x25,0xee,0x6e,0xc8,0x16,0x4a,0xbb,0x83,0x0f,0xcb,0x67,0x37, +0xb6,0xa3,0x50,0xc7,0x8f,0x77,0x81,0xbe,0x36,0xa4,0x8f,0x8b, +0x30,0x98,0xac,0x93,0x93,0x1c,0xdd,0x30,0xfd,0x09,0x57,0x7a, +0x22,0x54,0xae,0xe0,0xa0,0x5d,0x98,0x2d,0xd6,0xfb,0x62,0x6e, +0xcd,0x61,0x8b,0xeb,0x95,0x58,0xe6,0xa3,0x1e,0x3e,0x57,0xb7, +0xe3,0x9e,0x4f,0x99,0x15,0x70,0x8e,0x1a,0xb5,0x75,0x30,0xc5, +0xdd,0xd3,0xb1,0x59,0x19,0xbb,0xfa,0x08,0xee,0x9f,0x6c,0x31, +0xa7,0xa7,0x3e,0x11,0x9b,0x9d,0x66,0x56,0xe0,0x1a,0x3a,0x0b, +0xd5,0xfc,0xa2,0xc4,0xb9,0x89,0xcc,0xd1,0x6c,0x53,0x3a,0xee, +0x5d,0x0f,0x7b,0x16,0x6c,0x9f,0x97,0x14,0xbc,0x83,0x3a,0x9a, +0x34,0x87,0x84,0x13,0xb0,0x57,0xb6,0x60,0x41,0x52,0xa7,0x9f, +0x09,0xa4,0x7e,0x86,0xa7,0xa6,0xa8,0x67,0x16,0x82,0x5c,0x6c, +0x50,0x8d,0x48,0x38,0xd5,0xd9,0x00,0xf1,0xd8,0xe0,0x3c,0x22, +0x3b,0x1c,0xa9,0x7c,0x82,0x5e,0xde,0xf5,0x3f,0x55,0x41,0xf9, +0xc7,0xa2,0x91,0x5c,0xcc,0xf5,0x09,0x70,0x03,0xab,0xbe,0x9a, +0x5a,0x6a,0x51,0x07,0xbc,0x6b,0xbd,0x46,0x54,0xd4,0x46,0xb6, +0xf2,0x0d,0xb8,0x3b,0x41,0xa2,0x6d,0x0c,0x94,0xac,0xb2,0x99, +0xb5,0x68,0x95,0xc3,0x5c,0xc8,0xe0,0x85,0x9c,0x55,0xa0,0x2b, +0x98,0x4b,0x56,0xb9,0x2f,0xf9,0xb4,0xe5,0x1a,0xdb,0x4e,0x32, +0x73,0x03,0x4f,0x2d,0xf0,0x74,0x30,0xb5,0x78,0x3f,0x12,0x7d, +0x34,0xcd,0x8b,0x5d,0x68,0x90,0xa8,0xc0,0xe6,0x3f,0x20,0x62, +0xd5,0x04,0xe0,0x45,0x6c,0xe5,0xf1,0x93,0x67,0x07,0x03,0x9a, +0x50,0x3e,0x47,0xf9,0x5d,0x45,0x45,0xee,0x99,0x5c,0x91,0x44, +0x3d,0x81,0xf4,0x31,0x53,0x96,0x95,0xcb,0x84,0xa1,0x92,0xb0, +0xf5,0x47,0xe1,0x59,0xff,0x11,0xce,0x3e,0x97,0xba,0x77,0x1f, +0x8b,0xdb,0x7a,0x4b,0xc2,0x43,0x18,0x68,0xdf,0xc9,0x3b,0xc3, +0xa7,0x30,0x90,0x7c,0x32,0x0d,0x1e,0x49,0x0b,0xbe,0x8f,0xf9, +0x69,0xd2,0x19,0x67,0xf1,0x8c,0x30,0xae,0x09,0x9b,0x33,0x02, +0x0e,0x49,0xb6,0x2b,0x6d,0xe9,0x32,0x0d,0x7e,0x91,0x64,0x9f, +0x50,0x59,0xf1,0x8c,0x33,0xfc,0x82,0x4d,0x7a,0x8b,0x52,0x3b, +0x78,0xdc,0xe3,0x31,0x82,0xdf,0x24,0x89,0x57,0xf4,0xe8,0x17, +0xe9,0x48,0x18,0xd7,0x8c,0xcd,0x83,0xa9,0x8c,0x83,0x6e,0x2e, +0xee,0x3e,0x12,0xb5,0x43,0x29,0x5c,0xc6,0xc6,0x4d,0xf4,0x8f, +0x32,0xb8,0xf0,0xe1,0x3d,0x1a,0xc2,0xd6,0x2a,0x27,0x83,0x9f, +0x25,0x19,0x39,0x03,0xf7,0x9c,0x80,0xc8,0x2e,0x96,0x78,0x6a, +0xad,0x3b,0x89,0x66,0xb4,0x32,0x7e,0x74,0x0b,0x89,0x2b,0xdd, +0x82,0x07,0x63,0xfa,0xb7,0xb1,0x5c,0x31,0x19,0x5b,0xdc,0x14, +0x6b,0x90,0x5b,0x63,0xdc,0xc0,0xa6,0x84,0xb7,0x20,0x22,0x3b, +0xc5,0xd2,0x8a,0x47,0xb4,0xc2,0x65,0xb2,0x6e,0x32,0xe4,0x92, +0x7e,0xd0,0xbd,0x23,0x12,0x29,0xc4,0x7d,0x03,0x83,0x3c,0xbc, +0xfe,0xdd,0x37,0x50,0xa2,0xdf,0x37,0x60,0x2a,0xed,0x1b,0xf8, +0x22,0x8c,0xed,0x7f,0x88,0x54,0x85,0x45,0xd2,0x37,0x2b,0x3b, +0x3f,0xbd,0x48,0xdc,0x70,0xa0,0xd0,0x6d,0xd2,0x71,0xfc,0x5d, +0xac,0xf5,0x43,0xa3,0x58,0xde,0xa9,0xb0,0x97,0x68,0xb0,0x05, +0x11,0x67,0x9c,0xa1,0x03,0xd2,0x79,0xa2,0xc2,0x3d,0xeb,0x11, +0x36,0x5d,0x8c,0xc6,0x05,0x06,0x3a,0x88,0x4c,0x8d,0x6c,0x76, +0x99,0xb6,0x65,0xf2,0x44,0x3d,0xfa,0x2e,0x20,0x50,0x8c,0x19, +0xc5,0x2a,0xd2,0xff,0x3c,0x8a,0xde,0x17,0xba,0x73,0x97,0xa8, +0x35,0xac,0x2e,0x54,0x1d,0x77,0xbb,0xa6,0xe6,0xe6,0xcd,0xea, +0x80,0xb1,0x1a,0x3f,0x6e,0x6c,0xa0,0x3f,0xd5,0xad,0xbd,0xad, +0x51,0xc0,0x24,0x6c,0xf0,0x04,0x25,0x32,0x7b,0xde,0xda,0x56, +0x52,0x9e,0x55,0x81,0x0d,0x97,0x23,0xb0,0xac,0xad,0x90,0x29, +0xb0,0xea,0x12,0x22,0xeb,0x15,0x2c,0xc1,0xf9,0x16,0x1f,0x43, +0x3e,0x11,0x8b,0x6a,0xe6,0x78,0x93,0x65,0xe6,0xb0,0x08,0x46, +0x89,0x19,0xce,0xa6,0x2c,0xc3,0x59,0xcf,0x01,0x52,0x98,0x5a, +0xd2,0xa0,0xce,0x9e,0xbe,0x96,0xb3,0x5c,0xec,0x07,0x3c,0x74, +0xd5,0xd4,0xcd,0xbb,0xc0,0x88,0xa3,0x4a,0x54,0x29,0x5f,0xeb, +0xc9,0x64,0x79,0x65,0x75,0x39,0x9b,0xcb,0x8e,0x4e,0xd7,0x1b, +0xdd,0xdf,0x12,0xe5,0x0b,0xc2,0x37,0xb3,0x65,0xb6,0xd6,0x59, +0xaf,0x5f,0xb7,0x56,0xb5,0xe5,0x85,0x65,0x2f,0xa0,0x26,0xe3, +0xb7,0x3a,0x86,0x5f,0x82,0xc1,0x8f,0x15,0x51,0x5f,0xf4,0x4d, +0x79,0x59,0x3e,0xb6,0xf4,0x47,0xd8,0xc4,0x0a,0xd5,0xb0,0x86, +0xb9,0xb0,0x94,0x8f,0x94,0xfb,0x2e,0xcc,0xae,0xae,0xa1,0x48, +0x28,0x10,0xf1,0xaf,0x13,0xe4,0xf3,0x36,0x6f,0x5e,0xca,0x70, +0x90,0x0f,0xc5,0x41,0x0d,0x97,0x8a,0x37,0x9f,0x63,0xd8,0xeb, +0xb5,0x84,0x83,0x60,0x05,0x96,0xd9,0xa1,0x9a,0xfc,0xec,0x3a, +0xed,0x41,0x79,0x6d,0xfe,0xca,0x80,0xc0,0x45,0x2b,0xfd,0xb5, +0x0c,0x39,0x53,0xab,0x93,0x5b,0xba,0xbf,0xa2,0x49,0x9d,0x3d, +0x76,0x0d,0x67,0xe5,0x33,0x13,0x92,0x2d,0xd8,0xca,0xa7,0xba, +0xed,0x7e,0x65,0x4d,0x95,0x8a,0xed,0x27,0x3e,0x14,0x47,0xa1, +0x6f,0x7f,0x65,0x49,0x2b,0x64,0xb2,0xdd,0x05,0xd4,0x1a,0xfe, +0x8b,0x9b,0x8b,0xd2,0x8b,0xeb,0x44,0xdc,0xdc,0xdf,0xc7,0x03, +0x92,0x6d,0x19,0x6e,0x36,0x69,0xba,0x5f,0x5e,0x5b,0xa6,0xd2, +0x6f,0x33,0x39,0x0d,0x16,0x4a,0x11,0x35,0x53,0x3b,0xaa,0x47, +0xcd,0xeb,0x69,0x9f,0xd8,0xda,0x0b,0xf9,0x7b,0xc2,0x8e,0xfe, +0x9a,0x22,0x0f,0xa2,0x6e,0xbc,0x5b,0x56,0x53,0xa6,0x3a,0x98, +0x9a,0x99,0x94,0xc1,0xf6,0x21,0x6b,0x99,0x46,0x0a,0xf9,0x9c, +0xe2,0x6c,0x36,0x3e,0xa8,0x06,0x2b,0x66,0x77,0xae,0x38,0xbd, +0xb4,0x5e,0x9d,0x3d,0x2e,0x94,0xb3,0xf5,0x73,0x83,0x78,0x1b, +0xa6,0xa9,0x6c,0xbe,0x5b,0x51,0x5d,0x21,0xae,0x1e,0x52,0xcd, +0x4c,0xb0,0x62,0x77,0xf9,0x35,0xf9,0x0a,0x1b,0xf9,0x20,0x7e, +0xc3,0x96,0x84,0x5d,0xb2,0x9c,0x73,0xe9,0x34,0x30,0x38,0x35, +0x76,0x13,0x37,0xc6,0x37,0x10,0x92,0x47,0x6a,0x0a,0xe8,0x1d, +0x56,0x3d,0x28,0xac,0x65,0x39,0x5a,0x22,0xee,0xce,0x82,0xee, +0xca,0x82,0x56,0x3a,0x1e,0xbb,0x6c,0xee,0xc4,0xf5,0x9d,0x79, +0xac,0x2b,0x68,0x10,0xd7,0x4e,0x0e,0x09,0xbc,0x0b,0xb9,0x08, +0xe6,0xd0,0x0e,0xa7,0xdf,0xc8,0xc9,0x08,0xa2,0xda,0x7f,0xe4, +0xb9,0x16,0x6a,0xe0,0x33,0x9e,0x62,0x42,0xe1,0x1e,0x02,0x0d, +0x7f,0xff,0x42,0x7f,0xb2,0x5b,0x8e,0xcd,0x1e,0xa1,0xc5,0x73, +0xb0,0xf9,0x23,0x34,0xe7,0xdb,0xc5,0xf5,0x1a,0x63,0x69,0x92, +0x61,0x5d,0xb8,0x72,0x5b,0xb2,0x2c,0xaf,0xe2,0xdf,0xe9,0x09, +0x3f,0x6c,0x34,0x03,0xdd,0xa9,0xae,0xae,0x56,0x51,0xef,0x91, +0x2e,0x7a,0x8f,0xc3,0xe2,0xcc,0x84,0xcc,0xf8,0x7d,0x32,0x3f, +0x62,0xe6,0x0b,0xd8,0x2d,0x9f,0x59,0xe8,0xd3,0x14,0xa3,0xd9, +0xc2,0x79,0xc5,0x84,0xf8,0xcc,0x54,0xc3,0xee,0xfe,0x33,0xef, +0x73,0xf5,0xdf,0xe6,0x55,0x60,0xf3,0x87,0xa8,0x62,0x4d,0x9e, +0xaf,0xc6,0x18,0x02,0x79,0x61,0xc2,0x1b,0x07,0xc8,0xa1,0xde, +0xf9,0x28,0xb9,0xe7,0x20,0x87,0x63,0x06,0xc2,0x84,0xbf,0x75, +0x13,0x3a,0x29,0x6d,0x8e,0x16,0xa7,0x96,0x51,0x6f,0xe5,0x4c, +0xbb,0xec,0xba,0xc4,0x0b,0xba,0x83,0x42,0x53,0xbb,0xa0,0xa5, +0xb5,0xb8,0xec,0xdb,0x52,0xd5,0xde,0x94,0x7d,0x3b,0x53,0x18, +0x12,0x32,0x55,0x56,0x97,0xc0,0x57,0x44,0x1d,0xb5,0x3f,0x46, +0x8c,0x5b,0xf8,0x98,0xad,0xac,0x48,0x71,0x09,0x63,0x46,0x3e, +0x4b,0x55,0xb1,0xc9,0x4b,0x56,0x1b,0xcf,0xfa,0x00,0x72,0xa6, +0xe1,0x04,0x87,0xf1,0x10,0x24,0xe2,0x34,0xea,0xac,0x2a,0x18, +0x4e,0xcb,0x9f,0xb6,0x94,0xe1,0x34,0x17,0xe8,0x86,0x4d,0xbf, +0x42,0xec,0x02,0x34,0xc0,0x9e,0x20,0x15,0x08,0xeb,0xac,0x3e, +0x26,0x95,0x08,0x6b,0x70,0xf4,0xe3,0xa0,0xd7,0x82,0x49,0x60, +0x06,0xbd,0x59,0x89,0xb0,0x9b,0xd5,0xcd,0xac,0x92,0xd9,0x3e, +0x7d,0x25,0xb3,0xff,0xf0,0xd7,0x4a,0xbb,0x52,0xa3,0x62,0xb6, +0x75,0xf2,0xd7,0x36,0x38,0x30,0xd5,0x7f,0xf9,0x6b,0x6f,0xd6, +0x34,0x51,0xd5,0x8f,0xfc,0xb5,0x14,0x5e,0x8f,0xac,0xab,0x85, +0x21,0x58,0xfd,0x98,0x39,0xa9,0x21,0x30,0x55,0xdc,0xfd,0x3a, +0x59,0xbf,0xfb,0x35,0x2a,0x86,0xa1,0xca,0xda,0x7d,0x0d,0x17, +0xa5,0xed,0xad,0x26,0xf3,0xc6,0x83,0x05,0xb0,0xf8,0xfe,0xd6, +0x8f,0xd5,0x2d,0x39,0xed,0x2a,0x56,0xd4,0x86,0x6d,0x6f,0xe5, +0x59,0x9e,0x36,0x0d,0x8e,0x06,0x32,0x6e,0xb6,0x6a,0xe8,0x4b, +0x3e,0x8b,0x4a,0x8f,0x48,0xa2,0xb7,0x12,0x19,0x43,0xbf,0xef, +0xb1,0x82,0xb4,0xe2,0x2a,0x75,0xfe,0xe4,0x65,0x5c,0xff,0x59, +0x34,0xca,0xef,0xad,0xa9,0x9d,0xfd,0x7d,0x63,0x5d,0xd9,0xb9, +0x4a,0x15,0x89,0xa3,0xaa,0x62,0x99,0x6a,0xe2,0x05,0xae,0xca, +0xc6,0x7a,0xf0,0x24,0x53,0xf4,0xcb,0x7a,0xe1,0x91,0xac,0xde, +0x4e,0xcd,0xfe,0xfa,0x8b,0xea,0xb6,0x09,0x5e,0xb4,0x73,0x9f, +0x71,0x30,0x02,0xac,0x34,0x4d,0x81,0x0f,0x6f,0xb7,0xb6,0x15, +0xb4,0xd3,0x07,0x26,0x55,0xb8,0x66,0xf5,0xae,0x95,0xac,0xe0, +0xb5,0x58,0xc9,0x98,0x3a,0x26,0x65,0x63,0x1d,0x4c,0x21,0x5f, +0x44,0xa4,0xe3,0xee,0x27,0x51,0x71,0xb5,0xba,0x64,0xe2,0x22, +0xce,0xd6,0x77,0x26,0x8c,0xb2,0xd0,0x34,0x06,0x3c,0x68,0x6d, +0xab,0x28,0x60,0x25,0x8d,0xd9,0xe6,0x73,0x71,0x03,0x94,0x33, +0x68,0x94,0x8d,0xb5,0xe0,0x44,0xbe,0x8c,0x48,0x17,0x71,0x5b, +0x58,0x64,0x22,0xed,0xb9,0x30,0xbd,0x88,0xaa,0x4e,0x5a,0xcc, +0xd9,0xfa,0xcc,0x80,0xd1,0x54,0x35,0xf0,0xa1,0x5e,0xb5,0x5d, +0xc1,0xef,0xeb,0x54,0xfd,0x8a,0x21,0x3e,0x27,0xd2,0x2d,0x22, +0x2d,0x82,0xe5,0xe2,0x6e,0x89,0x62,0x7b,0xc6,0xc5,0xea,0x91, +0x05,0x0e,0xcb,0x38,0x3b,0x5f,0x57,0x18,0x6d,0xa3,0xa9,0x0f, +0x7c,0xd8,0xd4,0x56,0x56,0x40,0xbf,0xef,0x63,0xaa,0x9a,0x9a, +0x9e,0x44,0x55,0x67,0x48,0xbd,0x4e,0x25,0x7c,0x44,0x1a,0xbb, +0x4f,0xd6,0xd9,0x44,0xa9,0xb3,0x31,0x52,0x67,0xed,0x62,0x67, +0xdf,0x2b,0x78,0x3f,0x32,0x63,0xd6,0x65,0x5d,0x33,0x56,0x5f, +0xa3,0x3f,0xd2,0x4d,0x62,0x24,0xff,0x7b,0xef,0xeb,0xb4,0x9f, +0xf7,0xc7,0xb7,0x2a,0xd7,0xc1,0x42,0xa4,0xcf,0xfb,0x59,0x07, +0x6a,0x1e,0x3c,0xfb,0x3b,0xf6,0xef,0xf7,0xc2,0x91,0x78,0x12, +0xcf,0xe7,0x37,0x7e,0x7b,0x61,0x77,0x03,0x3c,0xb5,0xac,0x1a, +0xd2,0x8c,0x39,0x97,0x75,0xc5,0xd3,0x59,0x0d,0x94,0x9f,0x74, +0xd3,0x78,0xef,0x41,0xfd,0x7e,0xf1,0x82,0x6f,0x59,0x0e,0xe3, +0x7e,0x92,0xc5,0x7b,0xd1,0x43,0x6f,0xf1,0x10,0xbe,0xab,0xe4, +0xfb,0xfd,0xfa,0x9b,0x9c,0xa4,0x0f,0x10,0x3f,0x45,0x4c,0x3a, +0xf7,0xb2,0xee,0x30,0xc3,0xa4,0x0a,0x7e,0xfe,0x96,0x4d,0x6b, +0x17,0xab,0xdd,0x6e,0x84,0x88,0xe8,0xb2,0xb0,0x2d,0x6f,0x13, +0xcb,0xf6,0x49,0xf9,0x9d,0x65,0xfb,0xfc,0xc5,0x11,0x53,0xf8, +0x8a,0x5f,0x25,0x77,0x0d,0x3a,0x56,0x56,0x8a,0x7b,0xce,0x44, +0xc1,0x41,0x62,0xe6,0x0f,0x4f,0x7f,0x59,0x37,0x6c,0xb2,0x08, +0x31,0x06,0x2b,0x56,0x00,0x89,0x11,0x74,0xb9,0x62,0x93,0x65, +0xff,0x39,0xe1,0x0b,0x2e,0x8d,0x8c,0xd4,0xca,0x31,0xf2,0x40, +0xc4,0xce,0x0f,0xd7,0x11,0xc6,0x14,0x04,0xf1,0x1b,0xc2,0x0f, +0x1d,0x3b,0x7e,0xe8,0xd0,0xf1,0xe3,0x99,0xe1,0x1b,0x36,0x6e, +0x09,0xdf,0xa0,0x25,0x9f,0xf6,0xda,0x28,0x9d,0xa3,0xff,0xe8, +0xb9,0x70,0x76,0xae,0x6b,0xaf,0x4e,0xb9,0x63,0xd2,0xb9,0x8d, +0xb4,0xcf,0x88,0x34,0x86,0x25,0x22,0x63,0x68,0xe8,0x79,0xf4, +0x0c,0xe6,0xaa,0x50,0x65,0x41,0x76,0x41,0x2a,0x85,0x11,0xfb, +0x70,0x4f,0xb6,0x6c,0x1e,0xc1,0x88,0x79,0xb1,0xe9,0x12,0x74, +0xa9,0xae,0xa2,0x30,0xbb,0x00,0xcb,0x3c,0x11,0xb1,0xa1,0xe6, +0xac,0x8c,0xfa,0x2e,0x07,0x56,0x63,0xb1,0xbf,0x6e,0x3a,0x56, +0x37,0x52,0xdf,0xe9,0x25,0x2e,0xc2,0xba,0x92,0x63,0x1c,0xdb, +0x32,0xc2,0x36,0x90,0x28,0x84,0x3a,0x04,0x4b,0x3e,0xe4,0x23, +0xfa,0x2a,0x18,0x63,0x7c,0x1c,0x29,0x22,0x61,0x7e,0x5d,0xbc, +0x2c,0x23,0xe3,0xf0,0xc1,0x5c,0x93,0xda,0x53,0xa1,0xc1,0xda, +0x44,0x2e,0x38,0x34,0xd4,0x7f,0xf6,0xc6,0x63,0x59,0x9b,0x34, +0x73,0x97,0xca,0x96,0x9c,0xcc,0x5f,0x71,0xdd,0xe4,0x69,0x5d, +0xed,0xf7,0x37,0x7c,0x4b,0x9d,0xe6,0x6e,0xda,0xb4,0x6a,0xb3, +0x76,0x9b,0x3c,0x9d,0xa8,0x64,0x8a,0x03,0xd8,0xea,0x2f,0xf4, +0xc3,0x23,0xf5,0x1d,0x61,0xa2,0x1b,0x21,0x91,0xdc,0xca,0xa4, +0x55,0x49,0x6b,0x34,0x82,0x71,0x54,0x8a,0xbb,0xee,0xd3,0xcc, +0xed,0x8b,0x13,0x16,0x63,0xab,0x37,0xc8,0x45,0xa6,0x68,0x5b, +0xcd,0x61,0xb5,0xf5,0x47,0x00,0xe4,0x46,0xf2,0xb0,0xc9,0x01, +0xa4,0x20,0x9f,0xb0,0x85,0x64,0x92,0xbc,0x9d,0xff,0xb8,0x78, +0xfc,0x3f,0x4b,0xca,0x0a,0xc6,0x66,0x91,0x0b,0x66,0x1f,0xc6, +0xa2,0xa7,0xc4,0xa7,0x49,0xf8,0xf4,0x39,0x79,0x4e,0xe6,0x09, +0x43,0x3d,0xc9,0x2b,0x3b,0x78,0x0e,0xc1,0x64,0x22,0x36,0x94, +0x4b,0xb5,0x0f,0xb0,0xca,0x00,0x85,0x9d,0x9d,0x8f,0x4d,0xb7, +0x22,0xf6,0xe7,0xe6,0xb3,0x0b,0xd8,0x9f,0xe2,0x04,0x1f,0x36, +0xd8,0x80,0x5a,0x66,0xff,0xf6,0xb2,0xa5,0xb2,0x2d,0x2f,0x3c, +0x2b,0x04,0x9b,0xc6,0xfe,0x7b,0xbe,0x79,0xf6,0x4b,0x76,0x3e, +0x37,0x2c,0x7b,0xa1,0x78,0x1e,0x5b,0xa7,0xa3,0xe9,0xeb,0x38, +0xbb,0x25,0xb3,0xa1,0x57,0x1f,0x4d,0xed,0xbc,0xf3,0x35,0xa5, +0x05,0xa7,0x0b,0x54,0x29,0x7b,0xf7,0xed,0xa4,0xaf,0x2a,0x23, +0x72,0xa8,0x2a,0x07,0x4c,0xba,0x46,0x31,0x26,0x49,0xe6,0xc8, +0x6b,0x85,0xee,0xfe,0x2f,0x12,0xb9,0xf9,0xd4,0x09,0x2f,0x50, +0x3b,0x4b,0x33,0x88,0x97,0x8a,0xe8,0x9d,0xb0,0x09,0xd0,0xc1, +0x30,0x9c,0x8f,0x92,0xfb,0x2f,0xca,0xae,0xae,0xce,0xcf,0xae, +0xd5,0x1e,0xc0,0x3d,0x30,0xfa,0x10,0x86,0xfe,0xbf,0x1b,0x62, +0xcb,0xd0,0x03,0xc1,0x5c,0x44,0x0a,0xa7,0xca,0xca,0x24,0xa4, +0x50,0x7b,0x2e,0x34,0x28,0x68,0x69,0x28,0x75,0xd6,0xff,0x2a, +0x60,0xec,0xc2,0xd4,0x9f,0x26,0x72,0x21,0x61,0xe1,0xab,0x96, +0xa8,0xdd,0x5a,0xe6,0xd0,0x8b,0x54,0xb4,0xe5,0x86,0x67,0x2d, +0x3c,0xc4,0xe6,0x49,0xb1,0xa5,0x39,0x62,0x8a,0xf3,0x44,0x45, +0xbe,0x5e,0x18,0xe9,0xfb,0x37,0xbd,0x37,0x1a,0x68,0x2c,0x56, +0x7b,0xb4,0xcf,0x7e,0xfb,0x47,0x7b,0x65,0x4b,0x1e,0x36,0xff, +0x03,0x7d,0xc3,0xb6,0xee,0x34,0xe6,0xaf,0x0d,0x0e,0x5e,0x14, +0xea,0x4d,0x25,0x87,0x04,0xb8,0x5a,0x5b,0xd7,0xb9,0xff,0xd2, +0x52,0x7a,0xb2,0xf8,0xa4,0x76,0x55,0x8e,0x6c,0xd9,0xa6,0xb5, +0x1b,0x83,0x4c,0xdc,0x57,0x16,0xb4,0x6a,0xd3,0xc8,0xca,0xc3, +0xdc,0x2f,0x73,0xae,0x0c,0xd2,0xcc,0x33,0xa8,0xca,0x5e,0xe4, +0xa9,0xdd,0x06,0x43,0x76,0x73,0x2d,0xd9,0xf9,0xb5,0x1a,0x63, +0x7e,0x43,0x44,0x42,0xb2,0xec,0x4c,0x76,0x5a,0x4e,0x81,0xfa, +0xf8,0xf8,0x2d,0x9c,0x93,0xef,0x3c,0xd8,0xe5,0xa8,0xc9,0xf7, +0x20,0x9a,0xd2,0x07,0xe7,0x6a,0xf3,0x54,0x19,0x7b,0x0f,0x31, +0x76,0x9c,0x6c,0xe8,0xaa,0xcc,0x6d,0x85,0xf4,0x17,0x9b,0x53, +0x62,0xa4,0xcd,0x4c,0x61,0x0f,0x29,0x6a,0xf3,0x84,0x0a,0x6f, +0xb2,0x61,0x24,0x84,0x02,0x1d,0x99,0x4d,0x22,0x68,0x33,0x67, +0x5b,0x40,0xd7,0xf0,0x24,0x00,0xb2,0xae,0x92,0x07,0xac,0xb8, +0x36,0x1f,0xf6,0x33,0x15,0x75,0x86,0x0a,0x1f,0xb2,0x61,0x1c, +0x15,0x35,0x71,0x45,0x8d,0xff,0x8a,0xce,0x67,0xa2,0x07,0xaf, +0x92,0x6b,0xa2,0xe8,0xbf,0x4c,0x14,0xb6,0x12,0x13,0x85,0xb9, +0xc4,0x44,0xb1,0x06,0x1b,0x3e,0x42,0x50,0x09,0xdd,0xf4,0xae, +0x9b,0x0f,0x7f,0x4a,0xd6,0x92,0x40,0xa8,0xf0,0x24,0x1b,0x87, +0xb0,0xda,0xde,0xd8,0x30,0xe4,0xbf,0xa8,0x71,0xb3,0x58,0xdd, +0xfb,0x2a,0x79,0x2d,0x56,0xe3,0x13,0x0b,0x81,0xfb,0x89,0xc2, +0xc3,0xa9,0xb0,0xed,0xff,0x00,0xcc,0x75,0x4c,0xf4,0xec,0x35, +0xf2,0x5c,0xba,0x81,0xdb,0x54,0xd4,0x99,0x7d,0xad,0x8d,0x13, +0xa8,0x28,0xf6,0xd3,0x7f,0x2d,0x51,0x74,0x1e,0x13,0x3d,0x78, +0x4d,0x7f,0xaf,0x5b,0x5e,0x91,0x35,0x64,0x21,0x54,0xb8,0x93, +0x75,0xfd,0x61,0x0d,0x0c,0x77,0x45,0x6d,0x9b,0x10,0xd9,0x8e, +0x7b,0xce,0x43,0xfc,0x96,0x3f,0x69,0xdb,0x0a,0xd6,0xb6,0xbe, +0x37,0xac,0x85,0x71,0x52,0x5b,0x1a,0x4f,0xef,0xe2,0xea,0x75, +0x5d,0x77,0x49,0xff,0x1d,0x59,0x41,0x42,0xa1,0x04,0x9b,0x2e, +0x44,0x64,0x37,0x39,0xc2,0x8b,0x39,0xca,0x39,0x14,0xa8,0x5b, +0x87,0x20,0x5b,0x7a,0xc5,0x91,0x42,0x10,0x8d,0xec,0x99,0x7d, +0x6a,0xbf,0xae,0xe3,0xc4,0x6f,0x12,0xf1,0x82,0xac,0x26,0x0b, +0xc4,0xeb,0x0e,0xa0,0x12,0x43,0x99,0xc4,0x56,0x26,0x51,0x7b, +0x9d,0x74,0x30,0x09,0x27,0xe8,0x05,0x5d,0x34,0x55,0xfe,0x57, +0xdb,0xaa,0xab,0xcf,0x54,0xa9,0x52,0x53,0xa8,0x63,0xdc,0x4a, +0xfa,0xc3,0x60,0xe5,0xcd,0x8b,0xd5,0x95,0x67,0x2a,0x53,0xf7, +0xa6,0xb2,0x52,0x52,0xbd,0xc1,0x5a,0x59,0x5d,0x07,0x16,0x04, +0x33,0x4f,0x19,0x19,0xab,0x32,0x16,0x5c,0x45,0xc4,0xbc,0x39, +0x6a,0xbd,0x18,0xf6,0xe4,0x96,0xa7,0x57,0xb4,0xa8,0xcf,0x8c, +0x5b,0xcd,0x99,0xfb,0x52,0xc4,0x6c,0xae,0x29,0xf6,0x20,0x5f, +0xb5,0xdd,0xab,0xa2,0xb1,0xe5,0xc1,0xb4,0xcc,0x24,0x71,0x3f, +0xb4,0x9d,0x88,0x9b,0x61,0x3d,0x56,0x7d,0x40,0x10,0x83,0x55, +0xff,0x87,0xe0,0x2c,0x56,0xfd,0x89,0xe0,0x2e,0x56,0x7f,0x82, +0xe0,0x3d,0x56,0xbd,0x47,0xf2,0x67,0x57,0x19,0xcb,0x44,0x6c, +0x1b,0xab,0xfd,0xc4,0x58,0x26,0x56,0x25,0xf3,0x60,0x23,0x72, +0x94,0xb5,0xb2,0x88,0x43,0x55,0x53,0x0e,0xfd,0xc9,0x17,0x51, +0x0a,0x1e,0x02,0x6d,0x1d,0xfb,0xda,0x0a,0xad,0xe8,0xd5,0x4b, +0xdb,0x1b,0x10,0x48,0xcd,0xe8,0x06,0xb0,0x87,0xb0,0x58,0x58, +0xa5,0xfb,0x1a,0x29,0x4c,0x52,0x66,0x62,0xf3,0x4f,0xe9,0x27, +0x2b,0x5a,0x71,0x69,0x17,0x2b,0x5a,0xc1,0xc7,0xa4,0x63,0xa3, +0x5f,0x50,0xe2,0x6e,0xdc,0x73,0x31,0xca,0x9e,0xba,0x96,0x06, +0x68,0x8b,0x7d,0xa0,0x07,0x18,0x69,0xaa,0x83,0x9a,0x1a,0x4b, +0x58,0xfc,0xbe,0x67,0x2f,0x23,0x12,0x4c,0x89,0x57,0x11,0x35, +0xe0,0x9a,0x72,0x19,0x2b,0x8d,0x9a,0x8a,0x2d,0x3f,0x47,0xd0, +0x33,0x98,0xc7,0xc6,0x29,0x08,0x12,0x21,0x0d,0x1b,0x64,0x8a, +0x35,0x53,0x37,0x63,0xb5,0xaf,0xf4,0xc7,0x14,0xe8,0x06,0x72, +0x0f,0x22,0x07,0xb9,0xf8,0x21,0x87,0x9e,0xd4,0xe8,0x28,0x10, +0xf3,0xbb,0x69,0xcc,0xef,0x4e,0x85,0x6e,0xca,0x86,0x1a,0x70, +0x20,0x5d,0x99,0xdf,0x65,0xc1,0x42,0x14,0xe3,0x11,0x3b,0x97, +0x9e,0x57,0xae,0xce,0x9d,0xb4,0x8a,0x1b,0xea,0xe7,0x09,0x23, +0x07,0xb0,0x19,0xd7,0xda,0xd6,0xe2,0x82,0x32,0xd5,0x2a,0xe6, +0x76,0xd3,0xd8,0x3e,0xae,0xe9,0xc0,0x77,0x38,0x21,0x82,0xa8, +0x1e,0xa3,0x4f,0xdc,0xc2,0xf4,0x4e,0xe4,0xa5,0x15,0x54,0xaa, +0x0b,0x26,0x2d,0xe3,0x06,0xfa,0xba,0xc1,0x68,0x5b,0x4d,0x43, +0xe0,0xc3,0xc6,0xb6,0xd2,0x82,0x0a,0xd5,0x72,0x05,0x7f,0x38, +0xed,0x90,0xb4,0x4d,0xb8,0x9f,0xb2,0xa4,0xa5,0x73,0x9b,0x30, +0xb6,0xb4,0x44,0xa1,0x1f,0xb7,0x06,0x7b,0x10,0xd3,0x56,0x71, +0x9b,0xae,0x02,0x6b,0x6e,0x53,0xfc,0xbb,0x91,0xc7,0xe6,0x3b, +0xd0,0xcb,0x4e,0x82,0x32,0xb5,0x39,0x7a,0x6f,0xc8,0x52,0x9a, +0xec,0x58,0x4a,0xd3,0x8f,0xbf,0xff,0x6e,0xff,0x63,0x20,0x1a, +0xdf,0xa7,0xcf,0xb3,0xf1,0x24,0x44,0x0b,0x6b,0x88,0x0b,0x8f, +0xcd,0x7a,0x74,0x8a,0xe0,0x6e,0x73,0x10,0x71,0xe5,0xb1,0xe1, +0x71,0x14,0xc1,0xb9,0xcf,0xf0,0x5b,0x81,0xea,0x5a,0x35,0xb4, +0x0d,0x9b,0x66,0x20,0x6c,0xd6,0x5d,0x2f,0x36,0x4c,0x4c,0x8e, +0xfa,0x5d,0x4a,0x8e,0xb2,0xe9,0xf3,0x6c,0xa2,0x74,0x25,0x67, +0xbe,0x45,0xf7,0x06,0x79,0x68,0x22,0x61,0x20,0x13,0xc4,0x6a, +0x4b,0x04,0xee,0x4c,0xde,0x87,0xc9,0x5f,0xfd,0x15,0xf7,0x68, +0x46,0x03,0x9e,0x39,0x49,0xc2,0x63,0x68,0xb7,0x9f,0xb1,0x76, +0x92,0xa4,0x73,0xe2,0xaf,0x86,0xc9,0x8a,0x6f,0x67,0xfd,0xf2, +0xa7,0xba,0x09,0x72,0x5c,0xc8,0x7c,0x2e,0xb9,0xdf,0xea,0x09, +0x21,0x13,0x0d,0x75,0x66,0xdb,0xf8,0xeb,0x51,0xb2,0x13,0x3f, +0x1d,0xba,0xf7,0x97,0xba,0x0d,0xaa,0x5c,0x48,0x28,0x97,0xdc, +0x67,0xcb,0x98,0xf5,0x93,0x0d,0xa1,0x2f,0xd3,0x9c,0xce,0x5f, +0xdd,0xcc,0x34,0x1f,0xbf,0x55,0x37,0x42,0x8e,0x2b,0xd3,0xec, +0x4b,0x35,0x1d,0x3e,0x6a,0xfe,0x78,0xe8,0xde,0x9f,0x4c,0xd3, +0x55,0xd2,0x1c,0x2b,0x69,0xbe,0x77,0xe5,0x3b,0x5c,0xc9,0x35, +0xee,0xed,0x8f,0xb8,0x7b,0x29,0x4a,0xf9,0x2e,0xff,0x4f,0x35, +0xe9,0x32,0xf9,0x3a,0x70,0x1a,0x08,0x82,0x46,0x9e,0x6c,0x26, +0x3e,0xdc,0xe5,0xa2,0x25,0x2e,0xda,0xa5,0x9c,0xcb,0x82,0x25, +0xd3,0x35,0xa2,0xd3,0x5d,0xfe,0xa1,0x83,0x39,0x5d,0x23,0x8c, +0xdb,0x91,0xe2,0x47,0x04,0x9f,0xcf,0xa2,0xc3,0x68,0x16,0x45, +0xd5,0x51,0x24,0x9c,0x7f,0x2e,0xf4,0x98,0x41,0x9a,0x43,0x38, +0xf8,0x72,0xaa,0x0b,0x1c,0xb4,0xd2,0x14,0x7b,0xca,0x48,0x1e, +0x91,0xdd,0xf9,0x9e,0x4c,0x50,0x2b,0xb6,0x0f,0x77,0xf7,0xc6, +0xdd,0x93,0x51,0xda,0xe1,0x24,0xdc,0x3d,0x01,0xa5,0xc6,0x26, +0x85,0x45,0xd3,0x30,0x6f,0x7b,0x72,0x56,0x6e,0x9a,0x98,0x93, +0x94,0x76,0x1e,0x32,0x14,0x30,0x12,0x1b,0xfa,0x23,0x0a,0xe8, +0xc4,0xa1,0xbc,0xc8,0x9b,0x0e,0x65,0xa4,0xa9,0x09,0x6a,0x6b, +0xa1,0xe0,0xb6,0x8c,0x06,0xfe,0x6c,0x20,0x13,0x95,0x38,0xff, +0x47,0x21,0x2e,0xbe,0x8a,0xda,0x2e,0x96,0x56,0x9f,0xae,0x54, +0xed,0xa1,0x90,0x60,0xef,0x56,0x3a,0xc2,0x6d,0x95,0x22,0xf8, +0xb5,0xee,0x85,0xe0,0x2f,0xfe,0x19,0xc9,0x6f,0x83,0xbe,0x1c, +0x36,0x1e,0x8a,0x48,0xbe,0xbd,0x20,0x9f,0xf1,0xbe,0xf9,0xa2, +0x5c,0x01,0x33,0xe9,0x5b,0x13,0x99,0x1c,0x19,0x13,0x1b,0xa7, +0xdc,0x8e,0xad,0xe6,0xa3,0x85,0xae,0x14,0x5f,0xf4,0xd2,0xe8, +0x27,0x3b,0xab,0xa5,0xf2,0x29,0xac,0x9b,0xfe,0xca,0x3a,0x7a, +0xb1,0xa2,0x44,0xce,0x52,0x24,0x42,0xee,0xaa,0xa9,0x9d,0x7f, +0xbe,0x51,0x02,0xc5,0x8c,0x8c,0x99,0x81,0xe2,0x5e,0x7a,0x50, +0x1c,0x25,0x81,0xe2,0xff,0x82,0xe9,0x25,0xd2,0x62,0x3e,0x05, +0xbe,0x17,0x3b,0xab,0xf6,0x42,0x36,0xf9,0x05,0x9b,0xb4,0x8a, +0x87,0xc1,0xe2,0x21,0x35,0x00,0x86,0x02,0x76,0x21,0x37,0xdd, +0xb8,0xa8,0xa4,0x68,0x6c,0x7d,0x10,0x39,0xd9,0x78,0x83,0xd7, +0x0c,0x55,0xa1,0x97,0x8c,0x94,0xbc,0x79,0xfd,0x90,0xd8,0xab, +0x99,0xf4,0x36,0x51,0xfa,0x55,0xa7,0xb4,0x6b,0x47,0x13,0x82, +0x77,0xac,0x44,0xeb,0x8f,0xa7,0xe6,0x4f,0xb1,0xf1,0x02,0x2f, +0x67,0x55,0xa1,0x37,0xd5,0xf8,0xe3,0xf5,0x23,0x32,0x50,0xcd, +0xf2,0xff,0xa9,0xd1,0x34,0xc3,0x46,0x87,0x11,0x98,0x11,0xf7, +0x49,0xc2,0xf4,0x5b,0x72,0x1a,0xe8,0x32,0x86,0x00,0x3a,0x8e, +0x57,0xa1,0xff,0x32,0x8d,0x28,0xb0,0x45,0x30,0x3d,0xb1,0x62, +0x07,0x36,0xf7,0xa7,0x9f,0x8b,0x77,0x70,0xc9,0xe6,0xe1,0xc3, +0x43,0xc7,0x1a,0xc2,0x6e,0x67,0x05,0x31,0xc0,0x6a,0x56,0xb5, +0x02,0x4f,0x44,0xb0,0x14,0x52,0x79,0xd2,0x6d,0x02,0x35,0x0c, +0x8f,0xec,0xfe,0x37,0xac,0x71,0x6b,0x82,0x0f,0xcf,0xc9,0xbd, +0x06,0xb8,0xf7,0x9c,0xbc,0x6a,0x16,0x86,0x02,0x21,0x0e,0x1f, +0xa3,0x1a,0x46,0xba,0x74,0x8d,0xdf,0xfa,0x86,0x91,0x2e,0x8d, +0x11,0x49,0x97,0x4c,0x18,0xe9,0x92,0x44,0xe0,0xb4,0x55,0xcf, +0x99,0x76,0xe7,0xff,0xa3,0x6d,0xe2,0x48,0x7d,0x2c,0x56,0x6f, +0x40,0x8c,0x86,0x86,0x44,0x09,0x73,0xd9,0x94,0xee,0x75,0xa1, +0x05,0x8e,0x52,0xc0,0xe8,0x74,0x81,0x17,0xfa,0x11,0x6f,0x9d, +0xc8,0xa5,0x34,0xe3,0xe1,0x2b,0x62,0x44,0x0c,0x87,0xbd,0x82, +0x19,0x30,0x63,0x98,0x2d,0x18,0x82,0xd1,0x43,0x5b,0x32,0x43, +0xdb,0x6c,0x00,0x26,0x1e,0xd7,0x7e,0xd4,0x1e,0xe3,0x7e,0x6a, +0xb9,0x4a,0x7b,0x34,0x69,0x71,0x1a,0xa7,0xd9,0xc8,0x8d,0xf7, +0x98,0x02,0x26,0xd4,0xe7,0xbf,0x10,0x78,0x67,0xd2,0xbe,0x90, +0x8e,0x55,0x27,0x17,0x38,0x64,0x45,0x01,0xb9,0x8c,0x14,0x13, +0xd9,0x5d,0x36,0x56,0x21,0x5b,0x08,0x65,0x35,0x64,0x41,0x65, +0x63,0x4f,0xdf,0x85,0xb9,0xaf,0xed,0x88,0x8a,0xa8,0x5e,0x3f, +0x27,0x73,0x49,0x90,0xcd,0x33,0x50,0x69,0x49,0x3f,0x78,0xcc, +0xc3,0x97,0x33,0x66,0x0c,0x1d,0xea,0x7c,0x91,0x7c,0xa9,0xf9, +0x99,0x23,0x5f,0x5e,0xba,0xf8,0xe8,0xd1,0xc5,0x19,0xf0,0x25, +0xbd,0x36,0xb6,0x6e,0xa3,0xb8,0xba,0xbf,0x39,0x8c,0x84,0x91, +0x2f,0xcc,0x89,0x46,0x7b,0xdd,0x60,0x98,0x6b,0x3d,0xe9,0xa2, +0xbd,0xc5,0x91,0x2e,0xed,0xf5,0x0f,0x1f,0xb6,0xfb,0x52,0xff, +0x34,0x89,0x83,0x2e,0xae,0xbe,0xc3,0x34,0xc6,0x29,0x07,0x9a, +0xb1,0xc1,0x0b,0x1a,0x41,0x92,0x35,0x02,0x46,0x90,0xcd,0x9f, +0x20,0x0e,0x33,0xf6,0x6e,0x81,0x69,0xb2,0xe9,0xf2,0x2d,0x64, +0xda,0x8c,0x84,0x93,0xe0,0xa0,0x7b,0x8c,0x84,0xe3,0xc4,0x8b, +0x1a,0xaa,0x07,0x67,0xcb,0x5a,0xb4,0x59,0x5c,0xcb,0xb2,0xb2, +0xe1,0xc3,0x96,0x05,0x79,0x68,0x56,0x71,0x1e,0x67,0x83,0x1e, +0x6a,0x2a,0x0d,0x66,0x6f,0x3c,0x5a,0x48,0xbf,0x6d,0xe1,0xb1, +0xa3,0x95,0x15,0xc7,0x37,0x85,0xd0,0xef,0x1a,0xb2,0x61,0xd3, +0x1c,0x8d,0xf1,0xcf,0x08,0x5b,0x7f,0x83,0x2e,0x1f,0xb8,0x7d, +0x5f,0x7d,0x59,0x18,0xe5,0x46,0xfe,0x08,0xe7,0x92,0x86,0x46, +0x4f,0x0c,0x77,0x31,0x64,0x89,0x70,0x34,0x10,0x52,0x9b,0xec, +0x75,0x5d,0x8d,0x14,0x3f,0xa1,0x66,0x25,0x4b,0x9d,0x9b,0x9b, +0x68,0x78,0xb0,0x5d,0xac,0x94,0x25,0x16,0x42,0xdf,0xc2,0x4a, +0x6c,0x4d,0x8b,0xf0,0xc4,0x56,0x48,0xbf,0x4a,0xf6,0x13,0x6a, +0xa1,0x82,0xf3,0x12,0xe7,0x6e,0x33,0xcc,0xb8,0x98,0xfe,0xc3, +0x5d,0xf5,0x25,0x61,0xb4,0xab,0x28,0x38,0x22,0x7a,0xf2,0x16, +0x57,0xc3,0xad,0x60,0xac,0xbf,0xac,0xcb,0x08,0x56,0x6a,0xda, +0x1f,0x9d,0x9e,0xbe,0x9e,0xeb,0xb7,0x74,0x36,0x7c,0x45,0xb1, +0xf3,0xbc,0xf3,0xb5,0x34,0x1a,0x2d,0x14,0xeb,0x39,0x8a,0x54, +0xe2,0x88,0xbd,0x41,0xa6,0xc4,0x20,0x2a,0x5d,0x0f,0xe2,0xf7, +0xec,0x49,0xdb,0xb9,0x2f,0x91,0xfa,0x45,0x99,0xb2,0xa6,0x0a, +0x6c,0xfe,0x88,0xdc,0x17,0xc1,0xc0,0x68,0x24,0x4b,0xf4,0x3c, +0x76,0x2e,0xed,0x5c,0xa9,0xfa,0x8c,0x53,0x28,0x37,0x22,0xd0, +0x1b,0xac,0x86,0x6a,0xaa,0xe7,0xdc,0xaa,0x6a,0x28,0xcc,0x2d, +0x61,0x7e,0x42,0xa4,0x55,0x67,0x08,0xb8,0x17,0xdb,0x9f,0xdc, +0x89,0x80,0x59,0x1e,0xb4,0x84,0x80,0x8b,0x18,0x02,0x5e,0x4e, +0x11,0xf0,0x4c,0xb0,0xec,0xd3,0x89,0x80,0x2b,0x54,0x2c,0xe7, +0x30,0xd5,0x09,0x7a,0x7e,0x78,0x87,0xe8,0xe8,0xe1,0xdc,0x09, +0x27,0x87,0x2f,0xe6,0xf3,0xb8,0xdb,0x1a,0x31,0xcd,0x7b,0xb3, +0x13,0x74,0x63,0x4d,0x72,0xfa,0x1f,0x6d,0xa0,0x21,0xf6,0x70, +0xe9,0x3c,0x56,0x27,0xb3,0x0a,0x57,0xa6,0x68,0x99,0xe8,0x14, +0x99,0x6b,0x73,0x02,0x39,0x73,0x8a,0x93,0xfe,0xa4,0xbe,0x6d, +0x3b,0x83,0xb1,0xd1,0x2c,0x03,0xfb,0x6c,0x5a,0x6e,0x89,0xfa, +0xac,0xc3,0x1a,0x6e,0x94,0xaf,0x0f,0x8c,0x18,0x4a,0xb1,0xe8, +0x7d,0x96,0x8b,0x53,0xa2,0x5a,0xa1,0xe0,0x85,0x81,0x6e,0xba, +0x81,0xf2,0x23,0xf0,0x2d,0x36,0xda,0x8a,0xc8,0x3a,0x71,0x83, +0x4d,0x14,0x74,0x4d,0xf8,0xc8,0x9f,0x6a,0xf4,0x07,0x72,0xc7, +0x86,0xeb,0x90,0xa2,0xa3,0x0f,0x2b,0x40,0xb2,0x8a,0x91,0x33, +0x76,0x34,0xa0,0x35,0xe4,0x87,0x49,0x02,0xff,0x0f,0x23,0xdc, +0x34,0xd9,0x8c,0x16,0x50,0x47,0xd2,0x8c,0xa0,0x0c,0x32,0x9e, +0xfc,0xf3,0x17,0xbb,0x29,0xfa,0xb6,0x1e,0x56,0x90,0x64,0xdd, +0x0a,0xe6,0x1b,0x8a,0x6e,0x9c,0xbe,0xfb,0x4c,0x5d,0xc5,0xb8, +0x6a,0x17,0x70,0xc3,0xd7,0x4c,0x5b,0xe8,0xac,0xd1,0x69,0xb7, +0xf1,0xd7,0x22,0x65,0x27,0xaf,0x67,0xde,0x7a,0x4e,0xbd,0x46, +0x15,0x8d,0xdf,0xb8,0xe4,0xc1,0x5b,0x26,0xaf,0x77,0x35,0x84, +0x7e,0x0a,0xac,0xfd,0x03,0x81,0xdf,0x6c,0x1e,0xa6,0x22,0x72, +0x95,0x54,0x5d,0x14,0xe4,0x82,0x4b,0xc7,0x12,0xa4,0xf8,0x67, +0x27,0x82,0x58,0xb2,0x89,0x7f,0x2c,0x74,0x9b,0x41,0x1a,0x97, +0x70,0x98,0x2b,0x64,0xa6,0x61,0x24,0x05,0x65,0xfe,0x6c,0x7b, +0x53,0x1b,0xf7,0x6b,0x6a,0x4b,0x71,0x8b,0xba,0x60,0x63,0xb6, +0x7e,0xcd,0xd3,0xd7,0x97,0x74,0x49,0xe0,0x82,0xc3,0x37,0xae, +0x5c,0xa8,0xf6,0x68,0x5a,0xf0,0x6b,0x9c,0x66,0x06,0xac,0xf8, +0x58,0xb4,0x5c,0x45,0xb4,0xd8,0xe4,0x91,0x78,0x98,0x2e,0x1e, +0x9a,0x61,0x93,0x07,0xf4,0x8a,0x66,0x2a,0x04,0x6a,0xa2,0xfa, +0xe7,0x5b,0xb6,0xe5,0x49,0xb7,0x85,0xa7,0xb8,0x76,0xcd,0x2d, +0x5d,0xd2,0x24,0x1a,0xed,0x99,0x0a,0xe5,0x88,0x51,0x3d,0xf0, +0xff,0x25,0x33,0x62,0x52,0xd4,0xdc,0x99,0x8a,0xe6,0xce,0x94, +0xb8,0x3b,0x08,0xd3,0x6f,0x32,0x21,0xc6,0x77,0x42,0xef,0xef, +0x33,0x94,0x71,0xe2,0x2c,0xb6,0xbe,0x89,0xf8,0x75,0xc2,0x97, +0x48,0xb8,0x8e,0xae,0x59,0xf2,0x96,0xc2,0xc0,0x3f,0x27,0x41, +0xa1,0x05,0xd2,0xa5,0x90,0x27,0xf2,0x49,0x70,0x9a,0xfe,0x12, +0xa4,0x0b,0x23,0x16,0xc1,0xd8,0x07,0x5d,0xc4,0xa6,0x33,0x11, +0xdb,0xcc,0x92,0x14,0x1e,0xb5,0x21,0x82,0xad,0x6e,0xe4,0xe4, +0xa6,0xe5,0x97,0xab,0x4f,0x4e,0xd8,0x44,0x7f,0x44,0x7f,0xd8, +0x3e,0x52,0x53,0xe0,0x49,0x54,0x55,0xf7,0x0a,0x6b,0x8a,0x54, +0x19,0xa9,0xe2,0xce,0x92,0xe3,0xd0,0x43,0x59,0xd0,0xc2,0xd6, +0x77,0x52,0x29,0x3c,0x88,0xda,0x14,0xa1,0x8c,0xdf,0x25,0x3b, +0x9b,0x97,0x96,0x5f,0x29,0xaa,0x0d,0xf7,0xf3,0x87,0x1d,0x43, +0x35,0xf9,0x5e,0x44,0x55,0x73,0xaf,0x88,0xa9,0xed,0xd3,0x6f, +0x9d,0xf9,0x52,0x99,0xdf,0xcc,0xb2,0xdf,0xfa,0xa0,0x02,0x36, +0xdf,0xf1,0xed,0xb8,0xf5,0xdc,0x60,0x3f,0x2f,0xd8,0x3e,0x88, +0xcd,0x12,0x7e,0x55,0x77,0xaf,0xa4,0xa6,0x44,0x75,0x70,0x5f, +0x66,0xd2,0x21,0xc6,0x8d,0xa0,0x52,0x16,0xb5,0xb2,0x3e,0xf6, +0xc5,0x24,0x85,0x45,0x6e,0xd8,0xc2,0x6e,0xed,0xac,0xb8,0x01, +0xe8,0xf4,0xd8,0xf5,0x9c,0xbd,0xbf,0x27,0x6c,0xb3,0x63,0x6a, +0x26,0x8d,0xf7,0xca,0xaa,0xcb,0x55,0x07,0xf6,0x1e,0xdc,0x91, +0x11,0x4f,0x8e,0x80,0x46,0x59,0xdc,0xaa,0xcf,0x97,0x0b,0x8b, +0xda,0xb8,0x45,0x99,0x40,0xd5,0xe8,0x37,0xaa,0x50,0x9f,0x1a, +0xbf,0x89,0x1b,0xc9,0x6e,0x6d,0xb8,0xa6,0xd0,0x93,0x98,0xd0, +0x5b,0xab,0xa6,0xb7,0x96,0x42,0xa3,0xdb,0x78,0xda,0xdb,0xe7, +0xd2,0x37,0x12,0x27,0x4e,0xb1,0x95,0x2f,0x1a,0xb7,0x96,0xb3, +0xf1,0x73,0x83,0xed,0x7d,0x58,0x1f,0xaa,0xe6,0x7b,0x15,0x35, +0x95,0xaa,0x83,0xd8,0xf2,0x1d,0xd2,0xaf,0x34,0xad,0x0f,0xc7, +0x96,0x9f,0x22,0x6c,0x6e,0x86,0xa8,0xb2,0xb9,0xbe,0x4f,0x6c, +0xb5,0x14,0x15,0xd5,0xa8,0x4f,0xd3,0xef,0x35,0x90,0x06,0x85, +0xdb,0x07,0x88,0xca,0x0d,0xf4,0x7b,0x95,0xa9,0x0e,0xa4,0xe8, +0x39,0x1f,0xb0,0xf4,0xbd,0xa4,0x69,0x53,0xfa,0xbd,0xb0,0xd5, +0x1c,0xe4,0xe7,0x01,0xdb,0xb1,0xf5,0x1a,0x74,0x50,0x9a,0x22, +0x3d,0x06,0x66,0xfa,0x2b,0xa6,0xb2,0xbe,0x36,0x84,0x2b,0x3f, +0xce,0xac,0x9e,0x1e,0x17,0xca,0xf5,0xf5,0x73,0x87,0xed,0xb6, +0xe2,0x9c,0x6c,0xf3,0xdd,0xf2,0x9a,0x0a,0x15,0x55,0x63,0x5f, +0xfe,0x18,0x58,0x7e,0x54,0xa3,0x5f,0x7e,0x83,0xf4,0xe5,0xa5, +0x67,0x36,0x7e,0x3d,0x67,0xc7,0x6e,0xc9,0x4e,0x53,0xe8,0x41, +0x94,0x0d,0xf4,0x99,0x95,0xaa,0x3e,0xd2,0x50,0x68,0x95,0x45, +0xf4,0xcb,0xc3,0x28,0xea,0xc0,0x9d,0x10,0xef,0x02,0xfd,0x6d, +0x48,0x5f,0x17,0x61,0x84,0xb4,0x1a,0x35,0x4a,0x7f,0xc2,0x95, +0x9e,0x08,0x95,0xd3,0xa8,0x73,0x06,0x82,0x41,0x74,0xe4,0x9a, +0x33,0xe2,0xa1,0x48,0xbf,0x89,0x0a,0x0e,0xab,0xa7,0x22,0xfd, +0x2a,0x55,0x37,0x36,0x75,0x33,0x21,0xba,0xff,0x56,0xeb,0x44, +0xc3,0xdf,0xc9,0x24,0x72,0x7f,0xb2,0x15,0xe4,0xbc,0x71,0x84, +0xbb,0xc4,0xd1,0x92,0xdb,0xce,0x18,0xca,0x6e,0x31,0x86,0xb2, +0x66,0x9e,0xe4,0xc0,0xa7,0x8c,0xa2,0xac,0x0d,0xbd,0xa6,0x62, +0x12,0x33,0x9b,0x23,0xfc,0x4c,0x1c,0xad,0x25,0x22,0xb3,0x0f, +0xaf,0x98,0x5c,0x3d,0x93,0xfb,0x84,0xc9,0xf1,0x12,0xaf,0x37, +0x5b,0x80,0xdb,0x2d,0x3b,0x9a,0x9b,0xca,0x58,0xc0,0xa7,0x32, +0x16,0xf0,0xb2,0x22,0xc6,0xdc,0x28,0x99,0x58,0xc6,0x02,0x4e, +0x83,0xa2,0x0e,0x1f,0x2a,0x7e,0x20,0x72,0x67,0x44,0x54,0x78, +0xa4,0x12,0x9b,0x9e,0x42,0xff,0x99,0xba,0x6b,0xa8,0xa3,0xb0, +0x20,0x9a,0xcd,0xd8,0xe0,0x1e,0x7e,0x88,0x5e,0x64,0xca,0x26, +0xce,0x9e,0xf1,0x40,0x5a,0x6b,0x6a,0xe7,0xb4,0x56,0x95,0x16, +0x64,0x17,0x60,0xeb,0x25,0x08,0x50,0x6d,0xa5,0x4c,0x21,0x46, +0x4f,0x52,0xa7,0xd8,0x6a,0x1e,0x5a,0xcc,0x82,0x34,0x85,0xa6, +0x1a,0x5b,0x8d,0x61,0x6b,0xc9,0x1a,0xa5,0x88,0x31,0x62,0xf6, +0x77,0x46,0x58,0x6c,0x5f,0xcb,0xbe,0xca,0x76,0x75,0xae,0xd3, +0x0a,0x0e,0x3e,0x13,0x63,0x2d,0x9e,0xc5,0x5a,0x97,0xfe,0x37, +0xd6,0xea,0x27,0xc6,0x5a,0x7c,0xec,0xe2,0x40,0x56,0x0b,0xa4, +0x89,0x98,0xb7,0x51,0x90,0x3b,0x16,0x5b,0x5b,0xa3,0x16,0x59, +0xcc,0x02,0xe7,0x04,0x47,0x93,0x04,0xd2,0x22,0x95,0x0e,0x19, +0xcf,0x0a,0x83,0x74,0x4a,0x5e,0x90,0x24,0x1d,0xb1,0x55,0x38, +0xfa,0x28,0x78,0x59,0x12,0x9c,0x22,0xd6,0x18,0x91,0xd9,0x23, +0x52,0x46,0x6c,0xdb,0x61,0x9d,0x30,0x08,0x5b,0xf7,0x47,0xad, +0xb2,0xe8,0xa0,0x29,0x09,0x63,0x4c,0xb6,0x92,0x0a,0x32,0xaa, +0x1d,0xb6,0x0a,0x43,0xb0,0xcc,0x40,0x2f,0x57,0x28,0xc9,0xf5, +0xc7,0xc6,0x8d,0x48,0x14,0x29,0x96,0x44,0xec,0xf5,0x22,0x0a, +0x44,0xb2,0x89,0x4d,0x3b,0xac,0x15,0xac,0xb0,0xd9,0x7d,0x44, +0xce,0xb2,0xe6,0x38,0xa1,0xf7,0x87,0xaf,0xd9,0x1d,0x2d,0xf2, +0x8b,0x9f,0x6c,0x42,0xfb,0x12,0x05,0x06,0x61,0xe3,0xa5,0x88, +0x54,0x74,0x4c,0x45,0xc2,0x10,0x7d,0xb3,0x7f,0x02,0x6d,0xae, +0x62,0x19,0x12,0x6b,0x84,0xe1,0xd8,0xec,0x01,0x22,0xb5,0xac, +0x79,0x24,0x4c,0xa0,0xcd,0x8e,0xd1,0x83,0xb6,0xda,0xfe,0x3b, +0x3e,0xce,0x48,0xe3,0xc3,0x8a,0xdb,0x36,0x6a,0x78,0xd2,0x48, +0x93,0x94,0x19,0x1f,0x1e,0x21,0xc1,0x8d,0x8d,0x91,0x33,0xc0, +0xd2,0xdb,0x14,0xd8,0xe0,0x0e,0xfb,0x5e,0xe2,0xc5,0x68,0x5f, +0x9f,0x4b,0xf7,0x2b,0xf5,0xc7,0x2e,0x28,0xb6,0xe7,0x93,0x3e, +0x6d,0xb4,0xdd,0x16,0x5b,0x3e,0x41,0x31,0xc1,0x4e,0xa2,0x48, +0x21,0x19,0xd9,0x06,0xb1,0x42,0x3f,0xb1,0xd7,0xad,0x2b,0xb1, +0x51,0x37,0xc4,0x72,0x1a,0xac,0x71,0xb7,0x08,0xa6,0x20,0x4e, +0x5c,0xf5,0x61,0x13,0x57,0xd8,0xfc,0x06,0x72,0x86,0x7e,0x60, +0x8c,0xcd,0xab,0xa8,0x23,0x00,0x3b,0xb6,0x94,0x66,0xc7,0x96, +0xd2,0xb0,0xcc,0x11,0xfd,0x49,0xfa,0x91,0x5b,0x4e,0x7d,0x20, +0xf6,0x95,0x13,0xdc,0x20,0x03,0xe0,0x13,0xae,0xe3,0x02,0xfa, +0xb0,0x09,0x09,0x5d,0x09,0x45,0x0f,0xb1,0xe6,0x10,0x4b,0xc7, +0xe7,0x5e,0xea,0xcb,0x53,0x99,0x4b,0xfe,0x44,0x59,0x5d,0x09, +0xb6,0x2f,0xb1,0x65,0x01,0x3a,0x5b,0xac,0xce,0x9a,0xba,0x9e, +0x1b,0x33,0xcb,0x17,0xac,0x47,0x6a,0xaa,0xe6,0xde,0xaa,0x68, +0xc8,0xcf,0x2d,0x56,0x31,0xff,0x9d,0x96,0x44,0x1d,0xff,0x00, +0xe8,0xaa,0xac,0xae,0x02,0xdb,0xdf,0xa3,0xfe,0xe3,0xf8,0x59, +0x3a,0x6c,0x09,0x85,0x05,0xeb,0xb8,0x51,0xcc,0xf1,0x8f,0x60, +0x8e,0xbf,0xa2,0xa1,0xf0,0x1c,0xd3,0x63,0xce,0x37,0x2d,0x81, +0x4c,0x81,0x4f,0x19,0x2b,0xe3,0xf8,0xdf,0xc5,0x89,0x60,0x96, +0xf4,0x43,0xed,0xc3,0xf1,0x9c,0xb4,0xdc,0x62,0xf5,0x19,0x87, +0xb5,0xdc,0x58,0x7f,0x3f,0x18,0x3e,0x9c,0x02,0xd2,0x7b,0x15, +0xad,0x05,0xf9,0x54,0x4f,0x64,0x20,0x3f,0x25,0x55,0x0f,0xde, +0x76,0x5c,0xf4,0xbd,0xe1,0x10,0x69,0x46,0x5d,0x6f,0x2c,0x73, +0xbd,0x11,0x8c,0x92,0xcc,0x8d,0x51,0x92,0x61,0x75,0x12,0x1a, +0xcc,0xf8,0x34,0xa8,0xa7,0x0d,0xe1,0x31,0xfe,0x47,0x64,0xc7, +0x98,0xc8,0x00,0xdd,0xcd,0x97,0x2f,0xed,0x6f,0x06,0x22,0x87, +0xbe,0x7d,0x9f,0x39,0x48,0x98,0x6e,0x0a,0x75,0xc5,0xc6,0xa2, +0xc0,0x00,0x6c,0x96,0x8b,0x24,0x70,0x49,0xa1,0x64,0xe4,0x47, +0x28,0xc9,0xda,0x46,0x75,0x52,0x6b,0xdc,0x0a,0x44,0x93,0x18, +0xb5,0x46,0x8d,0x48,0xad,0x11,0x20,0x51,0x6b,0x74,0xe2,0xc5, +0x5f,0x19,0x5e,0x6c,0x42,0x03,0x7e,0x15,0xf1,0xe2,0x6a,0x11, +0x2f,0x76,0x63,0x1e,0xff,0x15,0x12,0x6b,0x40,0x1e,0x29,0x4b, +0xad,0x68,0x53,0x9f,0xf3,0x55,0xbc,0x0f,0xd1,0x0d,0xe6,0x8f, +0xfc,0x74,0xe0,0xde,0x5b,0xf5,0x65,0x28,0xa1,0xb1,0x7c,0x12, +0x97,0x6c,0x11,0x39,0x7c,0xd3,0x78,0x43,0x28,0x90,0x9f,0xbc, +0x9d,0xf9,0xe8,0x0f,0xf5,0x79,0xc8,0xa3,0xb1,0x3d,0x3d,0x6f, +0x1e,0x36,0x6a,0x2d,0x8d,0xed,0x93,0x19,0xff,0xc7,0x47,0x06, +0x97,0x11,0xca,0xe6,0x6a,0xf0,0x24,0x03,0x59,0x5a,0x58,0x84, +0x54,0xf9,0x47,0x76,0xb2,0x2c,0xbd,0xb2,0x99,0x51,0xb9,0x5c, +0x10,0xe6,0xcd,0x24,0xde,0x71,0x1c,0x28,0x3c,0x19,0x8f,0xca, +0x17,0x1a,0x05,0xb6,0x0a,0x45,0x25,0x05,0x59,0x85,0x29,0x9d, +0x16,0x46,0x9c,0x52,0x34,0xfd,0x38,0xa5,0xc8,0x66,0x20,0x97, +0xe8,0x8b,0x75,0x42,0x66,0x2a,0x36,0xb9,0xc3,0x6a,0xfd,0x58, +0x21,0xd8,0x2f,0xf4,0xfa,0xe7,0x0c,0xe2,0xc9,0x60,0xae,0x14, +0x35,0x7f,0xf8,0x01,0xc5,0xc1,0x44,0x1a,0x7d,0x4e,0x46,0x60, +0xcf,0xfd,0x08,0x21,0x82,0x3d,0xe2,0xaf,0xd5,0xe4,0xb5,0x7d, +0xab,0x9d,0xf3,0x8d,0x6c,0x5e,0xf8,0xf2,0x95,0x7e,0x26,0x53, +0x83,0xaa,0x9e,0x6b,0xab,0xb8,0xe7,0x65,0x55,0x57,0xaa,0x73, +0xd6,0xce,0xcf,0xd4,0x54,0x9d,0x92,0xb5,0xaf,0x9e,0x95,0xe3, +0x64,0x62,0x3e,0x7d,0x02,0xab,0x85,0x76,0xd9,0xf1,0x6f,0xad, +0x31,0x0f,0x9e,0x76,0xc3,0xcd,0xe0,0x93,0xe7,0x23,0xc4,0x79, +0xf7,0xfb,0xe4,0x93,0x77,0x76,0x0f,0xc0,0x53,0x4b,0x82,0x60, +0x0e,0xef,0xea,0xe1,0x0a,0xd6,0x60,0xed,0xde,0xde,0xae,0xc1, +0xd6,0x5f,0x22,0x63,0xc6,0x98,0xf7,0xf3,0xde,0x5b,0xfb,0xda, +0xf7,0xc7,0xd7,0x2b,0xd7,0x53,0x34,0x33,0x33,0x96,0xde,0xc5, +0x1e,0x2f,0xd9,0xc5,0xcb,0xbb,0x76,0x5f,0xd0,0x82,0x39,0x77, +0x1b,0x3c,0x28,0x08,0x99,0x08,0x83,0x85,0xde,0x48,0xf4,0xb4, +0x6c,0x42,0x48,0x72,0x36,0x25,0xf5,0xea,0xac,0xb1,0xa1,0x5c, +0x3f,0x7f,0xd1,0xc9,0x1d,0xd5,0x3b,0xb9,0xcd,0xcc,0x23,0x89, +0xee,0x18,0x5b,0x7f,0x8a,0xfc,0xa9,0x87,0xb4,0x12,0x97,0xf8, +0x5a,0x44,0x0f,0x79,0x80,0x7a,0x94,0x0c,0xb6,0xc9,0xc2,0x46, +0x14,0x16,0xa7,0x98,0x98,0x37,0x1d,0xbb,0x96,0xb3,0xf5,0x77, +0xd5,0x7b,0x53,0x75,0x0b,0x75,0x5a,0x54,0x96,0x79,0xd3,0x98, +0x9d,0xd8,0x7c,0x17,0xf2,0x9f,0x0e,0xdb,0xe1,0x13,0x71,0xd2, +0xa9,0xfd,0x6e,0x75,0x4d,0xb5,0xea,0x60,0xda,0x41,0x36,0xe9, +0x74,0x14,0x06,0x4a,0x93,0x4e,0x05,0x58,0xbd,0x11,0xf1,0xc2, +0x26,0x08,0xd0,0xfd,0xd4,0x2c,0x7c,0xfd,0x40,0xb7,0x91,0xf8, +0x0b,0x2d,0x9e,0xba,0x08,0xe6,0x40,0x5e,0x52,0x3b,0x72,0x73, +0xb2,0x2d,0x9c,0x7d,0x39,0x99,0xbe,0x9e,0x8e,0x7d,0xfe,0x75, +0x20,0x73,0x49,0x25,0x4f,0xce,0x5a,0xc2,0x59,0xb9,0xe2,0x9f, +0xfb,0x08,0x6b,0x9d,0x90,0x9d,0x7c,0xfb,0xe8,0xe1,0x02,0x1d, +0xe9,0x1f,0xca,0xa8,0xde,0x44,0x72,0x61,0xb2,0x1d,0xe4,0x3c, +0x9b,0x0c,0xe7,0xc9,0xe4,0x3e,0x1c,0xa3,0xbe,0x1f,0x41,0x7f, +0xa4,0x35,0x48,0x70,0x27,0x45,0xd4,0xf5,0xf4,0x11,0x49,0x34, +0x25,0x49,0xd6,0x43,0x8e,0xd8,0x83,0x5e,0x52,0x22,0xc9,0x17, +0x3c,0x58,0x1f,0x39,0x96,0x7a,0xc9,0x57,0x54,0xf2,0xc7,0xc9, +0x54,0xef,0xf5,0x64,0xf8,0x81,0x4c,0xee,0xfd,0xbf,0x92,0x35, +0x54,0xd2,0x8c,0x49,0x9e,0xa6,0x5e,0xaf,0x2f,0xf9,0xce,0xa9, +0x2f,0xc4,0xfe,0xe6,0x04,0x97,0xc9,0x00,0x2b,0xae,0x93,0x78, +0x96,0x1a,0x15,0x7a,0xc1,0x58,0x0b,0x66,0x54,0xa0,0x2b,0x4a, +0xc0,0xda,0xc1,0xc8,0x15,0x1b,0xae,0x67,0x0d,0xa5,0xb4,0xc1, +0x8a,0x35,0x30,0x86,0x42,0x32,0xae,0x09,0x6e,0x70,0xc9,0xcf, +0x64,0xa4,0x9e,0xcc,0x11,0x90,0x17,0x69,0xb6,0x87,0x7a,0x98, +0x43,0xfa,0xd9,0xcb,0x75,0x3d,0x10,0x5b,0xc8,0x61,0xd9,0x7a, +0x57,0xb0,0x89,0x8f,0xb8,0xfd,0x60,0x37,0x56,0xd7,0xb0,0x17, +0x9c,0x06,0x93,0x7d,0x15,0x4e,0xc2,0x50,0x0e,0xea,0xc9,0x54, +0x6c,0x32,0x0d,0x29,0xf4,0xd6,0xba,0x54,0x32,0xb0,0x03,0xb1, +0xd9,0x43,0xbd,0x31,0x1f,0xcc,0xec,0x66,0xec,0x62,0x5f,0xd6, +0x9a,0x2b,0xb9,0x0b,0xdb,0x76,0xee,0xde,0xf9,0x7d,0xfb,0x71, +0x0f,0x43,0x14,0xcf,0x2c,0x6c,0x81,0xe4,0x34,0xfa,0x61,0xa3, +0x63,0x48,0x41,0xdf,0xad,0xda,0x4a,0xf8,0x8c,0xf4,0x8d,0xc5, +0x46,0x0d,0x88,0x5a,0xb2,0xaa,0xb4,0xba,0x0b,0xea,0xeb,0x8e, +0xd3,0x38,0xf8,0x24,0x74,0x86,0xd3,0x08,0x8d,0xe3,0x33,0x30, +0x45,0xbb,0x65,0x87,0x2a,0x14,0xef,0x77,0xbe,0x8f,0xe9,0x08, +0x44,0x30,0x8f,0x87,0x7e,0x72,0x6c,0x3c,0x0c,0x09,0xc5,0x68, +0x18,0xdb,0xe6,0x90,0x83,0xe0,0x05,0x36,0xf9,0x1e,0xe9,0xfe, +0x24,0x76,0xbc,0x42,0xac,0x86,0x1c,0x9a,0xb8,0x7a,0xdb,0x8a, +0x6d,0x86,0x07,0x9b,0xd2,0x2f,0x5d,0x55,0xb7,0x88,0xd5,0x90, +0x29,0x02,0x73,0x8c,0x71,0x8b,0x08,0xd0,0x57,0x43,0xee,0x22, +0x55,0x43,0x16,0xb3,0x15,0xc5,0xda,0xc9,0x54,0xba,0x2d,0xfd, +0xfa,0xf7,0xff,0xd6,0x4e,0x1e,0x1b,0x33,0x7d,0x8b,0xf7,0xbf, +0x25,0x90,0x3f,0x4a,0x87,0x26,0xae,0x12,0xa5,0x5b,0xd2,0xaf, +0xdc,0x50,0xb7,0x75,0x4a,0x4f,0x8c,0x99,0x19,0xe1,0xab,0x97, +0xd6,0x5f,0x5b,0xf7,0x56,0xb7,0x89,0x27,0xbd,0x60,0xf3,0x4d, +0x5d,0xba,0x03,0xac,0x87,0x5e,0x64,0x91,0xa3,0x10,0x79,0x43, +0x0e,0x83,0xb1,0x9a,0xed,0xf5,0xbc,0x15,0x54,0xeb,0xa0,0x01, +0x67,0x61,0x44,0x33,0x99,0xf0,0x5c,0xfe,0x2b,0x4c,0x90,0x5d, +0x90,0xf7,0x23,0x93,0x65,0x6d,0xfb,0xb3,0xa8,0xe1,0x82,0x44, +0x6a,0x43,0xfb,0x12,0x05,0x57,0x7c,0x62,0xcd,0x12,0xed,0x5a, +0x6e,0xc9,0x86,0x35,0xf3,0x34,0xc6,0x89,0x22,0xec,0x37,0x9b, +0x88,0x48,0x26,0x7d,0x0b,0xcf,0xd0,0xd0,0x6a,0x1b,0x82,0x28, +0x85,0xec,0x68,0xd9,0xbe,0xca,0x36,0xf5,0x59,0x27,0xb6,0x92, +0xbb,0xd8,0x9d,0xbe,0xb6,0xc6,0xd8,0xb4,0x27,0xfd,0xed,0xba, +0xfd,0x1f,0xc2,0x9a,0x01,0xf4,0x5e,0x54,0xd3,0xd8,0x94,0xc2, +0x03,0x91,0x55,0x24,0x84,0x84,0x42,0xae,0x1b,0x59,0x6c,0x06, +0x21,0x30,0x49,0x37,0x08,0xb1,0x29,0x57,0x1a,0xfe,0xa4,0xb1, +0xed,0x4a,0x7a,0xae,0xea,0x4a,0xf5,0x71,0xa7,0x30,0x6e,0xf0, +0xa2,0x39,0xd0,0xcb,0x56,0x53,0x3d,0xf7,0x42,0x75,0x39,0x8d, +0x72,0x54,0xfa,0x1d,0x32,0x5a,0x06,0x3e,0x2b,0xc4,0xb9,0xd2, +0xe8,0x29,0x60,0x26,0xa2,0x42,0xe0,0x3e,0x12,0xcd,0x85,0x61, +0xeb,0xf9,0xc8,0x05,0x56,0x59,0x68,0xca,0xfd,0x65,0x24,0x86, +0xc8,0xaf,0xdc,0x24,0xa3,0xd4,0x4c,0x7a,0xfd,0x14,0x50,0xfe, +0xaf,0xb4,0x8a,0x6c,0xe4,0x9f,0xc1,0x6d,0x57,0xb2,0x77,0x3e, +0x07,0xdd,0xa9,0x2d,0x5a,0x6d,0xa9,0x29,0xa3,0x5a,0xb1,0x44, +0x7e,0xf5,0x3a,0x19,0x41,0xb5,0x5e,0x53,0xdb,0xff,0x8d,0xf0, +0x39,0x7c,0x43,0x06,0x58,0x92,0x0f,0x28,0xbe,0xf9,0xfd,0x18, +0xa4,0x82,0x41,0xe4,0x2a,0xee,0x71,0x03,0x29,0x1c,0x85,0x50, +0xfa,0x40,0x83,0xb1,0xc9,0x29,0xea,0xee,0x15,0x53,0x40,0x21, +0x4d,0xcb,0xca,0x3a,0xa7,0x65,0xe7,0x89,0xd3,0xb2,0x33,0x60, +0xb1,0x13,0x71,0x70,0x03,0xbb,0xde,0x8c,0x86,0xc9,0x55,0xa4, +0x61,0x92,0x62,0x53,0xd7,0x66,0xbe,0x0f,0xb1,0xfb,0x5d,0x4e, +0xe3,0x06,0x3b,0xbe,0x37,0xb1,0x7b,0x43,0x5f,0x14,0xf3,0x5c, +0x91,0xa5,0x7d,0x34,0xc6,0x8d,0x4c,0x75,0xd5,0x54,0x32,0xc5, +0x05,0x06,0xf6,0x21,0xf6,0x6e,0xc2,0x44,0xaa,0x02,0x67,0x74, +0x0e,0xbc,0xab,0x78,0xc2,0x55,0x3c,0xe1,0xda,0x42,0xaf,0x31, +0x98,0x5e,0x23,0x1b,0x06,0x4b,0x7f,0x29,0xa4,0x17,0x20,0x47, +0x7a,0x01,0x7a,0xb3,0x17,0x20,0x2d,0xfd,0xe3,0x0b,0x90,0x2b, +0xbd,0x00,0x36,0xe2,0x0b,0x80,0xb5,0xae,0x48,0x50,0xc0,0x28, +0xac,0xcd,0x41,0x8a,0x68,0x9e,0x0c,0xb9,0xf7,0x88,0x70,0x2f, +0x3c,0x1b,0x47,0x9c,0xd0,0xa6,0x72,0x37,0x4f,0x55,0xb6,0xfe, +0xac,0xfe,0x7b,0xd4,0x55,0xd0,0x82,0x76,0x94,0x93,0xf9,0x98, +0x4a,0xf7,0x9b,0xa1,0x9a,0xad,0xdc,0x88,0xf5,0x9e,0xde,0xfd, +0xd5,0xc0,0xdd,0x1b,0x4a,0x86,0x68,0x18,0x33,0xce,0xce,0x1f, +0xe4,0x1d,0x0e,0xe4,0x5b,0x8c,0xe7,0x8a,0xb3,0x67,0x49,0x3f, +0xca,0x3b,0x1c,0x49,0x35,0x0f,0x51,0x6f,0x39,0x32,0x86,0x98, +0x1c,0x38,0xf2,0x52,0x1b,0xd7,0x2c,0x0b,0xb3,0x05,0x1c,0x0d, +0x03,0x4c,0x96,0x13,0x23,0x1a,0x04,0x86,0x09,0x2a,0x77,0x1a, +0xb7,0x18,0xc8,0x15,0x0d,0x8c,0x17,0x6d,0x60,0x64,0xba,0xc8, +0x84,0x14,0x11,0xc3,0x66,0x9c,0xcb,0xf6,0x57,0xb6,0xa8,0xf7, +0x13,0xd7,0x0b,0x82,0xcf,0x4c,0xe2,0x41,0xbd,0x1b,0xf2,0x76, +0x84,0xa1,0xf0,0xa5,0xa6,0x71,0xf6,0xbd,0x6b,0x2d,0x0d,0xf9, +0x0d,0x2a,0x85,0xc8,0xa6,0x36,0x32,0x32,0x7d,0xcb,0x2e,0x7d, +0xd5,0x27,0xc6,0xa6,0x56,0xd3,0x26,0xb1,0xa9,0x45,0xd0,0x5f, +0xd3,0x7b,0x22,0x0c,0x01,0x35,0x63,0x53,0xbb,0xd5,0xdc,0x54, +0xd0,0x4c,0x35,0x6a,0xa8,0xc6,0x90,0x8f,0xfd,0xb0,0xe5,0x73, +0x31,0xb5,0x23,0x83,0x69,0x44,0x71,0xd0,0x8d,0xf6,0x31,0x44, +0x64,0x2e,0xbb,0x77,0x5d,0xe2,0x5f,0xa3,0xd0,0xd5,0x9a,0x95, +0x5b,0xb5,0x66,0x75,0xc7,0xe1,0x73,0x30,0x27,0x06,0x53,0x84, +0x90,0x6b,0x72,0x58,0xa5,0x0b,0xd4,0x57,0x5c,0xcc,0x62,0x15, +0x17,0x77,0xe8,0x2b,0x2e,0x56,0x97,0x2b,0xf8,0xc6,0xe2,0x13, +0x35,0xc7,0xb4,0xf3,0x8e,0xca,0x56,0x46,0x6c,0xdc,0x14,0x62, +0xe2,0xbb,0xba,0xa0,0x45,0x5b,0xce,0xb5,0x9c,0xce,0xaf,0xcf, +0x3b,0xb6,0x79,0xf5,0x7e,0x4d,0xf9,0x11,0x59,0xf9,0xe6,0x90, +0xd3,0x5e,0x26,0x43,0x02,0xdc,0x2d,0x7b,0x57,0xbb,0x3d,0xa6, +0x1e,0xf2,0x3a,0x19,0x2c,0xc7,0xb2,0xaf,0x58,0xe6,0x32,0x8d, +0xd7,0x5d,0xe3,0xc0,0x81,0x31,0x56,0x5e,0xfa,0x8e,0x2d,0x23, +0x7c,0x0f,0x1f,0x98,0xeb,0xbd,0x49,0x8c,0xb0,0xe9,0xff,0xb1, +0xad,0x73,0xa4,0xef,0x04,0x18,0x86,0x7b,0x98,0xb2,0x73,0xa6, +0x07,0xd1,0xfe,0xf8,0xe6,0x69,0xc8,0xed,0xc3,0x08,0x94,0x0e, +0x97,0xb0,0xc5,0x12,0xc4,0xdf,0xa2,0x58,0xdb,0xa0,0x04,0xb5, +0x29,0xd7,0x61,0xa3,0x03,0x28,0x65,0x06,0x36,0xbe,0x8d,0xf6, +0xc3,0x25,0x9e,0xf4,0x9b,0x00,0x23,0x28,0xa6,0x3e,0x7d,0x81, +0x95,0xac,0x3f,0x80,0x88,0x3f,0x04,0xf0,0xee,0xde,0xee,0x60, +0x0e,0x66,0x5e,0xad,0xad,0x9a,0x43,0x5c,0x5b,0x53,0x2b,0x31, +0x23,0xe6,0x8d,0xee,0x6e,0x8c,0x0f,0xd7,0x65,0xc0,0xf8,0x3e, +0x56,0xbf,0x8e,0x27,0x2e,0xc4,0xe5,0xe9,0x8f,0x6f,0x7f,0x1f, +0xf8,0x23,0xb8,0x68,0xa9,0x8e,0x2b,0xef,0xed,0xed,0x2d,0xea, +0x34,0x36,0x6a,0x32,0xb8,0xe6,0xa6,0x06,0x51,0xc7,0xc7,0x93, +0xe9,0x78,0xd8,0x4f,0xb5,0xb7,0x7f,0xe6,0x44,0x3c,0x88,0xfb, +0xb3,0xab,0xcf,0x9e,0xd9,0x5f,0x01,0x77,0x2d,0x99,0x0b,0x63, +0xf9,0x40,0x8f,0x59,0x60,0x05,0xd6,0x1e,0x55,0xd5,0x9a,0x03, +0x5c,0x4d,0x4b,0x25,0xb1,0x26,0x56,0x2d,0xb3,0x03,0x98,0x8e, +0x67,0xff,0x49,0xb6,0xb6,0x2f,0x26,0xd1,0xe0,0xc0,0xe3,0xf9, +0xad,0x57,0xaf,0xec,0x6e,0x81,0x07,0x8b,0x0d,0xa6,0xf2,0xbe, +0x1e,0xfe,0x34,0x36,0xe8,0xed,0x51,0x5b,0xaf,0x39,0xc8,0xd5, +0xb7,0xd4,0x92,0xde,0xc4,0xba,0xc5,0xdf,0x57,0xd2,0x99,0x62, +0xd7,0xff,0xc5,0x14,0x31,0xa0,0xb8,0xf6,0xe2,0xb9,0xdd,0x35, +0x16,0x4f,0xcc,0x83,0x09,0x7c,0x80,0x47,0x20,0xf4,0x81,0x3e, +0xee,0xd5,0x35,0xb4,0x9f,0xda,0xd6,0x6a,0xd2,0x87,0xf4,0x69, +0x09,0xf4,0x97,0x74,0x9c,0x07,0x0d,0x78,0xe1,0x2c,0xea,0x5c, +0xfa,0xf5,0x89,0xdd,0x25,0xa6,0x33,0x1f,0x86,0xf3,0xb3,0x3c, +0xe6,0x82,0x0d,0xd8,0x78,0x94,0x57,0x69,0xf6,0x73,0x55,0x2d, +0x15,0xc4,0x86,0xd8,0xb4,0xcc,0x99,0x25,0xe9,0x8c,0xeb,0x6d, +0xf5,0x62,0x9c,0xa8,0xf3,0xd3,0xdb,0x37,0x76,0x3f,0x49,0x71, +0x8b,0x3b,0xef,0xe5,0xe9,0x0d,0xbd,0xe9,0xbd,0x35,0x36,0x69, +0x32,0xb9,0xe6,0x96,0x06,0x7a,0x6f,0xbd,0x9b,0xd9,0x33,0xc0, +0xd8,0x0b,0x51,0x09,0x57,0xde,0xc7,0xd3,0x47,0x94,0x68,0x68, +0xa0,0x91,0x4d,0x4f,0x24,0x86,0x41,0x0e,0x7d,0x6d,0x9f,0xb3, +0x2f,0xea,0x4e,0xbf,0xe8,0x4b,0x3b,0x6c,0x15,0x81,0xc0,0x1a, +0x1b,0xf5,0x46,0xec,0x69,0x34,0xfb,0xfb,0xb0,0x1e,0xbd,0xfa, +0x53,0x21,0xfa,0x34,0xbc,0x88,0xe7,0x0b,0x2a,0xd4,0xff,0x26, +0xeb,0x31,0x18,0x9c,0xc4,0xa7,0xd1,0x1b,0xfa,0x30,0x71,0x78, +0x8a,0x3a,0x85,0xa5,0xfd,0x0c,0x4c,0xf8,0xc6,0x6f,0x2f,0xfa, +0xdf,0x90,0x1e,0x83,0x03,0xef,0xef,0x11,0x20,0x3e,0x86,0x9a, +0x5a,0xfa,0x18,0xea,0x3a,0x1f,0x83,0x9f,0xa4,0x33,0xd9,0xce, +0xee,0xc5,0x64,0x51,0xe7,0xfa,0xf3,0xe7,0xfd,0xaf,0x4b,0x3a, +0x13,0xe9,0xa3,0x9b,0x25,0xea,0x54,0x49,0x8f,0xae,0x4a,0xd4, +0x99,0x25,0x3e,0x3a,0xef,0x7e,0xd3,0x07,0x0e,0xf8,0x6d,0xba, +0x58,0x22,0xfc,0xf2,0xaf,0x4f,0xfb,0x5f,0x96,0x4a,0x84,0x8f, +0xe4,0x67,0xbb,0xcf,0x11,0x4b,0x84,0x57,0x54,0xb2,0x47,0xd7, +0x56,0x2e,0x96,0x08,0x9f,0x4b,0x1f,0x1d,0xdb,0xc4,0x49,0x16, +0xd2,0xab,0xfa,0xbb,0x63,0xe3,0x1a,0xd4,0x2a,0xf5,0xed,0xdf, +0x77,0x94,0x95,0xc5,0xcb,0xd1,0xc4,0x9f,0xf8,0xbd,0xbc,0xf3, +0xd7,0xdb,0xbe,0x77,0xc1,0x4f,0x4b,0x96,0x80,0x2f,0xef,0xe1, +0xea,0x41,0xb1,0x4c,0x3f,0x97,0x96,0x16,0xfa,0x38,0x5b,0xcf, +0x37,0x53,0xf8,0xd2,0xaf,0xdd,0x93,0x71,0x2a,0x43,0x80,0xad, +0x83,0x6d,0x9f,0x57,0x93,0x48,0x00,0x09,0x78,0x75,0xeb,0xf7, +0x57,0xb6,0x37,0x21,0x40,0x4b,0x96,0xb3,0xe1,0xe1,0xea,0x07, +0xf6,0x60,0xef,0x52,0x27,0x0e,0x8f,0xf3,0x8c,0xdd,0xc9,0x5e, +0x4f,0xe5,0x1c,0x68,0x3b,0xd1,0xa6,0xcf,0xab,0x09,0x24,0x90, +0x04,0xbe,0xfa,0xe1,0xf7,0xd7,0xb6,0xdf,0x43,0xa0,0x96,0xac, +0x00,0x67,0x1e,0x6b,0x7b,0x21,0xa9,0xd9,0xe6,0xd5,0x44,0xb1, +0xf9,0xfb,0xd7,0x1f,0x9b,0xa7,0x63,0x4d,0x83,0xd8,0x3a,0xca, +0xc2,0xfc,0xd5,0x28,0xb1,0xf5,0xee,0xdf,0x7f,0xd9,0xde,0x95, +0x5a,0xfd,0x79,0x77,0x57,0x77,0x18,0x00,0xf6,0x33,0xa5,0x77, +0xe5,0x42,0x8b,0x48,0x27,0xe5,0xe1,0x26,0x75,0x38,0xc9,0xd6, +0x86,0x11,0x4e,0x31,0x12,0xaa,0xd7,0x22,0x09,0x15,0xd3,0x99, +0x46,0x3b,0xfc,0x0a,0x61,0x55,0x16,0x22,0x2b,0x81,0x82,0x0f, +0xad,0x12,0x49,0xcb,0x88,0x7d,0x85,0x56,0xf4,0x52,0x5a,0x46, +0xa4,0x62,0x93,0x29,0x08,0xd9,0x8b,0x0e,0x70,0xf5,0x17,0x6a, +0xc4,0x6b,0x06,0xe8,0xbf,0xc4,0xf8,0xde,0xbd,0x5f,0x8d,0x13, +0xaf,0xf9,0xd3,0x9b,0x37,0xb6,0x3f,0x4a,0xc2,0xae,0xbc,0x97, +0xab,0x8f,0x78,0x1f,0x0d,0x4d,0xec,0xfd,0xbb,0xd0,0x20,0xea, +0x88,0xef,0x1f,0xc6,0x04,0x09,0x4a,0x98,0x89,0xbb,0xdf,0x43, +0x7c,0x47,0x03,0x5a,0x4b,0x7e,0x9d,0x28,0xf4,0xc6,0x3d,0x5a, +0x18,0x0d,0x54,0x70,0x47,0x57,0x54,0x84,0xde,0x91,0xc9,0xa4, +0x4d,0x18,0x0d,0x6d,0x64,0x12,0x85,0xaa,0xfe,0x14,0xb6,0xea, +0x54,0x0c,0xb6,0xba,0x89,0xb0,0xd5,0xa8,0x0b,0x85,0x8e,0x03, +0x49,0xb9,0xf0,0x05,0x94,0x33,0x60,0x18,0x85,0x84,0x2e,0x3a, +0x0a,0x09,0x12,0xc1,0x09,0x12,0x29,0x64,0x24,0x2a,0xdd,0x8f, +0x88,0x91,0x27,0xe2,0xcf,0xe5,0x88,0xa8,0x34,0x82,0x51,0x38, +0x9f,0xcb,0xdd,0x7b,0x3f,0x1e,0x8d,0xd4,0x2c,0xe1,0x46,0xb8, +0xf9,0x0e,0x1d,0xea,0x56,0x7f,0x5f,0x43,0x05,0x4d,0x99,0xa0, +0x29,0xe0,0x17,0x23,0xc9,0x57,0xe4,0xab,0x17,0xf7,0x08,0xa6, +0xc2,0x9b,0xf9,0x02,0xee,0x7e,0x5b,0xc3,0xa3,0x47,0xad,0x3e, +0x23,0x34,0x0b,0xb9,0xe1,0xee,0x62,0x65,0xb9,0x07,0x14,0xb3, +0x18,0x9c,0x40,0x7f,0x11,0x27,0xd2,0x22,0x8c,0x87,0x16,0xe2, +0x00,0x5d,0x30,0x97,0x8c,0x74,0xbd,0x68,0x28,0x0c,0xae,0x2c, +0x16,0x16,0x9a,0xe8,0x8d,0x3b,0xd1,0x1b,0x1f,0x4f,0x6f,0xdc, +0x01,0xba,0x8a,0xcd,0x2a,0xd6,0xec,0xc6,0x9a,0x4d,0x68,0xec, +0x65,0xc3,0x37,0x0a,0xdd,0xbd,0xb1,0xd6,0x10,0xc1,0x68,0x3e, +0x46,0x1e,0xb0,0x38,0xbb,0xa6,0x36,0x2f,0xbb,0x46,0x9b,0x2e, +0x17,0x63,0x49,0xde,0xb9,0x37,0x0c,0x7a,0x8d,0xbb,0xbf,0x41, +0xe2,0xa7,0xe6,0x25,0x0d,0x4a,0x26,0xea,0x36,0xe2,0xee,0x81, +0x88,0x3e,0x89,0x5f,0x10,0x94,0x62,0x63,0x3a,0x64,0xc7,0xc1, +0x23,0x04,0x45,0xa4,0x49,0x0e,0x55,0x34,0xf2,0xbc,0x84,0x3a, +0xc2,0xe8,0xc7,0x77,0xec,0xc3,0x09,0x14,0x6c,0xa6,0x59,0x26, +0xcd,0x34,0xcf,0x17,0x67,0x9a,0xb1,0xf5,0x06,0x64,0x07,0xa6, +0xd8,0x6a,0x12,0x5a,0x08,0xc3,0x47,0x0e,0xa4,0xef,0x42,0x17, +0x15,0xf9,0x44,0x4e,0x0c,0xa8,0x69,0x26,0xc3,0xc9,0x02,0xb5, +0xe2,0xfd,0x2c,0x72,0x91,0xff,0x41,0x37,0x17,0x6b,0x56,0x20, +0xa8,0x23,0xce,0xa2,0xa3,0xfd,0x30,0x10,0x61,0xab,0x89,0xf4, +0x3a,0x9b,0xc8,0x43,0xac,0x3d,0x85,0x14,0x87,0x6f,0x1f,0x78, +0xf0,0x97,0xfa,0x8a,0x08,0x0f,0x77,0x60,0xf3,0xcf,0xf4,0x4b, +0x3d,0xf0,0x49,0xf8,0xf0,0xb5,0x63,0x0c,0x61,0x97,0x33,0xc5, +0x83,0x92,0x9f,0x05,0xd7,0x2a,0x3e,0xb6,0x55,0x86,0xb1,0xd0, +0xe9,0x6a,0xc1,0xed,0x05,0x2b,0x1e,0x4d,0xc3,0x9e,0xb5,0xa8, +0x05,0xae,0x93,0xae,0xe4,0x41,0xab,0x60,0x23,0xf4,0xd6,0x65, +0x77,0x6e,0x87,0x81,0xac,0x54,0x8c,0xe7,0xd0,0x2f,0x5c,0x87, +0x04,0x33,0x12,0x87,0xf1,0x56,0xa4,0xc7,0x7f,0xf4,0x30,0x0c, +0xe3,0x38,0x1a,0x0d,0xea,0xb6,0x53,0xbc,0xb7,0xdc,0x84,0xbc, +0x13,0x66,0xf1,0x37,0xc8,0x25,0xc8,0x9b,0x49,0x16,0xcb,0xc9, +0x75,0xd8,0x45,0xbd,0xcc,0x25,0x38,0x37,0x93,0x84,0xb0,0x05, +0x9d,0xe5,0x1d,0x21,0x34,0x04,0x92,0x05,0x4b,0xb2,0x3a,0x61, +0x30,0x7f,0x8d,0x8e,0x9d,0x3c,0x37,0xb2,0x94,0xc9,0xae,0x12, +0x8f,0xce,0xd1,0xd0,0x4e,0x5f,0x2b,0x14,0x4e,0xb8,0xe9,0xfe, +0x69,0x83,0xe3,0x62,0xc9,0x50,0x58,0x06,0xa9,0xd8,0xf4,0x95, +0xb4,0x6a,0x14,0x2b,0xcc,0xe1,0x75,0x87,0x2f,0x0a,0x71,0xc4, +0x53,0x17,0x76,0x41,0x68,0x85,0x23,0x66,0xd4,0x44,0x2e,0x3c, +0xb6,0x39,0x5b,0x73,0x50,0x9e,0x7d,0xec,0x48,0x41,0xc1,0xc6, +0xc3,0x2b,0xb5,0x91,0xf2,0x95,0x1b,0xc3,0x16,0x6a,0xe1,0x5b, +0x83,0x85,0xc7,0xc2,0xb2,0x35,0xd8,0xa2,0x05,0x69,0x8d,0x87, +0x51,0xe0,0x31,0x65,0xc7,0x34,0x93,0xbd,0x9e,0x32,0x0a,0x5d, +0xa6,0xed,0x3f,0x45,0x7a,0x68,0x61,0xb6,0xa0,0xe0,0xef,0xeb, +0x76,0x90,0xb9,0xc2,0x8f,0xee,0xba,0xdd,0x23,0x84,0xed,0x60, +0x87,0xbb,0xbb,0x20,0xf9,0xbb,0x14,0x91,0xd2,0xa1,0x71,0x1a, +0x72,0xef,0x38,0xcf,0xe6,0x79,0x58,0xf5,0x24,0x1d,0xfd,0xe5, +0xac,0x4a,0x11,0xb9,0x3e,0x41,0xe8,0x81,0x0d,0x7f,0x41,0x0a, +0xb2,0x53,0xdc,0xfd,0xdb,0x20,0x0e,0x6d,0xdd,0xcf,0x6c,0x64, +0x2b,0x78,0x6c,0xe9,0x8c,0x74,0x3f,0xd1,0x41,0x6f,0x43,0xfa, +0xbd,0x96,0x93,0x1c,0xe8,0x27,0xfd,0xa5,0x90,0xba,0x3d,0x49, +0xbb,0x55,0xb0,0x74,0xe1,0xb7,0x74,0x60,0xd6,0xd0,0x81,0x59, +0x43,0x1c,0xcc,0x59,0x9a,0xb0,0x30,0x47,0x67,0xc4,0x46,0xe6, +0x14,0x36,0x32,0x8b,0x68,0xb3,0x23,0x69,0xa0,0x2f,0x5c,0x03, +0x6d,0xee,0xb8,0xcf,0xde,0x37,0xfa,0x1c,0xb3,0x61,0x3a,0x64, +0x53,0xb4,0xf4,0x01,0xfd,0x41,0x9b,0x6b,0x68,0x33,0xd3,0xae, +0x40,0xa3,0x3e,0xb4,0x32,0x09,0x23,0x26,0x31,0x85,0x49,0xf0, +0xc9,0x83,0xd7,0x8e,0x5b,0xea,0xf4,0xdd,0x16,0x65,0x2e,0xb6, +0xae,0x44,0xa4,0x24,0x9a,0x4f,0xee,0x17,0x39,0x61,0xd3,0xd4, +0xef,0xa2,0x95,0x47,0x6f,0x65,0xdc,0x7e,0xa5,0xbe,0x01,0x11, +0xee,0x64,0x04,0x47,0x7a,0x51,0xd9,0x21,0x6b,0xc7,0x2e,0x73, +0xba,0xb4,0x45,0x99,0x27,0xca,0x16,0x76,0xca,0x5e,0x61,0xb2, +0x07,0x45,0xd9,0x70,0x77,0x32,0x8c,0x23,0x9f,0x29,0x78,0xb8, +0x1b,0x95,0xea,0x49,0xae,0x65,0x26,0x06,0xc5,0xcf,0x8b,0x0d, +0x56,0x5d,0x89,0x93,0x1d,0xb9,0x9f,0x7e,0xf7,0x95,0xfa,0xb6, +0xd0,0xcd,0x9d,0xb4,0x45,0x70,0x6b,0x92,0x42,0x93,0x42,0x35, +0xc4,0x08,0x62,0xf9,0x19,0xd1,0xa3,0xb6,0x0e,0x49,0x34,0x54, +0xb0,0x34,0x22,0x4b,0x1b,0x7d,0x0e,0xd2,0xbf,0x69,0x44,0x0d, +0x52,0x1a,0x51,0x83,0x94,0x46,0xb4,0xd4,0x85,0x58,0xb0,0x34, +0xa2,0xd9,0xd3,0xc4,0x1c,0x24,0xeb,0x00,0x57,0x31,0x6f,0x29, +0x88,0xea,0xe0,0x9e,0x46,0x88,0x4a,0x72,0x0d,0xb7,0x88,0x9d, +0xfa,0xad,0x28,0x19,0xc0,0x81,0x62,0xf6,0x74,0xd0,0x5a,0x6a, +0x14,0xbd,0x03,0x5c,0xc0,0xca,0x56,0x53,0x17,0xc4,0x92,0x94, +0x3e,0x69,0xbd,0x4e,0x4c,0xe8,0xd5,0x2f,0xf2,0x8d,0x62,0x86, +0x13,0xd7,0x28,0xe9,0xb0,0x8d,0xf8,0x4c,0x67,0xd6,0x74,0x30, +0xa3,0x3a,0x3a,0x07,0x9d,0x2b,0x1f,0xd7,0x22,0x8b,0x09,0x74, +0xda,0x3a,0xc4,0x64,0x0b,0x99,0x4b,0x96,0x9f,0x87,0x52,0xf8, +0xe9,0xc3,0x7d,0x54,0xc2,0xc3,0x46,0x32,0x8b,0xac,0x38,0x0f, +0x65,0xf0,0x3d,0x69,0x90,0x7f,0xcf,0x84,0x67,0xf3,0x71,0xad, +0xef,0x87,0x20,0xea,0xc7,0x44,0xb9,0x2b,0x1d,0xf3,0x50,0x29, +0x93,0x73,0x97,0xe4,0x2e,0x89,0x72,0x53,0xcc,0xc5,0xe8,0xdd, +0xb2,0x33,0x86,0xc7,0xf8,0x0f,0xa4,0x48,0x4c,0x3e,0xcd,0x38, +0xdf,0x8a,0x55,0x64,0xaf,0x48,0x9a,0x97,0x21,0x4f,0x18,0xe3, +0xe2,0x07,0x1b,0xc7,0xe6,0x7b,0x29,0xc9,0x17,0x8c,0xf1,0xb8, +0x70,0xcf,0x6e,0x65,0x46,0x9a,0x7e,0x25,0xe0,0x4b,0x65,0x7e, +0x93,0xa8,0xc3,0xc8,0xd8,0x25,0xca,0xbc,0x84,0xd1,0xd4,0x5f, +0x49,0xac,0xca,0xbd,0x6a,0xee,0x16,0x55,0x17,0x1b,0x26,0xcb, +0x33,0x3b,0xa7,0xb3,0x79,0x65,0x41,0xb3,0x02,0xe3,0x32,0xc4, +0x2e,0x3c,0xce,0xc5,0x1f,0x36,0x8e,0xcf,0xc3,0x56,0x23,0xd1, +0xa1,0x9d,0x99,0xd8,0x32,0x0a,0x49,0x4d,0x07,0x3b,0x9b,0xf2, +0x59,0x53,0xe6,0xce,0x43,0x62,0x93,0x2e,0x8b,0xa3,0xd6,0xda, +0x95,0x27,0xdd,0x80,0x25,0xd7,0x4e,0x63,0xb9,0xd1,0x3b,0x22, +0xb1,0xd5,0x61,0xb4,0x74,0xe2,0x48,0x57,0x18,0xe0,0xa8,0x2a, +0x0b,0x90,0x91,0x08,0xd2,0xe5,0xe1,0x73,0x71,0xf1,0xf9,0x99, +0x2e,0x99,0xa7,0x10,0x6a,0xfe,0x2d,0xdd,0xf2,0x49,0x30,0x17, +0xb4,0x9d,0x2b,0x32,0x16,0x22,0x11,0x8a,0x02,0x9b,0xf5,0x42, +0xf4,0xef,0x3e,0xff,0xac,0x11,0x8b,0xb5,0x85,0x33,0xd9,0xd5, +0xfa,0xf5,0x1d,0xad,0xb8,0xbe,0x63,0x41,0x2c,0x18,0x8d,0x99, +0x02,0x56,0xa2,0x92,0x85,0xe7,0x2f,0x95,0xd5,0x60,0xcb,0x09, +0x8c,0x47,0xa5,0x0f,0x36,0xd8,0x86,0xf8,0xb0,0xfe,0x60,0xca, +0x36,0x48,0xad,0x25,0x6d,0xe4,0x87,0x8b,0x82,0xa5,0xe0,0xf4, +0x56,0x4e,0x86,0x10,0xcd,0x01,0xb6,0xb5,0xb9,0x12,0x3e,0x17, +0x28,0x4a,0x57,0x50,0x1b,0x6c,0xcd,0x98,0x23,0x08,0xc1,0x26, +0x1c,0x92,0x30,0x9d,0x01,0x9b,0x9b,0xee,0xf0,0x21,0x8e,0xac, +0xe2,0xf1,0xaa,0xab,0xd4,0x90,0x54,0xcb,0x8d,0xd9,0x1c,0x88, +0xb9,0x1a,0xd9,0x71,0xfa,0x39,0x10,0xde,0xd9,0x1a,0x06,0xfd, +0xce,0xac,0xb8,0xf8,0x69,0x7d,0x1f,0x35,0xf0,0x30,0xe8,0x4f, +0xc2,0x2a,0xac,0x58,0xea,0xff,0xea,0xb0,0x67,0x6f,0x4d,0xe8, +0xf8,0xa5,0x53,0x2f,0x84,0x2b,0xf3,0x6e,0x7e,0xf3,0x14,0x5b, +0x4e,0x45,0x13,0x37,0x4d,0xbd,0x24,0xbe,0x05,0x3f,0xbe,0x52, +0x5f,0x87,0x59,0xee,0x44,0xc5,0xfd,0xa6,0xe0,0xdd,0x2c,0xc0, +0xe8,0xad,0x2b,0x7c,0x47,0xe2,0xe4,0xa4,0x86,0x5c,0xe5,0x5d, +0x2d,0xc0,0xf0,0xad,0x1b,0x3d,0x8e,0x95,0xc3,0xfb,0x3a,0x1e, +0x8c,0xde,0x11,0x23,0x39,0xa9,0x36,0xe3,0xc1,0xf0,0x1d,0x83, +0x8b,0xfb,0x15,0xbc,0x7b,0x1f,0x30,0x7a,0xe5,0x0a,0xcd,0x54, +0x84,0xaa,0xb4,0xf2,0xae,0xec,0xd8,0x5d,0x3c,0x06,0x1d,0x53, +0xf9,0x83,0xa9,0x54,0x59,0xeb,0xff,0x82,0x83,0x0a,0x6c,0xf2, +0x05,0x82,0x23,0xd2,0xc7,0x61,0x05,0xef,0x61,0x0f,0x9f,0x3d, +0x75,0xa7,0x3e,0x86,0x5e,0xa0,0x9a,0x94,0xf0,0xee,0xec,0xd8, +0x43,0x3c,0x86,0x77,0xb5,0x3c,0x7c,0xf6,0x82,0x7c,0x46,0x2f, +0xd0,0x5f,0xff,0x17,0x1c,0x52,0xf0,0x21,0x09,0x41,0x89,0xb3, +0xb7,0x19,0x52,0x27,0xf1,0xeb,0x5b,0xdc,0xe3,0x20,0xb2,0x8c, +0x1a,0xb4,0x79,0xbc,0xe1,0x56,0x0a,0xb3,0xf1,0x76,0x50,0xb1, +0x34,0x9d,0x90,0x84,0x60,0x26,0x71,0xe8,0xfb,0x03,0xbf,0xbc, +0x54,0xdf,0x14,0x1c,0x5d,0x08,0x6c,0xe4,0x92,0x6c,0xa3,0x86, +0x87,0x39,0x88,0x4b,0xbe,0xa6,0xdb,0x40,0xf9,0xe1,0x15,0xdb, +0xc3,0xac,0x05,0xd3,0xab,0xba,0x04,0x6c,0xf2,0x9b,0x74,0xf0, +0xf9,0x55,0xdd,0x0a,0x27,0x40,0xa0,0x7d,0x88,0x2d,0x29,0x86, +0x3d,0xc0,0x43,0x57,0x3a,0x24,0xba,0x72,0x4e,0x10,0xc4,0x43, +0x10,0x0d,0x01,0x83,0xe4,0xa2,0x9c,0x46,0xa2,0xd4,0x06,0xed, +0x03,0x27,0x1a,0xc7,0x07,0x11,0xcb,0xa9,0x82,0x2d,0x79,0x26, +0x27,0x5a,0x92,0xc1,0x83,0x01,0x55,0x31,0xa0,0x2a,0xf3,0x98, +0x8a,0x0d,0x53,0x51,0x57,0x4e,0x99,0xcf,0x8d,0x0e,0xf5,0x75, +0x71,0xd5,0xcc,0xbc,0x1a,0x9b,0x16,0x9d,0x1c,0xb3,0x55,0x15, +0xcb,0x72,0x70,0x33,0x73,0x53,0x0b,0xcb,0xd5,0x15,0x93,0xe7, +0x73,0xb6,0x8b,0x7d,0xfa,0x0f,0xd4,0x54,0xcf,0xa9,0xab,0xcb, +0x2b,0x3a,0x59,0xaa,0x52,0x58,0x8b,0xb9,0x34,0xb8,0xa7,0x05, +0x62,0xaf,0x3e,0x99,0xb9,0x91,0x3e,0x00,0x96,0x46,0x63,0xc9, +0xd2,0x68,0x3a,0x6d,0x86,0x94,0x46,0xf3,0xbe,0x27,0x85,0xc0, +0x37,0x62,0x65,0x99,0xdf,0x67,0x3c,0xfd,0x53,0x5d,0x2d,0xfc, +0x3a,0x43,0x77,0x84,0x4b,0xea,0x1b,0x3d,0x36,0xdc,0xc9,0x70, +0xd0,0x30,0x9e,0x8c,0x73,0x84,0x71,0x60,0x4f,0xc6,0x39,0xd0, +0x8f,0x45,0x1f,0x4c,0xc5,0x3c,0x15,0x1f,0xfa,0xea,0x7f,0xb4, +0x13,0x01,0xd2,0xfb,0x7f,0xab,0xf3,0xfd,0xf7,0xa5,0xef,0x3f, +0xb6,0x76,0x13,0x05,0xc3,0xf9,0xb8,0x26,0x66,0x23,0x26,0x90, +0xe5,0xad,0x54,0xa6,0x98,0xda,0x92,0x22,0x26,0x33,0x86,0xac, +0x68,0xa5,0x36,0xa2,0x80,0xda,0x08,0x26,0x16,0xc4,0xf2,0x5e, +0xda,0xa8,0xc0,0x25,0x96,0xf7,0xd2,0x46,0x5b,0xce,0xb3,0x16, +0xfa,0x2c,0x19,0x75,0xb8,0xac,0x93,0x76,0x1c,0x89,0xb4,0xe3, +0x1f,0xa9,0x3f,0xf4,0x29,0x8b,0xcb,0x26,0x8f,0x63,0xb4,0xe3, +0x2a,0xc5,0x74,0x61,0x3c,0xdb,0x73,0x3c,0x9c,0xf7,0x19,0xde, +0xf7,0x9e,0x17,0x64,0x48,0x7b,0x8e,0x0f,0xf1,0x5e,0xf4,0xd0, +0x47,0x3c,0x84,0xcb,0x95,0x7c,0xdf,0x07,0x2f,0xe5,0x24,0x6d, +0xb8,0xf8,0x49,0x55,0x82,0x99,0x8a,0x27,0xef,0x3d,0xa0,0xff, +0x13,0x4f,0xc8,0x91,0x54,0xce,0xf1,0x9e,0xf4,0xd0,0x5b,0x3c, +0x84,0xef,0xaa,0xf8,0xfe,0xcf,0x5e,0x50,0x15,0x7b,0xf1,0x53, +0x81,0x2d,0x8e,0x20,0x1a,0xda,0xdb,0xf2,0xff,0x4d,0xf7,0xa2, +0x81,0x49,0x3b,0x0d,0x4c,0xe6,0x61,0xab,0xc1,0x08,0x46,0x7a, +0xf0,0xef,0x0d,0x50,0x28,0x79,0x33,0x49,0xe8,0xfb,0x61,0xa4, +0x54,0x35,0xf8,0x0b,0x98,0x82,0x4d,0x9a,0x25,0x86,0xa5,0x2f, +0x60,0x1a,0x36,0x69,0x41,0x8a,0x23,0xb7,0xf7,0xdf,0x7f,0xab, +0xab,0x41,0xe6,0x91,0xc3,0xa4,0xf9,0xeb,0x53,0x3f,0x67,0x3c, +0x7a,0x8b,0x0d,0x56,0x20,0x0b,0x1a,0xa9,0x8c,0xa5,0x91,0xca, +0x0c,0xb2,0x41,0x71,0xe4,0xe7,0x03,0xf7,0xff,0x62,0x15,0x83, +0xfe,0x40,0x66,0x91,0x43,0x37,0x8e,0x33,0x84,0x7c,0xf9,0xc9, +0x3b,0x99,0xbf,0xfc,0xc9,0x04,0xcd,0xc2,0xc4,0x90,0x46,0x9c, +0xe2,0xc6,0x26,0x89,0xa8,0x63,0xd5,0x70,0x56,0xdd,0xd1,0x64, +0x1c,0x1a,0xa1,0xff,0x1c,0x43,0x3f,0x6b,0xca,0xc0,0x96,0xf4, +0x88,0x4a,0x8b,0x62,0x9c,0xef,0x11,0xb1,0xdb,0x76,0x1d,0x2d, +0x48,0x2f,0x66,0xac,0x73,0x03,0x9a,0x84,0xcf,0xbd,0xc8,0x10, +0xf9,0x0e,0xbb,0xb9,0x1e,0xac,0xa6,0x73,0x75,0xb0,0xf2,0x4a, +0x73,0x65,0xf9,0x99,0x32,0x45,0x4d,0x39,0xf4,0x13,0x55,0xbe, +0x0e,0x8f,0x56,0x45,0xc5,0x26,0x4a,0x2a,0x55,0xd8,0x7a,0x19, +0x9a,0xe3,0x46,0x1d,0xfb,0x27,0x35,0x41,0x54,0xb4,0xaa,0x32, +0xa7,0x44,0x21,0xee,0xe9,0x13,0x45,0xb7,0x44,0x8b,0x4b,0x18, +0x47,0xf3,0xf6,0x17,0xed,0xaa,0x50,0x91,0xc1,0x6d,0x82,0xa9, +0x48,0xde,0x3c,0x70,0x16,0xbb,0x3a,0x53,0xb9,0xf6,0x51,0x85, +0xde,0x10,0xb6,0x2c,0x42,0x25,0xb8,0xc7,0x2a,0x94,0x64,0x13, +0xe4,0x0e,0x6a,0xe8,0x5a,0x4d,0xaf,0xd9,0x52,0x59,0x91,0x53, +0xaa,0x38,0x84,0xfa,0xc2,0x43,0xac,0xf9,0x0a,0x89,0x95,0xca, +0xaf,0x7e,0x24,0x16,0x22,0xf6,0xad,0x1d,0x72,0x8e,0xfc,0x0c, +0xcb,0xf9,0x55,0x72,0xeb,0xa0,0x9c,0x8a,0xb2,0xb2,0xb3,0x7f, +0x68,0xb3,0xe4,0x6f,0x4b,0x97,0x05,0xcd,0x09,0x5e,0x6e,0xa5, +0x35,0xf6,0x11,0x15,0x1a,0x3a,0x79,0x92,0x88,0x9d,0x5e,0x61, +0x91,0xa8,0x70,0xa6,0x0c,0xf7,0x58,0x86,0x82,0x82,0x57,0x50, +0x49,0xac,0x7d,0xc9,0xea,0x9a,0x2a,0x38,0xc8,0x86,0x31,0xd8, +0xe4,0x28,0x8d,0x5c,0x86,0x45,0xed,0x8f,0x62,0x69,0xea,0x51, +0x31,0x89,0x5f,0xcb,0x8e,0x55,0xed,0xab,0x69,0x53,0xd7,0x39, +0x04,0xb0,0xdc,0x7f,0x47,0xb0,0x04,0x33,0x4d,0xfd,0x9c,0x9b, +0xd7,0x6a,0x1a,0xce,0x34,0xa9,0x52,0x3b,0x73,0xff,0x93,0x87, +0x84,0x8e,0x5b,0x3a,0x4d,0xb2,0x8d,0x4f,0x98,0x6d,0x9c,0xf4, +0x1f,0xdb,0x78,0x4d,0xb2,0x8d,0xd4,0x34,0x9a,0x83,0xe1,0x9f, +0xae,0x70,0x45,0xb2,0x73,0xd7,0x78,0x57,0x76,0xec,0x26,0x1e, +0x53,0xd3,0x88,0x2d,0xb6,0xa3,0xd7,0xd4,0x18,0xf6,0x06,0xa3, +0xd7,0xae,0x34,0x62,0x17,0x85,0xda,0x78,0x37,0x76,0xec,0x26, +0x1e,0x53,0x63,0x88,0x8d,0xef,0xa2,0x57,0x0a,0xdc,0x63,0x37, +0x82,0x01,0x57,0x75,0xbb,0x9d,0xa0,0x0f,0xab,0x07,0x91,0xc6, +0x63,0x63,0x8e,0x1a,0x1f,0x0f,0x32,0x72,0x10,0x1d,0x77,0x64, +0x24,0x0c,0x12,0xb7,0x78,0xd8,0xb0,0xc6,0x03,0x7c,0x84,0x73, +0xbf,0x18,0x0b,0x93,0x8d,0xe4,0x89,0x50,0x84,0x84,0x60,0x98, +0x45,0x25,0x3d,0xc9,0xc8,0xa1,0x30,0xd2,0x8b,0x4a,0xf6,0xbd, +0xaa,0xdb,0xea,0x04,0xd6,0x4c,0x72,0x2f,0x93,0x8c,0x63,0x92, +0xb7,0x99,0xa4,0x8f,0x28,0x79,0x43,0x97,0x8a,0x4d,0xa2,0x99, +0x65,0x53,0xbe,0x68,0x78,0xfe,0xac,0x7f,0x3d,0xfd,0x0d,0x55, +0x76,0xbe,0xf6,0x76,0xcf,0x7d,0x88,0x4a,0x4b,0x87,0x47,0x7f, +0xbe,0xa9,0xed,0xec,0xd3,0x27,0xed,0xcb,0xbc,0x34,0x71,0xd8, +0x3c,0x5b,0x92,0x6c,0x7e,0xf9,0xb2,0x7f,0xb3,0x28,0xe9,0xd9, +0xb7,0xef,0x73,0x4f,0x49,0x72,0x28,0xdf,0xdc,0x9e,0xfb,0xe4, +0x49,0xfb,0x12,0x4f,0x4d,0x34,0xe7,0xe9,0xba,0x64,0xd0,0x20, +0xd7,0xdc,0x66,0x0d,0xe9,0xc2,0x34,0x7e,0x3b,0xff,0xe6,0x4d, +0xbf,0x76,0xaa,0xa1,0xee,0xe7,0xda,0xbb,0xf7,0x6f,0x2e,0x44, +0xad,0xa5,0xe6,0x66,0x3c,0xdf,0x7e,0x3e,0xff,0xd7,0x27,0xe7, +0x17,0xb9,0x6a,0x22,0x39,0x57,0x97,0x45,0x83,0x06,0xb8,0xe4, +0xb7,0x6b,0x08,0x7d,0xfd,0xcc,0x4e,0xd1,0x27,0x40,0x26,0xf2, +0xe7,0xcf,0x17,0x3e,0x7b,0x76,0x21,0xc4,0x85,0xb6,0xbb,0xcc, +0x0c,0xb1,0xb7,0x77,0x29,0x3c,0xaf,0xd1,0xad,0x52,0xbc,0xff, +0x8c,0x5c,0xe7,0x9f,0xbf,0x21,0xbf,0x43,0x3f,0x04,0xbf,0xbf, +0xb1,0x83,0x50,0x4b,0xd4,0xf1,0x09,0x39,0xca,0xeb,0xc6,0x81, +0x81,0x30,0x4e,0xfe,0x8a,0x3a,0xf7,0xcd,0x76,0xb0,0x59,0x2e, +0x49,0xbe,0x78,0x43,0x5e,0x4f,0x62,0x0d,0xc4,0x00,0x9b,0x3f, +0x46,0xff,0x8a,0xf4,0x67,0x22,0xf6,0xfe,0x1e,0x60,0x39,0x08, +0x9b,0xa6,0x21,0x62,0x19,0xc4,0x41,0x97,0xd9,0x2e,0x60,0xd6, +0x57,0xa3,0x18,0x3a,0xbb,0xf0,0xba,0x36,0x83,0xbb,0x5e,0x59, +0xf8,0xe8,0x51,0x65,0xc8,0x64,0x4d,0x04,0x37,0x79,0x76,0xc8, +0x50,0x0d,0x3c,0x37,0xe8,0xeb,0x55,0x71,0x5b,0x7b,0x8c,0xbb, +0xdd,0x54,0xf1,0xf2,0x65,0xd3,0x9c,0xb1,0x9a,0x8d,0xdc,0x58, +0xaf,0x39,0x54,0xc3,0x0b,0x64,0x76,0xa4,0xab,0x07,0xdc,0x23, +0xb3,0x6d,0xb0,0x71,0x24,0xa2,0xd0,0xa5,0xfb,0x46,0xa4,0x48, +0xd8,0x45,0x03,0xa1,0x1c,0xc6,0x7c,0x18,0xd9,0x22,0x14,0x78, +0x90,0x18,0x79,0xa2,0x5b,0x88,0x17,0x6c,0x1a,0x9a,0xef,0xab, +0x24,0xa8,0xea,0x56,0x51,0x79,0xc1,0xee,0x5d,0xca,0x03,0xa9, +0x87,0x93,0x0e,0xc6,0x93,0xdd,0xd0,0x53,0xa9,0xc0,0x9f,0xf7, +0x90,0x36,0x25,0x6d,0x0b,0x4a,0x34,0x3c,0x78,0x21,0xfd,0xd6, +0x6d,0xf5,0x45,0x61,0xb4,0x1b,0x36,0xde,0x8a,0x5c,0x65,0x3f, +0x29,0x3a,0x5e,0x23,0xb8,0x41,0xa1,0x79,0xe7,0xd6,0x99,0xeb, +0x93,0x84,0x1e,0x6c,0xeb,0x4c,0x15,0xb3,0x00,0xf2,0x48,0xf6, +0x8e,0xb2,0x3c,0x99,0x6d,0xbb,0x8f,0xe6,0xa6,0x17,0xb2,0xbd, +0x88,0x03,0x1a,0x84,0xcf,0x7d,0xc8,0x50,0xf9,0xf6,0x21,0xc1, +0xde,0xa0,0xb2,0xaa,0x9c,0xa7,0xbc,0x52,0x5f,0x59,0x7a,0xa6, +0x58,0x51,0x5d,0x46,0x7f,0x37,0x49,0x43,0xaa,0xaf,0x40,0x35, +0xc4,0x92,0x1e,0x43,0x9a,0x04,0x95,0x17,0x19,0x2e,0x4f,0x1c, +0x3e,0xd7,0x07,0xbe,0xea,0x53,0x45,0x4d,0x46,0x7d,0x55,0x69, +0x4e,0x91,0xa2,0x9a,0xd9,0x81,0x6e,0xac,0xd0,0x6e,0x64,0x4c, +0xe2,0x6e,0x51,0xbc,0x4c,0x45,0x86,0x8a,0x46,0x60,0xa4,0x3c, +0x61,0xe8,0x2c,0x4f,0xe8,0x65,0x41,0x5f,0xf1,0x6b,0x4d,0xd5, +0xcc,0x06,0x88,0xe2,0xf2,0xc8,0x7d,0xe2,0x2d,0x89,0x85,0xe6, +0xa5,0x92,0x22,0x56,0x97,0x90,0x37,0xf4,0xfa,0x7f,0x6c,0xbd, +0x77,0x5c,0x14,0xd7,0x17,0x37,0xac,0x91,0x99,0xc1,0x3b,0x06, +0x24,0x3a,0x0a,0xcb,0xb0,0x4b,0x13,0x15,0xc1,0xae,0xa8,0xa8, +0x74,0x6c,0x74,0xc1,0x8e,0xd8,0x63,0xef,0x05,0x0b,0x02,0xd2, +0x14,0x15,0x51,0x40,0x34,0x96,0x68,0xec,0xbd,0xa1,0x82,0x34, +0x0b,0xd5,0x2e,0xf6,0xae,0xd1,0xc4,0x1e,0x5b,0x92,0x33,0xe4, +0x8c,0x3c,0xef,0xbd,0xb3,0xe8,0xcf,0xe7,0xf3,0x3e,0x7f,0x28, +0x73,0xcf,0xfd,0xee,0xdd,0xd9,0xdd,0xb9,0xa7,0xdd,0x53,0x9c, +0x29,0xf0,0xea,0xe9,0xfc,0xe3,0xfb,0x72,0x8c,0x40,0x6e,0x71, +0x56,0xcc,0x37,0xfe,0x42,0x81,0x69,0xac,0x8c,0x63,0x99,0x6a, +0x13,0xc2,0xca,0x38,0x76,0x1d,0x3a,0x00,0x9b,0xb6,0x60,0x4b, +0xd3,0x3b,0xd9,0x5f,0x7b,0x27,0x66,0x8b,0x8d,0x3d,0x2e,0xb4, +0xa5,0xe9,0xcd,0xa4,0xd1,0x9b,0xe9,0xa4,0xdd,0x0c,0xbd,0xf7, +0x8e,0xc3,0x42,0xb1,0x89,0x83,0x76,0x33,0xf9,0x79,0x46,0x86, +0xd4,0x0a,0xcc,0xe9,0x7b,0xb0,0x57,0x68,0xef,0x71,0x38,0xeb, +0x28,0xe3,0x61,0x1d,0x4a,0x54,0xab,0x30,0xe8,0xc4,0xa7,0xb4, +0x61,0x1c,0xd2,0x8e,0xdd,0x55,0x49,0x7e,0x2e,0xe5,0x50,0x32, +0x11,0x49,0xcc,0x2a,0xd6,0xb9,0x21,0x3e,0x25,0x6d,0xf3,0xa1, +0xec,0xa3,0x72,0x33,0x81,0xb4,0x1d,0x16,0x4c,0x41,0x85,0x0c, +0x54,0x90,0xb7,0xf7,0x84,0xa8,0x94,0x0a,0x6a,0xdb,0x09,0xb2, +0xc9,0x5c,0x82,0x79,0x52,0xd9,0xcc,0xdc,0x21,0xdb,0xf4,0xe9, +0xf2,0x4f,0x84,0xa4,0x08,0x83,0x67,0xce,0x8c,0x0a,0xd6,0xb9, +0xde,0x0e,0xfc,0xfc,0xf9,0x76,0xe5,0x2b,0xbd,0xa8,0xde,0x25, +0x98,0x26,0xcb,0xac,0xff,0xfb,0x0e,0x7a,0x05,0x6b,0x65,0x99, +0xfe,0x6c,0xd5,0xaf,0xe1,0xa2,0x74,0x81,0xee,0x66,0x59,0xee, +0xae,0x8d,0x2a,0xa4,0xf3,0xd8,0x92,0x8e,0x7a,0x68,0xa3,0x7c, +0xe9,0x22,0x1d,0x6d,0x79,0x9d,0xf5,0x06,0x04,0xdd,0x0d,0xd9, +0xa1,0x3f,0x09,0x92,0x2d,0x3e,0x91,0x48,0x2b,0xf5,0x79,0x5f, +0x98,0x2d,0x4a,0xce,0x54,0x35,0x6c,0x2e,0xa9,0xff,0x51,0xbb, +0x91,0x47,0x6e,0x84,0xd4,0x73,0xcd,0x2c,0xd6,0xf4,0x39,0x98, +0x9f,0x05,0x2d,0x7a,0x26,0xee,0x46,0x6a,0x61,0x25,0x10,0x09, +0xa3,0x11,0xb8,0x37,0x3c,0xf4,0x83,0x3c,0x6e,0x25,0xfd,0x83, +0x79,0xdc,0x07,0x1e,0x17,0xc0,0x7f,0xb2,0x9d,0x9e,0x79,0xda, +0xfa,0xe3,0x3a,0xee,0x39,0x0f,0xcd,0x60,0x38,0x97,0xc6,0x83, +0x0e,0x87,0x73,0xaf,0xa8,0xe1,0x0c,0x9b,0xa1,0x2f,0xa4,0x71, +0xed,0x79,0x94,0x31,0x9c,0x5b,0xca,0x9a,0x2e,0x85,0x73,0xae, +0xac,0x74,0x6c,0x30,0x51,0xde,0xc8,0x36,0x2d,0x88,0xf4,0x3e, +0xf7,0x0a,0x98,0xc3,0x8f,0xc3,0xaf,0x36,0x6f,0x3e,0xbc,0x17, +0x9a,0xe3,0x8f,0xb9,0xfe,0xef,0x0d,0x45,0x26,0x61,0x73,0x8f, +0x5f,0x34,0x5c,0x14,0x2e,0x6e,0x39,0x5e,0x52,0xb2,0x65,0x64, +0x5f,0x7d,0x5f,0xa1,0xef,0xdc,0x91,0x61,0x7a,0x33,0x1d,0x0c, +0x3a,0xaf,0x8e,0x0a,0x80,0x08,0x7e,0x59,0xb3,0xfe,0xfd,0xb0, +0x23,0x9a,0x9c,0x89,0xb4,0x7c,0x7c,0xbe,0x2c,0xff,0x70,0x81, +0x69,0x0a,0xce,0x92,0x3c,0x70,0xb8,0xfa,0x88,0x6c,0x24,0xed, +0xf1,0x91,0xac,0x1f,0x43,0xa8,0x12,0x9b,0xda,0x85,0x59,0x78, +0x91,0xd8,0x85,0xd5,0x72,0x63,0x5a,0x6e,0x4d,0x0c,0x09,0x66, +0x55,0xa8,0x35,0x8d,0x77,0x3f,0x6f,0xa6,0x3e,0x97,0xcd,0x24, +0x22,0x2d,0x39,0xc3,0xc5,0x4f,0x08,0x4f,0x64,0xbd,0x5f,0xbb, +0x40,0xeb,0x12,0x9c,0x83,0x7b,0x95,0x89,0x04,0x3a,0x42,0xbb, +0x12,0x9c,0x8f,0x3b,0x20,0x81,0xc7,0x2b,0xa2,0x72,0x80,0x40, +0xaf,0x1a,0x3d,0xc1,0x02,0x65,0x27,0x53,0x64,0xba,0x51,0x5b, +0xb2,0x5d,0x29,0x2e,0xc0,0xdc,0x2f,0x7e,0xac,0x93,0xc2,0x72, +0x02,0xf4,0x11,0x39,0xcb,0xbe,0x0e,0xd9,0x3c,0x95,0x80,0x13, +0xfc,0x74,0x16,0x07,0x60,0x26,0xeb,0x73,0x46,0x35,0x51,0xca, +0xad,0x09,0xe5,0xd6,0x65,0x46,0xed,0xb7,0xc2,0x38,0x0e,0xa1, +0x63,0xc6,0xe2,0xa9,0x26,0x4a,0x3e,0x03,0xa1,0x33,0x0e,0xb5, +0x57,0x94,0x65,0xb7,0xc3,0x1f,0x9f,0x85,0xe2,0x7e,0xa3,0xea, +0x7a,0xf0,0xfb,0x31,0xfe,0x5b,0x28,0xe1,0x8f,0x2f,0x58,0x5a, +0x6f,0x41,0x9b,0xda,0x2b,0xca,0x2a,0xc9,0xfd,0xd3,0x2f,0x5e, +0xb8,0x9f,0x66,0xa9,0xb3,0xdd,0x07,0xb4,0x69,0x73,0x6f,0x00, +0x88,0x06,0x6c,0x04,0xce,0xd2,0xb9,0x82,0x3d,0x77,0xef,0x14, +0x4c,0xe9,0xaf,0x8f,0x17,0xfa,0x0f,0x99,0xd2,0xb3,0xc7,0x90, +0x3d,0xe7,0xf4,0x4f,0x44,0x89,0xaa,0xb7,0x71,0x04,0xeb,0x7c, +0x3b,0x68,0x11,0xfd,0x90,0x97,0xcd,0x15,0x6a,0x97,0xc3,0x04, +0x49,0xae,0xbf,0x95,0xb5,0x0b,0x09,0xc1,0x69,0x2d,0xb4,0x43, +0x9a,0x25,0x50,0xf7,0xca,0x55,0x68,0xaf,0x13,0x59,0xb1,0x54, +0x63,0xfb,0xd9,0x83,0x99,0x87,0x73,0xb5,0x2e,0x9d,0x6e,0x23, +0x58,0x99,0x54,0x7d,0xde,0x90,0x6b,0xf9,0x05,0x47,0xf7,0x1e, +0xb5,0xca,0x4c,0xd7,0xf2,0xa5,0x5d,0xb0,0x91,0xe5,0xf5,0x22, +0x6a,0x4e,0x4d,0x25,0xd0,0xb3,0x09,0xbe,0xa8,0xad,0xf8,0xa8, +0x05,0x57,0x26,0x47,0xa5,0x98,0xae,0x2b,0x5d,0x7b,0xf5,0x86, +0xae,0x42,0x0b,0xae,0x5c,0x24,0xa4,0x7a,0xc6,0x07,0x2c,0x8a, +0x30,0xfd,0xda,0x93,0xa0,0xb6,0xe0,0xe3,0x9a,0x7e,0x37,0x48, +0x62,0x39,0xa7,0x79,0xd7,0x61,0x91,0xda,0x4a,0x52,0x76,0x9d, +0x57,0x57,0xc2,0x70,0x0f,0x9c,0xc8,0x7c,0x18,0x5a,0x0d,0x2c, +0xb5,0x8a,0x18,0xeb,0x5f,0x45,0xab,0x0d,0x24,0x65,0x4f,0xa5, +0xba,0x0a,0xfc,0x3d,0x30,0x94,0xcd,0x57,0x41,0x1b,0xfe,0xbf, +0xfb,0x24,0x1e,0xbd,0x65,0x93,0x29,0x24,0x09,0xd7,0xe1,0x10, +0xe6,0xb3,0x6f,0xaf,0x78,0x6b,0x4e,0x15,0x16,0x97,0xe9,0x41, +0x85,0xa4,0xb2,0x06,0x27,0xdf,0x84,0xbd,0xea,0x03,0x56,0xde, +0x0f,0x4c,0x65,0xce,0x8e,0xac,0x4b,0x2c,0xb3,0x9c,0x83,0xae, +0x38,0x37,0x1e,0x27,0x6d,0x23,0x6e,0x38,0x45,0x52,0xd2,0x71, +0xf2,0x2d,0x0a,0xba,0xcf,0x3c,0xfa,0xd9,0xe4,0x0f,0x5c,0x2e, +0x9b,0x45,0x10,0x09,0x2e,0xb7,0xe5,0xe7,0xa4,0xce,0x5d,0x3a, +0x4f,0x8f,0x1f,0xe6,0xae,0xed,0x07,0x77,0xb6,0x8f,0xc3,0x7a, +0x2d,0x7b,0xe0,0x60,0xac,0x6b,0x75,0xb2,0x3f,0xab,0x91,0xd5, +0xee,0xdd,0xbf,0x30,0x41,0x07,0xad,0x55,0x4b,0xc1,0x4c,0x72, +0xf5,0xeb,0x83,0xf6,0xe8,0x70,0xad,0xcf,0xab,0x57,0xd7,0x2e, +0x03,0x35,0xef,0xfc,0x2e,0xb9,0x1a,0xde,0x61,0xa2,0xd4,0x65, +0xd4,0xa8,0xb0,0xb0,0x91,0xc7,0x1f,0xea,0xcf,0x0b,0x0f,0x8f, +0x9f,0x28,0x29,0xc9,0x19,0xd1,0x55,0x6f,0xe6,0x99,0xd4,0xd1, +0x1a,0x56,0xc8,0xb2,0x40,0xe8,0x0f,0xb2,0x8a,0xe0,0x47,0xb5, +0x9c,0x00,0x57,0x73,0x84,0xca,0xd2,0x77,0x5a,0xae,0xf0,0xc4, +0xd1,0xac,0x66,0xd2,0x5f,0xc6,0x9a,0x49,0xfb,0xb5,0x5c,0x61, +0x51,0x36,0x59,0x46,0xca,0xab,0x09,0x49,0xfc,0x08,0xe3,0x44, +0xad,0xf8,0x38,0x6f,0x2c,0x3e,0xce,0xcb,0xf5,0x67,0x11,0x91, +0xb7,0x23,0xfb,0xf9,0x0f,0xb7,0x32,0xd6,0x95,0x1b,0xe2,0xe9, +0x8f,0xf3,0x0b,0x81,0x14,0xd9,0xb0,0x8b,0xe5,0x83,0x9e,0xe6, +0x96,0x8c,0x8f,0x48,0x08,0xb2,0x8e,0x83,0x76,0xc6,0x6d,0xf0, +0xdb,0x55,0xfe,0x66,0x45,0x46,0xf6,0x61,0x03,0xec,0xc8,0x91, +0xd0,0x1d,0x5c,0xa0,0x3d,0xdb,0x11,0x9b,0xe9,0x43,0x7c,0x94, +0xe2,0xcf,0xb2,0x96,0xc9,0x89,0x41,0xd6,0xf1,0x74,0x2b,0x68, +0x2d,0x93,0x73,0x65,0xd3,0x83,0x4c,0x99,0x6f,0xcf,0x5a,0x26, +0xe7,0x7c,0x87,0x62,0x9b,0x8b,0xa1,0xda,0x94,0xe1,0x5c,0xcc, +0xfd,0xaf,0x80,0x81,0x3a,0x94,0xe1,0x42,0x0a,0x4a,0xe4,0xb7, +0xb3,0xee,0xcb,0xea,0x05,0xe6,0x29,0x70,0x2d,0xa7,0xab,0x5c, +0xd4,0x1a,0x2f,0x87,0x40,0xbb,0x72,0xba,0x4a,0x39,0x6b,0xbc, +0x4c,0x01,0xb2,0x5d,0x1d,0x82,0xa3,0xd0,0x5f,0x99,0x5c,0xdb, +0xe6,0xc5,0x55,0xd2,0xb6,0xa4,0xaf,0xf1,0x9d,0x4f,0x7d,0x09, +0x25,0xb0,0x43,0xdb,0x96,0x9e,0xc6,0x8e,0xcd,0x27,0x8c,0x2f, +0xc4,0x8f,0xd0,0xdf,0x0b,0xd3,0xbe,0x6b,0x4b,0xf7,0xdd,0x6f, +0x4f,0xa7,0x3f,0x41,0xa0,0x37,0xa6,0x18,0xa7,0xcf,0xd1,0xe9, +0x0e,0xc3,0x18,0xf5,0x33,0x44,0x79,0xe1,0x06,0xa5,0x07,0x55, +0x92,0x70,0x17,0xa5,0x9a,0x7d,0x7d,0x24,0x46,0x10,0xed,0x79, +0x60,0xbb,0xed,0x6e,0xc1,0xf3,0xe7,0x3d,0x0a,0xe8,0x6e,0x23, +0x3d,0x86,0xb4,0x6f,0x7f,0x77,0x08,0x10,0x6a,0xe1,0x81,0x83, +0x74,0x3a,0x7f,0xd7,0xdd,0xbb,0xf9,0xd3,0x06,0xd0,0xdd,0x36, +0x60,0xe8,0xb4,0x1e,0x3d,0x86,0xee,0x3a,0xad,0xd7,0x76,0x67, +0xd1,0x8b,0x3f,0xdc,0x8b,0xb4,0xdd,0x39,0xa8,0x5d,0x9b,0x7b, +0x83,0x8c,0xbb,0xb3,0xb9,0x74,0x26,0x7f,0xcf,0xbd,0xbb,0x05, +0x53,0x22,0x28,0x3e,0x62,0xc8,0x94,0x1e,0xdd,0x87,0xee,0x39, +0xc3,0xf0,0x4d,0x5f,0x16,0xff,0xf1,0x47,0xeb,0x22,0x6c,0x8a, +0x96,0xad,0x07,0xb5,0x6b,0xf7,0x72,0x20,0x58,0x1a,0xa8,0x90, +0x76,0x92,0xce,0x96,0xef,0x7d,0xfe,0xbc,0x6c,0x72,0xb8,0x3e, +0x41,0x08,0x0f,0x99,0xdc,0xbe,0x7d,0xf0,0xde,0xb3,0x7a,0x31, +0x10,0x5b,0x36,0x87,0xe6,0xc1,0x6a,0x3b,0xe3,0xa1,0x65,0x07, +0x29,0x48,0x23,0x04,0x69,0x04,0xed,0xd0,0xb2,0x95,0x76,0x68, +0xd9,0xca,0x78,0x25,0x56,0x0f,0x50,0x1a,0x48,0xbf,0xbe,0xc8, +0x7a,0x09,0xf5,0x74,0x55,0xea,0xc3,0x20,0x25,0x43,0x18,0x9d, +0x3a,0x6e,0xd9,0xcf,0x7a,0xf5,0xe0,0x82,0x8c,0x20,0x65,0xeb, +0x96,0xe4,0x61,0x09,0x51,0xf1,0xc3,0xad,0xd4,0x3f,0x8c,0xa9, +0x02,0xb2,0x21,0x98,0x7c,0xe9,0xaf,0xba,0xc9,0xf6,0x0e,0x44, +0x4c,0x4e,0xdb,0x7a,0x28,0xf3,0xc8,0xca,0x82,0x2f,0xc1,0x04, +0x9c,0xf9,0x24,0x56,0xdb,0x56,0x6c,0x91,0x17,0x69,0x79,0xb9, +0xf4,0xd4,0xf1,0x3d,0xc7,0x57,0xa7,0x67,0x2c,0x5b,0x9d,0x04, +0x2d,0xd0,0xca,0x32,0xef,0x94,0x98,0x92,0x26,0x37,0x93,0x08, +0xb4,0xe4,0x93,0xdb,0x0f,0x1d,0x84,0x62,0x2b,0x0a,0xbb,0x74, +0x2e,0x2f,0x67,0xef,0x31,0x96,0xa5,0xab,0xc1,0x9a,0x18,0x61, +0x5b,0x64,0x8b,0x7e,0x04,0x31,0x90,0x42,0x53,0x9a,0x0f,0x8d, +0xc0,0x06,0xf6,0xf9,0xb2,0x69,0x3b,0x72,0x2a,0x5f,0xd4,0x04, +0x7f,0x0e,0x13,0xfc,0x11,0xdf,0x04,0x3f,0x55,0x28,0x4c,0x95, +0x04,0xa0,0xdb,0xba,0x90,0x20,0x7d,0xca,0xad,0x53,0xa8,0x6d, +0x43,0xff,0x2c,0x65,0x7f,0xaa,0x97,0x57,0x27,0xb0,0xe8,0x81, +0x00,0x09,0x5b,0xf2,0x3b,0x41,0xf6,0xc8,0x98,0x83,0x8e,0x1c, +0x8e,0xe4,0xe7,0x80,0xa3,0x47,0xc2,0x4e,0x94,0x39,0x6c,0x11, +0xa4,0xe6,0x30,0x4f,0xcf,0x4a,0x42,0x15,0x77,0x1d,0x37,0x08, +0xf6,0x9f,0x62,0xb1,0x05,0x87,0xa4,0x58,0xd9,0xae,0x97,0xb6, +0x3f,0xd6,0xac,0x2f,0x37,0xc4,0x95,0x70,0x31,0xe1,0xee,0x49, +0xad,0xad,0x45,0xa9,0xf4,0x4b,0x49,0x28,0xcc,0xea,0xe8,0x22, +0xdb,0x2e,0x22,0xd4,0xe2,0x6c,0xe6,0x45,0x6a,0x49,0xed,0x1d, +0x42,0x94,0x15,0x6e,0x6a,0x32,0x3a,0xcb,0xa6,0x4b,0xc9,0x13, +0x25,0x19,0x86,0x3a,0x3d,0xe7,0xfd,0xdb,0x4b,0xb8,0xe8,0x39, +0xb0,0x5e,0x65,0x37,0x3f,0xf1,0x1f,0x57,0xbf,0xca,0xba,0x9b, +0xad,0x39,0x46,0xd5,0x87,0xc4,0x15,0x23,0xe5,0x66,0xee,0x44, +0xda,0x0e,0x29,0x41,0xe9,0xf3,0x70,0x55,0x97,0x94,0x45,0x90, +0x11,0x94,0xf4,0x2b,0xa6,0x71,0x53,0x26,0xa7,0x4e,0xb5,0x5e, +0x4d,0xd9,0xad,0x1e,0x9a,0xaf,0xde,0xf8,0x97,0x21,0x39,0x7f, +0x78,0x52,0x4c,0xea,0x28,0xad,0xbc,0x8a,0xe6,0xeb,0x69,0x61, +0x3d,0x03,0xd0,0x53,0x75,0xff,0xc0,0x43,0x7b,0x30,0xac,0xdf, +0xfc,0x92,0xf9,0x79,0xf4,0x6a,0x2f,0xc2,0x38,0x85,0x52,0x02, +0x2f,0xe5,0xfa,0x4b,0x08,0xee,0x93,0xf5,0x06,0x22,0xc5,0x7f, +0x54,0xeb,0x10,0x18,0xdb,0x9c,0x6e,0x1b,0xf7,0x2f,0x4f,0x48, +0xf7,0x44,0x57,0x6b,0x88,0x06,0x3b,0xe9,0x35,0xdd,0x4e,0xf9, +0xac,0xfc,0x72,0x13,0x30,0x2f,0xa2,0xf2,0x6a,0x91,0x6c,0xb2, +0x8f,0x1c,0x62,0x85,0x97,0x7f,0x82,0x9f,0x8a,0xa8,0xcc,0x8a, +0x66,0x85,0x97,0x6b,0xa5,0xa2,0xd6,0x11,0xdd,0xd9,0xc8,0x0e, +0x36,0x30,0xa9,0xd8,0xcc,0x28,0x15,0xd7,0x52,0xa9,0x68,0x94, +0x7a,0x4e,0x60,0x7e,0x86,0xae,0xb2,0x86,0xad,0x72,0x94,0xad, +0x62,0x0f,0x3f,0x9d,0xa1,0xab,0xa4,0x69,0xab,0x28,0x01,0xde, +0x18,0x88,0x16,0x82,0x6c,0x33,0x89,0x80,0x3d,0x46,0x50,0x52, +0xc2,0x39,0x2e,0x7e,0x5a,0x64,0xe2,0x50,0xeb,0x24,0xe8,0x0e, +0x66,0xa5,0x18,0x8e,0x87,0x65,0x53,0x77,0x42,0x0d,0x33,0x8b, +0x52,0x1c,0x48,0xad,0x6a,0xe6,0x06,0x79,0x59,0x94,0x57,0x91, +0x3f,0x69,0xcf,0xd0,0x6c,0xc3,0x2a,0xe1,0xd8,0xba,0x9d,0xbb, +0x4f,0xe8,0x4a,0x86,0x1d,0x71,0x73,0x1b,0x36,0x36,0x6c,0xc4, +0xce,0xa9,0xc7,0x16,0xeb,0x53,0x84,0x61,0xb1,0x13,0xa7,0x0c, +0xd5,0x05,0x15,0x45,0xbe,0xa4,0xdb,0xe5,0xf0,0x60,0x90,0x8f, +0x3e,0xdd,0x57,0xbc,0xcf,0x2a,0x6d,0xc5,0xc6,0x35,0x5b,0x97, +0x6f,0x48,0xb2,0x82,0x1c,0x87,0x23,0xc5,0xb8,0xed,0x65,0x6d, +0x09,0xc8,0x99,0x31,0xc9,0x2b,0x76,0xfe,0xb6,0x76,0x7b,0xda, +0x6e,0x96,0xdd,0xee,0x80,0x13,0x6e,0x28,0xb3,0xbc,0x71,0x04, +0xfe,0xc4,0xaf,0xfa,0x75,0xc5,0xd6,0xdf,0x74,0xdf,0x45,0x26, +0x04,0xe2,0x34,0x47,0x2a,0xf4,0xa0,0xdb,0xbd,0x47,0xa5,0x07, +0x1f,0x1b,0xe1,0xd3,0x6e,0x28,0x31,0xde,0x38,0xba,0x16,0xbe, +0x4d,0xf7,0x0a,0xef,0x05,0xc2,0xea,0xd1,0x02,0x5a,0x30,0xb8, +0x83,0xfe,0xe4,0x40,0xe8,0x72,0xff,0x71,0xd9,0xa1,0x47,0x46, +0xf8,0xb0,0x1b,0xca,0x18,0x6f,0x8c,0xfc,0xb6,0xba,0x6c,0x56, +0x4a,0xa0,0xeb,0xdd,0x47,0x65,0x87,0x1e,0x32,0x80,0x23,0x4e, +0xbd,0xa1,0xc4,0x7a,0xe3,0x38,0x06,0xd8,0xc2,0xd6,0x7b,0xc9, +0xd6,0x4b,0xaf,0x5d,0x6f,0xaa,0xa3,0x3e,0x77,0x20,0xb8,0xdd, +0x7b,0x5c,0x76,0x90,0xae,0xe7,0x8b,0x53,0x6a,0x92,0x09,0xf2, +0x92,0x6c,0xe3,0x41,0x8d,0xd0,0xc9,0xe0,0x2e,0xc5,0x81,0x03, +0xfc,0x0c,0xab,0xf0,0x40,0x18,0x4c,0xa2,0xe2,0xe4,0x67,0x1c, +0xc6,0x4f,0xd8,0x18,0xbd,0x5f,0xbf,0x9b,0x7f,0x75,0x2d,0xf3, +0x97,0xb3,0x86,0xf8,0x52,0x6e,0xe1,0x20,0x8f,0x04,0x37,0x6b, +0xad,0xe5,0xb1,0x87,0x12,0x2a,0xa9,0x1d,0xc2,0x95,0x0e,0x7c, +0x06,0xb6,0x95,0x9c,0xe9,0x96,0x30,0xf5,0xcb,0x98,0x87,0x0d, +0x39,0x34,0xe5,0xe7,0x41,0x43,0x3f,0xba,0x25,0x4c,0xb9,0x36, +0x11,0x8a,0x0f,0x2f,0xde,0x21,0xb2,0x63,0x4f,0xc2,0xe3,0x54, +0xb8,0x2f,0xa9,0xae,0xaa,0xbd,0x2a,0xb0,0x72,0xcd,0xd9,0xcc, +0xad,0xd1,0x93,0xa8,0x26,0xac,0x27,0x68,0x36,0xe8,0xbc,0x55, +0x83,0xd2,0x52,0xb1,0xf5,0xe6,0xf1,0x99,0x09,0x1d,0x1b,0x18, +0x80,0x1a,0x9e,0x2e,0xb8,0x2a,0x00,0x56,0xf1,0xe8,0x88,0xf5, +0x24,0xa3,0xe3,0xdf,0x21,0x86,0x50,0x1b,0x79,0x15,0xb4,0xa9, +0x54,0x1b,0x07,0x42,0xbb,0x14,0x01,0x7f,0x8c,0xf4,0x43,0x1b, +0xd4,0xe9,0x8b,0x23,0xaf,0x5e,0x2b,0x3c,0x2d,0xdb,0x37,0x35, +0xa2,0x0a,0xca,0x75,0x69,0x72,0xfd,0xc9,0x64,0xa9,0x80,0x0d, +0x34,0x84,0xb5,0xbe,0x78,0xf8,0xb5,0xab,0x05,0x67,0x34,0x04, +0xb6,0x90,0x60,0x23,0x13,0xb3,0xf3,0x98,0x98,0xcd,0x5d,0x90, +0x11,0x08,0xdb,0xb7,0x4e,0xb2,0xef,0xd2,0x03,0x3b,0xdb,0x5a, +0x9d,0x1a,0xc8,0xc1,0x42,0x70,0x7d,0xfa,0x0f,0x0c,0xd7,0x51, +0x9d,0xe3,0x99,0x20,0x06,0x10,0x7c,0x88,0x0d,0xa5,0xff,0xcb, +0xc2,0x61,0xac,0xe1,0x29,0xe3,0x0c,0x0b,0x65,0x93,0x8f,0x04, +0x27,0xc8,0x36,0xe9,0xc6,0xf1,0x22,0x59,0x36,0xa7,0x57,0xa7, +0xcf,0x60,0x28,0xb8,0xc7,0x64,0xc7,0xb0,0x4a,0x01,0x0b,0x16, +0xc9,0x36,0xbf,0x31,0xf7,0x6c,0x57,0xd2,0x06,0x27,0x3b,0xb0, +0xee,0xd2,0x1b,0x64,0xbb,0x21,0x44,0x3c,0x53,0x4c,0x51,0x3d, +0x8c,0xc1,0xc3,0x56,0x0b,0x62,0x58,0xf0,0xb0,0x78,0x86,0x15, +0x0a,0x70,0x5f,0x9c,0x4d,0x69,0x5f,0x73,0xf8,0xf2,0xb2,0x8b, +0x2a,0x75,0xe7,0x3c,0x64,0x73,0x4f,0x52,0x56,0x72,0xa4,0xdc, +0x8a,0x61,0x42,0xe8,0xea,0xeb,0x62,0x52,0x65,0x8b,0x07,0x64, +0xdb,0xa9,0xb5,0xc5,0x95,0xba,0xb3,0x9e,0x83,0x04,0x6c,0x3c, +0xc0,0x0b,0x3b,0xa1,0x81,0x65,0xf9,0xdd,0x2a,0x2b,0x3d,0x64, +0x84,0x86,0x82,0xaf,0xec,0xd0,0x8a,0x9c,0x37,0xd6,0x1a,0xd0, +0x45,0xf4,0xa0,0x10,0x07,0xfd,0xd9,0x21,0xbf,0xdf,0x2b,0x2d, +0x3f,0x5c,0x51,0x0b,0xf1,0x5f,0x9c,0x2d,0x3b,0xf6,0x27,0x17, +0x8d,0x20,0x59,0x03,0x39,0x32,0xd0,0x7d,0x0a,0xaa,0xfc,0x0a, +0x92,0x1d,0x9c,0xc9,0x25,0x0a,0x09,0x63,0x90,0xee,0x14,0xd2, +0x9c,0x41,0x1e,0x94,0x55,0x1c,0x3e,0x4f,0x21,0x67,0x30,0xbc, +0xf6,0x33,0xc7,0x1a,0x4b,0x1c,0x6c,0xcb,0x5f,0x5b,0x48,0xef, +0xbc,0xe7,0x40,0x01,0x1b,0x45,0x78,0x62,0x57,0x7a,0x67,0xe7, +0x86,0xfc,0x7e,0xbb,0x42,0xfb,0x10,0x67,0x4f,0x63,0x7f,0xf0, +0x59,0xbc,0x6e,0x51,0x6a,0x0c,0x83,0xd3,0x0f,0xba,0xad,0x70, +0x6d,0xf1,0x05,0x5d,0x19,0xbb,0x01,0xcb,0x70,0x56,0x11,0xc1, +0x81,0xc1,0xef,0x95,0x6b,0x77,0xa9,0xc1,0xfd,0x16,0x67,0x2f, +0x32,0x16,0x50,0x60,0xf0,0x82,0xb5,0xc5,0x17,0x29,0x3c,0x9c, +0x7e,0xa8,0xf0,0xaf,0x05,0x14,0x28,0xbc,0x82,0xdd,0x6f,0x6d, +0x32,0xb9,0x25,0xcc,0x94,0x6d,0x06,0x7e,0xab,0xa6,0x65,0x09, +0x0b,0x64,0x9b,0xc1,0x5a,0x7c,0xd5,0x4a,0x09,0x24,0x2d,0xaf, +0x41,0xfa,0xea,0x45,0xef,0xa5,0x34,0xc7,0x04,0x6d,0x6e,0x21, +0x9d,0xfb,0x96,0x19,0x21,0x69,0x9e,0xf3,0x5e,0x4a,0x9f,0xff, +0x28,0x8b,0x97,0xbc,0xb0,0x3d,0x7d,0x44,0xdb,0x7a,0xab,0x41, +0x8a,0x33,0xef,0x55,0xc9,0x9e,0xdf,0xce,0xf4,0x79,0xc5,0x46, +0xf8,0xf0,0x6b,0x6b,0x48,0x98,0x14,0xc2,0xc7,0xa4,0xc6,0xa4, +0xc6,0xea,0x31,0x31,0x26,0x73,0x00,0x4c,0xdf,0x34,0xbb,0x4f, +0x50,0x38,0x3a,0xb8,0x5b,0x1d,0x1c,0xce,0xc1,0x24,0x68,0x50, +0x78,0x8f,0x79,0x49,0xeb,0xe1,0x2e,0xc1,0x4c,0xad,0x24,0x2d, +0x1c,0x71,0x86,0x3d,0x51,0xb6,0xc0,0x76,0xc7,0xbf,0x78,0xdf, +0x16,0x12,0xce,0xfd,0x0b,0xe6,0xf2,0xef,0xf1,0x92,0x6c,0xfa, +0x1f,0x91,0x82,0xf8,0x66,0xe8,0xc6,0x25,0xf3,0x4e,0xe0,0xc6, +0xf5,0xe5,0xa1,0x29,0x8e,0x44,0x3d,0x4e,0xe4,0x2a,0xf9,0x7f, +0xc1,0x8b,0x4b,0xe7,0xa1,0x0e,0x7a,0x71,0x17,0x59,0x7f,0x92, +0x89,0x9c,0x99,0xf4,0x46,0x95,0xfa,0x41,0x05,0xdd,0xf5,0x4d, +0xfd,0x03,0x70,0x23,0x4b,0xdf,0xe4,0xe0,0x18,0x08,0x0f,0x6f, +0x83,0x97,0x0e,0x8f,0xa9,0x8b,0xd5,0x76,0x44,0xaa,0x71,0x21, +0x70,0xbc,0xe6,0x20,0x51,0x3b,0xec,0x20,0x6a,0x13,0x8c,0xa2, +0xb4,0xef,0x0e,0x46,0x3c,0x59,0x37,0x21,0x6f,0xd6,0x0a,0xb2, +0x69,0xde,0xc3,0x23,0x05,0x47,0x58,0xfb,0x48,0x63,0x1a,0xc6, +0x16,0x6c,0x60,0x79,0x98,0x75,0x13,0x32,0x6d,0x46,0xb4,0xf6, +0x22,0xa2,0x6c,0x57,0x8f,0xc8,0x0e,0x25,0x44,0xf4,0x90,0x1d, +0x0e,0x10,0x0c,0x15,0xfd,0x31,0xd4,0x29,0x9c,0x1a,0x73,0xbe, +0x10,0x4b,0xcd,0xbc,0x70,0x88,0xe6,0x45,0x21,0x64,0xd6,0xd4, +0xe1,0x61,0xba,0xf6,0x0f,0x03,0xa1,0x31,0x34,0x7a,0x58,0xf9, +0x9c,0xaa,0xb5,0x9b,0xa4,0xab,0x67,0x0e,0xdf,0xd2,0xff,0xca, +0xdf,0x3c,0x33,0xce,0xbf,0x57,0xf8,0x58,0x6f,0xc3,0x3c,0xde, +0x2b,0xfc,0xc8,0x15,0x83,0x28,0xdb,0xb8,0x92,0xfb,0x0c,0xf3, +0x7a,0xb3,0x74,0xe5,0xf4,0xe1,0x1b,0x14,0x53,0x75,0x76,0x5c, +0x2f,0xff,0xf0,0xb1,0xbe,0x14,0xe3,0x13,0x71,0xe4,0xaa,0x11, +0xf3,0x80,0x61,0xde,0x7c,0xc3,0x5c,0x3f,0x43,0x31,0x11,0x63, +0x7d,0xbe,0x61,0x84,0xfe,0xb3,0xa6,0x45,0xd1,0x77,0xa5,0x3c, +0xb0,0x21,0x34,0xd4,0x56,0x7c,0x4e,0xd1,0xc5,0x87,0xab,0xf4, +0x9b,0xf9,0xaa,0x62,0x8a,0x1e,0x30,0xd6,0xcf,0x10,0xcd,0xfb, +0x0d,0xd0,0xd0,0x68,0x3a,0x3e,0x14,0xcd,0xd0,0x5c,0x5f,0x3c, +0xfa,0x5c,0xd9,0xb1,0xdc,0x9d,0x27,0xac,0x56,0xac,0x4c,0xaf, +0xcd,0xed,0x6d,0x8a,0xf6,0x85,0x27,0xd0,0x12,0xf4,0xb1,0xeb, +0x58,0x8c,0x9b,0x95,0xe8,0x83,0x93,0x6a,0xa2,0x09,0xd6,0x97, +0x64,0x3b,0x17,0x82,0x2b,0x31,0x4b,0xc9,0x23,0xa2,0xaf,0x1a, +0x5d,0xc5,0xa3,0xf4,0x97,0xda,0x9b,0xc0,0x3a,0xca,0x24,0xa3, +0xaf,0xf1,0xd8,0xf8,0x3d,0xa6,0xb0,0x51,0x75,0x04,0x7c,0x91, +0x64,0xb9,0x27,0x61,0x5a,0x92,0x19,0xd3,0x92,0x5e,0x80,0x89, +0xee,0x9a,0xfa,0x30,0x50,0x59,0x23,0x8c,0x31,0x6a,0x49,0x07, +0x16,0x65,0x04,0x2a,0x5b,0x7e,0x4d,0x8e,0x4c,0x1c,0x1e,0x17, +0x45,0xed,0x69,0xe6,0x60,0x4d,0x96,0x6d,0xeb,0x91,0xfd,0x11, +0x96,0x60,0x73,0xf4,0xd1,0xbe,0xc2,0xfd,0xbf,0xac,0xde,0xc4, +0x92,0xe5,0xb7,0x37,0xb3,0x14,0x95,0xf4,0x6a,0x73,0x82,0x17, +0x30,0x47,0x6a,0x7d,0x3b,0x88,0x5a,0xf4,0x15,0x2f,0x65,0xdb, +0x79,0xac,0x48,0xdf,0x68,0x92,0x89,0x63,0x65,0x9b,0x55,0x84, +0x71,0xa2,0x78,0xa6,0xb3,0x44,0xb1,0x88,0xc7,0xdd,0xd0,0xca, +0x63,0xcd,0x6c,0x6c,0xaf,0x52,0x6d,0xba,0xbd,0x07,0xb5,0xc4, +0x5b,0x71,0xe8,0x1c,0x54,0x6d,0xc9,0x33,0xd8,0x12,0x06,0x1b, +0x2c,0xa1,0x33,0xbf,0x0b,0x9c,0x3c,0x32,0x66,0x63,0x6b,0x0e, +0xa3,0xf8,0xd9,0xd0,0xda,0x23,0x61,0x17,0x3a,0x71,0xd8,0xf2, +0x2b,0x30,0x49,0xfa,0xc2,0x87,0x54,0xf3,0x7c,0x26,0xfa,0x4a, +0xd8,0x82,0xdf,0x01,0x4d,0x3d,0xd6,0xcc,0x45,0x3d,0x87,0xa3, +0xf9,0xb9,0xa0,0xf7,0x48,0xdc,0x81,0x4d,0x39,0x6c,0x1e,0xca, +0xd0,0x70,0x47,0xf3,0x3e,0xc3,0x63,0xcd,0xf1,0xec,0x42,0xd4, +0xc4,0x3b,0x3c,0xf6,0xff,0xcc,0xaa,0x94,0xc9,0xfa,0x00,0xba, +0x8b,0x02,0x15,0xc1,0xf6,0xd6,0xbf,0xda,0xc9,0xf2,0x40,0x9c, +0x2f,0xdb,0xbc,0x21,0xd2,0x16,0xa1,0xaa,0xe0,0x50,0x45,0x45, +0xe1,0xcf,0xbe,0xfa,0xb9,0x82,0xef,0xe0,0xf1,0x41,0x41,0x43, +0x0e,0x56,0xe9,0xa1,0x95,0xda,0x53,0x82,0x20,0x0f,0x1c,0x42, +0xb7,0xc8,0xc9,0xf3,0xbc,0x99,0x96,0x53,0xa7,0x78,0xa0,0xad, +0x6c,0xb3,0x9f,0x50,0x63,0x06,0x76,0xd6,0x24,0x10,0x58,0x86, +0xbf,0xff,0xf7,0x91,0x28,0x2d,0x88,0x12,0x2f,0xdb,0x7c,0x20, +0x70,0x51,0x82,0x88,0xee,0xd0,0xbd,0xd9,0xef,0x7a,0x0f,0x1e, +0xea,0x35,0xaf,0xc2,0x6e,0x68,0xab,0xeb,0x24,0xa0,0xad,0x17, +0xf6,0xc0,0x3a,0xad,0xf4,0xb7,0xf9,0xbf,0x1e,0x3f,0x84,0x9e, +0x30,0x50,0x67,0x46,0xb1,0x38,0xf0,0x21,0xf6,0xfc,0xcb,0x8d, +0x52,0xb1,0xce,0x1b,0x2f,0xe8,0x01,0xb6,0xba,0xa7,0x02,0xd8, +0x56,0x41,0x37,0xa8,0xf7,0x9e,0xae,0xd0,0xac,0x63,0x77,0xec, +0x8e,0x11,0x3a,0x33,0xac,0x94,0x02,0x94,0x5f,0x5c,0x04,0x75, +0xdb,0xdc,0x8c,0x7e,0xca,0x86,0x5d,0x1c,0x36,0xba,0x09,0xaf, +0x05,0x33,0x98,0x54,0x8a,0x07,0x55,0x53,0x28,0x2e,0xa5,0x26, +0x59,0x00,0x74,0xc7,0x89,0x9a,0x38,0x9e,0x28,0x74,0xc7,0xd6, +0x72,0x7d,0x7b,0x42,0x37,0xe1,0x6f,0x17,0xf0,0x8d,0xda,0x4e, +0x7d,0xcc,0x3e,0x3c,0x05,0x4c,0xa1,0xf2,0x5f,0x96,0x5f,0xd1, +0x51,0x90,0x11,0x3e,0xdb,0x1b,0x47,0x52,0xb8,0xb3,0x6c,0xa1, +0x67,0xd9,0x0f,0x1a,0xbc,0xa5,0x06,0x67,0x00,0x26,0xff,0x65, +0xf9,0x35,0x1d,0x05,0xcb,0x16,0xf7,0x88,0xb1,0x09,0xe4,0x06, +0x09,0x4d,0xbb,0x83,0x29,0x6b,0x02,0x39,0x9a,0xea,0xe1,0x0e, +0x5a,0x13,0x48,0x07,0xe3,0x15,0x05,0x62,0xeb,0xe6,0xe0,0x12, +0xac,0x76,0x33,0x82,0xf7,0x48,0x28,0xba,0x03,0x7d,0xd6,0x9f, +0xe3,0x74,0x0a,0x69,0xa3,0x81,0xdb,0x18,0xaf,0x44,0xa9,0x7f, +0xeb,0xd6,0x7f,0x86,0xe2,0x21,0xe3,0x79,0xc4,0x11,0x29,0x94, +0x0e,0xfb,0x6b,0x43,0xbc,0x92,0x2f,0xb5,0x7e,0xfd,0x92,0x87, +0x2c,0x17,0xed,0x2f,0xce,0x10,0xa5,0xfb,0xd4,0x0a,0x4e,0x7c, +0xc2,0xa5,0xf1,0xe3,0x37,0xef,0x5f,0x50,0x60,0x7d,0xf7,0x58, +0xce,0xd9,0x6d,0x86,0x55,0x6e,0xf7,0x95,0x75,0xee,0xa8,0xf0, +0xbd,0x83,0x27,0xf6,0xf1,0x18,0x75,0xea,0x85,0x1e,0xae,0xb9, +0x0b,0x54,0x37,0xf9,0x51,0xb5,0x08,0x84,0xca,0x7e,0x54,0x63, +0xd3,0x11,0x6d,0x28,0x07,0xc2,0xf5,0x7e,0x42,0x8c,0xb1,0x0a, +0xf4,0xdf,0xf3,0xb3,0x02,0xe0,0xf6,0xf6,0xd1,0x9e,0x2d,0x42, +0x30,0xdc,0xcf,0x4a,0x6e,0xc6,0xaa,0xa3,0x7c,0x09,0x7a,0xa8, +0x3c,0x49,0x17,0xca,0xb0,0x3e,0xb8,0x63,0x09,0xb8,0x43,0x49, +0x19,0xd4,0xe7,0xd2,0xd5,0x27,0x0f,0xab,0x83,0xb0,0x0e,0x8f, +0x91,0x6a,0x03,0xca,0x11,0x71,0x98,0xd2,0x80,0x13,0xab,0xeb, +0x1b,0xcf,0x93,0x36,0xde,0x5a,0xaf,0x9d,0x27,0x3d,0xec,0x47, +0x6d,0x0f,0x76,0x9e,0xb4,0xd0,0xdf,0x14,0xfb,0xb8,0x49,0xe0, +0xeb,0x89,0xbe,0xf8,0xcc,0x95,0x30,0x64,0xa8,0x86,0xbc,0xb1, +0xfe,0xd9,0x07,0xdd,0x29,0xf5,0x61,0x00,0x43,0xba,0xc4,0x7a, +0x2e,0xec,0x43,0x91,0xee,0x12,0xf4,0xf0,0xa4,0x0f,0xc7,0x33, +0xad,0xf3,0xa6,0x95,0x8b,0x3e,0x7f,0xf0,0xd5,0xa2,0x53,0xc7, +0xf7,0x1d,0xb7,0xca,0xc8,0xc8,0x5c,0x9e,0xb5,0x44,0xeb,0xcd, +0x71,0xfd,0x6c,0x7e,0xce,0xbe,0x9c,0xcc,0xd5,0x19,0xac,0xcb, +0x6a,0x0b,0xb4,0xb0,0x2c,0x28,0x12,0x95,0x89,0x12,0xae,0x0f, +0x86,0xf5,0x7c,0x01,0x6e,0x95,0x4e,0xcf,0x3c,0x36,0x74,0xab, +0x3e,0xfd,0xdf,0x12,0x35,0x28,0x4c,0x6e,0x56,0x46,0xc2,0xe8, +0xee,0x2c,0x79,0xac,0x17,0x59,0x98,0xb2,0x92,0x4e,0xf2,0xb3, +0xa8,0xc0,0xba,0xe1,0xe3,0x27,0x60,0xdd,0x19,0x2c,0x42,0xd9, +0xf7,0x45,0x75,0x1b,0x92,0x98,0x24,0xce,0x99,0x9f,0x94,0xc6, +0xed,0xa7,0xd2,0xef,0x8a,0x6e,0xbf,0xf7,0x64,0xc1,0x6e,0x9a, +0x07,0xce,0x43,0x5b,0x7d,0x4e,0x38,0xd4,0xab,0xaa,0x3a,0x73, +0xe2,0x8c,0x55,0x76,0xe6,0xfa,0x65,0xeb,0xe2,0x61,0x0e,0x7a, +0x5b,0x8a,0x2b,0xb7,0x6f,0xcb,0xda,0x91,0xb6,0xd7,0xaa,0xb6, +0x2e,0xe2,0x76,0x3e,0x2e,0xb4,0xf7,0x18,0x9c,0x16,0xc2,0xea, +0x22,0xda,0xe4,0x3c,0xde,0x5f,0xb0,0x7f,0xc3,0xea,0x0d,0xa9, +0x8c,0x55,0x38,0x58,0x8a,0x2c,0x45,0xf5,0x6a,0xf6,0x83,0x67, +0xba,0xcb,0x6a,0x97,0x60,0xf8,0x38,0x5f,0x48,0x6d,0xbb,0xb8, +0xe7,0xc2,0xbe,0xdf,0xa7,0xa8,0x72,0xe2,0x7d,0xd9,0xd6,0x9f, +0xb8,0xed,0x25,0xc1,0x35,0xcb,0x35,0x47,0x5f,0xb1,0xd1,0xd1, +0xf7,0x2a,0xeb,0x0d,0xf0,0xb2,0xed,0x68,0x32,0x94,0x72,0xa5, +0x48,0x2b,0xb1,0x26,0x83,0xa0,0x1f,0xce,0x95,0xe2,0xcb,0x39, +0x26,0x44,0x36,0xc2,0xcd,0x0b,0xaa,0x9d,0xaa,0x53,0xba,0xd1, +0x9f,0x8c,0x2a,0x35,0x56,0x6a,0xac,0x44,0xa5,0xd8,0x3f,0x9e, +0xf8,0x83,0xda,0x1d,0x7e,0xf0,0xc4,0xb3,0xb6,0x44,0x89,0xb8, +0x20,0xd1,0x81,0xa9,0xd2,0x9d,0x5a,0x2e,0xa1,0xbc,0x07,0x55, +0x0c,0x93,0xf8,0x9e,0x60,0xca,0x05,0xf2,0xff,0x60,0x6b,0xd6, +0xd1,0x8c,0x2b,0xe5,0xef,0x00,0xe1,0x56,0xf3,0xf7,0x90,0x50, +0xa9,0x86,0x75,0xa0,0x0d,0x6b,0x14,0x27,0xdb,0x30,0x5f,0xa0, +0x05,0x7e,0x96,0xf5,0x1f,0xc9,0xed,0x2d,0x9b,0x2a,0x7f,0x33, +0xc0,0xc2,0xea,0x86,0x54,0xfc,0x18,0xa8,0xa8,0xb9,0xa6,0x04, +0x19,0x63,0x21,0x21,0x50,0x3a,0xc6,0x6f,0x83,0xf3,0x1c,0x44, +0x75,0xc0,0x28,0xe1,0xa4,0xba,0x4a,0x36,0x34,0x22,0x2a,0x27, +0x29,0x6f,0x2b,0xd5,0xb7,0xbc,0x32,0x02,0x8f,0x49,0xfb,0xc0, +0xb3,0xe7,0x9a,0x59,0xb2,0x7d,0x38,0x51,0x6a,0xca,0x79,0x33, +0xcc,0x95,0xad,0xbf,0x10,0xac,0x90,0xad,0x59,0x03,0x2d,0x63, +0x30,0xfa,0x66,0x63,0x36,0x8f,0xa5,0x4c,0x1a,0x10,0x51,0x7d, +0x4d,0xd4,0x19,0x37,0xa1,0xb1,0x6c,0x72,0x8d,0x88,0x1b,0x6f, +0xae,0x7f,0xfa,0x06,0x67,0x12,0x97,0xc5,0xdd,0xe7,0xfb,0x99, +0xaa,0x4f,0xfa,0x8a,0x4a,0x35,0x01,0x5b,0x8c,0x96,0x4d,0xce, +0x10,0x68,0xe4,0x85,0x4d,0x84,0xa5,0xde,0x1e,0xa9,0x5e,0xd4, +0xfe,0x57,0xbb,0xd2,0xef,0xa1,0x80,0x07,0xee,0xd4,0xa4,0xe1, +0x51,0xc3,0x26,0x22,0x67,0x18,0xc2,0x23,0x3f,0x6c,0xff,0xc9, +0xdc,0x53,0xfb,0x80,0x37,0xb4,0xc3,0x11,0x0a,0x55,0x20,0x8e, +0x11,0x10,0x20,0xa8,0x1c,0x15,0x88,0xf6,0xc1,0x1c,0xe8,0x81, +0xe4,0x0b,0xdd,0xe4,0xb2,0xc5,0x26,0x02,0xa6,0x10,0x58,0x8e, +0x00,0x0b,0xbc,0xf1,0x04,0xf4,0xc4,0x06,0x82,0xe6,0x72,0x34, +0x26,0x28,0x89,0xd2,0x19,0x1e,0xf8,0xbc,0xa9,0xa3,0x47,0x47, +0x4e,0x41,0xde,0x10,0x41,0x17,0x8e,0xdc,0x73,0xec,0x58,0xde, +0x6e,0xba,0x70,0x47,0x56,0x57,0x98,0xca,0x20,0xd5,0x91,0x00, +0x81,0xce,0x25,0x78,0x09,0x26,0xf9,0xe2,0x76,0x68,0x85,0x66, +0x6a,0x2b,0x12,0xc8,0x22,0x5e,0xfa,0x64,0x6f,0x07,0x73,0x83, +0x16,0x22,0x46,0xdf,0x45,0x83,0x4c,0xf4,0xc5,0x6d,0x14,0xd2, +0x60,0x31,0x5d,0x3b,0x5b,0x38,0x7d,0x21,0x17,0xda,0x40,0xdb, +0x0b,0xc3,0x07,0xe8,0x63,0x85,0x01,0xfd,0xa2,0xb0,0x2d,0xeb, +0x5d,0x7b,0x5a,0xff,0x41,0x76,0x60,0x4a,0x0f,0x98,0xb2,0xfe, +0xd8,0x57,0x82,0x65,0xfb,0x38,0xd2,0x32,0x1c,0x83,0x65,0xf3, +0xad,0x4c,0xdc,0x54,0x91,0x00,0x96,0x5c,0xbf,0x2c,0x56,0xae, +0x8f,0x64,0xeb,0x78,0xff,0x2e,0xa1,0xd8,0xba,0xb7,0xd5,0x89, +0xc1,0x1c,0xc4,0x7c,0x7a,0xfa,0x5c,0x6b,0xa1,0x0c,0x84,0x15, +0x4a,0xbb,0x1c,0x88,0x1f,0x08,0x7e,0x58,0x40,0xf7,0x7a,0xd5, +0xf6,0xd1,0xbe,0x2d,0x65,0x87,0x26,0x9a,0xcf,0x43,0x4b,0xb9, +0xd7,0xe6,0xfe,0x5d,0x90,0x19,0x00,0x77,0xb7,0x8f,0xf2,0x6d, +0x11,0x86,0xe1,0x7d,0xbe,0xa6,0xdc,0xff,0xc1,0xa2,0x1e,0x58, +0xff,0xe7,0xa7,0xc1,0xb0,0xc1,0xd8,0xc1,0x81,0x2a,0x55,0x27, +0x17,0x66,0x04,0xc1,0xe6,0xdf,0xc6,0xfb,0x76,0x95,0x1d,0x6f, +0x11,0xad,0x7b,0x33,0x83,0x84,0xc0,0x86,0xda,0xb3,0x5a,0xe3, +0xed,0xf8,0x74,0x0d,0xc2,0x36,0xfe,0xc6,0x08,0x8a,0x7f,0x9e, +0xbe,0x60,0xf9,0xfe,0x12,0x34,0xd0,0xde,0x32,0xe0,0x2b,0xfb, +0xf9,0xa7,0xf6,0x6d,0xbd,0x5a,0x04,0x63,0x78,0x2f,0xe3,0xdb, +0xfe,0x4b,0xdf,0xb6,0x13,0xc3,0x9e,0x0f,0xe1,0x65,0x1b,0x1f, +0x02,0xbc,0x6a,0xc1,0x18,0xd9,0x65,0x36,0xf4,0x65,0x43,0x89, +0x0e,0xd5,0x69,0xa1,0xca,0x34,0xd9,0x6e,0x37,0xc9,0x9c,0x8b, +0x96,0x1c,0xea,0xf9,0x39,0x60,0xe9,0xbd,0x64,0x27,0x9a,0x73, +0x58,0x27,0x4c,0x89,0xe3,0x31,0x4f,0x94,0xb9,0x0e,0x24,0x03, +0x7b,0x4b,0x58,0x8f,0x8a,0x56,0x4b,0xaf,0x8c,0x39,0x68,0xcb, +0xa1,0x81,0x02,0x6d,0xbd,0xa9,0x89,0x44,0x5f,0x54,0x27,0x04, +0x4c,0x88,0xf8,0xa5,0x9c,0x3d,0x12,0xc1,0xe5,0x88,0x10,0xed, +0x4d,0x1f,0x09,0x0f,0x24,0x32,0x4f,0x25,0x43,0x75,0x03,0x78, +0x20,0x7d,0x7a,0x0f,0xd7,0xd5,0xab,0x78,0xfd,0xbd,0x23,0xce, +0x74,0x25,0xea,0xff,0xa1,0xaa,0x84,0xd2,0x0d,0x07,0xab,0xdd, +0xf8,0xb7,0xec,0xd8,0xc8,0x91,0x1d,0x1b,0x75,0xc1,0x18,0x74, +0xb4,0x25,0x07,0xf8,0x8f,0xb7,0x33,0xd6,0x55,0x18,0x52,0xd7, +0xe4,0xfc,0x7c,0xbe,0xf4,0xe4,0xc9,0xdd,0xb9,0x5a,0x89,0xc1, +0x35,0x49,0x40,0x0d,0x24,0xcb,0xc2,0x93,0x4c,0xfd,0x68,0x24, +0xfd,0xfa,0x67,0xd6,0x9f,0x50,0xf7,0x7b,0xf5,0x63,0xbc,0xa6, +0x7e,0x04,0x29,0x5b,0x36,0x27,0x0f,0x4f,0x1c,0x11,0x3f,0xc2, +0x4a,0xfd,0x23,0x80,0x75,0xac,0xff,0x32,0x58,0x6d,0x2d,0x1d, +0x0d,0xe1,0x20,0xef,0x9f,0x47,0xd7,0xc1,0x4d,0xf7,0x5c,0xd5, +0xf5,0x83,0xcb,0xe3,0x05,0x24,0xbe,0x21,0xb8,0xc5,0x45,0x6f, +0xec,0xfd,0xd3,0x47,0x19,0x25,0xdb,0x06,0xb2,0x5a,0x07,0xb7, +0x48,0xee,0xbe,0x43,0xbf,0x1d,0x4e,0x5b,0x95,0xbe,0x22,0x2d, +0xf9,0x03,0x12,0xcb,0xdc,0xdc,0xd6,0x7f,0xc7,0xaf,0x8d,0x5b, +0xbe,0x78,0x89,0x95,0x78,0xfa,0x3d,0x07,0x5b,0xaf,0xe0,0x22, +0xfe,0x2a,0x58,0x72,0xe0,0x76,0x85,0x1a,0xaa,0x67,0xde,0x73, +0x3e,0xfc,0x80,0xe6,0x1c,0x6e,0xed,0x05,0x8b,0x78,0x7f,0xf6, +0x85,0xb8,0xf5,0x82,0x9f,0xa8,0xf6,0xd0,0x1c,0x9b,0x5a,0x5e, +0x29,0xce,0x95,0x1d,0x67,0x90,0xbc,0x02,0x74,0x02,0xc2,0xca, +0xa1,0x52,0xad,0x7f,0x51,0x2c,0xcb,0x37,0x3f,0x94,0x21,0xaa, +0x37,0x65,0xb3,0xf9,0x84,0x9a,0xad,0xf5,0x61,0x3c,0x4b,0x48, +0xe8,0x4f,0xcd,0x56,0x53,0x1c,0x8f,0x5e,0xbc,0x1d,0xd9,0x43, +0x6d,0xd6,0x8c,0x75,0xe7,0x0c,0x71,0xe7,0x6a,0x1e,0xb0,0xa0, +0x31,0xe0,0x60,0xa4,0x2c,0x5f,0xd2,0x2e,0x09,0xb5,0x72,0x67, +0x7d,0x85,0xff,0x8c,0x3e,0xff,0x5d,0x26,0xe7,0xb8,0xc5,0x03, +0x59,0xeb,0x56,0xfa,0x01,0x66,0xb3,0xa8,0xd7,0x1f,0x70,0x14, +0xfa,0xc9,0xe6,0x6d,0x49,0xb9,0xe6,0xab,0x71,0xb5,0x16,0xa5, +0x25,0x1f,0xd4,0xdb,0xac,0xc2,0x82,0x6d,0x0f,0x02,0x0b,0x45, +0x29,0x11,0x4c,0x64,0xae,0x1b,0x5d,0x8a,0x62,0x47,0x53,0xac, +0xf0,0x07,0x89,0x19,0xe4,0x95,0xd4,0x89,0x2e,0x61,0xf2,0x98, +0x91,0x4d,0x28,0xd9,0xff,0x3b,0xb2,0x74,0x4d,0x59,0xe8,0xd7, +0x02,0xfd,0x82,0xc1,0xaf,0x15,0xfa,0x85,0x80,0x1f,0x6f,0xdf, +0x0f,0xbf,0x10,0xc5,0xc4,0x57,0xf5,0x94,0x4d,0xee,0x6b,0x65, +0x61,0x92,0x64,0xc7,0x0e,0xc4,0xbe,0x9f,0x24,0x9b,0xc5,0x69, +0xe3,0x65,0x7e,0x76,0xda,0x0b,0x5a,0x7e,0xff,0x02,0xe2,0xab, +0xf6,0xfa,0xfa,0x82,0xc9,0x7e,0xce,0xda,0xd4,0xd7,0x15,0x03, +0x19,0xe0,0x07,0x5f,0xb5,0x27,0x86,0xb3,0xad,0xd5,0x18,0x29, +0x26,0x86,0xc5,0xbd,0x37,0x7e,0x88,0x9f,0x55,0x6b,0xf4,0x24, +0xb0,0x0d,0xc6,0xf2,0x30,0xb4,0x9b,0x84,0xd4,0x4e,0x04,0x41, +0xf8,0x8a,0x8a,0xf5,0xc3,0xc6,0xd8,0xf8,0x01,0x45,0xc9,0x0c, +0xb5,0x5d,0x43,0xb9,0x53,0xdd,0x82,0xa2,0x4c,0x8d,0xa8,0xa6, +0x5a,0xfe,0x45,0x03,0x6c,0x7c,0x87,0xa2,0x9a,0xc2,0x67,0xde, +0xaf,0x4c,0xc2,0x9f,0x61,0x0b,0x0b,0x33,0x1c,0xe2,0xc1,0x82, +0x48,0x1a,0x83,0x89,0x11,0x4a,0xae,0x29,0x63,0xfc,0x90,0x18, +0xa1,0x12,0x83,0x96,0x33,0xe8,0x66,0x0d,0xda,0x93,0x85,0xa8, +0x34,0x86,0x7a,0x02,0x65,0x78,0xfb,0x09,0xb6,0x97,0xf0,0x07, +0xaa,0x47,0x9a,0x7a,0xd3,0x3d,0x64,0xc1,0xb6,0xc6,0x5c,0xb0, +0xf0,0x5e,0xb2,0x83,0x0a,0x09,0xdb,0x08,0xe3,0x16,0x92,0xd4, +0x19,0xa1,0xca,0x0c,0x3e,0x83,0x39,0x0a,0x18,0xf4,0x47,0xef, +0x0c,0x99,0xfb,0x89,0xcc,0x01,0xc9,0x3b,0x61,0x07,0xfe,0xc8, +0xd9,0xf6,0x67,0x3b,0x88,0xa2,0xc2,0x34,0x54,0x27,0x86,0xda, +0x09,0xa2,0x77,0xc6,0x5c,0x6c,0xc4,0xa1,0x3d,0xdd,0x6b,0x8d, +0xd8,0x5e,0x13,0x39,0xdb,0x70,0x06,0x94,0x4d,0x1e,0xd2,0x1d, +0x39,0x54,0x42,0x8e,0x97,0x2d,0xfa,0x10,0xd4,0xcb,0x8e,0x07, +0x88,0x92,0xc4,0x5f,0xa1,0xac,0xf1,0x3a,0x9d,0x09,0x62,0x33, +0xbb,0xc1,0x86,0xed,0xd5,0x66,0x1c,0xda,0xd2,0xd7,0x37,0xf3, +0x4a,0xd8,0x8d,0x36,0x1c,0xfe,0x10,0x52,0x8b,0xbb,0x61,0xdc, +0xd3,0x26,0x74,0x4f,0x37,0xf5,0xca,0xd4,0xf6,0x34,0xc3,0xd9, +0x7a,0x2d,0xd9,0xc5,0x14,0xe0,0xba,0xa1,0x1a,0xee,0x9b,0x4e, +0xb0,0x53,0x3a,0x53,0xab,0x13,0x94,0xaa,0x41,0xa1,0xf0,0x63, +0xb2,0x30,0x74,0xce,0xcc,0xd1,0x11,0xba,0xce,0xb7,0x35,0xdd, +0xe0,0x89,0x9e,0x5a,0x4d,0x3f,0xa1,0xe1,0x0f,0x7f,0x6c,0x86, +0xc3,0xc1,0xd1,0x5f,0x75,0x35,0x86,0xe6,0xac,0x67,0x3f,0x93, +0x01,0x04,0xd9,0x62,0x02,0x0b,0xbc,0x1b,0xce,0x8b,0xc8,0xff, +0x1c,0x46,0xad,0x14,0x33,0x6a,0xa5,0x94,0x96,0x53,0x2b,0xe5, +0xa4,0x55,0xad,0xcf,0xb3,0x29,0x1a,0x58,0xff,0xb1,0xa6,0x20, +0x2f,0xce,0x8e,0xd3,0xca,0xde,0x63,0xfd,0xf1,0x21,0x14,0x6a, +0xa1,0x3f,0x3d,0xba,0xb4,0xf2,0x58,0xde,0x8e,0x3c,0x0a,0xcd, +0x60,0xe9,0xc0,0x96,0xe8,0xc8,0xa0,0x56,0x60,0x17,0xc7,0x42, +0x0f,0xa8,0x39,0xa3,0x44,0xc3,0x9f,0xd2,0x33,0x58,0x09,0xcf, +0xbd,0xb0,0x8e,0xda,0x03,0xea,0x78,0xe2,0x73,0x58,0xd9,0x21, +0x8a,0x9d,0x62,0x67,0xb2,0x53,0x6c,0x4a,0xe4,0x19,0xea,0xa6, +0x44,0xe9,0xf0,0xd1,0x78,0x6e,0x00,0x2b,0xdb,0xd7,0xd4,0x30, +0xc8,0x06,0x06,0xe1,0x18,0x84,0x71,0x0c,0x4f,0x47,0x59,0xef, +0x4f,0x25,0x91,0x24,0xc5,0x3f,0x86,0x09,0xac,0x89,0x72,0x18, +0x4c,0xe9,0x8a,0x13,0xd1,0xf1,0xcb,0x6d,0x52,0xca,0x9a,0x2a, +0xa8,0x9d,0x58,0xd3,0xca,0x09,0xd0,0x4f,0x6b,0x9f,0xd0,0x13, +0x27,0xa0,0x8d,0x6c,0xeb,0xf5,0xcd,0x46,0x88,0x00,0xce,0x18, +0xe6,0x09,0xdf,0x48,0xa7,0x94,0x1f,0xa4,0x3f,0xbf,0xb2,0x9e, +0x06,0xbe,0x41,0xb8,0xa5,0x95,0x5e,0xe3,0x4a,0xff,0x3e,0xba, +0xc9,0xb2,0x7c,0xd4,0xc7,0xac,0x6f,0x26,0x6b,0x8b,0x7c,0x58, +0x6b,0x8b,0x3c,0x91,0xf1,0xc2,0x3d,0xfc,0xeb,0x2a,0x0c,0xa2, +0x16,0x88,0xa8,0x5c,0x90,0xeb,0x5f,0x25,0x23,0x12,0x47,0xc5, +0x8f,0xb4,0xba,0xbe,0x84,0xdb,0xf2,0x67,0xf6,0x1f,0x50,0x4f, +0x77,0x41,0x7d,0x1e,0xa8,0xfc,0x22,0xfc,0x9c,0x3a,0x71,0xd9, +0x44,0x3d,0x8a,0x22,0x34,0x50,0xce,0x4b,0x6b,0x02,0x95,0x1d, +0xbf,0x26,0x8f,0x48,0x18,0x19,0x3f,0xca,0xea,0x46,0x3c,0x83, +0xfe,0x49,0x0d,0xb5,0x0b,0xea,0xef,0x01,0x4a,0xf6,0x57,0xe8, +0x04,0xca,0x46,0x3e,0xc0,0x02,0x98,0x88,0x25,0xc1,0xb0,0xb8, +0x25,0x2e,0x40,0xf7,0xff,0xb2,0xa9,0xaa,0x72,0x8e,0x1a,0x13, +0x16,0xfc,0x8d,0x93,0x85,0x37,0x59,0x6a,0x96,0x01,0xfb,0xf0, +0xe7,0x70,0x98,0x31,0x09,0xeb,0xf8,0x56,0x63,0x12,0xd6,0xdc, +0xe9,0x23,0xf4,0x66,0x52,0x5f,0x28,0xc2,0xbe,0xd7,0xa1,0x2f, +0x38,0xc9,0xe6,0xc9,0xc4,0x03,0x27,0x7c,0x79,0x48,0xa8,0xd1, +0x5e,0x8c,0xad,0xab,0xa0,0x35,0x38,0x61,0xeb,0xeb,0xf4,0x4f, +0xf4,0x05,0xe1,0x0b,0x8f,0x1d,0x24,0x4f,0x0c,0xa2,0x3a,0xd4, +0xf1,0x4a,0x75,0x23,0xaf,0x79,0x0a,0x9a,0xc9,0x66,0x67,0x08, +0xd6,0xf9,0xce,0x4d,0x60,0x26,0x29,0x8f,0x2b,0xd5,0xc7,0xbc, +0x32,0x10,0x37,0x48,0x7b,0xc0,0xd5,0x23,0x63,0x16,0x76,0xe2, +0xd0,0x9b,0x9f,0x05,0x9d,0x7a,0x26,0xec,0x45,0x57,0xb9,0xa1, +0x4a,0x24,0xe5,0x69,0x85,0xfa,0x94,0x61,0x8e,0x49,0x7b,0xc1, +0xd3,0x73,0xcd,0x4c,0xec,0xc5,0xa1,0x0f,0x3f,0x13,0x7a,0x79, +0xca,0x8e,0xe9,0x44,0xb6,0xb0,0x22,0xb8,0x8d,0xbe,0xbc,0xa3, +0x07,0x9d,0x72,0xe7,0xd0,0x8f,0x4e,0xb9,0x7b,0x24,0xee,0xc1, +0x8e,0xd4,0xa2,0x0b,0x56,0xaa,0xcb,0xd9,0xfb,0xbc,0x38,0xab, +0xbe,0xe0,0x95,0xe1,0x38,0x4f,0xda,0x0d,0x4d,0x3c,0xd7,0xcc, +0x62,0xbb,0xa2,0x0f,0x7d,0x1f,0x1b,0x4f,0x6a,0x51,0x36,0xe1, +0xd0,0x29,0x5c,0xa9,0x3e,0x4b,0x81,0x3f,0x23,0x47,0x95,0xbc, +0xf1,0xc0,0x0d,0x06,0x27,0x2e,0x82,0x07,0x13,0xbc,0x35,0xa7, +0x2f,0x17,0x32,0xe2,0x34,0xbf,0x7f,0xf3,0xfa,0x3d,0x59,0x06, +0xb0,0x56,0x9a,0x70,0x83,0x28,0x70,0x22,0x8c,0x83,0x0b,0x70, +0x8d,0xfd,0xb6,0x57,0x30,0x8c,0xda,0xb3,0xcf,0x64,0xdb,0x2c, +0x7a,0xb3,0xef,0xcb,0xd5,0xf7,0xbc,0x32,0x1a,0xd3,0xe9,0x1d, +0x35,0xf7,0xa0,0x6f,0x44,0x2d,0xd2,0x00,0x66,0x91,0xf6,0xa4, +0x77,0x44,0xe5,0x45,0x8b,0x90,0xea,0xba,0x65,0xac,0xa3,0xfb, +0x7a,0x82,0x29,0xf4,0x66,0x0c,0x0c,0xe3,0x64,0xc4,0x38,0x31, +0x8c,0x81,0x62,0x82,0xab,0xeb,0x6a,0x77,0xfd,0xbe,0x94,0x2d, +0x36,0x06,0x17,0x52,0xa0,0x25,0x33,0x6f,0xe9,0x7e,0x0d,0x62, +0xfb,0xd5,0x83,0xee,0x6b,0x4b,0xd9,0xf4,0xb7,0xda,0x60,0xfb, +0xd7,0x9e,0x6a,0x4b,0x2d,0xd8,0xbe,0x11,0x4e,0x54,0xdb,0x51, +0x13,0xac,0xa6,0x90,0xe0,0x0b,0xe6,0xf8,0x96,0x4d,0x1d,0x59, +0x0d,0x1d,0x51,0x70,0x9a,0x30,0x08,0x1b,0xda,0xea,0x0b,0x47, +0x97,0x16,0x1f,0x3b,0xb6,0xeb,0x98,0xd5,0xea,0x8c,0xb5,0xcb, +0x33,0x12,0xa0,0x09,0x36,0xb4,0x2c,0x38,0x81,0x4d,0xa0,0xc1, +0x62,0x63,0xd5,0x74,0x11,0x3a,0x54,0x2f,0x93,0xf0,0x83,0x52, +0x05,0x1f,0xbc,0xd8,0xe6,0x00,0x4e,0xa0,0xbb,0xe4,0x98,0xc4, +0xae,0x6a,0x8e,0x10,0x5c,0x2b,0x51,0x73,0x04,0x47,0x12,0x3c, +0x23,0x2d,0x86,0xdf,0x7c,0xf1,0xa8,0x2d,0xd9,0xc4,0x3f,0xb9, +0xbd,0xe5,0xd7,0x5c,0xc3,0xfc,0x72,0x6e,0xd1,0xb8,0xde,0xd1, +0xbd,0xa8,0x30,0x31,0xec,0x24,0xd0,0x0b,0x8b,0x65,0xc7,0x02, +0xc6,0xe1,0xe4,0xc5,0xab,0xc3,0x14,0x8b,0x0d,0x29,0xa3,0x13, +0xc7,0xc4,0x8f,0xb1,0xba,0xb6,0x84,0xfb,0xf5,0xfe,0xda,0x7b, +0x2f,0x75,0xb7,0xd5,0xc0,0x60,0xc5,0x24,0x46,0x98,0x99,0x3a, +0x33,0x75,0xb6,0x1e,0x3a,0x30,0x64,0xcc,0x9a,0x10,0xa5,0xe1, +0xc6,0x94,0xa8,0x04,0x26,0xcc,0xab,0x96,0x70,0x9b,0x9f,0x66, +0x3f,0x79,0xaf,0x7b,0xa8,0x21,0x17,0x09,0x53,0x53,0xa7,0xa5, +0xce,0xd0,0x90,0x5f,0xf8,0x40,0x59,0xfe,0x4d,0x63,0x9f,0x21, +0x1a,0xfb,0xf4,0x61,0xaa,0xca,0x4e,0x68,0xec,0x4d,0xd9,0x9f, +0x6c,0x54,0x55,0x64,0xc6,0x3e,0x1b,0x53,0x55,0x25,0x54,0x59, +0x42,0xed,0xc4,0xaf,0x6e,0xdf,0x8e,0x52,0x4b,0xca,0xff,0x44, +0x3f,0x23,0x9f,0xe5,0x29,0xe3,0x6e,0xe4,0x97,0xb0,0x8b,0xf2, +0xd9,0xd6,0xcc,0xed,0x8b,0xeb,0x59,0x8c,0x72,0x8c,0x16,0xa3, +0x2c,0x3b,0x02,0xa1,0xef,0x7e,0xbf,0x36,0x34,0x99,0xbe,0x37, +0x7b,0xf7,0xfa,0xa2,0x0e,0xdc,0x2b,0xd4,0x16,0x41,0xe0,0xce, +0xa3,0x4d,0xa4,0x3b,0x3a,0x62,0x73,0x7d,0x51,0xd4,0x9d,0x7b, +0x45,0x95,0x7b,0xcb,0xe9,0x17,0x9b,0xc9,0x8e,0x7c,0xba,0x62, +0xb0,0x65,0x71,0xae,0xe8,0xef,0xd8,0x26,0xe8,0x05,0x9a,0xd0, +0xff,0x78,0xbc,0x0d,0x67,0x65,0xae,0x37,0x19,0xcf,0xbb,0x8e, +0x09,0x41,0xd3,0x76,0xfa,0xa2,0x31,0x1c,0xfc,0xf4,0x21,0xf7, +0x22,0xfc,0xa4,0x13,0xab,0x07,0x2a,0x8e,0xd4,0x70,0xb8,0x42, +0x99,0xcc,0x45,0xf2,0x25,0x68,0xb2,0xa4,0x1a,0x94,0xb6,0x0a, +0xb5,0xf8,0xad,0x71,0x23,0xe8,0x04,0xd8,0x88,0xbf,0x4b,0xf4, +0xca,0x00,0x1b,0x79,0xb1,0x39,0x51,0x33,0xee,0x50,0xf3,0xef, +0x4b,0xd0,0x18,0xfa,0x99,0x28,0xac,0xa3,0x17,0xbd,0x85,0x8d, +0xe0,0xc0,0x60,0xff,0x32,0x58,0x4b,0x06,0x4b,0xf2,0x09,0x18, +0x8a,0x73,0x7d,0x65,0x1b,0x3d,0x11,0x93,0xbb,0x06,0x0f,0xc0, +0x85,0xdd,0x58,0xab,0x54,0x5d,0xf1,0x83,0x63,0xf9,0x39,0xbf, +0x64,0x6e,0xd2,0x5a,0x77,0xcb,0xe6,0x48,0x52,0x17,0x50,0xae, +0x9b,0xec,0x1e,0x3c,0x10,0x17,0x76,0xd7,0x10,0x45,0x0f,0x8e, +0xe6,0xe7,0x6c,0x60,0x85,0xad,0x1b,0x5b,0x1e,0x61,0x85,0xad, +0x4d,0xe7,0x67,0xb0,0x1e,0xde,0x56,0xe2,0xca,0xfc,0xda,0x73, +0xae,0x76,0xc3,0x06,0x62,0x03,0x67,0x76,0xce,0x55,0x92,0x77, +0x7c,0x4f,0xce,0x9a,0x55,0x94,0x43,0x27,0x53,0xab,0xd2,0x92, +0x1d,0x60,0xb5,0x22,0x6a,0xf2,0x4d,0x1e,0xff,0xa1,0x3c,0x38, +0xf4,0x55,0x67,0x97,0xb0,0xd7,0x83,0xab,0x94,0x99,0xbe,0xd4, +0xec,0x70,0x3c,0x48,0xc4,0x67,0x3c,0x2e,0xad,0x0e,0xe2,0x6c, +0xe9,0x9f,0x2f,0x41,0xdc,0x13,0xfe,0x1a,0x8c,0xe2,0xe0,0x20, +0x8f,0x06,0xa5,0x3d,0x8b,0x5a,0x7c,0xc9,0x61,0x12,0x4f,0x75, +0x9d,0x97,0x1c,0xe3,0x7f,0xb7,0x24,0xaa,0xdb,0x6d,0xdf,0x94, +0x22,0x9b,0x97,0x92,0xe7,0xd9,0xcf,0xfe,0xd5,0x55,0xaa,0xbf, +0x07,0x52,0x86,0x36,0x21,0x75,0xf2,0xb2,0xc9,0x7a,0x9c,0x2c, +0xba,0x11,0xa5,0x37,0x6e,0x96,0xd4,0x4e,0x7f,0xf8,0xe0,0x4a, +0xca,0x6e,0x32,0xe0,0x34,0xfd,0x09,0x93,0x4d,0xd4,0x4e,0xaf, +0x94,0x4e,0xbc,0xd9,0x57,0xc5,0xb2,0xdc,0xb0,0x2c,0x2b,0x77, +0x8c,0x6c,0xbb,0x9a,0xe0,0x14,0x72,0x62,0x6c,0xe5,0xa5,0x13, +0x05,0x2c,0x78,0x98,0xa3,0x80,0x83,0x14,0xb0,0x86,0x01,0x32, +0x4f,0x8c,0x3d,0x5f,0x7e,0x32,0x8f,0x6a,0x9e,0xab,0xd3,0x33, +0xe4,0x66,0x1e,0x44,0x36,0x6c,0x25,0x38,0x43,0xb5,0x66,0xdd, +0x9c,0x28,0x03,0x73,0x71,0x0c,0x51,0x56,0xba,0x09,0xea,0xda, +0xf9,0x19,0x21,0x4a,0xda,0x76,0xce,0xee,0x3a,0x9c,0xb1,0x7b, +0x2d,0xf8,0xba,0x50,0x6e,0xf6,0x5a,0xe3,0x66,0xce,0xcc,0x8e, +0x0c,0x63,0x76,0xe4,0x25,0x2f,0x57,0xd5,0xe3,0x95,0x37,0xfe, +0x42,0x6f,0x69,0x40,0x85,0xa4,0x7a,0xbc,0xd3,0x8a,0x18,0x4f, +0x84,0x31,0x70,0xb9,0x12,0x2f,0x43,0x04,0xdc,0x3f,0xaf,0x3a, +0xa9,0x4f,0x34,0x9e,0xa1,0xba,0x81,0xbd,0x00,0xf5,0x2e,0x5e, +0xa3,0x3f,0xaf,0xbe,0xef,0x75,0xac,0x67,0x50,0x39,0x93,0xce, +0x50,0xf5,0x84,0xbf,0x7d,0x6c,0x68,0x67,0xc3,0x40,0xa1,0xf3, +0xe8,0xa1,0x1e,0x7a,0xb3,0x6e,0x73,0xa8,0xcc,0xa2,0x6c,0x46, +0xdf,0x94,0x48,0xb1,0x7f,0xc2,0x24,0x18,0x84,0x87,0xfb,0xc3, +0xd4,0x0e,0x38,0x09,0x5b,0xca,0xa6,0x31,0xa4,0x84,0x2a,0x83, +0x9e,0x4c,0x19,0xfc,0x6e,0x76,0x5a,0x07,0x9c,0x8c,0x2d,0xa9, +0xfc,0x2a,0x61,0xf2,0x4b,0xb6,0xad,0x66,0xf5,0xba,0x5a,0xc9, +0xb6,0xde,0xec,0xa4,0x61,0x34,0x81,0xf1,0xae,0x38,0x16,0x3b, +0xca,0xb6,0xac,0x32,0x84,0xcd,0x4a,0x12,0xc7,0x8a,0x11,0x1a, +0xd7,0x48,0xf8,0x0b,0x46,0xb1,0xda,0xe0,0xc1,0x30,0xce,0x99, +0x6a,0x95,0x5d,0xa8,0x72,0xba,0xbb,0xb6,0x64,0xe1,0x12,0x56, +0xcb,0xc4,0x47,0xd3,0x19,0xf5,0xb3,0x09,0x7a,0xc1,0x73,0xd9, +0xc0,0x22,0xda,0xd4,0x69,0xe1,0xca,0x34,0xba,0xbf,0x5a,0x4a, +0x58,0x97,0xaa,0x3b,0x3f,0x78,0x67,0xcc,0xa3,0x66,0x31,0x55, +0x64,0xe6,0x02,0xf1,0x49,0xd8,0x8e,0x3f,0x70,0x76,0x03,0xa8, +0x66,0x24,0xd2,0xe7,0x7c,0x1c,0x11,0x5b,0x6a,0x0e,0x35,0xf9, +0x33,0x11,0x35,0xcd,0x80,0xf9,0x2f,0x4b,0x2b,0xa8,0x66,0x90, +0xab,0x55,0x28,0xd1,0x34,0x03,0x5b,0x4b,0xcd,0x7b,0x69,0x13, +0x9b,0x6d,0x6c,0x88,0x83,0x3f,0x41,0x1d,0x82,0xdd,0x05,0xf9, +0xc7,0xbf,0x08,0x4c,0x72,0xa3,0x5a,0xaf,0x07,0xf9,0x12,0xa2, +0x76,0x92,0xed,0x1d,0x89,0x98,0xd4,0x75,0xd8,0x10,0x34,0x6b, +0xcf,0x0a,0xd5,0x9f,0xce,0x3b,0xb2,0xf7,0xa8,0x56,0xcf,0x31, +0x99,0x05,0xff,0xbb,0x90,0x98,0xb5,0x31,0x1a,0x6f,0x4b,0xf2, +0xed,0x17,0x89,0x73,0x7c,0x0f,0xf6,0xb7,0x04,0xeb,0x53,0x0f, +0x0f,0xe5,0x1f,0xd9,0xb0,0x86,0x6e,0x83,0x44,0xd8,0x46,0x15, +0xfe,0x83,0xe7,0x70,0xed,0x3f,0xd1,0xab,0x8d,0xcf,0x79,0x72, +0xeb,0xa1,0x03,0xd0,0xcc,0x49,0x3b,0xc7,0xd5,0x9e,0xef,0x8c, +0xcc,0xe5,0x6b,0x12,0xa8,0xc9,0x69,0x6d,0x6c,0x71,0x6a,0xc6, +0x0e,0x0a,0xd8,0x8a,0xb2,0xbc,0x8b,0xc0,0x6c,0x67,0xfa,0x77, +0x32,0x71,0x11,0x59,0xc3,0xe4,0xad,0x2b,0x77,0x58,0xc1,0xc6, +0x42,0xf5,0xd3,0x60,0xd8,0xc9,0xc7,0x0d,0xea,0x35,0x09,0xa7, +0x0f,0xdd,0x33,0xd8,0x12,0x6c,0x0f,0x3e,0xd9,0x59,0xb0,0x67, +0x43,0xfa,0xe6,0xe5,0x1b,0x92,0xc4,0xff,0x9d,0x36,0x33,0x43, +0x66,0x74,0xea,0x58,0xcd,0x8f,0xba,0x90,0x19,0x32,0xcc,0x8f, +0x1a,0x15,0x1f,0xc5,0x4e,0x9b,0x61,0x8e,0xb8,0xe5,0x15,0x05, +0x72,0xba,0xeb,0x5f,0x81,0x63,0xbe,0x07,0x0e,0x4b,0x8c,0x8c, +0x1b,0x6e,0xa5,0x3e,0x0f,0x50,0x04,0xb1,0x36,0xb2,0xe9,0x26, +0xf3,0x0c,0xad,0x11,0x46,0x52,0xe0,0x58,0x0d,0x18,0xa8,0x6c, +0xd9,0x92,0x3c,0x34,0x71,0x58,0x9c,0x16,0xe9,0x44,0x81,0x85, +0x87,0x8e,0x6c,0xcb,0xb1,0x52,0x3a,0xe0,0xd0,0x9a,0x4e,0xe4, +0xa5,0x6c,0xc7,0x11,0xad,0x77,0xda,0xac,0xec,0x6d,0xd0,0xc6, +0xc0,0xf6,0xdc,0x25,0x89,0xbe,0x68,0xbb,0xdc,0x6c,0x17,0x79, +0x51,0xab,0x6e,0x68,0x5b,0x6e,0x7c,0xea,0x84,0x65,0x93,0xf4, +0x94,0x37,0x3a,0xaa,0x6e,0x5c,0x09,0x7f,0x14,0xea,0x73,0xd0, +0x85,0x3f,0x82,0xf5,0xb9,0x32,0x1e,0x1d,0x14,0x37,0x6e,0xcc, +0x00,0x29,0x9d,0xbf,0x88,0x91,0x1c,0x5a,0x53,0xf9,0xd6,0xf0, +0x1f,0xd2,0x19,0xd3,0xff,0x7f,0xc7,0xc1,0xb8,0xf2,0x09,0x6f, +0xe6,0x41,0x5a,0x63,0x1a,0xce,0xd4,0xce,0x0d,0x76,0xe0,0x4a, +0xaa,0x32,0xfa,0x60,0x05,0x3b,0x30,0xa8,0x79,0x46,0x9a,0xd1, +0x99,0x75,0xda,0xcc,0x05,0x5c,0xf9,0x91,0x07,0x6f,0xfc,0xac, +0x5c,0xa0,0x7b,0xa4,0x9d,0xda,0x43,0x69,0xc7,0x7b,0x9c,0xa7, +0xba,0x29,0x14,0x53,0xe5,0x14,0x2d,0xd5,0xf1,0x6a,0x2f,0xf2, +0x2d,0x62,0x6b,0x24,0xcb,0xf0,0xa1,0xa3,0x10,0x6d,0x34,0x5a, +0xb6,0x79,0xcb,0x46,0x01,0x6c,0x64,0x22,0xdb,0x8e,0x27,0xd5, +0x0d,0x2a,0xb5,0xee,0xe0,0x2a,0x06,0x28,0x28,0xdb,0xd8,0x11, +0xd9,0x71,0x03,0x19,0x20,0xf5,0xa0,0x3a,0x83,0x5f,0xcd,0x02, +0x02,0x7e,0x3d,0x12,0xf7,0x62,0x4f,0xb9,0xd9,0x05,0x42,0xf7, +0x99,0xaa,0xb0,0x88,0xda,0x31,0x24,0xa5,0xb7,0x7f,0x6a,0x2f, +0xeb,0xd5,0x41,0x35,0xcb,0x09,0x35,0xd0,0x76,0x4a,0xe0,0xe5, +0x81,0x01,0xf4,0xe6,0x0a,0x2b,0x79,0xb3,0xaf,0xc5,0x75,0xff, +0x9f,0x35,0x6e,0x0b,0x0f,0xce,0x8c,0x8a,0x1a,0x3f,0x73,0xb0, +0xc1,0xec,0x53,0x45,0xf1,0xf9,0xa3,0xd1,0xfb,0x46,0xd4,0x76, +0x0d,0xa3,0x30,0x63,0xd3,0xe8,0x5d,0x67,0x29,0xec,0xec,0x91, +0x69,0x43,0x65,0x8e,0xda,0x2d,0xcd,0xb5,0x00,0x01,0x4e,0xed, +0x70,0xa5,0x06,0xc9,0x22,0x48,0xf3,0xc7,0x8d,0x5b,0xd8,0xa1, +0x3a,0x1f,0x0a,0xae,0x49,0xc2,0xc0,0x79,0xf3,0x26,0xfd,0xac, +0x0b,0x34,0xb6,0x2d,0xa5,0xbf,0x40,0x88,0xab,0x47,0x0b,0xa7, +0x57,0x1e,0x10,0x02,0x21,0x2f,0x6f,0x7f,0xf8,0xab,0xf5,0x6d, +0x0c,0x31,0x88,0x2c,0x67,0xd4,0xd7,0xc5,0xf9,0xb5,0x2f,0xcb, +0x67,0x7d,0x5d,0xf5,0xf6,0xb5,0x4b,0x15,0x86,0x1a,0xc9,0x3d, +0x9b,0x3b,0xbd,0xee,0xa9,0xa5,0x92,0xde,0xf9,0xf0,0xde,0xf5, +0x8e,0x56,0x7b,0x1a,0xc3,0x5c,0xbb,0x39,0xda,0xbf,0x72,0xd7, +0xc8,0xf7,0xff,0xfe,0xe4,0xfa,0x40,0x23,0xcf,0x96,0x1d,0xce, +0xb1,0x2e,0x4f,0xed,0x0d,0xa2,0xfc,0x93,0x39,0xf9,0x88,0x2e, +0xf4,0xbe,0x9c,0xc1,0x3a,0x21,0x2b,0x76,0xf5,0xe2,0x78,0xfa, +0xbc,0x3b,0xf6,0x22,0x58,0x23,0xb6,0x20,0x6a,0x61,0x15,0xaf, +0x76,0x81,0x1f,0xa4,0x41,0xa2,0xb4,0xf0,0x13,0x4c,0xa7,0x4a, +0x65,0x5e,0x08,0x0b,0x84,0x8d,0xf1,0x41,0xaf,0xea,0x76,0x84, +0x1d,0x7b,0x9a,0x8d,0xd4,0x42,0x63,0x63,0x7d,0xd0,0x87,0x51, +0x38,0xe5,0x16,0x81,0xdf,0x7d,0x55,0x3b,0x65,0x97,0x46,0x1f, +0x23,0xcb,0x6f,0xb4,0x8b,0xd9,0x3e,0xd8,0x83,0x01,0x7e,0x60, +0x80,0x07,0xbe,0xaa,0x4e,0x03,0xe0,0xda,0xcf,0x02,0xf4,0x00, +0x39,0x7b,0xf3,0x3b,0x56,0x25,0x55,0xb6,0x2d,0x62,0xa1,0x60, +0xb8,0xf9,0x83,0x40,0xbf,0x06,0x1d,0x4b,0xeb,0xa0,0xd4,0xf9, +0xae,0x68,0x65,0x2c,0x6c,0xef,0x00,0x95,0x90,0xc5,0x3c,0x3d, +0x17,0x51,0xc7,0x1b,0x45,0x78,0x28,0x5c,0xdb,0xc8,0x44,0xf8, +0xe3,0xff,0x89,0xf0,0xe9,0xa9,0xd3,0x53,0x67,0xea,0xc5,0xea, +0xfa,0xf0,0x44,0xa2,0x06,0x78,0xdd,0x4a,0x35,0x05,0xe2,0x3c, +0xb0,0x48,0xb6,0xfd,0x93,0x39,0x59,0xe1,0x81,0xf4,0x2f,0xfc, +0x20,0x9b,0xdb,0x92,0x0f,0xb6,0x38,0xc7,0x95,0xa8,0x1b,0xfe, +0x95,0x60,0xa6,0x2d,0xce,0xa4,0x16,0x4c,0x23,0x49,0xb6,0x3d, +0x47,0x30,0x1f,0x7f,0x79,0xab,0xda,0x10,0x26,0x85,0x87,0xdf, +0x51,0x86,0x0b,0xa8,0xb2,0x24,0xf6,0xc3,0x2c,0xa3,0xfd,0x13, +0x51,0xed,0x95,0xdb,0x04,0x76,0xc0,0x3a,0x5e,0x94,0x7f,0xac, +0x62,0x6e,0xc6,0x78,0x09,0xad,0x28,0xc3,0xb0,0x12,0x44,0x2d, +0x50,0x6c,0x6b,0x41,0xc6,0xe9,0x4a,0xdd,0x39,0xef,0x08,0x01, +0x9b,0x8e,0xf4,0x44,0x7b,0x74,0xd2,0x9f,0x1e,0x76,0xf3,0x66, +0x41,0xa9,0x6c,0xdf,0x84,0xf9,0x21,0xfa,0x10,0x2f,0x4a,0x6c, +0xce,0x2a,0xb9,0xdf,0x2c,0x28,0xd1,0x88,0xc6,0x00,0x33,0xad, +0x6a,0xfc,0xb7,0xd7,0xd9,0x69,0xaf,0xbb,0x71,0xab,0xa0,0x64, +0x5f,0xa9,0xd5,0x6a,0xad,0x6a,0x3c,0x65,0xe0,0x15,0xdf,0x31, +0xf0,0xa4,0x1e,0x43,0x87,0xe1,0x8f,0x9d,0x4e,0x0e,0xb7,0xbc, +0x52,0x94,0x77,0x78,0xcf,0xe1,0xcc,0x35,0x19,0xac,0x40,0xab, +0x33,0xe5,0x74,0x27,0x73,0xd1,0xfe,0x1f,0x63,0x25,0x6e,0xfa, +0x83,0xda,0x54,0x12,0xbc,0x3e,0x83,0x7e,0xf8,0x68,0xe9,0x4b, +0xf4,0x7d,0xf8,0x4f,0x90,0xf5,0xdb,0x08,0x54,0xf0,0xe2,0x17, +0x0b,0x59,0xdf,0x8b,0x28,0xe7,0xb4,0x68,0x35,0xa6,0x45,0x2c, +0x88,0x5d,0xba,0x62,0x87,0x58,0x4a,0x30,0x0a,0xac,0x24,0xcd, +0xca,0x81,0x86,0xb2,0xbc,0x99,0x6a,0x83,0xde,0x04,0x6d,0xd5, +0x26,0x35,0xa3,0x08,0xdb,0xf6,0x6e,0x98,0xa2,0x05,0x86,0xac, +0x7f,0x4c,0xb7,0x5b,0xb9,0xfa,0x3a,0x58,0x50,0x62,0x86,0x4b, +0xb5,0xaa,0x70,0x9f,0xef,0x54,0xe1,0xe6,0x21,0x8a,0x5a,0x86, +0x2d,0x28,0xb3,0xb0,0xd8,0x4e,0x46,0xd2,0x15,0x1f,0x11,0x74, +0xa2,0xaf,0xa9,0x54,0x6f,0x07,0x0a,0xca,0xb4,0x70,0xd9,0xe6, +0x77,0x32,0x9b,0x7c,0x91,0xd4,0x68,0x49,0x39,0x5e,0xae,0x6e, +0x79,0x2a,0x37,0xcb,0x22,0xd8,0xca,0x96,0x98,0xc9,0xa6,0x37, +0x09,0x3c,0xa7,0xca,0xfc,0x6c,0xde,0x3e,0xea,0x60,0x41,0xe1, +0xc9,0x83,0x7f,0x1b,0x7e,0xe3,0xff,0x39,0x39,0x7e,0xf0,0x90, +0xa8,0xf1,0x76,0x06,0xb3,0xa5,0xdd,0x58,0x25,0x11,0x16,0x10, +0xf7,0x33,0x4c,0xcf,0xde,0x0e,0xae,0x06,0x7c,0xe9,0x28,0x79, +0x60,0xa8,0x6c,0x9e,0x41,0x6a,0xfe,0x22,0x2a,0x95,0x9b,0x52, +0x41,0xd1,0xb6,0x2a,0xfd,0x7e,0xbe,0xaa,0x68,0xd6,0x90,0x21, +0x03,0x67,0xf9,0x19,0x26,0xf2,0x7e,0x03,0xb7,0x15,0x18,0x44, +0x76,0xca,0x39,0x8b,0xbe,0xa8,0xb5,0x41,0x8d,0x62,0xb0,0xc2, +0x6d,0xd7,0x28,0xec,0x5a,0x21,0x85,0x0d,0x9a,0xe5,0x4f,0x61, +0xfe,0x83,0x18,0x4c,0xd6,0x57,0x91,0xe8,0xb9,0x53,0xc6,0xeb, +0xc2,0x2b,0x87,0x42,0x87,0x24,0xbd,0x28,0x40,0x87,0x35,0x15, +0xa7,0xcb,0x64,0xbb,0x87,0x64,0xde,0x9c,0x89,0x63,0x75,0x21, +0x95,0x03,0xa0,0x43,0xa2,0x9e,0x29,0xd4,0x69,0x12,0x5e,0xa4, +0x0a,0xf5,0x45,0xaf,0x96,0x6a,0x8f,0x77,0x4c,0x9d,0x5e,0x43, +0xd5,0xe9,0x77,0x4c,0x9b,0x8e,0xa3,0x4a,0x83,0x28,0x9b,0x7e, +0x21,0x78,0x58,0x16,0x56,0x91,0x73,0x5a,0x3d,0xe0,0x81,0xa2, +0x34,0x70,0xca,0xb4,0xf1,0x0b,0x0c,0xc9,0x2b,0x36,0x3e,0x2b, +0x3d,0xff,0xd7,0x55,0xab,0x9e,0xbc,0xfb,0x00,0x8f,0x36,0xf8, +0x93,0xae,0x6d,0x41,0xbf,0xd7,0xbf,0x9f,0x2b,0x79,0x78,0x6f, +0x50,0xa1,0xb7,0x5e,0xf3,0x59,0x8c,0xd1,0xba,0xaf,0x46,0x62, +0x63,0xe8,0xe1,0x47,0x9f,0x8b,0x28,0x30,0xf8,0xa9,0xcd,0xe5, +0xfa,0x3f,0x11,0x70,0x34,0xe6,0xd0,0x34,0xc6,0x19,0x5a,0x43, +0xd9,0x11,0x46,0x88,0x3d,0x85,0xd8,0xf9,0xa9,0x2d,0xe1,0x8d, +0xe6,0x08,0x89,0x02,0xa7,0xaf,0xb0,0x79,0x5a,0xfb,0xd8,0xd1, +0x14,0xe6,0xe1,0x87,0x0e,0x74,0xc6,0xde,0x4f,0x75,0x95,0x4d, +0x1b,0x12,0xd1,0xaf,0x23,0xfa,0x85,0x81,0x5f,0x3b,0xf4,0x0b, +0x65,0xee,0x9a,0x00,0xd9,0xe2,0x30,0x81,0xcf,0xbe,0xaa,0x2b, +0xf3,0xd7,0xc0,0x14,0xf0,0x93,0x16,0x2a,0x8d,0xfd,0x54,0x07, +0xd9,0x62,0x0d,0xb9,0xff,0x72,0xf3,0xd6,0x62,0x43,0x74,0x25, +0xb7,0x60,0xb8,0xdb,0xfc,0x20,0x6b,0xb8,0x9b,0x2a,0x89,0xb2, +0x5d,0x0a,0x91,0x6d,0x96,0xd2,0x27,0xc5,0x9c,0x0a,0xff,0x6a, +0x22,0x2a,0x2b,0x08,0xfa,0x2a,0x81,0x92,0xea,0x8e,0x6b,0x65, +0x93,0x12,0x16,0x49,0xb3,0x87,0x17,0x59,0xb8,0x80,0xd6,0xb9, +0x63,0x35,0x04,0x55,0xaa,0x11,0x81,0x10,0xb2,0x54,0x40,0x3e, +0xc2,0x0f,0x3b,0x62,0x43,0xfd,0x99,0x61,0x8f,0xae,0x94,0x16, +0x1f,0x3e,0x6d,0x25,0xb6,0x25,0xb8,0x15,0xcd,0x20,0xc3,0x57, +0xbd,0x58,0x05,0xab,0xc0,0x0c,0xb3,0xab,0x94,0xdf,0x59,0x4d, +0xb5,0xd9,0xbb,0xc8,0x1b,0x71,0xb3,0xee,0xb5,0x6c,0xde,0x8b, +0x4c,0xe0,0x5d,0x47,0x87,0xa2,0xd8,0x5e,0x5f,0x4c,0xd5,0xcb, +0xc6,0x1f,0x4e,0x69,0x5a,0xf6,0x7e,0xab,0xb5,0x19,0xeb,0x53, +0x65,0x07,0x77,0x12,0x6f,0xb5,0x20,0x36,0x29,0x6d,0xeb,0x8e, +0xac,0x5d,0x69,0xfb,0xad,0xa0,0x7f,0x89,0x78,0x2a,0x27,0x2f, +0xf7,0x8a,0xee,0xfa,0xb0,0x42,0xb7,0x1e,0x91,0x51,0x61,0x0b, +0xf4,0x05,0xf3,0xb9,0x9c,0xec,0x9d,0xbb,0x0b,0xac,0x4f,0xee, +0x9d,0x3e,0xd2,0xb0,0x58,0x18,0x33,0x6f,0xf2,0x88,0xd1,0xfa, +0xaf,0x45,0x57,0x8f,0x2a,0x13,0x24,0x2f,0xd4,0xe1,0x26,0xb0, +0xf2,0x56,0x6d,0x94,0xb6,0xbc,0x57,0x85,0x44,0x07,0x7a,0xd8, +0xc4,0x8b,0x60,0x21,0xc9,0x0d,0xdf,0x90,0x49,0x60,0x03,0xd7, +0x2a,0xf0,0x1a,0x34,0x05,0x6a,0xe4,0xb6,0x50,0x07,0xcb,0x26, +0x07,0x98,0x73,0x4b,0x0b,0xd1,0x2c,0xe7,0x66,0xd7,0xc6,0x53, +0x5a,0x57,0xc7,0xb0,0xb8,0xe3,0xfb,0xfd,0x94,0x74,0x5c,0x76, +0x8b,0x3e,0xfd,0xb2,0x9d,0x35,0xa9,0x5e,0x84,0x7a,0x49,0x13, +0xf9,0x38,0x91,0xd1,0x5c,0x99,0x62,0x39,0x59,0x53,0x2c,0xd5, +0x2a,0x4d,0xa9,0x8c,0x38,0xcf,0xa4,0x62,0x3b,0x46,0x77,0x67, +0xf4,0x5d,0x94,0x3e,0x9b,0x29,0x9b,0xa5,0x92,0xda,0x13,0x3a, +0x28,0x3d,0x79,0xb3,0x2f,0x51,0xc4,0x19,0xad,0x82,0x61,0x2e, +0x4e,0xb8,0x0a,0x3b,0xda,0xbe,0x85,0xb9,0xce,0xae,0xc1,0x30, +0x43,0x1b,0xa1,0xc5,0x5b,0xc1,0x6c,0x16,0x71,0x92,0x4d,0xe2, +0xc9,0x07,0x98,0xed,0x24,0x9b,0xa6,0x93,0x0f,0x82,0x19,0xdd, +0x6d,0x3f,0xa9,0x73,0x24,0xe5,0x68,0xa9,0xba,0xee,0xa9,0x6c, +0xf7,0x81,0x98,0x49,0x2d,0xa0,0x8b,0x96,0x83,0xda,0xc5,0x78, +0x85,0x3e,0xea,0x41,0xd9,0xf4,0x1d,0x51,0x2e,0x9f,0xe7,0xcd, +0x8c,0x3a,0x10,0x2e,0x1e,0xac,0x09,0xad,0xe5,0xfe,0xb8,0x7e, +0x0b,0xf9,0x7f,0x54,0x64,0xd1,0x27,0x8a,0x42,0x8a,0x5b,0xc7, +0xd4,0xce,0x35,0xe5,0x44,0x0d,0x13,0xb5,0xbe,0x33,0xe3,0xa9, +0x6e,0x79,0x30,0x1c,0x26,0xdb,0x51,0xb9,0xda,0xb5,0xd6,0x93, +0xc9,0x1a,0x22,0xb8,0x0d,0xbb,0xa6,0xfc,0x2e,0xeb,0x1b,0xb0, +0x6f,0x4a,0xef,0xf2,0x08,0x9b,0x62,0x53,0x97,0x2e,0xa8,0x47, +0xfd,0x6b,0x37,0x68,0x2a,0x5b,0x8c,0x20,0x4f,0xcb,0xcf,0xfe, +0xfe,0xbb,0x28,0x2d,0x68,0x89,0xfa,0x58,0x6c,0x47,0xf9,0xbe, +0x01,0x2e,0xc2,0x1a,0xd5,0x2a,0x90,0x9a,0xe1,0x4d,0xa9,0x19, +0xfe,0xcb,0x67,0x9e,0x09,0x8d,0x75,0x9b,0xde,0x51,0x69,0x26, +0xdb,0x9e,0x25,0x78,0x11,0x63,0x3f,0xf1,0x5a,0x35,0x90,0x4d, +0x6f,0x35,0x1a,0xe5,0x60,0x95,0xb8,0xf6,0x03,0xcf,0xc4,0x48, +0xf6,0xe6,0xd7,0x1a,0xed,0x0c,0xc1,0x5c,0x5c,0xfb,0x8e,0x65, +0x0c,0x36,0xc9,0xde,0xfc,0xd2,0x20,0x6a,0x67,0xc5,0xe3,0x64, +0x9b,0x34,0xca,0x19,0x79,0xc5,0x45,0xa2,0x8f,0xd9,0xed,0xaa, +0x6a,0x4f,0x5f,0x2c,0xa6,0x8f,0xde,0x11,0xdf,0x2f,0xb6,0x55, +0x3c,0x0a,0xe0,0x2e,0x85,0xc5,0xf9,0x25,0x7a,0x24,0x99,0xfe, +0x2b,0xc2,0x0a,0xe9,0xaf,0x4b,0xa5,0x17,0x36,0x3e,0x4f,0x5e, +0x61,0xf9,0xf3,0xfc,0xc9,0xd3,0x07,0x5b,0xfb,0x0c,0x2c,0xbc, +0xf7,0xf0,0x5c,0xe9,0xef,0x6f,0xf2,0xfb,0xb6,0x45,0x0b,0xcf, +0xd6,0xdd,0x06,0x52,0xfd,0xea,0x57,0x59,0x7e,0x4c,0x95,0x55, +0x2a,0xf1,0x89,0xb1,0xdd,0x52,0x45,0x4d,0x2c,0x59,0x08,0xb3, +0xfc,0x31,0x46,0xbd,0x43,0x8c,0xec,0xf8,0xda,0x6e,0x22,0xa6, +0xa5,0xa7,0x2f,0x4f,0x4b,0x86,0x86,0xd8,0x95,0x95,0x2d,0x15, +0xa1,0xd5,0x92,0xec,0x98,0xb4,0x98,0xf8,0x1a,0x3b,0xf2,0x6b, +0x61,0x56,0xf1,0x25,0xdd,0x4d,0x1f,0xb1,0xe6,0x26,0x79,0x85, +0x75,0x2d,0x73,0x8e,0xee,0x3d,0xb0,0xf5,0xc0,0xca,0x55,0xe9, +0xcb,0x57,0x2d,0x7d,0x4b,0xc7,0x79,0x79,0xed,0x5f,0xcb,0x5c, +0x0f,0x6d,0x89,0xd4,0x95,0x29,0xaf,0xb1,0xbe,0x65,0xce,0x89, +0xbd,0x87,0xb6,0x1e,0x4a,0x5b,0xb5,0x6a,0xf9,0xaa,0x94,0x37, +0x68,0x6a,0x79,0xea,0x54,0xfb,0x4f,0x1a,0x44,0xb6,0x0f,0xa4, +0x3c,0x7b,0x27,0x61,0x1d,0x43,0xb2,0xb5,0xa6,0x0f,0xab,0x56, +0xa5,0xa7,0xa6,0xa5,0xbc,0xc3,0x7a,0x96,0xc7,0x8f,0xed,0x3b, +0xb0,0xf5,0x60,0xda,0xaa,0xd5,0x2b,0x56,0x25,0x7f,0xc0,0x1f, +0xe8,0xdd,0xb6,0x7e,0x1b,0x9f,0x15,0xb7,0x3c,0x76,0x89,0x55, +0xad,0xb0,0x78,0x2c,0xeb,0xb3,0x8c,0xa2,0x82,0x0a,0x8e,0x00, +0xe1,0xce,0x3d,0xf0,0xc0,0x0d,0xdc,0x5b,0x1e,0xc7,0xd1,0xdf, +0xa4,0x3f,0x8c,0xe0,0x9c,0x79,0x74,0xc2,0x76,0xdd,0x3b,0x70, +0x29,0xca,0x04,0x16,0x36,0xb5,0x84,0x3c,0x5d,0x99,0xf6,0xd0, +0x80,0xb9,0xb7,0xa0,0x40,0x78,0xbf,0xfa,0x65,0xe6,0x9d,0x6c, +0x53,0x33,0x29,0x99,0xc7,0x86,0x30,0x8d,0x0b,0x54,0xdd,0x4e, +0xc3,0x93,0x74,0xfe,0x64,0x97,0xa7,0xe8,0xfc,0x14,0x5a,0xe5, +0xde,0xe7,0x56,0xe1,0xa3,0xd3,0x8a,0x5b,0x00,0x6f,0x56,0xa3, +0x92,0x2f,0x13,0x70,0xaa,0xac,0x2f,0x26,0x92,0x6c,0x63,0xa0, +0xcf,0x65,0x75,0xc9,0x85,0x2f,0x25,0x3c,0x5c,0x51,0x7b,0x4a, +0x55,0xb0,0x9b,0x15,0xc0,0x9e,0xcd,0xc3,0x63,0x9c,0xa8,0x8d, +0x4e,0x04,0xc2,0x34,0x9e,0x61,0x2e,0x31,0xcc,0x65,0x75,0x8a, +0x74,0x1d,0xaa,0x30,0x3f,0x80,0x55,0x69,0x7c,0x8c,0x19,0xda, +0xe8,0x44,0x00,0x4c,0xe5,0xcd,0x34,0x9f,0xfb,0x1b,0xcd,0xe7, +0x1e,0x4f,0x1f,0xb9,0x71,0xb8,0xf3,0x06,0xfc,0x51,0x43,0x79, +0x72,0xca,0xca,0x9d,0x7b,0xb3,0x0e,0xac,0x3c,0x56,0x1b,0x5e, +0x22,0xfe,0xef,0x88,0x62,0x59,0xd6,0xc9,0x31,0x15,0x97,0x4f, +0x14,0xef,0x96,0x1b,0x1e,0x25,0xd8,0xc1,0x52,0x14,0x8a,0x7e, +0xdd,0xba,0x7b,0x9f,0xee,0xe0,0xdc,0x3d,0xc1,0x9b,0xf4,0xe9, +0xe0,0x7b,0xf6,0xcb,0x80,0x70,0xf0,0x4d,0x16,0x82,0xe7,0x33, +0xf1,0x30,0x69,0xeb,0xd4,0xa2,0x79,0x54,0x3a,0x14,0x6d,0xdd, +0xba,0xef,0x20,0x13,0x0e,0xd1,0x73,0x26,0x8e,0xd1,0x8d,0xdf, +0x3a,0xa9,0x68,0x0e,0xa5,0xbe,0xc8,0x28,0x3d,0x75,0x51,0x97, +0x3b,0xe7,0xc0,0x30,0xaa,0x20,0x42,0x9d,0x73,0xea,0x80,0xfe, +0xc0,0x25,0x09,0x91,0xf3,0xe6,0x4c,0x88,0xd2,0xf5,0x3d,0x17, +0xf9,0x62,0x09,0x05,0x7d,0xca,0xb8,0x70,0xbc,0x4c,0x77,0x6c, +0xd6,0x9e,0xa1,0x9b,0xf4,0x6b,0xe0,0xa7,0xb3,0xea,0xa6,0x70, +0x68,0x9a,0x28,0x0c,0x9d,0x3f,0x7b,0xca,0x68,0x5d,0xf0,0x85, +0x51,0x9f,0x13,0x28,0xe8,0xef,0x8c,0x8b,0x1a,0x68,0xef,0x10, +0xaa,0x91,0x82,0x74,0x56,0xdd,0x11,0x0e,0xd6,0x49,0xc2,0x90, +0xf9,0xb3,0x26,0x8f,0xd6,0x85,0x5c,0x1c,0x69,0x04,0x65,0x5e, +0xcc,0xbf,0xa2,0x3b,0x35,0xe3,0x50,0x04,0xcb,0xf7,0x92,0x4b, +0xd4,0x1d,0x61,0x60,0x9f,0x2c,0x44,0xcc,0x9d,0xf1,0xf3,0x30, +0x5d,0xaf,0x8b,0x43,0x3f,0xd3,0xb7,0x63,0x67,0x04,0xe8,0xc8, +0x9a,0xba,0x8f,0x41,0x3f,0xe6,0x8d,0x7c,0x75,0x15,0x59,0x81, +0x68,0xf3,0x69,0xa4,0x9f,0xec,0x18,0x4d,0xe8,0xf3,0xef,0xc2, +0xca,0xfd,0xb1,0x9e,0x5a,0xb2,0x79,0x0a,0x1b,0x3b,0x68,0xe5, +0xff,0xcc,0x67,0x30,0xc0,0x7c,0xf2,0xad,0x1e,0xa0,0xf9,0xcc, +0xda,0xae,0x5b,0xed,0x8c,0x5d,0xb7,0xda,0xb1,0x52,0x81,0xed, +0xb4,0x29,0xd3,0x8e,0xec,0xc5,0xcb,0x18,0xb6,0x03,0x23,0x7c, +0x2b,0xc1,0xa5,0xef,0xcb,0xb6,0x7e,0x18,0x86,0x9f,0x65,0xe1, +0x65,0x01,0x8b,0xd7,0x2d,0x5a,0x1e,0xf3,0x35,0x20,0xab,0x68, +0xed,0x99,0xcb,0xba,0x4a,0x8f,0x10,0x01,0x0d,0xe1,0xcc,0x8a, +0x54,0x58,0x1f,0x1f,0xf9,0x93,0xb6,0x43,0xc3,0xd8,0x0e,0x5d, +0x55,0xa5,0x54,0xf9,0xe2,0x7a,0xba,0xe8,0x72,0x5f,0xa6,0xa0, +0xa2,0xf0,0x19,0xeb,0x91,0x64,0xd3,0x3f,0x19,0x22,0x98,0x21, +0xd6,0x57,0x29,0x8f,0x7d,0x71,0x23,0x45,0xa4,0xf9,0xaa,0xf9, +0x0c,0xf1,0x8a,0xda,0x39,0x6c,0x7a,0xa0,0x24,0x5b,0xa4,0x10, +0x5f,0xd9,0xfc,0x2a,0xa1,0xd4,0x77,0xac,0x6c,0x18,0x95,0xf1, +0xcf,0x08,0x04,0xd2,0x3d,0xee,0x9f,0xe8,0x91,0x6c,0x2a,0xc2, +0x3c,0x66,0x0f,0x8f,0x45,0x13,0x1c,0x89,0xfe,0x5f,0x9e,0x10, +0x2d,0x1a,0x96,0x65,0x29,0xda,0x60,0x47,0xe9,0x35,0x3e,0x0a, +0x80,0x8c,0x51,0x02,0x36,0x0a,0x0d,0xc4,0x19,0x76,0x32,0x17, +0x40,0xc0,0xf4,0xda,0x0d,0x70,0xd7,0x89,0x9b,0x7f,0xcf,0x7a, +0xf6,0xb7,0xee,0xb2,0xfa,0x30,0x98,0x9a,0x66,0xe3,0x64,0xc7, +0xe1,0x24,0x2a,0x71,0xd4,0x92,0x91,0x56,0xea,0x9f,0x22,0xcb, +0x3f,0x62,0x45,0x31,0x65,0xfd,0x3f,0xa4,0x68,0xb8,0x78,0xdc, +0x4a,0x69,0x8f,0xc3,0xa9,0x61,0xf6,0xda,0xbb,0x85,0x6c,0x12, +0x4d,0x34,0x9b,0x8c,0xd5,0x54,0xbc,0xe7,0xdf,0x0c,0xe3,0xdf, +0xfb,0xe3,0x9d,0xef,0x6a,0x2a,0xb2,0xb3,0x26,0xd3,0xef,0x99, +0xc8,0x54,0x7f,0x8c,0xd6,0x98,0x88,0xe3,0x0a,0xd2,0x2b,0xba, +0xb7,0xf5,0x42,0x88,0xf1,0xc7,0xa5,0x8c,0x22,0xf5,0xe5,0x29, +0x27,0xb6,0xef,0xd3,0x8d,0x4b,0x81,0x59,0x61,0xac,0xf2,0x96, +0xc4,0x5f,0xba,0xcd,0x02,0xb2,0xb8,0xcb,0x3c,0xb6,0x87,0xa5, +0x9c,0x99,0x04,0x56,0x60,0x8f,0x56,0x02,0x35,0xd7,0xca,0x6a, +0xfc,0x49,0x13,0xd9,0xa6,0x17,0x3b,0xc5,0xee,0x07,0x66,0xbd, +0xf0,0x8a,0x2d,0x81,0xad,0xca,0x0f,0xbd,0x98,0x5e,0xdd,0x1f, +0x4c,0xfb,0x61,0x11,0x23,0xc0,0xc7,0x7e,0xfc,0xb7,0x4a,0x45, +0x16,0xd7,0x94,0xf8,0xaf,0x95,0x8a,0x44,0x6e,0x43,0x49,0x46, +0xe9,0x75,0xdd,0xb1,0xc0,0x71,0x02,0xda,0x4c,0xed,0xe8,0x86, +0x1d,0xf5,0x05,0xa3,0x8e,0xdc,0xda,0x55,0xb6,0xe5,0x9c,0x55, +0x5a,0xfa,0xea,0xd4,0x55,0x49,0xaf,0x45,0xe9,0xcb,0x88,0xfb, +0x70,0x98,0x71,0x90,0xc7,0x74,0xd9,0xd8,0x17,0x30,0x86,0x5a, +0x87,0xfb,0xfa,0xc3,0xcf,0xed,0xe8,0x73,0xe7,0xa2,0x6c,0x26, +0x25,0x5c,0x0c,0x7d,0x3b,0x80,0x29,0x5e,0xb8,0x57,0xf1,0xe2, +0xdf,0x77,0xd7,0x0a,0xf5,0x7e,0x19,0x43,0x34,0xea,0x3c,0x2f, +0xcc,0x61,0xd4,0x6e,0xb2,0xe9,0x59,0xf2,0x9d,0xe4,0x48,0x26, +0x9a,0x57,0xa2,0x0d,0x8c,0x93,0xed,0x66,0xd2,0x89,0xa3,0xe1, +0x60,0x38,0xf3,0xe4,0x64,0x71,0xae,0xb1,0x3b,0xd6,0x12,0x38, +0x8a,0xb6,0x96,0xc7,0xce,0xe1,0x4e,0x68,0xbc,0x20,0x63,0xe1, +0x8a,0x85,0xac,0x55,0xee,0xfc,0xf4,0x78,0x63,0x6f,0xeb,0xa4, +0x95,0xdb,0x77,0x64,0xee,0x5c,0xb9,0xcf,0x0a,0x32,0x4a,0xd4, +0xa7,0x61,0xb0,0x81,0x4f,0x08,0xe8,0x3b,0x0a,0x67,0x06,0xd2, +0xe7,0xcc,0xc6,0x8a,0x88,0x56,0x4a,0x47,0x0c,0x67,0xc7,0xdd, +0x7f,0x78,0xbb,0x0a,0x4b,0xdd,0x3a,0x2c,0xeb,0x24,0x37,0x31, +0x67,0x6f,0xf8,0x94,0xfc,0xbd,0x9d,0x88,0x5f,0x2e,0x13,0xf6, +0x08,0x56,0xb0,0x26,0x72,0xef,0xfb,0xd3,0xdf,0x67,0x84,0x6c, +0x93,0x41,0x72,0x4f,0x88,0xde,0x38,0x4e,0xe8,0x8e,0x2e,0x92, +0xac,0x5f,0x41,0xe8,0x20,0x8a,0x0e,0x5a,0x68,0xb1,0x32,0xfb, +0x8c,0xb1,0x32,0x2d,0x58,0xac,0x8c,0x0f,0xba,0xa3,0x6f,0x20, +0xf8,0xf2,0x5d,0xb0,0x2e,0x33,0x84,0xee,0xfb,0xaa,0x56,0xcc, +0x10,0x0a,0x86,0xf1,0xf6,0xf4,0x2b,0xf1,0xe6,0xff,0xbb,0x4d, +0x2a,0x6a,0x1e,0x90,0xc4,0x7f,0x61,0x34,0x25,0x4e,0x68,0x8e, +0x63,0xd1,0x5d,0x90,0x6d,0x0b,0x49,0xc2,0x07,0x18,0x4b,0xcd, +0x35,0x33,0xaa,0x1c,0x0b,0xb2,0xf9,0x62,0x52,0xa2,0x12,0xb2, +0xe4,0x25,0x8c,0x37,0xd2,0x5c,0xff,0x47,0x7b,0x45,0x69,0x23, +0xa3,0x67,0x8d,0x37,0xc4,0x08,0xd3,0xb3,0xe7,0xed,0x4c,0xd2, +0xc7,0x0d,0x9b,0x35,0x7e,0xf4,0x48,0xd3,0xcb,0x7c,0x49,0xc1, +0x81,0x9b,0x67,0x74,0xeb,0x85,0x83,0xd1,0xdb,0x46,0xea,0xc5, +0xe9,0x52,0x4c,0x60,0xfb,0xf8,0x16,0xd6,0xd3,0x40,0x84,0x14, +0x98,0x8f,0x97,0x43,0x60,0x39,0x72,0xb8,0x14,0x17,0x6b,0x2d, +0x21,0xe6,0xb7,0xc1,0xc6,0xb1,0xe8,0x64,0x3d,0x09,0x74,0x50, +0x58,0x81,0x85,0xd0,0x18,0x2e,0x54,0xa8,0x8d,0xd5,0xd0,0xbf, +0x34,0xf9,0xb9,0x6e,0x13,0x95,0x9f,0xf3,0xbb,0xa0,0x69,0x2c, +0x36,0xb5,0x9e,0x42,0x31,0xb9,0x15,0x98,0x4b,0x31,0x65,0x15, +0xaa,0xb9,0x1a,0xfa,0x82,0xa7,0x1a,0xa7,0xb8,0x6e,0xd3,0x13, +0x8a,0x91,0xb9,0xae,0x64,0x22,0x98,0x42,0x51,0x29,0x16,0x41, +0x3d,0xb8,0x50,0xa6,0x36,0x52,0x9d,0xa8,0x10,0x6e,0x07,0x52, +0xf6,0xe6,0x17,0x54,0xc7,0x76,0x58,0x44,0x26,0x83,0x1d,0x14, +0x54,0x60,0x01,0x5d,0xe7,0x7c,0x25,0x7d,0x93,0xa8,0xbf,0x6a, +0xe7,0xff,0xa4,0x0b,0xb8,0xa3,0x49,0x2c,0x36,0xa6,0x6f,0x62, +0x0a,0x79,0xa5,0x98,0x47,0xd7,0x28,0x2f,0xa3,0x6f,0xe2,0xf4, +0x9c,0xa7,0x3c,0xa9,0x7e,0xf6,0xe6,0x47,0x14,0xf3,0xad,0x71, +0x8a,0x1d,0x5c,0xaa,0xc0,0x4b,0x74,0x1d,0xad,0x71,0x4a,0x14, +0x6b,0x9c,0x22,0x7e,0xb5,0x1f,0x27,0x52,0xf2,0x95,0x0a,0xbc, +0x42,0x6f,0xf3,0x61,0x85,0xea,0xa4,0x86,0xca,0x0d,0xcb,0x59, +0x33,0xc8,0xb5,0x9a,0x1e,0x57,0x5c,0x81,0xc5,0x54,0x8f,0xbb, +0x54,0xa9,0x36,0x51,0x07,0xbf,0x63,0xd6,0x9f,0xdc,0xf0,0x35, +0x99,0x42,0x67,0xf2,0x2b,0x30,0x9f,0xce,0x54,0x56,0xaa,0x3f, +0xa9,0x83,0xff,0x64,0x65,0xb6,0x17,0x74,0xfb,0xdf,0x3d,0x9d, +0x2a,0xc3,0x53,0x5f,0xef,0xa9,0xc5,0x73,0xd9,0xfe,0x27,0xf6, +0x42,0xa6,0x1a,0xea,0x8c,0xaa,0x61,0x63,0x78,0x5c,0x41,0x7f, +0xfc,0x50,0x56,0x31,0x85,0x4d,0x4c,0xa6,0x2b,0x5e,0xad,0xc0, +0xab,0x74,0xc5,0x47,0x9a,0xce,0x48,0x95,0x99,0xae,0x60,0x9d, +0xbd,0xf9,0x8d,0x41,0x5c,0x40,0xef,0x74,0xb1,0x76,0xa7,0x7a, +0xe3,0x9d,0x36,0x85,0x87,0x95,0xf4,0x4e,0x07,0x6b,0x9f,0x43, +0x76,0x7c,0x48,0xca,0xe8,0x0b,0xeb,0xc1,0xa3,0x32,0x4a,0x6c, +0x41,0xb5,0x9b,0x4e,0x60,0x99,0xbd,0xf1,0x95,0x41,0x6b,0x33, +0xf8,0x4e,0x35,0x95,0xe6,0xfb,0xd8,0xc5,0x21,0x67,0x3d,0x13, +0x76,0xb0,0x02,0xd9,0x8e,0xff,0x68,0xd1,0x32,0xf7,0x24,0x6c, +0xcd,0xff,0xfa,0x6e,0x3d,0xf0,0xd0,0x58,0x77,0x41,0x7d,0xd2, +0x4f,0x59,0x9b,0x2c,0xa4,0x62,0xe3,0x18,0xfc,0x61,0x8e,0xb3, +0xa9,0xfa,0x50,0x94,0x4d,0xb6,0x10,0x5b,0x55,0x54,0x7b,0x10, +0xa9,0x3f,0xa6,0xf3,0x58,0x77,0x77,0x5f,0x30,0x07,0xf3,0xdd, +0x17,0xa1,0xae,0x1e,0xd2,0xc3,0x71,0xad,0xe0,0x19,0x3d,0xa2, +0x87,0xfb,0xc2,0xbc,0xeb,0x7a,0x33,0x69,0xd4,0xb8,0xb9,0xe3, +0x86,0xcf,0xdd,0x5d,0xac,0x87,0xf0,0x70,0x1c,0x22,0xf4,0x3c, +0x34,0xf2,0x62,0xe1,0xce,0xed,0xbb,0xb2,0xf5,0xe9,0x91,0x67, +0xe0,0x7c,0x04,0x73,0xbf,0xb4,0x56,0x9d,0xd1,0x85,0xc0,0x41, +0x16,0x76,0x3a,0x5b,0xdd,0xc6,0x82,0x3a,0x31,0x22,0x12,0x64, +0xcc,0xe0,0x07,0xcf,0x98,0x31,0x6a,0xdc,0xac,0x1d,0x07,0x12, +0xf4,0x03,0xe3,0xb8,0xd0,0xb5,0x27,0x46,0x5f,0xb1,0xbe,0x93, +0x97,0x77,0xc7,0x60,0xe6,0x84,0xb3,0x02,0xaa,0x4b,0xce,0x0b, +0xea,0xe6,0x0f,0x12,0x44,0x3b,0x61,0x34,0x8f,0x7d,0x70,0x8c, +0xa4,0xac,0xc2,0xe1,0xb7,0x60,0xa3,0x7a,0x8f,0x37,0x6b,0x21, +0xdb,0x38,0x92,0x96,0xec,0xbf,0xff,0x2b,0x9b,0x69,0xad,0xa4, +0xac,0x11,0xd9,0xb3,0x1c,0xd7,0xc2,0x7a,0x3a,0xc8,0x90,0x0c, +0xcb,0xf0,0x72,0x30,0xfd,0xaf,0x11,0x26,0xe3,0xea,0xeb,0x3c, +0x90,0x57,0x6b,0x37,0x5c,0xa5,0x0a,0x60,0x5f,0xac,0x8f,0x6d, +0x41,0xe8,0x8d,0x1f,0x8c,0x2d,0x27,0x3f,0x49,0xbd,0x8d,0x94, +0xbe,0x1a,0x45,0xed,0xc1,0x20,0x26,0x94,0xf0,0x43,0x6f,0x7c, +0x6e,0x84,0xfc,0x49,0x21,0x1a,0xa5,0xaf,0x46,0x31,0x42,0x4c, +0x29,0x81,0xef,0x8d,0x6f,0x8d,0x90,0xbf,0x28,0x44,0xa3,0xf4, +0xd5,0x28,0x0c,0x02,0x39,0xf0,0xd7,0x57,0x18,0x85,0xe0,0x5b, +0x8d,0xf2,0x15,0xc6,0x4e,0x8d,0x75,0x40,0xf0,0x7e,0x08,0x64, +0x7d,0x8b,0x18,0x39,0xb2,0x28,0x23,0x18,0xd6,0x6d,0x9d,0xe8, +0xdb,0x2d,0x04,0x5d,0x58,0x48,0x88,0xa8,0x4f,0xcc,0xe1,0x62, +0xc2,0xdc,0x65,0xfd,0x2a,0x22,0x1a,0x62,0x85,0xf0,0x80,0xe1, +0x01,0x13,0xf4,0xa3,0x73,0xa7,0x1f,0x3b,0xa6,0xcb,0x16,0x4e, +0xe7,0xe4,0x94,0xe8,0xe7,0xa9,0x0f,0x25,0xb7,0x88,0xbc,0x1b, +0x86,0x5f,0x84,0xbb,0x74,0x17,0xd5,0x27,0xe5,0xf7,0x0e,0x3f, +0xb4,0x62,0x61,0xa1,0xe9,0x09,0x30,0x08,0xb3,0x2c,0x4b,0x8b, +0x44,0x3f,0xac,0x8b,0x8d,0x6f,0xe1,0x67,0x55,0xf8,0x76,0xd0, +0x9d,0xae,0x1d,0x74,0x7b,0x49,0x58,0x87,0x1a,0x81,0x75,0x04, +0xd1,0x1f,0x75,0x2c,0xe5,0x39,0xf9,0x5b,0xca,0xf3,0x05,0x96, +0xf2,0xec,0x7b,0x87,0x87,0x06,0x1f,0xb3,0x36,0x54,0x19,0x28, +0x1b,0xea,0x98,0x24,0x84,0xcd,0x99,0x23,0xd7,0x1f,0x43,0xae, +0x55,0x5c,0xc9,0x99,0x73,0x38,0x6c,0xab,0x7e,0xb5,0x40,0xed, +0x50,0x1f,0x49,0xc4,0xa6,0xfa,0x33,0xa3,0x4a,0x2f,0x1e,0x2b, +0xd8,0x79,0xca,0x6a,0x55,0x7a,0x46,0x6a,0x3a,0xf3,0xe9,0xb6, +0x32,0xf6,0x29,0x6f,0xae,0x35,0x39,0x17,0x95,0x68,0x45,0x94, +0x6e,0xc9,0x86,0x76,0xc4,0x53,0x15,0x44,0xd9,0x6c,0x14,0x8b, +0xb0,0x9f,0xc3,0x5c,0x26,0x4e,0xcc,0x65,0x12,0xc3,0x2a,0x8a, +0xe8,0xf1,0x0d,0x8b,0xbd,0xb9,0xb4,0x6d,0x8c,0x97,0x73,0x30, +0x06,0xfa,0x59,0x1d,0x0f,0xe7,0x60,0x0f,0xd4,0x79,0xfb,0x02, +0x3a,0xeb,0x34,0xc8,0x62,0x3d,0xbe,0x9f,0x6f,0x0c,0xcf,0xf1, +0x6c,0x19,0x82,0x21,0x7e,0xf8,0x8a,0x40,0x9d,0x77,0xda,0x7c, +0xf2,0xca,0xad,0x07,0xb2,0x0f,0xad,0x38,0x69,0x05,0xc1,0x65, +0xea,0x80,0x10,0xe8,0xcf,0x2f,0xed,0x44,0x1f,0xce,0x76,0xce, +0x45,0x91,0x96,0x8f,0xce,0x96,0x1c,0x3f,0x7c,0x9c,0xb2,0xef, +0x10,0xf2,0xa5,0x2e,0x55,0x0b,0xfb,0x89,0xcc,0x33,0x2c,0x9f, +0x7a,0x70,0x28,0xff,0xc8,0x2f,0x99,0x9b,0x53,0x37,0xb0,0x42, +0xec,0xc4,0xf2,0xd0,0x59,0x5c,0x0b,0x75,0x34,0xd7,0x30,0x95, +0x16,0xf7,0xe1,0x3f,0x9e,0xb9,0x48,0x1e,0xbb,0xf3,0xe2,0x5f, +0x65,0xe7,0x2e,0x1f,0x8f,0x3e,0x38,0x82,0x2a,0x53,0xef,0x4f, +0x1b,0xbb,0x58,0xce,0x96,0x16,0xf3,0x03,0xc7,0xed,0x2b,0x3a, +0x7d,0x78,0x6f,0xb1,0x61,0x1d,0x2f,0xf2,0xc8,0x69,0xee,0xc7, +0x1f,0x2b,0xd1,0x85,0xaa,0x9b,0xc8,0x0d,0x91,0x7a,0x64,0xc8, +0xe6,0xc3,0x48,0xc2,0x1e,0x6c,0x23,0x9b,0x07,0x10,0xaa,0xfe, +0x7a,0x82,0x0e,0x1b,0xc0,0x30,0xae,0x9f,0xea,0x76,0x06,0x9e, +0xa6,0xf3,0x37,0xb0,0x09,0xfc,0x88,0x51,0xdc,0x05,0xc5,0x6d, +0x00,0xdd,0x33,0x58,0x57,0x75,0x84,0xba,0x5e,0x58,0x6c,0x4f, +0x94,0x14,0xf8,0xc4,0x7b,0xe2,0x51,0x89,0x52,0x78,0xc5,0x91, +0x4d,0x72,0xf4,0x92,0xf3,0xc2,0x72,0xc1,0x8e,0xcd,0xfe,0x47, +0x67,0x4f,0xb1,0x59,0xa2,0xcd,0x4e,0x55,0x82,0x8c,0xc5,0x50, +0x2e,0xfd,0xc3,0xfa,0x3c,0x5a,0xb0,0x3e,0x8f,0xf1,0x15,0x1c, +0xe5,0x89,0x0d,0xe3,0xb0,0xb5,0xb5,0x99,0x34,0x8b,0x9a,0xa1, +0xd1,0xda,0x86,0xe9,0xa7,0x3e,0x24,0xb8,0xe7,0x36,0x1c,0x10, +0x3e,0xae,0x7e,0x9d,0xc5,0x14,0x73,0xaa,0x02,0x84,0x10,0xd5, +0x45,0x52,0xdb,0x60,0x28,0x51,0x32,0xaa,0x9b,0x10,0xb5,0x0d, +0xfc,0xa8,0xb4,0xe1,0xcd,0x64,0x87,0x04,0xf2,0x2b,0x08,0x94, +0x41,0x9b,0xeb,0xc8,0x39,0x83,0x28,0x2c,0xed,0xed,0xb7,0xac, +0x17,0x4b,0x53,0x64,0xf1,0x5a,0xa2,0x10,0x3a,0x53,0x8b,0x60, +0x7e,0x10,0xc8,0xb2,0x68,0x44,0xa3,0x4f,0xc3,0x2b,0xa9,0x83, +0x35,0x3c,0x5d,0x2a,0x89,0xe3,0xad,0xd7,0x04,0x69,0xbd,0x0b, +0xec,0xc8,0x3e,0xfe,0xdd,0xf5,0x8c,0x75,0xa5,0x54,0xf5,0xd6, +0x3c,0x36,0x72,0x7d,0x47,0xc6,0x07,0xcf,0x90,0x1c,0x09,0xe7, +0xd3,0x8b,0xb3,0xc6,0x0b,0xad,0x36,0x61,0xa0,0x08,0x1d,0xab, +0x93,0x24,0x2a,0xf4,0xaf,0x42,0x8e,0xe0,0x89,0xd1,0x92,0xda, +0x0d,0xba,0xd7,0xfc,0x47,0xf0,0x12,0xab,0x85,0x4a,0x37,0x79, +0x87,0x78,0xb6,0xc9,0xad,0x60,0x59,0x19,0x2e,0xa3,0xef,0x9b, +0x59,0x8e,0xf7,0xd4,0xbe,0x37,0x78,0xa8,0xff,0x7a,0xed,0x86, +0x2b,0x06,0x56,0xe7,0x53,0x36,0x59,0x42,0x0e,0x65,0x1c,0x2d, +0xd4,0xed,0xf5,0x99,0x26,0xb8,0x4d,0x1e,0xe4,0xe2,0xa3,0xb7, +0x7f,0x1e,0x9b,0x25,0x6a,0x85,0x55,0x6d,0x09,0x2b,0xac,0x2a, +0x4a,0xac,0xc1,0x6d,0x06,0x6b,0x0c,0xe5,0x6c,0x59,0x55,0x56, +0x90,0xb7,0x2f,0x97,0x12,0x96,0xad,0x61,0x11,0x93,0xf6,0xac, +0x31,0x94,0x23,0xd5,0x5d,0xdf,0x93,0xe6,0x4a,0x7b,0x49,0x25, +0x98,0x2c,0xd7,0x7f,0x4f,0x28,0x5f,0x61,0x87,0x1a,0xb0,0xa9, +0x24,0x97,0x60,0x90,0x74,0xf6,0x0b,0x1f,0x0e,0x6d,0x93,0x84, +0x88,0x79,0x73,0x27,0x8d,0xd3,0x05,0x5e,0x0d,0x67,0x45,0x16, +0x44,0xac,0x3b,0xe2,0x0d,0x58,0x1b,0x80,0x17,0xc0,0xfa,0xc4, +0x1b,0xa8,0x0b,0x75,0x4f,0xb4,0x42,0x6b,0x3d,0xf2,0x02,0x5a, +0x8f,0x68,0x85,0x75,0x59,0x94,0xa5,0xbe,0x28,0xb2,0xa2,0xf4, +0x44,0xee,0x9e,0x93,0x56,0x2b,0x56,0xae,0xce,0xa4,0x77,0x91, +0x68,0x05,0x06,0xb4,0x2d,0x3e,0xc5,0xaa,0xd3,0x24,0x4a,0x62, +0xcd,0x0a,0xf2,0x25,0x28,0x4a,0x52,0xed,0x95,0x4e,0x8a,0xbd, +0xe0,0x81,0xcf,0xd8,0x51,0xdf,0x0e,0x76,0xd4,0x27,0x37,0x4b, +0x23,0xe5,0xb8,0x42,0xb6,0x1f,0xc5,0x4a,0x83,0xad,0x21,0xdb, +0xb2,0x76,0xc8,0x0e,0x15,0x64,0x18,0x36,0xa1,0x06,0xe5,0x56, +0x72,0xc3,0x44,0x8c,0x4d,0x8d,0x63,0x6d,0x64,0xfa,0x34,0x8f, +0xc0,0xb0,0x20,0x63,0x1b,0x99,0xb7,0x7f,0x3d,0x81,0x56,0x3a, +0x36,0xb3,0x2c,0x4e,0xae,0xff,0x1f,0xd9,0x3e,0xba,0x8f,0x73, +0x04,0x06,0x06,0x5a,0xe5,0xd0,0xfd,0xb5,0xf7,0xed,0xdb,0xa7, +0xe0,0x5c,0x3b,0xab,0x37,0x46,0xbf,0x5d,0x93,0xed,0xd6,0x11, +0x31,0xce,0xd8,0x7d,0x72,0x4b,0x51,0xd6,0xe9,0x0b,0xba,0xd5, +0xf2,0x4f,0xf5,0x49,0x8a,0x80,0x4d,0x22,0x3b,0xd1,0x3d,0xdb, +0x50,0x2f,0x7e,0x09,0x27,0x78,0x5d,0x3d,0x43,0x60,0xb0,0xd2, +0x8d,0x87,0xc1,0xaa,0x2b,0xfd,0x9d,0xef,0x83,0xcd,0x87,0x6b, +0x4e,0x4a,0x2c,0x5a,0xf0,0x98,0xab,0x2e,0xe4,0xbc,0xe0,0x0f, +0x01,0xd7,0x5e,0x93,0x60,0xb5,0xd2,0x93,0x4b,0x57,0x7b,0xd2, +0x2f,0xcf,0x95,0x7c,0x69,0xaa,0x4e,0x92,0x94,0x7d,0x95,0xea, +0x1a,0x08,0x50,0x52,0x2b,0xd5,0x9b,0x98,0x65,0x4b,0xcc,0x6a, +0xae,0x13,0x45,0x68,0x83,0xfb,0xa9,0x75,0x87,0xe3,0xab,0x60, +0x73,0x4e,0x04,0x4c,0x63,0x17,0x3b,0x71,0xdb,0x0b,0xc1,0x4c, +0x92,0xed,0x03,0x08,0x6e,0x91,0x4d,0x93,0x88,0x04,0x97,0x3c, +0x79,0x0c,0xf1,0x6d,0x87,0xbf,0xa2,0x9d,0x3e,0x37,0x8c,0x83, +0xc3,0xd0,0xfa,0xc9,0xdf,0x30,0x55,0x07,0x06,0xd5,0x4a,0x30, +0xb3,0x95,0x6c,0xd5,0xce,0xff,0x7a,0xe1,0x29,0xba,0x87,0xd6, +0xc1,0x3b,0xde,0x0b,0x0f,0x48,0x6a,0x67,0xa8,0xa7,0x74,0xe6, +0xcd,0x20,0x58,0xc2,0xa0,0x7f,0x7a,0xe3,0x7e,0x4d,0xa9,0x7d, +0xdc,0x87,0xc7,0x5d,0x26,0x18,0x44,0x25,0x62,0x10,0x6f,0x86, +0xc3,0x64,0x9b,0x03,0x04,0x67,0xc9,0x36,0xfb,0xc8,0xf5,0x73, +0xf9,0xfd,0x61,0x65,0x67,0x01,0xbb,0xe0,0x32,0x6e,0x20,0x84, +0xfa,0x08,0xd0,0xc0,0x04,0x75,0x3c,0x34,0x81,0x70,0x6e,0x15, +0xdd,0x6d,0x74,0x67,0x45,0xb7,0x42,0xdb,0x38,0x6c,0x65,0x3d, +0x03,0x0e,0xd7,0x2c,0xa6,0xfb,0xa5,0x66,0x25,0x8b,0xdd,0x2a, +0xe7,0xe6,0xb7,0x45,0xab,0x38,0x74,0xa4,0x1a,0x55,0xc1,0x43, +0xa2,0xba,0xdf,0x62,0xe1,0x3c,0x79,0x04,0x9a,0xfa,0xa2,0xb5, +0x6c,0x77,0x9e,0xa9,0x90,0xb1,0x24,0x7b,0x1b,0xfc,0x68,0x60, +0x9d,0xaf,0x5b,0xf2,0xb2,0xb9,0xab,0xd6,0x03,0xdb,0xfe,0x5b, +0x0f,0xec,0x89,0x9a,0x9b,0x7c,0x04,0x9a,0x43,0x27,0xfc,0x5b, +0x6d,0x2a,0xff,0x54,0x97,0x79,0x97,0xc7,0xf0,0xda,0xe4,0x54, +0xcd,0xc9,0x3e,0x8e,0x4e,0xba,0xd1,0x49,0x9d,0x72,0x8f,0xc0, +0xe6,0xaf,0x73,0xd3,0xae,0x2b,0x31,0xb2,0xe1,0xa5,0x71,0x95, +0x61,0xd7,0x95,0x31,0x3e,0x18,0x49,0x81,0x1d,0x29,0x50,0xd2, +0x56,0xf9,0x85,0x21,0xb5,0x88,0xd0,0xa6,0x5e,0x94,0xdf,0xd7, +0x46,0x84,0x06,0xb0,0x88,0x50,0x8d,0x5a,0xdf,0x8b,0x85,0x73, +0x7a,0x51,0x2a,0xdb,0x9f,0xdb,0x59,0xf3,0x1e,0x29,0x6f,0xe8, +0x95,0xc2,0xbc,0x9c,0x7d,0xc7,0xac,0x32,0x33,0xd7,0x2f,0xcf, +0x5c,0xa2,0x9d,0x5f,0x5c,0x39,0x9d,0x7b,0x74,0xcf,0xd1,0xac, +0xcc,0xb5,0xa9,0x74,0x47,0x9d,0x8a,0x2a,0x2e,0x38,0x7c,0x64, +0xdb,0x31,0xca,0xf8,0xd3,0x53,0x57,0xa5,0x00,0x8f,0x66,0x96, +0x05,0x27,0x0f,0x1d,0xde,0x71,0x54,0xd3,0xff,0x45,0x69,0x11, +0xac,0xf4,0xc7,0x0d,0xb2,0xa1,0x05,0x6b,0xd7,0x3c,0xda,0x9e, +0x07,0x93,0xc5,0x3d,0x2f,0xd9,0xc9,0xe6,0x9b,0x09,0xd4,0xbd, +0x73,0x15,0x4c,0xd7,0x1a,0x44,0x98,0x5c,0x4a,0x99,0xa7,0xf9, +0x19,0x82,0x94,0x5e,0x44,0xb0,0x6e,0x28,0x8c,0xd1,0x88,0x26, +0xc2,0x4e,0x68,0xe4,0x95,0x31,0x17,0xad,0x39,0x3a,0xd5,0x30, +0xa5,0x76,0xca,0x4f,0x1d,0x2e,0xa0,0x07,0xdc,0x92,0xb0,0x08, +0x7b,0x28,0x8d,0x0b,0xf1,0x1a,0xbf,0xa2,0x8a,0x83,0x42,0xe8, +0xa1,0x72,0x83,0xe1,0x2c,0xab,0x32,0xb8,0x9a,0xc8,0x86,0x0d, +0x4c,0xa5,0x9e,0x6e,0x8f,0x53,0xa8,0x4a,0x2d,0x9b,0xda,0x92, +0xf2,0xda,0x36,0x76,0xa2,0x6c,0x7b,0x8a,0x7c,0xbc,0x5d,0x4d, +0xbf,0xf0,0xff,0x55,0x63,0x63,0x6d,0x96,0x65,0xd3,0x40,0x32, +0x50,0x10,0xb5,0xb6,0x95,0x69,0x5b,0xf6,0x67,0x1d,0x64,0xb5, +0x1a,0x1c,0xcb,0x10,0x43,0xe8,0x2f,0x95,0xd4,0x35,0x72,0x08, +0x36,0x68,0x9f,0x17,0x69,0x29,0xc2,0xe1,0x0a,0xa6,0x80,0xdb, +0x9a,0x12,0x38,0x2c,0x1a,0x79,0x48,0x73,0xcb,0xaa,0xd2,0x82, +0x5c,0xca,0x43,0x56,0x65,0xa5,0x6a,0x3c,0xc4,0x60,0x99,0x4f, +0x79,0x08,0x34,0x59,0x2c,0xa6,0x6d,0x5a,0xf1,0xeb,0x16,0x9d, +0x96,0x5a,0x5e,0x3f,0x2c,0x04,0xa7,0xb7,0xd0,0x9f,0x18,0x0c, +0xee,0xb7,0x1f,0x9f,0x3b,0xf8,0xc0,0x4a,0x2c,0x28,0xc0,0x0e, +0x94,0x6f,0xd0,0x7f,0x43,0xe8,0x15,0xba,0xb1,0xd1,0x90,0x21, +0xa0,0x5d,0xa1,0x5b,0xc1,0x10,0xe6,0x87,0x5c,0x7c,0x87,0xc7, +0x87,0xca,0x54,0xe5,0x09,0xb9,0x82,0x9b,0xa5,0xc2,0xe9,0x47, +0xfa,0x6f,0xd1,0xaf,0x66,0x3d,0x9e,0xe6,0x49,0x60,0x8b,0x0f, +0x88,0x17,0xce,0x46,0x5b,0x18,0xe7,0xa5,0xc6,0x68,0x5d,0x9e, +0x3e,0x48,0xaf,0xf0,0x91,0xa8,0xde,0x94,0xa6,0x2b,0xdd,0x21, +0xed,0x02,0xde,0x56,0xf3,0x1f,0x52,0xa5,0xef,0x6d,0xf6,0xe6, +0x9b,0xda,0x41,0x8a,0x7f,0xdb,0x78,0xac,0x67,0x2d,0xf2,0x6a, +0x67,0x54,0x25,0x98,0x85,0x2b,0xae,0xc3,0x05,0xd9,0x64,0x13, +0xd1,0x2e,0xf0,0x04,0x2b,0xac,0xc7,0xb7,0x6b,0x39,0x7a,0x10, +0x97,0x04,0x87,0xc2,0xd5,0x90,0xb3,0x7f,0xf1,0x79,0x05,0x1f, +0xb0,0x05,0xcb,0xdf,0x91,0x20,0x90,0x63,0xee,0xc6,0xe6,0x58, +0x2f,0x88,0x2a,0x65,0x51,0x54,0x29,0x73,0x7c,0x2f,0xf8,0x36, +0x97,0x70,0xee,0x7b,0x76,0x30,0x3e,0x8b,0xb4,0xc4,0x7a,0x81, +0x4a,0x1a,0xc6,0xde,0x86,0x42,0xc7,0x77,0x82,0x4f,0x4b,0x09, +0x67,0xbf,0x83,0xd9,0x4c,0x7c,0x75,0x81,0x0e,0x7d,0x54,0x7b, +0x34,0x23,0xb0,0x4c,0x19,0xd0,0x87,0x57,0xad,0x4d,0x28,0xc9, +0x0b,0xba,0x30,0x5d,0xd1,0x5a,0x93,0x7a,0xb6,0x44,0x89,0x81, +0x4f,0x5e,0x3c,0x1e,0x35,0xa1,0x14,0x5e,0xb1,0xa6,0x53,0xc3, +0xb0,0x33,0x97,0xc4,0x0f,0x85,0xce,0xfd,0x20,0x92,0x0b,0xe5, +0xe9,0x1e,0x77,0xe3,0x2e,0xf0,0x60,0xab,0xb8,0x71,0xe1,0x74, +0xda,0x56,0x6d,0xfd,0xaf,0xa7,0xb6,0xd7,0xd7,0xd0,0xbd,0xee, +0x89,0x07,0x64,0x8b,0x3a,0xa4,0x96,0x5a,0xa0,0x51,0xdf,0x53, +0xea,0x21,0xaa,0x8d,0x02,0xa7,0xb4,0x66,0x6f,0xe5,0x08,0xa2, +0x27,0x33,0x73,0x95,0xa5,0xca,0x0f,0x94,0x91,0x94,0x9a,0x50, +0x8a,0x85,0x26,0x42,0x1d,0x55,0xb7,0x4f,0xde,0x78,0x58,0xe3, +0x1b,0xcf,0x28,0xdf,0xd8,0xc1,0xce,0xeb,0xeb,0x28,0x6e,0xda, +0x94,0xe3,0x27,0x2f,0x3c,0xa2,0x89,0xe5,0xe7,0x74,0xc1,0x1d, +0x6c,0x9d,0x3a,0xda,0xab,0x64,0x9b,0x13,0x84,0x79,0x62,0xeb, +0xfc,0x77,0x94,0x75,0x85,0x37,0xfd,0x97,0x8e,0x3c,0xa0,0xae, +0x37,0x1e,0xb7,0x65,0x67,0x9b,0x2f,0xe9,0xc7,0x39,0x60,0x42, +0x29,0xbc,0x16,0x17,0x40,0x2f,0xea,0x78,0x63,0x0e,0x6f,0xc7, +0xe6,0x5e,0xd0,0xb9,0xfd,0x6c,0x8e,0x63,0x73,0xe8,0x28,0x2c, +0xed,0xd2,0x79,0x99,0x9b,0xec,0xb0,0x89,0x78,0xc4,0xb9,0x2e, +0x69,0x96,0x6c,0x65,0x66,0x3c,0x72,0x74,0x94,0x16,0xf1,0x03, +0x7f,0xde,0x91,0x7b,0xf2,0xd0,0x8e,0x62,0xc3,0x2f,0x7c,0xf1, +0xc1,0x19,0x51,0xc3,0xc7,0xcf,0x18,0x68,0xd0,0xa6,0x5d,0xb0, +0xa5,0xb4,0x90,0x0f,0x1f,0xbb,0x33,0x2f,0xef,0xc8,0xce,0xb3, +0x86,0x0d,0xfc,0xd9,0x23,0xd3,0x23,0x23,0xc7,0x4e,0x0f,0x37, +0x98,0x19,0xdb,0x77,0x76,0xd4,0xda,0x77,0xee,0x2e,0xc8,0xd7, +0xda,0x77,0xb2,0x0e,0xda,0x43,0x87,0x8c,0x9b,0x3a,0xc8,0x60, +0x46,0x19,0xf0,0x10,0x08,0x92,0x9e,0xef,0xcf,0x2d,0x33,0xec, +0x12,0xca,0x26,0xe6,0xb6,0x6f,0x3f,0x71,0x78,0x88,0x7e,0x9a, +0x10,0xb2,0x7f,0xf8,0x73,0xaa,0xe3,0xab,0xae,0xaa,0x9d,0x6c, +0x91,0x4f,0x60,0x17,0xcb,0x74,0x64,0x0a,0xbd,0x1d,0xfd,0x0a, +0x3d,0xb5,0x64,0xb2,0x1d,0x1a,0xe9,0xab,0x6b,0xbb,0xba,0x23, +0xc9,0x16,0xcb,0xf8,0x17,0x4f,0x1e,0x43,0x17,0x18,0xa6,0x83, +0x61,0x5d,0xc0,0xad,0xf5,0x53,0xbd,0x68,0xf7,0x5a,0xf0,0x71, +0x91,0x70,0xe6,0x6b,0x98,0xc9,0x9b,0x31,0x45,0x36,0xd1,0xc5, +0x3a,0xee,0x2d,0x2c,0x84,0xd1,0x58,0x12,0x02,0xb1,0xad,0x71, +0x11,0x76,0x62,0xee,0x36,0x91,0x5f,0xd6,0x36,0x34,0x0c,0x63, +0xda,0xb2,0xa0,0x94,0xa6,0x67,0x1f,0x9c,0x28,0x38,0xa9,0xf5, +0xe0,0x4e,0x80,0xcd,0xd4,0x86,0x3f,0x5a,0x42,0xe5,0xf6,0xf6, +0x00,0xd8,0xce,0x63,0x3b,0xbc,0xa5,0x15,0x43,0xce,0x62,0x7d, +0x4b,0x9c,0x2c,0x4f,0xe7,0x63,0x30,0xe8,0x17,0x65,0x89,0x18, +0x40,0x58,0xef,0x95,0x5a,0xf9,0x6e,0x4a,0x58,0x76,0x8f,0xf1, +0x5a,0xfc,0xee,0xba,0xbe,0xf1,0x3a,0x08,0xed,0x9b,0x83,0x6d, +0x90,0x6a,0xfb,0xb5,0x3a,0xb6,0xbd,0x96,0x24,0x6e,0x6f,0xbc, +0x62,0xf3,0xc6,0xea,0xd9,0xdd,0xbe,0x26,0x91,0xb7,0xd6,0xe6, +0x5b,0x1b,0xaf,0x44,0xe9,0x1e,0xf0,0x94,0x89,0xad,0xbb,0x7d, +0x03,0x78,0x1d,0xf0,0xdd,0xee,0x52,0x1b,0xe3,0xc7,0x3e,0xbd, +0x3a,0xce,0xd4,0x5f,0x9d,0xc6,0x5d,0xdd,0x4c,0xdf,0xcb,0x1c, +0x5b,0x82,0x79,0x6f,0x95,0x83,0x43,0x0a,0x27,0xa8,0x47,0xf1, +0xa2,0x94,0x58,0x1b,0x63,0x11,0xc2,0xcc,0x77,0xd2,0x94,0x7c, +0x2c,0xbb,0x0c,0x8d,0x74,0x2b,0xf0,0x84,0xc4,0xca,0x16,0x3a, +0xff,0x7b,0xf6,0x2a,0x34,0xd3,0xbd,0xc5,0x89,0x54,0xf7,0x19, +0x82,0x07,0xc3,0x60,0x62,0x07,0xca,0xe3,0x5b,0xc9,0xa6,0x8b, +0x48,0x29,0x73,0x97,0xff,0x67,0xa2,0xac,0x91,0xd0,0x12,0xb2, +0x3d,0xd5,0xfb,0xb7,0x60,0x9d,0xb1,0xf5,0x9a,0x4b,0x4d,0x77, +0xf2,0x9a,0x4d,0x65,0xb0,0xa9,0xb5,0x9e,0xea,0xad,0x5b,0x90, +0x69,0x9c,0x6a,0xf6,0x1f,0x0b,0xd6,0x77,0xd8,0x41,0xa0,0xb7, +0x04,0x82,0x56,0x1f,0xac,0x9f,0x16,0x02,0x4f,0xa5,0xcf,0x3b, +0xd6,0x93,0xa2,0x9f,0x44,0x39,0xe3,0x44,0x96,0x42,0xeb,0x2d, +0x9b,0x8f,0x23,0x71,0x15,0xd5,0x84,0x88,0xca,0x5b,0xc2,0x7f, +0xad,0xa2,0x40,0xa7,0xa7,0xd8,0xe3,0x44,0x8d,0x71,0x76,0x25, +0x15,0x32,0x67,0xca,0x48,0x8b,0xed,0x71,0x01,0x73,0x4f,0xdc, +0xa5,0xac,0x74,0x71,0x7f,0xf7,0xc4,0xd6,0x2c,0x98,0xb8,0x9c, +0xf0,0x38,0x90,0x54,0xd4,0x1c,0xa7,0x66,0x66,0xb0,0xd2,0x41, +0xda,0x7c,0x6f,0xfd,0x9f,0x1f,0x75,0x67,0xd5,0x7b,0xfd,0x94, +0xf4,0x54,0x21,0xb5,0x59,0x4c,0xe7,0x68,0x4f,0x53,0xf5,0x11, +0x8b,0x48,0x88,0x95,0xc0,0xfd,0x06,0x55,0xdc,0xa2,0x21,0xda, +0x1b,0xac,0xd0,0x1d,0xdd,0xbd,0x29,0x03,0x8e,0xc6,0xe8,0x1b, +0xd4,0x50,0x70,0x37,0x88,0xac,0x5e,0x76,0x7e,0xb6,0x96,0x8b, +0xc9,0xb2,0x48,0xcb,0x4b,0x8f,0x94,0x59,0x89,0x46,0x7f,0xe0, +0xe9,0x4b,0x46,0x7f,0xa0,0xcd,0xd7,0x7c,0xce,0xa1,0xbf,0xdf, +0x2f,0xd5,0xf2,0x39,0x97,0xae,0xe4,0x7e,0x2b,0x58,0x5b,0x74, +0x5e,0x77,0xce,0x73,0x80,0x80,0x8d,0x23,0x3c,0xe9,0xbc,0x2d, +0x9d,0x7f,0x72,0xbb,0xbc,0x84,0xa5,0x96,0xb6,0xa5,0x8a,0x03, +0x9a,0xc1,0x1a,0x5f,0xb5,0xbc,0x0a,0x96,0x83,0x19,0xae,0xa9, +0x52,0x1e,0x08,0x6a,0xa6,0xba,0x54,0x7a,0x25,0xe6,0x53,0x75, +0xbc,0x55,0x7c,0xb6,0x6c,0x1e,0x4b,0x98,0xa7,0xdd,0x57,0xc0, +0x1f,0x66,0xf4,0x65,0x67,0x37,0x91,0x3c,0x9a,0x8f,0xed,0x87, +0x03,0x9a,0xe9,0x0f,0x45,0x72,0x30,0x16,0xb8,0xc2,0xdb,0xe0, +0xa4,0xfb,0x0b,0xf7,0x50,0x65,0x24,0x1e,0x8a,0x61,0x46,0x31, +0x1e,0x52,0x9b,0x53,0xc3,0x52,0x7c,0x9a,0xb9,0xee,0xb2,0x61, +0x49,0x21,0x17,0xe3,0xdb,0x36,0xc9,0x89,0x2a,0xda,0xa5,0x27, +0x02,0x60,0xd6,0x95,0x93,0xbd,0x9e,0x0c,0x09,0xe6,0xe7,0x27, +0x24,0x2e,0xd4,0x4f,0x8a,0x2a,0xc2,0x31,0xfc,0x98,0x2d,0xd1, +0x47,0xe8,0xa6,0x1a,0x32,0x69,0xe2,0x80,0x01,0x13,0x0f,0x14, +0xe8,0xd7,0x0b,0xbf,0xad,0xf9,0x75,0xfd,0x2f,0xfa,0x0d,0xbf, +0x6c,0xcd,0xdc,0x65,0x7d,0x7a,0xdf,0x84,0x21,0x06,0x33,0xa9, +0x99,0xea,0xf4,0xd1,0x1b,0x0f,0x6a,0x7c,0xe6,0x29,0x65,0x41, +0xdb,0x24,0xd5,0xe9,0x5f,0x85,0x1d,0x95,0x3a,0xa9,0x6e,0xac, +0x5f,0xba,0xc6,0x9c,0x1e,0xd1,0x99,0x2d,0x94,0x39,0xfd,0xa3, +0xf1,0x26,0xb5,0xd5,0x67,0x6f,0x16,0x9b,0xa7,0x2c,0x87,0x3f, +0xbc,0x99,0x46,0xa3,0xb6,0x82,0xba,0x5a,0x73,0x3c,0xb5,0x15, +0xe3,0x67,0xda,0xcc,0x33,0x3a,0xb3,0x83,0xcd,0xd4,0xd1,0x66, +0x5a,0xaa,0x6e,0xef,0xbc,0x71,0xa7,0xb6,0xda,0x5d,0xba,0xda, +0x06,0xba,0xda,0x27,0x6d,0x35,0xaa,0x1f,0xb1,0xba,0xa1,0x76, +0x04,0xb6,0xc0,0x03,0xaa,0x20,0xed,0x34,0x91,0x2d,0xc6,0x12, +0xaa,0x94,0x39,0x63,0x3d,0xd9,0xa2,0x8c,0x34,0x03,0x67,0xde, +0x07,0x9d,0x29,0x5b,0x07,0x67,0xc6,0xd7,0x21,0x5e,0x52,0xba, +0xe0,0x4a,0x4e,0xb6,0xf3,0x27,0x66,0xff,0x4b,0xa8,0x61,0x09, +0x36,0x3c,0x1e,0x37,0xf9,0x9a,0x55,0xc3,0x4e,0x7d,0x64,0xd3, +0xeb,0x04,0x9e,0xe0,0x5e,0xfe,0xc2,0x00,0x09,0x9c,0x71,0x2e, +0x3a,0xf3,0x66,0xec,0x14,0xdb,0x2b,0x49,0x36,0xac,0x22,0xb2, +0x5e,0xeb,0xcd,0x31,0x0e,0x53,0x6e,0x40,0x69,0xcd,0x01,0x22, +0x7e,0x89,0x20,0xe9,0xc4,0x45,0xc4,0xae,0x5a,0x96,0xbf,0xc8, +0x5a,0x6e,0x67,0xde,0x5f,0x97,0x58,0x6a,0x39,0x7b,0x2e,0x59, +0x1d,0xc8,0x7d,0x6d,0xba,0xad,0x95,0xf5,0x5f,0x11,0x13,0x1b, +0x9f,0x60,0x99,0xb2,0x92,0xdb,0x7c,0x38,0x93,0x6a,0xfd,0xdb, +0xfd,0xe6,0x0a,0xad,0xc6,0x0d,0x41,0xc9,0x81,0x6a,0xdb,0x6d, +0xc8,0x2b,0x2d,0xf6,0x45,0xb6,0xab,0x4b,0xd8,0x91,0xd4,0x01, +0x5f,0xcc,0x57,0xce,0xd2,0x8d,0x15,0x33,0xae,0xcf,0x22,0x3f, +0x16,0xda,0x74,0x9b,0xb0,0x83,0x63,0x51,0x0a,0x80,0x39,0xcd, +0xd1,0x22,0x50,0xc1,0x4a,0x6c,0xf8,0x1e,0xe6,0x9c,0x17,0xb0, +0x10,0xdd,0x28,0xfb,0x7a,0x4f,0x19,0xc1,0x23,0x6d,0xda,0xe5, +0xeb,0xf4,0xeb,0xda,0xe9,0xf6,0xb5,0xdc,0xed,0x91,0x66,0x2c, +0xb8,0xc2,0x02,0x09,0xcb,0xc0,0x02,0x8a,0xce,0xaa,0xf5,0x70, +0xb1,0x22,0xf2,0x2c,0x9d,0xcb,0xbf,0x36,0xf1,0xeb,0x8f,0x4f, +0xdf,0x25,0x7e,0xf5,0x58,0xd8,0xcb,0x14,0xfb,0x88,0xb2,0x85, +0x03,0xc9,0x9c,0x8d,0x2e,0x1c,0x72,0xfc,0x6c,0x70,0xf1,0x5b, +0xb2,0x1b,0x1d,0xb8,0x56,0xa1,0xd4,0xb4,0x62,0x47,0x63,0xdd, +0x58,0x49,0x60,0xd4,0xf3,0xa5,0x13,0x83,0xf7,0x79,0x31,0x8d, +0xe9,0x76,0xf9,0xfe,0xf2,0xfd,0x06,0xaa,0x99,0x63,0x6c,0xa8, +0x6c,0xf0,0x21,0xda,0x55,0x58,0x4d,0x2c,0x89,0x81,0x4d,0xbe, +0xff,0x5d,0x20,0xb7,0xb7,0x6c,0x16,0x13,0xde,0xc0,0xcf,0x30, +0x06,0x8f,0x84,0xc0,0x24,0x57,0xba,0xc1,0x3b,0x6e,0x25,0x25, +0x06,0xb1,0x7a,0x46,0x75,0xaa,0x24,0x5b,0x9c,0x23,0xf8,0x17, +0x2b,0xa6,0x62,0xa2,0xf4,0xe0,0x61,0x20,0xa3,0x26,0x1b,0x4b, +0xac,0x7c,0x66,0x54,0xfe,0x1b,0x75,0xa9,0xc4,0x0a,0x85,0x7d, +0x54,0xaa,0x58,0xee,0x30,0x8b,0x07,0x35,0xce,0xc8,0xfa,0x30, +0x6a,0x3f,0x8b,0xb2,0x5d,0x07,0x82,0x6d,0x66,0xb1,0x0e,0x41, +0x5d,0x09,0x3a,0xd7,0xfc,0x9f,0xda,0xab,0x36,0x35,0xed,0x89, +0x98,0x55,0x54,0xa9,0xbb,0xe6,0xd3,0x47,0xb0,0x9b,0x19,0xe0, +0xdf,0x45,0xef,0xf3,0xa7,0xb1,0xb9,0x45,0xae,0xa8,0xbc,0x27, +0x6a,0xee,0x2d,0x48,0x04,0xcb,0x0b,0x02,0x65,0x51,0x23,0x58, +0xe3,0x48,0x8d,0x78,0xf2,0x16,0x24,0xfc,0x5f,0x44,0xd9,0x8e, +0x1a,0x5c,0xdf,0x5d,0x46,0x49,0xde,0x71,0x6d,0x97,0xb4,0x48, +0x36,0xfd,0x43,0x94,0xed,0x4f,0x53,0x21,0x8b,0x83,0xe9,0xe4, +0x3b,0x3a,0x38,0xc3,0x06,0x93,0x25,0xef,0xd8,0xb6,0x09,0x74, +0xfa,0x2d,0xfd,0x36,0x3f,0x13,0xf5,0xe1,0x2d,0xf8,0xb5,0x76, +0xbd,0x51,0x14,0xf7,0x9c,0xe2,0xce,0x32,0xdc,0x18,0x3a,0x78, +0x21,0xe6,0x9c,0xc3,0x7d,0x60,0x11,0x2d,0x3b,0xfe,0x4c,0x8e, +0x9f,0xd1,0x6d,0xf3,0x9c,0x2b,0xb8,0xf6,0x11,0x3f,0xc4,0xae, +0x5d,0xb4,0x32,0x26,0xd6,0x2a,0x76,0x09,0xeb,0x31,0x98,0x93, +0x79,0xf2,0xb4,0x6e,0xbf,0xcf,0x14,0xc1,0x31,0xaa,0x0f,0x5a, +0xb2,0x47,0x88,0xf1,0x6d,0x17,0x1c,0x85,0x9d,0x59,0x90,0xad, +0x36,0x1c,0x67,0x1c,0xda,0x85,0xd3,0xe1,0xc1,0x10,0x98,0xe0, +0x82,0x63,0xb1,0xb3,0x32,0x93,0x78,0xd3,0xef,0xa8,0x27,0x31, +0x13,0x96,0xfa,0x79,0x2f,0xf3,0xa5,0xa6,0x36,0x07,0xbd,0x21, +0x8c,0xaa,0xfb,0x4d,0x0c,0x09,0x15,0x21,0x71,0x5e,0x09,0xee, +0x54,0xa8,0x0b,0x4b,0x3b,0xb6,0x5b,0xd6,0xde,0x7a,0x0d,0x9d, +0x9c,0x06,0xf3,0xe9,0x64,0x7b,0x43,0x62,0x85,0x67,0x5c,0x9b, +0x84,0xe6,0x74,0x52,0x6e,0x78,0x9e,0xf4,0xe5,0x60,0x5c,0x6d, +0x34,0x43,0x42,0x85,0x5f,0x5c,0xc7,0x04,0x57,0x3a,0x21,0x79, +0x64,0xcc,0xc4,0x00,0x0e,0xbb,0xf3,0x33,0x21,0xc0,0x23,0x61, +0x2f,0xfa,0xca,0xcd,0xce,0x33,0x9f,0x02,0xd6,0xa5,0x46,0x49, +0x00,0x0f,0x8e,0x98,0xc6,0x61,0x8f,0x12,0xe8,0x21,0x80,0x23, +0xa4,0x71,0x41,0xac,0x98,0xb2,0x89,0x32,0x17,0x66,0xab,0xe5, +0x21,0xca,0x22,0xfc,0x41,0x9d,0x8b,0x3e,0xac,0x36,0x7f,0x19, +0x9d,0x18,0x49,0x15,0xea,0x44,0x7e,0x24,0x58,0x8f,0x84,0x46, +0x5c,0x04,0xff,0x2f,0x9e,0xe7,0x2e,0xf1,0xff,0xc2,0x79,0x16, +0xf0,0xcc,0x62,0x41,0xcc,0xa4,0x29,0x4a,0xa2,0xa7,0x5a,0xf2, +0x37,0xf3,0x25,0x34,0xd2,0x22,0x70,0x2a,0x99,0x2f,0xa1,0x51, +0x2c,0xba,0x50,0x16,0xa7,0x76,0x7a,0xf1,0x7d,0x10,0x66,0x8a, +0x89,0xda,0xe9,0x35,0x0b,0xc2,0xa4,0x86,0xd6,0x07,0x6a,0x6f, +0xd9,0x32,0xb6,0xf2,0x84,0x2a,0x37,0x5b,0x4d,0xd4,0xce,0xff, +0x30,0xc3,0x4b,0x52,0xbb,0xff,0xe9,0x83,0xab,0xe8,0xc4,0x06, +0x38,0x4b,0x59,0xd1,0x52,0xca,0x18,0x5e,0x6b,0xd9,0x76,0x5a, +0xf0,0xe4,0x7a,0xa3,0x3e,0x74,0x91,0xbe,0x24,0xdd,0xe4,0x6b, +0x08,0x25,0xab,0xcb,0xa5,0x37,0xd6,0xe5,0xd2,0xb3,0xba,0x5c, +0x4d,0x39,0x74,0x0e,0xab,0x6e,0x50,0xa2,0x05,0x77,0xb1,0xc9, +0x66,0xc6,0xc9,0x66,0x6c,0x52,0xcf,0x8a,0x76,0x35,0x91,0xf5, +0x47,0x88,0x59,0x6d,0xaf,0x2c,0x6f,0x26,0xda,0xee,0x10,0xd9, +0x7e,0x21,0x09,0xe6,0x17,0xc0,0xcc,0x3e,0x49,0xdb,0x70,0xb2, +0x6c,0xf2,0x8c,0xf9,0x39,0x5e,0x29,0x4b,0x61,0x82,0x7a,0x27, +0x58,0x49,0x6b,0xad,0x2e,0xc5,0x2e,0xaa,0x13,0x51,0x97,0xe0, +0x67,0xf2,0x07,0x33,0x47,0x6f,0xe1,0x35,0x0c,0x23,0xea,0x13, +0xd9,0x5c,0xa4,0x26,0x84,0x13,0xd1,0x7a,0x5e,0xb2,0x8b,0x15, +0xec,0x42,0x2d,0x25,0x89,0x25,0x96,0xb3,0x6a,0x5a,0x92,0xd5, +0x21,0xac,0xbb,0x65,0xfd,0xc3,0xa4,0x54,0x29,0x23,0x81,0xd3, +0x8c,0xd7,0xe7,0xe8,0x75,0x30,0xbd,0xb6,0xfd,0x16,0x42,0x19, +0x4f,0x39,0x9f,0xb1,0xeb,0xf3,0xcc,0x95,0x12,0xb6,0x13,0xd9, +0x33,0x92,0xd8,0xd1,0x1a,0x36,0x84,0x48,0xb0,0x4f,0x64,0xe7, +0xe1,0xb2,0x49,0x15,0xe9,0xcf,0x06,0xcc,0xed,0x5f,0x52,0xf3, +0x80,0xc0,0xfa,0x01,0x6c,0x28,0x1b,0x5a,0x91,0x15,0x12,0xba, +0x88,0xec,0x64,0xee,0xe5,0x15,0xb9,0xfe,0x79,0xa2,0xcc,0xd1, +0x08,0x35,0x79,0xe4,0x5c,0x6f,0x12,0xc2,0xdd,0x7f,0xb8,0x32, +0xed,0x9e,0x61,0x03,0x7d,0xec,0x2d,0x08,0x9e,0x92,0xd6,0x66, +0xad,0x4b,0x5d,0x9b,0x40,0x15,0x23,0x4b,0xcb,0xe2,0x53,0x54, +0x31,0x6a,0x28,0x56,0xeb,0x09,0x70,0xe7,0x6e,0x50,0xe3,0xff, +0x23,0x4e,0x0d,0x00,0xa7,0xa1,0x02,0x9a,0x0e,0xed,0x8b,0xf6, +0xcd,0xf4,0xa2,0x74,0xb9,0x5f,0x6f,0xc1,0x67,0xd1,0xa0,0xde, +0x58,0x5f,0x87,0x56,0x97,0x7b,0x3d,0x7b,0x76,0xf9,0x0a,0x95, +0xcc,0xf5,0x07,0x5d,0xf6,0xf9,0x45,0x2f,0xb2,0xfe,0x26,0x41, +0xac,0xbf,0x49,0x6d,0xa7,0x92,0x2b,0x37,0xa0,0x8b,0x4e,0x94, +0x5e,0xab,0x8d,0xfa,0x42,0xd9,0x58,0x01,0x1b,0xf9,0x07,0xe0, +0x2f,0xcd,0xb4,0xc4,0xfd,0x23,0xc0,0x3f,0xbc,0x09,0x3d,0xb5, +0xd9,0xda,0x9e,0xaa,0x12,0x4b,0xeb,0x6f,0x56,0x9b,0xd6,0xcf, +0x6b,0x3d,0x55,0x45,0xe9,0x0d,0x3e,0x0a,0x84,0xcc,0x91,0x54, +0x42,0x87,0x04,0xe2,0x0c,0x5b,0xad,0x73,0x4a,0x02,0x98,0x5e, +0xbb,0x09,0xdd,0xe8,0xec,0xd1,0x08,0xd0,0x17,0x3f,0x3d,0x5e, +0x74,0x52,0x3b,0xbc,0xd9,0xc4,0x0e,0x6f,0xac,0x2d,0x8f,0x9d, +0xc5,0xed,0x60,0x31,0x5f,0x94,0xb4,0x6c,0xec,0x6a,0x51,0xe1, +0xa5,0x37,0x1f,0x20,0x47,0xbd,0x8a,0x39,0x1f,0x5a,0xe1,0xac, +0x76,0x2c,0xb3,0xe3,0xae,0xa4,0x74,0x17,0x95,0xf6,0x4a,0x85, +0xb4,0x29,0x6b,0x93,0x6c,0xb0,0x23,0x19,0x0b,0xb5,0xb8,0x4e, +0x76,0x3e,0x84,0x6e,0xd4,0x52,0x8c,0x13,0xd0,0x1b,0x5e,0x4b, +0x98,0x8f,0xbd,0x95,0x46,0xc5,0x78,0xf9,0x2e,0x14,0x00,0xd5, +0xcd,0x06,0x40,0x31,0x65,0xce,0x21,0x4a,0x67,0x69,0xd3,0xdd, +0xf5,0x7f,0x7c,0xf8,0x9f,0xbe,0xe2,0x14,0xe3,0x16,0xed,0xc5, +0xf4,0x15,0x6a,0x25,0x4e,0x24,0x1f,0xa8,0xde,0x36,0xc9,0x43, +0x5c,0xc4,0x22,0xa8,0x16,0xc7,0x69,0x7d,0x44,0x33,0x8e,0x15, +0xe9,0x56,0x80,0x63,0x39,0xde,0x0a,0x86,0x3a,0x42,0x6a,0x87, +0x29,0x62,0x92,0x8b,0x75,0x3c,0x70,0xb2,0x49,0x2c,0xc1,0x85, +0xe8,0xaf,0x29,0xb4,0xd8,0x88,0xa0,0xa9,0x65,0x7e,0xae,0xdd, +0xa7,0xb8,0xcc,0xb8,0x15,0x8b,0x97,0x58,0x2d,0xd6,0x1a,0x76, +0x1d,0xcc,0x12,0x33,0x6f,0xfd,0xae,0xbb,0xa7,0xf6,0x08,0x81, +0x4f,0x31,0x5a,0x90,0xfb,0x74,0xbd,0x4a,0x58,0x00,0xdb,0x97, +0x8d,0x29,0xe3,0x92,0x44,0x5c,0xd1,0x5c,0x9f,0x13,0x02,0x56, +0xe7,0x1e,0xe5,0x16,0xe5,0x59,0xad,0x5c,0xb1,0x3e,0x73,0xc3, +0xf2,0x8d,0x4b,0xac,0x60,0x17,0x36,0xcb,0x29,0x13,0x3f,0xf2, +0x10,0x5b,0x1d,0xc4,0x75,0xe4,0xd1,0x14,0xff,0xee,0x8e,0xbf, +0x70,0xc9,0x7c,0x4f,0xf8,0x05,0x05,0xf8,0x9b,0x6b,0x47,0x15, +0xd3,0x18,0x41,0x2b,0xff,0xbf,0x58,0xf8,0x7f,0xd4,0xfa,0xd7, +0x22,0xaa,0x9c,0xd9,0x3e,0x63,0x01,0x56,0x2c,0xe5,0x20,0x05, +0x22,0xd4,0xeb,0xb2,0x45,0x25,0xd1,0x88,0x65,0xea,0x56,0x4a, +0x8c,0xa3,0x2b,0x58,0x13,0x76,0x06,0x6f,0xa3,0xb6,0x95,0x94, +0x9c,0x0b,0xea,0x2f,0x30,0xc4,0x03,0x7f,0x66,0x55,0xc5,0x5c, +0xc9,0x17,0x59,0xfd,0x49,0x52,0x8e,0x9d,0xa7,0x44,0x5f,0x4f, +0x0c,0x61,0x44,0xf8,0x41,0x99,0x75,0x4e,0x9d,0x45,0x15,0x8e, +0xb8,0x72,0xf5,0x3c,0xbe,0xa5,0x0c,0x66,0x2f,0x4b,0x68,0xf8, +0x0d,0xfa,0xf6,0x5d,0xbd,0x10,0x43,0xb8,0x7e,0xfc,0x42,0x08, +0xe9,0x4b,0xf7,0x5e,0xdf,0x9a,0xa7,0x44,0xda,0x06,0x63,0xfb, +0x50,0xf2,0x24,0x2e,0x90,0x92,0x27,0xb1,0x2d,0x39,0x96,0x6d, +0x49,0x4a,0x9f,0xda,0x67,0xf5,0x02,0x9c,0xcd,0xb1,0xad,0x3a, +0x9b,0xd1,0xa7,0xd6,0xd2,0x07,0x06,0x51,0x7a,0x24,0xe7,0x47, +0xf1,0x91,0x81,0x94,0x3e,0x90,0xf3,0x0a,0x87,0x7b,0x2c,0x81, +0x63,0x1b,0x0c,0xea,0x4b,0xe7,0x86,0xd3,0xb5,0x16,0xc0,0x70, +0xf6,0x16,0x83,0xd0,0x84,0xb0,0x4f,0x76,0xb4,0x52,0xdd,0xf0, +0x5a,0xb6,0x4b,0xa3,0xf7,0xa7,0x2c,0x84,0x9f,0xd5,0x0b,0xc1, +0xca,0x92,0xb6,0xea,0x22,0xc6,0xbe,0xeb,0x11,0x49,0x89,0x85, +0xb9,0xea,0xd5,0x7e,0x4a,0x92,0x93,0x1a,0xcb,0x7e,0x2d,0xe5, +0xe8,0x25,0x75,0x3d,0x7b,0x59,0x3c,0x4c,0x51,0xaf,0x06,0x28, +0x29,0xae,0x94,0x19,0x74,0x67,0x5f,0xca,0xb1,0x0b,0xea,0x06, +0xde,0xac,0xda,0x99,0x2c,0x84,0x2d,0x7e,0x78,0xe8,0xcb,0x64, +0x42,0xaf,0xe7,0x43,0x74,0x2f,0x4c,0xa4,0xd7,0xd2,0xc2,0x71, +0xfe,0xf3,0xfd,0xac,0x17,0xc0,0x1c,0xd9,0xfe,0x47,0x22,0x2d, +0x12,0xc2,0x03,0x07,0x60,0x1b,0x6c,0x13,0x78,0x9a,0x35,0x2d, +0x39,0x5b,0x79,0x1a,0xda,0x40,0x9b,0xca,0x01,0xe1,0xf4,0xcb, +0x5f,0x24,0xb0,0xae,0x10,0x2a,0xcf,0xaa,0xf0,0x6d,0xbd,0x0e, +0x4f,0xbe,0x54,0x11,0xed,0x2f,0xab,0xc6,0x77,0x30,0xdc,0x12, +0x9a,0xe4,0x3e,0x38,0x54,0x78,0x28,0x6d,0xa5,0x6c,0xff,0x9a, +0x60,0x24,0x53,0x82,0x16,0xdf,0x80,0xc2,0x1a,0x67,0x96,0xe9, +0xb7,0xf8,0x3a,0x14,0xe2,0x01,0xde,0x4c,0xdd,0x2c,0xfd,0xa9, +0xcc,0xa8,0x50,0x67,0xfc,0xa1,0x2c,0xae,0xa4,0x5f,0xf5,0x55, +0xf6,0x55,0xb3,0xdc,0x62,0x57,0xe9,0x6d,0x12,0x3f,0x62,0x9e, +0xec,0xe8,0x47,0x0e,0x8d,0xfc,0x55,0xbf,0xfa,0xad,0xc8,0xdf, +0x5d,0x7d,0x3d,0xb3,0x3c,0x3b,0xa9,0x48,0x26,0x92,0xd6,0x62, +0x2d,0x3d,0x5c,0x6d,0x4a,0x44,0x5e,0xd6,0xef,0x20,0xb5,0x93, +0x6b,0x93,0x0a,0x2d,0x67,0xc3,0x03,0x3a,0x3c,0x41,0xce,0x7e, +0x6d,0xc4,0x16,0xe2,0xab,0x81,0xf6,0x69,0xff,0xb3,0x43,0x71, +0x2a,0xde,0xbe,0xb6,0x65,0x16,0x59,0x39,0x27,0xd9,0xf6,0x0e, +0x79,0x40,0xb9,0xa1,0xc9,0xaf,0xe4,0xac,0xa6,0x86,0x85,0xaa, +0x0f,0x89,0xb8,0x9e,0xac,0x4b,0x2a,0xd2,0xca,0xc6,0xcd,0x63, +0x61,0x4e,0xab,0xfb,0xd7,0x50,0xce,0xc8,0x7f,0x96,0xed,0xb2, +0xc9,0x03,0x8d,0x43,0x51,0xdd,0x28,0x97,0xd4,0x56,0x11,0x53, +0xeb,0xd1,0x9d,0x2c,0x93,0xec,0xc4,0x73,0x96,0x35,0x77,0x29, +0x13,0xa5,0xcc,0x52,0x48,0xe9,0xea,0x96,0xda,0x45,0x36,0x99, +0x4f,0xcd,0x5e,0x97,0x25,0x8e,0xc9,0x56,0x94,0xd2,0xbd,0x6b, +0xaa,0xbb,0xea,0x4c,0x7c,0xa8,0xe0,0x6f,0xc9,0x08,0xb2,0x7e, +0x3f,0x61,0xff,0xd3,0xbb,0x12,0x9c,0xa3,0xfa,0xc9,0x8e,0xde, +0x84,0x75,0x6a,0x4a,0x04,0x17,0x6c,0x66,0xa9,0xd5,0xdc,0x8f, +0x6e,0xc3,0x5a,0xff,0x34,0xb3,0x9e,0x01,0x6f,0x3d,0xd5,0x56, +0xaa,0x9e,0x95,0x76,0x2b,0xe7,0xaa,0x4d,0xc8,0x2c,0xc5,0xcc, +0x53,0x0d,0x60,0x25,0x87,0xa5,0x10,0xa8,0x67,0x8b,0xf5,0xe8, +0xff,0xe8,0xa8,0x15,0x84,0xb5,0x17,0x1c,0xfe,0x94,0xd4,0x16, +0x41,0x4a,0x0b,0xba,0x7b,0x8c,0x89,0xa3,0x13,0x04,0xd9,0x4e, +0x73,0xa1,0x5d,0x9e,0xc0,0xb3,0x2b,0x4a,0x15,0x18,0x03,0x62, +0xc5,0xe7,0x72,0xf2,0xf6,0x00,0xaf,0x2f,0x64,0x29,0xce,0x53, +0x46,0x19,0x53,0x9c,0x07,0x1b,0x53,0x9c,0x99,0xa3,0xec,0xd4, +0x3e,0xe0,0xf4,0xf9,0x5a,0x62,0x75,0xa4,0x31,0xb1,0x7a,0x28, +0x8f,0xdc,0xb0,0xfd,0x27,0x0d,0x5a,0x39,0x22,0x7b,0x25,0x52, +0xea,0xdd,0x05,0x63,0x1f,0xf4,0xc1,0xbd,0x8a,0x09,0xdf,0xfb, +0x8c,0x84,0xb1,0xcf,0x21,0x96,0xa7,0x93,0x5e,0x74,0xb2,0xa3, +0xd4,0xdb,0x07,0x63,0xab,0xfa,0xe0,0x6a,0x36,0x59,0x4c,0x27, +0xef,0xb2,0xc9,0xf9,0xce,0x68,0x17,0x47,0x65,0xee,0x74,0x58, +0x2b,0xdb,0xdf,0x64,0x3e,0xf3,0xb6,0x04,0x6e,0x1b,0x7b,0xf2, +0x46,0xb0,0x9e,0xbc,0x71,0xb5,0x4a,0xcb,0xe1,0xcc,0x23,0xa7, +0x74,0xbb,0x7d,0x66,0x0a,0x1d,0x46,0x86,0xa0,0xae,0xad,0x3e, +0x7f,0xd0,0xb5,0xa2,0xef,0x7c,0xb4,0xcc,0x7d,0xfe,0x5e,0xea, +0xfb,0x9d,0x1e,0xf8,0x5e,0x2b,0xaa,0x47,0xf5,0x3a,0x46,0x5b, +0x21,0x79,0xd9,0xaa,0x3d,0xfe,0xf5,0xc4,0xe7,0x4c,0xe5,0x2b, +0x67,0x2a,0x5f,0x1d,0x56,0x6f,0xcf,0x38,0x85,0x75,0xe9,0xb8, +0xae,0x27,0xbe,0xfc,0x36,0xf9,0x03,0x7b,0xdd,0xf2,0x98,0x78, +0xab,0x58,0xad,0x2b,0xf3,0xd1,0xcc,0x63,0x46,0x57,0xbb,0x6b, +0x54,0x20,0x5a,0x3a,0xd3,0x37,0x17,0xb5,0x53,0xb0,0x73,0xb2, +0xed,0x66,0x66,0x88,0xce,0xa2,0x62,0xb8,0x1b,0x11,0xcf,0xa3, +0x8b,0xb0,0x17,0xba,0xf7,0xcc,0x98,0x85,0xbe,0x1c,0x46,0x52, +0xd9,0xed,0xcb,0x92,0xbf,0xba,0x73,0xd8,0x2a,0x80,0x05,0x1a, +0x57,0x56,0xf1,0x6a,0x07,0xa5,0x54,0xc2,0xd4,0x81,0x90,0xca, +0x27,0xab,0x5d,0xa4,0x61,0xe0,0x26,0x02,0xb7,0xb0,0xdd,0x65, +0x14,0xad,0xb1,0x69,0xab,0xae,0x28,0xa3,0xfc,0xa6,0x2b,0x34, +0x05,0xf3,0x17,0xd7,0xa1,0x41,0xb6,0x81,0xe9,0xf3,0x6f,0xa8, +0x25,0x4f,0xed,0xb0,0xfa,0xcf,0x32,0xd7,0x5f,0x36,0x24,0x14, +0x71,0x8b,0x7b,0xb7,0x4f,0xc0,0x3a,0xd6,0x5a,0x24,0x51,0x3d, +0x6a,0xa9,0x50,0xf6,0xa5,0xde,0x24,0xd2,0x0d,0xca,0xf0,0xfa, +0xa9,0xd7,0xfb,0x2b,0x2b,0x7d,0xd4,0x14,0xb4,0xa2,0xbb,0xe7, +0xd8,0x39,0xba,0xeb,0x1f,0x28,0xc9,0x30,0x50,0xbd,0x1e,0xa6, +0xac,0xe8,0xa6,0x26,0x63,0x33,0xd9,0xd4,0x9b,0x48,0x8f,0x94, +0x44,0x88,0x54,0xaf,0x87,0x28,0xa9,0x5d,0xd4,0x44,0x7a,0xcf, +0x8c,0x15,0x54,0x50,0xec,0x23,0x25,0x15,0x86,0xaa,0x77,0x42, +0x95,0x55,0x5d,0xd4,0x65,0xe8,0xcc,0x4a,0x7d,0x30,0x5e,0xf7, +0x8c,0x6a,0x13,0x63,0xd4,0x3b,0x41,0x4a,0x5a,0x47,0xaa,0x4d, +0xb0,0xa6,0x81,0x74,0xa7,0x2e,0xa5,0x7c,0x87,0x29,0x18,0x6d, +0x29,0xa9,0x13,0x23,0x29,0x47,0xcf,0xab,0xeb,0x5e,0xca,0x76, +0xef,0x29,0x57,0x7a,0x4b,0x79,0xcd,0x54,0xf5,0x5a,0xa0,0x92, +0xec,0xa2,0xc6,0x61,0x0f,0xba,0xd0,0xe1,0x4a,0xba,0xd0,0x07, +0xd9,0xa2,0x35,0x69,0xae,0xce,0xc1,0x5e,0x4c,0x4f,0xbb,0xa8, +0x85,0x08,0x7e,0x20,0x5a,0x8c,0x1e,0xe3,0x4f,0x31,0xe7,0xd5, +0x98,0x0f,0x4a,0xea,0x79,0xaa,0xa2,0xbc,0x61,0xec,0xe9,0xe8, +0x45,0x8d,0x2e,0x3b,0xbc,0x27,0x72,0x7d,0x2b,0x22,0x7d,0x56, +0x96,0x50,0xad,0xe6,0x5a,0x7f,0x25,0xc5,0x41,0x8d,0xd7,0xfa, +0x30,0x1d,0x2e,0xa1,0x7c,0x83,0x6a,0x2c,0xd4,0x66,0xc2,0xd6, +0x18,0x2d,0x4a,0x03,0x9f,0x75,0xe9,0x30,0xf0,0x19,0x36,0xbb, +0xa4,0x84,0xf5,0x41,0x5e,0x10,0xf5,0xff,0x6b,0x4b,0x89,0x21, +0xa2,0x3e,0x6f,0x58,0xfe,0xc5,0xbd,0x85,0xb2,0xc9,0x3d,0x22, +0x7a,0x60,0x3d,0x1c,0x14,0x0c,0x83,0xa8,0xa4,0x61,0x7f,0x78, +0x31,0x00,0xdd,0x59,0xa1,0xa5,0xa7,0xa5,0x15,0xb9,0x47,0x0a, +0xac,0xe0,0x96,0x18,0x26,0x3b,0x64,0xb1,0xd4,0xc5,0x9a,0xf9, +0xe4,0x8f,0x24,0x61,0xec,0x82,0x05,0x53,0xc7,0x53,0x41,0x3e, +0x00,0xba,0x47,0x5d,0x55,0xb2,0x58,0x2f,0x3d,0x6d,0x30,0xf4, +0xaa,0x52,0xec,0xaf,0x0e,0x31,0x0e,0x22,0xaf,0x2a,0x7b,0xfd, +0xd5,0x5e,0x02,0x0b,0x02,0xea,0x3e,0xe4,0xaa,0x72,0xdc,0x5f, +0x0d,0xa1,0x83,0xc1,0xe0,0x16,0x75,0x4d,0xb9,0xe6,0xa7,0xce, +0x12,0x44,0x63,0x1d,0x80,0x6d,0xac,0x0e,0x80,0x84,0x2d,0xc0, +0xa2,0x97,0xca,0x1c,0x0f,0x13,0x5b,0x52,0x4b,0xc6,0x5d,0x64, +0xa6,0x4c,0xfc,0x39,0xd9,0x7c,0x10,0xdd,0x8c,0x8b,0x81,0x72, +0x47,0x98,0xc5,0x02,0x49,0xc6,0xd3,0x9b,0x1c,0x8b,0x3e,0xb6, +0x64,0xbf,0xd6,0x12,0xd7,0x78,0xf8,0x73,0x24,0x5f,0xb7,0xd7, +0x77,0xba,0xd0,0x65,0xf2,0x90,0x56,0xb5,0x2d,0x6b,0xe3,0xe2, +0x64,0x87,0xe3,0x04,0xeb,0xfc,0x1c,0x6e,0xd4,0x98,0x8e,0x49, +0x59,0x99,0xeb,0x53,0xb3,0x13,0x20,0x14,0x1b,0x5b,0x16,0xe7, +0x63,0x30,0xe5,0x23,0x6c,0x2f,0xfd,0x56,0x9a,0x71,0xe6,0x86, +0x6e,0x7f,0xaf,0x89,0x02,0x5a,0xff,0xec,0x87,0x66,0xd8,0x53, +0x7f,0x7a,0xb8,0x31,0xf1,0x7a,0x0c,0xfe,0x80,0x23,0x59,0xac, +0x14,0x7d,0x27,0xe5,0x25,0x7d,0xaa,0x09,0xbd,0x93,0xf5,0x42, +0x99,0x5c,0xbf,0x11,0x09,0xf9,0xee,0xcb,0x14,0xa5,0xf9,0x4f, +0x61,0x26,0x44,0x60,0x5e,0x18,0xcc,0xe9,0x82,0x33,0xd1,0x49, +0x16,0x2e,0x12,0x51,0x17,0x50,0xd5,0x7f,0x02,0x39,0x77,0x5e, +0x76,0xb8,0x47,0x04,0xfa,0x15,0xf7,0x47,0xab,0x20,0xb0,0x42, +0x13,0xb4,0x0a,0x04,0x2b,0x1e,0xb7,0x28,0x2d,0x91,0xf2,0x69, +0xef,0xd5,0xb3,0x70,0xf1,0xb0,0x65,0x43,0x97,0x0e,0x4d,0xb5, +0x9a,0x07,0x09,0x3e,0x49,0xdb,0x71,0x31,0x97,0x3a,0x22,0x6a, +0xf9,0x08,0x6b,0xd1,0x97,0xce,0x8d,0x1f,0xb6,0x6c,0xf0,0xd2, +0x21,0xa9,0x56,0xf3,0x61,0x8a,0x6f,0xd2,0x6f,0x38,0x9e,0xce, +0x8d,0x60,0x73,0x4c,0xd7,0x69,0x03,0x13,0x25,0x3c,0x7f,0x17, +0x8e,0x14,0xe2,0x91,0x3b,0x50,0x7c,0x5a,0x35,0xc1,0xf3,0x8a, +0x39,0xaf,0x79,0xcc,0xdb,0x40,0x94,0x84,0x17,0xab,0xe0,0x58, +0x3e,0xe6,0x54,0xc1,0xd9,0x42,0x6a,0xa2,0x9e,0x50,0xcc,0x78, +0xd1,0xdf,0xae,0xe6,0x5f,0xe2,0x60,0x6c,0x3a,0x33,0x53,0xae, +0x7f,0x9b,0x4c,0x85,0xfa,0x62,0x08,0xb8,0x25,0x09,0x01,0xb3, +0xe7,0x8e,0x8c,0xd4,0xf9,0x9c,0xef,0x05,0x9d,0xa0,0xd3,0xf9, +0x2b,0xd7,0x4f,0xcd,0x3d,0xde,0xef,0x37,0xbd,0xd8,0x9c,0x60, +0x13,0xf4,0x0f,0x02,0x7f,0x6c,0x64,0xfc,0xd3,0xf5,0x8e,0x92, +0x23,0xe0,0x26,0x36,0xd1,0x08,0x7b,0x05,0x01,0xab,0x6b,0xdb, +0x2b,0x90,0xfe,0x71,0xbb,0xa3,0xec,0x67,0x13,0xf3,0xfd,0x1c, +0xe3,0xb0,0x9e,0xf5,0x2c,0x38,0x6c,0x0c,0x83,0x69,0xcd,0xc2, +0x60,0x50,0x47,0x56,0x70,0xbf,0x1e,0xca,0x3a,0x92,0x27,0x9b, +0xbc,0x24,0x9d,0x87,0x8b,0xcc,0xeb,0x2e,0xdb,0xce,0x24,0x22, +0x73,0x13,0xbe,0x83,0x85,0x54,0xfa,0x31,0x37,0xa1,0x0b,0x52, +0xd1,0xad,0x69,0x55,0xc6,0x5e,0xb8,0xab,0xfb,0xc9,0x0d,0x13, +0x48,0x62,0x05,0x93,0x16,0xcd,0xa8,0x70,0x90,0xed,0x4f,0x90, +0x12,0xca,0x95,0xde,0xd6,0x72,0xac,0x34,0xc9,0xab,0xb9,0xda, +0xe3,0xbd,0x27,0xde,0xa2,0x2c,0xee,0x03,0x23,0xca,0x86,0x01, +0x84,0x9a,0xaf,0x46,0x4f,0xbd,0x9d,0xe5,0x8d,0x92,0xc2,0x13, +0xfb,0x4e,0xac,0x59,0x95,0xb9,0x6c,0x0d,0x2b,0xc5,0x28,0xb1, +0xfa,0x28,0xab,0x84,0x7e,0x7b,0x0b,0x26,0x55,0xc9,0x8e,0x97, +0x89,0xef,0x80,0xc9,0x7d,0xa7,0x1b,0x52,0x28,0xdf,0x3a,0x4f, +0x86,0xe8,0xba,0x3f,0x88,0x60,0x67,0x9b,0xf7,0xcf,0xdc,0xa3, +0x84,0x0b,0x8c,0x70,0x2f,0x42,0x2b,0xd7,0xa4,0x11,0x2e,0xfe, +0x0f,0xf1,0x80,0x12,0x56,0x83,0x53,0x99,0x9a,0x17,0x02,0xce, +0x49,0x42,0xff,0xb9,0xd3,0xc7,0xd2,0xb9,0x87,0x11,0x5a,0x45, +0x29,0x06,0xb6,0x3f,0x47,0xc0,0x6d,0xe8,0x35,0xe5,0xa3,0x9f, +0x9a,0x26,0x88,0xd5,0x71,0xd5,0x59,0x12,0x66,0x60,0x03,0x48, +0xf2,0x53,0x0f,0x5e,0x83,0x58,0x68,0x80,0xcb,0xaa,0x94,0x32, +0x01,0x2b,0xc4,0xb6,0x44,0x85,0x2a,0x05,0x04,0xb5,0x8b,0xba, +0x86,0x05,0x3c,0x45,0x5e,0x53,0xfe,0xf4,0x53,0x93,0x04,0xba, +0x46,0x09,0xd1,0x86,0x37,0xfc,0xd4,0x19,0x5f,0xd7,0x48,0xa7, +0x6b,0x2c,0xf1,0x53,0xf7,0x5f,0x83,0x38,0xba,0x46,0x6a,0x95, +0x52,0x22,0xa8,0x6b,0xa8,0xcc,0x1d,0x40,0xd4,0x44,0xba,0xeb, +0xdc,0x06,0x5d,0x53,0x1e,0xf9,0xa9,0x73,0x29,0x3c,0x89,0xc2, +0xd5,0xdf,0xaf,0x29,0xbf,0x0b,0x6a,0x77,0x75,0xa6,0x14,0x01, +0xdd,0x07,0x5e,0x55,0x2e,0xfb,0xab,0x63,0xbe,0xce,0x3d,0xfb, +0xff,0xd8,0x7a,0x0f,0xb0,0x2a,0xae,0xe7,0x7d,0xdc,0x44,0xef, +0xae,0xee,0x31,0x44,0x12,0xd7,0xc0,0x65,0x73,0xaf,0x52,0xac, +0x58,0xb1,0x45,0x13,0x45,0x9a,0x85,0xae,0xa8,0x58,0xb1,0x82, +0x0d,0xbb,0x22,0x28,0xbd,0xa8,0x08,0x2a,0xd5,0xde,0x7b,0xc3, +0x2e,0x16,0xaa,0x74,0xac,0xa0,0x40,0x62,0x34,0xc6,0x14,0x0b, +0x6a,0xd4,0xb4,0x59,0x72,0x16,0x3f,0xbf,0x33,0xbb,0x17,0x93, +0xef,0xff,0xf9,0x3f,0x3e,0xb2,0x3b,0xef,0x39,0xbb,0x77,0xef, +0xde,0xdd,0x33,0x33,0xe7,0xcc,0xbc,0x53,0x25,0xff,0x8c,0x6d, +0x41,0xf8,0xb6,0xce,0xb8,0x2b,0x67,0xbb,0x29,0x13,0x58,0x5b, +0x02,0x7e,0xcc,0x33,0xf6,0x31,0xdf,0xba,0x35,0x56,0xdd,0x95, +0xbd,0xa0,0xb5,0x12,0x58,0xd5,0x20,0xf3,0x4a,0x7f,0x72,0xab, +0xe2,0xc4,0x8d,0x6f,0xcf,0x4f,0xee,0x29,0xb5,0x48,0x13,0x46, +0xdc,0xeb,0x30,0x24,0x60,0xb6,0xef,0x52,0xc3,0x5a,0x62,0xb2, +0x40,0x4c,0x46,0x86,0xc9,0xe4,0xc8,0x47,0x7b,0x24,0xfa,0x83, +0x3d,0xa2,0xa1,0x52,0x87,0xee,0x6a,0xd9,0xc9,0x42,0xcd,0x0a, +0x91,0x2c,0x4f,0xa8,0xe2,0xff,0x31,0x4a,0x1e,0xa4,0xd4,0xb0, +0xb3,0xc5,0xe5,0x33,0x23,0xe3,0xdf,0x72,0xad,0x37,0x6f,0x61, +0xed,0x3a,0x82,0x45,0xed,0x0a,0xa5,0x2f,0xfb,0xb2,0xde,0xce, +0x12,0xf7,0x9d,0x40,0x7e,0x48,0xa9,0x4b,0xaf,0xdc,0x12,0x8f, +0xb5,0x5d,0x3f,0xa3,0xbe,0xd1,0xd4,0x15,0x3b,0xdf,0xbe,0x93, +0xbc,0xf1,0xa6,0xd1,0xd4,0xc6,0x6c,0x8f,0xe5,0xd4,0x5c,0x6b, +0x4b,0xf1,0x51,0x3e,0x6a,0x3a,0x26,0xae,0x50,0xc3,0x63,0x10, +0xf7,0x45,0x9c,0x9a,0x0b,0xf9,0x0c,0x13,0xe9,0xd8,0x68,0x3a, +0x8a,0x5d,0xb6,0xee,0xf6,0xdd,0xe4,0x8d,0xb7,0x8c,0x88,0x17, +0x5a,0x2c,0x93,0x5a,0xc8,0xc2,0xe6,0xd1,0x4d,0x98,0xd4,0x3e, +0x4c,0x50,0x77,0x9e,0x73,0x30,0x4a,0xde,0xaa,0x1b,0xc2,0xf5, +0xa4,0xe9,0x63,0x98,0xa6,0x4b,0xe0,0xc6,0x80,0x4b,0x6f,0x48, +0xd7,0x0d,0x46,0xa2,0x76,0x59,0xf0,0x12,0xd9,0x83,0x1d,0x73, +0x0f,0xf2,0xd1,0xac,0x43,0x93,0x30,0xf5,0x1e,0x54,0xa1,0x49, +0x98,0x7a,0x1f,0xaa,0x9a,0xb0,0xd8,0x7b,0x70,0x1d,0x31,0xdc, +0xa2,0x99,0x28,0xb2,0x51,0x6e,0x49,0x35,0x9c,0x56,0xd8,0xc0, +0x85,0x5b,0xc4,0x24,0xa3,0x03,0x06,0xee,0x1d,0xb4,0x46,0x47, +0xbc,0x8e,0x1b,0x42,0xb7,0x8a,0x4a,0x37,0x98,0xa0,0xce,0xf0, +0xc1,0x3c,0x1a,0x70,0x17,0xb6,0xbf,0x3f,0x25,0xf8,0xe0,0xa1, +0xb8,0xaf,0x9d,0x7a,0x3e,0x0d,0xba,0x03,0xfb,0xe9,0x69,0x0e, +0x6a,0xd4,0x96,0xa0,0xbb,0x4c,0x62,0x2d,0x92,0xf5,0x32,0x01, +0xee,0xfb,0x8a,0x30,0x97,0xce,0xb9,0xa3,0x41,0xa2,0x9c,0x24, +0x3b,0xb8,0xd0,0xce,0xf4,0x3d,0x74,0x76,0xe1,0xaa,0x29,0x88, +0xd0,0x19,0xde,0xd3,0xce,0xbc,0x99,0x98,0x50,0xea,0x47,0x2b, +0xaf,0xc3,0x78,0xee,0xea,0xb9,0x9d,0x57,0x0c,0x07,0xf2,0x42, +0xb8,0x89,0x4b,0x17,0x2d,0x88,0x36,0x9a,0x89,0x23,0x98,0x7d, +0x1f,0xa0,0xf3,0x62,0xf6,0x7a,0xc0,0x08,0x36,0x3a,0x4d,0x90, +0x5a,0x24,0x08,0xb8,0xca,0x74,0xe8,0x1e,0xfc,0x4a,0x99,0x79, +0xf4,0x8b,0xbb,0x08,0x0b,0x35,0x09,0x97,0x9a,0x58,0x4b,0xda, +0x3d,0xa8,0x56,0xd7,0x9f,0xd2,0xd4,0x68,0x5d,0x06,0xa6,0x8c, +0xd2,0x41,0x30,0xac,0xda,0x72,0x10,0x7a,0x1b,0xe3,0xca,0x75, +0xa8,0xbc,0x56,0x47,0xd3,0x05,0x56,0x4c,0xd9,0x19,0x45,0x41, +0xac,0x95,0x43,0xaf,0x2b,0xa1,0x35,0x72,0x42,0x91,0x72,0x87, +0xee,0x36,0xe9,0x39,0xa6,0xc9,0x43,0x8b,0x94,0xd0,0xef,0xe5, +0x84,0x62,0x86,0x9e,0x42,0xb4,0x44,0xd5,0xd9,0x91,0x25,0x4a, +0xe4,0x23,0x39,0xa9,0x54,0xa9,0xa3,0xd9,0x0c,0xbd,0x8c,0x2a, +0xfb,0x89,0x1c,0x51,0xae,0x44,0x3c,0x96,0x37,0x54,0x32,0xb4, +0x54,0x6a,0xe9,0x2c,0x88,0xbf,0xca,0x21,0x65,0x4a,0xc8,0x2f, +0x72,0x5c,0xb9,0xd4,0xa6,0x8d,0x80,0xea,0xf8,0xa9,0x1c,0x51, +0xa6,0x44,0xfc,0x2a,0x6f,0x28,0x67,0x9d,0x6e,0xc9,0x2b,0x05, +0xf1,0xa5,0x1c,0x52,0xae,0x84,0xd4,0xcb,0x71,0x15,0xcc,0x07, +0x7d,0x80,0x1f,0x51,0x89,0x53,0xa6,0x69,0x6c,0x6f,0x1b,0x94, +0x72,0x43,0xe9,0x3a,0x51,0x71,0x60,0x3f,0xbe,0x03,0x43,0xdf, +0xc9,0x61,0x85,0x4a,0xd8,0xef,0xf2,0xda,0x62,0xd6,0xb7,0xae, +0xe9,0x72,0xfe,0x90,0x57,0x55,0x2a,0xab,0x7e,0x97,0xe3,0x6f, +0x28,0xd5,0xf4,0x2d,0xaf,0x6a,0x71,0x76,0xef,0xdb,0x0f,0x10, +0x86,0xd0,0x34,0xfc,0xf5,0xfc,0xf0,0xd7,0x63,0x1e,0x41,0xfe, +0xc3,0x0b,0xb9,0x17,0x93,0x92,0x2c,0x3e,0x94,0xa3,0xd7,0x5b, +0x9c,0x2d,0xd6,0x99,0xbd,0xff,0x12,0x8d,0x9a,0x0e,0xcc,0xa8, +0x99,0xc1,0x8c,0x1a,0x3a,0x57,0x8c,0xe2,0xc6,0xce,0x3c,0x92, +0x97,0x7b,0xfe,0x68,0xa1,0x31,0x93,0x2b,0x3c,0xbf,0x70,0x82, +0xff,0xcc,0x45,0x63,0x8d,0x66,0xf7,0xc4,0x01,0xbc,0x3c,0x10, +0x92,0x75,0xdf,0xb3,0x41,0x84,0x6d,0x06,0xf0,0xf0,0x9a,0xb9, +0x51,0xb1,0xbc,0x19,0xfd,0x4b,0x32,0xc6,0x0b,0x3c,0x38,0xa4, +0x54,0x5c,0xbb,0xae,0x3f,0x8d,0xa1,0xcc,0x92,0x4d,0x90,0x10, +0xcf,0x33,0xf5,0x17,0x0e,0xcd,0x20,0x10,0xd7,0x29,0xfc,0x60, +0x6e,0x07,0x1a,0x48,0xbf,0x52,0x15,0x9d,0xd4,0xe1,0x8e,0xe0, +0xa5,0xe0,0x30,0xda,0xc1,0x4c,0x80,0xf9,0xb0,0x7c,0x0b,0x1b, +0x87,0xfe,0x10,0xb2,0x8b,0xf5,0x47,0x87,0x2f,0xe1,0xdb,0x33, +0x75,0x4a,0x7b,0x08,0x6f,0x9d,0x6c,0x24,0x9b,0x44,0x01,0xd5, +0x3c,0xc6,0x67,0xe6,0xbb,0x2a,0x93,0xf8,0xee,0xb0,0x41,0xa4, +0x25,0x30,0xc2,0x8d,0x46,0xc9,0x98,0xd1,0x05,0xfa,0xd7,0x37, +0xd9,0x27,0x34,0xeb,0x72,0x93,0xea,0xa9,0xbe,0xcb,0x28,0xda, +0x8c,0x36,0x7b,0x3d,0x0a,0xf4,0xf8,0x12,0x8f,0x10,0x82,0xb8, +0x4e,0xb3,0xbc,0x68,0xcb,0xee,0x5a,0xb6,0xf4,0x9f,0x97,0x6f, +0xc3,0x17,0xcc,0x9e,0x78,0x95,0xc0,0x49,0xe6,0xb7,0x84,0x31, +0xaf,0x5e,0x96,0x14,0xdd,0xbe,0xb4,0x0a,0x3d,0x9c,0xcd,0xaf, +0x88,0x64,0xdb,0x45,0xc8,0xce,0xbc,0x5a,0xa2,0x3f,0xfe,0xf5, +0x22,0xbe,0xc3,0x78,0xe6,0xab,0x1b,0x2f,0x0a,0x73,0x12,0x88, +0xfe,0x5b,0xe5,0xe3,0x31,0x90,0x1b,0x21,0x99,0x7f,0x22,0x44, +0xa4,0x8d,0x81,0xf2,0x1d,0x6b,0x19,0x2a,0xb5,0xa8,0x17,0x20, +0x09,0x56,0x29,0x92,0x40,0xcf,0x62,0x8e,0x4a,0x88,0xa0,0x6c, +0xab,0xe2,0x68,0x2b,0xb6,0xbb,0x4a,0x50,0xce,0xaa,0xbb,0x0d, +0x2d,0xe5,0x49,0xa2,0x69,0xfc,0x74,0xf9,0x77,0x4c,0xd5,0x7a, +0xad,0x16,0x1a,0xcd,0xb4,0x5d,0x63,0x99,0xa0,0xf8,0xb0,0x4d, +0xb9,0xa0,0x8c,0x21,0xff,0x34,0x97,0xe3,0xc5,0x1b,0xb4,0x2d, +0xcc,0x70,0x6a,0x94,0xef,0x43,0x3d,0xb4,0x45,0xc1,0x8f,0xa7, +0xe7,0x88,0xf4,0xe9,0x0c,0x41,0x99,0xc5,0x3a,0x3e,0x11,0x94, +0x69,0xda,0x86,0x49,0x6d,0x46,0x0a,0xca,0x0f,0xf7,0x61,0xbc, +0xf4,0x69,0x67,0x81,0xfc,0xd3,0x52,0xce,0x16,0x2b,0xe9,0xe7, +0xe0,0xe0,0xd4,0xd8,0xe9,0x3e,0x2c,0x84,0xcf,0x51,0xe8,0xc5, +0xd3,0xbb,0x04,0xcb,0x0e,0x15,0x49,0xd6,0xb1,0x6a,0x29,0x70, +0x07,0x2c,0x16,0x5e,0xf7,0xe6,0xb7,0x1e,0x75,0x13,0x85,0xa1, +0x9d,0x3b,0x3d,0x1f,0x0a,0xb3,0x8c,0x88,0xfb,0x69,0x25,0xc2, +0x9f,0xf5,0xbc,0x43,0x67,0xd1,0x59,0x3d,0x87,0xf7,0xd4,0x0a, +0x85,0x13,0xca,0x59,0xcd,0x87,0x96,0xb0,0xa3,0x84,0xee,0x80, +0xe6,0x70,0xb4,0x94,0xbe,0x56,0xec,0x24,0x5d,0x47,0xac,0x41, +0xe6,0x46,0xb7,0xaa,0x49,0xfc,0xb5,0xbb,0x76,0x5f,0x31,0x86, +0x96,0x62,0x12,0x7f,0x18,0x59,0x84,0xc4,0x8d,0xcb,0x1e,0xd3, +0x36,0xf0,0x07,0x1b,0xa2,0x60,0xac,0x72,0x92,0x99,0x39,0xba, +0x41,0xae,0x17,0x98,0x6b,0x30,0x49,0xd2,0xb1,0x01,0xe7,0xd3, +0xc1,0x02,0x35,0x1b,0xcc,0xec,0x83,0xd1,0x44,0x6a,0xf5,0x93, +0x90,0x90,0x24,0xd9,0x59,0x08,0x70,0x8c,0x0b,0x27,0x91,0x51, +0x31,0x16,0x6b,0x25,0xdb,0xe9,0x42,0xa0,0x1f,0x6d,0x43,0x89, +0x81,0x44,0x46,0x33,0x60,0xa3,0x6e,0xcf,0xe5,0xf4,0xab,0xe5, +0xfa,0x53,0x98,0x1b,0xd2,0x3a,0xd0,0x9b,0x99,0x03,0x6d,0x0d, +0x24,0x3e,0xf9,0xf0,0xa1,0x2d,0x87,0x37,0x9e,0x90,0x5a,0x3c, +0x13,0xc2,0x3d,0xbe,0x99,0x46,0x17,0x0f,0x6f,0x49,0x12,0xc0, +0x9c,0xf6,0xb5,0xc8,0xbd,0x4c,0x3f,0x81,0x2e,0x31,0x99,0xe1, +0x1b,0x23,0xa2,0x2d,0x63,0xe2,0xb0,0xe0,0xfb,0x35,0xb5,0xc9, +0xc1,0x22,0xf7,0x0a,0x6b,0xea,0x88,0x39,0x11,0xff,0x69,0x5a, +0xcb,0xdf,0x5c,0x3c,0xee,0xb8,0x8b,0x15,0x15,0x07,0x59,0xd3, +0xaf,0xe8,0x57,0x0f,0xad,0x41,0xac,0xce,0x39,0x71,0xe3,0xb8, +0x91,0x34,0xac,0x94,0x37,0x8b,0xca,0x5a,0x88,0x1e,0x4a,0xf3, +0x64,0xe6,0x17,0xb4,0xa4,0xfd,0xdf,0xf7,0x10,0xc8,0xae,0xef, +0xb7,0x3d,0xfd,0x5d,0x6a,0x71,0x54,0xb0,0x8d,0xe8,0x1f,0x32, +0x14,0xe7,0x77,0xd4,0x2a,0x32,0xdb,0x9e,0xff,0x81,0xa0,0x4d, +0x78,0xbf,0x55,0x43,0x4c,0x8b,0x54,0xbb,0x1f,0x6e,0x7b,0xfe, +0x27,0x82,0xd6,0xe1,0x7d,0x55,0x70,0x24,0x03,0xe1,0xa1,0x3c, +0x0f,0x0b,0x79,0x14,0xbd,0x78,0x61,0x7f,0x1d,0xcb,0x72,0xd8, +0xfb,0x75,0xef,0x5e,0x3f,0x06,0x9f,0x5d,0x25,0x50,0x32,0x66, +0x09,0xea,0xe6,0xb4,0xc0,0xdc,0x98,0xc6,0xe1,0x6a,0xbe,0xe4, +0x57,0xa2,0x1f,0x0c,0xe8,0x5b,0xd5,0x60,0xed,0xaa,0xa4,0xf3, +0x08,0x8f,0x57,0xe1,0x3e,0x18,0xff,0xde,0xaf,0xaa,0xa1,0x3f, +0x7b,0xb8,0x54,0xf8,0x4b,0x15,0x6e,0x6b,0x52,0xf3,0xcc,0x36, +0xd8,0xac,0xc2,0x82,0x0a,0x8b,0xf8,0x3a,0x4d,0xad,0x92,0x1f, +0xb9,0x2a,0xab,0x79,0x2c,0x96,0x95,0x28,0x42,0xfb,0xe9,0x82, +0x93,0xd4,0x2a,0x88,0xfd,0x1a,0x43,0xc8,0x04,0xf6,0x69,0x55, +0x9c,0xf2,0x35,0x38,0x89,0x63,0xe0,0x6b,0xfb,0xbb,0x0d,0xd6, +0x6e,0xca,0x06,0x9e,0xc1,0x0a,0x55,0x61,0x0b,0xd4,0xf1,0x53, +0xef,0xca,0x37,0xdd,0x94,0xb9,0x3c,0x79,0x99,0xc0,0x4f,0x0f, +0x59,0x35,0x67,0xba,0x7e,0x44,0x89,0xdf,0xcb,0x57,0x25,0xd7, +0x31,0xa2,0x0d,0xc9,0xd3,0x79,0x07,0x6c,0x92,0x3a,0xd8,0x09, +0x7c,0x5f,0xf2,0x2a,0x81,0x9f,0x16,0x12,0x12,0x38,0x8d,0x75, +0x92,0x6c,0xeb,0x10,0x31,0xa5,0x61,0xee,0x52,0xd3,0x30,0xc3, +0x3e,0xa4,0x61,0xb6,0x87,0x0a,0xf2,0x87,0xd4,0x7e,0x9a,0x30, +0x2d,0x9e,0xc8,0xff,0x93,0x45,0x76,0x7b,0x68,0x3b,0xc9,0xfa, +0x07,0xf6,0x9c,0x59,0x82,0xaf,0xb1,0x94,0x07,0x0f,0xb0,0x00, +0x1b,0x18,0xc3,0x2c,0x7a,0x4b,0x66,0xa1,0xbb,0x18,0xa6,0x30, +0x5b,0x9f,0x0e,0x81,0xae,0xde,0x4a,0x67,0xb8,0x24,0x77,0xf1, +0xe6,0xe8,0xdf,0x2d,0x98,0xdc,0x0d,0x86,0xb0,0x91,0xb1,0xe7, +0xd8,0xfc,0x7a,0x63,0x1a,0x5f,0x5f,0x98,0xff,0xec,0x59,0xe1, +0x78,0x7b,0x43,0x2c,0x6f,0x3f,0x76,0x7c,0x4f,0x03,0x53,0x72, +0xc7,0x51,0xc9,0x6d,0x83,0x45,0xc3,0x94,0xbb,0xb2,0xbd,0x5c, +0xe5,0xc4,0x29,0x29,0x2d,0x98,0xbc,0x02,0x70,0xd6,0xe6,0xe2, +0xee,0xfd,0x59,0xc6,0xad,0x7c,0xd6,0xaa,0xfd,0xd3,0xa7,0xaf, +0x5a,0x3e,0xc7,0x10,0xc1,0xcf,0xd9,0xbd,0xfc,0xa2,0xc1,0xac, +0x9d,0xd4,0x7e,0xb9,0x60,0x36,0xd6,0x6b,0xbc,0x5a,0xc7,0x32, +0xbf,0xd0,0xb0,0x8d,0x2f,0xac,0xcc,0x57,0xe7,0xc3,0xc6,0x8f, +0x35,0xb0,0x86,0x71,0x6a,0x43,0x41,0xa1,0x61,0x3b,0x6b,0x28, +0x50,0x1b,0xc6,0xb1,0x86,0xf1,0x4d,0x47,0xe4,0xb3,0x86,0x82, +0xa6,0x23,0xc6,0x61,0x83,0x3f,0xd2,0x8d,0x79,0xe4,0xe5,0xab, +0xa7,0xca,0x45,0x22,0xb2,0xf2,0x09,0xec,0x88,0x89,0x27,0xc6, +0x59,0xc0,0x97,0x59,0x8f,0x8f,0xe4,0x1e,0xdb,0x91,0xb2,0x7b, +0xc3,0xce,0x78,0x38,0xd8,0xdb,0xe2,0x58,0xbe,0xce,0x6c,0xb2, +0x57,0x80,0x7a,0xaa,0x6c,0xac,0x5c,0x7a,0xb5,0x32,0x5b,0x3d, +0x55,0xc0,0x64,0x83,0x59,0x80,0xd7,0x0c,0xda,0x9d,0x76,0xf7, +0xba,0x90,0x6d,0xc8,0xe4,0xb3,0xcb,0x2f,0x42,0x77,0xe8,0x5e, +0x3e,0x3d,0xc0,0x60,0xb6,0xde,0x55,0x5d,0x32,0x70,0x03,0x2f, +0xe6,0x01,0xb5,0x65,0xaa,0xcf,0x37,0xca,0x29,0xf6,0x9b,0x04, +0x4b,0xb3,0x93,0x92,0xcd,0x3c,0x21,0x75,0x57,0xd2,0x4e,0xc9, +0xfc,0x85,0xa0,0x33,0xa3,0x77,0xa4,0xf6,0x3d,0x04,0xa9,0xc5, +0x53,0x61,0xed,0xc6,0x3d,0x27,0x32,0x88,0xfc,0x95,0x64,0x7b, +0x55,0x20,0x89,0xbb,0xa3,0xe1,0x32,0xed,0x6c,0x71,0xb1,0x98, +0x9e,0x04,0x43,0x28,0x39,0x6a,0x84,0xd5,0xeb,0xc5,0xd8,0xc2, +0xe0,0x98,0x89,0x71,0xfe,0x49,0x96,0x84,0x86,0x48,0x6d,0xd8, +0x9b,0xbc,0x85,0xd0,0x67,0x4d,0xb5,0x09,0xc0,0x1e,0x84,0x22, +0xad,0xac,0x1e,0x4e,0x10,0x4f,0xe0,0xa9,0xd9,0xa4,0x11,0xd4, +0xba,0x83,0x81,0x70,0xd0,0x2c,0xe5,0xad,0xd4,0x81,0x0a,0xdf, +0x13,0x1c,0x32,0x1e,0xd7,0xed,0xdd,0x73,0xc5,0xb8,0xaa,0x89, +0xf7,0x43,0x7e,0x49,0xde,0xaf,0x15,0x76,0xee,0x96,0x74,0x5d, +0x04,0xdc,0xdb,0xb5,0xfb,0xb2,0x31,0xb4,0x40,0x32,0x27,0x98, +0xe3,0x18,0x84,0xd9,0x8d,0x25,0x92,0xae,0xab,0x20,0x2f,0x33, +0x89,0x51,0x25,0xba,0x88,0x09,0xc3,0x70,0x1a,0x7c,0x31,0x41, +0x26,0x1d,0x48,0x66,0x67,0x3d,0x2e,0x59,0xbf,0x61,0x03,0x33, +0xe1,0xe9,0xb0,0x98,0x7e,0x6e,0x3d,0xa5,0x36,0x4e,0xc2,0xb3, +0xfe,0x77,0xe9,0xb0,0x74,0x83,0x0a,0xf5,0x77,0xe9,0x29,0xb5, +0x1a,0xce,0xa0,0x6a,0x0d,0x02,0x3e,0xf3,0xfb,0x8a,0x97,0xfa, +0xbf,0xa4,0x56,0xc9,0x42,0x87,0x6e,0xdf,0x7b,0x02,0x17,0x85, +0xe8,0xc8,0xb4,0x87,0xb7,0x9e,0x48,0x6d,0x9c,0x85,0x7e,0x0f, +0x47,0xc2,0xa8,0x58,0x03,0x69,0xf9,0x12,0xba,0xc2,0x2d,0xb7, +0x6e,0x34,0xba,0xde,0x8d,0xde,0x84,0x9e,0x9d,0xb4,0x32,0xf2, +0x56,0x29,0x44,0x94,0x85,0xbe,0xec,0x39,0x7f,0x86,0xca,0x28, +0xea,0x47,0x98,0xc7,0x1c,0x34,0x24,0x56,0x18,0x48,0xe7,0xd3, +0x8e,0x38,0xcb,0x4e,0x90,0x08,0xa2,0x9e,0x69,0x97,0x34,0x64, +0xde,0x33,0xff,0x42,0xa0,0xed,0x2d,0xf2,0xaf,0x32,0x39,0x5d, +0xa0,0x65,0xaa,0x6c,0x64,0x8e,0x22,0x11,0x13,0xfb,0x44,0x0e, +0x5d,0xed,0x75,0x27,0xca,0x62,0xc7,0xdd,0xed,0x3f,0xd5,0xeb, +0x2b,0x94,0x56,0x9e,0x50,0xc4,0x83,0x8e,0x88,0xa9,0xa3,0xe5, +0xa3,0x3b,0x13,0x66,0xc5,0x05,0xc5,0x04,0x5a,0xde,0x8b,0xd6, +0xed,0x7e,0xb4,0xe5,0xd1,0x6f,0xfa,0x12,0xe5,0x17,0xf6,0xd1, +0x3f,0xc9,0xd3,0x1c,0xe9,0x20,0xc5,0x03,0x06,0x39,0x72,0xb5, +0x4a,0x7b,0x11,0x06,0xc9,0x1e,0x74,0x10,0x7b,0x25,0x16,0xc6, +0x4e,0x8d,0x1f,0x9f,0xd8,0x92,0xf9,0x46,0xad,0xca,0xa8,0x37, +0x56,0xcd,0xde,0x8d,0x91,0x0c,0xdb,0xb5,0xf7,0x0e,0xf3,0xd6, +0x30,0x6a,0x47,0x0d,0x6e,0xef,0x66,0x35,0x1f,0x5b,0xb4,0x74, +0x69,0xa9,0x4d,0x6f,0xc1,0x94,0x1b,0x87,0xe0,0xaf,0xb8,0xee, +0x23,0x6c,0xdd,0xf5,0xd8,0x28,0xb5,0xf1,0x17,0x16,0x22,0xf4, +0x8a,0xc7,0x00,0xfa,0xad,0xbb,0x9e,0xb1,0x33,0x48,0x6d,0xda, +0x0b,0x0b,0xd8,0x57,0x29,0x13,0x0e,0x67,0x1c,0x4d,0xce,0xb2, +0x84,0xd4,0x52,0xe5,0x89,0x0f,0xc1,0x6a,0x7a,0xc6,0x08,0xc9, +0xf6,0x9d,0x00,0xed,0xb7,0xed,0x7e,0xc1,0xbc,0xee,0xd5,0xaf, +0x60,0x11,0x8c,0xa3,0x67,0xc6,0xc3,0x52,0x7b,0xba,0xc8,0x74, +0x63,0xd4,0x25,0xc6,0xbd,0x2e,0xb8,0x9a,0xbc,0x1b,0x9f,0x85, +0xdd,0xec,0x57,0x9c,0x2e,0x4c,0x8b,0x23,0x56,0xd0,0xe9,0xe7, +0x7a,0x90,0xc0,0xca,0xe1,0x21,0x6d,0xed,0x14,0x18,0x3c,0x79, +0x9e,0x31,0x8e,0xdb,0x03,0xbb,0x75,0x04,0xc6,0x16,0x2b,0x1f, +0xf1,0x49,0xaf,0x74,0xf0,0x14,0x66,0x29,0x7d,0x46,0x43,0x7d, +0x37,0xe6,0x43,0xcc,0x06,0x47,0x22,0xff,0x23,0xd0,0xd9,0x92, +0x8d,0x33,0x66,0xa5,0xd9,0x0b,0xca,0x39,0x1a,0x20,0x42,0x07, +0xe6,0xa2,0xf6,0xe5,0x3b,0xc9,0x46,0xc9,0x1a,0xab,0xa9,0x61, +0xb4,0x70,0xbd,0x64,0x63,0x14,0xec,0x15,0x36,0xee,0xfd,0xc6, +0xbe,0xa7,0xe6,0x50,0xea,0x55,0xf7,0x92,0xa3,0x3e,0xcc,0xd7, +0x94,0x6c,0xbf,0x12,0x28,0xf9,0x56,0x9e,0xc6,0x93,0x8e,0x02, +0xe5,0xde,0x57,0x09,0x54,0x47,0x47,0x79,0xc1,0x28,0xfa,0x71, +0x9d,0x3c,0x55,0x05,0xff,0xcf,0x1c,0x06,0x6d,0x6e,0x82,0x25, +0xdb,0x41,0x02,0x6d,0x56,0x27,0x4f,0xe2,0x49,0xc8,0x41,0x23, +0xcd,0xa2,0x59,0xe2,0xc1,0x3d,0x7b,0x0e,0x1e,0x08,0xd9,0xb3, +0x74,0xe9,0xaa,0x90,0x65,0x4b,0x77,0x33,0x94,0x34,0xcc,0x82, +0xdb,0x62,0x8d,0x3c,0x69,0x18,0x73,0xcf,0xf5,0xde,0xa0,0xef, +0xa0,0xfe,0xe5,0x94,0xc1,0xa4,0x61,0x01,0x73,0x87,0x24,0xeb, +0x07,0x02,0x78,0xff,0x41,0x1a,0x16,0xaa,0x02,0x7b,0x6c,0xa0, +0xb9,0x1a,0xbf,0x90,0x93,0x56,0x70,0x47,0x9f,0x0a,0x9d,0xca, +0xe9,0x43,0x2f,0xf8,0x68,0x2d,0x4f,0x3f,0x5b,0x30,0xb2,0x87, +0xea,0xa3,0x96,0x30,0x1f,0xf5,0xa5,0x69,0xc2,0x2d,0xb9,0x69, +0xc2,0xed,0x67,0xe6,0xa3,0xfe,0x8d,0x20,0x9c,0x87,0x8a,0x91, +0x5d,0x68,0xef,0x97,0xa3,0xe8,0x45,0x67,0xc8,0x1e,0x85,0xbb, +0x23,0x69,0x19,0x9c,0x27,0x0d,0xcb,0x34,0xf7,0x4b,0x0f,0xdf, +0x0e,0x6b,0xac,0xaa,0x61,0xee,0x97,0x5e,0x09,0xac,0x61,0xee, +0x17,0xd3,0x75,0xd8,0x12,0x48,0x8d,0x30,0xde,0xa9,0xb1,0xea, +0x3e,0x94,0x81,0x51,0xd2,0x8d,0x65,0x4e,0x70,0x88,0x86,0xb7, +0x97,0x5a,0xfc,0x85,0x34,0x90,0x8f,0xef,0x61,0xef,0x7f,0x03, +0x21,0xb2,0xab,0x99,0x73,0x6d,0x46,0x63,0xab,0xe5,0x5b,0x4d, +0x4e,0x64,0x3c,0x6b,0x09,0x71,0x51,0xf6,0x56,0x33,0x47,0xd4, +0x8c,0xae,0xab,0x96,0xb3,0xd5,0x03,0x8e,0x32,0x78,0xbb,0x8b, +0x72,0xbb,0x1a,0x12,0xb5,0xc8,0x89,0x5f,0x10,0x6e,0xf8,0x5c, +0x50,0xb2,0xaa,0x21,0x16,0xcc,0x40,0x27,0xfc,0xeb,0xca,0x9a, +0x41,0xbc,0x8b,0x72,0xb9,0x1a,0xd6,0xb3,0xae,0x69,0xd5,0xf2, +0xdd,0xa6,0x96,0x08,0xd6,0xb2,0xd8,0x45,0x49,0xa9,0x86,0x10, +0xd6,0x12,0x59,0x2d,0x1f,0x51,0xcf,0x7d,0x88,0xc1,0x5b,0x5c, +0x94,0x62,0xf5,0x44,0x74,0x43,0xb5,0xfc,0x40,0x85,0x8f,0x30, +0x78,0x9b,0x8b,0x52,0x51,0x0d,0x09,0x0c,0xde,0x58,0x2d,0x3f, +0xfe,0xd7,0xd1,0x35,0x83,0x18,0x17,0xe5,0x92,0x76,0x31,0xe9, +0xd5,0xf2,0x6d,0xe6,0x11,0xb7,0x09,0x10,0x5c,0x95,0xe5,0x55, +0x30,0x9d,0xd9,0x6e,0x73,0xab,0xe5,0x44,0xf5,0x1c,0xbb,0x59, +0xcf,0xcd,0x2e,0xca,0x85,0x6a,0x08,0x63,0x3d,0x63,0xaa,0xe5, +0x4a,0x93,0x87,0xcb,0xbe,0x67,0x6b,0x08,0x71,0x55,0x76,0x57, +0x41,0x38,0x3b,0x20,0xbe,0x4a,0xbe,0xd0,0xd4,0xb2,0x89,0xb5, +0x44,0xab,0x6e,0x74,0x34,0x6b,0xd9,0x50,0xc5,0xdc,0x68,0x53, +0x8b,0xc9,0x18,0x3c,0x5f,0x05,0x6b,0x59,0x4b,0x4a,0x95,0x7c, +0xa3,0xa9,0xc5,0xe4,0xbe,0x5f,0xfa,0xd0,0x72,0xbb,0xa9,0x25, +0x84,0xb6,0x80,0xb9,0xc8,0xb7,0x0c,0xb3,0xa1,0x05,0x5d,0x50, +0x25,0x27,0x37,0xb5,0x44,0xb0,0x63,0x16,0xbb,0x2a,0x1b,0xab, +0x60,0x39,0x3b,0x26,0xbc,0x4a,0x3e,0xc4,0x93,0xc2,0x5f,0xf5, +0xa0,0xeb,0x5e,0x49,0x05,0xda,0xc2,0xcb,0x77,0xcc,0x1c,0x43, +0xc5,0x24,0x5d,0xc1,0xd1,0x4b,0xa7,0xee,0x59,0xe1,0xb4,0xe8, +0x33,0x34,0x05,0xde,0x88,0x13,0xd5,0xc9,0x83,0x3a,0xd5,0x93, +0x67,0xe8,0x6b,0x44,0xdf,0xa1,0xd9,0x30,0x49,0xb5,0x0f,0xc2, +0x54,0xf4,0x5b,0x44,0xff,0x46,0xab,0x41,0x6a,0xf3,0x0c,0xad, +0x11,0xe5,0x29,0x22,0xbf,0x49,0xe6,0x1b,0x54,0xa9,0x04,0xa5, +0x9f,0xc5,0x49,0x30,0x20,0x88,0x7d,0x75,0x57,0x65,0x9a,0x7a, +0x54,0x1e,0xa2,0x7f,0x62,0x04,0x03,0x9a,0x0e,0x87,0xd1,0x74, +0x78,0xcb,0xce,0xf1,0xcd,0xd4,0x3b,0x72,0xc6,0x70,0xc5,0x81, +0x99,0x3f,0x56,0xd9,0x4f,0xb2,0xf2,0xb3,0x24,0xeb,0x2e,0x82, +0xea,0xc2,0xb6,0xf3,0x32,0xb9,0xb0,0xcc,0x15,0x0c,0xe7,0x26, +0xcc,0x39,0x72,0xed,0x5a,0xd6,0x91,0x5c,0xe3,0x36,0x2e,0x37, +0x6b,0xd1,0xa4,0x49,0x73,0x16,0x4d,0x30,0x9a,0xf0,0xab,0x52, +0x2b,0x5f,0x61,0xb2,0x06,0x30,0xaf,0x76,0xf9,0x3d,0x38,0xc7, +0x5c,0xd2,0x76,0x9e,0xec,0x70,0xdc,0x67,0x87,0x47,0x70,0x63, +0x67,0x1d,0xcf,0xcd,0x3b,0x77,0xbc,0xd0,0xb8,0x95,0x2b,0x38, +0xb7,0xc0,0x7f,0xc2,0xac,0x05,0xe3,0x58,0xef,0x48,0x76,0xf8, +0xf1,0xbc,0xbc,0xac,0x13,0xb9,0xc6,0x2d,0x5c,0xce,0xe9,0xf9, +0xfe,0xfe,0x41,0x0b,0x26,0xaa,0xf8,0x87,0xfe,0x5b,0xb8,0xc2, +0xb3,0xac,0xff,0xec,0x05,0xcc,0xe1,0x91,0x6c,0x36,0x0b,0x4c, +0xf0,0x57,0x05,0xe6,0x15,0xf9,0x07,0x9e,0x28,0xc8,0x3f,0x73, +0x22,0x8f,0x79,0x45,0x79,0x67,0xe6,0x8f,0x1f,0x17,0x38,0xdf, +0x5f,0xc5,0x3f,0x9c,0x34,0x93,0xcb,0xd5,0x4e,0x8a,0x97,0xc6, +0xfc,0xb0,0x4d,0xf0,0x4e,0x29,0xe4,0xea,0x3c,0x44,0xb9,0x0b, +0x5d,0xaa,0x74,0xe1,0x54,0x30,0x19,0x4a,0x95,0x7c,0xae,0xce, +0x53,0x94,0x3b,0xd1,0x51,0x4a,0x27,0x0d,0xcc,0x84,0x52,0x49, +0xc7,0x09,0x74,0x84,0xd2,0x4b,0x03,0x76,0x42,0x91,0x72,0x5b, +0x3d,0xb4,0x1f,0x75,0x55,0xfa,0x35,0x81,0xc7,0x19,0x58,0xe3, +0x25,0xca,0x5f,0xd1,0xde,0xca,0x57,0x1a,0xb8,0x17,0x2a,0x1b, +0xc7,0x0b,0xd4,0x53,0xf9,0xba,0x49,0xce,0x53,0xaa,0xb9,0x3a, +0x2f,0x64,0xcb,0x74,0x51,0x06,0x69,0x60,0x3a,0x1c,0x56,0x4a, +0xb9,0x1a,0x5f,0x51,0xee,0x4d,0xfb,0x28,0xbd,0x19,0x18,0xcc, +0xf5,0x0c,0x38,0x5f,0x74,0xfd,0xd2,0x85,0xe7,0xc6,0x63,0xdc, +0xf3,0x4b,0xd3,0xc7,0x8e,0x99,0x3a,0xb3,0x17,0xbb,0xec,0x85, +0x9c,0x6d,0xc0,0x89,0x2b,0x97,0xb3,0x4f,0xfe,0x8e,0xd5,0xfe, +0xb2,0xe7,0x4d,0x9d,0x12,0x80,0xd5,0xfe,0x24,0x5b,0x3b,0xe1, +0x5d,0xf6,0xfc,0x80,0x80,0x80,0xf9,0x76,0x5a,0xaf,0x69,0xc7, +0xb3,0xb3,0x2f,0x1d,0xc7,0x5e,0xef,0xb2,0x17,0x30,0x7c,0x01, +0xe2,0x8b,0xfe,0xc5,0x8f,0xb0,0xa3,0x55,0x9c,0x1d,0x2d,0x2e, +0x66,0x67,0xcd,0xba,0x7a,0x2d,0x3b,0xeb,0x77,0xe3,0x61,0x86, +0xcf,0x99,0x34,0x39,0x60,0x0e,0xe2,0x4b,0x38,0xbb,0xa9,0x59, +0x39,0xb9,0x97,0xb3,0xde,0x19,0x0f,0x21,0x8e,0x14,0x0c,0x88, +0x87,0x72,0x7e,0xb3,0x0f,0x65,0x67,0x9f,0x3d,0x74,0xdd,0xb8, +0x8b,0xfd,0x22,0x4b,0x02,0x02,0x66,0x2f,0x61,0x3f,0x42,0x43, +0x73,0x41,0xb6,0x6d,0xf4,0x17,0xe8,0x39,0xe4,0x7a,0x90,0x6c, +0x56,0x08,0xe9,0xe9,0x1b,0x52,0x62,0x2d,0xe1,0x4b,0xda,0x27, +0xff,0x0a,0x33,0x62,0xc2,0xa4,0xf6,0x71,0xc2,0x0b,0xd0,0xf9, +0x89,0x0d,0xdb,0x1b,0x76,0x34,0x6e,0xe7,0xce,0x37,0xae,0x14, +0x1b,0x7c,0x1b,0x46,0x35,0xfa,0xb2,0xe7,0x22,0xa6,0x58,0x17, +0x35,0xd1,0x35,0xb6,0x8f,0x55,0x18,0x31,0xed,0xc7,0xa8,0xfb, +0xb0,0x82,0xb2,0x41,0xea,0x07,0x9a,0xc3,0x61,0x68,0x31,0x86, +0x50,0x84,0xd0,0x2b,0xde,0x44,0x6f,0xdd,0x54,0x4f,0xfd,0x4f, +0x12,0x9a,0x1e,0xbe,0x61,0x4d,0x94,0xe5,0xea,0xc8,0x84,0x64, +0xd2,0x62,0xca,0xf2,0x9d,0x59,0xc6,0x74,0x3e,0x6b,0xff,0xce, +0x2b,0x57,0xf6,0x87,0xcd,0x31,0xc4,0xf0,0x73,0x96,0x87,0x4d, +0x31,0x90,0x16,0xfe,0x4b,0xf6,0x9e,0x36,0x6e,0xe1,0x4f,0x1f, +0xda,0x9b,0x97,0x77,0x68,0x65,0x90,0x21,0x92,0x0f,0x5a,0xb2, +0xd2,0x9f,0x19,0x3e,0x52,0xfb,0xb9,0xcc,0x30,0xea,0x09,0xcd, +0xca,0xb0,0x4c,0xe8,0xaf,0xef,0xff,0x12,0x82,0xf8,0x8e,0x13, +0xbc,0x68,0xc7,0x2e,0x06,0x22,0x5e,0xbb,0xb4,0xbf,0xc2,0x70, +0x90,0xab,0xc8,0x5e,0x3e,0x69,0xf2,0xd4,0x65,0x5e,0xc6,0xa5, +0x9c,0x57,0xc0,0x81,0xab,0x4c,0x6d,0x46,0x66,0xae,0xd9,0xb0, +0x26,0x32,0x32,0x1a,0xbd,0x9f,0x7d,0xe7,0xd3,0x2e,0x15,0xe9, +0xb3,0x9c,0xe7,0xf3,0x5d,0x91,0x8a,0xbf,0x33,0xcd,0x84,0x8e, +0x4e,0xca,0x57,0x72,0x17,0x95,0x8a,0x3f,0x93,0x59,0xbc,0x99, +0xec,0xea,0xf3,0x78,0x45,0x82,0x4c,0xdd,0x40,0x1e,0x4a,0xe8, +0x44,0x5d,0x02,0x4f,0x71,0x33,0x80,0x19,0x04,0x4e,0xec,0x88, +0x2d,0x4d,0x47,0x38,0xa9,0xf1,0x96,0xdd,0xd4,0x78,0x4b,0x27, +0xda,0x91,0x1d,0x6d,0xeb,0xac,0x38,0xc8,0x9d,0x38,0xa7,0x32, +0x3c,0x55,0x57,0xf5,0x54,0x4e,0xd4,0x86,0x75,0xb2,0x76,0x52, +0x7a,0xe2,0x11,0xe5,0x78,0x44,0x27,0xf5,0x08,0x67,0x6a,0xd7, +0x74,0x44,0x47,0xce,0x59,0x6a,0x85,0x24,0xc8,0x05,0xd3,0xee, +0x9d,0xcb,0x39,0x71,0xe2,0x94,0xd4,0x22,0x55,0xb0,0xb7,0x28, +0xb8,0x4c,0x7b,0x10,0x71,0xf8,0xb4,0x13,0x77,0x8c,0x47,0xf8, +0x3b,0x97,0x4e,0xdc,0xb9,0x73,0x69,0xfe,0x70,0xc3,0x22,0x7e, +0xf8,0x34,0xb6,0x21,0x62,0x71,0xfe,0xd1,0x2a,0xc3,0x31,0xae, +0x3a,0x7f,0xe1,0xe8,0x31,0xe3,0x82,0x5d,0x8d,0xc1,0x9c,0xdb, +0xb8,0x63,0x45,0xec,0xfb,0xde,0x89,0xd2,0xed,0xbc,0xbb,0xf5, +0xfe,0x33,0x7d,0x21,0xad,0xf6,0x81,0x64,0x3e,0xa9,0x6f,0x84, +0x5b,0x98,0x67,0x4b,0x66,0x76,0xe4,0x50,0x37,0xb9,0x6d,0x3e, +0xc6,0x64,0xd7,0x61,0x4c,0xb6,0xab,0xa2,0x1b,0x0f,0x05,0xec, +0x5a,0xb2,0xb6,0xed,0x3a,0xcc,0x4c,0xf5,0xc3,0xe1,0xbb,0xe6, +0xcc,0x09,0x0f,0x5d,0xcc,0x4c,0xf5,0xc5,0xdb,0x42,0xb3,0x90, +0x68,0x28,0x13,0xf4,0xce,0x8a,0x51,0xee,0x28,0xb7,0x77,0x56, +0x8b,0x6b,0x64,0x82,0x51,0xfd,0x5a,0x98,0x06,0xaa,0x54,0x0b, +0xf4,0x63,0xa2,0xa6,0xaf,0xac,0x8c,0xa1,0xf3,0x6b,0x04,0xfa, +0x12,0xd3,0xf8,0x97,0x61,0x46,0x30,0x33,0xf1,0x09,0xa6,0x46, +0xe8,0x87,0x99,0x48,0xd4,0xd4,0xa3,0x4d,0xe4,0x69,0xe2,0x95, +0x1d,0x7b,0x0f,0x1b,0xf7,0xf1,0x87,0x57,0xef,0x9d,0x32,0x65, +0xf5,0xca,0xc5,0x86,0x15,0xfc,0xe2,0x1d,0x2b,0xaf,0x18,0x08, +0x38,0xba,0x51,0x67,0xc9,0x7c,0x9b,0xe0,0xa5,0x63,0x66,0x94, +0x6b,0xe6,0x01,0x30,0x33,0x12,0x95,0x25,0xe2,0xe0,0x99,0xcc, +0xf3,0x92,0xad,0x22,0x74,0xf5,0x25,0x0d,0x1f,0xc9,0xcb,0x45, +0xf8,0x9c,0x2e,0xa8,0x96,0x93,0x5d,0x1a,0x3e,0x13,0x90,0x39, +0x9f,0xe8,0xeb,0xb4,0xe9,0x05,0x7e,0x51,0xe2,0xe2,0xc4,0x25, +0x06,0x7a,0x3f,0x32,0xcd,0x0f,0xe7,0x18,0x48,0xc3,0xc7,0x18, +0x8b,0xfd,0x19,0x5d,0x75,0x4f,0xce,0x74,0xa6,0xcb,0xe9,0x67, +0x10,0xe8,0xa2,0x84,0xb3,0x23,0x1a,0x38,0xd9,0x0d,0xb3,0x91, +0xb7,0x56,0xcb,0xcf,0x5c,0x9a,0x34,0x5e,0x81,0xd6,0x10,0x2c, +0x9a,0xb4,0xa1,0xcb,0xbf,0x1a,0x12,0x1b,0xa0,0x46,0x64,0x9e, +0x6f,0xf0,0xdd,0x86,0xee,0x6e,0x74,0x00,0x35,0x87,0x2e,0xc3, +0x1b,0xb9,0x3b,0xea,0x11,0x23,0x44,0x4d,0x37,0xd7,0xb8,0xd0, +0x03,0xec,0x88,0x0c,0x17,0x25,0x5f,0x3b,0x95,0xa7,0x68,0x52, +0x73,0x2e,0xff,0xaa,0x3e,0xb5,0x61,0xb2,0xa8,0x69,0xca,0x5b, +0x2e,0xa8,0xb3,0x4f,0x6a,0x60,0x7b,0x04,0xef,0x56,0x37,0xb8, +0xba,0xd0,0x1b,0xac,0x77,0xae,0x4b,0xa3,0x9d,0xd6,0x30,0x0b, +0x1b,0x12,0x98,0xee,0x77,0xa1,0x6b,0x59,0x43,0xa8,0x8b,0xb2, +0x47,0x6b,0x08,0x34,0x7d,0x30,0x6b,0xf8,0x60,0x28,0xa8,0x0d, +0xcb,0xb1,0x61,0x5e,0xb5,0xbc,0xc1,0x85,0x69,0x3c,0x33,0xd4, +0x78,0xcb,0xb5,0x06,0x11,0xbf,0x83,0xd5,0x5d,0x79,0x87,0x1b, +0xb5,0x64,0xdf,0x81,0x0c,0x57,0x62,0xef,0xfc,0xdb,0xd0,0x4e, +0xb2,0x79,0xa1,0x26,0x73,0x4f,0xc0,0xe3,0x73,0xaa,0x65,0xd9, +0x85,0xa6,0xb2,0xe3,0xe3,0x50,0xbb,0xab,0xdd,0x26,0x99,0x2e, +0xfc,0xb6,0xcb,0xbf,0x6a,0x1f,0xa7,0xa2,0xc2,0x04,0xa6,0xec, +0x4d,0x3b,0x2b,0xaa,0xd4,0xf8,0xba,0x10,0x2c,0x4c,0xbd,0xaa, +0x4a,0xce,0x74,0x65,0x77,0xfe,0x13,0x08,0x74,0x53,0xc2,0xef, +0x72,0x18,0x2e,0xb2,0x04,0x09,0x97,0x43,0xaa,0xe4,0x1d,0xae, +0x34,0x94,0x12,0x98,0xef,0xaa,0xc4,0xe2,0x11,0x9f,0xe0,0xa7, +0xb6,0xa6,0x57,0xaa,0xe4,0xbf,0x5c,0xd9,0xa7,0xb6,0x86,0x38, +0xd4,0xed,0x6a,0x43,0xa0,0x68,0x32,0x0a,0x5c,0xff,0x35,0x14, +0xd4,0x86,0x21,0xd8,0xf0,0xa0,0xaa,0xa1,0xb7,0x2b,0x3d,0xc5, +0x1a,0xf6,0xb8,0xe2,0x7c,0x10,0x36,0x04,0x8b,0x26,0x25,0xee, +0xfa,0xaf,0x62,0x57,0x1b,0x96,0x63,0x03,0x53,0xb2,0xeb,0x5c, +0xd9,0x9d,0x69,0x0d,0x73,0x5d,0x95,0xa5,0xea,0x75,0x87,0x0b, +0xca,0x4a,0xad,0xc7,0x2c,0xec,0x11,0xab,0x7e,0xd8,0x5a,0xd6, +0x23,0xd4,0x55,0xd9,0xa9,0x35,0xa8,0xf3,0x50,0x68,0x66,0xb8, +0xfe,0x6b,0x7a,0x70,0x4d,0x93,0x4d,0xed,0x60,0xc6,0xb0,0x46, +0xb9,0x06,0xea,0xa1,0x1d,0x0a,0x7e,0x3c,0x86,0x00,0x1f,0x13, +0x2b,0xa9,0x01,0x86,0x39,0x36,0xf6,0xaf,0x85,0xe0,0xfe,0x02, +0xf4,0x51,0xd1,0x9b,0x2a,0x6a,0x70,0x54,0x9e,0xd6,0xc2,0x18, +0x86,0x1a,0x55,0xf4,0xae,0x8a,0xea,0x1d,0x95,0x0b,0xb5,0xd0, +0x99,0xa1,0x92,0x8a,0x56,0x33,0xd4,0x08,0x16,0x8e,0xca,0x91, +0x5a,0xe8,0x20,0xd9,0x31,0x4b,0xe0,0xbf,0xe0,0x86,0x5a,0xd0, +0x35,0x81,0xe7,0xd5,0xe3,0x07,0x38,0x36,0xf6,0xae,0x85,0xa5, +0x1f,0x3e,0xab,0x4a,0x45,0x2d,0x1d,0x95,0x93,0xb5,0x60,0xcb, +0x50,0xcb,0xff,0x8b,0x6e,0xaf,0x85,0xcf,0x3e,0xa0,0x75,0x2a, +0xfa,0xb9,0xa3,0x92,0x5e,0x0b,0xed,0x18,0x2a,0xaa,0xe8,0x63, +0x15,0x25,0x8e,0x4a,0x48,0x2d,0x10,0x86,0x12,0x9e,0x98,0xa8, +0x84,0x86,0x73,0xcb,0xa0,0xc7,0xd0,0x0f,0x54,0x42,0x0d,0xa5, +0x04,0x63,0xe1,0xfa,0x69,0x04,0xa0,0xfd,0x86,0xc6,0x1e,0xa3, +0xdd,0x4d,0x04,0xa0,0xc4,0x31,0x75,0x39,0xb5,0xd1,0x51,0x77, +0x6e,0x39,0xd8,0x20,0xe1,0xa7,0xa4,0xa3,0x1d,0xd5,0x23,0x1c, +0xd9,0x11,0xfd,0xf1,0x54,0x4b,0xa1,0xbf,0x23,0x3b,0xa2,0x47, +0xd3,0xa9,0x24,0xeb,0x10,0x41,0x89,0xad,0x01,0x73,0xc9,0x26, +0x8a,0x19,0x37,0x3a,0x4f,0x81,0x5a,0x80,0x6e,0x98,0xb2,0xb2, +0x06,0x5a,0x83,0x45,0x05,0x13,0xcc,0x79,0x0d,0xfe,0x1c,0x74, +0x4e,0xca,0xca,0xfb,0xd0,0x5a,0xb2,0x89,0x14,0xfe,0x03,0x85, +0xde,0x87,0x4f,0x55,0xe8,0x9f,0x96,0xf2,0x6d,0xf6,0x25,0x2c, +0x40,0x1a,0xa6,0xfc,0x50,0x03,0x5e,0x60,0x81,0x82,0x81,0xc7, +0x86,0x7b,0x6a,0xc3,0x17,0xc3,0x94,0x5d,0x35,0xd0,0x4e,0x6b, +0xd0,0xf3,0x4d,0x53,0x80,0x16,0xe0,0x30,0xac,0xb1,0x53,0x0d, +0x2c,0xd4,0x1a,0x7a,0xa9,0x0d,0xdf,0xa9,0x0d,0xe6,0x98,0xd5, +0x01,0x1f,0x6b,0x0d,0x6d,0x79,0xe2,0x4c,0x67,0x9a,0x92,0x7f, +0xac,0x30,0xf9,0x67,0x0f,0xa6,0xf4,0x78,0xca,0x6b,0x7b,0x2a, +0xd1,0x74,0xa0,0x3a,0x9d,0x5c,0xa9,0xec,0x78,0x2e,0x47,0xc3, +0x5c,0x66,0x19,0xff,0xaa,0x86,0xf6,0x20,0xf2,0x82,0x21,0xf3, +0x89,0x2f,0x74,0x8f,0x63,0xee,0xef,0xaf,0x68,0xc3,0xcd,0x15, +0x56,0x13,0xc9,0xbc,0xa7,0x40,0x3f,0xd3,0x16,0xec,0x88,0xe6, +0x58,0x21,0xd9,0x55,0x6d,0x9d,0x5c,0xcb,0xd3,0xae,0x4a,0x50, +0x90,0xf0,0x8c,0xf5,0xe9,0x25,0x60,0xdd,0x14,0xb6,0xd3,0xe7, +0xff,0xb3,0xec,0xc7,0x9e,0x66,0x73,0x07,0x81,0xf2,0x74,0x81, +0x37,0x2c,0xa0,0xcd,0xd4,0x0d,0xd6,0x52,0xa2,0xf3,0xa5,0x16, +0xff,0x13,0x20,0x52,0x54,0x7a,0xb1,0x1e,0x03,0x98,0x8f,0x36, +0x58,0xa0,0x2d,0x07,0x33,0xa7,0x9b,0x79,0x64,0xf3,0xe9,0x48, +0x77,0x18,0x49,0x97,0xd6,0xc9,0xeb,0x79,0x7a,0x21,0x40,0xeb, +0x33,0x50,0x9d,0x5e,0xa4,0x02,0xf6,0x59,0xd5,0x93,0x5a,0x45, +0x52,0x5b,0xab,0xc5,0x70,0x6f,0x98,0xf2,0xd9,0x6f,0x1c,0xf4, +0x02,0xab,0x6d,0x6a,0x8a,0x78,0x9b,0x9e,0x02,0x54,0x0d,0x55, +0xda,0x48,0x2d,0x7f,0x56,0x33,0xd3,0xad,0x22,0xd4,0x6e,0x35, +0xc3,0x94,0xcf,0xb5,0x6e,0x5b,0xd5,0x6e,0xe6,0x43,0x04,0x78, +0xee,0xa8,0x74,0x7a,0x83,0xd9,0xe3,0x92,0x8a,0xa9,0xd4,0xa9, +0x4f,0x1c,0x95,0xf6,0x48,0x9d,0x4a,0xa2,0x1a,0x73,0x84,0xdd, +0xa7,0xd3,0xcf,0xe6,0xea,0xf7,0xbb,0x86,0xf0,0x3d,0x82,0x26, +0xd1,0x76,0xb6,0x06,0x12,0x1d,0xcb,0x14,0xf7,0xde,0xc2,0xb4, +0xe2,0x3a,0xfd,0xb9,0x91,0x41,0x3c,0x35,0xac,0xf4,0xa4,0x12, +0xf5,0x34,0xa0,0x53,0xb7,0xe7,0x62,0x43,0x2b,0xe6,0x5c,0x06, +0x8e,0xa1,0x6d,0xe8,0x27,0x86,0xdc,0xa9,0xa4,0x61,0x71,0x43, +0x98,0xa8,0xdc,0xa5,0xbf,0xc8,0x77,0x31,0x21,0x42,0x19,0x04, +0x73,0xde,0xff,0x23,0x20,0x1c,0x85,0x70,0x35,0xc6,0x5c,0xf8, +0xab,0x79,0x71,0x88,0x25,0x20,0x76,0x01,0xbb,0x96,0x62,0xd7, +0x21,0xa6,0xae,0x71,0x52,0x8b,0x64,0xa1,0x1c,0x11,0x5f,0x13, +0x12,0x2f,0xb5,0x2c,0x16,0xc0,0x43,0x3b,0x30,0xf9,0xe0,0xfe, +0x8c,0x83,0xc9,0xc7,0x2c,0x61,0x7b,0xb1,0xf2,0xfb,0x68,0x38, +0xc0,0x45,0x8f,0x19,0x31,0x9b,0x2e,0x1a,0xcd,0x9e,0xd8,0x6c, +0xa1,0xcb,0x7b,0x85,0x1d,0x11,0x2e,0xfb,0x4a,0x1d,0x66,0x6a, +0xf5,0xb3,0x3f,0xf3,0x14,0x29,0x28,0x1d,0xde,0x3b,0x20,0x37, +0x76,0x20,0x47,0x70,0x4e,0xc5,0xa5,0x87,0xbe,0xd3,0xeb,0xa1, +0xaa,0x59,0x54,0xf7,0xe6,0x59,0xff,0x7b,0xea,0x3c,0xca,0x51, +0xc9,0xfa,0xad,0x70,0x94,0xf6,0xc2,0xe2,0x2a,0xe4,0x28,0xf4, +0x41,0xb6,0xd9,0x41,0x58,0x73,0x65,0x10,0x72,0xcd,0xf6,0x31, +0xc1,0x0e,0x08,0x0f,0x46,0x78,0x30,0xc2,0x0e,0x26,0xb8,0x27, +0xc2,0x03,0x74,0x74,0x2a,0x7b,0x25,0x07,0x60,0x43,0x4f,0xb5, +0xa1,0xe0,0x46,0x36,0xfb,0x01,0x7a,0xdd,0x08,0x30,0x11,0xf3, +0x2f,0x10,0xb2,0x0b,0x0c,0x2a,0xda,0x13,0x7a,0x7e,0x40,0x31, +0x3a,0x0a,0xe9,0xfa,0x49,0xf1,0x8d,0x6b,0x6a,0xf7,0x49,0xa3, +0x99,0x11,0x30,0xc6,0x7d,0x22,0xed,0x45,0x7b,0xb9,0xe7,0x14, +0x19,0xd8,0x57,0x63,0xf6,0x62,0x2f,0xf7,0xbc,0x12,0xb6,0xdb, +0xfe,0x7f,0x82,0xb7,0xbb,0xff,0x02,0x21,0xaf,0xcc,0x40,0xca, +0x94,0x5b,0xf4,0xe4,0xdb,0x4e,0x74,0x45,0x6f,0x41,0xd9,0xf1, +0x46,0x84,0xa5,0x9d,0x90,0xa8,0xcd,0x41,0x50,0x16,0xdf,0xe3, +0x94,0xcf,0xe1,0x85,0xe8,0x07,0x9f,0xf6,0xa6,0x9f,0xb2,0xbf, +0x4d,0x60,0x0b,0xf8,0x4d,0x1c,0x03,0xcd,0xed,0x69,0x73,0xf6, +0x97,0xc8,0xbf,0xa0,0xde,0xe9,0x48,0xdb,0x55,0xcb,0x99,0x2e, +0x6a,0xce,0x31,0x71,0x55,0xc2,0xd9,0xa0,0x2a,0x3f,0xc3,0x06, +0x9b,0x0f,0x0d,0x36,0x40,0x34,0xc5,0x2d,0x3f,0x97,0x57,0x62, +0x55,0xfa,0x90,0x1a,0x39,0x13,0xf3,0xab,0x8c,0x10,0xe8,0xa4, +0x84,0xdf,0x67,0x0d,0x2f,0xe4,0x36,0x22,0x58,0x53,0xdb,0x2a, +0xf9,0x18,0xed,0x2a,0x28,0x69,0x55,0x4d,0x58,0x07,0x6a,0x5b, +0x2d,0x1f,0x73,0xa1,0x56,0xb4,0x03,0x7c,0xe2,0xa2,0xa4,0x55, +0xab,0x9c,0x19,0x4c,0x3b,0x7d,0x69,0xca,0xd1,0xfa,0xf2,0xc3, +0x39,0x5e,0xcb,0x2e,0x22,0x58,0xd1,0x87,0xf7,0x1b,0xba,0x3b, +0xd1,0xc3,0xd4,0x0a,0xb6,0x3a,0x35,0x72,0x5a,0x43,0x22,0x36, +0x58,0x08,0x0c,0x1b,0xed,0xa4,0x78,0xff,0xff,0x60,0x5e,0x1a, +0x16,0x8c,0x58,0xf4,0x7d,0xf9,0x98,0x13,0x53,0x3c,0x56,0xb0, +0xd8,0x49,0x49,0xfb,0xd0,0xa0,0xa7,0xd1,0x35,0xf2,0xb1,0x61, +0xac,0x41,0x0f,0x8b,0x87,0x29,0x69,0x35,0x6a,0x43,0x08,0x36, +0x68,0x57,0xa2,0x6f,0xba,0x12,0xc9,0xba,0x95,0xb0,0x70,0x8e, +0xde,0xa7,0x9a,0xa8,0x01,0xe3,0xf6,0x34,0x88,0xf6,0x57,0x03, +0xc6,0xa1,0x99,0x2b,0x6d,0x21,0x99,0x6f,0x11,0xbc,0xd1,0x48, +0x72,0xcb,0x54,0x33,0x16,0xe1,0x53,0x17,0xfa,0xb9,0xd4,0xea, +0x0f,0xc1,0x47,0x07,0x43,0x61,0x44,0xe6,0x41,0xb4,0x9c,0x44, +0x98,0x0f,0x2b,0xb7,0x1c,0x80,0x5e,0xc6,0xd8,0x0a,0x9d,0x9a, +0x65,0x8c,0x51,0x60,0x66,0xcc,0x3a,0xdb,0x2c,0x88,0xf2,0xc6, +0xce,0x9c,0xb2,0x65,0x79,0x9a,0x87,0xbc,0xe9,0xa8,0x8e,0xea, +0xef,0xc1,0x5f,0x4a,0x2d,0x33,0xee,0xe5,0x8d,0xbd,0xa4,0x36, +0x09,0x02,0xfd,0xf4,0x1e,0xfc,0x84,0x80,0x9a,0xfd,0xd9,0x9d, +0x66,0x7a,0x6a,0x49,0x65,0xbb,0x68,0xf2,0x0b,0xde,0xec,0xa8, +0x20,0x73,0xf6,0x92,0x5d,0x81,0x50,0x8f,0x47,0x6c,0x29,0x55, +0x7c,0xa0,0x95,0xfc,0x15,0x84,0x2b,0x71,0x3e,0xf2,0xd7,0xb4, +0xa5,0x82,0x99,0x63,0xf2,0xc2,0x1e,0x9c,0xb2,0x6a,0x45,0xba, +0x87,0xbc,0xe8,0xb0,0x8e,0x9a,0xd7,0xc0,0x33,0xe5,0x32,0x6f, +0x26,0xb5,0x3f,0x8a,0xb1,0x7f,0x61,0x76,0x9c,0x12,0x8b,0x25, +0x70,0x56,0xb3,0x36,0xcb,0x5a,0x90,0x15,0x2c,0x7c,0x23,0xaf, +0xe9,0xc2,0x29,0xf1,0x2b,0xd9,0x25,0x85,0x4b,0xe6,0x51,0x82, +0x86,0x85,0xf7,0xe3,0x94,0x84,0x10,0x86,0x45,0x1c,0xd2,0x51, +0xae,0x06,0xee,0x29,0x65,0xbc,0x19,0x04,0x2a,0x55,0x5e,0xf2, +0xda,0x3e,0x6c,0x6c,0xed,0x87,0x0b,0x78,0xe5,0x9c,0xd9,0x86, +0xd4,0x38,0x76,0x13,0xbf,0xb4,0xc8,0x95,0xec,0x5e,0xaa,0x25, +0x32,0x38,0x33,0x25,0x43,0x84,0x19,0xf2,0x9a,0x0a,0xa9,0xe5, +0x5f,0x42,0xa5,0x46,0x44,0xfb,0x7b,0x6d,0xea,0xd6,0x72,0x64, +0x9b,0xb2,0xd3,0x31,0x03,0xf5,0x96,0xec,0x31,0xb2,0x5f,0x1f, +0xef,0x5f,0xbe,0xea,0xe3,0xf3,0x0b,0xa6,0x22,0xed,0xc2,0x71, +0x3a,0x0d,0xee,0xe2,0xfe,0x1e,0x75,0xed,0x96,0x3d,0x29,0xfb, +0x73,0x2d,0xa5,0x36,0x13,0x98,0xdf,0xf1,0x7c,0x94,0xa4,0xf3, +0x15,0x46,0xd2,0xa7,0x60,0x41,0xd4,0xc8,0xcc,0x4a,0x22,0xb5, +0x02,0xe1,0x29,0x01,0x7b,0x6a,0x6e,0x51,0x9d,0x73,0xed,0xdc, +0x89,0x33,0xe9,0x29,0x6a,0xec,0x5b,0x57,0xca,0x59,0x5c,0x43, +0x7f,0x25,0x47,0x30,0xcd,0xd1,0xee,0x41,0x6e,0xe6,0x4a,0x49, +0x67,0x8f,0x8b,0x75,0xe3,0xb0,0x00,0x16,0xd1,0x6a,0x0d,0xdc, +0x4d,0x45,0xde,0xa3,0x12,0xac,0x35,0xb0,0x4f,0x28,0x32,0xc6, +0x14,0xe9,0x22,0xc6,0x0d,0x8b,0x73,0xb0,0xc2,0xe0,0x62,0x9c, +0x85,0xc5,0x6e,0xc7,0xb9,0xfa,0x2a,0xca,0x09,0x5a,0x02,0x37, +0xe1,0x9d,0x82,0x83,0x26,0x78,0xe3,0x9c,0x6c,0x59,0x50,0xae, +0xd3,0x31,0x03,0xe1,0x5d,0x17,0xcd,0x09,0x18,0x2b,0xb5,0x72, +0x11,0x0a,0xe7,0x64,0xbb,0x1e,0x61,0xc0,0xbb,0x8c,0x3b,0xd7, +0x7f,0xd1,0xbf,0x1a,0x50,0x8c,0xac,0xae,0x03,0x46,0x77,0xed, +0x73,0xc7,0xef,0x8f,0x68,0x03,0x69,0x29,0x67,0xf5,0x15,0x5d, +0xa2,0x1c,0x62,0xed,0x13,0x5a,0xbe,0x74,0xee,0xa4,0xd2,0xa7, +0xf4,0xc7,0xd9,0xd7,0x5c,0xbe,0x2e,0x27,0xe7,0xfe,0xfd,0x6b, +0x13,0x87,0x1a,0x26,0xf0,0x43,0x27,0x4d,0x74,0x72,0x9a,0x98, +0x53,0xc7,0xec,0x7f,0xac,0x59,0x15,0x1e,0x65,0x5a,0x38,0xca, +0x4e,0xbf,0x52,0xaa,0x2e,0x1c,0x11,0x31,0xea,0x17,0x98,0x07, +0x13,0x90,0x9d,0x7d,0x61,0x5f,0xe4,0xbe,0x6d,0xcf,0x6e,0xa6, +0x8b,0x3d,0x3d,0xf1,0xc2,0x99,0xde,0x64,0x63,0xa4,0x4b,0x89, +0x48,0x4f,0xbc,0x83,0x13,0x1c,0x78,0xa8,0xf8,0xb1,0xe7,0x88, +0x0f,0xe4,0x5c,0x4a,0x45,0x7a,0xec,0x2d,0x1c,0xe3,0xa8,0x1b, +0xc3,0x07,0xd2,0xa3,0x8f,0x5c,0x68,0x96,0xd4,0x4a,0x11,0x7e, +0x55,0x90,0x97,0xcd,0xa5,0x0f,0x3d,0xf2,0x93,0x33,0xcd,0x91, +0xfb,0x73,0x2e,0xc5,0x22,0x3d,0x52,0x0f,0x47,0x38,0x3a,0x92, +0x88,0x23,0x06,0xd0,0xc8,0x47,0x23,0x69,0x56,0x53,0x70,0xde, +0x53,0x88,0xe4,0x68,0x6f,0xf6,0x1b,0xd5,0xd3,0xb1,0xf2,0xa8, +0xeb,0x4a,0xf3,0x1f,0xe1,0x05,0x8c,0x95,0xcc,0x91,0x8b,0x28, +0xb1,0x4f,0xa4,0x63,0xd3,0x04,0xf0,0x93,0x97,0xfa,0x72,0x6d, +0x02,0x98,0x88,0x49,0xfd,0x96,0x0c,0x9d,0x37,0xf2,0x56,0x98, +0x45,0xd6,0xfd,0x43,0xbf,0x3c,0xd7,0x97,0x4b,0xad,0x4e,0xb2, +0xde,0x49,0xfd,0x97,0x0c,0xd3,0xd0,0x7b,0x87,0x7e,0x7e,0xa6, +0x2f,0x33,0xa1,0x83,0x96,0x38,0xcd,0x73,0x47,0xb4,0xea,0xd0, +0x4f,0xbf,0xe8,0x4b,0x4d,0xe8,0xd7,0x4b,0x5c,0xe6,0x79,0x22, +0x7a,0xe7,0xd0,0x8f,0x3f,0xe9,0x8b,0x35,0x74,0x0b,0x7f,0xe1, +0xf8,0xa1,0x9c,0x9c,0xe3,0x4b,0x66,0xb0,0x91,0x74,0xe6,0x82, +0x25,0x13,0x27,0x2e,0x38,0x74,0x1e,0x3d,0xa7,0x6b,0xd4,0x5d, +0x6e,0x5b,0x48,0xef,0x3c,0x80,0x1c,0x18,0xa5,0x45,0x35,0xd3, +0x9e,0x44,0xdc,0xc1,0xdf,0xa8,0xbc,0xf0,0xf4,0x59,0xe5,0x0c, +0x77,0xc3,0x6a,0x7e,0x94,0xc7,0xcc,0x9e,0xbd,0x3c,0xce,0xdf, +0x34,0x20,0x7e,0xab,0xe2,0xc2,0xaf,0xbf,0x54,0xcc,0x18,0xc9, +0xf0,0x91,0x9e,0x33,0xfa,0xf4,0xf6,0xbc,0x70,0x4b,0xc3,0xb5, +0xfe,0x2a,0xee,0x31,0x83,0xf5,0x37,0xe1,0xb7,0x0b,0xce,0x3e, +0x7a,0x58,0x30,0x7b,0x84,0x64,0xb7,0x80,0x5d,0xc7,0x4e,0xfe, +0x56,0xc1,0x39,0x26,0xcf,0x1a,0x69,0x08,0xe3,0x47,0x8e,0x9b, +0x35,0xe8,0xab,0x71,0xe7,0xb0,0x1f,0x1b,0xda,0xba,0x02,0xfb, +0xbf,0xac,0x90,0xfa,0xd1,0x41,0xba,0xa1,0x3c,0xe0,0x86,0xbc, +0xef,0x2d,0xc0,0x2d,0x17,0x85,0x3c,0xe0,0xe0,0x53,0xf8,0x68, +0xeb,0xee,0x7b,0x46,0xa2,0x7f,0xa1,0x0c,0xf1,0x84,0xbf,0x57, +0xf2,0x41,0x89,0x73,0xd6,0xcf,0x33,0x28,0x9f,0x60,0xe1,0xd5, +0x8f,0xf6,0x90,0x26,0xd2,0xa4,0x20,0x24,0x4d,0x22,0xfa,0xbb, +0x5a,0x75,0xd6,0x40,0xd6,0x69,0xae,0x41,0xc9,0xc2,0xc2,0x1f, +0xfb,0xf6,0x24,0x10,0x7d,0x95,0xf2,0xf1,0x38,0x74,0xc0,0x96, +0x26,0x2e,0x4b,0x5c,0x8e,0x0e,0x58,0xea,0x78,0xa8,0xd8,0x4e, +0xf4,0xf7,0x35,0x36,0xdc,0x19,0x89,0x33,0xd7,0x07,0x1a,0x94, +0x53,0x61,0xc8,0x86,0xbb,0x2f,0x81,0x48,0x36,0xcd,0x05,0xdc, +0xdf,0xb7,0x37,0x81,0x80,0xcf,0xf3,0x47,0x7f,0xfd,0xd5,0xe3, +0x11,0xf5,0x31,0xc2,0x64,0x3a,0x41,0xf4,0x19,0xed,0xc3,0xbc, +0x66,0x5b,0xe2,0xb3,0x62,0x45,0xd0,0x0c,0xfd,0xf0,0x2a,0x6f, +0xe4,0x5c,0xad,0x2a,0xbb,0x73,0x61,0xc5,0x69,0x9f,0x7d,0x86, +0x14,0x32,0x66,0xc5,0xca,0xa0,0x99,0x4d,0xf8,0xdd,0xb2,0x3b, +0xe7,0x57,0x9e,0x1e,0xb3,0xcf,0x90,0x4a,0x26,0xa8,0x54,0xb2, +0x83,0x90,0x4a,0x76,0xd0,0x37,0xcc,0x28,0x65,0xaa,0xd1,0xde, +0x93,0x74,0x10,0xce,0x4b,0xd6,0x91,0x48,0x75,0x70,0x54,0x7d, +0xdb,0xae,0x1b,0xa3,0xcb,0xa5,0x36,0xe5,0x68,0x6a,0xe5,0x08, +0x31,0xcc,0x2a,0x41,0x5a,0x54,0xd5,0x44,0xea,0x60,0x32,0x94, +0x3a,0x0a,0x0e,0xef,0xab,0x84,0xce,0x38,0x6d,0xdd,0x59,0x9d, +0x8b,0x6e,0x98,0x04,0xfb,0xc4,0x3a,0x79,0xdd,0xd0,0x1e,0xdb, +0x91,0x93,0x2b,0x99,0x79,0xd5,0x1c,0x89,0xb4,0x5c,0xb9,0x26, +0x21,0xf9,0xd8,0xe9,0x2d,0x67,0x93,0x2e,0x2b,0xb7,0xf0,0xb5, +0xfe,0x43,0xa0,0x96,0x86,0x38,0xc2,0x5e,0x95,0x4b,0xe9,0x97, +0x4b,0xf4,0x27,0x86,0x2f,0xe2,0x29,0x17,0x38,0x9a,0x99,0x26, +0x66,0x68,0x9a,0xec,0x3d,0x95,0x91,0x95,0x7c,0xd9,0x12,0x6c, +0x25,0x5d,0x73,0x61,0xe0,0xe4,0x09,0x94,0xf4,0x26,0xe7,0x76, +0xed,0x39,0x6a,0xdc,0xc1,0x1f,0x0d,0xdb,0x3b,0x73,0x66,0x98, +0x64,0x13,0x2c,0x90,0xf3,0x3b,0x3f,0x20,0xb3,0x42,0x55,0xc4, +0x4e,0x68,0x6c,0x53,0xc7,0xd1,0xae,0xe0,0x20,0x0e,0x89,0xb4, +0x8f,0xb5,0x89,0x6f,0xf9,0x9a,0x14,0x49,0xe6,0xdf,0x0a,0xe5, +0xca,0x7a,0x2f,0x30,0xc4,0xab,0xc5,0xea,0xc6,0xe8,0x49,0xc9, +0xd2,0x4b,0x58,0xb0,0x1d,0x9a,0x95,0x29,0x5e,0xde,0x60,0x96, +0xc0,0x4f,0x5c,0xb6,0x74,0x9a,0xaf,0x9e,0x69,0x12,0x4e,0x50, +0xbc,0xd0,0xc5,0x69,0xf5,0x42,0xa0,0x5c,0x95,0x3c,0x0f,0xeb, +0x6b,0x58,0xff,0xe1,0xaa,0x8c,0x63,0x20,0x35,0xc7,0x88,0xe1, +0xa6,0x40,0x9a,0x14,0x5f,0xdd,0xed,0x3b,0xa4,0x1e,0x02,0x0c, +0x72,0xaf,0x01,0x8a,0x0b,0x4f,0x2d,0xa7,0xb9,0xb2,0xeb,0x6f, +0x33,0xad,0x0a,0x2c,0x0d,0x44,0x0d,0xd3,0x50,0x89,0x09,0xe5, +0xf0,0x22,0x25,0xfc,0x47,0x39,0xb1,0x98,0xd0,0x3b,0xaa,0x71, +0x5b,0xa2,0xec,0xf8,0x4d,0x8e,0x2a,0x54,0xa2,0x5e,0xc9,0xc9, +0x25,0x84,0x56,0x99,0x2c,0xde,0xad,0xcf,0xe4,0xf0,0x72,0x25, +0x1c,0xf3,0x37,0x98,0x8e,0xc2,0xe2,0x61,0x2b,0xc5,0x4e,0xd0, +0x47,0x2d,0x1e,0xd6,0x47,0xdb,0x23,0xa2,0x9c,0xf0,0x15,0xa7, +0x6c,0x5a,0x9d,0x36,0x5a,0x5e,0xbb,0x5f,0xd7,0xf9,0x3e,0x9c, +0x57,0xee,0xe0,0xc8,0x9f,0xf4,0x15,0x27,0xe9,0x0c,0x82,0x5d, +0x0d,0x5c,0xd5,0x54,0x53,0xf2,0x60,0x15,0xe8,0x74,0x0f,0x2e, +0x29,0x35,0x58,0x28,0x4d,0x8e,0xe9,0xc1,0x2b,0x1b,0x50,0x8f, +0xc4,0x32,0x3d,0xf2,0x69,0x2d,0xfc,0xaa,0xa2,0x21,0xbd,0x79, +0x25,0x1a,0x55,0x46,0x28,0x53,0x19,0xa4,0x16,0x1e,0x31,0xd4, +0x53,0x5e,0xdf,0x8f,0x57,0xd2,0x10,0xdd,0xc0,0xfa,0xf2,0x4c, +0x91,0xe0,0x29,0x33,0x4b,0x15,0x2f,0x10,0xe4,0xbe,0x25,0x4a, +0x3f,0xa6,0xc2,0x86,0x95,0x2a,0xeb,0x98,0xea,0x0a,0x98,0xb7, +0xd0,0xcf,0x6f,0xde,0xd1,0x6c,0xc3,0x56,0x3e,0xfb,0xe4,0xd1, +0xeb,0xd7,0x4f,0x2e,0x0c,0x30,0x20,0x93,0x5d,0x65,0x63,0x31, +0xd7,0x30,0x8a,0x0e,0x14,0x95,0xef,0x3c,0xe4,0x64,0x1a,0x5b, +0xc7,0x35,0x71,0xe0,0x35,0xb8,0x53,0x7b,0x51,0x79,0x80,0x4a, +0x72,0x5a,0x2d,0x67,0x46,0x5b,0x0b,0xf4,0x71,0x2d,0x3c,0x86, +0x75,0xda,0x26,0x48,0x83,0xaa,0x6b,0xa1,0x9a,0x41,0xea,0x26, +0x08,0x23,0x6c,0xb6,0xe4,0xd2,0x00,0xf6,0x72,0x7a,0xe4,0x52, +0x0f,0xf8,0x02,0x02,0xf2,0xe8,0x16,0x86,0x0e,0x9a,0x1c,0xe0, +0xee,0x31,0x39,0xfb,0xa1,0xe1,0x1a,0xff,0x30,0xfb,0xd2,0xad, +0xdb,0xd9,0xd3,0x06,0x19,0xcc,0x34,0x4d,0x2e,0x59,0x3f,0x13, +0xd4,0x3d,0xc9,0x7a,0x91,0xba,0x93,0x89,0x3b,0xe5,0xb7,0xb3, +0xf3,0x8f,0xe4,0x5a,0xa6,0xa4,0xaa,0x15,0x3a,0x24,0xda,0xc7, +0x02,0x27,0xf1,0xca,0x2b,0x2e,0x5d,0x3d,0x7a,0xd5,0x32,0x25, +0x2d,0x0d,0xb3,0xde,0xbf,0xa4,0x1d,0x2d,0xf2,0x18,0x2a,0x75, +0xd8,0x2e,0xe8,0xcc,0x2a,0xc4,0x3a,0xc9,0x7a,0x8b,0xc0,0x99, +0xfd,0x85,0xa4,0x8c,0x9f,0x66,0xee,0x7e,0xa9,0x32,0x92,0x74, +0xa3,0x9f,0x46,0xd1,0x9e,0xcc,0x40,0xc8,0x09,0x78,0x9c,0x55, +0x7c,0xf4,0xcc,0x51,0xcb,0x2d,0xa9,0xdb,0x37,0x6c,0x8d,0x07, +0xaf,0x01,0x16,0xd7,0xb2,0x89,0x18,0x8b,0x94,0x99,0x9f,0x52, +0xaf,0x68,0xea,0x64,0x95,0xe2,0xa1,0xbb,0x79,0x5b,0x0d,0xf3, +0x12,0xa5,0x0e,0x12,0x1b,0x80,0x8a,0x1a,0xb9,0x31,0x18,0x5d, +0x37,0x21,0x74,0xd5,0xc2,0xf9,0x7a,0xdf,0xbb,0x13,0x54,0xce, +0x0d,0xc9,0x6e,0xa2,0xb0,0x20,0x48,0xef,0x55,0x35,0x56,0xe3, +0x4d,0xc6,0xea,0x15,0x23,0xee,0xc1,0x08,0x66,0xf1,0xa9,0x9b, +0x55,0x37,0xf9,0x46,0x9d,0xca,0x3d,0xd1,0x9c,0x76,0x11,0xd5, +0x7c,0x06,0xf9,0x02,0x76,0xf3,0xa3,0xec,0x67,0xee,0x04,0x17, +0xb4,0x8d,0xdf,0x4d,0x5e,0x69,0xc3,0x9e,0xdf,0xa5,0x02,0xfc, +0x43,0x9b,0xe3,0xb6,0xb1,0x3b,0x1b,0xdb,0x7a,0x81,0x11,0x7a, +0x71,0x72,0x33,0x6a,0x6c,0xda,0x87,0x2e,0xec,0x3d,0x9c,0xa6, +0xb5,0xfe,0xef,0x47,0x78,0x5c,0x40,0x7f,0xfc,0x11,0x7e,0xbb, +0xae,0x38,0xd0,0x27,0xf4,0x11,0x4e,0x49,0x55,0x3e,0xc0,0x08, +0xcc,0x73,0x0f,0xa0,0x00,0x23,0x30,0xef,0xc8,0x9f,0x72,0x34, +0x5a,0x25,0x68,0x1e,0xda,0xb9,0x63,0xfd,0x50,0x95,0x89,0xb9, +0xee,0xed,0x6f,0xdd,0xeb,0x54,0x26,0x66,0xd0,0xbf,0xae,0xf8, +0xfd,0xf7,0x2e,0x15,0x6a,0x50,0x8c,0xa7,0xad,0xed,0x6b,0x4f, +0x0c,0x2b,0x50,0xa3,0x65,0xfe,0xfe,0xbb,0x29,0x56,0xa6,0x7d, +0x7b,0x2d,0x52,0x86,0xbd,0x41,0x5d,0x9d,0xed,0xbb,0xbc,0x72, +0x86,0xb1,0xe0,0xf7,0xf2,0xde,0xeb,0xfa,0x6e,0xf7,0xa8,0x9f, +0x06,0xbb,0xda,0xdb,0xbf,0x72,0x51,0xe1,0xea,0xfa,0xfa,0x6e, +0x55,0x1a,0x6c,0x79,0xed,0x27,0x70,0xe5,0xa9,0x83,0x82,0xec, +0xdd,0xd0,0x53,0xe6,0x74,0x39,0x4c,0x4f,0x2d,0x93,0x3a,0xa4, +0xb3,0xeb,0x7c,0x5b,0x8c,0xcc,0x54,0x6d,0x47,0x57,0x75,0xec, +0x38,0x5a,0x2d,0xaf,0x53,0xec,0xfa,0x96,0x79,0x50,0xd6,0x9d, +0x84,0x83,0xcc,0x9c,0x23,0xe2,0xfb,0xef,0x84,0x54,0x0f,0x0c, +0xc5,0x5a,0xc1,0xec,0xbb,0xde,0x0c,0x58,0x81,0x31,0xff,0xef, +0x7f,0xc3,0xf8,0xf8,0x59,0xcf,0xbf,0x7d,0xfb,0xa6,0xc7,0xb7, +0x13,0x85,0x21,0x9d,0x3a,0x3e,0x1f,0x82,0x71,0x27,0x16,0xf1, +0x49,0x07,0xf6,0xa5,0x1f,0x48,0x3e,0x62,0x09,0x3b,0x0a,0x95, +0xdf,0xc7,0xc2,0x21,0x2e,0x66,0xdc,0x08,0xd2,0x60,0x94,0x97, +0x8b,0x7f,0xd2,0x05,0xb7,0xe5,0xe4,0x11,0x34,0xc4,0x1a,0xe6, +0x8e,0x50,0x56,0xdd,0xe6,0xc8,0x3f,0x9c,0xfc,0x5a,0xac,0xa0, +0xed,0xfe,0x1a,0xa6,0xf8,0xd7,0xfc,0x0d,0xed,0xd8,0x2e,0x56, +0xfb,0x71,0x5a,0x10,0xe4,0xef,0xfd,0x1f,0xaf,0xa5,0x2c,0x28, +0xcf,0xe9,0xb8,0x81,0x38,0x4b,0x76,0x71,0xc2,0xf5,0x9c,0xec, +0x13,0x97,0x2c,0x53,0x53,0x32,0x88,0xec,0xc1,0x51,0x3e,0x92, +0xb6,0x58,0x66,0x67,0xb8,0x1b,0xa9,0xdb,0xff,0x72,0x3b,0x10, +0x68,0xab,0x57,0x97,0x10,0xbb,0xc3,0x0a,0xc9,0x66,0x8b,0xa0, +0x86,0xd5,0x0f,0x95,0xbb,0x8a,0x8a,0x83,0xbf,0x5a,0x0b,0xe2, +0x4b,0xb1,0x1b,0x77,0xe8,0x37,0xe2,0x46,0x3d,0xa5,0x0e,0x37, +0x04,0x32,0x4a,0x0d,0x53,0xf3,0xc0,0x30,0x35,0x4c,0x37,0x99, +0x40,0x5b,0x08,0x04,0x53,0x4d,0x66,0xab,0xa9,0x26,0xb3,0x31, +0xd5,0x24,0x40,0x4b,0x35,0x21,0xb0,0x1a,0xe6,0xa8,0x81,0xa8, +0x5d,0xe9,0x1a,0x0c,0x89,0x3a,0xc5,0x91,0xa9,0xe5,0x37,0x2e, +0xe6,0x1c,0xbd,0xd6,0x54,0xaf,0x46,0x4f,0xbb,0xe0,0x73,0x4f, +0xb0,0xc6,0xfc,0x9b,0x1a,0xb5,0xc6,0x7c,0x39,0xd6,0x65,0x8a, +0xeb,0x69,0x45,0xfe,0x53,0xea,0xa9,0x0c,0xcd,0xaf,0xd0,0x0f, +0x7c,0xa6,0x5f,0xc2,0x4d,0x48,0x56,0x2c,0xbd,0xe0,0x0e,0x6d, +0x8b,0xf0,0x97,0x91,0xb4,0x8f,0x55,0x30,0xd8,0xc0,0x0d,0xc8, +0x40,0x9a,0xd3,0xdb,0x54,0xaf,0xf2,0xa2,0x21,0x94,0xcd,0x20, +0x9d,0x27,0xe4,0x30,0x28,0xcc,0xc4,0xc9,0x86,0x27,0xb8,0xcc, +0x4e,0xa0,0xf3,0x62,0x70,0x5b,0x12,0xd6,0x05,0xf3,0x1f,0x7a, +0x5a,0xcd,0x07,0xa6,0x73,0x21,0x54,0xb1,0xf4,0x81,0xbb,0xb4, +0x85,0x4a,0x6c,0x86,0xd4,0xa9,0xd7,0x20,0x55,0x69,0xe9,0x09, +0xf9,0xf4,0x0b,0x95,0xd1,0x6c,0x21,0x83,0xb2,0x19,0xd4,0xdc, +0x13,0xae,0x32,0x28,0xac,0x69,0x75,0x99,0x9d,0xb3,0x92,0x9d, +0xb3,0x9d,0x17,0xdc,0xc2,0x73,0x76,0xa7,0xed,0xb0,0xfa,0xf6, +0x5c,0x76,0xce,0x1b,0xec,0x9c,0xed,0x7c,0xd8,0x45,0xe1,0x39, +0xbd,0x84,0x73,0x19,0xe7,0x73,0xf4,0xc7,0x9d,0x16,0xf1,0x3d, +0xa6,0xa8,0x1c,0xa7,0x46,0x8b,0xab,0xd7,0x74,0x8a,0xc3,0xdd, +0xf7,0x14,0x73,0x51,0x49,0x42,0x03,0x2f,0xc0,0xb6,0x32,0xe5, +0xad,0x37,0xec,0xe7,0xe2,0x47,0x7a,0x4c,0x43,0xca,0xdf,0x3d, +0xe7,0xd3,0x2f,0x5d,0xd7,0x1f,0x71,0x5d,0xc6,0xd3,0x66,0x81, +0xe3,0x98,0x32,0x68,0x69,0x20,0x48,0x7c,0xda,0xcf,0x22,0xef, +0x2a,0x6d,0x0d,0x9d,0xa3,0xa5,0x56,0x85,0xc8,0xc7,0xb9,0xf7, +0x74,0xc6,0x59,0xad,0xfe,0x44,0x17,0x2e,0xa1,0xf7,0xe4,0xf1, +0x0c,0x52,0xcb,0xa9,0x77,0xe6,0x12,0xfa,0x4c,0xf6,0x67,0xcf, +0xe7,0x45,0x81,0xb6,0xa6,0x9f,0x69,0xae,0xb9,0x29,0xd0,0x68, +0x01,0x4f,0x5b,0x05,0x7a,0x33,0xb8,0x8d,0x81,0xac,0x63,0x70, +0x51,0x46,0xc9,0x7d,0x93,0x23,0x3f,0x6b,0x00,0xfd,0x88,0x0e, +0x30,0xa8,0x9e,0xb8,0x64,0xcd,0x8c,0xc8,0xa4,0x8d,0x29,0x49, +0x1b,0xd7,0xbe,0xa3,0x7d,0x2d,0xae,0x5c,0xed,0x02,0x36,0x52, +0x0b,0xac,0x98,0x60,0xd7,0x5c,0xf8,0x66,0xf2,0x14,0x4a,0xfa, +0x5d,0x9e,0x6a,0x41,0x92,0x37,0xa5,0x6c,0xc0,0x1e,0x5d,0x2d, +0x2e,0x5f,0xee,0x02,0xfa,0xd8,0xcc,0xc8,0xcd,0x91,0xd1,0x96, +0x18,0x5b,0x74,0x50,0x6a,0xb1,0x5a,0x68,0xf4,0xe9,0x2c,0xba, +0xab,0xeb,0xaf,0x72,0x9a,0x68,0xe2,0x15,0x97,0xef,0x71,0x8d, +0x3e,0x5d,0x44,0x8c,0x20,0x92,0x6c,0xe7,0x0a,0x17,0xf2,0xf4, +0x87,0xbf,0x59,0xce,0xf7,0x24,0x58,0x02,0xbd,0x50,0x4b,0x96, +0xd1,0x3d,0x7a,0x9c,0xbc,0x91,0x1c,0x3f,0xa9,0x72,0xb8,0x26, +0x6e,0x5a,0xf7,0xaa,0xbd,0xc5,0xe5,0x2b,0x0e,0xcf,0x63,0x32, +0x22,0x92,0x22,0xc9,0x55,0x23,0xbc,0xbb,0x20,0xd2,0x10,0x70, +0x83,0xe0,0x32,0x9a,0x4d,0xf3,0xa0,0x90,0xa3,0xd7,0x48,0xc9, +0xb2,0x8b,0x53,0x0e,0x18,0x52,0xfe,0x28,0x53,0x9c,0xbd,0x81, +0xc4,0xf3,0x93,0x97,0x2f,0x43,0x6d,0x5b,0xb2,0xe2,0xd2,0x54, +0x06,0xff,0x56,0xa6,0xf4,0xf3,0x46,0x1a,0xd1,0xa9,0xcb,0x56, +0xa8,0x4a,0xb8,0x83,0xab,0x10,0x4f,0x4a,0xf9,0x07,0x65,0xe9, +0x99,0x92,0x4d,0x9d,0x10,0x47,0xca,0xf9,0x47,0x15,0x19,0x6c, +0x7f,0x18,0xe6,0x61,0xfc,0x2a,0x44,0x4f,0x73,0x8b,0x1b,0x6c, +0x15,0xcb,0xbe,0x6e,0x37,0xa1,0x58,0xd7,0x24,0x55,0xce,0x2a, +0x1c,0x93,0x69,0xd8,0xc1,0x17,0x65,0x9e,0x2b,0xac,0xd4,0xc3, +0xc6,0xfa,0xca,0x01,0xfc,0xb8,0xc5,0xe4,0x27,0xd7,0x5e,0x92, +0x79,0x3a,0x3a,0x7b,0x4e,0x30,0x8a,0x39,0x7b,0x9f,0x19,0x89, +0x5c,0x29,0xd0,0xef,0x69,0x3f,0x71,0xe4,0x8a,0xe5,0x81,0xd3, +0xf4,0xaa,0xfb,0x18,0x3c,0x47,0x4f,0xde,0xd0,0x56,0x1a,0x89, +0x3a,0xb4,0x62,0xce,0x39,0x13,0x98,0x77,0x0e,0x0e,0x72,0x2b, +0x1d,0x75,0xed,0x3b,0x09,0x2c,0xe1,0xe4,0x44,0x66,0x96,0x2a, +0x9c,0xce,0x4c,0xcc,0xa3,0xe7,0xfc,0x61,0x09,0x4f,0xc3,0x69, +0xb5,0x6e,0x02,0x94,0xe6,0xd2,0x04,0xa6,0x20,0xa1,0xbb,0x1c, +0x5b,0xae,0xdc,0xa1,0xcb,0x51,0x9f,0x1f,0x66,0x6e,0x56,0xc3, +0x97,0x02,0x3d,0xf9,0x40,0xd0,0x76,0x36,0x3f,0x50,0xb3,0xba, +0x92,0x4a,0x94,0x5a,0x3a,0x13,0x5d,0xa2,0x53,0xa5,0x4a,0x06, +0x2a,0xb6,0x61,0xc3,0x28,0x73,0x66,0xb5,0xcd,0x52,0x1b,0xcc, +0x46,0x73,0x96,0x63,0x2a,0xd9,0x79,0x36,0xa9,0xe7,0xb9,0x81, +0x7d,0xdc,0xe4,0xb0,0x4a,0xa5,0x8c,0xa6,0x22,0xb2,0x47,0x45, +0x46,0xcb,0xa1,0x95,0x4a,0xa9,0x1a,0x37,0xba,0x0b,0x01,0xea, +0x5d,0x24,0x0f,0x18,0x43,0x47,0xd1,0x69,0x30,0x4a,0x25,0xcc, +0xf4,0x46,0x95,0xbd,0xac,0x42,0x29,0xa0,0xa9,0xf8,0x69,0x5b, +0x2b,0x95,0x70,0x3c,0x6e,0xbc,0x76,0xdc,0x81,0xa6,0xe3,0x24, +0x1b,0x22,0xd0,0x08,0xb6,0x73,0x99,0x46,0x04,0x80,0x23,0x4f, +0xdd,0xe8,0x52,0x5d,0x00,0xac,0xbf,0x44,0x47,0xf1,0x66,0xeb, +0xc4,0x9f,0x60,0x46,0x01,0x9d,0xf1,0x04,0x16,0x5e,0xa7,0xa7, +0xe9,0x2f,0x50,0x70,0x9d,0x37,0xd3,0xcd,0x61,0x46,0xaf,0x55, +0xaa,0x97,0x8e,0x69,0x29,0x27,0x95,0x83,0x36,0xe6,0x3e,0xe4, +0x63,0xae,0xbb,0x18,0xfd,0x14,0xe6,0xc2,0x44,0xb5,0x10,0x95, +0x03,0xc1,0x45,0xc0,0x44,0xb8,0xab,0xe0,0x12,0x17,0x58,0x4a, +0xe6,0x05,0xcc,0xe2,0x43,0x67,0x72,0x13,0xae,0x79,0xd8,0x6d, +0xc6,0xd1,0x77,0x66,0xe9,0x09,0x81,0xfe,0x2a,0x46,0x93,0xd2, +0x1b,0x79,0xea,0x54,0x8a,0x3f,0xa6,0x1f,0x10,0xac,0x22,0xf7, +0x81,0xbb,0x94,0xe0,0xc8,0x1d,0xa2,0xe6,0x17,0x9b,0x76,0x55, +0xb6,0x7f,0x31,0x6a,0x0b,0x26,0x43,0x30,0x77,0x0b,0x67,0x5d, +0xaf,0x22,0x79,0xc4,0x22,0x47,0xe2,0xd4,0x15,0x33,0x8f,0x09, +0x74,0xa6,0xed,0xff,0xfb,0x26,0xef,0x25,0xfc,0xda,0x41,0x03, +0x12,0xbf,0xc2,0xd2,0x08,0xbf,0x09,0xca,0x54,0xf6,0x6c,0x7f, +0x8c,0x55,0x03,0xbe,0x30,0xd2,0x7a,0xc2,0xaf,0xeb,0xd7,0x7b, +0x7d,0x5f,0x35,0x91,0x79,0x8e,0x4a,0xa4,0xde,0xdd,0xa8,0x88, +0x88,0xf6,0x59,0xef,0x60,0x85,0x8a,0xe3,0x03,0xda,0x96,0x3d, +0x99,0xe5,0x82,0x62,0x47,0xf8,0x24,0xda,0x2c,0xbc,0x6f,0xc8, +0x37,0x2d,0xe9,0x59,0xee,0xc0,0xc3,0x1d,0x3f,0xff,0xa1,0xbf, +0x41,0x4f,0x63,0x10,0x4f,0xfa,0xa3,0xfb,0xf5,0x52,0x2b,0x37, +0xc1,0xfe,0x11,0xbb,0x33,0x98,0x0c,0xdd,0x31,0xbe,0xe5,0xdb, +0x61,0x36,0xe5,0xc2,0x00,0x3c,0x13,0x83,0x66,0x4d,0xf1,0xf7, +0x9f,0x75,0xa5,0xd6,0x70,0x99,0xaf,0x3d,0x97,0x9d,0x97,0x77, +0x2e,0xc0,0x91,0xf9,0x1d,0xae,0xdf,0xd0,0xe3,0xdf,0xba,0xd2, +0x03,0xcc,0x97,0x73,0x65,0x3e,0xdb,0xf1,0x27,0x70,0x9c,0xdd, +0x33,0xbf,0x39,0x8b,0xa6,0x4f,0x9b,0x73,0xe4,0xba,0xe1,0x1c, +0x7f,0x3d,0xeb,0xf0,0xa5,0x8b,0x59,0x8b,0xfd,0x58,0xdf,0x9f, +0xd5,0x98,0xdf,0x9f,0xe5,0x0d,0x15,0x4a,0x1d,0xbd,0x61,0x8d, +0x65,0x4c,0x42,0xe9,0x5c,0xf9,0xa1,0x64,0xd7,0x09,0xe3,0x81, +0x98,0x10,0x8c,0x42,0x67,0x14,0xbe,0x49,0x5b,0x4a,0x07,0xa3, +0x85,0x3f,0xf8,0x9b,0x58,0xcd,0xc2,0xd7,0xb0,0x81,0x88,0x0d, +0x44,0xac,0x17,0x62,0xed,0x86,0x0d,0xab,0xe1,0xc1,0x69,0x98, +0x38,0xac,0xa6,0x86,0xfb,0x4d,0xdb,0x1c,0x22,0x76,0x34,0x83, +0x3d,0x23,0x27,0xcb,0x95,0x34,0xf0,0x92,0x37,0x94,0xd3,0x66, +0xa4,0x93,0xff,0x3d,0xb0,0x05,0xdb,0xbc,0xfb,0x6f,0xde,0xe4, +0x39,0x51,0x5b,0x6a,0xeb,0xef,0xdc,0xc9,0x48,0xc0,0xbb,0x98, +0x2a,0xaf,0xe0,0xe1,0x75,0xfa,0xe8,0x25,0xbc,0x2c,0x56,0xfa, +0xd0,0xf7,0x30,0x8c,0xc0,0xfc,0xc6,0x59,0x42,0x5c,0x09,0x9d, +0xa6,0xf2,0xad,0x6b,0x8a,0x37,0xae,0x4c,0xc7,0x54,0xb1,0x26, +0xab,0x31,0xd1,0xa5,0x9a,0xbc,0x1c,0x9e,0xeb,0xba,0x71,0x74, +0x38,0x3d,0xae,0x5b,0xcf,0x51,0x67,0x38,0xae,0xeb,0xc8,0x11, +0xef,0x96,0x72,0x66,0x47,0xf1,0x81,0xcb,0xd7,0xd4,0x17,0xff, +0xac,0x95,0x15,0x81,0xf8,0xd0,0x75,0x5d,0x0d,0xe7,0x7d,0xc1, +0xe2,0xfa,0xa3,0xcb,0xb9,0xd9,0x96,0x98,0x55,0xba,0x23,0x86, +0xf8,0xbd,0x7b,0x57,0x7e,0xfd,0xf6,0x85,0x90,0xac,0x80,0x3d, +0x86,0x14,0xbe,0x27,0x1d,0x84,0x8b,0xf1,0x64,0x8a,0xc5,0x9d, +0xe2,0x2b,0x17,0x8f,0x5f,0x4c,0xd9,0x98,0x9a,0x98,0x9a,0xc0, +0x86,0x76,0xb5,0xd2,0xcf,0x14,0x8b,0xdb,0x45,0x0c,0x3d,0x9f, +0xb2,0x39,0x6d,0xbd,0x8a,0xb6,0x43,0x74,0x6a,0x48,0x48,0xd0, +0x74,0xfd,0x88,0xf2,0x31,0xec,0x4c,0x45,0xb7,0x2f,0x86,0x9c, +0x9e,0xba,0xc7,0xb0,0x99,0x60,0xc0,0xae,0x64,0x3e,0x45,0x20, +0xd3,0x42,0x56,0xa9,0x81,0x84,0xa3,0x5f,0xbe,0x2a,0x29,0xc6, +0xe8,0xdd,0x69,0x7b,0x59,0x33,0x15,0x90,0xff,0xac,0x38,0xfb, +0xf2,0xd1,0x6c,0xcb,0xa4,0xa4,0x94,0xb4,0xf4,0x0d,0x69,0x71, +0x96,0x64,0x1e,0x1b,0x35,0xdc,0xa1,0xd5,0x08,0x5a,0xcc,0xab, +0xe4,0x13,0xf5,0xe7,0x09,0x96,0x3f,0xf4,0x80,0x96,0x23,0x68, +0x81,0x06,0x3d,0x65,0x90,0x7b,0x1f,0xda,0xcc,0x70,0x79,0x4a, +0x6e,0xf9,0xf1,0x9c,0x43,0xd7,0x2c,0x37,0x6e,0xda,0x94,0xb8, +0x71,0x1d,0x09,0x09,0xd4,0x07,0xed,0x5d,0xb9,0x27,0xd4,0xb0, +0x7b,0x75,0x46,0x64,0xa8,0x3e,0x2c,0x3a,0x62,0xd5,0x6a,0x4c, +0x62,0x4e,0x16,0x20,0x99,0xd6,0x7a,0xc1,0x66,0xa6,0xcb,0xb4, +0x6c,0x48,0x35,0x77,0x60,0x2c,0x66,0x1f,0xac,0x4d,0xd6,0xed, +0x3b,0x9b,0x76,0x3e,0x5f,0x7f,0xd2,0x79,0x21,0xdf,0x3b,0xd8, +0xdf,0x7e,0x88,0xa1,0x43,0x3d,0xa2,0xbb,0xcf,0xa6,0x5f,0x28, +0xd0,0x1f,0x72,0x5d,0xce,0x77,0x0c,0x9c,0xc0,0x94,0x54,0x73, +0x55,0xcf,0xec,0x3e,0x9f,0x7e,0xb1,0x50,0xd5,0x5d,0xd6,0xaa, +0xea,0xe2,0x0c,0x44,0x4b,0x53,0xb6,0xd0,0xd2,0x94,0xcd,0x42, +0x53,0xd7,0x24,0x21,0x6b,0x20,0xce,0x16,0xab,0x7e,0x99,0x2b, +0xfa,0x65,0xb3,0xc7,0x30,0xb3,0xca,0x8c,0x5d,0x4b,0x87,0xbf, +0x05,0x60,0x0a,0x23,0x44,0x8e,0x13,0x25,0xf3,0x71,0x02,0xad, +0x94,0x6b,0x38,0x0d,0x88,0x17,0x95,0x44,0xf6,0xa0,0xc4,0x54, +0x28,0xb7,0xe8,0x0d,0x86,0x36,0xfa,0x22,0xba,0x1e,0xd1,0x51, +0x1a,0x5a,0xf6,0xa1,0xef,0x06,0x44,0x47,0x68,0x68,0xc9,0x07, +0x34,0x18,0xd1,0xa9,0x38,0xf4,0xdd,0xa2,0x0f,0xdf,0xdb,0xa0, +0x93,0x28,0xe3,0xa7,0xe1,0x86,0x9d,0x4d,0xea,0xd0,0x80,0x52, +0xca,0xcb,0xf4,0x07,0x4c,0x15,0x8d,0x10,0x46,0xeb,0x1e,0x12, +0xe9,0xb3,0x36,0x5a,0x0e,0xf9,0x77,0x24,0xe5,0x6d,0xc6,0xa3, +0xad,0x71,0xc5,0x6a,0x3a,0xa6,0x17,0x93,0x33,0xd7,0x24,0xd1, +0x77,0xc2,0xde,0x8b,0xe9,0x97,0x0a,0xd5,0x25,0x6c,0xb2,0x27, +0x2b,0xfd,0x74,0xd2,0x25,0xcb,0xbf,0x1b,0x0b,0x84,0x75,0x83, +0xa7,0x78,0xb3,0x7b,0x79,0xec,0x52,0xca,0xa6,0x14,0xc9,0xa6, +0xbf,0x40,0x94,0x81,0x74,0xb4,0xae,0x0f,0x2f,0x0f,0xa4,0x63, +0x74,0x0f,0x79,0xfa,0x0a,0xba,0xe9,0x52,0x79,0x72,0xcd,0xbf, +0xba,0x2a,0xa7,0xe4,0x44,0xb1,0x65,0x6a,0x46,0xe6,0x86,0xb4, +0x68,0xe8,0x4e,0xbd,0x2d,0xaa,0x49,0xfe,0x6d,0x7d,0xad,0x93, +0x13,0x4f,0x6d,0x03,0x87,0xdb,0x31,0xed,0x9d,0x3f,0xf9,0x7a, +0xf5,0xd9,0x7c,0x36,0xa0,0x84,0x09,0x33,0xa3,0x46,0xc5,0x39, +0x27,0x59,0x92,0xc7,0x3c,0x7d,0x0d,0x53,0x74,0x69,0x3c,0xe0, +0xe6,0x31,0xaf,0x20,0xb3,0x08,0xf9,0x11,0x66,0xc2,0x38,0x7a, +0x62,0x34,0xcc,0x19,0x48,0x67,0x61,0x3c,0x1a,0xf1,0x17,0x94, +0xc5,0x77,0x38,0xfa,0x10,0xde,0x9a,0x32,0xda,0xc8,0x8b,0xaf, +0x60,0xa6,0x91,0x2e,0x06,0x7f,0xb1,0xf2,0x46,0x91,0x3a,0x20, +0x8e,0xf1,0x30,0x90,0x3f,0x78,0x30,0xd0,0xcf,0xc5,0x85,0x9c, +0x67,0xc0,0xde,0x8b,0x97,0x2e,0xed,0xa9,0x34,0x1e,0xe5,0x2a, +0x98,0x27,0x98,0x2c,0x77,0x51,0x92,0xb9,0x6a,0xfa,0x9b,0x08, +0xe7,0xe1,0x7f,0xf4,0x3c,0x1b,0xf0,0xeb,0x61,0x56,0x1e,0x9d, +0xf5,0x1c,0x16,0x17,0xb0,0xe1,0xfa,0x15,0x14,0xe4,0xab,0xd8, +0xec,0x3c,0x3a,0xfb,0x39,0x2c,0xf9,0x0f,0xf6,0x7a,0xbe,0xf0, +0x0a,0xeb,0x68,0x9f,0x56,0x9a,0x43,0x41,0x09,0xcf,0x5c,0x9d, +0x6f,0x05,0x33,0x8d,0x37,0xe0,0x0e,0x1d,0x2d,0x6c,0x93,0x3a, +0x1c,0x10,0xb0,0xec,0x32,0xce,0xcd,0x5d,0xcd,0xd3,0x99,0xe9, +0xf6,0x5c,0x4b,0xcf,0xb9,0xa1,0x3f,0xe3,0x36,0x8f,0xa7,0xe6, +0x81,0x1e,0xcc,0x40,0xb1,0x30,0x90,0xff,0x94,0x58,0x42,0xc6, +0x44,0x7f,0x27,0xf6,0x1b,0x15,0x08,0x83,0x4c,0x73,0x75,0x55, +0x92,0xce,0x55,0xf0,0x1f,0x46,0xbe,0x17,0x90,0xed,0x64,0x4e, +0xc2,0xec,0x84,0x19,0x6b,0x5b,0x6e,0xbb,0x97,0xce,0x06,0xcf, +0xf6,0x11,0xfd,0x42,0x86,0xa8,0x63,0xe7,0xf7,0xdb,0x7f,0xfa, +0x5d,0x1d,0x3b,0x91,0x9d,0x70,0x8b,0x2c,0x70,0x6e,0xd7,0x45, +0x1a,0x05,0x5d,0x20,0x8a,0xa3,0x7d,0xd9,0x1b,0xb8,0x4f,0x00, +0x8a,0x65,0x19,0xf7,0xa1,0xb6,0xe8,0xcd,0xde,0xad,0xde,0x1c, +0x03,0x5a,0x35,0xed,0xab,0x60,0x0b,0x0d,0x6c,0xd1,0xb4,0x4f, +0xd4,0xe4,0x8d,0x69,0x6a,0xf2,0xc6,0x34,0x4c,0xde,0x98,0xa8, +0x73,0xf4,0x51,0x1d,0x20,0x1d,0x3a,0x3d,0xff,0x50,0x5d,0xd3, +0xbe,0x0a,0xb6,0xd6,0xc0,0xd6,0x4d,0xfb,0xec,0x53,0xf7,0xa3, +0xe7,0xd4,0x0a,0xb7,0x84,0x79,0xc8,0x7c,0x0f,0xba,0xdf,0x43, +0xfe,0xa7,0x92,0xee,0x7b,0x2e,0x73,0x95,0x3c,0x9d,0xc7,0x2c, +0xc7,0x15,0x42,0x3d,0x4c,0x82,0x1f,0x7d,0xa9,0xae,0x3b,0x34, +0x1f,0xcd,0xf4,0x99,0x8d,0x97,0x20,0x7f,0x8f,0x13,0xd1,0xed, +0x05,0xe5,0x7f,0xec,0xb2,0x9a,0x39,0xd1,0x66,0xd4,0x5b,0xdb, +0x24,0x74,0xc5,0xab,0xff,0xd8,0x89,0x7e,0xcc,0x10,0x75,0x93, +0xd0,0x1d,0x57,0xa2,0x8e,0x0b,0xcc,0xe4,0xd5,0xe1,0x96,0x5d, +0x88,0x30,0xdb,0x9d,0xb6,0xea,0x6c,0x28,0x9c,0xf9,0xa4,0xf6, +0x5a,0xf1,0xde,0x3a,0x4b,0xf8,0x98,0x81,0xad,0x99,0xcd,0xdc, +0x9a,0x63,0x46,0xac,0x0d,0xb2,0x92,0xdb,0xc0,0x27,0x9c,0x0a, +0xda,0x6b,0xa0,0x3d,0x82,0xf6,0x4d,0x60,0x2f,0x0d,0xec,0x85, +0x60,0xaf,0x26,0xb0,0x87,0x06,0xf6,0x40,0xb0,0x47,0x13,0xe8, +0xa0,0x81,0x0e,0x08,0x3a,0x68,0xa0,0xd9,0xec,0x91,0xb4,0x95, +0xad,0xe1,0xfa,0xcc,0x1f,0xeb,0xae,0x96,0xee,0xfb,0x4e,0xfb, +0xf4,0x4f,0xc1,0x1a,0x3e,0xe5,0xa0,0x8a,0x5a,0x37,0xed,0xab, +0x60,0x0f,0x0d,0xec,0xd1,0xb4,0xcf,0x40,0x2f,0x68,0x36,0x82, +0x9e,0x55,0xe9,0x08,0x7f,0x19,0x89,0xc0,0x8d,0x3a,0x38,0x97, +0x4b,0xcf,0xd7,0x42,0x61,0x3e,0xf3,0x1c,0x4b,0x64,0xb5,0x97, +0x2f,0x7c,0x36,0x8a,0xde,0x57,0xa9,0xb9,0xf9,0x51,0x08,0xdc, +0x95,0x6c,0x5c,0x04,0x2c,0xef,0xfb,0x0d,0x3d,0x24,0x99,0xe7, +0x0b,0xd0,0x3b,0x5b,0x20,0x06,0xa5,0x55,0xa8,0x78,0x9a,0x97, +0xec,0x7a,0x0a,0x98,0xcd,0xa0,0xae,0x65,0xc7,0x56,0xcb,0xe7, +0x5c,0x4c,0x6b,0xd9,0x08,0xba,0x23,0x78,0xbc,0x5a,0xfe,0xd3, +0x85,0xee,0x61,0x60,0x8a,0x0a,0xaa,0x6b,0xd8,0x61,0xd5,0xf2, +0x7e,0x17,0xd3,0x1a,0x36,0x91,0x74,0x9f,0x08,0x6a,0x34,0x9d, +0x8b,0x64,0x1e,0x8d,0xe3,0xc9,0xcf,0x82,0x2b,0xae,0xa8,0x27, +0xe2,0x8a,0xfa,0xec,0x2a,0x79,0xb1,0x2b,0x9d,0x46,0x09,0x8c, +0x76,0xfd,0xb0,0xd2,0x3d,0xb7,0x4a,0x4e,0x6c,0x5a,0xe9,0x26, +0x0d,0x9f,0xc1,0x77,0xe2,0x33,0xb0,0x80,0xe7,0x23,0x71,0x32, +0x7b,0x14,0x7d,0x4a,0xfa,0x5d,0x87,0x77,0xcc,0x6c,0xa1,0x33, +0x73,0xae,0xf5,0x7d,0x32,0xe1,0x62,0xd2,0xc6,0x57,0xf1,0x3a, +0xd2,0x4f,0xee,0x11,0xc9,0x40,0x98,0x39,0x29,0xa7,0x5f,0xdf, +0xe9,0x13,0xd6,0x25,0xa5,0xbc,0xd2,0x91,0x7f,0x78,0x79,0xa8, +0x48,0xbf,0x80,0xe7,0xb8,0xcc,0x2d,0xcf,0x82,0x2f,0x38,0xa5, +0x3f,0x31,0xd5,0xbd,0x1b,0xc6,0xd5,0xd0,0xbf,0x45,0xac,0x7a, +0x47,0xbb,0xf0,0xe4,0x1f,0x41,0xbe,0x82,0x44,0xf3,0x8b,0x9d, +0x95,0x8d,0xf7,0x60,0x29,0x98,0x71,0x0a,0x52,0xc4,0xf4,0x15, +0x94,0xa7,0xda,0xa6,0x9e,0x38,0xa7,0x2d,0xa7,0x0b,0x75,0xd4, +0x81,0x5b,0x0e,0x0b,0x9d,0x63,0x8f,0xd0,0x40,0x1d,0xb5,0x20, +0x3e,0xdc,0x6f,0x3d,0xbe,0xa3,0x3d,0xa8,0x9b,0x7e,0x12,0x4f, +0xdd,0x07,0x53,0xfb,0xae,0xbd,0x0d,0x64,0xac,0x05,0xe8,0x2f, +0xfe,0x70,0x2a,0x27,0x6b,0x47,0xda,0xae,0x0d,0x3b,0xe3,0x60, +0x3f,0xfd,0xd8,0x82,0xa9,0xaa,0xc0,0x51,0x94,0xef,0x6c,0x28, +0x98,0xa5,0x83,0x36,0xf0,0xd1,0xc5,0x6a,0x64,0xca,0x84,0x64, +0x66,0xcc,0xd2,0x4f,0xc4,0x18,0xa6,0x85,0xd9,0xad,0x5e,0x7a, +0xca,0x1f,0x29,0xf6,0xdb,0x15,0x29,0xbb,0xc6,0x20,0x0f,0xbf, +0x7f,0xc8,0xb2,0xb9,0xda,0x4a,0xa7,0xaf,0x3b,0xf8,0xd2,0x90, +0x3a,0x79,0x23,0xcf,0x0c,0xf9,0xd0,0xf0,0xe5,0x61,0x98,0x2a, +0x11,0x20,0x10,0x39,0x1a,0xe6,0x29,0x77,0x3d,0x91,0x69,0x20, +0x9a,0x0e,0x64,0xe3,0x59,0x58,0xea,0x9a,0xc4,0xf0,0x18,0xcb, +0xd5,0x51,0xf1,0xc9,0x7b,0xf6,0x67,0x1e,0x48,0x3e,0x6a,0x09, +0x7e,0x44,0x8e,0x81,0x20,0xe5,0xae,0x97,0xb6,0xb6,0xdb,0x9f, +0xf5,0x5a,0x2d,0x7f,0xee,0xaa,0x58,0x63,0xe5,0x95,0xef,0x9e, +0xee,0xdc,0x97,0x87,0x4b,0x9d,0x4f,0x84,0x09,0xb5,0xf2,0x01, +0x47,0xe5,0x6b,0x5e,0x71,0xb5,0x13,0x89,0x89,0x8e,0xed,0x7d, +0x2a,0x1a,0xfb,0x45,0x82,0x66,0xfa,0xa1,0x4a,0x3b,0x95,0x7e, +0xe6,0x9a,0x7e,0xef,0x88,0x30,0xbe,0x57,0xd0,0x54,0x6a,0xd1, +0xc9,0x40,0x92,0x55,0x17,0xe8,0x4f,0xda,0xd3,0xe2,0xca,0x95, +0x4e,0x60,0x44,0x07,0x27,0x82,0xa4,0xbc,0x92,0xac,0x7d,0x04, +0x72,0x70,0x06,0xd2,0x83,0x7a,0x7b,0xaa,0x75,0xa6,0x4f,0xbf, +0x7a,0xad,0xd2,0x83,0xd2,0x99,0x32,0xa7,0xeb,0xc7,0xd1,0x99, +0x0a,0x57,0x3e,0x1f,0xbc,0xe1,0xa1,0x6e,0x13,0x47,0x2a,0xee, +0x5c,0xca,0x3f,0x9a,0x67,0xb9,0x59,0xf3,0x82,0xbf,0xa4,0x0e, +0x16,0xf9,0x57,0x4c,0xeb,0x55,0x7a,0x3a,0xbb,0x46,0x5e,0x3c, +0x8c,0x3d,0x26,0x7a,0x18,0x3d,0x8c,0x3c,0x8d,0x94,0xec,0x0e, +0x08,0x67,0xd3,0xcf,0xe5,0xe8,0x8f,0x11,0xf9,0x0d,0xf6,0xb0, +0xc4,0x15,0x2d,0x4b,0x18,0xcd,0x06,0x3f,0xeb,0x5f,0xb1,0x56, +0x02,0x81,0x8f,0xc2,0xd2,0xc3,0x37,0xac,0xd6,0x22,0xb7,0x0e, +0xe0,0x3c,0xe6,0x25,0x4b,0x22,0xb7,0x14,0xe5,0xc0,0x3b,0x4a, +0x20,0x47,0xf7,0xb6,0xd0,0x76,0x98,0x2d,0x7e,0x45,0x96,0xe8, +0x15,0xae,0xdc,0x5f,0x84,0xa1,0xf4,0x12,0x45,0xb6,0x98,0x71, +0x73,0x2f,0x14,0xe4,0x9f,0xba,0x58,0x50,0x70,0x6a,0xfa,0xf8, +0x71,0x73,0x67,0x60,0x04,0x21,0x6c,0x84,0x99,0xfc,0xbd,0xec, +0xd9,0xae,0xc6,0xb9,0xbc,0x6b,0xc0,0x6c,0x67,0x03,0x33,0xeb, +0x7b,0xc9,0x85,0x4a,0x2f,0xae,0xc6,0x43,0x84,0x9d,0x8a,0x33, +0xdd,0xc9,0x99,0xf5,0xfc,0x11,0x56,0xf5,0xef,0xe7,0xd1,0xd0, +0x5d,0xa0,0x9f,0xfc,0xc8,0x99,0xa9,0xe5,0xa8,0xd1,0xc4,0x89, +0x07,0x89,0x5a,0x59,0xe4,0x5e,0xd6,0x99,0x71,0x6b,0x3b,0x4f, +0x1a,0x47,0x5b,0xdb,0x5c,0x9b,0x64,0x71,0x9b,0x70,0x69,0xf4, +0x6b,0xad,0xfc,0xe4,0xa7,0x4e,0x84,0x1f,0xe3,0x35,0xaf,0x77, +0x2f,0xef,0x93,0x45,0x06,0xf8,0x88,0x8d,0x53,0x83,0x86,0x52, +0x37,0x6b,0x2d,0x03,0x4a,0x6a,0xf3,0x82,0x99,0x67,0xb3,0x98, +0x2d,0xe7,0x2e,0x74,0xa2,0xb3,0xc9,0xc8,0x7d,0x86,0xcd,0xe0, +0x51,0xda,0x38,0xce,0x07,0x3c,0x88,0x3b,0xed,0xc6,0x1e,0xda, +0x2e,0x1e,0x98,0x98,0x45,0x20,0x94,0xb6,0xb9,0xc7,0x9e,0xad, +0x79,0xb4,0x4d,0x19,0x51,0x3e,0x7a,0x01,0x4f,0x0a,0xe9,0x4f, +0x2f,0xe0,0x6d,0x31,0xd1,0xf4,0xf9,0x4d,0xd4,0xe7,0xec,0x96, +0x84,0x45,0xae,0x4d,0x3a,0x70,0x2a,0xf3,0x74,0x12,0x89,0xdc, +0x12,0x91,0xb4,0x06,0xd9,0x48,0x98,0x55,0x42,0x34,0x4e,0xe4, +0x23,0x6b,0x52,0x99,0x91,0x43,0x92,0xd6,0x44,0xb2,0x5b,0x17, +0xbf,0x49,0x77,0x20,0x3b,0x53,0xfb,0x85,0x13,0xfe,0xa2,0x5d, +0x98,0x8f,0x49,0x68,0x96,0xca,0xc9,0xf5,0x84,0xd0,0x22,0xf6, +0x45,0xfd,0xff,0x12,0xef,0x90,0x86,0xf5,0xf2,0x6d,0x11,0x26, +0x31,0x83,0xd3,0x1c,0x09,0x36,0x2d,0x75,0x04,0xba,0xb8,0xb3, +0x4b,0xda,0xc4,0x29,0xe6,0xa5,0x38,0x42,0x75,0xc7,0x11,0xca, +0x94,0x77,0x8c,0x05,0x96,0xa6,0xc0,0x82,0xf4,0x3d,0x60,0x6d, +0x44,0x4c,0xb2,0x91,0xf0,0x11,0x6b,0x14,0x7e,0x48,0xde,0x88, +0x84,0x10,0x36,0x01,0x42,0x8a,0xbb,0xee,0x87,0xc7,0x58,0xf3, +0x03,0xb5,0xd8,0x49,0xee,0x6d,0x6d,0xda,0xb6,0x32,0x63,0x74, +0xa1,0x2e,0xdc,0x8f,0x68,0x29,0x47,0xa6,0xfc,0x81,0xd5,0x81, +0x4c,0xe5,0x7f,0x84,0xcf,0x26,0x73,0x27,0xf9,0xb5,0x7d,0x7b, +0xae,0xef,0xc3,0x9c,0x0b,0x1d,0x73,0x7f,0x96,0x32,0xac,0x87, +0x91,0x28,0xdd,0x30,0x30,0xeb,0xdf,0x6a,0xf0,0xb6,0xcd,0x4d, +0x7c,0xa9,0x26,0xde,0xa4,0x14,0x2f,0x4c,0xff,0x25,0xff,0x61, +0x51,0xc2,0xb9,0xca,0x83,0x58,0x3f,0x41,0xb2,0xd9,0x20,0xa0, +0x7d,0xcc,0x1a,0xbf,0xf9,0x2a,0xf1,0x6b,0xab,0x14,0x53,0xc1, +0x3b,0x2c,0xf1,0x44,0x70,0xdd,0xd2,0xeb,0x3f,0xeb,0x96,0x18, +0x01,0xe6,0xa9,0x46,0x80,0x6d,0x51,0x23,0xc0,0x24,0x9b,0x64, +0x01,0x57,0x31,0x49,0xcb,0x58,0xfa,0x29,0x35,0xae,0xa5,0x7a, +0xbc,0xae,0xef,0xbe,0x57,0x09,0x80,0x5a,0x26,0x4e,0x99,0x2c, +0xb5,0x78,0x29,0x64,0xec,0xc3,0xcf,0x29,0x13,0x5e,0x39,0x77, +0x92,0x5a,0xfd,0x8e,0xda,0x29,0x88,0x1e,0xb8,0x07,0x3f,0xbf, +0x0f,0x17,0xd8,0xd0,0x3a,0x8b,0x1e,0x40,0xaa,0x41,0xf8,0x68, +0x24,0x7d,0x0c,0xa7,0x91,0x60,0x56,0x59,0x4e,0x8f,0x8b,0x44, +0xbc,0xce,0xd1,0x11,0xf2,0x58,0x66,0xb9,0x8d,0xd5,0xf9,0xb1, +0x5d,0x65,0x2c,0xf3,0x68,0xf0,0x31,0xf8,0xb4,0xe9,0x9e,0x43, +0x95,0x3c,0x88,0xf5,0x53,0xc6,0xc1,0x29,0x79,0x1c,0xef,0xae, +0x18,0x45,0xda,0x1d,0x9e,0x41,0x77,0x1c,0xec,0x7d,0xde,0x8c, +0xa4,0xbb,0x54,0x15,0x71,0x57,0x1d,0xfc,0x7d,0x7f,0x1b,0x85, +0x95,0x81,0x98,0x7c,0x0b,0xe5,0xd5,0x58,0xdf,0x2b,0x52,0xa5, +0x2c,0xdd,0x73,0x34,0xe3,0x78,0xf2,0x59,0x4b,0xd2,0x4e,0xb2, +0x9e,0x2a,0x10,0x0b,0xc9,0x6e,0xbd,0xf0,0xfd,0x43,0xa4,0x49, +0x63,0x77,0xb1,0x9b,0xa0,0x7d,0x13,0x7d,0x32,0xd8,0x94,0xd1, +0xfb,0xde,0x7f,0xf3,0xbd,0x17,0x8c,0xeb,0x3d,0xc4,0x60,0xfb, +0x3a,0x92,0xe8,0x6f,0x3b,0x7b,0xf0,0xb4,0x5d,0xa0,0x7b,0x47, +0xca,0x33,0xdb,0xfc,0xfa,0x8d,0xb3,0xb9,0x44,0x8f,0x49,0xea, +0xf1,0xbc,0x07,0xd1,0x57,0x3b,0x0d,0xe7,0xa9,0x21,0x70,0x84, +0x1d,0xfd,0xc4,0x90,0x3f,0xe9,0xfa,0x1d,0x66,0xb4,0x19,0xf6, +0x71,0xf7,0x0a,0xe7,0x7a,0x78,0xfa,0xcd,0x71,0x31,0xae,0xe0, +0x5c,0xfc,0xb2,0x2a,0x30,0x87,0x6f,0xa0,0x40,0x5b,0xdf,0x95, +0x17,0xbb,0x51,0x81,0x9a,0xff,0x31,0x9c,0x18,0x21,0x8e,0x2f, +0xbe,0x70,0xbc,0xc8,0xf0,0x1d,0x3f,0x66,0xc6,0xf1,0x62,0x14, +0x89,0x91,0xc6,0xf1,0xa3,0x67,0x2c,0x18,0x63,0xf8,0x86,0x2f, +0xba,0xb0,0x60,0x34,0x8a,0xa8,0x81,0xb4,0xf0,0xaa,0xea,0x86, +0xde,0x2e,0x5a,0x78,0x15,0x71,0xa4,0xbf,0xbd,0xb5,0x47,0xa7, +0xbe,0xb1,0x19,0xec,0x15,0xe5,0x6f,0xc8,0xf8,0x95,0xff,0xa9, +0x8c,0x57,0x75,0xbd,0xe2,0x4c,0xc8,0x09,0x42,0x75,0x81,0x9e, +0x94,0xef,0xa6,0x8d,0xce,0x7f,0x5e,0xbc,0x0b,0xb6,0x38,0x61, +0x76,0x5c,0x98,0x0a,0xa7,0x2f,0xb3,0xa1,0xdb,0xc5,0x1b,0xeb, +0xbf,0xff,0xa7,0x34,0x3c,0x09,0x2c,0x2f,0x63,0x5e,0x07,0x7b, +0xc3,0x53,0xd3,0x70,0x21,0xd7,0xc0,0x7c,0x5d,0xb2,0xa0,0x23, +0xf5,0x7a,0x3b,0x12,0x17,0x62,0x99,0x87,0x51,0x74,0x9e,0x04, +0xf3,0x3d,0x17,0x8c,0xb7,0x1f,0x6c,0xb0,0x7e,0x1d,0x91,0x11, +0x8e,0xb5,0xa7,0x23,0xa3,0xb5,0x74,0x84,0xa7,0x90,0xa4,0x71, +0x0f,0x41,0x72,0x2f,0x85,0xc7,0x38,0x97,0x95,0x32,0x73,0xc2, +0xde,0xf7,0x52,0x03,0x5e,0x6e,0xb3,0x61,0x1d,0xd7,0x20,0x9e, +0x69,0xb6,0x20,0x53,0xd6,0xe4,0xc3,0xea,0x05,0x93,0xb3,0x99, +0x1c,0x7a,0x74,0xc6,0x2e,0xc3,0x66,0xde,0x9e,0x1a,0xd4,0x90, +0xd9,0x83,0x97,0x2e,0x9d,0x25,0x52,0x9b,0xa3,0xc2,0x46,0x1d, +0x33,0xb6,0x2f,0x5f,0xd7,0x9f,0x22,0xeb,0x24,0x6b,0x2f,0x81, +0x24,0x5d,0xb3,0x84,0x94,0x1b,0xca,0x13,0x77,0xd8,0xc6,0xad, +0xeb,0xed,0xeb,0x47,0xc3,0xfb,0x90,0x7f,0x93,0xdf,0xae,0x66, +0xe4,0x96,0xeb,0x33,0xa1,0x45,0xb9,0xe6,0x4c,0x30,0xcb,0xdf, +0xfb,0x5f,0xdf,0x01,0xb1,0x23,0x88,0x39,0xc8,0x31,0x6a,0xcc, +0x84,0x09,0xdb,0xf8,0x1f,0xbf,0xa1,0xc8,0x84,0x65,0x20,0xe6, +0xa4,0x61,0xb9,0x88,0xa5,0x79,0xc8,0xfb,0xf6,0x25,0x4c,0x8c, +0x9d,0x12,0x3d,0xd9,0x52,0xf9,0xf5,0xa1,0x40,0xd2,0x99,0x5f, +0x60,0xa2,0x69,0x61,0x7e,0x41,0x43,0x94,0xbc,0x4f,0x84,0x75, +0x8e,0x4a,0x4e,0x2d,0xac,0xd3,0x08,0xd6,0x70,0x10,0xd9,0x28, +0xc2,0x0e,0x35,0x78,0xe9,0x47,0x10,0x6f,0xf0,0x0a,0x73,0x37, +0xac,0x6f,0x0b,0x8d,0x38,0xa8,0xdf,0xc1,0x0d,0xeb,0x81,0x47, +0xa9,0x01,0x51,0xc7,0xdf,0xff,0x28,0x10,0xea,0x89,0x4e,0x5e, +0x91,0xfa,0xfc,0xfe,0x3d,0x82,0x5d,0x89,0x1a,0x2c,0xaf,0x06, +0xc8,0xad,0xa8,0x82,0x19,0x68,0x4a,0x90,0xf3,0x78,0x0b,0xf6, +0x96,0x2b,0x8a,0x17,0x1c,0xe0,0x12,0xba,0x8f,0xf0,0xa1,0x51, +0x24,0xaf,0xe4,0xec,0xd5,0xc3,0x39,0x96,0x92,0xdd,0x5e,0x81, +0x14,0xd5,0x80,0xbd,0xfe,0xf7,0x26,0x4a,0x2b,0x82,0x94,0x56, +0xea,0xb2,0x93,0xa4,0x73,0x51,0x97,0x9c,0x88,0xfc,0x02,0x83, +0x28,0x3b,0xd0,0xe0,0xea,0x86,0xee,0x2e,0x74,0x00,0xed,0x00, +0x5d,0x4c,0x41,0x17,0x7a,0xfa,0xb0,0xa6,0xa1,0xfb,0x30,0x7a, +0x98,0xe9,0xa5,0xad,0x44,0xfe,0xa3,0x61,0x6b,0xe3,0x75,0x81, +0x3e,0xa5,0xb6,0xa2,0x77,0xe8,0x4a,0x02,0xad,0x5d,0x69,0x1b, +0x1c,0x71,0x88,0x58,0xcc,0x94,0x9c,0x6b,0x2e,0x75,0x85,0x2f, +0x60,0x42,0x1e,0x4d,0x45,0xad,0xe3,0x74,0xd9,0x07,0x1e,0x96, +0x5e,0xa1,0x4e,0x53,0x4a,0xe9,0x43,0x1f,0xce,0x6c,0x38,0x8d, +0xc4,0x74,0x98,0x9f,0xbe,0xdb,0xc3,0x86,0x36,0xb3,0x0b,0x27, +0xce,0xa7,0x69,0x9c,0x34,0x5d,0xa8,0x99,0xc5,0xb5,0x7c,0x9d, +0xd9,0x15,0xa4,0xf3,0x66,0xaa,0x66,0x25,0x5d,0x75,0x17,0x2e, +0xd0,0x6b,0x9c,0x99,0x4a,0xf0,0x3d,0x1a,0x91,0xc8,0x2a,0x66, +0xc2,0xe6,0x98,0x10,0x7f,0x44,0xe2,0xab,0xe0,0x3a,0x22,0x6a, +0x41,0x8b,0xad,0xbb,0x7e,0x30,0x12,0x58,0xec,0xa5,0x94,0x41, +0xb0,0x5c,0x41,0xe4,0x99,0x92,0xae,0x35,0xbb,0x77,0xda,0x82, +0xda,0xe8,0x2a,0xa2,0x16,0x03,0xdc,0x92,0x98,0x1a,0x4b,0x4e, +0xe4,0x63,0x85,0x67,0xf6,0xb1,0xa4,0x42,0xa4,0x5b,0x21,0x03, +0x2b,0x12,0x42,0xe7,0x48,0x3e,0xa9,0x6f,0xa8,0xe3,0xf2,0x91, +0x2d,0x13,0x27,0x4d,0xd8,0x30,0xc9,0x2a,0x05,0x79,0x7e,0x8a, +0x2c,0x96,0x24,0x2c,0x5a,0x1b,0xcc,0x7c,0x09,0xc2,0x9c,0x0f, +0x95,0x4f,0x6c,0xb1,0xea,0x3e,0xa4,0x7e,0x70,0x1f,0xec,0x54, +0x82,0x73,0x06,0x85,0x20,0x94,0x87,0x90,0x39,0x42,0x92,0xf5, +0x5f,0xc2,0xcd,0xdb,0xaa,0xd5,0xdf,0x0c,0xad,0xfe,0xa9,0xed, +0xa0,0x17,0xb3,0xcf,0xd1,0xe6,0xb7,0xbd,0x26,0xc0,0x37,0xf2, +0x20,0x1c,0x98,0x98,0x3b,0x2a,0x7d,0x46,0x30,0x22,0x8c,0x47, +0x91,0x07,0xf6,0x8f,0x83,0x91,0xed,0x80,0x37,0x41,0x72,0x77, +0xf9,0x73,0xa5,0x3b,0x57,0xeb,0x25,0xc2,0x16,0xba,0x8d,0x62, +0x80,0xb2,0xdc,0x5b,0x36,0x57,0x7a,0x73,0xb5,0x9e,0x22,0x6c, +0xa7,0x19,0x74,0x3b,0x1e,0x68,0x4e,0x79,0x61,0x9f,0x7e,0xff, +0xfa,0xbd,0x09,0x7b,0x0c,0x04,0x0b,0x82,0x9a,0x63,0x41,0x50, +0xf6,0xf5,0xb6,0xb3,0xaf,0x87,0x3d,0x70,0x36,0x75,0xb4,0x9a, +0x91,0x6c,0xbd,0x41,0xd8,0x42,0x2c,0x93,0x25,0xdb,0xf7,0x42, +0x21,0x1b,0x7c,0x6d,0x67,0x7a,0x50,0xc1,0xbe,0xc1,0x28,0xfc, +0x7d,0xb5,0x0a,0xf4,0x7a,0x62,0x3b,0xcb,0x9d,0xb6,0xb4,0x6f, +0x18,0x20,0xfc,0x7d,0x59,0x95,0xff,0x69,0x21,0x77,0x13,0xa9, +0x04,0xef,0x1d,0x1b,0xe5,0x5a,0xd9,0x0b,0x24,0x8e,0xfc,0xa3, +0x93,0x4f,0x88,0xd4,0x08,0x11,0x43,0x95,0x0b,0x75,0x90,0x08, +0x46,0xce,0x64,0x81,0xea,0x3f,0x58,0xa0,0x7a,0x0e,0x4d,0xcd, +0x62,0x84,0x66,0x3b,0x2a,0x2b,0x6b,0x61,0xb6,0x09,0x3a,0x8f, +0xd0,0x4a,0x47,0x65,0x57,0x2d,0xac,0x36,0x41,0x97,0x11,0x5a, +0xe2,0xa8,0x6c,0xae,0x85,0x65,0x26,0x88,0xd9,0xa8,0x22,0x86, +0xe1,0xac,0xaf,0x81,0x60,0x10,0xff,0x0f,0xb4,0xb1,0x86,0x99, +0xad,0x1f,0x20,0x3d,0x2c,0x76,0x54,0xd6,0xd7,0xb2,0x5e,0xec, +0x40,0xd9,0xa3,0x44,0x69,0xc1,0x25,0xbd,0xd6,0xc1,0x0b,0x98, +0xab,0xf4,0xf7,0x01,0x5c,0xbb,0x98,0xd5,0x71,0xb4,0x64,0xd7, +0x57,0x60,0x7b,0x9f,0x51,0xde,0x87,0xdd,0xd7,0x56,0x94,0xf7, +0x66,0x37,0x99,0x7e,0x4e,0x86,0x0f,0x30,0xb8,0x3c,0x8b,0xde, +0x12,0x91,0xcc,0x46,0x8a,0xb8,0xf8,0x75,0xc9,0xba,0x9d,0xa4, +0xc1,0x81,0xbd,0x9d,0xf5,0x74,0xee,0x6d,0x79,0xf1,0x08,0x3a, +0xcd,0x1e,0x46,0x8f,0x64,0xa6,0x6f,0x8f,0x7e,0x03,0x69,0x7f, +0x3a,0x45,0x4f,0x27,0xfd,0x40,0xbf,0x7a,0xde,0xdf,0x40,0xe4, +0x59,0x0d,0x99,0xec,0xc9,0xf1,0x63,0x0f,0x4e,0x96,0x12,0x28, +0x8e,0x87,0x60,0xa2,0x4e,0xc6,0x6b,0x19,0xb7,0xd1,0x71,0xeb, +0x99,0xfd,0x78,0x8d,0x50,0x0b,0xfb,0xc1,0x94,0x5d,0x75,0xfd, +0x60,0x66,0xd6,0x7f,0x51,0xff,0x3d,0x88,0x68,0xe3,0x8e,0xa7, +0xbe,0x1e,0xcc,0xc6,0x9d,0xdc,0x94,0x6f,0x35,0x9e,0x8e,0xf4, +0x80,0x91,0x74,0x82,0xba,0x9e,0xcd,0x64,0x7f,0x3a,0xc2,0x03, +0x46,0xd0,0x49,0x6a,0xfb,0x72,0xaf,0x96,0x89,0x41,0x41,0x1b, +0x82,0xac,0xd8,0x70,0x72,0xf3,0x76,0x12,0xae,0xea,0x2d,0xf7, +0x6c,0x82,0xbc,0x9b,0xa0,0x86,0x29,0x6c,0x44,0x68,0x6c,0x49, +0xe7,0x79,0x31,0x9b,0x68,0x78,0xad,0x9a,0xe6,0x14,0x80,0xdc, +0x14,0x6f,0xe8,0x22,0x4f,0x58,0x44,0x03,0x54,0x28,0x7c,0x83, +0x24,0x34,0x17,0xf6,0x5e,0xc0,0x05,0x85,0x2c,0x36,0xd8,0xd8, +0x3e,0x13,0x54,0x62,0x36,0x12,0x69,0x19,0x15,0x93,0x80,0x34, +0x6d,0xe9,0xe7,0xae,0xe9,0x8f,0x3a,0x2f,0xe6,0xfb,0x90,0xc8, +0xcc,0x35,0x49,0x52,0x8b,0x7f,0x58,0xef,0x8c,0xec,0x02,0xbd, +0xa9,0x3a,0x67,0x6e,0x5a,0x7e,0xa5,0x56,0x65,0xd3,0x62,0x3a, +0x91,0x37,0x76,0xe7,0x24,0xdb,0x75,0x02,0x49,0x3e,0x72,0x6c, +0xcb,0x89,0x8d,0x67,0x2d,0xe1,0x48,0x45,0x23,0xef,0x09,0x47, +0xb8,0x28,0x02,0x17,0x47,0xf2,0x52,0xab,0xeb,0x42,0xc1,0x4f, +0xe5,0x97,0x78,0xb2,0x51,0x77,0x20,0x27,0x33,0xff,0xa6,0xbe, +0x74,0x88,0x1f,0x4f,0xf5,0x63,0x87,0xd0,0xaf,0xd8,0x67,0xcf, +0x14,0x98,0x63,0xff,0x09,0x81,0xcb,0xd4,0x88,0xb9,0x97,0x27, +0xa0,0x6d,0x68,0x7a,0xd8,0x7a,0x64,0xa1,0x4b,0x7f,0xb0,0x25, +0x1e,0x09,0x24,0x9a,0xa8,0xb1,0xfc,0x74,0x44,0xa5,0x4d,0x8f, +0x85,0xae,0xf4,0x73,0x8b,0xab,0xb9,0xb4,0x13,0x90,0x08,0x92, +0x91,0x77,0x43,0xa5,0xcc,0x6c,0xbf,0xd4,0xdd,0x6d,0x80,0xc1, +0x99,0xfd,0x8a,0x4c,0x8d,0xdd,0x15,0x72,0xf4,0xc7,0x09,0x1d, +0xae,0x55,0xaf,0x1f,0x3e,0x24,0xee,0x04,0x75,0xd4,0xd1,0xae, +0xde,0xe4,0xf4,0xca,0xe3,0x5e,0x58,0xf8,0xcb,0xb5,0xa8,0x71, +0xdc,0x18,0x70,0xe5,0x61,0x0a,0xf9,0x4f,0x20,0x40,0x90,0x16, +0x08,0x40,0x0a,0x6e,0x5c,0x56,0x63,0xef,0xa6,0x8e,0x33,0x44, +0xf1,0x63,0x31,0xf6,0x8e,0x9d,0xf3,0x67,0xc1,0x9f,0xf6,0x22, +0x38,0xe1,0x69,0x8f,0x73,0x9f,0x64,0x93,0xa0,0xec,0xa8,0xe6, +0x68,0x6a,0x86,0x78,0x57,0x8e,0x75,0x23,0x4e,0x82,0x92,0x59, +0xc5,0xd1,0x0d,0x99,0x4c,0x0c,0xff,0x20,0x6e,0xca,0x14,0xef, +0xc8,0xe1,0xc3,0x31,0x33,0x28,0xa7,0x8a,0x53,0xbe,0x02,0x9d, +0xe8,0x0f,0x43,0xc8,0xaf,0x1c,0x6c,0x6f,0x68,0xa1,0xab,0x51, +0xa6,0x62,0x6d,0x96,0x76,0x90,0xc7,0x93,0x77,0xcf,0xa0,0xdb, +0x03,0x18,0x61,0x95,0xcf,0x81,0x2b,0x74,0xff,0xda,0x0e,0x8b, +0xeb,0xd5,0xc3,0x4b,0xf1,0x26,0xb5,0xe4,0x77,0x3f,0xd8,0xf2, +0xf8,0x77,0xfd,0x1d,0x7a,0x91,0x40,0x33,0x8e,0x19,0x61,0xe6, +0x99,0x58,0xec,0xb5,0x5c,0x17,0xda,0x85,0x7e,0x46,0xa0,0x2d, +0x6c,0x29,0xa7,0x3f,0x28,0x3e,0x92,0xb9,0x2f,0xb3,0x9b,0xdb, +0x76,0xfd,0x9e,0xb2,0x81,0x3e,0x81,0xed,0xea,0xa9,0xbd,0x45, +0xde,0x15,0x6a,0xc5,0x9e,0x47,0xf6,0x2b,0x46,0x60,0xd5,0x7a, +0x2b,0x99,0xa9,0x5e,0x2b,0xaa,0xaf,0x1f,0x08,0x5f,0x10,0x71, +0x28,0x8d,0x66,0xa6,0xed,0xa5,0x4a,0x85,0xd9,0xf2,0x4c,0x18, +0x89,0x2b,0xbb,0x15,0xca,0x76,0x1c,0xae,0xbb,0x38,0x52,0x07, +0x24,0x49,0x43,0xea,0x26,0x47,0xea,0xa3,0x32,0xba,0x99,0x9a, +0xbe,0x1a,0x4a,0x5d,0x4c,0xd5,0x7d,0x45,0xcc,0x14,0x4f,0x66, +0xc2,0x61,0xe4,0x72,0x90,0x7b,0x95,0x31,0xff,0x80,0x26,0xb4, +0x90,0x7b,0x95,0xaa,0xe9,0x3d,0xf6,0x10,0x52,0xcf,0xc1,0x01, +0x1a,0x22,0x76,0x87,0x90,0x17,0x9c,0x59,0x92,0xc5,0x07,0xff, +0xb0,0xb9,0xc5,0xa9,0xeb,0x3a,0xb3,0x83,0xea,0x72,0x79,0xe7, +0xb8,0xcc,0x88,0xcd,0x11,0x31,0x96,0x91,0x31,0x84,0x5b,0xdb, +0x69,0xd2,0x58,0xda,0xda,0x9a,0xf9,0x0b,0x44,0x8c,0x64,0xe3, +0xe5,0x7c,0x98,0x43,0xcf,0xf8,0x61,0x9c,0x9c,0xc6,0xac,0x71, +0x9a,0x8d,0x60,0x31,0x92,0xb9,0xbf,0x40,0xf4,0x48,0x2e,0x5f, +0xe3,0xc3,0xee,0x48,0x22,0xe9,0xe7,0xc1,0xbc,0xe3,0xea,0x7b, +0xb2,0x39,0x35,0xc3,0xe8,0xdf,0x27,0x6a,0xf4,0x6f,0xab,0x61, +0xcc,0xf3,0x1d,0x4b,0xdb,0x7a,0x43,0x5b,0x4e,0xe9,0x4b,0x66, +0xcd,0x37,0xd0,0x76,0xd6,0xba,0xd1,0x70,0x90,0x27,0x11,0x58, +0x43,0xf3,0x64,0xc6,0xe9,0x4b,0xcc,0x6e,0x48,0x12,0x0f,0xc0, +0x02,0x24,0xd0,0x5b,0xaa,0x23,0xa9,0x39,0xd2,0x67,0xcd,0x84, +0xf9,0xec,0xb1,0x3c,0xa9,0x3d,0x96,0xba,0x03,0x67,0xb7,0x5c, +0xc8,0xd5,0x83,0x5f,0x85,0x32,0xd9,0x13,0xfc,0xd8,0x47,0x71, +0xd0,0x52,0xb2,0x8d,0x14,0x48,0x63,0x91,0x40,0xdf,0x86,0xa5, +0x7b,0xc0,0xbd,0x83,0x33,0xdc,0x30,0x83,0x25,0x22,0x31,0x3c, +0x3a,0x2a,0xc6,0x62,0x9d,0x36,0x09,0x6a,0x5a,0x8a,0x37,0x05, +0xf4,0xa5,0x7a,0xe8,0x1e,0xb3,0xb1,0xb9,0xf7,0x3b,0xc0,0x49, +0x23,0x3b,0xd3,0x1e,0x11,0x13,0x07,0x45,0x8f,0x08,0x1f,0x77, +0x2f,0xca,0x62,0x5b,0xc5,0xd6,0x07,0x3f,0xe9,0x8b,0x58,0x9f, +0xdf,0xa1,0x13,0xd4,0x97,0x2a,0x7d,0xe9,0x4e,0xf9,0x6b,0x8e, +0xee,0x60,0xc8,0x9f,0x4c,0xb3,0xbc,0x2a,0x55,0xfa,0xd3,0x9d, +0x17,0x05,0x55,0xec,0x0b,0xaf,0xca,0x99,0x78,0x4a,0x15,0x5b, +0xfe,0x0d,0x2d,0x39,0xc8,0x69,0x6f,0xda,0x63,0xc8,0x27,0xb4, +0x0b,0x7c,0x32,0x42,0x69,0x06,0xa7,0xe5,0x66,0xbc,0x72,0x8e, +0x88,0x67,0xc7,0x81,0x74,0xe9,0xc9,0xa9,0x82,0x2c,0xcb,0x24, +0x6e,0x67,0xda,0xde,0x44,0x5c,0x08,0x59,0x2f,0xe0,0xa2,0x06, +0x11,0x57,0x6d,0x8e,0x59,0x1f,0x16,0x19,0x1a,0x69,0x91,0x90, +0x74,0xf8,0x48,0xc6,0xd1,0x64,0x86,0x6c,0x8a,0x59,0xb7,0x3a, +0x72,0x4d,0xb4,0x05,0x73,0x23,0xf7,0xa6,0xef,0x4f,0x66,0x8f, +0x7c,0x90,0xb0,0xe3,0x44,0xda,0xa9,0x24,0x62,0x71,0x35,0x9f, +0x32,0xfd,0x1a,0x2e,0x99,0x0f,0x67,0xf7,0xbf,0x88,0x9e,0xf0, +0x84,0x19,0x7c,0x52,0xd7,0x45,0xdf,0xcc,0x72,0x6c,0x29,0xb7, +0x27,0xfa,0x1a,0xe5,0x9b,0xd1,0xf0,0x7b,0x04,0xbf,0x24,0x71, +0x69,0xe2,0x32,0x83,0xd2,0x8a,0x18,0xf2,0x26,0x33,0x93,0x37, +0xef,0x60,0xa1,0xe5,0x46,0xb5,0xc0,0x41,0x4b,0xd2,0xf0,0x99, +0x1c,0x28,0xde,0x8b,0xd2,0x6d,0xbf,0xbb,0xfd,0xd1,0x0b,0xfd, +0x15,0xe5,0x19,0xe9,0x89,0x74,0x6b,0xf9,0xd7,0x2e,0x9c,0xb8, +0x60,0x99,0x9a,0x92,0x9e,0x98,0x1e,0x47,0x60,0x12,0x8c,0xbf, +0x43,0xc7,0xc3,0xa4,0xa1,0x74,0x12,0x1d,0x3f,0x1c,0xc6,0x13, +0x98,0x5e,0x44,0xa7,0xc3,0xc7,0x10,0x5c,0x42,0xcf,0x2a,0x5f, +0xc2,0xf5,0x12,0xc2,0xd4,0x88,0xda,0x67,0xf6,0x50,0x3a,0x5b, +0xeb,0xd3,0xd0,0x43,0xee,0x23,0xbe,0xa3,0x9f,0xdc,0x94,0x17, +0x8f,0xa2,0x82,0xdd,0x1f,0xee,0x64,0xa4,0x6b,0xe2,0x08,0xab, +0x94,0xd1,0xe8,0x0f,0x8d,0x60,0x6e,0x4a,0x1b,0x23,0xf3,0x1e, +0x3d,0x87,0x43,0x5f,0x4f,0xc9,0xfc,0x81,0x00,0x4b,0xd9,0x10, +0x2f,0xd9,0xa4,0x0b,0x64,0x34,0xb5,0xe9,0x6d,0xc8,0x0f,0xd0, +0x41,0xf7,0x37,0xa5,0xb7,0xe0,0x33,0x7d,0x12,0x19,0x1f,0xcf, +0xbe,0x0e,0x9f,0x13,0x77,0x6a,0xd1,0xae,0xc9,0x37,0xb2,0x2c, +0x16,0xdd,0x20,0xf2,0x3c,0xf9,0x9e,0xe8,0x0d,0xf1,0x74,0x0a, +0x1b,0x9d,0x87,0xd2,0x71,0x3c,0xd1,0x26,0xaf,0xec,0x0c,0xd7, +0x67,0x3e,0xf9,0xf6,0x6a,0xc9,0xde,0x07,0x96,0x0c,0xa1,0xcd, +0x9f,0x78,0x30,0xc7,0xe4,0x13,0xf4,0x4f,0xfb,0xc1,0x06,0xc2, +0x94,0x31,0x22,0xdd,0x19,0xd2,0xcd,0x43,0x19,0x8c,0xc8,0xe7, +0xb4,0xf9,0x63,0x0f,0xda,0x03,0xa7,0xd0,0x3c,0x94,0x21,0x88, +0xb4,0xa3,0xcd,0x7f,0xf4,0xa0,0xbd,0x19,0xd2,0xd3,0x43,0x71, +0x61,0x88,0x64,0xeb,0xcc,0x7c,0x07,0xf6,0x85,0x26,0xe1,0xc8, +0x5d,0x5d,0x27,0x57,0xf3,0xca,0x5a,0xa5,0x5a,0xac,0x61,0x4a, +0x41,0x29,0xa9,0x93,0x4b,0x50,0x2c,0x62,0x62,0xc3,0x34,0x98, +0x29,0xd6,0xca,0xa5,0x8e,0xca,0x7c,0x1a,0x3c,0x09,0x82,0x99, +0x3d,0x38,0x0d,0x0f,0x49,0xa0,0xc1,0xfe,0x10,0x3c,0xa9,0x56, +0x7e,0xc1,0x9b,0x90,0xf9,0x74,0x91,0x1f,0x2c,0x1a,0x5b,0x2b, +0x7f,0xdb,0x84,0x84,0xd0,0x45,0xa3,0x61,0x91,0x5f,0xad,0xfc, +0xac,0x09,0xd9,0x4f,0x83,0x99,0xfa,0x9a,0x5c,0xdb,0xa0,0x6b, +0x42,0x02,0xe9,0xa2,0xb1,0xb0,0x68,0x42,0xad,0x9a,0x98,0xa9, +0x22,0x19,0x4d,0x67,0x96,0x9b,0x90,0x6d,0xea,0x51,0x53,0x6a, +0x65,0xda,0x84,0x04,0xa8,0x47,0xcd,0xa8,0x95,0xf3,0xb0,0x98, +0x73,0x2c,0xbe,0x10,0x7b,0xae,0xa6,0xe7,0xde,0xd0,0x9f,0x75, +0x9b,0xcb,0x93,0x78,0x7e,0x7a,0xe8,0xaa,0x05,0xb3,0xf5,0xde, +0xe5,0x13,0x7e,0x7f,0x57,0x9e,0x5b,0x76,0x96,0x24,0xf0,0xd3, +0x57,0x21,0xe2,0xa9,0x21,0x15,0x67,0x49,0x53,0x31,0xce,0xac, +0x7d,0x67,0xb4,0x62,0x9c,0xea,0x5a,0xf5,0x85,0xf4,0xec,0x62, +0xfd,0xf1,0x11,0x8b,0x79,0xfa,0x51,0x90,0x9f,0x69,0xf5,0xfa, +0x5a,0xb9,0x3e,0x0b,0x57,0xaf,0x49,0xa0,0x17,0x26,0x06,0xa7, +0x88,0xc3,0xba,0x2a,0xdf,0xbc,0x72,0xa4,0x15,0x48,0xb6,0x67, +0x62,0xb3,0x58,0x07,0xd1,0x8e,0x34,0xbf,0x31,0x4f,0x20,0x0d, +0xa1,0x72,0x96,0x08,0xab,0x1d,0x95,0x33,0xb5,0xb0,0x1e,0xda, +0x63,0x22,0x6a,0x98,0x9c,0x20,0xc2,0x81,0xa1,0x8d,0xbd,0xeb, +0xe0,0x27,0x30,0x6a,0xc8,0x7a,0x11,0xf6,0x0e,0x55,0xde,0xd7, +0xc1,0xb9,0x26,0xe4,0x8c,0x08,0xa1,0x43,0x95,0xed,0x75,0xb0, +0xa2,0x09,0x39,0x27,0x42,0xc8,0x50,0x25,0xac,0x0e,0xfc,0xc1, +0x58,0xa9,0x22,0x3b,0x45,0x48,0x1e,0xaa,0x3c,0xad,0x83,0x53, +0x6a,0x1f,0xc9,0xfc,0x8d,0xa0,0x84,0xd4,0xc1,0x34,0x4d,0xb2, +0x6b,0x2d,0xa8,0x8b,0xc5,0xcc,0x0f,0x58,0x24,0xc2,0x55,0xc7, +0xc6,0xa1,0xb5,0xf0,0x1d,0xfa,0x01,0x88,0x6c,0x16,0x61,0x9b, +0x63,0x63,0x9b,0x5a,0xb8,0x09,0x16,0x95,0x2a,0xb2,0x4b,0x84, +0x24,0x47,0xa5,0xb4,0x16,0x36,0xaa,0x7d,0x7a,0x09,0x8d,0x1f, +0x55,0x37,0x7c,0x84,0x94,0x56,0x3b,0x44,0x7f,0x64,0xb8,0x7a, +0x56,0xcd,0x7e,0x38,0x26,0x46,0x8a,0xe3,0xc8,0x36,0xee,0xd8, +0xde,0x5d,0x67,0xcf,0xae,0xdc,0x1d,0x6c,0x0c,0xe7,0x82,0x57, +0xae,0x9a,0x4d,0x1a,0xe2,0x4c,0xde,0xc6,0x0f,0xb5,0x70,0x1c, +0xf4,0xf8,0x29,0x71,0xf2,0x5d,0x11,0x26,0x38,0x2a,0xfe,0xb5, +0x30,0xa6,0x09,0xb9,0x28,0xc2,0x72,0x47,0x65,0x5b,0x2d,0x84, +0x36,0x21,0x79,0x6c,0x9c,0x75,0x54,0xc2,0x6b,0x21,0xb0,0x09, +0x29,0x16,0xff,0x35,0xdb,0x34,0x04,0x7d,0x16,0xc7,0xc6,0x4e, +0xb5,0xcc,0x67,0x31,0x21,0x97,0x45,0x34,0xda,0x36,0xd4,0xc2, +0xc2,0x26,0x24,0x5f,0x84,0x79,0x8e,0x4a,0xac,0x6a,0x8d,0x21, +0xb2,0x9e,0x59,0x68,0xff,0x5a,0x71,0xff,0x45,0x34,0x23,0x8e, +0x21,0x07,0xa7,0x5a,0x0d,0x0e,0x18,0xdd,0xc1,0x3a,0x7b,0xcc, +0xf7,0x97,0x4f,0x1e,0x38,0x96,0x69,0x24,0xc7,0xf8,0xef,0x2b, +0xf2,0x7e,0xfe,0xb9,0xdc,0x7f,0xb0,0x21,0x98,0xff,0xda,0x6b, +0xbc,0x03,0x39,0xc5,0xff,0x50,0x51,0xc8,0x90,0xb1,0x03,0x0d, +0x73,0xf9,0x81,0x5e,0x63,0x1d,0x48,0x56,0xda,0xe9,0x2b,0xfa, +0x63,0xae,0x4b,0xf9,0x6f,0x82,0x27,0x75,0x75,0x33,0x74,0xf8, +0x91,0xd0,0xf1,0xd6,0x30,0xd0,0x43,0x32,0x1f,0x8a,0xe4,0x08, +0xf0,0xf0,0x86,0xd2,0x59,0x11,0xff,0xc0,0x22,0xb6,0x1d,0xb6, +0x62,0x11,0xdb,0xcb,0xb9,0x27,0xce,0xec,0x3d,0xbf,0x11,0xcb, +0xb7,0xae,0x7b,0x4d,0x3f,0xb1,0xb8,0x48,0xe8,0x6c,0xd9,0xb3, +0x58,0x69,0xf1,0x0a,0xea,0x61,0x96,0xd2,0x7f,0x34,0x33,0x15, +0xed,0x04,0x25,0xad,0x8e,0xa3,0x0f,0xe4,0x58,0x91,0x1e,0x26, +0x74,0x9e,0xa4,0xeb,0x2e,0xe4,0x9c,0x39,0x9a,0x6f,0xdc,0xc6, +0xe5,0x13,0x3a,0xdf,0x06,0x5c,0x24,0xf3,0x12,0x81,0xbd,0xcf, +0xc9,0x4c,0xc2,0xc6,0xdc,0xa6,0xc6,0x32,0xc9,0xc6,0x43,0xc0, +0xbf,0xcc,0x13,0xbd,0x2b,0x67,0x62,0xfa,0x96,0x05,0x10,0x35, +0xa7,0x8a,0x36,0x12,0x1a,0xca,0x4f,0x5f,0x17,0xb0,0x7e,0x6a, +0x62,0x4b,0x88,0x74,0xa1,0xd1,0x7c,0x22,0xa9,0xa1,0xf5,0x90, +0x00,0xb5,0x35,0xb4,0x16,0x22,0xa0,0xbe,0x46,0x19,0x42,0x1a, +0x72,0xd9,0x3b,0xe4,0xac,0xcc,0xbf,0xc7,0x29,0xd6,0x20,0x88, +0x60,0x40,0x4b,0x62,0x31,0xb3,0x24,0x5e,0xc3,0x79,0xd1,0xef, +0x05,0x91,0xeb,0xb1,0xbc,0x53,0x91,0xc7,0xfb,0xd3,0x02,0xfd, +0x56,0x3c,0x47,0xe4,0xb7,0x0d,0x1b,0x44,0x7a,0xd7,0x1d,0xd8, +0x27,0xd4,0xd1,0x6f,0x44,0x57,0xf6,0xac,0x39,0x08,0xb4,0xab, +0xe8,0x41,0xe8,0x13,0x6f,0xd8,0xe1,0xc9,0x47,0x26,0x46,0x62, +0x6d,0xa2,0xec,0x35,0x69,0x04,0xc3,0xcc,0xcb,0xff,0xd5,0x4a, +0x66,0xe2,0xa5,0x4b,0x53,0x65,0xbb,0xb1,0x8a,0x25,0x17,0xb8, +0x2b,0xf4,0xac,0xc1,0x4c,0x25,0x4c,0xda,0xa9,0x11,0x26,0x9d, +0x2b,0xd6,0x99,0x59,0xec,0x48,0x97,0xcc,0x47,0x08,0xa7,0x8b, +0x74,0x66,0x92,0x4e,0x38,0x0d,0x07,0x44,0xa9,0xa5,0xc7,0x6d, +0x09,0x2e,0x70,0x66,0xca,0xbe,0x3f,0x60,0xb8,0xc8,0x7e,0xcd, +0x4f,0x69,0x30,0x98,0xe9,0xcc,0x74,0xbb,0x72,0xd2,0x99,0x51, +0x98,0xf1,0xa4,0x98,0x06,0x8f,0xae,0x8c,0xe3,0x89,0x6e,0xfb, +0xd5,0xb4,0x9c,0x0a,0xfd,0x6d,0x57,0x77,0x9e,0x7e,0xb1,0x60, +0x64,0x1f,0xc2,0xd5,0x57,0x69,0x71,0xd4,0xba,0x88,0xf1,0x6a, +0xf4,0x34,0xf4,0xc2,0x7c,0x88,0x81,0x98,0x26,0x31,0x70,0x68, +0x2c,0x81,0x01,0x65,0xf4,0x36,0x38,0x41,0x69,0x99,0xd2,0x9a, +0x5e,0x85,0x6e,0x4c,0xe7,0x1f,0xc9,0xa5,0x47,0x38,0x98,0x42, +0x83,0xc4,0xd0,0x8d,0xb1,0xeb,0x34,0x26,0xc2,0xf0,0xa8,0xa8, +0x68,0x8b,0x75,0xea,0x78,0x40,0xc4,0xc2,0x49,0x3f,0xe5,0x97, +0x5e,0x3c,0x73,0xc9,0x32,0x7d,0x33,0xf3,0xe2,0xe2,0x89,0x18, +0x57,0xa6,0x5b,0xc1,0x6c,0x38,0xef,0x68,0xea,0x8c,0x6c,0x20, +0x4c,0x1b,0xda,0x83,0x6e,0x24,0xbb,0x79,0x67,0xe0,0xf5,0x48, +0x4e,0x59,0x81,0x4a,0xf8,0x37,0x54,0xc2,0xcc,0x09,0xeb,0xdd, +0x59,0x5d,0xb6,0x19,0xfb,0x73,0x5f,0x87,0x71,0x3f,0xd3,0x4e, +0xb7,0xe4,0xb9,0x23,0x69,0x5b,0x64,0x59,0xf9,0x1b,0x86,0xc3, +0x6b,0xd4,0xb0,0x85,0xf2,0x50,0xee,0x1d,0x11,0x3b,0x41,0x37, +0x35,0x1a,0xb2,0x9b,0xb6,0x47,0xc4,0xce,0xd0,0x43,0xad,0xf6, +0xdc,0x43,0xdb,0x23,0xe2,0xaf,0x2e,0xbd,0xa9,0x2f,0xfe,0x59, +0xeb,0xd5,0x50,0x5c,0xce,0xab,0x41,0x08,0xeb,0xe0,0x9d,0x72, +0x15,0x13,0x9b,0x89,0xf8,0xd2,0xb9,0x1b,0x1d,0x85,0x7f,0xd6, +0xab,0x05,0xfa,0x88,0xf8,0xce,0xc9,0x8e,0x7a,0xe3,0x1f,0x6d, +0x91,0x66,0xd7,0xf5,0xcb,0x02,0xfb,0xed,0x0a,0x1b,0xb9,0xb1, +0x44,0xfc,0xd3,0xd9,0x9a,0xc6,0xe0,0x9f,0x60,0xd6,0xc6,0xd4, +0xb2,0xee,0xd4,0x85,0xcc,0x8b,0x05,0xfa,0xa3,0xdf,0x2c,0xe5, +0xbb,0x8d,0x47,0x1d,0xfb,0xc8,0x53,0x4e,0xe3,0xa7,0x25,0xce, +0x5c,0x37,0xdb,0xa0,0x9c,0x22,0xfa,0x5f,0xf9,0x57,0x75,0x7f, +0x33,0x1b,0xb2,0x5d,0x5d,0xfb,0xae,0x86,0xde,0x3c,0xd1,0x0f, +0x1e,0x3b,0xbe,0xd3,0x20,0xdf,0xac,0x9b,0x13,0x0d,0x9e,0xe3, +0x75,0x43,0x8b,0x88,0xaa,0xdb,0xba,0xbd,0x29,0x41,0xdd,0x06, +0x1e,0x2b,0x44,0xd2,0x95,0xfb,0x37,0x22,0x53,0xac,0x81,0x37, +0x04,0xfc,0x68,0xd7,0x7b,0xd0,0x95,0xb9,0xd9,0xea,0xc6,0x8f, +0x74,0xe7,0xa9,0xc7,0x18,0x3b,0xfa,0x15,0xf5,0x31,0x94,0x4c, +0x7c,0x06,0x1f,0x91,0x01,0x38,0xd3,0x3b,0x50,0x69,0x01,0x27, +0xe4,0x16,0xb4,0xcd,0x8f,0xcc,0x4b,0x9e,0x5e,0x48,0xa7,0xff, +0x09,0xc1,0x45,0xf4,0xb4,0xf2,0x09,0x14,0x14,0x91,0xa1,0x92, +0xed,0x50,0x81,0xc3,0xcd,0x20,0xb6,0x19,0x66,0xb0,0x7e,0xfa, +0x61,0x0a,0x08,0xe7,0x5a,0xf1,0x79,0xa7,0x7d,0xb1,0x68,0x5d, +0xba,0x17,0xa4,0x73,0x67,0x88,0x2b,0x4f,0xa5,0xc0,0xe1,0x1d, +0xb1,0x9e,0x97,0x6a,0x23,0x20,0x60,0x0c,0x1c,0xd1,0x91,0x7e, +0x8a,0x93,0x68,0x38,0x4f,0xe6,0xca,0xd4,0x27,0xe7,0x0b,0xc8, +0xd7,0xcc,0xf9,0x00,0xc7,0x11,0x37,0x54,0xe7,0x5e,0xff,0x21, +0xb9,0x74,0xb7,0xa3,0x1f,0x1b,0x72,0xa6,0x16,0x55,0x9c,0xc9, +0x39,0x9c,0x6b,0xb9,0x29,0x85,0xf8,0xaa,0x61,0xb6,0x7d,0xb5, +0x8a,0x6a,0x0f,0x2b,0x7e,0x62,0xba,0xdd,0x67,0xa4,0xe5,0x79, +0x3f,0x1d,0x64,0xfd,0xfe,0xfa,0x17,0xe8,0xa5,0x27,0x63,0x7c, +0xa8,0x03,0xfd,0x28,0x7f,0x8a,0xc5,0x0f,0x65,0x25,0x57,0xcf, +0x5e,0x6d,0x49,0x26,0x6f,0x98,0xa2,0x86,0x5b,0xcc,0x83,0x15, +0x99,0x7b,0x71,0x7e,0x52,0x0e,0x44,0x97,0x6e,0xfb,0x58,0xe6, +0x2c,0xc3,0xfd,0x02,0x71,0x28,0x99,0xb6,0x6a,0xd5,0xfc,0x59, +0x4c,0x3d,0x8d,0x67,0xea,0x29,0xbf,0xe2,0xdc,0x2a,0x13,0xe0, +0xa1,0x01,0x95,0x0c,0x98,0xbe,0x41,0xb2,0xfd,0x5a,0x20,0xf3, +0x5c,0x6f,0xad,0xb6,0xc8,0x3c,0x90,0x71,0x28,0xfd,0x50,0x4b, +0x3a,0x84,0x16,0x11,0x48,0x85,0x19,0xec,0x5f,0x2a,0xa4,0x52, +0xb6,0xa5,0xa9,0x04,0xd2,0xca,0xff,0x33,0xbf,0xc4,0x74,0xfd, +0x62,0xde,0x76,0xce,0x38,0xc9,0xbc,0x56,0x28,0xbc,0xc8,0x46, +0x22,0x83,0xb8,0x86,0xf3,0x9f,0x7b,0xf0,0x62,0xf6,0xa9,0x83, +0x79,0x46,0xe6,0xab,0x2b,0xcd,0xea,0xe1,0xc7,0xeb,0xf4,0xc9, +0x0b,0x78,0x53,0xcc,0x1e,0xc7,0x7f,0x48,0x58,0xa4,0xe5,0x92, +0x55,0xf1,0xc9,0xba,0xd3,0x17,0xb7,0x5f,0x2d,0xd3,0x1f,0x19, +0x42,0xd6,0x24,0xbe,0xaf,0x16,0x98,0x5f,0x95,0x8b,0x7e,0x15, +0x91,0xe3,0xa1,0x48,0x34,0xa9,0x6c,0x47,0x25,0x90,0x47,0xa0, +0x40,0x64,0x9a,0xdf,0xab,0x56,0x7e,0xe4,0x88,0x2c,0x46,0x0c, +0xf8,0x59,0x1c,0xa7,0xaa,0xe7,0x83,0x8e,0x8a,0x1b,0x86,0x5b, +0xfd,0x2c,0x9c,0x4f,0xbf,0x48,0x22,0x36,0x86,0x47,0xd1,0xc7, +0xc2,0x9e,0x6b,0x19,0x79,0x95,0x7a,0x82,0xf5,0x84,0x9b,0x4e, +0x5c,0x80,0x12,0x56,0x30,0x5f,0x1d,0x9e,0xd0,0x04,0x84,0x45, +0x99,0xec,0xc5,0xa4,0xd3,0x96,0xb0,0xad,0x94,0x44,0xa4,0x61, +0x12,0x82,0xa5,0xea,0x1d,0xee,0x3d,0x9e,0x76,0x82,0xc8,0x6b, +0x21,0x5f,0x64,0x26,0xc9,0xb4,0x5a,0xb9,0xc4,0x51,0x99,0xc7, +0x23,0x30,0x41,0x1c,0x03,0xc1,0xfd,0x6b,0x1b,0xa6,0x38,0x2a, +0x77,0x55,0x20,0x81,0xf9,0xcb,0x0b,0x06,0xd4,0x35,0x74,0x1b, +0xaa,0x1c,0x50,0x81,0xed,0xa2,0x66,0x4b,0xbc,0x73,0x54,0x36, +0xa9,0x40,0xae,0x38,0x11,0x82,0x67,0xaa,0xe7,0x58,0xc0,0x13, +0x13,0x1b,0x78,0x64,0xcc,0xda,0x4d,0xba,0xdd,0xcc,0x7a,0x67, +0x4e,0xd9,0x25,0xe1,0x3c,0xc1,0x6b,0x53,0x13,0xd0,0xf6,0x5f, +0x4f,0x29,0xa8,0xd1,0x9f,0x21,0x89,0x29,0xf1,0x6a,0x0d,0xa9, +0xab,0xd7,0xa8,0x11,0xcc,0xc3,0xb7,0x90,0x0d,0xd1,0x71,0x91, +0x98,0x20,0xb1,0xfd,0x78,0xfa,0xc9,0xa4,0x33,0x96,0x77,0x89, +0x1a,0x41,0xc6,0x9e,0xac,0x2f,0x2c,0x72,0xaf,0xb6,0x87,0x56, +0xd1,0xec,0x36,0xcc,0x16,0x12,0xc3,0x88,0xd4,0xaa,0x40,0x88, +0x52,0x89,0x13,0x75,0x64,0x4b,0x3c,0x78,0x76,0x45,0x6a,0x53, +0xb7,0x9f,0xc2,0xd2,0xc2,0x37,0xac,0x21,0x07,0xb7,0x1c,0x4a, +0x3e,0x6e,0x09,0x47,0x4b,0x1b,0xd9,0xe3,0x78,0x8c,0x8b,0x20, +0xd4,0x93,0x0e,0xcb,0x19,0x07,0x2e,0x30,0x50,0x97,0xaa,0x94, +0xd2,0xf1,0x04,0x83,0x1a,0x37,0xa7,0xe1,0xc7,0x4b,0xb4,0x33, +0x2e,0xe7,0x1c,0xcd,0x51,0xa3,0x1c,0x37,0xe3,0xfa,0x8e,0x3d, +0x02,0x27,0x2d,0x33,0x52,0x32,0x37,0x64,0x24,0x80,0x43,0x77, +0x8b,0x82,0x6c,0xda,0x83,0x9c,0x31,0x42,0xe5,0x3a,0x31,0xa6, +0x44,0x0d,0x27,0xfb,0x1a,0x83,0xcb,0x84,0xf6,0x02,0x2c,0x54, +0xca,0xbd,0xe4,0x88,0xae,0x4a,0x28,0xfb,0x8a,0xaf,0xd8,0xeb, +0xf4,0xb8,0xc1,0x6b,0x00,0x2d,0xa7,0x7f,0x41,0xf9,0x80,0x46, +0xaf,0xc7,0x70,0x97,0xb0,0xff,0x50,0x54,0x43,0x8b,0x98,0xda, +0xf8,0xb1,0x46,0xe9,0x8b,0xc9,0x52,0x0d,0x69,0x4c,0x2f,0x78, +0xa3,0x5e,0x28,0x10,0x49,0xbd,0xbe,0x92,0x8e,0xf6,0x91,0x3e, +0x6b,0x2d,0xd8,0x87,0x13,0xca,0x1e,0x3f,0xf6,0x2f,0x95,0xb2, +0xc7,0x91,0x3d,0x88,0xa9,0xe4,0x2d,0x75,0xf1,0x85,0x66,0xfe, +0x3c,0x35,0x0b,0x1c,0x49,0x39,0x5b,0x03,0x51,0x36,0x3d,0x91, +0x17,0x17,0x2a,0x4b,0x9e,0xc8,0x91,0x45,0x4a,0x39,0x7d,0xca, +0xee,0x47,0x82,0xa0,0x60,0xbd,0xd4,0xb5,0x82,0x62,0x46,0x94, +0x94,0x37,0xf2,0xd2,0x52,0x65,0xd9,0x1b,0x7c,0x70,0x6f,0x2a, +0x6d,0x18,0x50,0x2f,0x2f,0x2d,0x51,0x96,0xd5,0x23,0x70,0x43, +0x69,0xc1,0x80,0xdf,0x54,0xe0,0xb5,0x1c,0x53,0xce,0x7a,0x7c, +0xa2,0x01,0xa5,0x2a,0x80,0x87,0xb4,0x66,0xc0,0x5b,0xb5,0xc7, +0x1b,0xad,0x47,0x1b,0x42,0x4b,0xe5,0x01,0x10,0x25,0x96,0x9d, +0xdc,0x77,0xf2,0xb0,0x71,0x5e,0xb6,0x8e,0xe0,0xc0,0x96,0xca, +0x4f,0x4f,0x9c,0xb9,0x7e,0xb6,0x9a,0x85,0x40,0xc4,0xc6,0x62, +0x77,0x99,0xa3,0xdf,0xd5,0xc1,0x77,0x32,0xc7,0xdc,0xc9,0xc6, +0xe2,0x51,0x4c,0xac,0xaa,0x83,0xaa,0xff,0x88,0x4d,0xad,0x7b, +0x03,0x03,0x43,0x57,0x2e,0x34,0x84,0xf3,0x0b,0x77,0xad,0x3c, +0x63,0x30,0x3b,0x94,0x6f,0xdc,0xc9,0xe5,0x9f,0x5e,0x12,0x30, +0x35,0x08,0x8b,0x3d,0x1d,0xc5,0xe2,0x4e,0x85,0xe7,0x16,0x4e, +0x9c,0x38,0x6b,0xe1,0x58,0xa3,0xd9,0xb1,0x02,0xa6,0xae,0x0b, +0xce,0x06,0x4f,0x98,0x38,0x3b,0x78,0x1c,0x13,0x35,0xfa,0x8c, +0xe0,0x09,0x1a,0x7d,0xc6,0x07,0x36,0x0d,0x7f,0x55,0x94,0x1f, +0xa8,0x9a,0x4f,0xb7,0xee,0xb6,0xf4,0xcf,0x2a,0xce,0xac,0x69, +0x55,0x84,0x0d,0x15,0x2a,0xb9,0xe2,0x9a,0x68,0x1a,0x8c,0x05, +0xc1,0x32,0x43,0xd3,0xbc,0xe4,0x8d,0x87,0x74,0x6c,0x77,0x0b, +0xc6,0xb0,0x6f,0x3a,0xcc,0xd4,0x4f,0xf4,0x1b,0x53,0xed,0x22, +0xe6,0x0f,0xbe,0x64,0x36,0xd4,0x2c,0x9a,0xe5,0x43,0x2c,0xae, +0x5c,0xd5,0x29,0x7d,0xef,0x88,0x6b,0x82,0x88,0x25,0xf8,0x5d, +0x57,0xa6,0xf8,0xc1,0x38,0x8e,0xa8,0x25,0x4c,0xbd,0x60,0xdb, +0xfe,0xb9,0xc4,0x90,0x02,0x2e,0xea,0x04,0x85,0x0b,0x19,0x16, +0xd7,0xcf,0x0a,0x76,0xf8,0x8a,0x70,0x9c,0x98,0x66,0xb2,0xba, +0xd0,0xfa,0xff,0xac,0xb7,0x92,0xb1,0x1e,0x74,0x90,0xc6,0x2d, +0x4c,0x96,0xf1,0xb6,0xa3,0x3c,0xe8,0x56,0x3b,0xc3,0x05,0xc2, +0xee,0xc4,0x6a,0x76,0x27,0x42,0xce,0x19,0xd8,0xa8,0x42,0x25, +0x68,0xe3,0xac,0xac,0xbd,0x47,0x22,0x92,0xd6,0x44,0x9b,0xc6, +0x63,0xe6,0xad,0xaa,0x95,0xda,0x92,0xf7,0x90,0xc8,0xad,0x6b, +0x92,0x57,0xab,0x54,0xd8,0xec,0xf9,0xcf,0x17,0xbe,0x26,0xd7, +0x78,0x18,0xfe,0x80,0x29,0xb6,0x67,0x06,0x52,0x04,0xf7,0x75, +0xc3,0xb8,0x31,0xf4,0xbe,0x8e,0x94,0xdd,0xba,0x94,0xcb,0x9e, +0xe7,0xa4,0xe4,0xcd,0x44,0xcb,0x74,0x22,0x34,0x92,0xb6,0x43, +0xcb,0x6f,0x6d,0x2d,0xa1,0x49,0x6c,0x37,0xc2,0x51,0xd9,0x5f, +0x8b,0xc5,0x8f,0xba,0xd0,0x79,0x74,0x30,0x99,0xa4,0x32,0x19, +0x4e,0xe4,0xc9,0xf4,0x2a,0x79,0x37,0x46,0x14,0x93,0x50,0xa9, +0xd5,0xf7,0x02,0x51,0x39,0xb7,0xf7,0xe5,0x64,0x12,0x34,0x34, +0x3e,0xb3,0x38,0xc3,0xc6,0xc9,0xcf,0x2b,0xe8,0xe7,0x98,0x2a, +0xac,0x65,0xea,0x7e,0xce,0xac,0x87,0xf0,0x31,0x6a,0xd9,0x70, +0xe8,0x4a,0x79,0x8b,0x2b,0x39,0xb4,0xe3,0xdf,0xe1,0xe9,0x91, +0x1b,0xc2,0xd9,0x05,0xbe,0xc3,0xa4,0xba,0xfe,0xe0,0x94,0x4e, +0xb8,0x75,0xfd,0x1d,0xd6,0xf7,0x55,0x35,0xc2,0x42,0x08,0xd9, +0xd2,0x24,0x6b,0x41,0xd7,0x28,0x23,0x09,0x57,0xda,0xc3,0xcc, +0xf8,0x62,0x8b,0x05,0x6b,0xe7,0xae,0xc3,0x60,0xbc,0xfe,0x89, +0x03,0xd5,0x72,0x5b,0x4d,0xc1,0x77,0xa6,0x30,0x3b,0x26,0xf7, +0x6f,0x92,0xf1,0xc7,0x65,0xd6,0x7b,0x22,0x73,0x10,0x11,0x1f, +0xd8,0x6f,0x7d,0x7f,0xab,0xa6,0x38,0x6e,0x26,0x0f,0x1a,0xb0, +0x7e,0xa0,0x2a,0x07,0xc1,0x62,0xd6,0xcf,0x56,0xc7,0xce,0x26, +0x5e,0x9b,0x92,0x9f,0x7f,0xfa,0xfc,0xc1,0x8b,0x96,0xcc,0xae, +0xdc,0xb0,0x89,0x88,0x8e,0xd4,0x96,0x66,0x82,0x8d,0x93,0xe2, +0x20,0x77,0xe5,0x1c,0x89,0x46,0xbb,0x92,0xd7,0x44,0xbb,0x42, +0x44,0x7c,0xaa,0x5b,0xd4,0x41,0x0b,0x99,0xbb,0xc1,0xd3,0xb7, +0xcc,0xe2,0x18,0xc4,0x06,0x91,0xde,0xa5,0x34,0x94,0xd9,0x3d, +0x31,0x1c,0x16,0xd7,0xcc,0xd0,0xe8,0x76,0xbf,0xb4,0xa8,0x2e, +0xbc,0x46,0xc4,0x9a,0x46,0x87,0x61,0xdc,0x9b,0x06,0x07,0x6d, +0x87,0x88,0x3f,0xfa,0xe5,0xd3,0xb6,0x06,0xfa,0x31,0x37,0x79, +0x7e,0xda,0xf1,0x13,0x04,0xcb,0xe6,0x58,0x42,0x5e,0x91,0xd2, +0x9c,0xae,0xc7,0xb2,0x39,0x28,0xeb,0x20,0xaf,0x80,0xc9,0x8b, +0x54,0x19,0xda,0x3a,0xd3,0xb6,0xb4,0x87,0xb6,0x99,0xc5,0x5c, +0xfc,0xd4,0xe8,0xc4,0xb0,0x88,0xd5,0x91,0x16,0xf1,0xc9,0x47, +0x8e,0x67,0x10,0x8b,0x9c,0x02,0xe6,0xd6,0x1b,0x22,0x32,0xd7, +0x24,0x85,0x47,0x5a,0x46,0x10,0x2b,0xa4,0x10,0x75,0x55,0x79, +0xd4,0x3e,0x37,0xc6,0x56,0x10,0x75,0x29,0x70,0x98,0x1a,0xc5, +0x6a,0x6e,0xa4,0xf3,0xc8,0x7f,0xd6,0x0d,0x7b,0x19,0xe3,0xca, +0xc8,0x87,0xd5,0xcd,0xd8,0x92,0x69,0x09,0xfe,0x09,0x44,0x76, +0x92,0xe7,0x6a,0xb4,0x23,0x6e,0xb1,0x0e,0x56,0x61,0xc4,0x99, +0x96,0xf2,0xec,0xd3,0x2f,0x88,0x34,0xd3,0x13,0xa9,0x29,0x5c, +0xe8,0x79,0x9e,0x0e,0x84,0xbd,0x22,0x0d,0xf3,0x86,0x30,0x94, +0x93,0x24,0xf3,0xed,0x82,0x27,0xb3,0x0b,0xd8,0xfe,0x2e,0x6c, +0x63,0x63,0x59,0xd8,0x68,0x6c,0x73,0x63,0xb7,0x32,0x00,0xac, +0x87,0x2b,0x9d,0xe0,0x39,0x07,0x46,0xe2,0x66,0xdd,0xde,0xf7, +0x6f,0xda,0x0c,0x4b,0x19,0x7e,0xc4,0xd1,0x0e,0x64,0xb8,0x1d, +0x35,0x43,0x0b,0xa2,0xea,0x6c,0xde,0xa1,0x22,0xcb,0x8d,0x64, +0xd4,0x5e,0xf6,0xf2,0xb8,0x97,0x34,0x8e,0xf3,0x05,0xf7,0x78, +0x7e,0x14,0xf1,0xea,0xf4,0x75,0xad,0x97,0xea,0xef,0x2f,0xc1, +0xc9,0xda,0xad,0x22,0xdd,0x3a,0x16,0xb6,0x72,0xb0,0x39,0x4f, +0x24,0x94,0xa3,0x9f,0x9e,0x5e,0xf4,0x27,0x7c,0xac,0xdb,0x44, +0x9f,0x50,0x33,0xa6,0xd7,0x43,0xe6,0xcd,0xd4,0xbb,0x97,0x8f, +0x63,0x7a,0xbd,0xe0,0xc6,0x79,0x32,0x23,0x74,0x55,0x70,0x90, +0xde,0xab,0x7c,0x32,0x93,0xaf,0x96,0x9f,0x26,0x48,0xcc,0x8c, +0xe9,0xde,0x66,0xa6,0x74,0xef,0x50,0xbe,0x57,0xe0,0x64,0xda, +0xae,0x13,0x33,0x41,0x2a,0x73,0x2f,0x9f,0x25,0xd4,0xa6,0x8b, +0x21,0x77,0x72,0x6d,0x61,0xc1,0xa5,0x53,0x57,0x2c,0x21,0x86, +0xac,0x61,0x37,0x14,0x57,0x95,0xa3,0xe2,0x99,0xde,0xbc,0x98, +0x49,0x22,0xd2,0x57,0xa3,0xae,0x8a,0x40,0xda,0x77,0x64,0x9e, +0x8b,0x48,0x57,0x17,0xa3,0xd5,0x17,0x72,0xef,0xd9,0x74,0x12, +0x91,0x11,0xb1,0x89,0xbd,0x88,0x6b,0x70,0x71,0x7a,0xef,0xb9, +0x2d,0x84,0x76,0x14,0xe3,0x4f,0x9d,0x5b,0x77,0xd9,0xea,0xf2, +0xb9,0x8d,0x29,0xa7,0x8c,0x44,0xa5,0x47,0xd1,0xfc,0x60,0x24, +0x0f,0x25,0xd1,0x19,0x91,0xc9,0x1f,0xf4,0xe1,0x99,0x0c,0x26, +0x47,0x25,0x46,0xc5,0x59,0x46,0xc6,0xae,0x4f,0xd2,0x6d,0x3f, +0x95,0xc6,0x9e,0xe2,0x5f,0x85,0x38,0x66,0x2a,0x6f,0x3f,0x9d, +0x4e,0xa2,0x33,0x23,0xb0,0x6f,0xac,0x3a,0xb9,0x7d,0x99,0xc9, +0x5b,0xc2,0x93,0x22,0x55,0x79,0xa3,0x6e,0xe7,0x35,0x55,0x36, +0x2d,0x93,0xb1,0xcf,0xce,0xc9,0x20,0x31,0x19,0x11,0xc9,0x91, +0x38,0x83,0xcd,0xda,0x77,0xb1,0x73,0xc7,0x4a,0x76,0x44,0x60, +0xa7,0x44,0xae,0x33,0x23,0x51,0x4b,0x77,0xfe,0x3c,0x54,0xb1, +0xfe,0x9d,0x83,0xbe,0x4c,0x8e,0xe3,0xc7,0xac,0x58,0x3c,0x73, +0xbc,0x7e,0xe0,0x43,0x5f,0xb5,0x96,0x6d,0x5c,0x46,0x44,0x4a, +0x14,0x3b,0x5b,0x2c,0x7e,0xfa,0xd5,0x74,0xa2,0x7c,0x32,0x1a, +0xca,0xc2,0xf8,0xa5,0x89,0x4b,0x13,0x97,0x1b,0xa0,0x15,0x61, +0xc3,0x66,0x68,0x34,0x5d,0xa8,0x2e,0x8d,0xe3,0x34,0xd4,0xba, +0x8d,0x38,0xe3,0x46,0x12,0x77,0xc5,0xc0,0x15,0xda,0xc5,0xe2, +0x62,0x89,0xc6,0xc1,0x97,0x94,0x6f,0x09,0x87,0x6f,0x34,0xb6, +0x74,0x67,0xea,0x36,0xc1,0xce,0x8d,0x60,0x54,0x79,0x6f,0x35, +0xee,0xbc,0x7d,0xdc,0x96,0x88,0xcd,0x64,0x23,0x53,0xc7,0x83, +0x8b,0x94,0x6e,0x63,0xe0,0x6b,0x2e,0xda,0xcb,0x1f,0x1d,0xfe, +0xd4,0xff,0xd0,0x57,0x92,0x14,0xb0,0x2e,0x55,0x4e,0xfb,0x40, +0xc7,0x78,0x7e,0xec,0xca,0xc5,0xb3,0x99,0xdc,0xba,0x54,0x59, +0xef,0x03,0x7a,0x94,0x97,0xa0,0x6c,0x5b,0xaa,0x9c,0xf3,0x81, +0xce,0xf1,0xbc,0x9f,0xda,0x8e,0x73,0x61,0x96,0xab,0x23,0xd7, +0x26,0x1f,0x3c,0x92,0x71,0x2c,0x99,0xa4,0xaf,0x46,0x79,0x69, +0x68,0x9c,0x6a,0x71,0x5d,0x21,0x19,0x37,0xbe,0xd5,0xdf,0xa1, +0xa3,0xfc,0xa0,0x55,0x14,0x9f,0x34,0x30,0x92,0xb9,0x5a,0x07, +0x91,0x2c,0x9d,0x64,0x46,0x98,0xee,0x65,0x32,0xbb,0xd7,0x69, +0xe7,0x08,0xe4,0x5d,0xa7,0x6b,0x9e,0xc3,0xac,0x02,0x35,0x28, +0xee,0x3a,0xd9,0xb2,0x7f,0xd3,0x61,0x4b,0x38,0x56,0xd2,0xc8, +0xcc,0xd9,0x23,0xdc,0x2a,0x42,0x47,0x78,0x43,0x0b,0x9e,0x76, +0x2a,0x13,0xe9,0x44,0x6f,0x10,0x49,0xd6,0x65,0xfd,0x51,0xd7, +0x65,0xbc,0x63,0xf0,0xe4,0xae,0x23,0x0d,0xed,0x1f,0x31,0xaf, +0xf6,0x4c,0xb6,0xfe,0x8a,0xcb,0x0c,0xde,0x3e,0x68,0x7c,0xb7, +0x3e,0x06,0x72,0xda,0x08,0x57,0xd6,0x8b,0x31,0x45,0xba,0xa8, +0x99,0xa3,0xe2,0x9d,0xad,0xc8,0xd9,0x55,0x27,0xa6,0xe3,0x2c, +0xf6,0xc7,0x05,0xca,0x60,0x9e,0x3d,0xd8,0x67,0x8f,0x9d,0xc3, +0xc0,0x0b,0xe6,0x01,0x41,0x7b,0xda,0xd2,0x82,0x9c,0x5b,0x71, +0xd2,0x63,0x37,0x6b,0x1f,0x51,0xdc,0x38,0x6e,0x34,0x8c,0x20, +0x17,0x96,0x67,0x49,0x76,0x21,0x02,0xb9,0xb4,0xfc,0xb4,0x64, +0xb7,0x52,0x20,0x74,0x26,0xcc,0x9c,0x38,0xe9,0xa7,0x7e,0xb9, +0xd3,0x13,0xd7,0x75,0x4d,0xd1,0x31,0x99,0xce,0xbc,0x36,0xf1, +0xc9,0x4f,0x17,0x73,0x37,0x26,0xc6,0x77,0xd5,0x91,0x86,0xc3, +0xcc,0x09,0x1d,0xaa,0xdc,0xac,0xe3,0x94,0xf5,0x5b,0xc5,0xfb, +0xa4,0xe1,0x88,0x2a,0xc7,0x32,0x79,0x6d,0x80,0x58,0x43,0xae, +0x57,0x9c,0x59,0x79,0x62,0x2c,0xc6,0xbd,0x52,0x1b,0xe6,0x04, +0x91,0xa2,0x45,0xd9,0xbe,0x07,0xd8,0xe7,0x75,0x2e,0x57,0xce, +0x79,0x81,0x3d,0x29,0x69,0x8a,0xab,0xf6,0x65,0xfa,0xd8,0xd7, +0x9d,0x94,0xea,0x4f,0xb8,0x2e,0xe4,0x29,0x3f,0xdb,0x97,0x8d, +0x3f,0x6d,0x0c,0xcc,0xc6,0x69,0x2d,0xa0,0xd9,0x13,0x5b,0xa2, +0x23,0x15,0x7a,0x38,0x76,0xa3,0xf1,0x13,0x77,0x38,0xc1,0xad, +0xa7,0x64,0x38,0x51,0x73,0x2f,0x2b,0xd4,0xdc,0x4b,0x77,0xcf, +0x19,0x3d,0xc9,0x2d,0x4d,0x1e,0x69,0x58,0x83,0x39,0x97,0x3d, +0x9b,0xdc,0x6a,0x95,0x15,0x25,0xfc,0x0e,0x47,0x54,0xea,0x12, +0x4b,0xaa,0xff,0x90,0x94,0xfe,0x7d,0x99,0x64,0x77,0x5d,0x20, +0x18,0x8e,0x6c,0x2b,0x90,0x67,0x6a,0x24,0x50,0x95,0xb7,0xbc, +0xb6,0x17,0x46,0x02,0x91,0xe7,0xcc,0xaa,0x9c,0x87,0xf5,0x06, +0x92,0x7b,0x2a,0x6b,0xe9,0x57,0xe4,0x77,0x79,0x35,0xac,0x56, +0x6e,0xbb,0xcb,0xd1,0xb6,0xca,0x6a,0x3a,0x92,0x28,0x5b,0x56, +0x9a,0xf2,0xad,0x3f,0xbb,0x07,0x4f,0x3b,0x10,0xf8,0xa2,0xfe, +0x31,0x58,0x99,0xa2,0xc3,0x7e,0x64,0x63,0x9d,0xad,0xff,0xfd, +0x4e,0x9d,0xfc,0xd5,0x40,0xe4,0x3c,0x67,0xe6,0x3a,0x25,0x88, +0x30,0x8e,0x16,0x56,0xcb,0xcd,0xe8,0x2e,0xce,0x0c,0xf6,0xa1, +0xf4,0xe8,0x9e,0x2c,0xd1,0xdd,0xcc,0x47,0x36,0x13,0xe5,0x53, +0x74,0x57,0x0d,0x3c,0x52,0x80,0x33,0x4b,0xdb,0xbe,0x7e,0x3b, +0x6a,0x3c,0x3b,0x8b,0x0b,0xa5,0xcc,0x9f,0xb6,0xeb,0x21,0x98, +0x3d,0xc5,0x49,0xfc,0xb0,0xde,0x94,0x8f,0xa2,0x9d,0xac,0xcc, +0x68,0xa5,0x28,0x27,0xd0,0xc8,0x5a,0xc8,0x53,0xaa,0x98,0x99, +0x41,0x3b,0xfb,0x34,0x7c,0x54,0xca,0x99,0xc9,0x2b,0x94,0x59, +0x67,0xe5,0x95,0xbc,0x19,0x74,0x83,0xef,0xdd,0xec,0x68,0xf4, +0x1b,0x37,0xfa,0x1d,0xf4,0x24,0xff,0x99,0x5d,0x76,0xd7,0x3d, +0x62,0xcf,0x62,0xad,0x50,0x64,0x31,0x3c,0x46,0xb7,0x9d,0x70, +0x7f,0x6e,0x7e,0x95,0xf6,0x20,0x33,0xae,0xd4,0x62,0xd1,0xba, +0xe0,0xb5,0x84,0x77,0x75,0xf7,0x40,0xf6,0xcd,0x51,0x95,0x55, +0x86,0x86,0x96,0x04,0xb3,0x12,0xd8,0x6b,0xe7,0x8c,0x65,0xd2, +0xcc,0x33,0x30,0xaa,0x63,0x14,0x8c,0x26,0x98,0xad,0xce,0xd0, +0x21,0xe0,0xaa,0xc6,0x7a,0x78,0xaa,0xb1,0x1e,0x84,0x5f,0x3f, +0xdc,0x35,0xd1,0xcd,0xa4,0x17,0x97,0x33,0xd1,0xd5,0x25,0xd1, +0xb5,0x49,0xfd,0x11,0x3e,0x28,0x71,0xae,0x9a,0x86,0xba,0x1a, +0xd3,0x50,0x09,0xaf,0xf4,0x84,0x1c,0x71,0xc6,0xea,0x55,0x4b, +0xe6,0xea,0x7d,0xee,0x91,0x7f,0xeb,0x59,0xdc,0x2d,0xcc,0xb9, +0x44,0x5a,0xc6,0x68,0x81,0x21,0x56,0x6a,0x60,0x08,0x11,0xc3, +0xd3,0xd1,0x04,0x89,0x60,0x8e,0xc4,0x46,0xdd,0x3e,0xac,0x43, +0xc7,0x7c,0x8c,0xe8,0x88,0x68,0x9c,0x2e,0xdc,0xcb,0x44,0x7c, +0xb5,0x88,0xc6,0x63,0x96,0x9b,0x97,0x75,0x1c,0x79,0xcc,0xd8, +0x85,0xfd,0x29,0xdc,0xe6,0xff,0x4c,0xbf,0x79,0x15,0x3d,0xff, +0x27,0x79,0xa5,0x17,0xcf,0x5e,0x54,0x3d,0x7f,0x8c,0x07,0xe9, +0x48,0x3f,0x01,0x5b,0x77,0xa5,0x3b,0xe6,0x7d,0x32,0xb1,0x2b, +0xfd,0x14,0x3a,0xbb,0x2b,0xfd,0x60,0x93,0x2a,0x76,0x60,0xa2, +0xd1,0x5d,0xb1,0x31,0x89,0x76,0x4c,0xb4,0xc1,0xce,0x9a,0xd8, +0x9d,0x89,0xdd,0xdc,0x95,0xc1,0xff,0x57,0x1c,0x62,0x12,0x7b, +0x33,0xb1,0xa7,0xbb,0xe2,0xa2,0x8a,0x38,0x77,0xdb,0x1a,0xec, +0xb1,0x75,0x83,0x2a,0xda,0x33,0xb1,0x2b,0xc6,0xa1,0x68,0x62, +0x37,0x26,0x76,0xc1,0xcf,0xd5,0xc4,0xde,0x4c,0x54,0x8f,0x45, +0x31,0x89,0xb6,0x5a,0xd2,0x79,0x6e,0x9f,0x3b,0xab,0x2d,0x4e, +0x3f,0x3b,0x4c,0xc4,0x14,0xb5,0x86,0xd9,0x2a,0x35,0xd0,0x2c, +0x96,0x88,0xe3,0x7c,0xc7,0xb1,0x2f,0xd1,0xc9,0xb7,0xa0,0xc0, +0xb0,0x1d,0x67,0x21,0xd6,0x8c,0x87,0x35,0xdc,0x46,0xa5,0xb7, +0x38,0x19,0xfa,0x33,0x15,0xbe,0x5e,0xb6,0xf6,0xa0,0xed,0x29, +0x01,0x83,0x07,0x6a,0xf8,0xc4,0xb1,0x6a,0x95,0x0f,0x4f,0xac, +0xff,0x80,0xa2,0xbf,0x2a,0x0e,0x50,0x8b,0x7e,0x88,0xb0,0x49, +0x76,0x6b,0xba,0x6e,0x4e,0x15,0xbf,0x69,0xfa,0x56,0x4c,0x44, +0x4a,0xb3,0x13,0xd9,0xd9,0x97,0x4e,0x20,0xa5,0x19,0x11,0x95, +0x30,0x1a,0x23,0xff,0x50,0xa9,0xa4,0x02,0x2f,0x87,0x32,0xdb, +0x20,0x2d,0x2a,0x31,0x34,0x62,0xc5,0x6a,0x8b,0x84,0x64,0xdd, +0xc9,0x26,0x71,0xe5,0x6a,0x66,0x2a,0xa0,0x18,0x9a,0x1e,0xb5, +0x21,0x34,0x62,0x79,0x28,0x96,0x0b,0xcc,0x22,0xea,0xe2,0x5c, +0x28,0xda,0xbf,0x29,0xbe,0xec,0x37,0xb5,0x8c,0xa1,0x6d,0x68, +0x87,0xb5,0x54,0xd2,0x7e,0x62,0x66,0x32,0xfc,0xe4,0x62,0x43, +0x4f,0xfc,0xee,0x4c,0x9f,0x80,0x33,0x8a,0x25,0x2e,0xbd,0xe8, +0x89,0x5f,0x9d,0x69,0x31,0x13,0xad,0xa8,0x5d,0x7f,0x95,0x7e, +0xf8,0x47,0x6b,0xb0,0x33,0x6a,0x36,0xc5,0x2c,0x58,0xc8,0x6c, +0x8a,0x6e,0xc6,0x38,0x22,0x77,0x15,0xcf,0xee,0xda,0x7b,0xdc, +0xb8,0x8d,0x3f,0x16,0xba,0x77,0x36,0xb1,0xa5,0xbc,0x21,0x77, +0x4a,0xd1,0xcd,0x73,0xb9,0x87,0xf2,0x99,0x92,0x1f,0x3a,0x98, +0x26,0xfb,0x42,0x72,0x67,0xf5,0x2f,0x47,0x5c,0xad,0xa9,0xab, +0x0f,0xb8,0x76,0xa5,0xae,0xde,0xe0,0xca,0x11,0x0f,0x18,0x13, +0xcd,0xd3,0xb6,0x63,0xbe,0xa1,0xfd,0xa8,0xc1,0xf0,0xff,0xda, +0xbb,0x12,0xf8,0xa6,0x8a,0xfc,0x3f,0x49,0x9a,0x14,0x32,0xd0, +0x16,0x48,0xa0,0x69,0x4b,0x7a,0x97,0xd2,0x36,0x29,0x16,0x10, +0x44,0x50,0x6e,0x90,0xab,0x50,0x4e,0x41,0x54,0x3c,0x00,0xef, +0x1b,0xb9,0x4b,0x39,0xe4,0x46,0xe4,0x54,0x3c,0xd7,0x45,0x5d, +0x6f,0x14,0x0f,0x2c,0x97,0x40,0xe5,0x10,0xad,0x08,0xca,0xd6, +0x55,0x76,0xb5,0xab,0xc2,0xfa,0xcf,0xaa,0x75,0xb1,0xaf,0xf0, +0xe2,0xf6,0xff,0x9d,0x79,0xf3,0xd2,0xd7,0x90,0xa4,0x69,0x9b, +0x16,0x74,0xc9,0x7c,0xbe,0x6f,0xde,0x39,0xf3,0x9b,0xdf,0xfc, +0xe6,0x37,0xbf,0xf9,0xcd,0xbc,0x17,0x7a,0xa6,0x53,0xaf,0xdf, +0x3a,0x99,0xee,0x09,0x53,0x62,0x3a,0xf4,0xd8,0xbc,0xe8,0x27, +0x8e,0x6c,0xfa,0xe7,0xff,0xc5,0x7c,0xe8,0x1e,0x31,0x84,0x0e, +0x97,0xa2,0x72,0xe4,0xa8,0x11,0x52,0x94,0xdc,0xee,0x73,0x14, +0x7f,0x64,0xb4,0x64,0xdd,0xfe,0xd5,0x9b,0x3b,0xdf,0x7c,0x78, +0x65,0xf4,0xa6,0x75,0x14,0x86,0xc6,0x80,0x5c,0xf4,0xf8,0x46, +0x1e,0x51,0xd9,0x20,0x0f,0xc9,0x95,0x86,0xb0,0x95,0xf5,0x88, +0xe8,0x75,0x07,0xf6,0xbf,0xcd,0xd6,0xe1,0x3f,0xb2,0x86,0xad, +0xc2,0xa7,0xca,0x4a,0xaf,0xf1,0xd2,0x2d,0xb0,0x85,0x12,0xe3, +0xe9,0x4d,0x87,0x8e,0xbc,0xb3,0xfb,0x2f,0xbb,0x6d,0xab,0xd9, +0x88,0x70,0x21,0x05,0x6b,0x86,0x0c,0xc3,0xb3,0x2d,0x78,0xc4, +0x0e,0xf9,0xd7,0x60,0x5a,0xf0,0x88,0x1d,0x8e,0x1b,0x26,0x8d, +0xc3,0x21,0x8b,0xa8,0x1c,0xfd,0x4d,0x57,0xa9,0xd9,0xd7,0x3b, +0xdf,0x29,0x7a,0xc5,0xbe,0x7a,0x29,0x0e,0xd3,0xd9,0x24,0xc9, +0xbe,0xed,0xef,0xbe,0xbc,0xcd,0xb6,0x96,0xde,0xfb,0xea,0x58, +0xb6,0x68,0xd2,0xb6,0xcf,0xfd,0xdc,0x48,0x74,0xbe,0xd3,0xe7, +0x2c,0x5e,0xf1,0x97,0x57,0x37,0x6c,0x59,0xf1,0x8e,0x4d,0x5a, +0x7f,0x88,0x4e,0x9f,0xc2,0xdf,0x1a,0x70,0xfd,0x1f,0x7f,0x6b, +0x80,0xba,0xc9,0xbf,0xa5,0xaf,0xf7,0xc9,0x5f,0xff,0x5b,0xfa, +0x71,0xbf,0xfb,0x52,0xa8,0x89,0x15,0x66,0x44,0x33,0xe6,0x2c, +0x59,0xf9,0xfc,0x2b,0x1b,0x5e,0x5f,0xf1,0x36,0x7f,0x66,0xc6, +0x5a,0x6e,0x89,0xcc,0x98,0xbb,0x78,0xe5,0xb3,0x2f,0xae,0xa7, +0x33,0xf3,0x97,0xac,0x78,0xee,0x2f,0xeb,0x5f,0x5e,0xf9,0x06, +0xae,0x1e,0xa0,0x33,0x07,0x8f,0xec,0x62,0x1f,0xf5,0xf5,0xfc, +0x0d,0xf9,0xab,0xd1,0xa9,0xd3,0x59,0xeb,0x66,0x2f,0x87,0xa9, +0x90,0xbf,0xe0,0xa1,0x95,0x8f,0x3f,0xb3,0x9e,0x1d,0xaa,0xcf, +0xfe,0xf9,0xf5,0x0d,0x14,0xbd,0x27,0x7b,0xf6,0x25,0xfe,0xec, +0x41,0xca,0x07,0x16,0xac,0x89,0x6f,0xdf,0xb0,0x63,0x7f,0x0c, +0xe5,0x06,0xd1,0x4c,0xb6,0x42,0xf1,0x35,0x10,0x4c,0x99,0x5f, +0x81,0x7d,0xf5,0x8d,0xff,0x35,0xd8,0x9b,0xea,0x21,0x24,0xef, +0x4f,0x5b,0xd0,0xad,0xce,0x5e,0x0e,0x73,0x74,0xe6,0x9c,0xc5, +0xc2,0xeb,0x30,0x67,0xf6,0xc6,0x82,0x8d,0xf1,0xdf,0xb5,0xde, +0xb4,0x7e,0xfd,0xa6,0xc7,0x0a,0x70,0xb8,0xa1,0xe0,0xb1,0xf8, +0x6f,0x5b,0x3f,0xb6,0x01,0x87,0xf3,0xe8,0x9c,0x07,0x66,0xb2, +0x07,0x5f,0x7d,0x7b,0xc3,0x3b,0x7b,0x62,0x5e,0xa4,0x6c,0x85, +0x9f,0xfa,0x27,0xd4,0xe9,0x1f,0xd0,0xb9,0x05,0x4b,0x56,0x3d, +0xb3,0x65,0xfd,0x9b,0x2b,0x77,0xd8,0xa4,0x76,0x07,0xe8,0xdc, +0x7e,0x33,0x87,0xc6,0x35,0xfd,0xaf,0xf9,0x93,0x4d,0x54,0xfd, +0x74,0xc2,0xdb,0xeb,0xde,0xdd,0x87,0xe7,0x0a,0x6c,0x0b,0x98, +0xc9,0xf3,0xc4,0xbb,0x6b,0xdf,0x2b,0x8a,0x81,0xe1,0x42,0xad, +0xb3,0xf3,0x99,0xf9,0x76,0x60,0xe3,0x87,0x5f,0xc4,0x50,0xd6, +0x26,0xde,0xdc,0xf0,0xf6,0xee,0x98,0x17,0x7a,0xdc,0x17,0xee, +0xa0,0xca,0x5b,0xf8,0xaf,0xce,0x5a,0x3b,0xbc,0xe2,0x99,0xa7, +0x1f,0xa2,0x68,0x12,0xdb,0x36,0x14,0xee,0xe7,0xdf,0x55,0x97, +0x09,0x0e,0x9f,0x7a,0x73,0xed,0x5b,0xef,0xf3,0x39,0x8b,0x94, +0xa9,0x54,0x35,0xdd,0x5e,0x1c,0xc0,0xa6,0x30,0xa8,0x32,0x7f, +0x71,0x48,0x79,0xfb,0xae,0x39,0x3b,0x14,0x93,0x24,0xb7,0x86, +0xcb,0xad,0xa8,0xb4,0xcd,0x3a,0x1c,0x9a,0xe5,0xd4,0x08,0xf9, +0x1d,0xa9,0xc0,0x44,0x61,0x15,0x65,0x28,0x56,0x51,0xfc,0x8c, +0xb5,0xb3,0xe8,0xda,0xed,0x07,0x63,0x36,0x96,0x1c,0x94,0xd7, +0x0f,0x93,0xf4,0xf3,0xc3,0xe9,0xda,0x2a,0x33,0xe5,0xb5,0x37, +0x36,0xd1,0x75,0x8b,0x24,0xa7,0xdc,0x9a,0x7d,0x16,0x3c,0x4b, +0x8a,0x9c,0x4b,0xd7,0xa9,0xed,0x79,0x05,0xa3,0x9d,0xae,0x9f, +0xa3,0x0c,0x02,0x97,0xf0,0x3f,0x6b,0xa4,0x10,0x01,0x70,0x68, +0xf4,0x7e,0xf7,0x35,0xc3,0xa5,0x51,0x26,0xca,0x34,0x64,0x45, +0xaa,0xd0,0x97,0xe1,0xf4,0xf9,0x6d,0xb6,0x15,0x2b,0x56,0xaf, +0x5d,0xb7,0xfc,0x91,0x85,0x36,0x29,0x9a,0xbe,0x60,0x93,0x36, +0xed,0x73,0xff,0x32,0x92,0x7d,0x4f,0x67,0xec,0x00,0xca,0xb4, +0xef,0xc3,0xeb,0x97,0x21,0xbf,0x61,0x32,0x8d,0xa6,0x6f,0x6c, +0x5a,0xf3,0xc4,0xf2,0xc7,0x17,0x4a,0x7f,0x92,0x9b,0x45,0xbf, +0xb6,0x97,0xbe,0xf9,0xe2,0x1b,0x9e,0xe9,0xfa,0x16,0xd1,0x74, +0x6b,0xf8,0xb2,0x0e,0x53,0xaf,0x91,0x2d,0xed,0x77,0x4d,0x8a, +0x3e,0xb4,0x93,0x32,0x65,0xeb,0xd1,0x4a,0xe1,0x14,0x62,0x98, +0xfa,0x81,0x2c,0x8f,0x90,0x32,0x4c,0x0b,0xbb,0x5f,0x03,0x29, +0xb5,0x9b,0x8b,0x28,0x7f,0x0f,0x76,0xb3,0xa9,0x60,0xf4,0x80, +0x5b,0xe4,0xbb,0xc6,0xd0,0xbd,0x6f,0x14,0xd9,0x76,0xc8,0xa7, +0xac,0x52,0xff,0x5e,0xf2,0x55,0xe1,0xf4,0x03,0x75,0x1d,0xba, +0x54,0x2c,0x67,0x59,0xe9,0x7e,0x76,0xe8,0x50,0x0e,0x1d,0x56, +0xa4,0x90,0x8a,0x14,0x8e,0xc6,0xa5,0x1c,0x32,0xd3,0xcf,0xd8, +0x57,0x0b,0x26,0xca,0xfd,0xad,0x63,0xf2,0xc6,0xc9,0x29,0xf4, +0xf3,0xcf,0x7b,0x85,0xbb,0x7f,0xb8,0xc7,0xaa,0xbc,0x7f,0x44, +0x2b,0x4e,0x9d,0x89,0xb0,0x42,0x01,0x64,0xcb,0x51,0x50,0x06, +0xb4,0x74,0xcd,0xa6,0x23,0xac,0x5b,0x9e,0x3d,0xc8,0xb1,0x30, +0x21,0x96,0x7e,0xd7,0x5f,0x4e,0x97,0xaf,0x95,0xda,0xf5,0x77, +0x77,0xc4,0x00,0x84,0x7e,0xcf,0xff,0xe8,0xe0,0xbb,0x8a,0x85, +0x07,0xdd,0x47,0xe4,0x8f,0xe9,0x8f,0xeb,0xbe,0x62,0xab,0xbc, +0xd8,0x6b,0x06,0x93,0x16,0x37,0x81,0x31,0x71,0xe7,0x87,0xee, +0x3b,0xcb,0x2a,0x66,0x1d,0x76,0x1f,0x94,0x7f,0xa4,0xe5,0x7b, +0xf7,0x7c,0xf4,0xe6,0xf4,0x97,0xaf,0x7f,0xd2,0xbe,0x5a,0x32, +0xec,0xa5,0xe5,0xa6,0x65,0xdd,0xee,0x18,0x7b,0x49,0xff,0xe4, +0x93,0xd1,0x73,0xd7,0x31,0xe3,0x71,0xaf,0xd9,0x7d,0x58,0xf1, +0xad,0x14,0xb9,0xef,0xfb,0x99,0xbb,0x52,0x60,0x7f,0x3c,0x50, +0x65,0x7f,0x9c,0xa4,0x1e,0x57,0x82,0xdc,0xfc,0x98,0xf4,0x0f, +0x2a,0xef,0x30,0x55,0x7c,0x88,0xe2,0xe5,0xb3,0x65,0x8b,0xf3, +0xa8,0xd4,0x2c,0xbc,0xbf,0x3c,0xd9,0x0a,0xfa,0x1c,0xd2,0xb5, +0x90,0x92,0x76,0x72,0x54,0xf4,0xb6,0xf7,0x8c,0xee,0x4e,0x1f, +0x59,0x67,0x4d,0xa1,0xa6,0x8c,0x45,0xcb,0x56,0xed,0x7c,0xbb, +0xf4,0x9b,0xf1,0xdb,0x8d,0x11,0xe1,0x7b,0x0e,0xed,0xe6,0xff, +0xa9,0xc6,0x3e,0xe0,0x1d,0xfe,0x48,0xc6,0x92,0x65,0x93,0x76, +0x76,0x2e,0x9d,0x30,0xde,0x18,0xb1,0xf0,0x25,0xb6,0x36,0xa2, +0x5d,0x6e,0xc5,0x2f,0x07,0x4c,0x11,0xf2,0x7e,0xe6,0xeb,0xa8, +0xd8,0x5c,0xec,0xde,0xcc,0x66,0xf7,0x5f,0xf8,0x80,0x39,0xe0, +0xaf,0xf7,0xfc,0x85,0x74,0x0e,0xdb,0x1b,0xaa,0xee,0xbd,0xf8, +0xa3,0xf8,0x4e,0x88,0xd4,0xfb,0x21,0xd3,0xa0,0x69,0xd3,0xa6, +0x50,0x6b,0xc5,0xa9,0x43,0xee,0x53,0xa6,0x8a,0x6b,0x70,0xee, +0xa3,0xfd,0xf2,0x47,0x26,0x69,0x29,0xce,0xfd,0x74,0xd0,0xfd, +0x93,0xa9,0x02,0xe3,0xce,0x53,0xfc,0x6f,0x0c,0x6f,0x64,0x6b, +0xef,0xe5,0x21,0x15,0x18,0x7e,0x19,0x29,0xfb,0x80,0xba,0xdc, +0xc3,0xca,0x96,0x49,0x35,0x95,0xcd,0xcf,0xd2,0x5e,0xf2,0x95, +0x72,0x6c,0xae,0x14,0x6b,0xa2,0x55,0x3d,0xd6,0x88,0x3d,0x7b, +0xec,0x8f,0x87,0xef,0xfd,0x60,0x0f,0x95,0x23,0xa6,0xe6,0x62, +0xf8,0xd5,0xda,0x4e,0xb9,0x66,0x60,0xfe,0x48,0x3a,0x8f,0x8d, +0x6b,0xe6,0xce,0x5f,0xbc,0x8a,0x2e,0x65,0x6a,0x88,0x9d,0xa4, +0x6f,0xac,0x7f,0x8b,0x8d,0x1d,0x92,0x0f,0xd1,0xcf,0x4c,0x52, +0xd3,0x1f,0xd6,0x3f,0xfe,0x49,0x3c,0x95,0xda,0xe7,0xa2,0x5b, +0xbe,0xc7,0x24,0xbf,0x58,0xd1,0xc5,0x4a,0xa5,0xcc,0x5c,0x77, +0x17,0xe5,0xe8,0x32,0x2b,0x35,0x4a,0x19,0xbf,0xee,0x65,0x4b, +0x20,0x7f,0x60,0x7f,0x23,0xcd,0xfe,0x08,0x77,0xeb,0xae,0x98, +0xcd,0x03,0xa7,0x85,0xb7,0x9f,0x82,0x6b,0x99,0x65,0x1f,0xb0, +0x7f,0x9c,0xe6,0xbe,0x73,0xf6,0x4a,0x0a,0x9a,0xe9,0x9b,0xfd, +0x6f,0x41,0x17,0x43,0x4d,0xf7,0x4b,0xce,0x5e,0xf3,0xff,0xc2, +0xfe,0x4d,0x53,0x9f,0x4b,0x99,0x83,0xfb,0x6e,0xab,0xbc,0x2e, +0x97,0x3b,0xb8,0xc3,0xd3,0x27,0x8f,0x93,0xad,0x32,0x41,0xc7, +0xf5,0xe1,0x1e,0x5c,0x8b,0xbe,0xa1,0xa7,0x1c,0x2f,0xb7,0xb3, +0xef,0x9e,0x78,0x0c,0xd6,0xcf,0xc6,0x39,0xcc,0xfa,0x61,0xaa, +0x0f,0xd6,0xce,0xae,0xeb,0x8e,0x6c,0xdf,0xb9,0xf5,0xd5,0xad, +0xb6,0xb5,0x8f,0x6c,0x10,0xff,0xb7,0xc4,0xff,0x1b,0x00,0x25, +0xb1,0xce,0xf3,0xfc,0xfb,0xf5,0xe4,0x0c,0x6a,0x65,0x1f,0xb3, +0xce,0x94,0x13,0xe6,0xb1,0x01,0x98,0x7a,0x64,0x9f,0xab,0x1c, +0x61,0xe0,0x33,0xeb,0x4a,0xf9,0x3d,0xfe,0xdd,0x7e,0xca,0x46, +0x8e,0x8b,0xd9,0xc8,0xf1,0x61,0x36,0x72,0xb4,0x3e,0xf4,0xf2, +0x1b,0x4b,0xde,0x8d,0x7d,0xf7,0x8d,0x55,0xab,0x5f,0xc6,0xd1, +0x50,0x39,0x29,0x5d,0x4a,0x18,0xea,0x4e,0x90,0xee,0x63,0x06, +0x80,0xf8,0xbe,0xd6,0x01,0xab,0xbb,0x1b,0xb5,0x8e,0x1c,0x7b, +0x57,0x8e,0xbd,0x97,0xa9,0xdb,0xed,0x5b,0xb6,0xbd,0x4c,0xad, +0x6b,0xa6,0xde,0xb8,0xea,0xda,0xd8,0x6b,0x6f,0x5c,0xb2,0x70, +0x2a,0x9e,0x3b,0x56,0x91,0xdf,0x47,0x86,0x51,0x37,0x44,0x62, +0x7f,0x05,0x8e,0xee,0xea,0x8d,0x4f,0xa5,0x1f,0x61,0xe9,0xca, +0x8f,0x52,0xeb,0xeb,0xa6,0xcd,0xd2,0x63,0x46,0x69,0x61,0x67, +0xb6,0x2a,0xd5,0xba,0x45,0x1c,0x75,0xe2,0x47,0xee,0x07,0xe5, +0xb1,0x15,0x5f,0xbc,0xef,0x7e,0xf8,0xfb,0x8a,0x69,0xca,0x1f, +0x9f,0xc3,0x68,0xb8,0x55,0x99,0xa0,0x71,0xcf,0x90,0xef,0xaa, +0xf8,0xea,0xa0,0x7b,0xcd,0x8f,0xcc,0xfa,0xc0,0xd1,0x83,0x15, +0x5f,0xc1,0x18,0xf9,0x85,0x1d,0x49,0x37,0xec,0x93,0x6f,0x30, +0xc9,0x47,0xe5,0xad,0xd6,0x7c,0xd8,0x1e,0xab,0x0b,0x96,0xcd, +0xcc,0x9f,0x0d,0x8b,0x71,0xe5,0x66,0x1c,0xad,0x99,0xb7,0x7c, +0xe6,0xdc,0x19,0x73,0xc1,0xc1,0x17,0x68,0x34,0x86,0xc2,0x2b, +0xe6,0x2d,0x98,0xb7,0x80,0xcd,0x0c,0xd1,0xe8,0x4f,0xf6,0x6e, +0x7b,0xeb,0xc5,0xad,0xd0,0x3e,0xcb,0xd7,0x2d,0xa0,0xb6,0x87, +0x57,0xaf,0x5e,0xb6,0x7a,0xb1,0x64,0x94,0xc3,0xa3,0x0b,0xa9, +0x4d,0xba,0x74,0xbf,0xbb,0xed,0x70,0xe9,0x52,0xd3,0x43,0x97, +0x5d,0x43,0x63,0x4a,0xe4,0xc2,0xc1,0xd2,0x3d,0x0f,0x85,0xaf, +0x90,0x5b,0xcf,0xa2,0xb1,0x92,0xf5,0xab,0xd3,0xd2,0x65,0xd2, +0x65,0xdd,0x4e,0xcb,0x56,0xe6,0x84,0x6b,0xb1,0xc7,0xfd,0xf8, +0x68,0xa9,0x4d,0xb8,0x94,0xce,0x8e,0x22,0x77,0xbb,0x1f,0x1f, +0x2b,0x59,0xc3,0xa5,0x4c,0x76,0x14,0x57,0xe4,0x7e,0x2e,0x4f, +0x4a,0x0c,0x97,0x12,0xa8,0xfd,0xed,0x11,0x52,0xdc,0x81,0xef, +0x0a,0xf7,0xed,0xb4,0xb9,0x29,0xad,0x70,0x9e,0xc9,0xb7,0x5e, +0x85,0x0e,0x3d,0x5b,0x8a,0x18,0x48,0xfb,0xc8,0x66,0x39,0xed, +0x3f,0x7d,0xdd,0x43,0x8e,0x9a,0xe4,0x3e,0xf4,0x2a,0x59,0x97, +0x33,0xec,0xdb,0x0e,0x80,0x49,0x9e,0x40,0x87,0xcb,0xd9,0x03, +0x6c,0xec,0x4f,0x42,0x67,0x9f,0xfe,0xe6,0x7b,0x9a,0xe7,0x52, +0xdf,0xf3,0x43,0xe7,0xce,0x7c,0x15,0x8f,0x5b,0xe5,0x47,0xc7, +0x32,0x5f,0xc5,0x72,0x5a,0x31,0xe5,0xcc,0x46,0xab,0xfc,0xe4, +0x18,0xe9,0x49,0x93,0xb4,0x84,0xca,0x16,0x98,0x03,0x57,0x1f, +0xd9,0xb7,0xa3,0xf0,0xe5,0xed,0x36,0x2a,0xc7,0x5c,0x62,0x2f, +0x1c,0xf7,0xe9,0xce,0xed,0x5b,0x5f,0xde,0x6a,0xa3,0x0f,0x86, +0x3b,0x99,0x4f,0x22,0xd5,0xbe,0xf3,0xda,0xc3,0xbb,0xe8,0x2c, +0xa7,0xdc,0x66,0x9e,0xdc,0x3e,0xf6,0x16,0xa9,0x89,0x74,0x84, +0xce,0x9e,0xb7,0x78,0xe5,0xd3,0x5b,0x36,0x6e,0x5d,0xf9,0x9e, +0x4d,0xea,0x48,0x61,0x80,0x2f,0x9f,0x3b,0xcf,0x36,0x3b,0x9f, +0x4d,0xd0,0xd3,0x39,0xac,0xf1,0xcc,0x9c,0xcb,0xba,0xde,0xd7, +0x36,0xd0,0x39,0xe2,0xef,0xe9,0xd0,0x2b,0xbd,0xbe,0x8e,0xf9, +0x29,0x98,0x77,0x7f,0x8e,0x72,0x27,0x2c,0x75,0xf6,0xdc,0xdc, +0x02,0xb6,0x52,0x8c,0x72,0xbb,0x1d,0xd7,0xf8,0x5f,0xd9,0x51, +0xfe,0x6f,0xd2,0x6c,0x79,0x3d,0x37,0xea,0xf3,0x57,0xe4,0x2f, +0x28,0xe0,0x55,0xc2,0x3c,0x10,0xf9,0xca,0x73,0x73,0xe6,0x2d, +0x59,0x81,0x3b,0xf3,0x1f,0x9d,0x53,0x35,0x63,0x40,0xf3,0x67, +0xcc,0x61,0xf5,0xf8,0xea,0x86,0xd7,0x60,0xc4,0xd0,0x7c,0xee, +0x99,0xda,0xfc,0xe7,0xf5,0x9b,0x57,0xbd,0x68,0xa3,0x8c,0x2c, +0x98,0x25,0xe2,0xda,0x3c,0xf6,0xd4,0x3c,0xe6,0x41,0x7c,0xfa, +0xcd,0xb5,0xcc,0xe3,0xb1,0x9c,0x79,0x3c,0xe6,0x2f,0xc5,0xc8, +0x1b,0x7d,0xf7,0xac,0x79,0x0f,0xad,0x7c,0xe6,0x85,0x0d,0x2f, +0xac,0x7c,0xd5,0x46,0xe7,0xaf,0xcf,0x5f,0x3e,0x6f,0x81,0x6d, +0xde,0x02,0x7e,0x6d,0xc1,0x54,0x58,0xa7,0x2d,0xe4,0xa4,0xc5, +0xb2,0x3d,0xf6,0x11,0xc5,0x7f,0xf1,0xcd,0x95,0xee,0x04,0xe6, +0xbf,0xa0,0x0b,0xa5,0x74,0xb9,0x6d,0xf4,0xf6,0xdd,0x72,0x8a, +0x64,0x99,0x4b,0x3d,0x8b,0x91,0x96,0xad,0x30,0x3e,0x49,0xc5, +0x4b,0x64,0xd0,0xee,0x9b,0x3e,0x5b,0x4b,0xe5,0xac,0xe8,0x63, +0x07,0x76,0xbc,0xf7,0xf2,0xb6,0xb5,0x8f,0xac,0x5b,0x46,0x17, +0x49,0x76,0xd9,0xc2,0x56,0x58,0xd9,0xa5,0x88,0xb9,0xf4,0xa1, +0x6b,0x17,0x5e,0x3f,0xef,0x3a,0xdb,0x27,0xf3,0x8d,0x4f,0x7f, +0xbd,0x81,0x2e,0x19,0xd8,0x9f,0x7d,0x35,0x3f,0x97,0xcf,0x56, +0xd1,0x65,0xab,0x98,0xfc,0x45,0x45,0x6f,0xdf,0xf6,0xfa,0x1b, +0x9b,0xe9,0xb2,0x35,0x8b,0x24,0x9b,0x6c,0x8d,0xde,0xf9,0xae, +0xd1,0x3d,0x81,0x2e,0x5f,0xb3,0x00,0x47,0xf6,0xe8,0x5d,0xdb, +0x8c,0xee,0x6b,0xf8,0xfa,0xe5,0xab,0x0f,0xba,0xa7,0x0c,0x93, +0xc6,0x9b,0x96,0xd0,0x15,0xa8,0x86,0x39,0xdc,0x1d,0xb4,0x75, +0xfd,0x3b,0x74,0x05,0x5b,0xbc,0xf3,0xf8,0x22,0x9b,0xb4,0x55, +0x36,0x6d,0xa5,0x2b,0xc4,0x6b,0xf6,0x39,0xcc,0x21,0x42,0x85, +0x23,0x09,0x95,0xf0,0xda,0xba,0xd7,0x29,0xfb,0x8c,0xc4,0x26, +0xb5,0xfb,0xa4,0xdc,0x2a,0x7a,0x77,0x6f,0xcc,0x8b,0xdd,0xef, +0x09,0x4f,0xa3,0x2b,0xdf,0x42,0x5f,0x5b,0x24,0xcb,0x79,0xac, +0xaf,0xa5,0xc2,0x81,0xb4,0xca,0xf8,0xd4,0xeb,0xeb,0xdf,0xa0, +0x2b,0x57,0xad,0xe6,0x6f,0xb6,0xe4,0x44,0x6f,0xdf,0xde,0x8e, +0x32,0x13,0x6e,0xa4,0xb0,0x0c,0x16,0x51,0x26,0x35,0x9d,0x0e, +0xb8,0xdb,0xe6,0x4a,0x5d,0x4c,0x8b,0xe9,0x9a,0xb5,0x1b,0x96, +0xaf,0x65,0xff,0x97,0x3b,0x22,0x7a,0xef,0x6e,0xba,0x16,0x6d, +0x71,0xce,0xcc,0xb9,0xd1,0xec,0x63,0x3b,0xeb,0x29,0xec,0xb3, +0xa5,0x1b,0x16,0xc2,0x28,0x68,0xc1,0x3e,0xf8,0x0f,0x76,0xe6, +0x73,0xab,0x6a,0xa5,0xf1,0xf1,0x1d,0x74,0xe3,0x1b,0xf1,0x52, +0x31,0x9f,0xf0,0x98,0x77,0x5d,0x3f,0xfa,0x68,0xf8,0xce,0xfd, +0x85,0x52,0x3b,0xa9,0xdd,0x07,0xd7,0x5c,0x6d,0xa7,0x8f,0x85, +0xef,0xf9,0x60,0x97,0x94,0x26,0xa5,0x15,0x8d,0x1b,0x6d,0xa7, +0x9b,0xbe,0xf8,0x77,0xcc,0xa7,0xf2,0xec,0x11,0x52,0x97,0x70, +0xa9,0x35,0x95,0x7b,0xb3,0x8f,0x17,0x3f,0x77,0x54,0xfa,0x27, +0xfb,0x78,0x31,0xef,0x0d,0xf8,0x9d,0xa3,0x47,0xc1,0xc2,0x5f, +0x50,0x71,0xb7,0x55,0x7a,0xaf,0xe7,0x6f,0xd9,0xc7,0xa5,0x0f, +0xd9,0xd1,0x26,0x0c,0x79,0x7a,0xba,0xdd,0xc7,0xa5,0x3d,0xf4, +0x89,0xf0,0x43,0xfb,0x0f,0x48,0xa9,0xb0,0x2e,0x72,0x87,0xda, +0xe9,0x33,0xaf,0xaf,0xdf,0xb2,0xb2,0xd0,0xc6,0xfe,0x80,0x56, +0xce,0xa5,0x67,0x96,0x9f,0x59,0x60,0xfd,0xcd,0x34,0xec,0x8c, +0xc9,0x24,0xbf,0xc0,0x8e,0x16,0xe1,0x68,0x04,0x3b,0xb2,0xd1, +0xe7,0x9e,0xdb,0xf8,0xc2,0xaa,0x97,0x6d,0xd2,0x0b,0x07,0x71, +0x03,0x7d,0x25,0x3e,0xef,0x2d,0x63,0xde,0xdd,0x57,0xdf,0x36, +0x28,0x36,0x33,0x8f,0x6e,0x7d,0xef,0x2f,0x92,0x31,0x7e,0xb7, +0x49,0x32,0xbe,0x77,0xe7,0x8d,0x54,0x59,0x14,0xff,0xf0,0x5a, +0x56,0xab,0x71,0x14,0xbd,0x6f,0x47,0xf4,0xbe,0x93,0x07,0x4c, +0x1f,0x18,0x3b,0x8b,0xee,0xda,0xbe,0x05,0x77,0xbe,0x8b,0x3b, +0xb7,0x4f,0x1e,0x47,0x77,0x85,0x7f,0xb2,0x67,0xdd,0xfa,0x97, +0xe2,0xa5,0xe5,0x4b,0xac,0x0b,0xe8,0xee,0x5d,0x72,0x8e,0x74, +0xc5,0xdc,0x47,0xd9,0xff,0xaf,0xdb,0xe8,0xee,0xf7,0x60,0xad, +0x39,0x84,0x2b,0x5e,0x39,0xca,0xca,0xdf,0x38,0x7b,0x15,0x3b, +0xda,0x17,0xb3,0x51,0x1a,0xfd,0xa1,0x7b,0xd2,0x10,0x69,0xf4, +0x82,0x70,0xba,0xdf,0xfd,0xc8,0xa9,0x8a,0x19,0xd2,0x64,0xf7, +0xc1,0xe1,0x15,0x73,0x71,0xb4,0xe6,0x54,0xc5,0x74,0x1c,0x1d, +0x60,0x47,0x71,0xa9,0x5b,0xcd,0xf3,0xe9,0xfe,0xad,0x1a,0xcb, +0x8c,0x1e,0x88,0x4b,0xdd,0x67,0xa6,0x50,0xb0,0x2e,0x3c,0x75, +0xbb,0xfb,0x60,0x2e,0xee,0x53,0x3e,0x6c,0x20,0xe6,0x9e,0xf8, +0xd1,0x3a,0x7e,0xb4,0x54,0x39,0x3a,0xa8,0x1e,0x2d,0xc0,0xd1, +0xdf,0x0f,0xad,0x53,0x2b,0x8d,0x7e,0x9a,0x54,0xd1,0x4c,0x32, +0x7e,0x2a,0x1b,0xa5,0xe4,0x3e,0x99,0xf4,0xb3,0x03,0x93,0xf2, +0xec,0xf2,0xa8,0xf0,0x81,0xb9,0x37,0xf7,0xb6,0xd3,0x7f,0x1c, +0xd8,0x53,0x5a,0x7a,0x60,0x74,0x17,0xfb,0x94,0xf0,0x2e,0xb9, +0x6c,0x3e,0x6a,0x85,0x55,0x2e,0x1a,0x2a,0x15,0x99,0xdc,0x4b, +0x69,0xc5,0xbf,0xcf,0xcc,0xb5,0xca,0x1f,0x0e,0x91,0x3e,0x34, +0xb9,0xd7,0xb1,0x35,0x0b,0x6b,0xac,0xf2,0x91,0xe1,0x6c,0xcd, +0xc2,0x57,0xec,0x68,0xbd,0x7a,0xf4,0x0f,0xfa,0xb3,0x49,0xee, +0x2b,0xad,0xb4,0xca,0xd3,0x73,0xa5,0xe9,0x30,0x47,0x61,0x4b, +0x4c,0x94,0x5f,0xb1,0xbe,0x24,0x75,0xbb,0x72,0x0d,0x95,0xf4, +0xd2,0x24,0x08,0x01,0x7f,0x41,0x5f,0x47,0xa5,0x36,0x31,0x52, +0xfb,0x69,0xca,0x2b,0x8c,0x94,0x9a,0x0e,0x8d,0xb1,0xc2,0xec, +0x9d,0x2f,0x3b,0x4d,0x11,0x26,0x79,0x4f,0x18,0x0c,0xd9,0xe6, +0x15,0xc9,0x6c,0x51,0xe2,0x22,0xf9,0xb9,0xe3,0xd2,0x77,0xee, +0x23,0x6c,0x7f,0x8d,0x3c,0xe1,0xb8,0xf4,0xa8,0xfb,0x04,0xdb, +0xdf,0x24,0xdf,0x7c,0x5c,0xfa,0xb3,0xfb,0x3b,0x66,0xe7,0x8c, +0x91,0xf7,0x1d,0xab,0xd0,0x33,0x9f,0x4d,0x1f,0xb9,0xa9,0x55, +0xbe,0x5f,0x6a,0x2a,0xdd,0x6f,0x8a,0x50,0xde,0xcb,0xb2,0xf3, +0x17,0x99,0x78,0xed,0xca,0xad,0x58,0x9b,0x8d,0x28,0x35,0xf5, +0xef,0x84,0xf1,0x79,0x29,0xc6,0xe7,0x11,0x2e,0x53,0xdf,0x0c, +0xab,0x3c,0xcd,0x25,0x4d,0xc3,0x7e,0x78,0xd5,0x3e,0xff,0x5f, +0xcf,0x1d,0x31,0xec,0x9f,0x51,0xad,0x83,0xa5,0x43,0xd4,0xc6, +0x96,0xb7,0xb3,0xb5,0x6d,0xe3,0x8a,0xdc,0xc6,0xf0,0x15,0xb4, +0x9b,0x6c,0xca,0x97,0xad,0xb1,0x6c,0xf9,0x57,0x92,0xd4,0xa4, +0x1f,0x95,0x6d,0x88,0x69,0x3f,0x75,0x38,0xa2,0xbe,0x9f,0x40, +0xdf,0x7e,0xf0,0xf5,0xeb,0xd8,0x6b,0xe1,0x3b,0x63,0xde,0xea, +0x35,0x25,0x3c,0x83,0xca,0xef,0xca,0x47,0xa5,0x3d,0x6c,0x95, +0xba,0xdc,0x26,0x7a,0x07,0x53,0x59,0xcd,0xe7,0xc2,0x98,0x91, +0xdf,0x37,0xfe,0x60,0x82,0xf9,0x71,0xd0,0x48,0x8d,0x7f,0x7a, +0x6b,0x2d,0x86,0x32,0x5b,0xfa,0xdc,0x8a,0xc6,0x6e,0x7c,0x65, +0xeb,0x86,0xb7,0x76,0xc5,0xfc,0x85,0x0f,0x57,0x4c,0xa7,0x1f, +0x61,0x7e,0xa1,0x45,0x45,0xd1,0x77,0x2d,0x81,0x41,0xc2,0xde, +0x64,0x9a,0x67,0x7c,0xe2,0xf3,0xc7,0xbe,0xa4,0xe1,0x3d,0xae, +0x1e,0xdf,0xa7,0xf7,0xd5,0x3b,0xbe,0xb0,0x57,0xf4,0xa4,0x52, +0x97,0x4f,0xf7,0x7f,0xf4,0xe6,0xb4,0xd7,0x46,0xb1,0x0f,0x76, +0x59,0xf9,0x6c,0xcd,0x53,0xaf,0xaf,0x7d,0x83,0x15,0xa6,0x62, +0x55,0x96,0x49,0x58,0xa8,0xd4,0xca,0xdd,0x99,0x8e,0x85,0xe1, +0x63,0x1f,0x7c,0x90,0x5a,0xf3,0xfe,0x25,0xdf,0xfb,0x49,0xc5, +0x2d,0x03,0xe4,0x3c,0xf4,0xf7,0x9f,0xec,0xdd,0xf2,0xb9,0xfd, +0x19,0xd3,0xe7,0x7b,0x27,0x0f,0xa0,0xd6,0x4f,0x3f,0x3a,0xcc, +0xfe,0xee,0xe5,0xf0,0xe0,0x7e,0x76,0x6a,0x1d,0x2d,0x75,0x19, +0xcc,0xa7,0x85,0x60,0xc0,0xb3,0xbf,0xd7,0xe9,0xcf,0xff,0xe1, +0xb2,0x2f,0x0e,0x26,0x48,0x53,0x27,0x1e,0xaf,0xf8,0xb2,0xa7, +0x7b,0x0e,0x73,0x7e,0x84,0xdd,0x3c,0x54,0x6e,0x9a,0x65,0xdf, +0x73,0xe3,0x3f,0xa9,0xf5,0x5f,0xf2,0x17,0x43,0xa5,0xd5,0x37, +0x86,0xcb,0x2d,0x47,0xb0,0xff,0xc9,0x8e,0x1a,0x2c,0x15,0xdd, +0x14,0x2e,0x5b,0x91,0xf4,0xec,0x9f,0xa4,0xbb,0x60,0x1b,0xbd, +0x37,0x5c,0xba,0x1f,0x07,0x43,0x3b,0x16,0xa4,0xc7,0xde,0x2d, +0xc5,0xc2,0xe6,0x8c,0x2e,0x80,0x46,0x2a,0x58,0x38,0x97,0xf1, +0x12,0x07,0xeb,0xf2,0xd5,0x19,0x60,0x6a,0x5b,0xb5,0x6a,0x8d, +0xf2,0xd2,0x3c,0x46,0xce,0xb6,0xf9,0x4c,0x2b,0x3d,0xbd,0x6d, +0x2d,0xc6,0x61,0xb0,0x0c,0x3a,0x7e,0xe0,0xb6,0x8d,0x90,0x3a, +0x9b,0x96,0x3a,0x68,0xcc,0x11,0xf9,0xed,0x21,0xd2,0xed,0x4b, +0xd9,0x27,0x17,0x28,0xfb,0xac,0x9b,0xe7,0x73,0x6d,0x09,0xac, +0xb7,0x6f,0x7d,0xe0,0xc4,0xf6,0x9d,0x3b,0x6c,0xca,0x81,0x15, +0x07,0x3b,0xd0,0x11,0xa3,0xe3,0x5f,0x61,0x65,0xff,0xcb,0xd5, +0xe1,0xd7,0x81,0x34,0x93,0x7d,0x31,0x20,0x66,0xdf,0xdf,0xdf, +0xdd,0xb1,0xcd,0x46,0x33,0xd9,0xd7,0x65,0x9c,0xb1,0xb7,0xa2, +0x17,0x3e,0xca,0x56,0x2e,0xde,0xc6,0xff,0xf6,0x9e,0xbd,0xdb, +0xd6,0xe7,0x9e,0xf0,0x9c,0x6b,0x07,0xcb,0xd6,0x4e,0xf6,0xc2, +0xab,0x69,0xbf,0x07,0xc2,0x07,0xde,0x71,0x6d,0x46,0xae,0x3d, +0xf1,0xf3,0xb9,0xb4,0x62,0x98,0x55,0xea,0x96,0x53,0x26,0xa7, +0xca,0x09,0xd9,0xf4,0xaa,0x67,0xd8,0x2b,0x70,0x7c,0x56,0x63, +0x08,0x9b,0xe2,0x58,0xad,0x4e,0x71,0xd0,0x21,0x79,0xf6,0x21, +0x87,0x0b,0x94,0xae,0x8e,0x0e,0x39,0x12,0xad,0xec,0xc2,0x10, +0xa2,0xc3,0xa4,0x91,0xa6,0x87,0x3a,0x8f,0x1e,0x25,0x77,0xca, +0x6e,0x42,0x73,0xe5,0x2e,0xed,0xa4,0xce,0xb9,0xee,0xe1,0xd2, +0xdd,0x26,0x1c,0x64,0xb6,0x93,0xd2,0x73,0xdd,0x39,0xec,0x60, +0xf8,0x9d,0xb7,0x8d,0xe8,0x1c,0x23,0xdb,0xbe,0xbf,0x02,0x56, +0xe3,0xf0,0x91,0xb7,0xf5,0x8d,0xbf,0xc7,0xd4,0x67,0xe4,0xcb, +0xfb,0xe3,0xe9,0x84,0xe8,0xe2,0x03,0x85,0xef,0xbe,0xf8,0xce, +0xea,0x55,0x6b,0x96,0xd1,0xeb,0x06,0xc4,0xcf,0x09,0xef,0x72, +0xd5,0xd5,0xb2,0xee,0x21,0x3b,0xbd,0xfe,0x29,0xfb,0x1a,0xc9, +0xb0,0x87,0x39,0x9f,0xef,0xa6,0x93,0x7a,0xc9,0x49,0x72,0xaa, +0xfd,0xfd,0x89,0x9f,0x7d,0xb6,0x93,0xde,0x31,0x32,0xbb,0xab, +0x3d,0xe5,0x34,0xfb,0x9e,0xfb,0x5c,0x7a,0x57,0x78,0xd6,0x75, +0x43,0xe4,0xe8,0xf6,0xcc,0x05,0x48,0xef,0x0e,0x4f,0x9c,0xca, +0xde,0xfd,0x0f,0xb3,0xbf,0x3f,0x09,0xd2,0x9e,0x71,0x39,0xfb, +0x64,0x92,0xeb,0x72,0xc9,0x46,0xef,0x75,0x5b,0x8e,0x16,0x18, +0x5f,0xfe,0xcb,0xcb,0xcf,0x1f,0x8e,0xa5,0x15,0x33,0xcf,0x0c, +0x33,0x0e,0x34,0xb9,0x67,0xfe,0x36,0xcc,0x48,0xef,0xf7,0xcc, +0x13,0x0c,0x41,0x8b,0xb8,0x4e,0xba,0xcf,0xfa,0x59,0xc5,0x3b, +0xbd,0x4d,0xbf,0xc5,0x50,0x37,0xf9,0x27,0xff,0x72,0xd4,0x37, +0xd2,0x4f,0x7b,0x71,0xe0,0xe2,0xcb,0x24,0xfe,0x4f,0xfa,0xa9, +0x88,0xce,0xe8,0x9f,0x99,0x2f,0xeb,0x21,0x07,0x6d,0xa5,0x95, +0x74,0xc6,0x80,0xac,0x7c,0x59,0xc7,0x85,0x62,0x05,0x9d,0xd1, +0x37,0x35,0x5f,0x36,0xc5,0xde,0x81,0x83,0xc7,0x94,0x03,0x23, +0x0e,0xda,0x4a,0x8f,0xd2,0x19,0x6b,0xe6,0x2c,0x9f,0xad,0x58, +0x0f,0x4f,0xd3,0xd9,0xeb,0x66,0x71,0xeb,0x67,0xfe,0xa2,0x55, +0x4f,0xc2,0xa0,0x99,0xc3,0xa6,0x64,0xe6,0x30,0xcb,0x89,0xce, +0x7d,0x0c,0xb6,0x8e,0xf0,0x48,0xd0,0x8a,0x87,0xa4,0x09,0xec, +0x6f,0x6e,0x57,0x74,0x71,0x3f,0xa4,0x4c,0x69,0x3e,0xf5,0xda, +0xda,0x37,0x76,0xc6,0x3c,0x4f,0x0b,0x26,0x31,0x23,0xe0,0xa9, +0x13,0x1b,0xbe,0xfa,0x21,0x86,0x16,0xb0,0x29,0x90,0xa7,0xde, +0x59,0xfb,0xee,0xfe,0x98,0x57,0x29,0x5b,0x87,0x55,0xce,0xd6, +0x0c,0x97,0x6c,0xbe,0x81,0x2e,0xb3,0x4d,0x97,0x56,0xf7,0x5e, +0xb4,0x59,0x5e,0x6e,0x5c,0x46,0xd9,0x9b,0x2f,0x0e,0xb9,0x43, +0xf4,0x67,0x87,0x76,0x14,0x52,0xf4,0xef,0x24,0xfa,0xcd,0x3d, +0xf2,0xb3,0xff,0x37,0xfd,0x11,0xba,0xe2,0x9f,0x46,0xe9,0x07, +0x69,0x8c,0xfb,0xd2,0x51,0xd2,0x4f,0xe8,0xc9,0x9f,0x79,0x7b, +0xed,0xbb,0x45,0xbc,0x71,0x7b,0x3a,0xeb,0x2c,0x74,0xd6,0x74, +0xd5,0x23,0x8f,0x2c,0x7f,0x98,0x7d,0x0f,0x28,0x3b,0x7a,0x07, +0x85,0xaa,0x59,0xc3,0x8c,0x93,0xa6,0xd1,0x3b,0xb6,0xd1,0xb5, +0xca,0x3f,0x3d,0x67,0x45,0x1f,0x3d,0xb0,0x83,0xaa,0x4b,0x72, +0xb8,0xd5,0xc5,0x4d,0x37,0x3e,0x06,0x81,0xb1,0xb6,0x71,0xe1, +0xfe,0xe8,0xc9,0x8b,0x26,0x3d,0x74,0x2d,0x2c,0x1d,0xfa,0xc4, +0x3f,0x4e,0xc7,0x1c,0x94,0xb7,0x0f,0x95,0xee,0x85,0xaa,0x7a, +0xea,0xa1,0xeb,0x17,0x4e,0x2a,0xb8,0xc1,0xf6,0x59,0x01,0x9e, +0x39,0xb3,0xf2,0xcc,0xfd,0xd6,0xdf,0xcc,0x83,0xcf,0x98,0x4d, +0xeb,0xe8,0xeb,0x6f,0x3e,0xb7,0x95,0x7d,0x45,0x82,0xad,0xa5, +0xa0,0x6f,0xec,0xda,0xfc,0xbe,0x67,0x99,0xef,0xd6,0x91,0x46, +0xe9,0x2d,0x89,0xfc,0x78,0x52,0xba,0x34,0x86,0xbe,0xbd,0xf3, +0x1d,0xcf,0x9f,0xf1,0xd1,0xb7,0x5f,0x7a,0x9b,0x7d,0x85,0x8a, +0x17,0x98,0xbe,0xc7,0x9c,0xa7,0x05,0xec,0x9f,0xcb,0xe6,0xdb, +0xe8,0x76,0xb6,0x7c,0x82,0xbd,0x5c,0xb6,0x00,0xfd,0xe8,0x8e, +0xf7,0x5f,0xda,0x65,0x5b,0xcb,0xde,0xcd,0x59,0xd0,0x44,0xe9, +0x38,0xd7,0xb1,0x8e,0x73,0xa9,0x95,0xbe,0x7f,0xad,0xd1,0xf3, +0xff,0x02,0xca,0xd7,0x7a,0x36,0xb2,0xf9,0x91,0x25,0x56,0x7a, +0x50,0x79,0x4f,0xeb,0xa0,0xfb,0x63,0x79,0x2f,0x3f,0xe8,0xad, +0x1c,0xec,0xa0,0x87,0x62,0x1e,0xff,0xec,0xa0,0xfc,0xc8,0x30, +0x49,0x07,0xed,0xf2,0xe1,0x5f,0x5f,0xbb,0x26,0xdb,0x2e,0x7f, +0xfa,0xa5,0x74,0x36,0x9c,0x7e,0x2c,0x3d,0x6e,0x5c,0x69,0x3a, +0x2c,0x3f,0xfe,0xe8,0x78,0x23,0xfd,0xf8,0xcd,0x29,0x83,0xe3, +0xc7,0x86,0x0f,0xbe,0x69,0xca,0x55,0x76,0xfa,0xf9,0x73,0xdf, +0xff,0x10,0xf3,0x91,0x7c,0xef,0x70,0xc9,0x11,0x4e,0xe5,0x02, +0x77,0xcc,0x71,0xd3,0xb7,0xc7,0xd7,0x6d,0x78,0x27,0x9e,0xfe, +0xfd,0xa5,0x9d,0xaf,0x6c,0x7a,0xe4,0xa9,0xe5,0x9b,0x16,0x49, +0x9b,0xa9,0xbc,0xcc,0xfa,0x17,0x29,0x91,0x7d,0x6c,0x3b,0xdd, +0x48,0xff,0x25,0x59,0xa6,0x58,0xcf,0xcc,0x3e,0x33,0xeb,0xb7, +0xd9,0x26,0x2a,0xaf,0x57,0x3e,0x41,0x27,0xed,0x95,0x57,0xe0, +0x60,0x68,0xc5,0x2a,0x39,0xff,0xaf,0xd2,0x4e,0x79,0x25,0x95, +0x9f,0x4c,0x87,0x7a,0x60,0x1c,0x32,0x9c,0xa0,0xee,0x47,0xfe, +0xad,0x2e,0x9d,0x38,0x40,0xdd,0x6b,0x7e,0x40,0x2f,0x7d,0x8b, +0xd2,0x4b,0xcb,0xfb,0x2b,0x5e,0xc4,0x68,0xfc,0x13,0xf7,0xe4, +0x01,0xe1,0x54,0x32,0x2f,0x0a,0x9f,0xf8,0xc0,0x7d,0x37,0x8d, +0x89,0xe9,0xf2,0x39,0x95,0x9a,0x3f,0x14,0x3e,0xe1,0x81,0x7b, +0x6f,0xc4,0xc1,0x5f,0xa9,0x64,0xff,0xe1,0x57,0xa9,0xab,0xd4, +0x35,0xeb,0x57,0xd9,0x4e,0xa5,0xf8,0xc2,0xaf,0xdf,0xdc,0xbd, +0xd5,0xb6,0x69,0xcd,0x93,0x18,0x36,0x84,0x99,0x06,0xbe,0x6f, +0x95,0xf3,0xbf,0x66,0xff,0x86,0x6d,0x94,0x53,0x73,0x2b,0x4e, +0x1d,0x90,0x93,0xd9,0xdc,0x82,0x63,0xe8,0x99,0xe6,0x87,0x64, +0x07,0xfa,0xca,0xff,0xbc,0x73,0xd7,0x4d,0x37,0x5e,0x7f,0x57, +0x72,0x7c,0x84,0x75,0x70,0xc5,0x46,0x79,0xe9,0x71,0xe9,0x10, +0xff,0x42,0xdf,0x46,0xb9,0xe0,0xb8,0xf4,0xbe,0xd8,0xbd,0xfb, +0xb8,0xf4,0x3a,0xfb,0xd4,0xd0,0xac,0x9d,0x72,0x9f,0x0a,0xe3, +0x48,0x53,0x84,0xdd,0x1d,0x13,0x3e,0x60,0xd3,0xd4,0x03,0x7f, +0x8d,0x89,0x60,0xdf,0x30,0x18,0x2a,0x45,0x48,0x43,0x4d,0x11, +0xcb,0x9f,0x5c,0x28,0xfd,0x29,0x21,0xfa,0x95,0x3d,0xc6,0x88, +0x4d,0xf1,0x52,0x4f,0xd3,0x97,0xcf,0xdf,0x7d,0x43,0x7c,0x84, +0xf1,0xe9,0x1d,0xeb,0x77,0x7f,0x14,0xf3,0x39,0x35,0x7d,0xb9, +0xfa,0xf3,0xb5,0x07,0xd7,0x2f,0xa2,0x56,0xe5,0x0d,0xea,0x32, +0x74,0x1b,0xd2,0x2b,0x45,0xe1,0xee,0x9b,0xa8,0xf5,0xa8,0xd4, +0xde,0xf4,0xb7,0x47,0x3e,0x67,0xae,0xec,0x31,0xcc,0x95,0x4d, +0xad,0xd3,0xd9,0x4b,0xbb,0x9b,0x37,0xf2,0x91,0x1e,0x73,0x41, +0x53,0xa8,0x98,0xcf,0x3f,0xdf,0x51,0xf4,0x32,0x95,0xf2,0x3e, +0x74,0x4f,0x1c,0x22,0x8d,0xa4,0x83,0xe4,0x8f,0xf8,0x5f,0x65, +0x53,0xb6,0xec,0x21,0xdd,0xfe,0xd6,0x48,0x3a,0x52,0xba,0x3b, +0x45,0xbe,0x43,0xee,0x82,0x31,0xd2,0x30,0x65,0xd9,0xff,0x83, +0x8a,0x3f,0x74,0x24,0x9d,0xc1,0x66,0xf3,0xe6,0xda,0xee,0xa5, +0x33,0x2e,0x97,0xc3,0xf2,0x65,0x4b,0x2c,0x2d,0x50,0x06,0x0e, +0x4f,0x52,0xb7,0x39,0x4f,0xda,0xe7,0x90,0xdf,0xa7,0x1e,0xdf, +0x35,0x9f,0xc8,0x5f,0x2c,0x85,0x51,0x69,0x9f,0x49,0xde,0x8e, +0x22,0x52,0x66,0x9d,0x3f,0x69,0x95,0x87,0xd1,0xbd,0xee,0x5f, +0x46,0x49,0xcf,0xc1,0xac,0x2e,0xab,0x98,0x27,0xcd,0x74,0x1f, +0x1b,0x44,0x95,0x65,0x7e,0x15,0x49,0x60,0x3e,0xff,0xe4,0x3b, +0x2a,0x2b,0x45,0xfa,0xd4,0xb8,0x5b,0xde,0x4c,0x09,0x7e,0x3a, +0xc0,0x4c,0xae,0x25,0x0b,0x89,0xa1,0x6f,0xff,0x21,0xa3,0x88, +0x65,0xea,0xa4,0x3b,0xa7,0x90,0x84,0xdb,0x27,0xdd,0x7f,0x27, +0xe9,0x46,0xc2,0xd8,0x2d,0x95,0x95,0xe2,0x2e,0xdd,0xe0,0xdc, +0xbc,0x04,0xd2,0x52,0x9c,0xd1,0x89,0x58,0x7f,0xce,0x15,0x83, +0x88,0xc3,0x88,0xf1,0xb6,0x9b,0xef,0xbd,0x93,0x24,0xf8,0xdb, +0x8a,0xfc,0xd9,0x9d,0x7a,0x1e,0x37,0x01,0x4a,0x78,0xae,0x53, +0x74,0x47,0x92,0xdf,0xd7,0xdd,0xae,0x3b,0xa2,0x7b,0x49,0x77, +0x24,0xa1,0x38,0x3e,0x3d,0xa1,0x58,0xdf,0x4d,0xbf,0x1a,0xe1, +0x59,0xfd,0x47,0x06,0xbd,0xe1,0xeb,0xb0,0x5b,0xc3,0x3e,0x33, +0xde,0x69,0x2c,0x31,0x15,0x87,0x77,0x0d,0x7f,0x2a,0xfc,0xab, +0x26,0xdf,0x9b,0x8f,0x37,0xfd,0xd9,0x7c,0x9c,0xde,0xdd,0x2c, +0xa3,0xd9,0xed,0xcd,0x9f,0x6f,0x7e,0x24,0xe2,0xbf,0x51,0x4d, +0xa2,0x8e,0xb6,0x8c,0x8a,0x6f,0xd6,0x72,0x6f,0xab,0xeb,0xa3, +0x93,0x5a,0xfd,0x68,0x59,0x67,0xed,0x9d,0xf5,0x4e,0x1b,0x73, +0xe2,0x6b,0x59,0x4b,0x5a,0xf7,0x4c,0xfc,0xba,0x8d,0x19,0xe1, +0xf6,0xe8,0xa4,0xac,0x25,0xd1,0x1f,0xd9,0x8e,0xc7,0x2c,0xcc, +0xba,0x33,0xd6,0x19,0xeb,0x8e,0x3b,0xda,0x76,0xaa,0x7d,0x58, +0x7c,0xb3,0xf8,0x96,0xf1,0xe9,0x08,0x6b,0x12,0xb2,0x18,0x12, +0x8a,0x13,0x37,0x27,0xbe,0x96,0xf8,0x75,0xd2,0xfc,0xa4,0x27, +0x92,0xbe,0x4f,0x1e,0x95,0x3c,0x37,0xf9,0xfd,0xe4,0xbf,0x27, +0x57,0xa4,0x4c,0x4b,0xf9,0x36,0xf5,0xda,0xd4,0xaf,0xd3,0x36, +0xb5,0x6b,0xd2,0xae,0x30,0x3d,0x2e,0xfd,0xa1,0xf6,0x61,0xed, +0xef,0x6c,0x5f,0x92,0xd1,0x3b,0xe3,0xad,0xcc,0xf1,0x99,0xdf, +0x66,0xdd,0x99,0xb5,0x24,0xeb,0x1d,0x94,0x2f,0x1a,0x7c,0x01, +0x67,0x88,0x89,0x34,0x45,0x29,0x29,0x82,0x91,0x34,0x27,0x51, +0x38,0x8e,0x25,0x71,0xe0,0x61,0x02,0x49,0x27,0xcd,0x48,0x06, +0x71,0x10,0x2b,0xe9,0x40,0xba,0x13,0x1b,0xe9,0x89,0x90,0x46, +0x7a,0x93,0xbe,0xa4,0x1d,0xe9,0x4f,0xae,0xc1,0xb5,0x9b,0x11, +0x7a,0x91,0x07,0xc8,0x34,0x9c,0x9d,0x4e,0x66,0xe1,0x4a,0x01, +0xc2,0x40,0xb2,0x14,0xe1,0x2a,0x5a,0x48,0xb7,0x93,0x41,0xce, +0xc9,0xce,0xc9,0x64,0x88,0x73,0xaa,0xf3,0x36,0x32,0xd4,0x39, +0xdd,0x39,0x9d,0x8c,0x70,0xce,0x72,0xce,0x22,0x79,0xce,0x7c, +0xe7,0x22,0x32,0xd2,0xb9,0xd8,0xb9,0x9a,0x8c,0xcf,0x3e,0x9c, +0xfd,0x31,0xb9,0x89,0x44,0x92,0xce,0x95,0xc5,0xa4,0x4b,0xe5, +0x49,0xd2,0xb5,0xb2,0x9c,0x74,0xab,0x2c,0x41,0x7a,0x66,0xd2, +0x0f,0xe8,0x0f,0x0c,0x07,0xf2,0x80,0xd1,0x95,0x32,0x19,0x8b, +0xeb,0xe3,0x80,0xf1,0x95,0xe5,0xd9,0x87,0x89,0x39,0xfb,0x23, +0x9c,0x6f,0x4a,0x3a,0x13,0x0b,0xe9,0x02,0x74,0x05,0x2e,0xc3, +0x99,0x6e,0x88,0x07,0x22,0x1e,0x4c,0x72,0xc8,0x78,0xdc,0xf5, +0x31,0xf6,0x63,0x48,0xf3,0xca,0xe7,0x49,0x24,0x90,0x84,0xbc, +0x52,0x90,0x46,0x3a,0x90,0x59,0x59,0x4a,0x3a,0x20,0xce,0x01, +0x3a,0x83,0x8e,0x2e,0xb8,0xb3,0x2b,0xe2,0x6e,0x88,0x2f,0x07, +0x5f,0xfa,0x56,0xba,0x48,0x3f,0xa0,0x3f,0x30,0x1c,0xc8,0x03, +0xc6,0x22,0xf5,0x71,0xc0,0xd5,0xb8,0x67,0x3c,0xe2,0x09,0x88, +0x0b,0x2a,0x9f,0xcf,0x3e,0x5c,0xe9,0xca,0xfe,0x08,0xd7,0xad, +0x24,0xaa,0x72,0x09,0x72,0x39,0x86,0x5c,0xca,0x90,0x4b,0x19, +0x72,0x28,0x43,0x0e,0x65,0xa4,0x13,0xd0,0x99,0xd8,0x3d,0xb4, +0x32,0x3a,0x7b,0x23,0xe7,0xbe,0x38,0xdf,0xaf,0xf2,0x67,0xe4, +0x52,0x46,0x06,0x82,0xa2,0xe1,0x88,0xf3,0x2a,0x7f,0x46,0x8a, +0x3f,0x23,0xc5,0x9f,0xb3,0x3f,0xc6,0xb9,0x30,0xf0,0xa8,0x04, +0x3c,0x72,0x91,0xcb,0x04,0x8f,0xcc,0x28,0xd1,0x4a,0x94,0x68, +0x25,0xf2,0x72,0x79,0x28,0x9f,0x8e,0xf4,0x67,0x00,0x33,0x81, +0x59,0x40,0x01,0xae,0x37,0xc7,0x1d,0xe5,0x24,0x03,0xa9,0x66, +0xe2,0xce,0x4e,0xac,0xac,0x3c,0xad,0x52,0xf0,0x9b,0xa5,0x57, +0x8a,0xf4,0x8a,0xc9,0xe5,0xb8,0x7e,0xb5,0xc2,0x5b,0x32,0x01, +0xe8,0x42,0x0c,0x38,0x1b,0x8e,0xbd,0x26,0x88,0x29,0xd0,0x1c, +0xe9,0x47,0xe0,0x89,0x48,0x84,0x04,0x9c,0x4f,0x44,0x8d,0x24, +0x61,0x5f,0x2d,0x67,0x26,0x38,0xa6,0x96,0xb5,0x73,0xe5,0x6e, +0x72,0x69,0xe5,0x7f,0x90,0xcb,0x5f,0x91,0x8b,0x1b,0xf5,0x62, +0x44,0x2e,0x87,0x20,0x49,0x91,0x90,0x19,0x03,0x6a,0xd3,0x8d, +0xda,0x74,0x89,0xda,0x2c,0xe3,0x5c,0xbc,0xb9,0xb2,0x88,0x3c, +0x80,0x73,0xd3,0x80,0xe9,0x78,0x7e,0x06,0xf2,0x9c,0x89,0x78, +0x16,0xe2,0x02,0x3c,0xb7,0xb4,0xf2,0x6d,0xe7,0xd4,0xca,0x52, +0xe7,0x2d,0x95,0x25,0xce,0x5b,0x81,0xfc,0xca,0x62,0xe7,0x3c, +0xc4,0x05,0x88,0xe7,0x03,0x0b,0x2a,0x0b,0x9d,0x0b,0x11,0x2f, +0xaa,0x2c,0x72,0x2e,0x26,0x16,0xe7,0x12,0x12,0xe9,0x5c,0x8a, +0x78,0x19,0xb0,0x9c,0x98,0x9d,0x2b,0x80,0x95,0xc4,0xe8,0x5c, +0xcd,0xe9,0x6e,0x8e,0x5c,0x23,0x81,0x28,0x20,0x89,0xcb,0x02, +0xe3,0xcb,0x49,0xce,0xe3,0xae,0xb8,0xe3,0x32,0xc4,0xdd,0xc0, +0x9b,0x9e,0xa0,0x6a,0x00,0x8e,0x07,0x02,0x55,0x32,0x28,0x7b, +0x78,0x75,0x33,0x9e,0x2f,0x00,0x96,0x56,0xba,0x68,0x61,0xa5, +0x4c,0xb7,0x57,0xca,0xa0,0xb2,0x1c,0x54,0x96,0x83,0xca,0x72, +0x50,0x59,0x06,0x2a,0xcb,0x41,0x65,0x39,0xa8,0x2c,0x07,0x95, +0x2e,0x50,0x59,0x0e,0x2a,0xcb,0x50,0xb3,0x32,0x24,0xd3,0x80, +0xb2,0x87,0x63,0xaf,0x09,0x62,0x0a,0x30,0x1e,0x27,0x22,0xe5, +0x14,0xf0,0x2f,0x1d,0xe8,0x00,0xe4,0x00,0x5d,0x39,0x0f,0x65, +0x50,0xe4,0x42,0xfb,0x33,0x56,0xf1,0x0a,0xcf,0xcc,0x00,0x66, +0x02,0xb3,0x50,0xc6,0x5b,0x51,0xc6,0xa5,0xc0,0x32,0x60,0x39, +0xb0,0x02,0x40,0xb9,0xd1,0x86,0x0d,0xbc,0x36,0xcb,0x51,0x9b, +0xe5,0x28,0x7f,0x29,0x89,0x60,0x75,0x89,0x38,0x0a,0xc7,0x49, +0x95,0xa7,0xc1,0x83,0x5f,0xc0,0x83,0xef,0xc0,0x83,0xd3,0x28, +0x7f,0x19,0x2f,0x3f,0x93,0x8b,0x9e,0x95,0x5b,0x50,0x4e,0x19, +0x2d,0x3e,0x12,0x6d,0x1e,0x52,0x86,0xfb,0x67,0xe0,0xfc,0x4c, +0xc4,0xb3,0x78,0xf9,0x4b,0x51,0xfe,0x93,0x68,0xf1,0x16,0x94, +0x5d,0x46,0xd9,0x65,0x94,0x5d,0x46,0x59,0x59,0x39,0xcb,0x9d, +0x4b,0x81,0x65,0x38,0x5e,0x8e,0x78,0x05,0xe2,0x95,0xc0,0x2a, +0xe0,0x61,0x1c,0xaf,0xe6,0x3c,0x08,0xe7,0xf2,0xc4,0x6a,0xa1, +0x0c,0xb9,0x33,0x09,0x77,0xa1,0x5d,0x94,0xa3,0x5d,0x94,0xa3, +0x5d,0x94,0x73,0xee,0x0f,0x47,0x9c,0x07,0x4c,0x47,0x59,0x66, +0x02,0x4b,0x51,0x56,0x35,0xa7,0x7c,0x60,0x1e,0xc0,0x38,0xbc, +0x10,0xf1,0x22,0x60,0x09,0xb0,0x1a,0x5c,0x3e,0x0c,0x6d,0xf1, +0x11,0xc0,0xb8,0xdd,0x03,0xdc,0x36,0x22,0xb7,0x52,0x70,0xdb, +0x08,0x7e,0x45,0x2a,0xfa,0x0f,0xe5,0x8b,0x04,0xa2,0xd0,0x2e, +0x12,0x70,0x2e,0x11,0xb9,0x27,0x55,0x7e,0x86,0x1a,0xf8,0x09, +0x35,0xf0,0x13,0xa8,0x3a,0x84,0x5a,0xf8,0x09,0xb5,0xf0,0x13, +0x78,0x31,0x17,0xad,0x16,0x3a,0x0a,0xb2,0xd2,0x0f,0xe8,0x0f, +0x28,0xf2,0x51,0x42,0x06,0x83,0xba,0x61,0x78,0x36,0x97,0xeb, +0x8b,0x93,0x64,0x04,0xd7,0x19,0x27,0xc9,0x48,0xc4,0xa3,0x00, +0x26,0x3f,0x63,0x70,0xac,0x4a,0xfe,0xd5,0x95,0x27,0x20,0x43, +0x2e,0xde,0xde,0x58,0xa9,0x66,0x88,0x92,0xcd,0x02,0x0a,0x40, +0x0f,0x4a,0xe8,0x91,0x29,0x56,0xab,0xf3,0x11,0x2f,0xae,0x3c, +0x86,0x92,0x95,0x82,0xa7,0x2e,0xf0,0xb4,0x14,0x3c,0xdd,0x0d, +0x9e,0x96,0x82,0xa7,0x87,0xc0,0x53,0x17,0x78,0x5a,0x82,0x52, +0x97,0xa2,0xd4,0x27,0x51,0xea,0x93,0x28,0x75,0x09,0x93,0x31, +0x4d,0xcd,0x47,0xa0,0xdc,0x9d,0x2b,0xff,0x06,0x3e,0x97,0x41, +0xd2,0x7f,0x43,0x4d,0xcb,0xe0,0xf7,0xdf,0x51,0xc3,0xe5,0xa8, +0x61,0x33,0x6a,0xd8,0x2c,0x6a,0xb8,0x5c,0xd4,0x70,0x39,0x6a, +0xb7,0x54,0xd4,0xac,0x2a,0xd5,0x4c,0xa2,0x65,0x21,0xd1,0x2a, +0xcf,0xcb,0xd1,0x5b,0xb0,0x9a,0x8c,0x00,0x7f,0x13,0xb9,0x16, +0x38,0x83,0x16,0x6f,0x06,0xaf,0x64,0xf0,0x4a,0x06,0xaf,0x58, +0x2d,0xca,0xe0,0x09,0x64,0x09,0xf7,0x4c,0x43,0xaa,0x4a,0xcd, +0xb9,0x94,0x94,0x50,0xa3,0xac,0x6d,0x2c,0xc6,0x39,0x26,0xc1, +0x55,0xb2,0xe2,0x12,0x35,0x29,0xa3,0x4c,0x32,0x6a,0xa8,0x39, +0xd3,0x43,0x80,0x22,0xb9,0x67,0x51,0x43,0x67,0xb8,0xc4,0xb2, +0xd6,0x5a,0x80,0xbb,0x15,0x89,0x2b,0x07,0x77,0xd4,0x14,0xca, +0xc1,0x19,0x26,0x0f,0xe5,0x4c,0xff,0x20,0x8d,0x70,0xd4,0x43, +0x13,0xc4,0x66,0xd6,0xea,0x10,0x37,0xe7,0x2d,0xef,0x10,0xd2, +0x36,0x83,0xf6,0x12,0xd4,0xfd,0x49,0xd4,0xfd,0x49,0x2e,0x91, +0x1d,0x10,0xe7,0x00,0x9d,0x70,0x5f,0x67,0xa6,0x6d,0x39,0xe7, +0x98,0x94,0x96,0x41,0x16,0xca,0xbc,0x64,0xc1,0x05,0x59,0x60, +0x72,0x50,0x0e,0x39,0x28,0x17,0x72,0x50,0x2e,0xe4,0xa0,0x1c, +0x32,0xe0,0x82,0x0c,0x94,0x7b,0xfa,0x32,0x8f,0xce,0xe5,0x1a, +0xb0,0x14,0x7c,0x39,0x04,0xbe,0x1c,0x42,0x0d,0xfc,0x47,0xd4, +0xc0,0x7f,0x78,0x0d,0x14,0x70,0x59,0x70,0x41,0x16,0x5c,0xce, +0xc9,0xbc,0x36,0x5c,0xa8,0x0d,0x17,0x6a,0xe3,0xa4,0xf3,0x36, +0xc4,0xf9,0x38,0xa7,0x68,0x43,0xc6,0xcb,0x52,0x51,0x2b,0xa5, +0xa8,0x95,0x52,0xce,0xcf,0x55,0xb8,0x6f,0x35,0xfa,0xa8,0x2a, +0xb9,0x50,0x38,0x51,0x28,0x74,0x7c,0x21,0xb8,0x50,0x08,0x2e, +0xd8,0xc0,0x85,0x12,0x70,0xc1,0x06,0x9b,0xc0,0x06,0x3d,0x7f, +0x4c,0x69,0x0d,0xa4,0x15,0x38,0x52,0x0a,0x8e,0xb0,0x1e,0xb3, +0x14,0xdc,0x28,0x05,0x27,0x0a,0xa1,0xe3,0xbf,0x05,0x37,0xf6, +0x82,0x1b,0xdf,0x83,0x1b,0xef,0xa0,0xb6,0xed,0xe0,0x48,0xa5, +0x68,0xbb,0x12,0x6f,0xbb,0x4a,0xbb,0x95,0x50,0xf2,0x72,0x51, +0xf2,0x62,0x94,0xbc,0x54,0xe9,0x41,0x91,0xd7,0x04,0xe4,0x74, +0x73,0xe5,0x1a,0x94,0xbc,0x04,0x25,0x2f,0x41,0xc9,0x0b,0x51, +0xf2,0x42,0x94,0xbc,0x10,0x25,0x2f,0x44,0xc9,0x6d,0x90,0xbf, +0xe7,0x51,0xea,0xef,0x51,0xea,0x42,0x94,0xba,0x08,0xa5,0x2e, +0x44,0x89,0x0b,0x51,0xe2,0x42,0x94,0xb8,0x08,0x25,0x2e,0x44, +0x89,0x8b,0x50,0xe2,0x42,0x94,0xf8,0x65,0xe8,0x7f,0x33,0xf4, +0xbf,0x05,0x52,0x64,0x83,0x1e,0x34,0x43,0x0f,0x5a,0x84,0xfe, +0x37,0x2b,0xb2,0x80,0x58,0x91,0x28,0x09,0xdc,0x90,0xd0,0x3f, +0x69,0xf5,0x82,0xa2,0x13,0x9e,0x80,0x84,0x3d,0x01,0x09,0x2b, +0xe6,0x9a,0x89,0xf5,0xe8,0x99,0xa0,0x8e,0x69,0x61,0x26,0x69, +0x97,0xa3,0x3e,0x15,0x5d,0x50,0x5e,0xcd,0x4e,0x18,0x88,0x36, +0x5d,0x55,0xf7,0x2e,0x51,0xf7,0x2e,0x5e,0xf7,0xa3,0x58,0x9d, +0xe3,0xf9,0xab,0xf1,0xfc,0x74,0xf4,0xfe,0x33,0x80,0x99,0xc0, +0x2c,0xa0,0x00,0x79,0x31,0x8d,0x36,0x95,0x69,0x35,0xae,0xc5, +0xcd,0xce,0x7c,0x60,0x1e,0x80,0xba,0x77,0xce,0x07,0x16,0xa0, +0x4d,0x2c,0x44,0xbc,0x08,0x58,0x8c,0x9e,0x6e,0x09,0xb0,0x14, +0x58,0x86,0x7a,0x5f,0x5e,0xf9,0x04,0xda,0x4b,0x11,0xa4,0xfd, +0x65,0xa1,0x07,0x0e,0xa1,0x84,0xc5,0xaa,0x5d,0x82,0xfa,0x3e, +0x51,0x63,0x0f,0x50,0x26,0x7a,0x00,0x97,0x57,0x0f,0xf0,0x4b, +0x83,0xf7,0x00,0x4e,0xde,0x1e,0x23,0x78,0x7f,0x5c,0xce,0x25, +0xae,0xca,0x46,0x73,0x55,0xd9,0x68,0x95,0xa7,0x20,0x71,0xa7, +0x85,0xad,0x58,0x01,0xea,0xbe,0xd2,0x58,0x50,0x65,0x5e,0x16, +0x54,0x19,0xa4,0xcb,0x0d,0xa9,0x2a,0x83,0x54,0xb1,0xfe,0xb9, +0xdc,0xab,0x5f,0x56,0x35,0x18,0xa3,0xb2,0xcc,0xd3,0x6b,0x2c, +0xc6,0xf9,0x25,0x1e,0x6a,0x65,0x50,0x5b,0x0e,0x6a,0x5d,0xa0, +0xb6,0x54,0x50,0xcb,0x74,0x6b,0x19,0x78,0x5a,0xc6,0x2d,0xb3, +0x28,0xae,0x4f,0x19,0xd5,0x8a,0x65,0xc5,0xfa,0x69,0x03,0x28, +0x2b,0x07,0xcf,0x4a,0x04,0xcf,0xb8,0x4e,0xad,0xc6,0x9b,0x79, +0xc2,0x1a,0x40,0x8e,0x64,0x18,0xee,0x8f,0x54,0xf4,0x11,0xd7, +0x3e,0x16,0xc8,0x5f,0x24,0xef,0x93,0x22,0x20,0x7b,0x4a,0xbf, +0x54,0x48,0x62,0x91,0x5a,0x1c,0xc0,0x74,0x53,0x12,0xac,0xa2, +0x14,0xf0,0x25,0x1d,0xc8,0x80,0xe6,0x63,0x72,0xd9,0x01,0xfb, +0x39,0xdc,0xbe,0xfb,0x15,0x56,0x66,0x1b,0xd8,0x6f,0x46,0x61, +0xcb,0x1a,0x79,0xed,0xf5,0x46,0x1a,0x7d,0xf1,0x5c,0x3f,0xa0, +0x3f,0x30,0x80,0xf3,0x6a,0x0b,0x64,0xf5,0x18,0x64,0xf5,0x18, +0x78,0xb6,0x1b,0xb2,0x7a,0x0c,0x7c,0xdb,0x0d,0x59,0x3d,0x06, +0x59,0x2d,0x44,0x6b,0x2d,0x46,0x6b,0x3d,0x81,0xd6,0x5a,0x02, +0x99,0x2d,0x56,0x5a,0x2b,0xe2,0x07,0x80,0x69,0xc0,0xb9,0x32, +0xcc,0xfa,0x2c,0x0b,0xf4,0x54,0x19,0xf4,0x54,0x19,0x5a,0x6c, +0x89,0x46,0x9e,0x23,0xa1,0xa7,0x4a,0x15,0x99,0x86,0xa4,0x14, +0x80,0x1b,0x0b,0x88,0x5d,0xc8,0xb3,0x05,0x7c,0x2f,0x02,0xdf, +0x8b,0x84,0x3c,0x17,0x81,0xf7,0x85,0xe0,0x7d,0x31,0x78,0x5f, +0x04,0xde,0x17,0x83,0xf7,0x45,0xe0,0x7d,0x11,0x78,0xbf,0x1b, +0xbc,0xdf,0x0d,0xde,0x6f,0xe1,0x36,0xb0,0xda,0x0f,0xb0,0x1e, +0xfb,0x3f,0x5c,0x7e,0x7b,0x82,0xb2,0x81,0xa2,0xa5,0x15,0x70, +0xc9,0x2f,0xc7,0x58,0x40,0xb1,0xb2,0x4a,0xb9,0x95,0xa5,0xf0, +0x98,0x3d,0x5d,0x04,0x1e,0x9f,0x44,0x0a,0x45,0xbc,0x9d,0xc7, +0x22,0x95,0x38,0x40,0xb1,0x01,0x4a,0x91,0xe2,0x5f,0xc1,0xe7, +0xd3,0xe0,0x33,0xb3,0x8d,0x4e,0x82,0xc7,0xa7,0xc1,0xe3,0xd3, +0x4a,0x4d,0x23,0x75,0x85,0xc7,0x46,0xc1,0xe3,0x42,0xf0,0xb8, +0x14,0x3c,0x2e,0x05,0x8f,0x4b,0xc1,0xe3,0x52,0x6e,0x13,0x0c, +0x03,0x9f,0x73,0x81,0xe1,0x38,0x1e,0xc1,0xe5,0xb2,0x14,0xfc, +0x2d,0xe3,0xf6,0xc0,0x18,0x36,0x9e,0xf0,0xee,0x07,0x98,0x4d, +0x09,0xda,0x1e,0x40,0x7e,0xd3,0x00,0x85,0xc7,0x36,0xc1,0x63, +0x1b,0x4a,0x54,0x04,0x1e,0xa7,0x83,0xb7,0x90,0x67,0xf0,0xed, +0x16,0xe0,0x56,0xe0,0x36,0x26,0xd3,0x88,0x15,0xbe,0x5a,0xfc, +0xe8,0x09,0x95,0xaf,0x87,0xc0,0xd7,0x62,0xf0,0xb5,0x04,0x7c, +0x2d,0x14,0x7c,0x2d,0x05,0x5f,0x4b,0xb9,0xbd,0xd0,0x5b,0x48, +0x64,0xb9,0x90,0x48,0xb3,0x90,0x48,0xe8,0x0b,0x9c,0x53,0xf5, +0x45,0x02,0x74,0xbd,0x62,0x29,0xb9,0x79,0x2b,0x55,0x46,0x50, +0x5a,0x8e,0x14,0xfb,0x68,0x9d,0x2e,0x8d,0x76,0x2c,0x03,0x47, +0x64,0xde,0x52,0x55,0xed,0x38,0x06,0xc7,0xaa,0x75,0x3d,0x01, +0xf1,0xcd,0x48,0xf3,0x01,0xec,0x4f,0xe3,0x16,0x92,0xb7,0xb4, +0x41,0xe7,0x40,0x82,0xaa,0xb8,0x60,0x07,0x07,0x6c,0xd0,0x98, +0x91,0x9c,0x0b,0x8a,0xc6,0xd4,0x4a,0x58,0x09,0x38,0x71,0x02, +0x9c,0x38,0x21,0x34,0xe6,0x09,0x61,0x39,0x95,0x88,0xd6,0xcd, +0x2c,0xa7,0x13,0x9a,0xd6,0x8d,0x16,0x05,0x2e,0x94,0x09,0xdb, +0xa0,0x84,0xf3,0x22,0x16,0x94,0xc4,0xf1,0xd2,0x9b,0x15,0x19, +0x41,0x49,0x3d,0x23,0x20,0x9c,0x57,0x47,0x40,0x3d,0xab,0x8d, +0xee,0x94,0xd2,0xab,0x7a,0x69,0x14,0x1f,0x4b,0x94,0x6b,0xec, +0x00,0x97,0xc7,0x06,0xa8,0xea,0x05,0x65,0xc5,0x1e,0x44,0xcc, +0xed,0x41,0x5c,0x63,0xa3,0x99,0xc9,0xac,0xcf,0x67,0x7d,0x03, +0xd7,0x22,0xa5,0x4a,0xdf,0x80,0x73,0xaa,0xed,0xb4,0x94,0xf7, +0x70,0x2e,0x6f,0x5d,0x45,0x72,0x45,0x0b,0x28,0xf1,0xd1,0x02, +0x8a,0x45,0x0b,0x28,0xf2,0x68,0x19,0xa5,0x05,0x14,0xa3,0x6e, +0x0f,0x79,0xfa,0x7d,0x45,0xcb,0x28,0x7d,0x7f,0xa7,0xca,0x1f, +0xaa,0xb5,0x00,0x66,0x77,0xf5,0xc6,0xfd,0x7d,0x78,0x89,0x8b, +0x51,0xe2,0x62,0x94,0xb8,0x58,0x68,0x99,0x43,0xe4,0x2a,0x9c, +0x1f,0x84,0x52,0x0e,0x06,0x86,0x70,0xeb,0xa8,0x04,0x32,0x50, +0x02,0x8e,0x14,0x43,0x06,0x4a,0xc0,0x95,0x62,0xc8,0x40,0x09, +0x38,0x53,0x22,0x38,0x53,0x0a,0xce,0x9c,0xe4,0x9c,0xb9,0x9a, +0x73,0xe7,0x24,0xe4,0x41,0x1d,0xf7,0x68,0xb5,0x8f,0x5d,0xc8, +0x83,0x5d,0xb4,0x0c,0x7b,0x35,0xed,0xa3,0xb4,0x8c,0x12,0xa1, +0x6f,0x65,0xde,0x32,0x16,0x57,0x6e,0x81,0x1c,0x6c,0x71,0x32, +0x9b,0x62,0x19,0x62,0xa5,0xe7,0xdc,0x02,0x39,0xd8,0x02,0xce, +0x15,0x81,0x73,0x5b,0xc0,0xb9,0x2d,0xe0,0x5c,0x31,0x38,0x57, +0x0c,0x39,0x38,0x44,0xb2,0x84,0x7d,0x50,0x2e,0xc6,0x0d,0x66, +0xe1,0x37,0xb1,0x0b,0xb9,0xb0,0x8b,0x3e,0xab,0xfa,0x88,0x9f, +0x8d,0x76,0xfb,0x6a,0xec,0xde,0xd1,0x42,0xc2,0xc7,0x73,0xc9, +0xd6,0xd4,0x75,0xf5,0x11,0x1c,0xea,0xda,0x5e,0xad,0xae,0x59, +0xdb,0x2e,0x10,0xf6,0x3f,0xab,0xe7,0xc5,0xd8,0x57,0xac,0x1b, +0x75,0x74,0xcb,0xac,0x1b,0x0b,0xac,0x1b,0x0b,0x2c,0x9b,0x48, +0xde,0xa3,0xb6,0x13,0x63,0xf3,0x2d,0xa0,0x68,0x0b,0xc9,0x40, +0xaa,0x4a,0xfd,0x6d,0x01,0x65,0x5b,0x50,0x7f,0x25,0xe8,0xab, +0xb6,0xa0,0x37,0x65,0x9e,0x97,0x42,0xf4,0xa6,0xc5,0xb0,0x81, +0x2c,0xe8,0xb7,0x8a,0xc8,0xe5,0xd0,0x32,0x8a,0x26,0x2b,0x42, +0x3d,0x16,0x81,0x7a,0x36,0x02,0x3e,0x49,0x06,0xe2,0x3a,0xf3, +0xa9,0x0c,0xe5,0xa5,0x29,0x22,0x23,0x98,0x67,0x06,0xf1,0x28, +0xf4,0x10,0xa3,0x71,0x7d,0x0c,0xe2,0xb1,0x48,0x8b,0xf7,0x16, +0xb8,0x57,0x8c,0xeb,0x51,0x1f,0x27,0x51,0x1f,0x27,0xc1,0xcf, +0x22,0xf0,0xb3,0x28,0xfb,0x63,0x5c,0x4b,0x86,0x25,0x52,0x06, +0x4b,0xa4,0x0c,0x96,0x88,0xda,0xbe,0x64,0xde,0xbe,0xa2,0x70, +0x35,0x09,0x5c,0x66,0xd6,0x65,0x17,0xd5,0x37,0x41,0x4c,0x7c, +0x1c,0x31,0x16,0x7d,0xfe,0x38,0x8c,0x58,0xc6,0xf3,0xf1,0x83, +0x0c,0xde,0xc9,0x68,0x27,0x2e,0xb4,0x11,0x97,0xd2,0x3e,0x44, +0x1f,0x7f,0xab,0x5a,0xdb,0xe0,0xdf,0x22,0x40,0xb1,0x06,0x8d, +0x82,0x5f,0x91,0x82,0x5f,0x91,0xe0,0x57,0x24,0xb3,0x04,0x49, +0x7b,0x3e,0xfe,0x8e,0xc2,0x1e,0xcb,0x99,0xf9,0x31,0x3a,0xa1, +0xbe,0x3b,0x57,0x1e,0x05,0x05,0xdf,0x71,0x6f,0x40,0xb7,0xca, +0xaf,0x15,0x2a,0xb8,0x7c,0x9f,0x05,0x5f,0xce,0x82,0x2f,0x67, +0x21,0xdb,0x6e,0xf0,0xe2,0x2c,0xf8,0x70,0x56,0x8c,0xe0,0xcc, +0x62,0x04,0xc7,0xfa,0x7b,0x23,0x74,0x53,0x24,0x74,0x53,0x24, +0xf4,0x52,0x24,0xf4,0x92,0x0d,0xb5,0x18,0x09,0xbd,0x14,0x09, +0x9d,0x14,0xa9,0x58,0x1b,0x88,0x97,0xe0,0x5e,0xd6,0x6a,0x15, +0x3b,0xb5,0xca,0x4f,0xb1,0x8a,0x18,0xc1,0xb3,0xb3,0xe0,0xd9, +0x59,0xc8,0x20,0x74,0x2c,0x78,0xe6,0x02,0xcf,0x5c,0xe0,0x99, +0x8b,0xf7,0x7c,0xcc,0xf2,0x88,0xe4,0x36,0x80,0x2c,0xac,0x8f, +0x42,0xe1,0xd7,0x29,0x13,0xd6,0x5b,0x09,0xac,0x37,0x99,0x6b, +0x62,0x85,0x77,0x4c,0xb3,0x9e,0xe6,0xfc,0xe3,0xda,0xb5,0xca, +0x3a,0x01,0x1f,0x4b,0x61,0xd1,0x9d,0x04,0x2f,0x4b,0x61,0xd1, +0x9d,0x64,0x3d,0x27,0xf8,0x89,0x56,0xc4,0xa8,0x67,0xba,0x06, +0x14,0x29,0xfc,0x3c,0xa9,0xe1,0xe7,0x39,0x5e,0x06,0xc5,0xb2, +0x06,0x07,0xae,0x24,0x7a,0xd4,0xa4,0x01,0x92,0xac,0xb4,0x1a, +0x3b,0xf2,0xb0,0xa1,0xd5,0xd8,0x79,0x3f,0xa2,0xf4,0x21,0x2e, +0xde,0x87,0xb0,0xf1,0x5b,0x0a,0xea,0x3e,0x1d,0xe0,0xd6,0x1e, +0xe2,0x1c,0xe6,0x15,0x84,0x94,0x74,0x21,0xcd,0x84,0x5f,0xaf, +0x09,0xfa,0x94,0x08,0xd4,0x81,0x9e,0x5c,0x81,0x6b,0x3d,0xb9, +0x35,0xe3,0x46,0x3d,0xfc,0x86,0x7a,0x70,0x0b,0xff,0x80,0x1b, +0xf5,0xf0,0x1b,0x19,0xcb,0x3d,0x73,0xcc,0x9b,0x1c,0x89,0x56, +0x66,0x47,0xbd,0xa4,0xa3,0x5e,0xd2,0x51,0x2f,0xe9,0xa8,0x97, +0x74,0xd1,0x6f,0xa4,0x8b,0x7e,0xc3,0x2e,0x2c,0x6d,0x0b,0x4a, +0x98,0x8e,0xfa,0xb1,0xa3,0x7e,0xec,0xa2,0xdf,0xb0,0x88,0x7e, +0xc3,0x05,0x7d,0xc1,0xc6,0x94,0xa5,0x62,0xc4,0xcd,0xfa,0x0d, +0x17,0xf4,0x45,0xa9,0xd0,0xb4,0x27,0xd0,0xe2,0x98,0x7c,0xff, +0x86,0xba,0xfa,0x8d,0xfb,0x19,0x58,0xbf,0x81,0xfa,0xf1,0x8c, +0x9e,0x58,0x4b,0xac,0x40,0x4b,0xac,0x40,0x09,0x65,0xb4,0xc2, +0x0a,0xb4,0xc2,0x0a,0xd4,0xd9,0x7f,0x51,0x67,0x5f,0xa3,0xce, +0x7e,0x44,0x9d,0xfd,0x8a,0xfa,0x3a,0x82,0x12,0x36,0xe7,0xb2, +0xde,0x1b,0xf7,0xf5,0xad,0xfc,0x49,0xf4,0x1d,0x3f,0x71,0x8b, +0x66,0x38,0x62,0xa5,0xff,0x28,0xd7,0xf4,0x1f,0x65,0x42,0x2b, +0x1e,0x43,0x7b,0x38,0x86,0x92,0x46,0xa2,0x94,0x91,0x8a,0x7d, +0x20,0xc6,0x88,0xb7,0x55,0xf3,0x3f,0x95,0x0a,0xff,0x93,0xeb, +0x1c,0xa9,0x53,0xc6,0xd9,0xe5,0x9a,0x1e,0xb0,0x9c,0xf9,0x8b, +0x35,0x2d,0xb5,0x33,0x74,0xa1,0xea,0x39,0xec,0xa6,0x91,0xaa, +0xf1,0x88,0x6f,0xe6,0xad,0xb1,0x54,0x8c,0x5a,0x4b,0x85,0xdf, +0xa0,0x4c,0x8c,0x05,0xfc,0x59,0xdc,0x2e,0xe2,0x08,0x28,0xd7, +0xe7,0xca,0x74,0xb1,0x47,0xa6,0x07,0x40,0x72,0xea,0x28,0xd7, +0xd0,0x4a,0x67,0xa1,0x95,0xce,0xd6,0x41,0xbe,0x8d,0x5c,0xbe, +0x33,0x6a,0x49,0x75,0x89,0xf0,0x24,0x9e,0x45,0xcd,0x85,0x8a, +0x6a,0xd7,0x39,0x54,0x9f,0x4b,0xa9,0x99,0x5b,0x73,0x76,0x2e, +0x8f,0xac,0x15,0x2a,0x2d,0x70,0x8b,0xe2,0xc9,0xe5,0x63,0x0b, +0xe6,0xff,0x3c,0x89,0x16,0x68,0x46,0xdb,0x30,0x8b,0x16,0x68, +0x86,0x04,0x9b,0xa1,0x05,0xc3,0x51,0x92,0x72,0x3e,0x8e,0x50, +0xfc,0xa1,0x2e,0xf0,0xfe,0x57,0x31,0x9e,0x70,0x0b,0xbf,0xce, +0x59,0xde,0xbf,0x0d,0x20,0x61,0x90,0xd1,0x7f,0x09,0xff,0x0e, +0x4a,0x89,0x63,0xd6,0x12,0x99,0x15,0xce,0x5a,0xe3,0xcd,0x48, +0xbd,0xca,0x63,0x99,0x03,0x39,0xed,0x82,0x16,0x99,0x03,0x59, +0xed,0x22,0xc6,0x0d,0xe9,0xb4,0x90,0x84,0xd1,0xed,0x24,0x0c, +0x2d,0xd3,0x2e,0x5a,0xa6,0x05,0x2d,0x33,0x1d,0xa5,0xcc,0x41, +0xcb,0xcc,0x41,0xcb,0xcc,0x11,0xb6,0x6d,0xba,0x57,0xcb,0x64, +0xbe,0x30,0x17,0x5a,0x66,0x89,0x67,0xbc,0xf6,0x30,0x97,0xe5, +0x13,0x1a,0x0d,0xfa,0x2f,0xae,0x41,0xcb,0x15,0x5f,0xab,0x67, +0x0c,0x2c,0x0b,0x9b,0x56,0x16,0x76,0xac,0xcc,0x7d,0xd7,0xac, +0xee,0x2e,0xc3,0x13,0x4a,0xbd,0xb9,0x84,0x87,0x8f,0xd9,0xa8, +0xac,0xfe,0xce,0xa0,0xfe,0xfe,0x83,0xfa,0x93,0x84,0x6d,0xf2, +0x23,0xb7,0xda,0x3d,0x76,0x2a,0x1f,0x17,0xb3,0x31,0xb1,0xec, +0xe5,0x11,0x66,0xed,0xc0,0xe5,0xd5,0x0e,0x5c,0xa2,0x1d,0x94, +0xf2,0x5e,0x7d,0xb9,0x52,0x77,0xbc,0xe5,0x65,0x70,0xdb,0x53, +0xf1,0x06,0x33,0x8f,0xb5,0x89,0x8f,0x7f,0x59,0x1d,0x5c,0x01, +0x8d,0xa8,0xf8,0xd5,0x98,0x06,0x74,0x73,0x0d,0x38,0x80,0x7b, +0x49,0xcb,0x85,0x16,0x74,0x83,0x4a,0x09,0x1a,0xd0,0x22,0x2c, +0x68,0x85,0xef,0x33,0x84,0xe5,0x0c,0xb9,0x06,0x65,0xe5,0xa0, +0xac,0x5c,0x8c,0x23,0x94,0x31,0x9a,0xe2,0x6f,0xb0,0x08,0x7f, +0x83,0x45,0xd1,0x80,0xc2,0xa6,0x64,0x7a,0x62,0x25,0xf6,0x15, +0x1d,0xc1,0xfc,0x48,0x6e,0xf0,0xd5,0xcd,0x29,0xed,0x08,0x09, +0xb3,0x08,0x3d,0xcf,0xec,0x4a,0x0b,0xf8,0x7a,0x4c,0xf0,0xf5, +0x18,0x24,0x4c,0xe6,0x73,0x14,0x9d,0x61,0x1f,0x28,0xbe,0xdd, +0x93,0x62,0xb4,0x24,0xa1,0x04,0x15,0x28,0x41,0x05,0x4a,0x50, +0x01,0xea,0x4f,0x83,0xfa,0x0a,0x50,0x5f,0x01,0xe9,0x31,0x70, +0xdd,0x5d,0x65,0xfb,0x27,0x0b,0x1d,0x9e,0x2c,0x74,0xf8,0x31, +0xe1,0x2d,0x51,0x6d,0x7f,0x55,0x87,0xdb,0x85,0x0e,0x57,0xa8, +0x57,0x24,0xa4,0x54,0xf8,0x1f,0x54,0x09,0x71,0x09,0x9b,0x9f, +0xf9,0x04,0x4b,0x45,0x69,0x2a,0x50,0x9a,0x0a,0x94,0xe6,0x34, +0xfa,0x1d,0xa5,0x34,0x2e,0x4d,0x69,0xd8,0xc8,0xc7,0xcd,0x7b, +0xad,0x24,0xcf,0xfc,0x49,0xb9,0xb0,0x0c,0x5c,0x7c,0xa4,0xaf, +0x94,0xa6,0xca,0xcf,0x39,0x10,0xba,0x5a,0xf5,0x75,0x8e,0x82, +0x9e,0x57,0x4a,0xe3,0x46,0x69,0xdc,0x28,0x4d,0xa4,0x28,0x4d, +0xa4,0xa6,0x47,0x62,0xa5,0xb1,0xf9,0x29,0x8d,0x4d,0xb1,0xef, +0x11,0x57,0xc9,0x7d,0xb9,0xc6,0x07,0xec,0xd2,0xf8,0x29,0x58, +0xa9,0x4e,0x8a,0x1e,0x89,0xfb,0x4b,0x51,0xaa,0x9f,0x48,0xaa, +0xb0,0xff,0x5d,0x9a,0x79,0x86,0x13,0xdc,0xb3,0xa5,0xcc,0xbe, +0x95,0x0b,0x8f,0xa6,0x8b,0x8f,0x5c,0xfa,0x82,0x0f,0xfd,0x80, +0xfe,0xbc,0x4e,0x4e,0xa3,0x14,0xa7,0x51,0x0a,0x37,0x4a,0x61, +0x41,0x29,0x4e,0xa0,0x14,0x27,0x84,0xbd,0x63,0x11,0xf6,0x8e, +0x85,0x97,0x60,0x32,0x1f,0x85,0x6a,0xa5,0xc8,0xcc,0xc7,0x5f, +0x8a,0x04,0x19,0x39,0x75,0x4a,0x0f,0x73,0x1a,0x94,0x9d,0xe6, +0x7e,0x37,0x6f,0x5e,0x1f,0x12,0x92,0x73,0x88,0x4b,0x4e,0xa2, +0xc7,0x33,0xf5,0x9d,0x87,0xef,0x8a,0x04,0x31,0x1d,0xf4,0x4b, +0x35,0x9e,0x0f,0x40,0x6a,0x8a,0xff,0x47,0xe5,0xbb,0x5b,0xe8, +0x1d,0x55,0x8a,0xec,0x82,0xef,0x76,0xc1,0xf7,0x43,0x8a,0xbf, +0x82,0x18,0xa0,0x77,0x0c,0x1e,0x69,0xaa,0xce,0x7b,0xbb,0xf0, +0xbb,0x31,0x6b,0x20,0x12,0xbc,0x2f,0xf5,0xd2,0x39,0xa5,0xe0, +0xfd,0x49,0x61,0x0d,0xa8,0xbc,0x77,0x69,0x78,0x5f,0x4a,0xb2, +0x05,0xef,0xcb,0x3d,0xbc,0xd7,0xce,0xa5,0x29,0xad,0xdb,0x5c, +0x4d,0xaa,0xf8,0x3c,0x26,0xaf,0x0b,0x73,0xb5,0x79,0x10,0x75, +0x0e,0xe4,0x66,0xd8,0x52,0xd5,0xe7,0x7f,0x2c,0x62,0xf4,0x60, +0x51,0xe6,0xca,0x34,0x9e,0xc4,0x2a,0xdb,0xc6,0x52,0xd5,0x2e, +0x78,0x0f,0x67,0x16,0x16,0x71,0x75,0xff,0xa8,0xe2,0x1b,0x2d, +0x57,0xe7,0x4d,0x88,0x0e,0x56,0xbf,0x19,0x75,0x9c,0x84,0xfe, +0xab,0x6a,0x86,0xd4,0xc8,0x7b,0xe1,0x18,0xde,0xb2,0x55,0xeb, +0x2d,0x83,0x8f,0x12,0x4b,0x3d,0x16,0x5c,0x27,0xde,0xea,0xab, +0xe6,0x76,0x2f,0x43,0x09,0x95,0xfe,0xdb,0xf7,0x1c,0xaf,0x32, +0x16,0x76,0x8b,0x79,0x11,0xe6,0x01,0x28,0xf3,0xcc,0xf3,0xa6, +0x41,0x32,0x0a,0x21,0x15,0x85,0x9c,0x8e,0x2a,0xef,0x60,0xb9, +0xc7,0x3b,0xc8,0xbd,0xf3,0x9a,0xb9,0x60,0x36,0xbf,0xca,0x66, +0x71,0x95,0xb1,0xcc,0x31,0xf0,0xf0,0x18,0x78,0x78,0x0c,0x52, +0x62,0x16,0x9e,0x19,0x75,0xa6,0xe6,0x98,0x98,0xa9,0x39,0x26, +0x66,0x6a,0xca,0xa0,0x7f,0x22,0xd0,0x7b,0x45,0x8a,0x3e,0xba, +0x8c,0xf7,0x60,0x05,0x95,0x85,0x90,0x14,0x33,0x24,0xc5,0x0c, +0xde,0x1c,0x03,0x6f,0x8e,0x71,0x6f,0x49,0x3a,0xa7,0x8c,0x8f, +0x03,0xb9,0x9f,0x4e,0xf1,0x21,0x29,0x54,0xaa,0x7e,0x01,0x57, +0xd5,0xcc,0xa8,0x87,0x42,0x9b,0xa0,0xd0,0x2c,0x28,0x2c,0x04, +0x85,0x85,0xa0,0xb0,0x10,0xd4,0xed,0xd6,0x8c,0x90,0x0b,0x85, +0xdf,0xa8,0x50,0x8c,0x90,0x8b,0x3d,0x76,0x9f,0xe2,0x37,0x2a, +0x53,0x46,0x5a,0xc8,0x43,0x1d,0x4f,0x82,0x52,0x50,0x58,0x08, +0x0a,0x0b,0x41,0xe1,0x6e,0xa6,0xd1,0x2a,0x9f,0x47,0x9f,0xf7, +0x3c,0xfa,0xbc,0xe7,0x49,0x42,0xe5,0xdb,0xc2,0x22,0xf5,0xf6, +0xe7,0xb3,0xf1,0x20,0xf3,0xfd,0x16,0xa1,0xb6,0x4a,0x85,0x0c, +0xb2,0xf1,0xa0,0x1d,0x36,0x84,0x51,0xc8,0xa1,0x8b,0xcb,0xa1, +0x32,0xae,0x57,0xe7,0xe4,0xd8,0xcc,0x56,0x19,0x1f,0xd9,0x8e, +0x05,0x0f,0x99,0x6f,0x7f,0x3c,0xe2,0x09,0xdc,0x4f,0x5c,0xcd, +0x97,0xef,0x19,0x9b,0x4f,0xad,0x2c,0x46,0x7f,0x58,0x8c,0xfe, +0xb0,0x18,0xfd,0x61,0x11,0xc6,0xe7,0xc5,0xc2,0x8f,0x5f,0x2c, +0x2c,0x54,0x36,0x8f,0x5b,0xc8,0xf5,0xc6,0x72,0xe1,0xb3,0x57, +0x5a,0x95,0xea,0xcd,0x96,0x31,0x12,0x48,0x42,0x49,0x18,0x2f, +0x9b,0xf1,0x7e,0x1b,0xed,0x45,0xd3,0x1f,0x44,0x0a,0xb9,0x37, +0x7b,0xe4,0x7e,0x01,0xb4,0xa7,0x68,0xc5,0xac,0xce,0xb8,0x06, +0x2c,0xe7,0x63,0x4e,0xa5,0xf5,0xb9,0x78,0xeb,0xbb,0x0c,0x35, +0xcf,0xf4,0xcb,0xe5,0x18,0x0f,0xb2,0xf1,0xfb,0x50,0xaf,0x79, +0xdf,0xf1,0xd5,0x7a,0x7a,0x97,0xb0,0x76,0x5d,0xea,0x1c,0xcd, +0x39,0x3e,0xe6,0xea,0x73,0xbf,0xe5,0xc2,0xf6,0x2e,0xf7,0x6a, +0x81,0x6c,0x0c,0x6f,0x17,0x63,0x78,0x36,0x26,0xb5,0xf0,0xde, +0xbe,0x54,0x68,0xbb,0x12,0xde,0xb3,0x8f,0x16,0x76,0x41,0x4b, +0xc8,0x1b,0xf3,0xd8,0x30,0xef,0x8c,0xe2,0x95,0xe9,0x0c,0xfa, +0x55,0xa9,0x67,0xd2,0x3d,0x08,0xb2,0x35,0x9a,0xb5,0x27,0xbe, +0x56,0xc1,0xa6,0x59,0xa7,0x50,0xac,0x4a,0xb0,0x13,0x63,0x04, +0x12,0xab,0x49,0x89,0xad,0x8a,0x90,0x21,0x0f,0xb2,0xf0,0x13, +0x60,0x0c,0xc3,0xdb,0x53,0xf5,0x94,0x19,0x1d,0x83,0xf0,0xe4, +0x60,0x1c,0x57,0xe5,0x60,0xf1,0x99,0x03,0xb3,0x77,0x66,0x71, +0xfb,0x54,0xe6,0x74,0x9b,0xf9,0x5a,0x83,0xb1,0xcc,0x17,0x8c, +0x9a,0x9a,0xc5,0x2d,0xd8,0xb2,0x2a,0xcf,0x0c,0xf4,0xa6,0x62, +0x09,0x9d,0x04,0xe7,0x53,0x90,0x5e,0x3a,0xd0,0x01,0xc8,0x01, +0x54,0xdd,0xa8,0x58,0xa1,0x4c,0x7b,0x44,0x42,0x7b,0x44,0x42, +0x7b,0x44,0x42,0x7b,0x44,0x42,0x7b,0x44,0x32,0x9f,0x21,0xb4, +0x45,0x24,0xb4,0x45,0x24,0xec,0x56,0x03,0x24,0xb7,0x09,0x40, +0x81,0xe9,0xc0,0x0c,0x60,0x26,0x30,0x0b,0x30,0x55,0xb7,0xee, +0xb9,0x3d,0xe0,0x62,0xe3,0x6d,0x12,0x5f,0x8d,0x23,0x19,0x9c, +0x1b,0xc5,0x1a,0x2e,0xd8,0xf8,0x6c,0xa9,0xd2,0xe7,0xb8,0x44, +0x9f,0x63,0xe6,0x2d,0x61,0x10,0xae,0x2b,0xfd,0x8e,0xab,0x1a, +0x67,0xaa,0xd6,0x89,0x58,0xce,0xe1,0xce,0x02,0xae,0x65,0xab, +0x24,0x3a,0x96,0xfb,0xe3,0x98,0x2f,0x2e,0x09,0x65,0x54,0x72, +0x3f,0x21,0x72,0x8f,0x54,0xc6,0xc1,0x38,0x77,0x39,0x9f,0xb9, +0x33,0x22,0x67,0x0b,0xcf,0x75,0x34,0x30,0x16,0x94,0x8d,0x43, +0x3b,0x55,0x72,0xb3,0x8b,0xdc,0x8a,0x90,0x9b,0x05,0xb9,0x59, +0xf8,0x5c,0xcc,0x2c,0xd1,0x2f,0x2f,0x10,0xf3,0x0e,0x76,0x9f, +0xb5,0x9f,0xc1,0xb5,0xea,0x31,0x8d,0x04,0x18,0x3d,0x5a,0xff, +0x32,0x5e,0x5e,0x6d,0xae,0xda,0x32,0xda,0x35,0x65,0x54,0x73, +0x2d,0xe7,0x12,0x50,0x50,0x6d,0xc4,0x57,0x86,0x51,0x7f,0x75, +0x2e,0xbb,0x78,0x8e,0xca,0x48,0xc3,0x28,0x56,0xa4,0xb0,0x19, +0x36,0x97,0xc7,0x7b,0xc6,0x72,0xd5,0x72,0xf9,0x5c,0x0e,0x9f, +0x9b,0xbb,0xda,0x0a,0xb5,0x14,0x2c,0x12,0x9c,0x76,0x6a,0x7a, +0x13,0xe6,0x1d,0x33,0x72,0x4e,0x2b,0x7e,0x7d,0x75,0x85,0x8e, +0xdd,0xb3,0x9a,0x48,0xe9,0x45,0x5c,0xc2,0xb3,0x59,0x2a,0x3c, +0x9b,0xe5,0x7c,0xae,0x8f,0x51,0x54,0xd5,0x93,0x14,0x8b,0x9e, +0xa4,0x54,0xf4,0x24,0xa5,0x62,0xce,0xdf,0x25,0xe6,0xfd,0x14, +0xff,0x3e,0xef,0x49,0x84,0xfd,0xcd,0x66,0x84,0x66,0x81,0x32, +0xa5,0x2d,0x9c,0x14,0x23,0x03,0xe6,0xcf,0x35,0x80,0x5f,0x8c, +0xe2,0x72,0x8d,0x6f,0xfe,0x84,0x57,0x9b,0x55,0x6a,0x4b,0x95, +0x50,0x56,0x4b,0x66,0xbe,0x42,0x88,0xc9,0x88,0x56,0x32,0xab, +0x6a,0xcb,0x16,0x50,0x22,0x6f,0x45,0x8e,0x4a,0x4d,0x29,0xeb, +0x25,0xb2,0x34,0x12,0x59,0xa4,0x91,0x11,0xd9,0x4b,0x46,0x2c, +0x22,0x77,0x8b,0x22,0x9d,0xbc,0x8d,0x54,0x59,0x2d,0x0a,0x25, +0x2e,0xae,0x97,0xaa,0xbc,0xff,0x8a,0x25,0xa3,0x78,0xfe,0x59, +0x8f,0x6b,0x53,0x7a,0x10,0xd6,0xeb,0x72,0x8d,0x12,0x29,0x34, +0x4a,0x91,0x87,0x42,0x2e,0xc5,0x5c,0xa7,0x32,0x1e,0x55,0x30, +0xcd,0x02,0x4a,0xdd,0x9a,0x15,0x1e,0x2e,0x12,0x0d,0x6d,0x6e, +0x11,0x63,0x70,0xd8,0x2b,0xe0,0x4d,0x57,0x6e,0x75,0x6c,0xe1, +0x3d,0xad,0xd6,0xea,0x60,0x35,0x58,0xb5,0xba,0xac,0x5c,0xac, +0xca,0x10,0xbe,0x66,0xee,0xb7,0x54,0x6a,0x68,0x99,0xb2,0x7e, +0xc0,0x63,0x89,0xc4,0x88,0xde,0x53,0xb1,0x40,0xaa,0xe6,0x26, +0x8b,0x44,0xef,0x59,0xc8,0x73,0x54,0x7a,0xcf,0x27,0xb8,0x37, +0x75,0x00,0xef,0x21,0xd9,0x5c,0x4f,0x89,0xe8,0x1d,0x4b,0x19, +0xf7,0x3d,0xf3,0xf9,0x8b,0xc1,0xf1,0x25,0x7c,0x26,0x42,0x99, +0xa7,0x57,0x56,0x2a,0x9c,0x64,0xda,0x88,0xaf,0x51,0x31,0xf3, +0x32,0x79,0xb8,0x8f,0x63,0x0f,0xe7,0xb9,0x75,0xc5,0xca,0x78, +0x42,0xe4,0xc8,0xca,0x09,0xfb,0x1d,0xd2,0xd6,0x0f,0xe8,0xcf, +0xf4,0x04,0x2f,0xa7,0x11,0xe5,0x34,0x56,0x2b,0xa7,0x32,0xff, +0xee,0x52,0xe4,0xa0,0xaa,0xbc,0x28,0xa7,0x11,0xe5,0x34,0xf2, +0x72,0x9a,0xc5,0x9a,0x07,0x95,0x93,0xc7,0xfc,0xe6,0xc0,0xad, +0x81,0x73,0x72,0x29,0x17,0x39,0x78,0x73,0x53,0x56,0x73,0x11, +0x6b,0xa0,0x58,0x4e,0x99,0xbc,0x17,0x3e,0x26,0x72,0x62,0x7a, +0xbe,0x50,0xd8,0x1e,0x4a,0xbd,0xa9,0x75,0xa6,0xe4,0x64,0x26, +0xa3,0xaa,0xe5,0x24,0xac,0x20,0xee,0xff,0x57,0x72,0x62,0xeb, +0x7f,0x98,0x5d,0xab,0xd8,0x0e,0xb2,0xc8,0x49,0x2b,0xc3,0x2a, +0x17,0x3b,0x79,0x38,0xa9,0x58,0x3e,0xaa,0xb4,0xa8,0x63,0xea, +0xea,0xe5,0x61,0xb9,0x44,0x6a,0x72,0x51,0x66,0xb4,0x57,0xa1, +0x0e,0x1f,0x16,0x2b,0x8e,0x58,0x6f,0x17,0x27,0x66,0x86,0xce, +0x20,0xb7,0x33,0x22,0xb7,0x33,0xc8,0xed,0x8c,0x87,0xa3,0x97, +0xb2,0x55,0x76,0x1e,0xf9,0x64,0x65,0x8d,0x14,0xab,0x47,0xca, +0xb8,0x3f,0x7d,0x2c,0x28,0x51,0xa4,0x45,0x95,0x47,0x45,0x5a, +0x96,0x88,0xb5,0x2d,0x6a,0xae,0xab,0xb9,0x4e,0x2b,0x23,0xed, +0x3d,0x9e,0xd5,0x14,0xe4,0x9c,0xce,0x7c,0x54,0x5c,0xb3,0x32, +0x7f,0x8e,0x11,0xbd,0xa8,0x51,0xf8,0x88,0x8b,0x91,0xb3,0x8c, +0x9c,0x4b,0x90,0xf3,0x49,0xa1,0x6d,0x8b,0x94,0xf5,0x8e,0xe7, +0xd4,0x69,0x99,0xa6,0x4e,0x65,0xaf,0xb9,0x4a,0x99,0x8d,0x5b, +0x3d,0x7c,0x60,0x32,0xbc,0x1c,0xb2,0xab,0xcc,0xee,0xb3,0xde, +0xd4,0x00,0x7e,0x94,0x29,0x23,0x09,0x4f,0x5d,0x97,0x81,0x2b, +0x1e,0xdb,0x9d,0xaf,0x17,0xd4,0xd8,0xee,0x9c,0x27,0x72,0x55, +0x0b,0xe2,0xb6,0xcf,0x16,0xce,0x17,0x85,0x32,0xb3,0xa0,0xcc, +0xa5,0x91,0x36,0xb5,0xed,0x32,0x5e,0x9d,0xf4,0xc1,0xab,0x32, +0x21,0x71,0xac,0x76,0x3c,0x6d,0x98,0xcb,0x42,0x12,0x74,0x9a, +0xac,0xac,0x8b,0xf4,0xf0,0x46,0xa5,0xa0,0x48,0x69,0x51,0x5c, +0x0a,0x7d,0x6b,0x0e,0x55,0x0a,0x19,0x05,0xca,0x7c,0x9e,0xab, +0xaa,0x65,0x71,0x2d,0xe2,0xaa,0x2e,0x89,0x9c,0x2f,0x15,0x62, +0xd5,0x83,0xbb,0x1a,0x25,0x26,0x21,0xf7,0x8a,0x6d,0x33,0x43, +0xac,0xe3,0x5b,0xc0,0x7c,0x54,0xc2,0xf2,0x51,0xd7,0xc6,0x16, +0x71,0xef,0x12,0x9f,0x65,0x40,0xac,0xac,0xf6,0x53,0x7b,0x74, +0x5c,0xe7,0xb3,0x54,0xca,0x0c,0x95,0x4d,0xcc,0x50,0xb1,0x91, +0x66,0x73,0x3e,0xab,0xe2,0x59,0xaf,0x29,0xa4,0x83,0x7b,0xa2, +0x85,0x64,0x74,0xe6,0x6b,0x35,0xcb,0xc5,0x3a,0xcd,0x72,0x5e, +0xe2,0x2b,0xd8,0xbc,0x1e,0xae,0xf6,0xae,0xfc,0xad,0xfa,0x9c, +0x07,0x2c,0xef,0xc1,0x48,0x5d,0x9d,0xf7,0x18,0x83,0x11,0xdb, +0x38,0x12,0x06,0x8d,0x6d,0x24,0xd7,0x02,0xcc,0x47,0x70,0xce, +0x5c,0x2d,0x68,0x60,0x96,0xee,0xb9,0xab,0x5b,0x2c,0x1a,0xfb, +0xdc,0xe2,0x99,0xab,0x55,0x67,0x6a,0xd4,0xb5,0x5b,0x8a,0xed, +0x2f,0x3c,0x79,0xc8,0x5f,0x59,0x09,0x7e,0xda,0x30,0xac,0xda, +0x7a,0xf1,0x2b,0xf8,0x7a,0xf1,0x75,0x9e,0xf5,0xe2,0x51,0x88, +0x94,0x55,0x7e,0x16,0xf0,0xc3,0x4e,0x92,0x51,0x6e,0x07,0x4a, +0xd4,0x85,0x74,0x27,0xbd,0x50,0x93,0x83,0x3d,0x6b,0xc6,0x3b, +0x88,0xfb,0x75,0xa8,0x0b,0x8a,0xd8,0x0a,0x4d,0x11,0x0f,0x4e, +0xb5,0x87,0xa5,0xd0,0x11,0xfd,0x5a,0x0f,0x68,0xa1,0x01,0x64, +0x88,0xb8,0x4b,0x0f,0xfb,0xb2,0x19,0x69,0x41,0x5a,0xa3,0x37, +0x4e,0x20,0xa9,0xd0,0xc8,0xd9,0xa4,0x13,0x78,0x77,0x05,0xe9, +0x03,0xee,0x0c,0x3d,0x27,0x55,0x03,0xea,0xa4,0x39,0xec,0xf6, +0x36,0xd0,0x0a,0x89,0x18,0xc9,0x66,0xe2,0x4a,0x67,0xd4,0xd6, +0x95,0x90,0xaa,0xab,0xc8,0x30,0x71,0x57,0x18,0x69,0x8a,0xb1, +0x47,0x2b,0xf4,0x60,0x6d,0x51,0x4f,0xed,0xd0,0xf7,0x5e,0x42, +0x2e,0x45,0x4d,0xf4,0x84,0xdc,0x0d,0x22,0xb9,0x64,0xf8,0xa4, +0x49,0xb7,0xdf,0xaf,0x2b,0xf5,0xb7,0xbd,0xf1,0xc6,0x3b,0xee, +0xd6,0xfd,0xe0,0x6f,0x7b,0xd3,0x9d,0x77,0xdd,0xa1,0xfb,0xd9, +0xdf,0x76,0xf2,0xbd,0x93,0x6e,0xd4,0x95,0xfb,0xdb,0xde,0x7e, +0xcb,0x94,0x49,0xba,0xff,0xfa,0xdb,0xde,0x89,0xdc,0xf5,0x61, +0x7e,0xb7,0x0f,0xdc,0x71,0xaf,0xbe,0x99,0xbf,0xed,0x7d,0xec, +0x9e,0x96,0x7e,0xb7,0xb7,0xdc,0x39,0x59,0x1f,0xed,0x77,0x7b, +0x5f,0x87,0x4b,0xf4,0x09,0x01,0xb6,0x39,0xfa,0x8c,0x00,0xdb, +0x8e,0xfa,0x4e,0x01,0xb6,0x9d,0xf4,0x57,0xf8,0xdd,0x3e,0x70, +0xc3,0x7d,0xfa,0x81,0xfe,0xb7,0x77,0xdf,0xa7,0x1f,0xe6,0x6f, +0x3b,0xf3,0xe6,0x7b,0xef,0xd2,0x8f,0xf2,0xb7,0x85,0xb4,0xea, +0x3d,0xef,0x22,0x28,0x7b,0x06,0x7e,0x2e,0x0c,0x52,0xcc,0x8e, +0xc2,0xf9,0x51,0x4b,0xc8,0x88,0xf2,0x96,0x02,0xdb,0x36,0xe5, +0xe7,0x4c,0x90,0x39,0x13,0x5f,0xcf,0xcf,0x1e,0x67,0x7b,0xcd, +0xb0,0xa7,0xe3,0x7b,0xcd,0xb1,0xa7,0xe7,0x7b,0x11,0xd8,0x33, +0xf0,0xa7,0x22,0xf9,0x36,0x8a,0x6f,0x5b,0x40,0xda,0xb3,0xc8, +0x6a,0xf2,0x8b,0x7e,0x83,0x6e,0x88,0x6e,0xa6,0x6e,0x9b,0xee, +0xbf,0xfa,0xcd,0xfa,0xde,0xfa,0x0d,0xfa,0xeb,0xf5,0xf7,0xeb, +0x8f,0xe8,0x97,0x60,0x6f,0x33,0xe2,0x6f,0xf5,0xff,0x6d,0x72, +0x8d,0xa0,0xae,0x09,0xf2,0xec,0x44,0xda,0x38,0x67,0x65,0x1f, +0xce,0xfe,0xc8,0xb9,0xd8,0xb9,0xc4,0xb9,0xd4,0xb9,0xcc,0xb9, +0xdc,0xb9,0xc2,0xb9,0xd2,0xb9,0xca,0xf9,0xb0,0x73,0x35,0x3f, +0x5e,0x82,0x2b,0x9a,0x73,0x9c,0xce,0x28,0x9e,0x6b,0x6f,0x04, +0x1d,0xda,0x0a,0x74,0x09,0xdd,0x4f,0x3f,0x61,0xbe,0x37,0xe8, +0x84,0xe6,0xfc,0xed,0x80,0x28,0x62,0x50,0xdf,0xc2,0xd0,0x3b, +0xb9,0xbd,0x95,0x82,0x16,0xd6,0x01,0x6d,0xa1,0x3b,0x9e,0x1a, +0x88,0xf6,0x32,0x8a,0x84,0x21,0xe5,0xfc,0xec,0xe2,0xec,0x4f, +0x88,0x1e,0xb9,0xdc,0x8a,0xed,0x52,0xe8,0x16,0x3d,0xf2,0xbc, +0x05,0xdb,0xe5,0xd0,0x2b,0x7a,0xe4,0x5b,0x80,0xed,0x4a,0xe8, +0x16,0x3d,0xf2,0x5f,0x80,0xed,0xc3,0xd0,0x2f,0x7a,0xd0,0xb6, +0x88,0x6b,0x08,0xe5,0x3d,0x8f,0x81,0xc8,0xad,0x19,0x5a,0x71, +0x27,0x4e,0x5d,0x04,0x79,0x12,0xc7,0xd3,0x10,0x9e,0xc0,0xf1, +0x34,0xe5,0x1c,0xfd,0x05,0xe7,0x1e,0x24,0x0f,0xd2,0x32,0x1c, +0x3f,0x58,0x75,0x8e,0x7e,0x83,0x80,0x73,0xf4,0x1b,0x5e,0x53, +0xd3,0x70,0xc7,0x37,0x1a,0xfe,0xc4,0x11,0xea,0x9c,0x85,0x12, +0xdd,0x8a,0xb2,0xdd,0xe2,0x9c,0xe7,0x2c,0x70,0xce,0x77,0x2e, +0x70,0x2e,0x44,0xee,0x7a,0xce,0xfb,0x18,0xfe,0x16,0x06,0xe1, +0x6f,0xae,0x24,0xe1,0x79,0x1d,0x6a,0x56,0x67,0x3a,0x2b,0x24, +0xc0,0xc2,0xde,0x6d,0xc1,0xd8,0x45,0x3d,0x5f,0xea,0x39,0x8f, +0xa7,0xf9,0xfb,0x13,0x44,0x93,0x97,0x93,0xf9,0xf4,0x7c,0xd4, +0x82,0x8f,0x73,0xb8,0x5b,0x8f,0x3a,0x47,0xee,0x9c,0xf3,0x66, +0x0d,0x2f,0x2e,0xe5,0xb1,0x11,0xfc,0xb0,0x70,0xfb,0x25,0x9d, +0xee,0x40,0xfe,0x03,0xc8,0x20,0xba,0x93,0xc7,0x43,0xe9,0x7b, +0x78,0x76,0x00,0xec,0x71,0x3d,0xce,0x6d,0xc7,0x76,0x28,0x7f, +0x03,0x67,0x80,0x86,0x92,0x66,0xc4,0x80,0x7a,0x81,0x54,0x70, +0x9e,0xb4,0xe0,0x35,0xa6,0xf3,0xe4,0x60,0xca,0x5e,0xca,0x9f, +0xe8,0x5d,0xed,0xdc,0x42,0x7e,0x4e,0x7b,0xdf,0xb0,0xec,0x9d, +0x9a,0xa3,0x74,0xe7,0x34,0x4d,0x0e,0x31,0xac,0xef,0xf0,0xc3, +0x55,0x5e,0xae,0x6a,0x69,0xef,0xe2,0x69,0xb7,0xd0,0x3c,0x6f, +0x26,0x7a,0xc7,0x0b,0x8e,0x07,0x59,0x1b,0x0b,0x3f,0xd8,0x64, +0x79,0x95,0xb4,0x85,0xbd,0x44,0x26,0x93,0xa3,0xe4,0x14,0xa9, +0xd0,0x99,0x75,0x71,0x3a,0xa7,0xae,0xa7,0x2e,0x4f,0x77,0x93, +0x6e,0x9a,0x6e,0x89,0x6e,0x93,0xee,0x59,0xdd,0x4b,0xba,0x37, +0x75,0x85,0xba,0xbd,0xba,0x0f,0x75,0x47,0x75,0x7f,0xd3,0x95, +0xea,0x7e,0xd0,0xfd,0xa2,0x3b,0xab,0xd7,0xeb,0xcd,0xfa,0x96, +0xfa,0x18,0x7d,0x92,0x3e,0x43,0x9f,0xa3,0xef,0x86,0x76,0x33, +0x48,0x9f,0xa7,0x1f,0xaf,0xbf,0x41,0x7f,0xab,0xfe,0x5e,0xfd, +0x4c,0xfd,0x7c,0xfd,0x32,0xfd,0x1a,0xfd,0x26,0xfd,0xb3,0xfa, +0x97,0xf4,0x6f,0xea,0x0b,0xf5,0x7b,0xf5,0x1f,0xea,0x8f,0xea, +0xff,0xa6,0x2f,0xd5,0xff,0xa0,0xff,0x45,0x7f,0xd6,0xa0,0x37, +0x98,0x0d,0x2d,0x0d,0x31,0x86,0x24,0x43,0x86,0x21,0xc7,0xd0, +0xcd,0xd0,0xd3,0xd0,0xdf,0x30,0xc4,0x90,0x67,0x18,0x67,0xb8, +0xd6,0x70,0x93,0xe1,0x56,0xc3,0xdd,0x86,0x69,0x86,0xd9,0x86, +0xf9,0x86,0x25,0x86,0x55,0x86,0x75,0x86,0x4d,0x86,0x67,0x0c, +0xcf,0x1b,0x5e,0x31,0xbc,0x69,0xd8,0x66,0xd8,0x65,0x28,0x32, +0x7c,0x68,0x38,0x62,0x38,0x6e,0xf8,0xca,0x50,0x6a,0xa8,0x08, +0x6b,0x12,0x16,0x13,0x96,0x15,0x76,0x45,0xd8,0xf0,0xb0,0x1b, +0xc2,0xee,0x0f,0x7b,0x28,0xec,0x51,0x94,0xf4,0x76,0x72,0x07, +0xb9,0x93,0xdc,0x45,0xee,0x26,0xf7,0x90,0x7b,0xc9,0x7d,0x74, +0x57,0xf6,0x55,0x24,0x9c,0xee,0x77,0xf4,0x73,0x6c,0x73,0x0c, +0x77,0x52,0xf0,0x71,0x31,0x69,0x42,0x0f,0x64,0x6d,0xcf,0xfa, +0x24,0xeb,0x9f,0x8e,0x11,0xce,0x66,0xe0,0xeb,0x12,0x9c,0x39, +0x98,0xb5,0x23,0xeb,0x48,0xd6,0xb7,0x8e,0x3c,0x67,0x73,0xf0, +0x79,0x29,0xce,0x1c,0xca,0xda,0x99,0xf5,0x69,0xd6,0x77,0x8e, +0x91,0xce,0x08,0xf0,0x7d,0x19,0xce,0x7c,0x98,0xb5,0x2b,0xeb, +0x68,0xd6,0xf7,0x8e,0x51,0xce,0x48,0xd4,0xc3,0x72,0x9c,0x39, +0x9c,0xb5,0x3b,0xeb,0x58,0xd6,0x49,0xc7,0x68,0x67,0x14,0xea, +0x65,0x05,0xce,0x7c,0x94,0xf5,0x7e,0xd6,0x67,0x59,0xa7,0x1c, +0x63,0x9c,0x2d,0x50,0x4f,0x2b,0x71,0xe6,0xe3,0xac,0x3d,0x59, +0x9f,0x67,0xfd,0xcb,0x31,0xd6,0xd9,0x12,0xf5,0xb6,0x0a,0x67, +0x8a,0xb3,0xf6,0x66,0x1d,0xcf,0xfa,0xc1,0x31,0xce,0xd9,0x0a, +0xf5,0xf8,0x30,0xce,0x7c,0x92,0xb5,0x2f,0xeb,0xaf,0x59,0xff, +0xe7,0xb8,0xda,0x69,0x71,0x2e,0x82,0xc4,0x1a,0x1c,0x2d,0x1c, +0xef,0x39,0xe3,0x10,0xb7,0x74,0x14,0x3a,0xdb,0x22,0x6e,0xe5, +0xd8,0xee,0xb4,0x23,0xb6,0x38,0x76,0x38,0xe3,0x11,0x5b,0x1d, +0x3b,0x9d,0x09,0x88,0x5b,0x3b,0x76,0x39,0x13,0x11,0xb7,0x71, +0xec,0x76,0xa2,0x4d,0x39,0xa2,0x1d,0xef,0x3b,0x93,0x11,0xdb, +0x1c,0x7b,0x9c,0x29,0x88,0x63,0x1c,0x7b,0x9d,0xa9,0x88,0x63, +0x1d,0xfb,0x9c,0x69,0x88,0xe3,0x1c,0x45,0xce,0x76,0x88,0xdb, +0x3a,0x3e,0x70,0xa6,0x23,0xb6,0x3b,0xf6,0x3b,0xdb,0x23,0x8e, +0x77,0x1c,0x70,0x66,0x20,0x4e,0x70,0x1c,0x74,0x66,0x22,0x4e, +0x74,0x1c,0x72,0x66,0x21,0x4e,0x72,0x7c,0xe8,0x74,0x20,0x4e, +0x76,0x1c,0x76,0x3a,0x11,0xa7,0x38,0x3e,0x72,0x66,0x23,0x4e, +0x75,0x7c,0xec,0xec,0x80,0x38,0xcd,0x51,0xec,0xbc,0x04,0x71, +0x3b,0xc7,0x27,0xce,0x1c,0xc4,0xe9,0x8e,0x23,0xce,0x8e,0x88, +0xdb,0x3b,0x3e,0x75,0x76,0x42,0x9c,0xe1,0x38,0xea,0xec,0x4c, +0x0c,0x59,0x92,0x23,0xd3,0xd9,0x1d,0x71,0x85,0x23,0xcb,0xd9, +0x03,0xf1,0x19,0x87,0xc3,0x79,0x05,0xe2,0xb3,0x0e,0xa7,0xf3, +0x4a,0xc4,0xb2,0x23,0xdb,0xd9,0x13,0xb1,0xdb,0xd1,0xc1,0xd9, +0x0b,0xf1,0x6f,0x8e,0x4b,0x9c,0xbd,0x11,0xff,0xd7,0x91,0xe3, +0xec,0x83,0xb8,0xd2,0xd1,0xd1,0xd9,0x17,0xe9,0x11,0x47,0x27, +0x67,0x3f,0xc4,0x3a,0x47,0x67,0x67,0x7f,0xc4,0x7a,0xc7,0xa5, +0xce,0x01,0x88,0x0d,0x8e,0x2e,0x4e,0x68,0x36,0x47,0x98,0xa3, +0xab,0xf3,0x2a,0xc4,0x46,0xc7,0x65,0xce,0x41,0x88,0x4d,0x8e, +0x6e,0xce,0xc1,0x88,0xc3,0x1d,0x97,0x3b,0x87,0x20,0x6e,0xe2, +0xe8,0xee,0x1c,0x8a,0xb8,0xa9,0xa3,0x87,0x13,0xb6,0x94,0xc3, +0xec,0xb8,0xc2,0x99,0x8b,0x98,0x3a,0xae,0x74,0x0e,0x47,0xdc, +0xcc,0xd1,0xd3,0x39,0x02,0x71,0x73,0x47,0x2f,0x67,0x1e,0xe2, +0x08,0x47,0x6f,0xe7,0x48,0xc4,0x91,0x8e,0x3e,0xce,0x51,0x88, +0xa3,0x1c,0x7d,0x9d,0xa3,0xd1,0x9e,0x26,0x38,0x96,0x62,0x7b, +0x8d,0x63,0x19,0xb6,0x13,0x1d,0xcb,0xb1,0xbd,0xd6,0xb1,0x02, +0xdb,0xeb,0x1c,0x2b,0xb1,0xbd,0xde,0xb1,0x0a,0xdb,0x49,0x8e, +0x87,0xb1,0xbd,0xc1,0x01,0x0d,0xe4,0xb8,0xd1,0xf1,0x08,0xb6, +0x37,0x39,0xd6,0x60,0x7b,0xb3,0x63,0x2d,0xb6,0x93,0x1d,0xeb, +0xb0,0x9d,0xe2,0x58,0x8f,0xed,0x54,0xc7,0x06,0x6c,0x6f,0x71, +0x6c,0xc4,0xf6,0x56,0xc7,0xa3,0xd8,0xde,0xe6,0x78,0x0c,0xdb, +0xdb,0x1d,0x9b,0xb0,0xbd,0xc3,0xf1,0x38,0xb6,0x77,0x3a,0xa0, +0xa1,0x1d,0x77,0x39,0x9e,0xc4,0xf6,0x6e,0xc7,0x53,0xd8,0xde, +0xe3,0x78,0x1a,0xdb,0x7b,0x1d,0xcf,0x60,0x7b,0x9f,0xe3,0x4f, +0xd8,0xde,0xef,0x78,0x16,0xdb,0x07,0x1c,0x7f,0xc6,0x76,0x9a, +0x63,0x33,0xb3,0xcb,0xbc,0x5b,0x04,0x6b,0x0f,0xa4,0x45,0xf5, +0xf6,0x40,0x5a,0x7a,0xb7,0x07,0xd2,0xca,0xbb,0x3d,0x10,0x8b, +0x77,0x7b,0x20,0x56,0xef,0xf6,0x40,0x5a,0x7b,0xb7,0x07,0xd2, +0xc6,0xbb,0x3d,0x90,0x68,0xef,0xf6,0x40,0x6c,0xde,0xed,0x81, +0xc4,0x78,0xb5,0x07,0xd6,0xb7,0xf0,0x37,0x1f,0xb9,0xbe,0xd3, +0x41,0x53,0x5f,0x8e,0x9e,0xbf,0x37,0x46,0x3e,0xa9,0xe4,0x25, +0x84,0x2b,0xc9,0xab,0x08,0x3d,0xc9,0x16,0x84,0x5e,0xe4,0x4d, +0x84,0xde,0xa4,0x90,0x6c,0x87,0x75,0xba,0x0b,0xa1,0x1f,0x79, +0x9f,0xec,0x81,0xf5,0xbb,0x8f,0x1c,0x80,0xce,0x3d,0x81,0x30, +0x54,0x9f,0xad,0xcf,0x26,0xc3,0xf4,0x5f,0xe9,0xbf,0x22,0xb9, +0x86,0x2f,0x0d,0x5f,0x92,0xe1,0x61,0x77,0x85,0xdd,0x45,0x46, +0x18,0xa3,0x8c,0x51,0x24,0xcf,0xd4,0xcc,0xd4,0x8c,0x8c,0x0c, +0xbf,0x24,0xfc,0x12,0x32,0xaa,0x49,0x4a,0x93,0x14,0x32,0xba, +0x69,0x4a,0xd3,0x14,0x32,0xa6,0xe9,0x73,0x4d,0x9f,0x23,0x63, +0xcd,0xc9,0xe6,0x64,0x32,0xce,0xbc,0xc9,0xbc,0x89,0x5c,0x4d, +0x5b,0xd0,0x16,0x64,0x3c,0xdd,0x45,0x77,0x91,0x09,0xbc,0x77, +0xb9,0xc6,0x4b,0x6f,0xfb,0xb6,0x0a,0xf4,0xbc,0xf7,0x27,0xbc, +0xf7,0x67,0xfd,0x1d,0x31,0x30,0xeb,0x85,0xad,0x42,0x74,0x21, +0x8e,0x23,0x23,0x74,0x7f,0x26,0xa3,0xf5,0x87,0x48,0x77,0xfd, +0x18,0xd2,0xc9,0xf0,0x34,0xe9,0xa5,0x7f,0x07,0x94,0xff,0x42, +0x46,0xeb,0x72,0xc9,0x48,0x5d,0x6e,0xa5,0xac,0xdb,0x4b,0x52, +0xf4,0xe3,0x48,0x1f,0x5d,0x14,0x69,0xa7,0x7b,0x98,0xf4,0x43, +0x3c,0x58,0x97,0x4f,0x9a,0xe2,0x5c,0x77,0xa0,0x23,0xd0,0x0f, +0xc8,0x00,0xd2,0x80,0xa1,0xec,0x5e,0x71,0xae,0x1b,0x7f,0x0e, +0x65,0x02,0x2e,0xc1,0xfe,0x78,0x71,0x6d,0xbc,0xee,0x04,0x69, +0x63,0x98,0x85,0xbc,0x0a,0x48,0x1b,0xfd,0x4a,0x32,0x51,0x7f, +0x07,0xee,0x7d,0x1a,0xf1,0x00,0x20,0x1b,0x78,0x17,0xc7,0xfb, +0xc8,0x44,0xdd,0x6a,0xd2,0x5d,0xf7,0x5f,0x12,0xa7,0x9f,0x89, +0xfd,0x5f,0xc9,0x44,0x43,0x16,0xae,0xe1,0xbc,0xbe,0x08,0xd7, +0xaf,0x15,0xf1,0x3c,0xc4,0xfd,0x90,0x7f,0x77,0xd2,0x5a,0xff, +0x3c,0x19,0xa7,0x9f,0x44,0x2c,0x48,0xdb,0xa2,0xbf,0x99,0x44, +0xeb,0x47,0x90,0xe6,0xfa,0xbe,0x24,0x45,0xd7,0x03,0xcf,0xe7, +0x93,0x74,0xc4,0x8c,0xe6,0x1c,0x7d,0x67,0x62,0x47,0xbc,0x5d, +0xdf,0x9a,0x64,0xe1,0xfa,0x68,0x9d,0x44,0xb2,0x11,0xe7,0xe8, +0x53,0x49,0xb6,0xae,0x2f,0x69,0xab,0x8f,0x22,0x99,0xfa,0xae, +0x64,0x34,0x39,0x8b,0x71,0xc9,0x59,0xd8,0x4a,0x91,0xb8,0x27, +0x8a,0x8c,0x36,0xdc,0x02,0x5e,0xe1,0xbc,0xbe,0x03,0xbf,0x7f, +0x34,0x7b,0x46,0x77,0x17,0xae,0x9d,0x44,0x1e,0xd7,0xe1,0xb9, +0xae,0x64,0xb8,0xce,0x45,0x5a,0xa2,0xdb,0x8b,0xd7,0xc9,0xc4, +0xaa,0xfb,0x0f,0x69,0xa1,0x3b,0x42,0x12,0x75,0x63,0x49,0x6b, +0x5d,0x37,0x32,0x0b,0x31,0xcb,0xbf,0x87,0x5e,0x8f,0xe7,0x47, +0x62,0xff,0x26,0xd2,0x52,0x3f,0x91,0x24,0x19,0x9a,0x90,0x4b, +0x75,0x5f,0x81,0xbe,0xcf,0x48,0x6f,0xce,0xa3,0x15,0xa4,0x93, +0xae,0x3f,0x99,0x8c,0xfd,0x6b,0x38,0x0f,0x4f,0xa3,0xde,0x4e, +0xa1,0xbe,0x86,0xa2,0xc6,0x99,0x15,0xf3,0x02,0x4c,0x9b,0x71, +0x88,0xef,0x06,0xba,0xf2,0xfd,0x14,0xfd,0x10,0x92,0x82,0xba, +0xe5,0xd0,0xb5,0x20,0x03,0x80,0x2c,0xdd,0x97,0x88,0xff,0x86, +0x32,0xa6,0xa3,0x6c,0x80,0x6e,0x05,0x19,0xa2,0x9b,0x43,0xa6, +0xea,0x93,0xc9,0x70,0x43,0x32,0xc6,0x68,0xbf,0x90,0xae,0xa8, +0xff,0xae,0x48,0x7b,0x99,0x61,0x1b,0x49,0xd5,0xdf,0x43,0xba, +0x19,0xde,0x23,0x36,0xc3,0x0c,0x62,0xd3,0xaf,0x21,0x09,0x86, +0x4e,0xa4,0x0b,0x70,0xd8,0x47,0xfc,0x12,0x30,0x5b,0xe0,0x25, +0x51,0xaf,0x7d,0x44,0x1d,0x8f,0x47,0x7a,0xf7,0x00,0x57,0x21, +0xaf,0x81,0x86,0xd5,0x64,0xba,0xf1,0x08,0x49,0x69,0xb2,0x0e, +0xb4,0x9d,0xd2,0x17,0xe2,0x7c,0x26,0xe2,0x2b,0x11,0xa7,0x21, +0xfe,0x05,0x71,0x17,0xc4,0x4f,0x88,0x78,0x07,0xe2,0x08,0xc4, +0x6e,0xc4,0x19,0x86,0xd9,0x64,0x25,0x50,0x00,0x2c,0x04,0x1e, +0x07,0xe6,0x01,0x2b,0x80,0x27,0x80,0x7b,0x80,0xc7,0x80,0xc5, +0x02,0x8b,0x80,0xf9,0xc0,0x02,0x11,0xcf,0x04,0x36,0x00,0x1b, +0x81,0x7b,0xc5,0xb3,0xec,0x99,0xde,0x22,0xbd,0xab,0x81,0x3e, +0x22,0xbe,0x57,0xa4,0x0f,0x8b,0x00,0xf4,0xcf,0xd6,0xe5,0x02, +0x1d,0x80,0x3c,0x20,0x5b,0x01,0x39,0x29,0xe2,0x53,0x40,0x1a, +0x60,0x05,0xe2,0x80,0x74,0x71,0xcc,0x90,0xea,0xe3,0x1c,0xca, +0xa1,0x7b,0x14,0x71,0xd7,0x10,0xe2,0x8a,0x20,0x11,0xec,0xf3, +0x03,0xeb,0x89,0x6e,0xc0,0xe5,0x22,0xad,0xcb,0xfd,0x60,0x40, +0x1d,0xd3,0xf6,0x97,0x5e,0x5a,0x1d,0xc1,0xea,0x2d,0xc2,0x0b, +0x91,0x02,0xda,0xfd,0x48,0x51,0x97,0x49,0x40,0x8a,0x0f,0xa4, +0x2b,0x75,0xeb,0x17,0x69,0x0d,0x80,0x54,0x3f,0x79,0x31,0x3a, +0x13,0x05,0x1a,0x9b,0x2e,0x6d,0xda,0x43,0x81,0x61,0xb5,0x04, +0xa3,0x39,0xb6,0x96,0x68,0x1b,0x04,0x12,0x03,0x3c,0xdb,0x41, +0xf0,0x29,0x58,0xc4,0x0a,0x1e,0x7b,0xc3,0xe9,0x47,0x36,0x52, +0xc4,0x33,0xa1,0x92,0xcf,0x08,0x91,0x5f,0x8a,0x97,0x3c,0xa6, +0x86,0xa8,0x8e,0x93,0x81,0xf6,0x5e,0xd0,0xca,0x94,0x37,0x52, +0x43,0x2c,0x57,0xaa,0xcc,0x76,0x04,0x1c,0x35,0x60,0x30,0x30, +0xa4,0x9e,0x18,0x1e,0x24,0x06,0x07,0x99,0xd6,0x44,0xe0,0x7a, +0x81,0xeb,0x6a,0x80,0xaf,0x7b,0x86,0x89,0xb6,0x13,0x0c,0xae, +0x11,0xf9,0xd5,0x04,0x6d,0x9a,0xf5,0x95,0x43,0xad,0x3e,0x6c, +0x6c,0xdd,0x97,0xaa,0xd1,0x71,0xe9,0x01,0xf2,0x4a,0x6d,0x40, +0xbd,0xa6,0xc5,0x04,0x60,0x52,0x2d,0xc1,0xea,0xe0,0xaa,0x10, +0x61,0x98,0x90,0xcb,0x9a,0xa0,0xcd,0xf3,0x7a,0x21,0x37,0x75, +0x01,0x4b,0x6b,0x50,0x0d,0x98,0x28,0xf8,0xa2,0x85,0x7a,0xad, +0xbe,0xb2,0x17,0xd7,0x40,0x7d,0x6e,0x6a,0x2d,0xfb,0xce,0x50, +0xcb,0xd4,0x0d,0x5e,0x3a,0xe0,0xda,0x00,0x3a,0x43,0xbd,0xd6, +0x1d,0xe8,0x52,0x0b,0x74,0xad,0xc3,0x3d,0xc3,0x85,0xad,0x16, +0x2c,0x82,0xc9,0x83,0xe9,0xc9,0x7e,0x75,0xec,0xfb,0xe2,0xbc, +0xfa,0xba,0x60,0xfb,0xb3,0xb8,0x00,0xfd,0x63,0x46,0x3d,0xfb, +0x29,0x2d,0x46,0x03,0x23,0x02,0x40,0x6d,0x3f,0x43,0x82,0x68, +0x47,0x2a,0x06,0xd7,0xd2,0x86,0xf2,0x97,0x87,0x9a,0xce,0x35, +0x5e,0xb2,0xe4,0x0d,0xef,0xf3,0xc1,0xf4,0x7b,0xe3,0x34,0x3a, +0xc2,0xbb,0xed,0x6b,0xcf,0x5d,0xe5,0xf5,0x5c,0x5d,0x6c,0x20, +0x55,0x06,0xda,0x35,0x40,0xfb,0x4c,0xf5,0x61,0x47,0xa7,0x9f, +0x07,0xfb,0xf9,0x7a,0x4d,0x7f,0x71,0xbd,0x06,0xde,0xc7,0x7d, +0x43,0x88,0xba,0x8c,0xc7,0xfc,0xa5,0x35,0x46,0xc8,0xc4,0xd8, +0x20,0xd1,0xaf,0x16,0x18,0x15,0x04,0xfa,0x05,0xa9,0x63,0xfc, +0xc9,0x5a,0x6d,0x6c,0x9c,0xc6,0x18,0xd3,0x05,0xb2,0x79,0x32, +0x42,0x68,0xd7,0x5c,0x5d,0x07,0x84,0x4a,0xfe,0xfa,0xd7,0xb2, +0xaf,0x09,0x94,0xd6,0xd8,0x3a,0x42,0xa5,0xa3,0x26,0x30,0x3d, +0x9f,0x17,0x24,0xfa,0x88,0x67,0x1a,0xd3,0xee,0x6e,0x0c,0x59, +0x4c,0x6c,0x00,0x79,0x0c,0xa5,0x5c,0x66,0x02,0x59,0xb5,0x44, +0x9a,0x78,0x2e,0x18,0x68,0x9f,0x63,0x3e,0xa8,0x1e,0x41,0x40, +0x9b,0x7e,0xb7,0x00,0xfe,0xac,0xcb,0x83,0xac,0x9f,0xba,0xd4, +0x69,0x4d,0xf7,0x30,0x3a,0xaf,0x0c,0x80,0xb6,0xc2,0xa6,0xaa, +0x0b,0xec,0x82,0x06,0x15,0x29,0x5e,0xc7,0x2a,0x92,0xea,0x90, +0x96,0x0a,0xa7,0xf0,0x1d,0xd4,0x05,0x71,0x41,0xd2,0x97,0x22, +0xea,0xbd,0x43,0x0d,0x88,0x0b,0x90,0x56,0x7d,0x7d,0x41,0x81, +0x7c,0x92,0xe7,0xd3,0x1f,0xe9,0xcf,0x57,0xd4,0x58,0x34,0x65, +0x68,0xfc,0x47,0x97,0xd6,0x01,0x2d,0x80,0x96,0x41,0x82,0xd5, +0x41,0xeb,0x00,0xd0,0xa6,0x95,0x10,0xc0,0x87,0xa6,0x85,0xaf, +0x34,0x99,0xac,0xc7,0x0b,0xa8,0xd7,0x43,0xe1,0x43,0x8c,0xab, +0xa7,0xdf,0x30,0x59,0x73,0x7f,0xb4,0x0f,0x9f,0x60,0x7d,0xc6, +0x53,0xc9,0x3e,0xae,0xfb,0x7b,0x36,0x53,0xb4,0xfb,0x50,0x80, +0xb5,0xdb,0x9c,0x1a,0x90,0x19,0xa2,0x34,0x99,0xae,0xed,0xe5, +0x03,0x3d,0x35,0xe8,0x15,0x04,0x7a,0x0a,0x7d,0x94,0x5d,0x03, +0x2e,0xaf,0xc5,0x7c,0x91,0x2f,0x04,0x93,0x47,0x7d,0xdb,0x6f, +0x6d,0xe7,0x64,0x52,0xea,0x31,0x2f,0xd3,0xd8,0x73,0x33,0xfe, +0xe6,0x69,0xea,0xa2,0x2f,0x1b,0x8a,0xf6,0xba,0xf8,0x41,0x55, +0xf4,0x14,0xf6,0x6e,0x7d,0x90,0x1c,0x44,0x3e,0xde,0x48,0x09, +0xc2,0xb6,0x4b,0xae,0xc5,0xf3,0x9d,0x84,0x7f,0xad,0x2e,0x48, +0xae,0x81,0x8e,0x1c,0x61,0xfb,0xd5,0x84,0xa4,0x10,0xd9,0x08, +0x11,0x01,0xe6,0x30,0x1b,0xaa,0x4f,0x4e,0x0d,0x62,0xcc,0x9a, +0x11,0x02,0x59,0xbc,0x2c,0x48,0xfd,0xe8,0x0b,0xb5,0xe9,0xe7, +0x83,0xed,0xef,0x5b,0xfb,0x48,0x37,0x32,0xc8,0xbe,0x5f,0x9b, +0xb6,0xda,0xd7,0xd7,0x57,0x6f,0x86,0xa2,0x8f,0xaf,0xa9,0xbf, +0x4f,0x0d,0xe2,0x99,0xda,0xe6,0x93,0x59,0x0b,0x24,0x07,0xd1, +0xff,0xfa,0x4b,0xb3,0x63,0x10,0xed,0x39,0x49,0x93,0x4e,0xb6, +0x9f,0xf4,0x73,0xfc,0xb4,0x5f,0x6d,0xfe,0xb5,0xf1,0x3d,0x79, +0xd7,0x61,0x28,0x7c,0x9d,0xfe,0xec,0xf3,0xc6,0x6c,0x9f,0x5a, +0x3d,0x1f,0xa8,0x6d,0x76,0x15,0xcf,0xd6,0x84,0x60,0xd7,0xbd, +0x78,0x3f,0x37,0xa0,0x16,0x73,0x6c,0x5d,0x83,0x1c,0xdb,0xf7, +0x08,0xc2,0x77,0xd9,0x25,0x04,0x7a,0xdc,0xdb,0xff,0x13,0xca, +0xf5,0x22,0x0d,0x35,0x4e,0x53,0xd7,0x83,0x8c,0xa8,0x01,0xb9, +0xb5,0x98,0x17,0x19,0x56,0x8b,0xf4,0x86,0x89,0x79,0x8d,0x1b, +0x04,0x7c,0xcd,0xcb,0x6a,0xcf,0x07,0x33,0xcf,0x32,0x41,0xa4, +0x39,0x51,0x13,0x0f,0x11,0xd7,0x6a,0xab,0xb3,0xfd,0xb5,0xf1, +0xfa,0x8c,0xbf,0x1b,0xd2,0x3f,0xe8,0x2b,0xcd,0x9b,0x34,0xb8, +0x51,0x03,0xf5,0x98,0xf5,0x17,0x6d,0xea,0x88,0xb6,0x7e,0xd6, +0xdc,0x78,0x43,0x9b,0x47,0x46,0x2d,0xd6,0xf3,0x04,0x42,0xba, +0xa8,0x1b,0x7f,0x88,0xf1,0xf1,0x4c,0x6d,0xf5,0x7d,0x7a,0x08, +0xea,0x25,0x55,0x53,0xe6,0x50,0xb5,0x59,0x15,0x35,0xf5,0xaf, +0x89,0x82,0xf7,0xc1,0x22,0xa1,0x96,0xb4,0x24,0xfa,0x79,0x3e, +0xab,0x86,0xba,0xf1,0x85,0x58,0x3f,0x3e,0x3d,0x6f,0xb4,0x0f, +0x62,0x4c,0x11,0x5b,0x47,0x3e,0xab,0x75,0x6f,0xd7,0xc0,0xfb, +0xd8,0x7b,0x2c,0x9b,0xd5,0x08,0xe3,0x40,0x5f,0x7d,0x84,0xfd, +0x3c,0xfa,0xf2,0x54,0x38,0xfc,0xe4,0x13,0xd4,0xda,0x3d,0xfd, +0x12,0xd2,0x56,0xdf,0x05,0x18,0x05,0x3d,0x32,0x0b,0x78,0x94, +0xb4,0xf5,0xac,0x79,0x17,0x6b,0xdb,0x3d,0xeb,0xda,0x43,0xb4, +0xa6,0x9d,0xaf,0x33,0xef,0x41,0xba,0xf3,0xf5,0xde,0xea,0x5a, +0x6f,0x76,0xbf,0x66,0x2d,0xb7,0x76,0xad,0xb6,0xf7,0x3a,0x6d, +0x75,0x7d,0x36,0x5b,0x9b,0x1d,0xf4,0x9a,0xea,0xc0,0xeb,0x7a, +0x03,0xad,0xff,0x0d,0xb4,0xce,0xb6,0xa6,0x35,0xb8,0xfe,0xea, +0x2c,0xd2,0x87,0x0c,0x07,0x92,0x11,0xef,0xba,0x0d,0x34,0x56, +0xaa,0xad,0xac,0xf9,0x93,0x53,0x5f,0xfd,0x7a,0xa0,0xb5,0xa5, +0xbe,0xd6,0x8f,0x6a,0x65,0xcd,0x5f,0xbf,0xe4,0xcd,0x07,0xf5, +0xbc,0x2f,0x5a,0xbd,0xc7,0x70,0x81,0x78,0x18,0x4c,0xf9,0xdb, +0xfb,0x80,0x3f,0x5e,0x66,0xd4,0x91,0x8f,0xda,0x35,0x99,0xfe, +0xd6,0x45,0x6a,0xf7,0x7d,0xad,0x7b,0xd4,0xae,0x6b,0xf4,0xb7, +0x8e,0xd1,0xdf,0x3a,0xc8,0xb4,0x00,0xbc,0xf4,0xf6,0x1d,0x26, +0x05,0x21,0x8b,0xc1,0xf8,0xba,0x82,0xf1,0xe5,0x07,0xab,0x1b, +0xbd,0xef,0xf1,0xb6,0x4d,0x7d,0x8d,0x4b,0xd4,0xb5,0x7d,0xc1, +0xac,0x0d,0xf4,0xb5,0x96,0x4f,0x6b,0x4b,0x4f,0x08,0x00,0x7f, +0xf6,0x77,0x4d,0x72,0xe7,0xcf,0x6f,0x9b,0x54,0x4b,0xbd,0x50, +0x5f,0x9f,0x64,0x5d,0xf5,0x88,0xbf,0xf4,0xd4,0x75,0x51,0x81, +0xd6,0xb8,0xf9,0x5a,0x9b,0xa7,0xae,0x5b,0xe8,0x52,0xc3,0x18, +0xb1,0xab,0xd7,0x7c,0x94,0x3f,0xde,0x06,0xf2,0x7b,0xd7,0xd5, +0x6f,0x5c,0x17,0xde,0xd5,0x94,0x96,0x3a,0x16,0xf3,0x35,0x7e, +0xf3,0x3e,0xf6,0x5e,0x8b,0xe6,0xad,0x47,0xb4,0x72,0xe9,0x4b, +0xcf,0x04,0xa3,0x4f,0xeb,0xab,0x53,0x1b,0x42,0xd6,0x6a,0x4a, +0xd7,0xd7,0x9a,0x2f,0x7f,0xeb,0xb0,0x06,0xd6,0xb0,0xbe,0xca, +0xdf,0x5a,0xa9,0x9a,0xe0,0xab,0x6d,0x7b,0xb7,0xf1,0x24,0x1f, +0x3c,0x0d,0x96,0x97,0xb5,0xd5,0xa5,0x75,0xd5,0x0d,0x81,0xd6, +0x2f,0x0d,0x08,0xb0,0x1e,0xc9,0x9b,0xa7,0xda,0xf5,0x40,0xde, +0x6b,0x7e,0xfc,0xad,0x1b,0x0a,0xa4,0x27,0xfd,0xe9,0xc8,0x8c, +0x10,0xeb,0xc7,0xda,0xf6,0x5b,0xf5,0x5d,0xaf,0xa3,0x1d,0x2f, +0x65,0x6a,0x7c,0xb1,0xaa,0xcf,0xcc,0x9f,0x5f,0xd7,0x97,0x9d, +0xa9,0xbd,0x5e,0xd3,0x1a,0xf1,0x40,0x65,0x48,0xd6,0xf8,0x4a, +0x32,0x02,0xcc,0x47,0xfb,0x5a,0xff,0x12,0xcc,0x3a,0x17,0x75, +0x0c,0xe9,0x7d,0xde,0x7b,0xbd,0x89,0x7a,0x9f,0xf7,0xba,0x91, +0x9a,0xd6,0x89,0x78,0xf7,0xab,0xfe,0xf4,0x59,0xa8,0xfa,0xcc, +0x50,0xd8,0xda,0xbe,0xd6,0x5a,0xf8,0x9a,0x63,0xd1,0xce,0xa5, +0xd4,0x66,0x1e,0x46,0x4b,0xaf,0xbf,0xb9,0x99,0xf8,0x00,0xf0, +0xf7,0x4c,0xa0,0x7e,0xc4,0x97,0xad,0x5f,0xd7,0xf6,0x1a,0x8a, +0x7e,0x25,0x23,0x44,0x7a,0xd2,0xfb,0xba,0xbf,0x39,0x0f,0x15, +0x81,0xae,0xe5,0x68,0xd6,0x28,0x68,0xd7,0x09,0x78,0x8f,0x4f, +0x03,0xad,0x1f,0x88,0xf4,0xea,0xb7,0x33,0xea,0x28,0xe3,0x75, +0xb1,0xcd,0xbd,0xd3,0xf2,0x35,0x67,0xed,0x8f,0xf7,0x5a,0xdd, +0xe7,0xef,0x7c,0x96,0xd7,0x7c,0x93,0xf7,0xb5,0x40,0x73,0xc4, +0xda,0xb5,0x88,0x99,0x3e,0xf4,0xa3,0xaf,0xbe,0x25,0xa5,0x0e, +0xfa,0xa2,0xa1,0xc6,0x45,0x75,0xc9,0x43,0x3b,0x4f,0xe4,0xad, +0x37,0x5a,0x06,0xd0,0x29,0xbe,0xe8,0xa8,0x69,0x2e,0x37,0xbe, +0x06,0x30,0x7e,0x5a,0x02,0x20,0xad,0x96,0xfa,0xa3,0x2e,0xed, +0xb7,0x3e,0x75,0x11,0xca,0xf5,0x25,0xc1,0xac,0x57,0xd1,0xca, +0xa7,0x56,0x5f,0xf8,0x9b,0xd3,0xf5,0x9e,0x8b,0xd5,0xce,0xc1, +0xfa,0x6a,0x0f,0xbe,0xe6,0x68,0xd3,0x02,0xd8,0xfe,0xa1,0xb0, +0xf9,0x33,0x6a,0x29,0xe3,0x35,0xc9,0xb6,0xbf,0xf9,0x4d,0x7f, +0xf3,0x9f,0xea,0x78,0xdf,0x7b,0x0e,0x32,0x98,0xb5,0xc8,0x5a, +0x3f,0x5d,0x6d,0xc7,0x92,0x69,0xf5,0xb4,0xed,0xeb,0xc3,0x73, +0x5f,0x63,0x4a,0xef,0xb9,0x3f,0x7f,0x7e,0x0b,0xf5,0xba,0xf7, +0x5c,0xdf,0x75,0x7e,0xde,0x9b,0xf5,0x46,0x4d,0x6d,0x3a,0xa2, +0x06,0xde,0xd5,0x47,0xce,0x32,0x1a,0x40,0xb7,0x6a,0xe7,0xea, +0xd4,0xb9,0xb3,0xb8,0x1a,0xe6,0xe2,0xfc,0xcd,0x9f,0x79,0xcf, +0xb3,0x04,0x9a,0x13,0xf3,0xb5,0xb6,0x2f,0xae,0x16,0xf2,0x56, +0xdf,0xf5,0x75,0x19,0xf5,0xe8,0x87,0xb4,0xfa,0x25,0xd0,0x3c, +0x57,0x9a,0x9f,0xf3,0xbe,0xe6,0xa5,0x54,0x7b,0x3f,0xab,0x96, +0x72,0x63,0xaf,0x61,0xde,0x28,0xa5,0x1e,0x7d,0x49,0x5d,0xda, +0xad,0xbf,0xf4,0xb4,0x32,0x53,0xdf,0x6f,0x99,0x04,0x3b,0xb7, +0x11,0xea,0x6f,0xa8,0xd4,0x05,0x75,0xfd,0xa6,0x49,0xb0,0xa8, +0xef,0xb7,0x53,0x6a,0x8b,0x60,0xfc,0xbe,0xde,0xed,0x3a,0xc2, +0xcf,0x9a,0x5e,0x5f,0x71,0x4a,0x08,0x90,0x11,0x02,0xa4,0x9d, +0x47,0x64,0x84,0x08,0x89,0x21,0xc2,0xef,0x8d,0x9f,0x19,0x21, +0x44,0xb0,0xdf,0xb1,0x89,0x35,0x34,0xcc,0xb7,0x6b,0xda,0x06, +0x31,0x0f,0x59,0x1f,0xb4,0x6d,0x04,0xa4,0xd7,0x01,0x71,0xf5, +0x44,0x28,0xf4,0x48,0x5c,0x23,0x20,0x58,0x99,0x8e,0x08,0x11, +0x52,0x42,0x88,0x8c,0x3f,0x80,0xae,0x0d,0x76,0xce,0xbc,0x2e, +0xb8,0x90,0xf4,0xef,0x85,0xc6,0xeb,0x8c,0x10,0xc3,0x51,0x4f, +0xd4,0xf7,0xfb,0x50,0x81,0x30,0xc4,0xd0,0x78,0xdf,0xa9,0xaa, +0x2f,0x02,0x7d,0xaf,0x6a,0x68,0x1d,0x31,0xb1,0x96,0x18,0x1a, +0x42,0xa4,0x85,0xd0,0x66,0xf5,0xb5,0xa6,0x21,0xd4,0xb6,0xeb, +0x1f,0xd9,0xae,0xfd,0xa3,0xda,0xb6,0x19,0xbf,0x73,0x5e,0xd6, +0xe6,0xfb,0x65,0xfe,0xd6,0x21,0xd5,0x15,0x57,0x85,0x10,0x83, +0x1b,0x01,0x35,0x7d,0x23,0x6d,0x50,0x3d,0x31,0xa1,0x9e,0x18, +0x14,0x62,0xd4,0x46,0x6f,0x5e,0x48,0xba,0xf3,0x8f,0x62,0x2b, +0x5d,0xd4,0x97,0xbf,0x2f,0x5b,0xd4,0xd7,0xf7,0xfa,0xfc,0x41, +0xbd,0xa7,0xcb,0x45,0x04,0x8d,0x01,0x75,0x44,0xa8,0xf2,0xef, +0x17,0x42,0x5c,0xda,0xc0,0xa8,0x4f,0x9b,0x88,0x68,0x20,0x5c, +0xf4,0x3f,0x5c,0x18,0xe3,0xe5,0x86,0xe8,0x1b,0xfe,0xc8,0xfe, +0x8a,0x86,0xae,0x8b,0x11,0x21,0x42,0x6d,0x6c,0xbb,0x61,0xf5, +0x40,0x28,0x6d,0xcc,0x61,0x8d,0x80,0x60,0xfa,0xe3,0x40,0x6b, +0xcf,0x6b,0x03,0x7f,0xdf,0x42,0x0d,0x06,0x43,0x42,0x88,0x0b, +0x41,0xf7,0x5f,0xf4,0x85,0xfc,0x3e,0xed,0xfc,0x3f,0x8a,0xad, +0x1f,0x4a,0x1d,0xed,0xeb,0x9b,0xbc,0xc1,0x22,0x94,0xdf,0xde, +0x3d,0xdf,0xdf,0xfd,0xad,0x2b,0x6a,0xfb,0x3d,0xd6,0xba,0xda, +0xd5,0xa3,0xea,0x81,0xfa,0xda,0xf4,0xf5,0xd1,0xb7,0x17,0xb2, +0xff,0xf9,0x8f,0x60,0xd3,0x5d,0xd4,0xb1,0xbf,0x1f,0x5d,0x1b, +0xaa,0x6f,0x50,0x0f,0xa8,0x07,0x42,0xa9,0x67,0x07,0x34,0x30, +0x82,0xd5,0xa9,0xfd,0xeb,0x81,0xbc,0x3a,0xa0,0x7f,0x88,0x51, +0x17,0x9d,0x1a,0x8c,0x9d,0xfa,0x7b,0xd5,0xa9,0xbf,0xb7,0xf6, +0x7d,0xd1,0xbf,0xd0,0x70,0x7e,0x84,0xda,0x7e,0x23,0xbd,0xb6, +0xdf,0x47,0xcf,0x0c,0x01,0xb2,0x1a,0x18,0x99,0x8d,0x84,0x1e, +0xf5,0x44,0x28,0x69,0xa9,0xef,0x9a,0xde,0x86,0xe6,0x55,0x28, +0xda,0x4a,0x44,0x23,0x40,0xab,0x9b,0x93,0x7e,0x27,0xb6,0xf4, +0xef,0xd1,0x9f,0x9d,0xd1,0x48,0x48,0x6c,0x44,0x34,0x56,0x99, +0xd2,0x7e,0x47,0xc8,0x68,0x44,0x5c,0x59,0x0f,0xf8,0x7b,0x7f, +0xbf,0xae,0x48,0xae,0x07,0x52,0x1b,0x08,0xc1,0xfc,0xff,0x85, +0xaf,0xff,0xb9,0xf0,0x07,0xef,0x7b,0x3b,0xd4,0x03,0xf5,0xc9, +0x57,0x7b,0xae,0x3e,0x3e,0x97,0x0b,0xc1,0xef,0x72,0x71,0x2d, +0xda,0x45,0xbf,0x4a,0x43,0xe8,0xcd,0x60,0xd6,0x0a,0xd4,0xf6, +0x5b,0xe8,0xad,0x43,0x80,0x96,0x21,0x44,0xeb,0x06,0x44,0x7d, +0xe4,0x30,0x14,0xf9,0xc7,0x87,0x08,0xa1,0xe6,0xcb,0x85,0x60, +0xd3,0x37,0xc4,0x3b,0x39,0x17,0xd7,0x2e,0x5c,0xd4,0xd3,0x17, +0x9a,0x0e,0xaf,0x0b,0x0d,0x35,0x7d,0x97,0xa7,0xb6,0xa8,0xed, +0x7f,0x29,0xe5,0x84,0x08,0xde,0xff,0x89,0xa4,0xfd,0x5f,0xa4, +0xec,0x7a,0xa2,0xa6,0xf7,0xb7,0xb3,0x43,0x80,0x50,0xbd,0x2f, +0x7d,0xa1,0xda,0x9d,0xbf,0xa7,0xf6,0x75,0x3e,0x75,0xd6,0x85, +0xac,0x6b,0x7a,0x1b,0x6a,0xf7,0x6d,0xab,0x40,0xdf,0xb3,0xaa, +0x2d,0x42,0xa5,0x23,0x43,0xed,0x4b,0x0e,0xf6,0x3f,0x9f,0xea, +0x9b,0x4f,0xb7,0x5a,0xa0,0xb6,0x3e,0x75,0xef,0xfb,0xbc,0xe3, +0x50,0xd8,0x6f,0xc1,0x8c,0x9d,0xbd,0xef,0xbb,0xb8,0x0e,0xf8, +0x7f,0xcb,0x3e,0xcb,0xf8,0x83,0xdb,0x67,0xc1,0xfe,0xef,0xd8, +0xf9,0x1a,0xd7,0xfe,0x1e,0xc6,0xd9,0xa1,0x18,0x73,0x5f,0x48, +0xe3,0x6d,0x4b,0x88,0x71,0xbe,0xe7,0xce,0xe2,0x2e,0xe0,0xf1, +0xf6,0xc5,0x71,0xf6,0xff,0xf6,0x3b,0x19,0x69,0x17,0x58,0x19, +0xeb,0x32,0x4f,0x5e,0xdf,0xff,0x2e,0x0e,0xd5,0x7c,0xbd,0xb3, +0x91,0xd0,0xbd,0x1e,0xf0,0x4e,0xcb,0xdf,0xd8,0xdb,0xe9,0x27, +0xee,0x16,0x22,0x38,0x6b,0x41,0x4b,0xb6,0x8f,0xfb,0xbc,0xe3, +0x50,0xb5,0x85,0xdf,0xc3,0x3b,0x1c,0xff,0x4b,0xef,0xf1,0xfd, +0x91,0xd7,0x1e,0xff,0xaf,0xbc,0xa7,0xe7,0xef,0xbf,0x4c,0xbd, +0xff,0xd7,0x54,0x7b,0x7c,0x59,0x3d,0x51,0x9f,0x6f,0x4f,0xd6, +0x37,0xef,0xcb,0x43,0x44,0x47,0x6d,0x50,0x9f,0xef,0x7f,0xd4, +0x67,0x3d,0x5e,0xa8,0xde,0xe9,0xee,0x11,0x42,0x84,0xb2,0x1f, +0x88,0xac,0xc5,0x7a,0xe8,0xc6,0x7a,0xc7,0x24,0xe3,0xa2,0x5d, +0xfa,0x87,0xd3,0xff,0xa9,0x5e,0xf1,0x1f,0x45,0xf7,0x37,0xf6, +0xbb,0xd9,0x81,0xbe,0x6d,0xde,0x18,0x79,0x36,0x04,0x2d,0xc1, +0x22,0xd0,0xff,0x34,0xd7,0x84,0x50,0xbe,0x2b,0x3e,0xb1,0x9e, +0x68,0x88,0xf7,0xd8,0x2f,0xa4,0x35,0xd4,0x29,0x17,0xc7,0x06, +0x7f,0x98,0x77,0x6a,0x2e,0x7e,0x67,0xb4,0x66,0xf8,0xfa,0x7f, +0xf3,0xda,0xa2,0x36,0xff,0x7b,0x1e,0x0a,0xdf,0x6a,0x9b,0x10, +0x22,0xae,0x11,0x91,0x5e,0x0f,0x84,0xe2,0xbb,0xd8,0xed,0x42, +0x80,0x50,0x7e,0xa7,0xfb,0x42,0x1d,0x03,0x24,0x19,0x7e,0x3f, +0xef,0x9d,0x5f,0x5c,0x93,0x77,0x7e,0xdf,0x69,0xf9,0x5f,0xf0, +0x11,0xd5,0xd7,0x27,0x1e,0x1d,0x04,0xea,0x53,0xde,0xe8,0x10, +0xa2,0xb1,0xea,0x28,0x58,0x7d,0x5b,0xdf,0x77,0x64,0x42,0xb5, +0x6e,0xe8,0x7c,0xb6,0x19,0x7b,0x3d,0x71,0xf1,0x7b,0x21,0x17, +0xb6,0xdf,0xe6,0xf7,0xc8,0xd7,0x50,0xd2,0x5c,0x77,0xbb,0xf0, +0x54,0xc8,0x61,0x09,0x29,0xa6,0x92,0x8e,0x40,0x3f,0x20,0x03, +0x48,0x03,0x86,0x02,0x7d,0xc4,0xb9,0x6e,0x6c,0xdf,0xf8,0x3e, +0xe9,0x18,0x24,0xfa,0x85,0x9c,0x3e,0xff,0x48,0xbf,0x88,0xf3, +0x20,0x2f,0xff,0x1b,0x75,0xd4,0xbe,0x5e,0xcf,0x4f,0x25,0xdd, +0x1b,0x91,0xc7,0x8c,0xd6,0xae,0x86,0x53,0xfa,0x57,0x10,0x37, +0x45,0x7c,0x18,0x71,0x1b,0xc4,0x9f,0x21,0x76,0x1a,0x4e,0xe9, +0x0c,0xd8,0x7f,0x15,0x98,0x0a,0x4c,0x01,0xde,0x17,0xc7,0xbb, +0x81,0x34,0xdc,0xd3,0x51,0x81,0xae,0x50,0xe0,0xa8,0x02,0xd2, +0xa5,0xea,0x5a,0xb0,0xd0,0x25,0x09,0x9a,0xce,0x8a,0x58,0x3d, +0xff,0x2e,0xf0,0x20,0xf6,0x8b,0x11,0xeb,0x10,0xdf,0x0c,0x7c, +0x81,0xfd,0x23,0x0a,0x1d,0x8c,0x6f,0x3a,0xe4,0xa7,0xa3,0xc0, +0x73,0xc0,0xbd,0xe2,0x99,0x61,0x40,0x18,0xae,0xbb,0x11,0x37, +0x53,0x40,0xca,0x10,0xb7,0x10,0xf7,0x46,0x02,0x7a,0xb1,0xff, +0xae,0x78,0x36,0x49,0x1c,0xb3,0x38,0x05,0xf7,0xb3,0x7c,0x0f, +0x2b,0x69,0x90,0x7f,0x03,0x3f,0xe3,0x7c,0x3c,0x30,0x46,0xa1, +0x81,0xfc,0x84,0x7d,0xf0,0x46,0x77,0x89,0x72,0xbf,0xee,0x4a, +0x9c,0xdb,0xae,0x9c,0x27,0x1f,0xe1,0x38,0x5d,0xc4,0x6d,0x05, +0xed,0x2e,0xe0,0x0c,0xf0,0x57,0x60,0x90,0x48,0x83,0xa1,0xdc, +0x70,0xca,0x10,0x87,0x7b,0x72,0x85,0x1c,0x30,0x1e,0x48,0x82, +0xa6,0x26,0xc0,0xa5,0x22,0x8d,0x56,0x40,0x14,0x30,0x1b,0x30, +0x01,0x99,0xc0,0x3e,0xe0,0x49,0x00,0x75,0xa9,0x7b,0x09,0xcf, +0xad,0x11,0xe7,0xa9,0xa0,0x8b,0x3d,0xf3,0x30,0x90,0x0d,0xdc, +0x02,0x64,0x28,0x69,0x90,0xb5,0xe2,0x1e,0xc6,0x1b,0x07,0x78, +0xb9,0x5d,0xd4,0x1d,0xe3,0x27,0xea,0x9a,0xf4,0xd0,0xd4,0xa7, +0x77,0x5d,0xbd,0xa6,0xc8,0x82,0xee,0x76,0xe5,0xd8,0x70,0xad, +0x5e,0x47,0x52,0xf4,0xe3,0x48,0x1f,0xdd,0x78,0x92,0x04,0x44, +0xeb,0xa6,0x90,0x04,0x9c,0xeb,0x64,0xc8,0x25,0x09,0x90,0xe9, +0x04,0x43,0x57,0x12,0x8d,0xeb,0xcb,0x75,0xa9,0x24,0x0f,0xf1, +0x3a,0xe0,0x0c,0xb0,0x0d,0x78,0x1e,0x58,0x08,0x6c,0xd5,0x9d, +0x20,0x77,0x1b,0x63,0x48,0x2f,0xfd,0x65,0x64,0xb4,0x3e,0x87, +0xd8,0xc9,0xda,0xca,0xce,0x86,0x42,0x12,0xa3,0x3f,0xcb,0x31, +0x5a,0x37,0x93,0x64,0x21,0x6d,0x8b,0xee,0x1a,0x92,0x82,0xf4, +0xd3,0x75,0xb9,0x24,0x5e,0x37,0x1d,0xe7,0xa6,0x90,0x54,0xdd, +0x42,0x72,0x29,0xbf,0x8e,0x7c,0x3d,0x34,0xf8,0xbb,0xf7,0x14, +0x49,0x0a,0x33,0x90,0x89,0xc6,0xb3,0xc4,0xaa,0xff,0x88,0x74, +0xd3,0x17,0x40,0xe6,0x19,0x8d,0x13,0x48,0x92,0xa1,0x00,0xf1, +0xad,0x18,0x2b,0xdc,0x02,0xdb,0x65,0x30,0x9e,0x59,0x8d,0xf6, +0x98,0x40,0xba,0x87,0x6d,0x41,0x5c,0x46,0xba,0xeb,0x27,0x41, +0x36,0xcb,0x88,0xc5,0x58,0x40,0x2c,0xe1,0x2d,0xb0,0xff,0x2b, +0xce,0xdd,0x4c,0xa2,0xc9,0x59,0x32,0x44,0x77,0x9a,0x0c,0xd1, +0xff,0x08,0x7c,0x8f,0x7d,0x17,0x69,0x89,0xb8,0xa5,0xe1,0x6b, +0xd2,0x32,0xec,0x6f,0xd8,0xff,0x15,0xe7,0x64,0x62,0x35,0x74, +0x42,0xdb,0xe8,0x44,0xb2,0x59,0x9e,0xfa,0x5c,0x72,0xa5,0x7e, +0x00,0xe9,0x89,0xb2,0xa7,0x29,0xf5,0x46,0xb6,0xe8,0xf7,0x92, +0x0e,0xba,0x0a,0xdc,0x3f,0x8e,0xb4,0x65,0xe7,0xf4,0xdf,0x12, +0x56,0x57,0x7b,0xc1,0xeb,0x07,0x10,0x97,0x08,0xc8,0x0c,0xba, +0x97,0x48,0x8e,0xfe,0x33,0x92,0xa6,0x37,0x91,0xde,0x42,0xb6, +0x5c,0xa2,0x1d,0x1a,0x04,0x9a,0x08,0xa4,0x29,0x20,0xaf,0x0b, +0x6c,0x02,0x9e,0xd6,0xc4,0x57,0x01,0x07,0x81,0x37,0x80,0x1f, +0x00,0xa2,0x40,0xf7,0x3d,0xf0,0x85,0x88,0xbf,0x01,0x8a,0x95, +0x63,0xf5,0x7a,0xb5,0xfb,0x82,0xbd,0xce,0xf0,0xb1,0x66,0xdf, +0xc7,0xfd,0x17,0x1c,0xe6,0x05,0x81,0x01,0x02,0xef,0x09,0x3e, +0x32,0x3d,0xde,0x1f,0x58,0x28,0xd0,0x43,0x80,0xe9,0xc6,0x49, +0xc0,0x4d,0xc0,0x0d,0xc0,0x8d,0x02,0xac,0x6d,0x5d,0x06,0x8c, +0x10,0x40,0xfb,0x86,0xfc,0x70,0x9d,0x45,0x16,0x00,0xd0,0x6b, +0xe4,0x3a,0xe0,0x4e,0xe0,0x1e,0xb1,0x7f,0x07,0xd3,0xdf,0x90, +0xbb,0x29,0x90,0x97,0x2b,0xb0,0x7f,0x3f,0x6b,0x53,0x82,0xe7, +0x31,0x42,0xcf,0x10,0xd8,0x92,0x0b,0xbc,0xc0,0xd6,0x7c,0x2c, +0x36,0x28,0xdf,0x79,0x2b,0x00,0xe6,0x02,0x8b,0x34,0xf8,0x18, +0x58,0x08,0xcc,0x37,0x28,0xdf,0x98,0x1c,0x2c,0xf6,0xe7,0x8b, +0x6b,0xef,0x1a,0x94,0x6f,0xa5,0x8d,0x11,0x50,0xd7,0x8e,0xfc, +0x0d,0xb8,0x0f,0xd8,0x0c,0xe4,0x0b,0xb0,0x7b,0xa7,0x01,0xcf, +0x00,0x56,0x8d,0xaf,0x34,0xb5,0x6a,0x5f,0x07,0x5a,0x74,0x6d, +0xc2,0x3e,0x20,0xa3,0xc3,0xde,0x03,0x76,0x91,0xd1,0xc6,0x1f, +0x10,0x3f,0x8d,0xb8,0x2d,0xc9,0x0e,0x8f,0xc5,0xfe,0x7d,0xc0, +0x14,0xe0,0x76,0x60,0x28,0xce,0xcf,0x40,0x6c,0x05,0xd6,0x92, +0x89,0xa6,0x67,0xc9,0xe8,0xf0,0xdd,0x64,0x62,0xf8,0x20,0xd2, +0xcd,0xf4,0x09,0x69,0x6d,0xc0,0xf5,0x30,0x5c,0x37,0x8c,0x22, +0x39,0x86,0x78,0xec,0xbf,0x4a,0xda,0x1a,0xff,0x84,0x67,0x9e, +0x27,0xa3,0x4d,0x47,0x11,0x5f,0x4f,0xb2,0x8d,0xd3,0xc9,0xe8, +0x26,0x59,0x38,0x2e,0x24,0xd9,0x61,0xfb,0x94,0xf3,0x4d,0xda, +0x21,0x7e,0x1b,0xc7,0xc8,0xdf,0xf4,0x31,0xf0,0x09,0xce,0xb1, +0xe7,0x6f,0x45,0x1e,0x48,0x2f,0x7c,0x03,0xf2,0x48,0x24,0xdd, +0x8c,0xa0,0xb3,0x69,0x26,0x19,0x6d,0x9e,0x85,0x6b,0x88,0xc3, +0xd8,0x3d,0x29,0x48,0x77,0x38,0xe2,0xc5,0x00,0x3b,0xff,0x14, +0x8e,0x5f,0x41,0x7c,0x2d,0xe2,0x95,0xd0,0x35,0x5b,0x10,0xb3, +0xf2,0x6c,0x43,0xba,0x47,0x10,0xe7,0x23,0x7e,0x81,0x4c,0x0c, +0xfb,0x12,0xfb,0x15,0xb8,0x9e,0x4f,0xb2,0xc2,0x3e,0x25,0x13, +0x51,0x5f,0xd9,0x61,0x9d,0x49,0x76,0x13,0x1d,0xf2,0x79,0x8c, +0x74,0xc3,0xb9,0x9c,0xb0,0x97,0x10,0x0f,0x43,0x79,0x6e,0x12, +0xe5,0xa2,0x78,0xf6,0x45,0x3c,0xf7,0x2a,0xf6,0xc7,0x90,0x94, +0xb0,0x4b,0x48,0x86,0x71,0x37,0xef,0x33,0x25,0xa5,0xcf,0x63, +0x7a,0x9d,0xfc,0xa0,0xef,0x0b,0xfd,0xc0,0xd0,0x8a,0x64,0x42, +0x2e,0xba,0x23,0x10,0xa2,0x8b,0x22,0xba,0xd3,0xff,0x6d,0xc6, +0x24,0xe4,0xb7,0xb7,0x7f,0x3b,0x69,0xd2,0xb1,0x73,0x44,0xfb, +0xd3,0x71,0x99,0x69,0x46,0xf2,0x48,0x3a,0x40,0x48,0x7f,0x84, +0x74,0x62,0x41,0x48,0x24,0xa7,0xf4,0x1b,0x75,0x6f,0xe8,0x37, +0xe2,0xb8,0x3f,0xae,0xf5,0xe7,0x5b,0x25,0xb0,0x7d,0x37,0xc2, +0x71,0xdd,0x28,0x72,0x1c,0xfb,0x03,0xc5,0xd9,0xbc,0x6a,0x71, +0x9e,0xe6,0xb8,0xbf,0x8f,0xf3,0x16,0x9e,0x53,0x9e,0xe1,0x36, +0xd0,0xe4,0xc6,0xbe,0x8a,0xbd,0x80,0x1a,0xdc,0x6a,0xd0,0x35, +0xc1,0x76,0x86,0xae,0x49,0x55,0xe0,0x54,0x5a,0x74,0x1b,0xc8, +0x06,0xa4,0xbc,0x1a,0xe9,0x0d,0xe0,0x74,0x3d,0x4b,0xf2,0x74, +0x8f,0xeb,0xc2,0xc9,0xdf,0x0d,0xcd,0xaa,0x07,0x5d,0xa1,0xee, +0x1d,0x84,0x42,0xa4,0x6a,0x17,0x48,0xd7,0x4d,0xd6,0xdd,0xa4, +0x7f,0x1a,0x65,0x64,0xf4,0x8c,0x11,0x25,0x63,0x74,0x7e,0x8d, +0xed,0xd7,0x22,0x7e,0x1e,0xe1,0x31,0xf2,0x98,0xee,0x3d,0xf2, +0x33,0xd9,0x89,0xd0,0x1d,0xb9,0xde,0x4a,0xae,0x43,0x7a,0x85, +0x0a,0x0d,0x3c,0x7c,0x0b,0xec,0xf0,0x1c,0xfd,0x83,0x7c,0x49, +0xbe,0x02,0x4a,0xc8,0x21,0x72,0x02,0xe1,0x6f,0x08,0x5f,0x92, +0x2f,0xc8,0xe7,0x7c,0xef,0x08,0xae,0xfd,0x15,0xf1,0x71,0x9c, +0x3b,0x41,0x3e,0x21,0x7f,0xc7,0x7d,0xbb,0x71,0xe6,0x0b,0x9c, +0xdf,0x46,0x9a,0x13,0xca,0x21,0x82,0x2e,0x4e,0xc4,0x8c,0xe7, +0xca,0x39,0xb7,0xee,0x09,0x1e,0x6b,0xee,0xaa,0x65,0xa8,0xfb, +0x93,0x75,0x09,0x23,0x49,0x26,0xe9,0x40,0xda,0x91,0x24,0x11, +0xda,0x91,0x14,0x70,0xbf,0x1d,0x49,0xc5,0x7e,0xdd,0xd2,0xeb, +0xa0,0x49,0x25,0x87,0xb4,0x27,0xd9,0x88,0x93,0x45,0x68,0x47, +0xd2,0x80,0x76,0xfc,0x4c,0xcd,0x69,0xe5,0xe0,0x59,0xe5,0x99, +0x91,0x24,0x8b,0x74,0x22,0x19,0xd8,0x53,0x42,0x06,0xce,0x66, +0x79,0x8e,0x43,0xc9,0xd1,0xfa,0x73,0x7f,0x28,0x68,0x73,0xa2, +0x8d,0xa6,0x90,0x04,0x20,0x09,0x9c,0x4c,0x41,0x29,0x12,0x10, +0x82,0x79,0xb6,0x13,0xf8,0x76,0x09,0xaf,0x89,0x34,0x3c,0xc7, +0x4a,0x17,0x5c,0x4d,0x74,0xe2,0x39,0x0d,0x07,0xbf,0x73,0x78, +0x7e,0x29,0x08,0xac,0x16,0xdb,0x07,0xe0,0x75,0xf3,0x0b,0x56, +0x3e,0xaf,0x44,0x69,0x32,0x48,0x1c,0x0f,0x09,0xa4,0x2d,0x8e, +0x12,0xb0,0x67,0x27,0xb6,0x1a,0x9e,0xbb,0x02,0x77,0xb6,0xc7, +0xfd,0x89,0xb8,0x37,0x09,0xdb,0x74,0x6c,0xd3,0x11,0xb3,0x74, +0x12,0xf9,0x79,0xb6,0xef,0xfd,0x54,0x3a,0xe7,0x98,0x1d,0xd7, +0xe2,0x11,0xf7,0x05,0xd7,0x32,0x11,0xc7,0xf3,0xc0,0x6a,0x2e, +0x15,0x5b,0x76,0x8d,0xa1,0xa1,0x79,0x14,0x0a,0xee,0xf6,0x47, +0x79,0xb2,0x78,0x89,0x58,0x60,0x25,0x49,0x11,0x47,0x81,0x9f, +0xca,0xc4,0x7d,0x19,0xe2,0xce,0x64,0x5e,0x76,0xff,0x92,0x97, +0x89,0x3b,0xed,0xbc,0x4d,0x0f,0x00,0x7f,0x1c,0x1e,0x7e,0x55, +0x71,0xec,0x7c,0xcb,0xd1,0x55,0xa0,0x21,0x83,0xcb,0x8f,0x9d, +0xcb,0xcf,0xb9,0x77,0x64,0x8b,0x3b,0x14,0x29,0x4b,0xf0,0x73, +0xcf,0x10,0x70,0x25,0xd3,0x23,0x43,0x76,0x21,0x0b,0x71,0x21, +0x2d,0x59,0xc3,0xf0,0xa2,0x27,0xe8,0x4c,0x85,0xd4,0x47,0x03, +0x36,0x50,0xde,0x36,0xc0,0xbd,0x3d,0xc0,0xa3,0x36,0xb8,0xab, +0x2d,0x4a,0x96,0xca,0x9f,0x53,0x9e,0x6a,0x1b,0xe0,0xa9,0x14, +0xde,0x32,0xdb,0xe0,0x09,0xe5,0xb9,0x9e,0xe0,0x4c,0x1a,0xf6, +0xe3,0x49,0x0c,0xe7,0x51,0x0c,0xf6,0x63,0x02,0xb4,0xd9,0xfa, +0x96,0x3a,0xd4,0x5c,0xeb,0x05,0x09,0x88,0x87,0x36,0x60,0x94, +0xb3,0x10,0x4f,0x62,0xf9,0x99,0x40,0x4f,0xa4,0xe1,0xbe,0x58, +0xdc,0xd3,0x8e,0xdf,0x99,0x56,0xed,0xd9,0x78,0xc1,0x83,0x40, +0x79,0xb6,0xe3,0x29,0xc4,0xf3,0xa7,0x7b,0x83,0x6b,0xed,0xf9, +0x73,0x71,0x41,0xea,0x9a,0xe6,0x17,0x10,0xf7,0xd4,0x70,0x19, +0x24,0xa7,0x35,0xa4,0xcd,0x4a,0x5a,0x88,0x60,0x25,0x2d,0x21, +0x25,0xd6,0x1a,0x9e,0x8a,0xc7,0x1d,0x89,0xe0,0x45,0x1c,0x9e, +0x8e,0xe4,0xa1,0x35,0x69,0x05,0xb4,0xe6,0xc7,0x96,0x1a,0x72, +0x65,0xed,0x53,0x79,0xa2,0x0d,0xb6,0xdd,0xc0,0xc5,0x44,0xe4, +0xca,0xf2,0xb5,0xa0,0x06,0xda,0x84,0x9c,0x1f,0xb5,0xe7,0x5e, +0x37,0xde,0x2a,0x14,0x8a,0xa2,0x39,0x45,0xec,0x4c,0x1b,0xd4, +0x7c,0x8c,0x86,0xd6,0x36,0xfc,0x4a,0x02,0xb6,0xdd,0xd1,0xb6, +0x5a,0x89,0x73,0x75,0xcb,0xbd,0xd9,0x79,0xb3,0x2a,0x15,0x8b, +0xa4,0x35,0x68,0x6f,0x0b,0x44,0xf2,0xfa,0x6b,0xc9,0x8f,0x23, +0x83,0x7c,0xba,0x23,0xee,0x8d,0xc5,0xdd,0xad,0x20,0x3f,0x16, +0x6c,0x5b,0xa2,0x7e,0xdb,0xf0,0xd4,0xa2,0x78,0x5a,0x16,0xbe, +0x17,0x85,0x2b,0x35,0xa5,0xa4,0x3c,0xc7,0x9e,0x62,0xf9,0x5f, +0x0e,0xde,0x57,0xc9,0xa6,0x95,0x73,0xd8,0x1a,0xa2,0xda,0x6e, +0x5e,0x6b,0x79,0x88,0x46,0xcd,0xb7,0x01,0x0d,0x0a,0x15,0x6d, +0x6a,0xb8,0xbf,0x8d,0xb0,0x52,0x18,0x67,0xda,0x00,0xde,0x77, +0x24,0xe3,0x5c,0x77,0xae,0xbb,0xad,0x3c,0xc4,0xf1,0xb2,0x36, +0x8c,0x16,0x68,0x7c,0x79,0x0a,0x14,0x32,0x51,0x97,0x91,0xe0, +0x49,0x04,0x31,0x6b,0x42,0x04,0x5a,0x40,0x24,0x3f,0x57,0xf7, +0x74,0x99,0x4e,0x31,0xa3,0xb4,0xcd,0x90,0x4e,0x73,0x2e,0x37, +0x55,0xb9,0xb0,0xf4,0xd9,0xf9,0xba,0xe6,0xa0,0xa4,0xa6,0xa5, +0xd3,0x01,0xc9,0x8e,0x42,0xad,0x45,0x88,0x3b,0x94,0x1c,0xa2, +0x78,0xde,0xd4,0x7b,0xf4,0xd9,0x40,0xb5,0xd5,0x70,0x35,0xdb, +0x1f,0x7d,0x9d,0x83,0x5b,0x97,0x55,0xe3,0x22,0x7b,0x8d,0x12, +0x5a,0xdd,0xae,0x65,0x96,0x98,0x13,0x7d,0x74,0xb6,0xb0,0xd8, +0xda,0xf1,0x71,0x4e,0x3b,0x9f,0xf7,0xab,0xf7,0xb1,0xeb,0x83, +0xd0,0xb3,0x76,0xf0,0x8c,0x70,0xdb,0xfb,0x79,0xa2,0x61,0x79, +0x76,0x05,0xa7,0x3f,0x49,0xd8,0xa3,0xc9,0x7c,0x84,0x62,0x0f, +0x78,0x7f,0x32,0x34,0x57,0x02,0xb9,0x14,0xd4,0x3a,0xc4,0x68, +0x92,0x8d,0xeb,0xb4,0xf7,0x5c,0x8a,0xe3,0xbe,0x28,0x67,0x2a, +0x1f,0xed,0xd5,0xbf,0x2c,0xf5,0xad,0xfd,0x24,0x48,0x30,0xb3, +0x78,0x22,0x91,0x52,0x8b,0x1a,0xb5,0x7d,0x12,0xef,0x19,0x2c, +0x5c,0x97,0x31,0x29,0x67,0x1a,0x9d,0x7a,0xb5,0xa6,0x70,0xcf, +0x19,0xd6,0x0f,0xc4,0xf2,0xb4,0x23,0xb9,0x8e,0x8b,0xe3,0xad, +0xa3,0x85,0xe8,0x25,0x1a,0x5f,0x83,0xfb,0x0f,0xb9,0x9e,0x31, +0x83,0x3a,0x62,0xf0,0x77,0x5f,0x26,0x24,0x94,0x79,0x60,0x12, +0x03,0x4a,0xf2,0xb9,0xa3,0x12,0xe5,0x89,0x3c,0x8c,0xf3,0x2e, +0xc1,0x73,0x89,0x5c,0x02,0xd2,0xfd,0xf8,0x42,0x9a,0x37,0x42, +0xdd,0xf7,0x3a,0x67,0xac,0x61,0xf3,0x21,0xcf,0x55,0x63,0x8b, +0x9a,0x46,0x17,0x29,0x62,0x64,0x11,0x87,0x94,0x13,0xb9,0x5d, +0x6d,0xd3,0x8c,0x2c,0x6c,0x17,0xdc,0xe8,0xab,0x17,0xd7,0x2a, +0xb1,0xdc,0xcb,0xc0,0xda,0x75,0x6c,0xb5,0x6b,0x8a,0x55,0x9f, +0x84,0xda,0x4a,0xe5,0xfe,0x88,0x58,0x7e,0xa7,0x9d,0xfb,0x23, +0xaa,0xa7,0x93,0x85,0xeb,0xec,0x1a,0x93,0x99,0xde,0x5c,0x5b, +0x26,0xf1,0xf1,0x7b,0x52,0x88,0x68,0x6f,0x08,0xed,0x9e,0x80, +0x56,0xdb,0x92,0x34,0x41,0x50,0x7b,0xb2,0x26,0x41,0x3f,0x1b, +0xcf,0x9f,0x54,0x9e,0xb2,0xf2,0xf6,0xdf,0xc4,0x13,0x22,0x78, +0x0f,0xa8,0xf4,0x85,0x4d,0x7d,0x3e,0x6d,0xd6,0xf4,0xa5,0xca, +0xb3,0x11,0x3c,0x25,0x95,0xa2,0x08,0x4f,0x4a,0xc1,0xd2,0xe5, +0xf1,0x6f,0x73,0xcf,0x3b,0xd3,0x4d,0xa7,0xf4,0x1b,0x83,0xf2, +0xb4,0x5b,0x3c,0x5e,0xef,0x67,0x15,0x2f,0xb7,0xe2,0xd5,0x56, +0x7d,0xda,0xdc,0x9f,0xbd,0xd1,0xa7,0xa7,0xba,0x3e,0xda,0x56, +0x09,0xbe,0x7c,0x84,0x99,0xdc,0xf3,0x17,0x58,0x9f,0xb4,0xc7, +0x1d,0xac,0x2f,0x4c,0xe7,0x9e,0x46,0x56,0xee,0x50,0xca,0x45, +0x92,0xe8,0xa3,0xfd,0x7b,0x3e,0x1d,0xa2,0x15,0x24,0xf0,0x36, +0xee,0xdf,0xdb,0x74,0x09,0xf7,0x86,0xb6,0xe3,0x16,0x43,0x72, +0x48,0x69,0x54,0x3c,0x82,0x09,0x7e,0xed,0x90,0x44,0xe1,0x1f, +0xb2,0xd7,0x2a,0xd5,0x0c,0xee,0xfd,0xb5,0x07,0xed,0x2f,0xac, +0x4b,0x48,0x16,0xd6,0x93,0xc2,0x61,0x7b,0x0d,0xf7,0x66,0x08, +0xbb,0x43,0xf1,0xea,0xd9,0xc5,0x93,0xc1,0xe4,0x93,0xc2,0xf5, +0x4f,0x7c,0x48,0xf4,0x8a,0xe2,0xc7,0x8d,0x0b,0xe8,0x3d,0xab, +0xf2,0xde,0x29,0x3e,0xdf,0xb8,0x80,0xe5,0x52,0x3c,0x77,0xc1, +0xa4,0xe8,0x3f,0xb0,0xde,0x88,0xf5,0x2e,0xd1,0x01,0xee,0x69, +0xcb,0xf3,0x68,0x2b,0xee,0xac,0x39,0xcd,0x38,0xd1,0x63,0xd9, +0x42,0x5e,0xef,0x8a,0x7f,0xc9,0x9f,0x36,0x55,0x6a,0x36,0xd0, +0x3d,0x55,0x5a,0x5b,0xf5,0x51,0xc5,0x8a,0x10,0x2a,0x0a,0xad, +0xdc,0x1e,0x6b,0x11,0xc0,0x26,0xb3,0x71,0x9b,0x8d,0x8d,0x79, +0xa3,0x85,0x77,0x20,0x32,0x28,0xdf,0x40,0x0c,0x46,0x63,0x6d, +0xb8,0xaf,0x44,0x0d,0x75,0xa7,0xb2,0x8d,0xcf,0xe7,0x15,0x7f, +0x4b,0xcb,0x6a,0x77,0xc5,0x72,0xcf,0x68,0x28,0x38,0x13,0x29, +0x82,0x6f,0xaf,0x45,0x2b,0xde,0x87,0x45,0xf1,0x38,0x50,0x2a, +0xcc,0xff,0xa1,0xfa,0xd6,0x2c,0x1c,0x8d,0x35,0xce,0xb6,0xd5, +0xe0,0x6f,0x89,0x11,0xfe,0x0c,0x56,0xb3,0x36,0x2e,0x53,0xd1, +0xb5,0x4a,0xdf,0xce,0x6d,0x23,0xc5,0xbf,0xd1,0xb6,0x9e,0xad, +0xba,0xba,0x9d,0xc0,0xc6,0xf0,0xe6,0x73,0xb4,0x54,0x73,0xcf, +0xf9,0x40,0x23,0x78,0x36,0xfa,0x6e,0x5e,0x0f,0x2f,0x02,0x0d, +0x52,0xcf,0xfa,0xef,0xa3,0x94,0xb9,0x29,0xa6,0xb7,0xdb,0x05, +0x39,0x93,0xa8,0xa4,0x98,0x2e,0x66,0x76,0x53,0x1b,0x45,0x3a, +0x6a,0x1e,0xcd,0xb7,0xe7,0xe3,0x59,0xbb,0x18,0xfd,0x27,0xd4, +0x32,0x7d,0x36,0x0a,0x8e,0x17,0xbe,0x03,0x27,0x90,0x80,0xbd, +0xd0,0x5a,0x03,0xbe,0x34,0x50,0x0b,0xee,0x97,0x53,0x46,0xb3, +0x51,0x42,0x9a,0x8c,0x40,0x93,0x73,0x46,0xaa,0x4c,0x52,0x58, +0x9b,0x6c,0x16,0x12,0x5a,0xe2,0x6b,0xe8,0x73,0x93,0xf9,0xec, +0x44,0x5b,0x3e,0x52,0xf0,0x3d,0xf6,0xcf,0x14,0x9e,0x8e,0x54, +0xdc,0x91,0x11,0x52,0x3e,0x45,0xd7,0xd8,0x5b,0x56,0xcd,0x0b, +0xb5,0x0d,0x32,0x4d,0x65,0x3c,0x68,0xaf,0x77,0x9f,0x99,0xcc, +0xdb,0x8b,0x3d,0x40,0xab,0x48,0xf4,0x31,0xee,0xf2,0x17,0x52, +0x79,0x6a,0x69,0xbc,0xed,0x85,0x86,0x77,0x8a,0xcf,0x50,0x19, +0x97,0xf8,0xbe,0x23,0x8a,0x8f,0x7a,0x22,0xc4,0x1d,0xbe,0xef, +0x6a,0x22,0x46,0x33,0x6c,0xec,0xd4,0x84,0xa7,0xd9,0xa4,0xd1, +0x7a,0x81,0xf3,0x1f,0xda,0x23,0xa4,0x70,0x4b,0x36,0x25,0xa0, +0xdf,0xab,0x61,0xf2,0xd4,0x86,0x14,0xb1,0x56,0x46,0x45,0x3b, +0x3e,0xa3,0x97,0x2a,0xd6,0xbb,0xa4,0x89,0xb5,0x2e,0xc9,0x8d, +0xc8,0x1b,0x95,0x82,0xaa,0x55,0x37,0x2c,0xa4,0x72,0x5a,0x92, +0x3d,0xc8,0x40,0x68,0xcf,0x47,0x7d,0xed,0xb0,0x97,0xfe,0x3f, +0x24,0x3b,0x8d,0x19,0x52,0x79,0x2f,0xa5,0x84,0xa4,0x06,0x18, +0xbd,0x06,0x63,0x03,0x24,0xf1,0x51,0x97,0x3a,0x32,0xb0,0x7b, +0xc6,0x7e,0xc9,0x5c,0x0b,0xda,0x3d,0x50,0xe5,0x56,0x2b,0xdb, +0x69,0x1e,0xb9,0x6e,0x5c,0xaa,0xd3,0x3d,0xd4,0xa4,0x79,0xb5, +0xb7,0x64,0xee,0xab,0x38,0xb7,0xc5,0xa5,0x88,0x90,0xca,0x8f, +0x82,0x59,0x15,0x76,0x31,0xf8,0x1b,0xe5,0xc6,0x89,0xb1,0x6e, +0x42,0xc8,0xec,0xef,0xba,0x78,0x65,0xec,0xdc,0x76,0xd0,0x06, +0xc5,0x0a,0x6e,0xeb,0x41,0x22,0xf7,0xb6,0x6a,0x29,0x56,0x7a, +0xfe,0xc6,0xa5,0x3a,0x99,0xaf,0x7d,0xb2,0x9f,0x13,0xe2,0xb9, +0xa5,0x9b,0x20,0x56,0x49,0x25,0x78,0xd6,0x47,0xc5,0x8b,0xb6, +0x17,0x7f,0x51,0xde,0xea,0x60,0x13,0x57,0x71,0x37,0xb9,0xd1, +0x73,0x4f,0xe2,0xfe,0xb3,0x73,0xeb,0x39,0xc9,0x53,0xd3,0x09, +0xe7,0x48,0x83,0xb2,0x1e,0xce,0x1e,0xc0,0xc3,0xd8,0xd0,0x72, +0x99,0x1c,0x40,0x32,0xcf,0x95,0xce,0x04,0xcd,0x5a,0xc7,0x8b, +0x32,0xda,0xb8,0x21,0x81,0xeb,0xbc,0x38,0x8f,0xc7,0x39,0x81, +0xaf,0x04,0x53,0x71,0x7e,0x68,0x62,0xb2,0x9d,0xc1,0xe9,0x4a, +0xd0,0x68,0x5a,0x75,0xcd,0xa4,0x5d,0xcc,0x65,0x57,0xa7,0x54, +0xb1,0x37,0x7c,0x95,0xe4,0xfc,0x95,0x43,0x5b,0x9a,0x78,0x4e, +0x7b,0xf5,0xb2,0xd8,0xf9,0x98,0xd5,0xee,0x55,0x8e,0x44,0x3e, +0xc2,0xae,0xba,0x27,0xd1,0x73,0xf5,0xa2,0xb4,0x36,0x8c,0xf5, +0x61,0xe3,0xde,0x78,0x35,0xd8,0xb8,0x57,0x20,0xba,0x96,0x5e, +0xc4,0x50,0x85,0x38,0x12,0xcb,0xd7,0x0e,0x56,0x0f,0x36,0x4e, +0x65,0x1b,0x0f,0xce,0xa5,0x5a,0x4b,0x77,0xf4,0x05,0x41,0xb3, +0x32,0x6b,0x51,0x45,0x73,0x3c,0x9f,0x23,0xb0,0x69,0x42,0x0c, +0x9f,0x5b,0xbf,0x28,0x83,0x75,0xb5,0x4b,0x62,0xc5,0x9c,0x4b, +0x8c,0x58,0x0f,0xcc,0xf4,0x45,0xcc,0x79,0xd4,0x76,0x4c,0x33, +0x6b,0x69,0x52,0x29,0xb3,0x0b,0xba,0x14,0x68,0xe9,0x56,0xa9, +0x8e,0x6b,0x74,0xde,0xc5,0xfb,0xa0,0x94,0xd1,0x53,0x9d,0xd2, +0x38,0xcf,0x3c,0x55,0x2c,0xd7,0xc0,0x6d,0x11,0xb7,0xe5,0xdb, +0x8b,0xf2,0x57,0xdb,0x50,0x35,0x7f,0xd4,0x02,0xfb,0x56,0xbe, +0x02,0xf5,0x7c,0xd0,0xd1,0x86,0xe7,0xcd,0x28,0x88,0xac,0x16, +0x5a,0xe1,0x8c,0x45,0x33,0x2f,0xd8,0x9a,0xdf,0x15,0x68,0xee, +0xac,0x61,0x42,0x74,0xb5,0x9c,0xd5,0xd0,0x12,0xe7,0xb4,0xd4, +0xd9,0xf8,0xac,0x61,0x2b,0x31,0x23,0x69,0xe1,0xa5,0xb2,0x06, +0xb1,0xaa,0xf8,0x62,0x68,0x88,0x1a,0x6b,0x23,0xea,0x4c,0x1b, +0x94,0x3a,0x69,0x79,0x01,0xd7,0x0a,0xa3,0x3b,0x51,0xbc,0xbf, +0xd0,0xf2,0x1c,0xea,0xa3,0x3d,0xf4,0x2b,0xf0,0x55,0x4a,0x6d, +0x19,0x5b,0x5e,0xe0,0xb5,0x14,0xe3,0x29,0xaf,0x77,0x59,0xdb, +0xf0,0xd9,0xed,0x68,0x6c,0xb5,0xe5,0xb5,0x89,0xf2,0x56,0x0f, +0x16,0xa1,0x3f,0x54,0x5c,0x94,0xfe,0xba,0x05,0x0b,0x5f,0xaf, +0xa1,0xea,0x36,0x0b,0xe7,0x6d,0x64,0x23,0xd3,0xd0,0x8a,0xd3, +0x10,0xe5,0xa5,0x69,0x5b,0x08,0xed,0xab,0x68,0x60,0xab,0x58, +0xf9,0x10,0x25,0x82,0x42,0x6b,0x63,0x52,0xe9,0x4d,0x81,0x12, +0x5a,0xf0,0x1e,0x21,0xca,0x83,0xd6,0xa2,0x57,0x6b,0x21,0xfa, +0xb1,0x16,0x35,0xae,0x4e,0xbe,0x18,0xea,0x6a,0x3d,0x58,0xaa, +0x69,0x04,0xab,0xd0,0x13,0xad,0xf9,0xf6,0x7c,0xe8,0x70,0x6f, +0x8a,0xb4,0x34,0x29,0x68,0xcb,0x57,0xb7,0xb4,0xd6,0x7c,0x9f, +0xc0,0xc2,0x35,0x59,0x2c,0xd7,0x7a,0xd1,0xfc,0xa8,0x71,0x47, +0xdd,0xbe,0xe8,0x69,0xcd,0x47,0x8d,0x16,0x0f,0xda,0xf2,0xb7, +0x89,0x54,0xcb,0xc6,0xca,0x57,0x6e,0xb1,0x71,0xaf,0xd5,0x83, +0x8b,0xf2,0xa8,0xac,0x00,0x69,0x46,0xcc,0xe2,0x6d,0x21,0x73, +0xa3,0xe4,0xd7,0x9c,0xe7,0xa8,0x0d,0xcd,0xc4,0x7a,0x25,0x65, +0x5d,0x53,0xa4,0xa0,0xa9,0xea,0xad,0xa8,0x86,0x5e,0xcd,0xe4, +0x9d,0xa3,0x96,0x2e,0xe5,0x6d,0xa7,0x2a,0xea,0x2f,0x4a,0x4c, +0xe0,0xd9,0xdb,0x14,0xf1,0x96,0x50,0x55,0x48,0x12,0xef,0x4d, +0x35,0xde,0xfc,0x87,0x32,0x23,0x70,0xee,0x2c,0x42,0xa2,0x66, +0x1e,0xa1,0x9d,0x58,0x9d,0xad,0xce,0x76,0x2b,0xeb,0x22,0x12, +0x04,0x1a,0x97,0x6b,0x2a,0x2d,0xed,0x3c,0xd4,0x28,0x21,0x99, +0xcf,0x0f,0x27,0x78,0xa0,0xde,0xa7,0x5d,0xcb,0x91,0x74,0x9e, +0x66,0xbc,0xff,0x97,0xc2,0xb9,0xeb,0x11,0x12,0x84,0x94,0x27, +0x9e,0x07,0x6a,0x54,0x29,0xf6,0x9e,0x6b,0x4e,0xa8,0x36,0xd7, +0x9c,0x2a,0x66,0x03,0x12,0xbc,0xd6,0x73,0x24,0x78,0xd0,0xf8, +0x2b,0x4b,0x92,0xf8,0x57,0x66,0xe2,0xab,0x05,0x75,0x06,0x52, +0x45,0x9a,0x0f,0xca,0x13,0xb8,0x84,0x9f,0x2f,0xca,0xff,0x17, +0x43,0x0b,0xd1,0x4f,0x57,0x3f,0xdb,0x9c,0xbf,0x25,0x59,0x9f, +0xf7,0x7a,0x43,0x13,0xa2,0x04,0x75,0x91,0x35,0xd0,0xd7,0x92, +0xf7,0xec,0xe7,0x5a,0x20,0x51,0xe2,0x4d,0x2d,0xb5,0x3f,0x67, +0xeb,0x16,0x8d,0x5e,0x41,0x39,0xa7,0x22,0x58,0xca,0x98,0xd5, +0x10,0xee,0x15,0xcc,0xfc,0x7c,0xb8,0x07,0x2d,0xc4,0x3b,0x62, +0xe7,0x8e,0x58,0x9b,0x57,0xa3,0xab,0x15,0x1f,0x5d,0x36,0xe7, +0x6b,0x25,0x95,0x10,0xc9,0x47,0xbd,0xcd,0x3c,0xb8,0x28,0xa7, +0x0d,0xbf,0x7e,0xc2,0x5e,0x6d,0xc5,0x4e,0xf5,0x59,0xd5,0xb8, +0xf3,0x4c,0x57,0xa2,0x0f,0xca,0xb4,0xf3,0xc1,0xed,0xf9,0x8a, +0xc9,0x64,0xb1,0x7e,0x58,0x0d,0x29,0x62,0x85,0x75,0x6a,0x2d, +0x56,0x15,0x87,0x32,0x28,0x54,0xb1,0x35,0xe0,0x89,0xe7,0x50, +0xa6,0xd0,0xa4,0xac,0xff,0xce,0xe0,0xef,0xf9,0x69,0xaf,0x2b, +0x6f,0x0c,0x27,0xf2,0x77,0xef,0x12,0x2f,0xca,0xe7,0x79,0x9d, +0xe9,0xd6,0xce,0x1a,0x9f,0x5f,0xda,0xd4,0x19,0xe4,0xb8,0x7a, +0xcc,0x7b,0xdb,0x6a,0x7c,0x43,0xa0,0xf1,0xe8,0x8e,0x16,0xe7, +0xab,0xe6,0xbe,0x63,0xce,0x99,0xf7,0xb6,0xf1,0x19,0x47,0xdb, +0x45,0xc9,0x6c,0x14,0x7b,0xbb,0x6d,0xb5,0xb9,0xdc,0x58,0x3e, +0x8f,0x9b,0xc8,0xe7,0xab,0x2f,0x94,0xb9,0x5c,0x75,0xc4,0x5b, +0x9d,0x4a,0x65,0xc4,0x1b,0xeb,0x41,0x8a,0xe8,0x37,0xb4,0xf7, +0x28,0x7d,0x46,0xac,0x07,0xe7,0xc7,0x6b,0x70,0x2e,0x5d,0xb1, +0x7c,0x4c,0xa3,0xa5,0x2c,0xc5,0xc7,0x6a,0xc6,0xea,0x6b,0x19, +0xed,0x17,0xa5,0x35,0xe4,0x9e,0x31,0xf5,0xdb,0x06,0xcd,0xb8, +0x25,0xda,0xf8,0x6f,0xee,0x44,0x8a,0x1c,0xab,0x87,0x2a,0x6a, +0x14,0x44,0x7a,0xec,0x78,0xe5,0x2b,0x62,0xda,0xf7,0x90,0x9a, +0x72,0x68,0x83,0xd9,0x73,0xd6,0xdf,0x77,0x1a,0xfc,0x5b,0xf7, +0xda,0xa0,0x9e,0x55,0x51,0x45,0x85,0x1a,0xcc,0xe2,0x8c,0xb2, +0x8d,0xd4,0x94,0x44,0x2d,0x41,0x08,0x78,0x54,0x59,0x16,0x5c, +0xf0,0xf2,0x98,0xfb,0x0f,0xe7,0x7e,0x37,0xa2,0xbf,0xcf,0x73, +0x96,0xda,0x87,0x60,0x69,0x6d,0xcc,0x50,0x97,0x72,0x34,0x52, +0x89,0xfe,0x5d,0x03,0xe5,0x75,0xaa,0x03,0xfd,0x04,0xfd,0x70, +0xed,0xb1,0x6e,0x3d,0xc9,0x85,0x4d,0xde,0x45,0x87,0x1f,0xab, +0x5b,0xfd,0x2b,0x68,0x15,0x6f,0xe8,0x3a,0x92,0x45,0xe4,0x3b, +0x52,0xa1,0xff,0x86,0x18,0xf4,0xbb,0x48,0xaa,0xde,0x4d,0x32, +0xf4,0x3b,0x48,0x84,0xbe,0x1b,0xc9,0xd4,0x17,0x02,0xbf,0x90, +0x2e,0xfa,0x27,0x48,0x17,0x43,0x62,0x65,0xe5,0xef,0xf7,0x9b, +0xdf,0x28,0x79,0x5e,0x65,0x9b,0xdf,0xde,0xd6,0x1f,0x26,0x6d, +0xf4,0x9f,0x11,0xa7,0xce,0x40,0x86,0xe3,0xea,0x11,0xdd,0x14, +0x5d,0x8a,0xee,0x3d,0x32,0x04,0x21,0x4f,0x97,0xc2,0xf3,0x1b, +0x42,0xc2,0x75,0xe1,0x18,0x83,0xf4,0xa8,0xfc,0x5e,0x5f,0x4e, +0x3a,0x11,0x3d,0x9e,0x66,0x34,0x0d,0xf5,0xb4,0x87,0x21,0x1e, +0xda,0xd8,0x73,0x43,0x74,0xeb,0x75,0x8f,0x03,0x6c,0xab,0x04, +0xec,0xc3,0x92,0xe0,0x65,0xa9,0xec,0xce,0xef,0xca,0xd3,0x3c, +0xe3,0x1d,0x44,0x19,0x40,0x69,0xd5,0xde,0x97,0x08,0xea,0xf5, +0x03,0x08,0xca,0xde,0x7f,0x74,0x6d,0xc9,0xc3,0xa0,0xe6,0x27, +0x84,0xfe,0x9e,0x27,0x8f,0x23,0xb8,0x79,0x9e,0x6f,0xa0,0xec, +0xcf,0x21,0xec,0x41,0xd8,0x87,0x70,0x0b,0x82,0x85,0x6c,0xd3, +0x2d,0x20,0xb1,0xba,0xef,0x74,0x5f,0xf2,0x8f,0xb7,0x7f,0x87, +0x32,0x97,0xea,0xbe,0x54,0x63,0x52,0xcb,0x1f,0x7f,0xee,0x08, +0x7f,0x96,0x6d,0x6b,0xfd,0x3c,0xb9,0xea,0x9c,0xd0,0x9d,0xf4, +0x00,0xb7,0xe3,0xc0,0xa1,0x31,0xdc,0x1e,0x68,0x0a,0x6d,0xa9, +0x83,0x9c,0x66,0x91,0x4c,0x20,0x8b,0xcf,0x4e,0x0e,0x43,0x98, +0x85,0x90,0x4a,0xee,0x21,0x1d,0xc9,0xed,0xe4,0x32,0xd4,0xcb, +0xed,0x78,0xae,0x17,0x19,0x49,0x86,0x93,0x49,0x64,0xa4,0xa1, +0x99,0x2e,0x59,0xd7,0xde,0xd0,0x8c,0x73,0xee,0x38,0xf9,0x90, +0x7f,0x27,0x9d,0xc5,0x27,0xc8,0x17,0x3c,0xbe,0x97,0x7f,0x5b, +0xfd,0x18,0x3f,0xff,0x37,0x72,0x1b,0xb9,0x8f,0x1f,0x7f,0xc9, +0xb9,0x77,0x98,0x1c,0x25,0x2f,0x02,0x1f,0x92,0xfb,0xc9,0x67, +0xe0,0xb6,0x46,0xe7,0xea,0x16,0x62,0x5b,0xbd,0xa6,0x94,0xfd, +0xbd,0x5c,0xfe,0x94,0xf6,0x50,0x55,0x17,0x5a,0x59,0x4c,0x57, +0xa4,0x43,0x13,0xa7,0x6b,0x9e,0xa8,0x7e,0x6f,0x55,0x0e,0x79, +0xd5,0xf6,0xd3,0x79,0x0b,0xca,0xe3,0xa9,0xa5,0xf3,0xa7,0xfa, +0x7b,0xe5,0xc4,0x8e,0x37,0x90,0xfe,0x90,0xe1,0x3c,0x91,0x16, +0x93,0x50,0xa2,0x7e,0xb5,0xff,0xff,0x01,0xc0,0x4d,0x76,0xd3 +}; +const unsigned int font_plexSansKR_compressed_size=616728; diff --git a/src/gui/fonts.h b/src/gui/fonts.h index 11cbb6bf7..83063f51f 100644 --- a/src/gui/fonts.h +++ b/src/gui/fonts.h @@ -30,6 +30,10 @@ extern const unsigned int font_mononoki_compressed_size; extern const unsigned char font_mononoki_compressed_data[]; extern const unsigned int font_plexSans_compressed_size; extern const unsigned char font_plexSans_compressed_data[]; +extern const unsigned int font_plexSansJP_compressed_size; +extern const unsigned char font_plexSansJP_compressed_data[]; +extern const unsigned int font_plexSansKR_compressed_size; +extern const unsigned char font_plexSansKR_compressed_data[]; extern const unsigned int font_plexMono_compressed_size; extern const unsigned char font_plexMono_compressed_data[]; extern const unsigned int font_proggyClean_compressed_size; diff --git a/src/gui/grooves.cpp b/src/gui/grooves.cpp index 431cae610..c12848709 100644 --- a/src/gui/grooves.cpp +++ b/src/gui/grooves.cpp @@ -32,10 +32,10 @@ void FurnaceGUI::drawGrooves() { } if (!groovesOpen) return; ImGui::SetNextWindowSizeConstraints(ImVec2(64.0f*dpiScale,32.0f*dpiScale),ImVec2(canvasW,canvasH)); - if (ImGui::Begin("Grooves",&groovesOpen,globalWinFlags)) { + if (ImGui::Begin("Grooves",&groovesOpen,globalWinFlags,_("Grooves"))) { int delGroove=-1; - ImGui::Text("use effect 09xx to select a groove pattern."); + ImGui::Text(_("use effect 09xx to select a groove pattern.")); if (!e->song.grooves.empty()) if (ImGui::BeginTable("GrooveList",3,ImGuiTableFlags_Borders)) { ImGui::TableSetupColumn("c0",ImGuiTableColumnFlags_WidthFixed); ImGui::TableSetupColumn("c1",ImGuiTableColumnFlags_WidthStretch); @@ -45,7 +45,7 @@ void FurnaceGUI::drawGrooves() { ImGui::TableNextColumn(); ImGui::Text("#"); ImGui::TableNextColumn(); - ImGui::Text("pattern"); + ImGui::Text(_("pattern")); ImGui::TableNextColumn(); // ImGui::Text("remove"); removed because the text clips from the fixed width @@ -129,7 +129,7 @@ void FurnaceGUI::drawGrooves() { } popDestColor(); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("remove"); + ImGui::SetTooltip(_("remove")); } index++; diff --git a/src/gui/gui.cpp b/src/gui/gui.cpp index 9a17e8669..b20d3a1cd 100644 --- a/src/gui/gui.cpp +++ b/src/gui/gui.cpp @@ -515,6 +515,12 @@ bool FurnaceGUI::InvCheckbox(const char* label, bool* value) { return false; } +bool FurnaceGUI::LocalizedComboGetter(void* data, int idx, const char** out_text) { + const char* const* items=(const char* const*)data; + if (out_text) *out_text=_(items[idx]); + return true; +} + void FurnaceGUI::sameLineMaybe(float width) { if (width<0.0f) width=ImGui::GetFrameHeight(); @@ -1127,11 +1133,11 @@ void FurnaceGUI::play(int row) { if (!followPattern) e->setOrder(curOrder); if (row>0) { if (!e->playToRow(row)) { - showError("the song is over!"); + showError(_("the song is over!")); } } else { if (!e->play()) { - showError("the song is over!"); + showError(_("the song is over!")); } } curNibble=false; @@ -1658,21 +1664,21 @@ void FurnaceGUI::openFileDialog(FurnaceGUIFileDialogs type) { case GUI_FILE_OPEN: if (!dirExists(workingDirSong)) workingDirSong=getHomeDir(); hasOpened=fileDialog->openLoad( - "Open File", - {"compatible files", "*.fur *.dmf *.mod *.fc13 *.fc14 *.smod *.fc *.ftm *.0cc *.dnm *.eft *.fub *.tfe", - "all files", "*"}, + _("Open File"), + {_("compatible files"), "*.fur *.dmf *.mod *.fc13 *.fc14 *.smod *.fc *.ftm *.0cc *.dnm *.eft *.fub *.tfe", + _("all files"), "*"}, workingDirSong, dpiScale ); break; case GUI_FILE_OPEN_BACKUP: if (!dirExists(backupPath)) { - showError("no backups made yet!"); + showError(_("no backups made yet!")); break; } hasOpened=fileDialog->openLoad( - "Restore Backup", - {"Furnace song", "*.fur"}, + _("Restore Backup"), + {_("Furnace song"), "*.fur"}, backupPath+String(DIR_SEPARATOR_STR), dpiScale ); @@ -1680,8 +1686,8 @@ void FurnaceGUI::openFileDialog(FurnaceGUIFileDialogs type) { case GUI_FILE_SAVE: if (!dirExists(workingDirSong)) workingDirSong=getHomeDir(); hasOpened=fileDialog->openSave( - "Save File", - {"Furnace song", "*.fur"}, + _("Save File"), + {_("Furnace song"), "*.fur"}, workingDirSong, dpiScale ); @@ -1689,8 +1695,8 @@ void FurnaceGUI::openFileDialog(FurnaceGUIFileDialogs type) { case GUI_FILE_SAVE_DMF: if (!dirExists(workingDirSong)) workingDirSong=getHomeDir(); hasOpened=fileDialog->openSave( - "Export DMF", - {"DefleMask 1.1.3 module", "*.dmf"}, + _("Export DMF"), + {_("DefleMask 1.1.3 module"), "*.dmf"}, workingDirSong, dpiScale, (settings.autoFillSave)?shortName:"" @@ -1699,8 +1705,8 @@ void FurnaceGUI::openFileDialog(FurnaceGUIFileDialogs type) { case GUI_FILE_SAVE_DMF_LEGACY: if (!dirExists(workingDirSong)) workingDirSong=getHomeDir(); hasOpened=fileDialog->openSave( - "Export DMF", - {"DefleMask 1.0/legacy module", "*.dmf"}, + _("Export DMF"), + {_("DefleMask 1.0/legacy module"), "*.dmf"}, workingDirSong, dpiScale, (settings.autoFillSave)?shortName:"" @@ -1717,24 +1723,24 @@ void FurnaceGUI::openFileDialog(FurnaceGUIFileDialogs type) { *prevInsData=*e->getIns(curIns); if (!dirExists(workingDirIns)) workingDirIns=getHomeDir(); hasOpened=fileDialog->openLoad( - "Load Instrument", - {"all compatible files", "*.fui *.dmp *.tfi *.vgi *.s3i *.sbi *.opli *.opni *.y12 *.bnk *.ff *.gyb *.opm *.wopl *.wopn", - "Furnace instrument", "*.fui", - "DefleMask preset", "*.dmp", - "TFM Music Maker instrument", "*.tfi", - "VGM Music Maker instrument", "*.vgi", - "Scream Tracker 3 instrument", "*.s3i", - "SoundBlaster instrument", "*.sbi", - "Wohlstand OPL instrument", "*.opli", - "Wohlstand OPN instrument", "*.opni", - "Gens KMod patch dump", "*.y12", - "BNK file (AdLib)", "*.bnk", - "FF preset bank", "*.ff", - "2612edit GYB preset bank", "*.gyb", - "VOPM preset bank", "*.opm", - "Wohlstand WOPL bank", "*.wopl", - "Wohlstand WOPN bank", "*.wopn", - "all files", "*"}, + _("Load Instrument"), + {_("all compatible files"), "*.fui *.dmp *.tfi *.vgi *.s3i *.sbi *.opli *.opni *.y12 *.bnk *.ff *.gyb *.opm *.wopl *.wopn", + _("Furnace instrument"), "*.fui", + _("DefleMask preset"), "*.dmp", + _("TFM Music Maker instrument"), "*.tfi", + _("VGM Music Maker instrument"), "*.vgi", + _("Scream Tracker 3 instrument"), "*.s3i", + _("SoundBlaster instrument"), "*.sbi", + _("Wohlstand OPL instrument"), "*.opli", + _("Wohlstand OPN instrument"), "*.opni", + _("Gens KMod patch dump"), "*.y12", + _("BNK file (AdLib)"), "*.bnk", + _("FF preset bank"), "*.ff", + _("2612edit GYB preset bank"), "*.gyb", + _("VOPM preset bank"), "*.opm", + _("Wohlstand WOPL bank"), "*.wopl", + _("Wohlstand WOPN bank"), "*.wopn", + _("all files"), "*"}, workingDirIns, dpiScale, [this](const char* path) { @@ -1767,8 +1773,8 @@ void FurnaceGUI::openFileDialog(FurnaceGUIFileDialogs type) { case GUI_FILE_INS_SAVE: if (!dirExists(workingDirIns)) workingDirIns=getHomeDir(); hasOpened=fileDialog->openSave( - "Save Instrument", - {"Furnace instrument", "*.fui"}, + _("Save Instrument"), + {_("Furnace instrument"), "*.fui"}, workingDirIns, dpiScale, (settings.autoFillSave)?e->getIns(curIns)->name:"" @@ -1777,8 +1783,8 @@ void FurnaceGUI::openFileDialog(FurnaceGUIFileDialogs type) { case GUI_FILE_INS_SAVE_DMP: if (!dirExists(workingDirIns)) workingDirIns=getHomeDir(); hasOpened=fileDialog->openSave( - "Save Instrument", - {"DefleMask preset", "*.dmp"}, + _("Save Instrument"), + {_("DefleMask preset"), "*.dmp"}, workingDirIns, dpiScale, (settings.autoFillSave)?e->getIns(curIns)->name:"" @@ -1788,9 +1794,9 @@ void FurnaceGUI::openFileDialog(FurnaceGUIFileDialogs type) { case GUI_FILE_WAVE_OPEN_REPLACE: if (!dirExists(workingDirWave)) workingDirWave=getHomeDir(); hasOpened=fileDialog->openLoad( - "Load Wavetable", - {"compatible files", "*.fuw *.dmw", - "all files", "*"}, + _("Load Wavetable"), + {_("compatible files"), "*.fuw *.dmw", + _("all files"), "*"}, workingDirWave, dpiScale, NULL, // TODO @@ -1800,8 +1806,8 @@ void FurnaceGUI::openFileDialog(FurnaceGUIFileDialogs type) { case GUI_FILE_WAVE_SAVE: if (!dirExists(workingDirWave)) workingDirWave=getHomeDir(); hasOpened=fileDialog->openSave( - "Save Wavetable", - {"Furnace wavetable", ".fuw"}, + _("Save Wavetable"), + {_("Furnace wavetable"), ".fuw"}, workingDirWave, dpiScale ); @@ -1809,8 +1815,8 @@ void FurnaceGUI::openFileDialog(FurnaceGUIFileDialogs type) { case GUI_FILE_WAVE_SAVE_DMW: if (!dirExists(workingDirWave)) workingDirWave=getHomeDir(); hasOpened=fileDialog->openSave( - "Save Wavetable", - {"DefleMask wavetable", ".dmw"}, + _("Save Wavetable"), + {_("DefleMask wavetable"), ".dmw"}, workingDirWave, dpiScale ); @@ -1818,8 +1824,8 @@ void FurnaceGUI::openFileDialog(FurnaceGUIFileDialogs type) { case GUI_FILE_WAVE_SAVE_RAW: if (!dirExists(workingDirWave)) workingDirWave=getHomeDir(); hasOpened=fileDialog->openSave( - "Save Wavetable", - {"raw data", ".raw"}, + _("Save Wavetable"), + {_("raw data"), ".raw"}, workingDirWave, dpiScale ); @@ -1828,9 +1834,9 @@ void FurnaceGUI::openFileDialog(FurnaceGUIFileDialogs type) { case GUI_FILE_SAMPLE_OPEN_REPLACE: if (!dirExists(workingDirSample)) workingDirSample=getHomeDir(); hasOpened=fileDialog->openLoad( - "Load Sample", - {"compatible files", "*.wav *.dmc *.brr", - "all files", "*"}, + _("Load Sample"), + {_("compatible files"), "*.wav *.dmc *.brr", + _("all files"), "*"}, workingDirSample, dpiScale, NULL, // TODO @@ -1841,8 +1847,8 @@ void FurnaceGUI::openFileDialog(FurnaceGUIFileDialogs type) { case GUI_FILE_SAMPLE_OPEN_REPLACE_RAW: if (!dirExists(workingDirSample)) workingDirSample=getHomeDir(); hasOpened=fileDialog->openLoad( - "Load Raw Sample", - {"all files", "*"}, + _("Load Raw Sample"), + {_("all files"), "*"}, workingDirSample, dpiScale ); @@ -1850,8 +1856,8 @@ void FurnaceGUI::openFileDialog(FurnaceGUIFileDialogs type) { case GUI_FILE_SAMPLE_SAVE: if (!dirExists(workingDirSample)) workingDirSample=getHomeDir(); hasOpened=fileDialog->openSave( - "Save Sample", - {"Wave file", "*.wav"}, + _("Save Sample"), + {_("Wave file"), "*.wav"}, workingDirSample, dpiScale, (settings.autoFillSave)?e->getSample(curSample)->name:"" @@ -1860,8 +1866,8 @@ void FurnaceGUI::openFileDialog(FurnaceGUIFileDialogs type) { case GUI_FILE_SAMPLE_SAVE_RAW: if (!dirExists(workingDirSample)) workingDirSample=getHomeDir(); hasOpened=fileDialog->openSave( - "Save Raw Sample", - {"all files", "*"}, + _("Save Raw Sample"), + {_("all files"), "*"}, workingDirSample, dpiScale, (settings.autoFillSave)?e->getSample(curSample)->name:"" @@ -1870,8 +1876,8 @@ void FurnaceGUI::openFileDialog(FurnaceGUIFileDialogs type) { case GUI_FILE_EXPORT_AUDIO_ONE: if (!dirExists(workingDirAudioExport)) workingDirAudioExport=getHomeDir(); hasOpened=fileDialog->openSave( - "Export Audio", - {"Wave file", "*.wav"}, + _("Export Audio"), + {_("Wave file"), "*.wav"}, workingDirAudioExport, dpiScale, (settings.autoFillSave)?shortName:"" @@ -1880,8 +1886,8 @@ void FurnaceGUI::openFileDialog(FurnaceGUIFileDialogs type) { case GUI_FILE_EXPORT_AUDIO_PER_SYS: if (!dirExists(workingDirAudioExport)) workingDirAudioExport=getHomeDir(); hasOpened=fileDialog->openSave( - "Export Audio", - {"Wave file", "*.wav"}, + _("Export Audio"), + {_("Wave file"), "*.wav"}, workingDirAudioExport, dpiScale, (settings.autoFillSave)?shortName:"" @@ -1890,8 +1896,8 @@ void FurnaceGUI::openFileDialog(FurnaceGUIFileDialogs type) { case GUI_FILE_EXPORT_AUDIO_PER_CHANNEL: if (!dirExists(workingDirAudioExport)) workingDirAudioExport=getHomeDir(); hasOpened=fileDialog->openSave( - "Export Audio", - {"Wave file", "*.wav"}, + _("Export Audio"), + {_("Wave file"), "*.wav"}, workingDirAudioExport, dpiScale, (settings.autoFillSave)?shortName:"" @@ -1900,8 +1906,8 @@ void FurnaceGUI::openFileDialog(FurnaceGUIFileDialogs type) { case GUI_FILE_EXPORT_VGM: if (!dirExists(workingDirVGMExport)) workingDirVGMExport=getHomeDir(); hasOpened=fileDialog->openSave( - "Export VGM", - {"VGM file", "*.vgm"}, + _("Export VGM"), + {_("VGM file"), "*.vgm"}, workingDirVGMExport, dpiScale, (settings.autoFillSave)?shortName:"" @@ -1910,8 +1916,8 @@ void FurnaceGUI::openFileDialog(FurnaceGUIFileDialogs type) { case GUI_FILE_EXPORT_ZSM: if (!dirExists(workingDirZSMExport)) workingDirZSMExport=getHomeDir(); hasOpened=fileDialog->openSave( - "Export ZSM", - {"ZSM file", "*.zsm"}, + _("Export ZSM"), + {_("ZSM file"), "*.zsm"}, workingDirZSMExport, dpiScale, (settings.autoFillSave)?shortName:"" @@ -1920,8 +1926,8 @@ void FurnaceGUI::openFileDialog(FurnaceGUIFileDialogs type) { case GUI_FILE_EXPORT_TEXT: if (!dirExists(workingDirROMExport)) workingDirROMExport=getHomeDir(); hasOpened=fileDialog->openSave( - "Export Command Stream", - {"text file", "*.txt"}, + _("Export Command Stream"), + {_("text file"), "*.txt"}, workingDirROMExport, dpiScale, (settings.autoFillSave)?shortName:"" @@ -1930,21 +1936,21 @@ void FurnaceGUI::openFileDialog(FurnaceGUIFileDialogs type) { case GUI_FILE_EXPORT_CMDSTREAM: if (!dirExists(workingDirROMExport)) workingDirROMExport=getHomeDir(); hasOpened=fileDialog->openSave( - "Export Command Stream", - {"binary file", "*.bin"}, + _("Export Command Stream"), + {_("binary file"), "*.bin"}, workingDirROMExport, dpiScale, (settings.autoFillSave)?shortName:"" ); break; case GUI_FILE_EXPORT_ROM: - showError("Coming soon!"); + showError(_("Coming soon!")); break; case GUI_FILE_LOAD_MAIN_FONT: if (!dirExists(workingDirFont)) workingDirFont=getHomeDir(); hasOpened=fileDialog->openLoad( - "Select Font", - {"compatible files", "*.ttf *.otf *.ttc *.dfont *.pcf *.psf *.fon"}, + _("Select Font"), + {_("compatible files"), "*.ttf *.otf *.ttc *.dfont *.pcf *.psf"}, workingDirFont, dpiScale ); @@ -1952,8 +1958,8 @@ void FurnaceGUI::openFileDialog(FurnaceGUIFileDialogs type) { case GUI_FILE_LOAD_HEAD_FONT: if (!dirExists(workingDirFont)) workingDirFont=getHomeDir(); hasOpened=fileDialog->openLoad( - "Select Font", - {"compatible files", "*.ttf *.otf *.ttc *.dfont *.pcf *.psf *.fon"}, + _("Select Font"), + {_("compatible files"), "*.ttf *.otf *.ttc *.dfont *.pcf *.psf"}, workingDirFont, dpiScale ); @@ -1961,8 +1967,8 @@ void FurnaceGUI::openFileDialog(FurnaceGUIFileDialogs type) { case GUI_FILE_LOAD_PAT_FONT: if (!dirExists(workingDirFont)) workingDirFont=getHomeDir(); hasOpened=fileDialog->openLoad( - "Select Font", - {"compatible files", "*.ttf *.otf *.ttc *.dfont *.pcf *.psf *.fon"}, + _("Select Font"), + {_("compatible files"), "*.ttf *.otf *.ttc *.dfont *.pcf *.psf"}, workingDirFont, dpiScale ); @@ -1970,8 +1976,8 @@ void FurnaceGUI::openFileDialog(FurnaceGUIFileDialogs type) { case GUI_FILE_IMPORT_COLORS: if (!dirExists(workingDirColors)) workingDirColors=getHomeDir(); hasOpened=fileDialog->openLoad( - "Select Color File", - {"configuration files", "*.cfgc"}, + _("Select Color File"), + {_("configuration files"), "*.cfgc"}, workingDirColors, dpiScale ); @@ -1979,8 +1985,8 @@ void FurnaceGUI::openFileDialog(FurnaceGUIFileDialogs type) { case GUI_FILE_IMPORT_KEYBINDS: if (!dirExists(workingDirKeybinds)) workingDirKeybinds=getHomeDir(); hasOpened=fileDialog->openLoad( - "Select Keybind File", - {"configuration files", "*.cfgk"}, + _("Select Keybind File"), + {_("configuration files"), "*.cfgk"}, workingDirKeybinds, dpiScale ); @@ -1988,8 +1994,8 @@ void FurnaceGUI::openFileDialog(FurnaceGUIFileDialogs type) { case GUI_FILE_IMPORT_LAYOUT: if (!dirExists(workingDirLayout)) workingDirLayout=getHomeDir(); hasOpened=fileDialog->openLoad( - "Select Layout File", - {".ini files", "*.ini"}, + _("Select Layout File"), + {_(".ini files"), "*.ini"}, workingDirLayout, dpiScale ); @@ -1998,8 +2004,8 @@ void FurnaceGUI::openFileDialog(FurnaceGUIFileDialogs type) { case GUI_FILE_IMPORT_USER_PRESETS_REPLACE: if (!dirExists(workingDirConfig)) workingDirConfig=getHomeDir(); hasOpened=fileDialog->openLoad( - "Select User Presets File", - {"configuration files", "*.cfgu"}, + _("Select User Presets File"), + {_("configuration files"), "*.cfgu"}, workingDirConfig, dpiScale ); @@ -2007,8 +2013,8 @@ void FurnaceGUI::openFileDialog(FurnaceGUIFileDialogs type) { case GUI_FILE_IMPORT_CONFIG: if (!dirExists(workingDirConfig)) workingDirConfig=getHomeDir(); hasOpened=fileDialog->openLoad( - "Select Settings File", - {"configuration files", "*.cfg"}, + _("Select Settings File"), + {_("configuration files"), "*.cfg"}, workingDirConfig, dpiScale ); @@ -2016,8 +2022,8 @@ void FurnaceGUI::openFileDialog(FurnaceGUIFileDialogs type) { case GUI_FILE_EXPORT_COLORS: if (!dirExists(workingDirColors)) workingDirColors=getHomeDir(); hasOpened=fileDialog->openSave( - "Export Colors", - {"configuration files", "*.cfgc"}, + _("Export Colors"), + {_("configuration files"), "*.cfgc"}, workingDirColors, dpiScale ); @@ -2025,8 +2031,8 @@ void FurnaceGUI::openFileDialog(FurnaceGUIFileDialogs type) { case GUI_FILE_EXPORT_KEYBINDS: if (!dirExists(workingDirKeybinds)) workingDirKeybinds=getHomeDir(); hasOpened=fileDialog->openSave( - "Export Keybinds", - {"configuration files", "*.cfgk"}, + _("Export Keybinds"), + {_("configuration files"), "*.cfgk"}, workingDirKeybinds, dpiScale ); @@ -2034,8 +2040,8 @@ void FurnaceGUI::openFileDialog(FurnaceGUIFileDialogs type) { case GUI_FILE_EXPORT_LAYOUT: if (!dirExists(workingDirLayout)) workingDirLayout=getHomeDir(); hasOpened=fileDialog->openSave( - "Export Layout", - {".ini files", "*.ini"}, + _("Export Layout"), + {_(".ini files"), "*.ini"}, workingDirLayout, dpiScale ); @@ -2043,8 +2049,8 @@ void FurnaceGUI::openFileDialog(FurnaceGUIFileDialogs type) { case GUI_FILE_EXPORT_USER_PRESETS: if (!dirExists(workingDirConfig)) workingDirConfig=getHomeDir(); hasOpened=fileDialog->openSave( - "Export User Presets", - {"configuration files", "*.cfgu"}, + _("Export User Presets"), + {_("configuration files"), "*.cfgu"}, workingDirConfig, dpiScale ); @@ -2052,8 +2058,8 @@ void FurnaceGUI::openFileDialog(FurnaceGUIFileDialogs type) { case GUI_FILE_EXPORT_CONFIG: if (!dirExists(workingDirConfig)) workingDirConfig=getHomeDir(); hasOpened=fileDialog->openSave( - "Export Settings", - {"configuration files", "*.cfg"}, + _("Export Settings"), + {_("configuration files"), "*.cfg"}, workingDirConfig, dpiScale ); @@ -2063,9 +2069,9 @@ void FurnaceGUI::openFileDialog(FurnaceGUIFileDialogs type) { case GUI_FILE_MU5_ROM_OPEN: if (!dirExists(workingDirSample)) workingDirSample=getHomeDir(); hasOpened=fileDialog->openLoad( - "Load ROM", - {"compatible files", "*.rom *.bin", - "all files", "*"}, + _("Load ROM"), + {_("compatible files"), "*.rom *.bin", + _("all files"), "*"}, workingDirROM, dpiScale ); @@ -2073,9 +2079,9 @@ void FurnaceGUI::openFileDialog(FurnaceGUIFileDialogs type) { case GUI_FILE_CMDSTREAM_OPEN: if (!dirExists(workingDirROM)) workingDirROM=getHomeDir(); hasOpened=fileDialog->openLoad( - "Play Command Stream", - {"command stream", "*.bin", - "all files", "*"}, + _("Play Command Stream"), + {_("command stream"), "*.bin", + _("all files"), "*"}, workingDirROM, dpiScale ); @@ -2083,10 +2089,10 @@ void FurnaceGUI::openFileDialog(FurnaceGUIFileDialogs type) { case GUI_FILE_TEST_OPEN: if (!dirExists(workingDirTest)) workingDirTest=getHomeDir(); hasOpened=fileDialog->openLoad( - "Open Test", - {"compatible files", "*.fur *.dmf *.mod", - "another option", "*.wav *.ttf", - "all files", "*"}, + _("Open Test"), + {_("compatible files"), "*.fur *.dmf *.mod", + _("another option"), "*.wav *.ttf", + _("all files"), "*"}, workingDirTest, dpiScale, [](const char* path) { @@ -2101,10 +2107,10 @@ void FurnaceGUI::openFileDialog(FurnaceGUIFileDialogs type) { case GUI_FILE_TEST_OPEN_MULTI: if (!dirExists(workingDirTest)) workingDirTest=getHomeDir(); hasOpened=fileDialog->openLoad( - "Open Test (Multi)", - {"compatible files", "*.fur *.dmf *.mod", - "another option", "*.wav *.ttf", - "all files", "*"}, + _("Open Test (Multi)"), + {_("compatible files"), "*.fur *.dmf *.mod", + _("another option"), "*.wav *.ttf", + _("all files"), "*"}, workingDirTest, dpiScale, [](const char* path) { @@ -2120,9 +2126,9 @@ void FurnaceGUI::openFileDialog(FurnaceGUIFileDialogs type) { case GUI_FILE_TEST_SAVE: if (!dirExists(workingDirTest)) workingDirTest=getHomeDir(); hasOpened=fileDialog->openSave( - "Save Test", - {"Furnace song", "*.fur", - "DefleMask module", "*.dmf"}, + _("Save Test"), + {_("Furnace song"), "*.fur", + _("DefleMask module"), "*.dmf"}, workingDirTest, dpiScale ); @@ -2162,7 +2168,7 @@ int FurnaceGUI::save(String path, int dmfVersion) { ret=deflateInit(&zl,Z_DEFAULT_COMPRESSION); if (ret!=Z_OK) { logE("zlib error!"); - lastError="compression error"; + lastError=_("compression error"); fclose(outFile); w->finish(); return 2; @@ -2174,7 +2180,7 @@ int FurnaceGUI::save(String path, int dmfVersion) { zl.next_out=zbuf; if ((ret=deflate(&zl,Z_NO_FLUSH))==Z_STREAM_ERROR) { logE("zlib stream error!"); - lastError="zlib stream error"; + lastError=_("zlib stream error"); deflateEnd(&zl); fclose(outFile); w->finish(); @@ -2196,7 +2202,7 @@ int FurnaceGUI::save(String path, int dmfVersion) { zl.next_out=zbuf; if ((ret=deflate(&zl,Z_FINISH))==Z_STREAM_ERROR) { logE("zlib finish stream error!"); - lastError="zlib finish stream error"; + lastError=_("zlib finish stream error"); deflateEnd(&zl); fclose(outFile); w->finish(); @@ -2250,38 +2256,38 @@ int FurnaceGUI::load(String path) { } if (fseek(f,0,SEEK_END)<0) { perror("size error"); - lastError=fmt::sprintf("on seek: %s",strerror(errno)); + lastError=fmt::sprintf(_("on seek: %s"),strerror(errno)); fclose(f); return 1; } ssize_t len=ftell(f); if (len==(SIZE_MAX>>1)) { perror("could not get file length"); - lastError=fmt::sprintf("on pre tell: %s",strerror(errno)); + lastError=fmt::sprintf(_("on pre tell: %s"),strerror(errno)); fclose(f); return 1; } if (len<1) { if (len==0) { logE("that file is empty!"); - lastError="file is empty"; + lastError=_("file is empty"); } else { perror("tell error"); - lastError=fmt::sprintf("on tell: %s",strerror(errno)); + lastError=fmt::sprintf(_("on tell: %s"),strerror(errno)); } fclose(f); return 1; } if (fseek(f,0,SEEK_SET)<0) { perror("size error"); - lastError=fmt::sprintf("on get size: %s",strerror(errno)); + lastError=fmt::sprintf(_("on get size: %s"),strerror(errno)); fclose(f); return 1; } unsigned char* file=new unsigned char[len]; if (fread(file,1,(size_t)len,f)!=(size_t)len) { perror("read error"); - lastError=fmt::sprintf("on read: %s",strerror(errno)); + lastError=fmt::sprintf(_("on read: %s"),strerror(errno)); fclose(f); delete[] file; return 1; @@ -2307,7 +2313,7 @@ int FurnaceGUI::load(String path) { selStart=SelectionPoint(); selEnd=SelectionPoint(); cursor=SelectionPoint(); - lastError="everything OK"; + lastError=_("everything OK"); undoHist.clear(); redoHist.clear(); updateWindowTitle(); @@ -2325,7 +2331,7 @@ int FurnaceGUI::load(String path) { } } else { // warn the user - showWarning("you have loaded a backup!\nif you need to, please save it somewhere.\n\nDO NOT RELY ON THE BACKUP SYSTEM FOR AUTO-SAVE!\nFurnace will not save backups of backups.",GUI_WARN_GENERIC); + showWarning(_("you have loaded a backup!\nif you need to, please save it somewhere.\n\nDO NOT RELY ON THE BACKUP SYSTEM FOR AUTO-SAVE!\nFurnace will not save backups of backups."),GUI_WARN_GENERIC); } return 0; } @@ -2333,10 +2339,10 @@ int FurnaceGUI::load(String path) { void FurnaceGUI::openRecentFile(String path) { if (modified) { nextFile=path; - showWarning("Unsaved changes! Save changes before opening file?",GUI_WARN_OPEN_DROP); + showWarning(_("Unsaved changes! Save changes before opening file?"),GUI_WARN_OPEN_DROP); } else { if (load(path)>0) { - showError(fmt::sprintf("Error while loading file! (%s)",lastError)); + showError(fmt::sprintf(_("Error while loading file! (%s)"),lastError)); } } } @@ -2413,38 +2419,38 @@ int FurnaceGUI::loadStream(String path) { } if (fseek(f,0,SEEK_END)<0) { perror("size error"); - lastError=fmt::sprintf("on seek: %s",strerror(errno)); + lastError=fmt::sprintf(_("on seek: %s"),strerror(errno)); fclose(f); return 1; } ssize_t len=ftell(f); if (len==(SIZE_MAX>>1)) { perror("could not get file length"); - lastError=fmt::sprintf("on pre tell: %s",strerror(errno)); + lastError=fmt::sprintf(_("on pre tell: %s"),strerror(errno)); fclose(f); return 1; } if (len<1) { if (len==0) { logE("that file is empty!"); - lastError="file is empty"; + lastError=_("file is empty"); } else { perror("tell error"); - lastError=fmt::sprintf("on tell: %s",strerror(errno)); + lastError=fmt::sprintf(_("on tell: %s"),strerror(errno)); } fclose(f); return 1; } if (fseek(f,0,SEEK_SET)<0) { perror("size error"); - lastError=fmt::sprintf("on get size: %s",strerror(errno)); + lastError=fmt::sprintf(_("on get size: %s"),strerror(errno)); fclose(f); return 1; } unsigned char* file=new unsigned char[len]; if (fread(file,1,(size_t)len,f)!=(size_t)len) { perror("read error"); - lastError=fmt::sprintf("on read: %s",strerror(errno)); + lastError=fmt::sprintf(_("on read: %s"),strerror(errno)); fclose(f); delete[] file; return 1; @@ -2724,15 +2730,15 @@ void FurnaceGUI::editOptions(bool topMenu) { char id[4096]; editOptsVisible=true; - if (ImGui::MenuItem("cut",BIND_FOR(GUI_ACTION_PAT_CUT))) doCopy(true,true,selStart,selEnd); - if (ImGui::MenuItem("copy",BIND_FOR(GUI_ACTION_PAT_COPY))) doCopy(false,true,selStart,selEnd); - if (ImGui::MenuItem("paste",BIND_FOR(GUI_ACTION_PAT_PASTE))) doPaste(); - if (ImGui::BeginMenu("paste special...")) { - if (ImGui::MenuItem("paste mix",BIND_FOR(GUI_ACTION_PAT_PASTE_MIX))) doPaste(GUI_PASTE_MODE_MIX_FG); - if (ImGui::MenuItem("paste mix (background)",BIND_FOR(GUI_ACTION_PAT_PASTE_MIX_BG))) doPaste(GUI_PASTE_MODE_MIX_BG); - if (ImGui::BeginMenu("paste with ins (foreground)")) { + if (ImGui::MenuItem(_("cut"),BIND_FOR(GUI_ACTION_PAT_CUT))) doCopy(true,true,selStart,selEnd); + if (ImGui::MenuItem(_("copy"),BIND_FOR(GUI_ACTION_PAT_COPY))) doCopy(false,true,selStart,selEnd); + if (ImGui::MenuItem(_("paste"),BIND_FOR(GUI_ACTION_PAT_PASTE))) doPaste(); + if (ImGui::BeginMenu(_("paste special..."))) { + if (ImGui::MenuItem(_("paste mix"),BIND_FOR(GUI_ACTION_PAT_PASTE_MIX))) doPaste(GUI_PASTE_MODE_MIX_FG); + if (ImGui::MenuItem(_("paste mix (background)"),BIND_FOR(GUI_ACTION_PAT_PASTE_MIX_BG))) doPaste(GUI_PASTE_MODE_MIX_BG); + if (ImGui::BeginMenu(_("paste with ins (foreground)"))) { if (e->song.ins.empty()) { - ImGui::Text("no instruments available"); + ImGui::Text(_("no instruments available")); } for (size_t i=0; isong.ins.size(); i++) { snprintf(id,4095,"%.2X: %s",(int)i,e->song.ins[i]->name.c_str()); @@ -2742,9 +2748,9 @@ void FurnaceGUI::editOptions(bool topMenu) { } ImGui::EndMenu(); } - if (ImGui::BeginMenu("paste with ins (background)")) { + if (ImGui::BeginMenu(_("paste with ins (background)"))) { if (e->song.ins.empty()) { - ImGui::Text("no instruments available"); + ImGui::Text(_("no instruments available")); } for (size_t i=0; isong.ins.size(); i++) { snprintf(id,4095,"%.2X: %s",(int)i,e->song.ins[i]->name.c_str()); @@ -2754,73 +2760,73 @@ void FurnaceGUI::editOptions(bool topMenu) { } ImGui::EndMenu(); } - if (ImGui::MenuItem("paste flood",BIND_FOR(GUI_ACTION_PAT_PASTE_FLOOD))) doPaste(GUI_PASTE_MODE_FLOOD); - if (ImGui::MenuItem("paste overflow",BIND_FOR(GUI_ACTION_PAT_PASTE_OVERFLOW))) doPaste(GUI_PASTE_MODE_OVERFLOW); + if (ImGui::MenuItem(_("paste flood"),BIND_FOR(GUI_ACTION_PAT_PASTE_FLOOD))) doPaste(GUI_PASTE_MODE_FLOOD); + if (ImGui::MenuItem(_("paste overflow"),BIND_FOR(GUI_ACTION_PAT_PASTE_OVERFLOW))) doPaste(GUI_PASTE_MODE_OVERFLOW); ImGui::EndMenu(); } - if (ImGui::MenuItem("delete",BIND_FOR(GUI_ACTION_PAT_DELETE))) doDelete(); + if (ImGui::MenuItem(_("delete"),BIND_FOR(GUI_ACTION_PAT_DELETE))) doDelete(); if (topMenu) { - if (ImGui::MenuItem("select all",BIND_FOR(GUI_ACTION_PAT_SELECT_ALL))) doSelectAll(); + if (ImGui::MenuItem(_("select all"),BIND_FOR(GUI_ACTION_PAT_SELECT_ALL))) doSelectAll(); } ImGui::Separator(); - if (ImGui::BeginMenu("operation mask...")) { + if (ImGui::BeginMenu(_("operation mask..."))) { drawOpMask(opMaskDelete); ImGui::SameLine(); - ImGui::Text("delete"); + ImGui::Text(_("delete")); drawOpMask(opMaskPullDelete); ImGui::SameLine(); - ImGui::Text("pull delete"); + ImGui::Text(_("pull delete")); drawOpMask(opMaskInsert); ImGui::SameLine(); - ImGui::Text("insert"); + ImGui::Text(_("insert")); drawOpMask(opMaskPaste); ImGui::SameLine(); - ImGui::Text("paste"); + ImGui::Text(_("paste")); drawOpMask(opMaskTransposeNote); ImGui::SameLine(); - ImGui::Text("transpose (note)"); + ImGui::Text(_("transpose (note)")); drawOpMask(opMaskTransposeValue); ImGui::SameLine(); - ImGui::Text("transpose (value)"); + ImGui::Text(_("transpose (value)")); drawOpMask(opMaskInterpolate); ImGui::SameLine(); - ImGui::Text("interpolate"); + ImGui::Text(_("interpolate")); drawOpMask(opMaskFade); ImGui::SameLine(); - ImGui::Text("fade"); + ImGui::Text(_("fade")); drawOpMask(opMaskInvertVal); ImGui::SameLine(); - ImGui::Text("invert values"); + ImGui::Text(_("invert values")); drawOpMask(opMaskScale); ImGui::SameLine(); - ImGui::Text("scale"); + ImGui::Text(_("scale")); drawOpMask(opMaskRandomize); ImGui::SameLine(); - ImGui::Text("randomize"); + ImGui::Text(_("randomize")); drawOpMask(opMaskFlip); ImGui::SameLine(); - ImGui::Text("flip"); + ImGui::Text(_("flip")); drawOpMask(opMaskCollapseExpand); ImGui::SameLine(); - ImGui::Text("collapse/expand"); + ImGui::Text(_("collapse/expand")); ImGui::EndMenu(); } - ImGui::Text("input latch"); + ImGui::Text(_("input latch")); ImGui::PushFont(patFont); if (ImGui::BeginTable("inputLatchTable",5,ImGuiTableFlags_Borders|ImGuiTableFlags_SizingFixedFit|ImGuiTableFlags_NoHostExtendX)) { static char id[64]; @@ -2847,7 +2853,7 @@ void FurnaceGUI::editOptions(bool topMenu) { } if (ImGui::IsItemHovered()) { ImGui::PushStyleColor(ImGuiCol_Text,uiColors[GUI_COLOR_TEXT]); - ImGui::SetTooltip("&&: selected instrument\n..: no instrument"); + ImGui::SetTooltip(_("&&: selected instrument\n..: no instrument")); ImGui::PopStyleColor(); } ImGui::PopStyleColor(); @@ -2901,7 +2907,7 @@ void FurnaceGUI::editOptions(bool topMenu) { } ImGui::PopFont(); ImGui::SameLine(); - if (ImGui::Button("Set")) { + if (ImGui::Button(_("Set"))) { DivPattern* pat=e->curPat[cursor.xCoarse].getPattern(e->curOrders->ord[cursor.xCoarse][curOrder],true); latchIns=pat->data[cursor.y][2]; latchVol=pat->data[cursor.y][3]; @@ -2911,7 +2917,7 @@ void FurnaceGUI::editOptions(bool topMenu) { latchNibble=false; } ImGui::SameLine(); - if (ImGui::Button("Reset")) { + if (ImGui::Button(_("Reset"))) { latchIns=-2; latchVol=-1; latchEffect=-1; @@ -2921,18 +2927,18 @@ void FurnaceGUI::editOptions(bool topMenu) { } ImGui::Separator(); - if (ImGui::MenuItem("note up",BIND_FOR(GUI_ACTION_PAT_NOTE_UP))) doTranspose(1,opMaskTransposeNote); - if (ImGui::MenuItem("note down",BIND_FOR(GUI_ACTION_PAT_NOTE_DOWN))) doTranspose(-1,opMaskTransposeNote); - if (ImGui::MenuItem("octave up",BIND_FOR(GUI_ACTION_PAT_OCTAVE_UP))) doTranspose(12,opMaskTransposeNote); - if (ImGui::MenuItem("octave down",BIND_FOR(GUI_ACTION_PAT_OCTAVE_DOWN))) doTranspose(-12,opMaskTransposeNote); + if (ImGui::MenuItem(_("note up"),BIND_FOR(GUI_ACTION_PAT_NOTE_UP))) doTranspose(1,opMaskTransposeNote); + if (ImGui::MenuItem(_("note down"),BIND_FOR(GUI_ACTION_PAT_NOTE_DOWN))) doTranspose(-1,opMaskTransposeNote); + if (ImGui::MenuItem(_("octave up"),BIND_FOR(GUI_ACTION_PAT_OCTAVE_UP))) doTranspose(12,opMaskTransposeNote); + if (ImGui::MenuItem(_("octave down"),BIND_FOR(GUI_ACTION_PAT_OCTAVE_DOWN))) doTranspose(-12,opMaskTransposeNote); ImGui::Separator(); - if (ImGui::MenuItem("values up",BIND_FOR(GUI_ACTION_PAT_VALUE_UP))) doTranspose(1,opMaskTransposeValue); - if (ImGui::MenuItem("values down",BIND_FOR(GUI_ACTION_PAT_VALUE_DOWN))) doTranspose(-1,opMaskTransposeValue); - if (ImGui::MenuItem("values up (+16)",BIND_FOR(GUI_ACTION_PAT_VALUE_UP_COARSE))) doTranspose(16,opMaskTransposeValue); - if (ImGui::MenuItem("values down (-16)",BIND_FOR(GUI_ACTION_PAT_VALUE_DOWN_COARSE))) doTranspose(-16,opMaskTransposeValue); + if (ImGui::MenuItem(_("values up"),BIND_FOR(GUI_ACTION_PAT_VALUE_UP))) doTranspose(1,opMaskTransposeValue); + if (ImGui::MenuItem(_("values down"),BIND_FOR(GUI_ACTION_PAT_VALUE_DOWN))) doTranspose(-1,opMaskTransposeValue); + if (ImGui::MenuItem(_("values up (+16)"),BIND_FOR(GUI_ACTION_PAT_VALUE_UP_COARSE))) doTranspose(16,opMaskTransposeValue); + if (ImGui::MenuItem(_("values down (-16)"),BIND_FOR(GUI_ACTION_PAT_VALUE_DOWN_COARSE))) doTranspose(-16,opMaskTransposeValue); ImGui::Separator(); ImGui::AlignTextToFramePadding(); - ImGui::Text("transpose"); + ImGui::Text(_("transpose")); ImGui::SameLine(); ImGui::SetNextItemWidth(120.0f*dpiScale); if (ImGui::InputInt("##TransposeAmount",&transposeAmount,1,12)) { @@ -2940,21 +2946,21 @@ void FurnaceGUI::editOptions(bool topMenu) { if (transposeAmount>96) transposeAmount=96; } ImGui::SameLine(); - if (ImGui::Button("Notes")) { + if (ImGui::Button(_("Notes"))) { doTranspose(transposeAmount,opMaskTransposeNote); ImGui::CloseCurrentPopup(); } ImGui::SameLine(); - if (ImGui::Button("Values")) { + if (ImGui::Button(_("Values"))) { doTranspose(transposeAmount,opMaskTransposeValue); ImGui::CloseCurrentPopup(); } ImGui::Separator(); - if (ImGui::MenuItem("interpolate",BIND_FOR(GUI_ACTION_PAT_INTERPOLATE))) doInterpolate(); - if (ImGui::BeginMenu("change instrument...")) { + if (ImGui::MenuItem(_("interpolate"),BIND_FOR(GUI_ACTION_PAT_INTERPOLATE))) doInterpolate(); + if (ImGui::BeginMenu(_("change instrument..."))) { if (e->song.ins.empty()) { - ImGui::Text("no instruments available"); + ImGui::Text(_("no instruments available")); } for (size_t i=0; isong.ins.size(); i++) { snprintf(id,4095,"%.2X: %s",(int)i,e->song.ins[i]->name.c_str()); @@ -2965,8 +2971,8 @@ void FurnaceGUI::editOptions(bool topMenu) { ImGui::EndMenu(); } - if (ImGui::BeginMenu("gradient/fade...")) { - if (ImGui::InputInt("Start",&fadeMin,1,16)) { + if (ImGui::BeginMenu(_("gradient/fade..."))) { + if (ImGui::InputInt(_("Start"),&fadeMin,1,16)) { if (fadeMin<0) fadeMin=0; if (fadeMode) { if (fadeMin>15) fadeMin=15; @@ -2974,7 +2980,7 @@ void FurnaceGUI::editOptions(bool topMenu) { if (fadeMin>255) fadeMin=255; } } - if (ImGui::InputInt("End",&fadeMax,1,16)) { + if (ImGui::InputInt(_("End"),&fadeMax,1,16)) { if (fadeMax<0) fadeMax=0; if (fadeMode) { if (fadeMax>15) fadeMax=15; @@ -2982,7 +2988,7 @@ void FurnaceGUI::editOptions(bool topMenu) { if (fadeMax>255) fadeMax=255; } } - if (ImGui::Checkbox("Nibble mode",&fadeMode)) { + if (ImGui::Checkbox(_("Nibble mode"),&fadeMode)) { if (fadeMode) { if (fadeMin>15) fadeMin=15; if (fadeMax>15) fadeMax=15; @@ -2991,25 +2997,25 @@ void FurnaceGUI::editOptions(bool topMenu) { if (fadeMax>255) fadeMax=255; } } - if (ImGui::Button("Go ahead")) { + if (ImGui::Button(_("Go ahead"))) { doFade(fadeMin,fadeMax,fadeMode); ImGui::CloseCurrentPopup(); } ImGui::EndMenu(); } - if (ImGui::BeginMenu("scale...")) { + if (ImGui::BeginMenu(_("scale..."))) { if (ImGui::InputFloat("##ScaleMax",&scaleMax,1,10,"%.1f%%")) { if (scaleMax<0.0f) scaleMax=0.0f; if (scaleMax>25600.0f) scaleMax=25600.0f; } - if (ImGui::Button("Scale")) { + if (ImGui::Button(_("Scale"))) { doScale(scaleMax); ImGui::CloseCurrentPopup(); } ImGui::EndMenu(); } - if (ImGui::BeginMenu("randomize...")) { - if (ImGui::InputInt("Minimum",&randomizeMin,1,16)) { + if (ImGui::BeginMenu(_("randomize..."))) { + if (ImGui::InputInt(_("Minimum"),&randomizeMin,1,16)) { if (randomizeMin<0) randomizeMin=0; if (randomMode) { if (randomizeMin>15) randomizeMin=15; @@ -3018,7 +3024,7 @@ void FurnaceGUI::editOptions(bool topMenu) { } if (randomizeMin>randomizeMax) randomizeMin=randomizeMax; } - if (ImGui::InputInt("Maximum",&randomizeMax,1,16)) { + if (ImGui::InputInt(_("Maximum"),&randomizeMax,1,16)) { if (randomizeMax<0) randomizeMax=0; if (randomizeMax255) randomizeMax=255; } } - if (ImGui::Checkbox("Nibble mode",&randomMode)) { + if (ImGui::Checkbox(_("Nibble mode"),&randomMode)) { if (randomMode) { if (randomizeMin>15) randomizeMin=15; if (randomizeMax>15) randomizeMax=15; @@ -3037,41 +3043,41 @@ void FurnaceGUI::editOptions(bool topMenu) { } } // TODO: add an option to set effect to specific value? - if (ImGui::Button("Randomize")) { + if (ImGui::Button(_("Randomize"))) { doRandomize(randomizeMin,randomizeMax,randomMode); ImGui::CloseCurrentPopup(); } ImGui::EndMenu(); } - if (ImGui::MenuItem("invert values",BIND_FOR(GUI_ACTION_PAT_INVERT_VALUES))) doInvertValues(); + if (ImGui::MenuItem(_("invert values"),BIND_FOR(GUI_ACTION_PAT_INVERT_VALUES))) doInvertValues(); ImGui::Separator(); - if (ImGui::MenuItem("flip selection",BIND_FOR(GUI_ACTION_PAT_FLIP_SELECTION))) doFlip(); + if (ImGui::MenuItem(_("flip selection"),BIND_FOR(GUI_ACTION_PAT_FLIP_SELECTION))) doFlip(); ImGui::SetNextItemWidth(120.0f*dpiScale); - if (ImGui::InputInt("collapse/expand amount##CollapseAmount",&collapseAmount,1,4)) { + if (ImGui::InputInt(_("collapse/expand amount##CollapseAmount"),&collapseAmount,1,4)) { if (collapseAmount<2) collapseAmount=2; if (collapseAmount>256) collapseAmount=256; } - if (ImGui::MenuItem("collapse",BIND_FOR(GUI_ACTION_PAT_COLLAPSE_ROWS))) doCollapse(collapseAmount,selStart,selEnd); - if (ImGui::MenuItem("expand",BIND_FOR(GUI_ACTION_PAT_EXPAND_ROWS))) doExpand(collapseAmount,selStart,selEnd); + if (ImGui::MenuItem(_("collapse"),BIND_FOR(GUI_ACTION_PAT_COLLAPSE_ROWS))) doCollapse(collapseAmount,selStart,selEnd); + if (ImGui::MenuItem(_("expand"),BIND_FOR(GUI_ACTION_PAT_EXPAND_ROWS))) doExpand(collapseAmount,selStart,selEnd); if (topMenu) { ImGui::Separator(); - if (ImGui::MenuItem("collapse pattern",BIND_FOR(GUI_ACTION_PAT_COLLAPSE_PAT))) doAction(GUI_ACTION_PAT_COLLAPSE_PAT); - if (ImGui::MenuItem("expand pattern",BIND_FOR(GUI_ACTION_PAT_EXPAND_PAT))) doAction(GUI_ACTION_PAT_EXPAND_PAT); + if (ImGui::MenuItem(_("collapse pattern"),BIND_FOR(GUI_ACTION_PAT_COLLAPSE_PAT))) doAction(GUI_ACTION_PAT_COLLAPSE_PAT); + if (ImGui::MenuItem(_("expand pattern"),BIND_FOR(GUI_ACTION_PAT_EXPAND_PAT))) doAction(GUI_ACTION_PAT_EXPAND_PAT); } if (topMenu) { ImGui::Separator(); - if (ImGui::MenuItem("collapse song",BIND_FOR(GUI_ACTION_PAT_COLLAPSE_SONG))) doAction(GUI_ACTION_PAT_COLLAPSE_SONG); - if (ImGui::MenuItem("expand song",BIND_FOR(GUI_ACTION_PAT_EXPAND_SONG))) doAction(GUI_ACTION_PAT_EXPAND_SONG); + if (ImGui::MenuItem(_("collapse song"),BIND_FOR(GUI_ACTION_PAT_COLLAPSE_SONG))) doAction(GUI_ACTION_PAT_COLLAPSE_SONG); + if (ImGui::MenuItem(_("expand song"),BIND_FOR(GUI_ACTION_PAT_EXPAND_SONG))) doAction(GUI_ACTION_PAT_EXPAND_SONG); } if (topMenu) { ImGui::Separator(); - if (ImGui::MenuItem("find/replace",BIND_FOR(GUI_ACTION_WINDOW_FIND),findOpen)) { + if (ImGui::MenuItem(_("find/replace"),BIND_FOR(GUI_ACTION_WINDOW_FIND),findOpen)) { if (findOpen) { findOpen=false; } else { @@ -3085,7 +3091,7 @@ void FurnaceGUI::toggleMobileUI(bool enable, bool force) { if (mobileUI!=enable || force) { if (!mobileUI && enable) { if (!ImGui::SaveIniSettingsToDisk(finalLayoutPath,true)) { - reportError(fmt::sprintf("could NOT save layout! %s",strerror(errno))); + reportError(fmt::sprintf(_("could NOT save layout! %s"),strerror(errno))); } } mobileUI=enable; @@ -3097,7 +3103,7 @@ void FurnaceGUI::toggleMobileUI(bool enable, bool force) { } else { ImGui::GetIO().IniFilename=NULL; if (!ImGui::LoadIniSettingsFromDisk(finalLayoutPath,true)) { - reportError(fmt::sprintf("could NOT load layout! %s",strerror(errno))); + reportError(fmt::sprintf(_("could NOT load layout! %s"),strerror(errno))); ImGui::LoadIniSettingsFromMemory(defaultLayout); } ImGui::GetIO().ConfigFlags&=~ImGuiConfigFlags_InertialScrollEnable; @@ -3559,7 +3565,7 @@ bool FurnaceGUI::loop() { } if (safeMode) { - showError("Furnace has been started in Safe Mode.\nthis means that:\n\n- software rendering is being used\n- audio output may not work\n- font loading is disabled\n\ncheck any settings which may have made Furnace start up in this mode.\nfont loading is one of these."); + showError(_("Furnace has been started in Safe Mode.\nthis means that:\n\n- software rendering is being used\n- audio output may not work\n- font loading is disabled\n\ncheck any settings which may have made Furnace start up in this mode.\nfont loading is one of these.")); settingsOpen=true; } @@ -3734,10 +3740,10 @@ bool FurnaceGUI::loop() { MARK_MODIFIED; } else if (modified) { nextFile=ev.drop.file; - showWarning("Unsaved changes! Save changes before opening file?",GUI_WARN_OPEN_DROP); + showWarning(_("Unsaved changes! Save changes before opening file?"),GUI_WARN_OPEN_DROP); } else { if (load(ev.drop.file)>0) { - showError(fmt::sprintf("Error while loading file! (%s)",lastError)); + showError(fmt::sprintf(_("Error while loading file! (%s)"),lastError)); } } SDL_free(ev.drop.file); @@ -4044,7 +4050,7 @@ bool FurnaceGUI::loop() { } if (initAttempts>5) { - reportError("can't keep going without graphics! Furnace will quit now."); + reportError(_("can't keep going without graphics! Furnace will quit now.")); quit=true; break; } @@ -4058,7 +4064,7 @@ bool FurnaceGUI::loop() { logD("building font..."); if (!ImGui::GetIO().Fonts->Build()) { logE("error while building font atlas!"); - showError("error while loading fonts! please check your settings."); + showError(_("error while loading fonts! please check your settings.")); ImGui::GetIO().Fonts->Clear(); mainFont=ImGui::GetIO().Fonts->AddFontDefault(); patFont=mainFont; @@ -4182,29 +4188,29 @@ bool FurnaceGUI::loop() { if (!mobileUI) { ImGui::BeginMainMenuBar(); - if (ImGui::BeginMenu(settings.capitalMenuBar?"File":"file")) { - if (ImGui::MenuItem("new...",BIND_FOR(GUI_ACTION_NEW))) { + if (ImGui::BeginMenu(settings.capitalMenuBar?_("File"):_("file"))) { + if (ImGui::MenuItem(_("new..."),BIND_FOR(GUI_ACTION_NEW))) { if (modified) { - showWarning("Unsaved changes! Save changes before creating a new song?",GUI_WARN_NEW); + showWarning(_("Unsaved changes! Save changes before creating a new song?"),GUI_WARN_NEW); } else { displayNew=true; } } - if (ImGui::MenuItem("open...",BIND_FOR(GUI_ACTION_OPEN))) { + if (ImGui::MenuItem(_("open..."),BIND_FOR(GUI_ACTION_OPEN))) { if (modified) { - showWarning("Unsaved changes! Save changes before opening another file?",GUI_WARN_OPEN); + showWarning(_("Unsaved changes! Save changes before opening another file?"),GUI_WARN_OPEN); } else { openFileDialog(GUI_FILE_OPEN); } } - if (ImGui::BeginMenu("open recent")) { + if (ImGui::BeginMenu(_("open recent"))) { exitDisabledTimer=1; for (int i=0; i<(int)recentFile.size(); i++) { String item=recentFile[i]; if (ImGui::MenuItem(item.c_str())) { if (modified) { nextFile=item; - showWarning("Unsaved changes! Save changes before opening file?",GUI_WARN_OPEN_DROP); + showWarning(_("Unsaved changes! Save changes before opening file?"),GUI_WARN_OPEN_DROP); } else { recentFile.erase(i); i--; @@ -4213,35 +4219,35 @@ bool FurnaceGUI::loop() { } } if (recentFile.empty()) { - ImGui::Text("nothing here yet"); + ImGui::Text(_("nothing here yet")); } else { ImGui::Separator(); - if (ImGui::MenuItem("clear history")) { - showWarning("Are you sure you want to clear the recent file list?",GUI_WARN_CLEAR_HISTORY); + if (ImGui::MenuItem(_("clear history"))) { + showWarning(_("Are you sure you want to clear the recent file list?"),GUI_WARN_CLEAR_HISTORY); } } ImGui::EndMenu(); } ImGui::Separator(); - if (ImGui::MenuItem("save",BIND_FOR(GUI_ACTION_SAVE))) { + if (ImGui::MenuItem(_("save"),BIND_FOR(GUI_ACTION_SAVE))) { if (curFileName=="" || (curFileName.find(backupPath)==0) || e->song.version>=0xff00) { openFileDialog(GUI_FILE_SAVE); } else { if (save(curFileName,e->song.isDMF?e->song.version:0)>0) { - showError(fmt::sprintf("Error while saving file! (%s)",lastError)); + showError(fmt::sprintf(_("Error while saving file! (%s)"),lastError)); } } } - if (ImGui::MenuItem("save as...",BIND_FOR(GUI_ACTION_SAVE_AS))) { + if (ImGui::MenuItem(_("save as..."),BIND_FOR(GUI_ACTION_SAVE_AS))) { openFileDialog(GUI_FILE_SAVE); } ImGui::Separator(); if (settings.exportOptionsLayout==0) { - if (ImGui::BeginMenu("export audio...")) { + if (ImGui::BeginMenu(_("export audio..."))) { drawExportAudio(); ImGui::EndMenu(); } - if (ImGui::BeginMenu("export VGM...")) { + if (ImGui::BeginMenu(_("export VGM..."))) { drawExportVGM(); ImGui::EndMenu(); } @@ -4250,7 +4256,7 @@ bool FurnaceGUI::loop() { if ((e->song.system[i]==DIV_SYSTEM_VERA) || (e->song.system[i]==DIV_SYSTEM_YM2151)) numZSMCompat++; } if (numZSMCompat>0) { - if (ImGui::BeginMenu("export ZSM...")) { + if (ImGui::BeginMenu(_("export ZSM..."))) { drawExportZSM(); ImGui::EndMenu(); } @@ -4260,29 +4266,29 @@ bool FurnaceGUI::loop() { if (e->song.system[i]==DIV_SYSTEM_AMIGA) numAmiga++; } if (numAmiga && settings.iCannotWait) { - if (ImGui::BeginMenu("export Amiga validation data...")) { + if (ImGui::BeginMenu(_("export Amiga validation data..."))) { drawExportAmigaVal(); ImGui::EndMenu(); } } - if (ImGui::BeginMenu("export text...")) { + if (ImGui::BeginMenu(_("export text..."))) { drawExportText(); ImGui::EndMenu(); } - if (ImGui::BeginMenu("export command stream...")) { + if (ImGui::BeginMenu(_("export command stream..."))) { drawExportCommand(); ImGui::EndMenu(); } - if (ImGui::BeginMenu("export .dmf...")) { + if (ImGui::BeginMenu(_("export .dmf..."))) { drawExportDMF(); ImGui::EndMenu(); } } else if (settings.exportOptionsLayout==2) { - if (ImGui::MenuItem("export audio...")) { + if (ImGui::MenuItem(_("export audio..."))) { curExportType=GUI_EXPORT_AUDIO; displayExport=true; } - if (ImGui::MenuItem("export VGM...")) { + if (ImGui::MenuItem(_("export VGM..."))) { curExportType=GUI_EXPORT_VGM; displayExport=true; } @@ -4291,7 +4297,7 @@ bool FurnaceGUI::loop() { if ((e->song.system[i]==DIV_SYSTEM_VERA) || (e->song.system[i]==DIV_SYSTEM_YM2151)) numZSMCompat++; } if (numZSMCompat>0) { - if (ImGui::MenuItem("export ZSM...")) { + if (ImGui::MenuItem(_("export ZSM..."))) { curExportType=GUI_EXPORT_ZSM; displayExport=true; } @@ -4301,40 +4307,40 @@ bool FurnaceGUI::loop() { if (e->song.system[i]==DIV_SYSTEM_AMIGA) numAmiga++; } if (numAmiga && settings.iCannotWait) { - if (ImGui::MenuItem("export Amiga validation data...")) { + if (ImGui::MenuItem(_("export Amiga validation data..."))) { curExportType=GUI_EXPORT_AMIGA_VAL; displayExport=true; } } - if (ImGui::MenuItem("export text...")) { + if (ImGui::MenuItem(_("export text..."))) { curExportType=GUI_EXPORT_TEXT; displayExport=true; } - if (ImGui::MenuItem("export command stream...")) { + if (ImGui::MenuItem(_("export command stream..."))) { curExportType=GUI_EXPORT_CMD_STREAM; displayExport=true; } - if (ImGui::MenuItem("export .dmf...")) { + if (ImGui::MenuItem(_("export .dmf..."))) { curExportType=GUI_EXPORT_DMF; displayExport=true; } } else { - if (ImGui::MenuItem("export...",BIND_FOR(GUI_ACTION_EXPORT))) { + if (ImGui::MenuItem(_("export..."),BIND_FOR(GUI_ACTION_EXPORT))) { displayExport=true; } } ImGui::Separator(); if (!settings.classicChipOptions) { - if (ImGui::MenuItem("manage chips")) { + if (ImGui::MenuItem(_("manage chips"))) { nextWindow=GUI_WINDOW_SYS_MANAGER; } } else { - if (ImGui::BeginMenu("add chip...")) { + if (ImGui::BeginMenu(_("add chip..."))) { exitDisabledTimer=1; DivSystem picked=systemPicker(); if (picked!=DIV_SYSTEM_NULL) { if (!e->addSystem(picked)) { - showError("cannot add chip! ("+e->getLastError()+")"); + showError(fmt::sprintf(_("cannot add chip! (%s)"),e->getLastError())); } else { MARK_MODIFIED; } @@ -4346,7 +4352,7 @@ bool FurnaceGUI::loop() { } ImGui::EndMenu(); } - if (ImGui::BeginMenu("configure chip...")) { + if (ImGui::BeginMenu(_("configure chip..."))) { exitDisabledTimer=1; for (int i=0; isong.systemLen; i++) { if (ImGui::TreeNode(fmt::sprintf("%d. %s##_SYSP%d",i+1,getSystemName(e->song.system[i]),i).c_str())) { @@ -4356,9 +4362,9 @@ bool FurnaceGUI::loop() { } ImGui::EndMenu(); } - if (ImGui::BeginMenu("change chip...")) { + if (ImGui::BeginMenu(_("change chip..."))) { exitDisabledTimer=1; - ImGui::Checkbox("Preserve channel positions",&preserveChanPos); + ImGui::Checkbox(_("Preserve channel positions"),&preserveChanPos); for (int i=0; isong.systemLen; i++) { if (ImGui::BeginMenu(fmt::sprintf("%d. %s##_SYSC%d",i+1,getSystemName(e->song.system[i]),i).c_str())) { DivSystem picked=systemPicker(); @@ -4370,7 +4376,7 @@ bool FurnaceGUI::loop() { } updateWindowTitle(); } else { - showError("cannot change chip! ("+e->getLastError()+")"); + showError(fmt::sprintf(_("cannot change chip! (%s)"),e->getLastError())); } ImGui::CloseCurrentPopup(); } @@ -4379,13 +4385,13 @@ bool FurnaceGUI::loop() { } ImGui::EndMenu(); } - if (ImGui::BeginMenu("remove chip...")) { + if (ImGui::BeginMenu(_("remove chip..."))) { exitDisabledTimer=1; - ImGui::Checkbox("Preserve channel positions",&preserveChanPos); + ImGui::Checkbox(_("Preserve channel positions"),&preserveChanPos); for (int i=0; isong.systemLen; i++) { if (ImGui::MenuItem(fmt::sprintf("%d. %s##_SYSR%d",i+1,getSystemName(e->song.system[i]),i).c_str())) { if (!e->removeSystem(i,preserveChanPos)) { - showError("cannot remove chip! ("+e->getLastError()+")"); + showError(fmt::sprintf(_("cannot remove chip! (%s)"),e->getLastError())); } else { MARK_MODIFIED; } @@ -4399,17 +4405,17 @@ bool FurnaceGUI::loop() { } } #if defined(FURNACE_DATADIR) && defined(SHOW_OPEN_ASSETS_MENU_ENTRY) - if (ImGui::MenuItem("open built-in assets directory")) { + if (ImGui::MenuItem(_("open built-in assets directory"))) { SDL_OpenURL("file://" FURNACE_DATADIR); } #endif ImGui::BeginDisabled(exitDisabledTimer); ImGui::Separator(); - if (ImGui::MenuItem("restore backup",BIND_FOR(GUI_ACTION_OPEN_BACKUP))) { + if (ImGui::MenuItem(_("restore backup"),BIND_FOR(GUI_ACTION_OPEN_BACKUP))) { doAction(GUI_ACTION_OPEN_BACKUP); } ImGui::Separator(); - if (ImGui::MenuItem("exit...",BIND_FOR(GUI_ACTION_QUIT))) { + if (ImGui::MenuItem(_("exit..."),BIND_FOR(GUI_ACTION_QUIT))) { requestQuit(); } ImGui::EndDisabled(); @@ -4417,114 +4423,114 @@ bool FurnaceGUI::loop() { } else { exitDisabledTimer=0; } - if (ImGui::BeginMenu(settings.capitalMenuBar?"Edit":"edit")) { + if (ImGui::BeginMenu(settings.capitalMenuBar?_("Edit"):_("edit"))) { ImGui::Text("..."); ImGui::Separator(); - if (ImGui::MenuItem("undo",BIND_FOR(GUI_ACTION_UNDO))) doUndo(); - if (ImGui::MenuItem("redo",BIND_FOR(GUI_ACTION_REDO))) doRedo(); + if (ImGui::MenuItem(_("undo"),BIND_FOR(GUI_ACTION_UNDO))) doUndo(); + if (ImGui::MenuItem(_("redo"),BIND_FOR(GUI_ACTION_REDO))) doRedo(); ImGui::Separator(); editOptions(true); ImGui::Separator(); - if (ImGui::MenuItem("clear...")) { + if (ImGui::MenuItem(_("clear..."))) { doAction(GUI_ACTION_CLEAR); } ImGui::EndMenu(); } - if (ImGui::BeginMenu(settings.capitalMenuBar?"Settings":"settings")) { + if (ImGui::BeginMenu(settings.capitalMenuBar?_("Settings"):_("settings"))) { #ifndef IS_MOBILE - if (ImGui::MenuItem("full screen",BIND_FOR(GUI_ACTION_FULLSCREEN),fullScreen)) { + if (ImGui::MenuItem(_("full screen"),BIND_FOR(GUI_ACTION_FULLSCREEN),fullScreen)) { doAction(GUI_ACTION_FULLSCREEN); } #endif - if (ImGui::MenuItem("lock layout",NULL,lockLayout)) { + if (ImGui::MenuItem(_("lock layout"),NULL,lockLayout)) { lockLayout=!lockLayout; } - if (ImGui::MenuItem("pattern visualizer",NULL,fancyPattern)) { + if (ImGui::MenuItem(_("pattern visualizer"),NULL,fancyPattern)) { fancyPattern=!fancyPattern; e->enableCommandStream(fancyPattern); e->getCommandStream(cmdStream); cmdStream.clear(); } - if (ImGui::MenuItem("reset layout")) { - showWarning("Are you sure you want to reset the workspace layout?",GUI_WARN_RESET_LAYOUT); + if (ImGui::MenuItem(_("reset layout"))) { + showWarning(_("Are you sure you want to reset the workspace layout?"),GUI_WARN_RESET_LAYOUT); } #ifdef IS_MOBILE - if (ImGui::MenuItem("switch to mobile view")) { + if (ImGui::MenuItem(_("switch to mobile view"))) { toggleMobileUI(!mobileUI); } #endif - if (ImGui::MenuItem("user systems...",BIND_FOR(GUI_ACTION_WINDOW_USER_PRESETS))) { + if (ImGui::MenuItem(_("user systems..."),BIND_FOR(GUI_ACTION_WINDOW_USER_PRESETS))) { userPresetsOpen=true; } - if (ImGui::MenuItem("settings...",BIND_FOR(GUI_ACTION_WINDOW_SETTINGS))) { + if (ImGui::MenuItem(_("settings..."),BIND_FOR(GUI_ACTION_WINDOW_SETTINGS))) { syncSettings(); settingsOpen=true; } ImGui::EndMenu(); } - if (ImGui::BeginMenu(settings.capitalMenuBar?"Window":"window")) { - if (ImGui::BeginMenu("song")) { - if (ImGui::MenuItem("song comments", BIND_FOR(GUI_ACTION_WINDOW_NOTES), notesOpen)) notesOpen = !notesOpen; - if (ImGui::MenuItem("song information", BIND_FOR(GUI_ACTION_WINDOW_SONG_INFO), songInfoOpen)) songInfoOpen = !songInfoOpen; - if (ImGui::MenuItem("subsongs", BIND_FOR(GUI_ACTION_WINDOW_SUBSONGS), subSongsOpen)) subSongsOpen = !subSongsOpen; + if (ImGui::BeginMenu(settings.capitalMenuBar?_("Window"):_("window"))) { + if (ImGui::BeginMenu(_("song"))) { + if (ImGui::MenuItem(_("song comments"), BIND_FOR(GUI_ACTION_WINDOW_NOTES), notesOpen)) notesOpen = !notesOpen; + if (ImGui::MenuItem(_("song information"), BIND_FOR(GUI_ACTION_WINDOW_SONG_INFO), songInfoOpen)) songInfoOpen = !songInfoOpen; + if (ImGui::MenuItem(_("subsongs"), BIND_FOR(GUI_ACTION_WINDOW_SUBSONGS), subSongsOpen)) subSongsOpen = !subSongsOpen; ImGui::Separator(); - if (ImGui::MenuItem("channels",BIND_FOR(GUI_ACTION_WINDOW_CHANNELS),channelsOpen)) channelsOpen=!channelsOpen; - if (ImGui::MenuItem("chip manager",BIND_FOR(GUI_ACTION_WINDOW_SYS_MANAGER),sysManagerOpen)) sysManagerOpen=!sysManagerOpen; - if (ImGui::MenuItem("orders",BIND_FOR(GUI_ACTION_WINDOW_ORDERS),ordersOpen)) ordersOpen=!ordersOpen; - if (ImGui::MenuItem("pattern",BIND_FOR(GUI_ACTION_WINDOW_PATTERN),patternOpen)) patternOpen=!patternOpen; - if (ImGui::MenuItem("pattern manager",BIND_FOR(GUI_ACTION_WINDOW_PAT_MANAGER),patManagerOpen)) patManagerOpen=!patManagerOpen; - if (ImGui::MenuItem("mixer",BIND_FOR(GUI_ACTION_WINDOW_MIXER),mixerOpen)) mixerOpen=!mixerOpen; - if (ImGui::MenuItem("compatibility flags",BIND_FOR(GUI_ACTION_WINDOW_COMPAT_FLAGS),compatFlagsOpen)) compatFlagsOpen=!compatFlagsOpen; + if (ImGui::MenuItem(_("channels"),BIND_FOR(GUI_ACTION_WINDOW_CHANNELS),channelsOpen)) channelsOpen=!channelsOpen; + if (ImGui::MenuItem(_("chip manager"),BIND_FOR(GUI_ACTION_WINDOW_SYS_MANAGER),sysManagerOpen)) sysManagerOpen=!sysManagerOpen; + if (ImGui::MenuItem(_("orders"),BIND_FOR(GUI_ACTION_WINDOW_ORDERS),ordersOpen)) ordersOpen=!ordersOpen; + if (ImGui::MenuItem(_("pattern"),BIND_FOR(GUI_ACTION_WINDOW_PATTERN),patternOpen)) patternOpen=!patternOpen; + if (ImGui::MenuItem(_("pattern manager"),BIND_FOR(GUI_ACTION_WINDOW_PAT_MANAGER),patManagerOpen)) patManagerOpen=!patManagerOpen; + if (ImGui::MenuItem(_("mixer"),BIND_FOR(GUI_ACTION_WINDOW_MIXER),mixerOpen)) mixerOpen=!mixerOpen; + if (ImGui::MenuItem(_("compatibility flags"),BIND_FOR(GUI_ACTION_WINDOW_COMPAT_FLAGS),compatFlagsOpen)) compatFlagsOpen=!compatFlagsOpen; ImGui::EndMenu(); } - if (ImGui::BeginMenu("assets")) { + if (ImGui::BeginMenu(_("assets"))) { if (settings.unifiedDataView) { - if (ImGui::MenuItem("assets", BIND_FOR(GUI_ACTION_WINDOW_INS_LIST), insListOpen)) insListOpen = !insListOpen; + if (ImGui::MenuItem(_("assets"), BIND_FOR(GUI_ACTION_WINDOW_INS_LIST), insListOpen)) insListOpen = !insListOpen; } else { - if (ImGui::MenuItem("instruments", BIND_FOR(GUI_ACTION_WINDOW_INS_LIST), insListOpen)) insListOpen = !insListOpen; - if (ImGui::MenuItem("samples", BIND_FOR(GUI_ACTION_WINDOW_SAMPLE_LIST), sampleListOpen)) sampleListOpen = !sampleListOpen; - if (ImGui::MenuItem("wavetables", BIND_FOR(GUI_ACTION_WINDOW_WAVE_LIST), waveListOpen)) waveListOpen = !waveListOpen; + if (ImGui::MenuItem(_("instruments"), BIND_FOR(GUI_ACTION_WINDOW_INS_LIST), insListOpen)) insListOpen = !insListOpen; + if (ImGui::MenuItem(_("samples"), BIND_FOR(GUI_ACTION_WINDOW_SAMPLE_LIST), sampleListOpen)) sampleListOpen = !sampleListOpen; + if (ImGui::MenuItem(_("wavetables"), BIND_FOR(GUI_ACTION_WINDOW_WAVE_LIST), waveListOpen)) waveListOpen = !waveListOpen; } ImGui::Separator(); - if (ImGui::MenuItem("instrument editor", BIND_FOR(GUI_ACTION_WINDOW_INS_EDIT), insEditOpen)) insEditOpen = !insEditOpen; - if (ImGui::MenuItem("sample editor", BIND_FOR(GUI_ACTION_WINDOW_SAMPLE_EDIT), sampleEditOpen)) sampleEditOpen = !sampleEditOpen; - if (ImGui::MenuItem("wavetable editor", BIND_FOR(GUI_ACTION_WINDOW_WAVE_EDIT), waveEditOpen)) waveEditOpen = !waveEditOpen; + if (ImGui::MenuItem(_("instrument editor"), BIND_FOR(GUI_ACTION_WINDOW_INS_EDIT), insEditOpen)) insEditOpen = !insEditOpen; + if (ImGui::MenuItem(_("sample editor"), BIND_FOR(GUI_ACTION_WINDOW_SAMPLE_EDIT), sampleEditOpen)) sampleEditOpen = !sampleEditOpen; + if (ImGui::MenuItem(_("wavetable editor"), BIND_FOR(GUI_ACTION_WINDOW_WAVE_EDIT), waveEditOpen)) waveEditOpen = !waveEditOpen; ImGui::EndMenu(); } - if (ImGui::BeginMenu("visualizers")) { - if (ImGui::MenuItem("oscilloscope (master)",BIND_FOR(GUI_ACTION_WINDOW_OSCILLOSCOPE),oscOpen)) oscOpen=!oscOpen; - if (ImGui::MenuItem("oscilloscope (per-channel)",BIND_FOR(GUI_ACTION_WINDOW_CHAN_OSC),chanOscOpen)) chanOscOpen=!chanOscOpen; - if (ImGui::MenuItem("oscilloscope (X-Y)",BIND_FOR(GUI_ACTION_WINDOW_XY_OSC),xyOscOpen)) xyOscOpen=!xyOscOpen; - if (ImGui::MenuItem("volume meter",BIND_FOR(GUI_ACTION_WINDOW_VOL_METER),volMeterOpen)) volMeterOpen=!volMeterOpen; + if (ImGui::BeginMenu(_("visualizers"))) { + if (ImGui::MenuItem(_("oscilloscope (master)"),BIND_FOR(GUI_ACTION_WINDOW_OSCILLOSCOPE),oscOpen)) oscOpen=!oscOpen; + if (ImGui::MenuItem(_("oscilloscope (per-channel)"),BIND_FOR(GUI_ACTION_WINDOW_CHAN_OSC),chanOscOpen)) chanOscOpen=!chanOscOpen; + if (ImGui::MenuItem(_("oscilloscope (X-Y)"),BIND_FOR(GUI_ACTION_WINDOW_XY_OSC),xyOscOpen)) xyOscOpen=!xyOscOpen; + if (ImGui::MenuItem(_("volume meter"),BIND_FOR(GUI_ACTION_WINDOW_VOL_METER),volMeterOpen)) volMeterOpen=!volMeterOpen; ImGui::EndMenu(); } - if (ImGui::BeginMenu("tempo")) { - if (ImGui::MenuItem("clock",BIND_FOR(GUI_ACTION_WINDOW_CLOCK),clockOpen)) clockOpen=!clockOpen; - if (ImGui::MenuItem("grooves",BIND_FOR(GUI_ACTION_WINDOW_GROOVES),groovesOpen)) groovesOpen=!groovesOpen; - if (ImGui::MenuItem("speed",BIND_FOR(GUI_ACTION_WINDOW_SPEED),speedOpen)) speedOpen=!speedOpen; + if (ImGui::BeginMenu(_("tempo"))) { + if (ImGui::MenuItem(_("clock"),BIND_FOR(GUI_ACTION_WINDOW_CLOCK),clockOpen)) clockOpen=!clockOpen; + if (ImGui::MenuItem(_("grooves"),BIND_FOR(GUI_ACTION_WINDOW_GROOVES),groovesOpen)) groovesOpen=!groovesOpen; + if (ImGui::MenuItem(_("speed"),BIND_FOR(GUI_ACTION_WINDOW_SPEED),speedOpen)) speedOpen=!speedOpen; ImGui::EndMenu(); } - if (ImGui::BeginMenu("debug")) { - if (ImGui::MenuItem("log viewer",BIND_FOR(GUI_ACTION_WINDOW_LOG),logOpen)) logOpen=!logOpen; - if (ImGui::MenuItem("register view",BIND_FOR(GUI_ACTION_WINDOW_REGISTER_VIEW),regViewOpen)) regViewOpen=!regViewOpen; - if (ImGui::MenuItem("statistics",BIND_FOR(GUI_ACTION_WINDOW_STATS),statsOpen)) statsOpen=!statsOpen; - if (ImGui::MenuItem("memory composition",BIND_FOR(GUI_ACTION_WINDOW_MEMORY),memoryOpen)) memoryOpen=!memoryOpen; + if (ImGui::BeginMenu(_("debug"))) { + if (ImGui::MenuItem(_("log viewer"),BIND_FOR(GUI_ACTION_WINDOW_LOG),logOpen)) logOpen=!logOpen; + if (ImGui::MenuItem(_("register view"),BIND_FOR(GUI_ACTION_WINDOW_REGISTER_VIEW),regViewOpen)) regViewOpen=!regViewOpen; + if (ImGui::MenuItem(_("statistics"),BIND_FOR(GUI_ACTION_WINDOW_STATS),statsOpen)) statsOpen=!statsOpen; + if (ImGui::MenuItem(_("memory composition"),BIND_FOR(GUI_ACTION_WINDOW_MEMORY),memoryOpen)) memoryOpen=!memoryOpen; ImGui::EndMenu(); } ImGui::Separator(); - if (ImGui::MenuItem("effect list",BIND_FOR(GUI_ACTION_WINDOW_EFFECT_LIST),effectListOpen)) effectListOpen=!effectListOpen; - if (ImGui::MenuItem("play/edit controls",BIND_FOR(GUI_ACTION_WINDOW_EDIT_CONTROLS),editControlsOpen)) editControlsOpen=!editControlsOpen; - if (ImGui::MenuItem("piano/input pad",BIND_FOR(GUI_ACTION_WINDOW_PIANO),pianoOpen)) pianoOpen=!pianoOpen; - if (spoilerOpen) if (ImGui::MenuItem("spoiler",NULL,spoilerOpen)) spoilerOpen=!spoilerOpen; + if (ImGui::MenuItem(_("effect list"),BIND_FOR(GUI_ACTION_WINDOW_EFFECT_LIST),effectListOpen)) effectListOpen=!effectListOpen; + if (ImGui::MenuItem(_("play/edit controls"),BIND_FOR(GUI_ACTION_WINDOW_EDIT_CONTROLS),editControlsOpen)) editControlsOpen=!editControlsOpen; + if (ImGui::MenuItem(_("piano/input pad"),BIND_FOR(GUI_ACTION_WINDOW_PIANO),pianoOpen)) pianoOpen=!pianoOpen; + if (spoilerOpen) if (ImGui::MenuItem(_("spoiler"),NULL,spoilerOpen)) spoilerOpen=!spoilerOpen; ImGui::EndMenu(); } - if (ImGui::BeginMenu(settings.capitalMenuBar?"Help":"help")) { - if (ImGui::MenuItem("effect list",BIND_FOR(GUI_ACTION_WINDOW_EFFECT_LIST),effectListOpen)) effectListOpen=!effectListOpen; - if (ImGui::MenuItem("debug menu",BIND_FOR(GUI_ACTION_WINDOW_DEBUG))) debugOpen=!debugOpen; - if (ImGui::MenuItem("inspector")) inspectorOpen=!inspectorOpen; - if (ImGui::MenuItem("panic",BIND_FOR(GUI_ACTION_PANIC))) e->syncReset(); - if (ImGui::MenuItem("about...",BIND_FOR(GUI_ACTION_WINDOW_ABOUT))) { + if (ImGui::BeginMenu(settings.capitalMenuBar?_("Help"):_("help"))) { + if (ImGui::MenuItem(_("effect list"),BIND_FOR(GUI_ACTION_WINDOW_EFFECT_LIST),effectListOpen)) effectListOpen=!effectListOpen; + if (ImGui::MenuItem(_("debug menu"),BIND_FOR(GUI_ACTION_WINDOW_DEBUG))) debugOpen=!debugOpen; + if (ImGui::MenuItem(_("inspector"))) inspectorOpen=!inspectorOpen; + if (ImGui::MenuItem(_("panic"),BIND_FOR(GUI_ACTION_PANIC))) e->syncReset(); + if (ImGui::MenuItem(_("about..."),BIND_FOR(GUI_ACTION_WINDOW_ABOUT))) { aboutOpen=true; aboutScroll=0; } @@ -4539,31 +4545,31 @@ bool FurnaceGUI::loop() { DivGroovePattern gp=e->getSpeeds(); if (gp.len==2) { - info=fmt::sprintf("| Speed %d:%d",gp.val[0],gp.val[1]); + info=fmt::sprintf(_("| Speed %d:%d"),gp.val[0],gp.val[1]); } else if (gp.len==1) { - info=fmt::sprintf("| Speed %d",gp.val[0]); + info=fmt::sprintf(_("| Speed %d"),gp.val[0]); } else { - info="| Groove"; + info=_("| Groove"); } - info+=fmt::sprintf(" @ %gHz (%g BPM) ",e->getCurHz(),calcBPM(e->getSpeeds(),e->getCurHz(),e->getVirtualTempoN(),e->getVirtualTempoD())); + info+=fmt::sprintf(_(" @ %gHz (%g BPM) "),e->getCurHz(),calcBPM(e->getSpeeds(),e->getCurHz(),e->getVirtualTempoN(),e->getVirtualTempoD())); if (settings.orderRowsBase) { - info+=fmt::sprintf("| Order %.2X/%.2X ",playOrder,e->curSubSong->ordersLen-1); + info+=fmt::sprintf(_("| Order %.2X/%.2X "),playOrder,e->curSubSong->ordersLen-1); } else { - info+=fmt::sprintf("| Order %d/%d ",playOrder,e->curSubSong->ordersLen-1); + info+=fmt::sprintf(_("| Order %d/%d "),playOrder,e->curSubSong->ordersLen-1); } if (settings.patRowsBase) { - info+=fmt::sprintf("| Row %.2X/%.2X ",oldRow,e->curSubSong->patLen); + info+=fmt::sprintf(_("| Row %.2X/%.2X "),oldRow,e->curSubSong->patLen); } else { - info+=fmt::sprintf("| Row %d/%d ",oldRow,e->curSubSong->patLen); + info+=fmt::sprintf(_("| Row %d/%d "),oldRow,e->curSubSong->patLen); } - info+="| "; + info+=_("| "); if (totalSeconds==0x7fffffff) { - info+="Don't you have anything better to do?"; + info+=_("Don't you have anything better to do?"); } else { if (totalSeconds>=86400) { int totalDays=totalSeconds/86400; @@ -4572,23 +4578,15 @@ bool FurnaceGUI::loop() { int totalMonths=totalDays/30; totalDays%=30; - if (totalYears>1) { - info+=fmt::sprintf("%d years ",totalYears); - } else if (totalYears) { - info+=fmt::sprintf("%d year ",totalYears); - } - - if (totalMonths>1) { - info+=fmt::sprintf("%d months ",totalMonths); - } else if (totalMonths) { - info+=fmt::sprintf("%d month ",totalMonths); - } - - if (totalDays>1) { - info+=fmt::sprintf("%d days ",totalDays); - } else { - info+=fmt::sprintf("%d day ",totalDays); - } +#ifdef HAVE_LOCALE + info+=fmt::sprintf(ngettext("%d year ","%d years ",totalYears),totalYears); + info+=fmt::sprintf(ngettext("%d month ","%d months ",totalMonths),totalMonths); + info+=fmt::sprintf(ngettext("%d day ","%d days ",totalDays),totalDays); +#else + info+=fmt::sprintf(_GN("%d year ","%d years ",totalYears),totalYears); + info+=fmt::sprintf(_GN("%d month ","%d months ",totalMonths),totalMonths); + info+=fmt::sprintf(_GN("%d day ","%d days ",totalDays),totalDays); +#endif } if (totalSeconds>=3600) { @@ -4608,13 +4606,13 @@ bool FurnaceGUI::loop() { case 0: // note if (p->data[cursor.y][0]>0) { if (p->data[cursor.y][0]==100) { - info=fmt::sprintf("Note off (cut)"); + info=fmt::sprintf(_("Note off (cut)")); } else if (p->data[cursor.y][0]==101) { - info=fmt::sprintf("Note off (release)"); + info=fmt::sprintf(_("Note off (release)")); } else if (p->data[cursor.y][0]==102) { - info=fmt::sprintf("Macro release only"); + info=fmt::sprintf(_("Macro release only")); } else { - info=fmt::sprintf("Note on: %s",noteName(p->data[cursor.y][0],p->data[cursor.y][1])); + info=fmt::sprintf(_("Note on: %s"),noteName(p->data[cursor.y][0],p->data[cursor.y][1])); } hasInfo=true; } @@ -4622,10 +4620,10 @@ bool FurnaceGUI::loop() { case 1: // instrument if (p->data[cursor.y][2]>-1) { if (p->data[cursor.y][2]>=(int)e->song.ins.size()) { - info=fmt::sprintf("Ins %d: ",p->data[cursor.y][2]); + info=fmt::sprintf(_("Ins %d: "),p->data[cursor.y][2]); } else { DivInstrument* ins=e->getIns(p->data[cursor.y][2]); - info=fmt::sprintf("Ins %d: %s",p->data[cursor.y][2],ins->name); + info=fmt::sprintf(_("Ins %d: %s"),p->data[cursor.y][2],ins->name); } hasInfo=true; } @@ -4634,10 +4632,10 @@ bool FurnaceGUI::loop() { if (p->data[cursor.y][3]>-1) { int maxVol=e->getMaxVolumeChan(cursor.xCoarse); if (maxVol<1 || p->data[cursor.y][3]>maxVol) { - info=fmt::sprintf("Set volume: %d (%.2X, INVALID!)",p->data[cursor.y][3],p->data[cursor.y][3]); + info=fmt::sprintf(_("Set volume: %d (%.2X, INVALID!)"),p->data[cursor.y][3],p->data[cursor.y][3]); } else { float realVol=e->mapVelocity(cursor.xCoarse,(float)p->data[cursor.y][3]/(float)maxVol); - info=fmt::sprintf("Set volume: %d (%.2X, %d%%)",p->data[cursor.y][3],p->data[cursor.y][3],(int)(realVol*100.0f/(float)maxVol)); + info=fmt::sprintf(_("Set volume: %d (%.2X, %d%%)"),p->data[cursor.y][3],p->data[cursor.y][3],(int)(realVol*100.0f/(float)maxVol)); } hasInfo=true; } @@ -4659,7 +4657,7 @@ bool FurnaceGUI::loop() { } ImGui::PopStyleColor(); if (modified) { - ImGui::Text("| modified"); + ImGui::Text(_("| modified")); } ImGui::EndMainMenuBar(); } @@ -4824,10 +4822,10 @@ bool FurnaceGUI::loop() { #ifndef NFD_NON_THREADED if (fileDialog->isOpen() && settings.sysFileDialog) { - ImGui::OpenPopup("System File Dialog Pending"); + ImGui::OpenPopup(_("System File Dialog Pending")); } - if (ImGui::BeginPopupModal("System File Dialog Pending",NULL,ImGuiWindowFlags_NoTitleBar|ImGuiWindowFlags_NoBackground|ImGuiWindowFlags_NoResize|ImGuiWindowFlags_NoMove)) { + if (ImGui::BeginPopupModal(_("System File Dialog Pending"),NULL,ImGuiWindowFlags_NoTitleBar|ImGuiWindowFlags_NoBackground|ImGuiWindowFlags_NoResize|ImGuiWindowFlags_NoMove)) { if (!fileDialog->isOpen()) { ImGui::CloseCurrentPopup(); } @@ -4940,12 +4938,12 @@ bool FurnaceGUI::loop() { } if (fileDialog->isError()) { #if defined(_WIN32) || defined(__APPLE__) - showError("there was an error in the file dialog! you may want to report this issue to:\nhttps://github.com/tildearrow/furnace/issues\ncheck the Log Viewer (window > log viewer) for more information.\n\nfor now please disable the system file picker in Settings > General."); + showError(_("there was an error in the file dialog! you may want to report this issue to:\nhttps://github.com/tildearrow/furnace/issues\ncheck the Log Viewer (window > log viewer) for more information.\n\nfor now please disable the system file picker in Settings > General.")); #else #ifdef ANDROID - showError("can't do anything without Storage permissions!"); + showError(_("can't do anything without Storage permissions!")); #else - showError("Zenity/KDialog not available!\nplease install one of these, or disable the system file picker in Settings > General."); + showError(_("Zenity/KDialog not available!\nplease install one of these, or disable the system file picker in Settings > General.")); #endif #endif } @@ -5018,13 +5016,13 @@ bool FurnaceGUI::loop() { case GUI_FILE_OPEN: case GUI_FILE_OPEN_BACKUP: if (load(copyOfName)>0) { - showError(fmt::sprintf("Error while loading file! (%s)",lastError)); + showError(fmt::sprintf(_("Error while loading file! (%s)"),lastError)); } break; case GUI_FILE_SAVE: { bool saveWasSuccessful=true; if (save(copyOfName,0)>0) { - showError(fmt::sprintf("Error while saving file! (%s)",lastError)); + showError(fmt::sprintf(_("Error while saving file! (%s)"),lastError)); saveWasSuccessful=false; } if (saveWasSuccessful && postWarnAction!=GUI_WARN_GENERIC) { @@ -5040,7 +5038,7 @@ bool FurnaceGUI::loop() { break; case GUI_WARN_OPEN_DROP: if (load(nextFile)>0) { - showError(fmt::sprintf("Error while loading file! (%s)",lastError)); + showError(fmt::sprintf(_("Error while loading file! (%s)"),lastError)); } nextFile=""; break; @@ -5062,13 +5060,13 @@ bool FurnaceGUI::loop() { case GUI_FILE_SAVE_DMF: logD("saving: %s",copyOfName.c_str()); if (save(copyOfName,26)>0) { - showError(fmt::sprintf("Error while saving file! (%s)",lastError)); + showError(fmt::sprintf(_("Error while saving file! (%s)"),lastError)); } break; case GUI_FILE_SAVE_DMF_LEGACY: logD("saving: %s",copyOfName.c_str()); if (save(copyOfName,24)>0) { - showError(fmt::sprintf("Error while saving file! (%s)",lastError)); + showError(fmt::sprintf(_("Error while saving file! (%s)"),lastError)); } break; case GUI_FILE_INS_SAVE: @@ -5081,7 +5079,7 @@ bool FurnaceGUI::loop() { case GUI_FILE_INS_SAVE_DMP: if (curIns>=0 && curIns<(int)e->song.ins.size()) { if (!e->song.ins[curIns]->saveDMP(copyOfName.c_str())) { - showError("error while saving instrument! only the following instrument types are supported:\n- FM (OPN)\n- SN76489/Sega PSG\n- Game Boy\n- PC Engine\n- NES\n- C64\n- FM (OPLL)\n- FDS"); + showError(_("error while saving instrument! only the following instrument types are supported:\n- FM (OPN)\n- SN76489/Sega PSG\n- Game Boy\n- PC Engine\n- NES\n- C64\n- FM (OPLL)\n- FDS")); } else { pushRecentSys(copyOfName.c_str()); } @@ -5109,7 +5107,7 @@ bool FurnaceGUI::loop() { } break; case GUI_FILE_SAMPLE_OPEN: { - String errs="there were some errors while loading samples:\n"; + String errs=_("there were some errors while loading samples:\n"); bool warn=false; for (String i: fileDialog->getFileName()) { DivSample* s=e->sampleFromFile(i.c_str()); @@ -5154,7 +5152,7 @@ bool FurnaceGUI::loop() { }); updateSampleTex=true; } else { - showError("...but you haven't selected a sample!"); + showError(_("...but you haven't selected a sample!")); delete s; } } @@ -5169,7 +5167,7 @@ bool FurnaceGUI::loop() { case GUI_FILE_SAMPLE_SAVE: if (curSample>=0 && curSample<(int)e->song.sample.size()) { if (!e->song.sample[curSample]->save(copyOfName.c_str())) { - showError("could not save sample! open Log Viewer for more information."); + showError(_("could not save sample! open Log Viewer for more information.")); } else { pushRecentSys(copyOfName.c_str()); } @@ -5178,7 +5176,7 @@ bool FurnaceGUI::loop() { case GUI_FILE_SAMPLE_SAVE_RAW: if (curSample>=0 && curSample<(int)e->song.sample.size()) { if (!e->song.sample[curSample]->saveRaw(copyOfName.c_str())) { - showError("could not save sample! open Log Viewer for more information."); + showError(_("could not save sample! open Log Viewer for more information.")); } else { pushRecentSys(copyOfName.c_str()); } @@ -5197,13 +5195,13 @@ bool FurnaceGUI::loop() { std::vector instruments; bool ask=false; bool warn=false; - String warns="there were some warnings/errors while loading instruments:\n"; + String warns=_("there were some warnings/errors while loading instruments:\n"); int sampleCountBefore=e->song.sampleLen; for (String i: fileDialog->getFileName()) { std::vector insTemp=e->instrumentFromFile(i.c_str(),true,settings.readInsNames); if (insTemp.empty()) { warn=true; - warns+=fmt::sprintf("> %s: cannot load instrument! (%s)\n",i,e->getLastError()); + warns+=fmt::sprintf(_("> %s: cannot load instrument! (%s)\n"),i,e->getLastError()); } else if (!e->getWarnings().empty()) { warn=true; warns+=fmt::sprintf("> %s:\n%s\n",i,e->getWarnings()); @@ -5221,13 +5219,13 @@ bool FurnaceGUI::loop() { if (fileDialog->getFileName().size()>1) { showError(warns); } else { - showError("cannot load instrument! ("+e->getLastError()+")"); + showError(fmt::sprintf(_("cannot load instrument! (%s)"),e->getLastError())); } } else { showWarning(warns,GUI_WARN_GENERIC); } } else if (instruments.empty()) { - showError("congratulations! you managed to load nothing.\nyou are entitled to a bug report."); + showError(_("congratulations! you managed to load nothing.\nyou are entitled to a bug report.")); } if (!instruments.empty()) { if (ask) { // ask which instruments to load @@ -5268,19 +5266,19 @@ bool FurnaceGUI::loop() { if (curIns>=0 && curIns<(int)e->song.ins.size()) { *e->song.ins[curIns]=*instruments[0]; } else { - showError("...but you haven't selected an instrument!"); + showError(_("...but you haven't selected an instrument!")); } for (DivInstrument* i: instruments) { delete i; } } } else { - showError("cannot load instrument! ("+e->getLastError()+")"); + showError(fmt::sprintf(_("cannot load instrument! (%s)"),e->getLastError())); } break; } case GUI_FILE_WAVE_OPEN: { - String errs="there were some errors while loading wavetables:\n"; + String errs=_("there were some errors while loading wavetables:\n"); bool warn=false; for (String i: fileDialog->getFileName()) { DivWavetable* wave=e->waveFromFile(i.c_str()); @@ -5289,7 +5287,7 @@ bool FurnaceGUI::loop() { warn=true; errs+=fmt::sprintf("- %s: %s\n",i,e->getLastError()); } else { - showError("cannot load wavetable! ("+e->getLastError()+")"); + showError(fmt::sprintf(_("cannot load wavetable! (%s)"),e->getLastError())); } } else { int waveCount=-1; @@ -5299,7 +5297,7 @@ bool FurnaceGUI::loop() { warn=true; errs+=fmt::sprintf("- %s: %s\n",i,e->getLastError()); } else { - showError("cannot load wavetable! ("+e->getLastError()+")"); + showError(fmt::sprintf(_("cannot load wavetable! (%s)"),e->getLastError())); } } else { if (settings.selectAssetOnLoad) { @@ -5318,7 +5316,7 @@ bool FurnaceGUI::loop() { case GUI_FILE_WAVE_OPEN_REPLACE: { DivWavetable* wave=e->waveFromFile(copyOfName.c_str()); if (wave==NULL) { - showError("cannot load wavetable! ("+e->getLastError()+")"); + showError(fmt::sprintf(_("cannot load wavetable! (%s)"),e->getLastError())); } else { if (curWave>=0 && curWave<(int)e->song.wave.size()) { e->lockEngine([this,wave]() { @@ -5326,7 +5324,7 @@ bool FurnaceGUI::loop() { MARK_MODIFIED; }); } else { - showError("...but you haven't selected a wavetable!"); + showError(_("...but you haven't selected a wavetable!")); } delete wave; } @@ -5341,7 +5339,7 @@ bool FurnaceGUI::loop() { fclose(f); pushRecentSys(copyOfName.c_str()); } else { - showError("could not open file!"); + showError(_("could not open file!")); } w->finish(); delete w; @@ -5349,7 +5347,7 @@ bool FurnaceGUI::loop() { showWarning(e->getWarnings(),GUI_WARN_GENERIC); } } else { - showError(fmt::sprintf("could not write VGM! (%s)",e->getLastError())); + showError(fmt::sprintf(_("could not write VGM! (%s)"),e->getLastError())); } break; } @@ -5362,7 +5360,7 @@ bool FurnaceGUI::loop() { fclose(f); pushRecentSys(copyOfName.c_str()); } else { - showError("could not open file!"); + showError(_("could not open file!")); } w->finish(); delete w; @@ -5370,12 +5368,12 @@ bool FurnaceGUI::loop() { showWarning(e->getWarnings(),GUI_WARN_GENERIC); } } else { - showError(fmt::sprintf("Could not write ZSM! (%s)",e->getLastError())); + showError(fmt::sprintf(_("Could not write ZSM! (%s)"),e->getLastError())); } break; } case GUI_FILE_EXPORT_ROM: - showError("Coming soon!"); + showError(_("Coming soon!")); break; case GUI_FILE_EXPORT_TEXT: { SafeWriter* w=e->saveText(false); @@ -5386,7 +5384,7 @@ bool FurnaceGUI::loop() { fclose(f); pushRecentSys(copyOfName.c_str()); } else { - showError("could not open file!"); + showError(_("could not open file!")); } w->finish(); delete w; @@ -5394,7 +5392,7 @@ bool FurnaceGUI::loop() { showWarning(e->getWarnings(),GUI_WARN_GENERIC); } } else { - showError(fmt::sprintf("could not write text! (%s)",e->getLastError())); + showError(fmt::sprintf(_("could not write text! (%s)"),e->getLastError())); } break; } @@ -5407,7 +5405,7 @@ bool FurnaceGUI::loop() { fclose(f); pushRecentSys(copyOfName.c_str()); } else { - showError("could not open file!"); + showError(_("could not open file!")); } w->finish(); delete w; @@ -5415,7 +5413,7 @@ bool FurnaceGUI::loop() { showWarning(e->getWarnings(),GUI_WARN_GENERIC); } } else { - showError(fmt::sprintf("could not write command stream! (%s)",e->getLastError())); + showError(fmt::sprintf(_("could not write command stream! (%s)"),e->getLastError())); } break; } @@ -5439,12 +5437,12 @@ bool FurnaceGUI::loop() { break; case GUI_FILE_IMPORT_USER_PRESETS: if (!loadUserPresets(false,copyOfName,true)) { - showError("could not import user presets!"); + showError(_("could not import user presets!")); } break; case GUI_FILE_IMPORT_USER_PRESETS_REPLACE: if (!loadUserPresets(false,copyOfName,false)) { - showError(fmt::sprintf("could not import user presets! (%s)",strerror(errno))); + showError(fmt::sprintf(_("could not import user presets! (%s)"),strerror(errno))); } break; case GUI_FILE_IMPORT_CONFIG: @@ -5461,7 +5459,7 @@ bool FurnaceGUI::loop() { break; case GUI_FILE_EXPORT_USER_PRESETS: if (!saveUserPresets(false,copyOfName)) { - showError(fmt::sprintf("could not import user presets! (%s)",strerror(errno))); + showError(fmt::sprintf(_("could not import user presets! (%s)"),strerror(errno))); } break; case GUI_FILE_EXPORT_CONFIG: @@ -5478,14 +5476,14 @@ bool FurnaceGUI::loop() { break; case GUI_FILE_CMDSTREAM_OPEN: if (loadStream(copyOfName)>0) { - showError(fmt::sprintf("Error while loading file! (%s)",lastError)); + showError(fmt::sprintf(_("Error while loading file! (%s)"),lastError)); } break; case GUI_FILE_TEST_OPEN: - showWarning(fmt::sprintf("You opened: %s",copyOfName),GUI_WARN_GENERIC); + showWarning(fmt::sprintf(_("You opened: %s"),copyOfName),GUI_WARN_GENERIC); break; case GUI_FILE_TEST_OPEN_MULTI: { - String msg="You opened:"; + String msg=_("You opened:"); for (String i: fileDialog->getFileName()) { msg+=fmt::sprintf("\n- %s",i); } @@ -5493,7 +5491,7 @@ bool FurnaceGUI::loop() { break; } case GUI_FILE_TEST_SAVE: - showWarning(fmt::sprintf("You saved: %s",copyOfName),GUI_WARN_GENERIC); + showWarning(fmt::sprintf(_("You saved: %s"),copyOfName),GUI_WARN_GENERIC); break; } curFileDialog=GUI_FILE_OPEN; @@ -5509,22 +5507,22 @@ bool FurnaceGUI::loop() { if (warnQuit && introPos>=11.0) { warnQuit=false; - ImGui::OpenPopup("Warning"); + ImGui::OpenPopup(_("Warning")); } if (displayError && introPos>=11.0) { displayError=false; - ImGui::OpenPopup("Error"); + ImGui::OpenPopup(_("Error")); } if (displayPendingIns) { displayPendingIns=false; - ImGui::OpenPopup("Select Instrument"); + ImGui::OpenPopup(_("Select Instrument")); } if (displayPendingRawSample) { displayPendingRawSample=false; - ImGui::OpenPopup("Import Raw Sample"); + ImGui::OpenPopup(_("Import Raw Sample")); } if (displayInsTypeList) { @@ -5539,7 +5537,7 @@ bool FurnaceGUI::loop() { if (displayExporting) { displayExporting=false; - ImGui::OpenPopup("Rendering..."); + ImGui::OpenPopup(_("Rendering...")); } if (displayNew) { @@ -5562,7 +5560,7 @@ bool FurnaceGUI::loop() { cursor=SelectionPoint(); updateWindowTitle(); } else { - ImGui::OpenPopup("New Song"); + ImGui::OpenPopup(_("New Song")); } } @@ -5572,12 +5570,12 @@ bool FurnaceGUI::loop() { paletteFirstFrame=true; curPaletteChoice=0; displayPalette=false; - ImGui::OpenPopup("Command Palette"); + ImGui::OpenPopup(_("Command Palette")); } if (displayExport) { displayExport=false; - ImGui::OpenPopup("Export"); + ImGui::OpenPopup(_("Export")); } if (displayEditString) { @@ -5592,10 +5590,10 @@ bool FurnaceGUI::loop() { MEASURE_BEGIN(popup); - centerNextWindow("Rendering...",canvasW,canvasH); - if (ImGui::BeginPopupModal("Rendering...",NULL,ImGuiWindowFlags_AlwaysAutoResize)) { - ImGui::Text("Please wait..."); - if (ImGui::Button("Abort")) { + centerNextWindow(_("Rendering..."),canvasW,canvasH); + if (ImGui::BeginPopupModal(_("Rendering..."),NULL,ImGuiWindowFlags_AlwaysAutoResize)) { + ImGui::Text(_("Please wait...")); + if (ImGui::Button(_("Abort"))) { if (e->haltAudioFile()) { ImGui::CloseCurrentPopup(); } @@ -5612,7 +5610,7 @@ bool FurnaceGUI::loop() { ImVec2 newSongMinSize=mobileUI?ImVec2(canvasW-(portrait?0:(60.0*dpiScale)),canvasH-60.0*dpiScale):ImVec2(400.0f*dpiScale,200.0f*dpiScale); ImVec2 newSongMaxSize=ImVec2(canvasW-((mobileUI && !portrait)?(60.0*dpiScale):0),canvasH-(mobileUI?(60.0*dpiScale):0)); ImGui::SetNextWindowSizeConstraints(newSongMinSize,newSongMaxSize); - if (ImGui::BeginPopupModal("New Song",NULL,ImGuiWindowFlags_NoMove|ImGuiWindowFlags_NoScrollWithMouse|ImGuiWindowFlags_NoScrollbar)) { + if (ImGui::BeginPopupModal(_("New Song"),NULL,ImGuiWindowFlags_NoMove|ImGuiWindowFlags_NoScrollWithMouse|ImGuiWindowFlags_NoScrollbar)) { ImGui::SetWindowPos(ImVec2(((canvasW)-ImGui::GetWindowSize().x)*0.5,((canvasH)-ImGui::GetWindowSize().y)*0.5)); if (ImGui::GetWindowSize().xsong.version>=0xff00) { openFileDialog(GUI_FILE_SAVE); postWarnAction=GUI_WARN_QUIT; } else { if (save(curFileName,e->song.isDMF?e->song.version:0)>0) { - showError(fmt::sprintf("Error while saving file! (%s)",lastError)); + showError(fmt::sprintf(_("Error while saving file! (%s)"),lastError)); } else { quit=true; } } } ImGui::SameLine(); - if (ImGui::Button("No")) { + if (ImGui::Button(_("No"))) { ImGui::CloseCurrentPopup(); quit=true; } ImGui::SameLine(); - if (ImGui::Button("Cancel") || ImGui::IsKeyPressed(ImGuiKey_Escape)) { + if (ImGui::Button(_("Cancel")) || ImGui::IsKeyPressed(ImGuiKey_Escape)) { ImGui::CloseCurrentPopup(); } break; case GUI_WARN_NEW: - if (ImGui::Button("Yes")) { + if (ImGui::Button(_("Yes"))) { ImGui::CloseCurrentPopup(); if (curFileName=="" || curFileName.find(backupPath)==0 || e->song.version>=0xff00) { openFileDialog(GUI_FILE_SAVE); postWarnAction=GUI_WARN_NEW; } else { if (save(curFileName,e->song.isDMF?e->song.version:0)>0) { - showError(fmt::sprintf("Error while saving file! (%s)",lastError)); + showError(fmt::sprintf(_("Error while saving file! (%s)"),lastError)); } else { displayNew=true; } } } ImGui::SameLine(); - if (ImGui::Button("No")) { + if (ImGui::Button(_("No"))) { ImGui::CloseCurrentPopup(); displayNew=true; } ImGui::SameLine(); - if (ImGui::Button("Cancel") || ImGui::IsKeyPressed(ImGuiKey_Escape)) { + if (ImGui::Button(_("Cancel")) || ImGui::IsKeyPressed(ImGuiKey_Escape)) { ImGui::CloseCurrentPopup(); } break; case GUI_WARN_OPEN: - if (ImGui::Button("Yes")) { + if (ImGui::Button(_("Yes"))) { ImGui::CloseCurrentPopup(); if (curFileName=="" || curFileName.find(backupPath)==0 || e->song.version>=0xff00) { openFileDialog(GUI_FILE_SAVE); postWarnAction=GUI_WARN_OPEN; } else { if (save(curFileName,e->song.isDMF?e->song.version:0)>0) { - showError(fmt::sprintf("Error while saving file! (%s)",lastError)); + showError(fmt::sprintf(_("Error while saving file! (%s)"),lastError)); } else { openFileDialog(GUI_FILE_OPEN); } } } ImGui::SameLine(); - if (ImGui::Button("No")) { + if (ImGui::Button(_("No"))) { ImGui::CloseCurrentPopup(); openFileDialog(GUI_FILE_OPEN); } ImGui::SameLine(); - if (ImGui::Button("Cancel") || ImGui::IsKeyPressed(ImGuiKey_Escape)) { + if (ImGui::Button(_("Cancel")) || ImGui::IsKeyPressed(ImGuiKey_Escape)) { ImGui::CloseCurrentPopup(); } break; case GUI_WARN_CV: - if (ImGui::Button("Yes")) { + if (ImGui::Button(_("Yes"))) { ImGui::CloseCurrentPopup(); if (curFileName=="" || curFileName.find(backupPath)==0 || e->song.version>=0xff00) { openFileDialog(GUI_FILE_SAVE); postWarnAction=GUI_WARN_CV; } else { if (save(curFileName,e->song.isDMF?e->song.version:0)>0) { - showError(fmt::sprintf("Error while saving file! (%s)",lastError)); + showError(fmt::sprintf(_("Error while saving file! (%s)"),lastError)); } else { cvOpen=true; } } } ImGui::SameLine(); - if (ImGui::Button("No")) { + if (ImGui::Button(_("No"))) { ImGui::CloseCurrentPopup(); cvOpen=true; } ImGui::SameLine(); - if (ImGui::Button("Cancel") || ImGui::IsKeyPressed(ImGuiKey_Escape)) { + if (ImGui::Button(_("Cancel")) || ImGui::IsKeyPressed(ImGuiKey_Escape)) { ImGui::CloseCurrentPopup(); } break; case GUI_WARN_OPEN_BACKUP: - if (ImGui::Button("Yes")) { + if (ImGui::Button(_("Yes"))) { ImGui::CloseCurrentPopup(); if (curFileName=="" || curFileName.find(backupPath)==0 || e->song.version>=0xff00) { openFileDialog(GUI_FILE_SAVE); postWarnAction=GUI_WARN_OPEN_BACKUP; } else { if (save(curFileName,e->song.isDMF?e->song.version:0)>0) { - showError(fmt::sprintf("Error while saving file! (%s)",lastError)); + showError(fmt::sprintf(_("Error while saving file! (%s)"),lastError)); } else { openFileDialog(GUI_FILE_OPEN_BACKUP); } } } ImGui::SameLine(); - if (ImGui::Button("No")) { + if (ImGui::Button(_("No"))) { ImGui::CloseCurrentPopup(); openFileDialog(GUI_FILE_OPEN_BACKUP); } ImGui::SameLine(); - if (ImGui::Button("Cancel") || ImGui::IsKeyPressed(ImGuiKey_Escape)) { + if (ImGui::Button(_("Cancel")) || ImGui::IsKeyPressed(ImGuiKey_Escape)) { ImGui::CloseCurrentPopup(); } break; case GUI_WARN_OPEN_DROP: - if (ImGui::Button("Yes")) { + if (ImGui::Button(_("Yes"))) { ImGui::CloseCurrentPopup(); if (curFileName=="" || curFileName.find(backupPath)==0 || e->song.version>=0xff00) { openFileDialog(GUI_FILE_SAVE); postWarnAction=GUI_WARN_OPEN_DROP; } else { if (save(curFileName,e->song.isDMF?e->song.version:0)>0) { - showError(fmt::sprintf("Error while saving file! (%s)",lastError)); + showError(fmt::sprintf(_("Error while saving file! (%s)"),lastError)); nextFile=""; } else { if (load(nextFile)>0) { - showError(fmt::sprintf("Error while loading file! (%s)",lastError)); + showError(fmt::sprintf(_("Error while loading file! (%s)"),lastError)); } nextFile=""; } } } ImGui::SameLine(); - if (ImGui::Button("No")) { + if (ImGui::Button(_("No"))) { ImGui::CloseCurrentPopup(); if (load(nextFile)>0) { - showError(fmt::sprintf("Error while loading file! (%s)",lastError)); + showError(fmt::sprintf(_("Error while loading file! (%s)"),lastError)); } nextFile=""; } ImGui::SameLine(); - if (ImGui::Button("Cancel") || ImGui::IsKeyPressed(ImGuiKey_Escape)) { + if (ImGui::Button(_("Cancel")) || ImGui::IsKeyPressed(ImGuiKey_Escape)) { ImGui::CloseCurrentPopup(); nextFile=""; } break; case GUI_WARN_RESET_LAYOUT: - if (ImGui::Button("Yes")) { + if (ImGui::Button(_("Yes"))) { ImGui::CloseCurrentPopup(); if (!mobileUI) { ImGui::LoadIniSettingsFromMemory(defaultLayout); if (!ImGui::SaveIniSettingsToDisk(finalLayoutPath,true)) { - reportError(fmt::sprintf("could NOT save layout! %s",strerror(errno))); + reportError(fmt::sprintf(_("could NOT save layout! %s"),strerror(errno))); } } settingsChanged=true; } ImGui::SameLine(); - if (ImGui::Button("No")) { + if (ImGui::Button(_("No"))) { ImGui::CloseCurrentPopup(); } break; case GUI_WARN_RESET_KEYBINDS: - if (ImGui::Button("Yes")) { + if (ImGui::Button(_("Yes"))) { ImGui::CloseCurrentPopup(); resetKeybinds(); settingsChanged=true; } ImGui::SameLine(); - if (ImGui::Button("No")) { + if (ImGui::Button(_("No"))) { ImGui::CloseCurrentPopup(); } break; case GUI_WARN_RESET_COLORS: - if (ImGui::Button("Yes")) { + if (ImGui::Button(_("Yes"))) { ImGui::CloseCurrentPopup(); resetColors(); applyUISettings(false); settingsChanged=true; } ImGui::SameLine(); - if (ImGui::Button("No")) { + if (ImGui::Button(_("No"))) { ImGui::CloseCurrentPopup(); } break; case GUI_WARN_CLOSE_SETTINGS: - if (ImGui::Button("Yes")) { + if (ImGui::Button(_("Yes"))) { ImGui::CloseCurrentPopup(); settingsOpen=false; willCommit=true; settingsChanged=false; } ImGui::SameLine(); - if (ImGui::Button("No")) { + if (ImGui::Button(_("No"))) { ImGui::CloseCurrentPopup(); settingsOpen=false; syncSettings(); settingsChanged=false; } ImGui::SameLine(); - if (ImGui::Button("Cancel") || ImGui::IsKeyPressed(ImGuiKey_Escape)) { + if (ImGui::Button(_("Cancel")) || ImGui::IsKeyPressed(ImGuiKey_Escape)) { ImGui::CloseCurrentPopup(); } break; @@ -5867,17 +5865,17 @@ bool FurnaceGUI::loop() { ImGui::TableNextColumn(); ImGui::PushFont(headFont); ImGui::AlignTextToFramePadding(); - ImGui::Text("Erasing"); + ImGui::Text(_("Erasing")); ImGui::PopFont(); - if (ImGui::Button("All subsongs")) { + if (ImGui::Button(_("All subsongs"))) { stop(); e->clearSubSongs(); curOrder=0; MARK_MODIFIED; ImGui::CloseCurrentPopup(); } - if (ImGui::Button("Current subsong")) { + if (ImGui::Button(_("Current subsong"))) { stop(); e->lockEngine([this]() { e->curSubSong->clearData(); @@ -5887,7 +5885,7 @@ bool FurnaceGUI::loop() { MARK_MODIFIED; ImGui::CloseCurrentPopup(); } - if (ImGui::Button("Orders")) { + if (ImGui::Button(_("Orders"))) { stop(); e->lockEngine([this]() { memset(e->curOrders->ord,0,DIV_MAX_CHANS*DIV_MAX_PATTERNS); @@ -5898,7 +5896,7 @@ bool FurnaceGUI::loop() { MARK_MODIFIED; ImGui::CloseCurrentPopup(); } - if (ImGui::Button("Pattern")) { + if (ImGui::Button(_("Pattern"))) { stop(); e->lockEngine([this]() { for (int i=0; igetTotalChannelCount(); i++) { @@ -5913,7 +5911,7 @@ bool FurnaceGUI::loop() { MARK_MODIFIED; ImGui::CloseCurrentPopup(); } - if (ImGui::Button("Instruments")) { + if (ImGui::Button(_("Instruments"))) { stop(); e->lockEngine([this]() { e->song.clearInstruments(); @@ -5922,7 +5920,7 @@ bool FurnaceGUI::loop() { MARK_MODIFIED; ImGui::CloseCurrentPopup(); } - if (ImGui::Button("Wavetables")) { + if (ImGui::Button(_("Wavetables"))) { stop(); e->lockEngine([this]() { e->song.clearWavetables(); @@ -5931,7 +5929,7 @@ bool FurnaceGUI::loop() { MARK_MODIFIED; ImGui::CloseCurrentPopup(); } - if (ImGui::Button("Samples")) { + if (ImGui::Button(_("Samples"))) { stop(); e->lockEngine([this]() { e->song.clearSamples(); @@ -5944,10 +5942,10 @@ bool FurnaceGUI::loop() { ImGui::TableNextColumn(); ImGui::PushFont(headFont); ImGui::AlignTextToFramePadding(); - ImGui::Text("Optimization"); + ImGui::Text(_("Optimization")); ImGui::PopFont(); - if (ImGui::Button("De-duplicate patterns")) { + if (ImGui::Button(_("De-duplicate patterns"))) { stop(); e->lockEngine([this]() { e->curSubSong->optimizePatterns(); @@ -5956,20 +5954,20 @@ bool FurnaceGUI::loop() { MARK_MODIFIED; ImGui::CloseCurrentPopup(); } - if (ImGui::Button("Remove unused instruments")) { + if (ImGui::Button(_("Remove unused instruments"))) { stop(); e->delUnusedIns(); MARK_MODIFIED; ImGui::CloseCurrentPopup(); } /* - if (ImGui::Button("Remove unused wavetables")) { + if (ImGui::Button(_("Remove unused wavetables"))) { stop(); e->delUnusedWaves(); MARK_MODIFIED; ImGui::CloseCurrentPopup(); }*/ - if (ImGui::Button("Remove unused samples")) { + if (ImGui::Button(_("Remove unused samples"))) { stop(); e->delUnusedSamples(); MARK_MODIFIED; @@ -5986,7 +5984,7 @@ bool FurnaceGUI::loop() { ImGui::TableNextRow(); ImGui::TableNextColumn(); ImGui::TableNextColumn(); - if (ImGui::Button("Never mind! Cancel") || ImGui::IsKeyPressed(ImGuiKey_Escape)) { + if (ImGui::Button(_("Never mind! Cancel")) || ImGui::IsKeyPressed(ImGuiKey_Escape)) { ImGui::CloseCurrentPopup(); } ImGui::TableNextColumn(); @@ -5994,7 +5992,7 @@ bool FurnaceGUI::loop() { } break; case GUI_WARN_SUBSONG_DEL: - if (ImGui::Button("Yes")) { + if (ImGui::Button(_("Yes"))) { if (e->removeSubSong(e->getCurrentSubSong())) { undoHist.clear(); redoHist.clear(); @@ -6011,12 +6009,12 @@ bool FurnaceGUI::loop() { ImGui::CloseCurrentPopup(); } ImGui::SameLine(); - if (ImGui::Button("No")) { + if (ImGui::Button(_("No"))) { ImGui::CloseCurrentPopup(); } break; case GUI_WARN_SYSTEM_DEL: - if (ImGui::Button("Yes")) { + if (ImGui::Button(_("Yes"))) { e->removeSystem(sysToDelete,preserveChanPos); if (e->song.autoSystem) { autoDetectSystem(); @@ -6026,35 +6024,35 @@ bool FurnaceGUI::loop() { ImGui::CloseCurrentPopup(); } ImGui::SameLine(); - if (ImGui::Button("No")) { + if (ImGui::Button(_("No"))) { ImGui::CloseCurrentPopup(); } break; case GUI_WARN_CLEAR_HISTORY: - if (ImGui::Button("Yes")) { + if (ImGui::Button(_("Yes"))) { recentFile.clear(); ImGui::CloseCurrentPopup(); } ImGui::SameLine(); - if (ImGui::Button("No")) { + if (ImGui::Button(_("No"))) { ImGui::CloseCurrentPopup(); } break; case GUI_WARN_RESET_CONFIG: pushDestColor(); - if (ImGui::Button("Yes")) { + if (ImGui::Button(_("Yes"))) { e->factoryReset(); quit=true; ImGui::CloseCurrentPopup(); } popDestColor(); ImGui::SameLine(); - if (ImGui::Button("No")) { + if (ImGui::Button(_("No"))) { ImGui::CloseCurrentPopup(); } break; case GUI_WARN_GENERIC: - if (ImGui::Button("OK")) { + if (ImGui::Button(_("OK"))) { ImGui::CloseCurrentPopup(); } break; @@ -6065,16 +6063,16 @@ bool FurnaceGUI::loop() { if (ImGui::BeginPopup("InsTypeList",ImGuiWindowFlags_NoMove|ImGuiWindowFlags_AlwaysAutoResize|ImGuiWindowFlags_NoTitleBar|ImGuiWindowFlags_NoSavedSettings)) { char temp[1024]; if (displayInsTypeListMakeInsSample==-2) { - ImGui::Text("Drum kit mode:"); - if (ImGui::RadioButton("Normal",!makeDrumkitMode)) { + ImGui::Text(_("Drum kit mode:")); + if (ImGui::RadioButton(_("Normal"),!makeDrumkitMode)) { makeDrumkitMode=false; } - if (ImGui::RadioButton("12 samples per octave",makeDrumkitMode)) { + if (ImGui::RadioButton(_("12 samples per octave"),makeDrumkitMode)) { makeDrumkitMode=true; } if (!makeDrumkitMode) { - ImGui::Text("Starting octave"); + ImGui::Text(_("Starting octave")); ImGui::SameLine(); if (ImGui::InputInt("##DKOctave",&makeDrumkitOctave,1,3)) { if (makeDrumkitOctave<0) makeDrumkitOctave=0; @@ -6090,11 +6088,11 @@ bool FurnaceGUI::loop() { // create ins curIns=e->addInstrument(-1,i); if (curIns==-1) { - showError("too many instruments!"); + showError(_("too many instruments!")); } else { if (displayInsTypeListMakeInsSample==-2) { e->song.ins[curIns]->type=i; - e->song.ins[curIns]->name="Drum Kit"; + e->song.ins[curIns]->name=_("Drum Kit"); e->song.ins[curIns]->amiga.useNoteMap=true; if (i!=DIV_INS_AMIGA) e->song.ins[curIns]->amiga.useSample=true; @@ -6158,7 +6156,7 @@ bool FurnaceGUI::loop() { // create wave curWave=e->addWave(); if (curWave==-1) { - showError("too many wavetables!"); + showError(_("too many wavetables!")); } else { e->song.wave[curWave]->len=i.width; e->song.wave[curWave]->max=i.height-1; @@ -6176,22 +6174,22 @@ bool FurnaceGUI::loop() { // TODO: // - multiple selection // - replace instrument - centerNextWindow("Select Instrument",canvasW,canvasH); - if (ImGui::BeginPopupModal("Select Instrument",NULL,ImGuiWindowFlags_AlwaysAutoResize)) { + centerNextWindow(_("Select Instrument"),canvasW,canvasH); + if (ImGui::BeginPopupModal(_("Select Instrument"),NULL,ImGuiWindowFlags_AlwaysAutoResize)) { bool quitPlease=false; if (pendingInsSingle) { - ImGui::Text("this is an instrument bank! select which one to use:"); + ImGui::Text(_("this is an instrument bank! select which one to use:")); } else { ImGui::AlignTextToFramePadding(); - ImGui::Text("this is an instrument bank! select which ones to load:"); + ImGui::Text(_("this is an instrument bank! select which ones to load:")); ImGui::SameLine(); - if (ImGui::Button("All")) { + if (ImGui::Button(_("All"))) { for (std::pair& i: pendingIns) { i.second=true; } } ImGui::SameLine(); - if (ImGui::Button("None")) { + if (ImGui::Button(_("None"))) { for (std::pair& i: pendingIns) { i.second=false; } @@ -6222,13 +6220,13 @@ bool FurnaceGUI::loop() { } if (!pendingInsSingle) { ImGui::BeginDisabled(!anySelected); - if (ImGui::Button("OK")) { + if (ImGui::Button(_("OK"))) { quitPlease=true; } ImGui::EndDisabled(); ImGui::SameLine(); } - if (ImGui::Button("Cancel") || ImGui::IsKeyPressed(ImGuiKey_Escape)) { + if (ImGui::Button(_("Cancel")) || ImGui::IsKeyPressed(ImGuiKey_Escape)) { for (std::pair& i: pendingIns) { i.second=false; } @@ -6242,7 +6240,7 @@ bool FurnaceGUI::loop() { if (curIns>=0 && curIns<(int)e->song.ins.size()) { *e->song.ins[curIns]=*i.first; } else { - showError("...but you haven't selected an instrument!"); + showError(_("...but you haven't selected an instrument!")); } } delete i.first; @@ -6255,9 +6253,9 @@ bool FurnaceGUI::loop() { ImGui::EndPopup(); } - centerNextWindow("Import Raw Sample",canvasW,canvasH); - if (ImGui::BeginPopupModal("Import Raw Sample",NULL,ImGuiWindowFlags_AlwaysAutoResize)) { - ImGui::Text("Data type:"); + centerNextWindow(_("Import Raw Sample"),canvasW,canvasH); + if (ImGui::BeginPopupModal(_("Import Raw Sample"),NULL,ImGuiWindowFlags_AlwaysAutoResize)) { + ImGui::Text(_("Data type:")); for (int i=0; isampleFromFileRaw(pendingRawSample.c_str(),(DivSampleDepth)pendingRawSampleDepth,pendingRawSampleChannels,pendingRawSampleBigEndian,pendingRawSampleUnsigned,pendingRawSampleSwapNibbles,pendingRawSampleRate); if (s==NULL) { showError(e->getLastError()); @@ -6338,7 +6336,7 @@ bool FurnaceGUI::loop() { }); updateSampleTex=true; } else { - showError("...but you haven't selected a sample!"); + showError(_("...but you haven't selected a sample!")); delete s; } } else { @@ -6352,7 +6350,7 @@ bool FurnaceGUI::loop() { ImGui::CloseCurrentPopup(); } ImGui::SameLine(); - if (ImGui::Button("Cancel") || ImGui::IsKeyPressed(ImGuiKey_Escape)) { + if (ImGui::Button(_("Cancel")) || ImGui::IsKeyPressed(ImGuiKey_Escape)) { ImGui::CloseCurrentPopup(); } ImGui::EndPopup(); @@ -6360,7 +6358,7 @@ bool FurnaceGUI::loop() { if (ImGui::BeginPopup("EditString",ImGuiWindowFlags_AlwaysAutoResize|ImGuiWindowFlags_NoTitleBar|ImGuiWindowFlags_NoSavedSettings)) { if (editString==NULL) { - ImGui::Text("Error! No string provided!"); + ImGui::Text(_("Error! No string provided!")); } else { if (displayEditString) { ImGui::SetItemDefaultFocus(); @@ -6370,7 +6368,7 @@ bool FurnaceGUI::loop() { } displayEditString=false; ImGui::SameLine(); - if (ImGui::Button("OK") || ImGui::IsKeyPressed(ImGuiKey_Enter,false)) { + if (ImGui::Button(_("OK")) || ImGui::IsKeyPressed(ImGuiKey_Enter,false)) { editString=NULL; ImGui::CloseCurrentPopup(); } @@ -6661,7 +6659,7 @@ bool FurnaceGUI::loop() { if (rend) rend->destroyFontsTexture(); if (!ImGui::GetIO().Fonts->Build()) { logE("error while building font atlas!"); - showError("error while loading fonts! please check your settings."); + showError(_("error while loading fonts! please check your settings.")); ImGui::GetIO().Fonts->Clear(); mainFont=ImGui::GetIO().Fonts->AddFontDefault(); patFont=mainFont; @@ -6682,7 +6680,7 @@ bool FurnaceGUI::loop() { } if (fontsFailed) { - showError("it appears I couldn't load these fonts. any setting you can check?"); + showError(_("it appears I couldn't load these fonts. any setting you can check?")); logE("couldn't load fonts"); ImGui::GetIO().Fonts->Clear(); mainFont=ImGui::GetIO().Fonts->AddFontDefault(); @@ -6865,14 +6863,14 @@ bool FurnaceGUI::init() { settings.renderBackend="Software"; e->setConf("renderBackend","Software"); e->saveConf(); - lastError=fmt::sprintf("could not init renderer!\r\nfalling back to software renderer. please restart Furnace."); + lastError=fmt::sprintf(_("could not init renderer!\nfalling back to software renderer. please restart Furnace.")); } else if (settings.renderBackend=="SDL") { - lastError=fmt::sprintf("could not init renderer! %s\r\nfalling back to software renderer. please restart Furnace.",SDL_GetError()); + lastError=fmt::sprintf(_("could not init renderer! %s\nfalling back to software renderer. please restart Furnace."),SDL_GetError()); settings.renderBackend="Software"; e->setConf("renderBackend","Software"); e->saveConf(); } else { - lastError=fmt::sprintf("could not init renderer!"); + lastError=fmt::sprintf(_("could not init renderer!")); } return false; } @@ -6883,12 +6881,12 @@ bool FurnaceGUI::init() { sdlWin=SDL_CreateWindow("Furnace",scrX,scrY,scrW,scrH,SDL_WINDOW_RESIZABLE|SDL_WINDOW_ALLOW_HIGHDPI|(scrMax?SDL_WINDOW_MAXIMIZED:0)|(fullScreen?SDL_WINDOW_FULLSCREEN_DESKTOP:0)|rend->getWindowFlags()); if (sdlWin==NULL) { const char* sdlErr=SDL_GetError(); - lastError=fmt::sprintf("could not open window! %s",sdlErr); + lastError=fmt::sprintf(_("could not open window! %s"),sdlErr); if (settings.renderBackend!="Software" && strstr(sdlErr,"matching")!=NULL) { settings.renderBackend="Software"; e->setConf("renderBackend","Software"); e->saveConf(); - lastError+="\r\nfalling back to software renderer. please restart Furnace."; + lastError+=_("\nfalling back to software renderer. please restart Furnace."); } return false; } @@ -6973,14 +6971,14 @@ bool FurnaceGUI::init() { settings.renderBackend="Software"; e->setConf("renderBackend","Software"); e->saveConf(); - lastError=fmt::sprintf("could not init renderer!\r\nfalling back to software renderer. please restart Furnace."); + lastError=fmt::sprintf(_("could not init renderer!\nfalling back to software renderer. please restart Furnace.")); } else if (settings.renderBackend=="SDL") { - lastError=fmt::sprintf("could not init renderer! %s\r\nfalling back to software renderer. please restart Furnace.",SDL_GetError()); + lastError=fmt::sprintf(_("could not init renderer! %s\nfalling back to software renderer. please restart Furnace."),SDL_GetError()); settings.renderBackend="Software"; e->setConf("renderBackend","Software"); e->saveConf(); } else { - lastError=fmt::sprintf("could not init renderer!"); + lastError=fmt::sprintf(_("could not init renderer!")); } return false; } @@ -7033,6 +7031,56 @@ bool FurnaceGUI::init() { ImGui::CreateContext(); rend->initGUI(sdlWin); + ImGuiLocEntry guiLocalization[8]; + + guiLocalization[0].Key=ImGuiLocKey_TableSizeOne; + guiLocalization[0].Text=_("Size column to fit###SizeOne"); + guiLocalization[1].Key=ImGuiLocKey_TableSizeAllFit; + guiLocalization[1].Text=_("Size all columns to fit###SizeAll"); + guiLocalization[2].Key=ImGuiLocKey_TableSizeAllDefault; + guiLocalization[2].Text=_("Size all columns to default###SizeAll"); + guiLocalization[3].Key=ImGuiLocKey_TableResetOrder; + guiLocalization[3].Text=_("Reset order###ResetOrder"); + guiLocalization[4].Key=ImGuiLocKey_WindowingMainMenuBar; + guiLocalization[4].Text=_("(Main menu bar)"); + guiLocalization[5].Key=ImGuiLocKey_WindowingPopup; + guiLocalization[5].Text=_("(Popup)"); + guiLocalization[6].Key=ImGuiLocKey_WindowingUntitled; + guiLocalization[6].Text=_("(Untitled)"); + guiLocalization[7].Key=ImGuiLocKey_DockingHideTabBar; + guiLocalization[7].Text=_("Hide tab bar###HideTabBar"); + + ImGui::LocalizeRegisterEntries(guiLocalization,8); + + const char* localeSettings=_("LocaleSettings: ccjk"); + if (strlen(localeSettings)<20) { + logE("the LocaleSettings string is incomplete!"); + } else { + localeRequiresChinese=(localeSettings[16]=='C'); + localeRequiresChineseTrad=(localeSettings[17]=='C'); + localeRequiresJapanese=(localeSettings[18]=='J'); + localeRequiresKorean=(localeSettings[19]=='K'); + if (strlen(localeSettings)>21) { + if (localeSettings[20]==' ') { + ImWchar next=0; + for (const char* i=&localeSettings[21]; *i; i++) { + if (((*i)>='0' && (*i)<='9') || ((*i)>='A' && (*i)<='F')) { + next<<=4; + if ((*i)>='0' && (*i)<='9') { + next|=(*i)-'0'; + } else { + next|=(*i)-'A'+10; + } + } else { + localeExtraRanges.push_back(next); + next=0; + } + } + localeExtraRanges.push_back(0); + } + } + } + loadUserPresets(true); applyUISettings(); @@ -7040,7 +7088,7 @@ bool FurnaceGUI::init() { logD("building font..."); if (!ImGui::GetIO().Fonts->Build()) { logE("error while building font atlas!"); - showError("error while loading fonts! please check your settings."); + showError(_("error while loading fonts! please check your settings.")); ImGui::GetIO().Fonts->Clear(); mainFont=ImGui::GetIO().Fonts->AddFontDefault(); patFont=mainFont; @@ -7314,7 +7362,7 @@ void FurnaceGUI::syncState() { void FurnaceGUI::commitState(DivConfig& conf) { if (!mobileUI) { if (!ImGui::SaveIniSettingsToDisk(finalLayoutPath,true)) { - reportError(fmt::sprintf("could NOT save layout! %s",strerror(errno))); + reportError(fmt::sprintf(_("could NOT save layout! %s"),strerror(errno))); } } @@ -7516,7 +7564,7 @@ bool FurnaceGUI::finish(bool saveConfig) { bool FurnaceGUI::requestQuit() { if (modified && !cvOpen) { - showWarning("Unsaved changes! Save changes before quitting?",GUI_WARN_QUIT); + showWarning(_("Unsaved changes! Save changes before quitting?"),GUI_WARN_QUIT); } else { quit=true; } @@ -7653,6 +7701,10 @@ FurnaceGUI::FurnaceGUI(): bigFont(NULL), headFont(NULL), fontRange(NULL), + localeRequiresJapanese(false), + localeRequiresChinese(false), + localeRequiresChineseTrad(false), + localeRequiresKorean(false), prevInsData(NULL), pendingLayoutImport(NULL), pendingLayoutImportLen(0), diff --git a/src/gui/gui.h b/src/gui/gui.h index 024209ee3..b271167a2 100644 --- a/src/gui/gui.h +++ b/src/gui/gui.h @@ -133,6 +133,10 @@ enum FurnaceGUIRenderBackend { #define GUI_DECORATIONS_DEFAULT 1 #endif +#ifdef HAVE_MOMO +#define ngettext momo_ngettext +#endif + // TODO: // - add colors for FM envelope and waveform // - maybe add "alternate" color for FM modulators/carriers (a bit difficult) @@ -1954,6 +1958,7 @@ class FurnaceGUI { String emptyLabel2; String sdlAudioDriver; String defaultAuthorName; + String locale; DivConfig initialSys; Settings(): @@ -2208,7 +2213,8 @@ class FurnaceGUI { emptyLabel("..."), emptyLabel2(".."), sdlAudioDriver(""), - defaultAuthorName("") {} + defaultAuthorName(""), + locale("") {} } settings; struct Tutorial { @@ -2226,6 +2232,12 @@ class FurnaceGUI { char finalLayoutPath[4096]; + bool localeRequiresJapanese; + bool localeRequiresChinese; + bool localeRequiresChineseTrad; + bool localeRequiresKorean; + std::vector localeExtraRanges; + DivInstrument* prevInsData; unsigned char* pendingLayoutImport; @@ -2676,6 +2688,9 @@ class FurnaceGUI { void renderFMPreviewOPZ(const DivInstrumentFM& params, int pos=0); void renderFMPreviewESFM(const DivInstrumentFM& params, const DivInstrumentESFM& esfmParams, int pos=0); + // combo with locale + static bool LocalizedComboGetter(void* data, int idx, const char** out_text); + // these ones offer ctrl-wheel fine value changes. bool CWSliderScalar(const char* label, ImGuiDataType data_type, void* p_data, const void* p_min, const void* p_max, const char* format=NULL, ImGuiSliderFlags flags=0); bool CWVSliderScalar(const char* label, const ImVec2& size, ImGuiDataType data_type, void* p_data, const void* p_min, const void* p_max, const char* format=NULL, ImGuiSliderFlags flags=0); diff --git a/src/gui/guiConst.cpp b/src/gui/guiConst.cpp index dd3955ad7..0a0033071 100644 --- a/src/gui/guiConst.cpp +++ b/src/gui/guiConst.cpp @@ -124,7 +124,7 @@ const char* insTypes[DIV_INS_MAX+1][3]={ {"FM (OPN)",ICON_FA_AREA_CHART,ICON_FUR_INS_FM}, {"Game Boy",ICON_FA_GAMEPAD,ICON_FUR_INS_GB}, {"C64",ICON_FA_KEYBOARD_O,ICON_FUR_INS_C64}, - {"Generic Sample",ICON_FA_VOLUME_UP,ICON_FUR_INS_AMIGA}, + {_N("Generic Sample"),ICON_FA_VOLUME_UP,ICON_FUR_INS_AMIGA}, {"PC Engine",ICON_FA_ID_BADGE,ICON_FUR_INS_PCE}, {"AY-3-8910/SSG",ICON_FA_BAR_CHART,ICON_FUR_INS_AY}, {"AY8930",ICON_FA_BAR_CHART,ICON_FUR_INS_AY8930}, @@ -146,13 +146,13 @@ const char* insTypes[DIV_INS_MAX+1][3]={ {"Atari Lynx",ICON_FA_BAR_CHART,ICON_FUR_INS_MIKEY}, {"VERA",ICON_FA_KEYBOARD_O,ICON_FUR_INS_VERA}, {"X1-010",ICON_FA_BAR_CHART,ICON_FUR_INS_X1_010}, - {"VRC6 (saw)",ICON_FA_BAR_CHART,ICON_FUR_INS_VRC6_SAW}, + {_("VRC6 (saw)"),ICON_FA_BAR_CHART,ICON_FUR_INS_VRC6_SAW}, {"ES5506",ICON_FA_VOLUME_UP,ICON_FUR_INS_ES5506}, {"MultiPCM",ICON_FA_VOLUME_UP,ICON_FUR_INS_MULTIPCM}, {"SNES",ICON_FA_VOLUME_UP,ICON_FUR_INS_SNES}, {"Sound Unit",ICON_FA_MICROCHIP,ICON_FUR_INS_SU}, {"Namco WSG",ICON_FA_PIE_CHART,ICON_FUR_INS_NAMCO}, - {"OPL (drums)",ICON_FA_COFFEE,ICON_FUR_INS_OPL_DRUMS}, + {_N("OPL (drums)"),ICON_FA_COFFEE,ICON_FUR_INS_OPL_DRUMS}, {"FM (OPM)",ICON_FA_AREA_CHART,ICON_FUR_INS_OPM}, {"NES",ICON_FA_GAMEPAD,ICON_FUR_INS_NES}, {"MSM6258",ICON_FA_VOLUME_UP,ICON_FUR_INS_MSM6258}, @@ -176,8 +176,8 @@ const char* insTypes[DIV_INS_MAX+1][3]={ {"C140",ICON_FA_VOLUME_UP,ICON_FUR_INS_C140}, {"C219",ICON_FA_VOLUME_UP,ICON_FUR_INS_C219}, {"FM (ESFM)",ICON_FA_AREA_CHART,ICON_FUR_INS_ESFM}, - {"PowerNoise (noise)",ICON_FUR_NOISE,ICON_FUR_INS_POWERNOISE}, - {"PowerNoise (slope)",ICON_FUR_SAW,ICON_FUR_INS_POWERNOISE_SAW}, + {_N("PowerNoise (noise)"),ICON_FUR_NOISE,ICON_FUR_INS_POWERNOISE}, + {_N("PowerNoise (slope)"),ICON_FUR_SAW,ICON_FUR_INS_POWERNOISE_SAW}, {"Dave",ICON_FA_BAR_CHART,ICON_FUR_INS_DAVE}, {"Nintendo DS",ICON_FA_BAR_CHART,ICON_FUR_INS_NDS}, {"GBA DMA",ICON_FA_GAMEPAD,ICON_FUR_INS_GBA_DMA}, @@ -188,9 +188,9 @@ const char* insTypes[DIV_INS_MAX+1][3]={ }; const char* sampleLoopModes[DIV_SAMPLE_LOOP_MAX]={ - "Forward", - "Backward", - "Ping pong" + _N("Forward"), + _N("Backward"), + _N("Ping pong") }; const char* sampleDepths[DIV_SAMPLE_DEPTH_MAX]={ @@ -214,25 +214,25 @@ const char* sampleDepths[DIV_SAMPLE_DEPTH_MAX]={ }; const char* resampleStrats[]={ - "none", - "linear", - "cubic spline", - "blep synthesis", - "sinc", - "best possible" + _N("none"), + _N("linear"), + _N("cubic spline"), + _N("blep synthesis"), + _N("sinc"), + _N("best possible") }; const char* fxColorsNames[]={ - "Invalid", - "Pitch", - "Volume", - "Panning", - "Song", - "Time", - "Speed", - "System (Primary)", - "System (Secondary)", - "Miscellaneous" + _N("Invalid"), + _N("Pitch"), + _N("Volume"), + _N("Panning"), + _N("Song"), + _N("Time"), + _N("Speed"), + _N("System (Primary)"), + _N("System (Secondary)"), + _N("Miscellaneous") }; const FurnaceGUIColors fxColors[256]={ @@ -527,274 +527,274 @@ const FurnaceGUIColors fxColors[256]={ // format: ("ACTION_ENUM", "Action name", defaultBind) const FurnaceGUIActionDef guiActions[GUI_ACTION_MAX]={ - D("GLOBAL_MIN", "---Global", NOT_AN_ACTION), - D("NEW", "New", FURKMOD_CMD|SDLK_n), - D("OPEN", "Open file", FURKMOD_CMD|SDLK_o), - D("OPEN_BACKUP", "Restore backup", 0), - D("SAVE", "Save file", FURKMOD_CMD|SDLK_s), - D("SAVE_AS", "Save as", FURKMOD_CMD|FURKMOD_SHIFT|SDLK_s), - D("EXPORT", "Export", 0), - D("UNDO", "Undo", FURKMOD_CMD|SDLK_z), + D("GLOBAL_MIN", _N("---Global"), NOT_AN_ACTION), + D("NEW", _N("New"), FURKMOD_CMD|SDLK_n), + D("OPEN", _N("Open file"), FURKMOD_CMD|SDLK_o), + D("OPEN_BACKUP", _N("Restore backup"), 0), + D("SAVE", _N("Save file"), FURKMOD_CMD|SDLK_s), + D("SAVE_AS", _N("Save as"), FURKMOD_CMD|FURKMOD_SHIFT|SDLK_s), + D("EXPORT", _N("Export"), 0), + D("UNDO", _N("Undo"), FURKMOD_CMD|SDLK_z), #ifdef __APPLE__ - D("REDO", "Redo", FURKMOD_CMD|FURKMOD_SHIFT|SDLK_z), + D("REDO", _N("Redo"), FURKMOD_CMD|FURKMOD_SHIFT|SDLK_z), #else - D("REDO", "Redo", FURKMOD_CMD|SDLK_y), + D("REDO", _N("Redo"), FURKMOD_CMD|SDLK_y), #endif - D("QUIT", "Exit", 0), - D("PLAY_TOGGLE", "Play/Stop (toggle)", SDLK_RETURN), - D("PLAY", "Play", 0), - D("STOP", "Stop", 0), - D("PLAY_START", "Play (from beginning)", SDLK_F5), - D("PLAY_REPEAT", "Play (repeat pattern)", 0), - D("PLAY_CURSOR", "Play from cursor", FURKMOD_SHIFT|SDLK_RETURN), - D("STEP_ONE", "Step row", FURKMOD_CMD|SDLK_RETURN), - D("OCTAVE_UP", "Octave up", SDLK_KP_MULTIPLY), - D("OCTAVE_DOWN", "Octave down", SDLK_KP_DIVIDE), - D("INS_UP", "Previous instrument", FURKMOD_SHIFT|SDLK_KP_DIVIDE), - D("INS_DOWN", "Next instrument", FURKMOD_SHIFT|SDLK_KP_MULTIPLY), - D("STEP_UP", "Increase edit step", FURKMOD_CMD|SDLK_KP_MULTIPLY), - D("STEP_DOWN", "Decrease edit step", FURKMOD_CMD|SDLK_KP_DIVIDE), - D("TOGGLE_EDIT", "Toggle edit mode", SDLK_SPACE), - D("METRONOME", "Metronome", FURKMOD_CMD|SDLK_m), - D("REPEAT_PATTERN", "Toggle repeat pattern", 0), - D("FOLLOW_ORDERS", "Follow orders", 0), - D("FOLLOW_PATTERN", "Follow pattern", 0), - D("FULLSCREEN", "Toggle full-screen", SDLK_F11), - D("TX81Z_REQUEST", "Request voice from TX81Z", 0), - D("PANIC", "Panic", SDLK_F12), - D("CLEAR", "Clear song data", 0), + D("QUIT", _N("Exit"), 0), + D("PLAY_TOGGLE", _N("Play/Stop (toggle)"), SDLK_RETURN), + D("PLAY", _N("Play"), 0), + D("STOP", _N("Stop"), 0), + D("PLAY_START", _N("Play (from beginning)"), SDLK_F5), + D("PLAY_REPEAT", _N("Play (repeat pattern)"), 0), + D("PLAY_CURSOR", _N("Play from cursor"), FURKMOD_SHIFT|SDLK_RETURN), + D("STEP_ONE", _N("Step row"), FURKMOD_CMD|SDLK_RETURN), + D("OCTAVE_UP", _N("Octave up"), SDLK_KP_MULTIPLY), + D("OCTAVE_DOWN", _N("Octave down"), SDLK_KP_DIVIDE), + D("INS_UP", _N("Previous instrument"), FURKMOD_SHIFT|SDLK_KP_DIVIDE), + D("INS_DOWN", _N("Next instrument"), FURKMOD_SHIFT|SDLK_KP_MULTIPLY), + D("STEP_UP", _N("Increase edit step"), FURKMOD_CMD|SDLK_KP_MULTIPLY), + D("STEP_DOWN", _N("Decrease edit step"), FURKMOD_CMD|SDLK_KP_DIVIDE), + D("TOGGLE_EDIT", _N("Toggle edit mode"), SDLK_SPACE), + D("METRONOME", _N("Metronome"), FURKMOD_CMD|SDLK_m), + D("REPEAT_PATTERN", _N("Toggle repeat pattern"), 0), + D("FOLLOW_ORDERS", _N("Follow orders"), 0), + D("FOLLOW_PATTERN", _N("Follow pattern"), 0), + D("FULLSCREEN", _N("Toggle full-screen"), SDLK_F11), + D("TX81Z_REQUEST", _N("Request voice from TX81Z"), 0), + D("PANIC", _N("Panic"), SDLK_F12), + D("CLEAR", _N("Clear song data"), 0), - D("COMMAND_PALETTE", "Command Palette", FURKMOD_CMD|SDLK_p), + D("COMMAND_PALETTE", _N("Command Palette"), FURKMOD_CMD|SDLK_p), D("CMDPAL_MIN", "", NOT_AN_ACTION), - D("CMDPAL_RECENT", "Recent files (Palette)", 0), - D("CMDPAL_INSTRUMENTS", "Instruments (Palette)", 0), - D("CMDPAL_SAMPLES", "Samples (Palette)", 0), - D("CMDPAL_INSTRUMENT_CHANGE", "Change instrument (Palette)", 0), - D("CMDPAL_ADD_CHIP", "Add chip (Palette)", 0), + D("CMDPAL_RECENT", _N("Recent files (Palette)"), 0), + D("CMDPAL_INSTRUMENTS", _N("Instruments (Palette)"), 0), + D("CMDPAL_SAMPLES", _N("Samples (Palette)"), 0), + D("CMDPAL_INSTRUMENT_CHANGE", _N("Change instrument (Palette)"), 0), + D("CMDPAL_ADD_CHIP", _N("Add chip (Palette)"), 0), D("CMDPAL_MAX", "", NOT_AN_ACTION), - D("WINDOW_EDIT_CONTROLS", "Edit Controls", 0), - D("WINDOW_ORDERS", "Orders", 0), - D("WINDOW_INS_LIST", "Instrument List", 0), - D("WINDOW_INS_EDIT", "Instrument Editor", 0), - D("WINDOW_SONG_INFO", "Song Information", 0), - D("WINDOW_SPEED", "Speed", 0), - D("WINDOW_PATTERN", "Pattern", 0), - D("WINDOW_WAVE_LIST", "Wavetable List", 0), - D("WINDOW_WAVE_EDIT", "Wavetable Editor", 0), - D("WINDOW_SAMPLE_LIST", "Sample List", 0), - D("WINDOW_SAMPLE_EDIT", "Sample Editor", 0), - D("WINDOW_ABOUT", "About", 0), + D("WINDOW_EDIT_CONTROLS", _N("Edit Controls"), 0), + D("WINDOW_ORDERS", _N("Orders"), 0), + D("WINDOW_INS_LIST", _N("Instrument List"), 0), + D("WINDOW_INS_EDIT", _N("Instrument Editor"), 0), + D("WINDOW_SONG_INFO", _N("Song Information"), 0), + D("WINDOW_SPEED", _N("Speed"), 0), + D("WINDOW_PATTERN", _N("Pattern"), 0), + D("WINDOW_WAVE_LIST", _N("Wavetable List"), 0), + D("WINDOW_WAVE_EDIT", _N("Wavetable Editor"), 0), + D("WINDOW_SAMPLE_LIST", _N("Sample List"), 0), + D("WINDOW_SAMPLE_EDIT", _N("Sample Editor"), 0), + D("WINDOW_ABOUT", _N("About"), 0), #ifdef __APPLE__ - D("WINDOW_SETTINGS", "Settings", FURKMOD_CMD|SDLK_COMMA), + D("WINDOW_SETTINGS", _N("Settings"), FURKMOD_CMD|SDLK_COMMA), #else - D("WINDOW_SETTINGS", "Settings", 0), + D("WINDOW_SETTINGS", _N("Settings"), 0), #endif - D("WINDOW_MIXER", "Mixer", 0), - D("WINDOW_DEBUG", "Debug Menu", FURKMOD_CMD|FURKMOD_SHIFT|SDLK_d), - D("WINDOW_OSCILLOSCOPE", "Oscilloscope (master)", 0), - D("WINDOW_VOL_METER", "Volume Meter", 0), - D("WINDOW_STATS", "Statistics", 0), - D("WINDOW_COMPAT_FLAGS", "Compatibility Flags", 0), - D("WINDOW_PIANO", "Piano", 0), - D("WINDOW_NOTES", "Song Comments", 0), - D("WINDOW_CHANNELS", "Channels", 0), - D("WINDOW_PAT_MANAGER", "Pattern Manager", 0), - D("WINDOW_SYS_MANAGER", "Chip Manager", 0), - D("WINDOW_REGISTER_VIEW", "Register View", 0), - D("WINDOW_LOG", "Log Viewer", 0), - D("WINDOW_EFFECT_LIST", "Effect List", 0), - D("WINDOW_CHAN_OSC", "Oscilloscope (per-channel)", 0), - D("WINDOW_SUBSONGS", "Subsongs", 0), - D("WINDOW_FIND", "Find/Replace", FURKMOD_CMD|SDLK_f), - D("WINDOW_CLOCK", "Clock", 0), - D("WINDOW_GROOVES", "Grooves", 0), - D("WINDOW_XY_OSC", "Oscilloscope (X-Y)", 0), - D("WINDOW_MEMORY", "Memory Composition", 0), - D("WINDOW_CS_PLAYER", "Command Stream Player", 0), - D("WINDOW_USER_PRESETS", "User Presets", 0), + D("WINDOW_MIXER", _N("Mixer"), 0), + D("WINDOW_DEBUG", _N("Debug Menu"), FURKMOD_CMD|FURKMOD_SHIFT|SDLK_d), + D("WINDOW_OSCILLOSCOPE", _N("Oscilloscope (master)"), 0), + D("WINDOW_VOL_METER", _N("Volume Meter"), 0), + D("WINDOW_STATS", _N("Statistics"), 0), + D("WINDOW_COMPAT_FLAGS", _N("Compatibility Flags"), 0), + D("WINDOW_PIANO", _N("Piano"), 0), + D("WINDOW_NOTES", _N("Song Comments"), 0), + D("WINDOW_CHANNELS", _N("Channels"), 0), + D("WINDOW_PAT_MANAGER", _N("Pattern Manager"), 0), + D("WINDOW_SYS_MANAGER", _N("Chip Manager"), 0), + D("WINDOW_REGISTER_VIEW", _N("Register View"), 0), + D("WINDOW_LOG", _N("Log Viewer"), 0), + D("WINDOW_EFFECT_LIST", _N("Effect List"), 0), + D("WINDOW_CHAN_OSC", _N("Oscilloscope (per-channel)"), 0), + D("WINDOW_SUBSONGS", _N("Subsongs"), 0), + D("WINDOW_FIND", _N("Find/Replace"), FURKMOD_CMD|SDLK_f), + D("WINDOW_CLOCK", _N("Clock"), 0), + D("WINDOW_GROOVES", _N("Grooves"), 0), + D("WINDOW_XY_OSC", _N("Oscilloscope (X-Y)"), 0), + D("WINDOW_MEMORY", _N("Memory Composition"), 0), + D("WINDOW_CS_PLAYER", _N("Command Stream Player"), 0), + D("WINDOW_USER_PRESETS", _N("User Presets"), 0), - D("COLLAPSE_WINDOW", "Collapse/expand current window", 0), - D("CLOSE_WINDOW", "Close current window", FURKMOD_SHIFT|SDLK_ESCAPE), + D("COLLAPSE_WINDOW", _N("Collapse/expand current window"), 0), + D("CLOSE_WINDOW", _N("Close current window"), FURKMOD_SHIFT|SDLK_ESCAPE), D("GLOBAL_MAX", "", NOT_AN_ACTION), - D("PAT_MIN", "---Pattern", NOT_AN_ACTION), - D("PAT_NOTE_UP", "Transpose (+1)", FURKMOD_CMD|SDLK_F2), - D("PAT_NOTE_DOWN", "Transpose (-1)", FURKMOD_CMD|SDLK_F1), - D("PAT_OCTAVE_UP", "Transpose (+1 octave)", FURKMOD_CMD|SDLK_F4), - D("PAT_OCTAVE_DOWN", "Transpose (-1 octave)", FURKMOD_CMD|SDLK_F3), - D("PAT_VALUE_UP", "Increase values (+1)", FURKMOD_CMD|FURKMOD_SHIFT|SDLK_F2), - D("PAT_VALUE_DOWN", "Increase values (-1)", FURKMOD_CMD|FURKMOD_SHIFT|SDLK_F1), - D("PAT_VALUE_UP_COARSE", "Increase values (+16)", FURKMOD_CMD|FURKMOD_SHIFT|SDLK_F4), - D("PAT_VALUE_DOWN_COARSE", "Increase values (-16)", FURKMOD_CMD|FURKMOD_SHIFT|SDLK_F3), - D("PAT_SELECT_ALL", "Select all", FURKMOD_CMD|SDLK_a), - D("PAT_CUT", "Cut", FURKMOD_CMD|SDLK_x), - D("PAT_COPY", "Copy", FURKMOD_CMD|SDLK_c), - D("PAT_PASTE", "Paste", FURKMOD_CMD|SDLK_v), - D("PAT_PASTE_MIX", "Paste Mix (foreground)", FURKMOD_CMD|FURKMOD_SHIFT|SDLK_v), - D("PAT_PASTE_MIX_BG", "Paste Mix (background)", 0), - D("PAT_PASTE_FLOOD", "Paste Flood", 0), - D("PAT_PASTE_OVERFLOW", "Paste Overflow", 0), - D("PAT_CURSOR_UP", "Move cursor up", SDLK_UP), - D("PAT_CURSOR_DOWN", "Move cursor down", SDLK_DOWN), - D("PAT_CURSOR_LEFT", "Move cursor left", SDLK_LEFT), - D("PAT_CURSOR_RIGHT", "Move cursor right", SDLK_RIGHT), - D("PAT_CURSOR_UP_ONE", "Move cursor up by one (override Edit Step)", FURKMOD_SHIFT|SDLK_HOME), - D("PAT_CURSOR_DOWN_ONE", "Move cursor down by one (override Edit Step)", FURKMOD_SHIFT|SDLK_END), - D("PAT_CURSOR_LEFT_CHANNEL", "Move cursor to previous channel", 0), - D("PAT_CURSOR_RIGHT_CHANNEL", "Move cursor to next channel", 0), - D("PAT_CURSOR_NEXT_CHANNEL", "Move cursor to next channel (overflow)", 0), - D("PAT_CURSOR_PREVIOUS_CHANNEL", "Move cursor to previous channel (overflow)", 0), - D("PAT_CURSOR_BEGIN", "Move cursor to beginning of pattern", SDLK_HOME), - D("PAT_CURSOR_END", "Move cursor to end of pattern", SDLK_END), - D("PAT_CURSOR_UP_COARSE", "Move cursor up (coarse)", SDLK_PAGEUP), - D("PAT_CURSOR_DOWN_COARSE", "Move cursor down (coarse)", SDLK_PAGEDOWN), - D("PAT_SELECTION_UP", "Expand selection upwards", FURKMOD_SHIFT|SDLK_UP), - D("PAT_SELECTION_DOWN", "Expand selection downwards", FURKMOD_SHIFT|SDLK_DOWN), - D("PAT_SELECTION_LEFT", "Expand selection to the left", FURKMOD_SHIFT|SDLK_LEFT), - D("PAT_SELECTION_RIGHT", "Expand selection to the right", FURKMOD_SHIFT|SDLK_RIGHT), - D("PAT_SELECTION_UP_ONE", "Expand selection upwards by one (override Edit Step)", 0), - D("PAT_SELECTION_DOWN_ONE", "Expand selection downwards by one (override Edit Step)", 0), - D("PAT_SELECTION_BEGIN", "Expand selection to beginning of pattern", 0), - D("PAT_SELECTION_END", "Expand selection to end of pattern", 0), - D("PAT_SELECTION_UP_COARSE", "Expand selection upwards (coarse)", FURKMOD_SHIFT|SDLK_PAGEUP), - D("PAT_SELECTION_DOWN_COARSE", "Expand selection downwards (coarse)", FURKMOD_SHIFT|SDLK_PAGEDOWN), - D("PAT_MOVE_UP", "Move selection up", FURKMOD_ALT|SDLK_UP), - D("PAT_MOVE_DOWN", "Move selection down", FURKMOD_ALT|SDLK_DOWN), - D("PAT_MOVE_LEFT_CHANNEL", "Move selection to previous channel", FURKMOD_ALT|SDLK_LEFT), - D("PAT_MOVE_RIGHT_CHANNEL", "Move selection to next channel", FURKMOD_ALT|SDLK_RIGHT), - D("PAT_DELETE", "Delete", SDLK_DELETE), - D("PAT_PULL_DELETE", "Pull delete", SDLK_BACKSPACE), - D("PAT_INSERT", "Insert", SDLK_INSERT), - D("PAT_MUTE_CURSOR", "Mute channel at cursor", FURKMOD_ALT|SDLK_F9), - D("PAT_SOLO_CURSOR", "Solo channel at cursor", FURKMOD_ALT|SDLK_F10), - D("PAT_UNMUTE_ALL", "Unmute all channels", FURKMOD_ALT|FURKMOD_SHIFT|SDLK_F9), - D("PAT_NEXT_ORDER", "Go to next order", 0), - D("PAT_PREV_ORDER", "Go to previous order", 0), - D("PAT_COLLAPSE", "Collapse channel at cursor", 0), - D("PAT_INCREASE_COLUMNS", "Increase effect columns", 0), - D("PAT_DECREASE_COLUMNS", "Decrease effect columns", 0), - D("PAT_INTERPOLATE", "Interpolate", 0), - D("PAT_FADE", "Fade", 0), - D("PAT_INVERT_VALUES", "Invert values", 0), - D("PAT_FLIP_SELECTION", "Flip selection", 0), - D("PAT_COLLAPSE_ROWS", "Collapse rows", 0), - D("PAT_EXPAND_ROWS", "Expand rows", 0), - D("PAT_COLLAPSE_PAT", "Collapse pattern", 0), - D("PAT_EXPAND_PAT", "Expand pattern", 0), - D("PAT_COLLAPSE_SONG", "Collapse song", 0), - D("PAT_EXPAND_SONG", "Expand song", 0), - D("PAT_LATCH", "Set note input latch", 0), - D("PAT_SCROLL_MODE", "Change mobile scroll mode", 0), - D("PAT_CLEAR_LATCH", "Clear note input latch", 0), + D("PAT_MIN", _N("---Pattern"), NOT_AN_ACTION), + D("PAT_NOTE_UP", _N("Transpose (+1)"), FURKMOD_CMD|SDLK_F2), + D("PAT_NOTE_DOWN", _N("Transpose (-1)"), FURKMOD_CMD|SDLK_F1), + D("PAT_OCTAVE_UP", _N("Transpose (+1 octave)"), FURKMOD_CMD|SDLK_F4), + D("PAT_OCTAVE_DOWN", _N("Transpose (-1 octave)"), FURKMOD_CMD|SDLK_F3), + D("PAT_VALUE_UP", _N("Increase values (+1)"), FURKMOD_CMD|FURKMOD_SHIFT|SDLK_F2), + D("PAT_VALUE_DOWN", _N("Increase values (-1)"), FURKMOD_CMD|FURKMOD_SHIFT|SDLK_F1), + D("PAT_VALUE_UP_COARSE", _N("Increase values (+16)"), FURKMOD_CMD|FURKMOD_SHIFT|SDLK_F4), + D("PAT_VALUE_DOWN_COARSE", _N("Increase values (-16)"), FURKMOD_CMD|FURKMOD_SHIFT|SDLK_F3), + D("PAT_SELECT_ALL", _N("Select all"), FURKMOD_CMD|SDLK_a), + D("PAT_CUT", _N("Cut"), FURKMOD_CMD|SDLK_x), + D("PAT_COPY", _N("Copy"), FURKMOD_CMD|SDLK_c), + D("PAT_PASTE", _N("Paste"), FURKMOD_CMD|SDLK_v), + D("PAT_PASTE_MIX", _N("Paste Mix (foreground)"), FURKMOD_CMD|FURKMOD_SHIFT|SDLK_v), + D("PAT_PASTE_MIX_BG", _N("Paste Mix (background)"), 0), + D("PAT_PASTE_FLOOD", _N("Paste Flood"), 0), + D("PAT_PASTE_OVERFLOW", _N("Paste Overflow"), 0), + D("PAT_CURSOR_UP", _N("Move cursor up"), SDLK_UP), + D("PAT_CURSOR_DOWN", _N("Move cursor down"), SDLK_DOWN), + D("PAT_CURSOR_LEFT", _N("Move cursor left"), SDLK_LEFT), + D("PAT_CURSOR_RIGHT", _N("Move cursor right"), SDLK_RIGHT), + D("PAT_CURSOR_UP_ONE", _N("Move cursor up by one (override Edit Step)"), FURKMOD_SHIFT|SDLK_HOME), + D("PAT_CURSOR_DOWN_ONE", _N("Move cursor down by one (override Edit Step)"), FURKMOD_SHIFT|SDLK_END), + D("PAT_CURSOR_LEFT_CHANNEL", _N("Move cursor to previous channel"), 0), + D("PAT_CURSOR_RIGHT_CHANNEL", _N("Move cursor to next channel"), 0), + D("PAT_CURSOR_NEXT_CHANNEL", _N("Move cursor to next channel (overflow)"), 0), + D("PAT_CURSOR_PREVIOUS_CHANNEL", _N("Move cursor to previous channel (overflow)"), 0), + D("PAT_CURSOR_BEGIN", _N("Move cursor to beginning of pattern"), SDLK_HOME), + D("PAT_CURSOR_END", _N("Move cursor to end of pattern"), SDLK_END), + D("PAT_CURSOR_UP_COARSE", _N("Move cursor up (coarse)"), SDLK_PAGEUP), + D("PAT_CURSOR_DOWN_COARSE", _N("Move cursor down (coarse)"), SDLK_PAGEDOWN), + D("PAT_SELECTION_UP", _N("Expand selection upwards"), FURKMOD_SHIFT|SDLK_UP), + D("PAT_SELECTION_DOWN", _N("Expand selection downwards"), FURKMOD_SHIFT|SDLK_DOWN), + D("PAT_SELECTION_LEFT", _N("Expand selection to the left"), FURKMOD_SHIFT|SDLK_LEFT), + D("PAT_SELECTION_RIGHT", _N("Expand selection to the right"), FURKMOD_SHIFT|SDLK_RIGHT), + D("PAT_SELECTION_UP_ONE", _N("Expand selection upwards by one (override Edit Step)"), 0), + D("PAT_SELECTION_DOWN_ONE", _N("Expand selection downwards by one (override Edit Step)"), 0), + D("PAT_SELECTION_BEGIN", _N("Expand selection to beginning of pattern"), 0), + D("PAT_SELECTION_END", _N("Expand selection to end of pattern"), 0), + D("PAT_SELECTION_UP_COARSE", _N("Expand selection upwards (coarse)"), FURKMOD_SHIFT|SDLK_PAGEUP), + D("PAT_SELECTION_DOWN_COARSE", _N("Expand selection downwards (coarse)"), FURKMOD_SHIFT|SDLK_PAGEDOWN), + D("PAT_MOVE_UP", _N("Move selection up"), FURKMOD_ALT|SDLK_UP), + D("PAT_MOVE_DOWN", _N("Move selection down"), FURKMOD_ALT|SDLK_DOWN), + D("PAT_MOVE_LEFT_CHANNEL", _N("Move selection to previous channel"), FURKMOD_ALT|SDLK_LEFT), + D("PAT_MOVE_RIGHT_CHANNEL", _N("Move selection to next channel"), FURKMOD_ALT|SDLK_RIGHT), + D("PAT_DELETE", _N("Delete"), SDLK_DELETE), + D("PAT_PULL_DELETE", _N("Pull delete"), SDLK_BACKSPACE), + D("PAT_INSERT", _N("Insert"), SDLK_INSERT), + D("PAT_MUTE_CURSOR", _N("Mute channel at cursor"), FURKMOD_ALT|SDLK_F9), + D("PAT_SOLO_CURSOR", _N("Solo channel at cursor"), FURKMOD_ALT|SDLK_F10), + D("PAT_UNMUTE_ALL", _N("Unmute all channels"), FURKMOD_ALT|FURKMOD_SHIFT|SDLK_F9), + D("PAT_NEXT_ORDER", _N("Go to next order"), 0), + D("PAT_PREV_ORDER", _N("Go to previous order"), 0), + D("PAT_COLLAPSE", _N("Collapse channel at cursor"), 0), + D("PAT_INCREASE_COLUMNS", _N("Increase effect columns"), 0), + D("PAT_DECREASE_COLUMNS", _N("Decrease effect columns"), 0), + D("PAT_INTERPOLATE", _N("Interpolate"), 0), + D("PAT_FADE", _N("Fade"), 0), + D("PAT_INVERT_VALUES", _N("Invert values"), 0), + D("PAT_FLIP_SELECTION", _N("Flip selection"), 0), + D("PAT_COLLAPSE_ROWS", _N("Collapse rows"), 0), + D("PAT_EXPAND_ROWS", _N("Expand rows"), 0), + D("PAT_COLLAPSE_PAT", _N("Collapse pattern"), 0), + D("PAT_EXPAND_PAT", _N("Expand pattern"), 0), + D("PAT_COLLAPSE_SONG", _N("Collapse song"), 0), + D("PAT_EXPAND_SONG", _N("Expand song"), 0), + D("PAT_LATCH", _N("Set note input latch"), 0), + D("PAT_SCROLL_MODE", _N("Change mobile scroll mode"), 0), + D("PAT_CLEAR_LATCH", _N("Clear note input latch"), 0), D("PAT_MAX", "", NOT_AN_ACTION), - D("INS_LIST_MIN", "---Instrument list", NOT_AN_ACTION), - D("INS_LIST_ADD", "Add instrument", SDLK_INSERT), - D("INS_LIST_DUPLICATE", "Duplicate instrument", FURKMOD_CMD|SDLK_d), - D("INS_LIST_OPEN", "Open instrument", 0), - D("INS_LIST_OPEN_REPLACE", "Open instrument (replace current)", 0), - D("INS_LIST_SAVE", "Save instrument", 0), - D("INS_LIST_SAVE_DMP", "Save instrument (.dmp)", 0), - D("INS_LIST_MOVE_UP", "Move instrument up in list", FURKMOD_SHIFT|SDLK_UP), - D("INS_LIST_MOVE_DOWN", "Move instrument down in list", FURKMOD_SHIFT|SDLK_DOWN), - D("INS_LIST_DELETE", "Delete instrument", 0), - D("INS_LIST_EDIT", "Edit instrument", FURKMOD_SHIFT|SDLK_RETURN), - D("INS_LIST_UP", "Instrument cursor up", SDLK_UP), - D("INS_LIST_DOWN", "Instrument cursor down", SDLK_DOWN), - D("INS_LIST_DIR_VIEW", "Instruments: toggle folders/standard view", FURKMOD_CMD|SDLK_v), + D("INS_LIST_MIN", _N("---Instrument list"), NOT_AN_ACTION), + D("INS_LIST_ADD", _N("Add instrument"), SDLK_INSERT), + D("INS_LIST_DUPLICATE", _N("Duplicate instrument"), FURKMOD_CMD|SDLK_d), + D("INS_LIST_OPEN", _N("Open instrument"), 0), + D("INS_LIST_OPEN_REPLACE", _N("Open instrument (replace current)"), 0), + D("INS_LIST_SAVE", _N("Save instrument"), 0), + D("INS_LIST_SAVE_DMP", _N("Save instrument (.dmp)"), 0), + D("INS_LIST_MOVE_UP", _N("Move instrument up in list"), FURKMOD_SHIFT|SDLK_UP), + D("INS_LIST_MOVE_DOWN", _N("Move instrument down in list"), FURKMOD_SHIFT|SDLK_DOWN), + D("INS_LIST_DELETE", _N("Delete instrument"), 0), + D("INS_LIST_EDIT", _N("Edit instrument"), FURKMOD_SHIFT|SDLK_RETURN), + D("INS_LIST_UP", _N("Instrument cursor up"), SDLK_UP), + D("INS_LIST_DOWN", _N("Instrument cursor down"), SDLK_DOWN), + D("INS_LIST_DIR_VIEW", _N("Instruments: toggle folders/standard view"), FURKMOD_CMD|SDLK_v), D("INS_LIST_MAX", "", NOT_AN_ACTION), - D("WAVE_LIST_MIN", "---Wavetable list", NOT_AN_ACTION), - D("WAVE_LIST_ADD", "Add wavetable", SDLK_INSERT), - D("WAVE_LIST_DUPLICATE", "Duplicate wavetable", FURKMOD_CMD|SDLK_d), - D("WAVE_LIST_OPEN", "Open wavetable", 0), - D("WAVE_LIST_OPEN_REPLACE", "Open wavetable (replace current)", 0), - D("WAVE_LIST_SAVE", "Save wavetable", 0), - D("WAVE_LIST_SAVE_DMW", "Save wavetable (.dmw)", 0), - D("WAVE_LIST_SAVE_RAW", "Save wavetable (raw)", 0), - D("WAVE_LIST_MOVE_UP", "Move wavetable up in list", FURKMOD_SHIFT|SDLK_UP), - D("WAVE_LIST_MOVE_DOWN", "Move wavetable down in list", FURKMOD_SHIFT|SDLK_DOWN), - D("WAVE_LIST_DELETE", "Delete wavetable", 0), - D("WAVE_LIST_EDIT", "Edit wavetable", FURKMOD_SHIFT|SDLK_RETURN), - D("WAVE_LIST_UP", "Wavetable cursor up", SDLK_UP), - D("WAVE_LIST_DOWN", "Wavetable cursor down", SDLK_DOWN), - D("WAVE_LIST_DIR_VIEW", "Wavetables: toggle folders/standard view", FURKMOD_CMD|SDLK_v), + D("WAVE_LIST_MIN", _N("---Wavetable list"), NOT_AN_ACTION), + D("WAVE_LIST_ADD", _N("Add wavetable"), SDLK_INSERT), + D("WAVE_LIST_DUPLICATE", _N("Duplicate wavetable"), FURKMOD_CMD|SDLK_d), + D("WAVE_LIST_OPEN", _N("Open wavetable"), 0), + D("WAVE_LIST_OPEN_REPLACE", _N("Open wavetable (replace current)"), 0), + D("WAVE_LIST_SAVE", _N("Save wavetable"), 0), + D("WAVE_LIST_SAVE_DMW", _N("Save wavetable (.dmw)"), 0), + D("WAVE_LIST_SAVE_RAW", _N("Save wavetable (raw)"), 0), + D("WAVE_LIST_MOVE_UP", _N("Move wavetable up in list"), FURKMOD_SHIFT|SDLK_UP), + D("WAVE_LIST_MOVE_DOWN", _N("Move wavetable down in list"), FURKMOD_SHIFT|SDLK_DOWN), + D("WAVE_LIST_DELETE", _N("Delete wavetable"), 0), + D("WAVE_LIST_EDIT", _N("Edit wavetable"), FURKMOD_SHIFT|SDLK_RETURN), + D("WAVE_LIST_UP", _N("Wavetable cursor up"), SDLK_UP), + D("WAVE_LIST_DOWN", _N("Wavetable cursor down"), SDLK_DOWN), + D("WAVE_LIST_DIR_VIEW", _N("Wavetables: toggle folders/standard view"), FURKMOD_CMD|SDLK_v), D("WAVE_LIST_MAX", "", NOT_AN_ACTION), - D("SAMPLE_LIST_MIN", "---Sample list", NOT_AN_ACTION), - D("SAMPLE_LIST_ADD", "Add sample", SDLK_INSERT), - D("SAMPLE_LIST_DUPLICATE", "Duplicate sample", FURKMOD_CMD|SDLK_d), - D("SAMPLE_LIST_OPEN", "Open sample", 0), - D("SAMPLE_LIST_OPEN_REPLACE", "Open sample (replace current)", 0), - D("SAMPLE_LIST_OPEN_RAW", "Import raw sample data", 0), - D("SAMPLE_LIST_OPEN_REPLACE_RAW", "Import raw sample data (replace current)", 0), - D("SAMPLE_LIST_SAVE", "Save sample", 0), - D("SAMPLE_LIST_SAVE_RAW", "Save sample (raw)", 0), - D("SAMPLE_LIST_MOVE_UP", "Move sample up in list", FURKMOD_SHIFT|SDLK_UP), - D("SAMPLE_LIST_MOVE_DOWN", "Move sample down in list", FURKMOD_SHIFT|SDLK_DOWN), - D("SAMPLE_LIST_DELETE", "Delete sample", 0), - D("SAMPLE_LIST_EDIT", "Edit sample", FURKMOD_SHIFT|SDLK_RETURN), - D("SAMPLE_LIST_UP", "Sample cursor up", SDLK_UP), - D("SAMPLE_LIST_DOWN", "Sample cursor down", SDLK_DOWN), - D("SAMPLE_LIST_PREVIEW", "Sample preview", 0), - D("SAMPLE_LIST_STOP_PREVIEW", "Stop sample preview", 0), - D("SAMPLE_LIST_DIR_VIEW", "Samples: Toggle folders/standard view", FURKMOD_CMD|SDLK_v), - D("SAMPLE_LIST_MAKE_MAP", "Samples: Make me a drum kit", 0), + D("SAMPLE_LIST_MIN", _N("---Sample list"), NOT_AN_ACTION), + D("SAMPLE_LIST_ADD", _N("Add sample"), SDLK_INSERT), + D("SAMPLE_LIST_DUPLICATE", _N("Duplicate sample"), FURKMOD_CMD|SDLK_d), + D("SAMPLE_LIST_OPEN", _N("Open sample"), 0), + D("SAMPLE_LIST_OPEN_REPLACE", _N("Open sample (replace current)"), 0), + D("SAMPLE_LIST_OPEN_RAW", _N("Import raw sample data"), 0), + D("SAMPLE_LIST_OPEN_REPLACE_RAW", _N("Import raw sample data (replace current)"), 0), + D("SAMPLE_LIST_SAVE", _N("Save sample"), 0), + D("SAMPLE_LIST_SAVE_RAW", _N("Save sample (raw)"), 0), + D("SAMPLE_LIST_MOVE_UP", _N("Move sample up in list"), FURKMOD_SHIFT|SDLK_UP), + D("SAMPLE_LIST_MOVE_DOWN", _N("Move sample down in list"), FURKMOD_SHIFT|SDLK_DOWN), + D("SAMPLE_LIST_DELETE", _N("Delete sample"), 0), + D("SAMPLE_LIST_EDIT", _N("Edit sample"), FURKMOD_SHIFT|SDLK_RETURN), + D("SAMPLE_LIST_UP", _N("Sample cursor up"), SDLK_UP), + D("SAMPLE_LIST_DOWN", _N("Sample cursor down"), SDLK_DOWN), + D("SAMPLE_LIST_PREVIEW", _N("Sample preview"), 0), + D("SAMPLE_LIST_STOP_PREVIEW", _N("Stop sample preview"), 0), + D("SAMPLE_LIST_DIR_VIEW", _N("Samples: Toggle folders/standard view"), FURKMOD_CMD|SDLK_v), + D("SAMPLE_LIST_MAKE_MAP", _N("Samples: Make me a drum kit"), 0), D("SAMPLE_LIST_MAX", "", NOT_AN_ACTION), - D("SAMPLE_MIN", "---Sample editor", NOT_AN_ACTION), - D("SAMPLE_SELECT", "Sample editor mode: Select", FURKMOD_SHIFT|SDLK_i), - D("SAMPLE_DRAW", "Sample editor mode: Draw", FURKMOD_SHIFT|SDLK_d), - D("SAMPLE_CUT", "Sample editor: Cut", FURKMOD_CMD|SDLK_x), - D("SAMPLE_COPY", "Sample editor: Copy", FURKMOD_CMD|SDLK_c), - D("SAMPLE_PASTE", "Sample editor: Paste", FURKMOD_CMD|SDLK_v), - D("SAMPLE_PASTE_REPLACE", "Sample editor: Paste replace", FURKMOD_CMD|FURKMOD_SHIFT|SDLK_v), - D("SAMPLE_PASTE_MIX", "Sample editor: Paste mix", FURKMOD_CMD|FURKMOD_ALT|SDLK_v), - D("SAMPLE_SELECT_ALL", "Sample editor: Select all", FURKMOD_CMD|SDLK_a), - D("SAMPLE_RESIZE", "Sample editor: Resize", FURKMOD_CMD|SDLK_r), - D("SAMPLE_RESAMPLE", "Sample editor: Resample", FURKMOD_CMD|SDLK_e), - D("SAMPLE_AMPLIFY", "Sample editor: Amplify", FURKMOD_CMD|SDLK_b), - D("SAMPLE_NORMALIZE", "Sample editor: Normalize", FURKMOD_CMD|SDLK_n), - D("SAMPLE_FADE_IN", "Sample editor: Fade in", FURKMOD_CMD|SDLK_i), - D("SAMPLE_FADE_OUT", "Sample editor: Fade out", FURKMOD_CMD|SDLK_o), - D("SAMPLE_SILENCE", "Sample editor: Apply silence", FURKMOD_SHIFT|SDLK_DELETE), - D("SAMPLE_INSERT", "Sample editor: Insert silence", SDLK_INSERT), - D("SAMPLE_DELETE", "Sample editor: Delete", SDLK_DELETE), - D("SAMPLE_TRIM", "Sample editor: Trim", FURKMOD_CMD|SDLK_DELETE), - D("SAMPLE_REVERSE", "Sample editor: Reverse", FURKMOD_CMD|SDLK_t), - D("SAMPLE_INVERT", "Sample editor: Invert", FURKMOD_CMD|FURKMOD_SHIFT|SDLK_t), - D("SAMPLE_SIGN", "Sample editor: Signed/unsigned exchange", FURKMOD_CMD|SDLK_u), - D("SAMPLE_FILTER", "Sample editor: Apply filter", FURKMOD_CMD|SDLK_f), - D("SAMPLE_CROSSFADE_LOOP", "Sample editor: Crossfade loop points", NOT_AN_ACTION), - D("SAMPLE_PREVIEW", "Sample editor: Preview sample", 0), - D("SAMPLE_STOP_PREVIEW", "Sample editor: Stop sample preview", 0), - D("SAMPLE_ZOOM_IN", "Sample editor: Zoom in", FURKMOD_CMD|SDLK_EQUALS), - D("SAMPLE_ZOOM_OUT", "Sample editor: Zoom out", FURKMOD_CMD|SDLK_MINUS), - D("SAMPLE_ZOOM_AUTO", "Sample editor: Toggle auto-zoom", FURKMOD_CMD|SDLK_0), - D("SAMPLE_MAKE_INS", "Sample editor: Create instrument from sample", 0), - D("SAMPLE_SET_LOOP", "Sample editor: Set loop to selection", FURKMOD_CMD|SDLK_l), - D("SAMPLE_CREATE_WAVE", "Sample editor: Create wavetable from selection", FURKMOD_CMD|SDLK_w), + D("SAMPLE_MIN", _N("---Sample editor"), NOT_AN_ACTION), + D("SAMPLE_SELECT", _N("Sample editor mode: Select"), FURKMOD_SHIFT|SDLK_i), + D("SAMPLE_DRAW", _N("Sample editor mode: Draw"), FURKMOD_SHIFT|SDLK_d), + D("SAMPLE_CUT", _N("Sample editor: Cut"), FURKMOD_CMD|SDLK_x), + D("SAMPLE_COPY", _N("Sample editor: Copy"), FURKMOD_CMD|SDLK_c), + D("SAMPLE_PASTE", _N("Sample editor: Paste"), FURKMOD_CMD|SDLK_v), + D("SAMPLE_PASTE_REPLACE", _N("Sample editor: Paste replace"), FURKMOD_CMD|FURKMOD_SHIFT|SDLK_v), + D("SAMPLE_PASTE_MIX", _N("Sample editor: Paste mix"), FURKMOD_CMD|FURKMOD_ALT|SDLK_v), + D("SAMPLE_SELECT_ALL", _N("Sample editor: Select all"), FURKMOD_CMD|SDLK_a), + D("SAMPLE_RESIZE", _N("Sample editor: Resize"), FURKMOD_CMD|SDLK_r), + D("SAMPLE_RESAMPLE", _N("Sample editor: Resample"), FURKMOD_CMD|SDLK_e), + D("SAMPLE_AMPLIFY", _N("Sample editor: Amplify"), FURKMOD_CMD|SDLK_b), + D("SAMPLE_NORMALIZE", _N("Sample editor: Normalize"), FURKMOD_CMD|SDLK_n), + D("SAMPLE_FADE_IN", _N("Sample editor: Fade in"), FURKMOD_CMD|SDLK_i), + D("SAMPLE_FADE_OUT", _N("Sample editor: Fade out"), FURKMOD_CMD|SDLK_o), + D("SAMPLE_SILENCE", _N("Sample editor: Apply silence"), FURKMOD_SHIFT|SDLK_DELETE), + D("SAMPLE_INSERT", _N("Sample editor: Insert silence"), SDLK_INSERT), + D("SAMPLE_DELETE", _N("Sample editor: Delete"), SDLK_DELETE), + D("SAMPLE_TRIM", _N("Sample editor: Trim"), FURKMOD_CMD|SDLK_DELETE), + D("SAMPLE_REVERSE", _N("Sample editor: Reverse"), FURKMOD_CMD|SDLK_t), + D("SAMPLE_INVERT", _N("Sample editor: Invert"), FURKMOD_CMD|FURKMOD_SHIFT|SDLK_t), + D("SAMPLE_SIGN", _N("Sample editor: Signed/unsigned exchange"), FURKMOD_CMD|SDLK_u), + D("SAMPLE_FILTER", _N("Sample editor: Apply filter"), FURKMOD_CMD|SDLK_f), + D("SAMPLE_CROSSFADE_LOOP", _N("Sample editor: Crossfade loop points"), NOT_AN_ACTION), + D("SAMPLE_PREVIEW", _N("Sample editor: Preview sample"), 0), + D("SAMPLE_STOP_PREVIEW", _N("Sample editor: Stop sample preview"), 0), + D("SAMPLE_ZOOM_IN", _N("Sample editor: Zoom in"), FURKMOD_CMD|SDLK_EQUALS), + D("SAMPLE_ZOOM_OUT", _N("Sample editor: Zoom out"), FURKMOD_CMD|SDLK_MINUS), + D("SAMPLE_ZOOM_AUTO", _N("Sample editor: Toggle auto-zoom"), FURKMOD_CMD|SDLK_0), + D("SAMPLE_MAKE_INS", _N("Sample editor: Create instrument from sample"), 0), + D("SAMPLE_SET_LOOP", _N("Sample editor: Set loop to selection"), FURKMOD_CMD|SDLK_l), + D("SAMPLE_CREATE_WAVE", _N("Sample editor: Create wavetable from selection"), FURKMOD_CMD|SDLK_w), D("SAMPLE_MAX", "", NOT_AN_ACTION), - D("ORDERS_MIN", "---Orders", NOT_AN_ACTION), - D("ORDERS_UP", "Previous order", SDLK_UP), - D("ORDERS_DOWN", "Next order", SDLK_DOWN), - D("ORDERS_LEFT", "Order cursor left", SDLK_LEFT), - D("ORDERS_RIGHT", "Order cursor right", SDLK_RIGHT), - D("ORDERS_INCREASE", "Increase order value", 0), - D("ORDERS_DECREASE", "Decrease order value", 0), - D("ORDERS_EDIT_MODE", "Switch order edit mode", 0), - D("ORDERS_LINK", "Order: toggle alter entire row", FURKMOD_CMD|SDLK_l), - D("ORDERS_ADD", "Add order", SDLK_INSERT), - D("ORDERS_DUPLICATE", "Duplicate order", FURKMOD_CMD|SDLK_d), - D("ORDERS_DEEP_CLONE", "Deep clone order", FURKMOD_CMD|FURKMOD_SHIFT|SDLK_d), - D("ORDERS_DUPLICATE_END", "Copy current order to end of song", FURKMOD_CMD|SDLK_e), - D("ORDERS_DEEP_CLONE_END", "Deep clone current order to end of song", FURKMOD_CMD|FURKMOD_SHIFT|SDLK_e), - D("ORDERS_REMOVE", "Remove order", SDLK_DELETE), - D("ORDERS_MOVE_UP", "Move order up", FURKMOD_SHIFT|SDLK_UP), - D("ORDERS_MOVE_DOWN", "Move order down", FURKMOD_SHIFT|SDLK_DOWN), - D("ORDERS_REPLAY", "Replay order", 0), + D("ORDERS_MIN", _N("---Orders"), NOT_AN_ACTION), + D("ORDERS_UP", _N("Previous order"), SDLK_UP), + D("ORDERS_DOWN", _N("Next order"), SDLK_DOWN), + D("ORDERS_LEFT", _N("Order cursor left"), SDLK_LEFT), + D("ORDERS_RIGHT", _N("Order cursor right"), SDLK_RIGHT), + D("ORDERS_INCREASE", _N("Increase order value"), 0), + D("ORDERS_DECREASE", _N("Decrease order value"), 0), + D("ORDERS_EDIT_MODE", _N("Switch order edit mode"), 0), + D("ORDERS_LINK", _N("Order: toggle alter entire row"), FURKMOD_CMD|SDLK_l), + D("ORDERS_ADD", _N("Add order"), SDLK_INSERT), + D("ORDERS_DUPLICATE", _N("Duplicate order"), FURKMOD_CMD|SDLK_d), + D("ORDERS_DEEP_CLONE", _N("Deep clone order"), FURKMOD_CMD|FURKMOD_SHIFT|SDLK_d), + D("ORDERS_DUPLICATE_END", _N("Copy current order to end of song"), FURKMOD_CMD|SDLK_e), + D("ORDERS_DEEP_CLONE_END", _N("Deep clone current order to end of song"), FURKMOD_CMD|FURKMOD_SHIFT|SDLK_e), + D("ORDERS_REMOVE", _N("Remove order"), SDLK_DELETE), + D("ORDERS_MOVE_UP", _N("Move order up"), FURKMOD_SHIFT|SDLK_UP), + D("ORDERS_MOVE_DOWN", _N("Move order down"), FURKMOD_SHIFT|SDLK_DOWN), + D("ORDERS_REPLAY", _N("Replay order"), 0), D("ORDERS_MAX", "", NOT_AN_ACTION), }; #undef D @@ -1389,11 +1389,11 @@ const int* chipCategories[]={ }; const char* chipCategoryNames[]={ - "All chips", - "FM", - "Square", - "Wavetable", - "Special", - "Sample", + _N("All chips"), + _N("FM"), + _N("Square"), + _N("Wavetable"), + _N("Special"), + _N("Sample"), NULL }; diff --git a/src/gui/insEdit.cpp b/src/gui/insEdit.cpp index 6ba5938e7..64a04e3c6 100644 --- a/src/gui/insEdit.cpp +++ b/src/gui/insEdit.cpp @@ -36,21 +36,44 @@ extern "C" { } const char* ssgEnvTypes[8]={ - "Down Down Down", "Down.", "Down Up Down Up", "Down UP", "Up Up Up", "Up.", "Up Down Up Down", "Up DOWN" + _N("Down Down Down"), + _N("Down."), + _N("Down Up Down Up"), + _N("Down UP"), + _N("Up Up Up"), + _N("Up."), + _N("Up Down Up Down"), + _N("Up DOWN") }; const char* fmParamNames[3][32]={ - {"Algorithm", "Feedback", "LFO > Freq", "LFO > Amp", "Attack", "Decay", "Decay 2", "Release", "Sustain", "Level", "EnvScale", "Multiplier", "Detune", "Detune 2", "SSG-EG", "AM", "AM Depth", "Vibrato Depth", "Sustained", "Sustained", "Level Scaling", "Sustain", "Vibrato", "Waveform", "Scale Rate", "OP2 Half Sine", "OP1 Half Sine", "EnvShift", "Reverb", "Fine", "LFO2 > Freq", "LFO2 > Amp"}, + {_N("Algorithm"), _N("Feedback"), _N("LFO > Freq"), _N("LFO > Amp"), _N("Attack"), _N("Decay"), _N("Decay 2"), _N("Release"), _N("Sustain"), _N("Level"), _N("EnvScale"), _N("Multiplier"), _N("Detune"), _N("Detune 2"), _N("SSG-EG"), _N("AM"), _N("AM Depth"), _N("Vibrato Depth"), _N("Sustained"), _N("Sustained"), _N("Level Scaling"), _N("Sustain"), _N("Vibrato"), _N("Waveform"), _N("Scale Rate"), _N("OP2 Half Sine"), _N("OP1 Half Sine"), _N("EnvShift"), _N("Reverb"), _N("Fine"), _N("LFO2 > Freq"), _N("LFO2 > Amp")}, {"ALG", "FB", "FMS/PMS", "AMS", "AR", "DR", "SR", "RR", "SL", "TL", "KS", "MULT", "DT", "DT2", "SSG-EG", "AM", "AMD", "FMD", "EGT", "EGT", "KSL", "SUS", "VIB", "WS", "KSR", "DC", "DM", "EGS", "REV", "Fine", "FMS/PMS2", "AMS2"}, {"ALG", "FB", "FMS/PMS", "AMS", "AR", "DR", "D2R", "RR", "SL", "TL", "RS", "MULT", "DT", "DT2", "SSG-EG", "AM", "DAM", "DVB", "EGT", "EGS", "KSL", "SUS", "VIB", "WS", "KSR", "DC", "DM", "EGS", "REV", "Fine", "FMS/PMS2", "AMS2"} }; const char* esfmParamLongNames[9]={ - "OP4 Noise Mode", "Envelope Delay", "Output Level", "Modulation Input Level", "Left Output", "Right Output", "Coarse Tune (semitones)", "Detune", "Fixed Frequency Mode" + _N("OP4 Noise Mode"), + _N("Envelope Delay"), + _N("Output Level"), + _N("Modulation Input Level"), + _N("Left Output"), + _N("Right Output"), + _N("Coarse Tune (semitones)"), + _N("Detune"), + _N("Fixed Frequency Mode") }; const char* esfmParamNames[9]={ - "OP4 Noise Mode", "Env. Delay", "Output Level", "ModInput", "Left", "Right", "Tune", "Detune", "Fixed" + _N("OP4 Noise Mode"), + _N("Env. Delay"), + _N("Output Level"), + _N("ModInput"), + _N("Left"), + _N("Right"), + _N("Tune"), + _N("Detune"), + _N("Fixed") }; const char* esfmParamShortNames[9]={ @@ -72,114 +95,151 @@ const char* opllVariants[4]={ const char* opllInsNames[4][17]={ /* YM2413 */ { - "User", - "1. Violin", - "2. Guitar", - "3. Piano", - "4. Flute", - "5. Clarinet", - "6. Oboe", - "7. Trumpet", - "8. Organ", - "9. Horn", - "10. Synth", - "11. Harpsichord", - "12. Vibraphone", - "13. Synth Bass", - "14. Acoustic Bass", - "15. Electric Guitar", - "Drums" + _N("User"), + _N("1. Violin"), + _N("2. Guitar"), + _N("3. Piano"), + _N("4. Flute"), + _N("5. Clarinet"), + _N("6. Oboe"), + _N("7. Trumpet"), + _N("8. Organ"), + _N("9. Horn"), + _N("10. Synth"), + _N("11. Harpsichord"), + _N("12. Vibraphone"), + _N("13. Synth Bass"), + _N("14. Acoustic Bass"), + _N("15. Electric Guitar"), + _N("Drums") }, /* YMF281 */ { - "User", - "1. Electric String", - "2. Bow wow", - "3. Electric Guitar", - "4. Organ", - "5. Clarinet", - "6. Saxophone", - "7. Trumpet", - "8. Street Organ", - "9. Synth Brass", - "10. Electric Piano", - "11. Bass", - "12. Vibraphone", - "13. Chime", - "14. Tom Tom II", - "15. Noise", - "Drums" + _N("User"), + _N("1. Electric String"), + _N("2. Bow wow"), + _N("3. Electric Guitar"), + _N("4. Organ"), + _N("5. Clarinet"), + _N("6. Saxophone"), + _N("7. Trumpet"), + _N("8. Street Organ"), + _N("9. Synth Brass"), + _N("10. Electric Piano"), + _N("11. Bass"), + _N("12. Vibraphone"), + _N("13. Chime"), + _N("14. Tom Tom II"), + _N("15. Noise"), + _N("Drums") }, /* YM2423 */ { - "User", - "1. Strings", - "2. Guitar", - "3. Electric Guitar", - "4. Electric Piano", - "5. Flute", - "6. Marimba", - "7. Trumpet", - "8. Harmonica", - "9. Tuba", - "10. Synth Brass", - "11. Short Saw", - "12. Vibraphone", - "13. Electric Guitar 2", - "14. Synth Bass", - "15. Sitar", - "Drums" + _N("User"), + _N("1. Strings"), + _N("2. Guitar"), + _N("3. Electric Guitar"), + _N("4. Electric Piano"), + _N("5. Flute"), + _N("6. Marimba"), + _N("7. Trumpet"), + _N("8. Harmonica"), + _N("9. Tuba"), + _N("10. Synth Brass"), + _N("11. Short Saw"), + _N("12. Vibraphone"), + _N("13. Electric Guitar 2"), + _N("14. Synth Bass"), + _N("15. Sitar"), + _N("Drums") }, // stolen from FamiTracker /* VRC7 */ { - "User", - "1. Bell", - "2. Guitar", - "3. Piano", - "4. Flute", - "5. Clarinet", - "6. Rattling Bell", - "7. Trumpet", - "8. Reed Organ", - "9. Soft Bell", - "10. Xylophone", - "11. Vibraphone", - "12. Brass", - "13. Bass Guitar", - "14. Synth", - "15. Chorus", - "Drums" + _N("User"), + _N("1. Bell"), + _N("2. Guitar"), + _N("3. Piano"), + _N("4. Flute"), + _N("5. Clarinet"), + _N("6. Rattling Bell"), + _N("7. Trumpet"), + _N("8. Reed Organ"), + _N("9. Soft Bell"), + _N("10. Xylophone"), + _N("11. Vibraphone"), + _N("12. Brass"), + _N("13. Bass Guitar"), + _N("14. Synth"), + _N("15. Chorus"), + _N("Drums") } }; const char* oplWaveforms[8]={ - "Sine", "Half Sine", "Absolute Sine", "Quarter Sine", "Squished Sine", "Squished AbsSine", "Square", "Derived Square" + _N("Sine"), + _N("Half Sine"), + _N("Absolute Sine"), + _N("Quarter Sine"), + _N("Squished Sine"), + _N("Squished AbsSine"), + _N("Square"), + _N("Derived Square") }; const char* oplWaveformsStandard[8]={ - "Sine", "Half Sine", "Absolute Sine", "Pulse Sine", "Sine (Even Periods)", "AbsSine (Even Periods)", "Square", "Derived Square" + _N("Sine"), + _N("Half Sine"), + _N("Absolute Sine"), + _N("Pulse Sine"), + _N("Sine (Even Periods)"), + _N("AbsSine (Even Periods)"), + _N("Square"), + _N("Derived Square") }; const char* opzWaveforms[8]={ - "Sine", "Triangle", "Cut Sine", "Cut Triangle", "Squished Sine", "Squished Triangle", "Squished AbsSine", "Squished AbsTriangle" + _N("Sine"), + _N("Triangle"), + _N("Cut Sine"), + _N("Cut Triangle"), + _N("Squished Sine"), + _N("Squished Triangle"), + _N("Squished AbsSine"), + _N("Squished AbsTriangle") }; const char* oplDrumNames[4]={ - "Snare", "Tom", "Top", "HiHat" + _N("Snare"), + _N("Tom"), + _N("Top"), + _N("HiHat") }; const char* esfmNoiseModeNames[4]={ - "Normal", "Snare", "HiHat", "Top" + _N("Normal"), + _N("Snare"), + _N("HiHat"), + _N("Top") }; const char* esfmNoiseModeDescriptions[4]={ - "Noise disabled", "Square + noise", "Ringmod from OP3 + noise", "Ringmod from OP3 + double pitch ModInput\nWARNING - has emulation issues, subject to change" + _N("Noise disabled"), + _N("Square + noise"), + _N("Ringmod from OP3 + noise"), + _N("Ringmod from OP3 + double pitch ModInput\nWARNING - has emulation issues; subject to change") }; const char* sid2WaveMixModes[5]={ - "Normal", "Bitwise AND", "Bitwise OR", "Bitwise XOR", NULL + _N("Normal"), + _N("Bitwise AND"), + _N("Bitwise OR"), + _N("Bitwise XOR"), + NULL }; const char* sid2ControlBits[4]={ - "gate", "sync", "ring", NULL + _N("gate"), + _N("sync"), + _N("ring"), + NULL }; const bool opIsOutput[8][4]={ @@ -247,10 +307,10 @@ enum ESFMParams { ESFM_FIXED=8 }; -#define FM_NAME(x) fmParamNames[settings.fmNames][x] +#define FM_NAME(x) _(fmParamNames[settings.fmNames][x]) #define FM_SHORT_NAME(x) fmParamShortNames[settings.fmNames][x] -#define ESFM_LONG_NAME(x) (esfmParamLongNames[x]) -#define ESFM_NAME(x) (esfmParamNames[x]) +#define ESFM_LONG_NAME(x) _(esfmParamLongNames[x]) +#define ESFM_NAME(x) _(esfmParamNames[x]) #define ESFM_SHORT_NAME(x) (esfmParamShortNames[x]) const char* macroTypeLabels[4]={ @@ -261,7 +321,10 @@ const char* macroTypeLabels[4]={ }; const char* macroLFOShapes[4]={ - "Triangle", "Saw", "Square", "How did you even" + _N("Triangle"), + _N("Saw"), + _N("Square"), + _N("How did you even") }; const char* fmOperatorBits[5]={ @@ -269,39 +332,78 @@ const char* fmOperatorBits[5]={ }; const char* c64ShapeBits[5]={ - "triangle", "saw", "pulse", "noise", NULL + _N("triangle"), + _N("saw"), + _N("pulse"), + _N("noise"), + NULL }; const char* ayShapeBits[4]={ - "tone", "noise", "envelope", NULL + _N("tone"), + _N("noise"), + _N("envelope"), + NULL }; const char* ayEnvBits[4]={ - "hold", "alternate", "direction", "enable" + _N("hold"), + _N("alternate"), + _N("direction"), + _N("enable") }; const char* ssgEnvBits[5]={ - "0", "1", "2", "enabled", NULL + "0", "1", "2", _N("enabled"), NULL }; const char* saaEnvBits[9]={ - "mirror", "loop", "cut", "direction", "resolution", "fixed", "N/A","enabled", NULL + _N("mirror"), + _N("loop"), + _N("cut"), + _N("direction"), + _N("resolution"), + _N("fixed"), + _N("N/A"), + _N("enabled"), + NULL }; const char* snesModeBits[6]={ - "noise", "echo", "pitch mod", "invert right", "invert left", NULL + _N("noise"), + _N("echo"), + _N("pitch mod"), + _N("invert right"), + _N("invert left"), + NULL }; const char* filtModeBits[5]={ - "low", "band", "high", "ch3off", NULL + _N("low"), + _N("band"), + _N("high"), + _N("ch3off"), + NULL }; const char* c64TestGateBits[5]={ - "gate", "sync", "ring", "test", NULL + _N("gate"), + _N("sync"), + _N("ring"), + _N("test"), + NULL }; const char* pokeyCtlBits[9]={ - "15KHz", "filter 2+4", "filter 1+3", "16-bit 3+4", "16-bit 1+2", "high3", "high1", "poly9", NULL + _N("15KHz"), + _N("filter 2+4"), + _N("filter 1+3"), + _N("16-bit 3+4"), + _N("16-bit 1+2"), + _N("high3"), + _N("high1"), + _N("poly9"), + NULL }; const char* mikeyFeedbackBits[11] = { @@ -309,27 +411,44 @@ const char* mikeyFeedbackBits[11] = { }; const char* msm5232ControlBits[7]={ - "16'", "8'", "4'", "2'", "sustain", NULL + _N("16'"), + _N("8'"), + _N("4'"), + _N("2'"), + _N("sustain"), + NULL }; const char* tedControlBits[3]={ - "square", "noise", NULL + _N("square"), + _N("noise"), + NULL }; const char* c219ControlBits[4]={ - "noise", "invert", "surround", NULL + _N("noise"), + _N("invert"), + _N("surround"), + NULL }; const char* x1_010EnvBits[8]={ - "enable", "oneshot", "split L/R", "HinvR", "VinvR", "HinvL", "VinvL", NULL + _N("enable"), + _N("oneshot"), + _N("split L/R"), + _N("HinvR"), + _N("VinvR"), + _N("HinvL"), + _N("VinvL"), + NULL }; -/*const char* n163UpdateBits[8]={ - "now", "every waveform changed", NULL -};*/ - const char* suControlBits[5]={ - "ring mod", "low pass", "high pass", "band pass", NULL + _N("ring mod"), + _N("low pass"), + _N("high pass"), + _N("band pass"), + NULL }; const char* es5506FilterModes[4]={ @@ -337,35 +456,58 @@ const char* es5506FilterModes[4]={ }; const char* powerNoiseControlBits[3]={ - "enable tap B", "AM with slope", NULL + _N("enable tap B"), + _N("AM with slope"), + NULL }; const char* powerNoiseSlopeControlBits[7]={ - "invert B", "invert A", "reset B", "reset A", "clip B", "clip A", NULL + _N("invert B"), + _N("invert A"), + _N("reset B"), + _N("reset A"), + _N("clip B"), + _N("clip A"), + NULL }; const char* daveControlBits[5]={ - "high pass", "ring mod", "swap counters (noise)", "low pass (noise)", NULL + _N("high pass"), + _N("ring mod"), + _N("swap counters (noise)"), + _N("low pass (noise)"), + NULL }; const char* panBits[5]={ - "right", "left", "rear right", "rear left", NULL + _N("right"), + _N("left"), + _N("rear right"), + _N("rear left"), + NULL }; const char* oneBit[2]={ - "on", NULL + _N("on"), + NULL }; const char* es5506EnvelopeModes[3]={ - "k1 slowdown", "k2 slowdown", NULL + _N("k1 slowdown"), + _N("k2 slowdown"), + NULL }; const char* es5506ControlModes[3]={ - "pause", "reverse", NULL + _N("pause"), + _N("reverse"), + NULL }; const char* minModModeBits[3]={ - "invert right", "invert left", NULL + _N("invert right"), + _N("invert left"), + NULL }; const int orderedOps[4]={ @@ -373,52 +515,52 @@ const int orderedOps[4]={ }; const char* singleWSEffects[7]={ - "None", - "Invert", - "Add", - "Subtract", - "Average", - "Phase", - "Chorus" + _N("None"), + _N("Invert"), + _N("Add"), + _N("Subtract"), + _N("Average"), + _N("Phase"), + _N("Chorus") }; const char* dualWSEffects[9]={ - "None (dual)", - "Wipe", - "Fade", - "Fade (ping-pong)", - "Overlay", - "Negative Overlay", - "Slide", - "Mix Chorus", - "Phase Modulation" + _N("None (dual)"), + _N("Wipe"), + _N("Fade"), + _N("Fade (ping-pong)"), + _N("Overlay"), + _N("Negative Overlay"), + _N("Slide"), + _N("Mix Chorus"), + _N("Phase Modulation") }; const char* gbHWSeqCmdTypes[6]={ - "Envelope", - "Sweep", - "Wait", - "Wait for Release", - "Loop", - "Loop until Release" + _N("Envelope"), + _N("Sweep"), + _N("Wait"), + _N("Wait for Release"), + _N("Loop"), + _N("Loop until Release") }; const char* suHWSeqCmdTypes[7]={ - "Volume Sweep", - "Frequency Sweep", - "Cutoff Sweep", - "Wait", - "Wait for Release", - "Loop", - "Loop until Release" + _N("Volume Sweep"), + _N("Frequency Sweep"), + _N("Cutoff Sweep"), + _N("Wait"), + _N("Wait for Release"), + _N("Loop"), + _N("Loop until Release") }; const char* snesGainModes[5]={ - "Direct", - "Decrease (linear)", - "Decrease (logarithmic)", - "Increase (linear)", - "Increase (bent line)" + _N("Direct"), + _N("Decrease (linear)"), + _N("Decrease (logarithmic)"), + _N("Increase (linear)"), + _N("Increase (bent line)") }; const int detuneMap[2][8]={ @@ -459,30 +601,30 @@ String macroHover(int id, float val, void* u) { } String macroHoverLoop(int id, float val, void* u) { - if (val>1) return "Release"; - if (val>0) return "Loop"; + if (val>1) return _("Release"); + if (val>0) return _("Loop"); return ""; } String macroHoverBit30(int id, float val, void* u) { - if (val>0) return "Fixed"; - return "Relative"; + if (val>0) return _("Fixed"); + return _("Relative"); } String macroHoverGain(int id, float val, void* u) { if (val>=224.0f) { - return fmt::sprintf("%d: +%d (exponential)",id,(int)(val-224)); + return fmt::sprintf(_("%d: +%d (exponential)"),id,(int)(val-224)); } if (val>=192.0f) { - return fmt::sprintf("%d: +%d (linear)",id,(int)(val-192)); + return fmt::sprintf(_("%d: +%d (linear)"),id,(int)(val-192)); } if (val>=160.0f) { - return fmt::sprintf("%d: -%d (exponential)",id,(int)(val-160)); + return fmt::sprintf(_("%d: -%d (exponential)"),id,(int)(val-160)); } if (val>=128.0f) { - return fmt::sprintf("%d: -%d (linear)",id,(int)(val-128)); + return fmt::sprintf(_("%d: -%d (linear)"),id,(int)(val-128)); } - return fmt::sprintf("%d: %d (direct)",id,(int)val); + return fmt::sprintf(_("%d: %d (direct)"),id,(int)val); } String macroHoverES5506FilterMode(int id, float val, void* u) { @@ -509,13 +651,13 @@ String macroHoverES5506FilterMode(int id, float val, void* u) { String macroLFOWaves(int id, float val, void* u) { switch (((int)val)&3) { case 0: - return "Saw"; + return _("Saw"); case 1: - return "Square"; + return _("Square"); case 2: - return "Triangle"; + return _("Triangle"); case 3: - return "Random"; + return _("Random"); default: return "???"; } @@ -1465,7 +1607,7 @@ inline bool enBit30(const int val) { void FurnaceGUI::kvsConfig(DivInstrument* ins, bool supportsKVS) { if (fmPreviewOn) { if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("left click to restart\nmiddle click to pause\nright click to see algorithm"); + ImGui::SetTooltip(_("left click to restart\nmiddle click to pause\nright click to see algorithm")); } if (ImGui::IsItemClicked(ImGuiMouseButton_Left)) { updateFMPreview=true; @@ -1475,11 +1617,11 @@ void FurnaceGUI::kvsConfig(DivInstrument* ins, bool supportsKVS) { } } else if (supportsKVS) { if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("left click to configure TL scaling\nright click to see FM preview"); + ImGui::SetTooltip(_("left click to configure TL scaling\nright click to see FM preview")); } } else { if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("right click to see FM preview"); + ImGui::SetTooltip(_("right click to see FM preview")); } } if (ImGui::IsItemClicked(ImGuiMouseButton_Right)) { @@ -1494,7 +1636,7 @@ void FurnaceGUI::kvsConfig(DivInstrument* ins, bool supportsKVS) { if (ins->type==DIV_INS_OPLL) opCount=2; if (ins->type==DIV_INS_OPL) opCount=(ins->fm.ops==4)?4:2; if (ImGui::BeginPopupContextItem("IKVSOpt",ImGuiPopupFlags_MouseButtonLeft)) { - ImGui::Text("operator level changes with volume?"); + ImGui::Text(_("operator level changes with volume?")); if (ImGui::BeginTable("KVSTable",4,ImGuiTableFlags_BordersInner)) { ImGui::TableSetupColumn("c0",ImGuiTableColumnFlags_WidthFixed); ImGui::TableSetupColumn("c1",ImGuiTableColumnFlags_WidthStretch); @@ -1503,11 +1645,11 @@ void FurnaceGUI::kvsConfig(DivInstrument* ins, bool supportsKVS) { for (int i=0; i<4; i++) { int o=(opCount==4 && ins->type!=DIV_INS_ESFM)?orderedOps[i]:i; if (!(i&1)) ImGui::TableNextRow(); - const char* label="AUTO##OPKVS"; + const char* label=_("AUTO##OPKVS"); if (ins->fm.op[o].kvs==0) { - label="NO##OPKVS"; + label=_("NO##OPKVS"); } else if (ins->fm.op[o].kvs==1) { - label="YES##OPKVS"; + label=_("YES##OPKVS"); } ImGui::TableNextColumn(); ImGui::Text("%d",i+1); @@ -1755,7 +1897,7 @@ void FurnaceGUI::drawMacroEdit(FurnaceGUIMacroDesc& i, int totalFit, float avail ImGui::TableNextRow(); ImGui::TableNextColumn(); ImGui::AlignTextToFramePadding(); - ImGui::Text("Bottom"); + ImGui::Text(_("Bottom")); ImGui::TableNextColumn(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); if (ImGui::InputInt("##MABottom",&i.macro->val[0],1,16)) { PARAMETER @@ -1764,7 +1906,7 @@ void FurnaceGUI::drawMacroEdit(FurnaceGUIMacroDesc& i, int totalFit, float avail } ImGui::TableNextColumn(); - ImGui::Text("Top"); + ImGui::Text(_("Top")); ImGui::TableNextColumn(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); if (ImGui::InputInt("##MATop",&i.macro->val[1],1,16)) { PARAMETER @@ -1772,13 +1914,10 @@ void FurnaceGUI::drawMacroEdit(FurnaceGUIMacroDesc& i, int totalFit, float avail if (i.macro->val[1]>i.max) i.macro->val[1]=i.max; } - /*ImGui::TableNextColumn(); - ImGui::Text("the envelope goes here");*/ - ImGui::TableNextRow(); ImGui::TableNextColumn(); ImGui::AlignTextToFramePadding(); - ImGui::Text("Attack"); + ImGui::Text(_("Attack")); ImGui::TableNextColumn(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); if (CWSliderInt("##MAAR",&i.macro->val[2],0,255)) { PARAMETER @@ -1787,7 +1926,7 @@ void FurnaceGUI::drawMacroEdit(FurnaceGUIMacroDesc& i, int totalFit, float avail } rightClickable ImGui::TableNextColumn(); - ImGui::Text("Sustain"); + ImGui::Text(_("Sustain")); ImGui::TableNextColumn(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); if (CWSliderInt("##MASL",&i.macro->val[5],0,255)) { PARAMETER @@ -1798,7 +1937,7 @@ void FurnaceGUI::drawMacroEdit(FurnaceGUIMacroDesc& i, int totalFit, float avail ImGui::TableNextRow(); ImGui::TableNextColumn(); ImGui::AlignTextToFramePadding(); - ImGui::Text("Hold"); + ImGui::Text(_("Hold")); ImGui::TableNextColumn(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); if (CWSliderInt("##MAHT",&i.macro->val[3],0,255)) { PARAMETER @@ -1807,7 +1946,7 @@ void FurnaceGUI::drawMacroEdit(FurnaceGUIMacroDesc& i, int totalFit, float avail } rightClickable ImGui::TableNextColumn(); - ImGui::Text("SusTime"); + ImGui::Text(_("SusTime")); ImGui::TableNextColumn(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); if (CWSliderInt("##MAST",&i.macro->val[6],0,255)) { PARAMETER @@ -1818,7 +1957,7 @@ void FurnaceGUI::drawMacroEdit(FurnaceGUIMacroDesc& i, int totalFit, float avail ImGui::TableNextRow(); ImGui::TableNextColumn(); ImGui::AlignTextToFramePadding(); - ImGui::Text("Decay"); + ImGui::Text(_("Decay")); ImGui::TableNextColumn(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); if (CWSliderInt("##MADR",&i.macro->val[4],0,255)) { PARAMETER @@ -1827,7 +1966,7 @@ void FurnaceGUI::drawMacroEdit(FurnaceGUIMacroDesc& i, int totalFit, float avail } rightClickable ImGui::TableNextColumn(); - ImGui::Text("SusDecay"); + ImGui::Text(_("SusDecay")); ImGui::TableNextColumn(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); if (CWSliderInt("##MASR",&i.macro->val[7],0,255)) { PARAMETER @@ -1841,7 +1980,7 @@ void FurnaceGUI::drawMacroEdit(FurnaceGUIMacroDesc& i, int totalFit, float avail ImGui::TableNextColumn(); ImGui::AlignTextToFramePadding(); - ImGui::Text("Release"); + ImGui::Text(_("Release")); ImGui::TableNextColumn(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); if (CWSliderInt("##MARR",&i.macro->val[8],0,255)) { PARAMETER @@ -1863,7 +2002,7 @@ void FurnaceGUI::drawMacroEdit(FurnaceGUIMacroDesc& i, int totalFit, float avail ImGui::TableNextRow(); ImGui::TableNextColumn(); ImGui::AlignTextToFramePadding(); - ImGui::Text("Bottom"); + ImGui::Text(_("Bottom")); ImGui::TableNextColumn(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); if (ImGui::InputInt("##MABottom",&i.macro->val[0],1,16)) { PARAMETER @@ -1872,7 +2011,7 @@ void FurnaceGUI::drawMacroEdit(FurnaceGUIMacroDesc& i, int totalFit, float avail } ImGui::TableNextColumn(); - ImGui::Text("Top"); + ImGui::Text(_("Top")); ImGui::TableNextColumn(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); if (ImGui::InputInt("##MATop",&i.macro->val[1],1,16)) { PARAMETER @@ -1886,7 +2025,7 @@ void FurnaceGUI::drawMacroEdit(FurnaceGUIMacroDesc& i, int totalFit, float avail ImGui::TableNextRow(); ImGui::TableNextColumn(); ImGui::AlignTextToFramePadding(); - ImGui::Text("Speed"); + ImGui::Text(_("Speed")); ImGui::TableNextColumn(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); if (CWSliderInt("##MLSpeed",&i.macro->val[11],0,255)) { PARAMETER @@ -1895,7 +2034,7 @@ void FurnaceGUI::drawMacroEdit(FurnaceGUIMacroDesc& i, int totalFit, float avail } rightClickable ImGui::TableNextColumn(); - ImGui::Text("Phase"); + ImGui::Text(_("Phase")); ImGui::TableNextColumn(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); if (CWSliderInt("##MLPhase",&i.macro->val[13],0,1023)) { PARAMETER @@ -1905,7 +2044,7 @@ void FurnaceGUI::drawMacroEdit(FurnaceGUIMacroDesc& i, int totalFit, float avail ImGui::TableNextColumn(); ImGui::AlignTextToFramePadding(); - ImGui::Text("Shape"); + ImGui::Text(_("Shape")); ImGui::TableNextColumn(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); if (CWSliderInt("##MLShape",&i.macro->val[12],0,2,macroLFOShapes[i.macro->val[12]&3])) { PARAMETER @@ -1958,16 +2097,16 @@ void FurnaceGUI::drawMacroEdit(FurnaceGUIMacroDesc& i, int totalFit, float avail if (ImGui::IsItemHovered()) { \ switch (i.macro->open&6) { \ case 0: \ - ImGui::SetTooltip("Macro type: Sequence"); \ + ImGui::SetTooltip(_("Macro type: Sequence")); \ break; \ case 2: \ - ImGui::SetTooltip("Macro type: ADSR"); \ + ImGui::SetTooltip(_("Macro type: ADSR")); \ break; \ case 4: \ - ImGui::SetTooltip("Macro type: LFO"); \ + ImGui::SetTooltip(_("Macro type: LFO")); \ break; \ default: \ - ImGui::SetTooltip("Macro type: What's going on here?"); \ + ImGui::SetTooltip(_("Macro type: What's going on here?")); \ break; \ } \ } \ @@ -1980,14 +2119,14 @@ void FurnaceGUI::drawMacroEdit(FurnaceGUIMacroDesc& i, int totalFit, float avail ImGui::Button(ICON_FA_ELLIPSIS_H "##IMacroSet"); \ popToggleColors(); \ if (ImGui::IsItemHovered()) { \ - ImGui::SetTooltip("Delay/Step Length"); \ + ImGui::SetTooltip(_("Delay/Step Length")); \ } \ if (ImGui::BeginPopupContextItem("IMacroSetP",ImGuiPopupFlags_MouseButtonLeft)) { \ - if (ImGui::InputScalar("Step Length (ticks)##IMacroSpeed",ImGuiDataType_U8,&_x.macro->speed,&_ONE,&_THREE)) { \ + if (ImGui::InputScalar(_("Step Length (ticks)##IMacroSpeed"),ImGuiDataType_U8,&_x.macro->speed,&_ONE,&_THREE)) { \ if (_x.macro->speed<1) _x.macro->speed=1; \ MARK_MODIFIED; \ } \ - if (ImGui::InputScalar("Delay##IMacroDelay",ImGuiDataType_U8,&_x.macro->delay,&_ONE,&_THREE)) { \ + if (ImGui::InputScalar(_("Delay##IMacroDelay"),ImGuiDataType_U8,&_x.macro->delay,&_ONE,&_THREE)) { \ MARK_MODIFIED; \ } \ ImGui::EndPopup(); \ @@ -2000,9 +2139,9 @@ void FurnaceGUI::drawMacroEdit(FurnaceGUIMacroDesc& i, int totalFit, float avail } \ if (ImGui::IsItemHovered()) { \ if (i.macro->open&8) { \ - ImGui::SetTooltip("Release mode: Active (jump to release pos)"); \ + ImGui::SetTooltip(_("Release mode: Active (jump to release pos)")); \ } else { \ - ImGui::SetTooltip("Release mode: Passive (delayed release)"); \ + ImGui::SetTooltip(_("Release mode: Passive (delayed release)")); \ } \ } \ popToggleColors(); \ @@ -2142,7 +2281,7 @@ void FurnaceGUI::drawMacros(std::vector& macros, FurnaceGUI if (i.macro->open&1) { if ((i.macro->open&6)==0) { - ImGui::Text("Length"); + ImGui::Text(_("Length")); ImGui::SameLine(); ImGui::SetNextItemWidth(120.0f*dpiScale); int macroLen=i.macro->len; @@ -2240,7 +2379,7 @@ void FurnaceGUI::drawMacros(std::vector& macros, FurnaceGUI if (m.macro->open&1) { if ((m.macro->open&6)==0) { - ImGui::Text("Length"); + ImGui::Text(_("Length")); ImGui::SameLine(); ImGui::SetNextItemWidth(120.0f*dpiScale); int macroLen=m.macro->len; @@ -2251,7 +2390,7 @@ void FurnaceGUI::drawMacros(std::vector& macros, FurnaceGUI } ImGui::SameLine(); } - ImGui::Text("StepLen"); + ImGui::Text(_("StepLen")); ImGui::SameLine(); ImGui::SetNextItemWidth(120.0f*dpiScale); if (ImGui::InputScalar("##IMacroSpeed",ImGuiDataType_U8,&m.macro->speed,&_ONE,&_THREE)) { @@ -2259,7 +2398,7 @@ void FurnaceGUI::drawMacros(std::vector& macros, FurnaceGUI MARK_MODIFIED; } ImGui::SameLine(); - ImGui::Text("Delay"); + ImGui::Text(_("Delay")); ImGui::SameLine(); ImGui::SetNextItemWidth(120.0f*dpiScale); if (ImGui::InputScalar("##IMacroDelay",ImGuiDataType_U8,&m.macro->delay,&_ONE,&_THREE)) { @@ -2283,10 +2422,10 @@ void FurnaceGUI::drawMacros(std::vector& macros, FurnaceGUI } } } else { - ImGui::Text("The heck? No, this isn't even working correctly..."); + ImGui::Text(_("The heck? No, this isn't even working correctly...")); } } else { - ImGui::Text("The only problem with that selectedMacro is that it's a bug..."); + ImGui::Text(_("The only problem with that selectedMacro is that it's a bug...")); } // goes here @@ -2447,13 +2586,13 @@ void FurnaceGUI::alterSampleMap(int column, int val) { ImGui::Button(ICON_FA_ARROWS "##SysDrag"); \ ImGui::SameLine(); \ if (ImGui::IsKeyDown(ImGuiKey_LeftShift) || ImGui::IsKeyDown(ImGuiKey_RightShift)) { \ - ImGui::Text("(copying)"); \ + ImGui::Text(_("(copying)")); \ } else { \ - ImGui::Text("(swapping)"); \ + ImGui::Text(_("(swapping)")); \ } \ ImGui::EndDragDropSource(); \ } else if (ImGui::IsItemHovered()) { \ - ImGui::SetTooltip("- drag to swap operator\n- shift-drag to copy operator"); \ + ImGui::SetTooltip(_("- drag to swap operator\n- shift-drag to copy operator")); \ } \ if (ImGui::BeginDragDropTarget()) { \ const ImGuiPayload* dragItem=ImGui::AcceptDragDropPayload("FUR_OP"); \ @@ -2486,12 +2625,12 @@ void FurnaceGUI::alterSampleMap(int column, int val) { } void FurnaceGUI::insTabSample(DivInstrument* ins) { - const char* sampleTabName="Sample"; - if (ins->type==DIV_INS_NES) sampleTabName="DPCM"; + const char* sampleTabName=_("Sample"); + if (ins->type==DIV_INS_NES) sampleTabName=_("DPCM"); if (ImGui::BeginTabItem(sampleTabName)) { if (ins->type==DIV_INS_NES && e->song.oldDPCM) { - ImGui::Text("new DPCM features disabled (compatibility)!"); - if (ImGui::Button("click here to enable them.")) { + ImGui::Text(_("new DPCM features disabled (compatibility)!")); + if (ImGui::Button(_("click here to enable them."))) { e->song.oldDPCM=false; MARK_MODIFIED; } @@ -2502,7 +2641,7 @@ void FurnaceGUI::insTabSample(DivInstrument* ins) { String sName; bool wannaOpenSMPopup=false; if (ins->amiga.initSample<0 || ins->amiga.initSample>=e->song.sampleLen) { - sName="none selected"; + sName=_("none selected"); } else { sName=e->song.sample[ins->amiga.initSample]->name; } @@ -2515,16 +2654,16 @@ void FurnaceGUI::insTabSample(DivInstrument* ins) { ins->type==DIV_INS_VRC6 || ins->type==DIV_INS_SU || ins->type==DIV_INS_NDS) { - P(ImGui::Checkbox("Use sample",&ins->amiga.useSample)); + P(ImGui::Checkbox(_("Use sample"),&ins->amiga.useSample)); if (ins->type==DIV_INS_X1_010) { - if (ImGui::InputInt("Sample bank slot##BANKSLOT",&ins->x1_010.bankSlot,1,4)) { PARAMETER + if (ImGui::InputInt(_("Sample bank slot##BANKSLOT"),&ins->x1_010.bankSlot,1,4)) { PARAMETER if (ins->x1_010.bankSlot<0) ins->x1_010.bankSlot=0; if (ins->x1_010.bankSlot>=7) ins->x1_010.bankSlot=7; } } } ImGui::AlignTextToFramePadding(); - ImGui::Text("Sample"); + ImGui::Text(_("Sample")); ImGui::SameLine(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); if (ImGui::BeginCombo("##ISample",sName.c_str())) { @@ -2539,13 +2678,13 @@ void FurnaceGUI::insTabSample(DivInstrument* ins) { } // Wavetable if (ins->type==DIV_INS_AMIGA || ins->type==DIV_INS_SNES || ins->type==DIV_INS_GBA_DMA || ins->type==DIV_INS_GBA_MINMOD) { - const char* useWaveText=ins->type==DIV_INS_AMIGA?"Use wavetable (Amiga/Generic DAC only)":"Use wavetable"; + const char* useWaveText=ins->type==DIV_INS_AMIGA?_("Use wavetable (Amiga/Generic DAC only)"):_("Use wavetable"); ImGui::BeginDisabled(ins->amiga.useNoteMap); P(ImGui::Checkbox(useWaveText,&ins->amiga.useWave)); if (ins->amiga.useWave) { int len=ins->amiga.waveLen+1; int origLen=len; - if (ImGui::InputInt("Width",&len,2,16)) { + if (ImGui::InputInt(_("Width"),&len,2,16)) { if (ins->type==DIV_INS_SNES || ins->type==DIV_INS_GBA_DMA) { if (len<16) len=16; if (len>256) len=256; @@ -2566,7 +2705,7 @@ void FurnaceGUI::insTabSample(DivInstrument* ins) { } // Note map ImGui::BeginDisabled(ins->amiga.useWave); - P(ImGui::Checkbox("Use sample map",&ins->amiga.useNoteMap)); + P(ImGui::Checkbox(_("Use sample map"),&ins->amiga.useNoteMap)); if (ins->amiga.useNoteMap) { if (ImGui::IsMouseClicked(ImGuiMouseButton_Left) && ImGui::IsWindowHovered(ImGuiHoveredFlags_ChildWindows)) sampleMapFocused=false; if (curWindowLast!=GUI_WINDOW_INS_EDIT) sampleMapFocused=false; @@ -2586,15 +2725,15 @@ void FurnaceGUI::insTabSample(DivInstrument* ins) { ImGui::Text("#"); if (ins->type==DIV_INS_NES) { ImGui::TableNextColumn(); - ImGui::Text("pitch"); + ImGui::Text(_("pitch")); ImGui::TableNextColumn(); - ImGui::Text("delta"); + ImGui::Text(_("delta")); } else { ImGui::TableNextColumn(); - ImGui::Text("note"); + ImGui::Text(_("note")); } ImGui::TableNextColumn(); - ImGui::Text("sample name"); + ImGui::Text(_("sample name")); int sampleMapMin=sampleMapSelStart; int sampleMapMax=sampleMapSelEnd; if (sampleMapMin>sampleMapMax) { @@ -2859,7 +2998,7 @@ void FurnaceGUI::insTabSample(DivInstrument* ins) { if (ImGui::BeginPopup("SampleMapUtils",ImGuiWindowFlags_NoMove|ImGuiWindowFlags_AlwaysAutoResize|ImGuiWindowFlags_NoTitleBar|ImGuiWindowFlags_NoSavedSettings)) { if (sampleMapSelStart==sampleMapSelEnd && sampleMapSelStart>=0 && sampleMapSelStart<120) { if (ins->type==DIV_INS_NES) { - if (ImGui::MenuItem("set entire map to this pitch")) { + if (ImGui::MenuItem(_("set entire map to this pitch"))) { if (sampleMapSelStart>=0 && sampleMapSelStart<120) { for (int i=0; i<120; i++) { if (i==sampleMapSelStart) continue; @@ -2867,7 +3006,7 @@ void FurnaceGUI::insTabSample(DivInstrument* ins) { } } } - if (ImGui::MenuItem("set entire map to this delta counter value")) { + if (ImGui::MenuItem(_("set entire map to this delta counter value"))) { if (sampleMapSelStart>=0 && sampleMapSelStart<120) { for (int i=0; i<120; i++) { if (i==sampleMapSelStart) continue; @@ -2876,7 +3015,7 @@ void FurnaceGUI::insTabSample(DivInstrument* ins) { } } } else { - if (ImGui::MenuItem("set entire map to this note")) { + if (ImGui::MenuItem(_("set entire map to this note"))) { if (sampleMapSelStart>=0 && sampleMapSelStart<120) { for (int i=0; i<120; i++) { if (i==sampleMapSelStart) continue; @@ -2885,7 +3024,7 @@ void FurnaceGUI::insTabSample(DivInstrument* ins) { } } } - if (ImGui::MenuItem("set entire map to this sample")) { + if (ImGui::MenuItem(_("set entire map to this sample"))) { if (sampleMapSelStart>=0 && sampleMapSelStart<120) { for (int i=0; i<120; i++) { if (i==sampleMapSelStart) continue; @@ -2895,24 +3034,24 @@ void FurnaceGUI::insTabSample(DivInstrument* ins) { } } if (ins->type==DIV_INS_NES) { - if (ImGui::MenuItem("reset pitches")) { + if (ImGui::MenuItem(_("reset pitches"))) { for (int i=0; i<120; i++) { ins->amiga.noteMap[i].dpcmFreq=15; } } - if (ImGui::MenuItem("clear delta counter values")) { + if (ImGui::MenuItem(_("clear delta counter values"))) { for (int i=0; i<120; i++) { ins->amiga.noteMap[i].dpcmDelta=-1; } } } else { - if (ImGui::MenuItem("reset notes")) { + if (ImGui::MenuItem(_("reset notes"))) { for (int i=0; i<120; i++) { ins->amiga.noteMap[i].freq=i; } } } - if (ImGui::MenuItem("clear map samples")) { + if (ImGui::MenuItem(_("clear map samples"))) { for (int i=0; i<120; i++) { ins->amiga.noteMap[i].map=-1; } @@ -3006,7 +3145,7 @@ void FurnaceGUI::insTabFM(DivInstrument* ins) { } kvsConfig(ins); - if (ImGui::Button("Request from TX81Z")) { + if (ImGui::Button(_("Request from TX81Z"))) { doAction(GUI_ACTION_TX81Z_REQUEST); } /* @@ -3034,7 +3173,7 @@ void FurnaceGUI::insTabFM(DivInstrument* ins) { ImGui::TableNextColumn(); P(CWSliderScalar(FM_NAME(FM_ALG),ImGuiDataType_U8,&ins->fm.alg,&_ZERO,&algMax)); rightClickable if (ins->type==DIV_INS_OPL) { - if (ImGui::Checkbox("Drums",&drums)) { PARAMETER + if (ImGui::Checkbox(_("Drums"),&drums)) { PARAMETER ins->fm.opllPreset=drums?16:0; } } @@ -3085,14 +3224,14 @@ void FurnaceGUI::insTabFM(DivInstrument* ins) { ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); - if (ImGui::BeginCombo("##LLPreset",opllInsNames[presentWhich][ins->fm.opllPreset])) { + if (ImGui::BeginCombo("##LLPreset",_(opllInsNames[presentWhich][ins->fm.opllPreset]))) { if (isPresentCount>1) { if (ImGui::BeginTable("LLPresetList",isPresentCount)) { ImGui::TableNextRow(ImGuiTableRowFlags_Headers); for (int i=0; i<4; i++) { if (!isPresent[i]) continue; ImGui::TableNextColumn(); - ImGui::Text("%s name",opllVariants[i]); + ImGui::Text(_("%s name"),opllVariants[i]); } for (int i=0; i<17; i++) { ImGui::TableNextRow(); @@ -3100,7 +3239,7 @@ void FurnaceGUI::insTabFM(DivInstrument* ins) { if (!isPresent[j]) continue; ImGui::TableNextColumn(); ImGui::PushID(j*17+i); - if (ImGui::Selectable(opllInsNames[j][i])) { + if (ImGui::Selectable(_(opllInsNames[j][i]))) { ins->fm.opllPreset=i; } ImGui::PopID(); @@ -3110,7 +3249,7 @@ void FurnaceGUI::insTabFM(DivInstrument* ins) { } } else { for (int i=0; i<17; i++) { - if (ImGui::Selectable(opllInsNames[presentWhich][i])) { + if (ImGui::Selectable(_(opllInsNames[presentWhich][i]))) { ins->fm.opllPreset=i; } } @@ -3121,8 +3260,8 @@ void FurnaceGUI::insTabFM(DivInstrument* ins) { } case DIV_INS_ESFM: { ImGui::TableNextColumn(); - P(CWSliderScalar(ESFM_LONG_NAME(ESFM_NOISE),ImGuiDataType_U8,&ins->esfm.noise,&_ZERO,&_THREE,esfmNoiseModeNames[ins->esfm.noise&3])); rightClickable - ImGui::TextUnformatted(esfmNoiseModeDescriptions[ins->esfm.noise&3]); + P(CWSliderScalar(ESFM_LONG_NAME(ESFM_NOISE),ImGuiDataType_U8,&ins->esfm.noise,&_ZERO,&_THREE,_(esfmNoiseModeNames[ins->esfm.noise&3]))); rightClickable + ImGui::TextUnformatted(_(esfmNoiseModeDescriptions[ins->esfm.noise&3])); ImGui::TableNextColumn(); ImGui::TableNextColumn(); if (fmPreviewOn) { @@ -3144,9 +3283,9 @@ void FurnaceGUI::insTabFM(DivInstrument* ins) { if (((ins->type==DIV_INS_OPLL || ins->type==DIV_INS_OPL) && ins->fm.opllPreset==16) || ins->type==DIV_INS_OPL_DRUMS) { ins->fm.ops=2; - P(ImGui::Checkbox("Fixed frequency mode",&ins->fm.fixedDrums)); + P(ImGui::Checkbox(_("Fixed frequency mode"),&ins->fm.fixedDrums)); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("when enabled, drums will be set to the specified frequencies, ignoring the note."); + ImGui::SetTooltip(_("when enabled, drums will be set to the specified frequencies, ignoring the note.")); } if (ins->fm.fixedDrums) { int block=0; @@ -3154,15 +3293,15 @@ void FurnaceGUI::insTabFM(DivInstrument* ins) { if (ImGui::BeginTable("fixedDrumSettings",3)) { ImGui::TableNextRow(ImGuiTableRowFlags_Headers); ImGui::TableNextColumn(); - ImGui::Text("Drum"); + ImGui::Text(_("Drum")); ImGui::TableNextColumn(); - ImGui::Text("Block"); + ImGui::Text(_("Block")); ImGui::TableNextColumn(); - ImGui::Text("FreqNum"); + ImGui::Text(_("FreqNum")); - DRUM_FREQ("Kick","##DBlock0","##DFreq0",ins->fm.kickFreq); - DRUM_FREQ("Snare/Hi-hat","##DBlock1","##DFreq1",ins->fm.snareHatFreq); - DRUM_FREQ("Tom/Top","##DBlock2","##DFreq2",ins->fm.tomTopFreq); + DRUM_FREQ(_("Kick"),"##DBlock0","##DFreq0",ins->fm.kickFreq); + DRUM_FREQ(_("Snare/Hi-hat"),"##DBlock1","##DFreq1",ins->fm.snareHatFreq); + DRUM_FREQ(_("Tom/Top"),"##DBlock2","##DFreq2",ins->fm.tomTopFreq); ImGui::EndTable(); } } @@ -3172,9 +3311,9 @@ void FurnaceGUI::insTabFM(DivInstrument* ins) { if (ins->type==DIV_INS_OPLL && ins->fm.opllPreset!=0) willDisplayOps=false; if (!willDisplayOps && ins->type==DIV_INS_OPLL) { ins->fm.op[1].tl&=15; - P(CWSliderScalar("Volume##TL",ImGuiDataType_U8,&ins->fm.op[1].tl,&_FIFTEEN,&_ZERO)); rightClickable + P(CWSliderScalar(_("Volume##TL"),ImGuiDataType_U8,&ins->fm.op[1].tl,&_FIFTEEN,&_ZERO)); rightClickable if (ins->fm.opllPreset==16) { - ImGui::Text("this volume slider only works in compatibility (non-drums) system."); + ImGui::Text(_("this volume slider only works in compatibility (non-drums) system.")); } // update OPLL preset preview @@ -3405,8 +3544,8 @@ void FurnaceGUI::insTabFM(DivInstrument* ins) { ImGui::TextUnformatted(FM_NAME(FM_SSG)); } ImGui::TableNextColumn(); - CENTER_TEXT("Envelope"); - ImGui::TextUnformatted("Envelope"); + CENTER_TEXT(_("Envelope")); + ImGui::TextUnformatted(_("Envelope")); float sliderHeight=32.0f*dpiScale; @@ -3482,9 +3621,9 @@ void FurnaceGUI::insTabFM(DivInstrument* ins) { opNameLabel=fmt::sprintf("%s",oplDrumNames[i]); } else if (ins->type==DIV_INS_OPL && fmOrigin.opllPreset==16) { if (i==1) { - opNameLabel="Kick"; + opNameLabel=_("Kick"); } else { - opNameLabel="Env"; + opNameLabel=_("Env"); } } else { opNameLabel=fmt::sprintf("OP%d",i+1); @@ -3650,18 +3789,18 @@ void FurnaceGUI::insTabFM(DivInstrument* ins) { if (ImGui::Checkbox("AM",&amOn)) { PARAMETER op.am=amOn; } - if (ImGui::Checkbox("Fixed",&egtOn)) { PARAMETER + if (ImGui::Checkbox(_("Fixed"),&egtOn)) { PARAMETER op.egt=egtOn; } if (egtOn) { int block=op.dt; int freqNum=(op.mult<<4)|(op.dvb&15); - if (ImGui::InputInt("Block",&block,1,1)) { + if (ImGui::InputInt(_("Block"),&block,1,1)) { if (block<0) block=0; if (block>7) block=7; op.dt=block; } - if (ImGui::InputInt("FreqNum",&freqNum,1,16)) { + if (ImGui::InputInt(_("FreqNum"),&freqNum,1,16)) { if (freqNum<0) freqNum=0; if (freqNum>255) freqNum=255; op.mult=freqNum>>4; @@ -3688,7 +3827,7 @@ void FurnaceGUI::insTabFM(DivInstrument* ins) { ImGui::SameLine(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); - if (CWSliderScalar("##SSG",ImGuiDataType_U8,&ssgEnv,&_ZERO,&_SEVEN,ssgEnvTypes[ssgEnv])) { PARAMETER + if (CWSliderScalar("##SSG",ImGuiDataType_U8,&ssgEnv,&_ZERO,&_SEVEN,_(ssgEnvTypes[ssgEnv]))) { PARAMETER op.ssgEnv=(op.ssgEnv&8)|(ssgEnv&7); } } @@ -3762,12 +3901,12 @@ void FurnaceGUI::insTabFM(DivInstrument* ins) { if (fixedOn) { int block=(opE.ct>>2)&7; int freqNum=((opE.ct&3)<<8)|((unsigned char)opE.dt); - if (ImGui::InputInt("Block",&block,1,1)) { + if (ImGui::InputInt(_("Block"),&block,1,1)) { if (block<0) block=0; if (block>7) block=7; opE.ct=(opE.ct&(~(7<<2)))|(block<<2); } - if (ImGui::InputInt("FreqNum",&freqNum,1,16)) { + if (ImGui::InputInt(_("FreqNum"),&freqNum,1,16)) { if (freqNum<0) freqNum=0; if (freqNum>1023) freqNum=1023; opE.dt=freqNum&0xff; @@ -3838,7 +3977,7 @@ void FurnaceGUI::insTabFM(DivInstrument* ins) { ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); P(CWSliderScalar("##WS",ImGuiDataType_U8,&op.ws,&_ZERO,&_SEVEN,(ins->type==DIV_INS_OPZ)?opzWaveforms[op.ws&7]:(settings.oplStandardWaveNames?oplWaveformsStandard[op.ws&7]:oplWaveforms[op.ws&7]))); rightClickable if ((ins->type==DIV_INS_OPL || ins->type==DIV_INS_OPL_DRUMS) && ImGui::IsItemHovered()) { - ImGui::SetTooltip("OPL2/3 only (last 4 waveforms are OPL3 only)"); + ImGui::SetTooltip(_("OPL2/3 only (last 4 waveforms are OPL3 only)")); } if (ins->type==DIV_INS_ESFM && fixedOn) { if (ImGui::Checkbox(FM_SHORT_NAME(FM_VIB),&vibOn)) { PARAMETER @@ -3937,12 +4076,12 @@ void FurnaceGUI::insTabFM(DivInstrument* ins) { snprintf(tempID,1024,"%s",oplDrumNames[i]); } else if (ins->type==DIV_INS_OPL && fmOrigin.opllPreset==16) { if (i==1) { - snprintf(tempID,1024,"Envelope 2 (kick only)"); + snprintf(tempID,1024,_("Envelope 2 (kick only)")); } else { - snprintf(tempID,1024,"Envelope"); + snprintf(tempID,1024,_("Envelope")); } } else { - snprintf(tempID,1024,"Operator %d",i+1); + snprintf(tempID,1024,_("Operator %d"),i+1); } float nextCursorPosX=ImGui::GetCursorPosX()+0.5*(ImGui::GetContentRegionAvail().x-ImGui::CalcTextSize(tempID).x-(opsAreMutable?(ImGui::GetStyle().FramePadding.x*2.0f):0.0f)); OP_DRAG_POINT; @@ -4004,12 +4143,12 @@ void FurnaceGUI::insTabFM(DivInstrument* ins) { } ImGui::TableNextColumn(); if (ins->type==DIV_INS_FM) { - ImGui::Text("SSG-EG"); + ImGui::Text(_("SSG-EG")); } else { - ImGui::Text("Waveform"); + ImGui::Text(_("Waveform")); } ImGui::TableNextColumn(); - ImGui::Text("Envelope"); + ImGui::Text(_("Envelope")); ImGui::TableNextColumn(); // A/D/S/R @@ -4105,7 +4244,7 @@ void FurnaceGUI::insTabFM(DivInstrument* ins) { ImGui::SameLine(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); - if (CWSliderScalar("##SSG",ImGuiDataType_U8,&ssgEnv,&_ZERO,&_SEVEN,ssgEnvTypes[ssgEnv])) { PARAMETER + if (CWSliderScalar("##SSG",ImGuiDataType_U8,&ssgEnv,&_ZERO,&_SEVEN,_(ssgEnvTypes[ssgEnv]))) { PARAMETER op.ssgEnv=(op.ssgEnv&8)|(ssgEnv&7); } @@ -4204,7 +4343,7 @@ void FurnaceGUI::insTabFM(DivInstrument* ins) { ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); P(CWSliderScalar("##WS",ImGuiDataType_U8,&op.ws,&_ZERO,&_SEVEN,(ins->type==DIV_INS_OPZ)?opzWaveforms[op.ws&7]:(settings.oplStandardWaveNames?oplWaveformsStandard[op.ws&7]:oplWaveforms[op.ws&7]))); rightClickable if ((ins->type==DIV_INS_OPL || ins->type==DIV_INS_OPL_DRUMS) && ImGui::IsItemHovered()) { - ImGui::SetTooltip("OPL2/3 only (last 4 waveforms are OPL3 only)"); + ImGui::SetTooltip(_("OPL2/3 only (last 4 waveforms are OPL3 only)")); } // params @@ -4254,7 +4393,7 @@ void FurnaceGUI::insTabFM(DivInstrument* ins) { ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); P(CWSliderScalar("##WS",ImGuiDataType_U8,&op.ws,&_ZERO,&_SEVEN,(ins->type==DIV_INS_OPZ)?opzWaveforms[op.ws&7]:(settings.oplStandardWaveNames?oplWaveformsStandard[op.ws&7]:oplWaveforms[op.ws&7]))); rightClickable if ((ins->type==DIV_INS_OPL || ins->type==DIV_INS_OPL_DRUMS) && ImGui::IsItemHovered()) { - ImGui::SetTooltip("OPL2/3 only (last 4 waveforms are OPL3 only)"); + ImGui::SetTooltip(_("OPL2/3 only (last 4 waveforms are OPL3 only)")); } // params @@ -4262,7 +4401,7 @@ void FurnaceGUI::insTabFM(DivInstrument* ins) { if (egtOn) { int block=op.dt; int freqNum=(op.mult<<4)|(op.dvb&15); - ImGui::Text("Block"); + ImGui::Text(_("Block")); ImGui::SameLine(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); ImVec2 cursorAlign=ImGui::GetCursorPos(); @@ -4272,7 +4411,7 @@ void FurnaceGUI::insTabFM(DivInstrument* ins) { op.dt=block; } - ImGui::Text("Freq"); + ImGui::Text(_("Freq")); ImGui::SameLine(); ImGui::SetCursorPos(ImVec2(cursorAlign.x,ImGui::GetCursorPosY())); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); @@ -4301,7 +4440,7 @@ void FurnaceGUI::insTabFM(DivInstrument* ins) { snprintf(tempID,1024,"%s: %%d",FM_NAME(FM_DT2)); P(CWSliderScalar("##DT2",ImGuiDataType_U8,&op.dt2,&_ZERO,&_THREE,tempID)); rightClickable if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Only on YM2151 (OPM)"); + ImGui::SetTooltip(_("Only on YM2151 (OPM)")); } ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); @@ -4324,9 +4463,9 @@ void FurnaceGUI::insTabFM(DivInstrument* ins) { if (opE.fixed) { int block=(opE.ct>>2)&7; int freqNum=((opE.ct&3)<<8)|((unsigned char)opE.dt); - ImGui::Text("Blk"); + ImGui::Text(_("Blk")); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Block"); + ImGui::SetTooltip(_("Block")); } ImGui::SameLine(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); @@ -4337,9 +4476,9 @@ void FurnaceGUI::insTabFM(DivInstrument* ins) { opE.ct=(opE.ct&(~(7<<2)))|(block<<2); } - ImGui::Text("F"); + ImGui::Text(_("F")); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Frequency (F-Num)"); + ImGui::SetTooltip(_("Frequency (F-Num)")); } ImGui::SameLine(); //ImGui::SetCursorPos(ImVec2(cursorAlign.x,ImGui::GetCursorPosY())); @@ -4412,7 +4551,7 @@ void FurnaceGUI::insTabFM(DivInstrument* ins) { op.am=amOn; } ImGui::SameLine(); - if (ImGui::Checkbox("Fixed",&egtOn)) { PARAMETER + if (ImGui::Checkbox(_("Fixed"),&egtOn)) { PARAMETER op.egt=egtOn; } @@ -4646,9 +4785,9 @@ void FurnaceGUI::insTabFM(DivInstrument* ins) { opNameLabel=fmt::sprintf("%s",oplDrumNames[i]); } else if (ins->type==DIV_INS_OPL && fmOrigin.opllPreset==16) { if (i==1) { - opNameLabel="Envelope 2 (kick only)"; + opNameLabel=_("Envelope 2 (kick only)"); } else { - opNameLabel="Envelope"; + opNameLabel=_("Envelope"); } } else { opNameLabel=fmt::sprintf("OP%d",i+1); @@ -4691,7 +4830,7 @@ void FurnaceGUI::insTabFM(DivInstrument* ins) { unsigned char ssgEnv=op.ssgEnv&7; if (ins->type!=DIV_INS_OPL && ins->type!=DIV_INS_OPL_DRUMS && ins->type!=DIV_INS_OPZ && ins->type!=DIV_INS_OPM && ins->type!=DIV_INS_ESFM) { ImGui::SameLine(); - if (ImGui::Checkbox((ins->type==DIV_INS_OPLL)?FM_NAME(FM_EGS):"SSG On",&ssgOn)) { PARAMETER + if (ImGui::Checkbox((ins->type==DIV_INS_OPLL)?FM_NAME(FM_EGS):_("SSG On"),&ssgOn)) { PARAMETER op.ssgEnv=(op.ssgEnv&7)|(ssgOn<<3); } } @@ -4706,7 +4845,7 @@ void FurnaceGUI::insTabFM(DivInstrument* ins) { if (ins->type==DIV_INS_OPZ) { ImGui::SameLine(); bool fixedOn=op.egt; - if (ImGui::Checkbox("Fixed",&fixedOn)) { PARAMETER + if (ImGui::Checkbox(_("Fixed"),&fixedOn)) { PARAMETER op.egt=fixedOn; } } @@ -4851,7 +4990,7 @@ void FurnaceGUI::insTabFM(DivInstrument* ins) { op.dvb=freqNum&15; } rightClickable ImGui::TableNextColumn(); - ImGui::Text("FreqNum"); + ImGui::Text(_("FreqNum")); } else { ImGui::TableNextRow(); ImGui::TableNextColumn(); @@ -4904,7 +5043,7 @@ void FurnaceGUI::insTabFM(DivInstrument* ins) { ImGui::TableNextRow(); ImGui::TableNextColumn(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); - if (CWSliderScalar("##SSG",ImGuiDataType_U8,&ssgEnv,&_ZERO,&_SEVEN,ssgEnvTypes[ssgEnv])) { PARAMETER + if (CWSliderScalar("##SSG",ImGuiDataType_U8,&ssgEnv,&_ZERO,&_SEVEN,_(ssgEnvTypes[ssgEnv]))) { PARAMETER op.ssgEnv=(op.ssgEnv&8)|(ssgEnv&7); } rightClickable ImGui::TableNextColumn(); @@ -4926,7 +5065,7 @@ void FurnaceGUI::insTabFM(DivInstrument* ins) { opE.ct=(opE.ct&(~(7<<2)))|(block<<2); } ImGui::TableNextColumn(); - ImGui::Text("Block"); + ImGui::Text(_("Block")); ImGui::TableNextRow(); ImGui::TableNextColumn(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); @@ -4937,7 +5076,7 @@ void FurnaceGUI::insTabFM(DivInstrument* ins) { opE.ct=(opE.ct&(~3))|(freqNum>>8); } ImGui::TableNextColumn(); - ImGui::Text("FreqNum"); + ImGui::Text(_("FreqNum")); } else { ImGui::TableNextRow(); ImGui::TableNextColumn(); @@ -4962,7 +5101,7 @@ void FurnaceGUI::insTabFM(DivInstrument* ins) { ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); P(CWSliderScalar("##WS",ImGuiDataType_U8,&op.ws,&_ZERO,&_SEVEN,(ins->type==DIV_INS_OPZ)?opzWaveforms[op.ws&7]:(settings.oplStandardWaveNames?oplWaveformsStandard[op.ws&7]:oplWaveforms[op.ws&7]))); rightClickable if ((ins->type==DIV_INS_OPL || ins->type==DIV_INS_OPL_DRUMS) && ImGui::IsItemHovered()) { - ImGui::SetTooltip("OPL2/3 only (last 4 waveforms are OPL3 only)"); + ImGui::SetTooltip(_("OPL2/3 only (last 4 waveforms are OPL3 only)")); } ImGui::TableNextColumn(); ImGui::Text("%s",FM_NAME(FM_WS)); @@ -5061,15 +5200,15 @@ void FurnaceGUI::drawInsEdit() { } else { ImGui::SetNextWindowSizeConstraints(ImVec2(440.0f*dpiScale,400.0f*dpiScale),ImVec2(canvasW,canvasH)); } - if (ImGui::Begin("Instrument Editor",&insEditOpen,globalWinFlags|(settings.allowEditDocking?0:ImGuiWindowFlags_NoDocking))) { + if (ImGui::Begin("Instrument Editor",&insEditOpen,globalWinFlags|(settings.allowEditDocking?0:ImGuiWindowFlags_NoDocking),_("Instrument Editor"))) { if (curIns==-2) { ImGui::SetCursorPosY(ImGui::GetCursorPosY()+(ImGui::GetContentRegionAvail().y-ImGui::GetFrameHeightWithSpacing()+ImGui::GetStyle().ItemSpacing.y)*0.5f); - CENTER_TEXT("waiting..."); - ImGui::Text("waiting..."); + CENTER_TEXT(_("waiting...")); + ImGui::Text(_("waiting...")); } else if (curIns<0 || curIns>=(int)e->song.ins.size()) { ImGui::SetCursorPosY(ImGui::GetCursorPosY()+(ImGui::GetContentRegionAvail().y-ImGui::GetFrameHeightWithSpacing()*(e->song.ins.empty()?2.0f:3.0f)+ImGui::GetStyle().ItemSpacing.y)*0.5f); - CENTER_TEXT("no instrument selected"); - ImGui::Text("no instrument selected"); + CENTER_TEXT(_("no instrument selected")); + ImGui::Text(_("no instrument selected")); if (ImGui::BeginTable("noAssetCenter",3)) { ImGui::TableSetupColumn("c0",ImGuiTableColumnFlags_WidthStretch,0.5f); ImGui::TableSetupColumn("c1",ImGuiTableColumnFlags_WidthFixed); @@ -5081,7 +5220,7 @@ void FurnaceGUI::drawInsEdit() { if (e->song.ins.size()>0) { ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); - if (ImGui::BeginCombo("##InsSelect","select one...")) { + if (ImGui::BeginCombo("##InsSelect",_("select one..."))) { String name; for (size_t i=0; isong.ins.size(); i++) { name=fmt::sprintf("%.2X: %s##_INSS%d",i,e->song.ins[i]->name,i); @@ -5094,16 +5233,16 @@ void FurnaceGUI::drawInsEdit() { ImGui::EndCombo(); } ImGui::AlignTextToFramePadding(); - ImGui::TextUnformatted("or"); + ImGui::TextUnformatted(_("or")); ImGui::SameLine(); } - if (ImGui::Button("Open")) { + if (ImGui::Button(_("Open"))) { doAction(GUI_ACTION_INS_LIST_OPEN); } ImGui::SameLine(); - ImGui::TextUnformatted("or"); + ImGui::TextUnformatted(_("or")); ImGui::SameLine(); - if (ImGui::Button("Create New")) { + if (ImGui::Button(_("Create New"))) { doAction(GUI_ACTION_INS_LIST_ADD); } @@ -5146,7 +5285,7 @@ void FurnaceGUI::drawInsEdit() { } ImGui::TableNextColumn(); - ImGui::Text("Name"); + ImGui::Text(_("Name")); ImGui::TableNextColumn(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); @@ -5162,24 +5301,24 @@ void FurnaceGUI::drawInsEdit() { doAction(GUI_ACTION_INS_LIST_OPEN_REPLACE); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Open"); + ImGui::SetTooltip(_("Open")); } ImGui::SameLine(); if (ImGui::Button(ICON_FA_FLOPPY_O "##IESave")) { doAction(GUI_ACTION_INS_LIST_SAVE); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Save"); + ImGui::SetTooltip(_("Save")); } if (ImGui::BeginPopupContextItem("InsSaveFormats",ImGuiMouseButton_Right)) { - if (ImGui::MenuItem("save as .dmp...")) { + if (ImGui::MenuItem(_("save as .dmp..."))) { doAction(GUI_ACTION_INS_LIST_SAVE_DMP); } ImGui::EndPopup(); } ImGui::TableNextColumn(); - ImGui::Text("Type"); + ImGui::Text(_("Type")); ImGui::TableNextColumn(); int insType=ins->type; @@ -5192,7 +5331,7 @@ void FurnaceGUI::drawInsEdit() { } pushWarningColor(warnType,warnType && failedNoteOn); - if (ImGui::BeginCombo("##Type",(insType>=DIV_INS_MAX)?"Unknown":insTypes[insType][0])) { + if (ImGui::BeginCombo("##Type",(insType>=DIV_INS_MAX)?_("Unknown"):_(insTypes[insType][0]))) { std::vector insTypeList; if (settings.displayAllInsTypes) { for (int i=0; insTypes[i][0]; i++) { @@ -5251,7 +5390,7 @@ void FurnaceGUI::drawInsEdit() { ImGui::EndCombo(); } else if (warnType) { if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("none of the currently present chips are able to play this instrument type!"); + ImGui::SetTooltip(_("none of the currently present chips are able to play this instrument type!")); } } popWarningColor(); @@ -5271,7 +5410,7 @@ void FurnaceGUI::drawInsEdit() { insTabFM(ins); if (ins->type!=DIV_INS_ESFM) { - if (ImGui::BeginTabItem("FM Macros")) { + if (ImGui::BeginTabItem(_("FM Macros"))) { if (ins->type==DIV_INS_OPLL) { macroList.push_back(FurnaceGUIMacroDesc(FM_NAME(FM_SUS),&ins->std.algMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); macroList.push_back(FurnaceGUIMacroDesc(FM_NAME(FM_FB),&ins->std.fbMacro,0,7,96,uiColors[GUI_COLOR_MACRO_OTHER])); @@ -5293,21 +5432,21 @@ void FurnaceGUI::drawInsEdit() { } if (ins->type==DIV_INS_FM) { - macroList.push_back(FurnaceGUIMacroDesc("LFO Speed",&ins->std.ex3Macro,0,8,96,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("LFO Speed"),&ins->std.ex3Macro,0,8,96,uiColors[GUI_COLOR_MACRO_OTHER])); } if (ins->type==DIV_INS_OPZ || ins->type==DIV_INS_OPM) { - macroList.push_back(FurnaceGUIMacroDesc("AM Depth",&ins->std.ex1Macro,0,127,128,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("PM Depth",&ins->std.ex2Macro,0,127,128,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("LFO Speed",&ins->std.ex3Macro,0,255,128,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("LFO Shape",&ins->std.waveMacro,0,3,48,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,macroLFOWaves)); + macroList.push_back(FurnaceGUIMacroDesc(_("AM Depth"),&ins->std.ex1Macro,0,127,128,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("PM Depth"),&ins->std.ex2Macro,0,127,128,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("LFO Speed"),&ins->std.ex3Macro,0,255,128,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("LFO Shape"),&ins->std.waveMacro,0,3,48,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,macroLFOWaves)); } if (ins->type==DIV_INS_FM || ins->type==DIV_INS_OPM) { - macroList.push_back(FurnaceGUIMacroDesc("OpMask",&ins->std.ex4Macro,0,4,128,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,fmOperatorBits)); + macroList.push_back(FurnaceGUIMacroDesc(_("OpMask"),&ins->std.ex4Macro,0,4,128,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,fmOperatorBits)); } else if (ins->type==DIV_INS_OPZ) { - macroList.push_back(FurnaceGUIMacroDesc("AM Depth 2",&ins->std.ex5Macro,0,127,128,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("PM Depth 2",&ins->std.ex6Macro,0,127,128,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("LFO2 Speed",&ins->std.ex7Macro,0,255,128,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("LFO2 Shape",&ins->std.ex8Macro,0,3,48,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,macroLFOWaves)); + macroList.push_back(FurnaceGUIMacroDesc(_("AM Depth 2"),&ins->std.ex5Macro,0,127,128,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("PM Depth 2"),&ins->std.ex6Macro,0,127,128,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("LFO2 Speed"),&ins->std.ex7Macro,0,255,128,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("LFO2 Shape"),&ins->std.ex8Macro,0,3,48,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,macroLFOWaves)); } drawMacros(macroList,macroEditStateFM); ImGui::EndTabItem(); @@ -5316,9 +5455,9 @@ void FurnaceGUI::drawInsEdit() { for (int i=0; itype==DIV_INS_OPL_DRUMS) { if (i>0) break; - snprintf(label,31,"Operator Macros"); + snprintf(label,31,_("Operator Macros")); } else { - snprintf(label,31,"OP%d Macros",i+1); + snprintf(label,31,_("OP%d Macros"),i+1); } if (ImGui::BeginTabItem(label)) { ImGui::PushID(i); @@ -5376,11 +5515,11 @@ void FurnaceGUI::drawInsEdit() { macroList.push_back(FurnaceGUIMacroDesc(ESFM_NAME(ESFM_OUTLVL),&ins->std.opMacros[ordi].egtMacro,0,7,64,uiColors[GUI_COLOR_MACRO_OTHER])); macroList.push_back(FurnaceGUIMacroDesc(ESFM_NAME(ESFM_MODIN),&ins->std.opMacros[ordi].d2rMacro,0,7,64,uiColors[GUI_COLOR_MACRO_OTHER])); if (ins->esfm.op[ordi].fixed) { - macroList.push_back(FurnaceGUIMacroDesc("Block",&ins->std.opMacros[ordi].ssgMacro,0,7,64,uiColors[GUI_COLOR_MACRO_OTHER],true)); - macroList.push_back(FurnaceGUIMacroDesc("FreqNum",&ins->std.opMacros[ordi].dtMacro,0,1023,160,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Block"),&ins->std.opMacros[ordi].ssgMacro,0,7,64,uiColors[GUI_COLOR_MACRO_OTHER],true)); + macroList.push_back(FurnaceGUIMacroDesc(_("FreqNum"),&ins->std.opMacros[ordi].dtMacro,0,1023,160,uiColors[GUI_COLOR_MACRO_OTHER])); } else { - macroList.push_back(FurnaceGUIMacroDesc("Op. Arpeggio",&ins->std.opMacros[ordi].ssgMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.opMacros[ordi].ssgMacro.val,true)); - macroList.push_back(FurnaceGUIMacroDesc("Op. Pitch",&ins->std.opMacros[ordi].dtMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode,NULL,false,NULL,false,NULL,false,true)); + macroList.push_back(FurnaceGUIMacroDesc(_("Op. Arpeggio"),&ins->std.opMacros[ordi].ssgMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.opMacros[ordi].ssgMacro.val,true)); + macroList.push_back(FurnaceGUIMacroDesc(_("Op. Pitch"),&ins->std.opMacros[ordi].dtMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode,NULL,false,NULL,false,NULL,false,true)); } macroList.push_back(FurnaceGUIMacroDesc(FM_NAME(FM_AM),&ins->std.opMacros[ordi].amMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); @@ -5389,7 +5528,7 @@ void FurnaceGUI::drawInsEdit() { macroList.push_back(FurnaceGUIMacroDesc(FM_NAME(FM_DVB),&ins->std.opMacros[ordi].dvbMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); macroList.push_back(FurnaceGUIMacroDesc(FM_NAME(FM_KSR),&ins->std.opMacros[ordi].ksrMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); macroList.push_back(FurnaceGUIMacroDesc(FM_NAME(FM_SUS),&ins->std.opMacros[ordi].susMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); - macroList.push_back(FurnaceGUIMacroDesc("Op. Panning",&ins->std.opMacros[ordi].rsMacro,0,2,40,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,panBits)); + macroList.push_back(FurnaceGUIMacroDesc(_("Op. Panning"),&ins->std.opMacros[ordi].rsMacro,0,2,40,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,panBits)); } else { macroList.push_back(FurnaceGUIMacroDesc(FM_NAME(FM_TL),&ins->std.opMacros[ordi].tlMacro,0,maxTl,128,uiColors[GUI_COLOR_MACRO_OTHER])); macroList.push_back(FurnaceGUIMacroDesc(FM_NAME(FM_AR),&ins->std.opMacros[ordi].arMacro,0,maxArDr,64,uiColors[GUI_COLOR_MACRO_OTHER])); @@ -5416,9 +5555,9 @@ void FurnaceGUI::drawInsEdit() { } } if (ins->type==DIV_INS_GB) if (ImGui::BeginTabItem("Game Boy")) { - P(ImGui::Checkbox("Use software envelope",&ins->gb.softEnv)); - P(ImGui::Checkbox("Initialize envelope on every note",&ins->gb.alwaysInit)); - P(ImGui::Checkbox("Double wave length (GBA only)",&ins->gb.doubleWave)); + P(ImGui::Checkbox(_("Use software envelope"),&ins->gb.softEnv)); + P(ImGui::Checkbox(_("Initialize envelope on every note"),&ins->gb.alwaysInit)); + P(ImGui::Checkbox(_("Double wave length (GBA only)"),&ins->gb.doubleWave)); ImGui::BeginDisabled(ins->gb.softEnv); if (ImGui::BeginTable("GBParams",2)) { @@ -5433,36 +5572,36 @@ void FurnaceGUI::drawInsEdit() { ImGui::TableNextRow(); ImGui::TableNextColumn(); - ImGui::Text("Volume"); + ImGui::Text(_("Volume")); ImGui::TableNextColumn(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); P(CWSliderScalar("##GBVolume",ImGuiDataType_U8,&ins->gb.envVol,&_ZERO,&_FIFTEEN)); rightClickable ImGui::TableNextRow(); ImGui::TableNextColumn(); - ImGui::Text("Length"); + ImGui::Text(_("Length")); ImGui::TableNextColumn(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); P(CWSliderScalar("##GBEnvLen",ImGuiDataType_U8,&ins->gb.envLen,&_ZERO,&_SEVEN)); rightClickable ImGui::TableNextRow(); ImGui::TableNextColumn(); - ImGui::Text("Sound Length"); + ImGui::Text(_("Sound Length")); ImGui::TableNextColumn(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); - P(CWSliderScalar("##GBSoundLen",ImGuiDataType_U8,&ins->gb.soundLen,&_ZERO,&_SIXTY_FOUR,ins->gb.soundLen>63?"Infinity":"%d")); rightClickable + P(CWSliderScalar("##GBSoundLen",ImGuiDataType_U8,&ins->gb.soundLen,&_ZERO,&_SIXTY_FOUR,ins->gb.soundLen>63?_("Infinity"):"%d")); rightClickable ImGui::TableNextRow(); ImGui::TableNextColumn(); - ImGui::Text("Direction"); + ImGui::Text(_("Direction")); ImGui::TableNextColumn(); bool goesUp=ins->gb.envDir; - if (ImGui::RadioButton("Up",goesUp)) { PARAMETER + if (ImGui::RadioButton(_("Up"),goesUp)) { PARAMETER goesUp=true; ins->gb.envDir=goesUp; } ImGui::SameLine(); - if (ImGui::RadioButton("Down",!goesUp)) { PARAMETER + if (ImGui::RadioButton(_("Down"),!goesUp)) { PARAMETER goesUp=false; ins->gb.envDir=goesUp; } @@ -5478,7 +5617,7 @@ void FurnaceGUI::drawInsEdit() { if (ImGui::BeginChild("HWSeq",ImGui::GetContentRegionAvail(),true,ImGuiWindowFlags_MenuBar)) { ImGui::BeginMenuBar(); - ImGui::Text("Hardware Sequence"); + ImGui::Text(_("Hardware Sequence")); ImGui::EndMenuBar(); if (ins->gb.hwSeqLen>0) if (ImGui::BeginTable("HWSeqList",3)) { @@ -5488,11 +5627,11 @@ void FurnaceGUI::drawInsEdit() { int curFrame=0; ImGui::TableNextRow(ImGuiTableRowFlags_Headers); ImGui::TableNextColumn(); - ImGui::Text("Tick"); + ImGui::Text(_("Tick")); ImGui::TableNextColumn(); - ImGui::Text("Command"); + ImGui::Text(_("Command")); ImGui::TableNextColumn(); - ImGui::Text("Move/Remove"); + ImGui::Text(_("Move/Remove")); for (int i=0; igb.hwSeqLen; i++) { ImGui::TableNextRow(); ImGui::TableNextColumn(); @@ -5504,7 +5643,7 @@ void FurnaceGUI::drawInsEdit() { } int cmd=ins->gb.hwSeq[i].cmd; ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); - if (ImGui::Combo("##HWSeqCmd",&cmd,gbHWSeqCmdTypes,DivInstrumentGB::DIV_GB_HWCMD_MAX)) { + if (ImGui::Combo("##HWSeqCmd",&cmd,LocalizedComboGetter,gbHWSeqCmdTypes,DivInstrumentGB::DIV_GB_HWCMD_MAX)) { if (ins->gb.hwSeq[i].cmd!=cmd) { ins->gb.hwSeq[i].cmd=cmd; ins->gb.hwSeq[i].data=0; @@ -5518,21 +5657,21 @@ void FurnaceGUI::drawInsEdit() { int hwsLen=ins->gb.hwSeq[i].data&7; int hwsSoundLen=ins->gb.hwSeq[i].data>>8; - if (CWSliderInt("Volume",&hwsVol,0,15)) { + if (CWSliderInt(_("Volume"),&hwsVol,0,15)) { somethingChanged=true; } - if (CWSliderInt("Env Length",&hwsLen,0,7)) { + if (CWSliderInt(_("Env Length"),&hwsLen,0,7)) { somethingChanged=true; } - if (CWSliderInt("Sound Length",&hwsSoundLen,0,64,hwsSoundLen>63?"Infinity":"%d")) { + if (CWSliderInt(_("Sound Length"),&hwsSoundLen,0,64,hwsSoundLen>63?_("Infinity"):"%d")) { somethingChanged=true; } - if (ImGui::RadioButton("Up",hwsDir)) { PARAMETER + if (ImGui::RadioButton(_("Up"),hwsDir)) { PARAMETER hwsDir=true; somethingChanged=true; } ImGui::SameLine(); - if (ImGui::RadioButton("Down",!hwsDir)) { PARAMETER + if (ImGui::RadioButton(_("Down"),!hwsDir)) { PARAMETER hwsDir=false; somethingChanged=true; } @@ -5548,19 +5687,19 @@ void FurnaceGUI::drawInsEdit() { int hwsSpeed=(ins->gb.hwSeq[i].data&0x70)>>4; bool hwsDir=ins->gb.hwSeq[i].data&8; - if (CWSliderInt("Shift",&hwsShift,0,7)) { + if (CWSliderInt(_("Shift"),&hwsShift,0,7)) { somethingChanged=true; } - if (CWSliderInt("Speed",&hwsSpeed,0,7)) { + if (CWSliderInt(_("Speed"),&hwsSpeed,0,7)) { somethingChanged=true; } - if (ImGui::RadioButton("Up",!hwsDir)) { PARAMETER + if (ImGui::RadioButton(_("Up"),!hwsDir)) { PARAMETER hwsDir=false; somethingChanged=true; } ImGui::SameLine(); - if (ImGui::RadioButton("Down",hwsDir)) { PARAMETER + if (ImGui::RadioButton(_("Down"),hwsDir)) { PARAMETER hwsDir=true; somethingChanged=true; } @@ -5575,7 +5714,7 @@ void FurnaceGUI::drawInsEdit() { int len=ins->gb.hwSeq[i].data+1; curFrame+=ins->gb.hwSeq[i].data+1; - if (ImGui::InputInt("Ticks",&len,1,4)) { + if (ImGui::InputInt(_("Ticks"),&len,1,4)) { if (len<1) len=1; if (len>255) len=256; somethingChanged=true; @@ -5594,7 +5733,7 @@ void FurnaceGUI::drawInsEdit() { case DivInstrumentGB::DIV_GB_HWCMD_LOOP_REL: { int pos=ins->gb.hwSeq[i].data; - if (ImGui::InputInt("Position",&pos,1,1)) { + if (ImGui::InputInt(_("Position"),&pos,1,1)) { if (pos<0) pos=0; if (pos>(ins->gb.hwSeqLen-1)) pos=(ins->gb.hwSeqLen-1); somethingChanged=true; @@ -5670,28 +5809,28 @@ void FurnaceGUI::drawInsEdit() { } if (ins->type==DIV_INS_C64 || ins->type==DIV_INS_SID2) if (ImGui::BeginTabItem((ins->type==DIV_INS_SID2)?"SID2":"C64")) { ImGui::AlignTextToFramePadding(); - ImGui::Text("Waveform"); + ImGui::Text(_("Waveform")); ImGui::SameLine(); pushToggleColors(ins->c64.triOn); - if (ImGui::Button("tri")) { PARAMETER + if (ImGui::Button(_("tri"))) { PARAMETER ins->c64.triOn=!ins->c64.triOn; } popToggleColors(); ImGui::SameLine(); pushToggleColors(ins->c64.sawOn); - if (ImGui::Button("saw")) { PARAMETER + if (ImGui::Button(_("saw"))) { PARAMETER ins->c64.sawOn=!ins->c64.sawOn; } popToggleColors(); ImGui::SameLine(); pushToggleColors(ins->c64.pulseOn); - if (ImGui::Button("pulse")) { PARAMETER + if (ImGui::Button(_("pulse"))) { PARAMETER ins->c64.pulseOn=!ins->c64.pulseOn; } popToggleColors(); ImGui::SameLine(); pushToggleColors(ins->c64.noiseOn); - if (ImGui::Button("noise")) { PARAMETER + if (ImGui::Button(_("noise"))) { PARAMETER ins->c64.noiseOn=!ins->c64.noiseOn; } popToggleColors(); @@ -5719,8 +5858,8 @@ void FurnaceGUI::drawInsEdit() { CENTER_TEXT("R"); ImGui::TextUnformatted("R"); ImGui::TableNextColumn(); - CENTER_TEXT("Envelope"); - ImGui::TextUnformatted("Envelope"); + CENTER_TEXT(_("Envelope")); + ImGui::TextUnformatted(_("Envelope")); ImGui::TableNextRow(); ImGui::TableNextColumn(); @@ -5737,81 +5876,81 @@ void FurnaceGUI::drawInsEdit() { ImGui::EndTable(); } - P(CWSliderScalar("Duty",ImGuiDataType_U16,&ins->c64.duty,&_ZERO,&_FOUR_THOUSAND_NINETY_FIVE)); rightClickable + P(CWSliderScalar(_("Duty"),ImGuiDataType_U16,&ins->c64.duty,&_ZERO,&_FOUR_THOUSAND_NINETY_FIVE)); rightClickable bool ringMod=ins->c64.ringMod; - if (ImGui::Checkbox("Ring Modulation",&ringMod)) { PARAMETER + if (ImGui::Checkbox(_("Ring Modulation"),&ringMod)) { PARAMETER ins->c64.ringMod=ringMod; } bool oscSync=ins->c64.oscSync; - if (ImGui::Checkbox("Oscillator Sync",&oscSync)) { PARAMETER + if (ImGui::Checkbox(_("Oscillator Sync"),&oscSync)) { PARAMETER ins->c64.oscSync=oscSync; } - P(ImGui::Checkbox("Enable filter",&ins->c64.toFilter)); - P(ImGui::Checkbox("Initialize filter",&ins->c64.initFilter)); + P(ImGui::Checkbox(_("Enable filter"),&ins->c64.toFilter)); + P(ImGui::Checkbox(_("Initialize filter"),&ins->c64.initFilter)); if (ins->type==DIV_INS_SID2) { - P(CWSliderScalar("Cutoff",ImGuiDataType_U16,&ins->c64.cut,&_ZERO,&_FOUR_THOUSAND_NINETY_FIVE)); rightClickable - P(CWSliderScalar("Resonance",ImGuiDataType_U8,&ins->c64.res,&_ZERO,&_TWO_HUNDRED_FIFTY_FIVE)); rightClickable + P(CWSliderScalar(_("Cutoff"),ImGuiDataType_U16,&ins->c64.cut,&_ZERO,&_FOUR_THOUSAND_NINETY_FIVE)); rightClickable + P(CWSliderScalar(_("Resonance"),ImGuiDataType_U8,&ins->c64.res,&_ZERO,&_TWO_HUNDRED_FIFTY_FIVE)); rightClickable } else { - P(CWSliderScalar("Cutoff",ImGuiDataType_U16,&ins->c64.cut,&_ZERO,&_TWO_THOUSAND_FORTY_SEVEN)); rightClickable - P(CWSliderScalar("Resonance",ImGuiDataType_U8,&ins->c64.res,&_ZERO,&_FIFTEEN)); rightClickable + P(CWSliderScalar(_("Cutoff"),ImGuiDataType_U16,&ins->c64.cut,&_ZERO,&_TWO_THOUSAND_FORTY_SEVEN)); rightClickable + P(CWSliderScalar(_("Resonance"),ImGuiDataType_U8,&ins->c64.res,&_ZERO,&_FIFTEEN)); rightClickable } ImGui::AlignTextToFramePadding(); - ImGui::Text("Filter Mode"); + ImGui::Text(_("Filter Mode")); ImGui::SameLine(); pushToggleColors(ins->c64.lp); - if (ImGui::Button("low")) { PARAMETER + if (ImGui::Button(_("low"))) { PARAMETER ins->c64.lp=!ins->c64.lp; } popToggleColors(); ImGui::SameLine(); pushToggleColors(ins->c64.bp); - if (ImGui::Button("band")) { PARAMETER + if (ImGui::Button(_("band"))) { PARAMETER ins->c64.bp=!ins->c64.bp; } popToggleColors(); ImGui::SameLine(); pushToggleColors(ins->c64.hp); - if (ImGui::Button("high")) { PARAMETER + if (ImGui::Button(_("high"))) { PARAMETER ins->c64.hp=!ins->c64.hp; } popToggleColors(); if (ins->type!=DIV_INS_SID2) { ImGui::SameLine(); pushToggleColors(ins->c64.ch3off); - if (ImGui::Button("ch3off")) { PARAMETER + if (ImGui::Button(_("ch3off"))) { PARAMETER ins->c64.ch3off=!ins->c64.ch3off; } popToggleColors(); } if (ins->type==DIV_INS_SID2) { - P(CWSliderScalar("Noise Mode",ImGuiDataType_U8,&ins->sid2.noiseMode,&_ZERO,&_THREE)); - P(CWSliderScalar("Wave Mix Mode",ImGuiDataType_U8,&ins->sid2.mixMode,&_ZERO,&_THREE,sid2WaveMixModes[ins->sid2.mixMode&3])); + P(CWSliderScalar(_("Noise Mode"),ImGuiDataType_U8,&ins->sid2.noiseMode,&_ZERO,&_THREE)); + P(CWSliderScalar(_("Wave Mix Mode"),ImGuiDataType_U8,&ins->sid2.mixMode,&_ZERO,&_THREE,sid2WaveMixModes[ins->sid2.mixMode&3])); } - if (ImGui::Checkbox("Absolute Cutoff Macro",&ins->c64.filterIsAbs)) { + if (ImGui::Checkbox(_("Absolute Cutoff Macro"),&ins->c64.filterIsAbs)) { ins->std.algMacro.vZoom=-1; PARAMETER; } - if (ImGui::Checkbox("Absolute Duty Macro",&ins->c64.dutyIsAbs)) { + if (ImGui::Checkbox(_("Absolute Duty Macro"),&ins->c64.dutyIsAbs)) { ins->std.dutyMacro.vZoom=-1; PARAMETER; } if (ins->type!=DIV_INS_SID2) { - P(ImGui::Checkbox("Don't test before new note",&ins->c64.noTest)); + P(ImGui::Checkbox(_("Don't test before new note"),&ins->c64.noTest)); } ImGui::EndTabItem(); } if (ins->type==DIV_INS_SU) if (ImGui::BeginTabItem("Sound Unit")) { - P(ImGui::Checkbox("Switch roles of frequency and phase reset timer",&ins->su.switchRoles)); + P(ImGui::Checkbox(_("Switch roles of frequency and phase reset timer"),&ins->su.switchRoles)); if (ImGui::BeginChild("HWSeqSU",ImGui::GetContentRegionAvail(),true,ImGuiWindowFlags_MenuBar)) { ImGui::BeginMenuBar(); - ImGui::Text("Hardware Sequence"); + ImGui::Text(_("Hardware Sequence")); ImGui::EndMenuBar(); if (ins->su.hwSeqLen>0) if (ImGui::BeginTable("HWSeqListSU",3)) { @@ -5821,11 +5960,11 @@ void FurnaceGUI::drawInsEdit() { int curFrame=0; ImGui::TableNextRow(ImGuiTableRowFlags_Headers); ImGui::TableNextColumn(); - ImGui::Text("Tick"); + ImGui::Text(_("Tick")); ImGui::TableNextColumn(); - ImGui::Text("Command"); + ImGui::Text(_("Command")); ImGui::TableNextColumn(); - ImGui::Text("Move/Remove"); + ImGui::Text(_("Move/Remove")); for (int i=0; isu.hwSeqLen; i++) { ImGui::TableNextRow(); ImGui::TableNextColumn(); @@ -5837,7 +5976,7 @@ void FurnaceGUI::drawInsEdit() { } int cmd=ins->su.hwSeq[i].cmd; ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); - if (ImGui::Combo("##HWSeqCmd",&cmd,suHWSeqCmdTypes,DivInstrumentSoundUnit::DIV_SU_HWCMD_MAX)) { + if (ImGui::Combo("##HWSeqCmd",&cmd,LocalizedComboGetter,suHWSeqCmdTypes,DivInstrumentSoundUnit::DIV_SU_HWCMD_MAX)) { if (ins->su.hwSeq[i].cmd!=cmd) { ins->su.hwSeq[i].cmd=cmd; ins->su.hwSeq[i].val=0; @@ -5855,31 +5994,31 @@ void FurnaceGUI::drawInsEdit() { bool swLoop=ins->su.hwSeq[i].val&64; bool swInvert=ins->su.hwSeq[i].val&128; - if (ImGui::InputInt("Period",&swPeriod,1,16)) { + if (ImGui::InputInt(_("Period"),&swPeriod,1,16)) { if (swPeriod<0) swPeriod=0; if (swPeriod>65535) swPeriod=65535; somethingChanged=true; } - if (CWSliderInt("Amount",&swVal,0,31)) { + if (CWSliderInt(_("Amount"),&swVal,0,31)) { somethingChanged=true; } - if (CWSliderInt("Bound",&swBound,0,255)) { + if (CWSliderInt(_("Bound"),&swBound,0,255)) { somethingChanged=true; } - if (ImGui::RadioButton("Up",swDir)) { PARAMETER + if (ImGui::RadioButton(_("Up"),swDir)) { PARAMETER swDir=true; somethingChanged=true; } ImGui::SameLine(); - if (ImGui::RadioButton("Down",!swDir)) { PARAMETER + if (ImGui::RadioButton(_("Down"),!swDir)) { PARAMETER swDir=false; somethingChanged=true; } - if (ImGui::Checkbox("Loop",&swLoop)) { PARAMETER + if (ImGui::Checkbox(_("Loop"),&swLoop)) { PARAMETER somethingChanged=true; } ImGui::SameLine(); - if (ImGui::Checkbox("Flip",&swInvert)) { PARAMETER + if (ImGui::Checkbox(_("Flip"),&swInvert)) { PARAMETER somethingChanged=true; } @@ -5898,23 +6037,23 @@ void FurnaceGUI::drawInsEdit() { int swVal=ins->su.hwSeq[i].val&127; bool swDir=ins->su.hwSeq[i].val&128; - if (ImGui::InputInt("Period",&swPeriod,1,16)) { + if (ImGui::InputInt(_("Period"),&swPeriod,1,16)) { if (swPeriod<0) swPeriod=0; if (swPeriod>65535) swPeriod=65535; somethingChanged=true; } - if (CWSliderInt("Amount",&swVal,0,31)) { + if (CWSliderInt(_("Amount"),&swVal,0,31)) { somethingChanged=true; } - if (CWSliderInt("Bound",&swBound,0,255)) { + if (CWSliderInt(_("Bound"),&swBound,0,255)) { somethingChanged=true; } - if (ImGui::RadioButton("Up",swDir)) { PARAMETER + if (ImGui::RadioButton(_("Up"),swDir)) { PARAMETER swDir=true; somethingChanged=true; } ImGui::SameLine(); - if (ImGui::RadioButton("Down",!swDir)) { PARAMETER + if (ImGui::RadioButton(_("Down"),!swDir)) { PARAMETER swDir=false; somethingChanged=true; } @@ -5931,7 +6070,7 @@ void FurnaceGUI::drawInsEdit() { int len=ins->su.hwSeq[i].val+1; curFrame+=ins->su.hwSeq[i].val+1; - if (ImGui::InputInt("Ticks",&len)) { + if (ImGui::InputInt(_("Ticks"),&len)) { if (len<1) len=1; if (len>255) len=256; somethingChanged=true; @@ -5950,7 +6089,7 @@ void FurnaceGUI::drawInsEdit() { case DivInstrumentSoundUnit::DIV_SU_HWCMD_LOOP_REL: { int pos=ins->su.hwSeq[i].val; - if (ImGui::InputInt("Position",&pos,1,4)) { + if (ImGui::InputInt(_("Position"),&pos,1,4)) { if (pos<0) pos=0; if (pos>(ins->su.hwSeqLen-1)) pos=(ins->su.hwSeqLen-1); somethingChanged=true; @@ -6068,16 +6207,16 @@ void FurnaceGUI::drawInsEdit() { } if (ins->type==DIV_INS_N163) if (ImGui::BeginTabItem("Namco 163")) { bool preLoad=ins->n163.waveMode&0x1; - if (ImGui::Checkbox("Load waveform",&preLoad)) { PARAMETER + if (ImGui::Checkbox(_("Load waveform"),&preLoad)) { PARAMETER ins->n163.waveMode=(ins->n163.waveMode&~0x1)|(preLoad?0x1:0); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("when enabled, a waveform will be loaded into RAM.\nwhen disabled, only the offset and length change."); + ImGui::SetTooltip(_("when enabled, a waveform will be loaded into RAM.\nwhen disabled, only the offset and length change.")); } if (preLoad) { - if (ImGui::InputInt("Waveform##WAVE",&ins->n163.wave,1,10)) { PARAMETER + if (ImGui::InputInt(_("Waveform##WAVE"),&ins->n163.wave,1,10)) { PARAMETER if (ins->n163.wave<0) ins->n163.wave=0; if (ins->n163.wave>=e->song.waveLen) ins->n163.wave=e->song.waveLen-1; } @@ -6085,7 +6224,7 @@ void FurnaceGUI::drawInsEdit() { ImGui::Separator(); - P(ImGui::Checkbox("Per-channel wave position/length",&ins->n163.perChanPos)); + P(ImGui::Checkbox(_("Per-channel wave position/length"),&ins->n163.perChanPos)); if (ins->n163.perChanPos) { if (ImGui::BeginTable("N1PerChPos",3)) { @@ -6095,11 +6234,11 @@ void FurnaceGUI::drawInsEdit() { ImGui::TableNextRow(ImGuiTableRowFlags_Headers); ImGui::TableNextColumn(); - ImGui::Text("Ch"); + ImGui::Text(_("Ch")); ImGui::TableNextColumn(); - ImGui::Text("Position"); + ImGui::Text(_("Position")); ImGui::TableNextColumn(); - ImGui::Text("Length"); + ImGui::Text(_("Length")); for (int i=0; i<8; i++) { ImGui::PushID(64+i); @@ -6144,19 +6283,19 @@ void FurnaceGUI::drawInsEdit() { if (ins->type==DIV_INS_FDS) if (ImGui::BeginTabItem("FDS")) { float modTable[32]; int modTableInt[256]; - ImGui::Checkbox("Compatibility mode",&ins->fds.initModTableWithFirstWave); + ImGui::Checkbox(_("Compatibility mode"),&ins->fds.initModTableWithFirstWave); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("only use for compatibility with .dmf modules!\n- initializes modulation table with first wavetable\n- does not alter modulation parameters on instrument change"); + ImGui::SetTooltip(_("only use for compatibility with .dmf modules!\n- initializes modulation table with first wavetable\n- does not alter modulation parameters on instrument change")); } - if (ImGui::InputInt("Modulation depth",&ins->fds.modDepth,1,4)) { + if (ImGui::InputInt(_("Modulation depth"),&ins->fds.modDepth,1,4)) { if (ins->fds.modDepth<0) ins->fds.modDepth=0; if (ins->fds.modDepth>63) ins->fds.modDepth=63; } - if (ImGui::InputInt("Modulation speed",&ins->fds.modSpeed,1,4)) { + if (ImGui::InputInt(_("Modulation speed"),&ins->fds.modSpeed,1,4)) { if (ins->fds.modSpeed<0) ins->fds.modSpeed=0; if (ins->fds.modSpeed>4095) ins->fds.modSpeed=4095; } - ImGui::Text("Modulation table"); + ImGui::Text(_("Modulation table")); for (int i=0; i<32; i++) { modTable[i]=ins->fds.modTable[i]; modTableInt[i]=ins->fds.modTable[i]; @@ -6205,7 +6344,7 @@ void FurnaceGUI::drawInsEdit() { if (ins->type==DIV_INS_VBOY) if (ImGui::BeginTabItem("Virtual Boy")) { float modTable[32]; int modTableInt[256]; - P(ImGui::Checkbox("Set modulation table (channel 5 only)",&ins->fds.initModTableWithFirstWave)); + P(ImGui::Checkbox(_("Set modulation table (channel 5 only)"),&ins->fds.initModTableWithFirstWave)); ImGui::BeginDisabled(!ins->fds.initModTableWithFirstWave); for (int i=0; i<32; i++) { @@ -6266,31 +6405,31 @@ void FurnaceGUI::drawInsEdit() { // filter ImGui::TableNextRow(); ImGui::TableNextColumn(); - P(CWSliderScalar("Filter Mode",ImGuiDataType_U8,&ins->es5506.filter.mode,&_ZERO,&_THREE,es5506FilterModes[ins->es5506.filter.mode&3])); + P(CWSliderScalar(_("Filter Mode"),ImGuiDataType_U8,&ins->es5506.filter.mode,&_ZERO,&_THREE,es5506FilterModes[ins->es5506.filter.mode&3])); ImGui::TableNextRow(); ImGui::TableNextColumn(); - P(CWSliderScalar("Filter K1",ImGuiDataType_U16,&ins->es5506.filter.k1,&_ZERO,&_SIXTY_FIVE_THOUSAND_FIVE_HUNDRED_THIRTY_FIVE)); rightClickable + P(CWSliderScalar(_("Filter K1"),ImGuiDataType_U16,&ins->es5506.filter.k1,&_ZERO,&_SIXTY_FIVE_THOUSAND_FIVE_HUNDRED_THIRTY_FIVE)); rightClickable ImGui::TableNextColumn(); - P(CWSliderScalar("Filter K2",ImGuiDataType_U16,&ins->es5506.filter.k2,&_ZERO,&_SIXTY_FIVE_THOUSAND_FIVE_HUNDRED_THIRTY_FIVE)); rightClickable + P(CWSliderScalar(_("Filter K2"),ImGuiDataType_U16,&ins->es5506.filter.k2,&_ZERO,&_SIXTY_FIVE_THOUSAND_FIVE_HUNDRED_THIRTY_FIVE)); rightClickable // envelope ImGui::TableNextRow(); ImGui::TableNextColumn(); - P(CWSliderScalar("Envelope length",ImGuiDataType_U16,&ins->es5506.envelope.ecount,&_ZERO,&_FIVE_HUNDRED_ELEVEN)); rightClickable + P(CWSliderScalar(_("Envelope length"),ImGuiDataType_U16,&ins->es5506.envelope.ecount,&_ZERO,&_FIVE_HUNDRED_ELEVEN)); rightClickable ImGui::TableNextRow(); ImGui::TableNextColumn(); - P(CWSliderScalar("Left Volume Ramp",ImGuiDataType_S8,&ins->es5506.envelope.lVRamp,&_MINUS_ONE_HUNDRED_TWENTY_EIGHT,&_ONE_HUNDRED_TWENTY_SEVEN)); rightClickable + P(CWSliderScalar(_("Left Volume Ramp"),ImGuiDataType_S8,&ins->es5506.envelope.lVRamp,&_MINUS_ONE_HUNDRED_TWENTY_EIGHT,&_ONE_HUNDRED_TWENTY_SEVEN)); rightClickable ImGui::TableNextColumn(); - P(CWSliderScalar("Right Volume Ramp",ImGuiDataType_S8,&ins->es5506.envelope.rVRamp,&_MINUS_ONE_HUNDRED_TWENTY_EIGHT,&_ONE_HUNDRED_TWENTY_SEVEN)); rightClickable + P(CWSliderScalar(_("Right Volume Ramp"),ImGuiDataType_S8,&ins->es5506.envelope.rVRamp,&_MINUS_ONE_HUNDRED_TWENTY_EIGHT,&_ONE_HUNDRED_TWENTY_SEVEN)); rightClickable ImGui::TableNextRow(); ImGui::TableNextColumn(); - P(CWSliderScalar("Filter K1 Ramp",ImGuiDataType_S8,&ins->es5506.envelope.k1Ramp,&_MINUS_ONE_HUNDRED_TWENTY_EIGHT,&_ONE_HUNDRED_TWENTY_SEVEN)); rightClickable + P(CWSliderScalar(_("Filter K1 Ramp"),ImGuiDataType_S8,&ins->es5506.envelope.k1Ramp,&_MINUS_ONE_HUNDRED_TWENTY_EIGHT,&_ONE_HUNDRED_TWENTY_SEVEN)); rightClickable ImGui::TableNextColumn(); - P(CWSliderScalar("Filter K2 Ramp",ImGuiDataType_S8,&ins->es5506.envelope.k2Ramp,&_MINUS_ONE_HUNDRED_TWENTY_EIGHT,&_ONE_HUNDRED_TWENTY_SEVEN)); rightClickable + P(CWSliderScalar(_("Filter K2 Ramp"),ImGuiDataType_S8,&ins->es5506.envelope.k2Ramp,&_MINUS_ONE_HUNDRED_TWENTY_EIGHT,&_ONE_HUNDRED_TWENTY_SEVEN)); rightClickable ImGui::TableNextRow(); ImGui::TableNextColumn(); - ImGui::Checkbox("K1 Ramp Slowdown",&ins->es5506.envelope.k1Slow); + ImGui::Checkbox(_("K1 Ramp Slowdown"),&ins->es5506.envelope.k1Slow); ImGui::TableNextColumn(); - ImGui::Checkbox("K2 Ramp Slowdown",&ins->es5506.envelope.k2Slow); + ImGui::Checkbox(_("K2 Ramp Slowdown"),&ins->es5506.envelope.k2Slow); ImGui::EndTable(); } ImGui::EndTabItem(); @@ -6312,41 +6451,41 @@ void FurnaceGUI::drawInsEdit() { CENTER_TEXT("AR"); ImGui::TextUnformatted("AR"); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Attack Rate"); + ImGui::SetTooltip(_("Attack Rate")); } ImGui::TableNextColumn(); CENTER_TEXT("D1R"); ImGui::TextUnformatted("D1R"); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Decay 1 Rate"); + ImGui::SetTooltip(_("Decay 1 Rate")); } ImGui::TableNextColumn(); CENTER_TEXT("DL"); ImGui::TextUnformatted("DL"); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Decay Level"); + ImGui::SetTooltip(_("Decay Level")); } ImGui::TableNextColumn(); CENTER_TEXT("D2R"); ImGui::TextUnformatted("D2R"); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Decay 2 Rate"); + ImGui::SetTooltip(_("Decay 2 Rate")); } ImGui::TableNextColumn(); CENTER_TEXT("RR"); ImGui::TextUnformatted("RR"); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Release Rate"); + ImGui::SetTooltip(_("Release Rate")); } ImGui::TableNextColumn(); CENTER_TEXT("RC"); ImGui::TextUnformatted("RC"); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Rate Correction"); + ImGui::SetTooltip(_("Rate Correction")); } ImGui::TableNextColumn(); - CENTER_TEXT("Envelope"); - ImGui::TextUnformatted("Envelope"); + CENTER_TEXT(_("Envelope")); + ImGui::TextUnformatted(_("Envelope")); ImGui::TableNextRow(); ImGui::TableNextColumn(); @@ -6370,18 +6509,18 @@ void FurnaceGUI::drawInsEdit() { ImGui::TableSetupColumn("c1",ImGuiTableColumnFlags_WidthStretch,0.0); ImGui::TableSetupColumn("c2",ImGuiTableColumnFlags_WidthStretch,0.0); ImGui::TableNextColumn(); - P(CWSliderScalar("LFO Rate",ImGuiDataType_U8,&ins->multipcm.lfo,&_ZERO,&_SEVEN)); rightClickable + P(CWSliderScalar(_("LFO Rate"),ImGuiDataType_U8,&ins->multipcm.lfo,&_ZERO,&_SEVEN)); rightClickable ImGui::TableNextColumn(); - P(CWSliderScalar("PM Depth",ImGuiDataType_U8,&ins->multipcm.vib,&_ZERO,&_SEVEN)); rightClickable + P(CWSliderScalar(_("PM Depth"),ImGuiDataType_U8,&ins->multipcm.vib,&_ZERO,&_SEVEN)); rightClickable ImGui::TableNextColumn(); - P(CWSliderScalar("AM Depth",ImGuiDataType_U8,&ins->multipcm.am,&_ZERO,&_SEVEN)); rightClickable + P(CWSliderScalar(_("AM Depth"),ImGuiDataType_U8,&ins->multipcm.am,&_ZERO,&_SEVEN)); rightClickable ImGui::EndTable(); } ImGui::EndTabItem(); } } if (ins->type==DIV_INS_SNES) if (ImGui::BeginTabItem("SNES")) { - P(ImGui::Checkbox("Use envelope",&ins->snes.useEnv)); + P(ImGui::Checkbox(_("Use envelope"),&ins->snes.useEnv)); ImVec2 sliderSize=ImVec2(20.0f*dpiScale,128.0*dpiScale); if (ins->snes.useEnv) { if (ImGui::BeginTable("SNESEnvParams",ins->snes.sus?6:5,ImGuiTableFlags_NoHostExtendX)) { @@ -6413,8 +6552,8 @@ void FurnaceGUI::drawInsEdit() { CENTER_TEXT("R"); ImGui::TextUnformatted("R"); ImGui::TableNextColumn(); - CENTER_TEXT("Envelope"); - ImGui::TextUnformatted("Envelope"); + CENTER_TEXT(_("Envelope")); + ImGui::TextUnformatted(_("Envelope")); ImGui::TableNextRow(); ImGui::TableNextColumn(); @@ -6434,17 +6573,17 @@ void FurnaceGUI::drawInsEdit() { ImGui::EndTable(); } - ImGui::Text("Sustain/release mode:"); - if (ImGui::RadioButton("Direct (cut on release)",ins->snes.sus==0)) { + ImGui::Text(_("Sustain/release mode:")); + if (ImGui::RadioButton(_("Direct (cut on release)"),ins->snes.sus==0)) { ins->snes.sus=0; } - if (ImGui::RadioButton("Effective (linear decrease)",ins->snes.sus==1)) { + if (ImGui::RadioButton(_("Effective (linear decrease)"),ins->snes.sus==1)) { ins->snes.sus=1; } - if (ImGui::RadioButton("Effective (exponential decrease)",ins->snes.sus==2)) { + if (ImGui::RadioButton(_("Effective (exponential decrease)"),ins->snes.sus==2)) { ins->snes.sus=2; } - if (ImGui::RadioButton("Delayed (write R on release)",ins->snes.sus==3)) { + if (ImGui::RadioButton(_("Delayed (write R on release)"),ins->snes.sus==3)) { ins->snes.sus=3; } } else { @@ -6454,31 +6593,31 @@ void FurnaceGUI::drawInsEdit() { ImGui::TableNextRow(); ImGui::TableNextColumn(); - CENTER_TEXT("Gain Mode"); - ImGui::TextUnformatted("Gain Mode"); + CENTER_TEXT(_("Gain Mode")); + ImGui::TextUnformatted(_("Gain Mode")); ImGui::TableNextColumn(); - CENTER_TEXT("Gain"); - ImGui::TextUnformatted("Gain"); + CENTER_TEXT(_("Gain")); + ImGui::TextUnformatted(_("Gain")); ImGui::TableNextRow(); ImGui::TableNextColumn(); - if (ImGui::RadioButton("Direct",ins->snes.gainMode==DivInstrumentSNES::GAIN_MODE_DIRECT)) { + if (ImGui::RadioButton(_("Direct"),ins->snes.gainMode==DivInstrumentSNES::GAIN_MODE_DIRECT)) { ins->snes.gainMode=DivInstrumentSNES::GAIN_MODE_DIRECT; PARAMETER; } - if (ImGui::RadioButton("Decrease (linear)",ins->snes.gainMode==DivInstrumentSNES::GAIN_MODE_DEC_LINEAR)) { + if (ImGui::RadioButton(_("Decrease (linear)"),ins->snes.gainMode==DivInstrumentSNES::GAIN_MODE_DEC_LINEAR)) { ins->snes.gainMode=DivInstrumentSNES::GAIN_MODE_DEC_LINEAR; PARAMETER; } - if (ImGui::RadioButton("Decrease (logarithmic)",ins->snes.gainMode==DivInstrumentSNES::GAIN_MODE_DEC_LOG)) { + if (ImGui::RadioButton(_("Decrease (logarithmic)"),ins->snes.gainMode==DivInstrumentSNES::GAIN_MODE_DEC_LOG)) { ins->snes.gainMode=DivInstrumentSNES::GAIN_MODE_DEC_LOG; PARAMETER; } - if (ImGui::RadioButton("Increase (linear)",ins->snes.gainMode==DivInstrumentSNES::GAIN_MODE_INC_LINEAR)) { + if (ImGui::RadioButton(_("Increase (linear)"),ins->snes.gainMode==DivInstrumentSNES::GAIN_MODE_INC_LINEAR)) { ins->snes.gainMode=DivInstrumentSNES::GAIN_MODE_INC_LINEAR; PARAMETER; } - if (ImGui::RadioButton("Increase (bent line)",ins->snes.gainMode==DivInstrumentSNES::GAIN_MODE_INC_INVLOG)) { + if (ImGui::RadioButton(_("Increase (bent line)"),ins->snes.gainMode==DivInstrumentSNES::GAIN_MODE_INC_INVLOG)) { ins->snes.gainMode=DivInstrumentSNES::GAIN_MODE_INC_INVLOG; PARAMETER; } @@ -6491,7 +6630,7 @@ void FurnaceGUI::drawInsEdit() { ImGui::EndTable(); } if (ins->snes.gainMode==DivInstrumentSNES::GAIN_MODE_DEC_LINEAR || ins->snes.gainMode==DivInstrumentSNES::GAIN_MODE_DEC_LOG) { - ImGui::TextWrapped("using decrease modes will not produce any sound at all, unless you know what you are doing.\nit is recommended to use the Gain macro for decrease instead."); + ImGui::TextWrapped(_("using decrease modes will not produce any sound at all, unless you know what you are doing.\nit is recommended to use the Gain macro for decrease instead.")); } } ImGui::EndTabItem(); @@ -6510,7 +6649,7 @@ void FurnaceGUI::drawInsEdit() { ins->type==DIV_INS_NAMCO || ins->type==DIV_INS_SM8521 || (ins->type==DIV_INS_GBA_MINMOD && ins->amiga.useWave)) { - if (ImGui::BeginTabItem("Wavetable")) { + if (ImGui::BeginTabItem(_("Wavetable"))) { switch (ins->type) { case DIV_INS_GB: case DIV_INS_NAMCO: @@ -6561,7 +6700,7 @@ void FurnaceGUI::drawInsEdit() { wavePreviewHeight=31; break; } - if (ImGui::Checkbox("Enable synthesizer",&ins->ws.enabled)) { + if (ImGui::Checkbox(_("Enable synthesizer"),&ins->ws.enabled)) { wavePreviewInit=true; } if (ins->ws.enabled) { @@ -6579,19 +6718,19 @@ void FurnaceGUI::drawInsEdit() { } } if (ImGui::BeginCombo("##WSEffect",(ins->ws.effect&0x80)?dualWSEffects[ins->ws.effect&0x7f]:singleWSEffects[ins->ws.effect&0x7f])) { - ImGui::Text("Single-waveform"); + ImGui::Text(_("Single-waveform")); ImGui::Indent(); for (int i=0; iws.effect=i; wavePreviewInit=true; } } ImGui::Unindent(); - ImGui::Text("Dual-waveform"); + ImGui::Text(_("Dual-waveform")); ImGui::Indent(); for (int i=129; iws.effect=i; wavePreviewInit=true; } @@ -6661,14 +6800,16 @@ void FurnaceGUI::drawInsEdit() { if (ins->std.waveMacro.len>0) { ImGui::PushStyleColor(ImGuiCol_Text,uiColors[GUI_COLOR_WARNING]); ImGui::AlignTextToFramePadding(); - ImGui::Text("Wave 1 " ICON_FA_EXCLAMATION_TRIANGLE); + ImGui::Text(_("Wave 1")); + ImGui::SameLine(); + ImGui::Text(ICON_FA_EXCLAMATION_TRIANGLE); ImGui::PopStyleColor(); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("waveform macro is controlling wave 1!\nthis value will be ineffective."); + ImGui::SetTooltip(_("waveform macro is controlling wave 1!\nthis value will be ineffective.")); } } else { ImGui::AlignTextToFramePadding(); - ImGui::Text("Wave 1"); + ImGui::Text(_("Wave 1")); } ImGui::SameLine(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); @@ -6679,13 +6820,13 @@ void FurnaceGUI::drawInsEdit() { } if (ins->std.waveMacro.len>0) { if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("waveform macro is controlling wave 1!\nthis value will be ineffective."); + ImGui::SetTooltip(_("waveform macro is controlling wave 1!\nthis value will be ineffective.")); } } if (isSingleWaveFX) { ImGui::TableNextColumn(); ImGui::AlignTextToFramePadding(); - ImGui::Text("Wave 2"); + ImGui::Text(_("Wave 2")); ImGui::SameLine(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); if (ImGui::InputInt("##SelWave2",&ins->ws.wave2,1,4)) { @@ -6700,9 +6841,9 @@ void FurnaceGUI::drawInsEdit() { } if (ImGui::IsItemHovered()) { if (wavePreviewPaused) { - ImGui::SetTooltip("Resume preview"); + ImGui::SetTooltip(_("Resume preview")); } else { - ImGui::SetTooltip("Pause preview"); + ImGui::SetTooltip(_("Pause preview")); } } ImGui::SameLine(); @@ -6710,13 +6851,13 @@ void FurnaceGUI::drawInsEdit() { wavePreviewInit=true; } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Restart preview"); + ImGui::SetTooltip(_("Restart preview")); } ImGui::SameLine(); if (ImGui::Button(ICON_FA_UPLOAD "##WSCopy")) { curWave=e->addWave(); if (curWave==-1) { - showError("too many wavetables!"); + showError(_("too many wavetables!")); } else { wantScrollListWave=true; MARK_MODIFIED; @@ -6730,45 +6871,45 @@ void FurnaceGUI::drawInsEdit() { } } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Copy to new wavetable"); + ImGui::SetTooltip(_("Copy to new wavetable")); } ImGui::SameLine(); ImGui::Text("(%d×%d)",wavePreviewLen,wavePreviewHeight+1); ImGui::EndTable(); } - if (ImGui::InputScalar("Update Rate",ImGuiDataType_U8,&ins->ws.rateDivider,&_ONE,&_EIGHT)) { + if (ImGui::InputScalar(_("Update Rate"),ImGuiDataType_U8,&ins->ws.rateDivider,&_ONE,&_EIGHT)) { wavePreviewInit=true; } int speed=ins->ws.speed+1; - if (ImGui::InputInt("Speed",&speed,1,8)) { + if (ImGui::InputInt(_("Speed"),&speed,1,8)) { if (speed<1) speed=1; if (speed>256) speed=256; ins->ws.speed=speed-1; wavePreviewInit=true; } - if (ImGui::InputScalar("Amount",ImGuiDataType_U8,&ins->ws.param1,&_ONE,&_EIGHT)) { + if (ImGui::InputScalar(_("Amount"),ImGuiDataType_U8,&ins->ws.param1,&_ONE,&_EIGHT)) { wavePreviewInit=true; } if (ins->ws.effect==DIV_WS_PHASE_MOD) { - if (ImGui::InputScalar("Power",ImGuiDataType_U8,&ins->ws.param2,&_ONE,&_EIGHT)) { + if (ImGui::InputScalar(_("Power"),ImGuiDataType_U8,&ins->ws.param2,&_ONE,&_EIGHT)) { wavePreviewInit=true; } } - if (ImGui::Checkbox("Global",&ins->ws.global)) { + if (ImGui::Checkbox(_("Global"),&ins->ws.global)) { wavePreviewInit=true; } } else { - ImGui::TextWrapped("wavetable synthesizer disabled.\nuse the Waveform macro to set the wave for this instrument."); + ImGui::TextWrapped(_("wavetable synthesizer disabled.\nuse the Waveform macro to set the wave for this instrument.")); } ImGui::EndTabItem(); } } - if (ins->typetypetype) { case DIV_INS_STD: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,15,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); - macroList.push_back(FurnaceGUIMacroDesc("Duty",&ins->std.dutyMacro,0,3,160,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Panning",&ins->std.panLMacro,0,2,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,panBits)); - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); - macroList.push_back(FurnaceGUIMacroDesc("Phase Reset",&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,15,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("Duty"),&ins->std.dutyMacro,0,3,160,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning"),&ins->std.panLMacro,0,2,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,panBits)); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Phase Reset"),&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); break; case DIV_INS_FM: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,127,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); - macroList.push_back(FurnaceGUIMacroDesc("Panning",&ins->std.panLMacro,0,2,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,panBits)); - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); - macroList.push_back(FurnaceGUIMacroDesc("Phase Reset",&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,127,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning"),&ins->std.panLMacro,0,2,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,panBits)); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Phase Reset"),&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); break; case DIV_INS_GB: if (ins->gb.softEnv) { - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,15,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,15,160,uiColors[GUI_COLOR_MACRO_VOLUME])); } - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); - macroList.push_back(FurnaceGUIMacroDesc("Duty/Noise",&ins->std.dutyMacro,0,3,160,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Waveform",&ins->std.waveMacro,0,waveCount,160,uiColors[GUI_COLOR_MACRO_WAVE],false,NULL,NULL,false,NULL)); - macroList.push_back(FurnaceGUIMacroDesc("Panning",&ins->std.panLMacro,0,2,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,panBits)); - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); - macroList.push_back(FurnaceGUIMacroDesc("Phase Reset",&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("Duty/Noise"),&ins->std.dutyMacro,0,3,160,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Waveform"),&ins->std.waveMacro,0,waveCount,160,uiColors[GUI_COLOR_MACRO_WAVE],false,NULL,NULL,false,NULL)); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning"),&ins->std.panLMacro,0,2,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,panBits)); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Phase Reset"),&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); break; case DIV_INS_C64: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,15,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); - macroList.push_back(FurnaceGUIMacroDesc("Duty",&ins->std.dutyMacro,ins->c64.dutyIsAbs?0:-4095,4095,160,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Waveform",&ins->std.waveMacro,0,4,64,uiColors[GUI_COLOR_MACRO_WAVE],false,NULL,NULL,true,c64ShapeBits)); - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); - macroList.push_back(FurnaceGUIMacroDesc("Cutoff",&ins->std.algMacro,ins->c64.filterIsAbs?0:-2047,2047,160,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Filter Mode",&ins->std.ex1Macro,0,4,64,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,filtModeBits)); - macroList.push_back(FurnaceGUIMacroDesc("Resonance",&ins->std.ex2Macro,0,15,64,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Special",&ins->std.ex4Macro,0,4,64,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,c64TestGateBits)); - macroList.push_back(FurnaceGUIMacroDesc("Attack",&ins->std.ex5Macro,0,15,128,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Decay",&ins->std.ex6Macro,0,15,128,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Sustain",&ins->std.ex7Macro,0,15,128,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Release",&ins->std.ex8Macro,0,15,128,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,15,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("Duty"),&ins->std.dutyMacro,ins->c64.dutyIsAbs?0:-4095,4095,160,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Waveform"),&ins->std.waveMacro,0,4,64,uiColors[GUI_COLOR_MACRO_WAVE],false,NULL,NULL,true,c64ShapeBits)); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Cutoff"),&ins->std.algMacro,ins->c64.filterIsAbs?0:-2047,2047,160,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Filter Mode"),&ins->std.ex1Macro,0,4,64,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,filtModeBits)); + macroList.push_back(FurnaceGUIMacroDesc(_("Resonance"),&ins->std.ex2Macro,0,15,64,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Special"),&ins->std.ex4Macro,0,4,64,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,c64TestGateBits)); + macroList.push_back(FurnaceGUIMacroDesc(_("Attack"),&ins->std.ex5Macro,0,15,128,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Decay"),&ins->std.ex6Macro,0,15,128,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Sustain"),&ins->std.ex7Macro,0,15,128,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Release"),&ins->std.ex8Macro,0,15,128,uiColors[GUI_COLOR_MACRO_OTHER])); break; case DIV_INS_AMIGA: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,64,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); - macroList.push_back(FurnaceGUIMacroDesc("Waveform",&ins->std.waveMacro,0,waveCount,160,uiColors[GUI_COLOR_MACRO_WAVE],false,NULL,NULL,false,NULL)); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,64,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("Waveform"),&ins->std.waveMacro,0,waveCount,160,uiColors[GUI_COLOR_MACRO_WAVE],false,NULL,NULL,false,NULL)); if (ins->std.panLMacro.mode) { - macroList.push_back(FurnaceGUIMacroDesc("Panning",&ins->std.panLMacro,-16,16,63,uiColors[GUI_COLOR_MACRO_OTHER],false,macroQSoundMode)); - macroList.push_back(FurnaceGUIMacroDesc("Surround",&ins->std.panRMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning"),&ins->std.panLMacro,-16,16,63,uiColors[GUI_COLOR_MACRO_OTHER],false,macroQSoundMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Surround"),&ins->std.panRMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); } else { - macroList.push_back(FurnaceGUIMacroDesc("Panning (left)",&ins->std.panLMacro,0,127,158,uiColors[GUI_COLOR_MACRO_OTHER],false,macroQSoundMode)); - macroList.push_back(FurnaceGUIMacroDesc("Panning (right)",&ins->std.panRMacro,0,127,158,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning (left)"),&ins->std.panLMacro,0,127,158,uiColors[GUI_COLOR_MACRO_OTHER],false,macroQSoundMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning (right)"),&ins->std.panRMacro,0,127,158,uiColors[GUI_COLOR_MACRO_OTHER])); } - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); - macroList.push_back(FurnaceGUIMacroDesc("Phase Reset",&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Phase Reset"),&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); break; case DIV_INS_PCE: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,31,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,31,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); if (!ins->amiga.useSample) { - macroList.push_back(FurnaceGUIMacroDesc("Noise",&ins->std.dutyMacro,0,1,160,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Noise"),&ins->std.dutyMacro,0,1,160,uiColors[GUI_COLOR_MACRO_OTHER])); } - macroList.push_back(FurnaceGUIMacroDesc("Waveform",&ins->std.waveMacro,0,waveCount,160,uiColors[GUI_COLOR_MACRO_WAVE],false,NULL,NULL,false,NULL)); - macroList.push_back(FurnaceGUIMacroDesc("Panning (left)",&ins->std.panLMacro,0,15,46,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL)); - macroList.push_back(FurnaceGUIMacroDesc("Panning (right)",&ins->std.panRMacro,0,15,46,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); - macroList.push_back(FurnaceGUIMacroDesc("Phase Reset",&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); + macroList.push_back(FurnaceGUIMacroDesc(_("Waveform"),&ins->std.waveMacro,0,waveCount,160,uiColors[GUI_COLOR_MACRO_WAVE],false,NULL,NULL,false,NULL)); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning (left)"),&ins->std.panLMacro,0,15,46,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL)); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning (right)"),&ins->std.panRMacro,0,15,46,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Phase Reset"),&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); break; case DIV_INS_AY: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,15,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,15,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); if (!ins->amiga.useSample) { - macroList.push_back(FurnaceGUIMacroDesc("Noise Freq",&ins->std.dutyMacro,0,31,160,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Waveform",&ins->std.waveMacro,0,3,64,uiColors[GUI_COLOR_MACRO_WAVE],false,NULL,NULL,true,ayShapeBits)); + macroList.push_back(FurnaceGUIMacroDesc(_("Noise Freq"),&ins->std.dutyMacro,0,31,160,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Waveform"),&ins->std.waveMacro,0,3,64,uiColors[GUI_COLOR_MACRO_WAVE],false,NULL,NULL,true,ayShapeBits)); } - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); - macroList.push_back(FurnaceGUIMacroDesc("Phase Reset",&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); - macroList.push_back(FurnaceGUIMacroDesc("Envelope",&ins->std.ex2Macro,0,4,64,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,ayEnvBits)); - macroList.push_back(FurnaceGUIMacroDesc("AutoEnv Num",&ins->std.ex3Macro,0,15,160,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("AutoEnv Den",&ins->std.algMacro,0,15,160,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Phase Reset"),&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); + macroList.push_back(FurnaceGUIMacroDesc(_("Envelope"),&ins->std.ex2Macro,0,4,64,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,ayEnvBits)); + macroList.push_back(FurnaceGUIMacroDesc(_("AutoEnv Num"),&ins->std.ex3Macro,0,15,160,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("AutoEnv Den"),&ins->std.algMacro,0,15,160,uiColors[GUI_COLOR_MACRO_OTHER])); break; case DIV_INS_AY8930: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,31,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,31,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); if (!ins->amiga.useSample) { - macroList.push_back(FurnaceGUIMacroDesc("Noise Freq",&ins->std.dutyMacro,0,255,160,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Waveform",&ins->std.waveMacro,0,3,64,uiColors[GUI_COLOR_MACRO_WAVE],false,NULL,NULL,true,ayShapeBits)); + macroList.push_back(FurnaceGUIMacroDesc(_("Noise Freq"),&ins->std.dutyMacro,0,255,160,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Waveform"),&ins->std.waveMacro,0,3,64,uiColors[GUI_COLOR_MACRO_WAVE],false,NULL,NULL,true,ayShapeBits)); } - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); - macroList.push_back(FurnaceGUIMacroDesc("Phase Reset",&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); - macroList.push_back(FurnaceGUIMacroDesc("Duty",&ins->std.ex1Macro,0,8,160,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Envelope",&ins->std.ex2Macro,0,4,64,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,ayEnvBits)); - macroList.push_back(FurnaceGUIMacroDesc("AutoEnv Num",&ins->std.ex3Macro,0,15,160,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("AutoEnv Den",&ins->std.algMacro,0,15,160,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Noise AND Mask",&ins->std.fbMacro,0,8,96,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); - macroList.push_back(FurnaceGUIMacroDesc("Noise OR Mask",&ins->std.fmsMacro,0,8,96,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Phase Reset"),&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); + macroList.push_back(FurnaceGUIMacroDesc(_("Duty"),&ins->std.ex1Macro,0,8,160,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Envelope"),&ins->std.ex2Macro,0,4,64,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,ayEnvBits)); + macroList.push_back(FurnaceGUIMacroDesc(_("AutoEnv Num"),&ins->std.ex3Macro,0,15,160,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("AutoEnv Den"),&ins->std.algMacro,0,15,160,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Noise AND Mask"),&ins->std.fbMacro,0,8,96,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); + macroList.push_back(FurnaceGUIMacroDesc(_("Noise OR Mask"),&ins->std.fmsMacro,0,8,96,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); break; case DIV_INS_TIA: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,15,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); - macroList.push_back(FurnaceGUIMacroDesc("Waveform",&ins->std.waveMacro,0,15,160,uiColors[GUI_COLOR_MACRO_WAVE],false,NULL,NULL,false,NULL)); - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,15,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("Waveform"),&ins->std.waveMacro,0,15,160,uiColors[GUI_COLOR_MACRO_WAVE],false,NULL,NULL,false,NULL)); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); break; case DIV_INS_SAA1099: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,15,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); - macroList.push_back(FurnaceGUIMacroDesc("Duty/Noise",&ins->std.dutyMacro,0,3,160,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Waveform",&ins->std.waveMacro,0,2,64,uiColors[GUI_COLOR_MACRO_WAVE],false,NULL,NULL,true,ayShapeBits)); - macroList.push_back(FurnaceGUIMacroDesc("Panning (left)",&ins->std.panLMacro,0,15,46,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL)); - macroList.push_back(FurnaceGUIMacroDesc("Panning (right)",&ins->std.panRMacro,0,15,46,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); - macroList.push_back(FurnaceGUIMacroDesc("Envelope",&ins->std.ex1Macro,0,8,160,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,saaEnvBits)); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,15,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("Duty/Noise"),&ins->std.dutyMacro,0,3,160,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Waveform"),&ins->std.waveMacro,0,2,64,uiColors[GUI_COLOR_MACRO_WAVE],false,NULL,NULL,true,ayShapeBits)); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning (left)"),&ins->std.panLMacro,0,15,46,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL)); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning (right)"),&ins->std.panRMacro,0,15,46,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Envelope"),&ins->std.ex1Macro,0,8,160,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,saaEnvBits)); break; case DIV_INS_VIC: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,15,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); - macroList.push_back(FurnaceGUIMacroDesc("On/Off",&ins->std.dutyMacro,0,1,160,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Waveform",&ins->std.waveMacro,0,15,160,uiColors[GUI_COLOR_MACRO_WAVE],false,NULL,NULL,false,NULL)); - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,15,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("On/Off"),&ins->std.dutyMacro,0,1,160,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Waveform"),&ins->std.waveMacro,0,15,160,uiColors[GUI_COLOR_MACRO_WAVE],false,NULL,NULL,false,NULL)); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); break; case DIV_INS_PET: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,1,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); - macroList.push_back(FurnaceGUIMacroDesc("Waveform",&ins->std.waveMacro,0,8,160,uiColors[GUI_COLOR_MACRO_WAVE],false,NULL,NULL,true,NULL)); - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,1,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("Waveform"),&ins->std.waveMacro,0,8,160,uiColors[GUI_COLOR_MACRO_WAVE],false,NULL,NULL,true,NULL)); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); break; case DIV_INS_VRC6: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,15,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,15,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); if (!ins->amiga.useSample) { - macroList.push_back(FurnaceGUIMacroDesc("Duty",&ins->std.dutyMacro,0,7,160,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Duty"),&ins->std.dutyMacro,0,7,160,uiColors[GUI_COLOR_MACRO_OTHER])); } else { - macroList.push_back(FurnaceGUIMacroDesc("Waveform",&ins->std.waveMacro,0,waveCount,160,uiColors[GUI_COLOR_MACRO_WAVE],false,NULL,NULL,false,NULL)); + macroList.push_back(FurnaceGUIMacroDesc(_("Waveform"),&ins->std.waveMacro,0,waveCount,160,uiColors[GUI_COLOR_MACRO_WAVE],false,NULL,NULL,false,NULL)); } - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); if (ins->amiga.useSample) { - macroList.push_back(FurnaceGUIMacroDesc("Phase Reset",&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); + macroList.push_back(FurnaceGUIMacroDesc(_("Phase Reset"),&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); } break; case DIV_INS_OPLL: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,15,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); - macroList.push_back(FurnaceGUIMacroDesc("Patch",&ins->std.waveMacro,0,15,160,uiColors[GUI_COLOR_MACRO_WAVE],false,NULL,NULL,false,NULL)); - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); - macroList.push_back(FurnaceGUIMacroDesc("Phase Reset",&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,15,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("Patch"),&ins->std.waveMacro,0,15,160,uiColors[GUI_COLOR_MACRO_WAVE],false,NULL,NULL,false,NULL)); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Phase Reset"),&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); break; case DIV_INS_OPL: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,63,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); - macroList.push_back(FurnaceGUIMacroDesc("Panning",&ins->std.panLMacro,0,4,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,panBits)); - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); - macroList.push_back(FurnaceGUIMacroDesc("Phase Reset",&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,63,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning"),&ins->std.panLMacro,0,4,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,panBits)); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Phase Reset"),&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); break; case DIV_INS_FDS: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,32,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); - macroList.push_back(FurnaceGUIMacroDesc("Waveform",&ins->std.waveMacro,0,waveCount,160,uiColors[GUI_COLOR_MACRO_WAVE],false,NULL,NULL,false,NULL)); - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); - macroList.push_back(FurnaceGUIMacroDesc("Mod Depth",&ins->std.ex1Macro,0,63,160,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Mod Speed",&ins->std.ex2Macro,0,4095,160,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Mod Position",&ins->std.ex3Macro,0,127,160,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,32,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("Waveform"),&ins->std.waveMacro,0,waveCount,160,uiColors[GUI_COLOR_MACRO_WAVE],false,NULL,NULL,false,NULL)); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Mod Depth"),&ins->std.ex1Macro,0,63,160,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Mod Speed"),&ins->std.ex2Macro,0,4095,160,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Mod Position"),&ins->std.ex3Macro,0,127,160,uiColors[GUI_COLOR_MACRO_OTHER])); break; case DIV_INS_VBOY: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,15,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); - macroList.push_back(FurnaceGUIMacroDesc("Noise Length",&ins->std.dutyMacro,0,7,160,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Waveform",&ins->std.waveMacro,0,waveCount,160,uiColors[GUI_COLOR_MACRO_WAVE],false,NULL,NULL,false,NULL)); - macroList.push_back(FurnaceGUIMacroDesc("Panning (left)",&ins->std.panLMacro,0,15,46,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL)); - macroList.push_back(FurnaceGUIMacroDesc("Panning (right)",&ins->std.panRMacro,0,15,46,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); - macroList.push_back(FurnaceGUIMacroDesc("Phase Reset",&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,15,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("Noise Length"),&ins->std.dutyMacro,0,7,160,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Waveform"),&ins->std.waveMacro,0,waveCount,160,uiColors[GUI_COLOR_MACRO_WAVE],false,NULL,NULL,false,NULL)); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning (left)"),&ins->std.panLMacro,0,15,46,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL)); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning (right)"),&ins->std.panRMacro,0,15,46,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Phase Reset"),&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); break; case DIV_INS_N163: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,15,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); - macroList.push_back(FurnaceGUIMacroDesc("Wave Pos",&ins->std.dutyMacro,0,255,160,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Waveform",&ins->std.waveMacro,0,waveCount,160,uiColors[GUI_COLOR_MACRO_WAVE],false,NULL,NULL,false,NULL)); - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); - macroList.push_back(FurnaceGUIMacroDesc("Wave Length",&ins->std.ex1Macro,0,252,160,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,15,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("Wave Pos"),&ins->std.dutyMacro,0,255,160,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Waveform"),&ins->std.waveMacro,0,waveCount,160,uiColors[GUI_COLOR_MACRO_WAVE],false,NULL,NULL,false,NULL)); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Wave Length"),&ins->std.ex1Macro,0,252,160,uiColors[GUI_COLOR_MACRO_OTHER])); break; case DIV_INS_SCC: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,15,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); - macroList.push_back(FurnaceGUIMacroDesc("Waveform",&ins->std.waveMacro,0,waveCount,160,uiColors[GUI_COLOR_MACRO_WAVE],false,NULL,NULL,false,NULL)); - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,15,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("Waveform"),&ins->std.waveMacro,0,waveCount,160,uiColors[GUI_COLOR_MACRO_WAVE],false,NULL,NULL,false,NULL)); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); break; case DIV_INS_OPZ: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,127,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); - macroList.push_back(FurnaceGUIMacroDesc("Noise Freq",&ins->std.dutyMacro,0,32,160,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Panning",&ins->std.panLMacro,0,2,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,panBits)); - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); - macroList.push_back(FurnaceGUIMacroDesc("Phase Reset",&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,127,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("Noise Freq"),&ins->std.dutyMacro,0,32,160,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning"),&ins->std.panLMacro,0,2,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,panBits)); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Phase Reset"),&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); break; case DIV_INS_POKEY: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,15,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); - macroList.push_back(FurnaceGUIMacroDesc("AUDCTL",&ins->std.dutyMacro,0,8,160,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,pokeyCtlBits)); - macroList.push_back(FurnaceGUIMacroDesc("Waveform",&ins->std.waveMacro,0,7,160,uiColors[GUI_COLOR_MACRO_WAVE],false,NULL,NULL,false,NULL)); - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,15,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("AUDCTL"),&ins->std.dutyMacro,0,8,160,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,pokeyCtlBits)); + macroList.push_back(FurnaceGUIMacroDesc(_("Waveform"),&ins->std.waveMacro,0,7,160,uiColors[GUI_COLOR_MACRO_WAVE],false,NULL,NULL,false,NULL)); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); break; case DIV_INS_BEEPER: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,1,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); - macroList.push_back(FurnaceGUIMacroDesc("Pulse Width",&ins->std.dutyMacro,0,255,160,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,1,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("Pulse Width"),&ins->std.dutyMacro,0,255,160,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); break; case DIV_INS_SWAN: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,15,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,15,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); if (!ins->amiga.useSample) { - macroList.push_back(FurnaceGUIMacroDesc("Noise",&ins->std.dutyMacro,0,8,160,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Noise"),&ins->std.dutyMacro,0,8,160,uiColors[GUI_COLOR_MACRO_OTHER])); } - macroList.push_back(FurnaceGUIMacroDesc("Waveform",&ins->std.waveMacro,0,waveCount,160,uiColors[GUI_COLOR_MACRO_WAVE],false,NULL,NULL,false,NULL)); - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); - macroList.push_back(FurnaceGUIMacroDesc("Phase Reset",&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); + macroList.push_back(FurnaceGUIMacroDesc(_("Waveform"),&ins->std.waveMacro,0,waveCount,160,uiColors[GUI_COLOR_MACRO_WAVE],false,NULL,NULL,false,NULL)); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Phase Reset"),&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); break; case DIV_INS_MIKEY: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,127,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,127,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); if (!ins->amiga.useSample) { - macroList.push_back(FurnaceGUIMacroDesc("Duty/Int",&ins->std.dutyMacro,0,10,160,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,mikeyFeedbackBits)); + macroList.push_back(FurnaceGUIMacroDesc(_("Duty/Int"),&ins->std.dutyMacro,0,10,160,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,mikeyFeedbackBits)); } - macroList.push_back(FurnaceGUIMacroDesc("Panning (left)",&ins->std.panLMacro,0,15,46,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL)); - macroList.push_back(FurnaceGUIMacroDesc("Panning (right)",&ins->std.panRMacro,0,15,46,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); - macroList.push_back(FurnaceGUIMacroDesc("Phase Reset",&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); - macroList.push_back(FurnaceGUIMacroDesc("Load LFSR",&ins->std.ex1Macro,0,12,160,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning (left)"),&ins->std.panLMacro,0,15,46,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL)); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning (right)"),&ins->std.panRMacro,0,15,46,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Phase Reset"),&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); + macroList.push_back(FurnaceGUIMacroDesc(_("Load LFSR"),&ins->std.ex1Macro,0,12,160,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); break; case DIV_INS_VERA: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,63,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); - macroList.push_back(FurnaceGUIMacroDesc("Duty",&ins->std.dutyMacro,0,63,160,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Waveform",&ins->std.waveMacro,0,3,160,uiColors[GUI_COLOR_MACRO_WAVE],false,NULL,NULL,false,NULL)); - macroList.push_back(FurnaceGUIMacroDesc("Panning",&ins->std.panLMacro,0,2,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,panBits)); - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,63,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("Duty"),&ins->std.dutyMacro,0,63,160,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Waveform"),&ins->std.waveMacro,0,3,160,uiColors[GUI_COLOR_MACRO_WAVE],false,NULL,NULL,false,NULL)); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning"),&ins->std.panLMacro,0,2,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,panBits)); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); break; case DIV_INS_X1_010: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,15,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); - macroList.push_back(FurnaceGUIMacroDesc("Waveform",&ins->std.waveMacro,0,waveCount,160,uiColors[GUI_COLOR_MACRO_WAVE],false,NULL,NULL,false,NULL)); - macroList.push_back(FurnaceGUIMacroDesc("Panning (left)",&ins->std.panLMacro,0,15,46,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL)); - macroList.push_back(FurnaceGUIMacroDesc("Panning (right)",&ins->std.panRMacro,0,15,46,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,15,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("Waveform"),&ins->std.waveMacro,0,waveCount,160,uiColors[GUI_COLOR_MACRO_WAVE],false,NULL,NULL,false,NULL)); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning (left)"),&ins->std.panLMacro,0,15,46,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL)); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning (right)"),&ins->std.panRMacro,0,15,46,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); if (ins->amiga.useSample) { - macroList.push_back(FurnaceGUIMacroDesc("Phase Reset",&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); + macroList.push_back(FurnaceGUIMacroDesc(_("Phase Reset"),&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); } else { - macroList.push_back(FurnaceGUIMacroDesc("Envelope Mode",&ins->std.ex1Macro,0,7,160,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,x1_010EnvBits)); - macroList.push_back(FurnaceGUIMacroDesc("Envelope",&ins->std.ex2Macro,0,255,160,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,false,ayEnvBits)); - macroList.push_back(FurnaceGUIMacroDesc("AutoEnv Num",&ins->std.ex3Macro,0,15,160,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("AutoEnv Den",&ins->std.algMacro,0,15,160,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Envelope Mode"),&ins->std.ex1Macro,0,7,160,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,x1_010EnvBits)); + macroList.push_back(FurnaceGUIMacroDesc(_("Envelope"),&ins->std.ex2Macro,0,255,160,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,false,ayEnvBits)); + macroList.push_back(FurnaceGUIMacroDesc(_("AutoEnv Num"),&ins->std.ex3Macro,0,15,160,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("AutoEnv Den"),&ins->std.algMacro,0,15,160,uiColors[GUI_COLOR_MACRO_OTHER])); } break; case DIV_INS_VRC6_SAW: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,63,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,63,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); break; case DIV_INS_ES5506: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,4095,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); - macroList.push_back(FurnaceGUIMacroDesc("Filter Mode",&ins->std.dutyMacro,0,3,160,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,¯oHoverES5506FilterMode)); - macroList.push_back(FurnaceGUIMacroDesc("Panning (left)",&ins->std.panLMacro,0,4095,160,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL)); - macroList.push_back(FurnaceGUIMacroDesc("Panning (right)",&ins->std.panRMacro,0,4095,160,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); - macroList.push_back(FurnaceGUIMacroDesc("Phase Reset",&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); - macroList.push_back(FurnaceGUIMacroDesc("Filter K1",&ins->std.ex1Macro,((ins->std.ex1Macro.mode==1)?(-65535):0),65535,160,uiColors[GUI_COLOR_MACRO_OTHER],false,macroRelativeMode)); - macroList.push_back(FurnaceGUIMacroDesc("Filter K2",&ins->std.ex2Macro,((ins->std.ex2Macro.mode==1)?(-65535):0),65535,160,uiColors[GUI_COLOR_MACRO_OTHER],false,macroRelativeMode)); - macroList.push_back(FurnaceGUIMacroDesc("Outputs",&ins->std.fbMacro,0,5,64,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Control",&ins->std.algMacro,0,2,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,es5506ControlModes)); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,4095,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("Filter Mode"),&ins->std.dutyMacro,0,3,160,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,¯oHoverES5506FilterMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning (left)"),&ins->std.panLMacro,0,4095,160,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL)); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning (right)"),&ins->std.panRMacro,0,4095,160,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Phase Reset"),&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); + macroList.push_back(FurnaceGUIMacroDesc(_("Filter K1"),&ins->std.ex1Macro,((ins->std.ex1Macro.mode==1)?(-65535):0),65535,160,uiColors[GUI_COLOR_MACRO_OTHER],false,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Filter K2"),&ins->std.ex2Macro,((ins->std.ex2Macro.mode==1)?(-65535):0),65535,160,uiColors[GUI_COLOR_MACRO_OTHER],false,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Outputs"),&ins->std.fbMacro,0,5,64,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Control"),&ins->std.algMacro,0,2,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,es5506ControlModes)); break; case DIV_INS_MULTIPCM: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,127,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); - macroList.push_back(FurnaceGUIMacroDesc("Panning",&ins->std.panLMacro,-7,7,45,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL)); - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); - macroList.push_back(FurnaceGUIMacroDesc("Phase Reset",&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,127,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning"),&ins->std.panLMacro,-7,7,45,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL)); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Phase Reset"),&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); break; case DIV_INS_SNES: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,127,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); - macroList.push_back(FurnaceGUIMacroDesc("Noise Freq",&ins->std.dutyMacro,0,31,160,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Waveform",&ins->std.waveMacro,0,waveCount,160,uiColors[GUI_COLOR_MACRO_WAVE],false,NULL,NULL,false,NULL)); - macroList.push_back(FurnaceGUIMacroDesc("Panning (left)",&ins->std.panLMacro,0,127,158,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL)); - macroList.push_back(FurnaceGUIMacroDesc("Panning (right)",&ins->std.panRMacro,0,127,158,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); - macroList.push_back(FurnaceGUIMacroDesc("Special",&ins->std.ex1Macro,0,5,96,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,snesModeBits)); - macroList.push_back(FurnaceGUIMacroDesc("Gain",&ins->std.ex2Macro,0,255,256,uiColors[GUI_COLOR_MACRO_VOLUME],false,NULL,macroHoverGain,false)); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,127,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("Noise Freq"),&ins->std.dutyMacro,0,31,160,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Waveform"),&ins->std.waveMacro,0,waveCount,160,uiColors[GUI_COLOR_MACRO_WAVE],false,NULL,NULL,false,NULL)); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning (left)"),&ins->std.panLMacro,0,127,158,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL)); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning (right)"),&ins->std.panRMacro,0,127,158,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Special"),&ins->std.ex1Macro,0,5,96,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,snesModeBits)); + macroList.push_back(FurnaceGUIMacroDesc(_("Gain"),&ins->std.ex2Macro,0,255,256,uiColors[GUI_COLOR_MACRO_VOLUME],false,NULL,macroHoverGain,false)); break; case DIV_INS_SU: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,127,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); - macroList.push_back(FurnaceGUIMacroDesc("Duty/Noise",&ins->std.dutyMacro,0,127,160,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Waveform",&ins->std.waveMacro,0,7,160,uiColors[GUI_COLOR_MACRO_WAVE],false,NULL,NULL,false,NULL)); - macroList.push_back(FurnaceGUIMacroDesc("Panning",&ins->std.panLMacro,-127,127,160,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL)); - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); - macroList.push_back(FurnaceGUIMacroDesc("Phase Reset",&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); - macroList.push_back(FurnaceGUIMacroDesc("Cutoff",&ins->std.ex1Macro,0,16383,160,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Resonance",&ins->std.ex2Macro,0,255,160,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Control",&ins->std.ex3Macro,0,4,64,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,suControlBits)); - macroList.push_back(FurnaceGUIMacroDesc("Phase Reset Timer",&ins->std.ex4Macro,0,65535,160,uiColors[GUI_COLOR_MACRO_OTHER])); // again reuse code from resonance macro but use ex4 instead + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,127,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("Duty/Noise"),&ins->std.dutyMacro,0,127,160,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Waveform"),&ins->std.waveMacro,0,7,160,uiColors[GUI_COLOR_MACRO_WAVE],false,NULL,NULL,false,NULL)); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning"),&ins->std.panLMacro,-127,127,160,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL)); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Phase Reset"),&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); + macroList.push_back(FurnaceGUIMacroDesc(_("Cutoff"),&ins->std.ex1Macro,0,16383,160,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Resonance"),&ins->std.ex2Macro,0,255,160,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Control"),&ins->std.ex3Macro,0,4,64,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,suControlBits)); + macroList.push_back(FurnaceGUIMacroDesc(_("Phase Reset Timer"),&ins->std.ex4Macro,0,65535,160,uiColors[GUI_COLOR_MACRO_OTHER])); // again reuse code from resonance macro but use ex4 instead break; case DIV_INS_NAMCO: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,15,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); - macroList.push_back(FurnaceGUIMacroDesc("Noise",&ins->std.dutyMacro,0,1,160,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Waveform",&ins->std.waveMacro,0,waveCount,160,uiColors[GUI_COLOR_MACRO_WAVE],false,NULL,NULL,false,NULL)); - macroList.push_back(FurnaceGUIMacroDesc("Panning (left)",&ins->std.panLMacro,0,15,46,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL)); - macroList.push_back(FurnaceGUIMacroDesc("Panning (right)",&ins->std.panRMacro,0,15,46,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,15,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("Noise"),&ins->std.dutyMacro,0,1,160,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Waveform"),&ins->std.waveMacro,0,waveCount,160,uiColors[GUI_COLOR_MACRO_WAVE],false,NULL,NULL,false,NULL)); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning (left)"),&ins->std.panLMacro,0,15,46,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL)); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning (right)"),&ins->std.panRMacro,0,15,46,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); break; case DIV_INS_OPL_DRUMS: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,63,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); - macroList.push_back(FurnaceGUIMacroDesc("Panning",&ins->std.panLMacro,0,4,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,panBits)); - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); - macroList.push_back(FurnaceGUIMacroDesc("Phase Reset",&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,63,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning"),&ins->std.panLMacro,0,4,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,panBits)); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Phase Reset"),&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); break; case DIV_INS_OPM: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,127,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); - macroList.push_back(FurnaceGUIMacroDesc("Noise Freq",&ins->std.dutyMacro,0,32,160,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Panning",&ins->std.panLMacro,0,2,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,panBits)); - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); - macroList.push_back(FurnaceGUIMacroDesc("Phase Reset",&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,127,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("Noise Freq"),&ins->std.dutyMacro,0,32,160,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning"),&ins->std.panLMacro,0,2,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,panBits)); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Phase Reset"),&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); break; case DIV_INS_NES: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,15,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); - macroList.push_back(FurnaceGUIMacroDesc("Duty/Noise",&ins->std.dutyMacro,0,3,160,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); - macroList.push_back(FurnaceGUIMacroDesc("Phase Reset",&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,15,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("Duty/Noise"),&ins->std.dutyMacro,0,3,160,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Phase Reset"),&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); break; case DIV_INS_MSM6258: - macroList.push_back(FurnaceGUIMacroDesc("Freq Divider",&ins->std.dutyMacro,0,2,160,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Panning",&ins->std.panLMacro,0,2,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,panBits)); - macroList.push_back(FurnaceGUIMacroDesc("Phase Reset",&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); - macroList.push_back(FurnaceGUIMacroDesc("Clock Divider",&ins->std.ex1Macro,0,1,160,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Freq Divider"),&ins->std.dutyMacro,0,2,160,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning"),&ins->std.panLMacro,0,2,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,panBits)); + macroList.push_back(FurnaceGUIMacroDesc(_("Phase Reset"),&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); + macroList.push_back(FurnaceGUIMacroDesc(_("Clock Divider"),&ins->std.ex1Macro,0,1,160,uiColors[GUI_COLOR_MACRO_OTHER])); break; case DIV_INS_MSM6295: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,8,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Freq Divider",&ins->std.dutyMacro,0,1,160,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Phase Reset",&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,8,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Freq Divider"),&ins->std.dutyMacro,0,1,160,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Phase Reset"),&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); break; case DIV_INS_ADPCMA: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,31,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Global Volume",&ins->std.dutyMacro,0,63,160,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Panning",&ins->std.panLMacro,0,2,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,panBits)); - macroList.push_back(FurnaceGUIMacroDesc("Phase Reset",&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,31,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Global Volume"),&ins->std.dutyMacro,0,63,160,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning"),&ins->std.panLMacro,0,2,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,panBits)); + macroList.push_back(FurnaceGUIMacroDesc(_("Phase Reset"),&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); break; case DIV_INS_ADPCMB: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,255,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); - macroList.push_back(FurnaceGUIMacroDesc("Panning",&ins->std.panLMacro,0,2,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,panBits)); - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); - macroList.push_back(FurnaceGUIMacroDesc("Phase Reset",&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,255,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning"),&ins->std.panLMacro,0,2,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,panBits)); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Phase Reset"),&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); break; case DIV_INS_SEGAPCM: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,127,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); - macroList.push_back(FurnaceGUIMacroDesc("Panning (left)",&ins->std.panLMacro,0,127,158,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL)); - macroList.push_back(FurnaceGUIMacroDesc("Panning (right)",&ins->std.panRMacro,0,127,158,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); - macroList.push_back(FurnaceGUIMacroDesc("Phase Reset",&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,127,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning (left)"),&ins->std.panLMacro,0,127,158,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL)); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning (right)"),&ins->std.panRMacro,0,127,158,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Phase Reset"),&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); break; case DIV_INS_QSOUND: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,16383,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); - macroList.push_back(FurnaceGUIMacroDesc("Echo Level",&ins->std.dutyMacro,0,32767,160,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Panning",&ins->std.panLMacro,-16,16,63,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Surround",&ins->std.panRMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); - macroList.push_back(FurnaceGUIMacroDesc("Phase Reset",&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); - macroList.push_back(FurnaceGUIMacroDesc("Echo Feedback",&ins->std.ex1Macro,0,16383,160,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Echo Length",&ins->std.ex2Macro,0,2725,160,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,16383,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("Echo Level"),&ins->std.dutyMacro,0,32767,160,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning"),&ins->std.panLMacro,-16,16,63,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Surround"),&ins->std.panRMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Phase Reset"),&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); + macroList.push_back(FurnaceGUIMacroDesc(_("Echo Feedback"),&ins->std.ex1Macro,0,16383,160,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Echo Length"),&ins->std.ex2Macro,0,2725,160,uiColors[GUI_COLOR_MACRO_OTHER])); break; case DIV_INS_YMZ280B: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,255,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); - macroList.push_back(FurnaceGUIMacroDesc("Panning",&ins->std.panLMacro,-7,7,45,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL)); - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); - macroList.push_back(FurnaceGUIMacroDesc("Phase Reset",&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,255,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning"),&ins->std.panLMacro,-7,7,45,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL)); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Phase Reset"),&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); break; case DIV_INS_RF5C68: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,255,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); - macroList.push_back(FurnaceGUIMacroDesc("Panning (left)",&ins->std.panLMacro,0,15,46,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL)); - macroList.push_back(FurnaceGUIMacroDesc("Panning (right)",&ins->std.panRMacro,0,15,46,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); - macroList.push_back(FurnaceGUIMacroDesc("Phase Reset",&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,255,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning (left)"),&ins->std.panLMacro,0,15,46,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL)); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning (right)"),&ins->std.panRMacro,0,15,46,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Phase Reset"),&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); break; case DIV_INS_MSM5232: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,127,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); - macroList.push_back(FurnaceGUIMacroDesc("Group Ctrl",&ins->std.dutyMacro,0,5,160,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,msm5232ControlBits)); - macroList.push_back(FurnaceGUIMacroDesc("Group Attack",&ins->std.ex1Macro,0,5,96,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Group Decay",&ins->std.ex2Macro,0,11,160,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Noise",&ins->std.ex3Macro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,127,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("Group Ctrl"),&ins->std.dutyMacro,0,5,160,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,msm5232ControlBits)); + macroList.push_back(FurnaceGUIMacroDesc(_("Group Attack"),&ins->std.ex1Macro,0,5,96,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Group Decay"),&ins->std.ex2Macro,0,11,160,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Noise"),&ins->std.ex3Macro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); break; case DIV_INS_T6W28: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,15,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); - macroList.push_back(FurnaceGUIMacroDesc("Noise Type",&ins->std.dutyMacro,0,1,160,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Panning (left)",&ins->std.panLMacro,0,15,46,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL)); - macroList.push_back(FurnaceGUIMacroDesc("Panning (right)",&ins->std.panRMacro,0,15,46,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); - macroList.push_back(FurnaceGUIMacroDesc("Phase Reset",&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,15,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("Noise Type"),&ins->std.dutyMacro,0,1,160,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning (left)"),&ins->std.panLMacro,0,15,46,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL)); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning (right)"),&ins->std.panRMacro,0,15,46,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Phase Reset"),&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); break; case DIV_INS_K007232: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,15,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); - macroList.push_back(FurnaceGUIMacroDesc("Panning (left)",&ins->std.panLMacro,0,15,46,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL)); - macroList.push_back(FurnaceGUIMacroDesc("Panning (right)",&ins->std.panRMacro,0,15,46,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); - macroList.push_back(FurnaceGUIMacroDesc("Phase Reset",&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,15,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning (left)"),&ins->std.panLMacro,0,15,46,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL)); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning (right)"),&ins->std.panRMacro,0,15,46,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Phase Reset"),&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); break; case DIV_INS_GA20: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,255,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); - macroList.push_back(FurnaceGUIMacroDesc("Phase Reset",&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,255,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Phase Reset"),&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); break; case DIV_INS_POKEMINI: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,2,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); - macroList.push_back(FurnaceGUIMacroDesc("Pulse Width",&ins->std.dutyMacro,0,255,160,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,2,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("Pulse Width"),&ins->std.dutyMacro,0,255,160,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); break; case DIV_INS_SM8521: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,31,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); - macroList.push_back(FurnaceGUIMacroDesc("Waveform",&ins->std.waveMacro,0,waveCount,160,uiColors[GUI_COLOR_MACRO_WAVE],false,NULL,NULL,false,NULL)); - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,31,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("Waveform"),&ins->std.waveMacro,0,waveCount,160,uiColors[GUI_COLOR_MACRO_WAVE],false,NULL,NULL,false,NULL)); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); break; case DIV_INS_PV1000: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,1,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,1,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); break; case DIV_INS_K053260: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,127,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); - macroList.push_back(FurnaceGUIMacroDesc("Panning",&ins->std.panLMacro,-3,3,37,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL)); - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); - macroList.push_back(FurnaceGUIMacroDesc("Phase Reset",&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,127,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning"),&ins->std.panLMacro,-3,3,37,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL)); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Phase Reset"),&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); break; case DIV_INS_TED: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,8,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); - macroList.push_back(FurnaceGUIMacroDesc("Square/Noise",&ins->std.dutyMacro,0,2,80,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,tedControlBits)); - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); - macroList.push_back(FurnaceGUIMacroDesc("Phase Reset",&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,8,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("Square/Noise"),&ins->std.dutyMacro,0,2,80,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,tedControlBits)); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Phase Reset"),&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); break; case DIV_INS_C140: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,255,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); - macroList.push_back(FurnaceGUIMacroDesc("Panning (left)",&ins->std.panLMacro,0,255,160,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL)); - macroList.push_back(FurnaceGUIMacroDesc("Panning (right)",&ins->std.panRMacro,0,255,160,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); - macroList.push_back(FurnaceGUIMacroDesc("Phase Reset",&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,255,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning (left)"),&ins->std.panLMacro,0,255,160,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL)); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning (right)"),&ins->std.panRMacro,0,255,160,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Phase Reset"),&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); break; case DIV_INS_C219: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,255,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); - macroList.push_back(FurnaceGUIMacroDesc("Control",&ins->std.dutyMacro,0,3,120,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,c219ControlBits)); - macroList.push_back(FurnaceGUIMacroDesc("Panning (left)",&ins->std.panLMacro,0,255,160,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL)); - macroList.push_back(FurnaceGUIMacroDesc("Panning (right)",&ins->std.panRMacro,0,255,160,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); - macroList.push_back(FurnaceGUIMacroDesc("Phase Reset",&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,255,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("Control"),&ins->std.dutyMacro,0,3,120,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,c219ControlBits)); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning (left)"),&ins->std.panLMacro,0,255,160,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL)); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning (right)"),&ins->std.panRMacro,0,255,160,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Phase Reset"),&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); break; case DIV_INS_ESFM: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,63,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); - macroList.push_back(FurnaceGUIMacroDesc("OP4 Noise Mode",&ins->std.dutyMacro,0,3,160,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Panning",&ins->std.panLMacro,0,2,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,panBits)); - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); - macroList.push_back(FurnaceGUIMacroDesc("Phase Reset",&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,63,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("OP4 Noise Mode"),&ins->std.dutyMacro,0,3,160,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning"),&ins->std.panLMacro,0,2,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,panBits)); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Phase Reset"),&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); break; case DIV_INS_POWERNOISE: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,15,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); - macroList.push_back(FurnaceGUIMacroDesc("Panning (left)",&ins->std.panLMacro,0,15,46,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL)); - macroList.push_back(FurnaceGUIMacroDesc("Panning (right)",&ins->std.panRMacro,0,15,46,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); - macroList.push_back(FurnaceGUIMacroDesc("Phase Reset",&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); - macroList.push_back(FurnaceGUIMacroDesc("Control",&ins->std.ex1Macro,0,2,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,powerNoiseControlBits)); - macroList.push_back(FurnaceGUIMacroDesc("Tap A Location",&ins->std.ex4Macro,0,15,96,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Tap B Location",&ins->std.ex5Macro,0,15,96,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Load LFSR",&ins->std.ex8Macro,0,16,256,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,15,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning (left)"),&ins->std.panLMacro,0,15,46,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL)); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning (right)"),&ins->std.panRMacro,0,15,46,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Phase Reset"),&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); + macroList.push_back(FurnaceGUIMacroDesc(_("Control"),&ins->std.ex1Macro,0,2,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,powerNoiseControlBits)); + macroList.push_back(FurnaceGUIMacroDesc(_("Tap A Location"),&ins->std.ex4Macro,0,15,96,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Tap B Location"),&ins->std.ex5Macro,0,15,96,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Load LFSR"),&ins->std.ex8Macro,0,16,256,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); break; case DIV_INS_POWERNOISE_SLOPE: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,15,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); - macroList.push_back(FurnaceGUIMacroDesc("Panning (left)",&ins->std.panLMacro,0,15,46,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL)); - macroList.push_back(FurnaceGUIMacroDesc("Panning (right)",&ins->std.panRMacro,0,15,46,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); - macroList.push_back(FurnaceGUIMacroDesc("Phase Reset",&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); - macroList.push_back(FurnaceGUIMacroDesc("Control",&ins->std.ex1Macro,0,6,96,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,powerNoiseSlopeControlBits)); - macroList.push_back(FurnaceGUIMacroDesc("Portion A Length",&ins->std.ex2Macro,0,255,128,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Portion B Length",&ins->std.ex3Macro,0,255,128,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Portion A Offset",&ins->std.ex6Macro,0,15,96,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Portion B Offset",&ins->std.ex7Macro,0,15,96,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,15,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning (left)"),&ins->std.panLMacro,0,15,46,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL)); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning (right)"),&ins->std.panRMacro,0,15,46,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Phase Reset"),&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); + macroList.push_back(FurnaceGUIMacroDesc(_("Control"),&ins->std.ex1Macro,0,6,96,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,powerNoiseSlopeControlBits)); + macroList.push_back(FurnaceGUIMacroDesc(_("Portion A Length"),&ins->std.ex2Macro,0,255,128,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Portion B Length"),&ins->std.ex3Macro,0,255,128,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Portion A Offset"),&ins->std.ex6Macro,0,15,96,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Portion B Offset"),&ins->std.ex7Macro,0,15,96,uiColors[GUI_COLOR_MACRO_OTHER])); break; case DIV_INS_DAVE: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,63,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); - macroList.push_back(FurnaceGUIMacroDesc("Noise Freq",&ins->std.dutyMacro,0,3,160,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Waveform",&ins->std.waveMacro,0,4,160,uiColors[GUI_COLOR_MACRO_WAVE],false,NULL,NULL,false,NULL)); - macroList.push_back(FurnaceGUIMacroDesc("Panning (left)",&ins->std.panLMacro,0,63,94,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL)); - macroList.push_back(FurnaceGUIMacroDesc("Panning (right)",&ins->std.panRMacro,0,63,94,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); - macroList.push_back(FurnaceGUIMacroDesc("Phase Reset",&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); - macroList.push_back(FurnaceGUIMacroDesc("Control",&ins->std.ex1Macro,0,4,64,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,daveControlBits)); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,63,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("Noise Freq"),&ins->std.dutyMacro,0,3,160,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Waveform"),&ins->std.waveMacro,0,4,160,uiColors[GUI_COLOR_MACRO_WAVE],false,NULL,NULL,false,NULL)); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning (left)"),&ins->std.panLMacro,0,63,94,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL)); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning (right)"),&ins->std.panRMacro,0,63,94,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Phase Reset"),&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); + macroList.push_back(FurnaceGUIMacroDesc(_("Control"),&ins->std.ex1Macro,0,4,64,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,daveControlBits)); break; case DIV_INS_NDS: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,127,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,127,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); if (!ins->amiga.useSample) { - macroList.push_back(FurnaceGUIMacroDesc("Duty",&ins->std.dutyMacro,0,7,160,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Duty"),&ins->std.dutyMacro,0,7,160,uiColors[GUI_COLOR_MACRO_OTHER])); } - macroList.push_back(FurnaceGUIMacroDesc("Panning",&ins->std.panLMacro,-64,63,160,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL)); - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); - macroList.push_back(FurnaceGUIMacroDesc("Phase Reset",&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning"),&ins->std.panLMacro,-64,63,160,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL)); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Phase Reset"),&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); break; case DIV_INS_GBA_DMA: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,2,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); - macroList.push_back(FurnaceGUIMacroDesc("Waveform",&ins->std.waveMacro,0,waveCount,160,uiColors[GUI_COLOR_MACRO_WAVE],false,NULL,NULL,false,NULL)); - macroList.push_back(FurnaceGUIMacroDesc("Panning",&ins->std.panLMacro,0,2,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,panBits)); - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); - macroList.push_back(FurnaceGUIMacroDesc("Phase Reset",&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,2,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("Waveform"),&ins->std.waveMacro,0,waveCount,160,uiColors[GUI_COLOR_MACRO_WAVE],false,NULL,NULL,false,NULL)); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning"),&ins->std.panLMacro,0,2,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,panBits)); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Phase Reset"),&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); break; case DIV_INS_GBA_MINMOD: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,255,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); - macroList.push_back(FurnaceGUIMacroDesc("Waveform",&ins->std.waveMacro,0,waveCount,160,uiColors[GUI_COLOR_MACRO_WAVE],false,NULL,NULL,false,NULL)); - macroList.push_back(FurnaceGUIMacroDesc("Panning (left)",&ins->std.panLMacro,0,255,160,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL)); - macroList.push_back(FurnaceGUIMacroDesc("Panning (right)",&ins->std.panRMacro,0,255,160,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); - macroList.push_back(FurnaceGUIMacroDesc("Phase Reset",&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); - macroList.push_back(FurnaceGUIMacroDesc("Special",&ins->std.ex1Macro,0,2,96,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,minModModeBits)); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,255,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("Waveform"),&ins->std.waveMacro,0,waveCount,160,uiColors[GUI_COLOR_MACRO_WAVE],false,NULL,NULL,false,NULL)); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning (left)"),&ins->std.panLMacro,0,255,160,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL)); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning (right)"),&ins->std.panRMacro,0,255,160,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Phase Reset"),&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); + macroList.push_back(FurnaceGUIMacroDesc(_("Special"),&ins->std.ex1Macro,0,2,96,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,minModModeBits)); break; case DIV_INS_BIFURCATOR: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,255,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); - macroList.push_back(FurnaceGUIMacroDesc("Parameter",&ins->std.dutyMacro,0,65535,160,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Panning (left)",&ins->std.panLMacro,0,255,160,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL)); - macroList.push_back(FurnaceGUIMacroDesc("Panning (right)",&ins->std.panRMacro,0,255,160,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); - macroList.push_back(FurnaceGUIMacroDesc("Load Value",&ins->std.ex1Macro,0,65535,160,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,255,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("Parameter"),&ins->std.dutyMacro,0,65535,160,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning (left)"),&ins->std.panLMacro,0,255,160,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL)); + macroList.push_back(FurnaceGUIMacroDesc(_("Panning (right)"),&ins->std.panRMacro,0,255,160,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Load Value"),&ins->std.ex1Macro,0,65535,160,uiColors[GUI_COLOR_MACRO_OTHER])); break; case DIV_INS_SID2: - macroList.push_back(FurnaceGUIMacroDesc("Volume",&ins->std.volMacro,0,15,160,uiColors[GUI_COLOR_MACRO_VOLUME])); - macroList.push_back(FurnaceGUIMacroDesc("Arpeggio",&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); - macroList.push_back(FurnaceGUIMacroDesc("Duty",&ins->std.dutyMacro,ins->c64.dutyIsAbs?0:-4095,4095,160,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Waveform",&ins->std.waveMacro,0,4,64,uiColors[GUI_COLOR_MACRO_WAVE],false,NULL,NULL,true,c64ShapeBits)); - macroList.push_back(FurnaceGUIMacroDesc("Pitch",&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); - macroList.push_back(FurnaceGUIMacroDesc("Phase Reset",&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); - macroList.push_back(FurnaceGUIMacroDesc("Cutoff",&ins->std.algMacro,ins->c64.filterIsAbs?0:-4095,4095,160,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Filter Mode",&ins->std.ex1Macro,0,3,64,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,filtModeBits)); - macroList.push_back(FurnaceGUIMacroDesc("Resonance",&ins->std.ex2Macro,0,255,160,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Filter Toggle",&ins->std.ex3Macro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); - macroList.push_back(FurnaceGUIMacroDesc("Special",&ins->std.ex4Macro,0,3,48,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,sid2ControlBits)); - macroList.push_back(FurnaceGUIMacroDesc("Attack",&ins->std.ex5Macro,0,15,128,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Decay",&ins->std.ex6Macro,0,15,128,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Sustain",&ins->std.ex7Macro,0,15,128,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Release",&ins->std.ex8Macro,0,15,128,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Noise Mode",&ins->std.fmsMacro,0,3,64,uiColors[GUI_COLOR_MACRO_OTHER])); - macroList.push_back(FurnaceGUIMacroDesc("Wave Mix",&ins->std.amsMacro,0,3,64,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Volume"),&ins->std.volMacro,0,15,160,uiColors[GUI_COLOR_MACRO_VOLUME])); + macroList.push_back(FurnaceGUIMacroDesc(_("Arpeggio"),&ins->std.arpMacro,-120,120,160,uiColors[GUI_COLOR_MACRO_PITCH],true,NULL,macroHoverNote,false,NULL,true,ins->std.arpMacro.val)); + macroList.push_back(FurnaceGUIMacroDesc(_("Duty"),&ins->std.dutyMacro,ins->c64.dutyIsAbs?0:-4095,4095,160,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Waveform"),&ins->std.waveMacro,0,4,64,uiColors[GUI_COLOR_MACRO_WAVE],false,NULL,NULL,true,c64ShapeBits)); + macroList.push_back(FurnaceGUIMacroDesc(_("Pitch"),&ins->std.pitchMacro,-2048,2047,160,uiColors[GUI_COLOR_MACRO_PITCH],true,macroRelativeMode)); + macroList.push_back(FurnaceGUIMacroDesc(_("Phase Reset"),&ins->std.phaseResetMacro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); + macroList.push_back(FurnaceGUIMacroDesc(_("Cutoff"),&ins->std.algMacro,ins->c64.filterIsAbs?0:-4095,4095,160,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Filter Mode"),&ins->std.ex1Macro,0,3,64,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,filtModeBits)); + macroList.push_back(FurnaceGUIMacroDesc(_("Resonance"),&ins->std.ex2Macro,0,255,160,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Filter Toggle"),&ins->std.ex3Macro,0,1,32,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true)); + macroList.push_back(FurnaceGUIMacroDesc(_("Special"),&ins->std.ex4Macro,0,3,48,uiColors[GUI_COLOR_MACRO_OTHER],false,NULL,NULL,true,sid2ControlBits)); + macroList.push_back(FurnaceGUIMacroDesc(_("Attack"),&ins->std.ex5Macro,0,15,128,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Decay"),&ins->std.ex6Macro,0,15,128,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Sustain"),&ins->std.ex7Macro,0,15,128,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Release"),&ins->std.ex8Macro,0,15,128,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Noise Mode"),&ins->std.fmsMacro,0,3,64,uiColors[GUI_COLOR_MACRO_OTHER])); + macroList.push_back(FurnaceGUIMacroDesc(_("Wave Mix"),&ins->std.amsMacro,0,3,64,uiColors[GUI_COLOR_MACRO_OTHER])); break; case DIV_INS_MAX: @@ -7356,12 +7497,12 @@ void FurnaceGUI::drawInsEdit() { if (ins->type==DIV_INS_POWERNOISE || ins->type==DIV_INS_POWERNOISE_SLOPE) { if (ImGui::BeginTabItem("PowerNoise")) { int pnOctave=ins->powernoise.octave; - if (ImGui::InputInt("Octave offset",&pnOctave,1,4)) { PARAMETER + if (ImGui::InputInt(_("Octave offset"),&pnOctave,1,4)) { PARAMETER if (pnOctave<0) pnOctave=0; if (pnOctave>15) pnOctave=15; ins->powernoise.octave=pnOctave; } - ImGui::Text("go to Macros for other parameters."); + ImGui::Text(_("go to Macros for other parameters.")); ImGui::EndTabItem(); } } @@ -7376,8 +7517,8 @@ void FurnaceGUI::drawInsEdit() { insTabSample(ins); } if (ins->type>=DIV_INS_MAX) { - if (ImGui::BeginTabItem("Error")) { - ImGui::Text("invalid instrument type! change it first."); + if (ImGui::BeginTabItem(_("Error"))) { + ImGui::Text(_("invalid instrument type! change it first.")); ImGui::EndTabItem(); } } @@ -7394,12 +7535,12 @@ void FurnaceGUI::drawInsEdit() { } } if (ImGui::BeginPopup("macroMenu",ImGuiWindowFlags_NoMove|ImGuiWindowFlags_AlwaysAutoResize|ImGuiWindowFlags_NoTitleBar|ImGuiWindowFlags_NoSavedSettings)) { - if (ImGui::MenuItem("copy")) { + if (ImGui::MenuItem(_("copy"))) { String mmlStr; encodeMMLStr(mmlStr,lastMacroDesc.macro->val,lastMacroDesc.macro->len,lastMacroDesc.macro->loop,lastMacroDesc.macro->rel); SDL_SetClipboardText(mmlStr.c_str()); } - if (ImGui::MenuItem("paste")) { + if (ImGui::MenuItem(_("paste"))) { String mmlStr; char* clipText=SDL_GetClipboardText(); if (clipText!=NULL) { @@ -7413,7 +7554,7 @@ void FurnaceGUI::drawInsEdit() { } } ImGui::Separator(); - if (ImGui::MenuItem("clear")) { + if (ImGui::MenuItem(_("clear"))) { lastMacroDesc.macro->len=0; lastMacroDesc.macro->loop=255; lastMacroDesc.macro->rel=255; @@ -7421,16 +7562,16 @@ void FurnaceGUI::drawInsEdit() { lastMacroDesc.macro->val[i]=0; } } - if (ImGui::MenuItem("clear contents")) { + if (ImGui::MenuItem(_("clear contents"))) { for (int i=0; i<256; i++) { lastMacroDesc.macro->val[i]=0; } } ImGui::Separator(); - if (ImGui::BeginMenu("offset...")) { - ImGui::InputInt("X",¯oOffX,1,10); - ImGui::InputInt("Y",¯oOffY,1,10); - if (ImGui::Button("offset")) { + if (ImGui::BeginMenu(_("offset..."))) { + ImGui::InputInt(_("X"),¯oOffX,1,10); + ImGui::InputInt(_("Y"),¯oOffY,1,10); + if (ImGui::Button(_("offset"))) { int oldData[256]; memset(oldData,0,256*sizeof(int)); memcpy(oldData,lastMacroDesc.macro->val,lastMacroDesc.macro->len*sizeof(int)); @@ -7460,13 +7601,13 @@ void FurnaceGUI::drawInsEdit() { } ImGui::EndMenu(); } - if (ImGui::BeginMenu("scale...")) { - if (ImGui::InputFloat("X",¯oScaleX,1.0f,10.0f,"%.2f%%")) { + if (ImGui::BeginMenu(_("scale..."))) { + if (ImGui::InputFloat(_("X"),¯oScaleX,1.0f,10.0f,"%.2f%%")) { if (macroScaleX<0.1) macroScaleX=0.1; if (macroScaleX>12800.0) macroScaleX=12800.0; } - ImGui::InputFloat("Y",¯oScaleY,1.0f,10.0f,"%.2f%%"); - if (ImGui::Button("scale")) { + ImGui::InputFloat(_("Y"),¯oScaleY,1.0f,10.0f,"%.2f%%"); + if (ImGui::Button(_("scale"))) { int oldData[256]; memset(oldData,0,256*sizeof(int)); memcpy(oldData,lastMacroDesc.macro->val,lastMacroDesc.macro->len*sizeof(int)); @@ -7488,14 +7629,14 @@ void FurnaceGUI::drawInsEdit() { } ImGui::EndMenu(); } - if (ImGui::BeginMenu("randomize...")) { + if (ImGui::BeginMenu(_("randomize..."))) { if (macroRandMinlastMacroDesc.max) macroRandMin=lastMacroDesc.max; if (macroRandMaxlastMacroDesc.max) macroRandMax=lastMacroDesc.max; - ImGui::InputInt("Min",¯oRandMin,1,10); - ImGui::InputInt("Max",¯oRandMax,1,10); - if (ImGui::Button("randomize")) { + ImGui::InputInt(_("Min"),¯oRandMin,1,10); + ImGui::InputInt(_("Max"),¯oRandMax,1,10); + if (ImGui::Button(_("randomize"))) { for (int i=0; ilen; i++) { int val=0; if (macroRandMax<=macroRandMin) { diff --git a/src/gui/intro.cpp b/src/gui/intro.cpp index f191d4b34..945ad1755 100644 --- a/src/gui/intro.cpp +++ b/src/gui/intro.cpp @@ -86,7 +86,7 @@ void FurnaceGUI::endIntroTune() { e->createNewFromDefaults(); } else { // load pending song if (load(curFileName)>0) { - showError(fmt::sprintf("Error while loading file! (%s)",lastError)); + showError(fmt::sprintf(_("Error while loading file! (%s)"),lastError)); curFileName=""; e->createNewFromDefaults(); } @@ -119,9 +119,9 @@ void FurnaceGUI::drawIntro(double introTime, bool monitor) { ImGui::SetNextWindowSize(ImVec2(canvasW,canvasH)); if (introPos<0.1) ImGui::SetNextWindowFocus(); } - if (ImGui::Begin(monitor?"IntroMon X":"Intro",NULL,monitor?globalWinFlags:(ImGuiWindowFlags_NoMove|ImGuiWindowFlags_NoResize|ImGuiWindowFlags_NoDocking|ImGuiWindowFlags_NoTitleBar|ImGuiWindowFlags_NoBackground))) { + if (ImGui::Begin(monitor?"IntroMon X":"Intro",NULL,monitor?globalWinFlags:(ImGuiWindowFlags_NoMove|ImGuiWindowFlags_NoResize|ImGuiWindowFlags_NoDocking|ImGuiWindowFlags_NoTitleBar|ImGuiWindowFlags_NoBackground),monitor?_("IntroMon X"):_("Intro"))) { if (monitor) { - if (ImGui::Button("Preview")) { + if (ImGui::Button(_("Preview"))) { introPos=0; tutorial.introPlayed=false; shortIntro=false; @@ -173,9 +173,9 @@ void FurnaceGUI::drawIntro(double introTime, bool monitor) { if (monitor) { ImVec2 textPos=ImLerp(top,bottom,ImVec2(0.5,0.5)); - textPos.x-=ImGui::CalcTextSize("SORRY NOTHING").x*0.5; - textPos.y-=ImGui::CalcTextSize("SORRY NOTHING").y*0.5; - dl->AddText(textPos,ImGui::GetColorU32(uiColors[GUI_COLOR_TEXT]),"SORRY NOTHING"); + textPos.x-=ImGui::CalcTextSize(_("SORRY NOTHING")).x*0.5; + textPos.y-=ImGui::CalcTextSize(_("SORRY NOTHING")).y*0.5; + dl->AddText(textPos,ImGui::GetColorU32(uiColors[GUI_COLOR_TEXT]),_("SORRY NOTHING")); } if (introSkip<0.5 || monitor) { @@ -307,7 +307,7 @@ void FurnaceGUI::drawIntro(double introTime, bool monitor) { } dl->AddRectFilled(top,bottom,ImGui::GetColorU32(ImVec4(0.0,0.0,0.0,CLAMP(introSkip*2.0,0.0,1.0)-CLAMP((introSkip-0.5)*4,0.0,1.0)))); - if (introSkip<0.5) dl->AddText(ImVec2(8.0*dpiScale,8.0*dpiScale),ImGui::GetColorU32(ImVec4(1.0,1.0,1.0,CLAMP(introSkip*8.0,0.0,1.0))),"hold to skip"); + if (introSkip<0.5) dl->AddText(ImVec2(8.0*dpiScale,8.0*dpiScale),ImGui::GetColorU32(ImVec4(1.0,1.0,1.0,CLAMP(introSkip*8.0,0.0,1.0))),_("hold to skip")); } } diff --git a/src/gui/log.cpp b/src/gui/log.cpp index 552259e91..699607863 100644 --- a/src/gui/log.cpp +++ b/src/gui/log.cpp @@ -22,11 +22,11 @@ #include const char* logLevels[5]={ - "ERROR", - "warning", - "info", - "debug", - "trace" + _N("ERROR"), + _N("warning"), + _N("info"), + _N("debug"), + _N("trace") }; FurnaceGUIColors logColors[5]={ @@ -44,13 +44,13 @@ void FurnaceGUI::drawLog() { nextWindow=GUI_WINDOW_NOTHING; } if (!logOpen) return; - if (ImGui::Begin("Log Viewer",&logOpen,globalWinFlags)) { - ImGui::Checkbox("Follow",&followLog); + if (ImGui::Begin("Log Viewer",&logOpen,globalWinFlags,_("Log Viewer"))) { + ImGui::Checkbox(_("Follow"),&followLog); ImGui::SameLine(); - ImGui::Text("Level"); + ImGui::Text(_("Level")); ImGui::SameLine(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); - ImGui::Combo("##LogLevel",&logLevel,logLevels,5); + ImGui::Combo("##LogLevel",&logLevel,LocalizedComboGetter,logLevels,5); if (ImGui::BeginTable("LogView",3,ImGuiTableFlags_ScrollY|ImGuiTableFlags_BordersInnerV)) { ImGui::PushFont(patFont); @@ -65,11 +65,11 @@ void FurnaceGUI::drawLog() { ImGui::TableNextRow(ImGuiTableRowFlags_Headers); ImGui::TableNextColumn(); - ImGui::TextUnformatted("time"); + ImGui::TextUnformatted(_("time")); ImGui::TableNextColumn(); - ImGui::TextUnformatted("level"); + ImGui::TextUnformatted(_("level")); ImGui::TableNextColumn(); - ImGui::TextUnformatted("message"); + ImGui::TextUnformatted(_("message")); int pos=logPosition; for (int i=0; igetSample(entry.asset); ImGui::Text("%d: %s",curHover,sample->name.c_str()); if ((int)entry.type>=(int)DIV_MEMORY_BANK0) { - ImGui::Text("bank %d",(int)entry.type-(int)DIV_MEMORY_BANK0); + ImGui::Text(_("bank %d"),(int)entry.type-(int)DIV_MEMORY_BANK0); } if ((entry.end-entry.begin)>=1024 && settings.memUsageUnit==1) { ImGui::Text("%d-%d ($%x-$%x): %dK ($%x)",(int)entry.begin,(int)entry.end-1,(int)entry.begin,(int)entry.end-1,(int)(entry.end-entry.begin)>>10,(int)(entry.end-entry.begin)); @@ -172,8 +172,8 @@ void FurnaceGUI::drawMemory() { if (!have) { ImGui::SetCursorPosY(ImGui::GetCursorPosY()+(ImGui::GetContentRegionAvail().y-ImGui::GetFrameHeight()+ImGui::GetStyle().ItemSpacing.y)*0.5f); - CENTER_TEXT("no chips with memory"); - ImGui::Text("no chips with memory"); + CENTER_TEXT(_("no chips with memory")); + ImGui::Text(_("no chips with memory")); } } if (ImGui::IsWindowFocused(ImGuiFocusedFlags_ChildWindows)) curWindow=GUI_WINDOW_MEMORY; diff --git a/src/gui/mixer.cpp b/src/gui/mixer.cpp index 0c0325e9b..388c1e280 100644 --- a/src/gui/mixer.cpp +++ b/src/gui/mixer.cpp @@ -25,8 +25,8 @@ #include "imgui_internal.h" const char* portNamesStereo[2]={ - "left", - "right" + _N("left"), + _N("right") }; ImVec2 FurnaceGUI::calcPortSetSize(String label, int ins, int outs) { @@ -125,10 +125,10 @@ bool FurnaceGUI::portSet(String label, unsigned int portSetID, int ins, int outs // input ports for (int i=0; i2) { portLabel=fmt::sprintf("%d",i+1); } @@ -165,10 +165,10 @@ bool FurnaceGUI::portSet(String label, unsigned int portSetID, int ins, int outs // output ports for (int i=0; i2) { portLabel=fmt::sprintf("%d",i+1); } @@ -223,10 +223,10 @@ void FurnaceGUI::drawMixer() { } else { ImGui::SetNextWindowSizeConstraints(ImVec2(400.0f*dpiScale,200.0f*dpiScale),ImVec2(canvasW,canvasH)); } - if (ImGui::Begin("Mixer",&mixerOpen,globalWinFlags|(settings.allowEditDocking?0:ImGuiWindowFlags_NoDocking))) { + if (ImGui::Begin("Mixer",&mixerOpen,globalWinFlags|(settings.allowEditDocking?0:ImGuiWindowFlags_NoDocking),_("Mixer"))) { if (ImGui::BeginTabBar("MixerView")) { - if (ImGui::BeginTabItem("Mixer")) { - if (ImGui::SliderFloat("Master Volume",&e->song.masterVol,0,3,"%.2fx")) { + if (ImGui::BeginTabItem(_("Mixer"))) { + if (ImGui::SliderFloat(_("Master Volume"),&e->song.masterVol,0,3,"%.2fx")) { if (e->song.masterVol<0) e->song.masterVol=0; if (e->song.masterVol>3) e->song.masterVol=3; MARK_MODIFIED; @@ -247,7 +247,7 @@ void FurnaceGUI::drawMixer() { ImGui::AlignTextToFramePadding(); ImGui::Text("%d. %s",i+1,getSystemName(e->song.system[i])); ImGui::TableNextColumn(); - if (ImGui::Checkbox("Invert",&doInvert)) { + if (ImGui::Checkbox(_("Invert"),&doInvert)) { e->song.systemVol[i]=-e->song.systemVol[i]; MARK_MODIFIED; } @@ -265,7 +265,7 @@ void FurnaceGUI::drawMixer() { MARK_MODIFIED; } rightClickable ImGui::TableNextColumn(); - ImGui::Text("Volume"); + ImGui::Text(_("Volume")); ImGui::TableNextRow(); ImGui::TableNextColumn(); @@ -276,7 +276,7 @@ void FurnaceGUI::drawMixer() { MARK_MODIFIED; } rightClickable ImGui::TableNextColumn(); - ImGui::Text("Panning"); + ImGui::Text(_("Panning")); ImGui::TableNextRow(); ImGui::TableNextColumn(); @@ -287,7 +287,7 @@ void FurnaceGUI::drawMixer() { MARK_MODIFIED; } rightClickable ImGui::TableNextColumn(); - ImGui::Text("Front/Rear"); + ImGui::Text(_("Front/Rear")); ImGui::PopID(); } @@ -296,20 +296,20 @@ void FurnaceGUI::drawMixer() { } ImGui::EndTabItem(); } - if (ImGui::BeginTabItem("Patchbay")) { + if (ImGui::BeginTabItem(_("Patchbay"))) { std::map portPos; if (ImGui::BeginTable("PatchbayOptions",3)) { ImGui::TableNextRow(); ImGui::TableNextColumn(); - if (ImGui::Checkbox("Automatic patchbay",&e->song.patchbayAuto)) { + if (ImGui::Checkbox(_("Automatic patchbay"),&e->song.patchbayAuto)) { if (e->song.patchbayAuto) e->autoPatchbayP(); MARK_MODIFIED; } ImGui::TableNextColumn(); - ImGui::Checkbox("Display hidden ports",&displayHiddenPorts); + ImGui::Checkbox(_("Display hidden ports"),&displayHiddenPorts); ImGui::TableNextColumn(); - ImGui::Checkbox("Display internal",&displayInternalPorts); + ImGui::Checkbox(_("Display internal"),&displayInternalPorts); ImGui::EndTable(); } @@ -319,7 +319,7 @@ void FurnaceGUI::drawMixer() { if (ImGui::BeginChild("Patchbay",ImVec2(0,0),true)) { ImDrawList* dl=ImGui::GetWindowDrawList(); ImVec2 topPos=ImGui::GetCursorPos(); - ImVec2 sysSize=calcPortSetSize("System",displayHiddenPorts?DIV_MAX_OUTPUTS:e->getAudioDescGot().outChans,0); + ImVec2 sysSize=calcPortSetSize(_("System"),displayHiddenPorts?DIV_MAX_OUTPUTS:e->getAudioDescGot().outChans,0); topPos.x+=ImGui::GetContentRegionAvail().x-sysSize.x; if (ImGui::GetContentRegionAvail().y>sysSize.y) topPos.y+=(ImGui::GetContentRegionAvail().y-sysSize.y)*0.5+ImGui::GetScrollY(); @@ -351,7 +351,7 @@ void FurnaceGUI::drawMixer() { // metronome/sample preview if (displayInternalPorts) { - if (portSet("Sample Preview",0xffd,0,1,0,1,selectedSubPort,portPos)) { + if (portSet(_("Sample Preview"),0xffd,0,1,0,1,selectedSubPort,portPos)) { selectedPortSet=0xffd; if (selectedSubPort>=0) { portDragActive=true; @@ -364,7 +364,7 @@ void FurnaceGUI::drawMixer() { } } } - if (portSet("Metronome",0xffe,0,1,0,1,selectedSubPort,portPos)) { + if (portSet(_("Metronome"),0xffe,0,1,0,1,selectedSubPort,portPos)) { selectedPortSet=0xffe; if (selectedSubPort>=0) { portDragActive=true; @@ -380,7 +380,7 @@ void FurnaceGUI::drawMixer() { } ImGui::SetCursorPos(topPos); - if (portSet("System",0x1000,displayHiddenPorts?DIV_MAX_OUTPUTS:e->getAudioDescGot().outChans,0,e->getAudioDescGot().outChans,0,selectedSubPort,portPos)) { + if (portSet(_("System"),0x1000,displayHiddenPorts?DIV_MAX_OUTPUTS:e->getAudioDescGot().outChans,0,e->getAudioDescGot().outChans,0,selectedSubPort,portPos)) { selectedPortSet=0x1000; if (selectedSubPort>=0) { portDragActive=true; @@ -443,7 +443,7 @@ void FurnaceGUI::drawMixer() { } } if (ImGui::BeginPopup("SubPortOptions",ImGuiWindowFlags_NoMove|ImGuiWindowFlags_AlwaysAutoResize|ImGuiWindowFlags_NoTitleBar|ImGuiWindowFlags_NoSavedSettings)) { - if (ImGui::MenuItem("disconnect all")) { + if (ImGui::MenuItem(_("disconnect all"))) { e->patchDisconnectAll(selectedPortSet); MARK_MODIFIED; } diff --git a/src/gui/newSong.cpp b/src/gui/newSong.cpp index 2d780f48b..d542188a4 100644 --- a/src/gui/newSong.cpp +++ b/src/gui/newSong.cpp @@ -119,8 +119,8 @@ void FurnaceGUI::drawNewSong() { std::vector sysDefStack; ImGui::PushFont(bigFont); - ImGui::SetCursorPosX((ImGui::GetContentRegionAvail().x-ImGui::CalcTextSize("Choose a System!").x)*0.5); - ImGui::Text("Choose a System!"); + ImGui::SetCursorPosX((ImGui::GetContentRegionAvail().x-ImGui::CalcTextSize(_("Choose a System!")).x)*0.5); + ImGui::Text(_("Choose a System!")); ImGui::PopFont(); ImVec2 avail=ImGui::GetContentRegionAvail(); @@ -130,7 +130,7 @@ void FurnaceGUI::drawNewSong() { if (newSongFirstFrame) ImGui::SetKeyboardFocusHere(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); - if (ImGui::InputTextWithHint("##SysSearch","Search...",&newSongQuery)) { + if (ImGui::InputTextWithHint("##SysSearch",_("Search..."),&newSongQuery)) { String lowerCase=newSongQuery; for (char& i: lowerCase) { if (i>='A' && i<='Z') i+='a'-'A'; @@ -176,9 +176,9 @@ void FurnaceGUI::drawNewSong() { if (newSongQuery.empty()) { ImGui::TableNextRow(ImGuiTableRowFlags_Headers); ImGui::TableNextColumn(); - ImGui::Text("Categories"); + ImGui::Text(_("Categories")); ImGui::TableNextColumn(); - ImGui::Text("Systems"); + ImGui::Text(_("Systems")); } ImGui::TableNextRow(); @@ -207,9 +207,9 @@ void FurnaceGUI::drawNewSong() { ImGui::TableNextRow(); ImGui::TableNextColumn(); if (newSongQuery.empty()) { - ImGui::Text("no systems here yet!"); + ImGui::Text(_("no systems here yet!")); } else { - ImGui::Text("no results"); + ImGui::Text(_("no results")); } } else { bool alreadyHover=false; @@ -225,9 +225,9 @@ void FurnaceGUI::drawNewSong() { } ImGui::EndChild(); - if (ImGui::Button("I'm feeling lucky")) { + if (ImGui::Button(_("I'm feeling lucky"))) { if (sysCategories.size()==0) { - showError("no categories available! what in the world."); + showError(_("no categories available! what in the world.")); ImGui::CloseCurrentPopup(); } else { int tries=0; @@ -262,7 +262,7 @@ void FurnaceGUI::drawNewSong() { } if (tries>=50) { - showError("it appears you're extremely lucky today!"); + showError(_("it appears you're extremely lucky today!")); ImGui::CloseCurrentPopup(); } } @@ -270,7 +270,7 @@ void FurnaceGUI::drawNewSong() { ImGui::SameLine(); - if (ImGui::Button("Cancel") || ImGui::IsKeyPressed(ImGuiKey_Escape)) { + if (ImGui::Button(_("Cancel")) || ImGui::IsKeyPressed(ImGuiKey_Escape)) { ImGui::CloseCurrentPopup(); } diff --git a/src/gui/orders.cpp b/src/gui/orders.cpp index 2ff6d13b8..80d4c783f 100644 --- a/src/gui/orders.cpp +++ b/src/gui/orders.cpp @@ -111,7 +111,7 @@ void FurnaceGUI::drawOrderButtons() { doAction(GUI_ACTION_ORDERS_ADD); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Add new order"); + ImGui::SetTooltip(_("Add new order")); } NEXT_BUTTON; @@ -122,7 +122,7 @@ void FurnaceGUI::drawOrderButtons() { } popDestColor(); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Remove order"); + ImGui::SetTooltip(_("Remove order")); } NEXT_BUTTON; @@ -134,7 +134,7 @@ void FurnaceGUI::drawOrderButtons() { doAction(GUI_ACTION_ORDERS_DEEP_CLONE); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Duplicate order (right-click to deep clone)"); + ImGui::SetTooltip(_("Duplicate order (right-click to deep clone)")); } NEXT_BUTTON; @@ -143,7 +143,7 @@ void FurnaceGUI::drawOrderButtons() { doAction(GUI_ACTION_ORDERS_MOVE_UP); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Move order up"); + ImGui::SetTooltip(_("Move order up")); } NEXT_BUTTON; @@ -152,7 +152,7 @@ void FurnaceGUI::drawOrderButtons() { doAction(GUI_ACTION_ORDERS_MOVE_DOWN); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Move order down"); + ImGui::SetTooltip(_("Move order down")); } NEXT_BUTTON; @@ -164,7 +164,7 @@ void FurnaceGUI::drawOrderButtons() { doAction(GUI_ACTION_ORDERS_DEEP_CLONE_END); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Place copy of current order at end of song (right-click to deep clone)"); + ImGui::SetTooltip(_("Place copy of current order at end of song (right-click to deep clone)")); } NEXT_BUTTON; @@ -174,9 +174,9 @@ void FurnaceGUI::drawOrderButtons() { } if (ImGui::IsItemHovered()) { if (changeAllOrders) { - ImGui::SetTooltip("Order change mode: entire row"); + ImGui::SetTooltip(_("Order change mode: entire row")); } else { - ImGui::SetTooltip("Order change mode: one"); + ImGui::SetTooltip(_("Order change mode: one")); } } NEXT_BUTTON; @@ -202,13 +202,13 @@ void FurnaceGUI::drawOrderButtons() { } if (ImGui::IsItemHovered()) { if (orderEditMode==3) { - ImGui::SetTooltip("Order edit mode: Select and type (scroll vertically)"); + ImGui::SetTooltip(_("Order edit mode: Select and type (scroll vertically)")); } else if (orderEditMode==2) { - ImGui::SetTooltip("Order edit mode: Select and type (scroll horizontally)"); + ImGui::SetTooltip(_("Order edit mode: Select and type (scroll horizontally)")); } else if (orderEditMode==1) { - ImGui::SetTooltip("Order edit mode: Select and type (don't scroll)"); + ImGui::SetTooltip(_("Order edit mode: Select and type (don't scroll)")); } else { - ImGui::SetTooltip("Order edit mode: Click to change"); + ImGui::SetTooltip(_("Order edit mode: Click to change")); } } } @@ -229,7 +229,7 @@ void FurnaceGUI::drawOrders() { } else { //ImGui::SetNextWindowSizeConstraints(ImVec2(440.0f*dpiScale,400.0f*dpiScale),ImVec2(canvasW,canvasH)); } - if (ImGui::Begin("Orders",&ordersOpen,globalWinFlags|ImGuiWindowFlags_NoScrollbar|ImGuiWindowFlags_NoScrollWithMouse)) { + if (ImGui::Begin("Orders",&ordersOpen,globalWinFlags|ImGuiWindowFlags_NoScrollbar|ImGuiWindowFlags_NoScrollWithMouse,_("Orders"))) { if (ImGui::BeginTable("OrdColumn",(settings.orderButtonPos==0)?1:2,ImGuiTableFlags_BordersInnerV)) { if (settings.orderButtonPos==2) { ImGui::TableSetupColumn("c0",ImGuiTableColumnFlags_WidthStretch); diff --git a/src/gui/osc.cpp b/src/gui/osc.cpp index 7af0bce24..8e373e65a 100644 --- a/src/gui/osc.cpp +++ b/src/gui/osc.cpp @@ -166,14 +166,14 @@ void FurnaceGUI::drawOsc() { ImGui::PushStyleVar(ImGuiStyleVar_ItemSpacing,ImVec2(0,0)); ImGui::PushStyleVar(ImGuiStyleVar_ItemInnerSpacing,ImVec2(0,0)); } - if (ImGui::Begin("Oscilloscope",&oscOpen,globalWinFlags)) { + if (ImGui::Begin("Oscilloscope",&oscOpen,globalWinFlags,_("Oscilloscope"))) { if (oscZoomSlider) { if (ImGui::VSliderFloat("##OscZoom",ImVec2(20.0f*dpiScale,ImGui::GetContentRegionAvail().y),&oscZoom,0.5,2.0)) { if (oscZoom<0.5) oscZoom=0.5; if (oscZoom>2.0) oscZoom=2.0; } rightClickable if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("zoom: %.2fx (%.1fdB)",oscZoom,20.0*log10(oscZoom*2.0)); + ImGui::SetTooltip(_("zoom: %.2fx (%.1fdB)"),oscZoom,20.0*log10(oscZoom*2.0)); } if (ImGui::IsItemClicked(ImGuiMouseButton_Middle)) { oscZoom=0.5; @@ -184,7 +184,7 @@ void FurnaceGUI::drawOsc() { if (oscWindowSize>100.0) oscWindowSize=100.0; } rightClickable if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("window size: %.1fms",oscWindowSize); + ImGui::SetTooltip(_("window size: %.1fms"),oscWindowSize); } if (ImGui::IsItemClicked(ImGuiMouseButton_Middle)) { oscWindowSize=20.0; @@ -382,7 +382,7 @@ void FurnaceGUI::drawOsc() { float val=20.0*log10(2.0*fabs(0.5-((ImGui::GetMousePos().y-inRect.Min.y)/(inRect.Max.y-inRect.Min.y)))); if (val>0.0f) val=0.0f; if (val<=-INFINITY) { - ImGui::SetTooltip("(-Infinity)dB"); + ImGui::SetTooltip(_("(-Infinity)dB")); } else { ImGui::SetTooltip("%.1fdB",val); } diff --git a/src/gui/patManager.cpp b/src/gui/patManager.cpp index 55439365c..c97d1f8bc 100644 --- a/src/gui/patManager.cpp +++ b/src/gui/patManager.cpp @@ -32,29 +32,29 @@ void FurnaceGUI::drawPatManager() { char id[1024]; unsigned char isUsed[DIV_MAX_PATTERNS]; bool isNull[DIV_MAX_PATTERNS]; - if (ImGui::Begin("Pattern Manager",&patManagerOpen,globalWinFlags)) { - if (ImGui::Button("De-duplicate patterns")) { + if (ImGui::Begin("Pattern Manager",&patManagerOpen,globalWinFlags,_("Pattern Manager"))) { + if (ImGui::Button(_("De-duplicate patterns"))) { e->lockEngine([this]() { e->curSubSong->optimizePatterns(); }); MARK_MODIFIED; } ImGui::SameLine(); - if (ImGui::Button("Re-arrange patterns")) { + if (ImGui::Button(_("Re-arrange patterns"))) { e->lockEngine([this]() { e->curSubSong->rearrangePatterns(); }); MARK_MODIFIED; } ImGui::SameLine(); - if (ImGui::Button("Sort orders")) { + if (ImGui::Button(_("Sort orders"))) { e->lockEngine([this]() { e->curSubSong->sortOrders(); }); MARK_MODIFIED; } ImGui::SameLine(); - if (ImGui::Button("Make patterns unique")) { + if (ImGui::Button(_("Make patterns unique"))) { e->lockEngine([this]() { e->curSubSong->makePatUnique(); }); @@ -100,9 +100,9 @@ void FurnaceGUI::drawPatManager() { ImGui::PushFont(mainFont); ImGui::PushStyleColor(ImGuiCol_Text,uiColors[GUI_COLOR_TEXT]); if (isNull[k]) { - ImGui::SetTooltip("Pattern %.2X\n- not allocated",k); + ImGui::SetTooltip(_("Pattern %.2X\n- not allocated"),k); } else { - ImGui::SetTooltip("Pattern %.2X\n- use count: %d (%.0f%%)\n\nright-click to erase",k,isUsed[k],100.0*(double)isUsed[k]/(double)e->curSubSong->ordersLen); + ImGui::SetTooltip(_("Pattern %.2X\n- use count: %d (%.0f%%)\n\nright-click to erase"),k,isUsed[k],100.0*(double)isUsed[k]/(double)e->curSubSong->ordersLen); } ImGui::PopStyleColor(); ImGui::PopFont(); diff --git a/src/gui/pattern.cpp b/src/gui/pattern.cpp index a1fc3a87c..3b95780db 100644 --- a/src/gui/pattern.cpp +++ b/src/gui/pattern.cpp @@ -430,7 +430,7 @@ void FurnaceGUI::drawPattern() { ImGui::SetNextWindowPos(patWindowPos); ImGui::SetNextWindowSize(patWindowSize); } - if (ImGui::Begin("Pattern",&patternOpen,globalWinFlags|(settings.avoidRaisingPattern?ImGuiWindowFlags_NoBringToFrontOnFocus:0)|(settings.cursorFollowsWheel?ImGuiWindowFlags_NoScrollWithMouse:0))) { + if (ImGui::Begin("Pattern",&patternOpen,globalWinFlags|(settings.avoidRaisingPattern?ImGuiWindowFlags_NoBringToFrontOnFocus:0)|(settings.cursorFollowsWheel?ImGuiWindowFlags_NoScrollWithMouse:0),_("Pattern"))) { if (!mobileUI) { patWindowPos=ImGui::GetWindowPos(); patWindowSize=ImGui::GetWindowSize(); @@ -465,7 +465,7 @@ void FurnaceGUI::drawPattern() { ImDrawList* tdl=NULL; if (chans<1) { - ImGui::Text("there aren't any channels to show."); + ImGui::Text(_("there aren't any channels to show.")); } else if (ImGui::BeginTable("PatternView",displayChans+2,ImGuiTableFlags_BordersInnerV|ImGuiTableFlags_ScrollX|ImGuiTableFlags_ScrollY|ImGuiTableFlags_NoPadInnerX|ImGuiTableFlags_NoBordersInFrozenArea|((settings.cursorFollowsWheel || wheelCalmDown)?ImGuiTableFlags_NoScrollWithMouse:0))) { ImGui::TableSetupColumn("pos",ImGuiTableColumnFlags_WidthFixed); char chanID[2048]; @@ -489,7 +489,7 @@ void FurnaceGUI::drawPattern() { ImGui::OpenPopup("PatternOpt"); } if (ImGui::IsItemHovered() && !mobileUI) { - ImGui::SetTooltip("click for pattern options (effect columns/pattern names/visualizer)"); + ImGui::SetTooltip(_("click for pattern options (effect columns/pattern names/visualizer)")); } if (ImGui::IsItemClicked(ImGuiMouseButton_Right)) { fancyPattern=!fancyPattern; @@ -501,12 +501,12 @@ void FurnaceGUI::drawPattern() { ImGui::PushStyleVar(ImGuiStyleVar_WindowPadding,origWinPadding); ImGui::PushFont(mainFont); if (ImGui::BeginPopup("PatternOpt",ImGuiWindowFlags_NoMove|ImGuiWindowFlags_AlwaysAutoResize|ImGuiWindowFlags_NoTitleBar|ImGuiWindowFlags_NoSavedSettings)) { - ImGui::Text("Options:"); + ImGui::Text(_("Options:")); ImGui::Indent(); - ImGui::Checkbox("Effect columns/collapse",&patExtraButtons); - ImGui::Checkbox("Pattern names",&patChannelNames); - ImGui::Checkbox("Channel group hints",&patChannelPairs); - if (ImGui::Checkbox("Visualizer",&fancyPattern)) { + ImGui::Checkbox(_("Effect columns/collapse"),&patExtraButtons); + ImGui::Checkbox(_("Pattern names"),&patChannelNames); + ImGui::Checkbox(_("Channel group hints"),&patChannelPairs); + if (ImGui::Checkbox(_("Visualizer"),&fancyPattern)) { inhibitMenu=true; e->enableCommandStream(fancyPattern); e->getCommandStream(cmdStream); @@ -514,19 +514,19 @@ void FurnaceGUI::drawPattern() { } ImGui::Unindent(); - ImGui::Text("Channel status:"); + ImGui::Text(_("Channel status:")); ImGui::Indent(); - if (ImGui::RadioButton("No##_PCS0",patChannelHints==0)) { + if (ImGui::RadioButton(_("No##_PCS0"),patChannelHints==0)) { patChannelHints=0; } - if (ImGui::RadioButton("Yes##_PCS1",patChannelHints==1)) { + if (ImGui::RadioButton(_("Yes##_PCS1"),patChannelHints==1)) { patChannelHints=1; } /* - if (ImGui::RadioButton("Regular##_PCS2",patChannelHints==2)) { + if (ImGui::RadioButton(_("Regular##_PCS2"),patChannelHints==2)) { patChannelHints=2; } - if (ImGui::RadioButton("Detailed##_PCS3",patChannelHints==3)) { + if (ImGui::RadioButton(_("Detailed##_PCS3"),patChannelHints==3)) { patChannelHints=3; }*/ ImGui::Unindent(); @@ -1417,11 +1417,11 @@ void FurnaceGUI::drawPattern() { if (tdl!=NULL && failedNoteOn) { ImVec2 winCenter=ImGui::GetWindowPos()+ImGui::GetWindowSize()*0.5f; ImGui::PushFont(bigFont); - ImVec2 warnHeadSize=ImGui::CalcTextSize("WARNING!!"); + ImVec2 warnHeadSize=ImGui::CalcTextSize(_("WARNING!!")); ImGui::PopFont(); - ImVec2 warnTextSize1=ImGui::CalcTextSize("this instrument cannot be previewed because"); - ImVec2 warnTextSize2=ImGui::CalcTextSize("none of the chips can play it"); - ImVec2 warnTextSize3=ImGui::CalcTextSize("your instrument is in peril!! be careful..."); + ImVec2 warnTextSize1=ImGui::CalcTextSize(_("this instrument cannot be previewed because")); + ImVec2 warnTextSize2=ImGui::CalcTextSize(_("none of the chips can play it")); + ImVec2 warnTextSize3=ImGui::CalcTextSize(_("your instrument is in peril!! be careful...")); float maxTextSize=warnHeadSize.x; if (warnTextSize1.x>maxTextSize) maxTextSize=warnTextSize1.x; @@ -1449,28 +1449,28 @@ void FurnaceGUI::drawPattern() { MAX(1,40*dpiScale), ImVec2(winCenter.x-warnHeadSize.x*0.5,whereY), ImGui::GetColorU32(ImGuiCol_Text), - "WARNING!!" + _("WARNING!!") ); whereY+=warnHeadSize.y; tdl->AddText( ImVec2(winCenter.x-warnTextSize1.x*0.5,whereY), ImGui::GetColorU32(ImGuiCol_Text), - "this instrument cannot be previewed because" + _("this instrument cannot be previewed because") ); whereY+=warnTextSize1.y; tdl->AddText( ImVec2(winCenter.x-warnTextSize2.x*0.5,whereY), ImGui::GetColorU32(ImGuiCol_Text), - "none of the chips can play it" + _("none of the chips can play it") ); whereY+=warnTextSize2.y; tdl->AddText( ImVec2(winCenter.x-warnTextSize3.x*0.5,whereY), ImGui::GetColorU32(ImGuiCol_Text), - "your instrument is in peril!! be careful..." + _("your instrument is in peril!! be careful...") ); whereY+=warnTextSize3.y; } @@ -1759,7 +1759,5 @@ void FurnaceGUI::drawPattern() { } if (ImGui::IsWindowFocused(ImGuiFocusedFlags_ChildWindows)) curWindow=GUI_WINDOW_PATTERN; ImGui::End(); - //int delta1=SDL_GetPerformanceCounter(); - //logV("render time: %dµs",(delta1-delta0)/(SDL_GetPerformanceFrequency()/1000000)); } diff --git a/src/gui/piano.cpp b/src/gui/piano.cpp index d71740cdb..27dd3d358 100644 --- a/src/gui/piano.cpp +++ b/src/gui/piano.cpp @@ -60,7 +60,7 @@ void FurnaceGUI::drawPiano() { ImGui::SetNextWindowPos(ImVec2(patWindowPos.x,patWindowPos.y+patWindowSize.y)); ImGui::SetNextWindowSize(portrait?ImVec2(canvasW,0.4*canvasW):ImVec2(canvasW-(0.16*canvasH),0.3*canvasH)); } - if (ImGui::Begin("Piano",&pianoOpen,((pianoOptions)?0:ImGuiWindowFlags_NoTitleBar)|ImGuiWindowFlags_NoScrollbar|ImGuiWindowFlags_NoScrollWithMouse|globalWinFlags)) { + if (ImGui::Begin("Piano",&pianoOpen,((pianoOptions)?0:ImGuiWindowFlags_NoTitleBar)|ImGuiWindowFlags_NoScrollbar|ImGuiWindowFlags_NoScrollWithMouse|globalWinFlags,_("Piano"))) { bool oldPianoKeyPressed[180]; memcpy(oldPianoKeyPressed,pianoKeyPressed,180*sizeof(bool)); memset(pianoKeyPressed,0,180*sizeof(bool)); @@ -100,38 +100,38 @@ void FurnaceGUI::drawPiano() { ImGui::SameLine(); ImGui::Button(ICON_FA_ELLIPSIS_V "##PianoOptions",optionSize); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Options"); + ImGui::SetTooltip(_("Options")); } if (ImGui::BeginPopupContextItem("PianoOptions",ImGuiPopupFlags_MouseButtonLeft)) { - ImGui::Text("Key layout:"); + ImGui::Text(_("Key layout:")); ImGui::Indent(); - if (ImGui::RadioButton("Automatic",pianoView==PIANO_LAYOUT_AUTOMATIC)) { + if (ImGui::RadioButton(_("Automatic"),pianoView==PIANO_LAYOUT_AUTOMATIC)) { pianoView=PIANO_LAYOUT_AUTOMATIC; } - if (ImGui::RadioButton("Standard",pianoView==PIANO_LAYOUT_STANDARD)) { + if (ImGui::RadioButton(_("Standard"),pianoView==PIANO_LAYOUT_STANDARD)) { pianoView=PIANO_LAYOUT_STANDARD; } - if (ImGui::RadioButton("Continuous",pianoView==PIANO_LAYOUT_CONTINUOUS)) { + if (ImGui::RadioButton(_("Continuous"),pianoView==PIANO_LAYOUT_CONTINUOUS)) { pianoView=PIANO_LAYOUT_CONTINUOUS; } ImGui::Unindent(); - ImGui::Text("Value input pad:"); + ImGui::Text(_("Value input pad:")); ImGui::Indent(); - if (ImGui::RadioButton("Disabled",pianoInputPadMode==PIANO_INPUT_PAD_DISABLE)) { + if (ImGui::RadioButton(_("Disabled"),pianoInputPadMode==PIANO_INPUT_PAD_DISABLE)) { pianoInputPadMode=PIANO_INPUT_PAD_DISABLE; } - if (ImGui::RadioButton("Replace piano",pianoInputPadMode==PIANO_INPUT_PAD_REPLACE)) { + if (ImGui::RadioButton(_("Replace piano"),pianoInputPadMode==PIANO_INPUT_PAD_REPLACE)) { pianoInputPadMode=PIANO_INPUT_PAD_REPLACE; } - if (ImGui::RadioButton("Split (automatic)",pianoInputPadMode==PIANO_INPUT_PAD_SPLIT_AUTO)) { + if (ImGui::RadioButton(_("Split (automatic)"),pianoInputPadMode==PIANO_INPUT_PAD_SPLIT_AUTO)) { pianoInputPadMode=PIANO_INPUT_PAD_SPLIT_AUTO; } - if (ImGui::RadioButton("Split (always visible)",pianoInputPadMode==PIANO_INPUT_PAD_SPLIT_VISIBLE)) { + if (ImGui::RadioButton(_("Split (always visible)"),pianoInputPadMode==PIANO_INPUT_PAD_SPLIT_VISIBLE)) { pianoInputPadMode=PIANO_INPUT_PAD_SPLIT_VISIBLE; } ImGui::Unindent(); - ImGui::Checkbox("Share play/edit offset/range",&pianoSharePosition); - ImGui::Checkbox("Read-only (can't input notes)",&pianoReadonly); + ImGui::Checkbox(_("Share play/edit offset/range"),&pianoSharePosition); + ImGui::Checkbox(_("Read-only (can't input notes)"),&pianoReadonly); ImGui::EndPopup(); } diff --git a/src/gui/regView.cpp b/src/gui/regView.cpp index 6ad6c0814..c54a3ca7e 100644 --- a/src/gui/regView.cpp +++ b/src/gui/regView.cpp @@ -27,7 +27,7 @@ void FurnaceGUI::drawRegView() { nextWindow=GUI_WINDOW_NOTHING; } if (!regViewOpen) return; - if (ImGui::Begin("Register View",®ViewOpen,globalWinFlags)) { + if (ImGui::Begin("Register View",®ViewOpen,globalWinFlags,_("Register View"))) { for (int i=0; isong.systemLen; i++) { ImGui::Text("%d. %s",i+1,getSystemName(e->song.system[i])); int size=0; @@ -35,7 +35,7 @@ void FurnaceGUI::drawRegView() { unsigned char* regPool=e->getRegisterPool(i,size,depth); unsigned short* regPoolW=(unsigned short*)regPool; if (regPool==NULL) { - ImGui::Text("- no register pool available"); + ImGui::Text(_("- no register pool available")); } else { ImGui::PushFont(patFont); if (ImGui::BeginTable("Memory",17)) { diff --git a/src/gui/sampleEdit.cpp b/src/gui/sampleEdit.cpp index 4a85cdd06..dfcc1edc9 100644 --- a/src/gui/sampleEdit.cpp +++ b/src/gui/sampleEdit.cpp @@ -62,21 +62,21 @@ const double timeMultipliers[13]={ #define MAX_RATE(_name,_x) \ if (e->isPreviewingSample()) { \ if ((int)e->getSamplePreviewRate()>(int)(_x)) { \ - SAMPLE_WARN(warnRate,fmt::sprintf("%s: maximum sample rate is %d",_name,(int)(_x))); \ + SAMPLE_WARN(warnRate,fmt::sprintf(_("%s: maximum sample rate is %d"),_name,(int)(_x))); \ } \ } #define MIN_RATE(_name,_x) \ if (e->isPreviewingSample()) { \ if ((int)e->getSamplePreviewRate()<(int)(_x)) { \ - SAMPLE_WARN(warnRate,fmt::sprintf("%s: minimum sample rate is %d",_name,(int)(_x))); \ + SAMPLE_WARN(warnRate,fmt::sprintf(_("%s: minimum sample rate is %d"),_name,(int)(_x))); \ } \ } #define EXACT_RATE(_name,_x) \ if (e->isPreviewingSample()) { \ if ((int)e->getSamplePreviewRate()!=(int)(_x)) { \ - SAMPLE_WARN(warnRate,fmt::sprintf("%s: sample rate must be %d",_name,(int)(_x))); \ + SAMPLE_WARN(warnRate,fmt::sprintf(_("%s: sample rate must be %d"),_name,(int)(_x))); \ } \ } @@ -93,11 +93,11 @@ void FurnaceGUI::drawSampleEdit() { ImGui::SetNextWindowPos(patWindowPos); ImGui::SetNextWindowSize(patWindowSize); } - if (ImGui::Begin("Sample Editor",&sampleEditOpen,globalWinFlags|(settings.allowEditDocking?0:ImGuiWindowFlags_NoDocking))) { + if (ImGui::Begin("Sample Editor",&sampleEditOpen,globalWinFlags|(settings.allowEditDocking?0:ImGuiWindowFlags_NoDocking),_("Sample Editor"))) { if (curSample<0 || curSample>=(int)e->song.sample.size()) { ImGui::SetCursorPosY(ImGui::GetCursorPosY()+(ImGui::GetContentRegionAvail().y-ImGui::GetFrameHeightWithSpacing()*2.0f)*0.5f); - CENTER_TEXT("no sample selected"); - ImGui::Text("no sample selected"); + CENTER_TEXT(_("no sample selected")); + ImGui::Text(_("no sample selected")); if (ImGui::BeginTable("noAssetCenter",3)) { ImGui::TableSetupColumn("c0",ImGuiTableColumnFlags_WidthStretch,0.5f); ImGui::TableSetupColumn("c1",ImGuiTableColumnFlags_WidthFixed); @@ -108,7 +108,7 @@ void FurnaceGUI::drawSampleEdit() { ImGui::TableNextColumn(); if (e->song.sample.size()>0) { - if (ImGui::BeginCombo("##SampleSelect","select one...")) { + if (ImGui::BeginCombo("##SampleSelect",_("select one..."))) { if (ImGui::BeginTable("SampleSelCombo",1,ImGuiTableFlags_ScrollY)) { actualSampleList(); ImGui::EndTable(); @@ -116,16 +116,16 @@ void FurnaceGUI::drawSampleEdit() { ImGui::EndCombo(); } ImGui::SameLine(); - ImGui::TextUnformatted("or"); + ImGui::TextUnformatted(_("or")); ImGui::SameLine(); } - if (ImGui::Button("Open")) { + if (ImGui::Button(_("Open"))) { doAction(GUI_ACTION_SAMPLE_LIST_OPEN); } ImGui::SameLine(); - ImGui::TextUnformatted("or"); + ImGui::TextUnformatted(_("or")); ImGui::SameLine(); - if (ImGui::Button("Create New")) { + if (ImGui::Button(_("Create New"))) { doAction(GUI_ACTION_SAMPLE_LIST_ADD); } @@ -134,16 +134,16 @@ void FurnaceGUI::drawSampleEdit() { } } else { DivSample* sample=e->song.sample[curSample]; - String sampleType="Invalid"; + String sampleType=_("Invalid"); if (sample->depthdepth]!=NULL) { sampleType=sampleDepths[sample->depth]; } } - String loopType="Invalid"; + String loopType=_("Invalid"); if (sample->loopModeloopMode]!=NULL) { - loopType=sampleLoopModes[sample->loopMode]; + loopType=_(sampleLoopModes[sample->loopMode]); } } @@ -168,10 +168,10 @@ void FurnaceGUI::drawSampleEdit() { doAction(GUI_ACTION_SAMPLE_LIST_OPEN_REPLACE); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Open"); + ImGui::SetTooltip(_("Open")); } if (ImGui::BeginPopupContextItem("SampleEOpenOpt")) { - if (ImGui::MenuItem("import raw...")) { + if (ImGui::MenuItem(_("import raw..."))) { doAction((curSample>=0 && curSample<(int)e->song.sample.size())?GUI_ACTION_SAMPLE_LIST_OPEN_REPLACE_RAW:GUI_ACTION_SAMPLE_LIST_OPEN_RAW); } ImGui::EndPopup(); @@ -181,10 +181,10 @@ void FurnaceGUI::drawSampleEdit() { doAction(GUI_ACTION_SAMPLE_LIST_SAVE); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Save"); + ImGui::SetTooltip(_("Save")); } if (ImGui::BeginPopupContextItem("SampleESaveOpt")) { - if (ImGui::MenuItem("save raw...")) { + if (ImGui::MenuItem(_("save raw..."))) { doAction(GUI_ACTION_SAMPLE_LIST_SAVE_RAW); } ImGui::EndPopup(); @@ -192,7 +192,7 @@ void FurnaceGUI::drawSampleEdit() { ImGui::SameLine(); - ImGui::Text("Name"); + ImGui::Text(_("Name")); ImGui::SameLine(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); ImGui::PushID(2+curSample); @@ -226,18 +226,18 @@ void FurnaceGUI::drawSampleEdit() { if (sample->loopStart&15) { int tryWith=(sample->loopStart+8)&(~15); if (tryWith>(int)sample->samples) tryWith-=16; - String alignHint=fmt::sprintf("SNES: loop start must be a multiple of 16 (try with %d)",tryWith); + String alignHint=fmt::sprintf(_("SNES: loop start must be a multiple of 16 (try with %d)"),tryWith); SAMPLE_WARN(warnLoopStart,alignHint); } if (sample->loopEnd&15) { int tryWith=(sample->loopEnd+8)&(~15); if (tryWith>(int)sample->samples) tryWith-=16; - String alignHint=fmt::sprintf("SNES: loop end must be a multiple of 16 (try with %d)",tryWith); + String alignHint=fmt::sprintf(_("SNES: loop end must be a multiple of 16 (try with %d)"),tryWith); SAMPLE_WARN(warnLoopEnd,alignHint); } } if (sample->samples&15) { - SAMPLE_WARN(warnLength,"SNES: sample length will be padded to multiple of 16"); + SAMPLE_WARN(warnLength,_("SNES: sample length will be padded to multiple of 16")); } if (dispatch!=NULL) { MAX_RATE("SNES",dispatch->chipClock/8.0); @@ -246,7 +246,7 @@ void FurnaceGUI::drawSampleEdit() { case DIV_SYSTEM_QSOUND: if (sample->loop) { if (sample->loopEnd-sample->loopStart>32767) { - SAMPLE_WARN(warnLoopPos,"QSound: loop cannot be longer than 32767 samples"); + SAMPLE_WARN(warnLoopPos,_("QSound: loop cannot be longer than 32767 samples")); } } if (sample->samples>65535) { @@ -256,24 +256,24 @@ void FurnaceGUI::drawSampleEdit() { case DIV_SYSTEM_NES: if (sample->loop) { if (sample->loopStart!=0 || sample->loopEnd!=(int)(sample->samples)) { - SAMPLE_WARN(warnLoopPos,"NES: loop point ignored on DPCM (may only loop entire sample)"); + SAMPLE_WARN(warnLoopPos,_("NES: loop point ignored on DPCM (may only loop entire sample)")); } } if (sample->samples>32648) { - SAMPLE_WARN(warnLength,"NES: maximum DPCM sample length is 32648"); + SAMPLE_WARN(warnLength,_("NES: maximum DPCM sample length is 32648")); } break; case DIV_SYSTEM_X1_010: if (sample->loop) { - SAMPLE_WARN(warnLoop,"X1-010: samples can't loop"); + SAMPLE_WARN(warnLoop,_("X1-010: samples can't loop")); } if (sample->samples>131072) { - SAMPLE_WARN(warnLength,"X1-010: maximum sample length is 131072"); + SAMPLE_WARN(warnLength,_("X1-010: maximum sample length is 131072")); } break; case DIV_SYSTEM_GA20: if (sample->loop) { - SAMPLE_WARN(warnLoop,"GA20: samples can't loop"); + SAMPLE_WARN(warnLoop,_("GA20: samples can't loop")); } if (dispatch!=NULL) { MIN_RATE("GA20",dispatch->chipClock/1024); @@ -284,10 +284,10 @@ void FurnaceGUI::drawSampleEdit() { case DIV_SYSTEM_YM2608_CSM: if (sample->loop) { if (sample->loopStart!=0 || sample->loopEnd!=(int)(sample->samples)) { - SAMPLE_WARN(warnLoopPos,"YM2608: loop point ignored on ADPCM (may only loop entire sample)"); + SAMPLE_WARN(warnLoopPos,_("YM2608: loop point ignored on ADPCM (may only loop entire sample)")); } if (sample->samples&511) { - SAMPLE_WARN(warnLength,"YM2608: sample length will be padded to multiple of 512"); + SAMPLE_WARN(warnLength,_("YM2608: sample length will be padded to multiple of 512")); } } break; @@ -297,16 +297,16 @@ void FurnaceGUI::drawSampleEdit() { case DIV_SYSTEM_YM2610B: case DIV_SYSTEM_YM2610B_EXT: if (sample->loop) { - SAMPLE_WARN(warnLoop,"YM2610: ADPCM-A samples can't loop"); + SAMPLE_WARN(warnLoop,_("YM2610: ADPCM-A samples can't loop")); if (sample->loopStart!=0 || sample->loopEnd!=(int)(sample->samples)) { - SAMPLE_WARN(warnLoopPos,"YM2610: loop point ignored on ADPCM-B (may only loop entire sample)"); + SAMPLE_WARN(warnLoopPos,_("YM2610: loop point ignored on ADPCM-B (may only loop entire sample)")); } if (sample->samples&511) { - SAMPLE_WARN(warnLength,"YM2610: sample length will be padded to multiple of 512"); + SAMPLE_WARN(warnLength,_("YM2610: sample length will be padded to multiple of 512")); } } if (sample->samples>2097152) { - SAMPLE_WARN(warnLength,"YM2610: maximum ADPCM-A sample length is 2097152"); + SAMPLE_WARN(warnLength,_("YM2610: maximum ADPCM-A sample length is 2097152")); } if (dispatch!=NULL) { EXACT_RATE("YM2610 (ADPCM-A)",dispatch->chipClock/432); @@ -315,24 +315,24 @@ void FurnaceGUI::drawSampleEdit() { case DIV_SYSTEM_Y8950: if (sample->loop) { if (sample->loopStart!=0 || sample->loopEnd!=(int)(sample->samples)) { - SAMPLE_WARN(warnLoopPos,"Y8950: loop point ignored on ADPCM (may only loop entire sample)"); + SAMPLE_WARN(warnLoopPos,_("Y8950: loop point ignored on ADPCM (may only loop entire sample)")); } if (sample->samples&511) { - SAMPLE_WARN(warnLength,"Y8950: sample length will be padded to multiple of 512"); + SAMPLE_WARN(warnLength,_("Y8950: sample length will be padded to multiple of 512")); } } break; case DIV_SYSTEM_AMIGA: if (sample->loop) { if (sample->loopStart&1) { - SAMPLE_WARN(warnLoopStart,"Amiga: loop start must be a multiple of 2"); + SAMPLE_WARN(warnLoopStart,_("Amiga: loop start must be a multiple of 2")); } if (sample->loopEnd&1) { - SAMPLE_WARN(warnLoopEnd,"Amiga: loop end must be a multiple of 2"); + SAMPLE_WARN(warnLoopEnd,_("Amiga: loop end must be a multiple of 2")); } } if (sample->samples>131070) { - SAMPLE_WARN(warnLength,"Amiga: maximum sample length is 131070"); + SAMPLE_WARN(warnLength,_("Amiga: maximum sample length is 131070")); } if (dispatch!=NULL) { MAX_RATE("Amiga",31250.0); @@ -341,7 +341,7 @@ void FurnaceGUI::drawSampleEdit() { case DIV_SYSTEM_SEGAPCM: case DIV_SYSTEM_SEGAPCM_COMPAT: if (sample->samples>65280) { - SAMPLE_WARN(warnLength,"SegaPCM: maximum sample length is 65280"); + SAMPLE_WARN(warnLength,_("SegaPCM: maximum sample length is 65280")); } if (dispatch!=NULL) { MAX_RATE("SegaPCM",dispatch->chipClock/256); @@ -350,16 +350,16 @@ void FurnaceGUI::drawSampleEdit() { case DIV_SYSTEM_K053260: if (sample->loop) { if (sample->loopStart!=0 || sample->loopEnd!=(int)(sample->samples)) { - SAMPLE_WARN(warnLoopPos,"K053260: loop point ignored (may only loop entire sample)"); + SAMPLE_WARN(warnLoopPos,_("K053260: loop point ignored (may only loop entire sample)")); } } if (sample->samples>65535) { - SAMPLE_WARN(warnLength,"K053260: maximum sample length is 65535"); + SAMPLE_WARN(warnLength,_("K053260: maximum sample length is 65535")); } break; case DIV_SYSTEM_C140: if (sample->samples>65535) { - SAMPLE_WARN(warnLength,"C140: maximum sample length is 65535"); + SAMPLE_WARN(warnLength,_("C140: maximum sample length is 65535")); } if (dispatch!=NULL) { MAX_RATE("C140",dispatch->rate); @@ -368,14 +368,14 @@ void FurnaceGUI::drawSampleEdit() { case DIV_SYSTEM_C219: if (sample->loop) { if (sample->loopStart&1) { - SAMPLE_WARN(warnLoopStart,"C219: loop start must be a multiple of 2"); + SAMPLE_WARN(warnLoopStart,_("C219: loop start must be a multiple of 2")); } if (sample->loopEnd&1) { - SAMPLE_WARN(warnLoopEnd,"C219: loop end must be a multiple of 2"); + SAMPLE_WARN(warnLoopEnd,_("C219: loop end must be a multiple of 2")); } } if (sample->samples>131072) { - SAMPLE_WARN(warnLength,"C219: maximum sample length is 131072"); + SAMPLE_WARN(warnLength,_("C219: maximum sample length is 131072")); } if (dispatch!=NULL) { MAX_RATE("C219",dispatch->rate); @@ -383,23 +383,23 @@ void FurnaceGUI::drawSampleEdit() { break; case DIV_SYSTEM_MSM6295: if (sample->loop) { - SAMPLE_WARN(warnLoop,"MSM6295: samples can't loop"); + SAMPLE_WARN(warnLoop,_("MSM6295: samples can't loop")); } if (sample->samples>129024) { - SAMPLE_WARN(warnLength,"MSM6295: maximum bankswitched sample length is 129024"); + SAMPLE_WARN(warnLength,_("MSM6295: maximum bankswitched sample length is 129024")); } break; case DIV_SYSTEM_GBA_DMA: if (sample->loop) { if (sample->loopStart&3) { - SAMPLE_WARN(warnLoopStart,"GBA DMA: loop start must be a multiple of 4"); + SAMPLE_WARN(warnLoopStart,_("GBA DMA: loop start must be a multiple of 4")); } if ((sample->loopEnd-sample->loopStart)&15) { - SAMPLE_WARN(warnLoopEnd,"GBA DMA: loop length must be a multiple of 16"); + SAMPLE_WARN(warnLoopEnd,_("GBA DMA: loop length must be a multiple of 16")); } } if (sample->samples&15) { - SAMPLE_WARN(warnLength,"GBA DMA: sample length will be padded to multiple of 16"); + SAMPLE_WARN(warnLength,_("GBA DMA: sample length will be padded to multiple of 16")); } break; default: @@ -408,10 +408,10 @@ void FurnaceGUI::drawSampleEdit() { if (e->song.system[i]!=DIV_SYSTEM_PCM_DAC) { if (e->song.system[i]==DIV_SYSTEM_ES5506) { if (sample->loopMode==DIV_SAMPLE_LOOP_BACKWARD) { - SAMPLE_WARN(warnLoopMode,"ES5506: backward loop mode isn't supported"); + SAMPLE_WARN(warnLoopMode,_("ES5506: backward loop mode isn't supported")); } } else if (sample->loopMode!=DIV_SAMPLE_LOOP_FORWARD) { - SAMPLE_WARN(warnLoopMode,"backward/ping-pong only supported in Generic PCM DAC\nping-pong also on ES5506"); + SAMPLE_WARN(warnLoopMode,_("backward/ping-pong only supported in Generic PCM DAC\nping-pong also on ES5506")); } } @@ -441,26 +441,26 @@ void FurnaceGUI::drawSampleEdit() { sampleInfo=!sampleInfo; } ImGui::SameLine(); - ImGui::Text("Info"); + ImGui::Text(_("Info")); ImGui::TableNextColumn(); pushToggleColors(!sampleCompatRate); - if (ImGui::Button("Rate")) { + if (ImGui::Button(_("Rate"))) { sampleCompatRate=false; } popToggleColors(); ImGui::SameLine(); pushToggleColors(sampleCompatRate); - if (ImGui::Button("Compat Rate")) { + if (ImGui::Button(_("Compat Rate"))) { sampleCompatRate=true; } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("used in DefleMask-compatible sample mode (17xx), in where samples are mapped to an octave."); + ImGui::SetTooltip(_("used in DefleMask-compatible sample mode (17xx), in where samples are mapped to an octave.")); } popToggleColors(); ImGui::TableNextColumn(); bool doLoop=(sample->loop); pushWarningColor(!warnLoop.empty()); - String loopCheckboxName=(doLoop && (sample->loopEnd-sample->loopStart)>0)?fmt::sprintf("Loop (length: %d)##Loop",sample->loopEnd-sample->loopStart):String("Loop"); + String loopCheckboxName=(doLoop && (sample->loopEnd-sample->loopStart)>0)?fmt::sprintf(_("Loop (length: %d)##Loop"),sample->loopEnd-sample->loopStart):String(_("Loop")); if (ImGui::Checkbox(loopCheckboxName.c_str(),&doLoop)) { MARK_MODIFIED if (doLoop) { sample->loop=true; @@ -484,21 +484,21 @@ void FurnaceGUI::drawSampleEdit() { popWarningColor(); if (ImGui::IsItemHovered() && (!warnLoop.empty() || sample->depth==DIV_SAMPLE_DEPTH_BRR)) { if (sample->depth==DIV_SAMPLE_DEPTH_BRR) { - SAMPLE_WARN(warnLoop,"changing the loop in a BRR sample may result in glitches!"); + SAMPLE_WARN(warnLoop,_("changing the loop in a BRR sample may result in glitches!")); } ImGui::SetTooltip("%s",warnLoop.c_str()); } if (selColumns>1) { ImGui::TableNextColumn(); - ImGui::Text("Chips"); + ImGui::Text(_("Chips")); } if (sampleInfo) { ImGui::TableNextRow(); ImGui::TableNextColumn(); ImGui::AlignTextToFramePadding(); - ImGui::Text("Type"); + ImGui::Text(_("Type")); ImGui::SameLine(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); if (ImGui::BeginCombo("##SampleType",sampleType.c_str())) { @@ -526,7 +526,7 @@ void FurnaceGUI::drawSampleEdit() { } if (sample->depth==DIV_SAMPLE_DEPTH_BRR || isThereSNES) { bool be=sample->brrEmphasis; - if (ImGui::Checkbox("BRR emphasis",&be)) { + if (ImGui::Checkbox(_("BRR emphasis"),&be)) { sample->prepareUndo(true); sample->brrEmphasis=be; e->renderSamplesP(curSample); @@ -535,15 +535,15 @@ void FurnaceGUI::drawSampleEdit() { } if (ImGui::IsItemHovered()) { if (sample->depth==DIV_SAMPLE_DEPTH_BRR) { - ImGui::SetTooltip("this is a BRR sample.\nenabling this option will muffle it (only affects non-SNES chips)."); + ImGui::SetTooltip(_("this is a BRR sample.\nenabling this option will muffle it (only affects non-SNES chips).")); } else { - ImGui::SetTooltip("enable this option to slightly boost high frequencies\nto compensate for the SNES' Gaussian filter's muffle."); + ImGui::SetTooltip(_("enable this option to slightly boost high frequencies\nto compensate for the SNES' Gaussian filter's muffle.")); } } } if (sample->depth!=DIV_SAMPLE_DEPTH_8BIT && e->getSampleFormatMask()&(1L<dither; - if (ImGui::Checkbox("8-bit dither",&di)) { + if (ImGui::Checkbox(_("8-bit dither"),&di)) { sample->prepareUndo(true); sample->dither=di; e->renderSamplesP(curSample); @@ -551,7 +551,7 @@ void FurnaceGUI::drawSampleEdit() { MARK_MODIFIED; } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("dither the sample when used on a chip that only supports 8-bit samples."); + ImGui::SetTooltip(_("dither the sample when used on a chip that only supports 8-bit samples.")); } } @@ -587,7 +587,7 @@ void FurnaceGUI::drawSampleEdit() { } ImGui::AlignTextToFramePadding(); - ImGui::Text("Note"); + ImGui::Text(_("Note")); ImGui::SameLine(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); if (ImGui::BeginCombo("##SampleNote",noteNames[sampleNoteCoarse+60])) { @@ -692,7 +692,7 @@ void FurnaceGUI::drawSampleEdit() { pushWarningColor(!warnLoopPos.empty() || !warnLoopStart.empty()); ImGui::AlignTextToFramePadding(); - ImGui::Text("Start"); + ImGui::Text(_("Start")); ImGui::SameLine(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); if (ImGui::InputInt("##LoopStartPosition",&sample->loopStart,1,16)) { MARK_MODIFIED @@ -713,7 +713,7 @@ void FurnaceGUI::drawSampleEdit() { if (ImGui::IsItemHovered() && (!warnLoopPos.empty() || !warnLoopStart.empty() || sample->depth==DIV_SAMPLE_DEPTH_BRR)) { if (ImGui::BeginTooltip()) { if (sample->depth==DIV_SAMPLE_DEPTH_BRR) { - ImGui::Text("changing the loop in a BRR sample may result in glitches!"); + ImGui::Text(_("changing the loop in a BRR sample may result in glitches!")); } if (!warnLoopStart.empty()) { ImGui::Text("%s",warnLoopStart.c_str()); @@ -728,7 +728,7 @@ void FurnaceGUI::drawSampleEdit() { pushWarningColor(!warnLoopPos.empty() || !warnLoopEnd.empty()); ImGui::AlignTextToFramePadding(); - ImGui::Text("End"); + ImGui::Text(_("End")); ImGui::SameLine(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); if (ImGui::InputInt("##LoopEndPosition",&sample->loopEnd,1,16)) { MARK_MODIFIED @@ -749,7 +749,7 @@ void FurnaceGUI::drawSampleEdit() { if (ImGui::IsItemHovered() && (!warnLoopPos.empty() || !warnLoopEnd.empty() || sample->depth==DIV_SAMPLE_DEPTH_BRR)) { if (ImGui::BeginTooltip()) { if (sample->depth==DIV_SAMPLE_DEPTH_BRR) { - ImGui::Text("changing the loop in a BRR sample may result in glitches!"); + ImGui::Text(_("changing the loop in a BRR sample may result in glitches!")); } if (!warnLoopEnd.empty()) { ImGui::Text("%s",warnLoopEnd.c_str()); @@ -838,13 +838,13 @@ void FurnaceGUI::drawSampleEdit() { } String toolText; if (memName==NULL) { - toolText=fmt::sprintf("%s\n%d bytes free",e->getSystemName(e->song.system[j]),totalFree); + toolText=fmt::sprintf(_("%s\n%d bytes free"),e->getSystemName(e->song.system[j]),totalFree); } else { - toolText=fmt::sprintf("%s (%s)\n%d bytes free",e->getSystemName(e->song.system[j]),memName,totalFree); + toolText=fmt::sprintf(_("%s (%s)\n%d bytes free"),e->getSystemName(e->song.system[j]),memName,totalFree); } if (isMemWarning[i][j] && sample->renderOn[i][j]) { - toolText+="\n\nnot enough memory for this sample!"; + toolText+=_("\n\nnot enough memory for this sample!"); } ImGui::SetTooltip("%s",toolText.c_str()); @@ -868,7 +868,7 @@ void FurnaceGUI::drawSampleEdit() { } popToggleColors(); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Edit mode: Select"); + ImGui::SetTooltip(_("Edit mode: Select")); } sameLineMaybe(); pushToggleColors(sampleDragMode); @@ -877,7 +877,7 @@ void FurnaceGUI::drawSampleEdit() { } popToggleColors(); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Edit mode: Draw"); + ImGui::SetTooltip(_("Edit mode: Draw")); } ImGui::BeginDisabled(sample->depth!=DIV_SAMPLE_DEPTH_8BIT && sample->depth!=DIV_SAMPLE_DEPTH_16BIT); sameLineMaybe(); @@ -888,22 +888,22 @@ void FurnaceGUI::drawSampleEdit() { resizeSize=sample->samples; } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Resize"); + ImGui::SetTooltip(_("Resize")); } if (openSampleResizeOpt) { openSampleResizeOpt=false; ImGui::OpenPopup("SResizeOpt"); } if (ImGui::BeginPopupContextItem("SResizeOpt",ImGuiPopupFlags_MouseButtonLeft)) { - if (ImGui::InputInt("Samples",&resizeSize,1,64)) { + if (ImGui::InputInt(_("Samples"),&resizeSize,1,64)) { if (resizeSize<0) resizeSize=0; if (resizeSize>16777215) resizeSize=16777215; } - if (ImGui::Button("Resize")) { + if (ImGui::Button(_("Resize"))) { sample->prepareUndo(true); e->lockEngine([this,sample]() { if (!sample->resize(resizeSize)) { - showError("couldn't resize! make sure your sample is 8 or 16-bit."); + showError(_("couldn't resize! make sure your sample is 8 or 16-bit.")); } e->renderSamples(curSample); }); @@ -923,14 +923,14 @@ void FurnaceGUI::drawSampleEdit() { resampleTarget=targetRate; } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Resample"); + ImGui::SetTooltip(_("Resample")); } if (openSampleResampleOpt) { openSampleResampleOpt=false; ImGui::OpenPopup("SResampleOpt"); } if (ImGui::BeginPopupContextItem("SResampleOpt",ImGuiPopupFlags_MouseButtonLeft)) { - ImGui::Text("Rate"); + ImGui::Text(_("Rate")); if (ImGui::InputDouble("##SRRate",&resampleTarget,1.0,50.0,"%g")) { if (resampleTarget<0) resampleTarget=0; if (resampleTarget>96000) resampleTarget=96000; @@ -948,17 +948,17 @@ void FurnaceGUI::drawSampleEdit() { resampleTarget*=2.0; } double factor=resampleTarget/(double)targetRate; - if (ImGui::InputDouble("Factor",&factor,0.125,0.5,"%g")) { + if (ImGui::InputDouble(_("Factor"),&factor,0.125,0.5,"%g")) { resampleTarget=(double)targetRate*factor; if (resampleTarget<0) resampleTarget=0; if (resampleTarget>96000) resampleTarget=96000; } - ImGui::Combo("Filter",&resampleStrat,resampleStrats,6); - if (ImGui::Button("Resample")) { + ImGui::Combo(_("Filter"),&resampleStrat,LocalizedComboGetter,resampleStrats,6); + if (ImGui::Button(_("Resample"))) { sample->prepareUndo(true); e->lockEngine([this,sample,targetRate]() { if (!sample->resample(targetRate,resampleTarget,resampleStrat)) { - showError("couldn't resample! make sure your sample is 8 or 16-bit."); + showError(_("couldn't resample! make sure your sample is 8 or 16-bit.")); } e->renderSamples(curSample); }); @@ -979,35 +979,35 @@ void FurnaceGUI::drawSampleEdit() { doUndoSample(); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Undo"); + ImGui::SetTooltip(_("Undo")); } sameLineMaybe(); if (ImGui::Button(ICON_FA_REPEAT "##SRedo")) { doRedoSample(); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Redo"); + ImGui::SetTooltip(_("Redo")); } ImGui::SameLine(); ImGui::Dummy(ImVec2(4.0*dpiScale,dpiScale)); sameLineMaybe(); ImGui::Button(ICON_FA_VOLUME_UP "##SAmplify"); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Amplify"); + ImGui::SetTooltip(_("Amplify")); } if (openSampleAmplifyOpt) { openSampleAmplifyOpt=false; ImGui::OpenPopup("SAmplifyOpt"); } if (ImGui::BeginPopupContextItem("SAmplifyOpt",ImGuiPopupFlags_MouseButtonLeft)) { - ImGui::Text("Volume"); + ImGui::Text(_("Volume")); if (ImGui::InputFloat("##SRVolume",&lifyVol,10.0,50.0,"%g%%")) { if (amplifyVol<0) amplifyVol=0; if (amplifyVol>10000) amplifyVol=10000; } ImGui::SameLine(); ImGui::Text("(%.1fdB)",20.0*log10(amplifyVol/100.0f)); - if (ImGui::Button("Apply")) { + if (ImGui::Button(_("Apply"))) { sample->prepareUndo(true); e->lockEngine([this,sample]() { SAMPLE_OP_BEGIN; @@ -1043,42 +1043,42 @@ void FurnaceGUI::drawSampleEdit() { doAction(GUI_ACTION_SAMPLE_NORMALIZE); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Normalize"); + ImGui::SetTooltip(_("Normalize")); } sameLineMaybe(); if (ImGui::Button(ICON_FUR_SAMPLE_FADEIN "##SFadeIn")) { doAction(GUI_ACTION_SAMPLE_FADE_IN); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Fade in"); + ImGui::SetTooltip(_("Fade in")); } sameLineMaybe(); if (ImGui::Button(ICON_FUR_SAMPLE_FADEOUT "##SFadeOut")) { doAction(GUI_ACTION_SAMPLE_FADE_OUT); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Fade out"); + ImGui::SetTooltip(_("Fade out")); } sameLineMaybe(); ImGui::Button(ICON_FUR_SAMPLE_INSERT_SILENCE "##SInsertSilence"); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Insert silence"); + ImGui::SetTooltip(_("Insert silence")); } if (openSampleSilenceOpt) { openSampleSilenceOpt=false; ImGui::OpenPopup("SSilenceOpt"); } if (ImGui::BeginPopupContextItem("SSilenceOpt",ImGuiPopupFlags_MouseButtonLeft)) { - if (ImGui::InputInt("Samples",&silenceSize,1,64)) { + if (ImGui::InputInt(_("Samples"),&silenceSize,1,64)) { if (silenceSize<0) silenceSize=0; if (silenceSize>16777215) silenceSize=16777215; } - if (ImGui::Button("Go")) { + if (ImGui::Button(_("Go"))) { int pos=(sampleSelStart==-1 || sampleSelStart==sampleSelEnd)?sample->samples:sampleSelStart; sample->prepareUndo(true); e->lockEngine([this,sample,pos]() { if (!sample->insert(pos,silenceSize)) { - showError("couldn't insert! make sure your sample is 8 or 16-bit."); + showError(_("couldn't insert! make sure your sample is 8 or 16-bit.")); } e->renderSamples(curSample); }); @@ -1095,21 +1095,21 @@ void FurnaceGUI::drawSampleEdit() { doAction(GUI_ACTION_SAMPLE_SILENCE); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Apply silence"); + ImGui::SetTooltip(_("Apply silence")); } sameLineMaybe(); if (ImGui::Button(ICON_FA_TIMES "##SDelete")) { doAction(GUI_ACTION_SAMPLE_DELETE); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Delete"); + ImGui::SetTooltip(_("Delete")); } sameLineMaybe(); if (ImGui::Button(ICON_FA_CROP "##STrim")) { doAction(GUI_ACTION_SAMPLE_TRIM); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Trim"); + ImGui::SetTooltip(_("Trim")); } ImGui::SameLine(); ImGui::Dummy(ImVec2(4.0*dpiScale,dpiScale)); @@ -1118,26 +1118,26 @@ void FurnaceGUI::drawSampleEdit() { doAction(GUI_ACTION_SAMPLE_REVERSE); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Reverse"); + ImGui::SetTooltip(_("Reverse")); } sameLineMaybe(); if (ImGui::Button(ICON_FUR_SAMPLE_INVERT "##SInvert")) { doAction(GUI_ACTION_SAMPLE_INVERT); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Invert"); + ImGui::SetTooltip(_("Invert")); } sameLineMaybe(); if (ImGui::Button(ICON_FUR_SAMPLE_SIGN "##SSign")) { doAction(GUI_ACTION_SAMPLE_SIGN); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Signed/unsigned exchange"); + ImGui::SetTooltip(_("Signed/unsigned exchange")); } sameLineMaybe(); ImGui::Button(ICON_FUR_SAMPLE_FILTER "##SFilter"); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Apply filter"); + ImGui::SetTooltip(_("Apply filter")); } if (openSampleFilterOpt) { openSampleFilterOpt=false; @@ -1148,23 +1148,23 @@ void FurnaceGUI::drawSampleEdit() { float bandP=sampleFilterB*100.0f; float highP=sampleFilterH*100.0f; float resP=sampleFilterRes*100.0f; - ImGui::Text("Cutoff:"); - if (ImGui::InputFloat("From",&sampleFilterCutStart,10.0f,1000.0f,"%.0f")) { + ImGui::Text(_("Cutoff:")); + if (ImGui::InputFloat(_("From"),&sampleFilterCutStart,10.0f,1000.0f,"%.0f")) { if (sampleFilterCutStart<0.0) sampleFilterCutStart=0.0; if (sampleFilterCutStart>sample->centerRate*0.5) sampleFilterCutStart=sample->centerRate*0.5; } - if (ImGui::InputFloat("To",&sampleFilterCutEnd,10.0f,1000.0f,"%.0f")) { + if (ImGui::InputFloat(_("To"),&sampleFilterCutEnd,10.0f,1000.0f,"%.0f")) { if (sampleFilterCutEnd<0.0) sampleFilterCutEnd=0.0; if (sampleFilterCutEnd>sample->centerRate*0.5) sampleFilterCutEnd=sample->centerRate*0.5; } ImGui::Separator(); - if (ImGui::SliderFloat("Resonance",&resP,0.0f,99.0f,"%.1f%%")) { + if (ImGui::SliderFloat(_("Resonance"),&resP,0.0f,99.0f,"%.1f%%")) { sampleFilterRes=resP/100.0f; if (sampleFilterRes<0.0f) sampleFilterRes=0.0f; if (sampleFilterRes>0.99f) sampleFilterRes=0.99f; } ImGui::AlignTextToFramePadding(); - ImGui::Text("Power"); + ImGui::Text(_("Power")); ImGui::SameLine(); if (ImGui::RadioButton("1x",sampleFilterPower==1)) { sampleFilterPower=1; @@ -1178,23 +1178,23 @@ void FurnaceGUI::drawSampleEdit() { sampleFilterPower=3; } ImGui::Separator(); - if (ImGui::SliderFloat("Low-pass",&lowP,0.0f,100.0f,"%.1f%%")) { + if (ImGui::SliderFloat(_("Low-pass"),&lowP,0.0f,100.0f,"%.1f%%")) { sampleFilterL=lowP/100.0f; if (sampleFilterL<0.0f) sampleFilterL=0.0f; if (sampleFilterL>1.0f) sampleFilterL=1.0f; } - if (ImGui::SliderFloat("Band-pass",&bandP,0.0f,100.0f,"%.1f%%")) { + if (ImGui::SliderFloat(_("Band-pass"),&bandP,0.0f,100.0f,"%.1f%%")) { sampleFilterB=bandP/100.0f; if (sampleFilterB<0.0f) sampleFilterB=0.0f; if (sampleFilterB>1.0f) sampleFilterB=1.0f; } - if (ImGui::SliderFloat("High-pass",&highP,0.0f,100.0f,"%.1f%%")) { + if (ImGui::SliderFloat(_("High-pass"),&highP,0.0f,100.0f,"%.1f%%")) { sampleFilterH=highP/100.0f; if (sampleFilterH<0.0f) sampleFilterH=0.0f; if (sampleFilterH>1.0f) sampleFilterH=1.0f; } - if (ImGui::Button("Apply")) { + if (ImGui::Button(_("Apply"))) { sample->prepareUndo(true); e->lockEngine([this,sample]() { SAMPLE_OP_BEGIN; @@ -1259,7 +1259,7 @@ void FurnaceGUI::drawSampleEdit() { sameLineMaybe(); ImGui::Button(ICON_FUR_CROSSFADE "##CrossFade"); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Crossfade loop points"); + ImGui::SetTooltip(_("Crossfade loop points")); } if (openSampleCrossFadeOpt) { openSampleCrossFadeOpt=false; @@ -1268,22 +1268,22 @@ void FurnaceGUI::drawSampleEdit() { if (ImGui::BeginPopupContextItem("SCrossFadeOpt",ImGuiPopupFlags_MouseButtonLeft)) { if (sampleCrossFadeLoopLength>sample->loopStart) sampleCrossFadeLoopLength=sample->loopStart; if (sampleCrossFadeLoopLength>(sample->loopEnd-sample->loopStart)) sampleCrossFadeLoopLength=sample->loopEnd-sample->loopStart; - if (ImGui::SliderInt("Number of samples",&sampleCrossFadeLoopLength,0,100000)) { + if (ImGui::SliderInt(_("Number of samples"),&sampleCrossFadeLoopLength,0,100000)) { if (sampleCrossFadeLoopLength<0) sampleCrossFadeLoopLength=0; if (sampleCrossFadeLoopLength>sample->loopStart) sampleCrossFadeLoopLength=sample->loopStart; if (sampleCrossFadeLoopLength>(sample->loopEnd-sample->loopStart)) sampleCrossFadeLoopLength=sample->loopEnd-sample->loopStart; if (sampleCrossFadeLoopLength>100000) sampleCrossFadeLoopLength=100000; } - if (ImGui::SliderInt("Linear <-> Equal power",&sampleCrossFadeLoopLaw,0,100)) { + if (ImGui::SliderInt(_("Linear <-> Equal power"),&sampleCrossFadeLoopLaw,0,100)) { if (sampleCrossFadeLoopLaw<0) sampleCrossFadeLoopLaw=0; if (sampleCrossFadeLoopLaw>100) sampleCrossFadeLoopLaw=100; } - if (ImGui::Button("Apply")) { + if (ImGui::Button(_("Apply"))) { if (sampleCrossFadeLoopLength>sample->loopStart) { - showError("Crossfade: length would go out of bounds. Aborted..."); + showError(_("Crossfade: length would go out of bounds. Aborted...")); ImGui::CloseCurrentPopup(); } else if (sampleCrossFadeLoopLength>(sample->loopEnd-sample->loopStart)) { - showError("Crossfade: length would overflow loopStart. Try a smaller random value."); + showError(_("Crossfade: length would overflow loopStart. Try a smaller random value.")); ImGui::CloseCurrentPopup(); } else { sample->prepareUndo(true); @@ -1329,28 +1329,28 @@ void FurnaceGUI::drawSampleEdit() { e->previewSample(curSample); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Preview sample"); + ImGui::SetTooltip(_("Preview sample")); } sameLineMaybe(); if (ImGui::Button(ICON_FA_STOP "##StopSample")) { e->stopSamplePreview(); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Stop sample preview"); + ImGui::SetTooltip(_("Stop sample preview")); } sameLineMaybe(); if (ImGui::Button(ICON_FA_UPLOAD "##MakeIns")) { doAction(GUI_ACTION_SAMPLE_MAKE_INS); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Create instrument from sample"); + ImGui::SetTooltip(_("Create instrument from sample")); } sameLineMaybe(ImGui::CalcTextSize("Zoom").x+150.0f*dpiScale+ImGui::CalcTextSize("100%").x); double zoomPercent=100.0/sampleZoom; bool checkZoomLimit=false; ImGui::AlignTextToFramePadding(); - ImGui::Text("Zoom"); + ImGui::Text(_("Zoom")); ImGui::SameLine(); ImGui::SetNextItemWidth(150.0f*dpiScale); if (ImGui::InputDouble("##SZoom",&zoomPercent,zoomPercent/8.0,20.0,"%g%%")) { @@ -1733,40 +1733,40 @@ void FurnaceGUI::drawSampleEdit() { if (ImGui::BeginPopup("SRightClick",ImGuiWindowFlags_NoTitleBar|ImGuiWindowFlags_NoMove|ImGuiWindowFlags_AlwaysAutoResize)) { ImGui::BeginDisabled(sample->depth!=DIV_SAMPLE_DEPTH_8BIT && sample->depth!=DIV_SAMPLE_DEPTH_16BIT); - if (ImGui::MenuItem("cut",BIND_FOR(GUI_ACTION_SAMPLE_CUT))) { + if (ImGui::MenuItem(_("cut"),BIND_FOR(GUI_ACTION_SAMPLE_CUT))) { doAction(GUI_ACTION_SAMPLE_CUT); } ImGui::EndDisabled(); - if (ImGui::MenuItem("copy",BIND_FOR(GUI_ACTION_SAMPLE_COPY))) { + if (ImGui::MenuItem(_("copy"),BIND_FOR(GUI_ACTION_SAMPLE_COPY))) { doAction(GUI_ACTION_SAMPLE_COPY); } ImGui::BeginDisabled(sample->depth!=DIV_SAMPLE_DEPTH_8BIT && sample->depth!=DIV_SAMPLE_DEPTH_16BIT); - if (ImGui::MenuItem("paste",BIND_FOR(GUI_ACTION_SAMPLE_PASTE))) { + if (ImGui::MenuItem(_("paste"),BIND_FOR(GUI_ACTION_SAMPLE_PASTE))) { doAction(GUI_ACTION_SAMPLE_PASTE); } - if (ImGui::MenuItem("paste (replace)",BIND_FOR(GUI_ACTION_SAMPLE_PASTE_REPLACE))) { + if (ImGui::MenuItem(_("paste (replace)"),BIND_FOR(GUI_ACTION_SAMPLE_PASTE_REPLACE))) { doAction(GUI_ACTION_SAMPLE_PASTE_REPLACE); } - if (ImGui::MenuItem("paste (mix)",BIND_FOR(GUI_ACTION_SAMPLE_PASTE_MIX))) { + if (ImGui::MenuItem(_("paste (mix)"),BIND_FOR(GUI_ACTION_SAMPLE_PASTE_MIX))) { doAction(GUI_ACTION_SAMPLE_PASTE_MIX); } ImGui::EndDisabled(); - if (ImGui::MenuItem("select all",BIND_FOR(GUI_ACTION_SAMPLE_SELECT_ALL))) { + if (ImGui::MenuItem(_("select all"),BIND_FOR(GUI_ACTION_SAMPLE_SELECT_ALL))) { doAction(GUI_ACTION_SAMPLE_SELECT_ALL); } ImGui::Separator(); - if (ImGui::MenuItem("set loop to selection",BIND_FOR(GUI_ACTION_SAMPLE_SET_LOOP))) { + if (ImGui::MenuItem(_("set loop to selection"),BIND_FOR(GUI_ACTION_SAMPLE_SET_LOOP))) { doAction(GUI_ACTION_SAMPLE_SET_LOOP); } - if (ImGui::MenuItem("create wavetable from selection",BIND_FOR(GUI_ACTION_SAMPLE_CREATE_WAVE))) { + if (ImGui::MenuItem(_("create wavetable from selection"),BIND_FOR(GUI_ACTION_SAMPLE_CREATE_WAVE))) { doAction(GUI_ACTION_SAMPLE_CREATE_WAVE); } ImGui::EndPopup(); } - String statusBar=sampleDragMode?"Draw":"Select"; + String statusBar=sampleDragMode?_("Draw"):_("Select"); String statusBar2=""; - String statusBar3=fmt::sprintf("%d samples, %d bytes",sample->samples,sample->getCurBufLen()); + String statusBar3=fmt::sprintf(_("%d samples, %d bytes"),sample->samples,sample->getCurBufLen()); bool drawSelection=false; if (!sampleDragMode) { @@ -1781,7 +1781,7 @@ void FurnaceGUI::drawSampleEdit() { if (start==end) { statusBar+=fmt::sprintf(" (%d)",start); } else { - statusBar+=fmt::sprintf(" (%d-%d: %d samples)",start,end,end-start); + statusBar+=fmt::sprintf(_(" (%d-%d: %d samples)"),start,end,end-start); } drawSelection=true; } @@ -1973,7 +1973,7 @@ void FurnaceGUI::drawSampleEdit() { } if (sample->depth!=DIV_SAMPLE_DEPTH_8BIT && sample->depth!=DIV_SAMPLE_DEPTH_16BIT && sampleDragMode) { - statusBar="Non-8/16-bit samples cannot be edited without prior conversion."; + statusBar=_("Non-8/16-bit samples cannot be edited without prior conversion."); } ImGui::SetCursorPosY(ImGui::GetCursorPosY()+ImGui::GetStyle().ScrollbarSize); diff --git a/src/gui/settings.cpp b/src/gui/settings.cpp index e09f15a11..ce2262f2c 100644 --- a/src/gui/settings.cpp +++ b/src/gui/settings.cpp @@ -68,6 +68,29 @@ #define SYS_FILE_DIALOG_DEFAULT 1 #endif +// name, locale, restart message +const char* locales[][3]={ + {"", "", ""}, + {"English", "en_US", "restart Furnace for this setting to take effect."}, + {"Deutsch (0%)", "de_DE", "Starten Sie Furnace neu, damit diese Einstellung wirksam wird."}, + {"Español", "es_ES", "reinicia Furnace para que esta opción tenga efecto."}, + {"Suomi (0%)", "fi_FI", "käynnistä Furnace uudelleen, jotta tämä asetus tulee voimaan."}, + {"Français (0%)", "fr_FR", "redémarrer Furnace pour que ce réglage soit effectif."}, + {"Հայերեն (1%)", "hy_AM", "???"}, + {"日本語 (0%)", "ja_JP", "???"}, + {"한국어 (10%)", "ko_KR", "이 설정을 적용하려면 Furnace를 다시 시작해야 합니다."}, + {"Nederlands (4%)", "nl_NL", "start Furnace opnieuw op om deze instelling effectief te maken."}, + {"Polski (90%)", "pl_PL", "aby to ustawienie było skuteczne, należy ponownie uruchomić program."}, + {"Português (Brasil) (90%)", "pt_BR", "reinicie o Furnace para que essa configuração entre em vigor."}, + {"Русский (90%)", "ru_RU", "перезапустите программу, чтобы эта настройка вступила в силу."}, + {"Slovenčina (15%)", "sk_SK", "???"}, + {"Svenska", "sv_SE", "starta om programmet för att denna inställning ska träda i kraft."}, + {"ไทย (0%)", "th_TH", "???"}, + {"Türkçe (0%)", "tr_TR", "bu ayarı etkin hale getirmek için programı yeniden başlatın."}, + {"Українська (0%)", "uk_UA", "перезапустіть програму, щоб це налаштування набуло чинності."}, + {NULL, NULL, NULL} +}; + const char* fontBackends[]={ "stb_truetype", "FreeType" @@ -79,8 +102,8 @@ const char* mainFonts[]={ "Exo", "Proggy Clean", "GNU Unifont", - "", - "" + _N(""), + _N("") }; const char* headFonts[]={ @@ -89,8 +112,8 @@ const char* headFonts[]={ "Exo", "Proggy Clean", "GNU Unifont", - "", - "" + _N(""), + _N("") }; const char* patFonts[]={ @@ -99,8 +122,8 @@ const char* patFonts[]={ "PT Mono", "Proggy Clean", "GNU Unifont", - "", - "" + _N(""), + _N("") }; const char* audioBackends[]={ @@ -110,8 +133,8 @@ const char* audioBackends[]={ }; const char* audioQualities[]={ - "High", - "Low" + _N("High"), + _N("Low") }; const char* arcadeCores[]={ @@ -143,11 +166,11 @@ const char* c64Cores[]={ const char* pokeyCores[]={ "Atari800 (mzpokeysnd)", - "ASAP (C++ port)" + _N("ASAP (C++ port)") }; const char* opnCores[]={ - "ymfm only", + "ymfm", "Nuked-OPN2 (FM) + ymfm (SSG/ADPCM)", "YM2608-LLE" }; @@ -166,7 +189,7 @@ const char* opl3Cores[]={ const char* esfmCores[]={ "ESFMu", - "ESFMu (fast)" + _N("ESFMu (fast)") }; const char* opllCores[]={ @@ -180,81 +203,81 @@ const char* ayCores[]={ }; const char* coreQualities[]={ - "Lower", - "Low", - "Medium", - "High", - "Ultra", - "Ultimate" + _N("Lower"), + _N("Low"), + _N("Medium"), + _N("High"), + _N("Ultra"), + _N("Ultimate") }; const char* pcspkrOutMethods[]={ - "evdev SND_TONE", - "KIOCSOUND on /dev/tty1", - "/dev/port", - "KIOCSOUND on standard output", - "outb()" + _N("evdev SND_TONE"), + _N("KIOCSOUND on /dev/tty1"), + _N("/dev/port"), + _N("KIOCSOUND on standard output"), + _N("outb()") }; const char* valueInputStyles[]={ - "Disabled/custom", - "Two octaves (0 is C-4, F is D#5)", - "Raw (note number is value)", - "Two octaves alternate (lower keys are 0-9, upper keys are A-F)", - "Use dual control change (one for each nibble)", - "Use 14-bit control change", - "Use single control change (imprecise)" + _N("Disabled/custom"), + _N("Two octaves (0 is C-4, F is D#5)"), + _N("Raw (note number is value)"), + _N("Two octaves alternate (lower keys are 0-9, upper keys are A-F)"), + _N("Use dual control change (one for each nibble)"), + _N("Use 14-bit control change"), + _N("Use single control change (imprecise)") }; const char* valueSInputStyles[]={ - "Disabled/custom", - "Use dual control change (one for each nibble)", - "Use 14-bit control change", - "Use single control change (imprecise)" + _N("Disabled/custom"), + _N("Use dual control change (one for each nibble)"), + _N("Use 14-bit control change"), + _N("Use single control change (imprecise)") }; const char* messageTypes[]={ - "--select--", - "???", - "???", - "???", - "???", - "???", - "???", - "???", - "Note Off", - "Note On", - "Aftertouch", - "Control", - "Program", - "ChanPressure", - "Pitch Bend", - "SysEx" + _N("--select--"), + _N("???"), + _N("???"), + _N("???"), + _N("???"), + _N("???"), + _N("???"), + _N("???"), + _N("Note Off"), + _N("Note On"), + _N("Aftertouch"), + _N("Control"), + _N("Program"), + _N("ChanPressure"), + _N("Pitch Bend"), + _N("SysEx") }; const char* messageChannels[]={ - "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "Any" + "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", _N("Any") }; const char* specificControls[18]={ - "Instrument", - "Volume", - "Effect 1 type", - "Effect 1 value", - "Effect 2 type", - "Effect 2 value", - "Effect 3 type", - "Effect 3 value", - "Effect 4 type", - "Effect 4 value", - "Effect 5 type", - "Effect 5 value", - "Effect 6 type", - "Effect 6 value", - "Effect 7 type", - "Effect 7 value", - "Effect 8 type", - "Effect 8 value" + _N("Instrument"), + _N("Volume"), + _N("Effect 1 type"), + _N("Effect 1 value"), + _N("Effect 2 type"), + _N("Effect 2 value"), + _N("Effect 3 type"), + _N("Effect 3 value"), + _N("Effect 4 type"), + _N("Effect 4 value"), + _N("Effect 5 type"), + _N("Effect 5 value"), + _N("Effect 6 type"), + _N("Effect 6 value"), + _N("Effect 7 type"), + _N("Effect 7 value"), + _N("Effect 8 type"), + _N("Effect 8 value") }; #define SAMPLE_RATE_SELECTABLE(x) \ @@ -270,10 +293,12 @@ const char* specificControls[18]={ } #define UI_COLOR_CONFIG(what,label) \ - if (ImGui::ColorEdit4(label "##CC_" #what,(float*)&uiColors[what])) { \ + ImGui::PushID(what); \ + if (ImGui::ColorEdit4(label,(float*)&uiColors[what])) { \ applyUISettings(false); \ settingsChanged=true; \ - } + } \ + ImGui::PopID(); #define KEYBIND_CONFIG_BEGIN(id) \ if (ImGui::BeginTable(id,2)) { @@ -288,7 +313,7 @@ const char* specificControls[18]={ ImGui::AlignTextToFramePadding();\ ImGui::TextUnformatted(guiActions[what].friendlyName); \ ImGui::TableNextColumn(); \ - if (ImGui::Button(fmt::sprintf("%s##KC_" #what,(bindSetPending && bindSetTarget==what)?"Press key...":getKeyName(actionKeys[what])).c_str())) { \ + if (ImGui::Button(fmt::sprintf("%s##KC_" #what,(bindSetPending && bindSetTarget==what)?_N("Press key..."):getKeyName(actionKeys[what])).c_str())) { \ promptKey(what); \ settingsChanged=true; \ } \ @@ -322,10 +347,10 @@ const char* specificControls[18]={ ImGui::Text(_name); \ ImGui::TableNextColumn(); \ ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); \ - if (ImGui::Combo("##" _name "Q",&settings._play,coreQualities,6)) settingsChanged=true; \ + if (ImGui::Combo("##" _name "Q",&settings._play,LocalizedComboGetter,coreQualities,6)) settingsChanged=true; \ ImGui::TableNextColumn(); \ ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); \ - if (ImGui::Combo("##" _name "QR",&settings._render,coreQualities,6)) settingsChanged=true; + if (ImGui::Combo("##" _name "QR",&settings._render,LocalizedComboGetter,coreQualities,6)) settingsChanged=true; String stripName(String what) { String ret; @@ -533,22 +558,53 @@ void FurnaceGUI::drawSettings() { } else { ImGui::SetNextWindowSizeConstraints(ImVec2(200.0f*dpiScale,100.0f*dpiScale),ImVec2(canvasW,canvasH)); } - if (ImGui::Begin("Settings",&settingsOpen,ImGuiWindowFlags_NoDocking|globalWinFlags)) { + if (ImGui::Begin("Settings",&settingsOpen,ImGuiWindowFlags_NoDocking|globalWinFlags,_("Settings"))) { if (!settingsOpen) { if (settingsChanged) { settingsOpen=true; - showWarning("Do you want to save your settings?",GUI_WARN_CLOSE_SETTINGS); + showWarning(_("Do you want to save your settings?"),GUI_WARN_CLOSE_SETTINGS); } else { settingsOpen=false; } } if (ImGui::BeginTabBar("settingsTab")) { // NEW SETTINGS HERE - CONFIG_SECTION("General") { + CONFIG_SECTION(_("General")) { // SUBSECTION PROGRAM - CONFIG_SUBSECTION("Program"); + CONFIG_SUBSECTION(_("Program")); + +#ifdef HAVE_LOCALE + String curLocale=settings.locale; + const char* localeRestart=locales[0][2]; + if (curLocale=="") { + curLocale=""; + } else { + for (int i=1; locales[i][0]; i++) { + if (strcmp(curLocale.c_str(),locales[i][1])==0) { + curLocale=locales[i][0]; + break; + } + } + } + if (ImGui::BeginCombo(_("Language"),curLocale.c_str())) { + for (int i=0; locales[i][0]; i++) { + if (ImGui::Selectable(locales[i][0],strcmp(settings.locale.c_str(),locales[i][1])==0)) { + settings.locale=locales[i][1]; + } + if (ImGui::IsItemHovered()) { + ImGui::SetTooltip("%s",locales[i][2]); + } + } + ImGui::EndCombo(); + } else { + if (ImGui::IsItemHovered()) { + ImGui::SetTooltip("%s",localeRestart); + } + } +#endif + String curRenderBackend=settings.renderBackend.empty()?GUI_BACKEND_DEFAULT_NAME:settings.renderBackend; - if (ImGui::BeginCombo("Render backend",curRenderBackend.c_str())) { + if (ImGui::BeginCombo(_("Render backend"),curRenderBackend.c_str())) { #ifdef HAVE_RENDER_SDL if (ImGui::Selectable("SDL Renderer",curRenderBackend=="SDL")) { settings.renderBackend="SDL"; @@ -603,13 +659,13 @@ void FurnaceGUI::drawSettings() { ImGui::EndCombo(); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("you may need to restart Furnace for this setting to take effect."); + ImGui::SetTooltip(_("you may need to restart Furnace for this setting to take effect.")); } - if (ImGui::TreeNode("Advanced render backend settings")) { + if (ImGui::TreeNode(_("Advanced render backend settings"))) { if (curRenderBackend=="SDL") { - if (ImGui::BeginCombo("Render driver",settings.renderDriver.empty()?"Automatic":settings.renderDriver.c_str())) { - if (ImGui::Selectable("Automatic",settings.renderDriver.empty())) { + if (ImGui::BeginCombo(_("Render driver"),settings.renderDriver.empty()?_("Automatic"):settings.renderDriver.c_str())) { + if (ImGui::Selectable(_("Automatic"),settings.renderDriver.empty())) { settings.renderDriver=""; settingsChanged=true; } @@ -622,62 +678,62 @@ void FurnaceGUI::drawSettings() { ImGui::EndCombo(); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("you may need to restart Furnace for this setting to take effect."); + ImGui::SetTooltip(_("you may need to restart Furnace for this setting to take effect.")); } } else if (curRenderBackend.find("OpenGL")==0) { - ImGui::TextWrapped("beware: changing these settings may render Furnace unusable! do so at your own risk.\nstart Furnace with -safemode if you mess something up."); - if (ImGui::InputInt("Red bits",&settings.glRedSize)) { + ImGui::TextWrapped(_("beware: changing these settings may render Furnace unusable! do so at your own risk.\nstart Furnace with -safemode if you mess something up.")); + if (ImGui::InputInt(_("Red bits"),&settings.glRedSize)) { if (settings.glRedSize<0) settings.glRedSize=0; if (settings.glRedSize>32) settings.glRedSize=32; settingsChanged=true; } - if (ImGui::InputInt("Green bits",&settings.glGreenSize)) { + if (ImGui::InputInt(_("Green bits"),&settings.glGreenSize)) { if (settings.glGreenSize<0) settings.glGreenSize=0; if (settings.glGreenSize>32) settings.glGreenSize=32; settingsChanged=true; } - if (ImGui::InputInt("Blue bits",&settings.glBlueSize)) { + if (ImGui::InputInt(_("Blue bits"),&settings.glBlueSize)) { if (settings.glBlueSize<0) settings.glBlueSize=0; if (settings.glBlueSize>32) settings.glBlueSize=32; settingsChanged=true; } - if (ImGui::InputInt("Alpha bits",&settings.glAlphaSize)) { + if (ImGui::InputInt(_("Alpha bits"),&settings.glAlphaSize)) { if (settings.glAlphaSize<0) settings.glAlphaSize=0; if (settings.glAlphaSize>32) settings.glAlphaSize=32; settingsChanged=true; } - if (ImGui::InputInt("Color depth",&settings.glDepthSize)) { + if (ImGui::InputInt(_("Color depth"),&settings.glDepthSize)) { if (settings.glDepthSize<0) settings.glDepthSize=0; if (settings.glDepthSize>128) settings.glDepthSize=128; settingsChanged=true; } - if (ImGui::InputInt("Stencil buffer size",&settings.glStencilSize)) { + if (ImGui::InputInt(_("Stencil buffer size"),&settings.glStencilSize)) { if (settings.glStencilSize<0) settings.glStencilSize=0; if (settings.glStencilSize>32) settings.glStencilSize=32; settingsChanged=true; } - if (ImGui::InputInt("Buffer size",&settings.glBufferSize)) { + if (ImGui::InputInt(_("Buffer size"),&settings.glBufferSize)) { if (settings.glBufferSize<0) settings.glBufferSize=0; if (settings.glBufferSize>128) settings.glBufferSize=128; settingsChanged=true; } bool glDoubleBufferB=settings.glDoubleBuffer; - if (ImGui::Checkbox("Double buffer",&glDoubleBufferB)) { + if (ImGui::Checkbox(_("Double buffer"),&glDoubleBufferB)) { settings.glDoubleBuffer=glDoubleBufferB; settingsChanged=true; } - ImGui::TextWrapped("the following values are common (in red, green, blue, alpha order):\n- 24 bits: 8, 8, 8, 0\n- 16 bits: 5, 6, 5, 0\n- 32 bits (with alpha): 8, 8, 8, 8\n- 30 bits (deep): 10, 10, 10, 0"); + ImGui::TextWrapped(_("the following values are common (in red, green, blue, alpha order):\n- 24 bits: 8, 8, 8, 0\n- 16 bits: 5, 6, 5, 0\n- 32 bits (with alpha): 8, 8, 8, 8\n- 30 bits (deep): 10, 10, 10, 0")); } else { - ImGui::Text("nothing to configure"); + ImGui::Text(_("nothing to configure")); } ImGui::TreePop(); } - ImGui::TextWrapped("current backend: %s\n%s\n%s\n%s",rend->getBackendName(),rend->getVendorName(),rend->getDeviceName(),rend->getAPIVersion()); + ImGui::TextWrapped(_("current backend: %s\n%s\n%s\n%s"),rend->getBackendName(),rend->getVendorName(),rend->getDeviceName(),rend->getAPIVersion()); bool vsyncB=settings.vsync; - if (ImGui::Checkbox("VSync",&vsyncB)) { + if (ImGui::Checkbox(_("VSync"),&vsyncB)) { settings.vsync=vsyncB; settingsChanged=true; if (rend!=NULL) { @@ -685,64 +741,64 @@ void FurnaceGUI::drawSettings() { } } - if (ImGui::SliderInt("Frame rate limit",&settings.frameRateLimit,0,250,settings.frameRateLimit==0?"Unlimited":"%d")) { + if (ImGui::SliderInt(_("Frame rate limit"),&settings.frameRateLimit,0,250,settings.frameRateLimit==0?_("Unlimited"):"%d")) { settingsChanged=true; } if (settings.frameRateLimit<0) settings.frameRateLimit=0; if (settings.frameRateLimit>1000) settings.frameRateLimit=1000; if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("only applies when VSync is disabled."); + ImGui::SetTooltip(_("only applies when VSync is disabled.")); } bool displayRenderTimeB=settings.displayRenderTime; - if (ImGui::Checkbox("Display render time",&displayRenderTimeB)) { + if (ImGui::Checkbox(_("Display render time"),&displayRenderTimeB)) { settings.displayRenderTime=displayRenderTimeB; settingsChanged=true; } if (settings.renderBackend!="Metal") { bool renderClearPosB=settings.renderClearPos; - if (ImGui::Checkbox("Late render clear",&renderClearPosB)) { + if (ImGui::Checkbox(_("Late render clear"),&renderClearPosB)) { settings.renderClearPos=renderClearPosB; settingsChanged=true; } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("calls rend->clear() after rend->present(). might reduce UI latency by one frame in some drivers."); + ImGui::SetTooltip(_("calls rend->clear() after rend->present(). might reduce UI latency by one frame in some drivers.")); } } bool powerSaveB=settings.powerSave; - if (ImGui::Checkbox("Power-saving mode",&powerSaveB)) { + if (ImGui::Checkbox(_("Power-saving mode"),&powerSaveB)) { settings.powerSave=powerSaveB; settingsChanged=true; } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("saves power by lowering the frame rate to 2fps when idle.\nmay cause issues under Mesa drivers!"); + ImGui::SetTooltip(_("saves power by lowering the frame rate to 2fps when idle.\nmay cause issues under Mesa drivers!")); } #ifndef IS_MOBILE bool noThreadedInputB=settings.noThreadedInput; - if (ImGui::Checkbox("Disable threaded input (restart after changing!)",&noThreadedInputB)) { + if (ImGui::Checkbox(_("Disable threaded input (restart after changing!)"),&noThreadedInputB)) { settings.noThreadedInput=noThreadedInputB; settingsChanged=true; } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("threaded input processes key presses for note preview on a separate thread (on supported platforms), which reduces latency.\nhowever, crashes have been reported when threaded input is on. enable this option if that is the case."); + ImGui::SetTooltip(_("threaded input processes key presses for note preview on a separate thread (on supported platforms), which reduces latency.\nhowever, crashes have been reported when threaded input is on. enable this option if that is the case.")); } #endif bool eventDelayB=settings.eventDelay; - if (ImGui::Checkbox("Enable event delay",&eventDelayB)) { + if (ImGui::Checkbox(_("Enable event delay"),&eventDelayB)) { settings.eventDelay=eventDelayB; settingsChanged=true; applyUISettings(false); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("may cause issues with high-polling-rate mice when previewing notes."); + ImGui::SetTooltip(_("may cause issues with high-polling-rate mice when previewing notes.")); } pushWarningColor(settings.chanOscThreads>cpuCores,settings.chanOscThreads>(cpuCores*2)); - if (ImGui::InputInt("Per-channel oscilloscope threads",&settings.chanOscThreads)) { + if (ImGui::InputInt(_("Per-channel oscilloscope threads"),&settings.chanOscThreads)) { if (settings.chanOscThreads<0) settings.chanOscThreads=0; if (settings.chanOscThreads>(cpuCores*3)) settings.chanOscThreads=cpuCores*3; if (settings.chanOscThreads>256) settings.chanOscThreads=256; @@ -750,50 +806,50 @@ void FurnaceGUI::drawSettings() { } if (settings.chanOscThreads>=(cpuCores*3)) { if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("you're being silly, aren't you? that's enough."); + ImGui::SetTooltip(_("you're being silly, aren't you? that's enough.")); } } else if (settings.chanOscThreads>(cpuCores*2)) { if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("what are you doing? stop!"); + ImGui::SetTooltip(_("what are you doing? stop!")); } } else if (settings.chanOscThreads>cpuCores) { if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("it is a bad idea to set this number higher than your CPU core count (%d)!",cpuCores); + ImGui::SetTooltip(_("it is a bad idea to set this number higher than your CPU core count (%d)!"),cpuCores); } } popWarningColor(); - ImGui::Text("Oscilloscope rendering engine:"); + ImGui::Text(_("Oscilloscope rendering engine:")); ImGui::Indent(); - if (ImGui::RadioButton("ImGui line plot",settings.shaderOsc==0)) { + if (ImGui::RadioButton(_("ImGui line plot"),settings.shaderOsc==0)) { settings.shaderOsc=0; } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("render using Dear ImGui's built-in line drawing functions."); + ImGui::SetTooltip(_("render using Dear ImGui's built-in line drawing functions.")); } - if (ImGui::RadioButton("GLSL (if available)",settings.shaderOsc==1)) { + if (ImGui::RadioButton(_("GLSL (if available)"),settings.shaderOsc==1)) { settings.shaderOsc=1; } if (ImGui::IsItemHovered()) { #ifdef USE_GLES - ImGui::SetTooltip("render using shaders that run on the graphics card.\nonly available in OpenGL ES 2.0 render backend."); + ImGui::SetTooltip(_("render using shaders that run on the graphics card.\nonly available in OpenGL ES 2.0 render backend.")); #else - ImGui::SetTooltip("render using shaders that run on the graphics card.\nonly available in OpenGL 3.0 render backend."); + ImGui::SetTooltip(_("render using shaders that run on the graphics card.\nonly available in OpenGL 3.0 render backend.")); #endif } ImGui::Unindent(); #ifdef IS_MOBILE // SUBSECTION VIBRATION - CONFIG_SUBSECTION("Vibration"); + CONFIG_SUBSECTION(_("Vibration")); - if (ImGui::SliderFloat("Strength",&settings.vibrationStrength,0.0f,1.0f)) { + if (ImGui::SliderFloat(_("Strength"),&settings.vibrationStrength,0.0f,1.0f)) { if (settings.vibrationStrength<0.0f) settings.vibrationStrength=0.0f; if (settings.vibrationStrength>1.0f) settings.vibrationStrength=1.0f; settingsChanged=true; } - if (ImGui::SliderInt("Length",&settings.vibrationLength,10,500)) { + if (ImGui::SliderInt(_("Length"),&settings.vibrationLength,10,500)) { if (settings.vibrationLength<10) settings.vibrationLength=10; if (settings.vibrationLength>500) settings.vibrationLength=500; settingsChanged=true; @@ -801,128 +857,128 @@ void FurnaceGUI::drawSettings() { #endif // SUBSECTION FILE - CONFIG_SUBSECTION("File"); + CONFIG_SUBSECTION(_("File")); bool sysFileDialogB=settings.sysFileDialog; - if (ImGui::Checkbox("Use system file picker",&sysFileDialogB)) { + if (ImGui::Checkbox(_("Use system file picker"),&sysFileDialogB)) { settings.sysFileDialog=sysFileDialogB; settingsChanged=true; } - if (ImGui::InputInt("Number of recent files",&settings.maxRecentFile,1,5)) { + if (ImGui::InputInt(_("Number of recent files"),&settings.maxRecentFile,1,5)) { if (settings.maxRecentFile<0) settings.maxRecentFile=0; if (settings.maxRecentFile>30) settings.maxRecentFile=30; settingsChanged=true; } bool compressB=settings.compress; - if (ImGui::Checkbox("Compress when saving",&compressB)) { + if (ImGui::Checkbox(_("Compress when saving"),&compressB)) { settings.compress=compressB; settingsChanged=true; } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("use zlib to compress saved songs."); + ImGui::SetTooltip(_("use zlib to compress saved songs.")); } bool saveUnusedPatternsB=settings.saveUnusedPatterns; - if (ImGui::Checkbox("Save unused patterns",&saveUnusedPatternsB)) { + if (ImGui::Checkbox(_("Save unused patterns"),&saveUnusedPatternsB)) { settings.saveUnusedPatterns=saveUnusedPatternsB; settingsChanged=true; } bool newPatternFormatB=settings.newPatternFormat; - if (ImGui::Checkbox("Use new pattern format when saving",&newPatternFormatB)) { + if (ImGui::Checkbox(_("Use new pattern format when saving"),&newPatternFormatB)) { settings.newPatternFormat=newPatternFormatB; settingsChanged=true; } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("use a packed format which saves space when saving songs.\ndisable if you need compatibility with older Furnace and/or tools\nwhich do not support this format."); + ImGui::SetTooltip(_("use a packed format which saves space when saving songs.\ndisable if you need compatibility with older Furnace and/or tools\nwhich do not support this format.")); } bool noDMFCompatB=settings.noDMFCompat; - if (ImGui::Checkbox("Don't apply compatibility flags when loading .dmf",&noDMFCompatB)) { + if (ImGui::Checkbox(_("Don't apply compatibility flags when loading .dmf"),&noDMFCompatB)) { settings.noDMFCompat=noDMFCompatB; settingsChanged=true; } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("do not report any issues arising from the use of this option!"); + ImGui::SetTooltip(_("do not report any issues arising from the use of this option!")); } - ImGui::Text("Play after opening song:"); + ImGui::Text(_("Play after opening song:")); ImGui::Indent(); - if (ImGui::RadioButton("No##pol0",settings.playOnLoad==0)) { + if (ImGui::RadioButton(_("No##pol0"),settings.playOnLoad==0)) { settings.playOnLoad=0; settingsChanged=true; } - if (ImGui::RadioButton("Only if already playing##pol1",settings.playOnLoad==1)) { + if (ImGui::RadioButton(_("Only if already playing##pol1"),settings.playOnLoad==1)) { settings.playOnLoad=1; settingsChanged=true; } - if (ImGui::RadioButton("Yes##pol0",settings.playOnLoad==2)) { + if (ImGui::RadioButton(_("Yes##pol0"),settings.playOnLoad==2)) { settings.playOnLoad=2; settingsChanged=true; } ImGui::Unindent(); - ImGui::Text("Audio export loop/fade out time:"); + ImGui::Text(_("Audio export loop/fade out time:")); ImGui::Indent(); - if (ImGui::RadioButton("Set to these values on start-up:##fot0",settings.persistFadeOut==0)) { + if (ImGui::RadioButton(_("Set to these values on start-up:##fot0"),settings.persistFadeOut==0)) { settings.persistFadeOut=0; settingsChanged=true; } ImGui::BeginDisabled(settings.persistFadeOut); ImGui::Indent(); - if (ImGui::InputInt("Loops",&settings.exportLoops,1,2)) { + if (ImGui::InputInt(_("Loops"),&settings.exportLoops,1,2)) { if (settings.exportLoops<0) settings.exportLoops=0; audioExportOptions.loops=settings.exportLoops; settingsChanged=true; } - if (ImGui::InputDouble("Fade out (seconds)",&settings.exportFadeOut,1.0,2.0,"%.1f")) { + if (ImGui::InputDouble(_("Fade out (seconds)"),&settings.exportFadeOut,1.0,2.0,"%.1f")) { if (settings.exportFadeOut<0.0) settings.exportFadeOut=0.0; audioExportOptions.fadeOut=settings.exportFadeOut; settingsChanged=true; } ImGui::Unindent(); ImGui::EndDisabled(); - if (ImGui::RadioButton("Remember last values##fot1",settings.persistFadeOut==1)) { + if (ImGui::RadioButton(_("Remember last values##fot1"),settings.persistFadeOut==1)) { settings.persistFadeOut=1; settingsChanged=true; } ImGui::Unindent(); bool writeInsNamesB=settings.writeInsNames; - if (ImGui::Checkbox("Store instrument name in .fui",&writeInsNamesB)) { + if (ImGui::Checkbox(_("Store instrument name in .fui"),&writeInsNamesB)) { settings.writeInsNames=writeInsNamesB; settingsChanged=true; } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("when enabled, saving an instrument will store its name.\nthis may increase file size."); + ImGui::SetTooltip(_("when enabled, saving an instrument will store its name.\nthis may increase file size.")); } bool readInsNamesB=settings.readInsNames; - if (ImGui::Checkbox("Load instrument name from .fui",&readInsNamesB)) { + if (ImGui::Checkbox(_("Load instrument name from .fui"),&readInsNamesB)) { settings.readInsNames=readInsNamesB; settingsChanged=true; } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("when enabled, loading an instrument will use the stored name (if present).\notherwise, it will use the file name."); + ImGui::SetTooltip(_("when enabled, loading an instrument will use the stored name (if present).\notherwise, it will use the file name.")); } bool autoFillSaveB=settings.autoFillSave; - if (ImGui::Checkbox("Auto-fill file name when saving",&autoFillSaveB)) { + if (ImGui::Checkbox(_("Auto-fill file name when saving"),&autoFillSaveB)) { settings.autoFillSave=autoFillSaveB; settingsChanged=true; } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("fill the file name field with an appropriate file name when saving or exporting."); + ImGui::SetTooltip(_("fill the file name field with an appropriate file name when saving or exporting.")); } // SUBSECTION NEW SONG - CONFIG_SUBSECTION("New Song"); + CONFIG_SUBSECTION(_("New Song")); ImGui::AlignTextToFramePadding(); - ImGui::Text("Initial system:"); + ImGui::Text(_("Initial system:")); ImGui::SameLine(); - if (ImGui::Button("Current system")) { + if (ImGui::Button(_("Current system"))) { settings.initialSys.clear(); for (int i=0; isong.systemLen; i++) { settings.initialSys.set(fmt::sprintf("id%d",i),e->systemToFileFur(e->song.system[i])); @@ -935,7 +991,7 @@ void FurnaceGUI::drawSettings() { settingsChanged=true; } ImGui::SameLine(); - if (ImGui::Button("Randomize")) { + if (ImGui::Button(_("Randomize"))) { settings.initialSys.clear(); int howMany=1+rand()%3; int totalAvailSys=0; @@ -985,7 +1041,7 @@ void FurnaceGUI::drawSettings() { settingsChanged=true; } ImGui::SameLine(); - if (ImGui::Button("Reset to defaults")) { + if (ImGui::Button(_("Reset to defaults"))) { settings.initialSys.clear(); settings.initialSys.set("id0",e->systemToFileFur(DIV_SYSTEM_YM2612)); settings.initialSys.set("vol0",1.0f); @@ -1002,7 +1058,7 @@ void FurnaceGUI::drawSettings() { } ImGui::AlignTextToFramePadding(); - ImGui::Text("Name"); + ImGui::Text(_("Name")); ImGui::SameLine(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); if (ImGui::InputText("##InitSysName",&settings.initialSysName)) settingsChanged=true; @@ -1022,7 +1078,7 @@ void FurnaceGUI::drawSettings() { float vol=fabs(sysVol); ImGui::PushID(i); - ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x-ImGui::CalcTextSize("Invert").x-ImGui::GetFrameHeightWithSpacing()*2.0-ImGui::GetStyle().ItemSpacing.x*2.0); + ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x-ImGui::CalcTextSize(_("Invert")).x-ImGui::GetFrameHeightWithSpacing()*2.0-ImGui::GetStyle().ItemSpacing.x*2.0); if (ImGui::BeginCombo("##System",getSystemName(sysID))) { for (int j=0; availableSystems[j]; j++) { if (ImGui::Selectable(getSystemName((DivSystem)availableSystems[j]),sysID==availableSystems[j])) { @@ -1036,7 +1092,7 @@ void FurnaceGUI::drawSettings() { } ImGui::SameLine(); - if (ImGui::Checkbox("Invert",&doInvert)) { + if (ImGui::Checkbox(_("Invert"),&doInvert)) { sysVol=-sysVol; settings.initialSys.set(fmt::sprintf("vol%d",i),sysVol); settingsChanged=true; @@ -1051,7 +1107,7 @@ void FurnaceGUI::drawSettings() { popDestColor(); //ImGui::EndDisabled(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x-ImGui::GetFrameHeightWithSpacing()*2.0-ImGui::GetStyle().ItemSpacing.x*2.0); - if (CWSliderFloat("Volume",&vol,0.0f,3.0f)) { + if (CWSliderFloat(_("Volume"),&vol,0.0f,3.0f)) { if (doInvert) { if (vol<0.0001) vol=0.0001; } @@ -1062,14 +1118,14 @@ void FurnaceGUI::drawSettings() { settingsChanged=true; } rightClickable ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x-ImGui::GetFrameHeightWithSpacing()*2.0-ImGui::GetStyle().ItemSpacing.x*2.0); - if (CWSliderFloat("Panning",&sysPan,-1.0f,1.0f)) { + if (CWSliderFloat(_("Panning"),&sysPan,-1.0f,1.0f)) { if (sysPan<-1.0f) sysPan=-1.0f; if (sysPan>1.0f) sysPan=1.0f; settings.initialSys.set(fmt::sprintf("pan%d",i),(float)sysPan); settingsChanged=true; } rightClickable ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x-ImGui::GetFrameHeightWithSpacing()*2.0-ImGui::GetStyle().ItemSpacing.x*2.0); - if (CWSliderFloat("Front/Rear",&sysPanFR,-1.0f,1.0f)) { + if (CWSliderFloat(_("Front/Rear"),&sysPanFR,-1.0f,1.0f)) { if (sysPanFR<-1.0f) sysPanFR=-1.0f; if (sysPanFR>1.0f) sysPanFR=1.0f; settings.initialSys.set(fmt::sprintf("fr%d",i),(float)sysPanFR); @@ -1077,7 +1133,7 @@ void FurnaceGUI::drawSettings() { } rightClickable // oh please MSVC don't cry - if (ImGui::TreeNode("Configure")) { + if (ImGui::TreeNode(_("Configure"))) { String sysFlagsS=settings.initialSys.getString(fmt::sprintf("flags%d",i),""); DivConfig sysFlags; sysFlags.loadFromBase64(sysFlagsS.c_str()); @@ -1120,84 +1176,84 @@ void FurnaceGUI::drawSettings() { settings.initialSys.set(fmt::sprintf("flags%d",sysCount),""); } - ImGui::Text("When creating new song:"); + ImGui::Text(_("When creating new song:")); ImGui::Indent(); - if (ImGui::RadioButton("Display system preset selector##NSB0",settings.newSongBehavior==0)) { + if (ImGui::RadioButton(_("Display system preset selector##NSB0"),settings.newSongBehavior==0)) { settings.newSongBehavior=0; settingsChanged=true; } - if (ImGui::RadioButton("Start with initial system##NSB1",settings.newSongBehavior==1)) { + if (ImGui::RadioButton(_("Start with initial system##NSB1"),settings.newSongBehavior==1)) { settings.newSongBehavior=1; settingsChanged=true; } - if (ImGui::InputText("Default author name", &settings.defaultAuthorName)) settingsChanged=true; + if (ImGui::InputText(_("Default author name"), &settings.defaultAuthorName)) settingsChanged=true; ImGui::Unindent(); // SUBSECTION START-UP - CONFIG_SUBSECTION("Start-up"); - ImGui::Text("Play intro on start-up:"); + CONFIG_SUBSECTION(_("Start-up")); + ImGui::Text(_("Play intro on start-up:")); ImGui::Indent(); - if (ImGui::RadioButton("No##pis0",settings.alwaysPlayIntro==0)) { + if (ImGui::RadioButton(_("No##pis0"),settings.alwaysPlayIntro==0)) { settings.alwaysPlayIntro=0; settingsChanged=true; } - if (ImGui::RadioButton("Short##pis1",settings.alwaysPlayIntro==1)) { + if (ImGui::RadioButton(_("Short##pis1"),settings.alwaysPlayIntro==1)) { settings.alwaysPlayIntro=1; settingsChanged=true; } - if (ImGui::RadioButton("Full (short when loading song)##pis2",settings.alwaysPlayIntro==2)) { + if (ImGui::RadioButton(_("Full (short when loading song)##pis2"),settings.alwaysPlayIntro==2)) { settings.alwaysPlayIntro=2; settingsChanged=true; } - if (ImGui::RadioButton("Full (always)##pis3",settings.alwaysPlayIntro==3)) { + if (ImGui::RadioButton(_("Full (always)##pis3"),settings.alwaysPlayIntro==3)) { settings.alwaysPlayIntro=3; settingsChanged=true; } ImGui::Unindent(); bool disableFadeInB=settings.disableFadeIn; - if (ImGui::Checkbox("Disable fade-in during start-up",&disableFadeInB)) { + if (ImGui::Checkbox(_("Disable fade-in during start-up"),&disableFadeInB)) { settings.disableFadeIn=disableFadeInB; settingsChanged=true; } bool partyTimeB=settings.partyTime; - if (ImGui::Checkbox("About screen party time",&partyTimeB)) { + if (ImGui::Checkbox(_("About screen party time"),&partyTimeB)) { settings.partyTime=partyTimeB; settingsChanged=true; } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Warning: may cause epileptic seizures."); + ImGui::SetTooltip(_("Warning: may cause epileptic seizures.")); } // SUBSECTION BEHAVIOR - CONFIG_SUBSECTION("Behavior"); + CONFIG_SUBSECTION(_("Behavior")); bool blankInsB=settings.blankIns; - if (ImGui::Checkbox("New instruments are blank",&blankInsB)) { + if (ImGui::Checkbox(_("New instruments are blank"),&blankInsB)) { settings.blankIns=blankInsB; settingsChanged=true; } // SUBSECTION CONFIGURATION - CONFIG_SUBSECTION("Configuration"); - if (ImGui::Button("Import")) { + CONFIG_SUBSECTION(_("Configuration")); + if (ImGui::Button(_("Import"))) { openFileDialog(GUI_FILE_IMPORT_CONFIG); } ImGui::SameLine(); - if (ImGui::Button("Export")) { + if (ImGui::Button(_("Export"))) { openFileDialog(GUI_FILE_EXPORT_CONFIG); } pushDestColor(); - if (ImGui::Button("Factory Reset")) { - showWarning("Are you sure you want to reset all Furnace settings?\nYou must restart Furnace after doing so.",GUI_WARN_RESET_CONFIG); + if (ImGui::Button(_("Factory Reset"))) { + showWarning(_("Are you sure you want to reset all Furnace settings?\nYou must restart Furnace after doing so."),GUI_WARN_RESET_CONFIG); } popDestColor(); END_SECTION; } - CONFIG_SECTION("Audio") { + CONFIG_SECTION(_("Audio")) { // SUBSECTION OUTPUT - CONFIG_SUBSECTION("Output"); + CONFIG_SUBSECTION(_("Output")); if (ImGui::BeginTable("##Output",2)) { ImGui::TableSetupColumn("##Label",ImGuiTableColumnFlags_WidthFixed); ImGui::TableSetupColumn("##Combo",ImGuiTableColumnFlags_WidthStretch); @@ -1205,7 +1261,7 @@ void FurnaceGUI::drawSettings() { ImGui::TableNextRow(); ImGui::TableNextColumn(); ImGui::AlignTextToFramePadding(); - ImGui::Text("Backend"); + ImGui::Text(_("Backend")); ImGui::TableNextColumn(); int prevAudioEngine=settings.audioEngine; if (ImGui::BeginCombo("##Backend",audioBackends[settings.audioEngine])) { @@ -1238,10 +1294,10 @@ void FurnaceGUI::drawSettings() { ImGui::TableNextRow(); ImGui::TableNextColumn(); ImGui::AlignTextToFramePadding(); - ImGui::Text("Driver"); + ImGui::Text(_("Driver")); ImGui::TableNextColumn(); - if (ImGui::BeginCombo("##SDLADriver",settings.sdlAudioDriver.empty()?"Automatic":settings.sdlAudioDriver.c_str())) { - if (ImGui::Selectable("Automatic",settings.sdlAudioDriver.empty())) { + if (ImGui::BeginCombo("##SDLADriver",settings.sdlAudioDriver.empty()?_("Automatic"):settings.sdlAudioDriver.c_str())) { + if (ImGui::Selectable(_("Automatic"),settings.sdlAudioDriver.empty())) { settings.sdlAudioDriver=""; settingsChanged=true; } @@ -1254,30 +1310,30 @@ void FurnaceGUI::drawSettings() { ImGui::EndCombo(); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("you may need to restart Furnace for this setting to take effect."); + ImGui::SetTooltip(_("you may need to restart Furnace for this setting to take effect.")); } } ImGui::TableNextRow(); ImGui::TableNextColumn(); ImGui::AlignTextToFramePadding(); - ImGui::Text("Device"); + ImGui::Text(_("Device")); ImGui::TableNextColumn(); if (audioEngineChanged) { ImGui::BeginDisabled(); - if (ImGui::BeginCombo("##AudioDevice","")) { - ImGui::Text("ALERT - TRESPASSER DETECTED"); + if (ImGui::BeginCombo("##AudioDevice",_(""))) { + ImGui::Text(_("ALERT - TRESPASSER DETECTED")); if (ImGui::IsItemHovered()) { - showError("you have been arrested for trying to engage with a disabled combo box."); + showError(_("you have been arrested for trying to engage with a disabled combo box.")); ImGui::CloseCurrentPopup(); } ImGui::EndCombo(); } ImGui::EndDisabled(); } else { - String audioDevName=settings.audioDevice.empty()?"":settings.audioDevice; + String audioDevName=settings.audioDevice.empty()?_(""):settings.audioDevice; if (ImGui::BeginCombo("##AudioDevice",audioDevName.c_str())) { - if (ImGui::Selectable("",settings.audioDevice.empty())) { + if (ImGui::Selectable(_(""),settings.audioDevice.empty())) { settings.audioDevice=""; settingsChanged=true; } @@ -1294,7 +1350,7 @@ void FurnaceGUI::drawSettings() { ImGui::TableNextRow(); ImGui::TableNextColumn(); ImGui::AlignTextToFramePadding(); - ImGui::Text("Sample rate"); + ImGui::Text(_("Sample rate")); ImGui::TableNextColumn(); String sr=fmt::sprintf("%d",settings.audioRate); if (ImGui::BeginCombo("##SampleRate",sr.c_str())) { @@ -1313,7 +1369,7 @@ void FurnaceGUI::drawSettings() { ImGui::TableNextRow(); ImGui::TableNextColumn(); ImGui::AlignTextToFramePadding(); - ImGui::Text("Outputs"); + ImGui::Text(_("Outputs")); ImGui::TableNextColumn(); if (ImGui::InputInt("##AudioChansI",&settings.audioChans,1,2)) { if (settings.audioChans<1) settings.audioChans=1; @@ -1321,15 +1377,15 @@ void FurnaceGUI::drawSettings() { settingsChanged=true; } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("common values:\n- 1 for mono\n- 2 for stereo\n- 4 for quadraphonic\n- 6 for 5.1 surround\n- 8 for 7.1 surround"); + ImGui::SetTooltip(_("common values:\n- 1 for mono\n- 2 for stereo\n- 4 for quadraphonic\n- 6 for 5.1 surround\n- 8 for 7.1 surround")); } ImGui::TableNextRow(); ImGui::TableNextColumn(); ImGui::AlignTextToFramePadding(); - ImGui::Text("Buffer size"); + ImGui::Text(_("Buffer size")); ImGui::TableNextColumn(); - String bs=fmt::sprintf("%d (latency: ~%.1fms)",settings.audioBufSize,2000.0*(double)settings.audioBufSize/(double)MAX(1,settings.audioRate)); + String bs=fmt::sprintf(_("%d (latency: ~%.1fms)"),settings.audioBufSize,2000.0*(double)settings.audioBufSize/(double)MAX(1,settings.audioRate)); if (ImGui::BeginCombo("##BufferSize",bs.c_str())) { BUFFER_SIZE_SELECTABLE(64); BUFFER_SIZE_SELECTABLE(128); @@ -1344,7 +1400,7 @@ void FurnaceGUI::drawSettings() { if (settings.showPool) { bool renderPoolThreadsB=(settings.renderPoolThreads>0); - if (ImGui::Checkbox("Multi-threaded (EXPERIMENTAL)",&renderPoolThreadsB)) { + if (ImGui::Checkbox(_("Multi-threaded (EXPERIMENTAL)"),&renderPoolThreadsB)) { if (renderPoolThreadsB) { settings.renderPoolThreads=2; } else { @@ -1353,23 +1409,23 @@ void FurnaceGUI::drawSettings() { settingsChanged=true; } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("runs chip emulation on separate threads.\nmay increase performance when using heavy emulation cores.\n\nwarnings:\n- experimental!\n- only useful on multi-chip songs."); + ImGui::SetTooltip(_("runs chip emulation on separate threads.\nmay increase performance when using heavy emulation cores.\n\nwarnings:\n- experimental!\n- only useful on multi-chip songs.")); } if (renderPoolThreadsB) { pushWarningColor(settings.renderPoolThreads>cpuCores,settings.renderPoolThreads>cpuCores); - if (ImGui::InputInt("Number of threads",&settings.renderPoolThreads)) { + if (ImGui::InputInt(_("Number of threads"),&settings.renderPoolThreads)) { if (settings.renderPoolThreads<2) settings.renderPoolThreads=2; if (settings.renderPoolThreads>32) settings.renderPoolThreads=32; settingsChanged=true; } if (settings.renderPoolThreads>=DIV_MAX_CHIPS) { if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("that's the limit!"); + ImGui::SetTooltip(_("that's the limit!")); } } else if (settings.renderPoolThreads>cpuCores) { if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("it is a VERY bad idea to set this number higher than your CPU core count (%d)!",cpuCores); + ImGui::SetTooltip(_("it is a VERY bad idea to set this number higher than your CPU core count (%d)!"),cpuCores); } } popWarningColor(); @@ -1377,16 +1433,16 @@ void FurnaceGUI::drawSettings() { } bool lowLatencyB=settings.lowLatency; - if (ImGui::Checkbox("Low-latency mode",&lowLatencyB)) { + if (ImGui::Checkbox(_("Low-latency mode"),&lowLatencyB)) { settings.lowLatency=lowLatencyB; settingsChanged=true; } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("reduces latency by running the engine faster than the tick rate.\nuseful for live playback/jam mode.\n\nwarning: only enable if your buffer size is small (10ms or less)."); + ImGui::SetTooltip(_("reduces latency by running the engine faster than the tick rate.\nuseful for live playback/jam mode.\n\nwarning: only enable if your buffer size is small (10ms or less).")); } bool forceMonoB=settings.forceMono; - if (ImGui::Checkbox("Force mono audio",&forceMonoB)) { + if (ImGui::Checkbox(_("Force mono audio"),&forceMonoB)) { settings.forceMono=forceMonoB; settingsChanged=true; } @@ -1394,7 +1450,7 @@ void FurnaceGUI::drawSettings() { if (settings.audioEngine==DIV_AUDIO_PORTAUDIO) { if (settings.audioDevice.find("[Windows WASAPI] ")==0) { bool wasapiExB=settings.wasapiEx; - if (ImGui::Checkbox("Exclusive mode",&wasapiExB)) { + if (ImGui::Checkbox(_("Exclusive mode"),&wasapiExB)) { settings.wasapiEx=wasapiExB; settingsChanged=true; } @@ -1404,32 +1460,37 @@ void FurnaceGUI::drawSettings() { TAAudioDesc& audioWant=e->getAudioDescWant(); TAAudioDesc& audioGot=e->getAudioDescGot(); - ImGui::Text("want: %d samples @ %.0fHz (%d %s)",audioWant.bufsize,audioWant.rate,audioWant.outChans,(audioWant.outChans==1)?"channel":"channels"); - ImGui::Text("got: %d samples @ %.0fHz (%d %s)",audioGot.bufsize,audioGot.rate,audioWant.outChans,(audioWant.outChans==1)?"channel":"channels"); +#ifdef HAVE_LOCALE + ImGui::Text(ngettext("want: %d samples @ %.0fHz (%d channel)","want: %d samples @ %.0fHz (%d channels)",audioWant.outChans),audioWant.bufsize,audioWant.rate,audioWant.outChans); + ImGui::Text(ngettext("got: %d samples @ %.0fHz (%d channel)","got: %d samples @ %.0fHz (%d channels)",audioGot.outChans),audioGot.bufsize,audioGot.rate,audioGot.outChans); +#else + ImGui::Text(_GN("want: %d samples @ %.0fHz (%d channel)","want: %d samples @ %.0fHz (%d channels)",audioWant.outChans),audioWant.bufsize,audioWant.rate,audioWant.outChans); + ImGui::Text(_GN("got: %d samples @ %.0fHz (%d channel)","got: %d samples @ %.0fHz (%d channels)",audioGot.outChans),audioGot.bufsize,audioGot.rate,audioGot.outChans); +#endif // SUBSECTION MIXING - CONFIG_SUBSECTION("Mixing"); + CONFIG_SUBSECTION(_("Mixing")); ImGui::AlignTextToFramePadding(); - ImGui::Text("Quality"); + ImGui::Text(_("Quality")); ImGui::SameLine(); - if (ImGui::Combo("##Quality",&settings.audioQuality,audioQualities,2)) settingsChanged=true; + if (ImGui::Combo("##Quality",&settings.audioQuality,LocalizedComboGetter,audioQualities,2)) settingsChanged=true; bool clampSamplesB=settings.clampSamples; - if (ImGui::Checkbox("Software clipping",&clampSamplesB)) { + if (ImGui::Checkbox(_("Software clipping"),&clampSamplesB)) { settings.clampSamples=clampSamplesB; settingsChanged=true; } bool audioHiPassB=settings.audioHiPass; - if (ImGui::Checkbox("DC offset correction",&audioHiPassB)) { + if (ImGui::Checkbox(_("DC offset correction"),&audioHiPassB)) { settings.audioHiPass=audioHiPassB; settingsChanged=true; } // SUBSECTION METRONOME - CONFIG_SUBSECTION("Metronome"); + CONFIG_SUBSECTION(_("Metronome")); ImGui::AlignTextToFramePadding(); - ImGui::Text("Volume"); + ImGui::Text(_("Volume")); ImGui::SameLine(); if (ImGui::SliderInt("##MetroVol",&settings.metroVol,0,200,"%d%%")) { if (settings.metroVol<0) settings.metroVol=0; @@ -1439,9 +1500,9 @@ void FurnaceGUI::drawSettings() { } // SUBSECTION SAMPLE PREVIEW - CONFIG_SUBSECTION("Sample preview"); + CONFIG_SUBSECTION(_("Sample preview")); ImGui::AlignTextToFramePadding(); - ImGui::Text("Volume"); + ImGui::Text(_("Volume")); ImGui::SameLine(); if (ImGui::SliderInt("##SampleVol",&settings.sampleVol,0,100,"%d%%")) { if (settings.sampleVol<0) settings.sampleVol=0; @@ -1452,16 +1513,16 @@ void FurnaceGUI::drawSettings() { END_SECTION; } - CONFIG_SECTION("MIDI") { + CONFIG_SECTION(_("MIDI")) { // SUBSECTION MIDI INPUT - CONFIG_SUBSECTION("MIDI input"); + CONFIG_SUBSECTION(_("MIDI input")); ImGui::AlignTextToFramePadding(); - ImGui::Text("MIDI input"); + ImGui::Text(_("MIDI input")); ImGui::SameLine(); - String midiInName=settings.midiInDevice.empty()?"":settings.midiInDevice; + String midiInName=settings.midiInDevice.empty()?_(""):settings.midiInDevice; bool hasToReloadMidi=false; if (ImGui::BeginCombo("##MidiInDevice",midiInName.c_str())) { - if (ImGui::Selectable("",settings.midiInDevice.empty())) { + if (ImGui::Selectable(_(""),settings.midiInDevice.empty())) { settings.midiInDevice=""; hasToReloadMidi=true; settingsChanged=true; @@ -1477,7 +1538,7 @@ void FurnaceGUI::drawSettings() { } ImGui::SameLine(); - if (ImGui::Button("Re-scan MIDI devices")) { + if (ImGui::Button(_("Re-scan MIDI devices"))) { e->rescanMidiDevices(); audioEngineChanged=true; settingsChanged=false; @@ -1488,68 +1549,68 @@ void FurnaceGUI::drawSettings() { midiMap.compile(); } - if (ImGui::Checkbox("Note input",&midiMap.noteInput)) settingsChanged=true; - if (ImGui::Checkbox("Velocity input",&midiMap.volInput)) settingsChanged=true; + if (ImGui::Checkbox(_("Note input"),&midiMap.noteInput)) settingsChanged=true; + if (ImGui::Checkbox(_("Velocity input"),&midiMap.volInput)) settingsChanged=true; // TODO - //ImGui::Checkbox("Use raw velocity value (don't map from linear to log)",&midiMap.rawVolume); - //ImGui::Checkbox("Polyphonic/chord input",&midiMap.polyInput); - if (ImGui::Checkbox("Map MIDI channels to direct channels",&midiMap.directChannel)) { + //ImGui::Checkbox(_("Use raw velocity value (don't map from linear to log)"),&midiMap.rawVolume); + //ImGui::Checkbox(_("Polyphonic/chord input"),&midiMap.polyInput); + if (ImGui::Checkbox(_("Map MIDI channels to direct channels"),&midiMap.directChannel)) { e->setMidiDirect(midiMap.directChannel); e->setMidiDirectProgram(midiMap.directChannel && midiMap.directProgram); settingsChanged=true; } if (midiMap.directChannel) { - if (ImGui::Checkbox("Program change pass-through",&midiMap.directProgram)) { + if (ImGui::Checkbox(_("Program change pass-through"),&midiMap.directProgram)) { e->setMidiDirectProgram(midiMap.directChannel && midiMap.directProgram); settingsChanged=true; } } - if (ImGui::Checkbox("Map Yamaha FM voice data to instruments",&midiMap.yamahaFMResponse)) settingsChanged=true; + if (ImGui::Checkbox(_("Map Yamaha FM voice data to instruments"),&midiMap.yamahaFMResponse)) settingsChanged=true; if (!(midiMap.directChannel && midiMap.directProgram)) { - if (ImGui::Checkbox("Program change is instrument selection",&midiMap.programChange)) settingsChanged=true; + if (ImGui::Checkbox(_("Program change is instrument selection"),&midiMap.programChange)) settingsChanged=true; } - //ImGui::Checkbox("Listen to MIDI clock",&midiMap.midiClock); - //ImGui::Checkbox("Listen to MIDI time code",&midiMap.midiTimeCode); - if (ImGui::Combo("Value input style",&midiMap.valueInputStyle,valueInputStyles,7)) settingsChanged=true; + //ImGui::Checkbox(_("Listen to MIDI clock"),&midiMap.midiClock); + //ImGui::Checkbox(_("Listen to MIDI time code"),&midiMap.midiTimeCode); + if (ImGui::Combo(_("Value input style"),&midiMap.valueInputStyle,LocalizedComboGetter,valueInputStyles,7)) settingsChanged=true; if (midiMap.valueInputStyle>3) { if (midiMap.valueInputStyle==6) { - if (ImGui::InputInt("Control##valueCCS",&midiMap.valueInputControlSingle,1,16)) { + if (ImGui::InputInt(_("Control##valueCCS"),&midiMap.valueInputControlSingle,1,16)) { if (midiMap.valueInputControlSingle<0) midiMap.valueInputControlSingle=0; if (midiMap.valueInputControlSingle>127) midiMap.valueInputControlSingle=127; settingsChanged=true; } } else { - if (ImGui::InputInt((midiMap.valueInputStyle==4)?"CC of upper nibble##valueCC1":"MSB CC##valueCC1",&midiMap.valueInputControlMSB,1,16)) { + if (ImGui::InputInt((midiMap.valueInputStyle==4)?_("CC of upper nibble##valueCC1"):_("MSB CC##valueCC1"),&midiMap.valueInputControlMSB,1,16)) { if (midiMap.valueInputControlMSB<0) midiMap.valueInputControlMSB=0; if (midiMap.valueInputControlMSB>127) midiMap.valueInputControlMSB=127; settingsChanged=true; } - if (ImGui::InputInt((midiMap.valueInputStyle==4)?"CC of lower nibble##valueCC2":"LSB CC##valueCC2",&midiMap.valueInputControlLSB,1,16)) { + if (ImGui::InputInt((midiMap.valueInputStyle==4)?_("CC of lower nibble##valueCC2"):_("LSB CC##valueCC2"),&midiMap.valueInputControlLSB,1,16)) { if (midiMap.valueInputControlLSB<0) midiMap.valueInputControlLSB=0; if (midiMap.valueInputControlLSB>127) midiMap.valueInputControlLSB=127; settingsChanged=true; } } } - if (ImGui::TreeNode("Per-column control change")) { + if (ImGui::TreeNode(_("Per-column control change"))) { for (int i=0; i<18; i++) { ImGui::PushID(i); - if (ImGui::Combo(specificControls[i],&midiMap.valueInputSpecificStyle[i],valueSInputStyles,4)) settingsChanged=true; + if (ImGui::Combo(specificControls[i],&midiMap.valueInputSpecificStyle[i],LocalizedComboGetter,valueSInputStyles,4)) settingsChanged=true; if (midiMap.valueInputSpecificStyle[i]>0) { ImGui::Indent(); if (midiMap.valueInputSpecificStyle[i]==3) { - if (ImGui::InputInt("Control##valueCCS",&midiMap.valueInputSpecificSingle[i],1,16)) { + if (ImGui::InputInt(_("Control##valueCCS"),&midiMap.valueInputSpecificSingle[i],1,16)) { if (midiMap.valueInputSpecificSingle[i]<0) midiMap.valueInputSpecificSingle[i]=0; if (midiMap.valueInputSpecificSingle[i]>127) midiMap.valueInputSpecificSingle[i]=127; settingsChanged=true; } } else { - if (ImGui::InputInt((midiMap.valueInputSpecificStyle[i]==4)?"CC of upper nibble##valueCC1":"MSB CC##valueCC1",&midiMap.valueInputSpecificMSB[i],1,16)) { + if (ImGui::InputInt((midiMap.valueInputSpecificStyle[i]==4)?_("CC of upper nibble##valueCC1"):_("MSB CC##valueCC1"),&midiMap.valueInputSpecificMSB[i],1,16)) { if (midiMap.valueInputSpecificMSB[i]<0) midiMap.valueInputSpecificMSB[i]=0; if (midiMap.valueInputSpecificMSB[i]>127) midiMap.valueInputSpecificMSB[i]=127; settingsChanged=true; } - if (ImGui::InputInt((midiMap.valueInputSpecificStyle[i]==4)?"CC of lower nibble##valueCC2":"LSB CC##valueCC2",&midiMap.valueInputSpecificLSB[i],1,16)) { + if (ImGui::InputInt((midiMap.valueInputSpecificStyle[i]==4)?_("CC of lower nibble##valueCC2"):_("LSB CC##valueCC2"),&midiMap.valueInputSpecificLSB[i],1,16)) { if (midiMap.valueInputSpecificLSB[i]<0) midiMap.valueInputSpecificLSB[i]=0; if (midiMap.valueInputSpecificLSB[i]>127) midiMap.valueInputSpecificLSB[i]=127; settingsChanged=true; @@ -1561,7 +1622,7 @@ void FurnaceGUI::drawSettings() { } ImGui::TreePop(); } - if (ImGui::SliderFloat("Volume curve",&midiMap.volExp,0.01,8.0,"%.2f")) { + if (ImGui::SliderFloat(_("Volume curve"),&midiMap.volExp,0.01,8.0,"%.2f")) { if (midiMap.volExp<0.01) midiMap.volExp=0.01; if (midiMap.volExp>8.0) midiMap.volExp=8.0; e->setMidiVolExp(midiMap.volExp); @@ -1571,10 +1632,10 @@ void FurnaceGUI::drawSettings() { for (int i=0; i<128; i++) { curve[i]=(int)(pow((double)i/127.0,midiMap.volExp)*127.0); } - ImGui::PlotLines("##VolCurveDisplay",curve,128,0,"Volume curve",0.0,127.0,ImVec2(200.0f*dpiScale,200.0f*dpiScale)); + ImGui::PlotLines("##VolCurveDisplay",curve,128,0,_("Volume curve"),0.0,127.0,ImVec2(200.0f*dpiScale,200.0f*dpiScale)); ImGui::AlignTextToFramePadding(); - ImGui::Text("Actions:"); + ImGui::Text(_("Actions:")); ImGui::SameLine(); if (ImGui::Button(ICON_FA_PLUS "##AddAction")) { midiMap.binds.push_back(MIDIBind()); @@ -1588,7 +1649,7 @@ void FurnaceGUI::drawSettings() { } if (learning!=-1) { ImGui::SameLine(); - ImGui::Text("(learning! press a button or move a slider/knob/something on your device.)"); + ImGui::Text(_("(learning! press a button or move a slider/knob/something on your device.)")); } if (ImGui::BeginTable("MIDIActions",7)) { @@ -1602,15 +1663,15 @@ void FurnaceGUI::drawSettings() { ImGui::TableNextRow(ImGuiTableRowFlags_Headers); ImGui::TableNextColumn(); - ImGui::Text("Type"); + ImGui::Text(_("Type")); ImGui::TableNextColumn(); - ImGui::Text("Channel"); + ImGui::Text(_("Channel")); ImGui::TableNextColumn(); - ImGui::Text("Note/Control"); + ImGui::Text(_("Note/Control")); ImGui::TableNextColumn(); - ImGui::Text("Velocity/Value"); + ImGui::Text(_("Velocity/Value")); ImGui::TableNextColumn(); - ImGui::Text("Action"); + ImGui::Text(_("Action")); ImGui::TableNextColumn(); ImGui::TableNextColumn(); @@ -1650,7 +1711,7 @@ void FurnaceGUI::drawSettings() { ImGui::TableNextColumn(); if (bind.data1==128) { - snprintf(bindID,1024,"Any"); + snprintf(bindID,1024,_("Any")); } else { const char* nName="???"; if ((bind.data1+60)>0 && (bind.data1+60)<180) { @@ -1660,7 +1721,7 @@ void FurnaceGUI::drawSettings() { } ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); if (ImGui::BeginCombo("##BValue1",bindID)) { - if (ImGui::Selectable("Any",bind.data1==128)) { + if (ImGui::Selectable(_("Any"),bind.data1==128)) { bind.data1=128; settingsChanged=true; } @@ -1680,13 +1741,13 @@ void FurnaceGUI::drawSettings() { ImGui::TableNextColumn(); if (bind.data2==128) { - snprintf(bindID,1024,"Any"); + snprintf(bindID,1024,_("Any")); } else { snprintf(bindID,1024,"%d (0x%.2X)",bind.data2,bind.data2); } ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); if (ImGui::BeginCombo("##BValue2",bindID)) { - if (ImGui::Selectable("Any",bind.data2==128)) { + if (ImGui::Selectable(_("Any"),bind.data2==128)) { bind.data2=128; settingsChanged=true; } @@ -1702,8 +1763,8 @@ void FurnaceGUI::drawSettings() { ImGui::TableNextColumn(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); - if (ImGui::BeginCombo("##BAction",(bind.action==0)?"--none--":guiActions[bind.action].friendlyName)) { - if (ImGui::Selectable("--none--",bind.action==0)) { + if (ImGui::BeginCombo("##BAction",(bind.action==0)?_("--none--"):guiActions[bind.action].friendlyName)) { + if (ImGui::Selectable(_("--none--"),bind.action==0)) { bind.action=0; settingsChanged=true; } @@ -1712,7 +1773,7 @@ void FurnaceGUI::drawSettings() { if (strstr(guiActions[j].friendlyName,"---")==guiActions[j].friendlyName) { ImGui::TextUnformatted(guiActions[j].friendlyName); } else { - snprintf(bindID,1024,"%s##BA_%d",guiActions[j].friendlyName,j); + snprintf(bindID,1024,"%s##BA_%d",_(guiActions[j].friendlyName),j); if (ImGui::Selectable(bindID,bind.action==j)) { bind.action=j; settingsChanged=true; @@ -1724,7 +1785,7 @@ void FurnaceGUI::drawSettings() { ImGui::TableNextColumn(); pushToggleColors(learning==(int)i); - if (ImGui::Button((learning==(int)i)?("waiting...##BLearn"):("Learn##BLearn"))) { + if (ImGui::Button((learning==(int)i)?(_("waiting...##BLearn")):(_("Learn##BLearn")))) { if (learning==(int)i) { learning=-1; } else { @@ -1748,13 +1809,13 @@ void FurnaceGUI::drawSettings() { } // SUBSECTION MIDI OUTPUT - CONFIG_SUBSECTION("MIDI output"); + CONFIG_SUBSECTION(_("MIDI output")); ImGui::AlignTextToFramePadding(); - ImGui::Text("MIDI output"); + ImGui::Text(_("MIDI output")); ImGui::SameLine(); - String midiOutName=settings.midiOutDevice.empty()?"":settings.midiOutDevice; + String midiOutName=settings.midiOutDevice.empty()?_(""):settings.midiOutDevice; if (ImGui::BeginCombo("##MidiOutDevice",midiOutName.c_str())) { - if (ImGui::Selectable("",settings.midiOutDevice.empty())) { + if (ImGui::Selectable(_(""),settings.midiOutDevice.empty())) { settings.midiOutDevice=""; settingsChanged=true; } @@ -1767,60 +1828,60 @@ void FurnaceGUI::drawSettings() { ImGui::EndCombo(); } - ImGui::Text("Output mode:"); + ImGui::Text(_("Output mode:")); ImGui::Indent(); - if (ImGui::RadioButton("Off (use for TX81Z)",settings.midiOutMode==0)) { + if (ImGui::RadioButton(_("Off (use for TX81Z)"),settings.midiOutMode==0)) { settings.midiOutMode=0; settingsChanged=true; } - if (ImGui::RadioButton("Melodic",settings.midiOutMode==1)) { + if (ImGui::RadioButton(_("Melodic"),settings.midiOutMode==1)) { settings.midiOutMode=1; settingsChanged=true; } /* - if (ImGui::RadioButton("Light Show (use for Launchpad)",settings.midiOutMode==2)) { + if (ImGui::RadioButton(_("Light Show (use for Launchpad)"),settings.midiOutMode==2)) { settings.midiOutMode=2; }*/ ImGui::Unindent(); bool midiOutProgramChangeB=settings.midiOutProgramChange; - if (ImGui::Checkbox("Send Program Change",&midiOutProgramChangeB)) { + if (ImGui::Checkbox(_("Send Program Change"),&midiOutProgramChangeB)) { settings.midiOutProgramChange=midiOutProgramChangeB; settingsChanged=true; } bool midiOutClockB=settings.midiOutClock; - if (ImGui::Checkbox("Send MIDI clock",&midiOutClockB)) { + if (ImGui::Checkbox(_("Send MIDI clock"),&midiOutClockB)) { settings.midiOutClock=midiOutClockB; settingsChanged=true; } bool midiOutTimeB=settings.midiOutTime; - if (ImGui::Checkbox("Send MIDI timecode",&midiOutTimeB)) { + if (ImGui::Checkbox(_("Send MIDI timecode"),&midiOutTimeB)) { settings.midiOutTime=midiOutTimeB; settingsChanged=true; } if (settings.midiOutTime) { - ImGui::Text("Timecode frame rate:"); + ImGui::Text(_("Timecode frame rate:")); ImGui::Indent(); - if (ImGui::RadioButton("Closest to Tick Rate",settings.midiOutTimeRate==0)) { + if (ImGui::RadioButton(_("Closest to Tick Rate"),settings.midiOutTimeRate==0)) { settings.midiOutTimeRate=0; settingsChanged=true; } - if (ImGui::RadioButton("Film (24fps)",settings.midiOutTimeRate==1)) { + if (ImGui::RadioButton(_("Film (24fps)"),settings.midiOutTimeRate==1)) { settings.midiOutTimeRate=1; settingsChanged=true; } - if (ImGui::RadioButton("PAL (25fps)",settings.midiOutTimeRate==2)) { + if (ImGui::RadioButton(_("PAL (25fps)"),settings.midiOutTimeRate==2)) { settings.midiOutTimeRate=2; settingsChanged=true; } - if (ImGui::RadioButton("NTSC drop (29.97fps)",settings.midiOutTimeRate==3)) { + if (ImGui::RadioButton(_("NTSC drop (29.97fps)"),settings.midiOutTimeRate==3)) { settings.midiOutTimeRate=3; settingsChanged=true; } - if (ImGui::RadioButton("NTSC non-drop (30fps)",settings.midiOutTimeRate==4)) { + if (ImGui::RadioButton(_("NTSC non-drop (30fps)"),settings.midiOutTimeRate==4)) { settings.midiOutTimeRate=4; settingsChanged=true; } @@ -1829,25 +1890,25 @@ void FurnaceGUI::drawSettings() { END_SECTION; } - CONFIG_SECTION("Emulation") { + CONFIG_SECTION(_("Emulation")) { // SUBSECTION CORES - CONFIG_SUBSECTION("Cores"); + CONFIG_SUBSECTION(_("Cores")); if (ImGui::BeginTable("##Cores",3)) { ImGui::TableSetupColumn("##System",ImGuiTableColumnFlags_WidthFixed); ImGui::TableSetupColumn("##PlaybackCores",ImGuiTableColumnFlags_WidthStretch); ImGui::TableSetupColumn("##RenderCores",ImGuiTableColumnFlags_WidthStretch); ImGui::TableNextRow(ImGuiTableRowFlags_Headers); ImGui::TableNextColumn(); - ImGui::Text("System"); + ImGui::Text(_("System")); ImGui::TableNextColumn(); - ImGui::Text("Playback Core(s)"); + ImGui::Text(_("Playback Core(s)")); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("used for playback"); + ImGui::SetTooltip(_("used for playback")); } ImGui::TableNextColumn(); - ImGui::Text("Render Core(s)"); + ImGui::Text(_("Render Core(s)")); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("used in audio export"); + ImGui::SetTooltip(_("used in audio export")); } ImGui::TableNextRow(); @@ -1988,10 +2049,10 @@ void FurnaceGUI::drawSettings() { ImGui::Text("ESFM"); ImGui::TableNextColumn(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); - if (ImGui::Combo("##ESFMCore",&settings.esfmCore,esfmCores,2)) settingsChanged=true; + if (ImGui::Combo("##ESFMCore",&settings.esfmCore,LocalizedComboGetter,esfmCores,2)) settingsChanged=true; ImGui::TableNextColumn(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); - if (ImGui::Combo("##ESFMCoreRender",&settings.esfmCoreRender,esfmCores,2)) settingsChanged=true; + if (ImGui::Combo("##ESFMCoreRender",&settings.esfmCoreRender,LocalizedComboGetter,esfmCores,2)) settingsChanged=true; ImGui::TableNextRow(); ImGui::TableNextColumn(); @@ -2019,23 +2080,23 @@ void FurnaceGUI::drawSettings() { } // SUBSECTION OTHER - CONFIG_SUBSECTION("Quality"); + CONFIG_SUBSECTION(_("Quality")); if (ImGui::BeginTable("##CoreQual",3)) { ImGui::TableSetupColumn("##System",ImGuiTableColumnFlags_WidthFixed); ImGui::TableSetupColumn("##PlaybackCores",ImGuiTableColumnFlags_WidthStretch); ImGui::TableSetupColumn("##RenderCores",ImGuiTableColumnFlags_WidthStretch); ImGui::TableNextRow(ImGuiTableRowFlags_Headers); ImGui::TableNextColumn(); - ImGui::Text("System"); + ImGui::Text(_("System")); ImGui::TableNextColumn(); - ImGui::Text("Playback"); + ImGui::Text(_("Playback")); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("used for playback"); + ImGui::SetTooltip(_("used for playback")); } ImGui::TableNextColumn(); - ImGui::Text("Render"); + ImGui::Text(_("Render")); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("used in audio export"); + ImGui::SetTooltip(_("used in audio export")); } CORE_QUALITY("Bubble System WSG",bubsysQuality,bubsysQualityRender); @@ -2054,19 +2115,19 @@ void FurnaceGUI::drawSettings() { } // SUBSECTION OTHER - CONFIG_SUBSECTION("Other"); + CONFIG_SUBSECTION(_("Other")); ImGui::AlignTextToFramePadding(); - ImGui::Text("PC Speaker strategy"); + ImGui::Text(_("PC Speaker strategy")); ImGui::SameLine(); - if (ImGui::Combo("##PCSOutMethod",&settings.pcSpeakerOutMethod,pcspkrOutMethods,5)) settingsChanged=true; + if (ImGui::Combo("##PCSOutMethod",&settings.pcSpeakerOutMethod,LocalizedComboGetter,pcspkrOutMethods,5)) settingsChanged=true; /* ImGui::Separator(); - ImGui::Text("Sample ROMs:"); + ImGui::Text(_("Sample ROMs:")); ImGui::AlignTextToFramePadding(); - ImGui::Text("OPL4 YRW801 path"); + ImGui::Text(_("OPL4 YRW801 path")); ImGui::SameLine(); ImGui::InputText("##YRW801Path",&settings.yrw801Path); ImGui::SameLine(); @@ -2075,7 +2136,7 @@ void FurnaceGUI::drawSettings() { } ImGui::AlignTextToFramePadding(); - ImGui::Text("MultiPCM TG100 path"); + ImGui::Text(_("MultiPCM TG100 path")); ImGui::SameLine(); ImGui::InputText("##TG100Path",&settings.tg100Path); ImGui::SameLine(); @@ -2084,7 +2145,7 @@ void FurnaceGUI::drawSettings() { } ImGui::AlignTextToFramePadding(); - ImGui::Text("MultiPCM MU5 path"); + ImGui::Text(_("MultiPCM MU5 path")); ImGui::SameLine(); ImGui::InputText("##MU5Path",&settings.mu5Path); ImGui::SameLine(); @@ -2095,21 +2156,21 @@ void FurnaceGUI::drawSettings() { END_SECTION; } - CONFIG_SECTION("Keyboard") { + CONFIG_SECTION(_("Keyboard")) { // SUBSECTION LAYOUT - CONFIG_SUBSECTION("Keyboard"); - if (ImGui::Button("Import")) { + CONFIG_SUBSECTION(_("Keyboard")); + if (ImGui::Button(_("Import"))) { openFileDialog(GUI_FILE_IMPORT_KEYBINDS); } ImGui::SameLine(); - if (ImGui::Button("Export")) { + if (ImGui::Button(_("Export"))) { openFileDialog(GUI_FILE_EXPORT_KEYBINDS); } ImGui::SameLine(); - if (ImGui::Button("Reset defaults")) { - showWarning("Are you sure you want to reset the keyboard settings?",GUI_WARN_RESET_KEYBINDS); + if (ImGui::Button(_("Reset defaults"))) { + showWarning(_("Are you sure you want to reset the keyboard settings?"),GUI_WARN_RESET_KEYBINDS); } - if (ImGui::TreeNode("Global hotkeys")) { + if (ImGui::TreeNode(_("Global hotkeys"))) { KEYBIND_CONFIG_BEGIN("keysGlobal"); UI_KEYBIND_CONFIG(GUI_ACTION_NEW); @@ -2146,7 +2207,7 @@ void FurnaceGUI::drawSettings() { KEYBIND_CONFIG_END; ImGui::TreePop(); } - if (ImGui::TreeNode("Window activation")) { + if (ImGui::TreeNode(_("Window activation"))) { KEYBIND_CONFIG_BEGIN("keysWindow"); UI_KEYBIND_CONFIG(GUI_ACTION_WINDOW_FIND); @@ -2195,7 +2256,7 @@ void FurnaceGUI::drawSettings() { KEYBIND_CONFIG_END; ImGui::TreePop(); } - if (ImGui::TreeNode("Note input")) { + if (ImGui::TreeNode(_("Note input"))) { std::vector sorted; if (ImGui::BeginTable("keysNoteInput",4)) { for (std::map::value_type& i: noteKeys) { @@ -2212,13 +2273,13 @@ void FurnaceGUI::drawSettings() { ImGui::TableNextRow(ImGuiTableRowFlags_Headers); ImGui::TableNextColumn(); - ImGui::Text("Key"); + ImGui::Text(_("Key")); ImGui::TableNextColumn(); - ImGui::Text("Type"); + ImGui::Text(_("Type")); ImGui::TableNextColumn(); - ImGui::Text("Value"); + ImGui::Text(_("Value")); ImGui::TableNextColumn(); - ImGui::Text("Remove"); + ImGui::Text(_("Remove")); for (MappedInput& i: sorted) { ImGui::TableNextRow(); @@ -2226,22 +2287,22 @@ void FurnaceGUI::drawSettings() { ImGui::Text("%s",SDL_GetScancodeName((SDL_Scancode)i.scan)); ImGui::TableNextColumn(); if (i.val==102) { - snprintf(id,4095,"Macro release##SNType_%d",i.scan); + snprintf(id,4095,_("Macro release##SNType_%d"),i.scan); if (ImGui::Button(id)) { noteKeys[i.scan]=0; } } else if (i.val==101) { - snprintf(id,4095,"Note release##SNType_%d",i.scan); + snprintf(id,4095,_("Note release##SNType_%d"),i.scan); if (ImGui::Button(id)) { noteKeys[i.scan]=102; } } else if (i.val==100) { - snprintf(id,4095,"Note off##SNType_%d",i.scan); + snprintf(id,4095,_("Note off##SNType_%d"),i.scan); if (ImGui::Button(id)) { noteKeys[i.scan]=101; } } else { - snprintf(id,4095,"Note##SNType_%d",i.scan); + snprintf(id,4095,_("Note##SNType_%d"),i.scan); if (ImGui::Button(id)) { noteKeys[i.scan]=100; } @@ -2265,7 +2326,7 @@ void FurnaceGUI::drawSettings() { } ImGui::EndTable(); - if (ImGui::BeginCombo("##SNAddNew","Add...")) { + if (ImGui::BeginCombo("##SNAddNew",_("Add..."))) { for (int i=0; i1.0) settings.doubleClickTime=1.0; @@ -2580,300 +2641,300 @@ void FurnaceGUI::drawSettings() { } bool avoidRaisingPatternB=settings.avoidRaisingPattern; - if (ImGui::Checkbox("Don't raise pattern editor on click",&avoidRaisingPatternB)) { + if (ImGui::Checkbox(_("Don't raise pattern editor on click"),&avoidRaisingPatternB)) { settings.avoidRaisingPattern=avoidRaisingPatternB; settingsChanged=true; } bool insFocusesPatternB=settings.insFocusesPattern; - if (ImGui::Checkbox("Focus pattern editor when selecting instrument",&insFocusesPatternB)) { + if (ImGui::Checkbox(_("Focus pattern editor when selecting instrument"),&insFocusesPatternB)) { settings.insFocusesPattern=insFocusesPatternB; settingsChanged=true; } - ImGui::Text("Note preview behavior:"); + ImGui::Text(_("Note preview behavior:")); ImGui::Indent(); - if (ImGui::RadioButton("Never##npb0",settings.notePreviewBehavior==0)) { + if (ImGui::RadioButton(_("Never##npb0"),settings.notePreviewBehavior==0)) { settings.notePreviewBehavior=0; settingsChanged=true; } - if (ImGui::RadioButton("When cursor is in Note column##npb1",settings.notePreviewBehavior==1)) { + if (ImGui::RadioButton(_("When cursor is in Note column##npb1"),settings.notePreviewBehavior==1)) { settings.notePreviewBehavior=1; settingsChanged=true; } - if (ImGui::RadioButton("When cursor is in Note column or not in edit mode##npb2",settings.notePreviewBehavior==2)) { + if (ImGui::RadioButton(_("When cursor is in Note column or not in edit mode##npb2"),settings.notePreviewBehavior==2)) { settings.notePreviewBehavior=2; settingsChanged=true; } - if (ImGui::RadioButton("Always##npb3",settings.notePreviewBehavior==3)) { + if (ImGui::RadioButton(_("Always##npb3"),settings.notePreviewBehavior==3)) { settings.notePreviewBehavior=3; settingsChanged=true; } ImGui::Unindent(); - ImGui::Text("Allow dragging selection:"); + ImGui::Text(_("Allow dragging selection:")); ImGui::Indent(); - if (ImGui::RadioButton("No##dms0",settings.dragMovesSelection==0)) { + if (ImGui::RadioButton(_("No##dms0"),settings.dragMovesSelection==0)) { settings.dragMovesSelection=0; settingsChanged=true; } - if (ImGui::RadioButton("Yes##dms1",settings.dragMovesSelection==1)) { + if (ImGui::RadioButton(_("Yes##dms1"),settings.dragMovesSelection==1)) { settings.dragMovesSelection=1; settingsChanged=true; } - if (ImGui::RadioButton("Yes (while holding Ctrl only)##dms2",settings.dragMovesSelection==2)) { + if (ImGui::RadioButton(_("Yes (while holding Ctrl only)##dms2"),settings.dragMovesSelection==2)) { settings.dragMovesSelection=2; settingsChanged=true; } ImGui::Unindent(); - ImGui::Text("Toggle channel solo on:"); + ImGui::Text(_("Toggle channel solo on:")); ImGui::Indent(); - if (ImGui::RadioButton("Right-click or double-click##soloA",settings.soloAction==0)) { + if (ImGui::RadioButton(_("Right-click or double-click##soloA"),settings.soloAction==0)) { settings.soloAction=0; settingsChanged=true; } - if (ImGui::RadioButton("Right-click##soloR",settings.soloAction==1)) { + if (ImGui::RadioButton(_("Right-click##soloR"),settings.soloAction==1)) { settings.soloAction=1; settingsChanged=true; } - if (ImGui::RadioButton("Double-click##soloD",settings.soloAction==2)) { + if (ImGui::RadioButton(_("Double-click##soloD"),settings.soloAction==2)) { settings.soloAction=2; settingsChanged=true; } ImGui::Unindent(); bool doubleClickColumnB=settings.doubleClickColumn; - if (ImGui::Checkbox("Double click selects entire column",&doubleClickColumnB)) { + if (ImGui::Checkbox(_("Double click selects entire column"),&doubleClickColumnB)) { settings.doubleClickColumn=doubleClickColumnB; settingsChanged=true; } // SUBSECTION CURSOR BEHAVIOR - CONFIG_SUBSECTION("Cursor behavior"); + CONFIG_SUBSECTION(_("Cursor behavior")); bool insertBehaviorB=settings.insertBehavior; - if (ImGui::Checkbox("Insert pushes entire channel row",&insertBehaviorB)) { + if (ImGui::Checkbox(_("Insert pushes entire channel row"),&insertBehaviorB)) { settings.insertBehavior=insertBehaviorB; settingsChanged=true; } bool pullDeleteRowB=settings.pullDeleteRow; - if (ImGui::Checkbox("Pull delete affects entire channel row",&pullDeleteRowB)) { + if (ImGui::Checkbox(_("Pull delete affects entire channel row"),&pullDeleteRowB)) { settings.pullDeleteRow=pullDeleteRowB; settingsChanged=true; } bool pushNibbleB=settings.pushNibble; - if (ImGui::Checkbox("Push value when overwriting instead of clearing it",&pushNibbleB)) { + if (ImGui::Checkbox(_("Push value when overwriting instead of clearing it"),&pushNibbleB)) { settings.pushNibble=pushNibbleB; settingsChanged=true; } bool inputRepeatB=settings.inputRepeat; - if (ImGui::Checkbox("Keyboard note/value input repeat (hold key to input continuously)",&inputRepeatB)) { + if (ImGui::Checkbox(_("Keyboard note/value input repeat (hold key to input continuously)"),&inputRepeatB)) { settings.inputRepeat=inputRepeatB; settingsChanged=true; } - ImGui::Text("Effect input behavior:"); + ImGui::Text(_("Effect input behavior:")); ImGui::Indent(); - if (ImGui::RadioButton("Move down##eicb0",settings.effectCursorDir==0)) { + if (ImGui::RadioButton(_("Move down##eicb0"),settings.effectCursorDir==0)) { settings.effectCursorDir=0; settingsChanged=true; } - if (ImGui::RadioButton("Move to effect value (otherwise move down)##eicb1",settings.effectCursorDir==1)) { + if (ImGui::RadioButton(_("Move to effect value (otherwise move down)##eicb1"),settings.effectCursorDir==1)) { settings.effectCursorDir=1; settingsChanged=true; } - if (ImGui::RadioButton("Move to effect value/next effect and wrap around##eicb2",settings.effectCursorDir==2)) { + if (ImGui::RadioButton(_("Move to effect value/next effect and wrap around##eicb2"),settings.effectCursorDir==2)) { settings.effectCursorDir=2; settingsChanged=true; } ImGui::Unindent(); bool effectDeletionAltersValueB=settings.effectDeletionAltersValue; - if (ImGui::Checkbox("Delete effect value when deleting effect",&effectDeletionAltersValueB)) { + if (ImGui::Checkbox(_("Delete effect value when deleting effect"),&effectDeletionAltersValueB)) { settings.effectDeletionAltersValue=effectDeletionAltersValueB; settingsChanged=true; } bool absorbInsInputB=settings.absorbInsInput; - if (ImGui::Checkbox("Change current instrument when changing instrument column (absorb)",&absorbInsInputB)) { + if (ImGui::Checkbox(_("Change current instrument when changing instrument column (absorb)"),&absorbInsInputB)) { settings.absorbInsInput=absorbInsInputB; settingsChanged=true; } bool removeInsOffB=settings.removeInsOff; - if (ImGui::Checkbox("Remove instrument value when inserting note off/release",&removeInsOffB)) { + if (ImGui::Checkbox(_("Remove instrument value when inserting note off/release"),&removeInsOffB)) { settings.removeInsOff=removeInsOffB; settingsChanged=true; } bool removeVolOffB=settings.removeVolOff; - if (ImGui::Checkbox("Remove volume value when inserting note off/release",&removeVolOffB)) { + if (ImGui::Checkbox(_("Remove volume value when inserting note off/release"),&removeVolOffB)) { settings.removeVolOff=removeVolOffB; settingsChanged=true; } // SUBSECTION CURSOR MOVEMENT - CONFIG_SUBSECTION("Cursor movement"); + CONFIG_SUBSECTION(_("Cursor movement")); - ImGui::Text("Wrap horizontally:"); + ImGui::Text(_("Wrap horizontally:")); ImGui::Indent(); - if (ImGui::RadioButton("No##wrapH0",settings.wrapHorizontal==0)) { + if (ImGui::RadioButton(_("No##wrapH0"),settings.wrapHorizontal==0)) { settings.wrapHorizontal=0; settingsChanged=true; } - if (ImGui::RadioButton("Yes##wrapH1",settings.wrapHorizontal==1)) { + if (ImGui::RadioButton(_("Yes##wrapH1"),settings.wrapHorizontal==1)) { settings.wrapHorizontal=1; settingsChanged=true; } - if (ImGui::RadioButton("Yes, and move to next/prev row##wrapH2",settings.wrapHorizontal==2)) { + if (ImGui::RadioButton(_("Yes, and move to next/prev row##wrapH2"),settings.wrapHorizontal==2)) { settings.wrapHorizontal=2; settingsChanged=true; } ImGui::Unindent(); - ImGui::Text("Wrap vertically:"); + ImGui::Text(_("Wrap vertically:")); ImGui::Indent(); - if (ImGui::RadioButton("No##wrapV0",settings.wrapVertical==0)) { + if (ImGui::RadioButton(_("No##wrapV0"),settings.wrapVertical==0)) { settings.wrapVertical=0; settingsChanged=true; } - if (ImGui::RadioButton("Yes##wrapV1",settings.wrapVertical==1)) { + if (ImGui::RadioButton(_("Yes##wrapV1"),settings.wrapVertical==1)) { settings.wrapVertical=1; settingsChanged=true; } - if (ImGui::RadioButton("Yes, and move to next/prev pattern##wrapV2",settings.wrapVertical==2)) { + if (ImGui::RadioButton(_("Yes, and move to next/prev pattern##wrapV2"),settings.wrapVertical==2)) { settings.wrapVertical=2; settingsChanged=true; } - if (ImGui::RadioButton("Yes, and move to next/prev pattern (wrap around)##wrapV2",settings.wrapVertical==3)) { + if (ImGui::RadioButton(_("Yes, and move to next/prev pattern (wrap around)##wrapV2"),settings.wrapVertical==3)) { settings.wrapVertical=3; settingsChanged=true; } ImGui::Unindent(); - ImGui::Text("Cursor movement keys behavior:"); + ImGui::Text(_("Cursor movement keys behavior:")); ImGui::Indent(); - if (ImGui::RadioButton("Move by one##cmk0",settings.scrollStep==0)) { + if (ImGui::RadioButton(_("Move by one##cmk0"),settings.scrollStep==0)) { settings.scrollStep=0; settingsChanged=true; } - if (ImGui::RadioButton("Move by Edit Step##cmk1",settings.scrollStep==1)) { + if (ImGui::RadioButton(_("Move by Edit Step##cmk1"),settings.scrollStep==1)) { settings.scrollStep=1; settingsChanged=true; } ImGui::Unindent(); bool stepOnDeleteB=settings.stepOnDelete; - if (ImGui::Checkbox("Move cursor by edit step on delete",&stepOnDeleteB)) { + if (ImGui::Checkbox(_("Move cursor by edit step on delete"),&stepOnDeleteB)) { settings.stepOnDelete=stepOnDeleteB; settingsChanged=true; } bool stepOnInsertB=settings.stepOnInsert; - if (ImGui::Checkbox("Move cursor by edit step on insert (push)",&stepOnInsertB)) { + if (ImGui::Checkbox(_("Move cursor by edit step on insert (push)"),&stepOnInsertB)) { settings.stepOnInsert=stepOnInsertB; settingsChanged=true; } bool pullDeleteBehaviorB=settings.pullDeleteBehavior; - if (ImGui::Checkbox("Move cursor up on backspace-delete",&pullDeleteBehaviorB)) { + if (ImGui::Checkbox(_("Move cursor up on backspace-delete"),&pullDeleteBehaviorB)) { settings.pullDeleteBehavior=pullDeleteBehaviorB; settingsChanged=true; } bool cursorPastePosB=settings.cursorPastePos; - if (ImGui::Checkbox("Move cursor to end of clipboard content when pasting",&cursorPastePosB)) { + if (ImGui::Checkbox(_("Move cursor to end of clipboard content when pasting"),&cursorPastePosB)) { settings.cursorPastePos=cursorPastePosB; settingsChanged=true; } // SUBSECTION SCROLLING - CONFIG_SUBSECTION("Scrolling"); + CONFIG_SUBSECTION(_("Scrolling")); - ImGui::Text("Change order when scrolling outside of pattern bounds:"); + ImGui::Text(_("Change order when scrolling outside of pattern bounds:")); ImGui::Indent(); - if (ImGui::RadioButton("No##pscroll0",settings.scrollChangesOrder==0)) { + if (ImGui::RadioButton(_("No##pscroll0"),settings.scrollChangesOrder==0)) { settings.scrollChangesOrder=0; settingsChanged=true; } - if (ImGui::RadioButton("Yes##pscroll1",settings.scrollChangesOrder==1)) { + if (ImGui::RadioButton(_("Yes##pscroll1"),settings.scrollChangesOrder==1)) { settings.scrollChangesOrder=1; settingsChanged=true; } - if (ImGui::RadioButton("Yes, and wrap around song##pscroll2",settings.scrollChangesOrder==2)) { + if (ImGui::RadioButton(_("Yes, and wrap around song##pscroll2"),settings.scrollChangesOrder==2)) { settings.scrollChangesOrder=2; settingsChanged=true; } ImGui::Unindent(); bool cursorFollowsOrderB=settings.cursorFollowsOrder; - if (ImGui::Checkbox("Cursor follows current order when moving it",&cursorFollowsOrderB)) { + if (ImGui::Checkbox(_("Cursor follows current order when moving it"),&cursorFollowsOrderB)) { settings.cursorFollowsOrder=cursorFollowsOrderB; settingsChanged=true; } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("applies when playback is stopped."); + ImGui::SetTooltip(_("applies when playback is stopped.")); } bool cursorMoveNoScrollB=settings.cursorMoveNoScroll; - if (ImGui::Checkbox("Don't scroll when moving cursor",&cursorMoveNoScrollB)) { + if (ImGui::Checkbox(_("Don't scroll when moving cursor"),&cursorMoveNoScrollB)) { settings.cursorMoveNoScroll=cursorMoveNoScrollB; settingsChanged=true; } - ImGui::Text("Move cursor with scroll wheel:"); + ImGui::Text(_("Move cursor with scroll wheel:")); ImGui::Indent(); - if (ImGui::RadioButton("No##csw0",settings.cursorFollowsWheel==0)) { + if (ImGui::RadioButton(_("No##csw0"),settings.cursorFollowsWheel==0)) { settings.cursorFollowsWheel=0; settingsChanged=true; } - if (ImGui::RadioButton("Yes##csw1",settings.cursorFollowsWheel==1)) { + if (ImGui::RadioButton(_("Yes##csw1"),settings.cursorFollowsWheel==1)) { settings.cursorFollowsWheel=1; settingsChanged=true; } - if (ImGui::RadioButton("Inverted##csw2",settings.cursorFollowsWheel==2)) { + if (ImGui::RadioButton(_("Inverted##csw2"),settings.cursorFollowsWheel==2)) { settings.cursorFollowsWheel=2; settingsChanged=true; } ImGui::Unindent(); if (settings.cursorFollowsWheel) { - ImGui::Text("How many steps to move with each scroll wheel step?"); - if (ImGui::RadioButton("One##cws0",settings.cursorWheelStep==0)) { + ImGui::Text(_("How many steps to move with each scroll wheel step?")); + if (ImGui::RadioButton(_("One##cws0"),settings.cursorWheelStep==0)) { settings.cursorWheelStep=0; settingsChanged=true; } - if (ImGui::RadioButton("Edit Step##cws1",settings.cursorWheelStep==1)) { + if (ImGui::RadioButton(_("Edit Step##cws1"),settings.cursorWheelStep==1)) { settings.cursorWheelStep=1; settingsChanged=true; } } // SUBSECTION ASSETS - CONFIG_SUBSECTION("Assets"); + CONFIG_SUBSECTION(_("Assets")); bool insTypeMenuB=settings.insTypeMenu; - if (ImGui::Checkbox("Display instrument type menu when adding instrument",&insTypeMenuB)) { + if (ImGui::Checkbox(_("Display instrument type menu when adding instrument"),&insTypeMenuB)) { settings.insTypeMenu=insTypeMenuB; settingsChanged=true; } bool selectAssetOnLoadB=settings.selectAssetOnLoad; - if (ImGui::Checkbox("Select asset after opening one",&selectAssetOnLoadB)) { + if (ImGui::Checkbox(_("Select asset after opening one"),&selectAssetOnLoadB)) { settings.selectAssetOnLoad=selectAssetOnLoadB; settingsChanged=true; } END_SECTION; } - CONFIG_SECTION("Appearance") { + CONFIG_SECTION(_("Appearance")) { // SUBSECTION INTERFACE - CONFIG_SUBSECTION("Scaling"); + CONFIG_SUBSECTION(_("Scaling")); bool dpiScaleAuto=(settings.dpiScale<0.5f); - if (ImGui::Checkbox("Automatic UI scaling factor",&dpiScaleAuto)) { + if (ImGui::Checkbox(_("Automatic UI scaling factor"),&dpiScaleAuto)) { if (dpiScaleAuto) { settings.dpiScale=0.0f; } else { @@ -2882,21 +2943,21 @@ void FurnaceGUI::drawSettings() { settingsChanged=true; } if (!dpiScaleAuto) { - if (ImGui::SliderFloat("UI scaling factor",&settings.dpiScale,1.0f,3.0f,"%.2fx")) { + if (ImGui::SliderFloat(_("UI scaling factor"),&settings.dpiScale,1.0f,3.0f,"%.2fx")) { if (settings.dpiScale<0.5f) settings.dpiScale=0.5f; if (settings.dpiScale>3.0f) settings.dpiScale=3.0f; settingsChanged=true; } rightClickable } - if (ImGui::InputInt("Icon size",&settings.iconSize,1,3)) { + if (ImGui::InputInt(_("Icon size"),&settings.iconSize,1,3)) { if (settings.iconSize<3) settings.iconSize=3; if (settings.iconSize>48) settings.iconSize=48; settingsChanged=true; } // SUBSECTION TEXT - CONFIG_SUBSECTION("Text"); + CONFIG_SUBSECTION(_("Text")); if (ImGui::BeginTable("##Text",2)) { ImGui::TableSetupColumn("##Label",ImGuiTableColumnFlags_WidthFixed); ImGui::TableSetupColumn("##Combos",ImGuiTableColumnFlags_WidthStretch); @@ -2904,7 +2965,7 @@ void FurnaceGUI::drawSettings() { ImGui::TableNextRow(); ImGui::TableNextColumn(); ImGui::AlignTextToFramePadding(); - ImGui::Text("Font renderer"); + ImGui::Text(_("Font renderer")); ImGui::TableNextColumn(); if (ImGui::Combo("##FontBack",&settings.fontBackend,fontBackends,2)) settingsChanged=true; #else @@ -2914,9 +2975,9 @@ void FurnaceGUI::drawSettings() { ImGui::TableNextRow(); ImGui::TableNextColumn(); ImGui::AlignTextToFramePadding(); - ImGui::Text("Main font"); + ImGui::Text(_("Main font")); ImGui::TableNextColumn(); - if (ImGui::Combo("##MainFont",&settings.mainFont,mainFonts,7)) settingsChanged=true; + if (ImGui::Combo("##MainFont",&settings.mainFont,LocalizedComboGetter,mainFonts,7)) settingsChanged=true; if (settings.mainFont==6) { ImGui::InputText("##MainFontPath",&settings.mainFontPath); ImGui::SameLine(); @@ -2925,7 +2986,7 @@ void FurnaceGUI::drawSettings() { settingsChanged=true; } } - if (ImGui::InputInt("Size##MainFontSize",&settings.mainFontSize,1,3)) { + if (ImGui::InputInt(_("Size##MainFontSize"),&settings.mainFontSize,1,3)) { if (settings.mainFontSize<3) settings.mainFontSize=3; if (settings.mainFontSize>96) settings.mainFontSize=96; settingsChanged=true; @@ -2933,9 +2994,9 @@ void FurnaceGUI::drawSettings() { ImGui::TableNextRow(); ImGui::TableNextColumn(); ImGui::AlignTextToFramePadding(); - ImGui::Text("Header font"); + ImGui::Text(_("Header font")); ImGui::TableNextColumn(); - if (ImGui::Combo("##HeadFont",&settings.headFont,headFonts,7)) settingsChanged=true; + if (ImGui::Combo("##HeadFont",&settings.headFont,LocalizedComboGetter,headFonts,7)) settingsChanged=true; if (settings.headFont==6) { ImGui::InputText("##HeadFontPath",&settings.headFontPath); ImGui::SameLine(); @@ -2944,7 +3005,7 @@ void FurnaceGUI::drawSettings() { settingsChanged=true; } } - if (ImGui::InputInt("Size##HeadFontSize",&settings.headFontSize,1,3)) { + if (ImGui::InputInt(_("Size##HeadFontSize"),&settings.headFontSize,1,3)) { if (settings.headFontSize<3) settings.headFontSize=3; if (settings.headFontSize>96) settings.headFontSize=96; settingsChanged=true; @@ -2952,9 +3013,9 @@ void FurnaceGUI::drawSettings() { ImGui::TableNextRow(); ImGui::TableNextColumn(); ImGui::AlignTextToFramePadding(); - ImGui::Text("Pattern font"); + ImGui::Text(_("Pattern font")); ImGui::TableNextColumn(); - if (ImGui::Combo("##PatFont",&settings.patFont,patFonts,7)) settingsChanged=true; + if (ImGui::Combo("##PatFont",&settings.patFont,LocalizedComboGetter,patFonts,7)) settingsChanged=true; if (settings.patFont==6) { ImGui::InputText("##PatFontPath",&settings.patFontPath); ImGui::SameLine(); @@ -2963,7 +3024,7 @@ void FurnaceGUI::drawSettings() { settingsChanged=true; } } - if (ImGui::InputInt("Size##PatFontSize",&settings.patFontSize,1,3)) { + if (ImGui::InputInt(_("Size##PatFontSize"),&settings.patFontSize,1,3)) { if (settings.patFontSize<3) settings.patFontSize=3; if (settings.patFontSize>96) settings.patFontSize=96; settingsChanged=true; @@ -2973,166 +3034,166 @@ void FurnaceGUI::drawSettings() { if (settings.fontBackend==1) { bool fontAntiAliasB=settings.fontAntiAlias; - if (ImGui::Checkbox("Anti-aliased fonts",&fontAntiAliasB)) { + if (ImGui::Checkbox(_("Anti-aliased fonts"),&fontAntiAliasB)) { settings.fontAntiAlias=fontAntiAliasB; settingsChanged=true; } bool fontBitmapB=settings.fontBitmap; - if (ImGui::Checkbox("Support bitmap fonts",&fontBitmapB)) { + if (ImGui::Checkbox(_("Support bitmap fonts"),&fontBitmapB)) { settings.fontBitmap=fontBitmapB; settingsChanged=true; } - ImGui::Text("Hinting:"); + ImGui::Text(_("Hinting:")); ImGui::Indent(); - if (ImGui::RadioButton("Off (soft)##fh0",settings.fontHinting==0)) { + if (ImGui::RadioButton(_("Off (soft)##fh0"),settings.fontHinting==0)) { settings.fontHinting=0; settingsChanged=true; } - if (ImGui::RadioButton("Slight##fh1",settings.fontHinting==1)) { + if (ImGui::RadioButton(_("Slight##fh1"),settings.fontHinting==1)) { settings.fontHinting=1; settingsChanged=true; } - if (ImGui::RadioButton("Normal##fh2",settings.fontHinting==2)) { + if (ImGui::RadioButton(_("Normal##fh2"),settings.fontHinting==2)) { settings.fontHinting=2; settingsChanged=true; } - if (ImGui::RadioButton("Full (hard)##fh3",settings.fontHinting==3)) { + if (ImGui::RadioButton(_("Full (hard)##fh3"),settings.fontHinting==3)) { settings.fontHinting=3; settingsChanged=true; } ImGui::Unindent(); - ImGui::Text("Auto-hinter:"); + ImGui::Text(_("Auto-hinter:")); ImGui::Indent(); - if (ImGui::RadioButton("Disable##fah0",settings.fontAutoHint==0)) { + if (ImGui::RadioButton(_("Disable##fah0"),settings.fontAutoHint==0)) { settings.fontAutoHint=0; settingsChanged=true; } - if (ImGui::RadioButton("Enable##fah1",settings.fontAutoHint==1)) { + if (ImGui::RadioButton(_("Enable##fah1"),settings.fontAutoHint==1)) { settings.fontAutoHint=1; settingsChanged=true; } - if (ImGui::RadioButton("Force##fah2",settings.fontAutoHint==2)) { + if (ImGui::RadioButton(_("Force##fah2"),settings.fontAutoHint==2)) { settings.fontAutoHint=2; settingsChanged=true; } ImGui::Unindent(); } - ImGui::Text("Oversample"); + ImGui::Text(_("Oversample")); ImGui::SameLine(); - if (ImGui::RadioButton("1×##fos1",settings.fontOversample==1)) { + if (ImGui::RadioButton(_("1×##fos1"),settings.fontOversample==1)) { settings.fontOversample=1; settingsChanged=true; } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("saves video memory. reduces font rendering quality.\nuse for pixel/bitmap fonts."); + ImGui::SetTooltip(_("saves video memory. reduces font rendering quality.\nuse for pixel/bitmap fonts.")); } ImGui::SameLine(); - if (ImGui::RadioButton("2×##fos2",settings.fontOversample==2)) { + if (ImGui::RadioButton(_("2×##fos2"),settings.fontOversample==2)) { settings.fontOversample=2; settingsChanged=true; } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("default."); + ImGui::SetTooltip(_("default.")); } ImGui::SameLine(); - if (ImGui::RadioButton("3×##fos3",settings.fontOversample==3)) { + if (ImGui::RadioButton(_("3×##fos3"),settings.fontOversample==3)) { settings.fontOversample=3; settingsChanged=true; } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("slightly better font rendering quality.\nuses more video memory."); + ImGui::SetTooltip(_("slightly better font rendering quality.\nuses more video memory.")); } bool loadFallbackB=settings.loadFallback; - if (ImGui::Checkbox("Load fallback font",&loadFallbackB)) { + if (ImGui::Checkbox(_("Load fallback font"),&loadFallbackB)) { settings.loadFallback=loadFallbackB; settingsChanged=true; } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("disable to save video memory."); + ImGui::SetTooltip(_("disable to save video memory.")); } bool loadJapaneseB=settings.loadJapanese; - if (ImGui::Checkbox("Display Japanese characters",&loadJapaneseB)) { + if (ImGui::Checkbox(_("Display Japanese characters"),&loadJapaneseB)) { settings.loadJapanese=loadJapaneseB; settingsChanged=true; } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip( + ImGui::SetTooltip(_( "Only toggle this option if you have enough graphics memory.\n" "This is a temporary solution until dynamic font atlas is implemented in Dear ImGui.\n\n" "このオプションは、十分なグラフィックメモリがある場合にのみ切り替えてください。\n" "これは、Dear ImGuiにダイナミックフォントアトラスが実装されるまでの一時的な解決策です。" - ); + )); } bool loadChineseB=settings.loadChinese; - if (ImGui::Checkbox("Display Chinese (Simplified) characters",&loadChineseB)) { + if (ImGui::Checkbox(_("Display Chinese (Simplified) characters"),&loadChineseB)) { settings.loadChinese=loadChineseB; settingsChanged=true; } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip( + ImGui::SetTooltip(_( "Only toggle this option if you have enough graphics memory.\n" "This is a temporary solution until dynamic font atlas is implemented in Dear ImGui.\n\n" "请在确保你有足够的显存后再启动此设定\n" "这是一个在ImGui实现动态字体加载之前的临时解决方案" - ); + )); } bool loadChineseTraditionalB=settings.loadChineseTraditional; - if (ImGui::Checkbox("Display Chinese (Traditional) characters",&loadChineseTraditionalB)) { + if (ImGui::Checkbox(_("Display Chinese (Traditional) characters"),&loadChineseTraditionalB)) { settings.loadChineseTraditional=loadChineseTraditionalB; settingsChanged=true; } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip( + ImGui::SetTooltip(_( "Only toggle this option if you have enough graphics memory.\n" "This is a temporary solution until dynamic font atlas is implemented in Dear ImGui.\n\n" "請在確保你有足夠的顯存后再啟動此設定\n" "這是一個在ImGui實現動態字體加載之前的臨時解決方案" - ); + )); } bool loadKoreanB=settings.loadKorean; - if (ImGui::Checkbox("Display Korean characters",&loadKoreanB)) { + if (ImGui::Checkbox(_("Display Korean characters"),&loadKoreanB)) { settings.loadKorean=loadKoreanB; settingsChanged=true; } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip( + ImGui::SetTooltip(_( "Only toggle this option if you have enough graphics memory.\n" "This is a temporary solution until dynamic font atlas is implemented in Dear ImGui.\n\n" "그래픽 메모리가 충분한 경우에만 이 옵션을 선택하십시오.\n" "이 옵션은 Dear ImGui에 동적 글꼴 아틀라스가 구현될 때까지 임시 솔루션입니다." - ); + )); } // SUBSECTION PROGRAM - CONFIG_SUBSECTION("Program"); - ImGui::Text("Title bar:"); + CONFIG_SUBSECTION(_("Program")); + ImGui::Text(_("Title bar:")); ImGui::Indent(); - if (ImGui::RadioButton("Furnace##tbar0",settings.titleBarInfo==0)) { + if (ImGui::RadioButton(_("Furnace##tbar0"),settings.titleBarInfo==0)) { settings.titleBarInfo=0; updateWindowTitle(); settingsChanged=true; } - if (ImGui::RadioButton("Song Name - Furnace##tbar1",settings.titleBarInfo==1)) { + if (ImGui::RadioButton(_("Song Name - Furnace##tbar1"),settings.titleBarInfo==1)) { settings.titleBarInfo=1; updateWindowTitle(); settingsChanged=true; } - if (ImGui::RadioButton("file_name.fur - Furnace##tbar2",settings.titleBarInfo==2)) { + if (ImGui::RadioButton(_("file_name.fur - Furnace##tbar2"),settings.titleBarInfo==2)) { settings.titleBarInfo=2; updateWindowTitle(); settingsChanged=true; } - if (ImGui::RadioButton("/path/to/file.fur - Furnace##tbar3",settings.titleBarInfo==3)) { + if (ImGui::RadioButton(_("/path/to/file.fur - Furnace##tbar3"),settings.titleBarInfo==3)) { settings.titleBarInfo=3; updateWindowTitle(); settingsChanged=true; @@ -3140,337 +3201,337 @@ void FurnaceGUI::drawSettings() { ImGui::Unindent(); bool titleBarSysB=settings.titleBarSys; - if (ImGui::Checkbox("Display system name on title bar",&titleBarSysB)) { + if (ImGui::Checkbox(_("Display system name on title bar"),&titleBarSysB)) { settings.titleBarSys=titleBarSysB; updateWindowTitle(); settingsChanged=true; } bool noMultiSystemB=settings.noMultiSystem; - if (ImGui::Checkbox("Display chip names instead of \"multi-system\" in title bar",&noMultiSystemB)) { + if (ImGui::Checkbox(_("Display chip names instead of \"multi-system\" in title bar"),&noMultiSystemB)) { settings.noMultiSystem=noMultiSystemB; updateWindowTitle(); settingsChanged=true; } - ImGui::Text("Status bar:"); + ImGui::Text(_("Status bar:")); ImGui::Indent(); - if (ImGui::RadioButton("Cursor details##sbar0",settings.statusDisplay==0)) { + if (ImGui::RadioButton(_("Cursor details##sbar0"),settings.statusDisplay==0)) { settings.statusDisplay=0; settingsChanged=true; } - if (ImGui::RadioButton("File path##sbar1",settings.statusDisplay==1)) { + if (ImGui::RadioButton(_("File path##sbar1"),settings.statusDisplay==1)) { settings.statusDisplay=1; settingsChanged=true; } - if (ImGui::RadioButton("Cursor details or file path##sbar2",settings.statusDisplay==2)) { + if (ImGui::RadioButton(_("Cursor details or file path##sbar2"),settings.statusDisplay==2)) { settings.statusDisplay=2; settingsChanged=true; } - if (ImGui::RadioButton("Nothing##sbar3",settings.statusDisplay==3)) { + if (ImGui::RadioButton(_("Nothing##sbar3"),settings.statusDisplay==3)) { settings.statusDisplay=3; settingsChanged=true; } ImGui::Unindent(); bool playbackTimeB=settings.playbackTime; - if (ImGui::Checkbox("Display playback status when playing",&playbackTimeB)) { + if (ImGui::Checkbox(_("Display playback status when playing"),&playbackTimeB)) { settings.playbackTime=playbackTimeB; settingsChanged=true; } - ImGui::Text("Export options layout:"); + ImGui::Text(_("Export options layout:")); ImGui::Indent(); - if (ImGui::RadioButton("Sub-menus in File menu##eol0",settings.exportOptionsLayout==0)) { + if (ImGui::RadioButton(_("Sub-menus in File menu##eol0"),settings.exportOptionsLayout==0)) { settings.exportOptionsLayout=0; settingsChanged=true; } - if (ImGui::RadioButton("Modal window with tabs##eol1",settings.exportOptionsLayout==1)) { + if (ImGui::RadioButton(_("Modal window with tabs##eol1"),settings.exportOptionsLayout==1)) { settings.exportOptionsLayout=1; settingsChanged=true; } - if (ImGui::RadioButton("Modal windows with options in File menu##eol2",settings.exportOptionsLayout==2)) { + if (ImGui::RadioButton(_("Modal windows with options in File menu##eol2"),settings.exportOptionsLayout==2)) { settings.exportOptionsLayout=2; settingsChanged=true; } ImGui::Unindent(); bool capitalMenuBarB=settings.capitalMenuBar; - if (ImGui::Checkbox("Capitalize menu bar",&capitalMenuBarB)) { + if (ImGui::Checkbox(_("Capitalize menu bar"),&capitalMenuBarB)) { settings.capitalMenuBar=capitalMenuBarB; settingsChanged=true; } bool classicChipOptionsB=settings.classicChipOptions; - if (ImGui::Checkbox("Display add/configure/change/remove chip menus in File menu",&classicChipOptionsB)) { + if (ImGui::Checkbox(_("Display add/configure/change/remove chip menus in File menu"),&classicChipOptionsB)) { settings.classicChipOptions=classicChipOptionsB; settingsChanged=true; } // SUBSECTION ORDERS - CONFIG_SUBSECTION("Orders"); + CONFIG_SUBSECTION(_("Orders")); // sorry. temporarily disabled until ImGui has a way to add separators in tables arbitrarily. /*bool sysSeparatorsB=settings.sysSeparators; - if (ImGui::Checkbox("Add separators between systems in Orders",&sysSeparatorsB)) { + if (ImGui::Checkbox(_("Add separators between systems in Orders"),&sysSeparatorsB)) { settings.sysSeparators=sysSeparatorsB; }*/ bool ordersCursorB=settings.ordersCursor; - if (ImGui::Checkbox("Highlight channel at cursor in Orders",&ordersCursorB)) { + if (ImGui::Checkbox(_("Highlight channel at cursor in Orders"),&ordersCursorB)) { settings.ordersCursor=ordersCursorB; settingsChanged=true; } - ImGui::Text("Orders row number format:"); + ImGui::Text(_("Orders row number format:")); ImGui::Indent(); - if (ImGui::RadioButton("Decimal##orbD",settings.orderRowsBase==0)) { + if (ImGui::RadioButton(_("Decimal##orbD"),settings.orderRowsBase==0)) { settings.orderRowsBase=0; settingsChanged=true; } - if (ImGui::RadioButton("Hexadecimal##orbH",settings.orderRowsBase==1)) { + if (ImGui::RadioButton(_("Hexadecimal##orbH"),settings.orderRowsBase==1)) { settings.orderRowsBase=1; settingsChanged=true; } ImGui::Unindent(); // SUBSECTION PATTERN - CONFIG_SUBSECTION("Pattern"); + CONFIG_SUBSECTION(_("Pattern")); bool centerPatternB=settings.centerPattern; - if (ImGui::Checkbox("Center pattern view",¢erPatternB)) { + if (ImGui::Checkbox(_("Center pattern view"),¢erPatternB)) { settings.centerPattern=centerPatternB; settingsChanged=true; } bool overflowHighlightB=settings.overflowHighlight; - if (ImGui::Checkbox("Overflow pattern highlights",&overflowHighlightB)) { + if (ImGui::Checkbox(_("Overflow pattern highlights"),&overflowHighlightB)) { settings.overflowHighlight=overflowHighlightB; settingsChanged=true; } bool viewPrevPatternB=settings.viewPrevPattern; - if (ImGui::Checkbox("Display previous/next pattern",&viewPrevPatternB)) { + if (ImGui::Checkbox(_("Display previous/next pattern"),&viewPrevPatternB)) { settings.viewPrevPattern=viewPrevPatternB; settingsChanged=true; } - ImGui::Text("Pattern row number format:"); + ImGui::Text(_("Pattern row number format:")); ImGui::Indent(); - if (ImGui::RadioButton("Decimal##prbD",settings.patRowsBase==0)) { + if (ImGui::RadioButton(_("Decimal##prbD"),settings.patRowsBase==0)) { settings.patRowsBase=0; settingsChanged=true; } - if (ImGui::RadioButton("Hexadecimal##prbH",settings.patRowsBase==1)) { + if (ImGui::RadioButton(_("Hexadecimal##prbH"),settings.patRowsBase==1)) { settings.patRowsBase=1; settingsChanged=true; } ImGui::Unindent(); - ImGui::Text("Pattern view labels:"); + ImGui::Text(_("Pattern view labels:")); ImGui::PushFont(patFont); if (ImGui::InputTextWithHint("##PVLOff","OFF",&settings.noteOffLabel)) settingsChanged=true; ImGui::PopFont(); ImGui::SameLine(); - ImGui::Text("Note off (3-char)"); + ImGui::Text(_("Note off (3-char)")); ImGui::PushFont(patFont); if (ImGui::InputTextWithHint("##PVLRel","===",&settings.noteRelLabel)) settingsChanged=true; ImGui::PopFont(); ImGui::SameLine(); - ImGui::Text("Note release (3-char)"); + ImGui::Text(_("Note release (3-char)")); ImGui::PushFont(patFont); if (ImGui::InputTextWithHint("##PVLMacroRel","REL",&settings.macroRelLabel)) settingsChanged=true; ImGui::PopFont(); ImGui::SameLine(); - ImGui::Text("Macro release (3-char)"); + ImGui::Text(_("Macro release (3-char)")); ImGui::PushFont(patFont); if (ImGui::InputTextWithHint("##PVLE3","...",&settings.emptyLabel)) settingsChanged=true; ImGui::PopFont(); ImGui::SameLine(); - ImGui::Text("Empty field (3-char)"); + ImGui::Text(_("Empty field (3-char)")); ImGui::PushFont(patFont); if (ImGui::InputTextWithHint("##PVLE2","..",&settings.emptyLabel2)) settingsChanged=true; ImGui::PopFont(); ImGui::SameLine(); - ImGui::Text("Empty field (2-char)"); + ImGui::Text(_("Empty field (2-char)")); - ImGui::Text("Pattern view spacing after:"); + ImGui::Text(_("Pattern view spacing after:")); - if (CWSliderInt("Note",&settings.noteCellSpacing,0,32)) { + if (CWSliderInt(_("Note"),&settings.noteCellSpacing,0,32)) { if (settings.noteCellSpacing<0) settings.noteCellSpacing=0; if (settings.noteCellSpacing>32) settings.noteCellSpacing=32; settingsChanged=true; } - if (CWSliderInt("Instrument",&settings.insCellSpacing,0,32)) { + if (CWSliderInt(_("Instrument"),&settings.insCellSpacing,0,32)) { if (settings.insCellSpacing<0) settings.insCellSpacing=0; if (settings.insCellSpacing>32) settings.insCellSpacing=32; settingsChanged=true; } - if (CWSliderInt("Volume",&settings.volCellSpacing,0,32)) { + if (CWSliderInt(_("Volume"),&settings.volCellSpacing,0,32)) { if (settings.volCellSpacing<0) settings.volCellSpacing=0; if (settings.volCellSpacing>32) settings.volCellSpacing=32; settingsChanged=true; } - if (CWSliderInt("Effect",&settings.effectCellSpacing,0,32)) { + if (CWSliderInt(_("Effect"),&settings.effectCellSpacing,0,32)) { if (settings.effectCellSpacing<0) settings.effectCellSpacing=0; if (settings.effectCellSpacing>32) settings.effectCellSpacing=32; settingsChanged=true; } - if (CWSliderInt("Effect value",&settings.effectValCellSpacing,0,32)) { + if (CWSliderInt(_("Effect value"),&settings.effectValCellSpacing,0,32)) { if (settings.effectValCellSpacing<0) settings.effectValCellSpacing=0; if (settings.effectValCellSpacing>32) settings.effectValCellSpacing=32; settingsChanged=true; } bool oneDigitEffectsB=settings.oneDigitEffects; - if (ImGui::Checkbox("Single-digit effects for 00-0F",&oneDigitEffectsB)) { + if (ImGui::Checkbox(_("Single-digit effects for 00-0F"),&oneDigitEffectsB)) { settings.oneDigitEffects=oneDigitEffectsB; settingsChanged=true; } bool flatNotesB=settings.flatNotes; - if (ImGui::Checkbox("Use flats instead of sharps",&flatNotesB)) { + if (ImGui::Checkbox(_("Use flats instead of sharps"),&flatNotesB)) { settings.flatNotes=flatNotesB; settingsChanged=true; } bool germanNotationB=settings.germanNotation; - if (ImGui::Checkbox("Use German notation",&germanNotationB)) { + if (ImGui::Checkbox(_("Use German notation"),&germanNotationB)) { settings.germanNotation=germanNotationB; settingsChanged=true; } // SUBSECTION CHANNEL - CONFIG_SUBSECTION("Channel"); + CONFIG_SUBSECTION(_("Channel")); - ImGui::Text("Channel style:"); + ImGui::Text(_("Channel style:")); ImGui::Indent(); - if (ImGui::RadioButton("Classic##CHS0",settings.channelStyle==0)) { + if (ImGui::RadioButton(_("Classic##CHS0"),settings.channelStyle==0)) { settings.channelStyle=0; settingsChanged=true; } - if (ImGui::RadioButton("Line##CHS1",settings.channelStyle==1)) { + if (ImGui::RadioButton(_("Line##CHS1"),settings.channelStyle==1)) { settings.channelStyle=1; settingsChanged=true; } - if (ImGui::RadioButton("Round##CHS2",settings.channelStyle==2)) { + if (ImGui::RadioButton(_("Round##CHS2"),settings.channelStyle==2)) { settings.channelStyle=2; settingsChanged=true; } - if (ImGui::RadioButton("Split button##CHS3",settings.channelStyle==3)) { + if (ImGui::RadioButton(_("Split button##CHS3"),settings.channelStyle==3)) { settings.channelStyle=3; settingsChanged=true; } - if (ImGui::RadioButton("Square border##CH42",settings.channelStyle==4)) { + if (ImGui::RadioButton(_("Square border##CH42"),settings.channelStyle==4)) { settings.channelStyle=4; settingsChanged=true; } - if (ImGui::RadioButton("Round border##CHS5",settings.channelStyle==5)) { + if (ImGui::RadioButton(_("Round border##CHS5"),settings.channelStyle==5)) { settings.channelStyle=5; settingsChanged=true; } ImGui::Unindent(); - ImGui::Text("Channel volume bar:"); + ImGui::Text(_("Channel volume bar:")); ImGui::Indent(); - if (ImGui::RadioButton("None##CHV0",settings.channelVolStyle==0)) { + if (ImGui::RadioButton(_("None##CHV0"),settings.channelVolStyle==0)) { settings.channelVolStyle=0; settingsChanged=true; } - if (ImGui::RadioButton("Simple##CHV1",settings.channelVolStyle==1)) { + if (ImGui::RadioButton(_("Simple##CHV1"),settings.channelVolStyle==1)) { settings.channelVolStyle=1; settingsChanged=true; } - if (ImGui::RadioButton("Stereo##CHV2",settings.channelVolStyle==2)) { + if (ImGui::RadioButton(_("Stereo##CHV2"),settings.channelVolStyle==2)) { settings.channelVolStyle=2; settingsChanged=true; } - if (ImGui::RadioButton("Real##CHV3",settings.channelVolStyle==3)) { + if (ImGui::RadioButton(_("Real##CHV3"),settings.channelVolStyle==3)) { settings.channelVolStyle=3; settingsChanged=true; } - if (ImGui::RadioButton("Real (stereo)##CHV4",settings.channelVolStyle==4)) { + if (ImGui::RadioButton(_("Real (stereo)##CHV4"),settings.channelVolStyle==4)) { settings.channelVolStyle=4; settingsChanged=true; } ImGui::Unindent(); - ImGui::Text("Channel feedback style:"); + ImGui::Text(_("Channel feedback style:")); ImGui::Indent(); - if (ImGui::RadioButton("Off##CHF0",settings.channelFeedbackStyle==0)) { + if (ImGui::RadioButton(_("Off##CHF0"),settings.channelFeedbackStyle==0)) { settings.channelFeedbackStyle=0; settingsChanged=true; } - if (ImGui::RadioButton("Note##CHF1",settings.channelFeedbackStyle==1)) { + if (ImGui::RadioButton(_("Note##CHF1"),settings.channelFeedbackStyle==1)) { settings.channelFeedbackStyle=1; settingsChanged=true; } - if (ImGui::RadioButton("Volume##CHF2",settings.channelFeedbackStyle==2)) { + if (ImGui::RadioButton(_("Volume##CHF2"),settings.channelFeedbackStyle==2)) { settings.channelFeedbackStyle=2; settingsChanged=true; } - if (ImGui::RadioButton("Active##CHF3",settings.channelFeedbackStyle==3)) { + if (ImGui::RadioButton(_("Active##CHF3"),settings.channelFeedbackStyle==3)) { settings.channelFeedbackStyle=3; settingsChanged=true; } ImGui::Unindent(); - ImGui::Text("Channel font:"); + ImGui::Text(_("Channel font:")); ImGui::Indent(); - if (ImGui::RadioButton("Regular##CHFont0",settings.channelFont==0)) { + if (ImGui::RadioButton(_("Regular##CHFont0"),settings.channelFont==0)) { settings.channelFont=0; settingsChanged=true; } - if (ImGui::RadioButton("Monospace##CHFont1",settings.channelFont==1)) { + if (ImGui::RadioButton(_("Monospace##CHFont1"),settings.channelFont==1)) { settings.channelFont=1; settingsChanged=true; } ImGui::Unindent(); bool channelTextCenterB=settings.channelTextCenter; - if (ImGui::Checkbox("Center channel name",&channelTextCenterB)) { + if (ImGui::Checkbox(_("Center channel name"),&channelTextCenterB)) { settings.channelTextCenter=channelTextCenterB; settingsChanged=true; } - ImGui::Text("Channel colors:"); + ImGui::Text(_("Channel colors:")); ImGui::Indent(); - if (ImGui::RadioButton("Single##CHC0",settings.channelColors==0)) { + if (ImGui::RadioButton(_("Single##CHC0"),settings.channelColors==0)) { settings.channelColors=0; settingsChanged=true; } - if (ImGui::RadioButton("Channel type##CHC1",settings.channelColors==1)) { + if (ImGui::RadioButton(_("Channel type##CHC1"),settings.channelColors==1)) { settings.channelColors=1; settingsChanged=true; } - if (ImGui::RadioButton("Instrument type##CHC2",settings.channelColors==2)) { + if (ImGui::RadioButton(_("Instrument type##CHC2"),settings.channelColors==2)) { settings.channelColors=2; settingsChanged=true; } ImGui::Unindent(); - ImGui::Text("Channel name colors:"); + ImGui::Text(_("Channel name colors:")); ImGui::Indent(); - if (ImGui::RadioButton("Single##CTC0",settings.channelTextColors==0)) { + if (ImGui::RadioButton(_("Single##CTC0"),settings.channelTextColors==0)) { settings.channelTextColors=0; settingsChanged=true; } - if (ImGui::RadioButton("Channel type##CTC1",settings.channelTextColors==1)) { + if (ImGui::RadioButton(_("Channel type##CTC1"),settings.channelTextColors==1)) { settings.channelTextColors=1; settingsChanged=true; } - if (ImGui::RadioButton("Instrument type##CTC2",settings.channelTextColors==2)) { + if (ImGui::RadioButton(_("Instrument type##CTC2"),settings.channelTextColors==2)) { settings.channelTextColors=2; settingsChanged=true; } ImGui::Unindent(); // SUBSECTION ASSETS - CONFIG_SUBSECTION("Assets"); + CONFIG_SUBSECTION(_("Assets")); bool unifiedDataViewB=settings.unifiedDataView; - if (ImGui::Checkbox("Unified instrument/wavetable/sample list",&unifiedDataViewB)) { + if (ImGui::Checkbox(_("Unified instrument/wavetable/sample list"),&unifiedDataViewB)) { settings.unifiedDataView=unifiedDataViewB; settingsChanged=true; } @@ -3480,58 +3541,58 @@ void FurnaceGUI::drawSettings() { ImGui::BeginDisabled(settings.unifiedDataView); bool horizontalDataViewB=settings.horizontalDataView; - if (ImGui::Checkbox("Horizontal instrument list",&horizontalDataViewB)) { + if (ImGui::Checkbox(_("Horizontal instrument list"),&horizontalDataViewB)) { settings.horizontalDataView=horizontalDataViewB; settingsChanged=true; } ImGui::EndDisabled(); - ImGui::Text("Instrument list icon style:"); + ImGui::Text(_("Instrument list icon style:")); ImGui::Indent(); - if (ImGui::RadioButton("None##iis0",settings.insIconsStyle==0)) { + if (ImGui::RadioButton(_("None##iis0"),settings.insIconsStyle==0)) { settings.insIconsStyle=0; settingsChanged=true; } - if (ImGui::RadioButton("Graphical icons##iis1",settings.insIconsStyle==1)) { + if (ImGui::RadioButton(_("Graphical icons##iis1"),settings.insIconsStyle==1)) { settings.insIconsStyle=1; settingsChanged=true; } - if (ImGui::RadioButton("Letter icons##iis2",settings.insIconsStyle==2)) { + if (ImGui::RadioButton(_("Letter icons##iis2"),settings.insIconsStyle==2)) { settings.insIconsStyle=2; settingsChanged=true; } ImGui::Unindent(); bool insEditColorizeB=settings.insEditColorize; - if (ImGui::Checkbox("Colorize instrument editor using instrument type",&insEditColorizeB)) { + if (ImGui::Checkbox(_("Colorize instrument editor using instrument type"),&insEditColorizeB)) { settings.insEditColorize=insEditColorizeB; settingsChanged=true; } // SUBSECTION MACRO EDITOR - CONFIG_SUBSECTION("Macro Editor"); - ImGui::Text("Macro editor layout:"); + CONFIG_SUBSECTION(_("Macro Editor")); + ImGui::Text(_("Macro editor layout:")); ImGui::Indent(); - if (ImGui::RadioButton("Unified##mel0",settings.macroLayout==0)) { + if (ImGui::RadioButton(_("Unified##mel0"),settings.macroLayout==0)) { settings.macroLayout=0; settingsChanged=true; } /* - if (ImGui::RadioButton("Tabs##mel1",settings.macroLayout==1)) { + if (ImGui::RadioButton(_("Tabs##mel1"),settings.macroLayout==1)) { settings.macroLayout=1; settingsChanged=true; } */ - if (ImGui::RadioButton("Grid##mel2",settings.macroLayout==2)) { + if (ImGui::RadioButton(_("Grid##mel2"),settings.macroLayout==2)) { settings.macroLayout=2; settingsChanged=true; } - if (ImGui::RadioButton("Single (with list)##mel3",settings.macroLayout==3)) { + if (ImGui::RadioButton(_("Single (with list)##mel3"),settings.macroLayout==3)) { settings.macroLayout=3; settingsChanged=true; } /* - if (ImGui::RadioButton("Single (combo box)##mel4",settings.macroLayout==4)) { + if (ImGui::RadioButton(_("Single (combo box)##mel4"),settings.macroLayout==4)) { settings.macroLayout=4; settingsChanged=true; } @@ -3539,683 +3600,683 @@ void FurnaceGUI::drawSettings() { ImGui::Unindent(); bool oldMacroVSliderB=settings.oldMacroVSlider; - if (ImGui::Checkbox("Use classic macro editor vertical slider",&oldMacroVSliderB)) { + if (ImGui::Checkbox(_("Use classic macro editor vertical slider"),&oldMacroVSliderB)) { settings.oldMacroVSlider=oldMacroVSliderB; settingsChanged=true; } // SUBSECTION WAVE EDITOR - CONFIG_SUBSECTION("Wave Editor"); + CONFIG_SUBSECTION(_("Wave Editor")); bool waveLayoutB=settings.waveLayout; - if (ImGui::Checkbox("Use compact wave editor",&waveLayoutB)) { + if (ImGui::Checkbox(_("Use compact wave editor"),&waveLayoutB)) { settings.waveLayout=waveLayoutB; settingsChanged=true; } // SUBSECTION FM EDITOR - CONFIG_SUBSECTION("FM Editor"); - ImGui::Text("FM parameter names:"); + CONFIG_SUBSECTION(_("FM Editor")); + ImGui::Text(_("FM parameter names:")); ImGui::Indent(); - if (ImGui::RadioButton("Friendly##fmn0",settings.fmNames==0)) { + if (ImGui::RadioButton(_("Friendly##fmn0"),settings.fmNames==0)) { settings.fmNames=0; settingsChanged=true; } - if (ImGui::RadioButton("Technical##fmn1",settings.fmNames==1)) { + if (ImGui::RadioButton(_("Technical##fmn1"),settings.fmNames==1)) { settings.fmNames=1; settingsChanged=true; } - if (ImGui::RadioButton("Technical (alternate)##fmn2",settings.fmNames==2)) { + if (ImGui::RadioButton(_("Technical (alternate)##fmn2"),settings.fmNames==2)) { settings.fmNames=2; settingsChanged=true; } ImGui::Unindent(); bool oplStandardWaveNamesB=settings.oplStandardWaveNames; - if (ImGui::Checkbox("Use standard OPL waveform names",&oplStandardWaveNamesB)) { + if (ImGui::Checkbox(_("Use standard OPL waveform names"),&oplStandardWaveNamesB)) { settings.oplStandardWaveNames=oplStandardWaveNamesB; settingsChanged=true; } - ImGui::Text("FM parameter editor layout:"); + ImGui::Text(_("FM parameter editor layout:")); ImGui::Indent(); - if (ImGui::RadioButton("Modern##fml0",settings.fmLayout==0)) { + if (ImGui::RadioButton(_("Modern##fml0"),settings.fmLayout==0)) { settings.fmLayout=0; settingsChanged=true; } - if (ImGui::RadioButton("Compact (2x2, classic)##fml1",settings.fmLayout==1)) { + if (ImGui::RadioButton(_("Compact (2x2, classic)##fml1"),settings.fmLayout==1)) { settings.fmLayout=1; settingsChanged=true; } - if (ImGui::RadioButton("Compact (1x4)##fml2",settings.fmLayout==2)) { + if (ImGui::RadioButton(_("Compact (1x4)##fml2"),settings.fmLayout==2)) { settings.fmLayout=2; settingsChanged=true; } - if (ImGui::RadioButton("Compact (4x1)##fml3",settings.fmLayout==3)) { + if (ImGui::RadioButton(_("Compact (4x1)##fml3"),settings.fmLayout==3)) { settings.fmLayout=3; settingsChanged=true; } - if (ImGui::RadioButton("Alternate (2x2)##fml4",settings.fmLayout==4)) { + if (ImGui::RadioButton(_("Alternate (2x2)##fml4"),settings.fmLayout==4)) { settings.fmLayout=4; settingsChanged=true; } - if (ImGui::RadioButton("Alternate (1x4)##fml5",settings.fmLayout==5)) { + if (ImGui::RadioButton(_("Alternate (1x4)##fml5"),settings.fmLayout==5)) { settings.fmLayout=5; settingsChanged=true; } - if (ImGui::RadioButton("Alternate (4x1)##fml5",settings.fmLayout==6)) { + if (ImGui::RadioButton(_("Alternate (4x1)##fml5"),settings.fmLayout==6)) { settings.fmLayout=6; settingsChanged=true; } ImGui::Unindent(); - ImGui::Text("Position of Sustain in FM editor:"); + ImGui::Text(_("Position of Sustain in FM editor:")); ImGui::Indent(); - if (ImGui::RadioButton("Between Decay and Sustain Rate##susp0",settings.susPosition==0)) { + if (ImGui::RadioButton(_("Between Decay and Sustain Rate##susp0"),settings.susPosition==0)) { settings.susPosition=0; settingsChanged=true; } - if (ImGui::RadioButton("After Release Rate##susp1",settings.susPosition==1)) { + if (ImGui::RadioButton(_("After Release Rate##susp1"),settings.susPosition==1)) { settings.susPosition=1; settingsChanged=true; } ImGui::Unindent(); bool separateFMColorsB=settings.separateFMColors; - if (ImGui::Checkbox("Use separate colors for carriers/modulators in FM editor",&separateFMColorsB)) { + if (ImGui::Checkbox(_("Use separate colors for carriers/modulators in FM editor"),&separateFMColorsB)) { settings.separateFMColors=separateFMColorsB; settingsChanged=true; } bool unsignedDetuneB=settings.unsignedDetune; - if (ImGui::Checkbox("Unsigned FM detune values",&unsignedDetuneB)) { + if (ImGui::Checkbox(_("Unsigned FM detune values"),&unsignedDetuneB)) { settings.unsignedDetune=unsignedDetuneB; settingsChanged=true; } // SUBSECTION MEMORY COMPOSITION - CONFIG_SUBSECTION("Memory Composition"); - ImGui::Text("Chip memory usage unit:"); + CONFIG_SUBSECTION(_("Memory Composition")); + ImGui::Text(_("Chip memory usage unit:")); ImGui::Indent(); - if (ImGui::RadioButton("Bytes##MUU0",settings.memUsageUnit==0)) { + if (ImGui::RadioButton(_("Bytes##MUU0"),settings.memUsageUnit==0)) { settings.memUsageUnit=0; settingsChanged=true; } - if (ImGui::RadioButton("Kilobytes##MUU1",settings.memUsageUnit==1)) { + if (ImGui::RadioButton(_("Kilobytes##MUU1"),settings.memUsageUnit==1)) { settings.memUsageUnit=1; settingsChanged=true; } ImGui::Unindent(); // SUBSECTION OSCILLOSCOPE - CONFIG_SUBSECTION("Oscilloscope"); + CONFIG_SUBSECTION(_("Oscilloscope")); bool oscRoundedCornersB=settings.oscRoundedCorners; - if (ImGui::Checkbox("Rounded corners",&oscRoundedCornersB)) { + if (ImGui::Checkbox(_("Rounded corners"),&oscRoundedCornersB)) { settings.oscRoundedCorners=oscRoundedCornersB; settingsChanged=true; } bool oscBorderB=settings.oscBorder; - if (ImGui::Checkbox("Border",&oscBorderB)) { + if (ImGui::Checkbox(_("Border"),&oscBorderB)) { settings.oscBorder=oscBorderB; settingsChanged=true; } bool oscMonoB=settings.oscMono; - if (ImGui::Checkbox("Mono",&oscMonoB)) { + if (ImGui::Checkbox(_("Mono"),&oscMonoB)) { settings.oscMono=oscMonoB; settingsChanged=true; } bool oscAntiAliasB=settings.oscAntiAlias; - if (ImGui::Checkbox("Anti-aliased",&oscAntiAliasB)) { + if (ImGui::Checkbox(_("Anti-aliased"),&oscAntiAliasB)) { settings.oscAntiAlias=oscAntiAliasB; settingsChanged=true; } bool oscTakesEntireWindowB=settings.oscTakesEntireWindow; - if (ImGui::Checkbox("Fill entire window",&oscTakesEntireWindowB)) { + if (ImGui::Checkbox(_("Fill entire window"),&oscTakesEntireWindowB)) { settings.oscTakesEntireWindow=oscTakesEntireWindowB; settingsChanged=true; } bool oscEscapesBoundaryB=settings.oscEscapesBoundary; - if (ImGui::Checkbox("Waveform goes out of bounds",&oscEscapesBoundaryB)) { + if (ImGui::Checkbox(_("Waveform goes out of bounds"),&oscEscapesBoundaryB)) { settings.oscEscapesBoundary=oscEscapesBoundaryB; settingsChanged=true; } - if (ImGui::SliderFloat("Line size",&settings.oscLineSize,0.25f,16.0f,"%.1f")) { + if (ImGui::SliderFloat(_("Line size"),&settings.oscLineSize,0.25f,16.0f,"%.1f")) { if (settings.oscLineSize<0.25f) settings.oscLineSize=0.25f; if (settings.oscLineSize>16.0f) settings.oscLineSize=16.0f; settingsChanged=true; } rightClickable // SUBSECTION WINDOWS - CONFIG_SUBSECTION("Windows"); + CONFIG_SUBSECTION(_("Windows")); bool roundedWindowsB=settings.roundedWindows; - if (ImGui::Checkbox("Rounded window corners",&roundedWindowsB)) { + if (ImGui::Checkbox(_("Rounded window corners"),&roundedWindowsB)) { settings.roundedWindows=roundedWindowsB; settingsChanged=true; } bool roundedButtonsB=settings.roundedButtons; - if (ImGui::Checkbox("Rounded buttons",&roundedButtonsB)) { + if (ImGui::Checkbox(_("Rounded buttons"),&roundedButtonsB)) { settings.roundedButtons=roundedButtonsB; settingsChanged=true; } bool roundedMenusB=settings.roundedMenus; - if (ImGui::Checkbox("Rounded menu corners",&roundedMenusB)) { + if (ImGui::Checkbox(_("Rounded menu corners"),&roundedMenusB)) { settings.roundedMenus=roundedMenusB; settingsChanged=true; } bool roundedTabsB=settings.roundedTabs; - if (ImGui::Checkbox("Rounded tabs",&roundedTabsB)) { + if (ImGui::Checkbox(_("Rounded tabs"),&roundedTabsB)) { settings.roundedTabs=roundedTabsB; settingsChanged=true; } bool roundedScrollbarsB=settings.roundedScrollbars; - if (ImGui::Checkbox("Rounded scrollbars",&roundedScrollbarsB)) { + if (ImGui::Checkbox(_("Rounded scrollbars"),&roundedScrollbarsB)) { settings.roundedScrollbars=roundedScrollbarsB; settingsChanged=true; } bool frameBordersB=settings.frameBorders; - if (ImGui::Checkbox("Borders around widgets",&frameBordersB)) { + if (ImGui::Checkbox(_("Borders around widgets"),&frameBordersB)) { settings.frameBorders=frameBordersB; settingsChanged=true; } END_SECTION; } - CONFIG_SECTION("Color") { + CONFIG_SECTION(_("Color")) { // SUBSECTION COLOR SCHEME - CONFIG_SUBSECTION("Color scheme"); - if (ImGui::Button("Import")) { + CONFIG_SUBSECTION(_("Color scheme")); + if (ImGui::Button(_("Import"))) { openFileDialog(GUI_FILE_IMPORT_COLORS); } ImGui::SameLine(); - if (ImGui::Button("Export")) { + if (ImGui::Button(_("Export"))) { openFileDialog(GUI_FILE_EXPORT_COLORS); } ImGui::SameLine(); - if (ImGui::Button("Reset defaults")) { - showWarning("Are you sure you want to reset the color scheme?",GUI_WARN_RESET_COLORS); + if (ImGui::Button(_("Reset defaults"))) { + showWarning(_("Are you sure you want to reset the color scheme?"),GUI_WARN_RESET_COLORS); } bool basicColorsB=!settings.basicColors; - if (ImGui::Checkbox("Guru mode",&basicColorsB)) { + if (ImGui::Checkbox(_("Guru mode"),&basicColorsB)) { settings.basicColors=!basicColorsB; applyUISettings(false); settingsChanged=true; } if (settings.basicColors) { - if (ImGui::TreeNode("Interface")) { - if (ImGui::SliderInt("Frame shading",&settings.guiColorsShading,0,100,"%d%%")) { + if (ImGui::TreeNode(_("Interface"))) { + if (ImGui::SliderInt(_("Frame shading"),&settings.guiColorsShading,0,100,"%d%%")) { if (settings.guiColorsShading<0) settings.guiColorsShading=0; if (settings.guiColorsShading>100) settings.guiColorsShading=100; applyUISettings(false); settingsChanged=true; } - ImGui::Text("Color scheme type:"); + ImGui::Text(_("Color scheme type:")); ImGui::Indent(); - if (ImGui::RadioButton("Dark##gcb0",settings.guiColorsBase==0)) { + if (ImGui::RadioButton(_("Dark##gcb0"),settings.guiColorsBase==0)) { settings.guiColorsBase=0; applyUISettings(false); settingsChanged=true; } - if (ImGui::RadioButton("Light##gcb1",settings.guiColorsBase==1)) { + if (ImGui::RadioButton(_("Light##gcb1"),settings.guiColorsBase==1)) { settings.guiColorsBase=1; applyUISettings(false); settingsChanged=true; } ImGui::Unindent(); - ImGui::Text("Accent colors:"); + ImGui::Text(_("Accent colors:")); ImGui::Indent(); - UI_COLOR_CONFIG(GUI_COLOR_ACCENT_PRIMARY,"Primary"); - UI_COLOR_CONFIG(GUI_COLOR_ACCENT_SECONDARY,"Secondary"); + UI_COLOR_CONFIG(GUI_COLOR_ACCENT_PRIMARY,_("Primary")); + UI_COLOR_CONFIG(GUI_COLOR_ACCENT_SECONDARY,_("Secondary")); ImGui::Unindent(); ImGui::TreePop(); } } else { - if (ImGui::TreeNode("Interface")) { - if (ImGui::SliderInt("Frame shading",&settings.guiColorsShading,0,100,"%d%%")) { + if (ImGui::TreeNode(_("Interface"))) { + if (ImGui::SliderInt(_("Frame shading"),&settings.guiColorsShading,0,100,"%d%%")) { if (settings.guiColorsShading<0) settings.guiColorsShading=0; if (settings.guiColorsShading>100) settings.guiColorsShading=100; applyUISettings(false); settingsChanged=true; } - UI_COLOR_CONFIG(GUI_COLOR_BUTTON,"Button"); - UI_COLOR_CONFIG(GUI_COLOR_BUTTON_HOVER,"Button (hovered)"); - UI_COLOR_CONFIG(GUI_COLOR_BUTTON_ACTIVE,"Button (active)"); - UI_COLOR_CONFIG(GUI_COLOR_TAB,"Tab"); - UI_COLOR_CONFIG(GUI_COLOR_TAB_HOVER,"Tab (hovered)"); - UI_COLOR_CONFIG(GUI_COLOR_TAB_ACTIVE,"Tab (active)"); - UI_COLOR_CONFIG(GUI_COLOR_TAB_UNFOCUSED,"Tab (unfocused)"); - UI_COLOR_CONFIG(GUI_COLOR_TAB_UNFOCUSED_ACTIVE,"Tab (unfocused and active)"); - UI_COLOR_CONFIG(GUI_COLOR_IMGUI_HEADER,"ImGui header"); - UI_COLOR_CONFIG(GUI_COLOR_IMGUI_HEADER_HOVER,"ImGui header (hovered)"); - UI_COLOR_CONFIG(GUI_COLOR_IMGUI_HEADER_ACTIVE,"ImGui header (active)"); - UI_COLOR_CONFIG(GUI_COLOR_RESIZE_GRIP,"Resize grip"); - UI_COLOR_CONFIG(GUI_COLOR_RESIZE_GRIP_HOVER,"Resize grip (hovered)"); - UI_COLOR_CONFIG(GUI_COLOR_RESIZE_GRIP_ACTIVE,"Resize grip (active)"); - UI_COLOR_CONFIG(GUI_COLOR_WIDGET_BACKGROUND,"Widget background"); - UI_COLOR_CONFIG(GUI_COLOR_WIDGET_BACKGROUND_HOVER,"Widget background (hovered)"); - UI_COLOR_CONFIG(GUI_COLOR_WIDGET_BACKGROUND_ACTIVE,"Widget background (active)"); - UI_COLOR_CONFIG(GUI_COLOR_SLIDER_GRAB,"Slider grab"); - UI_COLOR_CONFIG(GUI_COLOR_SLIDER_GRAB_ACTIVE,"Slider grab (active)"); - UI_COLOR_CONFIG(GUI_COLOR_TITLE_BACKGROUND_ACTIVE,"Title background (active)"); - UI_COLOR_CONFIG(GUI_COLOR_CHECK_MARK,"Checkbox/radio button mark"); - UI_COLOR_CONFIG(GUI_COLOR_TEXT_SELECTION,"Text selection"); - UI_COLOR_CONFIG(GUI_COLOR_PLOT_LINES,"Line plot"); - UI_COLOR_CONFIG(GUI_COLOR_PLOT_LINES_HOVER,"Line plot (hovered)"); - UI_COLOR_CONFIG(GUI_COLOR_PLOT_HISTOGRAM,"Histogram plot"); - UI_COLOR_CONFIG(GUI_COLOR_PLOT_HISTOGRAM_HOVER,"Histogram plot (hovered)"); - UI_COLOR_CONFIG(GUI_COLOR_TABLE_ROW_EVEN,"Table row (even)"); - UI_COLOR_CONFIG(GUI_COLOR_TABLE_ROW_ODD,"Table row (odd)"); + UI_COLOR_CONFIG(GUI_COLOR_BUTTON,_("Button")); + UI_COLOR_CONFIG(GUI_COLOR_BUTTON_HOVER,_("Button (hovered)")); + UI_COLOR_CONFIG(GUI_COLOR_BUTTON_ACTIVE,_("Button (active)")); + UI_COLOR_CONFIG(GUI_COLOR_TAB,_("Tab")); + UI_COLOR_CONFIG(GUI_COLOR_TAB_HOVER,_("Tab (hovered)")); + UI_COLOR_CONFIG(GUI_COLOR_TAB_ACTIVE,_("Tab (active)")); + UI_COLOR_CONFIG(GUI_COLOR_TAB_UNFOCUSED,_("Tab (unfocused)")); + UI_COLOR_CONFIG(GUI_COLOR_TAB_UNFOCUSED_ACTIVE,_("Tab (unfocused and active)")); + UI_COLOR_CONFIG(GUI_COLOR_IMGUI_HEADER,_("ImGui header")); + UI_COLOR_CONFIG(GUI_COLOR_IMGUI_HEADER_HOVER,_("ImGui header (hovered)")); + UI_COLOR_CONFIG(GUI_COLOR_IMGUI_HEADER_ACTIVE,_("ImGui header (active)")); + UI_COLOR_CONFIG(GUI_COLOR_RESIZE_GRIP,_("Resize grip")); + UI_COLOR_CONFIG(GUI_COLOR_RESIZE_GRIP_HOVER,_("Resize grip (hovered)")); + UI_COLOR_CONFIG(GUI_COLOR_RESIZE_GRIP_ACTIVE,_("Resize grip (active)")); + UI_COLOR_CONFIG(GUI_COLOR_WIDGET_BACKGROUND,_("Widget background")); + UI_COLOR_CONFIG(GUI_COLOR_WIDGET_BACKGROUND_HOVER,_("Widget background (hovered)")); + UI_COLOR_CONFIG(GUI_COLOR_WIDGET_BACKGROUND_ACTIVE,_("Widget background (active)")); + UI_COLOR_CONFIG(GUI_COLOR_SLIDER_GRAB,_("Slider grab")); + UI_COLOR_CONFIG(GUI_COLOR_SLIDER_GRAB_ACTIVE,_("Slider grab (active)")); + UI_COLOR_CONFIG(GUI_COLOR_TITLE_BACKGROUND_ACTIVE,_("Title background (active)")); + UI_COLOR_CONFIG(GUI_COLOR_CHECK_MARK,_("Checkbox/radio button mark")); + UI_COLOR_CONFIG(GUI_COLOR_TEXT_SELECTION,_("Text selection")); + UI_COLOR_CONFIG(GUI_COLOR_PLOT_LINES,_("Line plot")); + UI_COLOR_CONFIG(GUI_COLOR_PLOT_LINES_HOVER,_("Line plot (hovered)")); + UI_COLOR_CONFIG(GUI_COLOR_PLOT_HISTOGRAM,_("Histogram plot")); + UI_COLOR_CONFIG(GUI_COLOR_PLOT_HISTOGRAM_HOVER,_("Histogram plot (hovered)")); + UI_COLOR_CONFIG(GUI_COLOR_TABLE_ROW_EVEN,_("Table row (even)")); + UI_COLOR_CONFIG(GUI_COLOR_TABLE_ROW_ODD,_("Table row (odd)")); ImGui::TreePop(); } } - if (ImGui::TreeNode("Interface (other)")) { - UI_COLOR_CONFIG(GUI_COLOR_BACKGROUND,"Background"); - UI_COLOR_CONFIG(GUI_COLOR_FRAME_BACKGROUND,"Window background"); - UI_COLOR_CONFIG(GUI_COLOR_FRAME_BACKGROUND_CHILD,"Sub-window background"); - UI_COLOR_CONFIG(GUI_COLOR_FRAME_BACKGROUND_POPUP,"Pop-up background"); - UI_COLOR_CONFIG(GUI_COLOR_MODAL_BACKDROP,"Modal backdrop"); - UI_COLOR_CONFIG(GUI_COLOR_HEADER,"Header"); - UI_COLOR_CONFIG(GUI_COLOR_TEXT,"Text"); - UI_COLOR_CONFIG(GUI_COLOR_TEXT_DISABLED,"Text (disabled)"); - UI_COLOR_CONFIG(GUI_COLOR_TITLE_INACTIVE,"Title bar (inactive)"); - UI_COLOR_CONFIG(GUI_COLOR_TITLE_COLLAPSED,"Title bar (collapsed)"); - UI_COLOR_CONFIG(GUI_COLOR_MENU_BAR,"Menu bar"); - UI_COLOR_CONFIG(GUI_COLOR_BORDER,"Border"); - UI_COLOR_CONFIG(GUI_COLOR_BORDER_SHADOW,"Border shadow"); - UI_COLOR_CONFIG(GUI_COLOR_SCROLL,"Scroll bar"); - UI_COLOR_CONFIG(GUI_COLOR_SCROLL_HOVER,"Scroll bar (hovered)"); - UI_COLOR_CONFIG(GUI_COLOR_SCROLL_ACTIVE,"Scroll bar (clicked)"); - UI_COLOR_CONFIG(GUI_COLOR_SCROLL_BACKGROUND,"Scroll bar background"); - UI_COLOR_CONFIG(GUI_COLOR_SEPARATOR,"Separator"); - UI_COLOR_CONFIG(GUI_COLOR_SEPARATOR_HOVER,"Separator (hover)"); - UI_COLOR_CONFIG(GUI_COLOR_SEPARATOR_ACTIVE,"Separator (active)"); - UI_COLOR_CONFIG(GUI_COLOR_DOCKING_PREVIEW,"Docking preview"); - UI_COLOR_CONFIG(GUI_COLOR_DOCKING_EMPTY,"Docking empty"); - UI_COLOR_CONFIG(GUI_COLOR_TABLE_HEADER,"Table header"); - UI_COLOR_CONFIG(GUI_COLOR_TABLE_BORDER_HARD,"Table border (hard)"); - UI_COLOR_CONFIG(GUI_COLOR_TABLE_BORDER_SOFT,"Table border (soft)"); - UI_COLOR_CONFIG(GUI_COLOR_DRAG_DROP_TARGET,"Drag and drop target"); - UI_COLOR_CONFIG(GUI_COLOR_NAV_WIN_HIGHLIGHT,"Window switcher (highlight)"); - UI_COLOR_CONFIG(GUI_COLOR_NAV_WIN_BACKDROP,"Window switcher backdrop"); + if (ImGui::TreeNode(_("Interface (other)"))) { + UI_COLOR_CONFIG(GUI_COLOR_BACKGROUND,_("Background")); + UI_COLOR_CONFIG(GUI_COLOR_FRAME_BACKGROUND,_("Window background")); + UI_COLOR_CONFIG(GUI_COLOR_FRAME_BACKGROUND_CHILD,_("Sub-window background")); + UI_COLOR_CONFIG(GUI_COLOR_FRAME_BACKGROUND_POPUP,_("Pop-up background")); + UI_COLOR_CONFIG(GUI_COLOR_MODAL_BACKDROP,_("Modal backdrop")); + UI_COLOR_CONFIG(GUI_COLOR_HEADER,_("Header")); + UI_COLOR_CONFIG(GUI_COLOR_TEXT,_("Text")); + UI_COLOR_CONFIG(GUI_COLOR_TEXT_DISABLED,_("Text (disabled)")); + UI_COLOR_CONFIG(GUI_COLOR_TITLE_INACTIVE,_("Title bar (inactive)")); + UI_COLOR_CONFIG(GUI_COLOR_TITLE_COLLAPSED,_("Title bar (collapsed)")); + UI_COLOR_CONFIG(GUI_COLOR_MENU_BAR,_("Menu bar")); + UI_COLOR_CONFIG(GUI_COLOR_BORDER,_("Border")); + UI_COLOR_CONFIG(GUI_COLOR_BORDER_SHADOW,_("Border shadow")); + UI_COLOR_CONFIG(GUI_COLOR_SCROLL,_("Scroll bar")); + UI_COLOR_CONFIG(GUI_COLOR_SCROLL_HOVER,_("Scroll bar (hovered)")); + UI_COLOR_CONFIG(GUI_COLOR_SCROLL_ACTIVE,_("Scroll bar (clicked)")); + UI_COLOR_CONFIG(GUI_COLOR_SCROLL_BACKGROUND,_("Scroll bar background")); + UI_COLOR_CONFIG(GUI_COLOR_SEPARATOR,_("Separator")); + UI_COLOR_CONFIG(GUI_COLOR_SEPARATOR_HOVER,_("Separator (hover)")); + UI_COLOR_CONFIG(GUI_COLOR_SEPARATOR_ACTIVE,_("Separator (active)")); + UI_COLOR_CONFIG(GUI_COLOR_DOCKING_PREVIEW,_("Docking preview")); + UI_COLOR_CONFIG(GUI_COLOR_DOCKING_EMPTY,_("Docking empty")); + UI_COLOR_CONFIG(GUI_COLOR_TABLE_HEADER,_("Table header")); + UI_COLOR_CONFIG(GUI_COLOR_TABLE_BORDER_HARD,_("Table border (hard)")); + UI_COLOR_CONFIG(GUI_COLOR_TABLE_BORDER_SOFT,_("Table border (soft)")); + UI_COLOR_CONFIG(GUI_COLOR_DRAG_DROP_TARGET,_("Drag and drop target")); + UI_COLOR_CONFIG(GUI_COLOR_NAV_WIN_HIGHLIGHT,_("Window switcher (highlight)")); + UI_COLOR_CONFIG(GUI_COLOR_NAV_WIN_BACKDROP,_("Window switcher backdrop")); ImGui::TreePop(); } - if (ImGui::TreeNode("Miscellaneous")) { - UI_COLOR_CONFIG(GUI_COLOR_TOGGLE_ON,"Toggle on"); - UI_COLOR_CONFIG(GUI_COLOR_TOGGLE_OFF,"Toggle off"); - UI_COLOR_CONFIG(GUI_COLOR_PLAYBACK_STAT,"Playback status"); - UI_COLOR_CONFIG(GUI_COLOR_DESTRUCTIVE,"Destructive hint"); - UI_COLOR_CONFIG(GUI_COLOR_WARNING,"Warning hint"); - UI_COLOR_CONFIG(GUI_COLOR_ERROR,"Error hint"); + if (ImGui::TreeNode(_("Miscellaneous"))) { + UI_COLOR_CONFIG(GUI_COLOR_TOGGLE_ON,_("Toggle on")); + UI_COLOR_CONFIG(GUI_COLOR_TOGGLE_OFF,_("Toggle off")); + UI_COLOR_CONFIG(GUI_COLOR_PLAYBACK_STAT,_("Playback status")); + UI_COLOR_CONFIG(GUI_COLOR_DESTRUCTIVE,_("Destructive hint")); + UI_COLOR_CONFIG(GUI_COLOR_WARNING,_("Warning hint")); + UI_COLOR_CONFIG(GUI_COLOR_ERROR,_("Error hint")); ImGui::TreePop(); } - if (ImGui::TreeNode("File Picker (built-in)")) { - UI_COLOR_CONFIG(GUI_COLOR_FILE_DIR,"Directory"); - UI_COLOR_CONFIG(GUI_COLOR_FILE_SONG_NATIVE,"Song (native)"); - UI_COLOR_CONFIG(GUI_COLOR_FILE_SONG_IMPORT,"Song (import)"); - UI_COLOR_CONFIG(GUI_COLOR_FILE_INSTR,"Instrument"); - UI_COLOR_CONFIG(GUI_COLOR_FILE_AUDIO,"Audio"); - UI_COLOR_CONFIG(GUI_COLOR_FILE_WAVE,"Wavetable"); - UI_COLOR_CONFIG(GUI_COLOR_FILE_VGM,"VGM"); - UI_COLOR_CONFIG(GUI_COLOR_FILE_ZSM,"ZSM"); - UI_COLOR_CONFIG(GUI_COLOR_FILE_FONT,"Font"); - UI_COLOR_CONFIG(GUI_COLOR_FILE_OTHER,"Other"); + if (ImGui::TreeNode(_("File Picker (built-in)"))) { + UI_COLOR_CONFIG(GUI_COLOR_FILE_DIR,_("Directory")); + UI_COLOR_CONFIG(GUI_COLOR_FILE_SONG_NATIVE,_("Song (native)")); + UI_COLOR_CONFIG(GUI_COLOR_FILE_SONG_IMPORT,_("Song (import)")); + UI_COLOR_CONFIG(GUI_COLOR_FILE_INSTR,_("Instrument")); + UI_COLOR_CONFIG(GUI_COLOR_FILE_AUDIO,_("Audio")); + UI_COLOR_CONFIG(GUI_COLOR_FILE_WAVE,_("Wavetable")); + UI_COLOR_CONFIG(GUI_COLOR_FILE_VGM,_("VGM")); + UI_COLOR_CONFIG(GUI_COLOR_FILE_ZSM,_("ZSM")); + UI_COLOR_CONFIG(GUI_COLOR_FILE_FONT,_("Font")); + UI_COLOR_CONFIG(GUI_COLOR_FILE_OTHER,_("Other")); ImGui::TreePop(); } - if (ImGui::TreeNode("Oscilloscope")) { - UI_COLOR_CONFIG(GUI_COLOR_OSC_BORDER,"Border"); - UI_COLOR_CONFIG(GUI_COLOR_OSC_BG1,"Background (top-left)"); - UI_COLOR_CONFIG(GUI_COLOR_OSC_BG2,"Background (top-right)"); - UI_COLOR_CONFIG(GUI_COLOR_OSC_BG3,"Background (bottom-left)"); - UI_COLOR_CONFIG(GUI_COLOR_OSC_BG4,"Background (bottom-right)"); - UI_COLOR_CONFIG(GUI_COLOR_OSC_WAVE,"Waveform"); - UI_COLOR_CONFIG(GUI_COLOR_OSC_WAVE_PEAK,"Waveform (clip)"); - UI_COLOR_CONFIG(GUI_COLOR_OSC_REF,"Reference"); - UI_COLOR_CONFIG(GUI_COLOR_OSC_GUIDE,"Guide"); + if (ImGui::TreeNode(_("Oscilloscope"))) { + UI_COLOR_CONFIG(GUI_COLOR_OSC_BORDER,_("Border")); + UI_COLOR_CONFIG(GUI_COLOR_OSC_BG1,_("Background (top-left)")); + UI_COLOR_CONFIG(GUI_COLOR_OSC_BG2,_("Background (top-right)")); + UI_COLOR_CONFIG(GUI_COLOR_OSC_BG3,_("Background (bottom-left)")); + UI_COLOR_CONFIG(GUI_COLOR_OSC_BG4,_("Background (bottom-right)")); + UI_COLOR_CONFIG(GUI_COLOR_OSC_WAVE,_("Waveform")); + UI_COLOR_CONFIG(GUI_COLOR_OSC_WAVE_PEAK,_("Waveform (clip)")); + UI_COLOR_CONFIG(GUI_COLOR_OSC_REF,_("Reference")); + UI_COLOR_CONFIG(GUI_COLOR_OSC_GUIDE,_("Guide")); - if (ImGui::TreeNode("Wave (non-mono)")) { - UI_COLOR_CONFIG(GUI_COLOR_OSC_WAVE_CH0,"Waveform (1)"); - UI_COLOR_CONFIG(GUI_COLOR_OSC_WAVE_CH1,"Waveform (2)"); - UI_COLOR_CONFIG(GUI_COLOR_OSC_WAVE_CH2,"Waveform (3)"); - UI_COLOR_CONFIG(GUI_COLOR_OSC_WAVE_CH3,"Waveform (4)"); - UI_COLOR_CONFIG(GUI_COLOR_OSC_WAVE_CH4,"Waveform (5)"); - UI_COLOR_CONFIG(GUI_COLOR_OSC_WAVE_CH5,"Waveform (6)"); - UI_COLOR_CONFIG(GUI_COLOR_OSC_WAVE_CH6,"Waveform (7)"); - UI_COLOR_CONFIG(GUI_COLOR_OSC_WAVE_CH7,"Waveform (8)"); - UI_COLOR_CONFIG(GUI_COLOR_OSC_WAVE_CH8,"Waveform (9)"); - UI_COLOR_CONFIG(GUI_COLOR_OSC_WAVE_CH9,"Waveform (10)"); - UI_COLOR_CONFIG(GUI_COLOR_OSC_WAVE_CH10,"Waveform (11)"); - UI_COLOR_CONFIG(GUI_COLOR_OSC_WAVE_CH11,"Waveform (12)"); - UI_COLOR_CONFIG(GUI_COLOR_OSC_WAVE_CH12,"Waveform (13)"); - UI_COLOR_CONFIG(GUI_COLOR_OSC_WAVE_CH13,"Waveform (14)"); - UI_COLOR_CONFIG(GUI_COLOR_OSC_WAVE_CH14,"Waveform (15)"); - UI_COLOR_CONFIG(GUI_COLOR_OSC_WAVE_CH15,"Waveform (16)"); + if (ImGui::TreeNode(_("Wave (non-mono)"))) { + UI_COLOR_CONFIG(GUI_COLOR_OSC_WAVE_CH0,_("Waveform (1)")); + UI_COLOR_CONFIG(GUI_COLOR_OSC_WAVE_CH1,_("Waveform (2)")); + UI_COLOR_CONFIG(GUI_COLOR_OSC_WAVE_CH2,_("Waveform (3)")); + UI_COLOR_CONFIG(GUI_COLOR_OSC_WAVE_CH3,_("Waveform (4)")); + UI_COLOR_CONFIG(GUI_COLOR_OSC_WAVE_CH4,_("Waveform (5)")); + UI_COLOR_CONFIG(GUI_COLOR_OSC_WAVE_CH5,_("Waveform (6)")); + UI_COLOR_CONFIG(GUI_COLOR_OSC_WAVE_CH6,_("Waveform (7)")); + UI_COLOR_CONFIG(GUI_COLOR_OSC_WAVE_CH7,_("Waveform (8)")); + UI_COLOR_CONFIG(GUI_COLOR_OSC_WAVE_CH8,_("Waveform (9)")); + UI_COLOR_CONFIG(GUI_COLOR_OSC_WAVE_CH9,_("Waveform (10)")); + UI_COLOR_CONFIG(GUI_COLOR_OSC_WAVE_CH10,_("Waveform (11)")); + UI_COLOR_CONFIG(GUI_COLOR_OSC_WAVE_CH11,_("Waveform (12)")); + UI_COLOR_CONFIG(GUI_COLOR_OSC_WAVE_CH12,_("Waveform (13)")); + UI_COLOR_CONFIG(GUI_COLOR_OSC_WAVE_CH13,_("Waveform (14)")); + UI_COLOR_CONFIG(GUI_COLOR_OSC_WAVE_CH14,_("Waveform (15)")); + UI_COLOR_CONFIG(GUI_COLOR_OSC_WAVE_CH15,_("Waveform (16)")); ImGui::TreePop(); } ImGui::TreePop(); } - if (ImGui::TreeNode("Volume Meter")) { - UI_COLOR_CONFIG(GUI_COLOR_VOLMETER_LOW,"Low"); - UI_COLOR_CONFIG(GUI_COLOR_VOLMETER_HIGH,"High"); - UI_COLOR_CONFIG(GUI_COLOR_VOLMETER_PEAK,"Clip"); + if (ImGui::TreeNode(_("Volume Meter"))) { + UI_COLOR_CONFIG(GUI_COLOR_VOLMETER_LOW,_("Low")); + UI_COLOR_CONFIG(GUI_COLOR_VOLMETER_HIGH,_("High")); + UI_COLOR_CONFIG(GUI_COLOR_VOLMETER_PEAK,_("Clip")); ImGui::TreePop(); } - if (ImGui::TreeNode("Orders")) { - UI_COLOR_CONFIG(GUI_COLOR_ORDER_ROW_INDEX,"Order number"); - UI_COLOR_CONFIG(GUI_COLOR_ORDER_ACTIVE,"Playing order background"); - UI_COLOR_CONFIG(GUI_COLOR_SONG_LOOP,"Song loop"); - UI_COLOR_CONFIG(GUI_COLOR_ORDER_SELECTED,"Selected order"); - UI_COLOR_CONFIG(GUI_COLOR_ORDER_SIMILAR,"Similar patterns"); - UI_COLOR_CONFIG(GUI_COLOR_ORDER_INACTIVE,"Inactive patterns"); + if (ImGui::TreeNode(_("Orders"))) { + UI_COLOR_CONFIG(GUI_COLOR_ORDER_ROW_INDEX,_("Order number")); + UI_COLOR_CONFIG(GUI_COLOR_ORDER_ACTIVE,_("Playing order background")); + UI_COLOR_CONFIG(GUI_COLOR_SONG_LOOP,_("Song loop")); + UI_COLOR_CONFIG(GUI_COLOR_ORDER_SELECTED,_("Selected order")); + UI_COLOR_CONFIG(GUI_COLOR_ORDER_SIMILAR,_("Similar patterns")); + UI_COLOR_CONFIG(GUI_COLOR_ORDER_INACTIVE,_("Inactive patterns")); ImGui::TreePop(); } - if (ImGui::TreeNode("Envelope View")) { - UI_COLOR_CONFIG(GUI_COLOR_FM_ENVELOPE,"Envelope"); - UI_COLOR_CONFIG(GUI_COLOR_FM_ENVELOPE_SUS_GUIDE,"Sustain guide"); - UI_COLOR_CONFIG(GUI_COLOR_FM_ENVELOPE_RELEASE,"Release"); + if (ImGui::TreeNode(_("Envelope View"))) { + UI_COLOR_CONFIG(GUI_COLOR_FM_ENVELOPE,_("Envelope")); + UI_COLOR_CONFIG(GUI_COLOR_FM_ENVELOPE_SUS_GUIDE,_("Sustain guide")); + UI_COLOR_CONFIG(GUI_COLOR_FM_ENVELOPE_RELEASE,_("Release")); ImGui::TreePop(); } - if (ImGui::TreeNode("FM Editor")) { - UI_COLOR_CONFIG(GUI_COLOR_FM_ALG_BG,"Algorithm background"); - UI_COLOR_CONFIG(GUI_COLOR_FM_ALG_LINE,"Algorithm lines"); - UI_COLOR_CONFIG(GUI_COLOR_FM_MOD,"Modulator"); - UI_COLOR_CONFIG(GUI_COLOR_FM_CAR,"Carrier"); + if (ImGui::TreeNode(_("FM Editor"))) { + UI_COLOR_CONFIG(GUI_COLOR_FM_ALG_BG,_("Algorithm background")); + UI_COLOR_CONFIG(GUI_COLOR_FM_ALG_LINE,_("Algorithm lines")); + UI_COLOR_CONFIG(GUI_COLOR_FM_MOD,_("Modulator")); + UI_COLOR_CONFIG(GUI_COLOR_FM_CAR,_("Carrier")); - UI_COLOR_CONFIG(GUI_COLOR_FM_SSG,"SSG-EG"); - UI_COLOR_CONFIG(GUI_COLOR_FM_WAVE,"Waveform"); + UI_COLOR_CONFIG(GUI_COLOR_FM_SSG,_("SSG-EG")); + UI_COLOR_CONFIG(GUI_COLOR_FM_WAVE,_("Waveform")); - ImGui::TextWrapped("(the following colors only apply when \"Use separate colors for carriers/modulators in FM editor\" is on!)"); + ImGui::TextWrapped(_("(the following colors only apply when \"Use separate colors for carriers/modulators in FM editor\" is on!)")); - UI_COLOR_CONFIG(GUI_COLOR_FM_PRIMARY_MOD,"Mod. accent (primary)"); - UI_COLOR_CONFIG(GUI_COLOR_FM_SECONDARY_MOD,"Mod. accent (secondary)"); - UI_COLOR_CONFIG(GUI_COLOR_FM_BORDER_MOD,"Mod. border"); - UI_COLOR_CONFIG(GUI_COLOR_FM_BORDER_SHADOW_MOD,"Mod. border shadow"); + UI_COLOR_CONFIG(GUI_COLOR_FM_PRIMARY_MOD,_("Mod. accent (primary)")); + UI_COLOR_CONFIG(GUI_COLOR_FM_SECONDARY_MOD,_("Mod. accent (secondary)")); + UI_COLOR_CONFIG(GUI_COLOR_FM_BORDER_MOD,_("Mod. border")); + UI_COLOR_CONFIG(GUI_COLOR_FM_BORDER_SHADOW_MOD,_("Mod. border shadow")); - UI_COLOR_CONFIG(GUI_COLOR_FM_PRIMARY_CAR,"Car. accent (primary"); - UI_COLOR_CONFIG(GUI_COLOR_FM_SECONDARY_CAR,"Car. accent (secondary)"); - UI_COLOR_CONFIG(GUI_COLOR_FM_BORDER_CAR,"Car. border"); - UI_COLOR_CONFIG(GUI_COLOR_FM_BORDER_SHADOW_CAR,"Car. border shadow"); + UI_COLOR_CONFIG(GUI_COLOR_FM_PRIMARY_CAR,_("Car. accent (primary)")); + UI_COLOR_CONFIG(GUI_COLOR_FM_SECONDARY_CAR,_("Car. accent (secondary)")); + UI_COLOR_CONFIG(GUI_COLOR_FM_BORDER_CAR,_("Car. border")); + UI_COLOR_CONFIG(GUI_COLOR_FM_BORDER_SHADOW_CAR,_("Car. border shadow")); ImGui::TreePop(); } - if (ImGui::TreeNode("Macro Editor")) { - UI_COLOR_CONFIG(GUI_COLOR_MACRO_VOLUME,"Volume"); - UI_COLOR_CONFIG(GUI_COLOR_MACRO_PITCH,"Pitch"); - UI_COLOR_CONFIG(GUI_COLOR_MACRO_WAVE,"Wave"); - UI_COLOR_CONFIG(GUI_COLOR_MACRO_OTHER,"Other"); + if (ImGui::TreeNode(_("Macro Editor"))) { + UI_COLOR_CONFIG(GUI_COLOR_MACRO_VOLUME,_("Volume")); + UI_COLOR_CONFIG(GUI_COLOR_MACRO_PITCH,_("Pitch")); + UI_COLOR_CONFIG(GUI_COLOR_MACRO_WAVE,_("Wave")); + UI_COLOR_CONFIG(GUI_COLOR_MACRO_OTHER,_("Other")); ImGui::TreePop(); } - if (ImGui::TreeNode("Instrument Types")) { - UI_COLOR_CONFIG(GUI_COLOR_INSTR_FM,"FM (OPN)"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_STD,"SN76489/Sega PSG"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_T6W28,"T6W28"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_GB,"Game Boy"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_C64,"C64"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_AMIGA,"Amiga/Generic Sample"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_PCE,"PC Engine"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_AY,"AY-3-8910/SSG"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_AY8930,"AY8930"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_TIA,"TIA"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_SAA1099,"SAA1099"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_VIC,"VIC"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_PET,"PET"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_VRC6,"VRC6"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_VRC6_SAW,"VRC6 (saw)"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_OPLL,"FM (OPLL)"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_OPL,"FM (OPL)"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_FDS,"FDS"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_VBOY,"Virtual Boy"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_N163,"Namco 163"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_SCC,"Konami SCC"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_OPZ,"FM (OPZ)"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_POKEY,"POKEY"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_BEEPER,"PC Beeper"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_SWAN,"WonderSwan"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_MIKEY,"Lynx"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_VERA,"VERA"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_X1_010,"X1-010"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_ES5506,"ES5506"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_MULTIPCM,"MultiPCM"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_SNES,"SNES"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_SU,"Sound Unit"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_NAMCO,"Namco WSG"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_OPL_DRUMS,"FM (OPL Drums)"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_OPM,"FM (OPM)"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_NES,"NES"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_MSM6258,"MSM6258"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_MSM6295,"MSM6295"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_ADPCMA,"ADPCM-A"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_ADPCMB,"ADPCM-B"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_SEGAPCM,"Sega PCM"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_QSOUND,"QSound"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_YMZ280B,"YMZ280B"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_RF5C68,"RF5C68"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_MSM5232,"MSM5232"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_K007232,"K007232"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_GA20,"GA20"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_POKEMINI,"Pokémon Mini"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_SM8521,"SM8521"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_PV1000,"PV-1000"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_K053260,"K053260"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_TED,"TED"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_C140,"C140"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_C219,"C219"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_ESFM,"ESFM"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_POWERNOISE,"PowerNoise (noise)"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_POWERNOISE_SLOPE,"PowerNoise (slope)"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_DAVE,"Dave"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_NDS,"Nintendo DS"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_GBA_DMA,"GBA DMA"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_GBA_MINMOD,"GBA MinMod"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_BIFURCATOR,"Bifurcator"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_SID2,"SID2"); - UI_COLOR_CONFIG(GUI_COLOR_INSTR_UNKNOWN,"Other/Unknown"); + if (ImGui::TreeNode(_("Instrument Types"))) { + UI_COLOR_CONFIG(GUI_COLOR_INSTR_FM,_("FM (OPN)")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_STD,_("SN76489/Sega PSG")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_T6W28,_("T6W28")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_GB,_("Game Boy")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_C64,_("C64")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_AMIGA,_("Amiga/Generic Sample")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_PCE,_("PC Engine")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_AY,_("AY-3-8910/SSG")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_AY8930,_("AY8930")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_TIA,_("TIA")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_SAA1099,_("SAA1099")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_VIC,_("VIC")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_PET,_("PET")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_VRC6,_("VRC6")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_VRC6_SAW,_("VRC6 (saw)")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_OPLL,_("FM (OPLL)")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_OPL,_("FM (OPL)")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_FDS,_("FDS")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_VBOY,_("Virtual Boy")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_N163,_("Namco 163")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_SCC,_("Konami SCC")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_OPZ,_("FM (OPZ)")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_POKEY,_("POKEY")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_BEEPER,_("PC Beeper")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_SWAN,_("WonderSwan")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_MIKEY,_("Lynx")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_VERA,_("VERA")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_X1_010,_("X1-010")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_ES5506,_("ES5506")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_MULTIPCM,_("MultiPCM")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_SNES,_("SNES")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_SU,_("Sound Unit")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_NAMCO,_("Namco WSG")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_OPL_DRUMS,_("FM (OPL Drums)")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_OPM,_("FM (OPM)")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_NES,_("NES")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_MSM6258,_("MSM6258")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_MSM6295,_("MSM6295")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_ADPCMA,_("ADPCM-A")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_ADPCMB,_("ADPCM-B")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_SEGAPCM,_("Sega PCM")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_QSOUND,_("QSound")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_YMZ280B,_("YMZ280B")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_RF5C68,_("RF5C68")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_MSM5232,_("MSM5232")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_K007232,_("K007232")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_GA20,_("GA20")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_POKEMINI,_("Pokémon Mini")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_SM8521,_("SM8521")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_PV1000,_("PV-1000")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_K053260,_("K053260")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_TED,_("TED")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_C140,_("C140")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_C219,_("C219")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_ESFM,_("ESFM")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_POWERNOISE,_("PowerNoise (noise)")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_POWERNOISE_SLOPE,_("PowerNoise (slope)")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_DAVE,_("Dave")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_NDS,_("Nintendo DS")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_GBA_DMA,_("GBA DMA")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_GBA_MINMOD,_("GBA MinMod")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_BIFURCATOR,_("Bifurcator")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_SID2,_("SID2")); + UI_COLOR_CONFIG(GUI_COLOR_INSTR_UNKNOWN,_("Other/Unknown")); ImGui::TreePop(); } - if (ImGui::TreeNode("Channel")) { - UI_COLOR_CONFIG(GUI_COLOR_CHANNEL_BG,"Single color (background)"); - UI_COLOR_CONFIG(GUI_COLOR_CHANNEL_FG,"Single color (text)"); - UI_COLOR_CONFIG(GUI_COLOR_CHANNEL_FM,"FM"); - UI_COLOR_CONFIG(GUI_COLOR_CHANNEL_PULSE,"Pulse"); - UI_COLOR_CONFIG(GUI_COLOR_CHANNEL_NOISE,"Noise"); - UI_COLOR_CONFIG(GUI_COLOR_CHANNEL_PCM,"PCM"); - UI_COLOR_CONFIG(GUI_COLOR_CHANNEL_WAVE,"Wave"); - UI_COLOR_CONFIG(GUI_COLOR_CHANNEL_OP,"FM operator"); - UI_COLOR_CONFIG(GUI_COLOR_CHANNEL_MUTED,"Muted"); + if (ImGui::TreeNode(_("Channel"))) { + UI_COLOR_CONFIG(GUI_COLOR_CHANNEL_BG,_("Single color (background)")); + UI_COLOR_CONFIG(GUI_COLOR_CHANNEL_FG,_("Single color (text)")); + UI_COLOR_CONFIG(GUI_COLOR_CHANNEL_FM,_("FM")); + UI_COLOR_CONFIG(GUI_COLOR_CHANNEL_PULSE,_("Pulse")); + UI_COLOR_CONFIG(GUI_COLOR_CHANNEL_NOISE,_("Noise")); + UI_COLOR_CONFIG(GUI_COLOR_CHANNEL_PCM,_("PCM")); + UI_COLOR_CONFIG(GUI_COLOR_CHANNEL_WAVE,_("Wave")); + UI_COLOR_CONFIG(GUI_COLOR_CHANNEL_OP,_("FM operator")); + UI_COLOR_CONFIG(GUI_COLOR_CHANNEL_MUTED,_("Muted")); ImGui::TreePop(); } - if (ImGui::TreeNode("Pattern")) { - UI_COLOR_CONFIG(GUI_COLOR_PATTERN_PLAY_HEAD,"Playhead"); - UI_COLOR_CONFIG(GUI_COLOR_EDITING,"Editing"); - UI_COLOR_CONFIG(GUI_COLOR_EDITING_CLONE,"Editing (will clone)"); - UI_COLOR_CONFIG(GUI_COLOR_PATTERN_CURSOR,"Cursor"); - UI_COLOR_CONFIG(GUI_COLOR_PATTERN_CURSOR_HOVER,"Cursor (hovered)"); - UI_COLOR_CONFIG(GUI_COLOR_PATTERN_CURSOR_ACTIVE,"Cursor (clicked)"); - UI_COLOR_CONFIG(GUI_COLOR_PATTERN_SELECTION,"Selection"); - UI_COLOR_CONFIG(GUI_COLOR_PATTERN_SELECTION_HOVER,"Selection (hovered)"); - UI_COLOR_CONFIG(GUI_COLOR_PATTERN_SELECTION_ACTIVE,"Selection (clicked)"); - UI_COLOR_CONFIG(GUI_COLOR_PATTERN_HI_1,"Highlight 1"); - UI_COLOR_CONFIG(GUI_COLOR_PATTERN_HI_2,"Highlight 2"); - UI_COLOR_CONFIG(GUI_COLOR_PATTERN_ROW_INDEX,"Row number"); - UI_COLOR_CONFIG(GUI_COLOR_PATTERN_ROW_INDEX_HI1,"Row number (highlight 1)"); - UI_COLOR_CONFIG(GUI_COLOR_PATTERN_ROW_INDEX_HI2,"Row number (highlight 2)"); - UI_COLOR_CONFIG(GUI_COLOR_PATTERN_ACTIVE,"Note"); - UI_COLOR_CONFIG(GUI_COLOR_PATTERN_ACTIVE_HI1,"Note (highlight 1)"); - UI_COLOR_CONFIG(GUI_COLOR_PATTERN_ACTIVE_HI2,"Note (highlight 2)"); - UI_COLOR_CONFIG(GUI_COLOR_PATTERN_INACTIVE,"Blank"); - UI_COLOR_CONFIG(GUI_COLOR_PATTERN_INACTIVE_HI1,"Blank (highlight 1)"); - UI_COLOR_CONFIG(GUI_COLOR_PATTERN_INACTIVE_HI2,"Blank (highlight 2)"); - UI_COLOR_CONFIG(GUI_COLOR_PATTERN_INS,"Instrument"); - UI_COLOR_CONFIG(GUI_COLOR_PATTERN_INS_WARN,"Instrument (invalid type)"); - UI_COLOR_CONFIG(GUI_COLOR_PATTERN_INS_ERROR,"Instrument (out of range)"); - UI_COLOR_CONFIG(GUI_COLOR_PATTERN_VOLUME_MIN,"Volume (0%)"); - UI_COLOR_CONFIG(GUI_COLOR_PATTERN_VOLUME_HALF,"Volume (50%)"); - UI_COLOR_CONFIG(GUI_COLOR_PATTERN_VOLUME_MAX,"Volume (100%)"); - UI_COLOR_CONFIG(GUI_COLOR_PATTERN_EFFECT_INVALID,"Invalid effect"); - UI_COLOR_CONFIG(GUI_COLOR_PATTERN_EFFECT_PITCH,"Pitch effect"); - UI_COLOR_CONFIG(GUI_COLOR_PATTERN_EFFECT_VOLUME,"Volume effect"); - UI_COLOR_CONFIG(GUI_COLOR_PATTERN_EFFECT_PANNING,"Panning effect"); - UI_COLOR_CONFIG(GUI_COLOR_PATTERN_EFFECT_SONG,"Song effect"); - UI_COLOR_CONFIG(GUI_COLOR_PATTERN_EFFECT_TIME,"Time effect"); - UI_COLOR_CONFIG(GUI_COLOR_PATTERN_EFFECT_SPEED,"Speed effect"); - UI_COLOR_CONFIG(GUI_COLOR_PATTERN_EFFECT_SYS_PRIMARY,"Primary specific effect"); - UI_COLOR_CONFIG(GUI_COLOR_PATTERN_EFFECT_SYS_SECONDARY,"Secondary specific effect"); - UI_COLOR_CONFIG(GUI_COLOR_PATTERN_EFFECT_MISC,"Miscellaneous"); - UI_COLOR_CONFIG(GUI_COLOR_EE_VALUE,"External command output"); - UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_OFF,"Status: off/disabled"); - UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_REL,"Status: off + macro rel"); - UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_REL_ON,"Status: on + macro rel"); - UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_ON,"Status: on"); - UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_VOLUME,"Status: volume"); - UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_PITCH,"Status: pitch"); - UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_PANNING,"Status: panning"); - UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_SYS1,"Status: chip (primary)"); - UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_SYS2,"Status: chip (secondary)"); - UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_MIXING,"Status: mixing"); - UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_DSP,"Status: DSP effect"); - UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_NOTE,"Status: note altering"); - UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_MISC1,"Status: misc color 1"); - UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_MISC2,"Status: misc color 2"); - UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_MISC3,"Status: misc color 3"); - UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_ATTACK,"Status: attack"); - UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_DECAY,"Status: decay"); - UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_SUSTAIN,"Status: sustain"); - UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_RELEASE,"Status: release"); - UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_DEC_LINEAR,"Status: decrease linear"); - UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_DEC_EXP,"Status: decrease exp"); - UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_INC,"Status: increase"); - UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_BENT,"Status: bent"); - UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_DIRECT,"Status: direct"); + if (ImGui::TreeNode(_("Pattern"))) { + UI_COLOR_CONFIG(GUI_COLOR_PATTERN_PLAY_HEAD,_("Playhead")); + UI_COLOR_CONFIG(GUI_COLOR_EDITING,_("Editing")); + UI_COLOR_CONFIG(GUI_COLOR_EDITING_CLONE,_("Editing (will clone)")); + UI_COLOR_CONFIG(GUI_COLOR_PATTERN_CURSOR,_("Cursor")); + UI_COLOR_CONFIG(GUI_COLOR_PATTERN_CURSOR_HOVER,_("Cursor (hovered)")); + UI_COLOR_CONFIG(GUI_COLOR_PATTERN_CURSOR_ACTIVE,_("Cursor (clicked)")); + UI_COLOR_CONFIG(GUI_COLOR_PATTERN_SELECTION,_("Selection")); + UI_COLOR_CONFIG(GUI_COLOR_PATTERN_SELECTION_HOVER,_("Selection (hovered)")); + UI_COLOR_CONFIG(GUI_COLOR_PATTERN_SELECTION_ACTIVE,_("Selection (clicked)")); + UI_COLOR_CONFIG(GUI_COLOR_PATTERN_HI_1,_("Highlight 1")); + UI_COLOR_CONFIG(GUI_COLOR_PATTERN_HI_2,_("Highlight 2")); + UI_COLOR_CONFIG(GUI_COLOR_PATTERN_ROW_INDEX,_("Row number")); + UI_COLOR_CONFIG(GUI_COLOR_PATTERN_ROW_INDEX_HI1,_("Row number (highlight 1)")); + UI_COLOR_CONFIG(GUI_COLOR_PATTERN_ROW_INDEX_HI2,_("Row number (highlight 2)")); + UI_COLOR_CONFIG(GUI_COLOR_PATTERN_ACTIVE,_("Note")); + UI_COLOR_CONFIG(GUI_COLOR_PATTERN_ACTIVE_HI1,_("Note (highlight 1)")); + UI_COLOR_CONFIG(GUI_COLOR_PATTERN_ACTIVE_HI2,_("Note (highlight 2)")); + UI_COLOR_CONFIG(GUI_COLOR_PATTERN_INACTIVE,_("Blank")); + UI_COLOR_CONFIG(GUI_COLOR_PATTERN_INACTIVE_HI1,_("Blank (highlight 1)")); + UI_COLOR_CONFIG(GUI_COLOR_PATTERN_INACTIVE_HI2,_("Blank (highlight 2)")); + UI_COLOR_CONFIG(GUI_COLOR_PATTERN_INS,_("Instrument")); + UI_COLOR_CONFIG(GUI_COLOR_PATTERN_INS_WARN,_("Instrument (invalid type)")); + UI_COLOR_CONFIG(GUI_COLOR_PATTERN_INS_ERROR,_("Instrument (out of range)")); + UI_COLOR_CONFIG(GUI_COLOR_PATTERN_VOLUME_MIN,_("Volume (0%)")); + UI_COLOR_CONFIG(GUI_COLOR_PATTERN_VOLUME_HALF,_("Volume (50%)")); + UI_COLOR_CONFIG(GUI_COLOR_PATTERN_VOLUME_MAX,_("Volume (100%)")); + UI_COLOR_CONFIG(GUI_COLOR_PATTERN_EFFECT_INVALID,_("Invalid effect")); + UI_COLOR_CONFIG(GUI_COLOR_PATTERN_EFFECT_PITCH,_("Pitch effect")); + UI_COLOR_CONFIG(GUI_COLOR_PATTERN_EFFECT_VOLUME,_("Volume effect")); + UI_COLOR_CONFIG(GUI_COLOR_PATTERN_EFFECT_PANNING,_("Panning effect")); + UI_COLOR_CONFIG(GUI_COLOR_PATTERN_EFFECT_SONG,_("Song effect")); + UI_COLOR_CONFIG(GUI_COLOR_PATTERN_EFFECT_TIME,_("Time effect")); + UI_COLOR_CONFIG(GUI_COLOR_PATTERN_EFFECT_SPEED,_("Speed effect")); + UI_COLOR_CONFIG(GUI_COLOR_PATTERN_EFFECT_SYS_PRIMARY,_("Primary specific effect")); + UI_COLOR_CONFIG(GUI_COLOR_PATTERN_EFFECT_SYS_SECONDARY,_("Secondary specific effect")); + UI_COLOR_CONFIG(GUI_COLOR_PATTERN_EFFECT_MISC,_("Miscellaneous")); + UI_COLOR_CONFIG(GUI_COLOR_EE_VALUE,_("External command output")); + UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_OFF,_("Status: off/disabled")); + UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_REL,_("Status: off + macro rel")); + UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_REL_ON,_("Status: on + macro rel")); + UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_ON,_("Status: on")); + UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_VOLUME,_("Status: volume")); + UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_PITCH,_("Status: pitch")); + UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_PANNING,_("Status: panning")); + UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_SYS1,_("Status: chip (primary)")); + UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_SYS2,_("Status: chip (secondary)")); + UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_MIXING,_("Status: mixing")); + UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_DSP,_("Status: DSP effect")); + UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_NOTE,_("Status: note altering")); + UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_MISC1,_("Status: misc color 1")); + UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_MISC2,_("Status: misc color 2")); + UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_MISC3,_("Status: misc color 3")); + UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_ATTACK,_("Status: attack")); + UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_DECAY,_("Status: decay")); + UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_SUSTAIN,_("Status: sustain")); + UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_RELEASE,_("Status: release")); + UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_DEC_LINEAR,_("Status: decrease linear")); + UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_DEC_EXP,_("Status: decrease exp")); + UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_INC,_("Status: increase")); + UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_BENT,_("Status: bent")); + UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_DIRECT,_("Status: direct")); ImGui::TreePop(); } - if (ImGui::TreeNode("Sample Editor")) { - UI_COLOR_CONFIG(GUI_COLOR_SAMPLE_BG,"Background"); - UI_COLOR_CONFIG(GUI_COLOR_SAMPLE_FG,"Waveform"); - UI_COLOR_CONFIG(GUI_COLOR_SAMPLE_TIME_BG,"Time background"); - UI_COLOR_CONFIG(GUI_COLOR_SAMPLE_TIME_FG,"Time text"); - UI_COLOR_CONFIG(GUI_COLOR_SAMPLE_LOOP,"Loop region"); - UI_COLOR_CONFIG(GUI_COLOR_SAMPLE_CENTER,"Center guide"); - UI_COLOR_CONFIG(GUI_COLOR_SAMPLE_GRID,"Grid"); - UI_COLOR_CONFIG(GUI_COLOR_SAMPLE_SEL,"Selection"); - UI_COLOR_CONFIG(GUI_COLOR_SAMPLE_SEL_POINT,"Selection points"); - UI_COLOR_CONFIG(GUI_COLOR_SAMPLE_NEEDLE,"Preview needle"); - UI_COLOR_CONFIG(GUI_COLOR_SAMPLE_NEEDLE_PLAYING,"Playing needles"); - UI_COLOR_CONFIG(GUI_COLOR_SAMPLE_LOOP_POINT,"Loop markers"); - UI_COLOR_CONFIG(GUI_COLOR_SAMPLE_CHIP_DISABLED,"Chip select: disabled"); - UI_COLOR_CONFIG(GUI_COLOR_SAMPLE_CHIP_ENABLED,"Chip select: enabled"); - UI_COLOR_CONFIG(GUI_COLOR_SAMPLE_CHIP_WARNING,"Chip select: enabled (failure)"); + if (ImGui::TreeNode(_("Sample Editor"))) { + UI_COLOR_CONFIG(GUI_COLOR_SAMPLE_BG,_("Background")); + UI_COLOR_CONFIG(GUI_COLOR_SAMPLE_FG,_("Waveform")); + UI_COLOR_CONFIG(GUI_COLOR_SAMPLE_TIME_BG,_("Time background")); + UI_COLOR_CONFIG(GUI_COLOR_SAMPLE_TIME_FG,_("Time text")); + UI_COLOR_CONFIG(GUI_COLOR_SAMPLE_LOOP,_("Loop region")); + UI_COLOR_CONFIG(GUI_COLOR_SAMPLE_CENTER,_("Center guide")); + UI_COLOR_CONFIG(GUI_COLOR_SAMPLE_GRID,_("Grid")); + UI_COLOR_CONFIG(GUI_COLOR_SAMPLE_SEL,_("Selection")); + UI_COLOR_CONFIG(GUI_COLOR_SAMPLE_SEL_POINT,_("Selection points")); + UI_COLOR_CONFIG(GUI_COLOR_SAMPLE_NEEDLE,_("Preview needle")); + UI_COLOR_CONFIG(GUI_COLOR_SAMPLE_NEEDLE_PLAYING,_("Playing needles")); + UI_COLOR_CONFIG(GUI_COLOR_SAMPLE_LOOP_POINT,_("Loop markers")); + UI_COLOR_CONFIG(GUI_COLOR_SAMPLE_CHIP_DISABLED,_("Chip select: disabled")); + UI_COLOR_CONFIG(GUI_COLOR_SAMPLE_CHIP_ENABLED,_("Chip select: enabled")); + UI_COLOR_CONFIG(GUI_COLOR_SAMPLE_CHIP_WARNING,_("Chip select: enabled (failure)")); ImGui::TreePop(); } - if (ImGui::TreeNode("Pattern Manager")) { - UI_COLOR_CONFIG(GUI_COLOR_PAT_MANAGER_NULL,"Unallocated"); - UI_COLOR_CONFIG(GUI_COLOR_PAT_MANAGER_UNUSED,"Unused"); - UI_COLOR_CONFIG(GUI_COLOR_PAT_MANAGER_USED,"Used"); - UI_COLOR_CONFIG(GUI_COLOR_PAT_MANAGER_OVERUSED,"Overused"); - UI_COLOR_CONFIG(GUI_COLOR_PAT_MANAGER_EXTREMELY_OVERUSED,"Really overused"); - UI_COLOR_CONFIG(GUI_COLOR_PAT_MANAGER_COMBO_BREAKER,"Combo Breaker"); + if (ImGui::TreeNode(_("Pattern Manager"))) { + UI_COLOR_CONFIG(GUI_COLOR_PAT_MANAGER_NULL,_("Unallocated")); + UI_COLOR_CONFIG(GUI_COLOR_PAT_MANAGER_UNUSED,_("Unused")); + UI_COLOR_CONFIG(GUI_COLOR_PAT_MANAGER_USED,_("Used")); + UI_COLOR_CONFIG(GUI_COLOR_PAT_MANAGER_OVERUSED,_("Overused")); + UI_COLOR_CONFIG(GUI_COLOR_PAT_MANAGER_EXTREMELY_OVERUSED,_("Really overused")); + UI_COLOR_CONFIG(GUI_COLOR_PAT_MANAGER_COMBO_BREAKER,_("Combo Breaker")); ImGui::TreePop(); } - if (ImGui::TreeNode("Piano")) { - UI_COLOR_CONFIG(GUI_COLOR_PIANO_BACKGROUND,"Background"); - UI_COLOR_CONFIG(GUI_COLOR_PIANO_KEY_TOP,"Upper key"); - UI_COLOR_CONFIG(GUI_COLOR_PIANO_KEY_TOP_HIT,"Upper key (feedback)"); - UI_COLOR_CONFIG(GUI_COLOR_PIANO_KEY_TOP_ACTIVE,"Upper key (pressed)"); - UI_COLOR_CONFIG(GUI_COLOR_PIANO_KEY_BOTTOM,"Lower key"); - UI_COLOR_CONFIG(GUI_COLOR_PIANO_KEY_BOTTOM_HIT,"Lower key (feedback)"); - UI_COLOR_CONFIG(GUI_COLOR_PIANO_KEY_BOTTOM_ACTIVE,"Lower key (pressed)"); + if (ImGui::TreeNode(_("Piano"))) { + UI_COLOR_CONFIG(GUI_COLOR_PIANO_BACKGROUND,_("Background")); + UI_COLOR_CONFIG(GUI_COLOR_PIANO_KEY_TOP,_("Upper key")); + UI_COLOR_CONFIG(GUI_COLOR_PIANO_KEY_TOP_HIT,_("Upper key (feedback)")); + UI_COLOR_CONFIG(GUI_COLOR_PIANO_KEY_TOP_ACTIVE,_("Upper key (pressed)")); + UI_COLOR_CONFIG(GUI_COLOR_PIANO_KEY_BOTTOM,_("Lower key")); + UI_COLOR_CONFIG(GUI_COLOR_PIANO_KEY_BOTTOM_HIT,_("Lower key (feedback)")); + UI_COLOR_CONFIG(GUI_COLOR_PIANO_KEY_BOTTOM_ACTIVE,_("Lower key (pressed)")); ImGui::TreePop(); } - if (ImGui::TreeNode("Clock")) { - UI_COLOR_CONFIG(GUI_COLOR_CLOCK_TEXT,"Clock text"); - UI_COLOR_CONFIG(GUI_COLOR_CLOCK_BEAT_LOW,"Beat (off)"); - UI_COLOR_CONFIG(GUI_COLOR_CLOCK_BEAT_HIGH,"Beat (on)"); + if (ImGui::TreeNode(_("Clock"))) { + UI_COLOR_CONFIG(GUI_COLOR_CLOCK_TEXT,_("Clock text")); + UI_COLOR_CONFIG(GUI_COLOR_CLOCK_BEAT_LOW,_("Beat (off)")); + UI_COLOR_CONFIG(GUI_COLOR_CLOCK_BEAT_HIGH,_("Beat (on)")); ImGui::TreePop(); } - if (ImGui::TreeNode("Patchbay")) { - UI_COLOR_CONFIG(GUI_COLOR_PATCHBAY_PORTSET,"PortSet"); - UI_COLOR_CONFIG(GUI_COLOR_PATCHBAY_PORT,"Port"); - UI_COLOR_CONFIG(GUI_COLOR_PATCHBAY_PORT_HIDDEN,"Port (hidden/unavailable)"); - UI_COLOR_CONFIG(GUI_COLOR_PATCHBAY_CONNECTION,"Connection (selected)"); - UI_COLOR_CONFIG(GUI_COLOR_PATCHBAY_CONNECTION_BG,"Connection (other)"); + if (ImGui::TreeNode(_("Patchbay"))) { + UI_COLOR_CONFIG(GUI_COLOR_PATCHBAY_PORTSET,_("PortSet")); + UI_COLOR_CONFIG(GUI_COLOR_PATCHBAY_PORT,_("Port")); + UI_COLOR_CONFIG(GUI_COLOR_PATCHBAY_PORT_HIDDEN,_("Port (hidden/unavailable)")); + UI_COLOR_CONFIG(GUI_COLOR_PATCHBAY_CONNECTION,_("Connection (selected)")); + UI_COLOR_CONFIG(GUI_COLOR_PATCHBAY_CONNECTION_BG,_("Connection (other)")); ImGui::TreePop(); } - if (ImGui::TreeNode("Memory Composition")) { - UI_COLOR_CONFIG(GUI_COLOR_MEMORY_BG,"Background"); - UI_COLOR_CONFIG(GUI_COLOR_MEMORY_DATA,"Waveform data"); - UI_COLOR_CONFIG(GUI_COLOR_MEMORY_FREE,"Unknown"); - //UI_COLOR_CONFIG(GUI_COLOR_MEMORY_PADDING,""); - UI_COLOR_CONFIG(GUI_COLOR_MEMORY_RESERVED,"Reserved"); - UI_COLOR_CONFIG(GUI_COLOR_MEMORY_SAMPLE,"Sample"); - UI_COLOR_CONFIG(GUI_COLOR_MEMORY_SAMPLE_ALT1,"Sample (alternate 1)"); - UI_COLOR_CONFIG(GUI_COLOR_MEMORY_SAMPLE_ALT2,"Sample (alternate 2)"); - UI_COLOR_CONFIG(GUI_COLOR_MEMORY_SAMPLE_ALT3,"Sample (alternate 3)"); - UI_COLOR_CONFIG(GUI_COLOR_MEMORY_WAVE_RAM,"Wave RAM"); - UI_COLOR_CONFIG(GUI_COLOR_MEMORY_WAVE_STATIC,"Wavetable (static)"); - UI_COLOR_CONFIG(GUI_COLOR_MEMORY_ECHO,"Echo buffer"); - UI_COLOR_CONFIG(GUI_COLOR_MEMORY_N163_LOAD,"Namco 163 load pos"); - UI_COLOR_CONFIG(GUI_COLOR_MEMORY_N163_PLAY,"Namco 163 play pos"); - UI_COLOR_CONFIG(GUI_COLOR_MEMORY_BANK0,"Sample (bank 0)"); - UI_COLOR_CONFIG(GUI_COLOR_MEMORY_BANK1,"Sample (bank 1)"); - UI_COLOR_CONFIG(GUI_COLOR_MEMORY_BANK2,"Sample (bank 2)"); - UI_COLOR_CONFIG(GUI_COLOR_MEMORY_BANK3,"Sample (bank 3)"); - UI_COLOR_CONFIG(GUI_COLOR_MEMORY_BANK4,"Sample (bank 4)"); - UI_COLOR_CONFIG(GUI_COLOR_MEMORY_BANK5,"Sample (bank 5)"); - UI_COLOR_CONFIG(GUI_COLOR_MEMORY_BANK6,"Sample (bank 6)"); - UI_COLOR_CONFIG(GUI_COLOR_MEMORY_BANK7,"Sample (bank 7)"); + if (ImGui::TreeNode(_("Memory Composition"))) { + UI_COLOR_CONFIG(GUI_COLOR_MEMORY_BG,_("Background")); + UI_COLOR_CONFIG(GUI_COLOR_MEMORY_DATA,_("Waveform data")); + UI_COLOR_CONFIG(GUI_COLOR_MEMORY_FREE,_("Unknown")); + //UI_COLOR_CONFIG(GUI_COLOR_MEMORY_PADDING,_("")); + UI_COLOR_CONFIG(GUI_COLOR_MEMORY_RESERVED,_("Reserved")); + UI_COLOR_CONFIG(GUI_COLOR_MEMORY_SAMPLE,_("Sample")); + UI_COLOR_CONFIG(GUI_COLOR_MEMORY_SAMPLE_ALT1,_("Sample (alternate 1)")); + UI_COLOR_CONFIG(GUI_COLOR_MEMORY_SAMPLE_ALT2,_("Sample (alternate 2)")); + UI_COLOR_CONFIG(GUI_COLOR_MEMORY_SAMPLE_ALT3,_("Sample (alternate 3)")); + UI_COLOR_CONFIG(GUI_COLOR_MEMORY_WAVE_RAM,_("Wave RAM")); + UI_COLOR_CONFIG(GUI_COLOR_MEMORY_WAVE_STATIC,_("Wavetable (static)")); + UI_COLOR_CONFIG(GUI_COLOR_MEMORY_ECHO,_("Echo buffer")); + UI_COLOR_CONFIG(GUI_COLOR_MEMORY_N163_LOAD,_("Namco 163 load pos")); + UI_COLOR_CONFIG(GUI_COLOR_MEMORY_N163_PLAY,_("Namco 163 play pos")); + UI_COLOR_CONFIG(GUI_COLOR_MEMORY_BANK0,_("Sample (bank 0)")); + UI_COLOR_CONFIG(GUI_COLOR_MEMORY_BANK1,_("Sample (bank 1)")); + UI_COLOR_CONFIG(GUI_COLOR_MEMORY_BANK2,_("Sample (bank 2)")); + UI_COLOR_CONFIG(GUI_COLOR_MEMORY_BANK3,_("Sample (bank 3)")); + UI_COLOR_CONFIG(GUI_COLOR_MEMORY_BANK4,_("Sample (bank 4)")); + UI_COLOR_CONFIG(GUI_COLOR_MEMORY_BANK5,_("Sample (bank 5)")); + UI_COLOR_CONFIG(GUI_COLOR_MEMORY_BANK6,_("Sample (bank 6)")); + UI_COLOR_CONFIG(GUI_COLOR_MEMORY_BANK7,_("Sample (bank 7)")); ImGui::TreePop(); } - if (ImGui::TreeNode("Log Viewer")) { - UI_COLOR_CONFIG(GUI_COLOR_LOGLEVEL_ERROR,"Log level: Error"); - UI_COLOR_CONFIG(GUI_COLOR_LOGLEVEL_WARNING,"Log level: Warning"); - UI_COLOR_CONFIG(GUI_COLOR_LOGLEVEL_INFO,"Log level: Info"); - UI_COLOR_CONFIG(GUI_COLOR_LOGLEVEL_DEBUG,"Log level: Debug"); - UI_COLOR_CONFIG(GUI_COLOR_LOGLEVEL_TRACE,"Log level: Trace/Verbose"); + if (ImGui::TreeNode(_("Log Viewer"))) { + UI_COLOR_CONFIG(GUI_COLOR_LOGLEVEL_ERROR,_("Log level: Error")); + UI_COLOR_CONFIG(GUI_COLOR_LOGLEVEL_WARNING,_("Log level: Warning")); + UI_COLOR_CONFIG(GUI_COLOR_LOGLEVEL_INFO,_("Log level: Info")); + UI_COLOR_CONFIG(GUI_COLOR_LOGLEVEL_DEBUG,_("Log level: Debug")); + UI_COLOR_CONFIG(GUI_COLOR_LOGLEVEL_TRACE,_("Log level: Trace/Verbose")); ImGui::TreePop(); } END_SECTION; } - CONFIG_SECTION("Backup") { + CONFIG_SECTION(_("Backup")) { // SUBSECTION SETTINGS - CONFIG_SUBSECTION("Configuration"); + CONFIG_SUBSECTION(_("Configuration")); bool backupEnableB=settings.backupEnable; - if (ImGui::Checkbox("Enable backup system",&backupEnableB)) { + if (ImGui::Checkbox(_("Enable backup system"),&backupEnableB)) { settings.backupEnable=backupEnableB; settingsChanged=true; } - if (ImGui::InputInt("Interval (in seconds)",&settings.backupInterval)) { + if (ImGui::InputInt(_("Interval (in seconds)"),&settings.backupInterval)) { if (settings.backupInterval<10) settings.backupInterval=10; if (settings.backupInterval>86400) settings.backupInterval=86400; } - if (ImGui::InputInt("Backups per file",&settings.backupMaxCopies)) { + if (ImGui::InputInt(_("Backups per file"),&settings.backupMaxCopies)) { if (settings.backupMaxCopies<1) settings.backupMaxCopies=1; if (settings.backupMaxCopies>100) settings.backupMaxCopies=100; } // SUBSECTION SETTINGS - CONFIG_SUBSECTION("Backup Management"); + CONFIG_SUBSECTION(_("Backup Management")); bool purgeDateChanged=false; ImGui::AlignTextToFramePadding(); - ImGui::Text("Purge before:"); + ImGui::Text(_("Purge before:")); ImGui::SameLine(); ImGui::SetNextItemWidth(60.0f*dpiScale); if (ImGui::InputInt("##PYear",&purgeYear,0,0)) purgeDateChanged=true; @@ -4289,40 +4350,40 @@ void FurnaceGUI::drawSettings() { } ImGui::SameLine(); - if (ImGui::Button("Go##PDate")) { + if (ImGui::Button(_("Go##PDate"))) { purgeBackups(purgeYear,purgeMonth,purgeDay); } backupEntryLock.lock(); ImGui::AlignTextToFramePadding(); if (totalBackupSize>=(1ULL<<50ULL)) { - ImGui::Text("%" PRIu64 "PB used",totalBackupSize>>50); + ImGui::Text(_("%" PRIu64 "PB used"),totalBackupSize>>50); } else if (totalBackupSize>=(1ULL<<40ULL)) { - ImGui::Text("%" PRIu64 "TB used",totalBackupSize>>40); + ImGui::Text(_("%" PRIu64 "TB used"),totalBackupSize>>40); } else if (totalBackupSize>=(1ULL<<30ULL)) { - ImGui::Text("%" PRIu64 "GB used",totalBackupSize>>30); + ImGui::Text(_("%" PRIu64 "GB used"),totalBackupSize>>30); } else if (totalBackupSize>=(1ULL<<20ULL)) { - ImGui::Text("%" PRIu64 "MB used",totalBackupSize>>20); + ImGui::Text(_("%" PRIu64 "MB used"),totalBackupSize>>20); } else if (totalBackupSize>=(1ULL<<10ULL)) { - ImGui::Text("%" PRIu64 "KB used",totalBackupSize>>10); + ImGui::Text(_("%" PRIu64 "KB used"),totalBackupSize>>10); } else { - ImGui::Text("%" PRIu64 " bytes used",totalBackupSize); + ImGui::Text(_("%" PRIu64 " bytes used"),totalBackupSize); } ImGui::SameLine(); - if (ImGui::Button("Refresh")) { + if (ImGui::Button(_("Refresh"))) { refreshBackups=true; } ImGui::SameLine(); - if (ImGui::Button("Delete all")) { + if (ImGui::Button(_("Delete all"))) { purgeBackups(0,0,0); } if (ImGui::BeginTable("BackupList",3,ImGuiTableFlags_ScrollY|ImGuiTableFlags_Borders)) { - ImGui::TableSetupColumn("Name",ImGuiTableColumnFlags_WidthStretch,0.6f); - ImGui::TableSetupColumn("Size",ImGuiTableColumnFlags_WidthStretch,0.15f); - ImGui::TableSetupColumn("Latest",ImGuiTableColumnFlags_WidthStretch,0.25f); + ImGui::TableSetupColumn(_("Name"),ImGuiTableColumnFlags_WidthStretch,0.6f); + ImGui::TableSetupColumn(_("Size"),ImGuiTableColumnFlags_WidthStretch,0.15f); + ImGui::TableSetupColumn(_("Latest"),ImGuiTableColumnFlags_WidthStretch,0.25f); ImGui::TableHeadersRow(); @@ -4332,17 +4393,17 @@ void FurnaceGUI::drawSettings() { ImGui::TextUnformatted(i.name.c_str()); ImGui::TableNextColumn(); if (i.size>=(1ULL<<50ULL)) { - ImGui::Text("%" PRIu64 "P",i.size>>50); + ImGui::Text(_("%" PRIu64 "P"),i.size>>50); } else if (i.size>=(1ULL<<40ULL)) { - ImGui::Text("%" PRIu64 "T",i.size>>40); + ImGui::Text(_("%" PRIu64 "T"),i.size>>40); } else if (i.size>=(1ULL<<30ULL)) { - ImGui::Text("%" PRIu64 "G",i.size>>30); + ImGui::Text(_("%" PRIu64 "G"),i.size>>30); } else if (i.size>=(1ULL<<20ULL)) { - ImGui::Text("%" PRIu64 "M",i.size>>20); + ImGui::Text(_("%" PRIu64 "M"),i.size>>20); } else if (i.size>=(1ULL<<10ULL)) { - ImGui::Text("%" PRIu64 "K",i.size>>10); + ImGui::Text(_("%" PRIu64 "K"),i.size>>10); } else { - ImGui::Text("%" PRIu64 "",i.size); + ImGui::Text(_("%" PRIu64 ""),i.size); } ImGui::TableNextColumn(); ImGui::Text("%d-%02d-%02d",i.lastEntryTime.tm_year+1900,i.lastEntryTime.tm_mon+1,i.lastEntryTime.tm_mday); @@ -4466,15 +4527,15 @@ void FurnaceGUI::drawSettings() { // "Power of the Chip" - enables options for multi-threaded audio // "btcdbcb" - use modern UI padding // "????" - enables stuff - CONFIG_SECTION("Cheat Codes") { + CONFIG_SECTION(_("Cheat Codes")) { // SUBSECTION ENTER CODE: - CONFIG_SUBSECTION("Enter code:"); + CONFIG_SUBSECTION(_("Enter code:")); ImGui::InputText("##CheatCode",&mmlString[31]); - if (ImGui::Button("Submit")) { + if (ImGui::Button(_("Submit"))) { unsigned int checker=0x11111111; unsigned int checker1=0; int index=0; - mmlString[30]="invalid code"; + mmlString[30]=_("invalid code"); for (char& i: mmlString[31]) { checker^=((unsigned int)i)<switchMaster(coresChanged)) { - showError("could not initialize audio!"); + showError(_("could not initialize audio!")); } ImGui::GetIO().Fonts->Clear(); @@ -5616,7 +5681,7 @@ void FurnaceGUI::commitSettings() { if (rend) rend->destroyFontsTexture(); if (!ImGui::GetIO().Fonts->Build()) { logE("error while building font atlas!"); - showError("error while loading fonts! please check your settings."); + showError(_("error while loading fonts! please check your settings.")); ImGui::GetIO().Fonts->Clear(); mainFont=ImGui::GetIO().Fonts->AddFontDefault(); patFont=mainFont; @@ -5744,7 +5809,7 @@ bool FurnaceGUI::importLayout(String path) { if (len<1) { if (len==0) { logE("that file is empty!"); - lastError="file is empty"; + lastError=_("file is empty"); } else { perror("tell error"); } @@ -5753,14 +5818,14 @@ bool FurnaceGUI::importLayout(String path) { } if (fseek(f,0,SEEK_SET)<0) { perror("size error"); - lastError=fmt::sprintf("on get size: %s",strerror(errno)); + lastError=fmt::sprintf(_("on get size: %s"),strerror(errno)); fclose(f); return false; } pendingLayoutImport=new unsigned char[len]; if (fread(pendingLayoutImport,1,(size_t)len,f)!=(size_t)len) { perror("read error"); - lastError=fmt::sprintf("on read: %s",strerror(errno)); + lastError=fmt::sprintf(_("on read: %s"),strerror(errno)); fclose(f); delete[] pendingLayoutImport; return false; @@ -5795,7 +5860,7 @@ bool FurnaceGUI::importConfig(String path) { DivConfig& conf=e->getConfObject(); conf.clear(); if (!conf.loadFromFile(path.c_str(),false,false)) { - showError(fmt::sprintf("error while loading config! (%s)",strerror(errno))); + showError(fmt::sprintf(_("error while loading config! (%s)"),strerror(errno))); conf=prevConf; return false; } @@ -6371,7 +6436,223 @@ void FurnaceGUI::applyUISettings(bool updateFonts) { // set to 800 for now due to problems with unifont - static const ImWchar upTo800[]={0x20,0x7e,0xa0,0x800,0}; + static const ImWchar upTo800[]={ + // base + 0x20,0x7e,0xa0,0x800, + // for "Display characters" and language choices + 0x107, 0x107, + 0x10d, 0x10d, + 0x131, 0x131, + 0x142, 0x142, + 0x15f, 0x15f, + 0x17c, 0x17c, + 0x420, 0x420, + 0x423, 0x423, + 0x430, 0x430, + 0x431, 0x431, + 0x432, 0x432, + 0x433, 0x433, + 0x435, 0x435, + 0x437, 0x437, + 0x438, 0x438, + 0x439, 0x439, + 0x43a, 0x43a, + 0x43b, 0x43b, + 0x43c, 0x43c, + 0x43d, 0x43d, + 0x43e, 0x43e, + 0x43f, 0x43f, + 0x440, 0x440, + 0x441, 0x441, + 0x442, 0x442, + 0x443, 0x443, + 0x446, 0x446, + 0x447, 0x447, + 0x448, 0x448, + 0x449, 0x449, + 0x44b, 0x44b, + 0x44c, 0x44c, + 0x44d, 0x44d, + 0x44f, 0x44f, + 0x456, 0x456, + 0x457, 0x457, + 0x540, 0x540, + 0x561, 0x561, + 0x565, 0x565, + 0x575, 0x575, + 0x576, 0x576, + 0x580, 0x580, + 0xe17, 0xe17, + 0xe22, 0xe22, + 0xe44, 0xe44, + 0x3001, 0x3001, + 0x3002, 0x3002, + 0x3042, 0x3042, + 0x3044, 0x3044, + 0x3048, 0x3048, + 0x304c, 0x304c, + 0x304f, 0x304f, + 0x3053, 0x3053, + 0x3055, 0x3055, + 0x3059, 0x3059, + 0x3060, 0x3060, + 0x3066, 0x3066, + 0x3067, 0x3067, + 0x306a, 0x306a, + 0x306b, 0x306b, + 0x306e, 0x306e, + 0x306f, 0x306f, + 0x307e, 0x307e, + 0x307f, 0x307f, + 0x308a, 0x308a, + 0x308b, 0x308b, + 0x308c, 0x308c, + 0x30a2, 0x30a2, + 0x30a3, 0x30a3, + 0x30a4, 0x30a4, + 0x30a9, 0x30a9, + 0x30aa, 0x30aa, + 0x30af, 0x30af, + 0x30b0, 0x30b0, + 0x30b7, 0x30b7, + 0x30b9, 0x30b9, + 0x30c0, 0x30c0, + 0x30c3, 0x30c3, + 0x30c8, 0x30c8, + 0x30ca, 0x30ca, + 0x30d5, 0x30d5, + 0x30d7, 0x30d7, + 0x30df, 0x30df, + 0x30e1, 0x30e1, + 0x30e2, 0x30e2, + 0x30e7, 0x30e7, + 0x30e9, 0x30e9, + 0x30ea, 0x30ea, + 0x30f3, 0x30f3, + 0x4e00, 0x4e00, + 0x4e2a, 0x4e2a, + 0x4e34, 0x4e34, + 0x4e4b, 0x4e4b, + 0x4f53, 0x4f53, + 0x4f60, 0x4f60, + 0x4fdd, 0x4fdd, + 0x500b, 0x500b, + 0x518d, 0x518d, + 0x51b3, 0x51b3, + 0x5206, 0x5206, + 0x5207, 0x5207, + 0x524d, 0x524d, + 0x52a0, 0x52a0, + 0x52a8, 0x52a8, + 0x52d5, 0x52d5, + 0x5341, 0x5341, + 0x5408, 0x5408, + 0x540e, 0x540e, + 0x542f, 0x542f, + 0x555f, 0x555f, + 0x5728, 0x5728, + 0x5834, 0x5834, + 0x591f, 0x591f, + 0x5920, 0x5920, + 0x5b57, 0x5b57, + 0x5b58, 0x5b58, + 0x5b9a, 0x5b9a, + 0x5b9e, 0x5b9e, + 0x5b9f, 0x5b9f, + 0x5be6, 0x5be6, + 0x6001, 0x6001, + 0x614b, 0x614b, + 0x65b9, 0x65b9, + 0x65e5, 0x65e5, + 0x65f6, 0x65f6, + 0x662f, 0x662f, + 0x663e, 0x663e, + 0x6642, 0x6642, + 0x66ff, 0x66ff, + 0x6709, 0x6709, + 0x672c, 0x672c, + 0x6848, 0x6848, + 0x6b64, 0x6b64, + 0x6c7a, 0x6c7a, + 0x73b0, 0x73b0, + 0x73fe, 0x73fe, + 0x7684, 0x7684, + 0x786e, 0x786e, + 0x78ba, 0x78ba, + 0x7b56, 0x7b56, + 0x81e8, 0x81e8, + 0x88c5, 0x88c5, + 0x89e3, 0x89e3, + 0x8a2d, 0x8a2d, + 0x8a9e, 0x8a9e, + 0x8acb, 0x8acb, + 0x8bbe, 0x8bbe, + 0x8bf7, 0x8bf7, + 0x8db3, 0x8db3, + 0x8f09, 0x8f09, + 0x8f7d, 0x8f7d, + 0x8fd9, 0x8fd9, + 0x9019, 0x9019, + 0x986f, 0x986f, + 0x9ad4, 0x9ad4, + 0xac00, 0xac00, + 0xacbd, 0xacbd, + 0xad6c, 0xad6c, + 0xad6d, 0xad6d, + 0xadf8, 0xadf8, + 0xae00, 0xae00, + 0xae4c, 0xae4c, + 0xaf34, 0xaf34, + 0xb2c8, 0xb2c8, + 0xb2e4, 0xb2e4, + 0xb3d9, 0xb3d9, + 0xb420, 0xb420, + 0xb54c, 0xb54c, + 0xb77c, 0xb77c, + 0xb798, 0xb798, + 0xb824, 0xb824, + 0xb8e8, 0xb8e8, + 0xb97c, 0xb97c, + 0xb9ac, 0xb9ac, + 0xb9cc, 0xb9cc, + 0xba54, 0xba54, + 0xba74, 0xba74, + 0xbaa8, 0xbaa8, + 0xbd84, 0xbd84, + 0xc120, 0xc120, + 0xc124, 0xc124, + 0xc158, 0xc158, + 0xc194, 0xc194, + 0xc2a4, 0xc2a4, + 0xc2dc, 0xc2dc, + 0xc2ed, 0xc2ed, + 0xc544, 0xc544, + 0xc57c, 0xc57c, + 0xc5b4, 0xc5b4, + 0xc5d0, 0xc5d0, + 0xc624, 0xc624, + 0xc635, 0xc635, + 0xc6a9, 0xc6a9, + 0xc6b0, 0xc6b0, + 0xc740, 0xc740, + 0xc744, 0xc744, + 0xc774, 0xc774, + 0xc784, 0xc784, + 0xc785, 0xc785, + 0xc791, 0xc791, + 0xc801, 0xc801, + 0xc815, 0xc815, + 0xc9c0, 0xc9c0, + 0xcda9, 0xcda9, + 0xd0dd, 0xd0dd, + 0xd2c0, 0xd2c0, + 0xd53d, 0xd53d, + 0xd558, 0xd558, + 0xd55c, 0xd55c, + 0xd569, 0xd569, + 0xd574, 0xd574, + 0xd604, 0xd604, + }; ImFontGlyphRangesBuilder range; ImVector outRange; @@ -6404,18 +6685,21 @@ void FurnaceGUI::applyUISettings(bool updateFonts) { //fontConfP.RasterizerMultiply=1.5; range.AddRanges(upTo800); - if (settings.loadJapanese) { + if (settings.loadJapanese || localeRequiresJapanese) { range.AddRanges(ImGui::GetIO().Fonts->GetGlyphRangesJapanese()); } - if (settings.loadChinese) { + if (settings.loadChinese || localeRequiresChinese) { range.AddRanges(ImGui::GetIO().Fonts->GetGlyphRangesChineseSimplifiedCommon()); } - if (settings.loadChineseTraditional) { + if (settings.loadChineseTraditional || localeRequiresChineseTrad) { range.AddRanges(ImGui::GetIO().Fonts->GetGlyphRangesChineseFull()); } - if (settings.loadKorean) { + if (settings.loadKorean || localeRequiresKorean) { range.AddRanges(ImGui::GetIO().Fonts->GetGlyphRangesKorean()); } + if (!localeExtraRanges.empty()) { + range.AddRanges(localeExtraRanges.data()); + } // I'm terribly sorry range.UsedChars[0x80>>5]=0; @@ -6479,11 +6763,19 @@ void FurnaceGUI::applyUISettings(bool updateFonts) { } } - // two fallback fonts - if (settings.loadFallback) { - mainFont=addFontZlib(font_liberationSans_compressed_data,font_liberationSans_compressed_size,MAX(1,e->getConfInt("mainFontSize",18)*dpiScale),&fc1,fontRange); - } - if (settings.loadJapanese || settings.loadChinese || settings.loadChineseTraditional || settings.loadKorean) { + // four fallback fonts + if (settings.loadJapanese || + settings.loadChinese || + settings.loadChineseTraditional || + settings.loadKorean || + localeRequiresJapanese || + localeRequiresChinese || + localeRequiresChineseTrad || + localeRequiresKorean || + settings.loadFallback) { + mainFont=addFontZlib(font_plexSans_compressed_data,font_plexSans_compressed_size,MAX(1,e->getConfInt("mainFontSize",18)*dpiScale),&fc1,fontRange); + mainFont=addFontZlib(font_plexSansJP_compressed_data,font_plexSansJP_compressed_size,MAX(1,e->getConfInt("mainFontSize",18)*dpiScale),&fc1,fontRange); + mainFont=addFontZlib(font_plexSansKR_compressed_data,font_plexSansKR_compressed_size,MAX(1,e->getConfInt("mainFontSize",18)*dpiScale),&fc1,fontRange); mainFont=addFontZlib(font_unifont_compressed_data,font_unifont_compressed_size,MAX(1,e->getConfInt("mainFontSize",18)*dpiScale),&fc1,fontRange); } @@ -6538,11 +6830,26 @@ void FurnaceGUI::applyUISettings(bool updateFonts) { } // 0x39B = Λ - static const ImWchar bigFontRange[]={0x20,0xFF,0x39b,0x39b,0}; + // Հայերեն + // 한국어 + // Русский + // č + // ไทย + static const ImWchar bigFontRange[]={0x20,0xFF,0x39b,0x39b,0x10d,0x10d,0x420,0x420,0x423,0x423,0x430,0x430,0x438,0x438,0x439,0x439,0x43a,0x43a,0x43d,0x43d,0x440,0x440,0x441,0x441,0x443,0x443,0x44c,0x44c,0x457,0x457,0x540,0x540,0x561,0x561,0x565,0x565,0x575,0x575,0x576,0x576,0x580,0x580,0xe17,0xe17,0xe22,0xe22,0xe44,0xe44,0x65e5,0x65e5,0x672c,0x672c,0x8a9e,0x8a9e,0xad6d,0xad6d,0xc5b4,0xc5b4,0xd55c,0xd55c,0}; if ((bigFont=addFontZlib(font_plexSans_compressed_data,font_plexSans_compressed_size,MAX(1,40*dpiScale),&fontConfB,bigFontRange))==NULL) { logE("could not load big UI font!"); } + fontConfB.MergeMode=true; + if ((bigFont=addFontZlib(font_plexSansJP_compressed_data,font_plexSansJP_compressed_size,MAX(1,40*dpiScale),&fontConfB,bigFontRange))==NULL) { + logE("could not load big UI font (japanese)!"); + } + if ((bigFont=addFontZlib(font_plexSansKR_compressed_data,font_plexSansKR_compressed_size,MAX(1,40*dpiScale),&fontConfB,bigFontRange))==NULL) { + logE("could not load big UI font (korean)!"); + } + if ((bigFont=addFontZlib(font_unifont_compressed_data,font_unifont_compressed_size,MAX(1,40*dpiScale),&fontConfB,bigFontRange))==NULL) { + logE("could not load big UI font (fallback)!"); + } if (settings.mainFontSize==settings.headFontSize && settings.headFont<5 && builtinFont[settings.headFont]==builtinFont[settings.mainFont]) { logD("using main font for header font."); @@ -6593,6 +6900,31 @@ void FurnaceGUI::applyUISettings(bool updateFonts) { mainFont->EllipsisCharCount=3; } + + ImGuiFileDialog::Instance()->okButtonString=_("OK"); + ImGuiFileDialog::Instance()->cancelButtonString=_("Cancel"); + ImGuiFileDialog::Instance()->searchString=_("Search"); + ImGuiFileDialog::Instance()->dirEntryString=_("[Dir]"); + ImGuiFileDialog::Instance()->linkEntryString=_("[Link]"); + ImGuiFileDialog::Instance()->fileEntryString=_("[File]"); + ImGuiFileDialog::Instance()->fileNameString=_("Name:"); + ImGuiFileDialog::Instance()->dirNameString=_("Path:"); + ImGuiFileDialog::Instance()->buttonResetSearchString=_("Reset search"); + ImGuiFileDialog::Instance()->buttonDriveString=_("Drives"); + ImGuiFileDialog::Instance()->buttonEditPathString=_("Edit path\nYou can also right click on path buttons"); + ImGuiFileDialog::Instance()->buttonResetPathString=_("Go to home directory"); + ImGuiFileDialog::Instance()->buttonParentDirString=_("Go to parent directory"); + ImGuiFileDialog::Instance()->buttonCreateDirString=_("Create Directory"); + ImGuiFileDialog::Instance()->tableHeaderFileNameString=_("File name"); + ImGuiFileDialog::Instance()->tableHeaderFileTypeString=_("Type"); + ImGuiFileDialog::Instance()->tableHeaderFileSizeString=_("Size"); + ImGuiFileDialog::Instance()->tableHeaderFileDateString=_("Date"); + ImGuiFileDialog::Instance()->OverWriteDialogTitleString=_("Warning"); + ImGuiFileDialog::Instance()->OverWriteDialogMessageString=_("The file you selected already exists! Would you like to overwrite it?"); + ImGuiFileDialog::Instance()->OverWriteDialogConfirmButtonString=_("Yes"); + ImGuiFileDialog::Instance()->OverWriteDialogCancelButtonString=_("No"); + ImGuiFileDialog::Instance()->DateTimeFormat=_("%Y/%m/%d %H:%M"); + ImGuiFileDialog::Instance()->SetFileStyle(IGFD_FileStyleByTypeDir,"",uiColors[GUI_COLOR_FILE_DIR],ICON_FA_FOLDER_O); ImGuiFileDialog::Instance()->SetFileStyle(IGFD_FileStyleByTypeFile,"",uiColors[GUI_COLOR_FILE_OTHER],ICON_FA_FILE_O); ImGuiFileDialog::Instance()->SetFileStyle(IGFD_FileStyleByExtension,".fur",uiColors[GUI_COLOR_FILE_SONG_NATIVE],ICON_FA_FILE); diff --git a/src/gui/songInfo.cpp b/src/gui/songInfo.cpp index 5f97360ef..e48e17ede 100644 --- a/src/gui/songInfo.cpp +++ b/src/gui/songInfo.cpp @@ -29,7 +29,7 @@ void FurnaceGUI::drawSongInfo(bool asChild) { nextWindow=GUI_WINDOW_NOTHING; } if (!songInfoOpen && !asChild) return; - bool began=asChild?ImGui::BeginChild("Song Info##Song Information"):ImGui::Begin("Song Info##Song Information",&songInfoOpen,globalWinFlags); + bool began=asChild?ImGui::BeginChild("Song Info##Song Information"):ImGui::Begin("Song Info##Song Information",&songInfoOpen,globalWinFlags,_("Song Info##Song Information")); if (began) { if (ImGui::BeginTable("NameAuthor",2,ImGuiTableFlags_SizingStretchProp)) { ImGui::TableSetupColumn("c0",ImGuiTableColumnFlags_WidthFixed,0.0); @@ -37,7 +37,7 @@ void FurnaceGUI::drawSongInfo(bool asChild) { ImGui::TableNextRow(); ImGui::TableNextColumn(); ImGui::AlignTextToFramePadding(); - ImGui::Text("Name"); + ImGui::Text(_("Name")); ImGui::TableNextColumn(); float avail=ImGui::GetContentRegionAvail().x; ImGui::SetNextItemWidth(avail); @@ -47,7 +47,7 @@ void FurnaceGUI::drawSongInfo(bool asChild) { ImGui::TableNextRow(); ImGui::TableNextColumn(); ImGui::AlignTextToFramePadding(); - ImGui::Text("Author"); + ImGui::Text(_("Author")); ImGui::TableNextColumn(); ImGui::SetNextItemWidth(avail); if (ImGui::InputText("##Author",&e->song.author,ImGuiInputTextFlags_UndoRedo)) { @@ -57,7 +57,7 @@ void FurnaceGUI::drawSongInfo(bool asChild) { ImGui::TableNextRow(); ImGui::TableNextColumn(); ImGui::AlignTextToFramePadding(); - ImGui::Text("Album"); + ImGui::Text(_("Album")); ImGui::TableNextColumn(); ImGui::SetNextItemWidth(avail); if (ImGui::InputText("##Category",&e->song.category,ImGuiInputTextFlags_UndoRedo)) { @@ -66,7 +66,7 @@ void FurnaceGUI::drawSongInfo(bool asChild) { ImGui::TableNextRow(); ImGui::TableNextColumn(); ImGui::AlignTextToFramePadding(); - ImGui::Text("System"); + ImGui::Text(_("System")); ImGui::TableNextColumn(); ImGui::SetNextItemWidth(MAX(16.0f*dpiScale,avail-autoButtonSize-ImGui::GetStyle().ItemSpacing.x)); if (ImGui::InputText("##SystemName",&e->song.systemName,ImGuiInputTextFlags_UndoRedo)) { @@ -76,7 +76,7 @@ void FurnaceGUI::drawSongInfo(bool asChild) { } ImGui::SameLine(); pushToggleColors(e->song.autoSystem); - if (ImGui::Button("Auto")) { + if (ImGui::Button(_("Auto"))) { e->song.autoSystem=!e->song.autoSystem; if (e->song.autoSystem) { autoDetectSystem(); @@ -97,7 +97,7 @@ void FurnaceGUI::drawSongInfo(bool asChild) { ImGui::TableNextRow(); ImGui::TableNextColumn(); ImGui::AlignTextToFramePadding(); - ImGui::Text("Tuning (A-4)"); + ImGui::Text(_("Tuning (A-4)")); ImGui::TableNextColumn(); float tune=e->song.tuning; float avail=ImGui::GetContentRegionAvail().x; diff --git a/src/gui/songNotes.cpp b/src/gui/songNotes.cpp index e45ddf331..cf55b7aef 100644 --- a/src/gui/songNotes.cpp +++ b/src/gui/songNotes.cpp @@ -29,7 +29,7 @@ void FurnaceGUI::drawNotes() { nextWindow=GUI_WINDOW_NOTHING; } if (!notesOpen) return; - if (ImGui::Begin("Song Comments",¬esOpen,globalWinFlags)) { + if (ImGui::Begin("Song Comments",¬esOpen,globalWinFlags,_("Song Comments"))) { if (ImGui::InputTextMultiline("##SongNotes",&e->song.notes,ImGui::GetContentRegionAvail(),ImGuiInputTextFlags_UndoRedo)) { MARK_MODIFIED; } diff --git a/src/gui/speed.cpp b/src/gui/speed.cpp index df0265741..008128e3d 100644 --- a/src/gui/speed.cpp +++ b/src/gui/speed.cpp @@ -29,7 +29,7 @@ void FurnaceGUI::drawSpeed(bool asChild) { nextWindow=GUI_WINDOW_NOTHING; } if (!speedOpen && !asChild) return; - bool began=asChild?ImGui::BeginChild("Speed"):ImGui::Begin("Speed",&speedOpen,globalWinFlags); + bool began=asChild?ImGui::BeginChild("Speed"):ImGui::Begin("Speed",&speedOpen,globalWinFlags,_("Speed")); if (began) { if (ImGui::BeginTable("Props",2,ImGuiTableFlags_SizingStretchProp)) { ImGui::TableSetupColumn("c0",ImGuiTableColumnFlags_WidthFixed,0.0); @@ -38,14 +38,14 @@ void FurnaceGUI::drawSpeed(bool asChild) { ImGui::TableNextRow(); ImGui::TableNextColumn(); ImGui::AlignTextToFramePadding(); - if (ImGui::SmallButton(tempoView?"Base Tempo##TempoOrHz":"Tick Rate##TempoOrHz")) { + if (ImGui::SmallButton(tempoView?_("Base Tempo##TempoOrHz"):_("Tick Rate##TempoOrHz"))) { tempoView=!tempoView; } if (ImGui::IsItemHovered()) { if (tempoView) { - ImGui::SetTooltip("click to display tick rate"); + ImGui::SetTooltip(_("click to display tick rate")); } else { - ImGui::SetTooltip("click to display base tempo"); + ImGui::SetTooltip(_("click to display base tempo")); } } ImGui::TableNextColumn(); @@ -77,17 +77,17 @@ void FurnaceGUI::drawSpeed(bool asChild) { ImGui::TableNextColumn(); ImGui::AlignTextToFramePadding(); if (keepGrooveAlive || e->curSubSong->speeds.len>2) { - if (ImGui::SmallButton("Groove")) { + if (ImGui::SmallButton(_("Groove"))) { e->lockEngine([this]() { e->curSubSong->speeds.len=1; }); if (e->isPlaying()) play(); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("click for one speed"); + ImGui::SetTooltip(_("click for one speed")); } } else if (e->curSubSong->speeds.len>1) { - if (ImGui::SmallButton("Speeds")) { + if (ImGui::SmallButton(_("Speeds"))) { e->lockEngine([this]() { e->curSubSong->speeds.len=4; e->curSubSong->speeds.val[2]=e->curSubSong->speeds.val[0]; @@ -96,10 +96,10 @@ void FurnaceGUI::drawSpeed(bool asChild) { if (e->isPlaying()) play(); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("click for groove pattern"); + ImGui::SetTooltip(_("click for groove pattern")); } } else { - if (ImGui::SmallButton("Speed")) { + if (ImGui::SmallButton(_("Speed"))) { e->lockEngine([this]() { e->curSubSong->speeds.len=2; e->curSubSong->speeds.val[1]=e->curSubSong->speeds.val[0]; @@ -107,7 +107,7 @@ void FurnaceGUI::drawSpeed(bool asChild) { if (e->isPlaying()) play(); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("click for two (alternating) speeds"); + ImGui::SetTooltip(_("click for two (alternating) speeds")); } } ImGui::TableNextColumn(); @@ -165,7 +165,7 @@ void FurnaceGUI::drawSpeed(bool asChild) { ImGui::TableNextRow(); ImGui::TableNextColumn(); ImGui::AlignTextToFramePadding(); - ImGui::Text("Virtual Tempo"); + ImGui::Text(_("Virtual Tempo")); ImGui::TableNextColumn(); ImGui::SetNextItemWidth(halfAvail); if (ImGui::InputScalar("##VTempoN",ImGuiDataType_S16,&e->curSubSong->virtualTempoN,&_ONE,&_TEN)) { MARK_MODIFIED @@ -174,7 +174,7 @@ void FurnaceGUI::drawSpeed(bool asChild) { e->virtualTempoChanged(); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Numerator"); + ImGui::SetTooltip(_("Numerator")); } ImGui::SameLine(); ImGui::SetNextItemWidth(halfAvail); @@ -184,13 +184,13 @@ void FurnaceGUI::drawSpeed(bool asChild) { e->virtualTempoChanged(); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Denominator (set to base tempo)"); + ImGui::SetTooltip(_("Denominator (set to base tempo)")); } ImGui::TableNextRow(); ImGui::TableNextColumn(); ImGui::AlignTextToFramePadding(); - ImGui::Text("Divider"); + ImGui::Text(_("Divider")); ImGui::TableNextColumn(); ImGui::SetNextItemWidth(halfAvail); unsigned char realTB=e->curSubSong->timeBase+1; @@ -205,7 +205,7 @@ void FurnaceGUI::drawSpeed(bool asChild) { ImGui::TableNextRow(); ImGui::TableNextColumn(); ImGui::AlignTextToFramePadding(); - ImGui::Text("Highlight"); + ImGui::Text(_("Highlight")); ImGui::TableNextColumn(); ImGui::SetNextItemWidth(halfAvail); if (ImGui::InputScalar("##Highlight1",ImGuiDataType_U8,&e->curSubSong->hilightA,&_ONE,&_FOUR)) { @@ -228,7 +228,7 @@ void FurnaceGUI::drawSpeed(bool asChild) { ImGui::TableNextRow(); ImGui::TableNextColumn(); ImGui::AlignTextToFramePadding(); - ImGui::Text("Pattern Length"); + ImGui::Text(_("Pattern Length")); ImGui::TableNextColumn(); float avail=ImGui::GetContentRegionAvail().x; ImGui::SetNextItemWidth(avail); @@ -242,7 +242,7 @@ void FurnaceGUI::drawSpeed(bool asChild) { ImGui::TableNextRow(); ImGui::TableNextColumn(); ImGui::AlignTextToFramePadding(); - ImGui::Text("Song Length"); + ImGui::Text(_("Song Length")); ImGui::TableNextColumn(); ImGui::SetNextItemWidth(avail); int ordLen=e->curSubSong->ordersLen; diff --git a/src/gui/spoiler.cpp b/src/gui/spoiler.cpp index 74026a6df..09c481484 100644 --- a/src/gui/spoiler.cpp +++ b/src/gui/spoiler.cpp @@ -27,9 +27,9 @@ void FurnaceGUI::drawSpoiler() { nextWindow=GUI_WINDOW_NOTHING; } if (!spoilerOpen) return; - if (ImGui::Begin("Spoiler",&spoilerOpen,globalWinFlags|ImGuiWindowFlags_NoTitleBar|ImGuiWindowFlags_AlwaysAutoResize)) { + if (ImGui::Begin("Spoiler",&spoilerOpen,globalWinFlags|ImGuiWindowFlags_NoTitleBar|ImGuiWindowFlags_AlwaysAutoResize,_("Spoiler"))) { ImGui::PushFont(bigFont); - ImGui::Text("SPOILER"); + ImGui::Text(_("SPOILER")); ImGui::PopFont(); } if (ImGui::IsWindowFocused(ImGuiFocusedFlags_ChildWindows)) curWindow=GUI_WINDOW_SPOILER; diff --git a/src/gui/stats.cpp b/src/gui/stats.cpp index b8c719267..e9580a2eb 100644 --- a/src/gui/stats.cpp +++ b/src/gui/stats.cpp @@ -28,12 +28,12 @@ void FurnaceGUI::drawStats() { nextWindow=GUI_WINDOW_NOTHING; } if (!statsOpen) return; - if (ImGui::Begin("Statistics",&statsOpen,globalWinFlags)) { + if (ImGui::Begin("Statistics",&statsOpen,globalWinFlags,_("Statistics"))) { size_t lastProcTime=e->processTime; double maxGot=1000000000.0*(double)e->getAudioDescGot().bufsize/(double)e->getAudioDescGot().rate; String procStr=fmt::sprintf("%.1f%%",100.0*((double)lastProcTime/(double)maxGot)); ImGui::AlignTextToFramePadding(); - ImGui::Text("Audio load"); + ImGui::Text(_("Audio load")); ImGui::SameLine(); ImGui::ProgressBar((double)lastProcTime/maxGot,ImVec2(-FLT_MIN,0),procStr.c_str()); } diff --git a/src/gui/subSongs.cpp b/src/gui/subSongs.cpp index aeb91041a..fba8ddff1 100644 --- a/src/gui/subSongs.cpp +++ b/src/gui/subSongs.cpp @@ -14,12 +14,12 @@ void FurnaceGUI::drawSubSongs(bool asChild) { if (!asChild) { ImGui::SetNextWindowSizeConstraints(ImVec2(64.0f*dpiScale,32.0f*dpiScale),ImVec2(canvasW,canvasH)); } - bool began=asChild?ImGui::BeginChild("Subsongs"):ImGui::Begin("Subsongs",&subSongsOpen,globalWinFlags); + bool began=asChild?ImGui::BeginChild("Subsongs"):ImGui::Begin("Subsongs",&subSongsOpen,globalWinFlags,_("Subsongs")); if (began) { char id[1024]; ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x-ImGui::GetFrameHeightWithSpacing()*3.0f-ImGui::GetStyle().ItemSpacing.x*2.0f); if (e->curSubSong->name.empty()) { - snprintf(id,1023,"%d. ",(int)e->getCurrentSubSong()+1); + snprintf(id,1023,_("%d. "),(int)e->getCurrentSubSong()+1); } else { snprintf(id,1023,"%d. %s",(int)e->getCurrentSubSong()+1,e->curSubSong->name.c_str()); } @@ -29,7 +29,7 @@ void FurnaceGUI::drawSubSongs(bool asChild) { ImGui::TableSetupColumn("c1",ImGuiTableColumnFlags_WidthFixed); for (size_t i=0; isong.subsong.size(); i++) { if (e->song.subsong[i]->name.empty()) { - snprintf(id,1023,"%d. ",(int)i+1); + snprintf(id,1023,_("%d. "),(int)i+1); } else { snprintf(id,1023,"%d. %s",(int)i+1,e->song.subsong[i]->name.c_str()); } @@ -52,14 +52,14 @@ void FurnaceGUI::drawSubSongs(bool asChild) { e->moveSubSongUp(i); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Move up"); + ImGui::SetTooltip(_("Move up")); } ImGui::SameLine(); if (ImGui::SmallButton(ICON_FA_ARROW_DOWN "##SubDown")) { e->moveSubSongDown(i); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Move down"); + ImGui::SetTooltip(_("Move down")); } ImGui::PopID(); } @@ -70,7 +70,7 @@ void FurnaceGUI::drawSubSongs(bool asChild) { ImGui::SameLine(); if (ImGui::Button(ICON_FA_PLUS "##SubSongAdd")) { if (!e->addSubSong()) { - showError("too many subsongs!"); + showError(_("too many subsongs!")); } else { e->changeSongP(e->song.subsong.size()-1); updateScroll(0); @@ -85,12 +85,12 @@ void FurnaceGUI::drawSubSongs(bool asChild) { } } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Add"); + ImGui::SetTooltip(_("Add")); } ImGui::SameLine(); if (ImGui::Button(ICON_FA_FILES_O "##SubSongDuplicate")) { if (!e->duplicateSubSong(e->getCurrentSubSong())) { - showError("too many subsongs!"); + showError(_("too many subsongs!")); } else { e->changeSongP(e->song.subsong.size()-1); updateScroll(0); @@ -105,24 +105,24 @@ void FurnaceGUI::drawSubSongs(bool asChild) { } } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Duplicate"); + ImGui::SetTooltip(_("Duplicate")); } ImGui::SameLine(); pushDestColor(); if (ImGui::Button(ICON_FA_MINUS "##SubSongDel")) { if (e->song.subsong.size()<=1) { - showError("this is the only subsong!"); + showError(_("this is the only subsong!")); } else { - showWarning("are you sure you want to remove this subsong?",GUI_WARN_SUBSONG_DEL); + showWarning(_("are you sure you want to remove this subsong?"),GUI_WARN_SUBSONG_DEL); } } popDestColor(); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Remove"); + ImGui::SetTooltip(_("Remove")); } ImGui::AlignTextToFramePadding(); - ImGui::Text("Name"); + ImGui::Text(_("Name")); ImGui::SameLine(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); if (ImGui::InputText("##SubSongName",&e->curSubSong->name,ImGuiInputTextFlags_UndoRedo)) { diff --git a/src/gui/sysConf.cpp b/src/gui/sysConf.cpp index 6bcb95343..25ffc4940 100644 --- a/src/gui/sysConf.cpp +++ b/src/gui/sysConf.cpp @@ -46,7 +46,7 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl bool fbAllOps=flags.getBool("fbAllOps",false); bool msw=flags.getBool("msw",false); - ImGui::Text("Clock rate:"); + ImGui::Text(_("Clock rate:")); ImGui::Indent(); if (ImGui::RadioButton("NTSC (7.67MHz)",clockSel==0)) { clockSel=0; @@ -70,33 +70,33 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl } ImGui::Unindent(); - ImGui::Text("Chip type:"); + ImGui::Text(_("Chip type:")); ImGui::Indent(); - if (ImGui::RadioButton("YM3438 (9-bit DAC)",chipType==0)) { + if (ImGui::RadioButton(_("YM3438 (9-bit DAC)"),chipType==0)) { chipType=0; altered=true; } - if (ImGui::RadioButton("YM2612 (9-bit DAC with distortion)",chipType==1)) { + if (ImGui::RadioButton(_("YM2612 (9-bit DAC with distortion)"),chipType==1)) { chipType=1; altered=true; } - if (ImGui::RadioButton("YMF276 (external DAC)",chipType==2)) { + if (ImGui::RadioButton(_("YMF276 (external DAC)"),chipType==2)) { chipType=2; altered=true; } ImGui::Unindent(); if (type==DIV_SYSTEM_YM2612_EXT || type==DIV_SYSTEM_YM2612_DUALPCM_EXT || type==DIV_SYSTEM_YM2612_CSM) { - if (ImGui::Checkbox("Disable ExtCh FM macros (compatibility)",&noExtMacros)) { + if (ImGui::Checkbox(_("Disable ExtCh FM macros (compatibility)"),&noExtMacros)) { altered=true; } - if (ImGui::Checkbox("Ins change in ExtCh operator 2-4 affects FB (compatibility)",&fbAllOps)) { + if (ImGui::Checkbox(_("Ins change in ExtCh operator 2-4 affects FB (compatibility)"),&fbAllOps)) { altered=true; } } if (msw) { - if (ImGui::Checkbox("Modified sine wave (joke)",&msw)) { + if (ImGui::Checkbox(_("Modified sine wave (joke)"),&msw)) { altered=true; } } @@ -118,86 +118,86 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl bool noPhaseReset=flags.getBool("noPhaseReset",false); bool noEasyNoise=flags.getBool("noEasyNoise",false); - ImGui::Text("Clock rate:"); + ImGui::Text(_("Clock rate:")); ImGui::Indent(); - if (ImGui::RadioButton("3.58MHz (NTSC)",clockSel==0)) { + if (ImGui::RadioButton(_("3.58MHz (NTSC)"),clockSel==0)) { clockSel=0; altered=true; } - if (ImGui::RadioButton("3.55MHz (PAL)",clockSel==1)) { + if (ImGui::RadioButton(_("3.55MHz (PAL)"),clockSel==1)) { clockSel=1; altered=true; } - if (ImGui::RadioButton("4MHz (BBC Micro)",clockSel==2)) { + if (ImGui::RadioButton(_("4MHz (BBC Micro)"),clockSel==2)) { clockSel=2; altered=true; } - if (ImGui::RadioButton("1.79MHz (Half NTSC)",clockSel==3)) { + if (ImGui::RadioButton(_("1.79MHz (Half NTSC)"),clockSel==3)) { clockSel=3; altered=true; } - if (ImGui::RadioButton("3MHz (Exed Exes)",clockSel==4)) { + if (ImGui::RadioButton(_("3MHz (Exed Exes)"),clockSel==4)) { clockSel=4; altered=true; } - if (ImGui::RadioButton("2MHz (Sega System 1)",clockSel==5)) { + if (ImGui::RadioButton(_("2MHz (Sega System 1)"),clockSel==5)) { clockSel=5; altered=true; } - if (ImGui::RadioButton("447KHz (TI-99/4A)",clockSel==6)) { + if (ImGui::RadioButton(_("447KHz (TI-99/4A)"),clockSel==6)) { clockSel=6; altered=true; } ImGui::Unindent(); - ImGui::Text("Chip type:"); + ImGui::Text(_("Chip type:")); ImGui::Indent(); - if (ImGui::RadioButton("Sega VDP/Master System",chipType==0)) { + if (ImGui::RadioButton(_("Sega VDP/Master System"),chipType==0)) { chipType=0; altered=true; } - if (ImGui::RadioButton("TI SN76489",chipType==1)) { + if (ImGui::RadioButton(_("TI SN76489"),chipType==1)) { chipType=1; altered=true; } - if (ImGui::RadioButton("TI SN76489 with Atari-like short noise",chipType==2)) { + if (ImGui::RadioButton(_("TI SN76489 with Atari-like short noise"),chipType==2)) { chipType=2; altered=true; } - if (ImGui::RadioButton("Game Gear",chipType==3)) { + if (ImGui::RadioButton(_("Game Gear"),chipType==3)) { chipType=3; altered=true; } - if (ImGui::RadioButton("TI SN76489A",chipType==4)) { + if (ImGui::RadioButton(_("TI SN76489A"),chipType==4)) { chipType=4; altered=true; } - if (ImGui::RadioButton("TI SN76496",chipType==5)) { + if (ImGui::RadioButton(_("TI SN76496"),chipType==5)) { chipType=5; altered=true; } - if (ImGui::RadioButton("NCR 8496",chipType==6)) { + if (ImGui::RadioButton(_("NCR 8496"),chipType==6)) { chipType=6; altered=true; } - if (ImGui::RadioButton("Tandy PSSJ 3-voice sound",chipType==7)) { + if (ImGui::RadioButton(_("Tandy PSSJ 3-voice sound"),chipType==7)) { chipType=7; altered=true; } - if (ImGui::RadioButton("TI SN94624",chipType==8)) { + if (ImGui::RadioButton(_("TI SN94624"),chipType==8)) { chipType=8; altered=true; } - if (ImGui::RadioButton("TI SN76494",chipType==9)) { + if (ImGui::RadioButton(_("TI SN76494"),chipType==9)) { chipType=9; altered=true; } ImGui::Unindent(); - if (ImGui::Checkbox("Disable noise period change phase reset",&noPhaseReset)) { + if (ImGui::Checkbox(_("Disable noise period change phase reset"),&noPhaseReset)) { altered=true; } - if (ImGui::Checkbox("Disable easy period to note mapping on upper octaves",&noEasyNoise)) { + if (ImGui::Checkbox(_("Disable easy period to note mapping on upper octaves"),&noEasyNoise)) { altered=true; } @@ -216,19 +216,19 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl int chipType=flags.getInt("chipType",0); bool noAntiClick=flags.getBool("noAntiClick",false); - if (ImGui::Checkbox("Pseudo-PAL",&clockSel)) { + if (ImGui::Checkbox(_("Pseudo-PAL"),&clockSel)) { altered=true; } - if (ImGui::Checkbox("Disable anti-click",&noAntiClick)) { + if (ImGui::Checkbox(_("Disable anti-click"),&noAntiClick)) { altered=true; } - ImGui::Text("Chip revision:"); + ImGui::Text(_("Chip revision:")); ImGui::Indent(); - if (ImGui::RadioButton("HuC6280 (original)",chipType==0)) { + if (ImGui::RadioButton(_("HuC6280 (original)"),chipType==0)) { chipType=0; altered=true; } - if (ImGui::RadioButton("HuC6280A (SuperGrafx)",chipType==1)) { + if (ImGui::RadioButton(_("HuC6280A (SuperGrafx)"),chipType==1)) { chipType=1; altered=true; } @@ -254,64 +254,64 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl int echoResolution=flags.getInt("echoResolution",0); int echoVol=(signed char)flags.getInt("echoVol",0); - ImGui::Text("CPU rate:"); + ImGui::Text(_("CPU rate:")); ImGui::Indent(); - if (ImGui::RadioButton("6.18MHz (NTSC)",clockSel==0)) { + if (ImGui::RadioButton(_("6.18MHz (NTSC)"),clockSel==0)) { clockSel=0; altered=true; } - if (ImGui::RadioButton("5.95MHz (PAL)",clockSel==1)) { + if (ImGui::RadioButton(_("5.95MHz (PAL)"),clockSel==1)) { clockSel=1; altered=true; } ImGui::Unindent(); - ImGui::Text("Sample memory:"); + ImGui::Text(_("Sample memory:")); ImGui::Indent(); - if (ImGui::RadioButton("8K (rev A/B/E)",sampleMemSize==0)) { + if (ImGui::RadioButton(_("8K (rev A/B/E)"),sampleMemSize==0)) { sampleMemSize=0; altered=true; } - if (ImGui::RadioButton("64K (rev D/F)",sampleMemSize==1)) { + if (ImGui::RadioButton(_("64K (rev D/F)"),sampleMemSize==1)) { sampleMemSize=1; altered=true; } ImGui::Unindent(); - ImGui::Text("DAC resolution:"); + ImGui::Text(_("DAC resolution:")); ImGui::Indent(); - if (ImGui::RadioButton("16-bit (rev A/B/D/F)",pdm==0)) { + if (ImGui::RadioButton(_("16-bit (rev A/B/D/F)"),pdm==0)) { pdm=false; altered=true; } - if (ImGui::RadioButton("8-bit + TDM (rev C/E)",pdm==1)) { + if (ImGui::RadioButton(_("8-bit + TDM (rev C/E)"),pdm==1)) { pdm=true; altered=true; } ImGui::Unindent(); - if (ImGui::Checkbox("Enable echo",&echo)) { + if (ImGui::Checkbox(_("Enable echo"),&echo)) { altered=true; } - if (ImGui::Checkbox("Swap echo channels",&swapEcho)) { + if (ImGui::Checkbox(_("Swap echo channels"),&swapEcho)) { altered=true; } - ImGui::Text("Echo delay:"); + ImGui::Text(_("Echo delay:")); if (CWSliderInt("##EchoBufSize",&echoDelay,0,63)) { if (echoDelay<0) echoDelay=0; if (echoDelay>63) echoDelay=63; altered=true; } rightClickable - ImGui::Text("Echo resolution:"); + ImGui::Text(_("Echo resolution:")); if (CWSliderInt("##EchoResolution",&echoResolution,0,15)) { if (echoResolution<0) echoResolution=0; if (echoResolution>15) echoResolution=15; altered=true; } rightClickable - ImGui::Text("Echo feedback:"); + ImGui::Text(_("Echo feedback:")); if (CWSliderInt("##EchoFeedback",&echoFeedback,0,15)) { if (echoFeedback<0) echoFeedback=0; if (echoFeedback>15) echoFeedback=15; altered=true; } rightClickable - ImGui::Text("Echo volume:"); + ImGui::Text(_("Echo volume:")); if (CWSliderInt("##EchoVolume",&echoVol,-128,127)) { if (echoVol<-128) echoVol=-128; if (echoVol>127) echoVol=127; @@ -339,53 +339,53 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl bool invertWave=flags.getBool("invertWave",true); bool enoughAlready=flags.getBool("enoughAlready",false); - if (ImGui::Checkbox("Disable anti-click",&noAntiClick)) { + if (ImGui::Checkbox(_("Disable anti-click"),&noAntiClick)) { altered=true; } - ImGui::Text("Chip revision:"); + ImGui::Text(_("Chip revision:")); ImGui::Indent(); - if (ImGui::RadioButton("Original (DMG)",chipType==0)) { + if (ImGui::RadioButton(_("Original (DMG)"),chipType==0)) { chipType=0; altered=true; } - if (ImGui::RadioButton("Game Boy Color (rev C)",chipType==1)) { + if (ImGui::RadioButton(_("Game Boy Color (rev C)"),chipType==1)) { chipType=1; altered=true; } - if (ImGui::RadioButton("Game Boy Color (rev E)",chipType==2)) { + if (ImGui::RadioButton(_("Game Boy Color (rev E)"),chipType==2)) { chipType=2; altered=true; } - if (ImGui::RadioButton("Game Boy Advance",chipType==3)) { + if (ImGui::RadioButton(_("Game Boy Advance"),chipType==3)) { chipType=3; altered=true; } ImGui::Unindent(); - ImGui::Text("Wave channel orientation:"); + ImGui::Text(_("Wave channel orientation:")); if (chipType==3) { ImGui::Indent(); - if (ImGui::RadioButton("Normal",!invertWave)) { + if (ImGui::RadioButton(_("Normal"),!invertWave)) { invertWave=false; altered=true; } - if (ImGui::RadioButton("Inverted",invertWave)) { + if (ImGui::RadioButton(_("Inverted"),invertWave)) { invertWave=true; altered=true; } ImGui::Unindent(); } else { ImGui::Indent(); - if (ImGui::RadioButton("Exact data (inverted)",!invertWave)) { + if (ImGui::RadioButton(_("Exact data (inverted)"),!invertWave)) { invertWave=false; altered=true; } - if (ImGui::RadioButton("Exact output (normal)",invertWave)) { + if (ImGui::RadioButton(_("Exact output (normal)"),invertWave)) { invertWave=true; altered=true; } ImGui::Unindent(); } - if (ImGui::Checkbox("Pretty please one more compat flag when I use arpeggio and my sound length",&enoughAlready)) { + if (ImGui::Checkbox(_("Pretty please one more compat flag when I use arpeggio and my sound length"),&enoughAlready)) { altered=true; } @@ -402,7 +402,7 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl case DIV_SYSTEM_GBA_DMA: { int dacDepth=flags.getInt("dacDepth",9); - ImGui::Text("DAC bit depth (reduces output rate):"); + ImGui::Text(_("DAC bit depth (reduces output rate):")); if (CWSliderInt("##DACDepth",&dacDepth,6,9)) { if (dacDepth<6) dacDepth=6; if (dacDepth>9) dacDepth=9; @@ -423,31 +423,31 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl int dacDepth=flags.getInt("dacDepth",9); int channels=flags.getInt("channels",16); int sampRate=flags.getInt("sampRate",21845); - ImGui::Text("Volume scale:"); + ImGui::Text(_("Volume scale:")); if (CWSliderInt("##VolScale",&volScale,0,32768)) { if (volScale<0) volScale=0; if (volScale>32768) volScale=32768; altered=true; } rightClickable - ImGui::Text("Mix buffers (allows longer echo delay):"); + ImGui::Text(_("Mix buffers (allows longer echo delay):")); if (CWSliderInt("##MixBufs",&mixBufs,2,15)) { if (mixBufs<2) mixBufs=2; if (mixBufs>16) mixBufs=16; altered=true; } rightClickable - ImGui::Text("DAC bit depth (reduces output rate):"); + ImGui::Text(_("DAC bit depth (reduces output rate):")); if (CWSliderInt("##DACDepth",&dacDepth,6,9)) { if (dacDepth<6) dacDepth=6; if (dacDepth>9) dacDepth=9; altered=true; } rightClickable - ImGui::Text("Channel limit:"); + ImGui::Text(_("Channel limit:")); if (CWSliderInt("##Channels",&channels,1,16)) { if (channels<1) channels=1; if (channels>16) channels=16; altered=true; } rightClickable - ImGui::Text("Sample rate:"); + ImGui::Text(_("Sample rate:")); if (CWSliderInt("##SampRate",&sampRate,256,65536)) { if (sampRate<1) sampRate=21845; if (sampRate>65536) sampRate=65536; @@ -457,9 +457,9 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl DivPlatformGBAMinMod* dispatch=(DivPlatformGBAMinMod*)e->getDispatch(chan); if (dispatch!=NULL) { float maxCPU=dispatch->maxCPU*100; - ImGui::Text("Actual sample rate: %d Hz", dispatch->chipClock); + ImGui::Text(_("Actual sample rate: %d Hz"), dispatch->chipClock); if (maxCPU>90) ImGui::PushStyleColor(ImGuiCol_Text,uiColors[GUI_COLOR_WARNING]); - ImGui::Text("Max mixer CPU usage: %.0f%%",maxCPU); + ImGui::Text(_("Max mixer CPU usage: %.0f%%"),maxCPU); if (maxCPU>90) ImGui::PopStyleColor(); FurnaceGUI::popWarningColor(); } @@ -483,27 +483,27 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl bool noTopHatFreq=flags.getBool("noTopHatFreq",false); bool fixedAll=flags.getBool("fixedAll",true); - ImGui::Text("Clock rate:"); + ImGui::Text(_("Clock rate:")); ImGui::Indent(); - if (ImGui::RadioButton("NTSC (3.58MHz)",clockSel==0)) { + if (ImGui::RadioButton(_("NTSC (3.58MHz)"),clockSel==0)) { clockSel=0; altered=true; } - if (ImGui::RadioButton("PAL (3.55MHz)",clockSel==1)) { + if (ImGui::RadioButton(_("PAL (3.55MHz)"),clockSel==1)) { clockSel=1; altered=true; } - if (ImGui::RadioButton("Arcade (4MHz)",clockSel==2)) { + if (ImGui::RadioButton(_("Arcade (4MHz)"),clockSel==2)) { clockSel=2; altered=true; } - if (ImGui::RadioButton("Half NTSC (1.79MHz)",clockSel==3)) { + if (ImGui::RadioButton(_("Half NTSC (1.79MHz)"),clockSel==3)) { clockSel=3; altered=true; } ImGui::Unindent(); if (type!=DIV_SYSTEM_VRC7) { - ImGui::Text("Patch set:"); + ImGui::Text(_("Patch set:")); ImGui::Indent(); if (ImGui::RadioButton("Yamaha YM2413",patchSet==0)) { patchSet=0; @@ -525,10 +525,10 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl } if (type==DIV_SYSTEM_OPLL_DRUMS) { - if (ImGui::Checkbox("Ignore top/hi-hat frequency changes",&noTopHatFreq)) { + if (ImGui::Checkbox(_("Ignore top/hi-hat frequency changes"),&noTopHatFreq)) { altered=true; } - if (ImGui::Checkbox("Apply fixed frequency to all drums at once",&fixedAll)) { + if (ImGui::Checkbox(_("Apply fixed frequency to all drums at once"),&fixedAll)) { altered=true; } } @@ -550,21 +550,21 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl bool brokenPitch=flags.getBool("brokenPitch",false); ImGui::Indent(); - if (ImGui::RadioButton("NTSC/X16 (3.58MHz)",clockSel==0)) { + if (ImGui::RadioButton(_("NTSC/X16 (3.58MHz)"),clockSel==0)) { clockSel=0; altered=true; } - if (ImGui::RadioButton("PAL (3.55MHz)",clockSel==1)) { + if (ImGui::RadioButton(_("PAL (3.55MHz)"),clockSel==1)) { clockSel=1; altered=true; } - if (ImGui::RadioButton("X1/X68000 (4MHz)",clockSel==2)) { + if (ImGui::RadioButton(_("X1/X68000 (4MHz)"),clockSel==2)) { clockSel=2; altered=true; } ImGui::Unindent(); - if (ImGui::Checkbox("Broken pitch macro/slides (compatibility)",&brokenPitch)) { + if (ImGui::Checkbox(_("Broken pitch macro/slides (compatibility)"),&brokenPitch)) { altered=true; } @@ -580,11 +580,11 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl bool clockSel=flags.getInt("clockSel",0); bool brokenPitch=flags.getBool("brokenPitch",false); - if (ImGui::Checkbox("Pseudo-PAL",&clockSel)) { + if (ImGui::Checkbox(_("Pseudo-PAL"),&clockSel)) { altered=true; } - if (ImGui::Checkbox("Broken pitch macro/slides (compatibility)",&brokenPitch)) { + if (ImGui::Checkbox(_("Broken pitch macro/slides (compatibility)"),&brokenPitch)) { altered=true; } @@ -601,31 +601,31 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl int clockSel=flags.getInt("clockSel",0); bool dpcmMode=flags.getBool("dpcmMode",true); - ImGui::Text("Clock rate:"); + ImGui::Text(_("Clock rate:")); ImGui::Indent(); - if (ImGui::RadioButton("NTSC (1.79MHz)",clockSel==0)) { + if (ImGui::RadioButton(_("NTSC (1.79MHz)"),clockSel==0)) { clockSel=0; altered=true; } - if (ImGui::RadioButton("PAL (1.67MHz)",clockSel==1)) { + if (ImGui::RadioButton(_("PAL (1.67MHz)"),clockSel==1)) { clockSel=1; altered=true; } - if (ImGui::RadioButton("Dendy (1.77MHz)",clockSel==2)) { + if (ImGui::RadioButton(_("Dendy (1.77MHz)"),clockSel==2)) { clockSel=2; altered=true; } ImGui::Unindent(); - ImGui::Text("DPCM channel mode:"); + ImGui::Text(_("DPCM channel mode:")); ImGui::Indent(); - if (ImGui::RadioButton("DPCM (muffled samples; low CPU usage)",dpcmMode)) { + if (ImGui::RadioButton(_("DPCM (muffled samples; low CPU usage)"),dpcmMode)) { dpcmMode=true; altered=true; } - if (ImGui::RadioButton("PCM (crisp samples; high CPU usage)",!dpcmMode)) { + if (ImGui::RadioButton(_("PCM (crisp samples; high CPU usage)"),!dpcmMode)) { dpcmMode=false; altered=true; } @@ -644,18 +644,18 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl case DIV_SYSTEM_MMC5: { int clockSel=flags.getInt("clockSel",0); - ImGui::Text("Clock rate:"); + ImGui::Text(_("Clock rate:")); ImGui::Indent(); - if (ImGui::RadioButton("NTSC (1.79MHz)",clockSel==0)) { + if (ImGui::RadioButton(_("NTSC (1.79MHz)"),clockSel==0)) { clockSel=0; altered=true; } - if (ImGui::RadioButton("PAL (1.67MHz)",clockSel==1)) { + if (ImGui::RadioButton(_("PAL (1.67MHz)"),clockSel==1)) { clockSel=1; altered=true; } - if (ImGui::RadioButton("Dendy (1.77MHz)",clockSel==2)) { + if (ImGui::RadioButton(_("Dendy (1.77MHz)"),clockSel==2)) { clockSel=2; altered=true; } @@ -681,60 +681,60 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl int testRelease=flags.getInt("testRelease",0); int initResetTime=flags.getInt("initResetTime",2); - ImGui::Text("Clock rate:"); + ImGui::Text(_("Clock rate:")); ImGui::Indent(); - if (ImGui::RadioButton("NTSC (1.02MHz)",clockSel==0)) { + if (ImGui::RadioButton(_("NTSC (1.02MHz)"),clockSel==0)) { clockSel=0; altered=true; } - if (ImGui::RadioButton("PAL (0.99MHz)",clockSel==1)) { + if (ImGui::RadioButton(_("PAL (0.99MHz)"),clockSel==1)) { clockSel=1; altered=true; } - if (ImGui::RadioButton("SSI 2001 (0.89MHz)",clockSel==2)) { + if (ImGui::RadioButton(_("SSI 2001 (0.89MHz)"),clockSel==2)) { clockSel=2; altered=true; } ImGui::Unindent(); - ImGui::Text("Global parameter priority:"); + ImGui::Text(_("Global parameter priority:")); ImGui::Indent(); - if (ImGui::RadioButton("Left to right",!keyPriority)) { + if (ImGui::RadioButton(_("Left to right"),!keyPriority)) { keyPriority=false; altered=true; } - if (ImGui::RadioButton("Last used channel",keyPriority)) { + if (ImGui::RadioButton(_("Last used channel"),keyPriority)) { keyPriority=true; altered=true; } ImGui::Unindent(); - ImGui::Text("Hard reset envelope:"); + ImGui::Text(_("Hard reset envelope:")); - if (CWSliderInt("Attack",&testAttack,0,15)) { + if (CWSliderInt(_("Attack"),&testAttack,0,15)) { if (testAttack<0) testAttack=0; if (testAttack>15) testAttack=15; altered=true; } - if (CWSliderInt("Decay",&testDecay,0,15)) { + if (CWSliderInt(_("Decay"),&testDecay,0,15)) { if (testDecay<0) testDecay=0; if (testDecay>15) testDecay=15; altered=true; } - if (CWSliderInt("Sustain",&testSustain,0,15)) { + if (CWSliderInt(_("Sustain"),&testSustain,0,15)) { if (testSustain<0) testSustain=0; if (testSustain>15) testSustain=15; altered=true; } - if (CWSliderInt("Release",&testRelease,0,15)) { + if (CWSliderInt(_("Release"),&testRelease,0,15)) { if (testRelease<0) testRelease=0; if (testRelease>15) testRelease=15; altered=true; } - ImGui::Text("Envelope reset time:"); + ImGui::Text(_("Envelope reset time:")); pushWarningColor(initResetTime<1 || initResetTime>4); if (CWSliderInt("##InitReset",&initResetTime,0,16)) { @@ -744,17 +744,17 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl } popWarningColor(); - ImGui::Text("- 0 disables envelope reset. not recommended!\n- 1 may trigger SID envelope bugs.\n- values that are too high may result in notes being skipped."); + ImGui::Text(_("- 0 disables envelope reset. not recommended!\n- 1 may trigger SID envelope bugs.\n- values that are too high may result in notes being skipped.")); - if (ImGui::Checkbox("Disable 1Exy env update (compatibility)",&no1EUpdate)) { + if (ImGui::Checkbox(_("Disable 1Exy env update (compatibility)"),&no1EUpdate)) { altered=true; } - if (ImGui::Checkbox("Relative duty and cutoff macros are coarse (compatibility)",&multiplyRel)) { + if (ImGui::Checkbox(_("Relative duty and cutoff macros are coarse (compatibility)"),&multiplyRel)) { altered=true; } - if (ImGui::Checkbox("Cutoff macro race conditions (compatibility)",¯oRace)) { + if (ImGui::Checkbox(_("Cutoff macro race conditions (compatibility)"),¯oRace)) { altered=true; } @@ -790,32 +790,32 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl int fmVol=flags.getInt("fmVol",256); ImGui::Indent(); - if (ImGui::RadioButton("8MHz (Neo Geo MVS)",clockSel==0)) { + if (ImGui::RadioButton(_("8MHz (Neo Geo MVS)"),clockSel==0)) { clockSel=0; altered=true; } - if (ImGui::RadioButton("8.06MHz (Neo Geo AES)",clockSel==1)) { + if (ImGui::RadioButton(_("8.06MHz (Neo Geo AES)"),clockSel==1)) { clockSel=1; altered=true; } ImGui::Unindent(); if (type==DIV_SYSTEM_YM2610_EXT || type==DIV_SYSTEM_YM2610_FULL_EXT || type==DIV_SYSTEM_YM2610B_EXT || type==DIV_SYSTEM_YM2610_CSM || type==DIV_SYSTEM_YM2610B_CSM) { - if (ImGui::Checkbox("Disable ExtCh FM macros (compatibility)",&noExtMacros)) { + if (ImGui::Checkbox(_("Disable ExtCh FM macros (compatibility)"),&noExtMacros)) { altered=true; } - if (ImGui::Checkbox("Ins change in ExtCh operator 2-4 affects FB (compatibility)",&fbAllOps)) { + if (ImGui::Checkbox(_("Ins change in ExtCh operator 2-4 affects FB (compatibility)"),&fbAllOps)) { altered=true; } } - if (CWSliderInt("SSG Volume",&ssgVol,0,256)) { + if (CWSliderInt(_("SSG Volume"),&ssgVol,0,256)) { if (ssgVol<0) ssgVol=0; if (ssgVol>256) ssgVol=256; altered=true; } rightClickable - if (CWSliderInt("FM/ADPCM Volume",&fmVol,0,256)) { + if (CWSliderInt(_("FM/ADPCM Volume"),&fmVol,0,256)) { if (fmVol<0) fmVol=0; if (fmVol>256) fmVol=256; altered=true; @@ -840,104 +840,104 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl bool stereo=flags.getBool("stereo",false); int stereoSep=flags.getInt("stereoSep",0); - ImGui::Text("Clock rate:"); + ImGui::Text(_("Clock rate:")); ImGui::Indent(); - if (ImGui::RadioButton("1.79MHz (ZX Spectrum NTSC/MSX)",clockSel==0)) { + if (ImGui::RadioButton(_("1.79MHz (ZX Spectrum NTSC/MSX)"),clockSel==0)) { clockSel=0; altered=true; } - if (ImGui::RadioButton("1.77MHz (ZX Spectrum PAL)",clockSel==1)) { + if (ImGui::RadioButton(_("1.77MHz (ZX Spectrum PAL)"),clockSel==1)) { clockSel=1; altered=true; } - if (ImGui::RadioButton("0.83MHz (Pre-divided Sunsoft 5B on PAL)",clockSel==8)) { + if (ImGui::RadioButton(_("0.83MHz (Pre-divided Sunsoft 5B on PAL)"),clockSel==8)) { clockSel=8; altered=true; } - if (ImGui::RadioButton("0.89MHz (Pre-divided Sunsoft 5B)",clockSel==6)) { + if (ImGui::RadioButton(_("0.89MHz (Pre-divided Sunsoft 5B)"),clockSel==6)) { clockSel=6; altered=true; } - if (ImGui::RadioButton("1MHz (Amstrad CPC)",clockSel==5)) { + if (ImGui::RadioButton(_("1MHz (Amstrad CPC)"),clockSel==5)) { clockSel=5; altered=true; } - if (ImGui::RadioButton("1.10MHz (Gamate/VIC-20 PAL)",clockSel==9)) { + if (ImGui::RadioButton(_("1.10MHz (Gamate/VIC-20 PAL)"),clockSel==9)) { clockSel=9; altered=true; } - if (ImGui::RadioButton("1.25MHz (Mag Max)",clockSel==13)) { + if (ImGui::RadioButton(_("1.25MHz (Mag Max)"),clockSel==13)) { clockSel=13; altered=true; } - if (ImGui::RadioButton("1.5MHz (Vectrex)",clockSel==4)) { + if (ImGui::RadioButton(_("1.5MHz (Vectrex)"),clockSel==4)) { clockSel=4; altered=true; } - if (ImGui::RadioButton("1.536MHz (Kyugo)",clockSel==14)) { + if (ImGui::RadioButton(_("1.536MHz (Kyugo)"),clockSel==14)) { clockSel=14; altered=true; } - if (ImGui::RadioButton("1.67MHz (?)",clockSel==7)) { + if (ImGui::RadioButton(_("1.67MHz (?)"),clockSel==7)) { clockSel=7; altered=true; } - if (ImGui::RadioButton("1.75MHz (ZX Spectrum 48K)",clockSel==2)) { + if (ImGui::RadioButton(_("1.75MHz (ZX Spectrum 48K)"),clockSel==2)) { clockSel=2; altered=true; } - if (ImGui::RadioButton("1.99MHz (PC-88)",clockSel==15)) { + if (ImGui::RadioButton(_("1.99MHz (PC-88)"),clockSel==15)) { clockSel=15; altered=true; } - if (ImGui::RadioButton("2MHz (Atari ST/Sharp X1)",clockSel==3)) { + if (ImGui::RadioButton(_("2MHz (Atari ST/Sharp X1)"),clockSel==3)) { clockSel=3; altered=true; } - if (ImGui::RadioButton("2^21Hz (Game Boy)",clockSel==10)) { + if (ImGui::RadioButton(_("2^21Hz (Game Boy)"),clockSel==10)) { clockSel=10; altered=true; } - if (ImGui::RadioButton("3.58MHz (Darky)",clockSel==11)) { + if (ImGui::RadioButton(_("3.58MHz (Darky)"),clockSel==11)) { clockSel=11; altered=true; } - if (ImGui::RadioButton("3.6MHz (Darky)",clockSel==12)) { + if (ImGui::RadioButton(_("3.6MHz (Darky)"),clockSel==12)) { clockSel=12; altered=true; } ImGui::Unindent(); if (type==DIV_SYSTEM_AY8910) { - ImGui::Text("Chip type:"); + ImGui::Text(_("Chip type:")); ImGui::Indent(); - if (ImGui::RadioButton("AY-3-8910",chipType==0)) { + if (ImGui::RadioButton(_("AY-3-8910"),chipType==0)) { chipType=0; altered=true; } - if (ImGui::RadioButton("YM2149(F)",chipType==1)) { + if (ImGui::RadioButton(_("YM2149(F)"),chipType==1)) { chipType=1; altered=true; } - if (ImGui::RadioButton("Sunsoft 5B",chipType==2)) { + if (ImGui::RadioButton(_("Sunsoft 5B"),chipType==2)) { chipType=2; altered=true; } - if (ImGui::RadioButton("AY-3-8914",chipType==3)) { + if (ImGui::RadioButton(_("AY-3-8914"),chipType==3)) { chipType=3; altered=true; } ImGui::Unindent(); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("note: AY-3-8914 is not supported by the VGM format!"); + ImGui::SetTooltip(_("note: AY-3-8914 is not supported by the VGM format!")); } } ImGui::BeginDisabled(type==DIV_SYSTEM_AY8910 && chipType==2); - if (ImGui::Checkbox("Stereo##_AY_STEREO",&stereo)) { + if (ImGui::Checkbox(_("Stereo##_AY_STEREO"),&stereo)) { altered=true; } if (stereo) { int sep=256-(stereoSep&255); - if (CWSliderInt("Separation",&sep,1,256)) { + if (CWSliderInt(_("Separation"),&sep,1,256)) { if (sep<1) sep=1; if (sep>256) sep=256; stereoSep=256-sep; @@ -946,7 +946,7 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl } ImGui::EndDisabled(); ImGui::BeginDisabled(type==DIV_SYSTEM_AY8910 && chipType!=1); - if (ImGui::Checkbox("Half Clock divider##_AY_CLKSEL",&halfClock)) { + if (ImGui::Checkbox(_("Half Clock divider##_AY_CLKSEL"),&halfClock)) { altered=true; } ImGui::EndDisabled(); @@ -968,15 +968,15 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl int clockSel=flags.getInt("clockSel",0); ImGui::Indent(); - if (ImGui::RadioButton("SAM Coupé (8MHz)",clockSel==0)) { + if (ImGui::RadioButton(_("SAM Coupé (8MHz)"),clockSel==0)) { clockSel=0; altered=true; } - if (ImGui::RadioButton("NTSC (7.15MHz)",clockSel==1)) { + if (ImGui::RadioButton(_("NTSC (7.15MHz)"),clockSel==1)) { clockSel=1; altered=true; } - if (ImGui::RadioButton("PAL (7.09MHz)",clockSel==2)) { + if (ImGui::RadioButton(_("PAL (7.09MHz)"),clockSel==2)) { clockSel=2; altered=true; } @@ -996,28 +996,28 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl int stereoSep=flags.getInt("stereoSep",0); bool bypassLimits=flags.getBool("bypassLimits",false); - ImGui::Text("Stereo separation:"); + ImGui::Text(_("Stereo separation:")); if (CWSliderInt("##StereoSep",&stereoSep,0,127)) { if (stereoSep<0) stereoSep=0; if (stereoSep>127) stereoSep=127; altered=true; } rightClickable - ImGui::Text("Model:"); + ImGui::Text(_("Model:")); ImGui::Indent(); - if (ImGui::RadioButton("Amiga 500 (OCS)",chipType==0)) { + if (ImGui::RadioButton(_("Amiga 500 (OCS)"),chipType==0)) { chipType=0; altered=true; } - if (ImGui::RadioButton("Amiga 1200 (AGA)",chipType==1)) { + if (ImGui::RadioButton(_("Amiga 1200 (AGA)"),chipType==1)) { chipType=1; altered=true; } ImGui::Unindent(); - ImGui::Text("Chip memory:"); + ImGui::Text(_("Chip memory:")); ImGui::Indent(); - if (ImGui::RadioButton("2MB (ECS/AGA max)",chipMem==21)) { + if (ImGui::RadioButton(_("2MB (ECS/AGA max)"),chipMem==21)) { chipMem=21; altered=true; mustRender=true; @@ -1027,7 +1027,7 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl altered=true; mustRender=true; } - if (ImGui::RadioButton("512KB (OCS max)",chipMem==19)) { + if (ImGui::RadioButton(_("512KB (OCS max)"),chipMem==19)) { chipMem=19; altered=true; mustRender=true; @@ -1040,10 +1040,10 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl ImGui::Unindent(); - if (ImGui::Checkbox("PAL",&clockSel)) { + if (ImGui::Checkbox(_("PAL"),&clockSel)) { altered=true; } - if (ImGui::Checkbox("Bypass frequency limits",&bypassLimits)) { + if (ImGui::Checkbox(_("Bypass frequency limits"),&bypassLimits)) { altered=true; } @@ -1062,23 +1062,23 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl bool clockSel=flags.getInt("clockSel",0); int mixingType=flags.getInt("mixingType",0); - ImGui::Text("Mixing mode:"); + ImGui::Text(_("Mixing mode:")); ImGui::Indent(); - if (ImGui::RadioButton("Mono",mixingType==0)) { + if (ImGui::RadioButton(_("Mono"),mixingType==0)) { mixingType=0; altered=true; } - if (ImGui::RadioButton("Mono (no distortion)",mixingType==1)) { + if (ImGui::RadioButton(_("Mono (no distortion)"),mixingType==1)) { mixingType=1; altered=true; } - if (ImGui::RadioButton("Stereo",mixingType==2)) { + if (ImGui::RadioButton(_("Stereo"),mixingType==2)) { mixingType=2; altered=true; } ImGui::Unindent(); - if (ImGui::Checkbox("PAL",&clockSel)) { + if (ImGui::Checkbox(_("PAL"),&clockSel)) { altered=true; } @@ -1095,43 +1095,43 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl int speakerType=flags.getInt("speakerType",0); bool resetPhase=flags.getBool("resetPhase",false); - ImGui::Text("Clock rate:"); + ImGui::Text(_("Clock rate:")); ImGui::Indent(); - if (ImGui::RadioButton("1.19MHz (PC)",clockSel==0)) { + if (ImGui::RadioButton(_("1.19MHz (PC)"),clockSel==0)) { clockSel=0; altered=true; } - if (ImGui::RadioButton("1.99MHz (PC-98)",clockSel==1)) { + if (ImGui::RadioButton(_("1.99MHz (PC-98)"),clockSel==1)) { clockSel=1; altered=true; } - if (ImGui::RadioButton("2.46MHz (PC-98)",clockSel==2)) { + if (ImGui::RadioButton(_("2.46MHz (PC-98)"),clockSel==2)) { clockSel=2; altered=true; } ImGui::Unindent(); - ImGui::Text("Speaker type:"); + ImGui::Text(_("Speaker type:")); ImGui::Indent(); - if (ImGui::RadioButton("Unfiltered",speakerType==0)) { + if (ImGui::RadioButton(_("Unfiltered"),speakerType==0)) { speakerType=0; altered=true; } - if (ImGui::RadioButton("Cone",speakerType==1)) { + if (ImGui::RadioButton(_("Cone"),speakerType==1)) { speakerType=1; altered=true; } - if (ImGui::RadioButton("Piezo",speakerType==2)) { + if (ImGui::RadioButton(_("Piezo"),speakerType==2)) { speakerType=2; altered=true; } - if (ImGui::RadioButton("Use system beeper (Linux only!)",speakerType==3)) { + if (ImGui::RadioButton(_("Use system beeper (Linux only!)"),speakerType==3)) { speakerType=3; altered=true; } ImGui::Unindent(); - if (ImGui::Checkbox("Reset phase on frequency change",&resetPhase)) { + if (ImGui::Checkbox(_("Reset phase on frequency change"),&resetPhase)) { altered=true; } @@ -1148,7 +1148,7 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl int echoDelay=flags.getInt("echoDelay",0); int echoFeedback=flags.getInt("echoFeedback",0)&255; - ImGui::Text("Echo delay:"); + ImGui::Text(_("Echo delay:")); int echoBufSize1=2725-echoDelay; if (CWSliderInt("##EchoBufSize",&echoBufSize1,0,2725)) { if (echoBufSize1<0) echoBufSize1=0; @@ -1156,7 +1156,7 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl echoDelay=2725-echoBufSize1; altered=true; } rightClickable - ImGui::Text("Echo feedback:"); + ImGui::Text(_("Echo feedback:")); if (CWSliderInt("##EchoFeedback",&echoFeedback,0,255)) { if (echoFeedback<0) echoFeedback=0; if (echoFeedback>255) echoFeedback=255; @@ -1178,27 +1178,27 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl bool stereo=flags.getBool("stereo",false); bool isBanked=flags.getBool("isBanked",false); - ImGui::Text("Clock rate:"); + ImGui::Text(_("Clock rate:")); ImGui::Indent(); - if (ImGui::RadioButton("16MHz (Seta 1)",clockSel==0)) { + if (ImGui::RadioButton(_("16MHz (Seta 1)"),clockSel==0)) { clockSel=0; altered=true; } - if (ImGui::RadioButton("16.67MHz (Seta 2)",clockSel==1)) { + if (ImGui::RadioButton(_("16.67MHz (Seta 2)"),clockSel==1)) { clockSel=1; altered=true; } - if (ImGui::RadioButton("14.32MHz (NTSC)",clockSel==2)) { + if (ImGui::RadioButton(_("14.32MHz (NTSC)"),clockSel==2)) { clockSel=2; altered=true; } ImGui::Unindent(); - if (ImGui::Checkbox("Stereo",&stereo)) { + if (ImGui::Checkbox(_("Stereo"),&stereo)) { altered=true; } - if (ImGui::Checkbox("Bankswitched (Seta 2)",&isBanked)) { + if (ImGui::Checkbox(_("Bankswitched (Seta 2)"),&isBanked)) { altered=true; } @@ -1217,31 +1217,31 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl bool multiplex=flags.getBool("multiplex",false); bool lenCompensate=flags.getBool("lenCompensate",false); - ImGui::Text("Clock rate:"); + ImGui::Text(_("Clock rate:")); ImGui::Indent(); - if (ImGui::RadioButton("NTSC (1.79MHz)",clockSel==0)) { + if (ImGui::RadioButton(_("NTSC (1.79MHz)"),clockSel==0)) { clockSel=0; altered=true; } - if (ImGui::RadioButton("PAL (1.67MHz)",clockSel==1)) { + if (ImGui::RadioButton(_("PAL (1.67MHz)"),clockSel==1)) { clockSel=1; altered=true; } - if (ImGui::RadioButton("Dendy (1.77MHz)",clockSel==2)) { + if (ImGui::RadioButton(_("Dendy (1.77MHz)"),clockSel==2)) { clockSel=2; altered=true; } ImGui::Unindent(); - ImGui::Text("Initial channel limit:"); + ImGui::Text(_("Initial channel limit:")); if (CWSliderInt("##N163_InitialChannelLimit",&channels,1,8)) { if (channels<1) channels=1; if (channels>8) channels=8; altered=true; } rightClickable - if (ImGui::Checkbox("Disable hissing",&multiplex)) { + if (ImGui::Checkbox(_("Disable hissing"),&multiplex)) { altered=true; } - if (ImGui::Checkbox("Scale frequency to wave length",&lenCompensate)) { + if (ImGui::Checkbox(_("Scale frequency to wave length"),&lenCompensate)) { altered=true; } @@ -1258,14 +1258,14 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl case DIV_SYSTEM_ES5506: { int channels=flags.getInt("channels",0x1f)+1; int volScale=flags.getInt("volScale",4095); - ImGui::Text("Initial channel limit:"); + ImGui::Text(_("Initial channel limit:")); if (CWSliderInt("##OTTO_InitialChannelLimit",&channels,5,32)) { if (channels<5) channels=5; if (channels>32) channels=32; altered=true; } rightClickable - ImGui::Text("Volume scale:"); + ImGui::Text(_("Volume scale:")); if (CWSliderInt("##VolScaleO",&volScale,0,4095)) { if (volScale<0) volScale=0; @@ -1291,66 +1291,66 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl int ssgVol=flags.getInt("ssgVol",128); int fmVol=flags.getInt("fmVol",256); - ImGui::Text("Clock rate:"); + ImGui::Text(_("Clock rate:")); ImGui::Indent(); - if (ImGui::RadioButton("3.58MHz (NTSC)",clockSel==0)) { + if (ImGui::RadioButton(_("3.58MHz (NTSC)"),clockSel==0)) { clockSel=0; altered=true; } - if (ImGui::RadioButton("3.54MHz (PAL)",clockSel==1)) { + if (ImGui::RadioButton(_("3.54MHz (PAL)"),clockSel==1)) { clockSel=1; altered=true; } - if (ImGui::RadioButton("4MHz",clockSel==2)) { + if (ImGui::RadioButton(_("4MHz"),clockSel==2)) { clockSel=2; altered=true; } - if (ImGui::RadioButton("3MHz",clockSel==3)) { + if (ImGui::RadioButton(_("3MHz"),clockSel==3)) { clockSel=3; altered=true; } - if (ImGui::RadioButton("3.9936MHz (PC-88/PC-98)",clockSel==4)) { + if (ImGui::RadioButton(_("3.9936MHz (PC-88/PC-98)"),clockSel==4)) { clockSel=4; altered=true; } - if (ImGui::RadioButton("1.5MHz",clockSel==5)) { + if (ImGui::RadioButton(_("1.5MHz"),clockSel==5)) { clockSel=5; altered=true; } ImGui::Unindent(); - ImGui::Text("Output rate:"); + ImGui::Text(_("Output rate:")); ImGui::Indent(); - if (ImGui::RadioButton("FM: clock / 72, SSG: clock / 16",prescale==0)) { + if (ImGui::RadioButton(_("FM: clock / 72, SSG: clock / 16"),prescale==0)) { prescale=0; altered=true; } - if (ImGui::RadioButton("FM: clock / 36, SSG: clock / 8",prescale==1)) { + if (ImGui::RadioButton(_("FM: clock / 36, SSG: clock / 8"),prescale==1)) { prescale=1; altered=true; } - if (ImGui::RadioButton("FM: clock / 24, SSG: clock / 4",prescale==2)) { + if (ImGui::RadioButton(_("FM: clock / 24, SSG: clock / 4"),prescale==2)) { prescale=2; altered=true; } ImGui::Unindent(); - if (CWSliderInt("SSG Volume",&ssgVol,0,256)) { + if (CWSliderInt(_("SSG Volume"),&ssgVol,0,256)) { if (ssgVol<0) ssgVol=0; if (ssgVol>256) ssgVol=256; altered=true; } rightClickable - if (CWSliderInt("FM Volume",&fmVol,0,256)) { + if (CWSliderInt(_("FM Volume"),&fmVol,0,256)) { if (fmVol<0) fmVol=0; if (fmVol>256) fmVol=256; altered=true; } rightClickable if (type==DIV_SYSTEM_YM2203_EXT || type==DIV_SYSTEM_YM2203_CSM) { - if (ImGui::Checkbox("Disable ExtCh FM macros (compatibility)",&noExtMacros)) { + if (ImGui::Checkbox(_("Disable ExtCh FM macros (compatibility)"),&noExtMacros)) { altered=true; } - if (ImGui::Checkbox("Ins change in ExtCh operator 2-4 affects FB (compatibility)",&fbAllOps)) { + if (ImGui::Checkbox(_("Ins change in ExtCh operator 2-4 affects FB (compatibility)"),&fbAllOps)) { altered=true; } } @@ -1377,50 +1377,50 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl int ssgVol=flags.getInt("ssgVol",128); int fmVol=flags.getInt("fmVol",256); - ImGui::Text("Clock rate:"); + ImGui::Text(_("Clock rate:")); ImGui::Indent(); - if (ImGui::RadioButton("8MHz (Arcade)",clockSel==0)) { + if (ImGui::RadioButton(_("8MHz (Arcade)"),clockSel==0)) { clockSel=0; altered=true; } - if (ImGui::RadioButton("7.987MHz (PC-88/PC-98)",clockSel==1)) { + if (ImGui::RadioButton(_("7.987MHz (PC-88/PC-98)"),clockSel==1)) { clockSel=1; altered=true; } ImGui::Unindent(); - ImGui::Text("Output rate:"); + ImGui::Text(_("Output rate:")); ImGui::Indent(); - if (ImGui::RadioButton("FM: clock / 144, SSG: clock / 32",prescale==0)) { + if (ImGui::RadioButton(_("FM: clock / 144, SSG: clock / 32"),prescale==0)) { prescale=0; altered=true; } - if (ImGui::RadioButton("FM: clock / 72, SSG: clock / 16",prescale==1)) { + if (ImGui::RadioButton(_("FM: clock / 72, SSG: clock / 16"),prescale==1)) { prescale=1; altered=true; } - if (ImGui::RadioButton("FM: clock / 48, SSG: clock / 8",prescale==2)) { + if (ImGui::RadioButton(_("FM: clock / 48, SSG: clock / 8"),prescale==2)) { prescale=2; altered=true; } ImGui::Unindent(); - if (CWSliderInt("SSG Volume",&ssgVol,0,256)) { + if (CWSliderInt(_("SSG Volume"),&ssgVol,0,256)) { if (ssgVol<0) ssgVol=0; if (ssgVol>256) ssgVol=256; altered=true; } rightClickable - if (CWSliderInt("FM/ADPCM Volume",&fmVol,0,256)) { + if (CWSliderInt(_("FM/ADPCM Volume"),&fmVol,0,256)) { if (fmVol<0) fmVol=0; if (fmVol>256) fmVol=256; altered=true; } rightClickable if (type==DIV_SYSTEM_YM2608_EXT || type==DIV_SYSTEM_YM2608_CSM) { - if (ImGui::Checkbox("Disable ExtCh FM macros (compatibility)",&noExtMacros)) { + if (ImGui::Checkbox(_("Disable ExtCh FM macros (compatibility)"),&noExtMacros)) { altered=true; } - if (ImGui::Checkbox("Ins change in ExtCh operator 2-4 affects FB (compatibility)",&fbAllOps)) { + if (ImGui::Checkbox(_("Ins change in ExtCh operator 2-4 affects FB (compatibility)"),&fbAllOps)) { altered=true; } } @@ -1441,28 +1441,28 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl int clockSel=flags.getInt("clockSel",0); int chipType=flags.getInt("chipType",0); - ImGui::Text("Clock rate:"); + ImGui::Text(_("Clock rate:")); ImGui::Indent(); - if (ImGui::RadioButton("8MHz (FM Towns)",clockSel==0)) { + if (ImGui::RadioButton(_("8MHz (FM Towns)"),clockSel==0)) { clockSel=0; altered=true; } - if (ImGui::RadioButton("10MHz (Sega System 18)",clockSel==1)) { + if (ImGui::RadioButton(_("10MHz (Sega System 18)"),clockSel==1)) { clockSel=1; altered=true; } - if (ImGui::RadioButton("12.5MHz (Sega CD/System 32)",clockSel==2)) { + if (ImGui::RadioButton(_("12.5MHz (Sega CD/System 32)"),clockSel==2)) { clockSel=2; altered=true; } ImGui::Unindent(); - ImGui::Text("Chip type:"); + ImGui::Text(_("Chip type:")); ImGui::Indent(); - if (ImGui::RadioButton("RF5C68 (10-bit output)",chipType==0)) { + if (ImGui::RadioButton(_("RF5C68 (10-bit output)"),chipType==0)) { chipType=0; altered=true; } - if (ImGui::RadioButton("RF5C164 (16-bit output)",chipType==1)) { + if (ImGui::RadioButton(_("RF5C164 (16-bit output)"),chipType==1)) { chipType=1; altered=true; } @@ -1479,7 +1479,7 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl case DIV_SYSTEM_MSM6258: { int clockSel=flags.getInt("clockSel",0); - ImGui::Text("Clock rate:"); + ImGui::Text(_("Clock rate:")); ImGui::Indent(); if (ImGui::RadioButton("4MHz",clockSel==0)) { clockSel=0; @@ -1517,15 +1517,15 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl } } - ImGui::Text("Sample rate table:"); + ImGui::Text(_("Sample rate table:")); if (ImGui::BeginTable("6258Rate",3)) { ImGui::TableNextRow(ImGuiTableRowFlags_Headers); ImGui::TableNextColumn(); - ImGui::Text("divider \\ clock"); + ImGui::Text(_("divider \\ clock")); ImGui::TableNextColumn(); - ImGui::Text("full"); + ImGui::Text(_("full")); ImGui::TableNextColumn(); - ImGui::Text("half"); + ImGui::Text(_("half")); ImGui::TableNextRow(); ImGui::TableNextColumn(); @@ -1569,7 +1569,7 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl bool rateSel=flags.getBool("rateSel",false); bool isBanked=flags.getBool("isBanked",false); - ImGui::Text("Clock rate:"); + ImGui::Text(_("Clock rate:")); ImGui::Indent(); if (ImGui::RadioButton("0.875MHz",clockSel==10)) { clockSel=10; @@ -1636,19 +1636,19 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl altered=true; } ImGui::Unindent(); - ImGui::Text("Output rate:"); + ImGui::Text(_("Output rate:")); ImGui::Indent(); - if (ImGui::RadioButton("clock / 132",rateSel==0)) { + if (ImGui::RadioButton(_("clock / 132"),rateSel==0)) { rateSel=false; altered=true; } - if (ImGui::RadioButton("clock / 165",rateSel==1)) { + if (ImGui::RadioButton(_("clock / 165"),rateSel==1)) { rateSel=true; altered=true; } ImGui::Unindent(); - if (ImGui::Checkbox("Bankswitched (NMK112)",&isBanked)) { + if (ImGui::Checkbox(_("Bankswitched (NMK112)"),&isBanked)) { altered=true; } @@ -1665,21 +1665,21 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl case DIV_SYSTEM_SCC_PLUS: { int clockSel=flags.getInt("clockSel",0); - ImGui::Text("Clock rate:"); + ImGui::Text(_("Clock rate:")); ImGui::Indent(); - if (ImGui::RadioButton("1.79MHz (NTSC/MSX)",clockSel==0)) { + if (ImGui::RadioButton(_("1.79MHz (NTSC/MSX)"),clockSel==0)) { clockSel=0; altered=true; } - if (ImGui::RadioButton("1.77MHz (PAL)",clockSel==1)) { + if (ImGui::RadioButton(_("1.77MHz (PAL)"),clockSel==1)) { clockSel=1; altered=true; } - if (ImGui::RadioButton("1.5MHz (Arcade)",clockSel==2)) { + if (ImGui::RadioButton(_("1.5MHz (Arcade)"),clockSel==2)) { clockSel=2; altered=true; } - if (ImGui::RadioButton("2MHz",clockSel==3)) { + if (ImGui::RadioButton(_("2MHz"),clockSel==3)) { clockSel=3; altered=true; } @@ -1694,14 +1694,14 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl } case DIV_SYSTEM_LYNX: { bool tuned=flags.getBool("tuned",false); - if (ImGui::Checkbox("Consistent frequency across all duties",&tuned)) { + if (ImGui::Checkbox(_("Consistent frequency across all duties"),&tuned)) { altered=true; e->lockSave([&]() { flags.set("tuned",tuned); }); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("note: only works for an initial LFSR value of 0!"); + ImGui::SetTooltip(_("note: only works for an initial LFSR value of 0!")); } break; } @@ -1713,29 +1713,29 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl case DIV_SYSTEM_Y8950_DRUMS: { int clockSel=flags.getInt("clockSel",0); - ImGui::Text("Clock rate:"); + ImGui::Text(_("Clock rate:")); ImGui::Indent(); - if (ImGui::RadioButton("3.58MHz (NTSC)",clockSel==0)) { + if (ImGui::RadioButton(_("3.58MHz (NTSC)"),clockSel==0)) { clockSel=0; altered=true; } - if (ImGui::RadioButton("3.54MHz (PAL)",clockSel==1)) { + if (ImGui::RadioButton(_("3.54MHz (PAL)"),clockSel==1)) { clockSel=1; altered=true; } - if (ImGui::RadioButton("4MHz",clockSel==2)) { + if (ImGui::RadioButton(_("4MHz"),clockSel==2)) { clockSel=2; altered=true; } - if (ImGui::RadioButton("3MHz",clockSel==3)) { + if (ImGui::RadioButton(_("3MHz"),clockSel==3)) { clockSel=3; altered=true; } - if (ImGui::RadioButton("3.9936MHz (PC-88/PC-98)",clockSel==4)) { + if (ImGui::RadioButton(_("3.9936MHz (PC-88/PC-98)"),clockSel==4)) { clockSel=4; altered=true; } - if (ImGui::RadioButton("3.5MHz",clockSel==5)) { + if (ImGui::RadioButton(_("3.5MHz"),clockSel==5)) { clockSel=5; altered=true; } @@ -1754,44 +1754,44 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl int chipType=flags.getInt("chipType",0); bool compatPan=flags.getBool("compatPan",false); - ImGui::Text("Clock rate:"); + ImGui::Text(_("Clock rate:")); ImGui::Indent(); - if (ImGui::RadioButton("14.32MHz (NTSC)",clockSel==0)) { + if (ImGui::RadioButton(_("14.32MHz (NTSC)"),clockSel==0)) { clockSel=0; altered=true; } - if (ImGui::RadioButton("14.19MHz (PAL)",clockSel==1)) { + if (ImGui::RadioButton(_("14.19MHz (PAL)"),clockSel==1)) { clockSel=1; altered=true; } - if (ImGui::RadioButton("14MHz",clockSel==2)) { + if (ImGui::RadioButton(_("14MHz"),clockSel==2)) { clockSel=2; altered=true; } - if (ImGui::RadioButton("16MHz",clockSel==3)) { + if (ImGui::RadioButton(_("16MHz"),clockSel==3)) { clockSel=3; altered=true; } - if (ImGui::RadioButton("15MHz",clockSel==4)) { + if (ImGui::RadioButton(_("15MHz"),clockSel==4)) { clockSel=4; altered=true; } - if (ImGui::RadioButton("33.8688MHz (OPL3-L)",clockSel==5)) { + if (ImGui::RadioButton(_("33.8688MHz (OPL3-L)"),clockSel==5)) { clockSel=5; altered=true; } - ImGui::Text("Chip type:"); - if (ImGui::RadioButton("OPL3 (YMF262)",chipType==0)) { + ImGui::Text(_("Chip type:")); + if (ImGui::RadioButton(_("OPL3 (YMF262)"),chipType==0)) { chipType=0; altered=true; } - if (ImGui::RadioButton("OPL3-L (YMF289B)",chipType==1)) { + if (ImGui::RadioButton(_("OPL3-L (YMF289B)"),chipType==1)) { chipType=1; altered=true; } ImGui::Unindent(); - if (ImGui::Checkbox("Compatible panning (0800)",&compatPan)) { + if (ImGui::Checkbox(_("Compatible panning (0800)"),&compatPan)) { altered=true; } @@ -1807,7 +1807,7 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl case DIV_SYSTEM_YMZ280B: { int clockSel=flags.getInt("clockSel",0); - ImGui::Text("Clock rate:"); + ImGui::Text(_("Clock rate:")); ImGui::Indent(); if (ImGui::RadioButton("16.9344MHz",clockSel==0)) { clockSel=0; @@ -1849,37 +1849,37 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl int interpolation=flags.getInt("interpolation",0); bool stereo=flags.getBool("stereo",false); - ImGui::Text("Output rate:"); + ImGui::Text(_("Output rate:")); if (CWSliderInt("##SampRate",&sampRate,1000,96000)) { if (sampRate<1000) sampRate=1000; if (sampRate>96000) sampRate=96000; altered=true; } rightClickable - ImGui::Text("Output bit depth:"); + ImGui::Text(_("Output bit depth:")); if (CWSliderInt("##BitDepth",&bitDepth,1,16)) { if (bitDepth<1) bitDepth=1; if (bitDepth>16) bitDepth=16; altered=true; } rightClickable - if (ImGui::Checkbox("Stereo",&stereo)) { + if (ImGui::Checkbox(_("Stereo"),&stereo)) { altered=true; } - ImGui::Text("Interpolation:"); + ImGui::Text(_("Interpolation:")); ImGui::Indent(); - if (ImGui::RadioButton("None",interpolation==0)) { + if (ImGui::RadioButton(_("None"),interpolation==0)) { interpolation=0; altered=true; } - if (ImGui::RadioButton("Linear",interpolation==1)) { + if (ImGui::RadioButton(_("Linear"),interpolation==1)) { interpolation=1; altered=true; } - if (ImGui::RadioButton("Cubic",interpolation==2)) { + if (ImGui::RadioButton(_("Cubic"),interpolation==2)) { interpolation=2; altered=true; } - if (ImGui::RadioButton("Sinc",interpolation==3)) { + if (ImGui::RadioButton(_("Sinc"),interpolation==3)) { interpolation=3; altered=true; } @@ -1916,23 +1916,23 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl echoFilter[6]=flags.getInt("echoFilter6",0); echoFilter[7]=flags.getInt("echoFilter7",0); - ImGui::Text("Volume scale:"); - if (CWSliderInt("Left##VolScaleL",&vsL,0,127)) { + ImGui::Text(_("Volume scale:")); + if (CWSliderInt(_("Left##VolScaleL"),&vsL,0,127)) { if (vsL<0) vsL=0; if (vsL>127) vsL=127; altered=true; } rightClickable - if (CWSliderInt("Right##VolScaleL",&vsR,0,127)) { + if (CWSliderInt(_("Right##VolScaleL"),&vsR,0,127)) { if (vsR<0) vsR=0; if (vsR>127) vsR=127; altered=true; } rightClickable - if (ImGui::Checkbox("Enable echo",&echo)) { + if (ImGui::Checkbox(_("Enable echo"),&echo)) { altered=true; } - ImGui::Text("Initial echo state:"); + ImGui::Text(_("Initial echo state:")); for (int i=0; i<8; i++) { bool echoChan=(bool)(echoMask&(1<15) echoDelay=15; altered=true; } rightClickable - if (CWSliderInt("Feedback##EchoFeedback",&echoFeedback,-128,127)) { + if (CWSliderInt(_("Feedback##EchoFeedback"),&echoFeedback,-128,127)) { if (echoFeedback<-128) echoFeedback=-128; if (echoFeedback>127) echoFeedback=127; altered=true; } rightClickable - ImGui::Text("Echo volume:"); - if (CWSliderInt("Left##EchoVolL",&echoVolL,-128,127)) { + ImGui::Text(_("Echo volume:")); + if (CWSliderInt(_("Left##EchoVolL"),&echoVolL,-128,127)) { if (echoVolL<-128) echoVolL=-128; if (echoVolL>127) echoVolL=127; altered=true; } rightClickable - if (CWSliderInt("Right##EchoVolL",&echoVolR,-128,127)) { + if (CWSliderInt(_("Right##EchoVolL"),&echoVolR,-128,127)) { if (echoVolR<-128) echoVolR=-128; if (echoVolR>127) echoVolR=127; altered=true; } rightClickable - ImGui::Text("Echo filter:"); + ImGui::Text(_("Echo filter:")); for (int i=0; i<8; i++) { snprintf(temp,63,"%d##FIR%d",i+1,i); if (CWSliderInt(temp,&echoFilter[i],-128,127)) { @@ -1986,7 +1986,7 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl } rightClickable } - if (ImGui::Button(snesFilterHex?"Hex##SNESFHex":"Dec##SNESFHex")) { + if (ImGui::Button(snesFilterHex?_("Hex##SNESFHex"):_("Dec##SNESFHex"))) { snesFilterHex=!snesFilterHex; } ImGui::SameLine(); @@ -2028,7 +2028,7 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl ); ImGui::PushStyleColor(ImGuiCol_Text,(filterSum<-128 || filterSum>127)?uiColors[GUI_COLOR_LOGLEVEL_WARNING]:uiColors[GUI_COLOR_TEXT]); - ImGui::Text("sum: %d",filterSum); + ImGui::Text(_("sum: %d"),filterSum); ImGui::PopStyleColor(); if (altered) { @@ -2083,13 +2083,13 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl capValue[6]=flags.getFloat("capValue6",390.0f); capValue[7]=flags.getFloat("capValue7",390.0f); - if (CWSliderInt("Detune",&detune,-127,127)) { + if (CWSliderInt(_("Detune"),&detune,-127,127)) { if (detune<-127) detune=-127; if (detune>127) detune=127; altered=true; } rightClickable - ImGui::Text("Capacitor values (nF):"); + ImGui::Text(_("Capacitor values (nF):")); for (int i=0; i<8; i++) { snprintf(temp,63,"%d##CAPV%d",i+1,i); if (CWSliderFloat(temp,&capValue[i],1.0f,1000.0f)) { @@ -2099,7 +2099,7 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl } rightClickable } - ImGui::Text("Initial part volume (channel 1-4):"); + ImGui::Text(_("Initial part volume (channel 1-4):")); for (int i=0; i<4; i++) { snprintf(temp,63,"%d'##GRPV%d",2<256) vibSpeed=256; altered=true; } rightClickable - if (CWSliderFloat("Depth",&vibDepth,0.0f,256.0f)) { + if (CWSliderFloat(_("Depth"),&vibDepth,0.0f,256.0f)) { if (vibDepth<0) vibDepth=0; if (vibDepth>256) vibDepth=256; altered=true; @@ -2187,7 +2187,7 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl case DIV_SYSTEM_T6W28: { bool noEasyNoise=flags.getBool("noEasyNoise",false); - if (ImGui::Checkbox("Disable easy period to note mapping on upper octaves",&noEasyNoise)) { + if (ImGui::Checkbox(_("Disable easy period to note mapping on upper octaves"),&noEasyNoise)) { altered=true; } @@ -2201,7 +2201,7 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl case DIV_SYSTEM_K007232: { bool stereo=flags.getBool("stereo",false); - if (ImGui::Checkbox("Stereo",&stereo)) { + if (ImGui::Checkbox(_("Stereo"),&stereo)) { altered=true; } @@ -2216,13 +2216,13 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl case DIV_SYSTEM_NAMCO_15XX: { bool romMode=flags.getBool("romMode",false); - ImGui::Text("Waveform storage mode:"); + ImGui::Text(_("Waveform storage mode:")); ImGui::Indent(); - if (ImGui::RadioButton("RAM",!romMode)) { + if (ImGui::RadioButton(_("RAM"),!romMode)) { romMode=false; altered=true; } - if (ImGui::RadioButton("ROM (up to 8 waves)",romMode)) { + if (ImGui::RadioButton(_("ROM (up to 8 waves)"),romMode)) { romMode=true; altered=true; } @@ -2238,7 +2238,7 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl case DIV_SYSTEM_NAMCO_CUS30: { bool newNoise=flags.getBool("newNoise",true); - if (InvCheckbox("Compatible noise frequencies",&newNoise)) { + if (InvCheckbox(_("Compatible noise frequencies"),&newNoise)) { altered=true; } @@ -2253,7 +2253,7 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl case DIV_SYSTEM_SEGAPCM_COMPAT: { bool oldSlides=flags.getBool("oldSlides",false); - if (ImGui::Checkbox("Legacy slides and pitch (compatibility)",&oldSlides)) { + if (ImGui::Checkbox(_("Legacy slides and pitch (compatibility)"),&oldSlides)) { altered=true; } @@ -2267,7 +2267,7 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl case DIV_SYSTEM_SM8521:/* { bool noAntiClick=flags.getBool("noAntiClick",false); - if (ImGui::Checkbox("Disable anti-click",&noAntiClick)) { + if (ImGui::Checkbox(_("Disable anti-click"),&noAntiClick)) { altered=true; } @@ -2281,13 +2281,13 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl case DIV_SYSTEM_K053260: { int clockSel=flags.getInt("clockSel",0); - ImGui::Text("Clock rate:"); + ImGui::Text(_("Clock rate:")); ImGui::Indent(); - if (ImGui::RadioButton("3.58MHz (NTSC)",clockSel==0)) { + if (ImGui::RadioButton(_("3.58MHz (NTSC)"),clockSel==0)) { clockSel=0; altered=true; } - if (ImGui::RadioButton("4MHz",clockSel==1)) { + if (ImGui::RadioButton(_("4MHz"),clockSel==1)) { clockSel=1; altered=true; } @@ -2304,27 +2304,27 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl int clockSel=flags.getInt("clockSel",0); bool keyPriority=flags.getBool("keyPriority",true); - ImGui::Text("Clock rate:"); + ImGui::Text(_("Clock rate:")); ImGui::Indent(); - if (ImGui::RadioButton("NTSC (1.79MHz)",clockSel==0)) { + if (ImGui::RadioButton(_("NTSC (1.79MHz)"),clockSel==0)) { clockSel=0; altered=true; } - if (ImGui::RadioButton("PAL (1.77MHz)",clockSel==1)) { + if (ImGui::RadioButton(_("PAL (1.77MHz)"),clockSel==1)) { clockSel=1; altered=true; } ImGui::Unindent(); - ImGui::Text("Global parameter priority:"); + ImGui::Text(_("Global parameter priority:")); ImGui::Indent(); - if (ImGui::RadioButton("Left to right",!keyPriority)) { + if (ImGui::RadioButton(_("Left to right"),!keyPriority)) { keyPriority=false; altered=true; } - if (ImGui::RadioButton("Last used channel",keyPriority)) { + if (ImGui::RadioButton(_("Last used channel"),keyPriority)) { keyPriority=true; altered=true; } @@ -2341,19 +2341,19 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl case DIV_SYSTEM_C140: { int bankType=flags.getInt("bankType",0); - ImGui::Text("Banking style:"); + ImGui::Text(_("Banking style:")); ImGui::Indent(); - if (ImGui::RadioButton("Namco System 2 (2MB)",bankType==0)) { + if (ImGui::RadioButton(_("Namco System 2 (2MB)"),bankType==0)) { bankType=0; altered=true; mustRender=true; } - if (ImGui::RadioButton("Namco System 21 (4MB)",bankType==1)) { + if (ImGui::RadioButton(_("Namco System 21 (4MB)"),bankType==1)) { bankType=1; altered=true; mustRender=true; } - if (ImGui::RadioButton("Raw (16MB; no VGM export!)",bankType==2)) { + if (ImGui::RadioButton(_("Raw (16MB; no VGM export!)"),bankType==2)) { bankType=2; altered=true; mustRender=true; @@ -2370,13 +2370,13 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl case DIV_SYSTEM_VBOY: { bool romMode=flags.getBool("romMode",false); - ImGui::Text("Waveform storage mode:"); + ImGui::Text(_("Waveform storage mode:")); ImGui::Indent(); - if (ImGui::RadioButton("Dynamic (unconfirmed)",!romMode)) { + if (ImGui::RadioButton(_("Dynamic (unconfirmed)"),!romMode)) { romMode=false; altered=true; } - if (ImGui::RadioButton("Static (up to 5 waves)",romMode)) { + if (ImGui::RadioButton(_("Static (up to 5 waves)"),romMode)) { romMode=true; altered=true; } @@ -2392,10 +2392,10 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl case DIV_SYSTEM_SFX_BEEPER_QUADTONE: { bool sysPal=flags.getInt("clockSel",0); bool noHiss=flags.getBool("noHiss",false); - if (ImGui::Checkbox("PAL",&sysPal)) { + if (ImGui::Checkbox(_("PAL"),&sysPal)) { altered=true; } - if (ImGui::Checkbox("Disable hissing",&noHiss)) { + if (ImGui::Checkbox(_("Disable hissing"),&noHiss)) { altered=true; } if (altered) { @@ -2409,13 +2409,13 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl case DIV_SYSTEM_NDS: { int chipType=flags.getInt("chipType",0); - ImGui::Text("Model:"); + ImGui::Text(_("Model:")); ImGui::Indent(); - if (ImGui::RadioButton("DS (4MB RAM)",chipType==0)) { + if (ImGui::RadioButton(_("DS (4MB RAM)"),chipType==0)) { chipType=0; altered=true; } - if (ImGui::RadioButton("DSi (16MB RAM)",chipType==1)) { + if (ImGui::RadioButton(_("DSi (16MB RAM)"),chipType==1)) { chipType=1; altered=true; } @@ -2441,12 +2441,12 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl case DIV_SYSTEM_YMU759: case DIV_SYSTEM_ESFM: supportsCustomRate=false; - ImGui::Text("nothing to configure"); + ImGui::Text(_("nothing to configure")); break; default: { bool sysPal=flags.getInt("clockSel",0); - if (ImGui::Checkbox("PAL",&sysPal)) { + if (ImGui::Checkbox(_("PAL"),&sysPal)) { altered=true; } @@ -2464,7 +2464,7 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl int customClock=flags.getInt("customClock",0); bool usingCustomClock=customClock>=MIN_CUSTOM_CLOCK; - if (ImGui::Checkbox("Custom clock rate",&usingCustomClock)) { + if (ImGui::Checkbox(_("Custom clock rate"),&usingCustomClock)) { if (usingCustomClock) { customClock=MIN_CUSTOM_CLOCK; } else { diff --git a/src/gui/sysManager.cpp b/src/gui/sysManager.cpp index 68b3cbda9..e7a25d67c 100644 --- a/src/gui/sysManager.cpp +++ b/src/gui/sysManager.cpp @@ -38,12 +38,12 @@ void FurnaceGUI::drawSysManager() { } else { //ImGui::SetNextWindowSizeConstraints(ImVec2(440.0f*dpiScale,400.0f*dpiScale),ImVec2(canvasW,canvasH)); } - if (ImGui::Begin("Chip Manager",&sysManagerOpen,globalWinFlags)) { - ImGui::Checkbox("Preserve channel order",&preserveChanPos); + if (ImGui::Begin("Chip Manager",&sysManagerOpen,globalWinFlags,_("Chip Manager"))) { + ImGui::Checkbox(_("Preserve channel order"),&preserveChanPos); ImGui::SameLine(); - ImGui::Checkbox("Clone channel data",&sysDupCloneChannels); + ImGui::Checkbox(_("Clone channel data"),&sysDupCloneChannels); ImGui::SameLine(); - ImGui::Checkbox("Clone at end",&sysDupEnd); + ImGui::Checkbox(_("Clone at end"),&sysDupEnd); if (ImGui::BeginTable("SystemList",3)) { ImGui::TableSetupColumn("c1",ImGuiTableColumnFlags_WidthFixed); ImGui::TableSetupColumn("c2",ImGuiTableColumnFlags_WidthStretch); @@ -51,9 +51,9 @@ void FurnaceGUI::drawSysManager() { ImGui::TableNextRow(ImGuiTableRowFlags_Headers); ImGui::TableNextColumn(); ImGui::TableNextColumn(); - ImGui::Text("Name"); + ImGui::Text(_("Name")); ImGui::TableNextColumn(); - ImGui::Text("Actions"); + ImGui::Text(_("Actions")); for (unsigned char i=0; isong.systemLen; i++) { ImGui::PushID(i); ImGui::TableNextRow(); @@ -66,7 +66,7 @@ void FurnaceGUI::drawSysManager() { ImGui::Button(ICON_FA_ARROWS "##SysDrag"); ImGui::EndDragDropSource(); } else if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("(drag to swap chips)"); + ImGui::SetTooltip(_("(drag to swap chips)")); } if (ImGui::BeginDragDropTarget()) { const ImGuiPayload* dragItem=ImGui::AcceptDragDropPayload("FUR_SYS"); @@ -87,15 +87,15 @@ void FurnaceGUI::drawSysManager() { ImGui::TreePop(); } ImGui::TableNextColumn(); - if (ImGui::Button("Clone##SysDup")) { + if (ImGui::Button(_("Clone##SysDup"))) { if (!e->duplicateSystem(i,sysDupCloneChannels,sysDupEnd)) { - showError("cannot clone chip! ("+e->getLastError()+")"); + showError(fmt::sprintf(_("cannot clone chip! (%s)"),e->getLastError())); } else { MARK_MODIFIED; } } ImGui::SameLine(); - ImGui::Button("Change##SysChange"); + ImGui::Button(_("Change##SysChange")); if (ImGui::BeginPopupContextItem("SysPickerC",ImGuiPopupFlags_MouseButtonLeft)) { DivSystem picked=systemPicker(); if (picked!=DIV_SYSTEM_NULL) { @@ -106,7 +106,7 @@ void FurnaceGUI::drawSysManager() { } updateWindowTitle(); } else { - showError("cannot change chip! ("+e->getLastError()+")"); + showError(fmt::sprintf(_("cannot change chip! (%s)"),e->getLastError())); } ImGui::CloseCurrentPopup(); } @@ -117,11 +117,11 @@ void FurnaceGUI::drawSysManager() { pushDestColor(); if (ImGui::Button(ICON_FA_TIMES "##SysRemove")) { sysToDelete=i; - showWarning("Are you sure you want to remove this chip?",GUI_WARN_SYSTEM_DEL); + showWarning(_("Are you sure you want to remove this chip?"),GUI_WARN_SYSTEM_DEL); } popDestColor(); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Remove"); + ImGui::SetTooltip(_("Remove")); } ImGui::EndDisabled(); ImGui::PopID(); @@ -135,7 +135,7 @@ void FurnaceGUI::drawSysManager() { DivSystem picked=systemPicker(); if (picked!=DIV_SYSTEM_NULL) { if (!e->addSystem(picked)) { - showError("cannot add chip! ("+e->getLastError()+")"); + showError(fmt::sprintf(_("cannot add chip! (%s)"),e->getLastError())); } else { MARK_MODIFIED; } diff --git a/src/gui/sysPicker.cpp b/src/gui/sysPicker.cpp index b374a815f..3eb7f5015 100644 --- a/src/gui/sysPicker.cpp +++ b/src/gui/sysPicker.cpp @@ -32,10 +32,10 @@ DivSystem FurnaceGUI::systemPicker() { } ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); - if (ImGui::InputTextWithHint("##SysSearch","Search...",&sysSearchQuery)) reissueSearch=true; + if (ImGui::InputTextWithHint("##SysSearch",_("Search..."),&sysSearchQuery)) reissueSearch=true; if (ImGui::BeginTabBar("SysCats")) { for (int i=0; chipCategories[i]; i++) { - if (ImGui::BeginTabItem(chipCategoryNames[i])) { + if (ImGui::BeginTabItem(_(chipCategoryNames[i]))) { if (ImGui::IsItemActive()) { reissueSearch=true; } @@ -94,4 +94,4 @@ DivSystem FurnaceGUI::systemPicker() { } ImGui::EndChild(); return ret; -} \ No newline at end of file +} diff --git a/src/gui/tileData.h b/src/gui/tileData.h index 1c2fa5b35..08b2c05d8 100644 --- a/src/gui/tileData.h +++ b/src/gui/tileData.h @@ -67,1435 +67,1692 @@ static const unsigned char tileDataC[]={ 0xeb,0x21,0xf9,0x04,0x09,0x0a,0x00,0x00,0x00,0x2c,0x00,0x00, 0x00,0x00,0x00,0x01,0x00,0x04,0x00,0x08,0xff,0x00,0x01,0x08, 0x1c,0x48,0xb0,0xa0,0xc1,0x83,0x08,0x13,0x2a,0x5c,0xc8,0xb0, -0xe0,0x01,0x83,0x0f,0x05,0x46,0x6c,0x48,0x51,0x21,0x84,0x8b, -0x18,0x33,0x5e,0xac,0x58,0x50,0xa3,0x47,0x08,0x1c,0x09,0x7e, -0xd4,0x18,0x72,0xe0,0xc8,0x8c,0x25,0x53,0x32,0x3c,0x09,0xb2, -0xe1,0xc6,0x85,0x0f,0x0e,0xc8,0x7c,0x30,0x70,0x22,0x80,0x88, -0x36,0x45,0xb2,0x6c,0xa9,0x12,0x00,0x84,0x4c,0x40,0x81,0xd2, -0x19,0x4a,0xd4,0x0d,0xcf,0x8a,0x3f,0x83,0x66,0x22,0x5a,0xf4, -0x28,0xc5,0xa4,0x41,0x99,0x0e,0x35,0x5a,0x12,0xaa,0x50,0xa9, -0x54,0x7b,0x6a,0x35,0x59,0xa4,0x08,0x91,0x13,0x32,0x64,0x9c, -0x20,0xd2,0xd5,0xe9,0x4b,0x93,0x0f,0x1e,0x1c,0x9d,0x39,0x71, -0x26,0xcd,0x9c,0x39,0x0f,0x42,0x48,0x40,0xb7,0xae,0x5d,0xba, -0x4e,0x43,0x5a,0x95,0x4a,0xc7,0x4d,0x56,0x8e,0x7b,0xb1,0xfe, -0x45,0xaa,0x94,0xaf,0xdf,0xbc,0x2b,0x0b,0x0b,0x46,0xbc,0x15, -0x70,0xd7,0xaf,0x32,0x2e,0x8a,0xf5,0x4a,0x84,0x27,0x84,0xb4, -0x47,0x2f,0xab,0x25,0x18,0x33,0x66,0xcd,0x9b,0x07,0xd2,0xde, -0x1c,0x2d,0x11,0xe1,0xc3,0xb9,0x09,0xf8,0xa9,0x5e,0xad,0x1a, -0x6f,0xd5,0x96,0x50,0x0d,0x1f,0x16,0xb8,0x6e,0x9d,0xc2,0xda, -0x02,0x63,0x0b,0xce,0x7a,0x56,0x2e,0xec,0xa8,0xbb,0x5b,0xe2, -0x4e,0x38,0x5c,0x37,0x53,0xbf,0xbc,0x19,0x37,0xb6,0x48,0x19, -0xac,0xe4,0xb1,0x64,0x2d,0x63,0x16,0x39,0x7d,0x60,0x67,0x99, -0x12,0xdd,0xd2,0xfc,0xcc,0xdd,0x20,0x04,0xd5,0x69,0xc3,0x87, -0xff,0x57,0xad,0x1c,0x61,0x6d,0xdb,0xc6,0x8b,0x22,0xa7,0x8a, -0x11,0x61,0xfb,0xf4,0x53,0xd7,0x83,0x3c,0x6f,0x1e,0x37,0xfc, -0xbe,0xf2,0x7d,0xf6,0xd6,0x09,0xf2,0xfe,0x7a,0xaa,0xf4,0x2d, -0x87,0x14,0x11,0x64,0x39,0x07,0x81,0x58,0x64,0x15,0x91,0x59, -0x66,0xe2,0xb5,0xe4,0x96,0x4d,0xd7,0x11,0x14,0x57,0x5c,0x3e, -0xf5,0x23,0xde,0x85,0x0f,0xf4,0x53,0x9e,0x6f,0x10,0xec,0xb0, -0x93,0x46,0x3b,0x04,0x68,0xd0,0x79,0x1e,0x7e,0x88,0x51,0x89, -0x8c,0x9d,0x68,0xe2,0x89,0x22,0x16,0x44,0xe2,0x8a,0x17,0xa1, -0x28,0xe0,0x80,0x5d,0x19,0x38,0x99,0x57,0xe5,0x69,0x56,0x9d, -0x84,0xd9,0xdd,0xe4,0x59,0x69,0x40,0x42,0x94,0x5b,0x5a,0x09, -0x3c,0x50,0xe4,0x91,0x45,0x6e,0xc6,0xd1,0x79,0x91,0x40,0xa0, -0xce,0x79,0xeb,0x40,0x50,0x9b,0x94,0xe7,0xa9,0x03,0x41,0x93, -0xfb,0x99,0x74,0x51,0x93,0x4f,0x9e,0x47,0x25,0x95,0xb5,0x59, -0x19,0x49,0x8b,0x04,0x31,0xe9,0x24,0x94,0x5f,0x42,0x29,0x66, -0x7b,0x1c,0x72,0x89,0xe6,0x94,0x6a,0x5e,0x49,0xe6,0x8c,0x09, -0x41,0xf0,0x98,0x8d,0x27,0x50,0x96,0x63,0x83,0x0d,0xc5,0x44, -0xa1,0x90,0x68,0xd1,0x65,0xe4,0xa0,0x47,0x2a,0x89,0x54,0x46, -0xea,0x74,0x29,0xe5,0x45,0x51,0x86,0x69,0x25,0x98,0xf5,0x45, -0xe9,0xa4,0xa2,0x92,0x36,0xba,0x4e,0xa2,0x24,0x71,0x78,0x51, -0xa2,0x70,0x32,0x4a,0x25,0xa6,0x90,0x1e,0xe4,0xe5,0xa4,0x9d, -0x2e,0xea,0x68,0xa6,0x74,0x2e,0x64,0x27,0x81,0x78,0x12,0xa8, -0xa0,0x45,0x7c,0x2a,0xff,0x74,0xc2,0x09,0x07,0xcd,0x6a,0x90, -0xad,0x68,0x11,0x4a,0x68,0x92,0x1b,0x8a,0x1a,0x25,0x0a,0x93, -0x62,0x2a,0x6c,0xa2,0x56,0x02,0x9b,0x25,0x7f,0x0a,0x04,0x6b, -0xe5,0xb0,0x98,0x02,0x3b,0x5c,0x7d,0x10,0x24,0x4b,0xec,0xb2, -0xd4,0x62,0x9a,0xec,0xb1,0x5a,0x42,0x00,0xec,0xb4,0x93,0x2a, -0x1b,0x2d,0x95,0xa9,0xba,0xe4,0x6a,0xab,0x65,0xd5,0x89,0x61, -0x4b,0xb3,0xe2,0x0a,0xc0,0x09,0x33,0xcc,0x40,0x2b,0x41,0x60, -0x89,0x05,0xef,0x0c,0xf2,0x0e,0x39,0xa8,0x91,0x85,0xee,0xa8, -0x97,0xb1,0x1f,0x02,0xfb,0x14,0xbf,0x3b,0x25,0xfb,0xd4,0xb5, -0x1f,0x0a,0xec,0x12,0xc1,0x3b,0xf9,0x1b,0xae,0xb8,0x77,0x86, -0x35,0xd6,0x63,0xca,0xe9,0x18,0x1e,0x48,0xec,0xba,0x5b,0x2f, -0x58,0xed,0xbe,0xbb,0x6e,0xbb,0x0e,0x0b,0xc4,0x6e,0xc7,0xb9, -0x59,0x88,0x61,0x78,0x1a,0xaa,0xf4,0x6d,0x1c,0x28,0x43,0x20, -0xcf,0x3b,0xef,0xc8,0x03,0x01,0xca,0x71,0x7c,0xfb,0xef,0xcb, -0x29,0xaf,0xdc,0x32,0xcd,0x31,0x1b,0xbc,0x12,0xb0,0x30,0xab, -0xcc,0xb2,0xcb,0x3d,0x2b,0xbc,0x52,0xb2,0x3d,0xdb,0x0c,0x74, -0xca,0x42,0x2f,0xcc,0x9c,0x57,0x78,0xea,0x69,0xee,0x85,0x14, -0xd3,0xdb,0xf1,0xc7,0xf4,0x6a,0x5c,0x31,0xc8,0x1f,0xcb,0xe0, -0x6e,0x6e,0xe0,0x8d,0x4c,0x9e,0xc9,0x44,0xc7,0x71,0x07,0x04, -0x2d,0xaf,0x0c,0xc1,0x1d,0x29,0xeb,0xac,0x6a,0xd8,0x63,0x97, -0xfd,0xce,0xd9,0x48,0xf7,0x9a,0x1b,0xcf,0x62,0x93,0x2d,0x8f, -0xd9,0x68,0xc7,0x9c,0xb4,0x45,0x74,0xb7,0xff,0x7d,0xf7,0xdb, -0x79,0xcb,0xac,0xb4,0xaa,0xcd,0x45,0x76,0x20,0x74,0xaf,0xba, -0x87,0x99,0x66,0xe8,0xb6,0xbb,0x75,0xbc,0x61,0x6d,0xbd,0x71, -0xe4,0xef,0x5e,0x5d,0x2f,0x6a,0xac,0xb1,0xe6,0x5a,0x4a,0xda, -0xbe,0x7c,0xc7,0xd8,0x46,0x9f,0x8d,0x76,0xe7,0x03,0x7b,0x0e, -0xfa,0xcf,0xa2,0xeb,0x2d,0xb7,0x4f,0x44,0x7f,0xee,0xf3,0xcd, -0x9f,0xe7,0xbc,0x7a,0xe7,0x62,0x9f,0x0e,0xfb,0xe8,0x6a,0x0f, -0xee,0x5e,0x82,0xf1,0x22,0xbe,0x27,0x6c,0x86,0xce,0x2a,0xb9, -0xf0,0x92,0x6f,0xec,0xb8,0xd5,0x15,0xbf,0x8b,0xda,0x5d,0x77, -0xad,0xee,0x1d,0xb0,0x9f,0xfb,0x8d,0xb7,0xeb,0x7b,0xd7,0x09, -0xbd,0xeb,0x6e,0x8b,0x3e,0x76,0xee,0x75,0x26,0x1b,0xbd,0xdd, -0xd3,0x6f,0x3f,0xbb,0xf7,0xd8,0xff,0xad,0x3d,0xe9,0xba,0xab, -0x7a,0x92,0xfa,0x3a,0x15,0xa4,0xb1,0xc7,0xef,0xaf,0x9b,0xee, -0xad,0xef,0x7f,0xd8,0xd3,0xb7,0xd1,0x8f,0x8d,0x51,0xfe,0x82, -0xef,0xac,0xbd,0xfe,0x17,0xe1,0x1f,0xf7,0xdc,0x73,0x3d,0xd7, -0xed,0xef,0x7b,0xd5,0x73,0x0f,0xf9,0x0c,0x18,0x40,0x04,0x3a, -0x2f,0x7d,0x10,0x8c,0xa0,0x5e,0x2e,0xb2,0xc0,0xfc,0x59,0xf0, -0x5b,0xcf,0xf2,0x15,0xfe,0x2c,0xc8,0xc1,0xce,0x61,0x2b,0x37, -0x17,0x29,0x20,0x07,0x1d,0x98,0xc1,0x11,0xfd,0xea,0x7f,0x23, -0x14,0xdf,0x07,0xfd,0xc1,0xc2,0x16,0xba,0xf0,0x85,0x30,0x8c, -0xa1,0x0c,0x67,0x48,0xc3,0x19,0xb2,0x8c,0x65,0xf0,0xb8,0xa1, -0x0e,0xdf,0x91,0xc3,0x1d,0xde,0x10,0x1e,0x40,0xec,0x61,0x0f, -0xff,0x7d,0x48,0x44,0x1e,0xee,0x70,0x88,0x3f,0xfc,0xa1,0x97, -0xae,0x37,0x12,0xea,0xa1,0x44,0x53,0xe4,0x6b,0xe2,0xd8,0x9c, -0x55,0xc2,0x81,0x78,0x29,0x8a,0x1f,0x71,0x1d,0xc2,0xdc,0x83, -0x11,0x26,0x66,0x51,0x7c,0x73,0x12,0x08,0x0b,0xfb,0xd1,0x8f, -0x1a,0x9a,0x91,0x86,0x65,0x7c,0x61,0x1a,0xcf,0xe8,0xc2,0x24, -0xfe,0x30,0x88,0x40,0xe4,0xa1,0x10,0x71,0x88,0xc3,0x1c,0x22, -0xd1,0x88,0x3e,0xbc,0x23,0x1d,0x8d,0x18,0x47,0x39,0xf6,0x30, -0x23,0x4c,0x34,0x83,0x19,0x76,0xb0,0x03,0x41,0x8a,0xae,0x73, -0x61,0x04,0xc0,0x12,0x0f,0x29,0x48,0x42,0x1a,0x52,0x8b,0x4f, -0xf4,0x0e,0x46,0xa2,0xd8,0xc8,0x42,0x9a,0xe1,0x90,0xc9,0x4a, -0xe4,0x15,0x19,0x39,0x48,0x4b,0x1e,0x12,0x60,0x08,0xf1,0x07, -0x19,0xd9,0x48,0xca,0x16,0x92,0x71,0x8d,0xa6,0x44,0x25,0x1b, -0x89,0x08,0xc7,0x38,0x0a,0xb1,0x95,0x7e,0xc4,0x63,0x11,0xf1, -0x78,0xc7,0x57,0xf2,0x51,0x87,0x39,0xdc,0xa4,0xeb,0x1c,0xd9, -0x49,0x4c,0x46,0xb2,0x23,0x5d,0x3c,0x24,0x2f,0x09,0xe9,0x4b, -0x4d,0x4e,0x89,0x89,0xc3,0xf4,0x90,0x13,0xd9,0x24,0x49,0x0a, -0x0a,0xd3,0x92,0xc4,0x74,0x62,0x22,0x45,0x59,0x4a,0x52,0x9e, -0x72,0x86,0xaa,0x3c,0xe3,0x11,0x5f,0x09,0xc7,0x37,0xba,0xb2, -0x9b,0x76,0xc4,0xe5,0x2c,0x65,0xe9,0x4d,0x57,0xde,0x30,0x23, -0x94,0x6c,0xe4,0x23,0xc1,0x58,0x45,0xda,0x4c,0x29,0x9d,0x83, -0x5c,0xa7,0x07,0xb1,0x05,0x48,0x4e,0xc6,0xf3,0x92,0xd2,0x6c, -0xa7,0x22,0x8f,0x69,0xff,0x4f,0x4f,0x42,0x92,0x99,0x05,0x31, -0xe3,0x28,0xab,0x49,0xcd,0x31,0xa6,0x71,0x8d,0x03,0x25,0xa5, -0x1b,0xed,0x88,0x44,0x6e,0xb6,0xf2,0x9b,0xe6,0x64,0x65,0x37, -0x8b,0x38,0xc4,0x3e,0xee,0xb3,0x73,0x9c,0x18,0x5b,0x21,0x79, -0x79,0x36,0x4e,0xcc,0xd3,0x22,0xce,0xcc,0x68,0x87,0x3a,0xf9, -0x48,0x8f,0x52,0xf1,0x36,0x51,0x4a,0x96,0x48,0x37,0xea,0x4f, -0x8f,0x12,0x0c,0xa4,0x18,0xd5,0x28,0x49,0xf1,0xe9,0x52,0x70, -0x85,0x12,0x8d,0xd9,0xac,0x66,0x42,0x73,0xaa,0xd0,0x3d,0x36, -0xb4,0xa2,0x7e,0xb4,0xa5,0x1c,0xc7,0xb9,0x50,0x3d,0xfa,0x54, -0x87,0x26,0x01,0x16,0x27,0x3c,0xba,0xd1,0x46,0x42,0x60,0xa9, -0xe8,0xf3,0x1f,0x54,0x9b,0x3a,0xc8,0xa7,0xd6,0xb4,0x74,0x53, -0xbd,0xa7,0x87,0xa0,0x3a,0x40,0xb9,0xa8,0x94,0xa9,0x5a,0xb5, -0x6a,0x54,0x6f,0x8a,0x4d,0x82,0xaa,0x11,0x95,0x09,0x25,0xe8, -0x11,0xc5,0x59,0xc7,0xb6,0xd6,0x71,0xa2,0xe3,0x0c,0xe2,0x42, -0x67,0x39,0x44,0x9d,0x4c,0xb5,0xa9,0x5b,0xf5,0xe8,0x03,0x2f, -0x72,0xd7,0x78,0xe6,0xf5,0x83,0xbe,0xe9,0xeb,0x46,0xc5,0xba, -0x57,0xb1,0x3a,0x72,0xb0,0x50,0xed,0x95,0x59,0x17,0x9b,0xca, -0xc5,0xae,0x35,0xae,0x7b,0xa4,0xa5,0x1b,0xf3,0xd8,0xc7,0x70, -0x52,0x96,0x88,0xc0,0xb4,0xdf,0x04,0x35,0x0b,0x18,0x13,0xbd, -0x86,0xb3,0x0a,0xd1,0x81,0x68,0x47,0x4b,0xda,0xd2,0x92,0xf6, -0x1d,0xa6,0x4d,0xad,0x6a,0x51,0xab,0xda,0xd6,0x92,0x56,0x02, -0xb0,0x8d,0xad,0x6c,0x67,0x4b,0xdb,0xda,0xff,0xda,0xf6,0xb6, -0xb8,0xbd,0xad,0x04,0x77,0xcb,0xdb,0x85,0xb8,0xf6,0xb7,0xc0, -0x0d,0xee,0x69,0x7f,0x8b,0xda,0xdc,0x1a,0xf7,0xb8,0xc8,0x45, -0x6e,0x6f,0x97,0xcb,0x5c,0x81,0xb0,0x56,0x07,0xcf,0x35,0x6d, -0x74,0xa1,0x3b,0xda,0xe9,0x52,0x37,0xb8,0xd6,0xbd,0x6e,0x6a, -0x93,0xcb,0xdd,0xee,0x72,0xb7,0xb9,0xe0,0xdd,0xad,0x70,0xc7, -0x9b,0xda,0xec,0x8e,0x37,0xba,0xb0,0x8d,0x80,0x7a,0xd5,0x9b, -0xde,0xf5,0x46,0x60,0xb6,0xec,0x95,0x40,0x7c,0xe7,0x1b,0xdf, -0xf6,0xba,0xd7,0xbd,0xf2,0xad,0xef,0x7b,0xf3,0xbb,0x5e,0x09, -0x84,0xf7,0xbf,0xe9,0x23,0xef,0x6a,0x81,0x3b,0x5d,0xf3,0x02, -0xf7,0xbe,0x08,0x4e,0xb0,0x82,0x17,0xcc,0xe0,0x06,0x2b,0x18, -0xc0,0x10,0x5e,0xd8,0x70,0xab,0x2b,0x5d,0x01,0x0b,0xd8,0xc0, -0xa3,0x75,0xb0,0x86,0x37,0xcc,0x61,0x06,0x47,0xf8,0xc3,0x33, -0xb2,0xb0,0x88,0x47,0x2c,0x5a,0xd4,0xb2,0xb6,0xc3,0x28,0x4e, -0xb1,0x86,0x41,0xcc,0xe2,0xad,0x60,0x77,0xc0,0xae,0xc5,0xb0, -0x88,0x55,0x4c,0xe3,0x1a,0xbb,0xb7,0xc5,0x38,0x6e,0xf1,0x76, -0x72,0x2c,0x41,0x53,0xb9,0xa7,0x51,0x4b,0x5a,0x94,0x79,0x84, -0x8c,0x14,0x20,0xcb,0xc5,0xc8,0x14,0x69,0x14,0x63,0x94,0xbc, -0x95,0x1d,0x0b,0x64,0xc7,0x50,0xb6,0x0e,0x67,0x44,0x23,0xe5, -0x2a,0x3f,0xf9,0x20,0x4e,0x9e,0xb2,0x75,0xb2,0x6c,0xe5,0xdd, -0x3a,0x59,0xc9,0x51,0x1a,0x91,0xa9,0x66,0x07,0x66,0xef,0x94, -0xb9,0x21,0x60,0xce,0x4b,0x9a,0x9f,0x72,0x66,0x91,0xb4,0x39, -0xff,0x25,0x0f,0x40,0x00,0x67,0xe4,0x0c,0x80,0x38,0x3f,0x99, -0xce,0x76,0xae,0x73,0x9d,0x11,0xb0,0x9d,0xf0,0x3c,0x39,0xcf, -0x34,0xe1,0x72,0x9e,0x39,0x03,0x00,0x04,0xd0,0xb9,0xd0,0x59, -0x0e,0x34,0x9f,0xbd,0x3c,0xe8,0x35,0xbb,0x68,0xcc,0x6c,0xf6, -0x71,0x47,0xde,0x7c,0x1b,0x48,0x3f,0x9a,0xc9,0x2e,0xa1,0xb4, -0x4f,0x34,0xcd,0x91,0x41,0xef,0xf9,0xce,0xa0,0xfe,0x34,0x4d, -0xf8,0x2c,0xe7,0x3e,0x1b,0x7a,0xcf,0xa5,0x2e,0xb4,0x9e,0xe7, -0x5c,0x90,0x51,0x63,0xb9,0xd5,0xa2,0x39,0x74,0xfa,0xe2,0x4c, -0x67,0x18,0x45,0x62,0x07,0x87,0x32,0xd1,0xad,0x73,0xfd,0xa1, -0x5d,0x3f,0x65,0x45,0xbe,0xd6,0x8a,0xa7,0x01,0x5d,0x6a,0x0c, -0x89,0x9a,0xce,0xc8,0xae,0x33,0xb1,0x43,0xcd,0x6c,0x3d,0xcb, -0xba,0xd5,0x53,0xf6,0xb4,0xee,0xd2,0x52,0x6b,0x14,0xa0,0x40, -0x01,0x0a,0xb0,0x36,0xb6,0xb5,0x9d,0x6d,0x50,0xee,0x6c,0xdb, -0xd7,0xee,0x36,0xb8,0xb7,0x38,0x34,0x71,0x9b,0x9b,0xdb,0xbf, -0xec,0x1e,0xb7,0xd7,0x1d,0x6e,0x6f,0xf7,0x44,0xda,0x87,0xc6, -0xb3,0xa1,0x49,0x9d,0x6a,0x69,0xdf,0xf9,0xd0,0x81,0x56,0x35, -0x41,0x64,0x6d,0x6f,0x56,0xeb,0x39,0xce,0x89,0x56,0x1a,0xad, -0xf5,0xb3,0x22,0x4c,0x65,0x02,0xa0,0x99,0x35,0x91,0xc1,0x11, -0xce,0x1f,0x85,0x5b,0xe9,0xe0,0x1f,0x84,0x51,0xb7,0x20,0xfe, -0x40,0x7f,0x2b,0x64,0xd9,0x7f,0x7e,0xb6,0xb2,0x9f,0x3d,0x6a, -0x2e,0x5b,0x1c,0xcb,0xf1,0xb6,0x33,0xbf,0x35,0xde,0x18,0x6a, -0xe7,0x66,0xa9,0x19,0xff,0xe5,0x60,0xcf,0x38,0x65,0x95,0x14, -0xa1,0x7c,0x84,0x2b,0x7f,0x52,0xcb,0xdd,0xf3,0x72,0x95,0xa7, -0x8c,0xe5,0x4a,0x71,0xf9,0x52,0x61,0x7e,0x73,0x99,0xe7,0x1c, -0xce,0x24,0x6f,0xb5,0xbc,0xb5,0x3c,0xe5,0x53,0x4b,0x39,0xd6, -0x09,0xe9,0xb7,0x75,0x9e,0xcd,0x6f,0xf1,0xc0,0xc4,0xe9,0x0c, -0x19,0xb8,0x4f,0x76,0x9e,0xc2,0x9b,0x4f,0xe9,0xe7,0x72,0xa1, -0x3a,0xcf,0xcf,0x14,0x25,0xac,0x7b,0x47,0xeb,0x36,0xe7,0xfa, -0xcc,0xb3,0x9e,0xf2,0xad,0x2b,0xca,0xeb,0x9d,0x0e,0xba,0xbf, -0x87,0xbd,0xe8,0xa5,0xf3,0x1b,0xd1,0x46,0x47,0x88,0xd2,0x9b, -0x7d,0x10,0x7a,0xab,0x5d,0x20,0xf3,0x8e,0xbb,0xdc,0x07,0x2d, -0xc5,0xe8,0xc5,0x4c,0x51,0x74,0x08,0x4a,0x8a,0xbe,0xe8,0x77, -0xb1,0x07,0x1e,0x28,0x83,0xf7,0x88,0x05,0xff,0x3e,0xa5,0xc3, -0x1f,0x9c,0x8b,0x8a,0xcf,0x1f,0xe3,0xa3,0xe4,0xf8,0x8a,0x0f, -0xe4,0xee,0xca,0xbe,0x10,0xab,0xfb,0x3c,0x6c,0x7d,0x7b,0xfc, -0xe3,0x06,0x99,0xfb,0xd2,0x53,0x25,0x75,0x9f,0x10,0xb2,0xa9, -0x87,0x44,0xd4,0xa2,0x86,0x82,0x78,0xf7,0x9c,0x3e,0x9e,0xa9, -0xc7,0x88,0x95,0x28,0x7f,0xf8,0x14,0xbd,0xbe,0x90,0xb1,0xdf, -0xd4,0xea,0x6b,0xef,0xfa,0xc3,0xe2,0x13,0x80,0xba,0xa7,0x7d, -0xeb,0x05,0x3e,0x6f,0x5a,0x9b,0xfa,0xd8,0xa9,0xfe,0x34,0xdd, -0x43,0x9f,0x74,0x7d,0x2f,0x04,0xf3,0x21,0x31,0xb9,0x49,0x2c, -0x09,0x7b,0xbf,0xdd,0x6c,0x51,0x10,0x20,0xca,0xe3,0xe5,0x42, -0x7d,0xdc,0x5b,0xdf,0x65,0xd8,0xd7,0xbe,0xff,0xed,0x05,0x59, -0x7d,0xbb,0x5d,0x5f,0x52,0xe2,0x77,0x3d,0xf9,0xbd,0x6f,0x7e, -0xf0,0xa3,0x9f,0xf5,0x96,0x5f,0x35,0x4c,0x86,0xfe,0xef,0x45, -0xf3,0xd9,0xce,0x7e,0x06,0xb4,0xfc,0x9b,0xcf,0x7c,0xe8,0xf3, -0x3f,0xea,0x89,0xa6,0x77,0x10,0x30,0x53,0xca,0xe4,0x33,0x66, -0x33,0x7b,0xd9,0x47,0x14,0x29,0x42,0x80,0x67,0x63,0x80,0x6f, -0x83,0x80,0x4c,0xb1,0x80,0xc3,0xd4,0x80,0x2b,0x73,0x80,0xbb, -0x37,0x14,0x12,0x08,0x4d,0x14,0xd8,0x32,0x0f,0x78,0x81,0x74, -0x10,0x7f,0xa2,0x17,0x6a,0x83,0xe6,0x67,0xa5,0x66,0x74,0x03, -0x47,0x82,0x21,0xa8,0x6c,0x5b,0xe6,0x7c,0x40,0xd7,0x27,0x23, -0x28,0x6d,0x23,0x75,0x58,0x1b,0x68,0x81,0xb4,0x87,0x81,0xea, -0x27,0x83,0xa7,0x43,0x83,0x09,0x68,0x83,0xdc,0x47,0x52,0x05, -0x58,0x81,0x1d,0x58,0x83,0x1f,0x78,0x83,0x83,0x95,0x83,0x41, -0xb8,0x83,0x43,0x98,0x12,0xfe,0x17,0x6f,0x73,0xc6,0x84,0x97, -0x77,0x79,0x46,0xb7,0x84,0xf1,0xe6,0x7f,0xcd,0x47,0x85,0x71, -0x57,0x7a,0xb9,0x41,0x7e,0xe5,0xc7,0x81,0xee,0x77,0x11,0x11, -0xe8,0x1e,0x5a,0xc8,0x7e,0x5c,0xe8,0x29,0x48,0xb8,0x80,0xeb, -0x87,0x4f,0xed,0x47,0x86,0x5f,0x28,0x17,0x61,0x88,0x86,0x63, -0x18,0x7e,0x0a,0xd8,0x5c,0x54,0x18,0x5e,0xae,0xa6,0x12,0x1a, -0xd7,0x21,0xd0,0xf4,0x7b,0x1a,0x81,0x80,0x6e,0x10,0x87,0xdc, -0x97,0x87,0xb9,0xe7,0x24,0x8b,0xd2,0x87,0x3c,0xe8,0x1d,0xc3, -0xa4,0x87,0xaa,0x17,0x25,0x84,0x98,0x84,0x86,0x08,0x88,0x0c, -0xff,0x14,0x7c,0x10,0xb0,0x88,0xf1,0xc7,0x63,0xe1,0x32,0x87, -0xbf,0x16,0x79,0x85,0xa7,0x28,0x7e,0x51,0x88,0x09,0x97,0x11, -0x8b,0x27,0x76,0x9b,0xc8,0x88,0x9d,0x78,0x40,0x99,0x38,0x25, -0xa1,0x98,0x78,0x1a,0xf1,0x89,0x9a,0x48,0x88,0x93,0x48,0x89, -0x94,0x68,0x55,0x29,0x14,0x38,0xab,0xd8,0x87,0x3a,0x17,0x8b, -0x56,0xa7,0x88,0x9b,0x58,0x8b,0x55,0x37,0x79,0x91,0x98,0x8b, -0x34,0x57,0x76,0x61,0x37,0x8b,0xa2,0x18,0x7a,0x54,0x46,0x68, -0xb0,0x96,0x68,0xc5,0x08,0x6d,0x99,0x07,0x75,0x2b,0xb8,0x8c, -0x7e,0xf6,0x67,0xc8,0xf8,0x79,0x11,0xf4,0x8c,0x53,0x07,0x76, -0x7e,0xd7,0x73,0xb8,0x38,0x1b,0x64,0x07,0x8c,0xd7,0xf8,0x77, -0x32,0x97,0x1f,0xdb,0xc8,0x73,0xde,0x98,0x8d,0x83,0x21,0x12, -0x35,0xb7,0x78,0xd8,0xd8,0x8b,0xda,0x88,0x65,0x00,0xe7,0x64, -0xd2,0x77,0x65,0x86,0x16,0x65,0xf1,0x48,0x8c,0x25,0x98,0x77, -0x57,0x58,0x68,0xc8,0x96,0x77,0xf8,0x87,0x8f,0xf2,0xd8,0x76, -0xbd,0x35,0x6a,0x6d,0x27,0x71,0x98,0x62,0x14,0x11,0x07,0x23, -0x03,0xc9,0x70,0xd9,0xe2,0x70,0x91,0x88,0x90,0x20,0x54,0x70, -0x56,0x42,0x90,0xe5,0x71,0x82,0x78,0xa6,0x7c,0xce,0x76,0x74, -0xce,0xe7,0x8e,0xc7,0x26,0x77,0x2c,0x48,0x68,0xf6,0x67,0x91, -0xf8,0x26,0x6c,0xd2,0x98,0x8c,0xf0,0x58,0x65,0xda,0xd2,0x6e, -0x26,0x09,0x6e,0xe9,0xa6,0x40,0xec,0x36,0x6e,0xd9,0x96,0x92, -0x5e,0x75,0x6e,0x27,0x49,0x6e,0xaa,0x12,0x93,0x2b,0xe9,0x92, -0xd0,0x56,0x6f,0xce,0xff,0xe6,0x69,0x23,0xc7,0x82,0xfa,0x47, -0x6a,0x14,0xc9,0x91,0x49,0x57,0x82,0x73,0xc6,0x76,0x7f,0x46, -0x8c,0x1a,0xa9,0x77,0x05,0xe1,0x8f,0xcd,0x96,0x67,0xb6,0x86, -0x6b,0x97,0xd8,0x6b,0x4e,0xe9,0x12,0xc0,0x16,0x95,0x2b,0x31, -0x95,0x7d,0x22,0x6f,0x22,0xf7,0x93,0x42,0x77,0x93,0x15,0x89, -0x7f,0xf7,0x27,0x8f,0x55,0x78,0x65,0xf0,0x48,0x94,0x1b,0x07, -0x6b,0x1c,0x57,0x87,0xce,0x08,0x6b,0xfb,0x66,0x71,0x63,0x66, -0x1b,0x93,0x26,0x69,0x0c,0xe1,0x68,0x65,0x62,0x69,0x2b,0xa1, -0x69,0x6d,0x99,0x64,0x74,0x69,0x45,0x79,0x09,0x72,0x39,0x89, -0x6f,0x41,0x57,0x87,0x24,0x58,0x91,0xa2,0x06,0x90,0xa6,0x46, -0x8d,0x1f,0x17,0x98,0xf2,0xf7,0x8e,0x48,0x89,0x8f,0x1c,0xc9, -0x74,0x79,0x97,0x94,0x1e,0x87,0x96,0x77,0xf9,0x96,0x48,0xb6, -0x10,0x72,0xa9,0x97,0x98,0x56,0x97,0x70,0x69,0x12,0x9c,0x26, -0x2a,0x7b,0xa9,0x48,0x9f,0xb9,0x95,0x5e,0x39,0x7a,0xfd,0xb7, -0x6f,0x6d,0x37,0x32,0xa8,0x76,0x74,0x84,0xc9,0x95,0xf0,0xa8, -0x94,0xf9,0x67,0x89,0x68,0xd9,0x69,0xac,0x89,0x99,0x4b,0x46, -0x64,0x91,0xe6,0x96,0x66,0x26,0x25,0x41,0x16,0x66,0x9e,0xc9, -0x9b,0xb7,0xf9,0x63,0xba,0x39,0x7f,0xae,0x36,0x82,0x1a,0x17, -0x9b,0xc6,0xa8,0x8f,0xa7,0x36,0x72,0xa5,0xe7,0x8e,0x1f,0xf9, -0x91,0x50,0xe8,0x93,0xb2,0x59,0x12,0x68,0x69,0x9c,0xae,0x58, -0x9d,0xa1,0x07,0x9d,0xc4,0x39,0x9b,0xd7,0xb9,0x95,0xd7,0x49, -0x96,0xd3,0xb9,0x93,0x40,0x19,0x7d,0xd1,0xff,0x28,0x92,0x48, -0xb7,0x96,0xd6,0x79,0x9e,0x47,0x29,0x98,0x3f,0x19,0x9b,0x01, -0x28,0x9a,0x42,0xe7,0x9d,0xe0,0xb9,0x94,0x1b,0x59,0x11,0x4a, -0x89,0x8f,0xf3,0x26,0x65,0x8b,0x89,0x9e,0xfa,0x69,0x94,0xef, -0x48,0x91,0xd4,0x09,0x96,0x6b,0x87,0x9f,0x89,0xa9,0x6a,0xc6, -0x09,0xa0,0xea,0xa9,0x82,0xcc,0xb7,0x77,0x49,0x47,0x9d,0xfb, -0xb7,0x9f,0xfb,0x19,0x1e,0xa7,0x86,0x9a,0xa8,0x09,0x8d,0xf3, -0xf9,0x82,0xd3,0x59,0x9e,0xfd,0x86,0x98,0xe5,0xb9,0x65,0x67, -0xa9,0x76,0xf9,0x89,0x77,0x7f,0x69,0x89,0x0e,0x0a,0x62,0xf7, -0x09,0xa2,0xf6,0x68,0x9f,0x8f,0x69,0xa2,0x08,0x21,0x6b,0x25, -0xfa,0x9c,0xe6,0x69,0x10,0x2d,0xca,0x98,0x30,0xca,0x71,0x1f, -0xba,0x15,0x22,0x3a,0xa2,0x38,0x8a,0xa3,0x0c,0x9a,0xa3,0x3c, -0xda,0xa3,0x11,0x74,0xa3,0x3e,0x1a,0xa4,0x42,0x6a,0x9d,0x2b, -0xf2,0x59,0x3b,0x61,0xa4,0x2c,0x81,0xa4,0xeb,0x53,0x11,0x22, -0xb9,0x7f,0x9a,0x77,0x8c,0x81,0x66,0x98,0x12,0x6a,0x6c,0x5b, -0x26,0x1a,0x01,0x97,0x96,0x09,0x1a,0x70,0x91,0x09,0x6d,0x57, -0x9a,0x79,0x81,0x05,0x56,0x2c,0x45,0x58,0x9d,0x95,0x55,0x61, -0x9a,0x58,0x63,0x0a,0xa6,0xbd,0x64,0xa6,0x87,0x42,0xa6,0x69, -0xaa,0x57,0x14,0xd1,0x71,0xd1,0xe6,0x76,0xf3,0xc8,0xa1,0xc5, -0x57,0x7c,0x72,0x8a,0x9c,0xf6,0x88,0x67,0xb4,0x16,0x8f,0xe0, -0x69,0x77,0xdb,0x39,0x82,0x70,0x67,0x94,0x19,0x97,0x8c,0xf8, -0xd7,0x8e,0x1d,0xa1,0x54,0x60,0xe5,0x57,0x62,0xd5,0x55,0xde, -0xff,0xf1,0x55,0x23,0xa5,0xa8,0x5c,0x35,0x3e,0x86,0xa5,0x4e, -0x7f,0x95,0x40,0x72,0x81,0xa8,0x8f,0x8a,0x58,0x26,0xd5,0x2b, -0x80,0xb9,0x74,0x18,0x27,0x96,0x00,0x49,0x9a,0xab,0x66,0x6f, -0x19,0xba,0x9c,0xf1,0xa9,0x74,0xa3,0xd9,0x95,0xc5,0x09,0x68, -0xed,0xe8,0x97,0xa9,0x99,0x67,0xef,0xf4,0x54,0x63,0x53,0x49, -0x55,0x75,0x07,0x9b,0x0a,0x58,0x93,0x24,0xab,0x03,0xe8,0x83, -0x1d,0x85,0x41,0xb8,0xa9,0x41,0x4a,0x35,0xab,0xbc,0x6a,0xab, -0xdf,0x82,0xab,0x21,0xa4,0xab,0xb4,0xaa,0x4c,0x9b,0xaa,0x4f, -0x5d,0xa9,0x7c,0x00,0x47,0x7f,0xa0,0x26,0x6d,0xd9,0x49,0xaa, -0xab,0xaa,0x77,0x64,0xa9,0x95,0xa3,0xb7,0x8f,0xd0,0xea,0xa9, -0xf5,0x07,0x70,0xdc,0xfa,0x91,0xe8,0xc4,0x49,0xd4,0xf7,0x49, -0xa1,0x62,0x42,0x27,0xe4,0x3a,0xea,0x24,0x4f,0xee,0x96,0x70, -0x81,0x74,0x4f,0x7a,0x98,0x49,0xfa,0xa4,0x4b,0xc2,0x3a,0xae, -0xff,0x84,0x2d,0xfb,0x68,0x72,0xd4,0x46,0x65,0x80,0xda,0x91, -0x87,0x89,0xad,0xd4,0x4a,0xa3,0x16,0x87,0xaa,0x25,0xf8,0x9d, -0xdd,0x99,0xaf,0xa4,0x46,0x6c,0x6c,0xb7,0x48,0xbb,0x04,0x4d, -0xca,0xa4,0x42,0xf4,0x14,0x4c,0x0b,0x5b,0x49,0xe4,0x6a,0x4c, -0x29,0xf5,0x4c,0x12,0xbb,0x4c,0x0f,0xeb,0x4c,0x11,0xdb,0x4b, -0x90,0x94,0x48,0xde,0x2a,0x94,0x12,0x99,0x96,0x42,0xc9,0x9d, -0x77,0x46,0xa5,0x26,0xab,0xa7,0x51,0x7a,0x21,0xae,0xca,0x97, -0x1b,0xea,0xaf,0xf5,0xf8,0xac,0xa3,0x0a,0x9d,0x77,0x56,0x4f, -0xe8,0x3a,0x53,0xc5,0xff,0x14,0xaf,0xb1,0x5a,0xb3,0x1c,0x55, -0xaf,0xa8,0x98,0x4e,0x3b,0x3b,0x45,0xe5,0xea,0x22,0xfc,0xa4, -0xb3,0xfe,0x04,0xb4,0x0c,0x09,0xb3,0x19,0x89,0x7c,0x73,0x4a, -0xad,0x43,0x99,0xa7,0xa8,0xf6,0x98,0x83,0x76,0xb0,0xf6,0x98, -0x9d,0x2c,0x2b,0xad,0xc5,0x99,0x6c,0x30,0xeb,0x95,0x09,0x9b, -0xb3,0xc0,0xe7,0x89,0x46,0x9b,0xb1,0x1b,0x24,0x45,0xbe,0xfa, -0xab,0x65,0x32,0xb4,0x5d,0x7b,0x40,0xc5,0x0a,0xb6,0x5e,0x14, -0x79,0x88,0xa4,0x4f,0x48,0x5b,0xa8,0x10,0xba,0x9e,0x2e,0xdb, -0xb4,0xdb,0x49,0xb2,0x7b,0x76,0xad,0x02,0x7b,0xb7,0x76,0xbb, -0x94,0xd8,0x79,0xb7,0x3b,0x99,0xab,0xb1,0x48,0x42,0x64,0x2b, -0xb4,0x9d,0x13,0xb8,0x18,0x0b,0x53,0x22,0x94,0x42,0xbe,0x8a, -0x52,0x1b,0x14,0xb8,0x69,0x1b,0x94,0xff,0xd6,0xaa,0xf1,0xa8, -0x68,0x9b,0x57,0xb7,0x7d,0x69,0xb9,0xcd,0x58,0xb2,0xa7,0xea, -0x9c,0xd1,0x9a,0x7c,0xcb,0xc7,0x76,0x08,0x7b,0x7f,0x6c,0x29, -0x42,0x5e,0x0b,0x49,0x33,0xc3,0x3f,0xa4,0x08,0xb4,0xa5,0x83, -0xba,0x0d,0xe4,0x44,0xab,0xfb,0x3d,0xa9,0xdb,0x3f,0x72,0x37, -0x91,0xcf,0xea,0x97,0x44,0x69,0xb5,0xd9,0x7a,0xb5,0x7c,0xa9, -0xb9,0x01,0xbb,0xb2,0x49,0x0b,0x65,0xba,0xeb,0xa9,0xf8,0x96, -0xaa,0x92,0x59,0x40,0xe0,0x03,0x38,0xa6,0x7b,0x30,0xe7,0x93, -0x3d,0xdf,0xc3,0xa8,0x1d,0xb1,0x40,0xc7,0x7b,0x3e,0x96,0xfa, -0x3c,0xcb,0x6b,0x3e,0x0e,0x14,0x75,0x4f,0x28,0xb3,0x7e,0x2b, -0xa0,0x08,0x2a,0x82,0x04,0x1a,0xbc,0x6a,0xff,0xb9,0x71,0x78, -0x3b,0xbc,0x19,0xe7,0x9f,0x9f,0xab,0x9c,0xc3,0x5b,0x6c,0x65, -0x69,0x12,0xad,0x63,0x3b,0x2e,0x13,0x3b,0x63,0x65,0x11,0xed, -0xfb,0x3a,0xef,0x8b,0x3b,0xb3,0xc3,0x33,0xae,0x13,0x3a,0xf0, -0xeb,0xbc,0x22,0x81,0xbf,0xee,0x9b,0x3a,0xf1,0xab,0x91,0x87, -0xf9,0x95,0x2d,0xeb,0x74,0x4e,0x87,0xb2,0x06,0xfc,0x97,0x56, -0xaa,0xbd,0x70,0x5b,0x8c,0xe2,0x11,0xa1,0x6f,0x27,0xa1,0xe8, -0xbb,0x76,0xd4,0x26,0x6b,0x27,0x53,0x37,0xcc,0x1b,0x37,0x33, -0x83,0x32,0xd2,0x03,0x38,0x1a,0xec,0x12,0x7d,0x13,0xbd,0x81, -0xc3,0xbf,0xec,0x4b,0x33,0x1d,0x0c,0x37,0xb2,0xf3,0xa6,0xc5, -0xc8,0x74,0x28,0xaa,0x71,0x8f,0x99,0xa2,0x26,0xfa,0xc2,0x09, -0x71,0x9f,0x72,0xc6,0xc2,0x2d,0xfc,0x9c,0x4e,0x98,0xbd,0x4e, -0xcb,0xc2,0x36,0x6c,0x9f,0x87,0x8a,0x33,0xf4,0x0b,0xc4,0x24, -0x3c,0x37,0x40,0x1c,0x3a,0x41,0x23,0xa9,0x45,0x83,0x3a,0x47, -0x5c,0x3a,0x49,0x7c,0x33,0x3d,0x33,0xc4,0x2a,0x3a,0xa4,0x00, -0x36,0x4f,0x01,0x23,0xa9,0x26,0x02,0xc5,0x69,0x9b,0x30,0xf7, -0xbb,0x22,0xd3,0x2b,0xc5,0x38,0x16,0xab,0xdc,0xc2,0x2c,0xc5, -0xc2,0x90,0x0d,0x29,0x2d,0xc4,0xd2,0x2d,0xdc,0x02,0xaf,0x8c, -0xbb,0x2d,0x67,0x2c,0xc6,0x8f,0x5b,0x27,0xc7,0x1a,0xc6,0xd5, -0x32,0xc6,0xcc,0xea,0xc5,0x00,0xc8,0x8c,0xec,0x88,0xc7,0x52, -0x29,0x7b,0x94,0xe2,0x29,0xa7,0x12,0xb4,0x65,0x2b,0x29,0x9c, -0xa2,0x64,0xa6,0x72,0x29,0x8f,0xc2,0x90,0x7b,0xd8,0xc7,0x85, -0xff,0x0c,0x2a,0x14,0xbb,0x29,0x8a,0x6c,0x29,0xa0,0x72,0xb4, -0x7a,0x4c,0x8d,0x4f,0x5a,0xa5,0x55,0x6a,0xc0,0x5c,0x9a,0xc9, -0x84,0xa6,0xa5,0x5c,0x7a,0xb2,0x53,0x3b,0xc3,0x75,0xda,0x65, -0x91,0xe2,0x26,0x5e,0x02,0x27,0x55,0x72,0x25,0x88,0xbc,0x25, -0x5c,0x67,0xca,0x60,0x72,0x29,0x72,0x82,0xb3,0xeb,0x40,0xca, -0xac,0x1c,0x27,0x58,0x92,0x78,0xb2,0x6c,0x29,0xad,0x2c,0x26, -0x1e,0xab,0x8f,0x1c,0xaa,0xaf,0xbc,0xdc,0x9a,0x3b,0xc6,0xa7, -0xa1,0x2c,0xbc,0x74,0x4b,0xcc,0xc6,0x0c,0x6a,0x53,0x3b,0xb2, -0x99,0x0b,0xb9,0xff,0xa6,0x3e,0x1d,0x22,0x71,0x21,0x02,0xcb, -0x28,0x62,0x22,0x32,0xc2,0x21,0xd3,0xfc,0x21,0xd1,0x3c,0xb8, -0xee,0xb4,0x0e,0xd7,0xbc,0x13,0xd5,0x8c,0xb9,0xa6,0x06,0xb2, -0x11,0x7c,0x91,0xbd,0x5b,0xcc,0xbc,0x9b,0xad,0x02,0x6a,0xa0, -0xe5,0xcb,0xb4,0x17,0x97,0x6a,0x9e,0xeb,0x2b,0xe8,0xf1,0x1f, -0x7c,0x21,0x78,0x04,0x07,0x79,0x3e,0x21,0xcf,0x52,0x41,0xcf, -0x14,0x7b,0xcf,0xeb,0x31,0xcf,0xad,0x97,0xca,0xfd,0x81,0xcf, -0x4c,0xa1,0xcf,0x6e,0xab,0x9c,0xe4,0x0c,0xba,0x3d,0x4c,0xb5, -0x25,0x0b,0x65,0x48,0xdb,0xb9,0x22,0xb8,0xad,0x1b,0xa7,0xcc, -0xcb,0x0c,0x72,0xd3,0x09,0x52,0xb9,0x81,0x1c,0xfe,0xbc,0x7d, -0x75,0x5c,0x1c,0x18,0x9d,0xcf,0xc3,0x67,0xac,0x17,0x1d,0x8a, -0x03,0x3d,0x7c,0x1b,0xed,0x96,0xea,0x98,0xd1,0xb0,0xa1,0x1c, -0xfb,0x8a,0xd0,0x45,0xf9,0xce,0x24,0x7b,0xbb,0xf2,0xc6,0xc0, -0xb4,0x7b,0xd0,0x1b,0xff,0x29,0x75,0x19,0x7a,0x77,0x59,0xf9, -0xa2,0x16,0x21,0xd2,0xda,0x47,0xcf,0x7a,0xc1,0xd3,0xac,0xe7, -0xd3,0x80,0x01,0xd4,0x8e,0xb7,0x7d,0x43,0xbd,0x88,0x3d,0x3d, -0x7c,0x4f,0x17,0x98,0xa0,0x4b,0x82,0xe4,0x6b,0xb9,0x30,0xed, -0xd0,0xa2,0xca,0x9e,0xda,0xbb,0xbe,0xd8,0xda,0xbd,0xbb,0xcb, -0x39,0x48,0x1d,0xd4,0x42,0x8d,0x14,0x5b,0x5d,0xd4,0x46,0xed, -0xd5,0x19,0xad,0xd4,0x62,0xed,0xd1,0x5d,0x1d,0x94,0x29,0x8a, -0xd0,0x73,0xba,0x6f,0x82,0xe6,0xbb,0x83,0x59,0x96,0x56,0x6a, -0xd5,0xa4,0xca,0x93,0xa6,0x3a,0xbb,0xcc,0x6c,0x32,0x47,0xca, -0x39,0x79,0xad,0xa4,0x1e,0x81,0xd7,0x49,0x7a,0x95,0xe0,0x2c, -0xb3,0x5b,0x5a,0xce,0xa4,0x59,0xbb,0x9a,0x6b,0xd3,0x0d,0xaa, -0x95,0x58,0x88,0xaa,0x21,0x09,0xa4,0x76,0xfc,0x5f,0xec,0x7c, -0xce,0x62,0xa9,0x8c,0xcc,0x06,0x9f,0x2f,0xb8,0xbe,0xc3,0x69, -0xb7,0xfd,0x79,0xd5,0xcb,0xd7,0xd9,0x8f,0x4d,0x89,0x19,0x8a, -0x9f,0xa0,0xfb,0xd2,0x6e,0xcd,0xaa,0x2f,0x78,0x7f,0xf4,0x87, -0xb7,0x58,0xc8,0xd9,0x58,0x0d,0x7a,0x9f,0xed,0x8a,0xa5,0xaa, -0xaa,0x95,0x3b,0x92,0xf2,0x49,0xdb,0xa9,0x79,0x6f,0xa2,0x46, -0xce,0x53,0xbd,0x98,0xa2,0x77,0xd3,0xaf,0x8d,0x9e,0x8c,0xed, -0xcb,0x14,0x4c,0xd5,0xc7,0xc8,0x93,0xe0,0x99,0xaa,0x95,0x3d, -0xbc,0x4f,0xda,0xdb,0x91,0xe9,0xd8,0xbf,0xcd,0x5c,0x1e,0x2a, -0xba,0x1b,0x39,0x85,0x2e,0x3c,0xa3,0xd5,0xfd,0xa2,0xc9,0xa6, -0xd3,0x2c,0xea,0xb4,0x54,0x2a,0x9a,0x2a,0xff,0xfb,0xdc,0x43, -0x9a,0x82,0xe7,0xe9,0xb4,0x30,0x1a,0xc3,0x1f,0x3a,0xa1,0xe0, -0x4d,0x89,0xce,0x0d,0xde,0x79,0xba,0xde,0xe9,0xdd,0x64,0xef, -0xcd,0x5c,0x99,0x79,0x69,0x7b,0x55,0x99,0x6e,0x16,0x9c,0x78, -0xe9,0x9b,0xf4,0x0d,0x18,0xf6,0xcd,0x99,0xf8,0xfd,0x74,0xd8, -0xab,0x12,0xd2,0x18,0xa7,0x02,0xfc,0x6e,0x91,0xd9,0xa4,0xcb, -0x31,0x99,0xf7,0xdd,0xdf,0x43,0x36,0xdf,0xb4,0x11,0x9a,0x47, -0xb6,0x99,0xb9,0xd1,0x99,0x62,0xe6,0xe0,0xa0,0x69,0xe1,0x0a, -0xda,0xce,0x02,0x8e,0x79,0x15,0x1c,0xa2,0xff,0x67,0x8c,0xa2, -0xca,0xd6,0xee,0x1d,0xe1,0xfd,0xad,0xe0,0x96,0xf9,0x99,0x97, -0x69,0x11,0x76,0x49,0xe1,0xf4,0xad,0xdf,0x0f,0x8e,0xe1,0x19, -0x6e,0xd7,0x2d,0xd8,0xce,0x38,0xad,0x76,0x91,0xcd,0xd9,0xe2, -0x9d,0x12,0x3b,0x50,0xcb,0xa0,0xb5,0x10,0x3b,0x0e,0x23,0x15, -0xf1,0xe3,0x45,0x4a,0x11,0x42,0xee,0x59,0x6f,0x6a,0xe3,0x8e, -0x1d,0x82,0x4a,0x7e,0x77,0x24,0x17,0x9f,0x7b,0x2b,0x20,0xe8, -0xb4,0x92,0xe7,0x26,0x37,0xe8,0x04,0x93,0x2c,0x49,0xe5,0x5d, -0xc4,0x92,0x35,0xb9,0xc7,0x25,0xa9,0xe5,0x26,0xe9,0x3c,0x08, -0x5c,0x98,0xe4,0x29,0xa5,0x0b,0x4c,0xa1,0x97,0xec,0x8e,0x71, -0xdd,0x8e,0xc8,0x28,0xa8,0x85,0xfd,0xd2,0x2a,0xd8,0x67,0x5e, -0x4a,0xe0,0x0d,0x69,0x14,0x91,0x6c,0xe4,0x1c,0x42,0xe7,0x87, -0x6c,0xe7,0xcd,0x84,0xe7,0x12,0x07,0xc7,0x0b,0x59,0xe7,0x3d, -0xde,0x10,0xbc,0x1c,0x6b,0xfe,0x08,0x90,0xa7,0xc9,0x8f,0xda, -0xff,0xaa,0x94,0x7e,0xea,0x6c,0xa8,0x4d,0xe8,0xed,0xa9,0xd9, -0xee,0x1c,0xb0,0x51,0x1a,0xb9,0xfc,0x88,0x9f,0x01,0x29,0x1f, -0x86,0x8c,0x33,0x23,0x84,0x72,0x29,0x82,0xe9,0x98,0x02,0x33, -0x9b,0x0e,0x55,0xee,0xe1,0xe9,0x56,0x02,0xea,0x1c,0xc4,0xe9, -0xa3,0x8e,0x1c,0x52,0xf2,0xe9,0x1c,0x7c,0xea,0xa2,0xfe,0x6e, -0xf4,0xe6,0x91,0x6c,0x7d,0x91,0xfc,0xea,0xa4,0xcd,0x29,0xbc, -0x9c,0x3b,0xb7,0xdf,0x4a,0xda,0xf4,0x66,0xd8,0x57,0x56,0xd1, -0xd9,0xa7,0xea,0x61,0x62,0xc2,0x29,0xf4,0xea,0xde,0x81,0x1f, -0x46,0x31,0xec,0xad,0x1e,0xea,0x29,0x82,0xec,0x9f,0x42,0xec, -0xcc,0xee,0x1e,0xce,0xae,0xec,0xb5,0x13,0xed,0x9d,0xa6,0xb2, -0x2c,0x0d,0xe9,0x23,0xe3,0xbb,0xd9,0x9e,0xdc,0xe0,0xfc,0x9f, -0xae,0xaa,0xb5,0x13,0xbc,0x74,0x09,0x78,0x18,0xca,0x7e,0x41, -0x1f,0x21,0xed,0xf8,0xf1,0xec,0xd5,0xfe,0x88,0x36,0x59,0xee, -0xc9,0xee,0xca,0xed,0x7e,0xb6,0xf4,0x14,0x1f,0xec,0x8e,0xee, -0x7d,0xcd,0xa4,0x28,0xda,0xd0,0xdb,0xab,0xed,0xed,0xbd,0xdb, -0xe6,0xec,0x9f,0xe0,0xab,0xb7,0x50,0x2d,0xce,0xdd,0xbe,0x67, -0x3b,0x98,0xec,0x82,0xe8,0xb5,0x03,0xc8,0xb0,0xcd,0x3e,0x15, -0x8b,0x92,0xe7,0x8c,0xe4,0xf0,0xea,0xde,0x17,0x11,0x9f,0x8a, -0xb3,0x4a,0xf1,0x72,0xd1,0x14,0x51,0x22,0xf1,0xe8,0xaa,0xf1, -0x47,0x1e,0xf0,0xfc,0xce,0xb7,0x73,0xa7,0xd0,0xfd,0xee,0xed, -0x90,0x9e,0xd8,0xd3,0x3a,0xb0,0xe3,0x3e,0xb3,0x11,0x88,0x7d, -0x40,0xd8,0x80,0xee,0xff,0x7a,0x49,0x15,0xff,0x81,0x30,0xcf, -0x81,0x32,0x4f,0x7d,0x34,0xbf,0xf1,0x0a,0x78,0xf3,0x78,0xd3, -0xf0,0x5a,0xf8,0xf0,0x18,0xe8,0xf3,0x80,0x03,0xf4,0xe4,0xf7, -0x40,0xa7,0xed,0xc0,0x04,0x6a,0x8c,0x0c,0xed,0xd2,0xfd,0x3a, -0xa8,0x9b,0x1b,0xd8,0x93,0xed,0xed,0xe2,0x3e,0xdb,0xce,0x56, -0x86,0x1d,0x9f,0x86,0x32,0x25,0x83,0x35,0x7f,0xf1,0x63,0xb8, -0xf5,0x83,0xd5,0xf5,0x59,0xff,0xf5,0x31,0x18,0xf6,0x3c,0x8f, -0x81,0x63,0x5f,0x81,0x0d,0xc8,0x52,0x55,0x25,0x9e,0x0b,0xac, -0xe6,0x17,0xa9,0xa1,0x65,0x8e,0xa5,0x74,0xf7,0x9a,0xb7,0x3b, -0xc9,0xa7,0x0a,0x8d,0xc2,0x5d,0xf5,0x85,0x8d,0x74,0x58,0x2f, -0x88,0x64,0xcf,0xb0,0x3b,0x7f,0xec,0x0a,0x98,0xf6,0xb0,0x93, -0xa9,0xb8,0x27,0xf6,0x80,0xaf,0xf6,0x32,0x45,0x52,0x42,0xff, -0x81,0x86,0xff,0xbe,0x88,0x3f,0xf8,0xf4,0x49,0xc3,0xaa,0x16, -0xa3,0x28,0x6a,0x9a,0x35,0x8c,0xc3,0x2c,0x6a,0xdd,0x39,0xfd, -0x84,0x37,0x1c,0xa5,0x3d,0xac,0x6f,0x27,0x4a,0xfa,0x78,0x37, -0xdd,0x2e,0xea,0x13,0x4b,0x31,0xf4,0x92,0x12,0xf3,0x19,0xbf, -0x7e,0x29,0xb2,0xfa,0x36,0xdf,0xfa,0x38,0xff,0xfa,0x4e,0xe5, -0x1e,0xb2,0x4f,0x86,0xae,0x6f,0xf4,0x6d,0x2f,0x17,0xb9,0x4f, -0xf4,0x39,0x0f,0xfb,0x39,0xba,0xd9,0x00,0x58,0xa3,0xba,0x93, -0x14,0x68,0xbf,0xf0,0x68,0xeb,0x57,0xc4,0x84,0xfb,0xab,0x7f, -0xf1,0x0c,0xcf,0xfc,0x1e,0xe2,0xfc,0xc9,0xef,0xf1,0xaf,0x7f, -0x7a,0xb1,0xff,0xfc,0x59,0x1f,0xfd,0x2c,0xff,0x35,0xfd,0xfa, -0xa9,0xb2,0x37,0x6a,0xfc,0xc7,0x1f,0x15,0xf7,0xce,0xba,0xa8, -0xd2,0x11,0xe4,0x7f,0xee,0xe6,0xff,0xee,0xe9,0x2f,0xef,0xf8, -0x7e,0xfe,0x22,0xd1,0xfe,0xa5,0xfe,0xfe,0x36,0x19,0xdf,0xc5, -0xbd,0xa0,0x03,0x6e,0x11,0x39,0x47,0xed,0xb1,0x68,0xec,0xe8, -0x0f,0x10,0x99,0x04,0x42,0x58,0xb7,0x4e,0x1d,0x84,0x38,0x71, -0xee,0x2c,0x64,0xc8,0x90,0x13,0x27,0x08,0x00,0x24,0x4e,0x94, -0x08,0x41,0xe0,0xc0,0x82,0x07,0x13,0x36,0xe4,0xf8,0x30,0x22, -0xc5,0x89,0x16,0x2f,0x12,0x34,0x88,0x50,0x21,0x47,0x87,0x10, -0x41,0xae,0x64,0xd9,0xd2,0xe5,0x4b,0x98,0x31,0x65,0xce,0xa4, -0xf8,0x00,0x00,0x02,0x9c,0x13,0x6d,0x82,0xc4,0xb9,0x93,0x66, -0xc5,0x8b,0x99,0x08,0xaa,0xd3,0xb8,0x11,0xe5,0x43,0x95,0x2c, -0x45,0x62,0x24,0x6a,0xf2,0x64,0x47,0x8f,0x2d,0x97,0x0a,0x35, -0x58,0xf4,0x69,0x43,0xa4,0x1f,0x57,0x4e,0x1d,0x6a,0x15,0xe5, -0x9d,0xac,0x3f,0xc5,0x8e,0x25,0x5b,0xb6,0xa5,0x4d,0x04,0x2b, -0x1f,0xa4,0x65,0xe9,0xf3,0x27,0x04,0xb8,0x42,0x9b,0xc2,0xa5, -0x5b,0xd7,0xae,0xd6,0xad,0x71,0x21,0xcc,0xbd,0xdb,0x17,0x2f, -0x48,0xba,0x72,0x0f,0xfa,0xed,0xeb,0x32,0xf0,0xde,0xc1,0x84, -0xed,0x9a,0x65,0xec,0x96,0xf1,0x63,0x90,0x6b,0xdb,0xb2,0x55, -0x4b,0x79,0x6c,0x5d,0x14,0x0a,0x14,0xa0,0xc8,0xbc,0xb9,0x33, -0x67,0x05,0x7f,0xa5,0xd2,0xd5,0x0c,0xda,0x73,0xe9,0xce,0xa2, -0x95,0x92,0x36,0xdd,0xfa,0xb3,0xea,0xbc,0x70,0x5d,0xa3,0x46, -0xff,0x0d,0x1b,0x72,0x4c,0xc9,0xb7,0x75,0x03,0xc8,0x1d,0xd9, -0x72,0xcd,0xdf,0x6d,0x5d,0xee,0x88,0xa4,0x78,0xf1,0x4c,0xe2, -0xc6,0xeb,0xd2,0x4c,0xae,0x1c,0x2e,0xf3,0xe2,0xce,0x6d,0xf3, -0xe6,0xfd,0xc0,0xb1,0x75,0x9b,0xd9,0xab,0x5b,0xd7,0x89,0xbd, -0x26,0xf6,0x9d,0xd7,0xa9,0xd7,0x1c,0xaf,0xb3,0xbc,0x44,0xed, -0xe4,0xc1,0x7b,0x47,0x1f,0x9c,0xb7,0xfb,0xf7,0x30,0xd1,0xae, -0x5c,0x47,0xd0,0x3e,0x7d,0xfb,0xf5,0x67,0xe6,0x27,0xb8,0xb5, -0xfe,0xff,0x99,0xfe,0xbb,0x0f,0x24,0x01,0xf5,0x93,0x89,0xbf, -0x75,0xfc,0xcb,0x4f,0x3e,0xb4,0x10,0xf0,0xa9,0x41,0xeb,0x1c, -0x6c,0xd0,0x41,0xea,0x70,0xa2,0x70,0x22,0x07,0x2d,0x8c,0x4f, -0xa7,0x0c,0x81,0xeb,0x2d,0xbe,0x07,0x6f,0xfa,0x50,0x32,0x0b, -0x25,0x4c,0x6b,0xbe,0xca,0x5c,0x0a,0xcf,0xb1,0x0a,0x59,0x2a, -0x50,0xb4,0x17,0xf7,0x2b,0x50,0x41,0x00,0x65,0x8a,0x91,0x40, -0xfe,0x64,0x5c,0x10,0xb0,0x19,0x5f,0x5a,0x8b,0x32,0xed,0x80, -0xcc,0xd0,0xb2,0x0e,0x31,0x04,0x8e,0x43,0x0f,0x2d,0x5b,0x4b, -0xb2,0xf0,0xd8,0x0a,0x72,0xc3,0xf6,0xbe,0xcb,0xe9,0xc3,0x23, -0xcf,0xa2,0xf0,0xc2,0xec,0xd6,0x73,0x6c,0x47,0x1a,0x7f,0x12, -0xb0,0xa5,0x2f,0x69,0xe2,0x92,0xc7,0xfe,0x68,0x0a,0x13,0x3f, -0x03,0x7d,0x54,0xb2,0xc8,0xf6,0xa8,0x44,0x8f,0xc5,0x28,0xe3, -0x8c,0x32,0xc4,0x0e,0x99,0x04,0xf2,0x26,0x39,0xa1,0x8c,0xf0, -0xce,0xc9,0xce,0xc2,0xd3,0xc9,0xf9,0x7e,0x2c,0x71,0x37,0x42, -0x0b,0x35,0x74,0xa6,0xff,0x11,0xd9,0x7c,0xcf,0x4d,0x89,0x24, -0x4c,0x31,0x4f,0x3b,0xe7,0xa4,0x30,0x3b,0x21,0x91,0xb4,0x74, -0xcf,0x2a,0x7d,0xb3,0x72,0xa5,0x9c,0xd0,0x3b,0xf4,0x53,0x50, -0x43,0xb5,0xb4,0xcd,0x35,0x19,0xc5,0xf0,0xba,0x4a,0x2f,0x6d, -0x71,0xc9,0x0c,0x73,0x4b,0xcf,0xd3,0x37,0x4f,0xfc,0x51,0xd3, -0x47,0x6b,0x55,0x51,0x54,0x5c,0x73,0x85,0x8c,0x3b,0x4f,0x4f, -0xec,0x4e,0x51,0x58,0x21,0x55,0xf2,0x57,0x52,0xcd,0xf3,0xf5, -0xd8,0xf3,0xbc,0x5b,0x72,0x56,0x5a,0x9b,0x75,0xd6,0x25,0xf8, -0x74,0x95,0x76,0xda,0xca,0xbc,0x03,0x92,0x3b,0x56,0xdb,0xb2, -0x36,0x32,0xb7,0x94,0xbd,0x33,0x55,0x26,0xf1,0x0c,0xf6,0xa6, -0x9e,0x24,0x5c,0x8f,0x3c,0x5b,0x8d,0xa5,0x76,0x5d,0x76,0xc9, -0x22,0xb1,0x53,0x0c,0xcb,0x15,0x97,0x53,0x0d,0xe9,0xa5,0x48, -0x43,0x22,0x79,0x32,0x72,0xde,0x46,0x53,0x2c,0xb1,0xde,0x37, -0xbb,0x55,0x92,0xbb,0x68,0xdb,0x35,0xf8,0xe0,0x3c,0x37,0x45, -0x58,0xa6,0x08,0x65,0x02,0x98,0x5f,0x72,0x0b,0x5e,0x78,0xe2, -0x69,0x4d,0xcd,0x94,0xe2,0xef,0xb0,0x83,0x17,0x63,0x8e,0x3b, -0x36,0xcb,0xaf,0xd1,0xee,0xb2,0x77,0xe4,0x78,0x59,0xda,0xb8, -0x22,0xd1,0x9e,0x03,0x2c,0x65,0xd1,0x4e,0x6e,0xf4,0x37,0x97, -0xc9,0xfd,0x89,0x9b,0x99,0x68,0x96,0xc8,0x66,0x8f,0x01,0xb0, -0x66,0x25,0x65,0xc4,0xea,0xf9,0x40,0x65,0x94,0xc1,0x62,0x68, -0x2c,0x82,0x4e,0x39,0x68,0xa2,0x8b,0x56,0x06,0x2f,0x04,0xcc, -0x30,0x03,0x66,0xa7,0x29,0x7b,0xba,0x69,0xff,0x90,0xa6,0x36, -0x03,0x43,0x08,0x58,0x61,0xe5,0xae,0x01,0x06,0x80,0x80,0x2d, -0x33,0xb2,0xde,0xda,0xae,0xae,0x21,0xb8,0xba,0xd1,0xa8,0x79, -0x4a,0x5b,0x22,0xab,0xab,0xc6,0xe9,0x6c,0x96,0x70,0xe6,0xc6, -0xe6,0xb9,0x5b,0xa2,0x5b,0x6e,0x42,0x7f,0x06,0xa0,0x67,0xbd, -0x77,0x8e,0x49,0x6f,0x9e,0xf7,0xa6,0x88,0x6f,0xc0,0x7f,0x0e, -0x3a,0x26,0x04,0xe0,0x12,0x3a,0x68,0xa4,0x97,0xfe,0x9a,0x6d, -0xc5,0x95,0x6e,0x1c,0xae,0xb3,0x97,0xa3,0xc8,0x72,0x00,0x30, -0x47,0x59,0xe5,0xa6,0xc5,0xd6,0xfa,0xf3,0xae,0xbd,0x9e,0x3a, -0xf1,0xcf,0x4b,0x0f,0xfd,0x6b,0xb6,0x34,0xcf,0x9c,0xae,0x90, -0x58,0xbf,0xdc,0x75,0x8a,0xea,0xbe,0x99,0xe6,0xb9,0xeb,0xc6, -0x79,0xa5,0xdb,0x6b,0x07,0x00,0x1a,0x00,0x6c,0xbf,0x9d,0x67, -0xbd,0x95,0xe1,0x86,0x70,0xc6,0x0f,0x97,0xc8,0x1a,0xbf,0x25, -0x2a,0x5e,0x79,0x9d,0x91,0x67,0x89,0x71,0xc1,0x99,0x7f,0xde, -0xe1,0xb0,0x85,0xbe,0xab,0x68,0xb3,0x2d,0x84,0xc0,0x7a,0xbb, -0xb0,0xc7,0x09,0x82,0xb2,0xc5,0xb1,0x4b,0x28,0xc7,0x33,0x0f, -0x7f,0xfc,0xed,0x9f,0xeb,0xdc,0x73,0xad,0x4f,0xcf,0xfe,0x7b, -0xf6,0x59,0x71,0x3f,0x27,0xc5,0x21,0x70,0xc3,0x2e,0xf1,0xb5, -0x8e,0xa8,0xfe,0xfb,0xeb,0xca,0x7f,0x6b,0xdc,0xd5,0x4e,0x80, -0x02,0xbc,0x19,0xee,0x78,0xd7,0xbb,0xde,0x71,0x83,0x77,0x73, -0xe3,0xdd,0x01,0x7f,0x37,0x11,0xc3,0xf5,0x6e,0x79,0x11,0xec, -0xdb,0x4b,0x8c,0xd7,0x33,0xe4,0x25,0xef,0x79,0xc1,0x03,0x09, -0xff,0xdf,0x60,0xb2,0x3e,0x08,0xd0,0x41,0x84,0x23,0xa4,0xcb, -0xe8,0xe8,0x32,0x42,0x12,0xc2,0xe5,0x7b,0xa7,0x13,0x87,0xf8, -0x46,0xa2,0x34,0xb8,0xb0,0xd0,0x85,0x03,0x81,0xe1,0x4d,0x20, -0xf0,0x3f,0xf9,0x9d,0x0f,0x6c,0x37,0xf4,0x1c,0x0b,0xcd,0x96, -0x39,0xa4,0xd9,0xcf,0x0d,0xf7,0x6b,0xa1,0xe7,0x14,0x67,0xbd, -0x21,0x12,0x11,0x87,0xa2,0xb1,0x5d,0x39,0x68,0x37,0xc0,0x07, -0x26,0x10,0x8a,0xd0,0xa8,0x1d,0x34,0xa8,0x48,0xc5,0xdf,0x79, -0x70,0x78,0xc5,0xe3,0xe2,0xde,0xc4,0x61,0x41,0x96,0x24,0x6f, -0x67,0xce,0x6b,0x09,0xf4,0xa2,0xa7,0x3c,0x0f,0x02,0x8e,0x53, -0x22,0x09,0x21,0x09,0x87,0xf8,0x38,0x00,0x84,0x6d,0x20,0x28, -0x14,0xe2,0x0f,0xcd,0x17,0x3e,0x17,0x86,0x10,0x02,0xd8,0xbb, -0xa3,0xd7,0x8a,0x28,0x14,0x3a,0xec,0x71,0x69,0x21,0xc9,0x9f, -0x0f,0xb7,0x52,0xc8,0xf3,0x85,0xc4,0x7a,0x81,0x54,0xa2,0x11, -0x81,0x88,0x05,0x3d,0x36,0xf2,0x73,0x78,0x81,0x22,0x37,0xca, -0xe1,0xc4,0x27,0x12,0x90,0x22,0x56,0x54,0xe0,0x00,0xa9,0xd8, -0x3b,0x71,0x70,0x52,0x76,0x68,0x14,0x1c,0xed,0x18,0x27,0x8e, -0x2e,0x9a,0xf1,0x78,0xd2,0x43,0xa3,0x1a,0x9b,0x47,0xc6,0xc1, -0xb5,0xd2,0x83,0xa4,0x14,0x93,0x40,0x4a,0xf4,0xc6,0xad,0xd8, -0xd2,0x42,0xb8,0x0c,0x49,0x0e,0xbd,0x66,0x21,0x11,0x6e,0x0f, -0x92,0x99,0xf3,0x25,0xea,0x10,0x10,0x4c,0xeb,0x11,0x52,0x7c, -0xdf,0x2b,0xe2,0x21,0x97,0x99,0xb8,0x66,0x56,0x04,0x7b,0x22, -0xd4,0x5e,0xe9,0xf6,0xff,0x37,0x4d,0x3a,0x54,0x73,0x92,0xb1, -0x1b,0x60,0x39,0x00,0xe0,0xcd,0x4b,0x3a,0xd1,0x89,0x08,0x9c, -0x88,0xef,0x3a,0x89,0xc5,0xb9,0x89,0x83,0x1b,0xea,0xbc,0xe2, -0x01,0x65,0x39,0xbc,0x75,0x0a,0x0f,0x00,0x2d,0x9c,0xe0,0x4a, -0xac,0xc1,0xc5,0x0b,0xb6,0x44,0x83,0xf9,0x74,0x89,0x2b,0x5f, -0x62,0x91,0xaf,0x45,0xc8,0x7e,0x29,0x13,0x8a,0x89,0x06,0x7a, -0xb9,0xf6,0x0d,0x00,0x01,0x07,0x58,0x0b,0x32,0x87,0x29,0xb6, -0xae,0x2d,0xb4,0xa1,0x81,0x4c,0x26,0xca,0xc4,0xb1,0xd0,0x03, -0x20,0x40,0x7c,0x2c,0xbb,0xe8,0x01,0x32,0xba,0xd1,0x90,0x60, -0xd3,0x41,0x19,0x1d,0xc0,0x36,0x05,0xd9,0xc6,0x91,0x22,0xa0, -0xa4,0xfa,0x2b,0x27,0x26,0x2d,0x49,0xb3,0x72,0x58,0x07,0x9c, -0x2f,0xd5,0x9d,0x44,0xb0,0x68,0x45,0x9c,0x2e,0xb0,0x6e,0xea, -0xac,0x22,0x37,0x07,0x38,0xcf,0x79,0xb6,0x50,0x8a,0xa7,0x04, -0x9e,0xe0,0x32,0xd8,0xca,0x55,0x96,0x31,0x70,0x1d,0x14,0xd3, -0x0d,0x31,0xaa,0x51,0x95,0xbd,0xae,0xa3,0x1f,0x8d,0x2a,0x31, -0xdb,0x27,0xd1,0x63,0x52,0xf4,0xa1,0xa0,0xc3,0xaa,0x43,0xb5, -0x32,0x50,0x83,0x0a,0x65,0x2b,0xf7,0x0b,0xeb,0x57,0x45,0xfa, -0x00,0x92,0xae,0xf4,0x9a,0x4b,0xa3,0x26,0x5a,0x55,0xaa,0x56, -0x9f,0xc2,0x54,0x4b,0x31,0x85,0x62,0x39,0x15,0xd8,0xc0,0x50, -0x42,0xe3,0x8b,0x2d,0x54,0x27,0x3b,0x3b,0x19,0xbb,0xa0,0xc5, -0xf3,0x8b,0x3f,0xb3,0x99,0xf0,0x5c,0xb9,0xb3,0xe2,0x89,0x51, -0x67,0x67,0x34,0x8b,0xf1,0xf6,0x53,0x44,0xff,0x66,0x8a,0xcf, -0x99,0xa8,0xbb,0xa1,0x64,0x7b,0x39,0x49,0x60,0x6a,0x75,0x7f, -0xd6,0xcc,0xac,0x30,0xbf,0x3a,0xc4,0x12,0x0d,0x64,0xac,0x6e, -0x08,0xad,0x58,0xa5,0xc9,0xd6,0x6c,0xae,0xb0,0x6b,0x00,0x3c, -0x29,0x35,0x55,0x5b,0x52,0xad,0x98,0x53,0x4b,0x0f,0xb8,0xa4, -0x25,0x67,0x47,0x37,0xbd,0xd6,0x2e,0x94,0x0f,0xd8,0xeb,0x6e, -0xa5,0xe8,0x4e,0xc2,0xd1,0x4e,0x70,0x80,0x9b,0x9b,0x2a,0xf5, -0xd9,0x41,0xc7,0x6a,0xd0,0x67,0x6f,0x11,0x5f,0xe8,0xb6,0x66, -0xd9,0xcb,0x35,0x77,0xb5,0x3c,0x44,0xa8,0xfe,0x8a,0x78,0xbf, -0x40,0xf2,0xd1,0x88,0xd7,0xd5,0x23,0x1f,0x13,0xf7,0x46,0x3a, -0x0e,0x64,0x87,0xe0,0x25,0xe1,0x40,0xae,0xe6,0xd9,0x40,0x0a, -0xa5,0x88,0xa7,0x7b,0xa4,0x1e,0xd5,0x2b,0x5d,0xaf,0x49,0x51, -0x77,0xdc,0x98,0x2d,0x6d,0x6b,0x2b,0x5f,0xa0,0xea,0x55,0x9d, -0x9b,0xb4,0xe2,0x7e,0x43,0x49,0x33,0x07,0x4e,0xe4,0x8b,0x85, -0xfd,0x62,0x01,0xb7,0xd8,0xb3,0x02,0xcb,0x52,0xb9,0xb3,0x84, -0x89,0x3f,0xcb,0x02,0x4d,0xf0,0xad,0xd6,0xba,0x70,0x0c,0x1b, -0x7c,0x27,0x29,0xbe,0xf3,0x5e,0x58,0x7c,0x49,0x14,0xa4,0xe3, -0x34,0x2c,0xc4,0xfb,0xc1,0x10,0x84,0x28,0x0c,0x26,0xe5,0xb4, -0x07,0x17,0x12,0x07,0x52,0x85,0x89,0x0b,0xe2,0x48,0xd6,0x5b, -0xb6,0xed,0x59,0xcf,0xc5,0xf0,0x8d,0x88,0x26,0xb7,0x33,0x57, -0xf9,0xd2,0xee,0x8a,0x3c,0xbd,0xa2,0x4d,0x79,0xcb,0xd7,0xbf, -0x42,0x10,0x94,0xeb,0xdc,0x1b,0x3e,0x89,0xe7,0x60,0x35,0xfa, -0xff,0x8d,0xc1,0x8d,0xa5,0x5e,0x0c,0x25,0x3c,0xc9,0xf7,0x25, -0x2e,0xc2,0x2b,0x85,0xf2,0xf7,0x26,0x5c,0x97,0xfb,0x95,0x4f, -0x6c,0x3c,0xc4,0x72,0xfa,0x22,0xd2,0x39,0xee,0xd5,0x05,0x7b, -0x26,0x0c,0x33,0x5d,0xbc,0x97,0x96,0xfa,0x09,0xc5,0x7f,0x11, -0xde,0x5f,0xfa,0xd4,0x4c,0x17,0xe9,0xd6,0xf8,0x9b,0x73,0xbb, -0x64,0x7d,0x1f,0x50,0xd7,0xbb,0xad,0x73,0x6e,0x77,0x86,0xc6, -0x03,0x78,0x27,0x8e,0x3b,0x33,0x50,0x81,0xcc,0x53,0x46,0x81, -0x65,0x67,0x3c,0x54,0x1e,0x2e,0x8a,0xc3,0x0d,0xdc,0x3d,0x19, -0x1b,0xcb,0x58,0x3a,0x96,0x95,0xd0,0x0a,0x9b,0x73,0x4b,0xa7, -0x3f,0x13,0x5a,0xfa,0xd2,0xa8,0x5b,0x5d,0x55,0x3b,0xfd,0x55, -0xd8,0x6d,0x4e,0x2b,0x52,0x5e,0x1c,0xe3,0xb0,0x47,0xe1,0xc8, -0x15,0xef,0xd4,0x70,0x53,0x1d,0xe6,0x5a,0x0d,0x3b,0xdd,0x85, -0xb3,0xbe,0x12,0x71,0xe9,0x6d,0xcd,0xe9,0x63,0xeb,0x0c,0xb8, -0xaf,0xc3,0x43,0xa3,0x9e,0x99,0x27,0x54,0xbb,0x1a,0xb7,0xc8, -0x16,0xf4,0xe0,0x82,0x1d,0x5c,0xc6,0x63,0x37,0x8a,0xcd,0x76, -0xd1,0xdf,0x0e,0x61,0x5c,0x17,0x4c,0xa3,0xed,0x69,0x6a,0x9b, -0x36,0xdb,0xde,0xe6,0x36,0xaa,0x5d,0x0e,0x69,0x44,0x33,0xda, -0x56,0xb6,0x3d,0xb4,0x6e,0xdf,0x6b,0x6d,0x18,0x1a,0x77,0xdb, -0x28,0x62,0x6e,0x04,0x5a,0xb2,0xce,0x31,0x5d,0x8f,0x37,0xd3, -0x8d,0x5b,0x2c,0x1a,0x9a,0x57,0x3f,0x6e,0x21,0x03,0x6f,0xc6, -0x37,0xe1,0xee,0xb7,0x95,0xc5,0xc5,0x19,0x05,0x17,0x0b,0xbc, -0x0a,0xfe,0x0d,0x32,0xff,0x9e,0x5e,0x5d,0x5e,0x0c,0x7e,0x2f, -0xf7,0x9c,0x2c,0x66,0x31,0x03,0xd9,0x6a,0x44,0x46,0x32,0x84, -0xf3,0x24,0xe1,0xbf,0x79,0x69,0x9d,0x65,0x8a,0xad,0x3b,0xdf, -0x76,0x22,0x38,0xad,0xdb,0x02,0x81,0x0a,0xe4,0xff,0xee,0xae, -0x9c,0x12,0x4c,0x27,0x5f,0x13,0x2d,0x3c,0x54,0x46,0xcf,0x66, -0x88,0xed,0xa7,0x32,0xfc,0x36,0xc6,0xe9,0x09,0x79,0xe0,0x85, -0x71,0xf8,0x71,0x22,0x0e,0x71,0x99,0xe1,0xbc,0xe0,0x2b,0x3b, -0xf8,0xeb,0x74,0x9e,0xf3,0x92,0x8d,0x2c,0xcf,0xb6,0xbd,0xe4, -0x37,0xed,0x2b,0x4e,0x4c,0x92,0x53,0xaf,0x4b,0xdf,0x1d,0x4f, -0x6f,0xc6,0xce,0xdd,0x45,0x51,0x78,0x03,0xe4,0xab,0x90,0x09, -0xbb,0x72,0x61,0x23,0xcf,0xe5,0x18,0x74,0x39,0x18,0x8f,0x7d, -0xb8,0x64,0x87,0x64,0x03,0x1b,0x60,0x40,0xd9,0x19,0x30,0xf6, -0x94,0x8d,0xdd,0xec,0x67,0xdf,0x00,0xd3,0xc6,0x2d,0x6d,0xa9, -0x5d,0xfb,0xdc,0x72,0xb7,0x61,0x09,0x4a,0x70,0x17,0x13,0x98, -0x00,0xd5,0x76,0xc7,0xbb,0xde,0xe1,0xd6,0xb4,0x6a,0x93,0x3b, -0xf0,0xe8,0xb6,0x76,0xb6,0xbf,0x29,0xc5,0xc8,0xd4,0x36,0x9c, -0xa3,0xb4,0xeb,0x5d,0xa3,0x4e,0x45,0xbf,0x9e,0x73,0x94,0x87, -0x2b,0x30,0xb0,0x0b,0x0d,0xd4,0xcb,0x93,0xbc,0x83,0x30,0x27, -0x23,0xe1,0xfa,0x19,0x73,0x08,0x4a,0x1a,0x5a,0x70,0x21,0xfb, -0xd8,0xd5,0xde,0x76,0x54,0x43,0xa0,0xf4,0xa6,0x3f,0x3b,0xe5, -0x44,0xbd,0xb2,0xa8,0xbe,0x9a,0x73,0x61,0xb3,0x7b,0xed,0xed, -0x9e,0x77,0xbf,0x6b,0xcf,0xf6,0xb5,0xc7,0xff,0x3d,0xa7,0x3f, -0x0d,0x7b,0x50,0x7b,0x5a,0x75,0xc2,0x3d,0xfc,0x4c,0x6b,0x5d, -0xd3,0x77,0x73,0x92,0xa7,0xff,0xed,0x71,0x4e,0xa5,0xc7,0x6b, -0x57,0x12,0xd7,0x9f,0xf7,0xec,0xfa,0xf3,0x60,0xde,0xe0,0xcf, -0x87,0xbd,0x73,0x64,0xbf,0x4b,0xeb,0x4d,0xc8,0x7d,0xbb,0xb4, -0xfe,0x7b,0x79,0x87,0xc0,0x1e,0xd0,0x87,0xfa,0xcc,0x91,0xdf, -0xfc,0x75,0x11,0x0a,0xfa,0xd7,0xb7,0xfb,0xde,0x47,0x19,0x2e, -0xf0,0x27,0x3f,0xa7,0x49,0x3f,0xd0,0xba,0x98,0x9f,0xef,0xab, -0x6b,0x7b,0xff,0xe8,0xa2,0xff,0xbb,0x1b,0xb9,0x04,0x1a,0x40, -0x98,0xfa,0xa9,0x28,0xd2,0x9d,0x9c,0xba,0xa2,0xbb,0x1a,0xb4, -0x95,0xd8,0x35,0x89,0x48,0x30,0xc2,0x0a,0xac,0x28,0x72,0x34, -0xe5,0xb9,0x27,0xe7,0x81,0x25,0x99,0x0b,0xbb,0xd0,0x13,0x3d, -0xb5,0x39,0x21,0x12,0x2b,0xa1,0x13,0x6b,0x23,0x3a,0x5a,0x31, -0x08,0xe8,0xbd,0x3d,0x30,0xbf,0x91,0x60,0x3b,0xb8,0x30,0x41, -0x14,0x1c,0x08,0x15,0xb4,0x21,0x00,0x2c,0x01,0x13,0x44,0xb5, -0x18,0x9c,0xc1,0xf3,0x52,0x3b,0x10,0x2b,0xbf,0x18,0x24,0x3d, -0xee,0xe3,0xb0,0x13,0x84,0x80,0xda,0xa3,0xa4,0x4a,0x32,0x27, -0xe4,0x03,0x09,0xe1,0xfa,0x29,0x2b,0x12,0xb9,0x06,0x4c,0x34, -0xa1,0x82,0x1e,0x7d,0x5b,0xb4,0x7f,0x43,0x2a,0x32,0x52,0xae, -0xd0,0x43,0x36,0xe8,0xf1,0xbc,0x64,0x4b,0x9c,0x39,0x72,0x23, -0xb2,0x82,0x9c,0x2d,0x0c,0xa6,0x37,0xaa,0x1c,0x16,0x04,0xa8, -0x40,0x6a,0xbd,0xf4,0x53,0x3f,0x14,0xd4,0x23,0x33,0xac,0x08, -0xff,0xfd,0x9b,0xc1,0xad,0x68,0x43,0xf5,0xfb,0x2a,0xee,0x63, -0x24,0x1d,0x04,0xc2,0xfd,0x53,0x3d,0x06,0x88,0xa4,0x3a,0x0c, -0xc2,0xd8,0x49,0x37,0x72,0x22,0xa0,0x22,0x0c,0xa0,0x23,0xd4, -0x31,0x9b,0x7a,0x89,0x04,0x2b,0x25,0x9a,0x31,0x2c,0x79,0xb2, -0xa7,0xa3,0x4a,0xb2,0xe6,0x21,0x8b,0x25,0xd3,0xc0,0xcc,0xd1, -0x25,0x9c,0xe0,0xa5,0xcb,0xa1,0x44,0x04,0xb0,0xc4,0xcc,0x91, -0x41,0xf2,0xeb,0x2c,0xee,0xdb,0xc4,0xde,0xf3,0xc4,0x3c,0x0c, -0x89,0x1f,0xfc,0x9e,0x1f,0x7c,0x43,0xf3,0x33,0x45,0xf3,0x0b, -0x89,0xd6,0x73,0xad,0xc4,0xb1,0xbd,0xfd,0x69,0xc5,0xd4,0x7a, -0x45,0x3e,0x84,0x89,0x9f,0xa2,0x89,0x9a,0xb2,0x19,0x77,0xc2, -0x45,0x08,0xc2,0x1b,0xb1,0x78,0xb9,0xa5,0xa2,0x09,0x0e,0x94, -0x8a,0x82,0x12,0xa8,0xfb,0xc9,0xa5,0x80,0x5a,0x8b,0x83,0x0a, -0x89,0xdb,0x33,0x81,0xae,0x0a,0xa4,0x4f,0xb4,0xc3,0xbc,0x7b, -0x46,0x3c,0x04,0xb5,0x3d,0x78,0xaa,0xf5,0xcb,0x8b,0x6b,0xf4, -0x28,0x04,0xc8,0xc6,0x8a,0x90,0xc5,0x94,0x32,0x01,0x3e,0x84, -0x00,0x70,0x74,0x2b,0x71,0xdc,0xbf,0x5c,0x81,0x42,0x5c,0x54, -0xc7,0x97,0xb8,0xbe,0x75,0x81,0x8b,0x6d,0xcc,0x28,0x6f,0x7c, -0x9d,0x78,0xec,0xc6,0xaa,0xb2,0x43,0x19,0xa4,0xc6,0x68,0xe4, -0x3d,0x7d,0x1c,0xc5,0x8a,0x20,0x2b,0x81,0x32,0xad,0xcb,0x01, -0x48,0x65,0x14,0x48,0x72,0x6c,0xbb,0xb6,0xca,0xa8,0xbc,0xbb, -0xc3,0x72,0x54,0xc8,0x73,0x9c,0x8e,0x9c,0xa1,0x18,0xcd,0x11, -0x08,0x11,0x02,0x8c,0xff,0x52,0x4c,0x9c,0x53,0xb4,0xc8,0x54, -0xc4,0xc8,0x55,0x64,0xc6,0x20,0x14,0xc5,0xfd,0x81,0x45,0x90, -0x0c,0x09,0xd0,0xb2,0x10,0xd1,0x02,0x8c,0x92,0xc4,0x89,0x93, -0xcc,0x1c,0x70,0x1c,0xbf,0x85,0x8c,0x45,0x84,0x9c,0xc5,0x12, -0x7c,0x49,0x89,0x48,0x00,0x9b,0xbc,0x49,0x9b,0x4a,0x40,0x89, -0x58,0x00,0x9e,0xec,0x49,0x89,0xf0,0x05,0xa0,0x0c,0x4a,0x89, -0xd0,0x0c,0xa2,0x54,0x00,0x89,0xa0,0x02,0xa4,0x4c,0x4a,0x89, -0x70,0x00,0xa6,0x6c,0x4a,0x89,0x08,0x01,0xa8,0x8c,0x4a,0x89, -0x58,0xbb,0xb2,0x93,0x88,0x40,0xb8,0x4a,0xac,0x94,0x88,0x06, -0xd8,0x4a,0xae,0x94,0x88,0x62,0xf8,0x4a,0xb0,0xbc,0x8c,0xe2, -0x89,0x88,0xfa,0xc8,0x04,0x11,0xea,0x1f,0x52,0x9c,0x49,0x71, -0x2c,0xbf,0x94,0x31,0x3f,0xdc,0xbb,0xbb,0x8e,0xac,0x88,0x20, -0xfc,0x41,0xec,0x3a,0xc8,0x90,0xe4,0x3b,0xba,0x54,0xc3,0xb6, -0xb3,0x21,0xf2,0x0a,0x26,0xf1,0x82,0x9c,0xbe,0x4c,0x2f,0xa1, -0xb8,0xc1,0x3c,0x4c,0xaf,0x3a,0xec,0xbd,0xcc,0x99,0x43,0x80, -0xfa,0x41,0xc4,0x04,0x80,0x9b,0xc4,0xc9,0xdd,0xd1,0x49,0x00, -0xe8,0x49,0x9f,0x04,0x80,0xa0,0x14,0x4a,0x00,0x28,0x4a,0xcd, -0x38,0xca,0xa4,0x44,0xca,0xa5,0x6c,0x4a,0xa6,0x7c,0xca,0xa8, -0x84,0xca,0xa9,0xa4,0x4a,0xab,0xc4,0xca,0xab,0xd4,0x4a,0xae, -0xdc,0x4a,0xaf,0x04,0xcb,0xaf,0x14,0x0b,0x29,0x2b,0x31,0x29, -0x2b,0x88,0x82,0xe8,0x0f,0x8c,0x54,0xcb,0xb9,0xa4,0x41,0xdc, -0xc4,0xcb,0x1f,0xc2,0xc7,0x3a,0xe4,0x30,0xff,0x15,0xf4,0x4d, -0xba,0x7c,0x23,0x15,0x1c,0xb1,0x0f,0x34,0x31,0xf8,0x11,0xc1, -0x14,0xa2,0x2c,0x1c,0x1c,0x09,0xc6,0xac,0xbf,0xe6,0x1c,0x88, -0xe7,0xd4,0x3b,0xc7,0x7c,0xcc,0x04,0xc8,0x49,0xe7,0x9b,0x4c, -0xca,0x5c,0x80,0x9f,0xbc,0x4c,0x5f,0x18,0x4a,0xcd,0xe4,0xcc, -0xce,0xfc,0x4c,0xd0,0x14,0xcd,0xd1,0x2c,0xcd,0xb5,0x3b,0x4d, -0xd4,0x54,0xcd,0xd5,0x6c,0x4d,0xd7,0x24,0x8b,0x4c,0xa8,0xc4, -0x89,0x50,0x80,0x38,0x90,0x07,0x79,0x88,0x03,0xa3,0x5c,0x9f, -0xb7,0x84,0x45,0xf9,0xdb,0xcd,0x20,0xa4,0x2c,0xde,0xec,0x32, -0xf4,0xb3,0x43,0xb6,0x14,0x50,0xf5,0x09,0x1b,0xf0,0xab,0x0b, -0xef,0xd3,0x9e,0x04,0xa5,0x0b,0xf1,0x43,0x33,0xd5,0x03,0xa8, -0xfc,0x9b,0xc9,0x36,0x6b,0xbb,0x37,0x83,0x47,0x0a,0xad,0xce, -0xc7,0xc4,0x4e,0x9c,0xda,0xc9,0xed,0xec,0xce,0xcb,0x04,0xcf, -0xa2,0x14,0x4f,0xa5,0x04,0x00,0xd0,0x0c,0x4d,0x00,0x18,0x4d, -0xd2,0x04,0x00,0xaa,0x64,0x00,0xf5,0xcc,0x4a,0x00,0x58,0x4d, -0xd6,0x04,0x00,0xd7,0x7c,0xcd,0xb1,0xb8,0x28,0x8d,0x9a,0x08, -0x14,0xb8,0x83,0x77,0x78,0x87,0x3b,0x40,0x81,0x9b,0x08,0x9b, -0xfd,0xdc,0x3d,0xf9,0x1b,0x52,0x91,0x84,0x50,0xe1,0x83,0x1d, -0xd9,0x1b,0x35,0xd2,0x63,0xbb,0xd3,0x53,0x21,0xc8,0xc1,0x43, -0xd3,0x2b,0x3d,0xd7,0x7b,0xbd,0xd7,0x89,0xbd,0x50,0xfb,0x3d, -0x0d,0x85,0xcc,0x04,0x3c,0xa0,0xed,0xe4,0x4e,0xcb,0xf4,0x4e, -0x11,0x25,0x4a,0x12,0xf5,0x4c,0x13,0x3d,0x51,0xf3,0x94,0x4a, -0xff,0x16,0x35,0x4d,0x00,0x40,0xcd,0xd4,0x8c,0x51,0x19,0x75, -0xcf,0xb0,0x14,0x8b,0x18,0x1a,0x1b,0x00,0x58,0x87,0x1d,0x85, -0x8b,0x1f,0xfd,0x32,0x0a,0xb5,0x0b,0xbe,0xdb,0xa1,0xfa,0xab, -0x0b,0xbe,0x3b,0x1b,0xc0,0x83,0x9a,0xc1,0xa3,0xbb,0xc2,0x83, -0x9b,0x8a,0x50,0x3b,0xb3,0x43,0xbb,0xad,0x60,0xd4,0xb2,0x73, -0x54,0x71,0x0b,0x3c,0xb8,0x9b,0x08,0xc2,0x8b,0x23,0xb9,0xb3, -0xce,0xeb,0x8c,0xcc,0xec,0xfc,0x52,0x10,0xc5,0x4c,0xcd,0x34, -0x4a,0x00,0xe8,0x4c,0x33,0x3d,0x51,0x07,0x48,0xd3,0x15,0x6d, -0xd1,0x17,0x7d,0x53,0x19,0x6d,0x00,0x39,0xb5,0x51,0x9a,0x48, -0x1c,0x2a,0xfb,0x1a,0x08,0x50,0x80,0x3b,0x70,0x9a,0x3b,0x50, -0x80,0x04,0x41,0x99,0x9e,0x6b,0x9d,0x5e,0x05,0xba,0x9b,0x0b, -0x3a,0x89,0xab,0x39,0xd5,0x69,0x9d,0x87,0x1b,0x56,0x9c,0x5b, -0x38,0x89,0x89,0xc8,0x89,0xf9,0x88,0xaf,0xe2,0x84,0x1d,0x30, -0x83,0xa4,0x00,0xbe,0x86,0xbb,0x0c,0xe3,0x28,0x0b,0xe5,0xc0, -0xd6,0x6b,0x7d,0x0c,0x5e,0xe9,0x8e,0xea,0xf0,0xd6,0x6e,0x1d, -0x97,0x64,0xf1,0x56,0x6e,0x39,0x8b,0xeb,0x80,0x93,0x75,0x61, -0x91,0xa9,0x30,0x4b,0x12,0x3b,0x46,0x3a,0x0d,0x0a,0x76,0x45, -0x21,0x77,0x7d,0x0b,0x78,0x4d,0xb1,0x79,0xad,0xa5,0xa0,0xb0, -0x57,0x88,0x64,0x90,0x70,0x8d,0x90,0x86,0xa9,0x0e,0x13,0x09, -0x98,0x79,0x1b,0x8f,0x40,0x11,0x11,0x6e,0x09,0x0e,0x4c,0xf9, -0x0e,0x74,0x39,0x0f,0x86,0xdd,0x0d,0x14,0x09,0x89,0x7c,0x6d, -0xd7,0x7b,0xdd,0x8f,0xff,0x88,0x95,0xd7,0x89,0x3d,0x90,0x8a, -0x1d,0x21,0x4d,0xa4,0xd8,0x8b,0xb0,0xd7,0x8b,0xfd,0x09,0xf0, -0xb8,0x96,0x80,0x9d,0x2d,0x80,0x15,0x94,0x5e,0x41,0x91,0x48, -0xb9,0x18,0x80,0x75,0x8f,0x7e,0x6d,0x91,0x51,0x71,0x58,0x71, -0x51,0x99,0xa5,0xf0,0x58,0x77,0x2d,0x88,0x7f,0x72,0xd6,0x8e, -0x95,0xd8,0x9a,0xdd,0xd5,0xd1,0x00,0x0a,0x8a,0xd4,0xd9,0x8f, -0xb0,0x59,0xc3,0xc0,0xd9,0x9f,0xb5,0xd8,0x9d,0x1d,0x8b,0x90, -0x8d,0xb8,0x4e,0xf1,0xd7,0x59,0x39,0x97,0x53,0x99,0x97,0x6d, -0x51,0x17,0x29,0x31,0xd7,0x61,0xb9,0x16,0xf6,0x50,0x11,0xf0, -0xc0,0x0d,0x71,0xa1,0xcd,0x49,0x2c,0x5a,0x8d,0x4d,0xa2,0x63, -0xcc,0xd2,0x89,0xe0,0xda,0x99,0xd5,0x59,0x5c,0x12,0x5b,0x89, -0x20,0xdb,0x9c,0x35,0xda,0xb3,0x25,0xb8,0xb4,0xb5,0xd9,0xb2, -0x65,0xdb,0xb0,0x75,0x5b,0x06,0x89,0x99,0xee,0x70,0x5a,0x11, -0x71,0x94,0x93,0x3d,0xd9,0x57,0x81,0x18,0x80,0xa5,0x5a,0xf3, -0x70,0x8c,0x21,0xb9,0x16,0x7a,0x79,0x18,0xb5,0x98,0x17,0xba, -0xd8,0x01,0xe9,0x80,0x8b,0x1d,0xe0,0x5a,0x87,0x53,0xdc,0xc5, -0x6d,0x5c,0xa1,0x8d,0x0d,0xc8,0x95,0x0e,0xc9,0xe5,0x59,0xd8, -0xab,0x5c,0xe7,0xb8,0x5c,0xb2,0xb0,0x5b,0x29,0xc1,0x94,0xf5, -0x98,0x12,0x83,0xa5,0x94,0x37,0xf1,0xdb,0x72,0x55,0x0b,0x66, -0x29,0x58,0x95,0xfd,0x57,0x06,0x21,0x0f,0xcb,0xa0,0xcd,0xe2, -0x50,0x07,0xda,0xfc,0x0f,0xda,0xcd,0x08,0x08,0x88,0x0e,0xd8, -0x80,0xdd,0xbd,0x98,0x5d,0x92,0x20,0x09,0xff,0xdb,0xc5,0x5d, -0x30,0x29,0x88,0xd8,0xe5,0xdd,0xda,0x9c,0xdd,0x83,0x00,0x5e, -0x17,0x11,0xde,0xdd,0xa5,0xcd,0xde,0x35,0xde,0xdb,0x45,0xdb, -0xd6,0xc5,0x8d,0x65,0xa1,0x8c,0xc1,0x75,0xd9,0x40,0xd1,0x18, -0x74,0x3d,0xdd,0x5f,0xc9,0x97,0x7e,0xb9,0x17,0x29,0x59,0xd6, -0xbf,0x75,0x59,0x63,0x85,0x0b,0xa2,0x28,0x5e,0xb8,0xa0,0xdd, -0xb9,0x70,0xdc,0xd8,0x20,0x5f,0xd9,0x15,0x90,0xfc,0xa8,0x8a, -0xf3,0x9d,0x5c,0x6a,0x2d,0x5f,0xf7,0x45,0xdf,0xc1,0x50,0xdf, -0xf9,0x6d,0x5f,0xfb,0x78,0xdf,0xf4,0x95,0xdf,0x58,0x05,0xdf, -0x9c,0x50,0x38,0xef,0xdd,0x97,0x88,0x49,0x0b,0x00,0x86,0x19, -0xf0,0x6d,0x09,0xcf,0x25,0x19,0xf7,0xa8,0x4d,0x50,0x40,0x8c, -0xa6,0x88,0x60,0xa2,0x38,0x88,0x07,0xa6,0xdb,0xb7,0x85,0x00, -0x62,0x80,0xe0,0x83,0x90,0xe0,0xa6,0xc8,0x60,0x0b,0xbe,0xd3, -0xfa,0xd8,0x02,0x0d,0x46,0x8c,0x11,0x16,0xe1,0x0f,0xae,0xcd, -0x40,0x18,0x61,0x0e,0x3e,0x88,0x14,0xfe,0xe0,0xed,0x40,0xdd, -0x8c,0xe9,0x56,0x2d,0xc9,0x18,0x81,0xed,0x57,0xf6,0x20,0xd9, -0x1b,0x8b,0xe1,0xec,0x65,0x98,0x1d,0xfe,0x56,0x6e,0x09,0xd7, -0x8a,0xa8,0x60,0xe5,0x78,0xe0,0xfd,0xf0,0x60,0xe5,0xc8,0xe0, -0xfd,0x30,0x61,0xe5,0x10,0xe1,0xfd,0x68,0x61,0xe5,0x48,0x61, -0xad,0xd5,0xdb,0x80,0x01,0x14,0x0b,0xe9,0xd6,0x9e,0x48,0x5d, -0x8d,0x59,0xd9,0x7a,0xd9,0x93,0x29,0x11,0x14,0xa6,0xad,0xe2, -0x58,0xb9,0x62,0x72,0x55,0x58,0xd4,0x5d,0x60,0x1f,0x0e,0x63, -0xff,0x20,0xc6,0x60,0x08,0x00,0x05,0x36,0x86,0x00,0x79,0xe8, -0x51,0x79,0x58,0xe3,0x36,0x46,0xe2,0x03,0x79,0x60,0x36,0x7e, -0xe0,0x37,0x7e,0x87,0x38,0xbe,0xe3,0x35,0xde,0xd7,0x8a,0x48, -0xe1,0x2d,0x08,0x64,0x08,0x68,0x87,0x74,0x48,0x87,0x76,0x80, -0x80,0x40,0x16,0x61,0x28,0x3e,0x10,0x11,0x4e,0xe4,0x41,0x2e, -0xe4,0x43,0x76,0x64,0x26,0xf6,0x11,0x57,0xe9,0x96,0xde,0xe8, -0xe2,0xde,0x48,0xd8,0x2f,0xbe,0xb1,0x79,0x63,0x96,0x92,0xd9, -0x93,0x1b,0x96,0x15,0x2a,0x8e,0x95,0x83,0x3d,0x58,0xab,0x05, -0x62,0x19,0x66,0x92,0x0f,0x51,0x63,0x36,0xce,0x60,0x3d,0x7e, -0x63,0x0c,0x9e,0x63,0x3f,0xce,0x1c,0x3b,0x06,0x05,0x57,0xb6, -0xcf,0x77,0x88,0x65,0x3b,0x9e,0x65,0x08,0x00,0xe4,0x2d,0x48, -0x61,0x43,0x26,0xe4,0x5e,0x16,0xe4,0x45,0x8e,0x09,0x44,0x46, -0xe4,0x5f,0x86,0x80,0x60,0x4e,0x87,0x61,0x6e,0x64,0x88,0xfc, -0x57,0xd6,0x65,0xdd,0x1b,0x5b,0xda,0x1b,0xfe,0x91,0x7f,0x2d, -0x11,0x8c,0xcb,0xda,0xef,0x15,0x58,0x71,0xd1,0x12,0xea,0x0d, -0x8e,0x8d,0x49,0xd8,0x78,0x31,0x5c,0x2b,0x36,0x11,0xcb,0xe8, -0x63,0x5b,0xce,0xe0,0x3c,0x8e,0x63,0x62,0x20,0x86,0x5d,0x2e, -0xe2,0x35,0x6e,0x67,0x37,0x86,0x63,0x0c,0x76,0x67,0x35,0x4e, -0x62,0x44,0xbe,0xca,0x47,0x36,0xe4,0x5e,0x0e,0x04,0x67,0x6e, -0xe2,0x7c,0x4e,0x61,0x42,0xe6,0xe7,0xab,0x54,0xe4,0x67,0xae, -0x64,0x91,0xbd,0x5b,0x4f,0x26,0x97,0x6c,0xd6,0xe6,0xcf,0xf5, -0xe2,0x07,0x49,0x5d,0xff,0x11,0xb9,0xda,0x2a,0xae,0x64,0x18, -0xd6,0xde,0x1a,0x36,0xe5,0xed,0x05,0x8c,0x07,0x6e,0xe7,0x5b, -0x86,0x65,0x8f,0xee,0x63,0x78,0x0e,0xe9,0x57,0xce,0xe5,0x90, -0xa6,0x63,0x63,0x56,0x64,0x7d,0x5e,0xe6,0x7e,0x06,0x64,0x5e, -0x4e,0x61,0xac,0x54,0xe6,0x76,0x10,0xe6,0x98,0x2e,0x66,0xac, -0x6d,0x8f,0x84,0xde,0x8e,0x2d,0x8e,0x68,0x03,0xbe,0x62,0x31, -0x8e,0x15,0x68,0x46,0x68,0x4b,0x09,0xd8,0x8d,0x0e,0x5f,0x62, -0xc1,0xe8,0x02,0x16,0x59,0x04,0xde,0x8a,0x0c,0xf6,0x68,0x23, -0xae,0x67,0x79,0x46,0x69,0x98,0xe8,0x63,0xa7,0xae,0x8b,0xaa, -0x26,0xe2,0x03,0x81,0xe9,0x98,0xa6,0x0b,0xd4,0xec,0x65,0x5e, -0x56,0x69,0x7d,0xe6,0xea,0x98,0x9e,0x64,0x7e,0xed,0xe6,0x73, -0xc1,0xe1,0xd0,0x1d,0x18,0x40,0xd1,0x18,0x59,0x61,0x6b,0x52, -0x56,0xe8,0xa6,0x75,0x6b,0x61,0x5d,0x59,0x6d,0xa9,0xdb,0xdf, -0x48,0x63,0xb8,0x68,0x6a,0xa7,0xde,0xeb,0xa8,0x26,0x89,0x9b, -0xa5,0x6a,0xbe,0xde,0xeb,0x3e,0xf6,0x5f,0xd8,0xd3,0x6a,0x37, -0x75,0x53,0xaf,0x26,0xec,0x2b,0x05,0xeb,0xc3,0x1e,0x6b,0xbf, -0xfe,0xa0,0x8d,0xf9,0x97,0x9e,0xfe,0x97,0x97,0x31,0x5c,0xa0, -0xa3,0xec,0xca,0x8e,0x6c,0x04,0x06,0x98,0x41,0x81,0x6c,0x68, -0x91,0x18,0x65,0x1d,0x5b,0x07,0xae,0x67,0xbf,0x90,0x67,0x21, -0xce,0xdd,0xda,0xd4,0xeb,0xd2,0x6e,0xea,0x62,0x7d,0xdb,0x10, -0xee,0x67,0xbf,0xd0,0x67,0x25,0x46,0xed,0xfa,0xd0,0xea,0xd8, -0x86,0xe9,0xd6,0x56,0x68,0x1a,0xae,0x61,0xff,0x4b,0xee,0xe4, -0xab,0x25,0x59,0x1c,0xe6,0xe4,0x33,0xf6,0xed,0xab,0x05,0xd7, -0x88,0x3e,0xe3,0x31,0xc6,0x38,0x72,0x75,0xda,0xba,0xe8,0xe8, -0x0c,0x76,0x9a,0x1d,0x88,0xd6,0xb0,0x31,0x6d,0xdf,0x0d,0x19, -0x35,0x96,0x67,0xe8,0x96,0x6e,0xd2,0xce,0x60,0xfc,0xbd,0xd2, -0x63,0xd6,0xe7,0xec,0x76,0x1a,0xd8,0x16,0xe1,0xee,0x1e,0x5f, -0xdb,0x0e,0xef,0xb0,0xd1,0xe7,0x14,0x2e,0xef,0xed,0xed,0x64, -0xbd,0xe5,0x62,0xf7,0x76,0x14,0x50,0x5e,0x11,0xc9,0xe6,0x62, -0x0d,0xb1,0x6f,0xa2,0xbe,0x66,0x2e,0x3e,0xd8,0x86,0x99,0xef, -0xbb,0xce,0x66,0x73,0x01,0x6a,0x88,0x06,0xe1,0xfa,0x50,0xed, -0xe8,0xce,0xee,0xed,0xce,0x6d,0xe6,0x75,0x6e,0x08,0x38,0x70, -0x33,0x88,0x6e,0xd2,0x3e,0xed,0xe0,0xad,0x6d,0xd8,0x76,0x70, -0x08,0x57,0x6f,0x05,0xaf,0x4d,0x95,0x6e,0x70,0xe9,0xbe,0x70, -0x97,0x86,0xde,0xf9,0x9e,0x5e,0x59,0x09,0xdf,0x2f,0x66,0x0b, -0x9f,0x2e,0x5d,0x69,0x36,0xea,0x30,0x9e,0x5a,0xa3,0x4e,0x71, -0x01,0x37,0x67,0x15,0xe7,0x64,0xa6,0xc5,0xb8,0xfc,0x56,0x46, -0xba,0x50,0x6d,0xa7,0x79,0x70,0xf1,0xee,0x6b,0xf6,0xfe,0x34, -0x06,0xcf,0x71,0xed,0xa6,0xee,0x1e,0xaf,0x8b,0xf3,0x86,0x6e, -0xf1,0xc6,0xf0,0x21,0xa7,0x8b,0x0d,0x07,0xf2,0x23,0x77,0xe9, -0x1e,0xef,0xef,0x4d,0x2e,0xd9,0xb4,0x4e,0xf1,0xa0,0x36,0x97, -0x6a,0xd6,0x66,0x28,0xcf,0x92,0xd0,0x3d,0x6a,0xfe,0x96,0x6b, -0x2a,0xf7,0xe6,0xd9,0xaa,0xf1,0xb4,0x18,0xed,0x65,0xc8,0xe0, -0xff,0x68,0x75,0x70,0x0c,0x5e,0x86,0x3e,0x3e,0xe1,0x02,0x87, -0x80,0x32,0x6f,0xf0,0x07,0x0f,0x72,0x35,0x37,0xe2,0x97,0xd0, -0x70,0x08,0x58,0x85,0x14,0x3e,0x73,0xed,0x0e,0x84,0x55,0x38, -0x66,0x36,0xf7,0x6a,0x3c,0x87,0x73,0x34,0xe7,0x73,0xaf,0xb6, -0xe0,0x6b,0xbe,0xe2,0xd0,0x85,0xef,0x2c,0xf9,0x6f,0x2a,0xc6, -0x6f,0x2d,0xee,0xe2,0x46,0x87,0xe8,0x9c,0xee,0xf2,0xdf,0xa6, -0x12,0x7f,0x35,0x91,0x19,0x9f,0xde,0xb7,0xa6,0x65,0x37,0x57, -0xf3,0x33,0x87,0xee,0x4e,0x17,0xe9,0x03,0xc9,0xe0,0x65,0xf0, -0x74,0x1d,0x7f,0xf0,0x50,0x97,0xea,0x7f,0x12,0xe1,0x55,0xe8, -0xf3,0x4f,0x47,0xf5,0x56,0x3f,0x66,0x80,0x8e,0xf5,0x57,0x57, -0xdc,0x58,0xb7,0x69,0x73,0x45,0x71,0x49,0xaf,0x72,0x1f,0xa6, -0xf1,0x95,0xfd,0x72,0x84,0xa5,0x6f,0x5e,0x7f,0xeb,0x54,0xc6, -0x74,0xf7,0x2e,0x65,0x63,0x6f,0x6b,0x31,0x7f,0x9d,0x52,0xe7, -0x70,0x1d,0x57,0xdc,0x66,0x9f,0x65,0x94,0x69,0xf6,0x03,0x3f, -0xf3,0x50,0x97,0xf6,0xd5,0xa1,0xf5,0x4f,0xb7,0xf5,0x3e,0xc7, -0x76,0xb8,0xd0,0xf6,0x67,0xbf,0xf3,0x6e,0x47,0x14,0xb6,0xae, -0x72,0x6f,0x5e,0x6b,0x6b,0x0e,0xd9,0xb6,0xce,0x5a,0x17,0xe7, -0xe4,0x65,0x9f,0x61,0x77,0x1f,0xd9,0x86,0x56,0x16,0x84,0xe6, -0xf5,0xb4,0xa6,0x56,0xc2,0xb0,0xd6,0x6c,0xa5,0x53,0xe7,0xd0, -0xf7,0x6d,0x9d,0x89,0xce,0x86,0x97,0x00,0xc6,0xec,0xcc,0xce, -0xec,0x6f,0xa6,0x6c,0xbb,0x45,0xf8,0x6f,0x36,0x78,0x13,0x0f, -0xf8,0x86,0x9f,0xec,0xff,0x41,0x11,0xf8,0x9e,0x0e,0x3a,0x82, -0x67,0x56,0x8b,0xe7,0xd7,0x4a,0xcf,0x78,0x8d,0x87,0xeb,0x2c, -0x31,0x6e,0x8f,0xd7,0xf5,0xe5,0x5e,0x11,0x19,0x8f,0xe8,0x81, -0xd5,0x16,0x20,0x6e,0xd8,0x8b,0x4f,0x79,0x9a,0x50,0x74,0x2d, -0x8e,0x6f,0xf9,0x4e,0xf7,0x53,0x91,0xf4,0x17,0x9f,0x79,0x29, -0xd7,0x72,0x51,0xfe,0xdb,0x8a,0x46,0xe8,0xa5,0x55,0x60,0x69, -0xee,0x5b,0x95,0xff,0x79,0xe9,0x8d,0xf4,0x51,0x36,0xf7,0xdc, -0x80,0x97,0x61,0x8f,0xf2,0x2f,0x5e,0xf4,0x78,0xff,0xdb,0x68, -0xd6,0x64,0x4b,0x07,0xdc,0x5e,0x41,0x79,0xa0,0x9f,0x7a,0x16, -0x47,0x7a,0x55,0x56,0x76,0xe1,0x3e,0x6a,0xa2,0xb7,0xf9,0x30, -0x9f,0xe2,0x53,0xa6,0x66,0x4f,0x76,0x71,0x38,0x91,0x66,0xea, -0xa5,0x7a,0xb3,0x47,0x5d,0x75,0xcf,0xf4,0x75,0x37,0xd9,0x88, -0x29,0x76,0x62,0x57,0xe5,0x72,0xf7,0xe6,0xac,0x2f,0x6a,0xb9, -0xde,0xf4,0x85,0xe5,0xf2,0xb3,0xcf,0x7b,0xaa,0x1d,0x14,0x28, -0x87,0xf4,0x6a,0xd6,0x7a,0xa1,0x26,0x71,0xd0,0x9d,0x71,0x73, -0x09,0x70,0xc0,0x5f,0xe8,0x18,0x37,0x0f,0x16,0xd7,0x7b,0xc6, -0x2f,0xe5,0x1f,0x5e,0x12,0x52,0xbe,0x72,0xa7,0x3f,0xe5,0xb0, -0xa7,0x66,0xbf,0x8f,0xeb,0x9c,0x0e,0x6e,0x87,0x8e,0x0c,0x81, -0x4d,0xe0,0xc6,0xff,0x79,0x65,0x0d,0xe0,0x97,0xa9,0x6c,0x83, -0x0f,0xd6,0xa4,0xd6,0x17,0x61,0x1d,0xf8,0xb9,0x96,0x78,0x82, -0xef,0x6c,0x4e,0x29,0x78,0xac,0xc5,0xdb,0x8a,0xa8,0x91,0x2e, -0x11,0x13,0xda,0x27,0x13,0xcc,0x35,0xe6,0xff,0xdb,0xbf,0x9c, -0xdd,0x9f,0xea,0xde,0x9f,0xfd,0x32,0x29,0x0b,0x9b,0x04,0x89, -0xe1,0x1f,0xfe,0x9a,0xbc,0x4e,0xe3,0x9f,0x88,0x4d,0x55,0x7e, -0x8a,0x58,0xfe,0xe4,0x57,0xfe,0xe5,0x27,0xfe,0xe8,0xaf,0xce, -0x89,0x89,0xfe,0x1b,0xa1,0x88,0xeb,0x87,0x89,0xec,0x4f,0xdb, -0x1c,0xb1,0x91,0xee,0xc7,0xfe,0xef,0xd7,0xfe,0xf0,0xe7,0xfe, -0x33,0x11,0x8b,0x0d,0x85,0xfe,0x00,0xb0,0xc9,0x00,0x38,0xfe, -0xf4,0x4f,0x80,0xf5,0xdf,0xd2,0x4d,0x45,0xfe,0x9a,0x04,0x80, -0xf5,0xbf,0xce,0xf4,0x97,0xfe,0xf7,0x6f,0x7e,0xf7,0xcf,0xff, -0xe3,0x6f,0x7e,0xe6,0x07,0x08,0x00,0x02,0x01,0x24,0x18,0x68, -0xf0,0x20,0xc2,0x84,0x09,0x0b,0x06,0x18,0xb8,0x0e,0xc2,0xc3, -0x87,0x08,0x23,0x42,0x84,0xa0,0x70,0x62,0x45,0x89,0x07,0x29, -0x6a,0xbc,0xe8,0x30,0xa3,0xc5,0x8d,0x20,0x3d,0x1a,0xe4,0x18, -0xb2,0xe4,0x48,0x92,0x0a,0x13,0xb0,0x4c,0xd0,0x50,0x20,0xcb, -0x00,0x31,0x09,0xb6,0x6c,0x49,0x53,0x66,0x80,0x9c,0x30,0x01, -0xc8,0xe4,0x09,0xb3,0xa1,0xcb,0x83,0x41,0x0d,0xc6,0x7c,0x29, -0xb4,0xe0,0xc0,0x82,0x0c,0x89,0x1a,0x55,0xe9,0x74,0xa7,0x51, -0x08,0x52,0xa7,0x52,0xad,0x1a,0x69,0xc7,0x53,0x00,0x55,0xb7, -0x52,0xbd,0x9a,0x95,0x2b,0x58,0xaf,0x4f,0xc1,0x72,0x15,0x9b, -0xf5,0xe8,0xcc,0x81,0x3a,0x75,0xde,0x2c,0x4a,0xd3,0xa6,0xda, -0xa5,0x30,0x59,0xfa,0x4c,0x5a,0x37,0xe9,0x50,0x84,0x69,0xa1, -0xe2,0x85,0x7b,0xb1,0x26,0x52,0x8f,0x72,0xb5,0x82,0x02,0x45, -0xff,0x8c,0x58,0xe1,0xc3,0x89,0x11,0x83,0xa2,0xea,0x14,0x82, -0x62,0xc3,0x8c,0x23,0x1f,0x76,0xac,0x12,0xc2,0x96,0x2d,0x81, -0x02,0x65,0xde,0xdc,0x99,0xf3,0x16,0xcb,0x24,0x21,0x78,0xd6, -0x0c,0xba,0xf4,0x66,0xd1,0x67,0xf1,0xb2,0x5d,0x09,0x38,0x30, -0x4e,0xba,0x50,0x91,0x32,0xa4,0x1b,0xf8,0x2e,0x6b,0xd7,0x46, -0x95,0x1e,0xc4,0xd9,0x5a,0xb6,0xc1,0x9c,0xc2,0x05,0xdf,0x25, -0xcb,0x55,0x9d,0x3a,0x08,0x99,0xa6,0x5e,0x34,0xbe,0x15,0xb9, -0x72,0xe6,0x0a,0x9d,0x57,0x85,0xbe,0x5c,0x6a,0x73,0xea,0x53, -0xad,0x4b,0x5f,0xcd,0xb3,0xa9,0x6e,0xb7,0x80,0x75,0xd6,0x26, -0x48,0xf0,0x25,0x5d,0xf0,0x7a,0x6f,0xb3,0x46,0xef,0x93,0x7d, -0xde,0xb9,0xea,0x17,0xde,0x1e,0xac,0x75,0x19,0xfe,0xc3,0xfa, -0x23,0x37,0x46,0xfe,0x30,0x13,0x80,0xcb,0x4d,0x87,0xdf,0x32, -0xfb,0xe9,0x57,0x58,0x7f,0xea,0xfc,0x17,0xe0,0x49,0x07,0x41, -0xb0,0x0a,0x84,0x9b,0x49,0x58,0x5a,0x68,0xfe,0x29,0xc7,0xe0, -0x74,0x10,0xae,0x32,0xa1,0x84,0x99,0x55,0xa8,0xe0,0x85,0x00, -0x36,0xf8,0x14,0x70,0x82,0xb9,0xb4,0x97,0x6f,0x40,0xd5,0xb5, -0x54,0x4d,0x3d,0xa9,0x54,0xe2,0x4d,0x4d,0x19,0x05,0x5e,0x53, -0x6e,0xbd,0x38,0x94,0x7d,0xf7,0x15,0x68,0xe0,0x81,0xfd,0xad, -0xb3,0xa0,0x88,0x03,0xee,0xc8,0x23,0x63,0x10,0x28,0x08,0xa4, -0x80,0x09,0x3d,0xb8,0x21,0x87,0x1d,0x56,0xf8,0x63,0x88,0x49, -0x22,0xb4,0x64,0x93,0x4e,0x1a,0x09,0x65,0x80,0x52,0x9e,0xd5, -0x9a,0x47,0x6b,0xd1,0xff,0x18,0x1c,0x98,0x02,0x09,0xd7,0xd0, -0x7c,0x08,0x71,0xf9,0x9d,0x77,0x6a,0x95,0x99,0x50,0x6b,0xea, -0x81,0x65,0xa0,0x8f,0x0f,0xd1,0x81,0xa1,0x92,0x5c,0xc1,0x79, -0xa5,0x9c,0x74,0x4e,0xc9,0x15,0x87,0x4f,0xe6,0x19,0x64,0x9d, -0x5b,0xf5,0x89,0x27,0x04,0x73,0x02,0xea,0x1a,0x7b,0x34,0x11, -0x55,0x53,0x5f,0x7e,0xbd,0x35,0x17,0xa3,0x8d,0x42,0x1a,0x69, -0xa4,0x93,0x26,0x7a,0x16,0x8c,0xeb,0xad,0x07,0x1c,0x04,0x3b, -0x78,0x6a,0xc6,0x0e,0x66,0x40,0x46,0x4c,0x75,0x15,0xd1,0x61, -0xe8,0x88,0x03,0x75,0xfa,0x69,0xa8,0xa3,0x96,0x2a,0x27,0xaa, -0xd3,0x79,0x1a,0x6a,0xab,0xa9,0x51,0x95,0x1c,0xac,0x87,0x3a, -0x38,0x2b,0xa8,0xa2,0xda,0xba,0x9d,0xa9,0xb1,0xae,0xc4,0x53, -0x89,0x2d,0xa1,0xe7,0x52,0x4e,0xc0,0x25,0x8b,0xec,0xa4,0x40, -0x21,0x3b,0x5c,0x8c,0xe4,0x3d,0x1b,0x53,0x51,0x2e,0x56,0x0b, -0x5c,0xa6,0x99,0xc6,0x48,0x52,0xb1,0xc8,0xca,0xd6,0xa9,0x19, -0xe1,0xb6,0x4a,0xea,0x3b,0xf2,0x94,0x2b,0xd5,0x43,0x85,0x9e, -0xaa,0xa5,0x41,0xe0,0x8a,0x2b,0x2a,0xb9,0xe6,0xca,0x83,0xae, -0x54,0xa7,0xce,0x99,0xaa,0x40,0xee,0xf6,0x4a,0x1a,0x04,0xe9, -0xb4,0xe3,0x2f,0xbd,0xea,0xde,0x2b,0x6b,0xb8,0xfb,0x06,0xd2, -0xef,0xbf,0xed,0x04,0x6c,0x2f,0xbb,0xb9,0x29,0xea,0x30,0x9a, -0xc6,0xb6,0x27,0xdf,0x4c,0xaf,0xc9,0x47,0xa3,0xb3,0xcb,0xd2, -0x96,0xb1,0x7c,0x1d,0x2f,0x0a,0x9e,0x8d,0x6f,0xc1,0x88,0x6d, -0x50,0x33,0x41,0x00,0x6a,0xa8,0xa0,0x42,0xff,0x06,0x81,0xbc, -0xef,0x18,0x19,0xec,0xa9,0xf8,0x6a,0x85,0xb2,0xb8,0x2b,0xb7, -0xfc,0x32,0xac,0x31,0x4f,0x47,0xb3,0xca,0x07,0x27,0x9c,0x0e, -0xce,0x02,0xd3,0x21,0xf3,0xc9,0x9f,0xf6,0x0c,0xc1,0xcf,0x41, -0xdb,0x3b,0xb4,0x6e,0x1e,0xdf,0xb4,0xa8,0x8d,0x94,0x7a,0x3b, -0xd4,0x98,0xb6,0x01,0x76,0x14,0x5b,0x8c,0x1e,0xdb,0xa2,0x9a, -0x66,0xd6,0xc8,0x6c,0x70,0x63,0x1e,0xa5,0xa6,0x5b,0xe0,0xb2, -0x6a,0x73,0xb9,0x2e,0xe3,0x2a,0x34,0xd1,0xb4,0xd2,0x8a,0xb6, -0xb9,0x4a,0xdb,0xdb,0x36,0xcd,0x3b,0xf0,0x9b,0xf4,0xda,0x4b, -0xd3,0x7d,0xb6,0xcf,0xfe,0x02,0x9d,0xf7,0xdc,0x4d,0x3f,0xed, -0x74,0x8b,0x32,0xca,0xa4,0x94,0xc5,0x58,0x5f,0x1b,0x58,0xd4, -0xc4,0xfa,0x25,0x5c,0x5a,0xd9,0x26,0x3a,0x72,0xa5,0x17,0x4f, -0x3c,0x73,0xc1,0xe3,0x42,0x90,0xf6,0xbc,0x15,0xb1,0xbd,0x73, -0xe6,0xf0,0x6e,0x2e,0xef,0xc2,0x81,0x2b,0x59,0xb0,0xc1,0x08, -0x03,0xec,0xb9,0xde,0xa0,0xbf,0xcb,0xaf,0xdf,0x0a,0xb3,0x6e, -0x3a,0x7d,0x3f,0xed,0x86,0x63,0xb5,0x73,0xe5,0x06,0xf9,0xd4, -0xac,0x45,0x8e,0xfb,0x6e,0x2f,0x1d,0xfe,0x75,0xd6,0xf1,0x0d, -0xbe,0x68,0x6f,0x62,0x5b,0x1e,0xb6,0xaa,0x46,0x8f,0x4b,0xea, -0xad,0x15,0xb9,0x41,0xfb,0xae,0x29,0x3f,0xff,0x2a,0x04,0xd3, -0xeb,0xac,0xa4,0xf3,0xbe,0x1e,0x1c,0xfd,0x43,0xda,0x33,0xcd, -0xbd,0xf5,0xde,0x63,0x2f,0xbe,0xcc,0x90,0xae,0x78,0xf5,0x6b, -0xb4,0x15,0xfe,0xb1,0xa5,0xd2,0x1a,0x7b,0xec,0xd7,0xf3,0x8b, -0xff,0xcc,0x25,0x97,0x21,0x23,0x6f,0xe2,0x99,0x25,0xbe,0xb9, -0x5f,0x9c,0xb2,0xa7,0x3d,0xa2,0xd9,0x09,0x80,0x84,0x72,0xc3, -0x00,0xa7,0xc3,0xa7,0x09,0xf9,0x49,0x80,0xdb,0xdb,0x93,0xa0, -0x18,0x78,0xc0,0x04,0x76,0x09,0x7f,0x63,0x22,0xd3,0x05,0x85, -0xa7,0x3c,0xe6,0x89,0x69,0x83,0x17,0xe4,0xa0,0x9a,0xa0,0xf5, -0x9d,0x33,0xb1,0x69,0x4d,0x24,0x4c,0x5e,0x09,0x55,0x95,0x1f, -0x22,0x15,0xe9,0x48,0x02,0x9c,0x1e,0xd1,0x56,0x48,0xa4,0xc2, -0x4c,0x10,0x86,0x19,0x62,0x52,0x95,0x32,0x53,0xc3,0xf1,0x4d, -0x29,0x42,0x55,0x02,0xcd,0x0e,0xd3,0x27,0x32,0xa8,0x35,0xaa, -0x5b,0xb2,0xb9,0x9a,0xa5,0xac,0x86,0x44,0x91,0x21,0x0e,0x2f, -0x49,0xd4,0x14,0xc9,0x1e,0xb6,0x3f,0x45,0x45,0x91,0x89,0xf9, -0x22,0xd0,0x0c,0x69,0x68,0x21,0x04,0x22,0x30,0x86,0x32,0x04, -0xa0,0x16,0x41,0xc4,0x45,0x37,0x10,0x4d,0x43,0x39,0xd4,0xe1, -0x16,0xb9,0x58,0x46,0x1f,0xf6,0x09,0x8d,0x62,0x54,0xe3,0x5f, -0x7a,0xd7,0x16,0xf7,0xf1,0xee,0x62,0x56,0x5b,0xd6,0xc5,0xaa, -0xf6,0xac,0xe1,0x54,0x6b,0x59,0xf4,0x13,0x53,0xee,0x3e,0x56, -0xb1,0xa9,0x81,0x4c,0x89,0x87,0xa3,0xe3,0xe2,0xb4,0xa2,0x1d, -0xa9,0x40,0x87,0x8c,0xd8,0x51,0xe0,0x22,0x1b,0xd9,0x1d,0x08, -0x6a,0x47,0x92,0x8f,0x0c,0x54,0x25,0x93,0xe3,0xc8,0xf4,0x15, -0xc5,0x58,0xe2,0x41,0x1c,0xfd,0x6c,0xe4,0x47,0xdd,0xed,0xc5, -0x69,0xcb,0xf3,0xd8,0x5e,0x4a,0xe9,0xbb,0x13,0x31,0x4b,0x95, -0xed,0x3b,0x24,0x28,0xff,0x7f,0xd7,0x10,0x08,0x2c,0xa6,0x96, -0x92,0xa1,0xe1,0x24,0x9b,0x43,0x99,0xc9,0xf0,0x52,0x35,0xcd, -0xf9,0x0c,0x30,0x4d,0xa3,0xc3,0x5c,0x4e,0x07,0x35,0xa7,0x39, -0xa6,0x2f,0xe9,0xe3,0x2c,0x56,0x86,0x72,0x3c,0xc3,0xc3,0x1a, -0xc5,0x90,0x98,0xb8,0x41,0x22,0x6e,0x3c,0x10,0x13,0xa4,0xfd, -0x8e,0x97,0x44,0x56,0x8e,0x47,0x96,0xf9,0x5a,0xa4,0x59,0x2e, -0x03,0x4e,0xac,0x8c,0x65,0x9c,0x5f,0x31,0xe7,0x8d,0x34,0x08, -0x4b,0x4f,0x4e,0x0b,0x94,0xd0,0x9c,0xe3,0x07,0xfb,0xc8,0x31, -0x78,0x8e,0xd2,0x94,0xab,0xf4,0x8b,0x2b,0x4f,0x34,0x3c,0x6a, -0xb1,0xf3,0x8f,0xf9,0xe2,0xc8,0x94,0x00,0xfa,0x18,0x81,0xb6, -0x8b,0xa0,0xa3,0x31,0xe8,0x3f,0x33,0x32,0x16,0x84,0x6a,0x85, -0xa1,0x9a,0xa2,0x62,0x3b,0x9f,0xf9,0xb4,0x23,0xba,0xb3,0x93, -0xc6,0x53,0xe5,0xc3,0xf8,0xe9,0xcf,0xc1,0x91,0x6c,0x9f,0x14, -0x2d,0x24,0x99,0x34,0xfa,0x16,0x89,0xee,0x05,0x24,0xeb,0x08, -0xa8,0x42,0x07,0x9a,0xd2,0x82,0xae,0xf4,0xa0,0x2d,0x4d,0x68, -0x44,0x16,0xfa,0xd2,0x86,0xce,0x94,0x3e,0x16,0x6d,0xe6,0xfb, -0xee,0xb7,0x4e,0xf9,0x31,0x0a,0xa3,0x4c,0x24,0x69,0xc9,0xa4, -0x59,0x38,0x6a,0x32,0xf1,0x8e,0xd1,0xfc,0xa3,0x33,0x51,0xd2, -0x11,0x91,0x2c,0x55,0x25,0x14,0x51,0xc8,0x53,0xb3,0x12,0x55, -0x8c,0x34,0x95,0x24,0x53,0x65,0xaa,0x10,0x93,0xc7,0x96,0x36, -0x61,0x70,0x83,0x23,0x54,0x27,0x57,0x3f,0x78,0xc2,0xaf,0x62, -0xb0,0x6b,0x64,0x05,0xab,0x06,0x3b,0xd8,0xff,0x55,0xb1,0x71, -0x15,0x4d,0x1d,0x54,0xeb,0x58,0xd3,0x24,0xd7,0xb9,0xd2,0xb5, -0xae,0x98,0x5a,0x22,0x5e,0xf3,0x4a,0xb2,0x9e,0x32,0xae,0x89, -0xa4,0xec,0xab,0x14,0x29,0xfa,0x57,0xbd,0xd2,0x06,0x51,0x93, -0xb3,0x2b,0x62,0x13,0xab,0xd8,0xc5,0xf2,0x0f,0x8f,0x89,0x8c, -0xd6,0x1d,0x0f,0x17,0x97,0x88,0x1e,0xb5,0xb2,0x73,0xac,0x26, -0xc7,0x66,0xc2,0x3b,0xe0,0x65,0x4d,0x21,0x12,0xdd,0xc9,0xa5, -0x18,0x2b,0xda,0xd1,0x92,0x96,0x7f,0x96,0x1d,0x64,0x33,0xd3, -0x8a,0x4a,0xe0,0xc9,0x92,0x5a,0x13,0x7d,0x1f,0x6a,0xfb,0x52, -0x3c,0x90,0x09,0xce,0x3c,0x2a,0x2a,0x2d,0x6e,0x73,0x9b,0xdb, -0xd6,0x02,0xef,0xb5,0x41,0x75,0x94,0x37,0x2f,0x3b,0xd2,0x57, -0x42,0xea,0x37,0xd9,0xcc,0xa6,0x36,0x77,0xb2,0x1e,0x19,0xa9, -0x45,0xb7,0xce,0x7d,0x6e,0x62,0x5f,0xe3,0x47,0xae,0x39,0x53, -0x9d,0x1d,0x5d,0xed,0x32,0x2d,0x6a,0xcd,0x25,0x2e,0x0f,0xb9, -0xc9,0x55,0x2e,0xfc,0xa0,0x2b,0xde,0xf1,0x22,0x56,0x9e,0xaf, -0x95,0xd6,0x21,0x75,0x87,0xdd,0xf5,0x8e,0x74,0x99,0x87,0x7c, -0x2f,0x70,0x71,0x07,0xb6,0x6b,0x12,0xe5,0x9d,0xe4,0xbd,0x2f, -0x7e,0xb3,0x82,0xd1,0x16,0xd1,0xf1,0x51,0x3f,0xdd,0x68,0x52, -0x6d,0x67,0x39,0x8d,0xce,0x93,0xa3,0x89,0x1b,0xe2,0x42,0x9a, -0x95,0xdf,0x05,0x33,0xf8,0x22,0x27,0x64,0xeb,0x5b,0x47,0x08, -0x57,0xc3,0x85,0x4d,0x84,0x62,0x02,0xa1,0x97,0xcc,0x1a,0xe1, -0xb3,0xce,0xc8,0xc2,0x61,0xf2,0xea,0xa6,0x2a,0xf7,0x4d,0xea, -0xff,0x78,0x67,0x91,0x25,0xd6,0xce,0x89,0x49,0x8c,0xd8,0x07, -0x00,0xe0,0x01,0x2c,0x66,0x31,0x63,0x61,0xdc,0x60,0xd2,0x4a, -0x05,0x3f,0x66,0x43,0x19,0x04,0x6c,0x9c,0x55,0x07,0xe5,0x78, -0x19,0x37,0xf6,0x54,0x8f,0x2f,0xf9,0x98,0x25,0xfd,0xd8,0x6e, -0x10,0x12,0xb2,0x38,0x8f,0x4c,0x2b,0x1c,0x1f,0x79,0xc7,0x1e, -0x79,0xb1,0x8b,0x1f,0x70,0x00,0x29,0x47,0x79,0xc6,0x56,0xf6, -0x08,0x2d,0x83,0x5c,0x3e,0xbb,0xd9,0x98,0x54,0x63,0x21,0x95, -0x8d,0xb7,0x1c,0xe4,0xc6,0x8c,0x25,0x34,0x4a,0x7e,0x97,0x91, -0x57,0xc1,0xaf,0xb1,0x1c,0xec,0xcc,0xbd,0x4a,0x33,0x66,0x9c, -0xac,0x90,0x28,0x57,0x79,0x20,0x52,0x6e,0xb1,0x5c,0x5d,0x6c, -0x10,0x28,0xd7,0xf5,0x00,0x7e,0x3e,0x00,0x9e,0xf3,0x0b,0x25, -0x30,0x93,0x4a,0x5c,0x6f,0x23,0x86,0x8f,0x1b,0x83,0xe4,0x8d, -0x3c,0xa4,0x31,0x05,0x3a,0x59,0xdd,0x20,0xe3,0x63,0xe8,0x09, -0x11,0x4a,0x6d,0x3e,0x98,0xa1,0x7b,0xa6,0xe6,0xd0,0x2c,0xba, -0x24,0x0f,0x31,0x33,0xa6,0x23,0x1d,0x08,0x35,0x7f,0x4f,0xce, -0x76,0x06,0x34,0x95,0x51,0x4d,0x65,0x3d,0xa7,0x09,0xd0,0x07, -0x91,0x71,0x8b,0x5d,0xbd,0x9a,0x17,0xef,0x39,0xd0,0xde,0x91, -0xf5,0xab,0x61,0x0d,0xc9,0x95,0x55,0xe6,0x5d,0xe1,0x72,0x55, -0x63,0x7e,0x74,0x52,0x4c,0x36,0xa6,0xd7,0xbd,0xfa,0x75,0x65, -0x48,0x25,0xec,0x5d,0x1f,0x2c,0x35,0xbe,0x36,0x5f,0x68,0x96, -0x8d,0xc9,0xd0,0x38,0xfb,0xd8,0xe6,0x3b,0x98,0xb4,0x55,0xa2, -0x67,0x29,0x4f,0x99,0xff,0xce,0x02,0xa1,0x73,0x9d,0x9f,0x4c, -0x6b,0x58,0xd3,0x5a,0x20,0x80,0x9e,0xb2,0x77,0x60,0xac,0xeb, -0x16,0xaf,0x9b,0x24,0xe5,0xf6,0x8e,0xb0,0xb3,0x5c,0x19,0xe7, -0xd9,0x2d,0xd9,0xc9,0x14,0x48,0xbc,0x49,0x35,0x6f,0xeb,0xd5, -0x9b,0x54,0x8a,0xee,0x34,0x00,0xe2,0x4d,0xed,0x83,0xd1,0x9b, -0x34,0xcd,0xbe,0x77,0xc0,0x2d,0x6d,0xf0,0x55,0x19,0x7a,0xe1, -0x9c,0x06,0x38,0x42,0xee,0xfc,0x6d,0x70,0xab,0xba,0xca,0xe8, -0xce,0x8a,0xae,0xf5,0x2c,0xeb,0x76,0x5f,0x44,0xc6,0x75,0x66, -0x35,0x9e,0x71,0x7d,0x16,0x18,0x8b,0xdc,0xd6,0xed,0x9a,0x4a, -0xb1,0x0b,0xcd,0x33,0x57,0x29,0xfb,0x47,0xbb,0xd6,0xb7,0xca, -0x8d,0x06,0x6c,0x88,0xb8,0x7c,0xda,0x0b,0xcf,0xf4,0xb5,0x69, -0x3e,0x6c,0x4a,0x36,0x3b,0xd4,0x32,0x4f,0x4d,0xb4,0x6b,0xee, -0x6e,0x6e,0x4f,0xbc,0xdb,0x76,0xfe,0x36,0x9e,0x39,0xbe,0x67, -0x5c,0xab,0x7b,0xdb,0x79,0x3e,0xfa,0xab,0x07,0x52,0x72,0x8c, -0x23,0x5d,0xea,0x1c,0xcf,0xb7,0xab,0x0a,0x98,0x65,0x62,0xe2, -0x1b,0x4a,0x29,0xff,0xdf,0xca,0xb8,0x9e,0xf0,0x87,0xf4,0x1c, -0x2c,0x40,0x47,0xb8,0xc0,0x17,0xbe,0x40,0x7e,0x89,0xbd,0xd6, -0x2c,0xee,0x36,0xb8,0xb7,0xed,0x62,0xb8,0x3b,0x45,0xdd,0x55, -0x07,0x00,0xaa,0x73,0x3d,0xf5,0x89,0xdf,0xbd,0xef,0x55,0x57, -0x3a,0xd4,0xe7,0xec,0xf6,0x76,0x4f,0x05,0xe6,0x2c,0xac,0x4c, -0xb0,0x77,0x1e,0xa8,0x94,0x1f,0x5e,0xdf,0x34,0xc7,0xb2,0x54, -0x7a,0xfe,0xc3,0xb3,0x0b,0x3d,0x50,0x03,0xff,0x9f,0xfc,0xc1, -0x2b,0xdf,0xf1,0xb8,0x73,0x1e,0xca,0xdc,0x5e,0xf5,0xba,0x3d, -0x1e,0x68,0xbb,0x7b,0x3e,0xf0,0x09,0x01,0xf9,0xd2,0xef,0xee, -0x74,0xbc,0x6b,0xdb,0xdc,0xae,0x96,0x71,0xde,0x47,0xc3,0x78, -0x4a,0x8f,0xca,0xde,0x5f,0xae,0x3d,0xed,0xf7,0x93,0xe5,0x32, -0x1b,0xfc,0x57,0xbd,0x3f,0x38,0x9b,0x7f,0x4f,0x95,0x09,0xc5, -0xf9,0x29,0x9c,0x67,0x77,0xe7,0x3b,0x5f,0xf2,0xa6,0xb3,0x9e, -0xca,0xc8,0x47,0xfd,0xc5,0x45,0xbe,0xf1,0xa3,0x8b,0x9e,0xef, -0x49,0x37,0x79,0x42,0x98,0xee,0xf7,0x5a,0x4f,0x89,0xf1,0xa3, -0x8b,0x9b,0x7e,0x56,0x76,0xfb,0xf0,0x97,0x0b,0xfc,0x88,0x97, -0x73,0x9c,0x25,0x84,0xb0,0x7f,0xf5,0x7e,0xcd,0x8f,0x91,0xfc, -0xfa,0x81,0xa6,0xfe,0xd0,0xd4,0x9d,0xdd,0xcf,0xa7,0x73,0xb7, -0xe1,0xee,0x6d,0xbc,0xa3,0x7e,0xe2,0xfd,0x7f,0xfd,0xdb,0xad, -0xde,0xf6,0x25,0x1d,0xf3,0xf5,0x9d,0xc7,0xd9,0xdd,0x41,0x88, -0x9c,0xae,0xbd,0x9e,0x42,0x94,0xdc,0xca,0x48,0x06,0xcb,0xbc, -0xc3,0xb9,0x28,0xc6,0xee,0x3d,0x46,0x63,0x40,0xa0,0xb9,0x4c, -0x20,0x62,0x88,0xdf,0xfb,0x61,0x46,0x6a,0xfc,0x0b,0xc0,0x78, -0x46,0xf1,0x3d,0x46,0x68,0x98,0x06,0xd2,0xa4,0x43,0x08,0x72, -0x86,0xfb,0xb9,0x9b,0xd1,0x25,0x5f,0xe7,0x11,0x20,0xc8,0xad, -0x1b,0xdc,0xa9,0x1a,0xf7,0x21,0xe0,0xe9,0xc5,0x1a,0x01,0xda, -0xda,0xdc,0xd9,0xa0,0x53,0xa0,0x1b,0x03,0xae,0xc6,0x03,0x1a, -0xc6,0xf7,0xb9,0x4c,0x91,0x90,0x99,0x05,0xd2,0x92,0x10,0x96, -0xff,0x1f,0x11,0xd2,0x90,0x97,0x75,0x60,0x67,0xc4,0x1f,0x69, -0xe8,0x10,0xfd,0x91,0x20,0x66,0x68,0x06,0x14,0x02,0xd1,0xc1, -0xf4,0x60,0x95,0x79,0x9b,0x0b,0xe2,0xdf,0xaa,0x25,0xe0,0xa9, -0x55,0x1c,0x01,0xba,0xda,0xf4,0xe5,0x9a,0x0e,0x72,0x61,0x01, -0xf2,0xe0,0x93,0x51,0x1f,0xf6,0x5d,0xc6,0x05,0xd2,0x50,0x06, -0xce,0x0b,0x82,0x70,0xe0,0x65,0xf8,0x1b,0x1c,0x4a,0xa0,0x1c, -0xd2,0x90,0x11,0x5e,0x46,0x09,0xea,0x10,0x08,0x2a,0x8c,0x87, -0xac,0xe0,0x68,0x1c,0x4c,0x20,0xfe,0x61,0x15,0x96,0xa0,0x9c, -0xc5,0x1d,0xff,0x75,0xe1,0x0b,0x52,0x5f,0x94,0xd1,0x20,0xb8, -0xf1,0x1d,0xea,0x65,0x1c,0xd2,0xd1,0x1d,0x1a,0x92,0xde,0xc5, -0x71,0x5f,0x0e,0xda,0x9f,0xac,0x31,0xa0,0xd2,0x6d,0x1d,0x75, -0x34,0x61,0x1d,0x2e,0xd2,0x1e,0x8e,0xc6,0xc3,0x39,0x47,0x16, -0x76,0xa0,0x76,0x4c,0xa1,0xb8,0x3d,0x22,0xe8,0x31,0xa2,0xf3, -0xd5,0x19,0xba,0x39,0x1f,0xf2,0xe9,0x9f,0x00,0x9e,0x9b,0x0d, -0xf2,0x99,0xd1,0xc5,0x1a,0xfe,0x5d,0x5f,0x1b,0x76,0x9c,0x26, -0x02,0x1e,0xd2,0x0d,0x9a,0x91,0x20,0x47,0x72,0x40,0x87,0x31, -0x26,0xc7,0xbf,0x79,0x84,0xd7,0x15,0x23,0x32,0x1e,0xa3,0x31, -0x86,0x5d,0xa5,0x91,0x9d,0x33,0x42,0x63,0x35,0xc6,0x19,0xc4, -0x25,0x5c,0x9c,0x25,0x63,0x31,0x5e,0x63,0xa9,0xb5,0x22,0x2c, -0x26,0x5f,0xc8,0x85,0x5e,0xf3,0x7d,0x9e,0x25,0xae,0x5a,0x26, -0x96,0x9c,0xf4,0xc9,0xdd,0xc7,0xed,0x5f,0xff,0xb1,0x21,0x0c, -0xee,0xdf,0xa9,0xf1,0xff,0xd8,0x76,0xb8,0x50,0xba,0x44,0xc4, -0x3a,0x40,0x87,0xce,0xed,0x5a,0x31,0x42,0xc9,0x3d,0xd2,0x9c, -0x3e,0x66,0x1b,0x3d,0x32,0x92,0x3d,0xd2,0xcb,0x8f,0x04,0xa4, -0xe6,0xa9,0xca,0xad,0x14,0x64,0x46,0xe4,0x63,0x72,0xec,0xa3, -0xe0,0x9d,0xa3,0xe7,0x75,0x21,0x0e,0xc2,0xda,0xf4,0x5d,0x1c, -0x45,0xe2,0xa0,0x0e,0xa6,0x5e,0x3c,0xca,0xa3,0x26,0xd6,0x1f, -0xf2,0xd9,0x1f,0x39,0x0a,0x5b,0x24,0xe0,0x89,0x3f,0xe2,0xe3, -0x41,0x42,0x40,0x49,0x02,0x1c,0x49,0x9a,0x24,0x3e,0xea,0x5c, -0x3e,0xaa,0xa4,0xd8,0xb5,0xe4,0x91,0x9c,0x24,0x4c,0x26,0xc7, -0x4a,0xca,0x0c,0x4d,0x0a,0xdb,0x4b,0xf2,0x24,0x4e,0xb6,0x1d, -0xc5,0xb9,0x22,0x45,0xee,0xe0,0x2c,0x9a,0x5b,0xd4,0xbd,0x98, -0xfe,0xf9,0xd9,0x17,0x16,0xe5,0x1a,0xb2,0x63,0x3b,0x92,0x5b, -0xc4,0x45,0x1d,0x18,0x3e,0xa2,0xe0,0x4d,0x85,0xdd,0x2c,0x52, -0xa7,0x08,0xe4,0xc9,0x75,0x0a,0x56,0x66,0x65,0x42,0x8e,0xd8, -0x55,0x2e,0xd2,0x0e,0x68,0xa5,0x42,0x72,0x25,0x56,0x8e,0xe5, -0x57,0x9a,0xdb,0x0e,0xae,0x25,0x23,0xb2,0xdb,0x2c,0x86,0x1e, -0x94,0xcd,0x60,0xdc,0x79,0xa2,0x30,0xfa,0x22,0xab,0x6d,0x21, -0x2d,0xbe,0x1d,0xd4,0xa9,0x9b,0x18,0x1a,0xe5,0x2f,0x1a,0xc4, -0x01,0x2c,0xdb,0x0b,0x21,0xd0,0xd2,0xac,0x4b,0x90,0xcc,0xa4, -0xcb,0x0d,0xa6,0xf8,0x30,0xcc,0x61,0xb2,0x64,0x62,0x8e,0xd1, -0x62,0x1a,0xa6,0x80,0x20,0xe6,0x49,0x29,0x66,0x61,0x1a,0xca, -0x64,0x66,0x63,0x52,0xda,0x22,0x2c,0xfa,0xff,0x19,0xeb,0x1d, -0x25,0xb9,0x79,0xa1,0x51,0x92,0x5e,0xeb,0x29,0x25,0x3c,0x0e, -0x20,0x6a,0xba,0x5e,0x5d,0x9e,0x5c,0xbe,0x70,0xd1,0x65,0xd2, -0x49,0x5a,0x7e,0x53,0x6b,0x12,0x66,0x61,0xc2,0xa6,0xe2,0xed, -0xc9,0x6c,0x46,0x26,0x66,0x86,0x44,0x6c,0x2a,0x52,0x6e,0xbe, -0x26,0xa0,0xf4,0xa6,0xff,0x29,0xdf,0x2b,0xba,0xa0,0x9d,0x85, -0xe6,0x67,0xd2,0x1a,0x53,0x8a,0xe4,0xde,0x35,0x9f,0xea,0xa9, -0x61,0xba,0x2d,0x62,0xe0,0xd5,0xa5,0x03,0xd5,0xa6,0x9e,0x7c, -0x05,0x6d,0x2e,0x4d,0x96,0x98,0x9a,0xaa,0x64,0x27,0x63,0xea, -0xca,0x58,0x78,0xa7,0x64,0x36,0x8c,0x47,0xe4,0x5f,0x2c,0x06, -0xa5,0x50,0xca,0x1d,0x60,0xd6,0xe0,0xfd,0x21,0xa5,0x7b,0xa6, -0x26,0x42,0xd8,0x62,0x72,0x86,0xdc,0x5f,0xee,0x19,0x5f,0x0e, -0x20,0x54,0x3a,0x88,0x6e,0x66,0x09,0x79,0x8e,0xc6,0x7e,0x6e, -0x67,0x89,0xfd,0xe7,0x75,0x86,0x27,0x70,0x0e,0xa8,0xbb,0x2d, -0x62,0x24,0x4e,0xa4,0x50,0x6a,0xa4,0x7d,0x56,0x1c,0x00,0x2a, -0xe5,0x17,0xd6,0xe7,0x5e,0x3a,0xe2,0xe9,0x35,0xa7,0x84,0xd6, -0x67,0xf5,0x51,0x12,0x58,0xc8,0x95,0x8a,0xa5,0x18,0x59,0x70, -0xa8,0x73,0xcc,0x9a,0xc6,0xfd,0xd9,0x16,0xf2,0xe2,0x17,0x0a, -0xe0,0xe0,0xf1,0xa2,0x48,0xf2,0xdf,0x67,0xfa,0x65,0xeb,0xf1, -0x59,0xb8,0xb5,0x5a,0x26,0x02,0xde,0x6a,0x5e,0x99,0x8d,0xce, -0x55,0x0b,0xba,0xe0,0x2c,0x4e,0xd9,0x2e,0x46,0xdc,0x3b,0x86, -0xe4,0xab,0xe1,0xda,0xd4,0x65,0x62,0x1b,0x1e,0x20,0xde,0x59, -0xff,0x68,0xeb,0x25,0x1d,0x92,0xde,0x28,0x93,0xd2,0x15,0xf3, -0xa5,0xda,0x18,0xf2,0x28,0xdd,0x5d,0x04,0x8f,0xb2,0x28,0x17, -0x76,0xa2,0x5f,0xee,0x5d,0xb9,0x8d,0x9b,0x01,0xae,0xa8,0x5d, -0xfd,0x68,0x93,0x86,0x29,0x62,0x55,0x29,0x55,0x06,0xe0,0xe7, -0x99,0x23,0x95,0x92,0xa3,0xd5,0xf1,0x9f,0x67,0xae,0x86,0xfe, -0x6d,0x62,0x74,0x4a,0x25,0x9b,0xc2,0xa7,0x98,0xd6,0xa9,0x88, -0x9e,0xa8,0x25,0xe6,0xdf,0x92,0x56,0xe2,0x71,0x66,0xdf,0x85, -0x6a,0x64,0xe8,0x29,0x60,0x74,0xc2,0x1e,0xf6,0xd5,0xa8,0x9d, -0x1e,0xea,0xe6,0x79,0x1e,0x0d,0xb2,0xe8,0xc8,0x21,0x9d,0x00, -0x1a,0xea,0x9c,0x51,0x22,0xa4,0x7e,0xa4,0xd4,0xc9,0x29,0xa2, -0x5e,0xaa,0x9b,0xaa,0x25,0x0e,0x7a,0xa6,0x5e,0xde,0x5a,0x2e, -0x7a,0xe6,0x9e,0x46,0xe5,0xa4,0x1e,0x28,0xa6,0x96,0x2a,0x69, -0xc5,0xde,0x7d,0xd2,0x15,0x91,0x7e,0xe9,0x7a,0x52,0xea,0xac, -0x99,0x2a,0xac,0x96,0x56,0xa8,0x66,0xc5,0xb9,0xc5,0xaa,0x54, -0x55,0x04,0x54,0xe1,0xea,0xad,0x56,0x15,0xbe,0xe9,0xea,0x53, -0x5c,0x95,0x52,0x71,0x27,0xb0,0x7e,0x04,0xaf,0x9e,0x85,0x69, -0xda,0x6a,0x83,0x99,0x14,0x4a,0xc5,0x94,0x4a,0x31,0x2b,0x4b, -0x39,0xab,0x4b,0x41,0x2b,0x4c,0x41,0x84,0x4c,0x49,0x2b,0x4d, -0x59,0x6b,0xfd,0xa5,0xda,0xac,0xb6,0x6a,0x8b,0x22,0x2b,0x87, -0x32,0x94,0xb2,0x36,0x2b,0xb5,0x3a,0x88,0x43,0x29,0x09,0xb8, -0x96,0xeb,0xb2,0x8e,0xeb,0xb3,0xaa,0xeb,0xc8,0xed,0x28,0x98, -0xfa,0xa9,0x5e,0x8e,0xff,0x2a,0x94,0x7a,0xab,0x40,0xec,0x40, -0x4e,0x76,0xa8,0x4a,0xd8,0x2b,0x56,0x66,0x85,0xbe,0x9a,0xd8, -0x53,0xf4,0x2b,0x8a,0x3d,0x05,0xaa,0x91,0xa8,0x5b,0x12,0xec, -0xe6,0x61,0x64,0xad,0xd6,0x28,0xa8,0x4a,0xdd,0xaa,0xde,0x60, -0xa5,0x4a,0xdc,0x7d,0x51,0x05,0x2f,0xd9,0x12,0x05,0x0e,0x99, -0x54,0xdc,0x12,0xc6,0x52,0x86,0x93,0x0d,0x5f,0x30,0x19,0x13, -0x2b,0x42,0x9e,0x54,0x08,0x93,0xc8,0xa2,0x46,0x22,0x4a,0x29, -0x27,0x92,0xdc,0xbb,0x1a,0x65,0x51,0x1e,0x6b,0x79,0x96,0xa1, -0x8b,0xaa,0xc4,0xb6,0xd2,0x98,0x54,0x90,0x91,0x3e,0xfa,0x6b, -0xa0,0xd0,0xec,0x43,0xda,0x2c,0x04,0xe1,0x6c,0x57,0x66,0x47, -0xf6,0x74,0xe3,0xbe,0x96,0x27,0x90,0x7a,0x9b,0x94,0xce,0x1d, -0x30,0x16,0x2d,0x8b,0x22,0x29,0xc7,0x75,0x62,0xbb,0x2d,0x69, -0xcc,0xce,0xd5,0x60,0x42,0x04,0x74,0x20,0x08,0x91,0x10,0x08, -0xd1,0x8c,0x91,0xd4,0x2a,0xe3,0x62,0x18,0x88,0xd5,0x4e,0x07, -0xd6,0x3a,0xe4,0x21,0x56,0x89,0x86,0x5c,0xad,0x1a,0x81,0xad, -0x87,0x88,0xed,0x91,0x0d,0x5d,0x2d,0x2a,0x9f,0x85,0xc2,0xe5, -0x2e,0xee,0x1d,0x2e,0x1e,0x29,0xa7,0xba,0xa5,0xc3,0x76,0x2b, -0x7e,0x15,0x4a,0xd9,0xc6,0xe4,0xd6,0xf2,0x88,0x8d,0x4d,0x07, -0x1d,0xe4,0xad,0xd6,0x1e,0x5e,0xdf,0x2a,0xc9,0xdf,0x76,0x51, -0x4a,0x7e,0x06,0xda,0x12,0x4d,0xe1,0x92,0xd1,0xe1,0x9a,0x46, -0xe2,0xb2,0xe0,0x5a,0x72,0x66,0x39,0xc2,0x1e,0xc4,0x7e,0x66, -0x95,0x02,0xa0,0xdd,0xb6,0x6a,0xbc,0xce,0xff,0x27,0x18,0x62, -0x69,0xe6,0x3a,0x97,0xba,0x18,0xae,0xde,0x1a,0xc8,0x86,0x12, -0x6e,0xe1,0x02,0x24,0x2d,0x91,0x2e,0x57,0xf8,0xed,0xe9,0x1e, -0x2e,0x87,0x94,0xee,0x94,0x9c,0x8a,0xe8,0x26,0x87,0xe3,0xfa, -0x1e,0xc2,0x0d,0xa7,0x17,0xce,0xdd,0x5b,0x12,0xe9,0xe7,0xb9, -0x65,0x0c,0xb6,0x69,0x73,0x1e,0xe0,0xc6,0xb5,0xa9,0xe0,0xc5, -0xe7,0x91,0xbe,0x2c,0x8d,0xd9,0x0b,0xe3,0xbe,0x8c,0xc4,0x16, -0x1a,0xbf,0x29,0xae,0xec,0x56,0x44,0xce,0x4a,0x45,0xaf,0x3d, -0x2f,0xeb,0xfe,0xad,0xf4,0x56,0x85,0xb3,0x59,0xaf,0xe9,0x62, -0xef,0x43,0x4c,0xef,0xcd,0x71,0x6f,0xf6,0xf1,0x68,0x7a,0x26, -0x68,0x86,0x32,0xea,0x22,0x42,0xa8,0x52,0x4e,0x1d,0xc9,0x91, -0xe1,0xf0,0x22,0x6f,0x73,0xd6,0xaa,0xeb,0x7d,0xee,0x62,0xb1, -0x8d,0xe7,0xdc,0x8c,0xf3,0xa2,0x0e,0xf4,0xc6,0xcc,0xfd,0xa6, -0xcd,0xca,0x58,0x9b,0xa8,0x5c,0xef,0xd0,0x78,0x4e,0xd2,0x60, -0x5a,0xca,0xfc,0x9a,0x00,0x07,0x4c,0x01,0x17,0x8d,0xfe,0x3e, -0x59,0xd1,0xb2,0x6d,0xaa,0x55,0xae,0xca,0x22,0x28,0xf9,0x16, -0x69,0x02,0x22,0x65,0xf4,0xc1,0x27,0xc2,0x46,0xac,0xde,0x7c, -0xef,0xe8,0x4c,0xa0,0xd9,0xbc,0x4d,0x02,0x7b,0x30,0xe7,0xac, -0x8c,0xdb,0xa8,0xcc,0x08,0xbf,0x4c,0xec,0xf0,0xcb,0x09,0xdb, -0x4d,0x0a,0x27,0xc7,0x0a,0x13,0x5c,0xa4,0x89,0x1b,0x67,0x72, -0xde,0xb9,0xb1,0x2c,0x5b,0x1e,0x1f,0x9b,0x12,0xdd,0xcb,0xba, -0xe7,0x9d,0xb1,0x1a,0x92,0x2e,0xac,0x3a,0xe6,0x16,0xdb,0x90, -0xff,0x30,0xe9,0x90,0x0a,0xbf,0x05,0x70,0xf7,0x0e,0x8d,0x11, -0x83,0x70,0x12,0xef,0x2f,0x13,0xab,0x70,0xc2,0xb0,0x70,0xa6, -0x41,0x71,0xf6,0xc6,0xb0,0xbb,0x7c,0x4a,0x56,0x15,0xe7,0xf1, -0x69,0x9c,0x04,0x4f,0x2e,0xc5,0xa9,0x28,0xc3,0x96,0xa3,0xdc, -0xe6,0xee,0x2f,0x76,0x22,0xf9,0xa2,0x6c,0xa5,0x96,0x96,0x72, -0xcc,0x4d,0xff,0x82,0x1f,0x03,0xd7,0xcc,0x74,0x64,0x82,0x1b, -0xa7,0x0b,0xfe,0xc6,0x31,0x0a,0x2b,0x09,0x1d,0xf3,0x6f,0xba, -0x2c,0xb0,0xb5,0xb9,0xb0,0x1e,0xd7,0xb1,0x54,0xf8,0xf1,0x01, -0x03,0xf2,0x0d,0x86,0xa3,0xd1,0x76,0x6b,0x00,0x22,0x68,0x8c, -0xfe,0x30,0xa1,0x3a,0xe7,0x9b,0xfa,0xa0,0xdd,0x56,0xdf,0xfa, -0x1a,0x6d,0xc3,0x8a,0xd6,0x85,0xc4,0x8c,0x07,0x37,0x2f,0x03, -0xcf,0x0a,0xd1,0x00,0x88,0x26,0x33,0x6f,0xe1,0xe5,0xaf,0x27, -0xcf,0xf1,0x1e,0x67,0xef,0xf0,0x19,0x30,0xca,0x18,0xb2,0x83, -0x80,0x72,0x14,0x83,0xef,0xf6,0xae,0xf2,0x16,0x43,0xa8,0x8e, -0x26,0xb2,0x8f,0xe2,0x25,0x10,0x6b,0x6a,0xad,0x91,0x61,0xd5, -0x09,0xa9,0xf1,0xf6,0xb2,0xfd,0xb9,0xe8,0xa8,0x9e,0x45,0x88, -0x30,0xf1,0xe8,0xea,0xde,0xea,0xea,0x31,0x28,0xa3,0xae,0x64, -0x84,0x5f,0x32,0x4f,0x49,0x80,0x18,0x33,0xed,0xbe,0xee,0x33, -0xb7,0xf2,0x32,0xbb,0x2e,0xf1,0x55,0x73,0x7c,0xa2,0x67,0xee, -0x6a,0xab,0xe6,0xfa,0xe0,0x5d,0xd2,0x62,0x54,0xaa,0xa5,0xe8, -0xf9,0xe0,0x90,0xaa,0xe5,0xc0,0x4e,0xf0,0x1a,0xd3,0xd8,0x76, -0xa6,0xe4,0xde,0x72,0xff,0xad,0x8f,0x99,0xb2,0x88,0xb8,0x73, -0x33,0xf3,0x6d,0x3c,0x2b,0xf3,0x3c,0xc7,0x24,0xe2,0x36,0x49, -0xda,0xe2,0xf3,0x72,0x34,0xee,0xe4,0xf5,0x73,0xa2,0x2a,0x68, -0xf9,0x0e,0x31,0x89,0x42,0xa2,0xb1,0xce,0xaf,0x42,0xff,0xe5, -0x0f,0x72,0xab,0x6e,0x45,0x49,0xd6,0x22,0x61,0x3d,0xeb,0x47, -0xd7,0xfa,0x73,0x44,0x53,0xad,0x3d,0xdf,0x33,0x34,0x33,0x88, -0xd9,0xee,0xb3,0x84,0x8c,0xad,0x3c,0xff,0x33,0x74,0x9c,0x2d, -0x3f,0x0b,0xf4,0x21,0xeb,0xee,0x0b,0xc6,0x5e,0x9f,0x12,0x2f, -0x54,0x96,0xe8,0x7a,0x92,0xa1,0xf3,0x2d,0xac,0x73,0x82,0xa1, -0xdc,0x8e,0x66,0xde,0x3d,0x6d,0x9a,0x4c,0xc5,0x72,0xd4,0x6c, -0xc0,0x06,0xca,0x4e,0x83,0x6f,0x88,0x42,0xd2,0x4f,0xf7,0xac, -0x50,0x03,0xad,0xce,0x02,0x63,0x7b,0xa2,0x61,0xa4,0x32,0xa8, -0x6a,0xce,0xe9,0x05,0x8b,0xea,0x4c,0x93,0x84,0xa0,0x12,0x33, -0xc0,0x65,0xe3,0x40,0x66,0xec,0xc4,0x0a,0xa1,0xc5,0x42,0x06, -0xc5,0x4e,0xec,0xc6,0x4e,0xc5,0xc8,0x1e,0xd3,0x13,0x6e,0xb5, -0x58,0x87,0xf5,0xc7,0xaa,0x2d,0x41,0xa3,0xef,0x2f,0x43,0xf2, -0x0f,0xab,0xea,0x9f,0x4e,0xe7,0x5b,0x2b,0xd2,0x03,0xe0,0x0b, -0x04,0xb8,0x98,0x55,0x0f,0x04,0xc0,0xe2,0x2b,0x49,0xe4,0x75, -0x50,0x3b,0x05,0x5f,0x1b,0x07,0xbf,0xde,0x6b,0x5f,0x6b,0x9b, -0x23,0xab,0x5a,0xdc,0x6a,0xa1,0x5c,0xc9,0x2f,0x91,0xe2,0x74, -0x5c,0xd7,0xb5,0x5d,0x4f,0x47,0x94,0x65,0xa3,0x49,0x50,0x95, -0xaf,0x5a,0x55,0x4a,0x04,0x6b,0xb1,0x52,0xff,0x76,0x55,0x4d, -0xb6,0x53,0x70,0x36,0x66,0x73,0xe7,0xa9,0x49,0xdc,0x0e,0xd6, -0xdd,0xef,0x0e,0xb3,0x2f,0xaa,0xea,0x6a,0x3a,0xf6,0x5c,0xe7, -0x92,0x6a,0xaf,0xf6,0x45,0x78,0x36,0xb1,0x56,0x36,0x33,0x5e, -0x76,0x6c,0x67,0x36,0x56,0x6d,0x36,0x6d,0xcf,0xf6,0xb0,0xc2, -0x76,0x42,0xb3,0x74,0xba,0x99,0xa6,0xa1,0xde,0xf0,0x78,0xb5, -0x36,0x9d,0x35,0x08,0x71,0xbb,0xb6,0xb9,0xb2,0xeb,0xb3,0x12, -0x33,0xb6,0x5e,0x2b,0x73,0x2b,0xb7,0xaa,0x34,0xf7,0x74,0x34, -0x77,0x4d,0x35,0x6a,0x5c,0xdf,0x68,0xcc,0x4a,0x05,0xe7,0xa5, -0xca,0x71,0xcf,0x35,0xbd,0x7e,0x37,0x78,0x7f,0xc5,0x76,0xd7, -0x49,0xdc,0xdd,0x75,0x78,0x9f,0xb7,0xad,0x1e,0x37,0xc4,0x75, -0x37,0x68,0xa3,0xb7,0x7b,0xdb,0x69,0x6b,0xdf,0xb5,0x6a,0xdf, -0xee,0x7b,0xd7,0xf7,0xa5,0xc6,0xf7,0xc6,0x46,0xb6,0x7d,0xef, -0xb7,0xb7,0xd6,0x75,0xdb,0x29,0xc9,0x63,0xf3,0xb7,0x80,0xc3, -0x6a,0x7b,0xe7,0x8b,0x77,0x0f,0x38,0x82,0x0f,0x78,0x81,0x27, -0x38,0x83,0x37,0x78,0x5d,0x39,0xc0,0x53,0x40,0xb8,0x83,0x4f, -0x38,0x5d,0x49,0x38,0x00,0x58,0x38,0x49,0x60,0xb8,0x47,0x40, -0xb8,0x86,0x5f,0x84,0x84,0x3b,0x00,0x88,0x6f,0x78,0x88,0x5f, -0x78,0x56,0x74,0x78,0x9a,0x98,0x38,0x3f,0x0a,0xd1,0x56,0x88, -0x93,0x62,0x09,0x99,0x79,0x33,0x96,0x93,0x85,0x38,0x8a,0x1b, -0x04,0x87,0x83,0xf8,0x8c,0x0f,0x44,0x8d,0x5f,0xf8,0x8d,0xdb, -0xb8,0x8d,0x6f,0xb8,0x40,0xf4,0xb8,0x53,0x70,0x38,0x8d,0x9b, -0xff,0x78,0x87,0x03,0xf9,0x63,0xa0,0x00,0x92,0x27,0x39,0xd1, -0x24,0xb9,0x92,0x63,0x59,0x80,0xdb,0x95,0x7f,0x1b,0xf8,0x82, -0x5f,0x06,0x64,0x0b,0xd1,0x88,0xab,0xc4,0x88,0xd7,0xf8,0x8c, -0x6b,0x79,0x96,0x2b,0x44,0x96,0xa3,0x78,0x8e,0xf3,0x38,0x96, -0x93,0xb8,0x85,0xe7,0x38,0x8d,0x23,0x84,0x90,0x8f,0x05,0x0a, -0x28,0x00,0x9b,0xb7,0x39,0x0a,0x70,0xf7,0x9a,0xb7,0x39,0x9b, -0xbf,0x79,0x73,0x3c,0x79,0x5d,0x39,0xb6,0x76,0x1f,0x78,0x8b, -0x6b,0x37,0x5d,0xdb,0xf9,0x99,0xdf,0xf8,0x90,0x5f,0xb9,0x8f, -0x6b,0x39,0x89,0x7b,0xf8,0x41,0x18,0xf9,0xa1,0xf3,0x38,0xa2, -0x1b,0xfa,0xa1,0x27,0x84,0xa0,0xff,0xb8,0x9a,0x2b,0x00,0x55, -0xe0,0x01,0x1e,0x28,0x00,0x9d,0xab,0xca,0x9a,0x53,0x3a,0x55, -0x58,0x3a,0xd1,0xf8,0xf9,0x88,0xfd,0xb7,0xaa,0x94,0xf7,0x56, -0x57,0x75,0x7c,0x03,0xb8,0xa7,0x43,0xfa,0x40,0x5c,0xc1,0x15, -0xf8,0xb8,0x40,0xa8,0xba,0x87,0xcb,0xb8,0xab,0xa3,0xba,0x42, -0xc4,0x3a,0x8e,0xcf,0xfa,0x15,0x94,0xf9,0x45,0xc4,0x7a,0x8f, -0x13,0x7a,0xab,0xaf,0xfa,0x8f,0x63,0xf8,0x87,0x03,0x00,0xad, -0x3b,0x48,0xa6,0x43,0x00,0x27,0x1c,0xbb,0xb1,0x57,0xfa,0xa5, -0x43,0x40,0xa6,0x73,0x82,0xb1,0x1f,0x3b,0x27,0x28,0x3b,0x77, -0x17,0xf7,0x94,0x80,0xdb,0xed,0xaa,0xb7,0xcf,0x12,0x37,0x5d, -0x97,0xfa,0x56,0xce,0xb7,0x4a,0x5c,0xc1,0x1e,0xec,0x81,0xaf, -0xcf,0x38,0xb8,0x8b,0xfb,0xb7,0x87,0xbb,0xaf,0x7b,0x44,0xb9, -0xa7,0xfb,0x99,0xa7,0xff,0x3a,0xba,0xcb,0x78,0xa1,0x1b,0xc4, -0xba,0x3b,0xba,0x85,0xcf,0xbb,0x8e,0xcb,0x78,0xbd,0xa3,0xbb, -0x92,0x14,0x7b,0x30,0xf4,0x7b,0x30,0x40,0x80,0xb4,0xe7,0x0b, -0xbf,0xfb,0x7b,0xb4,0x73,0x7a,0xb5,0xeb,0xf7,0xc1,0x97,0xf7, -0xa2,0x61,0x3b,0x3d,0x76,0x1e,0x77,0x33,0x7c,0xa8,0x8b,0x7a, -0xa3,0xb7,0xfa,0x1e,0x0c,0xc3,0x30,0x98,0x7b,0xae,0x57,0xfc, -0xc5,0xb3,0x3b,0x42,0x80,0xbb,0xc5,0x63,0xfc,0xac,0x6b,0x3c, -0xc8,0x27,0x84,0xc7,0x6f,0xfc,0xaf,0xd7,0xba,0xb0,0x8b,0xfc, -0xad,0xa7,0x79,0xa1,0x97,0x3c,0xc6,0x5f,0xb9,0x84,0xbb,0x7c, -0xba,0x4b,0x38,0xb3,0x2b,0x00,0x1e,0x40,0x40,0x30,0x98,0x83, -0x39,0x24,0xbb,0xc1,0x6b,0x45,0xb3,0x4b,0x85,0x39,0x04,0x43, -0xc1,0x5f,0x7a,0xbb,0x50,0xbb,0xa9,0x3b,0x7c,0xc2,0xeb,0x79, -0xc4,0x23,0xbd,0x83,0x8c,0x37,0x8f,0x29,0x7c,0xc6,0x7f,0xfc, -0xaa,0xa3,0xb8,0xcc,0xab,0xbb,0xca,0x5b,0xbd,0xd4,0xa3,0xb9, -0xbb,0x4b,0xfd,0xa3,0xc7,0xfc,0xd5,0xeb,0x38,0x99,0x53,0x7c, -0xd6,0x3f,0xba,0xd8,0x9b,0x3c,0xd8,0xfb,0xbc,0xcd,0x53,0x85, -0xd0,0x07,0x3c,0xda,0xe3,0x01,0x27,0xe4,0xbc,0x54,0x0c,0xfd, -0xb4,0x23,0x7c,0xd2,0x4b,0x7c,0xd1,0xd3,0xfd,0xd2,0x3b,0x7d, -0xde,0x47,0x76,0x9f,0xdb,0x3d,0xc9,0xeb,0xbb,0xac,0x1f,0x84, -0xbd,0x93,0x3d,0xc5,0x8f,0xbc,0xd6,0xdb,0xbb,0xd5,0xbf,0x7c, -0xa2,0x17,0xfe,0xb8,0xd7,0x7a,0xbe,0x2b,0x3e,0xae,0x43,0x38, -0xe2,0x17,0x7a,0xcd,0xdf,0xbc,0xbf,0xaf,0xff,0x7d,0xcf,0x57, -0xfe,0xdb,0xfb,0x3b,0xc0,0xf7,0xfc,0xde,0x2b,0xbd,0x81,0x6f, -0x77,0xa7,0x71,0x7b,0xc3,0xeb,0x7d,0x77,0x83,0xfe,0xc9,0xf9, -0x7d,0xc7,0xcf,0xbc,0xba,0x37,0x7e,0xeb,0xe3,0xb8,0x86,0xf7, -0xf8,0xb0,0x3b,0xbe,0xbc,0x73,0x3c,0xec,0x43,0xfa,0xec,0xdf, -0x7e,0xaa,0xb3,0x3e,0xd5,0x37,0xbe,0x90,0x57,0xfe,0xb3,0x43, -0x3b,0xdb,0x6b,0x3e,0xb4,0xf3,0x3c,0xd1,0x87,0xbe,0xd1,0xef, -0x3d,0x7d,0x93,0x3e,0x26,0x59,0x7b,0x59,0x7a,0xfb,0x68,0x30, -0xbf,0x97,0x13,0xfe,0xed,0xe3,0x7b,0xa3,0xb3,0x7c,0xbc,0x07, -0x3a,0xae,0x5f,0x7f,0x90,0x67,0x3f,0xa3,0x2f,0xbe,0xf7,0x6b, -0xfd,0xd9,0xa3,0x3d,0xc0,0x53,0x3a,0xa5,0x7b,0x3e,0xf9,0x4f, -0xc5,0xf9,0x1f,0x3f,0xf2,0xe3,0xbd,0x22,0xd1,0x77,0xd3,0xa3, -0x7e,0xb6,0x2f,0xbc,0xfb,0x2b,0x50,0xfd,0xa3,0xfc,0xa2,0x83, -0x7f,0xb0,0x4f,0x3c,0xd8,0x63,0xff,0xbd,0x03,0x84,0x03,0x81, -0x00,0x1c,0x00,0x30,0x78,0x90,0xe0,0x40,0x84,0x0b,0x0f,0x2a, -0x64,0xc8,0xd0,0x61,0x43,0x81,0x05,0x1f,0x22,0x1c,0x48,0xf1, -0x20,0x04,0x14,0x0a,0x38,0x76,0x44,0x01,0x81,0xa1,0xc6,0x8e, -0x1e,0x41,0x86,0x7c,0xf0,0x00,0x02,0x84,0x93,0x25,0x2b,0xb6, -0x7c,0xa8,0x12,0xa5,0x4b,0x99,0x26,0x53,0xce,0x44,0x98,0x72, -0xe5,0x43,0x8a,0x05,0x79,0xce,0xc4,0x58,0x51,0x61,0x4f,0x88, -0x06,0x27,0xfe,0xb4,0x98,0x10,0xa9,0x4c,0xa3,0x2d,0x97,0x26, -0x75,0x29,0x74,0xa1,0x46,0x14,0x53,0xa7,0xb2,0x8c,0x4a,0x95, -0xff,0xaa,0xd5,0x9b,0x31,0x01,0xa8,0xd4,0x6a,0xb3,0x22,0xcc, -0xaf,0x60,0x5f,0xd6,0x24,0x9b,0x71,0xec,0xd0,0x88,0x47,0xd7, -0xaa,0x25,0xea,0xd3,0xe9,0x42,0x9e,0x4d,0xdd,0x9e,0xb5,0xfb, -0x96,0x60,0xc8,0x94,0x7b,0x5d,0xee,0xe5,0x1b,0xd6,0xaa,0xd9, -0xbb,0x65,0x07,0x17,0x36,0x7c,0x18,0x71,0x62,0xc5,0x89,0xe9, -0x2e,0x76,0xfc,0x18,0x72,0x64,0xc9,0x93,0x29,0x57,0xb6,0x7c, -0x19,0x73,0x66,0xcd,0x9b,0x39,0x77,0xf6,0xfc,0x19,0x74,0x68, -0xd1,0xa3,0x49,0x97,0x36,0x7d,0x1a,0x75,0x6a,0xd5,0xab,0x59, -0xb7,0x76,0xfd,0x1a,0x76,0x6c,0xd9,0xb3,0x69,0xd7,0xb6,0x7d, -0x1b,0x77,0x6e,0xdd,0xbb,0x79,0xf7,0xf6,0xfd,0x1b,0x78,0x70, -0xe1,0xc3,0x89,0x17,0x37,0x7e,0x1c,0x79,0x72,0xe5,0xcb,0x99, -0x37,0x77,0xfe,0x1c,0x7a,0x74,0xe9,0xd3,0xa9,0x57,0xb7,0x7e, -0x1d,0x7b,0x76,0xed,0xdb,0xb9,0x77,0xf7,0xfe,0x1d,0x7c,0x78, -0xf1,0xe3,0xc9,0x97,0x37,0x7f,0x1e,0x7d,0x7a,0xf5,0xeb,0xd9, -0xb7,0x77,0xff,0x1e,0x7e,0x7c,0xf9,0xf3,0xe9,0xd7,0xb7,0x7f, -0x1f,0x7f,0x7e,0xfd,0xfb,0xf9,0xf7,0xf7,0xff,0x1f,0xc0,0x00, -0x05,0x1c,0x90,0xc0,0x02,0x0d,0x3c,0x10,0xc1,0x04,0x15,0x5c, -0x90,0xc1,0x06,0x1d,0x7c,0x10,0xc2,0x08,0x25,0x9c,0x90,0xc2, -0x0a,0x2d,0xbc,0x10,0xc3,0x0c,0x35,0xdc,0x90,0xc3,0x0e,0x3d, -0xfc,0x10,0xc4,0x10,0x45,0x1c,0x91,0xc4,0x12,0x4d,0x3c,0x11, -0xc5,0x14,0x55,0x5c,0x91,0xc5,0x16,0x5d,0x7c,0x11,0xc6,0x18, -0x65,0x9c,0x91,0xc6,0xff,0x1a,0x6d,0xbc,0x11,0xc7,0x1c,0x75, -0xdc,0x91,0xc7,0x1e,0x7d,0xfc,0x11,0xc8,0x20,0x85,0x1c,0x92, -0xc8,0x22,0x8d,0x3c,0x12,0xc9,0x24,0x95,0x5c,0x92,0xc9,0x26, -0x9d,0x7c,0x12,0xca,0x28,0xa5,0x9c,0x92,0xca,0x2a,0xad,0xbc, -0x12,0xcb,0x2c,0xb5,0xdc,0x92,0xcb,0x2e,0xbd,0xfc,0x12,0xcc, -0x30,0xc5,0x1c,0x93,0xcc,0x32,0xcd,0x3c,0x13,0xcd,0x34,0xd5, -0x5c,0x93,0xcd,0x36,0xdd,0x7c,0x13,0xce,0x38,0xe5,0x9c,0x93, -0xce,0x3a,0xed,0xbc,0x13,0xcf,0x3c,0xf5,0xdc,0x93,0xcf,0x3e, -0xfd,0xfc,0x13,0xd0,0x40,0x05,0x1d,0x94,0xd0,0x42,0x0d,0x3d, -0x14,0xd1,0x44,0x15,0x5d,0x94,0xd1,0x46,0x1d,0x7d,0x14,0xd2, -0x48,0x25,0x9d,0x94,0xd2,0x4a,0x2d,0xbd,0x14,0xd3,0x4c,0x35, -0xdd,0x94,0xd3,0x4e,0x3d,0xfd,0x14,0xd4,0x50,0x45,0x1d,0x95, -0xd4,0x52,0x4d,0x3d,0x15,0xd5,0x54,0x55,0x5d,0x95,0xd5,0x56, -0x5d,0x7d,0x15,0xd6,0x58,0x65,0x9d,0x95,0xd6,0x5a,0x6d,0xbd, -0x15,0xd7,0x5c,0x75,0xdd,0x95,0xd7,0x5e,0x7d,0xfd,0x15,0xd8, -0x60,0x85,0x1d,0x96,0xd8,0x62,0x8d,0x3d,0x16,0xd9,0x64,0x95, -0x5d,0x96,0xd9,0x66,0x9d,0x7d,0x16,0xda,0x68,0xa5,0x9d,0x96, -0xda,0x6a,0xad,0xbd,0x16,0xdb,0x6c,0xb5,0xdd,0x96,0xdb,0x6e, -0xbd,0xfd,0x16,0xdc,0x70,0xc5,0x1d,0x97,0xdc,0x72,0xcd,0x3d, -0x17,0xdd,0x74,0xd5,0x5d,0x97,0xdd,0x76,0xdd,0x7d,0x17,0xde, -0x78,0xe5,0x9d,0x97,0xde,0x7a,0xed,0xbd,0x17,0xdf,0x7c,0xf5, -0xdd,0x97,0xdf,0x7e,0xfd,0xfd,0x17,0xe0,0xff,0x80,0x05,0x1e, -0x98,0xe0,0x82,0x0d,0x3e,0x18,0xe1,0x84,0x15,0x5e,0x98,0xe1, -0x86,0x1d,0x7e,0x18,0xe2,0x88,0x25,0x9e,0x98,0xe2,0x8a,0x2d, -0xbe,0x18,0xe3,0x8c,0x35,0xde,0x98,0xe3,0x8e,0x3d,0xfe,0x18, -0xe4,0x90,0x45,0x1e,0x99,0xe4,0x92,0x4d,0x3e,0x19,0xe5,0x94, -0x55,0x5e,0x99,0xe5,0x96,0x5d,0x7e,0x19,0xe6,0x98,0x65,0x9e, -0x99,0xe6,0x9a,0x6d,0xbe,0x19,0xe7,0x9c,0x75,0xde,0x99,0xe7, -0x9e,0x7d,0xfe,0x19,0xe8,0xa0,0x85,0x1e,0x9a,0xe8,0xa2,0x8d, -0x3e,0x1a,0xe9,0xa4,0x95,0x5e,0x9a,0xe9,0xa6,0x9d,0x7e,0x1a, -0xea,0xa8,0xa5,0x9e,0x9a,0xea,0xaa,0xad,0xbe,0x1a,0xeb,0xac, -0xb5,0xde,0x9a,0xeb,0xae,0xbd,0xfe,0x1a,0xec,0xb0,0xc5,0x1e, -0x9b,0xec,0xb2,0xcd,0x3e,0x1b,0xed,0xb4,0xd5,0x5e,0x9b,0xed, -0xb6,0xdd,0x7e,0x1b,0xee,0xb8,0xe5,0x9e,0x9b,0xee,0xba,0xed, -0xbe,0x1b,0xef,0xbc,0xf5,0xde,0x9b,0xef,0xbe,0xfd,0xfe,0x1b, -0xf0,0xc0,0x05,0x1f,0x9c,0xf0,0xc2,0x0d,0x3f,0x1c,0xf1,0xc4, -0x15,0x5f,0x9c,0xf1,0xc6,0x1d,0x7f,0x1c,0xf2,0xc8,0x25,0x9f, -0x9c,0xf2,0xca,0x2d,0xbf,0x1c,0xf3,0xcc,0x35,0xdf,0x9c,0xf3, -0xce,0x3d,0xff,0x1c,0xf4,0xd0,0x45,0x1f,0x9d,0xf4,0xd2,0x4d, -0x3f,0x1d,0xf5,0xd4,0x55,0x5f,0x9d,0xf5,0xd6,0x5d,0x7f,0x1d, -0xf6,0xd8,0x65,0x9f,0x9d,0xf6,0xda,0x6d,0xbf,0x1d,0xf7,0xdc, -0x75,0xdf,0x9d,0xf7,0xde,0x7d,0xff,0x1d,0xf8,0xe0,0x85,0x1f, -0x9e,0xf8,0xe2,0x8d,0x3f,0x1e,0xf9,0xe4,0x95,0x5f,0x9e,0xf9, -0x0a,0xe6,0x9d,0x7f,0x1e,0xfa,0xe8,0xa5,0x27,0x33,0x20,0x00, -0x3b +0xe0,0x01,0x83,0x0f,0x05,0x46,0x6c,0x28,0x10,0x82,0xc5,0x8b, +0x16,0x1d,0x68,0xdc,0xa8,0xd1,0x20,0xc6,0x8f,0x17,0x29,0x7a, +0x04,0xf9,0x51,0x64,0x41,0x92,0x25,0x4d,0x0e,0x44,0x89,0x51, +0xa5,0x4b,0x8a,0x2c,0x21,0xc0,0x94,0xb9,0xf0,0xc1,0x81,0x9b, +0x0f,0x06,0x4e,0x04,0x10,0x71,0x27,0xc1,0x98,0x16,0x2b,0x92, +0xe4,0xc8,0xf1,0x64,0xa6,0xa3,0x47,0xe9,0x28,0x5d,0xea,0x86, +0xa6,0x49,0x08,0x48,0x93,0x2e,0x55,0xda,0xd4,0x25,0xd4,0xa8, +0x53,0xa9,0x3a,0x15,0x79,0x15,0x69,0x56,0x3a,0x55,0x5f,0x8a, +0x3d,0x08,0xa1,0x48,0x11,0x22,0x27,0x64,0xc8,0x38,0x41,0xc4, +0xec,0x56,0x00,0x41,0x7f,0x3e,0x78,0xb0,0x15,0xe7,0x44,0x9c, +0x39,0x7d,0xfa,0x24,0x9b,0xa0,0xaf,0xdf,0xbf,0x7d,0x65,0xa2, +0x24,0xba,0xd1,0xa8,0xd7,0xac,0x6e,0xc2,0x3e,0xc5,0x8a,0x58, +0x31,0x57,0xc6,0x53,0x13,0xbf,0x6d,0xd8,0x35,0xd3,0x57,0xc9, +0x63,0x33,0xaf,0x34,0x8b,0x56,0x86,0xc5,0xb5,0x67,0x89,0x38, +0x85,0x30,0x77,0x2b,0x69,0xba,0x04,0x6d,0xda,0xd4,0xc9,0xf3, +0xc0,0x5c,0x9e,0xb0,0x25,0x22,0x7c,0x08,0xa1,0x2f,0xbf,0xdb, +0xb8,0x6f,0x07,0x86,0x3b,0x94,0xb0,0x03,0xde,0x15,0x0f,0x47, +0xc6,0x0c,0x60,0xdd,0x3a,0x85,0xc6,0x83,0x4b,0x1d,0x1e,0x36, +0x2e,0xc2,0xb8,0x5d,0x2f,0x13,0x4f,0x9e,0x90,0x7a,0xf4,0xc6, +0xcd,0x27,0x6b,0xa6,0x1c,0x3a,0xed,0x67,0xb6,0x6d,0x47,0x97, +0xff,0x96,0x8b,0x7a,0xa0,0xea,0x9b,0x12,0xf1,0xe6,0x64,0xcd, +0xde,0xe3,0xed,0xb9,0xf0,0xe1,0xdf,0x16,0xdc,0x9b,0xb0,0xf1, +0xe3,0xd7,0x99,0x63,0x0e,0x49,0x36,0x68,0x7e,0xa6,0x89,0x61, +0x76,0x1f,0x42,0x03,0xfe,0x47,0x55,0x80,0x55,0xf1,0x37,0x92, +0x60,0xc2,0x01,0x18,0xa0,0x4c,0x03,0x6e,0xf7,0x14,0x11,0x6d, +0x79,0x07,0xc1,0x5a,0x6d,0x15,0x61,0x9a,0x69,0xf1,0xd1,0x84, +0xd7,0x4e,0xe7,0x11,0xb4,0xd7,0x5e,0x70,0xf5,0x13,0xdf,0x89, +0x0f,0xf4,0x43,0x1f,0x48,0xbe,0x39,0x70,0xd1,0x0e,0x40,0x7d, +0xb4,0x43,0x84,0x06,0xdd,0x07,0x63,0x8c,0x2f,0x2a,0x78,0x92, +0x45,0x37,0xe2,0x08,0xc1,0x8c,0xd4,0xd5,0x68,0x5c,0x8f,0x38, +0xf6,0x28,0xe1,0x84,0x66,0x59,0x08,0xda,0x59,0xda,0xad,0xd4, +0x21,0x44,0xe9,0xf1,0xb4,0x9a,0x6c,0x54,0x42,0x09,0xd7,0x5c, +0x09,0x3c,0x90,0xe5,0x96,0x59,0xa2,0x36,0x98,0x6f,0xf7,0x45, +0x02,0x81,0x3a,0xf7,0xad,0x03,0x81,0x71,0x67,0xde,0xa7,0x0e, +0x04,0x62,0x3a,0xb7,0x23,0x9b,0x63,0x96,0x99,0x66,0x9a,0xc6, +0xad,0x19,0x09,0x8d,0x05,0x85,0x19,0xe7,0x7d,0x73,0x96,0x69, +0xa7,0x8e,0x3f,0x59,0x24,0x26,0x99,0x7c,0xa2,0xe9,0x27,0x9b, +0x78,0x1e,0xb9,0x50,0x59,0x67,0x29,0x79,0x42,0x68,0x4d,0x56, +0xf4,0x24,0x43,0x36,0x91,0x68,0xa5,0xa4,0x7d,0x69,0xa9,0xe9, +0x96,0x5e,0xd6,0x47,0xd4,0x47,0xea,0x10,0x7a,0xa6,0x45,0x66, +0xd6,0xb9,0x26,0x9d,0x04,0xa2,0x39,0xa6,0xa8,0x66,0x8e,0x6a, +0x6a,0x4a,0x0b,0x5a,0xff,0x14,0xaa,0xa1,0xa4,0xa6,0x19,0x2a, +0xa9,0x41,0xe6,0xa9,0xea,0xac,0xa5,0xd6,0xfa,0x6a,0x4b,0x8a, +0x72,0x47,0xa1,0xa3,0x14,0x6a,0xa8,0xd0,0x69,0xe3,0x29,0x74, +0xc2,0x09,0x07,0x2d,0x6b,0x90,0xb3,0x4e,0x6e,0xba,0x69,0x97, +0x32,0x01,0xe6,0x57,0x75,0x66,0xa2,0xb0,0xea,0xad,0xdc,0x86, +0xba,0xa6,0xb6,0x6e,0x2e,0xa8,0xc0,0xb6,0x6b,0x76,0x7b,0xab, +0xb6,0xb9,0x0a,0x09,0xc1,0xb8,0xde,0x96,0xeb,0xee,0xad,0xe3, +0x86,0xfb,0xa6,0xb6,0xed,0xae,0x4a,0xee,0xba,0x69,0x06,0x0b, +0x53,0xb1,0xc4,0xba,0x95,0x10,0xb2,0xf0,0xd1,0xb4,0x2c,0xb4, +0x00,0x9c,0x30,0xc3,0x0c,0xcc,0x12,0x94,0xd6,0x5a,0x0a,0xcf, +0xc0,0xb0,0xa4,0x9a,0x6a,0xc9,0xe9,0x78,0xd6,0xf6,0xb5,0x28, +0xb8,0x31,0x6a,0x0b,0x13,0xc6,0x40,0x8d,0x0b,0x53,0xbc,0x31, +0x7a,0x4c,0x19,0xc8,0x40,0x69,0xac,0xef,0xbe,0x9c,0x2d,0xcc, +0x16,0x67,0x91,0x02,0x3c,0x9e,0xc1,0x08,0x3f,0x9c,0xd6,0xc1, +0x09,0x17,0x7c,0xb0,0x5a,0x09,0x1b,0x8c,0xf3,0x4a,0x26,0xa2, +0x08,0x9f,0x8a,0x00,0x54,0x9c,0xc0,0xa2,0xe3,0xc6,0x61,0x34, +0x04,0xf2,0xbc,0xf3,0x8e,0x3c,0x10,0x18,0x1d,0x07,0xbe,0x1b, +0x37,0x7d,0x74,0xd2,0x4b,0x4b,0xfd,0xb4,0xc8,0x0c,0x41,0xa0, +0xad,0xd3,0x48,0x2b,0xcd,0x34,0xd7,0x26,0x67,0x5d,0xf4,0xd4, +0x5e,0x5b,0xad,0x75,0xa4,0x27,0x9f,0x94,0xb2,0x67,0x17,0x3e, +0x4a,0x61,0xcb,0x28,0xca,0xa4,0xf3,0xce,0x3a,0x3b,0x5c,0x33, +0xcc,0x3b,0xdb,0xac,0x16,0xc2,0x15,0xbd,0xff,0xe7,0xf3,0x7c, +0x41,0x57,0x4c,0xb4,0xd4,0x77,0x40,0xb0,0x74,0xd2,0x10,0xdc, +0x71,0x34,0xd6,0x83,0x1b,0x5d,0xf8,0xe1,0xef,0x24,0x7e,0x74, +0xd8,0x17,0x13,0x6e,0xb8,0x3c,0x88,0x2b,0xfe,0x34,0xe5,0xc7, +0x6e,0x1d,0xc7,0xe3,0x98,0x47,0xae,0x39,0xd4,0x69,0x67,0xdd, +0x1d,0xdb,0x18,0x86,0xf7,0x6f,0x69,0xa7,0x09,0x7c,0x30,0xdf, +0x0b,0xef,0x9d,0xb3,0xc3,0x32,0xf0,0x6d,0x33,0xed,0x09,0xd7, +0x96,0x40,0x6e,0xb9,0xed,0x26,0x74,0xe5,0x9f,0x17,0x4e,0x35, +0xd3,0x77,0x28,0x7e,0xf6,0xc7,0x4d,0x17,0xdf,0x75,0xd5,0xc5, +0x6f,0x8e,0xf6,0x4f,0x45,0x2b,0x3f,0x7c,0xe2,0xc6,0x33,0xde, +0x79,0xf2,0xc2,0x97,0xdd,0x3c,0xe9,0xa5,0x2f,0x9a,0xa1,0xca, +0xc5,0xa2,0x4d,0x1a,0x4d,0xe3,0x0f,0xb4,0xac,0xed,0xe7,0xdb, +0x7e,0x3b,0xcd,0xe6,0xc3,0x9c,0xbb,0xd0,0x7f,0x55,0x2b,0xf8, +0xf5,0xc5,0x83,0x9e,0xb9,0xf2,0x9c,0xff,0xab,0x6d,0xfd,0x97, +0xdf,0x5f,0xb8,0xf5,0xff,0x1a,0x17,0xff,0x20,0x47,0xbd,0xff, +0x3d,0x6f,0x25,0x02,0x54,0x1e,0x01,0xf9,0x97,0xbf,0xee,0xf5, +0x07,0x25,0x8b,0xda,0x50,0x41,0x6a,0x26,0x10,0x82,0x55,0x70, +0x60,0xcf,0xa2,0x60,0x8c,0x04,0xf2,0xbb,0x63,0x25,0x50,0x79, +0x17,0xa9,0x9f,0x01,0xa3,0x26,0x42,0x8c,0x94,0x10,0x80,0xcf, +0xd9,0x1f,0xff,0x42,0xc8,0xc0,0x03,0x56,0xe4,0x83,0x85,0x63, +0x21,0xfe,0x5c,0xe8,0xc0,0x1a,0xda,0xb0,0x20,0x1d,0x7c,0x20, +0x0c,0x45,0x78,0xc2,0x7c,0x61,0x0b,0x5f,0x3c,0x0c,0x62,0xe1, +0xff,0x30,0x76,0x2c,0x8b,0xa8,0x50,0x88,0x2d,0x4c,0x97,0xae, +0xce,0x86,0xc4,0x1e,0xca,0x6b,0x20,0xfe,0x88,0xa2,0x14,0xa7, +0x48,0xc5,0x2a,0x5a,0xf1,0x8a,0x58,0xcc,0x22,0x16,0x95,0xa6, +0x34,0x78,0x70,0xf1,0x8b,0xef,0xf0,0x22,0x18,0xb9,0x08,0x8f, +0x32,0x8a,0x51,0x8c,0x63,0x4c,0x63,0x18,0xc1,0x88,0x46,0x32, +0x92,0x91,0x4f,0x2a,0x44,0xc9,0x0c,0x01,0xb5,0x92,0x8b,0x24, +0x50,0x8e,0x43,0x44,0xd5,0x41,0xf8,0x74,0x47,0x92,0x28,0x8f, +0x64,0xcf,0xb9,0x48,0x1c,0xfd,0x68,0xc0,0x44,0x41,0xd1,0x1f, +0xfd,0xe8,0x87,0x16,0x17,0x99,0x45,0x45,0x52,0xd1,0x91,0x8c, +0x9c,0xa2,0x1b,0xc9,0x68,0xc6,0x32,0x86,0xf1,0x8c,0x5d,0xec, +0xa2,0x17,0xdb,0xb8,0xc6,0x31,0x72,0x32,0x93,0x6b,0xb4,0xe4, +0x25,0xc5,0x88,0x91,0x38,0x9a,0xc1,0x0c,0x3b,0xd8,0xc1,0x29, +0xa9,0x77,0x36,0x43,0x0a,0x04,0x8e,0xac,0x3c,0x65,0x2a,0x57, +0xf9,0x47,0x60,0xc5,0xea,0x8e,0xb2,0x54,0xa5,0x19,0x58,0x39, +0x2e,0x57,0x16,0x07,0x4d,0xb8,0x44,0xa5,0x2e,0x59,0xc9,0x31, +0x84,0x20,0x12,0x92,0x91,0x4c,0x66,0x22,0x91,0x19,0xc5,0x44, +0x26,0x53,0x8a,0x69,0xac,0xa4,0x25,0xcf,0x28,0xcd,0x51,0x76, +0x52,0x8d,0x9d,0xe4,0x24,0x35,0x43,0xf9,0x45,0x2f,0xf2,0x91, +0x95,0xb3,0x14,0x26,0x2f,0x6d,0xf9,0x26,0x26,0x16,0x2e,0x9c, +0xa9,0x1c,0xa7,0x2f,0x61,0xa9,0x3c,0x74,0xc2,0x68,0x8e,0x4f, +0xe4,0x8d,0x45,0xee,0xe8,0x4e,0x62,0xea,0xd1,0x20,0x88,0x7c, +0xa6,0x32,0x9d,0x79,0xff,0x45,0x66,0x32,0x92,0x8d,0xd4,0xac, +0x24,0x25,0xa7,0x29,0xd0,0x4d,0x76,0x13,0x9b,0xd7,0x1c,0xe8, +0x34,0xb9,0x88,0x91,0x60,0xa2,0x92,0x96,0x85,0x54,0xe2,0x2b, +0x81,0x19,0x4b,0x59,0x42,0xf4,0x6c,0x74,0x14,0x8a,0x11,0x2b, +0xfa,0xd0,0x5d,0xce,0x70,0x9d,0x68,0x32,0xa5,0x45,0x3d,0x6a, +0xc0,0x8c,0x02,0x60,0x91,0xfc,0xd4,0x27,0x24,0xf9,0xb9,0x52, +0x7f,0x6a,0x71,0x92,0x9b,0x6c,0x63,0x40,0xa5,0x49,0xd0,0x85, +0x46,0x53,0xa0,0x6a,0x44,0xa3,0x28,0x7f,0x79,0x36,0x4e,0x9c, +0x53,0x98,0xb4,0xe4,0x04,0x46,0xc5,0x37,0x4f,0x08,0xf8,0xf4, +0x47,0x40,0xf5,0xa8,0x50,0xd1,0x75,0x9c,0x1f,0x8e,0xeb,0xa8, +0xaa,0x0c,0x67,0xe2,0x84,0x0a,0xb2,0x22,0xf6,0xf4,0xa7,0x52, +0xbd,0x03,0x55,0x7d,0x78,0x10,0x2d,0xa6,0x54,0x9f,0x52,0x4c, +0xa9,0x4b,0x93,0x09,0xd3,0x6e,0xea,0x74,0x94,0xdb,0xbc,0x24, +0x42,0x61,0xfa,0x49,0x50,0xb6,0x71,0x25,0xda,0xe2,0x84,0x50, +0xa3,0x2a,0x4b,0xa3,0x2e,0x95,0x86,0x3d,0x9d,0x6b,0x47,0x61, +0x24,0x57,0xee,0x0d,0xae,0xaf,0x74,0x45,0xa5,0x5d,0xfd,0xea, +0xc1,0xc1,0x06,0x96,0xaf,0x77,0x5d,0x88,0x57,0xc1,0xfa,0x48, +0x64,0x7e,0x55,0x9f,0x6c,0x3c,0xa8,0x26,0x27,0xab,0x49,0x9c, +0x22,0xd4,0x8c,0x65,0xcd,0x29,0x17,0x03,0x05,0x58,0xba,0x22, +0x36,0x9e,0x81,0xec,0xec,0x43,0x3f,0x4b,0x43,0xa1,0x88,0x36, +0xaa,0x83,0x2d,0x2d,0x6f,0x4e,0x2b,0xd8,0xbe,0x1e,0x90,0xb1, +0xb0,0x0d,0xeb,0x58,0x17,0x19,0xd9,0xcb,0xff,0x82,0x32,0x9b, +0x93,0xf4,0xa4,0x28,0x0d,0xaa,0xdb,0x34,0x96,0x33,0x26,0x56, +0xc1,0x51,0x70,0x37,0xa8,0x12,0x1f,0x35,0x44,0x07,0xc8,0x4d, +0xae,0x72,0x97,0xab,0xdc,0x77,0x30,0xf7,0xb9,0xd0,0x75,0x2e, +0x74,0xa7,0xab,0x5c,0x09,0x58,0xf7,0xba,0xd8,0xcd,0xae,0x76, +0xb7,0xcb,0xdd,0xee,0x7a,0xb7,0xbb,0x37,0x0c,0xaf,0x78,0x29, +0x42,0xdd,0xf2,0x9a,0xf7,0xbc,0xcd,0x2d,0xaf,0x73,0xbf,0xcb, +0xde,0xf6,0xba,0xd7,0xbd,0xe3,0x8d,0xaf,0x7c,0x0b,0x22,0x5d, +0x1d,0xd4,0x97,0xb9,0xf7,0xb5,0x6f,0x72,0xf3,0xab,0xdf,0xf3, +0xf2,0xb7,0xbf,0xcf,0x7d,0xaf,0x80,0x07,0x2c,0xe0,0xf9,0x1a, +0x38,0xbe,0xe8,0x4d,0xf0,0x73,0xff,0x9b,0xe0,0xfb,0x5a,0x37, +0x02,0x10,0x86,0xf0,0x83,0x23,0x1c,0x81,0xec,0x4a,0x58,0x02, +0x17,0xce,0xf0,0x85,0x27,0x4c,0x61,0x0a,0x63,0x78,0xc3,0x15, +0xfe,0x70,0x84,0x25,0x70,0xe0,0x12,0xdf,0x50,0xc1,0xd1,0x35, +0x6f,0x7e,0x19,0x6c,0xde,0x0e,0xbb,0xf8,0xc5,0x30,0x8e,0xb1, +0x8c,0x67,0x0c,0x63,0x13,0xdb,0xb8,0x7b,0xe9,0xdd,0x2f,0x7e, +0x51,0x8c,0x62,0x16,0x27,0x97,0xc6,0x40,0x0e,0xb2,0x90,0x65, +0x7c,0xe3,0x22,0xeb,0x8b,0xc7,0x48,0x4e,0x32,0x72,0x9d,0x2b, +0xdd,0x21,0x3b,0xf9,0xc9,0x40,0x36,0xb2,0x94,0x25,0xe4,0xdf, +0x14,0x53,0xd7,0xc7,0x48,0x86,0xb2,0x96,0xb7,0x4c,0xe1,0x29, +0x7b,0xf9,0xcb,0x00,0x58,0x0f,0x98,0xc3,0xeb,0xaa,0xe7,0x94, +0xca,0x24,0xbd,0x22,0xd0,0xa8,0x9e,0x72,0x66,0xb2,0xb4,0x99, +0xff,0x22,0x69,0xde,0xe3,0x9a,0x33,0x23,0x66,0x81,0x88,0xf9, +0xce,0xe6,0x49,0xcd,0x6b,0xf2,0xcc,0x67,0x3b,0x1f,0xa4,0xce, +0x7a,0x36,0x0f,0xa0,0xfb,0x2c,0xde,0x3a,0xf7,0xca,0x4c,0x35, +0x72,0x15,0x5e,0x0f,0xed,0x11,0x46,0x37,0xe4,0xd0,0x93,0x81, +0x34,0x4c,0x1c,0xfd,0x13,0x4a,0xbf,0xe4,0x01,0x08,0x48,0x4d, +0xa6,0xc3,0xbc,0x69,0x4c,0xdb,0xb9,0xd3,0x9c,0x5e,0x0f,0x7c, +0xec,0xec,0xe9,0x30,0x9b,0xba,0x20,0xa5,0x4e,0x0d,0x00,0x10, +0xb0,0xe9,0x55,0x03,0x3a,0x27,0x98,0x1e,0x74,0xf7,0xe6,0xd2, +0x6a,0x49,0xe7,0x49,0xd1,0x93,0x2e,0xf3,0x49,0x2c,0x8d,0x1c, +0x5c,0xdf,0x3a,0xce,0x59,0xe3,0x35,0x5c,0x84,0x6d,0x92,0x54, +0x73,0xfa,0xd3,0xc8,0x3e,0x76,0x4e,0x10,0xe0,0x69,0x51,0xb3, +0x9a,0xd3,0x99,0x5e,0xf6,0xa9,0xcd,0xd3,0x6a,0x3f,0x57,0x9b, +0xd0,0x61,0x7e,0xcd,0xb5,0x67,0xfd,0x6c,0x79,0xc6,0x28,0x12, +0x3b,0xe0,0x8a,0x8f,0xc0,0x2d,0x6e,0x1c,0x91,0x7b,0x26,0xe6, +0x0e,0xb7,0x66,0x8c,0x5d,0xea,0x66,0xa3,0x48,0xd9,0x9b,0x8e, +0x77,0xb6,0x3b,0x4d,0x6f,0x4d,0xab,0x7a,0xdb,0x84,0x86,0x0f, +0xbe,0xd3,0x46,0xeb,0x8a,0xa0,0x00,0x05,0x0a,0x50,0xc0,0xbf, +0x03,0x3e,0x70,0x81,0x17,0x33,0x6b,0x00,0x37,0x38,0xc1,0x13, +0x3e,0x70,0x72,0x06,0x50,0xe1,0x10,0x2f,0xb8,0xc3,0x9f,0x13, +0x71,0x86,0x33,0x7c,0xe2,0x2a,0x31,0xf6,0xaa,0x07,0x42,0x6f, +0x56,0x63,0x3a,0xda,0xc7,0x36,0xc8,0xc7,0xf3,0x2c,0x6d,0x82, +0x54,0x5b,0xe3,0xa8,0xff,0x06,0x75,0xac,0x51,0x5d,0xba,0x91, +0xfb,0x48,0x56,0x6b,0xca,0x84,0x49,0xbd,0x1d,0xa3,0x5b,0xc9, +0x1c,0xb4,0x2f,0xb7,0xd7,0xcd,0x5b,0xf6,0x72,0x9b,0xcf,0xbc, +0x26,0xfb,0xb6,0x77,0xc8,0xe7,0x2d,0x72,0x8d,0x2f,0x5b,0xd6, +0xd4,0x56,0x48,0xaa,0x99,0x9d,0xe9,0x93,0x07,0x7d,0x2c,0xfd, +0x86,0x8b,0x5c,0x7d,0x1a,0x44,0xae,0xcd,0xaa,0x32,0x4d,0xb2, +0x2b,0xd5,0x79,0x68,0x75,0x32,0x61,0xfd,0x39,0x53,0x17,0x62, +0xd7,0xcd,0x14,0x95,0xac,0x87,0xbd,0xea,0x47,0xbb,0x7a,0xd9, +0x2f,0xfd,0xf4,0x64,0xb3,0xfb,0xd5,0x23,0x27,0x79,0xc9,0xff, +0xfc,0x74,0x8d,0x9f,0x3c,0x3e,0x35,0xc1,0x3b,0xa5,0xba,0x6d, +0xd7,0x26,0xa6,0x1d,0x4d,0x6b,0x27,0x8b,0x5c,0xfd,0xfe,0x34, +0x51,0x05,0xde,0x23,0x83,0x47,0xe2,0xdf,0xc9,0x8e,0x14,0xb3, +0x6f,0x1d,0xed,0x7b,0xfa,0xba,0x4b,0x50,0x2e,0xf2,0x7a,0x53, +0xbb,0xce,0x71,0xb7,0x76,0xe6,0xe9,0xae,0xf4,0xb6,0x33,0xbd, +0xdb,0x09,0x61,0xb5,0xe8,0xf3,0xde,0x6a,0x3c,0xd6,0xaf,0xf0, +0x68,0xa2,0x43,0xe3,0x03,0x09,0x12,0xae,0x47,0x5e,0xf5,0x47, +0xc9,0x3a,0x21,0x4f,0xff,0xfa,0xd5,0x3f,0xf0,0x23,0xae,0x17, +0x15,0xec,0x65,0x2e,0x96,0xb6,0xfb,0xcc,0xde,0xa2,0x66,0xf7, +0xc6,0xa7,0x8d,0x10,0xca,0x27,0x1d,0xe8,0xfa,0xca,0xfc,0x8f, +0x66,0xa9,0x4a,0x56,0x62,0x64,0x4d,0x66,0x52,0x4a,0xec,0x9f, +0x93,0x4a,0xba,0x3a,0xff,0x22,0xd0,0x87,0x80,0xf4,0x79,0x4f, +0x96,0xea,0x3f,0xf4,0xfa,0xb2,0x1a,0xd5,0xff,0xf6,0xb3,0xee, +0xfd,0xe6,0x83,0x10,0xfb,0xe2,0x87,0xbd,0x6a,0x33,0x2e,0xfa, +0x8f,0x3b,0x1b,0xde,0x20,0x1f,0xba,0xf1,0xb1,0x7d,0xef,0x86, +0xb4,0x3d,0xe3,0xc6,0x46,0xaa,0x45,0x13,0x77,0xb9,0xaa,0x8d, +0x4a,0xfb,0xd2,0x47,0x7e,0xa7,0xf4,0x7d,0xa0,0xe3,0x7f,0xad, +0xb2,0x14,0xdc,0xe7,0x11,0xba,0x44,0x80,0xfd,0xc7,0x34,0xff, +0x87,0x80,0x02,0xb8,0x7f,0x05,0xe8,0x80,0x07,0x18,0x80,0x97, +0xd6,0x10,0xed,0xa6,0x72,0xcc,0xe6,0x6a,0xee,0x06,0x6b,0x2a, +0x47,0x29,0x7f,0x36,0x7c,0x17,0x88,0x81,0xaf,0x06,0x7a,0x70, +0x91,0x54,0xef,0xd4,0x35,0x88,0x93,0x7d,0x53,0x91,0x75,0x28, +0xc8,0x7f,0x49,0xb3,0x82,0xe9,0xa7,0x14,0x2e,0x88,0x4e,0x30, +0xb8,0x34,0x91,0xc3,0x82,0x4b,0x51,0x83,0xba,0x94,0x82,0x31, +0x98,0x83,0x33,0x48,0x07,0xeb,0x97,0x6c,0x9d,0x47,0x84,0xa3, +0x16,0x6d,0xdd,0x36,0x72,0x47,0x38,0x7f,0x82,0xd6,0x84,0xf7, +0x57,0x84,0x94,0x92,0x6a,0x51,0xb7,0x12,0x51,0x85,0x5a,0xd9, +0x23,0x83,0xd1,0xb7,0x83,0xd4,0x07,0x54,0x3e,0x88,0x83,0x63, +0x12,0x84,0x02,0xc8,0x7c,0x37,0x88,0x85,0x00,0x48,0x83,0x5b, +0x28,0x86,0x57,0x08,0x84,0x59,0x68,0x86,0x2f,0xf1,0x84,0xad, +0xe6,0x74,0x6f,0x68,0x72,0x1c,0xd7,0x6d,0x6e,0xf8,0x86,0x4f, +0x98,0x10,0x73,0xb7,0x10,0xa0,0xb7,0x79,0x27,0x38,0x80,0xe6, +0xd7,0x80,0xb5,0x52,0x86,0x42,0xf8,0x1c,0x03,0xc8,0x80,0x38, +0x48,0x81,0x16,0xd1,0x82,0x84,0xe8,0x87,0x1e,0x05,0x88,0x0f, +0xff,0xa8,0x85,0x64,0x51,0x88,0x7f,0x78,0x88,0x81,0xa8,0x88, +0xf3,0x75,0x87,0x25,0x96,0x87,0x2a,0xb1,0x6d,0xcb,0x27,0x81, +0x31,0x84,0x7e,0x66,0xe2,0x06,0x90,0xa8,0x80,0x3d,0x48,0x52, +0xa0,0x32,0x2a,0xa2,0xc8,0x86,0xa4,0xe8,0x89,0xa7,0x18,0x8a, +0xa3,0x78,0x12,0xe8,0x64,0x8a,0xcf,0x87,0x8a,0xaf,0x38,0x66, +0x07,0x86,0x89,0xe8,0x86,0x7b,0x22,0x84,0x7a,0xa1,0x98,0x8a, +0xb2,0xd7,0x7a,0xbb,0x18,0x79,0x89,0xa1,0x8a,0xbf,0x25,0x43, +0xdb,0x23,0x2a,0xc3,0x38,0x88,0xb7,0x67,0x42,0xc1,0x88,0x8c, +0xbe,0x68,0x8b,0xd0,0xf8,0x12,0x7d,0xa7,0x78,0xbc,0x08,0x01, +0x01,0xa2,0x8c,0x88,0xf7,0x78,0x5c,0x57,0x8d,0xd7,0xe8,0x78, +0x84,0x27,0x8c,0xc3,0xe8,0x8d,0xd4,0x08,0x8e,0xa2,0x88,0x36, +0xa3,0xc6,0x72,0xa8,0xb6,0x67,0x82,0x86,0x74,0xc1,0x77,0x22, +0xe9,0x48,0x6a,0xee,0x08,0x8f,0xe9,0x88,0x74,0x37,0x74,0x8e, +0x52,0x97,0x78,0xdb,0x58,0x78,0x5e,0x87,0x20,0x8e,0xa7,0x8d, +0xcd,0x93,0x76,0xfb,0xf8,0x20,0x60,0x87,0x8f,0xbb,0x08,0x90, +0xbd,0x48,0x1c,0xd9,0xe8,0x8f,0x9a,0xa3,0x8f,0x07,0xe9,0x18, +0xe9,0xc8,0x6c,0x98,0x27,0x7c,0x1e,0x97,0x67,0x13,0xf9,0x90, +0xd0,0x26,0x7a,0x7b,0xb8,0x6a,0xf1,0x86,0x91,0xcd,0xa6,0x91, +0x78,0x56,0x91,0xf1,0xb5,0x6c,0x1b,0x48,0x73,0x40,0x71,0x2b, +0x4d,0x81,0x73,0x3d,0xb7,0x26,0x27,0xc9,0x73,0x3e,0x62,0x92, +0x33,0x97,0x73,0x2e,0x09,0x5a,0xd0,0x16,0x72,0x1e,0x48,0x91, +0x24,0x27,0x82,0x98,0xff,0x07,0x6f,0xc5,0x27,0x82,0x2c,0xb7, +0x81,0xad,0x06,0x6b,0x38,0x49,0x67,0xf4,0xa8,0x8e,0x36,0xe9, +0x67,0x70,0x51,0x70,0x48,0x69,0x71,0x18,0xe7,0x11,0x15,0xb7, +0x70,0x04,0xb7,0x94,0x27,0xe1,0x94,0x4d,0x09,0x48,0x08,0x27, +0x95,0x49,0x49,0x95,0x4a,0xb7,0x71,0x40,0x79,0x74,0xd5,0xe6, +0x74,0x3c,0xd9,0x6e,0xae,0x86,0x84,0x21,0x18,0x74,0xcd,0xe6, +0x74,0xec,0xd6,0x69,0x83,0x46,0x94,0xf7,0x16,0x74,0x23,0x79, +0x7c,0xc9,0xf6,0x72,0xe7,0x46,0x19,0xe3,0xa6,0x6e,0x72,0x99, +0x6e,0xe5,0xf6,0x6d,0x74,0x09,0x85,0xb1,0xd6,0x74,0x43,0x57, +0x79,0x3d,0x69,0x6a,0x62,0x19,0x6b,0xea,0xa8,0x89,0xf5,0x37, +0x6d,0x5c,0x29,0x74,0x53,0x48,0x6a,0xd7,0xa6,0x6d,0xeb,0xa8, +0x96,0x44,0xe9,0x95,0x15,0x21,0x6c,0x8a,0xd6,0x54,0x0c,0x61, +0x6b,0x04,0x61,0x99,0x8b,0x22,0x99,0xc4,0x26,0x67,0xc0,0x36, +0x10,0x98,0xc9,0x79,0x87,0x49,0x84,0x7f,0x99,0x6d,0xd2,0x56, +0x72,0xee,0xe6,0x91,0x9f,0x66,0x8f,0x42,0x27,0x8f,0xa0,0xa6, +0x98,0x73,0x68,0x10,0x26,0x28,0x92,0x05,0x81,0x91,0xd7,0xd6, +0x96,0x85,0x39,0x6c,0xba,0x56,0x69,0xb9,0xb9,0x10,0x9f,0x59, +0x1c,0xbe,0x16,0x6c,0xbb,0x19,0x99,0xc1,0x59,0x1d,0xbf,0xe9, +0x99,0xc5,0x09,0x9a,0x62,0x29,0x9a,0x45,0x29,0x10,0x15,0xf9, +0x7b,0x99,0x07,0x6b,0x22,0xf9,0x6a,0x41,0x09,0x92,0xa4,0xd9, +0x97,0x20,0x88,0x8b,0xd8,0xa6,0x89,0x9d,0x79,0x99,0x73,0x96, +0x6b,0x94,0xb9,0x6b,0x67,0x82,0x66,0xdd,0xff,0xf9,0x6b,0xaa, +0x35,0x9c,0xc2,0xf9,0x9d,0xc5,0xe7,0x93,0xf2,0xb7,0x6d,0x84, +0x69,0x94,0x1c,0xf9,0x6c,0x66,0x99,0x91,0x6e,0x39,0x77,0x75, +0xd6,0x7e,0xd8,0x49,0x8f,0x59,0xf9,0x93,0x3c,0x19,0x8d,0xfc, +0x99,0x72,0x19,0xe8,0x96,0xd6,0x86,0x87,0x8b,0x89,0x6f,0x7b, +0x89,0x98,0x38,0x09,0x99,0xcb,0x29,0x12,0x8e,0xa9,0x77,0x4e, +0x38,0x9b,0xfd,0xf9,0xa0,0x63,0x09,0x98,0x00,0x9a,0x87,0x25, +0x98,0x72,0xc4,0x17,0x6a,0x90,0x79,0x96,0xab,0x29,0xa1,0x6d, +0x08,0x68,0xb4,0x49,0x91,0xd8,0x09,0xa1,0xb6,0xf8,0x1a,0x89, +0x29,0x85,0xfb,0x69,0x98,0xfb,0x09,0x96,0x01,0xfa,0x91,0x1c, +0xda,0x67,0xf4,0xf9,0x95,0xb2,0x36,0x94,0x32,0x7a,0xa2,0x17, +0x2a,0xa2,0x10,0xaa,0x6f,0xd1,0xf6,0x6e,0xbf,0xc7,0x9a,0x7e, +0xc9,0xa3,0x3e,0x4a,0x79,0x47,0x48,0x6a,0x29,0x6a,0x74,0xf3, +0x67,0x82,0xb3,0xb9,0x6f,0x4c,0x68,0xa3,0xb6,0x38,0x7a,0xcc, +0x49,0x9b,0x4d,0xe7,0xa4,0x73,0xb8,0x6f,0x5d,0x69,0xa4,0x4c, +0xca,0x9c,0x08,0x51,0xa5,0x1a,0x79,0x10,0x46,0xca,0x87,0x47, +0x12,0xa2,0x4a,0xfa,0xa5,0x4a,0xda,0x9e,0x60,0x3a,0xa6,0x64, +0x7a,0x43,0x5e,0x5a,0xa6,0x68,0x9a,0xa6,0xd1,0x68,0x5c,0xc5, +0x25,0x5c,0x6d,0x4a,0x5c,0x4f,0xe1,0xa6,0x14,0xa1,0x96,0xc4, +0x17,0x8f,0x7a,0x46,0xa2,0xaa,0xe9,0x9c,0xef,0xd6,0x98,0x17, +0xda,0x8e,0x74,0x7a,0x6a,0xd2,0x19,0xa3,0x2c,0x27,0x9d,0xf2, +0x38,0x12,0x80,0x35,0x5a,0xa4,0x15,0xa7,0x87,0x5a,0x85,0xa9, +0xff,0xa5,0xa8,0x7a,0xc5,0xa8,0xae,0xe5,0xa8,0x48,0x05,0xa9, +0x42,0x45,0x43,0x47,0x77,0xa7,0xd4,0xd6,0x7e,0x7a,0xf6,0x9e, +0x20,0xf9,0x71,0xb4,0xe9,0xa9,0x18,0xa9,0x98,0xf6,0x29,0x74, +0x9f,0xc7,0x9e,0xc9,0x09,0x98,0x28,0x37,0x98,0x82,0x09,0x7c, +0xab,0xfa,0x13,0x71,0xa5,0x57,0xa3,0x35,0x58,0x28,0x44,0x16, +0x4f,0x05,0xab,0xa8,0xd5,0x57,0xb3,0xca,0x94,0x86,0x65,0x51, +0x9f,0xd5,0x40,0x64,0xf1,0xaa,0xfa,0x77,0xab,0x89,0x55,0x13, +0xc3,0x77,0x67,0x4c,0x27,0x9a,0xa2,0x96,0xa5,0x46,0xa8,0x9c, +0xd6,0x29,0xaa,0x13,0xfa,0x93,0x48,0x9a,0x9c,0xa5,0xc9,0x9e, +0xed,0x26,0x98,0xd0,0x3a,0x93,0xa5,0x46,0x51,0x47,0x95,0x4b, +0x82,0xa5,0x55,0x43,0x65,0x55,0x4f,0x55,0x38,0xdc,0xfa,0x4e, +0x5b,0x25,0x51,0x9e,0x99,0x2d,0x46,0x25,0xae,0x5c,0x38,0x55, +0xf8,0x22,0x93,0x82,0x94,0xae,0x10,0x30,0xae,0xec,0xca,0x54, +0x78,0xa8,0x95,0x34,0x79,0xac,0x7d,0x59,0x96,0x16,0x8a,0x6c, +0xa9,0x4a,0xad,0xb1,0x89,0xa0,0xc6,0xa7,0xaf,0xa6,0x69,0xaa, +0x5b,0xc9,0x74,0xc6,0xfa,0xa2,0x0d,0x55,0x51,0x0b,0x68,0x4f, +0x20,0x85,0xae,0xca,0x33,0x52,0xa6,0x78,0x70,0xb1,0x22,0x52, +0x0b,0x5b,0x4b,0x0d,0x0b,0x44,0xea,0x5a,0xb1,0x25,0x15,0x4f, +0x1d,0xd9,0x6f,0xb4,0xb6,0x67,0x26,0xaa,0x9e,0x1b,0x5a,0x93, +0xfb,0xaa,0x69,0x03,0xba,0x9a,0x01,0x8b,0x84,0xf4,0x49,0xb0, +0x1f,0x6b,0xb0,0xf4,0x76,0x96,0xec,0x74,0x4e,0x3d,0xf8,0x4e, +0x1b,0xfb,0x8b,0xe6,0xff,0xd4,0x89,0xe2,0xf4,0x51,0xe6,0xfa, +0x4d,0xed,0x34,0xb3,0xf6,0x64,0x52,0x09,0xdb,0xb3,0xb9,0xa4, +0x4e,0xe6,0xba,0x72,0x81,0xf9,0x6c,0x1d,0xc8,0x98,0xfd,0xaa, +0x69,0x7b,0xda,0xb4,0x68,0x09,0x9d,0x27,0x72,0xad,0xa0,0x49, +0xa1,0xa6,0x0a,0x6d,0x05,0xea,0x6c,0x67,0x59,0x4a,0x0a,0x3b, +0x4c,0x16,0xbb,0xb3,0x14,0xf5,0xb0,0x49,0x35,0x4e,0x40,0x6b, +0x47,0x5b,0x7b,0x51,0x4c,0x85,0x9e,0xe7,0xea,0xb0,0x19,0xcb, +0xb5,0x79,0x64,0x52,0x05,0xaa,0x93,0xf0,0xd7,0x9c,0x55,0x7b, +0x79,0x50,0x0a,0xaa,0x48,0xfb,0x86,0x7b,0xf9,0x9e,0x00,0xca, +0xaa,0x27,0xbb,0xaf,0x2a,0x7b,0xb4,0x30,0xfb,0xb5,0x9f,0xa8, +0x8b,0x43,0x65,0xb3,0x7d,0x04,0x8c,0xf8,0x72,0xb1,0x83,0x84, +0xb8,0x58,0x59,0x4e,0x8b,0x4b,0xb8,0x67,0x9b,0x9e,0xff,0x19, +0xb5,0xf9,0xda,0xac,0x67,0xb9,0xb4,0x25,0x8b,0xa1,0x28,0x1b, +0xad,0xa1,0x96,0xb9,0xc8,0x8a,0xaf,0x1e,0xa8,0xa1,0x64,0xdb, +0x44,0x49,0x84,0xb6,0x97,0xa9,0xb6,0xa4,0xfb,0xad,0xff,0xb2, +0x51,0xa4,0xdb,0xb5,0xc8,0x61,0x26,0x3b,0x24,0x44,0xed,0x1a, +0x29,0x1d,0x6b,0xad,0x1e,0x47,0xb2,0xfc,0xda,0xa3,0xa8,0x3a, +0xb7,0x81,0x46,0xb7,0x9b,0x9b,0x6f,0x81,0xb9,0xa1,0x9f,0x9b, +0x81,0x6f,0x4b,0x84,0xe6,0x74,0x7e,0x05,0x34,0x42,0x94,0x71, +0x44,0x83,0x5b,0x42,0xbe,0xaa,0xab,0x25,0x64,0x8c,0xc7,0x33, +0x32,0xc9,0xcb,0x8c,0xb5,0x84,0x7c,0xa6,0x96,0xb7,0xbe,0x9b, +0x74,0x46,0x77,0xad,0x98,0x5b,0xb2,0xc5,0xff,0xbb,0x9e,0xf3, +0x29,0xad,0x7b,0x9b,0xaf,0xf8,0x4a,0x74,0x60,0x59,0x7a,0x47, +0xd4,0x3f,0xa2,0x73,0xbd,0xd4,0x3b,0x40,0xa1,0x53,0x40,0x84, +0x15,0x40,0xf2,0xbb,0x40,0x33,0x44,0x42,0x0a,0x14,0xbf,0x2d, +0x04,0x82,0x56,0x7a,0xbe,0x9a,0x1b,0xa0,0xd9,0x66,0xa0,0xa7, +0x5a,0xbe,0x01,0x3c,0x6f,0x1a,0x6a,0x84,0xc1,0x77,0xaa,0xef, +0x97,0xb9,0xc5,0xeb,0xb1,0xd0,0x59,0x6d,0xf8,0x12,0x3c,0xcb, +0x43,0x3c,0xc6,0xf3,0xbc,0x51,0x89,0x3d,0x13,0x4c,0x3d,0x57, +0x83,0x57,0x5b,0x23,0x3d,0xda,0x53,0x3d,0x1c,0x8c,0xc1,0xd3, +0xb3,0x3d,0x16,0x9c,0x9d,0x66,0x89,0x77,0x77,0x87,0xa7,0x8c, +0x49,0x9a,0x78,0x17,0xb0,0x24,0xea,0xbf,0x49,0x7b,0x67,0x38, +0x5a,0xb9,0xce,0x19,0x9f,0x88,0x49,0x6b,0x10,0x3c,0x36,0xf6, +0x23,0x3a,0x93,0x13,0xc2,0x8e,0xc3,0xbe,0x92,0xe3,0x3c,0x51, +0xf3,0xc3,0x0b,0xb4,0x38,0x78,0xa5,0xc3,0x40,0x3c,0x3a,0xb9, +0x3a,0x8f,0x1c,0xe7,0xa0,0x1f,0x7a,0xa4,0xf0,0x89,0xa5,0x4e, +0xca,0x97,0x57,0x0a,0x9f,0xfb,0xb9,0x91,0x55,0x1a,0xaa,0x56, +0x2a,0x87,0x53,0x7c,0xc5,0x5e,0xdc,0xa4,0xd7,0x76,0x36,0x5c, +0x33,0x3d,0x5c,0xb3,0xc4,0xae,0x6a,0x36,0x64,0xdc,0xc3,0xc8, +0x33,0xc6,0x65,0x03,0x36,0x47,0x8c,0xc6,0x6d,0x6c,0xc4,0x22, +0x81,0xa5,0x6a,0x7a,0x60,0x85,0x1b,0x13,0x66,0x8c,0x40,0x3e, +0x92,0xc7,0x2f,0xe4,0x23,0x25,0x0c,0x57,0x7e,0x3c,0x84,0x75, +0x5c,0x62,0x14,0x55,0x2f,0xe6,0xf2,0x2d,0x3f,0x47,0xb6,0x86, +0xff,0xfc,0x2e,0x6b,0xd2,0x4b,0xa6,0x7b,0xae,0x67,0xb3,0xc8, +0xf7,0x52,0x55,0xab,0x1b,0xc9,0xde,0x62,0x2f,0xf5,0x42,0xaf, +0x83,0x2c,0x16,0x7b,0x5a,0x7c,0x76,0x9a,0x8b,0xab,0x42,0x2b, +0xae,0xb2,0x0e,0xb7,0x72,0x4f,0xba,0xd2,0x2a,0xbc,0xf2,0x7f, +0xa5,0x42,0xca,0xa7,0x32,0xb6,0xd8,0xc7,0x2a,0xbe,0xc2,0xca, +0xb8,0xf2,0xc8,0x7c,0x12,0xca,0xbd,0x32,0xca,0xa5,0xec,0xb6, +0x0c,0x5a,0xa8,0x2c,0x0c,0x77,0x32,0xec,0x8e,0x81,0x3a,0xa8, +0xc2,0xac,0x6a,0x81,0xea,0xb4,0x9f,0x1a,0x7a,0xa3,0x6a,0x94, +0xaf,0xbb,0x0e,0x83,0x22,0x27,0x86,0xa2,0x26,0x70,0x12,0x4f, +0x17,0xd1,0xcc,0x85,0xb2,0xca,0x75,0x82,0x28,0x5e,0xcb,0xcc, +0x7b,0xf2,0xcc,0x74,0x42,0xca,0xd1,0xfc,0x8b,0xd4,0xcc,0xcd, +0x87,0x72,0x27,0x45,0xcb,0x91,0x82,0x06,0x91,0x9f,0xa6,0xa9, +0xd6,0xd6,0x96,0x1e,0xa7,0xb7,0xdb,0x9b,0x9a,0x36,0xfc,0xce, +0xc7,0xf6,0xa9,0x03,0x5c,0xc0,0x7a,0x59,0xa3,0x6f,0x42,0x24, +0x31,0x02,0x24,0xb4,0x3c,0x24,0x39,0x67,0x24,0x0f,0xa4,0xcf, +0x40,0xc1,0xcf,0xa9,0xb2,0x0e,0x02,0x1d,0x13,0x00,0xad,0xbb, +0x80,0x7a,0xb7,0x34,0x1c,0x94,0xe3,0xcb,0xb4,0xf1,0x9c,0xbb, +0x2b,0x9a,0xa0,0xe8,0xcb,0xbb,0xe9,0x29,0xa1,0xf8,0x59,0x20, +0x08,0x92,0x8a,0x53,0xb1,0x7a,0xae,0x0c,0x17,0x1b,0xfd,0x15, +0xab,0xd7,0xb0,0x20,0x8d,0x20,0x22,0x3d,0x7d,0x1f,0x6d,0x8d, +0x26,0x9d,0x15,0x23,0x5d,0xce,0x4c,0x1b,0x94,0x97,0x5b,0x9b, +0x0f,0x7d,0x79,0x32,0xff,0x0c,0xc3,0xd2,0x6a,0x79,0x44,0xca, +0xd0,0xef,0xd8,0x79,0x2f,0xba,0xba,0x15,0x71,0x8d,0x2c,0x3d, +0x7d,0xbf,0xf4,0xba,0x3f,0x9d,0x8c,0x1d,0x2d,0xd4,0xee,0x4a, +0x3e,0x40,0x7d,0xd4,0xdc,0x67,0xae,0x13,0x55,0xd4,0x1c,0x8d, +0x80,0x48,0x4d,0xbb,0xfa,0x69,0xd3,0xd5,0x6a,0xaf,0x17,0xfd, +0xb9,0xf7,0x6a,0xd3,0x7e,0xf6,0xa2,0x9a,0x18,0x77,0x40,0x5a, +0x77,0x54,0xdc,0xc4,0x59,0x63,0xd4,0x52,0x2d,0xd4,0x4f,0x61, +0xd6,0xdb,0x87,0xd6,0x5c,0xa1,0xd6,0xbb,0x97,0x80,0x6d,0x1d, +0xd5,0x6b,0x0d,0xd7,0x78,0x88,0xc2,0xe6,0x8b,0xc2,0x3f,0x19, +0xa3,0x52,0xcb,0xaf,0xf5,0x76,0xc0,0x2d,0xfa,0xbf,0xe7,0x4c, +0xc0,0x7f,0x4a,0xc0,0x30,0x21,0xd7,0x6f,0x4d,0xd7,0x94,0x61, +0xd8,0x51,0x81,0xd8,0x65,0x7d,0xd2,0xb6,0x97,0xd6,0x8e,0xcd, +0xd6,0x02,0xaa,0xc5,0x31,0x4d,0x9d,0xcc,0x99,0x96,0x7b,0xad, +0x6c,0x0f,0x1c,0xc0,0x9b,0xcd,0xac,0x14,0xfa,0x9c,0x9c,0x9b, +0xd5,0x62,0x01,0xa7,0x6f,0xca,0x12,0xa3,0x0d,0x14,0xa7,0x0d, +0x5c,0x18,0x68,0xd1,0x0d,0x1c,0x82,0xbf,0x7b,0x7c,0xda,0x8b, +0xa1,0x60,0x5d,0xa3,0xdd,0x8b,0xa0,0x3b,0xcd,0x79,0x9b,0x2c, +0xa2,0xdf,0x0b,0xd8,0xf8,0x8c,0x79,0x99,0x4d,0xbc,0x79,0x4d, +0x74,0x18,0xcd,0xc0,0xdd,0x2b,0xa0,0xa2,0x9d,0xdb,0xfd,0x09, +0xa4,0x14,0x79,0xb9,0xe0,0xfb,0xdb,0x4f,0x9b,0xd7,0x10,0x89, +0xd3,0x00,0xcb,0x87,0xf3,0x37,0xd8,0x49,0x8a,0xdc,0x53,0x06, +0xa4,0x40,0x39,0xc0,0x1d,0x09,0xc0,0x95,0xff,0xeb,0xdd,0xa0, +0x1d,0xbc,0xfa,0x39,0xbe,0x16,0xad,0xd0,0x84,0x8d,0xdd,0x5f, +0xe6,0xc2,0x20,0x9b,0xa1,0x2b,0xac,0x9c,0x41,0xfa,0xac,0x7c, +0xfd,0xda,0xbd,0xbc,0xde,0x4a,0xa7,0xd7,0xe8,0xfd,0xa0,0x6c, +0x89,0xce,0x5f,0xac,0x91,0xdb,0xd6,0xdf,0x46,0xba,0xdf,0xf2, +0x26,0x87,0x64,0x0d,0xc6,0xa1,0xda,0xc9,0xac,0x1a,0x1f,0x67, +0x7a,0xdf,0xe9,0x9d,0xe0,0x53,0x06,0xa5,0xb0,0x49,0xe0,0xff, +0x0d,0x8f,0xbb,0xac,0xe0,0x60,0xc6,0xe0,0xf7,0xdd,0xc5,0x14, +0x6e,0x60,0xf8,0x99,0xe1,0xdd,0xb3,0x9d,0xc6,0x89,0x68,0x5c, +0xf1,0x66,0xe0,0xf9,0xc8,0x6a,0x06,0xe2,0x89,0x66,0xe2,0x94, +0x21,0xe2,0xba,0x49,0xe2,0xb7,0x5d,0xaf,0x9c,0x4c,0x82,0x43, +0xb9,0x6e,0x31,0x3a,0xd8,0x9a,0x31,0x99,0x8d,0x66,0x9e,0x9c, +0x39,0x9e,0xaf,0x74,0x9c,0xff,0xa2,0x99,0x38,0x7e,0xe2,0x3a, +0xee,0x9b,0x1e,0xee,0xc9,0xd8,0x3b,0x79,0xbe,0xe7,0xa9,0xc7, +0x8d,0x8e,0x4a,0xce,0xac,0x61,0x79,0x32,0x36,0x3e,0xe2,0xe1, +0xf9,0x68,0x3c,0xde,0x9b,0x66,0x36,0x9c,0x4f,0x5e,0x99,0x53, +0xce,0xe3,0x75,0x0d,0x85,0x46,0x0e,0x74,0x62,0x6d,0xdc,0x0c, +0x1c,0xda,0x27,0xb3,0x03,0x6d,0x22,0xa7,0x0c,0x41,0xe6,0x2f, +0x27,0x12,0x68,0xce,0xa6,0x0d,0xb1,0xe6,0x66,0x5e,0xe4,0xe6, +0xad,0xa0,0xbe,0x37,0xe7,0x0a,0x81,0x6f,0xb6,0x2d,0xbc,0x47, +0xd2,0x50,0x57,0x19,0x71,0x2e,0xd4,0x50,0x53,0x29,0x71,0x75, +0xa9,0x35,0x56,0x69,0x71,0x7c,0x5c,0x4a,0x84,0x5e,0x71,0xa5, +0xff,0xf5,0xb4,0xeb,0xad,0x9a,0x2c,0x8c,0xa9,0xd5,0x1a,0x91, +0x79,0x4a,0xa2,0xa1,0xb6,0xa0,0x45,0xb7,0xaf,0x15,0xda,0xd5, +0x40,0x99,0xbd,0x0b,0x5a,0x67,0x17,0xd1,0x14,0xb9,0xfc,0xe6, +0x81,0x62,0x8d,0xf6,0x92,0xe6,0xac,0xe7,0xe9,0xad,0x0c,0xea, +0x75,0x24,0xea,0x9f,0x4e,0xda,0x14,0x61,0xce,0xda,0xd6,0x96, +0x22,0x39,0x92,0xd1,0xd9,0x91,0xd4,0x59,0xaa,0xeb,0xfc,0xb1, +0xd1,0xe9,0xb9,0xe6,0xfb,0xd7,0x52,0x08,0x9d,0x9a,0x8e,0x9a, +0xb7,0x0e,0xd5,0x4d,0x21,0xcb,0x4e,0x23,0x44,0x53,0x97,0x75, +0xfc,0x48,0xec,0x8e,0x13,0x44,0xc7,0xfe,0x1c,0xc9,0x7e,0x2b, +0xc5,0xce,0xec,0x7d,0xe5,0xec,0x0f,0xa2,0xec,0xc1,0xc3,0x43, +0xcd,0x0e,0x75,0x9f,0x77,0x93,0x5d,0xb9,0xb2,0x3d,0xbd,0xac, +0xd0,0xfa,0x9c,0x78,0xce,0xdc,0x7d,0x6b,0xb5,0xed,0x2c,0xee, +0x08,0x0b,0x16,0x92,0x71,0xcd,0xcb,0x6e,0xec,0x42,0xf5,0x1c, +0xea,0x3e,0xec,0xde,0xdc,0xee,0xd2,0x9e,0x75,0xf1,0x6e,0x2b, +0x84,0x83,0x44,0xd3,0x4e,0x16,0xf7,0xce,0xee,0xd7,0x5e,0xef, +0xf8,0x87,0xe0,0x31,0xad,0xd0,0x82,0x49,0xb9,0x46,0x18,0xd1, +0xe2,0x4b,0xdc,0x27,0x2a,0x85,0x80,0x8b,0xf0,0x98,0x06,0x80, +0xeb,0x3e,0xef,0x3c,0x04,0x41,0xfc,0xae,0xee,0xf8,0xfe,0xef, +0x83,0xbb,0x94,0x10,0x2f,0xef,0x6b,0x82,0xf1,0x14,0xef,0x11, +0x07,0x72,0xf1,0x13,0x4f,0x12,0xc5,0xc6,0xdf,0x2e,0x0b,0xd1, +0x04,0x5f,0xaa,0x5a,0x9c,0xf0,0xf0,0x2c,0xdf,0xcf,0x6a,0xdf, +0xf1,0x1d,0xbe,0x32,0xff,0x8f,0x00,0x65,0x38,0xec,0x5f,0xc8, +0x8c,0xf1,0xea,0xb3,0xf0,0xae,0x15,0x66,0x72,0xea,0xb1,0xa4, +0xf3,0x15,0x0f,0x16,0xa3,0xe2,0xf3,0x0f,0x0b,0xf4,0x20,0xcf, +0xf3,0x37,0xcf,0x42,0x39,0x3f,0xb4,0xc5,0xe6,0xf0,0xfe,0x3b, +0xbc,0x64,0xe9,0xdc,0x7e,0xbd,0xdb,0xdd,0xfd,0xbb,0x65,0x39, +0xf0,0xd4,0x26,0x88,0x81,0xf8,0x83,0xfc,0xd7,0x51,0xab,0xb4, +0xf3,0x34,0xf8,0x7f,0x5c,0x2f,0xae,0x0b,0xb8,0x4b,0x60,0x2f, +0x84,0x62,0xef,0x85,0x64,0x5f,0x88,0xf6,0xbe,0x83,0x69,0x9f, +0x39,0x4b,0x3f,0x80,0xaa,0xd5,0xeb,0xfa,0x3d,0xdc,0x7c,0x56, +0xd3,0xf8,0x8c,0xac,0xe7,0x3c,0xf5,0xac,0xdd,0x9a,0x0f,0x7d, +0xf5,0x5e,0xf9,0x91,0x5a,0xdf,0xf3,0x80,0x88,0x55,0xa8,0x75, +0xf6,0x43,0x5f,0xf8,0x93,0x7a,0xf8,0x41,0x2f,0x84,0x84,0x4f, +0x89,0x86,0x2f,0x58,0x88,0xff,0xf8,0x31,0xc8,0x7f,0x55,0x28, +0xf9,0xc5,0x36,0x6a,0x7b,0xf9,0xde,0x8d,0xfe,0xb4,0x34,0xb9, +0xcb,0x44,0x1a,0xba,0x81,0x3f,0xe1,0x53,0x2f,0xe1,0xef,0x07, +0xf8,0x37,0x2c,0x6d,0x83,0xff,0x85,0x90,0x1f,0xac,0xcd,0x37, +0xf9,0xac,0x5f,0xf9,0x3f,0x05,0x54,0x6d,0x4f,0x83,0x94,0xcf, +0x3c,0xae,0x6f,0xf6,0x8d,0x9f,0xf8,0xad,0x3f,0xb3,0xba,0x6f, +0x12,0xa1,0xca,0x97,0x74,0xbc,0xf2,0xfc,0x2d,0x82,0x4f,0xbc, +0xc5,0x26,0xd7,0xce,0x5f,0xfc,0xa1,0x9d,0x3d,0xe0,0xc3,0xf7, +0xc4,0x01,0x3e,0xd6,0xc8,0xcf,0xa4,0x50,0xe1,0xf6,0xad,0x32, +0xf6,0x71,0x8f,0xf9,0x1e,0x61,0x19,0x61,0xff,0x7f,0xfd,0x6a, +0x9f,0xfd,0x30,0xf2,0x1c,0xdc,0x8f,0xf6,0xde,0x0f,0xf7,0x5e, +0x1f,0xfe,0x64,0x31,0xfe,0x5b,0xff,0xfd,0xe7,0x2f,0xc8,0x45, +0x96,0x98,0x24,0x18,0xe1,0x36,0x74,0x15,0xb6,0x9f,0xf4,0x16, +0x51,0xf4,0xc2,0x84,0xfe,0xdb,0xcf,0xfd,0x89,0x8f,0xf3,0x88, +0x0a,0x10,0x3b,0x20,0x00,0x20,0x58,0x90,0x20,0x84,0x4c,0x99, +0xe8,0xd0,0x81,0xb0,0x0e,0x82,0x3a,0x08,0x11,0x23,0xde,0xb9, +0x03,0xc1,0xcc,0x8e,0x8b,0x3b,0x04,0x1a,0x34,0x88,0x50,0x21, +0x43,0x87,0x10,0x25,0x42,0xa0,0x68,0x11,0xa3,0xc6,0x8d,0x1c, +0x55,0xae,0x64,0xd9,0xd2,0xe5,0x4b,0x96,0x0f,0x64,0xca,0x44, +0x80,0x00,0xa6,0xca,0x9a,0x37,0x75,0xee,0x3c,0x98,0x50,0x61, +0xc3,0x75,0x10,0xe3,0x50,0x24,0x3a,0x72,0x24,0x4b,0x8f,0x3f, +0xd7,0x05,0x85,0x30,0x94,0x68,0x45,0xa3,0x11,0x91,0xfa,0x04, +0xc9,0xd4,0x69,0xd1,0xa8,0x03,0x57,0x26,0xad,0x2a,0xf4,0x29, +0xd4,0xa8,0x3c,0xc5,0x8e,0x25,0x5b,0xd6,0xe5,0xcc,0xb3,0x32, +0xcb,0x26,0xcd,0x04,0x54,0xe8,0xd5,0xaf,0x77,0x38,0x71,0xd2, +0xaa,0x92,0xad,0xdb,0xa6,0x70,0xbf,0xce,0xad,0xcb,0xf1,0xee, +0xd2,0xb7,0x71,0x89,0xf2,0x9d,0xea,0x13,0x6f,0x1c,0xbd,0x4f, +0x09,0x9b,0x65,0xdc,0xd8,0x71,0x4c,0x00,0x35,0x6d,0x12,0x7c, +0x80,0x13,0x41,0xe5,0xb1,0x7f,0xd5,0xbd,0x4d,0x2c,0x77,0xb1, +0x5d,0x9f,0x6d,0x83,0x72,0x16,0x3c,0x97,0x6e,0xe1,0x84,0x0d, +0x37,0xe7,0xed,0x6c,0xba,0x6f,0xc7,0xd0,0xaa,0x49,0xc7,0x75, +0xff,0xfd,0xd8,0xf6,0xed,0xb2,0x95,0x27,0x1b,0x7c,0xb0,0x9b, +0x23,0x66,0xb1,0x12,0xdb,0xae,0xce,0x5a,0xbc,0xa5,0xf0,0x87, +0x22,0x8b,0x87,0x45,0x1a,0x71,0xb8,0xf2,0xe5,0x47,0x9b,0x23, +0x4c,0x1e,0x9d,0x39,0xee,0x9b,0xc0,0xb1,0x33,0xee,0xbd,0xb2, +0xbb,0x77,0xdf,0xc1,0x25,0xa2,0x50,0xa0,0x00,0x05,0x79,0xf3, +0xe8,0xcf,0x2b,0x78,0x3d,0x1d,0x42,0xf9,0xf5,0xe9,0xe1,0xa3, +0x6f,0xbf,0x55,0xa2,0x7c,0xfc,0xf1,0x51,0xd4,0xb7,0x3b,0x5e, +0xfd,0xff,0xf9,0xf8,0xdb,0x4e,0xa5,0xef,0x06,0xcc,0x2d,0x3c, +0xca,0x10,0x4c,0x10,0x26,0xed,0x38,0xda,0x21,0x12,0xeb,0xa4, +0xbb,0xe9,0xc1,0x08,0x25,0xda,0x89,0xc2,0x0a,0x05,0x54,0x09, +0xc3,0x0a,0xcf,0x02,0x00,0x2d,0xde,0xd4,0xaa,0x6c,0x44,0x10, +0x3f,0x2c,0xd1,0x44,0x10,0x1b,0x1c,0xf1,0xb7,0x0f,0x59,0x54, +0xb1,0x45,0xde,0x50,0x9c,0x09,0xb8,0x02,0x79,0x53,0xf0,0xc3, +0x1b,0x0b,0xd2,0x4d,0x25,0x87,0x7a,0x6c,0xcf,0x47,0x87,0x74, +0x6a,0x68,0xc8,0x75,0xec,0x02,0x52,0x27,0x20,0x7f,0x24,0x52, +0xc3,0x8e,0x8e,0xf4,0xcb,0xc9,0x96,0xd4,0xaa,0x89,0xc6,0xc8, +0x2e,0xeb,0x4d,0xca,0x29,0x5b,0x94,0x4c,0xbb,0xcb,0x24,0xc3, +0xd1,0xc6,0x1a,0xaf,0xf4,0xad,0x3b,0x2a,0xbb,0xb4,0xb1,0xca, +0x29,0xc9,0x8c,0x0c,0xbc,0x28,0x29,0x6b,0x50,0xcb,0x95,0x92, +0xe4,0x71,0x49,0x21,0xa1,0x2c,0x68,0xc9,0x22,0x6f,0x92,0x93, +0xa3,0x3d,0x61,0xc2,0xd3,0x48,0x22,0x5f,0xea,0x6d,0xb7,0x15, +0x09,0xed,0xd2,0x37,0xff,0x33,0x0b,0x1a,0xd3,0x50,0x30,0x17, +0x55,0xf3,0xcb,0x16,0x77,0x0c,0x73,0xcc,0x41,0x21,0x25,0x30, +0xc7,0x2b,0x23,0xc3,0x8c,0xc4,0x19,0x1b,0x0c,0x74,0xab,0x1e, +0x79,0xf2,0x91,0xa5,0x51,0x77,0xfa,0x14,0xd0,0x3c,0x91,0x1c, +0x92,0xd4,0x55,0x05,0x75,0xf4,0x55,0xef,0xde,0x5c,0x70,0xd6, +0x05,0xcb,0x24,0xd3,0xa6,0x02,0x77,0xb4,0xd4,0x52,0x9a,0x08, +0x8d,0xe9,0xc6,0x1d,0x27,0x93,0x12,0x47,0xc9,0x72,0x32,0xf0, +0x58,0x64,0x71,0x9b,0x74,0xd9,0x1b,0xad,0xbc,0x54,0xc7,0x45, +0x21,0xbd,0x75,0xc5,0x5c,0x19,0x85,0xd6,0x4d,0x63,0x69,0x3d, +0x93,0x4d,0x8e,0xb2,0x95,0x35,0x59,0x70,0xc3,0x1d,0x8b,0xd9, +0x46,0x5d,0xba,0xec,0x37,0x6b,0x67,0x2d,0x14,0x47,0x31,0xbf, +0x5b,0x51,0x47,0x1d,0xc9,0xac,0x74,0x5b,0x74,0x7f,0x65,0x50, +0x5c,0x7c,0xf3,0xdd,0x49,0x2d,0xca,0xd6,0xa4,0x51,0x4c,0x02, +0xe9,0xdd,0xf5,0x5f,0x61,0x13,0x85,0x53,0x52,0x7f,0x43,0x1c, +0xd1,0xca,0x6c,0xaf,0x7d,0x96,0xdb,0x97,0x72,0xd4,0x77,0x62, +0x7c,0xaf,0x1c,0xd6,0xcd,0x85,0x6b,0x8c,0xf7,0xe2,0x78,0x15, +0xe6,0x75,0x4d,0x75,0x71,0x05,0x19,0x46,0x82,0xb6,0xb4,0xb2, +0xd3,0x18,0x1f,0x66,0x51,0x62,0x8a,0x5b,0x76,0xf9,0x5a,0x2f, +0x0d,0x32,0x79,0xe4,0x6e,0x63,0xae,0x59,0xe6,0x9c,0x10,0xed, +0x56,0xd1,0x92,0x77,0xae,0xb7,0x58,0x9b,0x51,0x14,0x18,0x2d, +0x96,0x5f,0x36,0x7a,0x62,0x8d,0x21,0x3e,0x3a,0xad,0xa2,0xd1, +0x94,0xb9,0xe6,0xa6,0x97,0x96,0x3a,0xd9,0xff,0xa4,0x55,0x9e, +0x7a,0xe3,0x5e,0xaf,0xd6,0x7a,0x6b,0xb3,0x8c,0xb3,0xef,0x3a, +0x45,0x15,0x6c,0xb8,0xca,0x95,0xc6,0x06,0x40,0x2a,0xbf,0xda, +0x43,0xbb,0xa3,0xf6,0xcc,0x26,0x1b,0xe7,0xb2,0xa3,0x26,0x88, +0x1b,0x9d,0xe8,0x9e,0x9b,0x6b,0x82,0xac,0x51,0x49,0x19,0xb1, +0xf8,0xbe,0x09,0x02,0x65,0x94,0xc1,0x62,0x70,0x2c,0x02,0x57, +0x3b,0x70,0xc2,0x0b,0x57,0xa6,0x2f,0x04,0xcc,0x30,0x23,0xbc, +0xc6,0x1f,0x2f,0xe8,0xf1,0xc6,0x39,0xa2,0xdc,0x0c,0x45,0x21, +0x60,0x85,0x95,0xa8,0x06,0x18,0x00,0x82,0xc9,0xcc,0xd0,0x9c, +0x73,0xa3,0x3c,0xb7,0x48,0x51,0xc7,0x21,0x4f,0x7d,0xf2,0x9a, +0x30,0x37,0xe8,0xf2,0x96,0xec,0x06,0x80,0x1b,0xbb,0x69,0x67, +0xa9,0x76,0xd9,0x65,0x7f,0xcc,0x6f,0x00,0xf8,0xe6,0x5d,0x6f, +0x98,0x78,0xdf,0xbb,0x77,0x83,0x7c,0x17,0xde,0xef,0xc0,0x61, +0x42,0x20,0x22,0xc1,0x03,0x47,0x7c,0x71,0xd0,0x09,0x12,0x1d, +0x70,0xc5,0x9f,0x8f,0xc8,0x75,0x09,0x0f,0xb2,0x50,0xfb,0xb5, +0xb9,0xd7,0xaa,0xf1,0xd1,0x37,0x17,0xdf,0xf3,0xcf,0x29,0x5f, +0x5e,0x7c,0xf4,0xc9,0x07,0x7d,0xb2,0xec,0xcf,0xde,0xde,0xfd, +0xee,0xe1,0x6f,0xcf,0xf6,0xb9,0xe9,0xa6,0xdd,0x76,0xdd,0x39, +0xd2,0xfd,0x7e,0x00,0xa0,0x99,0xdd,0xfe,0xfc,0x71,0x24,0x79, +0x04,0x51,0x06,0x37,0x8c,0xe7,0xbc,0x01,0x02,0xc0,0x1a,0xc0, +0x23,0xa0,0xf3,0x08,0xa8,0xc0,0x05,0xae,0xc4,0x81,0xbc,0x13, +0x5e,0xf1,0x6e,0x02,0x3e,0xc1,0x45,0xa5,0x70,0x16,0x91,0x0c, +0xff,0xf5,0x34,0xb8,0xb8,0x9a,0x40,0xc0,0x74,0xe2,0x30,0x4a, +0x5b,0xa0,0x77,0xb6,0x11,0x96,0x10,0x70,0x52,0x01,0x5f,0xf8, +0x36,0xa7,0x3e,0x0e,0x86,0xd0,0x85,0xac,0x80,0x61,0x4e,0x98, +0x07,0x01,0x37,0x18,0x85,0x84,0x9b,0x1b,0xc8,0x0d,0x73,0x38, +0x92,0x1d,0x72,0x4e,0x25,0xf7,0x23,0x62,0x11,0xef,0xa6,0x3f, +0xff,0xcd,0xee,0x7f,0xfe,0xa3,0x9d,0xff,0x92,0x18,0xc0,0x07, +0x12,0xcf,0x80,0x13,0x7c,0xe0,0xef,0x5c,0x32,0x40,0xbe,0x2d, +0x90,0x81,0x12,0xa4,0xa0,0x00,0x89,0x67,0xae,0xe9,0x41,0x60, +0x21,0x63,0x64,0xc8,0xf5,0x3a,0x18,0x11,0x32,0x2e,0x44,0x22, +0x21,0x54,0x9f,0x38,0x48,0x68,0x18,0xc5,0x45,0xa4,0x8d,0x6f, +0x4c,0x4d,0x1c,0x23,0x03,0x81,0x20,0xd2,0x30,0x85,0xa1,0xc3, +0x63,0xf8,0xda,0x78,0x3a,0xc0,0x65,0xd0,0x0d,0x83,0xc4,0x63, +0x1e,0x99,0x27,0x48,0x42,0xba,0x31,0x7c,0xf3,0xb3,0x5f,0x39, +0x00,0x68,0xc4,0x21,0x16,0xb1,0x89,0xf7,0x83,0x06,0x34,0xb8, +0x61,0xc9,0xfc,0xf9,0x6e,0x76,0x08,0xe4,0xa4,0xef,0xc4,0x71, +0xc5,0x95,0x30,0x50,0x6f,0x11,0x64,0x89,0x03,0xbf,0xd8,0x40, +0xe2,0x55,0xb0,0x5b,0x1e,0x11,0xe3,0x18,0x71,0x98,0x43,0x3e, +0xa6,0x86,0x8c,0xaf,0x3c,0x1d,0x0a,0x47,0xf8,0x46,0x31,0x42, +0x60,0x83,0xb6,0xfc,0x9c,0x22,0xdb,0xc2,0x90,0x5d,0x1e,0x64, +0x87,0x7f,0xb4,0xcb,0x30,0x53,0x78,0xa7,0x0c,0x32,0x24,0x87, +0x8a,0x14,0x5f,0x0f,0x93,0x89,0xc3,0x42,0x2e,0xd2,0x20,0x92, +0xe4,0x46,0x39,0x1c,0xff,0xf9,0x48,0xfe,0x19,0xa4,0x92,0x97, +0x2c,0xa2,0x25,0x67,0x27,0x8e,0x6d,0xd2,0x0f,0x95,0x7c,0xb3, +0x9f,0xf3,0xc4,0xc1,0xc9,0xde,0x25,0x50,0x81,0x51,0x6c,0xa0, +0x2a,0xb5,0xb8,0xc5,0x28,0x22,0xf0,0x94,0xea,0xf4,0x53,0x42, +0x8a,0x45,0x48,0xd0,0x64,0xe2,0x9e,0x39,0xec,0x88,0x1e,0x3f, +0x27,0x19,0x35,0x66,0xf0,0x6c,0xfe,0x5c,0x1f,0x02,0x02,0x8a, +0x85,0xba,0x44,0x33,0x84,0x8a,0x2c,0x26,0x09,0x17,0x4a,0xc2, +0x3b,0x6d,0x70,0x21,0x1d,0x44,0x5f,0x0f,0x25,0x4a,0x07,0x8a, +0x36,0x73,0x9a,0x45,0x2c,0x07,0x00,0x3a,0x6a,0x4d,0x47,0x3a, +0x52,0x89,0x05,0xc1,0xdf,0x24,0x31,0x49,0x3b,0x71,0x70,0x23, +0xa5,0x96,0xac,0x64,0xf1,0x9c,0x67,0x40,0x95,0x16,0x10,0x00, +0x6e,0x94,0xa7,0x3b,0x3b,0x89,0x3c,0x96,0x6c,0x11,0x8b,0xa0, +0x34,0x55,0x5b,0x18,0x06,0x4d,0xd0,0x80,0x8e,0x26,0x40,0xbd, +0xd3,0x0b,0x07,0x80,0x80,0x03,0xf4,0xe6,0xa0,0x3d,0x34,0x2a, +0x52,0x95,0xca,0x10,0x81,0x6a,0x4f,0x1c,0x48,0x3d,0x00,0x02, +0x48,0xa8,0x36,0x3c,0x52,0xd5,0xaa,0x6b,0xd3,0xe5,0xe2,0x26, +0xfa,0x80,0xaa,0x0e,0x40,0xa3,0x5d,0x6d,0xe5,0x65,0xc2,0xaa, +0xd1,0xb9,0x5d,0xb3,0x9a,0x74,0x2b,0x87,0x4c,0x3e,0xba,0xd6, +0x6c,0xf6,0xaf,0x89,0x95,0xa4,0xeb,0xff,0xe8,0x96,0x52,0x4a, +0x6e,0xd4,0x88,0x9f,0x74,0xe3,0x27,0xef,0x67,0xce,0xbd,0x69, +0x52,0x8b,0xed,0xcc,0x5b,0x4b,0x54,0x79,0x58,0x53,0x65,0xf5, +0x00,0x55,0xbd,0x6a,0x7f,0xa6,0xba,0xd8,0xff,0xad,0xf6,0xc5, +0x8f,0x4e,0x35,0x28,0x54,0x11,0x3a,0xd0,0x17,0x52,0x76,0xa9, +0x77,0x82,0xe5,0x50,0xdb,0x62,0x97,0xce,0xf6,0x86,0x3a,0x11, +0xf5,0x2a,0x46,0xc1,0x8a,0x00,0xcf,0xf1,0xf0,0x6c,0x17,0x35, +0x2b,0x6a,0xc5,0x2a,0x44,0x92,0xf2,0xaf,0xad,0x9d,0x6a,0xab, +0x24,0x63,0xdb,0x52,0x68,0x80,0x33,0xb7,0x33,0x75,0xa3,0x4a, +0xb9,0xe9,0x4d,0x92,0x06,0x2e,0xa6,0x9f,0xf4,0x9b,0xdd,0x0a, +0xe8,0xce,0x74,0x06,0x4e,0x94,0xeb,0x54,0xe5,0x58,0xe8,0xf9, +0x12,0x85,0x2e,0x8f,0xa1,0x7e,0x51,0xe4,0x43,0x25,0x5b,0x51, +0x80,0x5a,0x96,0xa9,0xcd,0xcc,0xae,0x07,0x39,0xeb,0x86,0x62, +0xa5,0x06,0xb4,0xe0,0x95,0x8c,0x78,0x0f,0xc2,0x5a,0x36,0xa6, +0xd6,0xa2,0xa5,0xed,0x20,0xf9,0x60,0xfb,0x3f,0xbb,0x76,0xca, +0xad,0x21,0xad,0x5f,0xed,0x72,0x7b,0x3f,0x70,0x3e,0x80,0xaf, +0xf9,0xb5,0x6b,0x12,0x53,0x29,0x53,0xba,0x69,0x32,0xb6,0xa6, +0x6c,0x09,0x3c,0x09,0x0c,0x4f,0x9e,0x34,0xf7,0x38,0x24,0x74, +0x6f,0x1f,0x8b,0x29,0x42,0xf5,0x42,0xb4,0xa8,0x3c,0x54,0x64, +0x0e,0x81,0xb9,0x38,0xcc,0x72,0xae,0xc2,0xb9,0xdc,0xe5,0xf2, +0x08,0x39,0xcb,0xd4,0xf0,0xf1,0xc3,0xae,0x4c,0x0d,0xe6,0x3c, +0xc8,0x90,0xb6,0x28,0x52,0x7d,0x67,0x7b,0x66,0x8a,0x19,0x6c, +0x3a,0xbb,0xf2,0x8f,0x1b,0xf2,0x9d,0xaf,0x48,0x89,0x38,0xd3, +0xfe,0xf5,0x56,0x9b,0x95,0x4c,0xe9,0x4c,0xbd,0xf9,0xc4,0x82, +0xf8,0x95,0x80,0x9f,0xbc,0xdb,0x14,0xf9,0x46,0xe4,0x76,0x2a, +0xff,0xc3,0xc0,0xa7,0xe4,0xe9,0x63,0xa4,0x0b,0xe1,0xd7,0x6a, +0x38,0x7a,0x00,0x10,0xdd,0x8b,0xa3,0xdc,0x47,0x13,0x37,0xb3, +0xc2,0x84,0x8c,0xe3,0x22,0xb7,0x9c,0xc3,0x38,0xb6,0xb0,0x95, +0xb3,0x34,0xa3,0x0c,0xc7,0xec,0xca,0x88,0x84,0x10,0x71,0x49, +0x89,0x26,0x0c,0xd7,0x6c,0x18,0x15,0xc3,0xf8,0xc6,0x18,0x93, +0x6f,0x47,0x8d,0xf8,0x5b,0xbc,0xb2,0x94,0x20,0xd0,0xd0,0x6f, +0x5f,0xb9,0x69,0x41,0xdf,0x12,0xf7,0xa6,0xc9,0x55,0x70,0x05, +0x81,0x27,0x60,0xc6,0x28,0xb8,0x5b,0xd3,0x73,0x6f,0x45,0x63, +0xb8,0x3c,0x28,0xa3,0x8f,0x74,0x21,0xa4,0xb0,0x51,0x72,0x78, +0xc2,0xd1,0xf5,0x71,0x24,0x97,0x66,0xa1,0xe8,0x32,0x68,0x94, +0x0d,0x9a,0xcf,0x83,0xa0,0x06,0xa1,0x4d,0x6e,0xd8,0x16,0x20, +0x42,0xb8,0x87,0x2b,0x44,0xb5,0x44,0x5e,0x3c,0x10,0xb6,0xd2, +0xce,0x9a,0x34,0x96,0x89,0x6d,0x71,0xe7,0xdb,0x19,0x5f,0xf2, +0x01,0xfe,0x13,0xc7,0x03,0x28,0x79,0xc9,0x2a,0x12,0x99,0x7e, +0x03,0x3c,0x67,0xf2,0xa0,0x98,0xca,0xe1,0x59,0x03,0xd1,0x5e, +0xb4,0x20,0x3d,0x15,0x8d,0xba,0x48,0x4b,0x9a,0x73,0xa2,0x6e, +0xb4,0xa4,0xd7,0x27,0xbf,0xb4,0x71,0xf5,0x7d,0xde,0xcb,0x1c, +0xf5,0x10,0xb8,0xc1,0x29,0x4f,0xaf,0x79,0xce,0x03,0xb7,0xeb, +0xb0,0xcd,0x36,0x6d,0xc7,0x4f,0x42,0xb2,0x9d,0x35,0x8d,0x09, +0xa2,0xd6,0xfa,0x96,0xd4,0x6e,0x7c,0x96,0x89,0x5f,0x53,0x9a, +0x52,0xe4,0x15,0xb0,0xc7,0xc4,0x73,0xe3,0x46,0x09,0x8c,0x4a, +0xc3,0x0a,0x56,0x80,0xff,0xcf,0x0e,0x6c,0xc4,0x54,0x6d,0x14, +0x1e,0xf2,0xd1,0x74,0x08,0x9f,0x76,0xc9,0x56,0x27,0xb3,0x87, +0x53,0xb9,0x75,0x96,0x9b,0x78,0x47,0x10,0x47,0x38,0xc3,0xd9, +0xe5,0xe2,0x83,0xcb,0x38,0xc4,0x25,0xe7,0xf1,0xdd,0xc0,0xee, +0x75,0x15,0x57,0x62,0x35,0x67,0x3d,0xdb,0x19,0x75,0xb4,0xe4, +0xf6,0xc5,0xa4,0xb0,0xf9,0xd5,0xe7,0xde,0x02,0x7b,0x93,0xbd, +0xb3,0xdf,0x4c,0x65,0xf7,0x52,0x98,0x16,0x04,0xa7,0x59,0xe4, +0xa2,0x15,0x83,0xe7,0x98,0xf8,0xb9,0xaf,0x3f,0x43,0x87,0x9b, +0x65,0x6e,0x66,0xf4,0xfe,0x80,0x0d,0xdd,0x46,0x89,0x5b,0xd3, +0x8b,0x7e,0x74,0x92,0x86,0x14,0xe5,0xb3,0x35,0xd1,0xad,0x0b, +0x42,0x57,0xdb,0x31,0x11,0xc7,0x7e,0x06,0x27,0xdd,0xfc,0x5b, +0x4e,0x94,0xf6,0xb5,0xd8,0xfa,0x16,0xb0,0xdd,0xf4,0xa6,0x68, +0xe5,0x16,0x16,0xc1,0x4c,0x26,0xb8,0x90,0xb2,0xe2,0x9e,0xf6, +0xbd,0x0d,0xea,0x25,0x13,0x1b,0x82,0x82,0x7e,0x77,0xac,0x22, +0x7d,0xee,0x72,0x2f,0xfa,0xad,0xab,0xe9,0xd1,0x8f,0x3e,0x00, +0xa4,0x26,0xc7,0xdf,0x9e,0xc1,0x09,0xce,0x1c,0xd3,0xcf,0xb7, +0x4e,0x84,0x62,0x01,0x8b,0xd8,0x57,0x9d,0x7f,0x91,0x7e,0xca, +0xa6,0xe7,0x02,0x95,0x9c,0x45,0x25,0x83,0x12,0xed,0xcb,0x3e, +0xce,0x06,0x36,0xc0,0x00,0xd0,0x33,0xc0,0xf3,0x6a,0xf3,0x7c, +0xe8,0x45,0xbf,0x01,0xc6,0x45,0xdc,0xe1,0x1f,0x97,0x78,0xe5, +0x46,0xee,0xfa,0x3b,0x96,0xa0,0x04,0x51,0x31,0x81,0x09,0xc2, +0x0d,0x01,0xd9,0xd3,0xde,0xf6,0xe6,0x8e,0xff,0x9c,0xea,0x58, +0x2f,0x72,0xd6,0xc1,0xde,0xce,0xe2,0xa4,0x8c,0x35,0x4d,0x7e, +0xcd,0x48,0x5e,0x92,0xf1,0x96,0x5c,0xa9,0x49,0xc5,0x99,0x3c, +0x22,0xf7,0xbb,0x77,0x7c,0x9d,0xfe,0xdc,0x64,0x5a,0xbc,0x51, +0x42,0xb0,0x8a,0x68,0x97,0xe0,0xc0,0xdb,0x7e,0x47,0x08,0x7c, +0xde,0xf3,0xa5,0x47,0xfd,0xed,0xc3,0x7f,0x7a,0xf2,0x5f,0x8f, +0xdb,0x4b,0xbf,0xd3,0xb6,0xcf,0x0d,0x3e,0xd9,0xc7,0x5f,0xf6, +0xb5,0xdf,0x7d,0x07,0xe5,0x1f,0x7f,0xfa,0x5f,0xfb,0xdc,0xed, +0x4f,0xf7,0x6b,0xda,0x57,0x73,0x8f,0x0a,0xc0,0x90,0x92,0x31, +0x71,0x02,0xa0,0x6d,0xc2,0xab,0xae,0xd3,0x33,0xba,0x4a,0xa2, +0xe2,0xe2,0x3c,0x26,0x33,0xa0,0x50,0x4a,0x3b,0x09,0xca,0xbe, +0x97,0xe0,0x3e,0x82,0x03,0x9f,0xcf,0x8b,0x0a,0xd1,0x7b,0xb4, +0xf3,0xd3,0x40,0xd4,0x0b,0xa1,0xda,0x83,0x80,0x3d,0x50,0xa1, +0xf2,0x3b,0x9b,0x10,0x1c,0xc1,0x91,0x68,0x8b,0x12,0x6c,0xa1, +0xfb,0xcb,0x3f,0x0e,0xc4,0x3d,0xf9,0x73,0x41,0x1b,0x0a,0x3f, +0x68,0x1a,0x89,0x11,0xcc,0x3d,0xf7,0x41,0xbd,0x1f,0x92,0x88, +0x1b,0x9c,0x3d,0x92,0xaa,0x1f,0xf8,0x8a,0xb5,0x1b,0x83,0x22, +0xfe,0x59,0x40,0x96,0x52,0x3e,0x99,0xe3,0x88,0x7b,0xb3,0x1b, +0x24,0x6b,0x40,0xc7,0x8b,0x40,0x9d,0x53,0xb6,0x08,0x22,0x25, +0x0b,0x62,0xb2,0x2b,0xfa,0x37,0x9c,0x08,0xa3,0x34,0x2a,0xa3, +0x17,0x3c,0x33,0x35,0x4a,0xb3,0xe5,0xc9,0xbf,0x3d,0x18,0x41, +0xc3,0x38,0xbd,0x88,0x10,0x43,0x32,0x4c,0x0d,0x33,0xbc,0xa3, +0xff,0x1e,0x2c,0x01,0x31,0xbc,0xbd,0x36,0x7c,0x43,0x13,0x2b, +0xbd,0x57,0xca,0xa1,0x31,0x84,0xc1,0xd9,0x0b,0xbf,0x0c,0x1c, +0x24,0x3b,0x6c,0xc3,0xbe,0xa0,0x26,0x02,0x9c,0xb3,0x21,0x5a, +0xb9,0x22,0x74,0xa2,0x95,0xa0,0x29,0x65,0xe8,0x37,0x07,0xda, +0xb7,0x63,0x5b,0x27,0x9d,0x4b,0x1e,0x52,0x5a,0xbb,0x74,0x2a, +0xa5,0x9a,0x9a,0xc4,0x67,0x5b,0x1e,0x59,0x72,0x25,0x42,0x8a, +0xa5,0x5f,0xd2,0xc4,0x1c,0xc2,0x1e,0x34,0xa4,0x0e,0x86,0xd8, +0x40,0x13,0x3c,0x41,0x32,0xcc,0x25,0x52,0x3c,0x88,0x1b,0x7c, +0x43,0xbb,0x58,0xc5,0x13,0x4c,0xa8,0x0c,0x54,0x26,0x11,0xf4, +0xc3,0xb3,0x89,0x45,0x68,0xba,0xc3,0xf8,0xfb,0xc3,0x92,0x1b, +0xa9,0x21,0x24,0xbe,0xe4,0x5b,0xb9,0xd9,0x49,0x22,0xff,0x3a, +0x44,0x40,0x0b,0xb0,0x29,0x82,0xa2,0x77,0xb2,0xc2,0x51,0x92, +0xc4,0x0a,0x64,0xbb,0xbf,0xb1,0x27,0xc9,0xc0,0x27,0xbf,0x80, +0xc6,0x9a,0x90,0xc6,0x83,0x70,0xc3,0x10,0xec,0xae,0x0c,0x3c, +0x1b,0x6c,0xb4,0x3d,0x6d,0x64,0x80,0x84,0xba,0xc3,0x10,0xba, +0xc3,0x56,0x1c,0xc1,0x71,0x1c,0xc1,0x3b,0xd9,0xc0,0x89,0x0a, +0x21,0xf9,0xeb,0x21,0x75,0xc4,0x28,0x76,0xcc,0x45,0x98,0x80, +0xa4,0xba,0x51,0xbc,0x3d,0x1b,0x8b,0x9b,0xcb,0x9d,0xb1,0x00, +0x1e,0x04,0xfb,0x3e,0x97,0x12,0x12,0x9f,0x1a,0x2a,0x7e,0x9a, +0x46,0xa1,0x12,0xad,0x81,0xbc,0x46,0x6c,0xd4,0x2c,0x86,0xd8, +0x46,0x18,0xac,0x3d,0x85,0xec,0xc0,0xf6,0xdb,0x03,0xad,0x42, +0xc1,0xfe,0x90,0x48,0xff,0xc8,0xa2,0xc8,0x83,0x78,0xc7,0xd6, +0x32,0x01,0x79,0x84,0x00,0x8d,0x3c,0x2d,0x8e,0xc4,0xc1,0x70, +0x69,0xc4,0x9d,0xf0,0xc5,0x9d,0xa0,0xc0,0x89,0x89,0x08,0x8b, +0xac,0x2a,0x8c,0x64,0x9b,0x95,0x44,0x80,0x96,0xe4,0xc6,0xf9, +0x7b,0x48,0x86,0xc4,0x3f,0x9a,0x04,0x47,0xce,0x2a,0x48,0x4c, +0x54,0x9b,0xd0,0xda,0xc9,0x74,0x44,0xbd,0xaf,0xaa,0xaa,0xda, +0xc3,0x41,0x8f,0x04,0x4a,0xd3,0x12,0xca,0x90,0x64,0x12,0xbc, +0x31,0x90,0xb8,0x4b,0xba,0xbe,0x48,0x88,0x85,0xf0,0x0b,0x71, +0x5c,0x1e,0x72,0x94,0x4a,0x73,0xa4,0x4a,0x74,0xbc,0x93,0x76, +0xfc,0xc6,0x1e,0xda,0xca,0x9a,0x50,0xa3,0x6d,0x3c,0x88,0x41, +0x0a,0xaf,0xcf,0xf2,0x8b,0xb1,0x2c,0xaf,0xb2,0x3c,0x1b,0x8d, +0x04,0xc1,0xa1,0x74,0x47,0xa3,0xec,0x20,0xfa,0xf3,0x41,0x00, +0x48,0x00,0xba,0xac,0xcb,0x3d,0x33,0x42,0x82,0x58,0x00,0xbd, +0xdc,0x4b,0x82,0xf0,0x05,0xbf,0xfc,0x4b,0x82,0x28,0x0f,0xc1, +0x54,0x00,0x82,0xa0,0x02,0xc3,0x3c,0x4c,0x82,0x70,0x00,0xc5, +0x5c,0x4c,0x82,0x08,0x01,0xc7,0x7c,0x4c,0x82,0x30,0x3d,0xd0, +0x23,0x88,0x40,0xa8,0x4c,0xcb,0x24,0x88,0x06,0xc8,0x4c,0xcd, +0x24,0x88,0x62,0xe8,0x4c,0xcf,0x3c,0x08,0xf5,0xd0,0x90,0x40, +0xca,0x38,0x87,0xf8,0x88,0x1f,0xba,0x93,0x11,0x8c,0x4b,0x11, +0x54,0x9b,0xd4,0x6c,0xcb,0xac,0x44,0xc8,0xd9,0xbb,0x43,0x0b, +0x2b,0xca,0xae,0xcc,0x3d,0xd9,0x44,0x45,0xd4,0xbb,0xa3,0x11, +0x53,0xa3,0x10,0x93,0x1e,0x5a,0x02,0xb1,0xff,0xb6,0x98,0x43, +0x70,0x44,0xb1,0x59,0x84,0x80,0xfc,0xab,0xc5,0xe1,0xa4,0x8e, +0x3b,0x3c,0xce,0xb9,0xac,0x4b,0xba,0xbc,0xcb,0x05,0xcc,0xcb, +0xbd,0xd4,0xcb,0xbe,0xfc,0x4b,0xbf,0x0c,0xcc,0xc1,0x24,0x4c, +0x00,0x38,0x4c,0xc4,0x04,0x80,0xc5,0x64,0x4c,0x00,0x78,0x4c, +0xc8,0x04,0x00,0xc9,0x64,0x00,0xca,0xb4,0xcc,0xca,0xc4,0x4c, +0xcd,0xcc,0x4c,0xce,0xf4,0xcc,0xce,0x3c,0x1b,0xf2,0xc0,0x03, +0x3c,0x30,0x0f,0xfe,0x80,0xb4,0x2f,0x84,0xb4,0xa5,0x58,0x8a, +0x86,0x60,0x43,0xe3,0x1c,0x4a,0xdb,0x84,0xc3,0xfe,0x0c,0xc9, +0xd8,0x04,0xa4,0x5c,0x94,0x4d,0x42,0x32,0x43,0x3c,0x2c,0x4e, +0x3e,0x2c,0xca,0x0f,0xd4,0xc2,0x34,0x92,0x08,0x51,0x43,0xa3, +0x07,0x05,0x43,0x3d,0x04,0x47,0xc3,0x58,0xce,0x10,0xac,0x50, +0x36,0xc3,0x50,0xdb,0x6b,0x4e,0xe7,0x84,0xce,0xba,0x02,0x80, +0xe9,0xa4,0x4e,0x00,0xb0,0xce,0xeb,0x04,0x80,0xec,0xd4,0x4e, +0xee,0x34,0xcc,0xc4,0xfc,0x4e,0x07,0x68,0x4c,0xf1,0x0c,0x81, +0xc8,0x94,0xcc,0xf3,0x44,0x4f,0xf5,0x5c,0xcf,0xf6,0x74,0xcf, +0xb3,0x51,0x00,0x3c,0x08,0x86,0x60,0x98,0x4f,0x0d,0xd1,0x27, +0x04,0x70,0x83,0x82,0x50,0x80,0x38,0x90,0x07,0x79,0x88,0x03, +0xc2,0x6c,0xa1,0xb8,0x6c,0xc7,0x17,0x6c,0xd2,0x5c,0x5c,0x1f, +0x18,0x5c,0xcd,0x4d,0xa3,0xc1,0xda,0xa4,0x52,0x89,0xc8,0xa1, +0x15,0x14,0x9d,0x0c,0x34,0x8a,0x0d,0x14,0xb5,0x2e,0x1d,0x89, +0x0d,0x9c,0x41,0xd4,0x6b,0x35,0x95,0xec,0xcf,0x55,0x2b,0x53, +0xff,0xa3,0x68,0xcd,0x81,0x70,0xce,0xe7,0xec,0x1f,0xbc,0x14, +0xd1,0x11,0xad,0x4e,0xeb,0xc4,0xce,0xc1,0x2c,0xcc,0x15,0x6d, +0xd1,0xef,0x84,0x51,0xf1,0x9c,0x51,0xd3,0xab,0xd1,0xcb,0x04, +0x80,0xf5,0x64,0x4f,0x00,0x70,0xcf,0xf7,0x7c,0x8f,0x1e,0xfd, +0x51,0xf6,0x70,0x89,0xa9,0xb2,0xaa,0x82,0x40,0x81,0x3b,0x78, +0x87,0x77,0xb8,0x03,0x14,0x88,0x0c,0xd1,0x81,0xd2,0x76,0x14, +0x35,0x4c,0xcd,0xc5,0x19,0x54,0xb7,0xf7,0x69,0x1f,0x09,0x81, +0x34,0xf1,0x1b,0xbf,0x0d,0x34,0xbf,0x51,0x4d,0xbf,0x5a,0xda, +0xbf,0xf5,0x53,0xd5,0x73,0x73,0xd3,0x04,0x00,0xd1,0x96,0x92, +0xd3,0xe9,0xa4,0x53,0xc0,0x44,0xd1,0xec,0xc4,0x53,0xee,0xd4, +0x53,0xf0,0x8c,0x51,0x19,0x25,0x4f,0x1a,0x05,0x00,0xf4,0x4c, +0x4f,0x41,0x1d,0xd4,0x1c,0xfd,0x4c,0x08,0x88,0xcf,0xf9,0xdc, +0x8f,0xe3,0x10,0x21,0xd2,0x01,0x80,0x75,0x80,0xd4,0x89,0x50, +0xd6,0x30,0xb4,0x3d,0xa3,0xc8,0x3d,0x3e,0xca,0xd0,0x91,0xc8, +0x3d,0xd7,0xe9,0xbd,0x45,0xfb,0x3d,0x92,0x93,0x9e,0x6f,0xad, +0xc5,0xcf,0x0b,0xbd,0xd1,0xb3,0x8b,0xd2,0x23,0xd7,0xdc,0x04, +0xb9,0x6e,0x0d,0xb9,0x70,0x15,0x39,0x57,0x85,0xd5,0x24,0x1a, +0xd1,0x05,0xa0,0xd5,0x13,0x4d,0x51,0x5c,0xed,0x4e,0x17,0x7d, +0xd1,0xf0,0x8c,0x51,0x3f,0x0d,0x3d,0x40,0x15,0xd6,0x41,0x6d, +0x80,0x62,0x7d,0x4f,0xf8,0x84,0x0f,0x01,0x59,0x9e,0x2b,0x5b, +0x1e,0x05,0xb8,0x03,0xc7,0xb9,0x03,0x05,0x48,0x15,0xbc,0x23, +0x3a,0xb6,0xd9,0x3b,0xff,0xba,0xa3,0x58,0xbe,0xe3,0x3f,0xa6, +0xfb,0x9a,0x8c,0xb5,0xd8,0xb1,0x71,0x1b,0xb7,0x59,0x4a,0x70, +0x69,0x4a,0xbf,0x38,0x88,0x3b,0xe1,0x04,0x8c,0x38,0x0d,0xa7, +0xf4,0x9a,0xcc,0xb0,0x8e,0xb5,0x60,0x59,0xb2,0x88,0x10,0xc7, +0xe0,0x97,0x8e,0x91,0x59,0x11,0x79,0x91,0x94,0xe9,0x17,0x37, +0x21,0x90,0x6f,0x91,0xd9,0x9c,0x3d,0x9a,0x37,0x61,0x8b,0x8f, +0x20,0xa3,0x83,0xec,0xa9,0xd0,0xd8,0xc2,0xa1,0x05,0xc8,0xa2, +0x4d,0xa3,0xa3,0x7d,0xc6,0xa4,0x15,0x5a,0xa5,0x4c,0x0b,0x9e, +0xa5,0x09,0x9a,0xc0,0x96,0xa9,0x95,0x91,0x4d,0x81,0x11,0x84, +0x39,0x97,0x10,0x41,0x90,0xac,0x09,0x91,0x9b,0xb5,0xd9,0xed, +0xd0,0x95,0x3b,0x69,0xda,0x31,0xb2,0x46,0xa2,0x85,0x4a,0xa5, +0x5d,0xda,0x7a,0xa2,0x8a,0xb4,0x7d,0xda,0x69,0x64,0x5b,0xa1, +0x55,0xdb,0x7d,0x99,0x09,0x42,0xb1,0x18,0x5c,0x91,0x2f,0x13, +0x39,0x14,0x61,0xd1,0x14,0x90,0xb9,0x95,0x7a,0xd9,0x5a,0x05, +0x89,0x5a,0x38,0x71,0x18,0x65,0x01,0x19,0xb4,0xe1,0x8a,0xb4, +0x1d,0xc8,0xa5,0x70,0x89,0xc3,0x85,0xdb,0xb2,0x95,0xc6,0xc5, +0x5d,0xd6,0x9e,0x40,0xdb,0xb8,0x55,0xdc,0x54,0xb1,0x8f,0xc9, +0x0d,0xda,0xc7,0xb5,0xdc,0x71,0xa1,0x5b,0xb8,0x31,0x16,0xa9, +0xad,0x14,0x94,0x51,0x14,0xb1,0x25,0x9a,0x18,0x09,0x8f,0xaa, +0xd5,0xd9,0x31,0x19,0x99,0xd1,0x8d,0x92,0x19,0xb9,0x97,0xc9, +0xc8,0xcf,0xb3,0x71,0xdc,0x85,0xe0,0x43,0x7c,0x72,0xbf,0x82, +0x90,0x5d,0xc4,0xad,0xdc,0xdb,0x0d,0x3a,0xff,0x82,0xd0,0x5d, +0xda,0xa5,0x03,0xdb,0xe5,0x27,0xdc,0xfd,0xdd,0xc5,0xdd,0xdd, +0xcd,0xed,0x5d,0xb7,0x05,0x5c,0xa8,0x7d,0xdd,0x92,0xb1,0x18, +0x78,0xd1,0x5a,0xdd,0x10,0x91,0xa7,0xf9,0x8d,0xaa,0xc9,0x5b, +0x78,0x69,0x10,0xbd,0xed,0x18,0xa8,0xf9,0xd8,0x7e,0xd9,0x0d, +0x89,0x10,0x88,0x0c,0x81,0x80,0x1d,0x90,0xdd,0xaf,0x11,0xdf, +0x0c,0x29,0xdf,0xc8,0x4d,0x3a,0xf4,0xad,0x10,0xf5,0xbd,0x5c, +0x74,0x6b,0xdf,0x08,0x79,0x5f,0xb2,0xf0,0xde,0x78,0x61,0x98, +0xbb,0xa5,0x5b,0x91,0x39,0x97,0x85,0xc9,0x59,0x96,0xe1,0xd9, +0xfb,0xdd,0x5b,0x91,0x11,0x18,0xec,0x65,0x10,0xed,0x10,0x5b, +0x67,0x5d,0x0a,0x08,0x51,0x87,0xfc,0xec,0x11,0x07,0x06,0x0c, +0x08,0x80,0x10,0xdf,0x4d,0xe0,0x75,0x58,0xe0,0x06,0x06,0x0a, +0xa0,0x80,0x60,0x09,0xe6,0x8f,0xfc,0xb4,0xe0,0xfc,0xc4,0xe0, +0x06,0x86,0x88,0x0d,0x26,0x15,0x05,0x7e,0x88,0x0b,0xd6,0xcf, +0x10,0x8e,0xe0,0xe2,0x15,0x94,0x6f,0xb1,0x5e,0x86,0x21,0x5d, +0x2f,0xd1,0x15,0x49,0xa1,0xdb,0x16,0xf6,0x5a,0xe6,0xe5,0x99, +0x9e,0xa9,0x5e,0x6c,0x69,0x9a,0xaa,0x45,0x60,0xf9,0x49,0x0e, +0x14,0x8e,0x08,0x07,0x26,0x0e,0xf3,0x4d,0xd9,0xcd,0x08,0x62, +0x22,0x19,0x0d,0x21,0x5e,0xdf,0x6c,0x8b,0x88,0x23,0xf6,0x91, +0x24,0x26,0x62,0x26,0x5e,0x3a,0x20,0x86,0xe2,0x21,0x16,0x89, +0x22,0xe6,0x09,0xfb,0x0d,0x9b,0x8b,0xd5,0x19,0x1c,0x46,0x13, +0x9b,0x68,0x9a,0x8e,0x95,0x1b,0xbd,0x53,0x9e,0xdd,0x50,0x10, +0xff,0xfd,0x04,0x85,0xe4,0x58,0x0d,0x36,0xde,0x0c,0x88,0x50, +0xe3,0x09,0x36,0x5e,0x08,0x20,0x86,0x35,0x86,0x88,0x36,0x5e, +0x0d,0x3a,0x8e,0xe3,0x04,0x86,0x80,0x2d,0xa8,0xe3,0xea,0x70, +0x63,0x88,0xe8,0x63,0x3d,0xd6,0xcf,0x40,0xf0,0xe3,0x3b,0x86, +0x88,0x42,0xd6,0x63,0xa1,0xb1,0x5e,0x85,0xa1,0xd9,0xd6,0x5d, +0x64,0xbc,0xc5,0x1a,0x3a,0x4b,0x91,0x13,0x79,0xe4,0xce,0x65, +0x61,0x9d,0x05,0xe0,0xb3,0x81,0xe3,0x08,0x51,0x63,0x21,0xc9, +0xe3,0x08,0xa1,0x63,0x21,0x11,0xe4,0x08,0xe9,0x63,0x21,0x49, +0xe4,0x08,0x29,0x64,0xd8,0x8d,0xda,0x1e,0x1e,0x14,0x67,0xa1, +0xbb,0xae,0x9d,0x91,0xbb,0x05,0x9a,0x1d,0xce,0x89,0x5e,0x61, +0x98,0x5b,0xde,0x14,0x57,0x76,0x64,0x9d,0x8d,0x95,0x2d,0x66, +0xe5,0x34,0xf1,0x0b,0x3a,0x06,0x05,0x62,0x86,0x00,0x79,0x90, +0x54,0x79,0x80,0x00,0x62,0x56,0x63,0x51,0xfe,0x1b,0x35,0x5e, +0x66,0x63,0x46,0x66,0x65,0x2e,0x66,0x4f,0xfe,0x9b,0x42,0xde, +0x02,0x6c,0x86,0x80,0x76,0x48,0x87,0x74,0x68,0x07,0x3e,0xce, +0x66,0x55,0xfe,0x9b,0x3e,0xc6,0xe6,0x3e,0xde,0xe6,0x6e,0xfe, +0xe6,0x71,0x66,0x92,0x56,0xde,0x5a,0x2e,0xf6,0xdc,0x1d,0xa6, +0x5a,0x79,0x71,0xde,0xae,0x6d,0xe7,0x41,0x49,0x91,0x59,0xc6, +0x16,0x7c,0x66,0xe7,0x1b,0xb6,0x5a,0x46,0xc6,0xe7,0xd4,0x3d, +0x9b,0x61,0x06,0x05,0x3a,0x7e,0x07,0x24,0x7d,0x87,0x39,0x2e, +0xe6,0x66,0xf6,0x93,0x67,0x16,0x68,0x08,0x20,0xe8,0x63,0x3e, +0xe8,0x67,0x76,0x5b,0xff,0x08,0xb8,0xe6,0x2d,0x28,0xe4,0x6e, +0xde,0xe6,0x89,0x06,0x67,0x89,0x1e,0xe7,0x8a,0x86,0x80,0x8b, +0x4e,0x87,0x8c,0x4e,0x67,0x16,0x16,0x96,0x5c,0x09,0x13,0xfd, +0xa5,0xb3,0x1d,0xae,0xda,0x62,0xa9,0x59,0xe7,0x0d,0x60,0x94, +0x26,0x69,0x59,0xe6,0xe2,0xb9,0x9b,0x67,0xba,0x0b,0x1a,0x13, +0x09,0x1b,0x9a,0x56,0x66,0x65,0x26,0x06,0x3a,0x3e,0x66,0x82, +0x9e,0x63,0x62,0x88,0xe8,0x4f,0xde,0xe9,0x9e,0x96,0x66,0x9e, +0x66,0xe6,0x8d,0xe6,0xe3,0xca,0xd4,0x66,0x6e,0xf6,0xe6,0xca, +0x14,0x69,0x6b,0x56,0xea,0x42,0x36,0x67,0xa7,0x0e,0x84,0x3e, +0x0e,0x67,0xd7,0x25,0xe9,0xba,0xad,0x5b,0x9a,0x0e,0x66,0x77, +0x73,0xe1,0x5c,0x26,0x18,0x01,0x6e,0xe9,0x2d,0x71,0x97,0x37, +0xd1,0x64,0x00,0xb6,0xe4,0x79,0xa6,0xe9,0x4d,0x06,0xea,0x81, +0x2e,0x68,0xb7,0xd6,0xe9,0xa1,0xe6,0xe9,0xb7,0x7e,0x68,0xba, +0x9e,0xe3,0xa4,0xb6,0x4c,0x8f,0x6e,0x07,0x8c,0xd6,0x6b,0x53, +0x8e,0x6a,0xbd,0xfe,0xe8,0x89,0x5e,0x6a,0xac,0x76,0xdd,0x04, +0xd9,0x6a,0x8c,0x89,0x19,0x47,0x0e,0xe3,0x34,0x09,0x66,0x78, +0xd6,0xea,0x7c,0x86,0x94,0x17,0x76,0xe9,0x02,0xbe,0xdf,0x5e, +0xc6,0x19,0x9b,0x61,0x6b,0xb3,0xc1,0x6b,0xba,0x06,0x65,0xb7, +0xa6,0xe3,0x84,0x86,0x2e,0x66,0xbe,0x6b,0x89,0xe8,0x6c,0xb9, +0x06,0x6c,0xbd,0x96,0x08,0xf4,0x9c,0xe8,0xbc,0x4e,0xed,0x88, +0x58,0xed,0xbf,0x66,0x61,0x19,0x46,0x99,0xaf,0xee,0x94,0x86, +0x69,0xe5,0x93,0xb6,0x6d,0xc8,0xc6,0x1a,0xff,0xd1,0x3d,0x69, +0x99,0x7e,0xe7,0xcb,0xce,0x6a,0xd4,0xf5,0x94,0x88,0x00,0xed, +0xce,0x3e,0x6e,0x9e,0xc6,0xeb,0x29,0xce,0xb6,0xd1,0x46,0x6e, +0xd3,0x56,0xe3,0xe5,0x46,0xb7,0x42,0x0e,0x56,0xea,0x9e,0x6e, +0xa0,0x60,0xdc,0x88,0xb8,0xea,0xea,0x86,0xed,0xeb,0x8e,0x98, +0x86,0x01,0x1a,0xc6,0xa6,0x65,0x30,0x46,0x90,0x6c,0x11,0xef, +0xf1,0x7e,0xba,0x9a,0x2e,0x6f,0x9b,0x76,0x3a,0xf6,0x66,0x09, +0x8f,0xdd,0x8d,0x0f,0x1e,0xed,0xe2,0x48,0x6e,0x4e,0xe6,0x60, +0xfd,0x34,0xee,0xf9,0x06,0x6d,0x91,0xfd,0x60,0xed,0x2e,0x8e, +0xa5,0x26,0x65,0xfb,0x76,0x88,0xe9,0x46,0x65,0xa3,0x20,0x6c, +0x91,0x45,0xe9,0x8d,0xe1,0xed,0x03,0xa6,0xe4,0x12,0x71,0xb7, +0xaf,0xe6,0x67,0x5e,0xb6,0xda,0xb3,0x26,0x91,0x99,0x9d,0xf0, +0x0a,0xe7,0xde,0xd1,0x1d,0x09,0xf9,0x76,0x1c,0x8d,0x70,0x1c, +0xa0,0xd6,0xe9,0x2c,0x5e,0x3a,0xfc,0xe6,0x70,0x8c,0x10,0x9d, +0xe4,0xa6,0xe3,0x10,0xc7,0xd8,0xfe,0x26,0x71,0x0f,0xff,0xef, +0x0c,0x76,0x8f,0x01,0xb7,0x88,0x8c,0x68,0x71,0xeb,0x4e,0xf1, +0x00,0x7e,0x39,0xe8,0xcd,0x5b,0xc7,0xee,0x95,0x9a,0xdd,0x71, +0x57,0x2e,0x6b,0xf0,0xd6,0x71,0x20,0xcf,0x67,0xfc,0x1d,0xee, +0x17,0xe6,0x71,0x8d,0x41,0x0b,0x1a,0xc6,0xf1,0x22,0x57,0x8b, +0x0f,0xc6,0xef,0x0e,0xcf,0x88,0x0f,0xf7,0x6c,0x12,0x76,0x08, +0xf9,0x8e,0x72,0x8d,0xf8,0xf0,0xfa,0xae,0x72,0xd6,0x5e,0x6a, +0x2c,0x17,0x08,0x03,0x5f,0x61,0xfe,0x1e,0x6c,0xf2,0x2d,0xf1, +0xff,0x2c,0x77,0xf1,0x15,0x46,0x72,0xbb,0xbd,0xdb,0x02,0x0e, +0x5d,0x63,0x69,0xec,0x9c,0xfd,0xe7,0xca,0x06,0xee,0x7c,0x4e, +0x5d,0x39,0x7f,0xec,0xac,0x91,0x73,0x1a,0x3b,0x19,0x12,0x99, +0xec,0xa1,0x2a,0xed,0x0f,0x77,0x9c,0x8b,0xf0,0xf0,0x13,0x7f, +0x71,0x8d,0xdd,0x70,0x0e,0x27,0xf4,0x61,0x36,0x74,0xa7,0x8c, +0x71,0x41,0x2f,0x71,0x32,0x2f,0x64,0x1b,0x97,0x9f,0x15,0x4f, +0x74,0xd1,0x71,0xf1,0x49,0x9f,0xda,0x25,0xd7,0x6a,0xf9,0x82, +0x73,0x7d,0x0e,0x5d,0x79,0x1e,0x5d,0x4d,0x67,0xe9,0x98,0x8e, +0xec,0xad,0x95,0xe5,0xdd,0x56,0x70,0x8b,0xb1,0xed,0x56,0xb6, +0x89,0x34,0x86,0x80,0x65,0xa0,0xe3,0x93,0x80,0x74,0x62,0x58, +0x06,0x9d,0x1e,0x64,0x87,0xa0,0xe3,0x58,0x27,0xdf,0x19,0x37, +0x71,0x5b,0x07,0x65,0x97,0xd0,0xcf,0x3e,0x5e,0x85,0x42,0x9e, +0xf5,0x16,0x5f,0x05,0x3e,0x5e,0x61,0x39,0x2e,0x64,0x62,0xe7, +0xf5,0x28,0x9f,0x68,0x64,0x47,0xe5,0xac,0xae,0xe9,0x3d,0x0f, +0xeb,0x39,0x6f,0xf3,0x35,0x8f,0xe1,0x1f,0xbf,0xe7,0xbc,0x0d, +0x6b,0xc4,0x56,0xdd,0xd6,0xd5,0xf3,0x76,0xb1,0x5b,0x59,0x6e, +0xf5,0x3b,0x51,0xe3,0x65,0xb0,0xf5,0x93,0xe0,0x70,0x58,0xb7, +0xf5,0x6a,0xf6,0x13,0x5d,0x57,0xf7,0x41,0xbf,0x88,0x76,0xc7, +0xeb,0x51,0x86,0x80,0x55,0x40,0xf6,0x75,0xa7,0xf7,0x7c,0x4f, +0xf6,0x53,0xc6,0x77,0x7d,0x9f,0x77,0x81,0xe8,0xf7,0xc2,0x8e, +0x09,0x5d,0x16,0x72,0x37,0xf7,0xe7,0x83,0x1f,0x75,0x4f,0xb7, +0xec,0x7e,0x4e,0xf8,0xff,0xca,0x5e,0x67,0x3c,0x67,0x72,0x17, +0xd6,0x14,0xbb,0x45,0x11,0x3f,0xaf,0x91,0x88,0x48,0xf7,0x32, +0x1f,0x74,0x81,0xe0,0xf8,0xe5,0x75,0x1f,0x8e,0xef,0xf0,0x93, +0xa8,0xf7,0x90,0x8f,0x88,0x7e,0x27,0x79,0x7e,0x47,0xf6,0x93, +0x07,0xf8,0x8e,0x2f,0xf9,0x7e,0x77,0x5b,0x54,0x6f,0xf5,0x4e, +0x87,0xe9,0x7a,0x46,0x75,0x09,0xef,0xf3,0x58,0xd9,0x74,0x85, +0x0f,0x75,0xfd,0x1d,0x75,0x4e,0x79,0x5d,0x9a,0x37,0xeb,0xfc, +0x65,0xeb,0x0c,0x59,0x59,0x98,0x15,0x8f,0xa4,0xe7,0x89,0xa3, +0xdf,0x89,0x62,0xa9,0xd8,0x8a,0x0d,0xf2,0xb0,0x79,0xf3,0xa7, +0x4f,0x6f,0x2f,0xf9,0x58,0x5a,0x56,0x6f,0xab,0x9f,0x0c,0xf1, +0xa6,0xfa,0xf0,0x7e,0x7a,0xad,0xd7,0xfa,0xf3,0x06,0x59,0xb2, +0x97,0xed,0x06,0x6f,0xe9,0x48,0x96,0x11,0x05,0xbf,0xe9,0x38, +0xff,0x17,0xb6,0xbf,0xe9,0x08,0xc7,0xf1,0x9c,0x97,0x64,0x92, +0xb1,0x5e,0xb4,0x2e,0x7b,0xbc,0x27,0x0b,0x6b,0xb7,0x76,0x84, +0xef,0xf3,0x57,0xb6,0xf8,0x21,0xef,0x76,0xa2,0x1f,0x7a,0x4e, +0xb9,0xe7,0xa9,0x2d,0x6b,0xa2,0x07,0x5d,0xf7,0xfe,0xe7,0x77, +0xc9,0x7b,0xc7,0x37,0x60,0x4e,0x27,0x7a,0x6c,0x9f,0x6c,0x6f, +0x91,0x7c,0xc1,0x8f,0x7c,0xfe,0x8d,0xe7,0x3c,0x97,0x17,0xae, +0x06,0xdd,0x24,0x37,0x78,0x5f,0x19,0xe0,0xc7,0x1f,0x7d,0x5f, +0x7e,0x6c,0x85,0xcf,0xdf,0xa2,0x5f,0xf0,0xdd,0x06,0x75,0x8c, +0xdf,0xf3,0xc4,0xe6,0xea,0x79,0xf1,0xed,0x6b,0xaf,0x7b,0x87, +0xcf,0x61,0x9a,0x21,0x7d,0xdc,0xaf,0x79,0xff,0x50,0xd7,0x7c, +0x57,0xa6,0x76,0x82,0xa9,0x73,0xde,0x4f,0x13,0xdb,0xe6,0xe7, +0x1b,0x96,0xfd,0xd9,0xa7,0xfd,0xe3,0xc7,0x7d,0xe5,0x07,0x5c, +0x6d,0x9f,0xe5,0x59,0xa6,0x64,0x87,0x37,0x77,0x6c,0xef,0xed, +0x55,0x3f,0x99,0x93,0xf9,0x74,0xb6,0xbe,0x73,0x9c,0xad,0xfd, +0xe5,0xef,0x7e,0x7d,0x6e,0x64,0xe9,0x8d,0xe7,0x49,0xf6,0x7c, +0xd8,0x9f,0x17,0x62,0x79,0x67,0x37,0xe7,0xf6,0xe9,0x47,0xfb, +0x13,0x49,0x99,0x52,0xf7,0x7e,0xf8,0x87,0xfa,0xee,0x05,0x19, +0xaf,0xb7,0x7a,0xf4,0x36,0x6f,0xdb,0x97,0xbb,0x9c,0x39,0x63, +0x44,0xe1,0x7f,0xf3,0x06,0x08,0x04,0x02,0x11,0x00,0x28,0x68, +0xb0,0x20,0x41,0x00,0x03,0x13,0x1e,0x3c,0xf8,0xe0,0x21,0xc4, +0x07,0x0d,0x21,0xac,0xa3,0xd8,0xd0,0x20,0x45,0x8b,0x17,0x37, +0x16,0xcc,0xb8,0x8e,0xa3,0x47,0x8e,0x20,0x2b,0x7e,0xdc,0x18, +0x52,0xe4,0xc5,0x93,0x29,0x49,0xa2,0x6c,0x09,0x20,0x41,0x82, +0x86,0x30,0x5f,0xc6,0x2c,0x38,0x73,0xe6,0xc1,0x9a,0x06,0x75, +0xbe,0xdc,0xc9,0xd3,0xe6,0x4f,0x9f,0x32,0x83,0xba,0x2c,0x6a, +0x34,0xe7,0x41,0x92,0x19,0x2f,0x2a,0xad,0x68,0xb4,0x29,0x04, +0xa6,0x1e,0xa3,0x16,0x85,0x2a,0x55,0xe9,0xd3,0xa9,0x57,0x97, +0x1e,0xcd,0x09,0x93,0x27,0xcc,0x00,0x61,0x81,0x8a,0x4d,0x10, +0x00,0xe8,0x57,0x9b,0x3d,0x7b,0x9e,0x8d,0x29,0x76,0xe8,0x59, +0xb8,0x71,0x85,0xee,0xac,0x8b,0xb4,0xeb,0x51,0xb7,0x06,0xad, +0x36,0xe4,0xeb,0xd2,0xef,0x5e,0xad,0x55,0x05,0x27,0x25,0xdc, +0xff,0x12,0x70,0x41,0xc4,0x79,0xbf,0xce,0x0d,0x3b,0xf6,0x2b, +0x64,0x9a,0x62,0x03,0x50,0x56,0xfb,0x36,0xae,0xd9,0x97,0x73, +0x6d,0x6e,0x96,0xdc,0x19,0x28,0x52,0xbd,0x3b,0x3f,0xe3,0xdd, +0x28,0x1a,0x00,0x84,0xd4,0xaa,0x57,0xb3,0x8e,0xb4,0xe3,0x28, +0xeb,0xd8,0xab,0x5d,0xc3,0x96,0x2d,0x9b,0xb6,0x51,0xdb,0xb7, +0x5f,0x97,0xf6,0x39,0xd6,0x60,0xe5,0xca,0x92,0xc3,0xb6,0x8d, +0x0c,0xfc,0x74,0xda,0xcd,0xa7,0xc9,0x72,0xfc,0x6d,0xd9,0x37, +0x4e,0x91,0x90,0x89,0xca,0x04,0x30,0x17,0x02,0x28,0x50,0xc4, +0x88,0x65,0xdf,0xde,0x9d,0x3b,0xa8,0xd5,0x45,0x21,0x78,0xd7, +0x0e,0xbe,0xfc,0x76,0xf1,0x2e,0x21,0x6c,0xd9,0x12,0x28,0x50, +0xfb,0xf7,0xf1,0xe1,0x6f,0x51,0xdf,0x12,0x82,0x7c,0xf7,0xf4, +0xf3,0xbf,0xb7,0xdf,0x9b,0x38,0x4a,0xd3,0x45,0x37,0x59,0x74, +0x6e,0xd5,0x64,0x60,0x4c,0x3c,0x7d,0xe6,0x1c,0x5c,0x75,0xfd, +0x34,0x99,0x70,0x34,0x5d,0x44,0x19,0x85,0x01,0x5a,0x87,0x91, +0x6e,0xb1,0xa9,0xa3,0x0e,0x04,0x99,0xa8,0x26,0x52,0x86,0x1a, +0x72,0xe8,0x61,0x6a,0x20,0x86,0xb8,0xda,0x86,0x1d,0x7e,0x08, +0xd2,0x89,0xaa,0xa5,0x48,0x22,0x55,0xa5,0x45,0x28,0x9d,0x59, +0x00,0x4e,0x57,0x99,0x81,0x3d,0x65,0x26,0x21,0x69,0x5e,0x99, +0x66,0x16,0x66,0x17,0xfe,0xb4,0xa3,0x4f,0x3d,0x0e,0x85,0xd4, +0x66,0x10,0x2c,0xb3,0xe4,0x76,0x4d,0x96,0x17,0xde,0x86,0x15, +0x65,0x32,0xa5,0x87,0x20,0x2d,0xb9,0x8c,0x93,0x4d,0x66,0x07, +0xa5,0x3a,0x52,0x52,0xff,0x19,0xe3,0x44,0xab,0x88,0xf9,0x1e, +0x99,0xf9,0xd5,0x17,0x65,0x87,0x5f,0x82,0x24,0xe6,0x2a,0x65, +0x92,0xd9,0xde,0x99,0x5d,0xa6,0x39,0x25,0x98,0x46,0x45,0x17, +0x60,0x8d,0x44,0x42,0xd8,0xd6,0x85,0x6c,0xd1,0xe4,0x58,0x51, +0x77,0x7a,0x76,0xd0,0x5c,0x9d,0x29,0x07,0x64,0xa0,0x3b,0x2e, +0x87,0x1a,0x93,0x59,0x6a,0x09,0xe5,0x3a,0x5e,0xd2,0x69,0x25, +0x96,0x8e,0x96,0x07,0x41,0x97,0x92,0x56,0x69,0xd2,0x98,0x6e, +0xbe,0x79,0x66,0xa4,0x73,0x6e,0x9a,0x52,0xa7,0x9e,0xd2,0x87, +0x69,0xa8,0x54,0x8e,0xda,0xd5,0x8c,0x22,0x05,0x67,0x28,0xa1, +0xb1,0x16,0x44,0xe1,0x59,0x46,0x12,0x6a,0xa8,0xad,0x2d,0xb5, +0x8a,0x52,0x84,0x9f,0xd9,0x96,0x25,0xa4,0x15,0xd1,0xa1,0xa6, +0x49,0xb2,0x01,0x8b,0xaa,0xb0,0xc4,0xa6,0x24,0x9b,0x9b,0xa0, +0x26,0x3b,0x69,0xb1,0xb1,0x35,0x8b,0x2c,0x04,0xc3,0x42,0xdb, +0x9c,0xa0,0x12,0x42,0xa7,0x93,0x80,0x5e,0x1d,0x38,0x9d,0xb7, +0xdf,0x82,0xfb,0x27,0x58,0xc6,0xf5,0xa6,0x2d,0x8d,0x17,0x99, +0x0b,0xc1,0x0e,0xed,0x9a,0xb1,0x83,0x19,0xe4,0x11,0xc3,0x1a, +0x87,0xc2,0x5a,0x5b,0x27,0x46,0xed,0xc2,0x0b,0xaf,0xbc,0xf4, +0x66,0x44,0xc7,0xbd,0x20,0xe9,0xfb,0x6e,0xbc,0xfd,0xa1,0xf8, +0x6f,0xc0,0x26,0x0d,0xcc,0xaf,0xc1,0x2e,0x22,0x7c,0xad,0xba, +0xd6,0xdd,0xc9,0x18,0x59,0x94,0x0d,0x58,0x96,0x70,0x90,0x15, +0x47,0x2b,0x66,0x40,0xe2,0xe8,0xb1,0x63,0x20,0x57,0x5c,0x16, +0x5d,0x3e,0xaa,0x8b,0x28,0x9e,0x5e,0x59,0xff,0x5c,0x13,0xbb, +0x66,0xb8,0xcc,0xef,0xbc,0xef,0xc8,0x23,0x73,0x6a,0x15,0x55, +0x0b,0xf0,0xaa,0x07,0xb5,0xfc,0x72,0xbc,0x31,0xcf,0x2c,0x4f, +0xcd,0xa9,0x01,0x3c,0x2c,0xbe,0x1d,0xc1,0xcb,0x33,0x7e,0x10, +0xa4,0xd3,0xce,0xd2,0x41,0xdf,0x4c,0xb4,0xc0,0x2e,0x13,0x9c, +0xf4,0xd2,0x4d,0x67,0xf4,0x74,0xce,0x45,0x82,0xa6,0xf5,0xac, +0xc5,0x11,0x09,0xe0,0x70,0x99,0x75,0x3b,0xe8,0xad,0x9e,0xa5, +0xa5,0x99,0x64,0xcc,0xa5,0xad,0xb2,0x5c,0xdb,0x1e,0xc9,0xdc, +0x58,0x10,0xbc,0x7b,0xf4,0x0e,0xe4,0x41,0xf0,0xf3,0x3b,0x98, +0x22,0x0c,0x70,0xd1,0xa8,0xcd,0xfd,0xb2,0xdd,0x78,0xeb,0x6d, +0x2f,0xdf,0x20,0xfd,0xfd,0x6e,0xd2,0x4c,0x33,0x3d,0xf8,0xd3, +0x74,0xf4,0x2d,0xb7,0xbb,0x88,0x07,0x02,0x81,0xe2,0xe9,0x30, +0x3e,0xb4,0xe3,0xd8,0x76,0xdc,0x18,0x91,0xe4,0x66,0x7c,0x36, +0x71,0xbf,0xd1,0x7a,0xd3,0xb8,0x45,0x76,0x3c,0xd3,0xe9,0x14, +0x77,0x3d,0xe1,0xa1,0xad,0x72,0xfc,0xb6,0x75,0x18,0x9f,0xd5, +0xb2,0xbb,0x75,0xcf,0x2b,0x78,0xbd,0x8d,0x3f,0xbe,0xef,0xbe, +0x81,0xcb,0x9c,0x77,0xee,0x98,0xef,0xfe,0x77,0xdd,0x93,0x57, +0x7e,0xf9,0xd0,0xc3,0xd7,0x9e,0x78,0xd5,0xc8,0x17,0xfe,0xe3, +0xe6,0x5c,0x7b,0xbe,0xd9,0xca,0xe4,0x9e,0xad,0x32,0x71,0x24, +0x57,0x6c,0x99,0xb9,0x14,0xfe,0x96,0x2d,0xf8,0x43,0x9a,0xbb, +0x3d,0xf9,0x72,0x4b,0x0d,0x33,0x04,0xbf,0x03,0x7d,0xb5,0xf0, +0x86,0x9f,0xdf,0x73,0xfa,0x3f,0x3b,0xdd,0xbe,0x49,0x52,0x4f, +0xff,0x3d,0x79,0xd5,0xed,0xcc,0x9f,0xbc,0xfb,0x48,0xe3,0xaf, +0xf8,0xfe,0x9e,0xf7,0x23,0xce,0x70,0xee,0x74,0x15,0x42,0xd7, +0x58,0xbc,0x07,0xa4,0x02,0xe5,0x29,0x7a,0x6b,0x43,0x9b,0xc4, +0x3a,0x07,0x36,0x06,0x3d,0xb0,0x64,0x5d,0x3b,0x20,0xd9,0x80, +0x73,0x9d,0xc8,0xc1,0x6c,0x5e,0x07,0xab,0x88,0x1b,0xf8,0xa7, +0x30,0xba,0xf5,0xcc,0x83,0x0e,0x03,0xa1,0x08,0x53,0xc2,0xc1, +0x82,0x4d,0xee,0x83,0x10,0x08,0xa1,0x00,0x27,0xb2,0x42,0xfc, +0xb4,0xf0,0x84,0x2f,0x4c,0xe1,0x8f,0x44,0xd3,0x2d,0x01,0x89, +0x0b,0x6c,0x6a,0xbb,0x91,0xd7,0x26,0x28,0x41,0x8d,0x05,0x71, +0x46,0x33,0xf2,0xa1,0xc9,0x68,0xd4,0xaa,0x3b,0xfd,0xca,0x49, +0xc1,0x7a,0x21,0x0c,0x1f,0x67,0x2c,0x27,0x52,0xcb,0x0d,0x51, +0x64,0x91,0xb4,0xca,0xe4,0x2c,0x28,0xc6,0x50,0x67,0xcc,0xd2, +0x62,0x15,0xaf,0xc8,0x2b,0x23,0xbe,0x8e,0x63,0xc2,0x79,0x5d, +0x43,0x7a,0x45,0x2b,0x0d,0x62,0x30,0x76,0x69,0x5c,0xe3,0x05, +0x73,0xe5,0x46,0x8e,0xec,0xea,0x8d,0x1b,0x89,0x90,0x92,0x2a, +0x65,0xa9,0xec,0x84,0x31,0x84,0x8f,0x6b,0xd4,0x1e,0x9f,0x68, +0x45,0x3f,0xae,0xa9,0x4d,0xa6,0x3a,0x55,0xa6,0xa0,0x48,0x48, +0x4e,0x19,0xd2,0x54,0xed,0xe9,0x63,0xe6,0x68,0x34,0x31,0x06, +0x8e,0xcf,0x38,0xa5,0xe3,0xa1,0xf5,0x28,0x49,0x3a,0xba,0x8c, +0xcd,0x47,0x0c,0x44,0x57,0xc9,0x36,0xb9,0xb5,0x71,0xe5,0x51, +0x8f,0x4e,0xe4,0x23,0x9a,0x06,0xe9,0x86,0x3f,0x02,0xf2,0x94, +0x5c,0x02,0xe1,0x20,0xff,0x1f,0xc7,0x26,0x47,0x3e,0x32,0x95, +0xb1,0x2c,0x64,0x23,0xb5,0x58,0x4b,0x39,0xa9,0xb2,0x6f,0x66, +0xfb,0x96,0xf6,0xb2,0x87,0x93,0xd0,0x25,0x68,0x81,0xc0,0xe4, +0x58,0xf6,0x2a,0x94,0x4c,0x8c,0xa9,0x4d,0x76,0x9d,0x09,0xd9, +0xc6,0x98,0xe9,0xad,0x3f,0x95,0x05,0x98,0xc2,0x8c,0x49,0x8b, +0x5c,0xc4,0xa1,0x55,0x96,0x08,0x8b,0x2d,0x4a,0x11,0x37,0x7d, +0x99,0xcd,0xd4,0x80,0x73,0x45,0xd1,0xfa,0xe6,0x36,0xcd,0x79, +0xb2,0x95,0x35,0xb0,0x38,0x6b,0x83,0x66,0x5c,0x56,0xd6,0xb1, +0x0a,0xd2,0x13,0x89,0xdf,0xfb,0x5a,0xe7,0x8a,0x04,0xcf,0x7a, +0x0a,0xa8,0x9a,0xc5,0x94,0x66,0xdc,0xbe,0x23,0x50,0xf3,0xf0, +0x51,0x9d,0x20,0x42,0xcf,0x79,0x12,0xea,0x1f,0x10,0xcd,0xa7, +0xa1,0xfa,0x79,0xa4,0x41,0x41,0xc2,0x9f,0xfd,0x50,0x74,0xa1, +0xd0,0xa3,0xe6,0x3d,0xfd,0x49,0xcc,0x67,0x2a,0x2a,0x4f,0x96, +0x1c,0xd7,0x63,0x48,0x77,0x23,0xe9,0x61,0x8f,0x31,0x0e,0xdc, +0x56,0xc8,0x6e,0x94,0xd1,0x8e,0x64,0x13,0x37,0xe3,0x69,0x29, +0x6f,0x5e,0xda,0x22,0x97,0xae,0x07,0xa6,0x89,0x8a,0x27,0x3b, +0x35,0x76,0x4d,0x7e,0x6e,0x6e,0x99,0x9e,0x51,0x66,0x47,0x9d, +0xe9,0x1c,0x0a,0x92,0xe5,0x92,0xf9,0x74,0x0c,0xc6,0x52,0xda, +0x40,0xb5,0xa1,0xa6,0x29,0x2b,0x51,0xc9,0x7d,0x9c,0x3a,0x11, +0xa9,0xae,0x87,0xaa,0x18,0xb1,0x2a,0x4a,0xa6,0x52,0x12,0x9d, +0x61,0x75,0x80,0x12,0xba,0x26,0x40,0xc5,0xf6,0xad,0xb4,0x6d, +0xb4,0x41,0x6f,0x83,0x26,0x53,0xef,0xa9,0xff,0x4f,0x8f,0x32, +0x95,0x39,0x49,0x15,0xeb,0x52,0x1f,0xa8,0xd5,0xa7,0xb2,0x64, +0x3c,0x5d,0x9d,0xab,0x5d,0xa1,0xda,0x91,0xae,0x8e,0x44,0xaf, +0x4d,0xf5,0x6b,0x0e,0x8d,0xd9,0x53,0x20,0xa2,0xc5,0x98,0x26, +0xcd,0xe4,0x3f,0x03,0x1b,0xd7,0x90,0x7e,0xd4,0xa4,0x8c,0x45, +0xec,0x3b,0x17,0x0b,0x57,0x24,0x62,0x65,0x23,0x95,0xcd,0x8a, +0x53,0x2c,0xcb,0x15,0xcc,0xf6,0xed,0xb2,0x83,0xc9,0xec,0x56, +0x8e,0x02,0x47,0x35,0xc6,0x0e,0x8e,0x71,0x8c,0x63,0xa1,0xcc, +0x38,0x47,0xd6,0x55,0x88,0xb4,0xa5,0x3d,0x20,0x1a,0xcf,0xf8, +0xaa,0x32,0xa6,0x76,0xb5,0xb2,0x6d,0xe3,0xb9,0x72,0xab,0xdb, +0xdd,0xf2,0x76,0x31,0xe6,0x32,0xea,0x6f,0xaf,0xb7,0x43,0x6e, +0x15,0x53,0x28,0x9f,0xfc,0xa4,0xb6,0x44,0x1a,0xdc,0x61,0x62, +0x0b,0x7c,0xbd,0x7d,0x2e,0x74,0xa3,0x2b,0x5d,0xb9,0x90,0x6c, +0xa7,0x3f,0x25,0x5d,0xf5,0x66,0x05,0xd6,0xa2,0x06,0x35,0xa3, +0x69,0xa1,0x58,0x48,0x6b,0xc5,0xce,0xcd,0x65,0x8c,0x8e,0x0c, +0x4a,0xd0,0x74,0xd3,0xab,0xde,0xf5,0xde,0x94,0xbb,0xd1,0xf3, +0xee,0x8e,0x22,0xb4,0xd2,0xb0,0x0d,0xf6,0x2d,0x8c,0xb5,0x91, +0x58,0x39,0x87,0x32,0x0a,0x52,0x67,0xa8,0x42,0x62,0x2f,0x80, +0x03,0xbc,0x5e,0xf8,0xbe,0x17,0xae,0x41,0x2c,0x97,0x03,0x53, +0x8a,0xd1,0x7e,0xa2,0x45,0xbe,0x87,0xa5,0x66,0x01,0x23,0xb6, +0x4e,0x59,0xf5,0x49,0xc0,0x16,0xbe,0x70,0x6e,0xfb,0xf9,0xd6, +0xfb,0x7a,0xec,0x82,0x0c,0x4c,0xf0,0x64,0x0d,0xab,0x31,0xeb, +0xff,0xb5,0x0d,0xc2,0x6c,0x93,0xf0,0x89,0x31,0xac,0xe2,0x15, +0x67,0xd8,0x63,0x1f,0x8b,0x66,0xd8,0xc6,0xfa,0xc3,0xa0,0xce, +0x18,0x51,0x8c,0xb9,0xb1,0x82,0xb9,0xf6,0x60,0x92,0xde,0x85, +0xc7,0x2c,0xfe,0x31,0x90,0x95,0x78,0x32,0x40,0x91,0x75,0x98, +0x44,0x4c,0xeb,0x91,0x09,0xb8,0xbd,0x7d,0x0e,0xb5,0xa3,0xc0, +0xed,0x6f,0x61,0xe5,0x18,0xe4,0x29,0xaf,0xb8,0x8e,0x6b,0xc4, +0xe9,0x05,0x51,0x5b,0x36,0x36,0xba,0x6e,0xcb,0x6e,0x74,0xed, +0xea,0x50,0xab,0xc6,0x3a,0xf6,0xc9,0xb4,0x8a,0xcd,0x56,0x36, +0x4b,0x93,0x66,0xbc,0xac,0xb9,0x2b,0x6d,0xde,0xad,0x44,0x1e, +0x02,0x00,0x89,0x48,0x97,0xce,0x54,0x56,0x6f,0x6a,0x96,0x44, +0xbb,0xb9,0xe5,0xb1,0x9b,0xb9,0xe9,0xf3,0xbe,0xf8,0xac,0x67, +0x5f,0x16,0x4b,0x4c,0x7b,0x6e,0x17,0x04,0x0c,0x4d,0xe8,0x65, +0x19,0x3a,0xd0,0x88,0x56,0xb4,0x6e,0xe3,0x0c,0x91,0x03,0x3c, +0x80,0xd2,0x72,0xbe,0x33,0xa6,0x41,0x14,0x1e,0x3d,0x93,0xb0, +0x6e,0x7a,0x9e,0x57,0x6e,0xe6,0xc5,0x69,0x9e,0x79,0x7a,0x19, +0xd8,0x59,0x34,0x46,0xea,0xd3,0x68,0x52,0x27,0x7a,0x15,0x49, +0xcb,0xcd,0xe4,0x56,0x4d,0xb0,0xba,0x19,0xba,0x3e,0xb9,0x8d, +0xc8,0xa5,0x0b,0x52,0xe9,0x39,0x9f,0x2b,0xd7,0xbc,0xf6,0x75, +0x6f,0x0e,0x20,0xec,0x03,0xf0,0x1a,0xc8,0xa1,0x12,0xf5,0xbc, +0x5e,0xd6,0x3b,0x62,0x98,0x3a,0x3c,0x7e,0xb6,0x6c,0x45,0x36, +0x9d,0x6c,0xe2,0x91,0xc7,0xd4,0x26,0x44,0x49,0xa8,0x62,0x3d, +0x39,0x65,0x4b,0xce,0xff,0xd5,0xf5,0x79,0x36,0x53,0x2a,0xa2, +0xea,0x6d,0x53,0x3b,0x10,0xae,0xae,0x21,0x5e,0x76,0x5d,0x69, +0x75,0xaf,0x1b,0xd8,0x47,0x21,0x76,0x43,0xec,0x3c,0x67,0x78, +0xa7,0xbb,0xd8,0xba,0xb6,0x37,0x5e,0xe8,0x1d,0x6f,0x79,0x7b, +0x73,0x5e,0xe9,0xe1,0x99,0xcb,0xfa,0x15,0x9e,0x48,0x6d,0x75, +0x22,0xaa,0x09,0xcf,0xbf,0x09,0x16,0xf0,0xf4,0xcc,0x8b,0xe0, +0xde,0x9c,0x5c,0x7f,0x00,0xce,0x42,0xf6,0x50,0x24,0x52,0xde, +0xac,0x4f,0xc4,0x15,0x3e,0xf1,0xc9,0x39,0xbc,0x28,0x72,0xae, +0xb4,0xa5,0x21,0xa2,0x6b,0x5c,0xf3,0x7b,0x23,0x1f,0xc7,0x77, +0x9c,0x0d,0x42,0x6c,0x4a,0x97,0x86,0xce,0x25,0x77,0x77,0x4b, +0x52,0xde,0x1b,0x82,0x9f,0x3a,0x3d,0x1c,0xb4,0x9d,0xbf,0x2d, +0x9a,0x98,0x63,0xf7,0xeb,0xe6,0x02,0xd7,0x39,0x00,0x68,0x8e, +0xf1,0xc9,0xf9,0xbc,0x3f,0x35,0xec,0x6c,0xb6,0x69,0xc8,0x2e, +0xba,0x15,0x6f,0x72,0xdf,0x06,0xb7,0x48,0x76,0x3d,0xf2,0x88, +0x10,0x1b,0xd7,0x00,0x60,0xf9,0x51,0xf8,0x2d,0x67,0x7a,0x97, +0x1c,0x25,0x76,0x16,0xf9,0x9c,0xbf,0x7e,0xf5,0x5e,0x17,0x44, +0xdf,0xf7,0x5e,0x56,0x6a,0x10,0x3e,0xed,0xc8,0xf5,0xab,0xe1, +0x16,0x3f,0xa7,0xbf,0xd7,0x7e,0xb4,0x9f,0x77,0x1c,0xed,0x14, +0xcf,0x38,0xdb,0x8d,0x5e,0xf1,0x82,0x7b,0x31,0x35,0x10,0x27, +0x77,0xde,0x9d,0xbe,0x77,0x8f,0x83,0x7c,0xe4,0x96,0x36,0x88, +0xcb,0x7f,0xed,0x12,0xa9,0x9f,0x5d,0xe4,0x5d,0xf7,0x38,0xe2, +0x2f,0x62,0x67,0xb3,0x77,0x25,0xf1,0x2a,0xff,0x7f,0x3c,0xcd, +0xe3,0xde,0xc4,0x53,0x47,0x74,0xe7,0xd1,0xee,0xd7,0x14,0xed, +0xd6,0xf9,0xa0,0x27,0xbd,0x61,0xac,0xe9,0xcf,0xd3,0x91,0x2e, +0x6e,0xa5,0x7f,0x31,0x69,0xa3,0x77,0x08,0xaf,0x43,0x4e,0xf2, +0xb0,0xb7,0xfb,0xf1,0xf1,0x6e,0xbc,0xca,0xf1,0x1d,0x76,0xca, +0x23,0xde,0xf2,0x91,0xbf,0xbd,0xee,0x4d,0xee,0x75,0xd8,0xc3, +0x5c,0x35,0x71,0xb7,0x54,0x93,0x4e,0xfd,0x76,0x2c,0xaa,0x1d, +0xf9,0x0c,0xaf,0x78,0x56,0xfd,0x4e,0xc3,0x43,0xa2,0x1e,0xfa, +0x26,0xba,0x3b,0xf5,0xf5,0xbe,0x7c,0xaf,0x93,0xbc,0xfb,0x92, +0x06,0x79,0xed,0x25,0x1f,0x79,0xcb,0xa7,0x1c,0xec,0xc1,0x77, +0x48,0xd7,0xa5,0xfe,0x75,0x99,0xf3,0x1e,0xf8,0xc2,0x3e,0xfb, +0xd8,0x6d,0x8f,0x91,0xe6,0x9b,0x50,0x5e,0xcf,0x0f,0xb5,0xfd, +0xeb,0xef,0xa4,0x53,0xe7,0x66,0xe8,0xa6,0x2f,0xd3,0xab,0x8d, +0xc7,0xdf,0xfd,0x1f,0x99,0x50,0x9c,0x51,0x74,0x1f,0xed,0x79, +0x5f,0xf7,0x51,0x9e,0xcb,0x49,0x44,0xd5,0xb1,0x9c,0xd5,0x5d, +0x5e,0xd9,0x35,0x04,0xd7,0x8d,0xdf,0xef,0x85,0xdd,0xbd,0xc9, +0x9c,0x48,0xe8,0x9b,0xef,0x89,0x5f,0x4a,0x34,0x5f,0xfc,0xcc, +0x8c,0xfd,0xd9,0x0d,0xfe,0x25,0x9f,0xcc,0x88,0x60,0xf2,0x85, +0x47,0xff,0x4d,0x9f,0xd2,0xb4,0xc3,0xe2,0x14,0xe0,0xe4,0xc0, +0x1a,0x0b,0x2e,0xcd,0x0b,0x56,0x1f,0xe4,0x7d,0xdc,0x02,0x3e, +0x84,0xec,0x81,0xdd,0xe1,0xed,0x1b,0xb0,0xc1,0xdb,0xd6,0x9d, +0xdc,0x05,0x12,0x5f,0x03,0x0e,0xe1,0xfa,0xc1,0x5f,0xee,0xc1, +0xff,0xde,0x41,0x00,0x21,0x47,0x50,0x9e,0xdd,0x98,0xc7,0xdd, +0xbc,0x03,0xcd,0x78,0x07,0xff,0x8d,0x47,0x78,0x40,0xe1,0xcc, +0x4c,0x21,0x77,0x90,0xa0,0x00,0xb2,0x47,0x7f,0x30,0x4d,0xd3, +0xc8,0x87,0x01,0x8e,0x47,0x7d,0xe8,0x07,0xe5,0xa4,0x43,0x18, +0xc2,0x47,0x00,0xc6,0xdc,0xe1,0x29,0xa0,0xf7,0xfd,0x9a,0xf9, +0x95,0x5c,0xc8,0x55,0x9d,0xbc,0x91,0x5f,0xd4,0xcd,0x1b,0x1c, +0xda,0x9b,0x0e,0x76,0xa0,0x4b,0xb0,0x1c,0x13,0xb2,0xd9,0xbc, +0x74,0x47,0x08,0xe6,0x0d,0x78,0x54,0xe1,0x7a,0x5c,0xa1,0x76, +0x0c,0x22,0x79,0xf0,0x11,0xa8,0x75,0x61,0x7c,0xb4,0xe0,0x0b, +0x3e,0x92,0xad,0x91,0x21,0x7b,0xb8,0x07,0x24,0x5a,0xce,0xa9, +0xc4,0x60,0x1f,0x3a,0x1e,0x27,0xba,0xe1,0x1e,0xf6,0x60,0x12, +0xce,0x1b,0x1d,0x96,0x9f,0xd4,0x55,0xe0,0xbe,0xe9,0x61,0x44, +0x60,0xa0,0x2a,0xf2,0xe1,0x1d,0x66,0xe0,0xf9,0x65,0x15,0x22, +0x86,0x47,0x16,0x02,0xcd,0x96,0x70,0xe1,0x7a,0x04,0x22,0x1f, +0xcd,0x22,0x76,0xf0,0x91,0x0a,0x52,0x22,0x9c,0x9c,0x61,0xd3, +0xfc,0xa2,0x26,0xae,0x87,0xd3,0x3d,0x12,0x18,0xea,0xcf,0x2f, +0x4e,0xe2,0xe2,0x59,0xdd,0x0e,0x7a,0x62,0x2a,0x8e,0xdf,0xa4, +0x61,0x60,0x04,0xe2,0xa0,0x12,0xfe,0x9e,0x03,0x76,0xe2,0xf7, +0x65,0x20,0xd6,0x55,0xa3,0xa4,0x8d,0xdc,0xd8,0x4d,0xa0,0xe2, +0x81,0x84,0xb3,0x9d,0x48,0x23,0xde,0x62,0x36,0xf5,0xe2,0x7a, +0xa4,0x5e,0x86,0x0c,0xe3,0x7d,0x1c,0x5d,0x86,0x28,0x63,0xd4, +0x51,0x5d,0xed,0x39,0xff,0xe3,0xba,0xd1,0x5e,0xd9,0xc5,0x19, +0xd6,0x4d,0xda,0xec,0x4d,0xde,0xd5,0xf9,0x5e,0x37,0xf6,0xe0, +0x3c,0x56,0x5d,0xb1,0xc9,0x1f,0xf0,0xc1,0x1f,0x41,0xf2,0x1a, +0xcf,0x6d,0x48,0x8a,0x2c,0xa4,0x42,0x72,0x1e,0xa1,0x85,0x0a, +0x97,0x30,0x24,0xa6,0x34,0xe4,0xb5,0x89,0x44,0xd2,0x29,0x24, +0x87,0x30,0x64,0x8a,0x3c,0x1d,0xb6,0xad,0x1e,0x46,0x4e,0xe4, +0x44,0xa6,0x08,0xba,0xc5,0x23,0x3d,0xba,0x61,0xec,0xbd,0x5c, +0xfc,0x81,0x5f,0xc8,0xed,0xde,0x1e,0x86,0xa2,0x4b,0xf6,0xe3, +0xf7,0x5d,0xda,0x34,0x3e,0x9e,0xcc,0xc5,0xa4,0xf9,0xe9,0x9a, +0xd9,0xd1,0x4b,0x22,0xd9,0x0c,0x49,0xac,0x43,0x8a,0x0c,0xde, +0x39,0x4d,0x64,0xa8,0xf0,0x64,0xc5,0xfd,0x64,0xdd,0x19,0x9c, +0x36,0x0d,0x65,0xd0,0x44,0x8a,0x51,0x6e,0x5f,0xdf,0x91,0xd3, +0x4e,0x2e,0xa5,0x4f,0x72,0x08,0x50,0x0a,0xdf,0x4a,0x62,0xa3, +0x49,0xaa,0xdb,0x12,0x46,0x5e,0x3e,0x9a,0x24,0x1e,0xea,0xa1, +0x43,0x30,0xe1,0x1b,0x7a,0xe0,0x01,0x4e,0x9d,0x34,0x8a,0x1f, +0xc1,0x45,0x02,0xb2,0x0c,0x65,0x4f,0x32,0x25,0x04,0xa8,0x25, +0xd4,0x79,0x9e,0x5a,0x66,0x0a,0x5b,0xee,0x9d,0x4f,0xbe,0xe5, +0xe8,0xa5,0xe5,0x5a,0xf6,0xa4,0x5d,0x72,0x08,0x5c,0xaa,0xde, +0x5c,0x12,0x1c,0x5f,0x0a,0xa6,0x5f,0xbe,0x1e,0xae,0xcd,0xa1, +0x33,0xb2,0x24,0x04,0x82,0xa3,0x05,0x06,0x24,0xa5,0x1d,0xde, +0x62,0x0e,0x1f,0x0e,0x3e,0xe3,0x4d,0xa2,0x64,0x35,0xe6,0x5e, +0x34,0x0a,0x9f,0x6a,0xd4,0xcd,0x38,0xed,0xff,0xc0,0x51,0xf6, +0x1d,0x67,0x66,0x93,0x67,0x3a,0x25,0x86,0xb0,0xcb,0x38,0xb1, +0xcb,0x67,0x96,0x66,0x68,0xb6,0xc8,0x68,0xf2,0xdd,0x12,0xee, +0x21,0x6c,0x26,0x66,0x4b,0xba,0x1b,0x0e,0x22,0xe6,0x61,0x66, +0xe0,0x41,0xd6,0x64,0x03,0x4a,0x5a,0x3e,0x7e,0xe3,0x40,0xe2, +0xa4,0x3d,0x82,0x23,0x41,0x1e,0x80,0xc3,0x29,0x92,0x15,0x61, +0x0e,0xce,0x4c,0x4a,0x5e,0x5a,0x9c,0x71,0xc2,0x10,0xe6,0xa8, +0xc9,0x72,0x7e,0x44,0x73,0x22,0xa7,0xb5,0x54,0x49,0x74,0xa2, +0x86,0x2a,0x39,0xe7,0xd0,0x40,0x67,0x5c,0x5e,0xde,0xa4,0x35, +0xa3,0x33,0xbe,0x1f,0x03,0xaa,0xe2,0xd4,0xb5,0x64,0xfc,0xb9, +0x62,0xcc,0x5d,0xdd,0x36,0x6a,0xe0,0x2b,0xb6,0xa7,0x7a,0x1e, +0xa4,0x17,0x75,0xc4,0x20,0x51,0x27,0xb1,0x90,0x66,0x7c,0x62, +0xe7,0x71,0x22,0x67,0x7d,0xba,0xe6,0x7d,0x2a,0x12,0x7d,0x42, +0x8b,0x7d,0x62,0x88,0x7c,0xe6,0xe7,0x73,0x02,0x28,0x7f,0xfa, +0xa0,0xf7,0x3d,0x66,0x49,0xf6,0x1e,0xfa,0x7d,0x63,0xca,0x45, +0xa6,0x34,0xb6,0xdf,0x79,0xa2,0x22,0x12,0xf6,0xc6,0x35,0x8a, +0x5d,0x85,0x9a,0x04,0x81,0x6e,0xa7,0xb2,0xc0,0xc6,0x86,0x26, +0x27,0xc4,0xe4,0xc6,0x87,0x56,0x67,0xd6,0xac,0xc7,0x88,0xaa, +0x0a,0xaa,0xbd,0xe6,0xba,0x41,0xe0,0x61,0xca,0x23,0x27,0x6e, +0xa5,0x35,0x26,0xe0,0xc7,0x41,0x60,0x6f,0x1a,0xc5,0x0e,0x3a, +0x68,0xec,0xb9,0xa7,0x37,0x7e,0x65,0xfa,0x5d,0xa6,0x7c,0xfe, +0x67,0x87,0x8a,0x28,0x90,0x86,0xe8,0x78,0x68,0x27,0x88,0x12, +0xff,0xa9,0x89,0x0e,0x69,0x89,0xde,0x21,0x78,0xc2,0x61,0x8b, +0xe2,0xa3,0xe4,0xb1,0x9b,0xfa,0x81,0x5f,0xbb,0x65,0xa8,0x07, +0x8a,0x1d,0xcc,0x31,0x9e,0xf0,0x0d,0x1f,0x47,0x60,0xa8,0xdd, +0xd9,0xc6,0xb9,0x9c,0x48,0x98,0x86,0xc8,0x98,0x66,0x48,0xba, +0x6d,0xdd,0xb0,0x39,0xde,0xbc,0xc1,0xe6,0x59,0x8a,0xdf,0x8c, +0x76,0xe3,0x35,0xfa,0xa6,0x9c,0x4a,0xa6,0x34,0xc2,0xdc,0xbb, +0xad,0x27,0x97,0x66,0x9a,0x9e,0xaa,0x57,0x1b,0xba,0x21,0x8d, +0x56,0xa9,0xc9,0x65,0x29,0x6d,0xea,0x1b,0xef,0x6d,0x63,0xf0, +0x1d,0xe1,0xfb,0xdd,0x9a,0x36,0xee,0x29,0xa3,0xae,0x57,0x11, +0xae,0x28,0x1c,0x0a,0x1b,0x95,0xca,0xdf,0x63,0xf6,0x63,0x02, +0x7e,0xe5,0x37,0xc2,0x5b,0xfb,0xd5,0x64,0x38,0xd6,0x61,0x9b, +0xc2,0x19,0x7c,0x36,0xaa,0xa8,0x06,0x9b,0x94,0x0a,0xa4,0xa5, +0x49,0xaa,0x4a,0x6e,0xa0,0x65,0xde,0x63,0x3f,0x26,0x6a,0x57, +0xc8,0x5e,0x1e,0x5a,0x28,0x59,0x56,0xaa,0x8e,0x8e,0xaa,0xad, +0x56,0x1e,0x9b,0x86,0x5f,0xbb,0xb9,0x6a,0x7a,0x72,0x5d,0xd7, +0x09,0x24,0x1b,0x66,0xa8,0x96,0xd6,0xaa,0x9b,0x62,0x66,0x41, +0xde,0x2a,0xb2,0xf6,0xda,0x64,0xd2,0x21,0xab,0x56,0x1e,0x6e, +0x82,0x65,0xa4,0x69,0x1d,0xb1,0x6e,0x29,0x05,0x1e,0x6b,0xb2, +0x5e,0xeb,0xab,0xb2,0xea,0xae,0xbd,0x9f,0x03,0x92,0xaa,0x41, +0x8a,0xa7,0xac,0x86,0x6a,0x59,0x62,0x2b,0xb9,0xf2,0xe9,0x6f, +0x62,0xea,0xb9,0x18,0x2a,0x6f,0xc9,0x9b,0xd9,0x89,0x2b,0xb5, +0x96,0x2b,0xbc,0x4e,0xff,0x97,0x84,0xa6,0xeb,0x9c,0xc6,0x2b, +0xb6,0x6d,0x56,0x5f,0xe0,0xeb,0x5f,0xe8,0x6b,0x60,0x80,0xd6, +0x67,0x75,0x16,0xbf,0xde,0xab,0xbf,0x16,0xc6,0xc0,0x96,0x86, +0xa4,0xda,0xeb,0x9d,0xe1,0x15,0x57,0x01,0x96,0x49,0xdc,0x15, +0x5f,0x35,0xac,0x5f,0x29,0x6c,0x54,0x45,0xec,0xc3,0xa6,0xe7, +0x8a,0xce,0xeb,0x06,0xbe,0xe4,0xa8,0xc6,0x46,0xf4,0x01,0x9d, +0xc4,0xee,0x15,0xc3,0xd2,0x95,0x46,0x2c,0x6c,0x5d,0x55,0x15, +0xc5,0x86,0xec,0x54,0x9d,0x6c,0xc9,0x56,0xde,0x9f,0x8a,0xab, +0xa9,0x4e,0x6b,0x58,0x0e,0x2b,0x80,0xed,0xe2,0x96,0xa0,0xe3, +0x44,0xd4,0x2c,0x1f,0x89,0xc4,0x0e,0xfc,0xa5,0x98,0x1a,0xc5, +0xce,0x8e,0xd3,0x51,0xfc,0xec,0x9b,0xb5,0x84,0xd0,0xb6,0xc8, +0xbb,0x89,0x22,0x8b,0x0e,0x9b,0xba,0xee,0x5b,0x3e,0xae,0xdc, +0xb4,0x82,0x6b,0xd9,0x2d,0x2d,0x59,0xc6,0x1f,0xc6,0xa2,0x86, +0x79,0x50,0xd1,0x07,0x3a,0x8a,0xcd,0x96,0xe6,0x22,0x12,0x94, +0xd7,0x52,0xa1,0x4c,0x61,0x07,0x42,0x0d,0x54,0x39,0x76,0x2c, +0x7e,0x38,0xd4,0x44,0xc1,0xe3,0xf5,0x79,0x21,0x45,0xa1,0x6d, +0x8a,0xae,0x29,0xb7,0xc6,0x29,0x4c,0xb6,0xc4,0xca,0x3d,0xa8, +0xd4,0x52,0xa0,0x29,0x32,0x66,0x1f,0xb2,0x59,0x22,0xb2,0xc6, +0x16,0xea,0x8c,0x76,0x0c,0x5a,0x6a,0xfc,0x2d,0x4b,0xbd,0x10, +0x48,0x02,0x2d,0x16,0xad,0xd2,0x4f,0x0e,0x6d,0xdf,0x29,0x2e, +0x55,0x32,0x6e,0x69,0x3a,0xee,0x69,0xd2,0x6d,0x70,0xa6,0xe2, +0x63,0x9e,0x2a,0x93,0x82,0x9f,0xa5,0x62,0xff,0xec,0xe3,0xd1, +0x9b,0xd4,0x56,0x2d,0xef,0x89,0xed,0x32,0x48,0x83,0x34,0xa4, +0x06,0xe9,0x62,0x49,0x2f,0x8a,0x6e,0xe9,0x92,0xee,0xe9,0xfe, +0xad,0x71,0x52,0x44,0x8a,0x6c,0x89,0xa5,0x5c,0xc9,0xe3,0xf4, +0xd2,0x54,0xd2,0xec,0xec,0xea,0x19,0x48,0xd8,0xee,0x46,0xce, +0x87,0x9b,0xb0,0x49,0xed,0xc6,0xd2,0xed,0xc2,0x89,0xa9,0x00, +0x6f,0xcc,0x7d,0x1f,0x78,0x16,0x5e,0x2b,0xa2,0x5f,0x0f,0xb6, +0x5f,0xdd,0xaa,0x27,0xb7,0xee,0x1e,0xb5,0x56,0xed,0xcd,0x32, +0x9b,0x34,0x64,0x43,0x6a,0x64,0x83,0x34,0xa0,0x2e,0x55,0x88, +0x2e,0x04,0x64,0x03,0xf8,0x6a,0x2f,0xf7,0xa2,0x06,0x1d,0x08, +0xef,0x5d,0x7e,0x47,0xee,0x3e,0x4e,0xf9,0x5a,0x51,0x51,0xee, +0xa2,0xf3,0xe9,0xae,0x49,0xac,0xef,0x2a,0xb9,0xa5,0xef,0x7a, +0x8a,0xa1,0x81,0x84,0xfc,0xb6,0x6f,0xfd,0xfe,0xae,0xab,0xb1, +0x21,0x6c,0x36,0x63,0x4a,0x4e,0x9e,0x96,0x6a,0xea,0xb6,0x7a, +0xa3,0x84,0x32,0xe1,0xcb,0x06,0x9f,0xd3,0x82,0x63,0xd5,0xaa, +0x2e,0xf6,0x7e,0xef,0xf6,0x12,0xae,0xea,0xa6,0x06,0x38,0x88, +0xaf,0xeb,0x02,0x0c,0xfb,0xba,0xe5,0xd5,0xa6,0x87,0x6c,0xe0, +0xef,0xfa,0xb6,0xef,0x06,0xd7,0x9f,0xc7,0x62,0xf0,0xfc,0xde, +0xa5,0x7e,0x14,0x60,0x07,0xc7,0xef,0x07,0xd3,0xaf,0x9b,0x80, +0x29,0x49,0x3e,0xa9,0xe6,0x9a,0x27,0x4e,0x26,0x6d,0xae,0x29, +0xaf,0x84,0xae,0x1f,0xd7,0xf1,0xea,0xd4,0xe6,0x5e,0xa2,0xe6, +0x64,0xe0,0x5e,0x6f,0xf6,0x46,0x70,0xea,0xfe,0x70,0x36,0x80, +0xff,0x83,0xe9,0x8e,0xef,0xd3,0xcc,0xaf,0xde,0xac,0xc6,0xbf, +0x31,0x9d,0xfa,0x62,0x70,0x46,0x3c,0xee,0xe0,0x26,0x9b,0x13, +0x7b,0x70,0xf9,0x46,0xf1,0xe9,0x6d,0x5b,0x15,0xab,0xf0,0x15, +0x57,0x84,0x14,0x2b,0x9d,0xc2,0x21,0xda,0x06,0x2a,0x68,0x6c, +0x5a,0x5d,0x0d,0xbf,0xa6,0x77,0xa2,0xaa,0xa4,0xf2,0x1e,0x9d, +0xf5,0x70,0x0e,0xeb,0x6d,0xbd,0xf2,0xb0,0xca,0x2d,0x70,0x47, +0x10,0x71,0x10,0x8f,0xaf,0xd5,0x5a,0x6f,0xf8,0x62,0x2f,0x12, +0x0b,0xcf,0xd5,0x08,0x0e,0x15,0xdb,0xcf,0x13,0xf3,0xcd,0x1f, +0xff,0x8e,0xdd,0x68,0x5c,0xbc,0x58,0xb1,0xe3,0x5c,0xcd,0xf1, +0x68,0xb1,0x20,0x2b,0xb2,0xd3,0x34,0x32,0xe4,0x3c,0x72,0xd4, +0x5d,0xae,0x02,0xae,0x31,0xa4,0x56,0x6b,0xdd,0x7e,0x22,0x7b, +0x56,0x28,0x8d,0x62,0xdd,0x1f,0x36,0xa1,0xcb,0x35,0xf0,0x0f, +0x97,0x2e,0x04,0xb4,0xee,0x10,0x5b,0x2f,0xeb,0x9e,0x72,0x1f, +0x27,0x8f,0x17,0xc7,0xcf,0x14,0xd2,0x4e,0xef,0x40,0xf2,0x2b, +0xab,0x8f,0xdd,0xf0,0x0e,0xe2,0xd0,0xb2,0xde,0xe4,0x4f,0xd2, +0xe0,0x72,0xdd,0xe8,0x32,0x87,0xf0,0x32,0xd1,0x51,0x1b,0xf7, +0x25,0xef,0x6d,0xa6,0x69,0xef,0x19,0x73,0x1b,0x5f,0xac,0x4b, +0xe2,0xa3,0x0e,0xaa,0x22,0xc6,0x82,0x2b,0xe5,0xf9,0xb0,0x08, +0x2f,0x22,0x98,0x88,0xed,0x6a,0x30,0x49,0xea,0x0a,0x4f,0x2d, +0xcb,0xcf,0xbc,0x30,0x5d,0x22,0x73,0xb1,0xe3,0x74,0x73,0x2c, +0x83,0xf3,0x20,0x8f,0xf3,0x2e,0x03,0xd0,0x30,0xff,0xcd,0x39, +0x63,0xb1,0x30,0xef,0xff,0x8c,0xbb,0x2c,0xda,0x3c,0xbe,0x61, +0x10,0x4e,0xb3,0x8c,0x46,0x63,0x3d,0xce,0x71,0x4a,0x42,0xaf, +0x8b,0x9e,0x9f,0xe7,0x92,0x71,0xb3,0xce,0xa9,0xd8,0x1e,0x4b, +0xd6,0x12,0x74,0x47,0x64,0x42,0xf2,0x14,0x32,0x0a,0x4e,0x32, +0xe0,0x80,0x04,0x42,0x13,0xb2,0xcd,0x00,0x32,0x43,0xe7,0xb2, +0x49,0x3c,0xf4,0x22,0xdb,0x8c,0x24,0x6b,0xdc,0x2f,0x57,0x74, +0x42,0x63,0x74,0xf3,0x38,0x72,0x43,0x77,0xe9,0x3d,0xfb,0xa9, +0xde,0xc6,0x29,0x00,0x23,0x1e,0xb3,0x32,0xf0,0x49,0x8a,0x9c, +0x1f,0xce,0x29,0x86,0x62,0xf2,0xb6,0x3e,0x1e,0xcd,0xd6,0xa2, +0x38,0xe2,0xec,0x35,0x4f,0x09,0xdf,0xbc,0x32,0x13,0x07,0xb2, +0xbe,0x3c,0x0e,0x4e,0xa3,0xf3,0x17,0x37,0xf1,0xdc,0x6c,0x74, +0x4a,0xfc,0x34,0x16,0xaf,0x46,0xc4,0xf1,0x0e,0x51,0x4f,0x84, +0x51,0xeb,0xb4,0x6a,0x24,0xf5,0x50,0xcb,0x33,0xaa,0xfa,0xe9, +0x33,0x07,0x2a,0x36,0x32,0xb0,0xb4,0x6a,0xea,0xd9,0x11,0xea, +0x45,0x98,0x62,0x4a,0xfb,0x66,0xd7,0x71,0xec,0xda,0x82,0xdb, +0x9c,0x8c,0xf3,0xf9,0x66,0x89,0x0b,0x17,0x35,0x4e,0x83,0x30, +0x5a,0xa7,0xb0,0x5a,0x23,0xb4,0xfe,0xb6,0xb0,0x5b,0x33,0xf5, +0x5a,0xb3,0x30,0x00,0xce,0x75,0x57,0xc3,0xb0,0x3e,0x7e,0x22, +0x57,0xaf,0xe9,0xdc,0xb2,0xa4,0x48,0xdf,0xa3,0xd8,0xf9,0x61, +0xa1,0xde,0xe3,0x03,0x4e,0x60,0x5f,0xe3,0x19,0x8a,0x6a,0x70, +0x08,0x3b,0x09,0xfc,0xbe,0xb5,0x87,0x30,0xf6,0xfb,0x9a,0x9a, +0x43,0x7f,0x09,0xfd,0x9e,0xb0,0xfd,0xf6,0xff,0x6f,0x45,0x5b, +0xb6,0x09,0x63,0x36,0xff,0xca,0x33,0x56,0xee,0x75,0x55,0x6f, +0x65,0x9a,0x32,0xab,0xbb,0x6a,0xea,0x3f,0x0f,0x21,0x8c,0xca, +0xe1,0x85,0x89,0x0a,0xec,0x72,0x88,0xec,0x3a,0x0a,0xed,0x56, +0x36,0x9d,0xdc,0x6e,0x6c,0x67,0xc9,0x6c,0x6f,0x76,0x6d,0xf7, +0xae,0x67,0xbf,0x87,0xf1,0xea,0x76,0x64,0xf3,0x76,0xf1,0xde, +0xef,0x1d,0x7e,0xe7,0x1b,0x02,0x2b,0x83,0xba,0xaa,0xa7,0xaa, +0x29,0x69,0x1b,0xb6,0x03,0x2e,0x30,0x72,0x27,0xe1,0xb0,0x4d, +0xa0,0x56,0x52,0x2f,0x6f,0xa9,0x86,0x87,0x2c,0xae,0xd1,0x62, +0x51,0x76,0x7f,0x31,0x99,0x72,0xf7,0xe1,0x42,0x6e,0xe1,0x76, +0xf7,0xe4,0x2e,0x5e,0x79,0xee,0x23,0x4d,0x42,0xe9,0x12,0xfa, +0xa1,0xcc,0x2e,0xed,0x83,0x12,0x6b,0xbb,0xb2,0x59,0x77,0x76, +0xe7,0x39,0x7d,0x6d,0x42,0x09,0x62,0xd8,0xde,0xb7,0x7d,0x6f, +0xed,0xc5,0xa5,0xed,0x43,0x59,0x62,0xd8,0xb6,0xed,0x7f,0x8b, +0x61,0xd6,0x91,0xa2,0xe5,0xda,0x9e,0xe7,0x9e,0x64,0x74,0x1b, +0x2c,0xcc,0x62,0xe9,0x9f,0x3d,0x40,0xd1,0x40,0xc0,0x43,0xd0, +0x77,0x43,0x14,0x6d,0xcf,0x16,0x85,0x85,0x7f,0x37,0x86,0xf3, +0xac,0x86,0xbb,0x44,0x86,0x9b,0xe9,0x01,0xb2,0x1b,0x1d,0x3e, +0x6f,0x51,0xdc,0xed,0xde,0x12,0x30,0x8c,0xb6,0x5c,0x6e,0x40, +0xc4,0xe3,0xb0,0xf8,0x43,0x1a,0x46,0x62,0xc0,0xb8,0x45,0xca, +0xb8,0x62,0x70,0x84,0x62,0xd4,0xb8,0x66,0x79,0x56,0x8c,0xeb, +0xf8,0x01,0xd2,0xaa,0x0c,0x73,0xdf,0xd7,0x99,0xb8,0xc5,0xf2, +0xff,0x96,0x90,0x63,0x84,0x8b,0x93,0x75,0x44,0xd0,0xf7,0x8d, +0xcb,0xb8,0x8d,0xd3,0x38,0x93,0xe7,0x38,0xbf,0xe2,0xf8,0x56, +0x14,0xac,0x94,0x53,0xae,0x72,0xb7,0xdc,0xc1,0xba,0xac,0x7a, +0xaa,0x98,0x84,0x77,0xdf,0x35,0x93,0xdc,0x7c,0xaf,0x2c,0xc9, +0xba,0x99,0x98,0x5f,0xd5,0xc8,0xe6,0xd5,0x81,0xa2,0x2c,0x5d, +0xf5,0xd5,0x81,0x66,0x9d,0x95,0x22,0xab,0x75,0x63,0x88,0x97, +0xa7,0xc4,0x9c,0x23,0xac,0x9d,0xdf,0x79,0x98,0xd6,0xb9,0xc1, +0x81,0xf9,0xdb,0xe2,0xb9,0x9f,0xdb,0x79,0x97,0x27,0xb9,0x38, +0xe9,0xf9,0x9f,0x17,0xba,0xa1,0xa3,0x86,0xa0,0xaf,0xc7,0x91, +0xf7,0xf9,0xa1,0x37,0xba,0xad,0x06,0x3a,0x84,0xa7,0x68,0xa0, +0x33,0xba,0xa3,0x57,0xba,0xa8,0x4a,0xf8,0xeb,0x99,0xc4,0x84, +0x5b,0x3a,0xa7,0x23,0x2c,0xa5,0x1b,0xf9,0xa7,0x77,0xba,0xa8, +0x7b,0xfa,0xa8,0x97,0xba,0xa9,0x03,0x99,0x03,0x18,0x45,0xaa, +0x9f,0x3a,0xab,0xf3,0xd6,0xaa,0x03,0xc0,0xab,0xb7,0x44,0xac, +0xa3,0x44,0xaa,0xcf,0xba,0x48,0xac,0xba,0x03,0xe4,0x3a,0xad, +0xeb,0x3a,0xac,0x1f,0x85,0xad,0xf7,0xc6,0xaf,0x7b,0x13,0x85, +0x8b,0x75,0xf4,0x41,0xd7,0xb3,0x51,0x38,0x9e,0x15,0x85,0xae, +0x07,0xfb,0x41,0xd4,0x7a,0xae,0x33,0xbb,0x41,0x38,0x3b,0xac, +0x43,0xfb,0xb3,0x3f,0x3b,0xad,0x17,0x84,0xb5,0x2b,0x7b,0xaf, +0x47,0xfb,0xaf,0xdb,0x7a,0xb6,0x8f,0x07,0x0a,0x84,0xbb,0xb8, +0x3f,0x8e,0xb8,0x8f,0x7b,0x56,0x6d,0x7a,0x6f,0x61,0x7a,0x47, +0x40,0x78,0xb2,0x6b,0xff,0x3a,0xa1,0xf1,0xba,0x4b,0xf0,0xba, +0xb3,0x33,0xfb,0xbc,0xcb,0x3b,0x47,0xc8,0x7b,0xb0,0x4b,0x7b, +0xb5,0xc7,0x7b,0xaf,0xbf,0xba,0xb4,0x37,0xfb,0x45,0xd4,0x3a, +0x6c,0xa0,0x80,0x02,0x14,0xbc,0xc1,0xa3,0x00,0xbe,0x40,0x00, +0xc1,0x1b,0x7c,0xc1,0x23,0x3c,0x88,0xa0,0xfb,0x75,0x4f,0x78, +0x97,0x87,0x7a,0xc7,0xb2,0x3b,0x9d,0x5b,0x7c,0xc0,0x6f,0x7b, +0xbc,0x7f,0xfb,0xb5,0xcf,0xbb,0xc6,0x6f,0xc4,0xac,0x73,0x7c, +0xb3,0x57,0xbb,0xc8,0xdf,0x7b,0xc6,0x07,0xbc,0xb7,0xe7,0x06, +0xc1,0xaf,0x06,0x1e,0xe0,0x81,0x02,0x38,0x3c,0x46,0x10,0x7c, +0xcb,0xaf,0xc6,0xcb,0xb7,0x38,0xc6,0x3f,0x25,0xb2,0xaf,0x3b, +0xae,0x49,0x3a,0x6b,0xb0,0x48,0x92,0x6b,0x3a,0xc4,0x37,0x44, +0xac,0x5f,0xc1,0x15,0x5c,0x7b,0x41,0x10,0xfd,0xad,0x2f,0x3b, +0xd2,0x63,0x3b,0x4a,0x2c,0x7d,0xb4,0x73,0x04,0xd1,0xfb,0xbb, +0x48,0x2c,0xbd,0xb5,0x7b,0xfc,0xd1,0x17,0x3d,0xb6,0xc7,0x3a, +0xae,0x03,0x80,0xd3,0x4f,0x84,0xcc,0x43,0x00,0x27,0x84,0x3d, +0xd8,0xbb,0x3c,0xcc,0x2b,0xbc,0x02,0xe0,0x01,0x27,0x80,0x7d, +0xd8,0x73,0x02,0xd9,0x27,0xfc,0xcf,0x4f,0xc4,0xce,0xbf,0x1e, +0xa4,0x07,0x3d,0x52,0xce,0x7d,0x84,0x43,0x7a,0x9d,0xac,0x06, +0x8b,0xbb,0xc4,0x15,0xec,0xc1,0x1e,0x60,0x3d,0xb3,0xf7,0xfd, +0xdf,0xf3,0xbd,0xdf,0x63,0x7d,0xd3,0x17,0x3e,0xc8,0x1f,0x84, +0xe0,0x5f,0xc1,0xb2,0x7f,0xfc,0xd1,0x23,0x3e,0xca,0x1b,0xc4, +0xe2,0x67,0xfd,0xb2,0xbf,0xfa,0xe4,0xa7,0xff,0xc4,0xd7,0x07, +0x83,0xe6,0x07,0x03,0x04,0xb4,0x7d,0x47,0x64,0xfe,0xe6,0xb3, +0x7d,0xcd,0x5f,0x3c,0xdd,0xeb,0x3c,0x9f,0xbb,0xfd,0xce,0xa3, +0x9d,0xf7,0x25,0xfc,0xdc,0xdf,0x3c,0xa2,0x83,0xf9,0xc9,0x73, +0xfd,0x1e,0x0c,0xc3,0x30,0x0c,0xfe,0xd4,0xcf,0x7e,0xed,0x1b, +0xfe,0x46,0xf4,0x3d,0xed,0xdb,0x3e,0xd4,0xe3,0xbe,0xef,0xef, +0x3e,0xf0,0x03,0xbe,0xd4,0xcb,0x7e,0xef,0x33,0xbe,0xc0,0x33, +0xbd,0xf1,0xe7,0x7e,0xd6,0x3f,0xfd,0xf2,0xfb,0xfe,0xaa,0x9b, +0x3d,0x1e,0x40,0x40,0x30,0x98,0x83,0x39,0x8c,0xfd,0xe8,0xa3, +0x86,0xcc,0xa7,0x3d,0x04,0x98,0x43,0x30,0x88,0x3e,0xcc,0xeb, +0xcc,0xdb,0x93,0x3e,0xa1,0x9b,0xbe,0xeb,0xbf,0xfe,0xea,0x93, +0xff,0xde,0xef,0x79,0xdc,0xdf,0xfe,0xf1,0x3b,0xbe,0xe4,0x0f, +0xff,0xe1,0xbf,0xbf,0xfb,0x33,0xbf,0xd0,0xc7,0xff,0xf1,0xc3, +0xbb,0xf2,0xf3,0xbe,0xfd,0x37,0xfe,0xaa,0x03,0xc4,0x95,0x3d, +0xc3,0x86,0xed,0xb9,0x02,0xc0,0x81,0x03,0x00,0x0b,0x19,0x02, +0x10,0x48,0xd0,0xe0,0xc2,0x84,0x0b,0x21,0xa0,0x50,0x80,0x07, +0x42,0x46,0x08,0xc1,0x38,0xe1,0x51,0x80,0x02,0x02,0x45,0x8b, +0x78,0x38,0x05,0x33,0x97,0xb1,0xe3,0xc7,0x90,0x0d,0x01,0x40, +0x78,0xf0,0xf2,0xc1,0x4a,0x96,0x2d,0x61,0xd6,0x84,0x29,0x93, +0xa1,0xcb,0x9b,0x33,0x75,0xda,0xdc,0xd9,0xb0,0x67,0xcd,0x8c, +0x33,0x69,0xfa,0xc4,0x39,0x53,0x60,0x44,0x89,0x44,0x1d,0xee, +0x51,0x3a,0x91,0x68,0xd2,0x83,0x4c,0x11,0x36,0x55,0x4a,0xd5, +0xff,0xea,0x54,0x85,0x0d,0xa1,0x4a,0x5d,0xba,0x74,0x6b,0x56, +0xb0,0x0c,0x15,0x2a,0xf4,0x4a,0x56,0xe4,0xc5,0x8d,0xc1,0xd8, +0xa6,0x04,0x99,0x96,0x24,0x5b,0xb6,0x10,0x3c,0xbe,0x05,0x6a, +0x94,0xa7,0xcf,0x97,0x1a,0x89,0x06,0x3d,0x4a,0x31,0xa3,0xde, +0x98,0x39,0x05,0xff,0xcd,0x19,0x74,0x2f,0xd6,0x2b,0x53,0xab, +0x52,0x5d,0xfc,0xd5,0x31,0x63,0xa8,0x64,0x27,0x3e,0x9e,0x59, +0xb6,0xa1,0xe5,0xcb,0x5b,0xcd,0x32,0x66,0x39,0xd9,0xa1,0xe4, +0xc6,0x48,0xb5,0x56,0x55,0x58,0x51,0x2d,0x27,0xd5,0xaa,0xeb, +0xae,0x44,0x4d,0x72,0x35,0x04,0xb7,0x47,0x11,0x0f,0xbe,0x2b, +0x94,0x2f,0x55,0xbf,0x58,0x35,0x22,0x96,0xd9,0xfb,0x27,0xef, +0xdd,0x58,0x11,0x82,0xde,0x5c,0x1c,0x39,0x57,0xd3,0xca,0x37, +0x4f,0x0e,0x8b,0xf6,0x39,0x55,0xcc,0xc4,0x47,0x73,0xe5,0x4c, +0x9c,0x73,0x58,0xd4,0x74,0xf1,0x74,0x6f,0x0d,0xd4,0x62,0xef, +0xee,0x2a,0xf3,0xda,0xa4,0xdd,0xdb,0x30,0x53,0x9d,0xe9,0xfb, +0xa2,0x2f,0x6f,0x9b,0x78,0xe0,0xc4,0x4c,0xb3,0x47,0xff,0x7c, +0xbd,0x3a,0xe4,0x89,0xd3,0x29,0x27,0xdc,0x4f,0xd4,0x3f,0xea, +0x92,0xa3,0xce,0xb8,0xe2,0x0a,0x3c,0x2e,0x3a,0xd4,0x14,0x58, +0x70,0x41,0xbb,0xc0,0x63,0x90,0x41,0x07,0x6f,0x93,0x8f,0x3d, +0x01,0x27,0xb4,0x50,0x40,0x97,0x86,0xc2,0x90,0x42,0x00,0xc7, +0xb2,0xef,0x32,0xec,0xae,0x03,0xb1,0x3e,0x10,0x4d,0x2b,0xcb, +0x44,0xe6,0x08,0x04,0x30,0x45,0xe8,0xfa,0x42,0x01,0xc6,0x18, +0xd3,0xab,0x28,0x46,0xff,0x18,0x67,0xb4,0x4d,0x43,0x0c,0xe3, +0x9b,0x4f,0x47,0xdd,0x36,0xec,0xf1,0x47,0xac,0x50,0xa4,0x6f, +0x40,0x22,0xf1,0x13,0xb2,0x48,0xe5,0x0e,0x0c,0xb1,0xc5,0x1e, +0xa5,0x83,0xec,0xb0,0xde,0x84,0x93,0x52,0x3d,0x9c,0x82,0x74, +0x92,0xa5,0x2b,0xb1,0xdc,0x92,0xcb,0x2e,0xbd,0xfc,0x12,0x4c, +0x2c,0x9b,0x0c,0x93,0xcc,0x32,0xcd,0x3c,0x13,0xcd,0x34,0xd5, +0x5c,0xb3,0x4a,0xe1,0xd8,0x7c,0x13,0x4b,0xf4,0x2a,0x84,0x93, +0x4e,0x33,0xe5,0x74,0xd2,0x30,0x08,0xd8,0x99,0xb1,0x9d,0x3c, +0xbf,0xd4,0x12,0x4f,0xf7,0x7c,0xa4,0xb2,0x2f,0x76,0x0c,0x3d, +0x34,0xb7,0x3a,0x15,0x25,0x53,0xa3,0x43,0x11,0xd5,0x11,0x82, +0x3e,0x79,0x32,0xf4,0xaf,0x48,0x25,0xcd,0x72,0xcf,0x2e,0xf5, +0xbc,0x74,0x4b,0x08,0x42,0xf8,0x14,0xd4,0x19,0x41,0x0d,0xb5, +0x50,0x47,0x4d,0x4d,0x74,0xd1,0x54,0x21,0xcd,0xc8,0xd4,0x53, +0x2d,0xb4,0x94,0x53,0x8a,0x1e,0xcd,0xa9,0x9d,0x5a,0x69,0x9b, +0x35,0x4e,0x76,0x62,0x05,0x32,0x04,0x13,0x7a,0x33,0x21,0x84, +0x4a,0x7b,0x35,0x81,0x58,0x62,0x83,0xc5,0xb4,0xd5,0x64,0x51, +0x55,0x95,0xd9,0x2c,0x59,0x4d,0xb6,0xd5,0x39,0x5b,0xaa,0x95, +0x5a,0x2b,0x1d,0x75,0x8d,0xda,0x58,0xf5,0xbc,0xb6,0x53,0x5d, +0xa5,0x55,0xaf,0xd7,0x8c,0xa2,0x88,0x22,0x23,0x60,0xad,0x0c, +0x17,0x3d,0x73,0x73,0x82,0x56,0x59,0x4a,0x01,0x6d,0x96,0xce, +0x46,0xf7,0x64,0x37,0x5a,0xde,0xb2,0xad,0x16,0xa8,0x59,0x61, +0xb5,0xb6,0x5e,0x20,0x0d,0xb5,0x15,0xcf,0xff,0x5e,0xc9,0xcd, +0x84,0xe0,0x4c,0x20,0x88,0x42,0xdd,0x96,0x04,0x26,0x38,0x23, +0x82,0x11,0x3e,0x56,0x56,0x7a,0x11,0x3d,0xf5,0x5d,0x78,0xcf, +0x94,0x77,0x62,0x89,0x29,0x8d,0xef,0x5e,0x7c,0x23,0xce,0x74, +0x5a,0x80,0x3f,0x76,0xd5,0x5f,0x5d,0x77,0xcd,0x50,0x60,0x08, +0x08,0x22,0xe8,0xe0,0x84,0x3d,0x35,0x21,0x8a,0x4c,0x86,0xc9, +0x68,0x98,0x4c,0x1e,0xe6,0x57,0xe3,0x6d,0x29,0xfe,0xd6,0xe2, +0x40,0x75,0xbe,0x56,0xe3,0x8d,0x39,0xee,0x58,0xe4,0x96,0x10, +0xdd,0x77,0x5d,0x68,0x79,0xce,0xd7,0xe4,0xa5,0x73,0x5a,0x78, +0x98,0xbd,0x5a,0x86,0xf8,0xe5,0x98,0x67,0x56,0xd9,0xe6,0x84, +0x93,0x96,0x78,0xdf,0x67,0xdd,0x75,0xba,0xe7,0x2a,0x7f,0xd6, +0xa8,0xda,0xa0,0xbf,0x85,0x95,0x68,0xd7,0x28,0xf5,0x56,0xe4, +0x9f,0xfb,0xe5,0xf0,0x50,0x8f,0x39,0x84,0x3a,0x26,0x08,0xb2, +0xa6,0x1a,0x6a,0x9a,0xef,0xae,0x54,0xe3,0x3e,0xfb,0xc4,0x00, +0x70,0x8c,0xf7,0xac,0x38,0x6c,0xb1,0xaf,0xcd,0x08,0x70,0x0c, +0x22,0x8d,0x34,0xe7,0x57,0x89,0xce,0xd6,0xb5,0x6d,0x6d,0x55, +0x9b,0x5e,0xb0,0x75,0x96,0xfb,0xd5,0xbc,0xb1,0xbe,0x99,0x22, +0xcd,0x6b,0xe6,0x7c,0x52,0x76,0x6d,0xb5,0x35,0xf1,0xc0,0xbd, +0x1e,0x1c,0x6c,0x55,0x05,0xd7,0xa8,0x74,0xc5,0x47,0x6f,0xa7, +0x72,0x0e,0x1f,0x87,0xdc,0xe8,0x7f,0x01,0x76,0x5b,0xd9,0x92, +0x4d,0x3e,0x39,0xbe,0x85,0x0b,0x76,0xd8,0x65,0xdf,0x1b,0xde, +0x5b,0x3d,0x65,0x21,0xff,0xbb,0x75,0xd3,0x6b,0x3d,0x3a,0xf5, +0xff,0x37,0x31,0x9e,0x3c,0xf9,0xc0,0xfd,0x2e,0xfb,0x6d,0xc7, +0x67,0xb7,0xd5,0x51,0xc8,0x1b,0x87,0x74,0xde,0xa6,0x79,0xe7, +0x4d,0x60,0x72,0x0f,0x06,0xbd,0x73,0x98,0xc5,0x1f,0x57,0xeb, +0x52,0x11,0xbd,0xd7,0x52,0x08,0x4a,0xbf,0x00,0xfe,0x0b,0xd0, +0xee,0xba,0x79,0x3b,0x33,0xaa,0x16,0xf2,0xf8,0x2f,0x28,0xbd, +0x7d,0xf6,0x49,0x86,0xf4,0x7a,0x7d,0x32,0x95,0xff,0x62,0xc7, +0x3d,0xc9,0xf9,0x2d,0x75,0x2f,0xf3,0x15,0x04,0x8c,0x25,0xac, +0x62,0x15,0x0b,0x62,0x2d,0x21,0x54,0xed,0xf6,0x94,0x36,0xe4, +0xe9,0xef,0x7e,0x93,0x4b,0x1b,0xe1,0xd2,0x44,0xb6,0x8e,0x65, +0xb0,0x4f,0x10,0xd0,0x9f,0xf4,0xd0,0x46,0x3d,0x90,0x01,0x66, +0x59,0x59,0xba,0x1e,0xee,0x3e,0x58,0x40,0xb8,0x1d,0x70,0x71, +0x71,0x1a,0xd5,0xa7,0x44,0x35,0x43,0x2b,0x41,0xee,0x37,0x15, +0xb4,0x60,0x9f,0xe2,0x07,0x42,0x10,0xce,0x2e,0x85,0x17,0xfb, +0xe1,0xe3,0x7c,0x28,0x42,0xf8,0xf5,0x2f,0x6d,0x27,0xfc,0xe1, +0x9c,0x4a,0x68,0xc2,0xec,0xb5,0x30,0x77,0xdc,0x5b,0xdb,0xf4, +0xbe,0x17,0x1f,0x41,0x89,0x2d,0x85,0x25,0xdc,0x50,0x13,0x8f, +0x27,0xc2,0x22,0x06,0xf0,0x83,0x1c,0x8c,0xd3,0x10,0xc1,0x58, +0x44,0xf9,0x51,0x31,0x6d,0x80,0x61,0x1f,0x75,0xb8,0x88,0x3b, +0xdb,0x41,0xf1,0x7f,0xaf,0x9a,0x18,0x15,0xeb,0x57,0xa6,0x26, +0x92,0x91,0x7d,0xaf,0x0b,0x61,0xb5,0xb4,0xe8,0xc1,0x30,0xd6, +0x31,0x4a,0x44,0xf4,0xa3,0x06,0x09,0x39,0x3d,0x2e,0xe2,0xf0, +0x83,0x19,0x22,0x9a,0xff,0xe8,0x1e,0x17,0x45,0xb8,0x1d,0x8d, +0x76,0x3d,0xd3,0x22,0x18,0xe9,0xd8,0xb5,0x23,0x56,0xeb,0x1d, +0x99,0x7c,0xc7,0xfc,0x8a,0x98,0xc0,0x4e,0x42,0x4e,0x93,0x9b, +0xac,0xd6,0x11,0xbb,0x86,0xbf,0x32,0xae,0xf1,0x55,0x20,0xa4, +0xd7,0xf5,0x98,0xa7,0xbb,0xb8,0xa1,0x72,0x55,0x13,0xe4,0xc9, +0x15,0x67,0xb9,0x38,0x4a,0x22,0xb0,0x7d,0x19,0xc1,0xa0,0xad, +0x42,0x59,0x4a,0x41,0x4a,0x6b,0x90,0xec,0xdb,0x57,0x2f,0x6d, +0x85,0xc1,0x0c,0xde,0xef,0x90,0x1f,0x0c,0xa1,0xd3,0x72,0x29, +0xb1,0x00,0x3e,0xcb,0x72,0x13,0x43,0x26,0xe6,0x50,0x66,0x43, +0x70,0x59,0xd3,0x5e,0xb7,0xa4,0x63,0xfc,0x12,0xd7,0xbe,0x50, +0x66,0xd2,0x96,0x94,0xac,0x50,0x32,0xf3,0x08,0x81,0x6f,0x8a, +0x12,0x79,0x18,0xe8,0xa1,0x29,0x6f,0xd9,0x3c,0x58,0x0d,0x8e, +0x91,0x1b,0x84,0x9d,0xd0,0x1e,0x69,0x4e,0x73,0x6e,0x12,0x9d, +0xcc,0x1c,0xd6,0x03,0x23,0xf8,0xb4,0x07,0x36,0x90,0x37,0x41, +0xcb,0xd8,0x9e,0xb8,0x19,0x38,0x4a,0x9d,0x53,0x4f,0x6e,0x74, +0xa4,0xfa,0xb8,0xb6,0x27,0x84,0x52,0x2a,0x71,0x3d,0x1c,0xa8, +0xd9,0x3a,0xb5,0x3c,0x77,0x25,0x4b,0x9e,0x16,0x8d,0xe6,0x41, +0xbf,0x89,0x34,0x94,0xf9,0x6a,0x5c,0xe3,0x62,0x60,0x3f,0x5f, +0x36,0x3e,0x91,0xa6,0x0f,0x85,0xdd,0xcb,0x19,0x3c,0x51,0x87, +0x41,0x8e,0x82,0xf3,0x68,0xec,0x0a,0xa2,0xb3,0x14,0xca,0x52, +0x87,0x6a,0x72,0x5b,0x46,0x24,0x65,0x4e,0x13,0x2a,0xd0,0x84, +0x8a,0x51,0x85,0xb0,0xd3,0xd9,0xe9,0x76,0xff,0x57,0x48,0xc6, +0x9d,0x50,0x8e,0x2f,0xc5,0x29,0x35,0xc1,0x05,0x33,0xbb,0x15, +0x6c,0x6a,0xae,0x49,0xd9,0xef,0xa2,0xca,0xb4,0x89,0xca,0x34, +0xa6,0xee,0x3a,0x22,0xa2,0x7a,0x79,0xb8,0xa1,0x02,0x95,0xa6, +0xcc,0xbb,0x56,0x57,0x29,0x45,0xca,0xac,0xaa,0xb4,0x72,0x71, +0x64,0x23,0xe9,0xbc,0xe6,0x35,0x3e,0xf2,0x51,0x71,0xf4,0x4c, +0xea,0x4d,0x89,0x59,0x34,0xf0,0xc1,0xcc,0x60,0x2c,0x23,0x9e, +0xc2,0x9c,0xba,0xb2,0x99,0x91,0x0f,0x77,0x44,0x8d,0xd6,0xda, +0x2e,0x5a,0x58,0xe6,0x29,0x74,0xa6,0xb1,0x54,0x9a,0xe0,0x6c, +0xda,0x56,0xc2,0xca,0x34,0xb0,0x00,0x74,0x9f,0xe9,0x62,0xba, +0x47,0xe8,0x19,0x74,0xa3,0x5c,0x5d,0x6a,0x24,0xef,0x6a,0x35, +0xbd,0x81,0xae,0x6a,0x2a,0xa3,0x59,0x55,0x29,0xe8,0xae,0x91, +0x0d,0xd6,0x8b,0x5f,0x15,0x68,0x2b,0xed,0x57,0xd3,0xc5,0x1e, +0x4d,0x7e,0x68,0xed,0x17,0x51,0x97,0xb6,0xb8,0xd6,0xb5,0xb5, +0x6b,0xb7,0x45,0x6a,0x86,0xa2,0x05,0xce,0x44,0xf6,0x0e,0xaf, +0x57,0xfb,0x5c,0xf0,0xfa,0x3a,0x5a,0xce,0x8d,0xed,0x37,0x02, +0x6c,0x17,0x41,0xcd,0x6a,0x58,0xc8,0x02,0x32,0x95,0xae,0x35, +0xac,0x2e,0xb7,0x2a,0xdb,0xf5,0xfd,0x66,0x6c,0xd6,0x9b,0x2c, +0xe0,0xb6,0xba,0xa9,0xc5,0xc1,0x8f,0x7f,0x72,0xe5,0x6d,0xb4, +0xda,0xc8,0xc6,0x85,0xa9,0x6c,0x66,0x7b,0x0d,0x2d,0x7a,0xc5, +0xa5,0x2e,0x5a,0xee,0xab,0x5d,0x93,0x35,0xe6,0x59,0xbd,0x9a, +0x2a,0xc6,0x4e,0x57,0xa7,0xfb,0x8b,0xab,0x1b,0x3d,0x8a,0x42, +0xff,0xb0,0x4e,0x6b,0xbb,0xd5,0xf5,0x6e,0x31,0xf5,0xbb,0x5f, +0x20,0x29,0x77,0x80,0x2d,0x64,0xe2,0x54,0xa1,0x0a,0xda,0x94, +0x3d,0xb5,0xbd,0xfd,0x0c,0xaa,0x13,0xbb,0xb7,0x5d,0x75,0x4a, +0x74,0xa0,0x89,0xad,0x13,0xc6,0xc6,0x36,0xc2,0x6e,0x3e,0x96, +0x52,0xb0,0xac,0x68,0x80,0x63,0x0b,0x43,0x1e,0x16,0x38,0xa1, +0x07,0x56,0x29,0xab,0x2c,0xeb,0xb7,0xdd,0xf6,0x25,0x5c,0x21, +0x25,0x57,0xfa,0x4a,0x2a,0xe3,0x91,0xb2,0xa7,0x8d,0x40,0xb3, +0x30,0xff,0x0e,0xb8,0xcc,0xc2,0x01,0x45,0x95,0x83,0x8b,0xde, +0x7e,0xaf,0x95,0x46,0x2e,0xb5,0xef,0xc2,0x39,0x1d,0x9c,0x21, +0xc1,0x9b,0x53,0x15,0xe7,0x94,0x94,0x97,0x74,0xf1,0xd9,0xf6, +0x09,0x41,0x07,0xfe,0x53,0xc2,0x40,0x61,0x65,0x85,0x6f,0xbb, +0xc4,0xff,0x36,0x6b,0x90,0xac,0x0b,0x6f,0xf7,0x56,0xa8,0xa9, +0xbf,0x75,0x97,0xb9,0xb6,0x34,0xa2,0x81,0x01,0x28,0x4d,0xf0, +0x26,0x99,0x8a,0x2f,0x86,0x31,0x36,0x79,0x32,0xc3,0x2c,0xd3, +0x2a,0x80,0xf3,0xda,0x6e,0x98,0xbf,0x5c,0x38,0x3e,0xef,0x79, +0x5e,0x65,0x3c,0xf2,0x99,0x95,0x6c,0xc4,0x70,0x8a,0x90,0xcd, +0xb2,0xcb,0x18,0xa2,0xd5,0x89,0x44,0xa1,0x46,0x57,0xc3,0x77, +0x52,0x8f,0x38,0x99,0x87,0x43,0xe8,0x86,0xed,0xcf,0xeb,0x13, +0x74,0x9c,0x8a,0xd9,0xd3,0x34,0x8f,0xce,0x8b,0xe2,0x5d,0x2b, +0x34,0x09,0xca,0xdd,0x43,0xa7,0x58,0x75,0xed,0xdc,0xe0,0xa5, +0x7f,0x1c,0x48,0x65,0x8a,0x73,0xc4,0x85,0xd6,0xef,0x19,0x9b, +0x69,0xb9,0x4e,0x57,0xff,0x58,0xca,0xdf,0x75,0xf2,0xa2,0xc8, +0x79,0x3c,0x4b,0xb7,0xba,0x83,0x43,0xec,0x35,0x53,0x15,0xb9, +0xe8,0x59,0x3b,0x5a,0xce,0xf6,0x72,0x5f,0x6c,0xf5,0x7c,0xc9, +0xf6,0xed,0x0f,0xd5,0x56,0x94,0x25,0x4d,0xb3,0xa8,0xcd,0x5c, +0xb2,0x1a,0xd8,0x6c,0x3c,0xa6,0xb5,0xf1,0x34,0xcf,0x66,0xcf, +0x9a,0xd6,0xd4,0x4a,0xb6,0x6e,0xce,0x5c,0xe2,0x4f,0x7f,0x17, +0xda,0xe3,0x7e,0x1a,0x9d,0xb3,0x64,0xe7,0x4a,0xb5,0xb3,0xcf, +0xd9,0x06,0x53,0x30,0x81,0x58,0x51,0x5c,0xcb,0xcf,0xd0,0xa3, +0x53,0x77,0x5f,0x48,0x27,0xe0,0x25,0x3f,0x3b,0xdd,0xea,0x56, +0x20,0x3f,0xaf,0x4c,0x70,0x9e,0xac,0x30,0xde,0xf2,0x6e,0x6d, +0x99,0xed,0xad,0xda,0x16,0x33,0xce,0xd6,0x24,0xf6,0x34,0xa8, +0xdf,0x9c,0xe8,0x3a,0x9b,0xef,0x57,0x24,0x0d,0x9f,0x8c,0x51, +0x1a,0xb2,0x5f,0x2b,0xfc,0xc7,0xf4,0x06,0xe4,0xe2,0x30,0xaa, +0xe0,0x03,0x4b,0x7c,0x8a,0x00,0xff,0xb0,0xa8,0xf0,0xfa,0x54, +0xe0,0xe1,0x0d,0xaf,0xbf,0xdb,0x2b,0x90,0xa7,0x0d,0xf2,0x90, +0xd3,0xb2,0x5b,0xe4,0x35,0xb2,0xec,0xd2,0x99,0xe4,0x40,0xa3, +0x7b,0xcc,0x79,0x4a,0x99,0x5f,0xd5,0x0b,0xb5,0x95,0xcd,0xdc, +0xe6,0x49,0x77,0x5e,0x6f,0xd1,0xc9,0x59,0xc7,0xed,0x18,0xb7, +0x70,0x0d,0xaf,0xd0,0x5b,0xee,0x92,0xe1,0xc2,0xdc,0x6a,0x2f, +0xb9,0x3a,0xb6,0x95,0xde,0x75,0xdd,0x9c,0xaa,0xae,0xc4,0x56, +0x76,0x37,0x1d,0x5e,0xc4,0x95,0xc3,0x38,0xb8,0x75,0x2b,0x7a, +0xda,0x1f,0xb0,0x75,0xaf,0xbf,0xbd,0x83,0xff,0x9a,0x0d,0xbb, +0xad,0xff,0x86,0xdb,0x57,0x3e,0xdc,0x7d,0xbb,0x06,0x8a,0xd1, +0x59,0xe6,0xe0,0xe0,0x1e,0x9d,0x7c,0x70,0x17,0xfc,0xbc,0xe5, +0xbe,0xd9,0x2a,0x4e,0x5a,0xa8,0xf4,0x2d,0xea,0xc3,0xe7,0xe9, +0xc0,0x98,0x41,0x75,0xed,0x8f,0xff,0x5d,0xe0,0x07,0x5f,0xf9, +0x9c,0xd3,0xd5,0xf0,0x74,0x57,0xfc,0x1b,0x11,0xa9,0x51,0xb4, +0xf7,0x06,0x7d,0x1a,0x37,0x1f,0xc7,0xef,0x6c,0x79,0xd3,0xd7, +0x13,0x9f,0xf8,0x6c,0xdf,0x81,0x97,0x27,0xd8,0xbb,0x87,0xd1, +0xdb,0x54,0xc7,0x72,0xc1,0xad,0x7c,0x7a,0xdb,0xe7,0x6a,0x6d, +0xd3,0xb4,0xab,0x22,0x43,0xe8,0x4c,0x84,0x8b,0xba,0x73,0xec, +0xde,0xbb,0xf0,0x6f,0x5f,0xfc,0xf8,0xb4,0xea,0xb7,0x1c,0x0a, +0x32,0xb4,0xb6,0x8c,0xba,0x41,0x45,0x1a,0xe7,0xc6,0x97,0xfe, +0xd7,0x21,0x29,0x76,0x72,0x77,0x2c,0x9e,0xd8,0xaf,0xde,0xf4, +0xb9,0xbf,0xf4,0x94,0x5b,0x1f,0xf1,0x04,0x44,0x7e,0x12,0xb7, +0xdf,0x7d,0xf3,0xa3,0x69,0xa8,0x6c,0xdb,0xfd,0x5a,0xc9,0x9f, +0x60,0xf1,0xab,0xf5,0xfc,0xf1,0xb7,0x23,0x99,0x11,0xc8,0x7a, +0x22,0x8e,0x5f,0x7b,0x32,0x95,0xff,0xfe,0xe7,0x6f,0x62,0xba, +0x03,0xd1,0xfd,0xb0,0xc7,0x85,0xf8,0x8f,0x00,0x8f,0x8c,0xfe, +0x62,0x08,0x80,0x9e,0xe9,0x89,0x04,0x70,0x00,0x0b,0xd0,0x01, +0x75,0x07,0xfc,0xf8,0xed,0x99,0x28,0x08,0x5f,0xa4,0x6b,0xdf, +0x1e,0x10,0x03,0x91,0x65,0x77,0xfe,0x8f,0x88,0x00,0xc3,0x76, +0xb6,0x88,0x6b,0x32,0x50,0x04,0xd9,0xe8,0xee,0x38,0xf0,0xb7, +0xff,0x94,0xcc,0x90,0x4e,0x0b,0xfe,0x46,0x90,0x05,0x93,0x66, +0xfd,0xd8,0x6f,0xe7,0xbe,0x4a,0x6e,0x6a,0x8a,0xeb,0x5a,0xb0, +0xf8,0x60,0xa8,0xdb,0x62,0x50,0x5f,0x66,0x50,0x69,0x6c,0xd0, +0x07,0x5d,0xf0,0xf0,0xc2,0xcf,0xe9,0x86,0x8a,0x22,0x30,0x87, +0xbf,0x7e,0x10,0x09,0xbd,0xab,0xa2,0x86,0x90,0x5b,0x3c,0x4e, +0x5b,0x56,0x10,0x09,0x45,0x50,0x09,0x97,0x70,0x57,0x88,0x10, +0xcf,0xaa,0x10,0x57,0xa2,0xd0,0x06,0xa7,0x70,0xc4,0x42,0xe7, +0xdd,0x4e,0x26,0xda,0xb4,0xd0,0x07,0x13,0x2e,0x4b,0x0a,0x85, +0x4f,0xfc,0x44,0x0c,0xd3,0x50,0x88,0xdc,0x84,0xfb,0xd6,0xa1, +0x00,0xde,0x10,0x0e,0x1b,0x40,0x0e,0xe7,0x70,0x1d,0x16,0xc2, +0x0d,0xe1,0xf0,0x0d,0xe7,0x50,0x0f,0x1b,0x20,0x4d,0xf0,0x10, +0x0f,0xf7,0xb0,0x01,0xea,0xd0,0x0f,0xe3,0x10,0x10,0xf9,0x30, +0x4d,0xee,0xf0,0x0f,0xf7,0xb0,0x0e,0x01,0x00,0x11,0x09,0x11, +0x10,0xfb,0x70,0x10,0x0b,0x00,0x10,0x05,0x31,0x12,0x0b,0x91, +0x0f,0xd7,0x01,0x13,0x33,0x51,0x13,0x35,0xd1,0x0e,0x37,0xd1, +0x13,0x33,0x91,0x11,0x07,0x71,0x12,0xed,0x50,0x14,0x0b,0xf1, +0x13,0x4f,0x91,0x11,0x4f,0xf1,0x13,0x23,0x51,0x12,0x15,0x11, +0x00,0x58,0xd1,0x12,0x53,0x51,0x15,0x41,0x51,0x16,0x67,0x11, +0x13,0x43,0xd1,0x0f,0x47,0x11,0x17,0x13,0x71,0x12,0x6d,0x11, +0x14,0x7d,0x51,0x13,0x61,0xd1,0x15,0x85,0xf1,0x11,0x1b,0x31, +0x0f,0x5d,0x71,0x17,0x1d,0x71,0x0f,0x93,0xf1,0x18,0xf5,0x70, +0x11,0x8d,0xb1,0x15,0xff,0x01,0x91,0x18,0xe9,0xf0,0x15,0x2b, +0xb1,0x10,0xa7,0x51,0x0e,0x29,0xb1,0x14,0x8b,0x71,0x1b,0xa9, +0x91,0x19,0xa3,0x71,0x19,0xa1,0x51,0x17,0xc5,0xf1,0x1a,0xad, +0xd1,0x19,0xab,0xb1,0x1b,0xf5,0x10,0x1b,0x03,0x11,0x1d,0x73, +0xb1,0x10,0xbf,0x71,0x1c,0xd3,0x71,0x0e,0xe1,0x11,0x19,0xc9, +0x51,0x1a,0xcd,0x91,0x1a,0xd7,0x51,0x0e,0xd7,0x51,0x1b,0xdd, +0x91,0x1b,0xfd,0xd1,0x1b,0xed,0x31,0x1c,0xe5,0xf1,0x19,0xe5, +0x71,0x1f,0xf1,0x31,0x1b,0xdb,0x91,0x17,0xf7,0x90,0x1f,0x15, +0x52,0x19,0xf5,0x90,0x1e,0xcf,0x31,0x22,0x07,0x12,0x20,0x13, +0x72,0x22,0xd5,0x11,0x21,0xd9,0x51,0x1f,0x1b,0xa0,0x21,0x37, +0xf2,0x22,0xd9,0xf1,0x23,0xe5,0xf0,0x23,0x0b,0xb2,0x22,0xe7, +0xb0,0x23,0x33,0xf2,0x20,0x09,0xd2,0x21,0x9b,0x91,0x22,0x17, +0xd2,0x22,0x05,0x12,0x22,0x61,0x12,0x24,0x65,0x32,0x25,0x4b, +0xb2,0x1f,0x5d,0xd2,0x24,0x33,0xf2,0x26,0x1f,0x72,0x1e,0x65, +0x92,0x24,0x71,0x52,0x24,0x7d,0x92,0x14,0x4b,0xb2,0x26,0x71, +0x72,0x27,0x59,0x12,0x23,0x55,0xd2,0x23,0x85,0x32,0x24,0x2f, +0x51,0x25,0x9b,0xf2,0x24,0x0d,0x92,0x23,0x75,0x72,0x25,0xc1, +0x31,0x26,0x9f,0x92,0x26,0x9d,0xd2,0x26,0x87,0x12,0x28,0xa7, +0x52,0x29,0x51,0xd2,0x2b,0xb7,0x72,0x29,0xb1,0x52,0x2a,0x47, +0x92,0x2b,0x79,0xb2,0x28,0x79,0xf2,0x28,0xad,0x32,0x27,0xbf, +0xb2,0x2c,0x99,0x32,0x2b,0xcd,0x12,0x2a,0xa9,0x72,0x23,0xa3, +0x92,0x28,0x2f,0xf1,0x1e,0xf1,0xf0,0x19,0xff,0xf3,0xd2,0x0f, +0x19,0x91,0x2f,0xdf,0x70,0x2f,0x19,0x12,0x2c,0x07,0xb1,0x0e, +0x2d,0xb1,0x2e,0xfd,0xb0,0x30,0xcb,0x71,0x10,0xfd,0x52,0x30, +0xf5,0xd2,0x0e,0xff,0x12,0x0e,0x19,0x33,0x29,0xe1,0x30,0x30, +0x27,0xb3,0x2b,0x09,0x13,0x00,0x0c,0x73,0x30,0x11,0x33,0x33, +0x15,0xb3,0x2f,0xd7,0x01,0x32,0x2b,0xb3,0x2d,0x3f,0x33,0x34, +0x1f,0xb3,0x31,0xef,0x12,0x33,0x35,0x53,0x2a,0x53,0xd3,0x33, +0xf1,0x50,0x32,0x47,0x13,0x30,0x4d,0xd3,0x32,0x23,0x13,0x34, +0x4f,0x33,0x36,0x5f,0x33,0x2d,0x91,0x12,0x36,0x0b,0x20,0x31, +0x21,0x53,0x37,0xd3,0xb2,0x37,0x6d,0x93,0x36,0x4b,0x13,0x37, +0xc3,0xd2,0x35,0x6b,0x73,0x36,0x45,0x33,0x37,0xd9,0x12,0x38, +0x3b,0xd3,0x37,0x99,0xd3,0x38,0x79,0xd3,0x39,0x85,0xf3,0x0d, +0x8b,0x13,0x33,0xad,0x33,0x12,0xb1,0xd3,0x31,0xb5,0x13,0x35, +0x39,0x53,0x35,0xbb,0xd3,0x31,0xbf,0xf3,0x38,0x89,0x13,0x39, +0x77,0xb3,0x3a,0xcb,0xb3,0x39,0xb9,0xf3,0x32,0xbd,0xb3,0x35, +0xd1,0x32,0x3a,0x83,0x73,0x36,0xcf,0x93,0x3c,0x9f,0x53,0x3d, +0xa5,0xb3,0x3e,0x7f,0xf3,0x3d,0xa7,0x33,0x3e,0xa1,0x93,0x35, +0xe9,0x13,0x3d,0xf3,0xf3,0x3e,0x0b,0xa0,0x3e,0x95,0x33,0x3a, +0xf1,0xb3,0x3f,0xa9,0x93,0x3f,0xd9,0xd3,0x3f,0xe7,0x13,0x41, +0x07,0x54,0x36,0xcd,0x33,0x41,0xc3,0xb3,0x3d,0x0d,0x54,0x41, +0x1b,0xf4,0x3f,0xaf,0xf3,0x42,0xb3,0x33,0x43,0xb7,0x73,0x43, +0xc1,0x93,0x32,0xf5,0x13,0x42,0xc5,0x53,0x3a,0x45,0x54,0x3e, +0xff,0x85,0x93,0x40,0x59,0xd1,0x41,0x03,0x54,0x44,0xe1,0x33, +0x44,0xdb,0x93,0x45,0x97,0xb3,0x16,0x67,0xb1,0x13,0x81,0x31, +0x46,0x55,0x71,0x46,0x81,0x11,0x47,0x6b,0x14,0x47,0x6d,0x51, +0x47,0x6d,0xb4,0x43,0x6f,0xf3,0x47,0x87,0xd3,0x44,0x1f,0x74, +0x39,0x57,0x14,0x44,0x8b,0xd4,0x45,0x8f,0xb4,0x40,0x05,0x54, +0x0d,0xc1,0x24,0x48,0x4f,0x54,0x43,0x19,0x74,0x3f,0x8d,0x94, +0x44,0x23,0xf4,0x43,0xab,0xb4,0x49,0xb3,0x54,0x4b,0xb7,0x94, +0x4b,0xbb,0xd4,0x4b,0xbf,0x14,0x4c,0xc3,0x54,0x4c,0xc7,0x94, +0x4c,0xcb,0xd4,0x4c,0xcf,0x14,0x4d,0xd3,0x54,0x4d,0xd7,0x94, +0x4d,0xdb,0xd4,0x4d,0xdf,0x14,0x4e,0xe3,0x54,0x4e,0xe7,0x94, +0x4e,0xeb,0xd4,0x4e,0xef,0x14,0x4f,0xf3,0x54,0x4f,0xf7,0x94, +0x4f,0xfb,0xd4,0x4f,0xff,0x14,0x50,0x03,0x55,0x50,0x07,0x95, +0x50,0x0b,0xd5,0x50,0x0f,0x15,0x51,0x13,0x55,0x51,0x17,0x95, +0x51,0x1b,0xd5,0x51,0x1f,0x15,0x52,0x23,0x55,0x52,0x27,0x95, +0x52,0x2b,0xd5,0x52,0x2f,0x15,0x53,0x33,0x55,0x53,0x37,0x95, +0x53,0x3b,0xd5,0x53,0x3f,0x15,0x54,0x43,0x55,0x54,0x47,0x95, +0x54,0x4b,0xd5,0x54,0x4f,0x15,0x55,0x53,0x55,0x55,0x57,0x95, +0x55,0x5b,0xd5,0x55,0x5f,0x15,0x56,0x63,0x55,0x56,0x67,0x95, +0x56,0x6b,0xd5,0x56,0x6f,0x15,0x57,0x73,0x55,0x57,0x77,0x95, +0x57,0x7b,0xd5,0x57,0x7f,0x15,0x58,0x83,0x55,0x58,0x87,0x95, +0x58,0x8b,0xd5,0x58,0x8f,0x15,0x59,0x93,0x55,0x59,0x97,0x95, +0x59,0x9b,0xd5,0x59,0xff,0x9f,0x15,0x5a,0xa3,0x55,0x5a,0xa7, +0x95,0x5a,0xab,0xd5,0x5a,0xaf,0x15,0x5b,0xb3,0x55,0x5b,0xb7, +0x95,0x5b,0xbb,0xd5,0x5b,0xbf,0x15,0x5c,0xc3,0x55,0x5c,0xc7, +0x95,0x5c,0xcb,0xd5,0x5c,0xcf,0x15,0x5d,0xd3,0x55,0x5d,0xd7, +0x95,0x5d,0xdb,0xd5,0x5d,0xdf,0x15,0x5e,0xe3,0x55,0x5e,0xe7, +0x95,0x5e,0xeb,0xd5,0x5e,0xef,0x15,0x5f,0xf3,0x55,0x5f,0xf7, +0x95,0x5f,0xfb,0xd5,0x5f,0xff,0x15,0x60,0x03,0x56,0x60,0x07, +0x96,0x60,0x0b,0xd6,0x60,0x0f,0x16,0x61,0x13,0x56,0x61,0x17, +0x96,0x61,0x1b,0xd6,0x61,0x1f,0x16,0x62,0x23,0x56,0x62,0x27, +0x96,0x62,0x2b,0xd6,0x62,0x2f,0x16,0x63,0x33,0x56,0x63,0x37, +0x96,0x63,0x3b,0xd6,0x63,0x3f,0x16,0x64,0x43,0x56,0x64,0x47, +0x96,0x64,0x4b,0xd6,0x64,0x4f,0x16,0x65,0x53,0x56,0x65,0x57, +0x96,0x65,0x5b,0xd6,0x65,0x5f,0x16,0x66,0x63,0x56,0x66,0x67, +0x96,0x66,0x6b,0xd6,0x66,0x6f,0x16,0x67,0x73,0x56,0x67,0x77, +0x96,0x67,0x7b,0xd6,0x67,0x7f,0x16,0x68,0x83,0x56,0x68,0x87, +0x96,0x68,0x8b,0xd6,0x68,0x8f,0x16,0x69,0x93,0x56,0x69,0x97, +0x96,0x69,0x9b,0xd6,0x69,0x9f,0x16,0x6a,0xa3,0x56,0x6a,0xa7, +0x96,0x6a,0xab,0xd6,0x6a,0xaf,0x16,0x6b,0xb3,0x56,0x6b,0xb7, +0x96,0x6b,0xbb,0xd6,0x6b,0xbf,0x16,0x6c,0xc3,0x56,0x6c,0xc7, +0x96,0x6c,0xcb,0xd6,0x6c,0xcf,0x16,0x6d,0xd3,0x56,0x6d,0xd7, +0x96,0x6d,0xdb,0xd6,0x6d,0xdf,0x16,0x6e,0xe3,0x56,0x6e,0xe7, +0x96,0x6e,0xeb,0xd6,0x6e,0xef,0x16,0x6f,0xff,0xf3,0x56,0x6f, +0xf7,0x96,0x6f,0xfb,0xd6,0x6f,0xff,0x16,0x70,0x03,0x57,0x70, +0x07,0x97,0x70,0x0b,0xd7,0x70,0x0f,0x17,0x71,0x13,0x57,0x71, +0x17,0x97,0x71,0x1b,0xd7,0x71,0x1f,0x17,0x72,0x23,0x57,0x72, +0x27,0x97,0x72,0x2b,0xd7,0x72,0x2f,0x17,0x73,0x33,0x57,0x73, +0x37,0x97,0x73,0x3b,0xd7,0x73,0x3f,0x17,0x74,0x43,0x57,0x74, +0x47,0x97,0x74,0x4b,0xd7,0x74,0x4f,0x17,0x75,0x53,0x57,0x75, +0x57,0x97,0x75,0x5b,0xd7,0x75,0x5f,0x17,0x76,0x63,0x57,0x76, +0x67,0x97,0x76,0x6b,0xd7,0x76,0x6f,0x17,0x77,0x73,0x57,0x77, +0x77,0x97,0x77,0x7b,0xd7,0x77,0x7f,0x17,0x78,0x83,0x57,0x78, +0x87,0x97,0x78,0x8b,0xd7,0x78,0x8f,0x17,0x79,0x93,0x57,0x79, +0x97,0x97,0x79,0x9b,0xd7,0x79,0x9f,0x17,0x7a,0xa3,0x57,0x7a, +0xa7,0x97,0x7a,0xab,0xd7,0x7a,0xaf,0x17,0x7b,0xb3,0x57,0x7b, +0xb7,0x97,0x7b,0xbb,0xd7,0x7b,0xbf,0x17,0x7c,0xc3,0x57,0x7c, +0xc7,0x97,0x7c,0xcb,0xd7,0x7c,0xcf,0x17,0x7d,0xd3,0x57,0x7d, +0xd7,0x97,0x7d,0xdb,0xd7,0x7d,0xdf,0x17,0x7e,0xe3,0x57,0x7e, +0xe7,0x97,0x7e,0xeb,0xd7,0x7e,0xef,0x17,0x7f,0xf3,0x57,0x7f, +0xf7,0x97,0x7f,0xfb,0xd7,0x7f,0xff,0x17,0x80,0x03,0x58,0x80, +0x07,0x98,0x80,0x0b,0xd8,0x80,0x0f,0x18,0x81,0x13,0x58,0x81, +0x17,0x98,0x81,0x1b,0xd8,0x81,0x1f,0x18,0x82,0x23,0x58,0x82, +0x27,0x98,0x82,0x2b,0xd8,0x82,0x2f,0x18,0x83,0x33,0x58,0x83, +0x37,0x98,0x83,0x3b,0xd8,0x83,0x3f,0x18,0x84,0x43,0x58,0x84, +0x20,0x47,0x98,0x84,0x4b,0xd8,0x84,0x4f,0x18,0x85,0x53,0x58, +0x85,0x57,0x98,0x85,0x5b,0xd8,0x85,0x5f,0x18,0x86,0x63,0x58, +0x86,0x67,0x98,0x86,0x6b,0xb8,0x4d,0x03,0x02,0x00,0x3b }; -static const unsigned int tileDataC_len=17965; +static const unsigned int tileDataC_len=21059; diff --git a/src/gui/tutorial.cpp b/src/gui/tutorial.cpp index 43ed2248d..28a38421e 100644 --- a/src/gui/tutorial.cpp +++ b/src/gui/tutorial.cpp @@ -391,6 +391,8 @@ struct FurnaceCV { int hiScore; short lastPlayerX, lastPlayerY; short fxChanBase, fxInsBase; + + FixedQueue weaponStack; // graphics unsigned short tile0[56][80]; @@ -482,18 +484,18 @@ struct FurnaceCV { static const char* cvText[]={ // intro - "Play demo songs?\n" + _N("Play demo songs?\n" "- Down: Play current song\n" - "- Up: Play demo songs", + "- Up: Play demo songs"), - "Welcome to Combat Vehicle!\n\n" + _N("Welcome to Combat Vehicle!\n\n" "Controls:\n" "X - Shoot Arrow Key - Move\n" - "Z - Special Esc - Quit", + "Z - Special Esc - Quit"), - "GAME OVER", + _N("GAME OVER"), - "High Score!" + _N("High Score!") }; void FurnaceGUI::syncTutorial() { @@ -653,16 +655,16 @@ void FurnaceGUI::drawTutorial() { if (ImGui::BeginPopupModal("Welcome",NULL,ImGuiWindowFlags_AlwaysAutoResize|ImGuiWindowFlags_NoMove|ImGuiWindowFlags_NoTitleBar)) { ImGui::PushFont(bigFont); ImGui::SetCursorPosX((ImGui::GetContentRegionAvail().x-ImGui::CalcTextSize("Welcome!").x)*0.5); - ImGui::Text("Welcome!"); + ImGui::Text(_("Welcome!")); ImGui::PopFont(); - ImGui::Text("welcome to Furnace, the biggest open-source chiptune tracker!"); + ImGui::Text(_("welcome to Furnace, the biggest open-source chiptune tracker!")); ImGui::Separator(); - ImGui::TextWrapped("here are some tips to get you started:"); + ImGui::TextWrapped(_("here are some tips to get you started:")); - ImGui::TextWrapped( + ImGui::TextWrapped(_( "- add an instrument by clicking on + in Instruments\n" "- click on the pattern view to focus it\n" "- channel columns have the following, in this order: note, instrument, volume and effects\n" @@ -672,19 +674,19 @@ void FurnaceGUI::drawTutorial() { "- hit enter to play/stop the song\n" "- extend the song by adding more orders in the Orders window\n" "- click on the Orders matrix to change the patterns of a channel (left click increases; right click decreases)" - ); + )); - ImGui::TextWrapped( + ImGui::TextWrapped(_( "if you need help, you may:\n" "- read the manual (a file called manual.pdf)\n" "- ask for help in Discussions (https://github.com/tildearrow/furnace/discussions), the Furnace Discord (https://discord.gg/EfrwT2wq7z) or Furnace in Revolt (official: https://rvlt.gg/GRPS6tmc)" - ); + )); ImGui::Separator(); - ImGui::TextWrapped("if you find any issues, be sure to report them! the issue tracker is here: https://github.com/tildearrow/furnace/issues"); + ImGui::TextWrapped(_("if you find any issues, be sure to report them! the issue tracker is here: https://github.com/tildearrow/furnace/issues")); - if (ImGui::Button("OK")) { + if (ImGui::Button(_("OK"))) { tutorial.protoWelcome=true; commitTutorial(); ImGui::CloseCurrentPopup(); @@ -1388,13 +1390,13 @@ void FurnaceCV::render(unsigned char joyIn) { } memset(tile0,0,80*56*sizeof(short)); memset(tile1,0,80*56*sizeof(short)); - startTyping(cvText[3],2,3); + startTyping(_(cvText[3]),2,3); e->setConf("cvHiScore",hiScore); e->saveConf(); curText=4; textWait=90; } else { - startTyping(cvText[2],15,13); + startTyping(_(cvText[2]),15,13); } } } @@ -1423,7 +1425,7 @@ void FurnaceCV::render(unsigned char joyIn) { inGame=true; } if (transWait==40) { - putText(CV_FONTBASE_8x16,true,fmt::sprintf("STAGE %d",stage+2),16,13); + putText(CV_FONTBASE_8x16,true,fmt::sprintf(_("STAGE %d"),stage+2),16,13); } else if (transWait>40) { for (int i=1; i<28; i++) { for (int j=0; j<40; j++) { @@ -1459,7 +1461,7 @@ void FurnaceCV::render(unsigned char joyIn) { inGame=true; } else { memset(tile1,0,80*56*sizeof(short)); - startTyping(cvText[curText++],2,3); + startTyping(_(cvText[curText++]),2,3); textWait=90; } } @@ -1630,7 +1632,12 @@ void FurnaceCVPlayer::collision(FurnaceCVObject* other) { if (!invincible) { dead=true; cv->respawnTime=48; - cv->shotType=0; + if (cv->weaponStack.empty()) { + cv->shotType=0; + } else { + cv->shotType=cv->weaponStack.front(); + cv->weaponStack.pop_front(); + } cv->soundEffect(SE_DEATH_C1); cv->soundEffect(SE_DEATH_C2); cv->createObject(x-8,y); @@ -2093,7 +2100,7 @@ void FurnaceCVEnemy1::collision(FurnaceCVObject* other) { if (other->type==CV_BULLET || other->type==CV_PLAYER) { if (--health<=0) { dead=true; - if ((rand()%7)==0) { + if ((rand()%7)==0 || (enemyType>1 && (rand()%7)==3)) { switch (rand()%10) { case 0: cv->createObject(x+(enemyType>=2?8:0),y+(enemyType>=2?8:0)); @@ -2782,6 +2789,9 @@ void FurnaceCVMine::collision(FurnaceCVObject* other) { void FurnaceCVPowerupP::collision(FurnaceCVObject* other) { if (other->type==CV_PLAYER) { dead=true; + if (cv->shotType) { + cv->weaponStack.push_front(cv->shotType); + } cv->shotType=1; cv->soundEffect(SE_PICKUP2); cv->addScore(200); @@ -2809,6 +2819,9 @@ void FurnaceCVPowerupP::tick() { void FurnaceCVPowerupS::collision(FurnaceCVObject* other) { if (other->type==CV_PLAYER) { dead=true; + if (cv->shotType) { + cv->weaponStack.push_front(cv->shotType); + } cv->shotType=2; cv->soundEffect(SE_PICKUP2); cv->addScore(200); diff --git a/src/gui/userPresets.cpp b/src/gui/userPresets.cpp index 1bbab1909..2aa30750c 100644 --- a/src/gui/userPresets.cpp +++ b/src/gui/userPresets.cpp @@ -322,7 +322,7 @@ void FurnaceGUI::drawUserPresets() { nextWindow=GUI_WINDOW_NOTHING; } if (!userPresetsOpen) return; - if (ImGui::Begin("User Systems",&userPresetsOpen,globalWinFlags)) { + if (ImGui::Begin("User Systems",&userPresetsOpen,globalWinFlags,_("User Systems"))) { FurnaceGUISysCategory* userCategory=NULL; for (FurnaceGUISysCategory& i: sysCategories) { if (strcmp(i.name,"User")==0) { @@ -334,7 +334,7 @@ void FurnaceGUI::drawUserPresets() { std::vector depthStack; if (userCategory==NULL) { - ImGui::Text("Error! User category does not exist!"); + ImGui::Text(_("Error! User category does not exist!")); } else if (ImGui::BeginTable("UserPresets",2,ImGuiTableFlags_BordersInnerV,ImVec2(ImGui::GetContentRegionAvail().x,ImGui::GetContentRegionAvail().y-ImGui::GetFrameHeightWithSpacing()))) { ImGui::TableSetupColumn("c0",ImGuiTableColumnFlags_WidthStretch,0.25f); ImGui::TableSetupColumn("c1",ImGuiTableColumnFlags_WidthStretch,0.75f); @@ -343,10 +343,10 @@ void FurnaceGUI::drawUserPresets() { ImGui::TableNextColumn(); if (ImGui::BeginChild("UList",ImVec2(ImGui::GetContentRegionAvail().x,ImGui::GetContentRegionAvail().y-ImGui::GetFrameHeightWithSpacing()))) { ImGui::AlignTextToFramePadding(); - ImGui::Text("Systems"); + ImGui::Text(_("Systems")); ImGui::SameLine(); if (ImGui::Button(ICON_FA_PLUS "##AddPreset")) { - userCategory->systems.push_back(FurnaceGUISysDef("New Preset",{})); + userCategory->systems.push_back(FurnaceGUISysDef(_("New Preset"),{})); selectedUserPreset.clear(); selectedUserPreset.push_back(userCategory->systems.size()-1); } @@ -358,20 +358,20 @@ void FurnaceGUI::drawUserPresets() { ImGui::TableNextColumn(); if (ImGui::BeginChild("UEdit",ImVec2(ImGui::GetContentRegionAvail().x,ImGui::GetContentRegionAvail().y-ImGui::GetFrameHeightWithSpacing()))) { if (selectedUserPreset.empty()) { - ImGui::Text("select a preset"); + ImGui::Text(_("select a preset")); } else { FurnaceGUISysDef* preset=selectPreset(userCategory->systems); bool doRemovePreset=false; if (preset!=NULL) { ImGui::AlignTextToFramePadding(); - ImGui::Text("Name"); + ImGui::Text(_("Name")); ImGui::SameLine(); - ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x-ImGui::CalcTextSize("Remove").x-ImGui::GetStyle().ItemSpacing.x*2.0-ImGui::GetStyle().ItemInnerSpacing.x*2.0); + ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x-ImGui::CalcTextSize(_("Remove")).x-ImGui::GetStyle().ItemSpacing.x*2.0-ImGui::GetStyle().ItemInnerSpacing.x*2.0); ImGui::InputText("##PName",&preset->name); ImGui::SameLine(); pushDestColor(); - if (ImGui::Button("Remove##UPresetRemove")) { + if (ImGui::Button(_("Remove##UPresetRemove"))) { doRemovePreset=true; } popDestColor(); @@ -390,7 +390,7 @@ void FurnaceGUI::drawUserPresets() { ImGui::PushID(i); tempID=fmt::sprintf("%s##USystem",getSystemName(chip.sys)); - ImGui::Button(tempID.c_str(),ImVec2(ImGui::GetContentRegionAvail().x-ImGui::CalcTextSize("Invert").x-ImGui::GetFrameHeightWithSpacing()*2.0-ImGui::GetStyle().ItemSpacing.x*2.0,0)); + ImGui::Button(tempID.c_str(),ImVec2(ImGui::GetContentRegionAvail().x-ImGui::CalcTextSize(_("Invert")).x-ImGui::GetFrameHeightWithSpacing()*2.0-ImGui::GetStyle().ItemSpacing.x*2.0,0)); if (ImGui::BeginPopupContextItem("SysPickerCU",ImGuiPopupFlags_MouseButtonLeft)) { DivSystem picked=systemPicker(); if (picked!=DIV_SYSTEM_NULL) { @@ -402,7 +402,7 @@ void FurnaceGUI::drawUserPresets() { } ImGui::SameLine(); - if (ImGui::Checkbox("Invert",&doInvert)) { + if (ImGui::Checkbox(_("Invert"),&doInvert)) { chip.vol=-chip.vol; mustBake=true; } @@ -414,7 +414,7 @@ void FurnaceGUI::drawUserPresets() { } popDestColor(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x-ImGui::GetFrameHeightWithSpacing()*2.0-ImGui::GetStyle().ItemSpacing.x*2.0); - if (CWSliderFloat("Volume",&vol,0.0f,3.0f)) { + if (CWSliderFloat(_("Volume"),&vol,0.0f,3.0f)) { if (doInvert) { if (vol<0.0001) vol=0.0001; } @@ -424,19 +424,19 @@ void FurnaceGUI::drawUserPresets() { mustBake=true; } rightClickable ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x-ImGui::GetFrameHeightWithSpacing()*2.0-ImGui::GetStyle().ItemSpacing.x*2.0); - if (CWSliderFloat("Panning",&chip.pan,-1.0f,1.0f)) { + if (CWSliderFloat(_("Panning"),&chip.pan,-1.0f,1.0f)) { if (chip.pan<-1.0f) chip.pan=-1.0f; if (chip.pan>1.0f) chip.pan=1.0f; mustBake=true; } rightClickable ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x-ImGui::GetFrameHeightWithSpacing()*2.0-ImGui::GetStyle().ItemSpacing.x*2.0); - if (CWSliderFloat("Front/Rear",&chip.panFR,-1.0f,1.0f)) { + if (CWSliderFloat(_("Front/Rear"),&chip.panFR,-1.0f,1.0f)) { if (chip.panFR<-1.0f) chip.panFR=-1.0f; if (chip.panFR>1.0f) chip.panFR=1.0f; mustBake=true; } rightClickable - if (ImGui::TreeNode("Configure")) { + if (ImGui::TreeNode(_("Configure"))) { DivConfig sysFlags; sysFlags.loadFromMemory(chip.flags.c_str()); if (drawSysConf(-1,i,chip.sys,sysFlags,false)) { @@ -467,16 +467,16 @@ void FurnaceGUI::drawUserPresets() { ImGui::Separator(); - ImGui::Text("Advanced"); + ImGui::Text(_("Advanced")); if (ImGui::InputTextMultiline("##UExtra",&preset->extra,ImVec2(ImGui::GetContentRegionAvail().x,120.0f*dpiScale),ImGuiInputTextFlags_UndoRedo)) { mustBake=true; } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip( + ImGui::SetTooltip(_( "insert additional settings in `option=value` format.\n" "available options:\n" "- tickRate" - ); + )); } if (mustBake) preset->bake(); @@ -506,21 +506,21 @@ void FurnaceGUI::drawUserPresets() { ImGui::EndTable(); } - if (ImGui::Button("Save and Close")) { + if (ImGui::Button(_("Save and Close"))) { userPresetsOpen=false; } ImGui::SameLine(); ImGui::Dummy(ImVec2(8.0f*dpiScale,1.0f)); ImGui::SameLine(); - if (ImGui::Button("Import")) { + if (ImGui::Button(_("Import"))) { openFileDialog(GUI_FILE_IMPORT_USER_PRESETS); } ImGui::SameLine(); - if (ImGui::Button("Import (replace)")) { + if (ImGui::Button(_("Import (replace)"))) { openFileDialog(GUI_FILE_IMPORT_USER_PRESETS_REPLACE); } ImGui::SameLine(); - if (ImGui::Button("Export")) { + if (ImGui::Button(_("Export"))) { openFileDialog(GUI_FILE_EXPORT_USER_PRESETS); } } diff --git a/src/gui/util.cpp b/src/gui/util.cpp index f1b657725..94e33148a 100644 --- a/src/gui/util.cpp +++ b/src/gui/util.cpp @@ -90,23 +90,23 @@ String getKeyName(int key, bool emptyNone) { if (emptyNone) { return ""; } else { - return ""; + return _(""); } } String ret; - if (key&FURKMOD_CTRL) ret+="Ctrl-"; + if (key&FURKMOD_CTRL) ret+=_("Ctrl-"); if (key&FURKMOD_META) ret+=META_MODIFIER_NAME; - if (key&FURKMOD_ALT) ret+="Alt-"; - if (key&FURKMOD_SHIFT) ret+="Shift-"; + if (key&FURKMOD_ALT) ret+=_("Alt-"); + if (key&FURKMOD_SHIFT) ret+=_("Shift-"); if ((key&FURK_MASK)==0xffffff) { ret+="..."; return ret; } const char* name=SDL_GetKeyName(key&FURK_MASK); if (name==NULL) { - ret+="Unknown"; + ret+=_("Unknown"); } else if (name[0]==0) { - ret+="Unknown"; + ret+=_("Unknown"); } else { ret+=name; } diff --git a/src/gui/volMeter.cpp b/src/gui/volMeter.cpp index 8252cccc5..226bf4c0b 100644 --- a/src/gui/volMeter.cpp +++ b/src/gui/volMeter.cpp @@ -33,7 +33,7 @@ void FurnaceGUI::drawVolMeter() { ImGui::PushStyleVar(ImGuiStyleVar_FramePadding,ImVec2(0,0)); ImGui::PushStyleVar(ImGuiStyleVar_ItemSpacing,ImVec2(0,0)); ImGui::PushStyleVar(ImGuiStyleVar_ItemInnerSpacing,ImVec2(0,0)); - if (ImGui::Begin("Volume Meter",&volMeterOpen,globalWinFlags)) { + if (ImGui::Begin("Volume Meter",&volMeterOpen,globalWinFlags,_("Volume Meter"))) { ImDrawList* dl=ImGui::GetWindowDrawList(); bool aspectRatio=(ImGui::GetWindowSize().x/ImGui::GetWindowSize().y)>1.0; diff --git a/src/gui/waveEdit.cpp b/src/gui/waveEdit.cpp index 90f6e3f52..5362937c5 100644 --- a/src/gui/waveEdit.cpp +++ b/src/gui/waveEdit.cpp @@ -27,17 +27,17 @@ #include const char* waveGenBaseShapes[4]={ - "Sine", - "Triangle", - "Saw", - "Pulse" + _N("Sine"), + _N("Triangle"), + _N("Saw"), + _N("Pulse") }; const char* waveInterpolations[4]={ - "None", - "Linear", - "Cosine", - "Cubic" + _N("None"), + _N("Linear"), + _N("Cosine"), + _N("Cubic") }; double sinus(double x) { @@ -189,44 +189,44 @@ WaveFunc waveFuncs[]={ }; const char* fmWaveforms[] = { - "Sine", - "Rect. Sine", - "Abs. Sine", - "Quart. Sine", - "Squish. Sine", - "Abs. Squish. Sine", + _N("Sine"), + _N("Rect. Sine"), + _N("Abs. Sine"), + _N("Quart. Sine"), + _N("Squish. Sine"), + _N("Abs. Squish. Sine"), - "Square", - "rectSquare", + _N("Square"), + _N("rectSquare"), - "Saw", - "Rect. Saw", - "Abs. Saw", + _N("Saw"), + _N("Rect. Saw"), + _N("Abs. Saw"), - "Cubed Saw", - "Rect. Cubed Saw", - "Abs. Cubed Saw", + _N("Cubed Saw"), + _N("Rect. Cubed Saw"), + _N("Abs. Cubed Saw"), - "Cubed Sine", - "Rect. Cubed Sine", - "Abs. Cubed Sine", - "Quart. Cubed Sine", - "Squish. Cubed Sine", - "Squish. Abs. Cub. Sine", + _N("Cubed Sine"), + _N("Rect. Cubed Sine"), + _N("Abs. Cubed Sine"), + _N("Quart. Cubed Sine"), + _N("Squish. Cubed Sine"), + _N("Squish. Abs. Cub. Sine"), - "Triangle", - "Rect. Triangle", - "Abs. Triangle", - "Quart. Triangle", - "Squish. Triangle", - "Abs. Squish. Triangle", + _N("Triangle"), + _N("Rect. Triangle"), + _N("Abs. Triangle"), + _N("Quart. Triangle"), + _N("Squish. Triangle"), + _N("Abs. Squish. Triangle"), - "Cubed Triangle", - "Rect. Cubed Triangle", - "Abs. Cubed Triangle", - "Quart. Cubed Triangle", - "Squish. Cubed Triangle", - "Squish. Abs. Cub. Triangle", + _N("Cubed Triangle"), + _N("Rect. Cubed Triangle"), + _N("Abs. Cubed Triangle"), + _N("Quart. Cubed Triangle"), + _N("Squish. Cubed Triangle"), + _N("Squish. Abs. Cub. Triangle"), }; const size_t fmWaveformsLen=sizeof(fmWaveforms)/sizeof(fmWaveforms[0]); @@ -406,11 +406,11 @@ void FurnaceGUI::drawWaveEdit() { } else { ImGui::SetNextWindowSizeConstraints(ImVec2(300.0f*dpiScale,300.0f*dpiScale),ImVec2(canvasW,canvasH)); } - if (ImGui::Begin("Wavetable Editor",&waveEditOpen,globalWinFlags|(settings.allowEditDocking?0:ImGuiWindowFlags_NoDocking))) { + if (ImGui::Begin("Wavetable Editor",&waveEditOpen,globalWinFlags|(settings.allowEditDocking?0:ImGuiWindowFlags_NoDocking),_("Wavetable Editor"))) { if (curWave<0 || curWave>=(int)e->song.wave.size()) { ImGui::SetCursorPosY(ImGui::GetCursorPosY()+(ImGui::GetContentRegionAvail().y-ImGui::GetFrameHeightWithSpacing()*2.0f)*0.5f); - CENTER_TEXT("no wavetable selected"); - ImGui::Text("no wavetable selected"); + CENTER_TEXT(_("no wavetable selected")); + ImGui::Text(_("no wavetable selected")); if (ImGui::BeginTable("noAssetCenter",3)) { ImGui::TableSetupColumn("c0",ImGuiTableColumnFlags_WidthStretch,0.5f); ImGui::TableSetupColumn("c1",ImGuiTableColumnFlags_WidthFixed); @@ -421,7 +421,7 @@ void FurnaceGUI::drawWaveEdit() { ImGui::TableNextColumn(); if (e->song.wave.size()>0) { - if (ImGui::BeginCombo("##WaveSelect","select one...")) { + if (ImGui::BeginCombo("##WaveSelect",_("select one..."))) { if (ImGui::BeginTable("WaveSelCombo",1,ImGuiTableFlags_ScrollY)) { actualWaveList(); ImGui::EndTable(); @@ -429,16 +429,16 @@ void FurnaceGUI::drawWaveEdit() { ImGui::EndCombo(); } ImGui::SameLine(); - ImGui::TextUnformatted("or"); + ImGui::TextUnformatted(_("or")); ImGui::SameLine(); } - if (ImGui::Button("Open")) { + if (ImGui::Button(_("Open"))) { doAction(GUI_ACTION_WAVE_LIST_OPEN); } ImGui::SameLine(); - ImGui::TextUnformatted("or"); + ImGui::TextUnformatted(_("or")); ImGui::SameLine(); - if (ImGui::Button("Create New")) { + if (ImGui::Button(_("Create New"))) { doAction(GUI_ACTION_WAVE_LIST_ADD); } @@ -464,38 +464,38 @@ void FurnaceGUI::drawWaveEdit() { doAction(GUI_ACTION_WAVE_LIST_OPEN_REPLACE); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Open"); + ImGui::SetTooltip(_("Open")); } ImGui::SameLine(); if (ImGui::Button(ICON_FA_FLOPPY_O "##WESave")) { doAction(GUI_ACTION_WAVE_LIST_SAVE); } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Save"); + ImGui::SetTooltip(_("Save")); } if (ImGui::BeginPopupContextItem("WaveSaveFormats",ImGuiMouseButton_Right)) { - if (ImGui::MenuItem("save as .dmw...")) { + if (ImGui::MenuItem(_("save as .dmw..."))) { doAction(GUI_ACTION_WAVE_LIST_SAVE_DMW); } - if (ImGui::MenuItem("save raw...")) { + if (ImGui::MenuItem(_("save raw..."))) { doAction(GUI_ACTION_WAVE_LIST_SAVE_RAW); } ImGui::EndPopup(); } ImGui::SameLine(); - if (ImGui::RadioButton("Steps",waveEditStyle==0)) { + if (ImGui::RadioButton(_("Steps"),waveEditStyle==0)) { waveEditStyle=0; } ImGui::SameLine(); - if (ImGui::RadioButton("Lines",waveEditStyle==1)) { + if (ImGui::RadioButton(_("Lines"),waveEditStyle==1)) { waveEditStyle=1; } ImGui::TableNextColumn(); - ImGui::Text("Width"); + ImGui::Text(_("Width")); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("use a width of:\n- any on Amiga/N163\n- 32 on Game Boy, PC Engine, SCC, Konami Bubble System, Namco WSG, Virtual Boy and WonderSwan\n- 64 on FDS\n- 128 on X1-010\nany other widths will be scaled during playback."); + ImGui::SetTooltip(_("use a width of:\n- any on Amiga/N163\n- 32 on Game Boy, PC Engine, SCC, Konami Bubble System, Namco WSG, Virtual Boy and WonderSwan\n- 64 on FDS\n- 128 on X1-010\nany other widths will be scaled during playback.")); } ImGui::SameLine(); ImGui::SetNextItemWidth(96.0f*dpiScale); @@ -507,9 +507,9 @@ void FurnaceGUI::drawWaveEdit() { MARK_MODIFIED; } ImGui::SameLine(); - ImGui::Text("Height"); + ImGui::Text(_("Height")); if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("use a height of:\n- 16 for Game Boy, WonderSwan, Namco WSG, Konami Bubble System, X1-010 Envelope shape and N163\n- 32 for PC Engine\n- 64 for FDS and Virtual Boy\n- 256 for X1-010 and SCC\nany other heights will be scaled during playback."); + ImGui::SetTooltip(_("use a height of:\n- 16 for Game Boy, WonderSwan, Namco WSG, Konami Bubble System, X1-010 Envelope shape and N163\n- 32 for PC Engine\n- 64 for FDS and Virtual Boy\n- 256 for X1-010 and SCC\nany other heights will be scaled during playback.")); } ImGui::SameLine(); ImGui::SetNextItemWidth(96.0f*dpiScale); @@ -575,13 +575,13 @@ void FurnaceGUI::drawWaveEdit() { waveGenSize.y=contentRegion.y; if (ImGui::BeginChild("WaveGenView",waveGenSize)) { if (ImGui::BeginTabBar("WaveGenOpt")) { - if (ImGui::BeginTabItem("Shapes")) { + if (ImGui::BeginTabItem(_("Shapes"))) { waveGenFM=false; if (waveGenBaseShape<0) waveGenBaseShape=0; if (waveGenBaseShape>3) waveGenBaseShape=3; ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); - if (CWSliderInt("##WGShape",&waveGenBaseShape,0,3,waveGenBaseShapes[waveGenBaseShape])) { + if (CWSliderInt("##WGShape",&waveGenBaseShape,0,3,_(waveGenBaseShapes[waveGenBaseShape]))) { if (waveGenBaseShape<0) waveGenBaseShape=0; if (waveGenBaseShape>3) waveGenBaseShape=3; doGenerateWave(); @@ -594,7 +594,7 @@ void FurnaceGUI::drawWaveEdit() { ImGui::TableNextRow(); ImGui::TableNextColumn(); ImGui::AlignTextToFramePadding(); - ImGui::Text("Duty"); + ImGui::Text(_("Duty")); ImGui::TableNextColumn(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); if (CWSliderFloat("##WGDuty",&waveGenDuty,0.0f,1.0f)) { @@ -604,7 +604,7 @@ void FurnaceGUI::drawWaveEdit() { ImGui::TableNextRow(); ImGui::TableNextColumn(); ImGui::AlignTextToFramePadding(); - ImGui::Text("Exponent"); + ImGui::Text(_("Exponent")); ImGui::TableNextColumn(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); if (CWSliderInt("##WGExp",&waveGenPower,1,8)) { @@ -614,7 +614,7 @@ void FurnaceGUI::drawWaveEdit() { ImGui::TableNextRow(); ImGui::TableNextColumn(); ImGui::AlignTextToFramePadding(); - ImGui::Text("XOR Point"); + ImGui::Text(_("XOR Point")); ImGui::TableNextColumn(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); if (CWSliderFloat("##WGXOR",&waveGenInvertPoint,0.0f,1.0f)) { @@ -624,7 +624,7 @@ void FurnaceGUI::drawWaveEdit() { ImGui::EndTable(); } - if (ImGui::TreeNode("Amplitude/Phase")) { + if (ImGui::TreeNode(_("Amplitude/Phase"))) { if (ImGui::BeginTable("WGShapeProps",3)) { ImGui::TableSetupColumn("c0",ImGuiTableColumnFlags_WidthFixed); ImGui::TableSetupColumn("c1",ImGuiTableColumnFlags_WidthStretch,0.6f); @@ -665,7 +665,7 @@ void FurnaceGUI::drawWaveEdit() { } ImGui::EndTabItem(); } - if (ImGui::BeginTabItem("FM")) { + if (ImGui::BeginTabItem(_("FM"))) { waveGenFM=true; if (ImGui::BeginTable("WGFMProps",4)) { @@ -676,13 +676,13 @@ void FurnaceGUI::drawWaveEdit() { ImGui::TableNextRow(ImGuiTableRowFlags_Headers); ImGui::TableNextColumn(); - ImGui::Text("Op"); + ImGui::Text(_("Op")); ImGui::TableNextColumn(); - ImGui::Text("Level"); + ImGui::Text(_("Level")); ImGui::TableNextColumn(); - ImGui::Text("Mult"); + ImGui::Text(_("Mult")); ImGui::TableNextColumn(); - ImGui::Text("FB"); + ImGui::Text(_("FB")); for (int i=0; i<4; i++) { ImGui::TableNextRow(); @@ -720,14 +720,14 @@ void FurnaceGUI::drawWaveEdit() { } if (ImGui::BeginTable("WGFMWAVE",2)) { - ImGui::TableSetupColumn("c0",ImGuiTableColumnFlags_WidthFixed,ImGui::CalcTextSize("Op").x); + ImGui::TableSetupColumn("c0",ImGuiTableColumnFlags_WidthFixed,ImGui::CalcTextSize(_("Op")).x); ImGui::TableSetupColumn("c1",ImGuiTableColumnFlags_WidthStretch,1); ImGui::TableNextRow(ImGuiTableRowFlags_Headers); ImGui::TableNextColumn(); - ImGui::Text("Op"); + ImGui::Text(_("Op")); ImGui::TableNextColumn(); - ImGui::Text("Waveform"); + ImGui::Text(_("Waveform")); for (int i=0; i<4; i++) { ImGui::TableNextRow(); @@ -738,7 +738,7 @@ void FurnaceGUI::drawWaveEdit() { ImGui::TableNextColumn(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); ImGui::PushID(i); - if (CWSliderInt("##WGWAVEFORM",&fmWaveform[i],0,fmWaveformsLen-1,fmWaveforms[fmWaveform[i]])) { + if (CWSliderInt("##WGWAVEFORM",&fmWaveform[i],0,fmWaveformsLen-1,_(fmWaveforms[fmWaveform[i]]))) { doGenerateWave(); } ImGui::PopID(); @@ -746,8 +746,8 @@ void FurnaceGUI::drawWaveEdit() { ImGui::EndTable(); } - CENTER_TEXT("Connection Diagram"); - ImGui::Text("Connection Diagram"); + CENTER_TEXT(_("Connection Diagram")); + ImGui::Text(_("Connection Diagram")); if (ImGui::BeginTable("WGFMCon",6)) { ImGui::TableNextRow(); @@ -762,7 +762,7 @@ void FurnaceGUI::drawWaveEdit() { ImGui::TableNextColumn(); ImGui::Text("4"); ImGui::TableNextColumn(); - ImGui::Text("Out"); + ImGui::Text(_("Out")); ImGui::TableNextRow(); ImGui::TableNextColumn(); @@ -869,7 +869,7 @@ void FurnaceGUI::drawWaveEdit() { ImGui::EndTabItem(); } - if (ImGui::BeginTabItem("WaveTools")) { + if (ImGui::BeginTabItem(_("WaveTools"))) { if (ImGui::BeginTable("WGParamItems",2)) { ImGui::TableSetupColumn("c0",ImGuiTableColumnFlags_WidthStretch); ImGui::TableSetupColumn("c1",ImGuiTableColumnFlags_WidthFixed); @@ -882,18 +882,18 @@ void FurnaceGUI::drawWaveEdit() { if (waveGenScaleX>256) waveGenScaleX=256; } ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); - if (CWSliderInt("##WGInterpolation",&waveInterpolation,0,3,waveInterpolations[waveInterpolation])) { + if (CWSliderInt("##WGInterpolation",&waveInterpolation,0,3,_(waveInterpolations[waveInterpolation]))) { if (waveInterpolation<0) waveInterpolation=0; if (waveInterpolation>3) waveInterpolation=3; } ImGui::TableNextColumn(); - if (ImGui::Button("Scale X")) { + if (ImGui::Button(_("Scale X"))) { if (waveGenScaleX>0 && wave->len!=waveGenScaleX) e->lockEngine([this,wave]() { int origData[256]; // Copy original wave to temp buffer // If longer than 256 samples, return if (wave->len>256) { - showError("wavetable longer than 256 samples!"); + showError(_("wavetable longer than 256 samples!")); return; } memcpy(origData,wave->data,wave->len*sizeof(int)); @@ -957,7 +957,7 @@ void FurnaceGUI::drawWaveEdit() { if (waveGenScaleY>256) waveGenScaleY=256; } ImGui::TableNextColumn(); - if (ImGui::Button("Scale Y")) { + if (ImGui::Button(_("Scale Y"))) { if (waveGenScaleY>0 && wave->max!=(waveGenScaleY-1)) e->lockEngine([this,wave]() { for (int i=0; ilen; i++) { wave->data[i]=(wave->data[i]*(waveGenScaleY))/(wave->max+1); @@ -975,7 +975,7 @@ void FurnaceGUI::drawWaveEdit() { if (waveGenOffsetX>wave->len-1) waveGenOffsetX=wave->len-1; } ImGui::TableNextColumn(); - if (ImGui::Button("Offset X")) { + if (ImGui::Button(_("Offset X"))) { if (waveGenOffsetX!=0 && wave->len>0) e->lockEngine([this,wave]() { int origData[256]; memcpy(origData,wave->data,wave->len*sizeof(int)); @@ -997,7 +997,7 @@ void FurnaceGUI::drawWaveEdit() { if (waveGenOffsetY>wave->max) waveGenOffsetY=wave->max; } ImGui::TableNextColumn(); - if (ImGui::Button("Offset Y")) { + if (ImGui::Button(_("Offset Y"))) { if (waveGenOffsetY!=0) e->lockEngine([this,wave]() { for (int i=0; ilen; i++) { wave->data[i]=CLAMP(wave->data[i]+waveGenOffsetY,0,wave->max); @@ -1014,7 +1014,7 @@ void FurnaceGUI::drawWaveEdit() { if (waveGenSmooth<1) waveGenSmooth=1; } ImGui::TableNextColumn(); - if (ImGui::Button("Smooth")) { + if (ImGui::Button(_("Smooth"))) { if (waveGenSmooth>0) e->lockEngine([this,wave]() { int origData[256]; memcpy(origData,wave->data,wave->len*sizeof(int)); @@ -1042,7 +1042,7 @@ void FurnaceGUI::drawWaveEdit() { if (waveGenAmplify>100.0f) waveGenAmplify=100.0f; } ImGui::TableNextColumn(); - if (ImGui::Button("Amplify")) { + if (ImGui::Button(_("Amplify"))) { if (waveGenAmplify!=1.0f) e->lockEngine([this,wave]() { for (int i=0; ilen; i++) { wave->data[i]=CLAMP(round((float)(wave->data[i]-(int)( /* Clang can you stop complaining */ (int)(wave->max+1)/(int)2))*waveGenAmplify),(int)(-((wave->max+1)/2)),(int)(wave->max/2))+(int)((wave->max+1)/2); @@ -1060,7 +1060,7 @@ void FurnaceGUI::drawWaveEdit() { buttonSizeHalf.x-=ImGui::GetStyle().ItemSpacing.x; buttonSizeHalf.x*=0.5; - if (ImGui::Button("Normalize",buttonSize)) { + if (ImGui::Button(_("Normalize"),buttonSize)) { e->lockEngine([this,wave]() { // find lowest point int lowest=wave->max; @@ -1093,7 +1093,7 @@ void FurnaceGUI::drawWaveEdit() { MARK_MODIFIED; }); } - if (ImGui::Button("Invert",buttonSizeHalf)) { + if (ImGui::Button(_("Invert"),buttonSizeHalf)) { e->lockEngine([this,wave]() { for (int i=0; ilen; i++) { wave->data[i]=wave->max-wave->data[i]; @@ -1102,7 +1102,7 @@ void FurnaceGUI::drawWaveEdit() { }); } ImGui::SameLine(); - if (ImGui::Button("Reverse",buttonSizeHalf)) { + if (ImGui::Button(_("Reverse"),buttonSizeHalf)) { e->lockEngine([this,wave]() { int origData[256]; memcpy(origData,wave->data,wave->len*sizeof(int)); @@ -1114,7 +1114,7 @@ void FurnaceGUI::drawWaveEdit() { }); } - if (ImGui::Button("Half",buttonSizeHalf)) { + if (ImGui::Button(_("Half"),buttonSizeHalf)) { int origData[256]; memcpy(origData,wave->data,wave->len*sizeof(int)); @@ -1124,7 +1124,7 @@ void FurnaceGUI::drawWaveEdit() { MARK_MODIFIED; } ImGui::SameLine(); - if (ImGui::Button("Double",buttonSizeHalf)) { + if (ImGui::Button(_("Double"),buttonSizeHalf)) { int origData[256]; memcpy(origData,wave->data,wave->len*sizeof(int)); @@ -1134,7 +1134,7 @@ void FurnaceGUI::drawWaveEdit() { MARK_MODIFIED; } - if (ImGui::Button("Convert Signed/Unsigned",buttonSize)) { + if (ImGui::Button(_("Convert Signed/Unsigned"),buttonSize)) { if (wave->max>0) e->lockEngine([this,wave]() { for (int i=0; ilen; i++) { if (wave->data[i]>(wave->max/2)) { @@ -1146,7 +1146,7 @@ void FurnaceGUI::drawWaveEdit() { MARK_MODIFIED; }); } - if (ImGui::Button("Randomize",buttonSize)) { + if (ImGui::Button(_("Randomize"),buttonSize)) { if (wave->max>0) e->lockEngine([this,wave]() { for (int i=0; ilen; i++) { wave->data[i]=rand()%(wave->max+1); @@ -1164,11 +1164,11 @@ void FurnaceGUI::drawWaveEdit() { ImGui::EndTable(); } - if (ImGui::RadioButton("Dec",!waveHex)) { + if (ImGui::RadioButton(_("Dec"),!waveHex)) { waveHex=false; } ImGui::SameLine(); - if (ImGui::RadioButton("Hex",waveHex)) { + if (ImGui::RadioButton(_("Hex"),waveHex)) { waveHex=true; } ImGui::SameLine(); @@ -1176,7 +1176,7 @@ void FurnaceGUI::drawWaveEdit() { waveSigned=!waveSigned; } if (ImGui::IsItemHovered()) { - ImGui::SetTooltip("Signed/Unsigned"); + ImGui::SetTooltip(_("Signed/Unsigned")); } ImGui::SameLine(); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); // wavetable text input size found here diff --git a/src/gui/xyOsc.cpp b/src/gui/xyOsc.cpp index 5a727127d..a6d00445b 100644 --- a/src/gui/xyOsc.cpp +++ b/src/gui/xyOsc.cpp @@ -37,26 +37,26 @@ void FurnaceGUI::drawXYOsc() { ImGui::PushStyleVar(ImGuiStyleVar_ItemSpacing,ImVec2(0,0)); ImGui::PushStyleVar(ImGuiStyleVar_ItemInnerSpacing,ImVec2(0,0)); } - if (ImGui::Begin("Oscilloscope (X-Y)",&xyOscOpen,globalWinFlags)) { + if (ImGui::Begin("Oscilloscope (X-Y)",&xyOscOpen,globalWinFlags,_("Oscilloscope (X-Y)"))) { if (xyOscOptions) { int xyOscXChannelP1 = xyOscXChannel+1; int xyOscYChannelP1 = xyOscYChannel+1; - ImGui::Text("X Channel"); + ImGui::Text(_("X Channel")); ImGui::SameLine(); if (ImGui::DragInt("##XChannel",&xyOscXChannelP1,1.0f,1,DIV_MAX_OUTPUTS)) { xyOscXChannel=MIN(MAX(xyOscXChannelP1,1),DIV_MAX_OUTPUTS)-1; } rightClickable ImGui::SameLine(); - ImGui::Checkbox("Invert##X",&xyOscXInvert); - ImGui::Text("Y Channel"); + ImGui::Checkbox(_("Invert##X"),&xyOscXInvert); + ImGui::Text(_("Y Channel")); ImGui::SameLine(); if (ImGui::DragInt("##YChannel",&xyOscYChannelP1,1.0f,1,DIV_MAX_OUTPUTS)) { xyOscXChannel=MIN(MAX(xyOscYChannelP1,1),DIV_MAX_OUTPUTS)-1; } rightClickable ImGui::SameLine(); - ImGui::Checkbox("Invert##Y",&xyOscYInvert); - if (ImGui::SliderFloat("Zoom",&xyOscZoom,0.5f,4.0f,"%.2fx")) { + ImGui::Checkbox(_("Invert##Y"),&xyOscYInvert); + if (ImGui::SliderFloat(_("Zoom"),&xyOscZoom,0.5f,4.0f,"%.2fx")) { xyOscZoom=MAX(xyOscZoom,0.0f); } rightClickable if (ImGui::IsItemHovered()) { @@ -65,19 +65,19 @@ void FurnaceGUI::drawXYOsc() { if (ImGui::IsItemClicked(ImGuiMouseButton_Middle)) { xyOscZoom=1.0f; } - if (ImGui::SliderInt("Samples",&xyOscSamples,2,32768)) { + if (ImGui::SliderInt(_("Samples"),&xyOscSamples,2,32768)) { xyOscSamples=MIN(MAX(xyOscSamples,2),32768); } rightClickable - if (ImGui::SliderFloat("Decay Time (ms)",&xyOscDecayTime,1.0f,1000.0f,"%.1f",ImGuiSliderFlags_Logarithmic)) { + if (ImGui::SliderFloat(_("Decay Time (ms)"),&xyOscDecayTime,1.0f,1000.0f,"%.1f",ImGuiSliderFlags_Logarithmic)) { xyOscDecayTime=MAX(xyOscDecayTime,0.0f); } rightClickable - if (ImGui::SliderFloat("Intensity",&xyOscIntensity,0.0f,5.0f,"%.2f")) { + if (ImGui::SliderFloat(_("Intensity"),&xyOscIntensity,0.0f,5.0f,"%.2f")) { xyOscIntensity=MAX(xyOscIntensity,0.0f); } rightClickable - if (ImGui::SliderFloat("Line Thickness",&xyOscThickness,0.0f,10.0f,"%.2f")) { + if (ImGui::SliderFloat(_("Line Thickness"),&xyOscThickness,0.0f,10.0f,"%.2f")) { xyOscThickness=MAX(xyOscThickness,0.0f); } rightClickable - if (ImGui::Button("OK")) { + if (ImGui::Button(_("OK"))) { xyOscOptions=false; } } else { @@ -210,13 +210,13 @@ void FurnaceGUI::drawXYOsc() { float valX=20.0f*log10f(fabsf((ImGui::GetMousePos().x-inSqrCenter.x)/scaleX)); float valY=20.0f*log10f(fabsf((ImGui::GetMousePos().y-inSqrCenter.y)/scaleY)); if (valX<=-INFINITY && valY<=-INFINITY) { - ImGui::SetTooltip("(-Infinity)dB,(-Infinity)dB"); + ImGui::SetTooltip(_("(-Infinity)dB,(-Infinity)dB")); } else if (valX<=-INFINITY) { - ImGui::SetTooltip("(-Infinity)dB,%.1fdB",valY); + ImGui::SetTooltip(_("(-Infinity)dB,%.1fdB"),valY); } else if (valY<=-INFINITY) { - ImGui::SetTooltip("%.1fdB,(-Infinity)dB",valY); + ImGui::SetTooltip(_("%.1fdB,(-Infinity)dB"),valY); } else { - ImGui::SetTooltip("%.1fdB,%.1fdB",valX,valY); + ImGui::SetTooltip(_("%.1fdB,%.1fdB"),valX,valY); } } if (ImGui::IsItemClicked(ImGuiMouseButton_Right)) { diff --git a/src/main.cpp b/src/main.cpp index 7254ddcc4..f040873e3 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -48,6 +48,25 @@ struct sigaction termsa; #define TUT_INTRO_PLAYED false #endif +#ifdef HAVE_MOMO +#define TA_BINDTEXTDOMAIN momo_bindtextdomain +#define TA_TEXTDOMAIN momo_textdomain +#else +#define TA_BINDTEXTDOMAIN bindtextdomain +#define TA_TEXTDOMAIN textdomain +#endif + +#ifdef HAVE_SETLOCALE +#include +#endif + +#ifndef LC_CTYPE +#define LC_CTYPE 0 +#endif +#ifndef LC_MESSAGES +#define LC_MESSAGES 1 +#endif + #include "cli/cli.h" #ifdef HAVE_GUI @@ -489,6 +508,57 @@ int main(int argc, char** argv) { zsmOutName=""; cmdOutName=""; + // load config for locale + e.prePreInit(); + +#ifdef HAVE_LOCALE + String reqLocale=e.getConfString("locale",""); + const char* localeRet=NULL; +#ifdef HAVE_SETLOCALE + if ((localeRet=setlocale(LC_CTYPE,reqLocale.c_str()))==NULL) { + logE("could not set locale (CTYPE)!"); + } else { + logV("locale: %s",localeRet); + } + if ((localeRet=setlocale(LC_MESSAGES,reqLocale.c_str()))==NULL) { + logE("could not set locale (MESSAGES)!"); +#ifdef HAVE_MOMO + if (momo_setlocale(LC_MESSAGES,reqLocale.c_str())==NULL) { + logV("Momo: could not set locale!"); + } +#endif + } else { + logV("locale: %s",localeRet); +#ifdef HAVE_MOMO + if (momo_setlocale(LC_MESSAGES,localeRet)==NULL) { + logV("Momo: could not set locale!"); + } +#endif + } +#else + if ((localeRet=momo_setlocale(LC_MESSAGES,reqLocale.c_str()))==NULL) { + logV("Momo: could not set locale!"); + } else { + logV("locale: %s",localeRet); + } +#endif + + if ((localeRet=TA_BINDTEXTDOMAIN("furnace","locale"))==NULL) { + if ((localeRet=TA_BINDTEXTDOMAIN("furnace","../po/locale"))==NULL) { + logE("could not bind text domain!"); + } else { + logV("text domain 1: %s",localeRet); + } + } else { + logV("text domain 1: %s",localeRet); + } + if ((localeRet=TA_TEXTDOMAIN("furnace"))==NULL) { + logE("could not text domain!"); + } else { + logV("text domain 2: %s",localeRet); + } +#endif + initParams(); // parse arguments diff --git a/src/momo/halfsiphash.c b/src/momo/halfsiphash.c new file mode 100644 index 000000000..202bdfd93 --- /dev/null +++ b/src/momo/halfsiphash.c @@ -0,0 +1,142 @@ + +/* + SipHash reference C implementation + + Copyright (c) 2016 Jean-Philippe Aumasson + + To the extent possible under law, the author(s) have dedicated all copyright + and related and neighboring rights to this software to the public domain + worldwide. This software is distributed without any warranty. + + You should have received a copy of the CC0 Public Domain Dedication along + with + this software. If not, see + . + */ +// modified for simplicity +#include +#include + +/* default: SipHash-2-4 */ +#ifndef cROUNDS +#define cROUNDS 2 +#endif +#ifndef dROUNDS +#define dROUNDS 4 +#endif + +#define ROTL(x, b) (uint32_t)(((x) << (b)) | ((x) >> (32 - (b)))) + +#define U32TO8_LE(p, v) \ + (p)[0] = (uint8_t)((v)); \ + (p)[1] = (uint8_t)((v) >> 8); \ + (p)[2] = (uint8_t)((v) >> 16); \ + (p)[3] = (uint8_t)((v) >> 24); + +#define U8TO32_LE(p) \ + (((uint32_t)((p)[0])) | ((uint32_t)((p)[1]) << 8) | \ + ((uint32_t)((p)[2]) << 16) | ((uint32_t)((p)[3]) << 24)) + +#define SIPROUND \ + do { \ + v0 += v1; \ + v1 = ROTL(v1, 5); \ + v1 ^= v0; \ + v0 = ROTL(v0, 16); \ + v2 += v3; \ + v3 = ROTL(v3, 8); \ + v3 ^= v2; \ + v0 += v3; \ + v3 = ROTL(v3, 7); \ + v3 ^= v0; \ + v2 += v1; \ + v1 = ROTL(v1, 13); \ + v1 ^= v2; \ + v2 = ROTL(v2, 16); \ + } while (0) + + +#ifdef DEBUG_SIPHASH +#include + +#define TRACE \ + do { \ + printf("(%3zu) v0 %08" PRIx32 "\n", inlen, v0); \ + printf("(%3zu) v1 %08" PRIx32 "\n", inlen, v1); \ + printf("(%3zu) v2 %08" PRIx32 "\n", inlen, v2); \ + printf("(%3zu) v3 %08" PRIx32 "\n", inlen, v3); \ + } while (0) +#else +#define TRACE +#endif + +/* + Computes a SipHash value + *in: pointer to input data (read-only) + inlen: input data length in bytes (any size_t value) + *k: pointer to the key data (read-only), must be 8 bytes + *out: pointer to output data (write-only), outlen bytes must be allocated + outlen: length of the output in bytes, must be 4 or 8 +*/ +static uint32_t halfsiphash(const void *in, const size_t inlen, uint64_t k) { + + const unsigned char *ni = (const unsigned char *)in; + + uint32_t v0 = 0; + uint32_t v1 = 0; + uint32_t v2 = UINT32_C(0x6c796765); + uint32_t v3 = UINT32_C(0x74656462); + uint32_t k0 = k; + uint32_t k1 = k >> 32; + uint32_t m; + int i; + const unsigned char *end = ni + inlen - (inlen % sizeof(uint32_t)); + const int left = inlen & 3; + uint32_t b = ((uint32_t)inlen) << 24; + v3 ^= k1; + v2 ^= k0; + v1 ^= k1; + v0 ^= k0; + + for (; ni != end; ni += 4) { + m = U8TO32_LE(ni); + v3 ^= m; + + TRACE; + for (i = 0; i < cROUNDS; ++i) + SIPROUND; + + v0 ^= m; + } + + switch (left) { + case 3: + b |= ((uint32_t)ni[2]) << 16; + /* FALLTHRU */ + case 2: + b |= ((uint32_t)ni[1]) << 8; + /* FALLTHRU */ + case 1: + b |= ((uint32_t)ni[0]); + break; + case 0: + break; + } + + v3 ^= b; + + TRACE; + for (i = 0; i < cROUNDS; ++i) + SIPROUND; + + v0 ^= b; + + v2 ^= 0xff; + + TRACE; + for (i = 0; i < dROUNDS; ++i) + SIPROUND; + + b = v1 ^ v3; + return b; +} diff --git a/src/momo/momo.c b/src/momo/momo.c new file mode 100644 index 000000000..bf7fd68a4 --- /dev/null +++ b/src/momo/momo.c @@ -0,0 +1,906 @@ +/* Momo - portable gettext() implementation + * Copyright (C) 2024 tildearrow + * + * 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. + */ + +#include +#include +#include +#include +#include "momo.h" + +#include "halfsiphash.c" + +#ifdef ANDROID +#include +#include +#define MO_FREE SDL_free +#else +#define MO_FREE free +#endif + +static char curLocale[64]; +static char curLocaleNoCountry[64]; +static char tempPath[4096]; + +enum StackInstruction { + MOMO_STACK_END=0, + MOMO_STACK_PUSH, + MOMO_STACK_PUSH_N, + MOMO_STACK_ADD, + MOMO_STACK_SUB, + MOMO_STACK_MUL, + MOMO_STACK_DIV, + MOMO_STACK_MOD, + MOMO_STACK_CMP_EQ, + MOMO_STACK_CMP_NE, + MOMO_STACK_CMP_GT, + MOMO_STACK_CMP_LT, + MOMO_STACK_CMP_GE, + MOMO_STACK_CMP_LE, + MOMO_STACK_CMP_AND, + MOMO_STACK_CMP_OR, + MOMO_STACK_BEQ, + MOMO_STACK_BNE, + MOMO_STACK_EXIT, +}; + +static const char* stackInsNames[]={ + "end", "push", "push n", "add", "sub", "mul", "div", "mod", "cmp eq", "cmp ne", + "cmp gt", "cmp lt", "cmp ge", "cmp le", "cmp and", "cmp or", "beq", "bne", "exit" +}; +static unsigned char stackTakesArg[]={ + 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0 +}; + +struct StackData { + unsigned char ins; + unsigned int param; +}; + +struct LocaleDomain { + char path[4096]; + char name[64]; + unsigned char* mo; + size_t moLen; + const char** stringPtr; + const char** transPtr; + unsigned int* hashes; + size_t stringCount; + size_t firstString[256]; + size_t lastString[256]; + struct StackData pluralProgram[256]; +}; + +struct MOHeader { + unsigned int magic; + unsigned int version; + unsigned int stringCount; + unsigned int stringPtr; + unsigned int transPtr; + unsigned int hashSize; + unsigned int hashPtr; +}; + +static struct LocaleDomain* curDomain=NULL; +static struct LocaleDomain** domains=NULL; +static size_t domainsLen=0; + +// utility + +unsigned int runStackMachine(struct StackData* data, size_t count, unsigned int n) { + size_t pc=0; + unsigned int stack[256]; + unsigned char sp=0xff; + + memset(stack,0,256*sizeof(unsigned int)); + + while (pcop2)?1:0; + break; + case MOMO_STACK_CMP_LT: + op2=stack[sp--]; + op1=stack[sp--]; + stack[++sp]=(op1=op2)?1:0; + break; + case MOMO_STACK_CMP_LE: + op2=stack[sp--]; + op1=stack[sp--]; + stack[++sp]=(op1<=op2)?1:0; + break; + case MOMO_STACK_CMP_AND: + op2=stack[sp--]; + op1=stack[sp--]; + stack[++sp]=(op1 && op2)?1:0; + break; + case MOMO_STACK_CMP_OR: + op2=stack[sp--]; + op1=stack[sp--]; + stack[++sp]=(op1 || op2)?1:0; + break; + case MOMO_STACK_BEQ: + op1=stack[sp--]; + if (op1) pc+=(int)param; + break; + case MOMO_STACK_BNE: + op1=stack[sp--]; + if (!op1) pc+=(int)param; + break; + default: + return 0; + } + pc++; + } + + return stack[sp]; +} + +#define FINISH_OP \ + /* push identifier */ \ + if (state[curState].curIdent[0]) { \ + if (strcmp(state[curState].curIdent,"n")==0) { \ + data[*pc].ins=MOMO_STACK_PUSH_N; \ + data[*pc].param=0; \ + printf("PENDING IDENT: %s\n",state[curState].curIdent); \ + } else { \ + data[*pc].ins=MOMO_STACK_PUSH; \ + printf("PENDING IDENT: %s\n",state[curState].curIdent); \ + if (sscanf(state[curState].curIdent,"%u",&data[*pc].param)!=1) { \ + printf("ERROR: invalid identifier %s\n",state[curState].curIdent); \ + return 3; \ + } \ + } \ + (*pc)++; \ + } \ + \ + /* push operation if pending */ \ + if (state[curState].curOp[0]) { \ + unsigned char isCompare=0; \ + printf("PENDING OP: %s\n",state[curState].curOp); \ + if (strcmp(state[curState].curOp,"+")==0) { \ + data[*pc].ins=MOMO_STACK_ADD; \ + data[*pc].param=0; \ + (*pc)++; \ + } else if (strcmp(state[curState].curOp,"-")==0) { \ + data[*pc].ins=MOMO_STACK_SUB; \ + data[*pc].param=0; \ + (*pc)++; \ + } else if (strcmp(state[curState].curOp,"*")==0) { \ + data[*pc].ins=MOMO_STACK_MUL; \ + data[*pc].param=0; \ + (*pc)++; \ + } else if (strcmp(state[curState].curOp,"/")==0) { \ + data[*pc].ins=MOMO_STACK_DIV; \ + data[*pc].param=0; \ + (*pc)++; \ + } else if (strcmp(state[curState].curOp,"%")==0) { \ + data[*pc].ins=MOMO_STACK_MOD; \ + data[*pc].param=0; \ + (*pc)++; \ + } else if (strcmp(state[curState].curOp,"&&")==0) { \ + /* handled later */ \ + } else if (strcmp(state[curState].curOp,"||")==0) { \ + /* handled later */ \ + } else if (strcmp(state[curState].curOp,">")==0) { \ + data[*pc].ins=MOMO_STACK_CMP_GT; \ + data[*pc].param=0; \ + (*pc)++; \ + isCompare=1; \ + } else if (strcmp(state[curState].curOp,"<")==0) { \ + data[*pc].ins=MOMO_STACK_CMP_LT; \ + data[*pc].param=0; \ + (*pc)++; \ + isCompare=1; \ + } else if (strcmp(state[curState].curOp,">=")==0) { \ + data[*pc].ins=MOMO_STACK_CMP_GE; \ + data[*pc].param=0; \ + (*pc)++; \ + isCompare=1; \ + } else if (strcmp(state[curState].curOp,"<=")==0) { \ + data[*pc].ins=MOMO_STACK_CMP_LE; \ + data[*pc].param=0; \ + (*pc)++; \ + isCompare=1; \ + } else if (strcmp(state[curState].curOp,"==")==0) { \ + data[*pc].ins=MOMO_STACK_CMP_EQ; \ + data[*pc].param=0; \ + (*pc)++; \ + isCompare=1; \ + } else if (strcmp(state[curState].curOp,"!=")==0) { \ + data[*pc].ins=MOMO_STACK_CMP_NE; \ + data[*pc].param=0; \ + (*pc)++; \ + isCompare=1; \ + } else { \ + printf("ERROR: invalid operation\n"); \ + return 4; \ + } \ + if ((state[curState].curBigOp[0] && isCompare) || state[curState].endExpr) { \ + printf("PENDING BIG OP... %s\n",state[curState].curBigOp); \ + if (strcmp(state[curState].curBigOp,"&&")==0) { \ + data[*pc].ins=MOMO_STACK_CMP_AND; \ + data[*pc].param=0; \ + (*pc)++; \ + } else if (strcmp(state[curState].curBigOp,"||")==0) { \ + data[*pc].ins=MOMO_STACK_CMP_OR; \ + data[*pc].param=0; \ + (*pc)++; \ + } \ + memset(state[curState].curBigOp,0,8); \ + } \ + if (strcmp(state[curState].curOp,"&&")==0 || strcmp(state[curState].curOp,"||")==0) { \ + printf("PREPARING BIG OP...\n"); \ + strncpy(state[curState].curBigOp,state[curState].curOp,8); \ + } \ + } \ + \ + memset(state[curState].curOp,0,8); \ + memset(state[curState].curIdent,0,32); \ + state[curState].curOpLen=0; \ + state[curState].curIdentLen=0; + +// errors: +// 0: success +// 1: identifier too long +// 2: operator too long +// 3: unknown identifier +// 4: unknown operation +// 5: program too long +unsigned char compileExprSub(const char** ptr, struct StackData* data, size_t* pc, size_t count) { + struct ExprState { + unsigned char isOp; + unsigned char oldIsOp; + char curIdent[32]; + char curOp[8]; + char curBigOp[8]; + unsigned char curIdentLen; + unsigned char curOpLen; + unsigned char startBranch; + unsigned char endExpr; + size_t pendingBranch; + } state[8]; + unsigned char curState=0; + + memset(state,0,sizeof(struct ExprState)*8); + + for (; *(*ptr); (*ptr)++) { + char next=**ptr; + unsigned char doNotPush=0; + printf("%c\n",next); + if (state[curState].curIdentLen>30) return 1; + if (state[curState].curOpLen>6) return 2; + if (*pc>=count) return 5; + switch (next) { + case '+': + state[curState].isOp=1; + break; + case '-': + state[curState].isOp=1; + break; + case '*': + state[curState].isOp=1; + break; + case '/': + state[curState].isOp=1; + break; + case '%': + state[curState].isOp=1; + break; + case '!': + state[curState].isOp=1; + break; + case '=': + state[curState].isOp=1; + break; + case '|': + state[curState].isOp=1; + break; + case '&': + state[curState].isOp=1; + break; + case '>': + state[curState].isOp=1; + break; + case '<': + state[curState].isOp=1; + break; + case '?': + // special case + state[curState].startBranch=1; + doNotPush=1; + state[curState].isOp=1; + FINISH_OP; + if (state[curState].curBigOp[0]) { + printf("PENDING BIG OP... %s\n",state[curState].curBigOp); + if (strcmp(state[curState].curBigOp,"&&")==0) { + data[*pc].ins=MOMO_STACK_CMP_AND; + data[*pc].param=0; + (*pc)++; + } else if (strcmp(state[curState].curBigOp,"||")==0) { + data[*pc].ins=MOMO_STACK_CMP_OR; + data[*pc].param=0; + (*pc)++; + } + memset(state[curState].curBigOp,0,8); + } + break; + case ':': + // special case + doNotPush=1; + state[curState].startBranch=2; + state[curState].isOp=1; + break; + case '(': + // start a new state + printf("PUSH STATE.\n"); + state[curState].isOp=0; + curState++; + memset(&state[curState],0,sizeof(struct ExprState)); + continue; + break; + case ')': + // pop last state + printf("POP STATE.\n"); + FINISH_OP; + curState--; + if (state[curState].curBigOp[0]) { + printf("PENDING BIG OP... %s\n",state[curState].curBigOp); + if (strcmp(state[curState].curBigOp,"&&")==0) { + data[*pc].ins=MOMO_STACK_CMP_AND; + data[*pc].param=0; + (*pc)++; + } else if (strcmp(state[curState].curBigOp,"||")==0) { + data[*pc].ins=MOMO_STACK_CMP_OR; + data[*pc].param=0; + (*pc)++; + } + memset(state[curState].curBigOp,0,8); + } + continue; + break; + case ' ': + // ignore + doNotPush=1; + break; + default: + state[curState].isOp=0; + break; + } + if (state[curState].isOp!=state[curState].oldIsOp) { + state[curState].oldIsOp=state[curState].isOp; + if (state[curState].isOp) { + printf("OP MODE\n"); + FINISH_OP; + } else { + printf("IDENT MODE\n"); + // prepare + memset(state[curState].curIdent,0,32); + state[curState].curIdentLen=0; + } + } + if (!doNotPush) { + if (state[curState].isOp) { + state[curState].curOp[state[curState].curOpLen++]=next; + } else { + state[curState].curIdent[state[curState].curIdentLen++]=next; + } + } + if (state[curState].startBranch) { + printf("START BRANCH: %d\n",state[curState].startBranch); + if (state[curState].startBranch==2) { + data[*pc].ins=MOMO_STACK_EXIT; + data[*pc].param=0; + data[state[curState].pendingBranch].param=*pc-state[curState].pendingBranch; + state[curState].pendingBranch=0; + } else { + state[curState].pendingBranch=*pc; + data[*pc].ins=MOMO_STACK_BNE; + data[*pc].param=0; + } + state[curState].startBranch=0; + (*pc)++; + } + } + + if (!state[curState].isOp) { + FINISH_OP; + } + + return 0; +} + +unsigned char compileExpr(const char* expr, struct StackData* data, size_t count) { + //plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2); + + const char* ptr=expr; + size_t pc=0; + + printf("compiling expression... %s\n",expr); + + return compileExprSub(&ptr,data,&pc,count); +} + +unsigned char domainsInsert(struct LocaleDomain* item) { + struct LocaleDomain** newDomains=malloc(sizeof(struct LocaleDomain*)*(domainsLen+1)); + if (newDomains==NULL) return 0; + if (domains!=NULL) { + memcpy(newDomains,domains,sizeof(struct LocaleDomain*)*domainsLen); + free(domains); + } + domains=newDomains; + domains[domainsLen++]=item; + return 1; +} + +unsigned char domainsRemove(struct LocaleDomain* item) { + if (domains==NULL) return 0; + unsigned char found=0; + for (size_t i=0; iname,domainName)==0) { + newDomain=domains[i]; + found=1; + break; + } + } + } + if (newDomain==NULL) { + // create new domain + newDomain=malloc(sizeof(struct LocaleDomain)); + if (newDomain==NULL) { + errno=ENOMEM; + return NULL; + } + memset(newDomain,0,sizeof(struct LocaleDomain)); + } + strncpy(newDomain->name,domainName,64); + if (dirName==NULL) { + if (!found) { + free(newDomain); + return NULL; + } + return newDomain->path; + } else { + strncpy(newDomain->path,dirName,4096); + } + + // load domain + if (newDomain->mo==NULL) { + snprintf(tempPath,4096,"%s/%s/LC_MESSAGES/%s.mo",newDomain->path,curLocale,newDomain->name); + +#ifdef ANDROID + newDomain->mo=SDL_LoadFile(tempPath,&newDomain->moLen); + if (newDomain->mo==NULL) { + // try without country + snprintf(tempPath,4096,"%s/%s/LC_MESSAGES/%s.mo",newDomain->path,curLocaleNoCountry,newDomain->name); + newDomain->mo=SDL_LoadFile(tempPath,&newDomain->moLen); + if (newDomain->mo==NULL) { + // give up + if (found) { + if (newDomain==curDomain) curDomain=NULL; + domainsRemove(newDomain); + } + free(newDomain); + return NULL; + } + + } +#else + FILE* f=fopen(tempPath,"rb"); + if (f==NULL) { + // try without country + snprintf(tempPath,4096,"%s/%s/LC_MESSAGES/%s.mo",newDomain->path,curLocaleNoCountry,newDomain->name); + f=fopen(tempPath,"rb"); + if (f==NULL) { + // give up + if (found) { + if (newDomain==curDomain) curDomain=NULL; + domainsRemove(newDomain); + } + free(newDomain); + return NULL; + } + } + + if (fseek(f,0,SEEK_END)!=0) { + // give up + fclose(f); + if (found) { + if (newDomain==curDomain) curDomain=NULL; + domainsRemove(newDomain); + } + free(newDomain); + return NULL; + } + + long moSize=ftell(f); + if (moSizemoLen=moSize; + + if (fseek(f,0,SEEK_SET)!=0) { + // give up + fclose(f); + if (found) { + if (newDomain==curDomain) curDomain=NULL; + domainsRemove(newDomain); + } + free(newDomain); + return NULL; + } + + // allocate + newDomain->mo=malloc(newDomain->moLen); + if (newDomain->mo==NULL) { + // give up + fclose(f); + if (found) { + if (newDomain==curDomain) curDomain=NULL; + domainsRemove(newDomain); + } + free(newDomain); + errno=ENOMEM; + return NULL; + } + memset(newDomain->mo,0,newDomain->moLen); + + // read + if (fread(newDomain->mo,1,newDomain->moLen,f)!=newDomain->moLen) { + // give up + free(newDomain->mo); + fclose(f); + if (found) { + if (newDomain==curDomain) curDomain=NULL; + domainsRemove(newDomain); + } + free(newDomain); + return NULL; + } + fclose(f); +#endif + + // parse + struct MOHeader* header=(struct MOHeader*)newDomain->mo; + if (header->magic!=0x950412de) { + // give up + MO_FREE(newDomain->mo); + if (found) { + if (newDomain==curDomain) curDomain=NULL; + domainsRemove(newDomain); + } + free(newDomain); + return NULL; + } + + if (header->stringPtr+(header->stringCount*8)>newDomain->moLen || + header->transPtr+(header->stringCount*8)>newDomain->moLen || + header->hashPtr+(header->hashSize*4)>newDomain->moLen) { + // give up + MO_FREE(newDomain->mo); + if (found) { + if (newDomain==curDomain) curDomain=NULL; + domainsRemove(newDomain); + } + free(newDomain); + return NULL; + } + + newDomain->stringCount=header->stringCount; + if (newDomain->stringCount) { + newDomain->stringPtr=malloc(newDomain->stringCount*sizeof(const char*)); + newDomain->transPtr=malloc(newDomain->stringCount*sizeof(const char*)); + newDomain->hashes=malloc(newDomain->stringCount*sizeof(unsigned int)); + } + + unsigned int* strTable=(unsigned int*)(&newDomain->mo[header->stringPtr]); + unsigned int* transTable=(unsigned int*)(&newDomain->mo[header->transPtr]); + + unsigned short curChar=0; + for (size_t i=0; istringCount; i++) { + newDomain->stringPtr[i]=(const char*)(&newDomain->mo[strTable[1+(i<<1)]]); + newDomain->transPtr[i]=(const char*)(&newDomain->mo[transTable[1+(i<<1)]]); + + newDomain->hashes[i]=halfsiphash(newDomain->stringPtr[i],strlen(newDomain->stringPtr[i]),0); + + while (curChar<=(unsigned char)newDomain->stringPtr[i][0]) { + newDomain->firstString[curChar]=i; + if (curChar>0) { + newDomain->lastString[curChar-1]=i; + } + curChar++; + } + } + while (curChar<256) { + newDomain->firstString[curChar]=newDomain->stringCount; + if (curChar>0) { + newDomain->lastString[curChar-1]=newDomain->stringCount; + } + curChar++; + } + newDomain->lastString[255]=newDomain->stringCount; + + // compile plural program + char pluralProgram[4096]; + const char* pluralProgramLoc=strstr(newDomain->transPtr[0],"plural="); + if (pluralProgramLoc!=NULL) { + pluralProgramLoc+=7; + const char* pluralProgramLocEnd=strstr(pluralProgramLoc,";"); + + if (pluralProgramLocEnd!=NULL) { + memset(pluralProgram,0,4096); + for (size_t i=0; i<4096 && pluralProgramLocpluralProgram,256); + if (exprRet==0) { + // dump program + printf("compiled program:\n"); + for (int i=0; i<256; i++) { + if (stackTakesArg[newDomain->pluralProgram[i].ins]) { + printf("%s %u\n",stackInsNames[newDomain->pluralProgram[i].ins],newDomain->pluralProgram[i].param); + } else { + printf("%s\n",stackInsNames[newDomain->pluralProgram[i].ins]); + } + if (newDomain->pluralProgram[i].ins==0) break; + } + } else { + printf("error %d\n",exprRet); + } + } + } + } + + // add to domain list + if (!found) { + if (!domainsInsert(newDomain)) { + if (newDomain->mo) MO_FREE(newDomain->mo); + free(newDomain); + errno=ENOMEM; + return NULL; + } + } + return newDomain->path; +} + +const char* momo_textdomain(const char* domainName) { + if (strcmp(curLocale,"C")==0) return domainName; + if (strcmp(curLocale,"POSIX")==0) return domainName; + if (strcmp(curLocale,"en")==0) return domainName; + if (strcmp(curLocale,"en_US")==0) return domainName; + + if (domainName==NULL) { + if (curDomain==NULL) return NULL; + return curDomain->name; + } + // set the domain + if (domains==NULL) return NULL; + for (size_t i=0; iname,domainName)==0) { + curDomain=domains[i]; + return curDomain->name; + } + } + return NULL; +} + +const char* momo_gettext(const char* str) { + if (curDomain==NULL) { + return str; + } + if (str==NULL) return NULL; + // TODO: optimize + unsigned int hash=halfsiphash(str,strlen(str),0); + for (size_t i=curDomain->firstString[(unsigned char)(str[0])]; ilastString[(unsigned char)(str[0])]; i++) { + if (hash==curDomain->hashes[i]) { + return curDomain->transPtr[i]; + } + } + return str; +} + +const char* momo_ngettext(const char* str1, const char* str2, unsigned long amount) { + if (curDomain==NULL) { + if (amount==1) return str1; + return str2; + } + // TODO: implement + // gettext("") and take plural form metadata... + // then I don't know how are plural strings stored + unsigned int plural=runStackMachine(curDomain->pluralProgram,256,amount); + // TODO: optimize + unsigned int hash=halfsiphash(str1,strlen(str1),0); + for (size_t i=curDomain->firstString[(unsigned char)(str1[0])]; ilastString[(unsigned char)(str1[0])]; i++) { + if (hash==curDomain->hashes[i]) { + const char* ret=curDomain->transPtr[i]; + for (unsigned int j=0; j(b))?(a):(b)) #define CLAMP(x,xMin,xMax) (MIN(MAX((x),(xMin)),(xMax))) +#ifdef HAVE_LOCALE +#ifdef HAVE_MOMO +#include +#define _(_str) momo_gettext(_str) +#else +#include +#define _(_str) gettext(_str) +#endif +#else +#define _(_str) _str +#endif + +#define _GN(_strS,_strP,_cond) (((_cond)==1)?(_strS):(_strP)) +#define _N(_str) _str + typedef std::wstring WString; enum TAParamResult {